From a8fa52b222990675534810921a9e3abc2ccd7587 Mon Sep 17 00:00:00 2001 From: UniDoc Build Date: Mon, 22 Jan 2024 01:16:41 +0000 Subject: [PATCH] prepare release --- annotator/annotator.go | 771 +- common/common.go | 124 +- common/license/license.go | 36 +- contentstream/contentstream.go | 1190 ++- contentstream/draw/draw.go | 375 +- core/core.go | 2911 +++--- core/security/crypt/crypt.go | 147 +- core/security/security.go | 193 +- creator/creator.go | 4634 +++++----- extractor/extractor.go | 1689 ++-- fdf/fdf.go | 208 +- fjson/fjson.go | 52 +- go.mod | 4 +- go.sum | 11 +- internal/bitwise/bitwise.go | 108 +- internal/ccittfax/ccittfax.go | 237 +- internal/cmap/bcmaps/bcmaps.go | 762 +- internal/cmap/cmap.go | 257 +- internal/endian/endian.go | 4 +- internal/graphic2d/graphic2d.go | 74 +- internal/graphic2d/svg/svg.go | 202 +- internal/imageutil/imageutil.go | 787 +- internal/integrations/unichart/unichart.go | 58 +- internal/jbig2/basic/basic.go | 24 +- internal/jbig2/bitmap/bitmap.go | 1286 +-- .../jbig2/decoder/arithmetic/arithmetic.go | 49 +- internal/jbig2/decoder/decoder.go | 22 +- internal/jbig2/decoder/huffman/huffman.go | 64 +- internal/jbig2/decoder/mmr/mmr.go | 79 +- internal/jbig2/document/document.go | 245 +- internal/jbig2/document/segments/segments.go | 1201 ++- .../jbig2/encoder/arithmetic/arithmetic.go | 94 +- internal/jbig2/encoder/classer/classer.go | 199 +- internal/jbig2/errors/errors.go | 10 +- internal/jbig2/internal/internal.go | 2 +- internal/jbig2/jbig2.go | 12 +- internal/license/license.go | 208 +- internal/sampling/sampling.go | 32 +- internal/strutils/strutils.go | 15 +- internal/testutils/testutils.go | 56 +- .../textencoding/internal/syncmap/syncmap.go | 42 +- internal/textencoding/textencoding.go | 193 +- internal/timeutils/timeutils.go | 17 +- internal/transform/transform.go | 36 +- internal/uuid/uuid.go | 6 +- model/internal/colorprofile/colorprofile.go | 95 +- model/internal/docutil/docutil.go | 85 +- model/internal/fonts/fonts.go | 240 +- model/mdp/mdp.go | 147 +- model/model.go | 8157 ++++++++--------- model/optimize/optimize.go | 360 +- model/pdfa/pdfa.go | 1415 ++- model/sighandler/sighandler.go | 416 +- model/sigutil/sigutil.go | 135 +- model/xmputil/pdfaextension/pdfaextension.go | 193 +- model/xmputil/pdfaid/pdfaid.go | 41 +- model/xmputil/xmputil.go | 197 +- pdfutil/pdfutil.go | 14 +- ps/ps.go | 312 +- redactor/redactor.go | 177 +- render/internal/context/context.go | 56 +- .../context/imagerender/imagerender.go | 191 +- render/render.go | 360 +- sanitize/sanitize.go | 55 +- textshaping/textshaping.go | 6 +- 65 files changed, 15721 insertions(+), 15657 deletions(-) diff --git a/annotator/annotator.go b/annotator/annotator.go index dc68e1564..c68f0d6ff 100644 --- a/annotator/annotator.go +++ b/annotator/annotator.go @@ -14,113 +14,140 @@ // can create the appearance streams which specify the exact appearance as needed by many pdf viewers for consistent // appearance of the annotations. // It also contains methods for generating appearance streams for fields via widget annotations. -package annotator ;import (_f "bytes";_ff "errors";_e "github.com/unidoc/unipdf/v3/common";_fc "github.com/unidoc/unipdf/v3/contentstream";_fb "github.com/unidoc/unipdf/v3/contentstream/draw";_gf "github.com/unidoc/unipdf/v3/core";_gb "github.com/unidoc/unipdf/v3/internal/textencoding"; -_bc "github.com/unidoc/unipdf/v3/model";_eg "image";_fd "math";_bg "strings";_b "unicode";); +package annotator ;import (_c "bytes";_f "errors";_d "github.com/unidoc/unipdf/v3/common";_bg "github.com/unidoc/unipdf/v3/contentstream";_fb "github.com/unidoc/unipdf/v3/contentstream/draw";_cd "github.com/unidoc/unipdf/v3/core";_a "github.com/unidoc/unipdf/v3/internal/textencoding"; +_bb "github.com/unidoc/unipdf/v3/model";_bga "image";_dg "math";_g "strings";_ad "unicode";); + +// FieldAppearance implements interface model.FieldAppearanceGenerator and generates appearance streams +// for fields taking into account what value is in the field. A common use case is for generating the +// appearance stream prior to flattening fields. +// +// If `OnlyIfMissing` is true, the field appearance is generated only for fields that do not have an +// appearance stream specified. +// If `RegenerateTextFields` is true, all text fields are regenerated (even if OnlyIfMissing is true). +type FieldAppearance struct{OnlyIfMissing bool ;RegenerateTextFields bool ;_ca *AppearanceStyle ;}; + +// TextFieldOptions defines optional parameter for a text field in a form. +type TextFieldOptions struct{MaxLen int ;Value string ;}; + +// NewFormResetButtonField would create a reset button in specified page according to the parameter in `FormResetActionOptions`. +func NewFormResetButtonField (page *_bb .PdfPage ,opt FormResetActionOptions )(*_bb .PdfFieldButton ,error ){_eaaa :=_bb .NewPdfActionResetForm ();_eaaa .Fields =opt .Fields ;_eaaa .Flags =_cd .MakeInteger (0);if opt .IsExclusionList {_eaaa .Flags =_cd .MakeInteger (1); +};_dgeg ,_acb :=_ecc (page ,opt .Rectangle ,"\u0062\u0074\u006e\u0052\u0065\u0073\u0065\u0074",opt .Label ,opt .LabelColor ,opt .Font ,opt .FontSize ,_eaaa .ToPdfObject ());if _acb !=nil {return nil ,_acb ;};return _dgeg ,nil ;}; + +// SignatureImagePosition specifies the image signature location relative to the text signature. +// If text signature is not defined, this position will be ignored. +type SignatureImagePosition int ; // GenerateAppearanceDict generates an appearance dictionary for widget annotation `wa` for the `field` in `form`. // Implements interface model.FieldAppearanceGenerator. -func (_eff FieldAppearance )GenerateAppearanceDict (form *_bc .PdfAcroForm ,field *_bc .PdfField ,wa *_bc .PdfAnnotationWidget )(*_gf .PdfObjectDictionary ,error ){_e .Log .Trace ("\u0047\u0065n\u0065\u0072\u0061\u0074e\u0041\u0070p\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0044i\u0063\u0074\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u0020\u0056:\u0020\u0025\u002b\u0076",field .PartialName (),field .V ); -_ ,_db :=field .GetContext ().(*_bc .PdfFieldText );_fde ,_eaee :=_gf .GetDict (wa .AP );if _eaee &&_eff .OnlyIfMissing &&(!_db ||!_eff .RegenerateTextFields ){_e .Log .Trace ("\u0041\u006c\u0072\u0065a\u0064\u0079\u0020\u0070\u006f\u0070\u0075\u006c\u0061\u0074e\u0064 \u002d\u0020\u0069\u0067\u006e\u006f\u0072i\u006e\u0067"); -return _fde ,nil ;};if form .DR ==nil {form .DR =_bc .NewPdfPageResources ();};switch _ad :=field .GetContext ().(type ){case *_bc .PdfFieldText :_cg :=_ad ;if _fga :=_cbf (_cg .PdfField );_fga ==""{_cg .DA =form .DA ;};switch {case _cg .Flags ().Has (_bc .FieldFlagPassword ):return nil ,nil ; -case _cg .Flags ().Has (_bc .FieldFlagFileSelect ):return nil ,nil ;case _cg .Flags ().Has (_bc .FieldFlagComb ):if _cg .MaxLen !=nil {_cad ,_gag :=_fdg (wa ,_cg ,form .DR ,_eff .Style ());if _gag !=nil {return nil ,_gag ;};return _cad ,nil ;};};_dc ,_cdcb :=_gcc (wa ,_cg ,form .DR ,_eff .Style ()); -if _cdcb !=nil {return nil ,_cdcb ;};return _dc ,nil ;case *_bc .PdfFieldButton :_egf :=_ad ;if _egf .IsCheckbox (){_ce ,_cf :=_fag (wa ,_egf ,form .DR ,_eff .Style ());if _cf !=nil {return nil ,_cf ;};return _ce ,nil ;};_e .Log .Debug ("\u0054\u004f\u0044\u004f\u003a\u0020\u0055\u004e\u0048\u0041\u004e\u0044\u004c\u0045\u0044 \u0062u\u0074\u0074\u006f\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u002b\u0076",_egf .GetType ()); -case *_bc .PdfFieldChoice :_bdc :=_ad ;switch {case _bdc .Flags ().Has (_bc .FieldFlagCombo ):_ed ,_fge :=_bff (form ,wa ,_bdc ,_eff .Style ());if _fge !=nil {return nil ,_fge ;};return _ed ,nil ;default:_e .Log .Debug ("\u0054\u004f\u0044\u004f\u003a\u0020\u0055N\u0048\u0041\u004eD\u004c\u0045\u0044\u0020c\u0068\u006f\u0069\u0063\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0077\u0069\u0074\u0068\u0020\u0066\u006c\u0061\u0067\u0073\u003a\u0020\u0025\u0073",_bdc .Flags ().String ()); -};default:_e .Log .Debug ("\u0054\u004f\u0044\u004f\u003a\u0020\u0055\u004e\u0048\u0041N\u0044\u004c\u0045\u0044\u0020\u0066\u0069e\u006c\u0064\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_ad );};return nil ,nil ;}; +func (_bbg FieldAppearance )GenerateAppearanceDict (form *_bb .PdfAcroForm ,field *_bb .PdfField ,wa *_bb .PdfAnnotationWidget )(*_cd .PdfObjectDictionary ,error ){_d .Log .Trace ("\u0047\u0065n\u0065\u0072\u0061\u0074e\u0041\u0070p\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0044i\u0063\u0074\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u0020\u0056:\u0020\u0025\u002b\u0076",field .PartialName (),field .V ); +_ ,_cdc :=field .GetContext ().(*_bb .PdfFieldText );_aggb ,_eg :=_cd .GetDict (wa .AP );if _eg &&_bbg .OnlyIfMissing &&(!_cdc ||!_bbg .RegenerateTextFields ){_d .Log .Trace ("\u0041\u006c\u0072\u0065a\u0064\u0079\u0020\u0070\u006f\u0070\u0075\u006c\u0061\u0074e\u0064 \u002d\u0020\u0069\u0067\u006e\u006f\u0072i\u006e\u0067"); +return _aggb ,nil ;};if form .DR ==nil {form .DR =_bb .NewPdfPageResources ();};switch _bae :=field .GetContext ().(type ){case *_bb .PdfFieldText :_eb :=_bae ;if _ef :=_dbf (_eb .PdfField );_ef ==""{_eb .DA =form .DA ;};switch {case _eb .Flags ().Has (_bb .FieldFlagPassword ):return nil ,nil ; +case _eb .Flags ().Has (_bb .FieldFlagFileSelect ):return nil ,nil ;case _eb .Flags ().Has (_bb .FieldFlagComb ):if _eb .MaxLen !=nil {_bge ,_cac :=_fec (wa ,_eb ,form .DR ,_bbg .Style ());if _cac !=nil {return nil ,_cac ;};return _bge ,nil ;};};_egd ,_egdb :=_df (wa ,_eb ,form .DR ,_bbg .Style ()); +if _egdb !=nil {return nil ,_egdb ;};return _egd ,nil ;case *_bb .PdfFieldButton :_ga :=_bae ;if _ga .IsCheckbox (){_dgb ,_cae :=_gbaf (wa ,_ga ,form .DR ,_bbg .Style ());if _cae !=nil {return nil ,_cae ;};return _dgb ,nil ;};_d .Log .Debug ("\u0054\u004f\u0044\u004f\u003a\u0020\u0055\u004e\u0048\u0041\u004e\u0044\u004c\u0045\u0044 \u0062u\u0074\u0074\u006f\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u002b\u0076",_ga .GetType ()); +case *_bb .PdfFieldChoice :_adg :=_bae ;switch {case _adg .Flags ().Has (_bb .FieldFlagCombo ):_cgd ,_efb :=_fggc (form ,wa ,_adg ,_bbg .Style ());if _efb !=nil {return nil ,_efb ;};return _cgd ,nil ;default:_d .Log .Debug ("\u0054\u004f\u0044\u004f\u003a\u0020\u0055N\u0048\u0041\u004eD\u004c\u0045\u0044\u0020c\u0068\u006f\u0069\u0063\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0077\u0069\u0074\u0068\u0020\u0066\u006c\u0061\u0067\u0073\u003a\u0020\u0025\u0073",_adg .Flags ().String ()); +};default:_d .Log .Debug ("\u0054\u004f\u0044\u004f\u003a\u0020\u0055\u004e\u0048\u0041N\u0044\u004c\u0045\u0044\u0020\u0066\u0069e\u006c\u0064\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_bae );};return nil ,nil ;};func _e (_gd CircleAnnotationDef )(*_cd .PdfObjectDictionary ,*_bb .PdfRectangle ,error ){_adc :=_bb .NewXObjectForm (); +_adc .Resources =_bb .NewPdfPageResources ();_agg :="";if _gd .Opacity < 1.0{_fg :=_cd .MakeDict ();_fg .Set ("\u0063\u0061",_cd .MakeFloat (_gd .Opacity ));_fg .Set ("\u0043\u0041",_cd .MakeFloat (_gd .Opacity ));_cg :=_adc .Resources .AddExtGState ("\u0067\u0073\u0031",_fg ); +if _cg !=nil {_d .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0064\u0064\u0020\u0065\u0078\u0074g\u0073\u0074\u0061t\u0065 \u0067\u0073\u0031");return nil ,nil ,_cg ;};_agg ="\u0067\u0073\u0031";};_gcb ,_fed ,_fda ,_gf :=_ffb (_gd ,_agg ); +if _gf !=nil {return nil ,nil ,_gf ;};_gf =_adc .SetContentStream (_gcb ,nil );if _gf !=nil {return nil ,nil ,_gf ;};_adc .BBox =_fed .ToPdfObject ();_de :=_cd .MakeDict ();_de .Set ("\u004e",_adc .ToPdfObject ());return _de ,_fda ,nil ;};func _dfbg (_fdfe RectangleAnnotationDef ,_baee string )([]byte ,*_bb .PdfRectangle ,*_bb .PdfRectangle ,error ){_egeb :=_fb .Rectangle {X :0,Y :0,Width :_fdfe .Width ,Height :_fdfe .Height ,FillEnabled :_fdfe .FillEnabled ,FillColor :_fdfe .FillColor ,BorderEnabled :_fdfe .BorderEnabled ,BorderWidth :2*_fdfe .BorderWidth ,BorderColor :_fdfe .BorderColor ,Opacity :_fdfe .Opacity }; +_gdac ,_agcg ,_cace :=_egeb .Draw (_baee );if _cace !=nil {return nil ,nil ,nil ,_cace ;};_fde :=&_bb .PdfRectangle {};_fde .Llx =_fdfe .X +_agcg .Llx ;_fde .Lly =_fdfe .Y +_agcg .Lly ;_fde .Urx =_fdfe .X +_agcg .Urx ;_fde .Ury =_fdfe .Y +_agcg .Ury ;return _gdac ,_agcg ,_fde ,nil ; +};const (SignatureImageLeft SignatureImagePosition =iota ;SignatureImageRight ;SignatureImageTop ;SignatureImageBottom ;);func _eaed (_bea LineAnnotationDef )(*_cd .PdfObjectDictionary ,*_bb .PdfRectangle ,error ){_fcgag :=_bb .NewXObjectForm ();_fcgag .Resources =_bb .NewPdfPageResources (); +_fbca :="";if _bea .Opacity < 1.0{_gced :=_cd .MakeDict ();_gced .Set ("\u0063\u0061",_cd .MakeFloat (_bea .Opacity ));_fgde :=_fcgag .Resources .AddExtGState ("\u0067\u0073\u0031",_gced );if _fgde !=nil {_d .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0064\u0064\u0020\u0065\u0078\u0074g\u0073\u0074\u0061t\u0065 \u0067\u0073\u0031"); +return nil ,nil ,_fgde ;};_fbca ="\u0067\u0073\u0031";};_feaf ,_ggga ,_feag ,_bca :=_cefbf (_bea ,_fbca );if _bca !=nil {return nil ,nil ,_bca ;};_bca =_fcgag .SetContentStream (_feaf ,nil );if _bca !=nil {return nil ,nil ,_bca ;};_fcgag .BBox =_ggga .ToPdfObject (); +_cfdd :=_cd .MakeDict ();_cfdd .Set ("\u004e",_fcgag .ToPdfObject ());return _cfdd ,_feag ,nil ;}; -// ImageFieldOptions defines optional parameters for a push button with image attach capability form field. -type ImageFieldOptions struct{Image *_bc .Image ;_bca AppearanceStyle ;};func _fdg (_gbbe *_bc .PdfAnnotationWidget ,_cbb *_bc .PdfFieldText ,_ecd *_bc .PdfPageResources ,_gagb AppearanceStyle )(*_gf .PdfObjectDictionary ,error ){_eege :=_bc .NewPdfPageResources (); -_fac ,_fgbc :=_gf .GetArray (_gbbe .Rect );if !_fgbc {return nil ,_ff .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074");};_bgb ,_geb :=_bc .NewPdfRectangle (*_fac );if _geb !=nil {return nil ,_geb ;};_bfd ,_gcd :=_bgb .Width (),_bgb .Height (); -_afa ,_ada :=_bfd ,_gcd ;_aec ,_gede :=_gf .GetDict (_gbbe .MK );if _gede {_ceb ,_ :=_gf .GetDict (_gbbe .BS );_facd :=_gagb .applyAppearanceCharacteristics (_aec ,_ceb ,nil );if _facd !=nil {return nil ,_facd ;};};_bfce ,_gede :=_gf .GetIntVal (_cbb .MaxLen ); -if !_gede {return nil ,_ff .New ("\u006d\u0061\u0078\u006c\u0065\u006e\u0020\u006e\u006ft\u0020\u0073\u0065\u0074");};if _bfce <=0{return nil ,_ff .New ("\u006d\u0061\u0078\u004c\u0065\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_dfdb :=_bfd /float64 (_bfce ); -_eba ,_geb :=_fc .NewContentStreamParser (_cbf (_cbb .PdfField )).Parse ();if _geb !=nil {return nil ,_geb ;};_gac :=_fc .NewContentCreator ();if _gagb .BorderSize > 0{_cccf (_gac ,_gagb ,_bfd ,_gcd );};if _gagb .DrawAlignmentReticle {_fcd :=_gagb ;_fcd .BorderSize =0.2; -_afcf (_gac ,_fcd ,_bfd ,_gcd );};_gac .Add_BMC ("\u0054\u0078");_gac .Add_q ();_ ,_gcd =_gagb .applyRotation (_aec ,_bfd ,_gcd ,_gac );_gac .Add_BT ();_ebe ,_bbc ,_geb :=_gagb .processDA (_cbb .PdfField ,_eba ,_ecd ,_eege ,_gac );if _geb !=nil {return nil ,_geb ; -};_agd :=_ebe .Font ;_afda :=_gf .MakeName (_ebe .Name );_fggd :=_ebe .Size ;_gda :=_fggd ==0;if _gda &&_bbc {_fggd =_gcd *_gagb .AutoFontSizeFraction ;};_bdaa :=_agd .Encoder ();if _bdaa ==nil {_e .Log .Debug ("\u0057\u0041RN\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0069\u0073\u0020\u006e\u0069l\u002e\u0020\u0041\u0073s\u0075\u006d\u0069\u006eg \u0069\u0064e\u006et\u0069\u0074\u0079\u0020\u0065\u006ec\u006f\u0064\u0065r\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -_bdaa =_gb .NewIdentityTextEncoder ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048");};var _ace string ;if _cgf ,_bfgc :=_gf .GetString (_cbb .V );_bfgc {_ace =_cgf .Decoded ();};_gac .Add_Tf (*_afda ,_fggd );var _gbc float64 ;for _ ,_ega :=range _ace {_fbea ,_fed :=_agd .GetRuneMetrics (_ega ); -if !_fed {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0052\u0075\u006e\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0066\u006fn\u0074\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067 \u006f\u0076\u0065\u0072",_ega ); -continue ;};_agc :=_fbea .Wy ;if int (_agc )<=0{_agc =_fbea .Wx ;};if _agc > _gbc {_gbc =_agc ;};};if int (_gbc )==0{_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074o\u0020\u0064\u0065\u0074\u0065\u0072\u006d\u0069\u006e\u0065\u0020\u006d\u0061x\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u0073\u0069\u007a\u0065\u0020- \u0075\u0073\u0069\u006e\u0067\u0020\u0031\u0030\u0030\u0030"); -_gbc =1000;};_bfeg ,_geb :=_agd .GetFontDescriptor ();if _geb !=nil {_e .Log .Debug ("\u0045\u0072ro\u0072\u003a\u0020U\u006e\u0061\u0062\u006ce t\u006f g\u0065\u0074\u0020\u0066\u006f\u006e\u0074 d\u0065\u0073\u0063\u0072\u0069\u0070\u0074o\u0072");}; -var _edec float64 ;if _bfeg !=nil {_edec ,_geb =_bfeg .GetCapHeight ();if _geb !=nil {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0043\u0061\u0070\u0048\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_geb ); -};};if int (_edec )<=0{_e .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u0061\u0070\u0048e\u0069\u0067\u0068\u0074\u0020\u006e\u006ft \u0061\u0076\u0061\u0069l\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065tt\u0069\u006eg\u0020\u0074\u006f\u0020\u0031\u0030\u0030\u0030"); -_edec =1000.0;};_bea :=_edec /1000.0*_fggd ;_dgcg :=0.0;_gga :=1.0*_fggd *(_gbc /1000.0);{_dfg :=_gga ;if _gda &&_dgcg +_dfg > _gcd {_fggd =0.95*(_gcd -_dgcg );_bea =_edec /1000.0*_fggd ;};if _gcd > _bea {_dgcg =(_gcd -_bea )/2.0;};};_gac .Add_Td (0,_dgcg ); -if _ddf ,_addb :=_gf .GetIntVal (_cbb .Q );_addb {switch _ddf {case 2:if len (_ace )< _bfce {_adee :=float64 (_bfce -len (_ace ))*_dfdb ;_gac .Add_Td (_adee ,0);};};};for _aae ,_aag :=range _ace {_de :=_eaf ;if _gagb .MarginLeft !=nil {_de =*_gagb .MarginLeft ; -};_gaa :=string (_aag );if _bdaa !=nil {_cea ,_gad :=_agd .GetRuneMetrics (_aag );if !_gad {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0052\u0075\u006e\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0066\u006fn\u0074\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067 \u006f\u0076\u0065\u0072",_aag ); -continue ;};_gaa =string (_bdaa .Encode (_gaa ));_gbde :=_fggd *_cea .Wx /1000.0;_cca :=(_dfdb -_gbde )/2;_de =_cca ;};_gac .Add_Td (_de ,0);_gac .Add_Tj (*_gf .MakeString (_gaa ));if _aae !=len (_ace )-1{_gac .Add_Td (_dfdb -_de ,0);};};_gac .Add_ET (); -_gac .Add_Q ();_gac .Add_EMC ();_cdf :=_bc .NewXObjectForm ();_cdf .Resources =_eege ;_cdf .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_afa ,_ada });_cdf .SetContentStream (_gac .Bytes (),_aga ());_bcd :=_gf .MakeDict ();_bcd .Set ("\u004e",_cdf .ToPdfObject ()); -return _bcd ,nil ;}; +// ImageFieldAppearance implements interface model.FieldAppearanceGenerator and generates appearance streams +// for attaching an image to a button field. +type ImageFieldAppearance struct{OnlyIfMissing bool ;_aade *AppearanceStyle ;}; -// NewImageField generates a new image field with partial name `name` at location `rect` +// NewCheckboxField generates a new checkbox field with partial name `name` at location `rect` // on specified `page` and with field specific options `opt`. -func NewImageField (page *_bc .PdfPage ,name string ,rect []float64 ,opt ImageFieldOptions )(*_bc .PdfFieldButton ,error ){if page ==nil {return nil ,_ff .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); -};if len (name )<=0{return nil ,_ff .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");};if len (rect )!=4{return nil ,_ff .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); -};_fdac :=_bc .NewPdfField ();_edgac :=&_bc .PdfFieldButton {};_edgac .PdfField =_fdac ;_fdac .SetContext (_edgac );_edgac .SetType (_bc .ButtonTypePush );_edgac .T =_gf .MakeString (name );_acec :=_bc .NewPdfAnnotationWidget ();_acec .Rect =_gf .MakeArrayFromFloats (rect ); -_acec .P =page .ToPdfObject ();_acec .F =_gf .MakeInteger (4);_acec .Parent =_edgac .ToPdfObject ();_bcde :=rect [2]-rect [0];_bdfd :=rect [3]-rect [1];_fcba :=opt ._bca ;_cfa :=_fc .NewContentCreator ();if _fcba .BorderSize > 0{_cccf (_cfa ,_fcba ,_bcde ,_bdfd ); -};if _fcba .DrawAlignmentReticle {_cgb :=_fcba ;_cgb .BorderSize =0.2;_afcf (_cfa ,_cgb ,_bcde ,_bdfd );};_abfbg ,_aaagc :=_dabg (_bcde ,_bdfd ,opt .Image ,_fcba );if _aaagc !=nil {return nil ,_aaagc ;};_ccfg ,_aede :=_gf .GetDict (_acec .MK );if _aede {_ccfg .Set ("\u006c",_abfbg .ToPdfObject ()); -};_ecbc :=_gf .MakeDict ();_ecbc .Set ("\u0046\u0052\u004d",_abfbg .ToPdfObject ());_dcdd :=_bc .NewPdfPageResources ();_dcdd .ProcSet =_gf .MakeArray (_gf .MakeName ("\u0050\u0044\u0046"));_dcdd .XObject =_ecbc ;_fgbca :=_bcde -2;_cagc :=_bdfd -2;_cfa .Add_q (); -_cfa .Add_re (1,1,_fgbca ,_cagc );_cfa .Add_W ();_cfa .Add_n ();_fgbca -=2;_cagc -=2;_cfa .Add_q ();_cfa .Add_re (2,2,_fgbca ,_cagc );_cfa .Add_W ();_cfa .Add_n ();_fec :=_fd .Min (_fgbca /float64 (opt .Image .Width ),_cagc /float64 (opt .Image .Height )); -_cfa .Add_cm (_fec ,0,0,_fec ,(_bcde /2)-(float64 (opt .Image .Width )*_fec /2)+2,2);_cfa .Add_Do ("\u0046\u0052\u004d");_cfa .Add_Q ();_cfa .Add_Q ();_afdd :=_bc .NewXObjectForm ();_afdd .FormType =_gf .MakeInteger (1);_afdd .Resources =_dcdd ;_afdd .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_bcde ,_bdfd }); -_afdd .Matrix =_gf .MakeArrayFromFloats ([]float64 {1.0,0.0,0.0,1.0,0.0,0.0});_afdd .SetContentStream (_cfa .Bytes (),_aga ());_eadg :=_gf .MakeDict ();_eadg .Set ("\u004e",_afdd .ToPdfObject ());_acec .AP =_eadg ;_edgac .Annotations =append (_edgac .Annotations ,_acec ); -return _edgac ,nil ;};func _dabg (_daee ,_agef float64 ,_dcgc *_bc .Image ,_ceef AppearanceStyle )(*_bc .XObjectForm ,error ){_aaed ,_eca :=_bc .NewXObjectImageFromImage (_dcgc ,nil ,_gf .NewFlateEncoder ());if _eca !=nil {return nil ,_eca ;};_aaed .Decode =_gf .MakeArrayFromFloats ([]float64 {0.0,1.0,0.0,1.0,0.0,1.0}); -_bdag :=_bc .NewPdfPageResources ();_bdag .ProcSet =_gf .MakeArray (_gf .MakeName ("\u0050\u0044\u0046"),_gf .MakeName ("\u0049\u006d\u0061\u0067\u0065\u0043"));_bdag .SetXObjectImageByName (_gf .PdfObjectName ("\u0049\u006d\u0030"),_aaed );_abca :=_fc .NewContentCreator (); -_abca .Add_q ();_abca .Add_cm (float64 (_dcgc .Width ),0,0,float64 (_dcgc .Height ),0,0);_abca .Add_Do ("\u0049\u006d\u0030");_abca .Add_Q ();_egfa :=_bc .NewXObjectForm ();_egfa .FormType =_gf .MakeInteger (1);_egfa .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,float64 (_dcgc .Width ),float64 (_dcgc .Height )}); -_egfa .Resources =_bdag ;_egfa .SetContentStream (_abca .Bytes (),_aga ());return _egfa ,nil ;};func _gcc (_ae *_bc .PdfAnnotationWidget ,_cec *_bc .PdfFieldText ,_bfe *_bc .PdfPageResources ,_aac AppearanceStyle )(*_gf .PdfObjectDictionary ,error ){_ffg :=_bc .NewPdfPageResources (); -_bdf ,_ac :=_gf .GetArray (_ae .Rect );if !_ac {return nil ,_ff .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074");};_fgca ,_acf :=_bc .NewPdfRectangle (*_bdf );if _acf !=nil {return nil ,_acf ;};_cef ,_gbf :=_fgca .Width (),_fgca .Height (); -_be ,_gbd :=_cef ,_gbf ;_dag ,_bad :=_gf .GetDict (_ae .MK );if _bad {_ccc ,_ :=_gf .GetDict (_ae .BS );_gfd :=_aac .applyAppearanceCharacteristics (_dag ,_ccc ,nil );if _gfd !=nil {return nil ,_gfd ;};};_bcf ,_acf :=_fc .NewContentStreamParser (_cbf (_cec .PdfField )).Parse (); -if _acf !=nil {return nil ,_acf ;};_eeb :=_fc .NewContentCreator ();if _aac .BorderSize > 0{_cccf (_eeb ,_aac ,_cef ,_gbf );};if _aac .DrawAlignmentReticle {_eafd :=_aac ;_eafd .BorderSize =0.2;_afcf (_eeb ,_eafd ,_cef ,_gbf );};_eeb .Add_BMC ("\u0054\u0078"); -_eeb .Add_q ();_cef ,_gbf =_aac .applyRotation (_dag ,_cef ,_gbf ,_eeb );_eeb .Add_BT ();_edg ,_bgd ,_acf :=_aac .processDA (_cec .PdfField ,_bcf ,_bfe ,_ffg ,_eeb );if _acf !=nil {return nil ,_acf ;};_ab :=_edg .Font ;_dab :=_edg .Size ;_gdg :=_gf .MakeName (_edg .Name ); -if _cec .Flags ().Has (_bc .FieldFlagMultiline )&&_cec .MaxLen !=nil {_e .Log .Debug ("\u004c\u006f\u006f\u006b\u0020\u0066\u006f\u0072\u0020\u0041\u0050\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0020\u0066\u006f\u0072 \u004e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006fn\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); -if _cecb ,_df ,_fe :=_ggab (_ae .PdfAnnotation .AP ,_bfe );_fe {_gdg =_cecb ;_dab =_df ;_bgd =true ;};};_ege :=_dab ==0;if _ege &&_bgd {_dab =_gbf *_aac .AutoFontSizeFraction ;};_cge :=_ab .Encoder ();if _cge ==nil {_e .Log .Debug ("\u0057\u0041RN\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0069\u0073\u0020\u006e\u0069l\u002e\u0020\u0041\u0073s\u0075\u006d\u0069\u006eg \u0069\u0064e\u006et\u0069\u0074\u0079\u0020\u0065\u006ec\u006f\u0064\u0065r\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -_cge =_gb .NewIdentityTextEncoder ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048");};_ccb ,_acf :=_ab .GetFontDescriptor ();if _acf !=nil {_e .Log .Debug ("\u0045\u0072ro\u0072\u003a\u0020U\u006e\u0061\u0062\u006ce t\u006f g\u0065\u0074\u0020\u0066\u006f\u006e\u0074 d\u0065\u0073\u0063\u0072\u0069\u0070\u0074o\u0072"); -};var _cdg string ;if _gfg ,_fdb :=_gf .GetString (_cec .V );_fdb {_cdg =_gfg .Decoded ();};if len (_cdg )==0{return nil ,nil ;};_ec :=[]string {_cdg };_dga :=false ;if _cec .Flags ().Has (_bc .FieldFlagMultiline ){_dga =true ;_cdg =_bg .Replace (_cdg ,"\u000d\u000a","\u000a",-1); -_cdg =_bg .Replace (_cdg ,"\u000d","\u000a",-1);_ec =_bg .Split (_cdg ,"\u000a");};_edf :=make ([]string ,len (_ec ));copy (_edf ,_ec );_edd :=_aac .MultilineLineHeight ;_add :=0.0;_addc :=0;if _cge !=nil {for _dab >=0{_egef :=make ([]string ,len (_ec )); -copy (_egef ,_ec );_daa :=make ([]string ,len (_edf ));copy (_daa ,_edf );_add =0.0;_addc =0;_dgc :=len (_egef );_dgce :=0;for _dgce < _dgc {var _dgd float64 ;_daac :=-1;_ag :=_eaf ;if _aac .MarginLeft !=nil {_ag =*_aac .MarginLeft ;};for _ccbd ,_bge :=range _egef [_dgce ]{if _bge ==' '{_daac =_ccbd ; -};_ede ,_gbb :=_ab .GetRuneMetrics (_bge );if !_gbb {_e .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0065\u0074r\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u002d\u0020\u0073k\u0069p\u0070\u0069\u006e\u0067",_bge ); -continue ;};_dgd =_ag ;_ag +=_ede .Wx ;if _dga &&!_ege &&_dab *_ag /1000.0> _cef {_addf :=_ccbd ;_cfe :=_ccbd ;if _daac > 0{_addf =_daac +1;_cfe =_daac ;};_ged :=_egef [_dgce ][_addf :];_dfd :=_daa [_dgce ][_addf :];if _dgce < len (_egef )-1{_egef =append (_egef [:_dgce +1],_egef [_dgce :]...); -_egef [_dgce +1]=_ged ;_daa =append (_daa [:_dgce +1],_daa [_dgce :]...);_daa [_dgce +1]=_dfd ;}else {_egef =append (_egef ,_ged );_daa =append (_daa ,_dfd );};_egef [_dgce ]=_egef [_dgce ][0:_cfe ];_daa [_dgce ]=_daa [_dgce ][0:_cfe ];_dgc ++;_ag =_dgd ; -break ;};};if _ag > _add {_add =_ag ;};_egef [_dgce ]=string (_cge .Encode (_egef [_dgce ]));if len (_egef [_dgce ])> 0{_addc ++;};_dgce ++;};_cfd :=_dab ;if _addc > 1{_cfd *=_edd ;};_daga :=float64 (_addc )*_cfd ;if _ege ||_daga <=_gbf {_ec =_egef ;_edf =_daa ; -break ;};_dab --;};};_fbg :=_eaf ;if _aac .MarginLeft !=nil {_fbg =*_aac .MarginLeft ;};if _dab ==0||_ege &&_add > 0&&_fbg +_add *_dab /1000.0> _cef {_dab =0.95*1000.0*(_cef -_fbg )/_add ;};_ffb :=_ebf ;{if _dgaf ,_eeg :=_gf .GetIntVal (_cec .Q );_eeg {switch _dgaf {case 0:_ffb =_ebf ; -case 1:_ffb =_ga ;case 2:_ffb =_afd ;default:_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0071\u0075\u0061\u0064\u0064\u0069\u006e\u0067\u003a\u0020%\u0064\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u006c\u0065ft\u0020\u0061\u006c\u0069\u0067\u006e\u006d\u0065\u006e\u0074",_dgaf ); -};};};_fgbg :=_dab ;if _dga &&_addc > 1{_fgbg =_edd *_dab ;};var _abf float64 ;if _ccb !=nil {_abf ,_acf =_ccb .GetCapHeight ();if _acf !=nil {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0043\u0061\u0070\u0048\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_acf ); -};};if int (_abf )<=0{_e .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u0061\u0070\u0048e\u0069\u0067\u0068\u0074\u0020\u006e\u006ft \u0061\u0076\u0061\u0069l\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065tt\u0069\u006eg\u0020\u0074\u006f\u0020\u0031\u0030\u0030\u0030"); -_abf =1000;};_agf :=_abf /1000.0*_dab ;_ade :=0.0;{_fa :=float64 (_addc )*_fgbg ;if _ege &&_ade +_fa > _gbf {_dab =0.95*(_gbf -_ade )/float64 (_addc );_fgbg =_dab ;if _dga &&_addc > 1{_fgbg =_edd *_dab ;};_agf =_abf /1000.0*_dab ;_fa =float64 (_addc )*_fgbg ; -};if _gbf > _fa {if _dga {if _aac .MultilineVAlignMiddle {_bfg :=(_gbf -(_fa +_agf ))/2.0;_aaa :=_bfg +_fa +_agf -_fgbg ;_ade =_aaa ;if _addc > 1{_ade =_ade +(_fa /_dab *float64 (_addc ))-_fgbg -_agf ;};if _ade < _fa {_ade =(_gbf -_agf )/2.0;};}else {_ade =_gbf -_fgbg ; -if _ade > _dab {_ecg :=0.0;if _dga &&_aac .MultilineLineHeight > 1&&_addc > 1{_ecg =_aac .MultilineLineHeight -1;};_ade -=_dab *(0.5-_ecg );};};}else {_ade =(_gbf -_agf )/2.0;};};};_eeb .Add_Tf (*_gdg ,_dab );_eeb .Add_Td (_fbg ,_ade );_eef :=_fbg ;_bb :=_fbg ; -for _bab ,_cccg :=range _ec {_cb :=0.0;for _ ,_cecf :=range _edf [_bab ]{_gfc ,_edgb :=_ab .GetRuneMetrics (_cecf );if !_edgb {continue ;};_cb +=_gfc .Wx ;};_ecf :=_cb /1000.0*_dab ;_bda :=_cef -_ecf ;var _ecc float64 ;switch _ffb {case _ebf :_ecc =_eef ; -case _ga :_ecc =_bda /2;case _afd :_ecc =_bda ;};_fbg =_ecc -_bb ;if _fbg > 0.0{_eeb .Add_Td (_fbg ,0);};_bb =_ecc ;_eeb .Add_Tj (*_gf .MakeString (_cccg ));if _bab < len (_ec )-1{_eeb .Add_Td (0,-_dab *_edd );};};_eeb .Add_ET ();_eeb .Add_Q ();_eeb .Add_EMC (); -_abe :=_bc .NewXObjectForm ();_abe .Resources =_ffg ;_abe .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_be ,_gbd });_abe .SetContentStream (_eeb .Bytes (),_aga ());_fda :=_gf .MakeDict ();_fda .Set ("\u004e",_abe .ToPdfObject ());return _fda ,nil ;}; -func _fag (_dcd *_bc .PdfAnnotationWidget ,_afg *_bc .PdfFieldButton ,_edff *_bc .PdfPageResources ,_fba AppearanceStyle )(*_gf .PdfObjectDictionary ,error ){_aed ,_aaag :=_gf .GetArray (_dcd .Rect );if !_aaag {return nil ,_ff .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074"); -};_baba ,_dbb :=_bc .NewPdfRectangle (*_aed );if _dbb !=nil {return nil ,_dbb ;};_aeca ,_cag :=_baba .Width (),_baba .Height ();_ccca ,_fdee :=_aeca ,_cag ;_e .Log .Debug ("\u0043\u0068\u0065\u0063kb\u006f\u0078\u002c\u0020\u0077\u0061\u0020\u0042\u0053\u003a\u0020\u0025\u0076",_dcd .BS ); -_gfdc ,_dbb :=_bc .NewStandard14Font ("\u005a\u0061\u0070f\u0044\u0069\u006e\u0067\u0062\u0061\u0074\u0073");if _dbb !=nil {return nil ,_dbb ;};_bfcb ,_bgbe :=_gf .GetDict (_dcd .MK );if _bgbe {_dge ,_ :=_gf .GetDict (_dcd .BS );_aaad :=_fba .applyAppearanceCharacteristics (_bfcb ,_dge ,_gfdc ); -if _aaad !=nil {return nil ,_aaad ;};};_gcb :=_bc .NewXObjectForm ();{_cgfa :=_fc .NewContentCreator ();if _fba .BorderSize > 0{_cccf (_cgfa ,_fba ,_aeca ,_cag );};if _fba .DrawAlignmentReticle {_ebd :=_fba ;_ebd .BorderSize =0.2;_afcf (_cgfa ,_ebd ,_aeca ,_cag ); -};_aeca ,_cag =_fba .applyRotation (_bfcb ,_aeca ,_cag ,_cgfa );_gbbf :=_fba .AutoFontSizeFraction *_cag ;_cdad ,_ffc :=_gfdc .GetRuneMetrics (_fba .CheckmarkRune );if !_ffc {return nil ,_ff .New ("\u0067l\u0079p\u0068\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -};_gbcf :=_gfdc .Encoder ();_gfde :=_gbcf .Encode (string (_fba .CheckmarkRune ));_bba :=_cdad .Wx *_gbbf /1000.0;_fdag :=705.0;_fded :=_fdag /1000.0*_gbbf ;_gba :=_eaf ;if _fba .MarginLeft !=nil {_gba =*_fba .MarginLeft ;};_bac :=1.0;if _bba < _aeca {_gba =(_aeca -_bba )/2.0; -};if _fded < _cag {_bac =(_cag -_fded )/2.0;};_cgfa .Add_q ().Add_g (0).Add_BT ().Add_Tf ("\u005a\u0061\u0044\u0062",_gbbf ).Add_Td (_gba ,_bac ).Add_Tj (*_gf .MakeStringFromBytes (_gfde )).Add_ET ().Add_Q ();_gcb .Resources =_bc .NewPdfPageResources (); -_gcb .Resources .SetFontByName ("\u005a\u0061\u0044\u0062",_gfdc .ToPdfObject ());_gcb .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_ccca ,_fdee });_gcb .SetContentStream (_cgfa .Bytes (),_aga ());};_cae :=_bc .NewXObjectForm ();{_gccc :=_fc .NewContentCreator (); -if _fba .BorderSize > 0{_cccf (_gccc ,_fba ,_aeca ,_cag );};_cae .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_ccca ,_fdee });_cae .SetContentStream (_gccc .Bytes (),_aga ());};_egff :=_gf .PdfObjectName ("\u0059\u0065\u0073");_aacd ,_bgbe :=_gf .GetDict (_dcd .PdfAnnotation .AP ); -if _bgbe &&_aacd !=nil {_afb :=_gf .TraceToDirectObject (_aacd .Get ("\u004e"));switch _feb :=_afb .(type ){case *_gf .PdfObjectDictionary :_fdc :=_feb .Keys ();for _ ,_fbf :=range _fdc {if _fbf !="\u004f\u0066\u0066"{_egff =_fbf ;};};};};_age :=_gf .MakeDict (); -_age .Set ("\u004f\u0066\u0066",_cae .ToPdfObject ());_age .Set (_egff ,_gcb .ToPdfObject ());_aeg :=_gf .MakeDict ();_aeg .Set ("\u004e",_age );return _aeg ,nil ;};func (_fdca *AppearanceStyle )processDA (_dbf *_bc .PdfField ,_ccbb *_fc .ContentStreamOperations ,_eac ,_fcf *_bc .PdfPageResources ,_cacf *_fc .ContentCreator )(*AppearanceFont ,bool ,error ){var _adc *AppearanceFont ; -var _fbd bool ;if _fdca .Fonts !=nil {if _fdca .Fonts .Fallback !=nil {_adc =_fdca .Fonts .Fallback ;};if _ccfa :=_fdca .Fonts .FieldFallbacks ;_ccfa !=nil {if _dcc ,_gbdg :=_ccfa [_dbf .PartialName ()];_gbdg {_adc =_dcc ;}else if _adf ,_bbf :=_dbf .FullName (); -_bbf ==nil {if _eda ,_ecga :=_ccfa [_adf ];_ecga {_adc =_eda ;};};};if _adc !=nil {_adc .fillName ();};_fbd =_fdca .Fonts .ForceReplace ;};var _fccc string ;var _afbc float64 ;var _bdcb bool ;if _ccbb !=nil {for _ ,_eccg :=range *_ccbb {if _eccg .Operand =="\u0054\u0066"&&len (_eccg .Params )==2{if _feda ,_cee :=_gf .GetNameVal (_eccg .Params [0]); -_cee {_fccc =_feda ;};if _ddcb ,_aea :=_gf .GetNumberAsFloat (_eccg .Params [1]);_aea ==nil {_afbc =_ddcb ;};_bdcb =true ;continue ;};_cacf .AddOperand (*_eccg );};};var _ceaf *AppearanceFont ;var _agcb _gf .PdfObject ;if _fbd &&_adc !=nil {_ceaf =_adc ; -}else {if _eac !=nil &&_fccc !=""{if _eaeb ,_ffdf :=_eac .GetFontByName (*_gf .MakeName (_fccc ));_ffdf {if _bfb ,_bbce :=_bc .NewPdfFontFromPdfObject (_eaeb );_bbce ==nil {_agcb =_eaeb ;_ceaf =&AppearanceFont {Name :_fccc ,Font :_bfb ,Size :_afbc };}else {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006fa\u0064\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0025\u0076",_bbce ); -};};};if _ceaf ==nil &&_adc !=nil {_ceaf =_adc ;};if _ceaf ==nil {_ebb ,_beg :=_bc .NewStandard14Font ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a");if _beg !=nil {return nil ,false ,_beg ;};_ceaf =&AppearanceFont {Name :"\u0048\u0065\u006c\u0076",Font :_ebb ,Size :_afbc }; -};};if _ceaf .Size <=0&&_fdca .Fonts !=nil &&_fdca .Fonts .FallbackSize > 0{_ceaf .Size =_fdca .Fonts .FallbackSize ;};_dec :=*_gf .MakeName (_ceaf .Name );if _agcb ==nil {_agcb =_ceaf .Font .ToPdfObject ();};if _eac !=nil &&!_eac .HasFontByName (_dec ){_eac .SetFontByName (_dec ,_agcb ); -};if _fcf !=nil &&!_fcf .HasFontByName (_dec ){_fcf .SetFontByName (_dec ,_agcb );};return _ceaf ,_bdcb ,nil ;};func (_cda *AppearanceFont )fillName (){if _cda .Font ==nil ||_cda .Name !=""{return ;};_aa :=_cda .Font .FontDescriptor ();if _aa ==nil ||_aa .FontName ==nil {return ; -};_cda .Name =_aa .FontName .String ();}; +func NewCheckboxField (page *_bb .PdfPage ,name string ,rect []float64 ,opt CheckboxFieldOptions )(*_bb .PdfFieldButton ,error ){if page ==nil {return nil ,_f .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); +};if len (name )<=0{return nil ,_f .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");};if len (rect )!=4{return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); +};_ffee ,_bfc :=_bb .NewStandard14Font (_bb .ZapfDingbatsName );if _bfc !=nil {return nil ,_bfc ;};_eabe :=_bb .NewPdfField ();_gcca :=&_bb .PdfFieldButton {};_eabe .SetContext (_gcca );_gcca .PdfField =_eabe ;_gcca .T =_cd .MakeString (name );_gcca .SetType (_bb .ButtonTypeCheckbox ); +_bcf :="\u004f\u0066\u0066";if opt .Checked {_bcf ="\u0059\u0065\u0073";};_gcca .V =_cd .MakeName (_bcf );_cca :=_bb .NewPdfAnnotationWidget ();_cca .Rect =_cd .MakeArrayFromFloats (rect );_cca .P =page .ToPdfObject ();_cca .F =_cd .MakeInteger (4);_cca .Parent =_gcca .ToPdfObject (); +_fcdc :=rect [2]-rect [0];_bdcd :=rect [3]-rect [1];var _gcgc _c .Buffer ;_gcgc .WriteString ("\u0071\u000a");_gcgc .WriteString ("\u0030 \u0030\u0020\u0031\u0020\u0072\u0067\n");_gcgc .WriteString ("\u0042\u0054\u000a");_gcgc .WriteString ("\u002f\u005a\u0061D\u0062\u0020\u0031\u0032\u0020\u0054\u0066\u000a"); +_gcgc .WriteString ("\u0045\u0054\u000a");_gcgc .WriteString ("\u0051\u000a");_acgd :=_bg .NewContentCreator ();_acgd .Add_q ();_acgd .Add_rg (0,0,1);_acgd .Add_BT ();_acgd .Add_Tf (*_cd .MakeName ("\u005a\u0061\u0044\u0062"),12);_acgd .Add_Td (0,0);_acgd .Add_ET (); +_acgd .Add_Q ();_dceg :=_bb .NewXObjectForm ();_dceg .SetContentStream (_acgd .Bytes (),_cd .NewRawEncoder ());_dceg .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_fcdc ,_bdcd });_dceg .Resources =_bb .NewPdfPageResources ();_dceg .Resources .SetFontByName ("\u005a\u0061\u0044\u0062",_ffee .ToPdfObject ()); +_acgd =_bg .NewContentCreator ();_acgd .Add_q ();_acgd .Add_re (0,0,_fcdc ,_bdcd );_acgd .Add_W ().Add_n ();_acgd .Add_rg (0,0,1);_acgd .Translate (0,3.0);_acgd .Add_BT ();_acgd .Add_Tf (*_cd .MakeName ("\u005a\u0061\u0044\u0062"),12);_acgd .Add_Td (0,0); +_acgd .Add_Tj (*_cd .MakeString ("\u0034"));_acgd .Add_ET ();_acgd .Add_Q ();_adff :=_bb .NewXObjectForm ();_adff .SetContentStream (_acgd .Bytes (),_cd .NewRawEncoder ());_adff .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_fcdc ,_bdcd });_adff .Resources =_bb .NewPdfPageResources (); +_adff .Resources .SetFontByName ("\u005a\u0061\u0044\u0062",_ffee .ToPdfObject ());_aff :=_cd .MakeDict ();_aff .Set ("\u004f\u0066\u0066",_dceg .ToPdfObject ());_aff .Set ("\u0059\u0065\u0073",_adff .ToPdfObject ());_dgag :=_cd .MakeDict ();_dgag .Set ("\u004e",_aff ); +_cca .AP =_dgag ;_cca .AS =_cd .MakeName (_bcf );_gcca .Annotations =append (_gcca .Annotations ,_cca );return _gcca ,nil ;};func _ecc (_dacg *_bb .PdfPage ,_effe _fb .Rectangle ,_gaba string ,_afce string ,_eaea _bb .PdfColor ,_gfgg *_bb .PdfFont ,_gcee *float64 ,_eeeg _cd .PdfObject )(*_bb .PdfFieldButton ,error ){_abd ,_dgad :=_effe .X ,_effe .Y ; +_dabd :=_effe .Width ;_eeee :=_effe .Height ;if _effe .FillColor ==nil {_effe .FillColor =_bb .NewPdfColorDeviceGray (0.7);};if _eaea ==nil {_eaea =_bb .NewPdfColorDeviceGray (0);};if _gfgg ==nil {_cded ,_bdbe :=_bb .NewStandard14Font ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a"); +if _bdbe !=nil {return nil ,_bdbe ;};_gfgg =_cded ;};_bage :=_bb .NewPdfField ();_fgcc :=&_bb .PdfFieldButton {};_bage .SetContext (_fgcc );_fgcc .PdfField =_bage ;_fgcc .T =_cd .MakeString (_gaba );_fgcc .SetType (_bb .ButtonTypePush );_fgcc .V =_cd .MakeName ("\u004f\u0066\u0066"); +_fgcc .Ff =_cd .MakeInteger (4);_abga :=_cd .MakeDict ();_abga .Set (*_cd .MakeName ("\u0043\u0041"),_cd .MakeString (_afce ));_fecf ,_geaf :=_gfgg .GetFontDescriptor ();if _geaf !=nil {return nil ,_geaf ;};_aed :=_cd .MakeName ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a"); +_faaf :=12.0;if _fecf !=nil &&_fecf .FontName !=nil {_aed ,_ =_cd .GetName (_fecf .FontName );};if _gcee !=nil {_faaf =*_gcee ;};_gdagf :=_bg .NewContentCreator ();_gdagf .Add_q ();_gdagf .SetNonStrokingColor (_effe .FillColor );_gdagf .Add_re (0,0,_dabd ,_eeee ); +_gdagf .Add_f ();_gdagf .Add_Q ();_gdagf .Add_q ();_gdagf .Add_BT ();_debf :=0.0;for _ ,_bbgfe :=range _afce {_affc ,_bbdf :=_gfgg .GetRuneMetrics (_bbgfe );if !_bbdf {_d .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0065\u0074r\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u002d\u0020\u0073k\u0069p\u0070\u0069\u006e\u0067",_bbgfe ); +continue ;};_debf +=_affc .Wx ;};_debf =_debf /1000.0*_faaf ;var _bab float64 ;if _fecf !=nil {_bab ,_geaf =_fecf .GetCapHeight ();if _geaf !=nil {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0043\u0061\u0070\u0048\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_geaf ); +};};if int (_bab )<=0{_d .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u0061\u0070\u0048e\u0069\u0067\u0068\u0074\u0020\u006e\u006ft \u0061\u0076\u0061\u0069l\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065tt\u0069\u006eg\u0020\u0074\u006f\u0020\u0031\u0030\u0030\u0030"); +_bab =1000;};_efba :=_bab /1000.0*_faaf ;_dggb :=(_eeee -_efba )/2.0;_fac :=(_dabd -_debf )/2.0;_gdagf .Add_Tf (*_aed ,_faaf );_gdagf .SetNonStrokingColor (_eaea );_gdagf .Add_Td (_fac ,_dggb );_gdagf .Add_Tj (*_cd .MakeString (_afce ));_gdagf .Add_ET (); +_gdagf .Add_Q ();_deed :=_bb .NewXObjectForm ();_deed .SetContentStream (_gdagf .Bytes (),_cd .NewRawEncoder ());_deed .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_dabd ,_eeee });_deed .Resources =_bb .NewPdfPageResources ();_deed .Resources .SetFontByName (*_aed ,_gfgg .ToPdfObject ()); +_gcec :=_cd .MakeDict ();_gcec .Set ("\u004e",_deed .ToPdfObject ());_ceg :=_bb .NewPdfAnnotationWidget ();_ceg .Rect =_cd .MakeArrayFromFloats ([]float64 {_abd ,_dgad ,_abd +_dabd ,_dgad +_eeee });_ceg .P =_dacg .ToPdfObject ();_ceg .F =_cd .MakeInteger (4); +_ceg .Parent =_fgcc .ToPdfObject ();_ceg .A =_eeeg ;_ceg .MK =_abga ;_ceg .AP =_gcec ;_fgcc .Annotations =append (_fgcc .Annotations ,_ceg );return _fgcc ,nil ;}; -// Style returns the appearance style of `fa`. If not specified, returns default style. -func (_gg FieldAppearance )Style ()AppearanceStyle {if _gg ._bce !=nil {return *_gg ._bce ;};_da :=_eaf ;return AppearanceStyle {AutoFontSizeFraction :0.65,CheckmarkRune :'✔',BorderSize :0.0,BorderColor :_bc .NewPdfColorDeviceGray (0),FillColor :_bc .NewPdfColorDeviceGray (1),MultilineLineHeight :1.2,MultilineVAlignMiddle :false ,DrawAlignmentReticle :false ,AllowMK :true ,MarginLeft :&_da }; -}; +// CircleAnnotationDef defines a circle annotation or ellipse at position (X, Y) and Width and Height. +// The annotation has various style parameters including Fill and Border options and Opacity. +type CircleAnnotationDef struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;FillEnabled bool ;FillColor *_bb .PdfColorDeviceRGB ;BorderEnabled bool ;BorderWidth float64 ;BorderColor *_bb .PdfColorDeviceRGB ;Opacity float64 ;};func _df (_fc *_bb .PdfAnnotationWidget ,_da *_bb .PdfFieldText ,_cda *_bb .PdfPageResources ,_dae AppearanceStyle )(*_cd .PdfObjectDictionary ,error ){_gcbc :=_bb .NewPdfPageResources (); +_dac ,_age :=_cd .GetArray (_fc .Rect );if !_age {return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074");};_aec ,_dace :=_bb .NewPdfRectangle (*_dac );if _dace !=nil {return nil ,_dace ;};_gfb ,_fgf :=_aec .Width (),_aec .Height (); +_dfa ,_ec :=_gfb ,_fgf ;_egb ,_egde :=_cd .GetDict (_fc .MK );if _egde {_gg ,_ :=_cd .GetDict (_fc .BS );_fgd :=_dae .applyAppearanceCharacteristics (_egb ,_gg ,nil );if _fgd !=nil {return nil ,_fgd ;};};_bgg ,_dace :=_bg .NewContentStreamParser (_dbf (_da .PdfField )).Parse (); +if _dace !=nil {return nil ,_dace ;};_bf :=_bg .NewContentCreator ();if _dae .BorderSize > 0{_ddc (_bf ,_dae ,_gfb ,_fgf );};if _dae .DrawAlignmentReticle {_db :=_dae ;_db .BorderSize =0.2;_deggd (_bf ,_db ,_gfb ,_fgf );};_bf .Add_BMC ("\u0054\u0078"); +_bf .Add_q ();_gfb ,_fgf =_dae .applyRotation (_egb ,_gfb ,_fgf ,_bf );_bf .Add_BT ();_ggc ,_fce ,_dace :=_dae .processDA (_da .PdfField ,_bgg ,_cda ,_gcbc ,_bf );if _dace !=nil {return nil ,_dace ;};_dag :=_ggc .Font ;_ea :=_ggc .Size ;_af :=_cd .MakeName (_ggc .Name ); +if _da .Flags ().Has (_bb .FieldFlagMultiline )&&_da .MaxLen !=nil {_d .Log .Debug ("\u004c\u006f\u006f\u006b\u0020\u0066\u006f\u0072\u0020\u0041\u0050\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0020\u0066\u006f\u0072 \u004e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006fn\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); +if _fbd ,_gec ,_bag :=_fecd (_fc .PdfAnnotation .AP ,_cda );_bag {_af =_fbd ;_ea =_gec ;_fce =true ;};};_gda :=_ea ==0;if _gda &&_fce {_ea =_fgf *_dae .AutoFontSizeFraction ;};_cbg :=_dag .Encoder ();if _cbg ==nil {_d .Log .Debug ("\u0057\u0041RN\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0069\u0073\u0020\u006e\u0069l\u002e\u0020\u0041\u0073s\u0075\u006d\u0069\u006eg \u0069\u0064e\u006et\u0069\u0074\u0079\u0020\u0065\u006ec\u006f\u0064\u0065r\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +_cbg =_a .NewIdentityTextEncoder ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048");};_ee ,_dace :=_dag .GetFontDescriptor ();if _dace !=nil {_d .Log .Debug ("\u0045\u0072ro\u0072\u003a\u0020U\u006e\u0061\u0062\u006ce t\u006f g\u0065\u0074\u0020\u0066\u006f\u006e\u0074 d\u0065\u0073\u0063\u0072\u0069\u0070\u0074o\u0072"); +};var _bbgg string ;if _dc ,_ac :=_cd .GetString (_da .V );_ac {_bbgg =_dc .Decoded ();};if len (_bbgg )==0{return nil ,nil ;};_cgde :=[]string {_bbgg };_cf :=false ;if _da .Flags ().Has (_bb .FieldFlagMultiline ){_cf =true ;_bbgg =_g .Replace (_bbgg ,"\u000d\u000a","\u000a",-1); +_bbgg =_g .Replace (_bbgg ,"\u000d","\u000a",-1);_cgde =_g .Split (_bbgg ,"\u000a");};_efc :=make ([]string ,len (_cgde ));copy (_efc ,_cgde );_aeg :=_dae .MultilineLineHeight ;_eae :=0.0;_baa :=0;if _cbg !=nil {for _ea >=0{_bgce :=make ([]string ,len (_cgde )); +copy (_bgce ,_cgde );_gbd :=make ([]string ,len (_efc ));copy (_gbd ,_efc );_eae =0.0;_baa =0;_dfd :=len (_bgce );_acg :=0;for _acg < _dfd {var _fceg float64 ;_bd :=-1;_bfg :=_dgg ;if _dae .MarginLeft !=nil {_bfg =*_dae .MarginLeft ;};for _eaf ,_eag :=range _bgce [_acg ]{if _eag ==' '{_bd =_eaf ; +};_fea ,_ecg :=_dag .GetRuneMetrics (_eag );if !_ecg {_d .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0065\u0074r\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u002d\u0020\u0073k\u0069p\u0070\u0069\u006e\u0067",_eag ); +continue ;};_fceg =_bfg ;_bfg +=_fea .Wx ;if _cf &&!_gda &&_ea *_bfg /1000.0> _gfb {_daa :=_eaf ;_ecd :=_eaf ;if _bd > 0{_daa =_bd +1;_ecd =_bd ;};_geb :=_bgce [_acg ][_daa :];_ffe :=_gbd [_acg ][_daa :];if _acg < len (_bgce )-1{_bgce =append (_bgce [:_acg +1],_bgce [_acg :]...); +_bgce [_acg +1]=_geb ;_gbd =append (_gbd [:_acg +1],_gbd [_acg :]...);_gbd [_acg +1]=_ffe ;}else {_bgce =append (_bgce ,_geb );_gbd =append (_gbd ,_ffe );};_bgce [_acg ]=_bgce [_acg ][0:_ecd ];_gbd [_acg ]=_gbd [_acg ][0:_ecd ];_dfd ++;_bfg =_fceg ;break ; +};};if _bfg > _eae {_eae =_bfg ;};_bgce [_acg ]=string (_cbg .Encode (_bgce [_acg ]));if len (_bgce [_acg ])> 0{_baa ++;};_acg ++;};_gba :=_ea ;if _baa > 1{_gba *=_aeg ;};_gdb :=float64 (_baa )*_gba ;if _gda ||_gdb <=_fgf {_cgde =_bgce ;_efc =_gbd ;break ; +};_ea --;};};_fbdd :=_dgg ;if _dae .MarginLeft !=nil {_fbdd =*_dae .MarginLeft ;};if _ea ==0||_gda &&_eae > 0&&_fbdd +_eae *_ea /1000.0> _gfb {_ea =0.95*1000.0*(_gfb -_fbdd )/_eae ;};_bbgc :=_gb ;{if _bef ,_fbdb :=_cd .GetIntVal (_da .Q );_fbdb {switch _bef {case 0:_bbgc =_gb ; +case 1:_bbgc =_cc ;case 2:_bbgc =_cb ;default:_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0071\u0075\u0061\u0064\u0064\u0069\u006e\u0067\u003a\u0020%\u0064\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u006c\u0065ft\u0020\u0061\u006c\u0069\u0067\u006e\u006d\u0065\u006e\u0074",_bef ); +};};};_ffbc :=_ea ;if _cf &&_baa > 1{_ffbc =_aeg *_ea ;};var _ggf float64 ;if _ee !=nil {_ggf ,_dace =_ee .GetCapHeight ();if _dace !=nil {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0043\u0061\u0070\u0048\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_dace ); +};};if int (_ggf )<=0{_d .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u0061\u0070\u0048e\u0069\u0067\u0068\u0074\u0020\u006e\u006ft \u0061\u0076\u0061\u0069l\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065tt\u0069\u006eg\u0020\u0074\u006f\u0020\u0031\u0030\u0030\u0030"); +_ggf =1000;};_deg :=_ggf /1000.0*_ea ;_ebg :=0.0;{_ece :=float64 (_baa )*_ffbc ;if _gda &&_ebg +_ece > _fgf {_ea =0.95*(_fgf -_ebg )/float64 (_baa );_ffbc =_ea ;if _cf &&_baa > 1{_ffbc =_aeg *_ea ;};_deg =_ggf /1000.0*_ea ;_ece =float64 (_baa )*_ffbc ; +};if _fgf > _ece {if _cf {if _dae .MultilineVAlignMiddle {_ddb :=(_fgf -(_ece +_deg ))/2.0;_bbc :=_ddb +_ece +_deg -_ffbc ;_ebg =_bbc ;if _baa > 1{_ebg =_ebg +(_ece /_ea *float64 (_baa ))-_ffbc -_deg ;};if _ebg < _ece {_ebg =(_fgf -_deg )/2.0;};}else {_ebg =_fgf -_ffbc ; +if _ebg > _ea {_aac :=0.0;if _cf &&_dae .MultilineLineHeight > 1&&_baa > 1{_aac =_dae .MultilineLineHeight -1;};_ebg -=_ea *(0.5-_aac );};};}else {_ebg =(_fgf -_deg )/2.0;};};};_bf .Add_Tf (*_af ,_ea );_bf .Add_Td (_fbdd ,_ebg );_degf :=_fbdd ;_gdgd :=_fbdd ; +for _fceb ,_fcf :=range _cgde {_gcda :=0.0;for _ ,_gef :=range _efc [_fceb ]{_dge ,_fa :=_dag .GetRuneMetrics (_gef );if !_fa {continue ;};_gcda +=_dge .Wx ;};_egg :=_gcda /1000.0*_ea ;_gdd :=_gfb -_egg ;var _agc float64 ;switch _bbgc {case _gb :_agc =_degf ; +case _cc :_agc =_gdd /2;case _cb :_agc =_gdd ;};_fbdd =_agc -_gdgd ;if _fbdd > 0.0{_bf .Add_Td (_fbdd ,0);};_gdgd =_agc ;_bf .Add_Tj (*_cd .MakeString (_fcf ));if _fceb < len (_cgde )-1{_bf .Add_Td (0,-_ea *_aeg );};};_bf .Add_ET ();_bf .Add_Q ();_bf .Add_EMC (); +_eeb :=_bb .NewXObjectForm ();_eeb .Resources =_gcbc ;_eeb .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_dfa ,_ec });_eeb .SetContentStream (_bf .Bytes (),_bed ());_bfd :=_cd .MakeDict ();_bfd .Set ("\u004e",_eeb .ToPdfObject ());return _bfd ,nil ;}; +func _abgf (_ega []*SignatureLine ,_eee *SignatureFieldOpts )(*_cd .PdfObjectDictionary ,error ){if _eee ==nil {_eee =NewSignatureFieldOpts ();};var _ggfb error ;var _fegb *_cd .PdfObjectName ;_eac :=_eee .Font ;if _eac !=nil {_baag ,_ :=_eac .GetFontDescriptor (); +if _baag !=nil {if _afg ,_gdda :=_baag .FontName .(*_cd .PdfObjectName );_gdda {_fegb =_afg ;};};if _fegb ==nil {_fegb =_cd .MakeName ("\u0046\u006f\u006et\u0031");};}else {if _eac ,_ggfb =_bb .NewStandard14Font ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a"); +_ggfb !=nil {return nil ,_ggfb ;};_fegb =_cd .MakeName ("\u0048\u0065\u006c\u0076");};_fggcg :=_eee .FontSize ;if _fggcg <=0{_fggcg =10;};if _eee .LineHeight <=0{_eee .LineHeight =1;};_bdadb :=_eee .LineHeight *_fggcg ;_bbf ,_aadf :=_eac .GetRuneMetrics (' '); +if !_aadf {return nil ,_f .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068");};_dgc :=_bbf .Wx ;var _ged float64 ;var _dfda []string ; +for _ ,_eggd :=range _ega {if _eggd .Text ==""{continue ;};_gbc :=_eggd .Text ;if _eggd .Desc !=""{_gbc =_eggd .Desc +"\u003a\u0020"+_gbc ;};_dfda =append (_dfda ,_gbc );var _ege float64 ;for _ ,_cebe :=range _gbc {_agad ,_fgbd :=_eac .GetRuneMetrics (_cebe ); +if !_fgbd {continue ;};_ege +=_agad .Wx ;};if _ege > _ged {_ged =_ege ;};};_ged =_ged *_fggcg /1000.0;_bdgb :=float64 (len (_dfda ))*_bdadb ;_gcc :=_eee .Image !=nil ;_ddba :=_eee .Rect ;if _ddba ==nil {_ddba =[]float64 {0,0,_ged ,_bdgb };if _gcc {_ddba [2]=_ged *2; +_ddba [3]=_bdgb *2;};_eee .Rect =_ddba ;};_ddbg :=_ddba [2]-_ddba [0];_caag :=_ddba [3]-_ddba [1];_cdb ,_bbe :=_ddba ,_ddba ;var _dgd ,_cgaad float64 ;if _gcc &&len (_dfda )> 0{if _eee .ImagePosition <=SignatureImageRight {_dagc :=[]float64 {_ddba [0],_ddba [1],_ddba [0]+(_ddbg /2),_ddba [3]}; +_dea :=[]float64 {_ddba [0]+(_ddbg /2),_ddba [1],_ddba [2],_ddba [3]};if _eee .ImagePosition ==SignatureImageLeft {_cdb ,_bbe =_dagc ,_dea ;}else {_cdb ,_bbe =_dea ,_dagc ;};}else {_fbe :=[]float64 {_ddba [0],_ddba [1],_ddba [2],_ddba [1]+(_caag /2)};_bbgf :=[]float64 {_ddba [0],_ddba [1]+(_caag /2),_ddba [2],_ddba [3]}; +if _eee .ImagePosition ==SignatureImageTop {_cdb ,_bbe =_bbgf ,_fbe ;}else {_cdb ,_bbe =_fbe ,_bbgf ;};};};_dgd =_bbe [2]-_bbe [0];_cgaad =_bbe [3]-_bbe [1];var _baea float64 ;if _eee .AutoSize {if _ged > _dgd ||_bdgb > _cgaad {_fgcf :=_dg .Min (_dgd /_ged ,_cgaad /_bdgb ); +_fggcg *=_fgcf ;};_bdadb =_eee .LineHeight *_fggcg ;_baea +=(_cgaad -float64 (len (_dfda ))*_bdadb )/2;};_ggcc :=_bg .NewContentCreator ();_fdda :=_bb .NewPdfPageResources ();_fdda .SetFontByName (*_fegb ,_eac .ToPdfObject ());if _eee .BorderSize <=0{_eee .BorderSize =0; +_eee .BorderColor =_bb .NewPdfColorDeviceGray (1);};_ggcc .Add_q ();if _eee .FillColor !=nil {_ggcc .SetNonStrokingColor (_eee .FillColor );};if _eee .BorderColor !=nil {_ggcc .SetStrokingColor (_eee .BorderColor );};_ggcc .Add_w (_eee .BorderSize ).Add_re (_ddba [0],_ddba [1],_ddbg ,_caag ); +if _eee .FillColor !=nil &&_eee .BorderColor !=nil {_ggcc .Add_B ();}else if _eee .FillColor !=nil {_ggcc .Add_f ();}else if _eee .BorderColor !=nil {_ggcc .Add_S ();};_ggcc .Add_Q ();if _eee .WatermarkImage !=nil {_bfdd :=[]float64 {_ddba [0],_ddba [1],_ddba [2],_ddba [3]}; +_bbeg ,_gffg ,_cec :=_eed (_eee .WatermarkImage ,"\u0049\u006d\u0061\u0067\u0065\u0057\u0061\u0074\u0065r\u006d\u0061\u0072\u006b",_eee ,_bfdd ,_ggcc );if _cec !=nil {return nil ,_cec ;};_fdda .SetXObjectImageByName (*_bbeg ,_gffg );};_ggcc .Add_q ();_ggcc .Translate (_bbe [0],_bbe [3]-_bdadb -_baea ); +_ggcc .Add_BT ();_adaa :=_eac .Encoder ();for _ ,_egac :=range _dfda {var _dcee []byte ;for _ ,_efg :=range _egac {if _ad .IsSpace (_efg ){if len (_dcee )> 0{_ggcc .SetNonStrokingColor (_eee .TextColor ).Add_Tf (*_fegb ,_fggcg ).Add_TL (_bdadb ).Add_TJ ([]_cd .PdfObject {_cd .MakeStringFromBytes (_dcee )}...); +_dcee =nil ;};_ggcc .Add_Tf (*_fegb ,_fggcg ).Add_TL (_bdadb ).Add_TJ ([]_cd .PdfObject {_cd .MakeFloat (-_dgc )}...);}else {_dcee =append (_dcee ,_adaa .Encode (string (_efg ))...);};};if len (_dcee )> 0{_ggcc .SetNonStrokingColor (_eee .TextColor ).Add_Tf (*_fegb ,_fggcg ).Add_TL (_bdadb ).Add_TJ ([]_cd .PdfObject {_cd .MakeStringFromBytes (_dcee )}...); +};_ggcc .Add_Td (0,-_bdadb );};_ggcc .Add_ET ();_ggcc .Add_Q ();if _gcc {_cagdc ,_ebbf ,_gefe :=_eed (_eee .Image ,"\u0049\u006d\u0061\u0067\u0065\u0053\u0069\u0067\u006ea\u0074\u0075\u0072\u0065",_eee ,_cdb ,_ggcc );if _gefe !=nil {return nil ,_gefe ; +};_fdda .SetXObjectImageByName (*_cagdc ,_ebbf );};_deb :=_bb .NewXObjectForm ();_deb .Resources =_fdda ;_deb .BBox =_cd .MakeArrayFromFloats (_ddba );_deb .SetContentStream (_ggcc .Bytes (),_bed ());_geeb :=_cd .MakeDict ();_geeb .Set ("\u004e",_deb .ToPdfObject ()); +return _geeb ,nil ;}; -// CheckboxFieldOptions defines optional parameters for a checkbox field a form. -type CheckboxFieldOptions struct{Checked bool ;}; +// WrapContentStream ensures that the entire content stream for a `page` is wrapped within q ... Q operands. +// Ensures that following operands that are added are not affected by additional operands that are added. +// Implements interface model.ContentStreamWrapper. +func (_gccb ImageFieldAppearance )WrapContentStream (page *_bb .PdfPage )error {_cab ,_bgeb :=page .GetAllContentStreams ();if _bgeb !=nil {return _bgeb ;};_abb :=_bg .NewContentStreamParser (_cab );_cgc ,_bgeb :=_abb .Parse ();if _bgeb !=nil {return _bgeb ; +};_cgc .WrapIfNeeded ();_gccbf :=[]string {_cgc .String ()};return page .SetContentStreams (_gccbf ,_bed ());}; -// NewSignatureFieldOpts returns a new initialized instance of options -// used to generate a signature appearance. -func NewSignatureFieldOpts ()*SignatureFieldOpts {return &SignatureFieldOpts {Font :_bc .DefaultFont (),FontSize :10,LineHeight :1,AutoSize :true ,TextColor :_bc .NewPdfColorDeviceGray (0),BorderColor :_bc .NewPdfColorDeviceGray (0),FillColor :_bc .NewPdfColorDeviceGray (1),Encoder :_gf .NewFlateEncoder (),ImagePosition :SignatureImageLeft }; -}; +// WrapContentStream ensures that the entire content stream for a `page` is wrapped within q ... Q operands. +// Ensures that following operands that are added are not affected by additional operands that are added. +// Implements interface model.ContentStreamWrapper. +func (_fggd FieldAppearance )WrapContentStream (page *_bb .PdfPage )error {_caeb ,_gdcf :=page .GetAllContentStreams ();if _gdcf !=nil {return _gdcf ;};_eeg :=_bg .NewContentStreamParser (_caeb );_ebec ,_gdcf :=_eeg .Parse ();if _gdcf !=nil {return _gdcf ; +};_ebec .WrapIfNeeded ();_dbg :=[]string {_ebec .String ()};return page .SetContentStreams (_dbg ,_bed ());}; -// SetStyle applies appearance `style` to `fa`. -func (_bfc *FieldAppearance )SetStyle (style AppearanceStyle ){_bfc ._bce =&style }; +// NewTextField generates a new text field with partial name `name` at location +// specified by `rect` on given `page` and with field specific options `opt`. +func NewTextField (page *_bb .PdfPage ,name string ,rect []float64 ,opt TextFieldOptions )(*_bb .PdfFieldText ,error ){if page ==nil {return nil ,_f .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064");};if len (name )<=0{return nil ,_f .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064"); +};if len (rect )!=4{return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065");};_edca :=_bb .NewPdfField ();_acgb :=&_bb .PdfFieldText {};_edca .SetContext (_acgb );_acgb .PdfField =_edca ;_acgb .T =_cd .MakeString (name ); +if opt .MaxLen > 0{_acgb .MaxLen =_cd .MakeInteger (int64 (opt .MaxLen ));};if len (opt .Value )> 0{_acgb .V =_cd .MakeString (opt .Value );};_fgeg :=_bb .NewPdfAnnotationWidget ();_fgeg .Rect =_cd .MakeArrayFromFloats (rect );_fgeg .P =page .ToPdfObject (); +_fgeg .F =_cd .MakeInteger (4);_fgeg .Parent =_acgb .ToPdfObject ();_acgb .Annotations =append (_acgb .Annotations ,_fgeg );return _acgb ,nil ;}; // AppearanceStyle defines style parameters for appearance stream generation. type AppearanceStyle struct{ @@ -129,7 +156,7 @@ type AppearanceStyle struct{ AutoFontSizeFraction float64 ; // CheckmarkRune is a rune used for check mark in checkboxes (for ZapfDingbats font). -CheckmarkRune rune ;BorderSize float64 ;BorderColor _bc .PdfColor ;FillColor _bc .PdfColor ; +CheckmarkRune rune ;BorderSize float64 ;BorderColor _bb .PdfColor ;FillColor _bb .PdfColor ; // Multiplier for lineheight for multi line text. MultilineLineHeight float64 ;MultilineVAlignMiddle bool ; @@ -147,85 +174,58 @@ Fonts *AppearanceFontStyle ; // the form field bounding box when generating appearances (default: 2.0). MarginLeft *float64 ;}; -// WrapContentStream ensures that the entire content stream for a `page` is wrapped within q ... Q operands. -// Ensures that following operands that are added are not affected by additional operands that are added. -// Implements interface model.ContentStreamWrapper. -func (_gcce FieldAppearance )WrapContentStream (page *_bc .PdfPage )error {_eddg ,_ccac :=page .GetAllContentStreams ();if _ccac !=nil {return _ccac ;};_geeb :=_fc .NewContentStreamParser (_eddg );_eafdc ,_ccac :=_geeb .Parse ();if _ccac !=nil {return _ccac ; -};_eafdc .WrapIfNeeded ();_ebbb :=[]string {_eafdc .String ()};return page .SetContentStreams (_ebbb ,_aga ());}; - -// CircleAnnotationDef defines a circle annotation or ellipse at position (X, Y) and Width and Height. -// The annotation has various style parameters including Fill and Border options and Opacity. -type CircleAnnotationDef struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;FillEnabled bool ;FillColor *_bc .PdfColorDeviceRGB ;BorderEnabled bool ;BorderWidth float64 ;BorderColor *_bc .PdfColorDeviceRGB ;Opacity float64 ;}; - -// NewTextField generates a new text field with partial name `name` at location -// specified by `rect` on given `page` and with field specific options `opt`. -func NewTextField (page *_bc .PdfPage ,name string ,rect []float64 ,opt TextFieldOptions )(*_bc .PdfFieldText ,error ){if page ==nil {return nil ,_ff .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064");};if len (name )<=0{return nil ,_ff .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064"); -};if len (rect )!=4{return nil ,_ff .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065");};_dgb :=_bc .NewPdfField ();_bbd :=&_bc .PdfFieldText {};_dgb .SetContext (_bbd );_bbd .PdfField =_dgb ;_bbd .T =_gf .MakeString (name ); -if opt .MaxLen > 0{_bbd .MaxLen =_gf .MakeInteger (int64 (opt .MaxLen ));};if len (opt .Value )> 0{_bbd .V =_gf .MakeString (opt .Value );};_dcbe :=_bc .NewPdfAnnotationWidget ();_dcbe .Rect =_gf .MakeArrayFromFloats (rect );_dcbe .P =page .ToPdfObject (); -_dcbe .F =_gf .MakeInteger (4);_dcbe .Parent =_bbd .ToPdfObject ();_bbd .Annotations =append (_bbd .Annotations ,_dcbe );return _bbd ,nil ;};func _ggab (_cdaf _gf .PdfObject ,_ddgb *_bc .PdfPageResources )(*_gf .PdfObjectName ,float64 ,bool ){var (_efd *_gf .PdfObjectName ; -_caa float64 ;_ccd bool ;);if _bacc ,_dce :=_gf .GetDict (_cdaf );_dce &&_bacc !=nil {_bfbe :=_gf .TraceToDirectObject (_bacc .Get ("\u004e"));switch _afgf :=_bfbe .(type ){case *_gf .PdfObjectStream :_cecg ,_gfb :=_gf .DecodeStream (_afgf );if _gfb !=nil {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0063\u006f\u006e\u0074e\u006e\u0074\u0020\u0073\u0074r\u0065\u0061m\u003a\u0020\u0025\u0076",_gfb .Error ()); -return nil ,0,false ;};_gaaf ,_gfb :=_fc .NewContentStreamParser (string (_cecg )).Parse ();if _gfb !=nil {_e .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0075n\u0061\u0062l\u0065\u0020\u0070\u0061\u0072\u0073\u0065\u0020c\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061m\u003a\u0020\u0025\u0076",_gfb .Error ()); -return nil ,0,false ;};_ecb :=_fc .NewContentStreamProcessor (*_gaaf );_ecb .AddHandler (_fc .HandlerConditionEnumOperand ,"\u0054\u0066",func (_gcf *_fc .ContentStreamOperation ,_edda _fc .GraphicsState ,_eadd *_bc .PdfPageResources )error {if len (_gcf .Params )==2{if _fad ,_cde :=_gf .GetName (_gcf .Params [0]); -_cde {_efd =_fad ;};if _bede ,_cace :=_gf .GetNumberAsFloat (_gcf .Params [1]);_cace ==nil {_caa =_bede ;};_ccd =true ;return _fc .ErrEarlyExit ;};return nil ;});_ecb .Process (_ddgb );return _efd ,_caa ,_ccd ;};};return nil ,0,false ;}; - -// CreateCircleAnnotation creates a circle/ellipse annotation object with appearance stream that can be added to -// page PDF annotations. -func CreateCircleAnnotation (circDef CircleAnnotationDef )(*_bc .PdfAnnotation ,error ){_bf :=_bc .NewPdfAnnotationCircle ();if circDef .BorderEnabled {_ea ,_ee ,_fcc :=circDef .BorderColor .R (),circDef .BorderColor .G (),circDef .BorderColor .B ();_bf .C =_gf .MakeArrayFromFloats ([]float64 {_ea ,_ee ,_fcc }); -_bd :=_bc .NewBorderStyle ();_bd .SetBorderWidth (circDef .BorderWidth );_bf .BS =_bd .ToPdfObject ();};if circDef .FillEnabled {_ffd ,_fbe ,_eae :=circDef .FillColor .R (),circDef .FillColor .G (),circDef .FillColor .B ();_bf .IC =_gf .MakeArrayFromFloats ([]float64 {_ffd ,_fbe ,_eae }); -}else {_bf .IC =_gf .MakeArrayFromIntegers ([]int {});};if circDef .Opacity < 1.0{_bf .CA =_gf .MakeFloat (circDef .Opacity );};_d ,_ge ,_ef :=_fg (circDef );if _ef !=nil {return nil ,_ef ;};_bf .AP =_d ;_bf .Rect =_gf .MakeArrayFromFloats ([]float64 {_ge .Llx ,_ge .Lly ,_ge .Urx ,_ge .Ury }); -return _bf .PdfAnnotation ,nil ;}; - -// SignatureFieldOpts represents a set of options used to configure -// an appearance widget dictionary. -type SignatureFieldOpts struct{ - -// Rect represents the area the signature annotation is displayed on. -Rect []float64 ; +// NewComboboxField generates a new combobox form field with partial name `name` at location `rect` +// on specified `page` and with field specific options `opt`. +func NewComboboxField (page *_bb .PdfPage ,name string ,rect []float64 ,opt ComboboxFieldOptions )(*_bb .PdfFieldChoice ,error ){if page ==nil {return nil ,_f .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); +};if len (name )<=0{return nil ,_f .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");};if len (rect )!=4{return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); +};_dab :=_bb .NewPdfField ();_dfb :=&_bb .PdfFieldChoice {};_dab .SetContext (_dfb );_dfb .PdfField =_dab ;_dfb .T =_cd .MakeString (name );_dfb .Opt =_cd .MakeArray ();for _ ,_agab :=range opt .Choices {_dfb .Opt .Append (_cd .MakeString (_agab ));};_dfb .SetFlag (_bb .FieldFlagCombo ); +_aafe :=_bb .NewPdfAnnotationWidget ();_aafe .Rect =_cd .MakeArrayFromFloats (rect );_aafe .P =page .ToPdfObject ();_aafe .F =_cd .MakeInteger (4);_aafe .Parent =_dfb .ToPdfObject ();_dfb .Annotations =append (_dfb .Annotations ,_aafe );return _dfb ,nil ; +}; -// AutoSize specifies if the content of the appearance should be -// scaled to fit in the annotation rectangle. -AutoSize bool ; +// FormSubmitActionOptions holds options for creating a form submit button. +type FormSubmitActionOptions struct{ -// Font specifies the font of the text content. -Font *_bc .PdfFont ; +// Rectangle holds the button position, size, and color. +Rectangle _fb .Rectangle ; -// FontSize specifies the size of the text content. -FontSize float64 ; +// Url specifies the URL where the fieds will be submitted. +Url string ; -// LineHeight specifies the height of a line of text in the appearance annotation. -LineHeight float64 ; +// Label specifies the text that would be displayed on the button. +Label string ; -// TextColor represents the color of the text content displayed. -TextColor _bc .PdfColor ; +// LabelColor specifies the button label color. +LabelColor _bb .PdfColor ; -// FillColor represents the background color of the appearance annotation area. -FillColor _bc .PdfColor ; +// Font specifies a font used for rendering the button label. +// When omitted it will fallback to use a Helvetica font. +Font *_bb .PdfFont ; -// BorderSize represents border size of the appearance annotation area. -BorderSize float64 ; +// FontSize specifies the font size used in rendering the button label. +// The default font size is 12pt. +FontSize *float64 ; -// BorderColor represents the border color of the appearance annotation area. -BorderColor _bc .PdfColor ; +// Fields specifies list of fields that could be submitted. +// This list may contain indirect object to fields or field names. +Fields *_cd .PdfObjectArray ; -// WatermarkImage specifies the image used as a watermark that will be rendered -// behind the signature. -WatermarkImage _eg .Image ; +// IsExclusionList specifies that the fields contain in `Fields` array would not be submitted. +IsExclusionList bool ; -// Image represents the image used for the signature appearance. -Image _eg .Image ; +// IncludeEmptyFields specifies if all fields would be submitted even though it's value is empty. +IncludeEmptyFields bool ; -// Encoder specifies the image encoder used for image signature. Defaults to flate encoder. -Encoder _gf .StreamEncoder ; +// SubmitAsPDF specifies that the document shall be submitted as PDF. +// If set then all the other flags shall be ignored. +SubmitAsPDF bool ;};func _dbf (_ebcb *_bb .PdfField )string {if _ebcb ==nil {return "";};_dce ,_bdb :=_ebcb .GetContext ().(*_bb .PdfFieldText );if !_bdb {return _dbf (_ebcb .Parent );};if _dce .DA !=nil {return _dce .DA .Str ();};return _dbf (_dce .Parent ); +};func (_gfc *AppearanceFont )fillName (){if _gfc .Font ==nil ||_gfc .Name !=""{return ;};_ce :=_gfc .Font .FontDescriptor ();if _ce ==nil ||_ce .FontName ==nil {return ;};_gfc .Name =_ce .FontName .String ();}; -// ImagePosition specifies the image location relative to the text signature. -ImagePosition SignatureImagePosition ;};func (_dbge *AppearanceStyle )applyAppearanceCharacteristics (_dac *_gf .PdfObjectDictionary ,_ffea *_gf .PdfObjectDictionary ,_abfc *_bc .PdfFont )error {if !_dbge .AllowMK {return nil ;};if CA ,_aef :=_gf .GetString (_dac .Get ("\u0043\u0041")); -_aef &&_abfc !=nil {_dbd :=CA .Bytes ();if len (_dbd )!=0{_faag :=[]rune (_abfc .Encoder ().Decode (_dbd ));if len (_faag )==1{_dbge .CheckmarkRune =_faag [0];};};};if BC ,_ceg :=_gf .GetArray (_dac .Get ("\u0042\u0043"));_ceg {_bcg ,_fbfg :=BC .ToFloat64Array (); -if _fbfg !=nil {return _fbfg ;};switch len (_bcg ){case 1:_dbge .BorderColor =_bc .NewPdfColorDeviceGray (_bcg [0]);case 3:_dbge .BorderColor =_bc .NewPdfColorDeviceRGB (_bcg [0],_bcg [1],_bcg [2]);case 4:_dbge .BorderColor =_bc .NewPdfColorDeviceCMYK (_bcg [0],_bcg [1],_bcg [2],_bcg [3]); -default:_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0042\u0043\u0020\u002d\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0028\u0025\u0064)",len (_bcg )); -};if _ffea !=nil {if _gbgb ,_eafg :=_gf .GetNumberAsFloat (_ffea .Get ("\u0057"));_eafg ==nil {_dbge .BorderSize =_gbgb ;};};};if BG ,_acfe :=_gf .GetArray (_dac .Get ("\u0042\u0047"));_acfe {_def ,_gde :=BG .ToFloat64Array ();if _gde !=nil {return _gde ; -};switch len (_def ){case 1:_dbge .FillColor =_bc .NewPdfColorDeviceGray (_def [0]);case 3:_dbge .FillColor =_bc .NewPdfColorDeviceRGB (_def [0],_def [1],_def [2]);case 4:_dbge .FillColor =_bc .NewPdfColorDeviceCMYK (_def [0],_def [1],_def [2],_def [3]); -default:_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0042\u0047\u0020\u002d\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0028\u0025\u0064)",len (_def )); -};};return nil ;}; +// NewFormSubmitButtonField would create a submit button in specified page according to the parameter in `FormSubmitActionOptions`. +func NewFormSubmitButtonField (page *_bb .PdfPage ,opt FormSubmitActionOptions )(*_bb .PdfFieldButton ,error ){_baeg :=int64 (_gbfc );if opt .IsExclusionList {_baeg |=_fag ;};if opt .IncludeEmptyFields {_baeg |=_gad ;};if opt .SubmitAsPDF {_baeg |=_gdbd ; +};_gedgd :=_bb .NewPdfActionSubmitForm ();_gedgd .Flags =_cd .MakeInteger (_baeg );_gedgd .F =_bb .NewPdfFilespec ();if opt .Fields !=nil {_gedgd .Fields =opt .Fields ;};_gedgd .F .F =_cd .MakeString (opt .Url );_gedgd .F .FS =_cd .MakeName ("\u0055\u0052\u004c"); +_fgda ,_dffd :=_ecc (page ,opt .Rectangle ,"\u0062t\u006e\u0053\u0075\u0062\u006d\u0069t",opt .Label ,opt .LabelColor ,opt .Font ,opt .FontSize ,_gedgd .ToPdfObject ());if _dffd !=nil {return nil ,_dffd ;};return _fgda ,nil ;};func _cefbf (_gceb LineAnnotationDef ,_ecea string )([]byte ,*_bb .PdfRectangle ,*_bb .PdfRectangle ,error ){_gaca :=_fb .Line {X1 :0,Y1 :0,X2 :_gceb .X2 -_gceb .X1 ,Y2 :_gceb .Y2 -_gceb .Y1 ,LineColor :_gceb .LineColor ,Opacity :_gceb .Opacity ,LineWidth :_gceb .LineWidth ,LineEndingStyle1 :_gceb .LineEndingStyle1 ,LineEndingStyle2 :_gceb .LineEndingStyle2 }; +_ebed ,_dcf ,_gccbg :=_gaca .Draw (_ecea );if _gccbg !=nil {return nil ,nil ,nil ,_gccbg ;};_fgdg :=&_bb .PdfRectangle {};_fgdg .Llx =_gceb .X1 +_dcf .Llx ;_fgdg .Lly =_gceb .Y1 +_dcf .Lly ;_fgdg .Urx =_gceb .X1 +_dcf .Urx ;_fgdg .Ury =_gceb .Y1 +_dcf .Ury ; +return _ebed ,_dcf ,_fgdg ,nil ;}; // InkAnnotationDef holds base information for constructing an ink annotation. type InkAnnotationDef struct{ @@ -234,128 +234,78 @@ type InkAnnotationDef struct{ Paths []_fb .Path ; // Color is the color of the line. Default to black. -Color *_bc .PdfColorDeviceRGB ; +Color *_bb .PdfColorDeviceRGB ; // LineWidth is the width of the line. -LineWidth float64 ;};const (_ebf quadding =0;_ga quadding =1;_afd quadding =2;_eaf float64 =2.0;);func _cbf (_bfgf *_bc .PdfField )string {if _bfgf ==nil {return "";};_cac ,_adbf :=_bfgf .GetContext ().(*_bc .PdfFieldText );if !_adbf {return _cbf (_bfgf .Parent ); -};if _cac .DA !=nil {return _cac .DA .Str ();};return _cbf (_cac .Parent );};func _ecdg (_gdbc *_bc .PdfField ,_dcg ,_bdca float64 ,_gee string ,_gfeg AppearanceStyle ,_edga *_fc .ContentStreamOperations ,_geg *_bc .PdfPageResources ,_edgc *_gf .PdfObjectDictionary )(*_bc .XObjectForm ,error ){_effe :=_bc .NewPdfPageResources (); -_fbfa ,_ebcb :=_dcg ,_bdca ;_dae :=_fc .NewContentCreator ();if _gfeg .BorderSize > 0{_cccf (_dae ,_gfeg ,_dcg ,_bdca );};if _gfeg .DrawAlignmentReticle {_dca :=_gfeg ;_dca .BorderSize =0.2;_afcf (_dae ,_dca ,_dcg ,_bdca );};_dae .Add_BMC ("\u0054\u0078"); -_dae .Add_q ();_dae .Add_BT ();_dcg ,_bdca =_gfeg .applyRotation (_edgc ,_dcg ,_bdca ,_dae );_deb ,_edfg ,_gegf :=_gfeg .processDA (_gdbc ,_edga ,_geg ,_effe ,_dae );if _gegf !=nil {return nil ,_gegf ;};_edfa :=_deb .Font ;_efc :=_deb .Size ;_abg :=_gf .MakeName (_deb .Name ); -_afc :=_efc ==0;if _afc &&_edfg {_efc =_bdca *_gfeg .AutoFontSizeFraction ;};_cff :=_edfa .Encoder ();if _cff ==nil {_e .Log .Debug ("\u0057\u0041RN\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0069\u0073\u0020\u006e\u0069l\u002e\u0020\u0041\u0073s\u0075\u006d\u0069\u006eg \u0069\u0064e\u006et\u0069\u0074\u0079\u0020\u0065\u006ec\u006f\u0064\u0065r\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -_cff =_gb .NewIdentityTextEncoder ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048");};if len (_gee )==0{return nil ,nil ;};_adb :=_eaf ;if _gfeg .MarginLeft !=nil {_adb =*_gfeg .MarginLeft ;};_ddg :=0.0;if _cff !=nil {for _ ,_dea :=range _gee {_dbe ,_bgbg :=_edfa .GetRuneMetrics (_dea ); -if !_bgbg {_e .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0065\u0074r\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u002d\u0020\u0073k\u0069p\u0070\u0069\u006e\u0067",_dea ); -continue ;};_ddg +=_dbe .Wx ;};_gee =string (_cff .Encode (_gee ));};if _efc ==0||_afc &&_ddg > 0&&_adb +_ddg *_efc /1000.0> _dcg {_efc =0.95*1000.0*(_dcg -_adb )/_ddg ;};_dgda :=1.0*_efc ;_bga :=2.0;{_caf :=_dgda ;if _afc &&_bga +_caf > _bdca {_efc =0.95*(_bdca -_bga ); -_dgda =1.0*_efc ;_caf =_dgda ;};if _bdca > _caf {_bga =(_bdca -_caf )/2.0;_bga +=1.50;};};_dae .Add_Tf (*_abg ,_efc );_dae .Add_Td (_adb ,_bga );_dae .Add_Tj (*_gf .MakeString (_gee ));_dae .Add_ET ();_dae .Add_Q ();_dae .Add_EMC ();_aadc :=_bc .NewXObjectForm (); -_aadc .Resources =_effe ;_aadc .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_fbfa ,_ebcb });_aadc .SetContentStream (_dae .Bytes (),_aga ());return _aadc ,nil ;};func _fg (_a CircleAnnotationDef )(*_gf .PdfObjectDictionary ,*_bc .PdfRectangle ,error ){_eb :=_bc .NewXObjectForm (); -_eb .Resources =_bc .NewPdfPageResources ();_c :="";if _a .Opacity < 1.0{_af :=_gf .MakeDict ();_af .Set ("\u0063\u0061",_gf .MakeFloat (_a .Opacity ));_af .Set ("\u0043\u0041",_gf .MakeFloat (_a .Opacity ));_cc :=_eb .Resources .AddExtGState ("\u0067\u0073\u0031",_af ); -if _cc !=nil {_e .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0064\u0064\u0020\u0065\u0078\u0074g\u0073\u0074\u0061t\u0065 \u0067\u0073\u0031");return nil ,nil ,_cc ;};_c ="\u0067\u0073\u0031";};_gd ,_fgg ,_fgc ,_cd :=_gc (_a ,_c ); -if _cd !=nil {return nil ,nil ,_cd ;};_cd =_eb .SetContentStream (_gd ,nil );if _cd !=nil {return nil ,nil ,_cd ;};_eb .BBox =_fgg .ToPdfObject ();_ba :=_gf .MakeDict ();_ba .Set ("\u004e",_eb .ToPdfObject ());return _ba ,_fgc ,nil ;}; +LineWidth float64 ;};func (_bdfb *AppearanceStyle )processDA (_cbb *_bb .PdfField ,_feg *_bg .ContentStreamOperations ,_cefb ,_aead *_bb .PdfPageResources ,_eea *_bg .ContentCreator )(*AppearanceFont ,bool ,error ){var _ebea *AppearanceFont ;var _dbad bool ; +if _bdfb .Fonts !=nil {if _bdfb .Fonts .Fallback !=nil {_ebea =_bdfb .Fonts .Fallback ;};if _cdab :=_bdfb .Fonts .FieldFallbacks ;_cdab !=nil {if _gcga ,_cad :=_cdab [_cbb .PartialName ()];_cad {_ebea =_gcga ;}else if _fgb ,_gfce :=_cbb .FullName ();_gfce ==nil {if _cgag ,_ceb :=_cdab [_fgb ]; +_ceb {_ebea =_cgag ;};};};if _ebea !=nil {_ebea .fillName ();};_dbad =_bdfb .Fonts .ForceReplace ;};var _dfab string ;var _ada float64 ;var _fffd bool ;if _feg !=nil {for _ ,_afc :=range *_feg {if _afc .Operand =="\u0054\u0066"&&len (_afc .Params )==2{if _adda ,_edbb :=_cd .GetNameVal (_afc .Params [0]); +_edbb {_dfab =_adda ;};if _aab ,_ffbcc :=_cd .GetNumberAsFloat (_afc .Params [1]);_ffbcc ==nil {_ada =_aab ;};_fffd =true ;continue ;};_eea .AddOperand (*_afc );};};var _dfdf *AppearanceFont ;var _fggb _cd .PdfObject ;if _dbad &&_ebea !=nil {_dfdf =_ebea ; +}else {if _cefb !=nil &&_dfab !=""{if _febd ,_cefbb :=_cefb .GetFontByName (*_cd .MakeName (_dfab ));_cefbb {if _fgfg ,_gfe :=_bb .NewPdfFontFromPdfObject (_febd );_gfe ==nil {_fggb =_febd ;_dfdf =&AppearanceFont {Name :_dfab ,Font :_fgfg ,Size :_ada }; +}else {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006fa\u0064\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0025\u0076",_gfe ); +};};};if _dfdf ==nil &&_ebea !=nil {_dfdf =_ebea ;};if _dfdf ==nil {_agda ,_bcec :=_bb .NewStandard14Font ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a");if _bcec !=nil {return nil ,false ,_bcec ;};_dfdf =&AppearanceFont {Name :"\u0048\u0065\u006c\u0076",Font :_agda ,Size :_ada }; +};};if _dfdf .Size <=0&&_bdfb .Fonts !=nil &&_bdfb .Fonts .FallbackSize > 0{_dfdf .Size =_bdfb .Fonts .FallbackSize ;};_fcad :=*_cd .MakeName (_dfdf .Name );if _fggb ==nil {_fggb =_dfdf .Font .ToPdfObject ();};if _cefb !=nil &&!_cefb .HasFontByName (_fcad ){_cefb .SetFontByName (_fcad ,_fggb ); +};if _aead !=nil &&!_aead .HasFontByName (_fcad ){_aead .SetFontByName (_fcad ,_fggb );};return _dfdf ,_fffd ,nil ;}; -// NewSignatureLine returns a new signature line displayed as a part of the -// signature field appearance. -func NewSignatureLine (desc ,text string )*SignatureLine {return &SignatureLine {Desc :desc ,Text :text };};func _fbag (_cege []float64 )[]float64 {var (_cbgc =len (_cege );_bbfb =make ([]float64 ,_cbgc );_ccba =make ([]float64 ,_cbgc ););_bdbf :=2.0;_bbfb [0]=_cege [0]/_bdbf ; -for _faed :=1;_faed < _cbgc ;_faed ++{_ccba [_faed ]=1/_bdbf ;if _faed < _cbgc -1{_bdbf =4.0;}else {_bdbf =3.5;};_bdbf -=_ccba [_faed ];_bbfb [_faed ]=(_cege [_faed ]-_bbfb [_faed -1])/_bdbf ;};for _acd :=1;_acd < _cbgc ;_acd ++{_bbfb [_cbgc -_acd -1]-=_ccba [_cbgc -_acd ]*_bbfb [_cbgc -_acd ]; -};return _bbfb ;};func _afcf (_cgc *_fc .ContentCreator ,_bfcf AppearanceStyle ,_afce ,_gbg float64 ){_cgc .Add_q ().Add_re (0,0,_afce ,_gbg ).Add_re (0,_gbg /2,_afce ,_gbg /2).Add_re (0,0,_afce ,_gbg ).Add_re (_afce /2,0,_afce /2,_gbg ).Add_w (_bfcf .BorderSize ).SetStrokingColor (_bfcf .BorderColor ).SetNonStrokingColor (_bfcf .FillColor ).Add_B ().Add_Q (); -}; +// AppearanceFont represents a font used for generating the appearance of a +// field in the filling/flattening process. +type AppearanceFont struct{ -// Style returns the appearance style of `fa`. If not specified, returns default style. -func (_agfc ImageFieldAppearance )Style ()AppearanceStyle {if _agfc ._dagb !=nil {return *_agfc ._dagb ;};return AppearanceStyle {BorderSize :0.0,BorderColor :_bc .NewPdfColorDeviceGray (0),FillColor :_bc .NewPdfColorDeviceGray (1),DrawAlignmentReticle :false }; -}; +// Name represents the name of the font which will be added to the +// AcroForm resources (DR). +Name string ; -// CreateLineAnnotation creates a line annotation object that can be added to page PDF annotations. -func CreateLineAnnotation (lineDef LineAnnotationDef )(*_bc .PdfAnnotation ,error ){_gdag :=_bc .NewPdfAnnotationLine ();_gdag .L =_gf .MakeArrayFromFloats ([]float64 {lineDef .X1 ,lineDef .Y1 ,lineDef .X2 ,lineDef .Y2 });_gdge :=_gf .MakeName ("\u004e\u006f\u006e\u0065"); -if lineDef .LineEndingStyle1 ==_fb .LineEndingStyleArrow {_gdge =_gf .MakeName ("C\u006c\u006f\u0073\u0065\u0064\u0041\u0072\u0072\u006f\u0077");};_fggc :=_gf .MakeName ("\u004e\u006f\u006e\u0065");if lineDef .LineEndingStyle2 ==_fb .LineEndingStyleArrow {_fggc =_gf .MakeName ("C\u006c\u006f\u0073\u0065\u0064\u0041\u0072\u0072\u006f\u0077"); -};_gdag .LE =_gf .MakeArray (_gdge ,_fggc );if lineDef .Opacity < 1.0{_gdag .CA =_gf .MakeFloat (lineDef .Opacity );};_dabe ,_cbfb ,_aaca :=lineDef .LineColor .R (),lineDef .LineColor .G (),lineDef .LineColor .B ();_gdag .IC =_gf .MakeArrayFromFloats ([]float64 {_dabe ,_cbfb ,_aaca }); -_gdag .C =_gf .MakeArrayFromFloats ([]float64 {_dabe ,_cbfb ,_aaca });_gab :=_bc .NewBorderStyle ();_gab .SetBorderWidth (lineDef .LineWidth );_gdag .BS =_gab .ToPdfObject ();_cdab ,_dfc ,_fedc :=_gbgbb (lineDef );if _fedc !=nil {return nil ,_fedc ;};_gdag .AP =_cdab ; -_gdag .Rect =_gf .MakeArrayFromFloats ([]float64 {_dfc .Llx ,_dfc .Lly ,_dfc .Urx ,_dfc .Ury });return _gdag .PdfAnnotation ,nil ;};func _aga ()_gf .StreamEncoder {return _gf .NewFlateEncoder ()};func _bff (_aaaf *_bc .PdfAcroForm ,_dgee *_bc .PdfAnnotationWidget ,_bgc *_bc .PdfFieldChoice ,_egd AppearanceStyle )(*_gf .PdfObjectDictionary ,error ){_aacb ,_fbcd :=_gf .GetArray (_dgee .Rect ); -if !_fbcd {return nil ,_ff .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074");};_ead ,_baf :=_bc .NewPdfRectangle (*_aacb );if _baf !=nil {return nil ,_baf ;};_ddfb ,_beb :=_ead .Width (),_ead .Height ();_e .Log .Debug ("\u0043\u0068\u006f\u0069\u0063\u0065\u002c\u0020\u0077\u0061\u0020\u0042S\u003a\u0020\u0025\u0076",_dgee .BS ); -_ebc ,_baf :=_fc .NewContentStreamParser (_cbf (_bgc .PdfField )).Parse ();if _baf !=nil {return nil ,_baf ;};_dbg ,_acg :=_gf .GetDict (_dgee .MK );if _acg {_bgf ,_ :=_gf .GetDict (_dgee .BS );_gce :=_egd .applyAppearanceCharacteristics (_dbg ,_bgf ,nil ); -if _gce !=nil {return nil ,_gce ;};};_eag :=_gf .MakeDict ();for _ ,_ffbb :=range _bgc .Opt .Elements (){if _caec ,_faa :=_gf .GetArray (_ffbb );_faa &&_caec .Len ()==2{_ffbb =_caec .Get (1);};var _ddc string ;if _bfa ,_gdb :=_gf .GetString (_ffbb );_gdb {_ddc =_bfa .Decoded (); -}else if _ccg ,_dgg :=_gf .GetName (_ffbb );_dgg {_ddc =_ccg .String ();}else {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u004f\u0070\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006de\u002f\u0073\u0074\u0072\u0069\u006e\u0067 \u002d\u0020\u0025\u0054",_ffbb ); -return nil ,_ff .New ("\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u002f\u0073t\u0072\u0069\u006e\u0067");};if len (_ddc )> 0{_agdf ,_babb :=_ecdg (_bgc .PdfField ,_ddfb ,_beb ,_ddc ,_egd ,_ebc ,_aaaf .DR ,_dbg );if _babb !=nil {return nil ,_babb ; -};_eag .Set (*_gf .MakeName (_ddc ),_agdf .ToPdfObject ());};};_fdd :=_gf .MakeDict ();_fdd .Set ("\u004e",_eag );return _fdd ,nil ;};func (_gccd *AppearanceStyle )applyRotation (_cfg *_gf .PdfObjectDictionary ,_cbd ,_bgdg float64 ,_bbcd *_fc .ContentCreator )(float64 ,float64 ){if !_gccd .AllowMK {return _cbd ,_bgdg ; -};if _cfg ==nil {return _cbd ,_bgdg ;};_ecde ,_ :=_gf .GetNumberAsFloat (_cfg .Get ("\u0052"));if _ecde ==0{return _cbd ,_bgdg ;};_dda :=-_ecde ;_gdgf :=_fb .Path {Points :[]_fb .Point {_fb .NewPoint (0,0).Rotate (_dda ),_fb .NewPoint (_cbd ,0).Rotate (_dda ),_fb .NewPoint (0,_bgdg ).Rotate (_dda ),_fb .NewPoint (_cbd ,_bgdg ).Rotate (_dda )}}.GetBoundingBox (); -_bbcd .RotateDeg (_ecde );_bbcd .Translate (_gdgf .X ,_gdgf .Y );return _gdgf .Width ,_gdgf .Height ;};func _ebdb (_acfeb []*SignatureLine ,_fbdd *SignatureFieldOpts )(*_gf .PdfObjectDictionary ,error ){if _fbdd ==nil {_fbdd =NewSignatureFieldOpts ();}; -var _bccb error ;var _ebfb *_gf .PdfObjectName ;_cacc :=_fbdd .Font ;if _cacc !=nil {_aab ,_ :=_cacc .GetFontDescriptor ();if _aab !=nil {if _abc ,_cab :=_aab .FontName .(*_gf .PdfObjectName );_cab {_ebfb =_abc ;};};if _ebfb ==nil {_ebfb =_gf .MakeName ("\u0046\u006f\u006et\u0031"); -};}else {if _cacc ,_bccb =_bc .NewStandard14Font ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a");_bccb !=nil {return nil ,_bccb ;};_ebfb =_gf .MakeName ("\u0048\u0065\u006c\u0076");};_aabg :=_fbdd .FontSize ;if _aabg <=0{_aabg =10;};if _fbdd .LineHeight <=0{_fbdd .LineHeight =1; -};_faeb :=_fbdd .LineHeight *_aabg ;_bgg ,_bef :=_cacc .GetRuneMetrics (' ');if !_bef {return nil ,_ff .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068"); -};_abfb :=_bgg .Wx ;var _aff float64 ;var _ecdgd []string ;for _ ,_acee :=range _acfeb {if _acee .Text ==""{continue ;};_fea :=_acee .Text ;if _acee .Desc !=""{_fea =_acee .Desc +"\u003a\u0020"+_fea ;};_ecdgd =append (_ecdgd ,_fea );var _fdf float64 ;for _ ,_cgef :=range _fea {_aaf ,_daace :=_cacc .GetRuneMetrics (_cgef ); -if !_daace {continue ;};_fdf +=_aaf .Wx ;};if _fdf > _aff {_aff =_fdf ;};};_aff =_aff *_aabg /1000.0;_cacce :=float64 (len (_ecdgd ))*_faeb ;_fbddc :=_fbdd .Image !=nil ;_cbfc :=_fbdd .Rect ;if _cbfc ==nil {_cbfc =[]float64 {0,0,_aff ,_cacce };if _fbddc {_cbfc [2]=_aff *2; -_cbfc [3]=_cacce *2;};_fbdd .Rect =_cbfc ;};_fddg :=_cbfc [2]-_cbfc [0];_bed :=_cbfc [3]-_cbfc [1];_aafc ,_gcceb :=_cbfc ,_cbfc ;var _edb ,_eed float64 ;if _fbddc &&len (_ecdgd )> 0{if _fbdd .ImagePosition <=SignatureImageRight {_dage :=[]float64 {_cbfc [0],_cbfc [1],_cbfc [0]+(_fddg /2),_cbfc [3]}; -_cgec :=[]float64 {_cbfc [0]+(_fddg /2),_cbfc [1],_cbfc [2],_cbfc [3]};if _fbdd .ImagePosition ==SignatureImageLeft {_aafc ,_gcceb =_dage ,_cgec ;}else {_aafc ,_gcceb =_cgec ,_dage ;};}else {_faae :=[]float64 {_cbfc [0],_cbfc [1],_cbfc [2],_cbfc [1]+(_bed /2)}; -_eegg :=[]float64 {_cbfc [0],_cbfc [1]+(_bed /2),_cbfc [2],_cbfc [3]};if _fbdd .ImagePosition ==SignatureImageTop {_aafc ,_gcceb =_eegg ,_faae ;}else {_aafc ,_gcceb =_faae ,_eegg ;};};};_edb =_gcceb [2]-_gcceb [0];_eed =_gcceb [3]-_gcceb [1];var _bedb float64 ; -if _fbdd .AutoSize {if _aff > _edb ||_cacce > _eed {_fcb :=_fd .Min (_edb /_aff ,_eed /_cacce );_aabg *=_fcb ;};_faeb =_fbdd .LineHeight *_aabg ;_bedb +=(_eed -float64 (len (_ecdgd ))*_faeb )/2;};_adfb :=_fc .NewContentCreator ();_caba :=_bc .NewPdfPageResources (); -_caba .SetFontByName (*_ebfb ,_cacc .ToPdfObject ());if _fbdd .BorderSize <=0{_fbdd .BorderSize =0;_fbdd .BorderColor =_bc .NewPdfColorDeviceGray (1);};_adfb .Add_q ();if _fbdd .FillColor !=nil {_adfb .SetNonStrokingColor (_fbdd .FillColor );};if _fbdd .BorderColor !=nil {_adfb .SetStrokingColor (_fbdd .BorderColor ); -};_adfb .Add_w (_fbdd .BorderSize ).Add_re (_cbfc [0],_cbfc [1],_fddg ,_bed );if _fbdd .FillColor !=nil &&_fbdd .BorderColor !=nil {_adfb .Add_B ();}else if _fbdd .FillColor !=nil {_adfb .Add_f ();}else if _fbdd .BorderColor !=nil {_adfb .Add_S ();};_adfb .Add_Q (); -if _fbdd .WatermarkImage !=nil {_ddgc :=[]float64 {_cbfc [0],_cbfc [1],_cbfc [2],_cbfc [3]};_aecg ,_cfc ,_bcb :=_eab (_fbdd .WatermarkImage ,"\u0049\u006d\u0061\u0067\u0065\u0057\u0061\u0074\u0065r\u006d\u0061\u0072\u006b",_fbdd ,_ddgc ,_adfb );if _bcb !=nil {return nil ,_bcb ; -};_caba .SetXObjectImageByName (*_aecg ,_cfc );};_adfb .Add_q ();_adfb .Translate (_gcceb [0],_gcceb [3]-_faeb -_bedb );_adfb .Add_BT ();_aadb :=_cacc .Encoder ();for _ ,_cga :=range _ecdgd {var _bbad []byte ;for _ ,_adcg :=range _cga {if _b .IsSpace (_adcg ){if len (_bbad )> 0{_adfb .SetNonStrokingColor (_fbdd .TextColor ).Add_Tf (*_ebfb ,_aabg ).Add_TL (_faeb ).Add_TJ ([]_gf .PdfObject {_gf .MakeStringFromBytes (_bbad )}...); -_bbad =nil ;};_adfb .Add_Tf (*_ebfb ,_aabg ).Add_TL (_faeb ).Add_TJ ([]_gf .PdfObject {_gf .MakeFloat (-_abfb )}...);}else {_bbad =append (_bbad ,_aadb .Encode (string (_adcg ))...);};};if len (_bbad )> 0{_adfb .SetNonStrokingColor (_fbdd .TextColor ).Add_Tf (*_ebfb ,_aabg ).Add_TL (_faeb ).Add_TJ ([]_gf .PdfObject {_gf .MakeStringFromBytes (_bbad )}...); -};_adfb .Add_Td (0,-_faeb );};_adfb .Add_ET ();_adfb .Add_Q ();if _fbddc {_fbab ,_dbed ,_deg :=_eab (_fbdd .Image ,"\u0049\u006d\u0061\u0067\u0065\u0053\u0069\u0067\u006ea\u0074\u0075\u0072\u0065",_fbdd ,_aafc ,_adfb );if _deg !=nil {return nil ,_deg ; -};_caba .SetXObjectImageByName (*_fbab ,_dbed );};_cgd :=_bc .NewXObjectForm ();_cgd .Resources =_caba ;_cgd .BBox =_gf .MakeArrayFromFloats (_cbfc );_cgd .SetContentStream (_adfb .Bytes (),_aga ());_gaf :=_gf .MakeDict ();_gaf .Set ("\u004e",_cgd .ToPdfObject ()); -return _gaf ,nil ;}; +// Font represents the actual font used for the field appearance. +Font *_bb .PdfFont ; -// CreateInkAnnotation creates an ink annotation object that can be added to the annotation list of a PDF page. -func CreateInkAnnotation (inkDef InkAnnotationDef )(*_bc .PdfAnnotation ,error ){_addg :=_bc .NewPdfAnnotationInk ();_ccdf :=_gf .MakeArray ();for _ ,_gddd :=range inkDef .Paths {if _gddd .Length ()==0{continue ;};_aca :=[]float64 {};for _ ,_decc :=range _gddd .Points {_aca =append (_aca ,_decc .X ,_decc .Y ); -};_ccdf .Append (_gf .MakeArrayFromFloats (_aca ));};_addg .InkList =_ccdf ;if inkDef .Color ==nil {inkDef .Color =_bc .NewPdfColorDeviceRGB (0.0,0.0,0.0);};_addg .C =_gf .MakeArrayFromFloats ([]float64 {inkDef .Color .R (),inkDef .Color .G (),inkDef .Color .B ()}); -_fage ,_gff ,_edfb :=_faaec (&inkDef );if _edfb !=nil {return nil ,_edfb ;};_addg .AP =_fage ;_addg .Rect =_gf .MakeArrayFromFloats ([]float64 {_gff .Llx ,_gff .Lly ,_gff .Urx ,_gff .Ury });return _addg .PdfAnnotation ,nil ;}; +// Size represents the size of the font used for the field appearance. +// If the font size is 0, the value of the FallbackSize field of the +// AppearanceFontStyle is used, if set. Otherwise, the font size is +// calculated based on the available annotation height and on the +// AutoFontSizeFraction field of the AppearanceStyle. +Size float64 ;};func _gbaf (_fcc *_bb .PdfAnnotationWidget ,_egbb *_bb .PdfFieldButton ,_aecc *_bb .PdfPageResources ,_bdgd AppearanceStyle )(*_cd .PdfObjectDictionary ,error ){_cgb ,_egge :=_cd .GetArray (_fcc .Rect );if !_egge {return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074"); +};_feb ,_eda :=_bb .NewPdfRectangle (*_cgb );if _eda !=nil {return nil ,_eda ;};_ccf ,_dfg :=_feb .Width (),_feb .Height ();_aea ,_ddf :=_ccf ,_dfg ;_d .Log .Debug ("\u0043\u0068\u0065\u0063kb\u006f\u0078\u002c\u0020\u0077\u0061\u0020\u0042\u0053\u003a\u0020\u0025\u0076",_fcc .BS ); +_cbgf ,_eda :=_bb .NewStandard14Font ("\u005a\u0061\u0070f\u0044\u0069\u006e\u0067\u0062\u0061\u0074\u0073");if _eda !=nil {return nil ,_eda ;};_adf ,_caca :=_cd .GetDict (_fcc .MK );if _caca {_acd ,_ :=_cd .GetDict (_fcc .BS );_edb :=_bdgd .applyAppearanceCharacteristics (_adf ,_acd ,_cbgf ); +if _edb !=nil {return nil ,_edb ;};};_ebc :=_bb .NewXObjectForm ();{_degg :=_bg .NewContentCreator ();if _bdgd .BorderSize > 0{_ddc (_degg ,_bdgd ,_ccf ,_dfg );};if _bdgd .DrawAlignmentReticle {_ecfb :=_bdgd ;_ecfb .BorderSize =0.2;_deggd (_degg ,_ecfb ,_ccf ,_dfg ); +};_ccf ,_dfg =_bdgd .applyRotation (_adf ,_ccf ,_dfg ,_degg );_fgg :=_bdgd .AutoFontSizeFraction *_dfg ;_ggd ,_fdb :=_cbgf .GetRuneMetrics (_bdgd .CheckmarkRune );if !_fdb {return nil ,_f .New ("\u0067l\u0079p\u0068\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +};_bff :=_cbgf .Encoder ();_aega :=_bff .Encode (string (_bdgd .CheckmarkRune ));_caac :=_ggd .Wx *_fgg /1000.0;_gbde :=705.0;_ecbg :=_gbde /1000.0*_fgg ;_add :=_dgg ;if _bdgd .MarginLeft !=nil {_add =*_bdgd .MarginLeft ;};_gefa :=1.0;if _caac < _ccf {_add =(_ccf -_caac )/2.0; +};if _ecbg < _dfg {_gefa =(_dfg -_ecbg )/2.0;};_degg .Add_q ().Add_g (0).Add_BT ().Add_Tf ("\u005a\u0061\u0044\u0062",_fgg ).Add_Td (_add ,_gefa ).Add_Tj (*_cd .MakeStringFromBytes (_aega )).Add_ET ().Add_Q ();_ebc .Resources =_bb .NewPdfPageResources (); +_ebc .Resources .SetFontByName ("\u005a\u0061\u0044\u0062",_cbgf .ToPdfObject ());_ebc .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_aea ,_ddf });_ebc .SetContentStream (_degg .Bytes (),_bed ());};_bce :=_bb .NewXObjectForm ();{_ebb :=_bg .NewContentCreator (); +if _bdgd .BorderSize > 0{_ddc (_ebb ,_bdgd ,_ccf ,_dfg );};_bce .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_aea ,_ddf });_bce .SetContentStream (_ebb .Bytes (),_bed ());};_cde :=_cd .PdfObjectName ("\u0059\u0065\u0073");_bbb ,_caca :=_cd .GetDict (_fcc .PdfAnnotation .AP ); +if _caca &&_bbb !=nil {_fca :=_cd .TraceToDirectObject (_bbb .Get ("\u004e"));switch _cbag :=_fca .(type ){case *_cd .PdfObjectDictionary :_caab :=_cbag .Keys ();for _ ,_dfae :=range _caab {if _dfae !="\u004f\u0066\u0066"{_cde =_dfae ;};};};};_ddfa :=_cd .MakeDict (); +_ddfa .Set ("\u004f\u0066\u0066",_bce .ToPdfObject ());_ddfa .Set (_cde ,_ebc .ToPdfObject ());_aegf :=_cd .MakeDict ();_aegf .Set ("\u004e",_ddfa );return _aegf ,nil ;}; -// NewSignatureField returns a new signature field with a visible appearance -// containing the specified signature lines and styled according to the -// specified options. -func NewSignatureField (signature *_bc .PdfSignature ,lines []*SignatureLine ,opts *SignatureFieldOpts )(*_bc .PdfFieldSignature ,error ){if signature ==nil {return nil ,_ff .New ("\u0073\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c"); -};_bbca ,_dgbf :=_ebdb (lines ,opts );if _dgbf !=nil {return nil ,_dgbf ;};_cfee :=_bc .NewPdfFieldSignature (signature );_cfee .Rect =_gf .MakeArrayFromFloats (opts .Rect );_cfee .AP =_bbca ;return _cfee ,nil ;};func _cccf (_bfef *_fc .ContentCreator ,_ffef AppearanceStyle ,_dba ,_dbee float64 ){_bfef .Add_q ().Add_re (0,0,_dba ,_dbee ).Add_w (_ffef .BorderSize ).SetStrokingColor (_ffef .BorderColor ).SetNonStrokingColor (_ffef .FillColor ).Add_B ().Add_Q (); -};func _faaec (_fbcg *InkAnnotationDef )(*_gf .PdfObjectDictionary ,*_bc .PdfRectangle ,error ){_ecdd :=_bc .NewXObjectForm ();_cgaf ,_fegc ,_fdgb :=_dfa (_fbcg );if _fdgb !=nil {return nil ,nil ,_fdgb ;};_fdgb =_ecdd .SetContentStream (_cgaf ,nil );if _fdgb !=nil {return nil ,nil ,_fdgb ; -};_ecdd .BBox =_fegc .ToPdfObject ();_ecdd .Resources =_bc .NewPdfPageResources ();_ecdd .Resources .ProcSet =_gf .MakeArray (_gf .MakeName ("\u0050\u0044\u0046"));_afac :=_gf .MakeDict ();_afac .Set ("\u004e",_ecdd .ToPdfObject ());return _afac ,_fegc ,nil ; -};func _daae (_gddc LineAnnotationDef ,_bdea string )([]byte ,*_bc .PdfRectangle ,*_bc .PdfRectangle ,error ){_ccbde :=_fb .Line {X1 :0,Y1 :0,X2 :_gddc .X2 -_gddc .X1 ,Y2 :_gddc .Y2 -_gddc .Y1 ,LineColor :_gddc .LineColor ,Opacity :_gddc .Opacity ,LineWidth :_gddc .LineWidth ,LineEndingStyle1 :_gddc .LineEndingStyle1 ,LineEndingStyle2 :_gddc .LineEndingStyle2 }; -_bdfb ,_faga ,_eea :=_ccbde .Draw (_bdea );if _eea !=nil {return nil ,nil ,nil ,_eea ;};_efag :=&_bc .PdfRectangle {};_efag .Llx =_gddc .X1 +_faga .Llx ;_efag .Lly =_gddc .Y1 +_faga .Lly ;_efag .Urx =_gddc .X1 +_faga .Urx ;_efag .Ury =_gddc .Y1 +_faga .Ury ; -return _bdfb ,_faga ,_efag ,nil ;}; +// NewSignatureLine returns a new signature line displayed as a part of the +// signature field appearance. +func NewSignatureLine (desc ,text string )*SignatureLine {return &SignatureLine {Desc :desc ,Text :text };};func _cede (_abbc *InkAnnotationDef )(*_cd .PdfObjectDictionary ,*_bb .PdfRectangle ,error ){_fee :=_bb .NewXObjectForm ();_gggc ,_dcdg ,_gdbdf :=_cdbd (_abbc ); +if _gdbdf !=nil {return nil ,nil ,_gdbdf ;};_gdbdf =_fee .SetContentStream (_gggc ,nil );if _gdbdf !=nil {return nil ,nil ,_gdbdf ;};_fee .BBox =_dcdg .ToPdfObject ();_fee .Resources =_bb .NewPdfPageResources ();_fee .Resources .ProcSet =_cd .MakeArray (_cd .MakeName ("\u0050\u0044\u0046")); +_fgbe :=_cd .MakeDict ();_fgbe .Set ("\u004e",_fee .ToPdfObject ());return _fgbe ,_dcdg ,nil ;};func _gde (_abf RectangleAnnotationDef )(*_cd .PdfObjectDictionary ,*_bb .PdfRectangle ,error ){_ecfga :=_bb .NewXObjectForm ();_ecfga .Resources =_bb .NewPdfPageResources (); +_fdde :="";if _abf .Opacity < 1.0{_daag :=_cd .MakeDict ();_daag .Set ("\u0063\u0061",_cd .MakeFloat (_abf .Opacity ));_daag .Set ("\u0043\u0041",_cd .MakeFloat (_abf .Opacity ));_eagd :=_ecfga .Resources .AddExtGState ("\u0067\u0073\u0031",_daag );if _eagd !=nil {_d .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0064\u0064\u0020\u0065\u0078\u0074g\u0073\u0074\u0061t\u0065 \u0067\u0073\u0031"); +return nil ,nil ,_eagd ;};_fdde ="\u0067\u0073\u0031";};_beab ,_efgg ,_ceeb ,_edcd :=_dfbg (_abf ,_fdde );if _edcd !=nil {return nil ,nil ,_edcd ;};_edcd =_ecfga .SetContentStream (_beab ,nil );if _edcd !=nil {return nil ,nil ,_edcd ;};_ecfga .BBox =_efgg .ToPdfObject (); +_dbgb :=_cd .MakeDict ();_dbgb .Set ("\u004e",_ecfga .ToPdfObject ());return _dbgb ,_ceeb ,nil ;};func _eaff (_gdaf *_bb .PdfField ,_ace ,_fbde float64 ,_gdba string ,_ccc AppearanceStyle ,_bdad *_bg .ContentStreamOperations ,_fgc *_bb .PdfPageResources ,_dgf *_cd .PdfObjectDictionary )(*_bb .XObjectForm ,error ){_edg :=_bb .NewPdfPageResources (); +_fedg ,_aad :=_ace ,_fbde ;_cdcg :=_bg .NewContentCreator ();if _ccc .BorderSize > 0{_ddc (_cdcg ,_ccc ,_ace ,_fbde );};if _ccc .DrawAlignmentReticle {_bdc :=_ccc ;_bdc .BorderSize =0.2;_deggd (_cdcg ,_bdc ,_ace ,_fbde );};_cdcg .Add_BMC ("\u0054\u0078"); +_cdcg .Add_q ();_cdcg .Add_BT ();_ace ,_fbde =_ccc .applyRotation (_dgf ,_ace ,_fbde ,_cdcg );_cacc ,_gcdg ,_fgcb :=_ccc .processDA (_gdaf ,_bdad ,_fgc ,_edg ,_cdcg );if _fgcb !=nil {return nil ,_fgcb ;};_fffa :=_cacc .Font ;_bcc :=_cacc .Size ;_edd :=_cd .MakeName (_cacc .Name ); +_bcee :=_bcc ==0;if _bcee &&_gcdg {_bcc =_fbde *_ccc .AutoFontSizeFraction ;};_ggcb :=_fffa .Encoder ();if _ggcb ==nil {_d .Log .Debug ("\u0057\u0041RN\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0069\u0073\u0020\u006e\u0069l\u002e\u0020\u0041\u0073s\u0075\u006d\u0069\u006eg \u0069\u0064e\u006et\u0069\u0074\u0079\u0020\u0065\u006ec\u006f\u0064\u0065r\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +_ggcb =_a .NewIdentityTextEncoder ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048");};if len (_gdba )==0{return nil ,nil ;};_cefe :=_dgg ;if _ccc .MarginLeft !=nil {_cefe =*_ccc .MarginLeft ;};_dbca :=0.0;if _ggcb !=nil {for _ ,_bdd :=range _gdba {_gcg ,_dff :=_fffa .GetRuneMetrics (_bdd ); +if !_dff {_d .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0065\u0074r\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0025\u0076\u0020\u002d\u0020\u0073k\u0069p\u0070\u0069\u006e\u0067",_bdd ); +continue ;};_dbca +=_gcg .Wx ;};_gdba =string (_ggcb .Encode (_gdba ));};if _bcc ==0||_bcee &&_dbca > 0&&_cefe +_dbca *_bcc /1000.0> _ace {_bcc =0.95*1000.0*(_ace -_cefe )/_dbca ;};_bdde :=1.0*_bcc ;_eggg :=2.0;{_gcbd :=_bdde ;if _bcee &&_eggg +_gcbd > _fbde {_bcc =0.95*(_fbde -_eggg ); +_bdde =1.0*_bcc ;_gcbd =_bdde ;};if _fbde > _gcbd {_eggg =(_fbde -_gcbd )/2.0;_eggg +=1.50;};};_cdcg .Add_Tf (*_edd ,_bcc );_cdcg .Add_Td (_cefe ,_eggg );_cdcg .Add_Tj (*_cd .MakeString (_gdba ));_cdcg .Add_ET ();_cdcg .Add_Q ();_cdcg .Add_EMC ();_adfa :=_bb .NewXObjectForm (); +_adfa .Resources =_edg ;_adfa .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_fedg ,_aad });_adfa .SetContentStream (_cdcg .Bytes (),_bed ());return _adfa ,nil ;}; + +// SetStyle applies appearance `style` to `fa`. +func (_abge *ImageFieldAppearance )SetStyle (style AppearanceStyle ){_abge ._aade =&style }; // ComboboxFieldOptions defines optional parameters for a combobox form field. type ComboboxFieldOptions struct{ // Choices is the list of string values that can be selected. -Choices []string ;}; - -// CreateRectangleAnnotation creates a rectangle annotation object that can be added to page PDF annotations. -func CreateRectangleAnnotation (rectDef RectangleAnnotationDef )(*_bc .PdfAnnotation ,error ){_cdd :=_bc .NewPdfAnnotationSquare ();if rectDef .BorderEnabled {_abec ,_gdff ,_bdg :=rectDef .BorderColor .R (),rectDef .BorderColor .G (),rectDef .BorderColor .B (); -_cdd .C =_gf .MakeArrayFromFloats ([]float64 {_abec ,_gdff ,_bdg });_bfgd :=_bc .NewBorderStyle ();_bfgd .SetBorderWidth (rectDef .BorderWidth );_cdd .BS =_bfgd .ToPdfObject ();};if rectDef .FillEnabled {_daf ,_feff ,_bbdc :=rectDef .FillColor .R (),rectDef .FillColor .G (),rectDef .FillColor .B (); -_cdd .IC =_gf .MakeArrayFromFloats ([]float64 {_daf ,_feff ,_bbdc });}else {_cdd .IC =_gf .MakeArrayFromIntegers ([]int {});};if rectDef .Opacity < 1.0{_cdd .CA =_gf .MakeFloat (rectDef .Opacity );};_bbde ,_dbeb ,_bfcg :=_fgf (rectDef );if _bfcg !=nil {return nil ,_bfcg ; -};_cdd .AP =_bbde ;_cdd .Rect =_gf .MakeArrayFromFloats ([]float64 {_dbeb .Llx ,_dbeb .Lly ,_dbeb .Urx ,_dbeb .Ury });return _cdd .PdfAnnotation ,nil ;};func _fgf (_dfec RectangleAnnotationDef )(*_gf .PdfObjectDictionary ,*_bc .PdfRectangle ,error ){_afba :=_bc .NewXObjectForm (); -_afba .Resources =_bc .NewPdfPageResources ();_cadb :="";if _dfec .Opacity < 1.0{_daaf :=_gf .MakeDict ();_daaf .Set ("\u0063\u0061",_gf .MakeFloat (_dfec .Opacity ));_daaf .Set ("\u0043\u0041",_gf .MakeFloat (_dfec .Opacity ));_gdde :=_afba .Resources .AddExtGState ("\u0067\u0073\u0031",_daaf ); -if _gdde !=nil {_e .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0064\u0064\u0020\u0065\u0078\u0074g\u0073\u0074\u0061t\u0065 \u0067\u0073\u0031");return nil ,nil ,_gdde ;};_cadb ="\u0067\u0073\u0031";};_ggf ,_bfdd ,_beef ,_fagaa :=_dcbd (_dfec ,_cadb ); -if _fagaa !=nil {return nil ,nil ,_fagaa ;};_fagaa =_afba .SetContentStream (_ggf ,nil );if _fagaa !=nil {return nil ,nil ,_fagaa ;};_afba .BBox =_bfdd .ToPdfObject ();_begb :=_gf .MakeDict ();_begb .Set ("\u004e",_afba .ToPdfObject ());return _begb ,_beef ,nil ; -};func _dcbd (_bcbd RectangleAnnotationDef ,_bdae string )([]byte ,*_bc .PdfRectangle ,*_bc .PdfRectangle ,error ){_bcfc :=_fb .Rectangle {X :0,Y :0,Width :_bcbd .Width ,Height :_bcbd .Height ,FillEnabled :_bcbd .FillEnabled ,FillColor :_bcbd .FillColor ,BorderEnabled :_bcbd .BorderEnabled ,BorderWidth :2*_bcbd .BorderWidth ,BorderColor :_bcbd .BorderColor ,Opacity :_bcbd .Opacity }; -_gaca ,_eafda ,_ggca :=_bcfc .Draw (_bdae );if _ggca !=nil {return nil ,nil ,nil ,_ggca ;};_ebdg :=&_bc .PdfRectangle {};_ebdg .Llx =_bcbd .X +_eafda .Llx ;_ebdg .Lly =_bcbd .Y +_eafda .Lly ;_ebdg .Urx =_bcbd .X +_eafda .Urx ;_ebdg .Ury =_bcbd .Y +_eafda .Ury ; -return _gaca ,_eafda ,_ebdg ,nil ;};func _fddb (_eedf *_bc .PdfFieldButton ,_cbg *_bc .PdfAnnotationWidget ,_bega AppearanceStyle )(*_gf .PdfObjectDictionary ,error ){_dgdf ,_cfab :=_gf .GetArray (_cbg .Rect );if !_cfab {return nil ,_ff .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074"); -};_cefe ,_cdbc :=_bc .NewPdfRectangle (*_dgdf );if _cdbc !=nil {return nil ,_cdbc ;};_gcg ,_gded :=_cefe .Width (),_cefe .Height ();_gedcf :=_fc .NewContentCreator ();if _bega .BorderSize > 0{_cccf (_gedcf ,_bega ,_gcg ,_gded );};if _bega .DrawAlignmentReticle {_ebeg :=_bega ; -_ebeg .BorderSize =0.2;_afcf (_gedcf ,_ebeg ,_gcg ,_gded );};_feab :=_eedf .GetFillImage ();_ggae ,_cdbc :=_dabg (_gcg ,_gded ,_feab ,_bega );if _cdbc !=nil {return nil ,_cdbc ;};_gbcfd ,_cdag :=_gf .GetDict (_cbg .MK );if _cdag {_gbcfd .Set ("\u006c",_ggae .ToPdfObject ()); -};_gcbb :=_gf .MakeDict ();_gcbb .Set ("\u0046\u0052\u004d",_ggae .ToPdfObject ());_gdd :=_bc .NewPdfPageResources ();_gdd .ProcSet =_gf .MakeArray (_gf .MakeName ("\u0050\u0044\u0046"));_gdd .XObject =_gcbb ;_dbc :=_gcg -2;_efa :=_gded -2;_gedcf .Add_q (); -_gedcf .Add_re (1,1,_dbc ,_efa );_gedcf .Add_W ();_gedcf .Add_n ();_dbc -=2;_efa -=2;_gedcf .Add_q ();_gedcf .Add_re (2,2,_dbc ,_efa );_gedcf .Add_W ();_gedcf .Add_n ();_cdafg :=_fd .Min (_dbc /float64 (_feab .Width ),_efa /float64 (_feab .Height ));_gedcf .Add_cm (_cdafg ,0,0,_cdafg ,(_gcg /2)-(float64 (_feab .Width )*_cdafg /2)+2,2); -_gedcf .Add_Do ("\u0046\u0052\u004d");_gedcf .Add_Q ();_gedcf .Add_Q ();_afdg :=_bc .NewXObjectForm ();_afdg .FormType =_gf .MakeInteger (1);_afdg .Resources =_gdd ;_afdg .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_gcg ,_gded });_afdg .Matrix =_gf .MakeArrayFromFloats ([]float64 {1.0,0.0,0.0,1.0,0.0,0.0}); -_afdg .SetContentStream (_gedcf .Bytes (),_aga ());_gcfd :=_gf .MakeDict ();_gcfd .Set ("\u004e",_afdg .ToPdfObject ());return _gcfd ,nil ;}; - -// FieldAppearance implements interface model.FieldAppearanceGenerator and generates appearance streams -// for fields taking into account what value is in the field. A common use case is for generating the -// appearance stream prior to flattening fields. -// -// If `OnlyIfMissing` is true, the field appearance is generated only for fields that do not have an -// appearance stream specified. -// If `RegenerateTextFields` is true, all text fields are regenerated (even if OnlyIfMissing is true). -type FieldAppearance struct{OnlyIfMissing bool ;RegenerateTextFields bool ;_bce *AppearanceStyle ;}; - -// LineAnnotationDef defines a line between point 1 (X1,Y1) and point 2 (X2,Y2). The line ending styles can be none -// (regular line), or arrows at either end. The line also has a specified width, color and opacity. -type LineAnnotationDef struct{X1 float64 ;Y1 float64 ;X2 float64 ;Y2 float64 ;LineColor *_bc .PdfColorDeviceRGB ;Opacity float64 ;LineWidth float64 ;LineEndingStyle1 _fb .LineEndingStyle ;LineEndingStyle2 _fb .LineEndingStyle ;}; - -// NewComboboxField generates a new combobox form field with partial name `name` at location `rect` -// on specified `page` and with field specific options `opt`. -func NewComboboxField (page *_bc .PdfPage ,name string ,rect []float64 ,opt ComboboxFieldOptions )(*_bc .PdfFieldChoice ,error ){if page ==nil {return nil ,_ff .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); -};if len (name )<=0{return nil ,_ff .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");};if len (rect )!=4{return nil ,_ff .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); -};_eedb :=_bc .NewPdfField ();_egb :=&_bc .PdfFieldChoice {};_eedb .SetContext (_egb );_egb .PdfField =_eedb ;_egb .T =_gf .MakeString (name );_egb .Opt =_gf .MakeArray ();for _ ,_feg :=range opt .Choices {_egb .Opt .Append (_gf .MakeString (_feg ));}; -_egb .SetFlag (_bc .FieldFlagCombo );_ffge :=_bc .NewPdfAnnotationWidget ();_ffge .Rect =_gf .MakeArrayFromFloats (rect );_ffge .P =page .ToPdfObject ();_ffge .F =_gf .MakeInteger (4);_ffge .Parent =_egb .ToPdfObject ();_egb .Annotations =append (_egb .Annotations ,_ffge ); -return _egb ,nil ;};func _gc (_ca CircleAnnotationDef ,_dg string )([]byte ,*_bc .PdfRectangle ,*_bc .PdfRectangle ,error ){_ccf :=_fb .Circle {X :_ca .X ,Y :_ca .Y ,Width :_ca .Width ,Height :_ca .Height ,FillEnabled :_ca .FillEnabled ,FillColor :_ca .FillColor ,BorderEnabled :_ca .BorderEnabled ,BorderWidth :_ca .BorderWidth ,BorderColor :_ca .BorderColor ,Opacity :_ca .Opacity }; -_fgb ,_fbc ,_cdc :=_ccf .Draw (_dg );if _cdc !=nil {return nil ,nil ,nil ,_cdc ;};_gfe :=&_bc .PdfRectangle {};_gfe .Llx =_ca .X +_fbc .Llx ;_gfe .Lly =_ca .Y +_fbc .Lly ;_gfe .Urx =_ca .X +_fbc .Urx ;_gfe .Ury =_ca .Y +_fbc .Ury ;return _fgb ,_fbc ,_gfe ,nil ; -}; +Choices []string ;};func _fggc (_febb *_bb .PdfAcroForm ,_gee *_bb .PdfAnnotationWidget ,_daab *_bb .PdfFieldChoice ,_cfe AppearanceStyle )(*_cd .PdfObjectDictionary ,error ){_acc ,_ggg :=_cd .GetArray (_gee .Rect );if !_ggg {return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074"); +};_cgg ,_fcaf :=_bb .NewPdfRectangle (*_acc );if _fcaf !=nil {return nil ,_fcaf ;};_ebe ,_fcd :=_cgg .Width (),_cgg .Height ();_d .Log .Debug ("\u0043\u0068\u006f\u0069\u0063\u0065\u002c\u0020\u0077\u0061\u0020\u0042S\u003a\u0020\u0025\u0076",_gee .BS ); +_cdcd ,_fcaf :=_bg .NewContentStreamParser (_dbf (_daab .PdfField )).Parse ();if _fcaf !=nil {return nil ,_fcaf ;};_cfee ,_edaa :=_cd .GetDict (_gee .MK );if _edaa {_faa ,_ :=_cd .GetDict (_gee .BS );_baaa :=_cfe .applyAppearanceCharacteristics (_cfee ,_faa ,nil ); +if _baaa !=nil {return nil ,_baaa ;};};_cagd :=_cd .MakeDict ();for _ ,_bbge :=range _daab .Opt .Elements (){if _cage ,_fafd :=_cd .GetArray (_bbge );_fafd &&_cage .Len ()==2{_bbge =_cage .Get (1);};var _dcg string ;if _gbg ,_daca :=_cd .GetString (_bbge ); +_daca {_dcg =_gbg .Decoded ();}else if _fgeb ,_efcc :=_cd .GetName (_bbge );_efcc {_dcg =_fgeb .String ();}else {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u004f\u0070\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006de\u002f\u0073\u0074\u0072\u0069\u006e\u0067 \u002d\u0020\u0025\u0054",_bbge ); +return nil ,_f .New ("\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u002f\u0073t\u0072\u0069\u006e\u0067");};if len (_dcg )> 0{_bbae ,_dfe :=_eaff (_daab .PdfField ,_ebe ,_fcd ,_dcg ,_cfe ,_cdcd ,_febb .DR ,_cfee );if _dfe !=nil {return nil ,_dfe ; +};_cagd .Set (*_cd .MakeName (_dcg ),_bbae .ToPdfObject ());};};_gcaf :=_cd .MakeDict ();_gcaf .Set ("\u004e",_cagd );return _gcaf ,nil ;}; // AppearanceFontStyle defines font style characteristics for form fields, // used in the filling/flattening process. @@ -381,90 +331,223 @@ FieldFallbacks map[string ]*AppearanceFont ; // ForceReplace forces the replacement of fonts in the filling/flattening // process, even if the default appearance (DA) specifies a valid font. // If no fallback font is provided, setting this field has no effect. -ForceReplace bool ;}; - -// SignatureImagePosition specifies the image signature location relative to the text signature. -// If text signature is not defined, this position will be ignored. -type SignatureImagePosition int ; +ForceReplace bool ;};func _gacdc (_ced ,_cdg float64 ,_cdcf *_bb .Image ,_eaeae AppearanceStyle )(*_bb .XObjectForm ,error ){_aeab ,_fgcbd :=_bb .NewXObjectImageFromImage (_cdcf ,nil ,_cd .NewFlateEncoder ());if _fgcbd !=nil {return nil ,_fgcbd ;};_aeab .Decode =_cd .MakeArrayFromFloats ([]float64 {0.0,1.0,0.0,1.0,0.0,1.0}); +_bfa :=_bb .NewPdfPageResources ();_bfa .ProcSet =_cd .MakeArray (_cd .MakeName ("\u0050\u0044\u0046"),_cd .MakeName ("\u0049\u006d\u0061\u0067\u0065\u0043"));_bfa .SetXObjectImageByName (_cd .PdfObjectName ("\u0049\u006d\u0030"),_aeab );_gefc :=_bg .NewContentCreator (); +_gefc .Add_q ();_gefc .Add_cm (float64 (_cdcf .Width ),0,0,float64 (_cdcf .Height ),0,0);_gefc .Add_Do ("\u0049\u006d\u0030");_gefc .Add_Q ();_gcbg :=_bb .NewXObjectForm ();_gcbg .FormType =_cd .MakeInteger (1);_gcbg .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,float64 (_cdcf .Width ),float64 (_cdcf .Height )}); +_gcbg .Resources =_bfa ;_gcbg .SetContentStream (_gefc .Bytes (),_bed ());return _gcbg ,nil ;};func _bed ()_cd .StreamEncoder {return _cd .NewFlateEncoder ()};func _ddc (_dcgb *_bg .ContentCreator ,_cffd AppearanceStyle ,_dad ,_cfg float64 ){_dcgb .Add_q ().Add_re (0,0,_dad ,_cfg ).Add_w (_cffd .BorderSize ).SetStrokingColor (_cffd .BorderColor ).SetNonStrokingColor (_cffd .FillColor ).Add_B ().Add_Q (); +};const (_gb quadding =0;_cc quadding =1;_cb quadding =2;_dgg float64 =2.0;);func _ffb (_ffff CircleAnnotationDef ,_gdc string )([]byte ,*_bb .PdfRectangle ,*_bb .PdfRectangle ,error ){_bc :=_fb .Circle {X :_ffff .X ,Y :_ffff .Y ,Width :_ffff .Width ,Height :_ffff .Height ,FillEnabled :_ffff .FillEnabled ,FillColor :_ffff .FillColor ,BorderEnabled :_ffff .BorderEnabled ,BorderWidth :_ffff .BorderWidth ,BorderColor :_ffff .BorderColor ,Opacity :_ffff .Opacity }; +_aa ,_be ,_aggd :=_bc .Draw (_gdc );if _aggd !=nil {return nil ,nil ,nil ,_aggd ;};_dd :=&_bb .PdfRectangle {};_dd .Llx =_ffff .X +_be .Llx ;_dd .Lly =_ffff .Y +_be .Lly ;_dd .Urx =_ffff .X +_be .Urx ;_dd .Ury =_ffff .Y +_be .Ury ;return _aa ,_be ,_dd ,nil ; +}; -// TextFieldOptions defines optional parameter for a text field in a form. -type TextFieldOptions struct{MaxLen int ;Value string ;}; +// GenerateAppearanceDict generates an appearance dictionary for widget annotation `wa` for the `field` in `form`. +// Implements interface model.FieldAppearanceGenerator. +func (_edf ImageFieldAppearance )GenerateAppearanceDict (form *_bb .PdfAcroForm ,field *_bb .PdfField ,wa *_bb .PdfAnnotationWidget )(*_cd .PdfObjectDictionary ,error ){_ ,_cee :=field .GetContext ().(*_bb .PdfFieldButton );if !_cee {_d .Log .Trace ("C\u006f\u0075\u006c\u0064\u0020\u006fn\u006c\u0079\u0020\u0068\u0061\u006ed\u006c\u0065\u0020\u0062\u0075\u0074\u0074o\u006e\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069n\u0067"); +return nil ,nil ;};_fcfc ,_befe :=_cd .GetDict (wa .AP );if _befe &&_edf .OnlyIfMissing {_d .Log .Trace ("\u0041\u006c\u0072\u0065a\u0064\u0079\u0020\u0070\u006f\u0070\u0075\u006c\u0061\u0074e\u0064 \u002d\u0020\u0069\u0067\u006e\u006f\u0072i\u006e\u0067"); +return _fcfc ,nil ;};if form .DR ==nil {form .DR =_bb .NewPdfPageResources ();};switch _cgf :=field .GetContext ().(type ){case *_bb .PdfFieldButton :if _cgf .IsPush (){_cce ,_cfed :=_fgge (_cgf ,wa ,_edf .Style ());if _cfed !=nil {return nil ,_cfed ;}; +return _cce ,nil ;};};return nil ,nil ;}; // RectangleAnnotationDef is a rectangle defined with a specified Width and Height and a lower left corner at (X,Y). // The rectangle can optionally have a border and a filling color. // The Width/Height includes the border (if any specified). -type RectangleAnnotationDef struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;FillEnabled bool ;FillColor *_bc .PdfColorDeviceRGB ;BorderEnabled bool ;BorderWidth float64 ;BorderColor *_bc .PdfColorDeviceRGB ;Opacity float64 ;};func _bdaaf (_aaba [][]_fb .CubicBezierCurve ,_bgac *_bc .PdfColorDeviceRGB ,_aeaa float64 )([]byte ,*_bc .PdfRectangle ,error ){_gdba :=_fc .NewContentCreator (); -_gdba .Add_q ().SetStrokingColor (_bgac ).Add_w (_aeaa );_degb :=_fb .NewCubicBezierPath ();for _ ,_aafcg :=range _aaba {_degb .Curves =append (_degb .Curves ,_aafcg ...);for _bead ,_bgad :=range _aafcg {if _bead ==0{_gdba .Add_m (_bgad .P0 .X ,_bgad .P0 .Y ); -}else {_gdba .Add_l (_bgad .P0 .X ,_bgad .P0 .Y );};_gdba .Add_c (_bgad .P1 .X ,_bgad .P1 .Y ,_bgad .P2 .X ,_bgad .P2 .Y ,_bgad .P3 .X ,_bgad .P3 .Y );};};_gdba .Add_S ().Add_Q ();return _gdba .Bytes (),_degb .GetBoundingBox ().ToPdfRectangle (),nil ;}; - +type RectangleAnnotationDef struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;FillEnabled bool ;FillColor *_bb .PdfColorDeviceRGB ;BorderEnabled bool ;BorderWidth float64 ;BorderColor *_bb .PdfColorDeviceRGB ;Opacity float64 ;}; -// AppearanceFont represents a font used for generating the appearance of a -// field in the filling/flattening process. -type AppearanceFont struct{ +// Style returns the appearance style of `fa`. If not specified, returns default style. +func (_bbd FieldAppearance )Style ()AppearanceStyle {if _bbd ._ca !=nil {return *_bbd ._ca ;};_dga :=_dgg ;return AppearanceStyle {AutoFontSizeFraction :0.65,CheckmarkRune :'✔',BorderSize :0.0,BorderColor :_bb .NewPdfColorDeviceGray (0),FillColor :_bb .NewPdfColorDeviceGray (1),MultilineLineHeight :1.2,MultilineVAlignMiddle :false ,DrawAlignmentReticle :false ,AllowMK :true ,MarginLeft :&_dga }; +};func (_ead *AppearanceStyle )applyAppearanceCharacteristics (_egbd *_cd .PdfObjectDictionary ,_fdd *_cd .PdfObjectDictionary ,_egdbg *_bb .PdfFont )error {if !_ead .AllowMK {return nil ;};if CA ,_bbgcb :=_cd .GetString (_egbd .Get ("\u0043\u0041"));_bbgcb &&_egdbg !=nil {_aaca :=CA .Bytes (); +if len (_aaca )!=0{_bbbe :=[]rune (_egdbg .Encoder ().Decode (_aaca ));if len (_bbbe )==1{_ead .CheckmarkRune =_bbbe [0];};};};if BC ,_egdec :=_cd .GetArray (_egbd .Get ("\u0042\u0043"));_egdec {_fdbf ,_edc :=BC .ToFloat64Array ();if _edc !=nil {return _edc ; +};switch len (_fdbf ){case 1:_ead .BorderColor =_bb .NewPdfColorDeviceGray (_fdbf [0]);case 3:_ead .BorderColor =_bb .NewPdfColorDeviceRGB (_fdbf [0],_fdbf [1],_fdbf [2]);case 4:_ead .BorderColor =_bb .NewPdfColorDeviceCMYK (_fdbf [0],_fdbf [1],_fdbf [2],_fdbf [3]); +default:_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0042\u0043\u0020\u002d\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0028\u0025\u0064)",len (_fdbf )); +};if _fdd !=nil {if _eefe ,_edba :=_cd .GetNumberAsFloat (_fdd .Get ("\u0057"));_edba ==nil {_ead .BorderSize =_eefe ;};};};if BG ,_gcdgf :=_cd .GetArray (_egbd .Get ("\u0042\u0047"));_gcdgf {_cefg ,_ade :=BG .ToFloat64Array ();if _ade !=nil {return _ade ; +};switch len (_cefg ){case 1:_ead .FillColor =_bb .NewPdfColorDeviceGray (_cefg [0]);case 3:_ead .FillColor =_bb .NewPdfColorDeviceRGB (_cefg [0],_cefg [1],_cefg [2]);case 4:_ead .FillColor =_bb .NewPdfColorDeviceCMYK (_cefg [0],_cefg [1],_cefg [2],_cefg [3]); +default:_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0042\u0047\u0020\u002d\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0028\u0025\u0064)",len (_cefg )); +};};return nil ;}; -// Name represents the name of the font which will be added to the -// AcroForm resources (DR). -Name string ; +// Style returns the appearance style of `fa`. If not specified, returns default style. +func (_abc ImageFieldAppearance )Style ()AppearanceStyle {if _abc ._aade !=nil {return *_abc ._aade ;};return AppearanceStyle {BorderSize :0.0,BorderColor :_bb .NewPdfColorDeviceGray (0),FillColor :_bb .NewPdfColorDeviceGray (1),DrawAlignmentReticle :false }; +}; -// Font represents the actual font used for the field appearance. -Font *_bc .PdfFont ; +// SetStyle applies appearance `style` to `fa`. +func (_cbd *FieldAppearance )SetStyle (style AppearanceStyle ){_cbd ._ca =&style };func _cdbd (_fga *InkAnnotationDef )([]byte ,*_bb .PdfRectangle ,error ){_egdeb :=[][]_fb .CubicBezierCurve {};for _ ,_aaea :=range _fga .Paths {if _aaea .Length ()==0{continue ; +};_febc :=_aaea .Points ;_gcce ,_fcga ,_fbg :=_bgca (_febc );if _fbg !=nil {return nil ,nil ,_fbg ;};if len (_gcce )!=len (_fcga ){return nil ,nil ,_f .New ("\u0049\u006e\u0065\u0071\u0075\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0063\u0061l\u0063\u0075\u006c\u0061\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0061\u006e\u0064\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0063\u006f\u006e\u0074\u0072o\u006c\u0020\u0070\u006f\u0069n\u0074"); +};_afff :=[]_fb .CubicBezierCurve {};for _eaccf :=0;_eaccf < len (_gcce );_eaccf ++{_afff =append (_afff ,_fb .CubicBezierCurve {P0 :_febc [_eaccf ],P1 :_gcce [_eaccf ],P2 :_fcga [_eaccf ],P3 :_febc [_eaccf +1]});};if len (_afff )> 0{_egdeb =append (_egdeb ,_afff ); +};};_bace ,_cffc ,_cbe :=_dccg (_egdeb ,_fga .Color ,_fga .LineWidth );if _cbe !=nil {return nil ,nil ,_cbe ;};return _bace ,_cffc ,nil ;}; -// Size represents the size of the font used for the field appearance. -// If the font size is 0, the value of the FallbackSize field of the -// AppearanceFontStyle is used, if set. Otherwise, the font size is -// calculated based on the available annotation height and on the -// AutoFontSizeFraction field of the AppearanceStyle. -Size float64 ;}; +// CreateInkAnnotation creates an ink annotation object that can be added to the annotation list of a PDF page. +func CreateInkAnnotation (inkDef InkAnnotationDef )(*_bb .PdfAnnotation ,error ){_cdgg :=_bb .NewPdfAnnotationInk ();_fffb :=_cd .MakeArray ();for _ ,_gfee :=range inkDef .Paths {if _gfee .Length ()==0{continue ;};_dceef :=[]float64 {};for _ ,_aaab :=range _gfee .Points {_dceef =append (_dceef ,_aaab .X ,_aaab .Y ); +};_fffb .Append (_cd .MakeArrayFromFloats (_dceef ));};_cdgg .InkList =_fffb ;if inkDef .Color ==nil {inkDef .Color =_bb .NewPdfColorDeviceRGB (0.0,0.0,0.0);};_cdgg .C =_cd .MakeArrayFromFloats ([]float64 {inkDef .Color .R (),inkDef .Color .G (),inkDef .Color .B ()}); +_eeed ,_ggfc ,_cdcda :=_cede (&inkDef );if _cdcda !=nil {return nil ,_cdcda ;};_cdgg .AP =_eeed ;_cdgg .Rect =_cd .MakeArrayFromFloats ([]float64 {_ggfc .Llx ,_ggfc .Lly ,_ggfc .Urx ,_ggfc .Ury });return _cdgg .PdfAnnotation ,nil ;};func _cbab (_geaa []float64 )[]float64 {var (_bdbea =len (_geaa ); +_gcbgb =make ([]float64 ,_bdbea );_cbbb =make ([]float64 ,_bdbea ););_deeaf :=2.0;_gcbgb [0]=_geaa [0]/_deeaf ;for _ddd :=1;_ddd < _bdbea ;_ddd ++{_cbbb [_ddd ]=1/_deeaf ;if _ddd < _bdbea -1{_deeaf =4.0;}else {_deeaf =3.5;};_deeaf -=_cbbb [_ddd ];_gcbgb [_ddd ]=(_geaa [_ddd ]-_gcbgb [_ddd -1])/_deeaf ; +};for _egf :=1;_egf < _bdbea ;_egf ++{_gcbgb [_bdbea -_egf -1]-=_cbbb [_bdbea -_egf ]*_gcbgb [_bdbea -_egf ];};return _gcbgb ;};func _dccg (_dgeb [][]_fb .CubicBezierCurve ,_eaeab *_bb .PdfColorDeviceRGB ,_baga float64 )([]byte ,*_bb .PdfRectangle ,error ){_deea :=_bg .NewContentCreator (); +_deea .Add_q ().SetStrokingColor (_eaeab ).Add_w (_baga );_deec :=_fb .NewCubicBezierPath ();for _ ,_afdc :=range _dgeb {_deec .Curves =append (_deec .Curves ,_afdc ...);for _beda ,_bggb :=range _afdc {if _beda ==0{_deea .Add_m (_bggb .P0 .X ,_bggb .P0 .Y ); +}else {_deea .Add_l (_bggb .P0 .X ,_bggb .P0 .Y );};_deea .Add_c (_bggb .P1 .X ,_bggb .P1 .Y ,_bggb .P2 .X ,_bggb .P2 .Y ,_bggb .P3 .X ,_bggb .P3 .Y );};};_deea .Add_S ().Add_Q ();return _deea .Bytes (),_deec .GetBoundingBox ().ToPdfRectangle (),nil ;}; -// GenerateAppearanceDict generates an appearance dictionary for widget annotation `wa` for the `field` in `form`. -// Implements interface model.FieldAppearanceGenerator. -func (_gdeg ImageFieldAppearance )GenerateAppearanceDict (form *_bc .PdfAcroForm ,field *_bc .PdfField ,wa *_bc .PdfAnnotationWidget )(*_gf .PdfObjectDictionary ,error ){_ ,_gdf :=field .GetContext ().(*_bc .PdfFieldButton );if !_gdf {_e .Log .Trace ("C\u006f\u0075\u006c\u0064\u0020\u006fn\u006c\u0079\u0020\u0068\u0061\u006ed\u006c\u0065\u0020\u0062\u0075\u0074\u0074o\u006e\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069n\u0067"); -return nil ,nil ;};_adag ,_fade :=_gf .GetDict (wa .AP );if _fade &&_gdeg .OnlyIfMissing {_e .Log .Trace ("\u0041\u006c\u0072\u0065a\u0064\u0079\u0020\u0070\u006f\u0070\u0075\u006c\u0061\u0074e\u0064 \u002d\u0020\u0069\u0067\u006e\u006f\u0072i\u006e\u0067"); -return _adag ,nil ;};if form .DR ==nil {form .DR =_bc .NewPdfPageResources ();};switch _gdbb :=field .GetContext ().(type ){case *_bc .PdfFieldButton :if _gdbb .IsPush (){_cgdf ,_aecf :=_fddb (_gdbb ,wa ,_gdeg .Style ());if _aecf !=nil {return nil ,_aecf ; -};return _cgdf ,nil ;};};return nil ,nil ;}; // SignatureLine represents a line of information in the signature field appearance. type SignatureLine struct{Desc string ;Text string ;}; -// SetStyle applies appearance `style` to `fa`. -func (_bccc *ImageFieldAppearance )SetStyle (style AppearanceStyle ){_bccc ._dagb =&style };type quadding int ; +// NewSignatureFieldOpts returns a new initialized instance of options +// used to generate a signature appearance. +func NewSignatureFieldOpts ()*SignatureFieldOpts {return &SignatureFieldOpts {Font :_bb .DefaultFont (),FontSize :10,LineHeight :1,AutoSize :true ,TextColor :_bb .NewPdfColorDeviceGray (0),BorderColor :_bb .NewPdfColorDeviceGray (0),FillColor :_bb .NewPdfColorDeviceGray (1),Encoder :_cd .NewFlateEncoder (),ImagePosition :SignatureImageLeft }; +};func _eed (_eafb _bga .Image ,_fgdf string ,_fdc *SignatureFieldOpts ,_eaa []float64 ,_dec *_bg .ContentCreator )(*_cd .PdfObjectName ,*_bb .XObjectImage ,error ){_dgde ,_cgab :=_bb .DefaultImageHandler {}.NewImageFromGoImage (_eafb );if _cgab !=nil {return nil ,nil ,_cgab ; +};_afe ,_cgab :=_bb .NewXObjectImageFromImage (_dgde ,nil ,_fdc .Encoder );if _cgab !=nil {return nil ,nil ,_cgab ;};_ccfd ,_ccb :=float64 (*_afe .Width ),float64 (*_afe .Height );_bec :=_eaa [2]-_eaa [0];_ebda :=_eaa [3]-_eaa [1];if _fdc .AutoSize {_gfa :=_dg .Min (_bec /_ccfd ,_ebda /_ccb ); +_ccfd *=_gfa ;_ccb *=_gfa ;_eaa [0]=_eaa [0]+(_bec /2)-(_ccfd /2);_eaa [1]=_eaa [1]+(_ebda /2)-(_ccb /2);};var _gcaa *_cd .PdfObjectName ;if _dbe ,_cbc :=_cd .GetName (_afe .Name );_cbc {_gcaa =_dbe ;}else {_gcaa =_cd .MakeName (_fgdf );};if _dec !=nil {_dec .Add_q ().Translate (_eaa [0],_eaa [1]).Scale (_ccfd ,_ccb ).Add_Do (*_gcaa ).Add_Q (); +}else {return nil ,nil ,_f .New ("\u0043\u006f\u006e\u0074en\u0074\u0043\u0072\u0065\u0061\u0074\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u0075l\u006c");};return _gcaa ,_afe ,nil ;};func _bgca (_fbf []_fb .Point )(_adfe []_fb .Point ,_babf []_fb .Point ,_faad error ){_bdbg :=len (_fbf )-1; +if len (_fbf )< 1{return nil ,nil ,_f .New ("\u0041\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0074\u0077\u006f\u0020\u0070\u006f\u0069\u006e\u0074s \u0072e\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0074\u006f\u0020\u0063\u0061l\u0063\u0075\u006c\u0061\u0074\u0065\u0020\u0063\u0075\u0072\u0076\u0065\u0020\u0063\u006f\u006e\u0074r\u006f\u006c\u0020\u0070\u006f\u0069\u006e\u0074\u0073"); +};if _bdbg ==1{_deae :=_fb .Point {X :(2*_fbf [0].X +_fbf [1].X )/3,Y :(2*_fbf [0].Y +_fbf [1].Y )/3};_adfe =append (_adfe ,_deae );_babf =append (_babf ,_fb .Point {X :2*_deae .X -_fbf [0].X ,Y :2*_deae .Y -_fbf [0].Y });return _adfe ,_babf ,nil ;};_agdc :=make ([]float64 ,_bdbg ); +for _aee :=1;_aee < _bdbg -1;_aee ++{_agdc [_aee ]=4*_fbf [_aee ].X +2*_fbf [_aee +1].X ;};_agdc [0]=_fbf [0].X +2*_fbf [1].X ;_agdc [_bdbg -1]=(8*_fbf [_bdbg -1].X +_fbf [_bdbg ].X )/2.0;_edga :=_cbab (_agdc );for _cccf :=1;_cccf < _bdbg -1;_cccf ++{_agdc [_cccf ]=4*_fbf [_cccf ].Y +2*_fbf [_cccf +1].Y ; +};_agdc [0]=_fbf [0].Y +2*_fbf [1].Y ;_agdc [_bdbg -1]=(8*_fbf [_bdbg -1].Y +_fbf [_bdbg ].Y )/2.0;_fafc :=_cbab (_agdc );_adfe =make ([]_fb .Point ,_bdbg );_babf =make ([]_fb .Point ,_bdbg );for _fcda :=0;_fcda < _bdbg ;_fcda ++{_adfe [_fcda ]=_fb .Point {X :_edga [_fcda ],Y :_fafc [_fcda ]}; +if _fcda < _bdbg -1{_babf [_fcda ]=_fb .Point {X :2*_fbf [_fcda +1].X -_edga [_fcda +1],Y :2*_fbf [_fcda +1].Y -_fafc [_fcda +1]};}else {_babf [_fcda ]=_fb .Point {X :(_fbf [_bdbg ].X +_edga [_bdbg -1])/2,Y :(_fbf [_bdbg ].Y +_fafc [_bdbg -1])/2};};};return _adfe ,_babf ,nil ; +}; -// WrapContentStream ensures that the entire content stream for a `page` is wrapped within q ... Q operands. -// Ensures that following operands that are added are not affected by additional operands that are added. -// Implements interface model.ContentStreamWrapper. -func (_ecae ImageFieldAppearance )WrapContentStream (page *_bc .PdfPage )error {_ebaf ,_beaf :=page .GetAllContentStreams ();if _beaf !=nil {return _beaf ;};_bdac :=_fc .NewContentStreamParser (_ebaf );_adaa ,_beaf :=_bdac .Parse ();if _beaf !=nil {return _beaf ; -};_adaa .WrapIfNeeded ();_gbca :=[]string {_adaa .String ()};return page .SetContentStreams (_gbca ,_aga ());};func _dcdge (_fegg []_fb .Point )(_bace []_fb .Point ,_fee []_fb .Point ,_gbad error ){_dbgb :=len (_fegg )-1;if len (_fegg )< 1{return nil ,nil ,_ff .New ("\u0041\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0074\u0077\u006f\u0020\u0070\u006f\u0069\u006e\u0074s \u0072e\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0074\u006f\u0020\u0063\u0061l\u0063\u0075\u006c\u0061\u0074\u0065\u0020\u0063\u0075\u0072\u0076\u0065\u0020\u0063\u006f\u006e\u0074r\u006f\u006c\u0020\u0070\u006f\u0069\u006e\u0074\u0073"); -};if _dbgb ==1{_abce :=_fb .Point {X :(2*_fegg [0].X +_fegg [1].X )/3,Y :(2*_fegg [0].Y +_fegg [1].Y )/3};_bace =append (_bace ,_abce );_fee =append (_fee ,_fb .Point {X :2*_abce .X -_fegg [0].X ,Y :2*_abce .Y -_fegg [0].Y });return _bace ,_fee ,nil ;}; -_faebc :=make ([]float64 ,_dbgb );for _eacc :=1;_eacc < _dbgb -1;_eacc ++{_faebc [_eacc ]=4*_fegg [_eacc ].X +2*_fegg [_eacc +1].X ;};_faebc [0]=_fegg [0].X +2*_fegg [1].X ;_faebc [_dbgb -1]=(8*_fegg [_dbgb -1].X +_fegg [_dbgb ].X )/2.0;_afcc :=_fbag (_faebc ); -for _bde :=1;_bde < _dbgb -1;_bde ++{_faebc [_bde ]=4*_fegg [_bde ].Y +2*_fegg [_bde +1].Y ;};_faebc [0]=_fegg [0].Y +2*_fegg [1].Y ;_faebc [_dbgb -1]=(8*_fegg [_dbgb -1].Y +_fegg [_dbgb ].Y )/2.0;_gadd :=_fbag (_faebc );_bace =make ([]_fb .Point ,_dbgb ); -_fee =make ([]_fb .Point ,_dbgb );for _edbd :=0;_edbd < _dbgb ;_edbd ++{_bace [_edbd ]=_fb .Point {X :_afcc [_edbd ],Y :_gadd [_edbd ]};if _edbd < _dbgb -1{_fee [_edbd ]=_fb .Point {X :2*_fegg [_edbd +1].X -_afcc [_edbd +1],Y :2*_fegg [_edbd +1].Y -_gadd [_edbd +1]}; -}else {_fee [_edbd ]=_fb .Point {X :(_fegg [_dbgb ].X +_afcc [_dbgb -1])/2,Y :(_fegg [_dbgb ].Y +_gadd [_dbgb -1])/2};};};return _bace ,_fee ,nil ;};const (SignatureImageLeft SignatureImagePosition =iota ;SignatureImageRight ;SignatureImageTop ;SignatureImageBottom ; -); +// LineAnnotationDef defines a line between point 1 (X1,Y1) and point 2 (X2,Y2). The line ending styles can be none +// (regular line), or arrows at either end. The line also has a specified width, color and opacity. +type LineAnnotationDef struct{X1 float64 ;Y1 float64 ;X2 float64 ;Y2 float64 ;LineColor *_bb .PdfColorDeviceRGB ;Opacity float64 ;LineWidth float64 ;LineEndingStyle1 _fb .LineEndingStyle ;LineEndingStyle2 _fb .LineEndingStyle ;};func (_fgcd *AppearanceStyle )applyRotation (_geec *_cd .PdfObjectDictionary ,_cbf ,_gac float64 ,_gcab *_bg .ContentCreator )(float64 ,float64 ){if !_fgcd .AllowMK {return _cbf ,_gac ; +};if _geec ==nil {return _cbf ,_gac ;};_dda ,_ :=_cd .GetNumberAsFloat (_geec .Get ("\u0052"));if _dda ==0{return _cbf ,_gac ;};_aae :=-_dda ;_fgce :=_fb .Path {Points :[]_fb .Point {_fb .NewPoint (0,0).Rotate (_aae ),_fb .NewPoint (_cbf ,0).Rotate (_aae ),_fb .NewPoint (0,_gac ).Rotate (_aae ),_fb .NewPoint (_cbf ,_gac ).Rotate (_aae )}}.GetBoundingBox (); +_gcab .RotateDeg (_dda );_gcab .Translate (_fgce .X ,_fgce .Y );return _fgce .Width ,_fgce .Height ;}; -// ImageFieldAppearance implements interface model.FieldAppearanceGenerator and generates appearance streams -// for attaching an image to a button field. -type ImageFieldAppearance struct{OnlyIfMissing bool ;_dagb *AppearanceStyle ;};func _eab (_dcgg _eg .Image ,_bec string ,_bdfg *SignatureFieldOpts ,_dgaff []float64 ,_bcbf *_fc .ContentCreator )(*_gf .PdfObjectName ,*_bc .XObjectImage ,error ){_eeba ,_agg :=_bc .DefaultImageHandler {}.NewImageFromGoImage (_dcgg ); -if _agg !=nil {return nil ,nil ,_agg ;};_bdb ,_agg :=_bc .NewXObjectImageFromImage (_eeba ,nil ,_bdfg .Encoder );if _agg !=nil {return nil ,nil ,_agg ;};_egg ,_gbbb :=float64 (*_bdb .Width ),float64 (*_bdb .Height );_fab :=_dgaff [2]-_dgaff [0];_deaa :=_dgaff [3]-_dgaff [1]; -if _bdfg .AutoSize {_baa :=_fd .Min (_fab /_egg ,_deaa /_gbbb );_egg *=_baa ;_gbbb *=_baa ;_dgaff [0]=_dgaff [0]+(_fab /2)-(_egg /2);_dgaff [1]=_dgaff [1]+(_deaa /2)-(_gbbb /2);};var _dcdg *_gf .PdfObjectName ;if _aeag ,_cgab :=_gf .GetName (_bdb .Name ); -_cgab {_dcdg =_aeag ;}else {_dcdg =_gf .MakeName (_bec );};if _bcbf !=nil {_bcbf .Add_q ().Translate (_dgaff [0],_dgaff [1]).Scale (_egg ,_gbbb ).Add_Do (*_dcdg ).Add_Q ();}else {return nil ,nil ,_ff .New ("\u0043\u006f\u006e\u0074en\u0074\u0043\u0072\u0065\u0061\u0074\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u0075l\u006c"); -};return _dcdg ,_bdb ,nil ;};func _dfa (_efg *InkAnnotationDef )([]byte ,*_bc .PdfRectangle ,error ){_fbb :=[][]_fb .CubicBezierCurve {};for _ ,_debd :=range _efg .Paths {if _debd .Length ()==0{continue ;};_cage :=_debd .Points ;_fgd ,_aaae ,_dgacf :=_dcdge (_cage ); -if _dgacf !=nil {return nil ,nil ,_dgacf ;};if len (_fgd )!=len (_aaae ){return nil ,nil ,_ff .New ("\u0049\u006e\u0065\u0071\u0075\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0063\u0061l\u0063\u0075\u006c\u0061\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0061\u006e\u0064\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0063\u006f\u006e\u0074\u0072o\u006c\u0020\u0070\u006f\u0069n\u0074"); -};_edea :=[]_fb .CubicBezierCurve {};for _gfda :=0;_gfda < len (_fgd );_gfda ++{_edea =append (_edea ,_fb .CubicBezierCurve {P0 :_cage [_gfda ],P1 :_fgd [_gfda ],P2 :_aaae [_gfda ],P3 :_cage [_gfda +1]});};if len (_edea )> 0{_fbb =append (_fbb ,_edea ); -};};_ffa ,_abd ,_dgbe :=_bdaaf (_fbb ,_efg .Color ,_efg .LineWidth );if _dgbe !=nil {return nil ,nil ,_dgbe ;};return _ffa ,_abd ,nil ;}; +// FormResetActionOptions holds options for creating a form reset button. +type FormResetActionOptions struct{ -// NewCheckboxField generates a new checkbox field with partial name `name` at location `rect` +// Rectangle holds the button position, size, and color. +Rectangle _fb .Rectangle ; + +// Label specifies the text that would be displayed on the button. +Label string ; + +// LabelColor specifies the button label color. +LabelColor _bb .PdfColor ; + +// Font specifies a font used for rendering the button label. +// When omitted it will fallback to use a Helvetica font. +Font *_bb .PdfFont ; + +// FontSize specifies the font size used in rendering the button label. +// The default font size is 12pt. +FontSize *float64 ; + +// Fields specifies list of fields that could be resetted. +// This list may contain indirect object to fields or field names. +Fields *_cd .PdfObjectArray ; + +// IsExclusionList specifies that the fields in the `Fields` array would be excluded form reset process. +IsExclusionList bool ;}; + +// NewImageField generates a new image field with partial name `name` at location `rect` // on specified `page` and with field specific options `opt`. -func NewCheckboxField (page *_bc .PdfPage ,name string ,rect []float64 ,opt CheckboxFieldOptions )(*_bc .PdfFieldButton ,error ){if page ==nil {return nil ,_ff .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); -};if len (name )<=0{return nil ,_ff .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");};if len (rect )!=4{return nil ,_ff .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); -};_dgac ,_eddf :=_bc .NewStandard14Font (_bc .ZapfDingbatsName );if _eddf !=nil {return nil ,_eddf ;};_bedc :=_bc .NewPdfField ();_gdc :=&_bc .PdfFieldButton {};_bedc .SetContext (_gdc );_gdc .PdfField =_bedc ;_gdc .T =_gf .MakeString (name );_gdc .SetType (_bc .ButtonTypeCheckbox ); -_ceec :="\u004f\u0066\u0066";if opt .Checked {_ceec ="\u0059\u0065\u0073";};_gdc .V =_gf .MakeName (_ceec );_agda :=_bc .NewPdfAnnotationWidget ();_agda .Rect =_gf .MakeArrayFromFloats (rect );_agda .P =page .ToPdfObject ();_agda .F =_gf .MakeInteger (4); -_agda .Parent =_gdc .ToPdfObject ();_fdgf :=rect [2]-rect [0];_aegb :=rect [3]-rect [1];var _decf _f .Buffer ;_decf .WriteString ("\u0071\u000a");_decf .WriteString ("\u0030 \u0030\u0020\u0031\u0020\u0072\u0067\n");_decf .WriteString ("\u0042\u0054\u000a"); -_decf .WriteString ("\u002f\u005a\u0061D\u0062\u0020\u0031\u0032\u0020\u0054\u0066\u000a");_decf .WriteString ("\u0045\u0054\u000a");_decf .WriteString ("\u0051\u000a");_dgec :=_fc .NewContentCreator ();_dgec .Add_q ();_dgec .Add_rg (0,0,1);_dgec .Add_BT (); -_dgec .Add_Tf (*_gf .MakeName ("\u005a\u0061\u0044\u0062"),12);_dgec .Add_Td (0,0);_dgec .Add_ET ();_dgec .Add_Q ();_fcff :=_bc .NewXObjectForm ();_fcff .SetContentStream (_dgec .Bytes (),_gf .NewRawEncoder ());_fcff .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_fdgf ,_aegb }); -_fcff .Resources =_bc .NewPdfPageResources ();_fcff .Resources .SetFontByName ("\u005a\u0061\u0044\u0062",_dgac .ToPdfObject ());_dgec =_fc .NewContentCreator ();_dgec .Add_q ();_dgec .Add_re (0,0,_fdgf ,_aegb );_dgec .Add_W ().Add_n ();_dgec .Add_rg (0,0,1); -_dgec .Translate (0,3.0);_dgec .Add_BT ();_dgec .Add_Tf (*_gf .MakeName ("\u005a\u0061\u0044\u0062"),12);_dgec .Add_Td (0,0);_dgec .Add_Tj (*_gf .MakeString ("\u0034"));_dgec .Add_ET ();_dgec .Add_Q ();_ggc :=_bc .NewXObjectForm ();_ggc .SetContentStream (_dgec .Bytes (),_gf .NewRawEncoder ()); -_ggc .BBox =_gf .MakeArrayFromFloats ([]float64 {0,0,_fdgf ,_aegb });_ggc .Resources =_bc .NewPdfPageResources ();_ggc .Resources .SetFontByName ("\u005a\u0061\u0044\u0062",_dgac .ToPdfObject ());_dde :=_gf .MakeDict ();_dde .Set ("\u004f\u0066\u0066",_fcff .ToPdfObject ()); -_dde .Set ("\u0059\u0065\u0073",_ggc .ToPdfObject ());_dfe :=_gf .MakeDict ();_dfe .Set ("\u004e",_dde );_agda .AP =_dfe ;_agda .AS =_gf .MakeName (_ceec );_gdc .Annotations =append (_gdc .Annotations ,_agda );return _gdc ,nil ;};func _gbgbb (_bceb LineAnnotationDef )(*_gf .PdfObjectDictionary ,*_bc .PdfRectangle ,error ){_ced :=_bc .NewXObjectForm (); -_ced .Resources =_bc .NewPdfPageResources ();_cba :="";if _bceb .Opacity < 1.0{_badg :=_gf .MakeDict ();_badg .Set ("\u0063\u0061",_gf .MakeFloat (_bceb .Opacity ));_fecb :=_ced .Resources .AddExtGState ("\u0067\u0073\u0031",_badg );if _fecb !=nil {_e .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0064\u0064\u0020\u0065\u0078\u0074g\u0073\u0074\u0061t\u0065 \u0067\u0073\u0031"); -return nil ,nil ,_fecb ;};_cba ="\u0067\u0073\u0031";};_dgaa ,_fcg ,_bee ,_bdbg :=_daae (_bceb ,_cba );if _bdbg !=nil {return nil ,nil ,_bdbg ;};_bdbg =_ced .SetContentStream (_dgaa ,nil );if _bdbg !=nil {return nil ,nil ,_bdbg ;};_ced .BBox =_fcg .ToPdfObject (); -_dbae :=_gf .MakeDict ();_dbae .Set ("\u004e",_ced .ToPdfObject ());return _dbae ,_bee ,nil ;}; \ No newline at end of file +func NewImageField (page *_bb .PdfPage ,name string ,rect []float64 ,opt ImageFieldOptions )(*_bb .PdfFieldButton ,error ){if page ==nil {return nil ,_f .New ("\u0070a\u0067e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064");}; +if len (name )<=0{return nil ,_f .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");};if len (rect )!=4{return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); +};_efgb :=_bb .NewPdfField ();_fbc :=&_bb .PdfFieldButton {};_fbc .PdfField =_efgb ;_efgb .SetContext (_fbc );_fbc .SetType (_bb .ButtonTypePush );_fbc .T =_cd .MakeString (name );_aeb :=_bb .NewPdfAnnotationWidget ();_aeb .Rect =_cd .MakeArrayFromFloats (rect ); +_aeb .P =page .ToPdfObject ();_aeb .F =_cd .MakeInteger (4);_aeb .Parent =_fbc .ToPdfObject ();_fdf :=rect [2]-rect [0];_gfg :=rect [3]-rect [1];_efce :=opt ._degc ;_gggf :=_bg .NewContentCreator ();if _efce .BorderSize > 0{_ddc (_gggf ,_efce ,_fdf ,_gfg ); +};if _efce .DrawAlignmentReticle {_eefa :=_efce ;_eefa .BorderSize =0.2;_deggd (_gggf ,_eefa ,_fdf ,_gfg );};_efe ,_bbbf :=_gacdc (_fdf ,_gfg ,opt .Image ,_efce );if _bbbf !=nil {return nil ,_bbbf ;};_gfgd ,_bbff :=_cd .GetDict (_aeb .MK );if _bbff {_gfgd .Set ("\u006c",_efe .ToPdfObject ()); +};_fggg :=_cd .MakeDict ();_fggg .Set ("\u0046\u0052\u004d",_efe .ToPdfObject ());_ecfg :=_bb .NewPdfPageResources ();_ecfg .ProcSet =_cd .MakeArray (_cd .MakeName ("\u0050\u0044\u0046"));_ecfg .XObject =_fggg ;_edgd :=_fdf -2;_cfge :=_gfg -2;_gggf .Add_q (); +_gggf .Add_re (1,1,_edgd ,_cfge );_gggf .Add_W ();_gggf .Add_n ();_edgd -=2;_cfge -=2;_gggf .Add_q ();_gggf .Add_re (2,2,_edgd ,_cfge );_gggf .Add_W ();_gggf .Add_n ();_gabg :=_dg .Min (_edgd /float64 (opt .Image .Width ),_cfge /float64 (opt .Image .Height )); +_gggf .Add_cm (_gabg ,0,0,_gabg ,(_fdf /2)-(float64 (opt .Image .Width )*_gabg /2)+2,2);_gggf .Add_Do ("\u0046\u0052\u004d");_gggf .Add_Q ();_gggf .Add_Q ();_efd :=_bb .NewXObjectForm ();_efd .FormType =_cd .MakeInteger (1);_efd .Resources =_ecfg ;_efd .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_fdf ,_gfg }); +_efd .Matrix =_cd .MakeArrayFromFloats ([]float64 {1.0,0.0,0.0,1.0,0.0,0.0});_efd .SetContentStream (_gggf .Bytes (),_bed ());_daea :=_cd .MakeDict ();_daea .Set ("\u004e",_efd .ToPdfObject ());_aeb .AP =_daea ;_fbc .Annotations =append (_fbc .Annotations ,_aeb ); +return _fbc ,nil ;}; + +// CreateRectangleAnnotation creates a rectangle annotation object that can be added to page PDF annotations. +func CreateRectangleAnnotation (rectDef RectangleAnnotationDef )(*_bb .PdfAnnotation ,error ){_feeb :=_bb .NewPdfAnnotationSquare ();if rectDef .BorderEnabled {_agb ,_bdgc ,_cdf :=rectDef .BorderColor .R (),rectDef .BorderColor .G (),rectDef .BorderColor .B (); +_feeb .C =_cd .MakeArrayFromFloats ([]float64 {_agb ,_bdgc ,_cdf });_fafcc :=_bb .NewBorderStyle ();_fafcc .SetBorderWidth (rectDef .BorderWidth );_feeb .BS =_fafcc .ToPdfObject ();};if rectDef .FillEnabled {_bgee ,_acgbf ,_fbeg :=rectDef .FillColor .R (),rectDef .FillColor .G (),rectDef .FillColor .B (); +_feeb .IC =_cd .MakeArrayFromFloats ([]float64 {_bgee ,_acgbf ,_fbeg });}else {_feeb .IC =_cd .MakeArrayFromIntegers ([]int {});};if rectDef .Opacity < 1.0{_feeb .CA =_cd .MakeFloat (rectDef .Opacity );};_fcdcg ,_cfeb ,_fdbd :=_gde (rectDef );if _fdbd !=nil {return nil ,_fdbd ; +};_feeb .AP =_fcdcg ;_feeb .Rect =_cd .MakeArrayFromFloats ([]float64 {_cfeb .Llx ,_cfeb .Lly ,_cfeb .Urx ,_cfeb .Ury });return _feeb .PdfAnnotation ,nil ;};func _fecd (_ceca _cd .PdfObject ,_aecd *_bb .PdfPageResources )(*_cd .PdfObjectName ,float64 ,bool ){var (_ebge *_cd .PdfObjectName ; +_gea float64 ;_gedg bool ;);if _gdgb ,_fcg :=_cd .GetDict (_ceca );_fcg &&_gdgb !=nil {_dbee :=_cd .TraceToDirectObject (_gdgb .Get ("\u004e"));switch _dbac :=_dbee .(type ){case *_cd .PdfObjectStream :_aaf ,_gebf :=_cd .DecodeStream (_dbac );if _gebf !=nil {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0063\u006f\u006e\u0074e\u006e\u0074\u0020\u0073\u0074r\u0065\u0061m\u003a\u0020\u0025\u0076",_gebf .Error ()); +return nil ,0,false ;};_eaad ,_gebf :=_bg .NewContentStreamParser (string (_aaf )).Parse ();if _gebf !=nil {_d .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0075n\u0061\u0062l\u0065\u0020\u0070\u0061\u0072\u0073\u0065\u0020c\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061m\u003a\u0020\u0025\u0076",_gebf .Error ()); +return nil ,0,false ;};_acca :=_bg .NewContentStreamProcessor (*_eaad );_acca .AddHandler (_bg .HandlerConditionEnumOperand ,"\u0054\u0066",func (_bffe *_bg .ContentStreamOperation ,_gffd _bg .GraphicsState ,_aggg *_bb .PdfPageResources )error {if len (_bffe .Params )==2{if _cccb ,_aag :=_cd .GetName (_bffe .Params [0]); +_aag {_ebge =_cccb ;};if _gga ,_gede :=_cd .GetNumberAsFloat (_bffe .Params [1]);_gede ==nil {_gea =_gga ;};_gedg =true ;return _bg .ErrEarlyExit ;};return nil ;});_acca .Process (_aecd );return _ebge ,_gea ,_gedg ;};};return nil ,0,false ;}; + +// SignatureFieldOpts represents a set of options used to configure +// an appearance widget dictionary. +type SignatureFieldOpts struct{ + +// Rect represents the area the signature annotation is displayed on. +Rect []float64 ; + +// AutoSize specifies if the content of the appearance should be +// scaled to fit in the annotation rectangle. +AutoSize bool ; + +// Font specifies the font of the text content. +Font *_bb .PdfFont ; + +// FontSize specifies the size of the text content. +FontSize float64 ; + +// LineHeight specifies the height of a line of text in the appearance annotation. +LineHeight float64 ; + +// TextColor represents the color of the text content displayed. +TextColor _bb .PdfColor ; + +// FillColor represents the background color of the appearance annotation area. +FillColor _bb .PdfColor ; + +// BorderSize represents border size of the appearance annotation area. +BorderSize float64 ; + +// BorderColor represents the border color of the appearance annotation area. +BorderColor _bb .PdfColor ; + +// WatermarkImage specifies the image used as a watermark that will be rendered +// behind the signature. +WatermarkImage _bga .Image ; + +// Image represents the image used for the signature appearance. +Image _bga .Image ; + +// Encoder specifies the image encoder used for image signature. Defaults to flate encoder. +Encoder _cd .StreamEncoder ; + +// ImagePosition specifies the image location relative to the text signature. +ImagePosition SignatureImagePosition ;}; + +// NewSignatureField returns a new signature field with a visible appearance +// containing the specified signature lines and styled according to the +// specified options. +func NewSignatureField (signature *_bb .PdfSignature ,lines []*SignatureLine ,opts *SignatureFieldOpts )(*_bb .PdfFieldSignature ,error ){if signature ==nil {return nil ,_f .New ("\u0073\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c"); +};_eaec ,_aaef :=_abgf (lines ,opts );if _aaef !=nil {return nil ,_aaef ;};_baf :=_bb .NewPdfFieldSignature (signature );_baf .Rect =_cd .MakeArrayFromFloats (opts .Rect );_baf .AP =_eaec ;return _baf ,nil ;};type quadding int ; + +// CreateLineAnnotation creates a line annotation object that can be added to page PDF annotations. +func CreateLineAnnotation (lineDef LineAnnotationDef )(*_bb .PdfAnnotation ,error ){_ecce :=_bb .NewPdfAnnotationLine ();_ecce .L =_cd .MakeArrayFromFloats ([]float64 {lineDef .X1 ,lineDef .Y1 ,lineDef .X2 ,lineDef .Y2 });_bfdc :=_cd .MakeName ("\u004e\u006f\u006e\u0065"); +if lineDef .LineEndingStyle1 ==_fb .LineEndingStyleArrow {_bfdc =_cd .MakeName ("C\u006c\u006f\u0073\u0065\u0064\u0041\u0072\u0072\u006f\u0077");};_cega :=_cd .MakeName ("\u004e\u006f\u006e\u0065");if lineDef .LineEndingStyle2 ==_fb .LineEndingStyleArrow {_cega =_cd .MakeName ("C\u006c\u006f\u0073\u0065\u0064\u0041\u0072\u0072\u006f\u0077"); +};_ecce .LE =_cd .MakeArray (_bfdc ,_cega );if lineDef .Opacity < 1.0{_ecce .CA =_cd .MakeFloat (lineDef .Opacity );};_fffg ,_cfgb ,_aegg :=lineDef .LineColor .R (),lineDef .LineColor .G (),lineDef .LineColor .B ();_ecce .IC =_cd .MakeArrayFromFloats ([]float64 {_fffg ,_cfgb ,_aegg }); +_ecce .C =_cd .MakeArrayFromFloats ([]float64 {_fffg ,_cfgb ,_aegg });_eagf :=_bb .NewBorderStyle ();_eagf .SetBorderWidth (lineDef .LineWidth );_ecce .BS =_eagf .ToPdfObject ();_dffa ,_gbdbg ,_ecbf :=_eaed (lineDef );if _ecbf !=nil {return nil ,_ecbf ; +};_ecce .AP =_dffa ;_ecce .Rect =_cd .MakeArrayFromFloats ([]float64 {_gbdbg .Llx ,_gbdbg .Lly ,_gbdbg .Urx ,_gbdbg .Ury });return _ecce .PdfAnnotation ,nil ;};const (_fag =1;_gad =2;_gbfc =4;_fccb =8;_gdag =16;_cbcf =32;_ebca =64;_fbda =128;_gdbd =256; +_agdaf =512;_dadd =1024;_aaff =2048;_ffdf =4096;);func _fec (_aaa *_bb .PdfAnnotationWidget ,_bdg *_bb .PdfFieldText ,_bdf *_bb .PdfPageResources ,_ebd AppearanceStyle )(*_cd .PdfObjectDictionary ,error ){_bde :=_bb .NewPdfPageResources ();_gbe ,_fba :=_cd .GetArray (_aaa .Rect ); +if !_fba {return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074");};_gce ,_bba :=_bb .NewPdfRectangle (*_gbe );if _bba !=nil {return nil ,_bba ;};_dca ,_bbdb :=_gce .Width (),_gce .Height ();_dba ,_gca :=_dca ,_bbdb ; +_gbb ,_egga :=_cd .GetDict (_aaa .MK );if _egga {_eab ,_ :=_cd .GetDict (_aaa .BS );_cag :=_ebd .applyAppearanceCharacteristics (_gbb ,_eab ,nil );if _cag !=nil {return nil ,_cag ;};};_cff ,_egga :=_cd .GetIntVal (_bdg .MaxLen );if !_egga {return nil ,_f .New ("\u006d\u0061\u0078\u006c\u0065\u006e\u0020\u006e\u006ft\u0020\u0073\u0065\u0074"); +};if _cff <=0{return nil ,_f .New ("\u006d\u0061\u0078\u004c\u0065\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_ecf :=_dca /float64 (_cff );_ggfd ,_bba :=_bg .NewContentStreamParser (_dbf (_bdg .PdfField )).Parse ();if _bba !=nil {return nil ,_bba ; +};_ecb :=_bg .NewContentCreator ();if _ebd .BorderSize > 0{_ddc (_ecb ,_ebd ,_dca ,_bbdb );};if _ebd .DrawAlignmentReticle {_ed :=_ebd ;_ed .BorderSize =0.2;_deggd (_ecb ,_ed ,_dca ,_bbdb );};_ecb .Add_BMC ("\u0054\u0078");_ecb .Add_q ();_ ,_bbdb =_ebd .applyRotation (_gbb ,_dca ,_bbdb ,_ecb ); +_ecb .Add_BT ();_cea ,_gbdb ,_bba :=_ebd .processDA (_bdg .PdfField ,_ggfd ,_bdf ,_bde ,_ecb );if _bba !=nil {return nil ,_bba ;};_faf :=_cea .Font ;_caf :=_cd .MakeName (_cea .Name );_degfg :=_cea .Size ;_befc :=_degfg ==0;if _befc &&_gbdb {_degfg =_bbdb *_ebd .AutoFontSizeFraction ; +};_cga :=_faf .Encoder ();if _cga ==nil {_d .Log .Debug ("\u0057\u0041RN\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0069\u0073\u0020\u006e\u0069l\u002e\u0020\u0041\u0073s\u0075\u006d\u0069\u006eg \u0069\u0064e\u006et\u0069\u0074\u0079\u0020\u0065\u006ec\u006f\u0064\u0065r\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +_cga =_a .NewIdentityTextEncoder ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048");};var _gaf string ;if _bbcf ,_cef :=_cd .GetString (_bdg .V );_cef {_gaf =_bbcf .Decoded ();};_ecb .Add_Tf (*_caf ,_degfg );var _ab float64 ;for _ ,_eff :=range _gaf {_bda ,_dbc :=_faf .GetRuneMetrics (_eff ); +if !_dbc {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0052\u0075\u006e\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0066\u006fn\u0074\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067 \u006f\u0076\u0065\u0072",_eff ); +continue ;};_adcd :=_bda .Wy ;if int (_adcd )<=0{_adcd =_bda .Wx ;};if _adcd > _ab {_ab =_adcd ;};};if int (_ab )==0{_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074o\u0020\u0064\u0065\u0074\u0065\u0072\u006d\u0069\u006e\u0065\u0020\u006d\u0061x\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u0073\u0069\u007a\u0065\u0020- \u0075\u0073\u0069\u006e\u0067\u0020\u0031\u0030\u0030\u0030"); +_ab =1000;};_afb ,_bba :=_faf .GetFontDescriptor ();if _bba !=nil {_d .Log .Debug ("\u0045\u0072ro\u0072\u003a\u0020U\u006e\u0061\u0062\u006ce t\u006f g\u0065\u0074\u0020\u0066\u006f\u006e\u0074 d\u0065\u0073\u0063\u0072\u0069\u0070\u0074o\u0072");};var _gab float64 ; +if _afb !=nil {_gab ,_bba =_afb .GetCapHeight ();if _bba !=nil {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0043\u0061\u0070\u0048\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_bba ); +};};if int (_gab )<=0{_d .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u0061\u0070\u0048e\u0069\u0067\u0068\u0074\u0020\u006e\u006ft \u0061\u0076\u0061\u0069l\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065tt\u0069\u006eg\u0020\u0074\u006f\u0020\u0031\u0030\u0030\u0030"); +_gab =1000.0;};_fecb :=_gab /1000.0*_degfg ;_ggcd :=0.0;_geg :=1.0*_degfg *(_ab /1000.0);{_fge :=_geg ;if _befc &&_ggcd +_fge > _bbdb {_degfg =0.95*(_bbdb -_ggcd );_fecb =_gab /1000.0*_degfg ;};if _bbdb > _fecb {_ggcd =(_bbdb -_fecb )/2.0;};};_ecb .Add_Td (0,_ggcd ); +if _dbd ,_bfdf :=_cd .GetIntVal (_bdg .Q );_bfdf {switch _dbd {case 2:if len (_gaf )< _cff {_caa :=float64 (_cff -len (_gaf ))*_ecf ;_ecb .Add_Td (_caa ,0);};};};for _bggg ,_cafd :=range _gaf {_dfc :=_dgg ;if _ebd .MarginLeft !=nil {_dfc =*_ebd .MarginLeft ; +};_egbg :=string (_cafd );if _cga !=nil {_dee ,_gdcc :=_faf .GetRuneMetrics (_cafd );if !_gdcc {_d .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0052\u0075\u006e\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0066\u006fn\u0074\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067 \u006f\u0076\u0065\u0072",_cafd ); +continue ;};_egbg =string (_cga .Encode (_egbg ));_afd :=_degfg *_dee .Wx /1000.0;_cgaa :=(_ecf -_afd )/2;_dfc =_cgaa ;};_ecb .Add_Td (_dfc ,0);_ecb .Add_Tj (*_cd .MakeString (_egbg ));if _bggg !=len (_gaf )-1{_ecb .Add_Td (_ecf -_dfc ,0);};};_ecb .Add_ET (); +_ecb .Add_Q ();_ecb .Add_EMC ();_cba :=_bb .NewXObjectForm ();_cba .Resources =_bde ;_cba .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_dba ,_gca });_cba .SetContentStream (_ecb .Bytes (),_bed ());_ffd :=_cd .MakeDict ();_ffd .Set ("\u004e",_cba .ToPdfObject ()); +return _ffd ,nil ;}; + +// ImageFieldOptions defines optional parameters for a push button with image attach capability form field. +type ImageFieldOptions struct{Image *_bb .Image ;_degc AppearanceStyle ;}; + +// CheckboxFieldOptions defines optional parameters for a checkbox field a form. +type CheckboxFieldOptions struct{Checked bool ;};func _fgge (_gacd *_bb .PdfFieldButton ,_aggbb *_bb .PdfAnnotationWidget ,_bfe AppearanceStyle )(*_cd .PdfObjectDictionary ,error ){_gecb ,_dgagf :=_cd .GetArray (_aggbb .Rect );if !_dgagf {return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0052\u0065\u0063\u0074"); +};_fae ,_bac :=_bb .NewPdfRectangle (*_gecb );if _bac !=nil {return nil ,_bac ;};_baae ,_deef :=_fae .Width (),_fae .Height ();_eacc :=_bg .NewContentCreator ();if _bfe .BorderSize > 0{_ddc (_eacc ,_bfe ,_baae ,_deef );};if _bfe .DrawAlignmentReticle {_aeae :=_bfe ; +_aeae .BorderSize =0.2;_deggd (_eacc ,_aeae ,_baae ,_deef );};_acbc :=_gacd .GetFillImage ();_daee ,_bac :=_gacdc (_baae ,_deef ,_acbc ,_bfe );if _bac !=nil {return nil ,_bac ;};_bedf ,_efed :=_cd .GetDict (_aggbb .MK );if _efed {_bedf .Set ("\u006c",_daee .ToPdfObject ()); +};_aef :=_cd .MakeDict ();_aef .Set ("\u0046\u0052\u004d",_daee .ToPdfObject ());_daead :=_bb .NewPdfPageResources ();_daead .ProcSet =_cd .MakeArray (_cd .MakeName ("\u0050\u0044\u0046"));_daead .XObject =_aef ;_fcgg :=_baae -2;_gfff :=_deef -2;_eacc .Add_q (); +_eacc .Add_re (1,1,_fcgg ,_gfff );_eacc .Add_W ();_eacc .Add_n ();_fcgg -=2;_gfff -=2;_eacc .Add_q ();_eacc .Add_re (2,2,_fcgg ,_gfff );_eacc .Add_W ();_eacc .Add_n ();_ffed :=_dg .Min (_fcgg /float64 (_acbc .Width ),_gfff /float64 (_acbc .Height ));_eacc .Add_cm (_ffed ,0,0,_ffed ,(_baae /2)-(float64 (_acbc .Width )*_ffed /2)+2,2); +_eacc .Add_Do ("\u0046\u0052\u004d");_eacc .Add_Q ();_eacc .Add_Q ();_dcc :=_bb .NewXObjectForm ();_dcc .FormType =_cd .MakeInteger (1);_dcc .Resources =_daead ;_dcc .BBox =_cd .MakeArrayFromFloats ([]float64 {0,0,_baae ,_deef });_dcc .Matrix =_cd .MakeArrayFromFloats ([]float64 {1.0,0.0,0.0,1.0,0.0,0.0}); +_dcc .SetContentStream (_eacc .Bytes (),_bed ());_eca :=_cd .MakeDict ();_eca .Set ("\u004e",_dcc .ToPdfObject ());return _eca ,nil ;}; + +// CreateCircleAnnotation creates a circle/ellipse annotation object with appearance stream that can be added to +// page PDF annotations. +func CreateCircleAnnotation (circDef CircleAnnotationDef )(*_bb .PdfAnnotation ,error ){_ae :=_bb .NewPdfAnnotationCircle ();if circDef .BorderEnabled {_ff ,_fe ,_ba :=circDef .BorderColor .R (),circDef .BorderColor .G (),circDef .BorderColor .B ();_ae .C =_cd .MakeArrayFromFloats ([]float64 {_ff ,_fe ,_ba }); +_bgc :=_bb .NewBorderStyle ();_bgc .SetBorderWidth (circDef .BorderWidth );_ae .BS =_bgc .ToPdfObject ();};if circDef .FillEnabled {_ffg ,_ag ,_gc :=circDef .FillColor .R (),circDef .FillColor .G (),circDef .FillColor .B ();_ae .IC =_cd .MakeArrayFromFloats ([]float64 {_ffg ,_ag ,_gc }); +}else {_ae .IC =_cd .MakeArrayFromIntegers ([]int {});};if circDef .Opacity < 1.0{_ae .CA =_cd .MakeFloat (circDef .Opacity );};_fff ,_gcd ,_fd :=_e (circDef );if _fd !=nil {return nil ,_fd ;};_ae .AP =_fff ;_ae .Rect =_cd .MakeArrayFromFloats ([]float64 {_gcd .Llx ,_gcd .Lly ,_gcd .Urx ,_gcd .Ury }); +return _ae .PdfAnnotation ,nil ;};func _deggd (_gbf *_bg .ContentCreator ,_dcda AppearanceStyle ,_bfdb ,_gecd float64 ){_gbf .Add_q ().Add_re (0,0,_bfdb ,_gecd ).Add_re (0,_gecd /2,_bfdb ,_gecd /2).Add_re (0,0,_bfdb ,_gecd ).Add_re (_bfdb /2,0,_bfdb /2,_gecd ).Add_w (_dcda .BorderSize ).SetStrokingColor (_dcda .BorderColor ).SetNonStrokingColor (_dcda .FillColor ).Add_B ().Add_Q (); +}; \ No newline at end of file diff --git a/common/common.go b/common/common.go index 41e4f16ba..be07b1b26 100644 --- a/common/common.go +++ b/common/common.go @@ -10,101 +10,99 @@ // terms that can be accessed at https://unidoc.io/eula/ // Package common contains common properties used by the subpackages. -package common ;import (_e "fmt";_b "io";_ee "os";_g "path/filepath";_c "runtime";_d "time";);const Version ="\u0033\u002e\u0035\u0033\u002e\u0030";var Log Logger =DummyLogger {}; +package common ;import (_c "fmt";_cb "io";_eg "os";_ca "path/filepath";_ec "runtime";_e "time";); -// Trace logs trace message. -func (_dddf WriterLogger )Trace (format string ,args ...interface{}){if _dddf .LogLevel >=LogLevelTrace {_ce :="\u005b\u0054\u0052\u0041\u0043\u0045\u005d\u0020";_dddf .logToWriter (_dddf .Output ,_ce ,format ,args ...);};}; +// WriterLogger is the logger that writes data to the Output writer +type WriterLogger struct{LogLevel LogLevel ;Output _cb .Writer ;};var ReleasedAt =_e .Date (_ee ,_ce ,_bge ,_gb ,_bd ,0,0,_e .UTC ); -// Warning logs warning message. -func (_dae WriterLogger )Warning (format string ,args ...interface{}){if _dae .LogLevel >=LogLevelWarning {_agd :="\u005b\u0057\u0041\u0052\u004e\u0049\u004e\u0047\u005d\u0020";_dae .logToWriter (_dae .Output ,_agd ,format ,args ...);};}; +// Error does nothing for dummy logger. +func (DummyLogger )Error (format string ,args ...interface{}){}; -// Debug does nothing for dummy logger. -func (DummyLogger )Debug (format string ,args ...interface{}){};const _feb =15; +// Notice logs notice message. +func (_caf WriterLogger )Notice (format string ,args ...interface{}){if _caf .LogLevel >=LogLevelNotice {_bf :="\u005bN\u004f\u0054\u0049\u0043\u0045\u005d ";_caf .logToWriter (_caf .Output ,_bf ,format ,args ...);};}; -// Info does nothing for dummy logger. -func (DummyLogger )Info (format string ,args ...interface{}){}; +// Debug logs debug message. +func (_abd ConsoleLogger )Debug (format string ,args ...interface{}){if _abd .LogLevel >=LogLevelDebug {_gd :="\u005b\u0044\u0045\u0042\u0055\u0047\u005d\u0020";_abd .output (_eg .Stdout ,_gd ,format ,args ...);};}; -// Logger is the interface used for logging in the unipdf package. -type Logger interface{Error (_be string ,_ad ...interface{});Warning (_ca string ,_dd ...interface{});Notice (_ag string ,_ge ...interface{});Info (_cc string ,_bb ...interface{});Debug (_ab string ,_db ...interface{});Trace (_ec string ,_dde ...interface{}); -IsLogLevel (_abf LogLevel )bool ;}; +// IsLogLevel returns true if log level is greater or equal than `level`. +// Can be used to avoid resource intensive calls to loggers. +func (_gc WriterLogger )IsLogLevel (level LogLevel )bool {return _gc .LogLevel >=level }; -// Error logs error message. -func (_cg ConsoleLogger )Error (format string ,args ...interface{}){if _cg .LogLevel >=LogLevelError {_aa :="\u005b\u0045\u0052\u0052\u004f\u0052\u005d\u0020";_cg .output (_ee .Stdout ,_aa ,format ,args ...);};}; +// DummyLogger does nothing. +type DummyLogger struct{}; -// Warning does nothing for dummy logger. -func (DummyLogger )Warning (format string ,args ...interface{}){}; +// LogLevel is the verbosity level for logging. +type LogLevel int ;const _ee =2024; -// Notice logs notice message. -func (_bgc ConsoleLogger )Notice (format string ,args ...interface{}){if _bgc .LogLevel >=LogLevelNotice {_eg :="\u005bN\u004f\u0054\u0049\u0043\u0045\u005d ";_bgc .output (_ee .Stdout ,_eg ,format ,args ...);};}; +// Debug does nothing for dummy logger. +func (DummyLogger )Debug (format string ,args ...interface{}){}; // IsLogLevel returns true from dummy logger. func (DummyLogger )IsLogLevel (level LogLevel )bool {return true }; // Info logs info message. -func (_geb ConsoleLogger )Info (format string ,args ...interface{}){if _geb .LogLevel >=LogLevelInfo {_bed :="\u005bI\u004e\u0046\u004f\u005d\u0020";_geb .output (_ee .Stdout ,_bed ,format ,args ...);};}; +func (_ffa WriterLogger )Info (format string ,args ...interface{}){if _ffa .LogLevel >=LogLevelInfo {_fc :="\u005bI\u004e\u0046\u004f\u005d\u0020";_ffa .logToWriter (_ffa .Output ,_fc ,format ,args ...);};}; -// Debug logs debug message. -func (_gd ConsoleLogger )Debug (format string ,args ...interface{}){if _gd .LogLevel >=LogLevelDebug {_de :="\u005b\u0044\u0045\u0042\u0055\u0047\u005d\u0020";_gd .output (_ee .Stdout ,_de ,format ,args ...);};};const (LogLevelTrace LogLevel =5;LogLevelDebug LogLevel =4; -LogLevelInfo LogLevel =3;LogLevelNotice LogLevel =2;LogLevelWarning LogLevel =1;LogLevelError LogLevel =0;); +// NewConsoleLogger creates new console logger. +func NewConsoleLogger (logLevel LogLevel )*ConsoleLogger {return &ConsoleLogger {LogLevel :logLevel }}; -// ConsoleLogger is a logger that writes logs to the 'os.Stdout' -type ConsoleLogger struct{LogLevel LogLevel ;};func (_bf WriterLogger )logToWriter (_af _b .Writer ,_fd string ,_afc string ,_eb ...interface{}){_adf (_af ,_fd ,_afc ,_eb );}; +// Trace logs trace message. +func (_ebf ConsoleLogger )Trace (format string ,args ...interface{}){if _ebf .LogLevel >=LogLevelTrace {_bc :="\u005b\u0054\u0052\u0041\u0043\u0045\u005d\u0020";_ebf .output (_eg .Stdout ,_bc ,format ,args ...);};}; -// Debug logs debug message. -func (_edc WriterLogger )Debug (format string ,args ...interface{}){if _edc .LogLevel >=LogLevelDebug {_efb :="\u005b\u0044\u0045\u0042\u0055\u0047\u005d\u0020";_edc .logToWriter (_edc .Output ,_efb ,format ,args ...);};}; +// Trace does nothing for dummy logger. +func (DummyLogger )Trace (format string ,args ...interface{}){};func (_afc WriterLogger )logToWriter (_faa _cb .Writer ,_afbb string ,_fae string ,_aeb ...interface{}){_de (_faa ,_afbb ,_fae ,_aeb );}; -// Error logs error message. -func (_dda WriterLogger )Error (format string ,args ...interface{}){if _dda .LogLevel >=LogLevelError {_ef :="\u005b\u0045\u0052\u0052\u004f\u0052\u005d\u0020";_dda .logToWriter (_dda .Output ,_ef ,format ,args ...);};};const _ccgg =12; +// Warning logs warning message. +func (_baeb WriterLogger )Warning (format string ,args ...interface{}){if _baeb .LogLevel >=LogLevelWarning {_afb :="\u005b\u0057\u0041\u0052\u004e\u0049\u004e\u0047\u005d\u0020";_baeb .logToWriter (_baeb .Output ,_afb ,format ,args ...);};}; -// IsLogLevel returns true if log level is greater or equal than `level`. -// Can be used to avoid resource intensive calls to loggers. -func (_agf WriterLogger )IsLogLevel (level LogLevel )bool {return _agf .LogLevel >=level }; +// Trace logs trace message. +func (_fed WriterLogger )Trace (format string ,args ...interface{}){if _fed .LogLevel >=LogLevelTrace {_egdc :="\u005b\u0054\u0052\u0041\u0043\u0045\u005d\u0020";_fed .logToWriter (_fed .Output ,_egdc ,format ,args ...);};};const _bge =22; + +// UtcTimeFormat returns a formatted string describing a UTC timestamp. +func UtcTimeFormat (t _e .Time )string {return t .Format (_bab )+"\u0020\u0055\u0054\u0043"}; // Notice logs notice message. -func (_ddd WriterLogger )Notice (format string ,args ...interface{}){if _ddd .LogLevel >=LogLevelNotice {_ed :="\u005bN\u004f\u0054\u0049\u0043\u0045\u005d ";_ddd .logToWriter (_ddd .Output ,_ed ,format ,args ...);};}; +func (_be ConsoleLogger )Notice (format string ,args ...interface{}){if _be .LogLevel >=LogLevelNotice {_ac :="\u005bN\u004f\u0054\u0049\u0043\u0045\u005d ";_be .output (_eg .Stdout ,_ac ,format ,args ...);};}; -// Trace does nothing for dummy logger. -func (DummyLogger )Trace (format string ,args ...interface{}){}; +// Logger is the interface used for logging in the unipdf package. +type Logger interface{Error (_f string ,_cc ...interface{});Warning (_g string ,_fd ...interface{});Notice (_b string ,_eb ...interface{});Info (_a string ,_ba ...interface{});Debug (_ff string ,_ad ...interface{});Trace (_da string ,_ga ...interface{}); +IsLogLevel (_bg LogLevel )bool ;}; -// Error does nothing for dummy logger. -func (DummyLogger )Error (format string ,args ...interface{}){}; +// Warning does nothing for dummy logger. +func (DummyLogger )Warning (format string ,args ...interface{}){}; + +// Warning logs warning message. +func (_cd ConsoleLogger )Warning (format string ,args ...interface{}){if _cd .LogLevel >=LogLevelWarning {_ab :="\u005b\u0057\u0041\u0052\u004e\u0049\u004e\u0047\u005d\u0020";_cd .output (_eg .Stdout ,_ab ,format ,args ...);};};const _gb =15; + +// Debug logs debug message. +func (_gf WriterLogger )Debug (format string ,args ...interface{}){if _gf .LogLevel >=LogLevelDebug {_gae :="\u005b\u0044\u0045\u0042\u0055\u0047\u005d\u0020";_gf .logToWriter (_gf .Output ,_gae ,format ,args ...);};}; // Notice does nothing for dummy logger. func (DummyLogger )Notice (format string ,args ...interface{}){}; -// WriterLogger is the logger that writes data to the Output writer -type WriterLogger struct{LogLevel LogLevel ;Output _b .Writer ;}; +// Error logs error message. +func (_fe ConsoleLogger )Error (format string ,args ...interface{}){if _fe .LogLevel >=LogLevelError {_dd :="\u005b\u0045\u0052\u0052\u004f\u0052\u005d\u0020";_fe .output (_eg .Stdout ,_dd ,format ,args ...);};}; -// Warning logs warning message. -func (_bg ConsoleLogger )Warning (format string ,args ...interface{}){if _bg .LogLevel >=LogLevelWarning {_f :="\u005b\u0057\u0041\u0052\u004e\u0049\u004e\u0047\u005d\u0020";_bg .output (_ee .Stdout ,_f ,format ,args ...);};};func (_da ConsoleLogger )output (_ac _b .Writer ,_bd string ,_ccg string ,_bba ...interface{}){_adf (_ac ,_bd ,_ccg ,_bba ...); -}; +// SetLogger sets 'logger' to be used by the unidoc unipdf library. +func SetLogger (logger Logger ){Log =logger };func (_ag ConsoleLogger )output (_af _cb .Writer ,_ea string ,_bae string ,_ddb ...interface{}){_de (_af ,_ea ,_bae ,_ddb ...);};const Version ="\u0033\u002e\u0035\u0034\u002e\u0030"; -// Trace logs trace message. -func (_gg ConsoleLogger )Trace (format string ,args ...interface{}){if _gg .LogLevel >=LogLevelTrace {_ga :="\u005b\u0054\u0052\u0041\u0043\u0045\u005d\u0020";_gg .output (_ee .Stdout ,_ga ,format ,args ...);};}; +// Info logs info message. +func (_cg ConsoleLogger )Info (format string ,args ...interface{}){if _cg .LogLevel >=LogLevelInfo {_dg :="\u005bI\u004e\u0046\u004f\u005d\u0020";_cg .output (_eg .Stdout ,_dg ,format ,args ...);};}; -// DummyLogger does nothing. -type DummyLogger struct{};var ReleasedAt =_d .Date (_fcf ,_ccgg ,_ecb ,_feb ,_gc ,0,0,_d .UTC );func _adf (_ae _b .Writer ,_bgb string ,_cgc string ,_fe ...interface{}){_ ,_gf ,_aef ,_gac :=_c .Caller (3);if !_gac {_gf ="\u003f\u003f\u003f";_aef =0;}else {_gf =_g .Base (_gf ); -};_def :=_e .Sprintf ("\u0025s\u0020\u0025\u0073\u003a\u0025\u0064 ",_bgb ,_gf ,_aef )+_cgc +"\u000a";_e .Fprintf (_ae ,_def ,_fe ...);};const _gc =30; +// Error logs error message. +func (_fa WriterLogger )Error (format string ,args ...interface{}){if _fa .LogLevel >=LogLevelError {_ae :="\u005b\u0045\u0052\u0052\u004f\u0052\u005d\u0020";_fa .logToWriter (_fa .Output ,_ae ,format ,args ...);};};const (LogLevelTrace LogLevel =5;LogLevelDebug LogLevel =4; +LogLevelInfo LogLevel =3;LogLevelNotice LogLevel =2;LogLevelWarning LogLevel =1;LogLevelError LogLevel =0;);const _bd =30; + +// ConsoleLogger is a logger that writes logs to the 'os.Stdout' +type ConsoleLogger struct{LogLevel LogLevel ;};var Log Logger =DummyLogger {}; // IsLogLevel returns true if log level is greater or equal than `level`. // Can be used to avoid resource intensive calls to loggers. -func (_ba ConsoleLogger )IsLogLevel (level LogLevel )bool {return _ba .LogLevel >=level }; - -// UtcTimeFormat returns a formatted string describing a UTC timestamp. -func UtcTimeFormat (t _d .Time )string {return t .Format (_cd )+"\u0020\u0055\u0054\u0043"};const _fcf =2023; +func (_egd ConsoleLogger )IsLogLevel (level LogLevel )bool {return _egd .LogLevel >=level }; // NewWriterLogger creates new 'writer' logger. -func NewWriterLogger (logLevel LogLevel ,writer _b .Writer )*WriterLogger {_df :=WriterLogger {Output :writer ,LogLevel :logLevel };return &_df ;};const _cd ="\u0032\u0020\u004aan\u0075\u0061\u0072\u0079\u0020\u0032\u0030\u0030\u0036\u0020\u0061\u0074\u0020\u0031\u0035\u003a\u0030\u0034"; +func NewWriterLogger (logLevel LogLevel ,writer _cb .Writer )*WriterLogger {_cab :=WriterLogger {Output :writer ,LogLevel :logLevel };return &_cab ;};const _ce =1;func _de (_abg _cb .Writer ,_ebfa string ,_gfe string ,_abc ...interface{}){_ ,_ege ,_bb ,_egb :=_ec .Caller (3); +if !_egb {_ege ="\u003f\u003f\u003f";_bb =0;}else {_ege =_ca .Base (_ege );};_bea :=_c .Sprintf ("\u0025s\u0020\u0025\u0073\u003a\u0025\u0064 ",_ebfa ,_ege ,_bb )+_gfe +"\u000a";_c .Fprintf (_abg ,_bea ,_abc ...);}; - -// NewConsoleLogger creates new console logger. -func NewConsoleLogger (logLevel LogLevel )*ConsoleLogger {return &ConsoleLogger {LogLevel :logLevel }};const _ecb =17; - -// SetLogger sets 'logger' to be used by the unidoc unipdf library. -func SetLogger (logger Logger ){Log =logger }; - -// LogLevel is the verbosity level for logging. -type LogLevel int ; - -// Info logs info message. -func (_fc WriterLogger )Info (format string ,args ...interface{}){if _fc .LogLevel >=LogLevelInfo {_cb :="\u005bI\u004e\u0046\u004f\u005d\u0020";_fc .logToWriter (_fc .Output ,_cb ,format ,args ...);};}; \ No newline at end of file +// Info does nothing for dummy logger. +func (DummyLogger )Info (format string ,args ...interface{}){};const _bab ="\u0032\u0020\u004aan\u0075\u0061\u0072\u0079\u0020\u0032\u0030\u0030\u0036\u0020\u0061\u0074\u0020\u0031\u0035\u003a\u0030\u0034"; \ No newline at end of file diff --git a/common/license/license.go b/common/license/license.go index f0fbb35d4..9126ec7b0 100644 --- a/common/license/license.go +++ b/common/license/license.go @@ -10,30 +10,30 @@ // terms that can be accessed at https://unidoc.io/eula/ // Package license helps manage commercial licenses and check if they are valid for the version of unipdf used. -package license ;import _b "github.com/unidoc/unipdf/v3/internal/license"; - -// SetMeteredKeyPersistentCache sets the metered License API Key persistent cache. -// Default value 'true', set to `false` will report the usage immediately to license server, -// this can be used when there's no access to persistent data storage. -func SetMeteredKeyPersistentCache (val bool ){_b .SetMeteredKeyPersistentCache (val )};const (LicenseTierUnlicensed =_b .LicenseTierUnlicensed ;LicenseTierCommunity =_b .LicenseTierCommunity ;LicenseTierIndividual =_b .LicenseTierIndividual ;LicenseTierBusiness =_b .LicenseTierBusiness ; +package license ;import _ag "github.com/unidoc/unipdf/v3/internal/license";const (LicenseTierUnlicensed =_ag .LicenseTierUnlicensed ;LicenseTierCommunity =_ag .LicenseTierCommunity ;LicenseTierIndividual =_ag .LicenseTierIndividual ;LicenseTierBusiness =_ag .LicenseTierBusiness ; ); -// SetMeteredKey sets the metered API key required for SaaS operation. -// Document usage is reported periodically for the product to function correctly. -func SetMeteredKey (apiKey string )error {return _b .SetMeteredKey (apiKey )}; - -// MakeUnlicensedKey returns a default key. -func MakeUnlicensedKey ()*LicenseKey {return _b .MakeUnlicensedKey ()}; +// LicenseKey represents a loaded license key. +type LicenseKey =_ag .LicenseKey ; // GetMeteredState checks the currently used metered document usage status, // documents used and credits available. -func GetMeteredState ()(_b .MeteredStatus ,error ){return _b .GetMeteredState ()}; +func GetMeteredState ()(_ag .MeteredStatus ,error ){return _ag .GetMeteredState ()}; -// GetLicenseKey returns the currently loaded license key. -func GetLicenseKey ()*LicenseKey {return _b .GetLicenseKey ()}; +// MakeUnlicensedKey returns a default key. +func MakeUnlicensedKey ()*LicenseKey {return _ag .MakeUnlicensedKey ()}; + +// SetMeteredKey sets the metered API key required for SaaS operation. +// Document usage is reported periodically for the product to function correctly. +func SetMeteredKey (apiKey string )error {return _ag .SetMeteredKey (apiKey )}; // SetLicenseKey sets and validates the license key. -func SetLicenseKey (content string ,customerName string )error {return _b .SetLicenseKey (content ,customerName );}; +func SetLicenseKey (content string ,customerName string )error {return _ag .SetLicenseKey (content ,customerName );}; -// LicenseKey represents a loaded license key. -type LicenseKey =_b .LicenseKey ; \ No newline at end of file +// GetLicenseKey returns the currently loaded license key. +func GetLicenseKey ()*LicenseKey {return _ag .GetLicenseKey ()}; + +// SetMeteredKeyPersistentCache sets the metered License API Key persistent cache. +// Default value 'true', set to `false` will report the usage immediately to license server, +// this can be used when there's no access to persistent data storage. +func SetMeteredKeyPersistentCache (val bool ){_ag .SetMeteredKeyPersistentCache (val )}; \ No newline at end of file diff --git a/contentstream/contentstream.go b/contentstream/contentstream.go index a2999f531..224fe0bd7 100644 --- a/contentstream/contentstream.go +++ b/contentstream/contentstream.go @@ -20,782 +20,776 @@ // be converted to a string for embedding in a PDF file. // // The contentstream package uses the core and model packages. -package contentstream ;import (_ee "bufio";_ec "bytes";_e "encoding/hex";_f "errors";_db "fmt";_ecg "github.com/unidoc/unipdf/v3/common";_ea "github.com/unidoc/unipdf/v3/core";_eeg "github.com/unidoc/unipdf/v3/internal/imageutil";_eg "github.com/unidoc/unipdf/v3/internal/transform"; -_ge "github.com/unidoc/unipdf/v3/model";_b "image/color";_fff "image/jpeg";_g "io";_gc "math";_d "regexp";_ff "strconv";);func (_gbe *ContentStreamParser )parseOperand ()(*_ea .PdfObjectString ,error ){var _cbcd []byte ;for {_dagg ,_eceg :=_gbe ._edbd .Peek (1); -if _eceg !=nil {return _ea .MakeString (string (_cbcd )),_eceg ;};if _ea .IsDelimiter (_dagg [0]){break ;};if _ea .IsWhiteSpace (_dagg [0]){break ;};_dbdg ,_ :=_gbe ._edbd .ReadByte ();_cbcd =append (_cbcd ,_dbdg );};return _ea .MakeString (string (_cbcd )),nil ; -}; - -// AddOperand adds a specified operand. -func (_bge *ContentCreator )AddOperand (op ContentStreamOperation )*ContentCreator {_bge ._afa =append (_bge ._afa ,&op );return _bge ;}; - -// Add_Do adds 'Do' operation to the content stream: -// Displays an XObject (image or form) specified by `name`. -// -// See section 8.8 "External Objects" and Table 87 (pp. 209-220 PDF32000_2008). -func (_dbf *ContentCreator )Add_Do (name _ea .PdfObjectName )*ContentCreator {_agd :=ContentStreamOperation {};_agd .Operand ="\u0044\u006f";_agd .Params =_gbg ([]_ea .PdfObjectName {name });_dbf ._afa =append (_dbf ._afa ,&_agd );return _dbf ;}; +package contentstream ;import (_af "bufio";_ge "bytes";_a "encoding/hex";_b "errors";_ag "fmt";_db "github.com/unidoc/unipdf/v3/common";_dd "github.com/unidoc/unipdf/v3/core";_ad "github.com/unidoc/unipdf/v3/internal/imageutil";_bc "github.com/unidoc/unipdf/v3/internal/transform"; +_ba "github.com/unidoc/unipdf/v3/model";_f "image/color";_fg "image/jpeg";_ec "io";_ff "math";_g "regexp";_e "strconv";); -// Add_cm adds 'cm' operation to the content stream: Modifies the current transformation matrix (ctm) -// of the graphics state. +// Add_j adds 'j' operand to the content stream: Set the line join style (graphics state). // // See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_bfa *ContentCreator )Add_cm (a ,b ,c ,d ,e ,f float64 )*ContentCreator {_eca :=ContentStreamOperation {};_eca .Operand ="\u0063\u006d";_eca .Params =_deaf ([]float64 {a ,b ,c ,d ,e ,f });_bfa ._afa =append (_bfa ._afa ,&_eca );return _bfa ;}; - -// GetColorSpace returns the colorspace of the inline image. -func (_cbd *ContentStreamInlineImage )GetColorSpace (resources *_ge .PdfPageResources )(_ge .PdfColorspace ,error ){if _cbd .ColorSpace ==nil {_ecg .Log .Debug ("\u0049\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076i\u006e\u0067\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u002c\u0020\u0061\u0073\u0073\u0075\u006di\u006e\u0067\u0020\u0047\u0072a\u0079"); -return _ge .NewPdfColorspaceDeviceGray (),nil ;};if _cbb ,_cca :=_cbd .ColorSpace .(*_ea .PdfObjectArray );_cca {return _dfdc (_cbb );};_beg ,_dec :=_cbd .ColorSpace .(*_ea .PdfObjectName );if !_dec {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020I\u006e\u0076\u0061\u006c\u0069\u0064 \u006f\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u003b\u0025\u002bv\u0029",_cbd .ColorSpace ,_cbd .ColorSpace ); -return nil ,_f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if *_beg =="\u0047"||*_beg =="\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"{return _ge .NewPdfColorspaceDeviceGray (),nil ; -}else if *_beg =="\u0052\u0047\u0042"||*_beg =="\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B"{return _ge .NewPdfColorspaceDeviceRGB (),nil ;}else if *_beg =="\u0043\u004d\u0059\u004b"||*_beg =="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"{return _ge .NewPdfColorspaceDeviceCMYK (),nil ; -}else if *_beg =="\u0049"||*_beg =="\u0049n\u0064\u0065\u0078\u0065\u0064"{return nil ,_f .New ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0049\u006e\u0064e\u0078 \u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065");}else {if resources .ColorSpace ==nil {_ecg .Log .Debug ("\u0045\u0072r\u006f\u0072\u002c\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0073",*_beg ); -return nil ,_f .New ("\u0075n\u006bn\u006f\u0077\u006e\u0020\u0063o\u006c\u006fr\u0073\u0070\u0061\u0063\u0065");};_bdbb ,_abbca :=resources .GetColorspaceByName (*_beg );if !_abbca {_ecg .Log .Debug ("\u0045\u0072r\u006f\u0072\u002c\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0073",*_beg ); -return nil ,_f .New ("\u0075n\u006bn\u006f\u0077\u006e\u0020\u0063o\u006c\u006fr\u0073\u0070\u0061\u0063\u0065");};return _bdbb ,nil ;};}; - -// ContentStreamParser represents a content stream parser for parsing content streams in PDFs. -type ContentStreamParser struct{_edbd *_ee .Reader }; +func (_dc *ContentCreator )Add_j (lineJoinStyle string )*ContentCreator {_cd :=ContentStreamOperation {};_cd .Operand ="\u006a";_cd .Params =_adbc ([]_dd .PdfObjectName {_dd .PdfObjectName (lineJoinStyle )});_dc ._bg =append (_dc ._bg ,&_cd );return _dc ; +}; -// Add_l adds 'l' operand to the content stream: -// Append a straight line segment from the current point to (x,y). +// Add_EMC appends 'EMC' operand to the content stream: +// Ends a marked-content sequence. // -// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_ef *ContentCreator )Add_l (x ,y float64 )*ContentCreator {_cb :=ContentStreamOperation {};_cb .Operand ="\u006c";_cb .Params =_deaf ([]float64 {x ,y });_ef ._afa =append (_ef ._afa ,&_cb );return _ef ;}; +// See section 14.6 "Marked Content" and Table 320 (p. 561 PDF32000_2008). +func (_dbce *ContentCreator )Add_EMC ()*ContentCreator {_fdfb :=ContentStreamOperation {};_fdfb .Operand ="\u0045\u004d\u0043";_dbce ._bg =append (_dbce ._bg ,&_fdfb );return _dbce ;};func (_cgae *ContentStreamParser )parseNumber ()(_dd .PdfObject ,error ){return _dd .ParseNumber (_cgae ._efe ); +}; -// Add_ri adds 'ri' operand to the content stream, which sets the color rendering intent. -// -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_fa *ContentCreator )Add_ri (intent _ea .PdfObjectName )*ContentCreator {_fb :=ContentStreamOperation {};_fb .Operand ="\u0072\u0069";_fb .Params =_gbg ([]_ea .PdfObjectName {intent });_fa ._afa =append (_fa ._afa ,&_fb );return _fa ;};func _dfdc (_gdgd _ea .PdfObject )(_ge .PdfColorspace ,error ){_faed ,_fecde :=_gdgd .(*_ea .PdfObjectArray ); -if !_fecde {_ecg .Log .Debug ("\u0045r\u0072\u006fr\u003a\u0020\u0049\u006ev\u0061\u006c\u0069d\u0020\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020cs\u0020\u006e\u006ft\u0020\u0069n\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025#\u0076\u0029",_gdgd ); -return nil ,_f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if _faed .Len ()!=4{_ecg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061r\u0072\u0061\u0079\u002c\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0034\u0020\u0028\u0025\u0064\u0029",_faed .Len ()); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_cbca ,_fecde :=_faed .Get (0).(*_ea .PdfObjectName );if !_fecde {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0066\u0069\u0072s\u0074 \u0065\u006c\u0065\u006de\u006e\u0074 \u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0023\u0076\u0029",*_faed ); -return nil ,_f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if *_cbca !="\u0049"&&*_cbca !="\u0049n\u0064\u0065\u0078\u0065\u0064"{_ecg .Log .Debug ("\u0045\u0072r\u006f\u0072\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064 \u0063\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0021\u003d\u0020\u0049\u0020\u0028\u0067\u006f\u0074\u003a\u0020\u0025\u0076\u0029",*_cbca ); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_cbca ,_fecde =_faed .Get (1).(*_ea .PdfObjectName );if !_fecde {_ecg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061\u0072r\u0061\u0079\u0020\u0032\u006e\u0064\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0061\u0072\u0072a\u0079\u003a\u0020\u0025\u0023v\u0029",*_faed ); -return nil ,_f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if *_cbca !="\u0047"&&*_cbca !="\u0052\u0047\u0042"&&*_cbca !="\u0043\u004d\u0059\u004b"&&*_cbca !="\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"&&*_cbca !="\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B"&&*_cbca !="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"{_ecg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061\u0072r\u0061\u0079\u0020\u0032\u006e\u0064\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0021\u003d\u0020\u0047\u002f\u0052\u0047\u0042\u002f\u0043\u004d\u0059\u004b\u0020\u0028g\u006f\u0074\u003a\u0020\u0025v\u0029",*_cbca ); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_deeg :="";switch *_cbca {case "\u0047","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_deeg ="\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"; -case "\u0052\u0047\u0042","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_deeg ="\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B";case "\u0043\u004d\u0059\u004b","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_deeg ="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"; -};_bfff :=_ea .MakeArray (_ea .MakeName ("\u0049n\u0064\u0065\u0078\u0065\u0064"),_ea .MakeName (_deeg ),_faed .Get (2),_faed .Get (3));return _ge .NewPdfColorspaceFromPdfObject (_bfff );}; +// ContentCreator is a builder for PDF content streams. +type ContentCreator struct{_bg ContentStreamOperations }; -// ContentStreamOperations is a slice of ContentStreamOperations. -type ContentStreamOperations []*ContentStreamOperation ; +// SetStrokingColor sets the stroking `color` where color can be one of +// PdfColorDeviceGray, PdfColorDeviceRGB, or PdfColorDeviceCMYK. +func (_gg *ContentCreator )SetStrokingColor (color _ba .PdfColor )*ContentCreator {switch _ecff :=color .(type ){case *_ba .PdfColorDeviceGray :_gg .Add_G (_ecff .Val ());case *_ba .PdfColorDeviceRGB :_gg .Add_RG (_ecff .R (),_ecff .G (),_ecff .B ());case *_ba .PdfColorDeviceCMYK :_gg .Add_K (_ecff .C (),_ecff .M (),_ecff .Y (),_ecff .K ()); +case *_ba .PdfColorPatternType2 :_gg .Add_CS (*_dd .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_gg .Add_SCN_pattern (_ecff .PatternName );case *_ba .PdfColorPatternType3 :_gg .Add_CS (*_dd .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_gg .Add_SCN_pattern (_ecff .PatternName ); +default:_db .Log .Debug ("\u0053\u0065\u0074\u0053\u0074\u0072\u006f\u006b\u0069\u006e\u0067\u0043\u006fl\u006f\u0072\u003a\u0020\u0075\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006fr\u003a\u0020\u0025\u0054",_ecff ); +};return _gg ;}; // Add_SC appends 'SC' operand to the content stream: // Set color for stroking operations. Input: c1, ..., cn. // // See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_cbc *ContentCreator )Add_SC (c ...float64 )*ContentCreator {_gb :=ContentStreamOperation {};_gb .Operand ="\u0053\u0043";_gb .Params =_deaf (c );_cbc ._afa =append (_cbc ._afa ,&_gb );return _cbc ;}; - -// Add_SCN appends 'SCN' operand to the content stream: -// Same as SC but supports more colorspaces. -// -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_gada *ContentCreator )Add_SCN (c ...float64 )*ContentCreator {_cbg :=ContentStreamOperation {};_cbg .Operand ="\u0053\u0043\u004e";_cbg .Params =_deaf (c );_gada ._afa =append (_gada ._afa ,&_cbg );return _gada ;}; +func (_ccg *ContentCreator )Add_SC (c ...float64 )*ContentCreator {_febf :=ContentStreamOperation {};_febf .Operand ="\u0053\u0043";_febf .Params =_bdce (c );_ccg ._bg =append (_ccg ._bg ,&_febf );return _ccg ;}; -// Add_c adds 'c' operand to the content stream: Append a Bezier curve to the current path from -// the current point to (x3,y3) with (x1,x1) and (x2,y2) as control points. +// Add_v appends 'v' operand to the content stream: Append a Bezier curve to the current path from the +// current point to (x3,y3) with the current point and (x2,y2) as control points. // // See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_bfc *ContentCreator )Add_c (x1 ,y1 ,x2 ,y2 ,x3 ,y3 float64 )*ContentCreator {_fbf :=ContentStreamOperation {};_fbf .Operand ="\u0063";_fbf .Params =_deaf ([]float64 {x1 ,y1 ,x2 ,y2 ,x3 ,y3 });_bfc ._afa =append (_bfc ._afa ,&_fbf );return _bfc ; -}; +func (_cdg *ContentCreator )Add_v (x2 ,y2 ,x3 ,y3 float64 )*ContentCreator {_gf :=ContentStreamOperation {};_gf .Operand ="\u0076";_gf .Params =_bdce ([]float64 {x2 ,y2 ,x3 ,y3 });_cdg ._bg =append (_cdg ._bg ,&_gf );return _cdg ;}; -// Parse parses all commands in content stream, returning a list of operation data. -func (_fdbeg *ContentStreamParser )Parse ()(*ContentStreamOperations ,error ){_ffc :=ContentStreamOperations {};for {_gdea :=ContentStreamOperation {};for {_ccg ,_ffd ,_bcd :=_fdbeg .parseObject ();if _bcd !=nil {if _bcd ==_g .EOF {return &_ffc ,nil ;}; -return &_ffc ,_bcd ;};if _ffd {_gdea .Operand ,_ =_ea .GetStringVal (_ccg );_ffc =append (_ffc ,&_gdea );break ;}else {_gdea .Params =append (_gdea .Params ,_ccg );};};if _gdea .Operand =="\u0042\u0049"{_gfb ,_cgd :=_fdbeg .ParseInlineImage ();if _cgd !=nil {return &_ffc ,_cgd ; -};_gdea .Params =append (_gdea .Params ,_gfb );};};}; +// Process processes the entire list of operations. Maintains the graphics state that is passed to any +// handlers that are triggered during processing (either on specific operators or all). +func (_fff *ContentStreamProcessor )Process (resources *_ba .PdfPageResources )error {_fff ._gea .ColorspaceStroking =_ba .NewPdfColorspaceDeviceGray ();_fff ._gea .ColorspaceNonStroking =_ba .NewPdfColorspaceDeviceGray ();_fff ._gea .ColorStroking =_ba .NewPdfColorDeviceGray (0); +_fff ._gea .ColorNonStroking =_ba .NewPdfColorDeviceGray (0);_fff ._gea .CTM =_bc .IdentityMatrix ();for _ ,_dge :=range _fff ._aac {var _eca error ;switch _dge .Operand {case "\u0071":_fff ._cee .Push (_fff ._gea );case "\u0051":if len (_fff ._cee )==0{_db .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0060\u0051\u0060\u0020\u006f\u0070e\u0072\u0061\u0074\u006f\u0072\u002e\u0020\u0047\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0020\u0073\u0074\u0061\u0074\u0065 \u0073\u0074\u0061\u0063\u006b\u0020\u0069\u0073\u0020\u0065\u006d\u0070\u0074\u0079.\u0020\u0053\u006bi\u0070\u0070\u0069\u006e\u0067\u002e"); +continue ;};_fff ._gea =_fff ._cee .Pop ();case "\u0043\u0053":_eca =_fff .handleCommand_CS (_dge ,resources );case "\u0063\u0073":_eca =_fff .handleCommand_cs (_dge ,resources );case "\u0053\u0043":_eca =_fff .handleCommand_SC (_dge ,resources );case "\u0053\u0043\u004e":_eca =_fff .handleCommand_SCN (_dge ,resources ); +case "\u0073\u0063":_eca =_fff .handleCommand_sc (_dge ,resources );case "\u0073\u0063\u006e":_eca =_fff .handleCommand_scn (_dge ,resources );case "\u0047":_eca =_fff .handleCommand_G (_dge ,resources );case "\u0067":_eca =_fff .handleCommand_g (_dge ,resources ); +case "\u0052\u0047":_eca =_fff .handleCommand_RG (_dge ,resources );case "\u0072\u0067":_eca =_fff .handleCommand_rg (_dge ,resources );case "\u004b":_eca =_fff .handleCommand_K (_dge ,resources );case "\u006b":_eca =_fff .handleCommand_k (_dge ,resources ); +case "\u0063\u006d":_eca =_fff .handleCommand_cm (_dge ,resources );};if _eca !=nil {_db .Log .Debug ("\u0050\u0072\u006f\u0063\u0065\u0073s\u006f\u0072\u0020\u0068\u0061\u006e\u0064\u006c\u0069\u006e\u0067\u0020\u0065r\u0072\u006f\u0072\u0020\u0028\u0025\u0073)\u003a\u0020\u0025\u0076",_dge .Operand ,_eca ); +_db .Log .Debug ("\u004f\u0070\u0065r\u0061\u006e\u0064\u003a\u0020\u0025\u0023\u0076",_dge .Operand );return _eca ;};for _ ,_becc :=range _fff ._efbe {var _dbcb error ;if _becc .Condition .All (){_dbcb =_becc .Handler (_dge ,_fff ._gea ,resources );}else if _becc .Condition .Operand ()&&_dge .Operand ==_becc .Operand {_dbcb =_becc .Handler (_dge ,_fff ._gea ,resources ); +};if _dbcb !=nil {_db .Log .Debug ("P\u0072\u006f\u0063\u0065\u0073\u0073o\u0072\u0020\u0068\u0061\u006e\u0064\u006c\u0065\u0072 \u0065\u0072\u0072o\u0072:\u0020\u0025\u0076",_dbcb );return _dbcb ;};};};return nil ;}; -// GraphicStateStack represents a stack of GraphicsState. -type GraphicStateStack []GraphicsState ; +// Scale applies x-y scaling to the transformation matrix. +func (_fgac *ContentCreator )Scale (sx ,sy float64 )*ContentCreator {return _fgac .Add_cm (sx ,0,0,sy ,0,0);};func (_cgeb *ContentStreamParser )skipSpaces ()(int ,error ){_ebgc :=0;for {_cdd ,_ggc :=_cgeb ._efe .Peek (1);if _ggc !=nil {return 0,_ggc ;}; +if _dd .IsWhiteSpace (_cdd [0]){_cgeb ._efe .ReadByte ();_ebgc ++;}else {break ;};};return _ebgc ,nil ;}; -// Add_Tz appends 'Tz' operand to the content stream: -// Set horizontal scaling. +// Add_S appends 'S' operand to the content stream: Stroke the path. // -// See section 9.3 "Text State Parameters and Operators" and -// Table 105 (pp. 251-252 PDF32000_2008). -func (_fdg *ContentCreator )Add_Tz (scale float64 )*ContentCreator {_ebc :=ContentStreamOperation {};_ebc .Operand ="\u0054\u007a";_ebc .Params =_deaf ([]float64 {scale });_fdg ._afa =append (_fdg ._afa ,&_ebc );return _fdg ;}; +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_bfe *ContentCreator )Add_S ()*ContentCreator {_fbbd :=ContentStreamOperation {};_fbbd .Operand ="\u0053";_bfe ._bg =append (_bfe ._bg ,&_fbbd );return _bfe ;};func (_bcga *ContentStreamProcessor )handleCommand_rg (_daefb *ContentStreamOperation ,_dddce *_ba .PdfPageResources )error {_daec :=_ba .NewPdfColorspaceDeviceRGB (); +if len (_daefb .Params )!=_daec .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_daefb .Params ),_daec );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};_dfdc ,_cdbg :=_daec .ColorFromPdfObjects (_daefb .Params );if _cdbg !=nil {return _cdbg ;};_bcga ._gea .ColorspaceNonStroking =_daec ;_bcga ._gea .ColorNonStroking =_dfdc ;return nil ;}; -// Bytes converts a set of content stream operations to a content stream byte presentation, -// i.e. the kind that can be stored as a PDF stream or string format. -func (_cd *ContentStreamOperations )Bytes ()[]byte {var _af _ec .Buffer ;for _ ,_ab :=range *_cd {if _ab ==nil {continue ;};if _ab .Operand =="\u0042\u0049"{_af .WriteString (_ab .Operand +"\u000a");_af .WriteString (_ab .Params [0].WriteString ());}else {for _ ,_bb :=range _ab .Params {_af .WriteString (_bb .WriteString ()); -_af .WriteString ("\u0020");};_af .WriteString (_ab .Operand +"\u000a");};};return _af .Bytes ();};func _deaf (_ddgb []float64 )[]_ea .PdfObject {var _cadb []_ea .PdfObject ;for _ ,_babd :=range _ddgb {_cadb =append (_cadb ,_ea .MakeFloat (_babd ));};return _cadb ; -}; +// SetNonStrokingColor sets the non-stroking `color` where color can be one of +// PdfColorDeviceGray, PdfColorDeviceRGB, or PdfColorDeviceCMYK. +func (_degg *ContentCreator )SetNonStrokingColor (color _ba .PdfColor )*ContentCreator {switch _fae :=color .(type ){case *_ba .PdfColorDeviceGray :_degg .Add_g (_fae .Val ());case *_ba .PdfColorDeviceRGB :_degg .Add_rg (_fae .R (),_fae .G (),_fae .B ()); +case *_ba .PdfColorDeviceCMYK :_degg .Add_k (_fae .C (),_fae .M (),_fae .Y (),_fae .K ());case *_ba .PdfColorPatternType2 :_degg .Add_cs (*_dd .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_degg .Add_scn_pattern (_fae .PatternName );case *_ba .PdfColorPatternType3 :_degg .Add_cs (*_dd .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e")); +_degg .Add_scn_pattern (_fae .PatternName );default:_db .Log .Debug ("\u0053\u0065\u0074N\u006f\u006e\u0053\u0074\u0072\u006f\u006b\u0069\u006e\u0067\u0043\u006f\u006c\u006f\u0072\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020c\u006f\u006c\u006f\u0072\u003a\u0020\u0025\u0054",_fae ); +};return _degg ;}; -// Add_k appends 'k' operand to the content stream: -// Same as K but used for nonstroking operations. +// Add_Ts appends 'Ts' operand to the content stream: +// Set text rise. // -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_bfcc *ContentCreator )Add_k (c ,m ,y ,k float64 )*ContentCreator {_fef :=ContentStreamOperation {};_fef .Operand ="\u006b";_fef .Params =_deaf ([]float64 {c ,m ,y ,k });_bfcc ._afa =append (_bfcc ._afa ,&_fef );return _bfcc ;}; +// See section 9.3 "Text State Parameters and Operators" and +// Table 105 (pp. 251-252 PDF32000_2008). +func (_ccf *ContentCreator )Add_Ts (rise float64 )*ContentCreator {_def :=ContentStreamOperation {};_def .Operand ="\u0054\u0073";_def .Params =_bdce ([]float64 {rise });_ccf ._bg =append (_ccf ._bg ,&_def );return _ccf ;}; -// Pop pops and returns the topmost GraphicsState off the `gsStack`. -func (_cbea *GraphicStateStack )Pop ()GraphicsState {_caaf :=(*_cbea )[len (*_cbea )-1];*_cbea =(*_cbea )[:len (*_cbea )-1];return _caaf ;}; +// GraphicsState is a basic graphics state implementation for PDF processing. +// Initially only implementing and tracking a portion of the information specified. Easy to add more. +type GraphicsState struct{ColorspaceStroking _ba .PdfColorspace ;ColorspaceNonStroking _ba .PdfColorspace ;ColorStroking _ba .PdfColor ;ColorNonStroking _ba .PdfColor ;CTM _bc .Matrix ;}; -// Add_re appends 're' operand to the content stream: -// Append a rectangle to the current path as a complete subpath, with lower left corner (x,y). +// Add_TD appends 'TD' operand to the content stream: +// Move to start of next line with offset (`tx`, `ty`). // -// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_bbb *ContentCreator )Add_re (x ,y ,width ,height float64 )*ContentCreator {_bdf :=ContentStreamOperation {};_bdf .Operand ="\u0072\u0065";_bdf .Params =_deaf ([]float64 {x ,y ,width ,height });_bbb ._afa =append (_bbb ._afa ,&_bdf );return _bbb ; -}; - -// ToImage exports the inline image to Image which can be transformed or exported easily. -// Page resources are needed to look up colorspace information. -func (_cad *ContentStreamInlineImage )ToImage (resources *_ge .PdfPageResources )(*_ge .Image ,error ){_acg ,_eeaf :=_cad .toImageBase (resources );if _eeaf !=nil {return nil ,_eeaf ;};_dag ,_eeaf :=_edg (_cad );if _eeaf !=nil {return nil ,_eeaf ;};_gaga ,_bdbd :=_ea .GetDict (_cad .DecodeParms ); -if _bdbd {_dag .UpdateParams (_gaga );};_ecg .Log .Trace ("\u0065n\u0063o\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076\u0020\u0025\u0054",_dag ,_dag );_ecg .Log .Trace ("\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065:\u0020\u0025\u002b\u0076",_cad ); -_bbg ,_eeaf :=_dag .DecodeBytes (_cad ._ebb );if _eeaf !=nil {return nil ,_eeaf ;};_edgc :=&_ge .Image {Width :int64 (_acg .Width ),Height :int64 (_acg .Height ),BitsPerComponent :int64 (_acg .BitsPerComponent ),ColorComponents :_acg .ColorComponents ,Data :_bbg }; -if len (_acg .Decode )> 0{for _cccf :=0;_cccf < len (_acg .Decode );_cccf ++{_acg .Decode [_cccf ]*=float64 ((int (1)< 1{_ecg .Log .Debug ("\u0063\u0073\u0020\u0063\u006f\u006d\u006d\u0061n\u0064\u0020\u0077it\u0068\u0020\u0074\u006f\u006f\u0020m\u0061\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020-\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075i\u006e\u0067"); -return _f .New ("\u0074\u006f\u006f\u0020ma\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073");};_abgbc ,_ggc :=_bac .Params [0].(*_ea .PdfObjectName );if !_ggc {_ecg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020c\u0073\u0020\u0063o\u006d\u006d\u0061n\u0064\u0020w\u0069\u0074\u0068\u0020\u0069\u006ev\u0061li\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u002c\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006f\u0076\u0065\u0072"); -return _f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_bccb ,_gdcf :=_agc .getColorspace (string (*_abgbc ),_dfbd );if _gdcf !=nil {return _gdcf ;};_agc ._ggfd .ColorspaceStroking =_bccb ;_bbfcg ,_gdcf :=_agc .getInitialColor (_bccb ); -if _gdcf !=nil {return _gdcf ;};_agc ._ggfd .ColorStroking =_bbfcg ;return nil ;};func (_ggge *ContentStreamParser )parseObject ()(_egg _ea .PdfObject ,_cagg bool ,_fed error ){_ggge .skipSpaces ();for {_cga ,_bfdb :=_ggge ._edbd .Peek (2);if _bfdb !=nil {return nil ,false ,_bfdb ; -};_ecg .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_cga ));if _cga [0]=='%'{_ggge .skipComments ();continue ;}else if _cga [0]=='/'{_ecabf ,_ega :=_ggge .parseName ();_ecg .Log .Trace ("\u002d\u003e\u004ea\u006d\u0065\u003a\u0020\u0027\u0025\u0073\u0027",_ecabf ); -return &_ecabf ,false ,_ega ;}else if _cga [0]=='('{_ecg .Log .Trace ("\u002d>\u0053\u0074\u0072\u0069\u006e\u0067!");_agaga ,_efg :=_ggge .parseString ();return _agaga ,false ,_efg ;}else if _cga [0]=='<'&&_cga [1]!='<'{_ecg .Log .Trace ("\u002d\u003e\u0048\u0065\u0078\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u0021"); -_cfcf ,_gacd :=_ggge .parseHexString ();return _cfcf ,false ,_gacd ;}else if _cga [0]=='['{_ecg .Log .Trace ("\u002d\u003e\u0041\u0072\u0072\u0061\u0079\u0021");_fecd ,_bdg :=_ggge .parseArray ();return _fecd ,false ,_bdg ;}else if _ea .IsFloatDigit (_cga [0])||(_cga [0]=='-'&&_ea .IsFloatDigit (_cga [1]))||(_cga [0]=='+'&&_ea .IsFloatDigit (_cga [1])){_ecg .Log .Trace ("\u002d>\u004e\u0075\u006d\u0062\u0065\u0072!"); -_edcg ,_bbgg :=_ggge .parseNumber ();return _edcg ,false ,_bbgg ;}else if _cga [0]=='<'&&_cga [1]=='<'{_fgda ,_gdg :=_ggge .parseDict ();return _fgda ,false ,_gdg ;}else {_ecg .Log .Trace ("\u002d>\u004fp\u0065\u0072\u0061\u006e\u0064 \u006f\u0072 \u0062\u006f\u006f\u006c\u003f"); -_cga ,_ =_ggge ._edbd .Peek (5);_bebe :=string (_cga );_ecg .Log .Trace ("\u0063\u006f\u006e\u0074\u0020\u0050\u0065\u0065\u006b\u0020\u0073\u0074r\u003a\u0020\u0025\u0073",_bebe );if (len (_bebe )> 3)&&(_bebe [:4]=="\u006e\u0075\u006c\u006c"){_aged ,_gfge :=_ggge .parseNull (); -return &_aged ,false ,_gfge ;}else if (len (_bebe )> 4)&&(_bebe [:5]=="\u0066\u0061\u006cs\u0065"){_bbc ,_cgcd :=_ggge .parseBool ();return &_bbc ,false ,_cgcd ;}else if (len (_bebe )> 3)&&(_bebe [:4]=="\u0074\u0072\u0075\u0065"){_ebd ,_bcdc :=_ggge .parseBool (); -return &_ebd ,false ,_bcdc ;};_fdc ,_gab :=_ggge .parseOperand ();if _gab !=nil {return _fdc ,false ,_gab ;};if len (_fdc .String ())< 1{return _fdc ,false ,ErrInvalidOperand ;};return _fdc ,true ,nil ;};};};func (_afc *ContentStreamInlineImage )String ()string {_gbd :=_db .Sprintf ("I\u006el\u0069\u006e\u0065\u0049\u006d\u0061\u0067\u0065(\u006c\u0065\u006e\u003d%d\u0029\u000a",len (_afc ._ebb )); -if _afc .BitsPerComponent !=nil {_gbd +="\u002d\u0020\u0042\u0050\u0043\u0020"+_afc .BitsPerComponent .WriteString ()+"\u000a";};if _afc .ColorSpace !=nil {_gbd +="\u002d\u0020\u0043S\u0020"+_afc .ColorSpace .WriteString ()+"\u000a";};if _afc .Decode !=nil {_gbd +="\u002d\u0020\u0044\u0020"+_afc .Decode .WriteString ()+"\u000a"; -};if _afc .DecodeParms !=nil {_gbd +="\u002d\u0020\u0044P\u0020"+_afc .DecodeParms .WriteString ()+"\u000a";};if _afc .Filter !=nil {_gbd +="\u002d\u0020\u0046\u0020"+_afc .Filter .WriteString ()+"\u000a";};if _afc .Height !=nil {_gbd +="\u002d\u0020\u0048\u0020"+_afc .Height .WriteString ()+"\u000a"; -};if _afc .ImageMask !=nil {_gbd +="\u002d\u0020\u0049M\u0020"+_afc .ImageMask .WriteString ()+"\u000a";};if _afc .Intent !=nil {_gbd +="\u002d \u0049\u006e\u0074\u0065\u006e\u0074 "+_afc .Intent .WriteString ()+"\u000a";};if _afc .Interpolate !=nil {_gbd +="\u002d\u0020\u0049\u0020"+_afc .Interpolate .WriteString ()+"\u000a"; -};if _afc .Width !=nil {_gbd +="\u002d\u0020\u0057\u0020"+_afc .Width .WriteString ()+"\u000a";};return _gbd ;}; +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_fab *ContentCreator )Add_B_starred ()*ContentCreator {_bec :=ContentStreamOperation {};_bec .Operand ="\u0042\u002a";_fab ._bg =append (_fab ._bg ,&_bec );return _fab ;}; -// Add_TL appends 'TL' operand to the content stream: -// Set leading. +// Add_sh appends 'sh' operand to the content stream: +// Paints the shape and colour shading described by a shading dictionary specified by `name`, +// subject to the current clipping path // -// See section 9.3 "Text State Parameters and Operators" and -// Table 105 (pp. 251-252 PDF32000_2008). -func (_dccc *ContentCreator )Add_TL (leading float64 )*ContentCreator {_cc :=ContentStreamOperation {};_cc .Operand ="\u0054\u004c";_cc .Params =_deaf ([]float64 {leading });_dccc ._afa =append (_dccc ._afa ,&_cc );return _dccc ;}; +// See section 8.7.4 "Shading Patterns" and Table 77 (p. 190 PDF32000_2008). +func (_cbca *ContentCreator )Add_sh (name _dd .PdfObjectName )*ContentCreator {_bgg :=ContentStreamOperation {};_bgg .Operand ="\u0073\u0068";_bgg .Params =_adbc ([]_dd .PdfObjectName {name });_cbca ._bg =append (_cbca ._bg ,&_bgg );return _cbca ;};func _ccda (_gba *ContentStreamInlineImage ,_dcc *_dd .PdfObjectDictionary )(*_dd .FlateEncoder ,error ){_cde :=_dd .NewFlateEncoder (); +if _gba ._feaga !=nil {_cde .SetImage (_gba ._feaga );};if _dcc ==nil {_cbbe :=_gba .DecodeParms ;if _cbbe !=nil {_ege ,_cfaf :=_dd .GetDict (_cbbe );if !_cfaf {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079 \u0028%\u0054\u0029",_cbbe ); +return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};_dcc =_ege ;};};if _dcc ==nil {return _cde ,nil ;};_db .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_dcc .String ()); +_bbbd :=_dcc .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr");if _bbbd ==nil {_db .Log .Debug ("E\u0072\u0072o\u0072\u003a\u0020\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0066\u0072\u006f\u006d\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073 \u002d\u0020\u0043\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020\u0077\u0069t\u0068\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u00281\u0029"); +}else {_bef ,_fgf :=_bbbd .(*_dd .PdfObjectInteger );if !_fgf {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_bbbd ); +return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_cde .Predictor =int (*_bef );};_bbbd =_dcc .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +if _bbbd !=nil {_dga ,_gdg :=_bbbd .(*_dd .PdfObjectInteger );if !_gdg {_db .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +return nil ,_ag .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_cde .BitsPerComponent =int (*_dga );};if _cde .Predictor > 1{_cde .Columns =1;_bbbd =_dcc .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"); +if _bbbd !=nil {_eec ,_cba :=_bbbd .(*_dd .PdfObjectInteger );if !_cba {return nil ,_ag .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_cde .Columns =int (*_eec ); +};_cde .Colors =1;_geg :=_dcc .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _geg !=nil {_ccea ,_cdge :=_geg .(*_dd .PdfObjectInteger );if !_cdge {return nil ,_ag .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); +};_cde .Colors =int (*_ccea );};};return _cde ,nil ;}; -// ExtractText parses and extracts all text data in content streams and returns as a string. -// Does not take into account Encoding table, the output is simply the character codes. +// Add_B appends 'B' operand to the content stream: +// Fill and then stroke the path (nonzero winding number rule). // -// Deprecated: More advanced text extraction is offered in package extractor with character encoding support. -func (_geb *ContentStreamParser )ExtractText ()(string ,error ){_gad ,_bgc :=_geb .Parse ();if _bgc !=nil {return "",_bgc ;};_aa :=false ;_bc ,_ecgd :=float64 (-1),float64 (-1);_bd :="";for _ ,_dbg :=range *_gad {if _dbg .Operand =="\u0042\u0054"{_aa =true ; -}else if _dbg .Operand =="\u0045\u0054"{_aa =false ;};if _dbg .Operand =="\u0054\u0064"||_dbg .Operand =="\u0054\u0044"||_dbg .Operand =="\u0054\u002a"{_bd +="\u000a";};if _dbg .Operand =="\u0054\u006d"{if len (_dbg .Params )!=6{continue ;};_ce ,_aae :=_dbg .Params [4].(*_ea .PdfObjectFloat ); -if !_aae {_fg ,_ece :=_dbg .Params [4].(*_ea .PdfObjectInteger );if !_ece {continue ;};_ce =_ea .MakeFloat (float64 (*_fg ));};_bf ,_aae :=_dbg .Params [5].(*_ea .PdfObjectFloat );if !_aae {_aab ,_eb :=_dbg .Params [5].(*_ea .PdfObjectInteger );if !_eb {continue ; -};_bf =_ea .MakeFloat (float64 (*_aab ));};if _ecgd ==-1{_ecgd =float64 (*_bf );}else if _ecgd > float64 (*_bf ){_bd +="\u000a";_bc =float64 (*_ce );_ecgd =float64 (*_bf );continue ;};if _bc ==-1{_bc =float64 (*_ce );}else if _bc < float64 (*_ce ){_bd +="\u0009"; -_bc =float64 (*_ce );};};if _aa &&_dbg .Operand =="\u0054\u004a"{if len (_dbg .Params )< 1{continue ;};_gcc ,_ca :=_dbg .Params [0].(*_ea .PdfObjectArray );if !_ca {return "",_db .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0070\u0061r\u0061\u006d\u0065\u0074\u0065\u0072\u0020\u0074y\u0070\u0065\u002c\u0020\u006e\u006f\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025\u0054\u0029",_dbg .Params [0]); -};for _ ,_gde :=range _gcc .Elements (){switch _abf :=_gde .(type ){case *_ea .PdfObjectString :_bd +=_abf .Str ();case *_ea .PdfObjectFloat :if *_abf < -100{_bd +="\u0020";};case *_ea .PdfObjectInteger :if *_abf < -100{_bd +="\u0020";};};};}else if _aa &&_dbg .Operand =="\u0054\u006a"{if len (_dbg .Params )< 1{continue ; -};_dd ,_aff :=_dbg .Params [0].(*_ea .PdfObjectString );if !_aff {return "",_db .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006de\u0074\u0065\u0072\u0020\u0074\u0079p\u0065\u002c\u0020\u006e\u006f\u0074\u0020\u0073\u0074\u0072\u0069\u006e\u0067 \u0028\u0025\u0054\u0029",_dbg .Params [0]); -};_bd +=_dd .Str ();};};return _bd ,nil ;}; +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_gcb *ContentCreator )Add_B ()*ContentCreator {_bdf :=ContentStreamOperation {};_bdf .Operand ="\u0042";_gcb ._bg =append (_gcb ._bg ,&_bdf );return _gcb ;}; -// HasUnclosedQ checks if all the `q` operator is properly closed by `Q` operator. -func (_dc *ContentStreamOperations )HasUnclosedQ ()bool {_gca :=0;for _ ,_ga :=range *_dc {if _ga .Operand =="\u0071"{_gca ++;}else if _ga .Operand =="\u0051"{_gca --;};};return _gca !=0;}; +// ContentStreamProcessor defines a data structure and methods for processing a content stream, keeping track of the +// current graphics state, and allowing external handlers to define their own functions as a part of the processing, +// for example rendering or extracting certain information. +type ContentStreamProcessor struct{_cee GraphicStateStack ;_aac []*ContentStreamOperation ;_gea GraphicsState ;_efbe []handlerEntry ;_dag int ;}; -// Add_SCN_pattern appends 'SCN' operand to the content stream for pattern `name`: -// SCN with name attribute (for pattern). Syntax: c1 ... cn name SCN. +// Add_Tj appends 'Tj' operand to the content stream: +// Show a text string. // -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_ffa *ContentCreator )Add_SCN_pattern (name _ea .PdfObjectName ,c ...float64 )*ContentCreator {_fegb :=ContentStreamOperation {};_fegb .Operand ="\u0053\u0043\u004e";_fegb .Params =_deaf (c );_fegb .Params =append (_fegb .Params ,_ea .MakeName (string (name ))); -_ffa ._afa =append (_ffa ._afa ,&_fegb );return _ffa ;}; +// See section 9.4.3 "Text Showing Operators" and +// Table 209 (pp. 258-259 PDF32000_2008). +func (_egb *ContentCreator )Add_Tj (textstr _dd .PdfObjectString )*ContentCreator {_bbgga :=ContentStreamOperation {};_bbgga .Operand ="\u0054\u006a";_bbgga .Params =_gab ([]_dd .PdfObjectString {textstr });_egb ._bg =append (_egb ._bg ,&_bbgga );return _egb ; +}; -// Add_W_starred appends 'W*' operand to the content stream: -// Modify the current clipping path by intersecting with the current path (even odd rule). +// Add_l adds 'l' operand to the content stream: +// Append a straight line segment from the current point to (x,y). // -// See section 8.5.4 "Clipping Path Operators" and Table 61 (p. 146 PDF32000_2008). -func (_caf *ContentCreator )Add_W_starred ()*ContentCreator {_dgc :=ContentStreamOperation {};_dgc .Operand ="\u0057\u002a";_caf ._afa =append (_caf ._afa ,&_dgc );return _caf ;}; +// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). +func (_ebc *ContentCreator )Add_l (x ,y float64 )*ContentCreator {_ebg :=ContentStreamOperation {};_ebg .Operand ="\u006c";_ebg .Params =_bdce ([]float64 {x ,y });_ebc ._bg =append (_ebc ._bg ,&_ebg );return _ebc ;};func _acce (_gadf string )bool {_ ,_fgbc :=_ecdd [_gadf ]; +return _fgbc }; -// Add_Q adds 'Q' operand to the content stream: Pops the most recently stored state from the stack. +// Add_ri adds 'ri' operand to the content stream, which sets the color rendering intent. // // See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_bcf *ContentCreator )Add_Q ()*ContentCreator {_feg :=ContentStreamOperation {};_feg .Operand ="\u0051";_bcf ._afa =append (_bcf ._afa ,&_feg );return _bcf ;}; +func (_afb *ContentCreator )Add_ri (intent _dd .PdfObjectName )*ContentCreator {_faf :=ContentStreamOperation {};_faf .Operand ="\u0072\u0069";_faf .Params =_adbc ([]_dd .PdfObjectName {intent });_afb ._bg =append (_afb ._bg ,&_faf );return _afb ;};func (_gcbd *ContentStreamProcessor )handleCommand_k (_dccff *ContentStreamOperation ,_gda *_ba .PdfPageResources )error {_fgag :=_ba .NewPdfColorspaceDeviceCMYK (); +if len (_dccff .Params )!=_fgag .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_dccff .Params ),_fgag );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};_accc ,_fced :=_fgag .ColorFromPdfObjects (_dccff .Params );if _fced !=nil {return _fced ;};_gcbd ._gea .ColorspaceNonStroking =_fgag ;_gcbd ._gea .ColorNonStroking =_accc ;return nil ;}; -// Add_s appends 's' operand to the content stream: Close and stroke the path. +// Add_f_starred appends 'f*' operand to the content stream. +// f*: Fill the path using the even-odd rule to determine fill region. // // See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_bdd *ContentCreator )Add_s ()*ContentCreator {_fbfd :=ContentStreamOperation {};_fbfd .Operand ="\u0073";_bdd ._afa =append (_bdd ._afa ,&_fbfd );return _bdd ;};func (_abbcg *ContentStreamInlineImage )toImageBase (_aea *_ge .PdfPageResources )(*_eeg .ImageBase ,error ){if _abbcg ._fad !=nil {return _abbcg ._fad ,nil ; -};_abc :=_eeg .ImageBase {};if _abbcg .Height ==nil {return nil ,_f .New ("\u0068e\u0069\u0067\u0068\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};_accg ,_bdag :=_abbcg .Height .(*_ea .PdfObjectInteger ); -if !_bdag {return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0068e\u0069\u0067\u0068\u0074");};_abc .Height =int (*_accg );if _abbcg .Width ==nil {return nil ,_f .New ("\u0077\u0069\u0064th\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -};_afd ,_bdag :=_abbcg .Width .(*_ea .PdfObjectInteger );if !_bdag {return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0077\u0069\u0064\u0074\u0068");};_abc .Width =int (*_afd );_fdbe ,_eccef :=_abbcg .IsMask ();if _eccef !=nil {return nil ,_eccef ; -};if _fdbe {_abc .BitsPerComponent =1;_abc .ColorComponents =1;}else {if _abbcg .BitsPerComponent ==nil {_ecg .Log .Debug ("\u0049\u006el\u0069\u006e\u0065\u0020\u0042\u0069\u0074\u0073\u0020\u0070\u0065\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u002d\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u0038"); -_abc .BitsPerComponent =8;}else {_cdc ,_bdff :=_abbcg .BitsPerComponent .(*_ea .PdfObjectInteger );if !_bdff {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0062\u0069\u0074\u0073 p\u0065\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u0076al\u0075\u0065,\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0054",_abbcg .BitsPerComponent ); -return nil ,_f .New ("\u0042\u0050\u0043\u0020\u0054\u0079\u0070\u0065\u0020e\u0072\u0072\u006f\u0072");};_abc .BitsPerComponent =int (*_cdc );};if _abbcg .ColorSpace !=nil {_agg ,_dba :=_abbcg .GetColorSpace (_aea );if _dba !=nil {return nil ,_dba ;}; -_abc .ColorComponents =_agg .GetNumComponents ();}else {_ecg .Log .Debug ("\u0049\u006el\u0069\u006e\u0065\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006e\u006f\u0074\u0020\u0073p\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u002d\u0020\u0061\u0073\u0073\u0075m\u0069\u006eg\u0020\u0031\u0020\u0063o\u006c\u006f\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -_abc .ColorComponents =1;};};if _cde ,_eace :=_ea .GetArray (_abbcg .Decode );_eace {_abc .Decode ,_eccef =_cde .ToFloat64Array ();if _eccef !=nil {return nil ,_eccef ;};};_abbcg ._fad =&_abc ;return _abbcg ._fad ,nil ;}; +func (_eg *ContentCreator )Add_f_starred ()*ContentCreator {_gfc :=ContentStreamOperation {};_gfc .Operand ="\u0066\u002a";_eg ._bg =append (_eg ._bg ,&_gfc );return _eg ;}; -// Add_BMC appends 'BMC' operand to the content stream: -// Begins a marked-content sequence terminated by a balancing EMC operator. -// `tag` shall be a name object indicating the role or significance of -// the sequence. -// -// See section 14.6 "Marked Content" and Table 320 (p. 561 PDF32000_2008). -func (_abeb *ContentCreator )Add_BMC (tag _ea .PdfObjectName )*ContentCreator {_gff :=ContentStreamOperation {};_gff .Operand ="\u0042\u004d\u0043";_gff .Params =_gbg ([]_ea .PdfObjectName {tag });_abeb ._afa =append (_abeb ._afa ,&_gff );return _abeb ; -}; +// ContentStreamParser represents a content stream parser for parsing content streams in PDFs. +type ContentStreamParser struct{_efe *_af .Reader };func _bgga (_gede []int64 )[]_dd .PdfObject {var _cbdc []_dd .PdfObject ;for _ ,_addc :=range _gede {_cbdc =append (_cbdc ,_dd .MakeInteger (_addc ));};return _cbdc ;}; -// Add_Ts appends 'Ts' operand to the content stream: -// Set text rise. +// Add_BT appends 'BT' operand to the content stream: +// Begin text. // -// See section 9.3 "Text State Parameters and Operators" and -// Table 105 (pp. 251-252 PDF32000_2008). -func (_fba *ContentCreator )Add_Ts (rise float64 )*ContentCreator {_dgb :=ContentStreamOperation {};_dgb .Operand ="\u0054\u0073";_dgb .Params =_deaf ([]float64 {rise });_fba ._afa =append (_fba ._afa ,&_dgb );return _fba ;}; - -// NewInlineImageFromImage makes a new content stream inline image object from an image. -func NewInlineImageFromImage (img _ge .Image ,encoder _ea .StreamEncoder )(*ContentStreamInlineImage ,error ){if encoder ==nil {encoder =_ea .NewRawEncoder ();};encoder .UpdateParams (img .GetParamsDict ());_egc :=ContentStreamInlineImage {};if img .ColorComponents ==1{_egc .ColorSpace =_ea .MakeName ("\u0047"); -}else if img .ColorComponents ==3{_egc .ColorSpace =_ea .MakeName ("\u0052\u0047\u0042");}else if img .ColorComponents ==4{_egc .ColorSpace =_ea .MakeName ("\u0043\u004d\u0059\u004b");}else {_ecg .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006db\u0065\u0072\u0020o\u0066\u0020c\u006f\u006c\u006f\u0072\u0020\u0063o\u006dpo\u006e\u0065\u006e\u0074\u0073\u0020\u0066\u006f\u0072\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0064",img .ColorComponents ); -return nil ,_f .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072 \u006ff\u0020c\u006fl\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073");};_egc .BitsPerComponent =_ea .MakeInteger (img .BitsPerComponent ); -_egc .Width =_ea .MakeInteger (img .Width );_egc .Height =_ea .MakeInteger (img .Height );_cbf ,_dbga :=encoder .EncodeBytes (img .Data );if _dbga !=nil {return nil ,_dbga ;};_egc ._ebb =_cbf ;_fbe :=encoder .GetFilterName ();if _fbe !=_ea .StreamEncodingFilterNameRaw {_egc .Filter =_ea .MakeName (_fbe ); -};return &_egc ,nil ;}; +// See section 9.4 "Text Objects" and Table 107 (p. 256 PDF32000_2008). +func (_dfd *ContentCreator )Add_BT ()*ContentCreator {_cbcf :=ContentStreamOperation {};_cbcf .Operand ="\u0042\u0054";_dfd ._bg =append (_dfd ._bg ,&_cbcf );return _dfd ;}; -// Process processes the entire list of operations. Maintains the graphics state that is passed to any -// handlers that are triggered during processing (either on specific operators or all). -func (_bcge *ContentStreamProcessor )Process (resources *_ge .PdfPageResources )error {_bcge ._ggfd .ColorspaceStroking =_ge .NewPdfColorspaceDeviceGray ();_bcge ._ggfd .ColorspaceNonStroking =_ge .NewPdfColorspaceDeviceGray ();_bcge ._ggfd .ColorStroking =_ge .NewPdfColorDeviceGray (0); -_bcge ._ggfd .ColorNonStroking =_ge .NewPdfColorDeviceGray (0);_bcge ._ggfd .CTM =_eg .IdentityMatrix ();for _ ,_dgbe :=range _bcge ._dbac {var _afdc error ;switch _dgbe .Operand {case "\u0071":_bcge ._edaf .Push (_bcge ._ggfd );case "\u0051":if len (_bcge ._edaf )==0{_ecg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0060\u0051\u0060\u0020\u006f\u0070e\u0072\u0061\u0074\u006f\u0072\u002e\u0020\u0047\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0020\u0073\u0074\u0061\u0074\u0065 \u0073\u0074\u0061\u0063\u006b\u0020\u0069\u0073\u0020\u0065\u006d\u0070\u0074\u0079.\u0020\u0053\u006bi\u0070\u0070\u0069\u006e\u0067\u002e"); -continue ;};_bcge ._ggfd =_bcge ._edaf .Pop ();case "\u0043\u0053":_afdc =_bcge .handleCommand_CS (_dgbe ,resources );case "\u0063\u0073":_afdc =_bcge .handleCommand_cs (_dgbe ,resources );case "\u0053\u0043":_afdc =_bcge .handleCommand_SC (_dgbe ,resources ); -case "\u0053\u0043\u004e":_afdc =_bcge .handleCommand_SCN (_dgbe ,resources );case "\u0073\u0063":_afdc =_bcge .handleCommand_sc (_dgbe ,resources );case "\u0073\u0063\u006e":_afdc =_bcge .handleCommand_scn (_dgbe ,resources );case "\u0047":_afdc =_bcge .handleCommand_G (_dgbe ,resources ); -case "\u0067":_afdc =_bcge .handleCommand_g (_dgbe ,resources );case "\u0052\u0047":_afdc =_bcge .handleCommand_RG (_dgbe ,resources );case "\u0072\u0067":_afdc =_bcge .handleCommand_rg (_dgbe ,resources );case "\u004b":_afdc =_bcge .handleCommand_K (_dgbe ,resources ); -case "\u006b":_afdc =_bcge .handleCommand_k (_dgbe ,resources );case "\u0063\u006d":_afdc =_bcge .handleCommand_cm (_dgbe ,resources );};if _afdc !=nil {_ecg .Log .Debug ("\u0050\u0072\u006f\u0063\u0065\u0073s\u006f\u0072\u0020\u0068\u0061\u006e\u0064\u006c\u0069\u006e\u0067\u0020\u0065r\u0072\u006f\u0072\u0020\u0028\u0025\u0073)\u003a\u0020\u0025\u0076",_dgbe .Operand ,_afdc ); -_ecg .Log .Debug ("\u004f\u0070\u0065r\u0061\u006e\u0064\u003a\u0020\u0025\u0023\u0076",_dgbe .Operand );return _afdc ;};for _ ,_gadag :=range _bcge ._ccab {var _fcffg error ;if _gadag .Condition .All (){_fcffg =_gadag .Handler (_dgbe ,_bcge ._ggfd ,resources ); -}else if _gadag .Condition .Operand ()&&_dgbe .Operand ==_gadag .Operand {_fcffg =_gadag .Handler (_dgbe ,_bcge ._ggfd ,resources );};if _fcffg !=nil {_ecg .Log .Debug ("P\u0072\u006f\u0063\u0065\u0073\u0073o\u0072\u0020\u0068\u0061\u006e\u0064\u006c\u0065\u0072 \u0065\u0072\u0072o\u0072:\u0020\u0025\u0076",_fcffg ); -return _fcffg ;};};};return nil ;}; +// Operand returns true if `hce` is equivalent to HandlerConditionEnumOperand. +func (_dfbf HandlerConditionEnum )Operand ()bool {return _dfbf ==HandlerConditionEnumOperand }; -// Add_cs appends 'cs' operand to the content stream: -// Same as CS but for non-stroking operations. +// Add_k appends 'k' operand to the content stream: +// Same as K but used for nonstroking operations. // // See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_fffe *ContentCreator )Add_cs (name _ea .PdfObjectName )*ContentCreator {_cefa :=ContentStreamOperation {};_cefa .Operand ="\u0063\u0073";_cefa .Params =_gbg ([]_ea .PdfObjectName {name });_fffe ._afa =append (_fffe ._afa ,&_cefa );return _fffe ; -};func _dca (_cdg *ContentStreamInlineImage ,_age *_ea .PdfObjectDictionary )(*_ea .LZWEncoder ,error ){_fc :=_ea .NewLZWEncoder ();if _age ==nil {if _cdg .DecodeParms !=nil {_edgf ,_efb :=_ea .GetDict (_cdg .DecodeParms );if !_efb {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079 \u0028%\u0054\u0029",_cdg .DecodeParms ); -return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};_age =_edgf ;};};if _age ==nil {return _fc ,nil ;};_cebg :=_age .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065"); -if _cebg !=nil {_fcb ,_fgg :=_cebg .(*_ea .PdfObjectInteger );if !_fgg {_ecg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a \u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u006e\u0075\u006d\u0065\u0072i\u0063 \u0028\u0025\u0054\u0029",_cebg ); -return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065");};if *_fcb !=0&&*_fcb !=1{return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0076\u0061\u006c\u0075e\u0020\u0028\u006e\u006f\u0074 \u0030\u0020o\u0072\u0020\u0031\u0029"); -};_fc .EarlyChange =int (*_fcb );}else {_fc .EarlyChange =1;};_cebg =_age .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr");if _cebg !=nil {_fdd ,_egfb :=_cebg .(*_ea .PdfObjectInteger );if !_egfb {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_cebg ); -return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_fc .Predictor =int (*_fdd );};_cebg =_age .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -if _cebg !=nil {_abbc ,_bba :=_cebg .(*_ea .PdfObjectInteger );if !_bba {_ecg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -return nil ,_db .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_fc .BitsPerComponent =int (*_abbc );};if _fc .Predictor > 1{_fc .Columns =1;_cebg =_age .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"); -if _cebg !=nil {_cae ,_cefcb :=_cebg .(*_ea .PdfObjectInteger );if !_cefcb {return nil ,_db .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_fc .Columns =int (*_cae ); -};_fc .Colors =1;_cebg =_age .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _cebg !=nil {_dea ,_acf :=_cebg .(*_ea .PdfObjectInteger );if !_acf {return nil ,_db .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); -};_fc .Colors =int (*_dea );};};_ecg .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_age .String ());return _fc ,nil ;}; +func (_deg *ContentCreator )Add_k (c ,m ,y ,k float64 )*ContentCreator {_gaa :=ContentStreamOperation {};_gaa .Operand ="\u006b";_gaa .Params =_bdce ([]float64 {c ,m ,y ,k });_deg ._bg =append (_deg ._bg ,&_gaa );return _deg ;};var _ecdd =map[string ]struct{}{"\u0062":struct{}{},"\u0042":struct{}{},"\u0062\u002a":struct{}{},"\u0042\u002a":struct{}{},"\u0042\u0044\u0043":struct{}{},"\u0042\u0049":struct{}{},"\u0042\u004d\u0043":struct{}{},"\u0042\u0054":struct{}{},"\u0042\u0058":struct{}{},"\u0063":struct{}{},"\u0063\u006d":struct{}{},"\u0043\u0053":struct{}{},"\u0063\u0073":struct{}{},"\u0064":struct{}{},"\u0064\u0030":struct{}{},"\u0064\u0031":struct{}{},"\u0044\u006f":struct{}{},"\u0044\u0050":struct{}{},"\u0045\u0049":struct{}{},"\u0045\u004d\u0043":struct{}{},"\u0045\u0054":struct{}{},"\u0045\u0058":struct{}{},"\u0066":struct{}{},"\u0046":struct{}{},"\u0066\u002a":struct{}{},"\u0047":struct{}{},"\u0067":struct{}{},"\u0067\u0073":struct{}{},"\u0068":struct{}{},"\u0069":struct{}{},"\u0049\u0044":struct{}{},"\u006a":struct{}{},"\u004a":struct{}{},"\u004b":struct{}{},"\u006b":struct{}{},"\u006c":struct{}{},"\u006d":struct{}{},"\u004d":struct{}{},"\u004d\u0050":struct{}{},"\u006e":struct{}{},"\u0071":struct{}{},"\u0051":struct{}{},"\u0072\u0065":struct{}{},"\u0052\u0047":struct{}{},"\u0072\u0067":struct{}{},"\u0072\u0069":struct{}{},"\u0073":struct{}{},"\u0053":struct{}{},"\u0053\u0043":struct{}{},"\u0073\u0063":struct{}{},"\u0053\u0043\u004e":struct{}{},"\u0073\u0063\u006e":struct{}{},"\u0073\u0068":struct{}{},"\u0054\u002a":struct{}{},"\u0054\u0063":struct{}{},"\u0054\u0064":struct{}{},"\u0054\u0044":struct{}{},"\u0054\u0066":struct{}{},"\u0054\u006a":struct{}{},"\u0054\u004a":struct{}{},"\u0054\u004c":struct{}{},"\u0054\u006d":struct{}{},"\u0054\u0072":struct{}{},"\u0054\u0073":struct{}{},"\u0054\u0077":struct{}{},"\u0054\u007a":struct{}{},"\u0076":struct{}{},"\u0077":struct{}{},"\u0057":struct{}{},"\u0057\u002a":struct{}{},"\u0079":struct{}{},"\u0027":struct{}{},"\u0022":struct{}{}}; -// NewContentStreamParser creates a new instance of the content stream parser from an input content -// stream string. -func NewContentStreamParser (contentStr string )*ContentStreamParser {_dfff :=ContentStreamParser {};contentStr =string (_gda .ReplaceAll ([]byte (contentStr ),[]byte ("\u002f")));_acd :=_ec .NewBufferString (contentStr +"\u000a");_dfff ._edbd =_ee .NewReader (_acd ); -return &_dfff ;}; -// Add_Td appends 'Td' operand to the content stream: -// Move to start of next line with offset (`tx`, `ty`). -// -// See section 9.4.2 "Text Positioning Operators" and -// Table 108 (pp. 257-258 PDF32000_2008). -func (_bad *ContentCreator )Add_Td (tx ,ty float64 )*ContentCreator {_ggg :=ContentStreamOperation {};_ggg .Operand ="\u0054\u0064";_ggg .Params =_deaf ([]float64 {tx ,ty });_bad ._afa =append (_bad ._afa ,&_ggg );return _bad ;};func (_aggg *ContentStreamProcessor )handleCommand_G (_daba *ContentStreamOperation ,_aag *_ge .PdfPageResources )error {_fccdb :=_ge .NewPdfColorspaceDeviceGray (); -if len (_daba .Params )!=_fccdb .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_daba .Params ),_fccdb );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_bddg ,_cccb :=_fccdb .ColorFromPdfObjects (_daba .Params );if _cccb !=nil {return _cccb ;};_aggg ._ggfd .ColorspaceStroking =_fccdb ;_aggg ._ggfd .ColorStroking =_bddg ;return nil ;}; +// Translate applies a simple x-y translation to the transformation matrix. +func (_be *ContentCreator )Translate (tx ,ty float64 )*ContentCreator {return _be .Add_cm (1,0,0,1,tx ,ty );};var _agbd =_g .MustCompile ("\u005e\u002f\u007b\u0032\u002c\u007d");func _adbc (_aceee []_dd .PdfObjectName )[]_dd .PdfObject {var _gceb []_dd .PdfObject ; +for _ ,_gceg :=range _aceee {_gceb =append (_gceb ,_dd .MakeName (string (_gceg )));};return _gceb ;};func (_dbcde *ContentStreamProcessor )getColorspace (_cdeb string ,_cdfa *_ba .PdfPageResources )(_ba .PdfColorspace ,error ){switch _cdeb {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":return _ba .NewPdfColorspaceDeviceGray (),nil ; +case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":return _ba .NewPdfColorspaceDeviceRGB (),nil ;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return _ba .NewPdfColorspaceDeviceCMYK (),nil ;case "\u0050a\u0074\u0074\u0065\u0072\u006e":return _ba .NewPdfColorspaceSpecialPattern (),nil ; +};_gcg ,_bcgc :=_cdfa .GetColorspaceByName (_dd .PdfObjectName (_cdeb ));if _bcgc {return _gcg ,nil ;};switch _cdeb {case "\u0043a\u006c\u0047\u0072\u0061\u0079":return _ba .NewPdfColorspaceCalGray (),nil ;case "\u0043\u0061\u006c\u0052\u0047\u0042":return _ba .NewPdfColorspaceCalRGB (),nil ; +case "\u004c\u0061\u0062":return _ba .NewPdfColorspaceLab (),nil ;};_db .Log .Debug ("\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063e\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074\u0065\u0064\u003a\u0020\u0025\u0073",_cdeb ); +return nil ,_ag .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065:\u0020\u0025\u0073",_cdeb );}; -// Add_RG appends 'RG' operand to the content stream: -// Set the stroking colorspace to DeviceRGB and sets the r,g,b colors (0-1 each). -// -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_agdg *ContentCreator )Add_RG (r ,g ,b float64 )*ContentCreator {_dcc :=ContentStreamOperation {};_dcc .Operand ="\u0052\u0047";_dcc .Params =_deaf ([]float64 {r ,g ,b });_agdg ._afa =append (_agdg ._afa ,&_dcc );return _agdg ;}; +// All returns true if `hce` is equivalent to HandlerConditionEnumAllOperands. +func (_ffag HandlerConditionEnum )All ()bool {return _ffag ==HandlerConditionEnumAllOperands };func (_egd *ContentStreamParser )parseArray ()(*_dd .PdfObjectArray ,error ){_bdfa :=_dd .MakeArray ();_egd ._efe .ReadByte ();for {_egd .skipSpaces ();_badb ,_ggg :=_egd ._efe .Peek (1); +if _ggg !=nil {return _bdfa ,_ggg ;};if _badb [0]==']'{_egd ._efe .ReadByte ();break ;};_gcf ,_ ,_ggg :=_egd .parseObject ();if _ggg !=nil {return _bdfa ,_ggg ;};_bdfa .Append (_gcf );};return _bdfa ,nil ;}; -// Add_Tj appends 'Tj' operand to the content stream: -// Show a text string. +// Add_b_starred appends 'b*' operand to the content stream: +// Close, fill and then stroke the path (even-odd winding number rule). // -// See section 9.4.3 "Text Showing Operators" and -// Table 209 (pp. 258-259 PDF32000_2008). -func (_gdb *ContentCreator )Add_Tj (textstr _ea .PdfObjectString )*ContentCreator {_gfcd :=ContentStreamOperation {};_gfcd .Operand ="\u0054\u006a";_gfcd .Params =_gdbe ([]_ea .PdfObjectString {textstr });_gdb ._afa =append (_gdb ._afa ,&_gfcd );return _gdb ; -}; - -// IsMask checks if an image is a mask. -// The image mask entry in the image dictionary specifies that the image data shall be used as a stencil -// mask for painting in the current color. The mask data is 1bpc, grayscale. -func (_fadf *ContentStreamInlineImage )IsMask ()(bool ,error ){if _fadf .ImageMask !=nil {_efd ,_feb :=_fadf .ImageMask .(*_ea .PdfObjectBool );if !_feb {_ecg .Log .Debug ("\u0049m\u0061\u0067\u0065\u0020\u006d\u0061\u0073\u006b\u0020\u006e\u006ft\u0020\u0061\u0020\u0062\u006f\u006f\u006c\u0065\u0061\u006e"); -return false ,_f .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065");};return bool (*_efd ),nil ;};return false ,nil ;};func (_bbaa *ContentStreamParser )parseArray ()(*_ea .PdfObjectArray ,error ){_deea :=_ea .MakeArray (); -_bbaa ._edbd .ReadByte ();for {_bbaa .skipSpaces ();_abeba ,_fccd :=_bbaa ._edbd .Peek (1);if _fccd !=nil {return _deea ,_fccd ;};if _abeba [0]==']'{_bbaa ._edbd .ReadByte ();break ;};_bdfc ,_ ,_fccd :=_bbaa .parseObject ();if _fccd !=nil {return _deea ,_fccd ; -};_deea .Append (_bdfc );};return _deea ,nil ;}; - -// SetStrokingColor sets the stroking `color` where color can be one of -// PdfColorDeviceGray, PdfColorDeviceRGB, or PdfColorDeviceCMYK. -func (_aeg *ContentCreator )SetStrokingColor (color _ge .PdfColor )*ContentCreator {switch _dcd :=color .(type ){case *_ge .PdfColorDeviceGray :_aeg .Add_G (_dcd .Val ());case *_ge .PdfColorDeviceRGB :_aeg .Add_RG (_dcd .R (),_dcd .G (),_dcd .B ());case *_ge .PdfColorDeviceCMYK :_aeg .Add_K (_dcd .C (),_dcd .M (),_dcd .Y (),_dcd .K ()); -case *_ge .PdfColorPatternType2 :_aeg .Add_CS (*_ea .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_aeg .Add_SCN_pattern (_dcd .PatternName );case *_ge .PdfColorPatternType3 :_aeg .Add_CS (*_ea .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e")); -_aeg .Add_SCN_pattern (_dcd .PatternName );default:_ecg .Log .Debug ("\u0053\u0065\u0074\u0053\u0074\u0072\u006f\u006b\u0069\u006e\u0067\u0043\u006fl\u006f\u0072\u003a\u0020\u0075\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006fr\u003a\u0020\u0025\u0054",_dcd ); -};return _aeg ;}; +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_fdb *ContentCreator )Add_b_starred ()*ContentCreator {_de :=ContentStreamOperation {};_de .Operand ="\u0062\u002a";_fdb ._bg =append (_fdb ._bg ,&_de );return _fdb ;}; -// Add_w adds 'w' operand to the content stream, which sets the line width. -// -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_aed *ContentCreator )Add_w (lineWidth float64 )*ContentCreator {_eac :=ContentStreamOperation {};_eac .Operand ="\u0077";_eac .Params =_deaf ([]float64 {lineWidth });_aed ._afa =append (_aed ._afa ,&_eac );return _aed ;};func (_afg *ContentStreamParser )parseDict ()(*_ea .PdfObjectDictionary ,error ){_ecg .Log .Trace ("\u0052\u0065\u0061\u0064i\u006e\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074 \u0073t\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074\u0021"); -_fgde :=_ea .MakeDict ();_bedd ,_ :=_afg ._edbd .ReadByte ();if _bedd !='<'{return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074");};_bedd ,_ =_afg ._edbd .ReadByte ();if _bedd !='<'{return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); -};for {_afg .skipSpaces ();_dbfc ,_gcee :=_afg ._edbd .Peek (2);if _gcee !=nil {return nil ,_gcee ;};_ecg .Log .Trace ("D\u0069c\u0074\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_dbfc ),string (_dbfc ));if (_dbfc [0]=='>')&&(_dbfc [1]=='>'){_ecg .Log .Trace ("\u0045\u004f\u0046\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -_afg ._edbd .ReadByte ();_afg ._edbd .ReadByte ();break ;};_ecg .Log .Trace ("\u0050a\u0072s\u0065\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0021");_dfa ,_gcee :=_afg .parseName ();_ecg .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_dfa ); -if _gcee !=nil {_ecg .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0052e\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006ea\u006d\u0065\u0020e\u0072r\u0020\u0025\u0073",_gcee );return nil ,_gcee ;};if len (_dfa )> 4&&_dfa [len (_dfa )-4:]=="\u006e\u0075\u006c\u006c"{_begd :=_dfa [0:len (_dfa )-4]; -_ecg .Log .Trace ("\u0054\u0061\u006b\u0069n\u0067\u0020\u0063\u0061\u0072\u0065\u0020\u006f\u0066\u0020n\u0075l\u006c\u0020\u0062\u0075\u0067\u0020\u0028%\u0073\u0029",_dfa );_ecg .Log .Trace ("\u004e\u0065\u0077\u0020ke\u0079\u0020\u0022\u0025\u0073\u0022\u0020\u003d\u0020\u006e\u0075\u006c\u006c",_begd ); -_afg .skipSpaces ();_gcb ,_ :=_afg ._edbd .Peek (1);if _gcb [0]=='/'{_fgde .Set (_begd ,_ea .MakeNull ());continue ;};};_afg .skipSpaces ();_abgb ,_ ,_gcee :=_afg .parseObject ();if _gcee !=nil {return nil ,_gcee ;};_fgde .Set (_dfa ,_abgb );_ecg .Log .Trace ("\u0064\u0069\u0063\u0074\u005b\u0025\u0073\u005d\u0020\u003d\u0020\u0025\u0073",_dfa ,_abgb .String ()); -};return _fgde ,nil ;}; +// String returns `ops.Bytes()` as a string. +func (_bf *ContentStreamOperations )String ()string {return string (_bf .Bytes ())}; -// SetNonStrokingColor sets the non-stroking `color` where color can be one of -// PdfColorDeviceGray, PdfColorDeviceRGB, or PdfColorDeviceCMYK. -func (_dcf *ContentCreator )SetNonStrokingColor (color _ge .PdfColor )*ContentCreator {switch _cab :=color .(type ){case *_ge .PdfColorDeviceGray :_dcf .Add_g (_cab .Val ());case *_ge .PdfColorDeviceRGB :_dcf .Add_rg (_cab .R (),_cab .G (),_cab .B ()); -case *_ge .PdfColorDeviceCMYK :_dcf .Add_k (_cab .C (),_cab .M (),_cab .Y (),_cab .K ());case *_ge .PdfColorPatternType2 :_dcf .Add_cs (*_ea .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_dcf .Add_scn_pattern (_cab .PatternName );case *_ge .PdfColorPatternType3 :_dcf .Add_cs (*_ea .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e")); -_dcf .Add_scn_pattern (_cab .PatternName );default:_ecg .Log .Debug ("\u0053\u0065\u0074N\u006f\u006e\u0053\u0074\u0072\u006f\u006b\u0069\u006e\u0067\u0043\u006f\u006c\u006f\u0072\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020c\u006f\u006c\u006f\u0072\u003a\u0020\u0025\u0054",_cab ); -};return _dcf ;}; +// ToImage exports the inline image to Image which can be transformed or exported easily. +// Page resources are needed to look up colorspace information. +func (_bgb *ContentStreamInlineImage )ToImage (resources *_ba .PdfPageResources )(*_ba .Image ,error ){_bdcb ,_gfa :=_bgb .toImageBase (resources );if _gfa !=nil {return nil ,_gfa ;};_cgca ,_gfa :=_cfc (_bgb );if _gfa !=nil {return nil ,_gfa ;};_dfb ,_bdd :=_dd .GetDict (_bgb .DecodeParms ); +if _bdd {_cgca .UpdateParams (_dfb );};_db .Log .Trace ("\u0065n\u0063o\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076\u0020\u0025\u0054",_cgca ,_cgca );_db .Log .Trace ("\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065:\u0020\u0025\u002b\u0076",_bgb ); +_gafaa ,_gfa :=_cgca .DecodeBytes (_bgb ._ega );if _gfa !=nil {return nil ,_gfa ;};_gfgb :=&_ba .Image {Width :int64 (_bdcb .Width ),Height :int64 (_bdcb .Height ),BitsPerComponent :int64 (_bdcb .BitsPerComponent ),ColorComponents :_bdcb .ColorComponents ,Data :_gafaa }; +if len (_bdcb .Decode )> 0{for _cda :=0;_cda < len (_bdcb .Decode );_cda ++{_bdcb .Decode [_cda ]*=float64 ((int (1)<'{_cdca ._efe .ReadByte ();break ;};_dad ,_ :=_cdca ._efe .ReadByte ();if _ge .IndexByte (_dccf ,_dad )>=0{_bcg =append (_bcg ,_dad ); +};};if len (_bcg )%2==1{_bcg =append (_bcg ,'0');};_eaac ,_ :=_a .DecodeString (string (_bcg ));return _dd .MakeHexString (string (_eaac )),nil ;}; -// Add_gs adds 'gs' operand to the content stream: Set the graphics state. +// Add_h appends 'h' operand to the content stream: +// Close the current subpath by adding a line between the current position and the starting position. // -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_gac *ContentCreator )Add_gs (dictName _ea .PdfObjectName )*ContentCreator {_bcg :=ContentStreamOperation {};_bcg .Operand ="\u0067\u0073";_bcg .Params =_gbg ([]_ea .PdfObjectName {dictName });_gac ._afa =append (_gac ._afa ,&_bcg );return _gac ; -};func (_agb *ContentStreamProcessor )getInitialColor (_bcda _ge .PdfColorspace )(_ge .PdfColor ,error ){switch _dgf :=_bcda .(type ){case *_ge .PdfColorspaceDeviceGray :return _ge .NewPdfColorDeviceGray (0.0),nil ;case *_ge .PdfColorspaceDeviceRGB :return _ge .NewPdfColorDeviceRGB (0.0,0.0,0.0),nil ; -case *_ge .PdfColorspaceDeviceCMYK :return _ge .NewPdfColorDeviceCMYK (0.0,0.0,0.0,1.0),nil ;case *_ge .PdfColorspaceCalGray :return _ge .NewPdfColorCalGray (0.0),nil ;case *_ge .PdfColorspaceCalRGB :return _ge .NewPdfColorCalRGB (0.0,0.0,0.0),nil ;case *_ge .PdfColorspaceLab :_dgea :=0.0; -_gcea :=0.0;_fade :=0.0;if _dgf .Range [0]> 0{_dgea =_dgf .Range [0];};if _dgf .Range [2]> 0{_gcea =_dgf .Range [2];};return _ge .NewPdfColorLab (_dgea ,_gcea ,_fade ),nil ;case *_ge .PdfColorspaceICCBased :if _dgf .Alternate ==nil {_ecg .Log .Trace ("\u0049\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065d\u0020-\u0020\u0061\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0066\u0061\u006c\u006c\u0020\u0062a\u0063\u006b\u0020\u0028\u004e\u0020\u003d\u0020\u0025\u0064\u0029",_dgf .N ); -if _dgf .N ==1{_ecg .Log .Trace ("\u0046\u0061\u006c\u006c\u0069\u006e\u0067\u0020\u0062\u0061\u0063k\u0020\u0074\u006f\u0020\u0044\u0065\u0076\u0069\u0063\u0065G\u0072\u0061\u0079");return _agb .getInitialColor (_ge .NewPdfColorspaceDeviceGray ());}else if _dgf .N ==3{_ecg .Log .Trace ("\u0046a\u006c\u006c\u0069\u006eg\u0020\u0062\u0061\u0063\u006b \u0074o\u0020D\u0065\u0076\u0069\u0063\u0065\u0052\u0047B"); -return _agb .getInitialColor (_ge .NewPdfColorspaceDeviceRGB ());}else if _dgf .N ==4{_ecg .Log .Trace ("\u0046\u0061\u006c\u006c\u0069\u006e\u0067\u0020\u0062\u0061\u0063k\u0020\u0074\u006f\u0020\u0044\u0065\u0076\u0069\u0063\u0065C\u004d\u0059\u004b"); -return _agb .getInitialColor (_ge .NewPdfColorspaceDeviceCMYK ());}else {return nil ,_f .New ("a\u006c\u0074\u0065\u0072\u006e\u0061t\u0065\u0020\u0073\u0070\u0061\u0063e\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0049C\u0043"); -};};return _agb .getInitialColor (_dgf .Alternate );case *_ge .PdfColorspaceSpecialIndexed :if _dgf .Base ==nil {return nil ,_f .New ("\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0062\u0061\u0073e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069f\u0069\u0065\u0064"); -};return _agb .getInitialColor (_dgf .Base );case *_ge .PdfColorspaceSpecialSeparation :if _dgf .AlternateSpace ==nil {return nil ,_f .New ("\u0061\u006ct\u0065\u0072\u006e\u0061\u0074\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069fi\u0065\u0064"); -};return _agb .getInitialColor (_dgf .AlternateSpace );case *_ge .PdfColorspaceDeviceN :if _dgf .AlternateSpace ==nil {return nil ,_f .New ("\u0061\u006ct\u0065\u0072\u006e\u0061\u0074\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069fi\u0065\u0064"); -};return _agb .getInitialColor (_dgf .AlternateSpace );case *_ge .PdfColorspaceSpecialPattern :return _ge .NewPdfColorPattern (),nil ;};_ecg .Log .Debug ("Un\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065r\u006d\u0069\u006e\u0065\u0020\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0066\u006f\u0072\u0020\u0075\u006e\u006b\u006e\u006fw\u006e \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061c\u0065:\u0020\u0025T",_bcda ); -return nil ,_f .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061c\u0065");};func (_eee *ContentStreamProcessor )handleCommand_g (_efed *ContentStreamOperation ,_gdca *_ge .PdfPageResources )error {_abbb :=_ge .NewPdfColorspaceDeviceGray (); -if len (_efed .Params )!=_abbb .GetNumComponents (){_ecg .Log .Debug ("\u0049\u006e\u0076al\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072 \u006ff\u0020p\u0061r\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0067");_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_efed .Params ),_abbb ); -return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073");};_fae ,_cebd :=_abbb .ColorFromPdfObjects (_efed .Params );if _cebd !=nil {_ecg .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0068\u0061\u006e\u0064\u006c\u0065\u0043o\u006d\u006d\u0061\u006e\u0064\u005f\u0067\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061r\u0061\u006d\u0073\u002e\u0020c\u0073\u003d\u0025\u0054\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_abbb ,_efed ,_cebd ); -return _cebd ;};_eee ._ggfd .ColorspaceNonStroking =_abbb ;_eee ._ggfd .ColorNonStroking =_fae ;return nil ;};func _bfag (_ged []int64 )[]_ea .PdfObject {var _bbd []_ea .PdfObject ;for _ ,_gcbg :=range _ged {_bbd =append (_bbd ,_ea .MakeInteger (_gcbg )); -};return _bbd ;}; - -// ContentCreator is a builder for PDF content streams. -type ContentCreator struct{_afa ContentStreamOperations }; - -// Wrap ensures that the contentstream is wrapped within a balanced q ... Q expression. -func (_ecga *ContentCreator )Wrap (){_ecga ._afa .WrapIfNeeded ()}; +// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). +func (_ef *ContentCreator )Add_h ()*ContentCreator {_dfg :=ContentStreamOperation {};_dfg .Operand ="\u0068";_ef ._bg =append (_ef ._bg ,&_dfg );return _ef ;}; -// Add_CS appends 'CS' operand to the content stream: -// Set the current colorspace for stroking operations. -// -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_cef *ContentCreator )Add_CS (name _ea .PdfObjectName )*ContentCreator {_bfae :=ContentStreamOperation {};_bfae .Operand ="\u0043\u0053";_bfae .Params =_gbg ([]_ea .PdfObjectName {name });_cef ._afa =append (_cef ._afa ,&_bfae );return _cef ;}; +// NewContentStreamProcessor returns a new ContentStreamProcessor for operations `ops`. +func NewContentStreamProcessor (ops []*ContentStreamOperation )*ContentStreamProcessor {_fcfd :=ContentStreamProcessor {};_fcfd ._cee =GraphicStateStack {};_gaac :=GraphicsState {};_fcfd ._gea =_gaac ;_fcfd ._efbe =[]handlerEntry {};_fcfd ._dag =0;_fcfd ._aac =ops ; +return &_fcfd ;}; // Push pushes `gs` on the `gsStack`. -func (_cdgd *GraphicStateStack )Push (gs GraphicsState ){*_cdgd =append (*_cdgd ,gs )}; +func (_dgab *GraphicStateStack )Push (gs GraphicsState ){*_dgab =append (*_dgab ,gs )}; -// Add_n appends 'n' operand to the content stream: -// End the path without filling or stroking. +// Add_w adds 'w' operand to the content stream, which sets the line width. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_caa *ContentCreator )Add_n ()*ContentCreator {_ddc :=ContentStreamOperation {};_ddc .Operand ="\u006e";_caa ._afa =append (_caa ._afa ,&_ddc );return _caa ;}; +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_ecd *ContentCreator )Add_w (lineWidth float64 )*ContentCreator {_faa :=ContentStreamOperation {};_faa .Operand ="\u0077";_faa .Params =_bdce ([]float64 {lineWidth });_ecd ._bg =append (_ecd ._bg ,&_faa );return _ecd ;}; -// Add_scn_pattern appends 'scn' operand to the content stream for pattern `name`: -// scn with name attribute (for pattern). Syntax: c1 ... cn name scn. +// Add_J adds 'J' operand to the content stream: Set the line cap style (graphics state). // -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_gaf *ContentCreator )Add_scn_pattern (name _ea .PdfObjectName ,c ...float64 )*ContentCreator {_fbc :=ContentStreamOperation {};_fbc .Operand ="\u0073\u0063\u006e";_fbc .Params =_deaf (c );_fbc .Params =append (_fbc .Params ,_ea .MakeName (string (name ))); -_gaf ._afa =append (_gaf ._afa ,&_fbc );return _gaf ;};func (_dggg *ContentStreamParser )parseName ()(_ea .PdfObjectName ,error ){_cdgg :="";_adg :=false ;for {_fce ,_ccd :=_dggg ._edbd .Peek (1);if _ccd ==_g .EOF {break ;};if _ccd !=nil {return _ea .PdfObjectName (_cdgg ),_ccd ; -};if !_adg {if _fce [0]=='/'{_adg =true ;_dggg ._edbd .ReadByte ();}else {_ecg .Log .Error ("N\u0061\u006d\u0065\u0020\u0073\u0074a\u0072\u0074\u0069\u006e\u0067\u0020\u0077\u0069\u0074h\u0020\u0025\u0073 \u0028%\u0020\u0078\u0029",_fce ,_fce );return _ea .PdfObjectName (_cdgg ),_db .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_fce [0]); -};}else {if _ea .IsWhiteSpace (_fce [0]){break ;}else if (_fce [0]=='/')||(_fce [0]=='[')||(_fce [0]=='(')||(_fce [0]==']')||(_fce [0]=='<')||(_fce [0]=='>'){break ;}else if _fce [0]=='#'{_deb ,_efbc :=_dggg ._edbd .Peek (3);if _efbc !=nil {return _ea .PdfObjectName (_cdgg ),_efbc ; -};_dggg ._edbd .Discard (3);_fadc ,_efbc :=_e .DecodeString (string (_deb [1:3]));if _efbc !=nil {return _ea .PdfObjectName (_cdgg ),_efbc ;};_cdgg +=string (_fadc );}else {_cbba ,_ :=_dggg ._edbd .ReadByte ();_cdgg +=string (_cbba );};};};return _ea .PdfObjectName (_cdgg ),nil ; +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_cgg *ContentCreator )Add_J (lineCapStyle string )*ContentCreator {_fec :=ContentStreamOperation {};_fec .Operand ="\u004a";_fec .Params =_adbc ([]_dd .PdfObjectName {_dd .PdfObjectName (lineCapStyle )});_cgg ._bg =append (_cgg ._bg ,&_fec );return _cgg ; +};func (_eeg *ContentStreamParser )parseString ()(*_dd .PdfObjectString ,error ){_eeg ._efe .ReadByte ();var _gadec []byte ;_fdbd :=1;for {_bfc ,_baff :=_eeg ._efe .Peek (1);if _baff !=nil {return _dd .MakeString (string (_gadec )),_baff ;};if _bfc [0]=='\\'{_eeg ._efe .ReadByte (); +_gbef ,_cca :=_eeg ._efe .ReadByte ();if _cca !=nil {return _dd .MakeString (string (_gadec )),_cca ;};if _dd .IsOctalDigit (_gbef ){_dddc ,_fafg :=_eeg ._efe .Peek (2);if _fafg !=nil {return _dd .MakeString (string (_gadec )),_fafg ;};var _eaec []byte ; +_eaec =append (_eaec ,_gbef );for _ ,_ecfc :=range _dddc {if _dd .IsOctalDigit (_ecfc ){_eaec =append (_eaec ,_ecfc );}else {break ;};};_eeg ._efe .Discard (len (_eaec )-1);_db .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_eaec ); +_ffdc ,_fafg :=_e .ParseUint (string (_eaec ),8,32);if _fafg !=nil {return _dd .MakeString (string (_gadec )),_fafg ;};_gadec =append (_gadec ,byte (_ffdc ));continue ;};switch _gbef {case 'n':_gadec =append (_gadec ,'\n');case 'r':_gadec =append (_gadec ,'\r'); +case 't':_gadec =append (_gadec ,'\t');case 'b':_gadec =append (_gadec ,'\b');case 'f':_gadec =append (_gadec ,'\f');case '(':_gadec =append (_gadec ,'(');case ')':_gadec =append (_gadec ,')');case '\\':_gadec =append (_gadec ,'\\');};continue ;}else if _bfc [0]=='('{_fdbd ++; +}else if _bfc [0]==')'{_fdbd --;if _fdbd ==0{_eeg ._efe .ReadByte ();break ;};};_dgg ,_ :=_eeg ._efe .ReadByte ();_gadec =append (_gadec ,_dgg );};return _dd .MakeString (string (_gadec )),nil ;};func (_cgebc *ContentStreamProcessor )handleCommand_CS (_cgce *ContentStreamOperation ,_afc *_ba .PdfPageResources )error {if len (_cgce .Params )< 1{_db .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0063\u0073\u0020\u0063\u006f\u006d\u006d\u0061\u006e\u0064\u002c\u0020s\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u006f\u0076\u0065\u0072"); +return _b .New ("\u0074o\u006f \u0066\u0065\u0077\u0020\u0070a\u0072\u0061m\u0065\u0074\u0065\u0072\u0073");};if len (_cgce .Params )> 1{_db .Log .Debug ("\u0063\u0073\u0020\u0063\u006f\u006d\u006d\u0061n\u0064\u0020\u0077it\u0068\u0020\u0074\u006f\u006f\u0020m\u0061\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020-\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075i\u006e\u0067"); +return _b .New ("\u0074\u006f\u006f\u0020ma\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073");};_adfcd ,_cfdb :=_cgce .Params [0].(*_dd .PdfObjectName );if !_cfdb {_db .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020c\u0073\u0020\u0063o\u006d\u006d\u0061n\u0064\u0020w\u0069\u0074\u0068\u0020\u0069\u006ev\u0061li\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u002c\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006f\u0076\u0065\u0072"); +return _b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_efde ,_afa :=_cgebc .getColorspace (string (*_adfcd ),_afc );if _afa !=nil {return _afa ;};_cgebc ._gea .ColorspaceStroking =_efde ;_dade ,_afa :=_cgebc .getInitialColor (_efde ); +if _afa !=nil {return _afa ;};_cgebc ._gea .ColorStroking =_dade ;return nil ;};func (_ceg *ContentStreamParser )parseDict ()(*_dd .PdfObjectDictionary ,error ){_db .Log .Trace ("\u0052\u0065\u0061\u0064i\u006e\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074 \u0073t\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074\u0021"); +_acbd :=_dd .MakeDict ();_fafgb ,_ :=_ceg ._efe .ReadByte ();if _fafgb !='<'{return nil ,_b .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074");};_fafgb ,_ =_ceg ._efe .ReadByte ();if _fafgb !='<'{return nil ,_b .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); +};for {_ceg .skipSpaces ();_daef ,_fecf :=_ceg ._efe .Peek (2);if _fecf !=nil {return nil ,_fecf ;};_db .Log .Trace ("D\u0069c\u0074\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_daef ),string (_daef ));if (_daef [0]=='>')&&(_daef [1]=='>'){_db .Log .Trace ("\u0045\u004f\u0046\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +_ceg ._efe .ReadByte ();_ceg ._efe .ReadByte ();break ;};_db .Log .Trace ("\u0050a\u0072s\u0065\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0021");_bee ,_fecf :=_ceg .parseName ();_db .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_bee ); +if _fecf !=nil {_db .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0052e\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006ea\u006d\u0065\u0020e\u0072r\u0020\u0025\u0073",_fecf );return nil ,_fecf ;};if len (_bee )> 4&&_bee [len (_bee )-4:]=="\u006e\u0075\u006c\u006c"{_feabd :=_bee [0:len (_bee )-4]; +_db .Log .Trace ("\u0054\u0061\u006b\u0069n\u0067\u0020\u0063\u0061\u0072\u0065\u0020\u006f\u0066\u0020n\u0075l\u006c\u0020\u0062\u0075\u0067\u0020\u0028%\u0073\u0029",_bee );_db .Log .Trace ("\u004e\u0065\u0077\u0020ke\u0079\u0020\u0022\u0025\u0073\u0022\u0020\u003d\u0020\u006e\u0075\u006c\u006c",_feabd ); +_ceg .skipSpaces ();_dbde ,_ :=_ceg ._efe .Peek (1);if _dbde [0]=='/'{_acbd .Set (_feabd ,_dd .MakeNull ());continue ;};};_ceg .skipSpaces ();_abbc ,_ ,_fecf :=_ceg .parseObject ();if _fecf !=nil {return nil ,_fecf ;};_acbd .Set (_bee ,_abbc );_db .Log .Trace ("\u0064\u0069\u0063\u0074\u005b\u0025\u0073\u005d\u0020\u003d\u0020\u0025\u0073",_bee ,_abbc .String ()); +};return _acbd ,nil ;};func (_fdbf *ContentStreamParser )parseName ()(_dd .PdfObjectName ,error ){_baf :="";_gbf :=false ;for {_aggf ,_ddb :=_fdbf ._efe .Peek (1);if _ddb ==_ec .EOF {break ;};if _ddb !=nil {return _dd .PdfObjectName (_baf ),_ddb ;};if !_gbf {if _aggf [0]=='/'{_gbf =true ; +_fdbf ._efe .ReadByte ();}else {_db .Log .Error ("N\u0061\u006d\u0065\u0020\u0073\u0074a\u0072\u0074\u0069\u006e\u0067\u0020\u0077\u0069\u0074h\u0020\u0025\u0073 \u0028%\u0020\u0078\u0029",_aggf ,_aggf );return _dd .PdfObjectName (_baf ),_ag .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_aggf [0]); +};}else {if _dd .IsWhiteSpace (_aggf [0]){break ;}else if (_aggf [0]=='/')||(_aggf [0]=='[')||(_aggf [0]=='(')||(_aggf [0]==']')||(_aggf [0]=='<')||(_aggf [0]=='>'){break ;}else if _aggf [0]=='#'{_aaag ,_gdc :=_fdbf ._efe .Peek (3);if _gdc !=nil {return _dd .PdfObjectName (_baf ),_gdc ; +};_fdbf ._efe .Discard (3);_egcf ,_gdc :=_a .DecodeString (string (_aaag [1:3]));if _gdc !=nil {return _dd .PdfObjectName (_baf ),_gdc ;};_baf +=string (_egcf );}else {_egaf ,_ :=_fdbf ._efe .ReadByte ();_baf +=string (_egaf );};};};return _dd .PdfObjectName (_baf ),nil ; }; +// GraphicStateStack represents a stack of GraphicsState. +type GraphicStateStack []GraphicsState ;type handlerEntry struct{Condition HandlerConditionEnum ;Operand string ;Handler HandlerFunc ;}; + // Add_Tr appends 'Tr' operand to the content stream: // Set text rendering mode. // // See section 9.3 "Text State Parameters and Operators" and // Table 105 (pp. 251-252 PDF32000_2008). -func (_egf *ContentCreator )Add_Tr (render int64 )*ContentCreator {_ed :=ContentStreamOperation {};_ed .Operand ="\u0054\u0072";_ed .Params =_bfag ([]int64 {render });_egf ._afa =append (_egf ._afa ,&_ed );return _egf ;}; +func (_ged *ContentCreator )Add_Tr (render int64 )*ContentCreator {_abfb :=ContentStreamOperation {};_abfb .Operand ="\u0054\u0072";_abfb .Params =_bgga ([]int64 {render });_ged ._bg =append (_ged ._bg ,&_abfb );return _ged ;};func (_ebge *ContentStreamParser )parseNull ()(_dd .PdfObjectNull ,error ){_ ,_effc :=_ebge ._efe .Discard (4); +return _dd .PdfObjectNull {},_effc ;}; + +// AddOperand adds a specified operand. +func (_afg *ContentCreator )AddOperand (op ContentStreamOperation )*ContentCreator {_afg ._bg =append (_afg ._bg ,&op );return _afg ;}; + +// WrapIfNeeded wraps the entire contents within q ... Q. If unbalanced, then adds extra Qs at the end. +// Only does if needed. Ensures that when adding new content, one start with all states +// in the default condition. +func (_dbc *ContentStreamOperations )WrapIfNeeded ()*ContentStreamOperations {if len (*_dbc )==0{return _dbc ;};if _dbc .isWrapped (){return _dbc ;};*_dbc =append ([]*ContentStreamOperation {{Operand :"\u0071"}},*_dbc ...);_fgb :=0;for _ ,_cb :=range *_dbc {if _cb .Operand =="\u0071"{_fgb ++; +}else if _cb .Operand =="\u0051"{_fgb --;};};for _fgb > 0{*_dbc =append (*_dbc ,&ContentStreamOperation {Operand :"\u0051"});_fgb --;};return _dbc ;};func (_gfb *ContentStreamProcessor )handleCommand_sc (_dcfa *ContentStreamOperation ,_bbeb *_ba .PdfPageResources )error {_gag :=_gfb ._gea .ColorspaceNonStroking ; +if !_fgaaf (_gag ){if len (_dcfa .Params )!=_gag .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_dcfa .Params ),_gag );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};};_befe ,_gadc :=_gag .ColorFromPdfObjects (_dcfa .Params );if _gadc !=nil {return _gadc ;};_gfb ._gea .ColorNonStroking =_befe ;return nil ;};func (_ddd *ContentStreamInlineImage )toImageBase (_gcce *_ba .PdfPageResources )(*_ad .ImageBase ,error ){if _ddd ._feaga !=nil {return _ddd ._feaga ,nil ; +};_dbe :=_ad .ImageBase {};if _ddd .Height ==nil {return nil ,_b .New ("\u0068e\u0069\u0067\u0068\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};_ecg ,_afbb :=_ddd .Height .(*_dd .PdfObjectInteger ); +if !_afbb {return nil ,_b .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0068e\u0069\u0067\u0068\u0074");};_dbe .Height =int (*_ecg );if _ddd .Width ==nil {return nil ,_b .New ("\u0077\u0069\u0064th\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); +};_deae ,_afbb :=_ddd .Width .(*_dd .PdfObjectInteger );if !_afbb {return nil ,_b .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0077\u0069\u0064\u0074\u0068");};_dbe .Width =int (*_deae );_feagf ,_abbd :=_ddd .IsMask ();if _abbd !=nil {return nil ,_abbd ; +};if _feagf {_dbe .BitsPerComponent =1;_dbe .ColorComponents =1;}else {if _ddd .BitsPerComponent ==nil {_db .Log .Debug ("\u0049\u006el\u0069\u006e\u0065\u0020\u0042\u0069\u0074\u0073\u0020\u0070\u0065\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u002d\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u0038"); +_dbe .BitsPerComponent =8;}else {_bge ,_edcb :=_ddd .BitsPerComponent .(*_dd .PdfObjectInteger );if !_edcb {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0062\u0069\u0074\u0073 p\u0065\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u0076al\u0075\u0065,\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0054",_ddd .BitsPerComponent ); +return nil ,_b .New ("\u0042\u0050\u0043\u0020\u0054\u0079\u0070\u0065\u0020e\u0072\u0072\u006f\u0072");};_dbe .BitsPerComponent =int (*_bge );};if _ddd .ColorSpace !=nil {_feab ,_egae :=_ddd .GetColorSpace (_gcce );if _egae !=nil {return nil ,_egae ;}; +_dbe .ColorComponents =_feab .GetNumComponents ();}else {_db .Log .Debug ("\u0049\u006el\u0069\u006e\u0065\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006e\u006f\u0074\u0020\u0073p\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u002d\u0020\u0061\u0073\u0073\u0075m\u0069\u006eg\u0020\u0031\u0020\u0063o\u006c\u006f\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +_dbe .ColorComponents =1;};};if _bbcg ,_ggd :=_dd .GetArray (_ddd .Decode );_ggd {_dbe .Decode ,_abbd =_bbcg .ToFloat64Array ();if _abbd !=nil {return nil ,_abbd ;};};_ddd ._feaga =&_dbe ;return _ddd ._feaga ,nil ;};func _ggbb (_bgd *ContentStreamInlineImage )(*_dd .MultiEncoder ,error ){_fad :=_dd .NewMultiEncoder (); +var _egee *_dd .PdfObjectDictionary ;var _dce []_dd .PdfObject ;if _fgee :=_bgd .DecodeParms ;_fgee !=nil {_acb ,_gbac :=_fgee .(*_dd .PdfObjectDictionary );if _gbac {_egee =_acb ;};_fgc ,_dec :=_fgee .(*_dd .PdfObjectArray );if _dec {for _ ,_bgce :=range _fgc .Elements (){if _eaa ,_agg :=_bgce .(*_dd .PdfObjectDictionary ); +_agg {_dce =append (_dce ,_eaa );}else {_dce =append (_dce ,nil );};};};};_fged :=_bgd .Filter ;if _fged ==nil {return nil ,_ag .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};_gad ,_gade :=_fged .(*_dd .PdfObjectArray ); +if !_gade {return nil ,_ag .Errorf ("m\u0075\u006c\u0074\u0069\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0063\u0061\u006e\u0020\u006f\u006el\u0079\u0020\u0062\u0065\u0020\u006d\u0061\u0064\u0065\u0020fr\u006f\u006d\u0020a\u0072r\u0061\u0079");}; +for _bfg ,_deb :=range _gad .Elements (){_bcad ,_dbda :=_deb .(*_dd .PdfObjectName );if !_dbda {return nil ,_ag .Errorf ("\u006d\u0075l\u0074\u0069\u0020\u0066i\u006c\u0074e\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u0020e\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061 \u006e\u0061\u006d\u0065"); +};var _ce _dd .PdfObject ;if _egee !=nil {_ce =_egee ;}else {if len (_dce )> 0{if _bfg >=len (_dce ){return nil ,_ag .Errorf ("\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0065\u006c\u0065\u006d\u0065n\u0074\u0073\u0020\u0069\u006e\u0020d\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006d\u0073\u0020a\u0072\u0072\u0061\u0079"); +};_ce =_dce [_bfg ];};};var _cfb *_dd .PdfObjectDictionary ;if _fbbb ,_ffg :=_ce .(*_dd .PdfObjectDictionary );_ffg {_cfb =_fbbb ;};if *_bcad ==_dd .StreamEncodingFilterNameFlate ||*_bcad =="\u0046\u006c"{_bbbg ,_gbcg :=_ccda (_bgd ,_cfb );if _gbcg !=nil {return nil ,_gbcg ; +};_fad .AddEncoder (_bbbg );}else if *_bcad ==_dd .StreamEncodingFilterNameLZW {_ccca ,_cccab :=_cge (_bgd ,_cfb );if _cccab !=nil {return nil ,_cccab ;};_fad .AddEncoder (_ccca );}else if *_bcad ==_dd .StreamEncodingFilterNameASCIIHex {_ced :=_dd .NewASCIIHexEncoder (); +_fad .AddEncoder (_ced );}else if *_bcad ==_dd .StreamEncodingFilterNameASCII85 ||*_bcad =="\u0041\u0038\u0035"{_cfbf :=_dd .NewASCII85Encoder ();_fad .AddEncoder (_cfbf );}else {_db .Log .Error ("U\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0066\u0069l\u0074\u0065\u0072\u0020\u0025\u0073",*_bcad ); +return nil ,_ag .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u0066\u0069\u006c\u0074er \u0069n \u006d\u0075\u006c\u0074\u0069\u0020\u0066il\u0074\u0065\u0072\u0020\u0061\u0072\u0072a\u0079");};};return _fad ,nil ;}; + +// Add_d adds 'd' operand to the content stream: Set the line dash pattern. +// +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_gc *ContentCreator )Add_d (dashArray []int64 ,dashPhase int64 )*ContentCreator {_ageg :=ContentStreamOperation {};_ageg .Operand ="\u0064";_ageg .Params =[]_dd .PdfObject {};_ageg .Params =append (_ageg .Params ,_dd .MakeArrayFromIntegers64 (dashArray )); +_ageg .Params =append (_ageg .Params ,_dd .MakeInteger (dashPhase ));_gc ._bg =append (_gc ._bg ,&_ageg );return _gc ;}; // ContentStreamInlineImage is a representation of an inline image in a Content stream. Everything between the BI and EI operands. // ContentStreamInlineImage implements the core.PdfObject interface although strictly it is not a PDF object. -type ContentStreamInlineImage struct{BitsPerComponent _ea .PdfObject ;ColorSpace _ea .PdfObject ;Decode _ea .PdfObject ;DecodeParms _ea .PdfObject ;Filter _ea .PdfObject ;Height _ea .PdfObject ;ImageMask _ea .PdfObject ;Intent _ea .PdfObject ;Interpolate _ea .PdfObject ; -Width _ea .PdfObject ;_ebb []byte ;_fad *_eeg .ImageBase ;}; +type ContentStreamInlineImage struct{BitsPerComponent _dd .PdfObject ;ColorSpace _dd .PdfObject ;Decode _dd .PdfObject ;DecodeParms _dd .PdfObject ;Filter _dd .PdfObject ;Height _dd .PdfObject ;ImageMask _dd .PdfObject ;Intent _dd .PdfObject ;Interpolate _dd .PdfObject ; +Width _dd .PdfObject ;_ega []byte ;_feaga *_ad .ImageBase ;}; + +// GetColorSpace returns the colorspace of the inline image. +func (_fbc *ContentStreamInlineImage )GetColorSpace (resources *_ba .PdfPageResources )(_ba .PdfColorspace ,error ){if _fbc .ColorSpace ==nil {_db .Log .Debug ("\u0049\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020\u0068\u0061\u0076i\u006e\u0067\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u002c\u0020\u0061\u0073\u0073\u0075\u006di\u006e\u0067\u0020\u0047\u0072a\u0079"); +return _ba .NewPdfColorspaceDeviceGray (),nil ;};if _fba ,_fccg :=_fbc .ColorSpace .(*_dd .PdfObjectArray );_fccg {return _ccabf (_fba );};_defg ,_eef :=_fbc .ColorSpace .(*_dd .PdfObjectName );if !_eef {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020I\u006e\u0076\u0061\u006c\u0069\u0064 \u006f\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u003b\u0025\u002bv\u0029",_fbc .ColorSpace ,_fbc .ColorSpace ); +return nil ,_b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if *_defg =="\u0047"||*_defg =="\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"{return _ba .NewPdfColorspaceDeviceGray (),nil ; +}else if *_defg =="\u0052\u0047\u0042"||*_defg =="\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B"{return _ba .NewPdfColorspaceDeviceRGB (),nil ;}else if *_defg =="\u0043\u004d\u0059\u004b"||*_defg =="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"{return _ba .NewPdfColorspaceDeviceCMYK (),nil ; +}else if *_defg =="\u0049"||*_defg =="\u0049n\u0064\u0065\u0078\u0065\u0064"{return nil ,_b .New ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0049\u006e\u0064e\u0078 \u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065");}else {if resources .ColorSpace ==nil {_db .Log .Debug ("\u0045\u0072r\u006f\u0072\u002c\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0073",*_defg ); +return nil ,_b .New ("\u0075n\u006bn\u006f\u0077\u006e\u0020\u0063o\u006c\u006fr\u0073\u0070\u0061\u0063\u0065");};_edbb ,_gca :=resources .GetColorspaceByName (*_defg );if !_gca {_db .Log .Debug ("\u0045\u0072r\u006f\u0072\u002c\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0073",*_defg ); +return nil ,_b .New ("\u0075n\u006bn\u006f\u0077\u006e\u0020\u0063o\u006c\u006fr\u0073\u0070\u0061\u0063\u0065");};return _edbb ,nil ;};};func (_bcc *ContentStreamProcessor )handleCommand_SC (_fbgd *ContentStreamOperation ,_ebb *_ba .PdfPageResources )error {_fbba :=_bcc ._gea .ColorspaceStroking ; +if len (_fbgd .Params )!=_fbba .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_fbgd .Params ),_fbba );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};_edf ,_addd :=_fbba .ColorFromPdfObjects (_fbgd .Params );if _addd !=nil {return _addd ;};_bcc ._gea .ColorStroking =_edf ;return nil ;};func (_baee *ContentStreamParser )parseObject ()(_gde _dd .PdfObject ,_badea bool ,_cdgea error ){_baee .skipSpaces (); +for {_cadd ,_adfc :=_baee ._efe .Peek (2);if _adfc !=nil {return nil ,false ,_adfc ;};_db .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_cadd ));if _cadd [0]=='%'{_baee .skipComments ();continue ; +}else if _cadd [0]=='/'{_bdb ,_aec :=_baee .parseName ();_db .Log .Trace ("\u002d\u003e\u004ea\u006d\u0065\u003a\u0020\u0027\u0025\u0073\u0027",_bdb );return &_bdb ,false ,_aec ;}else if _cadd [0]=='('{_db .Log .Trace ("\u002d>\u0053\u0074\u0072\u0069\u006e\u0067!"); +_defc ,_aged :=_baee .parseString ();return _defc ,false ,_aged ;}else if _cadd [0]=='<'&&_cadd [1]!='<'{_db .Log .Trace ("\u002d\u003e\u0048\u0065\u0078\u0020\u0053\u0074\u0072\u0069\u006e\u0067\u0021");_efec ,_bdba :=_baee .parseHexString ();return _efec ,false ,_bdba ; +}else if _cadd [0]=='['{_db .Log .Trace ("\u002d\u003e\u0041\u0072\u0072\u0061\u0079\u0021");_cegf ,_adcc :=_baee .parseArray ();return _cegf ,false ,_adcc ;}else if _dd .IsFloatDigit (_cadd [0])||(_cadd [0]=='-'&&_dd .IsFloatDigit (_cadd [1]))||(_cadd [0]=='+'&&_dd .IsFloatDigit (_cadd [1])){_db .Log .Trace ("\u002d>\u004e\u0075\u006d\u0062\u0065\u0072!"); +_cgf ,_defa :=_baee .parseNumber ();return _cgf ,false ,_defa ;}else if _cadd [0]=='<'&&_cadd [1]=='<'{_gafg ,_ebga :=_baee .parseDict ();return _gafg ,false ,_ebga ;}else {_db .Log .Trace ("\u002d>\u004fp\u0065\u0072\u0061\u006e\u0064 \u006f\u0072 \u0062\u006f\u006f\u006c\u003f"); +_cadd ,_ =_baee ._efe .Peek (5);_cbg :=string (_cadd );_db .Log .Trace ("\u0063\u006f\u006e\u0074\u0020\u0050\u0065\u0065\u006b\u0020\u0073\u0074r\u003a\u0020\u0025\u0073",_cbg );if (len (_cbg )> 3)&&(_cbg [:4]=="\u006e\u0075\u006c\u006c"){_dgge ,_egg :=_baee .parseNull (); +return &_dgge ,false ,_egg ;}else if (len (_cbg )> 4)&&(_cbg [:5]=="\u0066\u0061\u006cs\u0065"){_dega ,_eefe :=_baee .parseBool ();return &_dega ,false ,_eefe ;}else if (len (_cbg )> 3)&&(_cbg [:4]=="\u0074\u0072\u0075\u0065"){_bdbc ,_efb :=_baee .parseBool (); +return &_bdbc ,false ,_efb ;};_bddc ,_ffcf :=_baee .parseOperand ();if _ffcf !=nil {return _bddc ,false ,_ffcf ;};if len (_bddc .String ())< 1{return _bddc ,false ,ErrInvalidOperand ;};return _bddc ,true ,nil ;};};}; // ParseInlineImage parses an inline image from a content stream, both reading its properties and binary data. // When called, "BI" has already been read from the stream. This function // finishes reading through "EI" and then returns the ContentStreamInlineImage. -func (_fbda *ContentStreamParser )ParseInlineImage ()(*ContentStreamInlineImage ,error ){_eage :=ContentStreamInlineImage {};for {_fbda .skipSpaces ();_daf ,_bed ,_dbed :=_fbda .parseObject ();if _dbed !=nil {return nil ,_dbed ;};if !_bed {_abd ,_bag :=_ea .GetName (_daf ); -if !_bag {_ecg .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067e\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0020\u0028\u0065\u0078\u0070\u0065\u0063\u0074\u0069\u006e\u0067\u0020\u006e\u0061\u006d\u0065\u0029\u0020\u002d\u0020\u0025T",_daf ); -return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067e\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0020\u0028\u0065\u0078\u0070\u0065\u0063\u0074\u0069\u006e\u0067\u0020\u006e\u0061\u006d\u0065\u0029\u0020\u002d\u0020\u0025T",_daf ); -};_cea ,_faa ,_bggd :=_fbda .parseObject ();if _bggd !=nil {return nil ,_bggd ;};if _faa {return nil ,_db .Errorf ("\u006eo\u0074\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0069\u006e\u0067 \u0061\u006e\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064"); -};switch *_abd {case "\u0042\u0050\u0043","\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074":_eage .BitsPerComponent =_cea ;case "\u0043\u0053","\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065":_eage .ColorSpace =_cea ; -case "\u0044","\u0044\u0065\u0063\u006f\u0064\u0065":_eage .Decode =_cea ;case "\u0044\u0050","D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073":_eage .DecodeParms =_cea ;case "\u0046","\u0046\u0069\u006c\u0074\u0065\u0072":_eage .Filter =_cea ; -case "\u0048","\u0048\u0065\u0069\u0067\u0068\u0074":_eage .Height =_cea ;case "\u0049\u004d","\u0049m\u0061\u0067\u0065\u004d\u0061\u0073k":_eage .ImageMask =_cea ;case "\u0049\u006e\u0074\u0065\u006e\u0074":_eage .Intent =_cea ;case "\u0049","I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065":_eage .Interpolate =_cea ; -case "\u0057","\u0057\u0069\u0064t\u0068":_eage .Width =_cea ;case "\u004c\u0065\u006e\u0067\u0074\u0068","\u0053u\u0062\u0074\u0079\u0070\u0065","\u0054\u0079\u0070\u0065":_ecg .Log .Debug ("\u0049\u0067\u006e\u006fr\u0069\u006e\u0067\u0020\u0069\u006e\u006c\u0069\u006e\u0065 \u0070a\u0072\u0061\u006d\u0065\u0074\u0065\u0072 \u0025\u0073",*_abd ); -default:return nil ,_db .Errorf ("\u0075\u006e\u006b\u006e\u006f\u0077n\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0020\u0025\u0073",*_abd );};};if _bed {_cgc ,_bcee :=_daf .(*_ea .PdfObjectString ); -if !_bcee {return nil ,_db .Errorf ("\u0066a\u0069\u006ce\u0064\u0020\u0074o\u0020\u0072\u0065\u0061\u0064\u0020\u0069n\u006c\u0069\u006e\u0065\u0020\u0069m\u0061\u0067\u0065\u0020\u002d\u0020\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064"); -};if _cgc .Str ()=="\u0045\u0049"{_ecg .Log .Trace ("\u0049n\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020f\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e\u002e\u002e");return &_eage ,nil ;}else if _cgc .Str ()=="\u0049\u0044"{_ecg .Log .Trace ("\u0049\u0044\u0020\u0073\u0074\u0061\u0072\u0074"); -_bggc ,_fcc :=_fbda ._edbd .Peek (1);if _fcc !=nil {return nil ,_fcc ;};if _ea .IsWhiteSpace (_bggc [0]){_fbda ._edbd .Discard (1);};_eage ._ebb =[]byte {};_ded :=0;var _eae []byte ;for {_abbd ,_gfa :=_fbda ._edbd .ReadByte ();if _gfa !=nil {_ecg .Log .Debug ("\u0055\u006e\u0061\u0062\u006ce\u0020\u0074\u006f\u0020\u0066\u0069\u006e\u0064\u0020\u0065\u006e\u0064\u0020o\u0066\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0045\u0049\u0020\u0069\u006e\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0064\u0061\u0074a"); -return nil ,_gfa ;};if _ded ==0{if _ea .IsWhiteSpace (_abbd ){_eae =[]byte {};_eae =append (_eae ,_abbd );_ded =1;}else if _abbd =='E'{_eae =append (_eae ,_abbd );_ded =2;}else {_eage ._ebb =append (_eage ._ebb ,_abbd );};}else if _ded ==1{_eae =append (_eae ,_abbd ); -if _abbd =='E'{_ded =2;}else {_eage ._ebb =append (_eage ._ebb ,_eae ...);_eae =[]byte {};if _ea .IsWhiteSpace (_abbd ){_ded =1;}else {_ded =0;};};}else if _ded ==2{_eae =append (_eae ,_abbd );if _abbd =='I'{_ded =3;}else {_eage ._ebb =append (_eage ._ebb ,_eae ...); -_eae =[]byte {};_ded =0;};}else if _ded ==3{_eae =append (_eae ,_abbd );if _ea .IsWhiteSpace (_abbd ){_eab ,_fge :=_fbda ._edbd .Peek (20);if _fge !=nil &&_fge !=_g .EOF {return nil ,_fge ;};_fgf :=NewContentStreamParser (string (_eab ));_fdgd :=true ; -for _aaf :=0;_aaf < 3;_aaf ++{_bdbed ,_ecab ,_cdae :=_fgf .parseObject ();if _cdae !=nil {if _cdae ==_g .EOF {break ;};_fdgd =false ;continue ;};if _ecab &&!_bfgb (_bdbed .String ()){_fdgd =false ;break ;};};if _fdgd {if len (_eage ._ebb )> 100{_ecg .Log .Trace ("\u0049\u006d\u0061\u0067\u0065\u0020\u0073\u0074\u0072\u0065\u0061m\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078 \u002e\u002e\u002e",len (_eage ._ebb ),_eage ._ebb [:100]); -}else {_ecg .Log .Trace ("\u0049\u006d\u0061\u0067e \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025 \u0078",len (_eage ._ebb ),_eage ._ebb );};return &_eage ,nil ;};};_eage ._ebb =append (_eage ._ebb ,_eae ...);_eae =[]byte {}; -_ded =0;};};};};};}; +func (_aabf *ContentStreamParser )ParseInlineImage ()(*ContentStreamInlineImage ,error ){_cdfg :=ContentStreamInlineImage {};for {_aabf .skipSpaces ();_fcfa ,_cdc ,_ceb :=_aabf .parseObject ();if _ceb !=nil {return nil ,_ceb ;};if !_cdc {_eedd ,_efd :=_dd .GetName (_fcfa ); +if !_efd {_db .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067e\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0020\u0028\u0065\u0078\u0070\u0065\u0063\u0074\u0069\u006e\u0067\u0020\u006e\u0061\u006d\u0065\u0029\u0020\u002d\u0020\u0025T",_fcfa ); +return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067e\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0020\u0028\u0065\u0078\u0070\u0065\u0063\u0074\u0069\u006e\u0067\u0020\u006e\u0061\u006d\u0065\u0029\u0020\u002d\u0020\u0025T",_fcfa ); +};_ffb ,_fee ,_afd :=_aabf .parseObject ();if _afd !=nil {return nil ,_afd ;};if _fee {return nil ,_ag .Errorf ("\u006eo\u0074\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0069\u006e\u0067 \u0061\u006e\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064");}; +switch *_eedd {case "\u0042\u0050\u0043","\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074":_cdfg .BitsPerComponent =_ffb ;case "\u0043\u0053","\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065":_cdfg .ColorSpace =_ffb ; +case "\u0044","\u0044\u0065\u0063\u006f\u0064\u0065":_cdfg .Decode =_ffb ;case "\u0044\u0050","D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073":_cdfg .DecodeParms =_ffb ;case "\u0046","\u0046\u0069\u006c\u0074\u0065\u0072":_cdfg .Filter =_ffb ; +case "\u0048","\u0048\u0065\u0069\u0067\u0068\u0074":_cdfg .Height =_ffb ;case "\u0049\u004d","\u0049m\u0061\u0067\u0065\u004d\u0061\u0073k":_cdfg .ImageMask =_ffb ;case "\u0049\u006e\u0074\u0065\u006e\u0074":_cdfg .Intent =_ffb ;case "\u0049","I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065":_cdfg .Interpolate =_ffb ; +case "\u0057","\u0057\u0069\u0064t\u0068":_cdfg .Width =_ffb ;case "\u004c\u0065\u006e\u0067\u0074\u0068","\u0053u\u0062\u0074\u0079\u0070\u0065","\u0054\u0079\u0070\u0065":_db .Log .Debug ("\u0049\u0067\u006e\u006fr\u0069\u006e\u0067\u0020\u0069\u006e\u006c\u0069\u006e\u0065 \u0070a\u0072\u0061\u006d\u0065\u0074\u0065\u0072 \u0025\u0073",*_eedd ); +default:return nil ,_ag .Errorf ("\u0075\u006e\u006b\u006e\u006f\u0077n\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0020\u0025\u0073",*_eedd );};};if _cdc {_adc ,_fafcd :=_fcfa .(*_dd .PdfObjectString ); +if !_fafcd {return nil ,_ag .Errorf ("\u0066a\u0069\u006ce\u0064\u0020\u0074o\u0020\u0072\u0065\u0061\u0064\u0020\u0069n\u006c\u0069\u006e\u0065\u0020\u0069m\u0061\u0067\u0065\u0020\u002d\u0020\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064"); +};if _adc .Str ()=="\u0045\u0049"{_db .Log .Trace ("\u0049n\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020f\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e\u002e\u002e");return &_cdfg ,nil ;}else if _adc .Str ()=="\u0049\u0044"{_db .Log .Trace ("\u0049\u0044\u0020\u0073\u0074\u0061\u0072\u0074"); +_ecgc ,_cbcg :=_aabf ._efe .Peek (1);if _cbcg !=nil {return nil ,_cbcg ;};if _dd .IsWhiteSpace (_ecgc [0]){_aabf ._efe .Discard (1);};_cdfg ._ega =[]byte {};_edd :=0;var _fadd []byte ;for {_afda ,_bfa :=_aabf ._efe .ReadByte ();if _bfa !=nil {_db .Log .Debug ("\u0055\u006e\u0061\u0062\u006ce\u0020\u0074\u006f\u0020\u0066\u0069\u006e\u0064\u0020\u0065\u006e\u0064\u0020o\u0066\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0045\u0049\u0020\u0069\u006e\u0020\u0069\u006e\u006c\u0069\u006e\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0064\u0061\u0074a"); +return nil ,_bfa ;};if _edd ==0{if _dd .IsWhiteSpace (_afda ){_fadd =[]byte {};_fadd =append (_fadd ,_afda );_edd =1;}else if _afda =='E'{_fadd =append (_fadd ,_afda );_edd =2;}else {_cdfg ._ega =append (_cdfg ._ega ,_afda );};}else if _edd ==1{_fadd =append (_fadd ,_afda ); +if _afda =='E'{_edd =2;}else {_cdfg ._ega =append (_cdfg ._ega ,_fadd ...);_fadd =[]byte {};if _dd .IsWhiteSpace (_afda ){_edd =1;}else {_edd =0;};};}else if _edd ==2{_fadd =append (_fadd ,_afda );if _afda =='I'{_edd =3;}else {_cdfg ._ega =append (_cdfg ._ega ,_fadd ...); +_fadd =[]byte {};_edd =0;};}else if _edd ==3{_fadd =append (_fadd ,_afda );if _dd .IsWhiteSpace (_afda ){_gccea ,_geef :=_aabf ._efe .Peek (20);if _geef !=nil &&_geef !=_ec .EOF {return nil ,_geef ;};_bcf :=NewContentStreamParser (string (_gccea ));_ebfg :=true ; +for _dgd :=0;_dgd < 3;_dgd ++{_eebf ,_aaaa ,_agb :=_bcf .parseObject ();if _agb !=nil {if _agb ==_ec .EOF {break ;};_ebfg =false ;continue ;};if _aaaa &&!_acce (_eebf .String ()){_ebfg =false ;break ;};};if _ebfg {if len (_cdfg ._ega )> 100{_db .Log .Trace ("\u0049\u006d\u0061\u0067\u0065\u0020\u0073\u0074\u0072\u0065\u0061m\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078 \u002e\u002e\u002e",len (_cdfg ._ega ),_cdfg ._ega [:100]); +}else {_db .Log .Trace ("\u0049\u006d\u0061\u0067e \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025 \u0078",len (_cdfg ._ega ),_cdfg ._ega );};return &_cdfg ,nil ;};};_cdfg ._ega =append (_cdfg ._ega ,_fadd ...);_fadd =[]byte {}; +_edd =0;};};};};};};func _bdce (_efbf []float64 )[]_dd .PdfObject {var _eedb []_dd .PdfObject ;for _ ,_gga :=range _efbf {_eedb =append (_eedb ,_dd .MakeFloat (_gga ));};return _eedb ;}; -// Add_g appends 'g' operand to the content stream: -// Same as G but used for nonstroking operations. -// -// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_bgg *ContentCreator )Add_g (gray float64 )*ContentCreator {_ddg :=ContentStreamOperation {};_ddg .Operand ="\u0067";_ddg .Params =_deaf ([]float64 {gray });_bgg ._afa =append (_bgg ._afa ,&_ddg );return _bgg ;}; +// GetEncoder returns the encoder of the inline image. +func (_adbd *ContentStreamInlineImage )GetEncoder ()(_dd .StreamEncoder ,error ){return _cfc (_adbd )}; -// Add_TD appends 'TD' operand to the content stream: -// Move to start of next line with offset (`tx`, `ty`). -// -// See section 9.4.2 "Text Positioning Operators" and -// Table 108 (pp. 257-258 PDF32000_2008). -func (_ceg *ContentCreator )Add_TD (tx ,ty float64 )*ContentCreator {_cefd :=ContentStreamOperation {};_cefd .Operand ="\u0054\u0044";_cefd .Params =_deaf ([]float64 {tx ,ty });_ceg ._afa =append (_ceg ._afa ,&_cefd );return _ceg ;}; +// HandlerFunc is the function syntax that the ContentStreamProcessor handler must implement. +type HandlerFunc func (_dgcg *ContentStreamOperation ,_fgg GraphicsState ,_fbff *_ba .PdfPageResources )error ; -// Add_v appends 'v' operand to the content stream: Append a Bezier curve to the current path from the -// current point to (x3,y3) with the current point and (x2,y2) as control points. +// Add_q adds 'q' operand to the content stream: Pushes the current graphics state on the stack. // -// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_aee *ContentCreator )Add_v (x2 ,y2 ,x3 ,y3 float64 )*ContentCreator {_bfg :=ContentStreamOperation {};_bfg .Operand ="\u0076";_bfg .Params =_deaf ([]float64 {x2 ,y2 ,x3 ,y3 });_aee ._afa =append (_aee ._afa ,&_bfg );return _aee ;};func (_ecf *ContentStreamProcessor )handleCommand_scn (_abge *ContentStreamOperation ,_edbbf *_ge .PdfPageResources )error {_cgg :=_ecf ._ggfd .ColorspaceNonStroking ; -if !_fde (_cgg ){if len (_abge .Params )!=_cgg .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_abge .Params ),_cgg );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};};_dcda ,_fgec :=_cgg .ColorFromPdfObjects (_abge .Params );if _fgec !=nil {_ecg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c \u0074\u006f\u0020\u0067\u0065\u0074\u0020\u0063o\u006co\u0072\u0020\u0066\u0072\u006f\u006d\u0020\u0070\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u002b\u0076 \u0028\u0043\u0053\u0020\u0069\u0073\u0020\u0025\u002b\u0076\u0029",_abge .Params ,_cgg ); -return _fgec ;};_ecf ._ggfd .ColorNonStroking =_dcda ;return nil ;}; +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_abb *ContentCreator )Add_q ()*ContentCreator {_cfa :=ContentStreamOperation {};_cfa .Operand ="\u0071";_abb ._bg =append (_abb ._bg ,&_cfa );return _abb ;};func (_faae *ContentStreamProcessor )handleCommand_RG (_aed *ContentStreamOperation ,_fcb *_ba .PdfPageResources )error {_accf :=_ba .NewPdfColorspaceDeviceRGB (); +if len (_aed .Params )!=_accf .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020R\u0047"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_aed .Params ),_accf );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};_fcbc ,_cbcfb :=_accf .ColorFromPdfObjects (_aed .Params );if _cbcfb !=nil {return _cbcfb ;};_faae ._gea .ColorspaceStroking =_accf ;_faae ._gea .ColorStroking =_fcbc ;return nil ;};func (_fcf *ContentStreamInlineImage )String ()string {_bfgb :=_ag .Sprintf ("I\u006el\u0069\u006e\u0065\u0049\u006d\u0061\u0067\u0065(\u006c\u0065\u006e\u003d%d\u0029\u000a",len (_fcf ._ega )); +if _fcf .BitsPerComponent !=nil {_bfgb +="\u002d\u0020\u0042\u0050\u0043\u0020"+_fcf .BitsPerComponent .WriteString ()+"\u000a";};if _fcf .ColorSpace !=nil {_bfgb +="\u002d\u0020\u0043S\u0020"+_fcf .ColorSpace .WriteString ()+"\u000a";};if _fcf .Decode !=nil {_bfgb +="\u002d\u0020\u0044\u0020"+_fcf .Decode .WriteString ()+"\u000a"; +};if _fcf .DecodeParms !=nil {_bfgb +="\u002d\u0020\u0044P\u0020"+_fcf .DecodeParms .WriteString ()+"\u000a";};if _fcf .Filter !=nil {_bfgb +="\u002d\u0020\u0046\u0020"+_fcf .Filter .WriteString ()+"\u000a";};if _fcf .Height !=nil {_bfgb +="\u002d\u0020\u0048\u0020"+_fcf .Height .WriteString ()+"\u000a"; +};if _fcf .ImageMask !=nil {_bfgb +="\u002d\u0020\u0049M\u0020"+_fcf .ImageMask .WriteString ()+"\u000a";};if _fcf .Intent !=nil {_bfgb +="\u002d \u0049\u006e\u0074\u0065\u006e\u0074 "+_fcf .Intent .WriteString ()+"\u000a";};if _fcf .Interpolate !=nil {_bfgb +="\u002d\u0020\u0049\u0020"+_fcf .Interpolate .WriteString ()+"\u000a"; +};if _fcf .Width !=nil {_bfgb +="\u002d\u0020\u0057\u0020"+_fcf .Width .WriteString ()+"\u000a";};return _bfgb ;}; -// Add_quote appends "'" operand to the content stream: -// Move to next line and show a string. +// NewContentStreamParser creates a new instance of the content stream parser from an input content +// stream string. +func NewContentStreamParser (contentStr string )*ContentStreamParser {_eae :=ContentStreamParser {};contentStr =string (_agbd .ReplaceAll ([]byte (contentStr ),[]byte ("\u002f")));_dff :=_ge .NewBufferString (contentStr +"\u000a");_eae ._efe =_af .NewReader (_dff ); +return &_eae ;}; + +// Add_i adds 'i' operand to the content stream: Set the flatness tolerance in the graphics state. // -// See section 9.4.3 "Text Showing Operators" and -// Table 209 (pp. 258-259 PDF32000_2008). -func (_cdb *ContentCreator )Add_quote (textstr _ea .PdfObjectString )*ContentCreator {_ecge :=ContentStreamOperation {};_ecge .Operand ="\u0027";_ecge .Params =_gdbe ([]_ea .PdfObjectString {textstr });_cdb ._afa =append (_cdb ._afa ,&_ecge );return _cdb ; -}; +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_bbe *ContentCreator )Add_i (flatness float64 )*ContentCreator {_fbf :=ContentStreamOperation {};_fbf .Operand ="\u0069";_fbf .Params =_bdce ([]float64 {flatness });_bbe ._bg =append (_bbe ._bg ,&_fbf );return _bbe ;}; + +// Pop pops and returns the topmost GraphicsState off the `gsStack`. +func (_fabf *GraphicStateStack )Pop ()GraphicsState {_faef :=(*_fabf )[len (*_fabf )-1];*_fabf =(*_fabf )[:len (*_fabf )-1];return _faef ;}; + +// Add_scn_pattern appends 'scn' operand to the content stream for pattern `name`: +// scn with name attribute (for pattern). Syntax: c1 ... cn name scn. +// +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_dfc *ContentCreator )Add_scn_pattern (name _dd .PdfObjectName ,c ...float64 )*ContentCreator {_ecb :=ContentStreamOperation {};_ecb .Operand ="\u0073\u0063\u006e";_ecb .Params =_bdce (c );_ecb .Params =append (_ecb .Params ,_dd .MakeName (string (name ))); +_dfc ._bg =append (_dfc ._bg ,&_ecb );return _dfc ;}; // Add_Tm appends 'Tm' operand to the content stream: // Set the text line matrix. // // See section 9.4.2 "Text Positioning Operators" and // Table 108 (pp. 257-258 PDF32000_2008). -func (_cbge *ContentCreator )Add_Tm (a ,b ,c ,d ,e ,f float64 )*ContentCreator {_eed :=ContentStreamOperation {};_eed .Operand ="\u0054\u006d";_eed .Params =_deaf ([]float64 {a ,b ,c ,d ,e ,f });_cbge ._afa =append (_cbge ._afa ,&_eed );return _cbge ;}; -func (_cfd *ContentStreamProcessor )handleCommand_cs (_gdead *ContentStreamOperation ,_edgfe *_ge .PdfPageResources )error {if len (_gdead .Params )< 1{_ecg .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0043\u0053\u0020\u0063\u006f\u006d\u006d\u0061\u006e\u0064\u002c\u0020s\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u006f\u0076\u0065\u0072"); -return _f .New ("\u0074o\u006f \u0066\u0065\u0077\u0020\u0070a\u0072\u0061m\u0065\u0074\u0065\u0072\u0073");};if len (_gdead .Params )> 1{_ecg .Log .Debug ("\u0043\u0053\u0020\u0063\u006f\u006d\u006d\u0061n\u0064\u0020\u0077it\u0068\u0020\u0074\u006f\u006f\u0020m\u0061\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020-\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075i\u006e\u0067"); -return _f .New ("\u0074\u006f\u006f\u0020ma\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073");};_fdcg ,_befa :=_gdead .Params [0].(*_ea .PdfObjectName );if !_befa {_ecg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020C\u0053\u0020\u0063o\u006d\u006d\u0061n\u0064\u0020w\u0069\u0074\u0068\u0020\u0069\u006ev\u0061li\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u002c\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006f\u0076\u0065\u0072"); -return _f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_fda ,_ada :=_cfd .getColorspace (string (*_fdcg ),_edgfe );if _ada !=nil {return _ada ;};_cfd ._ggfd .ColorspaceNonStroking =_fda ;_def ,_ada :=_cfd .getInitialColor (_fda ); -if _ada !=nil {return _ada ;};_cfd ._ggfd .ColorNonStroking =_def ;return nil ;}; +func (_acc *ContentCreator )Add_Tm (a ,b ,c ,d ,e ,f float64 )*ContentCreator {_ccce :=ContentStreamOperation {};_ccce .Operand ="\u0054\u006d";_ccce .Params =_bdce ([]float64 {a ,b ,c ,d ,e ,f });_acc ._bg =append (_acc ._bg ,&_ccce );return _acc ;};func (_fdgg *ContentStreamProcessor )getInitialColor (_aef _ba .PdfColorspace )(_ba .PdfColor ,error ){switch _dfdd :=_aef .(type ){case *_ba .PdfColorspaceDeviceGray :return _ba .NewPdfColorDeviceGray (0.0),nil ; +case *_ba .PdfColorspaceDeviceRGB :return _ba .NewPdfColorDeviceRGB (0.0,0.0,0.0),nil ;case *_ba .PdfColorspaceDeviceCMYK :return _ba .NewPdfColorDeviceCMYK (0.0,0.0,0.0,1.0),nil ;case *_ba .PdfColorspaceCalGray :return _ba .NewPdfColorCalGray (0.0),nil ; +case *_ba .PdfColorspaceCalRGB :return _ba .NewPdfColorCalRGB (0.0,0.0,0.0),nil ;case *_ba .PdfColorspaceLab :_fed :=0.0;_dbb :=0.0;_becb :=0.0;if _dfdd .Range [0]> 0{_fed =_dfdd .Range [0];};if _dfdd .Range [2]> 0{_dbb =_dfdd .Range [2];};return _ba .NewPdfColorLab (_fed ,_dbb ,_becb ),nil ; +case *_ba .PdfColorspaceICCBased :if _dfdd .Alternate ==nil {_db .Log .Trace ("\u0049\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065d\u0020-\u0020\u0061\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0066\u0061\u006c\u006c\u0020\u0062a\u0063\u006b\u0020\u0028\u004e\u0020\u003d\u0020\u0025\u0064\u0029",_dfdd .N ); +if _dfdd .N ==1{_db .Log .Trace ("\u0046\u0061\u006c\u006c\u0069\u006e\u0067\u0020\u0062\u0061\u0063k\u0020\u0074\u006f\u0020\u0044\u0065\u0076\u0069\u0063\u0065G\u0072\u0061\u0079");return _fdgg .getInitialColor (_ba .NewPdfColorspaceDeviceGray ());}else if _dfdd .N ==3{_db .Log .Trace ("\u0046a\u006c\u006c\u0069\u006eg\u0020\u0062\u0061\u0063\u006b \u0074o\u0020D\u0065\u0076\u0069\u0063\u0065\u0052\u0047B"); +return _fdgg .getInitialColor (_ba .NewPdfColorspaceDeviceRGB ());}else if _dfdd .N ==4{_db .Log .Trace ("\u0046\u0061\u006c\u006c\u0069\u006e\u0067\u0020\u0062\u0061\u0063k\u0020\u0074\u006f\u0020\u0044\u0065\u0076\u0069\u0063\u0065C\u004d\u0059\u004b"); +return _fdgg .getInitialColor (_ba .NewPdfColorspaceDeviceCMYK ());}else {return nil ,_b .New ("a\u006c\u0074\u0065\u0072\u006e\u0061t\u0065\u0020\u0073\u0070\u0061\u0063e\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0049C\u0043"); +};};return _fdgg .getInitialColor (_dfdd .Alternate );case *_ba .PdfColorspaceSpecialIndexed :if _dfdd .Base ==nil {return nil ,_b .New ("\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0062\u0061\u0073e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069f\u0069\u0065\u0064"); +};return _fdgg .getInitialColor (_dfdd .Base );case *_ba .PdfColorspaceSpecialSeparation :if _dfdd .AlternateSpace ==nil {return nil ,_b .New ("\u0061\u006ct\u0065\u0072\u006e\u0061\u0074\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069fi\u0065\u0064"); +};return _fdgg .getInitialColor (_dfdd .AlternateSpace );case *_ba .PdfColorspaceDeviceN :if _dfdd .AlternateSpace ==nil {return nil ,_b .New ("\u0061\u006ct\u0065\u0072\u006e\u0061\u0074\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069fi\u0065\u0064"); +};return _fdgg .getInitialColor (_dfdd .AlternateSpace );case *_ba .PdfColorspaceSpecialPattern :return _ba .NewPdfColorPattern (),nil ;};_db .Log .Debug ("Un\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065r\u006d\u0069\u006e\u0065\u0020\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0066\u006f\u0072\u0020\u0075\u006e\u006b\u006e\u006fw\u006e \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061c\u0065:\u0020\u0025T",_aef ); +return nil ,_b .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061c\u0065");}; -// Add_sh appends 'sh' operand to the content stream: -// Paints the shape and colour shading described by a shading dictionary specified by `name`, -// subject to the current clipping path +// HasUnclosedQ checks if all the `q` operator is properly closed by `Q` operator. +func (_ed *ContentStreamOperations )HasUnclosedQ ()bool {_bab :=0;for _ ,_c :=range *_ed {if _c .Operand =="\u0071"{_bab ++;}else if _c .Operand =="\u0051"{_bab --;};};return _bab !=0;};var (ErrInvalidOperand =_b .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064"); +ErrEarlyExit =_b .New ("\u0074\u0065\u0072\u006di\u006e\u0061\u0074\u0065\u0020\u0070\u0072\u006f\u0063\u0065s\u0073 \u0065\u0061\u0072\u006c\u0079\u0020\u0065x\u0069\u0074"););func (_dbbb *ContentStreamProcessor )handleCommand_scn (_aebd *ContentStreamOperation ,_efea *_ba .PdfPageResources )error {_fafgc :=_dbbb ._gea .ColorspaceNonStroking ; +if !_fgaaf (_fafgc ){if len (_aebd .Params )!=_fafgc .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_aebd .Params ),_fafgc );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};};_gdf ,_gdfe :=_fafgc .ColorFromPdfObjects (_aebd .Params );if _gdfe !=nil {_db .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c \u0074\u006f\u0020\u0067\u0065\u0074\u0020\u0063o\u006co\u0072\u0020\u0066\u0072\u006f\u006d\u0020\u0070\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u002b\u0076 \u0028\u0043\u0053\u0020\u0069\u0073\u0020\u0025\u002b\u0076\u0029",_aebd .Params ,_fafgc ); +return _gdfe ;};_dbbb ._gea .ColorNonStroking =_gdf ;return nil ;}; + +// Add_K appends 'K' operand to the content stream: +// Set the stroking colorspace to DeviceCMYK and sets the c,m,y,k color (0-1 each component). // -// See section 8.7.4 "Shading Patterns" and Table 77 (p. 190 PDF32000_2008). -func (_dgcb *ContentCreator )Add_sh (name _ea .PdfObjectName )*ContentCreator {_fdf :=ContentStreamOperation {};_fdf .Operand ="\u0073\u0068";_fdf .Params =_gbg ([]_ea .PdfObjectName {name });_dgcb ._afa =append (_dgcb ._afa ,&_fdf );return _dgcb ;};func _gdbe (_daaf []_ea .PdfObjectString )[]_ea .PdfObject {var _bbbc []_ea .PdfObject ; -for _ ,_aec :=range _daaf {_bbbc =append (_bbbc ,_ea .MakeString (_aec .Str ()));};return _bbbc ;};func (_fgac *ContentStreamParser )parseNumber ()(_ea .PdfObject ,error ){return _ea .ParseNumber (_fgac ._edbd );}; +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_bece *ContentCreator )Add_K (c ,m ,y ,k float64 )*ContentCreator {_ebf :=ContentStreamOperation {};_ebf .Operand ="\u004b";_ebf .Params =_bdce ([]float64 {c ,m ,y ,k });_bece ._bg =append (_bece ._bg ,&_ebf );return _bece ;}; -// Add_f_starred appends 'f*' operand to the content stream. -// f*: Fill the path using the even-odd rule to determine fill region. +// ExtractText parses and extracts all text data in content streams and returns as a string. +// Does not take into account Encoding table, the output is simply the character codes. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_fffa *ContentCreator )Add_f_starred ()*ContentCreator {_fgaa :=ContentStreamOperation {};_fgaa .Operand ="\u0066\u002a";_fffa ._afa =append (_fffa ._afa ,&_fgaa );return _fffa ;};func (_dffb *ContentStreamParser )parseNull ()(_ea .PdfObjectNull ,error ){_ ,_fgce :=_dffb ._edbd .Discard (4); -return _ea .PdfObjectNull {},_fgce ;};func _fbd (_eeb *ContentStreamInlineImage )(*_ea .MultiEncoder ,error ){_dgg :=_ea .NewMultiEncoder ();var _cabd *_ea .PdfObjectDictionary ;var _dfg []_ea .PdfObject ;if _cda :=_eeb .DecodeParms ;_cda !=nil {_bfad ,_dgce :=_cda .(*_ea .PdfObjectDictionary ); -if _dgce {_cabd =_bfad ;};_aaa ,_cec :=_cda .(*_ea .PdfObjectArray );if _cec {for _ ,_cdd :=range _aaa .Elements (){if _dbfe ,_cg :=_cdd .(*_ea .PdfObjectDictionary );_cg {_dfg =append (_dfg ,_dbfe );}else {_dfg =append (_dfg ,nil );};};};};_fac :=_eeb .Filter ; -if _fac ==nil {return nil ,_db .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};_aef ,_beef :=_fac .(*_ea .PdfObjectArray );if !_beef {return nil ,_db .Errorf ("m\u0075\u006c\u0074\u0069\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0063\u0061\u006e\u0020\u006f\u006el\u0079\u0020\u0062\u0065\u0020\u006d\u0061\u0064\u0065\u0020fr\u006f\u006d\u0020a\u0072r\u0061\u0079"); -};for _cfg ,_ffff :=range _aef .Elements (){_ccf ,_abg :=_ffff .(*_ea .PdfObjectName );if !_abg {return nil ,_db .Errorf ("\u006d\u0075l\u0074\u0069\u0020\u0066i\u006c\u0074e\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u0020e\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061 \u006e\u0061\u006d\u0065"); -};var _bdbe _ea .PdfObject ;if _cabd !=nil {_bdbe =_cabd ;}else {if len (_dfg )> 0{if _cfg >=len (_dfg ){return nil ,_db .Errorf ("\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0065\u006c\u0065\u006d\u0065n\u0074\u0073\u0020\u0069\u006e\u0020d\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006d\u0073\u0020a\u0072\u0072\u0061\u0079"); -};_bdbe =_dfg [_cfg ];};};var _dada *_ea .PdfObjectDictionary ;if _bda ,_dda :=_bdbe .(*_ea .PdfObjectDictionary );_dda {_dada =_bda ;};if *_ccf ==_ea .StreamEncodingFilterNameFlate ||*_ccf =="\u0046\u006c"{_cgb ,_beec :=_bfd (_eeb ,_dada );if _beec !=nil {return nil ,_beec ; -};_dgg .AddEncoder (_cgb );}else if *_ccf ==_ea .StreamEncodingFilterNameLZW {_bebga ,_bga :=_dca (_eeb ,_dada );if _bga !=nil {return nil ,_bga ;};_dgg .AddEncoder (_bebga );}else if *_ccf ==_ea .StreamEncodingFilterNameASCIIHex {_cff :=_ea .NewASCIIHexEncoder (); -_dgg .AddEncoder (_cff );}else if *_ccf ==_ea .StreamEncodingFilterNameASCII85 ||*_ccf =="\u0041\u0038\u0035"{_bea :=_ea .NewASCII85Encoder ();_dgg .AddEncoder (_bea );}else {_ecg .Log .Error ("U\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0066\u0069l\u0074\u0065\u0072\u0020\u0025\u0073",*_ccf ); -return nil ,_db .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u0066\u0069\u006c\u0074er \u0069n \u006d\u0075\u006c\u0074\u0069\u0020\u0066il\u0074\u0065\u0072\u0020\u0061\u0072\u0072a\u0079");};};return _dgg ,nil ;}; +// Deprecated: More advanced text extraction is offered in package extractor with character encoding support. +func (_gae *ContentStreamParser )ExtractText ()(string ,error ){_bb ,_bae :=_gae .Parse ();if _bae !=nil {return "",_bae ;};_bag :=false ;_eb ,_fb :=float64 (-1),float64 (-1);_fa :="";for _ ,_ab :=range *_bb {if _ab .Operand =="\u0042\u0054"{_bag =true ; +}else if _ab .Operand =="\u0045\u0054"{_bag =false ;};if _ab .Operand =="\u0054\u0064"||_ab .Operand =="\u0054\u0044"||_ab .Operand =="\u0054\u002a"{_fa +="\u000a";};if _ab .Operand =="\u0054\u006d"{if len (_ab .Params )!=6{continue ;};_gb ,_fef :=_ab .Params [4].(*_dd .PdfObjectFloat ); +if !_fef {_bd ,_cad :=_ab .Params [4].(*_dd .PdfObjectInteger );if !_cad {continue ;};_gb =_dd .MakeFloat (float64 (*_bd ));};_ee ,_fef :=_ab .Params [5].(*_dd .PdfObjectFloat );if !_fef {_bbf ,_cce :=_ab .Params [5].(*_dd .PdfObjectInteger );if !_cce {continue ; +};_ee =_dd .MakeFloat (float64 (*_bbf ));};if _fb ==-1{_fb =float64 (*_ee );}else if _fb > float64 (*_ee ){_fa +="\u000a";_eb =float64 (*_gb );_fb =float64 (*_ee );continue ;};if _eb ==-1{_eb =float64 (*_gb );}else if _eb < float64 (*_gb ){_fa +="\u0009"; +_eb =float64 (*_gb );};};if _bag &&_ab .Operand =="\u0054\u004a"{if len (_ab .Params )< 1{continue ;};_df ,_ada :=_ab .Params [0].(*_dd .PdfObjectArray );if !_ada {return "",_ag .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0070\u0061r\u0061\u006d\u0065\u0074\u0065\u0072\u0020\u0074y\u0070\u0065\u002c\u0020\u006e\u006f\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025\u0054\u0029",_ab .Params [0]); +};for _ ,_fga :=range _df .Elements (){switch _cag :=_fga .(type ){case *_dd .PdfObjectString :_fa +=_cag .Str ();case *_dd .PdfObjectFloat :if *_cag < -100{_fa +="\u0020";};case *_dd .PdfObjectInteger :if *_cag < -100{_fa +="\u0020";};};};}else if _bag &&_ab .Operand =="\u0054\u006a"{if len (_ab .Params )< 1{continue ; +};_baa ,_fge :=_ab .Params [0].(*_dd .PdfObjectString );if !_fge {return "",_ag .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006de\u0074\u0065\u0072\u0020\u0074\u0079p\u0065\u002c\u0020\u006e\u006f\u0074\u0020\u0073\u0074\u0072\u0069\u006e\u0067 \u0028\u0025\u0054\u0029",_ab .Params [0]); +};_fa +=_baa .Str ();};};return _fa ,nil ;};func _ccabf (_ebcf _dd .PdfObject )(_ba .PdfColorspace ,error ){_gfdf ,_fabb :=_ebcf .(*_dd .PdfObjectArray );if !_fabb {_db .Log .Debug ("\u0045r\u0072\u006fr\u003a\u0020\u0049\u006ev\u0061\u006c\u0069d\u0020\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020cs\u0020\u006e\u006ft\u0020\u0069n\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025#\u0076\u0029",_ebcf ); +return nil ,_b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if _gfdf .Len ()!=4{_db .Log .Debug ("\u0045\u0072\u0072\u006f\u0072:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061r\u0072\u0061\u0079\u002c\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0034\u0020\u0028\u0025\u0064\u0029",_gfdf .Len ()); +return nil ,_b .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_eccb ,_fabb :=_gfdf .Get (0).(*_dd .PdfObjectName );if !_fabb {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0066\u0069\u0072s\u0074 \u0065\u006c\u0065\u006de\u006e\u0074 \u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0023\u0076\u0029",*_gfdf ); +return nil ,_b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if *_eccb !="\u0049"&&*_eccb !="\u0049n\u0064\u0065\u0078\u0065\u0064"{_db .Log .Debug ("\u0045\u0072r\u006f\u0072\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064 \u0063\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0021\u003d\u0020\u0049\u0020\u0028\u0067\u006f\u0074\u003a\u0020\u0025\u0076\u0029",*_eccb ); +return nil ,_b .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_eccb ,_fabb =_gfdf .Get (1).(*_dd .PdfObjectName );if !_fabb {_db .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061\u0072r\u0061\u0079\u0020\u0032\u006e\u0064\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0061\u0072\u0072a\u0079\u003a\u0020\u0025\u0023v\u0029",*_gfdf ); +return nil ,_b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if *_eccb !="\u0047"&&*_eccb !="\u0052\u0047\u0042"&&*_eccb !="\u0043\u004d\u0059\u004b"&&*_eccb !="\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"&&*_eccb !="\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B"&&*_eccb !="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"{_db .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0073\u0020\u0061\u0072r\u0061\u0079\u0020\u0032\u006e\u0064\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0021\u003d\u0020\u0047\u002f\u0052\u0047\u0042\u002f\u0043\u004d\u0059\u004b\u0020\u0028g\u006f\u0074\u003a\u0020\u0025v\u0029",*_eccb ); +return nil ,_b .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_aba :="";switch *_eccb {case "\u0047","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_aba ="\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"; +case "\u0052\u0047\u0042","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_aba ="\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B";case "\u0043\u004d\u0059\u004b","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_aba ="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"; +};_bcb :=_dd .MakeArray (_dd .MakeName ("\u0049n\u0064\u0065\u0078\u0065\u0064"),_dd .MakeName (_aba ),_gfdf .Get (2),_gfdf .Get (3));return _ba .NewPdfColorspaceFromPdfObject (_bcb );}; -// Add_j adds 'j' operand to the content stream: Set the line join style (graphics state). +// Add_quote appends "'" operand to the content stream: +// Move to next line and show a string. // -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_ebe *ContentCreator )Add_j (lineJoinStyle string )*ContentCreator {_bgca :=ContentStreamOperation {};_bgca .Operand ="\u006a";_bgca .Params =_gbg ([]_ea .PdfObjectName {_ea .PdfObjectName (lineJoinStyle )});_ebe ._afa =append (_ebe ._afa ,&_bgca ); -return _ebe ;}; +// See section 9.4.3 "Text Showing Operators" and +// Table 209 (pp. 258-259 PDF32000_2008). +func (_beb *ContentCreator )Add_quote (textstr _dd .PdfObjectString )*ContentCreator {_bcd :=ContentStreamOperation {};_bcd .Operand ="\u0027";_bcd .Params =_gab ([]_dd .PdfObjectString {textstr });_beb ._bg =append (_beb ._bg ,&_bcd );return _beb ;};func (_gef *ContentStreamProcessor )handleCommand_SCN (_dagd *ContentStreamOperation ,_egcb *_ba .PdfPageResources )error {_aaea :=_gef ._gea .ColorspaceStroking ; +if !_fgaaf (_aaea ){if len (_dagd .Params )!=_aaea .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_dagd .Params ),_aaea );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};};_bacb ,_eaee :=_aaea .ColorFromPdfObjects (_dagd .Params );if _eaee !=nil {return _eaee ;};_gef ._gea .ColorStroking =_bacb ;return nil ;}; -// Add_i adds 'i' operand to the content stream: Set the flatness tolerance in the graphics state. +// Add_Td appends 'Td' operand to the content stream: +// Move to start of next line with offset (`tx`, `ty`). // -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_be *ContentCreator )Add_i (flatness float64 )*ContentCreator {_eag :=ContentStreamOperation {};_eag .Operand ="\u0069";_eag .Params =_deaf ([]float64 {flatness });_be ._afa =append (_be ._afa ,&_eag );return _be ;};func (_gbbe *ContentStreamProcessor )handleCommand_RG (_abdd *ContentStreamOperation ,_dgbeg *_ge .PdfPageResources )error {_fgbb :=_ge .NewPdfColorspaceDeviceRGB (); -if len (_abdd .Params )!=_fgbb .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020R\u0047"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_abdd .Params ),_fgbb );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_ggcd ,_gdbb :=_fgbb .ColorFromPdfObjects (_abdd .Params );if _gdbb !=nil {return _gdbb ;};_gbbe ._ggfd .ColorspaceStroking =_fgbb ;_gbbe ._ggfd .ColorStroking =_ggcd ;return nil ;}; +// See section 9.4.2 "Text Positioning Operators" and +// Table 108 (pp. 257-258 PDF32000_2008). +func (_aeg *ContentCreator )Add_Td (tx ,ty float64 )*ContentCreator {_edg :=ContentStreamOperation {};_edg .Operand ="\u0054\u0064";_edg .Params =_bdce ([]float64 {tx ,ty });_aeg ._bg =append (_aeg ._bg ,&_edg );return _aeg ;}; -// Add_b appends 'b' operand to the content stream: -// Close, fill and then stroke the path (nonzero winding number rule). +// Add_s appends 's' operand to the content stream: Close and stroke the path. // // See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_aabd *ContentCreator )Add_b ()*ContentCreator {_ddb :=ContentStreamOperation {};_ddb .Operand ="\u0062";_aabd ._afa =append (_aabd ._afa ,&_ddb );return _aabd ;};func (_aaeg *ContentStreamProcessor )handleCommand_k (_gbfd *ContentStreamOperation ,_ffda *_ge .PdfPageResources )error {_ecec :=_ge .NewPdfColorspaceDeviceCMYK (); -if len (_gbfd .Params )!=_ecec .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_gbfd .Params ),_ecec );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_egcg ,_bgf :=_ecec .ColorFromPdfObjects (_gbfd .Params );if _bgf !=nil {return _bgf ;};_aaeg ._ggfd .ColorspaceNonStroking =_ecec ;_aaeg ._ggfd .ColorNonStroking =_egcg ;return nil ;}; +func (_gbe *ContentCreator )Add_s ()*ContentCreator {_aab :=ContentStreamOperation {};_aab .Operand ="\u0073";_gbe ._bg =append (_gbe ._bg ,&_aab );return _gbe ;}; + +// Transform returns coordinates x, y transformed by the CTM. +func (_dfce *GraphicsState )Transform (x ,y float64 )(float64 ,float64 ){return _dfce .CTM .Transform (x ,y );}; + +// Parse parses all commands in content stream, returning a list of operation data. +func (_cdgc *ContentStreamParser )Parse ()(*ContentStreamOperations ,error ){_gfad :=ContentStreamOperations {};for {_ffc :=ContentStreamOperation {};for {_fbg ,_fdbg ,_cbac :=_cdgc .parseObject ();if _cbac !=nil {if _cbac ==_ec .EOF {return &_gfad ,nil ; +};return &_gfad ,_cbac ;};if _fdbg {_ffc .Operand ,_ =_dd .GetStringVal (_fbg );_gfad =append (_gfad ,&_ffc );break ;}else {_ffc .Params =append (_ffc .Params ,_fbg );};};if _ffc .Operand =="\u0042\u0049"{_aeeb ,_bage :=_cdgc .ParseInlineImage ();if _bage !=nil {return &_gfad ,_bage ; +};_ffc .Params =append (_ffc .Params ,_aeeb );};};}; + +// Add_y appends 'y' operand to the content stream: Append a Bezier curve to the current path from the +// current point to (x3,y3) with (x1, y1) and (x3,y3) as control points. +// +// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). +func (_da *ContentCreator )Add_y (x1 ,y1 ,x3 ,y3 float64 )*ContentCreator {_afga :=ContentStreamOperation {};_afga .Operand ="\u0079";_afga .Params =_bdce ([]float64 {x1 ,y1 ,x3 ,y3 });_da ._bg =append (_da ._bg ,&_afga );return _da ;}; // Bytes converts the content stream operations to a content stream byte presentation, i.e. the kind that can be // stored as a PDF stream or string format. -func (_bca *ContentCreator )Bytes ()[]byte {return _bca ._afa .Bytes ()}; +func (_abd *ContentCreator )Bytes ()[]byte {return _abd ._bg .Bytes ()}; -// Add_BT appends 'BT' operand to the content stream: -// Begin text. +// Add_TL appends 'TL' operand to the content stream: +// Set leading. // -// See section 9.4 "Text Objects" and Table 107 (p. 256 PDF32000_2008). -func (_cafd *ContentCreator )Add_BT ()*ContentCreator {_cac :=ContentStreamOperation {};_cac .Operand ="\u0042\u0054";_cafd ._afa =append (_cafd ._afa ,&_cac );return _cafd ;}; +// See section 9.3 "Text State Parameters and Operators" and +// Table 105 (pp. 251-252 PDF32000_2008). +func (_dcdd *ContentCreator )Add_TL (leading float64 )*ContentCreator {_dcfe :=ContentStreamOperation {};_dcfe .Operand ="\u0054\u004c";_dcfe .Params =_bdce ([]float64 {leading });_dcdd ._bg =append (_dcdd ._bg ,&_dcfe );return _dcdd ;};func (_dee *ContentStreamProcessor )handleCommand_cs (_cefd *ContentStreamOperation ,_cbd *_ba .PdfPageResources )error {if len (_cefd .Params )< 1{_db .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0043\u0053\u0020\u0063\u006f\u006d\u006d\u0061\u006e\u0064\u002c\u0020s\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u006f\u0076\u0065\u0072"); +return _b .New ("\u0074o\u006f \u0066\u0065\u0077\u0020\u0070a\u0072\u0061m\u0065\u0074\u0065\u0072\u0073");};if len (_cefd .Params )> 1{_db .Log .Debug ("\u0043\u0053\u0020\u0063\u006f\u006d\u006d\u0061n\u0064\u0020\u0077it\u0068\u0020\u0074\u006f\u006f\u0020m\u0061\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020-\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075i\u006e\u0067"); +return _b .New ("\u0074\u006f\u006f\u0020ma\u006e\u0079\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073");};_cdce ,_aecg :=_cefd .Params [0].(*_dd .PdfObjectName );if !_aecg {_db .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020C\u0053\u0020\u0063o\u006d\u006d\u0061n\u0064\u0020w\u0069\u0074\u0068\u0020\u0069\u006ev\u0061li\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u002c\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006f\u0076\u0065\u0072"); +return _b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_aeed ,_gcdb :=_dee .getColorspace (string (*_cdce ),_cbd );if _gcdb !=nil {return _gcdb ;};_dee ._gea .ColorspaceNonStroking =_aeed ;_ffdf ,_gcdb :=_dee .getInitialColor (_aeed ); +if _gcdb !=nil {return _gcdb ;};_dee ._gea .ColorNonStroking =_ffdf ;return nil ;};func (_bfef *ContentStreamParser )parseOperand ()(*_dd .PdfObjectString ,error ){var _eaed []byte ;for {_gddc ,_gbd :=_bfef ._efe .Peek (1);if _gbd !=nil {return _dd .MakeString (string (_eaed )),_gbd ; +};if _dd .IsDelimiter (_gddc [0]){break ;};if _dd .IsWhiteSpace (_gddc [0]){break ;};_ebe ,_ :=_bfef ._efe .ReadByte ();_eaed =append (_eaed ,_ebe );};return _dd .MakeString (string (_eaed )),nil ;};func _dbd (_dae *ContentStreamInlineImage )(*_dd .DCTEncoder ,error ){_aeb :=_dd .NewDCTEncoder (); +_cdf :=_ge .NewReader (_dae ._ega );_edcg ,_feag :=_fg .DecodeConfig (_cdf );if _feag !=nil {_db .Log .Debug ("\u0045\u0072\u0072or\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0073",_feag );return nil ,_feag ; +};switch _edcg .ColorModel {case _f .RGBAModel :_aeb .BitsPerComponent =8;_aeb .ColorComponents =3;case _f .RGBA64Model :_aeb .BitsPerComponent =16;_aeb .ColorComponents =3;case _f .GrayModel :_aeb .BitsPerComponent =8;_aeb .ColorComponents =1;case _f .Gray16Model :_aeb .BitsPerComponent =16; +_aeb .ColorComponents =1;case _f .CMYKModel :_aeb .BitsPerComponent =8;_aeb .ColorComponents =4;case _f .YCbCrModel :_aeb .BitsPerComponent =8;_aeb .ColorComponents =3;default:return nil ,_b .New ("\u0075\u006e\u0073up\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006d\u006f\u0064\u0065\u006c"); +};_aeb .Width =_edcg .Width ;_aeb .Height =_edcg .Height ;_db .Log .Trace ("\u0044\u0043T\u0020\u0045\u006ec\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076",_aeb );return _aeb ,nil ;}; -// Add_B appends 'B' operand to the content stream: -// Fill and then stroke the path (nonzero winding number rule). +// Add_g appends 'g' operand to the content stream: +// Same as G but used for nonstroking operations. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_fab *ContentCreator )Add_B ()*ContentCreator {_ecaa :=ContentStreamOperation {};_ecaa .Operand ="\u0042";_fab ._afa =append (_fab ._afa ,&_ecaa );return _fab ;}; +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_fbed *ContentCreator )Add_g (gray float64 )*ContentCreator {_afgd :=ContentStreamOperation {};_afgd .Operand ="\u0067";_afgd .Params =_bdce ([]float64 {gray });_fbed ._bg =append (_fbed ._bg ,&_afgd );return _fbed ;}; -// Add_B_starred appends 'B*' operand to the content stream: -// Fill and then stroke the path (even-odd rule). +// Add_ET appends 'ET' operand to the content stream: +// End text. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_aabc *ContentCreator )Add_B_starred ()*ContentCreator {_gfc :=ContentStreamOperation {};_gfc .Operand ="\u0042\u002a";_aabc ._afa =append (_aabc ._afa ,&_gfc );return _aabc ;};const (HandlerConditionEnumOperand HandlerConditionEnum =iota ;HandlerConditionEnumAllOperands ; -); - -// String is same as Bytes() except returns as a string for convenience. -func (_cf *ContentCreator )String ()string {return string (_cf ._afa .Bytes ())}; +// See section 9.4 "Text Objects" and Table 107 (p. 256 PDF32000_2008). +func (_fdc *ContentCreator )Add_ET ()*ContentCreator {_ddc :=ContentStreamOperation {};_ddc .Operand ="\u0045\u0054";_fdc ._bg =append (_fdc ._bg ,&_ddc );return _fdc ;}; -// WrapIfNeeded wraps the entire contents within q ... Q. If unbalanced, then adds extra Qs at the end. -// Only does if needed. Ensures that when adding new content, one start with all states -// in the default condition. -func (_fe *ContentStreamOperations )WrapIfNeeded ()*ContentStreamOperations {if len (*_fe )==0{return _fe ;};if _fe .isWrapped (){return _fe ;};*_fe =append ([]*ContentStreamOperation {{Operand :"\u0071"}},*_fe ...);_c :=0;for _ ,_ac :=range *_fe {if _ac .Operand =="\u0071"{_c ++; -}else if _ac .Operand =="\u0051"{_c --;};};for _c > 0{*_fe =append (*_fe ,&ContentStreamOperation {Operand :"\u0051"});_c --;};return _fe ;}; +// Add_SCN_pattern appends 'SCN' operand to the content stream for pattern `name`: +// SCN with name attribute (for pattern). Syntax: c1 ... cn name SCN. +// +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_fafc *ContentCreator )Add_SCN_pattern (name _dd .PdfObjectName ,c ...float64 )*ContentCreator {_cga :=ContentStreamOperation {};_cga .Operand ="\u0053\u0043\u004e";_cga .Params =_bdce (c );_cga .Params =append (_cga .Params ,_dd .MakeName (string (name ))); +_fafc ._bg =append (_fafc ._bg ,&_cga );return _fafc ;}; -// Add_J adds 'J' operand to the content stream: Set the line cap style (graphics state). +// Add_Tz appends 'Tz' operand to the content stream: +// Set horizontal scaling. // -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_de *ContentCreator )Add_J (lineCapStyle string )*ContentCreator {_dbd :=ContentStreamOperation {};_dbd .Operand ="\u004a";_dbd .Params =_gbg ([]_ea .PdfObjectName {_ea .PdfObjectName (lineCapStyle )});_de ._afa =append (_de ._afa ,&_dbd );return _de ; -}; +// See section 9.3 "Text State Parameters and Operators" and +// Table 105 (pp. 251-252 PDF32000_2008). +func (_bbgg *ContentCreator )Add_Tz (scale float64 )*ContentCreator {_abf :=ContentStreamOperation {};_abf .Operand ="\u0054\u007a";_abf .Params =_bdce ([]float64 {scale });_bbgg ._bg =append (_bbgg ._bg ,&_abf );return _bbgg ;}; -// Add_d adds 'd' operand to the content stream: Set the line dash pattern. +// Add_BMC appends 'BMC' operand to the content stream: +// Begins a marked-content sequence terminated by a balancing EMC operator. +// `tag` shall be a name object indicating the role or significance of +// the sequence. // -// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_bdb *ContentCreator )Add_d (dashArray []int64 ,dashPhase int64 )*ContentCreator {_dg :=ContentStreamOperation {};_dg .Operand ="\u0064";_dg .Params =[]_ea .PdfObject {};_dg .Params =append (_dg .Params ,_ea .MakeArrayFromIntegers64 (dashArray )); -_dg .Params =append (_dg .Params ,_ea .MakeInteger (dashPhase ));_bdb ._afa =append (_bdb ._afa ,&_dg );return _bdb ;}; +// See section 14.6 "Marked Content" and Table 320 (p. 561 PDF32000_2008). +func (_aabg *ContentCreator )Add_BMC (tag _dd .PdfObjectName )*ContentCreator {_dgf :=ContentStreamOperation {};_dgf .Operand ="\u0042\u004d\u0043";_dgf .Params =_adbc ([]_dd .PdfObjectName {tag });_aabg ._bg =append (_aabg ._bg ,&_dgf );return _aabg ; +};func _gab (_cedf []_dd .PdfObjectString )[]_dd .PdfObject {var _fdfbd []_dd .PdfObject ;for _ ,_adce :=range _cedf {_fdfbd =append (_fdfbd ,_dd .MakeString (_adce .Str ()));};return _fdfbd ;}; -// Add_m adds 'm' operand to the content stream: Move the current point to (x,y). +// Add_W appends 'W' operand to the content stream: +// Modify the current clipping path by intersecting with the current path (nonzero winding rule). // -// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_bec *ContentCreator )Add_m (x ,y float64 )*ContentCreator {_fbg :=ContentStreamOperation {};_fbg .Operand ="\u006d";_fbg .Params =_deaf ([]float64 {x ,y });_bec ._afa =append (_bec ._afa ,&_fbg );return _bec ;};func (_efc *ContentStreamProcessor )handleCommand_rg (_gegb *ContentStreamOperation ,_gcd *_ge .PdfPageResources )error {_eaf :=_ge .NewPdfColorspaceDeviceRGB (); -if len (_gegb .Params )!=_eaf .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_gegb .Params ),_eaf );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_abbdg ,_bfda :=_eaf .ColorFromPdfObjects (_gegb .Params );if _bfda !=nil {return _bfda ;};_efc ._ggfd .ColorspaceNonStroking =_eaf ;_efc ._ggfd .ColorNonStroking =_abbdg ;return nil ;}; +// See section 8.5.4 "Clipping Path Operators" and Table 61 (p. 146 PDF32000_2008). +func (_edcd *ContentCreator )Add_W ()*ContentCreator {_eeb :=ContentStreamOperation {};_eeb .Operand ="\u0057";_edcd ._bg =append (_edcd ._bg ,&_eeb );return _edcd ;}; -// Add_y appends 'y' operand to the content stream: Append a Bezier curve to the current path from the -// current point to (x3,y3) with (x1, y1) and (x3,y3) as control points. +// Add_Tc appends 'Tc' operand to the content stream: +// Set character spacing. // -// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_aac *ContentCreator )Add_y (x1 ,y1 ,x3 ,y3 float64 )*ContentCreator {_ag :=ContentStreamOperation {};_ag .Operand ="\u0079";_ag .Params =_deaf ([]float64 {x1 ,y1 ,x3 ,y3 });_aac ._afa =append (_aac ._afa ,&_ag );return _aac ;};func _gbg (_gbc []_ea .PdfObjectName )[]_ea .PdfObject {var _bfde []_ea .PdfObject ; -for _ ,_gfafd :=range _gbc {_bfde =append (_bfde ,_ea .MakeName (string (_gfafd )));};return _bfde ;};var _gda =_d .MustCompile ("\u005e\u002f\u007b\u0032\u002c\u007d"); +// See section 9.3 "Text State Parameters and Operators" and +// Table 105 (pp. 251-252 PDF32000_2008). +func (_ffd *ContentCreator )Add_Tc (charSpace float64 )*ContentCreator {_gfd :=ContentStreamOperation {};_gfd .Operand ="\u0054\u0063";_gfd .Params =_bdce ([]float64 {charSpace });_ffd ._bg =append (_ffd ._bg ,&_gfd );return _ffd ;}; -// Add_quotes appends `"` operand to the content stream: -// Move to next line and show a string, using `aw` and `ac` as word -// and character spacing respectively. +// ContentStreamOperation represents an operation in PDF contentstream which consists of +// an operand and parameters. +type ContentStreamOperation struct{Params []_dd .PdfObject ;Operand string ;}; + +// Add_n appends 'n' operand to the content stream: +// End the path without filling or stroking. // -// See section 9.4.3 "Text Showing Operators" and -// Table 209 (pp. 258-259 PDF32000_2008). -func (_gebb *ContentCreator )Add_quotes (textstr _ea .PdfObjectString ,aw ,ac float64 )*ContentCreator {_cefc :=ContentStreamOperation {};_cefc .Operand ="\u0022";_cefc .Params =_deaf ([]float64 {aw ,ac });_cefc .Params =append (_cefc .Params ,_gdbe ([]_ea .PdfObjectString {textstr })...); -_gebb ._afa =append (_gebb ._afa ,&_cefc );return _gebb ;};func (_gfg *ContentStreamParser )parseString ()(*_ea .PdfObjectString ,error ){_gfg ._edbd .ReadByte ();var _bgea []byte ;_fggf :=1;for {_geg ,_dgge :=_gfg ._edbd .Peek (1);if _dgge !=nil {return _ea .MakeString (string (_bgea )),_dgge ; -};if _geg [0]=='\\'{_gfg ._edbd .ReadByte ();_gec ,_ffcc :=_gfg ._edbd .ReadByte ();if _ffcc !=nil {return _ea .MakeString (string (_bgea )),_ffcc ;};if _ea .IsOctalDigit (_gec ){_dga ,_ddaf :=_gfg ._edbd .Peek (2);if _ddaf !=nil {return _ea .MakeString (string (_bgea )),_ddaf ; -};var _cagc []byte ;_cagc =append (_cagc ,_gec );for _ ,_bbf :=range _dga {if _ea .IsOctalDigit (_bbf ){_cagc =append (_cagc ,_bbf );}else {break ;};};_gfg ._edbd .Discard (len (_cagc )-1);_ecg .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_cagc ); -_affd ,_ddaf :=_ff .ParseUint (string (_cagc ),8,32);if _ddaf !=nil {return _ea .MakeString (string (_bgea )),_ddaf ;};_bgea =append (_bgea ,byte (_affd ));continue ;};switch _gec {case 'n':_bgea =append (_bgea ,'\n');case 'r':_bgea =append (_bgea ,'\r'); -case 't':_bgea =append (_bgea ,'\t');case 'b':_bgea =append (_bgea ,'\b');case 'f':_bgea =append (_bgea ,'\f');case '(':_bgea =append (_bgea ,'(');case ')':_bgea =append (_bgea ,')');case '\\':_bgea =append (_bgea ,'\\');};continue ;}else if _geg [0]=='('{_fggf ++; -}else if _geg [0]==')'{_fggf --;if _fggf ==0{_gfg ._edbd .ReadByte ();break ;};};_bff ,_ :=_gfg ._edbd .ReadByte ();_bgea =append (_bgea ,_bff );};return _ea .MakeString (string (_bgea )),nil ;}; +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_adf *ContentCreator )Add_n ()*ContentCreator {_fbe :=ContentStreamOperation {};_fbe .Operand ="\u006e";_adf ._bg =append (_adf ._bg ,&_fbe );return _adf ;}; -// Add_EMC appends 'EMC' operand to the content stream: -// Ends a marked-content sequence. +// Add_M adds 'M' operand to the content stream: Set the miter limit (graphics state). // -// See section 14.6 "Marked Content" and Table 320 (p. 561 PDF32000_2008). -func (_fffee *ContentCreator )Add_EMC ()*ContentCreator {_ecc :=ContentStreamOperation {};_ecc .Operand ="\u0045\u004d\u0043";_fffee ._afa =append (_fffee ._afa ,&_ecc );return _fffee ;};type handlerEntry struct{Condition HandlerConditionEnum ;Operand string ; -Handler HandlerFunc ;};func (_bdfe *ContentStreamParser )parseBool ()(_ea .PdfObjectBool ,error ){_facg ,_bbec :=_bdfe ._edbd .Peek (4);if _bbec !=nil {return _ea .PdfObjectBool (false ),_bbec ;};if (len (_facg )>=4)&&(string (_facg [:4])=="\u0074\u0072\u0075\u0065"){_bdfe ._edbd .Discard (4); -return _ea .PdfObjectBool (true ),nil ;};_facg ,_bbec =_bdfe ._edbd .Peek (5);if _bbec !=nil {return _ea .PdfObjectBool (false ),_bbec ;};if (len (_facg )>=5)&&(string (_facg [:5])=="\u0066\u0061\u006cs\u0065"){_bdfe ._edbd .Discard (5);return _ea .PdfObjectBool (false ),nil ; -};return _ea .PdfObjectBool (false ),_f .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg");};func _bfd (_bebg *ContentStreamInlineImage ,_fec *_ea .PdfObjectDictionary )(*_ea .FlateEncoder ,error ){_affb :=_ea .NewFlateEncoder (); -if _bebg ._fad !=nil {_affb .SetImage (_bebg ._fad );};if _fec ==nil {_fgd :=_bebg .DecodeParms ;if _fgd !=nil {_edc ,_cdba :=_ea .GetDict (_fgd );if !_cdba {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079 \u0028%\u0054\u0029",_fgd ); -return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};_fec =_edc ;};};if _fec ==nil {return _affb ,nil ;};_ecg .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_fec .String ()); -_bdba :=_fec .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr");if _bdba ==nil {_ecg .Log .Debug ("E\u0072\u0072o\u0072\u003a\u0020\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0066\u0072\u006f\u006d\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073 \u002d\u0020\u0043\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020\u0077\u0069t\u0068\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u00281\u0029"); -}else {_adf ,_gee :=_bdba .(*_ea .PdfObjectInteger );if !_gee {_ecg .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_bdba ); -return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_affb .Predictor =int (*_adf );};_bdba =_fec .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -if _bdba !=nil {_caff ,_ccc :=_bdba .(*_ea .PdfObjectInteger );if !_ccc {_ecg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -return nil ,_db .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_affb .BitsPerComponent =int (*_caff );};if _affb .Predictor > 1{_affb .Columns =1;_bdba =_fec .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"); -if _bdba !=nil {_fgc ,_fffd :=_bdba .(*_ea .PdfObjectInteger );if !_fffd {return nil ,_db .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_affb .Columns =int (*_fgc ); -};_affb .Colors =1;_dce :=_fec .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _dce !=nil {_ead ,_bee :=_dce .(*_ea .PdfObjectInteger );if !_bee {return nil ,_db .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); -};_affb .Colors =int (*_ead );};};return _affb ,nil ;}; +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_fdg *ContentCreator )Add_M (miterlimit float64 )*ContentCreator {_dde :=ContentStreamOperation {};_dde .Operand ="\u004d";_dde .Params =_bdce ([]float64 {miterlimit });_fdg ._bg =append (_fdg ._bg ,&_dde );return _fdg ;}; -// NewContentStreamProcessor returns a new ContentStreamProcessor for operations `ops`. -func NewContentStreamProcessor (ops []*ContentStreamOperation )*ContentStreamProcessor {_bcea :=ContentStreamProcessor {};_bcea ._edaf =GraphicStateStack {};_egca :=GraphicsState {};_bcea ._ggfd =_egca ;_bcea ._ccab =[]handlerEntry {};_bcea ._dggef =0; -_bcea ._dbac =ops ;return &_bcea ;}; +// Add_W_starred appends 'W*' operand to the content stream: +// Modify the current clipping path by intersecting with the current path (even odd rule). +// +// See section 8.5.4 "Clipping Path Operators" and Table 61 (p. 146 PDF32000_2008). +func (_bea *ContentCreator )Add_W_starred ()*ContentCreator {_eed :=ContentStreamOperation {};_eed .Operand ="\u0057\u002a";_bea ._bg =append (_bea ._bg ,&_eed );return _bea ;};func _cge (_cfd *ContentStreamInlineImage ,_eecd *_dd .PdfObjectDictionary )(*_dd .LZWEncoder ,error ){_ffa :=_dd .NewLZWEncoder (); +if _eecd ==nil {if _cfd .DecodeParms !=nil {_cfe ,_abe :=_dd .GetDict (_cfd .DecodeParms );if !_abe {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079 \u0028%\u0054\u0029",_cfd .DecodeParms ); +return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};_eecd =_cfe ;};};if _eecd ==nil {return _ffa ,nil ;};_dfge :=_eecd .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065"); +if _dfge !=nil {_fea ,_dgc :=_dfge .(*_dd .PdfObjectInteger );if !_dgc {_db .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a \u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u006e\u0075\u006d\u0065\u0072i\u0063 \u0028\u0025\u0054\u0029",_dfge ); +return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065");};if *_fea !=0&&*_fea !=1{return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0076\u0061\u006c\u0075e\u0020\u0028\u006e\u006f\u0074 \u0030\u0020o\u0072\u0020\u0031\u0029"); +};_ffa .EarlyChange =int (*_fea );}else {_ffa .EarlyChange =1;};_dfge =_eecd .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr");if _dfge !=nil {_acee ,_bade :=_dfge .(*_dd .PdfObjectInteger );if !_bade {_db .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_dfge ); +return nil ,_ag .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_ffa .Predictor =int (*_acee );};_dfge =_eecd .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +if _dfge !=nil {_eab ,_aag :=_dfge .(*_dd .PdfObjectInteger );if !_aag {_db .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +return nil ,_ag .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_ffa .BitsPerComponent =int (*_eab );};if _ffa .Predictor > 1{_ffa .Columns =1;_dfge =_eecd .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"); +if _dfge !=nil {_bfeb ,_ebcb :=_dfge .(*_dd .PdfObjectInteger );if !_ebcb {return nil ,_ag .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_ffa .Columns =int (*_bfeb ); +};_ffa .Colors =1;_dfge =_eecd .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _dfge !=nil {_ggbc ,_ccdd :=_dfge .(*_dd .PdfObjectInteger );if !_ccdd {return nil ,_ag .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); +};_ffa .Colors =int (*_ggbc );};};_db .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_eecd .String ());return _ffa ,nil ;}; -// All returns true if `hce` is equivalent to HandlerConditionEnumAllOperands. -func (_dagb HandlerConditionEnum )All ()bool {return _dagb ==HandlerConditionEnumAllOperands }; +// Bytes converts a set of content stream operations to a content stream byte presentation, +// i.e. the kind that can be stored as a PDF stream or string format. +func (_bac *ContentStreamOperations )Bytes ()[]byte {var _cg _ge .Buffer ;for _ ,_ga :=range *_bac {if _ga ==nil {continue ;};if _ga .Operand =="\u0042\u0049"{_cg .WriteString (_ga .Operand +"\u000a");_cg .WriteString (_ga .Params [0].WriteString ());}else {for _ ,_ae :=range _ga .Params {_cg .WriteString (_ae .WriteString ()); +_cg .WriteString ("\u0020");};_cg .WriteString (_ga .Operand +"\u000a");};};return _cg .Bytes ();};func _cfc (_ace *ContentStreamInlineImage )(_dd .StreamEncoder ,error ){if _ace .Filter ==nil {return _dd .NewRawEncoder (),nil ;};_gd ,_cbb :=_ace .Filter .(*_dd .PdfObjectName ); +if !_cbb {_egc ,_acf :=_ace .Filter .(*_dd .PdfObjectArray );if !_acf {return nil ,_ag .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072 \u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0072 \u0041\u0072\u0072\u0061\u0079\u0020\u006fb\u006a\u0065\u0063\u0074"); +};if _egc .Len ()==0{return _dd .NewRawEncoder (),nil ;};if _egc .Len ()!=1{_beae ,_dgb :=_ggbb (_ace );if _dgb !=nil {_db .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0063\u0072\u0065\u0061\u0074\u0069\u006e\u0067\u0020\u006d\u0075\u006c\u0074i\u0020\u0065\u006e\u0063\u006f\u0064\u0065r\u003a\u0020\u0025\u0076",_dgb ); +return nil ,_dgb ;};_db .Log .Trace ("\u004d\u0075\u006c\u0074\u0069\u0020\u0065\u006e\u0063:\u0020\u0025\u0073\u000a",_beae );return _beae ,nil ;};_ggb :=_egc .Get (0);_gd ,_acf =_ggb .(*_dd .PdfObjectName );if !_acf {return nil ,_ag .Errorf ("\u0066\u0069l\u0074\u0065\u0072\u0020a\u0072\u0072a\u0079\u0020\u006d\u0065\u006d\u0062\u0065\u0072 \u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006fb\u006a\u0065\u0063\u0074"); +};};switch *_gd {case "\u0041\u0048\u0078","\u0041\u0053\u0043\u0049\u0049\u0048\u0065\u0078\u0044e\u0063\u006f\u0064\u0065":return _dd .NewASCIIHexEncoder (),nil ;case "\u0041\u0038\u0035","\u0041\u0053\u0043\u0049\u0049\u0038\u0035\u0044\u0065\u0063\u006f\u0064\u0065":return _dd .NewASCII85Encoder (),nil ; +case "\u0044\u0043\u0054","\u0044C\u0054\u0044\u0065\u0063\u006f\u0064e":return _dbd (_ace );case "\u0046\u006c","F\u006c\u0061\u0074\u0065\u0044\u0065\u0063\u006f\u0064\u0065":return _ccda (_ace ,nil );case "\u004c\u005a\u0057","\u004cZ\u0057\u0044\u0065\u0063\u006f\u0064e":return _cge (_ace ,nil ); +case "\u0043\u0043\u0046","\u0043\u0043\u0049\u0054\u0054\u0046\u0061\u0078\u0044e\u0063\u006f\u0064\u0065":return _dd .NewCCITTFaxEncoder (),nil ;case "\u0052\u004c","\u0052u\u006eL\u0065\u006e\u0067\u0074\u0068\u0044\u0065\u0063\u006f\u0064\u0065":return _dd .NewRunLengthEncoder (),nil ; +default:_db .Log .Debug ("\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u006c\u0069\u006e\u0065 \u0069\u006d\u0061\u0067\u0065\u0020\u0065n\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0074e\u0072\u0020\u006e\u0061\u006d\u0065\u0020\u003a\u0020\u0025\u0073",*_gd ); +return nil ,_b .New ("\u0075\u006e\u0073up\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006el\u0069n\u0065 \u0065n\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006f\u0064");};};func (_gbae *ContentStreamProcessor )handleCommand_g (_dgbe *ContentStreamOperation ,_ccab *_ba .PdfPageResources )error {_dgbc :=_ba .NewPdfColorspaceDeviceGray (); +if len (_dgbe .Params )!=_dgbc .GetNumComponents (){_db .Log .Debug ("\u0049\u006e\u0076al\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072 \u006ff\u0020p\u0061r\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0067");_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_dgbe .Params ),_dgbc ); +return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073");};_ebfa ,_adg :=_dgbc .ColorFromPdfObjects (_dgbe .Params );if _adg !=nil {_db .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0068\u0061\u006e\u0064\u006c\u0065\u0043o\u006d\u006d\u0061\u006e\u0064\u005f\u0067\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061r\u0061\u006d\u0073\u002e\u0020c\u0073\u003d\u0025\u0054\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_dgbc ,_dgbe ,_adg ); +return _adg ;};_gbae ._gea .ColorspaceNonStroking =_dgbc ;_gbae ._gea .ColorNonStroking =_ebfa ;return nil ;}; -// AddHandler adds a new ContentStreamProcessor `handler` of type `condition` for `operand`. -func (_acge *ContentStreamProcessor )AddHandler (condition HandlerConditionEnum ,operand string ,handler HandlerFunc ){_gbbb :=handlerEntry {};_gbbb .Condition =condition ;_gbbb .Operand =operand ;_gbbb .Handler =handler ;_acge ._ccab =append (_acge ._ccab ,_gbbb ); -}; +// Operations returns the list of operations. +func (_bbg *ContentCreator )Operations ()*ContentStreamOperations {return &_bbg ._bg }; -// Add_S appends 'S' operand to the content stream: Stroke the path. +// Add_Tstar appends 'T*' operand to the content stream: +// Move to the start of next line. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_ege *ContentCreator )Add_S ()*ContentCreator {_bcag :=ContentStreamOperation {};_bcag .Operand ="\u0053";_ege ._afa =append (_ege ._afa ,&_bcag );return _ege ;}; - -// RotateDeg applies a rotation to the transformation matrix. -func (_fga *ContentCreator )RotateDeg (angle float64 )*ContentCreator {_dad :=_gc .Cos (angle *_gc .Pi /180.0);_ebg :=_gc .Sin (angle *_gc .Pi /180.0);_afb :=-_gc .Sin (angle *_gc .Pi /180.0);_ggf :=_gc .Cos (angle *_gc .Pi /180.0);return _fga .Add_cm (_dad ,_ebg ,_afb ,_ggf ,0,0); -}; +// See section 9.4.2 "Text Positioning Operators" and +// Table 108 (pp. 257-258 PDF32000_2008). +func (_bba *ContentCreator )Add_Tstar ()*ContentCreator {_bgfb :=ContentStreamOperation {};_bgfb .Operand ="\u0054\u002a";_bba ._bg =append (_bba ._bg ,&_bgfb );return _bba ;}; -// Transform returns coordinates x, y transformed by the CTM. -func (_accf *GraphicsState )Transform (x ,y float64 )(float64 ,float64 ){return _accf .CTM .Transform (x ,y );};func (_efbd *ContentStreamProcessor )handleCommand_SC (_aba *ContentStreamOperation ,_fgfc *_ge .PdfPageResources )error {_bfaeg :=_efbd ._ggfd .ColorspaceStroking ; -if len (_aba .Params )!=_bfaeg .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_aba .Params ),_bfaeg );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_edga ,_acgd :=_bfaeg .ColorFromPdfObjects (_aba .Params );if _acgd !=nil {return _acgd ;};_efbd ._ggfd .ColorStroking =_edga ;return nil ;}; +// WriteString outputs the object as it is to be written to file. +func (_bde *ContentStreamInlineImage )WriteString ()string {var _gfg _ge .Buffer ;_fgaa :="";if _bde .BitsPerComponent !=nil {_fgaa +="\u002f\u0042\u0050C\u0020"+_bde .BitsPerComponent .WriteString ()+"\u000a";};if _bde .ColorSpace !=nil {_fgaa +="\u002f\u0043\u0053\u0020"+_bde .ColorSpace .WriteString ()+"\u000a"; +};if _bde .Decode !=nil {_fgaa +="\u002f\u0044\u0020"+_bde .Decode .WriteString ()+"\u000a";};if _bde .DecodeParms !=nil {_fgaa +="\u002f\u0044\u0050\u0020"+_bde .DecodeParms .WriteString ()+"\u000a";};if _bde .Filter !=nil {_fgaa +="\u002f\u0046\u0020"+_bde .Filter .WriteString ()+"\u000a"; +};if _bde .Height !=nil {_fgaa +="\u002f\u0048\u0020"+_bde .Height .WriteString ()+"\u000a";};if _bde .ImageMask !=nil {_fgaa +="\u002f\u0049\u004d\u0020"+_bde .ImageMask .WriteString ()+"\u000a";};if _bde .Intent !=nil {_fgaa +="\u002f\u0049\u006e\u0074\u0065\u006e\u0074\u0020"+_bde .Intent .WriteString ()+"\u000a"; +};if _bde .Interpolate !=nil {_fgaa +="\u002f\u0049\u0020"+_bde .Interpolate .WriteString ()+"\u000a";};if _bde .Width !=nil {_fgaa +="\u002f\u0057\u0020"+_bde .Width .WriteString ()+"\u000a";};_gfg .WriteString (_fgaa );_gfg .WriteString ("\u0049\u0044\u0020"); +_gfg .Write (_bde ._ega );_gfg .WriteString ("\u000a\u0045\u0049\u000a");return _gfg .String ();};func (_fecfc *ContentStreamProcessor )handleCommand_cm (_gac *ContentStreamOperation ,_fdgd *_ba .PdfPageResources )error {if len (_gac .Params )!=6{_db .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0063\u006d\u003a\u0020\u0025\u0064",len (_gac .Params )); +return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073");};_aga ,_dgcgd :=_dd .GetNumbersAsFloat (_gac .Params );if _dgcgd !=nil {return _dgcgd ; +};_fbbc :=_bc .NewMatrix (_aga [0],_aga [1],_aga [2],_aga [3],_aga [4],_aga [5]);_fecfc ._gea .CTM .Concat (_fbbc );return nil ;}; -// NewContentCreator returns a new initialized ContentCreator. -func NewContentCreator ()*ContentCreator {_gf :=&ContentCreator {};_gf ._afa =ContentStreamOperations {};return _gf ;}; +// Add_cm adds 'cm' operation to the content stream: Modifies the current transformation matrix (ctm) +// of the graphics state. +// +// See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). +func (_cbc *ContentCreator )Add_cm (a ,b ,c ,d ,e ,f float64 )*ContentCreator {_bcab :=ContentStreamOperation {};_bcab .Operand ="\u0063\u006d";_bcab .Params =_bdce ([]float64 {a ,b ,c ,d ,e ,f });_cbc ._bg =append (_cbc ._bg ,&_bcab );return _cbc ;}; -// Add_h appends 'h' operand to the content stream: -// Close the current subpath by adding a line between the current position and the starting position. +// Add_Do adds 'Do' operation to the content stream: +// Displays an XObject (image or form) specified by `name`. // -// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). -func (_dee *ContentCreator )Add_h ()*ContentCreator {_aga :=ContentStreamOperation {};_aga .Operand ="\u0068";_dee ._afa =append (_dee ._afa ,&_aga );return _dee ;}; +// See section 8.8 "External Objects" and Table 87 (pp. 209-220 PDF32000_2008). +func (_dcd *ContentCreator )Add_Do (name _dd .PdfObjectName )*ContentCreator {_ead :=ContentStreamOperation {};_ead .Operand ="\u0044\u006f";_ead .Params =_adbc ([]_dd .PdfObjectName {name });_dcd ._bg =append (_dcd ._bg ,&_ead );return _dcd ;}; -// Add_b_starred appends 'b*' operand to the content stream: -// Close, fill and then stroke the path (even-odd winding number rule). +// Add_c adds 'c' operand to the content stream: Append a Bezier curve to the current path from +// the current point to (x3,y3) with (x1,x1) and (x2,y2) as control points. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_beb *ContentCreator )Add_b_starred ()*ContentCreator {_egee :=ContentStreamOperation {};_egee .Operand ="\u0062\u002a";_beb ._afa =append (_beb ._afa ,&_egee );return _beb ;}; +// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). +func (_eag *ContentCreator )Add_c (x1 ,y1 ,x2 ,y2 ,x3 ,y3 float64 )*ContentCreator {_bad :=ContentStreamOperation {};_bad .Operand ="\u0063";_bad .Params =_bdce ([]float64 {x1 ,y1 ,x2 ,y2 ,x3 ,y3 });_eag ._bg =append (_eag ._bg ,&_bad );return _eag ;}; -// Translate applies a simple x-y translation to the transformation matrix. -func (_ae *ContentCreator )Translate (tx ,ty float64 )*ContentCreator {return _ae .Add_cm (1,0,0,1,tx ,ty );}; -// Scale applies x-y scaling to the transformation matrix. -func (_dbe *ContentCreator )Scale (sx ,sy float64 )*ContentCreator {return _dbe .Add_cm (sx ,0,0,sy ,0,0);}; +// Add_Tf appends 'Tf' operand to the content stream: +// Set font and font size specified by font resource `fontName` and `fontSize`. +// +// See section 9.3 "Text State Parameters and Operators" and +// Table 105 (pp. 251-252 PDF32000_2008). +func (_gaf *ContentCreator )Add_Tf (fontName _dd .PdfObjectName ,fontSize float64 )*ContentCreator {_faba :=ContentStreamOperation {};_faba .Operand ="\u0054\u0066";_faba .Params =_adbc ([]_dd .PdfObjectName {fontName });_faba .Params =append (_faba .Params ,_bdce ([]float64 {fontSize })...); +_gaf ._bg =append (_gaf ._bg ,&_faba );return _gaf ;};func _fgaaf (_eee _ba .PdfColorspace )bool {_ ,_gfde :=_eee .(*_ba .PdfColorspaceSpecialPattern );return _gfde ;}; -// GraphicsState is a basic graphics state implementation for PDF processing. -// Initially only implementing and tracking a portion of the information specified. Easy to add more. -type GraphicsState struct{ColorspaceStroking _ge .PdfColorspace ;ColorspaceNonStroking _ge .PdfColorspace ;ColorStroking _ge .PdfColor ;ColorNonStroking _ge .PdfColor ;CTM _eg .Matrix ;}; +// Add_SCN appends 'SCN' operand to the content stream: +// Same as SC but supports more colorspaces. +// +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_aae *ContentCreator )Add_SCN (c ...float64 )*ContentCreator {_ddf :=ContentStreamOperation {};_ddf .Operand ="\u0053\u0043\u004e";_ddf .Params =_bdce (c );_aae ._bg =append (_aae ._bg ,&_ddf );return _aae ;}; -// Add_K appends 'K' operand to the content stream: -// Set the stroking colorspace to DeviceCMYK and sets the c,m,y,k color (0-1 each component). +// Add_cs appends 'cs' operand to the content stream: +// Same as CS but for non-stroking operations. // // See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_bab *ContentCreator )Add_K (c ,m ,y ,k float64 )*ContentCreator {_bgd :=ContentStreamOperation {};_bgd .Operand ="\u004b";_bgd .Params =_deaf ([]float64 {c ,m ,y ,k });_bab ._afa =append (_bab ._afa ,&_bgd );return _bab ;}; +func (_ecf *ContentCreator )Add_cs (name _dd .PdfObjectName )*ContentCreator {_adb :=ContentStreamOperation {};_adb .Operand ="\u0063\u0073";_adb .Params =_adbc ([]_dd .PdfObjectName {name });_ecf ._bg =append (_ecf ._bg ,&_adb );return _ecf ;}; -// ContentStreamOperation represents an operation in PDF contentstream which consists of -// an operand and parameters. -type ContentStreamOperation struct{Params []_ea .PdfObject ;Operand string ;}; +// ContentStreamOperations is a slice of ContentStreamOperations. +type ContentStreamOperations []*ContentStreamOperation ; -// Add_ET appends 'ET' operand to the content stream: -// End text. +// Add_m adds 'm' operand to the content stream: Move the current point to (x,y). // -// See section 9.4 "Text Objects" and Table 107 (p. 256 PDF32000_2008). -func (_aad *ContentCreator )Add_ET ()*ContentCreator {_acc :=ContentStreamOperation {};_acc .Operand ="\u0045\u0054";_aad ._afa =append (_aad ._afa ,&_acc );return _aad ;}; +// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). +func (_bfd *ContentCreator )Add_m (x ,y float64 )*ContentCreator {_bga :=ContentStreamOperation {};_bga .Operand ="\u006d";_bga .Params =_bdce ([]float64 {x ,y });_bfd ._bg =append (_bfd ._bg ,&_bga );return _bfd ;}; -// Add_q adds 'q' operand to the content stream: Pushes the current graphics state on the stack. +// Add_gs adds 'gs' operand to the content stream: Set the graphics state. // // See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_eec *ContentCreator )Add_q ()*ContentCreator {_gdf :=ContentStreamOperation {};_gdf .Operand ="\u0071";_eec ._afa =append (_eec ._afa ,&_gdf );return _eec ;};func (_cfge *ContentStreamProcessor )getColorspace (_fagf string ,_abfd *_ge .PdfPageResources )(_ge .PdfColorspace ,error ){switch _fagf {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":return _ge .NewPdfColorspaceDeviceGray (),nil ; -case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":return _ge .NewPdfColorspaceDeviceRGB (),nil ;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return _ge .NewPdfColorspaceDeviceCMYK (),nil ;case "\u0050a\u0074\u0074\u0065\u0072\u006e":return _ge .NewPdfColorspaceSpecialPattern (),nil ; -};_gcgg ,_fcff :=_abfd .GetColorspaceByName (_ea .PdfObjectName (_fagf ));if _fcff {return _gcgg ,nil ;};switch _fagf {case "\u0043a\u006c\u0047\u0072\u0061\u0079":return _ge .NewPdfColorspaceCalGray (),nil ;case "\u0043\u0061\u006c\u0052\u0047\u0042":return _ge .NewPdfColorspaceCalRGB (),nil ; -case "\u004c\u0061\u0062":return _ge .NewPdfColorspaceLab (),nil ;};_ecg .Log .Debug ("\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063e\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074\u0065\u0064\u003a\u0020\u0025\u0073",_fagf ); -return nil ,_db .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065:\u0020\u0025\u0073",_fagf );};func (_fdca *ContentStreamProcessor )handleCommand_cm (_abdf *ContentStreamOperation ,_abbg *_ge .PdfPageResources )error {if len (_abdf .Params )!=6{_ecg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0063\u006d\u003a\u0020\u0025\u0064",len (_abdf .Params )); -return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073");};_agbg ,_dabd :=_ea .GetNumbersAsFloat (_abdf .Params );if _dabd !=nil {return _dabd ; -};_efdb :=_eg .NewMatrix (_agbg [0],_agbg [1],_agbg [2],_agbg [3],_agbg [4],_agbg [5]);_fdca ._ggfd .CTM .Concat (_efdb );return nil ;}; +func (_dcf *ContentCreator )Add_gs (dictName _dd .PdfObjectName )*ContentCreator {_cac :=ContentStreamOperation {};_cac .Operand ="\u0067\u0073";_cac .Params =_adbc ([]_dd .PdfObjectName {dictName });_dcf ._bg =append (_dcf ._bg ,&_cac );return _dcf ;}; -// Operand returns true if `hce` is equivalent to HandlerConditionEnumOperand. -func (_ace HandlerConditionEnum )Operand ()bool {return _ace ==HandlerConditionEnumOperand };func (_aafe *ContentStreamProcessor )handleCommand_SCN (_aeee *ContentStreamOperation ,_aafb *_ge .PdfPageResources )error {_cfcd :=_aafe ._ggfd .ColorspaceStroking ; -if !_fde (_cfcd ){if len (_aeee .Params )!=_cfcd .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_aeee .Params ),_cfcd );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};};_abbdc ,_ccdg :=_cfcd .ColorFromPdfObjects (_aeee .Params );if _ccdg !=nil {return _ccdg ;};_aafe ._ggfd .ColorStroking =_abbdc ;return nil ;};func _fdb (_gcg *ContentStreamInlineImage )(*_ea .DCTEncoder ,error ){_gaa :=_ea .NewDCTEncoder ();_fbcg :=_ec .NewReader (_gcg ._ebb ); -_cfa ,_dfc :=_fff .DecodeConfig (_fbcg );if _dfc !=nil {_ecg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0073",_dfc );return nil ,_dfc ;};switch _cfa .ColorModel {case _b .RGBAModel :_gaa .BitsPerComponent =8; -_gaa .ColorComponents =3;case _b .RGBA64Model :_gaa .BitsPerComponent =16;_gaa .ColorComponents =3;case _b .GrayModel :_gaa .BitsPerComponent =8;_gaa .ColorComponents =1;case _b .Gray16Model :_gaa .BitsPerComponent =16;_gaa .ColorComponents =1;case _b .CMYKModel :_gaa .BitsPerComponent =8; -_gaa .ColorComponents =4;case _b .YCbCrModel :_gaa .BitsPerComponent =8;_gaa .ColorComponents =3;default:return nil ,_f .New ("\u0075\u006e\u0073up\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006d\u006f\u0064\u0065\u006c"); -};_gaa .Width =_cfa .Width ;_gaa .Height =_cfa .Height ;_ecg .Log .Trace ("\u0044\u0043T\u0020\u0045\u006ec\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076",_gaa );return _gaa ,nil ;}; + +// Add_f appends 'f' operand to the content stream: +// Fill the path using the nonzero winding number rule to determine fill region. +// +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_fcc *ContentCreator )Add_f ()*ContentCreator {_gaee :=ContentStreamOperation {};_gaee .Operand ="\u0066";_fcc ._bg =append (_fcc ._bg ,&_gaee );return _fcc ;}; + +// Add_CS appends 'CS' operand to the content stream: +// Set the current colorspace for stroking operations. +// +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_eff *ContentCreator )Add_CS (name _dd .PdfObjectName )*ContentCreator {_dea :=ContentStreamOperation {};_dea .Operand ="\u0043\u0053";_dea .Params =_adbc ([]_dd .PdfObjectName {name });_eff ._bg =append (_eff ._bg ,&_dea );return _eff ;}; + +// Add_quotes appends `"` operand to the content stream: +// Move to next line and show a string, using `aw` and `ac` as word +// and character spacing respectively. +// +// See section 9.4.3 "Text Showing Operators" and +// Table 209 (pp. 258-259 PDF32000_2008). +func (_ddcb *ContentCreator )Add_quotes (textstr _dd .PdfObjectString ,aw ,ac float64 )*ContentCreator {_fca :=ContentStreamOperation {};_fca .Operand ="\u0022";_fca .Params =_bdce ([]float64 {aw ,ac });_fca .Params =append (_fca .Params ,_gab ([]_dd .PdfObjectString {textstr })...); +_ddcb ._bg =append (_ddcb ._bg ,&_fca );return _ddcb ;}; // Add_scn appends 'scn' operand to the content stream: // Same as SC but for nonstroking operations. // // See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_bgcg *ContentCreator )Add_scn (c ...float64 )*ContentCreator {_acb :=ContentStreamOperation {};_acb .Operand ="\u0073\u0063\u006e";_acb .Params =_deaf (c );_bgcg ._afa =append (_bgcg ._afa ,&_acb );return _bgcg ;}; +func (_aaa *ContentCreator )Add_scn (c ...float64 )*ContentCreator {_gbc :=ContentStreamOperation {};_gbc .Operand ="\u0073\u0063\u006e";_gbc .Params =_bdce (c );_aaa ._bg =append (_aaa ._bg ,&_gbc );return _aaa ;}; -// Operations returns the list of operations. -func (_ad *ContentCreator )Operations ()*ContentStreamOperations {return &_ad ._afa };func (_afac *ContentStreamParser )skipComments ()error {if _ ,_bef :=_afac .skipSpaces ();_bef !=nil {return _bef ;};_gfcg :=true ;for {_gbde ,_agef :=_afac ._edbd .Peek (1); -if _agef !=nil {_ecg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_agef .Error ());return _agef ;};if _gfcg &&_gbde [0]!='%'{return nil ;};_gfcg =false ;if (_gbde [0]!='\r')&&(_gbde [0]!='\n'){_afac ._edbd .ReadByte ();}else {break ; -};};return _afac .skipComments ();};func (_egb *ContentStreamOperations )isWrapped ()bool {if len (*_egb )< 2{return false ;};_ba :=0;for _ ,_da :=range *_egb {if _da .Operand =="\u0071"{_ba ++;}else if _da .Operand =="\u0051"{_ba --;}else {if _ba < 1{return false ; -};};};return _ba ==0;};var (ErrInvalidOperand =_f .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064");ErrEarlyExit =_f .New ("\u0074\u0065\u0072\u006di\u006e\u0061\u0074\u0065\u0020\u0070\u0072\u006f\u0063\u0065s\u0073 \u0065\u0061\u0072\u006c\u0079\u0020\u0065x\u0069\u0074"); -); +// AddHandler adds a new ContentStreamProcessor `handler` of type `condition` for `operand`. +func (_ecc *ContentStreamProcessor )AddHandler (condition HandlerConditionEnum ,operand string ,handler HandlerFunc ){_ecce :=handlerEntry {};_ecce .Condition =condition ;_ecce .Operand =operand ;_ecce .Handler =handler ;_ecc ._efbe =append (_ecc ._efbe ,_ecce ); +}; -// Add_M adds 'M' operand to the content stream: Set the miter limit (graphics state). +// Add_Q adds 'Q' operand to the content stream: Pops the most recently stored state from the stack. // // See section 8.4.4 "Graphic State Operators" and Table 57 (pp. 135-136 PDF32000_2008). -func (_ebf *ContentCreator )Add_M (miterlimit float64 )*ContentCreator {_eea :=ContentStreamOperation {};_eea .Operand ="\u004d";_eea .Params =_deaf ([]float64 {miterlimit });_ebf ._afa =append (_ebf ._afa ,&_eea );return _ebf ;}; - -// Add_Tw appends 'Tw' operand to the content stream: -// Set word spacing. -// -// See section 9.3 "Text State Parameters and Operators" and -// Table 105 (pp. 251-252 PDF32000_2008). -func (_bbe *ContentCreator )Add_Tw (wordSpace float64 )*ContentCreator {_ebee :=ContentStreamOperation {};_ebee .Operand ="\u0054\u0077";_ebee .Params =_deaf ([]float64 {wordSpace });_bbe ._afa =append (_bbe ._afa ,&_ebee );return _bbe ;};func (_dcad *ContentStreamProcessor )handleCommand_K (_ebda *ContentStreamOperation ,_daa *_ge .PdfPageResources )error {_bdfea :=_ge .NewPdfColorspaceDeviceCMYK (); -if len (_ebda .Params )!=_bdfea .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_ebda .Params ),_bdfea );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_effe ,_bgeb :=_bdfea .ColorFromPdfObjects (_ebda .Params );if _bgeb !=nil {return _bgeb ;};_dcad ._ggfd .ColorspaceStroking =_bdfea ;_dcad ._ggfd .ColorStroking =_effe ;return nil ;}; +func (_edb *ContentCreator )Add_Q ()*ContentCreator {_bbb :=ContentStreamOperation {};_bbb .Operand ="\u0051";_edb ._bg =append (_edb ._bg ,&_bbb );return _edb ;};const (HandlerConditionEnumOperand HandlerConditionEnum =iota ;HandlerConditionEnumAllOperands ; +); -// HandlerConditionEnum represents the type of operand content stream processor (handler). -// The handler may process a single specific named operand or all operands. -type HandlerConditionEnum int ; +// RotateDeg applies a rotation to the transformation matrix. +func (_bdc *ContentCreator )RotateDeg (angle float64 )*ContentCreator {_agd :=_ff .Cos (angle *_ff .Pi /180.0);_dbcd :=_ff .Sin (angle *_ff .Pi /180.0);_bgc :=-_ff .Sin (angle *_ff .Pi /180.0);_fd :=_ff .Cos (angle *_ff .Pi /180.0);return _bdc .Add_cm (_agd ,_dbcd ,_bgc ,_fd ,0,0); +}; -// Add_f appends 'f' operand to the content stream: -// Fill the path using the nonzero winding number rule to determine fill region. +// Add_rg appends 'rg' operand to the content stream: +// Same as RG but used for nonstroking operations. // -// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). -func (_gga *ContentCreator )Add_f ()*ContentCreator {_dfd :=ContentStreamOperation {};_dfd .Operand ="\u0066";_gga ._afa =append (_gga ._afa ,&_dfd );return _gga ;};var _fcf =map[string ]struct{}{"\u0062":struct{}{},"\u0042":struct{}{},"\u0062\u002a":struct{}{},"\u0042\u002a":struct{}{},"\u0042\u0044\u0043":struct{}{},"\u0042\u0049":struct{}{},"\u0042\u004d\u0043":struct{}{},"\u0042\u0054":struct{}{},"\u0042\u0058":struct{}{},"\u0063":struct{}{},"\u0063\u006d":struct{}{},"\u0043\u0053":struct{}{},"\u0063\u0073":struct{}{},"\u0064":struct{}{},"\u0064\u0030":struct{}{},"\u0064\u0031":struct{}{},"\u0044\u006f":struct{}{},"\u0044\u0050":struct{}{},"\u0045\u0049":struct{}{},"\u0045\u004d\u0043":struct{}{},"\u0045\u0054":struct{}{},"\u0045\u0058":struct{}{},"\u0066":struct{}{},"\u0046":struct{}{},"\u0066\u002a":struct{}{},"\u0047":struct{}{},"\u0067":struct{}{},"\u0067\u0073":struct{}{},"\u0068":struct{}{},"\u0069":struct{}{},"\u0049\u0044":struct{}{},"\u006a":struct{}{},"\u004a":struct{}{},"\u004b":struct{}{},"\u006b":struct{}{},"\u006c":struct{}{},"\u006d":struct{}{},"\u004d":struct{}{},"\u004d\u0050":struct{}{},"\u006e":struct{}{},"\u0071":struct{}{},"\u0051":struct{}{},"\u0072\u0065":struct{}{},"\u0052\u0047":struct{}{},"\u0072\u0067":struct{}{},"\u0072\u0069":struct{}{},"\u0073":struct{}{},"\u0053":struct{}{},"\u0053\u0043":struct{}{},"\u0073\u0063":struct{}{},"\u0053\u0043\u004e":struct{}{},"\u0073\u0063\u006e":struct{}{},"\u0073\u0068":struct{}{},"\u0054\u002a":struct{}{},"\u0054\u0063":struct{}{},"\u0054\u0064":struct{}{},"\u0054\u0044":struct{}{},"\u0054\u0066":struct{}{},"\u0054\u006a":struct{}{},"\u0054\u004a":struct{}{},"\u0054\u004c":struct{}{},"\u0054\u006d":struct{}{},"\u0054\u0072":struct{}{},"\u0054\u0073":struct{}{},"\u0054\u0077":struct{}{},"\u0054\u007a":struct{}{},"\u0076":struct{}{},"\u0077":struct{}{},"\u0057":struct{}{},"\u0057\u002a":struct{}{},"\u0079":struct{}{},"\u0027":struct{}{},"\u0022":struct{}{}}; -func (_becg *ContentStreamParser )parseHexString ()(*_ea .PdfObjectString ,error ){_becg ._edbd .ReadByte ();_baba :=[]byte ("\u0030\u0031\u0032\u003345\u0036\u0037\u0038\u0039\u0061\u0062\u0063\u0064\u0065\u0066\u0041\u0042\u0043\u0044E\u0046");var _bggcb []byte ; -for {_becg .skipSpaces ();_gdc ,_fbb :=_becg ._edbd .Peek (1);if _fbb !=nil {return _ea .MakeString (""),_fbb ;};if _gdc [0]=='>'{_becg ._edbd .ReadByte ();break ;};_fadcg ,_ :=_becg ._edbd .ReadByte ();if _ec .IndexByte (_baba ,_fadcg )>=0{_bggcb =append (_bggcb ,_fadcg ); -};};if len (_bggcb )%2==1{_bggcb =append (_bggcb ,'0');};_cbe ,_ :=_e .DecodeString (string (_bggcb ));return _ea .MakeHexString (string (_cbe )),nil ;}; +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_fdf *ContentCreator )Add_rg (r ,g ,b float64 )*ContentCreator {_gcd :=ContentStreamOperation {};_gcd .Operand ="\u0072\u0067";_gcd .Params =_bdce ([]float64 {r ,g ,b });_fdf ._bg =append (_fdf ._bg ,&_gcd );return _fdf ;}; -// Add_W appends 'W' operand to the content stream: -// Modify the current clipping path by intersecting with the current path (nonzero winding rule). +// Add_re appends 're' operand to the content stream: +// Append a rectangle to the current path as a complete subpath, with lower left corner (x,y). // -// See section 8.5.4 "Clipping Path Operators" and Table 61 (p. 146 PDF32000_2008). -func (_cfc *ContentCreator )Add_W ()*ContentCreator {_gge :=ContentStreamOperation {};_gge .Operand ="\u0057";_cfc ._afa =append (_cfc ._afa ,&_gge );return _cfc ;};func _fde (_fgag _ge .PdfColorspace )bool {_ ,_afe :=_fgag .(*_ge .PdfColorspaceSpecialPattern ); -return _afe ;};func _bfgb (_cag string )bool {_ ,_eba :=_fcf [_cag ];return _eba };func (_dbacc *ContentStreamProcessor )handleCommand_sc (_egaf *ContentStreamOperation ,_egaa *_ge .PdfPageResources )error {_debg :=_dbacc ._ggfd .ColorspaceNonStroking ; -if !_fde (_debg ){if len (_egaf .Params )!=_debg .GetNumComponents (){_ecg .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); -_ecg .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_egaf .Params ),_debg );return _f .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};};_acca ,_dab :=_debg .ColorFromPdfObjects (_egaf .Params );if _dab !=nil {return _dab ;};_dbacc ._ggfd .ColorNonStroking =_acca ;return nil ;}; +// See section 8.5.2 "Path Construction Operators" and Table 59 (pp. 140-141 PDF32000_2008). +func (_ccd *ContentCreator )Add_re (x ,y ,width ,height float64 )*ContentCreator {_ccc :=ContentStreamOperation {};_ccc .Operand ="\u0072\u0065";_ccc .Params =_bdce ([]float64 {x ,y ,width ,height });_ccd ._bg =append (_ccd ._bg ,&_ccc );return _ccd ;}; +func (_bfb *ContentStreamParser )parseBool ()(_dd .PdfObjectBool ,error ){_cdb ,_gccf :=_bfb ._efe .Peek (4);if _gccf !=nil {return _dd .PdfObjectBool (false ),_gccf ;};if (len (_cdb )>=4)&&(string (_cdb [:4])=="\u0074\u0072\u0075\u0065"){_bfb ._efe .Discard (4); +return _dd .PdfObjectBool (true ),nil ;};_cdb ,_gccf =_bfb ._efe .Peek (5);if _gccf !=nil {return _dd .PdfObjectBool (false ),_gccf ;};if (len (_cdb )>=5)&&(string (_cdb [:5])=="\u0066\u0061\u006cs\u0065"){_bfb ._efe .Discard (5);return _dd .PdfObjectBool (false ),nil ; +};return _dd .PdfObjectBool (false ),_b .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg");}; -// ContentStreamProcessor defines a data structure and methods for processing a content stream, keeping track of the -// current graphics state, and allowing external handlers to define their own functions as a part of the processing, -// for example rendering or extracting certain information. -type ContentStreamProcessor struct{_edaf GraphicStateStack ;_dbac []*ContentStreamOperation ;_ggfd GraphicsState ;_ccab []handlerEntry ;_dggef int ;}; +// Add_RG appends 'RG' operand to the content stream: +// Set the stroking colorspace to DeviceRGB and sets the r,g,b colors (0-1 each). +// +// See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). +func (_bbc *ContentCreator )Add_RG (r ,g ,b float64 )*ContentCreator {_bgf :=ContentStreamOperation {};_bgf .Operand ="\u0052\u0047";_bgf .Params =_bdce ([]float64 {r ,g ,b });_bbc ._bg =append (_bbc ._bg ,&_bgf );return _bbc ;}; -// Add_rg appends 'rg' operand to the content stream: -// Same as RG but used for nonstroking operations. +// Add_G appends 'G' operand to the content stream: +// Set the stroking colorspace to DeviceGray and sets the gray level (0-1). // // See section 8.6.8 "Colour Operators" and Table 74 (p. 179-180 PDF32000_2008). -func (_gef *ContentCreator )Add_rg (r ,g ,b float64 )*ContentCreator {_bce :=ContentStreamOperation {};_bce .Operand ="\u0072\u0067";_bce .Params =_deaf ([]float64 {r ,g ,b });_gef ._afa =append (_gef ._afa ,&_bce );return _gef ;}; +func (_gcc *ContentCreator )Add_G (gray float64 )*ContentCreator {_bgca :=ContentStreamOperation {};_bgca .Operand ="\u0047";_bgca .Params =_bdce ([]float64 {gray });_gcc ._bg =append (_gcc ._bg ,&_bgca );return _gcc ;}; -// Add_Tstar appends 'T*' operand to the content stream: -// Move to the start of next line. +// String is same as Bytes() except returns as a string for convenience. +func (_add *ContentCreator )String ()string {return string (_add ._bg .Bytes ())}; + +// Add_b appends 'b' operand to the content stream: +// Close, fill and then stroke the path (nonzero winding number rule). // -// See section 9.4.2 "Text Positioning Operators" and -// Table 108 (pp. 257-258 PDF32000_2008). -func (_gbb *ContentCreator )Add_Tstar ()*ContentCreator {_cfcg :=ContentStreamOperation {};_cfcg .Operand ="\u0054\u002a";_gbb ._afa =append (_gbb ._afa ,&_cfcg );return _gbb ;}; +// See section 8.5.3 "Path Painting Operators" and Table 60 (p. 143 PDF32000_2008). +func (_cgc *ContentCreator )Add_b ()*ContentCreator {_dg :=ContentStreamOperation {};_dg .Operand ="\u0062";_cgc ._bg =append (_cgc ._bg ,&_dg );return _cgc ;};func (_egef *ContentStreamParser )skipComments ()error {if _ ,_cgcag :=_egef .skipSpaces (); +_cgcag !=nil {return _cgcag ;};_gec :=true ;for {_dgff ,_bbga :=_egef ._efe .Peek (1);if _bbga !=nil {_db .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_bbga .Error ());return _bbga ;};if _gec &&_dgff [0]!='%'{return nil ;};_gec =false ; +if (_dgff [0]!='\r')&&(_dgff [0]!='\n'){_egef ._efe .ReadByte ();}else {break ;};};return _egef .skipComments ();};func (_afgf *ContentStreamProcessor )handleCommand_K (_egf *ContentStreamOperation ,_cdba *_ba .PdfPageResources )error {_egba :=_ba .NewPdfColorspaceDeviceCMYK (); +if len (_egf .Params )!=_egba .GetNumComponents (){_db .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006e\u0075\u006d\u0062\u0065\u0072 \u006f\u0066\u0020\u0070\u0061\u0072\u0061m\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020S\u0043"); +_db .Log .Debug ("\u004e\u0075mb\u0065\u0072\u0020%\u0064\u0020\u006e\u006ft m\u0061tc\u0068\u0069\u006e\u0067\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0054",len (_egf .Params ),_egba );return _b .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};_cfbc ,_eac :=_egba .ColorFromPdfObjects (_egf .Params );if _eac !=nil {return _eac ;};_afgf ._gea .ColorspaceStroking =_egba ;_afgf ._gea .ColorStroking =_cfbc ;return nil ;}; -// WriteString outputs the object as it is to be written to file. -func (_fffad *ContentStreamInlineImage )WriteString ()string {var _deg _ec .Buffer ;_cccg :="";if _fffad .BitsPerComponent !=nil {_cccg +="\u002f\u0042\u0050C\u0020"+_fffad .BitsPerComponent .WriteString ()+"\u000a";};if _fffad .ColorSpace !=nil {_cccg +="\u002f\u0043\u0053\u0020"+_fffad .ColorSpace .WriteString ()+"\u000a"; -};if _fffad .Decode !=nil {_cccg +="\u002f\u0044\u0020"+_fffad .Decode .WriteString ()+"\u000a";};if _fffad .DecodeParms !=nil {_cccg +="\u002f\u0044\u0050\u0020"+_fffad .DecodeParms .WriteString ()+"\u000a";};if _fffad .Filter !=nil {_cccg +="\u002f\u0046\u0020"+_fffad .Filter .WriteString ()+"\u000a"; -};if _fffad .Height !=nil {_cccg +="\u002f\u0048\u0020"+_fffad .Height .WriteString ()+"\u000a";};if _fffad .ImageMask !=nil {_cccg +="\u002f\u0049\u004d\u0020"+_fffad .ImageMask .WriteString ()+"\u000a";};if _fffad .Intent !=nil {_cccg +="\u002f\u0049\u006e\u0074\u0065\u006e\u0074\u0020"+_fffad .Intent .WriteString ()+"\u000a"; -};if _fffad .Interpolate !=nil {_cccg +="\u002f\u0049\u0020"+_fffad .Interpolate .WriteString ()+"\u000a";};if _fffad .Width !=nil {_cccg +="\u002f\u0057\u0020"+_fffad .Width .WriteString ()+"\u000a";};_deg .WriteString (_cccg );_deg .WriteString ("\u0049\u0044\u0020"); -_deg .Write (_fffad ._ebb );_deg .WriteString ("\u000a\u0045\u0049\u000a");return _deg .String ();}; \ No newline at end of file +// IsMask checks if an image is a mask. +// The image mask entry in the image dictionary specifies that the image data shall be used as a stencil +// mask for painting in the current color. The mask data is 1bpc, grayscale. +func (_febfa *ContentStreamInlineImage )IsMask ()(bool ,error ){if _febfa .ImageMask !=nil {_dca ,_ccb :=_febfa .ImageMask .(*_dd .PdfObjectBool );if !_ccb {_db .Log .Debug ("\u0049m\u0061\u0067\u0065\u0020\u006d\u0061\u0073\u006b\u0020\u006e\u006ft\u0020\u0061\u0020\u0062\u006f\u006f\u006c\u0065\u0061\u006e"); +return false ,_b .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065");};return bool (*_dca ),nil ;};return false ,nil ;}; + +// Wrap ensures that the contentstream is wrapped within a balanced q ... Q expression. +func (_cf *ContentCreator )Wrap (){_cf ._bg .WrapIfNeeded ()}; \ No newline at end of file diff --git a/contentstream/draw/draw.go b/contentstream/draw/draw.go index b2c466db9..978fc74f3 100644 --- a/contentstream/draw/draw.go +++ b/contentstream/draw/draw.go @@ -14,144 +14,177 @@ // page content streams and XObject forms and thus also in annotation appearance streams. // // Also defines utility functions for drawing common shapes such as rectangles, lines and circles (ovals). -package draw ;import (_ge "fmt";_a "github.com/unidoc/unipdf/v3/contentstream";_c "github.com/unidoc/unipdf/v3/core";_d "github.com/unidoc/unipdf/v3/internal/transform";_b "github.com/unidoc/unipdf/v3/model";_g "math";); +package draw ;import (_ff "fmt";_fc "github.com/unidoc/unipdf/v3/contentstream";_eg "github.com/unidoc/unipdf/v3/core";_egg "github.com/unidoc/unipdf/v3/internal/transform";_e "github.com/unidoc/unipdf/v3/model";_d "math";); -// GetBounds returns the bounding box of the Bezier curve. -func (_eg CubicBezierCurve )GetBounds ()_b .PdfRectangle {_ag :=_eg .P0 .X ;_ef :=_eg .P0 .X ;_ac :=_eg .P0 .Y ;_f :=_eg .P0 .Y ;for _ce :=0.0;_ce <=1.0;_ce +=0.001{Rx :=_eg .P0 .X *_g .Pow (1-_ce ,3)+_eg .P1 .X *3*_ce *_g .Pow (1-_ce ,2)+_eg .P2 .X *3*_g .Pow (_ce ,2)*(1-_ce )+_eg .P3 .X *_g .Pow (_ce ,3); -Ry :=_eg .P0 .Y *_g .Pow (1-_ce ,3)+_eg .P1 .Y *3*_ce *_g .Pow (1-_ce ,2)+_eg .P2 .Y *3*_g .Pow (_ce ,2)*(1-_ce )+_eg .P3 .Y *_g .Pow (_ce ,3);if Rx < _ag {_ag =Rx ;};if Rx > _ef {_ef =Rx ;};if Ry < _ac {_ac =Ry ;};if Ry > _f {_f =Ry ;};};_bf :=_b .PdfRectangle {}; -_bf .Llx =_ag ;_bf .Lly =_ac ;_bf .Urx =_ef ;_bf .Ury =_f ;return _bf ;}; +// NewCubicBezierPath returns a new empty cubic Bezier path. +func NewCubicBezierPath ()CubicBezierPath {_bg :=CubicBezierPath {};_bg .Curves =[]CubicBezierCurve {};return _bg ;};func (_dd Point )String ()string {return _ff .Sprintf ("(\u0025\u002e\u0031\u0066\u002c\u0025\u002e\u0031\u0066\u0029",_dd .X ,_dd .Y ); +}; -// Copy returns a clone of the Bezier path. -func (_gd CubicBezierPath )Copy ()CubicBezierPath {_fd :=CubicBezierPath {};_fd .Curves =append (_fd .Curves ,_gd .Curves ...);return _fd ;}; +// ToPdfRectangle returns the rectangle as a PDF rectangle. +func (_aga Rectangle )ToPdfRectangle ()*_e .PdfRectangle {return &_e .PdfRectangle {Llx :_aga .X ,Lly :_aga .Y ,Urx :_aga .X +_aga .Width ,Ury :_aga .Y +_aga .Height };}; -// LineStyle refers to how the line will be created. -type LineStyle int ; +// BoundingBox represents the smallest rectangular area that encapsulates an object. +type BoundingBox struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;}; -// Offset shifts the Bezier path with the specified offsets. -func (_fg CubicBezierPath )Offset (offX ,offY float64 )CubicBezierPath {for _gg ,_ff :=range _fg .Curves {_fg .Curves [_gg ]=_ff .AddOffsetXY (offX ,offY );};return _fg ;}; +// Draw draws the composite Bezier curve. A graphics state name can be +// specified for setting the curve properties (e.g. setting the opacity). +// Otherwise leave empty (""). Returns the content stream as a byte array and +// the curve bounding box. +func (_dge PolyBezierCurve )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){if _dge .BorderColor ==nil {_dge .BorderColor =_e .NewPdfColorDeviceRGB (0,0,0);};_fdf :=NewCubicBezierPath ();for _ ,_fcf :=range _dge .Curves {_fdf =_fdf .AppendCurve (_fcf ); +};_aaaga :=_fc .NewContentCreator ();_aaaga .Add_q ();_dge .FillEnabled =_dge .FillEnabled &&_dge .FillColor !=nil ;if _dge .FillEnabled {_aaaga .SetNonStrokingColor (_dge .FillColor );};_aaaga .SetStrokingColor (_dge .BorderColor );_aaaga .Add_w (_dge .BorderWidth ); +if len (gsName )> 1{_aaaga .Add_gs (_eg .PdfObjectName (gsName ));};for _gc ,_ccef :=range _fdf .Curves {if _gc ==0{_aaaga .Add_m (_ccef .P0 .X ,_ccef .P0 .Y );}else {_aaaga .Add_l (_ccef .P0 .X ,_ccef .P0 .Y );};_aaaga .Add_c (_ccef .P1 .X ,_ccef .P1 .Y ,_ccef .P2 .X ,_ccef .P2 .Y ,_ccef .P3 .X ,_ccef .P3 .Y ); +};if _dge .FillEnabled {_aaaga .Add_h ();_aaaga .Add_B ();}else {_aaaga .Add_S ();};_aaaga .Add_Q ();return _aaaga .Bytes (),_fdf .GetBoundingBox ().ToPdfRectangle (),nil ;}; -// AddOffsetXY adds X,Y offset to all points on a curve. -func (_dc CubicBezierCurve )AddOffsetXY (offX ,offY float64 )CubicBezierCurve {_dc .P0 .X +=offX ;_dc .P1 .X +=offX ;_dc .P2 .X +=offX ;_dc .P3 .X +=offX ;_dc .P0 .Y +=offY ;_dc .P1 .Y +=offY ;_dc .P2 .Y +=offY ;_dc .P3 .Y +=offY ;return _dc ;}; +// Path consists of straight line connections between each point defined in an array of points. +type Path struct{Points []Point ;}; -// Magnitude returns the magnitude of the vector. -func (_dce Vector )Magnitude ()float64 {return _g .Sqrt (_g .Pow (_dce .Dx ,2.0)+_g .Pow (_dce .Dy ,2.0))}; +// Draw draws the basic line to PDF. Generates the content stream which can be used in page contents or appearance +// stream of annotation. Returns the stream content, XForm bounding box (local), bounding box and an error if +// one occurred. +func (_agc BasicLine )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){_db :=NewPath ();_db =_db .AppendPoint (NewPoint (_agc .X1 ,_agc .Y1 ));_db =_db .AppendPoint (NewPoint (_agc .X2 ,_agc .Y2 ));_baac :=_fc .NewContentCreator ();_baac .Add_q ().Add_w (_agc .LineWidth ).SetStrokingColor (_agc .LineColor ); +if _agc .LineStyle ==LineStyleDashed {if _agc .DashArray ==nil {_agc .DashArray =[]int64 {1,1};};_baac .Add_d (_agc .DashArray ,_agc .DashPhase );};if len (gsName )> 1{_baac .Add_gs (_eg .PdfObjectName (gsName ));};DrawPathWithCreator (_db ,_baac );_baac .Add_S ().Add_Q (); +return _baac .Bytes (),_db .GetBoundingBox ().ToPdfRectangle (),nil ;};const (LineStyleSolid LineStyle =0;LineStyleDashed LineStyle =1;); -// Draw draws the polygon. A graphics state name can be specified for -// setting the polygon properties (e.g. setting the opacity). Otherwise leave -// empty (""). Returns the content stream as a byte array and the polygon -// bounding box. -func (_aca Polygon )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){_aebd :=_a .NewContentCreator ();_aebd .Add_q ();_aca .FillEnabled =_aca .FillEnabled &&_aca .FillColor !=nil ;if _aca .FillEnabled {_aebd .SetNonStrokingColor (_aca .FillColor ); -};_aca .BorderEnabled =_aca .BorderEnabled &&_aca .BorderColor !=nil ;if _aca .BorderEnabled {_aebd .SetStrokingColor (_aca .BorderColor );_aebd .Add_w (_aca .BorderWidth );};if len (gsName )> 1{_aebd .Add_gs (_c .PdfObjectName (gsName ));};_gce :=NewPath (); -for _ ,_ecc :=range _aca .Points {for _cea ,_bbc :=range _ecc {_gce =_gce .AppendPoint (_bbc );if _cea ==0{_aebd .Add_m (_bbc .X ,_bbc .Y );}else {_aebd .Add_l (_bbc .X ,_bbc .Y );};};_aebd .Add_h ();};if _aca .FillEnabled &&_aca .BorderEnabled {_aebd .Add_B (); -}else if _aca .FillEnabled {_aebd .Add_f ();}else if _aca .BorderEnabled {_aebd .Add_S ();};_aebd .Add_Q ();return _aebd .Bytes (),_gce .GetBoundingBox ().ToPdfRectangle (),nil ;}; +// NewCubicBezierCurve returns a new cubic Bezier curve. +func NewCubicBezierCurve (x0 ,y0 ,x1 ,y1 ,x2 ,y2 ,x3 ,y3 float64 )CubicBezierCurve {_a :=CubicBezierCurve {};_a .P0 =NewPoint (x0 ,y0 );_a .P1 =NewPoint (x1 ,y1 );_a .P2 =NewPoint (x2 ,y2 );_a .P3 =NewPoint (x3 ,y3 );return _a ;}; -// Rotate returns a new Point at `p` rotated by `theta` degrees. -func (_cc Point )Rotate (theta float64 )Point {_cbf :=_d .NewPoint (_cc .X ,_cc .Y ).Rotate (theta );return NewPoint (_cbf .X ,_cbf .Y );}; +// Offset shifts the path with the specified offsets. +func (_cg Path )Offset (offX ,offY float64 )Path {for _cb ,_fec :=range _cg .Points {_cg .Points [_cb ]=_fec .Add (offX ,offY );};return _cg ;}; + +// AddOffsetXY adds X,Y offset to all points on a curve. +func (_b CubicBezierCurve )AddOffsetXY (offX ,offY float64 )CubicBezierCurve {_b .P0 .X +=offX ;_b .P1 .X +=offX ;_b .P2 .X +=offX ;_b .P3 .X +=offX ;_b .P0 .Y +=offY ;_b .P1 .Y +=offY ;_b .P2 .Y +=offY ;_b .P3 .Y +=offY ;return _b ;}; + +// FlipY flips the sign of the Dy component of the vector. +func (_cgf Vector )FlipY ()Vector {_cgf .Dy =-_cgf .Dy ;return _cgf }; // Draw draws the composite curve polygon. A graphics state name can be // specified for setting the curve properties (e.g. setting the opacity). // Otherwise leave empty (""). Returns the content stream as a byte array // and the bounding box of the polygon. -func (_aeg CurvePolygon )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){_afa :=_a .NewContentCreator ();_afa .Add_q ();_aeg .FillEnabled =_aeg .FillEnabled &&_aeg .FillColor !=nil ;if _aeg .FillEnabled {_afa .SetNonStrokingColor (_aeg .FillColor ); -};_aeg .BorderEnabled =_aeg .BorderEnabled &&_aeg .BorderColor !=nil ;if _aeg .BorderEnabled {_afa .SetStrokingColor (_aeg .BorderColor );_afa .Add_w (_aeg .BorderWidth );};if len (gsName )> 1{_afa .Add_gs (_c .PdfObjectName (gsName ));};_bgd :=NewCubicBezierPath (); -for _ ,_fdg :=range _aeg .Rings {for _fce ,_gfd :=range _fdg {if _fce ==0{_afa .Add_m (_gfd .P0 .X ,_gfd .P0 .Y );}else {_afa .Add_l (_gfd .P0 .X ,_gfd .P0 .Y );};_afa .Add_c (_gfd .P1 .X ,_gfd .P1 .Y ,_gfd .P2 .X ,_gfd .P2 .Y ,_gfd .P3 .X ,_gfd .P3 .Y ); -_bgd =_bgd .AppendCurve (_gfd );};_afa .Add_h ();};if _aeg .FillEnabled &&_aeg .BorderEnabled {_afa .Add_B ();}else if _aeg .FillEnabled {_afa .Add_f ();}else if _aeg .BorderEnabled {_afa .Add_S ();};_afa .Add_Q ();return _afa .Bytes (),_bgd .GetBoundingBox ().ToPdfRectangle (),nil ; -};func (_gcb Point )String ()string {return _ge .Sprintf ("(\u0025\u002e\u0031\u0066\u002c\u0025\u002e\u0031\u0066\u0029",_gcb .X ,_gcb .Y );}; - -// GetBoundingBox returns the bounding box of the Bezier path. -func (_dd CubicBezierPath )GetBoundingBox ()Rectangle {_ae :=Rectangle {};_gc :=0.0;_fdb :=0.0;_ab :=0.0;_cb :=0.0;for _efc ,_ed :=range _dd .Curves {_abd :=_ed .GetBounds ();if _efc ==0{_gc =_abd .Llx ;_fdb =_abd .Urx ;_ab =_abd .Lly ;_cb =_abd .Ury ; -continue ;};if _abd .Llx < _gc {_gc =_abd .Llx ;};if _abd .Urx > _fdb {_fdb =_abd .Urx ;};if _abd .Lly < _ab {_ab =_abd .Lly ;};if _abd .Ury > _cb {_cb =_abd .Ury ;};};_ae .X =_gc ;_ae .Y =_ab ;_ae .Width =_fdb -_gc ;_ae .Height =_cb -_ab ;return _ae ; +func (_ce CurvePolygon )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){_efb :=_fc .NewContentCreator ();_efb .Add_q ();_ce .FillEnabled =_ce .FillEnabled &&_ce .FillColor !=nil ;if _ce .FillEnabled {_efb .SetNonStrokingColor (_ce .FillColor ); +};_ce .BorderEnabled =_ce .BorderEnabled &&_ce .BorderColor !=nil ;if _ce .BorderEnabled {_efb .SetStrokingColor (_ce .BorderColor );_efb .Add_w (_ce .BorderWidth );};if len (gsName )> 1{_efb .Add_gs (_eg .PdfObjectName (gsName ));};_agd :=NewCubicBezierPath (); +for _ ,_gdb :=range _ce .Rings {for _afbd ,_ccc :=range _gdb {if _afbd ==0{_efb .Add_m (_ccc .P0 .X ,_ccc .P0 .Y );}else {_efb .Add_l (_ccc .P0 .X ,_ccc .P0 .Y );};_efb .Add_c (_ccc .P1 .X ,_ccc .P1 .Y ,_ccc .P2 .X ,_ccc .P2 .Y ,_ccc .P3 .X ,_ccc .P3 .Y ); +_agd =_agd .AppendCurve (_ccc );};_efb .Add_h ();};if _ce .FillEnabled &&_ce .BorderEnabled {_efb .Add_B ();}else if _ce .FillEnabled {_efb .Add_f ();}else if _ce .BorderEnabled {_efb .Add_S ();};_efb .Add_Q ();return _efb .Bytes (),_agd .GetBoundingBox ().ToPdfRectangle (),nil ; }; -// Length returns the number of points in the path. -func (_gf Path )Length ()int {return len (_gf .Points )}; +// Add shifts the coordinates of the point with dx, dy and returns the result. +func (_afe Point )Add (dx ,dy float64 )Point {_afe .X +=dx ;_afe .Y +=dy ;return _afe }; -// PolyBezierCurve represents a composite curve that is the result of -// joining multiple cubic Bezier curves. -type PolyBezierCurve struct{Curves []CubicBezierCurve ;BorderWidth float64 ;BorderColor _b .PdfColor ;FillEnabled bool ;FillColor _b .PdfColor ;}; +// NewVectorPolar returns a new vector calculated from the specified +// magnitude and angle. +func NewVectorPolar (length float64 ,theta float64 )Vector {_fdd :=Vector {};_fdd .Dx =length *_d .Cos (theta );_fdd .Dy =length *_d .Sin (theta );return _fdd ;}; -// NewCubicBezierPath returns a new empty cubic Bezier path. -func NewCubicBezierPath ()CubicBezierPath {_bd :=CubicBezierPath {};_bd .Curves =[]CubicBezierCurve {};return _bd ;}; +// Polyline defines a slice of points that are connected as straight lines. +type Polyline struct{Points []Point ;LineColor _e .PdfColor ;LineWidth float64 ;}; -// BoundingBox represents the smallest rectangular area that encapsulates an object. -type BoundingBox struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;}; +// FlipX flips the sign of the Dx component of the vector. +func (_bcae Vector )FlipX ()Vector {_bcae .Dx =-_bcae .Dx ;return _bcae }; -// GetPointNumber returns the path point at the index specified by number. -// The index is 1-based. -func (_aed Path )GetPointNumber (number int )Point {if number < 1||number > len (_aed .Points ){return Point {};};return _aed .Points [number -1];}; +// Draw draws the rectangle. A graphics state can be specified for +// setting additional properties (e.g. opacity). Otherwise pass an empty string +// for the `gsName` parameter. The method returns the content stream as a byte +// array and the bounding box of the shape. +func (_bag Rectangle )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){_afba :=_fc .NewContentCreator ();_afba .Add_q ();if _bag .FillEnabled {_afba .SetNonStrokingColor (_bag .FillColor );};if _bag .BorderEnabled {_afba .SetStrokingColor (_bag .BorderColor ); +_afba .Add_w (_bag .BorderWidth );};if len (gsName )> 1{_afba .Add_gs (_eg .PdfObjectName (gsName ));};var (_ccca ,_daee =_bag .X ,_bag .Y ;_ddf ,_bec =_bag .Width ,_bag .Height ;_cdg =_d .Abs (_bag .BorderRadiusTopLeft );_eggd =_d .Abs (_bag .BorderRadiusTopRight ); +_afg =_d .Abs (_bag .BorderRadiusBottomLeft );_bf =_d .Abs (_bag .BorderRadiusBottomRight );_daf =0.4477;);_deg :=Path {Points :[]Point {{X :_ccca +_ddf -_bf ,Y :_daee },{X :_ccca +_ddf ,Y :_daee +_bec -_eggd },{X :_ccca +_cdg ,Y :_daee +_bec },{X :_ccca ,Y :_daee +_afg }}}; +_gf :=[][7]float64 {{_bf ,_ccca +_ddf -_bf *_daf ,_daee ,_ccca +_ddf ,_daee +_bf *_daf ,_ccca +_ddf ,_daee +_bf },{_eggd ,_ccca +_ddf ,_daee +_bec -_eggd *_daf ,_ccca +_ddf -_eggd *_daf ,_daee +_bec ,_ccca +_ddf -_eggd ,_daee +_bec },{_cdg ,_ccca +_cdg *_daf ,_daee +_bec ,_ccca ,_daee +_bec -_cdg *_daf ,_ccca ,_daee +_bec -_cdg },{_afg ,_ccca ,_daee +_afg *_daf ,_ccca +_afg *_daf ,_daee ,_ccca +_afg ,_daee }}; +_afba .Add_m (_ccca +_afg ,_daee );for _fcaa :=0;_fcaa < 4;_fcaa ++{_cfg :=_deg .Points [_fcaa ];_afba .Add_l (_cfg .X ,_cfg .Y );_cfa :=_gf [_fcaa ];if _bedc :=_cfa [0];_bedc !=0{_afba .Add_c (_cfa [1],_cfa [2],_cfa [3],_cfa [4],_cfa [5],_cfa [6]);};}; +_afba .Add_h ();if _bag .FillEnabled &&_bag .BorderEnabled {_afba .Add_B ();}else if _bag .FillEnabled {_afba .Add_f ();}else if _bag .BorderEnabled {_afba .Add_S ();};_afba .Add_Q ();return _afba .Bytes (),_deg .GetBoundingBox ().ToPdfRectangle (),nil ; +}; -// FlipY flips the sign of the Dy component of the vector. -func (_egg Vector )FlipY ()Vector {_egg .Dy =-_egg .Dy ;return _egg }; +// Scale scales the vector by the specified factor. +func (_efba Vector )Scale (factor float64 )Vector {_gaa :=_efba .Magnitude ();_eeg :=_efba .GetPolarAngle ();_efba .Dx =factor *_gaa *_d .Cos (_eeg );_efba .Dy =factor *_gaa *_d .Sin (_eeg );return _efba ;}; -// CubicBezierCurve is defined by: -// R(t) = P0*(1-t)^3 + P1*3*t*(1-t)^2 + P2*3*t^2*(1-t) + P3*t^3 -// where P0 is the current point, P1, P2 control points and P3 the final point. -type CubicBezierCurve struct{P0 Point ;P1 Point ;P2 Point ;P3 Point ;};const (LineStyleSolid LineStyle =0;LineStyleDashed LineStyle =1;); +// Draw draws the circle. Can specify a graphics state (gsName) for setting opacity etc. Otherwise leave empty (""). +// Returns the content stream as a byte array, the bounding box and an error on failure. +func (_ddg Circle )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){_cf :=_ddg .Width /2;_fcd :=_ddg .Height /2;if _ddg .BorderEnabled {_cf -=_ddg .BorderWidth /2;_fcd -=_ddg .BorderWidth /2;};_cd :=0.551784;_dae :=_cf *_cd ;_gg :=_fcd *_cd ;_dgb :=NewCubicBezierPath (); +_dgb =_dgb .AppendCurve (NewCubicBezierCurve (-_cf ,0,-_cf ,_gg ,-_dae ,_fcd ,0,_fcd ));_dgb =_dgb .AppendCurve (NewCubicBezierCurve (0,_fcd ,_dae ,_fcd ,_cf ,_gg ,_cf ,0));_dgb =_dgb .AppendCurve (NewCubicBezierCurve (_cf ,0,_cf ,-_gg ,_dae ,-_fcd ,0,-_fcd )); +_dgb =_dgb .AppendCurve (NewCubicBezierCurve (0,-_fcd ,-_dae ,-_fcd ,-_cf ,-_gg ,-_cf ,0));_dgb =_dgb .Offset (_cf ,_fcd );if _ddg .BorderEnabled {_dgb =_dgb .Offset (_ddg .BorderWidth /2,_ddg .BorderWidth /2);};if _ddg .X !=0||_ddg .Y !=0{_dgb =_dgb .Offset (_ddg .X ,_ddg .Y ); +};_ffa :=_fc .NewContentCreator ();_ffa .Add_q ();if _ddg .FillEnabled {_ffa .SetNonStrokingColor (_ddg .FillColor );};if _ddg .BorderEnabled {_ffa .SetStrokingColor (_ddg .BorderColor );_ffa .Add_w (_ddg .BorderWidth );};if len (gsName )> 1{_ffa .Add_gs (_eg .PdfObjectName (gsName )); +};DrawBezierPathWithCreator (_dgb ,_ffa );_ffa .Add_h ();if _ddg .FillEnabled &&_ddg .BorderEnabled {_ffa .Add_B ();}else if _ddg .FillEnabled {_ffa .Add_f ();}else if _ddg .BorderEnabled {_ffa .Add_S ();};_ffa .Add_Q ();_ae :=_dgb .GetBoundingBox ();if _ddg .BorderEnabled {_ae .Height +=_ddg .BorderWidth ; +_ae .Width +=_ddg .BorderWidth ;_ae .X -=_ddg .BorderWidth /2;_ae .Y -=_ddg .BorderWidth /2;};return _ffa .Bytes (),_ae .ToPdfRectangle (),nil ;}; + +// Vector represents a two-dimensional vector. +type Vector struct{Dx float64 ;Dy float64 ;}; // NewPoint returns a new point with the coordinates x, y. func NewPoint (x ,y float64 )Point {return Point {X :x ,Y :y }}; -// DrawBezierPathWithCreator makes the bezier path with the content creator. +// LineStyle refers to how the line will be created. +type LineStyle int ; + +// AppendPoint adds the specified point to the path. +func (_cce Path )AppendPoint (point Point )Path {_cce .Points =append (_cce .Points ,point );return _cce }; + +// GetPolarAngle returns the angle the magnitude of the vector forms with the +// positive X-axis going counterclockwise. +func (_bgf Vector )GetPolarAngle ()float64 {return _d .Atan2 (_bgf .Dy ,_bgf .Dx )}; + +// DrawPathWithCreator makes the path with the content creator. // Adds the PDF commands to draw the path to the creator instance. -func DrawBezierPathWithCreator (bpath CubicBezierPath ,creator *_a .ContentCreator ){for _dfc ,_gef :=range bpath .Curves {if _dfc ==0{creator .Add_m (_gef .P0 .X ,_gef .P0 .Y );};creator .Add_c (_gef .P1 .X ,_gef .P1 .Y ,_gef .P2 .X ,_gef .P2 .Y ,_gef .P3 .X ,_gef .P3 .Y ); -};}; +func DrawPathWithCreator (path Path ,creator *_fc .ContentCreator ){for _dddf ,_cbf :=range path .Points {if _dddf ==0{creator .Add_m (_cbf .X ,_cbf .Y );}else {creator .Add_l (_cbf .X ,_cbf .Y );};};}; + +// Copy returns a clone of the path. +func (_fce Path )Copy ()Path {_bc :=Path {};_bc .Points =append (_bc .Points ,_fce .Points ...);return _bc ;}; + +// CubicBezierPath represents a collection of cubic Bezier curves. +type CubicBezierPath struct{Curves []CubicBezierCurve ;}; + +// RemovePoint removes the point at the index specified by number from the +// path. The index is 1-based. +func (_ged Path )RemovePoint (number int )Path {if number < 1||number > len (_ged .Points ){return _ged ;};_fg :=number -1;_ged .Points =append (_ged .Points [:_fg ],_ged .Points [_fg +1:]...);return _ged ;}; + +// BasicLine defines a line between point 1 (X1,Y1) and point 2 (X2,Y2). The line has a specified width, color and opacity. +type BasicLine struct{X1 float64 ;Y1 float64 ;X2 float64 ;Y2 float64 ;LineColor _e .PdfColor ;Opacity float64 ;LineWidth float64 ;LineStyle LineStyle ;DashArray []int64 ;DashPhase int64 ;}; + +// AddVector adds vector to a point. +func (_fd Point )AddVector (v Vector )Point {_fd .X +=v .Dx ;_fd .Y +=v .Dy ;return _fd }; // NewVectorBetween returns a new vector with the direction specified by // the subtraction of point a from point b (b-a). -func NewVectorBetween (a Point ,b Point )Vector {_dae :=Vector {};_dae .Dx =b .X -a .X ;_dae .Dy =b .Y -a .Y ;return _dae ;}; +func NewVectorBetween (a Point ,b Point )Vector {_ceg :=Vector {};_ceg .Dx =b .X -a .X ;_ceg .Dy =b .Y -a .Y ;return _ceg ;}; -// Polygon is a multi-point shape that can be drawn to a PDF content stream. -type Polygon struct{Points [][]Point ;FillEnabled bool ;FillColor _b .PdfColor ;BorderEnabled bool ;BorderColor _b .PdfColor ;BorderWidth float64 ;}; +// PolyBezierCurve represents a composite curve that is the result of +// joining multiple cubic Bezier curves. +type PolyBezierCurve struct{Curves []CubicBezierCurve ;BorderWidth float64 ;BorderColor _e .PdfColor ;FillEnabled bool ;FillColor _e .PdfColor ;}; -// DrawPathWithCreator makes the path with the content creator. +// NewVector returns a new vector with the direction specified by dx and dy. +func NewVector (dx ,dy float64 )Vector {_ffdf :=Vector {};_ffdf .Dx =dx ;_ffdf .Dy =dy ;return _ffdf }; + +// DrawBezierPathWithCreator makes the bezier path with the content creator. // Adds the PDF commands to draw the path to the creator instance. -func DrawPathWithCreator (path Path ,creator *_a .ContentCreator ){for _dbc ,_dgd :=range path .Points {if _dbc ==0{creator .Add_m (_dgd .X ,_dgd .Y );}else {creator .Add_l (_dgd .X ,_dgd .Y );};};}; +func DrawBezierPathWithCreator (bpath CubicBezierPath ,creator *_fc .ContentCreator ){for _fced ,_dgf :=range bpath .Curves {if _fced ==0{creator .Add_m (_dgf .P0 .X ,_dgf .P0 .Y );};creator .Add_c (_dgf .P1 .X ,_dgf .P1 .Y ,_dgf .P2 .X ,_dgf .P2 .Y ,_dgf .P3 .X ,_dgf .P3 .Y ); +};}; -// Path consists of straight line connections between each point defined in an array of points. -type Path struct{Points []Point ;}; +// Line defines a line shape between point 1 (X1,Y1) and point 2 (X2,Y2). The line ending styles can be none (regular line), +// or arrows at either end. The line also has a specified width, color and opacity. +type Line struct{X1 float64 ;Y1 float64 ;X2 float64 ;Y2 float64 ;LineColor _e .PdfColor ;Opacity float64 ;LineWidth float64 ;LineEndingStyle1 LineEndingStyle ;LineEndingStyle2 LineEndingStyle ;LineStyle LineStyle ;}; -// AddVector adds vector to a point. -func (_dda Point )AddVector (v Vector )Point {_dda .X +=v .Dx ;_dda .Y +=v .Dy ;return _dda }; +// Offset shifts the Bezier path with the specified offsets. +func (_ef CubicBezierPath )Offset (offX ,offY float64 )CubicBezierPath {for _feg ,_cc :=range _ef .Curves {_ef .Curves [_feg ]=_cc .AddOffsetXY (offX ,offY );};return _ef ;}; -// Rotate rotates the vector by the specified angle. -func (_ede Vector )Rotate (phi float64 )Vector {_egfe :=_ede .Magnitude ();_faef :=_ede .GetPolarAngle ();return NewVectorPolar (_egfe ,_faef +phi );};const (LineEndingStyleNone LineEndingStyle =0;LineEndingStyleArrow LineEndingStyle =1;LineEndingStyleButt LineEndingStyle =2; +// Point represents a two-dimensional point. +type Point struct{X float64 ;Y float64 ;}; + +// AppendCurve appends the specified Bezier curve to the path. +func (_aaa CubicBezierPath )AppendCurve (curve CubicBezierCurve )CubicBezierPath {_aaa .Curves =append (_aaa .Curves ,curve );return _aaa ;};const (LineEndingStyleNone LineEndingStyle =0;LineEndingStyleArrow LineEndingStyle =1;LineEndingStyleButt LineEndingStyle =2; ); -// Draw draws the circle. Can specify a graphics state (gsName) for setting opacity etc. Otherwise leave empty (""). -// Returns the content stream as a byte array, the bounding box and an error on failure. -func (_ggd Circle )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){_dcc :=_ggd .Width /2;_af :=_ggd .Height /2;if _ggd .BorderEnabled {_dcc -=_ggd .BorderWidth /2;_af -=_ggd .BorderWidth /2;};_dg :=0.551784;_cf :=_dcc *_dg ;_fff :=_af *_dg ;_cbe :=NewCubicBezierPath (); -_cbe =_cbe .AppendCurve (NewCubicBezierCurve (-_dcc ,0,-_dcc ,_fff ,-_cf ,_af ,0,_af ));_cbe =_cbe .AppendCurve (NewCubicBezierCurve (0,_af ,_cf ,_af ,_dcc ,_fff ,_dcc ,0));_cbe =_cbe .AppendCurve (NewCubicBezierCurve (_dcc ,0,_dcc ,-_fff ,_cf ,-_af ,0,-_af )); -_cbe =_cbe .AppendCurve (NewCubicBezierCurve (0,-_af ,-_cf ,-_af ,-_dcc ,-_fff ,-_dcc ,0));_cbe =_cbe .Offset (_dcc ,_af );if _ggd .BorderEnabled {_cbe =_cbe .Offset (_ggd .BorderWidth /2,_ggd .BorderWidth /2);};if _ggd .X !=0||_ggd .Y !=0{_cbe =_cbe .Offset (_ggd .X ,_ggd .Y ); -};_gda :=_a .NewContentCreator ();_gda .Add_q ();if _ggd .FillEnabled {_gda .SetNonStrokingColor (_ggd .FillColor );};if _ggd .BorderEnabled {_gda .SetStrokingColor (_ggd .BorderColor );_gda .Add_w (_ggd .BorderWidth );};if len (gsName )> 1{_gda .Add_gs (_c .PdfObjectName (gsName )); -};DrawBezierPathWithCreator (_cbe ,_gda );_gda .Add_h ();if _ggd .FillEnabled &&_ggd .BorderEnabled {_gda .Add_B ();}else if _ggd .FillEnabled {_gda .Add_f ();}else if _ggd .BorderEnabled {_gda .Add_S ();};_gda .Add_Q ();_efd :=_cbe .GetBoundingBox (); -if _ggd .BorderEnabled {_efd .Height +=_ggd .BorderWidth ;_efd .Width +=_ggd .BorderWidth ;_efd .X -=_ggd .BorderWidth /2;_efd .Y -=_ggd .BorderWidth /2;};return _gda .Bytes (),_efd .ToPdfRectangle (),nil ;}; +// Flip changes the sign of the vector: -vector. +func (_fbe Vector )Flip ()Vector {_ffe :=_fbe .Magnitude ();_afbb :=_fbe .GetPolarAngle ();_fbe .Dx =_ffe *_d .Cos (_afbb +_d .Pi );_fbe .Dy =_ffe *_d .Sin (_afbb +_d .Pi );return _fbe ;}; -// Draw draws the line to PDF contentstream. Generates the content stream which can be used in page contents or -// appearance stream of annotation. Returns the stream content, XForm bounding box (local), bounding box and an error -// if one occurred. -func (_ddad Line )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){_adc ,_gff :=_ddad .X1 ,_ddad .X2 ;_edfg ,_acb :=_ddad .Y1 ,_ddad .Y2 ;_fab :=_acb -_edfg ;_dcd :=_gff -_adc ;_eac :=_g .Atan2 (_fab ,_dcd );L :=_g .Sqrt (_g .Pow (_dcd ,2.0)+_g .Pow (_fab ,2.0)); -_fda :=_ddad .LineWidth ;_cab :=_g .Pi ;_gfdb :=1.0;if _dcd < 0{_gfdb *=-1.0;};if _fab < 0{_gfdb *=-1.0;};VsX :=_gfdb *(-_fda /2*_g .Cos (_eac +_cab /2));VsY :=_gfdb *(-_fda /2*_g .Sin (_eac +_cab /2)+_fda *_g .Sin (_eac +_cab /2));V1X :=VsX +_fda /2*_g .Cos (_eac +_cab /2); -V1Y :=VsY +_fda /2*_g .Sin (_eac +_cab /2);V2X :=VsX +_fda /2*_g .Cos (_eac +_cab /2)+L *_g .Cos (_eac );V2Y :=VsY +_fda /2*_g .Sin (_eac +_cab /2)+L *_g .Sin (_eac );V3X :=VsX +_fda /2*_g .Cos (_eac +_cab /2)+L *_g .Cos (_eac )+_fda *_g .Cos (_eac -_cab /2); -V3Y :=VsY +_fda /2*_g .Sin (_eac +_cab /2)+L *_g .Sin (_eac )+_fda *_g .Sin (_eac -_cab /2);V4X :=VsX +_fda /2*_g .Cos (_eac -_cab /2);V4Y :=VsY +_fda /2*_g .Sin (_eac -_cab /2);_gdg :=NewPath ();_gdg =_gdg .AppendPoint (NewPoint (V1X ,V1Y ));_gdg =_gdg .AppendPoint (NewPoint (V2X ,V2Y )); -_gdg =_gdg .AppendPoint (NewPoint (V3X ,V3Y ));_gdg =_gdg .AppendPoint (NewPoint (V4X ,V4Y ));_ddac :=_ddad .LineEndingStyle1 ;_bbf :=_ddad .LineEndingStyle2 ;_eba :=3*_fda ;_efe :=3*_fda ;_gag :=(_efe -_fda )/2;if _bbf ==LineEndingStyleArrow {_gdc :=_gdg .GetPointNumber (2); -_cca :=NewVectorPolar (_eba ,_eac +_cab );_fea :=_gdc .AddVector (_cca );_ddea :=NewVectorPolar (_efe /2,_eac +_cab /2);_gcec :=NewVectorPolar (_eba ,_eac );_cd :=NewVectorPolar (_gag ,_eac +_cab /2);_ba :=_fea .AddVector (_cd );_dec :=_gcec .Add (_ddea .Flip ()); -_ffg :=_ba .AddVector (_dec );_bfe :=_ddea .Scale (2).Flip ().Add (_dec .Flip ());_eccd :=_ffg .AddVector (_bfe );_dfg :=_fea .AddVector (NewVectorPolar (_fda ,_eac -_cab /2));_cac :=NewPath ();_cac =_cac .AppendPoint (_gdg .GetPointNumber (1));_cac =_cac .AppendPoint (_fea ); -_cac =_cac .AppendPoint (_ba );_cac =_cac .AppendPoint (_ffg );_cac =_cac .AppendPoint (_eccd );_cac =_cac .AppendPoint (_dfg );_cac =_cac .AppendPoint (_gdg .GetPointNumber (4));_gdg =_cac ;};if _ddac ==LineEndingStyleArrow {_da :=_gdg .GetPointNumber (1); -_aae :=_gdg .GetPointNumber (_gdg .Length ());_edfe :=NewVectorPolar (_fda /2,_eac +_cab +_cab /2);_bgb :=_da .AddVector (_edfe );_dbb :=NewVectorPolar (_eba ,_eac ).Add (NewVectorPolar (_efe /2,_eac +_cab /2));_aag :=_bgb .AddVector (_dbb );_egca :=NewVectorPolar (_gag ,_eac -_cab /2); -_dbbe :=_aag .AddVector (_egca );_cce :=NewVectorPolar (_eba ,_eac );_daf :=_aae .AddVector (_cce );_bdc :=NewVectorPolar (_gag ,_eac +_cab +_cab /2);_aac :=_daf .AddVector (_bdc );_ega :=_bgb ;_cdd :=NewPath ();_cdd =_cdd .AppendPoint (_bgb );_cdd =_cdd .AppendPoint (_aag ); -_cdd =_cdd .AppendPoint (_dbbe );for _ ,_ece :=range _gdg .Points [1:len (_gdg .Points )-1]{_cdd =_cdd .AppendPoint (_ece );};_cdd =_cdd .AppendPoint (_daf );_cdd =_cdd .AppendPoint (_aac );_cdd =_cdd .AppendPoint (_ega );_gdg =_cdd ;};_fdab :=_a .NewContentCreator (); -_fdab .Add_q ().SetNonStrokingColor (_ddad .LineColor );if len (gsName )> 1{_fdab .Add_gs (_c .PdfObjectName (gsName ));};_gdg =_gdg .Offset (_ddad .X1 ,_ddad .Y1 );_baf :=_gdg .GetBoundingBox ();DrawPathWithCreator (_gdg ,_fdab );if _ddad .LineStyle ==LineStyleDashed {_fdab .Add_d ([]int64 {1,1},0).Add_S ().Add_f ().Add_Q (); -}else {_fdab .Add_f ().Add_Q ();};return _fdab .Bytes (),_baf .ToPdfRectangle (),nil ;}; +// Circle represents a circle shape with fill and border properties that can be drawn to a PDF content stream. +type Circle struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;FillEnabled bool ;FillColor _e .PdfColor ;BorderEnabled bool ;BorderWidth float64 ;BorderColor _e .PdfColor ;Opacity float64 ;}; -// RemovePoint removes the point at the index specified by number from the -// path. The index is 1-based. -func (_de Path )RemovePoint (number int )Path {if number < 1||number > len (_de .Points ){return _de ;};_fb :=number -1;_de .Points =append (_de .Points [:_fb ],_de .Points [_fb +1:]...);return _de ;}; +// Add adds the specified vector to the current one and returns the result. +func (_aae Vector )Add (other Vector )Vector {_aae .Dx +=other .Dx ;_aae .Dy +=other .Dy ;return _aae }; -// BasicLine defines a line between point 1 (X1,Y1) and point 2 (X2,Y2). The line has a specified width, color and opacity. -type BasicLine struct{X1 float64 ;Y1 float64 ;X2 float64 ;Y2 float64 ;LineColor _b .PdfColor ;Opacity float64 ;LineWidth float64 ;LineStyle LineStyle ;DashArray []int64 ;DashPhase int64 ;}; +// GetBoundingBox returns the bounding box of the path. +func (_ed Path )GetBoundingBox ()BoundingBox {_dab :=BoundingBox {};_fgf :=0.0;_abf :=0.0;_aaag :=0.0;_bca :=0.0;for _ead ,_af :=range _ed .Points {if _ead ==0{_fgf =_af .X ;_abf =_af .X ;_aaag =_af .Y ;_bca =_af .Y ;continue ;};if _af .X < _fgf {_fgf =_af .X ; +};if _af .X > _abf {_abf =_af .X ;};if _af .Y < _aaag {_aaag =_af .Y ;};if _af .Y > _bca {_bca =_af .Y ;};};_dab .X =_fgf ;_dab .Y =_aaag ;_dab .Width =_abf -_fgf ;_dab .Height =_bca -_aaag ;return _dab ;}; -// ToPdfRectangle returns the bounding box as a PDF rectangle. -func (_ec BoundingBox )ToPdfRectangle ()*_b .PdfRectangle {return &_b .PdfRectangle {Llx :_ec .X ,Lly :_ec .Y ,Urx :_ec .X +_ec .Width ,Ury :_ec .Y +_ec .Height };}; +// Magnitude returns the magnitude of the vector. +func (_gegc Vector )Magnitude ()float64 {return _d .Sqrt (_d .Pow (_gegc .Dx ,2.0)+_d .Pow (_gegc .Dy ,2.0));}; // Rectangle is a shape with a specified Width and Height and a lower left corner at (X,Y) that can be // drawn to a PDF content stream. The rectangle can optionally have a border and a filling color. @@ -162,123 +195,91 @@ type Rectangle struct{ X float64 ;Y float64 ;Width float64 ;Height float64 ; // Fill properties. -FillEnabled bool ;FillColor _b .PdfColor ; +FillEnabled bool ;FillColor _e .PdfColor ; // Border properties. -BorderEnabled bool ;BorderColor _b .PdfColor ;BorderWidth float64 ;BorderRadiusTopLeft float64 ;BorderRadiusTopRight float64 ;BorderRadiusBottomLeft float64 ;BorderRadiusBottomRight float64 ; +BorderEnabled bool ;BorderColor _e .PdfColor ;BorderWidth float64 ;BorderRadiusTopLeft float64 ;BorderRadiusTopRight float64 ;BorderRadiusBottomLeft float64 ;BorderRadiusBottomRight float64 ; // Shape opacity (0-1 interval). Opacity float64 ;}; -// Add shifts the coordinates of the point with dx, dy and returns the result. -func (_ffe Point )Add (dx ,dy float64 )Point {_ffe .X +=dx ;_ffe .Y +=dy ;return _ffe }; - -// Offset shifts the path with the specified offsets. -func (_aba Path )Offset (offX ,offY float64 )Path {for _fbd ,_df :=range _aba .Points {_aba .Points [_fbd ]=_df .Add (offX ,offY );};return _aba ;}; - -// FlipX flips the sign of the Dx component of the vector. -func (_ecd Vector )FlipX ()Vector {_ecd .Dx =-_ecd .Dx ;return _ecd }; - -// NewVector returns a new vector with the direction specified by dx and dy. -func NewVector (dx ,dy float64 )Vector {_bag :=Vector {};_bag .Dx =dx ;_bag .Dy =dy ;return _bag }; - -// Draw draws the rectangle. A graphics state can be specified for -// setting additional properties (e.g. opacity). Otherwise pass an empty string -// for the `gsName` parameter. The method returns the content stream as a byte -// array and the bounding box of the shape. -func (_fe Rectangle )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){_fac :=_a .NewContentCreator ();_fac .Add_q ();if _fe .FillEnabled {_fac .SetNonStrokingColor (_fe .FillColor );};if _fe .BorderEnabled {_fac .SetStrokingColor (_fe .BorderColor ); -_fac .Add_w (_fe .BorderWidth );};if len (gsName )> 1{_fac .Add_gs (_c .PdfObjectName (gsName ));};var (_aee ,_gab =_fe .X ,_fe .Y ;_fae ,_ceb =_fe .Width ,_fe .Height ;_bga =_g .Abs (_fe .BorderRadiusTopLeft );_fcd =_g .Abs (_fe .BorderRadiusTopRight ); -_edf =_g .Abs (_fe .BorderRadiusBottomLeft );_aa =_g .Abs (_fe .BorderRadiusBottomRight );_cbg =0.4477;);_ca :=Path {Points :[]Point {{X :_aee +_fae -_aa ,Y :_gab },{X :_aee +_fae ,Y :_gab +_ceb -_fcd },{X :_aee +_bga ,Y :_gab +_ceb },{X :_aee ,Y :_gab +_edf }}}; -_cbfa :=[][7]float64 {{_aa ,_aee +_fae -_aa *_cbg ,_gab ,_aee +_fae ,_gab +_aa *_cbg ,_aee +_fae ,_gab +_aa },{_fcd ,_aee +_fae ,_gab +_ceb -_fcd *_cbg ,_aee +_fae -_fcd *_cbg ,_gab +_ceb ,_aee +_fae -_fcd ,_gab +_ceb },{_bga ,_aee +_bga *_cbg ,_gab +_ceb ,_aee ,_gab +_ceb -_bga *_cbg ,_aee ,_gab +_ceb -_bga },{_edf ,_aee ,_gab +_edf *_cbg ,_aee +_edf *_cbg ,_gab ,_aee +_edf ,_gab }}; -_fac .Add_m (_aee +_edf ,_gab );for _ea :=0;_ea < 4;_ea ++{_bgc :=_ca .Points [_ea ];_fac .Add_l (_bgc .X ,_bgc .Y );_aebb :=_cbfa [_ea ];if _geg :=_aebb [0];_geg !=0{_fac .Add_c (_aebb [1],_aebb [2],_aebb [3],_aebb [4],_aebb [5],_aebb [6]);};};_fac .Add_h (); -if _fe .FillEnabled &&_fe .BorderEnabled {_fac .Add_B ();}else if _fe .FillEnabled {_fac .Add_f ();}else if _fe .BorderEnabled {_fac .Add_S ();};_fac .Add_Q ();return _fac .Bytes (),_ca .GetBoundingBox ().ToPdfRectangle (),nil ;}; - -// Vector represents a two-dimensional vector. -type Vector struct{Dx float64 ;Dy float64 ;}; - -// Draw draws the composite Bezier curve. A graphics state name can be -// specified for setting the curve properties (e.g. setting the opacity). -// Otherwise leave empty (""). Returns the content stream as a byte array and -// the curve bounding box. -func (_fa PolyBezierCurve )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){if _fa .BorderColor ==nil {_fa .BorderColor =_b .NewPdfColorDeviceRGB (0,0,0);};_agd :=NewCubicBezierPath ();for _ ,_edb :=range _fa .Curves {_agd =_agd .AppendCurve (_edb ); -};_bgf :=_a .NewContentCreator ();_bgf .Add_q ();_fa .FillEnabled =_fa .FillEnabled &&_fa .FillColor !=nil ;if _fa .FillEnabled {_bgf .SetNonStrokingColor (_fa .FillColor );};_bgf .SetStrokingColor (_fa .BorderColor );_bgf .Add_w (_fa .BorderWidth );if len (gsName )> 1{_bgf .Add_gs (_c .PdfObjectName (gsName )); -};for _faf ,_bb :=range _agd .Curves {if _faf ==0{_bgf .Add_m (_bb .P0 .X ,_bb .P0 .Y );}else {_bgf .Add_l (_bb .P0 .X ,_bb .P0 .Y );};_bgf .Add_c (_bb .P1 .X ,_bb .P1 .Y ,_bb .P2 .X ,_bb .P2 .Y ,_bb .P3 .X ,_bb .P3 .Y );};if _fa .FillEnabled {_bgf .Add_h (); -_bgf .Add_B ();}else {_bgf .Add_S ();};_bgf .Add_Q ();return _bgf .Bytes (),_agd .GetBoundingBox ().ToPdfRectangle (),nil ;}; - // CurvePolygon is a multi-point shape with rings containing curves that can be // drawn to a PDF content stream. -type CurvePolygon struct{Rings [][]CubicBezierCurve ;FillEnabled bool ;FillColor _b .PdfColor ;BorderEnabled bool ;BorderColor _b .PdfColor ;BorderWidth float64 ;}; +type CurvePolygon struct{Rings [][]CubicBezierCurve ;FillEnabled bool ;FillColor _e .PdfColor ;BorderEnabled bool ;BorderColor _e .PdfColor ;BorderWidth float64 ;}; -// NewVectorPolar returns a new vector calculated from the specified -// magnitude and angle. -func NewVectorPolar (length float64 ,theta float64 )Vector {_efg :=Vector {};_efg .Dx =length *_g .Cos (theta );_efg .Dy =length *_g .Sin (theta );return _efg ;}; +// GetPointNumber returns the path point at the index specified by number. +// The index is 1-based. +func (_ac Path )GetPointNumber (number int )Point {if number < 1||number > len (_ac .Points ){return Point {};};return _ac .Points [number -1];}; -// AppendCurve appends the specified Bezier curve to the path. -func (_ee CubicBezierPath )AppendCurve (curve CubicBezierCurve )CubicBezierPath {_ee .Curves =append (_ee .Curves ,curve );return _ee ;}; +// Rotate rotates the vector by the specified angle. +func (_fbc Vector )Rotate (phi float64 )Vector {_bbb :=_fbc .Magnitude ();_egca :=_fbc .GetPolarAngle ();return NewVectorPolar (_bbb ,_egca +phi );}; -// Flip changes the sign of the vector: -vector. -func (_ggf Vector )Flip ()Vector {_age :=_ggf .Magnitude ();_cbc :=_ggf .GetPolarAngle ();_ggf .Dx =_age *_g .Cos (_cbc +_g .Pi );_ggf .Dy =_age *_g .Sin (_cbc +_g .Pi );return _ggf ;}; +// GetBoundingBox returns the bounding box of the Bezier path. +func (_da CubicBezierPath )GetBoundingBox ()Rectangle {_gb :=Rectangle {};_dg :=0.0;_efa :=0.0;_ea :=0.0;_fb :=0.0;for _ge ,_gd :=range _da .Curves {_ec :=_gd .GetBounds ();if _ge ==0{_dg =_ec .Llx ;_efa =_ec .Urx ;_ea =_ec .Lly ;_fb =_ec .Ury ;continue ; +};if _ec .Llx < _dg {_dg =_ec .Llx ;};if _ec .Urx > _efa {_efa =_ec .Urx ;};if _ec .Lly < _ea {_ea =_ec .Lly ;};if _ec .Ury > _fb {_fb =_ec .Ury ;};};_gb .X =_dg ;_gb .Y =_ea ;_gb .Width =_efa -_dg ;_gb .Height =_fb -_ea ;return _gb ;}; -// AppendPoint adds the specified point to the path. -func (_egc Path )AppendPoint (point Point )Path {_egc .Points =append (_egc .Points ,point );return _egc }; +// CubicBezierCurve is defined by: +// R(t) = P0*(1-t)^3 + P1*3*t*(1-t)^2 + P2*3*t^2*(1-t) + P3*t^3 +// where P0 is the current point, P1, P2 control points and P3 the final point. +type CubicBezierCurve struct{P0 Point ;P1 Point ;P2 Point ;P3 Point ;}; -// CubicBezierPath represents a collection of cubic Bezier curves. -type CubicBezierPath struct{Curves []CubicBezierCurve ;}; +// Draw draws the line to PDF contentstream. Generates the content stream which can be used in page contents or +// appearance stream of annotation. Returns the stream content, XForm bounding box (local), bounding box and an error +// if one occurred. +func (_dcb Line )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){_df ,_dce :=_dcb .X1 ,_dcb .X2 ;_gce ,_aef :=_dcb .Y1 ,_dcb .Y2 ;_egc :=_aef -_gce ;_gfc :=_dce -_df ;_cgb :=_d .Atan2 (_egc ,_gfc );L :=_d .Sqrt (_d .Pow (_gfc ,2.0)+_d .Pow (_egc ,2.0)); +_ddd :=_dcb .LineWidth ;_geg :=_d .Pi ;_ddc :=1.0;if _gfc < 0{_ddc *=-1.0;};if _egc < 0{_ddc *=-1.0;};VsX :=_ddc *(-_ddd /2*_d .Cos (_cgb +_geg /2));VsY :=_ddc *(-_ddd /2*_d .Sin (_cgb +_geg /2)+_ddd *_d .Sin (_cgb +_geg /2));V1X :=VsX +_ddd /2*_d .Cos (_cgb +_geg /2); +V1Y :=VsY +_ddd /2*_d .Sin (_cgb +_geg /2);V2X :=VsX +_ddd /2*_d .Cos (_cgb +_geg /2)+L *_d .Cos (_cgb );V2Y :=VsY +_ddd /2*_d .Sin (_cgb +_geg /2)+L *_d .Sin (_cgb );V3X :=VsX +_ddd /2*_d .Cos (_cgb +_geg /2)+L *_d .Cos (_cgb )+_ddd *_d .Cos (_cgb -_geg /2); +V3Y :=VsY +_ddd /2*_d .Sin (_cgb +_geg /2)+L *_d .Sin (_cgb )+_ddd *_d .Sin (_cgb -_geg /2);V4X :=VsX +_ddd /2*_d .Cos (_cgb -_geg /2);V4Y :=VsY +_ddd /2*_d .Sin (_cgb -_geg /2);_bcf :=NewPath ();_bcf =_bcf .AppendPoint (NewPoint (V1X ,V1Y ));_bcf =_bcf .AppendPoint (NewPoint (V2X ,V2Y )); +_bcf =_bcf .AppendPoint (NewPoint (V3X ,V3Y ));_bcf =_bcf .AppendPoint (NewPoint (V4X ,V4Y ));_afgg :=_dcb .LineEndingStyle1 ;_gec :=_dcb .LineEndingStyle2 ;_acf :=3*_ddd ;_afa :=3*_ddd ;_edc :=(_afa -_ddd )/2;if _gec ==LineEndingStyleArrow {_acb :=_bcf .GetPointNumber (2); +_gbd :=NewVectorPolar (_acf ,_cgb +_geg );_abd :=_acb .AddVector (_gbd );_fbg :=NewVectorPolar (_afa /2,_cgb +_geg /2);_cec :=NewVectorPolar (_acf ,_cgb );_gdg :=NewVectorPolar (_edc ,_cgb +_geg /2);_geef :=_abd .AddVector (_gdg );_baa :=_cec .Add (_fbg .Flip ()); +_ca :=_geef .AddVector (_baa );_daed :=_fbg .Scale (2).Flip ().Add (_baa .Flip ());_eff :=_ca .AddVector (_daed );_fac :=_abd .AddVector (NewVectorPolar (_ddd ,_cgb -_geg /2));_ggd :=NewPath ();_ggd =_ggd .AppendPoint (_bcf .GetPointNumber (1));_ggd =_ggd .AppendPoint (_abd ); +_ggd =_ggd .AppendPoint (_geef );_ggd =_ggd .AppendPoint (_ca );_ggd =_ggd .AppendPoint (_eff );_ggd =_ggd .AppendPoint (_fac );_ggd =_ggd .AppendPoint (_bcf .GetPointNumber (4));_bcf =_ggd ;};if _afgg ==LineEndingStyleArrow {_ffd :=_bcf .GetPointNumber (1); +_eb :=_bcf .GetPointNumber (_bcf .Length ());_cccaa :=NewVectorPolar (_ddd /2,_cgb +_geg +_geg /2);_def :=_ffd .AddVector (_cccaa );_cda :=NewVectorPolar (_acf ,_cgb ).Add (NewVectorPolar (_afa /2,_cgb +_geg /2));_bbf :=_def .AddVector (_cda );_ad :=NewVectorPolar (_edc ,_cgb -_geg /2); +_fbb :=_bbf .AddVector (_ad );_cccc :=NewVectorPolar (_acf ,_cgb );_efg :=_eb .AddVector (_cccc );_ga :=NewVectorPolar (_edc ,_cgb +_geg +_geg /2);_ebb :=_efg .AddVector (_ga );_cdag :=_def ;_fgc :=NewPath ();_fgc =_fgc .AppendPoint (_def );_fgc =_fgc .AppendPoint (_bbf ); +_fgc =_fgc .AppendPoint (_fbb );for _ ,_dfe :=range _bcf .Points [1:len (_bcf .Points )-1]{_fgc =_fgc .AppendPoint (_dfe );};_fgc =_fgc .AppendPoint (_efg );_fgc =_fgc .AppendPoint (_ebb );_fgc =_fgc .AppendPoint (_cdag );_bcf =_fgc ;};_ecc :=_fc .NewContentCreator (); +_ecc .Add_q ().SetNonStrokingColor (_dcb .LineColor );if len (gsName )> 1{_ecc .Add_gs (_eg .PdfObjectName (gsName ));};_bcf =_bcf .Offset (_dcb .X1 ,_dcb .Y1 );_eae :=_bcf .GetBoundingBox ();DrawPathWithCreator (_bcf ,_ecc );if _dcb .LineStyle ==LineStyleDashed {_ecc .Add_d ([]int64 {1,1},0).Add_S ().Add_f ().Add_Q (); +}else {_ecc .Add_f ().Add_Q ();};return _ecc .Bytes (),_eae .ToPdfRectangle (),nil ;}; -// Point represents a two-dimensional point. -type Point struct{X float64 ;Y float64 ;}; +// NewPath returns a new empty path. +func NewPath ()Path {return Path {}}; + +// Polygon is a multi-point shape that can be drawn to a PDF content stream. +type Polygon struct{Points [][]Point ;FillEnabled bool ;FillColor _e .PdfColor ;BorderEnabled bool ;BorderColor _e .PdfColor ;BorderWidth float64 ;}; // LineEndingStyle defines the line ending style for lines. // The currently supported line ending styles are None, Arrow (ClosedArrow) and Butt. type LineEndingStyle int ; -// GetBoundingBox returns the bounding box of the path. -func (_dde Path )GetBoundingBox ()BoundingBox {_ad :=BoundingBox {};_ga :=0.0;_fc :=0.0;_eea :=0.0;_agc :=0.0;for _aeb ,_ggc :=range _dde .Points {if _aeb ==0{_ga =_ggc .X ;_fc =_ggc .X ;_eea =_ggc .Y ;_agc =_ggc .Y ;continue ;};if _ggc .X < _ga {_ga =_ggc .X ; -};if _ggc .X > _fc {_fc =_ggc .X ;};if _ggc .Y < _eea {_eea =_ggc .Y ;};if _ggc .Y > _agc {_agc =_ggc .Y ;};};_ad .X =_ga ;_ad .Y =_eea ;_ad .Width =_fc -_ga ;_ad .Height =_agc -_eea ;return _ad ;}; - -// NewCubicBezierCurve returns a new cubic Bezier curve. -func NewCubicBezierCurve (x0 ,y0 ,x1 ,y1 ,x2 ,y2 ,x3 ,y3 float64 )CubicBezierCurve {_gb :=CubicBezierCurve {};_gb .P0 =NewPoint (x0 ,y0 );_gb .P1 =NewPoint (x1 ,y1 );_gb .P2 =NewPoint (x2 ,y2 );_gb .P3 =NewPoint (x3 ,y3 );return _gb ;}; - -// GetPolarAngle returns the angle the magnitude of the vector forms with the -// positive X-axis going counterclockwise. -func (_cee Vector )GetPolarAngle ()float64 {return _g .Atan2 (_cee .Dy ,_cee .Dx )}; - -// Scale scales the vector by the specified factor. -func (_dgg Vector )Scale (factor float64 )Vector {_fdf :=_dgg .Magnitude ();_dafb :=_dgg .GetPolarAngle ();_dgg .Dx =factor *_fdf *_g .Cos (_dafb );_dgg .Dy =factor *_fdf *_g .Sin (_dafb );return _dgg ;}; +// Copy returns a clone of the Bezier path. +func (_g CubicBezierPath )Copy ()CubicBezierPath {_fe :=CubicBezierPath {};_fe .Curves =append (_fe .Curves ,_g .Curves ...);return _fe ;}; -// Line defines a line shape between point 1 (X1,Y1) and point 2 (X2,Y2). The line ending styles can be none (regular line), -// or arrows at either end. The line also has a specified width, color and opacity. -type Line struct{X1 float64 ;Y1 float64 ;X2 float64 ;Y2 float64 ;LineColor _b .PdfColor ;Opacity float64 ;LineWidth float64 ;LineEndingStyle1 LineEndingStyle ;LineEndingStyle2 LineEndingStyle ;LineStyle LineStyle ;}; +// Draw draws the polygon. A graphics state name can be specified for +// setting the polygon properties (e.g. setting the opacity). Otherwise leave +// empty (""). Returns the content stream as a byte array and the polygon +// bounding box. +func (_de Polygon )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){_gee :=_fc .NewContentCreator ();_gee .Add_q ();_de .FillEnabled =_de .FillEnabled &&_de .FillColor !=nil ;if _de .FillEnabled {_gee .SetNonStrokingColor (_de .FillColor );};_de .BorderEnabled =_de .BorderEnabled &&_de .BorderColor !=nil ; +if _de .BorderEnabled {_gee .SetStrokingColor (_de .BorderColor );_gee .Add_w (_de .BorderWidth );};if len (gsName )> 1{_gee .Add_gs (_eg .PdfObjectName (gsName ));};_fca :=NewPath ();for _ ,_dad :=range _de .Points {for _be ,_bed :=range _dad {_fca =_fca .AppendPoint (_bed ); +if _be ==0{_gee .Add_m (_bed .X ,_bed .Y );}else {_gee .Add_l (_bed .X ,_bed .Y );};};_gee .Add_h ();};if _de .FillEnabled &&_de .BorderEnabled {_gee .Add_B ();}else if _de .FillEnabled {_gee .Add_f ();}else if _de .BorderEnabled {_gee .Add_S ();};_gee .Add_Q (); +return _gee .Bytes (),_fca .GetBoundingBox ().ToPdfRectangle (),nil ;}; -// Polyline defines a slice of points that are connected as straight lines. -type Polyline struct{Points []Point ;LineColor _b .PdfColor ;LineWidth float64 ;}; +// Length returns the number of points in the path. +func (_bd Path )Length ()int {return len (_bd .Points )}; -// ToPdfRectangle returns the rectangle as a PDF rectangle. -func (_be Rectangle )ToPdfRectangle ()*_b .PdfRectangle {return &_b .PdfRectangle {Llx :_be .X ,Lly :_be .Y ,Urx :_be .X +_be .Width ,Ury :_be .Y +_be .Height };}; +// GetBounds returns the bounding box of the Bezier curve. +func (_ba CubicBezierCurve )GetBounds ()_e .PdfRectangle {_aa :=_ba .P0 .X ;_dc :=_ba .P0 .X ;_ee :=_ba .P0 .Y ;_aac :=_ba .P0 .Y ;for _c :=0.0;_c <=1.0;_c +=0.001{Rx :=_ba .P0 .X *_d .Pow (1-_c ,3)+_ba .P1 .X *3*_c *_d .Pow (1-_c ,2)+_ba .P2 .X *3*_d .Pow (_c ,2)*(1-_c )+_ba .P3 .X *_d .Pow (_c ,3); +Ry :=_ba .P0 .Y *_d .Pow (1-_c ,3)+_ba .P1 .Y *3*_c *_d .Pow (1-_c ,2)+_ba .P2 .Y *3*_d .Pow (_c ,2)*(1-_c )+_ba .P3 .Y *_d .Pow (_c ,3);if Rx < _aa {_aa =Rx ;};if Rx > _dc {_dc =Rx ;};if Ry < _ee {_ee =Ry ;};if Ry > _aac {_aac =Ry ;};};_ab :=_e .PdfRectangle {}; +_ab .Llx =_aa ;_ab .Lly =_ee ;_ab .Urx =_dc ;_ab .Ury =_aac ;return _ab ;}; -// Add adds the specified vector to the current one and returns the result. -func (_egf Vector )Add (other Vector )Vector {_egf .Dx +=other .Dx ;_egf .Dy +=other .Dy ;return _egf }; +// ToPdfRectangle returns the bounding box as a PDF rectangle. +func (_ecd BoundingBox )ToPdfRectangle ()*_e .PdfRectangle {return &_e .PdfRectangle {Llx :_ecd .X ,Lly :_ecd .Y ,Urx :_ecd .X +_ecd .Width ,Ury :_ecd .Y +_ecd .Height };}; // Draw draws the polyline. A graphics state name can be specified for // setting the polyline properties (e.g. setting the opacity). Otherwise leave // empty (""). Returns the content stream as a byte array and the polyline // bounding box. -func (_eag Polyline )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){if _eag .LineColor ==nil {_eag .LineColor =_b .NewPdfColorDeviceRGB (0,0,0);};_egcd :=NewPath ();for _ ,_egaa :=range _eag .Points {_egcd =_egcd .AppendPoint (_egaa );};_fcf :=_a .NewContentCreator (); -_fcf .Add_q ().SetStrokingColor (_eag .LineColor ).Add_w (_eag .LineWidth );if len (gsName )> 1{_fcf .Add_gs (_c .PdfObjectName (gsName ));};DrawPathWithCreator (_egcd ,_fcf );_fcf .Add_S ();_fcf .Add_Q ();return _fcf .Bytes (),_egcd .GetBoundingBox ().ToPdfRectangle (),nil ; +func (_bedd Polyline )Draw (gsName string )([]byte ,*_e .PdfRectangle ,error ){if _bedd .LineColor ==nil {_bedd .LineColor =_e .NewPdfColorDeviceRGB (0,0,0);};_gdc :=NewPath ();for _ ,_dadf :=range _bedd .Points {_gdc =_gdc .AppendPoint (_dadf );};_gff :=_fc .NewContentCreator (); +_gff .Add_q ().SetStrokingColor (_bedd .LineColor ).Add_w (_bedd .LineWidth );if len (gsName )> 1{_gff .Add_gs (_eg .PdfObjectName (gsName ));};DrawPathWithCreator (_gdc ,_gff );_gff .Add_S ();_gff .Add_Q ();return _gff .Bytes (),_gdc .GetBoundingBox ().ToPdfRectangle (),nil ; }; -// NewPath returns a new empty path. -func NewPath ()Path {return Path {}}; - -// Circle represents a circle shape with fill and border properties that can be drawn to a PDF content stream. -type Circle struct{X float64 ;Y float64 ;Width float64 ;Height float64 ;FillEnabled bool ;FillColor _b .PdfColor ;BorderEnabled bool ;BorderWidth float64 ;BorderColor _b .PdfColor ;Opacity float64 ;}; - -// Draw draws the basic line to PDF. Generates the content stream which can be used in page contents or appearance -// stream of annotation. Returns the stream content, XForm bounding box (local), bounding box and an error if -// one occurred. -func (_bac BasicLine )Draw (gsName string )([]byte ,*_b .PdfRectangle ,error ){_cbd :=NewPath ();_cbd =_cbd .AppendPoint (NewPoint (_bac .X1 ,_bac .Y1 ));_cbd =_cbd .AppendPoint (NewPoint (_bac .X2 ,_bac .Y2 ));_gea :=_a .NewContentCreator ();_gea .Add_q ().Add_w (_bac .LineWidth ).SetStrokingColor (_bac .LineColor ); -if _bac .LineStyle ==LineStyleDashed {if _bac .DashArray ==nil {_bac .DashArray =[]int64 {1,1};};_gea .Add_d (_bac .DashArray ,_bac .DashPhase );};if len (gsName )> 1{_gea .Add_gs (_c .PdfObjectName (gsName ));};DrawPathWithCreator (_cbd ,_gea );_gea .Add_S ().Add_Q (); -return _gea .Bytes (),_cbd .GetBoundingBox ().ToPdfRectangle (),nil ;}; - -// Copy returns a clone of the path. -func (_dea Path )Copy ()Path {_bg :=Path {};_bg .Points =append (_bg .Points ,_dea .Points ...);return _bg ;}; \ No newline at end of file +// Rotate returns a new Point at `p` rotated by `theta` degrees. +func (_bb Point )Rotate (theta float64 )Point {_ag :=_egg .NewPoint (_bb .X ,_bb .Y ).Rotate (theta );return NewPoint (_ag .X ,_ag .Y );}; \ No newline at end of file diff --git a/core/core.go b/core/core.go index cf15fe920..66f5fd79e 100644 --- a/core/core.go +++ b/core/core.go @@ -12,13 +12,47 @@ // Package core defines and implements the primitive PDF object types in golang, and provides functionality // for parsing those from a PDF file stream. This includes I/O handling, cross references, repairs, encryption, // encoding and other core capabilities. -package core ;import (_ga "bufio";_fb "bytes";_fd "compress/lzw";_da "compress/zlib";_fe "crypto/md5";_aa "crypto/rand";_dc "encoding/hex";_f "errors";_daa "fmt";_ecd "github.com/unidoc/unipdf/v3/common";_fg "github.com/unidoc/unipdf/v3/core/security"; -_bc "github.com/unidoc/unipdf/v3/core/security/crypt";_cf "github.com/unidoc/unipdf/v3/internal/ccittfax";_fcf "github.com/unidoc/unipdf/v3/internal/imageutil";_eb "github.com/unidoc/unipdf/v3/internal/jbig2";_df "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap"; -_ag "github.com/unidoc/unipdf/v3/internal/jbig2/decoder";_cb "github.com/unidoc/unipdf/v3/internal/jbig2/document";_cd "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_ce "github.com/unidoc/unipdf/v3/internal/strutils";_daf "golang.org/x/image/tiff/lzw"; -_aae "golang.org/x/xerrors";_ac "image";_ec "image/color";_bd "image/jpeg";_ae "io";_a "io/ioutil";_e "reflect";_fc "regexp";_db "sort";_bf "strconv";_c "strings";_d "sync";_g "time";_de "unicode";); +package core ;import (_bfc "bufio";_fd "bytes";_bf "compress/lzw";_cea "compress/zlib";_bfd "crypto/md5";_f "crypto/rand";_bdc "encoding/hex";_c "errors";_gf "fmt";_a "github.com/unidoc/unipdf/v3/common";_dc "github.com/unidoc/unipdf/v3/core/security"; +_efd "github.com/unidoc/unipdf/v3/core/security/crypt";_gfa "github.com/unidoc/unipdf/v3/internal/ccittfax";_be "github.com/unidoc/unipdf/v3/internal/imageutil";_fb "github.com/unidoc/unipdf/v3/internal/jbig2";_ef "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap"; +_eg "github.com/unidoc/unipdf/v3/internal/jbig2/decoder";_de "github.com/unidoc/unipdf/v3/internal/jbig2/document";_dd "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_da "github.com/unidoc/unipdf/v3/internal/strutils";_d "golang.org/x/image/tiff/lzw"; +_fgb "golang.org/x/xerrors";_cg "image";_ga "image/color";_eb "image/jpeg";_fg "io";_e "io/ioutil";_bc "reflect";_ce "regexp";_gg "sort";_bd "strconv";_gd "strings";_g "sync";_ba "time";_cd "unicode";);func _egg (_fgbf *PdfObjectStream ,_ade *PdfObjectDictionary )(*LZWEncoder ,error ){_abef :=NewLZWEncoder (); +_ebbc :=_fgbf .PdfObjectDictionary ;if _ebbc ==nil {return _abef ,nil ;};if _ade ==nil {_ageg :=TraceToDirectObject (_ebbc .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"));if _ageg !=nil {if _eca ,_ebc :=_ageg .(*PdfObjectDictionary ); +_ebc {_ade =_eca ;}else if _bcfg ,_ecd :=_ageg .(*PdfObjectArray );_ecd {if _bcfg .Len ()==1{if _dcf ,_cfgb :=GetDict (_bcfg .Get (0));_cfgb {_ade =_dcf ;};};};if _ade ==nil {_a .Log .Error ("\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020\u006e\u006f\u0074 \u0061 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0025\u0023\u0076",_ageg ); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};};};_gfce :=_ebbc .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065");if _gfce !=nil {_bafg ,_fccf :=_gfce .(*PdfObjectInteger ); +if !_fccf {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a \u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u006e\u0075\u006d\u0065\u0072i\u0063 \u0028\u0025\u0054\u0029",_gfce ); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065");};if *_bafg !=0&&*_bafg !=1{return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0076\u0061\u006c\u0075e\u0020\u0028\u006e\u006f\u0074 \u0030\u0020o\u0072\u0020\u0031\u0029"); +};_abef .EarlyChange =int (*_bafg );}else {_abef .EarlyChange =1;};if _ade ==nil {return _abef ,nil ;};if _babc ,_cebf :=GetIntVal (_ade .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065"));_cebf {if _babc ==0||_babc ==1{_abef .EarlyChange =_babc ; +}else {_a .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020E\u0061\u0072\u006c\u0079\u0043\u0068\u0061n\u0067\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020%\u0064",_babc );};};_gfce =_ade .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr"); +if _gfce !=nil {_abdg ,_gdb :=_gfce .(*PdfObjectInteger );if !_gdb {_a .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_gfce ); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_abef .Predictor =int (*_abdg );};_gfce =_ade .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +if _gfce !=nil {_cgb ,_bafb :=_gfce .(*PdfObjectInteger );if !_bafb {_a .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +return nil ,_gf .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_abef .BitsPerComponent =int (*_cgb );};if _abef .Predictor > 1{_abef .Columns =1;_gfce =_ade .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"); +if _gfce !=nil {_cegf ,_cbca :=_gfce .(*PdfObjectInteger );if !_cbca {return nil ,_gf .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_abef .Columns =int (*_cegf ); +};_abef .Colors =1;_gfce =_ade .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _gfce !=nil {_babe ,_fcdaf :=_gfce .(*PdfObjectInteger );if !_fcdaf {return nil ,_gf .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); +};_abef .Colors =int (*_babe );};};_a .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_ade .String ());return _abef ,nil ;}; -// GetAccessPermissions returns the PDF access permissions as an AccessPermissions object. -func (_ecc *PdfCrypt )GetAccessPermissions ()_fg .Permissions {return _ecc ._af .P }; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_gggfa *RunLengthEncoder )MakeStreamDict ()*PdfObjectDictionary {_gbeg :=MakeDict ();_gbeg .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_gggfa .GetFilterName ()));return _gbeg ;}; + +// AddPageImage adds the page with the image 'img' to the encoder context in order to encode it jbig2 document. +// The 'settings' defines what encoding type should be used by the encoder. +func (_dfga *JBIG2Encoder )AddPageImage (img *JBIG2Image ,settings *JBIG2EncoderSettings )(_eaaf error ){const _dfca ="\u004a\u0042\u0049\u0047\u0032\u0044\u006f\u0063\u0075\u006d\u0065n\u0074\u002e\u0041\u0064\u0064\u0050\u0061\u0067\u0065\u0049m\u0061\u0067\u0065"; +if _dfga ==nil {return _dd .Error (_dfca ,"J\u0042I\u0047\u0032\u0044\u006f\u0063\u0075\u006d\u0065n\u0074\u0020\u0069\u0073 n\u0069\u006c");};if settings ==nil {settings =&_dfga .DefaultPageSettings ;};if _dfga ._feg ==nil {_dfga ._feg =_de .InitEncodeDocument (settings .FileMode ); +};if _eaaf =settings .Validate ();_eaaf !=nil {return _dd .Wrap (_eaaf ,_dfca ,"");};_dfbc ,_eaaf :=img .toBitmap ();if _eaaf !=nil {return _dd .Wrap (_eaaf ,_dfca ,"");};switch settings .Compression {case JB2Generic :if _eaaf =_dfga ._feg .AddGenericPage (_dfbc ,settings .DuplicatedLinesRemoval ); +_eaaf !=nil {return _dd .Wrap (_eaaf ,_dfca ,"");};case JB2SymbolCorrelation :return _dd .Error (_dfca ,"s\u0079\u006d\u0062\u006f\u006c\u0020\u0063\u006f\u0072r\u0065\u006c\u0061\u0074\u0069\u006f\u006e e\u006e\u0063\u006f\u0064i\u006e\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006dpl\u0065\u006de\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); +case JB2SymbolRankHaus :return _dd .Error (_dfca ,"\u0073y\u006d\u0062o\u006c\u0020\u0072a\u006e\u006b\u0020\u0068\u0061\u0075\u0073 \u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065m\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); +default:return _dd .Error (_dfca ,"\u0070\u0072\u006f\u0076i\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020c\u006f\u006d\u0070\u0072\u0065\u0073\u0073i\u006f\u006e");};return nil ;};func (_ggagb *PdfParser )parseObject ()(PdfObject ,error ){_a .Log .Trace ("\u0052e\u0061d\u0020\u0064\u0069\u0072\u0065c\u0074\u0020o\u0062\u006a\u0065\u0063\u0074"); +_ggagb .skipSpaces ();for {_gafd ,_gcab :=_ggagb ._ffbg .Peek (2);if _gcab !=nil {if _gcab !=_fg .EOF ||len (_gafd )==0{return nil ,_gcab ;};if len (_gafd )==1{_gafd =append (_gafd ,' ');};};_a .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_gafd )); +if _gafd [0]=='/'{_dfbg ,_aadd :=_ggagb .parseName ();_a .Log .Trace ("\u002d\u003e\u004ea\u006d\u0065\u003a\u0020\u0027\u0025\u0073\u0027",_dfbg );return &_dfbg ,_aadd ;}else if _gafd [0]=='('{_a .Log .Trace ("\u002d>\u0053\u0074\u0072\u0069\u006e\u0067!"); +_dfbca ,_eace :=_ggagb .parseString ();return _dfbca ,_eace ;}else if _gafd [0]=='['{_a .Log .Trace ("\u002d\u003e\u0041\u0072\u0072\u0061\u0079\u0021");_bffb ,_fbba :=_ggagb .parseArray ();return _bffb ,_fbba ;}else if (_gafd [0]=='<')&&(_gafd [1]=='<'){_a .Log .Trace ("\u002d>\u0044\u0069\u0063\u0074\u0021"); +_bdcf ,_gcgc :=_ggagb .ParseDict ();return _bdcf ,_gcgc ;}else if _gafd [0]=='<'{_a .Log .Trace ("\u002d\u003e\u0048\u0065\u0078\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0021");_dcbf ,_caad :=_ggagb .parseHexString ();return _dcbf ,_caad ;}else if _gafd [0]=='%'{_ggagb .readComment (); +_ggagb .skipSpaces ();}else {_a .Log .Trace ("\u002d\u003eN\u0075\u006d\u0062e\u0072\u0020\u006f\u0072\u0020\u0072\u0065\u0066\u003f");_gafd ,_ =_ggagb ._ffbg .Peek (15);_bgba :=string (_gafd );_a .Log .Trace ("\u0050\u0065\u0065k\u0020\u0073\u0074\u0072\u003a\u0020\u0025\u0073",_bgba ); +if (len (_bgba )> 3)&&(_bgba [:4]=="\u006e\u0075\u006c\u006c"){_afb ,_fddc :=_ggagb .parseNull ();return &_afb ,_fddc ;}else if (len (_bgba )> 4)&&(_bgba [:5]=="\u0066\u0061\u006cs\u0065"){_baae ,_eage :=_ggagb .parseBool ();return &_baae ,_eage ;}else if (len (_bgba )> 3)&&(_bgba [:4]=="\u0074\u0072\u0075\u0065"){_dcfg ,_gega :=_ggagb .parseBool (); +return &_dcfg ,_gega ;};_aefeb :=_fafa .FindStringSubmatch (_bgba );if len (_aefeb )> 1{_gafd ,_ =_ggagb ._ffbg .ReadBytes ('R');_a .Log .Trace ("\u002d\u003e\u0020\u0021\u0052\u0065\u0066\u003a\u0020\u0027\u0025\u0073\u0027",string (_gafd [:]));_feca ,_dcdg :=_gbgg (string (_gafd )); +_feca ._cfada =_ggagb ;return &_feca ,_dcdg ;};_dgae :=_faaga .FindStringSubmatch (_bgba );if len (_dgae )> 1{_a .Log .Trace ("\u002d\u003e\u0020\u004e\u0075\u006d\u0062\u0065\u0072\u0021");_edge ,_abeae :=_ggagb .parseNumber ();return _edge ,_abeae ;}; +_dgae =_gadc .FindStringSubmatch (_bgba );if len (_dgae )> 1{_a .Log .Trace ("\u002d\u003e\u0020\u0045xp\u006f\u006e\u0065\u006e\u0074\u0069\u0061\u006c\u0020\u004e\u0075\u006d\u0062\u0065r\u0021");_a .Log .Trace ("\u0025\u0020\u0073",_dgae );_dcdfg ,_fcbaf :=_ggagb .parseNumber (); +return _dcdfg ,_fcbaf ;};_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020U\u006e\u006b\u006e\u006f\u0077n\u0020(\u0070e\u0065\u006b\u0020\u0022\u0025\u0073\u0022)",_bgba );return nil ,_c .New ("\u006f\u0062\u006a\u0065\u0063t\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006fr\u0020\u002d\u0020\u0075\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e"); +};};}; // XrefObject defines a cross reference entry which is a map between object number (with generation number) and the // location of the actual object, either as a file offset (xref table entry), or as a location within an xref @@ -31,294 +65,246 @@ Offset int64 ; // For xrefs to object streams. OsObjNumber int ;OsObjIndex int ;}; -// MakeNull creates an PdfObjectNull. -func MakeNull ()*PdfObjectNull {_dfbg :=PdfObjectNull {};return &_dfbg }; - -// NewMultiEncoder returns a new instance of MultiEncoder. -func NewMultiEncoder ()*MultiEncoder {_faba :=MultiEncoder {};_faba ._degb =[]StreamEncoder {};return &_faba ;}; - -// IsOctalDigit checks if a character can be part of an octal digit string. -func IsOctalDigit (c byte )bool {return '0'<=c &&c <='7'};func (_eggb *offsetReader )Seek (offset int64 ,whence int )(int64 ,error ){if whence ==_ae .SeekStart {offset +=_eggb ._febb ;};_fbbde ,_badcc :=_eggb ._fgba .Seek (offset ,whence );if _badcc !=nil {return _fbbde ,_badcc ; -};if whence ==_ae .SeekCurrent {_fbbde -=_eggb ._febb ;};if _fbbde < 0{return 0,_f .New ("\u0063\u006f\u0072\u0065\u002eo\u0066\u0066\u0073\u0065\u0074\u0052\u0065\u0061\u0064\u0065\u0072\u002e\u0053e\u0065\u006b\u003a\u0020\u006e\u0065\u0067\u0061\u0074\u0069\u0076\u0065\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e"); -};return _fbbde ,nil ;};func (_fddb *PdfParser )parseHexString ()(*PdfObjectString ,error ){_fddb ._affd .ReadByte ();var _fgdg _fb .Buffer ;for {_dacfa ,_gca :=_fddb ._affd .Peek (1);if _gca !=nil {return MakeString (""),_gca ;};if _dacfa [0]=='>'{_fddb ._affd .ReadByte (); -break ;};_ddead ,_ :=_fddb ._affd .ReadByte ();if _fddb ._adaa {if _fb .IndexByte (_abbc ,_ddead )==-1{_fddb ._bcdc ._gagg =true ;};};if !IsWhiteSpace (_ddead ){_fgdg .WriteByte (_ddead );};};if _fgdg .Len ()%2==1{_fddb ._bcdc ._abb =true ;_fgdg .WriteRune ('0'); -};_dgfd ,_ :=_dc .DecodeString (_fgdg .String ());return MakeHexString (string (_dgfd )),nil ;}; - -// GetTrailer returns the PDFs trailer dictionary. The trailer dictionary is typically the starting point for a PDF, -// referencing other key objects that are important in the document structure. -func (_gccd *PdfParser )GetTrailer ()*PdfObjectDictionary {return _gccd ._gddgc };func (_bcc *PdfCrypt )saveCryptFilters (_eff *PdfObjectDictionary )error {if _bcc ._dgb .V < 4{return _f .New ("\u0063\u0061\u006e\u0020\u006f\u006e\u006c\u0079\u0020\u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0020V\u003e\u003d\u0034"); -};_baff :=MakeDict ();_eff .Set ("\u0043\u0046",_baff );for _gbgc ,_gea :=range _bcc ._bgbe {if _gbgc =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{continue ;};_ebfa :=_agf (_gea ,"");_baff .Set (PdfObjectName (_gbgc ),_ebfa );};_eff .Set ("\u0053\u0074\u0072\u0046",MakeName (_bcc ._ffd )); -_eff .Set ("\u0053\u0074\u006d\u0046",MakeName (_bcc ._gfd ));return nil ;};func _bafgb (_cagg int )int {_dede :=_cagg >>(_dbbgc -1);return (_cagg ^_dede )-_dede }; +// ResolveReference resolves reference if `o` is a *PdfObjectReference and returns the object referenced to. +// Otherwise returns back `o`. +func ResolveReference (obj PdfObject )PdfObject {if _bcbf ,_ddac :=obj .(*PdfObjectReference );_ddac {return _bcbf .Resolve ();};return obj ;}; -// Update updates multiple keys and returns the dictionary back so can be used in a chained fashion. -func (_dfbe *PdfObjectDictionary )Update (objmap map[string ]PdfObject )*PdfObjectDictionary {_dfbe ._gaae .Lock ();defer _dfbe ._gaae .Unlock ();for _ccce ,_dgfe :=range objmap {_dfbe .setWithLock (PdfObjectName (_ccce ),_dgfe ,false );};return _dfbe ; -}; +// WriteString outputs the object as it is to be written to file. +func (_fggba *PdfObjectString )WriteString ()string {var _fgccb _fd .Buffer ;if _fggba ._gead {_dfda :=_bdc .EncodeToString (_fggba .Bytes ());_fgccb .WriteString ("\u003c");_fgccb .WriteString (_dfda );_fgccb .WriteString ("\u003e");return _fgccb .String (); +};_bgcf :=map[byte ]string {'\n':"\u005c\u006e",'\r':"\u005c\u0072",'\t':"\u005c\u0074",'\b':"\u005c\u0062",'\f':"\u005c\u0066",'(':"\u005c\u0028",')':"\u005c\u0029",'\\':"\u005c\u005c"};_fgccb .WriteString ("\u0028");for _bgfgd :=0;_bgfgd < len (_fggba ._aaca ); +_bgfgd ++{_fcdfd :=_fggba ._aaca [_bgfgd ];if _edfa ,_caea :=_bgcf [_fcdfd ];_caea {_fgccb .WriteString (_edfa );}else {_fgccb .WriteByte (_fcdfd );};};_fgccb .WriteString ("\u0029");return _fgccb .String ();}; -// EncodeJBIG2Image encodes 'img' into jbig2 encoded bytes stream, using default encoder settings. -func (_eaad *JBIG2Encoder )EncodeJBIG2Image (img *JBIG2Image )([]byte ,error ){const _dbee ="c\u006f\u0072\u0065\u002eEn\u0063o\u0064\u0065\u004a\u0042\u0049G\u0032\u0049\u006d\u0061\u0067\u0065";if _bcga :=_eaad .AddPageImage (img ,&_eaad .DefaultPageSettings ); -_bcga !=nil {return nil ,_cd .Wrap (_bcga ,_dbee ,"");};return _eaad .Encode ();}; +// ReadAtLeast reads at least n bytes into slice p. +// Returns the number of bytes read (should always be == n), and an error on failure. +func (_cgbf *PdfParser )ReadAtLeast (p []byte ,n int )(int ,error ){_bcdf :=n ;_dagcf :=0;_eede :=0;for _bcdf > 0{_gagg ,_ccab :=_cgbf ._ffbg .Read (p [_dagcf :]);if _ccab !=nil {_a .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0046\u0061i\u006c\u0065\u0064\u0020\u0072\u0065\u0061d\u0069\u006e\u0067\u0020\u0028\u0025\u0064\u003b\u0025\u0064\u0029\u0020\u0025\u0073",_gagg ,_eede ,_ccab .Error ()); +return _dagcf ,_c .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065a\u0064\u0069\u006e\u0067");};_eede ++;_dagcf +=_gagg ;_bcdf -=_gagg ;};return _dagcf ,nil ;}; -// EncodeBytes DCT encodes the passed in slice of bytes. -func (_aca *DCTEncoder )EncodeBytes (data []byte )([]byte ,error ){var _cffg _ac .Image ;if _aca .ColorComponents ==1&&_aca .BitsPerComponent ==8{_cffg =&_ac .Gray {Rect :_ac .Rect (0,0,_aca .Width ,_aca .Height ),Pix :data ,Stride :_fcf .BytesPerLine (_aca .Width ,_aca .BitsPerComponent ,_aca .ColorComponents )}; -}else {var _agfac error ;_cffg ,_agfac =_fcf .NewImage (_aca .Width ,_aca .Height ,_aca .BitsPerComponent ,_aca .ColorComponents ,data ,nil ,nil );if _agfac !=nil {return nil ,_agfac ;};};_gef :=_bd .Options {};_gef .Quality =_aca .Quality ;var _aebd _fb .Buffer ; -if _egdf :=_bd .Encode (&_aebd ,_cffg ,&_gef );_egdf !=nil {return nil ,_egdf ;};return _aebd .Bytes (),nil ;}; +// String returns a string describing `array`. +func (_ceab *PdfObjectArray )String ()string {_dfeg :="\u005b";for _aece ,_aagb :=range _ceab .Elements (){_dfeg +=_aagb .String ();if _aece < (_ceab .Len ()-1){_dfeg +="\u002c\u0020";};};_dfeg +="\u005d";return _dfeg ;}; -// GetString is a helper for Get that returns a string value. -// Returns false if the key is missing or a value is not a string. -func (_ebfc *PdfObjectDictionary )GetString (key PdfObjectName )(string ,bool ){_bgbc :=_ebfc .Get (key );if _bgbc ==nil {return "",false ;};_agbc ,_ccba :=_bgbc .(*PdfObjectString );if !_ccba {return "",false ;};return _agbc .Str (),true ;};func (_ccgag *PdfParser )checkLinearizedInformation (_abgeb *PdfObjectDictionary )(bool ,error ){var _gafd error ; -_ccgag ._gbcg ,_gafd =GetNumberAsInt64 (_abgeb .Get ("\u004c"));if _gafd !=nil {return false ,_gafd ;};_gafd =_ccgag .seekToEOFMarker (_ccgag ._gbcg );switch _gafd {case nil :return true ,nil ;case _aaag :return false ,nil ;default:return false ,_gafd ; -};}; +// GetFileOffset returns the current file offset, accounting for buffered position. +func (_dadg *PdfParser )GetFileOffset ()int64 {_bgcb ,_ :=_dadg ._dfcdg .Seek (0,_fg .SeekCurrent );_bgcb -=int64 (_dadg ._ffbg .Buffered ());return _bgcb ;}; -// MakeInteger creates a PdfObjectInteger from an int64. -func MakeInteger (val int64 )*PdfObjectInteger {_bcbeed :=PdfObjectInteger (val );return &_bcbeed };func _ebba (_dabe *PdfObjectDictionary )(_gggd *_fcf .ImageBase ){var (_aaefa *PdfObjectInteger ;_gcce bool ;);if _aaefa ,_gcce =_dabe .Get ("\u0057\u0069\u0064t\u0068").(*PdfObjectInteger ); -_gcce {_gggd =&_fcf .ImageBase {Width :int (*_aaefa )};}else {return nil ;};if _aaefa ,_gcce =_dabe .Get ("\u0048\u0065\u0069\u0067\u0068\u0074").(*PdfObjectInteger );_gcce {_gggd .Height =int (*_aaefa );};if _aaefa ,_gcce =_dabe .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074").(*PdfObjectInteger ); -_gcce {_gggd .BitsPerComponent =int (*_aaefa );};if _aaefa ,_gcce =_dabe .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073").(*PdfObjectInteger );_gcce {_gggd .ColorComponents =int (*_aaefa );};return _gggd ;}; +// GetFilterName returns the names of the underlying encoding filters, +// separated by spaces. +// Note: This is just a string, should not be used in /Filter dictionary entry. Use GetFilterArray for that. +// TODO(v4): Refactor to GetFilter() which can be used for /Filter (either Name or Array), this can be +// renamed to String() as a pretty string to use in debugging etc. +func (_fabb *MultiEncoder )GetFilterName ()string {_ccfa :="";for _agc ,_aaac :=range _fabb ._bdfb {_ccfa +=_aaac .GetFilterName ();if _agc < len (_fabb ._bdfb )-1{_ccfa +="\u0020";};};return _ccfa ;}; -// DecodeBytes returns the passed in slice of bytes. -// The purpose of the method is to satisfy the StreamEncoder interface. -func (_ade *RawEncoder )DecodeBytes (encoded []byte )([]byte ,error ){return encoded ,nil };func (_becg *PdfCrypt )isEncrypted (_ddeb PdfObject )bool {_ ,_ceaa :=_becg ._ggf [_ddeb ];if _ceaa {_ecd .Log .Trace ("\u0041\u006c\u0072\u0065\u0061\u0064\u0079\u0020\u0065\u006e\u0063\u0072y\u0070\u0074\u0065\u0064"); -return true ;};_ecd .Log .Trace ("\u004e\u006f\u0074\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0065d\u0020\u0079\u0065\u0074");return false ;}; +// ToInt64Slice returns a slice of all array elements as an int64 slice. An error is returned if the +// array non-integer objects. Each element can only be PdfObjectInteger. +func (_ddae *PdfObjectArray )ToInt64Slice ()([]int64 ,error ){var _eegcd []int64 ;for _ ,_gddg :=range _ddae .Elements (){if _feff ,_addbb :=_gddg .(*PdfObjectInteger );_addbb {_eegcd =append (_eegcd ,int64 (*_feff ));}else {return nil ,ErrTypeError ;}; +};return _eegcd ,nil ;}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_gfg *LZWEncoder )MakeDecodeParams ()PdfObject {if _gfg .Predictor > 1{_bga :=MakeDict ();_bga .Set ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr",MakeInteger (int64 (_gfg .Predictor )));if _gfg .BitsPerComponent !=8{_bga .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",MakeInteger (int64 (_gfg .BitsPerComponent ))); -};if _gfg .Columns !=1{_bga .Set ("\u0043o\u006c\u0075\u006d\u006e\u0073",MakeInteger (int64 (_gfg .Columns )));};if _gfg .Colors !=1{_bga .Set ("\u0043\u006f\u006c\u006f\u0072\u0073",MakeInteger (int64 (_gfg .Colors )));};return _bga ;};return nil ;}; -func (_fbgg *PdfParser )parseObject ()(PdfObject ,error ){_ecd .Log .Trace ("\u0052e\u0061d\u0020\u0064\u0069\u0072\u0065c\u0074\u0020o\u0062\u006a\u0065\u0063\u0074");_fbgg .skipSpaces ();for {_fbfg ,_ecde :=_fbgg ._affd .Peek (2);if _ecde !=nil {if _ecde !=_ae .EOF ||len (_fbfg )==0{return nil ,_ecde ; -};if len (_fbfg )==1{_fbfg =append (_fbfg ,' ');};};_ecd .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_fbfg ));if _fbfg [0]=='/'{_bfcaa ,_beaf :=_fbgg .parseName ();_ecd .Log .Trace ("\u002d\u003e\u004ea\u006d\u0065\u003a\u0020\u0027\u0025\u0073\u0027",_bfcaa ); -return &_bfcaa ,_beaf ;}else if _fbfg [0]=='('{_ecd .Log .Trace ("\u002d>\u0053\u0074\u0072\u0069\u006e\u0067!");_bdeg ,_edbe :=_fbgg .parseString ();return _bdeg ,_edbe ;}else if _fbfg [0]=='['{_ecd .Log .Trace ("\u002d\u003e\u0041\u0072\u0072\u0061\u0079\u0021"); -_aefbd ,_ebb :=_fbgg .parseArray ();return _aefbd ,_ebb ;}else if (_fbfg [0]=='<')&&(_fbfg [1]=='<'){_ecd .Log .Trace ("\u002d>\u0044\u0069\u0063\u0074\u0021");_fgee ,_agcc :=_fbgg .ParseDict ();return _fgee ,_agcc ;}else if _fbfg [0]=='<'{_ecd .Log .Trace ("\u002d\u003e\u0048\u0065\u0078\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0021"); -_gffg ,_gfe :=_fbgg .parseHexString ();return _gffg ,_gfe ;}else if _fbfg [0]=='%'{_fbgg .readComment ();_fbgg .skipSpaces ();}else {_ecd .Log .Trace ("\u002d\u003eN\u0075\u006d\u0062e\u0072\u0020\u006f\u0072\u0020\u0072\u0065\u0066\u003f");_fbfg ,_ =_fbgg ._affd .Peek (15); -_fgfef :=string (_fbfg );_ecd .Log .Trace ("\u0050\u0065\u0065k\u0020\u0073\u0074\u0072\u003a\u0020\u0025\u0073",_fgfef );if (len (_fgfef )> 3)&&(_fgfef [:4]=="\u006e\u0075\u006c\u006c"){_ecfcc ,_geda :=_fbgg .parseNull ();return &_ecfcc ,_geda ;}else if (len (_fgfef )> 4)&&(_fgfef [:5]=="\u0066\u0061\u006cs\u0065"){_ddaed ,_dece :=_fbgg .parseBool (); -return &_ddaed ,_dece ;}else if (len (_fgfef )> 3)&&(_fgfef [:4]=="\u0074\u0072\u0075\u0065"){_ggbfg ,_dgdbd :=_fbgg .parseBool ();return &_ggbfg ,_dgdbd ;};_dbddg :=_becgf .FindStringSubmatch (_fgfef );if len (_dbddg )> 1{_fbfg ,_ =_fbgg ._affd .ReadBytes ('R'); -_ecd .Log .Trace ("\u002d\u003e\u0020\u0021\u0052\u0065\u0066\u003a\u0020\u0027\u0025\u0073\u0027",string (_fbfg [:]));_fcg ,_cggf :=_gcdaa (string (_fbfg ));_fcg ._ceda =_fbgg ;return &_fcg ,_cggf ;};_ecaf :=_dbdd .FindStringSubmatch (_fgfef );if len (_ecaf )> 1{_ecd .Log .Trace ("\u002d\u003e\u0020\u004e\u0075\u006d\u0062\u0065\u0072\u0021"); -_cccbf ,_agfg :=_fbgg .parseNumber ();return _cccbf ,_agfg ;};_ecaf =_adcf .FindStringSubmatch (_fgfef );if len (_ecaf )> 1{_ecd .Log .Trace ("\u002d\u003e\u0020\u0045xp\u006f\u006e\u0065\u006e\u0074\u0069\u0061\u006c\u0020\u004e\u0075\u006d\u0062\u0065r\u0021"); -_ecd .Log .Trace ("\u0025\u0020\u0073",_ecaf );_dgcc ,_fdbg :=_fbgg .parseNumber ();return _dgcc ,_fdbg ;};_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020U\u006e\u006b\u006e\u006f\u0077n\u0020(\u0070e\u0065\u006b\u0020\u0022\u0025\u0073\u0022)",_fgfef ); -return nil ,_f .New ("\u006f\u0062\u006a\u0065\u0063t\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006fr\u0020\u002d\u0020\u0075\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e"); -};};}; +// GetAsFloat64Slice returns the array as []float64 slice. +// Returns an error if not entirely numeric (only PdfObjectIntegers, PdfObjectFloats). +func (_egfac *PdfObjectArray )GetAsFloat64Slice ()([]float64 ,error ){var _ecca []float64 ;for _ ,_gagee :=range _egfac .Elements (){_bffba ,_gbbf :=GetNumberAsFloat (TraceToDirectObject (_gagee ));if _gbbf !=nil {return nil ,_gf .Errorf ("\u0061\u0072\u0072\u0061\u0079\u0020\u0065\u006c\u0065\u006d\u0065n\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0075m\u0062\u0065\u0072"); +};_ecca =append (_ecca ,_bffba );};return _ecca ,nil ;}; // GetFilterName returns the name of the encoding filter. -func (_fba *FlateEncoder )GetFilterName ()string {return StreamEncodingFilterNameFlate };type xrefType int ;func (_fag *PdfCrypt )generateParams (_cff ,_cgbc []byte )error {_caff :=_fag .securityHandler ();_gccc ,_bcbb :=_caff .GenerateParams (&_fag ._af ,_cgbc ,_cff ); -if _bcbb !=nil {return _bcbb ;};_fag ._fedc =_gccc ;return nil ;};func _cfbbgc (_dfegc _fcf .Image )*JBIG2Image {_cgg :=_dfegc .Base ();return &JBIG2Image {Data :_cgg .Data ,Width :_cgg .Width ,Height :_cgg .Height ,HasPadding :true };};func (_degbe *limitedReadSeeker )getError (_fcea int64 )error {switch {case _fcea < 0:return _daa .Errorf ("\u0075\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u006e\u0065\u0067\u0061\u0074\u0069\u0076e\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u003a\u0020\u0025\u0064",_fcea ); -case _fcea > _degbe ._bfgb :return _daa .Errorf ("u\u006e\u0065\u0078\u0070ec\u0074e\u0064\u0020\u006f\u0066\u0066s\u0065\u0074\u003a\u0020\u0025\u0064",_fcea );};return nil ;}; - -// Keys returns the list of keys in the dictionary. -// If `d` is nil returns a nil slice. -func (_gcee *PdfObjectDictionary )Keys ()[]PdfObjectName {if _gcee ==nil {return nil ;};return _gcee ._aeea ;}; +func (_ceaa *ASCIIHexEncoder )GetFilterName ()string {return StreamEncodingFilterNameASCIIHex }; // DecodeBytes decodes a slice of Flate encoded bytes and returns the result. -func (_gcfg *FlateEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_ecd .Log .Trace ("\u0046\u006c\u0061\u0074\u0065\u0044\u0065\u0063\u006f\u0064\u0065\u0020b\u0079\u0074\u0065\u0073");if len (encoded )==0{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u006d\u0070\u0074\u0079\u0020\u0046\u006c\u0061\u0074\u0065 e\u006ec\u006f\u0064\u0065\u0064\u0020\u0062\u0075\u0066\u0066\u0065\u0072\u002e \u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0065\u006d\u0070\u0074\u0079\u0020\u0062y\u0074\u0065\u0020\u0073\u006c\u0069\u0063\u0065\u002e"); -return []byte {},nil ;};_geea :=_fb .NewReader (encoded );_faaa ,_dec :=_da .NewReader (_geea );if _dec !=nil {_ecd .Log .Debug ("\u0044e\u0063o\u0064\u0069\u006e\u0067\u0020e\u0072\u0072o\u0072\u0020\u0025\u0076\u000a",_dec );_ecd .Log .Debug ("\u0053t\u0072e\u0061\u006d\u0020\u0028\u0025\u0064\u0029\u0020\u0025\u0020\u0078",len (encoded ),encoded ); -return nil ,_dec ;};defer _faaa .Close ();var _cdec _fb .Buffer ;_cdec .ReadFrom (_faaa );return _cdec .Bytes (),nil ;};var _bbcd =_fc .MustCompile ("\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u0028\u005c\u0064\u002b)\u005c\u0073\u002a\u0024"); +func (_afa *FlateEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_a .Log .Trace ("\u0046\u006c\u0061\u0074\u0065\u0044\u0065\u0063\u006f\u0064\u0065\u0020b\u0079\u0074\u0065\u0073");if len (encoded )==0{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u006d\u0070\u0074\u0079\u0020\u0046\u006c\u0061\u0074\u0065 e\u006ec\u006f\u0064\u0065\u0064\u0020\u0062\u0075\u0066\u0066\u0065\u0072\u002e \u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0065\u006d\u0070\u0074\u0079\u0020\u0062y\u0074\u0065\u0020\u0073\u006c\u0069\u0063\u0065\u002e"); +return []byte {},nil ;};_afg :=_fd .NewReader (encoded );_deag ,_cbceg :=_cea .NewReader (_afg );if _cbceg !=nil {_a .Log .Debug ("\u0044e\u0063o\u0064\u0069\u006e\u0067\u0020e\u0072\u0072o\u0072\u0020\u0025\u0076\u000a",_cbceg );_a .Log .Debug ("\u0053t\u0072e\u0061\u006d\u0020\u0028\u0025\u0064\u0029\u0020\u0025\u0020\u0078",len (encoded ),encoded ); +return nil ,_cbceg ;};defer _deag .Close ();var _eedf _fd .Buffer ;_eedf .ReadFrom (_deag );return _eedf .Bytes (),nil ;};func (_eaccf *PdfCrypt )generateParams (_bbb ,_geg []byte )error {_gbc :=_eaccf .securityHandler ();_dea ,_gedd :=_gbc .GenerateParams (&_eaccf ._aec ,_geg ,_bbb ); +if _gedd !=nil {return _gedd ;};_eaccf ._baa =_dea ;return nil ;};func (_edefc *PdfParser )parseBool ()(PdfObjectBool ,error ){_bdee ,_eagce :=_edefc ._ffbg .Peek (4);if _eagce !=nil {return PdfObjectBool (false ),_eagce ;};if (len (_bdee )>=4)&&(string (_bdee [:4])=="\u0074\u0072\u0075\u0065"){_edefc ._ffbg .Discard (4); +return PdfObjectBool (true ),nil ;};_bdee ,_eagce =_edefc ._ffbg .Peek (5);if _eagce !=nil {return PdfObjectBool (false ),_eagce ;};if (len (_bdee )>=5)&&(string (_bdee [:5])=="\u0066\u0061\u006cs\u0065"){_edefc ._ffbg .Discard (5);return PdfObjectBool (false ),nil ; +};return PdfObjectBool (false ),_c .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg");}; // Append appends PdfObject(s) to the array. -func (_gegd *PdfObjectArray )Append (objects ...PdfObject ){if _gegd ==nil {_ecd .Log .Debug ("\u0057\u0061\u0072\u006e\u0020\u002d\u0020\u0041\u0074\u0074\u0065\u006d\u0070t\u0020\u0074\u006f\u0020\u0061\u0070p\u0065\u006e\u0064\u0020\u0074\u006f\u0020\u0061\u0020\u006e\u0069\u006c\u0020a\u0072\u0072\u0061\u0079"); -return ;};_gegd ._egacc =append (_gegd ._egacc ,objects ...);};func (_ecb *PdfCrypt )checkAccessRights (_gbd []byte )(bool ,_fg .Permissions ,error ){_gcc :=_ecb .securityHandler ();_deb ,_faf ,_geg :=_gcc .Authenticate (&_ecb ._af ,_gbd );if _geg !=nil {return false ,0,_geg ; -}else if _faf ==0||len (_deb )==0{return false ,0,nil ;};return true ,_faf ,nil ;}; - -// HeaderPosition gets the file header position. -func (_bda ParserMetadata )HeaderPosition ()int {return _bda ._dcge }; +func (_dgaeca *PdfObjectArray )Append (objects ...PdfObject ){if _dgaeca ==nil {_a .Log .Debug ("\u0057\u0061\u0072\u006e\u0020\u002d\u0020\u0041\u0074\u0074\u0065\u006d\u0070t\u0020\u0074\u006f\u0020\u0061\u0070p\u0065\u006e\u0064\u0020\u0074\u006f\u0020\u0061\u0020\u006e\u0069\u006c\u0020a\u0072\u0072\u0061\u0079"); +return ;};_dgaeca ._fabc =append (_dgaeca ._fabc ,objects ...);};func _adcf (_baaf *PdfObjectStream ,_afgaf *PdfObjectDictionary )(*CCITTFaxEncoder ,error ){_fada :=NewCCITTFaxEncoder ();_abg :=_baaf .PdfObjectDictionary ;if _abg ==nil {return _fada ,nil ; +};if _afgaf ==nil {_cafd :=TraceToDirectObject (_abg .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"));if _cafd !=nil {switch _ebgf :=_cafd .(type ){case *PdfObjectDictionary :_afgaf =_ebgf ;case *PdfObjectArray :if _ebgf .Len ()==1{if _fcff ,_aage :=GetDict (_ebgf .Get (0)); +_aage {_afgaf =_fcff ;};};default:_a .Log .Error ("\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020\u006e\u006f\u0074 \u0061 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0025\u0023\u0076",_cafd );return nil ,_c .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"); +};};if _afgaf ==nil {_a .Log .Error ("\u0044\u0065c\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064 %\u0023\u0076",_cafd );return nil ,_c .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"); +};};if _ace ,_aegg :=GetNumberAsInt64 (_afgaf .Get ("\u004b"));_aegg ==nil {_fada .K =int (_ace );};if _adfb ,_fdbgf :=GetNumberAsInt64 (_afgaf .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"));_fdbgf ==nil {_fada .Columns =int (_adfb );}else {_fada .Columns =1728; +};if _dede ,_ccbd :=GetNumberAsInt64 (_afgaf .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031"));_ccbd ==nil {_fada .BlackIs1 =_dede > 0;}else {if _cece ,_ecgg :=GetBoolVal (_afgaf .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031"));_ecgg {_fada .BlackIs1 =_cece ; +}else {if _gcga ,_ecegfd :=GetArray (_afgaf .Get ("\u0044\u0065\u0063\u006f\u0064\u0065"));_ecegfd {_ffe ,_eaed :=_gcga .ToIntegerArray ();if _eaed ==nil {_fada .BlackIs1 =_ffe [0]==1&&_ffe [1]==0;};};};};if _bgcc ,_cfab :=GetNumberAsInt64 (_afgaf .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e")); +_cfab ==nil {_fada .EncodedByteAlign =_bgcc > 0;}else {if _ccde ,_feaa :=GetBoolVal (_afgaf .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e"));_feaa {_fada .EncodedByteAlign =_ccde ;};};if _ddcd ,_bbeg :=GetNumberAsInt64 (_afgaf .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee")); +_bbeg ==nil {_fada .EndOfLine =_ddcd > 0;}else {if _bcgc ,_gcdd :=GetBoolVal (_afgaf .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee"));_gcdd {_fada .EndOfLine =_bcgc ;};};if _cdgee ,_ebea :=GetNumberAsInt64 (_afgaf .Get ("\u0052\u006f\u0077\u0073")); +_ebea ==nil {_fada .Rows =int (_cdgee );};_fada .EndOfBlock =true ;if _eegc ,_eccc :=GetNumberAsInt64 (_afgaf .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b"));_eccc ==nil {_fada .EndOfBlock =_eegc > 0;}else {if _ggdg ,_cce :=GetBoolVal (_afgaf .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b")); +_cce {_fada .EndOfBlock =_ggdg ;};};if _ccc ,_aafc :=GetNumberAsInt64 (_afgaf .Get ("\u0044\u0061\u006d\u0061ge\u0064\u0052\u006f\u0077\u0073\u0042\u0065\u0066\u006f\u0072\u0065\u0045\u0072\u0072o\u0072"));_aafc !=nil {_fada .DamagedRowsBeforeError =int (_ccc ); +};_a .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_afgaf .String ());return _fada ,nil ;};var _gfcec _g .Map ; -// GetString returns the *PdfObjectString represented by the PdfObject directly or indirectly within an indirect -// object. On type mismatch the found bool flag is false and a nil pointer is returned. -func GetString (obj PdfObject )(_fdeeb *PdfObjectString ,_acg bool ){_fdeeb ,_acg =TraceToDirectObject (obj ).(*PdfObjectString );return _fdeeb ,_acg ;}; +// UpdateParams updates the parameter values of the encoder. +func (_ggfbd *JPXEncoder )UpdateParams (params *PdfObjectDictionary ){};func (_gfac *ASCII85Encoder )base256Tobase85 (_dabd uint32 )[5]byte {_afd :=[5]byte {0,0,0,0,0};_cedg :=_dabd ;for _baced :=0;_baced < 5;_baced ++{_eaab :=uint32 (1);for _bgfg :=0; +_bgfg < 4-_baced ;_bgfg ++{_eaab *=85;};_eccd :=_cedg /_eaab ;_cedg =_cedg %_eaab ;_afd [_baced ]=byte (_eccd );};return _afd ;}; -// MakeStringFromBytes creates an PdfObjectString from a byte array. -// This is more natural than MakeString as `data` is usually not utf-8 encoded. -func MakeStringFromBytes (data []byte )*PdfObjectString {return MakeString (string (data ))}; +// XrefTable represents the cross references in a PDF, i.e. the table of objects and information +// where to access within the PDF file. +type XrefTable struct{ObjectMap map[int ]XrefObject ;_cf []XrefObject ;}; -// WriteString outputs the object as it is to be written to file. -func (_bbbf *PdfObjectString )WriteString ()string {var _fceb _fb .Buffer ;if _bbbf ._eecb {_bedc :=_dc .EncodeToString (_bbbf .Bytes ());_fceb .WriteString ("\u003c");_fceb .WriteString (_bedc );_fceb .WriteString ("\u003e");return _fceb .String ();}; -_fdbag :=map[byte ]string {'\n':"\u005c\u006e",'\r':"\u005c\u0072",'\t':"\u005c\u0074",'\b':"\u005c\u0062",'\f':"\u005c\u0066",'(':"\u005c\u0028",')':"\u005c\u0029",'\\':"\u005c\u005c"};_fceb .WriteString ("\u0028");for _gefb :=0;_gefb < len (_bbbf ._cceg ); -_gefb ++{_edgb :=_bbbf ._cceg [_gefb ];if _cdccb ,_gafdf :=_fdbag [_edgb ];_gafdf {_fceb .WriteString (_cdccb );}else {_fceb .WriteByte (_edgb );};};_fceb .WriteString ("\u0029");return _fceb .String ();}; +// GetArray returns the *PdfObjectArray represented by the PdfObject directly or indirectly within an indirect +// object. On type mismatch the found bool flag is false and a nil pointer is returned. +func GetArray (obj PdfObject )(_ageb *PdfObjectArray ,_dbed bool ){_ageb ,_dbed =TraceToDirectObject (obj ).(*PdfObjectArray );return _ageb ,_dbed ;}; // MakeDecodeParams makes a new instance of an encoding dictionary based on // the current encoder settings. -func (_cegc *RunLengthEncoder )MakeDecodeParams ()PdfObject {return nil };func (_cbcb *PdfParser )readComment ()(string ,error ){var _aebdc _fb .Buffer ;_ ,_ccaf :=_cbcb .skipSpaces ();if _ccaf !=nil {return _aebdc .String (),_ccaf ;};_dfede :=true ;for {_cgdf ,_ggged :=_cbcb ._affd .Peek (1); -if _ggged !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_ggged .Error ());return _aebdc .String (),_ggged ;};if _dfede &&_cgdf [0]!='%'{return _aebdc .String (),_f .New ("c\u006f\u006d\u006d\u0065\u006e\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0073\u0074a\u0072\u0074\u0020w\u0069t\u0068\u0020\u0025"); -};_dfede =false ;if (_cgdf [0]!='\r')&&(_cgdf [0]!='\n'){_cabga ,_ :=_cbcb ._affd .ReadByte ();_aebdc .WriteByte (_cabga );}else {break ;};};return _aebdc .String (),nil ;};func (_baag *PdfParser )inspect ()(map[string ]int ,error ){_ecd .Log .Trace ("\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u0049\u004e\u0053P\u0045\u0043\u0054\u0020\u002d\u002d\u002d\u002d\u002d\u002d-\u002d\u002d\u002d"); -_ecd .Log .Trace ("X\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u003a");_deead :=map[string ]int {};_eced :=0;_gaca :=0;var _ggafc []int ;for _fdfge :=range _baag ._efdgc .ObjectMap {_ggafc =append (_ggafc ,_fdfge );};_db .Ints (_ggafc );_ddfd :=0; -for _ ,_dfdc :=range _ggafc {_dcgf :=_baag ._efdgc .ObjectMap [_dfdc ];if _dcgf .ObjectNumber ==0{continue ;};_eced ++;_ecd .Log .Trace ("\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d");_ecd .Log .Trace ("\u004c\u006f\u006f\u006bi\u006e\u0067\u0020\u0075\u0070\u0020\u006f\u0062\u006a\u0065c\u0074 \u006e\u0075\u006d\u0062\u0065\u0072\u003a \u0025\u0064",_dcgf .ObjectNumber ); -_daec ,_gcegd :=_baag .LookupByNumber (_dcgf .ObjectNumber );if _gcegd !=nil {_ecd .Log .Trace ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020\u006c\u006f\u006f\u006b\u0075p\u0020\u006f\u0062\u006a\u0020\u0025\u0064 \u0028\u0025\u0073\u0029",_dcgf .ObjectNumber ,_gcegd ); -_gaca ++;continue ;};_ecd .Log .Trace ("\u006fb\u006a\u003a\u0020\u0025\u0073",_daec );_bgaeg ,_edega :=_daec .(*PdfIndirectObject );if _edega {_ecd .Log .Trace ("\u0049N\u0044 \u004f\u004f\u0042\u004a\u0020\u0025\u0064\u003a\u0020\u0025\u0073",_dcgf .ObjectNumber ,_bgaeg ); -_agdad ,_cbgb :=_bgaeg .PdfObject .(*PdfObjectDictionary );if _cbgb {if _dggdc ,_egdc :=_agdad .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );_egdc {_cfed :=string (*_dggdc );_ecd .Log .Trace ("\u002d\u002d\u002d\u003e\u0020\u004f\u0062\u006a\u0020\u0074\u0079\u0070e\u003a\u0020\u0025\u0073",_cfed ); -_ ,_faac :=_deead [_cfed ];if _faac {_deead [_cfed ]++;}else {_deead [_cfed ]=1;};}else if _eadfe ,_gcefa :=_agdad .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065").(*PdfObjectName );_gcefa {_ddfc :=string (*_eadfe );_ecd .Log .Trace ("-\u002d-\u003e\u0020\u004f\u0062\u006a\u0020\u0073\u0075b\u0074\u0079\u0070\u0065: \u0025\u0073",_ddfc ); -_ ,_aefd :=_deead [_ddfc ];if _aefd {_deead [_ddfc ]++;}else {_deead [_ddfc ]=1;};};if _aeaca ,_gegdc :=_agdad .Get ("\u0053").(*PdfObjectName );_gegdc &&*_aeaca =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_ ,_gggb :=_deead ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]; -if _gggb {_deead ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++;}else {_deead ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]=1;};};};}else if _afgdf ,_fgca :=_daec .(*PdfObjectStream );_fgca {if _aaaf ,_fbgc :=_afgdf .PdfObjectDictionary .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); -_fbgc {_ecd .Log .Trace ("\u002d\u002d\u003e\u0020\u0053\u0074\u0072\u0065\u0061\u006d\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065:\u0020\u0025\u0073",*_aaaf );_afcb :=string (*_aaaf );_deead [_afcb ]++;};}else {_dceba ,_debe :=_daec .(*PdfObjectDictionary ); -if _debe {_dgacc ,_dged :=_dceba .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );if _dged {_ggbb :=string (*_dgacc );_ecd .Log .Trace ("\u002d-\u002d \u006f\u0062\u006a\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0073",_ggbb );_deead [_ggbb ]++;};}; -_ecd .Log .Trace ("\u0044\u0049\u0052\u0045\u0043\u0054\u0020\u004f\u0042\u004a\u0020\u0025d\u003a\u0020\u0025\u0073",_dcgf .ObjectNumber ,_daec );};_ddfd ++;};_ecd .Log .Trace ("\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u0045\u004fF\u0020\u0049\u004e\u0053\u0050\u0045\u0043T\u0020\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d"); -_ecd .Log .Trace ("\u003d=\u003d\u003d\u003d\u003d\u003d");_ecd .Log .Trace ("\u004f\u0062j\u0065\u0063\u0074 \u0063\u006f\u0075\u006e\u0074\u003a\u0020\u0025\u0064",_eced );_ecd .Log .Trace ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u006c\u006f\u006f\u006b\u0075p\u003a\u0020\u0025\u0064",_gaca ); -for _fdgcf ,_ffdc :=range _deead {_ecd .Log .Trace ("\u0025\u0073\u003a\u0020\u0025\u0064",_fdgcf ,_ffdc );};_ecd .Log .Trace ("\u003d=\u003d\u003d\u003d\u003d\u003d");if len (_baag ._efdgc .ObjectMap )< 1{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0068\u0069\u0073 \u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074 \u0069s\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0078\u0072\u0065\u0066\u0020\u0074\u0061\u0062l\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0021\u0029"); -return nil ,_daa .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0028\u0078r\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u006d\u0069\u0073s\u0069\u006e\u0067\u0029");};_cegfa ,_dacfe :=_deead ["\u0046\u006f\u006e\u0074"]; -if !_dacfe ||_cegfa < 2{_ecd .Log .Trace ("\u0054\u0068\u0069s \u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020i\u0073 \u0070r\u006fb\u0061\u0062\u006c\u0079\u0020\u0073\u0063\u0061\u006e\u006e\u0065\u0064\u0021");}else {_ecd .Log .Trace ("\u0054\u0068\u0069\u0073\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0066o\u0072\u0020\u0065\u0078\u0074r\u0061\u0063t\u0069\u006f\u006e\u0021"); -};return _deead ,nil ;}; - -// HasOddLengthHexStrings checks if the document has odd length hexadecimal strings. -func (_cdfc ParserMetadata )HasOddLengthHexStrings ()bool {return _cdfc ._abb }; +func (_aeg *FlateEncoder )MakeDecodeParams ()PdfObject {if _aeg .Predictor > 1{_abeb :=MakeDict ();_abeb .Set ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr",MakeInteger (int64 (_aeg .Predictor )));if _aeg .BitsPerComponent !=8{_abeb .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",MakeInteger (int64 (_aeg .BitsPerComponent ))); +};if _aeg .Columns !=1{_abeb .Set ("\u0043o\u006c\u0075\u006d\u006e\u0073",MakeInteger (int64 (_aeg .Columns )));};if _aeg .Colors !=1{_abeb .Set ("\u0043\u006f\u006c\u006f\u0072\u0073",MakeInteger (int64 (_aeg .Colors )));};return _abeb ;};return nil ; +}; -// NewFlateEncoder makes a new flate encoder with default parameters, predictor 1 and bits per component 8. -func NewFlateEncoder ()*FlateEncoder {_aegf :=&FlateEncoder {};_aegf .Predictor =1;_aegf .BitsPerComponent =8;_aegf .Colors =1;_aegf .Columns =1;return _aegf ;};func (_bbdg *PdfParser )readTextLine ()(string ,error ){var _bcgga _fb .Buffer ;for {_bggb ,_efge :=_bbdg ._affd .Peek (1); -if _efge !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_efge .Error ());return _bcgga .String (),_efge ;};if (_bggb [0]!='\r')&&(_bggb [0]!='\n'){_efcb ,_ :=_bbdg ._affd .ReadByte ();_bcgga .WriteByte (_efcb );}else {break ; -};};return _bcgga .String (),nil ;};func _dfg (_fcbc *PdfObjectStream ,_gegc *PdfObjectDictionary )(*FlateEncoder ,error ){_bgbee :=NewFlateEncoder ();_bce :=_fcbc .PdfObjectDictionary ;if _bce ==nil {return _bgbee ,nil ;};_bgbee ._bgba =_ebba (_bce ); -if _gegc ==nil {_efcf :=TraceToDirectObject (_bce .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"));switch _ccb :=_efcf .(type ){case *PdfObjectArray :if _ccb .Len ()!=1{_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072:\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020a\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0031\u0020\u0028\u0025\u0064\u0029",_ccb .Len ()); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};if _aecfb ,_dcef :=GetDict (_ccb .Get (0));_dcef {_gegc =_aecfb ;};case *PdfObjectDictionary :_gegc =_ccb ;case *PdfObjectNull ,nil :default:_ecd .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079 \u0028%\u0054\u0029",_efcf ); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};};if _gegc ==nil {return _bgbee ,nil ;};_ecd .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_gegc .String ()); -_bgbd :=_gegc .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr");if _bgbd ==nil {_ecd .Log .Debug ("E\u0072\u0072o\u0072\u003a\u0020\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0066\u0072\u006f\u006d\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073 \u002d\u0020\u0043\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020\u0077\u0069t\u0068\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u00281\u0029"); -}else {_bed ,_fcaa :=_bgbd .(*PdfObjectInteger );if !_fcaa {_ecd .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_bgbd ); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_bgbee .Predictor =int (*_bed );};_bgbd =_gegc .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -if _bgbd !=nil {_bccdc ,_cacf :=_bgbd .(*PdfObjectInteger );if !_cacf {_ecd .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -return nil ,_daa .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_bgbee .BitsPerComponent =int (*_bccdc );};if _bgbee .Predictor > 1{_bgbee .Columns =1; -_bgbd =_gegc .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073");if _bgbd !=nil {_baef ,_fdb :=_bgbd .(*PdfObjectInteger );if !_fdb {return nil ,_daa .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064"); -};_bgbee .Columns =int (*_baef );};_bgbee .Colors =1;_bgbd =_gegc .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _bgbd !=nil {_afec ,_fbfc :=_bgbd .(*PdfObjectInteger );if !_fbfc {return nil ,_daa .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); -};_bgbee .Colors =int (*_afec );};};return _bgbee ,nil ;}; +// HasInvalidSubsectionHeader implements core.ParserMetadata interface. +func (_bgfc ParserMetadata )HasInvalidSubsectionHeader ()bool {return _bgfc ._gfe }; -// LookupByNumber looks up a PdfObject by object number. Returns an error on failure. -func (_ee *PdfParser )LookupByNumber (objNumber int )(PdfObject ,error ){_edc ,_ ,_bff :=_ee .lookupByNumberWrapper (objNumber ,true );return _edc ,_bff ;};func _dacdg (_eca *PdfObjectStream ,_accg *PdfObjectDictionary )(*LZWEncoder ,error ){_fdca :=NewLZWEncoder (); -_fafb :=_eca .PdfObjectDictionary ;if _fafb ==nil {return _fdca ,nil ;};if _accg ==nil {_dfed :=TraceToDirectObject (_fafb .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"));if _dfed !=nil {if _eddef ,_ggbc :=_dfed .(*PdfObjectDictionary ); -_ggbc {_accg =_eddef ;}else if _gfdb ,_edg :=_dfed .(*PdfObjectArray );_edg {if _gfdb .Len ()==1{if _ccbd ,_dgd :=GetDict (_gfdb .Get (0));_dgd {_accg =_ccbd ;};};};if _accg ==nil {_ecd .Log .Error ("\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020\u006e\u006f\u0074 \u0061 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0025\u0023\u0076",_dfed ); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};};};_ddff :=_fafb .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065");if _ddff !=nil {_cace ,_abgd :=_ddff .(*PdfObjectInteger ); -if !_abgd {_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a \u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u006e\u0075\u006d\u0065\u0072i\u0063 \u0028\u0025\u0054\u0029",_ddff ); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065");};if *_cace !=0&&*_cace !=1{return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0045\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065\u0020\u0076\u0061\u006c\u0075e\u0020\u0028\u006e\u006f\u0074 \u0030\u0020o\u0072\u0020\u0031\u0029"); -};_fdca .EarlyChange =int (*_cace );}else {_fdca .EarlyChange =1;};if _accg ==nil {return _fdca ,nil ;};if _ccbfd ,_fcdg :=GetIntVal (_accg .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065"));_fcdg {if _ccbfd ==0||_ccbfd ==1{_fdca .EarlyChange =_ccbfd ; -}else {_ecd .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020E\u0061\u0072\u006c\u0079\u0043\u0068\u0061n\u0067\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020%\u0064",_ccbfd );};};_ddff =_accg .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr"); -if _ddff !=nil {_gbeg ,_aeafb :=_ddff .(*PdfObjectInteger );if !_aeafb {_ecd .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_ddff ); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_fdca .Predictor =int (*_gbeg );};_ddff =_accg .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -if _ddff !=nil {_ceea ,_eeag :=_ddff .(*PdfObjectInteger );if !_eeag {_ecd .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); -return nil ,_daa .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_fdca .BitsPerComponent =int (*_ceea );};if _fdca .Predictor > 1{_fdca .Columns =1;_ddff =_accg .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"); -if _ddff !=nil {_cgec ,_fbbf :=_ddff .(*PdfObjectInteger );if !_fbbf {return nil ,_daa .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_fdca .Columns =int (*_cgec ); -};_fdca .Colors =1;_ddff =_accg .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _ddff !=nil {_bdg ,_edfg :=_ddff .(*PdfObjectInteger );if !_edfg {return nil ,_daa .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); -};_fdca .Colors =int (*_bdg );};};_ecd .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_accg .String ());return _fdca ,nil ;}; +// FlattenObject returns the contents of `obj`. In other words, `obj` with indirect objects replaced +// by their values. +// The replacements are made recursively to a depth of traceMaxDepth. +// NOTE: Dicts are sorted to make objects with same contents have the same PDF object strings. +func FlattenObject (obj PdfObject )PdfObject {return _gbbga (obj ,0)}; -// GetNumberAsInt64 returns the contents of `obj` as an int64 if it is an integer or float, or an -// error if it isn't. This is for cases where expecting an integer, but some implementations -// actually store the number in a floating point format. -func GetNumberAsInt64 (obj PdfObject )(int64 ,error ){switch _gbad :=obj .(type ){case *PdfObjectFloat :_ecd .Log .Debug ("\u004e\u0075m\u0062\u0065\u0072\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u0073\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0077\u0061s\u0020\u0073\u0074\u006f\u0072\u0065\u0064\u0020\u0061\u0073\u0020\u0066\u006c\u006fa\u0074\u0020(\u0074\u0079\u0070\u0065 \u0063\u0061\u0073\u0074\u0069n\u0067\u0020\u0075\u0073\u0065\u0064\u0029"); -return int64 (*_gbad ),nil ;case *PdfObjectInteger :return int64 (*_gbad ),nil ;case *PdfObjectReference :_dfag :=TraceToDirectObject (obj );return GetNumberAsInt64 (_dfag );case *PdfIndirectObject :return GetNumberAsInt64 (_gbad .PdfObject );};return 0,ErrNotANumber ; -}; +// Resolve resolves the reference and returns the indirect or stream object. +// If the reference cannot be resolved, a *PdfObjectNull object is returned. +func (_gfaff *PdfObjectReference )Resolve ()PdfObject {if _gfaff ._cfada ==nil {return MakeNull ();};_gfgbb ,_ ,_cagb :=_gfaff ._cfada .resolveReference (_gfaff );if _cagb !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0072\u0065\u0073\u006f\u006cv\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065r\u0065n\u0063\u0065\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067 \u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006a\u0065\u0063\u0074",_cagb ); +return MakeNull ();};if _gfgbb ==nil {_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0072\u0065\u0073ol\u0076\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065:\u0020\u006ei\u006c\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u002d\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067 \u0061\u0020nu\u006c\u006c\u0020o\u0062\u006a\u0065\u0063\u0074"); +return MakeNull ();};return _gfgbb ;}; -// PdfObjectArray represents the primitive PDF array object. -type PdfObjectArray struct{_egacc []PdfObject }; +// DecodeStream decodes a DCT encoded stream and returns the result as a +// slice of bytes. +func (_ebbd *DCTEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _ebbd .DecodeBytes (streamObj .Stream );}; -// DecodeStream decodes RunLengthEncoded stream object and give back decoded bytes. -func (_cbda *RunLengthEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _cbda .DecodeBytes (streamObj .Stream );}; +// MakeDecodeParams makes a new instance of an encoding dictionary based on the current encoder settings. +func (_gdab *JBIG2Encoder )MakeDecodeParams ()PdfObject {return MakeDict ()}; // NewCCITTFaxEncoder makes a new CCITTFax encoder. func NewCCITTFaxEncoder ()*CCITTFaxEncoder {return &CCITTFaxEncoder {Columns :1728,EndOfBlock :true }}; -// PdfObject is an interface which all primitive PDF objects must implement. -type PdfObject interface{ +// UpdateParams updates the parameter values of the encoder. +func (_abdd *RawEncoder )UpdateParams (params *PdfObjectDictionary ){}; -// String outputs a string representation of the primitive (for debugging). -String ()string ; +// HasInvalidHexRunes implements core.ParserMetadata interface. +func (_fef ParserMetadata )HasInvalidHexRunes ()bool {return _fef ._cde };func (_ccac *PdfParser )parseXrefTable ()(*PdfObjectDictionary ,error ){var _cedc *PdfObjectDictionary ;_dggf ,_geba :=_ccac .readTextLine ();if _geba !=nil {return nil ,_geba ;}; +if _ccac ._ecgd &&_gd .Count (_gd .TrimPrefix (_dggf ,"\u0078\u0072\u0065\u0066"),"\u0020")> 0{_ccac ._gadge ._bdf =true ;};_a .Log .Trace ("\u0078\u0072\u0065\u0066 f\u0069\u0072\u0073\u0074\u0020\u006c\u0069\u006e\u0065\u003a\u0020\u0025\u0073",_dggf ); +_edgec :=-1;_aggg :=0;_fcdg :=false ;_aabc :="";for {_ccac .skipSpaces ();_ ,_bfeb :=_ccac ._ffbg .Peek (1);if _bfeb !=nil {return nil ,_bfeb ;};_dggf ,_bfeb =_ccac .readTextLine ();if _bfeb !=nil {return nil ,_bfeb ;};_fedc :=_cac .FindStringSubmatch (_dggf ); +if len (_fedc )==0{_dbgg :=len (_aabc )> 0;_aabc +=_dggf +"\u000a";if _dbgg {_fedc =_cac .FindStringSubmatch (_aabc );};};if len (_fedc )==3{if _ccac ._ecgd &&!_ccac ._gadge ._gfe {var (_gafa bool ;_fdag int ;);for _ ,_bcfb :=range _dggf {if _cd .IsDigit (_bcfb ){if _gafa {break ; +};continue ;};if !_gafa {_gafa =true ;};_fdag ++;};if _fdag > 1{_ccac ._gadge ._gfe =true ;};};_dabf ,_ :=_bd .Atoi (_fedc [1]);_dfaa ,_ :=_bd .Atoi (_fedc [2]);_edgec =_dabf ;_aggg =_dfaa ;_fcdg =true ;_aabc ="";_a .Log .Trace ("\u0078r\u0065\u0066 \u0073\u0075\u0062s\u0065\u0063\u0074\u0069\u006f\u006e\u003a \u0066\u0069\u0072\u0073\u0074\u0020o\u0062\u006a\u0065\u0063\u0074\u003a\u0020\u0025\u0064\u0020\u006fb\u006a\u0065\u0063\u0074\u0073\u003a\u0020\u0025\u0064",_edgec ,_aggg ); +continue ;};_dfd :=_fgdd .FindStringSubmatch (_dggf );if len (_dfd )==4{if !_fcdg {_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0058r\u0065\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0066\u006fr\u006da\u0074\u0021\u000a");return nil ,_c .New ("\u0078\u0072\u0065\u0066 i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0066\u006f\u0072\u006d\u0061\u0074"); +};_fege ,_ :=_bd .ParseInt (_dfd [1],10,64);_fdbc ,_ :=_bd .Atoi (_dfd [2]);_cdacd :=_dfd [3];_aabc ="";if _gd .ToLower (_cdacd )=="\u006e"&&_fege > 1{_gadcg ,_dgaec :=_ccac ._bbdf .ObjectMap [_edgec ];if !_dgaec ||_fdbc > _gadcg .Generation {_ebeb :=XrefObject {ObjectNumber :_edgec ,XType :XrefTypeTableEntry ,Offset :_fege ,Generation :_fdbc }; +_ccac ._bbdf .ObjectMap [_edgec ]=_ebeb ;};};_edgec ++;continue ;};if (len (_dggf )> 6)&&(_dggf [:7]=="\u0074r\u0061\u0069\u006c\u0065\u0072"){_a .Log .Trace ("\u0046o\u0075n\u0064\u0020\u0074\u0072\u0061i\u006c\u0065r\u0020\u002d\u0020\u0025\u0073",_dggf ); +if len (_dggf )> 9{_gffdc :=_ccac .GetFileOffset ();_ccac .SetFileOffset (_gffdc -int64 (len (_dggf ))+7);};_ccac .skipSpaces ();_ccac .skipComments ();_a .Log .Trace ("R\u0065\u0061\u0064\u0069ng\u0020t\u0072\u0061\u0069\u006c\u0065r\u0020\u0064\u0069\u0063\u0074\u0021"); +_a .Log .Trace ("\u0070\u0065\u0065\u006b\u003a\u0020\u0022\u0025\u0073\u0022",_dggf );_cedc ,_bfeb =_ccac .ParseDict ();_a .Log .Trace ("\u0045O\u0046\u0020\u0072\u0065a\u0064\u0069\u006e\u0067\u0020t\u0072a\u0069l\u0065\u0072\u0020\u0064\u0069\u0063\u0074!"); +if _bfeb !=nil {_a .Log .Debug ("\u0045\u0072\u0072o\u0072\u0020\u0070\u0061r\u0073\u0069\u006e\u0067\u0020\u0074\u0072a\u0069\u006c\u0065\u0072\u0020\u0064\u0069\u0063\u0074\u0020\u0028\u0025\u0073\u0029",_bfeb );return nil ,_bfeb ;};break ;};if _dggf =="\u0025\u0025\u0045O\u0046"{_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u006e\u0064 \u006f\u0066\u0020\u0066\u0069\u006c\u0065 -\u0020\u0074\u0072\u0061i\u006c\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066ou\u006e\u0064 \u002d\u0020\u0065\u0072\u0072\u006f\u0072\u0021"); +return nil ,_c .New ("\u0065\u006e\u0064 \u006f\u0066\u0020\u0066i\u006c\u0065\u0020\u002d\u0020\u0074\u0072a\u0069\u006c\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_a .Log .Trace ("\u0078\u0072\u0065\u0066\u0020\u006d\u006f\u0072\u0065 \u003a\u0020\u0025\u0073",_dggf ); +};_a .Log .Trace ("\u0045\u004f\u0046 p\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0078\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0021");if _ccac ._fddf ==nil {_feda :=XrefTypeTableEntry ;_ccac ._fddf =&_feda ;};return _cedc ,nil ;};const _edg ="\u0053\u0074\u0064C\u0046"; -// WriteString outputs the PDF primitive as written to file as expected by the standard. -// TODO(dennwc): it should return a byte slice, or accept a writer -WriteString ()string ;}; -// SetIfNotNil sets the dictionary's key -> val mapping entry -IF- val is not nil. -// Note that we take care to perform a type switch. Otherwise if we would supply a nil value -// of another type, e.g. (PdfObjectArray*)(nil), then it would not be a PdfObject(nil) and thus -// would get set. -func (_debbc *PdfObjectDictionary )SetIfNotNil (key PdfObjectName ,val PdfObject ){if val !=nil {switch _abca :=val .(type ){case *PdfObjectName :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectDictionary :if _abca !=nil {_debbc .Set (key ,val ); -};case *PdfObjectStream :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectString :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectNull :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectInteger :if _abca !=nil {_debbc .Set (key ,val ); -};case *PdfObjectArray :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectBool :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectFloat :if _abca !=nil {_debbc .Set (key ,val );};case *PdfObjectReference :if _abca !=nil {_debbc .Set (key ,val ); -};case *PdfIndirectObject :if _abca !=nil {_debbc .Set (key ,val );};default:_ecd .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u0065\u0076\u0065\u0072\u0020\u0068\u0061\u0070\u0070\u0065\u006e\u0021",val ); -};};}; +// DecodeStream returns the passed in stream as a slice of bytes. +// The purpose of the method is to satisfy the StreamEncoder interface. +func (_dgcg *RawEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return streamObj .Stream ,nil ;};func (_fgdg *PdfParser )lookupByNumberWrapper (_eaa int ,_faa bool )(PdfObject ,bool ,error ){_fdg ,_cda ,_ed :=_fgdg .lookupByNumber (_eaa ,_faa ); +if _ed !=nil {return nil ,_cda ,_ed ;};if !_cda &&_fgdg ._abae !=nil &&_fgdg ._abae ._dfe &&!_fgdg ._abae .isDecrypted (_fdg ){_cfc :=_fgdg ._abae .Decrypt (_fdg ,0,0);if _cfc !=nil {return nil ,_cda ,_cfc ;};};return _fdg ,_cda ,nil ;}; -// Elements returns a slice of the PdfObject elements in the array. -// Preferred over accessing the array directly as type may be changed in future major versions (v3). -func (_ggdb *PdfObjectStreams )Elements ()[]PdfObject {if _ggdb ==nil {return nil ;};return _ggdb ._gedag ;}; +// MakeStringFromBytes creates an PdfObjectString from a byte array. +// This is more natural than MakeString as `data` is usually not utf-8 encoded. +func MakeStringFromBytes (data []byte )*PdfObjectString {return MakeString (string (data ))}; -// EncodeBytes implements support for LZW encoding. Currently not supporting predictors (raw compressed data only). -// Only supports the Early change = 1 algorithm (compress/lzw) as the other implementation -// does not have a write method. -// TODO: Consider refactoring compress/lzw to allow both. -func (_ede *LZWEncoder )EncodeBytes (data []byte )([]byte ,error ){if _ede .Predictor !=1{return nil ,_daa .Errorf ("\u004c\u005aW \u0050\u0072\u0065d\u0069\u0063\u0074\u006fr =\u00201 \u006f\u006e\u006c\u0079\u0020\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0079e\u0074"); -};if _ede .EarlyChange ==1{return nil ,_daa .Errorf ("\u004c\u005a\u0057\u0020\u0045\u0061\u0072\u006c\u0079\u0020\u0043\u0068\u0061n\u0067\u0065\u0020\u003d\u0020\u0030 \u006f\u006e\u006c\u0079\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0079\u0065\u0074"); -};var _ffeec _fb .Buffer ;_dgee :=_fd .NewWriter (&_ffeec ,_fd .MSB ,8);_dgee .Write (data );_dgee .Close ();return _ffeec .Bytes (),nil ;}; +// GetFilterName returns the name of the encoding filter. +func (_acfg *LZWEncoder )GetFilterName ()string {return StreamEncodingFilterNameLZW };func _gdce (_cgaa string )(int ,int ,error ){_ggce :=_ebceg .FindStringSubmatch (_cgaa );if len (_ggce )< 3{return 0,0,_c .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); +};_aafd ,_ :=_bd .Atoi (_ggce [1]);_fdecg ,_ :=_bd .Atoi (_ggce [2]);return _aafd ,_fdecg ,nil ;};func (_gbedf *PdfObjectFloat )String ()string {return _gf .Sprintf ("\u0025\u0066",*_gbedf )}; -// GetPreviousRevisionReadSeeker returns ReadSeeker for the previous version of the Pdf document. -func (_daeb *PdfParser )GetPreviousRevisionReadSeeker ()(_ae .ReadSeeker ,error ){if _bbdf :=_daeb .seekToEOFMarker (_daeb ._defe -_cdcg );_bbdf !=nil {return nil ,_bbdf ;};_eagge ,_gfabe :=_daeb ._ccgbe .Seek (0,_ae .SeekCurrent );if _gfabe !=nil {return nil ,_gfabe ; -};_eagge +=_cdcg ;return _bafg (_daeb ._ccgbe ,_eagge );}; +// JBIG2CompressionType defines the enum compression type used by the JBIG2Encoder. +type JBIG2CompressionType int ; -// HeaderCommentBytes gets the header comment bytes. -func (_fgfe ParserMetadata )HeaderCommentBytes ()[4]byte {return _fgfe ._aaeg };func _cfe (_cagb *PdfObjectStream ,_cgcb *PdfObjectDictionary )(*CCITTFaxEncoder ,error ){_aeca :=NewCCITTFaxEncoder ();_fgb :=_cagb .PdfObjectDictionary ;if _fgb ==nil {return _aeca ,nil ; -};if _cgcb ==nil {_bdag :=TraceToDirectObject (_fgb .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"));if _bdag !=nil {switch _faef :=_bdag .(type ){case *PdfObjectDictionary :_cgcb =_faef ;case *PdfObjectArray :if _faef .Len ()==1{if _dbad ,_bgae :=GetDict (_faef .Get (0)); -_bgae {_cgcb =_dbad ;};};default:_ecd .Log .Error ("\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020\u006e\u006f\u0074 \u0061 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0025\u0023\u0076",_bdag );return nil ,_f .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"); -};};if _cgcb ==nil {_ecd .Log .Error ("\u0044\u0065c\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064 %\u0023\u0076",_bdag );return nil ,_f .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"); -};};if _aegfg ,_edccg :=GetNumberAsInt64 (_cgcb .Get ("\u004b"));_edccg ==nil {_aeca .K =int (_aegfg );};if _egea ,_bffacc :=GetNumberAsInt64 (_cgcb .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073"));_bffacc ==nil {_aeca .Columns =int (_egea );}else {_aeca .Columns =1728; -};if _bdda ,_afc :=GetNumberAsInt64 (_cgcb .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031"));_afc ==nil {_aeca .BlackIs1 =_bdda > 0;}else {if _gaf ,_aege :=GetBoolVal (_cgcb .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031"));_aege {_aeca .BlackIs1 =_gaf ; -}else {if _fcaae ,_edeg :=GetArray (_cgcb .Get ("\u0044\u0065\u0063\u006f\u0064\u0065"));_edeg {_ddebf ,_ccbbe :=_fcaae .ToIntegerArray ();if _ccbbe ==nil {_aeca .BlackIs1 =_ddebf [0]==1&&_ddebf [1]==0;};};};};if _aedfc ,_dbaaf :=GetNumberAsInt64 (_cgcb .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e")); -_dbaaf ==nil {_aeca .EncodedByteAlign =_aedfc > 0;}else {if _edbd ,_gdc :=GetBoolVal (_cgcb .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e"));_gdc {_aeca .EncodedByteAlign =_edbd ;};};if _bddb ,_ccgb :=GetNumberAsInt64 (_cgcb .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee")); -_ccgb ==nil {_aeca .EndOfLine =_bddb > 0;}else {if _eed ,_ffg :=GetBoolVal (_cgcb .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee"));_ffg {_aeca .EndOfLine =_eed ;};};if _ecdcd ,_adcb :=GetNumberAsInt64 (_cgcb .Get ("\u0052\u006f\u0077\u0073"));_adcb ==nil {_aeca .Rows =int (_ecdcd ); -};_aeca .EndOfBlock =true ;if _feb ,_egfe :=GetNumberAsInt64 (_cgcb .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b"));_egfe ==nil {_aeca .EndOfBlock =_feb > 0;}else {if _eceg ,_cgeec :=GetBoolVal (_cgcb .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b")); -_cgeec {_aeca .EndOfBlock =_eceg ;};};if _eaea ,_cba :=GetNumberAsInt64 (_cgcb .Get ("\u0044\u0061\u006d\u0061ge\u0064\u0052\u006f\u0077\u0073\u0042\u0065\u0066\u006f\u0072\u0065\u0045\u0072\u0072o\u0072"));_cba !=nil {_aeca .DamagedRowsBeforeError =int (_eaea ); -};_ecd .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_cgcb .String ());return _aeca ,nil ;};func (_aeda *PdfParser )loadXrefs ()(*PdfObjectDictionary ,error ){_aeda ._efdgc .ObjectMap =make (map[int ]XrefObject ); -_aeda ._cafa =make (objectStreams );_egc ,_fceda :=_aeda ._ccgbe .Seek (0,_ae .SeekEnd );if _fceda !=nil {return nil ,_fceda ;};_ecd .Log .Trace ("\u0066s\u0069\u007a\u0065\u003a\u0020\u0025d",_egc );_aeda ._defe =_egc ;_fceda =_aeda .seekToEOFMarker (_egc ); -if _fceda !=nil {_ecd .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0073\u0065\u0065\u006b\u0020\u0074\u006f\u0020\u0065\u006f\u0066\u0020\u006d\u0061\u0072\u006b\u0065\u0072: \u0025\u0076",_fceda );return nil ,_fceda ;};_gaab ,_fceda :=_aeda ._ccgbe .Seek (0,_ae .SeekCurrent ); -if _fceda !=nil {return nil ,_fceda ;};var _abgg int64 =64;_dbgd :=_gaab -_abgg ;if _dbgd < 0{_dbgd =0;};_ ,_fceda =_aeda ._ccgbe .Seek (_dbgd ,_ae .SeekStart );if _fceda !=nil {return nil ,_fceda ;};_adcfd :=make ([]byte ,_abgg );_ ,_fceda =_aeda ._ccgbe .Read (_adcfd ); -if _fceda !=nil {_ecd .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0072\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u006c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0073\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u003a\u0020\u0025\u0076",_fceda ); -return nil ,_fceda ;};_bacb :=_begb .FindStringSubmatch (string (_adcfd ));if len (_bacb )< 2{_ecd .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020s\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u0020n\u006f\u0074\u0020f\u006fu\u006e\u0064\u0021"); -return nil ,_f .New ("\u0073\u0074\u0061\u0072tx\u0072\u0065\u0066\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};if len (_bacb )> 2{_ecd .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u004du\u006c\u0074\u0069\u0070\u006c\u0065\u0020s\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u0020\u0028\u0025\u0073\u0029\u0021",_adcfd ); -return nil ,_f .New ("m\u0075\u006c\u0074\u0069\u0070\u006ce\u0020\u0073\u0074\u0061\u0072\u0074\u0078\u0072\u0065f\u0020\u0065\u006et\u0072i\u0065\u0073\u003f");};_cbbfc ,_ :=_bf .ParseInt (_bacb [1],10,64);_ecd .Log .Trace ("\u0073t\u0061r\u0074\u0078\u0072\u0065\u0066\u0020\u0061\u0074\u0020\u0025\u0064",_cbbfc ); -if _cbbfc > _egc {_ecd .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0058\u0072\u0065\u0066\u0020\u006f\u0066f\u0073e\u0074 \u006fu\u0074\u0073\u0069\u0064\u0065\u0020\u006f\u0066\u0020\u0066\u0069\u006c\u0065");_ecd .Log .Debug ("\u0041\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0072e\u0070\u0061\u0069\u0072"); -_cbbfc ,_fceda =_aeda .repairLocateXref ();if _fceda !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0052\u0065\u0070\u0061\u0069\u0072\u0020\u0061\u0074\u0074\u0065\u006d\u0070t\u0020\u0066\u0061\u0069\u006c\u0065\u0064 \u0028\u0025\u0073\u0029"); -return nil ,_fceda ;};};_aeda ._ccgbe .Seek (_cbbfc ,_ae .SeekStart );_aeda ._affd =_ga .NewReader (_aeda ._ccgbe );_eecf ,_fceda :=_aeda .parseXref ();if _fceda !=nil {return nil ,_fceda ;};_ccbg :=_eecf .Get ("\u0058R\u0065\u0066\u0053\u0074\u006d"); -if _ccbg !=nil {_eagb ,_eabfb :=_ccbg .(*PdfObjectInteger );if !_eabfb {return nil ,_f .New ("\u0058\u0052\u0065\u0066\u0053\u0074\u006d\u0020\u0021=\u0020\u0069\u006e\u0074");};_ ,_fceda =_aeda .parseXrefStream (_eagb );if _fceda !=nil {return nil ,_fceda ; -};};var _fbfa []int64 ;_ffeg :=func (_dfge int64 ,_fead []int64 )bool {for _ ,_badef :=range _fead {if _badef ==_dfge {return true ;};};return false ;};_ccbg =_eecf .Get ("\u0050\u0072\u0065\u0076");for _ccbg !=nil {_bcbea ,_ddec :=_ccbg .(*PdfObjectInteger ); -if !_ddec {_ecd .Log .Debug ("\u0049\u006ev\u0061\u006c\u0069\u0064\u0020P\u0072\u0065\u0076\u0020\u0072e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u003a\u0020\u004e\u006f\u0074\u0020\u0061\u0020\u002a\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0025\u0054\u0029",_ccbg ); -return _eecf ,nil ;};_aabc :=*_bcbea ;_ecd .Log .Trace ("\u0041\u006eot\u0068\u0065\u0072 \u0050\u0072\u0065\u0076 xr\u0065f \u0074\u0061\u0062\u006c\u0065\u0020\u006fbj\u0065\u0063\u0074\u0020\u0061\u0074\u0020%\u0064",_aabc );_aeda ._ccgbe .Seek (int64 (_aabc ),_ae .SeekStart ); -_aeda ._affd =_ga .NewReader (_aeda ._ccgbe );_fbbg ,_fabe :=_aeda .parseXref ();if _fabe !=nil {_ecd .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006e\u0067\u003a\u0020\u0045\u0072\u0072\u006f\u0072\u0020-\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u006c\u006f\u0061\u0064\u0069n\u0067\u0020\u0061\u006e\u006f\u0074\u0068\u0065\u0072\u0020\u0028\u0050re\u0076\u0029\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072"); -_ecd .Log .Debug ("\u0041\u0074t\u0065\u006d\u0070\u0074i\u006e\u0067 \u0074\u006f\u0020\u0063\u006f\u006e\u0074\u0069n\u0075\u0065\u0020\u0062\u0079\u0020\u0069\u0067\u006e\u006f\u0072\u0069n\u0067\u0020\u0069\u0074");break ;};_aeda ._abec =append (_aeda ._abec ,int64 (_aabc )); -_ccbg =_fbbg .Get ("\u0050\u0072\u0065\u0076");if _ccbg !=nil {_cgge :=*(_ccbg .(*PdfObjectInteger ));if _ffeg (int64 (_cgge ),_fbfa ){_ecd .Log .Debug ("\u0050\u0072ev\u0065\u006e\u0074i\u006e\u0067\u0020\u0063irc\u0075la\u0072\u0020\u0078\u0072\u0065\u0066\u0020re\u0066\u0065\u0072\u0065\u006e\u0063\u0069n\u0067"); -break ;};_fbfa =append (_fbfa ,int64 (_cgge ));};};return _eecf ,nil ;};func (_geacd *PdfParser )traceStreamLength (_ebcea PdfObject )(PdfObject ,error ){_cecc ,_efdga :=_ebcea .(*PdfObjectReference );if _efdga {_cbfae ,_cbfg :=_geacd ._ecegc [_cecc .ObjectNumber ]; -if _cbfg &&_cbfae {_ecd .Log .Debug ("\u0053t\u0072\u0065a\u006d\u0020\u004c\u0065n\u0067\u0074\u0068 \u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 u\u006e\u0072\u0065s\u006f\u006cv\u0065\u0064\u0020\u0028\u0069\u006cl\u0065\u0067a\u006c\u0029"); -return nil ,_f .New ("\u0069\u006c\u006c\u0065ga\u006c\u0020\u0072\u0065\u0063\u0075\u0072\u0073\u0069\u0076\u0065\u0020\u006c\u006fo\u0070");};_geacd ._ecegc [_cecc .ObjectNumber ]=true ;};_bccb ,_gcg :=_geacd .Resolve (_ebcea );if _gcg !=nil {return nil ,_gcg ; -};_ecd .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0065\u006e\u0067\u0074h\u003f\u0020\u0025\u0073",_bccb );if _efdga {_geacd ._ecegc [_cecc .ObjectNumber ]=false ;};return _bccb ,nil ;}; +// ParserMetadata gets the pdf parser metadata. +func (_caee *PdfParser )ParserMetadata ()(ParserMetadata ,error ){if !_caee ._ecgd {return ParserMetadata {},_gf .Errorf ("\u0070\u0061\u0072\u0073\u0065r\u0020\u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u006d\u0061\u0072\u006be\u0064\u0020\u0066\u006f\u0072\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0064\u0065\u0074\u0061\u0069\u006c\u0065\u0064\u0020\u006d\u0065\u0074\u0061\u0064\u0061\u0074a"); +};return _caee ._gadge ,nil ;}; -// GetXrefTable returns the PDFs xref table. -func (_aacd *PdfParser )GetXrefTable ()XrefTable {return _aacd ._efdgc }; +// String returns a string describing `streams`. +func (_afdeb *PdfObjectStreams )String ()string {return _gf .Sprintf ("\u004f\u0062j\u0065\u0063\u0074 \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0025\u0064",_afdeb .ObjectNumber );}; -// RunLengthEncoder represents Run length encoding. -type RunLengthEncoder struct{}; +// Resolve resolves a PdfObject to direct object, looking up and resolving references as needed (unlike TraceToDirect). +func (_fgc *PdfParser )Resolve (obj PdfObject )(PdfObject ,error ){_ag ,_gfd :=obj .(*PdfObjectReference );if !_gfd {return obj ,nil ;};_fba :=_fgc .GetFileOffset ();defer func (){_fgc .SetFileOffset (_fba )}();_ggg ,_add :=_fgc .LookupByReference (*_ag ); +if _add !=nil {return nil ,_add ;};_ddb ,_debb :=_ggg .(*PdfIndirectObject );if !_debb {return _ggg ,nil ;};_ggg =_ddb .PdfObject ;_ ,_gfd =_ggg .(*PdfObjectReference );if _gfd {return _ddb ,_c .New ("\u006d\u0075lt\u0069\u0020\u0064e\u0070\u0074\u0068\u0020tra\u0063e \u0070\u006f\u0069\u006e\u0074\u0065\u0072 t\u006f\u0020\u0070\u006f\u0069\u006e\u0074e\u0072"); +};return _ggg ,nil ;}; -// PdfObjectStream represents the primitive PDF Object stream. -type PdfObjectStream struct{PdfObjectReference ;*PdfObjectDictionary ;Stream []byte ;}; +// GetRevision returns PdfParser for the specific version of the Pdf document. +func (_ggdcd *PdfParser )GetRevision (revisionNumber int )(*PdfParser ,error ){_dbbbb :=_ggdcd ._efce ;if _dbbbb ==revisionNumber {return _ggdcd ,nil ;};if _dbbbb < revisionNumber {return nil ,_c .New ("\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0072\u0065\u0076\u0069\u0073i\u006fn\u004e\u0075\u006d\u0062\u0065\u0072\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); +};if _ggdcd ._gfdfd [revisionNumber ]!=nil {return _ggdcd ._gfdfd [revisionNumber ],nil ;};_gfgb :=_ggdcd ;for ;_dbbbb > revisionNumber ;_dbbbb --{_deeg ,_ecaa :=_gfgb .GetPreviousRevisionParser ();if _ecaa !=nil {return nil ,_ecaa ;};_ggdcd ._gfdfd [_dbbbb -1]=_deeg ; +_ggdcd ._beaf [_gfgb ]=_deeg ;_gfgb =_deeg ;};return _gfgb ,nil ;};func (_dcgad *PdfParser )parseNumber ()(PdfObject ,error ){return ParseNumber (_dcgad ._ffbg )};const _bca =32<<(^uint (0)>>63);func (_ac *PdfParser )lookupObjectViaOS (_efg int ,_dcc int )(PdfObject ,error ){var _cdd *_fd .Reader ; +var _fcg objectStream ;var _cc bool ;_fcg ,_cc =_ac ._fcba [_efg ];if !_cc {_caf ,_fcd :=_ac .LookupByNumber (_efg );if _fcd !=nil {_a .Log .Debug ("\u004d\u0069ss\u0069\u006e\u0067 \u006f\u0062\u006a\u0065ct \u0073tr\u0065\u0061\u006d\u0020\u0077\u0069\u0074h \u006e\u0075\u006d\u0062\u0065\u0072\u0020%\u0064",_efg ); +return nil ,_fcd ;};_cdg ,_fe :=_caf .(*PdfObjectStream );if !_fe {return nil ,_c .New ("i\u006e\u0076\u0061\u006cid\u0020o\u0062\u006a\u0065\u0063\u0074 \u0073\u0074\u0072\u0065\u0061\u006d");};if _ac ._abae !=nil &&!_ac ._abae .isDecrypted (_cdg ){return nil ,_c .New ("\u006e\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0064\u0065\u0063r\u0079\u0070\u0074\u0020\u0074\u0068\u0065\u0020\u0073\u0074r\u0065\u0061\u006d"); +};_ec :=_cdg .PdfObjectDictionary ;_a .Log .Trace ("\u0073o\u0020\u0064\u003a\u0020\u0025\u0073\n",_ec .String ());_cae ,_fe :=_ec .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );if !_fe {_a .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0061\u006c\u0077\u0061\u0079\u0073\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0054\u0079\u0070\u0065"); +return nil ,_c .New ("\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020T\u0079\u0070\u0065");};if _gd .ToLower (string (*_cae ))!="\u006f\u0062\u006a\u0073\u0074\u006d"{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u0074\u0079\u0070\u0065\u0020s\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0077\u0061\u0079\u0073 \u0062\u0065\u0020\u004f\u0062\u006a\u0053\u0074\u006d\u0020\u0021"); +return nil ,_c .New ("\u006f\u0062\u006a\u0065c\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0074y\u0070e\u0020\u0021\u003d\u0020\u004f\u0062\u006aS\u0074\u006d");};N ,_fe :=_ec .Get ("\u004e").(*PdfObjectInteger );if !_fe {return nil ,_c .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004e\u0020i\u006e\u0020\u0073\u0074\u0072\u0065\u0061m\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_cgg ,_fe :=_ec .Get ("\u0046\u0069\u0072s\u0074").(*PdfObjectInteger );if !_fe {return nil ,_c .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0046\u0069\u0072\u0073\u0074\u0020i\u006e \u0073t\u0072e\u0061\u006d\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_a .Log .Trace ("\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0073\u0020\u006eu\u006d\u0062\u0065\u0072\u0020\u006f\u0066 \u006f\u0062\u006a\u0065\u0063\u0074\u0073\u003a\u0020\u0025\u0064",_cae ,*N );_fgd ,_fcd :=DecodeStream (_cdg );if _fcd !=nil {return nil ,_fcd ; +};_a .Log .Trace ("D\u0065\u0063\u006f\u0064\u0065\u0064\u003a\u0020\u0025\u0073",_fgd );_ccb :=_ac .GetFileOffset ();defer func (){_ac .SetFileOffset (_ccb )}();_cdd =_fd .NewReader (_fgd );_ac ._ffbg =_bfc .NewReader (_cdd );_a .Log .Trace ("\u0050a\u0072s\u0069\u006e\u0067\u0020\u006ff\u0066\u0073e\u0074\u0020\u006d\u0061\u0070"); +_df :=map[int ]int64 {};for _ggf :=0;_ggf < int (*N );_ggf ++{_ac .skipSpaces ();_cb ,_bdb :=_ac .parseNumber ();if _bdb !=nil {return nil ,_bdb ;};_fa ,_bb :=_cb .(*PdfObjectInteger );if !_bb {return nil ,_c .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0073t\u0072e\u0061m\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0074\u0061\u0062\u006c\u0065"); +};_ac .skipSpaces ();_cb ,_bdb =_ac .parseNumber ();if _bdb !=nil {return nil ,_bdb ;};_ea ,_bb :=_cb .(*PdfObjectInteger );if !_bb {return nil ,_c .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0073t\u0072e\u0061m\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0074\u0061\u0062\u006c\u0065"); +};_a .Log .Trace ("\u006f\u0062j\u0020\u0025\u0064 \u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0025\u0064",*_fa ,*_ea );_df [int (*_fa )]=int64 (*_cgg +*_ea );};_fcg =objectStream {N :int (*N ),_fc :_fgd ,_ca :_df };_ac ._fcba [_efg ]=_fcg ;}else {_deb :=_ac .GetFileOffset (); +defer func (){_ac .SetFileOffset (_deb )}();_cdd =_fd .NewReader (_fcg ._fc );_ac ._ffbg =_bfc .NewReader (_cdd );};_bae :=_fcg ._ca [_dcc ];_a .Log .Trace ("\u0041\u0043\u0054\u0055AL\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u005b\u0025\u0064\u005d\u0020\u003d\u0020%\u0064",_dcc ,_bae ); +_cdd .Seek (_bae ,_fg .SeekStart );_ac ._ffbg =_bfc .NewReader (_cdd );_gb ,_ :=_ac ._ffbg .Peek (100);_a .Log .Trace ("\u004f\u0042\u004a\u0020\u0070\u0065\u0065\u006b\u0020\u0022\u0025\u0073\u0022",string (_gb ));_fac ,_dg :=_ac .parseObject ();if _dg !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0046\u0061\u0069\u006c \u0074\u006f\u0020\u0072\u0065\u0061\u0064 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0028\u0025\u0073\u0029",_dg ); +return nil ,_dg ;};if _fac ==nil {return nil ,_c .New ("o\u0062\u006a\u0065\u0063t \u0063a\u006e\u006e\u006f\u0074\u0020b\u0065\u0020\u006e\u0075\u006c\u006c");};_dgb :=PdfIndirectObject {};_dgb .ObjectNumber =int64 (_dcc );_dgb .PdfObject =_fac ;_dgb ._cfada =_ac ; +return &_dgb ,nil ;}; -// DecodeStream decodes a multi-encoded stream by passing it through the -// DecodeStream method of the underlying encoders. -func (_gdca *MultiEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _gdca .DecodeBytes (streamObj .Stream );}; +// ASCIIHexEncoder implements ASCII hex encoder/decoder. +type ASCIIHexEncoder struct{}; -// GetStringBytes is like GetStringVal except that it returns the string as a []byte. -// It is for convenience. -func GetStringBytes (obj PdfObject )(_abegf []byte ,_gdec bool ){_caadd ,_gdec :=TraceToDirectObject (obj ).(*PdfObjectString );if _gdec {return _caadd .Bytes (),true ;};return ;};var _deba =_fc .MustCompile ("\u0025P\u0044F\u002d\u0028\u005c\u0064\u0029\u005c\u002e\u0028\u005c\u0064\u0029"); +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_eead *CCITTFaxEncoder )MakeStreamDict ()*PdfObjectDictionary {_fdbb :=MakeDict ();_fdbb .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_eead .GetFilterName ()));_fdbb .SetIfNotNil ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_eead .MakeDecodeParams ()); +return _fdbb ;};func (_ddfe *PdfParser )parsePdfVersion ()(int ,int ,error ){var _baff int64 =20;_ffbda :=make ([]byte ,_baff );_ddfe ._dfcdg .Seek (0,_fg .SeekStart );_ddfe ._dfcdg .Read (_ffbda );var _fdcgb error ;var _gagca ,_efceg int ;if _eabf :=_dbef .FindStringSubmatch (string (_ffbda )); +len (_eabf )< 3{if _gagca ,_efceg ,_fdcgb =_ddfe .seekPdfVersionTopDown ();_fdcgb !=nil {_a .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065\u0063\u006f\u0076\u0065\u0072\u0079\u0020\u002d\u0020\u0075n\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0066\u0069nd\u0020\u0076\u0065r\u0073i\u006f\u006e"); +return 0,0,_fdcgb ;};_ddfe ._dfcdg ,_fdcgb =_dbaeec (_ddfe ._dfcdg ,_ddfe .GetFileOffset ()-8);if _fdcgb !=nil {return 0,0,_fdcgb ;};}else {if _gagca ,_fdcgb =_bd .Atoi (_eabf [1]);_fdcgb !=nil {return 0,0,_fdcgb ;};if _efceg ,_fdcgb =_bd .Atoi (_eabf [2]); +_fdcgb !=nil {return 0,0,_fdcgb ;};_ddfe .SetFileOffset (0);};_ddfe ._ffbg =_bfc .NewReader (_ddfe ._dfcdg );_a .Log .Debug ("\u0050\u0064\u0066\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020%\u0064\u002e\u0025\u0064",_gagca ,_efceg );return _gagca ,_efceg ,nil ; +}; +// ToGoImage converts the JBIG2Image to the golang image.Image. +func (_ebf *JBIG2Image )ToGoImage ()(_cg .Image ,error ){const _gfcea ="J\u0042I\u0047\u0032\u0049\u006d\u0061\u0067\u0065\u002eT\u006f\u0047\u006f\u0049ma\u0067\u0065";if _ebf .Data ==nil {return nil ,_dd .Error (_gfcea ,"\u0069\u006d\u0061\u0067e \u0064\u0061\u0074\u0061\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064"); +};if _ebf .Width ==0||_ebf .Height ==0{return nil ,_dd .Error (_gfcea ,"\u0069\u006d\u0061\u0067\u0065\u0020h\u0065\u0069\u0067\u0068\u0074\u0020\u006f\u0072\u0020\u0077\u0069\u0064\u0074h\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); +};_ebaf ,_acdab :=_be .NewImage (_ebf .Width ,_ebf .Height ,1,1,_ebf .Data ,nil ,nil );if _acdab !=nil {return nil ,_acdab ;};return _ebaf ,nil ;}; -// NewRunLengthEncoder makes a new run length encoder -func NewRunLengthEncoder ()*RunLengthEncoder {return &RunLengthEncoder {}}; +// DecodeBytes decodes the CCITTFax encoded image data. +func (_bbec *CCITTFaxEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_fefc ,_gfcd :=_gfa .NewDecoder (encoded ,_gfa .DecodeOptions {Columns :_bbec .Columns ,Rows :_bbec .Rows ,K :_bbec .K ,EncodedByteAligned :_bbec .EncodedByteAlign ,BlackIsOne :_bbec .BlackIs1 ,EndOfBlock :_bbec .EndOfBlock ,EndOfLine :_bbec .EndOfLine ,DamagedRowsBeforeError :_bbec .DamagedRowsBeforeError }); +if _gfcd !=nil {return nil ,_gfcd ;};_bcfd ,_gfcd :=_e .ReadAll (_fefc );if _gfcd !=nil {return nil ,_gfcd ;};return _bcfd ,nil ;}; -// Clear resets the array to an empty state. -func (_gdce *PdfObjectArray )Clear (){_gdce ._egacc =[]PdfObject {}};func (_ddag *offsetReader )Read (p []byte )(_aee int ,_cdab error ){return _ddag ._fgba .Read (p )}; +// GetFilterName returns the name of the encoding filter. +func (_afcag *CCITTFaxEncoder )GetFilterName ()string {return StreamEncodingFilterNameCCITTFax };func (_cfdd *PdfParser )parseLinearizedDictionary ()(*PdfObjectDictionary ,error ){_afdg ,_fdde :=_cfdd ._dfcdg .Seek (0,_fg .SeekEnd );if _fdde !=nil {return nil ,_fdde ; +};var _bacc int64 ;var _dabfe int64 =2048;for _bacc < _afdg -4{if _afdg <=(_dabfe +_bacc ){_dabfe =_afdg -_bacc ;};_ ,_edag :=_cfdd ._dfcdg .Seek (_bacc ,_fg .SeekStart );if _edag !=nil {return nil ,_edag ;};_cgddb :=make ([]byte ,_dabfe );_ ,_edag =_cfdd ._dfcdg .Read (_cgddb ); +if _edag !=nil {return nil ,_edag ;};_a .Log .Trace ("\u004c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0066i\u0072\u0073\u0074\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0022\u0025\u0073\u0022",string (_cgddb )); +_dcfb :=_ebceg .FindAllStringIndex (string (_cgddb ),-1);if _dcfb !=nil {_fded :=_dcfb [0];_a .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_dcfb );_ ,_ecbef :=_cfdd ._dfcdg .Seek (int64 (_fded [0]),_fg .SeekStart );if _ecbef !=nil {return nil ,_ecbef ; +};_cfdd ._ffbg =_bfc .NewReader (_cfdd ._dfcdg );_bdac ,_ecbef :=_cfdd .ParseIndirectObject ();if _ecbef !=nil {return nil ,nil ;};if _aegge ,_dfcg :=GetIndirect (_bdac );_dfcg {if _eabfg ,_bgcdb :=GetDict (_aegge .PdfObject );_bgcdb {if _eeeb :=_eabfg .Get ("\u004c\u0069\u006e\u0065\u0061\u0072\u0069\u007a\u0065\u0064"); +_eeeb !=nil {return _eabfg ,nil ;};return nil ,nil ;};};return nil ,nil ;};_bacc +=_dabfe -4;};return nil ,_c .New ("\u0074\u0068\u0065\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064"); +}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_egfc *RawEncoder )MakeDecodeParams ()PdfObject {return nil }; +// ParseNumber parses a numeric objects from a buffered stream. +// Section 7.3.3. +// Integer or Float. +// +// An integer shall be written as one or more decimal digits optionally +// preceded by a sign. The value shall be interpreted as a signed +// decimal integer and shall be converted to an integer object. +// +// A real value shall be written as one or more decimal digits with an +// optional sign and a leading, trailing, or embedded PERIOD (2Eh) +// (decimal point). The value shall be interpreted as a real number +// and shall be converted to a real object. +// +// Regarding exponential numbers: 7.3.3 Numeric Objects: +// A conforming writer shall not use the PostScript syntax for numbers +// with non-decimal radices (such as 16#FFFE) or in exponential format +// (such as 6.02E23). +// Nonetheless, we sometimes get numbers with exponential format, so +// we will support it in the reader (no confusion with other types, so +// no compromise). +func ParseNumber (buf *_bfc .Reader )(PdfObject ,error ){_baafd :=false ;_fedac :=true ;var _bcacf _fd .Buffer ;for {if _a .Log .IsLogLevel (_a .LogLevelTrace ){_a .Log .Trace ("\u0050\u0061\u0072\u0073in\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0022\u0025\u0073\u0022",_bcacf .String ()); +};_befag ,_bbdaf :=buf .Peek (1);if _bbdaf ==_fg .EOF {break ;};if _bbdaf !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0025\u0073",_bbdaf );return nil ,_bbdaf ;};if _fedac &&(_befag [0]=='-'||_befag [0]=='+'){_adga ,_ :=buf .ReadByte (); +_bcacf .WriteByte (_adga );_fedac =false ;}else if IsDecimalDigit (_befag [0]){_ecda ,_ :=buf .ReadByte ();_bcacf .WriteByte (_ecda );}else if _befag [0]=='.'{_eaaae ,_ :=buf .ReadByte ();_bcacf .WriteByte (_eaaae );_baafd =true ;}else if _befag [0]=='e'||_befag [0]=='E'{_dafd ,_ :=buf .ReadByte (); +_bcacf .WriteByte (_dafd );_baafd =true ;_fedac =true ;}else {break ;};};var _gceg PdfObject ;if _baafd {_eefd ,_cfaa :=_bd .ParseFloat (_bcacf .String (),64);if _cfaa !=nil {_a .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0025v\u0020\u0065\u0072\u0072\u003d\u0025v\u002e\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u0030\u002e\u0030\u002e\u0020\u004fu\u0074\u0070u\u0074\u0020\u006d\u0061y\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074",_bcacf .String (),_cfaa ); +_eefd =0.0;};_aabb :=PdfObjectFloat (_eefd );_gceg =&_aabb ;}else {_bbab ,_eegee :=_bd .ParseInt (_bcacf .String (),10,64);if _eegee !=nil {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u0025\u0076\u0020\u0065\u0072\u0072\u003d%\u0076\u002e\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u0030\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 \u006d\u0061\u0079\u0020\u0062\u0065 \u0069\u006ec\u006f\u0072r\u0065c\u0074",_bcacf .String (),_eegee ); +_bbab =0;};_aadbb :=PdfObjectInteger (_bbab );_gceg =&_aadbb ;};return _gceg ,nil ;};var _cgcd =_ce .MustCompile ("\u005c\u0073\u002a\u0078\u0072\u0065\u0066\u005c\u0073\u002a");func _bgaa (_bbcd _fg .ReadSeeker ,_cddb int64 )(*limitedReadSeeker ,error ){_ ,_ddf :=_bbcd .Seek (0,_fg .SeekStart ); +if _ddf !=nil {return nil ,_ddf ;};return &limitedReadSeeker {_fbge :_bbcd ,_bcgd :_cddb },nil ;}; -// PdfObjectString represents the primitive PDF string object. -type PdfObjectString struct{_cceg string ;_eecb bool ;}; +// DecodeStream implements ASCII hex decoding. +func (_fdd *ASCIIHexEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _fdd .DecodeBytes (streamObj .Stream );}; -// MakeStream creates an PdfObjectStream with specified contents and encoding. If encoding is nil, then raw encoding -// will be used (i.e. no encoding applied). -func MakeStream (contents []byte ,encoder StreamEncoder )(*PdfObjectStream ,error ){_gdfa :=&PdfObjectStream {};if encoder ==nil {encoder =NewRawEncoder ();};_gdfa .PdfObjectDictionary =encoder .MakeStreamDict ();_dcbd ,_gdaec :=encoder .EncodeBytes (contents ); -if _gdaec !=nil {return nil ,_gdaec ;};_gdfa .PdfObjectDictionary .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_dcbd ))));_gdfa .Stream =_dcbd ;return _gdfa ,nil ;};func _agca (_eebd ,_agfd PdfObject ,_dbgf int )bool {if _dbgf > _cbab {_ecd .Log .Error ("\u0054\u0072ac\u0065\u0020\u0064e\u0070\u0074\u0068\u0020lev\u0065l \u0062\u0065\u0079\u006f\u006e\u0064\u0020%d\u0020\u002d\u0020\u0065\u0072\u0072\u006fr\u0021",_cbab ); -return false ;};if _eebd ==nil &&_agfd ==nil {return true ;}else if _eebd ==nil ||_agfd ==nil {return false ;};if _e .TypeOf (_eebd )!=_e .TypeOf (_agfd ){return false ;};switch _ffcg :=_eebd .(type ){case *PdfObjectNull ,*PdfObjectReference :return true ; -case *PdfObjectName :return *_ffcg ==*(_agfd .(*PdfObjectName ));case *PdfObjectString :return *_ffcg ==*(_agfd .(*PdfObjectString ));case *PdfObjectInteger :return *_ffcg ==*(_agfd .(*PdfObjectInteger ));case *PdfObjectBool :return *_ffcg ==*(_agfd .(*PdfObjectBool )); -case *PdfObjectFloat :return *_ffcg ==*(_agfd .(*PdfObjectFloat ));case *PdfIndirectObject :return _agca (TraceToDirectObject (_eebd ),TraceToDirectObject (_agfd ),_dbgf +1);case *PdfObjectArray :_fede :=_agfd .(*PdfObjectArray );if len ((*_ffcg )._egacc )!=len ((*_fede )._egacc ){return false ; -};for _bbcbf ,_aacbc :=range (*_ffcg )._egacc {if !_agca (_aacbc ,(*_fede )._egacc [_bbcbf ],_dbgf +1){return false ;};};return true ;case *PdfObjectDictionary :_geaed :=_agfd .(*PdfObjectDictionary );_eggg ,_bcgdb :=(*_ffcg )._dbce ,(*_geaed )._dbce ; -if len (_eggg )!=len (_bcgdb ){return false ;};for _febdc ,_face :=range _eggg {_degc ,_bbac :=_bcgdb [_febdc ];if !_bbac ||!_agca (_face ,_degc ,_dbgf +1){return false ;};};return true ;case *PdfObjectStream :_eeaa :=_agfd .(*PdfObjectStream );return _agca ((*_ffcg ).PdfObjectDictionary ,(*_eeaa ).PdfObjectDictionary ,_dbgf +1); -default:_ecd .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u0065\u0076\u0065\u0072\u0020\u0068\u0061\u0070\u0070\u0065\u006e\u0021",_eebd ); -};return false ;};func _fege (_ccgae PdfObject )(*float64 ,error ){switch _bbcga :=_ccgae .(type ){case *PdfObjectFloat :_faea :=float64 (*_bbcga );return &_faea ,nil ;case *PdfObjectInteger :_dddf :=float64 (*_bbcga );return &_dddf ,nil ;case *PdfObjectNull :return nil ,nil ; -};return nil ,ErrNotANumber ;}; +// GetFloatVal returns the float64 value represented by the PdfObject directly or indirectly if contained within an +// indirect object. On type mismatch the found bool flag returned is false and a nil pointer is returned. +func GetFloatVal (obj PdfObject )(_gbca float64 ,_cfdc bool ){_cadfc ,_cfdc :=TraceToDirectObject (obj ).(*PdfObjectFloat );if _cfdc {return float64 (*_cadfc ),true ;};return 0,false ;}; + +// IsWhiteSpace checks if byte represents a white space character. +func IsWhiteSpace (ch byte )bool {if (ch ==0x00)||(ch ==0x09)||(ch ==0x0A)||(ch ==0x0C)||(ch ==0x0D)||(ch ==0x20){return true ;};return false ;};func _ddgff (_accef PdfObject )(*float64 ,error ){switch _bada :=_accef .(type ){case *PdfObjectFloat :_bdfd :=float64 (*_bada ); +return &_bdfd ,nil ;case *PdfObjectInteger :_gacbd :=float64 (*_bada );return &_gacbd ,nil ;case *PdfObjectNull :return nil ,nil ;};return nil ,ErrNotANumber ;}; // JBIG2Encoder implements both jbig2 encoder and the decoder. The encoder allows to encode // provided images (best used document scans) in multiple way. By default it uses single page generic @@ -343,10 +329,10 @@ BitsPerComponent int ; Width int ; // Height is the height of the image to encode. -Height int ;_gcdf *_cb .Document ; +Height int ;_feg *_de .Document ; // Globals are the JBIG2 global segments. -Globals _eb .Globals ; +Globals _fb .Globals ; // IsChocolateData defines if the data is encoded such that // binary data '1' means black and '0' white. @@ -355,231 +341,271 @@ Globals _eb .Globals ; IsChocolateData bool ; // DefaultPageSettings are the settings parameters used by the jbig2 encoder. -DefaultPageSettings JBIG2EncoderSettings ;}; +DefaultPageSettings JBIG2EncoderSettings ;};func (_aaeab *PdfParser )repairRebuildXrefsTopDown ()(*XrefTable ,error ){if _aaeab ._cged {return nil ,_gf .Errorf ("\u0072\u0065\u0070\u0061\u0069\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};_aaeab ._cged =true ; +_aaeab ._dfcdg .Seek (0,_fg .SeekStart );_aaeab ._ffbg =_bfc .NewReader (_aaeab ._dfcdg );_dbca :=20;_bceca :=make ([]byte ,_dbca );_aeag :=XrefTable {};_aeag .ObjectMap =make (map[int ]XrefObject );for {_bfac ,_acdae :=_aaeab ._ffbg .ReadByte ();if _acdae !=nil {if _acdae ==_fg .EOF {break ; +}else {return nil ,_acdae ;};};if _bfac =='j'&&_bceca [_dbca -1]=='b'&&_bceca [_dbca -2]=='o'&&IsWhiteSpace (_bceca [_dbca -3]){_egcg :=_dbca -4;for IsWhiteSpace (_bceca [_egcg ])&&_egcg > 0{_egcg --;};if _egcg ==0||!IsDecimalDigit (_bceca [_egcg ]){continue ; +};for IsDecimalDigit (_bceca [_egcg ])&&_egcg > 0{_egcg --;};if _egcg ==0||!IsWhiteSpace (_bceca [_egcg ]){continue ;};for IsWhiteSpace (_bceca [_egcg ])&&_egcg > 0{_egcg --;};if _egcg ==0||!IsDecimalDigit (_bceca [_egcg ]){continue ;};for IsDecimalDigit (_bceca [_egcg ])&&_egcg > 0{_egcg --; +};if _egcg ==0{continue ;};_gfbdg :=_aaeab .GetFileOffset ()-int64 (_dbca -_egcg );_gfgf :=append (_bceca [_egcg +1:],_bfac );_gadbg ,_cbgc ,_dcgc :=_gdce (string (_gfgf ));if _dcgc !=nil {_a .Log .Debug ("\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u006e\u0075\u006d\u0062\u0065r\u003a\u0020\u0025\u0076",_dcgc ); +return nil ,_dcgc ;};if _aacb ,_fgfb :=_aeag .ObjectMap [_gadbg ];!_fgfb ||_aacb .Generation < _cbgc {_ebdg :=XrefObject {};_ebdg .XType =XrefTypeTableEntry ;_ebdg .ObjectNumber =_gadbg ;_ebdg .Generation =_cbgc ;_ebdg .Offset =_gfbdg ;_aeag .ObjectMap [_gadbg ]=_ebdg ; +};};_bceca =append (_bceca [1:_dbca ],_bfac );};_aaeab ._eeaa =nil ;return &_aeag ,nil ;}; -// ReadBytesAt reads byte content at specific offset and length within the PDF. -func (_ffgg *PdfParser )ReadBytesAt (offset ,len int64 )([]byte ,error ){_eace :=_ffgg .GetFileOffset ();_ ,_ddbf :=_ffgg ._ccgbe .Seek (offset ,_ae .SeekStart );if _ddbf !=nil {return nil ,_ddbf ;};_cdcd :=make ([]byte ,len );_ ,_ddbf =_ae .ReadAtLeast (_ffgg ._ccgbe ,_cdcd ,int (len )); -if _ddbf !=nil {return nil ,_ddbf ;};_ffgg .SetFileOffset (_eace );return _cdcd ,nil ;}; +// NewDCTEncoder makes a new DCT encoder with default parameters. +func NewDCTEncoder ()*DCTEncoder {_bbd :=&DCTEncoder {};_bbd .ColorComponents =3;_bbd .BitsPerComponent =8;_bbd .Quality =DefaultJPEGQuality ;_bbd .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};return _bbd ;}; -// SetFileOffset sets the file to an offset position and resets buffer. -func (_adbd *PdfParser )SetFileOffset (offset int64 ){if offset < 0{offset =0;};_adbd ._ccgbe .Seek (offset ,_ae .SeekStart );_adbd ._affd =_ga .NewReader (_adbd ._ccgbe );}; +// WriteString outputs the object as it is to be written to file. +func (_fega *PdfObjectInteger )WriteString ()string {return _bd .FormatInt (int64 (*_fega ),10)}; -// EncodeBytes encodes a bytes array and return the encoded value based on the encoder parameters. -func (_fedf *FlateEncoder )EncodeBytes (data []byte )([]byte ,error ){if _fedf .Predictor !=1&&_fedf .Predictor !=11{_ecd .Log .Debug ("E\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0046\u006c\u0061\u0074\u0065\u0045\u006e\u0063\u006f\u0064\u0065r\u0020P\u0072\u0065\u0064\u0069c\u0074\u006fr\u0020\u003d\u0020\u0031\u002c\u0020\u0031\u0031\u0020\u006f\u006e\u006c\u0079\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064"); -return nil ,ErrUnsupportedEncodingParameters ;};if _fedf .Predictor ==11{_fce :=_fedf .Columns ;_fbbd :=len (data )/_fce ;if len (data )%_fce !=0{_ecd .Log .Error ("\u0049n\u0076a\u006c\u0069\u0064\u0020\u0072o\u0077\u0020l\u0065\u006e\u0067\u0074\u0068"); -return nil ,_f .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0072o\u0077\u0020l\u0065\u006e\u0067\u0074\u0068");};_ded :=_fb .NewBuffer (nil );_geb :=make ([]byte ,_fce );for _dgga :=0;_dgga < _fbbd ;_dgga ++{_ccd :=data [_fce *_dgga :_fce *(_dgga +1)]; -_geb [0]=_ccd [0];for _ccge :=1;_ccge < _fce ;_ccge ++{_geb [_ccge ]=byte (int (_ccd [_ccge ]-_ccd [_ccge -1])%256);};_ded .WriteByte (1);_ded .Write (_geb );};data =_ded .Bytes ();};var _aedf _fb .Buffer ;_gcd :=_da .NewWriter (&_aedf );_gcd .Write (data ); -_gcd .Close ();return _aedf .Bytes (),nil ;}; +// IsDelimiter checks if a character represents a delimiter. +func IsDelimiter (c byte )bool {return c =='('||c ==')'||c =='<'||c =='>'||c =='['||c ==']'||c =='{'||c =='}'||c =='/'||c =='%';};func (_acdb *PdfCrypt )decryptBytes (_dfc []byte ,_gba string ,_gbea []byte )([]byte ,error ){_a .Log .Trace ("\u0044\u0065\u0063\u0072\u0079\u0070\u0074\u0020\u0062\u0079\u0074\u0065\u0073"); +_ecec ,_ecc :=_acdb ._deg [_gba ];if !_ecc {return nil ,_gf .Errorf ("\u0075n\u006b\u006e\u006f\u0077n\u0020\u0063\u0072\u0079\u0070t\u0020f\u0069l\u0074\u0065\u0072\u0020\u0028\u0025\u0073)",_gba );};return _ecec .DecryptBytes (_dfc ,_gbea );}; -// GetFilterName returns the name of the encoding filter. -func (_ead *JBIG2Encoder )GetFilterName ()string {return StreamEncodingFilterNameJBIG2 };const (_gdfb =0;_gbe =1;_gcff =2;_fbegd =3;_fcc =4;); +// WriteString outputs the object as it is to be written to file. +func (_fdagb *PdfObjectArray )WriteString ()string {var _eceee _gd .Builder ;_eceee .WriteString ("\u005b");for _bcgbc ,_eafac :=range _fdagb .Elements (){_eceee .WriteString (_eafac .WriteString ());if _bcgbc < (_fdagb .Len ()-1){_eceee .WriteString ("\u0020"); +};};_eceee .WriteString ("\u005d");return _eceee .String ();};func (_fed *PdfCrypt )loadCryptFilters (_gaeb *PdfObjectDictionary )error {_fed ._deg =cryptFilters {};_bde :=_gaeb .Get ("\u0043\u0046");_bde =TraceToDirectObject (_bde );if _dbf ,_dcd :=_bde .(*PdfObjectReference ); +_dcd {_adg ,_ffd :=_fed ._ada .LookupByReference (*_dbf );if _ffd !=nil {_a .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u006c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0075\u0070\u0020\u0043\u0046\u0020\u0072\u0065\u0066\u0065\u0072en\u0063\u0065"); +return _ffd ;};_bde =TraceToDirectObject (_adg );};_dgc ,_gdc :=_bde .(*PdfObjectDictionary );if !_gdc {_a .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0043\u0046\u002c \u0074\u0079\u0070\u0065: \u0025\u0054",_bde );return _c .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0046"); +};for _ ,_baec :=range _dgc .Keys (){_cag :=_dgc .Get (_baec );if _cbf ,_edb :=_cag .(*PdfObjectReference );_edb {_adb ,_eef :=_fed ._ada .LookupByReference (*_cbf );if _eef !=nil {_a .Log .Debug ("\u0045\u0072ro\u0072\u0020\u006co\u006f\u006b\u0075\u0070 up\u0020di\u0063\u0074\u0069\u006f\u006e\u0061\u0072y \u0072\u0065\u0066\u0065\u0072\u0065\u006ec\u0065"); +return _eef ;};_cag =TraceToDirectObject (_adb );};_gbb ,_ffc :=_cag .(*PdfObjectDictionary );if !_ffc {return _gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074\u0020\u0069\u006e \u0043\u0046\u0020\u0028\u006e\u0061\u006d\u0065\u0020\u0025\u0073\u0029\u0020-\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079\u0020\u0062\u0075\u0074\u0020\u0025\u0054",_baec ,_cag ); +};if _baec =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u002d\u0020\u0043\u0061\u006e\u006e\u006f\u0074\u0020\u006f\u0076\u0065\u0072\u0077r\u0069\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0069d\u0065\u006e\u0074\u0069\u0074\u0079\u0020\u0066\u0069\u006c\u0074\u0065\u0072 \u002d\u0020\u0054\u0072\u0079\u0069n\u0067\u0020\u006ee\u0078\u0074"); +continue ;};var _fcb _efd .FilterDict ;if _adbc :=_db (&_fcb ,_gbb );_adbc !=nil {return _adbc ;};_gdf ,_ggc :=_efd .NewFilter (_fcb );if _ggc !=nil {return _ggc ;};_fed ._deg [string (_baec )]=_gdf ;};_fed ._deg ["\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"]=_efd .NewIdentity (); +_fed ._dfb ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _gea ,_ddd :=_gaeb .Get ("\u0053\u0074\u0072\u0046").(*PdfObjectName );_ddd {if _ ,_cec :=_fed ._deg [string (*_gea )];!_cec {return _gf .Errorf ("\u0063\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0066o\u0072\u0020\u0053\u0074\u0072\u0046\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069e\u0064\u0020\u0069\u006e\u0020C\u0046\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0073\u0029",*_gea ); +};_fed ._dfb =string (*_gea );};_fed ._abdf ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _aeb ,_bea :=_gaeb .Get ("\u0053\u0074\u006d\u0046").(*PdfObjectName );_bea {if _ ,_dfae :=_fed ._deg [string (*_aeb )];!_dfae {return _gf .Errorf ("\u0063\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0066o\u0072\u0020\u0053\u0074\u006d\u0046\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069e\u0064\u0020\u0069\u006e\u0020C\u0046\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0073\u0029",*_aeb ); +};_fed ._abdf =string (*_aeb );};return nil ;}; -// EncodeBytes JPX encodes the passed in slice of bytes. -func (_cgab *JPXEncoder )EncodeBytes (data []byte )([]byte ,error ){_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0041t\u0074\u0065\u006dpt\u0069\u006e\u0067\u0020\u0074\u006f \u0075\u0073\u0065\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0073",_cgab .GetFilterName ()); -return data ,ErrNoJPXDecode ;}; +// ParseDict reads and parses a PDF dictionary object enclosed with '<<' and '>>' +func (_cdfbb *PdfParser )ParseDict ()(*PdfObjectDictionary ,error ){_a .Log .Trace ("\u0052\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020D\u0069\u0063\u0074\u0021");_afdf :=MakeDict ();_afdf ._gdcf =_cdfbb ;_ggaf ,_ :=_cdfbb ._ffbg .ReadByte (); +if _ggaf !='<'{return nil ,_c .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074");};_ggaf ,_ =_cdfbb ._ffbg .ReadByte ();if _ggaf !='<'{return nil ,_c .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); +};for {_cdfbb .skipSpaces ();_cdfbb .skipComments ();_gfaa ,_eagcf :=_cdfbb ._ffbg .Peek (2);if _eagcf !=nil {return nil ,_eagcf ;};_a .Log .Trace ("D\u0069c\u0074\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_gfaa ),string (_gfaa )); +if (_gfaa [0]=='>')&&(_gfaa [1]=='>'){_a .Log .Trace ("\u0045\u004f\u0046\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079");_cdfbb ._ffbg .ReadByte ();_cdfbb ._ffbg .ReadByte ();break ;};_a .Log .Trace ("\u0050a\u0072s\u0065\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0021"); +_cdgg ,_eagcf :=_cdfbb .parseName ();_a .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_cdgg );if _eagcf !=nil {_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0052e\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006ea\u006d\u0065\u0020e\u0072r\u0020\u0025\u0073",_eagcf ); +return nil ,_eagcf ;};if len (_cdgg )> 4&&_cdgg [len (_cdgg )-4:]=="\u006e\u0075\u006c\u006c"{_aaaa :=_cdgg [0:len (_cdgg )-4];_a .Log .Debug ("\u0054\u0061\u006b\u0069n\u0067\u0020\u0063\u0061\u0072\u0065\u0020\u006f\u0066\u0020n\u0075l\u006c\u0020\u0062\u0075\u0067\u0020\u0028%\u0073\u0029",_cdgg ); +_a .Log .Debug ("\u004e\u0065\u0077\u0020ke\u0079\u0020\u0022\u0025\u0073\u0022\u0020\u003d\u0020\u006e\u0075\u006c\u006c",_aaaa );_cdfbb .skipSpaces ();_ebfg ,_ :=_cdfbb ._ffbg .Peek (1);if _ebfg [0]=='/'{_afdf .Set (_aaaa ,MakeNull ());continue ;};}; +_cdfbb .skipSpaces ();_cbg ,_eagcf :=_cdfbb .parseObject ();if _eagcf !=nil {return nil ,_eagcf ;};_afdf .Set (_cdgg ,_cbg );if _a .Log .IsLogLevel (_a .LogLevelTrace ){_a .Log .Trace ("\u0064\u0069\u0063\u0074\u005b\u0025\u0073\u005d\u0020\u003d\u0020\u0025\u0073",_cdgg ,_cbg .String ()); +};};_a .Log .Trace ("\u0072\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020\u0044\u0069\u0063\u0074\u0021");return _afdf ,nil ;}; -// ASCIIHexEncoder implements ASCII hex encoder/decoder. -type ASCIIHexEncoder struct{}; +// RawEncoder implements Raw encoder/decoder (no encoding, pass through) +type RawEncoder struct{};func _agaf (_adfed PdfObject ,_cdfeed int ,_afag map[PdfObject ]struct{})error {_a .Log .Trace ("\u0054\u0072\u0061\u0076\u0065\u0072s\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0061\u0074\u0061 \u0028\u0064\u0065\u0070\u0074\u0068\u0020=\u0020\u0025\u0064\u0029",_cdfeed ); +if _ ,_ecfb :=_afag [_adfed ];_ecfb {_a .Log .Trace ("-\u0041\u006c\u0072\u0065ad\u0079 \u0074\u0072\u0061\u0076\u0065r\u0073\u0065\u0064\u002e\u002e\u002e");return nil ;};_afag [_adfed ]=struct{}{};switch _edagf :=_adfed .(type ){case *PdfIndirectObject :_agfd :=_edagf ; +_a .Log .Trace ("\u0069\u006f\u003a\u0020\u0025\u0073",_agfd );_a .Log .Trace ("\u002d\u0020\u0025\u0073",_agfd .PdfObject );return _agaf (_agfd .PdfObject ,_cdfeed +1,_afag );case *PdfObjectStream :_eeba :=_edagf ;return _agaf (_eeba .PdfObjectDictionary ,_cdfeed +1,_afag ); +case *PdfObjectDictionary :_acbfd :=_edagf ;_a .Log .Trace ("\u002d\u0020\u0064\u0069\u0063\u0074\u003a\u0020\u0025\u0073",_acbfd );for _ ,_bafad :=range _acbfd .Keys (){_ebfd :=_acbfd .Get (_bafad );if _cfgbf ,_faadb :=_ebfd .(*PdfObjectReference );_faadb {_baffa :=_cfgbf .Resolve (); +_acbfd .Set (_bafad ,_baffa );_ageba :=_agaf (_baffa ,_cdfeed +1,_afag );if _ageba !=nil {return _ageba ;};}else {_ffcge :=_agaf (_ebfd ,_cdfeed +1,_afag );if _ffcge !=nil {return _ffcge ;};};};return nil ;case *PdfObjectArray :_gbebe :=_edagf ;_a .Log .Trace ("-\u0020\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0073",_gbebe ); +for _caef ,_dabdf :=range _gbebe .Elements (){if _bebb ,_fgge :=_dabdf .(*PdfObjectReference );_fgge {_dedg :=_bebb .Resolve ();_gbebe .Set (_caef ,_dedg );_dbbea :=_agaf (_dedg ,_cdfeed +1,_afag );if _dbbea !=nil {return _dbbea ;};}else {_gecb :=_agaf (_dabdf ,_cdfeed +1,_afag ); +if _gecb !=nil {return _gecb ;};};};return nil ;case *PdfObjectReference :_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020T\u0072\u0061\u0063\u0069\u006e\u0067\u0020\u0061\u0020r\u0065\u0066\u0065r\u0065n\u0063\u0065\u0021");return _c .New ("\u0065r\u0072\u006f\u0072\u0020t\u0072\u0061\u0063\u0069\u006eg\u0020a\u0020r\u0065\u0066\u0065\u0072\u0065\u006e\u0063e"); +};return nil ;}; -// ToGoImage converts the JBIG2Image to the golang image.Image. -func (_ebaf *JBIG2Image )ToGoImage ()(_ac .Image ,error ){const _gfga ="J\u0042I\u0047\u0032\u0049\u006d\u0061\u0067\u0065\u002eT\u006f\u0047\u006f\u0049ma\u0067\u0065";if _ebaf .Data ==nil {return nil ,_cd .Error (_gfga ,"\u0069\u006d\u0061\u0067e \u0064\u0061\u0074\u0061\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064"); -};if _ebaf .Width ==0||_ebaf .Height ==0{return nil ,_cd .Error (_gfga ,"\u0069\u006d\u0061\u0067\u0065\u0020h\u0065\u0069\u0067\u0068\u0074\u0020\u006f\u0072\u0020\u0077\u0069\u0064\u0074h\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); -};_bgcb ,_bcd :=_fcf .NewImage (_ebaf .Width ,_ebaf .Height ,1,1,_ebaf .Data ,nil ,nil );if _bcd !=nil {return nil ,_bcd ;};return _bgcb ,nil ;}; +// SetFileOffset sets the file to an offset position and resets buffer. +func (_afcf *PdfParser )SetFileOffset (offset int64 ){if offset < 0{offset =0;};_afcf ._dfcdg .Seek (offset ,_fg .SeekStart );_afcf ._ffbg =_bfc .NewReader (_afcf ._dfcdg );}; -// PdfVersion returns version of the PDF file. -func (_geagd *PdfParser )PdfVersion ()Version {return _geagd ._eddg };func (_gdddb *PdfParser )getNumbersOfUpdatedObjects (_aacc *PdfParser )([]int ,error ){if _aacc ==nil {return nil ,_f .New ("\u0070\u0072e\u0076\u0069\u006f\u0075\u0073\u0020\u0070\u0061\u0072\u0073\u0065\u0072\u0020\u0063\u0061\u006e\u0027\u0074\u0020\u0062\u0065\u0020nu\u006c\u006c"); -};_aeac :=_aacc ._defe ;_eecfb :=make ([]int ,0);_bfea :=make (map[int ]interface{});_egfeg :=make (map[int ]int64 );for _gdga ,_ffecg :=range _gdddb ._efdgc .ObjectMap {if _ffecg .Offset ==0{if _ffecg .OsObjNumber !=0{if _eeffd ,_eeea :=_gdddb ._efdgc .ObjectMap [_ffecg .OsObjNumber ]; -_eeea {_bfea [_ffecg .OsObjNumber ]=struct{}{};_egfeg [_gdga ]=_eeffd .Offset ;}else {return nil ,_f .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0078r\u0065\u0066\u0020\u0074ab\u006c\u0065");};};}else {_egfeg [_gdga ]=_ffecg .Offset ;};}; -for _agdgae ,_eaga :=range _egfeg {if _ ,_dbgc :=_bfea [_agdgae ];_dbgc {continue ;};if _eaga > _aeac {_eecfb =append (_eecfb ,_agdgae );};};return _eecfb ,nil ;}; +// GetParser returns the parser for lazy-loading or compare references. +func (_bfaf *PdfObjectReference )GetParser ()*PdfParser {return _bfaf ._cfada };func (_efae *PdfParser )checkPostEOFData ()error {const _agfe ="\u0025\u0025\u0045O\u0046";_ ,_cgad :=_efae ._dfcdg .Seek (-int64 (len ([]byte (_agfe )))-1,_fg .SeekEnd );if _cgad !=nil {return _cgad ; +};_cddaa :=make ([]byte ,len ([]byte (_agfe ))+1);_ ,_cgad =_efae ._dfcdg .Read (_cddaa );if _cgad !=nil {if _cgad !=_fg .EOF {return _cgad ;};};if string (_cddaa )==_agfe ||string (_cddaa )==_agfe +"\u000a"{_efae ._gadge ._ccbc =true ;};return nil ;}; -// EncodeBytes ASCII encodes the passed in slice of bytes. -func (_geead *ASCIIHexEncoder )EncodeBytes (data []byte )([]byte ,error ){var _efab _fb .Buffer ;for _ ,_eeb :=range data {_efab .WriteString (_daa .Sprintf ("\u0025\u002e\u0032X\u0020",_eeb ));};_efab .WriteByte ('>');return _efab .Bytes (),nil ;};func (_daca *PdfParser )resolveReference (_bbff *PdfObjectReference )(PdfObject ,bool ,error ){_bgdcf ,_ffcf :=_daca .ObjCache [int (_bbff .ObjectNumber )]; -if _ffcf {return _bgdcf ,true ,nil ;};_bbcf ,_caa :=_daca .LookupByReference (*_bbff );if _caa !=nil {return nil ,false ,_caa ;};_daca .ObjCache [int (_bbff .ObjectNumber )]=_bbcf ;return _bbcf ,false ,nil ;}; -// UpdateParams updates the parameter values of the encoder. -func (_fbbe *DCTEncoder )UpdateParams (params *PdfObjectDictionary ){_fcca ,_accgd :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073"));if _accgd ==nil {_fbbe .ColorComponents =int (_fcca ); -};_fea ,_accgd :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));if _accgd ==nil {_fbbe .BitsPerComponent =int (_fea );};_fced ,_accgd :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068")); -if _accgd ==nil {_fbbe .Width =int (_fced );};_efaf ,_accgd :=GetNumberAsInt64 (params .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));if _accgd ==nil {_fbbe .Height =int (_efaf );};_bdbc ,_accgd :=GetNumberAsInt64 (params .Get ("\u0051u\u0061\u006c\u0069\u0074\u0079")); -if _accgd ==nil {_fbbe .Quality =int (_bdbc );};_acdb ,_dgda :=GetArray (params .Get ("\u0044\u0065\u0063\u006f\u0064\u0065"));if _dgda {_fbbe .Decode ,_accgd =_acdb .ToFloat64Array ();if _accgd !=nil {_ecd .Log .Error ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0063\u006f\u006ev\u0065\u0072\u0074\u0069\u006e\u0067\u0020de\u0063\u006f\u0064\u0065 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u006eto\u0020\u0061r\u0072\u0061\u0079\u0073\u003a\u0020\u0025\u0076",_accgd ); -};};};type limitedReadSeeker struct{_fbge _ae .ReadSeeker ;_bfgb int64 ;}; +// HasInvalidSeparationAfterXRef implements core.ParserMetadata interface. +func (_eadg ParserMetadata )HasInvalidSeparationAfterXRef ()bool {return _eadg ._bdf }; -// MakeArrayFromIntegers creates an PdfObjectArray from a slice of ints, where each array element is -// an PdfObjectInteger. -func MakeArrayFromIntegers (vals []int )*PdfObjectArray {_eage :=MakeArray ();for _ ,_dbcg :=range vals {_eage .Append (MakeInteger (int64 (_dbcg )));};return _eage ;}; +// String returns the state of the bool as "true" or "false". +func (_faad *PdfObjectBool )String ()string {if *_faad {return "\u0074\u0072\u0075\u0065";};return "\u0066\u0061\u006cs\u0065";}; -// Validate validates the page settings for the JBIG2 encoder. -func (_gafgf JBIG2EncoderSettings )Validate ()error {const _beedb ="\u0076a\u006ci\u0064\u0061\u0074\u0065\u0045\u006e\u0063\u006f\u0064\u0065\u0072";if _gafgf .Threshold < 0||_gafgf .Threshold > 1.0{return _cd .Errorf (_beedb ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0074\u0068\u0072\u0065\u0073\u0068\u006f\u006c\u0064\u0020\u0076a\u006c\u0075\u0065\u003a\u0020\u0027\u0025\u0076\u0027 \u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0069\u006e\u0020\u0072\u0061n\u0067\u0065\u0020\u005b\u0030\u002e0\u002c\u0020\u0031.\u0030\u005d",_gafgf .Threshold ); -};if _gafgf .ResolutionX < 0{return _cd .Errorf (_beedb ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0078\u0020\u0072\u0065\u0073\u006f\u006c\u0075\u0074\u0069\u006fn\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u0076\u0065 \u006f\u0072\u0020\u007a\u0065\u0072o\u0020\u0076\u0061l\u0075\u0065",_gafgf .ResolutionX ); -};if _gafgf .ResolutionY < 0{return _cd .Errorf (_beedb ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0079\u0020\u0072\u0065\u0073\u006f\u006c\u0075\u0074\u0069\u006fn\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u0076\u0065 \u006f\u0072\u0020\u007a\u0065\u0072o\u0020\u0076\u0061l\u0075\u0065",_gafgf .ResolutionY ); -};if _gafgf .DefaultPixelValue !=0&&_gafgf .DefaultPixelValue !=1{return _cd .Errorf (_beedb ,"de\u0066\u0061u\u006c\u0074\u0020\u0070\u0069\u0078\u0065\u006c\u0020v\u0061\u006c\u0075\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0066o\u0072 \u0074\u0068\u0065\u0020\u0062\u0069\u0074\u003a \u007b0\u002c\u0031}",_gafgf .DefaultPixelValue ); -};if _gafgf .Compression !=JB2Generic {return _cd .Errorf (_beedb ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u0063\u006fm\u0070\u0072\u0065\u0073s\u0069\u006f\u006e\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); -};return nil ;}; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_efgcd *JPXEncoder )MakeStreamDict ()*PdfObjectDictionary {return MakeDict ()};func (_cgf *PdfCrypt )saveCryptFilters (_fbb *PdfObjectDictionary )error {if _cgf ._ceae .V < 4{return _c .New ("\u0063\u0061\u006e\u0020\u006f\u006e\u006c\u0079\u0020\u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0020V\u003e\u003d\u0034"); +};_gaee :=MakeDict ();_fbb .Set ("\u0043\u0046",_gaee );for _eda ,_feb :=range _cgf ._deg {if _eda =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{continue ;};_cfb :=_gfdf (_feb ,"");_gaee .Set (PdfObjectName (_eda ),_cfb );};_fbb .Set ("\u0053\u0074\u0072\u0046",MakeName (_cgf ._dfb )); +_fbb .Set ("\u0053\u0074\u006d\u0046",MakeName (_cgf ._abdf ));return nil ;}; -// DecodeStream decodes a DCT encoded stream and returns the result as a -// slice of bytes. -func (_fbed *DCTEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _fbed .DecodeBytes (streamObj .Stream );}; +// DecodeBytes decodes a byte slice from Run length encoding. +// +// 7.4.5 RunLengthDecode Filter +// The RunLengthDecode filter decodes data that has been encoded in a simple byte-oriented format based on run length. +// The encoded data shall be a sequence of runs, where each run shall consist of a length byte followed by 1 to 128 +// bytes of data. If the length byte is in the range 0 to 127, the following length + 1 (1 to 128) bytes shall be +// copied literally during decompression. If length is in the range 129 to 255, the following single byte shall be +// copied 257 - length (2 to 128) times during decompression. A length value of 128 shall denote EOD. +func (_edgc *RunLengthEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_gdfbg :=_fd .NewReader (encoded );var _dacf []byte ;for {_bfgf ,_ffg :=_gdfbg .ReadByte ();if _ffg !=nil {return nil ,_ffg ;};if _bfgf > 128{_fgec ,_bcg :=_gdfbg .ReadByte (); +if _bcg !=nil {return nil ,_bcg ;};for _gee :=0;_gee < 257-int (_bfgf );_gee ++{_dacf =append (_dacf ,_fgec );};}else if _bfgf < 128{for _afgg :=0;_afgg < int (_bfgf )+1;_afgg ++{_faag ,_gegc :=_gdfbg .ReadByte ();if _gegc !=nil {return nil ,_gegc ;};_dacf =append (_dacf ,_faag ); +};}else {break ;};};return _dacf ,nil ;}; -// EncodeBytes encodes the image data using either Group3 or Group4 CCITT facsimile (fax) encoding. -// `data` is expected to be 1 color component, 1 bit per component. It is also valid to provide 8 BPC, 1 CC image like -// a standard go image Gray data. -func (_eeffa *CCITTFaxEncoder )EncodeBytes (data []byte )([]byte ,error ){var _bfdaf _fcf .Gray ;switch len (data ){case _eeffa .Rows *_eeffa .Columns :_ddcc ,_gaa :=_fcf .NewImage (_eeffa .Columns ,_eeffa .Rows ,8,1,data ,nil ,nil );if _gaa !=nil {return nil ,_gaa ; -};_bfdaf =_ddcc .(_fcf .Gray );case (_eeffa .Columns *_eeffa .Rows )+7>>3:_gaba ,_ddbe :=_fcf .NewImage (_eeffa .Columns ,_eeffa .Rows ,1,1,data ,nil ,nil );if _ddbe !=nil {return nil ,_ddbe ;};_abeg :=_gaba .(*_fcf .Monochrome );if _ddbe =_abeg .AddPadding (); -_ddbe !=nil {return nil ,_ddbe ;};_bfdaf =_abeg ;default:if len (data )< _fcf .BytesPerLine (_eeffa .Columns ,1,1)*_eeffa .Rows {return nil ,_f .New ("p\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020i\u006e\u0070\u0075t\u0020d\u0061\u0074\u0061"); -};_eabe ,_fcbe :=_fcf .NewImage (_eeffa .Columns ,_eeffa .Rows ,1,1,data ,nil ,nil );if _fcbe !=nil {return nil ,_fcbe ;};_cacfe :=_eabe .(*_fcf .Monochrome );_bfdaf =_cacfe ;};_gbac :=make ([][]byte ,_eeffa .Rows );for _dgge :=0;_dgge < _eeffa .Rows ; -_dgge ++{_cecab :=make ([]byte ,_eeffa .Columns );for _ecgg :=0;_ecgg < _eeffa .Columns ;_ecgg ++{_adca :=_bfdaf .GrayAt (_ecgg ,_dgge );_cecab [_ecgg ]=_adca .Y >>7;};_gbac [_dgge ]=_cecab ;};_fggd :=&_cf .Encoder {K :_eeffa .K ,Columns :_eeffa .Columns ,EndOfLine :_eeffa .EndOfLine ,EndOfBlock :_eeffa .EndOfBlock ,BlackIs1 :_eeffa .BlackIs1 ,DamagedRowsBeforeError :_eeffa .DamagedRowsBeforeError ,Rows :_eeffa .Rows ,EncodedByteAlign :_eeffa .EncodedByteAlign }; -return _fggd .Encode (_gbac ),nil ;}; +// MakeFloat creates an PdfObjectFloat from a float64. +func MakeFloat (val float64 )*PdfObjectFloat {_fgcea :=PdfObjectFloat (val );return &_fgcea }; -// ReadAtLeast reads at least n bytes into slice p. -// Returns the number of bytes read (should always be == n), and an error on failure. -func (_fgcb *PdfParser )ReadAtLeast (p []byte ,n int )(int ,error ){_dagc :=n ;_aeab :=0;_ggbfc :=0;for _dagc > 0{_fdde ,_dceb :=_fgcb ._affd .Read (p [_aeab :]);if _dceb !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0046\u0061i\u006c\u0065\u0064\u0020\u0072\u0065\u0061d\u0069\u006e\u0067\u0020\u0028\u0025\u0064\u003b\u0025\u0064\u0029\u0020\u0025\u0073",_fdde ,_ggbfc ,_dceb .Error ()); -return _aeab ,_f .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065a\u0064\u0069\u006e\u0067");};_ggbfc ++;_aeab +=_fdde ;_dagc -=_fdde ;};return _aeab ,nil ;}; +// MakeBool creates a PdfObjectBool from a bool value. +func MakeBool (val bool )*PdfObjectBool {_gced :=PdfObjectBool (val );return &_gced }; -// Get returns the PdfObject corresponding to the specified key. -// Returns a nil value if the key is not set. -func (_gfdgd *PdfObjectDictionary )Get (key PdfObjectName )PdfObject {_gfdgd ._gaae .Lock ();defer _gfdgd ._gaae .Unlock ();_fcgd ,_eggbg :=_gfdgd ._dbce [key ];if !_eggbg {return nil ;};return _fcgd ;}; +// ASCII85Encoder implements ASCII85 encoder/decoder. +type ASCII85Encoder struct{}; -// Clear resets the dictionary to an empty state. -func (_agbcc *PdfObjectDictionary )Clear (){_agbcc ._aeea =[]PdfObjectName {};_agbcc ._dbce =map[PdfObjectName ]PdfObject {};_agbcc ._gaae =&_d .Mutex {};};var (ErrUnsupportedEncodingParameters =_f .New ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073"); -ErrNoCCITTFaxDecode =_f .New ("\u0043\u0043I\u0054\u0054\u0046\u0061\u0078\u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064"); -ErrNoJBIG2Decode =_f .New ("\u004a\u0042\u0049\u0047\u0032\u0044\u0065c\u006f\u0064\u0065 \u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064"); -ErrNoJPXDecode =_f .New ("\u004a\u0050\u0058\u0044\u0065c\u006f\u0064\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064"); -ErrNoPdfVersion =_f .New ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");ErrTypeError =_f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");ErrRangeError =_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"); -ErrNotSupported =_aae .New ("\u0066\u0065\u0061t\u0075\u0072\u0065\u0020n\u006f\u0074\u0020\u0063\u0075\u0072\u0072e\u006e\u0074\u006c\u0079\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064");ErrNotANumber =_f .New ("\u006e\u006f\u0074 \u0061\u0020\u006e\u0075\u006d\u0062\u0065\u0072"); -);func (_bbe *PdfParser )parseDetailedHeader ()(_fcb error ){_bbe ._ccgbe .Seek (0,_ae .SeekStart );_bbe ._affd =_ga .NewReader (_bbe ._ccgbe );_edde :=20;_gcef :=make ([]byte ,_edde );var (_ccg bool ;_dggg int ;);for {_ecea ,_gfcc :=_bbe ._affd .ReadByte (); -if _gfcc !=nil {if _gfcc ==_ae .EOF {break ;}else {return _gfcc ;};};if IsDecimalDigit (_ecea )&&_gcef [_edde -1]=='.'&&IsDecimalDigit (_gcef [_edde -2])&&_gcef [_edde -3]=='-'&&_gcef [_edde -4]=='F'&&_gcef [_edde -5]=='D'&&_gcef [_edde -6]=='P'&&_gcef [_edde -7]=='%'{_bbe ._eddg =Version {Major :int (_gcef [_edde -2]-'0'),Minor :int (_ecea -'0')}; -_bbe ._bcdc ._dcge =_dggg -7;_ccg =true ;break ;};_dggg ++;_gcef =append (_gcef [1:_edde ],_ecea );};if !_ccg {return _daa .Errorf ("n\u006f \u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061d\u0065\u0072\u0020\u0066ou\u006e\u0064");};_fbgf ,_fcb :=_bbe ._affd .ReadByte (); -if _fcb ==_ae .EOF {return _daa .Errorf ("\u006eo\u0074\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0050d\u0066\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074");};if _fcb !=nil {return _fcb ;};_bbe ._bcdc ._aceg =_fbgf =='\n';_fbgf ,_fcb =_bbe ._affd .ReadByte (); -if _fcb !=nil {return _daa .Errorf ("\u006e\u006f\u0074\u0020a\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0064\u0066 \u0064o\u0063\u0075\u006d\u0065\u006e\u0074\u003a \u0025\u0077",_fcb );};if _fbgf !='%'{return nil ;};_afg :=make ([]byte ,4);_ ,_fcb =_bbe ._affd .Read (_afg ); -if _fcb !=nil {return _daa .Errorf ("\u006e\u006f\u0074\u0020a\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0064\u0066 \u0064o\u0063\u0075\u006d\u0065\u006e\u0074\u003a \u0025\u0077",_fcb );};_bbe ._bcdc ._aaeg =[4]byte {_afg [0],_afg [1],_afg [2],_afg [3]}; -return nil ;}; +// PdfVersion returns version of the PDF file. +func (_bdgbe *PdfParser )PdfVersion ()Version {return _bdgbe ._eebec }; -// PdfObjectReference represents the primitive PDF reference object. -type PdfObjectReference struct{_ceda *PdfParser ;ObjectNumber int64 ;GenerationNumber int64 ;}; +// NewCompliancePdfParser creates a new PdfParser that will parse input reader with the focus on extracting more metadata, which +// might affect performance of the regular PdfParser this function. +func NewCompliancePdfParser (rs _fg .ReadSeeker )(_afc *PdfParser ,_ffb error ){_afc =&PdfParser {_dfcdg :rs ,ObjCache :make (objectCache ),_ffed :map[int64 ]bool {},_ecgd :true ,_beaf :make (map[*PdfParser ]*PdfParser )};if _ffb =_afc .parseDetailedHeader (); +_ffb !=nil {return nil ,_ffb ;};if _afc ._dabde ,_ffb =_afc .loadXrefs ();_ffb !=nil {_a .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020F\u0061\u0069\u006c\u0065d t\u006f l\u006f\u0061\u0064\u0020\u0078\u0072\u0065f \u0074\u0061\u0062\u006c\u0065\u0021\u0020%\u0073",_ffb ); +return nil ,_ffb ;};_a .Log .Trace ("T\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0073",_afc ._dabde );if len (_afc ._bbdf .ObjectMap )==0{return nil ,_gf .Errorf ("\u0065\u006d\u0070\u0074\u0079\u0020\u0058\u0052\u0045\u0046\u0020t\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0049\u006e\u0076a\u006c\u0069\u0064"); +};return _afc ,nil ;}; -// GetFilterName returns the name of the encoding filter. -func (_dfbad *RawEncoder )GetFilterName ()string {return StreamEncodingFilterNameRaw }; +// DrawableImage is same as golang image/draw's Image interface that allow drawing images. +type DrawableImage interface{ColorModel ()_ga .Model ;Bounds ()_cg .Rectangle ;At (_dgag ,_gedf int )_ga .Color ;Set (_bgbc ,_bace int ,_gggf _ga .Color );}; -// IsHexadecimal checks if the PdfObjectString contains Hexadecimal data. -func (_ffeea *PdfObjectString )IsHexadecimal ()bool {return _ffeea ._eecb }; +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_ccf *RunLengthEncoder )MakeDecodeParams ()PdfObject {return nil }; -// DecodeBytes decodes byte array with ASCII85. 5 ASCII characters -> 4 raw binary bytes -func (_aadd *ASCII85Encoder )DecodeBytes (encoded []byte )([]byte ,error ){var _fffbg []byte ;_ecd .Log .Trace ("\u0041\u0053\u0043\u0049\u0049\u0038\u0035\u0020\u0044e\u0063\u006f\u0064\u0065");_gedb :=0;_dfcg :=false ;for _gedb < len (encoded )&&!_dfcg {_bddd :=[5]byte {0,0,0,0,0}; -_gaeb :=0;_gfad :=0;_bde :=4;for _gfad < 5+_gaeb {if _gedb +_gfad ==len (encoded ){break ;};_bgcd :=encoded [_gedb +_gfad ];if IsWhiteSpace (_bgcd ){_gaeb ++;_gfad ++;continue ;}else if _bgcd =='~'&&_gedb +_gfad +1< len (encoded )&&encoded [_gedb +_gfad +1]=='>'{_bde =(_gfad -_gaeb )-1; -if _bde < 0{_bde =0;};_dfcg =true ;break ;}else if _bgcd >='!'&&_bgcd <='u'{_bgcd -='!';}else if _bgcd =='z'&&_gfad -_gaeb ==0{_bde =4;_gfad ++;break ;}else {_ecd .Log .Error ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020co\u0064\u0065"); -return nil ,_f .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u006f\u0064\u0065\u0020e\u006e\u0063\u006f\u0075\u006e\u0074\u0065\u0072\u0065\u0064");};_bddd [_gfad -_gaeb ]=_bgcd ;_gfad ++;};_gedb +=_gfad ;for _bfda :=_bde +1;_bfda < 5;_bfda ++{_bddd [_bfda ]=84; -};_ebcg :=uint32 (_bddd [0])*85*85*85*85+uint32 (_bddd [1])*85*85*85+uint32 (_bddd [2])*85*85+uint32 (_bddd [3])*85+uint32 (_bddd [4]);_beec :=[]byte {byte ((_ebcg >>24)&0xff),byte ((_ebcg >>16)&0xff),byte ((_ebcg >>8)&0xff),byte (_ebcg &0xff)};_fffbg =append (_fffbg ,_beec [:_bde ]...); -};_ecd .Log .Trace ("A\u0053\u0043\u0049\u004985\u002c \u0065\u006e\u0063\u006f\u0064e\u0064\u003a\u0020\u0025\u0020\u0058",encoded );_ecd .Log .Trace ("A\u0053\u0043\u0049\u004985\u002c \u0064\u0065\u0063\u006f\u0064e\u0064\u003a\u0020\u0025\u0020\u0058",_fffbg ); -return _fffbg ,nil ;}; +// UpdateParams updates the parameter values of the encoder. +// Implements StreamEncoder interface. +func (_bdbd *JBIG2Encoder )UpdateParams (params *PdfObjectDictionary ){_gdfbc ,_fde :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));if _fde ==nil {_bdbd .BitsPerComponent =int (_gdfbc ); +};_daca ,_fde :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));if _fde ==nil {_bdbd .Width =int (_daca );};_gfea ,_fde :=GetNumberAsInt64 (params .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));if _fde ==nil {_bdbd .Height =int (_gfea );}; +_becg ,_fde :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073"));if _fde ==nil {_bdbd .ColorComponents =int (_becg );};}; -// GetPreviousRevisionParser returns PdfParser for the previous version of the Pdf document. -func (_cgcg *PdfParser )GetPreviousRevisionParser ()(*PdfParser ,error ){if _cgcg ._eecd ==0{return nil ,_f .New ("\u0074\u0068\u0069\u0073 i\u0073\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0072\u0065\u0076\u0069\u0073\u0069o\u006e");};if _cacb ,_ccde :=_cgcg ._fcedf [_cgcg ]; -_ccde {return _cacb ,nil ;};_fdad ,_fdfg :=_cgcg .GetPreviousRevisionReadSeeker ();if _fdfg !=nil {return nil ,_fdfg ;};_gaagd ,_fdfg :=NewParser (_fdad );_gaagd ._fcedf =_cgcg ._fcedf ;if _fdfg !=nil {return nil ,_fdfg ;};_cgcg ._fcedf [_cgcg ]=_gaagd ; -return _gaagd ,nil ;}; +// Decoded returns the PDFDocEncoding or UTF-16BE decoded string contents. +// UTF-16BE is applied when the first two bytes are 0xFE, 0XFF, otherwise decoding of +// PDFDocEncoding is performed. +func (_bgfca *PdfObjectString )Decoded ()string {if _bgfca ==nil {return "";};_dfebe :=[]byte (_bgfca ._aaca );if len (_dfebe )>=2&&_dfebe [0]==0xFE&&_dfebe [1]==0xFF{return _da .UTF16ToString (_dfebe [2:]);};return _da .PDFDocEncodingToString (_dfebe ); +};func (_egbb *PdfObjectDictionary )setWithLock (_edbad PdfObjectName ,_cfac PdfObject ,_befb bool ){if _befb {_egbb ._ccdg .Lock ();defer _egbb ._ccdg .Unlock ();};_ ,_bfbef :=_egbb ._adbeb [_edbad ];if !_bfbef {_egbb ._caeg =append (_egbb ._caeg ,_edbad ); +};_egbb ._adbeb [_edbad ]=_cfac ;}; -// GetFilterName returns the name of the encoding filter. -func (_edfd *JPXEncoder )GetFilterName ()string {return StreamEncodingFilterNameJPX }; +// UpdateParams updates the parameter values of the encoder. +func (_fdf *FlateEncoder )UpdateParams (params *PdfObjectDictionary ){_cded ,_dead :=GetNumberAsInt64 (params .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr"));if _dead ==nil {_fdf .Predictor =int (_cded );};_eaf ,_dead :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074")); +if _dead ==nil {_fdf .BitsPerComponent =int (_eaf );};_babd ,_dead :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));if _dead ==nil {_fdf .Columns =int (_babd );};_ggad ,_dead :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073")); +if _dead ==nil {_fdf .Colors =int (_ggad );};};func (_feged *PdfParser )inspect ()(map[string ]int ,error ){_a .Log .Trace ("\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u0049\u004e\u0053P\u0045\u0043\u0054\u0020\u002d\u002d\u002d\u002d\u002d\u002d-\u002d\u002d\u002d"); +_a .Log .Trace ("X\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u003a");_cadbc :=map[string ]int {};_efcdg :=0;_cbae :=0;var _baefb []int ;for _edcg :=range _feged ._bbdf .ObjectMap {_baefb =append (_baefb ,_edcg );};_gg .Ints (_baefb );_gdea :=0; +for _ ,_gfca :=range _baefb {_bffd :=_feged ._bbdf .ObjectMap [_gfca ];if _bffd .ObjectNumber ==0{continue ;};_efcdg ++;_a .Log .Trace ("\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d");_a .Log .Trace ("\u004c\u006f\u006f\u006bi\u006e\u0067\u0020\u0075\u0070\u0020\u006f\u0062\u006a\u0065c\u0074 \u006e\u0075\u006d\u0062\u0065\u0072\u003a \u0025\u0064",_bffd .ObjectNumber ); +_ccfbe ,_cfda :=_feged .LookupByNumber (_bffd .ObjectNumber );if _cfda !=nil {_a .Log .Trace ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020\u006c\u006f\u006f\u006b\u0075p\u0020\u006f\u0062\u006a\u0020\u0025\u0064 \u0028\u0025\u0073\u0029",_bffd .ObjectNumber ,_cfda ); +_cbae ++;continue ;};_a .Log .Trace ("\u006fb\u006a\u003a\u0020\u0025\u0073",_ccfbe );_fggg ,_ccgbbc :=_ccfbe .(*PdfIndirectObject );if _ccgbbc {_a .Log .Trace ("\u0049N\u0044 \u004f\u004f\u0042\u004a\u0020\u0025\u0064\u003a\u0020\u0025\u0073",_bffd .ObjectNumber ,_fggg ); +_cgae ,_ebeed :=_fggg .PdfObject .(*PdfObjectDictionary );if _ebeed {if _bfag ,_daad :=_cgae .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );_daad {_feegc :=string (*_bfag );_a .Log .Trace ("\u002d\u002d\u002d\u003e\u0020\u004f\u0062\u006a\u0020\u0074\u0079\u0070e\u003a\u0020\u0025\u0073",_feegc ); +_ ,_gdabf :=_cadbc [_feegc ];if _gdabf {_cadbc [_feegc ]++;}else {_cadbc [_feegc ]=1;};}else if _fgfe ,_ddfc :=_cgae .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065").(*PdfObjectName );_ddfc {_cgce :=string (*_fgfe );_a .Log .Trace ("-\u002d-\u003e\u0020\u004f\u0062\u006a\u0020\u0073\u0075b\u0074\u0079\u0070\u0065: \u0025\u0073",_cgce ); +_ ,_ggeg :=_cadbc [_cgce ];if _ggeg {_cadbc [_cgce ]++;}else {_cadbc [_cgce ]=1;};};if _edfgb ,_gcef :=_cgae .Get ("\u0053").(*PdfObjectName );_gcef &&*_edfgb =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_ ,_cfcg :=_cadbc ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]; +if _cfcg {_cadbc ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++;}else {_cadbc ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]=1;};};};}else if _gefa ,_aaddg :=_ccfbe .(*PdfObjectStream );_aaddg {if _ecfc ,_cdbg :=_gefa .PdfObjectDictionary .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); +_cdbg {_a .Log .Trace ("\u002d\u002d\u003e\u0020\u0053\u0074\u0072\u0065\u0061\u006d\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065:\u0020\u0025\u0073",*_ecfc );_cafcb :=string (*_ecfc );_cadbc [_cafcb ]++;};}else {_ecfg ,_dceeg :=_ccfbe .(*PdfObjectDictionary ); +if _dceeg {_efdc ,_ggaee :=_ecfg .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );if _ggaee {_bdad :=string (*_efdc );_a .Log .Trace ("\u002d-\u002d \u006f\u0062\u006a\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0073",_bdad );_cadbc [_bdad ]++;};};_a .Log .Trace ("\u0044\u0049\u0052\u0045\u0043\u0054\u0020\u004f\u0042\u004a\u0020\u0025d\u003a\u0020\u0025\u0073",_bffd .ObjectNumber ,_ccfbe ); +};_gdea ++;};_a .Log .Trace ("\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u0045\u004fF\u0020\u0049\u004e\u0053\u0050\u0045\u0043T\u0020\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d");_a .Log .Trace ("\u003d=\u003d\u003d\u003d\u003d\u003d"); +_a .Log .Trace ("\u004f\u0062j\u0065\u0063\u0074 \u0063\u006f\u0075\u006e\u0074\u003a\u0020\u0025\u0064",_efcdg );_a .Log .Trace ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u006c\u006f\u006f\u006b\u0075p\u003a\u0020\u0025\u0064",_cbae );for _feaca ,_bdfc :=range _cadbc {_a .Log .Trace ("\u0025\u0073\u003a\u0020\u0025\u0064",_feaca ,_bdfc ); +};_a .Log .Trace ("\u003d=\u003d\u003d\u003d\u003d\u003d");if len (_feged ._bbdf .ObjectMap )< 1{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0068\u0069\u0073 \u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074 \u0069s\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0078\u0072\u0065\u0066\u0020\u0074\u0061\u0062l\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0021\u0029"); +return nil ,_gf .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0028\u0078r\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u006d\u0069\u0073s\u0069\u006e\u0067\u0029");};_cfcbe ,_agcg :=_cadbc ["\u0046\u006f\u006e\u0074"]; +if !_agcg ||_cfcbe < 2{_a .Log .Trace ("\u0054\u0068\u0069s \u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020i\u0073 \u0070r\u006fb\u0061\u0062\u006c\u0079\u0020\u0073\u0063\u0061\u006e\u006e\u0065\u0064\u0021");}else {_a .Log .Trace ("\u0054\u0068\u0069\u0073\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0066o\u0072\u0020\u0065\u0078\u0074r\u0061\u0063t\u0069\u006f\u006e\u0021"); +};return _cadbc ,nil ;}; + +// Remove removes an element specified by key. +func (_fcfc *PdfObjectDictionary )Remove (key PdfObjectName ){_becb :=-1;for _cddac ,_abeag :=range _fcfc ._caeg {if _abeag ==key {_becb =_cddac ;break ;};};if _becb >=0{_fcfc ._caeg =append (_fcfc ._caeg [:_becb ],_fcfc ._caeg [_becb +1:]...);delete (_fcfc ._adbeb ,key ); +};}; // PdfCrypt provides PDF encryption/decryption support. // The PDF standard supports encryption of strings and streams (Section 7.6). -type PdfCrypt struct{_dgb encryptDict ;_af _fg .StdEncryptDict ;_gda string ;_fedc []byte ;_cgb map[PdfObject ]bool ;_ggf map[PdfObject ]bool ;_bag bool ;_bgbe cryptFilters ;_gfd string ;_ffd string ;_ebec *PdfParser ;_abf map[int ]struct{};}; +type PdfCrypt struct{_ceae encryptDict ;_aec _dc .StdEncryptDict ;_abf string ;_baa []byte ;_ecee map[PdfObject ]bool ;_fee map[PdfObject ]bool ;_dfe bool ;_deg cryptFilters ;_abdf string ;_dfb string ;_ada *PdfParser ;_cdda map[int ]struct{};}; + +// PdfObjectString represents the primitive PDF string object. +type PdfObjectString struct{_aaca string ;_gead bool ;};type encryptDict struct{Filter string ;V int ;SubFilter string ;Length int ;StmF string ;StrF string ;EFF string ;CF map[string ]_efd .FilterDict ;}; // WriteString outputs the object as it is to be written to file. -func (_acacd *PdfObjectStream )WriteString ()string {var _dbff _c .Builder ;_dbff .WriteString (_bf .FormatInt (_acacd .ObjectNumber ,10));_dbff .WriteString ("\u0020\u0030\u0020\u0052");return _dbff .String ();}; +func (_eacdd *PdfIndirectObject )WriteString ()string {var _ggga _gd .Builder ;_ggga .WriteString (_bd .FormatInt (_eacdd .ObjectNumber ,10));_ggga .WriteString ("\u0020\u0030\u0020\u0052");return _ggga .String ();};func _db (_fbg *_efd .FilterDict ,_bce *PdfObjectDictionary )error {if _cefc ,_acd :=_bce .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); +_acd {if _cbe :=string (*_cefc );_cbe !="C\u0072\u0079\u0070\u0074\u0046\u0069\u006c\u0074\u0065\u0072"{_a .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020C\u0046\u0020\u0064ic\u0074\u0020\u0074\u0079\u0070\u0065:\u0020\u0025\u0073\u0020\u0028\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020C\u0072\u0079\u0070\u0074\u0046\u0069\u006c\u0074e\u0072\u0029",_cbe ); +};};_dag ,_dagg :=_bce .Get ("\u0043\u0046\u004d").(*PdfObjectName );if !_dagg {return _gf .Errorf ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0063\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0028\u004e\u006f\u006e\u0065\u0029"); +};_fbg .CFM =string (*_dag );if _bcd ,_cbcg :=_bce .Get ("\u0041u\u0074\u0068\u0045\u0076\u0065\u006et").(*PdfObjectName );_cbcg {_fbg .AuthEvent =_dc .AuthEvent (*_bcd );}else {_fbg .AuthEvent =_dc .EventDocOpen ;};if _fdb ,_gacd :=_bce .Get ("\u004c\u0065\u006e\u0067\u0074\u0068").(*PdfObjectInteger ); +_gacd {_fbg .Length =int (*_fdb );};return nil ;};var _dbdb =_ce .MustCompile ("\u0025\u0025\u0045\u004f\u0046\u003f"); -// MakeFloat creates an PdfObjectFloat from a float64. -func MakeFloat (val float64 )*PdfObjectFloat {_bbfc :=PdfObjectFloat (val );return &_bbfc };func (_dggba *PdfParser )parseArray ()(*PdfObjectArray ,error ){_ccgg :=MakeArray ();_dggba ._affd .ReadByte ();for {_dggba .skipSpaces ();_daga ,_agda :=_dggba ._affd .Peek (1); -if _agda !=nil {return _ccgg ,_agda ;};if _daga [0]==']'{_dggba ._affd .ReadByte ();break ;};_ceee ,_agda :=_dggba .parseObject ();if _agda !=nil {return _ccgg ,_agda ;};_ccgg .Append (_ceee );};return _ccgg ,nil ;}; +// String returns the PDF version as a string. Implements interface fmt.Stringer. +func (_caeb Version )String ()string {return _gf .Sprintf ("\u00250\u0064\u002e\u0025\u0030\u0064",_caeb .Major ,_caeb .Minor );}; -// CCITTFaxEncoder implements Group3 and Group4 facsimile (fax) encoder/decoder. -type CCITTFaxEncoder struct{K int ;EndOfLine bool ;EncodedByteAlign bool ;Columns int ;Rows int ;EndOfBlock bool ;BlackIs1 bool ;DamagedRowsBeforeError int ;}; +// DecodeBytes decodes a slice of ASCII encoded bytes and returns the result. +func (_dbae *ASCIIHexEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_dfgc :=_fd .NewReader (encoded );var _ffgf []byte ;for {_bdcad ,_geb :=_dfgc .ReadByte ();if _geb !=nil {return nil ,_geb ;};if _bdcad =='>'{break ;};if IsWhiteSpace (_bdcad ){continue ; +};if (_bdcad >='a'&&_bdcad <='f')||(_bdcad >='A'&&_bdcad <='F')||(_bdcad >='0'&&_bdcad <='9'){_ffgf =append (_ffgf ,_bdcad );}else {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0061\u0073\u0063\u0069\u0069 \u0068\u0065\u0078\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072 \u0028\u0025\u0063\u0029",_bdcad ); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0061\u0073\u0063\u0069\u0069\u0020\u0068e\u0078 \u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0028\u0025\u0063\u0029",_bdcad );};};if len (_ffgf )%2==1{_ffgf =append (_ffgf ,'0'); +};_a .Log .Trace ("\u0049\u006e\u0062\u006f\u0075\u006e\u0064\u0020\u0025\u0073",_ffgf );_bdef :=make ([]byte ,_bdc .DecodedLen (len (_ffgf )));_ ,_aefe :=_bdc .Decode (_bdef ,_ffgf );if _aefe !=nil {return nil ,_aefe ;};return _bdef ,nil ;};func (_daga *PdfCrypt )newEncryptDict ()*PdfObjectDictionary {_eee :=MakeDict (); +_eee .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName ("\u0053\u0074\u0061\u006e\u0064\u0061\u0072\u0064"));_eee .Set ("\u0056",MakeInteger (int64 (_daga ._ceae .V )));_eee .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (_daga ._ceae .Length ))); +return _eee ;}; -// IsFloatDigit checks if a character can be a part of a float number string. -func IsFloatDigit (c byte )bool {return ('0'<=c &&c <='9')||c =='.'};func _bcea (_afad int )int {if _afad < 0{return -_afad ;};return _afad ;};func _dbc (_eec *_fg .StdEncryptDict ,_dffd *PdfObjectDictionary ){_dffd .Set ("\u0052",MakeInteger (int64 (_eec .R ))); -_dffd .Set ("\u0050",MakeInteger (int64 (_eec .P )));_dffd .Set ("\u004f",MakeStringFromBytes (_eec .O ));_dffd .Set ("\u0055",MakeStringFromBytes (_eec .U ));if _eec .R >=5{_dffd .Set ("\u004f\u0045",MakeStringFromBytes (_eec .OE ));_dffd .Set ("\u0055\u0045",MakeStringFromBytes (_eec .UE )); -_dffd .Set ("\u0045n\u0063r\u0079\u0070\u0074\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",MakeBool (_eec .EncryptMetadata ));if _eec .R > 5{_dffd .Set ("\u0050\u0065\u0072m\u0073",MakeStringFromBytes (_eec .Perms ));};};}; +// NewRunLengthEncoder makes a new run length encoder +func NewRunLengthEncoder ()*RunLengthEncoder {return &RunLengthEncoder {}};func (_aafg *PdfParser )getNumbersOfUpdatedObjects (_cead *PdfParser )([]int ,error ){if _cead ==nil {return nil ,_c .New ("\u0070\u0072e\u0076\u0069\u006f\u0075\u0073\u0020\u0070\u0061\u0072\u0073\u0065\u0072\u0020\u0063\u0061\u006e\u0027\u0074\u0020\u0062\u0065\u0020nu\u006c\u006c"); +};_cfbb :=_cead ._fbaaa ;_gbdea :=make ([]int ,0);_bbee :=make (map[int ]interface{});_fdef :=make (map[int ]int64 );for _bacf ,_fdaa :=range _aafg ._bbdf .ObjectMap {if _fdaa .Offset ==0{if _fdaa .OsObjNumber !=0{if _eegfg ,_fddce :=_aafg ._bbdf .ObjectMap [_fdaa .OsObjNumber ]; +_fddce {_bbee [_fdaa .OsObjNumber ]=struct{}{};_fdef [_bacf ]=_eegfg .Offset ;}else {return nil ,_c .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0078r\u0065\u0066\u0020\u0074ab\u006c\u0065");};};}else {_fdef [_bacf ]=_fdaa .Offset ;};};for _dagae ,_gaaf :=range _fdef {if _ ,_cege :=_bbee [_dagae ]; +_cege {continue ;};if _gaaf > _cfbb {_gbdea =append (_gbdea ,_dagae );};};return _gbdea ,nil ;}; -// Set sets the PdfObject at index i of the array. An error is returned if the index is outside bounds. -func (_dfeb *PdfObjectArray )Set (i int ,obj PdfObject )error {if i < 0||i >=len (_dfeb ._egacc ){return _f .New ("\u006f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0062o\u0075\u006e\u0064\u0073");};_dfeb ._egacc [i ]=obj ;return nil ;}; +// String returns a string describing `d`. +func (_dcgaa *PdfObjectDictionary )String ()string {var _ceed _gd .Builder ;_ceed .WriteString ("\u0044\u0069\u0063t\u0028");for _ ,_ccbdc :=range _dcgaa ._caeg {_gbdf :=_dcgaa ._adbeb [_ccbdc ];_ceed .WriteString ("\u0022"+_ccbdc .String ()+"\u0022\u003a\u0020"); +_ceed .WriteString (_gbdf .String ());_ceed .WriteString ("\u002c\u0020");};_ceed .WriteString ("\u0029");return _ceed .String ();}; -// DecodeStream decodes the stream data and returns the decoded data. -// An error is returned upon failure. -func DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_ecd .Log .Trace ("\u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d");_ebee ,_efgd :=NewEncoderFromStream (streamObj );if _efgd !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0065\u0063\u006f\u0064\u0069n\u0067\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_efgd ); -return nil ,_efgd ;};_ecd .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u0023\u0076\u000a",_ebee );_cfbbe ,_efgd :=_ebee .DecodeStream (streamObj );if _efgd !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0065\u0063\u006f\u0064\u0069n\u0067\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_efgd ); -return nil ,_efgd ;};return _cfbbe ,nil ;};func (_gdde *ASCII85Encoder )base256Tobase85 (_egbd uint32 )[5]byte {_aegg :=[5]byte {0,0,0,0,0};_gefd :=_egbd ;for _dacg :=0;_dacg < 5;_dacg ++{_caceb :=uint32 (1);for _bgag :=0;_bgag < 4-_dacg ;_bgag ++{_caceb *=85; -};_ggc :=_gefd /_caceb ;_gefd =_gefd %_caceb ;_aegg [_dacg ]=byte (_ggc );};return _aegg ;}; +// UpdateParams updates the parameter values of the encoder. +func (_cffg *ASCIIHexEncoder )UpdateParams (params *PdfObjectDictionary ){}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_edgf *CCITTFaxEncoder )MakeDecodeParams ()PdfObject {_gfbe :=MakeDict ();_gfbe .Set ("\u004b",MakeInteger (int64 (_edgf .K )));_gfbe .Set ("\u0043o\u006c\u0075\u006d\u006e\u0073",MakeInteger (int64 (_edgf .Columns )));if _edgf .BlackIs1 {_gfbe .Set ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031",MakeBool (_edgf .BlackIs1 )); -};if _edgf .EncodedByteAlign {_gfbe .Set ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e",MakeBool (_edgf .EncodedByteAlign ));};if _edgf .EndOfLine &&_edgf .K >=0{_gfbe .Set ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee",MakeBool (_edgf .EndOfLine )); -};if _edgf .Rows !=0&&!_edgf .EndOfBlock {_gfbe .Set ("\u0052\u006f\u0077\u0073",MakeInteger (int64 (_edgf .Rows )));};if !_edgf .EndOfBlock {_gfbe .Set ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b",MakeBool (_edgf .EndOfBlock ));};if _edgf .DamagedRowsBeforeError !=0{_gfbe .Set ("\u0044\u0061\u006d\u0061ge\u0064\u0052\u006f\u0077\u0073\u0042\u0065\u0066\u006f\u0072\u0065\u0045\u0072\u0072o\u0072",MakeInteger (int64 (_edgf .DamagedRowsBeforeError ))); -};return _gfbe ;};type offsetReader struct{_fgba _ae .ReadSeeker ;_febb int64 ;};func (_cfc *PdfCrypt )encryptBytes (_fca []byte ,_bebf string ,_cagd []byte )([]byte ,error ){_ecd .Log .Trace ("\u0045\u006e\u0063\u0072\u0079\u0070\u0074\u0020\u0062\u0079\u0074\u0065\u0073"); -_abd ,_fbg :=_cfc ._bgbe [_bebf ];if !_fbg {return nil ,_daa .Errorf ("\u0075n\u006b\u006e\u006f\u0077n\u0020\u0063\u0072\u0079\u0070t\u0020f\u0069l\u0074\u0065\u0072\u0020\u0028\u0025\u0073)",_bebf );};return _abd .EncryptBytes (_fca ,_cagd );}; +// GetFilterName returns the name of the encoding filter. +func (_gaab *JBIG2Encoder )GetFilterName ()string {return StreamEncodingFilterNameJBIG2 }; -// GetFileOffset returns the current file offset, accounting for buffered position. -func (_gaag *PdfParser )GetFileOffset ()int64 {_dbef ,_ :=_gaag ._ccgbe .Seek (0,_ae .SeekCurrent );_dbef -=int64 (_gaag ._affd .Buffered ());return _dbef ;}; +// EncodeImage encodes 'img' golang image.Image into jbig2 encoded bytes document using default encoder settings. +func (_beb *JBIG2Encoder )EncodeImage (img _cg .Image )([]byte ,error ){return _beb .encodeImage (img )};func (_eegd *PdfParser )parseNull ()(PdfObjectNull ,error ){_ ,_eegf :=_eegd ._ffbg .Discard (4);return PdfObjectNull {},_eegf ;}; -// WriteString outputs the object as it is to be written to file. -func (_cecda *PdfObjectFloat )WriteString ()string {return _bf .FormatFloat (float64 (*_cecda ),'f',-1,64);}; +// MakeArrayFromIntegers64 creates an PdfObjectArray from a slice of int64s, where each array element +// is an PdfObjectInteger. +func MakeArrayFromIntegers64 (vals []int64 )*PdfObjectArray {_dbbd :=MakeArray ();for _ ,_cgdgc :=range vals {_dbbd .Append (MakeInteger (_cgdgc ));};return _dbbd ;}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_ggd *JPXEncoder )MakeStreamDict ()*PdfObjectDictionary {return MakeDict ()}; +// Bytes returns the PdfObjectString content as a []byte array. +func (_acfcc *PdfObjectString )Bytes ()[]byte {return []byte (_acfcc ._aaca )}; -// MakeArray creates an PdfObjectArray from a list of PdfObjects. -func MakeArray (objects ...PdfObject )*PdfObjectArray {return &PdfObjectArray {_egacc :objects }};func (_dabc *PdfCrypt )securityHandler ()_fg .StdHandler {if _dabc ._af .R >=5{return _fg .NewHandlerR6 ();};return _fg .NewHandlerR4 (_dabc ._gda ,_dabc ._dgb .Length ); -};type encryptDict struct{Filter string ;V int ;SubFilter string ;Length int ;StmF string ;StrF string ;EFF string ;CF map[string ]_bc .FilterDict ;}; +// NewLZWEncoder makes a new LZW encoder with default parameters. +func NewLZWEncoder ()*LZWEncoder {_bdea :=&LZWEncoder {};_bdea .Predictor =1;_bdea .BitsPerComponent =8;_bdea .Colors =1;_bdea .Columns =1;_bdea .EarlyChange =1;return _bdea ;}; -// UpdateParams updates the parameter values of the encoder. -func (_afgc *ASCIIHexEncoder )UpdateParams (params *PdfObjectDictionary ){}; +// EncodeBytes implements support for LZW encoding. Currently not supporting predictors (raw compressed data only). +// Only supports the Early change = 1 algorithm (compress/lzw) as the other implementation +// does not have a write method. +// TODO: Consider refactoring compress/lzw to allow both. +func (_dafa *LZWEncoder )EncodeBytes (data []byte )([]byte ,error ){if _dafa .Predictor !=1{return nil ,_gf .Errorf ("\u004c\u005aW \u0050\u0072\u0065d\u0069\u0063\u0074\u006fr =\u00201 \u006f\u006e\u006c\u0079\u0020\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0079e\u0074"); +};if _dafa .EarlyChange ==1{return nil ,_gf .Errorf ("\u004c\u005a\u0057\u0020\u0045\u0061\u0072\u006c\u0079\u0020\u0043\u0068\u0061n\u0067\u0065\u0020\u003d\u0020\u0030 \u006f\u006e\u006c\u0079\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0079\u0065\u0074"); +};var _fefg _fd .Buffer ;_ebad :=_bf .NewWriter (&_fefg ,_bf .MSB ,8);_ebad .Write (data );_ebad .Close ();return _fefg .Bytes (),nil ;}; -// NewJBIG2Encoder creates a new JBIG2Encoder. -func NewJBIG2Encoder ()*JBIG2Encoder {return &JBIG2Encoder {_gcdf :_cb .InitEncodeDocument (false )}};func _gbae (_gff *PdfObjectStream )(*MultiEncoder ,error ){_gbfa :=NewMultiEncoder ();_dgfad :=_gff .PdfObjectDictionary ;if _dgfad ==nil {return _gbfa ,nil ; -};var _dfca *PdfObjectDictionary ;var _fefe []PdfObject ;_aced :=_dgfad .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");if _aced !=nil {_eeaf ,_bcab :=_aced .(*PdfObjectDictionary );if _bcab {_dfca =_eeaf ;};_efbc ,_accc :=_aced .(*PdfObjectArray ); -if _accc {for _ ,_gabe :=range _efbc .Elements (){_gabe =TraceToDirectObject (_gabe );if _debd ,_beg :=_gabe .(*PdfObjectDictionary );_beg {_fefe =append (_fefe ,_debd );}else {_fefe =append (_fefe ,MakeDict ());};};};};_aced =_dgfad .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"); -if _aced ==nil {return nil ,_daa .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};_feee ,_aafe :=_aced .(*PdfObjectArray );if !_aafe {return nil ,_daa .Errorf ("m\u0075\u006c\u0074\u0069\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0063\u0061\u006e\u0020\u006f\u006el\u0079\u0020\u0062\u0065\u0020\u006d\u0061\u0064\u0065\u0020fr\u006f\u006d\u0020a\u0072r\u0061\u0079"); -};for _eccd ,_gdge :=range _feee .Elements (){_defc ,_babb :=_gdge .(*PdfObjectName );if !_babb {return nil ,_daa .Errorf ("\u006d\u0075l\u0074\u0069\u0020\u0066i\u006c\u0074e\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u0020e\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061 \u006e\u0061\u006d\u0065"); -};var _gfbd PdfObject ;if _dfca !=nil {_gfbd =_dfca ;}else {if len (_fefe )> 0{if _eccd >=len (_fefe ){return nil ,_daa .Errorf ("\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0065\u006c\u0065\u006d\u0065n\u0074\u0073\u0020\u0069\u006e\u0020d\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006d\u0073\u0020a\u0072\u0072\u0061\u0079"); -};_gfbd =_fefe [_eccd ];};};var _ddea *PdfObjectDictionary ;if _cceb ,_cbac :=_gfbd .(*PdfObjectDictionary );_cbac {_ddea =_cceb ;};_ecd .Log .Trace ("\u004e\u0065\u0078t \u006e\u0061\u006d\u0065\u003a\u0020\u0025\u0073\u002c \u0064p\u003a \u0025v\u002c\u0020\u0064\u0050\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u0076",*_defc ,_gfbd ,_ddea ); -if *_defc ==StreamEncodingFilterNameFlate {_ecfe ,_cefb :=_dfg (_gff ,_ddea );if _cefb !=nil {return nil ,_cefb ;};_gbfa .AddEncoder (_ecfe );}else if *_defc ==StreamEncodingFilterNameLZW {_gfgfe ,_abbg :=_dacdg (_gff ,_ddea );if _abbg !=nil {return nil ,_abbg ; -};_gbfa .AddEncoder (_gfgfe );}else if *_defc ==StreamEncodingFilterNameASCIIHex {_eeagd :=NewASCIIHexEncoder ();_gbfa .AddEncoder (_eeagd );}else if *_defc ==StreamEncodingFilterNameASCII85 {_age :=NewASCII85Encoder ();_gbfa .AddEncoder (_age );}else if *_defc ==StreamEncodingFilterNameDCT {_gafg ,_fagad :=_efea (_gff ,_gbfa ); -if _fagad !=nil {return nil ,_fagad ;};_gbfa .AddEncoder (_gafg );_ecd .Log .Trace ("A\u0064d\u0065\u0064\u0020\u0044\u0043\u0054\u0020\u0065n\u0063\u006f\u0064\u0065r.\u002e\u002e");_ecd .Log .Trace ("\u004du\u006ct\u0069\u0020\u0065\u006e\u0063o\u0064\u0065r\u003a\u0020\u0025\u0023\u0076",_gbfa ); -}else if *_defc ==StreamEncodingFilterNameCCITTFax {_acbe ,_eafe :=_cfe (_gff ,_ddea );if _eafe !=nil {return nil ,_eafe ;};_gbfa .AddEncoder (_acbe );}else {_ecd .Log .Error ("U\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0066\u0069l\u0074\u0065\u0072\u0020\u0025\u0073",*_defc ); -return nil ,_daa .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u0066\u0069\u006c\u0074er \u0069n \u006d\u0075\u006c\u0074\u0069\u0020\u0066il\u0074\u0065\u0072\u0020\u0061\u0072\u0072a\u0079");};};return _gbfa ,nil ;}; +// JBIG2Image is the image structure used by the jbig2 encoder. Its Data must be in a +// 1 bit per component and 1 component per pixel (1bpp). In order to create binary image +// use GoImageToJBIG2 function. If the image data contains the row bytes padding set the HasPadding to true. +type JBIG2Image struct{ -// PdfObjectStreams represents the primitive PDF object streams. -// 7.5.7 Object Streams (page 45). -type PdfObjectStreams struct{PdfObjectReference ;_gedag []PdfObject ;};func (_bg *PdfParser )lookupObjectViaOS (_agc int ,_daab int )(PdfObject ,error ){var _eg *_fb .Reader ;var _ecf objectStream ;var _ebe bool ;_ecf ,_ebe =_bg ._cafa [_agc ];if !_ebe {_dd ,_adg :=_bg .LookupByNumber (_agc ); -if _adg !=nil {_ecd .Log .Debug ("\u004d\u0069ss\u0069\u006e\u0067 \u006f\u0062\u006a\u0065ct \u0073tr\u0065\u0061\u006d\u0020\u0077\u0069\u0074h \u006e\u0075\u006d\u0062\u0065\u0072\u0020%\u0064",_agc );return nil ,_adg ;};_gg ,_dfd :=_dd .(*PdfObjectStream ); -if !_dfd {return nil ,_f .New ("i\u006e\u0076\u0061\u006cid\u0020o\u0062\u006a\u0065\u0063\u0074 \u0073\u0074\u0072\u0065\u0061\u006d");};if _bg ._geaef !=nil &&!_bg ._geaef .isDecrypted (_gg ){return nil ,_f .New ("\u006e\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0064\u0065\u0063r\u0079\u0070\u0074\u0020\u0074\u0068\u0065\u0020\u0073\u0074r\u0065\u0061\u006d"); -};_gc :=_gg .PdfObjectDictionary ;_ecd .Log .Trace ("\u0073o\u0020\u0064\u003a\u0020\u0025\u0073\n",_gc .String ());_gd ,_dfd :=_gc .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );if !_dfd {_ecd .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0061\u006c\u0077\u0061\u0079\u0073\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0054\u0079\u0070\u0065"); -return nil ,_f .New ("\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020T\u0079\u0070\u0065");};if _c .ToLower (string (*_gd ))!="\u006f\u0062\u006a\u0073\u0074\u006d"{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u0074\u0079\u0070\u0065\u0020s\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0077\u0061\u0079\u0073 \u0062\u0065\u0020\u004f\u0062\u006a\u0053\u0074\u006d\u0020\u0021"); -return nil ,_f .New ("\u006f\u0062\u006a\u0065c\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0074y\u0070e\u0020\u0021\u003d\u0020\u004f\u0062\u006aS\u0074\u006d");};N ,_dfd :=_gc .Get ("\u004e").(*PdfObjectInteger );if !_dfd {return nil ,_f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004e\u0020i\u006e\u0020\u0073\u0074\u0072\u0065\u0061m\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_ab ,_dfd :=_gc .Get ("\u0046\u0069\u0072s\u0074").(*PdfObjectInteger );if !_dfd {return nil ,_f .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0046\u0069\u0072\u0073\u0074\u0020i\u006e \u0073t\u0072e\u0061\u006d\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_ecd .Log .Trace ("\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0073\u0020\u006eu\u006d\u0062\u0065\u0072\u0020\u006f\u0066 \u006f\u0062\u006a\u0065\u0063\u0074\u0073\u003a\u0020\u0025\u0064",_gd ,*N );_ed ,_adg :=DecodeStream (_gg );if _adg !=nil {return nil ,_adg ; -};_ecd .Log .Trace ("D\u0065\u0063\u006f\u0064\u0065\u0064\u003a\u0020\u0025\u0073",_ed );_gb :=_bg .GetFileOffset ();defer func (){_bg .SetFileOffset (_gb )}();_eg =_fb .NewReader (_ed );_bg ._affd =_ga .NewReader (_eg );_ecd .Log .Trace ("\u0050a\u0072s\u0069\u006e\u0067\u0020\u006ff\u0066\u0073e\u0074\u0020\u006d\u0061\u0070"); -_egd :=map[int ]int64 {};for _ff :=0;_ff < int (*N );_ff ++{_bg .skipSpaces ();_gbf ,_bbc :=_bg .parseNumber ();if _bbc !=nil {return nil ,_bbc ;};_gbb ,_ebeb :=_gbf .(*PdfObjectInteger );if !_ebeb {return nil ,_f .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0073t\u0072e\u0061m\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0074\u0061\u0062\u006c\u0065"); -};_bg .skipSpaces ();_gbf ,_bbc =_bg .parseNumber ();if _bbc !=nil {return nil ,_bbc ;};_dda ,_ebeb :=_gbf .(*PdfObjectInteger );if !_ebeb {return nil ,_f .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0073t\u0072e\u0061m\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0074\u0061\u0062\u006c\u0065"); -};_ecd .Log .Trace ("\u006f\u0062j\u0020\u0025\u0064 \u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0025\u0064",*_gbb ,*_dda );_egd [int (*_gbb )]=int64 (*_ab +*_dda );};_ecf =objectStream {N :int (*N ),_ad :_ed ,_bb :_egd };_bg ._cafa [_agc ]=_ecf ;}else {_aad :=_bg .GetFileOffset (); -defer func (){_bg .SetFileOffset (_aad )}();_eg =_fb .NewReader (_ecf ._ad );_bg ._affd =_ga .NewReader (_eg );};_deg :=_ecf ._bb [_daab ];_ecd .Log .Trace ("\u0041\u0043\u0054\u0055AL\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u005b\u0025\u0064\u005d\u0020\u003d\u0020%\u0064",_daab ,_deg ); -_eg .Seek (_deg ,_ae .SeekStart );_bg ._affd =_ga .NewReader (_eg );_be ,_ :=_bg ._affd .Peek (100);_ecd .Log .Trace ("\u004f\u0042\u004a\u0020\u0070\u0065\u0065\u006b\u0020\u0022\u0025\u0073\u0022",string (_be ));_cec ,_dab :=_bg .parseObject ();if _dab !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0046\u0061\u0069\u006c \u0074\u006f\u0020\u0072\u0065\u0061\u0064 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0028\u0025\u0073\u0029",_dab ); -return nil ,_dab ;};if _cec ==nil {return nil ,_f .New ("o\u0062\u006a\u0065\u0063t \u0063a\u006e\u006e\u006f\u0074\u0020b\u0065\u0020\u006e\u0075\u006c\u006c");};_fga :=PdfIndirectObject {};_fga .ObjectNumber =int64 (_daab );_fga .PdfObject =_cec ;_fga ._ceda =_bg ; -return &_fga ,nil ;};func _fa (_edcc PdfObject )(int64 ,int64 ,error ){if _bee ,_ceb :=_edcc .(*PdfIndirectObject );_ceb {return _bee .ObjectNumber ,_bee .GenerationNumber ,nil ;};if _ebg ,_aaea :=_edcc .(*PdfObjectStream );_aaea {return _ebg .ObjectNumber ,_ebg .GenerationNumber ,nil ; -};return 0,0,_f .New ("\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u002f\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062je\u0063\u0074");}; +// Width and Height defines the image boundaries. +Width ,Height int ; -// ParserMetadata is the parser based metadata information about document. -// The data here could be used on document verification. -type ParserMetadata struct{_dcge int ;_aceg bool ;_aaeg [4]byte ;_bgg bool ;_abb bool ;_gagg bool ;_agd bool ;_fefa bool ;_bad bool ;};var _gddeb =_fc .MustCompile ("\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u0028\u005c\u0064+\u0029\u005c\u0073\u002b\u0028\u005b\u006e\u0066\u005d\u0029\\\u0073\u002a\u0024"); +// Data is the byte slice data for the input image +Data []byte ; +// HasPadding is the attribute that defines if the last byte of the data in the row contains +// 0 bits padding. +HasPadding bool ;};func _bead (_eaca int )int {if _eaca < 0{return -_eaca ;};return _eaca ;}; -// MakeArrayFromIntegers64 creates an PdfObjectArray from a slice of int64s, where each array element -// is an PdfObjectInteger. -func MakeArrayFromIntegers64 (vals []int64 )*PdfObjectArray {_deff :=MakeArray ();for _ ,_gebfd :=range vals {_deff .Append (MakeInteger (_gebfd ));};return _deff ;}; +// IsAuthenticated returns true if the PDF has already been authenticated for accessing. +func (_abgg *PdfParser )IsAuthenticated ()bool {return _abgg ._abae ._dfe }; -// ResolveReferencesDeep recursively traverses through object `o`, looking up and replacing -// references with indirect objects. -// Optionally a map of already deep-resolved objects can be provided via `traversed`. The `traversed` map -// is updated while traversing the objects to avoid traversing same objects multiple times. -func ResolveReferencesDeep (o PdfObject ,traversed map[PdfObject ]struct{})error {if traversed ==nil {traversed =map[PdfObject ]struct{}{};};return _edcg (o ,0,traversed );}; +// GetXrefType returns the type of the first xref object (table or stream). +func (_cdfe *PdfParser )GetXrefType ()*xrefType {return _cdfe ._fddf };func (_dca *PdfParser )rebuildXrefTable ()error {_bcdfg :=XrefTable {};_bcdfg .ObjectMap =map[int ]XrefObject {};_gfdb :=make ([]int ,0,len (_dca ._bbdf .ObjectMap ));for _deec :=range _dca ._bbdf .ObjectMap {_gfdb =append (_gfdb ,_deec ); +};_gg .Ints (_gfdb );for _ ,_caeda :=range _gfdb {_fdcfd :=_dca ._bbdf .ObjectMap [_caeda ];_dffc ,_ ,_dbbbd :=_dca .lookupByNumberWrapper (_caeda ,false );if _dbbbd !=nil {_a .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020U\u006e\u0061\u0062\u006ce t\u006f l\u006f\u006f\u006b\u0020\u0075\u0070\u0020ob\u006a\u0065\u0063\u0074\u0020\u0028\u0025s\u0029",_dbbbd ); +_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0058\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0063\u006fm\u0070\u006c\u0065\u0074\u0065\u006c\u0079\u0020\u0062\u0072\u006f\u006b\u0065\u006e\u0020\u002d\u0020\u0061\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0074\u006f \u0072\u0065\u0070\u0061\u0069r\u0020"); +_bcfgc ,_deefc :=_dca .repairRebuildXrefsTopDown ();if _deefc !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u0072\u0065\u0062\u0075\u0069l\u0064\u0020\u0072\u0065\u0070a\u0069\u0072 \u0028\u0025\u0073\u0029",_deefc ); +return _deefc ;};_dca ._bbdf =*_bcfgc ;_a .Log .Debug ("\u0052e\u0070\u0061\u0069\u0072e\u0064\u0020\u0078\u0072\u0065f\u0020t\u0061b\u006c\u0065\u0020\u0062\u0075\u0069\u006ct");return nil ;};_bbdc ,_afddc ,_dbbbd :=_ecg (_dffc );if _dbbbd !=nil {return _dbbbd ; +};_fdcfd .ObjectNumber =int (_bbdc );_fdcfd .Generation =int (_afddc );_bcdfg .ObjectMap [int (_bbdc )]=_fdcfd ;};_dca ._bbdf =_bcdfg ;_a .Log .Debug ("N\u0065w\u0020\u0078\u0072\u0065\u0066\u0020\u0074\u0061b\u006c\u0065\u0020\u0062ui\u006c\u0074");_ff (_dca ._bbdf ); +return nil ;};func _aceeg (_aeafd ,_aagc PdfObject ,_ccfg int )bool {if _ccfg > _ddfg {_a .Log .Error ("\u0054\u0072ac\u0065\u0020\u0064e\u0070\u0074\u0068\u0020lev\u0065l \u0062\u0065\u0079\u006f\u006e\u0064\u0020%d\u0020\u002d\u0020\u0065\u0072\u0072\u006fr\u0021",_ddfg ); +return false ;};if _aeafd ==nil &&_aagc ==nil {return true ;}else if _aeafd ==nil ||_aagc ==nil {return false ;};if _bc .TypeOf (_aeafd )!=_bc .TypeOf (_aagc ){return false ;};switch _ggegf :=_aeafd .(type ){case *PdfObjectNull ,*PdfObjectReference :return true ; +case *PdfObjectName :return *_ggegf ==*(_aagc .(*PdfObjectName ));case *PdfObjectString :return *_ggegf ==*(_aagc .(*PdfObjectString ));case *PdfObjectInteger :return *_ggegf ==*(_aagc .(*PdfObjectInteger ));case *PdfObjectBool :return *_ggegf ==*(_aagc .(*PdfObjectBool )); +case *PdfObjectFloat :return *_ggegf ==*(_aagc .(*PdfObjectFloat ));case *PdfIndirectObject :return _aceeg (TraceToDirectObject (_aeafd ),TraceToDirectObject (_aagc ),_ccfg +1);case *PdfObjectArray :_fgga :=_aagc .(*PdfObjectArray );if len ((*_ggegf )._fabc )!=len ((*_fgga )._fabc ){return false ; +};for _ccfff ,_bddee :=range (*_ggegf )._fabc {if !_aceeg (_bddee ,(*_fgga )._fabc [_ccfff ],_ccfg +1){return false ;};};return true ;case *PdfObjectDictionary :_bdfaa :=_aagc .(*PdfObjectDictionary );_bbbba ,_dgafd :=(*_ggegf )._adbeb ,(*_bdfaa )._adbeb ; +if len (_bbbba )!=len (_dgafd ){return false ;};for _bbda ,_dcac :=range _bbbba {_ffbf ,_ccfe :=_dgafd [_bbda ];if !_ccfe ||!_aceeg (_dcac ,_ffbf ,_ccfg +1){return false ;};};return true ;case *PdfObjectStream :_ceeed :=_aagc .(*PdfObjectStream );return _aceeg ((*_ggegf ).PdfObjectDictionary ,(*_ceeed ).PdfObjectDictionary ,_ccfg +1); +default:_a .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u0065\u0076\u0065\u0072\u0020\u0068\u0061\u0070\u0070\u0065\u006e\u0021",_aeafd ); +};return false ;};var _bcaf =_c .New ("\u0045\u004f\u0046\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); + +// MakeName creates a PdfObjectName from a string. +func MakeName (s string )*PdfObjectName {_daed :=PdfObjectName (s );return &_daed };func (_cfee *PdfCrypt )encryptBytes (_bfcf []byte ,_gbbd string ,_dbd []byte )([]byte ,error ){_a .Log .Trace ("\u0045\u006e\u0063\u0072\u0079\u0070\u0074\u0020\u0062\u0079\u0074\u0065\u0073"); +_gad ,_fdc :=_cfee ._deg [_gbbd ];if !_fdc {return nil ,_gf .Errorf ("\u0075n\u006b\u006e\u006f\u0077n\u0020\u0063\u0072\u0079\u0070t\u0020f\u0069l\u0074\u0065\u0072\u0020\u0028\u0025\u0073)",_gbbd );};return _gad .EncryptBytes (_bfcf ,_dbd );}; + +// Validate validates the page settings for the JBIG2 encoder. +func (_gadg JBIG2EncoderSettings )Validate ()error {const _cgde ="\u0076a\u006ci\u0064\u0061\u0074\u0065\u0045\u006e\u0063\u006f\u0064\u0065\u0072";if _gadg .Threshold < 0||_gadg .Threshold > 1.0{return _dd .Errorf (_cgde ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0074\u0068\u0072\u0065\u0073\u0068\u006f\u006c\u0064\u0020\u0076a\u006c\u0075\u0065\u003a\u0020\u0027\u0025\u0076\u0027 \u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0069\u006e\u0020\u0072\u0061n\u0067\u0065\u0020\u005b\u0030\u002e0\u002c\u0020\u0031.\u0030\u005d",_gadg .Threshold ); +};if _gadg .ResolutionX < 0{return _dd .Errorf (_cgde ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0078\u0020\u0072\u0065\u0073\u006f\u006c\u0075\u0074\u0069\u006fn\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u0076\u0065 \u006f\u0072\u0020\u007a\u0065\u0072o\u0020\u0076\u0061l\u0075\u0065",_gadg .ResolutionX ); +};if _gadg .ResolutionY < 0{return _dd .Errorf (_cgde ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0079\u0020\u0072\u0065\u0073\u006f\u006c\u0075\u0074\u0069\u006fn\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u0076\u0065 \u006f\u0072\u0020\u007a\u0065\u0072o\u0020\u0076\u0061l\u0075\u0065",_gadg .ResolutionY ); +};if _gadg .DefaultPixelValue !=0&&_gadg .DefaultPixelValue !=1{return _dd .Errorf (_cgde ,"de\u0066\u0061u\u006c\u0074\u0020\u0070\u0069\u0078\u0065\u006c\u0020v\u0061\u006c\u0075\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0066o\u0072 \u0074\u0068\u0065\u0020\u0062\u0069\u0074\u003a \u007b0\u002c\u0031}",_gadg .DefaultPixelValue ); +};if _gadg .Compression !=JB2Generic {return _dd .Errorf (_cgde ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u0063\u006fm\u0070\u0072\u0065\u0073s\u0069\u006f\u006e\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); +};return nil ;}; + +// GetBool returns the *PdfObjectBool object that is represented by a PdfObject directly or indirectly +// within an indirect object. The bool flag indicates whether a match was found. +func GetBool (obj PdfObject )(_fdcf *PdfObjectBool ,_efeb bool ){_fdcf ,_efeb =TraceToDirectObject (obj ).(*PdfObjectBool );return _fdcf ,_efeb ;}; + +// HasEOLAfterHeader gets information if there is a EOL after the version header. +func (_bcb ParserMetadata )HasEOLAfterHeader ()bool {return _bcb ._cgcg }; + +// GetStream returns the *PdfObjectStream represented by the PdfObject. On type mismatch the found bool flag is +// false and a nil pointer is returned. +func GetStream (obj PdfObject )(_efccf *PdfObjectStream ,_bfba bool ){obj =ResolveReference (obj );_efccf ,_bfba =obj .(*PdfObjectStream );return _efccf ,_bfba ;}; // Decrypt an object with specified key. For numbered objects, // the key argument is not used and a new one is generated based @@ -587,1252 +613,1227 @@ func ResolveReferencesDeep (o PdfObject ,traversed map[PdfObject ]struct{})error // Traverses through all the subobjects (recursive). // // Does not look up references.. That should be done prior to calling. -func (_dbbc *PdfCrypt )Decrypt (obj PdfObject ,parentObjNum ,parentGenNum int64 )error {if _dbbc .isDecrypted (obj ){return nil ;};switch _caf :=obj .(type ){case *PdfIndirectObject :_dbbc ._cgb [_caf ]=true ;_ecd .Log .Trace ("\u0044\u0065\u0063\u0072\u0079\u0070\u0074\u0069\u006e\u0067 \u0069\u006e\u0064\u0069\u0072\u0065\u0063t\u0020\u0025\u0064\u0020\u0025\u0064\u0020\u006f\u0062\u006a\u0021",_caf .ObjectNumber ,_caf .GenerationNumber ); -_cda :=_caf .ObjectNumber ;_cbe :=_caf .GenerationNumber ;_ebcc :=_dbbc .Decrypt (_caf .PdfObject ,_cda ,_cbe );if _ebcc !=nil {return _ebcc ;};return nil ;case *PdfObjectStream :_dbbc ._cgb [_caf ]=true ;_gae :=_caf .PdfObjectDictionary ;if _dbbc ._af .R !=5{if _dege ,_eab :=_gae .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); -_eab &&*_dege =="\u0058\u0052\u0065\u0066"{return nil ;};};_bcfe :=_caf .ObjectNumber ;_ddc :=_caf .GenerationNumber ;_ecd .Log .Trace ("\u0044e\u0063\u0072\u0079\u0070t\u0069\u006e\u0067\u0020\u0073t\u0072e\u0061m\u0020\u0025\u0064\u0020\u0025\u0064\u0020!",_bcfe ,_ddc ); -_dccc :=_dbb ;if _dbbc ._dgb .V >=4{_dccc =_dbbc ._gfd ;_ecd .Log .Trace ("\u0074\u0068\u0069\u0073.s\u0074\u0072\u0065\u0061\u006d\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u003d\u0020%\u0073",_dbbc ._gfd );if _cgad ,_afd :=_gae .Get ("\u0046\u0069\u006c\u0074\u0065\u0072").(*PdfObjectArray ); -_afd {if _efdd ,_dcdf :=GetName (_cgad .Get (0));_dcdf {if *_efdd =="\u0043\u0072\u0079p\u0074"{_dccc ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _dgg ,_bcag :=_gae .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073").(*PdfObjectDictionary ); -_bcag {if _gcf ,_agg :=_dgg .Get ("\u004e\u0061\u006d\u0065").(*PdfObjectName );_agg {if _ ,_cabg :=_dbbc ._bgbe [string (*_gcf )];_cabg {_ecd .Log .Trace ("\u0055\u0073\u0069\u006eg \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020%\u0073",*_gcf ); -_dccc =string (*_gcf );};};};};};};_ecd .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_dccc );if _dccc =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};};_cdcc :=_dbbc .Decrypt (_gae ,_bcfe ,_ddc ); -if _cdcc !=nil {return _cdcc ;};_adcd ,_cdcc :=_dbbc .makeKey (_dccc ,uint32 (_bcfe ),uint32 (_ddc ),_dbbc ._fedc );if _cdcc !=nil {return _cdcc ;};_caf .Stream ,_cdcc =_dbbc .decryptBytes (_caf .Stream ,_dccc ,_adcd );if _cdcc !=nil {return _cdcc ;};_gae .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_caf .Stream )))); -return nil ;case *PdfObjectString :_ecd .Log .Trace ("\u0044e\u0063r\u0079\u0070\u0074\u0069\u006eg\u0020\u0073t\u0072\u0069\u006e\u0067\u0021");_ebfe :=_dbb ;if _dbbc ._dgb .V >=4{_ecd .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_dbbc ._ffd ); -if _dbbc ._ffd =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};_ebfe =_dbbc ._ffd ;};_bged ,_cbb :=_dbbc .makeKey (_ebfe ,uint32 (parentObjNum ),uint32 (parentGenNum ),_dbbc ._fedc );if _cbb !=nil {return _cbb ;};_gdf :=_caf .Str (); -_bbd :=make ([]byte ,len (_gdf ));for _cbg :=0;_cbg < len (_gdf );_cbg ++{_bbd [_cbg ]=_gdf [_cbg ];};if len (_bbd )> 0{_ecd .Log .Trace ("\u0044e\u0063\u0072\u0079\u0070\u0074\u0020\u0073\u0074\u0072\u0069\u006eg\u003a\u0020\u0025\u0073\u0020\u003a\u0020\u0025\u0020\u0078",_bbd ,_bbd ); -_bbd ,_cbb =_dbbc .decryptBytes (_bbd ,_ebfe ,_bged );if _cbb !=nil {return _cbb ;};};_caf ._cceg =string (_bbd );return nil ;case *PdfObjectArray :for _ ,_ebed :=range _caf .Elements (){_cea :=_dbbc .Decrypt (_ebed ,parentObjNum ,parentGenNum );if _cea !=nil {return _cea ; -};};return nil ;case *PdfObjectDictionary :_ddb :=false ;if _ecbb :=_caf .Get ("\u0054\u0079\u0070\u0065");_ecbb !=nil {_efga ,_acee :=_ecbb .(*PdfObjectName );if _acee &&*_efga =="\u0053\u0069\u0067"{_ddb =true ;};};for _ ,_eee :=range _caf .Keys (){_bffb :=_caf .Get (_eee ); -if _ddb &&string (_eee )=="\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"{continue ;};if string (_eee )!="\u0050\u0061\u0072\u0065\u006e\u0074"&&string (_eee )!="\u0050\u0072\u0065\u0076"&&string (_eee )!="\u004c\u0061\u0073\u0074"{_faff :=_dbbc .Decrypt (_bffb ,parentObjNum ,parentGenNum ); -if _faff !=nil {return _faff ;};};};return nil ;};return nil ;}; - -// JPXEncoder implements JPX encoder/decoder (dummy, for now) -// FIXME: implement -type JPXEncoder struct{}; +func (_effa *PdfCrypt )Decrypt (obj PdfObject ,parentObjNum ,parentGenNum int64 )error {if _effa .isDecrypted (obj ){return nil ;};switch _gabf :=obj .(type ){case *PdfIndirectObject :_effa ._ecee [_gabf ]=true ;_a .Log .Trace ("\u0044\u0065\u0063\u0072\u0079\u0070\u0074\u0069\u006e\u0067 \u0069\u006e\u0064\u0069\u0072\u0065\u0063t\u0020\u0025\u0064\u0020\u0025\u0064\u0020\u006f\u0062\u006a\u0021",_gabf .ObjectNumber ,_gabf .GenerationNumber ); +_bac :=_gabf .ObjectNumber ;_gfb :=_gabf .GenerationNumber ;_cbcd :=_effa .Decrypt (_gabf .PdfObject ,_bac ,_gfb );if _cbcd !=nil {return _cbcd ;};return nil ;case *PdfObjectStream :_effa ._ecee [_gabf ]=true ;_dce :=_gabf .PdfObjectDictionary ;if _effa ._aec .R !=5{if _ccdb ,_dec :=_dce .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); +_dec &&*_ccdb =="\u0058\u0052\u0065\u0066"{return nil ;};};_addd :=_gabf .ObjectNumber ;_aaba :=_gabf .GenerationNumber ;_a .Log .Trace ("\u0044e\u0063\u0072\u0079\u0070t\u0069\u006e\u0067\u0020\u0073t\u0072e\u0061m\u0020\u0025\u0064\u0020\u0025\u0064\u0020!",_addd ,_aaba ); +_bfge :=_edg ;if _effa ._ceae .V >=4{_bfge =_effa ._abdf ;_a .Log .Trace ("\u0074\u0068\u0069\u0073.s\u0074\u0072\u0065\u0061\u006d\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u003d\u0020%\u0073",_effa ._abdf );if _efa ,_abdb :=_dce .Get ("\u0046\u0069\u006c\u0074\u0065\u0072").(*PdfObjectArray ); +_abdb {if _ged ,_ede :=GetName (_efa .Get (0));_ede {if *_ged =="\u0043\u0072\u0079p\u0074"{_bfge ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _abdc ,_cdc :=_dce .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073").(*PdfObjectDictionary ); +_cdc {if _cdde ,_cdgb :=_abdc .Get ("\u004e\u0061\u006d\u0065").(*PdfObjectName );_cdgb {if _ ,_eefa :=_effa ._deg [string (*_cdde )];_eefa {_a .Log .Trace ("\u0055\u0073\u0069\u006eg \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020%\u0073",*_cdde ); +_bfge =string (*_cdde );};};};};};};_a .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_bfge );if _bfge =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};};_gfaf :=_effa .Decrypt (_dce ,_addd ,_aaba ); +if _gfaf !=nil {return _gfaf ;};_edff ,_gfaf :=_effa .makeKey (_bfge ,uint32 (_addd ),uint32 (_aaba ),_effa ._baa );if _gfaf !=nil {return _gfaf ;};_gabf .Stream ,_gfaf =_effa .decryptBytes (_gabf .Stream ,_bfge ,_edff );if _gfaf !=nil {return _gfaf ;}; +_dce .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_gabf .Stream ))));return nil ;case *PdfObjectString :_a .Log .Trace ("\u0044e\u0063r\u0079\u0070\u0074\u0069\u006eg\u0020\u0073t\u0072\u0069\u006e\u0067\u0021");_cbd :=_edg ;if _effa ._ceae .V >=4{_a .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_effa ._dfb ); +if _effa ._dfb =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};_cbd =_effa ._dfb ;};_gc ,_agde :=_effa .makeKey (_cbd ,uint32 (parentObjNum ),uint32 (parentGenNum ),_effa ._baa );if _agde !=nil {return _agde ;};_eeg :=_gabf .Str ();_cbfc :=make ([]byte ,len (_eeg )); +for _gggbb :=0;_gggbb < len (_eeg );_gggbb ++{_cbfc [_gggbb ]=_eeg [_gggbb ];};if len (_cbfc )> 0{_a .Log .Trace ("\u0044e\u0063\u0072\u0079\u0070\u0074\u0020\u0073\u0074\u0072\u0069\u006eg\u003a\u0020\u0025\u0073\u0020\u003a\u0020\u0025\u0020\u0078",_cbfc ,_cbfc ); +_cbfc ,_agde =_effa .decryptBytes (_cbfc ,_cbd ,_gc );if _agde !=nil {return _agde ;};};_gabf ._aaca =string (_cbfc );return nil ;case *PdfObjectArray :for _ ,_cfe :=range _gabf .Elements (){_eeea :=_effa .Decrypt (_cfe ,parentObjNum ,parentGenNum );if _eeea !=nil {return _eeea ; +};};return nil ;case *PdfObjectDictionary :_bbfa :=false ;if _cfdb :=_gabf .Get ("\u0054\u0079\u0070\u0065");_cfdb !=nil {_aebd ,_fce :=_cfdb .(*PdfObjectName );if _fce &&*_aebd =="\u0053\u0069\u0067"{_bbfa =true ;};};for _ ,_aeda :=range _gabf .Keys (){_feeg :=_gabf .Get (_aeda ); +if _bbfa &&string (_aeda )=="\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"{continue ;};if string (_aeda )!="\u0050\u0061\u0072\u0065\u006e\u0074"&&string (_aeda )!="\u0050\u0072\u0065\u0076"&&string (_aeda )!="\u004c\u0061\u0073\u0074"{_cgc :=_effa .Decrypt (_feeg ,parentObjNum ,parentGenNum ); +if _cgc !=nil {return _cgc ;};};};return nil ;};return nil ;}; -// NewRawEncoder returns a new instace of RawEncoder. -func NewRawEncoder ()*RawEncoder {return &RawEncoder {}}; +// NewASCII85Encoder makes a new ASCII85 encoder. +func NewASCII85Encoder ()*ASCII85Encoder {_ebbca :=&ASCII85Encoder {};return _ebbca }; -// GetArray returns the *PdfObjectArray represented by the PdfObject directly or indirectly within an indirect -// object. On type mismatch the found bool flag is false and a nil pointer is returned. -func GetArray (obj PdfObject )(_bdac *PdfObjectArray ,_fffac bool ){_bdac ,_fffac =TraceToDirectObject (obj ).(*PdfObjectArray );return _bdac ,_fffac ;}; +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_ceba *CCITTFaxEncoder )MakeDecodeParams ()PdfObject {_bcge :=MakeDict ();_bcge .Set ("\u004b",MakeInteger (int64 (_ceba .K )));_bcge .Set ("\u0043o\u006c\u0075\u006d\u006e\u0073",MakeInteger (int64 (_ceba .Columns )));if _ceba .BlackIs1 {_bcge .Set ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031",MakeBool (_ceba .BlackIs1 )); +};if _ceba .EncodedByteAlign {_bcge .Set ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e",MakeBool (_ceba .EncodedByteAlign ));};if _ceba .EndOfLine &&_ceba .K >=0{_bcge .Set ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee",MakeBool (_ceba .EndOfLine )); +};if _ceba .Rows !=0&&!_ceba .EndOfBlock {_bcge .Set ("\u0052\u006f\u0077\u0073",MakeInteger (int64 (_ceba .Rows )));};if !_ceba .EndOfBlock {_bcge .Set ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b",MakeBool (_ceba .EndOfBlock ));};if _ceba .DamagedRowsBeforeError !=0{_bcge .Set ("\u0044\u0061\u006d\u0061ge\u0064\u0052\u006f\u0077\u0073\u0042\u0065\u0066\u006f\u0072\u0065\u0045\u0072\u0072o\u0072",MakeInteger (int64 (_ceba .DamagedRowsBeforeError ))); +};return _bcge ;}; -// String returns the PDF version as a string. Implements interface fmt.Stringer. -func (_bcbd Version )String ()string {return _daa .Sprintf ("\u00250\u0064\u002e\u0025\u0030\u0064",_bcbd .Major ,_bcbd .Minor );}; +// DecodeBytes decodes a slice of JBIG2 encoded bytes and returns the results. +func (_ggfd *JBIG2Encoder )DecodeBytes (encoded []byte )([]byte ,error ){return _fb .DecodeBytes (encoded ,_eg .Parameters {},_ggfd .Globals );}; // GetFilterName returns the name of the encoding filter. -func (_cbge *ASCIIHexEncoder )GetFilterName ()string {return StreamEncodingFilterNameASCIIHex }; +func (_geddb *DCTEncoder )GetFilterName ()string {return StreamEncodingFilterNameDCT }; -// DecodeBytes decodes a slice of LZW encoded bytes and returns the result. -func (_aaef *LZWEncoder )DecodeBytes (encoded []byte )([]byte ,error ){var _bffa _fb .Buffer ;_gac :=_fb .NewReader (encoded );var _ffaa _ae .ReadCloser ;if _aaef .EarlyChange ==1{_ffaa =_daf .NewReader (_gac ,_daf .MSB ,8);}else {_ffaa =_fd .NewReader (_gac ,_fd .MSB ,8); -};defer _ffaa .Close ();if _ ,_dccf :=_bffa .ReadFrom (_ffaa );_dccf !=nil {if _dccf !=_ae .ErrUnexpectedEOF ||_bffa .Len ()==0{return nil ,_dccf ;};_ecd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u004c\u005a\u0057\u0020\u0064\u0065\u0063\u006f\u0064i\u006e\u0067\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076\u002e \u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062e \u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e",_dccf ); -};return _bffa .Bytes (),nil ;}; +// DecodeBytes decodes a slice of JPX encoded bytes and returns the result. +func (_acbf *JPXEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0041t\u0074\u0065\u006dpt\u0069\u006e\u0067\u0020\u0074\u006f \u0075\u0073\u0065\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0073",_acbf .GetFilterName ()); +return encoded ,ErrNoJPXDecode ;};func (_fbca *PdfParser )checkLinearizedInformation (_ccbf *PdfObjectDictionary )(bool ,error ){var _gegg error ;_fbca ._baac ,_gegg =GetNumberAsInt64 (_ccbf .Get ("\u004c"));if _gegg !=nil {return false ,_gegg ;};_gegg =_fbca .seekToEOFMarker (_fbca ._baac ); +switch _gegg {case nil :return true ,nil ;case _bcaf :return false ,nil ;default:return false ,_gegg ;};}; -// IsAuthenticated returns true if the PDF has already been authenticated for accessing. -func (_gcdg *PdfParser )IsAuthenticated ()bool {return _gcdg ._geaef ._bag }; +// UpdateParams updates the parameter values of the encoder. +func (_dgf *ASCII85Encoder )UpdateParams (params *PdfObjectDictionary ){}; -// Resolve resolves the reference and returns the indirect or stream object. -// If the reference cannot be resolved, a *PdfObjectNull object is returned. -func (_adeeb *PdfObjectReference )Resolve ()PdfObject {if _adeeb ._ceda ==nil {return MakeNull ();};_babg ,_ ,_afdd :=_adeeb ._ceda .resolveReference (_adeeb );if _afdd !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0072\u0065\u0073\u006f\u006cv\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065r\u0065n\u0063\u0065\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067 \u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006a\u0065\u0063\u0074",_afdd ); -return MakeNull ();};if _babg ==nil {_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0072\u0065\u0073ol\u0076\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065:\u0020\u006ei\u006c\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u002d\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067 \u0061\u0020nu\u006c\u006c\u0020o\u0062\u006a\u0065\u0063\u0074"); -return MakeNull ();};return _babg ;};func _ceca (_ega *_fg .StdEncryptDict ,_degd *PdfObjectDictionary )error {R ,_egf :=_degd .Get ("\u0052").(*PdfObjectInteger );if !_egf {return _f .New ("\u0065\u006e\u0063\u0072y\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006eg\u0020\u0052"); -};if *R < 2||*R > 6{return _daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0052 \u0028\u0025\u0064\u0029",*R );};_ega .R =int (*R );O ,_egf :=_degd .GetString ("\u004f");if !_egf {return _f .New ("\u0065\u006e\u0063\u0072y\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006eg\u0020\u004f"); -};if _ega .R ==5||_ega .R ==6{if len (O )< 48{return _daa .Errorf ("\u004c\u0065\u006e\u0067th\u0028\u004f\u0029\u0020\u003c\u0020\u0034\u0038\u0020\u0028\u0025\u0064\u0029",len (O ));};}else if len (O )!=32{return _daa .Errorf ("L\u0065n\u0067\u0074\u0068\u0028\u004f\u0029\u0020\u0021=\u0020\u0033\u0032\u0020(%\u0064\u0029",len (O )); -};_ega .O =[]byte (O );U ,_egf :=_degd .GetString ("\u0055");if !_egf {return _f .New ("\u0065\u006e\u0063\u0072y\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006eg\u0020\u0055");};if _ega .R ==5||_ega .R ==6{if len (U )< 48{return _daa .Errorf ("\u004c\u0065\u006e\u0067th\u0028\u0055\u0029\u0020\u003c\u0020\u0034\u0038\u0020\u0028\u0025\u0064\u0029",len (U )); -};}else if len (U )!=32{_ecd .Log .Debug ("\u0057\u0061r\u006e\u0069\u006e\u0067\u003a\u0020\u004c\u0065\u006e\u0067\u0074\u0068\u0028\u0055\u0029\u0020\u0021\u003d\u0020\u0033\u0032\u0020(%\u0064\u0029",len (U ));};_ega .U =[]byte (U );if _ega .R >=5{OE ,_fad :=_degd .GetString ("\u004f\u0045"); -if !_fad {return _f .New ("\u0065\u006ec\u0072\u0079\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006eg \u004f\u0045");}else if len (OE )!=32{return _daa .Errorf ("L\u0065\u006e\u0067\u0074h(\u004fE\u0029\u0020\u0021\u003d\u00203\u0032\u0020\u0028\u0025\u0064\u0029",len (OE )); -};_ega .OE =[]byte (OE );UE ,_fad :=_degd .GetString ("\u0055\u0045");if !_fad {return _f .New ("\u0065\u006ec\u0072\u0079\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006eg \u0055\u0045"); -}else if len (UE )!=32{return _daa .Errorf ("L\u0065\u006e\u0067\u0074h(\u0055E\u0029\u0020\u0021\u003d\u00203\u0032\u0020\u0028\u0025\u0064\u0029",len (UE ));};_ega .UE =[]byte (UE );};P ,_egf :=_degd .Get ("\u0050").(*PdfObjectInteger );if !_egf {return _f .New ("\u0065\u006e\u0063\u0072\u0079\u0070\u0074 \u0064\u0069\u0063t\u0069\u006f\u006e\u0061r\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0070\u0065\u0072\u006d\u0069\u0073\u0073\u0069\u006f\u006e\u0073\u0020\u0061\u0074\u0074\u0072"); -};_ega .P =_fg .Permissions (*P );if _ega .R ==6{Perms ,_ecff :=_degd .GetString ("\u0050\u0065\u0072m\u0073");if !_ecff {return _f .New ("\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0050\u0065\u0072\u006d\u0073"); -}else if len (Perms )!=16{return _daa .Errorf ("\u004ce\u006e\u0067\u0074\u0068\u0028\u0050\u0065\u0072\u006d\u0073\u0029 \u0021\u003d\u0020\u0031\u0036\u0020\u0028\u0025\u0064\u0029",len (Perms ));};_ega .Perms =[]byte (Perms );};if _fdg ,_dacda :=_degd .Get ("\u0045n\u0063r\u0079\u0070\u0074\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061").(*PdfObjectBool ); -_dacda {_ega .EncryptMetadata =bool (*_fdg );}else {_ega .EncryptMetadata =true ;};return nil ;}; +// DecodeStream decodes a LZW encoded stream and returns the result as a +// slice of bytes. +func (_accf *LZWEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_a .Log .Trace ("\u004c\u005a\u0057 \u0044\u0065\u0063\u006f\u0064\u0069\u006e\u0067");_a .Log .Trace ("\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",_accf .Predictor ); +_dbc ,_aagf :=_accf .DecodeBytes (streamObj .Stream );if _aagf !=nil {return nil ,_aagf ;};_a .Log .Trace ("\u0020\u0049\u004e\u003a\u0020\u0028\u0025\u0064\u0029\u0020\u0025\u0020\u0078",len (streamObj .Stream ),streamObj .Stream );_a .Log .Trace ("\u004f\u0055\u0054\u003a\u0020\u0028\u0025\u0064\u0029\u0020\u0025\u0020\u0078",len (_dbc ),_dbc ); +if _accf .Predictor > 1{if _accf .Predictor ==2{_a .Log .Trace ("\u0054\u0069\u0066\u0066\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067");_bced :=_accf .Columns *_accf .Colors ;if _bced < 1{return []byte {},nil ;};_cgdb :=len (_dbc )/_bced ;if len (_dbc )%_bced !=0{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020T\u0049\u0046\u0046 \u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002e\u002e\u002e"); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_dbc ),_bced );};if _bced %_accf .Colors !=0{return nil ,_gf .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0072\u006fw\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020(\u0025\u0064\u0029\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u006c\u006fr\u0073\u0020\u0025\u0064",_bced ,_accf .Colors ); +};if _bced > len (_dbc ){_a .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_bced ,len (_dbc )); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_a .Log .Trace ("i\u006e\u0070\u0020\u006fut\u0044a\u0074\u0061\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (_dbc ),_dbc ); +_feee :=_fd .NewBuffer (nil );for _gce :=0;_gce < _cgdb ;_gce ++{_eagc :=_dbc [_bced *_gce :_bced *(_gce +1)];for _acfb :=_accf .Colors ;_acfb < _bced ;_acfb ++{_eagc [_acfb ]=byte (int (_eagc [_acfb ]+_eagc [_acfb -_accf .Colors ])%256);};_feee .Write (_eagc ); +};_edgb :=_feee .Bytes ();_a .Log .Trace ("\u0050O\u0075t\u0044\u0061\u0074\u0061\u0020(\u0025\u0064)\u003a\u0020\u0025\u0020\u0078",len (_edgb ),_edgb );return _edgb ,nil ;}else if _accf .Predictor >=10&&_accf .Predictor <=15{_a .Log .Trace ("\u0050\u004e\u0047 \u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +_cca :=_accf .Columns *_accf .Colors +1;if _cca < 1{return []byte {},nil ;};_aae :=len (_dbc )/_cca ;if len (_dbc )%_cca !=0{return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_dbc ),_cca ); +};if _cca > len (_dbc ){_a .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_cca ,len (_dbc )); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_gcdg :=_fd .NewBuffer (nil );_a .Log .Trace ("P\u0072\u0065\u0064\u0069ct\u006fr\u0020\u0063\u006f\u006c\u0075m\u006e\u0073\u003a\u0020\u0025\u0064",_accf .Columns ); +_a .Log .Trace ("\u004ce\u006e\u0067\u0074\u0068:\u0020\u0025\u0064\u0020\u002f \u0025d\u0020=\u0020\u0025\u0064\u0020\u0072\u006f\u0077s",len (_dbc ),_cca ,_aae );_bdbe :=make ([]byte ,_cca );for _ecf :=0;_ecf < _cca ;_ecf ++{_bdbe [_ecf ]=0;};for _fbe :=0; +_fbe < _aae ;_fbe ++{_dac :=_dbc [_cca *_fbe :_cca *(_fbe +1)];_adff :=_dac [0];switch _adff {case 0:case 1:for _ebgb :=2;_ebgb < _cca ;_ebgb ++{_dac [_ebgb ]=byte (int (_dac [_ebgb ]+_dac [_ebgb -1])%256);};case 2:for _eedff :=1;_eedff < _cca ;_eedff ++{_dac [_eedff ]=byte (int (_dac [_eedff ]+_bdbe [_eedff ])%256); +};default:_a .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0066i\u006c\u0074\u0065\u0072\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029",_adff );return nil ,_gf .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0066\u0069\u006c\u0074\u0065r\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029",_adff ); +};for _efgf :=0;_efgf < _cca ;_efgf ++{_bdbe [_efgf ]=_dac [_efgf ];};_gcdg .Write (_dac [1:]);};_bge :=_gcdg .Bytes ();return _bge ,nil ;}else {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072 \u0028\u0025\u0064\u0029",_accf .Predictor ); +return nil ,_gf .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0070\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020(\u0025\u0064\u0029",_accf .Predictor );};};return _dbc ,nil ;}; -// NewDCTEncoder makes a new DCT encoder with default parameters. -func NewDCTEncoder ()*DCTEncoder {_cgc :=&DCTEncoder {};_cgc .ColorComponents =3;_cgc .BitsPerComponent =8;_cgc .Quality =DefaultJPEGQuality ;_cgc .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};return _cgc ;}; +// EncodeBytes JPX encodes the passed in slice of bytes. +func (_abeg *JPXEncoder )EncodeBytes (data []byte )([]byte ,error ){_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0041t\u0074\u0065\u006dpt\u0069\u006e\u0067\u0020\u0074\u006f \u0075\u0073\u0065\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0073",_abeg .GetFilterName ()); +return data ,ErrNoJPXDecode ;}; -// PdfCryptNewEncrypt makes the document crypt handler based on a specified crypt filter. -func PdfCryptNewEncrypt (cf _bc .Filter ,userPass ,ownerPass []byte ,perm _fg .Permissions )(*PdfCrypt ,*EncryptInfo ,error ){_dff :=&PdfCrypt {_ggf :make (map[PdfObject ]bool ),_bgbe :make (cryptFilters ),_af :_fg .StdEncryptDict {P :perm ,EncryptMetadata :true }}; -var _ccf Version ;if cf !=nil {_edf :=cf .PDFVersion ();_ccf .Major ,_ccf .Minor =_edf [0],_edf [1];V ,R :=cf .HandlerVersion ();_dff ._dgb .V =V ;_dff ._af .R =R ;_dff ._dgb .Length =cf .KeyLength ()*8;};const (_gf =_dbb ;);_dff ._bgbe [_gf ]=cf ;if _dff ._dgb .V >=4{_dff ._gfd =_gf ; -_dff ._ffd =_gf ;};_cfb :=_dff .newEncryptDict ();_baf :=_fe .Sum ([]byte (_g .Now ().Format (_g .RFC850 )));_ggg :=string (_baf [:]);_eged :=make ([]byte ,100);_aa .Read (_eged );_baf =_fe .Sum (_eged );_cdf :=string (_baf [:]);_ecd .Log .Trace ("\u0052\u0061\u006e\u0064\u006f\u006d\u0020\u0062\u003a\u0020\u0025\u0020\u0078",_eged ); -_ecd .Log .Trace ("\u0047\u0065\u006e\u0020\u0049\u0064\u0020\u0030\u003a\u0020\u0025\u0020\u0078",_ggg );_dff ._gda =_ggg ;_bcac :=_dff .generateParams (userPass ,ownerPass );if _bcac !=nil {return nil ,nil ,_bcac ;};_dbc (&_dff ._af ,_cfb );if _dff ._dgb .V >=4{if _ca :=_dff .saveCryptFilters (_cfb ); -_ca !=nil {return nil ,nil ,_ca ;};};return _dff ,&EncryptInfo {Version :_ccf ,Encrypt :_cfb ,ID0 :_ggg ,ID1 :_cdf },nil ;};func (_badb *PdfParser )parseString ()(*PdfObjectString ,error ){_badb ._affd .ReadByte ();var _fdgfag _fb .Buffer ;_agfaa :=1;for {_ecbe ,_ebcgg :=_badb ._affd .Peek (1); -if _ebcgg !=nil {return MakeString (_fdgfag .String ()),_ebcgg ;};if _ecbe [0]=='\\'{_badb ._affd .ReadByte ();_cfcc ,_babc :=_badb ._affd .ReadByte ();if _babc !=nil {return MakeString (_fdgfag .String ()),_babc ;};if IsOctalDigit (_cfcc ){_bfbg ,_bede :=_badb ._affd .Peek (2); -if _bede !=nil {return MakeString (_fdgfag .String ()),_bede ;};var _fged []byte ;_fged =append (_fged ,_cfcc );for _ ,_dfcac :=range _bfbg {if IsOctalDigit (_dfcac ){_fged =append (_fged ,_dfcac );}else {break ;};};_badb ._affd .Discard (len (_fged )-1); -_ecd .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_fged );_dcaa ,_bede :=_bf .ParseUint (string (_fged ),8,32);if _bede !=nil {return MakeString (_fdgfag .String ()),_bede ;};_fdgfag .WriteByte (byte (_dcaa )); -continue ;};switch _cfcc {case 'n':_fdgfag .WriteRune ('\n');case 'r':_fdgfag .WriteRune ('\r');case 't':_fdgfag .WriteRune ('\t');case 'b':_fdgfag .WriteRune ('\b');case 'f':_fdgfag .WriteRune ('\f');case '(':_fdgfag .WriteRune ('(');case ')':_fdgfag .WriteRune (')'); -case '\\':_fdgfag .WriteRune ('\\');};continue ;}else if _ecbe [0]=='('{_agfaa ++;}else if _ecbe [0]==')'{_agfaa --;if _agfaa ==0{_badb ._affd .ReadByte ();break ;};};_fddd ,_ :=_badb ._affd .ReadByte ();_fdgfag .WriteByte (_fddd );};return MakeString (_fdgfag .String ()),nil ; -};func _dcgag (_gbec uint ,_dcff ,_accf float64 )float64 {return (_dcff +(float64 (_gbec )*(_accf -_dcff )/255))*255;};func (_ace *PdfCrypt )newEncryptDict ()*PdfObjectDictionary {_dcg :=MakeDict ();_dcg .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName ("\u0053\u0074\u0061\u006e\u0064\u0061\u0072\u0064")); -_dcg .Set ("\u0056",MakeInteger (int64 (_ace ._dgb .V )));_dcg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (_ace ._dgb .Length )));return _dcg ;}; +// DecodeBytes decodes a multi-encoded slice of bytes by passing it through the +// DecodeBytes method of the underlying encoders. +func (_bgd *MultiEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_bdfa :=encoded ;var _bbca error ;for _ ,_geef :=range _bgd ._bdfb {_a .Log .Trace ("\u004du\u006c\u0074i\u0020\u0045\u006e\u0063o\u0064\u0065\u0072 \u0044\u0065\u0063\u006f\u0064\u0065\u003a\u0020\u0041pp\u006c\u0079\u0069n\u0067\u0020F\u0069\u006c\u0074\u0065\u0072\u003a \u0025\u0076 \u0025\u0054",_geef ,_geef ); +_bdfa ,_bbca =_geef .DecodeBytes (_bdfa );if _bbca !=nil {return nil ,_bbca ;};};return _bdfa ,nil ;}; -// AddEncoder adds the passed in encoder to the underlying encoder slice. -func (_feba *MultiEncoder )AddEncoder (encoder StreamEncoder ){_feba ._degb =append (_feba ._degb ,encoder );};func (_eae *FlateEncoder )postDecodePredict (_bgcf []byte )([]byte ,error ){if _eae .Predictor > 1{if _eae .Predictor ==2{_ecd .Log .Trace ("\u0054\u0069\u0066\u0066\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -_ecd .Log .Trace ("\u0043\u006f\u006c\u006f\u0072\u0073\u003a\u0020\u0025\u0064",_eae .Colors );_fde :=_eae .Columns *_eae .Colors ;if _fde < 1{return []byte {},nil ;};_efbe :=len (_bgcf )/_fde ;if len (_bgcf )%_fde !=0{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020T\u0049\u0046\u0046 \u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002e\u002e\u002e"); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_bgcf ),_fde );};if _fde %_eae .Colors !=0{return nil ,_daa .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0072\u006fw\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020(\u0025\u0064\u0029\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u006c\u006fr\u0073\u0020\u0025\u0064",_fde ,_eae .Colors ); -};if _fde > len (_bgcf ){_ecd .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_fde ,len (_bgcf )); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_ecd .Log .Trace ("i\u006e\u0070\u0020\u006fut\u0044a\u0074\u0061\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (_bgcf ),_bgcf ); -_fcad :=_fb .NewBuffer (nil );for _dfbd :=0;_dfbd < _efbe ;_dfbd ++{_acb :=_bgcf [_fde *_dfbd :_fde *(_dfbd +1)];for _bbda :=_eae .Colors ;_bbda < _fde ;_bbda ++{_acb [_bbda ]+=_acb [_bbda -_eae .Colors ];};_fcad .Write (_acb );};_faga :=_fcad .Bytes (); -_ecd .Log .Trace ("\u0050O\u0075t\u0044\u0061\u0074\u0061\u0020(\u0025\u0064)\u003a\u0020\u0025\u0020\u0078",len (_faga ),_faga );return _faga ,nil ;}else if _eae .Predictor >=10&&_eae .Predictor <=15{_ecd .Log .Trace ("\u0050\u004e\u0047 \u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -_aegfb :=_eae .Columns *_eae .Colors +1;_ccbf :=len (_bgcf )/_aegfb ;if len (_bgcf )%_aegfb !=0{return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_bgcf ),_aegfb ); -};if _aegfb > len (_bgcf ){_ecd .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_aegfb ,len (_bgcf )); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_bfcg :=_fb .NewBuffer (nil );_ecd .Log .Trace ("P\u0072\u0065\u0064\u0069ct\u006fr\u0020\u0063\u006f\u006c\u0075m\u006e\u0073\u003a\u0020\u0025\u0064",_eae .Columns ); -_ecd .Log .Trace ("\u004ce\u006e\u0067\u0074\u0068:\u0020\u0025\u0064\u0020\u002f \u0025d\u0020=\u0020\u0025\u0064\u0020\u0072\u006f\u0077s",len (_bgcf ),_aegfb ,_ccbf );_geec :=make ([]byte ,_aegfb );for _decd :=0;_decd < _aegfb ;_decd ++{_geec [_decd ]=0; -};_ged :=_eae .Colors ;for _deed :=0;_deed < _ccbf ;_deed ++{_cbgg :=_bgcf [_aegfb *_deed :_aegfb *(_deed +1)];_fffb :=_cbgg [0];switch _fffb {case _gdfb :case _gbe :for _aggb :=1+_ged ;_aggb < _aegfb ;_aggb ++{_cbgg [_aggb ]+=_cbgg [_aggb -_ged ];};case _gcff :for _eece :=1; -_eece < _aegfb ;_eece ++{_cbgg [_eece ]+=_geec [_eece ];};case _fbegd :for _fcada :=1;_fcada < _ged +1;_fcada ++{_cbgg [_fcada ]+=_geec [_fcada ]/2;};for _cgee :=_ged +1;_cgee < _aegfb ;_cgee ++{_cbgg [_cgee ]+=byte ((int (_cbgg [_cgee -_ged ])+int (_geec [_cgee ]))/2); -};case _fcc :for _cdgf :=1;_cdgf < _aegfb ;_cdgf ++{var _cbfa ,_eeff ,_abc byte ;_eeff =_geec [_cdgf ];if _cdgf >=_ged +1{_cbfa =_cbgg [_cdgf -_ged ];_abc =_geec [_cdgf -_ged ];};_cbgg [_cdgf ]+=_geddc (_cbfa ,_eeff ,_abc );};default:_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0066\u0069\u006c\u0074\u0065r\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029\u0020\u0040\u0072o\u0077\u0020\u0025\u0064",_fffb ,_deed ); -return nil ,_daa .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0066\u0069\u006c\u0074\u0065r\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029",_fffb );};copy (_geec ,_cbgg );_bfcg .Write (_cbgg [1:]);};_fcd :=_bfcg .Bytes ();return _fcd ,nil ; -}else {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072 \u0028\u0025\u0064\u0029",_eae .Predictor );return nil ,_daa .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0070\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020(\u0025\u0064\u0029",_eae .Predictor ); -};};return _bgcf ,nil ;}; +// NewParser creates a new parser for a PDF file via ReadSeeker. Loads the cross reference stream and trailer. +// An error is returned on failure. +func NewParser (rs _fg .ReadSeeker )(*PdfParser ,error ){_ebfgd :=&PdfParser {_dfcdg :rs ,ObjCache :make (objectCache ),_ffed :map[int64 ]bool {},_fbaae :make ([]int64 ,0),_beaf :make (map[*PdfParser ]*PdfParser )};_gaabe ,_dgbaf ,_cba :=_ebfgd .parsePdfVersion (); +if _cba !=nil {_a .Log .Error ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0076e\u0072\u0073\u0069o\u006e:\u0020\u0025\u0076",_cba );return nil ,_cba ;};_ebfgd ._eebec .Major =_gaabe ;_ebfgd ._eebec .Minor =_dgbaf ; +if _ebfgd ._dabde ,_cba =_ebfgd .loadXrefs ();_cba !=nil {_a .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020F\u0061\u0069\u006c\u0065d t\u006f l\u006f\u0061\u0064\u0020\u0078\u0072\u0065f \u0074\u0061\u0062\u006c\u0065\u0021\u0020%\u0073",_cba );return nil ,_cba ; +};_a .Log .Trace ("T\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0073",_ebfgd ._dabde );_bddg ,_cba :=_ebfgd .parseLinearizedDictionary ();if _cba !=nil {return nil ,_cba ;};if _bddg !=nil {_ebfgd ._dgcba ,_cba =_ebfgd .checkLinearizedInformation (_bddg ); +if _cba !=nil {return nil ,_cba ;};};if len (_ebfgd ._bbdf .ObjectMap )==0{return nil ,_gf .Errorf ("\u0065\u006d\u0070\u0074\u0079\u0020\u0058\u0052\u0045\u0046\u0020t\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0049\u006e\u0076a\u006c\u0069\u0064");}; +_ebfgd ._efce =len (_ebfgd ._fbaae );if _ebfgd ._dgcba &&_ebfgd ._efce !=0{_ebfgd ._efce --;};_ebfgd ._gfdfd =make ([]*PdfParser ,_ebfgd ._efce );return _ebfgd ,nil ;}; -// Encrypt an object with specified key. For numbered objects, -// the key argument is not used and a new one is generated based -// on the object and generation number. -// Traverses through all the subobjects (recursive). -// -// Does not look up references.. That should be done prior to calling. -func (_fbe *PdfCrypt )Encrypt (obj PdfObject ,parentObjNum ,parentGenNum int64 )error {if _fbe .isEncrypted (obj ){return nil ;};switch _dbbg :=obj .(type ){case *PdfIndirectObject :_fbe ._ggf [_dbbg ]=true ;_ecd .Log .Trace ("\u0045\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006e\u0067 \u0069\u006e\u0064\u0069\u0072\u0065\u0063t\u0020\u0025\u0064\u0020\u0025\u0064\u0020\u006f\u0062\u006a\u0021",_dbbg .ObjectNumber ,_dbbg .GenerationNumber ); -_eef :=_dbbg .ObjectNumber ;_gdba :=_dbbg .GenerationNumber ;_aegc :=_fbe .Encrypt (_dbbg .PdfObject ,_eef ,_gdba );if _aegc !=nil {return _aegc ;};return nil ;case *PdfObjectStream :_fbe ._ggf [_dbbg ]=true ;_fafd :=_dbbg .PdfObjectDictionary ;if _ddaa ,_ddf :=_fafd .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); -_ddf &&*_ddaa =="\u0058\u0052\u0065\u0066"{return nil ;};_cbf :=_dbbg .ObjectNumber ;_becgc :=_dbbg .GenerationNumber ;_ecd .Log .Trace ("\u0045n\u0063\u0072\u0079\u0070t\u0069\u006e\u0067\u0020\u0073t\u0072e\u0061m\u0020\u0025\u0064\u0020\u0025\u0064\u0020!",_cbf ,_becgc ); -_gbdd :=_dbb ;if _fbe ._dgb .V >=4{_gbdd =_fbe ._gfd ;_ecd .Log .Trace ("\u0074\u0068\u0069\u0073.s\u0074\u0072\u0065\u0061\u006d\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u003d\u0020%\u0073",_fbe ._gfd );if _gag ,_gcbg :=_fafd .Get ("\u0046\u0069\u006c\u0074\u0065\u0072").(*PdfObjectArray ); -_gcbg {if _cdgd ,_faaf :=GetName (_gag .Get (0));_faaf {if *_cdgd =="\u0043\u0072\u0079p\u0074"{_gbdd ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _dbf ,_efb :=_fafd .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073").(*PdfObjectDictionary ); -_efb {if _deef ,_fdab :=_dbf .Get ("\u004e\u0061\u006d\u0065").(*PdfObjectName );_fdab {if _ ,_bcff :=_fbe ._bgbe [string (*_deef )];_bcff {_ecd .Log .Trace ("\u0055\u0073\u0069\u006eg \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020%\u0073",*_deef ); -_gbdd =string (*_deef );};};};};};};_ecd .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_gbdd );if _gbdd =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};};_bccd :=_fbe .Encrypt (_dbbg .PdfObjectDictionary ,_cbf ,_becgc ); -if _bccd !=nil {return _bccd ;};_cfab ,_bccd :=_fbe .makeKey (_gbdd ,uint32 (_cbf ),uint32 (_becgc ),_fbe ._fedc );if _bccd !=nil {return _bccd ;};_dbbg .Stream ,_bccd =_fbe .encryptBytes (_dbbg .Stream ,_gbdd ,_cfab );if _bccd !=nil {return _bccd ;};_fafd .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_dbbg .Stream )))); -return nil ;case *PdfObjectString :_ecd .Log .Trace ("\u0045n\u0063r\u0079\u0070\u0074\u0069\u006eg\u0020\u0073t\u0072\u0069\u006e\u0067\u0021");_abe :=_dbb ;if _fbe ._dgb .V >=4{_ecd .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_fbe ._ffd ); -if _fbe ._ffd =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};_abe =_fbe ._ffd ;};_bcca ,_bfc :=_fbe .makeKey (_abe ,uint32 (parentObjNum ),uint32 (parentGenNum ),_fbe ._fedc );if _bfc !=nil {return _bfc ;};_fdce :=_dbbg .Str ();_edb :=make ([]byte ,len (_fdce )); -for _adce :=0;_adce < len (_fdce );_adce ++{_edb [_adce ]=_fdce [_adce ];};_ecd .Log .Trace ("\u0045n\u0063\u0072\u0079\u0070\u0074\u0020\u0073\u0074\u0072\u0069\u006eg\u003a\u0020\u0025\u0073\u0020\u003a\u0020\u0025\u0020\u0078",_edb ,_edb );_edb ,_bfc =_fbe .encryptBytes (_edb ,_abe ,_bcca ); -if _bfc !=nil {return _bfc ;};_dbbg ._cceg =string (_edb );return nil ;case *PdfObjectArray :for _ ,_abg :=range _dbbg .Elements (){_efa :=_fbe .Encrypt (_abg ,parentObjNum ,parentGenNum );if _efa !=nil {return _efa ;};};return nil ;case *PdfObjectDictionary :_dgf :=false ; -if _bbcg :=_dbbg .Get ("\u0054\u0079\u0070\u0065");_bbcg !=nil {_afdg ,_gfce :=_bbcg .(*PdfObjectName );if _gfce &&*_afdg =="\u0053\u0069\u0067"{_dgf =true ;};};for _ ,_bae :=range _dbbg .Keys (){_effc :=_dbbg .Get (_bae );if _dgf &&string (_bae )=="\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"{continue ; -};if string (_bae )!="\u0050\u0061\u0072\u0065\u006e\u0074"&&string (_bae )!="\u0050\u0072\u0065\u0076"&&string (_bae )!="\u004c\u0061\u0073\u0074"{_geee :=_fbe .Encrypt (_effc ,parentObjNum ,parentGenNum );if _geee !=nil {return _geee ;};};};return nil ; -};return nil ;}; +// NewRawEncoder returns a new instace of RawEncoder. +func NewRawEncoder ()*RawEncoder {return &RawEncoder {}};func (_aaaf *PdfParser )xrefNextObjectOffset (_fgea int64 )int64 {_cebd :=int64 (0);if len (_aaaf ._bbdf .ObjectMap )==0{return 0;};if len (_aaaf ._bbdf ._cf )==0{_abff :=0;for _ ,_ceccd :=range _aaaf ._bbdf .ObjectMap {if _ceccd .Offset > 0{_abff ++; +};};if _abff ==0{return 0;};_aaaf ._bbdf ._cf =make ([]XrefObject ,_abff );_bcgb :=0;for _ ,_dgbd :=range _aaaf ._bbdf .ObjectMap {if _dgbd .Offset > 0{_aaaf ._bbdf ._cf [_bcgb ]=_dgbd ;_bcgb ++;};};_gg .Slice (_aaaf ._bbdf ._cf ,func (_bgef ,_ffdg int )bool {return _aaaf ._bbdf ._cf [_bgef ].Offset < _aaaf ._bbdf ._cf [_ffdg ].Offset }); +};_cdea :=_gg .Search (len (_aaaf ._bbdf ._cf ),func (_eggf int )bool {return _aaaf ._bbdf ._cf [_eggf ].Offset >=_fgea });if _cdea < len (_aaaf ._bbdf ._cf ){_cebd =_aaaf ._bbdf ._cf [_cdea ].Offset ;};return _cebd ;};func _egdfc (_bbfd *PdfObjectStream ,_eacce *PdfObjectDictionary )(*JBIG2Encoder ,error ){const _bgeag ="\u006ee\u0077\u004a\u0042\u0049G\u0032\u0044\u0065\u0063\u006fd\u0065r\u0046r\u006f\u006d\u0053\u0074\u0072\u0065\u0061m"; +_dbaee :=NewJBIG2Encoder ();_ddgf :=_bbfd .PdfObjectDictionary ;if _ddgf ==nil {return _dbaee ,nil ;};if _eacce ==nil {_baafg :=_ddgf .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");if _baafg !=nil {switch _gged :=_baafg .(type ){case *PdfObjectDictionary :_eacce =_gged ; +case *PdfObjectArray :if _gged .Len ()==1{if _bfbc ,_cgea :=GetDict (_gged .Get (0));_cgea {_eacce =_bfbc ;};};default:_a .Log .Error ("\u0044\u0065\u0063\u006f\u0064\u0065P\u0061\u0072\u0061\u006d\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u0025\u0023\u0076",_baafg ); +return nil ,_dd .Errorf (_bgeag ,"\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050a\u0072m\u0073\u0020\u0074\u0079\u0070\u0065\u003a \u0025\u0054",_gged );};};};if _eacce ==nil {return _dbaee ,nil ;};_dbaee .UpdateParams (_eacce ); +_befda ,_afgf :=GetStream (_eacce .Get ("\u004a\u0042\u0049G\u0032\u0047\u006c\u006f\u0062\u0061\u006c\u0073"));if !_afgf {return _dbaee ,nil ;};var _ccad error ;_dbaee .Globals ,_ccad =_fb .DecodeGlobals (_befda .Stream );if _ccad !=nil {_ccad =_dd .Wrap (_ccad ,_bgeag ,"\u0063\u006f\u0072\u0072u\u0070\u0074\u0065\u0064\u0020\u006a\u0062\u0069\u0067\u0032 \u0065n\u0063\u006f\u0064\u0065\u0064\u0020\u0064a\u0074\u0061"); +_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ccad );return nil ,_ccad ;};return _dbaee ,nil ;};func (_bcde *PdfParser )parseXrefStream (_egec *PdfObjectInteger )(*PdfObjectDictionary ,error ){if _egec !=nil {_a .Log .Trace ("\u0058\u0052\u0065f\u0053\u0074\u006d\u0020x\u0072\u0065\u0066\u0020\u0074\u0061\u0062l\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0061\u0074\u0020\u0025\u0064",_egec ); +_bcde ._dfcdg .Seek (int64 (*_egec ),_fg .SeekStart );_bcde ._ffbg =_bfc .NewReader (_bcde ._dfcdg );};_fgce :=_bcde .GetFileOffset ();_fbgg ,_bbcc :=_bcde .ParseIndirectObject ();if _bbcc !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072\u0065\u0061d\u0020\u0078\u0072\u0065\u0066\u0020\u006fb\u006a\u0065\u0063\u0074"); +return nil ,_c .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072e\u0061\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u006f\u0062j\u0065\u0063\u0074");};_a .Log .Trace ("\u0058R\u0065f\u0053\u0074\u006d\u0020\u006fb\u006a\u0065c\u0074\u003a\u0020\u0025\u0073",_fbgg ); +_fcag ,_aded :=_fbgg .(*PdfObjectStream );if !_aded {_a .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0058R\u0065\u0066\u0053\u0074\u006d\u0020\u0070o\u0069\u006e\u0074\u0069\u006e\u0067 \u0074\u006f\u0020\u006e\u006f\u006e\u002d\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0021"); +return nil ,_c .New ("\u0058\u0052\u0065\u0066\u0053\u0074\u006d\u0020\u0070\u006f\u0069\u006e\u0074i\u006e\u0067\u0020\u0074\u006f\u0020a\u0020\u006e\u006f\u006e\u002d\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006fb\u006a\u0065\u0063\u0074");};_cefa :=_fcag .PdfObjectDictionary ; +_dbbfe ,_aded :=_fcag .PdfObjectDictionary .Get ("\u0053\u0069\u007a\u0065").(*PdfObjectInteger );if !_aded {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0073\u0069\u007a\u0065\u0020f\u0072\u006f\u006d\u0020\u0078\u0072\u0065f\u0020\u0073\u0074\u006d"); +return nil ,_c .New ("\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0053\u0069\u007ae\u0020\u0066\u0072\u006f\u006d\u0020\u0078\u0072\u0065\u0066 \u0073\u0074\u006d");};if int64 (*_dbbfe )> 8388607{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0078\u0072\u0065\u0066\u0020\u0053\u0069\u007a\u0065\u0020\u0065x\u0063\u0065\u0065\u0064\u0065\u0064\u0020l\u0069\u006d\u0069\u0074\u002c\u0020\u006f\u0076\u0065\u0072\u00208\u0033\u0038\u0038\u0036\u0030\u0037\u0020\u0028\u0025\u0064\u0029",*_dbbfe ); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_cfba :=_fcag .PdfObjectDictionary .Get ("\u0057");_abfg ,_aded :=_cfba .(*PdfObjectArray );if !_aded {return nil ,_c .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0020\u0069\u006e\u0020x\u0072\u0065\u0066\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); +};_ecacb :=_abfg .Len ();if _ecacb !=3{_a .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u0073\u0074\u006d\u0020\u0028\u006c\u0065\u006e\u0028\u0057\u0029\u0020\u0021\u003d\u0020\u0033\u0020\u002d\u0020\u0025\u0064\u0029",_ecacb ); +return nil ,_c .New ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0078\u0072\u0065f\u0020s\u0074\u006d\u0020\u006c\u0065\u006e\u0028\u0057\u0029\u0020\u0021\u003d\u0020\u0033");};var _gedb []int64 ;for _gbce :=0;_gbce < 3; +_gbce ++{_acfd ,_dfag :=GetInt (_abfg .Get (_gbce ));if !_dfag {return nil ,_c .New ("i\u006e\u0076\u0061\u006cid\u0020w\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0074\u0079\u0070\u0065");};_gedb =append (_gedb ,int64 (*_acfd ));};_ecfe ,_bbcc :=DecodeStream (_fcag ); +if _bbcc !=nil {_a .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020t\u006f \u0064e\u0063o\u0064\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_bbcc );return nil ,_bbcc ;};_cdfee :=int (_gedb [0]); +_eafae :=int (_gedb [0]+_gedb [1]);_dcdd :=int (_gedb [0]+_gedb [1]+_gedb [2]);_dafc :=int (_gedb [0]+_gedb [1]+_gedb [2]);if _cdfee < 0||_eafae < 0||_dcdd < 0{_a .Log .Debug ("\u0045\u0072\u0072\u006fr\u0020\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u003c \u0030 \u0028\u0025\u0064\u002c\u0025\u0064\u002c%\u0064\u0029",_cdfee ,_eafae ,_dcdd ); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};if _dafc ==0{_a .Log .Debug ("\u004e\u006f\u0020\u0078\u0072\u0065\u0066\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0069\u006e\u0020\u0073t\u0072\u0065\u0061\u006d\u0020\u0028\u0064\u0065\u006c\u0074\u0061\u0062\u0020=\u003d\u0020\u0030\u0029"); +return _cefa ,nil ;};_gcea :=len (_ecfe )/_dafc ;_dffba :=0;_aaaeb :=_fcag .PdfObjectDictionary .Get ("\u0049\u006e\u0064e\u0078");var _eedea []int ;if _aaaeb !=nil {_a .Log .Trace ("\u0049n\u0064\u0065\u0078\u003a\u0020\u0025b",_aaaeb );_dcegf ,_bgbg :=_aaaeb .(*PdfObjectArray ); +if !_bgbg {_a .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u0049\u006e\u0064\u0065\u0078\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0028\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0029"); +return nil ,_c .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0049\u006e\u0064e\u0078\u0020\u006f\u0062je\u0063\u0074");};if _dcegf .Len ()%2!=0{_a .Log .Debug ("\u0057\u0041\u0052\u004eI\u004e\u0047\u0020\u0046\u0061\u0069\u006c\u0075\u0072e\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0078\u0072\u0065\u0066\u0020\u0073\u0074\u006d\u0020i\u006e\u0064\u0065\u0078\u0020n\u006f\u0074\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020\u006f\u0066\u0020\u0032\u002e"); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_dffba =0;_gdda ,_dgbb :=_dcegf .ToIntegerArray ();if _dgbb !=nil {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072 \u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u006e\u0064\u0065\u0078 \u0061\u0072\u0072\u0061\u0079\u0020\u0061\u0073\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0073\u003a\u0020\u0025\u0076",_dgbb ); +return nil ,_dgbb ;};for _gdge :=0;_gdge < len (_gdda );_gdge +=2{_acag :=_gdda [_gdge ];_cgdbe :=_gdda [_gdge +1];for _dadgc :=0;_dadgc < _cgdbe ;_dadgc ++{_eedea =append (_eedea ,_acag +_dadgc );};_dffba +=_cgdbe ;};}else {for _ecdb :=0;_ecdb < int (*_dbbfe ); +_ecdb ++{_eedea =append (_eedea ,_ecdb );};_dffba =int (*_dbbfe );};if _gcea ==_dffba +1{_a .Log .Debug ("\u0049n\u0063\u006f\u006d\u0070ati\u0062\u0069\u006c\u0069t\u0079\u003a\u0020\u0049\u006e\u0064\u0065\u0078\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u0076\u0065\u0072\u0061\u0067\u0065\u0020\u006f\u0066\u0020\u0031\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u002d\u0020\u0061\u0070\u0070en\u0064\u0069\u006eg\u0020\u006f\u006e\u0065\u0020-\u0020M\u0061\u0079\u0020\u006c\u0065\u0061\u0064\u0020\u0074o\u0020\u0070\u0072\u006f\u0062\u006c\u0065\u006d\u0073"); +_gbeb :=_dffba -1;for _ ,_ebcb :=range _eedea {if _ebcb > _gbeb {_gbeb =_ebcb ;};};_eedea =append (_eedea ,_gbeb +1);_dffba ++;};if _gcea !=len (_eedea ){_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020x\u0072\u0065\u0066 \u0073\u0074\u006d:\u0020\u006eu\u006d\u0020\u0065\u006e\u0074\u0072i\u0065s \u0021\u003d\u0020\u006c\u0065\u006e\u0028\u0069\u006e\u0064\u0069\u0063\u0065\u0073\u0029\u0020\u0028\u0025\u0064\u0020\u0021\u003d\u0020\u0025\u0064\u0029",_gcea ,len (_eedea )); +return nil ,_c .New ("\u0078\u0072ef\u0020\u0073\u0074m\u0020\u006e\u0075\u006d en\u0074ri\u0065\u0073\u0020\u0021\u003d\u0020\u006cen\u0028\u0069\u006e\u0064\u0069\u0063\u0065s\u0029");};_a .Log .Trace ("\u004f\u0062j\u0065\u0063\u0074s\u0020\u0063\u006f\u0075\u006e\u0074\u0020\u0025\u0064",_dffba ); +_a .Log .Trace ("\u0049\u006e\u0064i\u0063\u0065\u0073\u003a\u0020\u0025\u0020\u0064",_eedea );_beda :=func (_ecccg []byte )int64 {var _eafab int64 ;for _faae :=0;_faae < len (_ecccg );_faae ++{_eafab +=int64 (_ecccg [_faae ])*(1<=len (_eedea ){_a .Log .Debug ("X\u0052\u0065\u0066\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u002d\u0020\u0054\u0072\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0061\u0063\u0063e\u0073s\u0020\u0069\u006e\u0064e\u0078\u0020o\u0075\u0074\u0020\u006f\u0066\u0020\u0062\u006f\u0075\u006e\u0064\u0073\u0020\u002d\u0020\u0062\u0072\u0065\u0061\u006b\u0069\u006e\u0067"); +break ;};_edca :=_eedea [_cefe ];_cefe ++;_a .Log .Trace ("%\u0064\u002e\u0020\u0070\u0031\u003a\u0020\u0025\u0020\u0078",_edca ,_bfed );_a .Log .Trace ("%\u0064\u002e\u0020\u0070\u0032\u003a\u0020\u0025\u0020\u0078",_edca ,_acfc );_a .Log .Trace ("%\u0064\u002e\u0020\u0070\u0033\u003a\u0020\u0025\u0020\u0078",_edca ,_dbab ); +_a .Log .Trace ("\u0025d\u002e \u0078\u0072\u0065\u0066\u003a \u0025\u0064 \u0025\u0064\u0020\u0025\u0064",_edca ,_aadca ,_dcff ,_eadfb );if _aadca ==0{_a .Log .Trace ("-\u0020\u0046\u0072\u0065\u0065\u0020o\u0062\u006a\u0065\u0063\u0074\u0020-\u0020\u0063\u0061\u006e\u0020\u0070\u0072o\u0062\u0061\u0062\u006c\u0079\u0020\u0069\u0067\u006e\u006fr\u0065"); +}else if _aadca ==1{_a .Log .Trace ("\u002d\u0020I\u006e\u0020\u0075\u0073e\u0020\u002d \u0075\u006e\u0063\u006f\u006d\u0070\u0072\u0065s\u0073\u0065\u0064\u0020\u0076\u0069\u0061\u0020\u006f\u0066\u0066\u0073e\u0074\u0020\u0025\u0062",_acfc );if _dcff ==_fgce {_a .Log .Debug ("\u0055\u0070d\u0061\u0074\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0058\u0052\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0025\u0064\u0020\u002d\u003e\u0020\u0025\u0064",_edca ,_fcag .ObjectNumber ); +_edca =int (_fcag .ObjectNumber );};if _edde ,_bcae :=_bcde ._bbdf .ObjectMap [_edca ];!_bcae ||int (_eadfb )> _edde .Generation {_afacd :=XrefObject {ObjectNumber :_edca ,XType :XrefTypeTableEntry ,Offset :_dcff ,Generation :int (_eadfb )};_bcde ._bbdf .ObjectMap [_edca ]=_afacd ; +};}else if _aadca ==2{_a .Log .Trace ("\u002d\u0020\u0049\u006e \u0075\u0073\u0065\u0020\u002d\u0020\u0063\u006f\u006d\u0070r\u0065s\u0073\u0065\u0064\u0020\u006f\u0062\u006ae\u0063\u0074");if _ ,_ccgb :=_bcde ._bbdf .ObjectMap [_edca ];!_ccgb {_gabg :=XrefObject {ObjectNumber :_edca ,XType :XrefTypeObjectStream ,OsObjNumber :int (_dcff ),OsObjIndex :int (_eadfb )}; +_bcde ._bbdf .ObjectMap [_edca ]=_gabg ;_a .Log .Trace ("\u0065\u006e\u0074\u0072\u0079\u003a\u0020\u0025\u002b\u0076",_gabg );};}else {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u0049\u004e\u0056\u0041L\u0049\u0044\u0020\u0054\u0059\u0050\u0045\u0020\u0058\u0072\u0065\u0066\u0053\u0074\u006d\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u003f\u002d\u002d\u002d\u002d\u002d\u002d-"); +continue ;};};if _bcde ._fddf ==nil {_cddf :=XrefTypeObjectStream ;_bcde ._fddf =&_cddf ;};return _cefa ,nil ;}; -// Inspect analyzes the document object structure. Returns a map of object types (by name) with the instance count -// as value. -func (_bbeag *PdfParser )Inspect ()(map[string ]int ,error ){return _bbeag .inspect ()}; +// EncodeStream encodes the stream data using the encoded specified by the stream's dictionary. +func EncodeStream (streamObj *PdfObjectStream )error {_a .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d");_dfgb ,_fdbgab :=NewEncoderFromStream (streamObj );if _fdbgab !=nil {_a .Log .Debug ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0065\u0063\u006fd\u0069\u006e\u0067\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_fdbgab ); +return _fdbgab ;};if _bdcd ,_gabfc :=_dfgb .(*LZWEncoder );_gabfc {_bdcd .EarlyChange =0;streamObj .PdfObjectDictionary .Set ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065",MakeInteger (0));};_a .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076\u000a",_dfgb ); +_dgdc ,_fdbgab :=_dfgb .EncodeBytes (streamObj .Stream );if _fdbgab !=nil {_a .Log .Debug ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_fdbgab );return _fdbgab ; +};streamObj .Stream =_dgdc ;streamObj .PdfObjectDictionary .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_dgdc ))));return nil ;}; -// GetUpdatedObjects returns pdf objects which were updated from the specific version (from prevParser). -func (_ebbe *PdfParser )GetUpdatedObjects (prevParser *PdfParser )(map[int64 ]PdfObject ,error ){if prevParser ==nil {return nil ,_f .New ("\u0070\u0072e\u0076\u0069\u006f\u0075\u0073\u0020\u0070\u0061\u0072\u0073\u0065\u0072\u0020\u0063\u0061\u006e\u0027\u0074\u0020\u0062\u0065\u0020nu\u006c\u006c"); -};_bddgg ,_dfac :=_ebbe .getNumbersOfUpdatedObjects (prevParser );if _dfac !=nil {return nil ,_dfac ;};_abggc :=make (map[int64 ]PdfObject );for _ ,_eeab :=range _bddgg {if _bcdd ,_cdff :=_ebbe .LookupByNumber (_eeab );_cdff ==nil {_abggc [int64 (_eeab )]=_bcdd ; -}else {return nil ,_cdff ;};};return _abggc ,nil ;}; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_ffce *ASCIIHexEncoder )MakeStreamDict ()*PdfObjectDictionary {_fdbg :=MakeDict ();_fdbg .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_ffce .GetFilterName ()));return _fdbg ;};func (_dgccd *PdfParser )loadXrefs ()(*PdfObjectDictionary ,error ){_dgccd ._bbdf .ObjectMap =make (map[int ]XrefObject ); +_dgccd ._fcba =make (objectStreams );_abdcf ,_ddbe :=_dgccd ._dfcdg .Seek (0,_fg .SeekEnd );if _ddbe !=nil {return nil ,_ddbe ;};_a .Log .Trace ("\u0066s\u0069\u007a\u0065\u003a\u0020\u0025d",_abdcf );_dgccd ._fbaaa =_abdcf ;_ddbe =_dgccd .seekToEOFMarker (_abdcf ); +if _ddbe !=nil {_a .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0073\u0065\u0065\u006b\u0020\u0074\u006f\u0020\u0065\u006f\u0066\u0020\u006d\u0061\u0072\u006b\u0065\u0072: \u0025\u0076",_ddbe );return nil ,_ddbe ;};_bccf ,_ddbe :=_dgccd ._dfcdg .Seek (0,_fg .SeekCurrent ); +if _ddbe !=nil {return nil ,_ddbe ;};var _fgca int64 =64;_gbad :=_bccf -_fgca ;if _gbad < 0{_gbad =0;};_ ,_ddbe =_dgccd ._dfcdg .Seek (_gbad ,_fg .SeekStart );if _ddbe !=nil {return nil ,_ddbe ;};_cedce :=make ([]byte ,_fgca );_ ,_ddbe =_dgccd ._dfcdg .Read (_cedce ); +if _ddbe !=nil {_a .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0072\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u006c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0073\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u003a\u0020\u0025\u0076",_ddbe ); +return nil ,_ddbe ;};_cadb :=_adgg .FindStringSubmatch (string (_cedce ));if len (_cadb )< 2{_a .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020s\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u0020n\u006f\u0074\u0020f\u006fu\u006e\u0064\u0021");return nil ,_c .New ("\u0073\u0074\u0061\u0072tx\u0072\u0065\u0066\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +};if len (_cadb )> 2{_a .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u004du\u006c\u0074\u0069\u0070\u006c\u0065\u0020s\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u0020\u0028\u0025\u0073\u0029\u0021",_cedce );return nil ,_c .New ("m\u0075\u006c\u0074\u0069\u0070\u006ce\u0020\u0073\u0074\u0061\u0072\u0074\u0078\u0072\u0065f\u0020\u0065\u006et\u0072i\u0065\u0073\u003f"); +};_cbcgc ,_ :=_bd .ParseInt (_cadb [1],10,64);_a .Log .Trace ("\u0073t\u0061r\u0074\u0078\u0072\u0065\u0066\u0020\u0061\u0074\u0020\u0025\u0064",_cbcgc );if _cbcgc > _abdcf {_a .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0058\u0072\u0065\u0066\u0020\u006f\u0066f\u0073e\u0074 \u006fu\u0074\u0073\u0069\u0064\u0065\u0020\u006f\u0066\u0020\u0066\u0069\u006c\u0065"); +_a .Log .Debug ("\u0041\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0072e\u0070\u0061\u0069\u0072");_cbcgc ,_ddbe =_dgccd .repairLocateXref ();if _ddbe !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0052\u0065\u0070\u0061\u0069\u0072\u0020\u0061\u0074\u0074\u0065\u006d\u0070t\u0020\u0066\u0061\u0069\u006c\u0065\u0064 \u0028\u0025\u0073\u0029"); +return nil ,_ddbe ;};};_dgccd ._dfcdg .Seek (_cbcgc ,_fg .SeekStart );_dgccd ._ffbg =_bfc .NewReader (_dgccd ._dfcdg );_degc ,_ddbe :=_dgccd .parseXref ();if _ddbe !=nil {return nil ,_ddbe ;};_cgbd :=_degc .Get ("\u0058R\u0065\u0066\u0053\u0074\u006d"); +if _cgbd !=nil {_bcfbf ,_ccff :=_cgbd .(*PdfObjectInteger );if !_ccff {return nil ,_c .New ("\u0058\u0052\u0065\u0066\u0053\u0074\u006d\u0020\u0021=\u0020\u0069\u006e\u0074");};_ ,_ddbe =_dgccd .parseXrefStream (_bcfbf );if _ddbe !=nil {return nil ,_ddbe ; +};};var _abec []int64 ;_ccbe :=func (_ebfc int64 ,_gacbc []int64 )bool {for _ ,_abgb :=range _gacbc {if _abgb ==_ebfc {return true ;};};return false ;};_cgbd =_degc .Get ("\u0050\u0072\u0065\u0076");for _cgbd !=nil {_gebe ,_gfbdc :=_cgbd .(*PdfObjectInteger ); +if !_gfbdc {_a .Log .Debug ("\u0049\u006ev\u0061\u006c\u0069\u0064\u0020P\u0072\u0065\u0076\u0020\u0072e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u003a\u0020\u004e\u006f\u0074\u0020\u0061\u0020\u002a\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0025\u0054\u0029",_cgbd ); +return _degc ,nil ;};_fbgd :=*_gebe ;_a .Log .Trace ("\u0041\u006eot\u0068\u0065\u0072 \u0050\u0072\u0065\u0076 xr\u0065f \u0074\u0061\u0062\u006c\u0065\u0020\u006fbj\u0065\u0063\u0074\u0020\u0061\u0074\u0020%\u0064",_fbgd );_dgccd ._dfcdg .Seek (int64 (_fbgd ),_fg .SeekStart ); +_dgccd ._ffbg =_bfc .NewReader (_dgccd ._dfcdg );_bfbe ,_dggg :=_dgccd .parseXref ();if _dggg !=nil {_a .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006e\u0067\u003a\u0020\u0045\u0072\u0072\u006f\u0072\u0020-\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u006c\u006f\u0061\u0064\u0069n\u0067\u0020\u0061\u006e\u006f\u0074\u0068\u0065\u0072\u0020\u0028\u0050re\u0076\u0029\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072"); +_a .Log .Debug ("\u0041\u0074t\u0065\u006d\u0070\u0074i\u006e\u0067 \u0074\u006f\u0020\u0063\u006f\u006e\u0074\u0069n\u0075\u0065\u0020\u0062\u0079\u0020\u0069\u0067\u006e\u006f\u0072\u0069n\u0067\u0020\u0069\u0074");break ;};_dgccd ._fbaae =append (_dgccd ._fbaae ,int64 (_fbgd )); +_cgbd =_bfbe .Get ("\u0050\u0072\u0065\u0076");if _cgbd !=nil {_acgc :=*(_cgbd .(*PdfObjectInteger ));if _ccbe (int64 (_acgc ),_abec ){_a .Log .Debug ("\u0050\u0072ev\u0065\u006e\u0074i\u006e\u0067\u0020\u0063irc\u0075la\u0072\u0020\u0078\u0072\u0065\u0066\u0020re\u0066\u0065\u0072\u0065\u006e\u0063\u0069n\u0067"); +break ;};_abec =append (_abec ,int64 (_acgc ));};};return _degc ,nil ;}; -// UpdateParams updates the parameter values of the encoder. -// Implements StreamEncoder interface. -func (_dgdab *JBIG2Encoder )UpdateParams (params *PdfObjectDictionary ){_abcf ,_cdfb :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));if _cdfb ==nil {_dgdab .BitsPerComponent =int (_abcf ); -};_eeeg ,_cdfb :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));if _cdfb ==nil {_dgdab .Width =int (_eeeg );};_afae ,_cdfb :=GetNumberAsInt64 (params .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));if _cdfb ==nil {_dgdab .Height =int (_afae ); -};_bfeg ,_cdfb :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073"));if _cdfb ==nil {_dgdab .ColorComponents =int (_bfeg );};}; +// NewJBIG2Encoder creates a new JBIG2Encoder. +func NewJBIG2Encoder ()*JBIG2Encoder {return &JBIG2Encoder {_feg :_de .InitEncodeDocument (false )}}; -// GetBool returns the *PdfObjectBool object that is represented by a PdfObject directly or indirectly -// within an indirect object. The bool flag indicates whether a match was found. -func GetBool (obj PdfObject )(_cbbd *PdfObjectBool ,_baab bool ){_cbbd ,_baab =TraceToDirectObject (obj ).(*PdfObjectBool );return _cbbd ,_baab ;};var _ddfe =_fc .MustCompile ("\u0025\u0025\u0045\u004f\u0046\u003f"); +// GetRevisionNumber returns the current version of the Pdf document. +func (_cfeb *PdfParser )GetRevisionNumber ()int {return _cfeb ._efce }; -// MakeArrayFromFloats creates an PdfObjectArray from a slice of float64s, where each array element is an -// PdfObjectFloat. -func MakeArrayFromFloats (vals []float64 )*PdfObjectArray {_cgbg :=MakeArray ();for _ ,_aadcg :=range vals {_cgbg .Append (MakeFloat (_aadcg ));};return _cgbg ;}; +// PdfObjectFloat represents the primitive PDF floating point numerical object. +type PdfObjectFloat float64 ;const (JB2Generic JBIG2CompressionType =iota ;JB2SymbolCorrelation ;JB2SymbolRankHaus ;); -// RegisterCustomStreamEncoder register a custom encoder handler for certain filter. -func RegisterCustomStreamEncoder (filterName string ,customStreamEncoder StreamEncoder ){_dgff .Store (filterName ,customStreamEncoder );};func _cfdc ()string {return _ecd .Version }; +// MakeStreamDict make a new instance of an encoding dictionary for a stream object. +func (_edc *ASCII85Encoder )MakeStreamDict ()*PdfObjectDictionary {_gfgafd :=MakeDict ();_gfgafd .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_edc .GetFilterName ()));return _gfgafd ;};func _deage (_dccdd uint ,_ggfc ,_afac float64 )float64 {return (_ggfc +(float64 (_dccdd )*(_afac -_ggfc )/255))*255; +}; -// DCTEncoder provides a DCT (JPG) encoding/decoding functionality for images. -type DCTEncoder struct{ColorComponents int ;BitsPerComponent int ;Width int ;Height int ;Quality int ;Decode []float64 ;}; +// Version represents a version of a PDF standard. +type Version struct{Major int ;Minor int ;};func _ecg (_ggd PdfObject )(int64 ,int64 ,error ){if _ddg ,_efc :=_ggd .(*PdfIndirectObject );_efc {return _ddg .ObjectNumber ,_ddg .GenerationNumber ,nil ;};if _gge ,_cee :=_ggd .(*PdfObjectStream );_cee {return _gge .ObjectNumber ,_gge .GenerationNumber ,nil ; +};return 0,0,_c .New ("\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u002f\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062je\u0063\u0074");}; -// UpdateParams updates the parameter values of the encoder. -func (_aefe *CCITTFaxEncoder )UpdateParams (params *PdfObjectDictionary ){if _cabb ,_fdcac :=GetNumberAsInt64 (params .Get ("\u004b"));_fdcac ==nil {_aefe .K =int (_cabb );};if _agce ,_daabg :=GetNumberAsInt64 (params .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073")); -_daabg ==nil {_aefe .Columns =int (_agce );}else if _agce ,_daabg =GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));_daabg ==nil {_aefe .Columns =int (_agce );};if _cdbd ,_aecd :=GetNumberAsInt64 (params .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031")); -_aecd ==nil {_aefe .BlackIs1 =_cdbd > 0;}else {if _bagf ,_dgba :=GetBoolVal (params .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031"));_dgba {_aefe .BlackIs1 =_bagf ;}else {if _efcg ,_cca :=GetArray (params .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")); -_cca {_ebdb ,_acec :=_efcg .ToIntegerArray ();if _acec ==nil {_aefe .BlackIs1 =_ebdb [0]==1&&_ebdb [1]==0;};};};};if _gggg ,_gacf :=GetNumberAsInt64 (params .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e")); -_gacf ==nil {_aefe .EncodedByteAlign =_gggg > 0;}else {if _edcd ,_aafcb :=GetBoolVal (params .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e"));_aafcb {_aefe .EncodedByteAlign =_edcd ;};};if _dbba ,_eebe :=GetNumberAsInt64 (params .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee")); -_eebe ==nil {_aefe .EndOfLine =_dbba > 0;}else {if _deacf ,_adgd :=GetBoolVal (params .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee"));_adgd {_aefe .EndOfLine =_deacf ;};};if _cfbbg ,_accgg :=GetNumberAsInt64 (params .Get ("\u0052\u006f\u0077\u0073")); -_accgg ==nil {_aefe .Rows =int (_cfbbg );}else if _cfbbg ,_accgg =GetNumberAsInt64 (params .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_accgg ==nil {_aefe .Rows =int (_cfbbg );};if _daaf ,_cffe :=GetNumberAsInt64 (params .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b")); -_cffe ==nil {_aefe .EndOfBlock =_daaf > 0;}else {if _dffg ,_eagg :=GetBoolVal (params .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b"));_eagg {_aefe .EndOfBlock =_dffg ;};};if _bdec ,_dcf :=GetNumberAsInt64 (params .Get ("\u0044\u0061\u006d\u0061ge\u0064\u0052\u006f\u0077\u0073\u0042\u0065\u0066\u006f\u0072\u0065\u0045\u0072\u0072o\u0072")); -_dcf !=nil {_aefe .DamagedRowsBeforeError =int (_bdec );};}; +// GetUpdatedObjects returns pdf objects which were updated from the specific version (from prevParser). +func (_fdbda *PdfParser )GetUpdatedObjects (prevParser *PdfParser )(map[int64 ]PdfObject ,error ){if prevParser ==nil {return nil ,_c .New ("\u0070\u0072e\u0076\u0069\u006f\u0075\u0073\u0020\u0070\u0061\u0072\u0073\u0065\u0072\u0020\u0063\u0061\u006e\u0027\u0074\u0020\u0062\u0065\u0020nu\u006c\u006c"); +};_egacc ,_bbfe :=_fdbda .getNumbersOfUpdatedObjects (prevParser );if _bbfe !=nil {return nil ,_bbfe ;};_decg :=make (map[int64 ]PdfObject );for _ ,_addgb :=range _egacc {if _cfea ,_gadb :=_fdbda .LookupByNumber (_addgb );_gadb ==nil {_decg [int64 (_addgb )]=_cfea ; +}else {return nil ,_gadb ;};};return _decg ,nil ;}; -// StreamEncoder represents the interface for all PDF stream encoders. -type StreamEncoder interface{GetFilterName ()string ;MakeDecodeParams ()PdfObject ;MakeStreamDict ()*PdfObjectDictionary ;UpdateParams (_fff *PdfObjectDictionary );EncodeBytes (_dggb []byte )([]byte ,error );DecodeBytes (_caeb []byte )([]byte ,error ); -DecodeStream (_cfdd *PdfObjectStream )([]byte ,error );};var _begb =_fc .MustCompile ("\u0073t\u0061r\u0074\u0078\u003f\u0072\u0065f\u005c\u0073*\u0028\u005c\u0064\u002b\u0029"); +// GetObjectStreams returns the *PdfObjectStreams represented by the PdfObject. On type mismatch the found bool flag is +// false and a nil pointer is returned. +func GetObjectStreams (obj PdfObject )(_ffcg *PdfObjectStreams ,_fcdd bool ){_ffcg ,_fcdd =obj .(*PdfObjectStreams );return _ffcg ,_fcdd ;}; -// AddPageImage adds the page with the image 'img' to the encoder context in order to encode it jbig2 document. -// The 'settings' defines what encoding type should be used by the encoder. -func (_ccgf *JBIG2Encoder )AddPageImage (img *JBIG2Image ,settings *JBIG2EncoderSettings )(_fcdd error ){const _acbb ="\u004a\u0042\u0049\u0047\u0032\u0044\u006f\u0063\u0075\u006d\u0065n\u0074\u002e\u0041\u0064\u0064\u0050\u0061\u0067\u0065\u0049m\u0061\u0067\u0065"; -if _ccgf ==nil {return _cd .Error (_acbb ,"J\u0042I\u0047\u0032\u0044\u006f\u0063\u0075\u006d\u0065n\u0074\u0020\u0069\u0073 n\u0069\u006c");};if settings ==nil {settings =&_ccgf .DefaultPageSettings ;};if _ccgf ._gcdf ==nil {_ccgf ._gcdf =_cb .InitEncodeDocument (settings .FileMode ); -};if _fcdd =settings .Validate ();_fcdd !=nil {return _cd .Wrap (_fcdd ,_acbb ,"");};_faad ,_fcdd :=img .toBitmap ();if _fcdd !=nil {return _cd .Wrap (_fcdd ,_acbb ,"");};switch settings .Compression {case JB2Generic :if _fcdd =_ccgf ._gcdf .AddGenericPage (_faad ,settings .DuplicatedLinesRemoval ); -_fcdd !=nil {return _cd .Wrap (_fcdd ,_acbb ,"");};case JB2SymbolCorrelation :return _cd .Error (_acbb ,"s\u0079\u006d\u0062\u006f\u006c\u0020\u0063\u006f\u0072r\u0065\u006c\u0061\u0074\u0069\u006f\u006e e\u006e\u0063\u006f\u0064i\u006e\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006dpl\u0065\u006de\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); -case JB2SymbolRankHaus :return _cd .Error (_acbb ,"\u0073y\u006d\u0062o\u006c\u0020\u0072a\u006e\u006b\u0020\u0068\u0061\u0075\u0073 \u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065m\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); -default:return _cd .Error (_acbb ,"\u0070\u0072\u006f\u0076i\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020c\u006f\u006d\u0070\u0072\u0065\u0073\u0073i\u006f\u006e");};return nil ;}; +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_aecf *MultiEncoder )MakeDecodeParams ()PdfObject {if len (_aecf ._bdfb )==0{return nil ;};if len (_aecf ._bdfb )==1{return _aecf ._bdfb [0].MakeDecodeParams ();};_bfda :=MakeArray ();_edgae :=true ;for _ ,_gfbc :=range _aecf ._bdfb {_egadb :=_gfbc .MakeDecodeParams (); +if _egadb ==nil {_bfda .Append (MakeNull ());}else {_edgae =false ;_bfda .Append (_egadb );};};if _edgae {return nil ;};return _bfda ;}; -// ParseIndirectObject parses an indirect object from the input stream. Can also be an object stream. -// Returns the indirect object (*PdfIndirectObject) or the stream object (*PdfObjectStream). -func (_agec *PdfParser )ParseIndirectObject ()(PdfObject ,error ){_aace :=PdfIndirectObject {};_aace ._ceda =_agec ;_ecd .Log .Trace ("\u002dR\u0065a\u0064\u0020\u0069\u006e\u0064i\u0072\u0065c\u0074\u0020\u006f\u0062\u006a");_gebfe ,_gdfda :=_agec ._affd .Peek (20); -if _gdfda !=nil {if _gdfda !=_ae .EOF {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020r\u0065a\u0064\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a");return &_aace ,_gdfda ; -};};_ecd .Log .Trace ("\u0028\u0069\u006edi\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0020\u0070\u0065\u0065\u006b\u0020\u0022\u0025\u0073\u0022",string (_gebfe ));_dfcd :=_gegg .FindStringSubmatchIndex (string (_gebfe ));if len (_dfcd )< 6{if _gdfda ==_ae .EOF {return nil ,_gdfda ; -};_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_gebfe )); -return &_aace ,_f .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); -};_agec ._affd .Discard (_dfcd [0]);_ecd .Log .Trace ("O\u0066\u0066\u0073\u0065\u0074\u0073\u0020\u0025\u0020\u0064",_dfcd );_fgbb :=_dfcd [1]-_dfcd [0];_beda :=make ([]byte ,_fgbb );_ ,_gdfda =_agec .ReadAtLeast (_beda ,_fgbb );if _gdfda !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020-\u0020\u0025\u0073",_gdfda ); -return nil ,_gdfda ;};_ecd .Log .Trace ("\u0074\u0065\u0078t\u006c\u0069\u006e\u0065\u003a\u0020\u0025\u0073",_beda );_cedd :=_gegg .FindStringSubmatch (string (_beda ));if len (_cedd )< 3{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_beda )); -return &_aace ,_f .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); -};_aeggc ,_ :=_bf .Atoi (_cedd [1]);_dbdf ,_ :=_bf .Atoi (_cedd [2]);_aace .ObjectNumber =int64 (_aeggc );_aace .GenerationNumber =int64 (_dbdf );for {_adbf ,_bfac :=_agec ._affd .Peek (2);if _bfac !=nil {return &_aace ,_bfac ;};_ecd .Log .Trace ("I\u006ed\u002e\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_adbf ),string (_adbf )); -if IsWhiteSpace (_adbf [0]){_agec .skipSpaces ();}else if _adbf [0]=='%'{_agec .skipComments ();}else if (_adbf [0]=='<')&&(_adbf [1]=='<'){_ecd .Log .Trace ("\u0043\u0061\u006c\u006c\u0020\u0050\u0061\u0072\u0073e\u0044\u0069\u0063\u0074");_aace .PdfObject ,_bfac =_agec .ParseDict (); -_ecd .Log .Trace ("\u0045\u004f\u0046\u0020Ca\u006c\u006c\u0020\u0050\u0061\u0072\u0073\u0065\u0044\u0069\u0063\u0074\u003a\u0020%\u0076",_bfac );if _bfac !=nil {return &_aace ,_bfac ;};_ecd .Log .Trace ("\u0050\u0061\u0072\u0073\u0065\u0064\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e.\u002e\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); -}else if (_adbf [0]=='/')||(_adbf [0]=='(')||(_adbf [0]=='[')||(_adbf [0]=='<'){_aace .PdfObject ,_bfac =_agec .parseObject ();if _bfac !=nil {return &_aace ,_bfac ;};_ecd .Log .Trace ("P\u0061\u0072\u0073\u0065\u0064\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u002e\u002e\u002e \u0066\u0069\u006ei\u0073h\u0065\u0064\u002e"); -}else if _adbf [0]==']'{_ecd .Log .Debug ("\u0057\u0041\u0052\u004e\u0049N\u0047\u003a\u0020\u0027\u005d\u0027 \u0063\u0068\u0061\u0072\u0061\u0063\u0074e\u0072\u0020\u006eo\u0074\u0020\u0062\u0065i\u006e\u0067\u0020\u0075\u0073\u0065d\u0020\u0061\u0073\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0065\u006e\u0064\u0069n\u0067\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e"); -_agec ._affd .Discard (1);}else {if _adbf [0]=='e'{_dedee ,_bddg :=_agec .readTextLine ();if _bddg !=nil {return nil ,_bddg ;};if len (_dedee )>=6&&_dedee [0:6]=="\u0065\u006e\u0064\u006f\u0062\u006a"{break ;};}else if _adbf [0]=='s'{_adbf ,_ =_agec ._affd .Peek (10); -if string (_adbf [:6])=="\u0073\u0074\u0072\u0065\u0061\u006d"{_geeae :=6;if len (_adbf )> 6{if IsWhiteSpace (_adbf [_geeae ])&&_adbf [_geeae ]!='\r'&&_adbf [_geeae ]!='\n'{_ecd .Log .Debug ("\u004e\u006fn\u002d\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0074\u0020\u0050\u0044\u0046\u0020\u006e\u006f\u0074 \u0065\u006e\u0064\u0069\u006e\u0067 \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0069\u006e\u0065\u0020\u0070\u0072o\u0070\u0065r\u006c\u0079\u0020\u0077i\u0074\u0068\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072"); -_agec ._bcdc ._agd =true ;_geeae ++;};if _adbf [_geeae ]=='\r'{_geeae ++;if _adbf [_geeae ]=='\n'{_geeae ++;};}else if _adbf [_geeae ]=='\n'{_geeae ++;}else {_agec ._bcdc ._agd =true ;};};_agec ._affd .Discard (_geeae );_cggg ,_ebaad :=_aace .PdfObject .(*PdfObjectDictionary ); -if !_ebaad {return nil ,_f .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006di\u0073s\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079");};_ecd .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074\u0020\u0025\u0073",_cggg ); -_fgdc ,_abgb :=_agec .traceStreamLength (_cggg .Get ("\u004c\u0065\u006e\u0067\u0074\u0068"));if _abgb !=nil {_ecd .Log .Debug ("\u0046\u0061\u0069l\u0020\u0074\u006f\u0020t\u0072\u0061\u0063\u0065\u0020\u0073\u0074r\u0065\u0061\u006d\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0025\u0076",_abgb ); -return nil ,_abgb ;};_ecd .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0065\u006e\u0067\u0074h\u003f\u0020\u0025\u0073",_fgdc );_feac ,_dbea :=_fgdc .(*PdfObjectInteger );if !_dbea {return nil ,_f .New ("\u0073\u0074re\u0061\u006d\u0020l\u0065\u006e\u0067\u0074h n\u0065ed\u0073\u0020\u0074\u006f\u0020\u0062\u0065 a\u006e\u0020\u0069\u006e\u0074\u0065\u0067e\u0072"); -};_daee :=*_feac ;if _daee < 0{return nil ,_f .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f \u0062e\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0030");};_ddaf :=_agec .GetFileOffset (); -_bcaed :=_agec .xrefNextObjectOffset (_ddaf );if _ddaf +int64 (_daee )> _bcaed &&_bcaed > _ddaf {_ecd .Log .Debug ("E\u0078\u0070\u0065\u0063te\u0064 \u0065\u006e\u0064\u0069\u006eg\u0020\u0061\u0074\u0020\u0025\u0064",_ddaf +int64 (_daee ));_ecd .Log .Debug ("\u004e\u0065\u0078\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0073\u0074\u0061\u0072\u0074\u0069\u006e\u0067\u0020\u0061t\u0020\u0025\u0064",_bcaed ); -_eabfc :=_bcaed -_ddaf -17;if _eabfc < 0{return nil ,_f .New ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0073t\u0072\u0065\u0061m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002c\u0020go\u0069\u006e\u0067 \u0070\u0061s\u0074\u0020\u0062\u006f\u0075\u006ed\u0061\u0072i\u0065\u0073"); -};_ecd .Log .Debug ("\u0041\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0061\u0020l\u0065\u006e\u0067\u0074\u0068\u0020c\u006f\u0072\u0072\u0065\u0063\u0074\u0069\u006f\u006e\u0020\u0074\u006f\u0020%\u0064\u002e\u002e\u002e",_eabfc );_daee =PdfObjectInteger (_eabfc ); -_cggg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (_eabfc ));};if int64 (_daee )> _agec ._defe {_ecd .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0053t\u0072\u0065\u0061\u006d\u0020l\u0065\u006e\u0067\u0074\u0068\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0069\u007a\u0065"); -return nil ,_f .New ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0073t\u0072\u0065\u0061m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002c\u0020la\u0072\u0067\u0065r\u0020\u0074h\u0061\u006e\u0020\u0066\u0069\u006ce\u0020\u0073i\u007a\u0065");};_ebae :=make ([]byte ,_daee ); -_ ,_abgb =_agec .ReadAtLeast (_ebae ,int (_daee ));if _abgb !=nil {_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052 s\u0074r\u0065\u0061\u006d\u0020\u0028%\u0064\u0029\u003a\u0020\u0025\u0058",len (_ebae ),_ebae );_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_abgb ); -return nil ,_abgb ;};_eddgc :=PdfObjectStream {};_eddgc .Stream =_ebae ;_eddgc .PdfObjectDictionary =_aace .PdfObject .(*PdfObjectDictionary );_eddgc .ObjectNumber =_aace .ObjectNumber ;_eddgc .GenerationNumber =_aace .GenerationNumber ;_eddgc .PdfObjectReference ._ceda =_agec ; -_agec .skipSpaces ();_agec ._affd .Discard (9);_agec .skipSpaces ();return &_eddgc ,nil ;};};_aace .PdfObject ,_bfac =_agec .parseObject ();if _aace .PdfObject ==nil {_ecd .Log .Debug ("\u0049N\u0043\u004f\u004dP\u0041\u0054\u0049B\u0049LI\u0054\u0059\u003a\u0020\u0049\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061n \u006fb\u006a\u0065\u0063\u0074\u0020\u002d \u0061\u0073\u0073\u0075\u006di\u006e\u0067\u0020\u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006ae\u0063\u0074"); -_aace .PdfObject =MakeNull ();};return &_aace ,_bfac ;};};if _aace .PdfObject ==nil {_ecd .Log .Debug ("\u0049N\u0043\u004f\u004dP\u0041\u0054\u0049B\u0049LI\u0054\u0059\u003a\u0020\u0049\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061n \u006fb\u006a\u0065\u0063\u0074\u0020\u002d \u0061\u0073\u0073\u0075\u006di\u006e\u0067\u0020\u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006ae\u0063\u0074"); -_aace .PdfObject =MakeNull ();};_ecd .Log .Trace ("\u0052\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0021");return &_aace ,nil ;}; +// Seek implementation of Seek interface. +func (_bcdd *limitedReadSeeker )Seek (offset int64 ,whence int )(int64 ,error ){var _gcff int64 ;switch whence {case _fg .SeekStart :_gcff =offset ;case _fg .SeekCurrent :_bbef ,_gfbcd :=_bcdd ._fbge .Seek (0,_fg .SeekCurrent );if _gfbcd !=nil {return 0,_gfbcd ; +};_gcff =_bbef +offset ;case _fg .SeekEnd :_gcff =_bcdd ._bcgd +offset ;};if _badfb :=_bcdd .getError (_gcff );_badfb !=nil {return 0,_badfb ;};if _ ,_feaaa :=_bcdd ._fbge .Seek (_gcff ,_fg .SeekStart );_feaaa !=nil {return 0,_feaaa ;};return _gcff ,nil ; +}; -// IsWhiteSpace checks if byte represents a white space character. -func IsWhiteSpace (ch byte )bool {if (ch ==0x00)||(ch ==0x09)||(ch ==0x0A)||(ch ==0x0C)||(ch ==0x0D)||(ch ==0x20){return true ;};return false ;}; +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_gdcb *JPXEncoder )MakeDecodeParams ()PdfObject {return nil }; -// GetXrefOffset returns the offset of the xref table. -func (_cfde *PdfParser )GetXrefOffset ()int64 {return _cfde ._fefea }; +// PdfCryptNewDecrypt makes the document crypt handler based on the encryption dictionary +// and trailer dictionary. Returns an error on failure to process. +func PdfCryptNewDecrypt (parser *PdfParser ,ed ,trailer *PdfObjectDictionary )(*PdfCrypt ,error ){_dcca :=&PdfCrypt {_dfe :false ,_ecee :make (map[PdfObject ]bool ),_fee :make (map[PdfObject ]bool ),_cdda :make (map[int ]struct{}),_ada :parser };_bg ,_dab :=ed .Get ("\u0046\u0069\u006c\u0074\u0065\u0072").(*PdfObjectName ); +if !_dab {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0043\u0072\u0079\u0070\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079 \u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0046i\u006c\u0074\u0065\u0072\u0020\u0066\u0069\u0065\u006c\u0064\u0021"); +return _dcca ,_c .New ("r\u0065\u0071\u0075\u0069\u0072\u0065d\u0020\u0063\u0072\u0079\u0070\u0074 \u0066\u0069\u0065\u006c\u0064\u0020\u0046i\u006c\u0074\u0065\u0072\u0020\u006d\u0069\u0073\u0073\u0069n\u0067");};if *_bg !="\u0053\u0074\u0061\u006e\u0064\u0061\u0072\u0064"{_a .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020(%\u0073\u0029",*_bg ); +return _dcca ,_c .New ("\u0075n\u0073u\u0070\u0070\u006f\u0072\u0074e\u0064\u0020F\u0069\u006c\u0074\u0065\u0072");};_dcca ._ceae .Filter =string (*_bg );if _dde ,_edbe :=ed .Get ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r").(*PdfObjectString );_edbe {_dcca ._ceae .SubFilter =_dde .Str (); +_a .Log .Debug ("\u0055s\u0069n\u0067\u0020\u0073\u0075\u0062f\u0069\u006ct\u0065\u0072\u0020\u0025\u0073",_dde );};if L ,_abe :=ed .Get ("\u004c\u0065\u006e\u0067\u0074\u0068").(*PdfObjectInteger );_abe {if (*L %8)!=0{_a .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0049\u006ev\u0061\u006c\u0069\u0064\u0020\u0065\u006ec\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u006c\u0065\u006e\u0067\u0074\u0068"); +return _dcca ,_c .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0065\u006e\u0063\u0072y\u0070t\u0069o\u006e\u0020\u006c\u0065\u006e\u0067\u0074h");};_dcca ._ceae .Length =int (*L );}else {_dcca ._ceae .Length =40;};_dcca ._ceae .V =0;if _fgg ,_egaf :=ed .Get ("\u0056").(*PdfObjectInteger ); +_egaf {V :=int (*_fgg );_dcca ._ceae .V =V ;if V >=1&&V <=2{_dcca ._deg =_aea (_dcca ._ceae .Length );}else if V >=4&&V <=5{if _eab :=_dcca .loadCryptFilters (ed );_eab !=nil {return _dcca ,_eab ;};}else {_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065n\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u0061lg\u006f\u0020\u0056 \u003d \u0025\u0064",V ); +return _dcca ,_c .New ("u\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0061\u006cg\u006f\u0072\u0069\u0074\u0068\u006d");};};if _aeae :=_eceb (&_dcca ._aec ,ed );_aeae !=nil {return _dcca ,_aeae ;};_baef :="";if _ebg ,_fadd :=trailer .Get ("\u0049\u0044").(*PdfObjectArray ); +_fadd &&_ebg .Len ()>=1{_ead ,_fea :=GetString (_ebg .Get (0));if !_fea {return _dcca ,_c .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0074r\u0061\u0069l\u0065\u0072\u0020\u0049\u0044");};_baef =_ead .Str ();}else {_a .Log .Debug ("\u0054\u0072ai\u006c\u0065\u0072 \u0049\u0044\u0020\u0061rra\u0079 m\u0069\u0073\u0073\u0069\u006e\u0067\u0020or\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0021"); +};_dcca ._abf =_baef ;return _dcca ,nil ;}; -// String returns a string describing `array`. -func (_fccf *PdfObjectArray )String ()string {_fdge :="\u005b";for _bccg ,_ebef :=range _fccf .Elements (){_fdge +=_ebef .String ();if _bccg < (_fccf .Len ()-1){_fdge +="\u002c\u0020";};};_fdge +="\u005d";return _fdge ;}; +// UpdateParams updates the parameter values of the encoder. +func (_bgcd *RunLengthEncoder )UpdateParams (params *PdfObjectDictionary ){}; -// FlattenObject returns the contents of `obj`. In other words, `obj` with indirect objects replaced -// by their values. -// The replacements are made recursively to a depth of traceMaxDepth. -// NOTE: Dicts are sorted to make objects with same contents have the same PDF object strings. -func FlattenObject (obj PdfObject )PdfObject {return _aefg (obj ,0)};func (_aeaa *PdfCrypt )authenticate (_gee []byte )(bool ,error ){_aeaa ._bag =false ;_fgd :=_aeaa .securityHandler ();_acc ,_aecc ,_aeccf :=_fgd .Authenticate (&_aeaa ._af ,_gee );if _aeccf !=nil {return false ,_aeccf ; -}else if _aecc ==0||len (_acc )==0{return false ,nil ;};_aeaa ._bag =true ;_aeaa ._fedc =_acc ;return true ,nil ;};var _dgff _d .Map ; +// MakeDictMap creates a PdfObjectDictionary initialized from a map of keys to values. +func MakeDictMap (objmap map[string ]PdfObject )*PdfObjectDictionary {_dgdfe :=MakeDict ();return _dgdfe .Update (objmap );}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_dgcf *JBIG2Encoder )MakeStreamDict ()*PdfObjectDictionary {_bgde :=MakeDict ();_bgde .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_dgcf .GetFilterName ()));return _bgde ;}; +// LookupByNumber looks up a PdfObject by object number. Returns an error on failure. +func (_dad *PdfParser )LookupByNumber (objNumber int )(PdfObject ,error ){_ad ,_ ,_dada :=_dad .lookupByNumberWrapper (objNumber ,true );return _ad ,_dada ;}; -// WriteString outputs the object as it is to be written to file. -func (_ffde *PdfIndirectObject )WriteString ()string {var _aage _c .Builder ;_aage .WriteString (_bf .FormatInt (_ffde .ObjectNumber ,10));_aage .WriteString ("\u0020\u0030\u0020\u0052");return _aage .String ();};const _dbbgc =32<<(^uint (0)>>63); +// GetNameVal returns the string value represented by the PdfObject directly or indirectly if +// contained within an indirect object. On type mismatch the found bool flag returned is false and +// an empty string is returned. +func GetNameVal (obj PdfObject )(_cddeb string ,_aegb bool ){_ebge ,_aegb :=TraceToDirectObject (obj ).(*PdfObjectName );if _aegb {return string (*_ebge ),true ;};return ;}; -// Version represents a version of a PDF standard. -type Version struct{Major int ;Minor int ;}; +// RegisterCustomStreamEncoder register a custom encoder handler for certain filter. +func RegisterCustomStreamEncoder (filterName string ,customStreamEncoder StreamEncoder ){_gfcec .Store (filterName ,customStreamEncoder );}; -// GetFloat returns the *PdfObjectFloat represented by the PdfObject directly or indirectly within an indirect -// object. On type mismatch the found bool flag is false and a nil pointer is returned. -func GetFloat (obj PdfObject )(_cgeeb *PdfObjectFloat ,_ggca bool ){_cgeeb ,_ggca =TraceToDirectObject (obj ).(*PdfObjectFloat );return _cgeeb ,_ggca ;}; +// Encode encodes previously prepare jbig2 document and stores it as the byte slice. +func (_gabd *JBIG2Encoder )Encode ()(_afcae []byte ,_ffad error ){const _gffd ="J\u0042I\u0047\u0032\u0044\u006f\u0063\u0075\u006d\u0065n\u0074\u002e\u0045\u006eco\u0064\u0065";if _gabd ._feg ==nil {return nil ,_dd .Errorf (_gffd ,"\u0064\u006f\u0063u\u006d\u0065\u006e\u0074 \u0069\u006e\u0070\u0075\u0074\u0020\u0064a\u0074\u0061\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};_gabd ._feg .FullHeaders =_gabd .DefaultPageSettings .FileMode ;_afcae ,_ffad =_gabd ._feg .Encode ();if _ffad !=nil {return nil ,_dd .Wrap (_ffad ,_gffd ,"");};return _afcae ,nil ;};var _faaga =_ce .MustCompile ("\u005e\u005b\u005c\u002b\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d9\u002e\u005d\u002b\u0029"); -// DecodeBytes decodes the CCITTFax encoded image data. -func (_decdg *CCITTFaxEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_eebef ,_fgg :=_cf .NewDecoder (encoded ,_cf .DecodeOptions {Columns :_decdg .Columns ,Rows :_decdg .Rows ,K :_decdg .K ,EncodedByteAligned :_decdg .EncodedByteAlign ,BlackIsOne :_decdg .BlackIs1 ,EndOfBlock :_decdg .EndOfBlock ,EndOfLine :_decdg .EndOfLine ,DamagedRowsBeforeError :_decdg .DamagedRowsBeforeError }); -if _fgg !=nil {return nil ,_fgg ;};_bcad ,_fgg :=_a .ReadAll (_eebef );if _fgg !=nil {return nil ,_fgg ;};return _bcad ,nil ;};var _gbfc =[]PdfObjectName {"\u0056","\u0052","\u004f","\u0055","\u0050"}; -// GetFilterName returns the name of the encoding filter. -func (_bfg *CCITTFaxEncoder )GetFilterName ()string {return StreamEncodingFilterNameCCITTFax }; +// MakeInteger creates a PdfObjectInteger from an int64. +func MakeInteger (val int64 )*PdfObjectInteger {_adfe :=PdfObjectInteger (val );return &_adfe };func (_bbgb *offsetReader )Read (p []byte )(_cdad int ,_afdbd error ){return _bbgb ._gfgc .Read (p )}; -// GetFloatVal returns the float64 value represented by the PdfObject directly or indirectly if contained within an -// indirect object. On type mismatch the found bool flag returned is false and a nil pointer is returned. -func GetFloatVal (obj PdfObject )(_cgadg float64 ,_dbgb bool ){_cddg ,_dbgb :=TraceToDirectObject (obj ).(*PdfObjectFloat );if _dbgb {return float64 (*_cddg ),true ;};return 0,false ;}; +// JBIG2EncoderSettings contains the parameters and settings used by the JBIG2Encoder. +// Current version works only on JB2Generic compression. +type JBIG2EncoderSettings struct{ -// DecodeStream decodes a LZW encoded stream and returns the result as a -// slice of bytes. -func (_fcdf *LZWEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_ecd .Log .Trace ("\u004c\u005a\u0057 \u0044\u0065\u0063\u006f\u0064\u0069\u006e\u0067");_ecd .Log .Trace ("\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",_fcdf .Predictor ); -_ebag ,_ddac :=_fcdf .DecodeBytes (streamObj .Stream );if _ddac !=nil {return nil ,_ddac ;};_ecd .Log .Trace ("\u0020\u0049\u004e\u003a\u0020\u0028\u0025\u0064\u0029\u0020\u0025\u0020\u0078",len (streamObj .Stream ),streamObj .Stream );_ecd .Log .Trace ("\u004f\u0055\u0054\u003a\u0020\u0028\u0025\u0064\u0029\u0020\u0025\u0020\u0078",len (_ebag ),_ebag ); -if _fcdf .Predictor > 1{if _fcdf .Predictor ==2{_ecd .Log .Trace ("\u0054\u0069\u0066\u0066\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067");_abeb :=_fcdf .Columns *_fcdf .Colors ;if _abeb < 1{return []byte {},nil ;};_badc :=len (_ebag )/_abeb ; -if len (_ebag )%_abeb !=0{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020T\u0049\u0046\u0046 \u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002e\u002e\u002e"); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_ebag ),_abeb );};if _abeb %_fcdf .Colors !=0{return nil ,_daa .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0072\u006fw\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020(\u0025\u0064\u0029\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u006c\u006fr\u0073\u0020\u0025\u0064",_abeb ,_fcdf .Colors ); -};if _abeb > len (_ebag ){_ecd .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_abeb ,len (_ebag )); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_ecd .Log .Trace ("i\u006e\u0070\u0020\u006fut\u0044a\u0074\u0061\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (_ebag ),_ebag ); -_aece :=_fb .NewBuffer (nil );for _cfbg :=0;_cfbg < _badc ;_cfbg ++{_geac :=_ebag [_abeb *_cfbg :_abeb *(_cfbg +1)];for _aacf :=_fcdf .Colors ;_aacf < _abeb ;_aacf ++{_geac [_aacf ]=byte (int (_geac [_aacf ]+_geac [_aacf -_fcdf .Colors ])%256);};_aece .Write (_geac ); -};_egb :=_aece .Bytes ();_ecd .Log .Trace ("\u0050O\u0075t\u0044\u0061\u0074\u0061\u0020(\u0025\u0064)\u003a\u0020\u0025\u0020\u0078",len (_egb ),_egb );return _egb ,nil ;}else if _fcdf .Predictor >=10&&_fcdf .Predictor <=15{_ecd .Log .Trace ("\u0050\u004e\u0047 \u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -_caffg :=_fcdf .Columns *_fcdf .Colors +1;if _caffg < 1{return []byte {},nil ;};_ceeb :=len (_ebag )/_caffg ;if len (_ebag )%_caffg !=0{return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_ebag ),_caffg ); -};if _caffg > len (_ebag ){_ecd .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_caffg ,len (_ebag )); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_dceag :=_fb .NewBuffer (nil );_ecd .Log .Trace ("P\u0072\u0065\u0064\u0069ct\u006fr\u0020\u0063\u006f\u006c\u0075m\u006e\u0073\u003a\u0020\u0025\u0064",_fcdf .Columns ); -_ecd .Log .Trace ("\u004ce\u006e\u0067\u0074\u0068:\u0020\u0025\u0064\u0020\u002f \u0025d\u0020=\u0020\u0025\u0064\u0020\u0072\u006f\u0077s",len (_ebag ),_caffg ,_ceeb );_baeb :=make ([]byte ,_caffg );for _edda :=0;_edda < _caffg ;_edda ++{_baeb [_edda ]=0; -};for _cgd :=0;_cgd < _ceeb ;_cgd ++{_agfa :=_ebag [_caffg *_cgd :_caffg *(_cgd +1)];_cbd :=_agfa [0];switch _cbd {case 0:case 1:for _dbfg :=2;_dbfg < _caffg ;_dbfg ++{_agfa [_dbfg ]=byte (int (_agfa [_dbfg ]+_agfa [_dbfg -1])%256);};case 2:for _daabe :=1; -_daabe < _caffg ;_daabe ++{_agfa [_daabe ]=byte (int (_agfa [_daabe ]+_baeb [_daabe ])%256);};default:_ecd .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0066i\u006c\u0074\u0065\u0072\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029",_cbd ); -return nil ,_daa .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0066\u0069\u006c\u0074\u0065r\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029",_cbd );};for _dage :=0;_dage < _caffg ;_dage ++{_baeb [_dage ]=_agfa [_dage ];};_dceag .Write (_agfa [1:]); -};_bdge :=_dceag .Bytes ();return _bdge ,nil ;}else {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072 \u0028\u0025\u0064\u0029",_fcdf .Predictor ); -return nil ,_daa .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0070\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020(\u0025\u0064\u0029",_fcdf .Predictor );};};return _ebag ,nil ;};const _cdcg =6; +// FileMode defines if the jbig2 encoder should return full jbig2 file instead of +// shortened pdf mode. This adds the file header to the jbig2 definition. +FileMode bool ; -// DecodeBytes decodes a slice of JPX encoded bytes and returns the result. -func (_efgb *JPXEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0041t\u0074\u0065\u006dpt\u0069\u006e\u0067\u0020\u0074\u006f \u0075\u0073\u0065\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0073",_efgb .GetFilterName ()); -return encoded ,ErrNoJPXDecode ;}; +// Compression is the setting that defines the compression type used for encoding the page. +Compression JBIG2CompressionType ; -// Set sets the dictionary's key -> val mapping entry. Overwrites if key already set. -func (_efef *PdfObjectDictionary )Set (key PdfObjectName ,val PdfObject ){_efef .setWithLock (key ,val ,true );};func _addg (_fdee _ae .ReadSeeker ,_bgge int64 )(*offsetReader ,error ){_gbbg :=&offsetReader {_fgba :_fdee ,_febb :_bgge };_ ,_cfea :=_gbbg .Seek (0,_ae .SeekStart ); -return _gbbg ,_cfea ;}; +// DuplicatedLinesRemoval code generic region in a way such that if the lines are duplicated the encoder +// doesn't store it twice. +DuplicatedLinesRemoval bool ; -// MakeName creates a PdfObjectName from a string. -func MakeName (s string )*PdfObjectName {_cccgg :=PdfObjectName (s );return &_cccgg }; +// DefaultPixelValue is the bit value initial for every pixel in the page. +DefaultPixelValue uint8 ; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -// Has the Filter set and the DecodeParms. -func (_cbfe *LZWEncoder )MakeStreamDict ()*PdfObjectDictionary {_efca :=MakeDict ();_efca .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_cbfe .GetFilterName ()));_bdfe :=_cbfe .MakeDecodeParams ();if _bdfe !=nil {_efca .Set ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_bdfe ); -};_efca .Set ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065",MakeInteger (int64 (_cbfe .EarlyChange )));return _efca ;};type objectStream struct{N int ;_ad []byte ;_bb map[int ]int64 ;}; +// ResolutionX optional setting that defines the 'x' axis input image resolution - used for single page encoding. +ResolutionX int ; -// DecodeStream decodes the stream containing CCITTFax encoded image data. -func (_ffea *CCITTFaxEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _ffea .DecodeBytes (streamObj .Stream );}; +// ResolutionY optional setting that defines the 'y' axis input image resolution - used for single page encoding. +ResolutionY int ; -// DecodeBytes decodes a slice of ASCII encoded bytes and returns the result. -func (_egff *ASCIIHexEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_geag :=_fb .NewReader (encoded );var _fgaa []byte ;for {_ada ,_dacf :=_geag .ReadByte ();if _dacf !=nil {return nil ,_dacf ;};if _ada =='>'{break ;};if IsWhiteSpace (_ada ){continue ; -};if (_ada >='a'&&_ada <='f')||(_ada >='A'&&_ada <='F')||(_ada >='0'&&_ada <='9'){_fgaa =append (_fgaa ,_ada );}else {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0061\u0073\u0063\u0069\u0069 \u0068\u0065\u0078\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072 \u0028\u0025\u0063\u0029",_ada ); -return nil ,_daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0061\u0073\u0063\u0069\u0069\u0020\u0068e\u0078 \u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0028\u0025\u0063\u0029",_ada );};};if len (_fgaa )%2==1{_fgaa =append (_fgaa ,'0'); -};_ecd .Log .Trace ("\u0049\u006e\u0062\u006f\u0075\u006e\u0064\u0020\u0025\u0073",_fgaa );_afac :=make ([]byte ,_dc .DecodedLen (len (_fgaa )));_ ,_gfcb :=_dc .Decode (_afac ,_fgaa );if _gfcb !=nil {return nil ,_gfcb ;};return _afac ,nil ;}; +// Threshold defines the threshold of the image correlation for +// non Generic compression. +// User only for JB2SymbolCorrelation and JB2SymbolRankHaus methods. +// Best results in range [0.7 - 0.98] - the less the better the compression would be +// but the more lossy. +// Default value: 0.95 +Threshold float64 ;}; -// UpdateParams updates the parameter values of the encoder. -func (_efeba *MultiEncoder )UpdateParams (params *PdfObjectDictionary ){for _ ,_eafc :=range _efeba ._degb {_eafc .UpdateParams (params );};}; +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_edgaa *RawEncoder )MakeDecodeParams ()PdfObject {return nil }; -// Decoded returns the PDFDocEncoding or UTF-16BE decoded string contents. -// UTF-16BE is applied when the first two bytes are 0xFE, 0XFF, otherwise decoding of -// PDFDocEncoding is performed. -func (_eabef *PdfObjectString )Decoded ()string {if _eabef ==nil {return "";};_efbg :=[]byte (_eabef ._cceg );if len (_efbg )>=2&&_efbg [0]==0xFE&&_efbg [1]==0xFF{return _ce .UTF16ToString (_efbg [2:]);};return _ce .PDFDocEncodingToString (_efbg );}; +// HasDataAfterEOF checks if there is some data after EOF marker. +func (_gga ParserMetadata )HasDataAfterEOF ()bool {return _gga ._ccbc }; -// GetFilterName returns the name of the encoding filter. -func (_ddebg *ASCII85Encoder )GetFilterName ()string {return StreamEncodingFilterNameASCII85 };func (_cfdg *PdfParser )parseXrefStream (_daag *PdfObjectInteger )(*PdfObjectDictionary ,error ){if _daag !=nil {_ecd .Log .Trace ("\u0058\u0052\u0065f\u0053\u0074\u006d\u0020x\u0072\u0065\u0066\u0020\u0074\u0061\u0062l\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0061\u0074\u0020\u0025\u0064",_daag ); -_cfdg ._ccgbe .Seek (int64 (*_daag ),_ae .SeekStart );_cfdg ._affd =_ga .NewReader (_cfdg ._ccgbe );};_dcdc :=_cfdg .GetFileOffset ();_ebddg ,_dcafa :=_cfdg .ParseIndirectObject ();if _dcafa !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072\u0065\u0061d\u0020\u0078\u0072\u0065\u0066\u0020\u006fb\u006a\u0065\u0063\u0074"); -return nil ,_f .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072e\u0061\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u006f\u0062j\u0065\u0063\u0074");};_ecd .Log .Trace ("\u0058R\u0065f\u0053\u0074\u006d\u0020\u006fb\u006a\u0065c\u0074\u003a\u0020\u0025\u0073",_ebddg ); -_ccea ,_aeeg :=_ebddg .(*PdfObjectStream );if !_aeeg {_ecd .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0058R\u0065\u0066\u0053\u0074\u006d\u0020\u0070o\u0069\u006e\u0074\u0069\u006e\u0067 \u0074\u006f\u0020\u006e\u006f\u006e\u002d\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0021"); -return nil ,_f .New ("\u0058\u0052\u0065\u0066\u0053\u0074\u006d\u0020\u0070\u006f\u0069\u006e\u0074i\u006e\u0067\u0020\u0074\u006f\u0020a\u0020\u006e\u006f\u006e\u002d\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006fb\u006a\u0065\u0063\u0074");};_cbdb :=_ccea .PdfObjectDictionary ; -_abfd ,_aeeg :=_ccea .PdfObjectDictionary .Get ("\u0053\u0069\u007a\u0065").(*PdfObjectInteger );if !_aeeg {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0073\u0069\u007a\u0065\u0020f\u0072\u006f\u006d\u0020\u0078\u0072\u0065f\u0020\u0073\u0074\u006d"); -return nil ,_f .New ("\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0053\u0069\u007ae\u0020\u0066\u0072\u006f\u006d\u0020\u0078\u0072\u0065\u0066 \u0073\u0074\u006d");};if int64 (*_abfd )> 8388607{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0078\u0072\u0065\u0066\u0020\u0053\u0069\u007a\u0065\u0020\u0065x\u0063\u0065\u0065\u0064\u0065\u0064\u0020l\u0069\u006d\u0069\u0074\u002c\u0020\u006f\u0076\u0065\u0072\u00208\u0033\u0038\u0038\u0036\u0030\u0037\u0020\u0028\u0025\u0064\u0029",*_abfd ); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_gfab :=_ccea .PdfObjectDictionary .Get ("\u0057");_fada ,_aeeg :=_gfab .(*PdfObjectArray );if !_aeeg {return nil ,_f .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0020\u0069\u006e\u0020x\u0072\u0065\u0066\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); -};_beaa :=_fada .Len ();if _beaa !=3{_ecd .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u0073\u0074\u006d\u0020\u0028\u006c\u0065\u006e\u0028\u0057\u0029\u0020\u0021\u003d\u0020\u0033\u0020\u002d\u0020\u0025\u0064\u0029",_beaa ); -return nil ,_f .New ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0078\u0072\u0065f\u0020s\u0074\u006d\u0020\u006c\u0065\u006e\u0028\u0057\u0029\u0020\u0021\u003d\u0020\u0033");};var _gebf []int64 ;for _cedbf :=0;_cedbf < 3; -_cedbf ++{_afge ,_gdfg :=GetInt (_fada .Get (_cedbf ));if !_gdfg {return nil ,_f .New ("i\u006e\u0076\u0061\u006cid\u0020w\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0074\u0079\u0070\u0065");};_gebf =append (_gebf ,int64 (*_afge ));};_acca ,_dcafa :=DecodeStream (_ccea ); -if _dcafa !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020t\u006f \u0064e\u0063o\u0064\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_dcafa );return nil ,_dcafa ;};_dcgaf :=int (_gebf [0]); -_fcgg :=int (_gebf [0]+_gebf [1]);_agee :=int (_gebf [0]+_gebf [1]+_gebf [2]);_degg :=int (_gebf [0]+_gebf [1]+_gebf [2]);if _dcgaf < 0||_fcgg < 0||_agee < 0{_ecd .Log .Debug ("\u0045\u0072\u0072\u006fr\u0020\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u003c \u0030 \u0028\u0025\u0064\u002c\u0025\u0064\u002c%\u0064\u0029",_dcgaf ,_fcgg ,_agee ); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};if _degg ==0{_ecd .Log .Debug ("\u004e\u006f\u0020\u0078\u0072\u0065\u0066\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0069\u006e\u0020\u0073t\u0072\u0065\u0061\u006d\u0020\u0028\u0064\u0065\u006c\u0074\u0061\u0062\u0020=\u003d\u0020\u0030\u0029"); -return _cbdb ,nil ;};_cafg :=len (_acca )/_degg ;_bbgc :=0;_dcdb :=_ccea .PdfObjectDictionary .Get ("\u0049\u006e\u0064e\u0078");var _ccggg []int ;if _dcdb !=nil {_ecd .Log .Trace ("\u0049n\u0064\u0065\u0078\u003a\u0020\u0025b",_dcdb );_ggdc ,_bcfd :=_dcdb .(*PdfObjectArray ); -if !_bcfd {_ecd .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u0049\u006e\u0064\u0065\u0078\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0028\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0029"); -return nil ,_f .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0049\u006e\u0064e\u0078\u0020\u006f\u0062je\u0063\u0074");};if _ggdc .Len ()%2!=0{_ecd .Log .Debug ("\u0057\u0041\u0052\u004eI\u004e\u0047\u0020\u0046\u0061\u0069\u006c\u0075\u0072e\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0078\u0072\u0065\u0066\u0020\u0073\u0074\u006d\u0020i\u006e\u0064\u0065\u0078\u0020n\u006f\u0074\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020\u006f\u0066\u0020\u0032\u002e"); -return nil ,_f .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_bbgc =0;_ebac ,_fcdb :=_ggdc .ToIntegerArray ();if _fcdb !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072 \u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u006e\u0064\u0065\u0078 \u0061\u0072\u0072\u0061\u0079\u0020\u0061\u0073\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0073\u003a\u0020\u0025\u0076",_fcdb ); -return nil ,_fcdb ;};for _bbfad :=0;_bbfad < len (_ebac );_bbfad +=2{_abbgb :=_ebac [_bbfad ];_bcdg :=_ebac [_bbfad +1];for _abge :=0;_abge < _bcdg ;_abge ++{_ccggg =append (_ccggg ,_abbgb +_abge );};_bbgc +=_bcdg ;};}else {for _cfbd :=0;_cfbd < int (*_abfd ); -_cfbd ++{_ccggg =append (_ccggg ,_cfbd );};_bbgc =int (*_abfd );};if _cafg ==_bbgc +1{_ecd .Log .Debug ("\u0049n\u0063\u006f\u006d\u0070ati\u0062\u0069\u006c\u0069t\u0079\u003a\u0020\u0049\u006e\u0064\u0065\u0078\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u0076\u0065\u0072\u0061\u0067\u0065\u0020\u006f\u0066\u0020\u0031\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u002d\u0020\u0061\u0070\u0070en\u0064\u0069\u006eg\u0020\u006f\u006e\u0065\u0020-\u0020M\u0061\u0079\u0020\u006c\u0065\u0061\u0064\u0020\u0074o\u0020\u0070\u0072\u006f\u0062\u006c\u0065\u006d\u0073"); -_dcfa :=_bbgc -1;for _ ,_dbfb :=range _ccggg {if _dbfb > _dcfa {_dcfa =_dbfb ;};};_ccggg =append (_ccggg ,_dcfa +1);_bbgc ++;};if _cafg !=len (_ccggg ){_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020x\u0072\u0065\u0066 \u0073\u0074\u006d:\u0020\u006eu\u006d\u0020\u0065\u006e\u0074\u0072i\u0065s \u0021\u003d\u0020\u006c\u0065\u006e\u0028\u0069\u006e\u0064\u0069\u0063\u0065\u0073\u0029\u0020\u0028\u0025\u0064\u0020\u0021\u003d\u0020\u0025\u0064\u0029",_cafg ,len (_ccggg )); -return nil ,_f .New ("\u0078\u0072ef\u0020\u0073\u0074m\u0020\u006e\u0075\u006d en\u0074ri\u0065\u0073\u0020\u0021\u003d\u0020\u006cen\u0028\u0069\u006e\u0064\u0069\u0063\u0065s\u0029");};_ecd .Log .Trace ("\u004f\u0062j\u0065\u0063\u0074s\u0020\u0063\u006f\u0075\u006e\u0074\u0020\u0025\u0064",_bbgc ); -_ecd .Log .Trace ("\u0049\u006e\u0064i\u0063\u0065\u0073\u003a\u0020\u0025\u0020\u0064",_ccggg );_eecg :=func (_efeaa []byte )int64 {var _fffa int64 ;for _cebg :=0;_cebg < len (_efeaa );_cebg ++{_fffa +=int64 (_efeaa [_cebg ])*(1<=len (_ccggg ){_ecd .Log .Debug ("X\u0052\u0065\u0066\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u002d\u0020\u0054\u0072\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0061\u0063\u0063e\u0073s\u0020\u0069\u006e\u0064e\u0078\u0020o\u0075\u0074\u0020\u006f\u0066\u0020\u0062\u006f\u0075\u006e\u0064\u0073\u0020\u002d\u0020\u0062\u0072\u0065\u0061\u006b\u0069\u006e\u0067"); -break ;};_dabb :=_ccggg [_cgcfg ];_cgcfg ++;_ecd .Log .Trace ("%\u0064\u002e\u0020\u0070\u0031\u003a\u0020\u0025\u0020\u0078",_dabb ,_ecgb );_ecd .Log .Trace ("%\u0064\u002e\u0020\u0070\u0032\u003a\u0020\u0025\u0020\u0078",_dabb ,_eded );_ecd .Log .Trace ("%\u0064\u002e\u0020\u0070\u0033\u003a\u0020\u0025\u0020\u0078",_dabb ,_cfg ); -_ecd .Log .Trace ("\u0025d\u002e \u0078\u0072\u0065\u0066\u003a \u0025\u0064 \u0025\u0064\u0020\u0025\u0064",_dabb ,_abead ,_dgfc ,_cbaf );if _abead ==0{_ecd .Log .Trace ("-\u0020\u0046\u0072\u0065\u0065\u0020o\u0062\u006a\u0065\u0063\u0074\u0020-\u0020\u0063\u0061\u006e\u0020\u0070\u0072o\u0062\u0061\u0062\u006c\u0079\u0020\u0069\u0067\u006e\u006fr\u0065"); -}else if _abead ==1{_ecd .Log .Trace ("\u002d\u0020I\u006e\u0020\u0075\u0073e\u0020\u002d \u0075\u006e\u0063\u006f\u006d\u0070\u0072\u0065s\u0073\u0065\u0064\u0020\u0076\u0069\u0061\u0020\u006f\u0066\u0066\u0073e\u0074\u0020\u0025\u0062",_eded );if _dgfc ==_dcdc {_ecd .Log .Debug ("\u0055\u0070d\u0061\u0074\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0058\u0052\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0025\u0064\u0020\u002d\u003e\u0020\u0025\u0064",_dabb ,_ccea .ObjectNumber ); -_dabb =int (_ccea .ObjectNumber );};if _gceg ,_ebaa :=_cfdg ._efdgc .ObjectMap [_dabb ];!_ebaa ||int (_cbaf )> _gceg .Generation {_cfbba :=XrefObject {ObjectNumber :_dabb ,XType :XrefTypeTableEntry ,Offset :_dgfc ,Generation :int (_cbaf )};_cfdg ._efdgc .ObjectMap [_dabb ]=_cfbba ; -};}else if _abead ==2{_ecd .Log .Trace ("\u002d\u0020\u0049\u006e \u0075\u0073\u0065\u0020\u002d\u0020\u0063\u006f\u006d\u0070r\u0065s\u0073\u0065\u0064\u0020\u006f\u0062\u006ae\u0063\u0074");if _ ,_bdee :=_cfdg ._efdgc .ObjectMap [_dabb ];!_bdee {_gdeg :=XrefObject {ObjectNumber :_dabb ,XType :XrefTypeObjectStream ,OsObjNumber :int (_dgfc ),OsObjIndex :int (_cbaf )}; -_cfdg ._efdgc .ObjectMap [_dabb ]=_gdeg ;_ecd .Log .Trace ("\u0065\u006e\u0074\u0072\u0079\u003a\u0020\u0025\u002b\u0076",_gdeg );};}else {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u0049\u004e\u0056\u0041L\u0049\u0044\u0020\u0054\u0059\u0050\u0045\u0020\u0058\u0072\u0065\u0066\u0053\u0074\u006d\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u003f\u002d\u002d\u002d\u002d\u002d\u002d-"); -continue ;};};if _cfdg ._ceae ==nil {_eabc :=XrefTypeObjectStream ;_cfdg ._ceae =&_eabc ;};return _cbdb ,nil ;}; +// LookupByReference looks up a PdfObject by a reference. +func (_fad *PdfParser )LookupByReference (ref PdfObjectReference )(PdfObject ,error ){_a .Log .Trace ("\u004c\u006f\u006fki\u006e\u0067\u0020\u0075\u0070\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0025\u0073",ref .String ());return _fad .LookupByNumber (int (ref .ObjectNumber )); +};func (_bdg *PdfParser )lookupByNumber (_cafa int ,_gae bool )(PdfObject ,bool ,error ){_bfg ,_ee :=_bdg .ObjCache [_cafa ];if _ee {_a .Log .Trace ("\u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0063a\u0063\u0068\u0065\u0064\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0025\u0064",_cafa ); +return _bfg ,false ,nil ;};if _bdg ._eeaa ==nil {_bdg ._eeaa =map[int ]bool {};};if _bdg ._eeaa [_cafa ]{_a .Log .Debug ("ER\u0052\u004f\u0052\u003a\u0020\u004c\u006fok\u0075\u0070\u0020\u006f\u0066\u0020\u0025\u0064\u0020\u0069\u0073\u0020\u0061\u006c\u0072e\u0061\u0064\u0079\u0020\u0069\u006e\u0020\u0070\u0072\u006f\u0067\u0072\u0065\u0073\u0073\u0020\u002d\u0020\u0072\u0065c\u0075\u0072\u0073\u0069\u0076\u0065 \u006c\u006f\u006f\u006b\u0075\u0070\u0020\u0061\u0074t\u0065m\u0070\u0074\u0020\u0062\u006c\u006f\u0063\u006b\u0065\u0064",_cafa ); +return nil ,false ,_c .New ("\u0072\u0065\u0063\u0075\u0072\u0073\u0069\u0076\u0065\u0020\u006c\u006f\u006f\u006b\u0075p\u0020a\u0074\u0074\u0065\u006d\u0070\u0074\u0020\u0062\u006c\u006f\u0063\u006b\u0065\u0064");};_bdg ._eeaa [_cafa ]=true ;defer delete (_bdg ._eeaa ,_cafa ); +_cef ,_ee :=_bdg ._bbdf .ObjectMap [_cafa ];if !_ee {_a .Log .Trace ("\u0055\u006e\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u006c\u006f\u0063\u0061t\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u006e\u0020\u0078\u0072\u0065\u0066\u0073\u0021 \u002d\u0020\u0052\u0065\u0074u\u0072\u006e\u0069\u006e\u0067\u0020\u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +var _dfg PdfObjectNull ;return &_dfg ,false ,nil ;};_a .Log .Trace ("L\u006fo\u006b\u0075\u0070\u0020\u006f\u0062\u006a\u0020n\u0075\u006d\u0062\u0065r \u0025\u0064",_cafa );if _cef .XType ==XrefTypeTableEntry {_a .Log .Trace ("\u0078r\u0065f\u006f\u0062\u006a\u0020\u006fb\u006a\u0020n\u0075\u006d\u0020\u0025\u0064",_cef .ObjectNumber ); +_a .Log .Trace ("\u0078\u0072\u0065\u0066\u006f\u0062\u006a\u0020\u0067e\u006e\u0020\u0025\u0064",_cef .Generation );_a .Log .Trace ("\u0078\u0072\u0065\u0066\u006f\u0062\u006a\u0020\u006f\u0066\u0066\u0073e\u0074\u0020\u0025\u0064",_cef .Offset );_bdg ._dfcdg .Seek (_cef .Offset ,_fg .SeekStart ); +_bdg ._ffbg =_bfc .NewReader (_bdg ._dfcdg );_aa ,_dfa :=_bdg .ParseIndirectObject ();if _dfa !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0046\u0061\u0069\u006ce\u0064\u0020\u0072\u0065\u0061\u0064\u0069n\u0067\u0020\u0078\u0072\u0065\u0066\u0020\u0028\u0025\u0073\u0029",_dfa ); +if _gae {_a .Log .Debug ("\u0041\u0074t\u0065\u006d\u0070\u0074i\u006e\u0067 \u0074\u006f\u0020\u0072\u0065\u0070\u0061\u0069r\u0020\u0078\u0072\u0065\u0066\u0073\u0020\u0028\u0074\u006f\u0070\u0020d\u006f\u0077\u006e\u0029");_cad ,_bbg :=_bdg .repairRebuildXrefsTopDown (); +if _bbg !=nil {_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020r\u0065\u0070\u0061\u0069\u0072\u0020\u0028\u0025\u0073\u0029",_bbg );return nil ,false ,_bbg ;};_bdg ._bbdf =*_cad ;return _bdg .lookupByNumber (_cafa ,false ); +};return nil ,false ,_dfa ;};if _gae {_gbd ,_ ,_ :=_ecg (_aa );if int (_gbd )!=_cafa {_a .Log .Debug ("\u0049n\u0076\u0061\u006c\u0069d\u0020\u0078\u0072\u0065\u0066s\u003a \u0052e\u0062\u0075\u0069\u006c\u0064\u0069\u006eg");_edf :=_bdg .rebuildXrefTable (); +if _edf !=nil {return nil ,false ,_edf ;};_bdg .ObjCache =objectCache {};return _bdg .lookupByNumberWrapper (_cafa ,false );};};_a .Log .Trace ("\u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006f\u0062\u006a");_bdg .ObjCache [_cafa ]=_aa ; +return _aa ,false ,nil ;}else if _cef .XType ==XrefTypeObjectStream {_a .Log .Trace ("\u0078r\u0065\u0066\u0020\u0066\u0072\u006f\u006d\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0021");_a .Log .Trace ("\u003e\u004c\u006f\u0061\u0064\u0020\u0076\u0069\u0061\u0020\u004f\u0053\u0021"); +_a .Log .Trace ("\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u0061\u0076\u0061\u0069\u006c\u0061b\u006c\u0065\u0020\u0069\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020%\u0064\u002f\u0025\u0064",_cef .OsObjNumber ,_cef .OsObjIndex ); +if _cef .OsObjNumber ==_cafa {_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0043i\u0072\u0063\u0075\u006c\u0061\u0072\u0020\u0072\u0065f\u0065\u0072\u0065n\u0063e\u0021\u003f\u0021");return nil ,true ,_c .New ("\u0078\u0072\u0065f \u0063\u0069\u0072\u0063\u0075\u006c\u0061\u0072\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065"); +};if _ ,_gfc :=_bdg ._bbdf .ObjectMap [_cef .OsObjNumber ];_gfc {_gff ,_fab :=_bdg .lookupObjectViaOS (_cef .OsObjNumber ,_cafa );if _fab !=nil {_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0052\u0065\u0074\u0075\u0072\u006e\u0069n\u0067\u0020\u0045\u0052\u0052\u0020\u0028\u0025\u0073\u0029",_fab ); +return nil ,true ,_fab ;};_a .Log .Trace ("\u003c\u004c\u006f\u0061\u0064\u0065\u0064\u0020\u0076i\u0061\u0020\u004f\u0053");_bdg .ObjCache [_cafa ]=_gff ;if _bdg ._abae !=nil {_bdg ._abae ._ecee [_gff ]=true ;};return _gff ,true ,nil ;};_a .Log .Debug ("\u003f\u003f\u0020\u0042\u0065\u006c\u006f\u006eg\u0073\u0020\u0074o \u0061\u0020\u006e\u006f\u006e\u002dc\u0072\u006f\u0073\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u002e.\u002e\u0021"); +return nil ,true ,_c .New ("\u006f\u0073\u0020\u0062\u0065\u006c\u006fn\u0067\u0073\u0020t\u006f\u0020\u0061\u0020n\u006f\u006e\u0020\u0063\u0072\u006f\u0073\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +};return nil ,false ,_c .New ("\u0075\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0078\u0072\u0065\u0066 \u0074\u0079\u0070\u0065");};const (XrefTypeTableEntry xrefType =iota ;XrefTypeObjectStream xrefType =iota ;); -// SetPredictor sets the predictor function. Specify the number of columns per row. -// The columns indicates the number of samples per row. -// Used for grouping data together for compression. -func (_ebcd *FlateEncoder )SetPredictor (columns int ){_ebcd .Predictor =11;_ebcd .Columns =columns }; +// PdfObjectDictionary represents the primitive PDF dictionary/map object. +type PdfObjectDictionary struct{_adbeb map[PdfObjectName ]PdfObject ;_caeg []PdfObjectName ;_ccdg *_g .Mutex ;_gdcf *PdfParser ;};func (_caddd *PdfParser )repairSeekXrefMarker ()error {_edbb ,_eadb :=_caddd ._dfcdg .Seek (0,_fg .SeekEnd );if _eadb !=nil {return _eadb ; +};_ecbff :=_ce .MustCompile ("\u005cs\u0078\u0072\u0065\u0066\u005c\u0073*");var _cgff int64 ;var _bged int64 =1000;for _cgff < _edbb {if _edbb <=(_bged +_cgff ){_bged =_edbb -_cgff ;};_ ,_edbda :=_caddd ._dfcdg .Seek (-_cgff -_bged ,_fg .SeekEnd );if _edbda !=nil {return _edbda ; +};_dbag :=make ([]byte ,_bged );_caddd ._dfcdg .Read (_dbag );_a .Log .Trace ("\u004c\u006f\u006fki\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0078\u0072\u0065\u0066\u0020\u003a\u0020\u0022\u0025\u0073\u0022",string (_dbag ));_ccgbb :=_ecbff .FindAllStringIndex (string (_dbag ),-1); +if _ccgbb !=nil {_faaee :=_ccgbb [len (_ccgbb )-1];_a .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_ccgbb );_caddd ._dfcdg .Seek (-_cgff -_bged +int64 (_faaee [0]),_fg .SeekEnd );_caddd ._ffbg =_bfc .NewReader (_caddd ._dfcdg );for {_fgfc ,_aeaf :=_caddd ._ffbg .Peek (1); +if _aeaf !=nil {return _aeaf ;};_a .Log .Trace ("\u0042\u003a\u0020\u0025\u0064\u0020\u0025\u0063",_fgfc [0],_fgfc [0]);if !IsWhiteSpace (_fgfc [0]){break ;};_caddd ._ffbg .Discard (1);};return nil ;};_a .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006eg\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0021\u0020\u002d\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020s\u0065e\u006b\u0069\u006e\u0067"); +_cgff +=_bged ;};_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0058\u0072\u0065\u0066\u0020\u0074a\u0062\u006c\u0065\u0020\u006d\u0061r\u006b\u0065\u0072\u0020\u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u002e"); +return _c .New ("\u0078r\u0065f\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020");}; -// MultiEncoder supports serial encoding. -type MultiEncoder struct{_degb []StreamEncoder }; +// Clear resets the dictionary to an empty state. +func (_gccca *PdfObjectDictionary )Clear (){_gccca ._caeg =[]PdfObjectName {};_gccca ._adbeb =map[PdfObjectName ]PdfObject {};_gccca ._ccdg =&_g .Mutex {};};func (_fbec *JBIG2Image )toBitmap ()(_abda *_ef .Bitmap ,_ccg error ){const _gfec ="\u004a\u0042\u0049\u00472I\u006d\u0061\u0067\u0065\u002e\u0074\u006f\u0042\u0069\u0074\u006d\u0061\u0070"; +if _fbec .Data ==nil {return nil ,_dd .Error (_gfec ,"\u0069\u006d\u0061\u0067e \u0064\u0061\u0074\u0061\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};if _fbec .Width ==0||_fbec .Height ==0{return nil ,_dd .Error (_gfec ,"\u0069\u006d\u0061\u0067\u0065\u0020h\u0065\u0069\u0067\u0068\u0074\u0020\u006f\u0072\u0020\u0077\u0069\u0064\u0074h\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); +};if _fbec .HasPadding {_abda ,_ccg =_ef .NewWithData (_fbec .Width ,_fbec .Height ,_fbec .Data );}else {_abda ,_ccg =_ef .NewWithUnpaddedData (_fbec .Width ,_fbec .Height ,_fbec .Data );};if _ccg !=nil {return nil ,_dd .Wrap (_ccg ,_gfec ,"");};return _abda ,nil ; +};func (_gccbg *PdfParser )parseHexString ()(*PdfObjectString ,error ){_gccbg ._ffbg .ReadByte ();var _fdec _fd .Buffer ;for {_ffda ,_egeae :=_gccbg ._ffbg .Peek (1);if _egeae !=nil {return MakeString (""),_egeae ;};if _ffda [0]=='>'{_gccbg ._ffbg .ReadByte (); +break ;};_bcafb ,_ :=_gccbg ._ffbg .ReadByte ();if _gccbg ._ecgd {if _fd .IndexByte (_bbbe ,_bcafb )==-1{_gccbg ._gadge ._cde =true ;};};if !IsWhiteSpace (_bcafb ){_fdec .WriteByte (_bcafb );};};if _fdec .Len ()%2==1{_gccbg ._gadge ._gcg =true ;_fdec .WriteRune ('0'); +};_dcba ,_ :=_bdc .DecodeString (_fdec .String ());return MakeHexString (string (_dcba )),nil ;};func (_ddaa *PdfParser )readTextLine ()(string ,error ){var _gfbd _fd .Buffer ;for {_baca ,_cccd :=_ddaa ._ffbg .Peek (1);if _cccd !=nil {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_cccd .Error ()); +return _gfbd .String (),_cccd ;};if (_baca [0]!='\r')&&(_baca [0]!='\n'){_eafb ,_ :=_ddaa ._ffbg .ReadByte ();_gfbd .WriteByte (_eafb );}else {break ;};};return _gfbd .String (),nil ;}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_cbfc *ASCIIHexEncoder )MakeDecodeParams ()PdfObject {return nil };func (_aegge *PdfParser )repairRebuildXrefsTopDown ()(*XrefTable ,error ){if _aegge ._abcfc {return nil ,_daa .Errorf ("\u0072\u0065\u0070\u0061\u0069\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); -};_aegge ._abcfc =true ;_aegge ._ccgbe .Seek (0,_ae .SeekStart );_aegge ._affd =_ga .NewReader (_aegge ._ccgbe );_aefef :=20;_eega :=make ([]byte ,_aefef );_adfd :=XrefTable {};_adfd .ObjectMap =make (map[int ]XrefObject );for {_ffda ,_bebfg :=_aegge ._affd .ReadByte (); -if _bebfg !=nil {if _bebfg ==_ae .EOF {break ;}else {return nil ,_bebfg ;};};if _ffda =='j'&&_eega [_aefef -1]=='b'&&_eega [_aefef -2]=='o'&&IsWhiteSpace (_eega [_aefef -3]){_agag :=_aefef -4;for IsWhiteSpace (_eega [_agag ])&&_agag > 0{_agag --;};if _agag ==0||!IsDecimalDigit (_eega [_agag ]){continue ; -};for IsDecimalDigit (_eega [_agag ])&&_agag > 0{_agag --;};if _agag ==0||!IsWhiteSpace (_eega [_agag ]){continue ;};for IsWhiteSpace (_eega [_agag ])&&_agag > 0{_agag --;};if _agag ==0||!IsDecimalDigit (_eega [_agag ]){continue ;};for IsDecimalDigit (_eega [_agag ])&&_agag > 0{_agag --; -};if _agag ==0{continue ;};_ggfe :=_aegge .GetFileOffset ()-int64 (_aefef -_agag );_efcga :=append (_eega [_agag +1:],_ffda );_beff ,_dbeab ,_bcdaf :=_gdcag (string (_efcga ));if _bcdaf !=nil {_ecd .Log .Debug ("\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u006e\u0075\u006d\u0062\u0065r\u003a\u0020\u0025\u0076",_bcdaf ); -return nil ,_bcdaf ;};if _aaca ,_bdgbg :=_adfd .ObjectMap [_beff ];!_bdgbg ||_aaca .Generation < _dbeab {_ceaef :=XrefObject {};_ceaef .XType =XrefTypeTableEntry ;_ceaef .ObjectNumber =_beff ;_ceaef .Generation =_dbeab ;_ceaef .Offset =_ggfe ;_adfd .ObjectMap [_beff ]=_ceaef ; -};};_eega =append (_eega [1:_aefef ],_ffda );};_aegge ._bddbf =nil ;return &_adfd ,nil ;}; +// NewJPXEncoder returns a new instance of JPXEncoder. +func NewJPXEncoder ()*JPXEncoder {return &JPXEncoder {}}; + +// ParseIndirectObject parses an indirect object from the input stream. Can also be an object stream. +// Returns the indirect object (*PdfIndirectObject) or the stream object (*PdfObjectStream). +func (_beeb *PdfParser )ParseIndirectObject ()(PdfObject ,error ){_cafb :=PdfIndirectObject {};_cafb ._cfada =_beeb ;_a .Log .Trace ("\u002dR\u0065a\u0064\u0020\u0069\u006e\u0064i\u0072\u0065c\u0074\u0020\u006f\u0062\u006a");_dcegb ,_adggg :=_beeb ._ffbg .Peek (20); +if _adggg !=nil {if _adggg !=_fg .EOF {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020r\u0065a\u0064\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a");return &_cafb ,_adggg ; +};};_a .Log .Trace ("\u0028\u0069\u006edi\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0020\u0070\u0065\u0065\u006b\u0020\u0022\u0025\u0073\u0022",string (_dcegb ));_bgfd :=_ebceg .FindStringSubmatchIndex (string (_dcegb ));if len (_bgfd )< 6{if _adggg ==_fg .EOF {return nil ,_adggg ; +};_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_dcegb )); +return &_cafb ,_c .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); +};_beeb ._ffbg .Discard (_bgfd [0]);_a .Log .Trace ("O\u0066\u0066\u0073\u0065\u0074\u0073\u0020\u0025\u0020\u0064",_bgfd );_bbbf :=_bgfd [1]-_bgfd [0];_dfebd :=make ([]byte ,_bbbf );_ ,_adggg =_beeb .ReadAtLeast (_dfebd ,_bbbf );if _adggg !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020-\u0020\u0025\u0073",_adggg ); +return nil ,_adggg ;};_a .Log .Trace ("\u0074\u0065\u0078t\u006c\u0069\u006e\u0065\u003a\u0020\u0025\u0073",_dfebd );_bgag :=_ebceg .FindStringSubmatch (string (_dfebd ));if len (_bgag )< 3{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_dfebd )); +return &_cafb ,_c .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); +};_abfa ,_ :=_bd .Atoi (_bgag [1]);_ffdf ,_ :=_bd .Atoi (_bgag [2]);_cafb .ObjectNumber =int64 (_abfa );_cafb .GenerationNumber =int64 (_ffdf );for {_dge ,_eacb :=_beeb ._ffbg .Peek (2);if _eacb !=nil {return &_cafb ,_eacb ;};_a .Log .Trace ("I\u006ed\u002e\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_dge ),string (_dge )); +if IsWhiteSpace (_dge [0]){_beeb .skipSpaces ();}else if _dge [0]=='%'{_beeb .skipComments ();}else if (_dge [0]=='<')&&(_dge [1]=='<'){_a .Log .Trace ("\u0043\u0061\u006c\u006c\u0020\u0050\u0061\u0072\u0073e\u0044\u0069\u0063\u0074");_cafb .PdfObject ,_eacb =_beeb .ParseDict (); +_a .Log .Trace ("\u0045\u004f\u0046\u0020Ca\u006c\u006c\u0020\u0050\u0061\u0072\u0073\u0065\u0044\u0069\u0063\u0074\u003a\u0020%\u0076",_eacb );if _eacb !=nil {return &_cafb ,_eacb ;};_a .Log .Trace ("\u0050\u0061\u0072\u0073\u0065\u0064\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e.\u002e\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); +}else if (_dge [0]=='/')||(_dge [0]=='(')||(_dge [0]=='[')||(_dge [0]=='<'){_cafb .PdfObject ,_eacb =_beeb .parseObject ();if _eacb !=nil {return &_cafb ,_eacb ;};_a .Log .Trace ("P\u0061\u0072\u0073\u0065\u0064\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u002e\u002e\u002e \u0066\u0069\u006ei\u0073h\u0065\u0064\u002e"); +}else if _dge [0]==']'{_a .Log .Debug ("\u0057\u0041\u0052\u004e\u0049N\u0047\u003a\u0020\u0027\u005d\u0027 \u0063\u0068\u0061\u0072\u0061\u0063\u0074e\u0072\u0020\u006eo\u0074\u0020\u0062\u0065i\u006e\u0067\u0020\u0075\u0073\u0065d\u0020\u0061\u0073\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0065\u006e\u0064\u0069n\u0067\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e"); +_beeb ._ffbg .Discard (1);}else {if _dge [0]=='e'{_cafc ,_ggfdd :=_beeb .readTextLine ();if _ggfdd !=nil {return nil ,_ggfdd ;};if len (_cafc )>=6&&_cafc [0:6]=="\u0065\u006e\u0064\u006f\u0062\u006a"{break ;};}else if _dge [0]=='s'{_dge ,_ =_beeb ._ffbg .Peek (10); +if string (_dge [:6])=="\u0073\u0074\u0072\u0065\u0061\u006d"{_geaa :=6;if len (_dge )> 6{if IsWhiteSpace (_dge [_geaa ])&&_dge [_geaa ]!='\r'&&_dge [_geaa ]!='\n'{_a .Log .Debug ("\u004e\u006fn\u002d\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0074\u0020\u0050\u0044\u0046\u0020\u006e\u006f\u0074 \u0065\u006e\u0064\u0069\u006e\u0067 \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0069\u006e\u0065\u0020\u0070\u0072o\u0070\u0065r\u006c\u0079\u0020\u0077i\u0074\u0068\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072"); +_beeb ._gadge ._efcd =true ;_geaa ++;};if _dge [_geaa ]=='\r'{_geaa ++;if _dge [_geaa ]=='\n'{_geaa ++;};}else if _dge [_geaa ]=='\n'{_geaa ++;}else {_beeb ._gadge ._efcd =true ;};};_beeb ._ffbg .Discard (_geaa );_beeg ,_gdbg :=_cafb .PdfObject .(*PdfObjectDictionary ); +if !_gdbg {return nil ,_c .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006di\u0073s\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079");};_a .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074\u0020\u0025\u0073",_beeg ); +_afgd ,_gaef :=_beeb .traceStreamLength (_beeg .Get ("\u004c\u0065\u006e\u0067\u0074\u0068"));if _gaef !=nil {_a .Log .Debug ("\u0046\u0061\u0069l\u0020\u0074\u006f\u0020t\u0072\u0061\u0063\u0065\u0020\u0073\u0074r\u0065\u0061\u006d\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0025\u0076",_gaef ); +return nil ,_gaef ;};_a .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0065\u006e\u0067\u0074h\u003f\u0020\u0025\u0073",_afgd );_aecaa ,_cabd :=_afgd .(*PdfObjectInteger );if !_cabd {return nil ,_c .New ("\u0073\u0074re\u0061\u006d\u0020l\u0065\u006e\u0067\u0074h n\u0065ed\u0073\u0020\u0074\u006f\u0020\u0062\u0065 a\u006e\u0020\u0069\u006e\u0074\u0065\u0067e\u0072"); +};_afec :=*_aecaa ;if _afec < 0{return nil ,_c .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f \u0062e\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0030");};_eeag :=_beeb .GetFileOffset (); +_decf :=_beeb .xrefNextObjectOffset (_eeag );if _eeag +int64 (_afec )> _decf &&_decf > _eeag {_a .Log .Debug ("E\u0078\u0070\u0065\u0063te\u0064 \u0065\u006e\u0064\u0069\u006eg\u0020\u0061\u0074\u0020\u0025\u0064",_eeag +int64 (_afec ));_a .Log .Debug ("\u004e\u0065\u0078\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0073\u0074\u0061\u0072\u0074\u0069\u006e\u0067\u0020\u0061t\u0020\u0025\u0064",_decf ); +_efaeb :=_decf -_eeag -17;if _efaeb < 0{return nil ,_c .New ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0073t\u0072\u0065\u0061m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002c\u0020go\u0069\u006e\u0067 \u0070\u0061s\u0074\u0020\u0062\u006f\u0075\u006ed\u0061\u0072i\u0065\u0073"); +};_a .Log .Debug ("\u0041\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0061\u0020l\u0065\u006e\u0067\u0074\u0068\u0020c\u006f\u0072\u0072\u0065\u0063\u0074\u0069\u006f\u006e\u0020\u0074\u006f\u0020%\u0064\u002e\u002e\u002e",_efaeb );_afec =PdfObjectInteger (_efaeb ); +_beeg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (_efaeb ));};if int64 (_afec )> _beeb ._fbaaa {_a .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0053t\u0072\u0065\u0061\u006d\u0020l\u0065\u006e\u0067\u0074\u0068\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0069\u007a\u0065"); +return nil ,_c .New ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0073t\u0072\u0065\u0061m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002c\u0020la\u0072\u0067\u0065r\u0020\u0074h\u0061\u006e\u0020\u0066\u0069\u006ce\u0020\u0073i\u007a\u0065");};_dbac :=make ([]byte ,_afec ); +_ ,_gaef =_beeb .ReadAtLeast (_dbac ,int (_afec ));if _gaef !=nil {_a .Log .Debug ("E\u0052\u0052\u004f\u0052 s\u0074r\u0065\u0061\u006d\u0020\u0028%\u0064\u0029\u003a\u0020\u0025\u0058",len (_dbac ),_dbac );_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gaef ); +return nil ,_gaef ;};_afde :=PdfObjectStream {};_afde .Stream =_dbac ;_afde .PdfObjectDictionary =_cafb .PdfObject .(*PdfObjectDictionary );_afde .ObjectNumber =_cafb .ObjectNumber ;_afde .GenerationNumber =_cafb .GenerationNumber ;_afde .PdfObjectReference ._cfada =_beeb ; +_beeb .skipSpaces ();_beeb ._ffbg .Discard (9);_beeb .skipSpaces ();return &_afde ,nil ;};};_cafb .PdfObject ,_eacb =_beeb .parseObject ();if _cafb .PdfObject ==nil {_a .Log .Debug ("\u0049N\u0043\u004f\u004dP\u0041\u0054\u0049B\u0049LI\u0054\u0059\u003a\u0020\u0049\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061n \u006fb\u006a\u0065\u0063\u0074\u0020\u002d \u0061\u0073\u0073\u0075\u006di\u006e\u0067\u0020\u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006ae\u0063\u0074"); +_cafb .PdfObject =MakeNull ();};return &_cafb ,_eacb ;};};if _cafb .PdfObject ==nil {_a .Log .Debug ("\u0049N\u0043\u004f\u004dP\u0041\u0054\u0049B\u0049LI\u0054\u0059\u003a\u0020\u0049\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061n \u006fb\u006a\u0065\u0063\u0074\u0020\u002d \u0061\u0073\u0073\u0075\u006di\u006e\u0067\u0020\u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006ae\u0063\u0074"); +_cafb .PdfObject =MakeNull ();};_a .Log .Trace ("\u0052\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0021");return &_cafb ,nil ;};type objectStream struct{N int ;_fc []byte ;_ca map[int ]int64 ;};var _bbbe =[]byte ("\u0030\u0031\u0032\u003345\u0036\u0037\u0038\u0039\u0061\u0062\u0063\u0064\u0065\u0066\u0041\u0042\u0043\u0044E\u0046"); -// MakeDecodeParams makes a new instance of an encoding dictionary based on the current encoder settings. -func (_egg *JBIG2Encoder )MakeDecodeParams ()PdfObject {return MakeDict ()}; // ToIntegerArray returns a slice of all array elements as an int slice. An error is returned if the // array non-integer objects. Each element can only be PdfObjectInteger. -func (_cbff *PdfObjectArray )ToIntegerArray ()([]int ,error ){var _bdgd []int ;for _ ,_bcgbe :=range _cbff .Elements (){if _edcf ,_ddfa :=_bcgbe .(*PdfObjectInteger );_ddfa {_bdgd =append (_bdgd ,int (*_edcf ));}else {return nil ,ErrTypeError ;};};return _bdgd ,nil ; -}; +func (_dgdff *PdfObjectArray )ToIntegerArray ()([]int ,error ){var _ceceb []int ;for _ ,_fcbad :=range _dgdff .Elements (){if _afdd ,_fbbe :=_fcbad .(*PdfObjectInteger );_fbbe {_ceceb =append (_ceceb ,int (*_afdd ));}else {return nil ,ErrTypeError ;};}; +return _ceceb ,nil ;}; -// PdfIndirectObject represents the primitive PDF indirect object. -type PdfIndirectObject struct{PdfObjectReference ;PdfObject ;}; +// DecodeStream decodes a JBIG2 encoded stream and returns the result as a slice of bytes. +func (_fdgaf *JBIG2Encoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _fdgaf .DecodeBytes (streamObj .Stream );};func (_bbf *PdfCrypt )checkAccessRights (_feac []byte )(bool ,_dc .Permissions ,error ){_bfe :=_bbf .securityHandler (); +_agd ,_bcec ,_eed :=_bfe .Authenticate (&_bbf ._aec ,_feac );if _eed !=nil {return false ,0,_eed ;}else if _bcec ==0||len (_agd )==0{return false ,0,nil ;};return true ,_bcec ,nil ;}; -// String returns a string representation of the *PdfObjectString. -func (_agga *PdfObjectString )String ()string {return _agga ._cceg };func (_bgcfa *JBIG2Encoder )encodeImage (_gdae _ac .Image )([]byte ,error ){const _gdgc ="e\u006e\u0063\u006f\u0064\u0065\u0049\u006d\u0061\u0067\u0065";_dbed ,_bbgb :=GoImageToJBIG2 (_gdae ,JB2ImageAutoThreshold ); -if _bbgb !=nil {return nil ,_cd .Wrap (_bbgb ,_gdgc ,"\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0069m\u0061g\u0065\u0020\u0074\u006f\u0020\u006a\u0062\u0069\u0067\u0032\u0020\u0069\u006d\u0067");};if _bbgb =_bgcfa .AddPageImage (_dbed ,&_bgcfa .DefaultPageSettings ); -_bbgb !=nil {return nil ,_cd .Wrap (_bbgb ,_gdgc ,"");};return _bgcfa .Encode ();}; +// DecodeStream decodes RunLengthEncoded stream object and give back decoded bytes. +func (_eadf *RunLengthEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _eadf .DecodeBytes (streamObj .Stream );}; -// IsPrintable checks if a character is printable. -// Regular characters that are outside the range EXCLAMATION MARK(21h) -// (!) to TILDE (7Eh) (~) should be written using the hexadecimal notation. -func IsPrintable (c byte )bool {return 0x21<=c &&c <=0x7E}; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +// Has the Filter set. Some other parameters are generated elsewhere. +func (_agda *DCTEncoder )MakeStreamDict ()*PdfObjectDictionary {_eeeaf :=MakeDict ();_eeeaf .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_agda .GetFilterName ()));return _eeeaf ;}; -// GetObjectStreams returns the *PdfObjectStreams represented by the PdfObject. On type mismatch the found bool flag is -// false and a nil pointer is returned. -func GetObjectStreams (obj PdfObject )(_fgbdg *PdfObjectStreams ,_ggdg bool ){_fgbdg ,_ggdg =obj .(*PdfObjectStreams );return _fgbdg ,_ggdg ;}; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_gfee *MultiEncoder )MakeStreamDict ()*PdfObjectDictionary {_ecgff :=MakeDict ();_ecgff .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",_gfee .GetFilterArray ());for _ ,_bffc :=range _gfee ._bdfb {_cffb :=_bffc .MakeStreamDict ();for _ ,_ebgde :=range _cffb .Keys (){_aaeae :=_cffb .Get (_ebgde ); +if _ebgde !="\u0046\u0069\u006c\u0074\u0065\u0072"&&_ebgde !="D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"{_ecgff .Set (_ebgde ,_aaeae );};};};_aceg :=_gfee .MakeDecodeParams ();if _aceg !=nil {_ecgff .Set ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_aceg ); +};return _ecgff ;}; -// String returns a string describing `stream`. -func (_edac *PdfObjectStream )String ()string {return _daa .Sprintf ("O\u0062j\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u0025\u0064: \u0025\u0073",_edac .ObjectNumber ,_edac .PdfObjectDictionary );}; +// CheckAccessRights checks access rights and permissions for a specified password. If either user/owner password is +// specified, full rights are granted, otherwise the access rights are specified by the Permissions flag. +// +// The bool flag indicates that the user can access and view the file. +// The AccessPermissions shows what access the user has for editing etc. +// An error is returned if there was a problem performing the authentication. +func (_fdfb *PdfParser )CheckAccessRights (password []byte )(bool ,_dc .Permissions ,error ){if _fdfb ._abae ==nil {return true ,_dc .PermOwner ,nil ;};return _fdfb ._abae .checkAccessRights (password );}; -// DecodeBytes decodes a slice of DCT encoded bytes and returns the result. -func (_edcb *DCTEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_gbfd :=_fb .NewReader (encoded );_cgcf ,_cgbf :=_bd .Decode (_gbfd );if _cgbf !=nil {_ecd .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006eg\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_cgbf ); -return nil ,_cgbf ;};_dafd :=_cgcf .Bounds ();var _dfc =make ([]byte ,_dafd .Dx ()*_dafd .Dy ()*_edcb .ColorComponents *_edcb .BitsPerComponent /8);_fdeb :=0;switch _edcb .ColorComponents {case 1:_cedb :=[]float64 {_edcb .Decode [0],_edcb .Decode [1]}; -for _bbbb :=_dafd .Min .Y ;_bbbb < _dafd .Max .Y ;_bbbb ++{for _fdga :=_dafd .Min .X ;_fdga < _dafd .Max .X ;_fdga ++{_ebfg :=_cgcf .At (_fdga ,_bbbb );if _edcb .BitsPerComponent ==16{_debb ,_edgc :=_ebfg .(_ec .Gray16 );if !_edgc {return nil ,_f .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};_dbfa :=_dcgag (uint (_debb .Y >>8),_cedb [0],_cedb [1]);_afa :=_dcgag (uint (_debb .Y ),_cedb [0],_cedb [1]);_dfc [_fdeb ]=byte (_dbfa );_fdeb ++;_dfc [_fdeb ]=byte (_afa );_fdeb ++;}else {_ebd ,_ccbb :=_ebfg .(_ec .Gray );if !_ccbb {return nil ,_f .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};_dfc [_fdeb ]=byte (_dcgag (uint (_ebd .Y ),_cedb [0],_cedb [1]));_fdeb ++;};};};case 3:_bffac :=[]float64 {_edcb .Decode [0],_edcb .Decode [1]};_beeg :=[]float64 {_edcb .Decode [2],_edcb .Decode [3]};_cbfb :=[]float64 {_edcb .Decode [4],_edcb .Decode [5]}; -for _bfe :=_dafd .Min .Y ;_bfe < _dafd .Max .Y ;_bfe ++{for _aadc :=_dafd .Min .X ;_aadc < _dafd .Max .X ;_aadc ++{_babe :=_cgcf .At (_aadc ,_bfe );if _edcb .BitsPerComponent ==16{_bbfa ,_eag :=_babe .(_ec .RGBA64 );if !_eag {return nil ,_f .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};_ggbd :=_dcgag (uint (_bbfa .R >>8),_bffac [0],_bffac [1]);_fceg :=_dcgag (uint (_bbfa .R ),_bffac [0],_bffac [1]);_dfga :=_dcgag (uint (_bbfa .G >>8),_beeg [0],_beeg [1]);_bceb :=_dcgag (uint (_bbfa .G ),_beeg [0],_beeg [1]);_gfca :=_dcgag (uint (_bbfa .B >>8),_cbfb [0],_cbfb [1]); -_ecag :=_dcgag (uint (_bbfa .B ),_cbfb [0],_cbfb [1]);_dfc [_fdeb ]=byte (_ggbd );_fdeb ++;_dfc [_fdeb ]=byte (_fceg );_fdeb ++;_dfc [_fdeb ]=byte (_dfga );_fdeb ++;_dfc [_fdeb ]=byte (_bceb );_fdeb ++;_dfc [_fdeb ]=byte (_gfca );_fdeb ++;_dfc [_fdeb ]=byte (_ecag ); -_fdeb ++;}else {_dcbf ,_dccff :=_babe .(_ec .RGBA );if _dccff {_cabd :=_dcgag (uint (_dcbf .R ),_bffac [0],_bffac [1]);_aaa :=_dcgag (uint (_dcbf .G ),_beeg [0],_beeg [1]);_edec :=_dcgag (uint (_dcbf .B ),_cbfb [0],_cbfb [1]);_dfc [_fdeb ]=byte (_cabd ); -_fdeb ++;_dfc [_fdeb ]=byte (_aaa );_fdeb ++;_dfc [_fdeb ]=byte (_edec );_fdeb ++;}else {_ffec ,_cfba :=_babe .(_ec .YCbCr );if !_cfba {return nil ,_f .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_baffa ,_egbg ,_eaa ,_ :=_ffec .RGBA (); -_dae :=_dcgag (uint (_baffa >>8),_bffac [0],_bffac [1]);_deca :=_dcgag (uint (_egbg >>8),_beeg [0],_beeg [1]);_fbag :=_dcgag (uint (_eaa >>8),_cbfb [0],_cbfb [1]);_dfc [_fdeb ]=byte (_dae );_fdeb ++;_dfc [_fdeb ]=byte (_deca );_fdeb ++;_dfc [_fdeb ]=byte (_fbag ); -_fdeb ++;};};};};case 4:_efeb :=[]float64 {_edcb .Decode [0],_edcb .Decode [1]};_ccfdb :=[]float64 {_edcb .Decode [2],_edcb .Decode [3]};_ccgee :=[]float64 {_edcb .Decode [4],_edcb .Decode [5]};_gfcg :=[]float64 {_edcb .Decode [6],_edcb .Decode [7]};for _abea :=_dafd .Min .Y ; -_abea < _dafd .Max .Y ;_abea ++{for _efgc :=_dafd .Min .X ;_efgc < _dafd .Max .X ;_efgc ++{_aab :=_cgcf .At (_efgc ,_abea );_bafc ,_beed :=_aab .(_ec .CMYK );if !_beed {return nil ,_f .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};_ecbc :=255-_dcgag (uint (_bafc .C ),_efeb [0],_efeb [1]);_dcbfa :=255-_dcgag (uint (_bafc .M ),_ccfdb [0],_ccfdb [1]);_agcf :=255-_dcgag (uint (_bafc .Y ),_ccgee [0],_ccgee [1]);_caeg :=255-_dcgag (uint (_bafc .K ),_gfcg [0],_gfcg [1]);_dfc [_fdeb ]=byte (_ecbc ); -_fdeb ++;_dfc [_fdeb ]=byte (_dcbfa );_fdeb ++;_dfc [_fdeb ]=byte (_agcf );_fdeb ++;_dfc [_fdeb ]=byte (_caeg );_fdeb ++;};};};return _dfc ,nil ;};func (_ebdd *PdfParser )parseNull ()(PdfObjectNull ,error ){_ ,_aadb :=_ebdd ._affd .Discard (4);return PdfObjectNull {},_aadb ; -}; +// GetObjectNums returns a sorted list of object numbers of the PDF objects in the file. +func (_badbg *PdfParser )GetObjectNums ()[]int {var _bfaa []int ;for _ ,_geed :=range _badbg ._bbdf .ObjectMap {_bfaa =append (_bfaa ,_geed .ObjectNumber );};_gg .Ints (_bfaa );return _bfaa ;}; -// PdfObjectName represents the primitive PDF name object. -type PdfObjectName string ; +// DecodeStream decodes a multi-encoded stream by passing it through the +// DecodeStream method of the underlying encoders. +func (_agcb *MultiEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _agcb .DecodeBytes (streamObj .Stream );};func _feae (_dbbe *PdfObjectDictionary )(_cfce *_be .ImageBase ){var (_aabcf *PdfObjectInteger ;_cdeae bool ;);if _aabcf ,_cdeae =_dbbe .Get ("\u0057\u0069\u0064t\u0068").(*PdfObjectInteger ); +_cdeae {_cfce =&_be .ImageBase {Width :int (*_aabcf )};}else {return nil ;};if _aabcf ,_cdeae =_dbbe .Get ("\u0048\u0065\u0069\u0067\u0068\u0074").(*PdfObjectInteger );_cdeae {_cfce .Height =int (*_aabcf );};if _aabcf ,_cdeae =_dbbe .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074").(*PdfObjectInteger ); +_cdeae {_cfce .BitsPerComponent =int (*_aabcf );};if _aabcf ,_cdeae =_dbbe .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073").(*PdfObjectInteger );_cdeae {_cfce .ColorComponents =int (*_aabcf );};return _cfce ;}; -// WriteString outputs the object as it is to be written to file. -func (_cecdd *PdfObjectName )WriteString ()string {var _abegd _fb .Buffer ;if len (*_cecdd )> 127{_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u004e\u0061\u006d\u0065\u0020t\u006fo\u0020l\u006f\u006e\u0067\u0020\u0028\u0025\u0073)",*_cecdd );};_abegd .WriteString ("\u002f"); -for _gddb :=0;_gddb < len (*_cecdd );_gddb ++{_gfaf :=(*_cecdd )[_gddb ];if !IsPrintable (_gfaf )||_gfaf =='#'||IsDelimiter (_gfaf ){_abegd .WriteString (_daa .Sprintf ("\u0023\u0025\u002e2\u0078",_gfaf ));}else {_abegd .WriteByte (_gfaf );};};return _abegd .String (); -};const (JB2Generic JBIG2CompressionType =iota ;JB2SymbolCorrelation ;JB2SymbolRankHaus ;); +// Keys returns the list of keys in the dictionary. +// If `d` is nil returns a nil slice. +func (_badc *PdfObjectDictionary )Keys ()[]PdfObjectName {if _badc ==nil {return nil ;};return _badc ._caeg ;}; -// ResolveReference resolves reference if `o` is a *PdfObjectReference and returns the object referenced to. -// Otherwise returns back `o`. -func ResolveReference (obj PdfObject )PdfObject {if _agcea ,_edfa :=obj .(*PdfObjectReference );_edfa {return _agcea .Resolve ();};return obj ;}; +// GetPreviousRevisionParser returns PdfParser for the previous version of the Pdf document. +func (_aabg *PdfParser )GetPreviousRevisionParser ()(*PdfParser ,error ){if _aabg ._efce ==0{return nil ,_c .New ("\u0074\u0068\u0069\u0073 i\u0073\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0072\u0065\u0076\u0069\u0073\u0069o\u006e");};if _eacd ,_dfgcc :=_aabg ._beaf [_aabg ]; +_dfgcc {return _eacd ,nil ;};_fcffb ,_cbedb :=_aabg .GetPreviousRevisionReadSeeker ();if _cbedb !=nil {return nil ,_cbedb ;};_fdbd ,_cbedb :=NewParser (_fcffb );_fdbd ._beaf =_aabg ._beaf ;if _cbedb !=nil {return nil ,_cbedb ;};_aabg ._beaf [_aabg ]=_fdbd ; +return _fdbd ,nil ;}; -// Len returns the number of elements in the streams. -func (_fdacf *PdfObjectStreams )Len ()int {if _fdacf ==nil {return 0;};return len (_fdacf ._gedag );};func _cfbb (_cgf *_bc .FilterDict ,_beef *PdfObjectDictionary )error {if _aegd ,_dfe :=_beef .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );_dfe {if _gbc :=string (*_aegd ); -_gbc !="C\u0072\u0079\u0070\u0074\u0046\u0069\u006c\u0074\u0065\u0072"{_ecd .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020C\u0046\u0020\u0064ic\u0074\u0020\u0074\u0079\u0070\u0065:\u0020\u0025\u0073\u0020\u0028\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020C\u0072\u0079\u0070\u0074\u0046\u0069\u006c\u0074e\u0072\u0029",_gbc ); -};};_bea ,_ece :=_beef .Get ("\u0043\u0046\u004d").(*PdfObjectName );if !_ece {return _daa .Errorf ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0063\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0028\u004e\u006f\u006e\u0065\u0029"); -};_cgf .CFM =string (*_bea );if _cce ,_aea :=_beef .Get ("\u0041u\u0074\u0068\u0045\u0076\u0065\u006et").(*PdfObjectName );_aea {_cgf .AuthEvent =_fg .AuthEvent (*_cce );}else {_cgf .AuthEvent =_fg .EventDocOpen ;};if _ffe ,_eea :=_beef .Get ("\u004c\u0065\u006e\u0067\u0074\u0068").(*PdfObjectInteger ); -_eea {_cgf .Length =int (*_ffe );};return nil ;}; +// EncodeBytes DCT encodes the passed in slice of bytes. +func (_aecg *DCTEncoder )EncodeBytes (data []byte )([]byte ,error ){var _gbg _cg .Image ;if _aecg .ColorComponents ==1&&_aecg .BitsPerComponent ==8{_gbg =&_cg .Gray {Rect :_cg .Rect (0,0,_aecg .Width ,_aecg .Height ),Pix :data ,Stride :_be .BytesPerLine (_aecg .Width ,_aecg .BitsPerComponent ,_aecg .ColorComponents )}; +}else {var _gedff error ;_gbg ,_gedff =_be .NewImage (_aecg .Width ,_aecg .Height ,_aecg .BitsPerComponent ,_aecg .ColorComponents ,data ,nil ,nil );if _gedff !=nil {return nil ,_gedff ;};};_egfa :=_eb .Options {};_egfa .Quality =_aecg .Quality ;var _ecbe _fd .Buffer ; +if _ced :=_eb .Encode (&_ecbe ,_gbg ,&_egfa );_ced !=nil {return nil ,_ced ;};return _ecbe .Bytes (),nil ;}; -// WriteString outputs the object as it is to be written to file. -func (_dfaf *PdfObjectInteger )WriteString ()string {return _bf .FormatInt (int64 (*_dfaf ),10)}; +// IsHexadecimal checks if the PdfObjectString contains Hexadecimal data. +func (_bdbfe *PdfObjectString )IsHexadecimal ()bool {return _bdbfe ._gead }; -// UpdateParams updates the parameter values of the encoder. -func (_abef *FlateEncoder )UpdateParams (params *PdfObjectDictionary ){_aebe ,_ecdcf :=GetNumberAsInt64 (params .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr"));if _ecdcf ==nil {_abef .Predictor =int (_aebe );};_bcfg ,_ecdcf :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074")); -if _ecdcf ==nil {_abef .BitsPerComponent =int (_bcfg );};_ffdb ,_ecdcf :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));if _ecdcf ==nil {_abef .Columns =int (_ffdb );};_ffag ,_ecdcf :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073")); -if _ecdcf ==nil {_abef .Colors =int (_ffag );};}; +// EqualObjects returns true if `obj1` and `obj2` have the same contents. +// +// NOTE: It is a good idea to flatten obj1 and obj2 with FlattenObject before calling this function +// so that contents, rather than references, can be compared. +func EqualObjects (obj1 ,obj2 PdfObject )bool {return _aceeg (obj1 ,obj2 ,0)}; -// MakeString creates an PdfObjectString from a string. -// NOTE: PDF does not use utf-8 string encoding like Go so `s` will often not be a utf-8 encoded -// string. -func MakeString (s string )*PdfObjectString {_aaec :=PdfObjectString {_cceg :s };return &_aaec }; +// ReadBytesAt reads byte content at specific offset and length within the PDF. +func (_aabe *PdfParser )ReadBytesAt (offset ,len int64 )([]byte ,error ){_fcef :=_aabe .GetFileOffset ();_ ,_bee :=_aabe ._dfcdg .Seek (offset ,_fg .SeekStart );if _bee !=nil {return nil ,_bee ;};_cfed :=make ([]byte ,len );_ ,_bee =_fg .ReadAtLeast (_aabe ._dfcdg ,_cfed ,int (len )); +if _bee !=nil {return nil ,_bee ;};_aabe .SetFileOffset (_fcef );return _cfed ,nil ;};func (_cdbf *PdfParser )parseArray ()(*PdfObjectArray ,error ){_bbefc :=MakeArray ();_cdbf ._ffbg .ReadByte ();for {_cdbf .skipSpaces ();_dffb ,_dccb :=_cdbf ._ffbg .Peek (1); +if _dccb !=nil {return _bbefc ,_dccb ;};if _dffb [0]==']'{_cdbf ._ffbg .ReadByte ();break ;};_fdae ,_dccb :=_cdbf .parseObject ();if _dccb !=nil {return _bbefc ,_dccb ;};_bbefc .Append (_fdae );};return _bbefc ,nil ;};func _eceb (_gac *_dc .StdEncryptDict ,_bff *PdfObjectDictionary )error {R ,_cfd :=_bff .Get ("\u0052").(*PdfObjectInteger ); +if !_cfd {return _c .New ("\u0065\u006e\u0063\u0072y\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006eg\u0020\u0052");};if *R < 2||*R > 6{return _gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0052 \u0028\u0025\u0064\u0029",*R ); +};_gac .R =int (*R );O ,_cfd :=_bff .GetString ("\u004f");if !_cfd {return _c .New ("\u0065\u006e\u0063\u0072y\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006eg\u0020\u004f");};if _gac .R ==5||_gac .R ==6{if len (O )< 48{return _gf .Errorf ("\u004c\u0065\u006e\u0067th\u0028\u004f\u0029\u0020\u003c\u0020\u0034\u0038\u0020\u0028\u0025\u0064\u0029",len (O )); +};}else if len (O )!=32{return _gf .Errorf ("L\u0065n\u0067\u0074\u0068\u0028\u004f\u0029\u0020\u0021=\u0020\u0033\u0032\u0020(%\u0064\u0029",len (O ));};_gac .O =[]byte (O );U ,_cfd :=_bff .GetString ("\u0055");if !_cfd {return _c .New ("\u0065\u006e\u0063\u0072y\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006eg\u0020\u0055"); +};if _gac .R ==5||_gac .R ==6{if len (U )< 48{return _gf .Errorf ("\u004c\u0065\u006e\u0067th\u0028\u0055\u0029\u0020\u003c\u0020\u0034\u0038\u0020\u0028\u0025\u0064\u0029",len (U ));};}else if len (U )!=32{_a .Log .Debug ("\u0057\u0061r\u006e\u0069\u006e\u0067\u003a\u0020\u004c\u0065\u006e\u0067\u0074\u0068\u0028\u0055\u0029\u0020\u0021\u003d\u0020\u0033\u0032\u0020(%\u0064\u0029",len (U )); +};_gac .U =[]byte (U );if _gac .R >=5{OE ,_bfcd :=_bff .GetString ("\u004f\u0045");if !_bfcd {return _c .New ("\u0065\u006ec\u0072\u0079\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006eg \u004f\u0045"); +}else if len (OE )!=32{return _gf .Errorf ("L\u0065\u006e\u0067\u0074h(\u004fE\u0029\u0020\u0021\u003d\u00203\u0032\u0020\u0028\u0025\u0064\u0029",len (OE ));};_gac .OE =[]byte (OE );UE ,_bfcd :=_bff .GetString ("\u0055\u0045");if !_bfcd {return _c .New ("\u0065\u006ec\u0072\u0079\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006eg \u0055\u0045"); +}else if len (UE )!=32{return _gf .Errorf ("L\u0065\u006e\u0067\u0074h(\u0055E\u0029\u0020\u0021\u003d\u00203\u0032\u0020\u0028\u0025\u0064\u0029",len (UE ));};_gac .UE =[]byte (UE );};P ,_cfd :=_bff .Get ("\u0050").(*PdfObjectInteger );if !_cfd {return _c .New ("\u0065\u006e\u0063\u0072\u0079\u0070\u0074 \u0064\u0069\u0063t\u0069\u006f\u006e\u0061r\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0070\u0065\u0072\u006d\u0069\u0073\u0073\u0069\u006f\u006e\u0073\u0020\u0061\u0074\u0074\u0072"); +};_gac .P =_dc .Permissions (*P );if _gac .R ==6{Perms ,_cadd :=_bff .GetString ("\u0050\u0065\u0072m\u0073");if !_cadd {return _c .New ("\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0050\u0065\u0072\u006d\u0073"); +}else if len (Perms )!=16{return _gf .Errorf ("\u004ce\u006e\u0067\u0074\u0068\u0028\u0050\u0065\u0072\u006d\u0073\u0029 \u0021\u003d\u0020\u0031\u0036\u0020\u0028\u0025\u0064\u0029",len (Perms ));};_gac .Perms =[]byte (Perms );};if _cgd ,_caa :=_bff .Get ("\u0045n\u0063r\u0079\u0070\u0074\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061").(*PdfObjectBool ); +_caa {_gac .EncryptMetadata =bool (*_cgd );}else {_gac .EncryptMetadata =true ;};return nil ;}; -// GetCrypter returns the PdfCrypt instance which has information about the PDFs encryption. -func (_dbda *PdfParser )GetCrypter ()*PdfCrypt {return _dbda ._geaef }; +// PdfObjectInteger represents the primitive PDF integer numerical object. +type PdfObjectInteger int64 ;type limitedReadSeeker struct{_fbge _fg .ReadSeeker ;_bcgd int64 ;};func _aafcf (_decdf int )int {_cgbb :=_decdf >>(_bca -1);return (_decdf ^_cgbb )-_cgbb }; -// NewJPXEncoder returns a new instance of JPXEncoder. -func NewJPXEncoder ()*JPXEncoder {return &JPXEncoder {}}; +// String returns a string representation of the *PdfObjectString. +func (_befa *PdfObjectString )String ()string {return _befa ._aaca }; -// DecodeStream decodes a JBIG2 encoded stream and returns the result as a slice of bytes. -func (_gbbc *JBIG2Encoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _gbbc .DecodeBytes (streamObj .Stream );}; +// GetFilterName returns the name of the encoding filter. +func (_defd *ASCII85Encoder )GetFilterName ()string {return StreamEncodingFilterNameASCII85 }; -// DecodeStream returns the passed in stream as a slice of bytes. -// The purpose of the method is to satisfy the StreamEncoder interface. -func (_fgc *RawEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return streamObj .Stream ,nil ;}; +// GetNumbersAsFloat converts a list of pdf objects representing floats or integers to a slice of +// float64 values. +func GetNumbersAsFloat (objects []PdfObject )(_bafcf []float64 ,_efad error ){for _ ,_bdcb :=range objects {_dgea ,_aggc :=GetNumberAsFloat (_bdcb );if _aggc !=nil {return nil ,_aggc ;};_bafcf =append (_bafcf ,_dgea );};return _bafcf ,nil ;}; -// Merge merges in key/values from another dictionary. Overwriting if has same keys. -// The mutated dictionary (d) is returned in order to allow method chaining. -func (_eebeg *PdfObjectDictionary )Merge (another *PdfObjectDictionary )*PdfObjectDictionary {if another !=nil {for _ ,_defcc :=range another .Keys (){_fdced :=another .Get (_defcc );_eebeg .Set (_defcc ,_fdced );};};return _eebeg ;}; - -// GetNumberAsFloat returns the contents of `obj` as a float if it is an integer or float, or an -// error if it isn't. -func GetNumberAsFloat (obj PdfObject )(float64 ,error ){switch _cabgf :=obj .(type ){case *PdfObjectFloat :return float64 (*_cabgf ),nil ;case *PdfObjectInteger :return float64 (*_cabgf ),nil ;case *PdfObjectReference :_deeae :=TraceToDirectObject (obj ); -return GetNumberAsFloat (_deeae );case *PdfIndirectObject :return GetNumberAsFloat (_cabgf .PdfObject );};return 0,ErrNotANumber ;}; - -// IsDecimalDigit checks if the character is a part of a decimal number string. -func IsDecimalDigit (c byte )bool {return '0'<=c &&c <='9'};func _efea (_dacb *PdfObjectStream ,_bccac *MultiEncoder )(*DCTEncoder ,error ){_aef :=NewDCTEncoder ();_afdc :=_dacb .PdfObjectDictionary ;if _afdc ==nil {return _aef ,nil ;};_ecgc :=_dacb .Stream ; -if _bccac !=nil {_ddcd ,_debc :=_bccac .DecodeBytes (_ecgc );if _debc !=nil {return nil ,_debc ;};_ecgc =_ddcd ;};_ddabg :=_fb .NewReader (_ecgc );_acf ,_bbbe :=_bd .DecodeConfig (_ddabg );if _bbbe !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0073",_bbbe ); -return nil ,_bbbe ;};switch _acf .ColorModel {case _ec .RGBAModel :_aef .BitsPerComponent =8;_aef .ColorComponents =3;_aef .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};case _ec .RGBA64Model :_aef .BitsPerComponent =16;_aef .ColorComponents =3;_aef .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0}; -case _ec .GrayModel :_aef .BitsPerComponent =8;_aef .ColorComponents =1;_aef .Decode =[]float64 {0.0,1.0};case _ec .Gray16Model :_aef .BitsPerComponent =16;_aef .ColorComponents =1;_aef .Decode =[]float64 {0.0,1.0};case _ec .CMYKModel :_aef .BitsPerComponent =8; -_aef .ColorComponents =4;_aef .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0};case _ec .YCbCrModel :_aef .BitsPerComponent =8;_aef .ColorComponents =3;_aef .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};default:return nil ,_f .New ("\u0075\u006e\u0073up\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006d\u006f\u0064\u0065\u006c"); -};_aef .Width =_acf .Width ;_aef .Height =_acf .Height ;_ecd .Log .Trace ("\u0044\u0043T\u0020\u0045\u006ec\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076",_aef );_aef .Quality =DefaultJPEGQuality ;_bab ,_bbaa :=GetArray (_afdc .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")); -if _bbaa {_gccg ,_eac :=_bab .ToFloat64Array ();if _eac !=nil {return _aef ,_eac ;};_aef .Decode =_gccg ;};return _aef ,nil ;}; - -// GetObjectNums returns a sorted list of object numbers of the PDF objects in the file. -func (_bcbg *PdfParser )GetObjectNums ()[]int {var _ccae []int ;for _ ,_bfgef :=range _bcbg ._efdgc .ObjectMap {_ccae =append (_ccae ,_bfgef .ObjectNumber );};_db .Ints (_ccae );return _ccae ;};func (_gded *PdfParser )xrefNextObjectOffset (_fcdfe int64 )int64 {_eda :=int64 (0); -if len (_gded ._efdgc .ObjectMap )==0{return 0;};if len (_gded ._efdgc ._fbb )==0{_gfccc :=0;for _ ,_acbbd :=range _gded ._efdgc .ObjectMap {if _acbbd .Offset > 0{_gfccc ++;};};if _gfccc ==0{return 0;};_gded ._efdgc ._fbb =make ([]XrefObject ,_gfccc ); -_gdfe :=0;for _ ,_dbdaf :=range _gded ._efdgc .ObjectMap {if _dbdaf .Offset > 0{_gded ._efdgc ._fbb [_gdfe ]=_dbdaf ;_gdfe ++;};};_db .Slice (_gded ._efdgc ._fbb ,func (_bbag ,_caebe int )bool {return _gded ._efdgc ._fbb [_bbag ].Offset < _gded ._efdgc ._fbb [_caebe ].Offset ; -});};_decae :=_db .Search (len (_gded ._efdgc ._fbb ),func (_cfcf int )bool {return _gded ._efdgc ._fbb [_cfcf ].Offset >=_fcdfe });if _decae < len (_gded ._efdgc ._fbb ){_eda =_gded ._efdgc ._fbb [_decae ].Offset ;};return _eda ;};func _dg (_ceg XrefTable ){_ecd .Log .Debug ("\u003dX\u003d\u0058\u003d\u0058\u003d"); -_ecd .Log .Debug ("X\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u003a");_efd :=0;for _ ,_cge :=range _ceg .ObjectMap {_ecd .Log .Debug ("i\u002b\u0031\u003a\u0020\u0025\u0064 \u0028\u006f\u0062\u006a\u0020\u006eu\u006d\u003a\u0020\u0025\u0064\u0020\u0067e\u006e\u003a\u0020\u0025\u0064\u0029\u0020\u002d\u003e\u0020%\u0064",_efd +1,_cge .ObjectNumber ,_cge .Generation ,_cge .Offset ); -_efd ++;};}; - -// NewParser creates a new parser for a PDF file via ReadSeeker. Loads the cross reference stream and trailer. -// An error is returned on failure. -func NewParser (rs _ae .ReadSeeker )(*PdfParser ,error ){_deae :=&PdfParser {_ccgbe :rs ,ObjCache :make (objectCache ),_ecegc :map[int64 ]bool {},_abec :make ([]int64 ,0),_fcedf :make (map[*PdfParser ]*PdfParser )};_fbbbb ,_ccga ,_cdcb :=_deae .parsePdfVersion (); -if _cdcb !=nil {_ecd .Log .Error ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0076e\u0072\u0073\u0069o\u006e:\u0020\u0025\u0076",_cdcb );return nil ,_cdcb ;};_deae ._eddg .Major =_fbbbb ;_deae ._eddg .Minor =_ccga ; -if _deae ._gddgc ,_cdcb =_deae .loadXrefs ();_cdcb !=nil {_ecd .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020F\u0061\u0069\u006c\u0065d t\u006f l\u006f\u0061\u0064\u0020\u0078\u0072\u0065f \u0074\u0061\u0062\u006c\u0065\u0021\u0020%\u0073",_cdcb );return nil ,_cdcb ; -};_ecd .Log .Trace ("T\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0073",_deae ._gddgc );_ddafd ,_cdcb :=_deae .parseLinearizedDictionary ();if _cdcb !=nil {return nil ,_cdcb ;};if _ddafd !=nil {_deae ._fbgeb ,_cdcb =_deae .checkLinearizedInformation (_ddafd ); -if _cdcb !=nil {return nil ,_cdcb ;};};if len (_deae ._efdgc .ObjectMap )==0{return nil ,_daa .Errorf ("\u0065\u006d\u0070\u0074\u0079\u0020\u0058\u0052\u0045\u0046\u0020t\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0049\u006e\u0076a\u006c\u0069\u0064"); -};_deae ._eecd =len (_deae ._abec );if _deae ._fbgeb &&_deae ._eecd !=0{_deae ._eecd --;};_deae ._bdddd =make ([]*PdfParser ,_deae ._eecd );return _deae ,nil ;}; - -// GetRevisionNumber returns the current version of the Pdf document. -func (_fefaa *PdfParser )GetRevisionNumber ()int {return _fefaa ._eecd };const (StreamEncodingFilterNameFlate ="F\u006c\u0061\u0074\u0065\u0044\u0065\u0063\u006f\u0064\u0065";StreamEncodingFilterNameLZW ="\u004cZ\u0057\u0044\u0065\u0063\u006f\u0064e";StreamEncodingFilterNameDCT ="\u0044C\u0054\u0044\u0065\u0063\u006f\u0064e"; -StreamEncodingFilterNameRunLength ="\u0052u\u006eL\u0065\u006e\u0067\u0074\u0068\u0044\u0065\u0063\u006f\u0064\u0065";StreamEncodingFilterNameASCIIHex ="\u0041\u0053\u0043\u0049\u0049\u0048\u0065\u0078\u0044e\u0063\u006f\u0064\u0065";StreamEncodingFilterNameASCII85 ="\u0041\u0053\u0043\u0049\u0049\u0038\u0035\u0044\u0065\u0063\u006f\u0064\u0065"; -StreamEncodingFilterNameCCITTFax ="\u0043\u0043\u0049\u0054\u0054\u0046\u0061\u0078\u0044e\u0063\u006f\u0064\u0065";StreamEncodingFilterNameJBIG2 ="J\u0042\u0049\u0047\u0032\u0044\u0065\u0063\u006f\u0064\u0065";StreamEncodingFilterNameJPX ="\u004aP\u0058\u0044\u0065\u0063\u006f\u0064e"; -StreamEncodingFilterNameRaw ="\u0052\u0061\u0077";); - -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_cac *FlateEncoder )MakeDecodeParams ()PdfObject {if _cac .Predictor > 1{_fbeg :=MakeDict ();_fbeg .Set ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr",MakeInteger (int64 (_cac .Predictor )));if _cac .BitsPerComponent !=8{_fbeg .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",MakeInteger (int64 (_cac .BitsPerComponent ))); -};if _cac .Columns !=1{_fbeg .Set ("\u0043o\u006c\u0075\u006d\u006e\u0073",MakeInteger (int64 (_cac .Columns )));};if _cac .Colors !=1{_fbeg .Set ("\u0043\u006f\u006c\u006f\u0072\u0073",MakeInteger (int64 (_cac .Colors )));};return _fbeg ;};return nil ; -};func (_bgb *PdfParser )lookupByNumberWrapper (_gdd int ,_dce bool )(PdfObject ,bool ,error ){_edd ,_cfa ,_ebc :=_bgb .lookupByNumber (_gdd ,_dce );if _ebc !=nil {return nil ,_cfa ,_ebc ;};if !_cfa &&_bgb ._geaef !=nil &&_bgb ._geaef ._bag &&!_bgb ._geaef .isDecrypted (_edd ){_cc :=_bgb ._geaef .Decrypt (_edd ,0,0); -if _cc !=nil {return nil ,_cfa ,_cc ;};};return _edd ,_cfa ,nil ;}; - -// MakeDictMap creates a PdfObjectDictionary initialized from a map of keys to values. -func MakeDictMap (objmap map[string ]PdfObject )*PdfObjectDictionary {_cadg :=MakeDict ();return _cadg .Update (objmap );};func (_bggf *PdfParser )parsePdfVersion ()(int ,int ,error ){var _abbga int64 =20;_eeac :=make ([]byte ,_abbga );_bggf ._ccgbe .Seek (0,_ae .SeekStart ); -_bggf ._ccgbe .Read (_eeac );var _fcee error ;var _affg ,_agbf int ;if _fbbef :=_deba .FindStringSubmatch (string (_eeac ));len (_fbbef )< 3{if _affg ,_agbf ,_fcee =_bggf .seekPdfVersionTopDown ();_fcee !=nil {_ecd .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065\u0063\u006f\u0076\u0065\u0072\u0079\u0020\u002d\u0020\u0075n\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0066\u0069nd\u0020\u0076\u0065r\u0073i\u006f\u006e"); -return 0,0,_fcee ;};_bggf ._ccgbe ,_fcee =_addg (_bggf ._ccgbe ,_bggf .GetFileOffset ()-8);if _fcee !=nil {return 0,0,_fcee ;};}else {if _affg ,_fcee =_bf .Atoi (_fbbef [1]);_fcee !=nil {return 0,0,_fcee ;};if _agbf ,_fcee =_bf .Atoi (_fbbef [2]);_fcee !=nil {return 0,0,_fcee ; -};_bggf .SetFileOffset (0);};_bggf ._affd =_ga .NewReader (_bggf ._ccgbe );_ecd .Log .Debug ("\u0050\u0064\u0066\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020%\u0064\u002e\u0025\u0064",_affg ,_agbf );return _affg ,_agbf ,nil ;}; - -// IsEncrypted checks if the document is encrypted. A bool flag is returned indicating the result. -// First time when called, will check if the Encrypt dictionary is accessible through the trailer dictionary. -// If encrypted, prepares a crypt datastructure which can be used to authenticate and decrypt the document. -// On failure, an error is returned. -func (_abefb *PdfParser )IsEncrypted ()(bool ,error ){if _abefb ._geaef !=nil {return true ,nil ;}else if _abefb ._gddgc ==nil {return false ,nil ;};_ecd .Log .Trace ("\u0043\u0068\u0065c\u006b\u0069\u006e\u0067 \u0065\u006e\u0063\u0072\u0079\u0070\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0021"); -_ddeba :=_abefb ._gddgc .Get ("\u0045n\u0063\u0072\u0079\u0070\u0074");if _ddeba ==nil {return false ,nil ;};_ecd .Log .Trace ("\u0049\u0073\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0021");var (_bece *PdfObjectDictionary ;);switch _cede :=_ddeba .(type ){case *PdfObjectDictionary :_bece =_cede ; -case *PdfObjectReference :_ecd .Log .Trace ("\u0030\u003a\u0020\u004c\u006f\u006f\u006b\u0020\u0075\u0070\u0020\u0072e\u0066\u0020\u0025\u0071",_cede );_geeag ,_fcaf :=_abefb .LookupByReference (*_cede );_ecd .Log .Trace ("\u0031\u003a\u0020%\u0071",_geeag ); -if _fcaf !=nil {return false ,_fcaf ;};_cgfa ,_ddgc :=_geeag .(*PdfIndirectObject );if !_ddgc {_ecd .Log .Debug ("E\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072ec\u0074\u0020\u006fb\u006ae\u0063\u0074"); -return false ,_f .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_bgff ,_ddgc :=_cgfa .PdfObject .(*PdfObjectDictionary );_abefb ._ggggc =_cgfa ;_ecd .Log .Trace ("\u0032\u003a\u0020%\u0071",_bgff );if !_ddgc {return false ,_f .New ("\u0074\u0072a\u0069\u006c\u0065\u0072 \u0045\u006ec\u0072\u0079\u0070\u0074\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u006e\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -};_bece =_bgff ;case *PdfObjectNull :_ecd .Log .Debug ("\u0045\u006e\u0063\u0072\u0079\u0070\u0074 \u0069\u0073\u0020a\u0020\u006e\u0075l\u006c\u0020o\u0062\u006a\u0065\u0063\u0074\u002e \u0046il\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u002e"); -return false ,nil ;default:return false ,_daa .Errorf ("u\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0074\u0079\u0070\u0065: \u0025\u0054",_cede );};_acde ,_eadf :=PdfCryptNewDecrypt (_abefb ,_bece ,_abefb ._gddgc );if _eadf !=nil {return false ,_eadf ; -};for _ ,_eafed :=range []string {"\u0045n\u0063\u0072\u0079\u0070\u0074"}{_abgf :=_abefb ._gddgc .Get (PdfObjectName (_eafed ));if _abgf ==nil {continue ;};switch _gfaba :=_abgf .(type ){case *PdfObjectReference :_acde ._abf [int (_gfaba .ObjectNumber )]=struct{}{}; -case *PdfIndirectObject :_acde ._cgb [_gfaba ]=true ;_acde ._abf [int (_gfaba .ObjectNumber )]=struct{}{};};};_abefb ._geaef =_acde ;_ecd .Log .Trace ("\u0043\u0072\u0079\u0070\u0074\u0065\u0072\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0025\u0062",_acde ); -return true ,nil ;};func (_ggge *PdfCrypt )isDecrypted (_cecg PdfObject )bool {_ ,_ffa :=_ggge ._cgb [_cecg ];if _ffa {_ecd .Log .Trace ("\u0041\u006c\u0072\u0065\u0061\u0064\u0079\u0020\u0064\u0065\u0063\u0072y\u0070\u0074\u0065\u0064");return true ;}; -switch _gabg :=_cecg .(type ){case *PdfObjectStream :if _ggge ._af .R !=5{if _dee ,_dfbb :=_gabg .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );_dfbb &&*_dee =="\u0058\u0052\u0065\u0066"{return true ;};};case *PdfIndirectObject :if _ ,_ffa =_ggge ._abf [int (_gabg .ObjectNumber )]; -_ffa {return true ;};switch _dfba :=_gabg .PdfObject .(type ){case *PdfObjectDictionary :_ea :=true ;for _ ,_gga :=range _gbfc {if _dfba .Get (_gga )==nil {_ea =false ;break ;};};if _ea {return true ;};};};_ecd .Log .Trace ("\u004e\u006f\u0074\u0020\u0064\u0065\u0063\u0072\u0079\u0070\u0074\u0065d\u0020\u0079\u0065\u0074"); -return false ;};func (_gfdc *PdfParser )parseNumber ()(PdfObject ,error ){return ParseNumber (_gfdc ._affd )}; - -// GetStream returns the *PdfObjectStream represented by the PdfObject. On type mismatch the found bool flag is -// false and a nil pointer is returned. -func GetStream (obj PdfObject )(_baee *PdfObjectStream ,_dbae bool ){obj =ResolveReference (obj );_baee ,_dbae =obj .(*PdfObjectStream );return _baee ,_dbae ;};func (_cgaa *PdfParser )parseXref ()(*PdfObjectDictionary ,error ){_cgaa .skipSpaces ();const _caegc =20; -_dcag ,_ :=_cgaa ._affd .Peek (_caegc );for _dgdd :=0;_dgdd < 2;_dgdd ++{if _cgaa ._fefea ==0{_cgaa ._fefea =_cgaa .GetFileOffset ();};if _gegg .Match (_dcag ){_ecd .Log .Trace ("\u0078\u0072e\u0066\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u0074\u006f\u0020\u0061\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002e\u0020\u0050\u0072\u006f\u0062\u0061\u0062\u006c\u0079\u0020\u0078\u0072\u0065\u0066\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -_ecd .Log .Debug ("\u0073t\u0061r\u0074\u0069\u006e\u0067\u0020w\u0069\u0074h\u0020\u0022\u0025\u0073\u0022",string (_dcag ));return _cgaa .parseXrefStream (nil );};if _fbae .Match (_dcag ){_ecd .Log .Trace ("\u0053\u0074\u0061\u006ed\u0061\u0072\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u0073e\u0063t\u0069\u006f\u006e\u0020\u0074\u0061\u0062l\u0065\u0021"); -return _cgaa .parseXrefTable ();};_dadf :=_cgaa .GetFileOffset ();if _cgaa ._fefea ==0{_cgaa ._fefea =_dadf ;};_cgaa .SetFileOffset (_dadf -_caegc );defer _cgaa .SetFileOffset (_dadf );_afgd ,_ :=_cgaa ._affd .Peek (_caegc );_dcag =append (_afgd ,_dcag ...); -};_ecd .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006e\u0067\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u0078\u0072\u0065f\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u006fr\u0020\u0073\u0074\u0072\u0065\u0061\u006d.\u0020\u0052\u0065\u0070\u0061i\u0072\u0020\u0061\u0074\u0074e\u006d\u0070\u0074\u0065\u0064\u003a\u0020\u004c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0065\u0061\u0072\u006c\u0069\u0065\u0073\u0074\u0020x\u0072\u0065\u0066\u0020\u0066\u0072\u006f\u006d\u0020\u0062\u006f\u0074to\u006d\u002e"); -if _bfed :=_cgaa .repairSeekXrefMarker ();_bfed !=nil {_ecd .Log .Debug ("\u0052e\u0070a\u0069\u0072\u0020\u0066\u0061i\u006c\u0065d\u0020\u002d\u0020\u0025\u0076",_bfed );return nil ,_bfed ;};return _cgaa .parseXrefTable ();}; - -// String returns a string describing `ind`. -func (_fdec *PdfIndirectObject )String ()string {return _daa .Sprintf ("\u0049\u004f\u0062\u006a\u0065\u0063\u0074\u003a\u0025\u0064",(*_fdec ).ObjectNumber );};func (_afged *PdfObjectInteger )String ()string {return _daa .Sprintf ("\u0025\u0064",*_afged )}; +// DecodeGlobals decodes 'encoded' byte stream and returns their Globally defined segments ('Globals'). +func (_efdf *JBIG2Encoder )DecodeGlobals (encoded []byte )(_fb .Globals ,error ){return _fb .DecodeGlobals (encoded );};func _eecf ()string {return _a .Version }; +// Elements returns a slice of the PdfObject elements in the array. +// Preferred over accessing the array directly as type may be changed in future major versions (v3). +func (_cbedbf *PdfObjectStreams )Elements ()[]PdfObject {if _cbedbf ==nil {return nil ;};return _cbedbf ._cegef ;};const (_agdd =0;_bfa =1;_fca =2;_daef =3;_gabc =4;); -// Append appends PdfObject(s) to the streams. -func (_fcga *PdfObjectStreams )Append (objects ...PdfObject ){if _fcga ==nil {_ecd .Log .Debug ("\u0057\u0061\u0072\u006e\u0020-\u0020\u0041\u0074\u0074\u0065\u006d\u0070\u0074\u0020\u0074\u006f\u0020\u0061p\u0070\u0065\u006e\u0064\u0020\u0074\u006f\u0020\u0061\u0020\u006e\u0069\u006c\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0073"); -return ;};_fcga ._gedag =append (_fcga ._gedag ,objects ...);}; +// DecodeStream decodes the stream data and returns the decoded data. +// An error is returned upon failure. +func DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_a .Log .Trace ("\u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d");_eadbd ,_fddfd :=NewEncoderFromStream (streamObj );if _fddfd !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0065\u0063\u006f\u0064\u0069n\u0067\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_fddfd ); +return nil ,_fddfd ;};_a .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u0023\u0076\u000a",_eadbd );_cbfea ,_fddfd :=_eadbd .DecodeStream (streamObj );if _fddfd !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0065\u0063\u006f\u0064\u0069n\u0067\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_fddfd ); +return nil ,_fddfd ;};return _cbfea ,nil ;};const JB2ImageAutoThreshold =-1.0; -// PdfParser parses a PDF file and provides access to the object structure of the PDF. -type PdfParser struct{_eddg Version ;_ccgbe _ae .ReadSeeker ;_affd *_ga .Reader ;_defe int64 ;_efdgc XrefTable ;_fefea int64 ;_ceae *xrefType ;_cafa objectStreams ;_gddgc *PdfObjectDictionary ;_geaef *PdfCrypt ;_ggggc *PdfIndirectObject ;_abcfc bool ;ObjCache objectCache ; -_bddbf map[int ]bool ;_ecegc map[int64 ]bool ;_bcdc ParserMetadata ;_adaa bool ;_abec []int64 ;_eecd int ;_fbgeb bool ;_gbcg int64 ;_fcedf map[*PdfParser ]*PdfParser ;_bdddd []*PdfParser ;};func _deac (_gab int )cryptFilters {return cryptFilters {_dbb :_bc .NewFilterV2 (_gab )}}; +// HasNonConformantStream implements core.ParserMetadata. +func (_cgdg ParserMetadata )HasNonConformantStream ()bool {return _cgdg ._efcd }; +// GetFloat returns the *PdfObjectFloat represented by the PdfObject directly or indirectly within an indirect +// object. On type mismatch the found bool flag is false and a nil pointer is returned. +func GetFloat (obj PdfObject )(_egdb *PdfObjectFloat ,_aebg bool ){_egdb ,_aebg =TraceToDirectObject (obj ).(*PdfObjectFloat );return _egdb ,_aebg ;};func _gfdf (_bdgb _efd .Filter ,_aee _dc .AuthEvent )*PdfObjectDictionary {if _aee ==""{_aee =_dc .EventDocOpen ; +};_gdde :=MakeDict ();_gdde .Set ("\u0054\u0079\u0070\u0065",MakeName ("C\u0072\u0079\u0070\u0074\u0046\u0069\u006c\u0074\u0065\u0072"));_gdde .Set ("\u0041u\u0074\u0068\u0045\u0076\u0065\u006et",MakeName (string (_aee )));_gdde .Set ("\u0043\u0046\u004d",MakeName (_bdgb .Name ())); +_gdde .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (_bdgb .KeyLength ())));return _gdde ;}; -// DrawableImage is same as golang image/draw's Image interface that allow drawing images. -type DrawableImage interface{ColorModel ()_ec .Model ;Bounds ()_ac .Rectangle ;At (_fecc ,_ffff int )_ec .Color ;Set (_bade ,_gebg int ,_bagg _ec .Color );};var _abbc =[]byte ("\u0030\u0031\u0032\u003345\u0036\u0037\u0038\u0039\u0061\u0062\u0063\u0064\u0065\u0066\u0041\u0042\u0043\u0044E\u0046"); +// Elements returns a slice of the PdfObject elements in the array. +func (_ceaad *PdfObjectArray )Elements ()[]PdfObject {if _ceaad ==nil {return nil ;};return _ceaad ._fabc ;}; +// ToFloat64Array returns a slice of all elements in the array as a float64 slice. An error is +// returned if the array contains non-numeric objects (each element can be either PdfObjectInteger +// or PdfObjectFloat). +func (_baaca *PdfObjectArray )ToFloat64Array ()([]float64 ,error ){var _fedfb []float64 ;for _ ,_agdad :=range _baaca .Elements (){switch _eade :=_agdad .(type ){case *PdfObjectInteger :_fedfb =append (_fedfb ,float64 (*_eade ));case *PdfObjectFloat :_fedfb =append (_fedfb ,float64 (*_eade )); +default:return nil ,ErrTypeError ;};};return _fedfb ,nil ;};func (_bbcdg *PdfParser )repairLocateXref ()(int64 ,error ){_fcccc :=int64 (1000);_bbcdg ._dfcdg .Seek (-_fcccc ,_fg .SeekCurrent );_aaef ,_bggf :=_bbcdg ._dfcdg .Seek (0,_fg .SeekCurrent );if _bggf !=nil {return 0,_bggf ; +};_fcbae :=make ([]byte ,_fcccc );_bbcdg ._dfcdg .Read (_fcbae );_begc :=_dgbg .FindAllStringIndex (string (_fcbae ),-1);if len (_begc )< 1{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0052\u0065\u0070a\u0069\u0072\u003a\u0020\u0078\u0072\u0065f\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021"); +return 0,_c .New ("\u0072\u0065\u0070\u0061ir\u003a\u0020\u0078\u0072\u0065\u0066\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064");};_ggff :=int64 (_begc [len (_begc )-1][0]);_ggdb :=_aaef +_ggff ;return _ggdb ,nil ;}; -// GetIndirect returns the *PdfIndirectObject represented by the PdfObject. On type mismatch the found bool flag is -// false and a nil pointer is returned. -func GetIndirect (obj PdfObject )(_febab *PdfIndirectObject ,_bcfge bool ){obj =ResolveReference (obj );_febab ,_bcfge =obj .(*PdfIndirectObject );return _febab ,_bcfge ;}; +// GetFilterName returns the name of the encoding filter. +func (_fceb *JPXEncoder )GetFilterName ()string {return StreamEncodingFilterNameJPX }; -// DecodeBytes decodes a multi-encoded slice of bytes by passing it through the -// DecodeBytes method of the underlying encoders. -func (_fgdb *MultiEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_geaf :=encoded ;var _cgda error ;for _ ,_fcff :=range _fgdb ._degb {_ecd .Log .Trace ("\u004du\u006c\u0074i\u0020\u0045\u006e\u0063o\u0064\u0065\u0072 \u0044\u0065\u0063\u006f\u0064\u0065\u003a\u0020\u0041pp\u006c\u0079\u0069n\u0067\u0020F\u0069\u006c\u0074\u0065\u0072\u003a \u0025\u0076 \u0025\u0054",_fcff ,_fcff ); -_geaf ,_cgda =_fcff .DecodeBytes (_geaf );if _cgda !=nil {return nil ,_cgda ;};};return _geaf ,nil ;};const _cbab =10;func (_degf *PdfParser )repairSeekXrefMarker ()error {_bbed ,_dead :=_degf ._ccgbe .Seek (0,_ae .SeekEnd );if _dead !=nil {return _dead ; -};_fgac :=_fc .MustCompile ("\u005cs\u0078\u0072\u0065\u0066\u005c\u0073*");var _cegfg int64 ;var _cadc int64 =1000;for _cegfg < _bbed {if _bbed <=(_cadc +_cegfg ){_cadc =_bbed -_cegfg ;};_ ,_ggdf :=_degf ._ccgbe .Seek (-_cegfg -_cadc ,_ae .SeekEnd );if _ggdf !=nil {return _ggdf ; -};_acegg :=make ([]byte ,_cadc );_degf ._ccgbe .Read (_acegg );_ecd .Log .Trace ("\u004c\u006f\u006fki\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0078\u0072\u0065\u0066\u0020\u003a\u0020\u0022\u0025\u0073\u0022",string (_acegg ));_aecac :=_fgac .FindAllStringIndex (string (_acegg ),-1); -if _aecac !=nil {_gcagf :=_aecac [len (_aecac )-1];_ecd .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_aecac );_degf ._ccgbe .Seek (-_cegfg -_cadc +int64 (_gcagf [0]),_ae .SeekEnd );_degf ._affd =_ga .NewReader (_degf ._ccgbe );for {_acba ,_dbffg :=_degf ._affd .Peek (1); -if _dbffg !=nil {return _dbffg ;};_ecd .Log .Trace ("\u0042\u003a\u0020\u0025\u0064\u0020\u0025\u0063",_acba [0],_acba [0]);if !IsWhiteSpace (_acba [0]){break ;};_degf ._affd .Discard (1);};return nil ;};_ecd .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006eg\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0021\u0020\u002d\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020s\u0065e\u006b\u0069\u006e\u0067"); -_cegfg +=_cadc ;};_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0058\u0072\u0065\u0066\u0020\u0074a\u0062\u006c\u0065\u0020\u006d\u0061r\u006b\u0065\u0072\u0020\u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u002e"); -return _f .New ("\u0078r\u0065f\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020");};func (_gdeb *PdfParser )parseLinearizedDictionary ()(*PdfObjectDictionary ,error ){_dfgc ,_dgebd :=_gdeb ._ccgbe .Seek (0,_ae .SeekEnd );if _dgebd !=nil {return nil ,_dgebd ; -};var _fddf int64 ;var _ffagb int64 =2048;for _fddf < _dfgc -4{if _dfgc <=(_ffagb +_fddf ){_ffagb =_dfgc -_fddf ;};_ ,_dgac :=_gdeb ._ccgbe .Seek (_fddf ,_ae .SeekStart );if _dgac !=nil {return nil ,_dgac ;};_efcac :=make ([]byte ,_ffagb );_ ,_dgac =_gdeb ._ccgbe .Read (_efcac ); -if _dgac !=nil {return nil ,_dgac ;};_ecd .Log .Trace ("\u004c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0066i\u0072\u0073\u0074\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0022\u0025\u0073\u0022",string (_efcac )); -_bdae :=_gegg .FindAllStringIndex (string (_efcac ),-1);if _bdae !=nil {_abdd :=_bdae [0];_ecd .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_bdae );_ ,_fdbge :=_gdeb ._ccgbe .Seek (int64 (_abdd [0]),_ae .SeekStart );if _fdbge !=nil {return nil ,_fdbge ; -};_gdeb ._affd =_ga .NewReader (_gdeb ._ccgbe );_gbbbg ,_fdbge :=_gdeb .ParseIndirectObject ();if _fdbge !=nil {return nil ,nil ;};if _bfbgc ,_cdcag :=GetIndirect (_gbbbg );_cdcag {if _fafa ,_fgea :=GetDict (_bfbgc .PdfObject );_fgea {if _bdcad :=_fafa .Get ("\u004c\u0069\u006e\u0065\u0061\u0072\u0069\u007a\u0065\u0064"); -_bdcad !=nil {return _fafa ,nil ;};return nil ,nil ;};};return nil ,nil ;};_fddf +=_ffagb -4;};return nil ,_f .New ("\u0074\u0068\u0065\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064"); -}; +// PdfObjectArray represents the primitive PDF array object. +type PdfObjectArray struct{_fabc []PdfObject }; -// String returns a string describing `streams`. -func (_ccdab *PdfObjectStreams )String ()string {return _daa .Sprintf ("\u004f\u0062j\u0065\u0063\u0074 \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0025\u0064",_ccdab .ObjectNumber );}; +// DecodeBytes decodes a slice of DCT encoded bytes and returns the result. +func (_ebce *DCTEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_fabd :=_fd .NewReader (encoded );_efaac ,_aaea :=_eb .Decode (_fabd );if _aaea !=nil {_a .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006eg\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_aaea ); +return nil ,_aaea ;};_abc :=_efaac .Bounds ();var _eege =make ([]byte ,_abc .Dx ()*_abc .Dy ()*_ebce .ColorComponents *_ebce .BitsPerComponent /8);_cfbc :=0;switch _ebce .ColorComponents {case 1:_gdfb :=[]float64 {_ebce .Decode [0],_ebce .Decode [1]};for _cgade :=_abc .Min .Y ; +_cgade < _abc .Max .Y ;_cgade ++{for _ebcg :=_abc .Min .X ;_ebcg < _abc .Max .X ;_ebcg ++{_fbed :=_efaac .At (_ebcg ,_cgade );if _ebce .BitsPerComponent ==16{_fced ,_bfab :=_fbed .(_ga .Gray16 );if !_bfab {return nil ,_c .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};_dbfe :=_deage (uint (_fced .Y >>8),_gdfb [0],_gdfb [1]);_fcf :=_deage (uint (_fced .Y ),_gdfb [0],_gdfb [1]);_eege [_cfbc ]=byte (_dbfe );_cfbc ++;_eege [_cfbc ]=byte (_fcf );_cfbc ++;}else {_ffbb ,_eecd :=_fbed .(_ga .Gray );if !_eecd {return nil ,_c .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};_eege [_cfbc ]=byte (_deage (uint (_ffbb .Y ),_gdfb [0],_gdfb [1]));_cfbc ++;};};};case 3:_bgfb :=[]float64 {_ebce .Decode [0],_ebce .Decode [1]};_cdeg :=[]float64 {_ebce .Decode [2],_ebce .Decode [3]};_dgdf :=[]float64 {_ebce .Decode [4],_ebce .Decode [5]}; +for _ddc :=_abc .Min .Y ;_ddc < _abc .Max .Y ;_ddc ++{for _adad :=_abc .Min .X ;_adad < _abc .Max .X ;_adad ++{_acce :=_efaac .At (_adad ,_ddc );if _ebce .BitsPerComponent ==16{_fbbd ,_afca :=_acce .(_ga .RGBA64 );if !_afca {return nil ,_c .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};_dcdf :=_deage (uint (_fbbd .R >>8),_bgfb [0],_bgfb [1]);_adbea :=_deage (uint (_fbbd .R ),_bgfb [0],_bgfb [1]);_cdb :=_deage (uint (_fbbd .G >>8),_cdeg [0],_cdeg [1]);_acaa :=_deage (uint (_fbbd .G ),_cdeg [0],_cdeg [1]);_fedf :=_deage (uint (_fbbd .B >>8),_dgdf [0],_dgdf [1]); +_cgdd :=_deage (uint (_fbbd .B ),_dgdf [0],_dgdf [1]);_eege [_cfbc ]=byte (_dcdf );_cfbc ++;_eege [_cfbc ]=byte (_adbea );_cfbc ++;_eege [_cfbc ]=byte (_cdb );_cfbc ++;_eege [_cfbc ]=byte (_acaa );_cfbc ++;_eege [_cfbc ]=byte (_fedf );_cfbc ++;_eege [_cfbc ]=byte (_cgdd ); +_cfbc ++;}else {_ddge ,_bgea :=_acce .(_ga .RGBA );if _bgea {_ded :=_deage (uint (_ddge .R ),_bgfb [0],_bgfb [1]);_cff :=_deage (uint (_ddge .G ),_cdeg [0],_cdeg [1]);_gcf :=_deage (uint (_ddge .B ),_dgdf [0],_dgdf [1]);_eege [_cfbc ]=byte (_ded );_cfbc ++; +_eege [_cfbc ]=byte (_cff );_cfbc ++;_eege [_cfbc ]=byte (_gcf );_cfbc ++;}else {_bbe ,_dedf :=_acce .(_ga .YCbCr );if !_dedf {return nil ,_c .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_dddg ,_egad ,_dbbf ,_ :=_bbe .RGBA (); +_agee :=_deage (uint (_dddg >>8),_bgfb [0],_bgfb [1]);_ceefg :=_deage (uint (_egad >>8),_cdeg [0],_cdeg [1]);_gfgaf :=_deage (uint (_dbbf >>8),_dgdf [0],_dgdf [1]);_eege [_cfbc ]=byte (_agee );_cfbc ++;_eege [_cfbc ]=byte (_ceefg );_cfbc ++;_eege [_cfbc ]=byte (_gfgaf ); +_cfbc ++;};};};};case 4:_ebbg :=[]float64 {_ebce .Decode [0],_ebce .Decode [1]};_cbfb :=[]float64 {_ebce .Decode [2],_ebce .Decode [3]};_edba :=[]float64 {_ebce .Decode [4],_ebce .Decode [5]};_egdg :=[]float64 {_ebce .Decode [6],_ebce .Decode [7]};for _cegg :=_abc .Min .Y ; +_cegg < _abc .Max .Y ;_cegg ++{for _bcdc :=_abc .Min .X ;_bcdc < _abc .Max .X ;_bcdc ++{_dba :=_efaac .At (_bcdc ,_cegg );_edeb ,_fdcg :=_dba .(_ga .CMYK );if !_fdcg {return nil ,_c .New ("\u0063\u006fl\u006f\u0072\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};_fgcg :=255-_deage (uint (_edeb .C ),_ebbg [0],_ebbg [1]);_gcb :=255-_deage (uint (_edeb .M ),_cbfb [0],_cbfb [1]);_gde :=255-_deage (uint (_edeb .Y ),_edba [0],_edba [1]);_eccb :=255-_deage (uint (_edeb .K ),_egdg [0],_egdg [1]);_eege [_cfbc ]=byte (_fgcg ); +_cfbc ++;_eege [_cfbc ]=byte (_gcb );_cfbc ++;_eege [_cfbc ]=byte (_gde );_cfbc ++;_eege [_cfbc ]=byte (_eccb );_cfbc ++;};};};return _eege ,nil ;}; -// SetImage sets the image base for given flate encoder. -func (_eaf *FlateEncoder )SetImage (img *_fcf .ImageBase ){_eaf ._bgba =img }; +// StreamEncoder represents the interface for all PDF stream encoders. +type StreamEncoder interface{GetFilterName ()string ;MakeDecodeParams ()PdfObject ;MakeStreamDict ()*PdfObjectDictionary ;UpdateParams (_fcea *PdfObjectDictionary );EncodeBytes (_facd []byte )([]byte ,error );DecodeBytes (_cge []byte )([]byte ,error ); +DecodeStream (_acbg *PdfObjectStream )([]byte ,error );}; -// Encode encodes previously prepare jbig2 document and stores it as the byte slice. -func (_gggfg *JBIG2Encoder )Encode ()(_bbbbg []byte ,_dffc error ){const _gfbc ="J\u0042I\u0047\u0032\u0044\u006f\u0063\u0075\u006d\u0065n\u0074\u002e\u0045\u006eco\u0064\u0065";if _gggfg ._gcdf ==nil {return nil ,_cd .Errorf (_gfbc ,"\u0064\u006f\u0063u\u006d\u0065\u006e\u0074 \u0069\u006e\u0070\u0075\u0074\u0020\u0064a\u0074\u0061\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};_gggfg ._gcdf .FullHeaders =_gggfg .DefaultPageSettings .FileMode ;_bbbbg ,_dffc =_gggfg ._gcdf .Encode ();if _dffc !=nil {return nil ,_cd .Wrap (_dffc ,_gfbc ,"");};return _bbbbg ,nil ;};func (_ebgf *PdfParser )parseBool ()(PdfObjectBool ,error ){_cfad ,_adae :=_ebgf ._affd .Peek (4); -if _adae !=nil {return PdfObjectBool (false ),_adae ;};if (len (_cfad )>=4)&&(string (_cfad [:4])=="\u0074\u0072\u0075\u0065"){_ebgf ._affd .Discard (4);return PdfObjectBool (true ),nil ;};_cfad ,_adae =_ebgf ._affd .Peek (5);if _adae !=nil {return PdfObjectBool (false ),_adae ; -};if (len (_cfad )>=5)&&(string (_cfad [:5])=="\u0066\u0061\u006cs\u0065"){_ebgf ._affd .Discard (5);return PdfObjectBool (false ),nil ;};return PdfObjectBool (false ),_f .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg"); -}; +// WriteString outputs the object as it is to be written to file. +func (_cbdfa *PdfObjectDictionary )WriteString ()string {var _ggec _gd .Builder ;_ggec .WriteString ("\u003c\u003c");for _ ,_bcecd :=range _cbdfa ._caeg {_dabdee :=_cbdfa ._adbeb [_bcecd ];_ggec .WriteString (_bcecd .WriteString ());_ggec .WriteString ("\u0020"); +_ggec .WriteString (_dabdee .WriteString ());};_ggec .WriteString ("\u003e\u003e");return _ggec .String ();}; // WriteString outputs the object as it is to be written to file. -func (_ccee *PdfObjectDictionary )WriteString ()string {var _adff _c .Builder ;_adff .WriteString ("\u003c\u003c");for _ ,_egedg :=range _ccee ._aeea {_egfb :=_ccee ._dbce [_egedg ];_adff .WriteString (_egedg .WriteString ());_adff .WriteString ("\u0020"); -_adff .WriteString (_egfb .WriteString ());};_adff .WriteString ("\u003e\u003e");return _adff .String ();}; +func (_ccgba *PdfObjectReference )WriteString ()string {var _dfaag _gd .Builder ;_dfaag .WriteString (_bd .FormatInt (_ccgba .ObjectNumber ,10));_dfaag .WriteString ("\u0020");_dfaag .WriteString (_bd .FormatInt (_ccgba .GenerationNumber ,10));_dfaag .WriteString ("\u0020\u0052"); +return _dfaag .String ();};func _efb (_dff *_dc .StdEncryptDict ,_efgc *PdfObjectDictionary ){_efgc .Set ("\u0052",MakeInteger (int64 (_dff .R )));_efgc .Set ("\u0050",MakeInteger (int64 (_dff .P )));_efgc .Set ("\u004f",MakeStringFromBytes (_dff .O )); +_efgc .Set ("\u0055",MakeStringFromBytes (_dff .U ));if _dff .R >=5{_efgc .Set ("\u004f\u0045",MakeStringFromBytes (_dff .OE ));_efgc .Set ("\u0055\u0045",MakeStringFromBytes (_dff .UE ));_efgc .Set ("\u0045n\u0063r\u0079\u0070\u0074\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",MakeBool (_dff .EncryptMetadata )); +if _dff .R > 5{_efgc .Set ("\u0050\u0065\u0072m\u0073",MakeStringFromBytes (_dff .Perms ));};};};func (_cdcdd *PdfParser )traceStreamLength (_aabec PdfObject )(PdfObject ,error ){_agdcc ,_cfff :=_aabec .(*PdfObjectReference );if _cfff {_agdb ,_gcfc :=_cdcdd ._ffed [_agdcc .ObjectNumber ]; +if _gcfc &&_agdb {_a .Log .Debug ("\u0053t\u0072\u0065a\u006d\u0020\u004c\u0065n\u0067\u0074\u0068 \u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 u\u006e\u0072\u0065s\u006f\u006cv\u0065\u0064\u0020\u0028\u0069\u006cl\u0065\u0067a\u006c\u0029"); +return nil ,_c .New ("\u0069\u006c\u006c\u0065ga\u006c\u0020\u0072\u0065\u0063\u0075\u0072\u0073\u0069\u0076\u0065\u0020\u006c\u006fo\u0070");};_cdcdd ._ffed [_agdcc .ObjectNumber ]=true ;};_gbec ,_ddfb :=_cdcdd .Resolve (_aabec );if _ddfb !=nil {return nil ,_ddfb ; +};_a .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0065\u006e\u0067\u0074h\u003f\u0020\u0025\u0073",_gbec );if _cfff {_cdcdd ._ffed [_agdcc .ObjectNumber ]=false ;};return _gbec ,nil ;}; // MakeDecodeParams makes a new instance of an encoding dictionary based on // the current encoder settings. -func (_gedd *MultiEncoder )MakeDecodeParams ()PdfObject {if len (_gedd ._degb )==0{return nil ;};if len (_gedd ._degb )==1{return _gedd ._degb [0].MakeDecodeParams ();};_fbc :=MakeArray ();_gdfd :=true ;for _ ,_bef :=range _gedd ._degb {_dccg :=_bef .MakeDecodeParams (); -if _dccg ==nil {_fbc .Append (MakeNull ());}else {_gdfd =false ;_fbc .Append (_dccg );};};if _gdfd {return nil ;};return _fbc ;}; +func (_ccba *DCTEncoder )MakeDecodeParams ()PdfObject {return nil }; // WriteString outputs the object as it is to be written to file. -func (_dccafg *PdfObjectNull )WriteString ()string {return "\u006e\u0075\u006c\u006c"};func _aefg (_egeg PdfObject ,_agde int )PdfObject {if _agde > _cbab {_ecd .Log .Error ("\u0054\u0072ac\u0065\u0020\u0064e\u0070\u0074\u0068\u0020lev\u0065l \u0062\u0065\u0079\u006f\u006e\u0064\u0020%d\u0020\u002d\u0020\u0065\u0072\u0072\u006fr\u0021",_cbab ); -return MakeNull ();};switch _cacc :=_egeg .(type ){case *PdfIndirectObject :_egeg =_aefg ((*_cacc ).PdfObject ,_agde +1);case *PdfObjectArray :for _eeef ,_eggf :=range (*_cacc )._egacc {(*_cacc )._egacc [_eeef ]=_aefg (_eggf ,_agde +1);};case *PdfObjectDictionary :for _ebgc ,_dafc :=range (*_cacc )._dbce {(*_cacc )._dbce [_ebgc ]=_aefg (_dafc ,_agde +1); -};_db .Slice ((*_cacc )._aeea ,func (_edgd ,_cgff int )bool {return (*_cacc )._aeea [_edgd ]< (*_cacc )._aeea [_cgff ]});};return _egeg ;};var _becgf =_fc .MustCompile ("\u005e\\\u0073\u002a\u005b\u002d]\u002a\u0028\u005c\u0064\u002b)\u005cs\u002b(\u005c\u0064\u002b\u0029\u005c\u0073\u002bR"); -var _edcdb =_fc .MustCompile ("\u005b\\\u0072\u005c\u006e\u005d\u005c\u0073\u002a\u0028\u0078\u0072\u0065f\u0029\u005c\u0073\u002a\u005b\u005c\u0072\u005c\u006e\u005d");func (_acfb *PdfObjectDictionary )setWithLock (_bfge PdfObjectName ,_cdfd PdfObject ,_bcgd bool ){if _bcgd {_acfb ._gaae .Lock (); -defer _acfb ._gaae .Unlock ();};_ ,_faeea :=_acfb ._dbce [_bfge ];if !_faeea {_acfb ._aeea =append (_acfb ._aeea ,_bfge );};_acfb ._dbce [_bfge ]=_cdfd ;}; +func (_dcee *PdfObjectStream )WriteString ()string {var _geff _gd .Builder ;_geff .WriteString (_bd .FormatInt (_dcee .ObjectNumber ,10));_geff .WriteString ("\u0020\u0030\u0020\u0052");return _geff .String ();}; -// ParseDict reads and parses a PDF dictionary object enclosed with '<<' and '>>' -func (_bgce *PdfParser )ParseDict ()(*PdfObjectDictionary ,error ){_ecd .Log .Trace ("\u0052\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020D\u0069\u0063\u0074\u0021");_efabb :=MakeDict ();_efabb ._gfabc =_bgce ;_edea ,_ :=_bgce ._affd .ReadByte (); -if _edea !='<'{return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074");};_edea ,_ =_bgce ._affd .ReadByte ();if _edea !='<'{return nil ,_f .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); -};for {_bgce .skipSpaces ();_bgce .skipComments ();_ceede ,_gde :=_bgce ._affd .Peek (2);if _gde !=nil {return nil ,_gde ;};_ecd .Log .Trace ("D\u0069c\u0074\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_ceede ),string (_ceede )); -if (_ceede [0]=='>')&&(_ceede [1]=='>'){_ecd .Log .Trace ("\u0045\u004f\u0046\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079");_bgce ._affd .ReadByte ();_bgce ._affd .ReadByte ();break ;};_ecd .Log .Trace ("\u0050a\u0072s\u0065\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0021"); -_gcccg ,_gde :=_bgce .parseName ();_ecd .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_gcccg );if _gde !=nil {_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0052e\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006ea\u006d\u0065\u0020e\u0072r\u0020\u0025\u0073",_gde ); -return nil ,_gde ;};if len (_gcccg )> 4&&_gcccg [len (_gcccg )-4:]=="\u006e\u0075\u006c\u006c"{_eeec :=_gcccg [0:len (_gcccg )-4];_ecd .Log .Debug ("\u0054\u0061\u006b\u0069n\u0067\u0020\u0063\u0061\u0072\u0065\u0020\u006f\u0066\u0020n\u0075l\u006c\u0020\u0062\u0075\u0067\u0020\u0028%\u0073\u0029",_gcccg ); -_ecd .Log .Debug ("\u004e\u0065\u0077\u0020ke\u0079\u0020\u0022\u0025\u0073\u0022\u0020\u003d\u0020\u006e\u0075\u006c\u006c",_eeec );_bgce .skipSpaces ();_eadc ,_ :=_bgce ._affd .Peek (1);if _eadc [0]=='/'{_efabb .Set (_eeec ,MakeNull ());continue ;};}; -_bgce .skipSpaces ();_cccf ,_gde :=_bgce .parseObject ();if _gde !=nil {return nil ,_gde ;};_efabb .Set (_gcccg ,_cccf );if _ecd .Log .IsLogLevel (_ecd .LogLevelTrace ){_ecd .Log .Trace ("\u0064\u0069\u0063\u0074\u005b\u0025\u0073\u005d\u0020\u003d\u0020\u0025\u0073",_gcccg ,_cccf .String ()); -};};_ecd .Log .Trace ("\u0072\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020\u0044\u0069\u0063\u0074\u0021");return _efabb ,nil ;}; +// EncodeJBIG2Image encodes 'img' into jbig2 encoded bytes stream, using default encoder settings. +func (_egdf *JBIG2Encoder )EncodeJBIG2Image (img *JBIG2Image )([]byte ,error ){const _aaae ="c\u006f\u0072\u0065\u002eEn\u0063o\u0064\u0065\u004a\u0042\u0049G\u0032\u0049\u006d\u0061\u0067\u0065";if _egaa :=_egdf .AddPageImage (img ,&_egdf .DefaultPageSettings ); +_egaa !=nil {return nil ,_dd .Wrap (_egaa ,_aaae ,"");};return _egdf .Encode ();}; -// LookupByReference looks up a PdfObject by a reference. -func (_efe *PdfParser )LookupByReference (ref PdfObjectReference )(PdfObject ,error ){_ecd .Log .Trace ("\u004c\u006f\u006fki\u006e\u0067\u0020\u0075\u0070\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0025\u0073",ref .String ());return _efe .LookupByNumber (int (ref .ObjectNumber )); -};func (_fdac *PdfParser )skipSpaces ()(int ,error ){_fagb :=0;for {_abeef ,_ggee :=_fdac ._affd .ReadByte ();if _ggee !=nil {return 0,_ggee ;};if IsWhiteSpace (_abeef ){_fagb ++;}else {_fdac ._affd .UnreadByte ();break ;};};return _fagb ,nil ;};func _geddc (_gfbf ,_ebge ,_bage uint8 )uint8 {_cdgdc :=int (_bage ); -_dcaf :=int (_ebge )-_cdgdc ;_faee :=int (_gfbf )-_cdgdc ;_cdgdc =_bafgb (_dcaf +_faee );_dcaf =_bafgb (_dcaf );_faee =_bafgb (_faee );if _dcaf <=_faee &&_dcaf <=_cdgdc {return _gfbf ;}else if _faee <=_cdgdc {return _ebge ;};return _bage ;}; +// NewASCIIHexEncoder makes a new ASCII hex encoder. +func NewASCIIHexEncoder ()*ASCIIHexEncoder {_cdfa :=&ASCIIHexEncoder {};return _cdfa };func (_aeac *PdfParser )seekToEOFMarker (_cegfe int64 )error {var _gcgf int64 ;var _bcac int64 =2048;for _gcgf < _cegfe -4{if _cegfe <=(_bcac +_gcgf ){_bcac =_cegfe -_gcgf ; +};_ ,_afgfc :=_aeac ._dfcdg .Seek (_cegfe -_gcgf -_bcac ,_fg .SeekStart );if _afgfc !=nil {return _afgfc ;};_bcfda :=make ([]byte ,_bcac );_aeac ._dfcdg .Read (_bcfda );_a .Log .Trace ("\u004c\u006f\u006f\u006bi\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0045\u004f\u0046 \u006da\u0072\u006b\u0065\u0072\u003a\u0020\u0022%\u0073\u0022",string (_bcfda )); +_aegd :=_dbdb .FindAllStringIndex (string (_bcfda ),-1);if _aegd !=nil {_dbbb :=_aegd [len (_aegd )-1];_a .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_aegd );_bgaab :=_cegfe -_gcgf -_bcac +int64 (_dbbb [0]);_aeac ._dfcdg .Seek (_bgaab ,_fg .SeekStart ); +return nil ;};_a .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006eg\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0021\u0020\u002d\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020s\u0065e\u006b\u0069\u006e\u0067"); +_gcgf +=_bcac -4;};_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006be\u0072 \u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e");return _bcaf ;};const _gbed =6; -// String returns a string describing `d`. -func (_cbcg *PdfObjectDictionary )String ()string {var _dcde _c .Builder ;_dcde .WriteString ("\u0044\u0069\u0063t\u0028");for _ ,_gggee :=range _cbcg ._aeea {_gbab :=_cbcg ._dbce [_gggee ];_dcde .WriteString ("\u0022"+_gggee .String ()+"\u0022\u003a\u0020"); -_dcde .WriteString (_gbab .String ());_dcde .WriteString ("\u002c\u0020");};_dcde .WriteString ("\u0029");return _dcde .String ();}; -// GetName returns the *PdfObjectName represented by the PdfObject directly or indirectly within an indirect -// object. On type mismatch the found bool flag is false and a nil pointer is returned. -func GetName (obj PdfObject )(_egcg *PdfObjectName ,_cebgb bool ){_egcg ,_cebgb =TraceToDirectObject (obj ).(*PdfObjectName );return _egcg ,_cebgb ;}; +// EncodeBytes encodes the passed in slice of bytes by passing it through the +// EncodeBytes method of the underlying encoders. +func (_bacg *MultiEncoder )EncodeBytes (data []byte )([]byte ,error ){_cgbc :=data ;var _fccd error ;for _fdba :=len (_bacg ._bdfb )-1;_fdba >=0;_fdba --{_gef :=_bacg ._bdfb [_fdba ];_cgbc ,_fccd =_gef .EncodeBytes (_cgbc );if _fccd !=nil {return nil ,_fccd ; +};};return _cgbc ,nil ;}; -// EncodeBytes encodes slice of bytes into JBIG2 encoding format. -// The input 'data' must be an image. In order to Decode it a user is responsible to -// load the codec ('png', 'jpg'). -// Returns jbig2 single page encoded document byte slice. The encoder uses DefaultPageSettings -// to encode given image. -func (_febd *JBIG2Encoder )EncodeBytes (data []byte )([]byte ,error ){const _ggbf ="\u004aB\u0049\u0047\u0032\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u002eE\u006e\u0063\u006f\u0064\u0065\u0042\u0079\u0074\u0065\u0073";if _febd .ColorComponents !=1||_febd .BitsPerComponent !=1{return nil ,_cd .Errorf (_ggbf ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u002e\u0020\u004a\u0042\u0049G\u0032\u0020E\u006e\u0063o\u0064\u0065\u0072\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020bi\u006e\u0061\u0072\u0079\u0020\u0069\u006d\u0061\u0067e\u0073\u0020\u0064\u0061\u0074\u0061"); -};var (_gebd *_df .Bitmap ;_fbac error ;);_bdcf :=(_febd .Width *_febd .Height )==len (data );if _bdcf {_gebd ,_fbac =_df .NewWithUnpaddedData (_febd .Width ,_febd .Height ,data );}else {_gebd ,_fbac =_df .NewWithData (_febd .Width ,_febd .Height ,data ); -};if _fbac !=nil {return nil ,_fbac ;};_bgdc :=_febd .DefaultPageSettings ;if _fbac =_bgdc .Validate ();_fbac !=nil {return nil ,_cd .Wrap (_fbac ,_ggbf ,"");};if _febd ._gcdf ==nil {_febd ._gcdf =_cb .InitEncodeDocument (_bgdc .FileMode );};switch _bgdc .Compression {case JB2Generic :if _fbac =_febd ._gcdf .AddGenericPage (_gebd ,_bgdc .DuplicatedLinesRemoval ); -_fbac !=nil {return nil ,_cd .Wrap (_fbac ,_ggbf ,"");};case JB2SymbolCorrelation :return nil ,_cd .Error (_ggbf ,"s\u0079\u006d\u0062\u006f\u006c\u0020\u0063\u006f\u0072r\u0065\u006c\u0061\u0074\u0069\u006f\u006e e\u006e\u0063\u006f\u0064i\u006e\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006dpl\u0065\u006de\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); -case JB2SymbolRankHaus :return nil ,_cd .Error (_ggbf ,"\u0073y\u006d\u0062o\u006c\u0020\u0072a\u006e\u006b\u0020\u0068\u0061\u0075\u0073 \u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065m\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); -default:return nil ,_cd .Error (_ggbf ,"\u0070\u0072\u006f\u0076i\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020c\u006f\u006d\u0070\u0072\u0065\u0073\u0073i\u006f\u006e");};return _febd .Encode ();}; +// Decrypt attempts to decrypt the PDF file with a specified password. Also tries to +// decrypt with an empty password. Returns true if successful, false otherwise. +// An error is returned when there is a problem with decrypting. +func (_cdfba *PdfParser )Decrypt (password []byte )(bool ,error ){if _cdfba ._abae ==nil {return false ,_c .New ("\u0063\u0068\u0065\u0063k \u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u0066\u0069\u0072s\u0074");};_aaafe ,_cffe :=_cdfba ._abae .authenticate (password ); +if _cffe !=nil {return false ,_cffe ;};if !_aaafe {_aaafe ,_cffe =_cdfba ._abae .authenticate ([]byte (""));};return _aaafe ,_cffe ;};type xrefType int ; -// Read implementation of Read interface. -func (_becf *limitedReadSeeker )Read (p []byte )(_ebce int ,_eedg error ){_bgdg ,_eedg :=_becf ._fbge .Seek (0,_ae .SeekCurrent );if _eedg !=nil {return 0,_eedg ;};_eefa :=_becf ._bfgb -_bgdg ;if _eefa ==0{return 0,_ae .EOF ;};if _acab :=int64 (len (p )); -_acab < _eefa {_eefa =_acab ;};_fcbeb :=make ([]byte ,_eefa );_ebce ,_eedg =_becf ._fbge .Read (_fcbeb );copy (p ,_fcbeb );return _ebce ,_eedg ;}; +// EncryptInfo contains an information generated by the document encrypter. +type EncryptInfo struct{Version ; -// GetNameVal returns the string value represented by the PdfObject directly or indirectly if -// contained within an indirect object. On type mismatch the found bool flag returned is false and -// an empty string is returned. -func GetNameVal (obj PdfObject )(_ddda string ,_aggf bool ){_gcccb ,_aggf :=TraceToDirectObject (obj ).(*PdfObjectName );if _aggf {return string (*_gcccb ),true ;};return ;}; +// Encrypt is an encryption dictionary that contains all necessary parameters. +// It should be stored in all copies of the document trailer. +Encrypt *PdfObjectDictionary ; -// Len returns the number of elements in the array. -func (_agcfa *PdfObjectArray )Len ()int {if _agcfa ==nil {return 0;};return len (_agcfa ._egacc );}; +// ID0 and ID1 are IDs used in the trailer. Older algorithms such as RC4 uses them for encryption. +ID0 ,ID1 string ;};func _gbgg (_efafb string )(PdfObjectReference ,error ){_eeggb :=PdfObjectReference {};_bfeg :=_fafa .FindStringSubmatch (_efafb );if len (_bfeg )< 3{_a .Log .Debug ("\u0045\u0072\u0072or\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065"); +return _eeggb ,_c .New ("\u0075n\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0070\u0061r\u0073e\u0020r\u0065\u0066\u0065\u0072\u0065\u006e\u0063e");};_eadga ,_ :=_bd .Atoi (_bfeg [1]);_egacd ,_ :=_bd .Atoi (_bfeg [2]);_eeggb .ObjectNumber =int64 (_eadga ); +_eeggb .GenerationNumber =int64 (_egacd );return _eeggb ,nil ;};func (_bba *FlateEncoder )postDecodePredict (_cbb []byte )([]byte ,error ){if _bba .Predictor > 1{if _bba .Predictor ==2{_a .Log .Trace ("\u0054\u0069\u0066\u0066\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +_a .Log .Trace ("\u0043\u006f\u006c\u006f\u0072\u0073\u003a\u0020\u0025\u0064",_bba .Colors );_afe :=_bba .Columns *_bba .Colors ;if _afe < 1{return []byte {},nil ;};_efcfd :=len (_cbb )/_afe ;if len (_cbb )%_afe !=0{_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020T\u0049\u0046\u0046 \u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002e\u002e\u002e"); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_cbb ),_afe );};if _afe %_bba .Colors !=0{return nil ,_gf .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0072\u006fw\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020(\u0025\u0064\u0029\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u006c\u006fr\u0073\u0020\u0025\u0064",_afe ,_bba .Colors ); +};if _afe > len (_cbb ){_a .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_afe ,len (_cbb )); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_a .Log .Trace ("i\u006e\u0070\u0020\u006fut\u0044a\u0074\u0061\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (_cbb ),_cbb ); +_ddeea :=_fd .NewBuffer (nil );for _ebgd :=0;_ebgd < _efcfd ;_ebgd ++{_bda :=_cbb [_afe *_ebgd :_afe *(_ebgd +1)];for _bgc :=_bba .Colors ;_bgc < _afe ;_bgc ++{_bda [_bgc ]+=_bda [_bgc -_bba .Colors ];};_ddeea .Write (_bda );};_eec :=_ddeea .Bytes ();_a .Log .Trace ("\u0050O\u0075t\u0044\u0061\u0074\u0061\u0020(\u0025\u0064)\u003a\u0020\u0025\u0020\u0078",len (_eec ),_eec ); +return _eec ,nil ;}else if _bba .Predictor >=10&&_bba .Predictor <=15{_a .Log .Trace ("\u0050\u004e\u0047 \u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067");_aecd :=_bba .Columns *_bba .Colors +1;_cebe :=len (_cbb )/_aecd ;if len (_cbb )%_aecd !=0{return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0077 \u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064/\u0025\u0064\u0029",len (_cbb ),_aecd ); +};if _aecd > len (_cbb ){_a .Log .Debug ("\u0052\u006fw\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0064\u0061\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0028\u0025\u0064\u002f\u0025\u0064\u0029",_aecd ,len (_cbb )); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_gag :=_fd .NewBuffer (nil );_a .Log .Trace ("P\u0072\u0065\u0064\u0069ct\u006fr\u0020\u0063\u006f\u006c\u0075m\u006e\u0073\u003a\u0020\u0025\u0064",_bba .Columns ); +_a .Log .Trace ("\u004ce\u006e\u0067\u0074\u0068:\u0020\u0025\u0064\u0020\u002f \u0025d\u0020=\u0020\u0025\u0064\u0020\u0072\u006f\u0077s",len (_cbb ),_aecd ,_cebe );_bfdd :=make ([]byte ,_aecd );for _bbad :=0;_bbad < _aecd ;_bbad ++{_bfdd [_bbad ]=0;}; +_gcde :=_bba .Colors ;for _dddb :=0;_dddb < _cebe ;_dddb ++{_gfga :=_cbb [_aecd *_dddb :_aecd *(_dddb +1)];_fbc :=_gfga [0];switch _fbc {case _agdd :case _bfa :for _bgb :=1+_gcde ;_bgb < _aecd ;_bgb ++{_gfga [_bgb ]+=_gfga [_bgb -_gcde ];};case _fca :for _edec :=1; +_edec < _aecd ;_edec ++{_gfga [_edec ]+=_bfdd [_edec ];};case _daef :for _ceg :=1;_ceg < _gcde +1;_ceg ++{_gfga [_ceg ]+=_bfdd [_ceg ]/2;};for _fbac :=_gcde +1;_fbac < _aecd ;_fbac ++{_gfga [_fbac ]+=byte ((int (_gfga [_fbac -_gcde ])+int (_bfdd [_fbac ]))/2); +};case _gabc :for _adbac :=1;_adbac < _aecd ;_adbac ++{var _ddbc ,_effb ,_gccb byte ;_effb =_bfdd [_adbac ];if _adbac >=_gcde +1{_ddbc =_gfga [_adbac -_gcde ];_gccb =_bfdd [_adbac -_gcde ];};_gfga [_adbac ]+=_dbge (_ddbc ,_effb ,_gccb );};default:_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0066\u0069\u006c\u0074\u0065r\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029\u0020\u0040\u0072o\u0077\u0020\u0025\u0064",_fbc ,_dddb ); +return nil ,_gf .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0066\u0069\u006c\u0074\u0065r\u0020\u0062\u0079\u0074\u0065\u0020\u0028\u0025\u0064\u0029",_fbc );};copy (_bfdd ,_gfga );_gag .Write (_gfga [1:]);};_cfcb :=_gag .Bytes ();return _cfcb ,nil ; +}else {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072 \u0028\u0025\u0064\u0029",_bba .Predictor );return nil ,_gf .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0070\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020(\u0025\u0064\u0029",_bba .Predictor ); +};};return _cbb ,nil ;}; -// NewParserFromString is used for testing purposes. -func NewParserFromString (txt string )*PdfParser {_ecbg :=_fb .NewReader ([]byte (txt ));_daaa :=&PdfParser {ObjCache :objectCache {},_ccgbe :_ecbg ,_affd :_ga .NewReader (_ecbg ),_defe :int64 (len (txt )),_ecegc :map[int64 ]bool {},_fcedf :make (map[*PdfParser ]*PdfParser )}; -_daaa ._efdgc .ObjectMap =make (map[int ]XrefObject );return _daaa ;};func (_fffbf *JBIG2Image )toBitmap ()(_afaed *_df .Bitmap ,_gdbe error ){const _cdgg ="\u004a\u0042\u0049\u00472I\u006d\u0061\u0067\u0065\u002e\u0074\u006f\u0042\u0069\u0074\u006d\u0061\u0070"; -if _fffbf .Data ==nil {return nil ,_cd .Error (_cdgg ,"\u0069\u006d\u0061\u0067e \u0064\u0061\u0074\u0061\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};if _fffbf .Width ==0||_fffbf .Height ==0{return nil ,_cd .Error (_cdgg ,"\u0069\u006d\u0061\u0067\u0065\u0020h\u0065\u0069\u0067\u0068\u0074\u0020\u006f\u0072\u0020\u0077\u0069\u0064\u0074h\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); -};if _fffbf .HasPadding {_afaed ,_gdbe =_df .NewWithData (_fffbf .Width ,_fffbf .Height ,_fffbf .Data );}else {_afaed ,_gdbe =_df .NewWithUnpaddedData (_fffbf .Width ,_fffbf .Height ,_fffbf .Data );};if _gdbe !=nil {return nil ,_cd .Wrap (_gdbe ,_cdgg ,""); -};return _afaed ,nil ;}; +// MakeArray creates an PdfObjectArray from a list of PdfObjects. +func MakeArray (objects ...PdfObject )*PdfObjectArray {return &PdfObjectArray {_fabc :objects }}; -// TraceToDirectObject traces a PdfObject to a direct object. For example direct objects contained -// in indirect objects (can be double referenced even). -func TraceToDirectObject (obj PdfObject )PdfObject {if _ggdd ,_cdggc :=obj .(*PdfObjectReference );_cdggc {obj =_ggdd .Resolve ();};_bbcc ,_ecbee :=obj .(*PdfIndirectObject );_ebeg :=0;for _ecbee {obj =_bbcc .PdfObject ;_bbcc ,_ecbee =GetIndirect (obj ); -_ebeg ++;if _ebeg > _cbab {_ecd .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0072\u0061\u0063\u0065\u0020\u0064\u0065p\u0074\u0068\u0020\u006c\u0065\u0076\u0065\u006c\u0020\u0062\u0065\u0079\u006fn\u0064\u0020\u0025\u0064\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0067oi\u006e\u0067\u0020\u0064\u0065\u0065\u0070\u0065\u0072\u0021",_cbab ); -return nil ;};};return obj ;}; +// RunLengthEncoder represents Run length encoding. +type RunLengthEncoder struct{}; -// GetFilterName returns the name of the encoding filter. -func (_dcefc *DCTEncoder )GetFilterName ()string {return StreamEncodingFilterNameDCT }; +// Set sets the PdfObject at index i of the array. An error is returned if the index is outside bounds. +func (_acee *PdfObjectArray )Set (i int ,obj PdfObject )error {if i < 0||i >=len (_acee ._fabc ){return _c .New ("\u006f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0062o\u0075\u006e\u0064\u0073");};_acee ._fabc [i ]=obj ;return nil ;}; -// String returns a descriptive information string about the encryption method used. -func (_gbg *PdfCrypt )String ()string {if _gbg ==nil {return "";};_ffee :=_gbg ._dgb .Filter +"\u0020\u002d\u0020";if _gbg ._dgb .V ==0{_ffee +="\u0055\u006e\u0064\u006fcu\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0061\u006c\u0067\u006f\u0072\u0069\u0074h\u006d"; -}else if _gbg ._dgb .V ==1{_ffee +="\u0052\u0043\u0034:\u0020\u0034\u0030\u0020\u0062\u0069\u0074\u0073";}else if _gbg ._dgb .V ==2{_ffee +=_daa .Sprintf ("\u0052\u0043\u0034:\u0020\u0025\u0064\u0020\u0062\u0069\u0074\u0073",_gbg ._dgb .Length );}else if _gbg ._dgb .V ==3{_ffee +="U\u006e\u0070\u0075\u0062li\u0073h\u0065\u0064\u0020\u0061\u006cg\u006f\u0072\u0069\u0074\u0068\u006d"; -}else if _gbg ._dgb .V >=4{_ffee +=_daa .Sprintf ("\u0053\u0074r\u0065\u0061\u006d\u0020f\u0069\u006ct\u0065\u0072\u003a\u0020\u0025\u0073\u0020\u002d \u0053\u0074\u0072\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0074\u0065r\u003a\u0020\u0025\u0073",_gbg ._gfd ,_gbg ._ffd ); -_ffee +="\u003b\u0020C\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0073\u003a";for _dca ,_adb :=range _gbg ._bgbe {_ffee +=_daa .Sprintf ("\u0020\u002d\u0020\u0025\u0073\u003a\u0020\u0025\u0073 \u0028\u0025\u0064\u0029",_dca ,_adb .Name (),_adb .KeyLength ()); -};};_aed :=_gbg .GetAccessPermissions ();_ffee +=_daa .Sprintf ("\u0020\u002d\u0020\u0025\u0023\u0076",_aed );return _ffee ;}; +// SetPredictor sets the predictor function. Specify the number of columns per row. +// The columns indicates the number of samples per row. +// Used for grouping data together for compression. +func (_eea *FlateEncoder )SetPredictor (columns int ){_eea .Predictor =11;_eea .Columns =columns }; -// WriteString outputs the object as it is to be written to file. -func (_addf *PdfObjectStreams )WriteString ()string {var _bdbg _c .Builder ;_bdbg .WriteString (_bf .FormatInt (_addf .ObjectNumber ,10));_bdbg .WriteString ("\u0020\u0030\u0020\u0052");return _bdbg .String ();};func (_ceef *PdfCrypt )decryptBytes (_bfa []byte ,_ggaf string ,_cdc []byte )([]byte ,error ){_ecd .Log .Trace ("\u0044\u0065\u0063\u0072\u0079\u0070\u0074\u0020\u0062\u0079\u0074\u0065\u0073"); -_bcbe ,_dbd :=_ceef ._bgbe [_ggaf ];if !_dbd {return nil ,_daa .Errorf ("\u0075n\u006b\u006e\u006f\u0077n\u0020\u0063\u0072\u0079\u0070t\u0020f\u0069l\u0074\u0065\u0072\u0020\u0028\u0025\u0073)",_ggaf );};return _bcbe .DecryptBytes (_bfa ,_cdc );}; +// GetStringBytes is like GetStringVal except that it returns the string as a []byte. +// It is for convenience. +func GetStringBytes (obj PdfObject )(_gedfd []byte ,_dfeba bool ){_befdf ,_dfeba :=TraceToDirectObject (obj ).(*PdfObjectString );if _dfeba {return _befdf .Bytes (),true ;};return ;}; -// WriteString outputs the object as it is to be written to file. -func (_gcag *PdfObjectArray )WriteString ()string {var _fbedc _c .Builder ;_fbedc .WriteString ("\u005b");for _ecbge ,_dfbbg :=range _gcag .Elements (){_fbedc .WriteString (_dfbbg .WriteString ());if _ecbge < (_gcag .Len ()-1){_fbedc .WriteString ("\u0020"); -};};_fbedc .WriteString ("\u005d");return _fbedc .String ();}; +// DCTEncoder provides a DCT (JPG) encoding/decoding functionality for images. +type DCTEncoder struct{ColorComponents int ;BitsPerComponent int ;Width int ;Height int ;Quality int ;Decode []float64 ;};var (ErrUnsupportedEncodingParameters =_c .New ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073"); +ErrNoCCITTFaxDecode =_c .New ("\u0043\u0043I\u0054\u0054\u0046\u0061\u0078\u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064"); +ErrNoJBIG2Decode =_c .New ("\u004a\u0042\u0049\u0047\u0032\u0044\u0065c\u006f\u0064\u0065 \u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064"); +ErrNoJPXDecode =_c .New ("\u004a\u0050\u0058\u0044\u0065c\u006f\u0064\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064"); +ErrNoPdfVersion =_c .New ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");ErrTypeError =_c .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");ErrRangeError =_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"); +ErrNotSupported =_fgb .New ("\u0066\u0065\u0061t\u0075\u0072\u0065\u0020n\u006f\u0074\u0020\u0063\u0075\u0072\u0072e\u006e\u0074\u006c\u0079\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064");ErrNotANumber =_c .New ("\u006e\u006f\u0074 \u0061\u0020\u006e\u0075\u006d\u0062\u0065\u0072"); +); -// HasInvalidSeparationAfterXRef implements core.ParserMetadata interface. -func (_aafc ParserMetadata )HasInvalidSeparationAfterXRef ()bool {return _aafc ._bad }; +// SetIfNotNil sets the dictionary's key -> val mapping entry -IF- val is not nil. +// Note that we take care to perform a type switch. Otherwise if we would supply a nil value +// of another type, e.g. (PdfObjectArray*)(nil), then it would not be a PdfObject(nil) and thus +// would get set. +func (_aefg *PdfObjectDictionary )SetIfNotNil (key PdfObjectName ,val PdfObject ){if val !=nil {switch _cacbf :=val .(type ){case *PdfObjectName :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectDictionary :if _cacbf !=nil {_aefg .Set (key ,val ); +};case *PdfObjectStream :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectString :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectNull :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectInteger :if _cacbf !=nil {_aefg .Set (key ,val ); +};case *PdfObjectArray :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectBool :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectFloat :if _cacbf !=nil {_aefg .Set (key ,val );};case *PdfObjectReference :if _cacbf !=nil {_aefg .Set (key ,val ); +};case *PdfIndirectObject :if _cacbf !=nil {_aefg .Set (key ,val );};default:_a .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u0065\u0076\u0065\u0072\u0020\u0068\u0061\u0070\u0070\u0065\u006e\u0021",val ); +};};};func (_aff *PdfParser )resolveReference (_gggd *PdfObjectReference )(PdfObject ,bool ,error ){_bdeee ,_acdbg :=_aff .ObjCache [int (_gggd .ObjectNumber )];if _acdbg {return _bdeee ,true ,nil ;};_bcgg ,_eeed :=_aff .LookupByReference (*_gggd );if _eeed !=nil {return nil ,false ,_eeed ; +};_aff .ObjCache [int (_gggd .ObjectNumber )]=_bcgg ;return _bcgg ,false ,nil ;};var _adgg =_ce .MustCompile ("\u0073t\u0061r\u0074\u0078\u003f\u0072\u0065f\u005c\u0073*\u0028\u005c\u0064\u002b\u0029");type objectStreams map[int ]objectStream ; -// IsNullObject returns true if `obj` is a PdfObjectNull. -func IsNullObject (obj PdfObject )bool {_ ,_gbdg :=TraceToDirectObject (obj ).(*PdfObjectNull );return _gbdg ;}; +// GetIndirect returns the *PdfIndirectObject represented by the PdfObject. On type mismatch the found bool flag is +// false and a nil pointer is returned. +func GetIndirect (obj PdfObject )(_dbaaf *PdfIndirectObject ,_ebeg bool ){obj =ResolveReference (obj );_dbaaf ,_ebeg =obj .(*PdfIndirectObject );return _dbaaf ,_ebeg ;};func _bcee (_gage *PdfObjectStream ,_aac *MultiEncoder )(*DCTEncoder ,error ){_gdgb :=NewDCTEncoder (); +_cbfe :=_gage .PdfObjectDictionary ;if _cbfe ==nil {return _gdgb ,nil ;};_gfef :=_gage .Stream ;if _aac !=nil {_cdge ,_dddf :=_aac .DecodeBytes (_gfef );if _dddf !=nil {return nil ,_dddf ;};_gfef =_cdge ;};_bfb :=_fd .NewReader (_gfef );_agac ,_bacd :=_eb .DecodeConfig (_bfb ); +if _bacd !=nil {_a .Log .Debug ("\u0045\u0072\u0072or\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0073",_bacd );return nil ,_bacd ;};switch _agac .ColorModel {case _ga .RGBAModel :_gdgb .BitsPerComponent =8; +_gdgb .ColorComponents =3;_gdgb .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};case _ga .RGBA64Model :_gdgb .BitsPerComponent =16;_gdgb .ColorComponents =3;_gdgb .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};case _ga .GrayModel :_gdgb .BitsPerComponent =8; +_gdgb .ColorComponents =1;_gdgb .Decode =[]float64 {0.0,1.0};case _ga .Gray16Model :_gdgb .BitsPerComponent =16;_gdgb .ColorComponents =1;_gdgb .Decode =[]float64 {0.0,1.0};case _ga .CMYKModel :_gdgb .BitsPerComponent =8;_gdgb .ColorComponents =4;_gdgb .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0}; +case _ga .YCbCrModel :_gdgb .BitsPerComponent =8;_gdgb .ColorComponents =3;_gdgb .Decode =[]float64 {0.0,1.0,0.0,1.0,0.0,1.0};default:return nil ,_c .New ("\u0075\u006e\u0073up\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006d\u006f\u0064\u0065\u006c"); +};_gdgb .Width =_agac .Width ;_gdgb .Height =_agac .Height ;_a .Log .Trace ("\u0044\u0043T\u0020\u0045\u006ec\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076",_gdgb );_gdgb .Quality =DefaultJPEGQuality ;_agdc ,_dda :=GetArray (_cbfe .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")); +if _dda {_aaa ,_ebagb :=_agdc .ToFloat64Array ();if _ebagb !=nil {return _gdgb ,_ebagb ;};_gdgb .Decode =_aaa ;};return _gdgb ,nil ;}; -// NewASCIIHexEncoder makes a new ASCII hex encoder. -func NewASCIIHexEncoder ()*ASCIIHexEncoder {_ffb :=&ASCIIHexEncoder {};return _ffb }; +// GetXrefTable returns the PDFs xref table. +func (_cgddg *PdfParser )GetXrefTable ()XrefTable {return _cgddg ._bbdf }; -// DecodeStream implements ASCII85 stream decoding. -func (_bgfg *ASCII85Encoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _bgfg .DecodeBytes (streamObj .Stream );}; +// Merge merges in key/values from another dictionary. Overwriting if has same keys. +// The mutated dictionary (d) is returned in order to allow method chaining. +func (_cgfd *PdfObjectDictionary )Merge (another *PdfObjectDictionary )*PdfObjectDictionary {if another !=nil {for _ ,_abbe :=range another .Keys (){_fdac :=another .Get (_abbe );_cgfd .Set (_abbe ,_fdac );};};return _cgfd ;}; -// PdfObjectInteger represents the primitive PDF integer numerical object. -type PdfObjectInteger int64 ;func _cccg (_dcfg *PdfObjectStream ,_faae *PdfObjectDictionary )(*JBIG2Encoder ,error ){const _fgbd ="\u006ee\u0077\u004a\u0042\u0049G\u0032\u0044\u0065\u0063\u006fd\u0065r\u0046r\u006f\u006d\u0053\u0074\u0072\u0065\u0061m"; -_feab :=NewJBIG2Encoder ();_add :=_dcfg .PdfObjectDictionary ;if _add ==nil {return _feab ,nil ;};if _faae ==nil {_afcf :=_add .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");if _afcf !=nil {switch _dgeea :=_afcf .(type ){case *PdfObjectDictionary :_faae =_dgeea ; -case *PdfObjectArray :if _dgeea .Len ()==1{if _fgcf ,_egdd :=GetDict (_dgeea .Get (0));_egdd {_faae =_fgcf ;};};default:_ecd .Log .Error ("\u0044\u0065\u0063\u006f\u0064\u0065P\u0061\u0072\u0061\u006d\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u0025\u0023\u0076",_afcf ); -return nil ,_cd .Errorf (_fgbd ,"\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050a\u0072m\u0073\u0020\u0074\u0079\u0070\u0065\u003a \u0025\u0054",_dgeea );};};};if _faae ==nil {return _feab ,nil ;};_feab .UpdateParams (_faae ); -_agcg ,_cgag :=GetStream (_faae .Get ("\u004a\u0042\u0049G\u0032\u0047\u006c\u006f\u0062\u0061\u006c\u0073"));if !_cgag {return _feab ,nil ;};var _egac error ;_feab .Globals ,_egac =_eb .DecodeGlobals (_agcg .Stream );if _egac !=nil {_egac =_cd .Wrap (_egac ,_fgbd ,"\u0063\u006f\u0072\u0072u\u0070\u0074\u0065\u0064\u0020\u006a\u0062\u0069\u0067\u0032 \u0065n\u0063\u006f\u0064\u0065\u0064\u0020\u0064a\u0074\u0061"); -_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_egac );return nil ,_egac ;};return _feab ,nil ;}; +// NewEncoderFromStream creates a StreamEncoder based on the stream's dictionary. +func NewEncoderFromStream (streamObj *PdfObjectStream )(StreamEncoder ,error ){_gfcc :=TraceToDirectObject (streamObj .PdfObjectDictionary .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"));if _gfcc ==nil {return NewRawEncoder (),nil ;};if _ ,_fbbg :=_gfcc .(*PdfObjectNull ); +_fbbg {return NewRawEncoder (),nil ;};_dgaf ,_bgeagd :=_gfcc .(*PdfObjectName );if !_bgeagd {_decb ,_bbae :=_gfcc .(*PdfObjectArray );if !_bbae {return nil ,_gf .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072 \u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0072 \u0041\u0072\u0072\u0061\u0079\u0020\u006fb\u006a\u0065\u0063\u0074"); +};if _decb .Len ()==0{return NewRawEncoder (),nil ;};if _decb .Len ()!=1{_efca ,_fcffbe :=_bece (streamObj );if _fcffbe !=nil {_a .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0063\u0072\u0065\u0061\u0074\u0069\u006e\u0067\u0020\u006d\u0075\u006c\u0074i\u0020\u0065\u006e\u0063\u006f\u0064\u0065r\u003a\u0020\u0025\u0076",_fcffbe ); +return nil ,_fcffbe ;};_a .Log .Trace ("\u004d\u0075\u006c\u0074\u0069\u0020\u0065\u006e\u0063:\u0020\u0025\u0073\u000a",_efca );return _efca ,nil ;};_gfcc =_decb .Get (0);_dgaf ,_bbae =_gfcc .(*PdfObjectName );if !_bbae {return nil ,_gf .Errorf ("\u0066\u0069l\u0074\u0065\u0072\u0020a\u0072\u0072a\u0079\u0020\u006d\u0065\u006d\u0062\u0065\u0072 \u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006fb\u006a\u0065\u0063\u0074"); +};};if _dadb ,_eedc :=_gfcec .Load (_dgaf .String ());_eedc {return _dadb .(StreamEncoder ),nil ;};switch *_dgaf {case StreamEncodingFilterNameFlate :return _age (streamObj ,nil );case StreamEncodingFilterNameLZW :return _egg (streamObj ,nil );case StreamEncodingFilterNameDCT :return _bcee (streamObj ,nil ); +case StreamEncodingFilterNameRunLength :return _bcda (streamObj ,nil );case StreamEncodingFilterNameASCIIHex :return NewASCIIHexEncoder (),nil ;case StreamEncodingFilterNameASCII85 ,"\u0041\u0038\u0035":return NewASCII85Encoder (),nil ;case StreamEncodingFilterNameCCITTFax :return _adcf (streamObj ,nil ); +case StreamEncodingFilterNameJBIG2 :return _egdfc (streamObj ,nil );case StreamEncodingFilterNameJPX :return NewJPXEncoder (),nil ;};_a .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064\u0020\u0065\u006e\u0063o\u0064\u0069\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006fd\u0021"); +return nil ,_gf .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065\u006e\u0063o\u0064i\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u0020\u0028\u0025\u0073\u0029",*_dgaf );};type objectCache map[int ]PdfObject ; -// WriteString outputs the object as it is to be written to file. -func (_dgfgb *PdfObjectReference )WriteString ()string {var _gfdf _c .Builder ;_gfdf .WriteString (_bf .FormatInt (_dgfgb .ObjectNumber ,10));_gfdf .WriteString ("\u0020");_gfdf .WriteString (_bf .FormatInt (_dgfgb .GenerationNumber ,10));_gfdf .WriteString ("\u0020\u0052"); -return _gfdf .String ();}; -// DecodeStream implements ASCII hex decoding. -func (_daef *ASCIIHexEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _daef .DecodeBytes (streamObj .Stream );}; +// GetString is a helper for Get that returns a string value. +// Returns false if the key is missing or a value is not a string. +func (_ebdb *PdfObjectDictionary )GetString (key PdfObjectName )(string ,bool ){_bcafbd :=_ebdb .Get (key );if _bcafbd ==nil {return "",false ;};_daea ,_ecdd :=_bcafbd .(*PdfObjectString );if !_ecdd {return "",false ;};return _daea .Str (),true ;}; -// String returns a string representation of `name`. -func (_fcfff *PdfObjectName )String ()string {return string (*_fcfff )}; +// MakeArrayFromIntegers creates an PdfObjectArray from a slice of ints, where each array element is +// an PdfObjectInteger. +func MakeArrayFromIntegers (vals []int )*PdfObjectArray {_febe :=MakeArray ();for _ ,_effag :=range vals {_febe .Append (MakeInteger (int64 (_effag )));};return _febe ;}; -// Resolve resolves a PdfObject to direct object, looking up and resolving references as needed (unlike TraceToDirect). -func (_cfd *PdfParser )Resolve (obj PdfObject )(PdfObject ,error ){_fed ,_fee :=obj .(*PdfObjectReference );if !_fee {return obj ,nil ;};_dea :=_cfd .GetFileOffset ();defer func (){_cfd .SetFileOffset (_dea )}();_fbf ,_bcb :=_cfd .LookupByReference (*_fed ); -if _bcb !=nil {return nil ,_bcb ;};_fda ,_dacd :=_fbf .(*PdfIndirectObject );if !_dacd {return _fbf ,nil ;};_fbf =_fda .PdfObject ;_ ,_fee =_fbf .(*PdfObjectReference );if _fee {return _fda ,_f .New ("\u006d\u0075lt\u0069\u0020\u0064e\u0070\u0074\u0068\u0020tra\u0063e \u0070\u006f\u0069\u006e\u0074\u0065\u0072 t\u006f\u0020\u0070\u006f\u0069\u006e\u0074e\u0072"); -};return _fbf ,nil ;}; +// EncodeBytes encodes data into ASCII85 encoded format. +func (_ebca *ASCII85Encoder )EncodeBytes (data []byte )([]byte ,error ){var _dbcb _fd .Buffer ;for _acaac :=0;_acaac < len (data );_acaac +=4{_gcgg :=data [_acaac ];_febg :=1;_gdgd :=byte (0);if _acaac +1< len (data ){_gdgd =data [_acaac +1];_febg ++;}; +_ecac :=byte (0);if _acaac +2< len (data ){_ecac =data [_acaac +2];_febg ++;};_fcgc :=byte (0);if _acaac +3< len (data ){_fcgc =data [_acaac +3];_febg ++;};_ceda :=(uint32 (_gcgg )<<24)|(uint32 (_gdgd )<<16)|(uint32 (_ecac )<<8)|uint32 (_fcgc );if _ceda ==0{_dbcb .WriteByte ('z'); +}else {_geab :=_ebca .base256Tobase85 (_ceda );for _ ,_fec :=range _geab [:_febg +1]{_dbcb .WriteByte (_fec +'!');};};};_dbcb .WriteString ("\u007e\u003e");return _dbcb .Bytes (),nil ;};func _aea (_agf int )cryptFilters {return cryptFilters {_edg :_efd .NewFilterV2 (_agf )}}; -// String returns the state of the bool as "true" or "false". -func (_babd *PdfObjectBool )String ()string {if *_babd {return "\u0074\u0072\u0075\u0065";};return "\u0066\u0061\u006cs\u0065";};func (_beefc *PdfParser )checkPostEOFData ()error {const _dcea ="\u0025\u0025\u0045O\u0046";_ ,_cdea :=_beefc ._ccgbe .Seek (-int64 (len ([]byte (_dcea )))-1,_ae .SeekEnd ); -if _cdea !=nil {return _cdea ;};_afeg :=make ([]byte ,len ([]byte (_dcea ))+1);_ ,_cdea =_beefc ._ccgbe .Read (_afeg );if _cdea !=nil {if _cdea !=_ae .EOF {return _cdea ;};};if string (_afeg )==_dcea ||string (_afeg )==_dcea +"\u000a"{_beefc ._bcdc ._bgg =true ; -};return nil ;}; -// EncodeBytes returns the passed in slice of bytes. -// The purpose of the method is to satisfy the StreamEncoder interface. -func (_aag *RawEncoder )EncodeBytes (data []byte )([]byte ,error ){return data ,nil }; +// GetInt returns the *PdfObjectBool object that is represented by a PdfObject either directly or indirectly +// within an indirect object. The bool flag indicates whether a match was found. +func GetInt (obj PdfObject )(_egc *PdfObjectInteger ,_feaf bool ){_egc ,_feaf =TraceToDirectObject (obj ).(*PdfObjectInteger );return _egc ,_feaf ;}; -// ParseNumber parses a numeric objects from a buffered stream. -// Section 7.3.3. -// Integer or Float. -// -// An integer shall be written as one or more decimal digits optionally -// preceded by a sign. The value shall be interpreted as a signed -// decimal integer and shall be converted to an integer object. -// -// A real value shall be written as one or more decimal digits with an -// optional sign and a leading, trailing, or embedded PERIOD (2Eh) -// (decimal point). The value shall be interpreted as a real number -// and shall be converted to a real object. -// -// Regarding exponential numbers: 7.3.3 Numeric Objects: -// A conforming writer shall not use the PostScript syntax for numbers -// with non-decimal radices (such as 16#FFFE) or in exponential format -// (such as 6.02E23). -// Nonetheless, we sometimes get numbers with exponential format, so -// we will support it in the reader (no confusion with other types, so -// no compromise). -func ParseNumber (buf *_ga .Reader )(PdfObject ,error ){_dbefe :=false ;_gfadd :=true ;var _eagga _fb .Buffer ;for {if _ecd .Log .IsLogLevel (_ecd .LogLevelTrace ){_ecd .Log .Trace ("\u0050\u0061\u0072\u0073in\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0022\u0025\u0073\u0022",_eagga .String ()); -};_adda ,_cbbdc :=buf .Peek (1);if _cbbdc ==_ae .EOF {break ;};if _cbbdc !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0025\u0073",_cbbdc );return nil ,_cbbdc ;};if _gfadd &&(_adda [0]=='-'||_adda [0]=='+'){_gfafa ,_ :=buf .ReadByte (); -_eagga .WriteByte (_gfafa );_gfadd =false ;}else if IsDecimalDigit (_adda [0]){_abgeba ,_ :=buf .ReadByte ();_eagga .WriteByte (_abgeba );}else if _adda [0]=='.'{_agbca ,_ :=buf .ReadByte ();_eagga .WriteByte (_agbca );_dbefe =true ;}else if _adda [0]=='e'||_adda [0]=='E'{_caggg ,_ :=buf .ReadByte (); -_eagga .WriteByte (_caggg );_dbefe =true ;_gfadd =true ;}else {break ;};};var _acdg PdfObject ;if _dbefe {_cgdfa ,_efcd :=_bf .ParseFloat (_eagga .String (),64);if _efcd !=nil {_ecd .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0025v\u0020\u0065\u0072\u0072\u003d\u0025v\u002e\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u0030\u002e\u0030\u002e\u0020\u004fu\u0074\u0070u\u0074\u0020\u006d\u0061y\u0020\u0062\u0065\u0020\u0069n\u0063\u006f\u0072\u0072\u0065\u0063\u0074",_eagga .String (),_efcd ); -_cgdfa =0.0;};_gbcee :=PdfObjectFloat (_cgdfa );_acdg =&_gbcee ;}else {_afde ,_bgcbf :=_bf .ParseInt (_eagga .String (),10,64);if _bgcbf !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u0025\u0076\u0020\u0065\u0072\u0072\u003d%\u0076\u002e\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u0030\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 \u006d\u0061\u0079\u0020\u0062\u0065 \u0069\u006ec\u006f\u0072r\u0065c\u0074",_eagga .String (),_bgcbf ); -_afde =0;};_ffbba :=PdfObjectInteger (_afde );_acdg =&_ffbba ;};return _acdg ,nil ;}; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +// Has the Filter set and the DecodeParms. +func (_baee *FlateEncoder )MakeStreamDict ()*PdfObjectDictionary {_gfg :=MakeDict ();_gfg .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_baee .GetFilterName ()));_ddba :=_baee .MakeDecodeParams ();if _ddba !=nil {_gfg .Set ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_ddba ); +};return _gfg ;}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_eeed *ASCII85Encoder )MakeDecodeParams ()PdfObject {return nil };func (_aagda *PdfParser )rebuildXrefTable ()error {_eabg :=XrefTable {};_eabg .ObjectMap =map[int ]XrefObject {};_eadb :=make ([]int ,0,len (_aagda ._efdgc .ObjectMap ));for _cdccbd :=range _aagda ._efdgc .ObjectMap {_eadb =append (_eadb ,_cdccbd ); -};_db .Ints (_eadb );for _ ,_afbe :=range _eadb {_eaac :=_aagda ._efdgc .ObjectMap [_afbe ];_abgga ,_ ,_fgde :=_aagda .lookupByNumberWrapper (_afbe ,false );if _fgde !=nil {_ecd .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020U\u006e\u0061\u0062\u006ce t\u006f l\u006f\u006f\u006b\u0020\u0075\u0070\u0020ob\u006a\u0065\u0063\u0074\u0020\u0028\u0025s\u0029",_fgde ); -_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0058\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0063\u006fm\u0070\u006c\u0065\u0074\u0065\u006c\u0079\u0020\u0062\u0072\u006f\u006b\u0065\u006e\u0020\u002d\u0020\u0061\u0074\u0074\u0065\u006d\u0070\u0074\u0069\u006e\u0067\u0020\u0074\u006f \u0072\u0065\u0070\u0061\u0069r\u0020"); -_bafd ,_faefa :=_aagda .repairRebuildXrefsTopDown ();if _faefa !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u0072\u0065\u0062\u0075\u0069l\u0064\u0020\u0072\u0065\u0070a\u0069\u0072 \u0028\u0025\u0073\u0029",_faefa ); -return _faefa ;};_aagda ._efdgc =*_bafd ;_ecd .Log .Debug ("\u0052e\u0070\u0061\u0069\u0072e\u0064\u0020\u0078\u0072\u0065f\u0020t\u0061b\u006c\u0065\u0020\u0062\u0075\u0069\u006ct");return nil ;};_cfbag ,_aabcc ,_fgde :=_fa (_abgga );if _fgde !=nil {return _fgde ; -};_eaac .ObjectNumber =int (_cfbag );_eaac .Generation =int (_aabcc );_eabg .ObjectMap [int (_cfbag )]=_eaac ;};_aagda ._efdgc =_eabg ;_ecd .Log .Debug ("N\u0065w\u0020\u0078\u0072\u0065\u0066\u0020\u0074\u0061b\u006c\u0065\u0020\u0062ui\u006c\u0074"); -_dg (_aagda ._efdgc );return nil ;}; +// Set sets the dictionary's key -> val mapping entry. Overwrites if key already set. +func (_ggdd *PdfObjectDictionary )Set (key PdfObjectName ,val PdfObject ){_ggdd .setWithLock (key ,val ,true );}; -// GetNumbersAsFloat converts a list of pdf objects representing floats or integers to a slice of -// float64 values. -func GetNumbersAsFloat (objects []PdfObject )(_afda []float64 ,_gfdgb error ){for _ ,_cbfef :=range objects {_cbeb ,_gcdae :=GetNumberAsFloat (_cbfef );if _gcdae !=nil {return nil ,_gcdae ;};_afda =append (_afda ,_cbeb );};return _afda ,nil ;}; +// DecodeStream decodes a JPX encoded stream and returns the result as a +// slice of bytes. +func (_bdag *JPXEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0041t\u0074\u0065\u006dpt\u0069\u006e\u0067\u0020\u0074\u006f \u0075\u0073\u0065\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0073",_bdag .GetFilterName ()); +return streamObj .Stream ,ErrNoJPXDecode ;}; -// FlateEncoder represents Flate encoding. -type FlateEncoder struct{Predictor int ;BitsPerComponent int ; +// IsOctalDigit checks if a character can be part of an octal digit string. +func IsOctalDigit (c byte )bool {return '0'<=c &&c <='7'};func _bcda (_bcc *PdfObjectStream ,_fgee *PdfObjectDictionary )(*RunLengthEncoder ,error ){return NewRunLengthEncoder (),nil ;}; -// For predictors -Columns int ;Rows int ;Colors int ;_bgba *_fcf .ImageBase ;}; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_debc *RawEncoder )MakeStreamDict ()*PdfObjectDictionary {return MakeDict ()}; -// UpdateParams updates the parameter values of the encoder. -func (_ffca *JPXEncoder )UpdateParams (params *PdfObjectDictionary ){}; +// GetPreviousRevisionReadSeeker returns ReadSeeker for the previous version of the Pdf document. +func (_acfcd *PdfParser )GetPreviousRevisionReadSeeker ()(_fg .ReadSeeker ,error ){if _efbb :=_acfcd .seekToEOFMarker (_acfcd ._fbaaa -_gbed );_efbb !=nil {return nil ,_efbb ;};_gcggba ,_eaag :=_acfcd ._dfcdg .Seek (0,_fg .SeekCurrent );if _eaag !=nil {return nil ,_eaag ; +};_gcggba +=_gbed ;return _bgaa (_acfcd ._dfcdg ,_gcggba );}; -// UpdateParams updates the parameter values of the encoder. -func (_dbe *RawEncoder )UpdateParams (params *PdfObjectDictionary ){}; +// GetIntVal returns the int value represented by the PdfObject directly or indirectly if contained within an +// indirect object. On type mismatch the found bool flag returned is false and a nil pointer is returned. +func GetIntVal (obj PdfObject )(_cbfcb int ,_dcef bool ){_dbea ,_dcef :=TraceToDirectObject (obj ).(*PdfObjectInteger );if _dcef &&_dbea !=nil {return int (*_dbea ),true ;};return 0,false ;};func (_gdded *PdfCrypt )securityHandler ()_dc .StdHandler {if _gdded ._aec .R >=5{return _dc .NewHandlerR6 (); +};return _dc .NewHandlerR4 (_gdded ._abf ,_gdded ._ceae .Length );}; -// MakeHexString creates an PdfObjectString from a string intended for output as a hexadecimal string. -func MakeHexString (s string )*PdfObjectString {_feade :=PdfObjectString {_cceg :s ,_eecb :true };return &_feade ;};func (_adc *PdfCrypt )makeKey (_gce string ,_acd ,_bdba uint32 ,_bffd []byte )([]byte ,error ){_ddab ,_dfb :=_adc ._bgbe [_gce ];if !_dfb {return nil ,_daa .Errorf ("\u0075n\u006b\u006e\u006f\u0077n\u0020\u0063\u0072\u0079\u0070t\u0020f\u0069l\u0074\u0065\u0072\u0020\u0028\u0025\u0073)",_gce ); -};return _ddab .MakeKey (_acd ,_bdba ,_bffd );}; +// CCITTFaxEncoder implements Group3 and Group4 facsimile (fax) encoder/decoder. +type CCITTFaxEncoder struct{K int ;EndOfLine bool ;EncodedByteAlign bool ;Columns int ;Rows int ;EndOfBlock bool ;BlackIs1 bool ;DamagedRowsBeforeError int ;}; -// DecodeGlobals decodes 'encoded' byte stream and returns their Globally defined segments ('Globals'). -func (_cffa *JBIG2Encoder )DecodeGlobals (encoded []byte )(_eb .Globals ,error ){return _eb .DecodeGlobals (encoded );};type objectStreams map[int ]objectStream ; +// PdfCryptNewEncrypt makes the document crypt handler based on a specified crypt filter. +func PdfCryptNewEncrypt (cf _efd .Filter ,userPass ,ownerPass []byte ,perm _dc .Permissions )(*PdfCrypt ,*EncryptInfo ,error ){_abd :=&PdfCrypt {_fee :make (map[PdfObject ]bool ),_deg :make (cryptFilters ),_aec :_dc .StdEncryptDict {P :perm ,EncryptMetadata :true }}; +var _gbe Version ;if cf !=nil {_ece :=cf .PDFVersion ();_gbe .Major ,_gbe .Minor =_ece [0],_ece [1];V ,R :=cf .HandlerVersion ();_abd ._ceae .V =V ;_abd ._aec .R =R ;_abd ._ceae .Length =cf .KeyLength ()*8;};const (_gggb =_edg ;);_abd ._deg [_gggb ]=cf ; +if _abd ._ceae .V >=4{_abd ._abdf =_gggb ;_abd ._dfb =_gggb ;};_gab :=_abd .newEncryptDict ();_cdf :=_bfd .Sum ([]byte (_ba .Now ().Format (_ba .RFC850 )));_eac :=string (_cdf [:]);_dee :=make ([]byte ,100);_f .Read (_dee );_cdf =_bfd .Sum (_dee );_bab :=string (_cdf [:]); +_a .Log .Trace ("\u0052\u0061\u006e\u0064\u006f\u006d\u0020\u0062\u003a\u0020\u0025\u0020\u0078",_dee );_a .Log .Trace ("\u0047\u0065\u006e\u0020\u0049\u0064\u0020\u0030\u003a\u0020\u0025\u0020\u0078",_eac );_abd ._abf =_eac ;_deea :=_abd .generateParams (userPass ,ownerPass ); +if _deea !=nil {return nil ,nil ,_deea ;};_efb (&_abd ._aec ,_gab );if _abd ._ceae .V >=4{if _eff :=_abd .saveCryptFilters (_gab );_eff !=nil {return nil ,nil ,_eff ;};};return _abd ,&EncryptInfo {Version :_gbe ,Encrypt :_gab ,ID0 :_eac ,ID1 :_bab },nil ; +}; -// Elements returns a slice of the PdfObject elements in the array. -func (_fcaad *PdfObjectArray )Elements ()[]PdfObject {if _fcaad ==nil {return nil ;};return _fcaad ._egacc ;};func _ecfa (_gdg *PdfObjectStream ,_bac *PdfObjectDictionary )(*RunLengthEncoder ,error ){return NewRunLengthEncoder (),nil ;}; +// Set sets the PdfObject at index i of the streams. An error is returned if the index is outside bounds. +func (_badb *PdfObjectStreams )Set (i int ,obj PdfObject )error {if i < 0||i >=len (_badb ._cegef ){return _c .New ("\u004f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0062o\u0075\u006e\u0064\u0073");};_badb ._cegef [i ]=obj ;return nil ;}; -// RawEncoder implements Raw encoder/decoder (no encoding, pass through) -type RawEncoder struct{}; +// UpdateParams updates the parameter values of the encoder. +func (_gaaa *CCITTFaxEncoder )UpdateParams (params *PdfObjectDictionary ){if _dcge ,_dfcf :=GetNumberAsInt64 (params .Get ("\u004b"));_dfcf ==nil {_gaaa .K =int (_dcge );};if _gffe ,_bdcadg :=GetNumberAsInt64 (params .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073")); +_bdcadg ==nil {_gaaa .Columns =int (_gffe );}else if _gffe ,_bdcadg =GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));_bdcadg ==nil {_gaaa .Columns =int (_gffe );};if _ecfa ,_bdcc :=GetNumberAsInt64 (params .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031")); +_bdcc ==nil {_gaaa .BlackIs1 =_ecfa > 0;}else {if _dace ,_dbaa :=GetBoolVal (params .Get ("\u0042\u006c\u0061\u0063\u006b\u0049\u0073\u0031"));_dbaa {_gaaa .BlackIs1 =_dace ;}else {if _bafc ,_edefd :=GetArray (params .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")); +_edefd {_eafa ,_gaed :=_bafc .ToIntegerArray ();if _gaed ==nil {_gaaa .BlackIs1 =_eafa [0]==1&&_eafa [1]==0;};};};};if _cfbe ,_eaef :=GetNumberAsInt64 (params .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e")); +_eaef ==nil {_gaaa .EncodedByteAlign =_cfbe > 0;}else {if _gagc ,_gbga :=GetBoolVal (params .Get ("\u0045\u006ec\u006f\u0064\u0065d\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e"));_gbga {_gaaa .EncodedByteAlign =_gagc ;};};if _fbef ,_fda :=GetNumberAsInt64 (params .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee")); +_fda ==nil {_gaaa .EndOfLine =_fbef > 0;}else {if _efgb ,_gdee :=GetBoolVal (params .Get ("\u0045n\u0064\u004f\u0066\u004c\u0069\u006ee"));_gdee {_gaaa .EndOfLine =_efgb ;};};if _cbed ,_aadc :=GetNumberAsInt64 (params .Get ("\u0052\u006f\u0077\u0073")); +_aadc ==nil {_gaaa .Rows =int (_cbed );}else if _cbed ,_aadc =GetNumberAsInt64 (params .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_aadc ==nil {_gaaa .Rows =int (_cbed );};if _acfbc ,_agag :=GetNumberAsInt64 (params .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b")); +_agag ==nil {_gaaa .EndOfBlock =_acfbc > 0;}else {if _edab ,_dgcd :=GetBoolVal (params .Get ("\u0045\u006e\u0064\u004f\u0066\u0042\u006c\u006f\u0063\u006b"));_dgcd {_gaaa .EndOfBlock =_edab ;};};if _agb ,_cccg :=GetNumberAsInt64 (params .Get ("\u0044\u0061\u006d\u0061ge\u0064\u0052\u006f\u0077\u0073\u0042\u0065\u0066\u006f\u0072\u0065\u0045\u0072\u0072o\u0072")); +_cccg !=nil {_gaaa .DamagedRowsBeforeError =int (_agb );};};func _dbge (_ffga ,_gbgb ,_efaf uint8 )uint8 {_dedeb :=int (_efaf );_efgbb :=int (_gbgb )-_dedeb ;_badfd :=int (_ffga )-_dedeb ;_dedeb =_aafcf (_efgbb +_badfd );_efgbb =_aafcf (_efgbb );_badfd =_aafcf (_badfd ); +if _efgbb <=_badfd &&_efgbb <=_dedeb {return _ffga ;}else if _badfd <=_dedeb {return _gbgb ;};return _efaf ;};func (_gfdg *PdfParser )skipSpaces ()(int ,error ){_bcfa :=0;for {_abdbf ,_dafg :=_gfdg ._ffbg .ReadByte ();if _dafg !=nil {return 0,_dafg ;}; +if IsWhiteSpace (_abdbf ){_bcfa ++;}else {_gfdg ._ffbg .UnreadByte ();break ;};};return _bcfa ,nil ;}; -// NewLZWEncoder makes a new LZW encoder with default parameters. -func NewLZWEncoder ()*LZWEncoder {_aeaf :=&LZWEncoder {};_aeaf .Predictor =1;_aeaf .BitsPerComponent =8;_aeaf .Colors =1;_aeaf .Columns =1;_aeaf .EarlyChange =1;return _aeaf ;};func (_ccdd *PdfParser )skipComments ()error {if _ ,_fefab :=_ccdd .skipSpaces (); -_fefab !=nil {return _fefab ;};_gdff :=true ;for {_bfce ,_bfdg :=_ccdd ._affd .Peek (1);if _bfdg !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_bfdg .Error ());return _bfdg ;};if _gdff &&_bfce [0]!='%'{return nil ;};_gdff =false ; -if (_bfce [0]!='\r')&&(_bfce [0]!='\n'){_ccdd ._affd .ReadByte ();}else {break ;};};return _ccdd .skipComments ();}; +// MultiEncoder supports serial encoding. +type MultiEncoder struct{_bdfb []StreamEncoder }; -// EncodeBytes encodes data into ASCII85 encoded format. -func (_gacg *ASCII85Encoder )EncodeBytes (data []byte )([]byte ,error ){var _fdf _fb .Buffer ;for _cgdb :=0;_cgdb < len (data );_cgdb +=4{_dbg :=data [_cgdb ];_eaae :=1;_gddg :=byte (0);if _cgdb +1< len (data ){_gddg =data [_cgdb +1];_eaae ++;};_aaee :=byte (0); -if _cgdb +2< len (data ){_aaee =data [_cgdb +2];_eaae ++;};_efbf :=byte (0);if _cgdb +3< len (data ){_efbf =data [_cgdb +3];_eaae ++;};_cffc :=(uint32 (_dbg )<<24)|(uint32 (_gddg )<<16)|(uint32 (_aaee )<<8)|uint32 (_efbf );if _cffc ==0{_fdf .WriteByte ('z'); -}else {_fdgf :=_gacg .base256Tobase85 (_cffc );for _ ,_dbaf :=range _fdgf [:_eaae +1]{_fdf .WriteByte (_dbaf +'!');};};};_fdf .WriteString ("\u007e\u003e");return _fdf .Bytes (),nil ;}; +// DecodeStream decodes a FlateEncoded stream object and give back decoded bytes. +func (_ebb *FlateEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_a .Log .Trace ("\u0046l\u0061t\u0065\u0044\u0065\u0063\u006fd\u0065\u0020s\u0074\u0072\u0065\u0061\u006d");_a .Log .Trace ("\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",_ebb .Predictor ); +if _ebb .BitsPerComponent !=8{return nil ,_gf .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u003d\u0025\u0064\u0020\u0028\u006f\u006e\u006c\u0079\u0020\u0038\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0029",_ebb .BitsPerComponent ); +};_cecf ,_faddf :=_ebb .DecodeBytes (streamObj .Stream );if _faddf !=nil {return nil ,_faddf ;};_cecf ,_faddf =_ebb .postDecodePredict (_cecf );if _faddf !=nil {return nil ,_faddf ;};return _cecf ,nil ;}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_gege *ASCIIHexEncoder )MakeStreamDict ()*PdfObjectDictionary {_gfa :=MakeDict ();_gfa .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_gege .GetFilterName ()));return _gfa ;};type objectCache map[int ]PdfObject ; +// PdfObjectStream represents the primitive PDF Object stream. +type PdfObjectStream struct{PdfObjectReference ;*PdfObjectDictionary ;Stream []byte ;};const _ddfg =10; -// EncodeImage encodes 'img' golang image.Image into jbig2 encoded bytes document using default encoder settings. -func (_fefb *JBIG2Encoder )EncodeImage (img _ac .Image )([]byte ,error ){return _fefb .encodeImage (img )}; +// SetImage sets the image base for given flate encoder. +func (_egb *FlateEncoder )SetImage (img *_be .ImageBase ){_egb ._dagc =img }; -// GetIntVal returns the int value represented by the PdfObject directly or indirectly if contained within an -// indirect object. On type mismatch the found bool flag returned is false and a nil pointer is returned. -func GetIntVal (obj PdfObject )(_bdeb int ,_dfgaa bool ){_bdaed ,_dfgaa :=TraceToDirectObject (obj ).(*PdfObjectInteger );if _dfgaa &&_bdaed !=nil {return int (*_bdaed ),true ;};return 0,false ;}; +// Read implementation of Read interface. +func (_dgcc *limitedReadSeeker )Read (p []byte )(_dfce int ,_defe error ){_adac ,_defe :=_dgcc ._fbge .Seek (0,_fg .SeekCurrent );if _defe !=nil {return 0,_defe ;};_dfcd :=_dgcc ._bcgd -_adac ;if _dfcd ==0{return 0,_fg .EOF ;};if _gdfd :=int64 (len (p )); +_gdfd < _dfcd {_dfcd =_gdfd ;};_fggb :=make ([]byte ,_dfcd );_dfce ,_defe =_dgcc ._fbge .Read (_fggb );copy (p ,_fggb );return _dfce ,_defe ;}; -// String returns a string describing `ref`. -func (_bbdgd *PdfObjectReference )String ()string {return _daa .Sprintf ("\u0052\u0065\u0066\u0028\u0025\u0064\u0020\u0025\u0064\u0029",_bbdgd .ObjectNumber ,_bbdgd .GenerationNumber );}; +// Len returns the number of elements in the array. +func (_cfcf *PdfObjectArray )Len ()int {if _cfcf ==nil {return 0;};return len (_cfcf ._fabc );}; -// Bytes returns the PdfObjectString content as a []byte array. -func (_bbgd *PdfObjectString )Bytes ()[]byte {return []byte (_bbgd ._cceg )}; +// MakeEncodedString creates a PdfObjectString with encoded content, which can be either +// UTF-16BE or PDFDocEncoding depending on whether `utf16BE` is true or false respectively. +func MakeEncodedString (s string ,utf16BE bool )*PdfObjectString {if utf16BE {var _fgae _fd .Buffer ;_fgae .Write ([]byte {0xFE,0xFF});_fgae .WriteString (_da .StringToUTF16 (s ));return &PdfObjectString {_aaca :_fgae .String (),_gead :true };};return &PdfObjectString {_aaca :string (_da .StringToPDFDocEncoding (s )),_gead :false }; +};func (_cecc *PdfParser )skipComments ()error {if _ ,_ccbae :=_cecc .skipSpaces ();_ccbae !=nil {return _ccbae ;};_dffg :=true ;for {_cbcgg ,_gegb :=_cecc ._ffbg .Peek (1);if _gegb !=nil {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_gegb .Error ()); +return _gegb ;};if _dffg &&_cbcgg [0]!='%'{return nil ;};_dffg =false ;if (_cbcgg [0]!='\r')&&(_cbcgg [0]!='\n'){_cecc ._ffbg .ReadByte ();}else {break ;};};return _cecc .skipComments ();};func (_bafa *PdfParser )parseDetailedHeader ()(_gaa error ){_bafa ._dfcdg .Seek (0,_fg .SeekStart ); +_bafa ._ffbg =_bfc .NewReader (_bafa ._dfcdg );_cdcf :=20;_ddgb :=make ([]byte ,_cdcf );var (_aefa bool ;_cdac int ;);for {_edd ,_def :=_bafa ._ffbg .ReadByte ();if _def !=nil {if _def ==_fg .EOF {break ;}else {return _def ;};};if IsDecimalDigit (_edd )&&_ddgb [_cdcf -1]=='.'&&IsDecimalDigit (_ddgb [_cdcf -2])&&_ddgb [_cdcf -3]=='-'&&_ddgb [_cdcf -4]=='F'&&_ddgb [_cdcf -5]=='D'&&_ddgb [_cdcf -6]=='P'&&_ddgb [_cdcf -7]=='%'{_bafa ._eebec =Version {Major :int (_ddgb [_cdcf -2]-'0'),Minor :int (_edd -'0')}; +_bafa ._gadge ._bef =_cdac -7;_aefa =true ;break ;};_cdac ++;_ddgb =append (_ddgb [1:_cdcf ],_edd );};if !_aefa {return _gf .Errorf ("n\u006f \u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061d\u0065\u0072\u0020\u0066ou\u006e\u0064");};_daec ,_gaa :=_bafa ._ffbg .ReadByte (); +if _gaa ==_fg .EOF {return _gf .Errorf ("\u006eo\u0074\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0050d\u0066\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074");};if _gaa !=nil {return _gaa ;};_bafa ._gadge ._cgcg =_daec =='\n';_daec ,_gaa =_bafa ._ffbg .ReadByte (); +if _gaa !=nil {return _gf .Errorf ("\u006e\u006f\u0074\u0020a\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0064\u0066 \u0064o\u0063\u0075\u006d\u0065\u006e\u0074\u003a \u0025\u0077",_gaa );};if _daec !='%'{return nil ;};_bfgd :=make ([]byte ,4);_ ,_gaa =_bafa ._ffbg .Read (_bfgd ); +if _gaa !=nil {return _gf .Errorf ("\u006e\u006f\u0074\u0020a\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0064\u0066 \u0064o\u0063\u0075\u006d\u0065\u006e\u0074\u003a \u0025\u0077",_gaa );};_bafa ._gadge ._egf =[4]byte {_bfgd [0],_bfgd [1],_bfgd [2],_bfgd [3]}; +return nil ;}; -// ToInt64Slice returns a slice of all array elements as an int64 slice. An error is returned if the -// array non-integer objects. Each element can only be PdfObjectInteger. -func (_egga *PdfObjectArray )ToInt64Slice ()([]int64 ,error ){var _bgbf []int64 ;for _ ,_ebddf :=range _egga .Elements (){if _dfbc ,_cdffd :=_ebddf .(*PdfObjectInteger );_cdffd {_bgbf =append (_bgbf ,int64 (*_dfbc ));}else {return nil ,ErrTypeError ;}; -};return _bgbf ,nil ;};func _bafg (_cdd _ae .ReadSeeker ,_aff int64 )(*limitedReadSeeker ,error ){_ ,_fdaf :=_cdd .Seek (0,_ae .SeekStart );if _fdaf !=nil {return nil ,_fdaf ;};return &limitedReadSeeker {_fbge :_cdd ,_bfgb :_aff },nil ;}; +// String returns a string describing `ref`. +func (_cebc *PdfObjectReference )String ()string {return _gf .Sprintf ("\u0052\u0065\u0066\u0028\u0025\u0064\u0020\u0025\u0064\u0029",_cebc .ObjectNumber ,_cebc .GenerationNumber );};const (DefaultJPEGQuality =75;); -// MakeIndirectObject creates an PdfIndirectObject with a specified direct object PdfObject. -func MakeIndirectObject (obj PdfObject )*PdfIndirectObject {_caad :=&PdfIndirectObject {};_caad .PdfObject =obj ;return _caad ;};var _aaag =_f .New ("\u0045\u004f\u0046\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +// UpdateParams updates the parameter values of the encoder. +func (_dbaeb *MultiEncoder )UpdateParams (params *PdfObjectDictionary ){for _ ,_abge :=range _dbaeb ._bdfb {_abge .UpdateParams (params );};}; -// GetFilterName returns the name of the encoding filter. -func (_gggf *LZWEncoder )GetFilterName ()string {return StreamEncodingFilterNameLZW };type cryptFilters map[string ]_bc .Filter ; +// IsFloatDigit checks if a character can be a part of a float number string. +func IsFloatDigit (c byte )bool {return ('0'<=c &&c <='9')||c =='.'}; -// String returns a string describing `null`. -func (_ggbg *PdfObjectNull )String ()string {return "\u006e\u0075\u006c\u006c"}; +// PdfObjectReference represents the primitive PDF reference object. +type PdfObjectReference struct{_cfada *PdfParser ;ObjectNumber int64 ;GenerationNumber int64 ;}; -// DecodeStream decodes a FlateEncoded stream object and give back decoded bytes. -func (_gfb *FlateEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_ecd .Log .Trace ("\u0046l\u0061t\u0065\u0044\u0065\u0063\u006fd\u0065\u0020s\u0074\u0072\u0065\u0061\u006d");_ecd .Log .Trace ("\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",_gfb .Predictor ); -if _gfb .BitsPerComponent !=8{return nil ,_daa .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u003d\u0025\u0064\u0020\u0028\u006f\u006e\u006c\u0079\u0020\u0038\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0029",_gfb .BitsPerComponent ); -};_gddd ,_gaee :=_gfb .DecodeBytes (streamObj .Stream );if _gaee !=nil {return nil ,_gaee ;};_gddd ,_gaee =_gfb .postDecodePredict (_gddd );if _gaee !=nil {return nil ,_gaee ;};return _gddd ,nil ;}; +// GoImageToJBIG2 creates a binary image on the base of 'i' golang image.Image. +// If the image is not a black/white image then the function converts provided input into +// JBIG2Image with 1bpp. For non grayscale images the function performs the conversion to the grayscale temp image. +// Then it checks the value of the gray image value if it's within bounds of the black white threshold. +// This 'bwThreshold' value should be in range (0.0, 1.0). The threshold checks if the grayscale pixel (uint) value +// is greater or smaller than 'bwThreshold' * 255. Pixels inside the range will be white, and the others will be black. +// If the 'bwThreshold' is equal to -1.0 - JB2ImageAutoThreshold then it's value would be set on the base of +// it's histogram using Triangle method. For more information go to: +// https://www.mathworks.com/matlabcentral/fileexchange/28047-gray-image-thresholding-using-the-triangle-method +func GoImageToJBIG2 (i _cg .Image ,bwThreshold float64 )(*JBIG2Image ,error ){const _gfde ="\u0047\u006f\u0049\u006d\u0061\u0067\u0065\u0054\u006fJ\u0042\u0049\u0047\u0032";if i ==nil {return nil ,_dd .Error (_gfde ,"i\u006d\u0061\u0067\u0065 '\u0069'\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064"); +};var (_gfad uint8 ;_acceb _be .Image ;_fadgg error ;);if bwThreshold ==JB2ImageAutoThreshold {_acceb ,_fadgg =_be .MonochromeConverter .Convert (i );}else if bwThreshold > 1.0||bwThreshold < 0.0{return nil ,_dd .Error (_gfde ,"p\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0074h\u0072\u0065\u0073\u0068\u006f\u006c\u0064 i\u0073\u0020\u006e\u006ft\u0020\u0069\u006e\u0020\u0061\u0020\u0072\u0061\u006ege\u0020\u007b0\u002e\u0030\u002c\u0020\u0031\u002e\u0030\u007d"); +}else {_gfad =uint8 (255*bwThreshold );_acceb ,_fadgg =_be .MonochromeThresholdConverter (_gfad ).Convert (i );};if _fadgg !=nil {return nil ,_fadgg ;};return _cbcac (_acceb ),nil ;}; -// NewASCII85Encoder makes a new ASCII85 encoder. -func NewASCII85Encoder ()*ASCII85Encoder {_afecc :=&ASCII85Encoder {};return _afecc }; +// ParserMetadata is the parser based metadata information about document. +// The data here could be used on document verification. +type ParserMetadata struct{_bef int ;_cgcg bool ;_egf [4]byte ;_ccbc bool ;_gcg bool ;_cde bool ;_efcd bool ;_gfe bool ;_bdf bool ;};func (_bbbb *PdfParser )seekPdfVersionTopDown ()(int ,int ,error ){_bbbb ._dfcdg .Seek (0,_fg .SeekStart );_bbbb ._ffbg =_bfc .NewReader (_bbbb ._dfcdg ); +_ffba :=20;_cabde :=make ([]byte ,_ffba );for {_bcdfgc ,_aced :=_bbbb ._ffbg .ReadByte ();if _aced !=nil {if _aced ==_fg .EOF {break ;}else {return 0,0,_aced ;};};if IsDecimalDigit (_bcdfgc )&&_cabde [_ffba -1]=='.'&&IsDecimalDigit (_cabde [_ffba -2])&&_cabde [_ffba -3]=='-'&&_cabde [_ffba -4]=='F'&&_cabde [_ffba -5]=='D'&&_cabde [_ffba -6]=='P'{_agbd :=int (_cabde [_ffba -2]-'0'); +_fabe :=int (_bcdfgc -'0');return _agbd ,_fabe ,nil ;};_cabde =append (_cabde [1:_ffba ],_bcdfgc );};return 0,0,_c .New ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");}; -// JBIG2CompressionType defines the enum compression type used by the JBIG2Encoder. -type JBIG2CompressionType int ; +// GetEncryptObj returns the PdfIndirectObject which has information about the PDFs encryption details. +func (_debbc *PdfParser )GetEncryptObj ()*PdfIndirectObject {return _debbc ._fafd }; -// IsDelimiter checks if a character represents a delimiter. -func IsDelimiter (c byte )bool {return c =='('||c ==')'||c =='<'||c =='>'||c =='['||c ==']'||c =='{'||c =='}'||c =='/'||c =='%';}; +// DecodeBytes returns the passed in slice of bytes. +// The purpose of the method is to satisfy the StreamEncoder interface. +func (_dadd *RawEncoder )DecodeBytes (encoded []byte )([]byte ,error ){return encoded ,nil }; -// HasInvalidHexRunes implements core.ParserMetadata interface. -func (_aeb ParserMetadata )HasInvalidHexRunes ()bool {return _aeb ._gagg };func _afgg (_ggfc ,_dcee ,_beedf int )error {if _dcee < 0||_dcee > _ggfc {return _f .New ("s\u006c\u0069\u0063\u0065\u0020\u0069n\u0064\u0065\u0078\u0020\u0061\u0020\u006f\u0075\u0074 \u006f\u0066\u0020b\u006fu\u006e\u0064\u0073"); -};if _beedf < _dcee {return _f .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0073\u006c\u0069\u0063e\u0020i\u006ed\u0065\u0078\u0020\u0062\u0020\u003c\u0020a");};if _beedf > _ggfc {return _f .New ("s\u006c\u0069\u0063\u0065\u0020\u0069n\u0064\u0065\u0078\u0020\u0062\u0020\u006f\u0075\u0074 \u006f\u0066\u0020b\u006fu\u006e\u0064\u0073"); -};return nil ;};func (_cbc *PdfParser )lookupByNumber (_ba int ,_def bool )(PdfObject ,bool ,error ){_cee ,_bgf :=_cbc .ObjCache [_ba ];if _bgf {_ecd .Log .Trace ("\u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0063a\u0063\u0068\u0065\u0064\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0025\u0064",_ba ); -return _cee ,false ,nil ;};if _cbc ._bddbf ==nil {_cbc ._bddbf =map[int ]bool {};};if _cbc ._bddbf [_ba ]{_ecd .Log .Debug ("ER\u0052\u004f\u0052\u003a\u0020\u004c\u006fok\u0075\u0070\u0020\u006f\u0066\u0020\u0025\u0064\u0020\u0069\u0073\u0020\u0061\u006c\u0072e\u0061\u0064\u0079\u0020\u0069\u006e\u0020\u0070\u0072\u006f\u0067\u0072\u0065\u0073\u0073\u0020\u002d\u0020\u0072\u0065c\u0075\u0072\u0073\u0069\u0076\u0065 \u006c\u006f\u006f\u006b\u0075\u0070\u0020\u0061\u0074t\u0065m\u0070\u0074\u0020\u0062\u006c\u006f\u0063\u006b\u0065\u0064",_ba ); -return nil ,false ,_f .New ("\u0072\u0065\u0063\u0075\u0072\u0073\u0069\u0076\u0065\u0020\u006c\u006f\u006f\u006b\u0075p\u0020a\u0074\u0074\u0065\u006d\u0070\u0074\u0020\u0062\u006c\u006f\u0063\u006b\u0065\u0064");};_cbc ._bddbf [_ba ]=true ;defer delete (_cbc ._bddbf ,_ba ); -_dac ,_bgf :=_cbc ._efdgc .ObjectMap [_ba ];if !_bgf {_ecd .Log .Trace ("\u0055\u006e\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u006c\u006f\u0063\u0061t\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u006e\u0020\u0078\u0072\u0065\u0066\u0073\u0021 \u002d\u0020\u0052\u0065\u0074u\u0072\u006e\u0069\u006e\u0067\u0020\u006e\u0075\u006c\u006c\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -var _ege PdfObjectNull ;return &_ege ,false ,nil ;};_ecd .Log .Trace ("L\u006fo\u006b\u0075\u0070\u0020\u006f\u0062\u006a\u0020n\u0075\u006d\u0062\u0065r \u0025\u0064",_ba );if _dac .XType ==XrefTypeTableEntry {_ecd .Log .Trace ("\u0078r\u0065f\u006f\u0062\u006a\u0020\u006fb\u006a\u0020n\u0075\u006d\u0020\u0025\u0064",_dac .ObjectNumber ); -_ecd .Log .Trace ("\u0078\u0072\u0065\u0066\u006f\u0062\u006a\u0020\u0067e\u006e\u0020\u0025\u0064",_dac .Generation );_ecd .Log .Trace ("\u0078\u0072\u0065\u0066\u006f\u0062\u006a\u0020\u006f\u0066\u0066\u0073e\u0074\u0020\u0025\u0064",_dac .Offset ); -_cbc ._ccgbe .Seek (_dac .Offset ,_ae .SeekStart );_cbc ._affd =_ga .NewReader (_cbc ._ccgbe );_ef ,_fdd :=_cbc .ParseIndirectObject ();if _fdd !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0046\u0061\u0069\u006ce\u0064\u0020\u0072\u0065\u0061\u0064\u0069n\u0067\u0020\u0078\u0072\u0065\u0066\u0020\u0028\u0025\u0073\u0029",_fdd ); -if _def {_ecd .Log .Debug ("\u0041\u0074t\u0065\u006d\u0070\u0074i\u006e\u0067 \u0074\u006f\u0020\u0072\u0065\u0070\u0061\u0069r\u0020\u0078\u0072\u0065\u0066\u0073\u0020\u0028\u0074\u006f\u0070\u0020d\u006f\u0077\u006e\u0029");_cg ,_gdb :=_cbc .repairRebuildXrefsTopDown (); -if _gdb !=nil {_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020r\u0065\u0070\u0061\u0069\u0072\u0020\u0028\u0025\u0073\u0029",_gdb );return nil ,false ,_gdb ;};_cbc ._efdgc =*_cg ;return _cbc .lookupByNumber (_ba ,false ); -};return nil ,false ,_fdd ;};if _def {_aeg ,_ ,_ :=_fa (_ef );if int (_aeg )!=_ba {_ecd .Log .Debug ("\u0049n\u0076\u0061\u006c\u0069d\u0020\u0078\u0072\u0065\u0066s\u003a \u0052e\u0062\u0075\u0069\u006c\u0064\u0069\u006eg");_beb :=_cbc .rebuildXrefTable (); -if _beb !=nil {return nil ,false ,_beb ;};_cbc .ObjCache =objectCache {};return _cbc .lookupByNumberWrapper (_ba ,false );};};_ecd .Log .Trace ("\u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006f\u0062\u006a");_cbc .ObjCache [_ba ]=_ef ; -return _ef ,false ,nil ;}else if _dac .XType ==XrefTypeObjectStream {_ecd .Log .Trace ("\u0078r\u0065\u0066\u0020\u0066\u0072\u006f\u006d\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0021");_ecd .Log .Trace ("\u003e\u004c\u006f\u0061\u0064\u0020\u0076\u0069\u0061\u0020\u004f\u0053\u0021"); -_ecd .Log .Trace ("\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u0061\u0076\u0061\u0069\u006c\u0061b\u006c\u0065\u0020\u0069\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020%\u0064\u002f\u0025\u0064",_dac .OsObjNumber ,_dac .OsObjIndex ); -if _dac .OsObjNumber ==_ba {_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0043i\u0072\u0063\u0075\u006c\u0061\u0072\u0020\u0072\u0065f\u0065\u0072\u0065n\u0063e\u0021\u003f\u0021");return nil ,true ,_f .New ("\u0078\u0072\u0065f \u0063\u0069\u0072\u0063\u0075\u006c\u0061\u0072\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065"); -};if _ ,_dafg :=_cbc ._efdgc .ObjectMap [_dac .OsObjNumber ];_dafg {_cdg ,_dcb :=_cbc .lookupObjectViaOS (_dac .OsObjNumber ,_ba );if _dcb !=nil {_ecd .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0052\u0065\u0074\u0075\u0072\u006e\u0069n\u0067\u0020\u0045\u0052\u0052\u0020\u0028\u0025\u0073\u0029",_dcb ); -return nil ,true ,_dcb ;};_ecd .Log .Trace ("\u003c\u004c\u006f\u0061\u0064\u0065\u0064\u0020\u0076i\u0061\u0020\u004f\u0053");_cbc .ObjCache [_ba ]=_cdg ;if _cbc ._geaef !=nil {_cbc ._geaef ._cgb [_cdg ]=true ;};return _cdg ,true ,nil ;};_ecd .Log .Debug ("\u003f\u003f\u0020\u0042\u0065\u006c\u006f\u006eg\u0073\u0020\u0074o \u0061\u0020\u006e\u006f\u006e\u002dc\u0072\u006f\u0073\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u002e.\u002e\u0021"); -return nil ,true ,_f .New ("\u006f\u0073\u0020\u0062\u0065\u006c\u006fn\u0067\u0073\u0020t\u006f\u0020\u0061\u0020n\u006f\u006e\u0020\u0063\u0072\u006f\u0073\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -};return nil ,false ,_f .New ("\u0075\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0078\u0072\u0065\u0066 \u0074\u0079\u0070\u0065");}; +// NewFlateEncoder makes a new flate encoder with default parameters, predictor 1 and bits per component 8. +func NewFlateEncoder ()*FlateEncoder {_fbbf :=&FlateEncoder {};_fbbf .Predictor =1;_fbbf .BitsPerComponent =8;_fbbf .Colors =1;_fbbf .Columns =1;return _fbbf ;}; -// Str returns the string value of the PdfObjectString. Defined in addition to String() function to clarify that -// this function returns the underlying string directly, whereas the String function technically could include -// debug info. -func (_ebbc *PdfObjectString )Str ()string {return _ebbc ._cceg };func _edcg (_bbccg PdfObject ,_ebea int ,_efae map[PdfObject ]struct{})error {_ecd .Log .Trace ("\u0054\u0072\u0061\u0076\u0065\u0072s\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0061\u0074\u0061 \u0028\u0064\u0065\u0070\u0074\u0068\u0020=\u0020\u0025\u0064\u0029",_ebea ); -if _ ,_aacbg :=_efae [_bbccg ];_aacbg {_ecd .Log .Trace ("-\u0041\u006c\u0072\u0065ad\u0079 \u0074\u0072\u0061\u0076\u0065r\u0073\u0065\u0064\u002e\u002e\u002e");return nil ;};_efae [_bbccg ]=struct{}{};switch _fcdc :=_bbccg .(type ){case *PdfIndirectObject :_defcf :=_fcdc ; -_ecd .Log .Trace ("\u0069\u006f\u003a\u0020\u0025\u0073",_defcf );_ecd .Log .Trace ("\u002d\u0020\u0025\u0073",_defcf .PdfObject );return _edcg (_defcf .PdfObject ,_ebea +1,_efae );case *PdfObjectStream :_ggec :=_fcdc ;return _edcg (_ggec .PdfObjectDictionary ,_ebea +1,_efae ); -case *PdfObjectDictionary :_ebeee :=_fcdc ;_ecd .Log .Trace ("\u002d\u0020\u0064\u0069\u0063\u0074\u003a\u0020\u0025\u0073",_ebeee );for _ ,_fbea :=range _ebeee .Keys (){_afgeg :=_ebeee .Get (_fbea );if _gbba ,_cged :=_afgeg .(*PdfObjectReference );_cged {_babgg :=_gbba .Resolve (); -_ebeee .Set (_fbea ,_babgg );_gggfd :=_edcg (_babgg ,_ebea +1,_efae );if _gggfd !=nil {return _gggfd ;};}else {_afecg :=_edcg (_afgeg ,_ebea +1,_efae );if _afecg !=nil {return _afecg ;};};};return nil ;case *PdfObjectArray :_cdfa :=_fcdc ;_ecd .Log .Trace ("-\u0020\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0073",_cdfa ); -for _bbaf ,_daefc :=range _cdfa .Elements (){if _gbfb ,_aegec :=_daefc .(*PdfObjectReference );_aegec {_ffed :=_gbfb .Resolve ();_cdfa .Set (_bbaf ,_ffed );_abcfe :=_edcg (_ffed ,_ebea +1,_efae );if _abcfe !=nil {return _abcfe ;};}else {_ffbb :=_edcg (_daefc ,_ebea +1,_efae ); -if _ffbb !=nil {return _ffbb ;};};};return nil ;case *PdfObjectReference :_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020T\u0072\u0061\u0063\u0069\u006e\u0067\u0020\u0061\u0020r\u0065\u0066\u0065r\u0065n\u0063\u0065\u0021");return _f .New ("\u0065r\u0072\u006f\u0072\u0020t\u0072\u0061\u0063\u0069\u006eg\u0020a\u0020r\u0065\u0066\u0065\u0072\u0065\u006e\u0063e"); -};return nil ;}; +// DecodeStream decodes the stream containing CCITTFax encoded image data. +func (_bade *CCITTFaxEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _bade .DecodeBytes (streamObj .Stream );}; -// PdfObjectNull represents the primitive PDF null object. -type PdfObjectNull struct{}; +// MakeObjectStreams creates an PdfObjectStreams from a list of PdfObjects. +func MakeObjectStreams (objects ...PdfObject )*PdfObjectStreams {return &PdfObjectStreams {_cegef :objects };};func _bece (_gbff *PdfObjectStream )(*MultiEncoder ,error ){_ege :=NewMultiEncoder ();_dgfg :=_gbff .PdfObjectDictionary ;if _dgfg ==nil {return _ege ,nil ; +};var _dcfa *PdfObjectDictionary ;var _bbegg []PdfObject ;_eefc :=_dgfg .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");if _eefc !=nil {_bgg ,_gdfc :=_eefc .(*PdfObjectDictionary );if _gdfc {_dcfa =_bgg ;};_edgbg ,_ffbd :=_eefc .(*PdfObjectArray ); +if _ffbd {for _ ,_cdeeg :=range _edgbg .Elements (){_cdeeg =TraceToDirectObject (_cdeeg );if _eaaa ,_ggcb :=_cdeeg .(*PdfObjectDictionary );_ggcb {_bbegg =append (_bbegg ,_eaaa );}else {_bbegg =append (_bbegg ,MakeDict ());};};};};_eefc =_dgfg .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"); +if _eefc ==nil {return nil ,_gf .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};_acec ,_badf :=_eefc .(*PdfObjectArray );if !_badf {return nil ,_gf .Errorf ("m\u0075\u006c\u0074\u0069\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0063\u0061\u006e\u0020\u006f\u006el\u0079\u0020\u0062\u0065\u0020\u006d\u0061\u0064\u0065\u0020fr\u006f\u006d\u0020a\u0072r\u0061\u0079"); +};for _afdb ,_aedc :=range _acec .Elements (){_eega ,_cdfc :=_aedc .(*PdfObjectName );if !_cdfc {return nil ,_gf .Errorf ("\u006d\u0075l\u0074\u0069\u0020\u0066i\u006c\u0074e\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u0020e\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061 \u006e\u0061\u006d\u0065"); +};var _aaab PdfObject ;if _dcfa !=nil {_aaab =_dcfa ;}else {if len (_bbegg )> 0{if _afdb >=len (_bbegg ){return nil ,_gf .Errorf ("\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0065\u006c\u0065\u006d\u0065n\u0074\u0073\u0020\u0069\u006e\u0020d\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006d\u0073\u0020a\u0072\u0072\u0061\u0079"); +};_aaab =_bbegg [_afdb ];};};var _bbgf *PdfObjectDictionary ;if _gaeg ,_agae :=_aaab .(*PdfObjectDictionary );_agae {_bbgf =_gaeg ;};_a .Log .Trace ("\u004e\u0065\u0078t \u006e\u0061\u006d\u0065\u003a\u0020\u0025\u0073\u002c \u0064p\u003a \u0025v\u002c\u0020\u0064\u0050\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u0076",*_eega ,_aaab ,_bbgf ); +if *_eega ==StreamEncodingFilterNameFlate {_deda ,_debcc :=_age (_gbff ,_bbgf );if _debcc !=nil {return nil ,_debcc ;};_ege .AddEncoder (_deda );}else if *_eega ==StreamEncodingFilterNameLZW {_cbdf ,_fadb :=_egg (_gbff ,_bbgf );if _fadb !=nil {return nil ,_fadb ; +};_ege .AddEncoder (_cbdf );}else if *_eega ==StreamEncodingFilterNameASCIIHex {_efgd :=NewASCIIHexEncoder ();_ege .AddEncoder (_efgd );}else if *_eega ==StreamEncodingFilterNameASCII85 {_ggae :=NewASCII85Encoder ();_ege .AddEncoder (_ggae );}else if *_eega ==StreamEncodingFilterNameDCT {_cccb ,_ggdc :=_bcee (_gbff ,_ege ); +if _ggdc !=nil {return nil ,_ggdc ;};_ege .AddEncoder (_cccb );_a .Log .Trace ("A\u0064d\u0065\u0064\u0020\u0044\u0043\u0054\u0020\u0065n\u0063\u006f\u0064\u0065r.\u002e\u002e");_a .Log .Trace ("\u004du\u006ct\u0069\u0020\u0065\u006e\u0063o\u0064\u0065r\u003a\u0020\u0025\u0023\u0076",_ege ); +}else if *_eega ==StreamEncodingFilterNameCCITTFax {_ececc ,_dbdd :=_adcf (_gbff ,_bbgf );if _dbdd !=nil {return nil ,_dbdd ;};_ege .AddEncoder (_ececc );}else {_a .Log .Error ("U\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0066\u0069l\u0074\u0065\u0072\u0020\u0025\u0073",*_eega ); +return nil ,_gf .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u0066\u0069\u006c\u0074er \u0069n \u006d\u0075\u006c\u0074\u0069\u0020\u0066il\u0074\u0065\u0072\u0020\u0061\u0072\u0072a\u0079");};};return _ege ,nil ;}; // EncodeBytes encodes a bytes array and return the encoded value based on the encoder parameters. -func (_efcfa *RunLengthEncoder )EncodeBytes (data []byte )([]byte ,error ){_ebda :=_fb .NewReader (data );var _abdad []byte ;var _gfgf []byte ;_aacb ,_dcba :=_ebda .ReadByte ();if _dcba ==_ae .EOF {return []byte {},nil ;}else if _dcba !=nil {return nil ,_dcba ; -};_ddg :=1;for {_agb ,_cef :=_ebda .ReadByte ();if _cef ==_ae .EOF {break ;}else if _cef !=nil {return nil ,_cef ;};if _agb ==_aacb {if len (_gfgf )> 0{_gfgf =_gfgf [:len (_gfgf )-1];if len (_gfgf )> 0{_abdad =append (_abdad ,byte (len (_gfgf )-1));_abdad =append (_abdad ,_gfgf ...); -};_ddg =1;_gfgf =[]byte {};};_ddg ++;if _ddg >=127{_abdad =append (_abdad ,byte (257-_ddg ),_aacb );_ddg =0;};}else {if _ddg > 0{if _ddg ==1{_gfgf =[]byte {_aacb };}else {_abdad =append (_abdad ,byte (257-_ddg ),_aacb );};_ddg =0;};_gfgf =append (_gfgf ,_agb ); -if len (_gfgf )>=127{_abdad =append (_abdad ,byte (len (_gfgf )-1));_abdad =append (_abdad ,_gfgf ...);_gfgf =[]byte {};};};_aacb =_agb ;};if len (_gfgf )> 0{_abdad =append (_abdad ,byte (len (_gfgf )-1));_abdad =append (_abdad ,_gfgf ...);}else if _ddg > 0{_abdad =append (_abdad ,byte (257-_ddg ),_aacb ); -};_abdad =append (_abdad ,128);return _abdad ,nil ;}; +func (_ceee *RunLengthEncoder )EncodeBytes (data []byte )([]byte ,error ){_ecebb :=_fd .NewReader (data );var _cgee []byte ;var _ccae []byte ;_ecgf ,_fga :=_ecebb .ReadByte ();if _fga ==_fg .EOF {return []byte {},nil ;}else if _fga !=nil {return nil ,_fga ; +};_dgca :=1;for {_dgcb ,_cbfbf :=_ecebb .ReadByte ();if _cbfbf ==_fg .EOF {break ;}else if _cbfbf !=nil {return nil ,_cbfbf ;};if _dgcb ==_ecgf {if len (_ccae )> 0{_ccae =_ccae [:len (_ccae )-1];if len (_ccae )> 0{_cgee =append (_cgee ,byte (len (_ccae )-1)); +_cgee =append (_cgee ,_ccae ...);};_dgca =1;_ccae =[]byte {};};_dgca ++;if _dgca >=127{_cgee =append (_cgee ,byte (257-_dgca ),_ecgf );_dgca =0;};}else {if _dgca > 0{if _dgca ==1{_ccae =[]byte {_ecgf };}else {_cgee =append (_cgee ,byte (257-_dgca ),_ecgf ); +};_dgca =0;};_ccae =append (_ccae ,_dgcb );if len (_ccae )>=127{_cgee =append (_cgee ,byte (len (_ccae )-1));_cgee =append (_cgee ,_ccae ...);_ccae =[]byte {};};};_ecgf =_dgcb ;};if len (_ccae )> 0{_cgee =append (_cgee ,byte (len (_ccae )-1));_cgee =append (_cgee ,_ccae ...); +}else if _dgca > 0{_cgee =append (_cgee ,byte (257-_dgca ),_ecgf );};_cgee =append (_cgee ,128);return _cgee ,nil ;}; -// UpdateParams updates the parameter values of the encoder. -func (_gba *LZWEncoder )UpdateParams (params *PdfObjectDictionary ){_bbg ,_dad :=GetNumberAsInt64 (params .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr"));if _dad ==nil {_gba .Predictor =int (_bbg );};_ecba ,_dad :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074")); -if _dad ==nil {_gba .BitsPerComponent =int (_ecba );};_gad ,_dad :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));if _dad ==nil {_gba .Columns =int (_gad );};_fgag ,_dad :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073")); -if _dad ==nil {_gba .Colors =int (_fgag );};_defg ,_dad :=GetNumberAsInt64 (params .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065"));if _dad ==nil {_gba .EarlyChange =int (_defg );};}; +// MakeNull creates an PdfObjectNull. +func MakeNull ()*PdfObjectNull {_affc :=PdfObjectNull {};return &_affc }; -// Seek implementation of Seek interface. -func (_cbgga *limitedReadSeeker )Seek (offset int64 ,whence int )(int64 ,error ){var _dgdb int64 ;switch whence {case _ae .SeekStart :_dgdb =offset ;case _ae .SeekCurrent :_gbgab ,_ffdbc :=_cbgga ._fbge .Seek (0,_ae .SeekCurrent );if _ffdbc !=nil {return 0,_ffdbc ; -};_dgdb =_gbgab +offset ;case _ae .SeekEnd :_dgdb =_cbgga ._bfgb +offset ;};if _cbbf :=_cbgga .getError (_dgdb );_cbbf !=nil {return 0,_cbbf ;};if _ ,_geae :=_cbgga ._fbge .Seek (_dgdb ,_ae .SeekStart );_geae !=nil {return 0,_geae ;};return _dgdb ,nil ; -}; +// String returns a string describing `stream`. +func (_cbec *PdfObjectStream )String ()string {return _gf .Sprintf ("O\u0062j\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u0025\u0064: \u0025\u0073",_cbec .ObjectNumber ,_cbec .PdfObjectDictionary );}; -// Set sets the PdfObject at index i of the streams. An error is returned if the index is outside bounds. -func (_baec *PdfObjectStreams )Set (i int ,obj PdfObject )error {if i < 0||i >=len (_baec ._gedag ){return _f .New ("\u004f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0062o\u0075\u006e\u0064\u0073");};_baec ._gedag [i ]=obj ;return nil ;}; +// IsDecimalDigit checks if the character is a part of a decimal number string. +func IsDecimalDigit (c byte )bool {return '0'<=c &&c <='9'};func _agba (_efed ,_efged ,_abfd int )error {if _efged < 0||_efged > _efed {return _c .New ("s\u006c\u0069\u0063\u0065\u0020\u0069n\u0064\u0065\u0078\u0020\u0061\u0020\u006f\u0075\u0074 \u006f\u0066\u0020b\u006fu\u006e\u0064\u0073"); +};if _abfd < _efged {return _c .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0073\u006c\u0069\u0063e\u0020i\u006ed\u0065\u0078\u0020\u0062\u0020\u003c\u0020a");};if _abfd > _efed {return _c .New ("s\u006c\u0069\u0063\u0065\u0020\u0069n\u0064\u0065\u0078\u0020\u0062\u0020\u006f\u0075\u0074 \u006f\u0066\u0020b\u006fu\u006e\u0064\u0073"); +};return nil ;}; -// GetBoolVal returns the bool value within a *PdObjectBool represented by an PdfObject interface directly or indirectly. -// If the PdfObject does not represent a bool value, a default value of false is returned (found = false also). -func GetBoolVal (obj PdfObject )(_cafaf bool ,_fbgb bool ){_bdgb ,_fbgb :=TraceToDirectObject (obj ).(*PdfObjectBool );if _fbgb {return bool (*_bdgb ),true ;};return false ,false ;}; +// GetTrailer returns the PDFs trailer dictionary. The trailer dictionary is typically the starting point for a PDF, +// referencing other key objects that are important in the document structure. +func (_gdcaf *PdfParser )GetTrailer ()*PdfObjectDictionary {return _gdcaf ._dabde }; -// PdfObjectDictionary represents the primitive PDF dictionary/map object. -type PdfObjectDictionary struct{_dbce map[PdfObjectName ]PdfObject ;_aeea []PdfObjectName ;_gaae *_d .Mutex ;_gfabc *PdfParser ;}; +// DecodeBytes decodes byte array with ASCII85. 5 ASCII characters -> 4 raw binary bytes +func (_afga *ASCII85Encoder )DecodeBytes (encoded []byte )([]byte ,error ){var _deaf []byte ;_a .Log .Trace ("\u0041\u0053\u0043\u0049\u0049\u0038\u0035\u0020\u0044e\u0063\u006f\u0064\u0065");_egbf :=0;_bed :=false ;for _egbf < len (encoded )&&!_bed {_fdga :=[5]byte {0,0,0,0,0}; +_eebe :=0;_cgcc :=0;_fag :=4;for _cgcc < 5+_eebe {if _egbf +_cgcc ==len (encoded ){break ;};_acaae :=encoded [_egbf +_cgcc ];if IsWhiteSpace (_acaae ){_eebe ++;_cgcc ++;continue ;}else if _acaae =='~'&&_egbf +_cgcc +1< len (encoded )&&encoded [_egbf +_cgcc +1]=='>'{_fag =(_cgcc -_eebe )-1; +if _fag < 0{_fag =0;};_bed =true ;break ;}else if _acaae >='!'&&_acaae <='u'{_acaae -='!';}else if _acaae =='z'&&_cgcc -_eebe ==0{_fag =4;_cgcc ++;break ;}else {_a .Log .Error ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020co\u0064\u0065"); +return nil ,_c .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u006f\u0064\u0065\u0020e\u006e\u0063\u006f\u0075\u006e\u0074\u0065\u0072\u0065\u0064");};_fdga [_cgcc -_eebe ]=_acaae ;_cgcc ++;};_egbf +=_cgcc ;for _aagd :=_fag +1;_aagd < 5;_aagd ++{_fdga [_aagd ]=84; +};_fbgc :=uint32 (_fdga [0])*85*85*85*85+uint32 (_fdga [1])*85*85*85+uint32 (_fdga [2])*85*85+uint32 (_fdga [3])*85+uint32 (_fdga [4]);_ffdc :=[]byte {byte ((_fbgc >>24)&0xff),byte ((_fbgc >>16)&0xff),byte ((_fbgc >>8)&0xff),byte (_fbgc &0xff)};_deaf =append (_deaf ,_ffdc [:_fag ]...); +};_a .Log .Trace ("A\u0053\u0043\u0049\u004985\u002c \u0065\u006e\u0063\u006f\u0064e\u0064\u003a\u0020\u0025\u0020\u0058",encoded );_a .Log .Trace ("A\u0053\u0043\u0049\u004985\u002c \u0064\u0065\u0063\u006f\u0064e\u0064\u003a\u0020\u0025\u0020\u0058",_deaf ); +return _deaf ,nil ;}; -// ParserMetadata gets the pdf parser metadata. -func (_aac *PdfParser )ParserMetadata ()(ParserMetadata ,error ){if !_aac ._adaa {return ParserMetadata {},_daa .Errorf ("\u0070\u0061\u0072\u0073\u0065r\u0020\u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u006d\u0061\u0072\u006be\u0064\u0020\u0066\u006f\u0072\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0064\u0065\u0074\u0061\u0069\u006c\u0065\u0064\u0020\u006d\u0065\u0074\u0061\u0064\u0061\u0074a"); -};return _aac ._bcdc ,nil ;};func (_dcd *PdfCrypt )loadCryptFilters (_ccfd *PdfObjectDictionary )error {_dcd ._bgbe =cryptFilters {};_aec :=_ccfd .Get ("\u0043\u0046");_aec =TraceToDirectObject (_aec );if _ecg ,_baa :=_aec .(*PdfObjectReference );_baa {_dde ,_bge :=_dcd ._ebec .LookupByReference (*_ecg ); -if _bge !=nil {_ecd .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u006c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0075\u0070\u0020\u0043\u0046\u0020\u0072\u0065\u0066\u0065\u0072en\u0063\u0065");return _bge ;};_aec =TraceToDirectObject (_dde );};_eeg ,_bbb :=_aec .(*PdfObjectDictionary ); -if !_bbb {_ecd .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0043\u0046\u002c \u0074\u0079\u0070\u0065: \u0025\u0054",_aec );return _f .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0046");};for _ ,_dge :=range _eeg .Keys (){_bdb :=_eeg .Get (_dge ); -if _bbcb ,_ggb :=_bdb .(*PdfObjectReference );_ggb {_ge ,_ecdc :=_dcd ._ebec .LookupByReference (*_bbcb );if _ecdc !=nil {_ecd .Log .Debug ("\u0045\u0072ro\u0072\u0020\u006co\u006f\u006b\u0075\u0070 up\u0020di\u0063\u0074\u0069\u006f\u006e\u0061\u0072y \u0072\u0065\u0066\u0065\u0072\u0065\u006ec\u0065"); -return _ecdc ;};_bdb =TraceToDirectObject (_ge );};_bdcb ,_baae :=_bdb .(*PdfObjectDictionary );if !_baae {return _daa .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074\u0020\u0069\u006e \u0043\u0046\u0020\u0028\u006e\u0061\u006d\u0065\u0020\u0025\u0073\u0029\u0020-\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079\u0020\u0062\u0075\u0074\u0020\u0025\u0054",_dge ,_bdb ); -};if _dge =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u002d\u0020\u0043\u0061\u006e\u006e\u006f\u0074\u0020\u006f\u0076\u0065\u0072\u0077r\u0069\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0069d\u0065\u006e\u0074\u0069\u0074\u0079\u0020\u0066\u0069\u006c\u0074\u0065\u0072 \u002d\u0020\u0054\u0072\u0079\u0069n\u0067\u0020\u006ee\u0078\u0074"); -continue ;};var _adf _bc .FilterDict ;if _cecd :=_cfbb (&_adf ,_bdcb );_cecd !=nil {return _cecd ;};_efc ,_dcc :=_bc .NewFilter (_adf );if _dcc !=nil {return _dcc ;};_dcd ._bgbe [string (_dge )]=_efc ;};_dcd ._bgbe ["\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"]=_bc .NewIdentity (); -_dcd ._ffd ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _dfeg ,_aga :=_ccfd .Get ("\u0053\u0074\u0072\u0046").(*PdfObjectName );_aga {if _ ,_gbbd :=_dcd ._bgbe [string (*_dfeg )];!_gbbd {return _daa .Errorf ("\u0063\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0066o\u0072\u0020\u0053\u0074\u0072\u0046\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069e\u0064\u0020\u0069\u006e\u0020C\u0046\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0073\u0029",*_dfeg ); -};_dcd ._ffd =string (*_dfeg );};_dcd ._gfd ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _bdd ,_ebf :=_ccfd .Get ("\u0053\u0074\u006d\u0046").(*PdfObjectName );_ebf {if _ ,_cae :=_dcd ._bgbe [string (*_bdd )];!_cae {return _daa .Errorf ("\u0063\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0066o\u0072\u0020\u0053\u0074\u006d\u0046\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069e\u0064\u0020\u0069\u006e\u0020C\u0046\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0073\u0029",*_bdd ); -};_dcd ._gfd =string (*_bdd );};return nil ;}; +// WriteString outputs the object as it is to be written to file. +func (_deab *PdfObjectBool )WriteString ()string {if *_deab {return "\u0074\u0072\u0075\u0065";};return "\u0066\u0061\u006cs\u0065";}; -// GetRevision returns PdfParser for the specific version of the Pdf document. -func (_accaf *PdfParser )GetRevision (revisionNumber int )(*PdfParser ,error ){_gaebc :=_accaf ._eecd ;if _gaebc ==revisionNumber {return _accaf ,nil ;};if _gaebc < revisionNumber {return nil ,_f .New ("\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0072\u0065\u0076\u0069\u0073i\u006fn\u004e\u0075\u006d\u0062\u0065\u0072\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); -};if _accaf ._bdddd [revisionNumber ]!=nil {return _accaf ._bdddd [revisionNumber ],nil ;};_dfa :=_accaf ;for ;_gaebc > revisionNumber ;_gaebc --{_gcab ,_bfgf :=_dfa .GetPreviousRevisionParser ();if _bfgf !=nil {return nil ,_bfgf ;};_accaf ._bdddd [_gaebc -1]=_gcab ; -_accaf ._fcedf [_dfa ]=_gcab ;_dfa =_gcab ;};return _dfa ,nil ;}; +// GetName returns the *PdfObjectName represented by the PdfObject directly or indirectly within an indirect +// object. On type mismatch the found bool flag is false and a nil pointer is returned. +func GetName (obj PdfObject )(_ebdc *PdfObjectName ,_cfbce bool ){_ebdc ,_cfbce =TraceToDirectObject (obj ).(*PdfObjectName );return _ebdc ,_cfbce ;};func (_ggcf *PdfCrypt )authenticate (_fcda []byte )(bool ,error ){_ggcf ._dfe =false ;_aad :=_ggcf .securityHandler (); +_gbdc ,_dabb ,_eceg :=_aad .Authenticate (&_ggcf ._aec ,_fcda );if _eceg !=nil {return false ,_eceg ;}else if _dabb ==0||len (_gbdc )==0{return false ,nil ;};_ggcf ._dfe =true ;_ggcf ._baa =_gbdc ;return true ,nil ;}; -// DecodeBytes decodes a byte slice from Run length encoding. -// -// 7.4.5 RunLengthDecode Filter -// The RunLengthDecode filter decodes data that has been encoded in a simple byte-oriented format based on run length. -// The encoded data shall be a sequence of runs, where each run shall consist of a length byte followed by 1 to 128 -// bytes of data. If the length byte is in the range 0 to 127, the following length + 1 (1 to 128) bytes shall be -// copied literally during decompression. If length is in the range 129 to 255, the following single byte shall be -// copied 257 - length (2 to 128) times during decompression. A length value of 128 shall denote EOD. -func (_dgfa *RunLengthEncoder )DecodeBytes (encoded []byte )([]byte ,error ){_bcg :=_fb .NewReader (encoded );var _dgbf []byte ;for {_aedc ,_cgfc :=_bcg .ReadByte ();if _cgfc !=nil {return nil ,_cgfc ;};if _aedc > 128{_egaf ,_gbga :=_bcg .ReadByte ();if _gbga !=nil {return nil ,_gbga ; -};for _abee :=0;_abee < 257-int (_aedc );_abee ++{_dgbf =append (_dgbf ,_egaf );};}else if _aedc < 128{for _bcfc :=0;_bcfc < int (_aedc )+1;_bcfc ++{_dedb ,_bcbee :=_bcg .ReadByte ();if _bcbee !=nil {return nil ,_bcbee ;};_dgbf =append (_dgbf ,_dedb ); -};}else {break ;};};return _dgbf ,nil ;}; +// PdfIndirectObject represents the primitive PDF indirect object. +type PdfIndirectObject struct{PdfObjectReference ;PdfObject ;}; -// JBIG2EncoderSettings contains the parameters and settings used by the JBIG2Encoder. -// Current version works only on JB2Generic compression. -type JBIG2EncoderSettings struct{ +// MakeString creates an PdfObjectString from a string. +// NOTE: PDF does not use utf-8 string encoding like Go so `s` will often not be a utf-8 encoded +// string. +func MakeString (s string )*PdfObjectString {_cfcbb :=PdfObjectString {_aaca :s };return &_cfcbb }; -// FileMode defines if the jbig2 encoder should return full jbig2 file instead of -// shortened pdf mode. This adds the file header to the jbig2 definition. -FileMode bool ; +// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. +func (_edce *JBIG2Encoder )MakeStreamDict ()*PdfObjectDictionary {_ecbf :=MakeDict ();_ecbf .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_edce .GetFilterName ()));return _ecbf ;}; -// Compression is the setting that defines the compression type used for encoding the page. -Compression JBIG2CompressionType ; +// PdfObject is an interface which all primitive PDF objects must implement. +type PdfObject interface{ -// DuplicatedLinesRemoval code generic region in a way such that if the lines are duplicated the encoder -// doesn't store it twice. -DuplicatedLinesRemoval bool ; +// String outputs a string representation of the primitive (for debugging). +String ()string ; -// DefaultPixelValue is the bit value initial for every pixel in the page. -DefaultPixelValue uint8 ; +// WriteString outputs the PDF primitive as written to file as expected by the standard. +// TODO(dennwc): it should return a byte slice, or accept a writer +WriteString ()string ;}; -// ResolutionX optional setting that defines the 'x' axis input image resolution - used for single page encoding. -ResolutionX int ; +// EncodeBytes returns the passed in slice of bytes. +// The purpose of the method is to satisfy the StreamEncoder interface. +func (_efggf *RawEncoder )EncodeBytes (data []byte )([]byte ,error ){return data ,nil };var _fgdd =_ce .MustCompile ("\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u0028\u005c\u0064+\u0029\u005c\u0073\u002b\u0028\u005b\u006e\u0066\u005d\u0029\\\u0073\u002a\u0024"); +func _cbcac (_edgbe _be .Image )*JBIG2Image {_dccac :=_edgbe .Base ();return &JBIG2Image {Data :_dccac .Data ,Width :_dccac .Width ,Height :_dccac .Height ,HasPadding :true };}; -// ResolutionY optional setting that defines the 'y' axis input image resolution - used for single page encoding. -ResolutionY int ; +// EncodeBytes encodes a bytes array and return the encoded value based on the encoder parameters. +func (_bdd *FlateEncoder )EncodeBytes (data []byte )([]byte ,error ){if _bdd .Predictor !=1&&_bdd .Predictor !=11{_a .Log .Debug ("E\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0046\u006c\u0061\u0074\u0065\u0045\u006e\u0063\u006f\u0064\u0065r\u0020P\u0072\u0065\u0064\u0069c\u0074\u006fr\u0020\u003d\u0020\u0031\u002c\u0020\u0031\u0031\u0020\u006f\u006e\u006c\u0079\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064"); +return nil ,ErrUnsupportedEncodingParameters ;};if _bdd .Predictor ==11{_gaag :=_bdd .Columns ;_eeac :=len (data )/_gaag ;if len (data )%_gaag !=0{_a .Log .Error ("\u0049n\u0076a\u006c\u0069\u0064\u0020\u0072o\u0077\u0020l\u0065\u006e\u0067\u0074\u0068"); +return nil ,_c .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0072o\u0077\u0020l\u0065\u006e\u0067\u0074\u0068");};_fbbc :=_fd .NewBuffer (nil );_fbgb :=make ([]byte ,_gaag );for _dfaf :=0;_dfaf < _eeac ;_dfaf ++{_abfb :=data [_gaag *_dfaf :_gaag *(_dfaf +1)]; +_fbgb [0]=_abfb [0];for _egae :=1;_egae < _gaag ;_egae ++{_fbgb [_egae ]=byte (int (_abfb [_egae ]-_abfb [_egae -1])%256);};_fbbc .WriteByte (1);_fbbc .Write (_fbgb );};data =_fbbc .Bytes ();};var _bddb _fd .Buffer ;_adbe :=_cea .NewWriter (&_bddb );_adbe .Write (data ); +_adbe .Close ();return _bddb .Bytes (),nil ;}; + +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_fdbf *ASCIIHexEncoder )MakeDecodeParams ()PdfObject {return nil };var _gadc =_ce .MustCompile ("\u005e\u005b\\\u002b\u002d\u002e\u005d*\u0028\u005b0\u002d\u0039\u002e\u005d\u002b\u0029\u005b\u0065E\u005d\u005b\u005c\u002b\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d9\u002e\u005d\u002b\u0029"); -// Threshold defines the threshold of the image correlation for -// non Generic compression. -// User only for JB2SymbolCorrelation and JB2SymbolRankHaus methods. -// Best results in range [0.7 - 0.98] - the less the better the compression would be -// but the more lossy. -// Default value: 0.95 -Threshold float64 ;};func (_fdfc *PdfParser )seekPdfVersionTopDown ()(int ,int ,error ){_fdfc ._ccgbe .Seek (0,_ae .SeekStart );_fdfc ._affd =_ga .NewReader (_fdfc ._ccgbe );_cacg :=20;_dfgd :=make ([]byte ,_cacg );for {_fffdb ,_fbef :=_fdfc ._affd .ReadByte (); -if _fbef !=nil {if _fbef ==_ae .EOF {break ;}else {return 0,0,_fbef ;};};if IsDecimalDigit (_fffdb )&&_dfgd [_cacg -1]=='.'&&IsDecimalDigit (_dfgd [_cacg -2])&&_dfgd [_cacg -3]=='-'&&_dfgd [_cacg -4]=='F'&&_dfgd [_cacg -5]=='D'&&_dfgd [_cacg -6]=='P'{_ddaee :=int (_dfgd [_cacg -2]-'0'); -_debdb :=int (_fffdb -'0');return _ddaee ,_debdb ,nil ;};_dfgd =append (_dfgd [1:_cacg ],_fffdb );};return 0,0,_f .New ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");}; + +// Len returns the number of elements in the streams. +func (_gbegg *PdfObjectStreams )Len ()int {if _gbegg ==nil {return 0;};return len (_gbegg ._cegef );}; + +// IsPrintable checks if a character is printable. +// Regular characters that are outside the range EXCLAMATION MARK(21h) +// (!) to TILDE (7Eh) (~) should be written using the hexadecimal notation. +func IsPrintable (c byte )bool {return 0x21<=c &&c <=0x7E};type offsetReader struct{_gfgc _fg .ReadSeeker ;_fegd int64 ;}; + +// Str returns the string value of the PdfObjectString. Defined in addition to String() function to clarify that +// this function returns the underlying string directly, whereas the String function technically could include +// debug info. +func (_bdgd *PdfObjectString )Str ()string {return _bdgd ._aaca };var _ebceg =_ce .MustCompile ("\u0028\u005c\u0064\u002b)\\\u0073\u002b\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u006f\u0062\u006a");func (_acb *PdfCrypt )isEncrypted (_cbce PdfObject )bool {_ ,_bdce :=_acb ._fee [_cbce ]; +if _bdce {_a .Log .Trace ("\u0041\u006c\u0072\u0065\u0061\u0064\u0079\u0020\u0065\u006e\u0063\u0072y\u0070\u0074\u0065\u0064");return true ;};_a .Log .Trace ("\u004e\u006f\u0074\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0065d\u0020\u0079\u0065\u0074"); +return false ;};func (_acegf *JBIG2Encoder )encodeImage (_cffc _cg .Image )([]byte ,error ){const _cbef ="e\u006e\u0063\u006f\u0064\u0065\u0049\u006d\u0061\u0067\u0065";_addg ,_bfcc :=GoImageToJBIG2 (_cffc ,JB2ImageAutoThreshold );if _bfcc !=nil {return nil ,_dd .Wrap (_bfcc ,_cbef ,"\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0069m\u0061g\u0065\u0020\u0074\u006f\u0020\u006a\u0062\u0069\u0067\u0032\u0020\u0069\u006d\u0067"); +};if _bfcc =_acegf .AddPageImage (_addg ,&_acegf .DefaultPageSettings );_bfcc !=nil {return nil ,_dd .Wrap (_bfcc ,_cbef ,"");};return _acegf .Encode ();}; + +// WriteString outputs the object as it is to be written to file. +func (_ggda *PdfObjectStreams )WriteString ()string {var _baecd _gd .Builder ;_baecd .WriteString (_bd .FormatInt (_ggda .ObjectNumber ,10));_baecd .WriteString ("\u0020\u0030\u0020\u0052");return _baecd .String ();}; + +// GetNumberAsFloat returns the contents of `obj` as a float if it is an integer or float, or an +// error if it isn't. +func GetNumberAsFloat (obj PdfObject )(float64 ,error ){switch _deef :=obj .(type ){case *PdfObjectFloat :return float64 (*_deef ),nil ;case *PdfObjectInteger :return float64 (*_deef ),nil ;case *PdfObjectReference :_bcggg :=TraceToDirectObject (obj ); +return GetNumberAsFloat (_bcggg );case *PdfIndirectObject :return GetNumberAsFloat (_deef .PdfObject );};return 0,ErrNotANumber ;};func (_baeb *PdfCrypt )makeKey (_fcc string ,_eacc ,_eag uint32 ,_edfg []byte )([]byte ,error ){_fgf ,_ecb :=_baeb ._deg [_fcc ]; +if !_ecb {return nil ,_gf .Errorf ("\u0075n\u006b\u006e\u006f\u0077n\u0020\u0063\u0072\u0079\u0070t\u0020f\u0069l\u0074\u0065\u0072\u0020\u0028\u0025\u0073)",_fcc );};return _fgf .MakeKey (_eacc ,_eag ,_edfg );}; + +// DecodeBytes decodes a slice of LZW encoded bytes and returns the result. +func (_egd *LZWEncoder )DecodeBytes (encoded []byte )([]byte ,error ){var _ffa _fd .Buffer ;_ccdd :=_fd .NewReader (encoded );var _adgf _fg .ReadCloser ;if _egd .EarlyChange ==1{_adgf =_d .NewReader (_ccdd ,_d .MSB ,8);}else {_adgf =_bf .NewReader (_ccdd ,_bf .MSB ,8); +};defer _adgf .Close ();if _ ,_aebdc :=_ffa .ReadFrom (_adgf );_aebdc !=nil {if _aebdc !=_fg .ErrUnexpectedEOF ||_ffa .Len ()==0{return nil ,_aebdc ;};_a .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u004c\u005a\u0057\u0020\u0064\u0065\u0063\u006f\u0064i\u006e\u0067\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076\u002e \u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062e \u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e",_aebdc ); +};return _ffa .Bytes (),nil ;}; + +// WriteString outputs the object as it is to be written to file. +func (_aggb *PdfObjectName )WriteString ()string {var _fddb _fd .Buffer ;if len (*_aggb )> 127{_a .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u004e\u0061\u006d\u0065\u0020t\u006fo\u0020l\u006f\u006e\u0067\u0020\u0028\u0025\u0073)",*_aggb );};_fddb .WriteString ("\u002f"); +for _edgaaf :=0;_edgaaf < len (*_aggb );_edgaaf ++{_acbff :=(*_aggb )[_edgaaf ];if !IsPrintable (_acbff )||_acbff =='#'||IsDelimiter (_acbff ){_fddb .WriteString (_gf .Sprintf ("\u0023\u0025\u002e2\u0078",_acbff ));}else {_fddb .WriteByte (_acbff );};}; +return _fddb .String ();};func _age (_efgg *PdfObjectStream ,_gfdfc *PdfObjectDictionary )(*FlateEncoder ,error ){_deadc :=NewFlateEncoder ();_eafc :=_efgg .PdfObjectDictionary ;if _eafc ==nil {return _deadc ,nil ;};_deadc ._dagc =_feae (_eafc );if _gfdfc ==nil {_eegg :=TraceToDirectObject (_eafc .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073")); +switch _aeff :=_eegg .(type ){case *PdfObjectArray :if _aeff .Len ()!=1{_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072:\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020a\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0031\u0020\u0028\u0025\u0064\u0029",_aeff .Len ()); +return nil ,_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};if _bdca ,_cdee :=GetDict (_aeff .Get (0));_cdee {_gfdfc =_bdca ;};case *PdfObjectDictionary :_gfdfc =_aeff ;case *PdfObjectNull ,nil :default:_a .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079 \u0028%\u0054\u0029",_eegg ); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073");};};if _gfdfc ==nil {return _deadc ,nil ;};_a .Log .Trace ("\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0070\u0061\u0072\u0061\u006ds\u003a\u0020\u0025\u0073",_gfdfc .String ()); +_fadg :=_gfdfc .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr");if _fadg ==nil {_a .Log .Debug ("E\u0072\u0072o\u0072\u003a\u0020\u0050\u0072\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0066\u0072\u006f\u006d\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073 \u002d\u0020\u0043\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020\u0077\u0069t\u0068\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u00281\u0029"); +}else {_gcc ,_bad :=_fadg .(*PdfObjectInteger );if !_bad {_a .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020\u0050\u0072\u0065d\u0069\u0063\u0074\u006f\u0072\u0020\u0073pe\u0063\u0069\u0066\u0069e\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u006f\u0074 n\u0075\u006de\u0072\u0069\u0063\u0020\u0028\u0025\u0054\u0029",_fadg ); +return nil ,_gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0072\u0065\u0064i\u0063\u0074\u006f\u0072");};_deadc .Predictor =int (*_gcc );};_fadg =_gfdfc .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +if _fadg !=nil {_baece ,_aag :=_fadg .(*PdfObjectInteger );if !_aag {_a .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0042i\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"); +return nil ,_gf .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");};_deadc .BitsPerComponent =int (*_baece );};if _deadc .Predictor > 1{_deadc .Columns =1; +_fadg =_gfdfc .Get ("\u0043o\u006c\u0075\u006d\u006e\u0073");if _fadg !=nil {_bec ,_abea :=_fadg .(*PdfObjectInteger );if !_abea {return nil ,_gf .Errorf ("\u0070r\u0065\u0064\u0069\u0063\u0074\u006f\u0072\u0020\u0063\u006f\u006cu\u006d\u006e\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064"); +};_deadc .Columns =int (*_bec );};_deadc .Colors =1;_fadg =_gfdfc .Get ("\u0043\u006f\u006c\u006f\u0072\u0073");if _fadg !=nil {_ddee ,_decd :=_fadg .(*PdfObjectInteger );if !_decd {return nil ,_gf .Errorf ("\u0070\u0072\u0065d\u0069\u0063\u0074\u006fr\u0020\u0063\u006f\u006c\u006f\u0072\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); +};_deadc .Colors =int (*_ddee );};};return _deadc ,nil ;};type cryptFilters map[string ]_efd .Filter ; // MakeStreamDict makes a new instance of an encoding dictionary for a stream object. // Has the Filter set and the DecodeParms. -func (_gced *FlateEncoder )MakeStreamDict ()*PdfObjectDictionary {_ecfg :=MakeDict ();_ecfg .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_gced .GetFilterName ()));_aecg :=_gced .MakeDecodeParams ();if _aecg !=nil {_ecfg .Set ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_aecg ); -};return _ecfg ;}; +func (_adf *LZWEncoder )MakeStreamDict ()*PdfObjectDictionary {_cfdf :=MakeDict ();_cfdf .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_adf .GetFilterName ()));_faf :=_adf .MakeDecodeParams ();if _faf !=nil {_cfdf .Set ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_faf ); +};_cfdf .Set ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065",MakeInteger (int64 (_adf .EarlyChange )));return _cfdf ;}; -// DecodeImages decodes the page images from the jbig2 'encoded' data input. -// The jbig2 document may contain multiple pages, thus the function can return multiple -// images. The images order corresponds to the page number. -func (_bfca *JBIG2Encoder )DecodeImages (encoded []byte )([]_ac .Image ,error ){const _daac ="\u004aB\u0049\u0047\u0032\u0045n\u0063\u006f\u0064\u0065\u0072.\u0044e\u0063o\u0064\u0065\u0049\u006d\u0061\u0067\u0065s";_feccc ,_gafe :=_ag .Decode (encoded ,_ag .Parameters {},_bfca .Globals .ToDocumentGlobals ()); -if _gafe !=nil {return nil ,_cd .Wrap (_gafe ,_daac ,"");};_aefb ,_gafe :=_feccc .PageNumber ();if _gafe !=nil {return nil ,_cd .Wrap (_gafe ,_daac ,"");};_bgecd :=[]_ac .Image {};var _ddaaf _ac .Image ;for _bebd :=1;_bebd <=_aefb ;_bebd ++{_ddaaf ,_gafe =_feccc .DecodePageImage (_bebd ); -if _gafe !=nil {return nil ,_cd .Wrapf (_gafe ,_daac ,"\u0070\u0061\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_bebd );};_bgecd =append (_bgecd ,_ddaaf );};return _bgecd ,nil ;}; +// LZWEncoder provides LZW encoding/decoding functionality. +type LZWEncoder struct{Predictor int ;BitsPerComponent int ; -// GetDict returns the *PdfObjectDictionary represented by the PdfObject directly or indirectly within an indirect -// object. On type mismatch the found bool flag is false and a nil pointer is returned. -func GetDict (obj PdfObject )(_egcf *PdfObjectDictionary ,_bgef bool ){_egcf ,_bgef =TraceToDirectObject (obj ).(*PdfObjectDictionary );return _egcf ,_bgef ;}; +// For predictors +Columns int ;Colors int ; -// XrefTable represents the cross references in a PDF, i.e. the table of objects and information -// where to access within the PDF file. -type XrefTable struct{ObjectMap map[int ]XrefObject ;_fbb []XrefObject ;}; +// LZW algorithm setting. +EarlyChange int ;};func (_gdcad *limitedReadSeeker )getError (_dcgg int64 )error {switch {case _dcgg < 0:return _gf .Errorf ("\u0075\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u006e\u0065\u0067\u0061\u0074\u0069\u0076e\u0020\u006f\u0066\u0066\u0073\u0065\u0074\u003a\u0020\u0025\u0064",_dcgg ); +case _dcgg > _gdcad ._bcgd :return _gf .Errorf ("u\u006e\u0065\u0078\u0070ec\u0074e\u0064\u0020\u006f\u0066\u0066s\u0065\u0074\u003a\u0020\u0025\u0064",_dcgg );};return nil ;}; -// ToFloat64Array returns a slice of all elements in the array as a float64 slice. An error is -// returned if the array contains non-numeric objects (each element can be either PdfObjectInteger -// or PdfObjectFloat). -func (_cdfbf *PdfObjectArray )ToFloat64Array ()([]float64 ,error ){var _ggeed []float64 ;for _ ,_dccaf :=range _cdfbf .Elements (){switch _gffb :=_dccaf .(type ){case *PdfObjectInteger :_ggeed =append (_ggeed ,float64 (*_gffb ));case *PdfObjectFloat :_ggeed =append (_ggeed ,float64 (*_gffb )); -default:return nil ,ErrTypeError ;};};return _ggeed ,nil ;};func (_abgc *PdfObjectFloat )String ()string {return _daa .Sprintf ("\u0025\u0066",*_abgc )}; +// GetFilterName returns the name of the encoding filter. +func (_gaf *RunLengthEncoder )GetFilterName ()string {return StreamEncodingFilterNameRunLength };func _gbbga (_dggge PdfObject ,_fgbd int )PdfObject {if _fgbd > _ddfg {_a .Log .Error ("\u0054\u0072ac\u0065\u0020\u0064e\u0070\u0074\u0068\u0020lev\u0065l \u0062\u0065\u0079\u006f\u006e\u0064\u0020%d\u0020\u002d\u0020\u0065\u0072\u0072\u006fr\u0021",_ddfg ); +return MakeNull ();};switch _ccfc :=_dggge .(type ){case *PdfIndirectObject :_dggge =_gbbga ((*_ccfc ).PdfObject ,_fgbd +1);case *PdfObjectArray :for _gfeb ,_abcf :=range (*_ccfc )._fabc {(*_ccfc )._fabc [_gfeb ]=_gbbga (_abcf ,_fgbd +1);};case *PdfObjectDictionary :for _cbcce ,_dfbfa :=range (*_ccfc )._adbeb {(*_ccfc )._adbeb [_cbcce ]=_gbbga (_dfbfa ,_fgbd +1); +};_gg .Slice ((*_ccfc )._caeg ,func (_aada ,_egef int )bool {return (*_ccfc )._caeg [_aada ]< (*_ccfc )._caeg [_egef ]});};return _dggge ;};var _dgbg =_ce .MustCompile ("\u005b\\\u0072\u005c\u006e\u005d\u005c\u0073\u002a\u0028\u0078\u0072\u0065f\u0029\u005c\u0073\u002a\u005b\u005c\u0072\u005c\u006e\u005d"); -// Decrypt attempts to decrypt the PDF file with a specified password. Also tries to -// decrypt with an empty password. Returns true if successful, false otherwise. -// An error is returned when there is a problem with decrypting. -func (_agbg *PdfParser )Decrypt (password []byte )(bool ,error ){if _agbg ._geaef ==nil {return false ,_f .New ("\u0063\u0068\u0065\u0063k \u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u0066\u0069\u0072s\u0074");};_gefc ,_bbba :=_agbg ._geaef .authenticate (password ); -if _bbba !=nil {return false ,_bbba ;};if !_gefc {_gefc ,_bbba =_agbg ._geaef .authenticate ([]byte (""));};return _gefc ,_bbba ;}; -// MakeEncodedString creates a PdfObjectString with encoded content, which can be either -// UTF-16BE or PDFDocEncoding depending on whether `utf16BE` is true or false respectively. -func MakeEncodedString (s string ,utf16BE bool )*PdfObjectString {if utf16BE {var _ccad _fb .Buffer ;_ccad .Write ([]byte {0xFE,0xFF});_ccad .WriteString (_ce .StringToUTF16 (s ));return &PdfObjectString {_cceg :_ccad .String (),_eecb :true };};return &PdfObjectString {_cceg :string (_ce .StringToPDFDocEncoding (s )),_eecb :false }; +// IsEncrypted checks if the document is encrypted. A bool flag is returned indicating the result. +// First time when called, will check if the Encrypt dictionary is accessible through the trailer dictionary. +// If encrypted, prepares a crypt datastructure which can be used to authenticate and decrypt the document. +// On failure, an error is returned. +func (_bcdad *PdfParser )IsEncrypted ()(bool ,error ){if _bcdad ._abae !=nil {return true ,nil ;}else if _bcdad ._dabde ==nil {return false ,nil ;};_a .Log .Trace ("\u0043\u0068\u0065c\u006b\u0069\u006e\u0067 \u0065\u006e\u0063\u0072\u0079\u0070\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0021"); +_ccaed :=_bcdad ._dabde .Get ("\u0045n\u0063\u0072\u0079\u0070\u0074");if _ccaed ==nil {return false ,nil ;};_a .Log .Trace ("\u0049\u0073\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0021");var (_dbec *PdfObjectDictionary ;);switch _fcce :=_ccaed .(type ){case *PdfObjectDictionary :_dbec =_fcce ; +case *PdfObjectReference :_a .Log .Trace ("\u0030\u003a\u0020\u004c\u006f\u006f\u006b\u0020\u0075\u0070\u0020\u0072e\u0066\u0020\u0025\u0071",_fcce );_dbad ,_eddd :=_bcdad .LookupByReference (*_fcce );_a .Log .Trace ("\u0031\u003a\u0020%\u0071",_dbad ); +if _eddd !=nil {return false ,_eddd ;};_dbba ,_cgcgf :=_dbad .(*PdfIndirectObject );if !_cgcgf {_a .Log .Debug ("E\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072ec\u0074\u0020\u006fb\u006ae\u0063\u0074"); +return false ,_c .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_abcb ,_cgcgf :=_dbba .PdfObject .(*PdfObjectDictionary );_bcdad ._fafd =_dbba ;_a .Log .Trace ("\u0032\u003a\u0020%\u0071",_abcb );if !_cgcgf {return false ,_c .New ("\u0074\u0072a\u0069\u006c\u0065\u0072 \u0045\u006ec\u0072\u0079\u0070\u0074\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u006e\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +};_dbec =_abcb ;case *PdfObjectNull :_a .Log .Debug ("\u0045\u006e\u0063\u0072\u0079\u0070\u0074 \u0069\u0073\u0020a\u0020\u006e\u0075l\u006c\u0020o\u0062\u006a\u0065\u0063\u0074\u002e \u0046il\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u002e"); +return false ,nil ;default:return false ,_gf .Errorf ("u\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0074\u0079\u0070\u0065: \u0025\u0054",_fcce );};_cdga ,_fgdc :=PdfCryptNewDecrypt (_bcdad ,_dbec ,_bcdad ._dabde );if _fgdc !=nil {return false ,_fgdc ; +};for _ ,_eabc :=range []string {"\u0045n\u0063\u0072\u0079\u0070\u0074"}{_gdgc :=_bcdad ._dabde .Get (PdfObjectName (_eabc ));if _gdgc ==nil {continue ;};switch _dgbafa :=_gdgc .(type ){case *PdfObjectReference :_cdga ._cdda [int (_dgbafa .ObjectNumber )]=struct{}{}; +case *PdfIndirectObject :_cdga ._ecee [_dgbafa ]=true ;_cdga ._cdda [int (_dgbafa .ObjectNumber )]=struct{}{};};};_bcdad ._abae =_cdga ;_a .Log .Trace ("\u0043\u0072\u0079\u0070\u0074\u0065\u0072\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0025\u0062",_cdga ); +return true ,nil ;}; + +// String returns a string describing `ind`. +func (_fdfbd *PdfIndirectObject )String ()string {return _gf .Sprintf ("\u0049\u004f\u0062\u006a\u0065\u0063\u0074\u003a\u0025\u0064",(*_fdfbd ).ObjectNumber );}; + +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_acg *LZWEncoder )MakeDecodeParams ()PdfObject {if _acg .Predictor > 1{_fgcc :=MakeDict ();_fgcc .Set ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr",MakeInteger (int64 (_acg .Predictor )));if _acg .BitsPerComponent !=8{_fgcc .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",MakeInteger (int64 (_acg .BitsPerComponent ))); +};if _acg .Columns !=1{_fgcc .Set ("\u0043o\u006c\u0075\u006d\u006e\u0073",MakeInteger (int64 (_acg .Columns )));};if _acg .Colors !=1{_fgcc .Set ("\u0043\u006f\u006c\u006f\u0072\u0073",MakeInteger (int64 (_acg .Colors )));};return _fgcc ;};return nil ; }; -// GetFilterName returns the name of the encoding filter. -func (_fbbb *RunLengthEncoder )GetFilterName ()string {return StreamEncodingFilterNameRunLength };const _dbb ="\u0053\u0074\u0064C\u0046";var _fbae =_fc .MustCompile ("\u005c\u0073\u002a\u0078\u0072\u0065\u0066\u005c\u0073\u002a"); +// MakeArrayFromFloats creates an PdfObjectArray from a slice of float64s, where each array element is an +// PdfObjectFloat. +func MakeArrayFromFloats (vals []float64 )*PdfObjectArray {_edgd :=MakeArray ();for _ ,_ebfe :=range vals {_edgd .Append (MakeFloat (_ebfe ));};return _edgd ;}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_bgd *RawEncoder )MakeStreamDict ()*PdfObjectDictionary {return MakeDict ()}; +// PdfObjectBool represents the primitive PDF boolean object. +type PdfObjectBool bool ; -// GetInt returns the *PdfObjectBool object that is represented by a PdfObject either directly or indirectly -// within an indirect object. The bool flag indicates whether a match was found. -func GetInt (obj PdfObject )(_afeb *PdfObjectInteger ,_bfbb bool ){_afeb ,_bfbb =TraceToDirectObject (obj ).(*PdfObjectInteger );return _afeb ,_bfbb ;}; +// GetString returns the *PdfObjectString represented by the PdfObject directly or indirectly within an indirect +// object. On type mismatch the found bool flag is false and a nil pointer is returned. +func GetString (obj PdfObject )(_fcgf *PdfObjectString ,_bfegf bool ){_fcgf ,_bfegf =TraceToDirectObject (obj ).(*PdfObjectString );return _fcgf ,_bfegf ;}; -// UpdateParams updates the parameter values of the encoder. -func (_fbaa *ASCII85Encoder )UpdateParams (params *PdfObjectDictionary ){}; +// MakeStream creates an PdfObjectStream with specified contents and encoding. If encoding is nil, then raw encoding +// will be used (i.e. no encoding applied). +func MakeStream (contents []byte ,encoder StreamEncoder )(*PdfObjectStream ,error ){_efcc :=&PdfObjectStream {};if encoder ==nil {encoder =NewRawEncoder ();};_efcc .PdfObjectDictionary =encoder .MakeStreamDict ();_bcedb ,_bdfe :=encoder .EncodeBytes (contents ); +if _bdfe !=nil {return nil ,_bdfe ;};_efcc .PdfObjectDictionary .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_bcedb ))));_efcc .Stream =_bcedb ;return _efcc ,nil ;}; -// MakeDict creates and returns an empty PdfObjectDictionary. -func MakeDict ()*PdfObjectDictionary {_gbgd :=&PdfObjectDictionary {};_gbgd ._dbce =map[PdfObjectName ]PdfObject {};_gbgd ._aeea =[]PdfObjectName {};_gbgd ._gaae =&_d .Mutex {};return _gbgd ;};func _gdcag (_febce string )(int ,int ,error ){_beab :=_gegg .FindStringSubmatch (_febce ); -if len (_beab )< 3{return 0,0,_f .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); -};_ecbef ,_ :=_bf .Atoi (_beab [1]);_ebcbd ,_ :=_bf .Atoi (_beab [2]);return _ecbef ,_ebcbd ,nil ;}; +// Update updates multiple keys and returns the dictionary back so can be used in a chained fashion. +func (_gafc *PdfObjectDictionary )Update (objmap map[string ]PdfObject )*PdfObjectDictionary {_gafc ._ccdg .Lock ();defer _gafc ._ccdg .Unlock ();for _defb ,_bcfga :=range objmap {_gafc .setWithLock (PdfObjectName (_defb ),_bcfga ,false );};return _gafc ; +}; -// GetFilterName returns the names of the underlying encoding filters, -// separated by spaces. -// Note: This is just a string, should not be used in /Filter dictionary entry. Use GetFilterArray for that. -// TODO(v4): Refactor to GetFilter() which can be used for /Filter (either Name or Array), this can be -// renamed to String() as a pretty string to use in debugging etc. -func (_dggf *MultiEncoder )GetFilterName ()string {_ccda :="";for _baad ,_dga :=range _dggf ._degb {_ccda +=_dga .GetFilterName ();if _baad < len (_dggf ._degb )-1{_ccda +="\u0020";};};return _ccda ;}; +// UpdateParams updates the parameter values of the encoder. +func (_agfa *DCTEncoder )UpdateParams (params *PdfObjectDictionary ){_baedg ,_dbb :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073"));if _dbb ==nil {_agfa .ColorComponents =int (_baedg ); +};_dafb ,_dbb :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));if _dbb ==nil {_agfa .BitsPerComponent =int (_dafb );};_acda ,_dbb :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068")); +if _dbb ==nil {_agfa .Width =int (_acda );};_fdgg ,_dbb :=GetNumberAsInt64 (params .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));if _dbb ==nil {_agfa .Height =int (_fdgg );};_dcga ,_dbb :=GetNumberAsInt64 (params .Get ("\u0051u\u0061\u006c\u0069\u0074\u0079")); +if _dbb ==nil {_agfa .Quality =int (_dcga );};_befd ,_abb :=GetArray (params .Get ("\u0044\u0065\u0063\u006f\u0064\u0065"));if _abb {_agfa .Decode ,_dbb =_befd .ToFloat64Array ();if _dbb !=nil {_a .Log .Error ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0063\u006f\u006ev\u0065\u0072\u0074\u0069\u006e\u0067\u0020de\u0063\u006f\u0064\u0065 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u006eto\u0020\u0061r\u0072\u0061\u0079\u0073\u003a\u0020\u0025\u0076",_dbb ); +};};}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -// Has the Filter set. Some other parameters are generated elsewhere. -func (_gddc *DCTEncoder )MakeStreamDict ()*PdfObjectDictionary {_fec :=MakeDict ();_fec .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_gddc .GetFilterName ()));return _fec ;}; +// WriteString outputs the object as it is to be written to file. +func (_gcgcf *PdfObjectNull )WriteString ()string {return "\u006e\u0075\u006c\u006c"}; -// EqualObjects returns true if `obj1` and `obj2` have the same contents. -// -// NOTE: It is a good idea to flatten obj1 and obj2 with FlattenObject before calling this function -// so that contents, rather than references, can be compared. -func EqualObjects (obj1 ,obj2 PdfObject )bool {return _agca (obj1 ,obj2 ,0)}; +// DecodeImages decodes the page images from the jbig2 'encoded' data input. +// The jbig2 document may contain multiple pages, thus the function can return multiple +// images. The images order corresponds to the page number. +func (_aaacc *JBIG2Encoder )DecodeImages (encoded []byte )([]_cg .Image ,error ){const _ddgeb ="\u004aB\u0049\u0047\u0032\u0045n\u0063\u006f\u0064\u0065\u0072.\u0044e\u0063o\u0064\u0065\u0049\u006d\u0061\u0067\u0065s";_cab ,_aadb :=_eg .Decode (encoded ,_eg .Parameters {},_aaacc .Globals .ToDocumentGlobals ()); +if _aadb !=nil {return nil ,_dd .Wrap (_aadb ,_ddgeb ,"");};_dccc ,_aadb :=_cab .PageNumber ();if _aadb !=nil {return nil ,_dd .Wrap (_aadb ,_ddgeb ,"");};_eded :=[]_cg .Image {};var _dgga _cg .Image ;for _dgba :=1;_dgba <=_dccc ;_dgba ++{_dgga ,_aadb =_cab .DecodePageImage (_dgba ); +if _aadb !=nil {return nil ,_dd .Wrapf (_aadb ,_ddgeb ,"\u0070\u0061\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_dgba );};_eded =append (_eded ,_dgga );};return _eded ,nil ;}; -// GetStringVal returns the string value represented by the PdfObject directly or indirectly if -// contained within an indirect object. On type mismatch the found bool flag returned is false and -// an empty string is returned. -func GetStringVal (obj PdfObject )(_efgef string ,_acce bool ){_ebacec ,_acce :=TraceToDirectObject (obj ).(*PdfObjectString );if _acce {return _ebacec .Str (),true ;};return ;}; +// GetFilterName returns the name of the encoding filter. +func (_dgg *RawEncoder )GetFilterName ()string {return StreamEncodingFilterNameRaw }; -// NewEncoderFromStream creates a StreamEncoder based on the stream's dictionary. -func NewEncoderFromStream (streamObj *PdfObjectStream )(StreamEncoder ,error ){_ccdc :=TraceToDirectObject (streamObj .PdfObjectDictionary .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"));if _ccdc ==nil {return NewRawEncoder (),nil ;};if _ ,_gfbcg :=_ccdc .(*PdfObjectNull ); -_gfbcg {return NewRawEncoder (),nil ;};_dbbgb ,_dbec :=_ccdc .(*PdfObjectName );if !_dbec {_eedf ,_eagef :=_ccdc .(*PdfObjectArray );if !_eagef {return nil ,_daa .Errorf ("\u0066\u0069\u006c\u0074\u0065\u0072 \u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0072 \u0041\u0072\u0072\u0061\u0079\u0020\u006fb\u006a\u0065\u0063\u0074"); -};if _eedf .Len ()==0{return NewRawEncoder (),nil ;};if _eedf .Len ()!=1{_aeaae ,_ebab :=_gbae (streamObj );if _ebab !=nil {_ecd .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0063\u0072\u0065\u0061\u0074\u0069\u006e\u0067\u0020\u006d\u0075\u006c\u0074i\u0020\u0065\u006e\u0063\u006f\u0064\u0065r\u003a\u0020\u0025\u0076",_ebab ); -return nil ,_ebab ;};_ecd .Log .Trace ("\u004d\u0075\u006c\u0074\u0069\u0020\u0065\u006e\u0063:\u0020\u0025\u0073\u000a",_aeaae );return _aeaae ,nil ;};_ccdc =_eedf .Get (0);_dbbgb ,_eagef =_ccdc .(*PdfObjectName );if !_eagef {return nil ,_daa .Errorf ("\u0066\u0069l\u0074\u0065\u0072\u0020a\u0072\u0072a\u0079\u0020\u006d\u0065\u006d\u0062\u0065\u0072 \u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006fb\u006a\u0065\u0063\u0074"); -};};if _eggad ,_fcgc :=_dgff .Load (_dbbgb .String ());_fcgc {return _eggad .(StreamEncoder ),nil ;};switch *_dbbgb {case StreamEncodingFilterNameFlate :return _dfg (streamObj ,nil );case StreamEncodingFilterNameLZW :return _dacdg (streamObj ,nil );case StreamEncodingFilterNameDCT :return _efea (streamObj ,nil ); -case StreamEncodingFilterNameRunLength :return _ecfa (streamObj ,nil );case StreamEncodingFilterNameASCIIHex :return NewASCIIHexEncoder (),nil ;case StreamEncodingFilterNameASCII85 ,"\u0041\u0038\u0035":return NewASCII85Encoder (),nil ;case StreamEncodingFilterNameCCITTFax :return _cfe (streamObj ,nil ); -case StreamEncodingFilterNameJBIG2 :return _cccg (streamObj ,nil );case StreamEncodingFilterNameJPX :return NewJPXEncoder (),nil ;};_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064\u0020\u0065\u006e\u0063o\u0064\u0069\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006fd\u0021"); -return nil ,_daa .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065\u006e\u0063o\u0064i\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u0020\u0028\u0025\u0073\u0029",*_dbbgb );}; +// NewParserFromString is used for testing purposes. +func NewParserFromString (txt string )*PdfParser {_gfda :=_fd .NewReader ([]byte (txt ));_ggfbb :=&PdfParser {ObjCache :objectCache {},_dfcdg :_gfda ,_ffbg :_bfc .NewReader (_gfda ),_fbaaa :int64 (len (txt )),_ffed :map[int64 ]bool {},_beaf :make (map[*PdfParser ]*PdfParser )}; +_ggfbb ._bbdf .ObjectMap =make (map[int ]XrefObject );return _ggfbb ;}; -// ASCII85Encoder implements ASCII85 encoder/decoder. -type ASCII85Encoder struct{};func _agf (_ddae _bc .Filter ,_bcae _fg .AuthEvent )*PdfObjectDictionary {if _bcae ==""{_bcae =_fg .EventDocOpen ;};_ccc :=MakeDict ();_ccc .Set ("\u0054\u0079\u0070\u0065",MakeName ("C\u0072\u0079\u0070\u0074\u0046\u0069\u006c\u0074\u0065\u0072")); -_ccc .Set ("\u0041u\u0074\u0068\u0045\u0076\u0065\u006et",MakeName (string (_bcae )));_ccc .Set ("\u0043\u0046\u004d",MakeName (_ddae .Name ()));_ccc .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (_ddae .KeyLength ())));return _ccc ;}; +// MakeHexString creates an PdfObjectString from a string intended for output as a hexadecimal string. +func MakeHexString (s string )*PdfObjectString {_fdbfa :=PdfObjectString {_aaca :s ,_gead :true };return &_fdbfa ;};func (_dbga *PdfParser )readComment ()(string ,error ){var _dcbe _fd .Buffer ;_ ,_fbf :=_dbga .skipSpaces ();if _fbf !=nil {return _dcbe .String (),_fbf ; +};_baeba :=true ;for {_eecg ,_fccg :=_dbga ._ffbg .Peek (1);if _fccg !=nil {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_fccg .Error ());return _dcbe .String (),_fccg ;};if _baeba &&_eecg [0]!='%'{return _dcbe .String (),_c .New ("c\u006f\u006d\u006d\u0065\u006e\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0073\u0074a\u0072\u0074\u0020w\u0069t\u0068\u0020\u0025"); +};_baeba =false ;if (_eecg [0]!='\r')&&(_eecg [0]!='\n'){_gbbc ,_ :=_dbga ._ffbg .ReadByte ();_dcbe .WriteByte (_gbbc );}else {break ;};};return _dcbe .String (),nil ;}; +// MakeDecodeParams makes a new instance of an encoding dictionary based on +// the current encoder settings. +func (_febb *ASCII85Encoder )MakeDecodeParams ()PdfObject {return nil }; -// Remove removes an element specified by key. -func (_ebff *PdfObjectDictionary )Remove (key PdfObjectName ){_ebage :=-1;for _bgcec ,_gdab :=range _ebff ._aeea {if _gdab ==key {_ebage =_bgcec ;break ;};};if _ebage >=0{_ebff ._aeea =append (_ebff ._aeea [:_ebage ],_ebff ._aeea [_ebage +1:]...);delete (_ebff ._dbce ,key ); -};};const JB2ImageAutoThreshold =-1.0; +// PdfObjectName represents the primitive PDF name object. +type PdfObjectName string ; -// GetEncryptObj returns the PdfIndirectObject which has information about the PDFs encryption details. -func (_dbeb *PdfParser )GetEncryptObj ()*PdfIndirectObject {return _dbeb ._ggggc }; +// DecodeStream implements ASCII85 stream decoding. +func (_ebade *ASCII85Encoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){return _ebade .DecodeBytes (streamObj .Stream );};var _cac =_ce .MustCompile ("\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u0028\u005c\u0064\u002b)\u005c\u0073\u002a\u0024"); +var _dbef =_ce .MustCompile ("\u0025P\u0044F\u002d\u0028\u005c\u0064\u0029\u005c\u002e\u0028\u005c\u0064\u0029");func (_dadf *PdfCrypt )isDecrypted (_bagd PdfObject )bool {_ ,_adbd :=_dadf ._ecee [_bagd ];if _adbd {_a .Log .Trace ("\u0041\u006c\u0072\u0065\u0061\u0064\u0079\u0020\u0064\u0065\u0063\u0072y\u0070\u0074\u0065\u0064"); +return true ;};switch _dcb :=_bagd .(type ){case *PdfObjectStream :if _dadf ._aec .R !=5{if _gacb ,_dga :=_dcb .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName );_dga &&*_gacb =="\u0058\u0052\u0065\u0066"{return true ;};};case *PdfIndirectObject :if _ ,_adbd =_dadf ._cdda [int (_dcb .ObjectNumber )]; +_adbd {return true ;};switch _dccd :=_dcb .PdfObject .(type ){case *PdfObjectDictionary :_eae :=true ;for _ ,_fae :=range _aeec {if _dccd .Get (_fae )==nil {_eae =false ;break ;};};if _eae {return true ;};};};_a .Log .Trace ("\u004e\u006f\u0074\u0020\u0064\u0065\u0063\u0072\u0079\u0070\u0074\u0065d\u0020\u0079\u0065\u0074"); +return false ;}; -// GoImageToJBIG2 creates a binary image on the base of 'i' golang image.Image. -// If the image is not a black/white image then the function converts provided input into -// JBIG2Image with 1bpp. For non grayscale images the function performs the conversion to the grayscale temp image. -// Then it checks the value of the gray image value if it's within bounds of the black white threshold. -// This 'bwThreshold' value should be in range (0.0, 1.0). The threshold checks if the grayscale pixel (uint) value -// is greater or smaller than 'bwThreshold' * 255. Pixels inside the range will be white, and the others will be black. -// If the 'bwThreshold' is equal to -1.0 - JB2ImageAutoThreshold then it's value would be set on the base of -// it's histogram using Triangle method. For more information go to: -// https://www.mathworks.com/matlabcentral/fileexchange/28047-gray-image-thresholding-using-the-triangle-method -func GoImageToJBIG2 (i _ac .Image ,bwThreshold float64 )(*JBIG2Image ,error ){const _bdbd ="\u0047\u006f\u0049\u006d\u0061\u0067\u0065\u0054\u006fJ\u0042\u0049\u0047\u0032";if i ==nil {return nil ,_cd .Error (_bdbd ,"i\u006d\u0061\u0067\u0065 '\u0069'\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064"); -};var (_gegb uint8 ;_cccb _fcf .Image ;_ccdf error ;);if bwThreshold ==JB2ImageAutoThreshold {_cccb ,_ccdf =_fcf .MonochromeConverter .Convert (i );}else if bwThreshold > 1.0||bwThreshold < 0.0{return nil ,_cd .Error (_bdbd ,"p\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0074h\u0072\u0065\u0073\u0068\u006f\u006c\u0064 i\u0073\u0020\u006e\u006ft\u0020\u0069\u006e\u0020\u0061\u0020\u0072\u0061\u006ege\u0020\u007b0\u002e\u0030\u002c\u0020\u0031\u002e\u0030\u007d"); -}else {_gegb =uint8 (255*bwThreshold );_cccb ,_ccdf =_fcf .MonochromeThresholdConverter (_gegb ).Convert (i );};if _ccdf !=nil {return nil ,_ccdf ;};return _cfbbgc (_cccb ),nil ;}; +// Append appends PdfObject(s) to the streams. +func (_dadgcc *PdfObjectStreams )Append (objects ...PdfObject ){if _dadgcc ==nil {_a .Log .Debug ("\u0057\u0061\u0072\u006e\u0020-\u0020\u0041\u0074\u0074\u0065\u006d\u0070\u0074\u0020\u0074\u006f\u0020\u0061p\u0070\u0065\u006e\u0064\u0020\u0074\u006f\u0020\u0061\u0020\u006e\u0069\u006c\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0073"); +return ;};_dadgcc ._cegef =append (_dadgcc ._cegef ,objects ...);}; -// GetFilterArray returns the names of the underlying encoding filters in an array that -// can be used as /Filter entry. -func (_afb *MultiEncoder )GetFilterArray ()*PdfObjectArray {_cfce :=make ([]PdfObject ,len (_afb ._degb ));for _bbfaa ,_cefd :=range _afb ._degb {_cfce [_bbfaa ]=MakeName (_cefd .GetFilterName ());};return MakeArray (_cfce ...);}; +// GetXrefOffset returns the offset of the xref table. +func (_ddgbg *PdfParser )GetXrefOffset ()int64 {return _ddgbg ._caed }; -// EncryptInfo contains an information generated by the document encrypter. -type EncryptInfo struct{Version ; +// GetNumberAsInt64 returns the contents of `obj` as an int64 if it is an integer or float, or an +// error if it isn't. This is for cases where expecting an integer, but some implementations +// actually store the number in a floating point format. +func GetNumberAsInt64 (obj PdfObject )(int64 ,error ){switch _fadgge :=obj .(type ){case *PdfObjectFloat :_a .Log .Debug ("\u004e\u0075m\u0062\u0065\u0072\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u0073\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0077\u0061s\u0020\u0073\u0074\u006f\u0072\u0065\u0064\u0020\u0061\u0073\u0020\u0066\u006c\u006fa\u0074\u0020(\u0074\u0079\u0070\u0065 \u0063\u0061\u0073\u0074\u0069n\u0067\u0020\u0075\u0073\u0065\u0064\u0029"); +return int64 (*_fadgge ),nil ;case *PdfObjectInteger :return int64 (*_fadgge ),nil ;case *PdfObjectReference :_fbbfg :=TraceToDirectObject (obj );return GetNumberAsInt64 (_fbbfg );case *PdfIndirectObject :return GetNumberAsInt64 (_fadgge .PdfObject );}; +return 0,ErrNotANumber ;}; -// Encrypt is an encryption dictionary that contains all necessary parameters. -// It should be stored in all copies of the document trailer. -Encrypt *PdfObjectDictionary ; +// PdfObjectNull represents the primitive PDF null object. +type PdfObjectNull struct{};func (_fbcd *offsetReader )Seek (offset int64 ,whence int )(int64 ,error ){if whence ==_fg .SeekStart {offset +=_fbcd ._fegd ;};_bagb ,_gaaga :=_fbcd ._gfgc .Seek (offset ,whence );if _gaaga !=nil {return _bagb ,_gaaga ;};if whence ==_fg .SeekCurrent {_bagb -=_fbcd ._fegd ; +};if _bagb < 0{return 0,_c .New ("\u0063\u006f\u0072\u0065\u002eo\u0066\u0066\u0073\u0065\u0074\u0052\u0065\u0061\u0064\u0065\u0072\u002e\u0053e\u0065\u006b\u003a\u0020\u006e\u0065\u0067\u0061\u0074\u0069\u0076\u0065\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e"); +};return _bagb ,nil ;}; -// ID0 and ID1 are IDs used in the trailer. Older algorithms such as RC4 uses them for encryption. -ID0 ,ID1 string ;}; +// EncodeBytes encodes slice of bytes into JBIG2 encoding format. +// The input 'data' must be an image. In order to Decode it a user is responsible to +// load the codec ('png', 'jpg'). +// Returns jbig2 single page encoded document byte slice. The encoder uses DefaultPageSettings +// to encode given image. +func (_agad *JBIG2Encoder )EncodeBytes (data []byte )([]byte ,error ){const _gagbd ="\u004aB\u0049\u0047\u0032\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u002eE\u006e\u0063\u006f\u0064\u0065\u0042\u0079\u0074\u0065\u0073";if _agad .ColorComponents !=1||_agad .BitsPerComponent !=1{return nil ,_dd .Errorf (_gagbd ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u002e\u0020\u004a\u0042\u0049G\u0032\u0020E\u006e\u0063o\u0064\u0065\u0072\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020bi\u006e\u0061\u0072\u0079\u0020\u0069\u006d\u0061\u0067e\u0073\u0020\u0064\u0061\u0074\u0061"); +};var (_efdgf *_ef .Bitmap ;_bga error ;);_adce :=(_agad .Width *_agad .Height )==len (data );if _adce {_efdgf ,_bga =_ef .NewWithUnpaddedData (_agad .Width ,_agad .Height ,data );}else {_efdgf ,_bga =_ef .NewWithData (_agad .Width ,_agad .Height ,data ); +};if _bga !=nil {return nil ,_bga ;};_eaeb :=_agad .DefaultPageSettings ;if _bga =_eaeb .Validate ();_bga !=nil {return nil ,_dd .Wrap (_bga ,_gagbd ,"");};if _agad ._feg ==nil {_agad ._feg =_de .InitEncodeDocument (_eaeb .FileMode );};switch _eaeb .Compression {case JB2Generic :if _bga =_agad ._feg .AddGenericPage (_efdgf ,_eaeb .DuplicatedLinesRemoval ); +_bga !=nil {return nil ,_dd .Wrap (_bga ,_gagbd ,"");};case JB2SymbolCorrelation :return nil ,_dd .Error (_gagbd ,"s\u0079\u006d\u0062\u006f\u006c\u0020\u0063\u006f\u0072r\u0065\u006c\u0061\u0074\u0069\u006f\u006e e\u006e\u0063\u006f\u0064i\u006e\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006dpl\u0065\u006de\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); +case JB2SymbolRankHaus :return nil ,_dd .Error (_gagbd ,"\u0073y\u006d\u0062o\u006c\u0020\u0072a\u006e\u006b\u0020\u0068\u0061\u0075\u0073 \u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0020\u006e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065m\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074"); +default:return nil ,_dd .Error (_gagbd ,"\u0070\u0072\u006f\u0076i\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020c\u006f\u006d\u0070\u0072\u0065\u0073\u0073i\u006f\u006e");};return _agad .Encode ();}; -// MakeBool creates a PdfObjectBool from a bool value. -func MakeBool (val bool )*PdfObjectBool {_adfa :=PdfObjectBool (val );return &_adfa };var _adcf =_fc .MustCompile ("\u005e\u005b\\\u002b\u002d\u002e\u005d*\u0028\u005b0\u002d\u0039\u002e\u005d\u002b\u0029\u005b\u0065E\u005d\u005b\u005c\u002b\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d9\u002e\u005d\u002b\u0029"); +// EncodeBytes encodes the image data using either Group3 or Group4 CCITT facsimile (fax) encoding. +// `data` is expected to be 1 color component, 1 bit per component. It is also valid to provide 8 BPC, 1 CC image like +// a standard go image Gray data. +func (_afef *CCITTFaxEncoder )EncodeBytes (data []byte )([]byte ,error ){var _dfeb _be .Gray ;switch len (data ){case _afef .Rows *_afef .Columns :_efge ,_fdaf :=_be .NewImage (_afef .Columns ,_afef .Rows ,8,1,data ,nil ,nil );if _fdaf !=nil {return nil ,_fdaf ; +};_dfeb =_efge .(_be .Gray );case (_afef .Columns *_afef .Rows )+7>>3:_eabg ,_dceg :=_be .NewImage (_afef .Columns ,_afef .Rows ,1,1,data ,nil ,nil );if _dceg !=nil {return nil ,_dceg ;};_gcgd :=_eabg .(*_be .Monochrome );if _dceg =_gcgd .AddPadding (); +_dceg !=nil {return nil ,_dceg ;};_dfeb =_gcgd ;default:if len (data )< _be .BytesPerLine (_afef .Columns ,1,1)*_afef .Rows {return nil ,_c .New ("p\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020i\u006e\u0070\u0075t\u0020d\u0061\u0074\u0061"); +};_gfbg ,_fbd :=_be .NewImage (_afef .Columns ,_afef .Rows ,1,1,data ,nil ,nil );if _fbd !=nil {return nil ,_fbd ;};_gccc :=_gfbg .(*_be .Monochrome );_dfeb =_gccc ;};_cdgc :=make ([][]byte ,_afef .Rows );for _cdege :=0;_cdege < _afef .Rows ;_cdege ++{_badg :=make ([]byte ,_afef .Columns ); +for _accfb :=0;_accfb < _afef .Columns ;_accfb ++{_adag :=_dfeb .GrayAt (_accfb ,_cdege );_badg [_accfb ]=_adag .Y >>7;};_cdgc [_cdege ]=_badg ;};_gbf :=&_gfa .Encoder {K :_afef .K ,Columns :_afef .Columns ,EndOfLine :_afef .EndOfLine ,EndOfBlock :_afef .EndOfBlock ,BlackIs1 :_afef .BlackIs1 ,DamagedRowsBeforeError :_afef .DamagedRowsBeforeError ,Rows :_afef .Rows ,EncodedByteAlign :_afef .EncodedByteAlign }; +return _gbf .Encode (_cdgc ),nil ;}; +// String returns a string representation of `name`. +func (_gace *PdfObjectName )String ()string {return string (*_gace )};const (StreamEncodingFilterNameFlate ="F\u006c\u0061\u0074\u0065\u0044\u0065\u0063\u006f\u0064\u0065";StreamEncodingFilterNameLZW ="\u004cZ\u0057\u0044\u0065\u0063\u006f\u0064e";StreamEncodingFilterNameDCT ="\u0044C\u0054\u0044\u0065\u0063\u006f\u0064e"; +StreamEncodingFilterNameRunLength ="\u0052u\u006eL\u0065\u006e\u0067\u0074\u0068\u0044\u0065\u0063\u006f\u0064\u0065";StreamEncodingFilterNameASCIIHex ="\u0041\u0053\u0043\u0049\u0049\u0048\u0065\u0078\u0044e\u0063\u006f\u0064\u0065";StreamEncodingFilterNameASCII85 ="\u0041\u0053\u0043\u0049\u0049\u0038\u0035\u0044\u0065\u0063\u006f\u0064\u0065"; +StreamEncodingFilterNameCCITTFax ="\u0043\u0043\u0049\u0054\u0054\u0046\u0061\u0078\u0044e\u0063\u006f\u0064\u0065";StreamEncodingFilterNameJBIG2 ="J\u0042\u0049\u0047\u0032\u0044\u0065\u0063\u006f\u0064\u0065";StreamEncodingFilterNameJPX ="\u004aP\u0058\u0044\u0065\u0063\u006f\u0064e"; +StreamEncodingFilterNameRaw ="\u0052\u0061\u0077";); -// DecodeStream decodes a JPX encoded stream and returns the result as a -// slice of bytes. -func (_bbdd *JPXEncoder )DecodeStream (streamObj *PdfObjectStream )([]byte ,error ){_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0041t\u0074\u0065\u006dpt\u0069\u006e\u0067\u0020\u0074\u006f \u0075\u0073\u0065\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0073",_bbdd .GetFilterName ()); -return streamObj .Stream ,ErrNoJPXDecode ;};func (_bddda *PdfParser )parseName ()(PdfObjectName ,error ){var _dcebg _fb .Buffer ;_bbaaa :=false ;for {_aagb ,_deag :=_bddda ._affd .Peek (1);if _deag ==_ae .EOF {break ;};if _deag !=nil {return PdfObjectName (_dcebg .String ()),_deag ; -};if !_bbaaa {if _aagb [0]=='/'{_bbaaa =true ;_bddda ._affd .ReadByte ();}else if _aagb [0]=='%'{_bddda .readComment ();_bddda .skipSpaces ();}else {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020N\u0061\u006d\u0065\u0020\u0073\u0074\u0061\u0072\u0074\u0069\u006e\u0067\u0020w\u0069\u0074\u0068\u0020\u0025\u0073\u0020(\u0025\u0020\u0078\u0029",_aagb ,_aagb ); -return PdfObjectName (_dcebg .String ()),_daa .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_aagb [0]);};}else {if IsWhiteSpace (_aagb [0]){break ;}else if (_aagb [0]=='/')||(_aagb [0]=='[')||(_aagb [0]=='(')||(_aagb [0]==']')||(_aagb [0]=='<')||(_aagb [0]=='>'){break ; -}else if _aagb [0]=='#'{_dfcc ,_babbg :=_bddda ._affd .Peek (3);if _babbg !=nil {return PdfObjectName (_dcebg .String ()),_babbg ;};_deea ,_babbg :=_dc .DecodeString (string (_dfcc [1:3]));if _babbg !=nil {_ecd .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0049\u006ev\u0061\u006c\u0069d\u0020\u0068\u0065\u0078\u0020\u0066o\u006c\u006co\u0077\u0069\u006e\u0067 \u0027\u0023\u0027\u002c \u0063\u006f\u006e\u0074\u0069n\u0075\u0069\u006e\u0067\u0020\u0075\u0073i\u006e\u0067\u0020\u006c\u0069t\u0065\u0072\u0061\u006c\u0020\u002d\u0020\u004f\u0075t\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074"); -_dcebg .WriteByte ('#');_bddda ._affd .Discard (1);continue ;};_bddda ._affd .Discard (3);_dcebg .Write (_deea );}else {_cgcfa ,_ :=_bddda ._affd .ReadByte ();_dcebg .WriteByte (_cgcfa );};};};return PdfObjectName (_dcebg .String ()),nil ;};var _gegg =_fc .MustCompile ("\u0028\u005c\u0064\u002b)\\\u0073\u002b\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u006f\u0062\u006a"); +// FlateEncoder represents Flate encoding. +type FlateEncoder struct{Predictor int ;BitsPerComponent int ; +// For predictors +Columns int ;Rows int ;Colors int ;_dagc *_be .ImageBase ;}; -// MakeStreamDict make a new instance of an encoding dictionary for a stream object. -func (_gfdg *ASCII85Encoder )MakeStreamDict ()*PdfObjectDictionary {_egab :=MakeDict ();_egab .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_gfdg .GetFilterName ()));return _egab ;};func _gcdaa (_abegc string )(PdfObjectReference ,error ){_cccgf :=PdfObjectReference {}; -_ecgcf :=_becgf .FindStringSubmatch (_abegc );if len (_ecgcf )< 3{_ecd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065");return _cccgf ,_f .New ("\u0075n\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0070\u0061r\u0073e\u0020r\u0065\u0066\u0065\u0072\u0065\u006e\u0063e"); -};_daff ,_ :=_bf .Atoi (_ecgcf [1]);_ccfb ,_ :=_bf .Atoi (_ecgcf [2]);_cccgf .ObjectNumber =int64 (_daff );_cccgf .GenerationNumber =int64 (_ccfb );return _cccgf ,nil ;}; +// AddEncoder adds the passed in encoder to the underlying encoder slice. +func (_cgaf *MultiEncoder )AddEncoder (encoder StreamEncoder ){_cgaf ._bdfb =append (_cgaf ._bdfb ,encoder );}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_bbea *MultiEncoder )MakeStreamDict ()*PdfObjectDictionary {_dggd :=MakeDict ();_dggd .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",_bbea .GetFilterArray ());for _ ,_fafc :=range _bbea ._degb {_fge :=_fafc .MakeStreamDict ();for _ ,_ccbbg :=range _fge .Keys (){_caef :=_fge .Get (_ccbbg ); -if _ccbbg !="\u0046\u0069\u006c\u0074\u0065\u0072"&&_ccbbg !="D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073"{_dggd .Set (_ccbbg ,_caef );};};};_dded :=_bbea .MakeDecodeParams ();if _dded !=nil {_dggd .Set ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_dded ); -};return _dggd ;}; +// GetBoolVal returns the bool value within a *PdObjectBool represented by an PdfObject interface directly or indirectly. +// If the PdfObject does not represent a bool value, a default value of false is returned (found = false also). +func GetBoolVal (obj PdfObject )(_aacf bool ,_cgfg bool ){_cfgd ,_cgfg :=TraceToDirectObject (obj ).(*PdfObjectBool );if _cgfg {return bool (*_cfgd ),true ;};return false ,false ;};func _dbaeec (_edgaf _fg .ReadSeeker ,_egfd int64 )(*offsetReader ,error ){_cdbc :=&offsetReader {_gfgc :_edgaf ,_fegd :_egfd }; +_ ,_cbcc :=_cdbc .Seek (0,_fg .SeekStart );return _cdbc ,_cbcc ;}; -// HasDataAfterEOF checks if there is some data after EOF marker. -func (_ceed ParserMetadata )HasDataAfterEOF ()bool {return _ceed ._bgg }; +// Encrypt an object with specified key. For numbered objects, +// the key argument is not used and a new one is generated based +// on the object and generation number. +// Traverses through all the subobjects (recursive). +// +// Does not look up references.. That should be done prior to calling. +func (_fccc *PdfCrypt )Encrypt (obj PdfObject ,parentObjNum ,parentGenNum int64 )error {if _fccc .isEncrypted (obj ){return nil ;};switch _baed :=obj .(type ){case *PdfIndirectObject :_fccc ._fee [_baed ]=true ;_a .Log .Trace ("\u0045\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006e\u0067 \u0069\u006e\u0064\u0069\u0072\u0065\u0063t\u0020\u0025\u0064\u0020\u0025\u0064\u0020\u006f\u0062\u006a\u0021",_baed .ObjectNumber ,_baed .GenerationNumber ); +_cfg :=_baed .ObjectNumber ;_dae :=_baed .GenerationNumber ;_bdbf :=_fccc .Encrypt (_baed .PdfObject ,_cfg ,_dae );if _bdbf !=nil {return _bdbf ;};return nil ;case *PdfObjectStream :_fccc ._fee [_baed ]=true ;_adda :=_baed .PdfObjectDictionary ;if _ebd ,_efaa :=_adda .Get ("\u0054\u0079\u0070\u0065").(*PdfObjectName ); +_efaa &&*_ebd =="\u0058\u0052\u0065\u0066"{return nil ;};_aga :=_baed .ObjectNumber ;_fbaa :=_baed .GenerationNumber ;_a .Log .Trace ("\u0045n\u0063\u0072\u0079\u0070t\u0069\u006e\u0067\u0020\u0073t\u0072e\u0061m\u0020\u0025\u0064\u0020\u0025\u0064\u0020!",_aga ,_fbaa ); +_bgf :=_edg ;if _fccc ._ceae .V >=4{_bgf =_fccc ._abdf ;_a .Log .Trace ("\u0074\u0068\u0069\u0073.s\u0074\u0072\u0065\u0061\u006d\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u003d\u0020%\u0073",_fccc ._abdf );if _efcf ,_acc :=_adda .Get ("\u0046\u0069\u006c\u0074\u0065\u0072").(*PdfObjectArray ); +_acc {if _bdgg ,_eadc :=GetName (_efcf .Get (0));_eadc {if *_bdgg =="\u0043\u0072\u0079p\u0074"{_bgf ="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079";if _gacdg ,_fgcd :=_adda .Get ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073").(*PdfObjectDictionary ); +_fgcd {if _edef ,_daf :=_gacdg .Get ("\u004e\u0061\u006d\u0065").(*PdfObjectName );_daf {if _ ,_gdg :=_fccc ._deg [string (*_edef )];_gdg {_a .Log .Trace ("\u0055\u0073\u0069\u006eg \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020%\u0073",*_edef ); +_bgf =string (*_edef );};};};};};};_a .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_bgf );if _bgf =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};};_agg :=_fccc .Encrypt (_baed .PdfObjectDictionary ,_aga ,_fbaa ); +if _agg !=nil {return _agg ;};_dgd ,_agg :=_fccc .makeKey (_bgf ,uint32 (_aga ),uint32 (_fbaa ),_fccc ._baa );if _agg !=nil {return _agg ;};_baed .Stream ,_agg =_fccc .encryptBytes (_baed .Stream ,_bgf ,_dgd );if _agg !=nil {return _agg ;};_adda .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_baed .Stream )))); +return nil ;case *PdfObjectString :_a .Log .Trace ("\u0045n\u0063r\u0079\u0070\u0074\u0069\u006eg\u0020\u0073t\u0072\u0069\u006e\u0067\u0021");_acf :=_edg ;if _fccc ._ceae .V >=4{_a .Log .Trace ("\u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0066i\u006c\u0074\u0065\u0072",_fccc ._dfb ); +if _fccc ._dfb =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"{return nil ;};_acf =_fccc ._dfb ;};_eba ,_aef :=_fccc .makeKey (_acf ,uint32 (parentObjNum ),uint32 (parentGenNum ),_fccc ._baa );if _aef !=nil {return _aef ;};_dbg :=_baed .Str ();_adc :=make ([]byte ,len (_dbg )); +for _dfea :=0;_dfea < len (_dbg );_dfea ++{_adc [_dfea ]=_dbg [_dfea ];};_a .Log .Trace ("\u0045n\u0063\u0072\u0079\u0070\u0074\u0020\u0073\u0074\u0072\u0069\u006eg\u003a\u0020\u0025\u0073\u0020\u003a\u0020\u0025\u0020\u0078",_adc ,_adc );_adc ,_aef =_fccc .encryptBytes (_adc ,_acf ,_eba ); +if _aef !=nil {return _aef ;};_baed ._aaca =string (_adc );return nil ;case *PdfObjectArray :for _ ,_deee :=range _baed .Elements (){_egac :=_fccc .Encrypt (_deee ,parentObjNum ,parentGenNum );if _egac !=nil {return _egac ;};};return nil ;case *PdfObjectDictionary :_af :=false ; +if _ceef :=_baed .Get ("\u0054\u0079\u0070\u0065");_ceef !=nil {_fbaf ,_efe :=_ceef .(*PdfObjectName );if _efe &&*_fbaf =="\u0053\u0069\u0067"{_af =true ;};};for _ ,_dcg :=range _baed .Keys (){_aaf :=_baed .Get (_dcg );if _af &&string (_dcg )=="\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"{continue ; +};if string (_dcg )!="\u0050\u0061\u0072\u0065\u006e\u0074"&&string (_dcg )!="\u0050\u0072\u0065\u0076"&&string (_dcg )!="\u004c\u0061\u0073\u0074"{_ceb :=_fccc .Encrypt (_aaf ,parentObjNum ,parentGenNum );if _ceb !=nil {return _ceb ;};};};return nil ; +};return nil ;}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_bccaf *JPXEncoder )MakeDecodeParams ()PdfObject {return nil };func (_fbdd *PdfParser )repairLocateXref ()(int64 ,error ){_dgbc :=int64 (1000);_fbdd ._ccgbe .Seek (-_dgbc ,_ae .SeekCurrent );_bcda ,_ebffc :=_fbdd ._ccgbe .Seek (0,_ae .SeekCurrent ); -if _ebffc !=nil {return 0,_ebffc ;};_dcbg :=make ([]byte ,_dgbc );_fbdd ._ccgbe .Read (_dcbg );_effe :=_edcdb .FindAllStringIndex (string (_dcbg ),-1);if len (_effe )< 1{_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0052\u0065\u0070a\u0069\u0072\u003a\u0020\u0078\u0072\u0065f\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021"); -return 0,_f .New ("\u0072\u0065\u0070\u0061ir\u003a\u0020\u0078\u0072\u0065\u0066\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064");};_bfab :=int64 (_effe [len (_effe )-1][0]);_bgeb :=_bcda +_bfab ;return _bgeb ,nil ;}; +// PdfParser parses a PDF file and provides access to the object structure of the PDF. +type PdfParser struct{_eebec Version ;_dfcdg _fg .ReadSeeker ;_ffbg *_bfc .Reader ;_fbaaa int64 ;_bbdf XrefTable ;_caed int64 ;_fddf *xrefType ;_fcba objectStreams ;_dabde *PdfObjectDictionary ;_abae *PdfCrypt ;_fafd *PdfIndirectObject ;_cged bool ;ObjCache objectCache ; +_eeaa map[int ]bool ;_ffed map[int64 ]bool ;_gadge ParserMetadata ;_ecgd bool ;_fbaae []int64 ;_efce int ;_dgcba bool ;_baac int64 ;_beaf map[*PdfParser ]*PdfParser ;_gfdfd []*PdfParser ;}; -// PdfObjectBool represents the primitive PDF boolean object. -type PdfObjectBool bool ; +// GetFilterArray returns the names of the underlying encoding filters in an array that +// can be used as /Filter entry. +func (_fgeef *MultiEncoder )GetFilterArray ()*PdfObjectArray {_efab :=make ([]PdfObject ,len (_fgeef ._bdfb ));for _bdde ,_daa :=range _fgeef ._bdfb {_efab [_bdde ]=MakeName (_daa .GetFilterName ());};return MakeArray (_efab ...);}; -// DecodeBytes decodes a slice of JBIG2 encoded bytes and returns the results. -func (_gge *JBIG2Encoder )DecodeBytes (encoded []byte )([]byte ,error ){return _eb .DecodeBytes (encoded ,_ag .Parameters {},_gge .Globals );}; +// GetCrypter returns the PdfCrypt instance which has information about the PDFs encryption. +func (_ggag *PdfParser )GetCrypter ()*PdfCrypt {return _ggag ._abae }; -// UpdateParams updates the parameter values of the encoder. -func (_agdg *RunLengthEncoder )UpdateParams (params *PdfObjectDictionary ){};const (XrefTypeTableEntry xrefType =iota ;XrefTypeObjectStream xrefType =iota ;); +// TraceToDirectObject traces a PdfObject to a direct object. For example direct objects contained +// in indirect objects (can be double referenced even). +func TraceToDirectObject (obj PdfObject )PdfObject {if _dfbcaf ,_ggeb :=obj .(*PdfObjectReference );_ggeb {obj =_dfbcaf .Resolve ();};_fccff ,_efeg :=obj .(*PdfIndirectObject );_egaec :=0;for _efeg {obj =_fccff .PdfObject ;_fccff ,_efeg =GetIndirect (obj ); +_egaec ++;if _egaec > _ddfg {_a .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0072\u0061\u0063\u0065\u0020\u0064\u0065p\u0074\u0068\u0020\u006c\u0065\u0076\u0065\u006c\u0020\u0062\u0065\u0079\u006fn\u0064\u0020\u0025\u0064\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0067oi\u006e\u0067\u0020\u0064\u0065\u0065\u0070\u0065\u0072\u0021",_ddfg ); +return nil ;};};return obj ;}; -// MakeObjectStreams creates an PdfObjectStreams from a list of PdfObjects. -func MakeObjectStreams (objects ...PdfObject )*PdfObjectStreams {return &PdfObjectStreams {_gedag :objects };}; +// Inspect analyzes the document object structure. Returns a map of object types (by name) with the instance count +// as value. +func (_ggdde *PdfParser )Inspect ()(map[string ]int ,error ){return _ggdde .inspect ()}; -// HasInvalidSubsectionHeader implements core.ParserMetadata interface. -func (_ebcb ParserMetadata )HasInvalidSubsectionHeader ()bool {return _ebcb ._fefa }; +// Get returns the i-th element of the array or nil if out of bounds (by index). +func (_cedd *PdfObjectArray )Get (i int )PdfObject {if _cedd ==nil ||i >=len (_cedd ._fabc )||i < 0{return nil ;};return _cedd ._fabc [i ];};var _aeec =[]PdfObjectName {"\u0056","\u0052","\u004f","\u0055","\u0050"}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_bgbaf *RunLengthEncoder )MakeStreamDict ()*PdfObjectDictionary {_gfba :=MakeDict ();_gfba .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_bgbaf .GetFilterName ()));return _gfba ;}; +// String returns a string describing `null`. +func (_fcagb *PdfObjectNull )String ()string {return "\u006e\u0075\u006c\u006c"}; -// MakeDecodeParams makes a new instance of an encoding dictionary based on -// the current encoder settings. -func (_dcga *DCTEncoder )MakeDecodeParams ()PdfObject {return nil }; +// EncodeBytes ASCII encodes the passed in slice of bytes. +func (_bbaa *ASCIIHexEncoder )EncodeBytes (data []byte )([]byte ,error ){var _gagb _fd .Buffer ;for _ ,_becc :=range data {_gagb .WriteString (_gf .Sprintf ("\u0025\u002e\u0032X\u0020",_becc ));};_gagb .WriteByte ('>');return _gagb .Bytes (),nil ;}; -// PdfCryptNewDecrypt makes the document crypt handler based on the encryption dictionary -// and trailer dictionary. Returns an error on failure to process. -func PdfCryptNewDecrypt (parser *PdfParser ,ed ,trailer *PdfObjectDictionary )(*PdfCrypt ,error ){_aecf :=&PdfCrypt {_bag :false ,_cgb :make (map[PdfObject ]bool ),_ggf :make (map[PdfObject ]bool ),_abf :make (map[int ]struct{}),_ebec :parser };_cde ,_bbbg :=ed .Get ("\u0046\u0069\u006c\u0074\u0065\u0072").(*PdfObjectName ); -if !_bbbg {_ecd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0043\u0072\u0079\u0070\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079 \u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0046i\u006c\u0074\u0065\u0072\u0020\u0066\u0069\u0065\u006c\u0064\u0021"); -return _aecf ,_f .New ("r\u0065\u0071\u0075\u0069\u0072\u0065d\u0020\u0063\u0072\u0079\u0070\u0074 \u0066\u0069\u0065\u006c\u0064\u0020\u0046i\u006c\u0074\u0065\u0072\u0020\u006d\u0069\u0073\u0073\u0069n\u0067");};if *_cde !="\u0053\u0074\u0061\u006e\u0064\u0061\u0072\u0064"{_ecd .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020(%\u0073\u0029",*_cde ); -return _aecf ,_f .New ("\u0075n\u0073u\u0070\u0070\u006f\u0072\u0074e\u0064\u0020F\u0069\u006c\u0074\u0065\u0072");};_aecf ._dgb .Filter =string (*_cde );if _ced ,_bcce :=ed .Get ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r").(*PdfObjectString );_bcce {_aecf ._dgb .SubFilter =_ced .Str (); -_ecd .Log .Debug ("\u0055s\u0069n\u0067\u0020\u0073\u0075\u0062f\u0069\u006ct\u0065\u0072\u0020\u0025\u0073",_ced );};if L ,_fab :=ed .Get ("\u004c\u0065\u006e\u0067\u0074\u0068").(*PdfObjectInteger );_fab {if (*L %8)!=0{_ecd .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0049\u006ev\u0061\u006c\u0069\u0064\u0020\u0065\u006ec\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u006c\u0065\u006e\u0067\u0074\u0068"); -return _aecf ,_f .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0065\u006e\u0063\u0072y\u0070t\u0069o\u006e\u0020\u006c\u0065\u006e\u0067\u0074h");};_aecf ._dgb .Length =int (*L );}else {_aecf ._dgb .Length =40;};_aecf ._dgb .V =0;if _fae ,_aaf :=ed .Get ("\u0056").(*PdfObjectInteger ); -_aaf {V :=int (*_fae );_aecf ._dgb .V =V ;if V >=1&&V <=2{_aecf ._bgbe =_deac (_aecf ._dgb .Length );}else if V >=4&&V <=5{if _gbce :=_aecf .loadCryptFilters (ed );_gbce !=nil {return _aecf ,_gbce ;};}else {_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065n\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u0061lg\u006f\u0020\u0056 \u003d \u0025\u0064",V ); -return _aecf ,_f .New ("u\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0061\u006cg\u006f\u0072\u0069\u0074\u0068\u006d");};};if _gfc :=_ceca (&_aecf ._af ,ed );_gfc !=nil {return _aecf ,_gfc ;};_bgc :="";if _afe ,_fef :=trailer .Get ("\u0049\u0044").(*PdfObjectArray ); -_fef &&_afe .Len ()>=1{_gcb ,_cab :=GetString (_afe .Get (0));if !_cab {return _aecf ,_f .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0074r\u0061\u0069l\u0065\u0072\u0020\u0049\u0044");};_bgc =_gcb .Str ();}else {_ecd .Log .Debug ("\u0054\u0072ai\u006c\u0065\u0072 \u0049\u0044\u0020\u0061rra\u0079 m\u0069\u0073\u0073\u0069\u006e\u0067\u0020or\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0021"); -};_aecf ._gda =_bgc ;return _aecf ,nil ;}; +// HeaderCommentBytes gets the header comment bytes. +func (_bbc ParserMetadata )HeaderCommentBytes ()[4]byte {return _bbc ._egf }; -// EncodeBytes encodes the passed in slice of bytes by passing it through the -// EncodeBytes method of the underlying encoders. -func (_ggcg *MultiEncoder )EncodeBytes (data []byte )([]byte ,error ){_aded :=data ;var _cegf error ;for _beea :=len (_ggcg ._degb )-1;_beea >=0;_beea --{_efdg :=_ggcg ._degb [_beea ];_aded ,_cegf =_efdg .EncodeBytes (_aded );if _cegf !=nil {return nil ,_cegf ; -};};return _aded ,nil ;}; +// GetStringVal returns the string value represented by the PdfObject directly or indirectly if +// contained within an indirect object. On type mismatch the found bool flag returned is false and +// an empty string is returned. +func GetStringVal (obj PdfObject )(_aaad string ,_fdbga bool ){_gbge ,_fdbga :=TraceToDirectObject (obj ).(*PdfObjectString );if _fdbga {return _gbge .Str (),true ;};return ;}; -// CheckAccessRights checks access rights and permissions for a specified password. If either user/owner password is -// specified, full rights are granted, otherwise the access rights are specified by the Permissions flag. -// -// The bool flag indicates that the user can access and view the file. -// The AccessPermissions shows what access the user has for editing etc. -// An error is returned if there was a problem performing the authentication. -func (_afga *PdfParser )CheckAccessRights (password []byte )(bool ,_fg .Permissions ,error ){if _afga ._geaef ==nil {return true ,_fg .PermOwner ,nil ;};return _afga ._geaef .checkAccessRights (password );}; +// String returns a descriptive information string about the encryption method used. +func (_cga *PdfCrypt )String ()string {if _cga ==nil {return "";};_ega :=_cga ._ceae .Filter +"\u0020\u002d\u0020";if _cga ._ceae .V ==0{_ega +="\u0055\u006e\u0064\u006fcu\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0061\u006c\u0067\u006f\u0072\u0069\u0074h\u006d"; +}else if _cga ._ceae .V ==1{_ega +="\u0052\u0043\u0034:\u0020\u0034\u0030\u0020\u0062\u0069\u0074\u0073";}else if _cga ._ceae .V ==2{_ega +=_gf .Sprintf ("\u0052\u0043\u0034:\u0020\u0025\u0064\u0020\u0062\u0069\u0074\u0073",_cga ._ceae .Length );}else if _cga ._ceae .V ==3{_ega +="U\u006e\u0070\u0075\u0062li\u0073h\u0065\u0064\u0020\u0061\u006cg\u006f\u0072\u0069\u0074\u0068\u006d"; +}else if _cga ._ceae .V >=4{_ega +=_gf .Sprintf ("\u0053\u0074r\u0065\u0061\u006d\u0020f\u0069\u006ct\u0065\u0072\u003a\u0020\u0025\u0073\u0020\u002d \u0053\u0074\u0072\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0074\u0065r\u003a\u0020\u0025\u0073",_cga ._abdf ,_cga ._dfb ); +_ega +="\u003b\u0020C\u0072\u0079\u0070t\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0073\u003a";for _ggfb ,_ge :=range _cga ._deg {_ega +=_gf .Sprintf ("\u0020\u002d\u0020\u0025\u0073\u003a\u0020\u0025\u0073 \u0028\u0025\u0064\u0029",_ggfb ,_ge .Name (),_ge .KeyLength ()); +};};_eeb :=_cga .GetAccessPermissions ();_ega +=_gf .Sprintf ("\u0020\u002d\u0020\u0025\u0023\u0076",_eeb );return _ega ;};func (_aace *PdfParser )parseXref ()(*PdfObjectDictionary ,error ){_aace .skipSpaces ();const _fagb =20;_bggb ,_ :=_aace ._ffbg .Peek (_fagb ); +for _bdggb :=0;_bdggb < 2;_bdggb ++{if _aace ._caed ==0{_aace ._caed =_aace .GetFileOffset ();};if _ebceg .Match (_bggb ){_a .Log .Trace ("\u0078\u0072e\u0066\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u0074\u006f\u0020\u0061\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002e\u0020\u0050\u0072\u006f\u0062\u0061\u0062\u006c\u0079\u0020\u0078\u0072\u0065\u0066\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +_a .Log .Debug ("\u0073t\u0061r\u0074\u0069\u006e\u0067\u0020w\u0069\u0074h\u0020\u0022\u0025\u0073\u0022",string (_bggb ));return _aace .parseXrefStream (nil );};if _cgcd .Match (_bggb ){_a .Log .Trace ("\u0053\u0074\u0061\u006ed\u0061\u0072\u0064\u0020\u0078\u0072\u0065\u0066\u0020\u0073e\u0063t\u0069\u006f\u006e\u0020\u0074\u0061\u0062l\u0065\u0021"); +return _aace .parseXrefTable ();};_cdgf :=_aace .GetFileOffset ();if _aace ._caed ==0{_aace ._caed =_cdgf ;};_aace .SetFileOffset (_cdgf -_fagb );defer _aace .SetFileOffset (_cdgf );_ccfb ,_ :=_aace ._ffbg .Peek (_fagb );_bggb =append (_ccfb ,_bggb ...); +};_a .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006e\u0067\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u0078\u0072\u0065f\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u006fr\u0020\u0073\u0074\u0072\u0065\u0061\u006d.\u0020\u0052\u0065\u0070\u0061i\u0072\u0020\u0061\u0074\u0074e\u006d\u0070\u0074\u0065\u0064\u003a\u0020\u004c\u006f\u006f\u006b\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0065\u0061\u0072\u006c\u0069\u0065\u0073\u0074\u0020x\u0072\u0065\u0066\u0020\u0066\u0072\u006f\u006d\u0020\u0062\u006f\u0074to\u006d\u002e"); +if _addf :=_aace .repairSeekXrefMarker ();_addf !=nil {_a .Log .Debug ("\u0052e\u0070a\u0069\u0072\u0020\u0066\u0061i\u006c\u0065d\u0020\u002d\u0020\u0025\u0076",_addf );return nil ,_addf ;};return _aace .parseXrefTable ();}; -// NewCompliancePdfParser creates a new PdfParser that will parse input reader with the focus on extracting more metadata, which -// might affect performance of the regular PdfParser this function. -func NewCompliancePdfParser (rs _ae .ReadSeeker )(_edfe *PdfParser ,_dbca error ){_edfe =&PdfParser {_ccgbe :rs ,ObjCache :make (objectCache ),_ecegc :map[int64 ]bool {},_adaa :true ,_fcedf :make (map[*PdfParser ]*PdfParser )};if _dbca =_edfe .parseDetailedHeader (); -_dbca !=nil {return nil ,_dbca ;};if _edfe ._gddgc ,_dbca =_edfe .loadXrefs ();_dbca !=nil {_ecd .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020F\u0061\u0069\u006c\u0065d t\u006f l\u006f\u0061\u0064\u0020\u0078\u0072\u0065f \u0074\u0061\u0062\u006c\u0065\u0021\u0020%\u0073",_dbca ); -return nil ,_dbca ;};_ecd .Log .Trace ("T\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0073",_edfe ._gddgc );if len (_edfe ._efdgc .ObjectMap )==0{return nil ,_daa .Errorf ("\u0065\u006d\u0070\u0074\u0079\u0020\u0058\u0052\u0045\u0046\u0020t\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0049\u006e\u0076a\u006c\u0069\u0064"); -};return _edfe ,nil ;};var _dbdd =_fc .MustCompile ("\u005e\u005b\u005c\u002b\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d9\u002e\u005d\u002b\u0029");const (DefaultJPEGQuality =75;); +// HasOddLengthHexStrings checks if the document has odd length hexadecimal strings. +func (_ebag ParserMetadata )HasOddLengthHexStrings ()bool {return _ebag ._gcg };func (_aafb *PdfParser )parseName ()(PdfObjectName ,error ){var _eccbe _fd .Buffer ;_fcca :=false ;for {_efgcb ,_adadb :=_aafb ._ffbg .Peek (1);if _adadb ==_fg .EOF {break ; +};if _adadb !=nil {return PdfObjectName (_eccbe .String ()),_adadb ;};if !_fcca {if _efgcb [0]=='/'{_fcca =true ;_aafb ._ffbg .ReadByte ();}else if _efgcb [0]=='%'{_aafb .readComment ();_aafb .skipSpaces ();}else {_a .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020N\u0061\u006d\u0065\u0020\u0073\u0074\u0061\u0072\u0074\u0069\u006e\u0067\u0020w\u0069\u0074\u0068\u0020\u0025\u0073\u0020(\u0025\u0020\u0078\u0029",_efgcb ,_efgcb ); +return PdfObjectName (_eccbe .String ()),_gf .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_efgcb [0]);};}else {if IsWhiteSpace (_efgcb [0]){break ;}else if (_efgcb [0]=='/')||(_efgcb [0]=='[')||(_efgcb [0]=='(')||(_efgcb [0]==']')||(_efgcb [0]=='<')||(_efgcb [0]=='>'){break ; +}else if _efgcb [0]=='#'{_gbgd ,_gcggb :=_aafb ._ffbg .Peek (3);if _gcggb !=nil {return PdfObjectName (_eccbe .String ()),_gcggb ;};_adge ,_gcggb :=_bdc .DecodeString (string (_gbgd [1:3]));if _gcggb !=nil {_a .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0049\u006ev\u0061\u006c\u0069d\u0020\u0068\u0065\u0078\u0020\u0066o\u006c\u006co\u0077\u0069\u006e\u0067 \u0027\u0023\u0027\u002c \u0063\u006f\u006e\u0074\u0069n\u0075\u0069\u006e\u0067\u0020\u0075\u0073i\u006e\u0067\u0020\u006c\u0069t\u0065\u0072\u0061\u006c\u0020\u002d\u0020\u004f\u0075t\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074"); +_eccbe .WriteByte ('#');_aafb ._ffbg .Discard (1);continue ;};_aafb ._ffbg .Discard (3);_eccbe .Write (_adge );}else {_aefef ,_ :=_aafb ._ffbg .ReadByte ();_eccbe .WriteByte (_aefef );};};};return PdfObjectName (_eccbe .String ()),nil ;}; -// EncodeStream encodes the stream data using the encoded specified by the stream's dictionary. -func EncodeStream (streamObj *PdfObjectStream )error {_ecd .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d");_cgccb ,_febad :=NewEncoderFromStream (streamObj );if _febad !=nil {_ecd .Log .Debug ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0065\u0063\u006fd\u0069\u006e\u0067\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_febad ); -return _febad ;};if _ddad ,_facd :=_cgccb .(*LZWEncoder );_facd {_ddad .EarlyChange =0;streamObj .PdfObjectDictionary .Set ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065",MakeInteger (0));};_ecd .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020\u0025\u002b\u0076\u000a",_cgccb ); -_fece ,_febad :=_cgccb .EncodeBytes (streamObj .Stream );if _febad !=nil {_ecd .Log .Debug ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_febad );return _febad ; -};streamObj .Stream =_fece ;streamObj .PdfObjectDictionary .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",MakeInteger (int64 (len (_fece ))));return nil ;}; +// Get returns the PdfObject corresponding to the specified key. +// Returns a nil value if the key is not set. +func (_aebe *PdfObjectDictionary )Get (key PdfObjectName )PdfObject {_aebe ._ccdg .Lock ();defer _aebe ._ccdg .Unlock ();_eeeac ,_bcbe :=_aebe ._adbeb [key ];if !_bcbe {return nil ;};return _eeeac ;};func (_dfaad *PdfObjectInteger )String ()string {return _gf .Sprintf ("\u0025\u0064",*_dfaad )}; -// Get returns the i-th element of the array or nil if out of bounds (by index). -func (_febc *PdfObjectArray )Get (i int )PdfObject {if _febc ==nil ||i >=len (_febc ._egacc )||i < 0{return nil ;};return _febc ._egacc [i ];}; -// MakeStreamDict makes a new instance of an encoding dictionary for a stream object. -func (_bgec *CCITTFaxEncoder )MakeStreamDict ()*PdfObjectDictionary {_bada :=MakeDict ();_bada .Set ("\u0046\u0069\u006c\u0074\u0065\u0072",MakeName (_bgec .GetFilterName ()));_bada .SetIfNotNil ("D\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u006d\u0073",_bgec .MakeDecodeParams ()); -return _bada ;}; +// PdfObjectStreams represents the primitive PDF object streams. +// 7.5.7 Object Streams (page 45). +type PdfObjectStreams struct{PdfObjectReference ;_cegef []PdfObject ;}; -// HasNonConformantStream implements core.ParserMetadata. -func (_abda ParserMetadata )HasNonConformantStream ()bool {return _abda ._agd }; +// GetAccessPermissions returns the PDF access permissions as an AccessPermissions object. +func (_ebe *PdfCrypt )GetAccessPermissions ()_dc .Permissions {return _ebe ._aec .P }; -// GetAsFloat64Slice returns the array as []float64 slice. -// Returns an error if not entirely numeric (only PdfObjectIntegers, PdfObjectFloats). -func (_gaec *PdfObjectArray )GetAsFloat64Slice ()([]float64 ,error ){var _cbgd []float64 ;for _ ,_ebace :=range _gaec .Elements (){_eecbg ,_abfc :=GetNumberAsFloat (TraceToDirectObject (_ebace ));if _abfc !=nil {return nil ,_daa .Errorf ("\u0061\u0072\u0072\u0061\u0079\u0020\u0065\u006c\u0065\u006d\u0065n\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0075m\u0062\u0065\u0072"); -};_cbgd =append (_cbgd ,_eecbg );};return _cbgd ,nil ;}; +// WriteString outputs the object as it is to be written to file. +func (_abcd *PdfObjectFloat )WriteString ()string {return _bd .FormatFloat (float64 (*_abcd ),'f',-1,64);}; -// GetXrefType returns the type of the first xref object (table or stream). -func (_ddedf *PdfParser )GetXrefType ()*xrefType {return _ddedf ._ceae }; +// Clear resets the array to an empty state. +func (_edcd *PdfObjectArray )Clear (){_edcd ._fabc =[]PdfObject {}}; -// LZWEncoder provides LZW encoding/decoding functionality. -type LZWEncoder struct{Predictor int ;BitsPerComponent int ; +// GetFilterName returns the name of the encoding filter. +func (_gda *FlateEncoder )GetFilterName ()string {return StreamEncodingFilterNameFlate }; -// For predictors -Columns int ;Colors int ; +// HeaderPosition gets the file header position. +func (_ccdc ParserMetadata )HeaderPosition ()int {return _ccdc ._bef }; -// LZW algorithm setting. -EarlyChange int ;}; +// NewMultiEncoder returns a new instance of MultiEncoder. +func NewMultiEncoder ()*MultiEncoder {_aba :=MultiEncoder {};_aba ._bdfb =[]StreamEncoder {};return &_aba ;};var _fafa =_ce .MustCompile ("\u005e\\\u0073\u002a\u005b\u002d]\u002a\u0028\u005c\u0064\u002b)\u005cs\u002b(\u005c\u0064\u002b\u0029\u005c\u0073\u002bR"); -// HasEOLAfterHeader gets information if there is a EOL after the version header. -func (_ecfc ParserMetadata )HasEOLAfterHeader ()bool {return _ecfc ._aceg }; -// GetParser returns the parser for lazy-loading or compare references. -func (_dfcf *PdfObjectReference )GetParser ()*PdfParser {return _dfcf ._ceda }; +// MakeDict creates and returns an empty PdfObjectDictionary. +func MakeDict ()*PdfObjectDictionary {_geefb :=&PdfObjectDictionary {};_geefb ._adbeb =map[PdfObjectName ]PdfObject {};_geefb ._caeg =[]PdfObjectName {};_geefb ._ccdg =&_g .Mutex {};return _geefb ;};func (_fbea *PdfParser )parseString ()(*PdfObjectString ,error ){_fbea ._ffbg .ReadByte (); +var _fede _fd .Buffer ;_bbfda :=1;for {_gbbg ,_aaee :=_fbea ._ffbg .Peek (1);if _aaee !=nil {return MakeString (_fede .String ()),_aaee ;};if _gbbg [0]=='\\'{_fbea ._ffbg .ReadByte ();_addb ,_dfff :=_fbea ._ffbg .ReadByte ();if _dfff !=nil {return MakeString (_fede .String ()),_dfff ; +};if IsOctalDigit (_addb ){_dccf ,_eedg :=_fbea ._ffbg .Peek (2);if _eedg !=nil {return MakeString (_fede .String ()),_eedg ;};var _aagfe []byte ;_aagfe =append (_aagfe ,_addb );for _ ,_dgdd :=range _dccf {if IsOctalDigit (_dgdd ){_aagfe =append (_aagfe ,_dgdd ); +}else {break ;};};_fbea ._ffbg .Discard (len (_aagfe )-1);_a .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_aagfe );_dgab ,_eedg :=_bd .ParseUint (string (_aagfe ),8,32);if _eedg !=nil {return MakeString (_fede .String ()),_eedg ; +};_fede .WriteByte (byte (_dgab ));continue ;};switch _addb {case 'n':_fede .WriteRune ('\n');case 'r':_fede .WriteRune ('\r');case 't':_fede .WriteRune ('\t');case 'b':_fede .WriteRune ('\b');case 'f':_fede .WriteRune ('\f');case '(':_fede .WriteRune ('('); +case ')':_fede .WriteRune (')');case '\\':_fede .WriteRune ('\\');};continue ;}else if _gbbg [0]=='('{_bbfda ++;}else if _gbbg [0]==')'{_bbfda --;if _bbfda ==0{_fbea ._ffbg .ReadByte ();break ;};};_ffde ,_ :=_fbea ._ffbg .ReadByte ();_fede .WriteByte (_ffde ); +};return MakeString (_fede .String ()),nil ;}; -// JBIG2Image is the image structure used by the jbig2 encoder. Its Data must be in a -// 1 bit per component and 1 component per pixel (1bpp). In order to create binary image -// use GoImageToJBIG2 function. If the image data contains the row bytes padding set the HasPadding to true. -type JBIG2Image struct{ +// JPXEncoder implements JPX encoder/decoder (dummy, for now) +// FIXME: implement +type JPXEncoder struct{}; -// Width and Height defines the image boundaries. -Width ,Height int ; +// ResolveReferencesDeep recursively traverses through object `o`, looking up and replacing +// references with indirect objects. +// Optionally a map of already deep-resolved objects can be provided via `traversed`. The `traversed` map +// is updated while traversing the objects to avoid traversing same objects multiple times. +func ResolveReferencesDeep (o PdfObject ,traversed map[PdfObject ]struct{})error {if traversed ==nil {traversed =map[PdfObject ]struct{}{};};return _agaf (o ,0,traversed );};func _ff (_cbc XrefTable ){_a .Log .Debug ("\u003dX\u003d\u0058\u003d\u0058\u003d"); +_a .Log .Debug ("X\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u003a");_beg :=0;for _ ,_aed :=range _cbc .ObjectMap {_a .Log .Debug ("i\u002b\u0031\u003a\u0020\u0025\u0064 \u0028\u006f\u0062\u006a\u0020\u006eu\u006d\u003a\u0020\u0025\u0064\u0020\u0067e\u006e\u003a\u0020\u0025\u0064\u0029\u0020\u002d\u003e\u0020%\u0064",_beg +1,_aed .ObjectNumber ,_aed .Generation ,_aed .Offset ); +_beg ++;};}; -// Data is the byte slice data for the input image -Data []byte ; +// GetDict returns the *PdfObjectDictionary represented by the PdfObject directly or indirectly within an indirect +// object. On type mismatch the found bool flag is false and a nil pointer is returned. +func GetDict (obj PdfObject )(_gfdef *PdfObjectDictionary ,_cbde bool ){_gfdef ,_cbde =TraceToDirectObject (obj ).(*PdfObjectDictionary );return _gfdef ,_cbde ;}; -// HasPadding is the attribute that defines if the last byte of the data in the row contains -// 0 bits padding. -HasPadding bool ;}; +// MakeIndirectObject creates an PdfIndirectObject with a specified direct object PdfObject. +func MakeIndirectObject (obj PdfObject )*PdfIndirectObject {_gfdfe :=&PdfIndirectObject {};_gfdfe .PdfObject =obj ;return _gfdfe ;}; -// PdfObjectFloat represents the primitive PDF floating point numerical object. -type PdfObjectFloat float64 ;func (_aagd *PdfParser )parseXrefTable ()(*PdfObjectDictionary ,error ){var _fac *PdfObjectDictionary ;_fcedc ,_dgfg :=_aagd .readTextLine ();if _dgfg !=nil {return nil ,_dgfg ;};if _aagd ._adaa &&_c .Count (_c .TrimPrefix (_fcedc ,"\u0078\u0072\u0065\u0066"),"\u0020")> 0{_aagd ._bcdc ._bad =true ; -};_ecd .Log .Trace ("\u0078\u0072\u0065\u0066 f\u0069\u0072\u0073\u0074\u0020\u006c\u0069\u006e\u0065\u003a\u0020\u0025\u0073",_fcedc );_dcgc :=-1;_debg :=0;_feaf :=false ;_adaac :="";for {_aagd .skipSpaces ();_ ,_fffd :=_aagd ._affd .Peek (1);if _fffd !=nil {return nil ,_fffd ; -};_fcedc ,_fffd =_aagd .readTextLine ();if _fffd !=nil {return nil ,_fffd ;};_fabd :=_bbcd .FindStringSubmatch (_fcedc );if len (_fabd )==0{_fbad :=len (_adaac )> 0;_adaac +=_fcedc +"\u000a";if _fbad {_fabd =_bbcd .FindStringSubmatch (_adaac );};};if len (_fabd )==3{if _aagd ._adaa &&!_aagd ._bcdc ._fefa {var (_aegdc bool ; -_gade int ;);for _ ,_bgeg :=range _fcedc {if _de .IsDigit (_bgeg ){if _aegdc {break ;};continue ;};if !_aegdc {_aegdc =true ;};_gade ++;};if _gade > 1{_aagd ._bcdc ._fefa =true ;};};_gage ,_ :=_bf .Atoi (_fabd [1]);_bggd ,_ :=_bf .Atoi (_fabd [2]);_dcgc =_gage ; -_debg =_bggd ;_feaf =true ;_adaac ="";_ecd .Log .Trace ("\u0078r\u0065\u0066 \u0073\u0075\u0062s\u0065\u0063\u0074\u0069\u006f\u006e\u003a \u0066\u0069\u0072\u0073\u0074\u0020o\u0062\u006a\u0065\u0063\u0074\u003a\u0020\u0025\u0064\u0020\u006fb\u006a\u0065\u0063\u0074\u0073\u003a\u0020\u0025\u0064",_dcgc ,_debg ); -continue ;};_bfbgg :=_gddeb .FindStringSubmatch (_fcedc );if len (_bfbgg )==4{if !_feaf {_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0058r\u0065\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0066\u006fr\u006da\u0074\u0021\u000a");return nil ,_f .New ("\u0078\u0072\u0065\u0066 i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0066\u006f\u0072\u006d\u0061\u0074"); -};_dgdg ,_ :=_bf .ParseInt (_bfbgg [1],10,64);_geddcb ,_ :=_bf .Atoi (_bfbgg [2]);_gcde :=_bfbgg [3];_adaac ="";if _c .ToLower (_gcde )=="\u006e"&&_dgdg > 1{_cabc ,_agge :=_aagd ._efdgc .ObjectMap [_dcgc ];if !_agge ||_geddcb > _cabc .Generation {_bedb :=XrefObject {ObjectNumber :_dcgc ,XType :XrefTypeTableEntry ,Offset :_dgdg ,Generation :_geddcb }; -_aagd ._efdgc .ObjectMap [_dcgc ]=_bedb ;};};_dcgc ++;continue ;};if (len (_fcedc )> 6)&&(_fcedc [:7]=="\u0074r\u0061\u0069\u006c\u0065\u0072"){_ecd .Log .Trace ("\u0046o\u0075n\u0064\u0020\u0074\u0072\u0061i\u006c\u0065r\u0020\u002d\u0020\u0025\u0073",_fcedc ); -if len (_fcedc )> 9{_dcgeg :=_aagd .GetFileOffset ();_aagd .SetFileOffset (_dcgeg -int64 (len (_fcedc ))+7);};_aagd .skipSpaces ();_aagd .skipComments ();_ecd .Log .Trace ("R\u0065\u0061\u0064\u0069ng\u0020t\u0072\u0061\u0069\u006c\u0065r\u0020\u0064\u0069\u0063\u0074\u0021"); -_ecd .Log .Trace ("\u0070\u0065\u0065\u006b\u003a\u0020\u0022\u0025\u0073\u0022",_fcedc );_fac ,_fffd =_aagd .ParseDict ();_ecd .Log .Trace ("\u0045O\u0046\u0020\u0072\u0065a\u0064\u0069\u006e\u0067\u0020t\u0072a\u0069l\u0065\u0072\u0020\u0064\u0069\u0063\u0074!"); -if _fffd !=nil {_ecd .Log .Debug ("\u0045\u0072\u0072o\u0072\u0020\u0070\u0061r\u0073\u0069\u006e\u0067\u0020\u0074\u0072a\u0069\u006c\u0065\u0072\u0020\u0064\u0069\u0063\u0074\u0020\u0028\u0025\u0073\u0029",_fffd );return nil ,_fffd ;};break ;};if _fcedc =="\u0025\u0025\u0045O\u0046"{_ecd .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u006e\u0064 \u006f\u0066\u0020\u0066\u0069\u006c\u0065 -\u0020\u0074\u0072\u0061i\u006c\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066ou\u006e\u0064 \u002d\u0020\u0065\u0072\u0072\u006f\u0072\u0021"); -return nil ,_f .New ("\u0065\u006e\u0064 \u006f\u0066\u0020\u0066i\u006c\u0065\u0020\u002d\u0020\u0074\u0072a\u0069\u006c\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_ecd .Log .Trace ("\u0078\u0072\u0065\u0066\u0020\u006d\u006f\u0072\u0065 \u003a\u0020\u0025\u0073",_fcedc ); -};_ecd .Log .Trace ("\u0045\u004f\u0046 p\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0078\u0072\u0065\u0066\u0020\u0074\u0061\u0062\u006c\u0065\u0021");if _aagd ._ceae ==nil {_gfaa :=XrefTypeTableEntry ;_aagd ._ceae =&_gfaa ;};return _fac ,nil ;}; +// UpdateParams updates the parameter values of the encoder. +func (_deeec *LZWEncoder )UpdateParams (params *PdfObjectDictionary ){_aca ,_cdcd :=GetNumberAsInt64 (params .Get ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr"));if _cdcd ==nil {_deeec .Predictor =int (_aca );};_cdfb ,_cdcd :=GetNumberAsInt64 (params .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074")); +if _cdcd ==nil {_deeec .BitsPerComponent =int (_cdfb );};_efdg ,_cdcd :=GetNumberAsInt64 (params .Get ("\u0057\u0069\u0064t\u0068"));if _cdcd ==nil {_deeec .Columns =int (_efdg );};_edga ,_cdcd :=GetNumberAsInt64 (params .Get ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073")); +if _cdcd ==nil {_deeec .Colors =int (_edga );};_edeg ,_cdcd :=GetNumberAsInt64 (params .Get ("E\u0061\u0072\u006c\u0079\u0043\u0068\u0061\u006e\u0067\u0065"));if _cdcd ==nil {_deeec .EarlyChange =int (_edeg );};}; -// WriteString outputs the object as it is to be written to file. -func (_bcgb *PdfObjectBool )WriteString ()string {if *_bcgb {return "\u0074\u0072\u0075\u0065";};return "\u0066\u0061\u006cs\u0065";};func (_gaeba *PdfParser )seekToEOFMarker (_dgeb int64 )error {var _agff int64 ;var _cbba int64 =2048;for _agff < _dgeb -4{if _dgeb <=(_cbba +_agff ){_cbba =_dgeb -_agff ; -};_ ,_beeb :=_gaeba ._ccgbe .Seek (_dgeb -_agff -_cbba ,_ae .SeekStart );if _beeb !=nil {return _beeb ;};_abde :=make ([]byte ,_cbba );_gaeba ._ccgbe .Read (_abde );_ecd .Log .Trace ("\u004c\u006f\u006f\u006bi\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0045\u004f\u0046 \u006da\u0072\u006b\u0065\u0072\u003a\u0020\u0022%\u0073\u0022",string (_abde )); -_gbbb :=_ddfe .FindAllStringIndex (string (_abde ),-1);if _gbbb !=nil {_agdga :=_gbbb [len (_gbbb )-1];_ecd .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_gbbb );_fdbb :=_dgeb -_agff -_cbba +int64 (_agdga [0]);_gaeba ._ccgbe .Seek (_fdbb ,_ae .SeekStart ); -return nil ;};_ecd .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006eg\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0021\u0020\u002d\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020s\u0065e\u006b\u0069\u006e\u0067"); -_agff +=_cbba -4;};_ecd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006be\u0072 \u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e");return _aaag ;}; \ No newline at end of file +// IsNullObject returns true if `obj` is a PdfObjectNull. +func IsNullObject (obj PdfObject )bool {_ ,_dgad :=TraceToDirectObject (obj ).(*PdfObjectNull );return _dgad ;}; \ No newline at end of file diff --git a/core/security/crypt/crypt.go b/core/security/crypt/crypt.go index d8ed85bb2..7961d8b02 100644 --- a/core/security/crypt/crypt.go +++ b/core/security/crypt/crypt.go @@ -9,83 +9,69 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package crypt ;import (_a "crypto/aes";_cf "crypto/cipher";_ef "crypto/md5";_c "crypto/rand";_ea "crypto/rc4";_f "fmt";_cfg "github.com/unidoc/unipdf/v3/common";_dc "github.com/unidoc/unipdf/v3/core/security";_e "io";);func init (){_gege ("\u0041\u0045\u0053V\u0032",_fb )}; -func _geg (_gf FilterDict )(Filter ,error ){if _gf .Length %8!=0{return nil ,_f .Errorf ("\u0063\u0072\u0079p\u0074\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006e\u006f\u0074\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020o\u0066\u0020\u0038\u0020\u0028\u0025\u0064\u0029",_gf .Length ); -};if _gf .Length < 5||_gf .Length > 16{if _gf .Length ==40||_gf .Length ==64||_gf .Length ==128{_cfg .Log .Debug ("\u0053\u0054\u0041\u004e\u0044AR\u0044\u0020V\u0049\u004f\u004c\u0041\u0054\u0049\u004f\u004e\u003a\u0020\u0043\u0072\u0079\u0070\u0074\u0020\u004c\u0065\u006e\u0067\u0074\u0068\u0020\u0061\u0070\u0070\u0065\u0061\u0072s\u0020\u0074\u006f \u0062\u0065\u0020\u0069\u006e\u0020\u0062\u0069\u0074\u0073\u0020\u0072\u0061t\u0068\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0062\u0079\u0074\u0065\u0073\u0020-\u0020\u0061s\u0073u\u006d\u0069\u006e\u0067\u0020\u0062\u0069t\u0073\u0020\u0028\u0025\u0064\u0029",_gf .Length ); -_gf .Length /=8;}else {return nil ,_f .Errorf ("\u0063\u0072\u0079\u0070\u0074\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006c\u0065\u006e\u0067\u0074h\u0020\u006e\u006f\u0074\u0020\u0069\u006e \u0072\u0061\u006e\u0067\u0065\u0020\u0034\u0030\u0020\u002d\u00201\u0032\u0038\u0020\u0062\u0069\u0074\u0020\u0028\u0025\u0064\u0029",_gf .Length ); -};};return filterV2 {_dff :_gf .Length },nil ;}; - -// KeyLength implements Filter interface. -func (_fce filterV2 )KeyLength ()int {return _fce ._dff }; - -// NewFilterAESV3 creates an AES-based filter with a 256 bit key (AESV3). -func NewFilterAESV3 ()Filter {_bg ,_de :=_eab (FilterDict {});if _de !=nil {_cfg .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0063re\u0061\u0074\u0065\u0020A\u0045\u0053\u0020\u0056\u0033\u0020\u0063\u0072\u0079pt\u0020\u0066i\u006c\u0074\u0065\u0072\u003a\u0020\u0025\u0076",_de ); -return filterAESV3 {};};return _bg ;}; - -// NewFilterV2 creates a RC4-based filter with a specified key length (in bytes). -func NewFilterV2 (length int )Filter {_fga ,_eac :=_geg (FilterDict {Length :length });if _eac !=nil {_cfg .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0063re\u0061\u0074\u0065\u0020R\u0043\u0034\u0020\u0056\u0032\u0020\u0063\u0072\u0079pt\u0020\u0066i\u006c\u0074\u0065\u0072\u003a\u0020\u0025\u0076",_eac ); -return filterV2 {_dff :length };};return _fga ;}; +package crypt ;import (_e "crypto/aes";_d "crypto/cipher";_f "crypto/md5";_gg "crypto/rand";_a "crypto/rc4";_b "fmt";_dg "github.com/unidoc/unipdf/v3/common";_ce "github.com/unidoc/unipdf/v3/core/security";_g "io";);func init (){_ede ("\u0041\u0045\u0053V\u0032",_cf )}; +func (filterIdentity )Name ()string {return "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"}; // Name implements Filter interface. -func (filterAESV2 )Name ()string {return "\u0041\u0045\u0053V\u0032"};var _ Filter =filterV2 {};type filterV2 struct{_dff int }; +func (filterAESV3 )Name ()string {return "\u0041\u0045\u0053V\u0033"};func _aga (_ebc string )(filterFunc ,error ){_cef :=_dac [_ebc ];if _cef ==nil {return nil ,_b .Errorf ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u0072\u0079p\u0074 \u0066\u0069\u006c\u0074\u0065\u0072\u003a \u0025\u0071",_ebc ); +};return _cef ,nil ;};var _ Filter =filterAESV3 {}; -// MakeKey implements Filter interface. -func (filterAESV3 )MakeKey (_ ,_ uint32 ,ekey []byte )([]byte ,error ){return ekey ,nil };type filterAESV2 struct{filterAES };func init (){_gege ("\u0041\u0045\u0053V\u0033",_eab )}; +// Name implements Filter interface. +func (filterAESV2 )Name ()string {return "\u0041\u0045\u0053V\u0032"};func (filterIdentity )KeyLength ()int {return 0};type filterAES struct{}; -// HandlerVersion implements Filter interface. -func (filterAESV2 )HandlerVersion ()(V ,R int ){V ,R =4,4;return ;};var _ Filter =filterAESV3 {}; +// KeyLength implements Filter interface. +func (_aed filterV2 )KeyLength ()int {return _aed ._ae };type filterAESV3 struct{filterAES };func init (){_ede ("\u0041\u0045\u0053V\u0033",_adg )};func (filterIdentity )HandlerVersion ()(V ,R int ){return ;}; // PDFVersion implements Filter interface. -func (filterAESV2 )PDFVersion ()[2]int {return [2]int {1,5}};func (filterIdentity )MakeKey (objNum ,genNum uint32 ,fkey []byte )([]byte ,error ){return fkey ,nil };func _fb (_bf FilterDict )(Filter ,error ){if _bf .Length ==128{_cfg .Log .Debug ("\u0041\u0045S\u0056\u0032\u0020c\u0072\u0079\u0070\u0074\u0020f\u0069\u006c\u0074\u0065\u0072 l\u0065\u006e\u0067\u0074\u0068\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0073\u0020\u0074\u006f\u0020\u0062e\u0020i\u006e\u0020\u0062\u0069\u0074\u0073 ra\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0062\u0079te\u0073 \u002d\u0020\u0061\u0073s\u0075m\u0069n\u0067\u0020b\u0069\u0074s \u0028\u0025\u0064\u0029",_bf .Length ); -_bf .Length /=8;};if _bf .Length !=0&&_bf .Length !=16{return nil ,_f .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0041\u0045\u0053\u0056\u0032\u0020\u0063\u0072\u0079\u0070\u0074\u0020\u0066\u0069\u006c\u0074e\u0072\u0020\u006c\u0065\u006eg\u0074\u0068 \u0028\u0025\u0064\u0029",_bf .Length ); -};return filterAESV2 {},nil ;};func (filterAES )DecryptBytes (buf []byte ,okey []byte )([]byte ,error ){_gea ,_fg :=_a .NewCipher (okey );if _fg !=nil {return nil ,_fg ;};if len (buf )< 16{_cfg .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0041\u0045\u0053\u0020\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0062\u0075\u0066\u0020\u0025\u0073",buf ); -return buf ,_f .Errorf ("\u0041\u0045\u0053\u003a B\u0075\u0066\u0020\u006c\u0065\u006e\u0020\u003c\u0020\u0031\u0036\u0020\u0028\u0025d\u0029",len (buf ));};_cff :=buf [:16];buf =buf [16:];if len (buf )%16!=0{_cfg .Log .Debug ("\u0020\u0069\u0076\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (_cff ),_cff ); -_cfg .Log .Debug ("\u0062\u0075\u0066\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf );return buf ,_f .Errorf ("\u0041\u0045\u0053\u0020\u0062\u0075\u0066\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006e\u006f\u0074\u0020\u006d\u0075\u006c\u0074\u0069p\u006c\u0065\u0020\u006f\u0066 \u0031\u0036 \u0028\u0025\u0064\u0029",len (buf )); -};_dg :=_cf .NewCBCDecrypter (_gea ,_cff );_cfg .Log .Trace ("A\u0045\u0053\u0020\u0044ec\u0072y\u0070\u0074\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf );_cfg .Log .Trace ("\u0063\u0068\u006f\u0070\u0020\u0041\u0045\u0053\u0020\u0044\u0065c\u0072\u0079\u0070\u0074\u0020\u0028\u0025\u0064\u0029\u003a \u0025\u0020\u0078",len (buf ),buf ); -_dg .CryptBlocks (buf ,buf );_cfg .Log .Trace ("\u0074\u006f\u0020(\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf );if len (buf )==0{_cfg .Log .Trace ("\u0045\u006d\u0070\u0074\u0079\u0020b\u0075\u0066\u002c\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067 \u0065\u006d\u0070\u0074\u0079\u0020\u0073t\u0072\u0069\u006e\u0067"); -return buf ,nil ;};_gc :=int (buf [len (buf )-1]);if _gc > len (buf ){_cfg .Log .Debug ("\u0049\u006c\u006c\u0065g\u0061\u006c\u0020\u0070\u0061\u0064\u0020\u006c\u0065\u006eg\u0074h\u0020\u0028\u0025\u0064\u0020\u003e\u0020%\u0064\u0029",_gc ,len (buf )); -return buf ,_f .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0070a\u0064\u0020l\u0065\u006e\u0067\u0074\u0068");};buf =buf [:len (buf )-_gc ];return buf ,nil ;};func _fcc (_af string )(filterFunc ,error ){_gbb :=_fdc [_af ];if _gbb ==nil {return nil ,_f .Errorf ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u0072\u0079p\u0074 \u0066\u0069\u006c\u0074\u0065\u0072\u003a \u0025\u0071",_af ); -};return _gbb ,nil ;};func (filterAES )EncryptBytes (buf []byte ,okey []byte )([]byte ,error ){_ce ,_ba :=_a .NewCipher (okey );if _ba !=nil {return nil ,_ba ;};_cfg .Log .Trace ("A\u0045\u0053\u0020\u0045nc\u0072y\u0070\u0074\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf ); -const _bgb =_a .BlockSize ;_bc :=_bgb -len (buf )%_bgb ;for _eb :=0;_eb < _bc ;_eb ++{buf =append (buf ,byte (_bc ));};_cfg .Log .Trace ("\u0050a\u0064d\u0065\u0064\u0020\u0074\u006f \u0025\u0064 \u0062\u0079\u0074\u0065\u0073",len (buf ));_adf :=make ([]byte ,_bgb +len (buf )); -_gb :=_adf [:_bgb ];if _ ,_aa :=_e .ReadFull (_c .Reader ,_gb );_aa !=nil {return nil ,_aa ;};_ge :=_cf .NewCBCEncrypter (_ce ,_gb );_ge .CryptBlocks (_adf [_bgb :],buf );buf =_adf ;_cfg .Log .Trace ("\u0074\u006f\u0020(\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf ); -return buf ,nil ;}; +func (_dfe filterV2 )PDFVersion ()[2]int {return [2]int {}};type filterFunc func (_afg FilterDict )(Filter ,error );type filterAESV2 struct{filterAES };func (filterIdentity )PDFVersion ()[2]int {return [2]int {}}; // Name implements Filter interface. -func (filterAESV3 )Name ()string {return "\u0041\u0045\u0053V\u0033"};type filterIdentity struct{};func (filterIdentity )KeyLength ()int {return 0}; +func (filterV2 )Name ()string {return "\u0056\u0032"};func _bc (_cge ,_ec uint32 ,_ea []byte ,_dae bool )([]byte ,error ){_cc :=make ([]byte ,len (_ea )+5);copy (_cc ,_ea );for _bcd :=0;_bcd < 3;_bcd ++{_edd :=byte ((_cge >>uint32 (8*_bcd ))&0xff);_cc [_bcd +len (_ea )]=_edd ; +};for _cfb :=0;_cfb < 2;_cfb ++{_fbd :=byte ((_ec >>uint32 (8*_cfb ))&0xff);_cc [_cfb +len (_ea )+3]=_fbd ;};if _dae {_cc =append (_cc ,0x73);_cc =append (_cc ,0x41);_cc =append (_cc ,0x6C);_cc =append (_cc ,0x54);};_ef :=_f .New ();_ef .Write (_cc );_gb :=_ef .Sum (nil ); +if len (_ea )+5< 16{return _gb [0:len (_ea )+5],nil ;};return _gb ,nil ;};var _ Filter =filterAESV2 {}; -// Name implements Filter interface. -func (filterV2 )Name ()string {return "\u0056\u0032"};func init (){_gege ("\u0056\u0032",_geg )}; +// NewFilter creates CryptFilter from a corresponding dictionary. +func NewFilter (d FilterDict )(Filter ,error ){_ge ,_cbb :=_aga (d .CFM );if _cbb !=nil {return nil ,_cbb ;};_bfb ,_cbb :=_ge (d );if _cbb !=nil {return nil ,_cbb ;};return _bfb ,nil ;};var _ Filter =filterV2 {}; -// NewFilterAESV2 creates an AES-based filter with a 128 bit key (AESV2). -func NewFilterAESV2 ()Filter {_g ,_bd :=_fb (FilterDict {});if _bd !=nil {_cfg .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0063re\u0061\u0074\u0065\u0020A\u0045\u0053\u0020\u0056\u0032\u0020\u0063\u0072\u0079pt\u0020\u0066i\u006c\u0074\u0065\u0072\u003a\u0020\u0025\u0076",_bd ); -return filterAESV2 {};};return _g ;}; +// NewFilterV2 creates a RC4-based filter with a specified key length (in bytes). +func NewFilterV2 (length int )Filter {_bab ,_ab :=_gd (FilterDict {Length :length });if _ab !=nil {_dg .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0063re\u0061\u0074\u0065\u0020R\u0043\u0034\u0020\u0056\u0032\u0020\u0063\u0072\u0079pt\u0020\u0066i\u006c\u0074\u0065\u0072\u003a\u0020\u0025\u0076",_ab ); +return filterV2 {_ae :length };};return _bab ;}; -// MakeKey implements Filter interface. -func (filterAESV2 )MakeKey (objNum ,genNum uint32 ,ekey []byte )([]byte ,error ){return _gab (objNum ,genNum ,ekey ,true );};func _eab (_ga FilterDict )(Filter ,error ){if _ga .Length ==256{_cfg .Log .Debug ("\u0041\u0045S\u0056\u0033\u0020c\u0072\u0079\u0070\u0074\u0020f\u0069\u006c\u0074\u0065\u0072 l\u0065\u006e\u0067\u0074\u0068\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0073\u0020\u0074\u006f\u0020\u0062e\u0020i\u006e\u0020\u0062\u0069\u0074\u0073 ra\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0062\u0079te\u0073 \u002d\u0020\u0061\u0073s\u0075m\u0069n\u0067\u0020b\u0069\u0074s \u0028\u0025\u0064\u0029",_ga .Length ); -_ga .Length /=8;};if _ga .Length !=0&&_ga .Length !=32{return nil ,_f .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0041\u0045\u0053\u0056\u0033\u0020\u0063\u0072\u0079\u0070\u0074\u0020\u0066\u0069\u006c\u0074e\u0072\u0020\u006c\u0065\u006eg\u0074\u0068 \u0028\u0025\u0064\u0029",_ga .Length ); -};return filterAESV3 {},nil ;};var _ Filter =filterAESV2 {}; +// KeyLength implements Filter interface. +func (filterAESV3 )KeyLength ()int {return 256/8};func init (){_ede ("\u0056\u0032",_gd )}; -// PDFVersion implements Filter interface. -func (_ff filterV2 )PDFVersion ()[2]int {return [2]int {}};func (filterIdentity )EncryptBytes (p []byte ,okey []byte )([]byte ,error ){return p ,nil }; +// HandlerVersion implements Filter interface. +func (filterAESV3 )HandlerVersion ()(V ,R int ){V ,R =5,6;return ;};func (filterIdentity )DecryptBytes (p []byte ,okey []byte )([]byte ,error ){return p ,nil }; -// PDFVersion implements Filter interface. -func (filterAESV3 )PDFVersion ()[2]int {return [2]int {2,0}};type filterFunc func (_bdcg FilterDict )(Filter ,error );func _gege (_ae string ,_aga filterFunc ){if _ ,_bdf :=_fdc [_ae ];_bdf {panic ("\u0061l\u0072e\u0061\u0064\u0079\u0020\u0072e\u0067\u0069s\u0074\u0065\u0072\u0065\u0064"); -};_fdc [_ae ]=_aga ;}; +// DecryptBytes implements Filter interface. +func (filterV2 )DecryptBytes (buf []byte ,okey []byte )([]byte ,error ){_cgda ,_ac :=_a .NewCipher (okey );if _ac !=nil {return nil ,_ac ;};_dg .Log .Trace ("\u0052\u00434\u0020\u0044\u0065c\u0072\u0079\u0070\u0074\u003a\u0020\u0025\u0020\u0078",buf ); +_cgda .XORKeyStream (buf ,buf );_dg .Log .Trace ("\u0074o\u003a\u0020\u0025\u0020\u0078",buf );return buf ,nil ;}; + +// NewFilterAESV2 creates an AES-based filter with a 128 bit key (AESV2). +func NewFilterAESV2 ()Filter {_bb ,_ad :=_cf (FilterDict {});if _ad !=nil {_dg .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0063re\u0061\u0074\u0065\u0020A\u0045\u0053\u0020\u0056\u0032\u0020\u0063\u0072\u0079pt\u0020\u0066i\u006c\u0074\u0065\u0072\u003a\u0020\u0025\u0076",_ad ); +return filterAESV2 {};};return _bb ;};type filterV2 struct{_ae int };func (filterAES )DecryptBytes (buf []byte ,okey []byte )([]byte ,error ){_ced ,_ba :=_e .NewCipher (okey );if _ba !=nil {return nil ,_ba ;};if len (buf )< 16{_dg .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020\u0041\u0045\u0053\u0020\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0062\u0075\u0066\u0020\u0025\u0073",buf ); +return buf ,_b .Errorf ("\u0041\u0045\u0053\u003a B\u0075\u0066\u0020\u006c\u0065\u006e\u0020\u003c\u0020\u0031\u0036\u0020\u0028\u0025d\u0029",len (buf ));};_ddg :=buf [:16];buf =buf [16:];if len (buf )%16!=0{_dg .Log .Debug ("\u0020\u0069\u0076\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (_ddg ),_ddg ); +_dg .Log .Debug ("\u0062\u0075\u0066\u0020\u0028\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf );return buf ,_b .Errorf ("\u0041\u0045\u0053\u0020\u0062\u0075\u0066\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006e\u006f\u0074\u0020\u006d\u0075\u006c\u0074\u0069p\u006c\u0065\u0020\u006f\u0066 \u0031\u0036 \u0028\u0025\u0064\u0029",len (buf )); +};_ca :=_d .NewCBCDecrypter (_ced ,_ddg );_dg .Log .Trace ("A\u0045\u0053\u0020\u0044ec\u0072y\u0070\u0074\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf );_dg .Log .Trace ("\u0063\u0068\u006f\u0070\u0020\u0041\u0045\u0053\u0020\u0044\u0065c\u0072\u0079\u0070\u0074\u0020\u0028\u0025\u0064\u0029\u003a \u0025\u0020\u0078",len (buf ),buf ); +_ca .CryptBlocks (buf ,buf );_dg .Log .Trace ("\u0074\u006f\u0020(\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf );if len (buf )==0{_dg .Log .Trace ("\u0045\u006d\u0070\u0074\u0079\u0020b\u0075\u0066\u002c\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067 \u0065\u006d\u0070\u0074\u0079\u0020\u0073t\u0072\u0069\u006e\u0067"); +return buf ,nil ;};_fba :=int (buf [len (buf )-1]);if _fba > len (buf ){_dg .Log .Debug ("\u0049\u006c\u006c\u0065g\u0061\u006c\u0020\u0070\u0061\u0064\u0020\u006c\u0065\u006eg\u0074h\u0020\u0028\u0025\u0064\u0020\u003e\u0020%\u0064\u0029",_fba ,len (buf )); +return buf ,_b .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0070a\u0064\u0020l\u0065\u006e\u0067\u0074\u0068");};buf =buf [:len (buf )-_fba ];return buf ,nil ;};func (filterIdentity )EncryptBytes (p []byte ,okey []byte )([]byte ,error ){return p ,nil }; -// FilterDict represents information from a CryptFilter dictionary. -type FilterDict struct{CFM string ;AuthEvent _dc .AuthEvent ;Length int ;}; + +// MakeKey implements Filter interface. +func (filterAESV3 )MakeKey (_ ,_ uint32 ,ekey []byte )([]byte ,error ){return ekey ,nil }; // EncryptBytes implements Filter interface. -func (filterV2 )EncryptBytes (buf []byte ,okey []byte )([]byte ,error ){_bcf ,_bac :=_ea .NewCipher (okey );if _bac !=nil {return nil ,_bac ;};_cfg .Log .Trace ("\u0052\u00434\u0020\u0045\u006ec\u0072\u0079\u0070\u0074\u003a\u0020\u0025\u0020\u0078",buf ); -_bcf .XORKeyStream (buf ,buf );_cfg .Log .Trace ("\u0074o\u003a\u0020\u0025\u0020\u0078",buf );return buf ,nil ;}; +func (filterV2 )EncryptBytes (buf []byte ,okey []byte )([]byte ,error ){_gf ,_fa :=_a .NewCipher (okey );if _fa !=nil {return nil ,_fa ;};_dg .Log .Trace ("\u0052\u00434\u0020\u0045\u006ec\u0072\u0079\u0070\u0074\u003a\u0020\u0025\u0020\u0078",buf );_gf .XORKeyStream (buf ,buf ); +_dg .Log .Trace ("\u0074o\u003a\u0020\u0025\u0020\u0078",buf );return buf ,nil ;};type filterIdentity struct{};func _adg (_cgd FilterDict )(Filter ,error ){if _cgd .Length ==256{_dg .Log .Debug ("\u0041\u0045S\u0056\u0033\u0020c\u0072\u0079\u0070\u0074\u0020f\u0069\u006c\u0074\u0065\u0072 l\u0065\u006e\u0067\u0074\u0068\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0073\u0020\u0074\u006f\u0020\u0062e\u0020i\u006e\u0020\u0062\u0069\u0074\u0073 ra\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0062\u0079te\u0073 \u002d\u0020\u0061\u0073s\u0075m\u0069n\u0067\u0020b\u0069\u0074s \u0028\u0025\u0064\u0029",_cgd .Length ); +_cgd .Length /=8;};if _cgd .Length !=0&&_cgd .Length !=32{return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0041\u0045\u0053\u0056\u0033\u0020\u0063\u0072\u0079\u0070\u0074\u0020\u0066\u0069\u006c\u0074e\u0072\u0020\u006c\u0065\u006eg\u0074\u0068 \u0028\u0025\u0064\u0029",_cgd .Length ); +};return filterAESV3 {},nil ;}; -// KeyLength implements Filter interface. -func (filterAESV2 )KeyLength ()int {return 128/8}; +// NewIdentity creates an identity filter that bypasses all data without changes. +func NewIdentity ()Filter {return filterIdentity {}}; -// NewFilter creates CryptFilter from a corresponding dictionary. -func NewFilter (d FilterDict )(Filter ,error ){_dgf ,_ged :=_fcc (d .CFM );if _ged !=nil {return nil ,_ged ;};_cb ,_ged :=_dgf (d );if _ged !=nil {return nil ,_ged ;};return _cb ,nil ;};func (filterIdentity )HandlerVersion ()(V ,R int ){return ;};type filterAES struct{}; -func (filterIdentity )Name ()string {return "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"};func (filterIdentity )DecryptBytes (p []byte ,okey []byte )([]byte ,error ){return p ,nil };func (filterIdentity )PDFVersion ()[2]int {return [2]int {}};var (_fdc =make (map[string ]filterFunc ); -); +// PDFVersion implements Filter interface. +func (filterAESV3 )PDFVersion ()[2]int {return [2]int {2,0}}; // Filter is a common interface for crypt filter methods. type Filter interface{ @@ -104,33 +90,46 @@ HandlerVersion ()(V ,R int ); // MakeKey generates a object encryption key based on file encryption key and object numbers. // Used only for legacy filters - AESV3 doesn't change the key for each object. -MakeKey (_fa ,_eae uint32 ,_ddd []byte )([]byte ,error ); +MakeKey (_be ,_cag uint32 ,_bbc []byte )([]byte ,error ); // EncryptBytes encrypts a buffer using object encryption key, as returned by MakeKey. // Implementation may reuse a buffer and encrypt data in-place. -EncryptBytes (_fba []byte ,_baa []byte )([]byte ,error ); +EncryptBytes (_bdc []byte ,_def []byte )([]byte ,error ); // DecryptBytes decrypts a buffer using object encryption key, as returned by MakeKey. // Implementation may reuse a buffer and decrypt data in-place. -DecryptBytes (_cea []byte ,_da []byte )([]byte ,error );};type filterAESV3 struct{filterAES };func _gab (_fc ,_adc uint32 ,_fd []byte ,_adb bool )([]byte ,error ){_ead :=make ([]byte ,len (_fd )+5);copy (_ead ,_fd );for _ag :=0;_ag < 3;_ag ++{_df :=byte ((_fc >>uint32 (8*_ag ))&0xff); -_ead [_ag +len (_fd )]=_df ;};for _ec :=0;_ec < 2;_ec ++{_bdc :=byte ((_adc >>uint32 (8*_ec ))&0xff);_ead [_ec +len (_fd )+3]=_bdc ;};if _adb {_ead =append (_ead ,0x73);_ead =append (_ead ,0x41);_ead =append (_ead ,0x6C);_ead =append (_ead ,0x54);};_dfc :=_ef .New (); -_dfc .Write (_ead );_ca :=_dfc .Sum (nil );if len (_fd )+5< 16{return _ca [0:len (_fd )+5],nil ;};return _ca ,nil ;}; +DecryptBytes (_agb []byte ,_cb []byte )([]byte ,error );}; -// HandlerVersion implements Filter interface. -func (filterAESV3 )HandlerVersion ()(V ,R int ){V ,R =5,6;return ;}; +// FilterDict represents information from a CryptFilter dictionary. +type FilterDict struct{CFM string ;AuthEvent _ce .AuthEvent ;Length int ;};func _ede (_ga string ,_fac filterFunc ){if _ ,_acb :=_dac [_ga ];_acb {panic ("\u0061l\u0072e\u0061\u0064\u0079\u0020\u0072e\u0067\u0069s\u0074\u0065\u0072\u0065\u0064");};_dac [_ga ]=_fac ; +};func _cf (_af FilterDict )(Filter ,error ){if _af .Length ==128{_dg .Log .Debug ("\u0041\u0045S\u0056\u0032\u0020c\u0072\u0079\u0070\u0074\u0020f\u0069\u006c\u0074\u0065\u0072 l\u0065\u006e\u0067\u0074\u0068\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0073\u0020\u0074\u006f\u0020\u0062e\u0020i\u006e\u0020\u0062\u0069\u0074\u0073 ra\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0062\u0079te\u0073 \u002d\u0020\u0061\u0073s\u0075m\u0069n\u0067\u0020b\u0069\u0074s \u0028\u0025\u0064\u0029",_af .Length ); +_af .Length /=8;};if _af .Length !=0&&_af .Length !=16{return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0041\u0045\u0053\u0056\u0032\u0020\u0063\u0072\u0079\u0070\u0074\u0020\u0066\u0069\u006c\u0074e\u0072\u0020\u006c\u0065\u006eg\u0074\u0068 \u0028\u0025\u0064\u0029",_af .Length ); +};return filterAESV2 {},nil ;}; -// DecryptBytes implements Filter interface. -func (filterV2 )DecryptBytes (buf []byte ,okey []byte )([]byte ,error ){_dge ,_ac :=_ea .NewCipher (okey );if _ac !=nil {return nil ,_ac ;};_cfg .Log .Trace ("\u0052\u00434\u0020\u0044\u0065c\u0072\u0079\u0070\u0074\u003a\u0020\u0025\u0020\u0078",buf ); -_dge .XORKeyStream (buf ,buf );_cfg .Log .Trace ("\u0074o\u003a\u0020\u0025\u0020\u0078",buf );return buf ,nil ;}; +// NewFilterAESV3 creates an AES-based filter with a 256 bit key (AESV3). +func NewFilterAESV3 ()Filter {_cg ,_bg :=_adg (FilterDict {});if _bg !=nil {_dg .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0063re\u0061\u0074\u0065\u0020A\u0045\u0053\u0020\u0056\u0033\u0020\u0063\u0072\u0079pt\u0020\u0066i\u006c\u0074\u0065\u0072\u003a\u0020\u0025\u0076",_bg ); +return filterAESV3 {};};return _cg ;}; -// NewIdentity creates an identity filter that bypasses all data without changes. -func NewIdentity ()Filter {return filterIdentity {}}; +// MakeKey implements Filter interface. +func (_cd filterV2 )MakeKey (objNum ,genNum uint32 ,ekey []byte )([]byte ,error ){return _bc (objNum ,genNum ,ekey ,false );}; + +// PDFVersion implements Filter interface. +func (filterAESV2 )PDFVersion ()[2]int {return [2]int {1,5}};var (_dac =make (map[string ]filterFunc );); // MakeKey implements Filter interface. -func (_ab filterV2 )MakeKey (objNum ,genNum uint32 ,ekey []byte )([]byte ,error ){return _gab (objNum ,genNum ,ekey ,false );}; +func (filterAESV2 )MakeKey (objNum ,genNum uint32 ,ekey []byte )([]byte ,error ){return _bc (objNum ,genNum ,ekey ,true );}; + +// HandlerVersion implements Filter interface. +func (filterAESV2 )HandlerVersion ()(V ,R int ){V ,R =4,4;return ;}; // HandlerVersion implements Filter interface. -func (_dd filterV2 )HandlerVersion ()(V ,R int ){V ,R =2,3;return ;}; +func (_bf filterV2 )HandlerVersion ()(V ,R int ){V ,R =2,3;return ;};func (filterIdentity )MakeKey (objNum ,genNum uint32 ,fkey []byte )([]byte ,error ){return fkey ,nil }; // KeyLength implements Filter interface. -func (filterAESV3 )KeyLength ()int {return 256/8}; \ No newline at end of file +func (filterAESV2 )KeyLength ()int {return 128/8};func (filterAES )EncryptBytes (buf []byte ,okey []byte )([]byte ,error ){_de ,_da :=_e .NewCipher (okey );if _da !=nil {return nil ,_da ;};_dg .Log .Trace ("A\u0045\u0053\u0020\u0045nc\u0072y\u0070\u0074\u0020\u0028\u0025d\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf ); +const _bd =_e .BlockSize ;_fb :=_bd -len (buf )%_bd ;for _dd :=0;_dd < _fb ;_dd ++{buf =append (buf ,byte (_fb ));};_dg .Log .Trace ("\u0050a\u0064d\u0065\u0064\u0020\u0074\u006f \u0025\u0064 \u0062\u0079\u0074\u0065\u0073",len (buf ));_ed :=make ([]byte ,_bd +len (buf )); +_edb :=_ed [:_bd ];if _ ,_cgc :=_g .ReadFull (_gg .Reader ,_edb );_cgc !=nil {return nil ,_cgc ;};_ag :=_d .NewCBCEncrypter (_de ,_edb );_ag .CryptBlocks (_ed [_bd :],buf );buf =_ed ;_dg .Log .Trace ("\u0074\u006f\u0020(\u0025\u0064\u0029\u003a\u0020\u0025\u0020\u0078",len (buf ),buf ); +return buf ,nil ;};func _gd (_dda FilterDict )(Filter ,error ){if _dda .Length %8!=0{return nil ,_b .Errorf ("\u0063\u0072\u0079p\u0074\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006e\u006f\u0074\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020o\u0066\u0020\u0038\u0020\u0028\u0025\u0064\u0029",_dda .Length ); +};if _dda .Length < 5||_dda .Length > 16{if _dda .Length ==40||_dda .Length ==64||_dda .Length ==128{_dg .Log .Debug ("\u0053\u0054\u0041\u004e\u0044AR\u0044\u0020V\u0049\u004f\u004c\u0041\u0054\u0049\u004f\u004e\u003a\u0020\u0043\u0072\u0079\u0070\u0074\u0020\u004c\u0065\u006e\u0067\u0074\u0068\u0020\u0061\u0070\u0070\u0065\u0061\u0072s\u0020\u0074\u006f \u0062\u0065\u0020\u0069\u006e\u0020\u0062\u0069\u0074\u0073\u0020\u0072\u0061t\u0068\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0062\u0079\u0074\u0065\u0073\u0020-\u0020\u0061s\u0073u\u006d\u0069\u006e\u0067\u0020\u0062\u0069t\u0073\u0020\u0028\u0025\u0064\u0029",_dda .Length ); +_dda .Length /=8;}else {return nil ,_b .Errorf ("\u0063\u0072\u0079\u0070\u0074\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u006c\u0065\u006e\u0067\u0074h\u0020\u006e\u006f\u0074\u0020\u0069\u006e \u0072\u0061\u006e\u0067\u0065\u0020\u0034\u0030\u0020\u002d\u00201\u0032\u0038\u0020\u0062\u0069\u0074\u0020\u0028\u0025\u0064\u0029",_dda .Length ); +};};return filterV2 {_ae :_dda .Length },nil ;}; \ No newline at end of file diff --git a/core/security/security.go b/core/security/security.go index 100aa91a9..0b2309be2 100644 --- a/core/security/security.go +++ b/core/security/security.go @@ -9,124 +9,121 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package security ;import (_adc "bytes";_aa "crypto/aes";_ce "crypto/cipher";_fc "crypto/md5";_cb "crypto/rand";_f "crypto/rc4";_a "crypto/sha256";_b "crypto/sha512";_de "encoding/binary";_ad "errors";_e "fmt";_df "github.com/unidoc/unipdf/v3/common";_d "hash"; -_g "io";_ae "math";);func (stdHandlerR4 )paddedPass (_acd []byte )[]byte {_cgb :=make ([]byte ,32);_ee :=copy (_cgb ,_acd );for ;_ee < 32;_ee ++{_cgb [_ee ]=_fg [_ee -len (_acd )];};return _cgb ;};var _ StdHandler =stdHandlerR4 {};type stdHandlerR4 struct{Length int ; -ID0 string ;}; +package security ;import (_cg "bytes";_fc "crypto/aes";_ga "crypto/cipher";_ea "crypto/md5";_e "crypto/rand";_ge "crypto/rc4";_bg "crypto/sha256";_gc "crypto/sha512";_c "encoding/binary";_d "errors";_a "fmt";_ed "github.com/unidoc/unipdf/v3/common";_b "hash"; +_f "io";_gcd "math";);var _ StdHandler =stdHandlerR6 {};func (_aff errInvalidField )Error ()string {return _a .Sprintf ("\u0025s\u003a\u0020e\u0078\u0070\u0065\u0063t\u0065\u0064\u0020%\u0073\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0074o \u0062\u0065\u0020%\u0064\u0020b\u0079\u0074\u0065\u0073\u002c\u0020g\u006f\u0074 \u0025\u0064",_aff .Func ,_aff .Field ,_aff .Exp ,_aff .Got ); +};func (_egg stdHandlerR6 )alg2b (R int ,_eab ,_cda ,_bed []byte )([]byte ,error ){if R ==5{return _ffc (_eab );};return _cac (_eab ,_cda ,_bed );};type stdHandlerR6 struct{}; -// StdEncryptDict is a set of additional fields used in standard encryption dictionary. -type StdEncryptDict struct{R int ;P Permissions ;EncryptMetadata bool ;O ,U []byte ;OE ,UE []byte ;Perms []byte ;};func (_gfd stdHandlerR6 )alg8 (_cbc *StdEncryptDict ,_gaf []byte ,_dbcg []byte )error {if _dae :=_af ("\u0061\u006c\u0067\u0038","\u004b\u0065\u0079",32,_gaf ); -_dae !=nil {return _dae ;};var _fgf [16]byte ;if _ ,_cad :=_g .ReadFull (_cb .Reader ,_fgf [:]);_cad !=nil {return _cad ;};_cfd :=_fgf [0:8];_fdf :=_fgf [8:16];_daa :=make ([]byte ,len (_dbcg )+len (_cfd ));_aed :=copy (_daa ,_dbcg );copy (_daa [_aed :],_cfd ); -_afae ,_edc :=_gfd .alg2b (_cbc .R ,_daa ,_dbcg ,nil );if _edc !=nil {return _edc ;};U :=make ([]byte ,len (_afae )+len (_cfd )+len (_fdf ));_aed =copy (U ,_afae [:32]);_aed +=copy (U [_aed :],_cfd );copy (U [_aed :],_fdf );_cbc .U =U ;_aed =len (_dbcg ); -copy (_daa [_aed :],_fdf );_afae ,_edc =_gfd .alg2b (_cbc .R ,_daa ,_dbcg ,nil );if _edc !=nil {return _edc ;};_gbg ,_edc :=_dfgd (_afae [:32]);if _edc !=nil {return _edc ;};_dfbg :=make ([]byte ,_aa .BlockSize );_efc :=_ce .NewCBCEncrypter (_gbg ,_dfbg ); -UE :=make ([]byte ,32);_efc .CryptBlocks (UE ,_gaf [:32]);_cbc .UE =UE ;return nil ;};func (_cd *ecbDecrypter )BlockSize ()int {return _cd ._dc };func _ga (_dd _ce .Block )*ecb {return &ecb {_cg :_dd ,_dc :_dd .BlockSize ()}};const (PermOwner =Permissions (_ae .MaxUint32 ); -PermPrinting =Permissions (1<<2);PermModify =Permissions (1<<3);PermExtractGraphics =Permissions (1<<4);PermAnnotate =Permissions (1<<5);PermFillForms =Permissions (1<<8);PermDisabilityExtract =Permissions (1<<9);PermRotateInsert =Permissions (1<<10);PermFullPrintQuality =Permissions (1<<11); -);func (_fge stdHandlerR6 )alg12 (_bgfg *StdEncryptDict ,_edg []byte )([]byte ,error ){if _daaa :=_af ("\u0061\u006c\u00671\u0032","\u0055",48,_bgfg .U );_daaa !=nil {return nil ,_daaa ;};if _egg :=_af ("\u0061\u006c\u00671\u0032","\u004f",48,_bgfg .O ); -_egg !=nil {return nil ,_egg ;};_aag :=make ([]byte ,len (_edg )+8+48);_ced :=copy (_aag ,_edg );_ced +=copy (_aag [_ced :],_bgfg .O [32:40]);_ced +=copy (_aag [_ced :],_bgfg .U [0:48]);_fgc ,_fcc :=_fge .alg2b (_bgfg .R ,_aag ,_edg ,_bgfg .U [0:48]);if _fcc !=nil {return nil ,_fcc ; -};_fgc =_fgc [:32];if !_adc .Equal (_fgc ,_bgfg .O [:32]){return nil ,nil ;};return _fgc ,nil ;};func (_adf stdHandlerR6 )alg11 (_fcd *StdEncryptDict ,_deb []byte )([]byte ,error ){if _faeb :=_af ("\u0061\u006c\u00671\u0031","\u0055",48,_fcd .U );_faeb !=nil {return nil ,_faeb ; -};_fbga :=make ([]byte ,len (_deb )+8);_bfc :=copy (_fbga ,_deb );_bfc +=copy (_fbga [_bfc :],_fcd .U [32:40]);_ggb ,_dde :=_adf .alg2b (_fcd .R ,_fbga ,_deb ,nil );if _dde !=nil {return nil ,_dde ;};_ggb =_ggb [:32];if !_adc .Equal (_ggb ,_fcd .U [:32]){return nil ,nil ; -};return _ggb ,nil ;};type stdHandlerR6 struct{};func (_cac errInvalidField )Error ()string {return _e .Sprintf ("\u0025s\u003a\u0020e\u0078\u0070\u0065\u0063t\u0065\u0064\u0020%\u0073\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0074o \u0062\u0065\u0020%\u0064\u0020b\u0079\u0074\u0065\u0073\u002c\u0020g\u006f\u0074 \u0025\u0064",_cac .Func ,_cac .Field ,_cac .Exp ,_cac .Got ); -};func (_cea *ecbEncrypter )CryptBlocks (dst ,src []byte ){if len (src )%_cea ._dc !=0{_df .Log .Error ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0045\u0043\u0042\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u003a \u0069\u006e\u0070\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u0075\u006c\u006c\u0020\u0062\u006c\u006f\u0063\u006b\u0073"); -return ;};if len (dst )< len (src ){_df .Log .Error ("\u0045R\u0052\u004fR\u003a\u0020\u0045C\u0042\u0020\u0065\u006e\u0063\u0072\u0079p\u0074\u003a\u0020\u006f\u0075\u0074p\u0075\u0074\u0020\u0073\u006d\u0061\u006c\u006c\u0065\u0072\u0020t\u0068\u0061\u006e\u0020\u0069\u006e\u0070\u0075\u0074"); -return ;};for len (src )> 0{_cea ._cg .Encrypt (dst ,src [:_cea ._dc ]);src =src [_cea ._dc :];dst =dst [_cea ._dc :];};};type ecbEncrypter ecb ; - -// Permissions is a bitmask of access permissions for a PDF file. -type Permissions uint32 ; +// GenerateParams generates and sets O and U parameters for the encryption dictionary. +// It expects R, P and EncryptMetadata fields to be set. +func (_cab stdHandlerR4 )GenerateParams (d *StdEncryptDict ,opass ,upass []byte )([]byte ,error ){O ,_aec :=_cab .alg3 (d .R ,upass ,opass );if _aec !=nil {_ed .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006ee\u0072\u0061\u0074\u0069\u006e\u0067 \u004f\u0020\u0066\u006f\u0072\u0020\u0065\u006e\u0063\u0072\u0079p\u0074\u0069\u006f\u006e\u0020\u0028\u0025\u0073\u0029",_aec ); +return nil ,_aec ;};d .O =O ;_ed .Log .Trace ("\u0067\u0065\u006e\u0020\u004f\u003a\u0020\u0025\u0020\u0078",O );_dab :=_cab .alg2 (d ,upass );U ,_aec :=_cab .alg5 (_dab ,upass );if _aec !=nil {_ed .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006ee\u0072\u0061\u0074\u0069\u006e\u0067 \u004f\u0020\u0066\u006f\u0072\u0020\u0065\u006e\u0063\u0072\u0079p\u0074\u0069\u006f\u006e\u0020\u0028\u0025\u0073\u0029",_aec ); +return nil ,_aec ;};d .U =U ;_ed .Log .Trace ("\u0067\u0065\u006e\u0020\u0055\u003a\u0020\u0025\u0020\u0078",U );return _dab ,nil ;}; // Authenticate implements StdHandler interface. -func (_ecg stdHandlerR4 )Authenticate (d *StdEncryptDict ,pass []byte )([]byte ,Permissions ,error ){_df .Log .Trace ("\u0044\u0065b\u0075\u0067\u0067\u0069n\u0067\u0020a\u0075\u0074\u0068\u0065\u006e\u0074\u0069\u0063a\u0074\u0069\u006f\u006e\u0020\u002d\u0020\u006f\u0077\u006e\u0065\u0072 \u0070\u0061\u0073\u0073"); -_ddg ,_fb :=_ecg .alg7 (d ,pass );if _fb !=nil {return nil ,0,_fb ;};if _ddg !=nil {_df .Log .Trace ("\u0074h\u0069\u0073\u002e\u0061u\u0074\u0068\u0065\u006e\u0074i\u0063a\u0074e\u0064\u0020\u003d\u0020\u0054\u0072\u0075e");return _ddg ,PermOwner ,nil ; -};_df .Log .Trace ("\u0044\u0065bu\u0067\u0067\u0069n\u0067\u0020\u0061\u0075the\u006eti\u0063\u0061\u0074\u0069\u006f\u006e\u0020- \u0075\u0073\u0065\u0072\u0020\u0070\u0061s\u0073");_ddg ,_fb =_ecg .alg6 (d ,pass );if _fb !=nil {return nil ,0,_fb ;}; -if _ddg !=nil {_df .Log .Trace ("\u0074h\u0069\u0073\u002e\u0061u\u0074\u0068\u0065\u006e\u0074i\u0063a\u0074e\u0064\u0020\u003d\u0020\u0054\u0072\u0075e");return _ddg ,d .P ,nil ;};return nil ,0,nil ;};func _fagd (_ebc []byte )([]byte ,error ){_bec :=_a .New (); -_bec .Write (_ebc );return _bec .Sum (nil ),nil ;};const (EventDocOpen =AuthEvent ("\u0044o\u0063\u004f\u0070\u0065\u006e");EventEFOpen =AuthEvent ("\u0045\u0046\u004f\u0070\u0065\u006e"););func _dfgd (_ffa []byte )(_ce .Block ,error ){_dg ,_ecc :=_aa .NewCipher (_ffa ); -if _ecc !=nil {_df .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0063\u0072\u0065\u0061\u0074\u0065\u0020A\u0045\u0053\u0020\u0063\u0069p\u0068\u0065r\u003a\u0020\u0025\u0076",_ecc ); -return nil ,_ecc ;};return _dg ,nil ;}; +func (_fgb stdHandlerR4 )Authenticate (d *StdEncryptDict ,pass []byte )([]byte ,Permissions ,error ){_ed .Log .Trace ("\u0044\u0065b\u0075\u0067\u0067\u0069n\u0067\u0020a\u0075\u0074\u0068\u0065\u006e\u0074\u0069\u0063a\u0074\u0069\u006f\u006e\u0020\u002d\u0020\u006f\u0077\u006e\u0065\u0072 \u0070\u0061\u0073\u0073"); +_afe ,_gda :=_fgb .alg7 (d ,pass );if _gda !=nil {return nil ,0,_gda ;};if _afe !=nil {_ed .Log .Trace ("\u0074h\u0069\u0073\u002e\u0061u\u0074\u0068\u0065\u006e\u0074i\u0063a\u0074e\u0064\u0020\u003d\u0020\u0054\u0072\u0075e");return _afe ,PermOwner ,nil ; +};_ed .Log .Trace ("\u0044\u0065bu\u0067\u0067\u0069n\u0067\u0020\u0061\u0075the\u006eti\u0063\u0061\u0074\u0069\u006f\u006e\u0020- \u0075\u0073\u0065\u0072\u0020\u0070\u0061s\u0073");_afe ,_gda =_fgb .alg6 (d ,pass );if _gda !=nil {return nil ,0,_gda ; +};if _afe !=nil {_ed .Log .Trace ("\u0074h\u0069\u0073\u002e\u0061u\u0074\u0068\u0065\u006e\u0074i\u0063a\u0074e\u0064\u0020\u003d\u0020\u0054\u0072\u0075e");return _afe ,d .P ,nil ;};return nil ,0,nil ;};func (_fe stdHandlerR4 )alg7 (_cbf *StdEncryptDict ,_aa []byte )([]byte ,error ){_daa :=_fe .alg3Key (_cbf .R ,_aa ); +_ecce :=make ([]byte ,len (_cbf .O ));if _cbf .R ==2{_gfec ,_acf :=_ge .NewCipher (_daa );if _acf !=nil {return nil ,_d .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0063\u0069\u0070\u0068\u0065\u0072");};_gfec .XORKeyStream (_ecce ,_cbf .O );}else if _cbf .R >=3{_bff :=append ([]byte {},_cbf .O ...); +for _ceg :=0;_ceg < 20;_ceg ++{_dfb :=append ([]byte {},_daa ...);for _cee :=0;_cee < len (_daa );_cee ++{_dfb [_cee ]^=byte (19-_ceg );};_dc ,_aea :=_ge .NewCipher (_dfb );if _aea !=nil {return nil ,_d .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0063\u0069\u0070\u0068\u0065\u0072"); +};_dc .XORKeyStream (_ecce ,_bff );_bff =append ([]byte {},_ecce ...);};}else {return nil ,_d .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020R");};_fcff ,_fef :=_fe .alg6 (_cbf ,_ecce );if _fef !=nil {return nil ,nil ;};return _fcff ,nil ;}; + +// NewHandlerR4 creates a new standard security handler for R<=4. +func NewHandlerR4 (id0 string ,length int )StdHandler {return stdHandlerR4 {ID0 :id0 ,Length :length }};func (_abe *ecbEncrypter )CryptBlocks (dst ,src []byte ){if len (src )%_abe ._ab !=0{_ed .Log .Error ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0045\u0043\u0042\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u003a \u0069\u006e\u0070\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u0075\u006c\u006c\u0020\u0062\u006c\u006f\u0063\u006b\u0073"); +return ;};if len (dst )< len (src ){_ed .Log .Error ("\u0045R\u0052\u004fR\u003a\u0020\u0045C\u0042\u0020\u0065\u006e\u0063\u0072\u0079p\u0074\u003a\u0020\u006f\u0075\u0074p\u0075\u0074\u0020\u0073\u006d\u0061\u006c\u006c\u0065\u0072\u0020t\u0068\u0061\u006e\u0020\u0069\u006e\u0070\u0075\u0074"); +return ;};for len (src )> 0{_abe ._gg .Encrypt (dst ,src [:_abe ._ab ]);src =src [_abe ._ab :];dst =dst [_abe ._ab :];};};func _cac (_fdd ,_cga ,_ecea []byte )([]byte ,error ){var (_efg ,_eag ,_acg _b .Hash ;);_efg =_bg .New ();_eee :=make ([]byte ,64); +_bgb :=_efg ;_bgb .Write (_fdd );K :=_bgb .Sum (_eee [:0]);_bba :=make ([]byte ,64*(127+64+48));_fce :=func (_dabe int )([]byte ,error ){_aba :=len (_cga )+len (K )+len (_ecea );_bfe :=_bba [:_aba ];_bec :=copy (_bfe ,_cga );_bec +=copy (_bfe [_bec :],K [:]); +_bec +=copy (_bfe [_bec :],_ecea );if _bec !=_aba {_ed .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020u\u006e\u0065\u0078\u0070\u0065\u0063t\u0065\u0064\u0020\u0072\u006f\u0075\u006ed\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0073\u0069\u007ae\u002e"); +return nil ,_d .New ("\u0077\u0072\u006f\u006e\u0067\u0020\u0073\u0069\u007a\u0065");};K1 :=_bba [:_aba *64];_dcg (K1 ,_aba );_fcfa ,_gfd :=_ebe (K [0:16]);if _gfd !=nil {return nil ,_gfd ;};_dega :=_ga .NewCBCEncrypter (_fcfa ,K [16:32]);_dega .CryptBlocks (K1 ,K1 ); +E :=K1 ;_abg :=0;for _ffd :=0;_ffd < 16;_ffd ++{_abg +=int (E [_ffd ]%3);};var _gaee _b .Hash ;switch _abg %3{case 0:_gaee =_efg ;case 1:if _eag ==nil {_eag =_gc .New384 ();};_gaee =_eag ;case 2:if _acg ==nil {_acg =_gc .New ();};_gaee =_acg ;};_gaee .Reset (); +_gaee .Write (E );K =_gaee .Sum (_eee [:0]);return E ,nil ;};for _agf :=0;;{E ,_daf :=_fce (_agf );if _daf !=nil {return nil ,_daf ;};_bccb :=E [len (E )-1];_agf ++;if _agf >=64&&_bccb <=uint8 (_agf -32){break ;};};return K [:32],nil ;};type ecbDecrypter ecb ; +func (_bd stdHandlerR4 )alg4 (_deg []byte ,_fae []byte )([]byte ,error ){_cbg ,_aed :=_ge .NewCipher (_deg );if _aed !=nil {return nil ,_d .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068");};_gdc :=[]byte (_cb ); +_gde :=make ([]byte ,len (_gdc ));_cbg .XORKeyStream (_gde ,_gdc );return _gde ,nil ;}; // AuthEvent is an event type that triggers authentication. -type AuthEvent string ;func (_adb stdHandlerR6 )alg13 (_afe *StdEncryptDict ,_aba []byte )error {if _eaa :=_af ("\u0061\u006c\u00671\u0033","\u004b\u0065\u0079",32,_aba );_eaa !=nil {return _eaa ;};if _afcg :=_af ("\u0061\u006c\u00671\u0033","\u0050\u0065\u0072m\u0073",16,_afe .Perms ); -_afcg !=nil {return _afcg ;};_cddd :=make ([]byte ,16);copy (_cddd ,_afe .Perms [:16]);_bdg ,_gga :=_aa .NewCipher (_aba [:32]);if _gga !=nil {return _gga ;};_ffff :=_ba (_bdg );_ffff .CryptBlocks (_cddd ,_cddd );if !_adc .Equal (_cddd [9:12],[]byte ("\u0061\u0064\u0062")){return _ad .New ("\u0064\u0065\u0063o\u0064\u0065\u0064\u0020p\u0065\u0072\u006d\u0069\u0073\u0073\u0069o\u006e\u0073\u0020\u0061\u0072\u0065\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064"); -};_bcb :=Permissions (_de .LittleEndian .Uint32 (_cddd [0:4]));if _bcb !=_afe .P {return _ad .New ("\u0070\u0065r\u006d\u0069\u0073\u0073\u0069\u006f\u006e\u0073\u0020\u0076\u0061\u006c\u0069\u0064\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u0061il\u0065\u0064"); -};var _cgfd bool ;if _cddd [8]=='T'{_cgfd =true ;}else if _cddd [8]=='F'{_cgfd =false ;}else {return _ad .New ("\u0064\u0065\u0063\u006f\u0064\u0065\u0064 \u006d\u0065\u0074a\u0064\u0061\u0074\u0061 \u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u0066\u006c\u0061\u0067\u0020\u0069\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064"); -};if _cgfd !=_afe .EncryptMetadata {return _ad .New ("\u006d\u0065t\u0061\u0064\u0061\u0074a\u0020\u0065n\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e \u0076\u0061\u006c\u0069\u0064\u0061\u0074\u0069\u006f\u006e\u0020\u0066a\u0069\u006c\u0065\u0064"); -};return nil ;};var _ StdHandler =stdHandlerR6 {}; +type AuthEvent string ;func (_fada stdHandlerR6 )alg13 (_gedc *StdEncryptDict ,_dgbc []byte )error {if _abgb :=_ac ("\u0061\u006c\u00671\u0033","\u004b\u0065\u0079",32,_dgbc );_abgb !=nil {return _abgb ;};if _bbg :=_ac ("\u0061\u006c\u00671\u0033","\u0050\u0065\u0072m\u0073",16,_gedc .Perms ); +_bbg !=nil {return _bbg ;};_geg :=make ([]byte ,16);copy (_geg ,_gedc .Perms [:16]);_cbe ,_egge :=_fc .NewCipher (_dgbc [:32]);if _egge !=nil {return _egge ;};_eec :=_fb (_cbe );_eec .CryptBlocks (_geg ,_geg );if !_cg .Equal (_geg [9:12],[]byte ("\u0061\u0064\u0062")){return _d .New ("\u0064\u0065\u0063o\u0064\u0065\u0064\u0020p\u0065\u0072\u006d\u0069\u0073\u0073\u0069o\u006e\u0073\u0020\u0061\u0072\u0065\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064"); +};_abee :=Permissions (_c .LittleEndian .Uint32 (_geg [0:4]));if _abee !=_gedc .P {return _d .New ("\u0070\u0065r\u006d\u0069\u0073\u0073\u0069\u006f\u006e\u0073\u0020\u0076\u0061\u006c\u0069\u0064\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u0061il\u0065\u0064"); +};var _gfg bool ;if _geg [8]=='T'{_gfg =true ;}else if _geg [8]=='F'{_gfg =false ;}else {return _d .New ("\u0064\u0065\u0063\u006f\u0064\u0065\u0064 \u006d\u0065\u0074a\u0064\u0061\u0074\u0061 \u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e\u0020\u0066\u006c\u0061\u0067\u0020\u0069\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064"); +};if _gfg !=_gedc .EncryptMetadata {return _d .New ("\u006d\u0065t\u0061\u0064\u0061\u0074a\u0020\u0065n\u0063\u0072\u0079\u0070\u0074\u0069\u006f\u006e \u0076\u0061\u006c\u0069\u0064\u0061\u0074\u0069\u006f\u006e\u0020\u0066a\u0069\u006c\u0065\u0064"); +};return nil ;};func (_afeg stdHandlerR6 )alg12 (_dgg *StdEncryptDict ,_agg []byte )([]byte ,error ){if _gdec :=_ac ("\u0061\u006c\u00671\u0032","\u0055",48,_dgg .U );_gdec !=nil {return nil ,_gdec ;};if _cdeg :=_ac ("\u0061\u006c\u00671\u0032","\u004f",48,_dgg .O ); +_cdeg !=nil {return nil ,_cdeg ;};_fad :=make ([]byte ,len (_agg )+8+48);_egc :=copy (_fad ,_agg );_egc +=copy (_fad [_egc :],_dgg .O [32:40]);_egc +=copy (_fad [_egc :],_dgg .U [0:48]);_egcf ,_bfeb :=_afeg .alg2b (_dgg .R ,_fad ,_agg ,_dgg .U [0:48]); +if _bfeb !=nil {return nil ,_bfeb ;};_egcf =_egcf [:32];if !_cg .Equal (_egcf ,_dgg .O [:32]){return nil ,nil ;};return _egcf ,nil ;};var _ StdHandler =stdHandlerR4 {};func (_bc stdHandlerR4 )alg3 (R int ,_bef ,_cf []byte )([]byte ,error ){var _ba []byte ; +if len (_cf )> 0{_ba =_bc .alg3Key (R ,_cf );}else {_ba =_bc .alg3Key (R ,_bef );};_bbd ,_ecc :=_ge .NewCipher (_ba );if _ecc !=nil {return nil ,_d .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068");};_cgf :=_bc .paddedPass (_bef ); +_gfb :=make ([]byte ,len (_cgf ));_bbd .XORKeyStream (_gfb ,_cgf );if R >=3{_fbd :=make ([]byte ,len (_ba ));for _gd :=0;_gd < 19;_gd ++{for _cd :=0;_cd < len (_ba );_cd ++{_fbd [_cd ]=_ba [_cd ]^byte (_gd +1);};_fcf ,_gdf :=_ge .NewCipher (_fbd );if _gdf !=nil {return nil ,_d .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068"); +};_fcf .XORKeyStream (_gfb ,_gfb );};};return _gfb ,nil ;};func (_ff stdHandlerR4 )alg3Key (R int ,_afff []byte )[]byte {_afffb :=_ea .New ();_gfe :=_ff .paddedPass (_afff );_afffb .Write (_gfe );if R >=3{for _edg :=0;_edg < 50;_edg ++{_ag :=_afffb .Sum (nil ); +_afffb =_ea .New ();_afffb .Write (_ag );};};_bb :=_afffb .Sum (nil );if R ==2{_bb =_bb [0:5];}else {_bb =_bb [0:_ff .Length /8];};return _bb ;};func (_aeg stdHandlerR4 )alg6 (_eg *StdEncryptDict ,_bdd []byte )([]byte ,error ){var (_abea []byte ;_gaeb error ; +);_fde :=_aeg .alg2 (_eg ,_bdd );if _eg .R ==2{_abea ,_gaeb =_aeg .alg4 (_fde ,_bdd );}else if _eg .R >=3{_abea ,_gaeb =_aeg .alg5 (_fde ,_bdd );}else {return nil ,_d .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020R");};if _gaeb !=nil {return nil ,_gaeb ; +};_ed .Log .Trace ("\u0063\u0068\u0065\u0063k:\u0020\u0025\u0020\u0078\u0020\u003d\u003d\u0020\u0025\u0020\u0078\u0020\u003f",string (_abea ),string (_eg .U ));_gag :=_abea ;_dfe :=_eg .U ;if _eg .R >=3{if len (_gag )> 16{_gag =_gag [0:16];};if len (_dfe )> 16{_dfe =_dfe [0:16]; +};};if !_cg .Equal (_gag ,_dfe ){return nil ,nil ;};return _fde ,nil ;};type stdHandlerR4 struct{Length int ;ID0 string ;};const _cb ="\x28\277\116\136\x4e\x75\x8a\x41\x64\000\x4e\x56\377"+"\xfa\001\010\056\x2e\x00\xb6\xd0\x68\076\x80\x2f\014"+"\251\xfe\x64\x53\x69\172"; +type ecb struct{_gg _ga .Block ;_ab int ;};func (_eage stdHandlerR6 )alg11 (_feb *StdEncryptDict ,_dga []byte )([]byte ,error ){if _gbd :=_ac ("\u0061\u006c\u00671\u0031","\u0055",48,_feb .U );_gbd !=nil {return nil ,_gbd ;};_edfg :=make ([]byte ,len (_dga )+8); +_gadf :=copy (_edfg ,_dga );_gadf +=copy (_edfg [_gadf :],_feb .U [32:40]);_accd ,_cgg :=_eage .alg2b (_feb .R ,_edfg ,_dga ,nil );if _cgg !=nil {return nil ,_cgg ;};_accd =_accd [:32];if !_cg .Equal (_accd ,_feb .U [:32]){return nil ,nil ;};return _accd ,nil ; +};func (stdHandlerR4 )paddedPass (_caf []byte )[]byte {_dd :=make ([]byte ,32);_ae :=copy (_dd ,_caf );for ;_ae < 32;_ae ++{_dd [_ae ]=_cb [_ae -len (_caf )];};return _dd ;}; // NewHandlerR6 creates a new standard security handler for R=5 and R=6. -func NewHandlerR6 ()StdHandler {return stdHandlerR6 {}};func (_efd stdHandlerR4 )alg4 (_fd []byte ,_gcg []byte )([]byte ,error ){_cfc ,_eea :=_f .NewCipher (_fd );if _eea !=nil {return nil ,_ad .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068"); -};_fed :=[]byte (_fg );_fac :=make ([]byte ,len (_fed ));_cfc .XORKeyStream (_fac ,_fed );return _fac ,nil ;};func (_adcd stdHandlerR4 )alg3 (R int ,_fe ,_efa []byte )([]byte ,error ){var _aaf []byte ;if len (_efa )> 0{_aaf =_adcd .alg3Key (R ,_efa );}else {_aaf =_adcd .alg3Key (R ,_fe ); -};_gb ,_gad :=_f .NewCipher (_aaf );if _gad !=nil {return nil ,_ad .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068");};_dbf :=_adcd .paddedPass (_fe );_aga :=make ([]byte ,len (_dbf ));_gb .XORKeyStream (_aga ,_dbf ); -if R >=3{_aee :=make ([]byte ,len (_aaf ));for _caf :=0;_caf < 19;_caf ++{for _fa :=0;_fa < len (_aaf );_fa ++{_aee [_fa ]=_aaf [_fa ]^byte (_caf +1);};_ge ,_dca :=_f .NewCipher (_aee );if _dca !=nil {return nil ,_ad .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068"); -};_ge .XORKeyStream (_aga ,_aga );};};return _aga ,nil ;}; +func NewHandlerR6 ()StdHandler {return stdHandlerR6 {}};func _dcg (_gfa []byte ,_ccce int ){_acc :=_ccce ;for _acc < len (_gfa ){copy (_gfa [_acc :],_gfa [:_acc ]);_acc *=2;};};func _eb (_fa _ga .Block )*ecb {return &ecb {_gg :_fa ,_ab :_fa .BlockSize ()}}; +const (PermOwner =Permissions (_gcd .MaxUint32 );PermPrinting =Permissions (1<<2);PermModify =Permissions (1<<3);PermExtractGraphics =Permissions (1<<4);PermAnnotate =Permissions (1<<5);PermFillForms =Permissions (1<<8);PermDisabilityExtract =Permissions (1<<9); +PermRotateInsert =Permissions (1<<10);PermFullPrintQuality =Permissions (1<<11);); -// NewHandlerR4 creates a new standard security handler for R<=4. -func NewHandlerR4 (id0 string ,length int )StdHandler {return stdHandlerR4 {ID0 :id0 ,Length :length }};func (_bfbc stdHandlerR6 )alg9 (_feg *StdEncryptDict ,_ebe []byte ,_fafg []byte )error {if _bae :=_af ("\u0061\u006c\u0067\u0039","\u004b\u0065\u0079",32,_ebe ); -_bae !=nil {return _bae ;};if _aae :=_af ("\u0061\u006c\u0067\u0039","\u0055",48,_feg .U );_aae !=nil {return _aae ;};var _cgbda [16]byte ;if _ ,_edafg :=_g .ReadFull (_cb .Reader ,_cgbda [:]);_edafg !=nil {return _edafg ;};_faec :=_cgbda [0:8];_agb :=_cgbda [8:16]; -_baff :=_feg .U [:48];_cgf :=make ([]byte ,len (_fafg )+len (_faec )+len (_baff ));_edfg :=copy (_cgf ,_fafg );_edfg +=copy (_cgf [_edfg :],_faec );_edfg +=copy (_cgf [_edfg :],_baff );_egff ,_adcg :=_bfbc .alg2b (_feg .R ,_cgf ,_fafg ,_baff );if _adcg !=nil {return _adcg ; -};O :=make ([]byte ,len (_egff )+len (_faec )+len (_agb ));_edfg =copy (O ,_egff [:32]);_edfg +=copy (O [_edfg :],_faec );_edfg +=copy (O [_edfg :],_agb );_feg .O =O ;_edfg =len (_fafg );_edfg +=copy (_cgf [_edfg :],_agb );_egff ,_adcg =_bfbc .alg2b (_feg .R ,_cgf ,_fafg ,_baff ); -if _adcg !=nil {return _adcg ;};_dgc ,_adcg :=_dfgd (_egff [:32]);if _adcg !=nil {return _adcg ;};_gbbg :=make ([]byte ,_aa .BlockSize );_bfe :=_ce .NewCBCEncrypter (_dgc ,_gbbg );OE :=make ([]byte ,32);_bfe .CryptBlocks (OE ,_ebe [:32]);_feg .OE =OE ; -return nil ;}; +// Permissions is a bitmask of access permissions for a PDF file. +type Permissions uint32 ;func (_da stdHandlerR4 )alg2 (_ced *StdEncryptDict ,_be []byte )[]byte {_ed .Log .Trace ("\u0061\u006c\u0067\u0032");_gga :=_da .paddedPass (_be );_de :=_ea .New ();_de .Write (_gga );_de .Write (_ced .O );var _eff [4]byte ;_c .LittleEndian .PutUint32 (_eff [:],uint32 (_ced .P )); +_de .Write (_eff [:]);_ed .Log .Trace ("\u0067o\u0020\u0050\u003a\u0020\u0025\u0020x",_eff );_de .Write ([]byte (_da .ID0 ));_ed .Log .Trace ("\u0074\u0068\u0069\u0073\u002e\u0052\u0020\u003d\u0020\u0025d\u0020\u0065\u006e\u0063\u0072\u0079\u0070t\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020\u0025\u0076",_ced .R ,_ced .EncryptMetadata ); +if (_ced .R >=4)&&!_ced .EncryptMetadata {_de .Write ([]byte {0xff,0xff,0xff,0xff});};_db :=_de .Sum (nil );if _ced .R >=3{_de =_ea .New ();for _ggc :=0;_ggc < 50;_ggc ++{_de .Reset ();_de .Write (_db [0:_da .Length /8]);_db =_de .Sum (nil );};};if _ced .R >=3{return _db [0:_da .Length /8]; +};return _db [0:5];}; // StdHandler is an interface for standard security handlers. type StdHandler interface{ // GenerateParams uses owner and user passwords to set encryption parameters and generate an encryption key. // It assumes that R, P and EncryptMetadata are already set. -GenerateParams (_ef *StdEncryptDict ,_gd ,_cf []byte )([]byte ,error ); +GenerateParams (_ef *StdEncryptDict ,_gf ,_gb []byte )([]byte ,error ); // Authenticate uses encryption dictionary parameters and the password to calculate // the document encryption key. It also returns permissions that should be granted to a user. // In case of failed authentication, it returns empty key and zero permissions with no error. -Authenticate (_ca *StdEncryptDict ,_ed []byte )([]byte ,Permissions ,error );};func _ac (_ddb _ce .Block )_ce .BlockMode {return (*ecbEncrypter )(_ga (_ddb ))};type errInvalidField struct{Func string ;Field string ;Exp int ;Got int ;};func _bab (_egf []byte ,_cfcb int ){_fga :=_cfcb ; -for _fga < len (_egf ){copy (_egf [_fga :],_egf [:_fga ]);_fga *=2;};};func (_db *ecbEncrypter )BlockSize ()int {return _db ._dc };func (_ffd stdHandlerR4 )alg3Key (R int ,_gc []byte )[]byte {_gg :=_fc .New ();_cga :=_ffd .paddedPass (_gc );_gg .Write (_cga ); -if R >=3{for _dff :=0;_dff < 50;_dff ++{_dfb :=_gg .Sum (nil );_gg =_fc .New ();_gg .Write (_dfb );};};_gde :=_gg .Sum (nil );if R ==2{_gde =_gde [0:5];}else {_gde =_gde [0:_ffd .Length /8];};return _gde ;};type ecb struct{_cg _ce .Block ;_dc int ;}; +Authenticate (_gaa *StdEncryptDict ,_ca []byte )([]byte ,Permissions ,error );};func (_ebd stdHandlerR6 )alg8 (_fed *StdEncryptDict ,_dda []byte ,_gec []byte )error {if _bde :=_ac ("\u0061\u006c\u0067\u0038","\u004b\u0065\u0079",32,_dda );_bde !=nil {return _bde ; +};var _fee [16]byte ;if _ ,_dbc :=_f .ReadFull (_e .Reader ,_fee [:]);_dbc !=nil {return _dbc ;};_eabf :=_fee [0:8];_ebde :=_fee [8:16];_dgf :=make ([]byte ,len (_gec )+len (_eabf ));_afb :=copy (_dgf ,_gec );copy (_dgf [_afb :],_eabf );_fbc ,_cgfb :=_ebd .alg2b (_fed .R ,_dgf ,_gec ,nil ); +if _cgfb !=nil {return _cgfb ;};U :=make ([]byte ,len (_fbc )+len (_eabf )+len (_ebde ));_afb =copy (U ,_fbc [:32]);_afb +=copy (U [_afb :],_eabf );copy (U [_afb :],_ebde );_fed .U =U ;_afb =len (_gec );copy (_dgf [_afb :],_ebde );_fbc ,_cgfb =_ebd .alg2b (_fed .R ,_dgf ,_gec ,nil ); +if _cgfb !=nil {return _cgfb ;};_cgag ,_cgfb :=_ebe (_fbc [:32]);if _cgfb !=nil {return _cgfb ;};_ffa :=make ([]byte ,_fc .BlockSize );_cgfd :=_ga .NewCBCEncrypter (_cgag ,_ffa );UE :=make ([]byte ,32);_cgfd .CryptBlocks (UE ,_dda [:32]);_fed .UE =UE ; +return nil ;};func _ffc (_ege []byte )([]byte ,error ){_dbb :=_bg .New ();_dbb .Write (_ege );return _dbb .Sum (nil ),nil ;};func _ac (_fd ,_df string ,_ggg int ,_dfg []byte )error {if len (_dfg )< _ggg {return errInvalidField {Func :_fd ,Field :_df ,Exp :_ggg ,Got :len (_dfg )}; +};return nil ;};func (_gae *ecbEncrypter )BlockSize ()int {return _gae ._ab };type ecbEncrypter ecb ;func (_eabc stdHandlerR6 )alg9 (_ccd *StdEncryptDict ,_ebdc []byte ,_cca []byte )error {if _cffb :=_ac ("\u0061\u006c\u0067\u0039","\u004b\u0065\u0079",32,_ebdc ); +_cffb !=nil {return _cffb ;};if _dgb :=_ac ("\u0061\u006c\u0067\u0039","\u0055",48,_ccd .U );_dgb !=nil {return _dgb ;};var _eeef [16]byte ;if _ ,_afd :=_f .ReadFull (_e .Reader ,_eeef [:]);_afd !=nil {return _afd ;};_age :=_eeef [0:8];_fea :=_eeef [8:16]; +_dfgg :=_ccd .U [:48];_aac :=make ([]byte ,len (_cca )+len (_age )+len (_dfgg ));_bece :=copy (_aac ,_cca );_bece +=copy (_aac [_bece :],_age );_bece +=copy (_aac [_bece :],_dfgg );_bab ,_bbc :=_eabc .alg2b (_ccd .R ,_aac ,_cca ,_dfgg );if _bbc !=nil {return _bbc ; +};O :=make ([]byte ,len (_bab )+len (_age )+len (_fea ));_bece =copy (O ,_bab [:32]);_bece +=copy (O [_bece :],_age );_bece +=copy (O [_bece :],_fea );_ccd .O =O ;_bece =len (_cca );_bece +=copy (_aac [_bece :],_fea );_bab ,_bbc =_eabc .alg2b (_ccd .R ,_aac ,_cca ,_dfgg ); +if _bbc !=nil {return _bbc ;};_becd ,_bbc :=_ebe (_bab [:32]);if _bbc !=nil {return _bbc ;};_edf :=make ([]byte ,_fc .BlockSize );_aaee :=_ga .NewCBCEncrypter (_becd ,_edf );OE :=make ([]byte ,32);_aaee .CryptBlocks (OE ,_ebdc [:32]);_ccd .OE =OE ;return nil ; +}; + +// Allowed checks if a set of permissions can be granted. +func (_ad Permissions )Allowed (p2 Permissions )bool {return _ad &p2 ==p2 };func (_gef stdHandlerR6 )alg2a (_bac *StdEncryptDict ,_dg []byte )([]byte ,Permissions ,error ){if _bgg :=_ac ("\u0061\u006c\u00672\u0061","\u004f",48,_bac .O );_bgg !=nil {return nil ,0,_bgg ; +};if _bcc :=_ac ("\u0061\u006c\u00672\u0061","\u0055",48,_bac .U );_bcc !=nil {return nil ,0,_bcc ;};if len (_dg )> 127{_dg =_dg [:127];};_abf ,_egb :=_gef .alg12 (_bac ,_dg );if _egb !=nil {return nil ,0,_egb ;};var (_gff []byte ;_bbdb []byte ;_ged []byte ; +);var _aae Permissions ;if len (_abf )!=0{_aae =PermOwner ;_gcf :=make ([]byte ,len (_dg )+8+48);_ccg :=copy (_gcf ,_dg );_ccg +=copy (_gcf [_ccg :],_bac .O [40:48]);copy (_gcf [_ccg :],_bac .U [0:48]);_gff =_gcf ;_bbdb =_bac .OE ;_ged =_bac .U [0:48]; +}else {_abf ,_egb =_gef .alg11 (_bac ,_dg );if _egb ==nil &&len (_abf )==0{_abf ,_egb =_gef .alg11 (_bac ,[]byte (""));};if _egb !=nil {return nil ,0,_egb ;}else if len (_abf )==0{return nil ,0,nil ;};_aae =_bac .P ;_dfeb :=make ([]byte ,len (_dg )+8); +_dad :=copy (_dfeb ,_dg );copy (_dfeb [_dad :],_bac .U [40:48]);_gff =_dfeb ;_bbdb =_bac .UE ;_ged =nil ;};if _aee :=_ac ("\u0061\u006c\u00672\u0061","\u004b\u0065\u0079",32,_bbdb );_aee !=nil {return nil ,0,_aee ;};_bbdb =_bbdb [:32];_afa ,_egb :=_gef .alg2b (_bac .R ,_gff ,_dg ,_ged ); +if _egb !=nil {return nil ,0,_egb ;};_cbgg ,_egb :=_fc .NewCipher (_afa [:32]);if _egb !=nil {return nil ,0,_egb ;};_fgd :=make ([]byte ,_fc .BlockSize );_gaga :=_ga .NewCBCDecrypter (_cbgg ,_fgd );_ece :=make ([]byte ,32);_gaga .CryptBlocks (_ece ,_bbdb ); +if _bac .R ==5{return _ece ,_aae ,nil ;};_egb =_gef .alg13 (_bac ,_ece );if _egb !=nil {return nil ,0,_egb ;};return _ece ,_aae ,nil ;};func (_cc *ecbDecrypter )CryptBlocks (dst ,src []byte ){if len (src )%_cc ._ab !=0{_ed .Log .Error ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0045\u0043\u0042\u0020\u0064\u0065\u0063\u0072\u0079\u0070\u0074\u003a \u0069\u006e\u0070\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u0075\u006c\u006c\u0020\u0062\u006c\u006f\u0063\u006b\u0073"); +return ;};if len (dst )< len (src ){_ed .Log .Error ("\u0045R\u0052\u004fR\u003a\u0020\u0045C\u0042\u0020\u0064\u0065\u0063\u0072\u0079p\u0074\u003a\u0020\u006f\u0075\u0074p\u0075\u0074\u0020\u0073\u006d\u0061\u006c\u006c\u0065\u0072\u0020t\u0068\u0061\u006e\u0020\u0069\u006e\u0070\u0075\u0074"); +return ;};for len (src )> 0{_cc ._gg .Decrypt (dst ,src [:_cc ._ab ]);src =src [_cc ._ab :];dst =dst [_cc ._ab :];};}; + +// Authenticate implements StdHandler interface. +func (_gce stdHandlerR6 )Authenticate (d *StdEncryptDict ,pass []byte )([]byte ,Permissions ,error ){return _gce .alg2a (d ,pass );};func _ebe (_cbc []byte )(_ga .Block ,error ){_gbg ,_ee :=_fc .NewCipher (_cbc );if _ee !=nil {_ed .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0063\u0072\u0065\u0061\u0074\u0065\u0020A\u0045\u0053\u0020\u0063\u0069p\u0068\u0065r\u003a\u0020\u0025\u0076",_ee ); +return nil ,_ee ;};return _gbg ,nil ;}; + +// StdEncryptDict is a set of additional fields used in standard encryption dictionary. +type StdEncryptDict struct{R int ;P Permissions ;EncryptMetadata bool ;O ,U []byte ;OE ,UE []byte ;Perms []byte ;};const (EventDocOpen =AuthEvent ("\u0044o\u0063\u004f\u0070\u0065\u006e");EventEFOpen =AuthEvent ("\u0045\u0046\u004f\u0070\u0065\u006e"); +);type errInvalidField struct{Func string ;Field string ;Exp int ;Got int ;};func (_cae stdHandlerR4 )alg5 (_ccc []byte ,_cff []byte )([]byte ,error ){_eba :=_ea .New ();_eba .Write ([]byte (_cb ));_eba .Write ([]byte (_cae .ID0 ));_cde :=_eba .Sum (nil ); +_ed .Log .Trace ("\u0061\u006c\u0067\u0035");_ed .Log .Trace ("\u0065k\u0065\u0079\u003a\u0020\u0025\u0020x",_ccc );_ed .Log .Trace ("\u0049D\u003a\u0020\u0025\u0020\u0078",_cae .ID0 );if len (_cde )!=16{return nil ,_d .New ("\u0068a\u0073\u0068\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074\u0020\u0031\u0036\u0020\u0062\u0079\u0074\u0065\u0073"); +};_aca ,_fcg :=_ge .NewCipher (_ccc );if _fcg !=nil {return nil ,_d .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068");};_fba :=make ([]byte ,16);_aca .XORKeyStream (_fba ,_cde );_bda :=make ([]byte ,len (_ccc )); +for _geb :=0;_geb < 19;_geb ++{for _dbg :=0;_dbg < len (_ccc );_dbg ++{_bda [_dbg ]=_ccc [_dbg ]^byte (_geb +1);};_aca ,_fcg =_ge .NewCipher (_bda );if _fcg !=nil {return nil ,_d .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068"); +};_aca .XORKeyStream (_fba ,_fba );_ed .Log .Trace ("\u0069\u0020\u003d\u0020\u0025\u0064\u002c\u0020\u0065\u006b\u0065\u0079:\u0020\u0025\u0020\u0078",_geb ,_bda );_ed .Log .Trace ("\u0069\u0020\u003d\u0020\u0025\u0064\u0020\u002d\u003e\u0020\u0025\u0020\u0078",_geb ,_fba ); +};_dae :=make ([]byte ,32);for _adb :=0;_adb < 16;_adb ++{_dae [_adb ]=_fba [_adb ];};_ ,_fcg =_e .Read (_dae [16:32]);if _fcg !=nil {return nil ,_d .New ("\u0066a\u0069\u006c\u0065\u0064 \u0074\u006f\u0020\u0067\u0065n\u0020r\u0061n\u0064\u0020\u006e\u0075\u006d\u0062\u0065r"); +};return _dae ,nil ;};func _fg (_bf _ga .Block )_ga .BlockMode {return (*ecbEncrypter )(_eb (_bf ))}; // GenerateParams is the algorithm opposite to alg2a (R>=5). // It generates U,O,UE,OE,Perms fields using AESv3 encryption. // There is no algorithm number assigned to this function in the spec. // It expects R, P and EncryptMetadata fields to be set. -func (_gfb stdHandlerR6 )GenerateParams (d *StdEncryptDict ,opass ,upass []byte )([]byte ,error ){_edag :=make ([]byte ,32);if _ ,_cgba :=_g .ReadFull (_cb .Reader ,_edag );_cgba !=nil {return nil ,_cgba ;};d .U =nil ;d .O =nil ;d .UE =nil ;d .OE =nil ; -d .Perms =nil ;if len (upass )> 127{upass =upass [:127];};if len (opass )> 127{opass =opass [:127];};if _fbe :=_gfb .alg8 (d ,_edag ,upass );_fbe !=nil {return nil ,_fbe ;};if _dec :=_gfb .alg9 (d ,_edag ,opass );_dec !=nil {return nil ,_dec ;};if d .R ==5{return _edag ,nil ; -};if _aeg :=_gfb .alg10 (d ,_edag );_aeg !=nil {return nil ,_aeg ;};return _edag ,nil ;};func (_ebg stdHandlerR4 )alg2 (_ag *StdEncryptDict ,_ff []byte )[]byte {_df .Log .Trace ("\u0061\u006c\u0067\u0032");_bag :=_ebg .paddedPass (_ff );_gf :=_fc .New (); -_gf .Write (_bag );_gf .Write (_ag .O );var _bfb [4]byte ;_de .LittleEndian .PutUint32 (_bfb [:],uint32 (_ag .P ));_gf .Write (_bfb [:]);_df .Log .Trace ("\u0067o\u0020\u0050\u003a\u0020\u0025\u0020x",_bfb );_gf .Write ([]byte (_ebg .ID0 ));_df .Log .Trace ("\u0074\u0068\u0069\u0073\u002e\u0052\u0020\u003d\u0020\u0025d\u0020\u0065\u006e\u0063\u0072\u0079\u0070t\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020\u0025\u0076",_ag .R ,_ag .EncryptMetadata ); -if (_ag .R >=4)&&!_ag .EncryptMetadata {_gf .Write ([]byte {0xff,0xff,0xff,0xff});};_cc :=_gf .Sum (nil );if _ag .R >=3{_gf =_fc .New ();for _bg :=0;_bg < 50;_bg ++{_gf .Reset ();_gf .Write (_cc [0:_ebg .Length /8]);_cc =_gf .Sum (nil );};};if _ag .R >=3{return _cc [0:_ebg .Length /8]; -};return _cc [0:5];}; - -// GenerateParams generates and sets O and U parameters for the encryption dictionary. -// It expects R, P and EncryptMetadata fields to be set. -func (_bgf stdHandlerR4 )GenerateParams (d *StdEncryptDict ,opass ,upass []byte )([]byte ,error ){O ,_ggd :=_bgf .alg3 (d .R ,upass ,opass );if _ggd !=nil {_df .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006ee\u0072\u0061\u0074\u0069\u006e\u0067 \u004f\u0020\u0066\u006f\u0072\u0020\u0065\u006e\u0063\u0072\u0079p\u0074\u0069\u006f\u006e\u0020\u0028\u0025\u0073\u0029",_ggd ); -return nil ,_ggd ;};d .O =O ;_df .Log .Trace ("\u0067\u0065\u006e\u0020\u004f\u003a\u0020\u0025\u0020\u0078",O );_ggdb :=_bgf .alg2 (d ,upass );U ,_ggd :=_bgf .alg5 (_ggdb ,upass );if _ggd !=nil {_df .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006ee\u0072\u0061\u0074\u0069\u006e\u0067 \u004f\u0020\u0066\u006f\u0072\u0020\u0065\u006e\u0063\u0072\u0079p\u0074\u0069\u006f\u006e\u0020\u0028\u0025\u0073\u0029",_ggd ); -return nil ,_ggd ;};d .U =U ;_df .Log .Trace ("\u0067\u0065\u006e\u0020\u0055\u003a\u0020\u0025\u0020\u0078",U );return _ggdb ,nil ;};func _egd (_bac ,_edb ,_ggg []byte )([]byte ,error ){var (_gbd ,_bgg ,_cbd _d .Hash ;);_gbd =_a .New ();_dad :=make ([]byte ,64); -_dfba :=_gbd ;_dfba .Write (_bac );K :=_dfba .Sum (_dad [:0]);_dfgg :=make ([]byte ,64*(127+64+48));_fcg :=func (_ea int )([]byte ,error ){_aea :=len (_edb )+len (K )+len (_ggg );_efbgd :=_dfgg [:_aea ];_dffa :=copy (_efbgd ,_edb );_dffa +=copy (_efbgd [_dffa :],K [:]); -_dffa +=copy (_efbgd [_dffa :],_ggg );if _dffa !=_aea {_df .Log .Error ("E\u0052\u0052\u004f\u0052\u003a\u0020u\u006e\u0065\u0078\u0070\u0065\u0063t\u0065\u0064\u0020\u0072\u006f\u0075\u006ed\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0073\u0069\u007ae\u002e"); -return nil ,_ad .New ("\u0077\u0072\u006f\u006e\u0067\u0020\u0073\u0069\u007a\u0065");};K1 :=_dfgg [:_aea *64];_bab (K1 ,_aea );_cff ,_dba :=_dfgd (K [0:16]);if _dba !=nil {return nil ,_dba ;};_gfa :=_ce .NewCBCEncrypter (_cff ,K [16:32]);_gfa .CryptBlocks (K1 ,K1 ); -E :=K1 ;_bfg :=0;for _cca :=0;_cca < 16;_cca ++{_bfg +=int (E [_cca ]%3);};var _eff _d .Hash ;switch _bfg %3{case 0:_eff =_gbd ;case 1:if _bgg ==nil {_bgg =_b .New384 ();};_eff =_bgg ;case 2:if _cbd ==nil {_cbd =_b .New ();};_eff =_cbd ;};_eff .Reset (); -_eff .Write (E );K =_eff .Sum (_dad [:0]);return E ,nil ;};for _bfbd :=0;;{E ,_bff :=_fcg (_bfbd );if _bff !=nil {return nil ,_bff ;};_gbac :=E [len (E )-1];_bfbd ++;if _bfbd >=64&&_gbac <=uint8 (_bfbd -32){break ;};};return K [:32],nil ;};func (_ec stdHandlerR4 )alg6 (_ebd *StdEncryptDict ,_gba []byte )([]byte ,error ){var (_bb []byte ; -_faf error ;);_fea :=_ec .alg2 (_ebd ,_gba );if _ebd .R ==2{_bb ,_faf =_ec .alg4 (_fea ,_gba );}else if _ebd .R >=3{_bb ,_faf =_ec .alg5 (_fea ,_gba );}else {return nil ,_ad .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020R");};if _faf !=nil {return nil ,_faf ; -};_df .Log .Trace ("\u0063\u0068\u0065\u0063k:\u0020\u0025\u0020\u0078\u0020\u003d\u003d\u0020\u0025\u0020\u0078\u0020\u003f",string (_bb ),string (_ebd .U ));_afab :=_bb ;_aaa :=_ebd .U ;if _ebd .R >=3{if len (_afab )> 16{_afab =_afab [0:16];};if len (_aaa )> 16{_aaa =_aaa [0:16]; -};};if !_adc .Equal (_afab ,_aaa ){return nil ,nil ;};return _fea ,nil ;};func (_ggdc stdHandlerR6 )alg2a (_gbb *StdEncryptDict ,_fff []byte )([]byte ,Permissions ,error ){if _be :=_af ("\u0061\u006c\u00672\u0061","\u004f",48,_gbb .O );_be !=nil {return nil ,0,_be ; -};if _dddd :=_af ("\u0061\u006c\u00672\u0061","\u0055",48,_gbb .U );_dddd !=nil {return nil ,0,_dddd ;};if len (_fff )> 127{_fff =_fff [:127];};_bba ,_abb :=_ggdc .alg12 (_gbb ,_fff );if _abb !=nil {return nil ,0,_abb ;};var (_fbg []byte ;_bea []byte ; -_cae []byte ;);var _ebb Permissions ;if len (_bba )!=0{_ebb =PermOwner ;_ceg :=make ([]byte ,len (_fff )+8+48);_edf :=copy (_ceg ,_fff );_edf +=copy (_ceg [_edf :],_gbb .O [40:48]);copy (_ceg [_edf :],_gbb .U [0:48]);_fbg =_ceg ;_bea =_gbb .OE ;_cae =_gbb .U [0:48]; -}else {_bba ,_abb =_ggdc .alg11 (_gbb ,_fff );if _abb ==nil &&len (_bba )==0{_bba ,_abb =_ggdc .alg11 (_gbb ,[]byte (""));};if _abb !=nil {return nil ,0,_abb ;}else if len (_bba )==0{return nil ,0,nil ;};_ebb =_gbb .P ;_bc :=make ([]byte ,len (_fff )+8); -_dbb :=copy (_bc ,_fff );copy (_bc [_dbb :],_gbb .U [40:48]);_fbg =_bc ;_bea =_gbb .UE ;_cae =nil ;};if _dbcc :=_af ("\u0061\u006c\u00672\u0061","\u004b\u0065\u0079",32,_bea );_dbcc !=nil {return nil ,0,_dbcc ;};_bea =_bea [:32];_efbg ,_abb :=_ggdc .alg2b (_gbb .R ,_fbg ,_fff ,_cae ); -if _abb !=nil {return nil ,0,_abb ;};_cgbd ,_abb :=_aa .NewCipher (_efbg [:32]);if _abb !=nil {return nil ,0,_abb ;};_cge :=make ([]byte ,_aa .BlockSize );_fbf :=_ce .NewCBCDecrypter (_cgbd ,_cge );_eg :=make ([]byte ,32);_fbf .CryptBlocks (_eg ,_bea ); -if _gbb .R ==5{return _eg ,_ebb ,nil ;};_abb =_ggdc .alg13 (_gbb ,_eg );if _abb !=nil {return nil ,0,_abb ;};return _eg ,_ebb ,nil ;};const _fg ="\x28\277\116\136\x4e\x75\x8a\x41\x64\000\x4e\x56\377"+"\xfa\001\010\056\x2e\x00\xb6\xd0\x68\076\x80\x2f\014"+"\251\xfe\x64\x53\x69\172"; - - -// Allowed checks if a set of permissions can be granted. -func (_cfg Permissions )Allowed (p2 Permissions )bool {return _cfg &p2 ==p2 };func _af (_eb ,_afa string ,_dfd int ,_afc []byte )error {if len (_afc )< _dfd {return errInvalidField {Func :_eb ,Field :_afa ,Exp :_dfd ,Got :len (_afc )};};return nil ;};type ecbDecrypter ecb ; -func (_fab stdHandlerR4 )alg7 (_ceb *StdEncryptDict ,_gbc []byte )([]byte ,error ){_age :=_fab .alg3Key (_ceb .R ,_gbc );_fag :=make ([]byte ,len (_ceb .O ));if _ceb .R ==2{_ab ,_cgc :=_f .NewCipher (_age );if _cgc !=nil {return nil ,_ad .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0063\u0069\u0070\u0068\u0065\u0072"); -};_ab .XORKeyStream (_fag ,_ceb .O );}else if _ceb .R >=3{_bbf :=append ([]byte {},_ceb .O ...);for _da :=0;_da < 20;_da ++{_ddd :=append ([]byte {},_age ...);for _bagd :=0;_bagd < len (_age );_bagd ++{_ddd [_bagd ]^=byte (19-_da );};_baf ,_gfe :=_f .NewCipher (_ddd ); -if _gfe !=nil {return nil ,_ad .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0063\u0069\u0070\u0068\u0065\u0072");};_baf .XORKeyStream (_fag ,_bbf );_bbf =append ([]byte {},_fag ...);};}else {return nil ,_ad .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020R"); -};_dcf ,_ggc :=_fab .alg6 (_ceb ,_fag );if _ggc !=nil {return nil ,nil ;};return _dcf ,nil ;};func (_dbc stdHandlerR4 )alg5 (_ddf []byte ,_efb []byte )([]byte ,error ){_gcb :=_fc .New ();_gcb .Write ([]byte (_fg ));_gcb .Write ([]byte (_dbc .ID0 ));_eda :=_gcb .Sum (nil ); -_df .Log .Trace ("\u0061\u006c\u0067\u0035");_df .Log .Trace ("\u0065k\u0065\u0079\u003a\u0020\u0025\u0020x",_ddf );_df .Log .Trace ("\u0049D\u003a\u0020\u0025\u0020\u0078",_dbc .ID0 );if len (_eda )!=16{return nil ,_ad .New ("\u0068a\u0073\u0068\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074\u0020\u0031\u0036\u0020\u0062\u0079\u0074\u0065\u0073"); -};_ceac ,_edd :=_f .NewCipher (_ddf );if _edd !=nil {return nil ,_ad .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068");};_gef :=make ([]byte ,16);_ceac .XORKeyStream (_gef ,_eda );_fdd :=make ([]byte ,len (_ddf )); -for _bd :=0;_bd < 19;_bd ++{for _gab :=0;_gab < len (_ddf );_gab ++{_fdd [_gab ]=_ddf [_gab ]^byte (_bd +1);};_ceac ,_edd =_f .NewCipher (_fdd );if _edd !=nil {return nil ,_ad .New ("\u0066a\u0069l\u0065\u0064\u0020\u0072\u0063\u0034\u0020\u0063\u0069\u0070\u0068"); -};_ceac .XORKeyStream (_gef ,_gef );_df .Log .Trace ("\u0069\u0020\u003d\u0020\u0025\u0064\u002c\u0020\u0065\u006b\u0065\u0079:\u0020\u0025\u0020\u0078",_bd ,_fdd );_df .Log .Trace ("\u0069\u0020\u003d\u0020\u0025\u0064\u0020\u002d\u003e\u0020\u0025\u0020\u0078",_bd ,_gef ); -};_cda :=make ([]byte ,32);for _acdb :=0;_acdb < 16;_acdb ++{_cda [_acdb ]=_gef [_acdb ];};_ ,_edd =_cb .Read (_cda [16:32]);if _edd !=nil {return nil ,_ad .New ("\u0066a\u0069\u006c\u0065\u0064 \u0074\u006f\u0020\u0067\u0065n\u0020r\u0061n\u0064\u0020\u006e\u0075\u006d\u0062\u0065r"); -};return _cda ,nil ;};func (_fgff stdHandlerR6 )alg10 (_bfga *StdEncryptDict ,_ffb []byte )error {if _dfc :=_af ("\u0061\u006c\u00671\u0030","\u004b\u0065\u0079",32,_ffb );_dfc !=nil {return _dfc ;};_cdd :=uint64 (uint32 (_bfga .P ))|(_ae .MaxUint32 <<32); -Perms :=make ([]byte ,16);_de .LittleEndian .PutUint64 (Perms [:8],_cdd );if _bfga .EncryptMetadata {Perms [8]='T';}else {Perms [8]='F';};copy (Perms [9:12],"\u0061\u0064\u0062");if _ ,_ffbc :=_g .ReadFull (_cb .Reader ,Perms [12:16]);_ffbc !=nil {return _ffbc ; -};_dffg ,_cbe :=_dfgd (_ffb [:32]);if _cbe !=nil {return _cbe ;};_bbe :=_ac (_dffg );_bbe .CryptBlocks (Perms ,Perms );_bfga .Perms =Perms [:16];return nil ;};func (_bf *ecbDecrypter )CryptBlocks (dst ,src []byte ){if len (src )%_bf ._dc !=0{_df .Log .Error ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0045\u0043\u0042\u0020\u0064\u0065\u0063\u0072\u0079\u0070\u0074\u003a \u0069\u006e\u0070\u0075\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u0075\u006c\u006c\u0020\u0062\u006c\u006f\u0063\u006b\u0073"); -return ;};if len (dst )< len (src ){_df .Log .Error ("\u0045R\u0052\u004fR\u003a\u0020\u0045C\u0042\u0020\u0064\u0065\u0063\u0072\u0079p\u0074\u003a\u0020\u006f\u0075\u0074p\u0075\u0074\u0020\u0073\u006d\u0061\u006c\u006c\u0065\u0072\u0020t\u0068\u0061\u006e\u0020\u0069\u006e\u0070\u0075\u0074"); -return ;};for len (src )> 0{_bf ._cg .Decrypt (dst ,src [:_bf ._dc ]);src =src [_bf ._dc :];dst =dst [_bf ._dc :];};};func _ba (_fca _ce .Block )_ce .BlockMode {return (*ecbDecrypter )(_ga (_fca ))}; - -// Authenticate implements StdHandler interface. -func (_ffg stdHandlerR6 )Authenticate (d *StdEncryptDict ,pass []byte )([]byte ,Permissions ,error ){return _ffg .alg2a (d ,pass );};func (_cgg stdHandlerR6 )alg2b (R int ,_dac ,_ece ,_efg []byte )([]byte ,error ){if R ==5{return _fagd (_dac );};return _egd (_dac ,_ece ,_efg ); -}; \ No newline at end of file +func (_cdab stdHandlerR6 )GenerateParams (d *StdEncryptDict ,opass ,upass []byte )([]byte ,error ){_cedb :=make ([]byte ,32);if _ ,_aecg :=_f .ReadFull (_e .Reader ,_cedb );_aecg !=nil {return nil ,_aecg ;};d .U =nil ;d .O =nil ;d .UE =nil ;d .OE =nil ; +d .Perms =nil ;if len (upass )> 127{upass =upass [:127];};if len (opass )> 127{opass =opass [:127];};if _ebdd :=_cdab .alg8 (d ,_cedb ,upass );_ebdd !=nil {return nil ,_ebdd ;};if _afc :=_cdab .alg9 (d ,_cedb ,opass );_afc !=nil {return nil ,_afc ;};if d .R ==5{return _cedb ,nil ; +};if _edgb :=_cdab .alg10 (d ,_cedb );_edgb !=nil {return nil ,_edgb ;};return _cedb ,nil ;};func (_aga stdHandlerR6 )alg10 (_fge *StdEncryptDict ,_bffa []byte )error {if _cede :=_ac ("\u0061\u006c\u00671\u0030","\u004b\u0065\u0079",32,_bffa );_cede !=nil {return _cede ; +};_cabd :=uint64 (uint32 (_fge .P ))|(_gcd .MaxUint32 <<32);Perms :=make ([]byte ,16);_c .LittleEndian .PutUint64 (Perms [:8],_cabd );if _fge .EncryptMetadata {Perms [8]='T';}else {Perms [8]='F';};copy (Perms [9:12],"\u0061\u0064\u0062");if _ ,_affa :=_f .ReadFull (_e .Reader ,Perms [12:16]); +_affa !=nil {return _affa ;};_ebc ,_ccb :=_ebe (_bffa [:32]);if _ccb !=nil {return _ccb ;};_efge :=_fg (_ebc );_efge .CryptBlocks (Perms ,Perms );_fge .Perms =Perms [:16];return nil ;};func (_af *ecbDecrypter )BlockSize ()int {return _af ._ab };func _fb (_ce _ga .Block )_ga .BlockMode {return (*ecbDecrypter )(_eb (_ce ))}; diff --git a/creator/creator.go b/creator/creator.go index bf773a031..7b74d44f2 100644 --- a/creator/creator.go +++ b/creator/creator.go @@ -14,727 +14,682 @@ // It is built on top of the model package to provide access to the most common // operations such as creating text and image reports and manipulating existing pages. // -package creator ;import (_ef "bytes";_f "encoding/xml";_e "errors";_g "fmt";_ab "github.com/gorilla/i18n/linebreak";_ff "github.com/unidoc/unichart/render";_eef "github.com/unidoc/unipdf/v3/common";_bd "github.com/unidoc/unipdf/v3/contentstream";_ce "github.com/unidoc/unipdf/v3/contentstream/draw"; -_ea "github.com/unidoc/unipdf/v3/core";_ga "github.com/unidoc/unipdf/v3/internal/graphic2d/svg";_ffe "github.com/unidoc/unipdf/v3/internal/integrations/unichart";_ae "github.com/unidoc/unipdf/v3/internal/license";_de "github.com/unidoc/unipdf/v3/internal/transform"; -_fa "github.com/unidoc/unipdf/v3/model";_b "golang.org/x/text/unicode/bidi";_cd "image";_dfd "io";_ec "math";_df "os";_ee "regexp";_d "sort";_a "strconv";_dc "strings";_cb "text/template";_efe "unicode";);func (_bdef *Image )rotatedSize ()(float64 ,float64 ){_bdgag :=_bdef ._gfef ; -_bdgc :=_bdef ._ffab ;_cdbbd :=_bdef ._dgb ;if _cdbbd ==0{return _bdgag ,_bdgc ;};_fgdf :=_ce .Path {Points :[]_ce .Point {_ce .NewPoint (0,0).Rotate (_cdbbd ),_ce .NewPoint (_bdgag ,0).Rotate (_cdbbd ),_ce .NewPoint (0,_bdgc ).Rotate (_cdbbd ),_ce .NewPoint (_bdgag ,_bdgc ).Rotate (_cdbbd )}}.GetBoundingBox (); -return _fgdf .Width ,_fgdf .Height ;}; +package creator ;import (_g "bytes";_e "encoding/xml";_fa "errors";_df "fmt";_ee "github.com/gorilla/i18n/linebreak";_gg "github.com/unidoc/unichart/render";_ca "github.com/unidoc/unipdf/v3/common";_bdb "github.com/unidoc/unipdf/v3/contentstream";_fc "github.com/unidoc/unipdf/v3/contentstream/draw"; +_fe "github.com/unidoc/unipdf/v3/core";_cc "github.com/unidoc/unipdf/v3/internal/graphic2d/svg";_ec "github.com/unidoc/unipdf/v3/internal/integrations/unichart";_be "github.com/unidoc/unipdf/v3/internal/license";_bd "github.com/unidoc/unipdf/v3/internal/transform"; +_ggc "github.com/unidoc/unipdf/v3/model";_cag "golang.org/x/text/unicode/bidi";_c "image";_ae "io";_b "math";_ed "os";_fag "regexp";_f "sort";_a "strconv";_dc "strings";_dg "text/template";_cd "unicode";); -// GetMargins returns the margins of the TOC line: left, right, top, bottom. -func (_dbefd *TOCLine )GetMargins ()(float64 ,float64 ,float64 ,float64 ){_ceac :=&_dbefd ._bagf ._faaba ;return _dbefd ._fdbdf ,_ceac .Right ,_ceac .Top ,_ceac .Bottom ;}; +// Paragraph represents text drawn with a specified font and can wrap across lines and pages. +// By default it occupies the available width in the drawing context. +type Paragraph struct{_age string ;_fggb *_ggc .PdfFont ;_fcbfa float64 ;_dacae float64 ;_bged Color ;_abd TextAlignment ;_bebg bool ;_dcdb float64 ;_bebd int ;_ggad bool ;_dgeg float64 ;_fgcbf Margins ;_abea Positioning ;_bcec float64 ;_cbcca float64 ; +_geca ,_bfeff float64 ;_cbcf []string ;}; -// NewLine creates a new line between (x1, y1) to (x2, y2), -// using default attributes. -// NOTE: In relative positioning mode, `x1` and `y1` are calculated using the -// current context and `x2`, `y2` are used only to calculate the position of -// the second point in relation to the first one (used just as a measurement -// of size). Furthermore, when the fit mode is set to fill the context width, -// `x2` is set to the right edge coordinate of the context. -func (_fdba *Creator )NewLine (x1 ,y1 ,x2 ,y2 float64 )*Line {return _dagfb (x1 ,y1 ,x2 ,y2 )}; +// SetPos sets absolute positioning with specified coordinates. +func (_bffd *Paragraph )SetPos (x ,y float64 ){_bffd ._abea =PositionAbsolute ;_bffd ._bcec =x ;_bffd ._cbcca =y ;};func _dbfbb (_bbabb *_e .Decoder )(int ,int ){return 0,0}; -// SetSideBorderColor sets the cell's side border color. -func (_dbcfe *TableCell )SetSideBorderColor (side CellBorderSide ,col Color ){switch side {case CellBorderSideAll :_dbcfe ._bbcfdd =col ;_dbcfe ._cfaea =col ;_dbcfe ._cgce =col ;_dbcfe ._egddb =col ;case CellBorderSideTop :_dbcfe ._bbcfdd =col ;case CellBorderSideBottom :_dbcfe ._cfaea =col ; -case CellBorderSideLeft :_dbcfe ._cgce =col ;case CellBorderSideRight :_dbcfe ._egddb =col ;};}; +// SetFillColor sets the fill color. +func (_fdbfe *PolyBezierCurve )SetFillColor (color Color ){_fdbfe ._bbaec =color ;_fdbfe ._ffbb .FillColor =_dbac (color );}; -// SetCoords sets the center coordinates of the ellipse. -func (_cafa *Ellipse )SetCoords (xc ,yc float64 ){_cafa ._fgcb =xc ;_cafa ._eadb =yc };func _dggdf (_gggf *templateProcessor ,_edcbe *templateNode )(interface{},error ){return _gggf .parseRectangle (_edcbe );};func (_ddef *templateProcessor )parseFontAttr (_gaaeg ,_bacg string )*_fa .PdfFont {_eef .Log .Debug ("P\u0061\u0072\u0073\u0069\u006e\u0067 \u0066\u006f\u006e\u0074\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_gaaeg ,_bacg ); -_dfgda :=_ddef .creator ._aebd ;if _bacg ==""{return _dfgda ;};_dbedg :=_dc .Split (_bacg ,"\u002c");for _ ,_edcbc :=range _dbedg {_edcbc =_dc .TrimSpace (_edcbc );if _edcbc ==""{continue ;};_ccga ,_fedb :=_ddef ._cbdga .FontMap [_bacg ];if _fedb {return _ccga ; -};_adfc ,_fedb :=map[string ]_fa .StdFontName {"\u0063o\u0075\u0072\u0069\u0065\u0072":_fa .CourierName ,"\u0063\u006f\u0075r\u0069\u0065\u0072\u002d\u0062\u006f\u006c\u0064":_fa .CourierBoldName ,"\u0063o\u0075r\u0069\u0065\u0072\u002d\u006f\u0062\u006c\u0069\u0071\u0075\u0065":_fa .CourierObliqueName ,"c\u006fu\u0072\u0069\u0065\u0072\u002d\u0062\u006f\u006cd\u002d\u006f\u0062\u006ciq\u0075\u0065":_fa .CourierBoldObliqueName ,"\u0068e\u006c\u0076\u0065\u0074\u0069\u0063a":_fa .HelveticaName ,"\u0068\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061-\u0062\u006f\u006c\u0064":_fa .HelveticaBoldName ,"\u0068\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061\u002d\u006f\u0062l\u0069\u0071\u0075\u0065":_fa .HelveticaObliqueName ,"\u0068\u0065\u006c\u0076et\u0069\u0063\u0061\u002d\u0062\u006f\u006c\u0064\u002d\u006f\u0062\u006c\u0069\u0071u\u0065":_fa .HelveticaBoldObliqueName ,"\u0073\u0079\u006d\u0062\u006f\u006c":_fa .SymbolName ,"\u007a\u0061\u0070\u0066\u002d\u0064\u0069\u006e\u0067\u0062\u0061\u0074\u0073":_fa .ZapfDingbatsName ,"\u0074\u0069\u006de\u0073":_fa .TimesRomanName ,"\u0074\u0069\u006d\u0065\u0073\u002d\u0062\u006f\u006c\u0064":_fa .TimesBoldName ,"\u0074\u0069\u006de\u0073\u002d\u0069\u0074\u0061\u006c\u0069\u0063":_fa .TimesItalicName ,"\u0074\u0069\u006d\u0065\u0073\u002d\u0062\u006f\u006c\u0064\u002d\u0069t\u0061\u006c\u0069\u0063":_fa .TimesBoldItalicName }[_bacg ]; -if _fedb {if _babge ,_ebbgg :=_fa .NewStandard14Font (_adfc );_ebbgg ==nil {return _babge ;};};if _bgfe :=_ddef .parseAttrPropList (_edcbc );len (_bgfe )> 0{if _dgagg ,_eeee :=_bgfe ["\u0070\u0061\u0074\u0068"];_eeee {_aaae :=_fa .NewPdfFontFromTTFFile ; -if _ffcef ,_ebef :=_bgfe ["\u0074\u0079\u0070\u0065"];_ebef &&_ffcef =="\u0063o\u006d\u0070\u006f\u0073\u0069\u0074e"{_aaae =_fa .NewCompositePdfFontFromTTFFile ;};if _afggc ,_dbacc :=_aaae (_dgagg );_dbacc !=nil {_eef .Log .Debug ("\u0043\u006fu\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0060\u0025\u0073\u0060\u003a %\u0076\u002e",_dgagg ,_dbacc ); -}else {return _afggc ;};};};};return _dfgda ;}; +// SetBorderWidth sets the border width of the rectangle. +func (_abcge *Rectangle )SetBorderWidth (bw float64 ){_abcge ._decec =bw };var PPMM =float64 (72*1.0/25.4); -// SetHeight sets the height of the rectangle. -func (_fcce *Rectangle )SetHeight (height float64 ){_fcce ._baag =height }; +// ColorCMYKFrom8bit creates a Color from c,m,y,k values (0-100). +// Example: +// red := ColorCMYKFrom8Bit(0, 100, 100, 0) +func ColorCMYKFrom8bit (c ,m ,y ,k byte )Color {return cmykColor {_badc :_b .Min (float64 (c ),100)/100.0,_dea :_b .Min (float64 (m ),100)/100.0,_gaa :_b .Min (float64 (y ),100)/100.0,_ccb :_b .Min (float64 (k ),100)/100.0};}; -// SetLinePageStyle sets the style for the page part of all new lines -// of the table of contents. -func (_gedg *TOC )SetLinePageStyle (style TextStyle ){_gedg ._dbdbc =style };func (_gcgb *templateProcessor )parseMarginAttr (_ecabc ,_ggec string )Margins {_eef .Log .Debug ("\u0050\u0061r\u0073\u0069\u006e\u0067 \u006d\u0061r\u0067\u0069\u006e\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c \u0025\u0073\u0029\u002e",_ecabc ,_ggec ); -_decbg :=Margins {};switch _gcbcf :=_dc .Fields (_ggec );len (_gcbcf ){case 1:_decbg .Top ,_ =_a .ParseFloat (_gcbcf [0],64);_decbg .Bottom =_decbg .Top ;_decbg .Left =_decbg .Top ;_decbg .Right =_decbg .Top ;case 2:_decbg .Top ,_ =_a .ParseFloat (_gcbcf [0],64); -_decbg .Bottom =_decbg .Top ;_decbg .Left ,_ =_a .ParseFloat (_gcbcf [1],64);_decbg .Right =_decbg .Left ;case 3:_decbg .Top ,_ =_a .ParseFloat (_gcbcf [0],64);_decbg .Left ,_ =_a .ParseFloat (_gcbcf [1],64);_decbg .Right =_decbg .Left ;_decbg .Bottom ,_ =_a .ParseFloat (_gcbcf [2],64); -case 4:_decbg .Top ,_ =_a .ParseFloat (_gcbcf [0],64);_decbg .Right ,_ =_a .ParseFloat (_gcbcf [1],64);_decbg .Bottom ,_ =_a .ParseFloat (_gcbcf [2],64);_decbg .Left ,_ =_a .ParseFloat (_gcbcf [3],64);};return _decbg ;}; +// Notes returns the notes section of the invoice as a title-content pair. +func (_fbbg *Invoice )Notes ()(string ,string ){return _fbbg ._ecf [0],_fbbg ._ecf [1]};func (_dbeg *Image )makeXObject ()error {_bfbb ,_faa :=_ggc .NewXObjectImageFromImage (_dbeg ._dffd ,nil ,_dbeg ._ggfc );if _faa !=nil {_ca .Log .Error ("\u0046\u0061\u0069le\u0064\u0020\u0074\u006f\u0020\u0063\u0072\u0065\u0061t\u0065 \u0078o\u0062j\u0065\u0063\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_faa ); +return _faa ;};_dbeg ._edee =_bfbb ;return nil ;}; -// Color interface represents colors in the PDF creator. -type Color interface{ToRGB ()(float64 ,float64 ,float64 );}; +// SetFillColor sets the fill color of the ellipse. +func (_aae *Ellipse )SetFillColor (col Color ){_aae ._dbadf =col };type listItem struct{_gdceb VectorDrawable ;_eeed TextChunk ;}; -// FitMode returns the fit mode of the ellipse. -func (_ebeg *Ellipse )FitMode ()FitMode {return _ebeg ._facg }; +// SetAntiAlias enables anti alias config. +// +// Anti alias is disabled by default. +func (_bbcac *LinearShading )SetAntiAlias (enable bool ){_bbcac ._aecc .SetAntiAlias (enable )}; -// SetPos sets absolute positioning with specified coordinates. -func (_bdcd *Paragraph )SetPos (x ,y float64 ){_bdcd ._aacf =PositionAbsolute ;_bdcd ._ggde =x ;_bdcd ._ffdcg =y ;}; +// SetStyleTop sets border style for top side. +func (_fdc *border )SetStyleTop (style CellBorderStyle ){_fdc ._deccc =style }; -// SetNumber sets the number of the invoice. -func (_gegbc *Invoice )SetNumber (number string )(*InvoiceCell ,*InvoiceCell ){_gegbc ._cgga [1].Value =number ;return _gegbc ._cgga [0],_gegbc ._cgga [1];}; +// NewPage adds a new Page to the Creator and sets as the active Page. +func (_fcac *Creator )NewPage ()*_ggc .PdfPage {_efbe :=_fcac .newPage ();_fcac ._cec =append (_fcac ._cec ,_efbe );_fcac ._eacd .Page ++;return _efbe ;}; -// ColorRGBFromArithmetic creates a Color from arithmetic color values (0-1). -// Example: -// green := ColorRGBFromArithmetic(0.0, 1.0, 0.0) -func ColorRGBFromArithmetic (r ,g ,b float64 )Color {return rgbColor {_abec :_ec .Max (_ec .Min (r ,1.0),0.0),_eafb :_ec .Max (_ec .Min (g ,1.0),0.0),_baa :_ec .Max (_ec .Min (b ,1.0),0.0)};}; +// SetAngle sets the rotation angle of the text. +func (_cfbf *StyledParagraph )SetAngle (angle float64 ){_cfbf ._adag =angle }; -// SetWidthRight sets border width for right. -func (_ecfe *border )SetWidthRight (bw float64 ){_ecfe ._gea =bw }; +// SetAnchor set gradient position anchor. +// Default to center. +func (_gdcfg *RadialShading )SetAnchor (anchor AnchorPoint ){_gdcfg ._dedge =anchor }; -// EnableWordWrap sets the paragraph word wrap flag. -func (_bebgb *StyledParagraph )EnableWordWrap (val bool ){_bebgb ._ebgbe =val };func _babadc (_faeac string ,_fgaag ,_bcdf TextStyle )*TOC {_gbgdaa :=_bcdf ;_gbgdaa .FontSize =14;_agbf :=_defdc (_gbgdaa );_agbf .SetEnableWrap (true );_agbf .SetTextAlignment (TextAlignmentLeft ); -_agbf .SetMargins (0,0,0,5);_bedac :=_agbf .Append (_faeac );_bedac .Style =_gbgdaa ;return &TOC {_edbe :_agbf ,_agfbb :[]*TOCLine {},_fdfac :_fgaag ,_agde :_fgaag ,_dbfad :_fgaag ,_dbdbc :_fgaag ,_abgga :"\u002e",_gafab :10,_adgec :Margins {0,0,2,2},_cafed :PositionRelative ,_bcgff :_fgaag ,_cfgge :true }; -}; +// SetVerticalAlignment set the cell's vertical alignment of content. +// Can be one of: +// - CellHorizontalAlignmentTop +// - CellHorizontalAlignmentMiddle +// - CellHorizontalAlignmentBottom +func (_ccgge *TableCell )SetVerticalAlignment (valign CellVerticalAlignment ){_ccgge ._fddca =valign }; -// SkipOver skips over a specified number of rows and cols. -func (_caad *Table )SkipOver (rows ,cols int ){_bfbg :=rows *_caad ._beege +cols -1;if _bfbg < 0{_eef .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0073\u006b\u0069\u0070\u0020b\u0061\u0063\u006b\u0020\u0074\u006f\u0020\u0070\u0072\u0065\u0076\u0069\u006f\u0075\u0073\u0020\u0063\u0065\u006c\u006c\u0073"); -return ;};for _bgfb :=0;_bgfb < _bfbg ;_bgfb ++{_caad .NewCell ();};}; +// Line defines a line between point 1 (X1, Y1) and point 2 (X2, Y2). +// The line width, color, style (solid or dashed) and opacity can be +// configured. Implements the Drawable interface. +type Line struct{_daed float64 ;_gfaa float64 ;_eddg float64 ;_eabb float64 ;_cdgfa Color ;_ceac _fc .LineStyle ;_ggbab float64 ;_fgbfg []int64 ;_bgfed int64 ;_adf float64 ;_fgef Positioning ;_afad FitMode ;_bccc Margins ;}; -// Flip flips the active page on the specified axes. -// If `flipH` is true, the page is flipped horizontally. Similarly, if `flipV` -// is true, the page is flipped vertically. If both are true, the page is -// flipped both horizontally and vertically. -// NOTE: the flip transformations are applied when the creator is finalized, -// which is at write time in most cases. -func (_acdb *Creator )Flip (flipH ,flipV bool )error {_bebb :=_acdb .getActivePage ();if _bebb ==nil {return _e .New ("\u006e\u006f\u0020\u0070\u0061\u0067\u0065\u0020\u0061c\u0074\u0069\u0076\u0065");};_bcge ,_egg :=_acdb ._fgec [_bebb ];if !_egg {_bcge =&pageTransformations {}; -_acdb ._fgec [_bebb ]=_bcge ;};_bcge ._gdbeg =flipH ;_bcge ._bag =flipV ;return nil ;}; +// The Image type is used to draw an image onto PDF. +type Image struct{_edee *_ggc .XObjectImage ;_dffd *_ggc .Image ;_eadgc float64 ;_cagba ,_efef float64 ;_cegf ,_bdff float64 ;_ebfa Positioning ;_afdag HorizontalAlignment ;_fce float64 ;_gdd float64 ;_feef float64 ;_cbea Margins ;_dfdc ,_afgg float64 ; +_ggfc _fe .StreamEncoder ;_geaf FitMode ;}; -// SetColor sets the line color. Use ColorRGBFromHex, ColorRGBFrom8bit or -// ColorRGBFromArithmetic to create the color object. -func (_gffd *Line )SetColor (color Color ){_gffd ._cabf =color };func (_abab *Creator )initContext (){_abab ._gbb .X =_abab ._bcbf .Left ;_abab ._gbb .Y =_abab ._bcbf .Top ;_abab ._gbb .Width =_abab ._ggfe -_abab ._bcbf .Right -_abab ._bcbf .Left ;_abab ._gbb .Height =_abab ._bbdg -_abab ._bcbf .Bottom -_abab ._bcbf .Top ; -_abab ._gbb .PageHeight =_abab ._bbdg ;_abab ._gbb .PageWidth =_abab ._ggfe ;_abab ._gbb .Margins =_abab ._bcbf ;_abab ._gbb ._bfdb =_abab .UnsupportedCharacterReplacement ;};func (_bcbbg *Invoice )newCell (_dcag string ,_bcbae InvoiceCellProps )*InvoiceCell {return &InvoiceCell {_bcbae ,_dcag }; -};func (_aafg *Creator )newPage ()*_fa .PdfPage {_ccc :=_fa .NewPdfPage ();_adad :=_aafg ._cab [0];_fbbg :=_aafg ._cab [1];_dff :=_fa .PdfRectangle {Llx :0,Lly :0,Urx :_adad ,Ury :_fbbg };_ccc .MediaBox =&_dff ;_aafg ._ggfe =_adad ;_aafg ._bbdg =_fbbg ; -_aafg .initContext ();return _ccc ;};func _cggbe (_aafce *templateProcessor ,_effd *templateNode )(interface{},error ){return _aafce .parseList (_effd );}; +// Vertical returns total vertical (top + bottom) margin. +func (_bfaa *Margins )Vertical ()float64 {return _bfaa .Bottom +_bfaa .Top };func (_caba *Invoice )drawSection (_fccbg ,_dedd string )[]*StyledParagraph {var _ggef []*StyledParagraph ;if _fccbg !=""{_cgag :=_egdc (_caba ._daag );_cgag .SetMargins (0,0,0,5); +_cgag .Append (_fccbg );_ggef =append (_ggef ,_cgag );};if _dedd !=""{_fcbb :=_egdc (_caba ._dcfab );_fcbb .Append (_dedd );_ggef =append (_ggef ,_fcbb );};return _ggef ;}; -// NewChapter creates a new chapter with the specified title as the heading. -func (_bbgb *Creator )NewChapter (title string )*Chapter {_bbgb ._eddf ++;_bec :=_bbgb .NewTextStyle ();_bec .FontSize =16;return _bdbc (nil ,_bbgb ._bbgg ,_bbgb ._ffgcf ,title ,_bbgb ._eddf ,_bec );}; +// SetBorderOpacity sets the border opacity. +func (_fcfd *Polygon )SetBorderOpacity (opacity float64 ){_fcfd ._dffbb =opacity }; -// PageSize represents the page size as a 2 element array representing the width and height in PDF document units (points). -type PageSize [2]float64 ; +// PageFinalize sets a function to be called for each page before finalization +// (i.e. the last stage of page processing before they get written out). +// The callback function allows final touch-ups for each page, and it +// provides information that might not be known at other stages of designing +// the document (e.g. the total number of pages). Unlike the header/footer +// functions, which are limited to the top/bottom margins of the page, the +// finalize function can be used draw components anywhere on the current page. +func (_ebad *Creator )PageFinalize (pageFinalizeFunc func (_aad PageFinalizeFunctionArgs )error ){_ebad ._dcc =pageFinalizeFunc ;}; -// SetBorderWidth sets the border width of the rectangle. -func (_bbafc *Rectangle )SetBorderWidth (bw float64 ){_bbafc ._aebcg =bw };func (_gfbab *templateProcessor )run ()error {_edfaa :=_f .NewDecoder (_ef .NewReader (_gfbab ._bbfa ));var _dagge *templateNode ;for {_cfde ,_ccfc :=_edfaa .Token ();if _ccfc !=nil {if _ccfc ==_dfd .EOF {return nil ; -};return _ccfc ;};if _cfde ==nil {break ;};_aegd ,_feea :=_fbab (_edfaa );_cfdd :=_edfaa .InputOffset ();switch _ggacf :=_cfde .(type ){case _f .StartElement :_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006eg\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0073\u0074\u0061r\u0074\u0020\u0074\u0061\u0067\u003a\u0020`\u0025\u0073\u0060\u002e",_ggacf .Name .Local ); -_gcfgb ,_dfdef :=_gecc [_ggacf .Name .Local ];if !_dfdef {if _gfbab ._cdgag ==""{if _aegd !=0{_eef .Log .Debug ("\u0055n\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u006dp\u006c\u0061\u0074\u0065 \u0074\u0061\u0067\u0020\u003c%\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e\u0020\u005b%\u0064\u003a\u0025\u0064\u005d",_ggacf .Name .Local ,_aegd ,_feea ); -}else {_eef .Log .Debug ("\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074e\u0020\u0074\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070i\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072e\u0063\u0074\u002e\u0020\u005b%\u0064\u005d",_ggacf .Name .Local ,_cfdd ); -};}else {if _aegd !=0{_eef .Log .Debug ("\u0055\u006e\u0073\u0075\u0070p\u006f\u0072\u0074\u0065\u0064\u0020\u0074e\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0074\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065 \u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e\u0020\u005b%\u0073\u003a\u0025\u0064\u003a\u0025d\u005d",_ggacf .Name .Local ,_gfbab ._cdgag ,_aegd ,_feea ); -}else {_eef .Log .Debug ("\u0055n\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u006dp\u006c\u0061\u0074\u0065 \u0074\u0061\u0067\u0020\u003c%\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e\u0020\u005b%\u0073\u003a\u0025\u0064\u005d",_ggacf .Name .Local ,_gfbab ._cdgag ,_cfdd ); -};};continue ;};_dagge =&templateNode {_facfb :_ggacf ,_bgba :_dagge ,_edcb :_aegd ,_gdbed :_feea ,_fcagb :_cfdd };if _gbafb :=_gcfgb ._gcee ;_gbafb !=nil {_dagge ._ccfeb ,_ccfc =_gbafb (_gfbab ,_dagge );if _ccfc !=nil {return _ccfc ;};};case _f .EndElement :_eef .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020t\u0065\u006d\u0070\u006c\u0061\u0074\u0065 \u0065\u006e\u0064\u0020\u0074\u0061\u0067\u003a\u0020\u0060\u0025\u0073\u0060\u002e",_ggacf .Name .Local ); -if _dagge !=nil {if _dagge ._ccfeb !=nil {if _ecec :=_gfbab .renderNode (_dagge );_ecec !=nil {return _ecec ;};};_dagge =_dagge ._bgba ;};case _f .CharData :if _dagge !=nil &&_dagge ._ccfeb !=nil {if _cbgbf :=_gfbab .addNodeText (_dagge ,string (_ggacf )); -_cbgbf !=nil {return _cbgbf ;};};case _f .Comment :_eef .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020t\u0065\u006d\u0070\u006c\u0061\u0074\u0065 \u0063\u006f\u006d\u006d\u0065\u006e\u0074\u003a\u0020\u0060\u0025\u0073\u0060\u002e",string (_ggacf )); -};};return nil ;};func (_ebaa *Rectangle )applyFitMode (_fcaef float64 ){_fcaef -=_ebaa ._bacfa .Left +_ebaa ._bacfa .Right +_ebaa ._aebcg ;switch _ebaa ._gcdg {case FitModeFillWidth :_ebaa .ScaleToWidth (_fcaef );};};func (_ddba *Table )getLastCellFromCol (_gegd int )(int ,*TableCell ){for _dggbc :=len (_ddba ._bdfef )-1; -_dggbc >=0;_dggbc --{if _ddba ._bdfef [_dggbc ]._baceb ==_gegd {return _dggbc ,_ddba ._bdfef [_dggbc ];};};return 0,nil ;};func (_geef *templateProcessor )parseTextRenderingModeAttr (_ddaf ,_egcfcg string )TextRenderingMode {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0074\u0065\u0078\u0074\u0020\u0072\u0065\u006e\u0064\u0065r\u0069\u006e\u0067\u0020\u006d\u006f\u0064e\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a \u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_ddaf ,_egcfcg ); -_ddbee :=map[string ]TextRenderingMode {"\u0066\u0069\u006c\u006c":TextRenderingModeFill ,"\u0073\u0074\u0072\u006f\u006b\u0065":TextRenderingModeStroke ,"f\u0069\u006c\u006c\u002d\u0073\u0074\u0072\u006f\u006b\u0065":TextRenderingModeFillStroke ,"\u0069n\u0076\u0069\u0073\u0069\u0062\u006ce":TextRenderingModeInvisible ,"\u0066i\u006c\u006c\u002d\u0063\u006c\u0069p":TextRenderingModeFillClip ,"s\u0074\u0072\u006f\u006b\u0065\u002d\u0063\u006c\u0069\u0070":TextRenderingModeStrokeClip ,"\u0066\u0069l\u006c\u002d\u0073t\u0072\u006f\u006b\u0065\u002d\u0063\u006c\u0069\u0070":TextRenderingModeFillStrokeClip ,"\u0063\u006c\u0069\u0070":TextRenderingModeClip }[_egcfcg ]; -return _ddbee ;}; +// Height returns the current page height. +func (_eced *Creator )Height ()float64 {return _eced ._ffc }; -// CurRow returns the currently active cell's row number. -func (_caae *Table )CurRow ()int {_cgcf :=(_caae ._aeba -1)/_caae ._beege +1;return _cgcf }; +// SetAngle would set the angle at which the gradient is rendered. +// +// The default angle would be 0 where the gradient would be rendered from left to right side. +func (_gada *LinearShading )SetAngle (angle float64 ){_gada ._fcfe =angle }; -// SetFont sets the Paragraph's font. -func (_bdcf *Paragraph )SetFont (font *_fa .PdfFont ){_bdcf ._gcedf =font };func (_egegc *templateProcessor )parseChapterHeading (_ddgbb *templateNode )(interface{},error ){if _ddgbb ._bgba ==nil {_egegc .nodeLogError (_ddgbb ,"\u0043\u0068a\u0070\u0074\u0065\u0072 \u0068\u0065a\u0064\u0069\u006e\u0067\u0020\u0070\u0061\u0072e\u006e\u0074\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c\u002e"); -return nil ,_abag ;};_adeee ,_gdgf :=_ddgbb ._bgba ._ccfeb .(*Chapter );if !_gdgf {_egegc .nodeLogError (_ddgbb ,"\u0043h\u0061\u0070t\u0065\u0072\u0020h\u0065\u0061\u0064\u0069\u006e\u0067\u0020p\u0061\u0072\u0065\u006e\u0074\u0020(\u0025\u0054\u0029\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020a\u0020\u0063\u0068\u0061\u0070\u0074\u0065\u0072\u002e",_ddgbb ._bgba ._ccfeb ); -return nil ,_abag ;};_cgfef :=_adeee .GetHeading ();if _ ,_bfgcf :=_egegc .parseParagraph (_ddgbb ,_cgfef );_bfgcf !=nil {return nil ,_bfgcf ;};return _cgfef ,nil ;};type cmykColor struct{_cgge ,_fbcb ,_abad ,_gdad float64 }; +// TOCLine represents a line in a table of contents. +// The component can be used both in the context of a +// table of contents component and as a standalone component. +// The representation of a table of contents line is as follows: +/* + [number] [title] [separator] [page] + e.g.: Chapter1 Introduction ........... 1 +*/ +type TOCLine struct{_ecde *StyledParagraph ; -// Margins represents page margins or margins around an element. -type Margins struct{Left float64 ;Right float64 ;Top float64 ;Bottom float64 ;};func _eebf (_cebe ,_cbfb *_fa .PdfPageResources )error {_fbc ,_ :=_cebe .GetColorspaces ();if _fbc !=nil &&len (_fbc .Colorspaces )> 0{for _gad ,_adee :=range _fbc .Colorspaces {_fec :=*_ea .MakeName (_gad ); -if _cbfb .HasColorspaceByName (_fec ){continue ;};_gebc :=_cbfb .SetColorspaceByName (_fec ,_adee );if _gebc !=nil {return _gebc ;};};};return nil ;};func (_gdafe *Image )makeXObject ()error {_gbda ,_abcc :=_fa .NewXObjectImageFromImage (_gdafe ._dca ,nil ,_gdafe ._fbfd ); -if _abcc !=nil {_eef .Log .Error ("\u0046\u0061\u0069le\u0064\u0020\u0074\u006f\u0020\u0063\u0072\u0065\u0061t\u0065 \u0078o\u0062j\u0065\u0063\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_abcc );return _abcc ;};_gdafe ._eadbf =_gbda ; -return nil ;}; +// Holds the text and style of the number part of the TOC line. +Number TextChunk ; -// Rectangle defines a rectangle with upper left corner at (x,y) and a specified width and height. The rectangle -// can have a colored fill and/or border with a specified width. -// Implements the Drawable interface and can be drawn on PDF using the Creator. -type Rectangle struct{_dfbc float64 ;_gbfgg float64 ;_faaa float64 ;_baag float64 ;_fdde Positioning ;_abbg Color ;_efgb float64 ;_bada Color ;_aebcg float64 ;_gacec float64 ;_efcb float64 ;_caab float64 ;_ebagc float64 ;_bafe float64 ;_bacfa Margins ; -_gcdg FitMode ;};func _daa (_cgfb ,_eeeg ,_abc ,_gced float64 )*Ellipse {return &Ellipse {_fgcb :_cgfb ,_eadb :_eeeg ,_bgea :_abc ,_dceb :_gced ,_dada :PositionAbsolute ,_facc :1.0,_edcd :ColorBlack ,_cadd :1.0,_acdcf :1.0};}; +// Holds the text and style of the title part of the TOC line. +Title TextChunk ; -// GeneratePageBlocks generates the page blocks for the Division component. -// Multiple blocks are generated if the contents wrap over multiple pages. -func (_feccb *Division )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_gbac []*Block ;_cdfd bool ;_cae error ;_aega =_feccb ._gbfg .IsRelative ();_bee =_feccb ._cdef .Top ;);if _aega &&!_feccb ._gfbg &&!_feccb ._dacf {_ddfa :=_feccb .ctxHeight (ctx .Width ); -if _ddfa > ctx .Height -_feccb ._cdef .Top &&_ddfa <=ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom {if _gbac ,ctx ,_cae =_ddge ().GeneratePageBlocks (ctx );_cae !=nil {return nil ,ctx ,_cae ;};_cdfd =true ;_bee =0;};};_faa :=ctx ;_aeae :=ctx ; -if _aega {ctx .X +=_feccb ._cdef .Left ;ctx .Y +=_bee ;ctx .Width -=_feccb ._cdef .Left +_feccb ._cdef .Right ;ctx .Height -=_bee ;_aeae =ctx ;ctx .X +=_feccb ._dgfg .Left ;ctx .Y +=_feccb ._dgfg .Top ;ctx .Width -=_feccb ._dgfg .Left +_feccb ._dgfg .Right ; -ctx .Height -=_feccb ._dgfg .Top ;ctx .Margins .Top +=_feccb ._dgfg .Top ;ctx .Margins .Bottom +=_feccb ._dgfg .Bottom ;ctx .Margins .Left +=_feccb ._cdef .Left +_feccb ._dgfg .Left ;ctx .Margins .Right +=_feccb ._cdef .Right +_feccb ._dgfg .Right ;};ctx .Inline =_feccb ._dacf ; -_eaaae :=ctx ;_aadf :=ctx ;var _bgda float64 ;for _ ,_faab :=range _feccb ._cga {if ctx .Inline {if (ctx .X -_eaaae .X )+_faab .Width ()<=ctx .Width {ctx .Y =_aadf .Y ;ctx .Height =_aadf .Height ;}else {ctx .X =_eaaae .X ;ctx .Width =_eaaae .Width ;_aadf .Y +=_bgda ; -_aadf .Height -=_bgda ;_bgda =0;};};_ffad ,_cbe ,_gbdbf :=_faab .GeneratePageBlocks (ctx );if _gbdbf !=nil {_eef .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074\u0069\u006eg\u0020p\u0061\u0067\u0065\u0020\u0062\u006c\u006f\u0063\u006b\u0073\u003a\u0020\u0025\u0076",_gbdbf ); -return nil ,ctx ,_gbdbf ;};if len (_ffad )< 1{continue ;};if len (_gbac )> 0{_gbac [len (_gbac )-1].mergeBlocks (_ffad [0]);_gbac =append (_gbac ,_ffad [1:]...);}else {if _gbbe :=_ffad [0]._ffc ;_gbbe ==nil ||len (*_gbbe )==0{_cdfd =true ;};_gbac =append (_gbac ,_ffad [0:]...); -};if ctx .Inline {if ctx .Page !=_cbe .Page {_eaaae .Y =ctx .Margins .Top ;_eaaae .Height =ctx .PageHeight -ctx .Margins .Top ;_aadf .Y =_eaaae .Y ;_aadf .Height =_eaaae .Height ;_bgda =_cbe .Height -_eaaae .Height ;}else {if _dbbb :=ctx .Height -_cbe .Height ; -_dbbb > _bgda {_bgda =_dbbb ;};};}else {_cbe .X =ctx .X ;};ctx =_cbe ;};ctx .Inline =_faa .Inline ;ctx .Margins =_faa .Margins ;if _aega {ctx .X =_faa .X ;ctx .Width =_faa .Width ;ctx .Y +=_feccb ._dgfg .Bottom ;ctx .Height -=_feccb ._dgfg .Bottom ;};if _feccb ._gcde !=nil {_gbac ,_cae =_feccb .drawBackground (_gbac ,_aeae ,ctx ,_cdfd ); -if _cae !=nil {return nil ,ctx ,_cae ;};};if _feccb ._gbfg .IsAbsolute (){return _gbac ,_faa ,nil ;};ctx .Y +=_feccb ._cdef .Bottom ;ctx .Height -=_feccb ._cdef .Bottom ;return _gbac ,ctx ,nil ;}; +// Holds the text and style of the separator part of the TOC line. +Separator TextChunk ; -// SetTextVerticalAlignment sets the vertical alignment of the text within the -// bounds of the styled paragraph. -// -// Note: Currently Styled Paragraph doesn't support TextVerticalAlignmentBottom -// as that option only used for aligning text chunks. -// -// In order to change the vertical alignment of individual text chunks, use TextChunk.VerticalAlignment. -func (_adeff *StyledParagraph )SetTextVerticalAlignment (align TextVerticalAlignment ){_adeff ._ggdf =align ;};func (_cddbd *StyledParagraph )split (_efgf DrawContext )(_gafea ,_agca *StyledParagraph ,_bggg error ){if _bggg =_cddbd .wrapChunks (false ); -_bggg !=nil {return nil ,nil ,_bggg ;};if len (_cddbd ._egffa )==1&&_cddbd ._gbcb > _efgf .Height {return _cddbd ,nil ,nil ;};_gaac :=func (_dcdf []*TextChunk ,_gdgab []*TextChunk )[]*TextChunk {if len (_gdgab )==0{return _dcdf ;};_bfbbc :=len (_dcdf ); -if _bfbbc ==0{return append (_dcdf ,_gdgab ...);};if _dcdf [_bfbbc -1].Style ==_gdgab [0].Style {_dcdf [_bfbbc -1].Text +=_gdgab [0].Text ;}else {_dcdf =append (_dcdf ,_gdgab [0]);};return append (_dcdf ,_gdgab [1:]...);};_bcfeg :=func (_aagc *StyledParagraph ,_bcee []*TextChunk )*StyledParagraph {if len (_bcee )==0{return nil ; -};_geeee :=*_aagc ;_geeee ._cfbcg =_bcee ;return &_geeee ;};var (_ccbca float64 ;_gceac []*TextChunk ;_gfcb []*TextChunk ;);for _ ,_agef :=range _cddbd ._egffa {var _cdee float64 ;_feadf :=make ([]*TextChunk ,0,len (_agef ));for _ ,_bgbg :=range _agef {if _gbgda :=_bgbg .Style .FontSize ; -_gbgda > _cdee {_cdee =_gbgda ;};_feadf =append (_feadf ,_bgbg .clone ());};_cdee *=_cddbd ._gbcb ;if _cddbd ._defc .IsRelative (){if _ccbca +_cdee > _efgf .Height {_gfcb =_gaac (_gfcb ,_feadf );}else {_gceac =_gaac (_gceac ,_feadf );};};_ccbca +=_cdee ; -};_cddbd ._egffa =nil ;if len (_gfcb )==0{return _cddbd ,nil ,nil ;};return _bcfeg (_cddbd ,_gceac ),_bcfeg (_cddbd ,_gfcb ),nil ;};func _ecdag (_ddcac string ,_bgcfd bool )string {_febda :=_ddcac ;if _febda ==""{return "";};_bfad :=_b .Paragraph {};_ ,_cddf :=_bfad .SetString (_ddcac ); -if _cddf !=nil {return _febda ;};_cegc ,_cddf :=_bfad .Order ();if _cddf !=nil {return _febda ;};_cacbd :=_cegc .NumRuns ();_geaaf :=make ([]string ,_cacbd );for _decg :=0;_decg < _cegc .NumRuns ();_decg ++{_aefgc :=_cegc .Run (_decg );_gfeef :=_aefgc .String (); -if _aefgc .Direction ()==_b .RightToLeft {_gfeef =_b .ReverseString (_gfeef );};if _bgcfd {_geaaf [_decg ]=_gfeef ;}else {_geaaf [_cacbd -1]=_gfeef ;};_cacbd --;};if len (_geaaf )!=_cegc .NumRuns (){return _ddcac ;};_febda =_dc .Join (_geaaf ,"");return _febda ; -}; +// Holds the text and style of the page part of the TOC line. +Page TextChunk ;_adbfe float64 ;_daebd uint ;_aeeeg float64 ;_dggfc Positioning ;_efdgc float64 ;_cafda float64 ;_eefcc int64 ;}; -// SetLineOpacity sets the line opacity. -func (_befdg *Polyline )SetLineOpacity (opacity float64 ){_befdg ._ggba =opacity };func (_ggea *Paragraph )getTextLineWidth (_ceaf string )float64 {var _bgce float64 ;for _ ,_febf :=range _ceaf {if _febf =='\u000A'{continue ;};_gfgbe ,_cdgg :=_ggea ._gcedf .GetRuneMetrics (_febf ); -if !_cdgg {_eef .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0052u\u006e\u0065\u0020\u0063\u0068a\u0072\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0028\u0072\u0075\u006e\u0065\u0020\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0029",_febf ,_febf ); -return -1;};_bgce +=_ggea ._cgcbd *_gfgbe .Wx ;};return _bgce ;}; +// NewTextStyle creates a new text style object which can be used to style +// chunks of text. +// Default attributes: +// Font: Helvetica +// Font size: 10 +// Encoding: WinAnsiEncoding +// Text color: black +func (_cecc *Creator )NewTextStyle ()TextStyle {return _eabad (_cecc ._gade )}; -// GeneratePageBlocks draws the block contents on a template Page block. -// Implements the Drawable interface. -func (_dfg *Block )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_fd :=_de .IdentityMatrix ();_bb ,_gd :=_dfg .Width (),_dfg .Height ();if _dfg ._dcc .IsRelative (){_fd =_fd .Translate (ctx .X ,ctx .PageHeight -ctx .Y -_gd );}else {_fd =_fd .Translate (_dfg ._cdf ,ctx .PageHeight -_dfg ._ag -_gd ); -};_cee :=_gd ;if _dfg ._eb !=0{_fd =_fd .Translate (_bb /2,_gd /2).Rotate (_dfg ._eb *_ec .Pi /180.0).Translate (-_bb /2,-_gd /2);_ ,_cee =_dfg .RotatedSize ();};if _dfg ._dcc .IsRelative (){ctx .Y +=_cee ;};_bcb :=_bd .NewContentCreator ();_bcb .Add_cm (_fd [0],_fd [1],_fd [3],_fd [4],_fd [6],_fd [7]); -_ded :=_dfg .duplicate ();_dea :=append (*_bcb .Operations (),*_ded ._ffc ...);_dea .WrapIfNeeded ();_ded ._ffc =&_dea ;for _ ,_ebg :=range _dfg ._cc {_ac ,_abg :=_ea .GetArray (_ebg .Rect );if !_abg ||_ac .Len ()!=4{_eef .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u0069\u006e\u0076\u0061\u006ci\u0064 \u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0052\u0065\u0063\u0074\u0020\u0066\u0069\u0065l\u0064\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_ebg .Rect ); -continue ;};_gee ,_cdb :=_fa .NewPdfRectangle (*_ac );if _cdb !=nil {_eef .Log .Debug ("\u0057A\u0052N\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074 \u0070\u0061\u0072\u0073e\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020\u0052\u0065\u0063\u0074\u0020\u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061y\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006fr\u0072\u0065\u0063\u0074\u002e",_cdb ); -continue ;};_gee .Transform (_fd );_ebg .Rect =_gee .ToPdfObject ();};return []*Block {_ded },ctx ,nil ;};func (_efef *Creator )getActivePage ()*_fa .PdfPage {if _efef ._aca ==nil {if len (_efef ._ccgg )==0{return nil ;};return _efef ._ccgg [len (_efef ._ccgg )-1]; -};return _efef ._aca ;}; +// DrawHeader sets a function to draw a header on created output pages. +func (_facc *Creator )DrawHeader (drawHeaderFunc func (_cdfg *Block ,_dbee HeaderFunctionArgs )){_facc ._fdcb =drawHeaderFunc ;}; -// SetColorLeft sets border color for left. -func (_fba *border )SetColorLeft (col Color ){_fba ._bgfg =col }; +// Height returns the height of the graphic svg. +func (_dcfa *GraphicSVG )Height ()float64 {return _dcfa ._dgaf .Height }; -// SetPageMargins sets the page margins: left, right, top, bottom. -// The default page margins are 10% of document width. -func (_egccg *Creator )SetPageMargins (left ,right ,top ,bottom float64 ){_egccg ._bcbf .Left =left ;_egccg ._bcbf .Right =right ;_egccg ._bcbf .Top =top ;_egccg ._bcbf .Bottom =bottom ;}; +// AddColorStop add color stop information for rendering gradient. +func (_adaa *shading )AddColorStop (color Color ,point float64 ){_adaa ._ggcd =append (_adaa ._ggcd ,_cafcfa (color ,point ));};type containerDrawable interface{Drawable ; -// GeneratePageBlocks draws the composite curve polygon on a new block -// representing the page. Implements the Drawable interface. -func (_bged *CurvePolygon )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_acead :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_fcc ,_fcac :=_acead .setOpacity (_bged ._bcfd ,_bged ._eggf );if _fcac !=nil {return nil ,ctx ,_fcac ; -};_bggab :=_bged ._dbag ;_bggab .FillEnabled =_bggab .FillColor !=nil ;_bggab .BorderEnabled =_bggab .BorderColor !=nil &&_bggab .BorderWidth > 0;var (_geff =ctx .PageHeight ;_cggd =_bggab .Rings ;_afed =make ([][]_ce .CubicBezierCurve ,0,len (_bggab .Rings )); -);_edff :=_fa .PdfRectangle {};if len (_cggd )> 0&&len (_cggd [0])> 0{_edfc :=_cggd [0][0];_edfc .P0 .Y =_geff -_edfc .P0 .Y ;_edfc .P1 .Y =_geff -_edfc .P1 .Y ;_edfc .P2 .Y =_geff -_edfc .P2 .Y ;_edfc .P3 .Y =_geff -_edfc .P3 .Y ;_edff =_edfc .GetBounds (); -};for _ ,_fbbf :=range _cggd {_fbfb :=make ([]_ce .CubicBezierCurve ,0,len (_fbbf ));for _ ,_gcae :=range _fbbf {_aad :=_gcae ;_aad .P0 .Y =_geff -_aad .P0 .Y ;_aad .P1 .Y =_geff -_aad .P1 .Y ;_aad .P2 .Y =_geff -_aad .P2 .Y ;_aad .P3 .Y =_geff -_aad .P3 .Y ; -_fbfb =append (_fbfb ,_aad );_dcfeg :=_aad .GetBounds ();_edff .Llx =_ec .Min (_edff .Llx ,_dcfeg .Llx );_edff .Lly =_ec .Min (_edff .Lly ,_dcfeg .Lly );_edff .Urx =_ec .Max (_edff .Urx ,_dcfeg .Urx );_edff .Ury =_ec .Max (_edff .Ury ,_dcfeg .Ury );};_afed =append (_afed ,_fbfb ); -};_bggab .Rings =_afed ;defer func (){_bggab .Rings =_cggd }();if _bggab .FillEnabled {_gbde :=_ddcd (_acead ,_bged ._dbag .FillColor ,_bged ._ddbg ,func ()Rectangle {return Rectangle {_dfbc :_edff .Llx ,_gbfgg :_edff .Lly ,_faaa :_edff .Width (),_baag :_edff .Height ()}; -});if _gbde !=nil {return nil ,ctx ,_gbde ;};};_agba ,_ ,_fcac :=_bggab .Draw (_fcc );if _fcac !=nil {return nil ,ctx ,_fcac ;};if _fcac =_acead .addContentsByString (string (_agba ));_fcac !=nil {return nil ,ctx ,_fcac ;};return []*Block {_acead },ctx ,nil ; -}; +// ContainerComponent checks if the component is allowed to be added into provided 'container' and returns +// preprocessed copy of itself. If the component is not changed it is allowed to return itself in a callback way. +// If the component is not compatible with provided container this method should return an error. +ContainerComponent (_aaaf Drawable )(Drawable ,error );}; -// SetSellerAddress sets the seller address of the invoice. -func (_gdfb *Invoice )SetSellerAddress (address *InvoiceAddress ){_gdfb ._aecb =address }; +// Width returns the width of the ellipse. +func (_ddeac *Ellipse )Width ()float64 {return _ddeac ._eded }; -// SetWidth sets the the Paragraph width. This is essentially the wrapping width, i.e. the width the -// text can extend to prior to wrapping over to next line. -func (_ccda *Paragraph )SetWidth (width float64 ){_ccda ._gdffb =width ;_ccda .wrapText ()}; +// SetBorderWidth sets the border width. +func (_gdbg *CurvePolygon )SetBorderWidth (borderWidth float64 ){_gdbg ._ecae .BorderWidth =borderWidth };type cmykColor struct{_badc ,_dea ,_gaa ,_ccb float64 };func (_bcg *Block )duplicate ()*Block {_eb :=&Block {};*_eb =*_bcg ;_fgc :=_bdb .ContentStreamOperations {}; +_fgc =append (_fgc ,*_bcg ._cad ...);_eb ._cad =&_fgc ;return _eb ;}; -// ScaleToHeight scale Image to a specified height h, maintaining the aspect ratio. -func (_aegab *Image )ScaleToHeight (h float64 ){_fdgb :=_aegab ._gfef /_aegab ._ffab ;_aegab ._ffab =h ;_aegab ._gfef =h *_fdgb ;}; +// SetInline sets the inline mode of the division. +func (_dggge *Division )SetInline (inline bool ){_dggge ._aeadf =inline };func _gfeg (_gfabd *templateProcessor ,_gdeac *templateNode )(interface{},error ){return _gfabd .parseListItem (_gdeac );}; -// SetNoteHeadingStyle sets the style properties used to render the heading -// of the invoice note sections. -func (_gffcd *Invoice )SetNoteHeadingStyle (style TextStyle ){_gffcd ._gaga =style }; +// Scale scales the ellipse dimensions by the specified factors. +func (_ffgfb *Ellipse )Scale (xFactor ,yFactor float64 ){_ffgfb ._eded =xFactor *_ffgfb ._eded ;_ffgfb ._dabc =yFactor *_ffgfb ._dabc ;}; -// Title returns the title of the invoice. -func (_aada *Invoice )Title ()string {return _aada ._afgg }; +// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated +// if the contents wrap over multiple pages. +func (_afaad *TOC )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_gcbf :=ctx ;_eaag ,ctx ,_fbadf :=_afaad ._ecagg .GeneratePageBlocks (ctx );if _fbadf !=nil {return _eaag ,ctx ,_fbadf ;};for _ ,_eacca :=range _afaad ._fbeeg {_fbcc :=_eacca ._eefcc ; +if !_afaad ._dbaf {_eacca ._eefcc =0;};_ddcce ,_ddfae ,_fbcgff :=_eacca .GeneratePageBlocks (ctx );_eacca ._eefcc =_fbcc ;if _fbcgff !=nil {return _eaag ,ctx ,_fbcgff ;};if len (_ddcce )< 1{continue ;};_eaag [len (_eaag )-1].mergeBlocks (_ddcce [0]);_eaag =append (_eaag ,_ddcce [1:]...); +ctx =_ddfae ;};if _afaad ._fcffe .IsRelative (){ctx .X =_gcbf .X ;};if _afaad ._fcffe .IsAbsolute (){return _eaag ,_gcbf ,nil ;};return _eaag ,ctx ,nil ;}; -// SetBackground sets the background properties of the component. -func (_ebfa *Division )SetBackground (background *Background ){_ebfa ._gcde =background }; +// SetTitleStyle sets the style properties of the invoice title. +func (_acbce *Invoice )SetTitleStyle (style TextStyle ){_acbce ._eefc =style }; -// GetCoords returns coordinates of border. -func (_dabf *border )GetCoords ()(float64 ,float64 ){return _dabf ._acb ,_dabf ._edb };func _bbed (_egfbg *templateProcessor ,_bfbba *templateNode )(interface{},error ){return _egfbg .parseTextChunk (_bfbba ,nil );}; +// InvoiceCellProps holds all style properties for an invoice cell. +type InvoiceCellProps struct{TextStyle TextStyle ;Alignment CellHorizontalAlignment ;BackgroundColor Color ;BorderColor Color ;BorderWidth float64 ;BorderSides []CellBorderSide ;}; -// Width returns the width of the ellipse. -func (_daga *Ellipse )Width ()float64 {return _daga ._bgea }; +// SetLineOpacity sets the line opacity. +func (_gdff *Polyline )SetLineOpacity (opacity float64 ){_gdff ._afcb =opacity }; -// SetBackgroundColor set background color of the shading area. -// -// By default the background color is set to white. -func (_cfcc *RadialShading )SetBackgroundColor (backgroundColor Color ){_cfcc ._gcbg .SetBackgroundColor (backgroundColor );};var (_dffeg =_ee .MustCompile ("\u0028[\u005cw\u002d\u005d\u002b\u0029\u005c(\u0027\u0028.\u002b\u0029\u0027\u005c\u0029");_abeb =_e .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0063\u0072\u0065a\u0074\u006f\u0072\u0020\u0069\u006e\u0073t\u0061\u006e\u0063\u0065"); -_abag =_e .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074e\u0020p\u0061\u0072\u0065\u006e\u0074\u0020\u006eo\u0064\u0065");_cadef =_e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020c\u0068\u0069\u006cd\u0020n\u006f\u0064\u0065"); -_cfee =_e .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0074\u0065\u006d\u0070l\u0061t\u0065 \u0072\u0065\u0073\u006f\u0075\u0072\u0063e");); +// Logo returns the logo of the invoice. +func (_agfb *Invoice )Logo ()*Image {return _agfb ._bfge }; -// TextVerticalAlignment controls the vertical position of the text -// in a styled paragraph. -type TextVerticalAlignment int ;func _caaff (_aaaa *templateProcessor ,_gebce *templateNode )(interface{},error ){return _aaaa .parseChapter (_gebce );};func (_eedg *List )split (_ggbgc DrawContext )(_dbad ,_gace *List ){var (_cbbf float64 ;_egedf ,_faeed []*listItem ; -);_gecg :=_ggbgc .Width -_eedg ._eead .Horizontal ()-_eedg ._dcdc -_eedg .markerWidth ();_ggag :=_eedg .markerWidth ();for _ebag ,_agfg :=range _eedg ._fbeaf {_eedb :=_agfg .ctxHeight (_gecg );_cbbf +=_eedb ;if _cbbf <=_ggbgc .Height {_egedf =append (_egedf ,_agfg ); -}else {switch _bgbe :=_agfg ._edcf .(type ){case *List :_fdgf :=_ggbgc ;_fdgf .Height =_ec .Floor (_eedb -(_cbbf -_ggbgc .Height ));_eceg ,_gceg :=_bgbe .split (_fdgf );if _eceg !=nil {_egf :=_cgege ();_egf ._dbea =_agfg ._dbea ;_egf ._edcf =_eceg ;_egedf =append (_egedf ,_egf ); -};if _gceg !=nil {_agcf :=_bgbe ._cgef .Style .FontSize ;_dcfa ,_cfgec :=_bgbe ._cgef .Style .Font .GetRuneMetrics (' ');if _cfgec {_agcf =_bgbe ._cgef .Style .FontSize *_dcfa .Wx *_bgbe ._cgef .Style .horizontalScale ()/1000.0;};_bede :=_dc .Repeat ("\u0020",int (_ggag /_agcf )); -_cgdab :=_cgege ();_cgdab ._dbea =*NewTextChunk (_bede ,_bgbe ._cgef .Style );_cgdab ._edcf =_gceg ;_faeed =append (_faeed ,_cgdab );_faeed =append (_faeed ,_eedg ._fbeaf [_ebag +1:]...);};default:_faeed =_eedg ._fbeaf [_ebag :];};if len (_faeed )> 0{break ; -};};};if len (_egedf )> 0{_dbad =_ddaea (_eedg ._dbca );*_dbad =*_eedg ;_dbad ._fbeaf =_egedf ;};if len (_faeed )> 0{_gace =_ddaea (_eedg ._dbca );*_gace =*_eedg ;_gace ._fbeaf =_faeed ;};return _dbad ,_gace ;}; +// Date returns the invoice date description and value cells. +// The returned values can be used to customize the styles of the cells. +func (_gfba *Invoice )Date ()(*InvoiceCell ,*InvoiceCell ){return _gfba ._ddbe [0],_gfba ._ddbe [1]}; -// SetMargins sets the margins of the ellipse. -// NOTE: ellipse margins are only applied if relative positioning is used. -func (_cgda *Ellipse )SetMargins (left ,right ,top ,bottom float64 ){_cgda ._dfac .Left =left ;_cgda ._dfac .Right =right ;_cgda ._dfac .Top =top ;_cgda ._dfac .Bottom =bottom ;};func (_bdec *StyledParagraph )getTextWidth ()float64 {var _aggdg float64 ; -_ebbdd :=len (_bdec ._cfbcg );for _fcgac ,_geddd :=range _bdec ._cfbcg {_feba :=&_geddd .Style ;_fbdgd :=len (_geddd .Text );for _bafd ,_bfcc :=range _geddd .Text {if _bfcc =='\u000A'{continue ;};_bbga ,_fcaab :=_feba .Font .GetRuneMetrics (_bfcc );if !_fcaab {_eef .Log .Debug ("\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069c\u0073 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0025\u0076\u000a",_bfcc ); -return -1;};_aggdg +=_feba .FontSize *_bbga .Wx *_feba .horizontalScale ();if _bfcc !=' '&&(_fcgac !=_ebbdd -1||_bafd !=_fbdgd -1){_aggdg +=_feba .CharSpacing *1000.0;};};};return _aggdg ;}; +// ToRGB implements interface Color. +// Note: It's not directly used since shading color works differently than regular color. +func (_abga *LinearShading )ToRGB ()(float64 ,float64 ,float64 ){return 0,0,0};func _bdcfa (_ecgff string )(*GraphicSVG ,error ){_bcggb ,_dedg :=_cc .ParseFromString (_ecgff );if _dedg !=nil {return nil ,_dedg ;};return _cgee (_bcggb );}; -// TableCell defines a table cell which can contain a Drawable as content. -type TableCell struct{_cbacb Color ;_gegge _ce .LineStyle ;_cbbdb CellBorderStyle ;_cgce Color ;_fceg float64 ;_fafdb CellBorderStyle ;_cfaea Color ;_gegf float64 ;_fbcg CellBorderStyle ;_egddb Color ;_bebbd float64 ;_deaff CellBorderStyle ;_bbcfdd Color ; -_faeaf float64 ;_cceef ,_baceb int ;_badd int ;_gfeb int ;_cead VectorDrawable ;_dedb CellHorizontalAlignment ;_ecbg CellVerticalAlignment ;_ddbeg float64 ;_edfg *Table ;}; +// EnablePageWrap controls whether the division is wrapped across pages. +// If disabled, the division is moved in its entirety on a new page, if it +// does not fit in the available height. By default, page wrapping is enabled. +// If the height of the division is larger than an entire page, wrapping is +// enabled automatically in order to avoid unwanted behavior. +// Currently, page wrapping can only be disabled for vertical divisions. +func (_acaa *Division )EnablePageWrap (enable bool ){_acaa ._ggdbd =enable }; -// BorderOpacity returns the border opacity of the ellipse (0-1). -func (_fab *Ellipse )BorderOpacity ()float64 {return _fab ._acdcf };func (_ddded *templateProcessor )parseFloatArray (_fccce ,_caeg string )[]float64 {_eef .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020\u0066\u006c\u006f\u0061\u0074\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060%\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_fccce ,_caeg ); -_egcga :=_dc .Fields (_caeg );_aefe :=make ([]float64 ,0,len (_egcga ));for _ ,_aagd :=range _egcga {_adade ,_ :=_a .ParseFloat (_aagd ,64);_aefe =append (_aefe ,_adade );};return _aefe ;}; +// NewImageFromFile creates an Image from a file. +func (_eggb *Creator )NewImageFromFile (path string )(*Image ,error ){return _ggde (path )}; -// String implements error interface. -func (_bggf UnsupportedRuneError )Error ()string {return _bggf .Message }; +// FitMode defines resizing options of an object inside a container. +type FitMode int ; -// AnchorPoint defines anchor point where the center position of the radial gradient would be calculated. -type AnchorPoint int ;func _cfce (_bdffa ,_ffae ,_gddc ,_cgff float64 )*Rectangle {return &Rectangle {_dfbc :_bdffa ,_gbfgg :_ffae ,_faaa :_gddc ,_baag :_cgff ,_fdde :PositionAbsolute ,_efgb :1.0,_bada :ColorBlack ,_aebcg :1.0,_gacec :1.0};}; +// SetAddressStyle sets the style properties used to render the content of +// the invoice address sections. +func (_bgbfc *Invoice )SetAddressStyle (style TextStyle ){_bgbfc ._acecg =style };func _bebddd (_egee ,_cacf ,_cbade TextChunk ,_aeefc uint ,_acgeg TextStyle )*TOCLine {_gdee :=_egdc (_acgeg );_gdee .SetEnableWrap (true );_gdee .SetTextAlignment (TextAlignmentLeft ); +_gdee .SetMargins (0,0,2,2);_fedf :=&TOCLine {_ecde :_gdee ,Number :_egee ,Title :_cacf ,Page :_cbade ,Separator :TextChunk {Text :"\u002e",Style :_acgeg },_adbfe :0,_daebd :_aeefc ,_aeeeg :10,_dggfc :PositionRelative };_gdee ._fbgbc .Left =_fedf ._adbfe +float64 (_fedf ._daebd -1)*_fedf ._aeeeg ; +_gdee ._dbdfe =_fedf .prepareParagraph ;return _fedf ;}; -// CellVerticalAlignment defines the table cell's vertical alignment. -type CellVerticalAlignment int ; +// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated if the contents wrap +// over multiple pages. +func (_eegd *Chapter )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_bad :=ctx ;if _eegd ._dddd .IsRelative (){ctx .X +=_eegd ._ecga .Left ;ctx .Y +=_eegd ._ecga .Top ;ctx .Width -=_eegd ._ecga .Left +_eegd ._ecga .Right ;ctx .Height -=_eegd ._ecga .Top ; +};_bge ,_cdec ,_cbed :=_eegd ._ddd .GeneratePageBlocks (ctx );if _cbed !=nil {return _bge ,ctx ,_cbed ;};ctx =_cdec ;_eafa :=ctx .X ;_faec :=ctx .Y -_eegd ._ddd .Height ();_bcc :=int64 (ctx .Page );_gcdd :=_eegd .headingNumber ();_gfac :=_eegd .headingText (); +if _eegd ._afg {_ffe :=_eegd ._bdde .Add (_gcdd ,_eegd ._gbcb ,_a .FormatInt (_bcc ,10),_eegd ._ede );if _eegd ._bdde ._dbaf {_ffe .SetLink (_bcc ,_eafa ,_faec );};};if _eegd ._agd ==nil {_eegd ._agd =_ggc .NewOutlineItem (_gfac ,_ggc .NewOutlineDest (_bcc -1,_eafa ,_faec )); +if _eegd ._beae !=nil {_eegd ._beae ._agd .Add (_eegd ._agd );}else {_eegd ._ggf .Add (_eegd ._agd );};}else {_gcf :=&_eegd ._agd .Dest ;_gcf .Page =_bcc -1;_gcf .X =_eafa ;_gcf .Y =_faec ;};for _ ,_ffac :=range _eegd ._gbac {_gag ,_cfdf ,_badd :=_ffac .GeneratePageBlocks (ctx ); +if _badd !=nil {return _bge ,ctx ,_badd ;};if len (_gag )< 1{continue ;};_bge [len (_bge )-1].mergeBlocks (_gag [0]);_bge =append (_bge ,_gag [1:]...);ctx =_cfdf ;};if _eegd ._dddd .IsRelative (){ctx .X =_bad .X ;};if _eegd ._dddd .IsAbsolute (){return _bge ,_bad ,nil ; +};return _bge ,ctx ,nil ;};var (PageSizeA3 =PageSize {297*PPMM ,420*PPMM };PageSizeA4 =PageSize {210*PPMM ,297*PPMM };PageSizeA5 =PageSize {148*PPMM ,210*PPMM };PageSizeLetter =PageSize {8.5*PPI ,11*PPI };PageSizeLegal =PageSize {8.5*PPI ,14*PPI };); + +// NewImage create a new image from a unidoc image (model.Image). +func (_bgba *Creator )NewImage (img *_ggc .Image )(*Image ,error ){return _ggba (img )}; // ConvertToBinary converts current image data into binary (Bi-level image) format. // If provided image is RGB or GrayScale the function converts it into binary image // using histogram auto threshold method. -func (_adbf *Image )ConvertToBinary ()error {return _adbf ._dca .ConvertToBinary ()}; - -// SetTotal sets the total of the invoice. -func (_begcg *Invoice )SetTotal (value string ){_begcg ._cadf [1].Value =value };func (_agb *Block )setOpacity (_ecg float64 ,_ffg float64 )(string ,error ){if (_ecg < 0||_ecg >=1.0)&&(_ffg < 0||_ffg >=1.0){return "",nil ;};_gba :=0;_age :=_g .Sprintf ("\u0047\u0053\u0025\u0064",_gba ); -for _agb ._gae .HasExtGState (_ea .PdfObjectName (_age )){_gba ++;_age =_g .Sprintf ("\u0047\u0053\u0025\u0064",_gba );};_da :=_ea .MakeDict ();if _ecg >=0&&_ecg < 1.0{_da .Set ("\u0063\u0061",_ea .MakeFloat (_ecg ));};if _ffg >=0&&_ffg < 1.0{_da .Set ("\u0043\u0041",_ea .MakeFloat (_ffg )); -};_bf :=_agb ._gae .AddExtGState (_ea .PdfObjectName (_age ),_da );if _bf !=nil {return "",_bf ;};return _age ,nil ;}; +func (_gdg *Image )ConvertToBinary ()error {return _gdg ._dffd .ConvertToBinary ()}; -// SetCoords sets the upper left corner coordinates of the rectangle. -func (_fcbag *Rectangle )SetCoords (x ,y float64 ){_fcbag ._dfbc =x ;_fcbag ._gbfgg =y }; +// SetHeaderRows turns the selected table rows into headers that are repeated +// for every page the table spans. startRow and endRow are inclusive. +func (_fdfdg *Table )SetHeaderRows (startRow ,endRow int )error {if startRow <=0{return _fa .New ("\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0073\u0074\u0061\u0072\u0074\u0020r\u006f\u0077\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0030"); +};if endRow <=0{return _fa .New ("\u0068\u0065a\u0064\u0065\u0072\u0020e\u006e\u0064 \u0072\u006f\u0077\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0030");};if startRow > endRow {return _fa .New ("\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0073\u0074\u0061\u0072\u0074\u0020\u0072\u006f\u0077\u0020\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0074\u0068\u0065 \u0065\u006e\u0064\u0020\u0072o\u0077"); +};_fdfdg ._dgfg =true ;_fdfdg ._aggfe =startRow ;_fdfdg ._fecf =endRow ;return nil ;}; -// UnsupportedRuneError is an error that occurs when there is unsupported glyph being used. -type UnsupportedRuneError struct{Message string ;Rune rune ;}; +// Height returns the height of the line. +func (_cfad *Line )Height ()float64 {_bbfc :=_cfad ._adf ;if _cfad ._daed ==_cfad ._eddg {_bbfc /=2;};return _b .Abs (_cfad ._eabb -_cfad ._gfaa )+_bbfc ;}; -// SetStyleTop sets border style for top side. -func (_bcg *border )SetStyleTop (style CellBorderStyle ){_bcg ._bdd =style }; +// ScaleToHeight sets the graphic svg scaling factor with the given height. +func (_gadb *GraphicSVG )ScaleToHeight (h float64 ){_eggg :=_gadb ._dgaf .Width /_gadb ._dgaf .Height ;_gadb ._dgaf .Height =h ;_gadb ._dgaf .Width =h *_eggg ;_gadb ._dgaf .SetScaling (_eggg ,_eggg );}; -// SetTextOverflow controls the behavior of paragraph text which -// does not fit in the available space. -func (_gcdgf *StyledParagraph )SetTextOverflow (textOverflow TextOverflow ){_gcdgf ._ebebd =textOverflow ;}; +// SetPos sets the Table's positioning to absolute mode and specifies the upper-left corner +// coordinates as (x,y). +// Note that this is only sensible to use when the table does not wrap over multiple pages. +// TODO: Should be able to set width too (not just based on context/relative positioning mode). +func (_fgff *Table )SetPos (x ,y float64 ){_fgff ._bbdf =PositionAbsolute ;_fgff ._fedd =x ;_fgff ._degda =y ;}; -// SetStyleLeft sets border style for left side. -func (_aaa *border )SetStyleLeft (style CellBorderStyle ){_aaa ._dcda =style }; +// CreateTableOfContents sets a function to generate table of contents. +func (_bag *Creator )CreateTableOfContents (genTOCFunc func (_gfb *TOC )error ){_bag ._gfgf =genTOCFunc };func _facd (_dfg *Chapter ,_gbd *TOC ,_ecbf *_ggc .Outline ,_fdcd string ,_gcb int ,_eafca TextStyle )*Chapter {var _bceg uint =1;if _dfg !=nil {_bceg =_dfg ._ede +1; +};_eeeed :=&Chapter {_cfde :_gcb ,_gbcb :_fdcd ,_fgg :true ,_afg :true ,_beae :_dfg ,_bdde :_gbd ,_ggf :_ecbf ,_gbac :[]Drawable {},_ede :_bceg };_defg :=_agbf (_eeeed .headingText (),_eafca );_defg .SetFont (_eafca .Font );_defg .SetFontSize (_eafca .FontSize ); +_eeeed ._ddd =_defg ;return _eeeed ;}; -// NewPageBreak create a new page break. -func (_edaf *Creator )NewPageBreak ()*PageBreak {return _ddge ()};func _ggbe (_feae *_fa .PdfFont )TextStyle {return TextStyle {Color :ColorRGBFrom8bit (0,0,0),Font :_feae ,FontSize :10,OutlineSize :1,HorizontalScaling :DefaultHorizontalScaling ,UnderlineStyle :TextDecorationLineStyle {Offset :1,Thickness :1}}; -}; +// GeneratePageBlocks draws the filled curve on page blocks. +func (_ccgd *FilledCurve )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_gcec :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_bbga ,_ ,_bgbe :=_ccgd .draw (_gcec ,"");if _bgbe !=nil {return nil ,ctx ,_bgbe ;};_bgbe =_gcec .addContentsByString (string (_bbga )); +if _bgbe !=nil {return nil ,ctx ,_bgbe ;};return []*Block {_gcec },ctx ,nil ;}; -// Total returns the invoice total description and value cells. -// The returned values can be used to customize the styles of the cells. -func (_ebgag *Invoice )Total ()(*InvoiceCell ,*InvoiceCell ){return _ebgag ._cadf [0],_ebgag ._cadf [1]}; +// GetMargins returns the margins of the graphic svg (left, right, top, bottom). +func (_baddc *GraphicSVG )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _baddc ._eaff .Left ,_baddc ._eaff .Right ,_baddc ._eaff .Top ,_baddc ._eaff .Bottom ;}; -// HeaderFunctionArgs holds the input arguments to a header drawing function. -// It is designed as a struct, so additional parameters can be added in the future with backwards -// compatibility. -type HeaderFunctionArgs struct{PageNum int ;TotalPages int ;}; +// SetWidth sets the the Paragraph width. This is essentially the wrapping width, i.e. the width the +// text can extend to prior to wrapping over to next line. +func (_cege *Paragraph )SetWidth (width float64 ){_cege ._dcdb =width ;_cege .wrapText ()}; -// NewGraphicSVGFromFile creates a graphic SVG from a file. -func NewGraphicSVGFromFile (path string )(*GraphicSVG ,error ){return _aaada (path )};func (_adfd *templateProcessor )nodeError (_gebcg *templateNode ,_gagge string ,_accc ...interface{})error {return _g .Errorf (_adfd .getNodeErrorLocation (_gebcg ,_gagge ,_accc ...)); -}; +// IsRelative checks if the positioning is relative. +func (_cgea Positioning )IsRelative ()bool {return _cgea ==PositionRelative };func (_ddda *templateProcessor )parseTextOverflowAttr (_ceeb ,_cbfc string )TextOverflow {_ca .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020\u0074e\u0078\u0074\u0020o\u0076\u0065\u0072\u0066\u006c\u006f\u0077\u0020\u0061tt\u0072\u0069\u0062u\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060,\u0020\u0025s\u0029\u002e",_ceeb ,_cbfc ); +_effgdb :=map[string ]TextOverflow {"\u0076i\u0073\u0069\u0062\u006c\u0065":TextOverflowVisible ,"\u0068\u0069\u0064\u0064\u0065\u006e":TextOverflowHidden }[_cbfc ];return _effgdb ;}; -// SetStyle sets the style for all the line components: number, title, -// separator, page. -func (_gdgd *TOCLine )SetStyle (style TextStyle ){_gdgd .Number .Style =style ;_gdgd .Title .Style =style ;_gdgd .Separator .Style =style ;_gdgd .Page .Style =style ;}; +// GeneratePageBlocks draws the line on a new block representing the page. +// Implements the Drawable interface. +func (_adfb *Line )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_cfddd []*Block ;_fgbcg =NewBlock (ctx .PageWidth ,ctx .PageHeight );_ddef =ctx ;_faecg ,_decce =_adfb ._daed ,ctx .PageHeight -_adfb ._gfaa ;_fdceb ,_aegb =_adfb ._eddg ,ctx .PageHeight -_adfb ._eabb ; +);_bccd :=_adfb ._fgef .IsRelative ();if _bccd {ctx .X +=_adfb ._bccc .Left ;ctx .Y +=_adfb ._bccc .Top ;ctx .Width -=_adfb ._bccc .Left +_adfb ._bccc .Right ;ctx .Height -=_adfb ._bccc .Top +_adfb ._bccc .Bottom ;_faecg ,_decce ,_fdceb ,_aegb =_adfb .computeCoords (ctx ); +if _adfb .Height ()> ctx .Height {_cfddd =append (_cfddd ,_fgbcg );_fgbcg =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_cadba :=ctx ;_cadba .Y =ctx .Margins .Top +_adfb ._bccc .Top ;_cadba .X =ctx .Margins .Left +_adfb ._bccc .Left ;_cadba .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_adfb ._bccc .Top -_adfb ._bccc .Bottom ; +_cadba .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_adfb ._bccc .Left -_adfb ._bccc .Right ;ctx =_cadba ;_faecg ,_decce ,_fdceb ,_aegb =_adfb .computeCoords (ctx );};};_fgdc :=_fc .BasicLine {X1 :_faecg ,Y1 :_decce ,X2 :_fdceb ,Y2 :_aegb ,LineColor :_dbac (_adfb ._cdgfa ),Opacity :_adfb ._ggbab ,LineWidth :_adfb ._adf ,LineStyle :_adfb ._ceac ,DashArray :_adfb ._fgbfg ,DashPhase :_adfb ._bgfed }; +_ffda ,_gfdf :=_fgbcg .setOpacity (1.0,_adfb ._ggbab );if _gfdf !=nil {return nil ,ctx ,_gfdf ;};_aceee ,_ ,_gfdf :=_fgdc .Draw (_ffda );if _gfdf !=nil {return nil ,ctx ,_gfdf ;};if _gfdf =_fgbcg .addContentsByString (string (_aceee ));_gfdf !=nil {return nil ,ctx ,_gfdf ; +};if _bccd {ctx .X =_ddef .X ;ctx .Width =_ddef .Width ;_gdbca :=_adfb .Height ();ctx .Y +=_gdbca +_adfb ._bccc .Bottom ;ctx .Height -=_gdbca ;}else {ctx =_ddef ;};_cfddd =append (_cfddd ,_fgbcg );return _cfddd ,ctx ,nil ;}; -// AppendColumn appends a column to the line items table. -func (_dfbe *Invoice )AppendColumn (description string )*InvoiceCell {_ebcbg :=_dfbe .NewColumn (description );_dfbe ._cgcg =append (_dfbe ._cgcg ,_ebcbg );return _ebcbg ;};const (TextRenderingModeFill TextRenderingMode =iota ;TextRenderingModeStroke ; -TextRenderingModeFillStroke ;TextRenderingModeInvisible ;TextRenderingModeFillClip ;TextRenderingModeStrokeClip ;TextRenderingModeFillStrokeClip ;TextRenderingModeClip ;); +// IsAbsolute checks if the positioning is absolute. +func (_ccfa Positioning )IsAbsolute ()bool {return _ccfa ==PositionAbsolute }; -// GetMargins returns the margins of the rectangle: left, right, top, bottom. -func (_cbba *Rectangle )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _cbba ._bacfa .Left ,_cbba ._bacfa .Right ,_cbba ._bacfa .Top ,_cbba ._bacfa .Bottom ;};func (_abadf cmykColor )ToRGB ()(float64 ,float64 ,float64 ){_aed :=_abadf ._gdad ; -return 1-(_abadf ._cgge *(1-_aed )+_aed ),1-(_abadf ._fbcb *(1-_aed )+_aed ),1-(_abadf ._abad *(1-_aed )+_aed );}; +// NewTable create a new Table with a specified number of columns. +func (_bdc *Creator )NewTable (cols int )*Table {return _gdec (cols )};func (_dedgc *templateProcessor )nodeError (_eecde *templateNode ,_abbd string ,_gfff ...interface{})error {return _df .Errorf (_dedgc .getNodeErrorLocation (_eecde ,_abbd ,_gfff ...)); +}; -// SetFillOpacity sets the fill opacity of the rectangle. -func (_ecce *Rectangle )SetFillOpacity (opacity float64 ){_ecce ._efgb =opacity }; +// InvoiceCell represents any cell belonging to a table from the invoice +// template. The main tables are the invoice information table, the line +// items table and totals table. Contains the text value of the cell and +// the style properties of the cell. +type InvoiceCell struct{InvoiceCellProps ;Value string ;};func (_beca *Creator )wrapPageIfNeeded (_cffaa *_ggc .PdfPage )(*_ggc .PdfPage ,error ){_agc ,_fgba :=_cffaa .GetAllContentStreams ();if _fgba !=nil {return nil ,_fgba ;};_bcab :=_bdb .NewContentStreamParser (_agc ); +_gccb ,_fgba :=_bcab .Parse ();if _fgba !=nil {return nil ,_fgba ;};if !_gccb .HasUnclosedQ (){return nil ,nil ;};_gccb .WrapIfNeeded ();_fccg ,_fgba :=_fe .MakeStream (_gccb .Bytes (),_fe .NewFlateEncoder ());if _fgba !=nil {return nil ,_fgba ;};_cffaa .Contents =_fe .MakeArray (_fccg ); +return _cffaa ,nil ;};func _gcba (_efce *templateProcessor ,_fcbae *templateNode )(interface{},error ){return _efce .parseTableCell (_fcbae );}; -// IsAbsolute checks if the positioning is absolute. -func (_ggab Positioning )IsAbsolute ()bool {return _ggab ==PositionAbsolute }; +// SetBorderRadius sets the radius of the background corners. +func (_bg *Background )SetBorderRadius (topLeft ,topRight ,bottomLeft ,bottomRight float64 ){_bg .BorderRadiusTopLeft =topLeft ;_bg .BorderRadiusTopRight =topRight ;_bg .BorderRadiusBottomLeft =bottomLeft ;_bg .BorderRadiusBottomRight =bottomRight ;}; -// SetTitle sets the title of the invoice. -func (_ecda *Invoice )SetTitle (title string ){_ecda ._afgg =title };func (_ddag *StyledParagraph )getTextLineWidth (_deca []*TextChunk )float64 {var _fdeec float64 ;_fefff :=len (_deca );for _gffdd ,_ffdbg :=range _deca {_ccedf :=&_ffdbg .Style ;_aacb :=len (_ffdbg .Text ); -for _gcaaa ,_fefe :=range _ffdbg .Text {if _fefe =='\u000A'{continue ;};_agfda ,_edafb :=_ccedf .Font .GetRuneMetrics (_fefe );if !_edafb {_eef .Log .Debug ("\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069c\u0073 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0025\u0076\u000a",_fefe ); -return -1;};_fdeec +=_ccedf .FontSize *_agfda .Wx *_ccedf .horizontalScale ();if _fefe !=' '&&(_gffdd !=_fefff -1||_gcaaa !=_aacb -1){_fdeec +=_ccedf .CharSpacing *1000.0;};};};return _fdeec ;};const (FitModeNone FitMode =iota ;FitModeFillWidth ;); +// SetHeading sets the text and the style of the heading of the TOC component. +func (_adegea *TOC )SetHeading (text string ,style TextStyle ){_ddddg :=_adegea .Heading ();_ddddg .Reset ();_eeccb :=_ddddg .Append (text );_eeccb .Style =style ;}; -// DrawFooter sets a function to draw a footer on created output pages. -func (_cfgf *Creator )DrawFooter (drawFooterFunc func (_adgc *Block ,_gefd FooterFunctionArgs )){_cfgf ._ddb =drawFooterFunc ;}; +// SetAngle sets Image rotation angle in degrees. +func (_dgbeb *Image )SetAngle (angle float64 ){_dgbeb ._eadgc =angle };func _eabad (_faca *_ggc .PdfFont )TextStyle {return TextStyle {Color :ColorRGBFrom8bit (0,0,0),Font :_faca ,FontSize :10,OutlineSize :1,HorizontalScaling :DefaultHorizontalScaling ,UnderlineStyle :TextDecorationLineStyle {Offset :1,Thickness :1}}; +}; -// NewTOCLine creates a new table of contents line with the default style. -func (_abdc *Creator )NewTOCLine (number ,title ,page string ,level uint )*TOCLine {return _gbgf (number ,title ,page ,level ,_abdc .NewTextStyle ());}; +// SetAddressHeadingStyle sets the style properties used to render the +// heading of the invoice address sections. +func (_bgfe *Invoice )SetAddressHeadingStyle (style TextStyle ){_bgfe ._debc =style };func (_abgd *Creator )newPage ()*_ggc .PdfPage {_bde :=_ggc .NewPdfPage ();_cfc :=_abgd ._gccce [0];_abe :=_abgd ._gccce [1];_cda :=_ggc .PdfRectangle {Llx :0,Lly :0,Urx :_cfc ,Ury :_abe }; +_bde .MediaBox =&_cda ;_abgd ._abf =_cfc ;_abgd ._ffc =_abe ;_abgd .initContext ();return _bde ;}; -// SetBorderOpacity sets the border opacity. -func (_gagd *CurvePolygon )SetBorderOpacity (opacity float64 ){_gagd ._eggf =opacity }; +// ScaleToWidth scale Image to a specified width w, maintaining the aspect ratio. +func (_bgeg *Image )ScaleToWidth (w float64 ){_eecg :=_bgeg ._efef /_bgeg ._cagba ;_bgeg ._cagba =w ;_bgeg ._efef =w *_eecg ;}; -// SetPositioning sets the positioning of the line (absolute or relative). -func (_ccbf *Line )SetPositioning (positioning Positioning ){_ccbf ._gfdb =positioning };func (_ffge *StyledParagraph )getTextHeight ()float64 {var _fcaec float64 ;for _ ,_edecc :=range _ffge ._cfbcg {_cbbb :=_edecc .Style .FontSize *_ffge ._gbcb ;if _cbbb > _fcaec {_fcaec =_cbbb ; -};};return _fcaec ;}; +// SetPageLabels adds the specified page labels to the PDF file generated +// by the creator. See section 12.4.2 "Page Labels" (p. 382 PDF32000_2008). +// NOTE: for existing PDF files, the page label ranges object can be obtained +// using the model.PDFReader's GetPageLabels method. +func (_egf *Creator )SetPageLabels (pageLabels _fe .PdfObject ){_egf ._dbgc =pageLabels }; -// Vertical returns total vertical (top + bottom) margin. -func (_adfg *Margins )Vertical ()float64 {return _adfg .Bottom +_adfg .Top }; +// SetFillOpacity sets the fill opacity of the ellipse. +func (_dedc *Ellipse )SetFillOpacity (opacity float64 ){_dedc ._ddbf =opacity }; -// AddPatternResource adds pattern dictionary inside the resources dictionary. -func (_dfebf *RadialShading )AddPatternResource (block *Block )(_cbdd _ea .PdfObjectName ,_bfcb error ){_aegb :=1;_cace :=_ea .PdfObjectName ("\u0050"+_a .Itoa (_aegb ));for block ._gae .HasPatternByName (_cace ){_aegb ++;_cace =_ea .PdfObjectName ("\u0050"+_a .Itoa (_aegb )); -};if _ggagc :=block ._gae .SetPatternByName (_cace ,_dfebf .ToPdfShadingPattern ().ToPdfObject ());_ggagc !=nil {return "",_ggagc ;};return _cace ,nil ;}; +// NewStyledParagraph creates a new styled paragraph. +// Default attributes: +// Font: Helvetica, +// Font size: 10 +// Encoding: WinAnsiEncoding +// Wrap: enabled +// Text color: black +func (_bcbdd *Creator )NewStyledParagraph ()*StyledParagraph {return _egdc (_bcbdd .NewTextStyle ())}; -// SetHeight sets the Image's document height to specified h. -func (_dbd *Image )SetHeight (h float64 ){_dbd ._ffab =h }; +// DashPattern returns the dash pattern of the line. +func (_ceda *Line )DashPattern ()(_fdbe []int64 ,_ccaf int64 ){return _ceda ._fgbfg ,_ceda ._bgfed }; -// GeneratePageBlocks draws the line on a new block representing the page. -// Implements the Drawable interface. -func (_bcece *Line )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_afea []*Block ;_aggg =NewBlock (ctx .PageWidth ,ctx .PageHeight );_agfe =ctx ;_egca ,_gcag =_bcece ._dfbf ,ctx .PageHeight -_bcece ._aeecg ;_ebfdg ,_fedc =_bcece ._gagg ,ctx .PageHeight -_bcece ._cbaff ; -);_aade :=_bcece ._gfdb .IsRelative ();if _aade {ctx .X +=_bcece ._dcdb .Left ;ctx .Y +=_bcece ._dcdb .Top ;ctx .Width -=_bcece ._dcdb .Left +_bcece ._dcdb .Right ;ctx .Height -=_bcece ._dcdb .Top +_bcece ._dcdb .Bottom ;_egca ,_gcag ,_ebfdg ,_fedc =_bcece .computeCoords (ctx ); -if _bcece .Height ()> ctx .Height {_afea =append (_afea ,_aggg );_aggg =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_ecea :=ctx ;_ecea .Y =ctx .Margins .Top +_bcece ._dcdb .Top ;_ecea .X =ctx .Margins .Left +_bcece ._dcdb .Left ;_ecea .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_bcece ._dcdb .Top -_bcece ._dcdb .Bottom ; -_ecea .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_bcece ._dcdb .Left -_bcece ._dcdb .Right ;ctx =_ecea ;_egca ,_gcag ,_ebfdg ,_fedc =_bcece .computeCoords (ctx );};};_gggd :=_ce .BasicLine {X1 :_egca ,Y1 :_gcag ,X2 :_ebfdg ,Y2 :_fedc ,LineColor :_gdfa (_bcece ._cabf ),Opacity :_bcece ._gcaa ,LineWidth :_bcece ._baec ,LineStyle :_bcece ._ddca ,DashArray :_bcece ._efgeg ,DashPhase :_bcece ._gfee }; -_bdadf ,_gdbag :=_aggg .setOpacity (1.0,_bcece ._gcaa );if _gdbag !=nil {return nil ,ctx ,_gdbag ;};_cgfc ,_ ,_gdbag :=_gggd .Draw (_bdadf );if _gdbag !=nil {return nil ,ctx ,_gdbag ;};if _gdbag =_aggg .addContentsByString (string (_cgfc ));_gdbag !=nil {return nil ,ctx ,_gdbag ; -};if _aade {ctx .X =_agfe .X ;ctx .Width =_agfe .Width ;_gcagc :=_bcece .Height ();ctx .Y +=_gcagc +_bcece ._dcdb .Bottom ;ctx .Height -=_gcagc ;}else {ctx =_agfe ;};_afea =append (_afea ,_aggg );return _afea ,ctx ,nil ;};func (_deff *TableCell )width (_ffgcd []float64 ,_gadcf float64 )float64 {_bgeggg :=float64 (0.0); -for _befaf :=0;_befaf < _deff ._gfeb ;_befaf ++{_bgeggg +=_ffgcd [_deff ._baceb +_befaf -1];};return _bgeggg *_gadcf ;}; - -// NoteStyle returns the style properties used to render the content of the -// invoice note sections. -func (_aece *Invoice )NoteStyle ()TextStyle {return _aece ._bgeac };func _faaeb (_afeg *templateProcessor ,_ccbea *templateNode )(interface{},error ){return _afeg .parseEllipse (_ccbea );};func _gacc (_fdfg string ,_fgga TextStyle )*Paragraph {_bbcf :=&Paragraph {_babfa :_fdfg ,_gcedf :_fgga .Font ,_cgcbd :_fgga .FontSize ,_ecegc :1.0,_fade :true ,_gade :true ,_fbgf :TextAlignmentLeft ,_dgdea :0,_bdefc :1,_efdb :1,_aacf :PositionRelative }; -_bbcf .SetColor (_fgga .Color );return _bbcf ;};var _gegg =_ee .MustCompile ("\u005c\u0064\u002b");func _dbdf (_fcgg *templateProcessor ,_cfggc *templateNode )(interface{},error ){return _fcgg .parseListItem (_cfggc );};func (_bdf *Block )addContents (_aaf *_bd .ContentStreamOperations ){_bdf ._ffc .WrapIfNeeded (); -_aaf .WrapIfNeeded ();*_bdf ._ffc =append (*_bdf ._ffc ,*_aaf ...);};func (_bcggf *templateProcessor )parseRadialGradientAttr (creator *Creator ,_bgaaa string )Color {_fffb :=ColorBlack ;if _bgaaa ==""{return _fffb ;};var (_cfca error ;_bddbf =0.0;_fgcde =0.0; -_eafg =-1.0;_ffce =_dc .Split (_bgaaa [16:len (_bgaaa )-1],"\u002c"););_cgedb :=_dc .Fields (_ffce [0]);if len (_cgedb )==2&&_dc .TrimSpace (_cgedb [0])[0]!='#'{_bddbf ,_cfca =_a .ParseFloat (_cgedb [0],64);if _cfca !=nil {_eef .Log .Debug ("\u0046a\u0069\u006ce\u0064\u0020\u0070a\u0072\u0073\u0069\u006e\u0067\u0020\u0072a\u0064\u0069\u0061\u006c\u0020\u0067r\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0058\u0020\u0070\u006fs\u0069\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076",_cfca ); -};_fgcde ,_cfca =_a .ParseFloat (_cgedb [1],64);if _cfca !=nil {_eef .Log .Debug ("\u0046a\u0069\u006ce\u0064\u0020\u0070a\u0072\u0073\u0069\u006e\u0067\u0020\u0072a\u0064\u0069\u0061\u006c\u0020\u0067r\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0059\u0020\u0070\u006fs\u0069\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076",_cfca ); -};_ffce =_ffce [1:];};_ggfc :=_dc .TrimSpace (_ffce [0]);if _ggfc [0]!='#'{_eafg ,_cfca =_a .ParseFloat (_ggfc ,64);if _cfca !=nil {_eef .Log .Debug ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072\u0073\u0069\u006eg\u0020\u0072\u0061\u0064\u0069\u0061l\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0073\u0069\u007ae\u003a\u0020\u0025\u0076",_cfca ); -};_ffce =_ffce [1:];};_gcbaa ,_eecca :=_bcggf .processGradientColorPair (_ffce );if _gcbaa ==nil ||_eecca ==nil {return _fffb ;};_cabb :=creator .NewRadialGradientColor (_bddbf ,_fgcde ,0,_eafg ,[]*ColorPoint {});for _acef :=0;_acef < len (_gcbaa );_acef ++{_cabb .AddColorStop (_gcbaa [_acef ],_eecca [_acef ]); -};return _cabb ;}; - -// HorizontalAlignment represents the horizontal alignment of components -// within a page. -type HorizontalAlignment int ; +// DrawTemplate renders the template provided through the specified reader, +// using the specified `data` and `options`. +// Creator templates are first executed as text/template *Template instances, +// so the specified `data` is inserted within the template. +// The second phase of processing is actually parsing the template, translating +// it into creator components and rendering them using the provided options. +// Both the `data` and `options` parameters can be nil. +func (_fee *Block )DrawTemplate (c *Creator ,r _ae .Reader ,data interface{},options *TemplateOptions )error {return _dced (c ,r ,data ,options ,_fee );}; -// GeneratePageBlocks draws the polyline on a new block representing the page. -// Implements the Drawable interface. -func (_gcccc *Polyline )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_afbgb :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_ffgcb ,_adag :=_afbgb .setOpacity (_gcccc ._ggba ,_gcccc ._ggba );if _adag !=nil {return nil ,ctx ,_adag ; -};_abgab :=_gcccc ._dfgf .Points ;for _geee :=range _abgab {_bbddf :=&_abgab [_geee ];_bbddf .Y =ctx .PageHeight -_bbddf .Y ;};_dcgb ,_ ,_adag :=_gcccc ._dfgf .Draw (_ffgcb );if _adag !=nil {return nil ,ctx ,_adag ;};if _adag =_afbgb .addContentsByString (string (_dcgb )); -_adag !=nil {return nil ,ctx ,_adag ;};return []*Block {_afbgb },ctx ,nil ;}; +// SetMargins sets the margins of the rectangle. +// NOTE: rectangle margins are only applied if relative positioning is used. +func (_fddbd *Rectangle )SetMargins (left ,right ,top ,bottom float64 ){_fddbd ._ebfce .Left =left ;_fddbd ._ebfce .Right =right ;_fddbd ._ebfce .Top =top ;_fddbd ._ebfce .Bottom =bottom ;};func (_adcf *Invoice )generateInformationBlocks (_adb DrawContext )([]*Block ,DrawContext ,error ){_agad :=_egdc (_adcf ._bdcd ); +_agad .SetMargins (0,0,0,20);_acff :=_adcf .drawAddress (_adcf ._cfbbb );_acff =append (_acff ,_agad );_acff =append (_acff ,_adcf .drawAddress (_adcf ._dcfc )...);_gcfb :=_ffcc ();for _ ,_bebf :=range _acff {_gcfb .Add (_bebf );};_bgce :=_adcf .drawInformation (); +_edeef :=_gdec (2);_edeef .SetMargins (0,0,25,0);_dfbf :=_edeef .NewCell ();_dfbf .SetIndent (0);_dfbf .SetContent (_gcfb );_dfbf =_edeef .NewCell ();_dfbf .SetContent (_bgce );return _edeef .GeneratePageBlocks (_adb );}; -// SetBoundingBox set gradient color bounding box where the gradient would be rendered. -func (_cebfe *RadialShading )SetBoundingBox (x ,y ,width ,height float64 ){_cebfe ._beaeb =&_fa .PdfRectangle {Llx :x ,Lly :y ,Urx :x +width ,Ury :y +height };};func (_fefc *Invoice )newColumn (_acdbg string ,_deb CellHorizontalAlignment )*InvoiceCell {_daeb :=&InvoiceCell {_fefc ._abef ,_acdbg }; -_daeb .Alignment =_deb ;return _daeb ;}; +// WriteToFile writes the Creator output to file specified by path. +func (_gdccf *Creator )WriteToFile (outputPath string )error {_ccfb ,_gbade :=_ed .Create (outputPath );if _gbade !=nil {return _gbade ;};defer _ccfb .Close ();return _gdccf .Write (_ccfb );}; -// Width returns the width of the Paragraph. -func (_gedd *StyledParagraph )Width ()float64 {if _gedd ._dgba &&int (_gedd ._fdfbb )> 0{return _gedd ._fdfbb ;};return _gedd .getTextWidth ()/1000.0;};func _bgfa (_geac int )*Table {_effg :=&Table {_beege :_geac ,_efbgd :10.0,_gaecf :[]float64 {},_cddcg :[]float64 {},_bdfef :[]*TableCell {},_cgbff :make ([]int ,_geac ),_cbca :true }; -_effg .resetColumnWidths ();return _effg ;}; +// SetFillOpacity sets the fill opacity. +func (_abac *PolyBezierCurve )SetFillOpacity (opacity float64 ){_abac ._bcdgc =opacity }; -// SetAntiAlias enables anti alias config. -// -// Anti alias is disabled by default. -func (_gageb *shading )SetAntiAlias (enable bool ){_gageb ._eadef =enable }; +// Positioning returns the type of positioning the rectangle is set to use. +func (_fcaae *Rectangle )Positioning ()Positioning {return _fcaae ._bbgac }; -// NewStyledTOCLine creates a new table of contents line with the provided style. -func (_acg *Creator )NewStyledTOCLine (number ,title ,page TextChunk ,level uint ,style TextStyle )*TOCLine {return _eafbg (number ,title ,page ,level ,style );}; +// SetColor sets the line color. Use ColorRGBFromHex, ColorRGBFrom8bit or +// ColorRGBFromArithmetic to create the color object. +func (_ceca *Line )SetColor (color Color ){_ceca ._cdgfa =color }; -// SetAngle sets the rotation angle of the text. -func (_aebcb *StyledParagraph )SetAngle (angle float64 ){_aebcb ._cefe =angle }; +// SetLineWidth sets the line width. +func (_beef *Line )SetLineWidth (width float64 ){_beef ._adf =width };func (_aebfgc *templateProcessor )parseList (_efgdb *templateNode )(interface{},error ){_bgfcf :=_aebfgc .creator .NewList ();for _ ,_cbgbc :=range _efgdb ._gbdee .Attr {_cbbe :=_cbgbc .Value ; +switch _bbba :=_cbgbc .Name .Local ;_bbba {case "\u0069\u006e\u0064\u0065\u006e\u0074":_bgfcf .SetIndent (_aebfgc .parseFloatAttr (_bbba ,_cbbe ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_dcfcf :=_aebfgc .parseMarginAttr (_bbba ,_cbbe );_bgfcf .SetMargins (_dcfcf .Left ,_dcfcf .Right ,_dcfcf .Top ,_dcfcf .Bottom ); +default:_aebfgc .nodeLogDebug (_efgdb ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u006c\u0069\u0073\u0074 \u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_bbba ); +};};return _bgfcf ,nil ;};func _gdad ()*FilledCurve {_cfab :=FilledCurve {};_cfab ._babe =[]_fc .CubicBezierCurve {};return &_cfab ;}; -// SetOpacity sets opacity for Image. -func (_bded *Image )SetOpacity (opacity float64 ){_bded ._ddddf =opacity }; +// NewRectangle creates a new rectangle with the left corner at (`x`, `y`), +// having the specified width and height. +// NOTE: In relative positioning mode, `x` and `y` are calculated using the +// current context. Furthermore, when the fit mode is set to fill the available +// space, the rectangle is scaled so that it occupies the entire context width +// while maintaining the original aspect ratio. +func (_baad *Creator )NewRectangle (x ,y ,width ,height float64 )*Rectangle {return _fbbgc (x ,y ,width ,height );};func (_ffdg *Division )drawBackground (_gece []*Block ,_dfd ,_gbaa DrawContext ,_eae bool )([]*Block ,error ){_gdccfe :=len (_gece );if _gdccfe ==0||_ffdg ._fbgb ==nil {return _gece ,nil ; +};_fcgb :=make ([]*Block ,0,len (_gece ));for _baccg ,_ddeg :=range _gece {var (_aaad =_ffdg ._fbgb .BorderRadiusTopLeft ;_dfaec =_ffdg ._fbgb .BorderRadiusTopRight ;_egb =_ffdg ._fbgb .BorderRadiusBottomLeft ;_acfg =_ffdg ._fbgb .BorderRadiusBottomRight ; +);_ddfa :=_dfd ;_ddfa .Page +=_baccg ;if _baccg ==0{if _eae {_fcgb =append (_fcgb ,_ddeg );continue ;};if _gdccfe ==1{_ddfa .Height =_gbaa .Y -_dfd .Y ;};}else {_ddfa .X =_ddfa .Margins .Left +_ffdg ._debb .Left ;_ddfa .Y =_ddfa .Margins .Top ;_ddfa .Width =_ddfa .PageWidth -_ddfa .Margins .Left -_ddfa .Margins .Right -_ffdg ._debb .Left -_ffdg ._debb .Right ; +if _baccg ==_gdccfe -1{_ddfa .Height =_gbaa .Y -_ddfa .Margins .Top -_ffdg ._debb .Top ;}else {_ddfa .Height =_ddfa .PageHeight -_ddfa .Margins .Top -_ddfa .Margins .Bottom ;};if !_eae {_aaad =0;_dfaec =0;};};if _gdccfe > 1&&_baccg !=_gdccfe -1{_egb =0; +_acfg =0;};_baeff :=_fbbgc (_ddfa .X ,_ddfa .Y ,_ddfa .Width ,_ddfa .Height );_baeff .SetFillColor (_ffdg ._fbgb .FillColor );_baeff .SetBorderColor (_ffdg ._fbgb .BorderColor );_baeff .SetBorderWidth (_ffdg ._fbgb .BorderSize );_baeff .SetBorderRadius (_aaad ,_dfaec ,_egb ,_acfg ); +_bfbfa ,_ ,_eccab :=_baeff .GeneratePageBlocks (_ddfa );if _eccab !=nil {return nil ,_eccab ;};if len (_bfbfa )==0{continue ;};_deba :=_bfbfa [0];if _eccab =_deba .mergeBlocks (_ddeg );_eccab !=nil {return nil ,_eccab ;};_fcgb =append (_fcgb ,_deba );}; +return _fcgb ,nil ;}; -// SetTextAlignment sets the horizontal alignment of the text within the space provided. -func (_fbfea *Paragraph )SetTextAlignment (align TextAlignment ){_fbfea ._fbgf =align };func _gbgf (_afffa ,_fagd ,_dacacc string ,_ccgcd uint ,_gddad TextStyle )*TOCLine {return _eafbg (TextChunk {Text :_afffa ,Style :_gddad },TextChunk {Text :_fagd ,Style :_gddad },TextChunk {Text :_dacacc ,Style :_gddad },_ccgcd ,_gddad ); -};func (_cbag *templateProcessor )renderNode (_fbgca *templateNode )error {_ccgbe :=_fbgca ._ccfeb ;if _ccgbe ==nil {return nil ;};_addb :=_fbgca ._facfb .Name .Local ;_cfgadf ,_abegg :=_gecc [_addb ];if !_abegg {_cbag .nodeLogDebug (_fbgca ,"I\u006e\u0076\u0061\u006c\u0069\u0064 \u0074\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u002e \u0053\u006b\u0069p\u0070i\u006e\u0067\u002e",_addb ); -return nil ;};var _efee interface{};if _fbgca ._bgba !=nil &&_fbgca ._bgba ._ccfeb !=nil {_egedc :=_fbgca ._bgba ._facfb .Name .Local ;if _ ,_abegg =_cfgadf ._faaf [_egedc ];!_abegg {_cbag .nodeLogDebug (_fbgca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e \u0069\u0073\u0020no\u0074\u0020\u0061\u0020\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u003c\u0025\u0073\u003e\u0020\u0074a\u0067\u002e",_egedc ,_addb ); -return _abag ;};_efee =_fbgca ._bgba ._ccfeb ;}else {_cdbff :="\u0063r\u0065\u0061\u0074\u006f\u0072";switch _cbag ._fcaeg .(type ){case *Block :_cdbff ="\u0062\u006c\u006fc\u006b";};if _ ,_abegg =_cfgadf ._faaf [_cdbff ];!_abegg {_cbag .nodeLogDebug (_fbgca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e \u0069\u0073\u0020no\u0074\u0020\u0061\u0020\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u003c\u0025\u0073\u003e\u0020\u0074a\u0067\u002e",_cdbff ,_addb ); -return _abag ;};_efee =_cbag ._fcaeg ;};switch _cdcadd :=_efee .(type ){case componentRenderer :_egcff ,_fcdgg :=_ccgbe .(Drawable );if !_fcdgg {_cbag .nodeLogError (_fbgca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u0020\u0069s\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0072\u0061\u0077\u0061\u0062\u006c\u0065\u002e",_addb ,_ccgbe ); -return _cadef ;};_gdffc :=_cdcadd .Draw (_egcff );if _gdffc !=nil {return _cbag .nodeError (_fbgca ,"\u0043\u0061\u006en\u006f\u0074\u0020\u0064r\u0061\u0077\u0073\u0020\u0074\u0061\u0067 \u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u003a\u0020\u0025\u0073\u002e",_addb ,_ccgbe ,_gdffc ); -};case *Division :switch _ebddb :=_ccgbe .(type ){case *Background :_cdcadd .SetBackground (_ebddb );case VectorDrawable :_bebgf :=_cdcadd .Add (_ebddb );if _bebgf !=nil {return _cbag .nodeError (_fbgca ,"\u0043a\u006e\u006eo\u0074\u0020\u0061d\u0064\u0020\u0074\u0061\u0067\u0020\u003c%\u0073\u003e\u0020\u0028\u0025\u0054)\u0020\u0069\u006e\u0074\u006f\u0020\u0061\u0020\u0044\u0069\u0076i\u0073\u0069\u006f\u006e\u003a\u0020\u0025\u0073\u002e",_addb ,_ccgbe ,_bebgf ); -};};case *TableCell :_fgegc ,_dabc :=_ccgbe .(VectorDrawable );if !_dabc {_cbag .nodeLogError (_fbgca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029 \u0069\u0073\u0020\u006e\u006f\u0074 \u0061\u0020\u0076\u0065\u0063\u0074\u006f\u0072\u0020\u0064\u0072\u0061\u0077a\u0062\u006c\u0065\u002e",_addb ,_ccgbe ); -return _cadef ;};_bgef :=_cdcadd .SetContent (_fgegc );if _bgef !=nil {return _cbag .nodeError (_fbgca ,"C\u0061\u006e\u006e\u006f\u0074\u0020\u0061\u0064\u0064 \u0074\u0061\u0067\u0020\u003c\u0025\u0073> \u0028\u0025\u0054\u0029 \u0069\u006e\u0074\u006f\u0020\u0061\u0020\u0074\u0061bl\u0065\u0020c\u0065\u006c\u006c\u003a\u0020\u0025\u0073\u002e",_addb ,_ccgbe ,_bgef ); -};case *StyledParagraph :_geecd ,_gfda :=_ccgbe .(*TextChunk );if !_gfda {_cbag .nodeLogError (_fbgca ,"\u0054\u0061\u0067 <\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u0020i\u0073 \u006eo\u0074 \u0061\u0020\u0074\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u002e",_addb ,_ccgbe ); -return _cadef ;};_cdcadd .appendChunk (_geecd );case *Chapter :switch _cfacc :=_ccgbe .(type ){case *Chapter :return nil ;case *Paragraph :if _fbgca ._facfb .Name .Local =="\u0063h\u0061p\u0074\u0065\u0072\u002d\u0068\u0065\u0061\u0064\u0069\u006e\u0067"{return nil ; -};_edfca :=_cdcadd .Add (_cfacc );if _edfca !=nil {return _cbag .nodeError (_fbgca ,"\u0043a\u006e\u006eo\u0074\u0020\u0061\u0064d\u0020\u0074\u0061g\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054) \u0069\u006e\u0074o\u0020\u0061 \u0043\u0068\u0061\u0070\u0074\u0065r\u003a\u0020%\u0073\u002e",_addb ,_ccgbe ,_edfca ); -};case Drawable :_egfd :=_cdcadd .Add (_cfacc );if _egfd !=nil {return _cbag .nodeError (_fbgca ,"\u0043a\u006e\u006eo\u0074\u0020\u0061\u0064d\u0020\u0074\u0061g\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054) \u0069\u006e\u0074o\u0020\u0061 \u0043\u0068\u0061\u0070\u0074\u0065r\u003a\u0020%\u0073\u002e",_addb ,_ccgbe ,_egfd ); -};};case *List :switch _eegedf :=_ccgbe .(type ){case *TextChunk :case *listItem :_cdcadd ._fbeaf =append (_cdcadd ._fbeaf ,_eegedf );default:_cbag .nodeLogError (_fbgca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073>\u0020\u0028\u0025T\u0029\u0020\u0069\u0073 \u006e\u006f\u0074\u0020\u0061\u0020\u006c\u0069\u0073\u0074\u0020\u0069\u0074\u0065\u006d\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_addb ,_ccgbe ); -};case *listItem :switch _gcdgeac :=_ccgbe .(type ){case *TextChunk :case *StyledParagraph :_cdcadd ._edcf =_gcdgeac ;case *List :if _gcdgeac ._ecfac {_gcdgeac ._dcdc =15;};_cdcadd ._edcf =_gcdgeac ;case *Image :_cdcadd ._edcf =_gcdgeac ;case *Division :_cdcadd ._edcf =_gcdgeac ; -case *Table :_cdcadd ._edcf =_gcdgeac ;default:_cbag .nodeLogError (_fbgca ,"\u0054\u0061\u0067\u0020\u003c%\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u006c\u0069\u0073\u0074\u002e",_addb ,_ccgbe ); -return _cadef ;};};return nil ;};func (_ccfgfe *templateProcessor )parseListItem (_ccaa *templateNode )(interface{},error ){if _ccaa ._bgba ==nil {_ccfgfe .nodeLogError (_ccaa ,"\u004c\u0069\u0073t\u0020\u0069\u0074\u0065m\u0020\u0070\u0061\u0072\u0065\u006e\u0074 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); -return nil ,_abag ;};_ggeb ,_edccc :=_ccaa ._bgba ._ccfeb .(*List );if !_edccc {_ccfgfe .nodeLogError (_ccaa ,"\u004c\u0069s\u0074\u0020\u0069\u0074\u0065\u006d\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u004cis\u0074\u002e"); -return nil ,_abag ;};_adbda :=_cgege ();_adbda ._dbea =_ggeb ._cgef ;return _adbda ,nil ;}; +// SetMargins sets the margins for the Image (in relative mode): left, right, top, bottom. +func (_cgddd *Image )SetMargins (left ,right ,top ,bottom float64 ){_cgddd ._cbea .Left =left ;_cgddd ._cbea .Right =right ;_cgddd ._cbea .Top =top ;_cgddd ._cbea .Bottom =bottom ;}; -// SetBorderLineStyle sets border style (currently dashed or plain). -func (_ebed *TableCell )SetBorderLineStyle (style _ce .LineStyle ){_ebed ._gegge =style };type marginDrawable interface{VectorDrawable ;GetMargins ()(float64 ,float64 ,float64 ,float64 );}; +// ToRGB implements interface Color. +// Note: It's not directly used since shading color works differently than regular color. +func (_acge *RadialShading )ToRGB ()(float64 ,float64 ,float64 ){return 0,0,0};const (TextRenderingModeFill TextRenderingMode =iota ;TextRenderingModeStroke ;TextRenderingModeFillStroke ;TextRenderingModeInvisible ;TextRenderingModeFillClip ;TextRenderingModeStrokeClip ; +TextRenderingModeFillStrokeClip ;TextRenderingModeClip ;); -// Width returns the width of the graphic svg. -func (_dcdd *GraphicSVG )Width ()float64 {return _dcdd ._baea .Width }; +// Lines returns all the rows of the invoice line items table. +func (_adac *Invoice )Lines ()[][]*InvoiceCell {return _adac ._fbac }; -// The Image type is used to draw an image onto PDF. -type Image struct{_eadbf *_fa .XObjectImage ;_dca *_fa .Image ;_dgb float64 ;_gfef ,_ffab float64 ;_ccgea ,_gcdc float64 ;_fdad Positioning ;_gege HorizontalAlignment ;_fcfa float64 ;_gefa float64 ;_ddddf float64 ;_gbba Margins ;_faef ,_bcfc float64 ;_fbfd _ea .StreamEncoder ; -_bdbe FitMode ;}; +// SetMargins sets the margins TOC line. +func (_gcfgb *TOCLine )SetMargins (left ,right ,top ,bottom float64 ){_gcfgb ._adbfe =left ;_aeeea :=&_gcfgb ._ecde ._fbgbc ;_aeeea .Left =_gcfgb ._adbfe +float64 (_gcfgb ._daebd -1)*_gcfgb ._aeeeg ;_aeeea .Right =right ;_aeeea .Top =top ;_aeeea .Bottom =bottom ; +}; -// IsRelative checks if the positioning is relative. -func (_adca Positioning )IsRelative ()bool {return _adca ==PositionRelative }; +// NewLinearGradientColor creates a linear gradient color that could act as a color in other components. +func (_cgdf *Creator )NewLinearGradientColor (colorPoints []*ColorPoint )*LinearShading {return _dgbfg (colorPoints );};func (_dabcg *StyledParagraph )getTextLineWidth (_gggeg []*TextChunk )float64 {var _aacf float64 ;_gdfcb :=len (_gggeg );for _bdfeg ,_eaef :=range _gggeg {_gdfed :=&_eaef .Style ; +_gcdf :=len (_eaef .Text );for _ccdeb ,_cgfed :=range _eaef .Text {if _cgfed =='\u000A'{continue ;};_eecd ,_cdbb :=_gdfed .Font .GetRuneMetrics (_cgfed );if !_cdbb {_ca .Log .Debug ("\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069c\u0073 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0025\u0076\u000a",_cgfed ); +return -1;};_aacf +=_gdfed .FontSize *_eecd .Wx *_gdfed .horizontalScale ();if _cgfed !=' '&&(_bdfeg !=_gdfcb -1||_ccdeb !=_gcdf -1){_aacf +=_gdfed .CharSpacing *1000.0;};};};return _aacf ;}; -// SetTitleStyle sets the style properties of the invoice title. -func (_degb *Invoice )SetTitleStyle (style TextStyle ){_degb ._gbfbc =style };func _feab (_bgceg [][]_ce .Point )*Polygon {return &Polygon {_cgecf :&_ce .Polygon {Points :_bgceg },_bege :1.0,_dgcea :1.0};}; +// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated +// if the contents wrap over multiple pages. +func (_eddgg *List )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var _becb float64 ;var _gaaag []*StyledParagraph ;for _ ,_aeed :=range _eddgg ._bede {_ccge :=_egdc (_eddgg ._dagb );_ccge .SetEnableWrap (false );_ccge .SetTextAlignment (TextAlignmentRight ); +_ccge .Append (_aeed ._eeed .Text ).Style =_aeed ._eeed .Style ;_aadb :=_ccge .getTextWidth ()/1000.0/ctx .Width ;if _becb < _aadb {_becb =_aadb ;};_gaaag =append (_gaaag ,_ccge );};_gffeg :=_gdec (2);_gffeg .SetColumnWidths (_becb ,1-_becb );_gffeg .SetMargins (_eddgg ._fed .Left +_eddgg ._egab ,_eddgg ._fed .Right ,_eddgg ._fed .Top ,_eddgg ._fed .Bottom ); +_gffeg .EnableRowWrap (true );for _efgd ,_afag :=range _eddgg ._bede {_cgaf :=_gffeg .NewCell ();_cgaf .SetIndent (0);_cgaf .SetContent (_gaaag [_efgd ]);_cgaf =_gffeg .NewCell ();_cgaf .SetIndent (0);_cgaf .SetContent (_afag ._gdceb );};return _gffeg .GeneratePageBlocks (ctx ); +}; -// Chart represents a chart drawable. -// It is used to render unichart chart components using a creator instance. -type Chart struct{_ccf _ff .ChartRenderable ;_gbdd Positioning ;_ggf float64 ;_gfe float64 ;_ebga Margins ;}; +// FitMode returns the fit mode of the image. +func (_gfge *Image )FitMode ()FitMode {return _gfge ._geaf };func (_abb *Ellipse )applyFitMode (_aadff float64 ){_aadff -=_abb ._cadg .Left +_abb ._cadg .Right ;switch _abb ._gbfg {case FitModeFillWidth :_abb .ScaleToWidth (_aadff );};};func _afac (_adgde float64 ,_ffca float64 ,_ddgdd float64 ,_aadeb float64 ,_gebfd []*ColorPoint )*RadialShading {return &RadialShading {_fcacc :&shading {_dedad :ColorWhite ,_daff :false ,_fgdd :[]bool {false ,false },_ggcd :_gebfd },_cafd :_adgde ,_eagf :_ffca ,_efdd :_ddgdd ,_cagbac :_aadeb ,_dedge :AnchorCenter }; +};func _fbbgc (_efcc ,_fcfb ,_ggadc ,_ceaa float64 )*Rectangle {return &Rectangle {_cgedd :_efcc ,_eeff :_fcfb ,_gfad :_ggadc ,_fefg :_ceaa ,_bbgac :PositionAbsolute ,_geee :1.0,_ecce :ColorBlack ,_decec :1.0,_ffgd :1.0};}; -// AddShadingResource adds shading dictionary inside the resources dictionary. -func (_ecaf *RadialShading )AddShadingResource (block *Block )(_cbfd _ea .PdfObjectName ,_ccfe error ){_cfbc :=1;_cbfd =_ea .PdfObjectName ("\u0053\u0068"+_a .Itoa (_cfbc ));for block ._gae .HasShadingByName (_cbfd ){_cfbc ++;_cbfd =_ea .PdfObjectName ("\u0053\u0068"+_a .Itoa (_cfbc )); -};if _afbeb :=block ._gae .SetShadingByName (_cbfd ,_ecaf .shadingModel ().ToPdfObject ());_afbeb !=nil {return "",_afbeb ;};return _cbfd ,nil ;}; +// GetMargins returns the margins of the rectangle: left, right, top, bottom. +func (_dbaga *Rectangle )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _dbaga ._ebfce .Left ,_dbaga ._ebfce .Right ,_dbaga ._ebfce .Top ,_dbaga ._ebfce .Bottom ;}; -// GetOptimizer returns current PDF optimizer. -func (_egcc *Creator )GetOptimizer ()_fa .Optimizer {return _egcc ._effb };func (_abfc *StyledParagraph )getLineMetrics (_edga int )(_deae ,_aeeb ,_ccffg float64 ){if _abfc ._egffa ==nil ||len (_abfc ._egffa )==0{_abfc .wrapText ();};if _edga < 0||_edga > len (_abfc ._egffa )-1{_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020p\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u0020\u006c\u0069\u006e\u0065 \u0069\u006e\u0064\u0065\u0078\u0020\u0025\u0064\u002e\u0020\u0052\u0065tu\u0072\u006e\u0069\u006e\u0067\u0020\u0030\u002c\u0020\u0030",_edga ); -return 0,0,0;};_cgdag :=_abfc ._egffa [_edga ];for _ ,_bgeaa :=range _cgdag {_agfd :=_feada (_bgeaa .Style .Font ,_bgeaa .Style .FontSize );if _agfd ._cbaab > _deae {_deae =_agfd ._cbaab ;};if _agfd ._dgad < _ccffg {_ccffg =_agfd ._dgad ;};if _bgegg :=_bgeaa .Style .FontSize ; -_bgegg > _aeeb {_aeeb =_bgegg ;};};return _deae ,_aeeb ,_ccffg ;};func _gcgbc (_gfdbc *templateProcessor ,_abeaa *templateNode )(interface{},error ){return _gfdbc .parsePageBreak (_abeaa );}; +// Heading returns the heading component of the table of contents. +func (_fafd *TOC )Heading ()*StyledParagraph {return _fafd ._ecagg }; -// Level returns the indentation level of the TOC line. -func (_ddcgf *TOCLine )Level ()uint {return _ddcgf ._dabge }; +// SetBoundingBox set gradient color bounding box where the gradient would be rendered. +func (_efea *LinearShading )SetBoundingBox (x ,y ,width ,height float64 ){_efea ._cbgf =&_ggc .PdfRectangle {Llx :x ,Lly :y ,Urx :x +width ,Ury :y +height };}; -// Width returns the width of the Paragraph. -func (_dcgc *Paragraph )Width ()float64 {if _dcgc ._fade &&int (_dcgc ._gdffb )> 0{return _dcgc ._gdffb ;};return _dcgc .getTextWidth ()/1000.0;};func _abgb (_fadb *Block ,_fdfd *Image ,_cagg DrawContext )(DrawContext ,error ){_bffg :=_cagg ;_fbff :=1; -_dfeb :=_ea .PdfObjectName (_g .Sprintf ("\u0049\u006d\u0067%\u0064",_fbff ));for _fadb ._gae .HasXObjectByName (_dfeb ){_fbff ++;_dfeb =_ea .PdfObjectName (_g .Sprintf ("\u0049\u006d\u0067%\u0064",_fbff ));};_abaf :=_fadb ._gae .SetXObjectImageByName (_dfeb ,_fdfd ._eadbf ); -if _abaf !=nil {return _cagg ,_abaf ;};_dddf :=0;_bgdad :=_ea .PdfObjectName (_g .Sprintf ("\u0047\u0053\u0025\u0064",_dddf ));for _fadb ._gae .HasExtGState (_bgdad ){_dddf ++;_bgdad =_ea .PdfObjectName (_g .Sprintf ("\u0047\u0053\u0025\u0064",_dddf )); -};_fdd :=_ea .MakeDict ();_fdd .Set ("\u0042\u004d",_ea .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c"));if _fdfd ._ddddf < 1.0{_fdd .Set ("\u0043\u0041",_ea .MakeFloat (_fdfd ._ddddf ));_fdd .Set ("\u0063\u0061",_ea .MakeFloat (_fdfd ._ddddf ));};_abaf =_fadb ._gae .AddExtGState (_bgdad ,_ea .MakeIndirectObject (_fdd )); -if _abaf !=nil {return _cagg ,_abaf ;};_bcfcg :=_fdfd .Width ();_fgecbf :=_fdfd .Height ();_ ,_gfad :=_fdfd .rotatedSize ();_bfde :=_cagg .X ;_babb :=_cagg .PageHeight -_cagg .Y -_fgecbf ;if _fdfd ._fdad .IsRelative (){_babb -=(_gfad -_fgecbf )/2;switch _fdfd ._gege {case HorizontalAlignmentCenter :_bfde +=(_cagg .Width -_bcfcg )/2; -case HorizontalAlignmentRight :_bfde =_cagg .PageWidth -_cagg .Margins .Right -_fdfd ._gbba .Right -_bcfcg ;};};_bbaa :=_fdfd ._dgb ;_eggc :=_bd .NewContentCreator ();_eggc .Add_gs (_bgdad );_eggc .Translate (_bfde ,_babb );if _bbaa !=0{_eggc .Translate (_bcfcg /2,_fgecbf /2); -_eggc .RotateDeg (_bbaa );_eggc .Translate (-_bcfcg /2,-_fgecbf /2);};_eggc .Scale (_bcfcg ,_fgecbf ).Add_Do (_dfeb );_eedc :=_eggc .Operations ();_eedc .WrapIfNeeded ();_fadb .addContents (_eedc );if _fdfd ._fdad .IsRelative (){_cagg .Y +=_gfad ;_cagg .Height -=_gfad ; -return _cagg ,nil ;};return _bffg ,nil ;}; +// MultiRowCell makes a new cell with the specified row span and inserts it +// into the table at the current position. +func (_ecdc *Table )MultiRowCell (rowspan int )*TableCell {return _ecdc .MultiCell (rowspan ,1)}; -// Scale scales Image by a constant factor, both width and height. -func (_gdcbb *Image )Scale (xFactor ,yFactor float64 ){_gdcbb ._gfef =xFactor *_gdcbb ._gfef ;_gdcbb ._ffab =yFactor *_gdcbb ._ffab ;}; +// AddColorStop add color stop info for rendering gradient color. +func (_agge *LinearShading )AddColorStop (color Color ,point float64 ){_agge ._aecc .AddColorStop (color ,point );}; -// GetMargins returns the margins of the graphic svg (left, right, top, bottom). -func (_efdc *GraphicSVG )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _efdc ._eefa .Left ,_efdc ._eefa .Right ,_efdc ._eefa .Top ,_efdc ._eefa .Bottom ;}; +// GeneratePageBlocks draws the block contents on a template Page block. +// Implements the Drawable interface. +func (_cf *Block )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_cb :=_bd .IdentityMatrix ();_db ,_gcg :=_cf .Width (),_cf .Height ();if _cf ._ba .IsRelative (){_cb =_cb .Translate (ctx .X ,ctx .PageHeight -ctx .Y -_gcg );}else {_cb =_cb .Translate (_cf ._gb ,ctx .PageHeight -_cf ._gf -_gcg ); +};_fb :=_gcg ;if _cf ._de !=0{_cb =_cb .Translate (_db /2,_gcg /2).Rotate (_cf ._de *_b .Pi /180.0).Translate (-_db /2,-_gcg /2);_ ,_fb =_cf .RotatedSize ();};if _cf ._ba .IsRelative (){ctx .Y +=_fb ;};_ef :=_bdb .NewContentCreator ();_ef .Add_cm (_cb [0],_cb [1],_cb [3],_cb [4],_cb [6],_cb [7]); +_gdf :=_cf .duplicate ();_ggd :=append (*_ef .Operations (),*_gdf ._cad ...);_ggd .WrapIfNeeded ();_gdf ._cad =&_ggd ;for _ ,_cdb :=range _cf ._ga {_cfg ,_aeb :=_fe .GetArray (_cdb .Rect );if !_aeb ||_cfg .Len ()!=4{_ca .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u0069\u006e\u0076\u0061\u006ci\u0064 \u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0052\u0065\u0063\u0074\u0020\u0066\u0069\u0065l\u0064\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_cdb .Rect ); +continue ;};_deb ,_bgb :=_ggc .NewPdfRectangle (*_cfg );if _bgb !=nil {_ca .Log .Debug ("\u0057A\u0052N\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074 \u0070\u0061\u0072\u0073e\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020\u0052\u0065\u0063\u0074\u0020\u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061y\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006fr\u0072\u0065\u0063\u0074\u002e",_bgb ); +continue ;};_deb .Transform (_cb );_cdb .Rect =_deb .ToPdfObject ();};return []*Block {_gdf },ctx ,nil ;}; -// BorderColor returns the border color of the ellipse. -func (_agbb *Ellipse )BorderColor ()Color {return _agbb ._edcd };func (_ebge *Block )translate (_bfd ,_eeb float64 ){_cbc :=_bd .NewContentCreator ().Translate (_bfd ,-_eeb ).Operations ();*_ebge ._ffc =append (*_cbc ,*_ebge ._ffc ...);_ebge ._ffc .WrapIfNeeded (); -}; +// Width returns the width of the chart. In relative positioning mode, +// all the available context width is used at render time. +func (_caff *Chart )Width ()float64 {return float64 (_caff ._ebbf .Width ())}; -// NewImage create a new image from a unidoc image (model.Image). -func (_cebb *Creator )NewImage (img *_fa .Image )(*Image ,error ){return _aagg (img )}; +// NewParagraph creates a new text paragraph. +// Default attributes: +// Font: Helvetica, +// Font size: 10 +// Encoding: WinAnsiEncoding +// Wrap: enabled +// Text color: black +func (_aeff *Creator )NewParagraph (text string )*Paragraph {return _agbf (text ,_aeff .NewTextStyle ())}; -// FitMode returns the fit mode of the rectangle. -func (_bagga *Rectangle )FitMode ()FitMode {return _bagga ._gcdg };func (_fead *Line )computeCoords (_aeca DrawContext )(_gfab ,_abafg ,_ggae ,_dddec float64 ){_gfab =_aeca .X ;_ggae =_gfab +_fead ._gagg -_fead ._dfbf ;_dgdf :=_fead ._baec ;if _fead ._dfbf ==_fead ._gagg {_dgdf /=2; -};if _fead ._aeecg < _fead ._cbaff {_abafg =_aeca .PageHeight -_aeca .Y -_dgdf ;_dddec =_abafg -_fead ._cbaff +_fead ._aeecg ;}else {_dddec =_aeca .PageHeight -_aeca .Y -_dgdf ;_abafg =_dddec -_fead ._aeecg +_fead ._cbaff ;};switch _fead ._bfeb {case FitModeFillWidth :_ggae =_gfab +_aeca .Width ; -};return _gfab ,_abafg ,_ggae ,_dddec ;};func (_fbea *Invoice )setCellBorder (_fcga *TableCell ,_befdb *InvoiceCell ){for _ ,_babg :=range _befdb .BorderSides {_fcga .SetBorder (_babg ,CellBorderStyleSingle ,_befdb .BorderWidth );};_fcga .SetBorderColor (_befdb .BorderColor ); -}; +// TotalLines returns all the rows in the invoice totals table as +// description-value cell pairs. +func (_bcegb *Invoice )TotalLines ()[][2]*InvoiceCell {_bfce :=[][2]*InvoiceCell {_bcegb ._befc };_bfce =append (_bfce ,_bcegb ._edb ...);return append (_bfce ,_bcegb ._ada );}; -// SetLineWidth sets the line width. -func (_gbefa *Line )SetLineWidth (width float64 ){_gbefa ._baec =width }; +// ColorRGBFromArithmetic creates a Color from arithmetic color values (0-1). +// Example: +// green := ColorRGBFromArithmetic(0.0, 1.0, 0.0) +func ColorRGBFromArithmetic (r ,g ,b float64 )Color {return rgbColor {_efdc :_b .Max (_b .Min (r ,1.0),0.0),_fgbf :_b .Max (_b .Min (g ,1.0),0.0),_acbd :_b .Max (_b .Min (b ,1.0),0.0)};}; -// NewCurvePolygon creates a new curve polygon. -func (_fef *Creator )NewCurvePolygon (rings [][]_ce .CubicBezierCurve )*CurvePolygon {return _fbagb (rings );};func (_gabb *Invoice )generateNoteBlocks (_eeda DrawContext )([]*Block ,DrawContext ,error ){_daag :=_cecg ();_bgca :=append ([][2]string {_gabb ._ebcg ,_gabb ._befe },_gabb ._gdag ...); -for _ ,_edfa :=range _bgca {if _edfa [1]!=""{_aaea :=_gabb .drawSection (_edfa [0],_edfa [1]);for _ ,_cggb :=range _aaea {_daag .Add (_cggb );};_gggb :=_defdc (_gabb ._ggac );_gggb .SetMargins (0,0,10,0);_daag .Add (_gggb );};};return _daag .GeneratePageBlocks (_eeda ); -}; +// SetPageMargins sets the page margins: left, right, top, bottom. +// The default page margins are 10% of document width. +func (_cbab *Creator )SetPageMargins (left ,right ,top ,bottom float64 ){_cbab ._gcgd .Left =left ;_cbab ._gcgd .Right =right ;_cbab ._gcgd .Top =top ;_cbab ._gcgd .Bottom =bottom ;}; -// Height returns the height of the Paragraph. The height is calculated based on the input text and -// how it is wrapped within the container. Does not include Margins. -func (_ceeab *Paragraph )Height ()float64 {_ceeab .wrapText ();return float64 (len (_ceeab ._gbdea ))*_ceeab ._ecegc *_ceeab ._cgcbd ;}; +// AddressHeadingStyle returns the style properties used to render the +// heading of the invoice address sections. +func (_afcg *Invoice )AddressHeadingStyle ()TextStyle {return _afcg ._febc }; // Width returns the width of the line. // NOTE: Depending on the fit mode the line is set to use, its width may be // calculated at runtime (e.g. when using FitModeFillWidth). -func (_decbd *Line )Width ()float64 {return _ec .Abs (_decbd ._gagg -_decbd ._dfbf )};func (_gbbgff *Paragraph )wrapText ()error {if !_gbbgff ._fade ||int (_gbbgff ._gdffb )<=0{_gbbgff ._gbdea =[]string {_gbbgff ._babfa };return nil ;};_cggba :=NewTextChunk (_gbbgff ._babfa ,TextStyle {Font :_gbbgff ._gcedf ,FontSize :_gbbgff ._cgcbd }); -_defe ,_cacfa :=_cggba .Wrap (_gbbgff ._gdffb );if _cacfa !=nil {return _cacfa ;};if _gbbgff ._ebfbg > 0&&len (_defe )> _gbbgff ._ebfbg {_defe =_defe [:_gbbgff ._ebfbg ];};_gbbgff ._gbdea =_defe ;return nil ;}; +func (_cbb *Line )Width ()float64 {return _b .Abs (_cbb ._eddg -_cbb ._daed )}; -// NewCell returns a new invoice table cell. -func (_eddd *Invoice )NewCell (value string )*InvoiceCell {return _eddd .newCell (value ,_eddd .NewCellProps ());}; +// Number returns the invoice number description and value cells. +// The returned values can be used to customize the styles of the cells. +func (_febb *Invoice )Number ()(*InvoiceCell ,*InvoiceCell ){return _febb ._geeb [0],_febb ._geeb [1]}; -// SetLineHeight sets the line height (1.0 default). -func (_gfbb *StyledParagraph )SetLineHeight (lineheight float64 ){_gfbb ._gbcb =lineheight }; +// AddExternalLink adds a new external link to the paragraph. +// The text parameter represents the text that is displayed and the url +// parameter sets the destionation of the link. +func (_adaf *StyledParagraph )AddExternalLink (text ,url string )*TextChunk {_cdaad :=NewTextChunk (text ,_adaf ._aecf );_cdaad ._dfcb =_gfcae (url );return _adaf .appendChunk (_cdaad );}; -// NewTOC creates a new table of contents. -func (_ged *Creator )NewTOC (title string )*TOC {_gfg :=_ged .NewTextStyle ();_gfg .Font =_ged ._gaba ;return _babadc (title ,_ged .NewTextStyle (),_gfg );}; +// ColorRGBFromHex converts color hex code to rgb color for using with creator. +// NOTE: If there is a problem interpreting the string, then will use black color and log a debug message. +// Example hex code: #ffffff -> (1,1,1) white. +func ColorRGBFromHex (hexStr string )Color {_fcca :=rgbColor {};if (len (hexStr )!=4&&len (hexStr )!=7)||hexStr [0]!='#'{_ca .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",hexStr );return _fcca ; +};var _debe ,_cgcf ,_cggg int ;if len (hexStr )==4{var _cbgb ,_dfag ,_bacb int ;_eaca ,_egc :=_df .Sscanf (hexStr ,"\u0023\u0025\u0031\u0078\u0025\u0031\u0078\u0025\u0031\u0078",&_cbgb ,&_dfag ,&_bacb );if _egc !=nil {_ca .Log .Debug ("\u0049\u006e\u0076a\u006c\u0069\u0064\u0020h\u0065\u0078\u0020\u0063\u006f\u0064\u0065:\u0020\u0025\u0073\u002c\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",hexStr ,_egc ); +return _fcca ;};if _eaca !=3{_ca .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",hexStr );return _fcca ;};_debe =_cbgb *16+_cbgb ;_cgcf =_dfag *16+_dfag ;_cggg =_bacb *16+_bacb ;}else {_ecgg ,_cace :=_df .Sscanf (hexStr ,"\u0023\u0025\u0032\u0078\u0025\u0032\u0078\u0025\u0032\u0078",&_debe ,&_cgcf ,&_cggg ); +if _cace !=nil {_ca .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",hexStr );return _fcca ;};if _ecgg !=3{_ca .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0068\u0065\u0078\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0073,\u0020\u006e\u0020\u0021\u003d\u0020\u0033 \u0028\u0025\u0064\u0029",hexStr ,_ecgg ); +return _fcca ;};};_fgab :=float64 (_debe )/255.0;_bfbf :=float64 (_cgcf )/255.0;_ggdg :=float64 (_cggg )/255.0;_fcca ._efdc =_fgab ;_fcca ._fgbf =_bfbf ;_fcca ._acbd =_ggdg ;return _fcca ;}; -// NewEllipse creates a new ellipse with the center at (`xc`, `yc`), -// having the specified width and height. -// NOTE: In relative positioning mode, `xc` and `yc` are calculated using the -// current context. Furthermore, when the fit mode is set to fill the available -// space, the ellipse is scaled so that it occupies the entire context width -// while maintaining the original aspect ratio. -func (_dgfd *Creator )NewEllipse (xc ,yc ,width ,height float64 )*Ellipse {return _daa (xc ,yc ,width ,height );}; +// ScaleToHeight scales the Block to a specified height, maintaining the same aspect ratio. +func (_bf *Block )ScaleToHeight (h float64 ){_cada :=h /_bf ._gfe ;_bf .Scale (_cada ,_cada )}; -// SellerAddress returns the seller address used in the invoice template. -func (_fdfc *Invoice )SellerAddress ()*InvoiceAddress {return _fdfc ._aecb }; +// GetMargins returns the left, right, top, bottom Margins. +func (_cfcc *Table )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _cfcc ._gfbcc .Left ,_cfcc ._gfbcc .Right ,_cfcc ._gfbcc .Top ,_cfcc ._gfbcc .Bottom ;}; -// PolyBezierCurve represents a composite curve that is the result of joining -// multiple cubic Bezier curves. -// Implements the Drawable interface and can be drawn on PDF using the Creator. -type PolyBezierCurve struct{_cadfg *_ce .PolyBezierCurve ;_egff float64 ;_dagfe float64 ;_bafc Color ;}; +// TextOverflow determines the behavior of paragraph text which does +// not fit in the available space. +type TextOverflow int ; -// MultiCell makes a new cell with the specified row span and col span -// and inserts it into the table at the current position. -func (_affag *Table )MultiCell (rowspan ,colspan int )*TableCell {_affag ._aeba ++;_cbgb :=(_affag .moveToNextAvailableCell ()-1)%(_affag ._beege )+1;_dgbfg :=(_affag ._aeba -1)/_affag ._beege +1;for _dgbfg > _affag ._cccb {_affag ._cccb ++;_affag ._cddcg =append (_affag ._cddcg ,_affag ._efbgd ); -};_ceec :=&TableCell {};_ceec ._cceef =_dgbfg ;_ceec ._baceb =_cbgb ;_ceec ._ddbeg =5;_ceec ._cbbdb =CellBorderStyleNone ;_ceec ._gegge =_ce .LineStyleSolid ;_ceec ._dedb =CellHorizontalAlignmentLeft ;_ceec ._ecbg =CellVerticalAlignmentTop ;_ceec ._fceg =0; -_ceec ._gegf =0;_ceec ._bebbd =0;_ceec ._faeaf =0;_edgdf :=ColorBlack ;_ceec ._cgce =_edgdf ;_ceec ._cfaea =_edgdf ;_ceec ._egddb =_edgdf ;_ceec ._bbcfdd =_edgdf ;if rowspan < 1{_eef .Log .Debug ("\u0054\u0061\u0062\u006c\u0065\u003a\u0020\u0063\u0065\u006c\u006c\u0020\u0072\u006f\u0077\u0073\u0070a\u006e\u0020\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0061t\u0020\u0031\u0020\u0028\u0025\u0064\u0029\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063e\u006c\u006c\u0020\u0072\u006f\u0077s\u0070\u0061n\u0020\u0074o\u00201\u002e",rowspan ); -rowspan =1;};_afac :=_affag ._cccb -(_ceec ._cceef -1);if rowspan > _afac {_eef .Log .Debug ("\u0054\u0061b\u006c\u0065\u003a\u0020\u0063\u0065\u006c\u006c\u0020\u0072\u006f\u0077\u0073\u0070\u0061\u006e\u0020\u0028\u0025d\u0029\u0020\u0065\u0078\u0063\u0065e\u0064\u0073\u0020\u0072\u0065\u006d\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0072o\u0077\u0073 \u0028\u0025\u0064\u0029.\u0020\u0041\u0064\u0064\u0069n\u0067\u0020\u0072\u006f\u0077\u0073\u002e",rowspan ,_afac ); -_affag ._cccb +=rowspan -1;for _fccd :=0;_fccd <=rowspan -_afac ;_fccd ++{_affag ._cddcg =append (_affag ._cddcg ,_affag ._efbgd );};};for _baad :=0;_baad < colspan &&_cbgb +_baad -1< len (_affag ._cgbff );_baad ++{_affag ._cgbff [_cbgb +_baad -1]=rowspan -1; -};_ceec ._badd =rowspan ;if colspan < 1{_eef .Log .Debug ("\u0054\u0061\u0062\u006c\u0065\u003a\u0020\u0063\u0065\u006c\u006c\u0020\u0063\u006f\u006c\u0073\u0070a\u006e\u0020\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0061n\u0020\u0031\u0020\u0028\u0025\u0064\u0029\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063e\u006c\u006c\u0020\u0063\u006f\u006cs\u0070\u0061n\u0020\u0074o\u00201\u002e",colspan ); -colspan =1;};_fcabe :=_affag ._beege -(_ceec ._baceb -1);if colspan > _fcabe {_eef .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0065\u006c\u006c\u0020\u0063o\u006c\u0073\u0070\u0061\u006e\u0020\u0028\u0025\u0064\u0029\u0020\u0065\u0078\u0063\u0065\u0065\u0064\u0073\u0020\u0072\u0065\u006d\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0072\u006f\u0077\u0020\u0063\u006f\u006c\u0073\u0020\u0028\u0025d\u0029\u002e\u0020\u0041\u0064\u006a\u0075\u0073\u0074\u0069\u006e\u0067 \u0063\u006f\u006c\u0073\u0070\u0061n\u002e",colspan ,_fcabe ); -colspan =_fcabe ;};_ceec ._gfeb =colspan ;_affag ._aeba +=colspan -1;_affag ._bdfef =append (_affag ._bdfef ,_ceec );_ceec ._edfg =_affag ;return _ceec ;}; +// Finalize renders all blocks to the creator pages. In addition, it takes care +// of adding headers and footers, as well as generating the front page, +// table of contents and outlines. +// Finalize is automatically called before writing the document out. Calling the +// method manually can be useful when adding external pages to the creator, +// using the AddPage method, as it renders all creator blocks to the added +// pages, without having to write the document out. +// NOTE: TOC and outlines are generated only if the AddTOC and AddOutlines +// fields of the creator are set to true (enabled by default). Furthermore, TOCs +// and outlines without content are skipped. TOC and outline content is +// added automatically when using the chapter component. TOCs and outlines can +// also be set externally, using the SetTOC and SetOutlineTree methods. +// Finalize should only be called once, after all draw calls have taken place, +// as it will return immediately if the creator instance has been finalized. +func (_effg *Creator )Finalize ()error {if _effg ._acead {return nil ;};_eabe :=len (_effg ._cec );_beag :=0;if _effg ._fbd !=nil {_acbc :=*_effg ;_effg ._cec =nil ;_effg ._bcba =nil ;_effg .initContext ();_gcaf :=FrontpageFunctionArgs {PageNum :1,TotalPages :_eabe }; +_effg ._fbd (_gcaf );_beag +=len (_effg ._cec );_effg ._cec =_acbc ._cec ;_effg ._bcba =_acbc ._bcba ;};if _effg .AddTOC {_effg .initContext ();_effg ._eacd .Page =_beag +1;if _effg .CustomTOC &&_effg ._gfgf !=nil {_bcf :=*_effg ;_effg ._cec =nil ;_effg ._bcba =nil ; +if _facg :=_effg ._gfgf (_effg ._effa );_facg !=nil {return _facg ;};_beag +=len (_effg ._cec );_effg ._cec =_bcf ._cec ;_effg ._bcba =_bcf ._bcba ;}else {if _effg ._gfgf !=nil {if _fdd :=_effg ._gfgf (_effg ._effa );_fdd !=nil {return _fdd ;};};_gdb ,_ ,_fffd :=_effg ._effa .GeneratePageBlocks (_effg ._eacd ); +if _fffd !=nil {_ca .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074\u0065\u0020\u0062\u006c\u006f\u0063\u006b\u0073: \u0025\u0076",_fffd );return _fffd ;};_beag +=len (_gdb );};_cdc :=_effg ._effa .Lines (); +for _ ,_fge :=range _cdc {_cce ,_caa :=_a .Atoi (_fge .Page .Text );if _caa !=nil {continue ;};_fge .Page .Text =_a .Itoa (_cce +_beag );_fge ._eefcc +=int64 (_beag );};};_dfgd :=false ;var _eabc []*_ggc .PdfPage ;if _effg ._fbd !=nil {_geae :=*_effg ; +_effg ._cec =nil ;_effg ._bcba =nil ;_cfdd :=FrontpageFunctionArgs {PageNum :1,TotalPages :_eabe };_effg ._fbd (_cfdd );_eabe +=len (_effg ._cec );_eabc =_effg ._cec ;_effg ._cec =append (_effg ._cec ,_geae ._cec ...);_effg ._bcba =_geae ._bcba ;_dfgd =true ; +};var _agce []*_ggc .PdfPage ;if _effg .AddTOC {_effg .initContext ();if _effg .CustomTOC &&_effg ._gfgf !=nil {_cafca :=*_effg ;_effg ._cec =nil ;_effg ._bcba =nil ;if _bcfg :=_effg ._gfgf (_effg ._effa );_bcfg !=nil {_ca .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074i\u006e\u0067\u0020\u0054\u004f\u0043\u003a\u0020\u0025\u0076",_bcfg ); +return _bcfg ;};_agce =_effg ._cec ;_eabe +=len (_agce );_effg ._cec =_cafca ._cec ;_effg ._bcba =_cafca ._bcba ;}else {if _effg ._gfgf !=nil {if _edef :=_effg ._gfgf (_effg ._effa );_edef !=nil {_ca .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074i\u006e\u0067\u0020\u0054\u004f\u0043\u003a\u0020\u0025\u0076",_edef ); +return _edef ;};};_deff ,_ ,_ :=_effg ._effa .GeneratePageBlocks (_effg ._eacd );for _ ,_fbce :=range _deff {_fbce .SetPos (0,0);_eabe ++;_accgd :=_effg .newPage ();_agce =append (_agce ,_accgd );_effg .setActivePage (_accgd );_effg .Draw (_fbce );};}; +if _dfgd {_deffg :=_eabc ;_bfae :=_effg ._cec [len (_eabc ):];_effg ._cec =append ([]*_ggc .PdfPage {},_deffg ...);_effg ._cec =append (_effg ._cec ,_agce ...);_effg ._cec =append (_effg ._cec ,_bfae ...);}else {_effg ._cec =append (_agce ,_effg ._cec ...); +};};if _effg ._gaec !=nil &&_effg .AddOutlines {var _dcac func (_fda *_ggc .OutlineItem );_dcac =func (_bba *_ggc .OutlineItem ){_bba .Dest .Page +=int64 (_beag );if _fba :=int (_bba .Dest .Page );_fba >=0&&_fba < len (_effg ._cec ){_bba .Dest .PageObj =_effg ._cec [_fba ].GetPageAsIndirectObject (); +}else {_ca .Log .Debug ("\u0057\u0041R\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u0064",_fba ); +};_bba .Dest .Y =_effg ._ffc -_bba .Dest .Y ;_gdae :=_bba .Items ();for _ ,_fbfd :=range _gdae {_dcac (_fbfd );};};_gaaa :=_effg ._gaec .Items ();for _ ,_acac :=range _gaaa {_dcac (_acac );};if _effg .AddTOC {var _bbe int ;if _dfgd {_bbe =len (_eabc ); +};_adcb :=_ggc .NewOutlineDest (int64 (_bbe ),0,_effg ._ffc );if _bbe >=0&&_bbe < len (_effg ._cec ){_adcb .PageObj =_effg ._cec [_bbe ].GetPageAsIndirectObject ();}else {_ca .Log .Debug ("\u0057\u0041R\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u0064",_bbe ); +};_effg ._gaec .Insert (0,_ggc .NewOutlineItem ("\u0054\u0061\u0062\u006c\u0065\u0020\u006f\u0066\u0020\u0043\u006f\u006et\u0065\u006e\u0074\u0073",_adcb ));};};for _cefe ,_bcd :=range _effg ._cec {_effg .setActivePage (_bcd );if _effg ._dcc !=nil {_efcf ,_fbgg ,_dda :=_bcd .Size (); +if _dda !=nil {return _dda ;};_gdfa :=PageFinalizeFunctionArgs {PageNum :_cefe +1,PageWidth :_efcf ,PageHeight :_fbgg ,TOCPages :len (_agce ),TotalPages :_eabe };if _bcea :=_effg ._dcc (_gdfa );_bcea !=nil {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0070\u0061\u0067\u0065\u0020\u0066\u0069\u006e\u0061\u006c\u0069\u007a\u0065 \u0063\u0061\u006c\u006c\u0062\u0061\u0063k\u003a\u0020\u0025\u0076",_bcea ); +return _bcea ;};};if _effg ._fdcb !=nil {_bab :=NewBlock (_effg ._abf ,_effg ._gcgd .Top );_acf :=HeaderFunctionArgs {PageNum :_cefe +1,TotalPages :_eabe };_effg ._fdcb (_bab ,_acf );_bab .SetPos (0,0);if _fgbc :=_effg .Draw (_bab );_fgbc !=nil {_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0064\u0072\u0061\u0077\u0069n\u0067 \u0068e\u0061\u0064\u0065\u0072\u003a\u0020\u0025v",_fgbc ); +return _fgbc ;};};if _effg ._cgeab !=nil {_edf :=NewBlock (_effg ._abf ,_effg ._gcgd .Bottom );_fdcec :=FooterFunctionArgs {PageNum :_cefe +1,TotalPages :_eabe };_effg ._cgeab (_edf ,_fdcec );_edf .SetPos (0,_effg ._ffc -_edf ._gfe );if _ebef :=_effg .Draw (_edf ); +_ebef !=nil {_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0064\u0072\u0061\u0077\u0069n\u0067 \u0066o\u006f\u0074\u0065\u0072\u003a\u0020\u0025v",_ebef );return _ebef ;};};_gcge ,_dgbd :=_effg ._afbc [_bcd ];if _aead ,_bcfe :=_effg ._gfab [_bcd ]; +_bcfe {if _dgbd {_gcge .transformBlock (_aead );};if _cbd :=_aead .drawToPage (_bcd );_cbd !=nil {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0064\u0072\u0061\u0077\u0069\u006e\u0067\u0020\u0070\u0061\u0067\u0065\u0020%\u0064\u0020\u0062\u006c\u006f\u0063\u006bs\u003a\u0020\u0025\u0076",_cefe +1,_cbd ); +return _cbd ;};};if _dgbd {if _cgfg :=_gcge .transformPage (_bcd );_cgfg !=nil {_ca .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0074\u0072\u0061\u006e\u0073f\u006f\u0072\u006d\u0020\u0070\u0061\u0067\u0065\u003a\u0020%\u0076",_cgfg ); +return _cgfg ;};};};_effg ._acead =true ;return nil ;}; -// Width returns the cell's width based on the input draw context. -func (_fdaad *TableCell )Width (ctx DrawContext )float64 {_fbgc :=float64 (0.0);for _agff :=0;_agff < _fdaad ._gfeb ;_agff ++{_fbgc +=_fdaad ._edfg ._gaecf [_fdaad ._baceb +_agff -1];};_fegb :=ctx .Width *_fbgc ;return _fegb ;}; +// NewFilledCurve returns a instance of filled curve. +func (_dfgc *Creator )NewFilledCurve ()*FilledCurve {return _gdad ()};func _ffcc ()*Division {return &Division {_ggdbd :true }}; -// NewImageFromFile creates an Image from a file. -func (_bcbfg *Creator )NewImageFromFile (path string )(*Image ,error ){return _acgfb (path )}; +// Chapter is used to arrange multiple drawables (paragraphs, images, etc) into a single section. +// The concept is the same as a book or a report chapter. +type Chapter struct{_cfde int ;_gbcb string ;_ddd *Paragraph ;_gbac []Drawable ;_bcbd int ;_fgg bool ;_afg bool ;_dddd Positioning ;_edcb ,_bggdb float64 ;_ecga Margins ;_beae *Chapter ;_bdde *TOC ;_ggf *_ggc .Outline ;_agd *_ggc .OutlineItem ;_ede uint ; +};func (_fegdba *TOCLine )prepareParagraph (_ggab *StyledParagraph ,_cdeec DrawContext ){_bbec :=_fegdba .Title .Text ;if _fegdba .Number .Text !=""{_bbec ="\u0020"+_bbec ;};_bbec +="\u0020";_fegf :=_fegdba .Page .Text ;if _fegf !=""{_fegf ="\u0020"+_fegf ; +};_ggab ._cdffa =[]*TextChunk {{Text :_fegdba .Number .Text ,Style :_fegdba .Number .Style ,_dfcb :_fegdba .getLineLink ()},{Text :_bbec ,Style :_fegdba .Title .Style ,_dfcb :_fegdba .getLineLink ()},{Text :_fegf ,Style :_fegdba .Page .Style ,_dfcb :_fegdba .getLineLink ()}}; +_ggab .wrapText ();_degec :=len (_ggab ._aabba );if _degec ==0{return ;};_ffgfe :=_cdeec .Width *1000-_ggab .getTextLineWidth (_ggab ._aabba [_degec -1]);_bdbd :=_ggab .getTextLineWidth ([]*TextChunk {&_fegdba .Separator });_adeggd :=int (_ffgfe /_bdbd ); +_ecfgd :=_dc .Repeat (_fegdba .Separator .Text ,_adeggd );_gagfb :=_fegdba .Separator .Style ;_abbc :=_ggab .Insert (2,_ecfgd );_abbc .Style =_gagfb ;_abbc ._dfcb =_fegdba .getLineLink ();_ffgfe =_ffgfe -float64 (_adeggd )*_bdbd ;if _ffgfe > 500{_bgfdd ,_edge :=_gagfb .Font .GetRuneMetrics (' '); +if _edge &&_ffgfe > _bgfdd .Wx {_eafaf :=int (_ffgfe /_bgfdd .Wx );if _eafaf > 0{_dfeeb :=_gagfb ;_dfeeb .FontSize =1;_abbc =_ggab .Insert (2,_dc .Repeat ("\u0020",_eafaf ));_abbc .Style =_dfeeb ;_abbc ._dfcb =_fegdba .getLineLink ();};};};};func _bgbee (_gcce *_ggc .PdfAnnotation )*_ggc .PdfAnnotation {if _gcce ==nil {return nil ; +};var _dbfg *_ggc .PdfAnnotation ;switch _fdaab :=_gcce .GetContext ().(type ){case *_ggc .PdfAnnotationLink :if _dbcg :=_egedc (_fdaab );_dbcg !=nil {_dbfg =_dbcg .PdfAnnotation ;};};return _dbfg ;};func (_gfd *Block )addContentsByString (_bae string )error {_bb :=_bdb .NewContentStreamParser (_bae ); +_ccc ,_fbf :=_bb .Parse ();if _fbf !=nil {return _fbf ;};_gfd ._cad .WrapIfNeeded ();_ccc .WrapIfNeeded ();*_gfd ._cad =append (*_gfd ._cad ,*_ccc ...);return nil ;}; -// NewStyledParagraph creates a new styled paragraph. -// Default attributes: -// Font: Helvetica, -// Font size: 10 -// Encoding: WinAnsiEncoding -// Wrap: enabled -// Text color: black -func (_dda *Creator )NewStyledParagraph ()*StyledParagraph {return _defdc (_dda .NewTextStyle ())}; +// GetMargins returns the margins of the chart (left, right, top, bottom). +func (_ffgf *Chart )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _ffgf ._gcff .Left ,_ffgf ._gcff .Right ,_ffgf ._gcff .Top ,_ffgf ._gcff .Bottom ;}; -// Length calculates and returns the length of the line. -func (_bdad *Line )Length ()float64 {return _ec .Sqrt (_ec .Pow (_bdad ._gagg -_bdad ._dfbf ,2.0)+_ec .Pow (_bdad ._cbaff -_bdad ._aeecg ,2.0));}; +// Text sets the text content of the Paragraph. +func (_edbb *Paragraph )Text ()string {return _edbb ._age }; -// Polyline represents a slice of points that are connected as straight lines. -// Implements the Drawable interface and can be rendered using the Creator. -type Polyline struct{_dfgf *_ce .Polyline ;_ggba float64 ;};func (_cdga *Table )clone ()*Table {_cgccg :=*_cdga ;_cgccg ._cddcg =make ([]float64 ,len (_cdga ._cddcg ));copy (_cgccg ._cddcg ,_cdga ._cddcg );_cgccg ._gaecf =make ([]float64 ,len (_cdga ._gaecf )); -copy (_cgccg ._gaecf ,_cdga ._gaecf );_cgccg ._bdfef =make ([]*TableCell ,0,len (_cdga ._bdfef ));for _ ,_cfdc :=range _cdga ._bdfef {_egfaa :=*_cfdc ;_egfaa ._edfg =&_cgccg ;_cgccg ._bdfef =append (_cgccg ._bdfef ,&_egfaa );};return &_cgccg ;}; +// LinearShading holds data for rendering a linear shading gradient. +type LinearShading struct{_aecc *shading ;_cbgf *_ggc .PdfRectangle ;_fcfe float64 ;};func (_dedae *templateProcessor )parsePositioningAttr (_deccag ,_ffcb string )Positioning {_ca .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u0069\u006e\u0067\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060%\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_deccag ,_ffcb ); +_cbbb :=map[string ]Positioning {"\u0072\u0065\u006c\u0061\u0074\u0069\u0076\u0065":PositionRelative ,"\u0061\u0062\u0073\u006f\u006c\u0075\u0074\u0065":PositionAbsolute }[_ffcb ];return _cbbb ;}; -// Table allows organizing content in an rows X columns matrix, which can spawn across multiple pages. -type Table struct{_cccb int ;_beege int ;_aeba int ;_gaecf []float64 ;_cddcg []float64 ;_efbgd float64 ;_bdfef []*TableCell ;_cgbff []int ;_dbgb Positioning ;_dcbdd ,_dfdc float64 ;_fefca Margins ;_acgfbd bool ;_adaae int ;_begg int ;_dbac bool ;_cbca bool ; -};type containerDrawable interface{Drawable ; +// CurvePolygon represents a curve polygon shape. +// Implements the Drawable interface and can be drawn on PDF using the Creator. +type CurvePolygon struct{_ecae *_fc .CurvePolygon ;_gfage float64 ;_fgcc float64 ;_fdge Color ;}; -// ContainerComponent checks if the component is allowed to be added into provided 'container' and returns -// preprocessed copy of itself. If the component is not changed it is allowed to return itself in a callback way. -// If the component is not compatible with provided container this method should return an error. -ContainerComponent (_ddae Drawable )(Drawable ,error );}; +// SkipOver skips over a specified number of rows and cols. +func (_dbae *Table )SkipOver (rows ,cols int ){_bgdaf :=rows *_dbae ._aeaa +cols -1;if _bgdaf < 0{_ca .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0073\u006b\u0069\u0070\u0020b\u0061\u0063\u006b\u0020\u0074\u006f\u0020\u0070\u0072\u0065\u0076\u0069\u006f\u0075\u0073\u0020\u0063\u0065\u006c\u006c\u0073"); +return ;};for _dgege :=0;_dgege < _bgdaf ;_dgege ++{_dbae .NewCell ();};}; -// SetText replaces all the text of the paragraph with the specified one. -func (_ebagf *StyledParagraph )SetText (text string )*TextChunk {_ebagf .Reset ();return _ebagf .Append (text );}; +// SetStyleRight sets border style for right side. +func (_acbab *border )SetStyleRight (style CellBorderStyle ){_acbab ._dabg =style };func _daf (_bgbc string )string {_dca :=_dac .FindAllString (_bgbc ,-1);if len (_dca )==0{_bgbc =_bgbc +"\u0030";}else {_bac ,_aebb :=_a .Atoi (_dca [len (_dca )-1]);if _aebb !=nil {_ca .Log .Debug ("\u0045r\u0072\u006f\u0072 \u0063\u006f\u006ev\u0065rt\u0069\u006e\u0067\u0020\u0064\u0069\u0067i\u0074\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020\u006e\u0061\u006de,\u0020f\u0061\u006c\u006c\u0062\u0061\u0063k\u0020\u0074\u006f\u0020\u0062a\u0073\u0069\u0063\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u003a \u0025\u0076",_aebb ); +_bgbc =_bgbc +"\u0030";}else {_bac ++;_gdce :=_dc .LastIndex (_bgbc ,_dca [len (_dca )-1]);if _gdce ==-1{_bgbc =_df .Sprintf ("\u0025\u0073\u0025\u0064",_bgbc [:len (_bgbc )-1],_bac );}else {_bgbc =_bgbc [:_gdce ]+_a .Itoa (_bac );};};};return _bgbc ;}; +func _cbcc (_bfcc string )(*GraphicSVG ,error ){_bcdae ,_cdbef :=_cc .ParseFromFile (_bfcc );if _cdbef !=nil {return nil ,_cdbef ;};return _cgee (_bcdae );}; -// SetHeaderRows turns the selected table rows into headers that are repeated -// for every page the table spans. startRow and endRow are inclusive. -func (_adge *Table )SetHeaderRows (startRow ,endRow int )error {if startRow <=0{return _e .New ("\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0073\u0074\u0061\u0072\u0074\u0020r\u006f\u0077\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0030"); -};if endRow <=0{return _e .New ("\u0068\u0065a\u0064\u0065\u0072\u0020e\u006e\u0064 \u0072\u006f\u0077\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0030");};if startRow > endRow {return _e .New ("\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0073\u0074\u0061\u0072\u0074\u0020\u0072\u006f\u0077\u0020\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0074\u0068\u0065 \u0065\u006e\u0064\u0020\u0072o\u0077"); -};_adge ._acgfbd =true ;_adge ._adaae =startRow ;_adge ._begg =endRow ;return nil ;};func (_ccdc *templateProcessor )parseColor (_agdge string )Color {if _agdge ==""{return nil ;};_egbg ,_gfae :=_ccdc ._cbdga .ColorMap [_agdge ];if _gfae {return _egbg ; -};if _agdge [0]=='#'{return ColorRGBFromHex (_agdge );};return nil ;};func _dbdee (_cdgf *Block ,_ebfbb *Paragraph ,_efbae DrawContext )(DrawContext ,error ){_bcgab :=1;_cadc :=_ea .PdfObjectName ("\u0046\u006f\u006e\u0074"+_a .Itoa (_bcgab ));for _cdgf ._gae .HasFontByName (_cadc ){_bcgab ++; -_cadc =_ea .PdfObjectName ("\u0046\u006f\u006e\u0074"+_a .Itoa (_bcgab ));};_gebec :=_cdgf ._gae .SetFontByName (_cadc ,_ebfbb ._gcedf .ToPdfObject ());if _gebec !=nil {return _efbae ,_gebec ;};_ebfbb .wrapText ();_ddcc :=_bd .NewContentCreator ();_ddcc .Add_q (); -_dgac :=_efbae .PageHeight -_efbae .Y -_ebfbb ._cgcbd *_ebfbb ._ecegc ;_ddcc .Translate (_efbae .X ,_dgac );if _ebfbb ._dgdea !=0{_ddcc .RotateDeg (_ebfbb ._dgdea );};_acaca :=_gdfa (_ebfbb ._beaa );_gebec =_ddcd (_cdgf ,_acaca ,_ebfbb ._beaa ,func ()Rectangle {return Rectangle {_dfbc :_efbae .X ,_gbfgg :_dgac ,_faaa :_ebfbb .getMaxLineWidth ()/1000.0,_baag :_ebfbb .Height ()}; -});if _gebec !=nil {return _efbae ,_gebec ;};_ddcc .Add_BT ().SetNonStrokingColor (_acaca ).Add_Tf (_cadc ,_ebfbb ._cgcbd ).Add_TL (_ebfbb ._cgcbd *_ebfbb ._ecegc );for _bbbe ,_abfb :=range _ebfbb ._gbdea {if _bbbe !=0{_ddcc .Add_Tstar ();};_cddb :=[]rune (_abfb ); -_dfbag :=0.0;_daceb :=0;for _gbaa ,_dbga :=range _cddb {if _dbga ==' '{_daceb ++;continue ;};if _dbga =='\u000A'{continue ;};_fbage ,_bbca :=_ebfbb ._gcedf .GetRuneMetrics (_dbga );if !_bbca {_eef .Log .Debug ("\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0072\u0075\u006e\u0065\u0020\u0069=\u0025\u0064\u0020\u0072\u0075\u006e\u0065=\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0020\u0069n\u0020\u0066\u006f\u006e\u0074\u0020\u0025\u0073\u0020\u0025\u0073",_gbaa ,_dbga ,_dbga ,_ebfbb ._gcedf .BaseFont (),_ebfbb ._gcedf .Subtype ()); -return _efbae ,_e .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0067\u006c\u0079p\u0068");};_dfbag +=_ebfbb ._cgcbd *_fbage .Wx ;};var _cdbf []_ea .PdfObject ;_ggace ,_ceee :=_ebfbb ._gcedf .GetRuneMetrics (' '); -if !_ceee {return _efbae ,_e .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068");};_ffaf :=_ggace .Wx ;switch _ebfbb ._fbgf {case TextAlignmentJustify :if _daceb > 0&&_bbbe < len (_ebfbb ._gbdea )-1{_ffaf =(_ebfbb ._gdffb *1000.0-_dfbag )/float64 (_daceb )/_ebfbb ._cgcbd ; -};case TextAlignmentCenter :_faed :=_dfbag +float64 (_daceb )*_ffaf *_ebfbb ._cgcbd ;_afeef :=(_ebfbb ._gdffb *1000.0-_faed )/2/_ebfbb ._cgcbd ;_cdbf =append (_cdbf ,_ea .MakeFloat (-_afeef ));case TextAlignmentRight :_add :=_dfbag +float64 (_daceb )*_ffaf *_ebfbb ._cgcbd ; -_edcc :=(_ebfbb ._gdffb *1000.0-_add )/_ebfbb ._cgcbd ;_cdbf =append (_cdbf ,_ea .MakeFloat (-_edcc ));};_ecee :=_ebfbb ._gcedf .Encoder ();var _gfgba []byte ;for _ ,_daggc :=range _cddb {if _daggc =='\u000A'{continue ;};if _daggc ==' '{if len (_gfgba )> 0{_cdbf =append (_cdbf ,_ea .MakeStringFromBytes (_gfgba )); -_gfgba =nil ;};_cdbf =append (_cdbf ,_ea .MakeFloat (-_ffaf ));}else {if _ ,_gega :=_ecee .RuneToCharcode (_daggc );!_gega {_gebec =UnsupportedRuneError {Message :_g .Sprintf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u0072\u0075\u006e\u0065 \u0069\u006e\u0020\u0074\u0065\u0078\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0023\u0078\u0020\u0028\u0025\u0063\u0029",_daggc ,_daggc ),Rune :_daggc }; -_efbae ._bdfb =append (_efbae ._bdfb ,_gebec );_eef .Log .Debug (_gebec .Error ());if _efbae ._bfdb <=0{continue ;};_daggc =_efbae ._bfdb ;};_gfgba =append (_gfgba ,_ecee .Encode (string (_daggc ))...);};};if len (_gfgba )> 0{_cdbf =append (_cdbf ,_ea .MakeStringFromBytes (_gfgba )); -};_ddcc .Add_TJ (_cdbf ...);};_ddcc .Add_ET ();_ddcc .Add_Q ();_cebf :=_ddcc .Operations ();_cebf .WrapIfNeeded ();_cdgf .addContents (_cebf );if _ebfbb ._aacf .IsRelative (){_befa :=_ebfbb .Height ();_efbae .Y +=_befa ;_efbae .Height -=_befa ;if _efbae .Inline {_efbae .X +=_ebfbb .Width ()+_ebfbb ._fbba .Right ; -};};return _efbae ,nil ;}; +// AddLine adds a new line with the provided style to the table of contents. +func (_gbba *TOC )AddLine (line *TOCLine )*TOCLine {if line ==nil {return nil ;};_gbba ._fbeeg =append (_gbba ._fbeeg ,line );return line ;};func (_ded *Division )ctxHeight (_ecgd float64 )float64 {_ecgd -=_ded ._debb .Left +_ded ._debb .Right +_ded ._agda .Left +_ded ._agda .Right ; +var _gabe float64 ;for _ ,_agga :=range _ded ._bfdf {_gabe +=_cefg (_agga ,_ecgd );};return _gabe ;};func _dbac (_ddb Color )_ggc .PdfColor {if _ddb ==nil {_ddb =ColorBlack ;};switch _eebg :=_ddb .(type ){case cmykColor :return _ggc .NewPdfColorDeviceCMYK (_eebg ._badc ,_eebg ._dea ,_eebg ._gaa ,_eebg ._ccb ); +case *LinearShading :return _ggc .NewPdfColorPatternType2 ();case *RadialShading :return _ggc .NewPdfColorPatternType3 ();};return _ggc .NewPdfColorDeviceRGB (_ddb .ToRGB ());}; -// EnablePageWrap controls whether the division is wrapped across pages. -// If disabled, the division is moved in its entirety on a new page, if it -// does not fit in the available height. By default, page wrapping is enabled. -// If the height of the division is larger than an entire page, wrapping is -// enabled automatically in order to avoid unwanted behavior. -// Currently, page wrapping can only be disabled for vertical divisions. -func (_fcgc *Division )EnablePageWrap (enable bool ){_fcgc ._gfbg =enable };func (_dbc *Block )duplicate ()*Block {_dg :=&Block {};*_dg =*_dbc ;_gc :=_bd .ContentStreamOperations {};_gc =append (_gc ,*_dbc ._ffc ...);_dg ._ffc =&_gc ;return _dg ;};func (_aedfe *templateProcessor )parseFitModeAttr (_beega ,_agdb string )FitMode {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0066\u0069\u0074\u0020\u006do\u0064\u0065\u0020\u0061\u0074\u0074r\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c \u0025\u0073\u0029\u002e",_beega ,_agdb ); -_ffcfge :=map[string ]FitMode {"\u006e\u006f\u006e\u0065":FitModeNone ,"\u0066\u0069\u006c\u006c\u002d\u0077\u0069\u0064\u0074\u0068":FitModeFillWidth }[_agdb ];return _ffcfge ;};func (_dacbd *TOCLine )getLineLink ()*_fa .PdfAnnotation {if _dacbd ._gdda <=0{return nil ; -};return _ccbeg (_dacbd ._gdda -1,_dacbd ._faga ,_dacbd ._eeaa ,0);}; +// GeneratePageBlocks draws the ellipse on a new block representing the page. +func (_bdcf *Ellipse )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_eaeb []*Block ;_fgge =NewBlock (ctx .PageWidth ,ctx .PageHeight );_cfff =ctx ;);_ffb :=_bdcf ._acgd .IsRelative ();if _ffb {_bdcf .applyFitMode (ctx .Width ); +ctx .X +=_bdcf ._cadg .Left ;ctx .Y +=_bdcf ._cadg .Top ;ctx .Width -=_bdcf ._cadg .Left +_bdcf ._cadg .Right ;ctx .Height -=_bdcf ._cadg .Top +_bdcf ._cadg .Bottom ;if _bdcf ._dabc > ctx .Height {_eaeb =append (_eaeb ,_fgge );_fgge =NewBlock (ctx .PageWidth ,ctx .PageHeight ); +ctx .Page ++;_gbce :=ctx ;_gbce .Y =ctx .Margins .Top +_bdcf ._cadg .Top ;_gbce .X =ctx .Margins .Left +_bdcf ._cadg .Left ;_gbce .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_bdcf ._cadg .Top -_bdcf ._cadg .Bottom ;_gbce .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_bdcf ._cadg .Left -_bdcf ._cadg .Right ; +ctx =_gbce ;};}else {ctx .X =_bdcf ._eebe -_bdcf ._eded /2;ctx .Y =_bdcf ._beb -_bdcf ._dabc /2;};_beec :=_fc .Circle {X :ctx .X ,Y :ctx .PageHeight -ctx .Y -_bdcf ._dabc ,Width :_bdcf ._eded ,Height :_bdcf ._dabc ,BorderWidth :_bdcf ._fgcca ,Opacity :1.0}; +if _bdcf ._dbadf !=nil {_beec .FillEnabled =true ;_eddd :=_dbac (_bdcf ._dbadf );_gage :=_aede (_fgge ,_eddd ,_bdcf ._dbadf ,func ()Rectangle {return Rectangle {_cgedd :_beec .X ,_eeff :_beec .Y ,_gfad :_beec .Width ,_fefg :_beec .Height };});if _gage !=nil {return nil ,ctx ,_gage ; +};_beec .FillColor =_eddd ;};if _bdcf ._fegd !=nil {_beec .BorderEnabled =false ;if _bdcf ._fgcca > 0{_beec .BorderEnabled =true ;};_beec .BorderColor =_dbac (_bdcf ._fegd );_beec .BorderWidth =_bdcf ._fgcca ;};_gggf ,_defad :=_fgge .setOpacity (_bdcf ._ddbf ,_bdcf ._dadc ); +if _defad !=nil {return nil ,ctx ,_defad ;};_eef ,_ ,_defad :=_beec .Draw (_gggf );if _defad !=nil {return nil ,ctx ,_defad ;};_defad =_fgge .addContentsByString (string (_eef ));if _defad !=nil {return nil ,ctx ,_defad ;};if _ffb {ctx .X =_cfff .X ;ctx .Width =_cfff .Width ; +ctx .Y +=_bdcf ._dabc +_bdcf ._cadg .Bottom ;ctx .Height -=_bdcf ._dabc ;}else {ctx =_cfff ;};_eaeb =append (_eaeb ,_fgge );return _eaeb ,ctx ,nil ;}; -// GeneratePageBlocks draw graphic svg into block. -func (_caaf *GraphicSVG )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_baba :=ctx ;_gabf :=_caaf ._gacf .IsRelative ();var _bafg []*Block ;if _gabf {_dddg :=1.0;_abga :=_caaf ._eefa .Top ;if _caaf ._baea .Height > ctx .Height -_caaf ._eefa .Top {_bafg =[]*Block {NewBlock (ctx .PageWidth ,ctx .PageHeight -ctx .Y )}; -var _dgce error ;if _ ,ctx ,_dgce =_ddge ().GeneratePageBlocks (ctx );_dgce !=nil {return nil ,ctx ,_dgce ;};_abga =0;};ctx .X +=_caaf ._eefa .Left +_dddg ;ctx .Y +=_abga ;ctx .Width -=_caaf ._eefa .Left +_caaf ._eefa .Right +2*_dddg ;ctx .Height -=_abga ; -}else {ctx .X =_caaf ._gfgc ;ctx .Y =_caaf ._dffe ;};_aefd :=_bd .NewContentCreator ();_aefd .Translate (0,ctx .PageHeight );_aefd .Scale (1,-1);_aefd .Translate (ctx .X ,ctx .Y );_agecf :=_caaf ._baea .Width /_caaf ._baea .ViewBox .W ;_efad :=_caaf ._baea .Height /_caaf ._baea .ViewBox .H ; -_afd :=_caaf ._gfgc -(_caaf ._baea .ViewBox .X *_ec .Max (_agecf ,_efad ));_faf :=_caaf ._dffe -(_caaf ._baea .ViewBox .Y *_ec .Max (_agecf ,_efad ));_caaf ._baea .ToContentCreator (_aefd ,_agecf ,_efad ,_afd ,_faf );_ecfed :=NewBlock (ctx .PageWidth ,ctx .PageHeight ); -if _eddg :=_ecfed .addContentsByString (_aefd .String ());_eddg !=nil {return nil ,ctx ,_eddg ;};if _gabf {_cgeg :=_caaf .Height ()+_caaf ._eefa .Bottom ;ctx .Y +=_cgeg ;ctx .Height -=_cgeg ;}else {ctx =_baba ;};_bafg =append (_bafg ,_ecfed );return _bafg ,ctx ,nil ; -}; +// NewCurve returns new instance of Curve between points (x1,y1) and (x2, y2) with control point (cx,cy). +func (_gbdc *Creator )NewCurve (x1 ,y1 ,cx ,cy ,x2 ,y2 float64 )*Curve {return _cdae (x1 ,y1 ,cx ,cy ,x2 ,y2 );};const (HorizontalAlignmentLeft HorizontalAlignment =iota ;HorizontalAlignmentCenter ;HorizontalAlignmentRight ;);const (TextOverflowVisible TextOverflow =iota ; +TextOverflowHidden ;); -// SetMargins sets the margins of the paragraph. -func (_dbbbad *List )SetMargins (left ,right ,top ,bottom float64 ){_dbbbad ._eead .Left =left ;_dbbbad ._eead .Right =right ;_dbbbad ._eead .Top =top ;_dbbbad ._eead .Bottom =bottom ;}; +// NewImageFromData creates an Image from image data. +func (_cddab *Creator )NewImageFromData (data []byte )(*Image ,error ){return _cdce (data )}; -// AddColorStop add color stop info for rendering gradient color. -func (_cgbc *RadialShading )AddColorStop (color Color ,point float64 ){_cgbc ._gcbg .AddColorStop (color ,point );}; +// SetDate sets the date of the invoice. +func (_cgba *Invoice )SetDate (date string )(*InvoiceCell ,*InvoiceCell ){_cgba ._ddbe [1].Value =date ;return _cgba ._ddbe [0],_cgba ._ddbe [1];};const (PositionRelative Positioning =iota ;PositionAbsolute ;); -// MoveRight moves the drawing context right by relative displacement dx (negative goes left). -func (_efgeb *Creator )MoveRight (dx float64 ){_efgeb ._gbb .X +=dx }; +// SetMargins sets the margins of the line. +// NOTE: line margins are only applied if relative positioning is used. +func (_ccee *Line )SetMargins (left ,right ,top ,bottom float64 ){_ccee ._bccc .Left =left ;_ccee ._bccc .Right =right ;_ccee ._bccc .Top =top ;_ccee ._bccc .Bottom =bottom ;}; -// NewGraphicSVGFromString creates a graphic SVG from a SVG string. -func NewGraphicSVGFromString (svgStr string )(*GraphicSVG ,error ){return _ecgd (svgStr )}; +// TextChunk represents a chunk of text along with a particular style. +type TextChunk struct{ -// Add adds a VectorDrawable to the Division container. -// Currently supported VectorDrawables: +// The text that is being rendered in the PDF. +Text string ; + +// The style of the text being rendered. +Style TextStyle ;_dfcb *_ggc .PdfAnnotation ;_abacb bool ; + +// The vertical alignment of the text chunk. +VerticalAlignment TextVerticalAlignment ;}; + +// SetLineHeight sets the line height (1.0 default). +func (_dgdfd *StyledParagraph )SetLineHeight (lineheight float64 ){_dgdfd ._babcf =lineheight };func (_eebgc *templateProcessor )parseChapterHeading (_fgggab *templateNode )(interface{},error ){if _fgggab ._fbcg ==nil {_eebgc .nodeLogError (_fgggab ,"\u0043\u0068a\u0070\u0074\u0065\u0072 \u0068\u0065a\u0064\u0069\u006e\u0067\u0020\u0070\u0061\u0072e\u006e\u0074\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c\u002e"); +return nil ,_gfaba ;};_ggdd ,_gdcada :=_fgggab ._fbcg ._caacd .(*Chapter );if !_gdcada {_eebgc .nodeLogError (_fgggab ,"\u0043h\u0061\u0070t\u0065\u0072\u0020h\u0065\u0061\u0064\u0069\u006e\u0067\u0020p\u0061\u0072\u0065\u006e\u0074\u0020(\u0025\u0054\u0029\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020a\u0020\u0063\u0068\u0061\u0070\u0074\u0065\u0072\u002e",_fgggab ._fbcg ._caacd ); +return nil ,_gfaba ;};_bbge :=_ggdd .GetHeading ();if _ ,_bggg :=_eebgc .parseParagraph (_fgggab ,_bbge );_bggg !=nil {return nil ,_bggg ;};return _bbge ,nil ;}; + +// Terms returns the terms and conditions section of the invoice as a +// title-content pair. +func (_cgfe *Invoice )Terms ()(string ,string ){return _cgfe ._aacd [0],_cgfe ._aacd [1]};type templateProcessor struct{creator *Creator ;_gcgb []byte ;_affcb *TemplateOptions ;_gcfaeb componentRenderer ;_eccabe string ;};func (_efgca *Table )sortCells (){_f .Slice (_efgca ._cacca ,func (_egba ,_gfagd int )bool {_afde :=_efgca ._cacca [_egba ]._deded ; +_gdbec :=_efgca ._cacca [_gfagd ]._deded ;if _afde < _gdbec {return true ;};if _afde > _gdbec {return false ;};return _efgca ._cacca [_egba ]._eafbd < _efgca ._cacca [_gfagd ]._eafbd ;});}; + +// Add adds a new Drawable to the chapter. +// Currently supported Drawables: // - *Paragraph // - *StyledParagraph // - *Image // - *Chart -// - *Rectangle -// - *Ellipse -// - *Line // - *Table // - *Division // - *List -func (_fgab *Division )Add (d VectorDrawable )error {switch _afbe :=d .(type ){case *Paragraph ,*StyledParagraph ,*Image ,*Chart ,*Rectangle ,*Ellipse ,*Line ,*Table ,*Division ,*List :case containerDrawable :_geed ,_dffa :=_afbe .ContainerComponent (_fgab ); -if _dffa !=nil {return _dffa ;};_abfea ,_acgg :=_geed .(VectorDrawable );if !_acgg {return _g .Errorf ("\u0072\u0065\u0073\u0075\u006ct\u0020\u006f\u0066\u0020\u0043\u006f\u006et\u0061\u0069\u006e\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u002d\u0020\u0025\u0054\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0056\u0065c\u0074\u006f\u0072\u0044\u0072\u0061\u0077\u0061\u0062\u006c\u0065\u0020i\u006e\u0074\u0065\u0072\u0066\u0061c\u0065",_geed ); -};d =_abfea ;default:return _e .New ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0079\u0070e\u0020i\u006e\u0020\u0044\u0069\u0076\u0069\u0073i\u006f\u006e");};_fgab ._cga =append (_fgab ._cga ,d );return nil ;};func _egcg (_bfgf _cd .Image )(*Image ,error ){_eedf ,_cce :=_fa .ImageHandling .NewImageFromGoImage (_bfgf ); -if _cce !=nil {return nil ,_cce ;};return _aagg (_eedf );}; - -// Text sets the text content of the Paragraph. -func (_bffd *Paragraph )Text ()string {return _bffd ._babfa }; - -// SetAnnotation sets a annotation on a TextChunk. -func (_gecga *TextChunk )SetAnnotation (annotation *_fa .PdfAnnotation ){_gecga ._gbgga =annotation };func (_bgb *Chapter )headingText ()string {_baf :=_bgb ._ebfe ;if _dad :=_bgb .headingNumber ();_dad !=""{_baf =_g .Sprintf ("\u0025\u0073\u0020%\u0073",_dad ,_baf ); -};return _baf ;}; +// - *Rectangle +// - *Ellipse +// - *Line +// - *Block, +// - *PageBreak +// - *Chapter +func (_afb *Chapter )Add (d Drawable )error {if Drawable (_afb )==d {_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0043\u0061\u006e\u006e\u006f\u0074 \u0061\u0064\u0064\u0020\u0069\u0074\u0073\u0065\u006c\u0066");return _fa .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"); +};switch _dgf :=d .(type ){case *Paragraph ,*StyledParagraph ,*Image ,*Chart ,*Table ,*Division ,*List ,*Rectangle ,*Ellipse ,*Line ,*Block ,*PageBreak ,*Chapter :_afb ._gbac =append (_afb ._gbac ,d );case containerDrawable :_cade ,_dbca :=_dgf .ContainerComponent (_afb ); +if _dbca !=nil {return _dbca ;};_afb ._gbac =append (_afb ._gbac ,_cade );default:_ca .Log .Debug ("\u0055n\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u003a\u0020\u0025\u0054",d );return _fa .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +};return nil ;}; -// ColorPoint is a pair of Color and a relative point where the color -// would be rendered. -type ColorPoint struct{_cbff Color ;_deee float64 ;};func _gdb (_bga *_bd .ContentStreamOperations ,_fda *_fa .PdfPageResources ,_ebf *_bd .ContentStreamOperations ,_eff *_fa .PdfPageResources )error {_dac :=map[_ea .PdfObjectName ]_ea .PdfObjectName {}; -_cbf :=map[_ea .PdfObjectName ]_ea .PdfObjectName {};_bde :=map[_ea .PdfObjectName ]_ea .PdfObjectName {};_bfe :=map[_ea .PdfObjectName ]_ea .PdfObjectName {};_ade :=map[_ea .PdfObjectName ]_ea .PdfObjectName {};_fae :=map[_ea .PdfObjectName ]_ea .PdfObjectName {}; -for _ ,_agd :=range *_ebf {switch _agd .Operand {case "\u0044\u006f":if len (_agd .Params )==1{if _dd ,_dge :=_agd .Params [0].(*_ea .PdfObjectName );_dge {if _ ,_bbcg :=_dac [*_dd ];!_bbcg {var _dbcf _ea .PdfObjectName ;_geba ,_ :=_eff .GetXObjectByName (*_dd ); -if _geba !=nil {_dbcf =*_dd ;for {_bbd ,_ :=_fda .GetXObjectByName (_dbcf );if _bbd ==nil ||_bbd ==_geba {break ;};_dbcf =*_ea .MakeName (_ebgb (_dbcf .String ()));};};_fda .SetXObjectByName (_dbcf ,_geba );_dac [*_dd ]=_dbcf ;};_dbeg :=_dac [*_dd ];_agd .Params [0]=&_dbeg ; -};};case "\u0054\u0066":if len (_agd .Params )==2{if _cdae ,_eebd :=_agd .Params [0].(*_ea .PdfObjectName );_eebd {if _ ,_gcf :=_cbf [*_cdae ];!_gcf {_bbcd ,_fged :=_eff .GetFontByName (*_cdae );_gag :=*_cdae ;if _fged &&_bbcd !=nil {_gag =_fca (_cdae .String (),_bbcd ,_fda ); -};_fda .SetFontByName (_gag ,_bbcd );_cbf [*_cdae ]=_gag ;};_cdc :=_cbf [*_cdae ];_agd .Params [0]=&_cdc ;};};case "\u0043\u0053","\u0063\u0073":if len (_agd .Params )==1{if _gbc ,_fce :=_agd .Params [0].(*_ea .PdfObjectName );_fce {if _ ,_fgc :=_bde [*_gbc ]; -!_fgc {var _ecf _ea .PdfObjectName ;_cfbg ,_efg :=_eff .GetColorspaceByName (*_gbc );if _efg {_ecf =*_gbc ;for {_ffcc ,_adc :=_fda .GetColorspaceByName (_ecf );if !_adc ||_cfbg ==_ffcc {break ;};_ecf =*_ea .MakeName (_ebgb (_ecf .String ()));};_fda .SetColorspaceByName (_ecf ,_cfbg ); -_bde [*_gbc ]=_ecf ;}else {_eef .Log .Debug ("C\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064");};};if _gdf ,_ageb :=_bde [*_gbc ];_ageb {_agd .Params [0]=&_gdf ;}else {_eef .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0043\u006f\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",*_gbc ); -};};};case "\u0053\u0043\u004e","\u0073\u0063\u006e":if len (_agd .Params )==1{if _afc ,_eae :=_agd .Params [0].(*_ea .PdfObjectName );_eae {if _ ,_eed :=_bfe [*_afc ];!_eed {var _aeg _ea .PdfObjectName ;_fdg ,_agec :=_eff .GetPatternByName (*_afc );if _agec {_aeg =*_afc ; -for {_adb ,_dgg :=_fda .GetPatternByName (_aeg );if !_dgg ||_adb ==_fdg {break ;};_aeg =*_ea .MakeName (_ebgb (_aeg .String ()));};_bfg :=_fda .SetPatternByName (_aeg ,_fdg .ToPdfObject ());if _bfg !=nil {return _bfg ;};_bfe [*_afc ]=_aeg ;};};if _aeb ,_abgd :=_bfe [*_afc ]; -_abgd {_agd .Params [0]=&_aeb ;};};};case "\u0073\u0068":if len (_agd .Params )==1{if _bdc ,_dbff :=_agd .Params [0].(*_ea .PdfObjectName );_dbff {if _ ,_bdg :=_ade [*_bdc ];!_bdg {var _gdbe _ea .PdfObjectName ;_cgcc ,_acc :=_eff .GetShadingByName (*_bdc ); -if _acc {_gdbe =*_bdc ;for {_fdc ,_aga :=_fda .GetShadingByName (_gdbe );if !_aga ||_cgcc ==_fdc {break ;};_gdbe =*_ea .MakeName (_ebgb (_gdbe .String ()));};_egc :=_fda .SetShadingByName (_gdbe ,_cgcc .ToPdfObject ());if _egc !=nil {_eef .Log .Debug ("E\u0052\u0052\u004f\u0052 S\u0065t\u0020\u0073\u0068\u0061\u0064i\u006e\u0067\u003a\u0020\u0025\u0076",_egc ); -return _egc ;};_ade [*_bdc ]=_gdbe ;}else {_eef .Log .Debug ("\u0053\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};};if _cbfa ,_cac :=_ade [*_bdc ];_cac {_agd .Params [0]=&_cbfa ;}else {_eef .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020S\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u0025\u0073 \u006e\u006f\u0074 \u0066o\u0075\u006e\u0064",*_bdc ); -};};};case "\u0067\u0073":if len (_agd .Params )==1{if _ed ,_gda :=_agd .Params [0].(*_ea .PdfObjectName );_gda {if _ ,_befca :=_fae [*_ed ];!_befca {var _gfd _ea .PdfObjectName ;_ece ,_cba :=_eff .GetExtGState (*_ed );if _cba {_gfd =*_ed ;for {_ace ,_dfe :=_fda .GetExtGState (_gfd ); -if !_dfe ||_ece ==_ace {break ;};_gfd =*_ea .MakeName (_ebgb (_gfd .String ()));};};_fda .AddExtGState (_gfd ,_ece );_fae [*_ed ]=_gfd ;};_gbdc :=_fae [*_ed ];_agd .Params [0]=&_gbdc ;};};};*_bga =append (*_bga ,_agd );};return nil ;};func (_gbag *Table )sortCells (){_d .Slice (_gbag ._bdfef ,func (_fbace ,_fgdae int )bool {_dedca :=_gbag ._bdfef [_fbace ]._cceef ; -_dcec :=_gbag ._bdfef [_fgdae ]._cceef ;if _dedca < _dcec {return true ;};if _dedca > _dcec {return false ;};return _gbag ._bdfef [_fbace ]._baceb < _gbag ._bdfef [_fgdae ]._baceb ;});};func _befgd (_cfcad *_df .File )([]*_fa .PdfPage ,error ){_daea ,_eacbe :=_fa .NewPdfReader (_cfcad ); -if _eacbe !=nil {return nil ,_eacbe ;};_ffgge ,_eacbe :=_daea .GetNumPages ();if _eacbe !=nil {return nil ,_eacbe ;};var _faccd []*_fa .PdfPage ;for _aegf :=0;_aegf < _ffgge ;_aegf ++{_dcdgc ,_fcgca :=_daea .GetPage (_aegf +1);if _fcgca !=nil {return nil ,_fcgca ; -};_faccd =append (_faccd ,_dcdgc );};return _faccd ,nil ;};const (CellVerticalAlignmentTop CellVerticalAlignment =iota ;CellVerticalAlignmentMiddle ;CellVerticalAlignmentBottom ;); +// Positioning represents the positioning type for drawing creator components (relative/absolute). +type Positioning int ; -// SetFillColor sets the fill color of the ellipse. -func (_dadg *Ellipse )SetFillColor (col Color ){_dadg ._cbeb =col }; +// Chart represents a chart drawable. +// It is used to render unichart chart components using a creator instance. +type Chart struct{_ebbf _gg .ChartRenderable ;_fbc Positioning ;_bfe float64 ;_gbbc float64 ;_gcff Margins ;}; -// SetBorderRadius sets the radius of the rectangle corners. -func (_bgecd *Rectangle )SetBorderRadius (topLeft ,topRight ,bottomLeft ,bottomRight float64 ){_bgecd ._efcb =topLeft ;_bgecd ._caab =topRight ;_bgecd ._ebagc =bottomLeft ;_bgecd ._bafe =bottomRight ;};func (_bbea *Creator )setActivePage (_dgde *_fa .PdfPage ){_bbea ._aca =_dgde }; -const (PositionRelative Positioning =iota ;PositionAbsolute ;); +// DrawTemplate renders the template provided through the specified reader, +// using the specified `data` and `options`. +// Creator templates are first executed as text/template *Template instances, +// so the specified `data` is inserted within the template. +// The second phase of processing is actually parsing the template, translating +// it into creator components and rendering them using the provided options. +// Both the `data` and `options` parameters can be nil. +func (_cgd *Creator )DrawTemplate (r _ae .Reader ,data interface{},options *TemplateOptions )error {return _dced (_cgd ,r ,data ,options ,_cgd );}; -// SetWidth sets line width. -func (_eadec *Curve )SetWidth (width float64 ){_eadec ._geeb =width }; +// PageFinalizeFunctionArgs holds the input arguments provided to the page +// finalize callback function which can be set using Creator.PageFinalize. +type PageFinalizeFunctionArgs struct{PageNum int ;PageWidth float64 ;PageHeight float64 ;TOCPages int ;TotalPages int ;}; -// BuyerAddress returns the buyer address used in the invoice template. -func (_dfba *Invoice )BuyerAddress ()*InvoiceAddress {return _dfba ._gcfe };func (_gfeg *StyledParagraph )getMaxLineWidth ()float64 {if _gfeg ._egffa ==nil ||len (_gfeg ._egffa )==0{_gfeg .wrapText ();};var _deeeg float64 ;for _ ,_ecdge :=range _gfeg ._egffa {_acbf :=_gfeg .getTextLineWidth (_ecdge ); -if _acbf > _deeeg {_deeeg =_acbf ;};};return _deeeg ;}; +// Total returns the invoice total description and value cells. +// The returned values can be used to customize the styles of the cells. +func (_eeeb *Invoice )Total ()(*InvoiceCell ,*InvoiceCell ){return _eeeb ._ada [0],_eeeb ._ada [1]}; -// Horizontal returns total horizontal (left + right) margin. -func (_edde *Margins )Horizontal ()float64 {return _edde .Left +_edde .Right }; +// SetCoords sets the upper left corner coordinates of the rectangle. +func (_aadd *Rectangle )SetCoords (x ,y float64 ){_aadd ._cgedd =x ;_aadd ._eeff =y }; -// AddPatternResource adds pattern dictionary inside the resources dictionary. -func (_gaefa *LinearShading )AddPatternResource (block *Block )(_bffad _ea .PdfObjectName ,_afbec error ){_eag :=1;_dafd :=_ea .PdfObjectName ("\u0050"+_a .Itoa (_eag ));for block ._gae .HasPatternByName (_dafd ){_eag ++;_dafd =_ea .PdfObjectName ("\u0050"+_a .Itoa (_eag )); -};if _ccff :=block ._gae .SetPatternByName (_dafd ,_gaefa .ToPdfShadingPattern ().ToPdfObject ());_ccff !=nil {return "",_ccff ;};return _dafd ,nil ;}; +// GeneratePageBlocks implements drawable interface. +func (_gecd *border )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_ebf :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_deg :=_gecd ._agf ;_fcad :=ctx .PageHeight -_gecd ._gea ;if _gecd ._cde !=nil {_geg :=_fc .Rectangle {Opacity :1.0,X :_gecd ._agf ,Y :ctx .PageHeight -_gecd ._gea -_gecd ._aebc ,Height :_gecd ._aebc ,Width :_gecd ._dcf }; +_geg .FillEnabled =true ;_acea :=_dbac (_gecd ._cde );_gff :=_aede (_ebf ,_acea ,_gecd ._cde ,func ()Rectangle {return Rectangle {_cgedd :_geg .X ,_eeff :_geg .Y ,_gfad :_geg .Width ,_fefg :_geg .Height };});if _gff !=nil {return nil ,ctx ,_gff ;};_geg .FillColor =_acea ; +_geg .BorderEnabled =false ;_fcgd ,_ ,_gff :=_geg .Draw ("");if _gff !=nil {return nil ,ctx ,_gff ;};_gff =_ebf .addContentsByString (string (_fcgd ));if _gff !=nil {return nil ,ctx ,_gff ;};};_ddfb :=_gecd ._cdgaa ;_cgc :=_gecd ._gaf ;_dffg :=_gecd ._gcd ; +_febe :=_gecd ._ebb ;_gffd :=_gecd ._cdgaa ;if _gecd ._deccc ==CellBorderStyleDouble {_gffd +=2*_ddfb ;};_eea :=_gecd ._gaf ;if _gecd ._cffe ==CellBorderStyleDouble {_eea +=2*_cgc ;};_edc :=_gecd ._gcd ;if _gecd ._acba ==CellBorderStyleDouble {_edc +=2*_dffg ; +};_cbg :=_gecd ._ebb ;if _gecd ._dabg ==CellBorderStyleDouble {_cbg +=2*_febe ;};_fdbb :=(_gffd -_edc )/2;_fdbf :=(_gffd -_cbg )/2;_cfd :=(_eea -_edc )/2;_abcg :=(_eea -_cbg )/2;if _gecd ._cdgaa !=0{_efb :=_deg ;_ebc :=_fcad ;if _gecd ._deccc ==CellBorderStyleDouble {_ebc -=_ddfb ; +_cacc :=_fc .BasicLine {LineColor :_dbac (_gecd ._feg ),Opacity :1.0,LineWidth :_gecd ._cdgaa ,LineStyle :_gecd .LineStyle ,X1 :_efb -_gffd /2+_fdbb ,Y1 :_ebc +2*_ddfb ,X2 :_efb +_gffd /2-_fdbf +_gecd ._dcf ,Y2 :_ebc +2*_ddfb };_gfa ,_ ,_fcc :=_cacc .Draw (""); +if _fcc !=nil {return nil ,ctx ,_fcc ;};_fcc =_ebf .addContentsByString (string (_gfa ));if _fcc !=nil {return nil ,ctx ,_fcc ;};};_cffad :=_fc .BasicLine {LineWidth :_gecd ._cdgaa ,Opacity :1.0,LineColor :_dbac (_gecd ._feg ),LineStyle :_gecd .LineStyle ,X1 :_efb -_gffd /2+_fdbb +(_edc -_gecd ._gcd ),Y1 :_ebc ,X2 :_efb +_gffd /2-_fdbf +_gecd ._dcf -(_cbg -_gecd ._ebb ),Y2 :_ebc }; +_bggd ,_ ,_gce :=_cffad .Draw ("");if _gce !=nil {return nil ,ctx ,_gce ;};_gce =_ebf .addContentsByString (string (_bggd ));if _gce !=nil {return nil ,ctx ,_gce ;};};if _gecd ._gaf !=0{_fga :=_deg ;_gfae :=_fcad -_gecd ._aebc ;if _gecd ._cffe ==CellBorderStyleDouble {_gfae +=_cgc ; +_faef :=_fc .BasicLine {LineWidth :_gecd ._gaf ,Opacity :1.0,LineColor :_dbac (_gecd ._agg ),LineStyle :_gecd .LineStyle ,X1 :_fga -_eea /2+_cfd ,Y1 :_gfae -2*_cgc ,X2 :_fga +_eea /2-_abcg +_gecd ._dcf ,Y2 :_gfae -2*_cgc };_fcbg ,_ ,_bbb :=_faef .Draw (""); +if _bbb !=nil {return nil ,ctx ,_bbb ;};_bbb =_ebf .addContentsByString (string (_fcbg ));if _bbb !=nil {return nil ,ctx ,_bbb ;};};_ebff :=_fc .BasicLine {LineWidth :_gecd ._gaf ,Opacity :1.0,LineColor :_dbac (_gecd ._agg ),LineStyle :_gecd .LineStyle ,X1 :_fga -_eea /2+_cfd +(_edc -_gecd ._gcd ),Y1 :_gfae ,X2 :_fga +_eea /2-_abcg +_gecd ._dcf -(_cbg -_gecd ._ebb ),Y2 :_gfae }; +_cee ,_ ,_aafa :=_ebff .Draw ("");if _aafa !=nil {return nil ,ctx ,_aafa ;};_aafa =_ebf .addContentsByString (string (_cee ));if _aafa !=nil {return nil ,ctx ,_aafa ;};};if _gecd ._gcd !=0{_acc :=_deg ;_ebab :=_fcad ;if _gecd ._acba ==CellBorderStyleDouble {_acc +=_dffg ; +_daa :=_fc .BasicLine {LineWidth :_gecd ._gcd ,Opacity :1.0,LineColor :_dbac (_gecd ._fcg ),LineStyle :_gecd .LineStyle ,X1 :_acc -2*_dffg ,Y1 :_ebab +_edc /2+_fdbb ,X2 :_acc -2*_dffg ,Y2 :_ebab -_edc /2-_cfd -_gecd ._aebc };_ecb ,_ ,_afc :=_daa .Draw (""); +if _afc !=nil {return nil ,ctx ,_afc ;};_afc =_ebf .addContentsByString (string (_ecb ));if _afc !=nil {return nil ,ctx ,_afc ;};};_gafb :=_fc .BasicLine {LineWidth :_gecd ._gcd ,Opacity :1.0,LineColor :_dbac (_gecd ._fcg ),LineStyle :_gecd .LineStyle ,X1 :_acc ,Y1 :_ebab +_edc /2+_fdbb -(_gffd -_gecd ._cdgaa ),X2 :_acc ,Y2 :_ebab -_edc /2-_cfd -_gecd ._aebc +(_eea -_gecd ._gaf )}; +_gead ,_ ,_eeae :=_gafb .Draw ("");if _eeae !=nil {return nil ,ctx ,_eeae ;};_eeae =_ebf .addContentsByString (string (_gead ));if _eeae !=nil {return nil ,ctx ,_eeae ;};};if _gecd ._ebb !=0{_acee :=_deg +_gecd ._dcf ;_ced :=_fcad ;if _gecd ._dabg ==CellBorderStyleDouble {_acee -=_febe ; +_afe :=_fc .BasicLine {LineWidth :_gecd ._ebb ,Opacity :1.0,LineColor :_dbac (_gecd ._add ),LineStyle :_gecd .LineStyle ,X1 :_acee +2*_febe ,Y1 :_ced +_cbg /2+_fdbf ,X2 :_acee +2*_febe ,Y2 :_ced -_cbg /2-_abcg -_gecd ._aebc };_eabg ,_ ,_fagd :=_afe .Draw (""); +if _fagd !=nil {return nil ,ctx ,_fagd ;};_fagd =_ebf .addContentsByString (string (_eabg ));if _fagd !=nil {return nil ,ctx ,_fagd ;};};_ffaf :=_fc .BasicLine {LineWidth :_gecd ._ebb ,Opacity :1.0,LineColor :_dbac (_gecd ._add ),LineStyle :_gecd .LineStyle ,X1 :_acee ,Y1 :_ced +_cbg /2+_fdbf -(_gffd -_gecd ._cdgaa ),X2 :_acee ,Y2 :_ced -_cbg /2-_abcg -_gecd ._aebc +(_eea -_gecd ._gaf )}; +_cged ,_ ,_daac :=_ffaf .Draw ("");if _daac !=nil {return nil ,ctx ,_daac ;};_daac =_ebf .addContentsByString (string (_cged ));if _daac !=nil {return nil ,ctx ,_daac ;};};return []*Block {_ebf },ctx ,nil ;}; -// GeneratePageBlocks generate the Page blocks. Draws the Image on a block, implementing the Drawable interface. -func (_gaea *Image )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){if _gaea ._eadbf ==nil {if _fefa :=_gaea .makeXObject ();_fefa !=nil {return nil ,ctx ,_fefa ;};};var _dgag []*Block ;_gcbc :=ctx ;_eac :=NewBlock (ctx .PageWidth ,ctx .PageHeight ); -if _gaea ._fdad .IsRelative (){_gaea .applyFitMode (ctx .Width );ctx .X +=_gaea ._gbba .Left ;ctx .Y +=_gaea ._gbba .Top ;ctx .Width -=_gaea ._gbba .Left +_gaea ._gbba .Right ;ctx .Height -=_gaea ._gbba .Top +_gaea ._gbba .Bottom ;if _gaea ._ffab > ctx .Height {_dgag =append (_dgag ,_eac ); -_eac =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_cbfg :=ctx ;_cbfg .Y =ctx .Margins .Top +_gaea ._gbba .Top ;_cbfg .X =ctx .Margins .Left +_gaea ._gbba .Left ;_cbfg .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_gaea ._gbba .Top -_gaea ._gbba .Bottom ; -_cbfg .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_gaea ._gbba .Left -_gaea ._gbba .Right ;ctx =_cbfg ;};}else {ctx .X =_gaea ._fcfa ;ctx .Y =_gaea ._gefa ;};ctx ,_ebcb :=_abgb (_eac ,_gaea ,ctx );if _ebcb !=nil {return nil ,ctx ,_ebcb ; -};_dgag =append (_dgag ,_eac );if _gaea ._fdad .IsAbsolute (){ctx =_gcbc ;}else {ctx .X =_gcbc .X ;ctx .Width =_gcbc .Width ;ctx .Y +=_gaea ._gbba .Bottom ;};return _dgag ,ctx ,nil ;};func (_adfed *StyledParagraph )wrapChunks (_bddb bool )error {if !_adfed ._dgba ||int (_adfed ._fdfbb )<=0{_adfed ._egffa =[][]*TextChunk {_adfed ._cfbcg }; -return nil ;};if _adfed ._ebgbe {_adfed .wrapWordChunks ();};_adfed ._egffa =[][]*TextChunk {};var _acab []*TextChunk ;var _bafb float64 ;_fcfe :=_efe .IsSpace ;if !_bddb {_fcfe =func (rune )bool {return false };};_dafdf :=_dgaf (_adfed ._fdfbb *1000.0,0.000001); -for _ ,_afcea :=range _adfed ._cfbcg {_bdgae :=_afcea .Style ;_bffac :=_afcea ._gbgga ;_dgced :=_afcea .VerticalAlignment ;var (_gcfg []rune ;_fgcbe []float64 ;);_deaea :=_bfed (_afcea .Text );for _ ,_cgged :=range _afcea .Text {if _cgged =='\u000A'{if !_bddb {_gcfg =append (_gcfg ,_cgged ); -};_acab =append (_acab ,&TextChunk {Text :_dc .TrimRightFunc (string (_gcfg ),_fcfe ),Style :_bdgae ,_gbgga :_bdfgc (_bffac ),VerticalAlignment :_dgced });_adfed ._egffa =append (_adfed ._egffa ,_acab );_acab =nil ;_bafb =0;_gcfg =nil ;_fgcbe =nil ;continue ; -};_cbbg :=_cgged ==' ';_cgccd ,_bgcegb :=_bdgae .Font .GetRuneMetrics (_cgged );if !_bgcegb {_eef .Log .Debug ("\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069c\u0073 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0025\u0076\u000a",_cgged ); -return _e .New ("\u0067\u006c\u0079\u0070\u0068\u0020\u0063\u0068\u0061\u0072\u0020m\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006d\u0069\u0073s\u0069\u006e\u0067");};_gfece :=_bdgae .FontSize *_cgccd .Wx *_bdgae .horizontalScale ();_gfba :=_gfece ;if !_cbbg {_gfba =_gfece +_bdgae .CharSpacing *1000.0; -};if _bafb +_gfece > _dafdf {_acgad :=-1;if !_cbbg {for _eccb :=len (_gcfg )-1;_eccb >=0;_eccb --{if _gcfg [_eccb ]==' '{_acgad =_eccb ;break ;};};};if _adfed ._ebgbe {_gfac :=len (_acab );if _gfac > 0{_acab [_gfac -1].Text =_dc .TrimRightFunc (_acab [_gfac -1].Text ,_fcfe ); -_adfed ._egffa =append (_adfed ._egffa ,_acab );_acab =[]*TextChunk {};};_gcfg =append (_gcfg ,_cgged );_fgcbe =append (_fgcbe ,_gfba );if _acgad >=0{_gcfg =_gcfg [_acgad +1:];_fgcbe =_fgcbe [_acgad +1:];};_bafb =0;for _ ,_beea :=range _fgcbe {_bafb +=_beea ; -};if _bafb > _dafdf {_feac :=string (_gcfg [:len (_gcfg )-1]);_feac =_ecdag (_feac ,_deaea );if !_bddb &&_cbbg {_feac +="\u0020";};_acab =append (_acab ,&TextChunk {Text :_dc .TrimRightFunc (_feac ,_fcfe ),Style :_bdgae ,_gbgga :_bdfgc (_bffac ),VerticalAlignment :_dgced }); -_adfed ._egffa =append (_adfed ._egffa ,_acab );_acab =[]*TextChunk {};_gcfg =[]rune {_cgged };_fgcbe =[]float64 {_gfba };_bafb =_gfba ;};continue ;};_defdcg :=string (_gcfg );if _acgad >=0{_defdcg =string (_gcfg [0:_acgad +1]);_gcfg =_gcfg [_acgad +1:]; -_gcfg =append (_gcfg ,_cgged );_fgcbe =_fgcbe [_acgad +1:];_fgcbe =append (_fgcbe ,_gfba );_bafb =0;for _ ,_aegbd :=range _fgcbe {_bafb +=_aegbd ;};}else {if _cbbg {_bafb =0;_gcfg =[]rune {};_fgcbe =[]float64 {};}else {_bafb =_gfba ;_gcfg =[]rune {_cgged }; -_fgcbe =[]float64 {_gfba };};};_defdcg =_ecdag (_defdcg ,_deaea );if !_bddb &&_cbbg {_defdcg +="\u0020";};_acab =append (_acab ,&TextChunk {Text :_dc .TrimRightFunc (_defdcg ,_fcfe ),Style :_bdgae ,_gbgga :_bdfgc (_bffac ),VerticalAlignment :_dgced }); -_adfed ._egffa =append (_adfed ._egffa ,_acab );_acab =[]*TextChunk {};}else {_bafb +=_gfba ;_gcfg =append (_gcfg ,_cgged );_fgcbe =append (_fgcbe ,_gfba );};};if len (_gcfg )> 0{_cceeb :=_ecdag (string (_gcfg ),_deaea );_acab =append (_acab ,&TextChunk {Text :_cceeb ,Style :_bdgae ,_gbgga :_bdfgc (_bffac ),VerticalAlignment :_dgced }); -};};if len (_acab )> 0{_adfed ._egffa =append (_adfed ._egffa ,_acab );};return nil ;};func (_gbfgb *templateProcessor )parseCellAlignmentAttr (_bgbed ,_cabde string )CellHorizontalAlignment {_eef .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020c\u0065\u006c\u006c\u0020\u0061\u006c\u0069g\u006e\u006d\u0065\u006e\u0074\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028`\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_bgbed ,_cabde ); -_bfcca :=map[string ]CellHorizontalAlignment {"\u006c\u0065\u0066\u0074":CellHorizontalAlignmentLeft ,"\u0063\u0065\u006e\u0074\u0065\u0072":CellHorizontalAlignmentCenter ,"\u0072\u0069\u0067h\u0074":CellHorizontalAlignmentRight }[_cabde ];return _bfcca ; +// GeneratePageBlocks draws the polygon on a new block representing the page. +// Implements the Drawable interface. +func (_gcfd *Polygon )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_bbda :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_bcbed ,_aeea :=_bbda .setOpacity (_gcfd ._befea ,_gcfd ._dffbb );if _aeea !=nil {return nil ,ctx ,_aeea ;};_faefd :=_gcfd ._gbda ; +_faefd .FillEnabled =_faefd .FillColor !=nil ;_faefd .BorderEnabled =_faefd .BorderColor !=nil &&_faefd .BorderWidth > 0;_bdaf :=_faefd .Points ;_acdbe :=_ggc .PdfRectangle {};_bcedc :=false ;for _febcc :=range _bdaf {for _gdfg :=range _bdaf [_febcc ]{_dbec :=&_bdaf [_febcc ][_gdfg ]; +_dbec .Y =ctx .PageHeight -_dbec .Y ;if !_bcedc {_acdbe .Llx =_dbec .X ;_acdbe .Lly =_dbec .Y ;_acdbe .Urx =_dbec .X ;_acdbe .Ury =_dbec .Y ;_bcedc =true ;}else {_acdbe .Llx =_b .Min (_acdbe .Llx ,_dbec .X );_acdbe .Lly =_b .Min (_acdbe .Lly ,_dbec .Y ); +_acdbe .Urx =_b .Max (_acdbe .Urx ,_dbec .X );_acdbe .Ury =_b .Max (_acdbe .Ury ,_dbec .Y );};};};if _faefd .FillEnabled {_dbdd :=_aede (_bbda ,_gcfd ._gbda .FillColor ,_gcfd ._ddcb ,func ()Rectangle {return Rectangle {_cgedd :_acdbe .Llx ,_eeff :_acdbe .Lly ,_gfad :_acdbe .Width (),_fefg :_acdbe .Height ()}; +});if _dbdd !=nil {return nil ,ctx ,_dbdd ;};};_gacd ,_ ,_aeea :=_faefd .Draw (_bcbed );if _aeea !=nil {return nil ,ctx ,_aeea ;};if _aeea =_bbda .addContentsByString (string (_gacd ));_aeea !=nil {return nil ,ctx ,_aeea ;};return []*Block {_bbda },ctx ,nil ; }; -// SetPos sets the absolute position. Changes object positioning to absolute. -func (_ccce *Image )SetPos (x ,y float64 ){_ccce ._fdad =PositionAbsolute ;_ccce ._fcfa =x ;_ccce ._gefa =y ;};const (DefaultHorizontalScaling =100;); - -// FillOpacity returns the fill opacity of the ellipse (0-1). -func (_cgag *Ellipse )FillOpacity ()float64 {return _cgag ._facc }; - -// SetForms adds an Acroform to a PDF file. Sets the specified form for writing. -func (_fcg *Creator )SetForms (form *_fa .PdfAcroForm )error {_fcg ._adea =form ;return nil }; - -// Padding returns the padding of the component. -func (_dbbg *Division )Padding ()(_cggcad ,_gfga ,_bgdg ,_efggc float64 ){return _dbbg ._dgfg .Left ,_dbbg ._dgfg .Right ,_dbbg ._dgfg .Top ,_dbbg ._dgfg .Bottom ;}; - -// NewLinearGradientColor creates a linear gradient color that could act as a color in other components. -func (_acce *Creator )NewLinearGradientColor (colorPoints []*ColorPoint )*LinearShading {return _cfcbe (colorPoints );};const (TextOverflowVisible TextOverflow =iota ;TextOverflowHidden ;); - -// SetBorderColor sets the border color for the path. -func (_gcac *FilledCurve )SetBorderColor (color Color ){_gcac ._baed =color }; - // SetPdfWriterAccessFunc sets a PdfWriter access function/hook. // Exposes the PdfWriter just prior to writing the PDF. Can be used to encrypt the output PDF, etc. // @@ -747,431 +702,379 @@ func (_gcac *FilledCurve )SetBorderColor (color Color ){_gcac ._baed =color }; // err := w.Encrypt(userPass, ownerPass, nil) // return err // }) -func (_bcfb *Creator )SetPdfWriterAccessFunc (pdfWriterAccessFunc func (_ebde *_fa .PdfWriter )error ){_bcfb ._gbgd =pdfWriterAccessFunc ;}; +func (_fbdc *Creator )SetPdfWriterAccessFunc (pdfWriterAccessFunc func (_effgd *_ggc .PdfWriter )error ){_fbdc ._bggc =pdfWriterAccessFunc ;}; -// MoveTo moves the drawing context to absolute coordinates (x, y). -func (_geaa *Creator )MoveTo (x ,y float64 ){_geaa ._gbb .X =x ;_geaa ._gbb .Y =y }; +// FitMode returns the fit mode of the rectangle. +func (_geeg *Rectangle )FitMode ()FitMode {return _geeg ._gaef }; -// SetBackgroundColor set background color of the shading area. -// -// By default the background color is set to white. -func (_dgecg *shading )SetBackgroundColor (backgroundColor Color ){_dgecg ._cfcbc =backgroundColor }; +// CellHorizontalAlignment defines the table cell's horizontal alignment. +type CellHorizontalAlignment int ;func (_fdgb *pageTransformations )applyFlip (_cgce *_ggc .PdfPage )error {_ebg ,_dbad :=_fdgb ._gfag ,_fdgb ._fcaa ;if !_ebg &&!_dbad {return nil ;};if _cgce ==nil {return _fa .New ("\u006e\u006f\u0020\u0070\u0061\u0067\u0065\u0020\u0061c\u0074\u0069\u0076\u0065"); +};_dfae ,_gbad :=_cgce .GetMediaBox ();if _gbad !=nil {return _gbad ;};_ecad ,_cdfc :=_dfae .Width (),_dfae .Height ();_cfgf ,_gbad :=_cgce .GetRotate ();if _gbad !=nil {_ca .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_gbad .Error ()); +};if _dfb :=_cfgf %360!=0&&_cfgf %90==0;_dfb {if _decf :=(360+_cfgf %360)%360;_decf ==90||_decf ==270{_ebg ,_dbad =_dbad ,_ebg ;};};_bdf ,_bda :=1.0,0.0;if _ebg {_bdf ,_bda =-1.0,-_ecad ;};_cbgd ,_caga :=1.0,0.0;if _dbad {_cbgd ,_caga =-1.0,-_cdfc ;};_fdgbd :=_bdb .NewContentCreator ().Scale (_bdf ,_cbgd ).Translate (_bda ,_caga ); +_aabb ,_gbad :=_fe .MakeStream (_fdgbd .Bytes (),_fe .NewFlateEncoder ());if _gbad !=nil {return _gbad ;};_dad :=_fe .MakeArray (_aabb );_dad .Append (_cgce .GetContentStreamObjs ()...);_cgce .Contents =_dad ;return nil ;}; -// Finalize renders all blocks to the creator pages. In addition, it takes care -// of adding headers and footers, as well as generating the front page, -// table of contents and outlines. -// Finalize is automatically called before writing the document out. Calling the -// method manually can be useful when adding external pages to the creator, -// using the AddPage method, as it renders all creator blocks to the added -// pages, without having to write the document out. -// NOTE: TOC and outlines are generated only if the AddTOC and AddOutlines -// fields of the creator are set to true (enabled by default). Furthermore, TOCs -// and outlines without content are skipped. TOC and outline content is -// added automatically when using the chapter component. TOCs and outlines can -// also be set externally, using the SetTOC and SetOutlineTree methods. -// Finalize should only be called once, after all draw calls have taken place, -// as it will return immediately if the creator instance has been finalized. -func (_aae *Creator )Finalize ()error {if _aae ._beb {return nil ;};_fffc :=len (_aae ._ccgg );_dagd :=0;if _aae ._fcaa !=nil {_edded :=*_aae ;_aae ._ccgg =nil ;_aae ._aca =nil ;_aae .initContext ();_dcb :=FrontpageFunctionArgs {PageNum :1,TotalPages :_fffc }; -_aae ._fcaa (_dcb );_dagd +=len (_aae ._ccgg );_aae ._ccgg =_edded ._ccgg ;_aae ._aca =_edded ._aca ;};if _aae .AddTOC {_aae .initContext ();_aae ._gbb .Page =_dagd +1;if _aae .CustomTOC &&_aae ._eccg !=nil {_fcgd :=*_aae ;_aae ._ccgg =nil ;_aae ._aca =nil ; -if _bgd :=_aae ._eccg (_aae ._bbgg );_bgd !=nil {return _bgd ;};_dagd +=len (_aae ._ccgg );_aae ._ccgg =_fcgd ._ccgg ;_aae ._aca =_fcgd ._aca ;}else {if _aae ._eccg !=nil {if _cacf :=_aae ._eccg (_aae ._bbgg );_cacf !=nil {return _cacf ;};};_gaa ,_ ,_fcd :=_aae ._bbgg .GeneratePageBlocks (_aae ._gbb ); -if _fcd !=nil {_eef .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074\u0065\u0020\u0062\u006c\u006f\u0063\u006b\u0073: \u0025\u0076",_fcd );return _fcd ;};_dagd +=len (_gaa );};_dedc :=_aae ._bbgg .Lines (); -for _ ,_gdfd :=range _dedc {_fbd ,_cdaec :=_a .Atoi (_gdfd .Page .Text );if _cdaec !=nil {continue ;};_gdfd .Page .Text =_a .Itoa (_fbd +_dagd );_gdfd ._gdda +=int64 (_dagd );};};_gabc :=false ;var _adgf []*_fa .PdfPage ;if _aae ._fcaa !=nil {_dfc :=*_aae ; -_aae ._ccgg =nil ;_aae ._aca =nil ;_edbg :=FrontpageFunctionArgs {PageNum :1,TotalPages :_fffc };_aae ._fcaa (_edbg );_fffc +=len (_aae ._ccgg );_adgf =_aae ._ccgg ;_aae ._ccgg =append (_aae ._ccgg ,_dfc ._ccgg ...);_aae ._aca =_dfc ._aca ;_gabc =true ; -};var _gfa []*_fa .PdfPage ;if _aae .AddTOC {_aae .initContext ();if _aae .CustomTOC &&_aae ._eccg !=nil {_accb :=*_aae ;_aae ._ccgg =nil ;_aae ._aca =nil ;if _eeged :=_aae ._eccg (_aae ._bbgg );_eeged !=nil {_eef .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074i\u006e\u0067\u0020\u0054\u004f\u0043\u003a\u0020\u0025\u0076",_eeged ); -return _eeged ;};_gfa =_aae ._ccgg ;_fffc +=len (_gfa );_aae ._ccgg =_accb ._ccgg ;_aae ._aca =_accb ._aca ;}else {if _aae ._eccg !=nil {if _dgea :=_aae ._eccg (_aae ._bbgg );_dgea !=nil {_eef .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074i\u006e\u0067\u0020\u0054\u004f\u0043\u003a\u0020\u0025\u0076",_dgea ); -return _dgea ;};};_fcb ,_ ,_ :=_aae ._bbgg .GeneratePageBlocks (_aae ._gbb );for _ ,_cfac :=range _fcb {_cfac .SetPos (0,0);_fffc ++;_fad :=_aae .newPage ();_gfa =append (_gfa ,_fad );_aae .setActivePage (_fad );_aae .Draw (_cfac );};};if _gabc {_cbb :=_adgf ; -_eceb :=_aae ._ccgg [len (_adgf ):];_aae ._ccgg =append ([]*_fa .PdfPage {},_cbb ...);_aae ._ccgg =append (_aae ._ccgg ,_gfa ...);_aae ._ccgg =append (_aae ._ccgg ,_eceb ...);}else {_aae ._ccgg =append (_gfa ,_aae ._ccgg ...);};};if _aae ._ffgcf !=nil &&_aae .AddOutlines {var _fbfe func (_cddc *_fa .OutlineItem ); -_fbfe =func (_facf *_fa .OutlineItem ){_facf .Dest .Page +=int64 (_dagd );if _fdfb :=int (_facf .Dest .Page );_fdfb >=0&&_fdfb < len (_aae ._ccgg ){_facf .Dest .PageObj =_aae ._ccgg [_fdfb ].GetPageAsIndirectObject ();}else {_eef .Log .Debug ("\u0057\u0041R\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u0064",_fdfb ); -};_facf .Dest .Y =_aae ._bbdg -_facf .Dest .Y ;_befd :=_facf .Items ();for _ ,_aec :=range _befd {_fbfe (_aec );};};_gdba :=_aae ._ffgcf .Items ();for _ ,_aecd :=range _gdba {_fbfe (_aecd );};if _aae .AddTOC {var _cedg int ;if _gabc {_cedg =len (_adgf ); -};_efggg :=_fa .NewOutlineDest (int64 (_cedg ),0,_aae ._bbdg );if _cedg >=0&&_cedg < len (_aae ._ccgg ){_efggg .PageObj =_aae ._ccgg [_cedg ].GetPageAsIndirectObject ();}else {_eef .Log .Debug ("\u0057\u0041R\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u0064",_cedg ); -};_aae ._ffgcf .Insert (0,_fa .NewOutlineItem ("\u0054\u0061\u0062\u006c\u0065\u0020\u006f\u0066\u0020\u0043\u006f\u006et\u0065\u006e\u0074\u0073",_efggg ));};};for _cef ,_edg :=range _aae ._ccgg {_aae .setActivePage (_edg );if _aae ._geab !=nil {_edf ,_aecde ,_gaf :=_edg .Size (); -if _gaf !=nil {return _gaf ;};_gdce :=PageFinalizeFunctionArgs {PageNum :_cef +1,PageWidth :_edf ,PageHeight :_aecde ,TOCPages :len (_gfa ),TotalPages :_fffc };if _gdgb :=_aae ._geab (_gdce );_gdgb !=nil {_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0070\u0061\u0067\u0065\u0020\u0066\u0069\u006e\u0061\u006c\u0069\u007a\u0065 \u0063\u0061\u006c\u006c\u0062\u0061\u0063k\u003a\u0020\u0025\u0076",_gdgb ); -return _gdgb ;};};if _aae ._feef !=nil {_bda :=NewBlock (_aae ._ggfe ,_aae ._bcbf .Top );_gcbb :=HeaderFunctionArgs {PageNum :_cef +1,TotalPages :_fffc };_aae ._feef (_bda ,_gcbb );_bda .SetPos (0,0);if _egeb :=_aae .Draw (_bda );_egeb !=nil {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0064\u0072\u0061\u0077\u0069n\u0067 \u0068e\u0061\u0064\u0065\u0072\u003a\u0020\u0025v",_egeb ); -return _egeb ;};};if _aae ._ddb !=nil {_bbgf :=NewBlock (_aae ._ggfe ,_aae ._bcbf .Bottom );_gfcg :=FooterFunctionArgs {PageNum :_cef +1,TotalPages :_fffc };_aae ._ddb (_bbgf ,_gfcg );_bbgf .SetPos (0,_aae ._bbdg -_bbgf ._dec );if _dga :=_aae .Draw (_bbgf ); -_dga !=nil {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0064\u0072\u0061\u0077\u0069n\u0067 \u0066o\u006f\u0074\u0065\u0072\u003a\u0020\u0025v",_dga );return _dga ;};};_cebd ,_eaaa :=_aae ._fgec [_edg ];if _fdbb ,_ebeb :=_aae ._ecd [_edg ];_ebeb {if _eaaa {_cebd .transformBlock (_fdbb ); -};if _ggbg :=_fdbb .drawToPage (_edg );_ggbg !=nil {_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0064\u0072\u0061\u0077\u0069\u006e\u0067\u0020\u0070\u0061\u0067\u0065\u0020%\u0064\u0020\u0062\u006c\u006f\u0063\u006bs\u003a\u0020\u0025\u0076",_cef +1,_ggbg ); -return _ggbg ;};};if _eaaa {if _edgf :=_cebd .transformPage (_edg );_edgf !=nil {_eef .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0074\u0072\u0061\u006e\u0073f\u006f\u0072\u006d\u0020\u0070\u0061\u0067\u0065\u003a\u0020%\u0076",_edgf ); -return _edgf ;};};};_aae ._beb =true ;return nil ;}; +// SetOpacity sets the opacity of the line (0-1). +func (_fccf *Line )SetOpacity (opacity float64 ){_fccf ._ggbab =opacity }; -// ScaleToHeight sets the graphic svg scaling factor with the given height. -func (_bcec *GraphicSVG )ScaleToHeight (h float64 ){_gcab :=_bcec ._baea .Width /_bcec ._baea .Height ;_bcec ._baea .Height =h ;_bcec ._baea .Width =h *_gcab ;_bcec ._baea .SetScaling (_gcab ,_gcab );}; +// FitMode returns the fit mode of the ellipse. +func (_fecc *Ellipse )FitMode ()FitMode {return _fecc ._gbfg }; -// DashPattern returns the dash pattern of the line. -func (_ecca *Line )DashPattern ()(_ageg []int64 ,_bfbd int64 ){return _ecca ._efgeg ,_ecca ._gfee };func (_bafab *templateProcessor )parseInt64Array (_cagd ,_gcge string )[]int64 {_eef .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020\u0069\u006e\u0074\u0036\u0034\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060%\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_cagd ,_gcge ); -_dcea :=_dc .Fields (_gcge );_bcbff :=make ([]int64 ,0,len (_dcea ));for _ ,_eggb :=range _dcea {_cdgef ,_ :=_a .ParseInt (_eggb ,10,64);_bcbff =append (_bcbff ,_cdgef );};return _bcbff ;}; +// SetMargins sets the margins of the component. The margins are applied +// around the division. +func (_afa *Division )SetMargins (left ,right ,top ,bottom float64 ){_afa ._debb .Left =left ;_afa ._debb .Right =right ;_afa ._debb .Top =top ;_afa ._debb .Bottom =bottom ;}; -// SetFillColor sets the fill color. -func (_gddd *Polygon )SetFillColor (color Color ){_gddd ._beba =color ;_gddd ._cgecf .FillColor =_gdfa (color );};func _ddbgb (_bfdc *templateProcessor ,_ebdee *templateNode )(interface{},error ){return _bfdc .parseTableCell (_ebdee );}; +// Padding returns the padding of the component. +func (_bbdc *Division )Padding ()(_eedb ,_gfgb ,_fabb ,_gceda float64 ){return _bbdc ._agda .Left ,_bbdc ._agda .Right ,_bbdc ._agda .Top ,_bbdc ._agda .Bottom ;};func (_aa *Block )addContents (_bgbg *_bdb .ContentStreamOperations ){_aa ._cad .WrapIfNeeded (); +_bgbg .WrapIfNeeded ();*_aa ._cad =append (*_aa ._cad ,*_bgbg ...);}; -// SetBorderOpacity sets the border opacity. -func (_gbfbca *PolyBezierCurve )SetBorderOpacity (opacity float64 ){_gbfbca ._dagfe =opacity }; +// SetFontSize sets the font size in document units (points). +func (_dabf *Paragraph )SetFontSize (fontSize float64 ){_dabf ._fcbfa =fontSize }; -// ToPdfShadingPattern generates a new model.PdfShadingPatternType3 object. -func (_dcdec *RadialShading )ToPdfShadingPattern ()*_fa .PdfShadingPatternType3 {_abfbd ,_dbcg ,_aefa :=_dcdec ._gcbg ._cfcbc .ToRGB ();_eeca :=_dcdec .shadingModel ();_eeca .PdfShading .Background =_ea .MakeArrayFromFloats ([]float64 {_abfbd ,_dbcg ,_aefa }); -_feee :=_fa .NewPdfShadingPatternType3 ();_feee .Shading =_eeca ;return _feee ;}; +// SetIndent sets the left offset of the list when nested into another list. +func (_egbb *List )SetIndent (indent float64 ){_egbb ._egab =indent ;_egbb ._ceeg =false }; -// Width returns the Block's width. -func (_fb *Block )Width ()float64 {return _fb ._bc }; +// AddSection adds a new content section at the end of the invoice. +func (_efag *Invoice )AddSection (title ,content string ){_efag ._agdc =append (_efag ._agdc ,[2]string {title ,content });}; -// Context returns the current drawing context. -func (_fdcfg *Creator )Context ()DrawContext {return _fdcfg ._gbb }; +// GeneratePageBlocks generates the page blocks. Multiple blocks are generated +// if the contents wrap over multiple pages. Implements the Drawable interface. +func (_bfedd *StyledParagraph )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_ccgg :=ctx ;var _dcffb []*Block ;_fgac :=NewBlock (ctx .PageWidth ,ctx .PageHeight );if _bfedd ._gbga .IsRelative (){ctx .X +=_bfedd ._fbgbc .Left ;ctx .Y +=_bfedd ._fbgbc .Top ; +ctx .Width -=_bfedd ._fbgbc .Left +_bfedd ._fbgbc .Right ;ctx .Height -=_bfedd ._fbgbc .Top ;_bfedd .SetWidth (ctx .Width );}else {if int (_bfedd ._gcadd )<=0{_bfedd .SetWidth (_bfedd .getTextWidth ()/1000.0);};ctx .X =_bfedd ._gcfda ;ctx .Y =_bfedd ._cfge ; +};if _bfedd ._dbdfe !=nil {_bfedd ._dbdfe (_bfedd ,ctx );};if _edeb :=_bfedd .wrapText ();_edeb !=nil {return nil ,ctx ,_edeb ;};_fcgbg :=_bfedd ._aabba ;for {_bdgdb ,_agac ,_efdfc :=_cfdeg (_fgac ,_bfedd ,_fcgbg ,ctx );if _efdfc !=nil {_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_efdfc ); +return nil ,ctx ,_efdfc ;};ctx =_bdgdb ;_dcffb =append (_dcffb ,_fgac );if _fcgbg =_agac ;len (_agac )==0{break ;};_fgac =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_bdgdb =ctx ;_bdgdb .Y =ctx .Margins .Top ;_bdgdb .X =ctx .Margins .Left +_bfedd ._fbgbc .Left ; +_bdgdb .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom ;_bdgdb .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_bfedd ._fbgbc .Left -_bfedd ._fbgbc .Right ;ctx =_bdgdb ;};if _bfedd ._gbga .IsRelative (){ctx .Y +=_bfedd ._fbgbc .Bottom ; +ctx .Height -=_bfedd ._fbgbc .Bottom ;if !ctx .Inline {ctx .X =_ccgg .X ;ctx .Width =_ccgg .Width ;};return _dcffb ,ctx ,nil ;};return _dcffb ,_ccgg ,nil ;}; -// SetWidth sets the width of the ellipse. -func (_gcaf *Ellipse )SetWidth (width float64 ){_gcaf ._bgea =width }; +// SetTextAlignment sets the horizontal alignment of the text within the space provided. +func (_cdcc *Paragraph )SetTextAlignment (align TextAlignment ){_cdcc ._abd =align };func (_dbeed *Paragraph )getTextLineWidth (_eccg string )float64 {var _begf float64 ;for _ ,_bgbfb :=range _eccg {if _bgbfb =='\u000A'{continue ;};_fabec ,_egdf :=_dbeed ._fggb .GetRuneMetrics (_bgbfb ); +if !_egdf {_ca .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0052u\u006e\u0065\u0020\u0063\u0068a\u0072\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0028\u0072\u0075\u006e\u0065\u0020\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0029",_bgbfb ,_bgbfb ); +return -1;};_begf +=_dbeed ._fcbfa *_fabec .Wx ;};return _begf ;}; -// NewBlock creates a new Block with specified width and height. -func NewBlock (width float64 ,height float64 )*Block {_bg :=&Block {};_bg ._ffc =&_bd .ContentStreamOperations {};_bg ._gae =_fa .NewPdfPageResources ();_bg ._bc =width ;_bg ._dec =height ;return _bg ;}; +// GeneratePageBlocks draws the rectangle on a new block representing the page. Implements the Drawable interface. +func (_agbfd *Rectangle )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_gcgf []*Block ;_adfbd =NewBlock (ctx .PageWidth ,ctx .PageHeight );_daae =ctx ;_fedgc =_agbfd ._decec /2;);_cbee :=_agbfd ._bbgac .IsRelative ();if _cbee {_agbfd .applyFitMode (ctx .Width ); +ctx .X +=_agbfd ._ebfce .Left +_fedgc ;ctx .Y +=_agbfd ._ebfce .Top +_fedgc ;ctx .Width -=_agbfd ._ebfce .Left +_agbfd ._ebfce .Right ;ctx .Height -=_agbfd ._ebfce .Top +_agbfd ._ebfce .Bottom ;if _agbfd ._fefg > ctx .Height {_gcgf =append (_gcgf ,_adfbd ); +_adfbd =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_dgddb :=ctx ;_dgddb .Y =ctx .Margins .Top +_agbfd ._ebfce .Top +_fedgc ;_dgddb .X =ctx .Margins .Left +_agbfd ._ebfce .Left +_fedgc ;_dgddb .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_agbfd ._ebfce .Top -_agbfd ._ebfce .Bottom ; +_dgddb .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_agbfd ._ebfce .Left -_agbfd ._ebfce .Right ;ctx =_dgddb ;};}else {ctx .X =_agbfd ._cgedd ;ctx .Y =_agbfd ._eeff ;};_gaca :=_fc .Rectangle {X :ctx .X ,Y :ctx .PageHeight -ctx .Y -_agbfd ._fefg ,Width :_agbfd ._gfad ,Height :_agbfd ._fefg ,BorderRadiusTopLeft :_agbfd ._gagef ,BorderRadiusTopRight :_agbfd ._efaga ,BorderRadiusBottomLeft :_agbfd ._fbcea ,BorderRadiusBottomRight :_agbfd ._fdcc ,Opacity :1.0}; +if _agbfd ._bgca !=nil {_gaca .FillEnabled =true ;_ecbc :=_dbac (_agbfd ._bgca );_gfeb :=_aede (_adfbd ,_ecbc ,_agbfd ._bgca ,func ()Rectangle {return Rectangle {_cgedd :_gaca .X ,_eeff :_gaca .Y ,_gfad :_gaca .Width ,_fefg :_gaca .Height };});if _gfeb !=nil {return nil ,ctx ,_gfeb ; +};_gaca .FillColor =_ecbc ;};if _agbfd ._ecce !=nil &&_agbfd ._decec > 0{_gaca .BorderEnabled =true ;_gaca .BorderColor =_dbac (_agbfd ._ecce );_gaca .BorderWidth =_agbfd ._decec ;};_ggcb ,_bdcfag :=_adfbd .setOpacity (_agbfd ._geee ,_agbfd ._ffgd );if _bdcfag !=nil {return nil ,ctx ,_bdcfag ; +};_ceeac ,_ ,_bdcfag :=_gaca .Draw (_ggcb );if _bdcfag !=nil {return nil ,ctx ,_bdcfag ;};if _bdcfag =_adfbd .addContentsByString (string (_ceeac ));_bdcfag !=nil {return nil ,ctx ,_bdcfag ;};if _cbee {ctx .X =_daae .X ;ctx .Width =_daae .Width ;_aedf :=_agbfd ._fefg +_fedgc ; +ctx .Y +=_aedf +_agbfd ._ebfce .Bottom ;ctx .Height -=_aedf ;}else {ctx =_daae ;};_gcgf =append (_gcgf ,_adfbd );return _gcgf ,ctx ,nil ;};func _ddbg (_gcee _c .Image )(*Image ,error ){_dddb ,_acec :=_ggc .ImageHandling .NewImageFromGoImage (_gcee );if _acec !=nil {return nil ,_acec ; +};return _ggba (_dddb );}; -// SetBorderColor sets the border color. -func (_bdbg *PolyBezierCurve )SetBorderColor (color Color ){_bdbg ._cadfg .BorderColor =_gdfa (color )}; +// SetDueDate sets the due date of the invoice. +func (_bcebg *Invoice )SetDueDate (dueDate string )(*InvoiceCell ,*InvoiceCell ){_bcebg ._fdfc [1].Value =dueDate ;return _bcebg ._fdfc [0],_bcebg ._fdfc [1];}; -// EnablePageWrap controls whether the table is wrapped across pages. -// If disabled, the table is moved in its entirety on a new page, if it -// does not fit in the available height. By default, page wrapping is enabled. -// If the height of the table is larger than an entire page, wrapping is -// enabled automatically in order to avoid unwanted behavior. -func (_cfbaf *Table )EnablePageWrap (enable bool ){_cfbaf ._cbca =enable }; +// Margins returns the margins of the component. +func (_bcdf *Division )Margins ()(_fgag ,_geef ,_bbgc ,_caggb float64 ){return _bcdf ._debb .Left ,_bcdf ._debb .Right ,_bcdf ._debb .Top ,_bcdf ._debb .Bottom ;}; -// SetNotes sets the notes section of the invoice. -func (_dggae *Invoice )SetNotes (title ,content string ){_dggae ._ebcg =[2]string {title ,content }}; +// SetContent sets the cell's content. The content is a VectorDrawable, i.e. +// a Drawable with a known height and width. +// Currently supported VectorDrawables: +// - *Paragraph +// - *StyledParagraph +// - *Image +// - *Chart +// - *Table +// - *Division +// - *List +// - *Rectangle +// - *Ellipse +// - *Line +func (_bcadf *TableCell )SetContent (vd VectorDrawable )error {switch _fcfa :=vd .(type ){case *Paragraph :if _fcfa ._ggad {_fcfa ._bebg =true ;};_bcadf ._efbbe =vd ;case *StyledParagraph :if _fcfa ._facb {_fcfa ._gfbb =true ;};_bcadf ._efbbe =vd ;case *Image ,*Chart ,*Table ,*Division ,*List ,*Rectangle ,*Ellipse ,*Line :_bcadf ._efbbe =vd ; +default:_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0063e\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0074\u0079p\u0065\u0020\u0025\u0054",vd ); +return _fe .ErrTypeError ;};return nil ;}; -// CurvePolygon represents a curve polygon shape. -// Implements the Drawable interface and can be drawn on PDF using the Creator. -type CurvePolygon struct{_dbag *_ce .CurvePolygon ;_bcfd float64 ;_eggf float64 ;_ddbg Color ;};func _gdga (_fefb VectorDrawable ,_ecebe float64 )float64 {switch _ccgb :=_fefb .(type ){case *Paragraph :if _ccgb ._fade {_ccgb .SetWidth (_ecebe -_ccgb ._fbba .Left -_ccgb ._fbba .Right ); -};return _ccgb .Height ()+_ccgb ._fbba .Top +_ccgb ._fbba .Bottom ;case *StyledParagraph :if _ccgb ._dgba {_ccgb .SetWidth (_ecebe -_ccgb ._faaba .Left -_ccgb ._faaba .Right );};return _ccgb .Height ()+_ccgb ._faaba .Top +_ccgb ._faaba .Bottom ;case *Image :_ccgb .applyFitMode (_ecebe ); -return _ccgb .Height ()+_ccgb ._gbba .Top +_ccgb ._gbba .Bottom ;case *Rectangle :_ccgb .applyFitMode (_ecebe );return _ccgb .Height ()+_ccgb ._bacfa .Top +_ccgb ._bacfa .Bottom +_ccgb ._aebcg ;case *Ellipse :_ccgb .applyFitMode (_ecebe );return _ccgb .Height ()+_ccgb ._dfac .Top +_ccgb ._dfac .Bottom ; -case *Division :return _ccgb .ctxHeight (_ecebe )+_ccgb ._cdef .Top +_ccgb ._cdef .Bottom +_ccgb ._dgfg .Top +_ccgb ._dgfg .Bottom ;case *Table :_ccgb .updateRowHeights (_ecebe -_ccgb ._fefca .Left -_ccgb ._fefca .Right );return _ccgb .Height ()+_ccgb ._fefca .Top +_ccgb ._fefca .Bottom ; -case *List :return _ccgb .ctxHeight (_ecebe )+_ccgb ._eead .Top +_ccgb ._eead .Bottom ;case marginDrawable :_ ,_ ,_fcba ,_cfbgc :=_ccgb .GetMargins ();return _ccgb .Height ()+_fcba +_cfbgc ;default:return _ccgb .Height ();};}; +// Table allows organizing content in an rows X columns matrix, which can spawn across multiple pages. +type Table struct{_fgbfga int ;_aeaa int ;_ggfb int ;_abbbf []float64 ;_begb []float64 ;_ddfaf float64 ;_cacca []*TableCell ;_degfe []int ;_bbdf Positioning ;_fedd ,_degda float64 ;_gfbcc Margins ;_dgfg bool ;_aggfe int ;_fecf int ;_eebgf bool ;_gbgc bool ; +}; -// TextChunk represents a chunk of text along with a particular style. -type TextChunk struct{ +// Scale block by specified factors in the x and y directions. +func (_cff *Block )Scale (sx ,sy float64 ){_cddd :=_bdb .NewContentCreator ().Scale (sx ,sy ).Operations ();*_cff ._cad =append (*_cddd ,*_cff ._cad ...);_cff ._cad .WrapIfNeeded ();_cff ._ecd *=sx ;_cff ._gfe *=sy ;}; -// The text that is being rendered in the PDF. -Text string ; +// SetBorderOpacity sets the border opacity of the rectangle. +func (_gaea *Rectangle )SetBorderOpacity (opacity float64 ){_gaea ._ffgd =opacity }; -// The style of the text being rendered. -Style TextStyle ;_gbgga *_fa .PdfAnnotation ;_gdffd bool ; +// MoveX moves the drawing context to absolute position x. +func (_dgdd *Creator )MoveX (x float64 ){_dgdd ._eacd .X =x }; -// The vertical alignment of the text chunk. -VerticalAlignment TextVerticalAlignment ;}; +// SetBackgroundColor set background color of the shading area. +// +// By default the background color is set to white. +func (_edec *shading )SetBackgroundColor (backgroundColor Color ){_edec ._dedad =backgroundColor }; -// Margins returns the margins of the component. -func (_bdeg *Division )Margins ()(_bcda ,_bdbb ,_dgfa ,_bfgc float64 ){return _bdeg ._cdef .Left ,_bdeg ._cdef .Right ,_bdeg ._cdef .Top ,_bdeg ._cdef .Bottom ;}; +// SetBorderColor sets the border color of the ellipse. +func (_bgaee *Ellipse )SetBorderColor (col Color ){_bgaee ._fegd =col }; -// RotateDeg rotates the current active page by angle degrees. An error is returned on failure, -// which can be if there is no currently active page, or the angleDeg is not a multiple of 90 degrees. -func (_fgg *Creator )RotateDeg (angleDeg int64 )error {_ebgd :=_fgg .getActivePage ();if _ebgd ==nil {_eef .Log .Debug ("F\u0061\u0069\u006c\u0020\u0074\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0065\u003a\u0020\u006e\u006f\u0020p\u0061\u0067\u0065\u0020\u0063\u0075\u0072\u0072\u0065\u006etl\u0079\u0020\u0061c\u0074i\u0076\u0065"); -return _e .New ("\u006e\u006f\u0020\u0070\u0061\u0067\u0065\u0020\u0061c\u0074\u0069\u0076\u0065");};if angleDeg %90!=0{_eef .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067e\u0020\u0072\u006f\u0074\u0061\u0074\u0069on\u0020\u0061\u006e\u0067l\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006dul\u0074\u0069p\u006c\u0065\u0020\u006f\u0066\u0020\u0039\u0030"); -return _e .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};var _gca int64 ;if _ebgd .Rotate !=nil {_gca =*(_ebgd .Rotate );};_gca +=angleDeg ;_ebgd .Rotate =&_gca ;return nil ;};func (_ggdag *shading )generatePdfFunctions ()[]_fa .PdfFunction {if len (_ggdag ._fbdg )==0{return nil ; -}else if len (_ggdag ._fbdg )<=2{_bfbb ,_ebdd ,_ffff :=_ggdag ._fbdg [0]._cbff .ToRGB ();_gdadc ,_ccad ,_bbeac :=_ggdag ._fbdg [len (_ggdag ._fbdg )-1]._cbff .ToRGB ();return []_fa .PdfFunction {&_fa .PdfFunctionType2 {Domain :[]float64 {0.0,1.0},Range :[]float64 {0.0,1.0,0.0,1.0,0.0,1.0},N :1,C0 :[]float64 {_bfbb ,_ebdd ,_ffff },C1 :[]float64 {_gdadc ,_ccad ,_bbeac }}}; -}else {_dfgd :=[]_fa .PdfFunction {};_cbfge :=[]float64 {};for _ddeae :=0;_ddeae < len (_ggdag ._fbdg )-1;_ddeae ++{_dead ,_dded ,_aedf :=_ggdag ._fbdg [_ddeae ]._cbff .ToRGB ();_afcc ,_gfge ,_ffdb :=_ggdag ._fbdg [_ddeae +1]._cbff .ToRGB ();_gdbf :=&_fa .PdfFunctionType2 {Domain :[]float64 {0.0,1.0},Range :[]float64 {0.0,1.0,0.0,1.0,0.0,1.0},N :1,C0 :[]float64 {_dead ,_dded ,_aedf },C1 :[]float64 {_afcc ,_gfge ,_ffdb }}; -_dfgd =append (_dfgd ,_gdbf );if _ddeae > 0{_cbfge =append (_cbfge ,_ggdag ._fbdg [_ddeae ]._deee );};};_ggbb :=[]float64 {};for range _dfgd {_ggbb =append (_ggbb ,[]float64 {0.0,1.0}...);};return []_fa .PdfFunction {&_fa .PdfFunctionType3 {Domain :[]float64 {0.0,1.0},Range :[]float64 {0.0,1.0,0.0,1.0,0.0,1.0},Functions :_dfgd ,Bounds :_cbfge ,Encode :_ggbb }}; -};}; +// AddTextItem appends a new item with the specified text to the list. +// The method creates a styled paragraph with the specified text and returns +// it so that the item style can be customized. +// The method also returns the marker used for the newly added item. +// The marker object can be used to change the text and style of the marker +// for the current item. +func (_cgga *List )AddTextItem (text string )(*StyledParagraph ,*TextChunk ,error ){_fedg :=_egdc (_cgga ._dagb );_fedg .Append (text );_abbbc ,_acaf :=_cgga .Add (_fedg );return _fedg ,_abbbc ,_acaf ;}; -// NewTextChunk returns a new text chunk instance. -func NewTextChunk (text string ,style TextStyle )*TextChunk {return &TextChunk {Text :text ,Style :style ,VerticalAlignment :TextVerticalAlignmentBaseline };}; +// SetTextVerticalAlignment sets the vertical alignment of the text within the +// bounds of the styled paragraph. +// +// Note: Currently Styled Paragraph doesn't support TextVerticalAlignmentBottom +// as that option only used for aligning text chunks. +// +// In order to change the vertical alignment of individual text chunks, use TextChunk.VerticalAlignment. +func (_eged *StyledParagraph )SetTextVerticalAlignment (align TextVerticalAlignment ){_eged ._edbcb =align ;};func (_dbadc *Invoice )drawAddress (_dgee *InvoiceAddress )[]*StyledParagraph {var _bfaf []*StyledParagraph ;if _dgee .Heading !=""{_abaf :=_egdc (_dbadc ._debc ); +_abaf .SetMargins (0,0,0,7);_abaf .Append (_dgee .Heading );_bfaf =append (_bfaf ,_abaf );};_ecac :=_egdc (_dbadc ._acecg );_ecac .SetLineHeight (1.2);_eafb :=_dgee .Separator ;if _eafb ==""{_eafb =_dbadc ._cedd ;};_fgbab :=_dgee .City ;if _dgee .State !=""{if _fgbab !=""{_fgbab +=_eafb ; +};_fgbab +=_dgee .State ;};if _dgee .Zip !=""{if _fgbab !=""{_fgbab +=_eafb ;};_fgbab +=_dgee .Zip ;};if _dgee .Name !=""{_ecac .Append (_dgee .Name +"\u000a");};if _dgee .Street !=""{_ecac .Append (_dgee .Street +"\u000a");};if _dgee .Street2 !=""{_ecac .Append (_dgee .Street2 +"\u000a"); +};if _fgbab !=""{_ecac .Append (_fgbab +"\u000a");};if _dgee .Country !=""{_ecac .Append (_dgee .Country +"\u000a");};_bdfe :=_egdc (_dbadc ._acecg );_bdfe .SetLineHeight (1.2);_bdfe .SetMargins (0,0,7,0);if _dgee .Phone !=""{_bdfe .Append (_dgee .fmtLine (_dgee .Phone ,"\u0050h\u006f\u006e\u0065\u003a\u0020",_dgee .HidePhoneLabel )); +};if _dgee .Email !=""{_bdfe .Append (_dgee .fmtLine (_dgee .Email ,"\u0045m\u0061\u0069\u006c\u003a\u0020",_dgee .HideEmailLabel ));};_bfaf =append (_bfaf ,_ecac ,_bdfe );return _bfaf ;};func (_gede *Table )wrapRow (_cagaa int ,_bacbe DrawContext ,_fabfbe float64 )(bool ,error ){if !_gede ._eebgf {return false ,nil ; +};var (_egecc =_gede ._cacca [_cagaa ];_bfgeb =-1;_adeb []*TableCell ;_bbbc float64 ;_cdaadg bool ;_cdcge =make ([]float64 ,0,len (_gede ._abbbf )););_agbc :=func (_dbcc *TableCell ,_babcac VectorDrawable ,_agfe bool )*TableCell {_cadd :=*_dbcc ;_cadd ._efbbe =_babcac ; +if _agfe {_cadd ._deded ++;};return &_cadd ;};_faggc :=func (_agdg int ,_bdcg VectorDrawable ){var _fegeb float64 =-1;if _bdcg ==nil {if _bbbb :=_cdcge [_agdg -_cagaa ];_bbbb > _bacbe .Height {_bdcg =_gede ._cacca [_agdg ]._efbbe ;_gede ._cacca [_agdg ]._efbbe =nil ; +_cdcge [_agdg -_cagaa ]=0;_fegeb =_bbbb ;};};_deead :=_agbc (_gede ._cacca [_agdg ],_bdcg ,true );_adeb =append (_adeb ,_deead );if _fegeb < 0{_fegeb =_deead .height (_bacbe .Width );};if _fegeb > _bbbc {_bbbc =_fegeb ;};};for _efda :=_cagaa ;_efda < len (_gede ._cacca ); +_efda ++{_bgcbc :=_gede ._cacca [_efda ];if _egecc ._deded !=_bgcbc ._deded {_bfgeb =_efda ;break ;};_bacbe .Width =_bgcbc .width (_gede ._abbbf ,_fabfbe );_cfda :=_bgcbc .height (_bacbe .Width );var _aeeee VectorDrawable ;switch _dcffc :=_bgcbc ._efbbe .(type ){case *StyledParagraph :if _cfda > _bacbe .Height {_fbgd :=_bacbe ; +_fbgd .Height =_b .Floor (_bacbe .Height -_dcffc ._fbgbc .Top -_dcffc ._fbgbc .Bottom -0.5*_dcffc .getTextHeight ());_fbaeg ,_fgfd ,_cebce :=_dcffc .split (_fbgd );if _cebce !=nil {return false ,_cebce ;};if _fbaeg !=nil &&_fgfd !=nil {_dcffc =_fbaeg ; +_bgcbc =_agbc (_bgcbc ,_fbaeg ,false );_gede ._cacca [_efda ]=_bgcbc ;_aeeee =_fgfd ;_cdaadg =true ;};_cfda =_bgcbc .height (_bacbe .Width );};case *Division :if _cfda > _bacbe .Height {_deegf :=_bacbe ;_deegf .Height =_b .Floor (_bacbe .Height -_dcffc ._debb .Top -_dcffc ._debb .Bottom ); +_fcgge ,_aeedc :=_dcffc .split (_deegf );if _fcgge !=nil &&_aeedc !=nil {_dcffc =_fcgge ;_bgcbc =_agbc (_bgcbc ,_fcgge ,false );_gede ._cacca [_efda ]=_bgcbc ;_aeeee =_aeedc ;_cdaadg =true ;if _fcgge ._fbgb !=nil {_fcgge ._fbgb .BorderRadiusBottomLeft =0; +_fcgge ._fbgb .BorderRadiusBottomRight =0;};if _aeedc ._fbgb !=nil {_aeedc ._fbgb .BorderRadiusTopLeft =0;_aeedc ._fbgb .BorderRadiusTopRight =0;};_cfda =_bgcbc .height (_bacbe .Width );};};case *List :if _cfda > _bacbe .Height {_bcae :=_bacbe ;_bcae .Height =_b .Floor (_bacbe .Height -_dcffc ._fed .Vertical ()); +_bebfg ,_egggb :=_dcffc .split (_bcae );if _bebfg !=nil {_dcffc =_bebfg ;_bgcbc =_agbc (_bgcbc ,_bebfg ,false );_gede ._cacca [_efda ]=_bgcbc ;};if _egggb !=nil {_aeeee =_egggb ;_cdaadg =true ;};_cfda =_bgcbc .height (_bacbe .Width );};};_cdcge =append (_cdcge ,_cfda ); +if _cdaadg {if _adeb ==nil {_adeb =make ([]*TableCell ,0,len (_gede ._abbbf ));for _acgde :=_cagaa ;_acgde < _efda ;_acgde ++{_faggc (_acgde ,nil );};};_faggc (_efda ,_aeeee );};};var _eacdg float64 ;for _ ,_fead :=range _cdcge {if _fead > _eacdg {_eacdg =_fead ; +};};if _cdaadg &&_eacdg < _bacbe .Height {if _bfgeb < 0{_bfgeb =len (_gede ._cacca );};_ebade :=_gede ._cacca [_bfgeb -1]._deded +_gede ._cacca [_bfgeb -1]._ffgdb -1;for _febbd :=_bfgeb ;_febbd < len (_gede ._cacca );_febbd ++{_gede ._cacca [_febbd ]._deded ++; +};_gede ._cacca =append (_gede ._cacca [:_bfgeb ],append (_adeb ,_gede ._cacca [_bfgeb :]...)...);_gede ._begb =append (_gede ._begb [:_ebade ],append ([]float64 {_bbbc },_gede ._begb [_ebade :]...)...);_gede ._begb [_egecc ._deded +_egecc ._ffgdb -2]=_eacdg ; +};return _cdaadg ,nil ;}; -// SetBorderWidth sets the border width of the ellipse. -func (_aag *Ellipse )SetBorderWidth (bw float64 ){_aag ._cadd =bw };func _fbac (_abccg Color ,_afag float64 )*ColorPoint {return &ColorPoint {_cbff :_abccg ,_deee :_afag }}; +// Write output of creator to io.Writer interface. +func (_fccb *Creator )Write (ws _ae .Writer )error {if _ebgc :=_fccb .Finalize ();_ebgc !=nil {return _ebgc ;};_gcde :=_ggc .NewPdfWriter ();_gcde .SetOptimizer (_fccb ._eecf );if _fccb ._ddc !=nil {_degf :=_gcde .SetForms (_fccb ._ddc );if _degf !=nil {_ca .Log .Debug ("F\u0061\u0069\u006c\u0075\u0072\u0065\u003a\u0020\u0025\u0076",_degf ); +return _degf ;};};if _fccb ._beeb !=nil {_gcde .AddOutlineTree (_fccb ._beeb );}else if _fccb ._gaec !=nil &&_fccb .AddOutlines {_gcde .AddOutlineTree (&_fccb ._gaec .ToPdfOutline ().PdfOutlineTreeNode );};if _fccb ._dbgc !=nil {if _effb :=_gcde .SetPageLabels (_fccb ._dbgc ); +_effb !=nil {_ca .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020C\u006f\u0075\u006c\u0064 no\u0074 s\u0065\u0074\u0020\u0070\u0061\u0067\u0065 l\u0061\u0062\u0065\u006c\u0073\u003a\u0020%\u0076",_effb );return _effb ;};};if _fccb ._feff !=nil {for _ ,_bdg :=range _fccb ._feff {_bgge :=_bdg .SubsetRegistered (); +if _bgge !=nil {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u006f\u0075\u006c\u0064\u0020\u006e\u006ft\u0020s\u0075\u0062\u0073\u0065\u0074\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0025\u0076",_bgge );return _bgge ;};};};if _fccb ._bggc !=nil {_gdaf :=_fccb ._bggc (&_gcde ); +if _gdaf !=nil {_ca .Log .Debug ("F\u0061\u0069\u006c\u0075\u0072\u0065\u003a\u0020\u0025\u0076",_gdaf );return _gdaf ;};};for _ ,_efbb :=range _fccb ._cec {_cded :=_gcde .AddPage (_efbb );if _cded !=nil {_ca .Log .Error ("\u0046\u0061\u0069\u006ced\u0020\u0074\u006f\u0020\u0061\u0064\u0064\u0020\u0050\u0061\u0067\u0065\u003a\u0020%\u0076",_cded ); +return _cded ;};};_abef :=_gcde .Write (ws );if _abef !=nil {return _abef ;};return nil ;};func (_ffdec *templateProcessor )parseFontAttr (_fdcgfg ,_gfcca string )*_ggc .PdfFont {_ca .Log .Debug ("P\u0061\u0072\u0073\u0069\u006e\u0067 \u0066\u006f\u006e\u0074\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_fdcgfg ,_gfcca ); +_bcac :=_ffdec .creator ._gade ;if _gfcca ==""{return _bcac ;};_gdfda :=_dc .Split (_gfcca ,"\u002c");for _ ,_aeae :=range _gdfda {_aeae =_dc .TrimSpace (_aeae );if _aeae ==""{continue ;};_fgfed ,_fdffb :=_ffdec ._affcb .FontMap [_gfcca ];if _fdffb {return _fgfed ; +};_agebd ,_fdffb :=map[string ]_ggc .StdFontName {"\u0063o\u0075\u0072\u0069\u0065\u0072":_ggc .CourierName ,"\u0063\u006f\u0075r\u0069\u0065\u0072\u002d\u0062\u006f\u006c\u0064":_ggc .CourierBoldName ,"\u0063o\u0075r\u0069\u0065\u0072\u002d\u006f\u0062\u006c\u0069\u0071\u0075\u0065":_ggc .CourierObliqueName ,"c\u006fu\u0072\u0069\u0065\u0072\u002d\u0062\u006f\u006cd\u002d\u006f\u0062\u006ciq\u0075\u0065":_ggc .CourierBoldObliqueName ,"\u0068e\u006c\u0076\u0065\u0074\u0069\u0063a":_ggc .HelveticaName ,"\u0068\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061-\u0062\u006f\u006c\u0064":_ggc .HelveticaBoldName ,"\u0068\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061\u002d\u006f\u0062l\u0069\u0071\u0075\u0065":_ggc .HelveticaObliqueName ,"\u0068\u0065\u006c\u0076et\u0069\u0063\u0061\u002d\u0062\u006f\u006c\u0064\u002d\u006f\u0062\u006c\u0069\u0071u\u0065":_ggc .HelveticaBoldObliqueName ,"\u0073\u0079\u006d\u0062\u006f\u006c":_ggc .SymbolName ,"\u007a\u0061\u0070\u0066\u002d\u0064\u0069\u006e\u0067\u0062\u0061\u0074\u0073":_ggc .ZapfDingbatsName ,"\u0074\u0069\u006de\u0073":_ggc .TimesRomanName ,"\u0074\u0069\u006d\u0065\u0073\u002d\u0062\u006f\u006c\u0064":_ggc .TimesBoldName ,"\u0074\u0069\u006de\u0073\u002d\u0069\u0074\u0061\u006c\u0069\u0063":_ggc .TimesItalicName ,"\u0074\u0069\u006d\u0065\u0073\u002d\u0062\u006f\u006c\u0064\u002d\u0069t\u0061\u006c\u0069\u0063":_ggc .TimesBoldItalicName }[_gfcca ]; +if _fdffb {if _acaea ,_bedeb :=_ggc .NewStandard14Font (_agebd );_bedeb ==nil {return _acaea ;};};if _bdffa :=_ffdec .parseAttrPropList (_aeae );len (_bdffa )> 0{if _gbbfb ,_agba :=_bdffa ["\u0070\u0061\u0074\u0068"];_agba {_aefb :=_ggc .NewPdfFontFromTTFFile ; +if _dcccf ,_dfdg :=_bdffa ["\u0074\u0079\u0070\u0065"];_dfdg &&_dcccf =="\u0063o\u006d\u0070\u006f\u0073\u0069\u0074e"{_aefb =_ggc .NewCompositePdfFontFromTTFFile ;};if _cagdg ,_ededf :=_aefb (_gbbfb );_ededf !=nil {_ca .Log .Debug ("\u0043\u006fu\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0060\u0025\u0073\u0060\u003a %\u0076\u002e",_gbbfb ,_ededf ); +}else {return _cagdg ;};};};};return _bcac ;}; -// AddColorStop add color stop information for rendering gradient. -func (_ddddb *shading )AddColorStop (color Color ,point float64 ){_ddddb ._fbdg =append (_ddddb ._fbdg ,_fbac (color ,point ));}; +// SetOutlineTree adds the specified outline tree to the PDF file generated +// by the creator. Adding an external outline tree disables the automatic +// generation of outlines done by the creator for the relevant components. +func (_dae *Creator )SetOutlineTree (outlineTree *_ggc .PdfOutlineTreeNode ){_dae ._beeb =outlineTree };func (_aaebf *Table )clone ()*Table {_affb :=*_aaebf ;_affb ._begb =make ([]float64 ,len (_aaebf ._begb ));copy (_affb ._begb ,_aaebf ._begb );_affb ._abbbf =make ([]float64 ,len (_aaebf ._abbbf )); +copy (_affb ._abbbf ,_aaebf ._abbbf );_affb ._cacca =make ([]*TableCell ,0,len (_aaebf ._cacca ));for _ ,_dfbb :=range _aaebf ._cacca {_gegff :=*_dfbb ;_gegff ._ddggg =&_affb ;_affb ._cacca =append (_affb ._cacca ,&_gegff );};return &_affb ;}; -// SetHorizontalAlignment sets the cell's horizontal alignment of content. -// Can be one of: -// - CellHorizontalAlignmentLeft -// - CellHorizontalAlignmentCenter -// - CellHorizontalAlignmentRight -func (_cbfgeg *TableCell )SetHorizontalAlignment (halign CellHorizontalAlignment ){_cbfgeg ._dedb =halign ;}; +// SetBuyerAddress sets the buyer address of the invoice. +func (_cgbf *Invoice )SetBuyerAddress (address *InvoiceAddress ){_cgbf ._dcfc =address }; -// Draw processes the specified Drawable widget and generates blocks that can -// be rendered to the output document. The generated blocks can span over one -// or more pages. Additional pages are added if the contents go over the current -// page. Each generated block is assigned to the creator page it will be -// rendered to. In order to render the generated blocks to the creator pages, -// call Finalize, Write or WriteToFile. -func (_ffda *Creator )Draw (d Drawable )error {if _ffda .getActivePage ()==nil {_ffda .NewPage ();};_fbfee ,_gcfb ,_ggfa :=d .GeneratePageBlocks (_ffda ._gbb );if _ggfa !=nil {return _ggfa ;};if len (_gcfb ._bdfb )> 0{_ffda .Errors =append (_ffda .Errors ,_gcfb ._bdfb ...); -};for _dbgg ,_fcgb :=range _fbfee {if _dbgg > 0{_ffda .NewPage ();};_bfa :=_ffda .getActivePage ();if _fcf ,_cgf :=_ffda ._ecd [_bfa ];_cgf {if _aebf :=_fcf .mergeBlocks (_fcgb );_aebf !=nil {return _aebf ;};if _bcfg :=_eebf (_fcgb ._gae ,_fcf ._gae ); -_bcfg !=nil {return _bcfg ;};}else {_ffda ._ecd [_bfa ]=_fcgb ;};};_ffda ._gbb .X =_gcfb .X ;_ffda ._gbb .Y =_gcfb .Y ;_ffda ._gbb .Height =_gcfb .PageHeight -_gcfb .Y -_gcfb .Margins .Bottom ;return nil ;};func (_ddce *templateProcessor )parseBackground (_abggc *templateNode )(interface{},error ){_defcb :=&Background {}; -for _ ,_ceff :=range _abggc ._facfb .Attr {_eddef :=_ceff .Value ;switch _gdfaa :=_ceff .Name .Local ;_gdfaa {case "\u0066\u0069\u006c\u006c\u002d\u0063\u006f\u006c\u006f\u0072":_defcb .FillColor =_ddce .parseColorAttr (_gdfaa ,_eddef );case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_defcb .BorderColor =_ddce .parseColorAttr (_gdfaa ,_eddef ); -case "b\u006f\u0072\u0064\u0065\u0072\u002d\u0073\u0069\u007a\u0065":_defcb .BorderSize =_ddce .parseFloatAttr (_gdfaa ,_eddef );case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_ffed ,_fbafe ,_ccbed ,_feeef :=_ddce .parseBorderRadiusAttr (_gdfaa ,_eddef ); -_defcb .SetBorderRadius (_ffed ,_fbafe ,_feeef ,_ccbed );case "\u0062\u006f\u0072\u0064er\u002d\u0074\u006f\u0070\u002d\u006c\u0065\u0066\u0074\u002d\u0072\u0061\u0064\u0069u\u0073":_defcb .BorderRadiusTopLeft =_ddce .parseFloatAttr (_gdfaa ,_eddef );case "\u0062\u006f\u0072de\u0072\u002d\u0074\u006f\u0070\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_defcb .BorderRadiusTopRight =_ddce .parseFloatAttr (_gdfaa ,_eddef ); -case "\u0062o\u0072\u0064\u0065\u0072-\u0062\u006f\u0074\u0074\u006fm\u002dl\u0065f\u0074\u002d\u0072\u0061\u0064\u0069\u0075s":_defcb .BorderRadiusBottomLeft =_ddce .parseFloatAttr (_gdfaa ,_eddef );case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0062\u006f\u0074\u0074o\u006d\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061d\u0069\u0075\u0073":_defcb .BorderRadiusBottomRight =_ddce .parseFloatAttr (_gdfaa ,_eddef ); -default:_ddce .nodeLogDebug (_abggc ,"\u0055\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0062\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e",_gdfaa ); -};};return _defcb ,nil ;}; +// AppendCurve appends a Bezier curve to the filled curve. +func (_dacc *FilledCurve )AppendCurve (curve _fc .CubicBezierCurve )*FilledCurve {_dacc ._babe =append (_dacc ._babe ,curve );return _dacc ;};func (_adad *templateProcessor )parseListMarker (_deafc *templateNode )(interface{},error ){if _deafc ._fbcg ==nil {_adad .nodeLogError (_deafc ,"\u004c\u0069\u0073\u0074\u0020\u006da\u0072\u006b\u0065\u0072\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0063a\u006e\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c\u002e"); +return nil ,_gfaba ;};var _eddbg *TextChunk ;switch _cgeb :=_deafc ._fbcg ._caacd .(type ){case *List :_eddbg =&_cgeb ._ebgba ;case *listItem :_eddbg =&_cgeb ._eeed ;default:_adad .nodeLogError (_deafc ,"\u0025\u0076 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u006e\u006f\u0064\u0065\u0020\u0066\u006f\u0072\u0020\u006c\u0069\u0073\u0074\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e",_cgeb ); +return nil ,_gfaba ;};if _ ,_bcdb :=_adad .parseTextChunk (_deafc ,_eddbg );_bcdb !=nil {_adad .nodeLogError (_deafc ,"\u0043\u006f\u0075ld\u0020\u006e\u006f\u0074\u0020\u0070\u0061\u0072\u0073e\u0020l\u0069s\u0074 \u006d\u0061\u0072\u006b\u0065\u0072\u003a\u0020\u0060\u0025\u0076\u0060\u002e",_bcdb ); +return nil ,nil ;};return _eddbg ,nil ;}; -// SetLogo sets the logo of the invoice. -func (_acgd *Invoice )SetLogo (logo *Image ){_acgd ._fabc =logo };func (_bdag *Table )wrapContent (_afggf DrawContext )error {if _bdag ._dbac {return nil ;};_bdag .sortCells ();_eafad :=func (_ddcb *TableCell ,_bbega int ,_gfgf int ,_fcdb int )(_bfaea int ){if _fcdb < 1{return -1; -};_egea :=0;for _abcgd :=_gfgf +1;_abcgd < len (_bdag ._bdfef )-1;_abcgd ++{_fbee :=_bdag ._bdfef [_abcgd ];if _fbee ._cceef ==_fcdb &&_egea !=_gfgf {_egea =_abcgd ;if (_fbee ._baceb < _ddcb ._baceb &&_bdag ._beege > _fbee ._baceb )||_ddcb ._baceb < _bdag ._beege {continue ; -};break ;};};_aabg :=float64 (0.0);for _dafc :=0;_dafc < _ddcb ._badd ;_dafc ++{_aabg +=_bdag ._cddcg [_ddcb ._cceef +_dafc -1];};_afff :=_ddcb .width (_bdag ._gaecf ,_afggf .Width );var (_ebab VectorDrawable ;_fbacc =false ;);switch _gcfec :=_ddcb ._cead .(type ){case *StyledParagraph :_fcgef :=_afggf ; -_fcgef .Height =_ec .Floor (_aabg -_gcfec ._faaba .Top -_gcfec ._faaba .Bottom -0.5*_gcfec .getTextHeight ());_fcgef .Width =_afff ;_gbddf ,_decf ,_gfeag :=_gcfec .split (_fcgef );if _gfeag !=nil {_eef .Log .Error ("\u0045\u0072\u0072o\u0072\u0020\u0077\u0072a\u0070\u0020\u0073\u0074\u0079\u006c\u0065d\u0020\u0070\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u003a\u0020\u0025\u0076",_gfeag .Error ()); -};if _gbddf !=nil &&_decf !=nil {_bdag ._bdfef [_gfgf ]._cead =_gbddf ;_ebab =_decf ;_fbacc =true ;};};_bdag ._bdfef [_gfgf ]._badd =_ddcb ._badd ;_afggf .Height =_afggf .PageHeight -_afggf .Margins .Top -_afggf .Margins .Bottom ;_eaagf :=_ddcb .cloneProps (nil ); -if _fbacc {_eaagf ._cead =_ebab ;};_eaagf ._badd =_bbega ;_eaagf ._cceef =_fcdb +1;_eaagf ._baceb =_ddcb ._baceb ;if _eaagf ._cceef +_eaagf ._badd -1> _bdag ._cccb {for _egfb :=_bdag ._cccb ;_egfb < _eaagf ._cceef +_eaagf ._badd -1;_egfb ++{_bdag ._cccb ++; -_bdag ._cddcg =append (_bdag ._cddcg ,_bdag ._efbgd );};};_bdag ._bdfef =append (_bdag ._bdfef [:_egea +1],append ([]*TableCell {_eaagf },_bdag ._bdfef [_egea +1:]...)...);return _egea +1;};_baff :=func (_gggdd *TableCell ,_bfbbb int ,_agfc int ,_agagf float64 )(_ddeafe int ){_feccg :=_gggdd .width (_bdag ._gaecf ,_afggf .Width ); -_fcec :=_agagf ;_feggc :=1;_dfgg :=_afggf .Height ;if _dfgg > 0{for _fcec > _dfgg {_fcec -=_afggf .Height ;_dfgg =_afggf .PageHeight -_afggf .Margins .Top -_afggf .Margins .Bottom ;_feggc ++;};};var (_gdec VectorDrawable ;_aedd =false ;);switch _fage :=_gggdd ._cead .(type ){case *StyledParagraph :_bbge :=_afggf ; -_bbge .Height =_ec .Floor (_afggf .Height -_fage ._faaba .Top -_fage ._faaba .Bottom -0.5*_fage .getTextHeight ());_bbge .Width =_feccg ;_eedbf ,_cbaa ,_dgaca :=_fage .split (_bbge );if _dgaca !=nil {_eef .Log .Error ("\u0045\u0072\u0072o\u0072\u0020\u0077\u0072a\u0070\u0020\u0073\u0074\u0079\u006c\u0065d\u0020\u0070\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u003a\u0020\u0025\u0076",_dgaca .Error ()); -};if _eedbf !=nil &&_cbaa !=nil {_bdag ._bdfef [_bfbbb ]._cead =_eedbf ;_gdec =_cbaa ;_aedd =true ;};};if _feggc < 2{return -1;};if _bdag ._bdfef [_bfbbb ]._cceef +_feggc -1> _bdag ._cccb {for _bbfe :=0;_bbfe < _feggc ;_bbfe ++{_bdag ._cccb ++;_bdag ._cddcg =append (_bdag ._cddcg ,_bdag ._efbgd ); -};};_ddffb :=_agagf /float64 (_feggc );for _aedfb :=0;_aedfb < _feggc ;_aedfb ++{_bdag ._cddcg [_agfc +_aedfb -1]=_ddffb ;};_afggf .Height =_afggf .PageHeight -_afggf .Margins .Top -_afggf .Margins .Bottom ;_gdadf :=_gggdd .cloneProps (nil );if _aedd {_gdadf ._cead =_gdec ; -};_gdadf ._badd =1;_gdadf ._cceef =_agfc +_feggc -1;_gdadf ._baceb =_gggdd ._baceb ;_bdag ._bdfef =append (_bdag ._bdfef ,_gdadf );return len (_bdag ._bdfef );};_ddcbf :=1;_gabfa :=-1;for _accab :=0;_accab < len (_bdag ._bdfef );_accab ++{_badb :=_bdag ._bdfef [_accab ]; -if _gabfa ==_accab {_ddcbf =_badb ._cceef ;};if _badb ._badd < 2{if _aeceb :=_bdag ._cddcg [_badb ._cceef -1];_aeceb > _afggf .Height {_gabfa =_baff (_badb ,_accab ,_badb ._cceef ,_aeceb );continue ;};continue ;};_gcbga :=float64 (0);for _abcac :=0;_abcac < _badb ._badd ; -_abcac ++{_gcbga +=_bdag ._cddcg [_badb ._cceef +_abcac -1];};_edgg :=float64 (0);for _gfaf :=_ddcbf -1;_gfaf < _badb ._cceef -1;_gfaf ++{_edgg +=_bdag ._cddcg [_gfaf ];};if _gcbga <=(_afggf .Height -_edgg ){continue ;};_ccgbg :=float64 (0.0);_cefa :=_badb ._badd ; -_dgfgd :=-1;_afccc :=1;for _eaead :=1;_eaead <=_badb ._badd ;_eaead ++{if (_ccgbg +_bdag ._cddcg [_badb ._cceef +_eaead -2])> (_afggf .Height -_edgg ){_afccc --;break ;};_dgfgd =_badb ._cceef +_eaead -1;_cefa =_badb ._badd -_eaead ;_ccgbg +=_bdag ._cddcg [_badb ._cceef +_eaead -2]; -_afccc ++;};if _badb ._badd ==_cefa {_afggf .Height =_afggf .PageHeight -_afggf .Margins .Top -_afggf .Margins .Bottom ;_ddcbf =_badb ._cceef ;_accab --;continue ;};if _cefa > 0&&_badb ._badd > _afccc {_badb ._badd =_afccc ;_gabfa =_eafad (_badb ,_cefa ,_accab ,_dgfgd ); -if _accab +1==_gabfa {_accab --;};};_ddcbf =_badb ._cceef ;};_bdag .sortCells ();return nil ;};func (_cbga *templateProcessor )parseRectangle (_afceac *templateNode )(interface{},error ){_decd :=_cbga .creator .NewRectangle (0,0,0,0);for _ ,_egbc :=range _afceac ._facfb .Attr {_efea :=_egbc .Value ; -switch _gdbb :=_egbc .Name .Local ;_gdbb {case "\u0078":_decd ._dfbc =_cbga .parseFloatAttr (_gdbb ,_efea );case "\u0079":_decd ._gbfgg =_cbga .parseFloatAttr (_gdbb ,_efea );case "\u0077\u0069\u0064t\u0068":_decd .SetWidth (_cbga .parseFloatAttr (_gdbb ,_efea )); -case "\u0068\u0065\u0069\u0067\u0068\u0074":_decd .SetHeight (_cbga .parseFloatAttr (_gdbb ,_efea ));case "\u0066\u0069\u006c\u006c\u002d\u0063\u006f\u006c\u006f\u0072":_decd .SetFillColor (_cbga .parseColorAttr (_gdbb ,_efea ));case "\u0066\u0069\u006cl\u002d\u006f\u0070\u0061\u0063\u0069\u0074\u0079":_decd .SetFillOpacity (_cbga .parseFloatAttr (_gdbb ,_efea )); -case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_decd .SetBorderColor (_cbga .parseColorAttr (_gdbb ,_efea ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u006f\u0070a\u0063\u0069\u0074\u0079":_decd .SetBorderOpacity (_cbga .parseFloatAttr (_gdbb ,_efea )); -case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068":_decd .SetBorderWidth (_cbga .parseFloatAttr (_gdbb ,_efea ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_dbbgd ,_ceegc ,_fbeg ,_bcbg :=_cbga .parseBorderRadiusAttr (_gdbb ,_efea ); -_decd .SetBorderRadius (_dbbgd ,_ceegc ,_bcbg ,_fbeg );case "\u0062\u006f\u0072\u0064er\u002d\u0074\u006f\u0070\u002d\u006c\u0065\u0066\u0074\u002d\u0072\u0061\u0064\u0069u\u0073":_decd ._efcb =_cbga .parseFloatAttr (_gdbb ,_efea );case "\u0062\u006f\u0072de\u0072\u002d\u0074\u006f\u0070\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_decd ._caab =_cbga .parseFloatAttr (_gdbb ,_efea ); -case "\u0062o\u0072\u0064\u0065\u0072-\u0062\u006f\u0074\u0074\u006fm\u002dl\u0065f\u0074\u002d\u0072\u0061\u0064\u0069\u0075s":_decd ._ebagc =_cbga .parseFloatAttr (_gdbb ,_efea );case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0062\u006f\u0074\u0074o\u006d\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061d\u0069\u0075\u0073":_decd ._bafe =_cbga .parseFloatAttr (_gdbb ,_efea ); -case "\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e":_decd .SetPositioning (_cbga .parsePositioningAttr (_gdbb ,_efea ));case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_decd .SetFitMode (_cbga .parseFitModeAttr (_gdbb ,_efea ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_bage :=_cbga .parseMarginAttr (_gdbb ,_efea ); -_decd .SetMargins (_bage .Left ,_bage .Right ,_bage .Top ,_bage .Bottom );default:_cbga .nodeLogDebug (_afceac ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065\u0064\u0020re\u0063\u0074\u0061\u006e\u0067\u006ce\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073`\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u002e",_gdbb ); -};};return _decd ,nil ;};func (_ddfbb *templateProcessor )parseChart (_afcb *templateNode )(interface{},error ){var _fbgga string ;for _ ,_fdgge :=range _afcb ._facfb .Attr {_fcdbe :=_fdgge .Value ;switch _cdfce :=_fdgge .Name .Local ;_cdfce {case "\u0073\u0072\u0063":_fbgga =_fcdbe ; -};};if _fbgga ==""{_ddfbb .nodeLogError (_afcb ,"\u0043\u0068\u0061\u0072\u0074\u0020\u0060\u0073\u0072\u0063\u0060\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062e\u0020\u0065m\u0070\u0074\u0079\u002e"); -return nil ,_cfee ;};_cdbac ,_acceb :=_ddfbb ._cbdga .ChartMap [_fbgga ];if !_acceb {_ddfbb .nodeLogError (_afcb ,"\u0043\u006ful\u0064\u0020\u006eo\u0074\u0020\u0066\u0069nd \u0063ha\u0072\u0074\u0020\u0072\u0065\u0073\u006fur\u0063\u0065\u003a\u0020\u0060\u0025\u0073`\u002e",_fbgga ); -return nil ,_cfee ;};_dcgbb :=NewChart (_cdbac );for _ ,_afcg :=range _afcb ._facfb .Attr {_ccab :=_afcg .Value ;switch _facce :=_afcg .Name .Local ;_facce {case "\u0078":_dcgbb .SetPos (_ddfbb .parseFloatAttr (_facce ,_ccab ),_dcgbb ._gfe );case "\u0079":_dcgbb .SetPos (_dcgbb ._ggf ,_ddfbb .parseFloatAttr (_facce ,_ccab )); -case "\u006d\u0061\u0072\u0067\u0069\u006e":_dgcg :=_ddfbb .parseMarginAttr (_facce ,_ccab );_dcgbb .SetMargins (_dgcg .Left ,_dgcg .Right ,_dgcg .Top ,_dgcg .Bottom );case "\u0077\u0069\u0064t\u0068":_dcgbb ._ccf .SetWidth (int (_ddfbb .parseFloatAttr (_facce ,_ccab ))); -case "\u0068\u0065\u0069\u0067\u0068\u0074":_dcgbb ._ccf .SetHeight (int (_ddfbb .parseFloatAttr (_facce ,_ccab )));case "\u0073\u0072\u0063":break ;default:_ddfbb .nodeLogDebug (_afcb ,"\u0055n\u0073\u0075p\u0070\u006f\u0072\u0074e\u0064\u0020\u0063h\u0061\u0072\u0074\u0020\u0061\u0074\u0074\u0072\u0069bu\u0074\u0065\u003a \u0060\u0025s\u0060\u002e\u0020\u0053\u006b\u0069p\u0070\u0069n\u0067\u002e",_facce ); -};};return _dcgbb ,nil ;}; +// SetNoteStyle sets the style properties used to render the content of the +// invoice note sections. +func (_gbbd *Invoice )SetNoteStyle (style TextStyle ){_gbbd ._dcfab =style }; -// NewTable create a new Table with a specified number of columns. -func (_ccdb *Creator )NewTable (cols int )*Table {return _bgfa (cols )}; +// AddressStyle returns the style properties used to render the content of +// the invoice address sections. +func (_badbc *Invoice )AddressStyle ()TextStyle {return _badbc ._acecg }; -// Inline returns whether the inline mode of the division is active. -func (_bffa *Division )Inline ()bool {return _bffa ._dacf }; +// String implements error interface. +func (_eada UnsupportedRuneError )Error ()string {return _eada .Message };func (_edcf *listItem )ctxHeight (_bgcee float64 )float64 {var _gbdbf float64 ;switch _eaaf :=_edcf ._gdceb .(type ){case *Paragraph :if _eaaf ._bebg {_eaaf .SetWidth (_bgcee -_eaaf ._fgcbf .Horizontal ()); +};_gbdbf =_eaaf .Height ()+_eaaf ._fgcbf .Vertical ();_gbdbf +=0.5*_eaaf ._fcbfa *_eaaf ._dacae ;case *StyledParagraph :if _eaaf ._gfbb {_eaaf .SetWidth (_bgcee -_eaaf ._fbgbc .Horizontal ());};_gbdbf =_eaaf .Height ()+_eaaf ._fbgbc .Vertical ();_gbdbf +=0.5*_eaaf .getTextHeight (); +case *List :_fgad :=_bgcee -_edcf ._eeed .Width ()-_eaaf ._fed .Horizontal ()-_eaaf ._egab ;_gbdbf =_eaaf .ctxHeight (_fgad )+_eaaf ._fed .Vertical ();case *Image :_gbdbf =_eaaf .Height ()+_eaaf ._cbea .Vertical ();case *Division :_caced :=_bgcee -_edcf ._eeed .Width ()-_eaaf ._debb .Horizontal (); +_gbdbf =_eaaf .ctxHeight (_caced )+_eaaf ._debb .Vertical ();case *Table :_bbcba :=_bgcee -_edcf ._eeed .Width ()-_eaaf ._gfbcc .Horizontal ();_eaaf .updateRowHeights (_bbcba );_gbdbf =_eaaf .Height ()+_eaaf ._gfbcc .Vertical ();default:_gbdbf =_edcf ._gdceb .Height (); +};return _gbdbf ;}; -// SetMargins sets the Paragraph's margins. -func (_gabg *StyledParagraph )SetMargins (left ,right ,top ,bottom float64 ){_gabg ._faaba .Left =left ;_gabg ._faaba .Right =right ;_gabg ._faaba .Top =top ;_gabg ._faaba .Bottom =bottom ;}; +// FooterFunctionArgs holds the input arguments to a footer drawing function. +// It is designed as a struct, so additional parameters can be added in the future with backwards +// compatibility. +type FooterFunctionArgs struct{PageNum int ;TotalPages int ;}; -// SetMargins sets the Block's left, right, top, bottom, margins. -func (_cg *Block )SetMargins (left ,right ,top ,bottom float64 ){_cg ._fe .Left =left ;_cg ._fe .Right =right ;_cg ._fe .Top =top ;_cg ._fe .Bottom =bottom ;}; +// Ellipse defines an ellipse with a center at (xc,yc) and a specified width and height. The ellipse can have a colored +// fill and/or border with a specified width. +// Implements the Drawable interface and can be drawn on PDF using the Creator. +type Ellipse struct{_eebe float64 ;_beb float64 ;_eded float64 ;_dabc float64 ;_acgd Positioning ;_dbadf Color ;_ddbf float64 ;_fegd Color ;_fgcca float64 ;_dadc float64 ;_cadg Margins ;_gbfg FitMode ;}; -// Chapter is used to arrange multiple drawables (paragraphs, images, etc) into a single section. -// The concept is the same as a book or a report chapter. -type Chapter struct{_fgb int ;_ebfe string ;_abd *Paragraph ;_cdde []Drawable ;_cdcc int ;_faea bool ;_abee bool ;_bcgd Positioning ;_dcfe ,_aeef float64 ;_dee Margins ;_eda *Chapter ;_gdaf *TOC ;_eaa *_fa .Outline ;_efcd *_fa .OutlineItem ;_feed uint ; -}; +// NewTOC creates a new table of contents. +func (_edeg *Creator )NewTOC (title string )*TOC {_babc :=_edeg .NewTextStyle ();_babc .Font =_edeg ._eacc ;return _dfede (title ,_edeg .NewTextStyle (),_babc );}; -// TOC represents a table of contents component. -// It consists of a paragraph heading and a collection of -// table of contents lines. -// The representation of a table of contents line is as follows: -// [number] [title] [separator] [page] -// e.g.: Chapter1 Introduction ........... 1 -type TOC struct{_edbe *StyledParagraph ;_agfbb []*TOCLine ;_fdfac TextStyle ;_agde TextStyle ;_dbfad TextStyle ;_dbdbc TextStyle ;_abgga string ;_gafab float64 ;_adgec Margins ;_cafed Positioning ;_bcgff TextStyle ;_cfgge bool ;};func (_caac *templateProcessor )parseImage (_aaab *templateNode )(interface{},error ){var _dcgd string ; -for _ ,_gaaf :=range _aaab ._facfb .Attr {_bagb :=_gaaf .Value ;switch _gcead :=_gaaf .Name .Local ;_gcead {case "\u0073\u0072\u0063":_dcgd =_bagb ;};};_ddgbe ,_ffcaf :=_caac .loadImageFromSrc (_dcgd );if _ffcaf !=nil {return nil ,_ffcaf ;};for _ ,_cddcc :=range _aaab ._facfb .Attr {_daab :=_cddcc .Value ; -switch _cddcb :=_cddcc .Name .Local ;_cddcb {case "\u0061\u006c\u0069g\u006e":_ddgbe .SetHorizontalAlignment (_caac .parseHorizontalAlignmentAttr (_cddcb ,_daab ));case "\u006fp\u0061\u0063\u0069\u0074\u0079":_ddgbe .SetOpacity (_caac .parseFloatAttr (_cddcb ,_daab )); -case "\u006d\u0061\u0072\u0067\u0069\u006e":_eece :=_caac .parseMarginAttr (_cddcb ,_daab );_ddgbe .SetMargins (_eece .Left ,_eece .Right ,_eece .Top ,_eece .Bottom );case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_ddgbe .SetFitMode (_caac .parseFitModeAttr (_cddcb ,_daab )); -case "\u0078":_ddgbe .SetPos (_caac .parseFloatAttr (_cddcb ,_daab ),_ddgbe ._gefa );case "\u0079":_ddgbe .SetPos (_ddgbe ._fcfa ,_caac .parseFloatAttr (_cddcb ,_daab ));case "\u0077\u0069\u0064t\u0068":_ddgbe .SetWidth (_caac .parseFloatAttr (_cddcb ,_daab )); -case "\u0068\u0065\u0069\u0067\u0068\u0074":_ddgbe .SetHeight (_caac .parseFloatAttr (_cddcb ,_daab ));case "\u0061\u006e\u0067l\u0065":_ddgbe .SetAngle (_caac .parseFloatAttr (_cddcb ,_daab ));case "\u0073\u0072\u0063":break ;default:_caac .nodeLogDebug (_aaab ,"\u0055n\u0073\u0075p\u0070\u006f\u0072\u0074e\u0064\u0020\u0069m\u0061\u0067\u0065\u0020\u0061\u0074\u0074\u0072\u0069bu\u0074\u0065\u003a \u0060\u0025s\u0060\u002e\u0020\u0053\u006b\u0069p\u0070\u0069n\u0067\u002e",_cddcb ); -};};return _ddgbe ,nil ;};func _eddb (_abggcd string )([]string ,error ){var (_cgfeb []string ;_agcff []rune ;);for _ ,_dfbcc :=range _abggcd {if _dfbcc =='\u000A'{if len (_agcff )> 0{_cgfeb =append (_cgfeb ,string (_agcff ));};_cgfeb =append (_cgfeb ,string (_dfbcc )); -_agcff =nil ;continue ;};_agcff =append (_agcff ,_dfbcc );};if len (_agcff )> 0{_cgfeb =append (_cgfeb ,string (_agcff ));};var _ebfba []string ;for _ ,_acegf :=range _cgfeb {_ebdf :=[]rune (_acegf );_afeddb :=_ab .NewScanner (_ebdf );var _aeag []rune ; -for _babcc :=0;_babcc < len (_ebdf );_babcc ++{_ ,_dabgc ,_ffeb :=_afeddb .Next ();if _ffeb !=nil {return nil ,_ffeb ;};if _dabgc ==_ab .BreakProhibited ||_efe .IsSpace (_ebdf [_babcc ]){_aeag =append (_aeag ,_ebdf [_babcc ]);if _efe .IsSpace (_ebdf [_babcc ]){_ebfba =append (_ebfba ,string (_aeag )); -_aeag =[]rune {};};continue ;}else {if len (_aeag )> 0{_ebfba =append (_ebfba ,string (_aeag ));};_aeag =[]rune {_ebdf [_babcc ]};};};if len (_aeag )> 0{_ebfba =append (_ebfba ,string (_aeag ));};};return _ebfba ,nil ;}; +// TemplateOptions contains options and resources to use when rendering +// a template with a Creator instance. +// All the resources in the map fields can be referenced by their +// name/key in the template which is rendered using the options instance. +type TemplateOptions struct{ -// DrawWithContext draws the Block using the specified drawing context. -func (_fde *Block )DrawWithContext (d Drawable ,ctx DrawContext )error {_fge ,_ ,_dcf :=d .GeneratePageBlocks (ctx );if _dcf !=nil {return _dcf ;};if len (_fge )!=1{return _e .New ("\u0043\u0061\u006e\u006e\u006ft\u0020\u0066\u0069\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020i\u006e\u0074\u006f\u0020\u0061\u006e\u0020\u0065\u0078\u0069\u0073\u0074\u0069\u006e\u0067\u0020\u0073\u0070\u0061\u0063\u0065"); -};for _ ,_dbe :=range _fge {if _dfa :=_fde .mergeBlocks (_dbe );_dfa !=nil {return _dfa ;};};return nil ;}; +// HelperFuncMap is used to define functions which can be accessed +// inside the rendered templates by their assigned names. +HelperFuncMap _dg .FuncMap ; -// RadialShading holds information that will be used to render a radial shading. -type RadialShading struct{_gcbg *shading ;_beaeb *_fa .PdfRectangle ;_egce AnchorPoint ;_eebg float64 ;_dged float64 ;_ffdcgf float64 ;_cbbaf float64 ;}; +// SubtemplateMap contains templates which can be rendered alongside +// the main template. They can be accessed using their assigned names +// in the main template or in the other subtemplates. +// Subtemplates defined inside the subtemplates specified in the map +// can be accessed directly. +// All resources available to the main template are also available +// to the subtemplates. +SubtemplateMap map[string ]_ae .Reader ; -// GeneratePageBlocks draws the polygon on a new block representing the page. -// Implements the Drawable interface. -func (_gebaa *Polygon )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_dddba :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_edeaf ,_fegc :=_dddba .setOpacity (_gebaa ._bege ,_gebaa ._dgcea );if _fegc !=nil {return nil ,ctx ,_fegc ; -};_cbeg :=_gebaa ._cgecf ;_cbeg .FillEnabled =_cbeg .FillColor !=nil ;_cbeg .BorderEnabled =_cbeg .BorderColor !=nil &&_cbeg .BorderWidth > 0;_faedc :=_cbeg .Points ;_fbaga :=_fa .PdfRectangle {};_efcc :=false ;for _gefc :=range _faedc {for _cfbd :=range _faedc [_gefc ]{_dcff :=&_faedc [_gefc ][_cfbd ]; -_dcff .Y =ctx .PageHeight -_dcff .Y ;if !_efcc {_fbaga .Llx =_dcff .X ;_fbaga .Lly =_dcff .Y ;_fbaga .Urx =_dcff .X ;_fbaga .Ury =_dcff .Y ;_efcc =true ;}else {_fbaga .Llx =_ec .Min (_fbaga .Llx ,_dcff .X );_fbaga .Lly =_ec .Min (_fbaga .Lly ,_dcff .Y ); -_fbaga .Urx =_ec .Max (_fbaga .Urx ,_dcff .X );_fbaga .Ury =_ec .Max (_fbaga .Ury ,_dcff .Y );};};};if _cbeg .FillEnabled {_bedef :=_ddcd (_dddba ,_gebaa ._cgecf .FillColor ,_gebaa ._beba ,func ()Rectangle {return Rectangle {_dfbc :_fbaga .Llx ,_gbfgg :_fbaga .Lly ,_faaa :_fbaga .Width (),_baag :_fbaga .Height ()}; -});if _bedef !=nil {return nil ,ctx ,_bedef ;};};_fdbc ,_ ,_fegc :=_cbeg .Draw (_edeaf );if _fegc !=nil {return nil ,ctx ,_fegc ;};if _fegc =_dddba .addContentsByString (string (_fdbc ));_fegc !=nil {return nil ,ctx ,_fegc ;};return []*Block {_dddba },ctx ,nil ; -}; +// FontMap contains pre-loaded fonts which can be accessed +// inside the rendered templates by their assigned names. +FontMap map[string ]*_ggc .PdfFont ; -// TextOverflow determines the behavior of paragraph text which does -// not fit in the available space. -type TextOverflow int ;func _aagg (_ebeac *_fa .Image )(*Image ,error ){_ggadb :=float64 (_ebeac .Width );_ecfg :=float64 (_ebeac .Height );return &Image {_dca :_ebeac ,_ccgea :_ggadb ,_gcdc :_ecfg ,_gfef :_ggadb ,_ffab :_ecfg ,_dgb :0,_ddddf :1.0,_fdad :PositionRelative },nil ; -}; +// ImageMap contains pre-loaded images which can be accessed +// inside the rendered templates by their assigned names. +ImageMap map[string ]*_ggc .Image ; -// NewPolyBezierCurve creates a new composite Bezier (polybezier) curve. -func (_fceb *Creator )NewPolyBezierCurve (curves []_ce .CubicBezierCurve )*PolyBezierCurve {return _fedcg (curves );}; +// ColorMap contains colors which can be accessed +// inside the rendered templates by their assigned names. +ColorMap map[string ]Color ; -// Drawable is a widget that can be used to draw with the Creator. -type Drawable interface{ +// ChartMap contains charts which can be accessed +// inside the rendered templates by their assigned names. +ChartMap map[string ]_gg .ChartRenderable ;};func (_addec *templateProcessor )parseBorderRadiusAttr (_egfc ,_gdffe string )(_dagdg ,_cfbbd ,_fafeb ,_bgfa float64 ){_ca .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020\u0062o\u0072\u0064\u0065r\u0020\u0072\u0061\u0064\u0069\u0075\u0073\u0020\u0061tt\u0072\u0069\u0062u\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060,\u0020\u0025s\u0029\u002e",_egfc ,_gdffe ); +switch _gbaf :=_dc .Fields (_gdffe );len (_gbaf ){case 1:_dagdg ,_ =_a .ParseFloat (_gbaf [0],64);_cfbbd =_dagdg ;_fafeb =_dagdg ;_bgfa =_dagdg ;case 2:_dagdg ,_ =_a .ParseFloat (_gbaf [0],64);_fafeb =_dagdg ;_cfbbd ,_ =_a .ParseFloat (_gbaf [1],64);_bgfa =_cfbbd ; +case 3:_dagdg ,_ =_a .ParseFloat (_gbaf [0],64);_cfbbd ,_ =_a .ParseFloat (_gbaf [1],64);_bgfa =_cfbbd ;_fafeb ,_ =_a .ParseFloat (_gbaf [2],64);case 4:_dagdg ,_ =_a .ParseFloat (_gbaf [0],64);_cfbbd ,_ =_a .ParseFloat (_gbaf [1],64);_fafeb ,_ =_a .ParseFloat (_gbaf [2],64); +_bgfa ,_ =_a .ParseFloat (_gbaf [3],64);};return _dagdg ,_cfbbd ,_fafeb ,_bgfa ;}; -// GeneratePageBlocks draw onto blocks representing Page contents. As the content can wrap over many pages, multiple -// templates are returned, one per Page. The function also takes a draw context containing information -// where to draw (if relative positioning) and the available height to draw on accounting for Margins etc. -GeneratePageBlocks (_edc DrawContext )([]*Block ,DrawContext ,error );}; +// Level returns the indentation level of the TOC line. +func (_bcbca *TOCLine )Level ()uint {return _bcbca ._daebd }; -// ColorRGBFrom8bit creates a Color from 8-bit (0-255) r,g,b values. -// Example: -// red := ColorRGBFrom8Bit(255, 0, 0) -func ColorRGBFrom8bit (r ,g ,b byte )Color {return rgbColor {_abec :float64 (r )/255.0,_eafb :float64 (g )/255.0,_baa :float64 (b )/255.0};};type componentRenderer interface{Draw (_ggfbc Drawable )error ;};func (_cca *Invoice )drawSection (_ddc ,_deabe string )[]*StyledParagraph {var _fbfbb []*StyledParagraph ; -if _ddc !=""{_ddgac :=_defdc (_cca ._gaga );_ddgac .SetMargins (0,0,0,5);_ddgac .Append (_ddc );_fbfbb =append (_fbfbb ,_ddgac );};if _deabe !=""{_cgde :=_defdc (_cca ._bgeac );_cgde .Append (_deabe );_fbfbb =append (_fbfbb ,_cgde );};return _fbfbb ;}; +// BuyerAddress returns the buyer address used in the invoice template. +func (_fbe *Invoice )BuyerAddress ()*InvoiceAddress {return _fbe ._dcfc }; +// DrawWithContext draws the Block using the specified drawing context. +func (_eda *Block )DrawWithContext (d Drawable ,ctx DrawContext )error {_ccg ,_ ,_cddg :=d .GeneratePageBlocks (ctx );if _cddg !=nil {return _cddg ;};if len (_ccg )!=1{return ErrContentNotFit ;};for _ ,_dff :=range _ccg {if _bef :=_eda .mergeBlocks (_dff ); +_bef !=nil {return _bef ;};};return nil ;};func _cddc (_ebdec string )([]string ,error ){var (_facbe []string ;_fdef []rune ;);for _ ,_bdabc :=range _ebdec {if _bdabc =='\u000A'{if len (_fdef )> 0{_facbe =append (_facbe ,string (_fdef ));};_facbe =append (_facbe ,string (_bdabc )); +_fdef =nil ;continue ;};_fdef =append (_fdef ,_bdabc );};if len (_fdef )> 0{_facbe =append (_facbe ,string (_fdef ));};var _eddbcd []string ;for _ ,_eebdg :=range _facbe {_bacg :=[]rune (_eebdg );_dggb :=_ee .NewScanner (_bacg );var _gefb []rune ;for _fecdgb :=0; +_fecdgb < len (_bacg );_fecdgb ++{_ ,_gffbg ,_agdaa :=_dggb .Next ();if _agdaa !=nil {return nil ,_agdaa ;};if _gffbg ==_ee .BreakProhibited ||_cd .IsSpace (_bacg [_fecdgb ]){_gefb =append (_gefb ,_bacg [_fecdgb ]);if _cd .IsSpace (_bacg [_fecdgb ]){_eddbcd =append (_eddbcd ,string (_gefb )); +_gefb =[]rune {};};continue ;}else {if len (_gefb )> 0{_eddbcd =append (_eddbcd ,string (_gefb ));};_gefb =[]rune {_bacg [_fecdgb ]};};};if len (_gefb )> 0{_eddbcd =append (_eddbcd ,string (_gefb ));};};return _eddbcd ,nil ;}; -// Height returns the height of the Paragraph. The height is calculated based on the input text and how it is wrapped -// within the container. Does not include Margins. -func (_fcgcf *StyledParagraph )Height ()float64 {_fcgcf .wrapText ();var _abfbe float64 ;for _ ,_feabb :=range _fcgcf ._egffa {var _ffde float64 ;for _ ,_acfc :=range _feabb {_aadff :=_fcgcf ._gbcb *_acfc .Style .FontSize ;if _aadff > _ffde {_ffde =_aadff ; -};};_abfbe +=_ffde ;};return _abfbe ;}; +// ScaleToWidth scales the ellipse to the specified width. The height of +// the ellipse is scaled so that the aspect ratio is maintained. +func (_eceb *Ellipse )ScaleToWidth (w float64 ){_bbc :=_eceb ._dabc /_eceb ._eded ;_eceb ._eded =w ;_eceb ._dabc =w *_bbc ;}; -// AppendCurve appends a Bezier curve to the filled curve. -func (_fgecb *FilledCurve )AppendCurve (curve _ce .CubicBezierCurve )*FilledCurve {_fgecb ._edeb =append (_fgecb ._edeb ,curve );return _fgecb ;}; +// NewPolygon creates a new polygon. +func (_aabcb *Creator )NewPolygon (points [][]_fc .Point )*Polygon {return _bgcb (points )};func _fdbcg (_decg *templateProcessor ,_cecd *templateNode )(interface{},error ){return _decg .parseBackground (_cecd );}; -// Draw draws the drawable d on the block. -// Note that the drawable must not wrap, i.e. only return one block. Otherwise an error is returned. -func (_bgfc *Block )Draw (d Drawable )error {_eca :=DrawContext {};_eca .Width =_bgfc ._bc ;_eca .Height =_bgfc ._dec ;_eca .PageWidth =_bgfc ._bc ;_eca .PageHeight =_bgfc ._dec ;_eca .X =0;_eca .Y =0;_dgd ,_ ,_geg :=d .GeneratePageBlocks (_eca );if _geg !=nil {return _geg ; -};if len (_dgd )!=1{return _e .New ("\u0043\u0061\u006e\u006e\u006ft\u0020\u0066\u0069\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020i\u006e\u0074\u006f\u0020\u0061\u006e\u0020\u0065\u0078\u0069\u0073\u0074\u0069\u006e\u0067\u0020\u0073\u0070\u0061\u0063\u0065"); -};for _ ,_fbf :=range _dgd {if _fc :=_bgfc .mergeBlocks (_fbf );_fc !=nil {return _fc ;};};return nil ;}; +// SetAngle sets the rotation angle in degrees. +func (_bgf *Block )SetAngle (angleDeg float64 ){_bgf ._de =angleDeg }; -// DueDate returns the invoice due date description and value cells. -// The returned values can be used to customize the styles of the cells. -func (_dddb *Invoice )DueDate ()(*InvoiceCell ,*InvoiceCell ){return _dddb ._gdcc [0],_dddb ._gdcc [1]}; +// GeneratePageBlocks draw graphic svg into block. +func (_edce *GraphicSVG )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_defb :=ctx ;_aecg :=_edce ._dgdb .IsRelative ();var _cdgf []*Block ;if _aecg {_bbae :=1.0;_dbfa :=_edce ._eaff .Top ;if _edce ._dgaf .Height > ctx .Height -_edce ._eaff .Top {_cdgf =[]*Block {NewBlock (ctx .PageWidth ,ctx .PageHeight -ctx .Y )}; +var _ggaa error ;if _ ,ctx ,_ggaa =_cbag ().GeneratePageBlocks (ctx );_ggaa !=nil {return nil ,ctx ,_ggaa ;};_dbfa =0;};ctx .X +=_edce ._eaff .Left +_bbae ;ctx .Y +=_dbfa ;ctx .Width -=_edce ._eaff .Left +_edce ._eaff .Right +2*_bbae ;ctx .Height -=_dbfa ; +}else {ctx .X =_edce ._bgag ;ctx .Y =_edce ._gcfge ;};_egbg :=_bdb .NewContentCreator ();_egbg .Translate (0,ctx .PageHeight );_egbg .Scale (1,-1);_egbg .Translate (ctx .X ,ctx .Y );_abbb :=_edce ._dgaf .Width /_edce ._dgaf .ViewBox .W ;_bdcb :=_edce ._dgaf .Height /_edce ._dgaf .ViewBox .H ; +_bgbcd :=0.0;_bagg :=0.0;if _aecg {_bgbcd =_edce ._bgag -(_edce ._dgaf .ViewBox .X *_b .Max (_abbb ,_bdcb ));_bagg =_edce ._gcfge -(_edce ._dgaf .ViewBox .Y *_b .Max (_abbb ,_bdcb ));};_edce ._dgaf .ToContentCreator (_egbg ,_abbb ,_bdcb ,_bgbcd ,_bagg ); +_dbag :=NewBlock (ctx .PageWidth ,ctx .PageHeight );if _fgfe :=_dbag .addContentsByString (_egbg .String ());_fgfe !=nil {return nil ,ctx ,_fgfe ;};if _aecg {_gbab :=_edce .Height ()+_edce ._eaff .Bottom ;ctx .Y +=_gbab ;ctx .Height -=_gbab ;}else {ctx =_defb ; +};_cdgf =append (_cdgf ,_dbag );return _cdgf ,ctx ,nil ;}; -// SetOutlineTree adds the specified outline tree to the PDF file generated -// by the creator. Adding an external outline tree disables the automatic -// generation of outlines done by the creator for the relevant components. -func (_gdac *Creator )SetOutlineTree (outlineTree *_fa .PdfOutlineTreeNode ){_gdac ._abfe =outlineTree }; +// ScaleToWidth sets the graphic svg scaling factor with the given width. +func (_ddgd *GraphicSVG )ScaleToWidth (w float64 ){_ececd :=_ddgd ._dgaf .Height /_ddgd ._dgaf .Width ;_ddgd ._dgaf .Width =w ;_ddgd ._dgaf .Height =w *_ececd ;_ddgd ._dgaf .SetScaling (_ececd ,_ececd );}; -// SetHorizontalAlignment sets the horizontal alignment of the image. -func (_dae *Image )SetHorizontalAlignment (alignment HorizontalAlignment ){_dae ._gege =alignment }; +// Width returns the current page width. +func (_aba *Creator )Width ()float64 {return _aba ._abf };func (_cbff *List )markerWidth ()float64 {var _dccga float64 ;for _ ,_fdbg :=range _cbff ._bede {_aaadb :=_egdc (_cbff ._dagb );_aaadb .SetEnableWrap (false );_aaadb .SetTextAlignment (TextAlignmentRight ); +_aaadb .Append (_fdbg ._eeed .Text ).Style =_fdbg ._eeed .Style ;_dagf :=_aaadb .getTextWidth ()/1000.0;if _dccga < _dagf {_dccga =_dagf ;};};return _dccga ;};func (_fdf rgbColor )ToRGB ()(float64 ,float64 ,float64 ){return _fdf ._efdc ,_fdf ._fgbf ,_fdf ._acbd }; -// New creates a new instance of the PDF Creator. -func New ()*Creator {const _cde ="c\u0072\u0065\u0061\u0074\u006f\u0072\u002e\u004e\u0065\u0077";_eafa :=&Creator {};_eafa ._ccgg =[]*_fa .PdfPage {};_eafa ._ecd =map[*_fa .PdfPage ]*Block {};_eafa ._fgec =map[*_fa .PdfPage ]*pageTransformations {};_eafa .SetPageSize (PageSizeLetter ); -_dcde :=0.1*_eafa ._ggfe ;_eafa ._bcbf .Left =_dcde ;_eafa ._bcbf .Right =_dcde ;_eafa ._bcbf .Top =_dcde ;_eafa ._bcbf .Bottom =_dcde ;var _efd error ;_eafa ._aebd ,_efd =_fa .NewStandard14Font (_fa .HelveticaName );if _efd !=nil {_eafa ._aebd =_fa .DefaultFont (); -};_eafa ._gaba ,_efd =_fa .NewStandard14Font (_fa .HelveticaBoldName );if _efd !=nil {_eafa ._aebd =_fa .DefaultFont ();};_eafa ._bbgg =_eafa .NewTOC ("\u0054\u0061\u0062\u006c\u0065\u0020\u006f\u0066\u0020\u0043\u006f\u006et\u0065\u006e\u0074\u0073"); -_eafa .AddOutlines =true ;_eafa ._ffgcf =_fa .NewOutline ();_ae .TrackUse (_cde );return _eafa ;}; -// Scale sets the scale ratio with `X` factor and `Y` factor for the graphic svg. -func (_aacc *GraphicSVG )Scale (xFactor ,yFactor float64 ){_aacc ._baea .Width =xFactor *_aacc ._baea .Width ;_aacc ._baea .Height =yFactor *_aacc ._baea .Height ;_aacc ._baea .SetScaling (xFactor ,yFactor );}; +// Columns returns all the columns in the invoice line items table. +func (_bcgge *Invoice )Columns ()[]*InvoiceCell {return _bcgge ._eag }; -// SetAngle sets Image rotation angle in degrees. -func (_caba *Image )SetAngle (angle float64 ){_caba ._dgb =angle }; +// SetFillColor sets background color for border. +func (_aeba *border )SetFillColor (col Color ){_aeba ._cde =col }; -// PageBreak represents a page break for a chapter. -type PageBreak struct{}; +// GetMargins returns the margins of the ellipse: left, right, top, bottom. +func (_eebec *Ellipse )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _eebec ._cadg .Left ,_eebec ._cadg .Right ,_eebec ._cadg .Top ,_eebec ._cadg .Bottom ;}; -// SetFitMode sets the fit mode of the ellipse. -// NOTE: The fit mode is only applied if relative positioning is used. -func (_ffcca *Ellipse )SetFitMode (fitMode FitMode ){_ffcca ._facg =fitMode };func _ccbeg (_bffc int64 ,_fabgd ,_dcdg ,_dgfdd float64 )*_fa .PdfAnnotation {_begf :=_fa .NewPdfAnnotationLink ();_bcadd :=_fa .NewBorderStyle ();_bcadd .SetBorderWidth (0); -_begf .BS =_bcadd .ToPdfObject ();if _bffc < 0{_bffc =0;};_begf .Dest =_ea .MakeArray (_ea .MakeInteger (_bffc ),_ea .MakeName ("\u0058\u0059\u005a"),_ea .MakeFloat (_fabgd ),_ea .MakeFloat (_dcdg ),_ea .MakeFloat (_dgfdd ));return _begf .PdfAnnotation ; -}; +// GeneratePageBlocks draws the chart onto a block. +func (_gedc *Chart )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_fcbf :=ctx ;_bgga :=_gedc ._fbc .IsRelative ();var _dgd []*Block ;if _bgga {_agaa :=1.0;_gced :=_gedc ._gcff .Top ;if float64 (_gedc ._ebbf .Height ())> ctx .Height -_gedc ._gcff .Top {_dgd =[]*Block {NewBlock (ctx .PageWidth ,ctx .PageHeight -ctx .Y )}; +var _aebf error ;if _ ,ctx ,_aebf =_cbag ().GeneratePageBlocks (ctx );_aebf !=nil {return nil ,ctx ,_aebf ;};_gced =0;};ctx .X +=_gedc ._gcff .Left +_agaa ;ctx .Y +=_gced ;ctx .Width -=_gedc ._gcff .Left +_gedc ._gcff .Right +2*_agaa ;ctx .Height -=_gced ; +_gedc ._ebbf .SetWidth (int (ctx .Width ));}else {ctx .X =_gedc ._bfe ;ctx .Y =_gedc ._gbbc ;};_ece :=_bdb .NewContentCreator ();_ece .Translate (0,ctx .PageHeight );_ece .Scale (1,-1);_ece .Translate (ctx .X ,ctx .Y );_bfdd :=NewBlock (ctx .PageWidth ,ctx .PageHeight ); +_gedc ._ebbf .Render (_ec .NewRenderer (_ece ,_bfdd ._ge ),nil );if _ccf :=_bfdd .addContentsByString (_ece .String ());_ccf !=nil {return nil ,ctx ,_ccf ;};if _bgga {_gcfg :=_gedc .Height ()+_gedc ._gcff .Bottom ;ctx .Y +=_gcfg ;ctx .Height -=_gcfg ;}else {ctx =_fcbf ; +};_dgd =append (_dgd ,_bfdd );return _dgd ,ctx ,nil ;}; -// CreateTableOfContents sets a function to generate table of contents. -func (_bae *Creator )CreateTableOfContents (genTOCFunc func (_abac *TOC )error ){_bae ._eccg =genTOCFunc ;}; +// EnableWordWrap sets the paragraph word wrap flag. +func (_edcfa *StyledParagraph )EnableWordWrap (val bool ){_edcfa ._cbeg =val };func (_dffdb *List )split (_beaga DrawContext )(_adga ,_fdfa *List ){var (_gdcad float64 ;_ffbd ,_dfeec []*listItem ;);_adace :=_beaga .Width -_dffdb ._fed .Horizontal ()-_dffdb ._egab -_dffdb .markerWidth (); +_eadfe :=_dffdb .markerWidth ();for _gfbg ,_fcge :=range _dffdb ._bede {_cdeb :=_fcge .ctxHeight (_adace );_gdcad +=_cdeb ;if _gdcad <=_beaga .Height {_ffbd =append (_ffbd ,_fcge );}else {switch _bead :=_fcge ._gdceb .(type ){case *List :_baggg :=_beaga ; +_baggg .Height =_b .Floor (_cdeb -(_gdcad -_beaga .Height ));_cede ,_fbdce :=_bead .split (_baggg );if _cede !=nil {_fcbc :=_fcf ();_fcbc ._eeed =_fcge ._eeed ;_fcbc ._gdceb =_cede ;_ffbd =append (_ffbd ,_fcbc );};if _fbdce !=nil {_gfgea :=_bead ._ebgba .Style .FontSize ; +_dgggb ,_dbga :=_bead ._ebgba .Style .Font .GetRuneMetrics (' ');if _dbga {_gfgea =_bead ._ebgba .Style .FontSize *_dgggb .Wx *_bead ._ebgba .Style .horizontalScale ()/1000.0;};_fdda :=_dc .Repeat ("\u0020",int (_eadfe /_gfgea ));_ecbd :=_fcf ();_ecbd ._eeed =*NewTextChunk (_fdda ,_bead ._ebgba .Style ); +_ecbd ._gdceb =_fbdce ;_dfeec =append (_dfeec ,_ecbd );_dfeec =append (_dfeec ,_dffdb ._bede [_gfbg +1:]...);};default:_dfeec =_dffdb ._bede [_gfbg :];};if len (_dfeec )> 0{break ;};};};if len (_ffbd )> 0{_adga =_edbe (_dffdb ._dagb );*_adga =*_dffdb ; +_adga ._bede =_ffbd ;};if len (_dfeec )> 0{_fdfa =_edbe (_dffdb ._dagb );*_fdfa =*_dffdb ;_fdfa ._bede =_dfeec ;};return _adga ,_fdfa ;}; -// Width returns the width of the chart. In relative positioning mode, -// all the available context width is used at render time. -func (_bbcc *Chart )Width ()float64 {return float64 (_bbcc ._ccf .Width ())};const (TextVerticalAlignmentBaseline TextVerticalAlignment =iota ;TextVerticalAlignmentCenter ;TextVerticalAlignmentBottom ;TextVerticalAlignmentTop ;);func (_edgc *templateProcessor )parseTextOverflowAttr (_gggbb ,_eacd string )TextOverflow {_eef .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020\u0074e\u0078\u0074\u0020o\u0076\u0065\u0072\u0066\u006c\u006f\u0077\u0020\u0061tt\u0072\u0069\u0062u\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060,\u0020\u0025s\u0029\u002e",_gggbb ,_eacd ); -_cfbac :=map[string ]TextOverflow {"\u0076i\u0073\u0069\u0062\u006c\u0065":TextOverflowVisible ,"\u0068\u0069\u0064\u0064\u0065\u006e":TextOverflowHidden }[_eacd ];return _cfbac ;};type templateProcessor struct{creator *Creator ;_bbfa []byte ;_cbdga *TemplateOptions ; -_fcaeg componentRenderer ;_cdgag string ;};func _bdced (_bgfbb *templateProcessor ,_affaa *templateNode )(interface{},error ){return _bgfbb .parseListMarker (_affaa );};func (_aab *Image )applyFitMode (_bac float64 ){_bac -=_aab ._gbba .Left +_aab ._gbba .Right ; -switch _aab ._bdbe {case FitModeFillWidth :_aab .ScaleToWidth (_bac );};};func (_efac *Invoice )generateLineBlocks (_ddbe DrawContext )([]*Block ,DrawContext ,error ){_dcbb :=_bgfa (len (_efac ._cgcg ));_dcbb .SetMargins (0,0,25,0);for _ ,_efab :=range _efac ._cgcg {_efag :=_defdc (_efab .TextStyle ); -_efag .SetMargins (0,0,1,0);_efag .Append (_efab .Value );_cgcba :=_dcbb .NewCell ();_cgcba .SetHorizontalAlignment (_efab .Alignment );_cgcba .SetBackgroundColor (_efab .BackgroundColor );_efac .setCellBorder (_cgcba ,_efab );_cgcba .SetContent (_efag ); -};for _ ,_cagcg :=range _efac ._cgec {for _ ,_gfag :=range _cagcg {_agaab :=_defdc (_gfag .TextStyle );_agaab .SetMargins (0,0,3,2);_agaab .Append (_gfag .Value );_ebcd :=_dcbb .NewCell ();_ebcd .SetHorizontalAlignment (_gfag .Alignment );_ebcd .SetBackgroundColor (_gfag .BackgroundColor ); -_efac .setCellBorder (_ebcd ,_gfag );_ebcd .SetContent (_agaab );};};return _dcbb .GeneratePageBlocks (_ddbe );}; +// Subtotal returns the invoice subtotal description and value cells. +// The returned values can be used to customize the styles of the cells. +func (_edgc *Invoice )Subtotal ()(*InvoiceCell ,*InvoiceCell ){return _edgc ._befc [0],_edgc ._befc [1]};func (_ebee *templateProcessor )parseColor (_febf string )Color {if _febf ==""{return nil ;};_ccbb ,_ddee :=_ebee ._affcb .ColorMap [_febf ];if _ddee {return _ccbb ; +};if _febf [0]=='#'{return ColorRGBFromHex (_febf );};return nil ;};func (_gcdc *templateProcessor )parseCellAlignmentAttr (_dgfad ,_dceb string )CellHorizontalAlignment {_ca .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020c\u0065\u006c\u006c\u0020\u0061\u006c\u0069g\u006e\u006d\u0065\u006e\u0074\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028`\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_dgfad ,_dceb ); +_aegf :=map[string ]CellHorizontalAlignment {"\u006c\u0065\u0066\u0074":CellHorizontalAlignmentLeft ,"\u0063\u0065\u006e\u0074\u0065\u0072":CellHorizontalAlignmentCenter ,"\u0072\u0069\u0067h\u0074":CellHorizontalAlignmentRight }[_dceb ];return _aegf ; +};func (_dbcf *Paragraph )wrapText ()error {if !_dbcf ._bebg ||int (_dbcf ._dcdb )<=0{_dbcf ._cbcf =[]string {_dbcf ._age };return nil ;};_gfbd :=NewTextChunk (_dbcf ._age ,TextStyle {Font :_dbcf ._fggb ,FontSize :_dbcf ._fcbfa });_eaaa ,_acdf :=_gfbd .Wrap (_dbcf ._dcdb ); +if _acdf !=nil {return _acdf ;};if _dbcf ._bebd > 0&&len (_eaaa )> _dbcf ._bebd {_eaaa =_eaaa [:_dbcf ._bebd ];};_dbcf ._cbcf =_eaaa ;return nil ;}; -// GetIndent get the cell's left indent. -func (_ebadd *TableCell )GetIndent ()float64 {return _ebadd ._ddbeg }; +// NewChart creates a new creator drawable based on the provided +// unichart chart component. +func NewChart (chart _gg .ChartRenderable )*Chart {return _bga (chart )};func _cgee (_efdg *_cc .GraphicSVG )(*GraphicSVG ,error ){return &GraphicSVG {_dgaf :_efdg ,_dgdb :PositionRelative ,_eaff :Margins {Top :10,Bottom :10}},nil ;}; -// Heading returns the heading component of the table of contents. -func (_ffdfb *TOC )Heading ()*StyledParagraph {return _ffdfb ._edbe };func (_fbafd *templateProcessor )parseBoolAttr (_eggda ,_affe string )bool {_eef .Log .Debug ("P\u0061\u0072\u0073\u0069\u006e\u0067 \u0062\u006f\u006f\u006c\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_eggda ,_affe ); -_ceafc ,_ :=_a .ParseBool (_affe );return _affe ==""||_ceafc ;};func (_beda *StyledParagraph )wrapText ()error {return _beda .wrapChunks (true )};func _acgfb (_afdf string )(*Image ,error ){_dabg ,_bbeg :=_df .Open (_afdf );if _bbeg !=nil {return nil ,_bbeg ; -};defer _dabg .Close ();_dedd ,_bbeg :=_fa .ImageHandling .Read (_dabg );if _bbeg !=nil {_eef .Log .Error ("\u0045\u0072\u0072or\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_bbeg );return nil ,_bbeg ; -};return _aagg (_dedd );};func _fbab (_gbgad *_f .Decoder )(int ,int ){return 0,0}; +// Angle returns the block rotation angle in degrees. +func (_eeg *Block )Angle ()float64 {return _eeg ._de }; -// Link returns link information for this line. -func (_abebd *TOCLine )Link ()(_dacg int64 ,_fbbec ,_ccedfa float64 ){return _abebd ._gdda ,_abebd ._faga ,_abebd ._eeaa ;}; +// Inline returns whether the inline mode of the division is active. +func (_cgde *Division )Inline ()bool {return _cgde ._aeadf };func (_ggce *Invoice )generateTotalBlocks (_gffec DrawContext )([]*Block ,DrawContext ,error ){_bafa :=_gdec (4);_bafa .SetMargins (0,0,10,10);_cfacd :=[][2]*InvoiceCell {_ggce ._befc };_cfacd =append (_cfacd ,_ggce ._edb ...); +_cfacd =append (_cfacd ,_ggce ._ada );for _ ,_bbcb :=range _cfacd {_geed ,_gbdd :=_bbcb [0],_bbcb [1];if _gbdd .Value ==""{continue ;};_bafa .SkipCells (2);_eade :=_bafa .NewCell ();_eade .SetBackgroundColor (_geed .BackgroundColor );_eade .SetHorizontalAlignment (_gbdd .Alignment ); +_ggce .setCellBorder (_eade ,_geed );_cgfec :=_egdc (_geed .TextStyle );_cgfec .SetMargins (0,0,2,1);_cgfec .Append (_geed .Value );_eade .SetContent (_cgfec );_eade =_bafa .NewCell ();_eade .SetBackgroundColor (_gbdd .BackgroundColor );_eade .SetHorizontalAlignment (_gbdd .Alignment ); +_ggce .setCellBorder (_eade ,_geed );_cgfec =_egdc (_gbdd .TextStyle );_cgfec .SetMargins (0,0,2,1);_cgfec .Append (_gbdd .Value );_eade .SetContent (_cgfec );};return _bafa .GeneratePageBlocks (_gffec );}; -// AddShadingResource adds shading dictionary inside the resources dictionary. -func (_cbbfa *LinearShading )AddShadingResource (block *Block )(_ceae _ea .PdfObjectName ,_fbgb error ){_daebg :=1;_ceae =_ea .PdfObjectName ("\u0053\u0068"+_a .Itoa (_daebg ));for block ._gae .HasShadingByName (_ceae ){_daebg ++;_ceae =_ea .PdfObjectName ("\u0053\u0068"+_a .Itoa (_daebg )); -};if _cced :=block ._gae .SetShadingByName (_ceae ,_cbbfa .shadingModel ().ToPdfObject ());_cced !=nil {return "",_cced ;};return _ceae ,nil ;};func _fedcg (_daca []_ce .CubicBezierCurve )*PolyBezierCurve {return &PolyBezierCurve {_cadfg :&_ce .PolyBezierCurve {Curves :_daca ,BorderColor :_fa .NewPdfColorDeviceRGB (0,0,0),BorderWidth :1.0},_egff :1.0,_dagfe :1.0}; -}; +// NewPolyline creates a new polyline. +func (_gggg *Creator )NewPolyline (points []_fc .Point )*Polyline {return _ecaea (points )}; -// NewList creates a new list. -func (_egge *Creator )NewList ()*List {return _ddaea (_egge .NewTextStyle ())};func (_caafa *templateProcessor )parseTextVerticalAlignmentAttr (_afcf ,_efadg string )TextVerticalAlignment {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0074\u0065\u0078\u0074\u0020\u0076\u0065r\u0074\u0069\u0063\u0061\u006c\u0020\u0061\u006c\u0069\u0067\u006e\u006d\u0065n\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a (\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_afcf ,_efadg ); -_edccg :=map[string ]TextVerticalAlignment {"\u0062\u0061\u0073\u0065\u006c\u0069\u006e\u0065":TextVerticalAlignmentBaseline ,"\u0063\u0065\u006e\u0074\u0065\u0072":TextVerticalAlignmentCenter }[_efadg ];return _edccg ;}; +// ScaleToHeight scale Image to a specified height h, maintaining the aspect ratio. +func (_acfb *Image )ScaleToHeight (h float64 ){_faeg :=_acfb ._cagba /_acfb ._efef ;_acfb ._efef =h ;_acfb ._cagba =h *_faeg ;};func (_dagbf *templateProcessor )parseBackground (_ebeb *templateNode )(interface{},error ){_ggdfc :=&Background {};for _ ,_cebge :=range _ebeb ._gbdee .Attr {_ecdg :=_cebge .Value ; +switch _gegb :=_cebge .Name .Local ;_gegb {case "\u0066\u0069\u006c\u006c\u002d\u0063\u006f\u006c\u006f\u0072":_ggdfc .FillColor =_dagbf .parseColorAttr (_gegb ,_ecdg );case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_ggdfc .BorderColor =_dagbf .parseColorAttr (_gegb ,_ecdg ); +case "b\u006f\u0072\u0064\u0065\u0072\u002d\u0073\u0069\u007a\u0065":_ggdfc .BorderSize =_dagbf .parseFloatAttr (_gegb ,_ecdg );case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_ccbede ,_affcf ,_edga ,_gcagd :=_dagbf .parseBorderRadiusAttr (_gegb ,_ecdg ); +_ggdfc .SetBorderRadius (_ccbede ,_affcf ,_gcagd ,_edga );case "\u0062\u006f\u0072\u0064er\u002d\u0074\u006f\u0070\u002d\u006c\u0065\u0066\u0074\u002d\u0072\u0061\u0064\u0069u\u0073":_ggdfc .BorderRadiusTopLeft =_dagbf .parseFloatAttr (_gegb ,_ecdg );case "\u0062\u006f\u0072de\u0072\u002d\u0074\u006f\u0070\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_ggdfc .BorderRadiusTopRight =_dagbf .parseFloatAttr (_gegb ,_ecdg ); +case "\u0062o\u0072\u0064\u0065\u0072-\u0062\u006f\u0074\u0074\u006fm\u002dl\u0065f\u0074\u002d\u0072\u0061\u0064\u0069\u0075s":_ggdfc .BorderRadiusBottomLeft =_dagbf .parseFloatAttr (_gegb ,_ecdg );case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0062\u006f\u0074\u0074o\u006d\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061d\u0069\u0075\u0073":_ggdfc .BorderRadiusBottomRight =_dagbf .parseFloatAttr (_gegb ,_ecdg ); +default:_dagbf .nodeLogDebug (_ebeb ,"\u0055\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0062\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e",_gegb ); +};};return _ggdfc ,nil ;}; -// Height returns the height of the chart. -func (_ebd *Chart )Height ()float64 {return float64 (_ebd ._ccf .Height ())};func (_cdag *LinearShading )shadingModel ()*_fa .PdfShadingType2 {_dbdb :=_ce .NewPoint (_cdag ._defa .Llx +_cdag ._defa .Width ()/2,_cdag ._defa .Lly +_cdag ._defa .Height ()/2); -_baeda :=_ce .NewPoint (_cdag ._defa .Llx ,_cdag ._defa .Lly +_cdag ._defa .Height ()/2).Add (-_dbdb .X ,-_dbdb .Y ).Rotate (_cdag ._gfgaf ).Add (_dbdb .X ,_dbdb .Y );_baeda =_ce .NewPoint (_ec .Max (_ec .Min (_baeda .X ,_cdag ._defa .Urx ),_cdag ._defa .Llx ),_ec .Max (_ec .Min (_baeda .Y ,_cdag ._defa .Ury ),_cdag ._defa .Lly )); -_fedd :=_ce .NewPoint (_cdag ._defa .Urx ,_cdag ._defa .Lly +_cdag ._defa .Height ()/2).Add (-_dbdb .X ,-_dbdb .Y ).Rotate (_cdag ._gfgaf ).Add (_dbdb .X ,_dbdb .Y );_fedd =_ce .NewPoint (_ec .Min (_ec .Max (_fedd .X ,_cdag ._defa .Llx ),_cdag ._defa .Urx ),_ec .Min (_ec .Max (_fedd .Y ,_cdag ._defa .Lly ),_cdag ._defa .Ury )); -_cgcgc :=_fa .NewPdfShadingType2 ();_cgcgc .PdfShading .ShadingType =_ea .MakeInteger (2);_cgcgc .PdfShading .ColorSpace =_fa .NewPdfColorspaceDeviceRGB ();_cgcgc .PdfShading .AntiAlias =_ea .MakeBool (_cdag ._dgbd ._eadef );_cgcgc .Coords =_ea .MakeArrayFromFloats ([]float64 {_baeda .X ,_baeda .Y ,_fedd .X ,_fedd .Y }); -_cgcgc .Extend =_ea .MakeArray (_ea .MakeBool (_cdag ._dgbd ._ffcf [0]),_ea .MakeBool (_cdag ._dgbd ._ffcf [1]));_cgcgc .Function =_cdag ._dgbd .generatePdfFunctions ();return _cgcgc ;};func (_agbc *Invoice )generateInformationBlocks (_cff DrawContext )([]*Block ,DrawContext ,error ){_cffc :=_defdc (_agbc ._ggac ); -_cffc .SetMargins (0,0,0,20);_ceccg :=_agbc .drawAddress (_agbc ._aecb );_ceccg =append (_ceccg ,_cffc );_ceccg =append (_ceccg ,_agbc .drawAddress (_agbc ._gcfe )...);_agaa :=_cecg ();for _ ,_bfaf :=range _ceccg {_agaa .Add (_bfaf );};_befef :=_agbc .drawInformation (); -_dffb :=_bgfa (2);_dffb .SetMargins (0,0,25,0);_cfdf :=_dffb .NewCell ();_cfdf .SetIndent (0);_cfdf .SetContent (_agaa );_cfdf =_dffb .NewCell ();_cfdf .SetContent (_befef );return _dffb .GeneratePageBlocks (_cff );}; +// Width is not used. The list component is designed to fill into the available +// width depending on the context. Returns 0. +func (_agcc *List )Width ()float64 {return 0}; -// GetHeading returns the chapter heading paragraph. Used to give access to address style: font, sizing etc. -func (_eee *Chapter )GetHeading ()*Paragraph {return _eee ._abd }; +// SetFitMode sets the fit mode of the line. +// NOTE: The fit mode is only applied if relative positioning is used. +func (_bbaf *Line )SetFitMode (fitMode FitMode ){_bbaf ._afad =fitMode }; -// Columns returns all the columns in the invoice line items table. -func (_edad *Invoice )Columns ()[]*InvoiceCell {return _edad ._cgcg }; +// SetCoords sets the center coordinates of the ellipse. +func (_ebec *Ellipse )SetCoords (xc ,yc float64 ){_ebec ._eebe =xc ;_ebec ._beb =yc };func (_cfcb *StyledParagraph )appendChunk (_eggbf *TextChunk )*TextChunk {_cfcb ._cdffa =append (_cfcb ._cdffa ,_eggbf );_cfcb .wrapText ();return _eggbf ;}; -// AddressHeadingStyle returns the style properties used to render the -// heading of the invoice address sections. -func (_dgecb *Invoice )AddressHeadingStyle ()TextStyle {return _dgecb ._acaa }; +// SetSideBorderStyle sets the cell's side border style. +func (_afdf *TableCell )SetSideBorderStyle (side CellBorderSide ,style CellBorderStyle ){switch side {case CellBorderSideAll :_afdf ._aaddc =style ;_afdf ._cbafe =style ;_afdf ._ffdeb =style ;_afdf ._dfbfd =style ;case CellBorderSideTop :_afdf ._aaddc =style ; +case CellBorderSideBottom :_afdf ._cbafe =style ;case CellBorderSideLeft :_afdf ._ffdeb =style ;case CellBorderSideRight :_afdf ._dfbfd =style ;};}; -// MultiColCell makes a new cell with the specified column span and inserts it -// into the table at the current position. -func (_gbcbc *Table )MultiColCell (colspan int )*TableCell {return _gbcbc .MultiCell (1,colspan )}; - -// AddLine adds a new line with the provided style to the table of contents. -func (_gdcfc *TOC )AddLine (line *TOCLine )*TOCLine {if line ==nil {return nil ;};_gdcfc ._agfbb =append (_gdcfc ._agfbb ,line );return line ;}; - -// GetRowHeight returns the height of the specified row. -func (_gfggd *Table )GetRowHeight (row int )(float64 ,error ){if row < 1||row > len (_gfggd ._cddcg ){return 0,_e .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};return _gfggd ._cddcg [row -1],nil ; +// NewCellProps returns the default properties of an invoice cell. +func (_geafb *Invoice )NewCellProps ()InvoiceCellProps {_bcebge :=ColorRGBFrom8bit (255,255,255);return InvoiceCellProps {TextStyle :_geafb ._bdcd ,Alignment :CellHorizontalAlignmentLeft ,BackgroundColor :_bcebge ,BorderColor :_bcebge ,BorderWidth :1,BorderSides :[]CellBorderSide {CellBorderSideAll }}; }; -// Height returns the height of the rectangle. -// NOTE: the returned value does not include the border width of the rectangle. -func (_affg *Rectangle )Height ()float64 {return _affg ._baag };var PPI float64 =72;func _aaada (_ffeg string )(*GraphicSVG ,error ){_fbbe ,_gagbec :=_ga .ParseFromFile (_ffeg );if _gagbec !=nil {return nil ,_gagbec ;};return _dbcb (_fbbe );};func _daffb (_bdfd string )*_fa .PdfAnnotation {_fcaaf :=_fa .NewPdfAnnotationLink (); -_ddbcd :=_fa .NewBorderStyle ();_ddbcd .SetBorderWidth (0);_fcaaf .BS =_ddbcd .ToPdfObject ();_gffed :=_fa .NewPdfActionURI ();_gffed .URI =_ea .MakeString (_bdfd );_fcaaf .SetAction (_gffed .PdfAction );return _fcaaf .PdfAnnotation ;}; +// Opacity returns the opacity of the line. +func (_fcacb *Line )Opacity ()float64 {return _fcacb ._ggbab }; -// SetWidthLeft sets border width for left. -func (_bcf *border )SetWidthLeft (bw float64 ){_bcf ._feg =bw }; +// SetFitMode sets the fit mode of the rectangle. +// NOTE: The fit mode is only applied if relative positioning is used. +func (_abee *Rectangle )SetFitMode (fitMode FitMode ){_abee ._gaef =fitMode }; -// Lines returns all the rows of the invoice line items table. -func (_cdaebg *Invoice )Lines ()[][]*InvoiceCell {return _cdaebg ._cgec }; +// SetBorderWidth sets the border width. +func (_dggf *Polygon )SetBorderWidth (borderWidth float64 ){_dggf ._gbda .BorderWidth =borderWidth }; -// SetRowHeight sets the height for a specified row. -func (_gbcdf *Table )SetRowHeight (row int ,h float64 )error {if row < 1||row > len (_gbcdf ._cddcg ){return _e .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_gbcdf ._cddcg [row -1]=h ;return nil ; -};const (HorizontalAlignmentLeft HorizontalAlignment =iota ;HorizontalAlignmentCenter ;HorizontalAlignmentRight ;); +// FillOpacity returns the fill opacity of the ellipse (0-1). +func (_ddbd *Ellipse )FillOpacity ()float64 {return _ddbd ._ddbf }; -// GeneratePageBlocks draws the rectangle on a new block representing the page. Implements the Drawable interface. -func (_cadgf *Rectangle )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_egac []*Block ;_cgfg =NewBlock (ctx .PageWidth ,ctx .PageHeight );_agbbg =ctx ;_bfae =_cadgf ._aebcg /2;);_eabd :=_cadgf ._fdde .IsRelative ();if _eabd {_cadgf .applyFitMode (ctx .Width ); -ctx .X +=_cadgf ._bacfa .Left +_bfae ;ctx .Y +=_cadgf ._bacfa .Top +_bfae ;ctx .Width -=_cadgf ._bacfa .Left +_cadgf ._bacfa .Right ;ctx .Height -=_cadgf ._bacfa .Top +_cadgf ._bacfa .Bottom ;if _cadgf ._baag > ctx .Height {_egac =append (_egac ,_cgfg ); -_cgfg =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_ebcgc :=ctx ;_ebcgc .Y =ctx .Margins .Top +_cadgf ._bacfa .Top +_bfae ;_ebcgc .X =ctx .Margins .Left +_cadgf ._bacfa .Left +_bfae ;_ebcgc .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_cadgf ._bacfa .Top -_cadgf ._bacfa .Bottom ; -_ebcgc .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_cadgf ._bacfa .Left -_cadgf ._bacfa .Right ;ctx =_ebcgc ;};}else {ctx .X =_cadgf ._dfbc ;ctx .Y =_cadgf ._gbfgg ;};_dbcag :=_ce .Rectangle {X :ctx .X ,Y :ctx .PageHeight -ctx .Y -_cadgf ._baag ,Width :_cadgf ._faaa ,Height :_cadgf ._baag ,BorderRadiusTopLeft :_cadgf ._efcb ,BorderRadiusTopRight :_cadgf ._caab ,BorderRadiusBottomLeft :_cadgf ._ebagc ,BorderRadiusBottomRight :_cadgf ._bafe ,Opacity :1.0}; -if _cadgf ._abbg !=nil {_dbcag .FillEnabled =true ;_fdef :=_gdfa (_cadgf ._abbg );_acggd :=_ddcd (_cgfg ,_fdef ,_cadgf ._abbg ,func ()Rectangle {return Rectangle {_dfbc :_dbcag .X ,_gbfgg :_dbcag .Y ,_faaa :_dbcag .Width ,_baag :_dbcag .Height };});if _acggd !=nil {return nil ,ctx ,_acggd ; -};_dbcag .FillColor =_fdef ;};if _cadgf ._bada !=nil &&_cadgf ._aebcg > 0{_dbcag .BorderEnabled =true ;_dbcag .BorderColor =_gdfa (_cadgf ._bada );_dbcag .BorderWidth =_cadgf ._aebcg ;};_ggeag ,_eeff :=_cgfg .setOpacity (_cadgf ._efgb ,_cadgf ._gacec ); -if _eeff !=nil {return nil ,ctx ,_eeff ;};_efeb ,_ ,_eeff :=_dbcag .Draw (_ggeag );if _eeff !=nil {return nil ,ctx ,_eeff ;};if _eeff =_cgfg .addContentsByString (string (_efeb ));_eeff !=nil {return nil ,ctx ,_eeff ;};if _eabd {ctx .X =_agbbg .X ;ctx .Width =_agbbg .Width ; -_fcaf :=_cadgf ._baag +_bfae ;ctx .Y +=_fcaf +_cadgf ._bacfa .Bottom ;ctx .Height -=_fcaf ;}else {ctx =_agbbg ;};_egac =append (_egac ,_cgfg );return _egac ,ctx ,nil ;};func _gggc (_gage _ff .ChartRenderable )*Chart {return &Chart {_ccf :_gage ,_gbdd :PositionRelative ,_ebga :Margins {Top :10,Bottom :10}}; +// GeneratePageBlocks generates the page blocks. Multiple blocks are generated if the contents wrap +// over multiple pages. Implements the Drawable interface. +func (_cefge *Paragraph )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_efaf :=ctx ;var _cdffb []*Block ;_bdea :=NewBlock (ctx .PageWidth ,ctx .PageHeight );if _cefge ._abea .IsRelative (){ctx .X +=_cefge ._fgcbf .Left ;ctx .Y +=_cefge ._fgcbf .Top ; +ctx .Width -=_cefge ._fgcbf .Left +_cefge ._fgcbf .Right ;ctx .Height -=_cefge ._fgcbf .Top ;_cefge .SetWidth (ctx .Width );if _cefge .Height ()> ctx .Height {_cdffb =append (_cdffb ,_bdea );_bdea =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++; +_cedaf :=ctx ;_cedaf .Y =ctx .Margins .Top ;_cedaf .X =ctx .Margins .Left +_cefge ._fgcbf .Left ;_cedaf .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom ;_cedaf .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_cefge ._fgcbf .Left -_cefge ._fgcbf .Right ; +ctx =_cedaf ;};}else {if int (_cefge ._dcdb )<=0{_cefge .SetWidth (_cefge .getTextWidth ());};ctx .X =_cefge ._bcec ;ctx .Y =_cefge ._cbcca ;};ctx ,_dgbf :=_cdgc (_bdea ,_cefge ,ctx );if _dgbf !=nil {_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_dgbf ); +return nil ,ctx ,_dgbf ;};_cdffb =append (_cdffb ,_bdea );if _cefge ._abea .IsRelative (){ctx .Y +=_cefge ._fgcbf .Bottom ;ctx .Height -=_cefge ._fgcbf .Bottom ;if !ctx .Inline {ctx .X =_efaf .X ;ctx .Width =_efaf .Width ;};return _cdffb ,ctx ,nil ;};return _cdffb ,_efaf ,nil ; }; -// TOCLine represents a line in a table of contents. -// The component can be used both in the context of a -// table of contents component and as a standalone component. -// The representation of a table of contents line is as follows: -/* - [number] [title] [separator] [page] - e.g.: Chapter1 Introduction ........... 1 -*/ -type TOCLine struct{_bagf *StyledParagraph ; - -// Holds the text and style of the number part of the TOC line. -Number TextChunk ; - -// Holds the text and style of the title part of the TOC line. -Title TextChunk ; - -// Holds the text and style of the separator part of the TOC line. -Separator TextChunk ; - -// Holds the text and style of the page part of the TOC line. -Page TextChunk ;_fdbdf float64 ;_dabge uint ;_ddccb float64 ;_ecfb Positioning ;_faga float64 ;_eeaa float64 ;_gdda int64 ;};func _ebgcc (_gagebb *templateProcessor ,_bcgf *templateNode )(interface{},error ){return _gagebb .parseBackground (_bcgf );}; - -// Terms returns the terms and conditions section of the invoice as a -// title-content pair. -func (_cbdc *Invoice )Terms ()(string ,string ){return _cbdc ._befe [0],_cbdc ._befe [1]}; +// SetText sets the text content of the Paragraph. +func (_eeca *Paragraph )SetText (text string ){_eeca ._age =text }; -// SetStyle sets the style of the line (solid or dashed). -func (_dbagb *Line )SetStyle (style _ce .LineStyle ){_dbagb ._ddca =style }; +// SetOptimizer sets the optimizer to optimize PDF before writing. +func (_cab *Creator )SetOptimizer (optimizer _ggc .Optimizer ){_cab ._eecf =optimizer }; // AddInternalLink adds a new internal link to the paragraph. // The text parameter represents the text that is displayed. @@ -1179,564 +1082,659 @@ func (_dbagb *Line )SetStyle (style _ce .LineStyle ){_dbagb ._ddca =style }; // coordinates. Position 0, 0 is at the top left of the page. // The zoom of the destination page is controlled with the zoom // parameter. Pass in 0 to keep the current zoom value. -func (_fceae *StyledParagraph )AddInternalLink (text string ,page int64 ,x ,y ,zoom float64 )*TextChunk {_efdcb :=NewTextChunk (text ,_fceae ._ggee );_efdcb ._gbgga =_ccbeg (page -1,x ,y ,zoom );return _fceae .appendChunk (_efdcb );};const (CellHorizontalAlignmentLeft CellHorizontalAlignment =iota ; -CellHorizontalAlignmentCenter ;CellHorizontalAlignmentRight ;); +func (_cebb *StyledParagraph )AddInternalLink (text string ,page int64 ,x ,y ,zoom float64 )*TextChunk {_eedc :=NewTextChunk (text ,_cebb ._aecf );_eedc ._dfcb =_bfefg (page -1,x ,y ,zoom );return _cebb .appendChunk (_eedc );}; -// Subtotal returns the invoice subtotal description and value cells. -// The returned values can be used to customize the styles of the cells. -func (_ffdf *Invoice )Subtotal ()(*InvoiceCell ,*InvoiceCell ){return _ffdf ._aeggf [0],_ffdf ._aeggf [1];}; +// Positioning returns the type of positioning the line is set to use. +func (_agdcg *Line )Positioning ()Positioning {return _agdcg ._fgef }; -// SetPageLabels adds the specified page labels to the PDF file generated -// by the creator. See section 12.4.2 "Page Labels" (p. 382 PDF32000_2008). -// NOTE: for existing PDF files, the page label ranges object can be obtained -// using the model.PDFReader's GetPageLabels method. -func (_cbaf *Creator )SetPageLabels (pageLabels _ea .PdfObject ){_cbaf ._aded =pageLabels }; +// SetLineTitleStyle sets the style for the title part of all new lines +// of the table of contents. +func (_gdab *TOC )SetLineTitleStyle (style TextStyle ){_gdab ._cbgbd =style }; -// SetShowNumbering sets a flag to indicate whether or not to show chapter numbers as part of title. -func (_gbfb *Chapter )SetShowNumbering (show bool ){_gbfb ._faea =show ;_gbfb ._abd .SetText (_gbfb .headingText ());}; +// CurCol returns the currently active cell's column number. +func (_bbdfe *Table )CurCol ()int {_egae :=(_bbdfe ._ggfb -1)%(_bbdfe ._aeaa )+1;return _egae }; -// AddInfo is used to append a piece of invoice information in the template -// information table. -func (_bdege *Invoice )AddInfo (description ,value string )(*InvoiceCell ,*InvoiceCell ){_aeeg :=[2]*InvoiceCell {_bdege .newCell (description ,_bdege ._cebef ),_bdege .newCell (value ,_bdege ._cebef )};_bdege ._dgec =append (_bdege ._dgec ,_aeeg );return _aeeg [0],_aeeg [1]; -}; +// SetPageSize sets the Creator's page size. Pages that are added after this will be created with +// this Page size. +// Does not affect pages already created. +// +// Common page sizes are defined as constants. +// Examples: +// 1. c.SetPageSize(creator.PageSizeA4) +// 2. c.SetPageSize(creator.PageSizeA3) +// 3. c.SetPageSize(creator.PageSizeLegal) +// 4. c.SetPageSize(creator.PageSizeLetter) +// +// For custom sizes: Use the PPMM (points per mm) and PPI (points per inch) when defining those based on +// physical page sizes: +// +// Examples: +// 1. 10x15 sq. mm: SetPageSize(PageSize{10*creator.PPMM, 15*creator.PPMM}) where PPMM is points per mm. +// 2. 3x2 sq. inches: SetPageSize(PageSize{3*creator.PPI, 2*creator.PPI}) where PPI is points per inch. +func (_geb *Creator )SetPageSize (size PageSize ){_geb ._gccce =size ;_geb ._abf =size [0];_geb ._ffc =size [1];_eafd :=0.1*_geb ._abf ;_geb ._gcgd .Left =_eafd ;_geb ._gcgd .Right =_eafd ;_geb ._gcgd .Top =_eafd ;_geb ._gcgd .Bottom =_eafd ;};func _gdec (_aeee int )*Table {_gaaf :=&Table {_aeaa :_aeee ,_ddfaf :10.0,_abbbf :[]float64 {},_begb :[]float64 {},_cacca :[]*TableCell {},_degfe :make ([]int ,_aeee ),_gbgc :true }; +_gaaf .resetColumnWidths ();return _gaaf ;}; -// SetAngle sets the rotation angle of the text. -func (_aecaa *Paragraph )SetAngle (angle float64 ){_aecaa ._dgdea =angle };type border struct{_acb float64 ;_edb float64 ;_dgga float64 ;_fbce float64 ;_eede Color ;_bgfg Color ;_feg float64 ;_ada Color ;_bbdf float64 ;_fdaa Color ;_gea float64 ;_dcd Color ; -_ead float64 ;LineStyle _ce .LineStyle ;_dcda CellBorderStyle ;_adg CellBorderStyle ;_bdd CellBorderStyle ;_befg CellBorderStyle ;}; +// ScaleToWidth scales the rectangle to the specified width. The height of +// the rectangle is scaled so that the aspect ratio is maintained. +func (_febg *Rectangle )ScaleToWidth (w float64 ){_faece :=_febg ._fefg /_febg ._gfad ;_febg ._gfad =w ;_febg ._fefg =w *_faece ;};func _fcf ()*listItem {return &listItem {}}; -// GeneratePageBlocks generates the page blocks. Multiple blocks are generated -// if the contents wrap over multiple pages. Implements the Drawable interface. -func (_dfacc *StyledParagraph )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_afbf :=ctx ;var _geae []*Block ;_bacb :=NewBlock (ctx .PageWidth ,ctx .PageHeight );if _dfacc ._defc .IsRelative (){ctx .X +=_dfacc ._faaba .Left ;ctx .Y +=_dfacc ._faaba .Top ; -ctx .Width -=_dfacc ._faaba .Left +_dfacc ._faaba .Right ;ctx .Height -=_dfacc ._faaba .Top ;_dfacc .SetWidth (ctx .Width );}else {if int (_dfacc ._fdfbb )<=0{_dfacc .SetWidth (_dfacc .getTextWidth ()/1000.0);};ctx .X =_dfacc ._gbdbe ;ctx .Y =_dfacc ._cgcgca ; -};if _dfacc ._cddca !=nil {_dfacc ._cddca (_dfacc ,ctx );};if _dggf :=_dfacc .wrapText ();_dggf !=nil {return nil ,ctx ,_dggf ;};_fdeae :=_dfacc ._egffa ;for {_dacbag ,_cbfgb ,_gebb :=_gddcg (_bacb ,_dfacc ,_fdeae ,ctx );if _gebb !=nil {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gebb ); -return nil ,ctx ,_gebb ;};ctx =_dacbag ;_geae =append (_geae ,_bacb );if _fdeae =_cbfgb ;len (_cbfgb )==0{break ;};_bacb =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_dacbag =ctx ;_dacbag .Y =ctx .Margins .Top ;_dacbag .X =ctx .Margins .Left +_dfacc ._faaba .Left ; -_dacbag .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom ;_dacbag .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_dfacc ._faaba .Left -_dfacc ._faaba .Right ;ctx =_dacbag ;};if _dfacc ._defc .IsRelative (){ctx .Y +=_dfacc ._faaba .Bottom ; -ctx .Height -=_dfacc ._faaba .Bottom ;if !ctx .Inline {ctx .X =_afbf .X ;ctx .Width =_afbf .Width ;};return _geae ,ctx ,nil ;};return _geae ,_afbf ,nil ;}; +// SetFillColor sets the fill color of the rectangle. +func (_dbbf *Rectangle )SetFillColor (col Color ){_dbbf ._bgca =col }; -// TemplateOptions contains options and resources to use when rendering -// a template with a Creator instance. -// All the resources in the map fields can be referenced by their -// name/key in the template which is rendered using the options instance. -type TemplateOptions struct{ +// SetColorRight sets border color for right. +func (_dgge *border )SetColorRight (col Color ){_dgge ._add =col }; -// HelperFuncMap is used to define functions which can be accessed -// inside the rendered templates by their assigned names. -HelperFuncMap _cb .FuncMap ; +// SetLineMargins sets the margins for all new lines of the table of contents. +func (_bfgb *TOC )SetLineMargins (left ,right ,top ,bottom float64 ){_cbffc :=&_bfgb ._dfbae ;_cbffc .Left =left ;_cbffc .Right =right ;_cbffc .Top =top ;_cbffc .Bottom =bottom ;}; -// SubtemplateMap contains templates which can be rendered alongside -// the main template. They can be accessed using their assigned names -// in the main template or in the other subtemplates. -// Subtemplates defined inside the subtemplates specified in the map -// can be accessed directly. -// All resources available to the main template are also available -// to the subtemplates. -SubtemplateMap map[string ]_dfd .Reader ; +// TOC represents a table of contents component. +// It consists of a paragraph heading and a collection of +// table of contents lines. +// The representation of a table of contents line is as follows: +// [number] [title] [separator] [page] +// e.g.: Chapter1 Introduction ........... 1 +type TOC struct{_ecagg *StyledParagraph ;_fbeeg []*TOCLine ;_febed TextStyle ;_cbgbd TextStyle ;_effdg TextStyle ;_abgad TextStyle ;_feaba string ;_ebgfa float64 ;_dfbae Margins ;_fcffe Positioning ;_cceeb TextStyle ;_dbaf bool ;}; -// FontMap contains pre-loaded fonts which can be accessed -// inside the rendered templates by their assigned names. -FontMap map[string ]*_fa .PdfFont ; +// SetFitMode sets the fit mode of the image. +// NOTE: The fit mode is only applied if relative positioning is used. +func (_bdgc *Image )SetFitMode (fitMode FitMode ){_bdgc ._geaf =fitMode }; -// ImageMap contains pre-loaded images which can be accessed -// inside the rendered templates by their assigned names. -ImageMap map[string ]*_fa .Image ; +// ToPdfShadingPattern generates a new model.PdfShadingPatternType2 object. +func (_fadb *LinearShading )ToPdfShadingPattern ()*_ggc .PdfShadingPatternType2 {_gadca ,_cgbe ,_bdeeb :=_fadb ._aecc ._dedad .ToRGB ();_fdcecb :=_fadb .shadingModel ();_fdcecb .PdfShading .Background =_fe .MakeArrayFromFloats ([]float64 {_gadca ,_cgbe ,_bdeeb }); +_dgef :=_ggc .NewPdfShadingPatternType2 ();_dgef .Shading =_fdcecb ;return _dgef ;}; -// ColorMap contains colors which can be accessed -// inside the rendered templates by their assigned names. -ColorMap map[string ]Color ; +// SetLineNumberStyle sets the style for the numbers part of all new lines +// of the table of contents. +func (_bbgg *TOC )SetLineNumberStyle (style TextStyle ){_bbgg ._febed =style }; -// ChartMap contains charts which can be accessed -// inside the rendered templates by their assigned names. -ChartMap map[string ]_ff .ChartRenderable ;}; +// SetFillOpacity sets the fill opacity of the rectangle. +func (_eddba *Rectangle )SetFillOpacity (opacity float64 ){_eddba ._geee =opacity }; -// Opacity returns the opacity of the line. -func (_bebg *Line )Opacity ()float64 {return _bebg ._gcaa };func (_egeg *Division )ctxHeight (_fggc float64 )float64 {_fggc -=_egeg ._cdef .Left +_egeg ._cdef .Right +_egeg ._dgfg .Left +_egeg ._dgfg .Right ;var _fgaf float64 ;for _ ,_agbe :=range _egeg ._cga {_fgaf +=_gdga (_agbe ,_fggc ); -};return _fgaf ;}; +// NewColorPoint creates a new color and point object for use in the gradient rendering process. +func NewColorPoint (color Color ,point float64 )*ColorPoint {return _cafcfa (color ,point )};func _effe (_ecab *Block ,_efege *Image ,_beg DrawContext )(DrawContext ,error ){_aeffg :=_beg ;_dccd :=1;_dfga :=_fe .PdfObjectName (_df .Sprintf ("\u0049\u006d\u0067%\u0064",_dccd )); +for _ecab ._ge .HasXObjectByName (_dfga ){_dccd ++;_dfga =_fe .PdfObjectName (_df .Sprintf ("\u0049\u006d\u0067%\u0064",_dccd ));};_gfga :=_ecab ._ge .SetXObjectImageByName (_dfga ,_efege ._edee );if _gfga !=nil {return _beg ,_gfga ;};_badb :=0;_dfda :=_fe .PdfObjectName (_df .Sprintf ("\u0047\u0053\u0025\u0064",_badb )); +for _ecab ._ge .HasExtGState (_dfda ){_badb ++;_dfda =_fe .PdfObjectName (_df .Sprintf ("\u0047\u0053\u0025\u0064",_badb ));};_fcag :=_fe .MakeDict ();_fcag .Set ("\u0042\u004d",_fe .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c"));if _efege ._feef < 1.0{_fcag .Set ("\u0043\u0041",_fe .MakeFloat (_efege ._feef )); +_fcag .Set ("\u0063\u0061",_fe .MakeFloat (_efege ._feef ));};_gfga =_ecab ._ge .AddExtGState (_dfda ,_fe .MakeIndirectObject (_fcag ));if _gfga !=nil {return _beg ,_gfga ;};_agdfd :=_efege .Width ();_acbad :=_efege .Height ();_ ,_feba :=_efege .rotatedSize (); +_cfeb :=_beg .X ;_fffe :=_beg .PageHeight -_beg .Y -_acbad ;if _efege ._ebfa .IsRelative (){_fffe -=(_feba -_acbad )/2;switch _efege ._afdag {case HorizontalAlignmentCenter :_cfeb +=(_beg .Width -_agdfd )/2;case HorizontalAlignmentRight :_cfeb =_beg .PageWidth -_beg .Margins .Right -_efege ._cbea .Right -_agdfd ; +};};_aege :=_efege ._eadgc ;_babca :=_bdb .NewContentCreator ();_babca .Add_gs (_dfda );_babca .Translate (_cfeb ,_fffe );if _aege !=0{_babca .Translate (_agdfd /2,_acbad /2);_babca .RotateDeg (_aege );_babca .Translate (-_agdfd /2,-_acbad /2);};_babca .Scale (_agdfd ,_acbad ).Add_Do (_dfga ); +_aebe :=_babca .Operations ();_aebe .WrapIfNeeded ();_ecab .addContents (_aebe );if _efege ._ebfa .IsRelative (){_beg .Y +=_feba ;_beg .Height -=_feba ;return _beg ,nil ;};return _aeffg ,nil ;}; -// Line defines a line between point 1 (X1, Y1) and point 2 (X2, Y2). -// The line width, color, style (solid or dashed) and opacity can be -// configured. Implements the Drawable interface. -type Line struct{_dfbf float64 ;_aeecg float64 ;_gagg float64 ;_cbaff float64 ;_cabf Color ;_ddca _ce .LineStyle ;_gcaa float64 ;_efgeg []int64 ;_gfee int64 ;_baec float64 ;_gfdb Positioning ;_bfeb FitMode ;_dcdb Margins ;};func _ddaea (_ebgaga TextStyle )*List {return &List {_cgef :TextChunk {Text :"\u2022\u0020",Style :_ebgaga },_dcdc :0,_ecfac :true ,_caea :PositionRelative ,_dbca :_ebgaga }; -}; +// SetBorderWidth sets the border width. +func (_bggee *PolyBezierCurve )SetBorderWidth (borderWidth float64 ){_bggee ._ffbb .BorderWidth =borderWidth ;}; -// SetColumns overwrites any columns in the line items table. This should be -// called before AddLine. -func (_bggd *Invoice )SetColumns (cols []*InvoiceCell ){_bggd ._cgcg =cols }; +// TOC returns the table of contents component of the creator. +func (_ecec *Creator )TOC ()*TOC {return _ecec ._effa }; -// SetExtends specifies whether ot extend the shading beyond the starting and ending points. -// -// Text extends is set to `[]bool{false, false}` by default. -func (_ddff *LinearShading )SetExtends (start bool ,end bool ){_ddff ._dgbd .SetExtends (start ,end )}; +// Reset removes all the text chunks the paragraph contains. +func (_efcfb *StyledParagraph )Reset (){_efcfb ._cdffa =[]*TextChunk {}}; -// SetBorderWidth sets the border width. -func (_ddfb *Polygon )SetBorderWidth (borderWidth float64 ){_ddfb ._cgecf .BorderWidth =borderWidth }; +// SetHorizontalAlignment sets the horizontal alignment of the image. +func (_dge *Image )SetHorizontalAlignment (alignment HorizontalAlignment ){_dge ._afdag =alignment }; -// Add adds a new line with the default style to the table of contents. -func (_abccgc *TOC )Add (number ,title ,page string ,level uint )*TOCLine {_dfbbe :=_abccgc .AddLine (_eafbg (TextChunk {Text :number ,Style :_abccgc ._fdfac },TextChunk {Text :title ,Style :_abccgc ._agde },TextChunk {Text :page ,Style :_abccgc ._dbdbc },level ,_abccgc ._bcgff )); -if _dfbbe ==nil {return nil ;};_faeag :=&_abccgc ._adgec ;_dfbbe .SetMargins (_faeag .Left ,_faeag .Right ,_faeag .Top ,_faeag .Bottom );_dfbbe .SetLevelOffset (_abccgc ._gafab );_dfbbe .Separator .Text =_abccgc ._abgga ;_dfbbe .Separator .Style =_abccgc ._dbfad ; -return _dfbbe ;}; +// SetColor sets the color of the Paragraph text. +// +// Example: +// +// 1. p := NewParagraph("Red paragraph") +// // Set to red color with a hex code: +// p.SetColor(creator.ColorRGBFromHex("#ff0000")) +// +// 2. Make Paragraph green with 8-bit rgb values (0-255 each component) +// p.SetColor(creator.ColorRGBFrom8bit(0, 255, 0) +// +// 3. Make Paragraph blue with arithmetic (0-1) rgb components. +// p.SetColor(creator.ColorRGBFromArithmetic(0, 0, 1.0) +func (_cbcg *Paragraph )SetColor (col Color ){_cbcg ._bged =col };func (_ffgfad *templateProcessor )parseColorAttr (_bdbcb ,_bafc string )Color {_ca .Log .Debug ("\u0050\u0061rs\u0069\u006e\u0067 \u0063\u006f\u006c\u006fr a\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020(`\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_bdbcb ,_bafc ); +_bafc =_dc .TrimSpace (_bafc );if _dc .HasPrefix (_bafc ,"\u006c\u0069n\u0065\u0061\u0072-\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0028")&&_dc .HasSuffix (_bafc ,"\u0029")&&len (_bafc )> 17{return _ffgfad .parseLinearGradientAttr (_ffgfad .creator ,_bafc ); +};if _dc .HasPrefix (_bafc ,"\u0072\u0061d\u0069\u0061\u006c-\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0028")&&_dc .HasSuffix (_bafc ,"\u0029")&&len (_bafc )> 17{return _ffgfad .parseRadialGradientAttr (_ffgfad .creator ,_bafc );};if _eadeb :=_ffgfad .parseColor (_bafc ); +_eadeb !=nil {return _eadeb ;};return ColorBlack ;};func _cfdeg (_gbcc *Block ,_geba *StyledParagraph ,_dbfbg [][]*TextChunk ,_cced DrawContext )(DrawContext ,[][]*TextChunk ,error ){_fdcgd :=1;_fcdcf :=_fe .PdfObjectName (_df .Sprintf ("\u0046\u006f\u006e\u0074\u0025\u0064",_fdcgd )); +for _gbcc ._ge .HasFontByName (_fcdcf ){_fdcgd ++;_fcdcf =_fe .PdfObjectName (_df .Sprintf ("\u0046\u006f\u006e\u0074\u0025\u0064",_fdcgd ));};_adab :=_gbcc ._ge .SetFontByName (_fcdcf ,_geba ._egcg .Font .ToPdfObject ());if _adab !=nil {return _cced ,nil ,_adab ; +};_fdcgd ++;_cbae :=_fcdcf ;_dbcac :=_geba ._egcg .FontSize ;_cadac :=_geba ._gbga .IsRelative ();var _gbcf [][]_fe .PdfObjectName ;var _cbgbg [][]*TextChunk ;var _gddcd float64 ;for _gdeb ,_gaac :=range _dbfbg {var _ffffb []_fe .PdfObjectName ;var _degfb float64 ; +if len (_gaac )> 0{_degfb =_gaac [0].Style .FontSize ;};for _ ,_aeef :=range _gaac {_cfbaeg :=_aeef .Style ;if _aeef .Text !=""&&_cfbaeg .FontSize > _degfb {_degfb =_cfbaeg .FontSize ;};if _degfb > _cced .PageHeight {return _cced ,nil ,_fa .New ("\u0050\u0061\u0072\u0061\u0067\u0072a\u0070\u0068\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u0063\u0061\u006e\u0027\u0074\u0020\u0062\u0065\u0020\u006ca\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0070\u0061\u0067\u0065 \u0068e\u0069\u0067\u0068\u0074"); +};_fcdcf =_fe .PdfObjectName (_df .Sprintf ("\u0046\u006f\u006e\u0074\u0025\u0064",_fdcgd ));_adcg :=_gbcc ._ge .SetFontByName (_fcdcf ,_cfbaeg .Font .ToPdfObject ());if _adcg !=nil {return _cced ,nil ,_adcg ;};_ffffb =append (_ffffb ,_fcdcf );_fdcgd ++; +};_degfb *=_geba ._babcf ;if _cadac &&_gddcd +_degfb > _cced .Height {_cbgbg =_dbfbg [_gdeb :];_dbfbg =_dbfbg [:_gdeb ];break ;};_gddcd +=_degfb ;_gbcf =append (_gbcf ,_ffffb );};_fbdef ,_efdff ,_cafb :=_geba .getLineMetrics (0);_fgagb ,_gfbe :=_fbdef *_geba ._babcf ,_efdff *_geba ._babcf ; +if len (_dbfbg )==0{return _cced ,_cbgbg ,nil ;};_fcbac :=_bdb .NewContentCreator ();_fcbac .Add_q ();_geebb :=_gfbe ;if _geba ._edbcb ==TextVerticalAlignmentCenter {_geebb =_efdff +(_fbdef +_cafb -_efdff )/2+(_gfbe -_efdff )/2;};_aabce :=_cced .PageHeight -_cced .Y -_geebb ; +_fcbac .Translate (_cced .X ,_aabce );_befba :=_aabce ;if _geba ._adag !=0{_fcbac .RotateDeg (_geba ._adag );};if _geba ._cfec ==TextOverflowHidden {_fcbac .Add_re (0,-_gddcd +_fgagb +1,_geba ._gcadd ,_gddcd ).Add_W ().Add_n ();};_fcbac .Add_BT ();_ffaa :=0.0; +var _dafce []*_fc .BasicLine ;for _fcaac ,_adaac :=range _dbfbg {_bdge :=_cced .X ;var _dbecg float64 ;if len (_adaac )> 0{_dbecg =_adaac [0].Style .FontSize ;};_fbdef ,_ ,_cafb =_geba .getLineMetrics (_fcaac );_gfbe =(_fbdef +_cafb );for _ ,_dacd :=range _adaac {_fbbe :=&_dacd .Style ; +if _dacd .Text !=""&&_fbbe .FontSize > _dbecg {_dbecg =_fbbe .FontSize ;};if _gfbe > _dbecg {_dbecg =_gfbe ;};};if _fcaac !=0{_fcbac .Add_TD (0,-_dbecg *_geba ._babcf +_ffaa );_befba -=_dbecg *_geba ._babcf +_ffaa ;_ffaa =0.0;};_afeg :=_fcaac ==len (_dbfbg )-1; +var (_ccac float64 ;_bbgd float64 ;_adcd *fontMetrics ;_afcf float64 ;_adgg uint ;);var _dbgf []float64 ;for _ ,_gcecf :=range _adaac {_bgdc :=&_gcecf .Style ;if _bgdc .FontSize > _bbgd {_bbgd =_bgdc .FontSize ;_adcd =_ecfaf (_gcecf .Style .Font ,_bgdc .FontSize ); +};if _gfbe > _bbgd {_bbgd =_gfbe ;};_gafa ,_fgae :=_bgdc .Font .GetRuneMetrics (' ');if !_fgae {return _cced ,nil ,_fa .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068"); +};var _bcbaf uint ;var _gcgda float64 ;_ddcd :=len (_gcecf .Text );for _ebgd ,_bddfa :=range _gcecf .Text {if _bddfa ==' '{_bcbaf ++;continue ;};if _bddfa =='\u000A'{continue ;};_deag ,_acab :=_bgdc .Font .GetRuneMetrics (_bddfa );if !_acab {_ca .Log .Debug ("\u0055\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0072\u0075\u006ee\u0020%\u0076\u0020\u0069\u006e\u0020\u0066\u006fn\u0074\u000a",_bddfa ); +return _cced ,nil ,_fa .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0067\u006c\u0079p\u0068");};_gcgda +=_bgdc .FontSize *_deag .Wx *_bgdc .horizontalScale ();if _ebgd !=_ddcd -1{_gcgda +=_bgdc .CharSpacing *1000.0; +};};_dbgf =append (_dbgf ,_gcgda );_ccac +=_gcgda ;_afcf +=float64 (_bcbaf )*_gafa .Wx *_bgdc .FontSize *_bgdc .horizontalScale ();_adgg +=_bcbaf ;};_bbgd *=_geba ._babcf ;var _fffda []_fe .PdfObject ;_fbgce :=_geba ._gcadd *1000.0;if _geba ._eaeg ==TextAlignmentJustify {if _adgg > 0&&!_afeg {_afcf =(_fbgce -_ccac )/float64 (_adgg )/_dbcac ; +};}else if _geba ._eaeg ==TextAlignmentCenter {_cecgb :=(_fbgce -_ccac -_afcf )/2;_abfgf :=_cecgb /_dbcac ;_fffda =append (_fffda ,_fe .MakeFloat (-_abfgf ));_bdge +=_cecgb /1000.0;}else if _geba ._eaeg ==TextAlignmentRight {_dgdbc :=(_fbgce -_ccac -_afcf ); +_fbef :=_dgdbc /_dbcac ;_fffda =append (_fffda ,_fe .MakeFloat (-_fbef ));_bdge +=_dgdbc /1000.0;};if len (_fffda )> 0{_fcbac .Add_Tf (_cbae ,_dbcac ).Add_TL (_dbcac *_geba ._babcf ).Add_TJ (_fffda ...);};_edcba :=0.0;for _egacea ,_cabee :=range _adaac {_ebgdg :=&_cabee .Style ; +_bfcg :=_cbae ;_cbgac :=_dbcac ;_dgced :=_ebgdg .OutlineColor !=nil ;_agee :=_ebgdg .HorizontalScaling !=DefaultHorizontalScaling ;_ffeda :=_ebgdg .OutlineSize !=1;if _ffeda {_fcbac .Add_w (_ebgdg .OutlineSize );};_bbadee :=_ebgdg .RenderingMode !=TextRenderingModeFill ; +if _bbadee {_fcbac .Add_Tr (int64 (_ebgdg .RenderingMode ));};_gecbb :=_ebgdg .CharSpacing !=0;if _gecbb {_fcbac .Add_Tc (_ebgdg .CharSpacing );};_dgegf :=_ebgdg .TextRise !=0;if _dgegf {_fcbac .Add_Ts (_ebgdg .TextRise );};if _cabee .VerticalAlignment !=TextVerticalAlignmentBaseline {_ffbbd :=_ecfaf (_cabee .Style .Font ,_ebgdg .FontSize ); +switch _cabee .VerticalAlignment {case TextVerticalAlignmentCenter :_edcba =_adcd ._fbcdg /2-_ffbbd ._fbcdg /2;case TextVerticalAlignmentBottom :_edcba =_adcd ._afebc -_ffbbd ._afebc ;case TextVerticalAlignmentTop :_edcba =_efdff -_ebgdg .FontSize ;};if _edcba !=0.0{_fcbac .Translate (0,_edcba ); +};};if _geba ._eaeg !=TextAlignmentJustify ||_afeg {_begc ,_ddaec :=_ebgdg .Font .GetRuneMetrics (' ');if !_ddaec {return _cced ,nil ,_fa .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068"); +};_bfcg =_gbcf [_fcaac ][_egacea ];_cbgac =_ebgdg .FontSize ;_afcf =_begc .Wx *_ebgdg .horizontalScale ();};_afcgd :=_ebgdg .Font .Encoder ();var _gffbd []byte ;for _ ,_fabfb :=range _cabee .Text {if _fabfb =='\u000A'{continue ;};if _fabfb ==' '{if len (_gffbd )> 0{if _dgced {_fcbac .SetStrokingColor (_dbac (_ebgdg .OutlineColor )); +};if _agee {_fcbac .Add_Tz (_ebgdg .HorizontalScaling );};_fcbac .SetNonStrokingColor (_dbac (_ebgdg .Color )).Add_Tf (_gbcf [_fcaac ][_egacea ],_ebgdg .FontSize ).Add_TJ ([]_fe .PdfObject {_fe .MakeStringFromBytes (_gffbd )}...);_gffbd =nil ;};if _agee {_fcbac .Add_Tz (DefaultHorizontalScaling ); +};_fcbac .Add_Tf (_bfcg ,_cbgac ).Add_TJ ([]_fe .PdfObject {_fe .MakeFloat (-_afcf )}...);_dbgf [_egacea ]+=_afcf *_cbgac ;}else {if _ ,_ecag :=_afcgd .RuneToCharcode (_fabfb );!_ecag {_adab =UnsupportedRuneError {Message :_df .Sprintf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u0072\u0075\u006e\u0065 \u0069\u006e\u0020\u0074\u0065\u0078\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0023\u0078\u0020\u0028\u0025\u0063\u0029",_fabfb ,_fabfb ),Rune :_fabfb }; +_cced ._bcbc =append (_cced ._bcbc ,_adab );_ca .Log .Debug (_adab .Error ());if _cced ._dgce <=0{continue ;};_fabfb =_cced ._dgce ;};_gffbd =append (_gffbd ,_afcgd .Encode (string (_fabfb ))...);};};if len (_gffbd )> 0{if _dgced {_fcbac .SetStrokingColor (_dbac (_ebgdg .OutlineColor )); +};if _agee {_fcbac .Add_Tz (_ebgdg .HorizontalScaling );};_fcbac .SetNonStrokingColor (_dbac (_ebgdg .Color )).Add_Tf (_gbcf [_fcaac ][_egacea ],_ebgdg .FontSize ).Add_TJ ([]_fe .PdfObject {_fe .MakeStringFromBytes (_gffbd )}...);};_fgdg :=_dbgf [_egacea ]/1000.0; +if _ebgdg .Underline {_gffef :=_ebgdg .UnderlineStyle .Color ;if _gffef ==nil {_gffef =_cabee .Style .Color ;};_fgbcc ,_edaf ,_acfdg :=_gffef .ToRGB ();_fgbcgf :=_bdge -_cced .X ;_ccgdd :=_befba -_aabce +_ebgdg .TextRise -_ebgdg .UnderlineStyle .Offset ; +_dafce =append (_dafce ,&_fc .BasicLine {X1 :_fgbcgf ,Y1 :_ccgdd ,X2 :_fgbcgf +_fgdg ,Y2 :_ccgdd ,LineWidth :_cabee .Style .UnderlineStyle .Thickness ,LineColor :_ggc .NewPdfColorDeviceRGB (_fgbcc ,_edaf ,_acfdg )});};if _cabee ._dfcb !=nil {var _afbba *_fe .PdfObjectArray ; +if !_cabee ._abacb {switch _bdade :=_cabee ._dfcb .GetContext ().(type ){case *_ggc .PdfAnnotationLink :_afbba =_fe .MakeArray ();_bdade .Rect =_afbba ;_abfdb ,_cgdg :=_bdade .Dest .(*_fe .PdfObjectArray );if _cgdg &&_abfdb .Len ()==5{_dccf ,_agcee :=_abfdb .Get (1).(*_fe .PdfObjectName ); +if _agcee &&_dccf .String ()=="\u0058\u0059\u005a"{_bcad ,_afec :=_fe .GetNumberAsFloat (_abfdb .Get (3));if _afec ==nil {_abfdb .Set (3,_fe .MakeFloat (_cced .PageHeight -_bcad ));};};};};_cabee ._abacb =true ;};if _afbba !=nil {_dbbe :=_fc .NewPoint (_bdge -_cced .X ,_befba +_ebgdg .TextRise -_aabce ).Rotate (_geba ._adag ); +_dbbe .X +=_cced .X ;_dbbe .Y +=_aabce ;_ffcf ,_egda ,_dcdfb ,_dfed :=_gcdfe (_fgdg ,_bbgd ,_geba ._adag );_dbbe .X +=_ffcf ;_dbbe .Y +=_egda ;_afbba .Clear ();_afbba .Append (_fe .MakeFloat (_dbbe .X ));_afbba .Append (_fe .MakeFloat (_dbbe .Y ));_afbba .Append (_fe .MakeFloat (_dbbe .X +_dcdfb )); +_afbba .Append (_fe .MakeFloat (_dbbe .Y +_dfed ));};_gbcc .AddAnnotation (_cabee ._dfcb );};_bdge +=_fgdg ;if _ffeda {_fcbac .Add_w (1.0);};if _dgced {_fcbac .Add_RG (0.0,0.0,0.0);};if _bbadee {_fcbac .Add_Tr (int64 (TextRenderingModeFill ));};if _gecbb {_fcbac .Add_Tc (0); +};if _dgegf {_fcbac .Add_Ts (0);};if _agee {_fcbac .Add_Tz (DefaultHorizontalScaling );};if _edcba !=0.0{_fcbac .Translate (0,-_edcba );_edcba =0.0;};};};_fcbac .Add_ET ();for _ ,_decfb :=range _dafce {_fcbac .SetStrokingColor (_decfb .LineColor ).Add_w (_decfb .LineWidth ).Add_m (_decfb .X1 ,_decfb .Y1 ).Add_l (_decfb .X2 ,_decfb .Y2 ).Add_s (); +};_fcbac .Add_Q ();_abfdd :=_fcbac .Operations ();_abfdd .WrapIfNeeded ();_gbcc .addContents (_abfdd );if _cadac {_bdecc :=_gddcd ;_cced .Y +=_bdecc ;_cced .Height -=_bdecc ;if _cced .Inline {_cced .X +=_geba .Width ()+_geba ._fbgbc .Right ;};};return _cced ,_cbgbg ,nil ; +}; -// SetWidth sets the the Paragraph width. This is essentially the wrapping width, -// i.e. the width the text can extend to prior to wrapping over to next line. -func (_gfeeg *StyledParagraph )SetWidth (width float64 ){_gfeeg ._fdfbb =width ;_gfeeg .wrapText ()}; +// StyledParagraph represents text drawn with a specified font and can wrap across lines and pages. +// By default occupies the available width in the drawing context. +type StyledParagraph struct{_cdffa []*TextChunk ;_egcg TextStyle ;_aecf TextStyle ;_eaeg TextAlignment ;_edbcb TextVerticalAlignment ;_babcf float64 ;_gfbb bool ;_gcadd float64 ;_cbeg bool ;_facb bool ;_cfec TextOverflow ;_adag float64 ;_fbgbc Margins ; +_gbga Positioning ;_gcfda float64 ;_cfge float64 ;_bfagd float64 ;_bdbc float64 ;_aabba [][]*TextChunk ;_dbdfe func (_afaf *StyledParagraph ,_bbade DrawContext );};func _cdgc (_gfbag *Block ,_gfacb *Paragraph ,_gebfa DrawContext )(DrawContext ,error ){_dadfc :=1; +_dfdca :=_fe .PdfObjectName ("\u0046\u006f\u006e\u0074"+_a .Itoa (_dadfc ));for _gfbag ._ge .HasFontByName (_dfdca ){_dadfc ++;_dfdca =_fe .PdfObjectName ("\u0046\u006f\u006e\u0074"+_a .Itoa (_dadfc ));};_bdec :=_gfbag ._ge .SetFontByName (_dfdca ,_gfacb ._fggb .ToPdfObject ()); +if _bdec !=nil {return _gebfa ,_bdec ;};_gfacb .wrapText ();_egggd :=_bdb .NewContentCreator ();_egggd .Add_q ();_cbabe :=_gebfa .PageHeight -_gebfa .Y -_gfacb ._fcbfa *_gfacb ._dacae ;_egggd .Translate (_gebfa .X ,_cbabe );if _gfacb ._dgeg !=0{_egggd .RotateDeg (_gfacb ._dgeg ); +};_decb :=_dbac (_gfacb ._bged );_bdec =_aede (_gfbag ,_decb ,_gfacb ._bged ,func ()Rectangle {return Rectangle {_cgedd :_gebfa .X ,_eeff :_cbabe ,_gfad :_gfacb .getMaxLineWidth ()/1000.0,_fefg :_gfacb .Height ()};});if _bdec !=nil {return _gebfa ,_bdec ; +};_egggd .Add_BT ().SetNonStrokingColor (_decb ).Add_Tf (_dfdca ,_gfacb ._fcbfa ).Add_TL (_gfacb ._fcbfa *_gfacb ._dacae );for _dede ,_beed :=range _gfacb ._cbcf {if _dede !=0{_egggd .Add_Tstar ();};_bbccd :=[]rune (_beed );_gfdfg :=0.0;_defae :=0;for _abbbd ,_abbbde :=range _bbccd {if _abbbde ==' '{_defae ++; +continue ;};if _abbbde =='\u000A'{continue ;};_egbgb ,_gbaae :=_gfacb ._fggb .GetRuneMetrics (_abbbde );if !_gbaae {_ca .Log .Debug ("\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0072\u0075\u006e\u0065\u0020\u0069=\u0025\u0064\u0020\u0072\u0075\u006e\u0065=\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0020\u0069n\u0020\u0066\u006f\u006e\u0074\u0020\u0025\u0073\u0020\u0025\u0073",_abbbd ,_abbbde ,_abbbde ,_gfacb ._fggb .BaseFont (),_gfacb ._fggb .Subtype ()); +return _gebfa ,_fa .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0067\u006c\u0079p\u0068");};_gfdfg +=_gfacb ._fcbfa *_egbgb .Wx ;};var _afbf []_fe .PdfObject ;_efae ,_dbd :=_gfacb ._fggb .GetRuneMetrics (' '); +if !_dbd {return _gebfa ,_fa .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068");};_eabf :=_efae .Wx ;switch _gfacb ._abd {case TextAlignmentJustify :if _defae > 0&&_dede < len (_gfacb ._cbcf )-1{_eabf =(_gfacb ._dcdb *1000.0-_gfdfg )/float64 (_defae )/_gfacb ._fcbfa ; +};case TextAlignmentCenter :_egace :=_gfdfg +float64 (_defae )*_eabf *_gfacb ._fcbfa ;_efdf :=(_gfacb ._dcdb *1000.0-_egace )/2/_gfacb ._fcbfa ;_afbf =append (_afbf ,_fe .MakeFloat (-_efdf ));case TextAlignmentRight :_dade :=_gfdfg +float64 (_defae )*_eabf *_gfacb ._fcbfa ; +_dbff :=(_gfacb ._dcdb *1000.0-_dade )/_gfacb ._fcbfa ;_afbf =append (_afbf ,_fe .MakeFloat (-_dbff ));};_egag :=_gfacb ._fggb .Encoder ();var _bdgd []byte ;for _ ,_gadg :=range _bbccd {if _gadg =='\u000A'{continue ;};if _gadg ==' '{if len (_bdgd )> 0{_afbf =append (_afbf ,_fe .MakeStringFromBytes (_bdgd )); +_bdgd =nil ;};_afbf =append (_afbf ,_fe .MakeFloat (-_eabf ));}else {if _ ,_baca :=_egag .RuneToCharcode (_gadg );!_baca {_bdec =UnsupportedRuneError {Message :_df .Sprintf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u0072\u0075\u006e\u0065 \u0069\u006e\u0020\u0074\u0065\u0078\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0023\u0078\u0020\u0028\u0025\u0063\u0029",_gadg ,_gadg ),Rune :_gadg }; +_gebfa ._bcbc =append (_gebfa ._bcbc ,_bdec );_ca .Log .Debug (_bdec .Error ());if _gebfa ._dgce <=0{continue ;};_gadg =_gebfa ._dgce ;};_bdgd =append (_bdgd ,_egag .Encode (string (_gadg ))...);};};if len (_bdgd )> 0{_afbf =append (_afbf ,_fe .MakeStringFromBytes (_bdgd )); +};_egggd .Add_TJ (_afbf ...);};_egggd .Add_ET ();_egggd .Add_Q ();_fdcgf :=_egggd .Operations ();_fdcgf .WrapIfNeeded ();_gfbag .addContents (_fdcgf );if _gfacb ._abea .IsRelative (){_aabg :=_gfacb .Height ();_gebfa .Y +=_aabg ;_gebfa .Height -=_aabg ; +if _gebfa .Inline {_gebfa .X +=_gfacb .Width ()+_gfacb ._fgcbf .Right ;};};return _gebfa ,nil ;}; -// DrawTemplate renders the template provided through the specified reader, -// using the specified `data` and `options`. -// Creator templates are first executed as text/template *Template instances, -// so the specified `data` is inserted within the template. -// The second phase of processing is actually parsing the template, translating -// it into creator components and rendering them using the provided options. -// Both the `data` and `options` parameters can be nil. -func (_gde *Block )DrawTemplate (c *Creator ,r _dfd .Reader ,data interface{},options *TemplateOptions )error {return _efccg (c ,r ,data ,options ,_gde );}; +// Scale scales Image by a constant factor, both width and height. +func (_dbb *Image )Scale (xFactor ,yFactor float64 ){_dbb ._cagba =xFactor *_dbb ._cagba ;_dbb ._efef =yFactor *_dbb ._efef ;}; -// Style returns the style of the line. -func (_dgca *Line )Style ()_ce .LineStyle {return _dgca ._ddca }; +// SetLineWidth sets the line width. +func (_aaeb *Polyline )SetLineWidth (lineWidth float64 ){_aaeb ._edbcg .LineWidth =lineWidth }; -// SetVerticalAlignment set the cell's vertical alignment of content. -// Can be one of: -// - CellHorizontalAlignmentTop -// - CellHorizontalAlignmentMiddle -// - CellHorizontalAlignmentBottom -func (_gbfdf *TableCell )SetVerticalAlignment (valign CellVerticalAlignment ){_gbfdf ._ecbg =valign }; +// BorderOpacity returns the border opacity of the ellipse (0-1). +func (_bgaec *Ellipse )BorderOpacity ()float64 {return _bgaec ._dadc };const (FitModeNone FitMode =iota ;FitModeFillWidth ;); -// SetLineWidth sets the line width. -func (_cgab *Polyline )SetLineWidth (lineWidth float64 ){_cgab ._dfgf .LineWidth =lineWidth }; +// SetPos sets the position of the graphic svg to the specified coordinates. +// This method sets the graphic svg to use absolute positioning. +func (_baabe *GraphicSVG )SetPos (x ,y float64 ){_baabe ._dgdb =PositionAbsolute ;_baabe ._bgag =x ;_baabe ._gcfge =y ;}; -// EnableFontSubsetting enables font subsetting for `font` when the creator output is written to file. -// Embeds only the subset of the runes/glyphs that are actually used to display the file. -// Subsetting can reduce the size of fonts significantly. -func (_fdag *Creator )EnableFontSubsetting (font *_fa .PdfFont ){_fdag ._gfc =append (_fdag ._gfc ,font )};func (_ggfg *Table )updateRowHeights (_dcgbe float64 ){for _ ,_baca :=range _ggfg ._bdfef {_defad :=_baca .width (_ggfg ._gaecf ,_dcgbe );_efega :=_baca .height (_defad ); -_cbcbc :=_ggfg ._cddcg [_baca ._cceef +_baca ._badd -2];if _baca ._badd > 1{_effe :=0.0;_ecaa :=_ggfg ._cddcg [_baca ._cceef -1:(_baca ._cceef +_baca ._badd -1)];for _ ,_agebe :=range _ecaa {_effe +=_agebe ;};if _efega <=_effe {continue ;};};if _efega > _cbcbc {_bgcg :=_efega /float64 (_baca ._badd ); -if _bgcg > _cbcbc {for _faabf :=1;_faabf <=_baca ._badd ;_faabf ++{if _bgcg > _ggfg ._cddcg [_baca ._cceef +_faabf -2]{_ggfg ._cddcg [_baca ._cceef +_faabf -2]=_bgcg ;};};};};};};func _fca (_gbga string ,_aafe _ea .PdfObject ,_ccb *_fa .PdfPageResources )_ea .PdfObjectName {_efgg :=_dc .TrimRightFunc (_dc .TrimSpace (_gbga ),func (_dab rune )bool {return _efe .IsNumber (_dab )}); -if _efgg ==""{_efgg ="\u0046\u006f\u006e\u0074";};_aceg :=0;_cgcb :=_ea .PdfObjectName (_gbga );for {_bdff ,_cag :=_ccb .GetFontByName (_cgcb );if !_cag ||_bdff ==_aafe {break ;};_aceg ++;_cgcb =_ea .PdfObjectName (_g .Sprintf ("\u0025\u0073\u0025\u0064",_efgg ,_aceg )); -};return _cgcb ;};func _eaage (_fcab ,_ccge ,_fdggf ,_gbad ,_ebgc ,_gaff float64 )*Curve {_gadc :=&Curve {};_gadc ._cfd =_fcab ;_gadc ._cdbb =_ccge ;_gadc ._bcga =_fdggf ;_gadc ._affa =_gbad ;_gadc ._bcca =_ebgc ;_gadc ._acdbc =_gaff ;_gadc ._adfb =ColorBlack ; -_gadc ._geeb =1.0;return _gadc ;};func (_ececf *templateProcessor )parseListMarker (_ceab *templateNode )(interface{},error ){if _ceab ._bgba ==nil {_ececf .nodeLogError (_ceab ,"\u004c\u0069\u0073\u0074\u0020\u006da\u0072\u006b\u0065\u0072\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0063a\u006e\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c\u002e"); -return nil ,_abag ;};var _aegdb *TextChunk ;switch _eefc :=_ceab ._bgba ._ccfeb .(type ){case *List :_aegdb =&_eefc ._cgef ;case *listItem :_aegdb =&_eefc ._dbea ;default:_ececf .nodeLogError (_ceab ,"\u0025\u0076 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u006e\u006f\u0064\u0065\u0020\u0066\u006f\u0072\u0020\u006c\u0069\u0073\u0074\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e",_eefc ); -return nil ,_abag ;};if _ ,_agfdac :=_ececf .parseTextChunk (_ceab ,_aegdb );_agfdac !=nil {_ececf .nodeLogError (_ceab ,"\u0043\u006f\u0075ld\u0020\u006e\u006f\u0074\u0020\u0070\u0061\u0072\u0073e\u0020l\u0069s\u0074 \u006d\u0061\u0072\u006b\u0065\u0072\u003a\u0020\u0060\u0025\u0076\u0060\u002e",_agfdac ); -return nil ,nil ;};return _aegdb ,nil ;}; +// Color interface represents colors in the PDF creator. +type Color interface{ToRGB ()(float64 ,float64 ,float64 );}; -// SetFitMode sets the fit mode of the line. -// NOTE: The fit mode is only applied if relative positioning is used. -func (_cece *Line )SetFitMode (fitMode FitMode ){_cece ._bfeb =fitMode }; +// SetRowHeight sets the height for a specified row. +func (_fcde *Table )SetRowHeight (row int ,h float64 )error {if row < 1||row > len (_fcde ._begb ){return _fa .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_fcde ._begb [row -1]=h ;return nil ; +};func (_fagbe *templateProcessor )parseTable (_bdcff *templateNode )(interface{},error ){var _ffceb int64 ;for _ ,_daffa :=range _bdcff ._gbdee .Attr {_gbed :=_daffa .Value ;switch _fbbf :=_daffa .Name .Local ;_fbbf {case "\u0063o\u006c\u0075\u006d\u006e\u0073":_ffceb =_fagbe .parseInt64Attr (_fbbf ,_gbed ); +};};if _ffceb <=0{_fagbe .nodeLogDebug (_bdcff ,"\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006eu\u006d\u0062e\u0072\u0020\u006f\u0066\u0020\u0074\u0061\u0062\u006ce\u0020\u0063\u006f\u006cu\u006d\u006e\u0073\u003a\u0020\u0025\u0064\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0031\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020m\u0061\u0079\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e",_ffceb ); +_ffceb =1;};_dcbgg :=_fagbe .creator .NewTable (int (_ffceb ));for _ ,_bagf :=range _bdcff ._gbdee .Attr {_ddgede :=_bagf .Value ;switch _cgfbc :=_bagf .Name .Local ;_cgfbc {case "\u0063\u006f\u006c\u0075\u006d\u006e\u002d\u0077\u0069\u0064\u0074\u0068\u0073":_dcbgg .SetColumnWidths (_fagbe .parseFloatArray (_cgfbc ,_ddgede )...); +case "\u006d\u0061\u0072\u0067\u0069\u006e":_fbfda :=_fagbe .parseMarginAttr (_cgfbc ,_ddgede );_dcbgg .SetMargins (_fbfda .Left ,_fbfda .Right ,_fbfda .Top ,_fbfda .Bottom );case "\u0078":_dcbgg .SetPos (_fagbe .parseFloatAttr (_cgfbc ,_ddgede ),_dcbgg ._degda ); +case "\u0079":_dcbgg .SetPos (_dcbgg ._fedd ,_fagbe .parseFloatAttr (_cgfbc ,_ddgede ));case "\u0068\u0065a\u0064\u0065\u0072-\u0073\u0074\u0061\u0072\u0074\u002d\u0072\u006f\u0077":_dcbgg ._aggfe =int (_fagbe .parseInt64Attr (_cgfbc ,_ddgede ));case "\u0068\u0065\u0061\u0064\u0065\u0072\u002d\u0065\u006ed\u002d\u0072\u006f\u0077":_dcbgg ._fecf =int (_fagbe .parseInt64Attr (_cgfbc ,_ddgede )); +case "\u0065n\u0061b\u006c\u0065\u002d\u0072\u006f\u0077\u002d\u0077\u0072\u0061\u0070":_dcbgg .EnableRowWrap (_fagbe .parseBoolAttr (_cgfbc ,_ddgede ));case "\u0065\u006ea\u0062\u006c\u0065-\u0070\u0061\u0067\u0065\u002d\u0077\u0072\u0061\u0070":_dcbgg .EnablePageWrap (_fagbe .parseBoolAttr (_cgfbc ,_ddgede )); +case "\u0063o\u006c\u0075\u006d\u006e\u0073":break ;default:_fagbe .nodeLogDebug (_bdcff ,"\u0055n\u0073\u0075p\u0070\u006f\u0072\u0074e\u0064\u0020\u0074a\u0062\u006c\u0065\u0020\u0061\u0074\u0074\u0072\u0069bu\u0074\u0065\u003a \u0060\u0025s\u0060\u002e\u0020\u0053\u006b\u0069p\u0070\u0069n\u0067\u002e",_cgfbc ); +};};if _dcbgg ._aggfe !=0&&_dcbgg ._fecf !=0{_abdg :=_dcbgg .SetHeaderRows (_dcbgg ._aggfe ,_dcbgg ._fecf );if _abdg !=nil {_fagbe .nodeLogDebug (_bdcff ,"\u0043\u006ful\u0064\u0020\u006eo\u0074\u0020\u0073\u0065t t\u0061bl\u0065\u0020\u0068\u0065\u0061\u0064\u0065r \u0072\u006f\u0077\u0073\u003a\u0020\u0025v\u002e",_abdg ); +};}else {_dcbgg ._aggfe =0;_dcbgg ._fecf =0;};return _dcbgg ,nil ;};func (_bedebd *templateProcessor )parseTextAlignmentAttr (_bfdbc ,_agbce string )TextAlignment {_ca .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020t\u0065\u0078\u0074\u0020\u0061\u006c\u0069g\u006e\u006d\u0065\u006e\u0074\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028`\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_bfdbc ,_agbce ); +_beba :=map[string ]TextAlignment {"\u006c\u0065\u0066\u0074":TextAlignmentLeft ,"\u0072\u0069\u0067h\u0074":TextAlignmentRight ,"\u0063\u0065\u006e\u0074\u0065\u0072":TextAlignmentCenter ,"\u006au\u0073\u0074\u0069\u0066\u0079":TextAlignmentJustify }[_agbce ]; +return _beba ;};func (_fbcb *Image )rotatedSize ()(float64 ,float64 ){_dfgb :=_fbcb ._cagba ;_bdac :=_fbcb ._efef ;_bcag :=_fbcb ._eadgc ;if _bcag ==0{return _dfgb ,_bdac ;};_aadfe :=_fc .Path {Points :[]_fc .Point {_fc .NewPoint (0,0).Rotate (_bcag ),_fc .NewPoint (_dfgb ,0).Rotate (_bcag ),_fc .NewPoint (0,_bdac ).Rotate (_bcag ),_fc .NewPoint (_dfgb ,_bdac ).Rotate (_bcag )}}.GetBoundingBox (); +return _aadfe .Width ,_aadfe .Height ;}; -// SetAntiAlias enables anti alias config. +// SetExtends specifies whether ot extend the shading beyond the starting and ending points. // -// Anti alias is disabled by default. -func (_afeeff *LinearShading )SetAntiAlias (enable bool ){_afeeff ._dgbd .SetAntiAlias (enable )}; +// Text extends is set to `[]bool{false, false}` by default. +func (_ecbde *RadialShading )SetExtends (start bool ,end bool ){_ecbde ._fcacc .SetExtends (start ,end )}; -// SetFillColor sets the fill color of the rectangle. -func (_cdgc *Rectangle )SetFillColor (col Color ){_cdgc ._abbg =col }; +// SetWidth sets the width of the rectangle. +func (_feae *Rectangle )SetWidth (width float64 ){_feae ._gfad =width };var _dac =_fag .MustCompile ("\u005c\u0064\u002b"); -// ToPdfShadingPattern generates a new model.PdfShadingPatternType2 object. -func (_bddc *LinearShading )ToPdfShadingPattern ()*_fa .PdfShadingPatternType2 {_ggege ,_fgbf ,_dbda :=_bddc ._dgbd ._cfcbc .ToRGB ();_ggfaaf :=_bddc .shadingModel ();_ggfaaf .PdfShading .Background =_ea .MakeArrayFromFloats ([]float64 {_ggege ,_fgbf ,_dbda }); -_acga :=_fa .NewPdfShadingPatternType2 ();_acga .Shading =_ggfaaf ;return _acga ;}; +// SellerAddress returns the seller address used in the invoice template. +func (_eggge *Invoice )SellerAddress ()*InvoiceAddress {return _eggge ._cfbbb }; -// CellBorderSide defines the table cell's border side. -type CellBorderSide int ; +// NewGraphicSVGFromString creates a graphic SVG from a SVG string. +func NewGraphicSVGFromString (svgStr string )(*GraphicSVG ,error ){return _bdcfa (svgStr )}; -// CurCol returns the currently active cell's column number. -func (_aebed *Table )CurCol ()int {_egfa :=(_aebed ._aeba -1)%(_aebed ._beege )+1;return _egfa };func _gdadab (_fbbc *templateProcessor ,_baada *templateNode )(interface{},error ){return _fbbc .parseTable (_baada );}; +// NewInvoice returns an instance of an empty invoice. +func (_bfdg *Creator )NewInvoice ()*Invoice {_gdfcf :=_bfdg .NewTextStyle ();_gdfcf .Font =_bfdg ._eacc ;return _gcag (_bfdg .NewTextStyle (),_gdfcf );};func _ffa (_bfd string ,_cdga _fe .PdfObject ,_dgg *_ggc .PdfPageResources )_fe .PdfObjectName {_befe :=_dc .TrimRightFunc (_dc .TrimSpace (_bfd ),func (_dcbb rune )bool {return _cd .IsNumber (_dcbb )}); +if _befe ==""{_befe ="\u0046\u006f\u006e\u0074";};_eafc :=0;_gee :=_fe .PdfObjectName (_bfd );for {_efd ,_cbf :=_dgg .GetFontByName (_gee );if !_cbf ||_efd ==_cdga {break ;};_eafc ++;_gee =_fe .PdfObjectName (_df .Sprintf ("\u0025\u0073\u0025\u0064",_befe ,_eafc )); +};return _gee ;}; -// SetLineMargins sets the margins for all new lines of the table of contents. -func (_fbgee *TOC )SetLineMargins (left ,right ,top ,bottom float64 ){_bffde :=&_fbgee ._adgec ;_bffde .Left =left ;_bffde .Right =right ;_bffde .Top =top ;_bffde .Bottom =bottom ;};func (_eaaf *templateProcessor )parseTextAlignmentAttr (_ebce ,_bebgc string )TextAlignment {_eef .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020t\u0065\u0078\u0074\u0020\u0061\u006c\u0069g\u006e\u006d\u0065\u006e\u0074\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028`\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_ebce ,_bebgc ); -_eeaf :=map[string ]TextAlignment {"\u006c\u0065\u0066\u0074":TextAlignmentLeft ,"\u0072\u0069\u0067h\u0074":TextAlignmentRight ,"\u0063\u0065\u006e\u0074\u0065\u0072":TextAlignmentCenter ,"\u006au\u0073\u0074\u0069\u0066\u0079":TextAlignmentJustify }[_bebgc ]; -return _eeaf ;};func (_bgfcf *templateProcessor )parseLinearGradientAttr (creator *Creator ,_adgcg string )Color {_cbdgb :=ColorBlack ;if _adgcg ==""{return _cbdgb ;};_dfec :=creator .NewLinearGradientColor ([]*ColorPoint {});_dfec .SetExtends (true ,true ); -var (_agefc =_dc .Split (_adgcg [16:len (_adgcg )-1],"\u002c");_gegdg =_dc .TrimSpace (_agefc [0]););if _dc .HasSuffix (_gegdg ,"\u0064\u0065\u0067"){_aabe ,_bebgbf :=_a .ParseFloat (_gegdg [:len (_gegdg )-3],64);if _bebgbf !=nil {_eef .Log .Debug ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0067\u0072\u0061\u0064\u0069e\u006e\u0074\u0020\u0061\u006e\u0067\u006ce\u003a\u0020\u0025\u0076",_bebgbf ); -}else {_dfec .SetAngle (_aabe );};_agefc =_agefc [1:];};_gccfd ,_agdde :=_bgfcf .processGradientColorPair (_agefc );if _gccfd ==nil ||_agdde ==nil {return _cbdgb ;};for _dagag :=0;_dagag < len (_gccfd );_dagag ++{_dfec .AddColorStop (_gccfd [_dagag ],_agdde [_dagag ]); -};return _dfec ;};func (_acda *pageTransformations )applyFlip (_gccg *_fa .PdfPage )error {_cbcc ,_cacb :=_acda ._gdbeg ,_acda ._bag ;if !_cbcc &&!_cacb {return nil ;};if _gccg ==nil {return _e .New ("\u006e\u006f\u0020\u0070\u0061\u0067\u0065\u0020\u0061c\u0074\u0069\u0076\u0065"); -};_cfcd ,_bccd :=_gccg .GetMediaBox ();if _bccd !=nil {return _bccd ;};_cgd ,_fed :=_cfcd .Width (),_cfcd .Height ();_cgb ,_bccd :=_gccg .GetRotate ();if _bccd !=nil {_eef .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_bccd .Error ()); -};if _fdgg :=_cgb %360!=0&&_cgb %90==0;_fdgg {if _fgag :=(360+_cgb %360)%360;_fgag ==90||_fgag ==270{_cbcc ,_cacb =_cacb ,_cbcc ;};};_dba ,_dag :=1.0,0.0;if _cbcc {_dba ,_dag =-1.0,-_cgd ;};_cdg ,_gaee :=1.0,0.0;if _cacb {_cdg ,_gaee =-1.0,-_fed ;};_abae :=_bd .NewContentCreator ().Scale (_dba ,_cdg ).Translate (_dag ,_gaee ); -_agdd ,_bccd :=_ea .MakeStream (_abae .Bytes (),_ea .NewFlateEncoder ());if _bccd !=nil {return _bccd ;};_aafc :=_ea .MakeArray (_agdd );_aafc .Append (_gccg .GetContentStreamObjs ()...);_gccg .Contents =_aafc ;return nil ;}; +// Polyline represents a slice of points that are connected as straight lines. +// Implements the Drawable interface and can be rendered using the Creator. +type Polyline struct{_edbcg *_fc .Polyline ;_afcb float64 ;};func (_ggg cmykColor )ToRGB ()(float64 ,float64 ,float64 ){_dfee :=_ggg ._ccb ;return 1-(_ggg ._badc *(1-_dfee )+_dfee ),1-(_ggg ._dea *(1-_dfee )+_dfee ),1-(_ggg ._gaa *(1-_dfee )+_dfee );}; -// Width returns the width of the rectangle. -// NOTE: the returned value does not include the border width of the rectangle. -func (_ccfg *Rectangle )Width ()float64 {return _ccfg ._faaa };type fontMetrics struct{_cbaab float64 ;_gbffe float64 ;_aebcd float64 ;_dgad float64 ;};func _ceef (_ggdb ,_aebda TextStyle )*Invoice {_dbde :=&Invoice {_afgg :"\u0049N\u0056\u004f\u0049\u0043\u0045",_edec :"\u002c\u0020",_ggac :_ggdb ,_acaa :_aebda }; -_dbde ._aecb =&InvoiceAddress {Separator :_dbde ._edec };_dbde ._gcfe =&InvoiceAddress {Heading :"\u0042i\u006c\u006c\u0020\u0074\u006f",Separator :_dbde ._edec };_ccgc :=ColorRGBFrom8bit (245,245,245);_aafb :=ColorRGBFrom8bit (155,155,155);_dbde ._gbfbc =_aebda ; -_dbde ._gbfbc .Color =_aafb ;_dbde ._gbfbc .FontSize =20;_dbde ._gbgdd =_ggdb ;_dbde ._cecc =_aebda ;_dbde ._bgeac =_ggdb ;_dbde ._gaga =_aebda ;_dbde ._cebef =_dbde .NewCellProps ();_dbde ._cebef .BackgroundColor =_ccgc ;_dbde ._cebef .TextStyle =_aebda ; -_dbde ._abef =_dbde .NewCellProps ();_dbde ._abef .TextStyle =_aebda ;_dbde ._abef .BackgroundColor =_ccgc ;_dbde ._abef .BorderColor =_ccgc ;_dbde ._cdab =_dbde .NewCellProps ();_dbde ._cdab .BorderColor =_ccgc ;_dbde ._cdab .BorderSides =[]CellBorderSide {CellBorderSideBottom }; -_dbde ._cdab .Alignment =CellHorizontalAlignmentRight ;_dbde ._defd =_dbde .NewCellProps ();_dbde ._defd .Alignment =CellHorizontalAlignmentRight ;_dbde ._cgga =[2]*InvoiceCell {_dbde .newCell ("\u0049\u006e\u0076\u006f\u0069\u0063\u0065\u0020\u006eu\u006d\u0062\u0065\u0072",_dbde ._cebef ),_dbde .newCell ("",_dbde ._cebef )}; -_dbde ._bacd =[2]*InvoiceCell {_dbde .newCell ("\u0044\u0061\u0074\u0065",_dbde ._cebef ),_dbde .newCell ("",_dbde ._cebef )};_dbde ._gdcc =[2]*InvoiceCell {_dbde .newCell ("\u0044\u0075\u0065\u0020\u0044\u0061\u0074\u0065",_dbde ._cebef ),_dbde .newCell ("",_dbde ._cebef )}; -_dbde ._aeggf =[2]*InvoiceCell {_dbde .newCell ("\u0053\u0075\u0062\u0074\u006f\u0074\u0061\u006c",_dbde ._defd ),_dbde .newCell ("",_dbde ._defd )};_dfbb :=_dbde ._defd ;_dfbb .TextStyle =_aebda ;_dfbb .BackgroundColor =_ccgc ;_dfbb .BorderColor =_ccgc ; -_dbde ._cadf =[2]*InvoiceCell {_dbde .newCell ("\u0054\u006f\u0074a\u006c",_dfbb ),_dbde .newCell ("",_dfbb )};_dbde ._ebcg =[2]string {"\u004e\u006f\u0074e\u0073",""};_dbde ._befe =[2]string {"T\u0065r\u006d\u0073\u0020\u0061\u006e\u0064\u0020\u0063o\u006e\u0064\u0069\u0074io\u006e\u0073",""}; -_dbde ._cgcg =[]*InvoiceCell {_dbde .newColumn ("D\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e",CellHorizontalAlignmentLeft ),_dbde .newColumn ("\u0051\u0075\u0061\u006e\u0074\u0069\u0074\u0079",CellHorizontalAlignmentRight ),_dbde .newColumn ("\u0055\u006e\u0069\u0074\u0020\u0070\u0072\u0069\u0063\u0065",CellHorizontalAlignmentRight ),_dbde .newColumn ("\u0041\u006d\u006f\u0075\u006e\u0074",CellHorizontalAlignmentRight )}; -return _dbde ;};func (_ggbbe *StyledParagraph )wrapWordChunks (){if !_ggbbe ._ebgbe {return ;};var (_dgeaf []*TextChunk ;_bfba *_fa .PdfFont ;);for _ ,_bafef :=range _ggbbe ._cfbcg {_gefde :=[]rune (_bafef .Text );if _bfba ==nil {_bfba =_bafef .Style .Font ; -};_ebfag :=_bafef ._gbgga ;_aadc :=_bafef .VerticalAlignment ;if len (_dgeaf )> 0{if len (_gefde )==1&&_efe .IsPunct (_gefde [0])&&_bafef .Style .Font ==_bfba {_ceedc :=[]rune (_dgeaf [len (_dgeaf )-1].Text );_dgeaf [len (_dgeaf )-1].Text =string (append (_ceedc ,_gefde [0])); -continue ;}else {_ ,_fddf :=_a .Atoi (_bafef .Text );if _fddf ==nil {_dddbe :=[]rune (_dgeaf [len (_dgeaf )-1].Text );_edcfc :=len (_dddbe );if _edcfc >=2{_ ,_ceeef :=_a .Atoi (string (_dddbe [_edcfc -2]));if _ceeef ==nil &&_efe .IsPunct (_dddbe [_edcfc -1]){_dgeaf [len (_dgeaf )-1].Text =string (append (_dddbe ,_gefde ...)); -continue ;};};};};};_fefd ,_ebgae :=_eddb (_bafef .Text );if _ebgae !=nil {_eef .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0062\u0072\u0065\u0061\u006b\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0074\u006f\u0020w\u006f\u0072\u0064\u0073\u003a\u0020\u0025\u0076",_ebgae ); -_fefd =[]string {_bafef .Text };};for _ ,_ebbde :=range _fefd {_gccbg :=NewTextChunk (_ebbde ,_bafef .Style );_gccbg ._gbgga =_bdfgc (_ebfag );_gccbg .VerticalAlignment =_aadc ;_dgeaf =append (_dgeaf ,_gccbg );};_bfba =_bafef .Style .Font ;};if len (_dgeaf )> 0{_ggbbe ._cfbcg =_dgeaf ; -};}; + +// SetMargins sets the Paragraph's margins. +func (_bdbbb *StyledParagraph )SetMargins (left ,right ,top ,bottom float64 ){_bdbbb ._fbgbc .Left =left ;_bdbbb ._fbgbc .Right =right ;_bdbbb ._fbgbc .Top =top ;_bdbbb ._fbgbc .Bottom =bottom ;};func (_fdcdd *templateProcessor )parseInt64Attr (_dabe ,_cecab string )int64 {_ca .Log .Debug ("\u0050\u0061rs\u0069\u006e\u0067 \u0069\u006e\u0074\u00364 a\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020(`\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_dabe ,_cecab ); +_bebdd ,_ :=_a .ParseInt (_cecab ,10,64);return _bebdd ;}; + +// SetEnableWrap sets the line wrapping enabled flag. +func (_gedb *Paragraph )SetEnableWrap (enableWrap bool ){_gedb ._bebg =enableWrap ;_gedb ._ggad =false }; // SetPositioning sets the positioning of the ellipse (absolute or relative). -func (_daaa *Ellipse )SetPositioning (position Positioning ){_daaa ._dada =position }; +func (_daee *Ellipse )SetPositioning (position Positioning ){_daee ._acgd =position }; -// SetWidthBottom sets border width for bottom. -func (_gbf *border )SetWidthBottom (bw float64 ){_gbf ._bbdf =bw }; +// SetShowNumbering sets a flag to indicate whether or not to show chapter numbers as part of title. +func (_eedf *Chapter )SetShowNumbering (show bool ){_eedf ._fgg =show ;_eedf ._ddd .SetText (_eedf .headingText ());}; -// SetBackgroundColor set background color of the shading area. -// -// By default the background color is set to white. -func (_adgfa *LinearShading )SetBackgroundColor (backgroundColor Color ){_adgfa ._dgbd .SetBackgroundColor (backgroundColor );}; +// BorderOpacity returns the border opacity of the rectangle (0-1). +func (_bbee *Rectangle )BorderOpacity ()float64 {return _bbee ._ffgd }; -// SetTerms sets the terms and conditions section of the invoice. -func (_gafe *Invoice )SetTerms (title ,content string ){_gafe ._befe =[2]string {title ,content }}; +// GeneratePageBlocks generate the Page blocks. Draws the Image on a block, implementing the Drawable interface. +func (_cgbb *Image )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){if _cgbb ._edee ==nil {if _afdd :=_cgbb .makeXObject ();_afdd !=nil {return nil ,ctx ,_afdd ;};};var _gdfdd []*Block ;_abce :=ctx ;_fgcb :=NewBlock (ctx .PageWidth ,ctx .PageHeight ); +if _cgbb ._ebfa .IsRelative (){_cgbb .applyFitMode (ctx .Width );ctx .X +=_cgbb ._cbea .Left ;ctx .Y +=_cgbb ._cbea .Top ;ctx .Width -=_cgbb ._cbea .Left +_cgbb ._cbea .Right ;ctx .Height -=_cgbb ._cbea .Top +_cgbb ._cbea .Bottom ;if _cgbb ._efef > ctx .Height {_gdfdd =append (_gdfdd ,_fgcb ); +_fgcb =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_bbaef :=ctx ;_bbaef .Y =ctx .Margins .Top +_cgbb ._cbea .Top ;_bbaef .X =ctx .Margins .Left +_cgbb ._cbea .Left ;_bbaef .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_cgbb ._cbea .Top -_cgbb ._cbea .Bottom ; +_bbaef .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_cgbb ._cbea .Left -_cgbb ._cbea .Right ;ctx =_bbaef ;};}else {ctx .X =_cgbb ._fce ;ctx .Y =_cgbb ._gdd ;};ctx ,_ebffg :=_effe (_fgcb ,_cgbb ,ctx );if _ebffg !=nil {return nil ,ctx ,_ebffg ; +};_gdfdd =append (_gdfdd ,_fgcb );if _cgbb ._ebfa .IsAbsolute (){ctx =_abce ;}else {ctx .X =_abce .X ;ctx .Width =_abce .Width ;ctx .Y +=_cgbb ._cbea .Bottom ;};return _gdfdd ,ctx ,nil ;}; -// SetMargins sets the margins for the Image (in relative mode): left, right, top, bottom. -func (_fgd *Image )SetMargins (left ,right ,top ,bottom float64 ){_fgd ._gbba .Left =left ;_fgd ._gbba .Right =right ;_fgd ._gbba .Top =top ;_fgd ._gbba .Bottom =bottom ;}; +// TextStyle is a collection of properties that can be assigned to a text chunk. +type TextStyle struct{ -// TextRenderingMode determines whether showing text shall cause glyph -// outlines to be stroked, filled, used as a clipping boundary, or some -// combination of the three. -// See section 9.3 "Text State Parameters and Operators" and -// Table 106 (pp. 254-255 PDF32000_2008). -type TextRenderingMode int ; +// Color represents the color of the text. +Color Color ; -// SetBackgroundColor sets the cell's background color. -func (_aecdd *TableCell )SetBackgroundColor (col Color ){_aecdd ._cbacb =col }; +// OutlineColor represents the color of the text outline. +OutlineColor Color ; -// SetBuyerAddress sets the buyer address of the invoice. -func (_dfda *Invoice )SetBuyerAddress (address *InvoiceAddress ){_dfda ._gcfe =address }; +// Font represents the font the text will use. +Font *_ggc .PdfFont ; -// SetEnableWrap sets the line wrapping enabled flag. -func (_gdaa *StyledParagraph )SetEnableWrap (enableWrap bool ){_gdaa ._dgba =enableWrap ;_gdaa ._gadge =false ;}; +// FontSize represents the size of the font. +FontSize float64 ; -// GetCoords returns the upper left corner coordinates of the rectangle (`x`, `y`). -func (_efbbg *Rectangle )GetCoords ()(float64 ,float64 ){return _efbbg ._dfbc ,_efbbg ._gbfgg };func (_fgaa *templateProcessor )processGradientColorPair (_bggc []string )(_ccbfc []Color ,_aceadg []float64 ){for _ ,_gfaga :=range _bggc {var (_ffcd =_dc .Fields (_gfaga ); -_fded =len (_ffcd ););if _fded ==0{continue ;};_eaggg :="";if _fded > 1{_eaggg =_dc .TrimSpace (_ffcd [1]);};_dcaf :=-1.0;if _dc .HasSuffix (_eaggg ,"\u0025"){_gfbfe ,_fege :=_a .ParseFloat (_eaggg [:len (_eaggg )-1],64);if _fege !=nil {_eef .Log .Debug ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072s\u0069\u006e\u0067\u0020\u0070\u006f\u0069n\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fege ); -};_dcaf =_gfbfe /100.0;};_cfdeg :=_fgaa .parseColor (_dc .TrimSpace (_ffcd [0]));if _cfdeg !=nil {_ccbfc =append (_ccbfc ,_cfdeg );_aceadg =append (_aceadg ,_dcaf );};};if len (_ccbfc )!=len (_aceadg ){_eef .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u006c\u0069\u006e\u0065\u0061\u0072\u0020\u0067\u0072\u0061\u0064i\u0065\u006e\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0064\u0065\u0066\u0069\u006e\u0069\u0074\u0069\u006f\u006e\u0021"); -return nil ,nil ;};_ggcc :=-1;_gaaa :=0.0;for _fegf ,_cbef :=range _aceadg {if _cbef ==-1.0{if _fegf ==0{_cbef =0.0;_aceadg [_fegf ]=0.0;continue ;};_ggcc ++;if _fegf < len (_aceadg )-1{continue ;}else {_cbef =1.0;_aceadg [_fegf ]=1.0;};};_cfcce :=_ggcc +1; -for _bcef :=_fegf -_ggcc ;_bcef < _fegf ;_bcef ++{_aceadg [_bcef ]=_gaaa +(float64 (_bcef )*(_cbef -_gaaa )/float64 (_cfcce ));};_gaaa =_cbef ;_ggcc =-1;};return _ccbfc ,_aceadg ;}; +// OutlineSize represents the thickness of the text outline. +OutlineSize float64 ; -// InvoiceCell represents any cell belonging to a table from the invoice -// template. The main tables are the invoice information table, the line -// items table and totals table. Contains the text value of the cell and -// the style properties of the cell. -type InvoiceCell struct{InvoiceCellProps ;Value string ;}; +// CharSpacing represents the character spacing. +CharSpacing float64 ; -// ScaleToWidth sets the graphic svg scaling factor with the given width. -func (_agad *GraphicSVG )ScaleToWidth (w float64 ){_cea :=_agad ._baea .Height /_agad ._baea .Width ;_agad ._baea .Width =w ;_agad ._baea .Height =w *_cea ;_agad ._baea .SetScaling (_cea ,_cea );};func (_ebadb *templateProcessor )parseTextChunk (_gbadd *templateNode ,_acff *TextChunk )(interface{},error ){if _gbadd ._bgba ==nil {_ebadb .nodeLogError (_gbadd ,"\u0054\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u0020\u0070\u0061\u0072\u0065n\u0074 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); -return nil ,_abag ;};var (_gabge =_ebadb .creator .NewTextStyle ();_bbef bool ;);for _ ,_bcgc :=range _gbadd ._facfb .Attr {if _bcgc .Name .Local =="\u006c\u0069\u006e\u006b"{_cbffc ,_efbef :=_gbadd ._bgba ._ccfeb .(*StyledParagraph );if !_efbef {_ebadb .nodeLogError (_gbadd ,"\u004c\u0069\u006e\u006b \u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065 \u006f\u006e\u006c\u0079\u0020\u0061\u0070\u0070\u006c\u0069\u0063\u0061\u0062\u006c\u0065\u0020\u0074\u006f \u0070\u0061\u0072\u0061\u0067r\u0061\u0070\u0068\u0027\u0073\u0020\u0074\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u002e"); -_bbef =true ;}else {_gabge =_cbffc ._ggee ;};break ;};};if _acff ==nil {_acff =NewTextChunk ("",_gabge );};for _ ,_efgef :=range _gbadd ._facfb .Attr {_efdfb :=_efgef .Value ;switch _ccfff :=_efgef .Name .Local ;_ccfff {case "\u0063\u006f\u006co\u0072":_acff .Style .Color =_ebadb .parseColorAttr (_ccfff ,_efdfb ); -case "\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u002d\u0063\u006f\u006c\u006f\u0072":_acff .Style .OutlineColor =_ebadb .parseColorAttr (_ccfff ,_efdfb );case "\u0066\u006f\u006e\u0074":_acff .Style .Font =_ebadb .parseFontAttr (_ccfff ,_efdfb );case "\u0066o\u006e\u0074\u002d\u0073\u0069\u007ae":_acff .Style .FontSize =_ebadb .parseFloatAttr (_ccfff ,_efdfb ); -case "\u006f\u0075\u0074l\u0069\u006e\u0065\u002d\u0073\u0069\u007a\u0065":_acff .Style .OutlineSize =_ebadb .parseFloatAttr (_ccfff ,_efdfb );case "\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u002d\u0073\u0070a\u0063\u0069\u006e\u0067":_acff .Style .CharSpacing =_ebadb .parseFloatAttr (_ccfff ,_efdfb ); -case "\u0068o\u0072i\u007a\u006f\u006e\u0074\u0061l\u002d\u0073c\u0061\u006c\u0069\u006e\u0067":_acff .Style .HorizontalScaling =_ebadb .parseFloatAttr (_ccfff ,_efdfb );case "\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067-\u006d\u006f\u0064\u0065":_acff .Style .RenderingMode =_ebadb .parseTextRenderingModeAttr (_ccfff ,_efdfb ); -case "\u0075n\u0064\u0065\u0072\u006c\u0069\u006ee":_acff .Style .Underline =_ebadb .parseBoolAttr (_ccfff ,_efdfb );case "\u0075n\u0064e\u0072\u006c\u0069\u006e\u0065\u002d\u0063\u006f\u006c\u006f\u0072":_acff .Style .UnderlineStyle .Color =_ebadb .parseColorAttr (_ccfff ,_efdfb ); -case "\u0075\u006ed\u0065\u0072\u006ci\u006e\u0065\u002d\u006f\u0066\u0066\u0073\u0065\u0074":_acff .Style .UnderlineStyle .Offset =_ebadb .parseFloatAttr (_ccfff ,_efdfb );case "\u0075\u006e\u0064\u0065rl\u0069\u006e\u0065\u002d\u0074\u0068\u0069\u0063\u006b\u006e\u0065\u0073\u0073":_acff .Style .UnderlineStyle .Thickness =_ebadb .parseFloatAttr (_ccfff ,_efdfb ); -case "\u006c\u0069\u006e\u006b":if !_bbef {_acff ._gbgga =_ebadb .parseLinkAttr (_ccfff ,_efdfb );};case "\u0074e\u0078\u0074\u002d\u0072\u0069\u0073e":_acff .Style .TextRise =_ebadb .parseFloatAttr (_ccfff ,_efdfb );default:_ebadb .nodeLogDebug (_gbadd ,"\u0055\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e",_ccfff ); -};};return _acff ,nil ;};func (_cbcf *Invoice )drawInformation ()*Table {_gcdf :=_bgfa (2);_cfge :=append ([][2]*InvoiceCell {_cbcf ._cgga ,_cbcf ._bacd ,_cbcf ._gdcc },_cbcf ._dgec ...);for _ ,_adef :=range _cfge {_faee ,_gead :=_adef [0],_adef [1];if _gead .Value ==""{continue ; -};_dede :=_gcdf .NewCell ();_dede .SetBackgroundColor (_faee .BackgroundColor );_cbcf .setCellBorder (_dede ,_faee );_aecdb :=_defdc (_faee .TextStyle );_aecdb .Append (_faee .Value );_aecdb .SetMargins (0,0,2,1);_dede .SetContent (_aecdb );_dede =_gcdf .NewCell (); -_dede .SetBackgroundColor (_gead .BackgroundColor );_cbcf .setCellBorder (_dede ,_gead );_aecdb =_defdc (_gead .TextStyle );_aecdb .Append (_gead .Value );_aecdb .SetMargins (0,0,2,1);_dede .SetContent (_aecdb );};return _gcdf ;};func _ebgb (_gegb string )string {_dbcfc :=_gegg .FindAllString (_gegb ,-1); -if len (_dbcfc )==0{_gegb =_gegb +"\u0030";}else {_fdcf ,_cbcb :=_a .Atoi (_dbcfc [len (_dbcfc )-1]);if _cbcb !=nil {_eef .Log .Debug ("\u0045r\u0072\u006f\u0072 \u0063\u006f\u006ev\u0065rt\u0069\u006e\u0067\u0020\u0064\u0069\u0067i\u0074\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020\u006e\u0061\u006de,\u0020f\u0061\u006c\u006c\u0062\u0061\u0063k\u0020\u0074\u006f\u0020\u0062a\u0073\u0069\u0063\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u003a \u0025\u0076",_cbcb ); -_gegb =_gegb +"\u0030";}else {_fdcf ++;_gadb :=_dc .LastIndex (_gegb ,_dbcfc [len (_dbcfc )-1]);if _gadb ==-1{_gegb =_g .Sprintf ("\u0025\u0073\u0025\u0064",_gegb [:len (_gegb )-1],_fdcf );}else {_gegb =_gegb [:_gadb ]+_a .Itoa (_fdcf );};};};return _gegb ; -}; +// HorizontalScaling represents the percentage to horizontally scale +// characters by (default: 100). Values less than 100 will result in +// narrower text while values greater than 100 will result in wider text. +HorizontalScaling float64 ; -// SetBoundingBox set gradient color bounding box where the gradient would be rendered. -func (_cfgd *LinearShading )SetBoundingBox (x ,y ,width ,height float64 ){_cfgd ._defa =&_fa .PdfRectangle {Llx :x ,Lly :y ,Urx :x +width ,Ury :y +height };}; +// RenderingMode represents the rendering mode. +RenderingMode TextRenderingMode ; -// AddColorStop add color stop info for rendering gradient color. -func (_dbbe *LinearShading )AddColorStop (color Color ,point float64 ){_dbbe ._dgbd .AddColorStop (color ,point );}; +// Underline specifies if the text chunk is underlined. +Underline bool ; -// SetIndent sets the left offset of the list when nested into another list. -func (_afead *List )SetIndent (indent float64 ){_afead ._dcdc =indent ;_afead ._ecfac =false }; +// UnderlineStyle represents the style of the line used to underline text. +UnderlineStyle TextDecorationLineStyle ; -// SetLineNumberStyle sets the style for the numbers part of all new lines -// of the table of contents. -func (_cagb *TOC )SetLineNumberStyle (style TextStyle ){_cagb ._fdfac =style }; +// TextRise specifies a vertical adjustment for text. It is useful for +// drawing subscripts/superscripts. A positive text rise value will +// produce superscript text, while a negative one will result in +// subscript text. +TextRise float64 ;}; -// SetPositioning sets the positioning of the rectangle (absolute or relative). -func (_gegcc *Rectangle )SetPositioning (position Positioning ){_gegcc ._fdde =position }; +// SetColor sets the line color. +func (_gde *Curve )SetColor (col Color ){_gde ._ccad =col }; -// Sections returns the custom content sections of the invoice as -// title-content pairs. -func (_gfgb *Invoice )Sections ()[][2]string {return _gfgb ._gdag }; +// HorizontalAlignment represents the horizontal alignment of components +// within a page. +type HorizontalAlignment int ; -// NewCellProps returns the default properties of an invoice cell. -func (_ggfb *Invoice )NewCellProps ()InvoiceCellProps {_acbc :=ColorRGBFrom8bit (255,255,255);return InvoiceCellProps {TextStyle :_ggfb ._ggac ,Alignment :CellHorizontalAlignmentLeft ,BackgroundColor :_acbc ,BorderColor :_acbc ,BorderWidth :1,BorderSides :[]CellBorderSide {CellBorderSideAll }}; -}; +// Insert adds a new text chunk at the specified position in the paragraph. +func (_daage *StyledParagraph )Insert (index uint ,text string )*TextChunk {_aafc :=uint (len (_daage ._cdffa ));if index > _aafc {index =_aafc ;};_efccb :=NewTextChunk (text ,_daage ._egcg );_daage ._cdffa =append (_daage ._cdffa [:index ],append ([]*TextChunk {_efccb },_daage ._cdffa [index :]...)...); +_daage .wrapText ();return _efccb ;};const (TextAlignmentLeft TextAlignment =iota ;TextAlignmentRight ;TextAlignmentCenter ;TextAlignmentJustify ;);const (CellBorderStyleNone CellBorderStyle =iota ;CellBorderStyleSingle ;CellBorderStyleDouble ;); -// CreateFrontPage sets a function to generate a front Page. -func (_gec *Creator )CreateFrontPage (genFrontPageFunc func (_bgeb FrontpageFunctionArgs )){_gec ._fcaa =genFrontPageFunc ;}; +// SetBackgroundColor sets the cell's background color. +func (_fdced *TableCell )SetBackgroundColor (col Color ){_fdced ._afbg =col }; -// Height returns the height of the line. -func (_cbad *Line )Height ()float64 {_dfed :=_cbad ._baec ;if _cbad ._dfbf ==_cbad ._gagg {_dfed /=2;};return _ec .Abs (_cbad ._cbaff -_cbad ._aeecg )+_dfed ;}; +// Width is not used as the division component is designed to fill all the +// available space, depending on the context. Returns 0. +func (_aagd *Division )Width ()float64 {return 0}; -// SetColor sets the line color. -func (_agage *Curve )SetColor (col Color ){_agage ._adfb =col }; +// GetCoords returns the upper left corner coordinates of the rectangle (`x`, `y`). +func (_ddca *Rectangle )GetCoords ()(float64 ,float64 ){return _ddca ._cgedd ,_ddca ._eeff };type rgbColor struct{_efdc ,_fgbf ,_acbd float64 }; -// Height returns the total height of all rows. -func (_cecge *Table )Height ()float64 {_bebac :=float64 (0.0);for _ ,_dcba :=range _cecge ._cddcg {_bebac +=_dcba ;};return _bebac ;};func (_bfbe *templateProcessor )parseChapter (_gbfe *templateNode )(interface{},error ){_eeef :=_bfbe .creator .NewChapter ; -if _gbfe ._bgba !=nil {if _fdbag ,_cdge :=_gbfe ._bgba ._ccfeb .(*Chapter );_cdge {_eeef =_fdbag .NewSubchapter ;};};_beaaa :=_eeef ("");for _ ,_bbee :=range _gbfe ._facfb .Attr {_bedg :=_bbee .Value ;switch _bagc :=_bbee .Name .Local ;_bagc {case "\u0073\u0068\u006f\u0077\u002d\u006e\u0075\u006d\u0062e\u0072\u0069\u006e\u0067":_beaaa .SetShowNumbering (_bfbe .parseBoolAttr (_bagc ,_bedg )); -case "\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u002d\u0069n\u002d\u0074\u006f\u0063":_beaaa .SetIncludeInTOC (_bfbe .parseBoolAttr (_bagc ,_bedg ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_gegeb :=_bfbe .parseMarginAttr (_bagc ,_bedg );_beaaa .SetMargins (_gegeb .Left ,_gegeb .Right ,_gegeb .Top ,_gegeb .Bottom ); -default:_bfbe .nodeLogDebug (_gbfe ,"\u0055\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u0068\u0061\u0070\u0074\u0065\u0072\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_bagc ); -};};return _beaaa ,nil ;}; +// NewLine creates a new line between (x1, y1) to (x2, y2), +// using default attributes. +// NOTE: In relative positioning mode, `x1` and `y1` are calculated using the +// current context and `x2`, `y2` are used only to calculate the position of +// the second point in relation to the first one (used just as a measurement +// of size). Furthermore, when the fit mode is set to fill the context width, +// `x2` is set to the right edge coordinate of the context. +func (_ccag *Creator )NewLine (x1 ,y1 ,x2 ,y2 float64 )*Line {return _dfgcg (x1 ,y1 ,x2 ,y2 )};func (_ecfg *Invoice )generateNoteBlocks (_cbaf DrawContext )([]*Block ,DrawContext ,error ){_aaef :=_ffcc ();_fddb :=append ([][2]string {_ecfg ._ecf ,_ecfg ._aacd },_ecfg ._agdc ...); +for _ ,_bff :=range _fddb {if _bff [1]!=""{_ebcg :=_ecfg .drawSection (_bff [0],_bff [1]);for _ ,_dcd :=range _ebcg {_aaef .Add (_dcd );};_dfde :=_egdc (_ecfg ._bdcd );_dfde .SetMargins (0,0,10,0);_aaef .Add (_dfde );};};return _aaef .GeneratePageBlocks (_cbaf ); +}; -// Rows returns the total number of rows the table has. -func (_dcdfg *Table )Rows ()int {return _dcdfg ._cccb };func _bdfgc (_gdbef *_fa .PdfAnnotation )*_fa .PdfAnnotation {if _gdbef ==nil {return nil ;};var _ffbfb *_fa .PdfAnnotation ;switch _daebd :=_gdbef .GetContext ().(type ){case *_fa .PdfAnnotationLink :if _ggcf :=_feaaf (_daebd ); -_ggcf !=nil {_ffbfb =_ggcf .PdfAnnotation ;};};return _ffbfb ;}; +// SetMargins sets the Chapter margins: left, right, top, bottom. +// Typically not needed as the creator's page margins are used. +func (_baef *Chapter )SetMargins (left ,right ,top ,bottom float64 ){_baef ._ecga .Left =left ;_baef ._ecga .Right =right ;_baef ._ecga .Top =top ;_baef ._ecga .Bottom =bottom ;}; -// SetExtends specifies whether ot extend the shading beyond the starting and ending points. -// -// Text extends is set to `[]bool{false, false}` by default. -func (_dcaaf *RadialShading )SetExtends (start bool ,end bool ){_dcaaf ._gcbg .SetExtends (start ,end )}; +// SetColPosition sets cell column position. +func (_bdbgc *TableCell )SetColPosition (col int ){_bdbgc ._eafbd =col };func (_fdg *Chapter )headingNumber ()string {var _aebaa string ;if _fdg ._fgg {if _fdg ._cfde !=0{_aebaa =_a .Itoa (_fdg ._cfde )+"\u002e";};if _fdg ._beae !=nil {_aabc :=_fdg ._beae .headingNumber (); +if _aabc !=""{_aebaa =_aabc +_aebaa ;};};};return _aebaa ;}; -// SetFillOpacity sets the fill opacity. -func (_dcad *Polygon )SetFillOpacity (opacity float64 ){_dcad ._bege =opacity }; +// Block contains a portion of PDF Page contents. It has a width and a position and can +// be placed anywhere on a Page. It can even contain a whole Page, and is used in the creator +// where each Drawable object can output one or more blocks, each representing content for separate pages +// (typically needed when Page breaks occur). +type Block struct{_cad *_bdb .ContentStreamOperations ;_ge *_ggc .PdfPageResources ;_ba Positioning ;_gb ,_gf float64 ;_ecd float64 ;_gfe float64 ;_de float64 ;_bc Margins ;_ga []*_ggc .PdfAnnotation ;};func (_gebe *FilledCurve )draw (_cgeg *Block ,_dafe string )([]byte ,*_ggc .PdfRectangle ,error ){_debaf :=_fc .NewCubicBezierPath (); +for _ ,_deef :=range _gebe ._babe {_debaf =_debaf .AppendCurve (_deef );};creator :=_bdb .NewContentCreator ();creator .Add_q ();if _gebe .FillEnabled &&_gebe ._ddddf !=nil {_cdbe :=_dbac (_gebe ._ddddf );_fad :=_aede (_cgeg ,_cdbe ,_gebe ._ddddf ,func ()Rectangle {_cfgg :=_fc .NewCubicBezierPath (); +for _ ,_caffec :=range _gebe ._babe {_cfgg =_cfgg .AppendCurve (_caffec );};_bcfa :=_cfgg .GetBoundingBox ();if _gebe .BorderEnabled {_bcfa .Height +=_gebe .BorderWidth ;_bcfa .Width +=_gebe .BorderWidth ;_bcfa .X -=_gebe .BorderWidth /2;_bcfa .Y -=_gebe .BorderWidth /2; +};return Rectangle {_cgedd :_bcfa .X ,_eeff :_bcfa .Y ,_gfad :_bcfa .Width ,_fefg :_bcfa .Height };});if _fad !=nil {return nil ,nil ,_fad ;};creator .SetNonStrokingColor (_cdbe );};if _gebe .BorderEnabled {if _gebe ._eadf !=nil {creator .SetStrokingColor (_dbac (_gebe ._eadf )); +};creator .Add_w (_gebe .BorderWidth );};if len (_dafe )> 1{creator .Add_gs (_fe .PdfObjectName (_dafe ));};_fc .DrawBezierPathWithCreator (_debaf ,creator );creator .Add_h ();if _gebe .FillEnabled &&_gebe .BorderEnabled {creator .Add_B ();}else if _gebe .FillEnabled {creator .Add_f (); +}else if _gebe .BorderEnabled {creator .Add_S ();};creator .Add_Q ();_ceb :=_debaf .GetBoundingBox ();if _gebe .BorderEnabled {_ceb .Height +=_gebe .BorderWidth ;_ceb .Width +=_gebe .BorderWidth ;_ceb .X -=_gebe .BorderWidth /2;_ceb .Y -=_gebe .BorderWidth /2; +};_aade :=&_ggc .PdfRectangle {};_aade .Llx =_ceb .X ;_aade .Lly =_ceb .Y ;_aade .Urx =_ceb .X +_ceb .Width ;_aade .Ury =_ceb .Y +_ceb .Height ;return creator .Bytes (),_aade ,nil ;}; -// SetFontSize sets the font size in document units (points). -func (_bdfbb *Paragraph )SetFontSize (fontSize float64 ){_bdfbb ._cgcbd =fontSize };func _dbgda (_gaffd *_fa .PdfFont )TextStyle {return TextStyle {Color :ColorRGBFrom8bit (0,0,238),Font :_gaffd ,FontSize :10,OutlineSize :1,HorizontalScaling :DefaultHorizontalScaling ,UnderlineStyle :TextDecorationLineStyle {Offset :1,Thickness :1}}; -}; +// GetMargins returns the Chapter's margin: left, right, top, bottom. +func (_efeg *Chapter )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _efeg ._ecga .Left ,_efeg ._ecga .Right ,_efeg ._ecga .Top ,_efeg ._ecga .Bottom ;};func _bgcb (_baeb [][]_fc .Point )*Polygon {return &Polygon {_gbda :&_fc .Polygon {Points :_baeb },_befea :1.0,_dffbb :1.0}; +};var (ErrContentNotFit =_fa .New ("\u0043\u0061\u006e\u006e\u006ft\u0020\u0066\u0069\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020i\u006e\u0074\u006f\u0020\u0061\u006e\u0020\u0065\u0078\u0069\u0073\u0074\u0069\u006e\u0067\u0020\u0073\u0070\u0061\u0063\u0065"); +); -// SetLineSeparator sets the separator for all new lines of the table of contents. -func (_fbabc *TOC )SetLineSeparator (separator string ){_fbabc ._abgga =separator }; +// SetSideBorderColor sets the cell's side border color. +func (_dgbebd *TableCell )SetSideBorderColor (side CellBorderSide ,col Color ){switch side {case CellBorderSideAll :_dgbebd ._afga =col ;_dgbebd ._dagd =col ;_dgbebd ._egde =col ;_dgbebd ._aeec =col ;case CellBorderSideTop :_dgbebd ._afga =col ;case CellBorderSideBottom :_dgbebd ._dagd =col ; +case CellBorderSideLeft :_dgbebd ._egde =col ;case CellBorderSideRight :_dgbebd ._aeec =col ;};}; -// SetBorderOpacity sets the border opacity. -func (_bdca *Polygon )SetBorderOpacity (opacity float64 ){_bdca ._dgcea =opacity }; +// Width is not used. Not used as a Table element is designed to fill into +// available width depending on the context. Returns 0. +func (_ecda *Table )Width ()float64 {return 0};func _dbba (_fcffd *templateProcessor ,_afadb *templateNode )(interface{},error ){return _fcffd .parseImage (_afadb );}; -// SetTextAlignment sets the horizontal alignment of the text within the space provided. -func (_ffac *StyledParagraph )SetTextAlignment (align TextAlignment ){_ffac ._dgbde =align }; +// SetPadding sets the padding of the component. The padding represents +// inner margins which are applied around the contents of the division. +// The background of the component is not affected by its padding. +func (_cafcg *Division )SetPadding (left ,right ,top ,bottom float64 ){_cafcg ._agda .Left =left ;_cafcg ._agda .Right =right ;_cafcg ._agda .Top =top ;_cafcg ._agda .Bottom =bottom ;}; -// GeneratePageBlocks generates a page break block. -func (_beec *PageBreak )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_gadg :=[]*Block {NewBlock (ctx .PageWidth ,ctx .PageHeight -ctx .Y ),NewBlock (ctx .PageWidth ,ctx .PageHeight )};ctx .Page ++;_eacg :=ctx ;_eacg .Y =ctx .Margins .Top ; -_eacg .X =ctx .Margins .Left ;_eacg .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom ;_eacg .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right ;ctx =_eacg ;return _gadg ,ctx ,nil ;};func _eafbg (_efdbd ,_edgda ,_daade TextChunk ,_bdcc uint ,_ddcg TextStyle )*TOCLine {_cbbed :=_defdc (_ddcg ); -_cbbed .SetEnableWrap (true );_cbbed .SetTextAlignment (TextAlignmentLeft );_cbbed .SetMargins (0,0,2,2);_dbbcf :=&TOCLine {_bagf :_cbbed ,Number :_efdbd ,Title :_edgda ,Page :_daade ,Separator :TextChunk {Text :"\u002e",Style :_ddcg },_fdbdf :0,_dabge :_bdcc ,_ddccb :10,_ecfb :PositionRelative }; -_cbbed ._faaba .Left =_dbbcf ._fdbdf +float64 (_dbbcf ._dabge -1)*_dbbcf ._ddccb ;_cbbed ._cddca =_dbbcf .prepareParagraph ;return _dbbcf ;}; +// RadialShading holds information that will be used to render a radial shading. +type RadialShading struct{_fcacc *shading ;_bbccc *_ggc .PdfRectangle ;_dedge AnchorPoint ;_cafd float64 ;_eagf float64 ;_efdd float64 ;_cagbac float64 ;};func (_fcfba *templateProcessor )parseRadialGradientAttr (creator *Creator ,_ededa string )Color {_fcgf :=ColorBlack ; +if _ededa ==""{return _fcgf ;};var (_adef error ;_cdbga =0.0;_ccfe =0.0;_efge =-1.0;_cadaa =_dc .Split (_ededa [16:len (_ededa )-1],"\u002c"););_ecbg :=_dc .Fields (_cadaa [0]);if len (_ecbg )==2&&_dc .TrimSpace (_ecbg [0])[0]!='#'{_cdbga ,_adef =_a .ParseFloat (_ecbg [0],64); +if _adef !=nil {_ca .Log .Debug ("\u0046a\u0069\u006ce\u0064\u0020\u0070a\u0072\u0073\u0069\u006e\u0067\u0020\u0072a\u0064\u0069\u0061\u006c\u0020\u0067r\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0058\u0020\u0070\u006fs\u0069\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076",_adef ); +};_ccfe ,_adef =_a .ParseFloat (_ecbg [1],64);if _adef !=nil {_ca .Log .Debug ("\u0046a\u0069\u006ce\u0064\u0020\u0070a\u0072\u0073\u0069\u006e\u0067\u0020\u0072a\u0064\u0069\u0061\u006c\u0020\u0067r\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0059\u0020\u0070\u006fs\u0069\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076",_adef ); +};_cadaa =_cadaa [1:];};_adefc :=_dc .TrimSpace (_cadaa [0]);if _adefc [0]!='#'{_efge ,_adef =_a .ParseFloat (_adefc ,64);if _adef !=nil {_ca .Log .Debug ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072\u0073\u0069\u006eg\u0020\u0072\u0061\u0064\u0069\u0061l\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0073\u0069\u007ae\u003a\u0020\u0025\u0076",_adef ); +};_cadaa =_cadaa [1:];};_gbcdd ,_bedd :=_fcfba .processGradientColorPair (_cadaa );if _gbcdd ==nil ||_bedd ==nil {return _fcgf ;};_dfgdd :=creator .NewRadialGradientColor (_cdbga ,_ccfe ,0,_efge ,[]*ColorPoint {});for _adeg :=0;_adeg < len (_gbcdd );_adeg ++{_dfgdd .AddColorStop (_gbcdd [_adeg ],_bedd [_adeg ]); +};return _dfgdd ;}; -// Color returns the color of the line. -func (_gcafc *Line )Color ()Color {return _gcafc ._cabf };func _cfcbe (_acbee []*ColorPoint )*LinearShading {return &LinearShading {_dgbd :&shading {_cfcbc :ColorWhite ,_eadef :false ,_ffcf :[]bool {false ,false },_fbdg :_acbee },_defa :&_fa .PdfRectangle {}}; -}; +// SetPositioning sets the positioning of the rectangle (absolute or relative). +func (_gdadc *Rectangle )SetPositioning (position Positioning ){_gdadc ._bbgac =position }; -// TextStyle is a collection of properties that can be assigned to a text chunk. -type TextStyle struct{ +// SetIndent sets the cell's left indent. +func (_agaf *TableCell )SetIndent (indent float64 ){_agaf ._bbgcg =indent }; -// Color represents the color of the text. -Color Color ; +// SetColumnWidths sets the fractional column widths. +// Each width should be in the range 0-1 and is a fraction of the table width. +// The number of width inputs must match number of columns, otherwise an error is returned. +func (_bbaff *Table )SetColumnWidths (widths ...float64 )error {if len (widths )!=_bbaff ._aeaa {_ca .Log .Debug ("M\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0069\u006e\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066\u0020\u0077\u0069\u0064\u0074\u0068\u0073\u0020\u0061nd\u0020\u0063\u006fl\u0075m\u006e\u0073"); +return _fa .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_bbaff ._abbbf =widths ;return nil ;};func (_gdbfa *templateProcessor )getNodeErrorLocation (_gcdgd *templateNode ,_ddfg string ,_dgbg ...interface{})string {_adec :=_df .Sprintf (_ddfg ,_dgbg ...); +_bbccf :=_df .Sprintf ("\u0025\u0064",_gcdgd ._gcfag );if _gcdgd ._febd !=0{_bbccf =_df .Sprintf ("\u0025\u0064\u003a%\u0064",_gcdgd ._febd ,_gcdgd ._fgfag );};if _gdbfa ._eccabe !=""{return _df .Sprintf ("\u0025\u0073\u0020\u005b\u0025\u0073\u003a\u0025\u0073\u005d",_adec ,_gdbfa ._eccabe ,_bbccf ); +};return _df .Sprintf ("\u0025s\u0020\u005b\u0025\u0073\u005d",_adec ,_bbccf );}; + +// NewGraphicSVGFromFile creates a graphic SVG from a file. +func NewGraphicSVGFromFile (path string )(*GraphicSVG ,error ){return _cbcc (path )}; + +// SetColorBottom sets border color for bottom. +func (_dgcf *border )SetColorBottom (col Color ){_dgcf ._agg =col }; + +// GeneratePageBlocks generates the page blocks for the Division component. +// Multiple blocks are generated if the contents wrap over multiple pages. +func (_dgbe *Division )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_edgg []*Block ;_dgbee bool ;_dfgcc error ;_dafa =_dgbe ._badg .IsRelative ();_gccd =_dgbe ._debb .Top ;);if _dafa &&!_dgbe ._ggdbd &&!_dgbe ._aeadf {_cbfg :=_dgbe .ctxHeight (ctx .Width ); +if _cbfg > ctx .Height -_dgbe ._debb .Top &&_cbfg <=ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom {if _edgg ,ctx ,_dfgcc =_cbag ().GeneratePageBlocks (ctx );_dfgcc !=nil {return nil ,ctx ,_dfgcc ;};_dgbee =true ;_gccd =0;};};_daca :=ctx ;_ccea :=ctx ; +if _dafa {ctx .X +=_dgbe ._debb .Left ;ctx .Y +=_gccd ;ctx .Width -=_dgbe ._debb .Left +_dgbe ._debb .Right ;ctx .Height -=_gccd ;_ccea =ctx ;ctx .X +=_dgbe ._agda .Left ;ctx .Y +=_dgbe ._agda .Top ;ctx .Width -=_dgbe ._agda .Left +_dgbe ._agda .Right ; +ctx .Height -=_dgbe ._agda .Top ;ctx .Margins .Top +=_dgbe ._agda .Top ;ctx .Margins .Bottom +=_dgbe ._agda .Bottom ;ctx .Margins .Left +=_dgbe ._debb .Left +_dgbe ._agda .Left ;ctx .Margins .Right +=_dgbe ._debb .Right +_dgbe ._agda .Right ;};ctx .Inline =_dgbe ._aeadf ; +_cdbg :=ctx ;_dggd :=ctx ;var _eddb float64 ;for _ ,_gcab :=range _dgbe ._bfdf {if ctx .Inline {if (ctx .X -_cdbg .X )+_gcab .Width ()<=ctx .Width {ctx .Y =_dggd .Y ;ctx .Height =_dggd .Height ;}else {ctx .X =_cdbg .X ;ctx .Width =_cdbg .Width ;_dggd .Y +=_eddb ; +_dggd .Height -=_eddb ;_eddb =0;};};_egec ,_gga ,_bgab :=_gcab .GeneratePageBlocks (ctx );if _bgab !=nil {_ca .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0067\u0065\u006e\u0065\u0072\u0061\u0074\u0069\u006eg\u0020p\u0061\u0067\u0065\u0020\u0062\u006c\u006f\u0063\u006b\u0073\u003a\u0020\u0025\u0076",_bgab ); +return nil ,ctx ,_bgab ;};if len (_egec )< 1{continue ;};if len (_edgg )> 0{_edgg [len (_edgg )-1].mergeBlocks (_egec [0]);_edgg =append (_edgg ,_egec [1:]...);}else {if _ceg :=_egec [0]._cad ;_ceg ==nil ||len (*_ceg )==0{_dgbee =true ;};_edgg =append (_edgg ,_egec [0:]...); +};if ctx .Inline {if ctx .Page !=_gga .Page {_cdbg .Y =ctx .Margins .Top ;_cdbg .Height =ctx .PageHeight -ctx .Margins .Top ;_dggd .Y =_cdbg .Y ;_dggd .Height =_cdbg .Height ;_eddb =_gga .Height -_cdbg .Height ;}else {if _fabea :=ctx .Height -_gga .Height ; +_fabea > _eddb {_eddb =_fabea ;};};}else {_gga .X =ctx .X ;};ctx =_gga ;};ctx .Inline =_daca .Inline ;ctx .Margins =_daca .Margins ;if _dafa {ctx .X =_daca .X ;ctx .Width =_daca .Width ;ctx .Y +=_dgbe ._agda .Bottom ;ctx .Height -=_dgbe ._agda .Bottom ; +};if _dgbe ._fbgb !=nil {_edgg ,_dfgcc =_dgbe .drawBackground (_edgg ,_ccea ,ctx ,_dgbee );if _dfgcc !=nil {return nil ,ctx ,_dfgcc ;};};if _dgbe ._badg .IsAbsolute (){return _edgg ,_daca ,nil ;};ctx .Y +=_dgbe ._debb .Bottom ;ctx .Height -=_dgbe ._debb .Bottom ; +return _edgg ,ctx ,nil ;}; -// OutlineColor represents the color of the text outline. -OutlineColor Color ; +// MoveY moves the drawing context to absolute position y. +func (_cceg *Creator )MoveY (y float64 ){_cceg ._eacd .Y =y };func _gcag (_acbcf ,_edcg TextStyle )*Invoice {_befce :=&Invoice {_bfbbd :"\u0049N\u0056\u004f\u0049\u0043\u0045",_cedd :"\u002c\u0020",_bdcd :_acbcf ,_febc :_edcg };_befce ._cfbbb =&InvoiceAddress {Separator :_befce ._cedd }; +_befce ._dcfc =&InvoiceAddress {Heading :"\u0042i\u006c\u006c\u0020\u0074\u006f",Separator :_befce ._cedd };_ffeg :=ColorRGBFrom8bit (245,245,245);_aaec :=ColorRGBFrom8bit (155,155,155);_befce ._eefc =_edcg ;_befce ._eefc .Color =_aaec ;_befce ._eefc .FontSize =20; +_befce ._acecg =_acbcf ;_befce ._debc =_edcg ;_befce ._dcfab =_acbcf ;_befce ._daag =_edcg ;_befce ._fcba =_befce .NewCellProps ();_befce ._fcba .BackgroundColor =_ffeg ;_befce ._fcba .TextStyle =_edcg ;_befce ._dece =_befce .NewCellProps ();_befce ._dece .TextStyle =_edcg ; +_befce ._dece .BackgroundColor =_ffeg ;_befce ._dece .BorderColor =_ffeg ;_befce ._degfg =_befce .NewCellProps ();_befce ._degfg .BorderColor =_ffeg ;_befce ._degfg .BorderSides =[]CellBorderSide {CellBorderSideBottom };_befce ._degfg .Alignment =CellHorizontalAlignmentRight ; +_befce ._ddde =_befce .NewCellProps ();_befce ._ddde .Alignment =CellHorizontalAlignmentRight ;_befce ._geeb =[2]*InvoiceCell {_befce .newCell ("\u0049\u006e\u0076\u006f\u0069\u0063\u0065\u0020\u006eu\u006d\u0062\u0065\u0072",_befce ._fcba ),_befce .newCell ("",_befce ._fcba )}; +_befce ._ddbe =[2]*InvoiceCell {_befce .newCell ("\u0044\u0061\u0074\u0065",_befce ._fcba ),_befce .newCell ("",_befce ._fcba )};_befce ._fdfc =[2]*InvoiceCell {_befce .newCell ("\u0044\u0075\u0065\u0020\u0044\u0061\u0074\u0065",_befce ._fcba ),_befce .newCell ("",_befce ._fcba )}; +_befce ._befc =[2]*InvoiceCell {_befce .newCell ("\u0053\u0075\u0062\u0074\u006f\u0074\u0061\u006c",_befce ._ddde ),_befce .newCell ("",_befce ._ddde )};_bcaa :=_befce ._ddde ;_bcaa .TextStyle =_edcg ;_bcaa .BackgroundColor =_ffeg ;_bcaa .BorderColor =_ffeg ; +_befce ._ada =[2]*InvoiceCell {_befce .newCell ("\u0054\u006f\u0074a\u006c",_bcaa ),_befce .newCell ("",_bcaa )};_befce ._ecf =[2]string {"\u004e\u006f\u0074e\u0073",""};_befce ._aacd =[2]string {"T\u0065r\u006d\u0073\u0020\u0061\u006e\u0064\u0020\u0063o\u006e\u0064\u0069\u0074io\u006e\u0073",""}; +_befce ._eag =[]*InvoiceCell {_befce .newColumn ("D\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e",CellHorizontalAlignmentLeft ),_befce .newColumn ("\u0051\u0075\u0061\u006e\u0074\u0069\u0074\u0079",CellHorizontalAlignmentRight ),_befce .newColumn ("\u0055\u006e\u0069\u0074\u0020\u0070\u0072\u0069\u0063\u0065",CellHorizontalAlignmentRight ),_befce .newColumn ("\u0041\u006d\u006f\u0075\u006e\u0074",CellHorizontalAlignmentRight )}; +return _befce ;};func (_gffb *StyledParagraph )wrapText ()error {return _gffb .wrapChunks (true )}; -// Font represents the font the text will use. -Font *_fa .PdfFont ; +// SetLinePageStyle sets the style for the page part of all new lines +// of the table of contents. +func (_bagbb *TOC )SetLinePageStyle (style TextStyle ){_bagbb ._abgad =style }; -// FontSize represents the size of the font. -FontSize float64 ; +// Width returns the width of the Paragraph. +func (_adgd *Paragraph )Width ()float64 {if _adgd ._bebg &&int (_adgd ._dcdb )> 0{return _adgd ._dcdb ;};return _adgd .getTextWidth ()/1000.0;}; -// OutlineSize represents the thickness of the text outline. -OutlineSize float64 ; +// SetAntiAlias enables anti alias config. +// +// Anti alias is disabled by default. +func (_cgdef *RadialShading )SetAntiAlias (enable bool ){_cgdef ._fcacc .SetAntiAlias (enable )}; -// CharSpacing represents the character spacing. -CharSpacing float64 ; +// ScaleToWidth scales the Block to a specified width, maintaining the same aspect ratio. +func (_gbf *Block )ScaleToWidth (w float64 ){_gcc :=w /_gbf ._ecd ;_gbf .Scale (_gcc ,_gcc )}; -// HorizontalScaling represents the percentage to horizontally scale -// characters by (default: 100). Values less than 100 will result in -// narrower text while values greater than 100 will result in wider text. -HorizontalScaling float64 ; +// Width returns the Block's width. +func (_cdd *Block )Width ()float64 {return _cdd ._ecd }; -// RenderingMode represents the rendering mode. -RenderingMode TextRenderingMode ; +// SetLineLevelOffset sets the amount of space an indentation level occupies +// for all new lines of the table of contents. +func (_gfda *TOC )SetLineLevelOffset (levelOffset float64 ){_gfda ._ebgfa =levelOffset };func (_dcfd *Creator )initContext (){_dcfd ._eacd .X =_dcfd ._gcgd .Left ;_dcfd ._eacd .Y =_dcfd ._gcgd .Top ;_dcfd ._eacd .Width =_dcfd ._abf -_dcfd ._gcgd .Right -_dcfd ._gcgd .Left ; +_dcfd ._eacd .Height =_dcfd ._ffc -_dcfd ._gcgd .Bottom -_dcfd ._gcgd .Top ;_dcfd ._eacd .PageHeight =_dcfd ._ffc ;_dcfd ._eacd .PageWidth =_dcfd ._abf ;_dcfd ._eacd .Margins =_dcfd ._gcgd ;_dcfd ._eacd ._dgce =_dcfd .UnsupportedCharacterReplacement ;}; -// Underline specifies if the text chunk is underlined. -Underline bool ; -// UnderlineStyle represents the style of the line used to underline text. -UnderlineStyle TextDecorationLineStyle ; +// PolyBezierCurve represents a composite curve that is the result of joining +// multiple cubic Bezier curves. +// Implements the Drawable interface and can be drawn on PDF using the Creator. +type PolyBezierCurve struct{_ffbb *_fc .PolyBezierCurve ;_bcdgc float64 ;_gfcgc float64 ;_bbaec Color ;}; -// TextRise specifies a vertical adjustment for text. It is useful for -// drawing subscripts/superscripts. A positive text rise value will -// produce superscript text, while a negative one will result in -// subscript text. -TextRise float64 ;}; +// GetIndent get the cell's left indent. +func (_ecfa *TableCell )GetIndent ()float64 {return _ecfa ._bbgcg }; -// Reset removes all the text chunks the paragraph contains. -func (_fccc *StyledParagraph )Reset (){_fccc ._cfbcg =[]*TextChunk {}};func _fbagb (_acgf [][]_ce .CubicBezierCurve )*CurvePolygon {return &CurvePolygon {_dbag :&_ce .CurvePolygon {Rings :_acgf },_bcfd :1.0,_eggf :1.0};};func (_cafac *StyledParagraph )appendChunk (_ebfac *TextChunk )*TextChunk {_cafac ._cfbcg =append (_cafac ._cfbcg ,_ebfac ); -_cafac .wrapText ();return _ebfac ;}; +// Margins returns the margins of the list: left, right, top, bottom. +func (_ecebd *List )Margins ()(float64 ,float64 ,float64 ,float64 ){return _ecebd ._fed .Left ,_ecebd ._fed .Right ,_ecebd ._fed .Top ,_ecebd ._fed .Bottom ;};func _cefg (_fdac VectorDrawable ,_fddf float64 )float64 {switch _cbdfc :=_fdac .(type ){case *Paragraph :if _cbdfc ._bebg {_cbdfc .SetWidth (_fddf -_cbdfc ._fgcbf .Left -_cbdfc ._fgcbf .Right ); +};return _cbdfc .Height ()+_cbdfc ._fgcbf .Top +_cbdfc ._fgcbf .Bottom ;case *StyledParagraph :if _cbdfc ._gfbb {_cbdfc .SetWidth (_fddf -_cbdfc ._fbgbc .Left -_cbdfc ._fbgbc .Right );};return _cbdfc .Height ()+_cbdfc ._fbgbc .Top +_cbdfc ._fbgbc .Bottom ; +case *Image :_cbdfc .applyFitMode (_fddf );return _cbdfc .Height ()+_cbdfc ._cbea .Top +_cbdfc ._cbea .Bottom ;case *Rectangle :_cbdfc .applyFitMode (_fddf );return _cbdfc .Height ()+_cbdfc ._ebfce .Top +_cbdfc ._ebfce .Bottom +_cbdfc ._decec ;case *Ellipse :_cbdfc .applyFitMode (_fddf ); +return _cbdfc .Height ()+_cbdfc ._cadg .Top +_cbdfc ._cadg .Bottom ;case *Division :return _cbdfc .ctxHeight (_fddf )+_cbdfc ._debb .Top +_cbdfc ._debb .Bottom +_cbdfc ._agda .Top +_cbdfc ._agda .Bottom ;case *Table :_cbdfc .updateRowHeights (_fddf -_cbdfc ._gfbcc .Left -_cbdfc ._gfbcc .Right ); +return _cbdfc .Height ()+_cbdfc ._gfbcc .Top +_cbdfc ._gfbcc .Bottom ;case *List :return _cbdfc .ctxHeight (_fddf )+_cbdfc ._fed .Top +_cbdfc ._fed .Bottom ;case marginDrawable :_ ,_ ,_abcf ,_adde :=_cbdfc .GetMargins ();return _cbdfc .Height ()+_abcf +_adde ; +default:return _cbdfc .Height ();};}; -// GetMargins returns the margins of the chart (left, right, top, bottom). -func (_aff *Chart )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _aff ._ebga .Left ,_aff ._ebga .Right ,_aff ._ebga .Top ,_aff ._ebga .Bottom ;}; +// SetFitMode sets the fit mode of the ellipse. +// NOTE: The fit mode is only applied if relative positioning is used. +func (_eaad *Ellipse )SetFitMode (fitMode FitMode ){_eaad ._gbfg =fitMode }; -// Positioning returns the type of positioning the rectangle is set to use. -func (_dadf *Rectangle )Positioning ()Positioning {return _dadf ._fdde };func _ddcd (_dbadb *Block ,_bcff _fa .PdfColor ,_caaab Color ,_eegc func ()Rectangle )error {switch _gcea :=_bcff .(type ){case *_fa .PdfColorPatternType2 :_cbade ,_eggg :=_caaab .(*LinearShading ); -if !_eggg {return _g .Errorf ("\u0043\u006f\u006c\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u004c\u0069\u006e\u0065\u0061\u0072\u0053\u0068\u0061d\u0069\u006e\u0067");};_bgdgc :=_eegc ();_cbade .SetBoundingBox (_bgdgc ._dfbc ,_bgdgc ._gbfgg ,_bgdgc ._faaa ,_bgdgc ._baag ); -_dffd ,_dcbd :=_cbade .AddPatternResource (_dbadb );if _dcbd !=nil {return _g .Errorf ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0074\u006f \u0072\u0065\u0073\u006f\u0075r\u0063\u0065s\u003a\u0020\u0025\u0076",_dcbd ); -};_gcea .PatternName =_dffd ;case *_fa .PdfColorPatternType3 :_fdace ,_caebb :=_caaab .(*RadialShading );if !_caebb {return _g .Errorf ("\u0043\u006f\u006c\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0052\u0061\u0064\u0069\u0061\u006c\u0053\u0068\u0061d\u0069\u006e\u0067"); -};_fggb :=_eegc ();_fdace .SetBoundingBox (_fggb ._dfbc ,_fggb ._gbfgg ,_fggb ._faaa ,_fggb ._baag );_fabcb ,_cddbe :=_fdace .AddPatternResource (_dbadb );if _cddbe !=nil {return _g .Errorf ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0074\u006f \u0072\u0065\u0073\u006f\u0075r\u0063\u0065s\u003a\u0020\u0025\u0076",_cddbe ); -};_gcea .PatternName =_fabcb ;};return nil ;}; +// GetMargins returns the margins of the TOC line: left, right, top, bottom. +func (_gcgdf *TOCLine )GetMargins ()(float64 ,float64 ,float64 ,float64 ){_dgcee :=&_gcgdf ._ecde ._fbgbc ;return _gcgdf ._adbfe ,_dgcee .Right ,_dgcee .Top ,_dgcee .Bottom ;};func (_ffag *StyledParagraph )getMaxLineWidth ()float64 {if _ffag ._aabba ==nil ||len (_ffag ._aabba )==0{_ffag .wrapText (); +};var _bgfdg float64 ;for _ ,_cedf :=range _ffag ._aabba {_abeed :=_ffag .getTextLineWidth (_cedf );if _abeed > _bgfdg {_bgfdg =_abeed ;};};return _bgfdg ;};func (_bagce *templateProcessor )parseRectangle (_dgac *templateNode )(interface{},error ){_ebdc :=_bagce .creator .NewRectangle (0,0,0,0); +for _ ,_ceaf :=range _dgac ._gbdee .Attr {_gaad :=_ceaf .Value ;switch _daeb :=_ceaf .Name .Local ;_daeb {case "\u0078":_ebdc ._cgedd =_bagce .parseFloatAttr (_daeb ,_gaad );case "\u0079":_ebdc ._eeff =_bagce .parseFloatAttr (_daeb ,_gaad );case "\u0077\u0069\u0064t\u0068":_ebdc .SetWidth (_bagce .parseFloatAttr (_daeb ,_gaad )); +case "\u0068\u0065\u0069\u0067\u0068\u0074":_ebdc .SetHeight (_bagce .parseFloatAttr (_daeb ,_gaad ));case "\u0066\u0069\u006c\u006c\u002d\u0063\u006f\u006c\u006f\u0072":_ebdc .SetFillColor (_bagce .parseColorAttr (_daeb ,_gaad ));case "\u0066\u0069\u006cl\u002d\u006f\u0070\u0061\u0063\u0069\u0074\u0079":_ebdc .SetFillOpacity (_bagce .parseFloatAttr (_daeb ,_gaad )); +case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_ebdc .SetBorderColor (_bagce .parseColorAttr (_daeb ,_gaad ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u006f\u0070a\u0063\u0069\u0074\u0079":_ebdc .SetBorderOpacity (_bagce .parseFloatAttr (_daeb ,_gaad )); +case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068":_ebdc .SetBorderWidth (_bagce .parseFloatAttr (_daeb ,_gaad ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_dafb ,_ggbf ,_aedfg ,_fcea :=_bagce .parseBorderRadiusAttr (_daeb ,_gaad ); +_ebdc .SetBorderRadius (_dafb ,_ggbf ,_fcea ,_aedfg );case "\u0062\u006f\u0072\u0064er\u002d\u0074\u006f\u0070\u002d\u006c\u0065\u0066\u0074\u002d\u0072\u0061\u0064\u0069u\u0073":_ebdc ._gagef =_bagce .parseFloatAttr (_daeb ,_gaad );case "\u0062\u006f\u0072de\u0072\u002d\u0074\u006f\u0070\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061\u0064\u0069\u0075\u0073":_ebdc ._efaga =_bagce .parseFloatAttr (_daeb ,_gaad ); +case "\u0062o\u0072\u0064\u0065\u0072-\u0062\u006f\u0074\u0074\u006fm\u002dl\u0065f\u0074\u002d\u0072\u0061\u0064\u0069\u0075s":_ebdc ._fbcea =_bagce .parseFloatAttr (_daeb ,_gaad );case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0062\u006f\u0074\u0074o\u006d\u002d\u0072\u0069\u0067\u0068\u0074\u002d\u0072\u0061d\u0069\u0075\u0073":_ebdc ._fdcc =_bagce .parseFloatAttr (_daeb ,_gaad ); +case "\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e":_ebdc .SetPositioning (_bagce .parsePositioningAttr (_daeb ,_gaad ));case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_ebdc .SetFitMode (_bagce .parseFitModeAttr (_daeb ,_gaad ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_ggfca :=_bagce .parseMarginAttr (_daeb ,_gaad ); +_ebdc .SetMargins (_ggfca .Left ,_ggfca .Right ,_ggfca .Top ,_ggfca .Bottom );default:_bagce .nodeLogDebug (_dgac ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065\u0064\u0020re\u0063\u0074\u0061\u006e\u0067\u006ce\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073`\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u002e",_daeb ); +};};return _ebdc ,nil ;}; -// SetShowLinks sets visibility of links for the TOC lines. -func (_fecfd *TOC )SetShowLinks (showLinks bool ){_fecfd ._cfgge =showLinks }; +// SetBorderOpacity sets the border opacity. +func (_cbec *CurvePolygon )SetBorderOpacity (opacity float64 ){_cbec ._fgcc =opacity }; -// SetPos sets the Table's positioning to absolute mode and specifies the upper-left corner -// coordinates as (x,y). -// Note that this is only sensible to use when the table does not wrap over multiple pages. -// TODO: Should be able to set width too (not just based on context/relative positioning mode). -func (_afae *Table )SetPos (x ,y float64 ){_afae ._dbgb =PositionAbsolute ;_afae ._dcbdd =x ;_afae ._dfdc =y ;}; +// SetIncludeInTOC sets a flag to indicate whether or not to include in tOC. +func (_ggb *Chapter )SetIncludeInTOC (includeInTOC bool ){_ggb ._afg =includeInTOC }; -// ScaleToWidth scales the Block to a specified width, maintaining the same aspect ratio. -func (_bgf *Block )ScaleToWidth (w float64 ){_eg :=w /_bgf ._bc ;_bgf .Scale (_eg ,_eg )}; +// MultiCell makes a new cell with the specified row span and col span +// and inserts it into the table at the current position. +func (_babed *Table )MultiCell (rowspan ,colspan int )*TableCell {_babed ._ggfb ++;_dcfcc :=(_babed .moveToNextAvailableCell ()-1)%(_babed ._aeaa )+1;_dbdee :=(_babed ._ggfb -1)/_babed ._aeaa +1;for _dbdee > _babed ._fgbfga {_babed ._fgbfga ++;_babed ._begb =append (_babed ._begb ,_babed ._ddfaf ); +};_bfefa :=&TableCell {};_bfefa ._deded =_dbdee ;_bfefa ._eafbd =_dcfcc ;_bfefa ._bbgcg =5;_bfefa ._ffdeb =CellBorderStyleNone ;_bfefa ._fcagf =_fc .LineStyleSolid ;_bfefa ._abad =CellHorizontalAlignmentLeft ;_bfefa ._fddca =CellVerticalAlignmentTop ;_bfefa ._egbd =0; +_bfefa ._egaeb =0;_bfefa ._ddbdf =0;_bfefa ._caffa =0;_fged :=ColorBlack ;_bfefa ._egde =_fged ;_bfefa ._dagd =_fged ;_bfefa ._aeec =_fged ;_bfefa ._afga =_fged ;if rowspan < 1{_ca .Log .Debug ("\u0054\u0061\u0062\u006c\u0065\u003a\u0020\u0063\u0065\u006c\u006c\u0020\u0072\u006f\u0077\u0073\u0070a\u006e\u0020\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0061t\u0020\u0031\u0020\u0028\u0025\u0064\u0029\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063e\u006c\u006c\u0020\u0072\u006f\u0077s\u0070\u0061n\u0020\u0074o\u00201\u002e",rowspan ); +rowspan =1;};_becce :=_babed ._fgbfga -(_bfefa ._deded -1);if rowspan > _becce {_ca .Log .Debug ("\u0054\u0061b\u006c\u0065\u003a\u0020\u0063\u0065\u006c\u006c\u0020\u0072\u006f\u0077\u0073\u0070\u0061\u006e\u0020\u0028\u0025d\u0029\u0020\u0065\u0078\u0063\u0065e\u0064\u0073\u0020\u0072\u0065\u006d\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0072o\u0077\u0073 \u0028\u0025\u0064\u0029.\u0020\u0041\u0064\u0064\u0069n\u0067\u0020\u0072\u006f\u0077\u0073\u002e",rowspan ,_becce ); +_babed ._fgbfga +=rowspan -1;for _ggee :=0;_ggee <=rowspan -_becce ;_ggee ++{_babed ._begb =append (_babed ._begb ,_babed ._ddfaf );};};for _eeedg :=0;_eeedg < colspan &&_dcfcc +_eeedg -1< len (_babed ._degfe );_eeedg ++{_babed ._degfe [_dcfcc +_eeedg -1]=rowspan -1; +};_bfefa ._ffgdb =rowspan ;if colspan < 1{_ca .Log .Debug ("\u0054\u0061\u0062\u006c\u0065\u003a\u0020\u0063\u0065\u006c\u006c\u0020\u0063\u006f\u006c\u0073\u0070a\u006e\u0020\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0061n\u0020\u0031\u0020\u0028\u0025\u0064\u0029\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063e\u006c\u006c\u0020\u0063\u006f\u006cs\u0070\u0061n\u0020\u0074o\u00201\u002e",colspan ); +colspan =1;};_bcdd :=_babed ._aeaa -(_bfefa ._eafbd -1);if colspan > _bcdd {_ca .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0065\u006c\u006c\u0020\u0063o\u006c\u0073\u0070\u0061\u006e\u0020\u0028\u0025\u0064\u0029\u0020\u0065\u0078\u0063\u0065\u0065\u0064\u0073\u0020\u0072\u0065\u006d\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0072\u006f\u0077\u0020\u0063\u006f\u006c\u0073\u0020\u0028\u0025d\u0029\u002e\u0020\u0041\u0064\u006a\u0075\u0073\u0074\u0069\u006e\u0067 \u0063\u006f\u006c\u0073\u0070\u0061n\u002e",colspan ,_bcdd ); +colspan =_bcdd ;};_bfefa ._abfda =colspan ;_babed ._ggfb +=colspan -1;_babed ._cacca =append (_babed ._cacca ,_bfefa );_bfefa ._ddggg =_babed ;return _bfefa ;}; -// AddSection adds a new content section at the end of the invoice. -func (_efbag *Invoice )AddSection (title ,content string ){_efbag ._gdag =append (_efbag ._gdag ,[2]string {title ,content });};func _dagfb (_caeb ,_fafd ,_dbbba ,_gddb float64 )*Line {return &Line {_dfbf :_caeb ,_aeecg :_fafd ,_gagg :_dbbba ,_cbaff :_gddb ,_cabf :ColorBlack ,_gcaa :1.0,_baec :1.0,_efgeg :[]int64 {1,1},_gfdb :PositionAbsolute }; -};func _ebad (_gbaca float64 ,_gggaf float64 ,_agdc float64 ,_fcbb float64 ,_cfed []*ColorPoint )*RadialShading {return &RadialShading {_gcbg :&shading {_cfcbc :ColorWhite ,_eadef :false ,_ffcf :[]bool {false ,false },_fbdg :_cfed },_eebg :_gbaca ,_dged :_gggaf ,_ffdcgf :_agdc ,_cbbaf :_fcbb ,_egce :AnchorCenter }; -}; +// GeneratePageBlocks generates the table page blocks. Multiple blocks are +// generated if the contents wrap over multiple pages. +// Implements the Drawable interface. +func (_fbab *Table )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_bbddg :=_fbab ;if _fbab ._eebgf {_bbddg =_fbab .clone ();};return _aebfg (_bbddg ,ctx );};func _agbf (_fdcgc string ,_dgba TextStyle )*Paragraph {_dgbcg :=&Paragraph {_age :_fdcgc ,_fggb :_dgba .Font ,_fcbfa :_dgba .FontSize ,_dacae :1.0,_bebg :true ,_ggad :true ,_abd :TextAlignmentLeft ,_dgeg :0,_geca :1,_bfeff :1,_abea :PositionRelative }; +_dgbcg .SetColor (_dgba .Color );return _dgbcg ;}; -// Height returns the Block's height. -func (_bef *Block )Height ()float64 {return _bef ._dec }; +// ColorPoint is a pair of Color and a relative point where the color +// would be rendered. +type ColorPoint struct{_afea Color ;_dbcfd float64 ;}; -// InvoiceCellProps holds all style properties for an invoice cell. -type InvoiceCellProps struct{TextStyle TextStyle ;Alignment CellHorizontalAlignment ;BackgroundColor Color ;BorderColor Color ;BorderWidth float64 ;BorderSides []CellBorderSide ;}; +// Background contains properties related to the background of a component. +type Background struct{FillColor Color ;BorderColor Color ;BorderSize float64 ;BorderRadiusTopLeft float64 ;BorderRadiusTopRight float64 ;BorderRadiusBottomLeft float64 ;BorderRadiusBottomRight float64 ;}; -// Width is not used as the division component is designed to fill all the -// available space, depending on the context. Returns 0. -func (_decb *Division )Width ()float64 {return 0};func (_bbc *Block )transform (_cgc _de .Matrix ){_eefgg :=_bd .NewContentCreator ().Add_cm (_cgc [0],_cgc [1],_cgc [3],_cgc [4],_cgc [6],_cgc [7]).Operations ();*_bbc ._ffc =append (*_eefgg ,*_bbc ._ffc ...); -_bbc ._ffc .WrapIfNeeded ();};func (_gbe *Block )drawToPage (_dbb *_fa .PdfPage )error {_bbe :=&_bd .ContentStreamOperations {};if _dbb .Resources ==nil {_dbb .Resources =_fa .NewPdfPageResources ();};_ad :=_gdb (_bbe ,_dbb .Resources ,_gbe ._ffc ,_gbe ._gae ); -if _ad !=nil {return _ad ;};if _ad =_eebf (_gbe ._gae ,_dbb .Resources );_ad !=nil {return _ad ;};if _ad =_dbb .AppendContentBytes (_bbe .Bytes (),true );_ad !=nil {return _ad ;};for _ ,_geb :=range _gbe ._cc {_dbb .AddAnnotation (_geb );};return nil ; -};func (_acad *listItem )ctxHeight (_bbgc float64 )float64 {var _gbgcf float64 ;switch _fbgde :=_acad ._edcf .(type ){case *Paragraph :if _fbgde ._fade {_fbgde .SetWidth (_bbgc -_fbgde ._fbba .Horizontal ());};_gbgcf =_fbgde .Height ()+_fbgde ._fbba .Vertical (); -_gbgcf +=0.5*_fbgde ._cgcbd *_fbgde ._ecegc ;case *StyledParagraph :if _fbgde ._dgba {_fbgde .SetWidth (_bbgc -_fbgde ._faaba .Horizontal ());};_gbgcf =_fbgde .Height ()+_fbgde ._faaba .Vertical ();_gbgcf +=0.5*_fbgde .getTextHeight ();case *List :_egdd :=_bbgc -_acad ._dbea .Width ()-_fbgde ._eead .Horizontal ()-_fbgde ._dcdc ; -_gbgcf =_fbgde .ctxHeight (_egdd )+_fbgde ._eead .Vertical ();case *Image :_gbgcf =_fbgde .Height ()+_fbgde ._gbba .Vertical ();case *Division :_afgb :=_bbgc -_acad ._dbea .Width ()-_fbgde ._cdef .Horizontal ();_gbgcf =_fbgde .ctxHeight (_afgb )+_fbgde ._cdef .Vertical (); -case *Table :_dfcc :=_bbgc -_acad ._dbea .Width ()-_fbgde ._fefca .Horizontal ();_fbgde .updateRowHeights (_dfcc );_gbgcf =_fbgde .Height ()+_fbgde ._fefca .Vertical ();default:_gbgcf =_acad ._edcf .Height ();};return _gbgcf ;}; +// SetLineColor sets the line color. +func (_dafd *Polyline )SetLineColor (color Color ){_dafd ._edbcg .LineColor =_dbac (color )}; -// Height returns the height of the ellipse. -func (_gbbgf *Ellipse )Height ()float64 {return _gbbgf ._dceb }; +// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated +// if the contents wrap over multiple pages. +func (_afab *TOCLine )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_aefae :=ctx ;_ebada ,ctx ,_fbcgb :=_afab ._ecde .GeneratePageBlocks (ctx );if _fbcgb !=nil {return _ebada ,ctx ,_fbcgb ;};if _afab ._dggfc .IsRelative (){ctx .X =_aefae .X ; +};if _afab ._dggfc .IsAbsolute (){return _ebada ,_aefae ,nil ;};return _ebada ,ctx ,nil ;}; -// Positioning returns the type of positioning the line is set to use. -func (_egde *Line )Positioning ()Positioning {return _egde ._gfdb };func (_ebfd *Invoice )generateHeaderBlocks (_agfb DrawContext )([]*Block ,DrawContext ,error ){_bdfg :=_defdc (_ebfd ._gbfbc );_bdfg .SetEnableWrap (true );_bdfg .Append (_ebfd ._afgg ); -_bagg :=_bgfa (2);if _ebfd ._fabc !=nil {_bafa :=_bagg .NewCell ();_bafa .SetHorizontalAlignment (CellHorizontalAlignmentLeft );_bafa .SetVerticalAlignment (CellVerticalAlignmentMiddle );_bafa .SetIndent (0);_bafa .SetContent (_ebfd ._fabc );_ebfd ._fabc .ScaleToHeight (_bdfg .Height ()+20); -}else {_bagg .SkipCells (1);};_ggeg :=_bagg .NewCell ();_ggeg .SetHorizontalAlignment (CellHorizontalAlignmentRight );_ggeg .SetVerticalAlignment (CellVerticalAlignmentMiddle );_ggeg .SetContent (_bdfg );return _bagg .GeneratePageBlocks (_agfb );}; +// BorderWidth returns the border width of the ellipse. +func (_ggbc *Ellipse )BorderWidth ()float64 {return _ggbc ._fgcca }; -// SetPos sets the Block's positioning to absolute mode with the specified coordinates. -func (_cfb *Block )SetPos (x ,y float64 ){_cfb ._dcc =PositionAbsolute ;_cfb ._cdf =x ;_cfb ._ag =y };func (_ceegf *templateProcessor )parseLineStyleAttr (_caed ,_dgdcb string )_ce .LineStyle {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069n\u0067\u0020\u006c\u0069\u006e\u0065\u0020\u0073\u0074\u0079\u006c\u0065\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_caed ,_dgdcb ); -_fggbb :=map[string ]_ce .LineStyle {"\u0073\u006f\u006ci\u0064":_ce .LineStyleSolid ,"\u0064\u0061\u0073\u0068\u0065\u0064":_ce .LineStyleDashed }[_dgdcb ];return _fggbb ;}; +// NewBlockFromPage creates a Block from a PDF Page. Useful for loading template pages as blocks +// from a PDF document and additional content with the creator. +func NewBlockFromPage (page *_ggc .PdfPage )(*Block ,error ){_dgc :=&Block {};_gd ,_gc :=page .GetAllContentStreams ();if _gc !=nil {return nil ,_gc ;};_dga :=_bdb .NewContentStreamParser (_gd );_bgg ,_gc :=_dga .Parse ();if _gc !=nil {return nil ,_gc ; +};_bgg .WrapIfNeeded ();_dgc ._cad =_bgg ;if page .Resources !=nil {_dgc ._ge =page .Resources ;}else {_dgc ._ge =_ggc .NewPdfPageResources ();};_fg ,_gc :=page .GetMediaBox ();if _gc !=nil {return nil ,_gc ;};if _fg .Llx !=0||_fg .Lly !=0{_dgc .translate (-_fg .Llx ,_fg .Lly ); +};_dgc ._ecd =_fg .Urx -_fg .Llx ;_dgc ._gfe =_fg .Ury -_fg .Lly ;if page .Rotate !=nil {_dgc ._de =-float64 (*page .Rotate );};return _dgc ,nil ;};func (_ddgae *templateProcessor )parseTextChunk (_efdb *templateNode ,_bedf *TextChunk )(interface{},error ){if _efdb ._fbcg ==nil {_ddgae .nodeLogError (_efdb ,"\u0054\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u0020\u0070\u0061\u0072\u0065n\u0074 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); +return nil ,_gfaba ;};var (_ebfg =_ddgae .creator .NewTextStyle ();_dgdcc bool ;);for _ ,_fbbc :=range _efdb ._gbdee .Attr {if _fbbc .Name .Local =="\u006c\u0069\u006e\u006b"{_dggc ,_gfef :=_efdb ._fbcg ._caacd .(*StyledParagraph );if !_gfef {_ddgae .nodeLogError (_efdb ,"\u004c\u0069\u006e\u006b \u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065 \u006f\u006e\u006c\u0079\u0020\u0061\u0070\u0070\u006c\u0069\u0063\u0061\u0062\u006c\u0065\u0020\u0074\u006f \u0070\u0061\u0072\u0061\u0067r\u0061\u0070\u0068\u0027\u0073\u0020\u0074\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u002e"); +_dgdcc =true ;}else {_ebfg =_dggc ._aecf ;};break ;};};if _bedf ==nil {_bedf =NewTextChunk ("",_ebfg );};for _ ,_fcaag :=range _efdb ._gbdee .Attr {_defe :=_fcaag .Value ;switch _ceefe :=_fcaag .Name .Local ;_ceefe {case "\u0063\u006f\u006co\u0072":_bedf .Style .Color =_ddgae .parseColorAttr (_ceefe ,_defe ); +case "\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u002d\u0063\u006f\u006c\u006f\u0072":_bedf .Style .OutlineColor =_ddgae .parseColorAttr (_ceefe ,_defe );case "\u0066\u006f\u006e\u0074":_bedf .Style .Font =_ddgae .parseFontAttr (_ceefe ,_defe );case "\u0066o\u006e\u0074\u002d\u0073\u0069\u007ae":_bedf .Style .FontSize =_ddgae .parseFloatAttr (_ceefe ,_defe ); +case "\u006f\u0075\u0074l\u0069\u006e\u0065\u002d\u0073\u0069\u007a\u0065":_bedf .Style .OutlineSize =_ddgae .parseFloatAttr (_ceefe ,_defe );case "\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u002d\u0073\u0070a\u0063\u0069\u006e\u0067":_bedf .Style .CharSpacing =_ddgae .parseFloatAttr (_ceefe ,_defe ); +case "\u0068o\u0072i\u007a\u006f\u006e\u0074\u0061l\u002d\u0073c\u0061\u006c\u0069\u006e\u0067":_bedf .Style .HorizontalScaling =_ddgae .parseFloatAttr (_ceefe ,_defe );case "\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067-\u006d\u006f\u0064\u0065":_bedf .Style .RenderingMode =_ddgae .parseTextRenderingModeAttr (_ceefe ,_defe ); +case "\u0075n\u0064\u0065\u0072\u006c\u0069\u006ee":_bedf .Style .Underline =_ddgae .parseBoolAttr (_ceefe ,_defe );case "\u0075n\u0064e\u0072\u006c\u0069\u006e\u0065\u002d\u0063\u006f\u006c\u006f\u0072":_bedf .Style .UnderlineStyle .Color =_ddgae .parseColorAttr (_ceefe ,_defe ); +case "\u0075\u006ed\u0065\u0072\u006ci\u006e\u0065\u002d\u006f\u0066\u0066\u0073\u0065\u0074":_bedf .Style .UnderlineStyle .Offset =_ddgae .parseFloatAttr (_ceefe ,_defe );case "\u0075\u006e\u0064\u0065rl\u0069\u006e\u0065\u002d\u0074\u0068\u0069\u0063\u006b\u006e\u0065\u0073\u0073":_bedf .Style .UnderlineStyle .Thickness =_ddgae .parseFloatAttr (_ceefe ,_defe ); +case "\u006c\u0069\u006e\u006b":if !_dgdcc {_bedf ._dfcb =_ddgae .parseLinkAttr (_ceefe ,_defe );};case "\u0074e\u0078\u0074\u002d\u0072\u0069\u0073e":_bedf .Style .TextRise =_ddgae .parseFloatAttr (_ceefe ,_defe );default:_ddgae .nodeLogDebug (_efdb ,"\u0055\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e",_ceefe ); +};};return _bedf ,nil ;}; -// SetMaxLines sets the maximum number of lines before the paragraph -// text is truncated. -func (_aefg *Paragraph )SetMaxLines (maxLines int ){_aefg ._ebfbg =maxLines ;_aefg .wrapText ()};func (_dcdbc *templateProcessor )parseAttrPropList (_bade string )map[string ]string {_gggdg :=_dc .Fields (_bade );if len (_gggdg )==0{return nil ;};_fbfbc :=map[string ]string {}; -for _ ,_cgcfb :=range _gggdg {_cfdfd :=_dffeg .FindStringSubmatch (_cgcfb );if len (_cfdfd )< 3{continue ;};_fgbb ,_cegd :=_dc .TrimSpace (_cfdfd [1]),_cfdfd [2];if _fgbb ==""{continue ;};_fbfbc [_fgbb ]=_cegd ;};return _fbfbc ;}; +// SetHeight sets the height of the rectangle. +func (_bccg *Rectangle )SetHeight (height float64 ){_bccg ._fefg =height }; -// SetColPosition sets cell column position. -func (_ccced *TableCell )SetColPosition (col int ){_ccced ._baceb =col }; +// CurRow returns the currently active cell's row number. +func (_bfced *Table )CurRow ()int {_dadfd :=(_bfced ._ggfb -1)/_bfced ._aeaa +1;return _dadfd }; -// Block contains a portion of PDF Page contents. It has a width and a position and can -// be placed anywhere on a Page. It can even contain a whole Page, and is used in the creator -// where each Drawable object can output one or more blocks, each representing content for separate pages -// (typically needed when Page breaks occur). -type Block struct{_ffc *_bd .ContentStreamOperations ;_gae *_fa .PdfPageResources ;_dcc Positioning ;_cdf ,_ag float64 ;_bc float64 ;_dec float64 ;_eb float64 ;_fe Margins ;_cc []*_fa .PdfAnnotation ;};type listItem struct{_edcf VectorDrawable ;_dbea TextChunk ; -}; +// Drawable is a widget that can be used to draw with the Creator. +type Drawable interface{ -// MoveX moves the drawing context to absolute position x. -func (_gdbac *Creator )MoveX (x float64 ){_gdbac ._gbb .X =x };func (_ffbc *templateProcessor )parseColorAttr (_gffcc ,_cccfg string )Color {_eef .Log .Debug ("\u0050\u0061rs\u0069\u006e\u0067 \u0063\u006f\u006c\u006fr a\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020(`\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_gffcc ,_cccfg ); -_cccfg =_dc .TrimSpace (_cccfg );if _dc .HasPrefix (_cccfg ,"\u006c\u0069n\u0065\u0061\u0072-\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0028")&&_dc .HasSuffix (_cccfg ,"\u0029")&&len (_cccfg )> 17{return _ffbc .parseLinearGradientAttr (_ffbc .creator ,_cccfg ); -};if _dc .HasPrefix (_cccfg ,"\u0072\u0061d\u0069\u0061\u006c-\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0028")&&_dc .HasSuffix (_cccfg ,"\u0029")&&len (_cccfg )> 17{return _ffbc .parseRadialGradientAttr (_ffbc .creator ,_cccfg );};if _ceefcg :=_ffbc .parseColor (_cccfg ); -_ceefcg !=nil {return _ceefcg ;};return ColorBlack ;};func (_fga *pageTransformations )transformBlock (_dddd *Block ){if _fga ._bff !=nil {_dddd .transform (*_fga ._bff );};}; +// GeneratePageBlocks draw onto blocks representing Page contents. As the content can wrap over many pages, multiple +// templates are returned, one per Page. The function also takes a draw context containing information +// where to draw (if relative positioning) and the available height to draw on accounting for Margins etc. +GeneratePageBlocks (_cgdd DrawContext )([]*Block ,DrawContext ,error );};func (_ageee *templateProcessor )parseCellVerticalAlignmentAttr (_eagc ,_fbdb string )CellVerticalAlignment {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u0065\u006c\u006c\u0020\u0076\u0065r\u0074\u0069\u0063\u0061\u006c\u0020\u0061\u006c\u0069\u0067\u006e\u006d\u0065n\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a (\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_eagc ,_fbdb ); +_aaaed :=map[string ]CellVerticalAlignment {"\u0074\u006f\u0070":CellVerticalAlignmentTop ,"\u006d\u0069\u0064\u0064\u006c\u0065":CellVerticalAlignmentMiddle ,"\u0062\u006f\u0074\u0074\u006f\u006d":CellVerticalAlignmentBottom }[_fbdb ];return _aaaed ;}; -// SetMargins sets the Paragraph's margins. -func (_fdaaa *Paragraph )SetMargins (left ,right ,top ,bottom float64 ){_fdaaa ._fbba .Left =left ;_fdaaa ._fbba .Right =right ;_fdaaa ._fbba .Top =top ;_fdaaa ._fbba .Bottom =bottom ;};func (_gabd *templateProcessor )parsePositioningAttr (_adfcf ,_aagb string )Positioning {_eef .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u0069\u006e\u0067\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060%\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_adfcf ,_aagb ); -_gdffa :=map[string ]Positioning {"\u0072\u0065\u006c\u0061\u0074\u0069\u0076\u0065":PositionRelative ,"\u0061\u0062\u0073\u006f\u006c\u0075\u0074\u0065":PositionAbsolute }[_aagb ];return _gdffa ;}; -// FrontpageFunctionArgs holds the input arguments to a front page drawing function. -// It is designed as a struct, so additional parameters can be added in the future with backwards -// compatibility. -type FrontpageFunctionArgs struct{PageNum int ;TotalPages int ;}; +// SetFillColor sets the fill color. +func (_bcfgb *Polygon )SetFillColor (color Color ){_bcfgb ._ddcb =color ;_bcfgb ._gbda .FillColor =_dbac (color );}; -// SetColorTop sets border color for top. -func (_ebfg *border )SetColorTop (col Color ){_ebfg ._dcd =col };func (_ebgdb *Paragraph )getTextWidth ()float64 {_fbcag :=0.0;for _ ,_dcfed :=range _ebgdb ._babfa {if _dcfed =='\u000A'{continue ;};_eeba ,_cabgc :=_ebgdb ._gcedf .GetRuneMetrics (_dcfed ); -if !_cabgc {_eef .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0052u\u006e\u0065\u0020\u0063\u0068a\u0072\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0028\u0072\u0075\u006e\u0065\u0020\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0029",_dcfed ,_dcfed ); -return -1;};_fbcag +=_ebgdb ._cgcbd *_eeba .Wx ;};return _fbcag ;}; +// SetBorderColor sets the border color. +func (_babg *CurvePolygon )SetBorderColor (color Color ){_babg ._ecae .BorderColor =_dbac (color )};func (_abfd *Paragraph )getTextWidth ()float64 {_gecdb :=0.0;for _ ,_ebba :=range _abfd ._age {if _ebba =='\u000A'{continue ;};_cfee ,_eddfb :=_abfd ._fggb .GetRuneMetrics (_ebba ); +if !_eddfb {_ca .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0052u\u006e\u0065\u0020\u0063\u0068a\u0072\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0028\u0072\u0075\u006e\u0065\u0020\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0029",_ebba ,_ebba ); +return -1;};_gecdb +=_abfd ._fcbfa *_cfee .Wx ;};return _gecdb ;}; -// SetLevelOffset sets the amount of space an indentation level occupies. -func (_gcdfb *TOCLine )SetLevelOffset (levelOffset float64 ){_gcdfb ._ddccb =levelOffset ;_gcdfb ._bagf ._faaba .Left =_gcdfb ._fdbdf +float64 (_gcdfb ._dabge -1)*_gcdfb ._ddccb ;};func (_gfbd *Creator )wrapPageIfNeeded (_agf *_fa .PdfPage )(*_fa .PdfPage ,error ){_acca ,_bdgg :=_agf .GetAllContentStreams (); -if _bdgg !=nil {return nil ,_bdgg ;};_eecb :=_bd .NewContentStreamParser (_acca );_dbg ,_bdgg :=_eecb .Parse ();if _bdgg !=nil {return nil ,_bdgg ;};if !_dbg .HasUnclosedQ (){return nil ,nil ;};_dbg .WrapIfNeeded ();_adeb ,_bdgg :=_ea .MakeStream (_dbg .Bytes (),_ea .NewFlateEncoder ()); -if _bdgg !=nil {return nil ,_bdgg ;};_agf .Contents =_ea .MakeArray (_adeb );return _agf ,nil ;};func (_cbae *Ellipse )applyFitMode (_abge float64 ){_abge -=_cbae ._dfac .Left +_cbae ._dfac .Right ;switch _cbae ._facg {case FitModeFillWidth :_cbae .ScaleToWidth (_abge ); -};}; +// SetLink makes the line an internal link. +// The text parameter represents the text that is displayed. +// The user is taken to the specified page, at the specified x and y +// coordinates. Position 0, 0 is at the top left of the page. +func (_cbbdd *TOCLine )SetLink (page int64 ,x ,y float64 ){_cbbdd ._efdgc =x ;_cbbdd ._cafda =y ;_cbbdd ._eefcc =page ;_fggc :=_cbbdd ._ecde ._aecf .Color ;_cbbdd .Number .Style .Color =_fggc ;_cbbdd .Title .Style .Color =_fggc ;_cbbdd .Separator .Style .Color =_fggc ; +_cbbdd .Page .Style .Color =_fggc ;}; -// SetSideBorderWidth sets the cell's side border width. -func (_aefcd *TableCell )SetSideBorderWidth (side CellBorderSide ,width float64 ){switch side {case CellBorderSideAll :_aefcd ._faeaf =width ;_aefcd ._gegf =width ;_aefcd ._fceg =width ;_aefcd ._bebbd =width ;case CellBorderSideTop :_aefcd ._faeaf =width ; -case CellBorderSideBottom :_aefcd ._gegf =width ;case CellBorderSideLeft :_aefcd ._fceg =width ;case CellBorderSideRight :_aefcd ._bebbd =width ;};}; +// SetBorderOpacity sets the border opacity of the ellipse. +func (_cgdc *Ellipse )SetBorderOpacity (opacity float64 ){_cgdc ._dadc =opacity }; -// FillOpacity returns the fill opacity of the rectangle (0-1). -func (_dbbdb *Rectangle )FillOpacity ()float64 {return _dbbdb ._efgb }; +// SetBorderColor sets the border color. +func (_fgcg *PolyBezierCurve )SetBorderColor (color Color ){_fgcg ._ffbb .BorderColor =_dbac (color )};func (_agcfa *StyledParagraph )wrapChunks (_fgfg bool )error {if !_agcfa ._gfbb ||int (_agcfa ._gcadd )<=0{_agcfa ._aabba =[][]*TextChunk {_agcfa ._cdffa }; +return nil ;};if _agcfa ._cbeg {_agcfa .wrapWordChunks ();};_agcfa ._aabba =[][]*TextChunk {};var _agdb []*TextChunk ;var _fcdc float64 ;_fbaa :=_cd .IsSpace ;if !_fgfg {_fbaa =func (rune )bool {return false };};_caafe :=_cece (_agcfa ._gcadd *1000.0,0.000001); +for _ ,_bbfaf :=range _agcfa ._cdffa {_added :=_bbfaf .Style ;_fdbef :=_bbfaf ._dfcb ;_egce :=_bbfaf .VerticalAlignment ;var (_effc []rune ;_feac []float64 ;);_dagbe :=_ddfgf (_bbfaf .Text );for _ ,_bbdcg :=range _bbfaf .Text {if _bbdcg =='\u000A'{if !_fgfg {_effc =append (_effc ,_bbdcg ); +};_agdb =append (_agdb ,&TextChunk {Text :_dc .TrimRightFunc (string (_effc ),_fbaa ),Style :_added ,_dfcb :_bgbee (_fdbef ),VerticalAlignment :_egce });_agcfa ._aabba =append (_agcfa ._aabba ,_agdb );_agdb =nil ;_fcdc =0;_effc =nil ;_feac =nil ;continue ; +};_cgdac :=_bbdcg ==' ';_fabbf ,_aaeff :=_added .Font .GetRuneMetrics (_bbdcg );if !_aaeff {_ca .Log .Debug ("\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069c\u0073 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0025\u0076\u000a",_bbdcg ); +return _fa .New ("\u0067\u006c\u0079\u0070\u0068\u0020\u0063\u0068\u0061\u0072\u0020m\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006d\u0069\u0073s\u0069\u006e\u0067");};_cefd :=_added .FontSize *_fabbf .Wx *_added .horizontalScale ();_bgabg :=_cefd ;if !_cgdac {_bgabg =_cefd +_added .CharSpacing *1000.0; +};if _fcdc +_cefd > _caafe {_cfggf :=-1;if !_cgdac {for _acad :=len (_effc )-1;_acad >=0;_acad --{if _effc [_acad ]==' '{_cfggf =_acad ;break ;};};};if _agcfa ._cbeg {_afcba :=len (_agdb );if _afcba > 0{_agdb [_afcba -1].Text =_dc .TrimRightFunc (_agdb [_afcba -1].Text ,_fbaa ); +_agcfa ._aabba =append (_agcfa ._aabba ,_agdb );_agdb =[]*TextChunk {};};_effc =append (_effc ,_bbdcg );_feac =append (_feac ,_bgabg );if _cfggf >=0{_effc =_effc [_cfggf +1:];_feac =_feac [_cfggf +1:];};_fcdc =0;for _ ,_eefcf :=range _feac {_fcdc +=_eefcf ; +};if _fcdc > _caafe {_agae :=string (_effc [:len (_effc )-1]);_agae =_baecf (_agae ,_dagbe );if !_fgfg &&_cgdac {_agae +="\u0020";};_agdb =append (_agdb ,&TextChunk {Text :_dc .TrimRightFunc (_agae ,_fbaa ),Style :_added ,_dfcb :_bgbee (_fdbef ),VerticalAlignment :_egce }); +_agcfa ._aabba =append (_agcfa ._aabba ,_agdb );_agdb =[]*TextChunk {};_effc =[]rune {_bbdcg };_feac =[]float64 {_bgabg };_fcdc =_bgabg ;};continue ;};_ccae :=string (_effc );if _cfggf >=0{_ccae =string (_effc [0:_cfggf +1]);_effc =_effc [_cfggf +1:];_effc =append (_effc ,_bbdcg ); +_feac =_feac [_cfggf +1:];_feac =append (_feac ,_bgabg );_fcdc =0;for _ ,_ecbca :=range _feac {_fcdc +=_ecbca ;};}else {if _cgdac {_fcdc =0;_effc =[]rune {};_feac =[]float64 {};}else {_fcdc =_bgabg ;_effc =[]rune {_bbdcg };_feac =[]float64 {_bgabg };}; +};_ccae =_baecf (_ccae ,_dagbe );if !_fgfg &&_cgdac {_ccae +="\u0020";};_agdb =append (_agdb ,&TextChunk {Text :_dc .TrimRightFunc (_ccae ,_fbaa ),Style :_added ,_dfcb :_bgbee (_fdbef ),VerticalAlignment :_egce });_agcfa ._aabba =append (_agcfa ._aabba ,_agdb ); +_agdb =[]*TextChunk {};}else {_fcdc +=_bgabg ;_effc =append (_effc ,_bbdcg );_feac =append (_feac ,_bgabg );};};if len (_effc )> 0{_cafcgd :=_baecf (string (_effc ),_dagbe );_agdb =append (_agdb ,&TextChunk {Text :_cafcgd ,Style :_added ,_dfcb :_bgbee (_fdbef ),VerticalAlignment :_egce }); +};};if len (_agdb )> 0{_agcfa ._aabba =append (_agcfa ._aabba ,_agdb );};return nil ;}; -// SetMargins sets the Chapter margins: left, right, top, bottom. -// Typically not needed as the creator's page margins are used. -func (_gcfc *Chapter )SetMargins (left ,right ,top ,bottom float64 ){_gcfc ._dee .Left =left ;_gcfc ._dee .Right =right ;_gcfc ._dee .Top =top ;_gcfc ._dee .Bottom =bottom ;}; +// Margins represents page margins or margins around an element. +type Margins struct{Left float64 ;Right float64 ;Top float64 ;Bottom float64 ;}; -// SetHeight sets the height of the ellipse. -func (_bbbfa *Ellipse )SetHeight (height float64 ){_bbbfa ._dceb =height }; +// GetRowHeight returns the height of the specified row. +func (_gecg *Table )GetRowHeight (row int )(float64 ,error ){if row < 1||row > len (_gecg ._begb ){return 0,_fa .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};return _gecg ._begb [row -1],nil ; +}; -// NewImageFromGoImage creates an Image from a go image.Image data structure. -func (_ddee *Creator )NewImageFromGoImage (goimg _cd .Image )(*Image ,error ){return _egcg (goimg )};type templateTag struct{_faaf map[string ]struct{};_gcee func (*templateProcessor ,*templateNode )(interface{},error );}; +// Width returns the width of the specified text chunk. +func (_gdead *TextChunk )Width ()float64 {var (_cbde float64 ;_feefe =_gdead .Style ;);for _ ,_cfae :=range _gdead .Text {_fggea ,_bacab :=_feefe .Font .GetRuneMetrics (_cfae );if !_bacab {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006det\u0072i\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064!\u0020\u0072\u0075\u006e\u0065\u003d\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0020\u0066o\u006e\u0074\u003d\u0025\u0073\u0020\u0025\u0023\u0071",_cfae ,_cfae ,_feefe .Font .BaseFont (),_feefe .Font .Subtype ()); +_ca .Log .Trace ("\u0046o\u006e\u0074\u003a\u0020\u0025\u0023v",_feefe .Font );_ca .Log .Trace ("\u0045\u006e\u0063o\u0064\u0065\u0072\u003a\u0020\u0025\u0023\u0076",_feefe .Font .Encoder ());};_aebfb :=_feefe .FontSize *_fggea .Wx ;_ggcf :=_aebfb ;if _cfae !=' '{_ggcf =_aebfb +_feefe .CharSpacing *1000.0; +};_cbde +=_ggcf ;};return _cbde /1000.0;}; -// SetLevel sets the indentation level of the TOC line. -func (_fgbd *TOCLine )SetLevel (level uint ){_fgbd ._dabge =level ;_fgbd ._bagf ._faaba .Left =_fgbd ._fdbdf +float64 (_fgbd ._dabge -1)*_fgbd ._ddccb ;}; +// SetPos sets the position of the chart to the specified coordinates. +// This method sets the chart to use absolute positioning. +func (_aga *Chart )SetPos (x ,y float64 ){_aga ._fbc =PositionAbsolute ;_aga ._bfe =x ;_aga ._gbbc =y };func (_cage *templateProcessor )run ()error {_fbbee :=_e .NewDecoder (_g .NewReader (_cage ._gcgb ));var _cdfe *templateNode ;for {_faba ,_afed :=_fbbee .Token (); +if _afed !=nil {if _afed ==_ae .EOF {return nil ;};return _afed ;};if _faba ==nil {break ;};_bddeb ,_fggga :=_dbfbb (_fbbee );_cgdca :=_fbbee .InputOffset ();switch _egdde :=_faba .(type ){case _e .StartElement :_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006eg\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0073\u0074\u0061r\u0074\u0020\u0074\u0061\u0067\u003a\u0020`\u0025\u0073\u0060\u002e",_egdde .Name .Local ); +_beeg ,_bfdgc :=_acaac [_egdde .Name .Local ];if !_bfdgc {if _cage ._eccabe ==""{if _bddeb !=0{_ca .Log .Debug ("\u0055n\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u006dp\u006c\u0061\u0074\u0065 \u0074\u0061\u0067\u0020\u003c%\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e\u0020\u005b%\u0064\u003a\u0025\u0064\u005d",_egdde .Name .Local ,_bddeb ,_fggga ); +}else {_ca .Log .Debug ("\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074e\u0020\u0074\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070i\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072e\u0063\u0074\u002e\u0020\u005b%\u0064\u005d",_egdde .Name .Local ,_cgdca ); +};}else {if _bddeb !=0{_ca .Log .Debug ("\u0055\u006e\u0073\u0075\u0070p\u006f\u0072\u0074\u0065\u0064\u0020\u0074e\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0074\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065 \u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e\u0020\u005b%\u0073\u003a\u0025\u0064\u003a\u0025d\u005d",_egdde .Name .Local ,_cage ._eccabe ,_bddeb ,_fggga ); +}else {_ca .Log .Debug ("\u0055n\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u006dp\u006c\u0061\u0074\u0065 \u0074\u0061\u0067\u0020\u003c%\u0073\u003e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e\u0020\u005b%\u0073\u003a\u0025\u0064\u005d",_egdde .Name .Local ,_cage ._eccabe ,_cgdca ); +};};continue ;};_cdfe =&templateNode {_gbdee :_egdde ,_fbcg :_cdfe ,_febd :_bddeb ,_fgfag :_fggga ,_gcfag :_cgdca };if _gcbcg :=_beeg ._bcddf ;_gcbcg !=nil {_cdfe ._caacd ,_afed =_gcbcg (_cage ,_cdfe );if _afed !=nil {return _afed ;};};case _e .EndElement :_ca .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020t\u0065\u006d\u0070\u006c\u0061\u0074\u0065 \u0065\u006e\u0064\u0020\u0074\u0061\u0067\u003a\u0020\u0060\u0025\u0073\u0060\u002e",_egdde .Name .Local ); +if _cdfe !=nil {if _cdfe ._caacd !=nil {if _cdedf :=_cage .renderNode (_cdfe );_cdedf !=nil {return _cdedf ;};};_cdfe =_cdfe ._fbcg ;};case _e .CharData :if _cdfe !=nil &&_cdfe ._caacd !=nil {if _dcbe :=_cage .addNodeText (_cdfe ,string (_egdde ));_dcbe !=nil {return _dcbe ; +};};case _e .Comment :_ca .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020t\u0065\u006d\u0070\u006c\u0061\u0074\u0065 \u0063\u006f\u006d\u006d\u0065\u006e\u0074\u003a\u0020\u0060\u0025\u0073\u0060\u002e",string (_egdde ));};};return nil ;}; -// GeneratePageBlocks implements drawable interface. -func (_bba *border )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_abf :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_dggb :=_bba ._acb ;_bbb :=ctx .PageHeight -_bba ._edb ;if _bba ._eede !=nil {_gfbe :=_ce .Rectangle {Opacity :1.0,X :_bba ._acb ,Y :ctx .PageHeight -_bba ._edb -_bba ._fbce ,Height :_bba ._fbce ,Width :_bba ._dgga }; -_gfbe .FillEnabled =true ;_ggd :=_gdfa (_bba ._eede );_dcg :=_ddcd (_abf ,_ggd ,_bba ._eede ,func ()Rectangle {return Rectangle {_dfbc :_gfbe .X ,_gbfgg :_gfbe .Y ,_faaa :_gfbe .Width ,_baag :_gfbe .Height };});if _dcg !=nil {return nil ,ctx ,_dcg ;};_gfbe .FillColor =_ggd ; -_gfbe .BorderEnabled =false ;_aba ,_ ,_dcg :=_gfbe .Draw ("");if _dcg !=nil {return nil ,ctx ,_dcg ;};_dcg =_abf .addContentsByString (string (_aba ));if _dcg !=nil {return nil ,ctx ,_dcg ;};};_bdb :=_bba ._ead ;_efff :=_bba ._bbdf ;_eab :=_bba ._feg ; -_dgc :=_bba ._gea ;_afa :=_bba ._ead ;if _bba ._bdd ==CellBorderStyleDouble {_afa +=2*_bdb ;};_adac :=_bba ._bbdf ;if _bba ._befg ==CellBorderStyleDouble {_adac +=2*_efff ;};_agece :=_bba ._feg ;if _bba ._dcda ==CellBorderStyleDouble {_agece +=2*_eab ; -};_ggc :=_bba ._gea ;if _bba ._adg ==CellBorderStyleDouble {_ggc +=2*_dgc ;};_cad :=(_afa -_agece )/2;_abgdc :=(_afa -_ggc )/2;_gaec :=(_adac -_agece )/2;_fegg :=(_adac -_ggc )/2;if _bba ._ead !=0{_agdg :=_dggb ;_gab :=_bbb ;if _bba ._bdd ==CellBorderStyleDouble {_gab -=_bdb ; -_fea :=_ce .BasicLine {LineColor :_gdfa (_bba ._dcd ),Opacity :1.0,LineWidth :_bba ._ead ,LineStyle :_bba .LineStyle ,X1 :_agdg -_afa /2+_cad ,Y1 :_gab +2*_bdb ,X2 :_agdg +_afa /2-_abgdc +_bba ._dgga ,Y2 :_gab +2*_bdb };_edbb ,_ ,_ddg :=_fea .Draw (""); -if _ddg !=nil {return nil ,ctx ,_ddg ;};_ddg =_abf .addContentsByString (string (_edbb ));if _ddg !=nil {return nil ,ctx ,_ddg ;};};_ebc :=_ce .BasicLine {LineWidth :_bba ._ead ,Opacity :1.0,LineColor :_gdfa (_bba ._dcd ),LineStyle :_bba .LineStyle ,X1 :_agdg -_afa /2+_cad +(_agece -_bba ._feg ),Y1 :_gab ,X2 :_agdg +_afa /2-_abgdc +_bba ._dgga -(_ggc -_bba ._gea ),Y2 :_gab }; -_ecb ,_ ,_bbdd :=_ebc .Draw ("");if _bbdd !=nil {return nil ,ctx ,_bbdd ;};_bbdd =_abf .addContentsByString (string (_ecb ));if _bbdd !=nil {return nil ,ctx ,_bbdd ;};};if _bba ._bbdf !=0{_gce :=_dggb ;_ebe :=_bbb -_bba ._fbce ;if _bba ._befg ==CellBorderStyleDouble {_ebe +=_efff ; -_bed :=_ce .BasicLine {LineWidth :_bba ._bbdf ,Opacity :1.0,LineColor :_gdfa (_bba ._ada ),LineStyle :_bba .LineStyle ,X1 :_gce -_adac /2+_gaec ,Y1 :_ebe -2*_efff ,X2 :_gce +_adac /2-_fegg +_bba ._dgga ,Y2 :_ebe -2*_efff };_gagb ,_ ,_eade :=_bed .Draw (""); -if _eade !=nil {return nil ,ctx ,_eade ;};_eade =_abf .addContentsByString (string (_gagb ));if _eade !=nil {return nil ,ctx ,_eade ;};};_gdc :=_ce .BasicLine {LineWidth :_bba ._bbdf ,Opacity :1.0,LineColor :_gdfa (_bba ._ada ),LineStyle :_bba .LineStyle ,X1 :_gce -_adac /2+_gaec +(_agece -_bba ._feg ),Y1 :_ebe ,X2 :_gce +_adac /2-_fegg +_bba ._dgga -(_ggc -_bba ._gea ),Y2 :_ebe }; -_gdff ,_ ,_acd :=_gdc .Draw ("");if _acd !=nil {return nil ,ctx ,_acd ;};_acd =_abf .addContentsByString (string (_gdff ));if _acd !=nil {return nil ,ctx ,_acd ;};};if _bba ._feg !=0{_fffa :=_dggb ;_fdea :=_bbb ;if _bba ._dcda ==CellBorderStyleDouble {_fffa +=_eab ; -_egb :=_ce .BasicLine {LineWidth :_bba ._feg ,Opacity :1.0,LineColor :_gdfa (_bba ._bgfg ),LineStyle :_bba .LineStyle ,X1 :_fffa -2*_eab ,Y1 :_fdea +_agece /2+_cad ,X2 :_fffa -2*_eab ,Y2 :_fdea -_agece /2-_gaec -_bba ._fbce };_ggad ,_ ,_fbg :=_egb .Draw (""); -if _fbg !=nil {return nil ,ctx ,_fbg ;};_fbg =_abf .addContentsByString (string (_ggad ));if _fbg !=nil {return nil ,ctx ,_fbg ;};};_gfdc :=_ce .BasicLine {LineWidth :_bba ._feg ,Opacity :1.0,LineColor :_gdfa (_bba ._bgfg ),LineStyle :_bba .LineStyle ,X1 :_fffa ,Y1 :_fdea +_agece /2+_cad -(_afa -_bba ._ead ),X2 :_fffa ,Y2 :_fdea -_agece /2-_gaec -_bba ._fbce +(_adac -_bba ._bbdf )}; -_bdgd ,_ ,_bdgf :=_gfdc .Draw ("");if _bdgf !=nil {return nil ,ctx ,_bdgf ;};_bdgf =_abf .addContentsByString (string (_bdgd ));if _bdgf !=nil {return nil ,ctx ,_bdgf ;};};if _bba ._gea !=0{_gdd :=_dggb +_bba ._dgga ;_bcgb :=_bbb ;if _bba ._adg ==CellBorderStyleDouble {_gdd -=_dgc ; -_dcfb :=_ce .BasicLine {LineWidth :_bba ._gea ,Opacity :1.0,LineColor :_gdfa (_bba ._fdaa ),LineStyle :_bba .LineStyle ,X1 :_gdd +2*_dgc ,Y1 :_bcgb +_ggc /2+_abgdc ,X2 :_gdd +2*_dgc ,Y2 :_bcgb -_ggc /2-_fegg -_bba ._fbce };_dcfc ,_ ,_bcc :=_dcfb .Draw (""); -if _bcc !=nil {return nil ,ctx ,_bcc ;};_bcc =_abf .addContentsByString (string (_dcfc ));if _bcc !=nil {return nil ,ctx ,_bcc ;};};_cdbc :=_ce .BasicLine {LineWidth :_bba ._gea ,Opacity :1.0,LineColor :_gdfa (_bba ._fdaa ),LineStyle :_bba .LineStyle ,X1 :_gdd ,Y1 :_bcgb +_ggc /2+_abgdc -(_afa -_bba ._ead ),X2 :_gdd ,Y2 :_bcgb -_ggc /2-_fegg -_bba ._fbce +(_adac -_bba ._bbdf )}; -_ggdc ,_ ,_cge :=_cdbc .Draw ("");if _cge !=nil {return nil ,ctx ,_cge ;};_cge =_abf .addContentsByString (string (_ggdc ));if _cge !=nil {return nil ,ctx ,_cge ;};};return []*Block {_abf },ctx ,nil ;}; +// SetBorderWidth sets the border width of the ellipse. +func (_gffe *Ellipse )SetBorderWidth (bw float64 ){_gffe ._fgcca =bw };const (TextVerticalAlignmentBaseline TextVerticalAlignment =iota ;TextVerticalAlignmentCenter ;TextVerticalAlignmentBottom ;TextVerticalAlignmentTop ;); -// FillColor returns the fill color of the ellipse. -func (_gbcf *Ellipse )FillColor ()Color {return _gbcf ._cbeb };type pageTransformations struct{_bff *_de .Matrix ;_gdbeg bool ;_bag bool ;};func (_becfb *templateProcessor )parseBorderRadiusAttr (_dgfab ,_bgbd string )(_bffge ,_bdffc ,_fccea ,_bffb float64 ){_eef .Log .Debug ("\u0050a\u0072\u0073i\u006e\u0067\u0020\u0062o\u0072\u0064\u0065r\u0020\u0072\u0061\u0064\u0069\u0075\u0073\u0020\u0061tt\u0072\u0069\u0062u\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060,\u0020\u0025s\u0029\u002e",_dgfab ,_bgbd ); -switch _ceda :=_dc .Fields (_bgbd );len (_ceda ){case 1:_bffge ,_ =_a .ParseFloat (_ceda [0],64);_bdffc =_bffge ;_fccea =_bffge ;_bffb =_bffge ;case 2:_bffge ,_ =_a .ParseFloat (_ceda [0],64);_fccea =_bffge ;_bdffc ,_ =_a .ParseFloat (_ceda [1],64);_bffb =_bdffc ; -case 3:_bffge ,_ =_a .ParseFloat (_ceda [0],64);_bdffc ,_ =_a .ParseFloat (_ceda [1],64);_bffb =_bdffc ;_fccea ,_ =_a .ParseFloat (_ceda [2],64);case 4:_bffge ,_ =_a .ParseFloat (_ceda [0],64);_bdffc ,_ =_a .ParseFloat (_ceda [1],64);_fccea ,_ =_a .ParseFloat (_ceda [2],64); -_bffb ,_ =_a .ParseFloat (_ceda [3],64);};return _bffge ,_bdffc ,_fccea ,_bffb ;};func (_egba *Division )split (_beae DrawContext )(_fgfa ,_acdc *Division ){var (_dddce float64 ;_ebgcf ,_ddea []VectorDrawable ;);_cbac :=_beae .Width -_egba ._cdef .Left -_egba ._cdef .Right -_egba ._dgfg .Left -_egba ._dgfg .Right ; -for _befda ,_afbg :=range _egba ._cga {_dddce +=_gdga (_afbg ,_cbac );if _dddce < _beae .Height {_ebgcf =append (_ebgcf ,_afbg );}else {_ddea =_egba ._cga [_befda :];break ;};};if len (_ebgcf )> 0{_fgfa =_cecg ();*_fgfa =*_egba ;_fgfa ._cga =_ebgcf ;if _egba ._gcde !=nil {_fgfa ._gcde =&Background {}; -*_fgfa ._gcde =*_egba ._gcde ;};};if len (_ddea )> 0{_acdc =_cecg ();*_acdc =*_egba ;_acdc ._cga =_ddea ;if _egba ._gcde !=nil {_acdc ._gcde =&Background {};*_acdc ._gcde =*_egba ._gcde ;};};return _fgfa ,_acdc ;}; +// SetTitle sets the title of the invoice. +func (_gebf *Invoice )SetTitle (title string ){_gebf ._bfbbd =title };func (_fbdd *StyledParagraph )split (_deadf DrawContext )(_cabc ,_gaee *StyledParagraph ,_bggcc error ){if _bggcc =_fbdd .wrapChunks (false );_bggcc !=nil {return nil ,nil ,_bggcc ;}; +if len (_fbdd ._aabba )==1&&_fbdd ._babcf > _deadf .Height {return _fbdd ,nil ,nil ;};_dgdc :=func (_feab []*TextChunk ,_aaee []*TextChunk )[]*TextChunk {if len (_aaee )==0{return _feab ;};_bbcg :=len (_feab );if _bbcg ==0{return append (_feab ,_aaee ...); +};if _feab [_bbcg -1].Style ==_aaee [0].Style {_feab [_bbcg -1].Text +=_aaee [0].Text ;}else {_feab =append (_feab ,_aaee [0]);};return append (_feab ,_aaee [1:]...);};_aega :=func (_bbab *StyledParagraph ,_cacg []*TextChunk )*StyledParagraph {if len (_cacg )==0{return nil ; +};_eeea :=*_bbab ;_eeea ._cdffa =_cacg ;return &_eeea ;};var (_acbcg float64 ;_dabd []*TextChunk ;_deec []*TextChunk ;);for _ ,_feca :=range _fbdd ._aabba {var _ggfe float64 ;_efedb :=make ([]*TextChunk ,0,len (_feca ));for _ ,_dabgf :=range _feca {if _eddda :=_dabgf .Style .FontSize ; +_eddda > _ggfe {_ggfe =_eddda ;};_efedb =append (_efedb ,_dabgf .clone ());};_ggfe *=_fbdd ._babcf ;if _fbdd ._gbga .IsRelative (){if _acbcg +_ggfe > _deadf .Height {_deec =_dgdc (_deec ,_efedb );}else {_dabd =_dgdc (_dabd ,_efedb );};};_acbcg +=_ggfe ; +};_fbdd ._aabba =nil ;if len (_deec )==0{return _fbdd ,nil ,nil ;};return _aega (_fbdd ,_dabd ),_aega (_fbdd ,_deec ),nil ;}; -// SetMargins sets the margins of the component. The margins are applied -// around the division. -func (_aceab *Division )SetMargins (left ,right ,top ,bottom float64 ){_aceab ._cdef .Left =left ;_aceab ._cdef .Right =right ;_aceab ._cdef .Top =top ;_aceab ._cdef .Bottom =bottom ;}; +// HeaderFunctionArgs holds the input arguments to a header drawing function. +// It is designed as a struct, so additional parameters can be added in the future with backwards +// compatibility. +type HeaderFunctionArgs struct{PageNum int ;TotalPages int ;}; -// GetMargins returns the left, right, top, bottom Margins. -func (_faff *Table )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _faff ._fefca .Left ,_faff ._fefca .Right ,_faff ._fefca .Top ,_faff ._fefca .Bottom ;}; +// SetStyle sets the style for all the line components: number, title, +// separator, page. +func (_eecfe *TOCLine )SetStyle (style TextStyle ){_eecfe .Number .Style =style ;_eecfe .Title .Style =style ;_eecfe .Separator .Style =style ;_eecfe .Page .Style =style ;}; -// MoveY moves the drawing context to absolute position y. -func (_bbbfd *Creator )MoveY (y float64 ){_bbbfd ._gbb .Y =y };func (_fcca *TextStyle )horizontalScale ()float64 {return _fcca .HorizontalScaling /100}; +// SetLevel sets the indentation level of the TOC line. +func (_cfdac *TOCLine )SetLevel (level uint ){_cfdac ._daebd =level ;_cfdac ._ecde ._fbgbc .Left =_cfdac ._adbfe +float64 (_cfdac ._daebd -1)*_cfdac ._aeeeg ;}; -// NewChart creates a new creator drawable based on the provided -// unichart chart component. -func NewChart (chart _ff .ChartRenderable )*Chart {return _gggc (chart )}; +// AddSubtable copies the cells of the subtable in the table, starting with the +// specified position. The table row and column indices are 1-based, which +// makes the position of the first cell of the first row of the table 1,1. +// The table is automatically extended if the subtable exceeds its columns. +// This can happen when the subtable has more columns than the table or when +// one or more columns of the subtable starting from the specified position +// exceed the last column of the table. +func (_dfece *Table )AddSubtable (row ,col int ,subtable *Table ){for _ ,_ebce :=range subtable ._cacca {_gegd :=&TableCell {};*_gegd =*_ebce ;_gegd ._ddggg =_dfece ;_gegd ._eafbd +=col -1;if _cffag :=_dfece ._aeaa -(_gegd ._eafbd -1);_cffag < _gegd ._abfda {_dfece ._aeaa +=_gegd ._abfda -_cffag ; +_dfece .resetColumnWidths ();_ca .Log .Debug ("\u0054a\u0062l\u0065\u003a\u0020\u0073\u0075\u0062\u0074\u0061\u0062\u006c\u0065 \u0065\u0078\u0063\u0065e\u0064\u0073\u0020\u0064\u0065s\u0074\u0069\u006e\u0061\u0074\u0069\u006f\u006e\u0020\u0074\u0061\u0062\u006c\u0065\u002e\u0020\u0045\u0078\u0070\u0061\u006e\u0064\u0069\u006e\u0067\u0020\u0074\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0025\u0064\u0020\u0063\u006fl\u0075\u006d\u006e\u0073\u002e",_dfece ._aeaa ); +};_gegd ._deded +=row -1;_adcef :=subtable ._begb [_ebce ._deded -1];if _gegd ._deded > _dfece ._fgbfga {for _gegd ._deded > _dfece ._fgbfga {_dfece ._fgbfga ++;_dfece ._begb =append (_dfece ._begb ,_dfece ._ddfaf );};_dfece ._begb [_gegd ._deded -1]=_adcef ; +}else {_dfece ._begb [_gegd ._deded -1]=_b .Max (_dfece ._begb [_gegd ._deded -1],_adcef );};_dfece ._cacca =append (_dfece ._cacca ,_gegd );};_dfece .sortCells ();};func _ggba (_eecb *_ggc .Image )(*Image ,error ){_dfec :=float64 (_eecb .Width );_gcdg :=float64 (_eecb .Height ); +return &Image {_dffd :_eecb ,_cegf :_dfec ,_bdff :_gcdg ,_cagba :_dfec ,_efef :_gcdg ,_eadgc :0,_feef :1.0,_ebfa :PositionRelative },nil ;}; -// SetEnableWrap sets the line wrapping enabled flag. -func (_feca *Paragraph )SetEnableWrap (enableWrap bool ){_feca ._fade =enableWrap ;_feca ._gade =false }; +// GeneratePageBlocks generates a page break block. +func (_fcedb *PageBreak )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_gfbgf :=[]*Block {NewBlock (ctx .PageWidth ,ctx .PageHeight -ctx .Y ),NewBlock (ctx .PageWidth ,ctx .PageHeight )};ctx .Page ++;_baaa :=ctx ;_baaa .Y =ctx .Margins .Top ; +_baaa .X =ctx .Margins .Left ;_baaa .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom ;_baaa .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right ;ctx =_baaa ;return _gfbgf ,ctx ,nil ;}; -// Lines returns all the lines the table of contents has. -func (_cdad *TOC )Lines ()[]*TOCLine {return _cdad ._agfbb }; +// SetNotes sets the notes section of the invoice. +func (_edbc *Invoice )SetNotes (title ,content string ){_edbc ._ecf =[2]string {title ,content }};func (_dgade *templateProcessor )addNodeText (_dfba *templateNode ,_fdbea string )error {_eedd :=_dfba ._caacd ;if _eedd ==nil {return nil ;};switch _bfdfe :=_eedd .(type ){case *TextChunk :_bfdfe .Text =_fdbea ; +case *Paragraph :switch _dfba ._gbdee .Name .Local {case "\u0063h\u0061p\u0074\u0065\u0072\u002d\u0068\u0065\u0061\u0064\u0069\u006e\u0067":if _dfba ._fbcg !=nil {if _cega ,_abge :=_dfba ._fbcg ._caacd .(*Chapter );_abge {_cega ._gbcb =_fdbea ;_bfdfe .SetText (_cega .headingText ()); +};};default:_bfdfe .SetText (_fdbea );};};return nil ;}; -// ScaleToHeight scales the rectangle to the specified height. The width of -// the rectangle is scaled so that the aspect ratio is maintained. -func (_cfda *Rectangle )ScaleToHeight (h float64 ){_gddbb :=_cfda ._faaa /_cfda ._baag ;_cfda ._baag =h ;_cfda ._faaa =h *_gddbb ;};func (_affcb *templateProcessor )parseInt64Attr (_ebfge ,_ceedd string )int64 {_eef .Log .Debug ("\u0050\u0061rs\u0069\u006e\u0067 \u0069\u006e\u0074\u00364 a\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020(`\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_ebfge ,_ceedd ); -_gcagd ,_ :=_a .ParseInt (_ceedd ,10,64);return _gcagd ;};var PPMM =float64 (72*1.0/25.4);func (_ecfedc *TableCell )height (_gcaef float64 )float64 {var _egeba float64 ;switch _ffafa :=_ecfedc ._cead .(type ){case *Paragraph :if _ffafa ._fade {_ffafa .SetWidth (_gcaef -_ecfedc ._ddbeg -_ffafa ._fbba .Left -_ffafa ._fbba .Right ); -};_egeba =_ffafa .Height ()+_ffafa ._fbba .Top +_ffafa ._fbba .Bottom +0.5*_ffafa ._cgcbd *_ffafa ._ecegc ;case *StyledParagraph :if _ffafa ._dgba {_ffafa .SetWidth (_gcaef -_ecfedc ._ddbeg -_ffafa ._faaba .Left -_ffafa ._faaba .Right );};_egeba =_ffafa .Height ()+_ffafa ._faaba .Top +_ffafa ._faaba .Bottom +0.5*_ffafa .getTextHeight (); -case *Image :_ffafa .applyFitMode (_gcaef -_ecfedc ._ddbeg );_egeba =_ffafa .Height ()+_ffafa ._gbba .Top +_ffafa ._gbba .Bottom ;case *Table :_ffafa .updateRowHeights (_gcaef -_ecfedc ._ddbeg -_ffafa ._fefca .Left -_ffafa ._fefca .Right );_egeba =_ffafa .Height ()+_ffafa ._fefca .Top +_ffafa ._fefca .Bottom ; -case *List :_egeba =_ffafa .ctxHeight (_gcaef -_ecfedc ._ddbeg )+_ffafa ._eead .Top +_ffafa ._eead .Bottom ;case *Division :_egeba =_ffafa .ctxHeight (_gcaef -_ecfedc ._ddbeg )+_ffafa ._cdef .Top +_ffafa ._cdef .Bottom +_ffafa ._dgfg .Top +_ffafa ._dgfg .Bottom ; -case *Chart :_egeba =_ffafa .Height ()+_ffafa ._ebga .Top +_ffafa ._ebga .Bottom ;case *Rectangle :_ffafa .applyFitMode (_gcaef -_ecfedc ._ddbeg );_egeba =_ffafa .Height ()+_ffafa ._bacfa .Top +_ffafa ._bacfa .Bottom +_ffafa ._aebcg ;case *Ellipse :_ffafa .applyFitMode (_gcaef -_ecfedc ._ddbeg ); -_egeba =_ffafa .Height ()+_ffafa ._dfac .Top +_ffafa ._dfac .Bottom ;case *Line :_egeba =_ffafa .Height ()+_ffafa ._dcdb .Top +_ffafa ._dcdb .Bottom ;};return _egeba ;}; +// SetColorTop sets border color for top. +func (_cfb *border )SetColorTop (col Color ){_cfb ._feg =col };const (DefaultHorizontalScaling =100;);func (_ggeg *templateProcessor )parseInt64Array (_dcgc ,_edcc string )[]int64 {_ca .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020\u0069\u006e\u0074\u0036\u0034\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060%\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_dcgc ,_edcc ); +_geefa :=_dc .Fields (_edcc );_dbfbd :=make ([]int64 ,0,len (_geefa ));for _ ,_afbd :=range _geefa {_egbf ,_ :=_a .ParseInt (_afbd ,10,64);_dbfbd =append (_dbfbd ,_egbf );};return _dbfbd ;};func (_aacfd *TableCell )width (_egaea []float64 ,_cfdfaa float64 )float64 {_bbdb :=float64 (0.0); +for _abed :=0;_abed < _aacfd ._abfda ;_abed ++{_bbdb +=_egaea [_aacfd ._eafbd +_abed -1];};return _bbdb *_cfdfaa ;};func _ggde (_bdbg string )(*Image ,error ){_ffde ,_ceea :=_ed .Open (_bdbg );if _ceea !=nil {return nil ,_ceea ;};defer _ffde .Close (); +_fbad ,_ceea :=_ggc .ImageHandling .Read (_ffde );if _ceea !=nil {_ca .Log .Error ("\u0045\u0072\u0072or\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_ceea );return nil ,_ceea ;};return _ggba (_fbad ); +};func (_ecea *Invoice )generateHeaderBlocks (_edda DrawContext )([]*Block ,DrawContext ,error ){_dgcef :=_egdc (_ecea ._eefc );_dgcef .SetEnableWrap (true );_dgcef .Append (_ecea ._bfbbd );_aaed :=_gdec (2);if _ecea ._bfge !=nil {_egece :=_aaed .NewCell (); +_egece .SetHorizontalAlignment (CellHorizontalAlignmentLeft );_egece .SetVerticalAlignment (CellVerticalAlignmentMiddle );_egece .SetIndent (0);_egece .SetContent (_ecea ._bfge );_ecea ._bfge .ScaleToHeight (_dgcef .Height ()+20);}else {_aaed .SkipCells (1); +};_bgbaf :=_aaed .NewCell ();_bgbaf .SetHorizontalAlignment (CellHorizontalAlignmentRight );_bgbaf .SetVerticalAlignment (CellVerticalAlignmentMiddle );_bgbaf .SetContent (_dgcef );return _aaed .GeneratePageBlocks (_edda );};func _bfcfd (_dbdcf *templateProcessor ,_gecf *templateNode )(interface{},error ){return _dbdcf .parsePageBreak (_gecf ); +}; -// SetAddressStyle sets the style properties used to render the content of -// the invoice address sections. -func (_fbafc *Invoice )SetAddressStyle (style TextStyle ){_fbafc ._gbgdd =style }; +// SetMargins sets the margins of the chart component. +func (_cdbc *Chart )SetMargins (left ,right ,top ,bottom float64 ){_cdbc ._gcff .Left =left ;_cdbc ._gcff .Right =right ;_cdbc ._gcff .Top =top ;_cdbc ._gcff .Bottom =bottom ;}; // GetCoords returns the center coordinates of ellipse (`xc`, `yc`). -func (_aede *Ellipse )GetCoords ()(float64 ,float64 ){return _aede ._fgcb ,_aede ._eadb }; - -// InsertColumn inserts a column in the line items table at the specified index. -func (_cgcgb *Invoice )InsertColumn (index uint ,description string )*InvoiceCell {_dbbga :=uint (len (_cgcgb ._cgcg ));if index > _dbbga {index =_dbbga ;};_dgdc :=_cgcgb .NewColumn (description );_cgcgb ._cgcg =append (_cgcgb ._cgcg [:index ],append ([]*InvoiceCell {_dgdc },_cgcgb ._cgcg [index :]...)...); -return _dgdc ;}; +func (_cadb *Ellipse )GetCoords ()(float64 ,float64 ){return _cadb ._eebe ,_cadb ._beb }; -// SetAngle would set the angle at which the gradient is rendered. -// -// The default angle would be 0 where the gradient would be rendered from left to right side. -func (_dfde *LinearShading )SetAngle (angle float64 ){_dfde ._gfgaf =angle }; +// GetMargins returns the margins of the line: left, right, top, bottom. +func (_eaea *Line )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _eaea ._bccc .Left ,_eaea ._bccc .Right ,_eaea ._bccc .Top ,_eaea ._bccc .Bottom ;}; // List represents a list of items. // The representation of a list item is as follows: @@ -1746,1187 +1744,1187 @@ func (_dfde *LinearShading )SetAngle (angle float64 ){_dfde ._gfgaf =angle }; // - Paragraph // - StyledParagraph // - List -type List struct{_fbeaf []*listItem ;_eead Margins ;_cgef TextChunk ;_dcdc float64 ;_ecfac bool ;_caea Positioning ;_dbca TextStyle ;}; - -// SetDate sets the date of the invoice. -func (_gccb *Invoice )SetDate (date string )(*InvoiceCell ,*InvoiceCell ){_gccb ._bacd [1].Value =date ;return _gccb ._bacd [0],_gccb ._bacd [1];};func (_ggcda *Table )moveToNextAvailableCell ()int {_adcc :=(_ggcda ._aeba -1)%(_ggcda ._beege )+1;for {if _adcc -1>=len (_ggcda ._cgbff ){if _ggcda ._cgbff [0]==0{return _adcc ; -};_adcc =1;}else if _ggcda ._cgbff [_adcc -1]==0{return _adcc ;};_ggcda ._aeba ++;_ggcda ._cgbff [_adcc -1]--;_adcc ++;};}; - -// SetFitMode sets the fit mode of the rectangle. -// NOTE: The fit mode is only applied if relative positioning is used. -func (_gcedfc *Rectangle )SetFitMode (fitMode FitMode ){_gcedfc ._gcdg =fitMode }; - -// SetColumnWidths sets the fractional column widths. -// Each width should be in the range 0-1 and is a fraction of the table width. -// The number of width inputs must match number of columns, otherwise an error is returned. -func (_efbe *Table )SetColumnWidths (widths ...float64 )error {if len (widths )!=_efbe ._beege {_eef .Log .Debug ("M\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0069\u006e\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066\u0020\u0077\u0069\u0064\u0074\u0068\u0073\u0020\u0061nd\u0020\u0063\u006fl\u0075m\u006e\u0073"); -return _e .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};_efbe ._gaecf =widths ;return nil ;}; - -// SkipCells skips over a specified number of cells in the table. -func (_dacac *Table )SkipCells (num int ){if num < 0{_eef .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0073\u006b\u0069\u0070\u0020b\u0061\u0063\u006b\u0020\u0074\u006f\u0020\u0070\u0072\u0065\u0076\u0069\u006f\u0075\u0073\u0020\u0063\u0065\u006c\u006c\u0073"); -return ;};for _fabg :=0;_fabg < num ;_fabg ++{_dacac .NewCell ();};}; - -// Ellipse defines an ellipse with a center at (xc,yc) and a specified width and height. The ellipse can have a colored -// fill and/or border with a specified width. -// Implements the Drawable interface and can be drawn on PDF using the Creator. -type Ellipse struct{_fgcb float64 ;_eadb float64 ;_bgea float64 ;_dceb float64 ;_dada Positioning ;_cbeb Color ;_facc float64 ;_edcd Color ;_cadd float64 ;_acdcf float64 ;_dfac Margins ;_facg FitMode ;}; - -// Angle returns the block rotation angle in degrees. -func (_gf *Block )Angle ()float64 {return _gf ._eb };func (_agcg *InvoiceAddress )fmtLine (_ecab ,_bbac string ,_eadd bool )string {if _eadd {_bbac ="";};return _g .Sprintf ("\u0025\u0073\u0025s\u000a",_bbac ,_ecab );};func _bfed (_cfbca string )bool {_dgeafd :=func (_cfgcg rune )bool {return _cfgcg =='\u000A'}; -_aegad :=_dc .TrimFunc (_cfbca ,_dgeafd );_fffba :=_b .Paragraph {};_ ,_bcfee :=_fffba .SetString (_aegad );if _bcfee !=nil {return true ;};_faafb ,_bcfee :=_fffba .Order ();if _bcfee !=nil {return true ;};if _faafb .NumRuns ()< 1{return true ;};return _fffba .IsLeftToRight (); -};func (_faad *templateProcessor )nodeLogError (_feaaa *templateNode ,_adbd string ,_dddbef ...interface{}){_eef .Log .Error (_faad .getNodeErrorLocation (_feaaa ,_adbd ,_dddbef ...));}; - -// Insert adds a new text chunk at the specified position in the paragraph. -func (_dfeg *StyledParagraph )Insert (index uint ,text string )*TextChunk {_ccbb :=uint (len (_dfeg ._cfbcg ));if index > _ccbb {index =_ccbb ;};_egcf :=NewTextChunk (text ,_dfeg ._aegbg );_dfeg ._cfbcg =append (_dfeg ._cfbcg [:index ],append ([]*TextChunk {_egcf },_dfeg ._cfbcg [index :]...)...); -_dfeg .wrapText ();return _egcf ;}; - -// SetWidthTop sets border width for top. -func (_bgc *border )SetWidthTop (bw float64 ){_bgc ._ead =bw }; - -// NewImageFromData creates an Image from image data. -func (_ebbd *Creator )NewImageFromData (data []byte )(*Image ,error ){return _ggcb (data )}; - -// Width is not used. The list component is designed to fill into the available -// width depending on the context. Returns 0. -func (_ecdg *List )Width ()float64 {return 0};func (_cgbe *templateProcessor )parseCellBorderStyleAttr (_cfcbca ,_ggfbd string )CellBorderStyle {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020c\u0065\u006c\u006c b\u006f\u0072\u0064\u0065\u0072\u0020s\u0074\u0079\u006c\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a \u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025s\u0029\u002e",_cfcbca ,_ggfbd ); -_ggef :=map[string ]CellBorderStyle {"\u006e\u006f\u006e\u0065":CellBorderStyleNone ,"\u0073\u0069\u006e\u0067\u006c\u0065":CellBorderStyleSingle ,"\u0064\u006f\u0075\u0062\u006c\u0065":CellBorderStyleDouble }[_ggfbd ];return _ggef ;}; - -// NewPage adds a new Page to the Creator and sets as the active Page. -func (_gbdg *Creator )NewPage ()*_fa .PdfPage {_dddc :=_gbdg .newPage ();_gbdg ._ccgg =append (_gbdg ._ccgg ,_dddc );_gbdg ._gbb .Page ++;return _dddc ;}; +type List struct{_bede []*listItem ;_fed Margins ;_ebgba TextChunk ;_egab float64 ;_ceeg bool ;_bgdd Positioning ;_dagb TextStyle ;};func (_bbfab *templateProcessor )parseBoolAttr (_fbdff ,_dadg string )bool {_ca .Log .Debug ("P\u0061\u0072\u0073\u0069\u006e\u0067 \u0062\u006f\u006f\u006c\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065:\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_fbdff ,_dadg ); +_cbad ,_ :=_a .ParseBool (_dadg );return _dadg ==""||_cbad ;};func (_cfcbb *templateProcessor )parseListItem (_dbcad *templateNode )(interface{},error ){if _dbcad ._fbcg ==nil {_cfcbb .nodeLogError (_dbcad ,"\u004c\u0069\u0073t\u0020\u0069\u0074\u0065m\u0020\u0070\u0061\u0072\u0065\u006e\u0074 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); +return nil ,_gfaba ;};_abaa ,_aebed :=_dbcad ._fbcg ._caacd .(*List );if !_aebed {_cfcbb .nodeLogError (_dbcad ,"\u004c\u0069s\u0074\u0020\u0069\u0074\u0065\u006d\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u004cis\u0074\u002e"); +return nil ,_gfaba ;};_dbadfb :=_fcf ();_dbadfb ._eeed =_abaa ._ebgba ;return _dbadfb ,nil ;}; -// DrawContext defines the drawing context. The DrawContext is continuously used and updated when -// drawing the page contents in relative mode. Keeps track of current X, Y position, available -// height as well as other page parameters such as margins and dimensions. -type DrawContext struct{ +// GetMargins returns the Paragraph's margins: left, right, top, bottom. +func (_agfbg *Paragraph )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _agfbg ._fgcbf .Left ,_agfbg ._fgcbf .Right ,_agfbg ._fgcbf .Top ,_agfbg ._fgcbf .Bottom ;}; -// Current page number. -Page int ; +// Height returns the height of the division, assuming all components are +// stacked on top of each other. +func (_ecca *Division )Height ()float64 {var _gegfa float64 ;for _ ,_aced :=range _ecca ._bfdf {switch _efgg :=_aced .(type ){case marginDrawable :_ ,_ ,_cggf ,_caffc :=_efgg .GetMargins ();_gegfa +=_efgg .Height ()+_cggf +_caffc ;default:_gegfa +=_efgg .Height (); +};};return _gegfa ;}; -// Current position. In a relative positioning mode, a drawable will be placed at these coordinates. -X ,Y float64 ; +// EnableFontSubsetting enables font subsetting for `font` when the creator output is written to file. +// Embeds only the subset of the runes/glyphs that are actually used to display the file. +// Subsetting can reduce the size of fonts significantly. +func (_eace *Creator )EnableFontSubsetting (font *_ggc .PdfFont ){_eace ._feff =append (_eace ._feff ,font );}; -// Context dimensions. Available width and height (on current page). -Width ,Height float64 ; +// NewTOCLine creates a new table of contents line with the default style. +func (_bedb *Creator )NewTOCLine (number ,title ,page string ,level uint )*TOCLine {return _bbcaf (number ,title ,page ,level ,_bedb .NewTextStyle ());}; -// Page Margins. -Margins Margins ; +// NewRadialGradientColor creates a radial gradient color that could act as a color in other componenents. +// Note: The innerRadius must be smaller than outerRadius for the circle to render properly. +func (_dabgb *Creator )NewRadialGradientColor (x float64 ,y float64 ,innerRadius float64 ,outerRadius float64 ,colorPoints []*ColorPoint )*RadialShading {return _afac (x ,y ,innerRadius ,outerRadius ,colorPoints );}; -// Absolute Page size, widths and height. -PageWidth float64 ;PageHeight float64 ; +// SetBorderLineStyle sets border style (currently dashed or plain). +func (_ecfc *TableCell )SetBorderLineStyle (style _fc .LineStyle ){_ecfc ._fcagf =style }; -// Controls whether the components are stacked horizontally -Inline bool ;_bfdb rune ;_bdfb []error ;}; +// Draw processes the specified Drawable widget and generates blocks that can +// be rendered to the output document. The generated blocks can span over one +// or more pages. Additional pages are added if the contents go over the current +// page. Each generated block is assigned to the creator page it will be +// rendered to. In order to render the generated blocks to the creator pages, +// call Finalize, Write or WriteToFile. +func (_bcdg *Creator )Draw (d Drawable )error {if _bcdg .getActivePage ()==nil {_bcdg .NewPage ();};_dcbdb ,_dcgb ,_dcgf :=d .GeneratePageBlocks (_bcdg ._eacd );if _dcgf !=nil {return _dcgf ;};if len (_dcgb ._bcbc )> 0{_bcdg .Errors =append (_bcdg .Errors ,_dcgb ._bcbc ...); +};for _ffge ,_fgf :=range _dcbdb {if _ffge > 0{_bcdg .NewPage ();};_cbfb :=_bcdg .getActivePage ();if _aceb ,_baf :=_bcdg ._gfab [_cbfb ];_baf {if _egfe :=_aceb .mergeBlocks (_fgf );_egfe !=nil {return _egfe ;};if _fbb :=_ega (_fgf ._ge ,_aceb ._ge );_fbb !=nil {return _fbb ; +};}else {_bcdg ._gfab [_cbfb ]=_fgf ;};};_bcdg ._eacd .X =_dcgb .X ;_bcdg ._eacd .Y =_dcgb .Y ;_bcdg ._eacd .Height =_dcgb .PageHeight -_dcgb .Y -_dcgb .Margins .Bottom ;return nil ;};func (_gbge *templateProcessor )parseCellBorderStyleAttr (_eafg ,_adceg string )CellBorderStyle {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020c\u0065\u006c\u006c b\u006f\u0072\u0064\u0065\u0072\u0020s\u0074\u0079\u006c\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a \u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025s\u0029\u002e",_eafg ,_adceg ); +_dbabg :=map[string ]CellBorderStyle {"\u006e\u006f\u006e\u0065":CellBorderStyleNone ,"\u0073\u0069\u006e\u0067\u006c\u0065":CellBorderStyleSingle ,"\u0064\u006f\u0075\u0062\u006c\u0065":CellBorderStyleDouble }[_adceg ];return _dbabg ;};func (_babcg *Invoice )newColumn (_ebdb string ,_fgbg CellHorizontalAlignment )*InvoiceCell {_edae :=&InvoiceCell {_babcg ._dece ,_ebdb }; +_edae .Alignment =_fgbg ;return _edae ;};func _dfgcg (_cafcff ,_baefd ,_fafa ,_bgcdc float64 )*Line {return &Line {_daed :_cafcff ,_gfaa :_baefd ,_eddg :_fafa ,_eabb :_bgcdc ,_cdgfa :ColorBlack ,_ggbab :1.0,_adf :1.0,_fgbfg :[]int64 {1,1},_fgef :PositionAbsolute }; +};func (_gfcb *templateProcessor )parseEllipse (_efegeb *templateNode )(interface{},error ){_daeddd :=_gfcb .creator .NewEllipse (0,0,0,0);for _ ,_afff :=range _efegeb ._gbdee .Attr {_fbbce :=_afff .Value ;switch _eacg :=_afff .Name .Local ;_eacg {case "\u0063\u0078":_daeddd ._eebe =_gfcb .parseFloatAttr (_eacg ,_fbbce ); +case "\u0063\u0079":_daeddd ._beb =_gfcb .parseFloatAttr (_eacg ,_fbbce );case "\u0077\u0069\u0064t\u0068":_daeddd .SetWidth (_gfcb .parseFloatAttr (_eacg ,_fbbce ));case "\u0068\u0065\u0069\u0067\u0068\u0074":_daeddd .SetHeight (_gfcb .parseFloatAttr (_eacg ,_fbbce )); +case "\u0066\u0069\u006c\u006c\u002d\u0063\u006f\u006c\u006f\u0072":_daeddd .SetFillColor (_gfcb .parseColorAttr (_eacg ,_fbbce ));case "\u0066\u0069\u006cl\u002d\u006f\u0070\u0061\u0063\u0069\u0074\u0079":_daeddd .SetFillOpacity (_gfcb .parseFloatAttr (_eacg ,_fbbce )); +case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_daeddd .SetBorderColor (_gfcb .parseColorAttr (_eacg ,_fbbce ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u006f\u0070a\u0063\u0069\u0074\u0079":_daeddd .SetBorderOpacity (_gfcb .parseFloatAttr (_eacg ,_fbbce )); +case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068":_daeddd .SetBorderWidth (_gfcb .parseFloatAttr (_eacg ,_fbbce ));case "\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e":_daeddd .SetPositioning (_gfcb .parsePositioningAttr (_eacg ,_fbbce )); +case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_daeddd .SetFitMode (_gfcb .parseFitModeAttr (_eacg ,_fbbce ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_bbeeb :=_gfcb .parseMarginAttr (_eacg ,_fbbce );_daeddd .SetMargins (_bbeeb .Left ,_bbeeb .Right ,_bbeeb .Top ,_bbeeb .Bottom ); +default:_gfcb .nodeLogDebug (_efegeb ,"\u0055\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065\u006c\u006c\u0069\u0070\u0073\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_eacg ); +};};return _daeddd ,nil ;}; -// AddSubtable copies the cells of the subtable in the table, starting with the -// specified position. The table row and column indices are 1-based, which -// makes the position of the first cell of the first row of the table 1,1. -// The table is automatically extended if the subtable exceeds its columns. -// This can happen when the subtable has more columns than the table or when -// one or more columns of the subtable starting from the specified position -// exceed the last column of the table. -func (_dcbeb *Table )AddSubtable (row ,col int ,subtable *Table ){for _ ,_addcc :=range subtable ._bdfef {_egab :=&TableCell {};*_egab =*_addcc ;_egab ._edfg =_dcbeb ;_egab ._baceb +=col -1;if _accd :=_dcbeb ._beege -(_egab ._baceb -1);_accd < _egab ._gfeb {_dcbeb ._beege +=_egab ._gfeb -_accd ; -_dcbeb .resetColumnWidths ();_eef .Log .Debug ("\u0054a\u0062l\u0065\u003a\u0020\u0073\u0075\u0062\u0074\u0061\u0062\u006c\u0065 \u0065\u0078\u0063\u0065e\u0064\u0073\u0020\u0064\u0065s\u0074\u0069\u006e\u0061\u0074\u0069\u006f\u006e\u0020\u0074\u0061\u0062\u006c\u0065\u002e\u0020\u0045\u0078\u0070\u0061\u006e\u0064\u0069\u006e\u0067\u0020\u0074\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0025\u0064\u0020\u0063\u006fl\u0075\u006d\u006e\u0073\u002e",_dcbeb ._beege ); -};_egab ._cceef +=row -1;_bgcf :=subtable ._cddcg [_addcc ._cceef -1];if _egab ._cceef > _dcbeb ._cccb {for _egab ._cceef > _dcbeb ._cccb {_dcbeb ._cccb ++;_dcbeb ._cddcg =append (_dcbeb ._cddcg ,_dcbeb ._efbgd );};_dcbeb ._cddcg [_egab ._cceef -1]=_bgcf ; -}else {_dcbeb ._cddcg [_egab ._cceef -1]=_ec .Max (_dcbeb ._cddcg [_egab ._cceef -1],_bgcf );};_dcbeb ._bdfef =append (_dcbeb ._bdfef ,_egab );};_dcbeb .sortCells ();};const (AnchorBottomLeft AnchorPoint =iota ;AnchorBottomRight ;AnchorTopLeft ;AnchorTopRight ; -AnchorCenter ;AnchorLeft ;AnchorRight ;AnchorTop ;AnchorBottom ;);func (_gbff *Table )resetColumnWidths (){_gbff ._gaecf =[]float64 {};_cgdad :=float64 (1.0)/float64 (_gbff ._beege );for _eaabb :=0;_eaabb < _gbff ._beege ;_eaabb ++{_gbff ._gaecf =append (_gbff ._gaecf ,_cgdad ); -};}; +// Invoice represents a configurable invoice template. +type Invoice struct{_bfbbd string ;_bfge *Image ;_dcfc *InvoiceAddress ;_cfbbb *InvoiceAddress ;_cedd string ;_geeb [2]*InvoiceCell ;_ddbe [2]*InvoiceCell ;_fdfc [2]*InvoiceCell ;_cbga [][2]*InvoiceCell ;_eag []*InvoiceCell ;_fbac [][]*InvoiceCell ;_befc [2]*InvoiceCell ; +_ada [2]*InvoiceCell ;_edb [][2]*InvoiceCell ;_ecf [2]string ;_aacd [2]string ;_agdc [][2]string ;_bdcd TextStyle ;_febc TextStyle ;_eefc TextStyle ;_acecg TextStyle ;_debc TextStyle ;_dcfab TextStyle ;_daag TextStyle ;_fcba InvoiceCellProps ;_dece InvoiceCellProps ; +_degfg InvoiceCellProps ;_ddde InvoiceCellProps ;_edeee Positioning ;}; -// SetContent sets the cell's content. The content is a VectorDrawable, i.e. -// a Drawable with a known height and width. -// Currently supported VectorDrawables: -// - *Paragraph -// - *StyledParagraph -// - *Image -// - *Chart -// - *Table -// - *Division -// - *List -// - *Rectangle -// - *Ellipse -// - *Line -func (_gcdge *TableCell )SetContent (vd VectorDrawable )error {switch _gdde :=vd .(type ){case *Paragraph :if _gdde ._gade {_gdde ._fade =true ;};_gcdge ._cead =vd ;case *StyledParagraph :if _gdde ._gadge {_gdde ._dgba =true ;};_gcdge ._cead =vd ;case *Image ,*Chart ,*Table ,*Division ,*List ,*Rectangle ,*Ellipse ,*Line :_gcdge ._cead =vd ; -default:_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0063e\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0074\u0079p\u0065\u0020\u0025\u0054",vd ); -return _ea .ErrTypeError ;};return nil ;}; +// SetTextAlignment sets the horizontal alignment of the text within the space provided. +func (_dbge *StyledParagraph )SetTextAlignment (align TextAlignment ){_dbge ._eaeg =align };func _cdae (_eadb ,_gdbc ,_cdaa ,_ebgb ,_cgfb ,_ccbed float64 )*Curve {_fdea :=&Curve {};_fdea ._ebbc =_eadb ;_fdea ._gbae =_gdbc ;_fdea ._cfac =_cdaa ;_fdea ._cfdb =_ebgb ; +_fdea ._bceb =_cgfb ;_fdea ._bfea =_ccbed ;_fdea ._ccad =ColorBlack ;_fdea ._bceaa =1.0;return _fdea ;}; -// TextDecorationLineStyle represents the style of lines used to decorate -// a text chunk (e.g. underline). -type TextDecorationLineStyle struct{ +// NewStyledTOCLine creates a new table of contents line with the provided style. +func (_cbc *Creator )NewStyledTOCLine (number ,title ,page TextChunk ,level uint ,style TextStyle )*TOCLine {return _bebddd (number ,title ,page ,level ,style );};func (_bace *Invoice )drawInformation ()*Table {_dgag :=_gdec (2);_fgga :=append ([][2]*InvoiceCell {_bace ._geeb ,_bace ._ddbe ,_bace ._fdfc },_bace ._cbga ...); +for _ ,_ccde :=range _fgga {_gagg ,_gaaaf :=_ccde [0],_ccde [1];if _gaaaf .Value ==""{continue ;};_cfgc :=_dgag .NewCell ();_cfgc .SetBackgroundColor (_gagg .BackgroundColor );_bace .setCellBorder (_cfgc ,_gagg );_fggf :=_egdc (_gagg .TextStyle );_fggf .Append (_gagg .Value ); +_fggf .SetMargins (0,0,2,1);_cfgc .SetContent (_fggf );_cfgc =_dgag .NewCell ();_cfgc .SetBackgroundColor (_gaaaf .BackgroundColor );_bace .setCellBorder (_cfgc ,_gaaaf );_fggf =_egdc (_gaaaf .TextStyle );_fggf .Append (_gaaaf .Value );_fggf .SetMargins (0,0,2,1); +_cfgc .SetContent (_fggf );};return _dgag ;}; -// Color represents the color of the line (default: the color of the text). -Color Color ; +// ColorCMYKFromArithmetic creates a Color from arithmetic color values (0-1). +// Example: +// green := ColorCMYKFromArithmetic(1.0, 0.0, 1.0, 0.0) +func ColorCMYKFromArithmetic (c ,m ,y ,k float64 )Color {return cmykColor {_badc :_b .Max (_b .Min (c ,1.0),0.0),_dea :_b .Max (_b .Min (m ,1.0),0.0),_gaa :_b .Max (_b .Min (y ,1.0),0.0),_ccb :_b .Max (_b .Min (k ,1.0),0.0)};}; -// Offset represents the vertical offset of the line (default: 1). -Offset float64 ; +// GeneratePageBlocks draws the polyline on a new block representing the page. +// Implements the Drawable interface. +func (_dcbda *Polyline )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_bfag :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_faga ,_fabf :=_bfag .setOpacity (_dcbda ._afcb ,_dcbda ._afcb );if _fabf !=nil {return nil ,ctx ,_fabf ;}; +_dgcgb :=_dcbda ._edbcg .Points ;for _gdcb :=range _dgcgb {_ebbe :=&_dgcgb [_gdcb ];_ebbe .Y =ctx .PageHeight -_ebbe .Y ;};_dbab ,_ ,_fabf :=_dcbda ._edbcg .Draw (_faga );if _fabf !=nil {return nil ,ctx ,_fabf ;};if _fabf =_bfag .addContentsByString (string (_dbab )); +_fabf !=nil {return nil ,ctx ,_fabf ;};return []*Block {_bfag },ctx ,nil ;}; -// Thickness represents the thickness of the line (default: 1). -Thickness float64 ;};func _eecf ()*FilledCurve {_dgeb :=FilledCurve {};_dgeb ._edeb =[]_ce .CubicBezierCurve {};return &_dgeb ;}; +// SetBackgroundColor set background color of the shading area. +// +// By default the background color is set to white. +func (_gfbc *LinearShading )SetBackgroundColor (backgroundColor Color ){_gfbc ._aecc .SetBackgroundColor (backgroundColor );}; -// SetFillOpacity sets the fill opacity. -func (_edaa *CurvePolygon )SetFillOpacity (opacity float64 ){_edaa ._bcfd =opacity }; +// SetTextOverflow controls the behavior of paragraph text which +// does not fit in the available space. +func (_fdag *StyledParagraph )SetTextOverflow (textOverflow TextOverflow ){_fdag ._cfec =textOverflow }; -// SetFitMode sets the fit mode of the image. -// NOTE: The fit mode is only applied if relative positioning is used. -func (_cgba *Image )SetFitMode (fitMode FitMode ){_cgba ._bdbe =fitMode }; +// SetMargins sets the Paragraph's margins. +func (_efdca *Paragraph )SetMargins (left ,right ,top ,bottom float64 ){_efdca ._fgcbf .Left =left ;_efdca ._fgcbf .Right =right ;_efdca ._fgcbf .Top =top ;_efdca ._fgcbf .Bottom =bottom ;};func _ega (_gad ,_feb *_ggc .PdfPageResources )error {_efgc ,_ :=_gad .GetColorspaces (); +if _efgc !=nil &&len (_efgc .Colorspaces )> 0{for _acg ,_edab :=range _efgc .Colorspaces {_eca :=*_fe .MakeName (_acg );if _feb .HasColorspaceByName (_eca ){continue ;};_bdbf :=_feb .SetColorspaceByName (_eca ,_edab );if _bdbf !=nil {return _bdbf ;};}; +};return nil ;};func _dbaec (_fdgc *templateProcessor ,_bbgacg *templateNode )(interface{},error ){return _fdgc .parseEllipse (_bbgacg );};func (_cgabd *templateProcessor )parseFloatArray (_fcedbd ,_gdefg string )[]float64 {_ca .Log .Debug ("\u0050\u0061\u0072s\u0069\u006e\u0067\u0020\u0066\u006c\u006f\u0061\u0074\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060%\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_fcedbd ,_gdefg ); +_fdebe :=_dc .Fields (_gdefg );_ddad :=make ([]float64 ,0,len (_fdebe ));for _ ,_fbbfa :=range _fdebe {_afgba ,_ :=_a .ParseFloat (_fbbfa ,64);_ddad =append (_ddad ,_afgba );};return _ddad ;}; -// GeneratePageBlocks draws the ellipse on a new block representing the page. -func (_aggd *Ellipse )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var (_geaf []*Block ;_acge =NewBlock (ctx .PageWidth ,ctx .PageHeight );_beac =ctx ;);_cfbgd :=_aggd ._dada .IsRelative ();if _cfbgd {_aggd .applyFitMode (ctx .Width ); -ctx .X +=_aggd ._dfac .Left ;ctx .Y +=_aggd ._dfac .Top ;ctx .Width -=_aggd ._dfac .Left +_aggd ._dfac .Right ;ctx .Height -=_aggd ._dfac .Top +_aggd ._dfac .Bottom ;if _aggd ._dceb > ctx .Height {_geaf =append (_geaf ,_acge );_acge =NewBlock (ctx .PageWidth ,ctx .PageHeight ); -ctx .Page ++;_efgc :=ctx ;_efgc .Y =ctx .Margins .Top +_aggd ._dfac .Top ;_efgc .X =ctx .Margins .Left +_aggd ._dfac .Left ;_efgc .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom -_aggd ._dfac .Top -_aggd ._dfac .Bottom ;_efgc .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_aggd ._dfac .Left -_aggd ._dfac .Right ; -ctx =_efgc ;};}else {ctx .X =_aggd ._fgcb -_aggd ._bgea /2;ctx .Y =_aggd ._eadb -_aggd ._dceb /2;};_defg :=_ce .Circle {X :ctx .X ,Y :ctx .PageHeight -ctx .Y -_aggd ._dceb ,Width :_aggd ._bgea ,Height :_aggd ._dceb ,BorderWidth :_aggd ._cadd ,Opacity :1.0}; -if _aggd ._cbeb !=nil {_defg .FillEnabled =true ;_bgec :=_gdfa (_aggd ._cbeb );_dgfac :=_ddcd (_acge ,_bgec ,_aggd ._cbeb ,func ()Rectangle {return Rectangle {_dfbc :_defg .X ,_gbfgg :_defg .Y ,_faaa :_defg .Width ,_baag :_defg .Height };});if _dgfac !=nil {return nil ,ctx ,_dgfac ; -};_defg .FillColor =_bgec ;};if _aggd ._edcd !=nil {_defg .BorderEnabled =false ;if _aggd ._cadd > 0{_defg .BorderEnabled =true ;};_defg .BorderColor =_gdfa (_aggd ._edcd );_defg .BorderWidth =_aggd ._cadd ;};_fbdb ,_cggda :=_acge .setOpacity (_aggd ._facc ,_aggd ._acdcf ); -if _cggda !=nil {return nil ,ctx ,_cggda ;};_eecbf ,_ ,_cggda :=_defg .Draw (_fbdb );if _cggda !=nil {return nil ,ctx ,_cggda ;};_cggda =_acge .addContentsByString (string (_eecbf ));if _cggda !=nil {return nil ,ctx ,_cggda ;};if _cfbgd {ctx .X =_beac .X ; -ctx .Width =_beac .Width ;ctx .Y +=_aggd ._dceb +_aggd ._dfac .Bottom ;ctx .Height -=_aggd ._dceb ;}else {ctx =_beac ;};_geaf =append (_geaf ,_acge );return _geaf ,ctx ,nil ;};func _gddcg (_becge *Block ,_acgb *StyledParagraph ,_ebgf [][]*TextChunk ,_dbbc DrawContext )(DrawContext ,[][]*TextChunk ,error ){_bbf :=1; -_cafd :=_ea .PdfObjectName (_g .Sprintf ("\u0046\u006f\u006e\u0074\u0025\u0064",_bbf ));for _becge ._gae .HasFontByName (_cafd ){_bbf ++;_cafd =_ea .PdfObjectName (_g .Sprintf ("\u0046\u006f\u006e\u0074\u0025\u0064",_bbf ));};_aagga :=_becge ._gae .SetFontByName (_cafd ,_acgb ._aegbg .Font .ToPdfObject ()); -if _aagga !=nil {return _dbbc ,nil ,_aagga ;};_bbf ++;_fbffg :=_cafd ;_daffd :=_acgb ._aegbg .FontSize ;_abbb :=_acgb ._defc .IsRelative ();var _cbfe [][]_ea .PdfObjectName ;var _dbfg [][]*TextChunk ;var _bgdb float64 ;for _cbg ,_ggbc :=range _ebgf {var _gfgg []_ea .PdfObjectName ; -var _egbb float64 ;if len (_ggbc )> 0{_egbb =_ggbc [0].Style .FontSize ;};for _ ,_cdgd :=range _ggbc {_cbbbg :=_cdgd .Style ;if _cdgd .Text !=""&&_cbbbg .FontSize > _egbb {_egbb =_cbbbg .FontSize ;};if _egbb > _dbbc .PageHeight {return _dbbc ,nil ,_e .New ("\u0050\u0061\u0072\u0061\u0067\u0072a\u0070\u0068\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u0063\u0061\u006e\u0027\u0074\u0020\u0062\u0065\u0020\u006ca\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0070\u0061\u0067\u0065 \u0068e\u0069\u0067\u0068\u0074"); -};_cafd =_ea .PdfObjectName (_g .Sprintf ("\u0046\u006f\u006e\u0074\u0025\u0064",_bbf ));_dfae :=_becge ._gae .SetFontByName (_cafd ,_cbbbg .Font .ToPdfObject ());if _dfae !=nil {return _dbbc ,nil ,_dfae ;};_gfgg =append (_gfgg ,_cafd );_bbf ++;};_egbb *=_acgb ._gbcb ; -if _abbb &&_bgdb +_egbb > _dbbc .Height {_dbfg =_ebgf [_cbg :];_ebgf =_ebgf [:_cbg ];break ;};_bgdb +=_egbb ;_cbfe =append (_cbfe ,_gfgg );};_fcag ,_fgeb ,_fecaa :=_acgb .getLineMetrics (0);_fddec ,_fbfed :=_fcag *_acgb ._gbcb ,_fgeb *_acgb ._gbcb ;if len (_ebgf )==0{return _dbbc ,_dbfg ,nil ; -};_gagaf :=_bd .NewContentCreator ();_gagaf .Add_q ();_gcdb :=_fbfed ;if _acgb ._ggdf ==TextVerticalAlignmentCenter {_gcdb =_fgeb +(_fcag +_fecaa -_fgeb )/2+(_fbfed -_fgeb )/2;};_agbg :=_dbbc .PageHeight -_dbbc .Y -_gcdb ;_gagaf .Translate (_dbbc .X ,_agbg ); -_gacfa :=_agbg ;if _acgb ._cefe !=0{_gagaf .RotateDeg (_acgb ._cefe );};if _acgb ._ebebd ==TextOverflowHidden {_gagaf .Add_re (0,-_bgdb +_fddec +1,_acgb ._fdfbb ,_bgdb ).Add_W ().Add_n ();};_gagaf .Add_BT ();_dfbg :=0.0;var _ecefa []*_ce .BasicLine ;for _fbgge ,_bdfaa :=range _ebgf {_fdfbc :=_dbbc .X ; -var _dbcgc float64 ;if len (_bdfaa )> 0{_dbcgc =_bdfaa [0].Style .FontSize ;};_fcag ,_ ,_fecaa =_acgb .getLineMetrics (_fbgge );_fbfed =(_fcag +_fecaa );for _ ,_gccd :=range _bdfaa {_gdcbf :=&_gccd .Style ;if _gccd .Text !=""&&_gdcbf .FontSize > _dbcgc {_dbcgc =_gdcbf .FontSize ; -};if _fbfed > _dbcgc {_dbcgc =_fbfed ;};};if _fbgge !=0{_gagaf .Add_TD (0,-_dbcgc *_acgb ._gbcb +_dfbg );_gacfa -=_dbcgc *_acgb ._gbcb +_dfbg ;_dfbg =0.0;};_bgcc :=_fbgge ==len (_ebgf )-1;var (_gbaf float64 ;_egcab float64 ;_faefc *fontMetrics ;_cfgece float64 ; -_bgebb uint ;);var _eaba []float64 ;for _ ,_dbed :=range _bdfaa {_acfd :=&_dbed .Style ;if _acfd .FontSize > _egcab {_egcab =_acfd .FontSize ;_faefc =_feada (_dbed .Style .Font ,_acfd .FontSize );};if _fbfed > _egcab {_egcab =_fbfed ;};_cfba ,_eace :=_acfd .Font .GetRuneMetrics (' '); -if !_eace {return _dbbc ,nil ,_e .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068");};var _bdfbf uint ;var _bfca float64 ;_abegf :=len (_dbed .Text ); -for _fccg ,_aged :=range _dbed .Text {if _aged ==' '{_bdfbf ++;continue ;};if _aged =='\u000A'{continue ;};_ffee ,_acdd :=_acfd .Font .GetRuneMetrics (_aged );if !_acdd {_eef .Log .Debug ("\u0055\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0072\u0075\u006ee\u0020%\u0076\u0020\u0069\u006e\u0020\u0066\u006fn\u0074\u000a",_aged ); -return _dbbc ,nil ,_e .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0067\u006c\u0079p\u0068");};_bfca +=_acfd .FontSize *_ffee .Wx *_acfd .horizontalScale ();if _fccg !=_abegf -1{_bfca +=_acfd .CharSpacing *1000.0; -};};_eaba =append (_eaba ,_bfca );_gbaf +=_bfca ;_cfgece +=float64 (_bdfbf )*_cfba .Wx *_acfd .FontSize *_acfd .horizontalScale ();_bgebb +=_bdfbf ;};_egcab *=_acgb ._gbcb ;var _fcceb []_ea .PdfObject ;_cdccb :=_acgb ._fdfbb *1000.0;if _acgb ._dgbde ==TextAlignmentJustify {if _bgebb > 0&&!_bgcc {_cfgece =(_cdccb -_gbaf )/float64 (_bgebb )/_daffd ; -};}else if _acgb ._dgbde ==TextAlignmentCenter {_aaeb :=(_cdccb -_gbaf -_cfgece )/2;_ccac :=_aaeb /_daffd ;_fcceb =append (_fcceb ,_ea .MakeFloat (-_ccac ));_fdfbc +=_aaeb /1000.0;}else if _acgb ._dgbde ==TextAlignmentRight {_gfdf :=(_cdccb -_gbaf -_cfgece ); -_feag :=_gfdf /_daffd ;_fcceb =append (_fcceb ,_ea .MakeFloat (-_feag ));_fdfbc +=_gfdf /1000.0;};if len (_fcceb )> 0{_gagaf .Add_Tf (_fbffg ,_daffd ).Add_TL (_daffd *_acgb ._gbcb ).Add_TJ (_fcceb ...);};_beef :=0.0;for _eaaba ,_ccfgf :=range _bdfaa {_cfedb :=&_ccfgf .Style ; -_fdbd :=_fbffg ;_ddfg :=_daffd ;_babc :=_cfedb .OutlineColor !=nil ;_fadbe :=_cfedb .HorizontalScaling !=DefaultHorizontalScaling ;_fabbg :=_cfedb .OutlineSize !=1;if _fabbg {_gagaf .Add_w (_cfedb .OutlineSize );};_cacbc :=_cfedb .RenderingMode !=TextRenderingModeFill ; -if _cacbc {_gagaf .Add_Tr (int64 (_cfedb .RenderingMode ));};_gddg :=_cfedb .CharSpacing !=0;if _gddg {_gagaf .Add_Tc (_cfedb .CharSpacing );};_ecgc :=_cfedb .TextRise !=0;if _ecgc {_gagaf .Add_Ts (_cfedb .TextRise );};if _ccfgf .VerticalAlignment !=TextVerticalAlignmentBaseline {_feddf :=_feada (_ccfgf .Style .Font ,_cfedb .FontSize ); -switch _ccfgf .VerticalAlignment {case TextVerticalAlignmentCenter :_beef =_faefc ._gbffe /2-_feddf ._gbffe /2;case TextVerticalAlignmentBottom :_beef =_faefc ._dgad -_feddf ._dgad ;case TextVerticalAlignmentTop :_beef =_fgeb -_cfedb .FontSize ;};if _beef !=0.0{_gagaf .Translate (0,_beef ); -};};if _acgb ._dgbde !=TextAlignmentJustify ||_bgcc {_gdcf ,_gadfb :=_cfedb .Font .GetRuneMetrics (' ');if !_gadfb {return _dbbc ,nil ,_e .New ("\u0074\u0068e \u0066\u006f\u006et\u0020\u0064\u006f\u0065s n\u006ft \u0068\u0061\u0076\u0065\u0020\u0061\u0020sp\u0061\u0063\u0065\u0020\u0067\u006c\u0079p\u0068"); -};_fdbd =_cbfe [_fbgge ][_eaaba ];_ddfg =_cfedb .FontSize ;_cfgece =_gdcf .Wx *_cfedb .horizontalScale ();};_adgg :=_cfedb .Font .Encoder ();var _dfag []byte ;for _ ,_eaea :=range _ccfgf .Text {if _eaea =='\u000A'{continue ;};if _eaea ==' '{if len (_dfag )> 0{if _babc {_gagaf .SetStrokingColor (_gdfa (_cfedb .OutlineColor )); -};if _fadbe {_gagaf .Add_Tz (_cfedb .HorizontalScaling );};_gagaf .SetNonStrokingColor (_gdfa (_cfedb .Color )).Add_Tf (_cbfe [_fbgge ][_eaaba ],_cfedb .FontSize ).Add_TJ ([]_ea .PdfObject {_ea .MakeStringFromBytes (_dfag )}...);_dfag =nil ;};if _fadbe {_gagaf .Add_Tz (DefaultHorizontalScaling ); -};_gagaf .Add_Tf (_fdbd ,_ddfg ).Add_TJ ([]_ea .PdfObject {_ea .MakeFloat (-_cfgece )}...);_eaba [_eaaba ]+=_cfgece *_ddfg ;}else {if _ ,_gcfeg :=_adgg .RuneToCharcode (_eaea );!_gcfeg {_aagga =UnsupportedRuneError {Message :_g .Sprintf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u0072\u0075\u006e\u0065 \u0069\u006e\u0020\u0074\u0065\u0078\u0074\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0023\u0078\u0020\u0028\u0025\u0063\u0029",_eaea ,_eaea ),Rune :_eaea }; -_dbbc ._bdfb =append (_dbbc ._bdfb ,_aagga );_eef .Log .Debug (_aagga .Error ());if _dbbc ._bfdb <=0{continue ;};_eaea =_dbbc ._bfdb ;};_dfag =append (_dfag ,_adgg .Encode (string (_eaea ))...);};};if len (_dfag )> 0{if _babc {_gagaf .SetStrokingColor (_gdfa (_cfedb .OutlineColor )); -};if _fadbe {_gagaf .Add_Tz (_cfedb .HorizontalScaling );};_gagaf .SetNonStrokingColor (_gdfa (_cfedb .Color )).Add_Tf (_cbfe [_fbgge ][_eaaba ],_cfedb .FontSize ).Add_TJ ([]_ea .PdfObject {_ea .MakeStringFromBytes (_dfag )}...);};_daffc :=_eaba [_eaaba ]/1000.0; -if _cfedb .Underline {_eedbd :=_cfedb .UnderlineStyle .Color ;if _eedbd ==nil {_eedbd =_ccfgf .Style .Color ;};_eaga ,_ggcd ,_eecbd :=_eedbd .ToRGB ();_cgbf :=_fdfbc -_dbbc .X ;_edgd :=_gacfa -_agbg +_cfedb .TextRise -_cfedb .UnderlineStyle .Offset ;_ecefa =append (_ecefa ,&_ce .BasicLine {X1 :_cgbf ,Y1 :_edgd ,X2 :_cgbf +_daffc ,Y2 :_edgd ,LineWidth :_ccfgf .Style .UnderlineStyle .Thickness ,LineColor :_fa .NewPdfColorDeviceRGB (_eaga ,_ggcd ,_eecbd )}); -};if _ccfgf ._gbgga !=nil {var _dgfgf *_ea .PdfObjectArray ;if !_ccfgf ._gdffd {switch _ecdb :=_ccfgf ._gbgga .GetContext ().(type ){case *_fa .PdfAnnotationLink :_dgfgf =_ea .MakeArray ();_ecdb .Rect =_dgfgf ;_acegb ,_dfgca :=_ecdb .Dest .(*_ea .PdfObjectArray ); -if _dfgca &&_acegb .Len ()==5{_ceedca ,_gaae :=_acegb .Get (1).(*_ea .PdfObjectName );if _gaae &&_ceedca .String ()=="\u0058\u0059\u005a"{_egebf ,_agdf :=_ea .GetNumberAsFloat (_acegb .Get (3));if _agdf ==nil {_acegb .Set (3,_ea .MakeFloat (_dbbc .PageHeight -_egebf )); -};};};};_ccfgf ._gdffd =true ;};if _dgfgf !=nil {_eded :=_ce .NewPoint (_fdfbc -_dbbc .X ,_gacfa +_cfedb .TextRise -_agbg ).Rotate (_acgb ._cefe );_eded .X +=_dbbc .X ;_eded .Y +=_agbg ;_cdfa ,_eaabe ,_bfagg ,_gbab :=_decad (_daffc ,_egcab ,_acgb ._cefe ); -_eded .X +=_cdfa ;_eded .Y +=_eaabe ;_dgfgf .Clear ();_dgfgf .Append (_ea .MakeFloat (_eded .X ));_dgfgf .Append (_ea .MakeFloat (_eded .Y ));_dgfgf .Append (_ea .MakeFloat (_eded .X +_bfagg ));_dgfgf .Append (_ea .MakeFloat (_eded .Y +_gbab ));};_becge .AddAnnotation (_ccfgf ._gbgga ); -};_fdfbc +=_daffc ;if _fabbg {_gagaf .Add_w (1.0);};if _babc {_gagaf .Add_RG (0.0,0.0,0.0);};if _cacbc {_gagaf .Add_Tr (int64 (TextRenderingModeFill ));};if _gddg {_gagaf .Add_Tc (0);};if _ecgc {_gagaf .Add_Ts (0);};if _fadbe {_gagaf .Add_Tz (DefaultHorizontalScaling ); -};if _beef !=0.0{_gagaf .Translate (0,-_beef );_beef =0.0;};};};_gagaf .Add_ET ();for _ ,_abacg :=range _ecefa {_gagaf .SetStrokingColor (_abacg .LineColor ).Add_w (_abacg .LineWidth ).Add_m (_abacg .X1 ,_abacg .Y1 ).Add_l (_abacg .X2 ,_abacg .Y2 ).Add_s (); -};_gagaf .Add_Q ();_cebee :=_gagaf .Operations ();_cebee .WrapIfNeeded ();_becge .addContents (_cebee );if _abbb {_afced :=_bgdb ;_dbbc .Y +=_afced ;_dbbc .Height -=_afced ;if _dbbc .Inline {_dbbc .X +=_acgb .Width ()+_acgb ._faaba .Right ;};};return _dbbc ,_dbfg ,nil ; -}; +// GraphicSVG represents a drawable graphic SVG. +// It is used to render the graphic SVG components using a creator instance. +type GraphicSVG struct{_dgaf *_cc .GraphicSVG ;_dgdb Positioning ;_bgag float64 ;_gcfge float64 ;_eaff Margins ;}; -// Scale scales the rectangle dimensions by the specified factors. -func (_adaa *Rectangle )Scale (xFactor ,yFactor float64 ){_adaa ._faaa =xFactor *_adaa ._faaa ;_adaa ._baag =yFactor *_adaa ._baag ;}; +// FilledCurve represents a closed path of Bezier curves with a border and fill. +type FilledCurve struct{_babe []_fc .CubicBezierCurve ;FillEnabled bool ;_ddddf Color ;BorderEnabled bool ;BorderWidth float64 ;_eadf Color ;};func _ddf (_bcb *_bdb .ContentStreamOperations ,_cba *_ggc .PdfPageResources ,_ggdb *_bdb .ContentStreamOperations ,_gdcf *_ggc .PdfPageResources )error {_eebb :=map[_fe .PdfObjectName ]_fe .PdfObjectName {}; +_cca :=map[_fe .PdfObjectName ]_fe .PdfObjectName {};_bced :=map[_fe .PdfObjectName ]_fe .PdfObjectName {};_cbe :=map[_fe .PdfObjectName ]_fe .PdfObjectName {};_efa :=map[_fe .PdfObjectName ]_fe .PdfObjectName {};_bcgc :=map[_fe .PdfObjectName ]_fe .PdfObjectName {}; +for _ ,_dcg :=range *_ggdb {switch _dcg .Operand {case "\u0044\u006f":if len (_dcg .Params )==1{if _edd ,_dee :=_dcg .Params [0].(*_fe .PdfObjectName );_dee {if _ ,_ged :=_eebb [*_edd ];!_ged {var _dfa _fe .PdfObjectName ;_dcbd ,_ :=_gdcf .GetXObjectByName (*_edd ); +if _dcbd !=nil {_dfa =*_edd ;for {_ad ,_ :=_cba .GetXObjectByName (_dfa );if _ad ==nil ||_ad ==_dcbd {break ;};_dfa =*_fe .MakeName (_daf (_dfa .String ()));};};_cba .SetXObjectByName (_dfa ,_dcbd );_eebb [*_edd ]=_dfa ;};_ecg :=_eebb [*_edd ];_dcg .Params [0]=&_ecg ; +};};case "\u0054\u0066":if len (_dcg .Params )==2{if _dde ,_eab :=_dcg .Params [0].(*_fe .PdfObjectName );_eab {if _ ,_gfg :=_cca [*_dde ];!_gfg {_dbc ,_ffg :=_gdcf .GetFontByName (*_dde );_debg :=*_dde ;if _ffg &&_dbc !=nil {_debg =_ffa (_dde .String (),_dbc ,_cba ); +};_cba .SetFontByName (_debg ,_dbc );_cca [*_dde ]=_debg ;};_bddf :=_cca [*_dde ];_dcg .Params [0]=&_bddf ;};};case "\u0043\u0053","\u0063\u0073":if len (_dcg .Params )==1{if _cfa ,_fcdf :=_dcg .Params [0].(*_fe .PdfObjectName );_fcdf {if _ ,_cffa :=_bced [*_cfa ]; +!_cffa {var _abg _fe .PdfObjectName ;_af ,_gdfc :=_gdcf .GetColorspaceByName (*_cfa );if _gdfc {_abg =*_cfa ;for {_befa ,_ebe :=_cba .GetColorspaceByName (_abg );if !_ebe ||_af ==_befa {break ;};_abg =*_fe .MakeName (_daf (_abg .String ()));};_cba .SetColorspaceByName (_abg ,_af ); +_bced [*_cfa ]=_abg ;}else {_ca .Log .Debug ("C\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064");};};if _egd ,_fac :=_bced [*_cfa ];_fac {_dcg .Params [0]=&_egd ;}else {_ca .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0043\u006f\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020%\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",*_cfa ); +};};};case "\u0053\u0043\u004e","\u0073\u0063\u006e":if len (_dcg .Params )==1{if _eee ,_gfc :=_dcg .Params [0].(*_fe .PdfObjectName );_gfc {if _ ,_bcaf :=_cbe [*_eee ];!_bcaf {var _fff _fe .PdfObjectName ;_gef ,_eeee :=_gdcf .GetPatternByName (*_eee ); +if _eeee {_fff =*_eee ;for {_eed ,_bee :=_cba .GetPatternByName (_fff );if !_bee ||_eed ==_gef {break ;};_fff =*_fe .MakeName (_daf (_fff .String ()));};_ebd :=_cba .SetPatternByName (_fff ,_gef .ToPdfObject ());if _ebd !=nil {return _ebd ;};_cbe [*_eee ]=_fff ; +};};if _abc ,_dab :=_cbe [*_eee ];_dab {_dcg .Params [0]=&_abc ;};};};case "\u0073\u0068":if len (_dcg .Params )==1{if _fae ,_ecc :=_dcg .Params [0].(*_fe .PdfObjectName );_ecc {if _ ,_dgbc :=_efa [*_fae ];!_dgbc {var _cfaa _fe .PdfObjectName ;_fgd ,_cadaf :=_gdcf .GetShadingByName (*_fae ); +if _cadaf {_cfaa =*_fae ;for {_ac ,_acd :=_cba .GetShadingByName (_cfaa );if !_acd ||_fgd ==_ac {break ;};_cfaa =*_fe .MakeName (_daf (_cfaa .String ()));};_fbg :=_cba .SetShadingByName (_cfaa ,_fgd .ToPdfObject ());if _fbg !=nil {_ca .Log .Debug ("E\u0052\u0052\u004f\u0052 S\u0065t\u0020\u0073\u0068\u0061\u0064i\u006e\u0067\u003a\u0020\u0025\u0076",_fbg ); +return _fbg ;};_efa [*_fae ]=_cfaa ;}else {_ca .Log .Debug ("\u0053\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};};if _fdb ,_ead :=_efa [*_fae ];_ead {_dcg .Params [0]=&_fdb ;}else {_ca .Log .Debug ("E\u0072\u0072\u006f\u0072\u003a\u0020S\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u0025\u0073 \u006e\u006f\u0074 \u0066o\u0075\u006e\u0064",*_fae ); +};};};case "\u0067\u0073":if len (_dcg .Params )==1{if _edg ,_acb :=_dcg .Params [0].(*_fe .PdfObjectName );_acb {if _ ,_baa :=_bcgc [*_edg ];!_baa {var _bed _fe .PdfObjectName ;_efec ,_ace :=_gdcf .GetExtGState (*_edg );if _ace {_bed =*_edg ;for {_efg ,_fec :=_cba .GetExtGState (_bed ); +if !_fec ||_efec ==_efg {break ;};_bed =*_fe .MakeName (_daf (_bed .String ()));};};_cba .AddExtGState (_bed ,_efec );_bcgc [*_edg ]=_bed ;};_fca :=_bcgc [*_edg ];_dcg .Params [0]=&_fca ;};};};*_bcb =append (*_bcb ,_dcg );};return nil ;};func _dedafb (_edfd *templateProcessor ,_adbb *templateNode )(interface{},error ){return _edfd .parseTable (_adbb ); +}; -// SetLineStyle sets the style for all the line components: number, title, -// separator, page. The style is applied only for new lines added to the -// TOC component. -func (_daadd *TOC )SetLineStyle (style TextStyle ){_daadd .SetLineNumberStyle (style );_daadd .SetLineTitleStyle (style );_daadd .SetLineSeparatorStyle (style );_daadd .SetLinePageStyle (style );}; +// SetMargins sets the margins of the ellipse. +// NOTE: ellipse margins are only applied if relative positioning is used. +func (_abcgc *Ellipse )SetMargins (left ,right ,top ,bottom float64 ){_abcgc ._cadg .Left =left ;_abcgc ._cadg .Right =right ;_abcgc ._cadg .Top =top ;_abcgc ._cadg .Bottom =bottom ;};func _dfede (_cbbec string ,_eeeaa ,_ccda TextStyle )*TOC {_gbee :=_ccda ; +_gbee .FontSize =14;_dacce :=_egdc (_gbee );_dacce .SetEnableWrap (true );_dacce .SetTextAlignment (TextAlignmentLeft );_dacce .SetMargins (0,0,0,5);_dabff :=_dacce .Append (_cbbec );_dabff .Style =_gbee ;return &TOC {_ecagg :_dacce ,_fbeeg :[]*TOCLine {},_febed :_eeeaa ,_cbgbd :_eeeaa ,_effdg :_eeeaa ,_abgad :_eeeaa ,_feaba :"\u002e",_ebgfa :10,_dfbae :Margins {0,0,2,2},_fcffe :PositionRelative ,_cceeb :_eeeaa ,_dbaf :true }; +}; -// SetDueDate sets the due date of the invoice. -func (_ffgb *Invoice )SetDueDate (dueDate string )(*InvoiceCell ,*InvoiceCell ){_ffgb ._gdcc [1].Value =dueDate ;return _ffgb ._gdcc [0],_ffgb ._gdcc [1];}; +// Curve represents a cubic Bezier curve with a control point. +type Curve struct{_ebbc float64 ;_gbae float64 ;_cfac float64 ;_cfdb float64 ;_bceb float64 ;_bfea float64 ;_ccad Color ;_bceaa float64 ;}; // Add appends a new item to the list. // The supported components are: *Paragraph, *StyledParagraph, *Division, *Image, *Table, and *List. // Returns the marker used for the newly added item. The returned marker // object can be used to change the text and style of the marker for the // current item. -func (_dcdef *List )Add (item VectorDrawable )(*TextChunk ,error ){_cafe :=&listItem {_edcf :item ,_dbea :_dcdef ._cgef };switch _cabg :=item .(type ){case *Paragraph :case *StyledParagraph :case *List :if _cabg ._ecfac {_cabg ._dcdc =15;};case *Division :case *Image :case *Table :default:return nil ,_e .New ("\u0074\u0068i\u0073\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0064\u0072\u0061\u0077\u0061\u0062\u006c\u0065\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u0020\u006c\u0069\u0073\u0074"); -};_dcdef ._fbeaf =append (_dcdef ._fbeaf ,_cafe );return &_cafe ._dbea ,nil ;}; - -// AddTotalLine adds a new line in the invoice totals table. -func (_babad *Invoice )AddTotalLine (desc ,value string )(*InvoiceCell ,*InvoiceCell ){_bbaf :=&InvoiceCell {_babad ._defd ,desc };_bgde :=&InvoiceCell {_babad ._defd ,value };_babad ._cgca =append (_babad ._cgca ,[2]*InvoiceCell {_bbaf ,_bgde });return _bbaf ,_bgde ; -}; +func (_afebf *List )Add (item VectorDrawable )(*TextChunk ,error ){_fecd :=&listItem {_gdceb :item ,_eeed :_afebf ._ebgba };switch _dgfa :=item .(type ){case *Paragraph :case *StyledParagraph :case *List :if _dgfa ._ceeg {_dgfa ._egab =15;};case *Division :case *Image :case *Table :default:return nil ,_fa .New ("\u0074\u0068i\u0073\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0064\u0072\u0061\u0077\u0061\u0062\u006c\u0065\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u0020\u006c\u0069\u0073\u0074"); +};_afebf ._bede =append (_afebf ._bede ,_fecd );return &_fecd ._eeed ,nil ;};func _agccg (_fgdda *_ed .File )([]*_ggc .PdfPage ,error ){_ecbe ,_fcaca :=_ggc .NewPdfReader (_fgdda );if _fcaca !=nil {return nil ,_fcaca ;};_dabgba ,_fcaca :=_ecbe .GetNumPages (); +if _fcaca !=nil {return nil ,_fcaca ;};var _cdcab []*_ggc .PdfPage ;for _dbgg :=0;_dbgg < _dabgba ;_dbgg ++{_dgcc ,_ceebb :=_ecbe .GetPage (_dbgg +1);if _ceebb !=nil {return nil ,_ceebb ;};_cdcab =append (_cdcab ,_dgcc );};return _cdcab ,nil ;}; -// GetMargins returns the margins of the ellipse: left, right, top, bottom. -func (_fcfd *Ellipse )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _fcfd ._dfac .Left ,_fcfd ._dfac .Right ,_fcfd ._dfac .Top ,_fcfd ._dfac .Bottom ;}; - -// SetFillOpacity sets the fill opacity. -func (_efbaf *PolyBezierCurve )SetFillOpacity (opacity float64 ){_efbaf ._egff =opacity }; +// GetHorizontalAlignment returns the horizontal alignment of the image. +func (_cbdfa *Image )GetHorizontalAlignment ()HorizontalAlignment {return _cbdfa ._afdag }; -// NewCell makes a new cell and inserts it into the table at the current position. -func (_bceg *Table )NewCell ()*TableCell {return _bceg .MultiCell (1,1)};func (_fgca *RadialShading )shadingModel ()*_fa .PdfShadingType3 {_ffafd ,_adff ,_fcee :=_fgca ._gcbg ._cfcbc .ToRGB ();var _ccag _ce .Point ;switch _fgca ._egce {case AnchorBottomLeft :_ccag =_ce .Point {X :_fgca ._beaeb .Llx ,Y :_fgca ._beaeb .Lly }; -case AnchorBottomRight :_ccag =_ce .Point {X :_fgca ._beaeb .Urx ,Y :_fgca ._beaeb .Ury -_fgca ._beaeb .Height ()};case AnchorTopLeft :_ccag =_ce .Point {X :_fgca ._beaeb .Llx ,Y :_fgca ._beaeb .Lly +_fgca ._beaeb .Height ()};case AnchorTopRight :_ccag =_ce .Point {X :_fgca ._beaeb .Urx ,Y :_fgca ._beaeb .Ury }; -case AnchorLeft :_ccag =_ce .Point {X :_fgca ._beaeb .Llx ,Y :_fgca ._beaeb .Lly +_fgca ._beaeb .Height ()/2};case AnchorTop :_ccag =_ce .Point {X :_fgca ._beaeb .Llx +_fgca ._beaeb .Width ()/2,Y :_fgca ._beaeb .Ury };case AnchorRight :_ccag =_ce .Point {X :_fgca ._beaeb .Urx ,Y :_fgca ._beaeb .Lly +_fgca ._beaeb .Height ()/2}; -case AnchorBottom :_ccag =_ce .Point {X :_fgca ._beaeb .Urx +_fgca ._beaeb .Width ()/2,Y :_fgca ._beaeb .Lly };default:_ccag =_ce .NewPoint (_fgca ._beaeb .Llx +_fgca ._beaeb .Width ()/2,_fgca ._beaeb .Lly +_fgca ._beaeb .Height ()/2);};_bgad :=_fgca ._ffdcgf ; -_fbfa :=_fgca ._cbbaf ;_beed :=_ccag .X +_fgca ._eebg ;_ddad :=_ccag .Y +_fgca ._dged ;if _bgad ==-1.0{_bgad =0.0;};if _fbfa ==-1.0{var _fabe []float64 ;_cabd :=_ec .Pow (_beed -_fgca ._beaeb .Llx ,2)+_ec .Pow (_ddad -_fgca ._beaeb .Lly ,2);_fabe =append (_fabe ,_ec .Abs (_cabd )); -_acde :=_ec .Pow (_beed -_fgca ._beaeb .Llx ,2)+_ec .Pow (_fgca ._beaeb .Lly +_fgca ._beaeb .Height ()-_ddad ,2);_fabe =append (_fabe ,_ec .Abs (_acde ));_cedf :=_ec .Pow (_fgca ._beaeb .Urx -_beed ,2)+_ec .Pow (_ddad -_fgca ._beaeb .Ury -_fgca ._beaeb .Height (),2); -_fabe =append (_fabe ,_ec .Abs (_cedf ));_bfage :=_ec .Pow (_fgca ._beaeb .Urx -_beed ,2)+_ec .Pow (_fgca ._beaeb .Ury -_ddad ,2);_fabe =append (_fabe ,_ec .Abs (_bfage ));_d .Slice (_fabe ,func (_fefcb ,_bdfe int )bool {return _fefcb > _bdfe });_fbfa =_ec .Sqrt (_fabe [0]); -};_begad :=&_fa .PdfRectangle {Llx :_beed -_fbfa ,Lly :_ddad -_fbfa ,Urx :_beed +_fbfa ,Ury :_ddad +_fbfa };_ggdbc :=_fa .NewPdfShadingType3 ();_ggdbc .PdfShading .ShadingType =_ea .MakeInteger (3);_ggdbc .PdfShading .ColorSpace =_fa .NewPdfColorspaceDeviceRGB (); -_ggdbc .PdfShading .Background =_ea .MakeArrayFromFloats ([]float64 {_ffafd ,_adff ,_fcee });_ggdbc .PdfShading .BBox =_begad ;_ggdbc .PdfShading .AntiAlias =_ea .MakeBool (_fgca ._gcbg ._eadef );_ggdbc .Coords =_ea .MakeArrayFromFloats ([]float64 {_beed ,_ddad ,_bgad ,_beed ,_ddad ,_fbfa }); -_ggdbc .Domain =_ea .MakeArrayFromFloats ([]float64 {0.0,1.0});_ggdbc .Extend =_ea .MakeArray (_ea .MakeBool (_fgca ._gcbg ._ffcf [0]),_ea .MakeBool (_fgca ._gcbg ._ffcf [1]));_ggdbc .Function =_fgca ._gcbg .generatePdfFunctions ();return _ggdbc ;}; +// UnsupportedRuneError is an error that occurs when there is unsupported glyph being used. +type UnsupportedRuneError struct{Message string ;Rune rune ;};func (_efcg *StyledParagraph )wrapWordChunks (){if !_efcg ._cbeg {return ;};var (_bfca []*TextChunk ;_decca *_ggc .PdfFont ;);for _ ,_dbbc :=range _efcg ._cdffa {_bafe :=[]rune (_dbbc .Text ); +if _decca ==nil {_decca =_dbbc .Style .Font ;};_dcbf :=_dbbc ._dfcb ;_afcac :=_dbbc .VerticalAlignment ;if len (_bfca )> 0{if len (_bafe )==1&&_cd .IsPunct (_bafe [0])&&_dbbc .Style .Font ==_decca {_cadc :=[]rune (_bfca [len (_bfca )-1].Text );_bfca [len (_bfca )-1].Text =string (append (_cadc ,_bafe [0])); +continue ;}else {_ ,_ebedd :=_a .Atoi (_dbbc .Text );if _ebedd ==nil {_gbgd :=[]rune (_bfca [len (_bfca )-1].Text );_bdgg :=len (_gbgd );if _bdgg >=2{_ ,_cbafc :=_a .Atoi (string (_gbgd [_bdgg -2]));if _cbafc ==nil &&_cd .IsPunct (_gbgd [_bdgg -1]){_bfca [len (_bfca )-1].Text =string (append (_gbgd ,_bafe ...)); +continue ;};};};};};_aafad ,_bdaa :=_cddc (_dbbc .Text );if _bdaa !=nil {_ca .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0062\u0072\u0065\u0061\u006b\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0074\u006f\u0020w\u006f\u0072\u0064\u0073\u003a\u0020\u0025\u0076",_bdaa ); +_aafad =[]string {_dbbc .Text };};for _ ,_ebfcb :=range _aafad {_aaga :=NewTextChunk (_ebfcb ,_dbbc .Style );_aaga ._dfcb =_bgbee (_dcbf );_aaga .VerticalAlignment =_afcac ;_bfca =append (_bfca ,_aaga );};_decca =_dbbc .Style .Font ;};if len (_bfca )> 0{_efcg ._cdffa =_bfca ; +};};func _gfcae (_caaa string )*_ggc .PdfAnnotation {_gbfc :=_ggc .NewPdfAnnotationLink ();_dgcgc :=_ggc .NewBorderStyle ();_dgcgc .SetBorderWidth (0);_gbfc .BS =_dgcgc .ToPdfObject ();_geege :=_ggc .NewPdfActionURI ();_geege .URI =_fe .MakeString (_caaa ); +_gbfc .SetAction (_geege .PdfAction );return _gbfc .PdfAnnotation ;};func _egdc (_fcaf TextStyle )*StyledParagraph {return &StyledParagraph {_cdffa :[]*TextChunk {},_egcg :_fcaf ,_aecf :_dbeag (_fcaf .Font ),_babcf :1.0,_eaeg :TextAlignmentLeft ,_gfbb :true ,_facb :true ,_cbeg :false ,_adag :0,_bfagd :1,_bdbc :1,_gbga :PositionRelative }; +}; -// NewBlockFromPage creates a Block from a PDF Page. Useful for loading template pages as blocks -// from a PDF document and additional content with the creator. -func NewBlockFromPage (page *_fa .PdfPage )(*Block ,error ){_eefg :=&Block {};_gb ,_db :=page .GetAllContentStreams ();if _db !=nil {return nil ,_db ;};_aa :=_bd .NewContentStreamParser (_gb );_ba ,_db :=_aa .Parse ();if _db !=nil {return nil ,_db ;};_ba .WrapIfNeeded (); -_eefg ._ffc =_ba ;if page .Resources !=nil {_eefg ._gae =page .Resources ;}else {_eefg ._gae =_fa .NewPdfPageResources ();};_bab ,_db :=page .GetMediaBox ();if _db !=nil {return nil ,_db ;};if _bab .Llx !=0||_bab .Lly !=0{_eefg .translate (-_bab .Llx ,_bab .Lly ); -};_eefg ._bc =_bab .Urx -_bab .Llx ;_eefg ._dec =_bab .Ury -_bab .Lly ;if page .Rotate !=nil {_eefg ._eb =-float64 (*page .Rotate );};return _eefg ,nil ;}; +// NewTextChunk returns a new text chunk instance. +func NewTextChunk (text string ,style TextStyle )*TextChunk {return &TextChunk {Text :text ,Style :style ,VerticalAlignment :TextVerticalAlignmentBaseline };}; -// LevelOffset returns the amount of space an indentation level occupies. -func (_eacfg *TOCLine )LevelOffset ()float64 {return _eacfg ._ddccb }; +// SetSideBorderWidth sets the cell's side border width. +func (_fddg *TableCell )SetSideBorderWidth (side CellBorderSide ,width float64 ){switch side {case CellBorderSideAll :_fddg ._caffa =width ;_fddg ._egaeb =width ;_fddg ._egbd =width ;_fddg ._ddbdf =width ;case CellBorderSideTop :_fddg ._caffa =width ;case CellBorderSideBottom :_fddg ._egaeb =width ; +case CellBorderSideLeft :_fddg ._egbd =width ;case CellBorderSideRight :_fddg ._ddbdf =width ;};}; // AddPage adds the specified page to the creator. // NOTE: If the page has a Rotate flag, the creator will take care of // transforming the contents to maintain the correct orientation. -func (_efbc *Creator )AddPage (page *_fa .PdfPage )error {_aeefg ,_ddga :=_efbc .wrapPageIfNeeded (page );if _ddga !=nil {return _ddga ;};if _aeefg !=nil {page =_aeefg ;};_fegd ,_ddga :=page .GetMediaBox ();if _ddga !=nil {_eef .Log .Debug ("\u0046\u0061\u0069l\u0065\u0064\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u0070\u0061g\u0065\u0020\u006d\u0065\u0064\u0069\u0061\u0062\u006f\u0078\u003a\u0020\u0025\u0076",_ddga ); -return _ddga ;};_fegd .Normalize ();_ggga ,_dde :=_fegd .Llx ,_fegd .Lly ;_feaa :=_fegd ;if _ceed :=page .CropBox ;_ceed !=nil &&*_ceed !=*_fegd {_ceed .Normalize ();_ggga ,_dde =_ceed .Llx ,_ceed .Lly ;_feaa =_ceed ;};_def :=_de .IdentityMatrix ();_aaca ,_ddga :=page .GetRotate (); -if _ddga !=nil {_eef .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_ddga .Error ()); -};_acf :=_aaca %360!=0&&_aaca %90==0;if _acf {_gaed :=float64 ((360+_aaca %360)%360);if _gaed ==90{_def =_def .Translate (_feaa .Width (),0);}else if _gaed ==180{_def =_def .Translate (_feaa .Width (),_feaa .Height ());}else if _gaed ==270{_def =_def .Translate (0,_feaa .Height ()); -};_def =_def .Mult (_de .RotationMatrix (_gaed *_ec .Pi /180));_def =_def .Round (0.000001);_dabdd :=_ffedb (_feaa ,_def );_feaa =_dabdd ;_feaa .Normalize ();};if _ggga !=0||_dde !=0{_def =_de .TranslationMatrix (_ggga ,_dde ).Mult (_def );};if !_def .Identity (){_def =_def .Round (0.000001); -_efbc ._fgec [page ]=&pageTransformations {_bff :&_def };};_efbc ._ggfe =_feaa .Width ();_efbc ._bbdg =_feaa .Height ();_efbc .initContext ();_efbc ._ccgg =append (_efbc ._ccgg ,page );_efbc ._gbb .Page ++;return nil ;}; +func (_efc *Creator )AddPage (page *_ggc .PdfPage )error {_aabf ,_abag :=_efc .wrapPageIfNeeded (page );if _abag !=nil {return _abag ;};if _aabf !=nil {page =_aabf ;};_cef ,_abag :=page .GetMediaBox ();if _abag !=nil {_ca .Log .Debug ("\u0046\u0061\u0069l\u0065\u0064\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u0070\u0061g\u0065\u0020\u006d\u0065\u0064\u0069\u0061\u0062\u006f\u0078\u003a\u0020\u0025\u0076",_abag ); +return _abag ;};_cef .Normalize ();_aef ,_cfe :=_cef .Llx ,_cef .Lly ;_aca :=_cef ;if _dbfb :=page .CropBox ;_dbfb !=nil &&*_dbfb !=*_cef {_dbfb .Normalize ();_aef ,_cfe =_dbfb .Llx ,_dbfb .Lly ;_aca =_dbfb ;};_cfba :=_bd .IdentityMatrix ();_cfbb ,_abag :=page .GetRotate (); +if _abag !=nil {_ca .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_abag .Error ()); +};_deea :=_cfbb %360!=0&&_cfbb %90==0;if _deea {_gda :=float64 ((360+_cfbb %360)%360);if _gda ==90{_cfba =_cfba .Translate (_aca .Width (),0);}else if _gda ==180{_cfba =_cfba .Translate (_aca .Width (),_aca .Height ());}else if _gda ==270{_cfba =_cfba .Translate (0,_aca .Height ()); +};_cfba =_cfba .Mult (_bd .RotationMatrix (_gda *_b .Pi /180));_cfba =_cfba .Round (0.000001);_geff :=_gddf (_aca ,_cfba );_aca =_geff ;_aca .Normalize ();};if _aef !=0||_cfe !=0{_cfba =_bd .TranslationMatrix (_aef ,_cfe ).Mult (_cfba );};if !_cfba .Identity (){_cfba =_cfba .Round (0.000001); +_efc ._afbc [page ]=&pageTransformations {_dafc :&_cfba };};_efc ._abf =_aca .Width ();_efc ._ffc =_aca .Height ();_efc .initContext ();_efc ._cec =append (_efc ._cec ,page );_efc ._eacd .Page ++;return nil ;}; -// GeneratePageBlocks draws the curve onto page blocks. -func (_eeac *Curve )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_bgga :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_deeb :=_bd .NewContentCreator ();_deeb .Add_q ().Add_w (_eeac ._geeb ).SetStrokingColor (_gdfa (_eeac ._adfb )).Add_m (_eeac ._cfd ,ctx .PageHeight -_eeac ._cdbb ).Add_v (_eeac ._bcga ,ctx .PageHeight -_eeac ._affa ,_eeac ._bcca ,ctx .PageHeight -_eeac ._acdbc ).Add_S ().Add_Q (); -_gdee :=_bgga .addContentsByString (_deeb .String ());if _gdee !=nil {return nil ,ctx ,_gdee ;};return []*Block {_bgga },ctx ,nil ;};func (_fegfa *TextChunk )clone ()*TextChunk {_dbabg :=*_fegfa ;_dbabg ._gbgga =_bdfgc (_fegfa ._gbgga );return &_dbabg ; -}; +// NewColumn returns a new column for the line items invoice table. +func (_fbgc *Invoice )NewColumn (description string )*InvoiceCell {return _fbgc .newColumn (description ,CellHorizontalAlignmentLeft );};func (_bfba *Table )wrapContent (_bgfba DrawContext )error {if _bfba ._eebgf {return nil ;};_bfba .sortCells ();_edad :=func (_fccad *TableCell ,_dabfe int ,_gafg int ,_efcd int )(_bgagg int ){if _efcd < 1{return -1; +};_gdfcfe :=0;for _addbf :=_gafg +1;_addbf < len (_bfba ._cacca )-1;_addbf ++{_egbgd :=_bfba ._cacca [_addbf ];if _egbgd ._deded ==_efcd &&_gdfcfe !=_gafg {_gdfcfe =_addbf ;if (_egbgd ._eafbd < _fccad ._eafbd &&_bfba ._aeaa > _egbgd ._eafbd )||_fccad ._eafbd < _bfba ._aeaa {continue ; +};break ;};};_cbgce :=float64 (0.0);for _affc :=0;_affc < _fccad ._ffgdb ;_affc ++{_cbgce +=_bfba ._begb [_fccad ._deded +_affc -1];};_deca :=_fccad .width (_bfba ._abbbf ,_bgfba .Width );var (_eccc VectorDrawable ;_dafde =false ;);switch _begg :=_fccad ._efbbe .(type ){case *StyledParagraph :_dbbffe :=_bgfba ; +_dbbffe .Height =_b .Floor (_cbgce -_begg ._fbgbc .Top -_begg ._fbgbc .Bottom -0.5*_begg .getTextHeight ());_dbbffe .Width =_deca ;_ddcdb ,_ceddf ,_dbdc :=_begg .split (_dbbffe );if _dbdc !=nil {_ca .Log .Error ("\u0045\u0072\u0072o\u0072\u0020\u0077\u0072a\u0070\u0020\u0073\u0074\u0079\u006c\u0065d\u0020\u0070\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u003a\u0020\u0025\u0076",_dbdc .Error ()); +};if _ddcdb !=nil &&_ceddf !=nil {_bfba ._cacca [_gafg ]._efbbe =_ddcdb ;_eccc =_ceddf ;_dafde =true ;};};_bfba ._cacca [_gafg ]._ffgdb =_fccad ._ffgdb ;_bgfba .Height =_bgfba .PageHeight -_bgfba .Margins .Top -_bgfba .Margins .Bottom ;_bfff :=_fccad .cloneProps (nil ); +if _dafde {_bfff ._efbbe =_eccc ;};_bfff ._ffgdb =_dabfe ;_bfff ._deded =_efcd +1;_bfff ._eafbd =_fccad ._eafbd ;if _bfff ._deded +_bfff ._ffgdb -1> _bfba ._fgbfga {for _fdaa :=_bfba ._fgbfga ;_fdaa < _bfff ._deded +_bfff ._ffgdb -1;_fdaa ++{_bfba ._fgbfga ++; +_bfba ._begb =append (_bfba ._begb ,_bfba ._ddfaf );};};_bfba ._cacca =append (_bfba ._cacca [:_gdfcfe +1],append ([]*TableCell {_bfff },_bfba ._cacca [_gdfcfe +1:]...)...);return _gdfcfe +1;};_bdcgb :=func (_dcaa *TableCell ,_gdef int ,_efbee int ,_adbg float64 )(_gddd int ){_fcbd :=_dcaa .width (_bfba ._abbbf ,_bgfba .Width ); +_feadc :=_adbg ;_fffc :=1;_agafg :=_bgfba .Height ;if _agafg > 0{for _feadc > _agafg {_feadc -=_bgfba .Height ;_agafg =_bgfba .PageHeight -_bgfba .Margins .Top -_bgfba .Margins .Bottom ;_fffc ++;};};var (_aefab VectorDrawable ;_fcdcg =false ;);switch _faac :=_dcaa ._efbbe .(type ){case *StyledParagraph :_dbdg :=_bgfba ; +_dbdg .Height =_b .Floor (_bgfba .Height -_faac ._fbgbc .Top -_faac ._fbgbc .Bottom -0.5*_faac .getTextHeight ());_dbdg .Width =_fcbd ;_abba ,_bfefc ,_fbcda :=_faac .split (_dbdg );if _fbcda !=nil {_ca .Log .Error ("\u0045\u0072\u0072o\u0072\u0020\u0077\u0072a\u0070\u0020\u0073\u0074\u0079\u006c\u0065d\u0020\u0070\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u003a\u0020\u0025\u0076",_fbcda .Error ()); +};if _abba !=nil &&_bfefc !=nil {_bfba ._cacca [_gdef ]._efbbe =_abba ;_aefab =_bfefc ;_fcdcg =true ;};};if _fffc < 2{return -1;};if _bfba ._cacca [_gdef ]._deded +_fffc -1> _bfba ._fgbfga {for _bfafg :=0;_bfafg < _fffc ;_bfafg ++{_bfba ._fgbfga ++;_bfba ._begb =append (_bfba ._begb ,_bfba ._ddfaf ); +};};_aeeg :=_adbg /float64 (_fffc );for _deaa :=0;_deaa < _fffc ;_deaa ++{_bfba ._begb [_efbee +_deaa -1]=_aeeg ;};_bgfba .Height =_bgfba .PageHeight -_bgfba .Margins .Top -_bgfba .Margins .Bottom ;_fdagd :=_dcaa .cloneProps (nil );if _fcdcg {_fdagd ._efbbe =_aefab ; +};_fdagd ._ffgdb =1;_fdagd ._deded =_efbee +_fffc -1;_fdagd ._eafbd =_dcaa ._eafbd ;_bfba ._cacca =append (_bfba ._cacca ,_fdagd );return len (_bfba ._cacca );};_bbef :=1;_eccca :=-1;for _debd :=0;_debd < len (_bfba ._cacca );_debd ++{_cbfe :=_bfba ._cacca [_debd ]; +if _eccca ==_debd {_bbef =_cbfe ._deded ;};if _cbfe ._ffgdb < 2{if _fabc :=_bfba ._begb [_cbfe ._deded -1];_fabc > _bgfba .Height {_eccca =_bdcgb (_cbfe ,_debd ,_cbfe ._deded ,_fabc );continue ;};continue ;};_eegf :=float64 (0);for _dgaff :=0;_dgaff < _cbfe ._ffgdb ; +_dgaff ++{_eegf +=_bfba ._begb [_cbfe ._deded +_dgaff -1];};_aebbb :=float64 (0);for _dffgd :=_bbef -1;_dffgd < _cbfe ._deded -1;_dffgd ++{_aebbb +=_bfba ._begb [_dffgd ];};if _eegf <=(_bgfba .Height -_aebbb ){continue ;};_aebbc :=float64 (0.0);_cfef :=_cbfe ._ffgdb ; +_ededg :=-1;_fedb :=1;for _aebbe :=1;_aebbe <=_cbfe ._ffgdb ;_aebbe ++{if (_aebbc +_bfba ._begb [_cbfe ._deded +_aebbe -2])> (_bgfba .Height -_aebbb ){_fedb --;break ;};_ededg =_cbfe ._deded +_aebbe -1;_cfef =_cbfe ._ffgdb -_aebbe ;_aebbc +=_bfba ._begb [_cbfe ._deded +_aebbe -2]; +_fedb ++;};if _cbfe ._ffgdb ==_cfef {_bgfba .Height =_bgfba .PageHeight -_bgfba .Margins .Top -_bgfba .Margins .Bottom ;_bbef =_cbfe ._deded ;_debd --;continue ;};if _cfef > 0&&_cbfe ._ffgdb > _fedb {_cbfe ._ffgdb =_fedb ;_eccca =_edad (_cbfe ,_cfef ,_debd ,_ededg ); +if _debd +1==_eccca {_debd --;};};_bbef =_cbfe ._deded ;};_bfba .sortCells ();return nil ;}; -// SetAnchor set gradient position anchor. -// Default to center. -func (_cdec *RadialShading )SetAnchor (anchor AnchorPoint ){_cdec ._egce =anchor };func _ffedb (_ecbaa *_fa .PdfRectangle ,_ffdcf _de .Matrix )*_fa .PdfRectangle {var _ggfab _fa .PdfRectangle ;_ggfab .Llx ,_ggfab .Lly =_ffdcf .Transform (_ecbaa .Llx ,_ecbaa .Lly ); -_ggfab .Urx ,_ggfab .Ury =_ffdcf .Transform (_ecbaa .Urx ,_ecbaa .Ury );_ggfab .Normalize ();return &_ggfab ;};func (_ca *Block )addContentsByString (_bcd string )error {_cf :=_bd .NewContentStreamParser (_bcd );_cdd ,_ggg :=_cf .Parse ();if _ggg !=nil {return _ggg ; -};_ca ._ffc .WrapIfNeeded ();_cdd .WrapIfNeeded ();*_ca ._ffc =append (*_ca ._ffc ,*_cdd ...);return nil ;}; +// FitMode returns the fit mode of the line. +func (_bfgd *Line )FitMode ()FitMode {return _bfgd ._afad }; -// EnableRowWrap controls whether rows are wrapped across pages. -// NOTE: Currently, row wrapping is supported for rows using StyledParagraphs. -func (_bfee *Table )EnableRowWrap (enable bool ){_bfee ._dbac =enable }; +// Positioning returns the type of positioning the ellipse is set to use. +func (_cdgaf *Ellipse )Positioning ()Positioning {return _cdgaf ._acgd };const (AnchorBottomLeft AnchorPoint =iota ;AnchorBottomRight ;AnchorTopLeft ;AnchorTopRight ;AnchorCenter ;AnchorLeft ;AnchorRight ;AnchorTop ;AnchorBottom ;); -// GeneratePageBlocks generates the page blocks. Multiple blocks are generated if the contents wrap -// over multiple pages. Implements the Drawable interface. -func (_cdba *Paragraph )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_aaadc :=ctx ;var _cege []*Block ;_cacfb :=NewBlock (ctx .PageWidth ,ctx .PageHeight );if _cdba ._aacf .IsRelative (){ctx .X +=_cdba ._fbba .Left ;ctx .Y +=_cdba ._fbba .Top ; -ctx .Width -=_cdba ._fbba .Left +_cdba ._fbba .Right ;ctx .Height -=_cdba ._fbba .Top ;_cdba .SetWidth (ctx .Width );if _cdba .Height ()> ctx .Height {_cege =append (_cege ,_cacfb );_cacfb =NewBlock (ctx .PageWidth ,ctx .PageHeight );ctx .Page ++;_aead :=ctx ; -_aead .Y =ctx .Margins .Top ;_aead .X =ctx .Margins .Left +_cdba ._fbba .Left ;_aead .Height =ctx .PageHeight -ctx .Margins .Top -ctx .Margins .Bottom ;_aead .Width =ctx .PageWidth -ctx .Margins .Left -ctx .Margins .Right -_cdba ._fbba .Left -_cdba ._fbba .Right ; -ctx =_aead ;};}else {if int (_cdba ._gdffb )<=0{_cdba .SetWidth (_cdba .getTextWidth ());};ctx .X =_cdba ._ggde ;ctx .Y =_cdba ._ffdcg ;};ctx ,_caaa :=_dbdee (_cacfb ,_cdba ,ctx );if _caaa !=nil {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_caaa ); -return nil ,ctx ,_caaa ;};_cege =append (_cege ,_cacfb );if _cdba ._aacf .IsRelative (){ctx .Y +=_cdba ._fbba .Bottom ;ctx .Height -=_cdba ._fbba .Bottom ;if !ctx .Inline {ctx .X =_aaadc .X ;ctx .Width =_aaadc .Width ;};return _cege ,ctx ,nil ;};return _cege ,_aaadc ,nil ; -}; +// GetOptimizer returns current PDF optimizer. +func (_aebfe *Creator )GetOptimizer ()_ggc .Optimizer {return _aebfe ._eecf }; -// SetLineColor sets the line color. -func (_fdfa *Polyline )SetLineColor (color Color ){_fdfa ._dfgf .LineColor =_gdfa (color )}; +// Cols returns the total number of columns the table has. +func (_gaff *Table )Cols ()int {return _gaff ._aeaa };func (_bbg *pageTransformations )transformPage (_ggge *_ggc .PdfPage )error {if _bbd :=_bbg .applyFlip (_ggge );_bbd !=nil {return _bbd ;};return nil ;}; -// Height returns the current page height. -func (_cfg *Creator )Height ()float64 {return _cfg ._bbdg };func (_bfea *templateProcessor )nodeLogDebug (_egef *templateNode ,_gfdcc string ,_gfgfa ...interface{}){_eef .Log .Debug (_bfea .getNodeErrorLocation (_egef ,_gfdcc ,_gfgfa ...));};func (_gccf *templateProcessor )parseParagraph (_fcbd *templateNode ,_edgdc *Paragraph )(interface{},error ){if _edgdc ==nil {_edgdc =_gccf .creator .NewParagraph (""); -};for _ ,_bdbge :=range _fcbd ._facfb .Attr {_cfbgg :=_bdbge .Value ;switch _eegg :=_bdbge .Name .Local ;_eegg {case "\u0066\u006f\u006e\u0074":_edgdc .SetFont (_gccf .parseFontAttr (_eegg ,_cfbgg ));case "\u0066o\u006e\u0074\u002d\u0073\u0069\u007ae":_edgdc .SetFontSize (_gccf .parseFloatAttr (_eegg ,_cfbgg )); -case "\u0074\u0065\u0078\u0074\u002d\u0061\u006c\u0069\u0067\u006e":_edgdc .SetTextAlignment (_gccf .parseTextAlignmentAttr (_eegg ,_cfbgg ));case "l\u0069\u006e\u0065\u002d\u0068\u0065\u0069\u0067\u0068\u0074":_edgdc .SetLineHeight (_gccf .parseFloatAttr (_eegg ,_cfbgg )); -case "e\u006e\u0061\u0062\u006c\u0065\u002d\u0077\u0072\u0061\u0070":_edgdc .SetEnableWrap (_gccf .parseBoolAttr (_eegg ,_cfbgg ));case "\u0063\u006f\u006co\u0072":_edgdc .SetColor (_gccf .parseColorAttr (_eegg ,_cfbgg ));case "\u0078":_edgdc .SetPos (_gccf .parseFloatAttr (_eegg ,_cfbgg ),_edgdc ._ffdcg ); -case "\u0079":_edgdc .SetPos (_edgdc ._ggde ,_gccf .parseFloatAttr (_eegg ,_cfbgg ));case "\u0061\u006e\u0067l\u0065":_edgdc .SetAngle (_gccf .parseFloatAttr (_eegg ,_cfbgg ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_dfad :=_gccf .parseMarginAttr (_eegg ,_cfbgg ); -_edgdc .SetMargins (_dfad .Left ,_dfad .Right ,_dfad .Top ,_dfad .Bottom );case "\u006da\u0078\u002d\u006c\u0069\u006e\u0065s":_edgdc .SetMaxLines (int (_gccf .parseInt64Attr (_eegg ,_cfbgg )));default:_gccf .nodeLogDebug (_fcbd ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065\u0064\u0020pa\u0072\u0061\u0067\u0072\u0061\u0070h\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073`\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u002e",_eegg ); -};};return _edgdc ,nil ;}; +// DrawContext defines the drawing context. The DrawContext is continuously used and updated when +// drawing the page contents in relative mode. Keeps track of current X, Y position, available +// height as well as other page parameters such as margins and dimensions. +type DrawContext struct{ -// PageFinalizeFunctionArgs holds the input arguments provided to the page -// finalize callback function which can be set using Creator.PageFinalize. -type PageFinalizeFunctionArgs struct{PageNum int ;PageWidth float64 ;PageHeight float64 ;TOCPages int ;TotalPages int ;}; +// Current page number. +Page int ; -// Write output of creator to io.Writer interface. -func (_dage *Creator )Write (ws _dfd .Writer )error {if _ddgd :=_dage .Finalize ();_ddgd !=nil {return _ddgd ;};_eadcg :=_fa .NewPdfWriter ();_eadcg .SetOptimizer (_dage ._effb );if _dage ._adea !=nil {_afaf :=_eadcg .SetForms (_dage ._adea );if _afaf !=nil {_eef .Log .Debug ("F\u0061\u0069\u006c\u0075\u0072\u0065\u003a\u0020\u0025\u0076",_afaf ); -return _afaf ;};};if _dage ._abfe !=nil {_eadcg .AddOutlineTree (_dage ._abfe );}else if _dage ._ffgcf !=nil &&_dage .AddOutlines {_eadcg .AddOutlineTree (&_dage ._ffgcf .ToPdfOutline ().PdfOutlineTreeNode );};if _dage ._aded !=nil {if _cdaa :=_eadcg .SetPageLabels (_dage ._aded ); -_cdaa !=nil {_eef .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020C\u006f\u0075\u006c\u0064 no\u0074 s\u0065\u0074\u0020\u0070\u0061\u0067\u0065 l\u0061\u0062\u0065\u006c\u0073\u003a\u0020%\u0076",_cdaa );return _cdaa ;};};if _dage ._gfc !=nil {for _ ,_ebb :=range _dage ._gfc {_ggda :=_ebb .SubsetRegistered (); -if _ggda !=nil {_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u006f\u0075\u006c\u0064\u0020\u006e\u006ft\u0020s\u0075\u0062\u0073\u0065\u0074\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0025\u0076",_ggda );return _ggda ;};};};if _dage ._gbgd !=nil {_cfab :=_dage ._gbgd (&_eadcg ); -if _cfab !=nil {_eef .Log .Debug ("F\u0061\u0069\u006c\u0075\u0072\u0065\u003a\u0020\u0025\u0076",_cfab );return _cfab ;};};for _ ,_dgae :=range _dage ._ccgg {_fbgd :=_eadcg .AddPage (_dgae );if _fbgd !=nil {_eef .Log .Error ("\u0046\u0061\u0069\u006ced\u0020\u0074\u006f\u0020\u0061\u0064\u0064\u0020\u0050\u0061\u0067\u0065\u003a\u0020%\u0076",_fbgd ); -return _fbgd ;};};_ccbe :=_eadcg .Write (ws );if _ccbe !=nil {return _ccbe ;};return nil ;}; +// Current position. In a relative positioning mode, a drawable will be placed at these coordinates. +X ,Y float64 ; -// SetBorderColor sets the border color. -func (_adeg *CurvePolygon )SetBorderColor (color Color ){_adeg ._dbag .BorderColor =_gdfa (color )}; +// Context dimensions. Available width and height (on current page). +Width ,Height float64 ; -// SetBorder sets the cell's border style. -func (_fecb *TableCell )SetBorder (side CellBorderSide ,style CellBorderStyle ,width float64 ){if style ==CellBorderStyleSingle &&side ==CellBorderSideAll {_fecb ._cbbdb =CellBorderStyleSingle ;_fecb ._fceg =width ;_fecb ._fafdb =CellBorderStyleSingle ; -_fecb ._gegf =width ;_fecb ._fbcg =CellBorderStyleSingle ;_fecb ._bebbd =width ;_fecb ._deaff =CellBorderStyleSingle ;_fecb ._faeaf =width ;}else if style ==CellBorderStyleDouble &&side ==CellBorderSideAll {_fecb ._cbbdb =CellBorderStyleDouble ;_fecb ._fceg =width ; -_fecb ._fafdb =CellBorderStyleDouble ;_fecb ._gegf =width ;_fecb ._fbcg =CellBorderStyleDouble ;_fecb ._bebbd =width ;_fecb ._deaff =CellBorderStyleDouble ;_fecb ._faeaf =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideLeft {_fecb ._cbbdb =style ; -_fecb ._fceg =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideBottom {_fecb ._fafdb =style ;_fecb ._gegf =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideRight {_fecb ._fbcg =style ; -_fecb ._bebbd =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideTop {_fecb ._deaff =style ;_fecb ._faeaf =width ;};}; +// Page Margins. +Margins Margins ; -// Notes returns the notes section of the invoice as a title-content pair. -func (_acae *Invoice )Notes ()(string ,string ){return _acae ._ebcg [0],_acae ._ebcg [1]}; +// Absolute Page size, widths and height. +PageWidth float64 ;PageHeight float64 ; -// Scale scales the ellipse dimensions by the specified factors. -func (_ggdab *Ellipse )Scale (xFactor ,yFactor float64 ){_ggdab ._bgea =xFactor *_ggdab ._bgea ;_ggdab ._dceb =yFactor *_ggdab ._dceb ;}; +// Controls whether the components are stacked horizontally +Inline bool ;_dgce rune ;_bcbc []error ;}; -// SetEncoder sets the encoding/compression mechanism for the image. -func (_gcacg *Image )SetEncoder (encoder _ea .StreamEncoder ){_gcacg ._fbfd =encoder }; +// SetMargins sets the Block's left, right, top, bottom, margins. +func (_cg *Block )SetMargins (left ,right ,top ,bottom float64 ){_cg ._bc .Left =left ;_cg ._bc .Right =right ;_cg ._bc .Top =top ;_cg ._bc .Bottom =bottom ;}; -// AddLine appends a new line to the invoice line items table. -func (_faccc *Invoice )AddLine (values ...string )[]*InvoiceCell {_agac :=len (_faccc ._cgcg );var _febd []*InvoiceCell ;for _aeefge ,_gffc :=range values {_aaccd :=_faccc .newCell (_gffc ,_faccc ._cdab );if _aeefge < _agac {_aaccd .Alignment =_faccc ._cgcg [_aeefge ].Alignment ; -};_febd =append (_febd ,_aaccd );};_faccc ._cgec =append (_faccc ._cgec ,_febd );return _febd ;};var _gecc =map[string ]*templateTag {"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_gcee :_cagcb },"\u0074\u0065\u0078\u0074\u002d\u0063\u0068\u0075\u006e\u006b":&templateTag {_faaf :map[string ]struct{}{"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h":struct{}{}},_gcee :_bbed },"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_gcee :_decfe },"\u0074\u0061\u0062l\u0065":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_gcee :_gdadab },"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":&templateTag {_faaf :map[string ]struct{}{"\u0074\u0061\u0062l\u0065":struct{}{}},_gcee :_ddbgb },"\u006c\u0069\u006e\u0065":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_cbbafb },"\u0072e\u0063\u0074\u0061\u006e\u0067\u006ce":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_dggdf },"\u0065l\u006c\u0069\u0070\u0073\u0065":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_faaeb },"\u0069\u006d\u0061g\u0065":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_gcee :_gdaaa },"\u0063h\u0061\u0070\u0074\u0065\u0072":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_caaff },"\u0063h\u0061p\u0074\u0065\u0072\u002d\u0068\u0065\u0061\u0064\u0069\u006e\u0067":&templateTag {_faaf :map[string ]struct{}{"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_cabda },"\u0063\u0068\u0061r\u0074":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_fbdd },"\u0070\u0061\u0067\u0065\u002d\u0062\u0072\u0065\u0061\u006b":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_gcee :_gcgbc },"\u0062\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064":&templateTag {_faaf :map[string ]struct{}{"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{}},_gcee :_ebgcc },"\u006c\u0069\u0073\u0074":&templateTag {_faaf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_gcee :_cggbe },"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":&templateTag {_faaf :map[string ]struct{}{"\u006c\u0069\u0073\u0074":struct{}{}},_gcee :_dbdf },"l\u0069\u0073\u0074\u002d\u006d\u0061\u0072\u006b\u0065\u0072":&templateTag {_faaf :map[string ]struct{}{"\u006c\u0069\u0073\u0074":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_gcee :_bdced }}; +// SetBackgroundColor set background color of the shading area. +// +// By default the background color is set to white. +func (_acebb *RadialShading )SetBackgroundColor (backgroundColor Color ){_acebb ._fcacc .SetBackgroundColor (backgroundColor );}; +// MoveTo moves the drawing context to absolute coordinates (x, y). +func (_gbde *Creator )MoveTo (x ,y float64 ){_gbde ._eacd .X =x ;_gbde ._eacd .Y =y };type shading struct{_dedad Color ;_daff bool ;_fgdd []bool ;_ggcd []*ColorPoint ;}; -// GetMargins returns the Paragraph's margins: left, right, top, bottom. -func (_gedc *StyledParagraph )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _gedc ._faaba .Left ,_gedc ._faaba .Right ,_gedc ._faaba .Top ,_gedc ._faaba .Bottom ;}; +// AddPatternResource adds pattern dictionary inside the resources dictionary. +func (_debcf *RadialShading )AddPatternResource (block *Block )(_bfed _fe .PdfObjectName ,_gdfff error ){_cbce :=1;_eaee :=_fe .PdfObjectName ("\u0050"+_a .Itoa (_cbce ));for block ._ge .HasPatternByName (_eaee ){_cbce ++;_eaee =_fe .PdfObjectName ("\u0050"+_a .Itoa (_cbce )); +};if _ebbcd :=block ._ge .SetPatternByName (_eaee ,_debcf .ToPdfShadingPattern ().ToPdfObject ());_ebbcd !=nil {return "",_ebbcd ;};return _eaee ,nil ;}; -// TitleStyle returns the style properties used to render the invoice title. -func (_gabe *Invoice )TitleStyle ()TextStyle {return _gabe ._gbfbc }; +// SetBorderOpacity sets the border opacity. +func (_ggfce *PolyBezierCurve )SetBorderOpacity (opacity float64 ){_ggfce ._gfcgc =opacity };func (_bgeda *Rectangle )applyFitMode (_cegee float64 ){_cegee -=_bgeda ._ebfce .Left +_bgeda ._ebfce .Right +_bgeda ._decec ;switch _bgeda ._gaef {case FitModeFillWidth :_bgeda .ScaleToWidth (_cegee ); +};}; -// SetIncludeInTOC sets a flag to indicate whether or not to include in tOC. -func (_gac *Chapter )SetIncludeInTOC (includeInTOC bool ){_gac ._abee =includeInTOC }; +// AnchorPoint defines anchor point where the center position of the radial gradient would be calculated. +type AnchorPoint int ;func _egedc (_dcbfb *_ggc .PdfAnnotationLink )*_ggc .PdfAnnotationLink {if _dcbfb ==nil {return nil ;};_eacdeb :=_ggc .NewPdfAnnotationLink ();_eacdeb .BS =_dcbfb .BS ;_eacdeb .A =_dcbfb .A ;if _fccbc ,_bgee :=_dcbfb .GetAction (); +_bgee ==nil &&_fccbc !=nil {_eacdeb .SetAction (_fccbc );};if _eadbg ,_bbafe :=_dcbfb .Dest .(*_fe .PdfObjectArray );_bbafe {_eacdeb .Dest =_fe .MakeArray (_eadbg .Elements ()...);};return _eacdeb ;}; -// NewPolygon creates a new polygon. -func (_feb *Creator )NewPolygon (points [][]_ce .Point )*Polygon {return _feab (points )}; +// EnableRowWrap controls whether rows are wrapped across pages. +// NOTE: Currently, row wrapping is supported for rows using StyledParagraphs. +func (_agec *Table )EnableRowWrap (enable bool ){_agec ._eebgf =enable }; -// SetFillColor sets the fill color. -func (_cabfb *PolyBezierCurve )SetFillColor (color Color ){_cabfb ._bafc =color ;_cabfb ._cadfg .FillColor =_gdfa (color );}; +// SetHeight sets the height of the ellipse. +func (_fbdf *Ellipse )SetHeight (height float64 ){_fbdf ._dabc =height }; -// RotatedSize returns the width and height of the rotated block. -func (_gaef *Block )RotatedSize ()(float64 ,float64 ){_ ,_ ,_cbd ,_gbg :=_decad (_gaef ._bc ,_gaef ._dec ,_gaef ._eb );return _cbd ,_gbg ;}; +// SetBorder sets the cell's border style. +func (_cgfc *TableCell )SetBorder (side CellBorderSide ,style CellBorderStyle ,width float64 ){if style ==CellBorderStyleSingle &&side ==CellBorderSideAll {_cgfc ._ffdeb =CellBorderStyleSingle ;_cgfc ._egbd =width ;_cgfc ._cbafe =CellBorderStyleSingle ; +_cgfc ._egaeb =width ;_cgfc ._dfbfd =CellBorderStyleSingle ;_cgfc ._ddbdf =width ;_cgfc ._aaddc =CellBorderStyleSingle ;_cgfc ._caffa =width ;}else if style ==CellBorderStyleDouble &&side ==CellBorderSideAll {_cgfc ._ffdeb =CellBorderStyleDouble ;_cgfc ._egbd =width ; +_cgfc ._cbafe =CellBorderStyleDouble ;_cgfc ._egaeb =width ;_cgfc ._dfbfd =CellBorderStyleDouble ;_cgfc ._ddbdf =width ;_cgfc ._aaddc =CellBorderStyleDouble ;_cgfc ._caffa =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideLeft {_cgfc ._ffdeb =style ; +_cgfc ._egbd =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideBottom {_cgfc ._cbafe =style ;_cgfc ._egaeb =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideRight {_cgfc ._dfbfd =style ; +_cgfc ._ddbdf =width ;}else if (style ==CellBorderStyleSingle ||style ==CellBorderStyleDouble )&&side ==CellBorderSideTop {_cgfc ._aaddc =style ;_cgfc ._caffa =width ;};};func (_cfga *templateProcessor )parseTableCell (_fdbd *templateNode )(interface{},error ){if _fdbd ._fbcg ==nil {_cfga .nodeLogError (_fdbd ,"\u0054\u0061\u0062\u006c\u0065\u0020\u0063\u0065\u006c\u006c\u0020\u0070\u0061\u0072\u0065n\u0074 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); +return nil ,_gfaba ;};_agdbb ,_baaab :=_fdbd ._fbcg ._caacd .(*Table );if !_baaab {_cfga .nodeLogError (_fdbd ,"\u0054\u0061\u0062\u006c\u0065\u0020\u0063\u0065\u006c\u006c\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0028\u0025\u0054\u0029\u0020\u0069s\u0020\u006e\u006f\u0074\u0020a\u0020\u0074a\u0062\u006c\u0065\u002e",_fdbd ._fbcg ._caacd ); +return nil ,_gfaba ;};var _bcce ,_gfcag int64 ;for _ ,_ceace :=range _fdbd ._gbdee .Attr {_bfeab :=_ceace .Value ;switch _cbccf :=_ceace .Name .Local ;_cbccf {case "\u0063o\u006c\u0073\u0070\u0061\u006e":_bcce =_cfga .parseInt64Attr (_cbccf ,_bfeab );case "\u0072o\u0077\u0073\u0070\u0061\u006e":_gfcag =_cfga .parseInt64Attr (_cbccf ,_bfeab ); +};};if _bcce <=0{_bcce =1;};if _gfcag <=0{_gfcag =1;};_cdfb :=_agdbb .MultiCell (int (_gfcag ),int (_bcce ));for _ ,_beaac :=range _fdbd ._gbdee .Attr {_adae :=_beaac .Value ;switch _edabc :=_beaac .Name .Local ;_edabc {case "\u0069\u006e\u0064\u0065\u006e\u0074":_cdfb .SetIndent (_cfga .parseFloatAttr (_edabc ,_adae )); +case "\u0061\u006c\u0069g\u006e":_cdfb .SetHorizontalAlignment (_cfga .parseCellAlignmentAttr (_edabc ,_adae ));case "\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u002da\u006c\u0069\u0067\u006e":_cdfb .SetVerticalAlignment (_cfga .parseCellVerticalAlignmentAttr (_edabc ,_adae )); +case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0073\u0074\u0079\u006c\u0065":_cdfb .SetSideBorderStyle (CellBorderSideAll ,_cfga .parseCellBorderStyleAttr (_edabc ,_adae ));case "\u0062\u006fr\u0064\u0065\u0072-\u0073\u0074\u0079\u006c\u0065\u002d\u0074\u006f\u0070":_cdfb .SetSideBorderStyle (CellBorderSideTop ,_cfga .parseCellBorderStyleAttr (_edabc ,_adae )); +case "\u0062\u006f\u0072\u0064er\u002d\u0073\u0074\u0079\u006c\u0065\u002d\u0062\u006f\u0074\u0074\u006f\u006d":_cdfb .SetSideBorderStyle (CellBorderSideBottom ,_cfga .parseCellBorderStyleAttr (_edabc ,_adae ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0073\u0074\u0079\u006c\u0065-\u006c\u0065\u0066\u0074":_cdfb .SetSideBorderStyle (CellBorderSideLeft ,_cfga .parseCellBorderStyleAttr (_edabc ,_adae )); +case "\u0062o\u0072d\u0065\u0072\u002d\u0073\u0074y\u006c\u0065-\u0072\u0069\u0067\u0068\u0074":_cdfb .SetSideBorderStyle (CellBorderSideRight ,_cfga .parseCellBorderStyleAttr (_edabc ,_adae ));case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068":_cdfb .SetSideBorderWidth (CellBorderSideAll ,_cfga .parseFloatAttr (_edabc ,_adae )); +case "\u0062\u006fr\u0064\u0065\u0072-\u0077\u0069\u0064\u0074\u0068\u002d\u0074\u006f\u0070":_cdfb .SetSideBorderWidth (CellBorderSideTop ,_cfga .parseFloatAttr (_edabc ,_adae ));case "\u0062\u006f\u0072\u0064er\u002d\u0077\u0069\u0064\u0074\u0068\u002d\u0062\u006f\u0074\u0074\u006f\u006d":_cdfb .SetSideBorderWidth (CellBorderSideBottom ,_cfga .parseFloatAttr (_edabc ,_adae )); +case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068-\u006c\u0065\u0066\u0074":_cdfb .SetSideBorderWidth (CellBorderSideLeft ,_cfga .parseFloatAttr (_edabc ,_adae ));case "\u0062o\u0072d\u0065\u0072\u002d\u0077\u0069d\u0074\u0068-\u0072\u0069\u0067\u0068\u0074":_cdfb .SetSideBorderWidth (CellBorderSideRight ,_cfga .parseFloatAttr (_edabc ,_adae )); +case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_cdfb .SetSideBorderColor (CellBorderSideAll ,_cfga .parseColorAttr (_edabc ,_adae ));case "\u0062\u006fr\u0064\u0065\u0072-\u0063\u006f\u006c\u006f\u0072\u002d\u0074\u006f\u0070":_cdfb .SetSideBorderColor (CellBorderSideTop ,_cfga .parseColorAttr (_edabc ,_adae )); +case "\u0062\u006f\u0072\u0064er\u002d\u0063\u006f\u006c\u006f\u0072\u002d\u0062\u006f\u0074\u0074\u006f\u006d":_cdfb .SetSideBorderColor (CellBorderSideBottom ,_cfga .parseColorAttr (_edabc ,_adae ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072-\u006c\u0065\u0066\u0074":_cdfb .SetSideBorderColor (CellBorderSideLeft ,_cfga .parseColorAttr (_edabc ,_adae )); +case "\u0062o\u0072d\u0065\u0072\u002d\u0063\u006fl\u006f\u0072-\u0072\u0069\u0067\u0068\u0074":_cdfb .SetSideBorderColor (CellBorderSideRight ,_cfga .parseColorAttr (_edabc ,_adae ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u006c\u0069\u006e\u0065\u002ds\u0074\u0079\u006c\u0065":_cdfb .SetBorderLineStyle (_cfga .parseLineStyleAttr (_edabc ,_adae )); +case "\u0062\u0061c\u006b\u0067\u0072o\u0075\u006e\u0064\u002d\u0063\u006f\u006c\u006f\u0072":_cdfb .SetBackgroundColor (_cfga .parseColorAttr (_edabc ,_adae ));case "\u0063o\u006c\u0073\u0070\u0061\u006e","\u0072o\u0077\u0073\u0070\u0061\u006e":break ; +default:_cfga .nodeLogDebug (_fdbd ,"\u0055\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0063\u0065\u006c\u006c\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e",_edabc ); +};};return _cdfb ,nil ;};func _dbeag (_adege *_ggc .PdfFont )TextStyle {return TextStyle {Color :ColorRGBFrom8bit (0,0,238),Font :_adege ,FontSize :10,OutlineSize :1,HorizontalScaling :DefaultHorizontalScaling ,UnderlineStyle :TextDecorationLineStyle {Offset :1,Thickness :1}}; +};type templateTag struct{_bdcdf map[string ]struct{};_bcddf func (*templateProcessor ,*templateNode )(interface{},error );};func (_gac *Chapter )headingText ()string {_fdce :=_gac ._gbcb ;if _ddea :=_gac .headingNumber ();_ddea !=""{_fdce =_df .Sprintf ("\u0025\u0073\u0020%\u0073",_ddea ,_fdce ); +};return _fdce ;};func _cfgb (_bdef *templateProcessor ,_eaeac *templateNode )(interface{},error ){return _bdef .parseStyledParagraph (_eaeac );}; -// Height returns the height of the division, assuming all components are -// stacked on top of each other. -func (_afec *Division )Height ()float64 {var _gdcb float64 ;for _ ,_abdd :=range _afec ._cga {switch _cafg :=_abdd .(type ){case marginDrawable :_ ,_ ,_aaad ,_efbd :=_cafg .GetMargins ();_gdcb +=_cafg .Height ()+_aaad +_efbd ;default:_gdcb +=_cafg .Height (); -};};return _gdcb ;}; +// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated +// if the contents wrap over multiple pages. +func (_caac *Invoice )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_effd :=ctx ;_bcbea :=[]func (_cea DrawContext )([]*Block ,DrawContext ,error ){_caac .generateHeaderBlocks ,_caac .generateInformationBlocks ,_caac .generateLineBlocks ,_caac .generateTotalBlocks ,_caac .generateNoteBlocks }; +var _edfc []*Block ;for _ ,_bfdb :=range _bcbea {_gcbe ,_eefg ,_gdag :=_bfdb (ctx );if _gdag !=nil {return _edfc ,ctx ,_gdag ;};if len (_edfc )==0{_edfc =_gcbe ;}else if len (_gcbe )> 0{_edfc [len (_edfc )-1].mergeBlocks (_gcbe [0]);_edfc =append (_edfc ,_gcbe [1:]...); +};ctx =_eefg ;};if _caac ._edeee .IsRelative (){ctx .X =_effd .X ;};if _caac ._edeee .IsAbsolute (){return _edfc ,_effd ,nil ;};return _edfc ,ctx ,nil ;};func (_adc *Creator )getActivePage ()*_ggc .PdfPage {if _adc ._bcba ==nil {if len (_adc ._cec )==0{return nil ; +};return _adc ._cec [len (_adc ._cec )-1];};return _adc ._bcba ;};func (_ddagg *templateProcessor )parseAttrPropList (_eebd string )map[string ]string {_fdgd :=_dc .Fields (_eebd );if len (_fdgd )==0{return nil ;};_cbac :=map[string ]string {};for _ ,_bbaed :=range _fdgd {_geade :=_cccd .FindStringSubmatch (_bbaed ); +if len (_geade )< 3{continue ;};_dfegg ,_baba :=_dc .TrimSpace (_geade [1]),_geade [2];if _dfegg ==""{continue ;};_cbac [_dfegg ]=_baba ;};return _cbac ;}; -// GetCoords returns the (x1, y1), (x2, y2) points defining the Line. -func (_agaf *Line )GetCoords ()(float64 ,float64 ,float64 ,float64 ){return _agaf ._dfbf ,_agaf ._aeecg ,_agaf ._gagg ,_agaf ._cbaff ;}; +// SetTotal sets the total of the invoice. +func (_bgcd *Invoice )SetTotal (value string ){_bgcd ._ada [1].Value =value };func (_egef *templateProcessor )parseStyledParagraph (_ecaef *templateNode )(interface{},error ){_aadebf :=_egef .creator .NewStyledParagraph ();for _ ,_ggfd :=range _ecaef ._gbdee .Attr {_dgeec :=_ggfd .Value ; +switch _cgab :=_ggfd .Name .Local ;_cgab {case "\u0074\u0065\u0078\u0074\u002d\u0061\u006c\u0069\u0067\u006e":_aadebf .SetTextAlignment (_egef .parseTextAlignmentAttr (_cgab ,_dgeec ));case "\u0076\u0065\u0072\u0074ic\u0061\u006c\u002d\u0074\u0065\u0078\u0074\u002d\u0061\u006c\u0069\u0067\u006e":_aadebf .SetTextVerticalAlignment (_egef .parseTextVerticalAlignmentAttr (_cgab ,_dgeec )); +case "l\u0069\u006e\u0065\u002d\u0068\u0065\u0069\u0067\u0068\u0074":_aadebf .SetLineHeight (_egef .parseFloatAttr (_cgab ,_dgeec ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_ggag :=_egef .parseMarginAttr (_cgab ,_dgeec );_aadebf .SetMargins (_ggag .Left ,_ggag .Right ,_ggag .Top ,_ggag .Bottom ); +case "e\u006e\u0061\u0062\u006c\u0065\u002d\u0077\u0072\u0061\u0070":_aadebf .SetEnableWrap (_egef .parseBoolAttr (_cgab ,_dgeec ));case "\u0065\u006ea\u0062\u006c\u0065-\u0077\u006f\u0072\u0064\u002d\u0077\u0072\u0061\u0070":_aadebf .EnableWordWrap (_egef .parseBoolAttr (_cgab ,_dgeec )); +case "\u0074\u0065\u0078\u0074\u002d\u006f\u0076\u0065\u0072\u0066\u006c\u006f\u0077":_aadebf .SetTextOverflow (_egef .parseTextOverflowAttr (_cgab ,_dgeec ));case "\u0078":_aadebf .SetPos (_egef .parseFloatAttr (_cgab ,_dgeec ),_aadebf ._cfge );case "\u0079":_aadebf .SetPos (_aadebf ._gcfda ,_egef .parseFloatAttr (_cgab ,_dgeec )); +case "\u0061\u006e\u0067l\u0065":_aadebf .SetAngle (_egef .parseFloatAttr (_cgab ,_dgeec ));default:_egef .nodeLogDebug (_ecaef ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0073\u0074\u0079l\u0065\u0064\u0020\u0070\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0060\u0025\u0073`.\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_cgab ); +};};return _aadebf ,nil ;}; -// DrawTemplate renders the template provided through the specified reader, -// using the specified `data` and `options`. -// Creator templates are first executed as text/template *Template instances, -// so the specified `data` is inserted within the template. -// The second phase of processing is actually parsing the template, translating -// it into creator components and rendering them using the provided options. -// Both the `data` and `options` parameters can be nil. -func (_fadf *Creator )DrawTemplate (r _dfd .Reader ,data interface{},options *TemplateOptions )error {return _efccg (_fadf ,r ,data ,options ,_fadf );}; +// GeneratePageBlocks draws the composite curve polygon on a new block +// representing the page. Implements the Drawable interface. +func (_aadf *CurvePolygon )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_egca :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_agdf ,_fefd :=_egca .setOpacity (_aadf ._gfage ,_aadf ._fgcc );if _fefd !=nil {return nil ,ctx ,_fefd ; +};_dcae :=_aadf ._ecae ;_dcae .FillEnabled =_dcae .FillColor !=nil ;_dcae .BorderEnabled =_dcae .BorderColor !=nil &&_dcae .BorderWidth > 0;var (_beaa =ctx .PageHeight ;_aee =_dcae .Rings ;_cdca =make ([][]_fc .CubicBezierCurve ,0,len (_dcae .Rings )); +);_bbfa :=_ggc .PdfRectangle {};if len (_aee )> 0&&len (_aee [0])> 0{_beaaf :=_aee [0][0];_beaaf .P0 .Y =_beaa -_beaaf .P0 .Y ;_beaaf .P1 .Y =_beaa -_beaaf .P1 .Y ;_beaaf .P2 .Y =_beaa -_beaaf .P2 .Y ;_beaaf .P3 .Y =_beaa -_beaaf .P3 .Y ;_bbfa =_beaaf .GetBounds (); +};for _ ,_eadg :=range _aee {_cgcc :=make ([]_fc .CubicBezierCurve ,0,len (_eadg ));for _ ,_eaa :=range _eadg {_adg :=_eaa ;_adg .P0 .Y =_beaa -_adg .P0 .Y ;_adg .P1 .Y =_beaa -_adg .P1 .Y ;_adg .P2 .Y =_beaa -_adg .P2 .Y ;_adg .P3 .Y =_beaa -_adg .P3 .Y ; +_cgcc =append (_cgcc ,_adg );_egdd :=_adg .GetBounds ();_bbfa .Llx =_b .Min (_bbfa .Llx ,_egdd .Llx );_bbfa .Lly =_b .Min (_bbfa .Lly ,_egdd .Lly );_bbfa .Urx =_b .Max (_bbfa .Urx ,_egdd .Urx );_bbfa .Ury =_b .Max (_bbfa .Ury ,_egdd .Ury );};_cdca =append (_cdca ,_cgcc ); +};_dcae .Rings =_cdca ;defer func (){_dcae .Rings =_aee }();if _dcae .FillEnabled {_cbcd :=_aede (_egca ,_aadf ._ecae .FillColor ,_aadf ._fdge ,func ()Rectangle {return Rectangle {_cgedd :_bbfa .Llx ,_eeff :_bbfa .Lly ,_gfad :_bbfa .Width (),_fefg :_bbfa .Height ()}; +});if _cbcd !=nil {return nil ,ctx ,_cbcd ;};};_bcda ,_ ,_fefd :=_dcae .Draw (_agdf );if _fefd !=nil {return nil ,ctx ,_fefd ;};if _fefd =_egca .addContentsByString (string (_bcda ));_fefd !=nil {return nil ,ctx ,_fefd ;};return []*Block {_egca },ctx ,nil ; +};func _cafcfa (_aggf Color ,_fddaa float64 )*ColorPoint {return &ColorPoint {_afea :_aggf ,_dbcfd :_fddaa };}; -// LinearShading holds data for rendering a linear shading gradient. -type LinearShading struct{_dgbd *shading ;_defa *_fa .PdfRectangle ;_gfgaf float64 ;}; +// DrawFooter sets a function to draw a footer on created output pages. +func (_bfddc *Creator )DrawFooter (drawFooterFunc func (_ccfc *Block ,_ecgf FooterFunctionArgs )){_bfddc ._cgeab =drawFooterFunc ;}; -// Width returns the current page width. -func (_dbfe *Creator )Width ()float64 {return _dbfe ._ggfe };func _ggcb (_begc []byte )(*Image ,error ){_adae :=_ef .NewReader (_begc );_ddaed ,_deed :=_fa .ImageHandling .Read (_adae );if _deed !=nil {_eef .Log .Error ("\u0045\u0072\u0072or\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_deed ); -return nil ,_deed ;};return _aagg (_ddaed );}; +// SetWidth set the Image's document width to specified w. This does not change the raw image data, i.e. +// no actual scaling of data is performed. That is handled by the PDF viewer. +func (_efbbc *Image )SetWidth (w float64 ){_efbbc ._cagba =w };func _gecbe (_aeeb *templateProcessor ,_bfgc *templateNode )(interface{},error ){return _aeeb .parseDivision (_bfgc );};func _aebfg (_efede *Table ,_ccedf DrawContext )([]*Block ,DrawContext ,error ){var _agage []*Block ; +_cbcdg :=NewBlock (_ccedf .PageWidth ,_ccedf .PageHeight );_efede .updateRowHeights (_ccedf .Width -_efede ._gfbcc .Left -_efede ._gfbcc .Right );_fdfb :=_efede ._gfbcc .Top ;if _efede ._bbdf .IsRelative ()&&!_efede ._gbgc {_dggee :=_efede .Height ();if _dggee > _ccedf .Height -_efede ._gfbcc .Top &&_dggee <=_ccedf .PageHeight -_ccedf .Margins .Top -_ccedf .Margins .Bottom {_agage =[]*Block {NewBlock (_ccedf .PageWidth ,_ccedf .PageHeight -_ccedf .Y )}; +var _acae error ;if _ ,_ccedf ,_acae =_cbag ().GeneratePageBlocks (_ccedf );_acae !=nil {return nil ,_ccedf ,_acae ;};_fdfb =0;};};_dbbd :=_ccedf ;if _efede ._bbdf .IsAbsolute (){_ccedf .X =_efede ._fedd ;_ccedf .Y =_efede ._degda ;}else {_ccedf .X +=_efede ._gfbcc .Left ; +_ccedf .Y +=_fdfb ;_ccedf .Width -=_efede ._gfbcc .Left +_efede ._gfbcc .Right ;_ccedf .Height -=_fdfb ;};_egdcb :=_ccedf .Width ;_dada :=_ccedf .X ;_aeca :=_ccedf .Y ;_ceef :=_ccedf .Height ;_gdeg :=0;_agdff ,_gdbcaa :=-1,-1;if _efede ._dgfg {for _dcdbg ,_adgb :=range _efede ._cacca {if _adgb ._deded < _efede ._aggfe {continue ; +};if _adgb ._deded > _efede ._fecf {break ;};if _agdff < 0{_agdff =_dcdbg ;};_gdbcaa =_dcdbg ;};};if _ddgg :=_efede .wrapContent (_ccedf );_ddgg !=nil {return nil ,_ccedf ,_ddgg ;};_efede .updateRowHeights (_ccedf .Width -_efede ._gfbcc .Left -_efede ._gfbcc .Right ); +var (_egcag bool ;_geaec int ;_bgegd int ;_gbcde bool ;_cfcg int ;_edbd error ;);for _aacg :=0;_aacg < len (_efede ._cacca );_aacg ++{_dbgcc :=_efede ._cacca [_aacg ];if _agea ,_facce :=_efede .getLastCellFromCol (_dbgcc ._eafbd );_agea ==_aacg {if (_facce ._deded +_facce ._ffgdb -1)< _efede ._fgbfga {for _aceeg :=_dbgcc ._deded ; +_aceeg < _efede ._fgbfga ;_aceeg ++{_bgcg :=&TableCell {};_bgcg ._deded =_aceeg +1;_bgcg ._ffgdb =1;_bgcg ._eafbd =_dbgcc ._eafbd ;_efede ._cacca =append (_efede ._cacca ,_bgcg );};};};_gdcg :=_dbgcc .width (_efede ._abbbf ,_egdcb );_gceb :=float64 (0.0); +for _efbef :=0;_efbef < _dbgcc ._eafbd -1;_efbef ++{_gceb +=_efede ._abbbf [_efbef ]*_egdcb ;};_eege :=float64 (0.0);for _bgcdb :=_gdeg ;_bgcdb < _dbgcc ._deded -1;_bgcdb ++{_eege +=_efede ._begb [_bgcdb ];};_ccedf .Height =_ceef -_eege ;_cedfd :=float64 (0.0); +for _bcggeg :=0;_bcggeg < _dbgcc ._ffgdb ;_bcggeg ++{_cedfd +=_efede ._begb [_dbgcc ._deded +_bcggeg -1];};_cbeef :=_gbcde &&_dbgcc ._deded !=_cfcg ;_cfcg =_dbgcc ._deded ;if _cbeef ||_cedfd > _ccedf .Height {if _efede ._eebgf &&!_gbcde {_gbcde ,_edbd =_efede .wrapRow (_aacg ,_ccedf ,_egdcb ); +if _edbd !=nil {return nil ,_ccedf ,_edbd ;};if _gbcde {_aacg --;continue ;};};_agage =append (_agage ,_cbcdg );_cbcdg =NewBlock (_ccedf .PageWidth ,_ccedf .PageHeight );_dada =_ccedf .Margins .Left +_efede ._gfbcc .Left ;_aeca =_ccedf .Margins .Top ;_ccedf .Height =_ccedf .PageHeight -_ccedf .Margins .Top -_ccedf .Margins .Bottom ; +_ccedf .Page ++;_ceef =_ccedf .Height ;_gdeg =_dbgcc ._deded -1;_eege =0;_gbcde =false ;if _efede ._dgfg &&_agdff >=0{_geaec =_aacg ;_aacg =_agdff -1;_bgegd =_gdeg ;_gdeg =_efede ._aggfe -1;_egcag =true ;if _dbgcc ._ffgdb > (_efede ._fgbfga -_cfcg )||(_dbgcc ._ffgdb > 1&&_aacg < 0){_ca .Log .Debug ("\u0054a\u0062\u006ce\u0020\u0068\u0065a\u0064\u0065\u0072\u0020\u0072\u006f\u0077s\u0070\u0061\u006e\u0020\u0065\u0078c\u0065\u0065\u0064\u0073\u0020\u0061\u0076\u0061\u0069\u006c\u0061b\u006c\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u002e"); +_egcag =false ;_agdff ,_gdbcaa =-1,-1;};continue ;};if _cbeef {_aacg --;continue ;};};_ccedf .Width =_gdcg ;_ccedf .X =_dada +_gceb ;_ccedf .Y =_aeca +_eege ;if _cedfd > _ccedf .PageHeight -_ccedf .Margins .Top -_ccedf .Margins .Bottom {_cedfd =_ccedf .PageHeight -_ccedf .Margins .Top -_ccedf .Margins .Bottom ; +};_ccgfb :=_fbfe (_ccedf .X ,_ccedf .Y ,_gdcg ,_cedfd );if _dbgcc ._afbg !=nil {_ccgfb .SetFillColor (_dbgcc ._afbg );};_ccgfb .LineStyle =_dbgcc ._fcagf ;_ccgfb ._acba =_dbgcc ._ffdeb ;_ccgfb ._dabg =_dbgcc ._dfbfd ;_ccgfb ._deccc =_dbgcc ._aaddc ;_ccgfb ._cffe =_dbgcc ._cbafe ; +if _dbgcc ._egde !=nil {_ccgfb .SetColorLeft (_dbgcc ._egde );};if _dbgcc ._dagd !=nil {_ccgfb .SetColorBottom (_dbgcc ._dagd );};if _dbgcc ._aeec !=nil {_ccgfb .SetColorRight (_dbgcc ._aeec );};if _dbgcc ._afga !=nil {_ccgfb .SetColorTop (_dbgcc ._afga ); +};_ccgfb .SetWidthBottom (_dbgcc ._egaeb );_ccgfb .SetWidthLeft (_dbgcc ._egbd );_ccgfb .SetWidthRight (_dbgcc ._ddbdf );_ccgfb .SetWidthTop (_dbgcc ._caffa );_eecdd :=NewBlock (_cbcdg ._ecd ,_cbcdg ._gfe );_acecd :=_cbcdg .Draw (_ccgfb );if _acecd !=nil {_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_acecd ); +};if _dbgcc ._efbbe !=nil {_eeaa :=_dbgcc ._efbbe .Width ();_egbbd :=_dbgcc ._efbbe .Height ();_fdae :=0.0;switch _daedd :=_dbgcc ._efbbe .(type ){case *Paragraph :if _daedd ._bebg {_eeaa =_daedd .getMaxLineWidth ()/1000.0;};_eeaa +=_daedd ._fgcbf .Left +_daedd ._fgcbf .Right ; +_egbbd +=_daedd ._fgcbf .Top +_daedd ._fgcbf .Bottom ;case *StyledParagraph :if _daedd ._gfbb {_eeaa =_daedd .getMaxLineWidth ()/1000.0;};_feee ,_gcea ,_gdbgb :=_daedd .getLineMetrics (0);_dggeee ,_bedg :=_feee *_daedd ._babcf ,_gcea *_daedd ._babcf ;if _daedd ._edbcb ==TextVerticalAlignmentCenter {_fdae =_bedg -(_gcea +(_feee +_gdbgb -_gcea )/2+(_bedg -_gcea )/2); +};if len (_daedd ._aabba )==1{_egbbd =_dggeee ;}else {_egbbd =_egbbd -_bedg +_dggeee ;};_fdae +=_dggeee -_bedg ;switch _dbgcc ._fddca {case CellVerticalAlignmentTop :_fdae +=_dggeee *0.5;case CellVerticalAlignmentBottom :_fdae -=_dggeee *0.5;};_eeaa +=_daedd ._fbgbc .Left +_daedd ._fbgbc .Right ; +_egbbd +=_daedd ._fbgbc .Top +_daedd ._fbgbc .Bottom ;case *Table :_eeaa =_gdcg ;case *List :_eeaa =_gdcg ;case *Division :_eeaa =_gdcg ;case *Chart :_eeaa =_gdcg ;case *Line :_egbbd +=_daedd ._bccc .Top +_daedd ._bccc .Bottom ;_fdae -=_daedd .Height ()/2; +case *Image :_eeaa +=_daedd ._cbea .Left +_daedd ._cbea .Right ;_egbbd +=_daedd ._cbea .Top +_daedd ._cbea .Bottom ;};switch _dbgcc ._abad {case CellHorizontalAlignmentLeft :_ccedf .X +=_dbgcc ._bbgcg ;_ccedf .Width -=_dbgcc ._bbgcg ;case CellHorizontalAlignmentCenter :if _cebc :=_gdcg -_eeaa ; +_cebc > 0{_ccedf .X +=_cebc /2;_ccedf .Width -=_cebc /2;};case CellHorizontalAlignmentRight :if _gdcg > _eeaa {_ccedf .X =_ccedf .X +_gdcg -_eeaa -_dbgcc ._bbgcg ;_ccedf .Width -=_dbgcc ._bbgcg ;};};_cgced :=_ccedf .Y ;_bcgb :=_ccedf .Height ;_ccedf .Y +=_fdae ; +switch _dbgcc ._fddca {case CellVerticalAlignmentTop :case CellVerticalAlignmentMiddle :if _cfgfb :=_cedfd -_egbbd ;_cfgfb > 0{_ccedf .Y +=_cfgfb /2;_ccedf .Height -=_cfgfb /2;};case CellVerticalAlignmentBottom :if _cedfd > _egbbd {_ccedf .Y =_ccedf .Y +_cedfd -_egbbd ; +_ccedf .Height =_cedfd ;};};_egbbf :=_cbcdg .DrawWithContext (_dbgcc ._efbbe ,_ccedf );if _egbbf !=nil {if _fa .Is (_egbbf ,ErrContentNotFit )&&!_cbeef {_cbcdg =_eecdd ;_cbeef =true ;_aacg --;continue ;};_ca .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_egbbf ); +};_ccedf .Y =_cgced ;_ccedf .Height =_bcgb ;};_ccedf .Y +=_cedfd ;_ccedf .Height -=_cedfd ;if _egcag &&_aacg +1> _gdbcaa {_aeca +=_eege +_cedfd ;_ceef -=_cedfd +_eege ;_gdeg =_bgegd ;_aacg =_geaec -1;_egcag =false ;};};_agage =append (_agage ,_cbcdg ); +if _efede ._bbdf .IsAbsolute (){return _agage ,_dbbd ,nil ;};_ccedf .X =_dbbd .X ;_ccedf .Width =_dbbd .Width ;_ccedf .Y +=_efede ._gfbcc .Bottom ;_ccedf .Height -=_efede ._gfbcc .Bottom ;return _agage ,_ccedf ,nil ;};func (_aafce *Table )moveToNextAvailableCell ()int {_fggd :=(_aafce ._ggfb -1)%(_aafce ._aeaa )+1; +for {if _fggd -1>=len (_aafce ._degfe ){if _aafce ._degfe [0]==0{return _fggd ;};_fggd =1;}else if _aafce ._degfe [_fggd -1]==0{return _fggd ;};_aafce ._ggfb ++;_aafce ._degfe [_fggd -1]--;_fggd ++;};}; -// SetAddressHeadingStyle sets the style properties used to render the -// heading of the invoice address sections. -func (_adgb *Invoice )SetAddressHeadingStyle (style TextStyle ){_adgb ._cecc =style }; +// GeneratePageBlocks draws the composite Bezier curve on a new block +// representing the page. Implements the Drawable interface. +func (_bgbcc *PolyBezierCurve )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_cbca :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_gcbef ,_ddge :=_cbca .setOpacity (_bgbcc ._bcdgc ,_bgbcc ._gfcgc );if _ddge !=nil {return nil ,ctx ,_ddge ; +};_ecgb :=_bgbcc ._ffbb ;_ecgb .FillEnabled =_ecgb .FillColor !=nil ;var (_gdde =ctx .PageHeight ;_dege =_ecgb .Curves ;_dgff =make ([]_fc .CubicBezierCurve ,0,len (_ecgb .Curves )););_fgbfc :=_ggc .PdfRectangle {};for _cecg :=range _ecgb .Curves {_facdg :=_dege [_cecg ]; +_facdg .P0 .Y =_gdde -_facdg .P0 .Y ;_facdg .P1 .Y =_gdde -_facdg .P1 .Y ;_facdg .P2 .Y =_gdde -_facdg .P2 .Y ;_facdg .P3 .Y =_gdde -_facdg .P3 .Y ;_dgff =append (_dgff ,_facdg );_eegdf :=_facdg .GetBounds ();if _cecg ==0{_fgbfc =_eegdf ;}else {_fgbfc .Llx =_b .Min (_fgbfc .Llx ,_eegdf .Llx ); +_fgbfc .Lly =_b .Min (_fgbfc .Lly ,_eegdf .Lly );_fgbfc .Urx =_b .Max (_fgbfc .Urx ,_eegdf .Urx );_fgbfc .Ury =_b .Max (_fgbfc .Ury ,_eegdf .Ury );};};_ecgb .Curves =_dgff ;defer func (){_ecgb .Curves =_dege }();if _ecgb .FillEnabled {_addb :=_aede (_cbca ,_bgbcc ._ffbb .FillColor ,_bgbcc ._bbaec ,func ()Rectangle {return Rectangle {_cgedd :_fgbfc .Llx ,_eeff :_fgbfc .Lly ,_gfad :_fgbfc .Width (),_fefg :_fgbfc .Height ()}; +});if _addb !=nil {return nil ,ctx ,_addb ;};};_bcfad ,_ ,_ddge :=_ecgb .Draw (_gcbef );if _ddge !=nil {return nil ,ctx ,_ddge ;};if _ddge =_cbca .addContentsByString (string (_bcfad ));_ddge !=nil {return nil ,ctx ,_ddge ;};return []*Block {_cbca },ctx ,nil ; +}; -// SetPos sets the position of the graphic svg to the specified coordinates. -// This method sets the graphic svg to use absolute positioning. -func (_gafc *GraphicSVG )SetPos (x ,y float64 ){_gafc ._gacf =PositionAbsolute ;_gafc ._gfgc =x ;_gafc ._dffe =y ;}; +// MoveRight moves the drawing context right by relative displacement dx (negative goes left). +func (_bgd *Creator )MoveRight (dx float64 ){_bgd ._eacd .X +=dx }; -// Number returns the invoice number description and value cells. -// The returned values can be used to customize the styles of the cells. -func (_gegbe *Invoice )Number ()(*InvoiceCell ,*InvoiceCell ){return _gegbe ._cgga [0],_gegbe ._cgga [1]};func (_dfce *List )ctxHeight (_gecd float64 )float64 {_gecd -=_dfce ._dcdc ;var _cbbd float64 ;for _ ,_adbb :=range _dfce ._fbeaf {_cbbd +=_adbb .ctxHeight (_gecd ); -};return _cbbd ;}; +// FillColor returns the fill color of the rectangle. +func (_bfde *Rectangle )FillColor ()Color {return _bfde ._bgca }; -// SetRowPosition sets cell row position. -func (_dgdfd *TableCell )SetRowPosition (row int ){_dgdfd ._cceef =row }; +// AddTotalLine adds a new line in the invoice totals table. +func (_bgaf *Invoice )AddTotalLine (desc ,value string )(*InvoiceCell ,*InvoiceCell ){_efbbf :=&InvoiceCell {_bgaf ._ddde ,desc };_caea :=&InvoiceCell {_bgaf ._ddde ,value };_bgaf ._edb =append (_bgaf ._edb ,[2]*InvoiceCell {_efbbf ,_caea });return _efbbf ,_caea ; +};func (_dadf *Division )split (_adcbb DrawContext )(_eceg ,_bbad *Division ){var (_bcfbe float64 ;_cggd ,_bfc []VectorDrawable ;);_deaf :=_adcbb .Width -_dadf ._debb .Left -_dadf ._debb .Right -_dadf ._agda .Left -_dadf ._agda .Right ;for _edca ,_ddcc :=range _dadf ._bfdf {_bcfbe +=_cefg (_ddcc ,_deaf ); +if _bcfbe < _adcbb .Height {_cggd =append (_cggd ,_ddcc );}else {_bfc =_dadf ._bfdf [_edca :];break ;};};if len (_cggd )> 0{_eceg =_ffcc ();*_eceg =*_dadf ;_eceg ._bfdf =_cggd ;if _dadf ._fbgb !=nil {_eceg ._fbgb =&Background {};*_eceg ._fbgb =*_dadf ._fbgb ; +};};if len (_bfc )> 0{_bbad =_ffcc ();*_bbad =*_dadf ;_bbad ._bfdf =_bfc ;if _dadf ._fbgb !=nil {_bbad ._fbgb =&Background {};*_bbad ._fbgb =*_dadf ._fbgb ;};};return _eceg ,_bbad ;}; -// Background contains properties related to the background of a component. -type Background struct{FillColor Color ;BorderColor Color ;BorderSize float64 ;BorderRadiusTopLeft float64 ;BorderRadiusTopRight float64 ;BorderRadiusBottomLeft float64 ;BorderRadiusBottomRight float64 ;}; +// MultiColCell makes a new cell with the specified column span and inserts it +// into the table at the current position. +func (_gcabg *Table )MultiColCell (colspan int )*TableCell {return _gcabg .MultiCell (1,colspan )}; -// BorderColor returns the border color of the rectangle. -func (_dcfae *Rectangle )BorderColor ()Color {return _dcfae ._bada }; +// SetFillOpacity sets the fill opacity. +func (_cbdf *CurvePolygon )SetFillOpacity (opacity float64 ){_cbdf ._gfage =opacity }; -// GeneratePageBlocks draws the composite Bezier curve on a new block -// representing the page. Implements the Drawable interface. -func (_gaffa *PolyBezierCurve )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_bbaae :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_deda ,_ddgb :=_bbaae .setOpacity (_gaffa ._egff ,_gaffa ._dagfe );if _ddgb !=nil {return nil ,ctx ,_ddgb ; -};_beeg :=_gaffa ._cadfg ;_beeg .FillEnabled =_beeg .FillColor !=nil ;var (_fcbe =ctx .PageHeight ;_fcdd =_beeg .Curves ;_gfec =make ([]_ce .CubicBezierCurve ,0,len (_beeg .Curves )););_gdada :=_fa .PdfRectangle {};for _abbd :=range _beeg .Curves {_dfefc :=_fcdd [_abbd ]; -_dfefc .P0 .Y =_fcbe -_dfefc .P0 .Y ;_dfefc .P1 .Y =_fcbe -_dfefc .P1 .Y ;_dfefc .P2 .Y =_fcbe -_dfefc .P2 .Y ;_dfefc .P3 .Y =_fcbe -_dfefc .P3 .Y ;_gfec =append (_gfec ,_dfefc );_adeac :=_dfefc .GetBounds ();if _abbd ==0{_gdada =_adeac ;}else {_gdada .Llx =_ec .Min (_gdada .Llx ,_adeac .Llx ); -_gdada .Lly =_ec .Min (_gdada .Lly ,_adeac .Lly );_gdada .Urx =_ec .Max (_gdada .Urx ,_adeac .Urx );_gdada .Ury =_ec .Max (_gdada .Ury ,_adeac .Ury );};};_beeg .Curves =_gfec ;defer func (){_beeg .Curves =_fcdd }();if _beeg .FillEnabled {_gbggg :=_ddcd (_bbaae ,_gaffa ._cadfg .FillColor ,_gaffa ._bafc ,func ()Rectangle {return Rectangle {_dfbc :_gdada .Llx ,_gbfgg :_gdada .Lly ,_faaa :_gdada .Width (),_baag :_gdada .Height ()}; -});if _gbggg !=nil {return nil ,ctx ,_gbggg ;};};_bfdbg ,_ ,_ddgb :=_beeg .Draw (_deda );if _ddgb !=nil {return nil ,ctx ,_ddgb ;};if _ddgb =_bbaae .addContentsByString (string (_bfdbg ));_ddgb !=nil {return nil ,ctx ,_ddgb ;};return []*Block {_bbaae },ctx ,nil ; -};type templateNode struct{_ccfeb interface{};_facfb _f .StartElement ;_bgba *templateNode ;_edcb int ;_gdbed int ;_fcagb int64 ;};func (_aef *Chapter )headingNumber ()string {var _deg string ;if _aef ._faea {if _aef ._fgb !=0{_deg =_a .Itoa (_aef ._fgb )+"\u002e"; -};if _aef ._eda !=nil {_acdg :=_aef ._eda .headingNumber ();if _acdg !=""{_deg =_acdg +_deg ;};};};return _deg ;}; +// InsertColumn inserts a column in the line items table at the specified index. +func (_ddga *Invoice )InsertColumn (index uint ,description string )*InvoiceCell {_gcfc :=uint (len (_ddga ._eag ));if index > _gcfc {index =_gcfc ;};_gbbb :=_ddga .NewColumn (description );_ddga ._eag =append (_ddga ._eag [:index ],append ([]*InvoiceCell {_gbbb },_ddga ._eag [index :]...)...); +return _gbbb ;};func (_dcbgd *TextChunk )clone ()*TextChunk {_fcfc :=*_dcbgd ;_fcfc ._dfcb =_bgbee (_dcbgd ._dfcb );return &_fcfc ;};func (_gdga *StyledParagraph )getTextHeight ()float64 {var _adfc float64 ;for _ ,_gaeg :=range _gdga ._cdffa {_bebga :=_gaeg .Style .FontSize *_gdga ._babcf ; +if _bebga > _adfc {_adfc =_bebga ;};};return _adfc ;};func (_egfbc *templateProcessor )parseFloatAttr (_cdffd ,_afcbd string )float64 {_ca .Log .Debug ("\u0050\u0061rs\u0069\u006e\u0067 \u0066\u006c\u006f\u0061t a\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020(`\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_cdffd ,_afcbd ); +_adgc ,_ :=_a .ParseFloat (_afcbd ,64);return _adgc ;};func (_bcega *Table )resetColumnWidths (){_bcega ._abbbf =[]float64 {};_ddged :=float64 (1.0)/float64 (_bcega ._aeaa );for _fdab :=0;_fdab < _bcega ._aeaa ;_fdab ++{_bcega ._abbbf =append (_bcega ._abbbf ,_ddged ); +};};func _fbfe (_gae ,_eff ,_eddf ,_bdbb float64 )*border {_acdb :=&border {};_acdb ._agf =_gae ;_acdb ._gea =_eff ;_acdb ._dcf =_eddf ;_acdb ._aebc =_bdbb ;_acdb ._feg =ColorBlack ;_acdb ._agg =ColorBlack ;_acdb ._fcg =ColorBlack ;_acdb ._add =ColorBlack ; +_acdb ._cdgaa =0;_acdb ._gaf =0;_acdb ._gcd =0;_acdb ._ebb =0;_acdb .LineStyle =_fc .LineStyleSolid ;return _acdb ;}; -// ScaleToWidth scales the ellipse to the specified width. The height of -// the ellipse is scaled so that the aspect ratio is maintained. -func (_gfea *Ellipse )ScaleToWidth (w float64 ){_caa :=_gfea ._dceb /_gfea ._bgea ;_gfea ._bgea =w ;_gfea ._dceb =w *_caa ;};func _defdc (_cfeg TextStyle )*StyledParagraph {return &StyledParagraph {_cfbcg :[]*TextChunk {},_aegbg :_cfeg ,_ggee :_dbgda (_cfeg .Font ),_gbcb :1.0,_dgbde :TextAlignmentLeft ,_dgba :true ,_gadge :true ,_ebgbe :false ,_cefe :0,_bagd :1,_agddd :1,_defc :PositionRelative }; -};func (_afee *List )markerWidth ()float64 {var _bbbc float64 ;for _ ,_ebbg :=range _afee ._fbeaf {_abfg :=_defdc (_afee ._dbca );_abfg .SetEnableWrap (false );_abfg .SetTextAlignment (TextAlignmentRight );_abfg .Append (_ebbg ._dbea .Text ).Style =_ebbg ._dbea .Style ; -_cgfd :=_abfg .getTextWidth ()/1000.0;if _bbbc < _cgfd {_bbbc =_cgfd ;};};return _bbbc ;}; +// Width returns the cell's width based on the input draw context. +func (_efcb *TableCell )Width (ctx DrawContext )float64 {_accc :=float64 (0.0);for _gfde :=0;_gfde < _efcb ._abfda ;_gfde ++{_accc +=_efcb ._ddggg ._abbbf [_efcb ._eafbd +_gfde -1];};_afdg :=ctx .Width *_accc ;return _afdg ;}; -// Fit fits the chunk into the specified bounding box, cropping off the -// remainder in a new chunk, if it exceeds the specified dimensions. -// NOTE: The method assumes a line height of 1.0. In order to account for other -// line height values, the passed in height must be divided by the line height: -// height = height / lineHeight -func (_gaada *TextChunk )Fit (width ,height float64 )(*TextChunk ,error ){_egfab ,_aegdg :=_gaada .Wrap (width );if _aegdg !=nil {return nil ,_aegdg ;};_ffec :=int (height /_gaada .Style .FontSize );if _ffec >=len (_egfab ){return nil ,nil ;};_bccb :="\u000a"; -_gaada .Text =_dc .Replace (_dc .Join (_egfab [:_ffec ],"\u0020"),_bccb +"\u0020",_bccb ,-1);_bffbc :=_dc .Replace (_dc .Join (_egfab [_ffec :],"\u0020"),_bccb +"\u0020",_bccb ,-1);return NewTextChunk (_bffbc ,_gaada .Style ),nil ;}; +// SetForms adds an Acroform to a PDF file. Sets the specified form for writing. +func (_bddd *Creator )SetForms (form *_ggc .PdfAcroForm )error {_bddd ._ddc =form ;return nil }; -// ColorCMYKFromArithmetic creates a Color from arithmetic color values (0-1). -// Example: -// green := ColorCMYKFromArithmetic(1.0, 0.0, 1.0, 0.0) -func ColorCMYKFromArithmetic (c ,m ,y ,k float64 )Color {return cmykColor {_cgge :_ec .Max (_ec .Min (c ,1.0),0.0),_fbcb :_ec .Max (_ec .Min (m ,1.0),0.0),_abad :_ec .Max (_ec .Min (y ,1.0),0.0),_gdad :_ec .Max (_ec .Min (k ,1.0),0.0)};};func _dgaf (_eabfa float64 ,_cedc float64 )float64 {return _ec .Round (_eabfa /_cedc )*_cedc }; +// GeneratePageBlocks draws the curve onto page blocks. +func (_egfb *Curve )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_dcbg :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_baab :=_bdb .NewContentCreator ();_baab .Add_q ().Add_w (_egfb ._bceaa ).SetStrokingColor (_dbac (_egfb ._ccad )).Add_m (_egfb ._ebbc ,ctx .PageHeight -_egfb ._gbae ).Add_v (_egfb ._cfac ,ctx .PageHeight -_egfb ._cfdb ,_egfb ._bceb ,ctx .PageHeight -_egfb ._bfea ).Add_S ().Add_Q (); +_becc :=_dcbg .addContentsByString (_baab .String ());if _becc !=nil {return nil ,ctx ,_becc ;};return []*Block {_dcbg },ctx ,nil ;}; +// FrontpageFunctionArgs holds the input arguments to a front page drawing function. +// It is designed as a struct, so additional parameters can be added in the future with backwards +// compatibility. +type FrontpageFunctionArgs struct{PageNum int ;TotalPages int ;}; -// InfoLines returns all the rows in the invoice information table as -// description-value cell pairs. -func (_ceeaf *Invoice )InfoLines ()[][2]*InvoiceCell {_eacf :=[][2]*InvoiceCell {_ceeaf ._cgga ,_ceeaf ._bacd ,_ceeaf ._gdcc };return append (_eacf ,_ceeaf ._dgec ...);}; +// NewPageBreak create a new page break. +func (_gebg *Creator )NewPageBreak ()*PageBreak {return _cbag ()}; -// NewInvoice returns an instance of an empty invoice. -func (_bcbaf *Creator )NewInvoice ()*Invoice {_ggfaa :=_bcbaf .NewTextStyle ();_ggfaa .Font =_bcbaf ._gaba ;return _ceef (_bcbaf .NewTextStyle (),_ggfaa );}; +// Height returns the height of the chart. +func (_dggg *Chart )Height ()float64 {return float64 (_dggg ._ebbf .Height ())};func _bga (_gab _gg .ChartRenderable )*Chart {return &Chart {_ebbf :_gab ,_fbc :PositionRelative ,_gcff :Margins {Top :10,Bottom :10}};}; -// ColorRGBFromHex converts color hex code to rgb color for using with creator. -// NOTE: If there is a problem interpreting the string, then will use black color and log a debug message. -// Example hex code: #ffffff -> (1,1,1) white. -func ColorRGBFromHex (hexStr string )Color {_eged :=rgbColor {};if (len (hexStr )!=4&&len (hexStr )!=7)||hexStr [0]!='#'{_eef .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",hexStr );return _eged ; -};var _fdb ,_bbbf ,_ecfa int ;if len (hexStr )==4{var _aea ,_aegg ,_fbag int ;_afg ,_gbgc :=_g .Sscanf (hexStr ,"\u0023\u0025\u0031\u0078\u0025\u0031\u0078\u0025\u0031\u0078",&_aea ,&_aegg ,&_fbag );if _gbgc !=nil {_eef .Log .Debug ("\u0049\u006e\u0076a\u006c\u0069\u0064\u0020h\u0065\u0078\u0020\u0063\u006f\u0064\u0065:\u0020\u0025\u0073\u002c\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",hexStr ,_gbgc ); -return _eged ;};if _afg !=3{_eef .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",hexStr );return _eged ;};_fdb =_aea *16+_aea ;_bbbf =_aegg *16+_aegg ;_ecfa =_fbag *16+_fbag ;}else {_bfc ,_babf :=_g .Sscanf (hexStr ,"\u0023\u0025\u0032\u0078\u0025\u0032\u0078\u0025\u0032\u0078",&_fdb ,&_bbbf ,&_ecfa ); -if _babf !=nil {_eef .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",hexStr );return _eged ;};if _bfc !=3{_eef .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0068\u0065\u0078\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0073,\u0020\u006e\u0020\u0021\u003d\u0020\u0033 \u0028\u0025\u0064\u0029",hexStr ,_bfc ); -return _eged ;};};_ebca :=float64 (_fdb )/255.0;_ffga :=float64 (_bbbf )/255.0;_cfe :=float64 (_ecfa )/255.0;_eged ._abec =_ebca ;_eged ._eafb =_ffga ;_eged ._baa =_cfe ;return _eged ;}; +// InvoiceAddress contains contact information that can be displayed +// in an invoice. It is used for the seller and buyer information in the +// invoice template. +type InvoiceAddress struct{Heading string ;Name string ;Street string ;Street2 string ;Zip string ;City string ;State string ;Country string ;Phone string ;Email string ; -// GeneratePageBlocks generates the table page blocks. Multiple blocks are -// generated if the contents wrap over multiple pages. -// Implements the Drawable interface. -func (_faae *Table )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_dbbf :=_faae ;if _faae ._dbac {_dbbf =_faae .clone ();};return _fggg (_dbbf ,ctx );};func (_acbe *FilledCurve )draw (_bebbb *Block ,_dabac string )([]byte ,*_fa .PdfRectangle ,error ){_dbab :=_ce .NewCubicBezierPath (); -for _ ,_ebgg :=range _acbe ._edeb {_dbab =_dbab .AppendCurve (_ebgg );};creator :=_bd .NewContentCreator ();creator .Add_q ();if _acbe .FillEnabled &&_acbe ._dagdb !=nil {_dagf :=_gdfa (_acbe ._dagdb );_abeg :=_ddcd (_bebbb ,_dagf ,_acbe ._dagdb ,func ()Rectangle {_ffdc :=_ce .NewCubicBezierPath (); -for _ ,_baef :=range _acbe ._edeb {_ffdc =_ffdc .AppendCurve (_baef );};_gff :=_ffdc .GetBoundingBox ();if _acbe .BorderEnabled {_gff .Height +=_acbe .BorderWidth ;_gff .Width +=_acbe .BorderWidth ;_gff .X -=_acbe .BorderWidth /2;_gff .Y -=_acbe .BorderWidth /2; -};return Rectangle {_dfbc :_gff .X ,_gbfgg :_gff .Y ,_faaa :_gff .Width ,_baag :_gff .Height };});if _abeg !=nil {return nil ,nil ,_abeg ;};creator .SetNonStrokingColor (_dagf );};if _acbe .BorderEnabled {if _acbe ._baed !=nil {creator .SetStrokingColor (_gdfa (_acbe ._baed )); -};creator .Add_w (_acbe .BorderWidth );};if len (_dabac )> 1{creator .Add_gs (_ea .PdfObjectName (_dabac ));};_ce .DrawBezierPathWithCreator (_dbab ,creator );creator .Add_h ();if _acbe .FillEnabled &&_acbe .BorderEnabled {creator .Add_B ();}else if _acbe .FillEnabled {creator .Add_f (); -}else if _acbe .BorderEnabled {creator .Add_S ();};creator .Add_Q ();_fag :=_dbab .GetBoundingBox ();if _acbe .BorderEnabled {_fag .Height +=_acbe .BorderWidth ;_fag .Width +=_acbe .BorderWidth ;_fag .X -=_acbe .BorderWidth /2;_fag .Y -=_acbe .BorderWidth /2; -};_eaeg :=&_fa .PdfRectangle {};_eaeg .Llx =_fag .X ;_eaeg .Lly =_fag .Y ;_eaeg .Urx =_fag .X +_fag .Width ;_eaeg .Ury =_fag .Y +_fag .Height ;return creator .Bytes (),_eaeg ,nil ;};func _cgege ()*listItem {return &listItem {}};func _cecg ()*Division {return &Division {_gfbg :true }}; +// Separator defines the separator between different address components, +// such as the city, state and zip code. It defaults to ", " when the +// field is an empty string. +Separator string ; +// If enabled, the Phone field label (`Phone: `) is not displayed. +HidePhoneLabel bool ; -// SetText sets the text content of the Paragraph. -func (_dgbf *Paragraph )SetText (text string ){_dgbf ._babfa =text }; +// If enabled, the Email field label (`Email: `) is not displayed. +HideEmailLabel bool ;};func (_acga *templateProcessor )parseDivision (_abae *templateNode )(interface{},error ){_cfdfac :=_acga .creator .NewDivision ();for _ ,_agada :=range _abae ._gbdee .Attr {_bgaa :=_agada .Value ;switch _bdab :=_agada .Name .Local ; +_bdab {case "\u0065\u006ea\u0062\u006c\u0065-\u0070\u0061\u0067\u0065\u002d\u0077\u0072\u0061\u0070":_cfdfac .EnablePageWrap (_acga .parseBoolAttr (_bdab ,_bgaa ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_ebde :=_acga .parseMarginAttr (_bdab ,_bgaa ); +_cfdfac .SetMargins (_ebde .Left ,_ebde .Right ,_ebde .Top ,_ebde .Bottom );case "\u0070a\u0064\u0064\u0069\u006e\u0067":_dgage :=_acga .parseMarginAttr (_bdab ,_bgaa );_cfdfac .SetPadding (_dgage .Left ,_dgage .Right ,_dgage .Top ,_dgage .Bottom );default:_acga .nodeLogDebug (_abae ,"U\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0064\u0069\u0076\u0069\u0073\u0069on\u0020\u0061\u0074\u0074r\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025s`\u002e\u0020S\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_bdab ); +};};return _cfdfac ,nil ;}; -// Scale block by specified factors in the x and y directions. -func (_fg *Block )Scale (sx ,sy float64 ){_fgf :=_bd .NewContentCreator ().Scale (sx ,sy ).Operations ();*_fg ._ffc =append (*_fgf ,*_fg ._ffc ...);_fg ._ffc .WrapIfNeeded ();_fg ._bc *=sx ;_fg ._dec *=sy ;};func _decad (_abcaa ,_befad ,_fgcbf float64 )(_cbce ,_feeaf ,_edfb ,_eacdc float64 ){if _fgcbf ==0{return 0,0,_abcaa ,_befad ; -};_bgcfb :=_ce .Path {Points :[]_ce .Point {_ce .NewPoint (0,0).Rotate (_fgcbf ),_ce .NewPoint (_abcaa ,0).Rotate (_fgcbf ),_ce .NewPoint (0,_befad ).Rotate (_fgcbf ),_ce .NewPoint (_abcaa ,_befad ).Rotate (_fgcbf )}}.GetBoundingBox ();return _bgcfb .X ,_bgcfb .Y ,_bgcfb .Width ,_bgcfb .Height ; -};const (CellBorderSideLeft CellBorderSide =iota ;CellBorderSideRight ;CellBorderSideTop ;CellBorderSideBottom ;CellBorderSideAll ;); +// SetFont sets the Paragraph's font. +func (_dce *Paragraph )SetFont (font *_ggc .PdfFont ){_dce ._fggb =font };func (_ddbgf *templateProcessor )parseTextVerticalAlignmentAttr (_bcagf ,_gacdd string )TextVerticalAlignment {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0074\u0065\u0078\u0074\u0020\u0076\u0065r\u0074\u0069\u0063\u0061\u006c\u0020\u0061\u006c\u0069\u0067\u006e\u006d\u0065n\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a (\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_bcagf ,_gacdd ); +_bdbcbc :=map[string ]TextVerticalAlignment {"\u0062\u0061\u0073\u0065\u006c\u0069\u006e\u0065":TextVerticalAlignmentBaseline ,"\u0063\u0065\u006e\u0074\u0065\u0072":TextVerticalAlignmentCenter }[_gacdd ];return _bdbcbc ;}; -// MultiRowCell makes a new cell with the specified row span and inserts it -// into the table at the current position. -func (_geafb *Table )MultiRowCell (rowspan int )*TableCell {return _geafb .MultiCell (rowspan ,1)}; +// SkipRows skips over a specified number of rows in the table. +func (_baec *Table )SkipRows (num int ){_cagd :=num *_baec ._aeaa -1;if _cagd < 0{_ca .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0073\u006b\u0069\u0070\u0020b\u0061\u0063\u006b\u0020\u0074\u006f\u0020\u0070\u0072\u0065\u0076\u0069\u006f\u0075\u0073\u0020\u0063\u0065\u006c\u006c\u0073"); +return ;};for _bcbee :=0;_bcbee < _cagd ;_bcbee ++{_baec .NewCell ();};};func _gcdfe (_cdeag ,_dfbe ,_faggb float64 )(_beacg ,_begfe ,_aeefe ,_baaca float64 ){if _faggb ==0{return 0,0,_cdeag ,_dfbe ;};_bgfbc :=_fc .Path {Points :[]_fc .Point {_fc .NewPoint (0,0).Rotate (_faggb ),_fc .NewPoint (_cdeag ,0).Rotate (_faggb ),_fc .NewPoint (0,_dfbe ).Rotate (_faggb ),_fc .NewPoint (_cdeag ,_dfbe ).Rotate (_faggb )}}.GetBoundingBox (); +return _bgfbc .X ,_bgfbc .Y ,_bgfbc .Width ,_bgfbc .Height ;}; -// AddAnnotation adds an annotation to the current block. -// The annotation will be added to the page the block will be rendered on. -func (_eaf *Block )AddAnnotation (annotation *_fa .PdfAnnotation ){for _ ,_ge :=range _eaf ._cc {if _ge ==annotation {return ;};};_eaf ._cc =append (_eaf ._cc ,annotation );}; +// SetBackground sets the background properties of the component. +func (_fbae *Division )SetBackground (background *Background ){_fbae ._fbgb =background }; -// PageFinalize sets a function to be called for each page before finalization -// (i.e. the last stage of page processing before they get written out). -// The callback function allows final touch-ups for each page, and it -// provides information that might not be known at other stages of designing -// the document (e.g. the total number of pages). Unlike the header/footer -// functions, which are limited to the top/bottom margins of the page, the -// finalize function can be used draw components anywhere on the current page. -func (_dbbd *Creator )PageFinalize (pageFinalizeFunc func (_effc PageFinalizeFunctionArgs )error ){_dbbd ._geab =pageFinalizeFunc ;}; +// SkipCells skips over a specified number of cells in the table. +func (_ebgbb *Table )SkipCells (num int ){if num < 0{_ca .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0073\u006b\u0069\u0070\u0020b\u0061\u0063\u006b\u0020\u0074\u006f\u0020\u0070\u0072\u0065\u0076\u0069\u006f\u0075\u0073\u0020\u0063\u0065\u006c\u006c\u0073"); +return ;};for _ceec :=0;_ceec < num ;_ceec ++{_ebgbb .NewCell ();};}; -// Date returns the invoice date description and value cells. -// The returned values can be used to customize the styles of the cells. -func (_cdcad *Invoice )Date ()(*InvoiceCell ,*InvoiceCell ){return _cdcad ._bacd [0],_cdcad ._bacd [1]}; +// NewCurvePolygon creates a new curve polygon. +func (_gegf *Creator )NewCurvePolygon (rings [][]_fc .CubicBezierCurve )*CurvePolygon {return _cagg (rings );}; -// SetInline sets the inline mode of the division. -func (_fcge *Division )SetInline (inline bool ){_fcge ._dacf =inline }; +// SetMaxLines sets the maximum number of lines before the paragraph +// text is truncated. +func (_dfge *Paragraph )SetMaxLines (maxLines int ){_dfge ._bebd =maxLines ;_dfge .wrapText ()}; -// Wrap wraps the text of the chunk into lines based on its style and the -// specified width. -func (_gfbfg *TextChunk )Wrap (width float64 )([]string ,error ){if int (width )<=0{return []string {_gfbfg .Text },nil ;};var _aeee []string ;var _gaeaa []rune ;var _fdcef float64 ;var _fcgbg []float64 ;_dacbac :=_gfbfg .Style ;_feda :=_bfed (_gfbfg .Text ); -for _ ,_fabd :=range _gfbfg .Text {if _fabd =='\u000A'{_dafg :=_ecdag (string (_gaeaa ),_feda );_aeee =append (_aeee ,_dc .TrimRightFunc (_dafg ,_efe .IsSpace )+string (_fabd ));_gaeaa =nil ;_fdcef =0;_fcgbg =nil ;continue ;};_eacb :=_fabd ==' ';_agdcb ,_bbccd :=_dacbac .Font .GetRuneMetrics (_fabd ); -if !_bbccd {_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006det\u0072i\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064!\u0020\u0072\u0075\u006e\u0065\u003d\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0020\u0066o\u006e\u0074\u003d\u0025\u0073\u0020\u0025\u0023\u0071",_fabd ,_fabd ,_dacbac .Font .BaseFont (),_dacbac .Font .Subtype ()); -_eef .Log .Trace ("\u0046o\u006e\u0074\u003a\u0020\u0025\u0023v",_dacbac .Font );_eef .Log .Trace ("\u0045\u006e\u0063o\u0064\u0065\u0072\u003a\u0020\u0025\u0023\u0076",_dacbac .Font .Encoder ());return nil ,_e .New ("\u0067\u006c\u0079\u0070\u0068\u0020\u0063\u0068\u0061\u0072\u0020m\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006d\u0069\u0073s\u0069\u006e\u0067"); -};_addcd :=_dacbac .FontSize *_agdcb .Wx ;_bdgeg :=_addcd ;if !_eacb {_bdgeg =_addcd +_dacbac .CharSpacing *1000.0;};if _fdcef +_addcd > width *1000.0{_fgbe :=-1;if !_eacb {for _eefaa :=len (_gaeaa )-1;_eefaa >=0;_eefaa --{if _gaeaa [_eefaa ]==' '{_fgbe =_eefaa ; -break ;};};};_affgfd :=string (_gaeaa );if _fgbe > 0{_affgfd =string (_gaeaa [0:_fgbe +1]);_gaeaa =append (_gaeaa [_fgbe +1:],_fabd );_fcgbg =append (_fcgbg [_fgbe +1:],_bdgeg );_fdcef =0;for _ ,_eeagd :=range _fcgbg {_fdcef +=_eeagd ;};}else {if _eacb {_gaeaa =[]rune {}; -_fcgbg =[]float64 {};_fdcef =0;}else {_gaeaa =[]rune {_fabd };_fcgbg =[]float64 {_bdgeg };_fdcef =_bdgeg ;};};_affgfd =_ecdag (_affgfd ,_feda );_aeee =append (_aeee ,_dc .TrimRightFunc (_affgfd ,_efe .IsSpace ));}else {_gaeaa =append (_gaeaa ,_fabd );_fdcef +=_bdgeg ; -_fcgbg =append (_fcgbg ,_bdgeg );};};if len (_gaeaa )> 0{_gafa :=string (_gaeaa );_gafa =_ecdag (_gafa ,_feda );_aeee =append (_aeee ,_gafa );};return _aeee ,nil ;}; +// Division is a container component which can wrap across multiple pages. +// Currently supported drawable components: +// - *Paragraph +// - *StyledParagraph +// - *Image +// - *Chart +// +// The component stacking behavior is vertical, where the drawables are drawn +// on top of each other. +type Division struct{_bfdf []VectorDrawable ;_badg Positioning ;_debb Margins ;_agda Margins ;_aeadf bool ;_ggdbd bool ;_fbgb *Background ;};func (_ab *Block )translate (_cge ,_decc float64 ){_fcb :=_bdb .NewContentCreator ().Translate (_cge ,-_decc ).Operations (); +*_ab ._cad =append (*_fcb ,*_ab ._cad ...);_ab ._cad .WrapIfNeeded ();};func _bgbgb (_faeda *Creator ,_afdeg string ,_egbef []byte ,_fagag *TemplateOptions ,_fabg componentRenderer )*templateProcessor {if _fagag ==nil {_fagag =&TemplateOptions {};};_fagag .init (); +if _fabg ==nil {_fabg =_faeda ;};return &templateProcessor {creator :_faeda ,_gcgb :_egbef ,_affcb :_fagag ,_gcfaeb :_fabg ,_eccabe :_afdeg };}; -// NewSubchapter creates a new child chapter with the specified title. -func (_bea *Chapter )NewSubchapter (title string )*Chapter {_ced :=_ggbe (_bea ._abd ._gcedf );_ced .FontSize =14;_bea ._cdcc ++;_cagc :=_bdbc (_bea ,_bea ._gdaf ,_bea ._eaa ,title ,_bea ._cdcc ,_ced );_bea .Add (_cagc );return _cagc ;}; +// CellVerticalAlignment defines the table cell's vertical alignment. +type CellVerticalAlignment int ;func _dced (_caffg *Creator ,_ffga _ae .Reader ,_fgbff interface{},_aegga *TemplateOptions ,_cecgd componentRenderer )error {if _caffg ==nil {_ca .Log .Error ("\u0043\u0072\u0065a\u0074\u006f\u0072\u0020i\u006e\u0073\u0074\u0061\u006e\u0063\u0065 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); +return _ddead ;};_gadcad :="";if _ddbb ,_efccf :=_ffga .(*_ed .File );_efccf {_gadcad =_ddbb .Name ();};_eegc :=_g .NewBuffer (nil );if _ ,_gceed :=_ae .Copy (_eegc ,_ffga );_gceed !=nil {return _gceed ;};_fggee :=_dg .FuncMap {"\u0064\u0069\u0063\u0074":_agbgc }; +if _aegga !=nil &&_aegga .HelperFuncMap !=nil {for _eaae ,_fefc :=range _aegga .HelperFuncMap {if _ ,_dfea :=_fggee [_eaae ];_dfea {_ca .Log .Debug ("\u0043\u0061\u006e\u006e\u006f\u0074 \u006f\u0076\u0065r\u0072\u0069\u0064e\u0020\u0062\u0075\u0069\u006c\u0074\u002d\u0069\u006e\u0020`\u0025\u0073\u0060\u0020\u0068el\u0070\u0065\u0072\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_eaae ); +continue ;};_fggee [_eaae ]=_fefc ;};};_gdccb ,_eeec :=_dg .New ("").Funcs (_fggee ).Parse (_eegc .String ());if _eeec !=nil {return _eeec ;};if _aegga !=nil &&_aegga .SubtemplateMap !=nil {for _acbb ,_aabge :=range _aegga .SubtemplateMap {if _acbb ==""{_ca .Log .Debug ("\u0053\u0075\u0062\u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006d\u0070\u0074\u0079\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067.\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065 \u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e"); +continue ;};if _aabge ==nil {_ca .Log .Debug ("S\u0075\u0062t\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0063\u0061\u006e\u006eo\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079 \u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e"); +continue ;};_egaeg :=_g .NewBuffer (nil );if _ ,_fadf :=_ae .Copy (_egaeg ,_aabge );_fadf !=nil {return _fadf ;};if _ ,_dfdf :=_gdccb .New (_acbb ).Parse (_egaeg .String ());_dfdf !=nil {return _dfdf ;};};};_eegc .Reset ();if _agca :=_gdccb .Execute (_eegc ,_fgbff ); +_agca !=nil {return _agca ;};return _bgbgb (_caffg ,_gadcad ,_eegc .Bytes (),_aegga ,_cecgd ).run ();}; -// InvoiceAddress contains contact information that can be displayed -// in an invoice. It is used for the seller and buyer information in the -// invoice template. -type InvoiceAddress struct{Heading string ;Name string ;Street string ;Street2 string ;Zip string ;City string ;State string ;Country string ;Phone string ;Email string ; +// Creator is a wrapper around functionality for creating PDF reports and/or adding new +// content onto imported PDF pages, etc. +type Creator struct{ -// Separator defines the separator between different address components, -// such as the city, state and zip code. It defaults to ", " when the -// field is an empty string. -Separator string ; +// Errors keeps error messages that should not interrupt pdf processing and to be checked later. +Errors []error ; + +// UnsupportedCharacterReplacement is character that will be used to replace unsupported glyph. +// The value will be passed to drawing context. +UnsupportedCharacterReplacement rune ;_cec []*_ggc .PdfPage ;_gfab map[*_ggc .PdfPage ]*Block ;_afbc map[*_ggc .PdfPage ]*pageTransformations ;_bcba *_ggc .PdfPage ;_gccce PageSize ;_eacd DrawContext ;_gcgd Margins ;_abf ,_ffc float64 ;_caffe int ;_fbd func (_fab FrontpageFunctionArgs ); +_gfgf func (_facf *TOC )error ;_fdcb func (_dgbb *Block ,_faf HeaderFunctionArgs );_cgeab func (_bec *Block ,_cecb FooterFunctionArgs );_dcc func (_gcfa PageFinalizeFunctionArgs )error ;_bggc func (_cae *_ggc .PdfWriter )error ;_acead bool ; + +// Controls whether a table of contents will be generated. +AddTOC bool ; + +// CustomTOC specifies if the TOC is rendered by the user. +// When the `CustomTOC` field is set to `true`, the default TOC component is not rendered. +// Instead the TOC is drawn by the user, in the callback provided to +// the `Creator.CreateTableOfContents` method. +// If `CustomTOC` is set to `false`, the callback provided to +// `Creator.CreateTableOfContents` customizes the style of the automatically generated TOC component. +CustomTOC bool ;_effa *TOC ; + +// Controls whether outlines will be generated. +AddOutlines bool ;_gaec *_ggc .Outline ;_beeb *_ggc .PdfOutlineTreeNode ;_ddc *_ggc .PdfAcroForm ;_dbgc _fe .PdfObject ;_eecf _ggc .Optimizer ;_feff []*_ggc .PdfFont ;_gade *_ggc .PdfFont ;_eacc *_ggc .PdfFont ;}; + +// SetAngle sets the rotation angle of the text. +func (_egdb *Paragraph )SetAngle (angle float64 ){_egdb ._dgeg =angle }; + +// SetDashPattern sets the dash pattern of the line. +// NOTE: the dash pattern is taken into account only if the style of the +// line is set to dashed. +func (_babb *Line )SetDashPattern (dashArray []int64 ,dashPhase int64 ){_babb ._fgbfg =dashArray ;_babb ._bgfed =dashPhase ;}; -// If enabled, the Phone field label (`Phone: `) is not displayed. -HidePhoneLabel bool ; +// SetPos sets the absolute position. Changes object positioning to absolute. +func (_bbbd *Image )SetPos (x ,y float64 ){_bbbd ._ebfa =PositionAbsolute ;_bbbd ._fce =x ;_bbbd ._gdd =y ;}; -// If enabled, the Email field label (`Email: `) is not displayed. -HideEmailLabel bool ;};func _gdfa (_gfbf Color )_fa .PdfColor {if _gfbf ==nil {_gfbf =ColorBlack ;};switch _bcba :=_gfbf .(type ){case cmykColor :return _fa .NewPdfColorDeviceCMYK (_bcba ._cgge ,_bcba ._fbcb ,_bcba ._abad ,_bcba ._gdad );case *LinearShading :return _fa .NewPdfColorPatternType2 (); -case *RadialShading :return _fa .NewPdfColorPatternType3 ();};return _fa .NewPdfColorDeviceRGB (_gfbf .ToRGB ());};func (_gefdb *Invoice )drawAddress (_affc *InvoiceAddress )[]*StyledParagraph {var _egedb []*StyledParagraph ;if _affc .Heading !=""{_bgeg :=_defdc (_gefdb ._cecc ); -_bgeg .SetMargins (0,0,0,7);_bgeg .Append (_affc .Heading );_egedb =append (_egedb ,_bgeg );};_ccee :=_defdc (_gefdb ._gbgdd );_ccee .SetLineHeight (1.2);_gbcd :=_affc .Separator ;if _gbcd ==""{_gbcd =_gefdb ._edec ;};_gaag :=_affc .City ;if _affc .State !=""{if _gaag !=""{_gaag +=_gbcd ; -};_gaag +=_affc .State ;};if _affc .Zip !=""{if _gaag !=""{_gaag +=_gbcd ;};_gaag +=_affc .Zip ;};if _affc .Name !=""{_ccee .Append (_affc .Name +"\u000a");};if _affc .Street !=""{_ccee .Append (_affc .Street +"\u000a");};if _affc .Street2 !=""{_ccee .Append (_affc .Street2 +"\u000a"); -};if _gaag !=""{_ccee .Append (_gaag +"\u000a");};if _affc .Country !=""{_ccee .Append (_affc .Country +"\u000a");};_gcdd :=_defdc (_gefdb ._gbgdd );_gcdd .SetLineHeight (1.2);_gcdd .SetMargins (0,0,7,0);if _affc .Phone !=""{_gcdd .Append (_affc .fmtLine (_affc .Phone ,"\u0050h\u006f\u006e\u0065\u003a\u0020",_affc .HidePhoneLabel )); -};if _affc .Email !=""{_gcdd .Append (_affc .fmtLine (_affc .Email ,"\u0045m\u0061\u0069\u006c\u003a\u0020",_affc .HideEmailLabel ));};_egedb =append (_egedb ,_ccee ,_gcdd );return _egedb ;}; +// SetColorLeft sets border color for left. +func (_gbbe *border )SetColorLeft (col Color ){_gbbe ._fcg =col }; -// ScaleToWidth scale Image to a specified width w, maintaining the aspect ratio. -func (_bcgg *Image )ScaleToWidth (w float64 ){_bfff :=_bcgg ._ffab /_bcgg ._gfef ;_bcgg ._gfef =w ;_bcgg ._ffab =w *_bfff ;}; +// FillColor returns the fill color of the ellipse. +func (_badce *Ellipse )FillColor ()Color {return _badce ._dbadf }; -// GeneratePageBlocks draws the filled curve on page blocks. -func (_dcdab *FilledCurve )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_cfcb :=NewBlock (ctx .PageWidth ,ctx .PageHeight );_effcc ,_ ,_daff :=_dcdab .draw (_cfcb ,"");if _daff !=nil {return nil ,ctx ,_daff ;};_daff =_cfcb .addContentsByString (string (_effcc )); -if _daff !=nil {return nil ,ctx ,_daff ;};return []*Block {_cfcb },ctx ,nil ;}; +// SetFillOpacity sets the fill opacity. +func (_gfec *Polygon )SetFillOpacity (opacity float64 ){_gfec ._befea =opacity }; -// Height returns the height of the list. -func (_eabe *List )Height ()float64 {var _bgbf float64 ;for _ ,_becf :=range _eabe ._fbeaf {_bgbf +=_becf .ctxHeight (_eabe .Width ());};return _bgbf ;}; +// CellBorderSide defines the table cell's border side. +type CellBorderSide int ; -// SetBorderOpacity sets the border opacity of the rectangle. -func (_abggg *Rectangle )SetBorderOpacity (opacity float64 ){_abggg ._gacec =opacity };func _fbdd (_gegba *templateProcessor ,_efdff *templateNode )(interface{},error ){return _gegba .parseChart (_efdff );};func (_fbggc *templateProcessor )parseFloatAttr (_fgced ,_cgcfd string )float64 {_eef .Log .Debug ("\u0050\u0061rs\u0069\u006e\u0067 \u0066\u006c\u006f\u0061t a\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020(`\u0025\u0073\u0060\u002c\u0020\u0025\u0073)\u002e",_fgced ,_cgcfd ); -_fcbf ,_ :=_a .ParseFloat (_cgcfd ,64);return _fcbf ;};func (_bdecb *templateProcessor )addNodeText (_aebfbc *templateNode ,_dbggf string )error {_bgab :=_aebfbc ._ccfeb ;if _bgab ==nil {return nil ;};switch _acag :=_bgab .(type ){case *TextChunk :_acag .Text =_dbggf ; -case *Paragraph :switch _aebfbc ._facfb .Name .Local {case "\u0063h\u0061p\u0074\u0065\u0072\u002d\u0068\u0065\u0061\u0064\u0069\u006e\u0067":if _aebfbc ._bgba !=nil {if _cagae ,_acec :=_aebfbc ._bgba ._ccfeb .(*Chapter );_acec {_cagae ._ebfe =_dbggf ; -_acag .SetText (_cagae .headingText ());};};default:_acag .SetText (_dbggf );};};return nil ;}; +// Height returns the total height of all rows. +func (_aedg *Table )Height ()float64 {_gbef :=float64 (0.0);for _ ,_fceb :=range _aedg ._begb {_gbef +=_fceb ;};return _gbef ;}; -// Add adds a new Drawable to the chapter. -// Currently supported Drawables: +// SetExtends specifies whether to extend the shading beyond the starting and ending points. +// +// Text extends is set to `[]bool{false, false}` by default. +func (_bgfb *shading )SetExtends (start bool ,end bool ){_bgfb ._fgdd =[]bool {start ,end }}; + +// PageSize represents the page size as a 2 element array representing the width and height in PDF document units (points). +type PageSize [2]float64 ;func _aede (_aceca *Block ,_gecb _ggc .PdfColor ,_gcad Color ,_egacb func ()Rectangle )error {switch _efbf :=_gecb .(type ){case *_ggc .PdfColorPatternType2 :_dead ,_dffa :=_gcad .(*LinearShading );if !_dffa {return _df .Errorf ("\u0043\u006f\u006c\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u004c\u0069\u006e\u0065\u0061\u0072\u0053\u0068\u0061d\u0069\u006e\u0067"); +};_gafe :=_egacb ();_dead .SetBoundingBox (_gafe ._cgedd ,_gafe ._eeff ,_gafe ._gfad ,_gafe ._fefg );_egfg ,_bbca :=_dead .AddPatternResource (_aceca );if _bbca !=nil {return _df .Errorf ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0074\u006f \u0072\u0065\u0073\u006f\u0075r\u0063\u0065s\u003a\u0020\u0025\u0076",_bbca ); +};_efbf .PatternName =_egfg ;case *_ggc .PdfColorPatternType3 :_gedcf ,_eaddc :=_gcad .(*RadialShading );if !_eaddc {return _df .Errorf ("\u0043\u006f\u006c\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0052\u0061\u0064\u0069\u0061\u006c\u0053\u0068\u0061d\u0069\u006e\u0067"); +};_adbca :=_egacb ();_gedcf .SetBoundingBox (_adbca ._cgedd ,_adbca ._eeff ,_adbca ._gfad ,_adbca ._fefg );_fbbd ,_egff :=_gedcf .AddPatternResource (_aceca );if _egff !=nil {return _df .Errorf ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0074\u006f \u0072\u0065\u0073\u006f\u0075r\u0063\u0065s\u003a\u0020\u0025\u0076",_egff ); +};_efbf .PatternName =_fbbd ;};return nil ;}; + +// Add adds a VectorDrawable to the Division container. +// Currently supported VectorDrawables: // - *Paragraph // - *StyledParagraph // - *Image // - *Chart -// - *Table -// - *Division -// - *List // - *Rectangle // - *Ellipse // - *Line -// - *Block, -// - *PageBreak -// - *Chapter -func (_dacba *Chapter )Add (d Drawable )error {if Drawable (_dacba )==d {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0043\u0061\u006e\u006e\u006f\u0074 \u0061\u0064\u0064\u0020\u0069\u0074\u0073\u0065\u006c\u0066");return _e .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"); -};switch _cdca :=d .(type ){case *Paragraph ,*StyledParagraph ,*Image ,*Chart ,*Table ,*Division ,*List ,*Rectangle ,*Ellipse ,*Line ,*Block ,*PageBreak ,*Chapter :_dacba ._cdde =append (_dacba ._cdde ,d );case containerDrawable :_ffa ,_cggc :=_cdca .ContainerComponent (_dacba ); -if _cggc !=nil {return _cggc ;};_dacba ._cdde =append (_dacba ._cdde ,_ffa );default:_eef .Log .Debug ("\u0055n\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u003a\u0020\u0025\u0054",d );return _e .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); -};return nil ;}; +// - *Table +// - *Division +// - *List +func (_bdga *Division )Add (d VectorDrawable )error {switch _ffed :=d .(type ){case *Paragraph ,*StyledParagraph ,*Image ,*Chart ,*Rectangle ,*Ellipse ,*Line ,*Table ,*Division ,*List :case containerDrawable :_gdfd ,_fbcd :=_ffed .ContainerComponent (_bdga ); +if _fbcd !=nil {return _fbcd ;};_ccagb ,_bdee :=_gdfd .(VectorDrawable );if !_bdee {return _df .Errorf ("\u0072\u0065\u0073\u0075\u006ct\u0020\u006f\u0066\u0020\u0043\u006f\u006et\u0061\u0069\u006e\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u002d\u0020\u0025\u0054\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0056\u0065c\u0074\u006f\u0072\u0044\u0072\u0061\u0077\u0061\u0062\u006c\u0065\u0020i\u006e\u0074\u0065\u0072\u0066\u0061c\u0065",_gdfd ); +};d =_ccagb ;default:return _fa .New ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0079\u0070e\u0020i\u006e\u0020\u0044\u0069\u0076\u0069\u0073i\u006f\u006e");};_bdga ._bfdf =append (_bdga ._bfdf ,d );return nil ;}; -// GetHorizontalAlignment returns the horizontal alignment of the image. -func (_eabb *Image )GetHorizontalAlignment ()HorizontalAlignment {return _eabb ._gege };var (PageSizeA3 =PageSize {297*PPMM ,420*PPMM };PageSizeA4 =PageSize {210*PPMM ,297*PPMM };PageSizeA5 =PageSize {148*PPMM ,210*PPMM };PageSizeLetter =PageSize {8.5*PPI ,11*PPI }; -PageSizeLegal =PageSize {8.5*PPI ,14*PPI };); +// SetWidthRight sets border width for right. +func (_dbe *border )SetWidthRight (bw float64 ){_dbe ._ebb =bw };func (_aecgg *Line )computeCoords (_gefc DrawContext )(_dgceb ,_gecde ,_aff ,_dgbdf float64 ){_dgceb =_gefc .X ;_aff =_dgceb +_aecgg ._eddg -_aecgg ._daed ;_bdcdb :=_aecgg ._adf ;if _aecgg ._daed ==_aecgg ._eddg {_bdcdb /=2; +};if _aecgg ._gfaa < _aecgg ._eabb {_gecde =_gefc .PageHeight -_gefc .Y -_bdcdb ;_dgbdf =_gecde -_aecgg ._eabb +_aecgg ._gfaa ;}else {_dgbdf =_gefc .PageHeight -_gefc .Y -_bdcdb ;_gecde =_dgbdf -_aecgg ._gfaa +_aecgg ._eabb ;};switch _aecgg ._afad {case FitModeFillWidth :_aff =_dgceb +_gefc .Width ; +};return _dgceb ,_gecde ,_aff ,_dgbdf ;};func (_ffcd *templateProcessor )processGradientColorPair (_dcffe []string )(_ffgef []Color ,_bccb []float64 ){for _ ,_afba :=range _dcffe {var (_ebca =_dc .Fields (_afba );_gbfed =len (_ebca ););if _gbfed ==0{continue ; +};_deadfa :="";if _gbfed > 1{_deadfa =_dc .TrimSpace (_ebca [1]);};_faea :=-1.0;if _dc .HasSuffix (_deadfa ,"\u0025"){_gdfge ,_cebgf :=_a .ParseFloat (_deadfa [:len (_deadfa )-1],64);if _cebgf !=nil {_ca .Log .Debug ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072s\u0069\u006e\u0067\u0020\u0070\u006f\u0069n\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_cebgf ); +};_faea =_gdfge /100.0;};_geceg :=_ffcd .parseColor (_dc .TrimSpace (_ebca [0]));if _geceg !=nil {_ffgef =append (_ffgef ,_geceg );_bccb =append (_bccb ,_faea );};};if len (_ffgef )!=len (_bccb ){_ca .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u006c\u0069\u006e\u0065\u0061\u0072\u0020\u0067\u0072\u0061\u0064i\u0065\u006e\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0064\u0065\u0066\u0069\u006e\u0069\u0074\u0069\u006f\u006e\u0021"); +return nil ,nil ;};_eebac :=-1;_babge :=0.0;for _aecgb ,_dgbac :=range _bccb {if _dgbac ==-1.0{if _aecgb ==0{_dgbac =0.0;_bccb [_aecgb ]=0.0;continue ;};_eebac ++;if _aecgb < len (_bccb )-1{continue ;}else {_dgbac =1.0;_bccb [_aecgb ]=1.0;};};_adgbc :=_eebac +1; +for _abgg :=_aecgb -_eebac ;_abgg < _aecgb ;_abgg ++{_bccb [_abgg ]=_babge +(float64 (_abgg )*(_dgbac -_babge )/float64 (_adgbc ));};_babge =_dgbac ;_eebac =-1;};return _ffgef ,_bccb ;}; -// NewDivision returns a new Division container component. -func (_fbcee *Creator )NewDivision ()*Division {return _cecg ()};func _feaaf (_faaea *_fa .PdfAnnotationLink )*_fa .PdfAnnotationLink {if _faaea ==nil {return nil ;};_cedfa :=_fa .NewPdfAnnotationLink ();_cedfa .BS =_faaea .BS ;_cedfa .A =_faaea .A ;if _fdgfb ,_fggea :=_faaea .GetAction (); -_fggea ==nil &&_fdgfb !=nil {_cedfa .SetAction (_fdgfb );};if _adbdg ,_cecb :=_faaea .Dest .(*_ea .PdfObjectArray );_cecb {_cedfa .Dest =_ea .MakeArray (_adbdg .Elements ()...);};return _cedfa ;}; +// Horizontal returns total horizontal (left + right) margin. +func (_gege *Margins )Horizontal ()float64 {return _gege .Left +_gege .Right }; -// SkipRows skips over a specified number of rows in the table. -func (_fgda *Table )SkipRows (num int ){_dbgc :=num *_fgda ._beege -1;if _dbgc < 0{_eef .Log .Debug ("\u0054\u0061\u0062\u006c\u0065:\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0073\u006b\u0069\u0070\u0020b\u0061\u0063\u006b\u0020\u0074\u006f\u0020\u0070\u0072\u0065\u0076\u0069\u006f\u0075\u0073\u0020\u0063\u0065\u006c\u006c\u0073"); -return ;};for _aeaee :=0;_aeaee < _dbgc ;_aeaee ++{_fgda .NewCell ();};}; +// SetAnnotation sets a annotation on a TextChunk. +func (_aafee *TextChunk )SetAnnotation (annotation *_ggc .PdfAnnotation ){_aafee ._dfcb =annotation }; -// GetMargins returns the Chapter's margin: left, right, top, bottom. -func (_beg *Chapter )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _beg ._dee .Left ,_beg ._dee .Right ,_beg ._dee .Top ,_beg ._dee .Bottom ;}; +// SetAntiAlias enables anti alias config. +// +// Anti alias is disabled by default. +func (_egbe *shading )SetAntiAlias (enable bool ){_egbe ._daff =enable }; -// Margins returns the margins of the list: left, right, top, bottom. -func (_bbdc *List )Margins ()(float64 ,float64 ,float64 ,float64 ){return _bbdc ._eead .Left ,_bbdc ._eead .Right ,_bbdc ._eead .Top ,_bbdc ._eead .Bottom ;}; +// Height returns the height of the Paragraph. The height is calculated based on the input text and +// how it is wrapped within the container. Does not include Margins. +func (_cgfd *Paragraph )Height ()float64 {_cgfd .wrapText ();return float64 (len (_cgfd ._cbcf ))*_cgfd ._dacae *_cgfd ._fcbfa ;};const (CellHorizontalAlignmentLeft CellHorizontalAlignment =iota ;CellHorizontalAlignmentCenter ;CellHorizontalAlignmentRight ; +); -// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated -// if the contents wrap over multiple pages. -func (_efagf *TOCLine )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_dgdcbc :=ctx ;_acecd ,ctx ,_gaffe :=_efagf ._bagf .GeneratePageBlocks (ctx );if _gaffe !=nil {return _acecd ,ctx ,_gaffe ;};if _efagf ._ecfb .IsRelative (){ctx .X =_dgdcbc .X ; -};if _efagf ._ecfb .IsAbsolute (){return _acecd ,_dgdcbc ,nil ;};return _acecd ,ctx ,nil ;}; +// SetShowLinks sets visibility of links for the TOC lines. +func (_gbdad *TOC )SetShowLinks (showLinks bool ){_gbdad ._dbaf =showLinks };func (_cgfcd *templateProcessor )parseLinearGradientAttr (creator *Creator ,_efdcag string )Color {_fgee :=ColorBlack ;if _efdcag ==""{return _fgee ;};_fbfaa :=creator .NewLinearGradientColor ([]*ColorPoint {}); +_fbfaa .SetExtends (true ,true );var (_addg =_dc .Split (_efdcag [16:len (_efdcag )-1],"\u002c");_cbeea =_dc .TrimSpace (_addg [0]););if _dc .HasSuffix (_cbeea ,"\u0064\u0065\u0067"){_dbcfdg ,_ffef :=_a .ParseFloat (_cbeea [:len (_cbeea )-3],64);if _ffef !=nil {_ca .Log .Debug ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0067\u0072\u0061\u0064\u0069e\u006e\u0074\u0020\u0061\u006e\u0067\u006ce\u003a\u0020\u0025\u0076",_ffef ); +}else {_fbfaa .SetAngle (_dbcfdg );};_addg =_addg [1:];};_agbg ,_fcff :=_cgfcd .processGradientColorPair (_addg );if _agbg ==nil ||_fcff ==nil {return _fgee ;};for _dabb :=0;_dabb < len (_agbg );_dabb ++{_fbfaa .AddColorStop (_agbg [_dabb ],_fcff [_dabb ]); +};return _fbfaa ;}; -// SetMargins sets the margins of the chart component. -func (_ebfb *Chart )SetMargins (left ,right ,top ,bottom float64 ){_ebfb ._ebga .Left =left ;_ebfb ._ebga .Right =right ;_ebfb ._ebga .Top =top ;_ebfb ._ebga .Bottom =bottom ;};func (_gbbb *templateProcessor )parsePageBreak (_fbega *templateNode )(interface{},error ){return _ddge (),nil ; -};func _ddge ()*PageBreak {return &PageBreak {}}; +// ScaleToHeight scales the rectangle to the specified height. The width of +// the rectangle is scaled so that the aspect ratio is maintained. +func (_eeab *Rectangle )ScaleToHeight (h float64 ){_cebg :=_eeab ._gfad /_eeab ._fefg ;_eeab ._fefg =h ;_eeab ._gfad =h *_cebg ;};func (_bfg *Block )drawToPage (_aaf *_ggc .PdfPage )error {_def :=&_bdb .ContentStreamOperations {};if _aaf .Resources ==nil {_aaf .Resources =_ggc .NewPdfPageResources (); +};_ff :=_ddf (_def ,_aaf .Resources ,_bfg ._cad ,_bfg ._ge );if _ff !=nil {return _ff ;};if _ff =_ega (_bfg ._ge ,_aaf .Resources );_ff !=nil {return _ff ;};if _ff =_aaf .AppendContentBytes (_def .Bytes (),true );_ff !=nil {return _ff ;};for _ ,_cafc :=range _bfg ._ga {_aaf .AddAnnotation (_cafc ); +};return nil ;}; -// NewParagraph creates a new text paragraph. -// Default attributes: -// Font: Helvetica, -// Font size: 10 -// Encoding: WinAnsiEncoding -// Wrap: enabled -// Text color: black -func (_efbb *Creator )NewParagraph (text string )*Paragraph {return _gacc (text ,_efbb .NewTextStyle ())};func (_eegec *templateProcessor )parseStyledParagraph (_cggcf *templateNode )(interface{},error ){_dafb :=_eegec .creator .NewStyledParagraph ();for _ ,_cbaeg :=range _cggcf ._facfb .Attr {_cbecb :=_cbaeg .Value ; -switch _dfgfc :=_cbaeg .Name .Local ;_dfgfc {case "\u0074\u0065\u0078\u0074\u002d\u0061\u006c\u0069\u0067\u006e":_dafb .SetTextAlignment (_eegec .parseTextAlignmentAttr (_dfgfc ,_cbecb ));case "\u0076\u0065\u0072\u0074ic\u0061\u006c\u002d\u0074\u0065\u0078\u0074\u002d\u0061\u006c\u0069\u0067\u006e":_dafb .SetTextVerticalAlignment (_eegec .parseTextVerticalAlignmentAttr (_dfgfc ,_cbecb )); -case "l\u0069\u006e\u0065\u002d\u0068\u0065\u0069\u0067\u0068\u0074":_dafb .SetLineHeight (_eegec .parseFloatAttr (_dfgfc ,_cbecb ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_cebg :=_eegec .parseMarginAttr (_dfgfc ,_cbecb );_dafb .SetMargins (_cebg .Left ,_cebg .Right ,_cebg .Top ,_cebg .Bottom ); -case "e\u006e\u0061\u0062\u006c\u0065\u002d\u0077\u0072\u0061\u0070":_dafb .SetEnableWrap (_eegec .parseBoolAttr (_dfgfc ,_cbecb ));case "\u0065\u006ea\u0062\u006c\u0065-\u0077\u006f\u0072\u0064\u002d\u0077\u0072\u0061\u0070":_dafb .EnableWordWrap (_eegec .parseBoolAttr (_dfgfc ,_cbecb )); -case "\u0074\u0065\u0078\u0074\u002d\u006f\u0076\u0065\u0072\u0066\u006c\u006f\u0077":_dafb .SetTextOverflow (_eegec .parseTextOverflowAttr (_dfgfc ,_cbecb ));case "\u0078":_dafb .SetPos (_eegec .parseFloatAttr (_dfgfc ,_cbecb ),_dafb ._cgcgca );case "\u0079":_dafb .SetPos (_dafb ._gbdbe ,_eegec .parseFloatAttr (_dfgfc ,_cbecb )); -case "\u0061\u006e\u0067l\u0065":_dafb .SetAngle (_eegec .parseFloatAttr (_dfgfc ,_cbecb ));default:_eegec .nodeLogDebug (_cggcf ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0073\u0074\u0079l\u0065\u0064\u0020\u0070\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0060\u0025\u0073`.\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_dfgfc ); -};};return _dafb ,nil ;}; +// EnablePageWrap controls whether the table is wrapped across pages. +// If disabled, the table is moved in its entirety on a new page, if it +// does not fit in the available height. By default, page wrapping is enabled. +// If the height of the table is larger than an entire page, wrapping is +// enabled automatically in order to avoid unwanted behavior. +func (_aagg *Table )EnablePageWrap (enable bool ){_aagg ._gbgc =enable }; -// BorderWidth returns the border width of the ellipse. -func (_fgcd *Ellipse )BorderWidth ()float64 {return _fgcd ._cadd }; +// SetStyleLeft sets border style for left side. +func (_gec *border )SetStyleLeft (style CellBorderStyle ){_gec ._acba =style }; -// SetColorBottom sets border color for bottom. -func (_cfc *border )SetColorBottom (col Color ){_cfc ._ada =col }; +// Height returns the Block's height. +func (_fef *Block )Height ()float64 {return _fef ._gfe }; -// SetMargins sets the margins of the line. -// NOTE: line margins are only applied if relative positioning is used. -func (_dfbde *Line )SetMargins (left ,right ,top ,bottom float64 ){_dfbde ._dcdb .Left =left ;_dfbde ._dcdb .Right =right ;_dfbde ._dcdb .Top =top ;_dfbde ._dcdb .Bottom =bottom ;}; +// AddAnnotation adds an annotation to the current block. +// The annotation will be added to the page the block will be rendered on. +func (_eeb *Block )AddAnnotation (annotation *_ggc .PdfAnnotation ){for _ ,_dd :=range _eeb ._ga {if _dd ==annotation {return ;};};_eeb ._ga =append (_eeb ._ga ,annotation );}; -// SetNoteStyle sets the style properties used to render the content of the -// invoice note sections. -func (_bfag *Invoice )SetNoteStyle (style TextStyle ){_bfag ._bgeac =style }; +// TextRenderingMode determines whether showing text shall cause glyph +// outlines to be stroked, filled, used as a clipping boundary, or some +// combination of the three. +// See section 9.3 "Text State Parameters and Operators" and +// Table 106 (pp. 254-255 PDF32000_2008). +type TextRenderingMode int ; -// Curve represents a cubic Bezier curve with a control point. -type Curve struct{_cfd float64 ;_cdbb float64 ;_bcga float64 ;_affa float64 ;_bcca float64 ;_acdbc float64 ;_adfb Color ;_geeb float64 ;};func (_cffg *templateProcessor )parseEllipse (_bdcfe *templateNode )(interface{},error ){_fcff :=_cffg .creator .NewEllipse (0,0,0,0); -for _ ,_cagf :=range _bdcfe ._facfb .Attr {_dbgd :=_cagf .Value ;switch _degbe :=_cagf .Name .Local ;_degbe {case "\u0063\u0078":_fcff ._fgcb =_cffg .parseFloatAttr (_degbe ,_dbgd );case "\u0063\u0079":_fcff ._eadb =_cffg .parseFloatAttr (_degbe ,_dbgd ); -case "\u0077\u0069\u0064t\u0068":_fcff .SetWidth (_cffg .parseFloatAttr (_degbe ,_dbgd ));case "\u0068\u0065\u0069\u0067\u0068\u0074":_fcff .SetHeight (_cffg .parseFloatAttr (_degbe ,_dbgd ));case "\u0066\u0069\u006c\u006c\u002d\u0063\u006f\u006c\u006f\u0072":_fcff .SetFillColor (_cffg .parseColorAttr (_degbe ,_dbgd )); -case "\u0066\u0069\u006cl\u002d\u006f\u0070\u0061\u0063\u0069\u0074\u0079":_fcff .SetFillOpacity (_cffg .parseFloatAttr (_degbe ,_dbgd ));case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_fcff .SetBorderColor (_cffg .parseColorAttr (_degbe ,_dbgd )); -case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u006f\u0070a\u0063\u0069\u0074\u0079":_fcff .SetBorderOpacity (_cffg .parseFloatAttr (_degbe ,_dbgd ));case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068":_fcff .SetBorderWidth (_cffg .parseFloatAttr (_degbe ,_dbgd )); -case "\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e":_fcff .SetPositioning (_cffg .parsePositioningAttr (_degbe ,_dbgd ));case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_fcff .SetFitMode (_cffg .parseFitModeAttr (_degbe ,_dbgd ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_bbefc :=_cffg .parseMarginAttr (_degbe ,_dbgd ); -_fcff .SetMargins (_bbefc .Left ,_bbefc .Right ,_bbefc .Top ,_bbefc .Bottom );default:_cffg .nodeLogDebug (_bdcfe ,"\u0055\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065\u006c\u006c\u0069\u0070\u0073\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_degbe ); -};};return _fcff ,nil ;};type rgbColor struct{_abec ,_eafb ,_baa float64 };func _fggg (_gbbf *Table ,_eagd DrawContext )([]*Block ,DrawContext ,error ){var _efbcd []*Block ;_agadf :=NewBlock (_eagd .PageWidth ,_eagd .PageHeight );_gbbf .updateRowHeights (_eagd .Width -_gbbf ._fefca .Left -_gbbf ._fefca .Right ); -_ebae :=_gbbf ._fefca .Top ;if _gbbf ._dbgb .IsRelative ()&&!_gbbf ._cbca {_aabc :=_gbbf .Height ();if _aabc > _eagd .Height -_gbbf ._fefca .Top &&_aabc <=_eagd .PageHeight -_eagd .Margins .Top -_eagd .Margins .Bottom {_efbcd =[]*Block {NewBlock (_eagd .PageWidth ,_eagd .PageHeight -_eagd .Y )}; -var _cfgg error ;if _ ,_eagd ,_cfgg =_ddge ().GeneratePageBlocks (_eagd );_cfgg !=nil {return nil ,_eagd ,_cfgg ;};_ebae =0;};};_cebea :=_eagd ;if _gbbf ._dbgb .IsAbsolute (){_eagd .X =_gbbf ._dcbdd ;_eagd .Y =_gbbf ._dfdc ;}else {_eagd .X +=_gbbf ._fefca .Left ; -_eagd .Y +=_ebae ;_eagd .Width -=_gbbf ._fefca .Left +_gbbf ._fefca .Right ;_eagd .Height -=_ebae ;};_gbebd :=_eagd .Width ;_faffc :=_eagd .X ;_fgce :=_eagd .Y ;_bcdaf :=_eagd .Height ;_bafcf :=0;_cddef ,_aegbc :=-1,-1;if _gbbf ._acgfbd {for _bcdg ,_cdbab :=range _gbbf ._bdfef {if _cdbab ._cceef < _gbbf ._adaae {continue ; -};if _cdbab ._cceef > _gbbf ._begg {break ;};if _cddef < 0{_cddef =_bcdg ;};_aegbc =_bcdg ;};};if _eggd :=_gbbf .wrapContent (_eagd );_eggd !=nil {return nil ,_eagd ,_eggd ;};_gbbf .updateRowHeights (_eagd .Width -_gbbf ._fefca .Left -_gbbf ._fefca .Right ); -var (_ddeaf bool ;_cfec int ;_fedcb int ;_dgaa bool ;_aefc int ;_dbcbd error ;);for _acgc :=0;_acgc < len (_gbbf ._bdfef );_acgc ++{_efged :=_gbbf ._bdfef [_acgc ];if _cbfbf ,_bgebbd :=_gbbf .getLastCellFromCol (_efged ._baceb );_cbfbf ==_acgc {if (_bgebbd ._cceef +_bgebbd ._badd -1)< _gbbf ._cccb {for _eggdb :=_efged ._cceef ; -_eggdb < _gbbf ._cccb ;_eggdb ++{_eddc :=&TableCell {};_eddc ._cceef =_eggdb +1;_eddc ._badd =1;_eddc ._baceb =_efged ._baceb ;_gbbf ._bdfef =append (_gbbf ._bdfef ,_eddc );};};};_fbcbd :=_efged .width (_gbbf ._gaecf ,_gbebd );_cfbafb :=float64 (0.0);for _gbge :=0; -_gbge < _efged ._baceb -1;_gbge ++{_cfbafb +=_gbbf ._gaecf [_gbge ]*_gbebd ;};_dfbff :=float64 (0.0);for _abbc :=_bafcf ;_abbc < _efged ._cceef -1;_abbc ++{_dfbff +=_gbbf ._cddcg [_abbc ];};_eagd .Height =_bcdaf -_dfbff ;_bdge :=float64 (0.0);for _gefcc :=0; -_gefcc < _efged ._badd ;_gefcc ++{_bdge +=_gbbf ._cddcg [_efged ._cceef +_gefcc -1];};_cefeb :=_dgaa &&_efged ._cceef !=_aefc ;_aefc =_efged ._cceef ;if _cefeb ||_bdge > _eagd .Height {if _gbbf ._dbac &&!_dgaa {_dgaa ,_dbcbd =_gbbf .wrapRow (_acgc ,_eagd ,_gbebd ); -if _dbcbd !=nil {return nil ,_eagd ,_dbcbd ;};if _dgaa {_acgc --;continue ;};_cefeb =true ;};_efbcd =append (_efbcd ,_agadf );_agadf =NewBlock (_eagd .PageWidth ,_eagd .PageHeight );_faffc =_eagd .Margins .Left +_gbbf ._fefca .Left ;_fgce =_eagd .Margins .Top ; -_eagd .Height =_eagd .PageHeight -_eagd .Margins .Top -_eagd .Margins .Bottom ;_eagd .Page ++;_bcdaf =_eagd .Height ;_bafcf =_efged ._cceef -1;_dfbff =0;_dgaa =false ;if _gbbf ._acgfbd &&_cddef >=0{_cfec =_acgc ;_acgc =_cddef -1;_fedcb =_bafcf ;_bafcf =_gbbf ._adaae -1; -_ddeaf =true ;if _efged ._badd > (_gbbf ._cccb -_aefc )||(_efged ._badd > 1&&_acgc < 0){_eef .Log .Debug ("\u0054a\u0062\u006ce\u0020\u0068\u0065a\u0064\u0065\u0072\u0020\u0072\u006f\u0077s\u0070\u0061\u006e\u0020\u0065\u0078c\u0065\u0065\u0064\u0073\u0020\u0061\u0076\u0061\u0069\u006c\u0061b\u006c\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u002e"); -_ddeaf =false ;_cddef ,_aegbc =-1,-1;};continue ;};if _cefeb {_acgc --;continue ;};};_eagd .Width =_fbcbd ;_eagd .X =_faffc +_cfbafb ;_eagd .Y =_fgce +_dfbff ;_febdb :=_edd (_eagd .X ,_eagd .Y ,_fbcbd ,_bdge );if _efged ._cbacb !=nil {_febdb .SetFillColor (_efged ._cbacb ); -};_febdb .LineStyle =_efged ._gegge ;_febdb ._dcda =_efged ._cbbdb ;_febdb ._adg =_efged ._fbcg ;_febdb ._bdd =_efged ._deaff ;_febdb ._befg =_efged ._fafdb ;if _efged ._cgce !=nil {_febdb .SetColorLeft (_efged ._cgce );};if _efged ._cfaea !=nil {_febdb .SetColorBottom (_efged ._cfaea ); -};if _efged ._egddb !=nil {_febdb .SetColorRight (_efged ._egddb );};if _efged ._bbcfdd !=nil {_febdb .SetColorTop (_efged ._bbcfdd );};_febdb .SetWidthBottom (_efged ._gegf );_febdb .SetWidthLeft (_efged ._fceg );_febdb .SetWidthRight (_efged ._bebbd ); -_febdb .SetWidthTop (_efged ._faeaf );_ggacb :=_agadf .Draw (_febdb );if _ggacb !=nil {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ggacb );};if _efged ._cead !=nil {_dfabe :=_efged ._cead .Width ();_egcfc :=_efged ._cead .Height (); -_fcfc :=0.0;switch _edgaa :=_efged ._cead .(type ){case *Paragraph :if _edgaa ._fade {_dfabe =_edgaa .getMaxLineWidth ()/1000.0;};_dfabe +=_edgaa ._fbba .Left +_edgaa ._fbba .Right ;_egcfc +=_edgaa ._fbba .Top +_edgaa ._fbba .Bottom ;case *StyledParagraph :if _edgaa ._dgba {_dfabe =_edgaa .getMaxLineWidth ()/1000.0; -};_aedb ,_caggb ,_cdgff :=_edgaa .getLineMetrics (0);_bddg ,_fcde :=_aedb *_edgaa ._gbcb ,_caggb *_edgaa ._gbcb ;if _edgaa ._ggdf ==TextVerticalAlignmentCenter {_fcfc =_fcde -(_caggb +(_aedb +_cdgff -_caggb )/2+(_fcde -_caggb )/2);};if len (_edgaa ._egffa )==1{_egcfc =_bddg ; -}else {_egcfc =_egcfc -_fcde +_bddg ;};_fcfc +=_bddg -_fcde ;switch _efged ._ecbg {case CellVerticalAlignmentTop :_fcfc +=_bddg *0.5;case CellVerticalAlignmentBottom :_fcfc -=_bddg *0.5;};_dfabe +=_edgaa ._faaba .Left +_edgaa ._faaba .Right ;_egcfc +=_edgaa ._faaba .Top +_edgaa ._faaba .Bottom ; -case *Table :_dfabe =_fbcbd ;case *List :_dfabe =_fbcbd ;case *Division :_dfabe =_fbcbd ;case *Chart :_dfabe =_fbcbd ;case *Line :_egcfc +=_edgaa ._dcdb .Top +_edgaa ._dcdb .Bottom ;_fcfc -=_edgaa .Height ()/2;case *Image :_dfabe +=_edgaa ._gbba .Left +_edgaa ._gbba .Right ; -_egcfc +=_edgaa ._gbba .Top +_edgaa ._gbba .Bottom ;};switch _efged ._dedb {case CellHorizontalAlignmentLeft :_eagd .X +=_efged ._ddbeg ;_eagd .Width -=_efged ._ddbeg ;case CellHorizontalAlignmentCenter :if _bgbc :=_fbcbd -_dfabe ;_bgbc > 0{_eagd .X +=_bgbc /2; -_eagd .Width -=_bgbc /2;};case CellHorizontalAlignmentRight :if _fbcbd > _dfabe {_eagd .X =_eagd .X +_fbcbd -_dfabe -_efged ._ddbeg ;_eagd .Width -=_efged ._ddbeg ;};};_aeaec :=_eagd .Y ;_daebb :=_eagd .Height ;_eagd .Y +=_fcfc ;switch _efged ._ecbg {case CellVerticalAlignmentTop :case CellVerticalAlignmentMiddle :if _gffa :=_bdge -_egcfc ; -_gffa > 0{_eagd .Y +=_gffa /2;_eagd .Height -=_gffa /2;};case CellVerticalAlignmentBottom :if _bdge > _egcfc {_eagd .Y =_eagd .Y +_bdge -_egcfc ;_eagd .Height =_bdge ;};};_cdeb :=_agadf .DrawWithContext (_efged ._cead ,_eagd );if _cdeb !=nil {_eef .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cdeb ); -};_eagd .Y =_aeaec ;_eagd .Height =_daebb ;};_eagd .Y +=_bdge ;_eagd .Height -=_bdge ;if _ddeaf &&_acgc +1> _aegbc {_fgce +=_dfbff +_bdge ;_bcdaf -=_bdge +_dfbff ;_bafcf =_fedcb ;_acgc =_cfec -1;_ddeaf =false ;};};_efbcd =append (_efbcd ,_agadf );if _gbbf ._dbgb .IsAbsolute (){return _efbcd ,_cebea ,nil ; -};_eagd .X =_cebea .X ;_eagd .Width =_cebea .Width ;_eagd .Y +=_gbbf ._fefca .Bottom ;_eagd .Height -=_gbbf ._fefca .Bottom ;return _efbcd ,_eagd ,nil ;};func _cbbafb (_aeda *templateProcessor ,_gedcc *templateNode )(interface{},error ){return _aeda .parseLine (_gedcc ); +// SetEnableWrap sets the line wrapping enabled flag. +func (_fccgb *StyledParagraph )SetEnableWrap (enableWrap bool ){_fccgb ._gfbb =enableWrap ;_fccgb ._facb =false ;};func _ecaea (_accf []_fc .Point )*Polyline {return &Polyline {_edbcg :&_fc .Polyline {Points :_accf ,LineColor :_ggc .NewPdfColorDeviceRGB (0,0,0),LineWidth :1.0},_afcb :1.0}; }; -// SetMargins sets the margins of the graphic svg component. -func (_bcfbf *GraphicSVG )SetMargins (left ,right ,top ,bottom float64 ){_bcfbf ._eefa .Left =left ;_bcfbf ._eefa .Right =right ;_bcfbf ._eefa .Top =top ;_bcfbf ._eefa .Bottom =bottom ;}; - -// FitMode defines resizing options of an object inside a container. -type FitMode int ; - -// AddressStyle returns the style properties used to render the content of -// the invoice address sections. -func (_ffca *Invoice )AddressStyle ()TextStyle {return _ffca ._gbgdd };func (_bdaa *templateProcessor )parseLine (_abaea *templateNode )(interface{},error ){_gcdcc :=_bdaa .creator .NewLine (0,0,0,0);for _ ,_agce :=range _abaea ._facfb .Attr {_ggacef :=_agce .Value ; -switch _begd :=_agce .Name .Local ;_begd {case "\u0078\u0031":_gcdcc ._dfbf =_bdaa .parseFloatAttr (_begd ,_ggacef );case "\u0079\u0031":_gcdcc ._aeecg =_bdaa .parseFloatAttr (_begd ,_ggacef );case "\u0078\u0032":_gcdcc ._gagg =_bdaa .parseFloatAttr (_begd ,_ggacef ); -case "\u0079\u0032":_gcdcc ._cbaff =_bdaa .parseFloatAttr (_begd ,_ggacef );case "\u0074h\u0069\u0063\u006b\u006e\u0065\u0073s":_gcdcc .SetLineWidth (_bdaa .parseFloatAttr (_begd ,_ggacef ));case "\u0063\u006f\u006co\u0072":_gcdcc .SetColor (_bdaa .parseColorAttr (_begd ,_ggacef )); -case "\u0073\u0074\u0079l\u0065":_gcdcc .SetStyle (_bdaa .parseLineStyleAttr (_begd ,_ggacef ));case "\u0064\u0061\u0073\u0068\u002d\u0061\u0072\u0072\u0061\u0079":_gcdcc .SetDashPattern (_bdaa .parseInt64Array (_begd ,_ggacef ),_gcdcc ._gfee );case "\u0064\u0061\u0073\u0068\u002d\u0070\u0068\u0061\u0073\u0065":_gcdcc .SetDashPattern (_gcdcc ._efgeg ,_bdaa .parseInt64Attr (_begd ,_ggacef )); -case "\u006fp\u0061\u0063\u0069\u0074\u0079":_gcdcc .SetOpacity (_bdaa .parseFloatAttr (_begd ,_ggacef ));case "\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e":_gcdcc .SetPositioning (_bdaa .parsePositioningAttr (_begd ,_ggacef ));case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_gcdcc .SetFitMode (_bdaa .parseFitModeAttr (_begd ,_ggacef )); -case "\u006d\u0061\u0072\u0067\u0069\u006e":_fddaa :=_bdaa .parseMarginAttr (_begd ,_ggacef );_gcdcc .SetMargins (_fddaa .Left ,_fddaa .Right ,_fddaa .Top ,_fddaa .Bottom );default:_bdaa .nodeLogDebug (_abaea ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u006c\u0069\u006e\u0065 \u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_begd ); -};};return _gcdcc ,nil ;}; +// SetPos sets absolute positioning with specified coordinates. +func (_bbeea *StyledParagraph )SetPos (x ,y float64 ){_bbeea ._gbga =PositionAbsolute ;_bbeea ._gcfda =x ;_bbeea ._cfge =y ;}; -// SetAngle sets the rotation angle in degrees. -func (_efb *Block )SetAngle (angleDeg float64 ){_efb ._eb =angleDeg }; +// SetMargins sets the Table's left, right, top, bottom margins. +func (_feedg *Table )SetMargins (left ,right ,top ,bottom float64 ){_feedg ._gfbcc .Left =left ;_feedg ._gfbcc .Right =right ;_feedg ._gfbcc .Top =top ;_feedg ._gfbcc .Bottom =bottom ;};func (_ebfgb *templateProcessor )loadImageFromSrc (_gfcaf string )(*Image ,error ){if _gfcaf ==""{_ca .Log .Error ("\u0049\u006d\u0061\u0067\u0065\u0020\u0060\u0073\u0072\u0063\u0060\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062e\u0020\u0065m\u0070\u0074\u0079\u002e"); +return nil ,_gggfb ;};_fbbeg :=_dc .Split (_gfcaf ,"\u002c");for _ ,_feeea :=range _fbbeg {_feeea =_dc .TrimSpace (_feeea );if _feeea ==""{continue ;};_adbce ,_agaca :=_ebfgb ._affcb .ImageMap [_feeea ];if _agaca {return _ggba (_adbce );};if _fdcgfgg :=_ebfgb .parseAttrPropList (_feeea ); +len (_fdcgfgg )> 0{if _abgeg ,_gcage :=_fdcgfgg ["\u0070\u0061\u0074\u0068"];_gcage {if _baeg ,_afaa :=_ggde (_abgeg );_afaa !=nil {_ca .Log .Debug ("\u0043\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020l\u006f\u0061\u0064\u0020\u0069\u006d\u0061g\u0065\u0020\u0060\u0025\u0073\u0060\u003a\u0020\u0025\u0076\u002e",_abgeg ,_afaa ); +}else {return _baeg ,nil ;};};};};_ca .Log .Error ("\u0043\u006ful\u0064\u0020\u006eo\u0074\u0020\u0066\u0069nd \u0069ma\u0067\u0065\u0020\u0072\u0065\u0073\u006fur\u0063\u0065\u003a\u0020\u0060\u0025\u0073`\u002e",_gfcaf );return nil ,_gggfb ;};func (_bbcd *Invoice )newCell (_gbfe string ,_fced InvoiceCellProps )*InvoiceCell {return &InvoiceCell {_fced ,_gbfe }; +};func (_ccadf *templateProcessor )parseChart (_ecbb *templateNode )(interface{},error ){var _acda string ;for _ ,_cfdea :=range _ecbb ._gbdee .Attr {_eeedf :=_cfdea .Value ;switch _effcc :=_cfdea .Name .Local ;_effcc {case "\u0073\u0072\u0063":_acda =_eeedf ; +};};if _acda ==""{_ccadf .nodeLogError (_ecbb ,"\u0043\u0068\u0061\u0072\u0074\u0020\u0060\u0073\u0072\u0063\u0060\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062e\u0020\u0065m\u0070\u0074\u0079\u002e"); +return nil ,_gggfb ;};_accfb ,_gcgba :=_ccadf ._affcb .ChartMap [_acda ];if !_gcgba {_ccadf .nodeLogError (_ecbb ,"\u0043\u006ful\u0064\u0020\u006eo\u0074\u0020\u0066\u0069nd \u0063ha\u0072\u0074\u0020\u0072\u0065\u0073\u006fur\u0063\u0065\u003a\u0020\u0060\u0025\u0073`\u002e",_acda ); +return nil ,_gggfb ;};_fdbc :=NewChart (_accfb );for _ ,_eadef :=range _ecbb ._gbdee .Attr {_efbbd :=_eadef .Value ;switch _gfcbb :=_eadef .Name .Local ;_gfcbb {case "\u0078":_fdbc .SetPos (_ccadf .parseFloatAttr (_gfcbb ,_efbbd ),_fdbc ._gbbc );case "\u0079":_fdbc .SetPos (_fdbc ._bfe ,_ccadf .parseFloatAttr (_gfcbb ,_efbbd )); +case "\u006d\u0061\u0072\u0067\u0069\u006e":_cfgff :=_ccadf .parseMarginAttr (_gfcbb ,_efbbd );_fdbc .SetMargins (_cfgff .Left ,_cfgff .Right ,_cfgff .Top ,_cfgff .Bottom );case "\u0077\u0069\u0064t\u0068":_fdbc ._ebbf .SetWidth (int (_ccadf .parseFloatAttr (_gfcbb ,_efbbd ))); +case "\u0068\u0065\u0069\u0067\u0068\u0074":_fdbc ._ebbf .SetHeight (int (_ccadf .parseFloatAttr (_gfcbb ,_efbbd )));case "\u0073\u0072\u0063":break ;default:_ccadf .nodeLogDebug (_ecbb ,"\u0055n\u0073\u0075p\u0070\u006f\u0072\u0074e\u0064\u0020\u0063h\u0061\u0072\u0074\u0020\u0061\u0074\u0074\u0072\u0069bu\u0074\u0065\u003a \u0060\u0025s\u0060\u002e\u0020\u0053\u006b\u0069p\u0070\u0069n\u0067\u002e",_gfcbb ); +};};return _fdbc ,nil ;};func _caaf (_fgefg []_fc .CubicBezierCurve )*PolyBezierCurve {return &PolyBezierCurve {_ffbb :&_fc .PolyBezierCurve {Curves :_fgefg ,BorderColor :_ggc .NewPdfColorDeviceRGB (0,0,0),BorderWidth :1.0},_bcdgc :1.0,_gfcgc :1.0};};func _cdce (_dccg []byte )(*Image ,error ){_cabe :=_g .NewReader (_dccg ); +_febec ,_gdfe :=_ggc .ImageHandling .Read (_cabe );if _gdfe !=nil {_ca .Log .Error ("\u0045\u0072\u0072or\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_gdfe );return nil ,_gdfe ;};return _ggba (_febec ); +};func _bfefg (_edfdd int64 ,_bgdfc ,_ddcf ,_badca float64 )*_ggc .PdfAnnotation {_eafbe :=_ggc .NewPdfAnnotationLink ();_cadf :=_ggc .NewBorderStyle ();_cadf .SetBorderWidth (0);_eafbe .BS =_cadf .ToPdfObject ();if _edfdd < 0{_edfdd =0;};_eafbe .Dest =_fe .MakeArray (_fe .MakeInteger (_edfdd ),_fe .MakeName ("\u0058\u0059\u005a"),_fe .MakeFloat (_bgdfc ),_fe .MakeFloat (_ddcf ),_fe .MakeFloat (_badca )); +return _eafbe .PdfAnnotation ;}; -// WriteToFile writes the Creator output to file specified by path. -func (_ccfb *Creator )WriteToFile (outputPath string )error {_dbge ,_gbdb :=_df .Create (outputPath );if _gbdb !=nil {return _gbdb ;};defer _dbge .Close ();return _ccfb .Write (_dbge );}; +// SetWidth sets the width of the ellipse. +func (_afda *Ellipse )SetWidth (width float64 ){_afda ._eded =width };func (_decbe *templateProcessor )parseParagraph (_caffcf *templateNode ,_ccgea *Paragraph )(interface{},error ){if _ccgea ==nil {_ccgea =_decbe .creator .NewParagraph ("");};for _ ,_cdcga :=range _caffcf ._gbdee .Attr {_acedc :=_cdcga .Value ; +switch _cfgaf :=_cdcga .Name .Local ;_cfgaf {case "\u0066\u006f\u006e\u0074":_ccgea .SetFont (_decbe .parseFontAttr (_cfgaf ,_acedc ));case "\u0066o\u006e\u0074\u002d\u0073\u0069\u007ae":_ccgea .SetFontSize (_decbe .parseFloatAttr (_cfgaf ,_acedc ));case "\u0074\u0065\u0078\u0074\u002d\u0061\u006c\u0069\u0067\u006e":_ccgea .SetTextAlignment (_decbe .parseTextAlignmentAttr (_cfgaf ,_acedc )); +case "l\u0069\u006e\u0065\u002d\u0068\u0065\u0069\u0067\u0068\u0074":_ccgea .SetLineHeight (_decbe .parseFloatAttr (_cfgaf ,_acedc ));case "e\u006e\u0061\u0062\u006c\u0065\u002d\u0077\u0072\u0061\u0070":_ccgea .SetEnableWrap (_decbe .parseBoolAttr (_cfgaf ,_acedc )); +case "\u0063\u006f\u006co\u0072":_ccgea .SetColor (_decbe .parseColorAttr (_cfgaf ,_acedc ));case "\u0078":_ccgea .SetPos (_decbe .parseFloatAttr (_cfgaf ,_acedc ),_ccgea ._cbcca );case "\u0079":_ccgea .SetPos (_ccgea ._bcec ,_decbe .parseFloatAttr (_cfgaf ,_acedc )); +case "\u0061\u006e\u0067l\u0065":_ccgea .SetAngle (_decbe .parseFloatAttr (_cfgaf ,_acedc ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_aeaad :=_decbe .parseMarginAttr (_cfgaf ,_acedc );_ccgea .SetMargins (_aeaad .Left ,_aeaad .Right ,_aeaad .Top ,_aeaad .Bottom ); +case "\u006da\u0078\u002d\u006c\u0069\u006e\u0065s":_ccgea .SetMaxLines (int (_decbe .parseInt64Attr (_cfgaf ,_acedc )));default:_decbe .nodeLogDebug (_caffcf ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065\u0064\u0020pa\u0072\u0061\u0067\u0072\u0061\u0070h\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073`\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u002e",_cfgaf ); +};};return _ccgea ,nil ;};type fontMetrics struct{_bacbec float64 ;_fbcdg float64 ;_eeeae float64 ;_afebc float64 ;};type componentRenderer interface{Draw (_cddf Drawable )error ;}; -// SetPadding sets the padding of the component. The padding represents -// inner margins which are applied around the contents of the division. -// The background of the component is not affected by its padding. -func (_eaae *Division )SetPadding (left ,right ,top ,bottom float64 ){_eaae ._dgfg .Left =left ;_eaae ._dgfg .Right =right ;_eaae ._dgfg .Top =top ;_eaae ._dgfg .Bottom =bottom ;};func (_fecf *TemplateOptions )init (){if _fecf .SubtemplateMap ==nil {_fecf .SubtemplateMap =map[string ]_dfd .Reader {}; -};if _fecf .FontMap ==nil {_fecf .FontMap =map[string ]*_fa .PdfFont {};};if _fecf .ImageMap ==nil {_fecf .ImageMap =map[string ]*_fa .Image {};};if _fecf .ColorMap ==nil {_fecf .ColorMap =map[string ]Color {};};if _fecf .ChartMap ==nil {_fecf .ChartMap =map[string ]_ff .ChartRenderable {}; -};};func (_ggdd *templateProcessor )parseHorizontalAlignmentAttr (_gcbf ,_bfaggb string )HorizontalAlignment {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069n\u0067\u0020\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0020a\u006c\u0069\u0067\u006e\u006d\u0065\u006e\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029.",_gcbf ,_bfaggb ); -_dggd :=map[string ]HorizontalAlignment {"\u006c\u0065\u0066\u0074":HorizontalAlignmentLeft ,"\u0063\u0065\u006e\u0074\u0065\u0072":HorizontalAlignmentCenter ,"\u0072\u0069\u0067h\u0074":HorizontalAlignmentRight }[_bfaggb ];return _dggd ;}; +// SetHorizontalAlignment sets the cell's horizontal alignment of content. +// Can be one of: +// - CellHorizontalAlignmentLeft +// - CellHorizontalAlignmentCenter +// - CellHorizontalAlignmentRight +func (_fafe *TableCell )SetHorizontalAlignment (halign CellHorizontalAlignment ){_fafe ._abad =halign }; -// NewColorPoint creates a new color and point object for use in the gradient rendering process. -func NewColorPoint (color Color ,point float64 )*ColorPoint {return _fbac (color ,point )}; +// BorderColor returns the border color of the rectangle. +func (_bbeg *Rectangle )BorderColor ()Color {return _bbeg ._ecce }; -// Width is not used. Not used as a Table element is designed to fill into -// available width depending on the context. Returns 0. -func (_abgag *Table )Width ()float64 {return 0};func (_cbbca *TableCell )cloneProps (_bgdc VectorDrawable )*TableCell {_febe :=*_cbbca ;_febe ._cead =_bgdc ;return &_febe ;}; +// NewSubchapter creates a new child chapter with the specified title. +func (_aac *Chapter )NewSubchapter (title string )*Chapter {_ddg :=_eabad (_aac ._ddd ._fggb );_ddg .FontSize =14;_aac ._bcbd ++;_dbg :=_facd (_aac ,_aac ._bdde ,_aac ._ggf ,title ,_aac ._bcbd ,_ddg );_aac .Add (_dbg );return _dbg ;};func (_cbcde *templateProcessor )parseHorizontalAlignmentAttr (_aebag ,_efbeeb string )HorizontalAlignment {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069n\u0067\u0020\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0020a\u006c\u0069\u0067\u006e\u006d\u0065\u006e\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029.",_aebag ,_efbeeb ); +_ecdag :=map[string ]HorizontalAlignment {"\u006c\u0065\u0066\u0074":HorizontalAlignmentLeft ,"\u0063\u0065\u006e\u0074\u0065\u0072":HorizontalAlignmentCenter ,"\u0072\u0069\u0067h\u0074":HorizontalAlignmentRight }[_efbeeb ];return _ecdag ;}; -// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated -// if the contents wrap over multiple pages. -func (_facea *TOC )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_gadeb :=ctx ;_fffe ,ctx ,_eeab :=_facea ._edbe .GeneratePageBlocks (ctx );if _eeab !=nil {return _fffe ,ctx ,_eeab ;};for _ ,_ccdg :=range _facea ._agfbb {_fgbc :=_ccdg ._gdda ; -if !_facea ._cfgge {_ccdg ._gdda =0;};_adba ,_fdfgf ,_aaaba :=_ccdg .GeneratePageBlocks (ctx );_ccdg ._gdda =_fgbc ;if _aaaba !=nil {return _fffe ,ctx ,_aaaba ;};if len (_adba )< 1{continue ;};_fffe [len (_fffe )-1].mergeBlocks (_adba [0]);_fffe =append (_fffe ,_adba [1:]...); -ctx =_fdfgf ;};if _facea ._cafed .IsRelative (){ctx .X =_gadeb .X ;};if _facea ._cafed .IsAbsolute (){return _fffe ,_gadeb ,nil ;};return _fffe ,ctx ,nil ;}; +// Add adds a new line with the default style to the table of contents. +func (_dcgd *TOC )Add (number ,title ,page string ,level uint )*TOCLine {_bdba :=_dcgd .AddLine (_bebddd (TextChunk {Text :number ,Style :_dcgd ._febed },TextChunk {Text :title ,Style :_dcgd ._cbgbd },TextChunk {Text :page ,Style :_dcgd ._abgad },level ,_dcgd ._cceeb )); +if _bdba ==nil {return nil ;};_ceedg :=&_dcgd ._dfbae ;_bdba .SetMargins (_ceedg .Left ,_ceedg .Right ,_ceedg .Top ,_ceedg .Bottom );_bdba .SetLevelOffset (_dcgd ._ebgfa );_bdba .Separator .Text =_dcgd ._feaba ;_bdba .Separator .Style =_dcgd ._effdg ;return _bdba ; +};func (_gged *templateProcessor )nodeLogDebug (_bgdg *templateNode ,_ggaf string ,_cffb ...interface{}){_ca .Log .Debug (_gged .getNodeErrorLocation (_bgdg ,_ggaf ,_cffb ...));};func _gbcbd (_bgcab *templateProcessor ,_dcef *templateNode )(interface{},error ){return _bgcab .parseRectangle (_dcef ); +}; -// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated -// if the contents wrap over multiple pages. -func (_gcfa *List )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){var _cgfe float64 ;var _ccbc []*StyledParagraph ;for _ ,_bfgg :=range _gcfa ._fbeaf {_efde :=_defdc (_gcfa ._dbca );_efde .SetEnableWrap (false );_efde .SetTextAlignment (TextAlignmentRight ); -_efde .Append (_bfgg ._dbea .Text ).Style =_bfgg ._dbea .Style ;_cadg :=_efde .getTextWidth ()/1000.0/ctx .Width ;if _cgfe < _cadg {_cgfe =_cadg ;};_ccbc =append (_ccbc ,_efde );};_fbggd :=_bgfa (2);_fbggd .SetColumnWidths (_cgfe ,1-_cgfe );_fbggd .SetMargins (_gcfa ._eead .Left +_gcfa ._dcdc ,_gcfa ._eead .Right ,_gcfa ._eead .Top ,_gcfa ._eead .Bottom ); -_fbggd .EnableRowWrap (true );for _edea ,_abed :=range _gcfa ._fbeaf {_dgfb :=_fbggd .NewCell ();_dgfb .SetIndent (0);_dgfb .SetContent (_ccbc [_edea ]);_dgfb =_fbggd .NewCell ();_dgfb .SetIndent (0);_dgfb .SetContent (_abed ._edcf );};return _fbggd .GeneratePageBlocks (ctx ); +// CreateFrontPage sets a function to generate a front Page. +func (_fabe *Creator )CreateFrontPage (genFrontPageFunc func (_gadd FrontpageFunctionArgs )){_fabe ._fbd =genFrontPageFunc ;};func _cbag ()*PageBreak {return &PageBreak {}};type marginDrawable interface{VectorDrawable ;GetMargins ()(float64 ,float64 ,float64 ,float64 ); }; -// FitMode returns the fit mode of the image. -func (_egbac *Image )FitMode ()FitMode {return _egbac ._bdbe }; +// NewList creates a new list. +func (_egac *Creator )NewList ()*List {return _edbe (_egac .NewTextStyle ())};func _cgcb (_ecega *templateProcessor ,_fbaga *templateNode )(interface{},error ){return _ecega .parseChapter (_fbaga );}; -// SetBorderColor sets the border color. -func (_cfga *Polygon )SetBorderColor (color Color ){_cfga ._cgecf .BorderColor =_gdfa (color )};func _dbcb (_dffg *_ga .GraphicSVG )(*GraphicSVG ,error ){return &GraphicSVG {_baea :_dffg ,_gacf :PositionRelative ,_eefa :Margins {Top :10,Bottom :10}},nil ; -}; +// AddShadingResource adds shading dictionary inside the resources dictionary. +func (_dbdf *RadialShading )AddShadingResource (block *Block )(_eefb _fe .PdfObjectName ,_daaed error ){_aggg :=1;_eefb =_fe .PdfObjectName ("\u0053\u0068"+_a .Itoa (_aggg ));for block ._ge .HasShadingByName (_eefb ){_aggg ++;_eefb =_fe .PdfObjectName ("\u0053\u0068"+_a .Itoa (_aggg )); +};if _ffab :=block ._ge .SetShadingByName (_eefb ,_dbdf .shadingModel ().ToPdfObject ());_ffab !=nil {return "",_ffab ;};return _eefb ,nil ;}; -// SetPos sets absolute positioning with specified coordinates. -func (_cdfc *StyledParagraph )SetPos (x ,y float64 ){_cdfc ._defc =PositionAbsolute ;_cdfc ._gbdbe =x ;_cdfc ._cgcgca =y ;};func (_fabgb *templateProcessor )parseList (_eccd *templateNode )(interface{},error ){_feccc :=_fabgb .creator .NewList ();for _ ,_adeeef :=range _eccd ._facfb .Attr {_dfcea :=_adeeef .Value ; -switch _fbae :=_adeeef .Name .Local ;_fbae {case "\u0069\u006e\u0064\u0065\u006e\u0074":_feccc .SetIndent (_fabgb .parseFloatAttr (_fbae ,_dfcea ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_bfffc :=_fabgb .parseMarginAttr (_fbae ,_dfcea );_feccc .SetMargins (_bfffc .Left ,_bfffc .Right ,_bfffc .Top ,_bfffc .Bottom ); -default:_fabgb .nodeLogDebug (_eccd ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u006c\u0069\u0073\u0074 \u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_fbae ); -};};return _feccc ,nil ;}; +// InfoLines returns all the rows in the invoice information table as +// description-value cell pairs. +func (_cegb *Invoice )InfoLines ()[][2]*InvoiceCell {_gdbf :=[][2]*InvoiceCell {_cegb ._geeb ,_cegb ._ddbe ,_cegb ._fdfc };return append (_gdbf ,_cegb ._cbga ...);};func _ecfaf (_edggb *_ggc .PdfFont ,_egedcf float64 )*fontMetrics {_dggdd :=&fontMetrics {}; +if _edggb ==nil {_ca .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0069s\u0020\u006e\u0069\u006c");return _dggdd ;};_faag ,_egfgd :=_edggb .GetFontDescriptor ();if _egfgd !=nil {_ca .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0067\u0065t\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063ri\u0070\u0074\u006fr\u003a \u0025\u0076",_egfgd ); +return _dggdd ;};if _dggdd ._bacbec ,_egfgd =_faag .GetCapHeight ();_egfgd !=nil {_ca .Log .Trace ("\u0057\u0041\u0052\u004e\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0067\u0065\u0074\u0020f\u006f\u006e\u0074\u0020\u0063\u0061\u0070\u0020\u0068\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_egfgd ); +};if int (_dggdd ._bacbec )<=0{_ca .Log .Trace ("\u0057\u0041\u0052\u004e\u003a\u0020\u0043\u0061p\u0020\u0048\u0065ig\u0068\u0074\u0020\u006e\u006f\u0074 \u0061\u0076\u0061\u0069\u006c\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065\u0074t\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u00310\u0030\u0030"); +_dggdd ._bacbec =1000;};_dggdd ._bacbec *=_egedcf /1000.0;if _dggdd ._fbcdg ,_egfgd =_faag .GetXHeight ();_egfgd !=nil {_ca .Log .Trace ("\u0057\u0041R\u004e\u003a\u0020\u0055n\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0078\u002d\u0068\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_egfgd ); +};_dggdd ._fbcdg *=_egedcf /1000.0;if _dggdd ._eeeae ,_egfgd =_faag .GetAscent ();_egfgd !=nil {_ca .Log .Trace ("W\u0041\u0052\u004e\u003a\u0020\u0055n\u0061\u0062\u006c\u0065\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u0066\u006fn\u0074\u0020\u0061\u0073\u0063\u0065\u006e\u0074\u003a\u0020%\u0076",_egfgd ); +};_dggdd ._eeeae *=_egedcf /1000.0;if _dggdd ._afebc ,_egfgd =_faag .GetDescent ();_egfgd !=nil {_ca .Log .Trace ("\u0057\u0041RN\u003a\u0020\u0055n\u0061\u0062\u006c\u0065 to\u0020ge\u0074\u0020\u0066\u006f\u006e\u0074\u0020de\u0073\u0063\u0065\u006e\u0074\u003a\u0020%\u0076",_egfgd ); +};_dggdd ._afebc *=_egedcf /1000.0;return _dggdd ;}; -// SetLineSeparatorStyle sets the style for the separator part of all new -// lines of the table of contents. -func (_ecabcg *TOC )SetLineSeparatorStyle (style TextStyle ){_ecabcg ._dbfad =style };func (_cbbc *Division )drawBackground (_fbec []*Block ,_facfg ,_gge DrawContext ,_abgg bool )([]*Block ,error ){_dbggc :=len (_fbec );if _dbggc ==0||_cbbc ._gcde ==nil {return _fbec ,nil ; -};_agg :=make ([]*Block ,0,len (_fbec ));for _eeae ,_gaecc :=range _fbec {var (_bgebd =_cbbc ._gcde .BorderRadiusTopLeft ;_feff =_cbbc ._gcde .BorderRadiusTopRight ;_deef =_cbbc ._gcde .BorderRadiusBottomLeft ;_bgag =_cbbc ._gcde .BorderRadiusBottomRight ; -);_ceg :=_facfg ;_ceg .Page +=_eeae ;if _eeae ==0{if _abgg {_agg =append (_agg ,_gaecc );continue ;};if _dbggc ==1{_ceg .Height =_gge .Y -_facfg .Y ;};}else {_ceg .X =_ceg .Margins .Left +_cbbc ._cdef .Left ;_ceg .Y =_ceg .Margins .Top ;_ceg .Width =_ceg .PageWidth -_ceg .Margins .Left -_ceg .Margins .Right -_cbbc ._cdef .Left -_cbbc ._cdef .Right ; -if _eeae ==_dbggc -1{_ceg .Height =_gge .Y -_ceg .Margins .Top -_cbbc ._cdef .Top ;}else {_ceg .Height =_ceg .PageHeight -_ceg .Margins .Top -_ceg .Margins .Bottom ;};if !_abgg {_bgebd =0;_feff =0;};};if _dbggc > 1&&_eeae !=_dbggc -1{_deef =0;_bgag =0; -};_dcef :=_cfce (_ceg .X ,_ceg .Y ,_ceg .Width ,_ceg .Height );_dcef .SetFillColor (_cbbc ._gcde .FillColor );_dcef .SetBorderColor (_cbbc ._gcde .BorderColor );_dcef .SetBorderWidth (_cbbc ._gcde .BorderSize );_dcef .SetBorderRadius (_bgebd ,_feff ,_deef ,_bgag ); -_eeacg ,_ ,_ede :=_dcef .GeneratePageBlocks (_ceg );if _ede !=nil {return nil ,_ede ;};if len (_eeacg )==0{continue ;};_gegc :=_eeacg [0];if _ede =_gegc .mergeBlocks (_gaecc );_ede !=nil {return nil ,_ede ;};_agg =append (_agg ,_gegc );};return _agg ,nil ; -};func (_ccg *Block )mergeBlocks (_ceb *Block )error {_cfbb :=_gdb (_ccg ._ffc ,_ccg ._gae ,_ceb ._ffc ,_ceb ._gae );if _cfbb !=nil {return _cfbb ;};for _ ,_af :=range _ceb ._cc {_ccg .AddAnnotation (_af );};return nil ;};const (TextAlignmentLeft TextAlignment =iota ; -TextAlignmentRight ;TextAlignmentCenter ;TextAlignmentJustify ;); +// AddInfo is used to append a piece of invoice information in the template +// information table. +func (_bdfc *Invoice )AddInfo (description ,value string )(*InvoiceCell ,*InvoiceCell ){_bgdf :=[2]*InvoiceCell {_bdfc .newCell (description ,_bdfc ._fcba ),_bdfc .newCell (value ,_bdfc ._fcba )};_bdfc ._cbga =append (_bdfc ._cbga ,_bgdf );return _bgdf [0],_bgdf [1]; +}; -// TextAlignment options for paragraph. -type TextAlignment int ; +// Scale scales the rectangle dimensions by the specified factors. +func (_agcf *Rectangle )Scale (xFactor ,yFactor float64 ){_agcf ._gfad =xFactor *_agcf ._gfad ;_agcf ._fefg =yFactor *_agcf ._fefg ;};func (_aaae *RadialShading )shadingModel ()*_ggc .PdfShadingType3 {_bgcf ,_ebfb ,_gbe :=_aaae ._fcacc ._dedad .ToRGB (); +var _fagb _fc .Point ;switch _aaae ._dedge {case AnchorBottomLeft :_fagb =_fc .Point {X :_aaae ._bbccc .Llx ,Y :_aaae ._bbccc .Lly };case AnchorBottomRight :_fagb =_fc .Point {X :_aaae ._bbccc .Urx ,Y :_aaae ._bbccc .Ury -_aaae ._bbccc .Height ()};case AnchorTopLeft :_fagb =_fc .Point {X :_aaae ._bbccc .Llx ,Y :_aaae ._bbccc .Lly +_aaae ._bbccc .Height ()}; +case AnchorTopRight :_fagb =_fc .Point {X :_aaae ._bbccc .Urx ,Y :_aaae ._bbccc .Ury };case AnchorLeft :_fagb =_fc .Point {X :_aaae ._bbccc .Llx ,Y :_aaae ._bbccc .Lly +_aaae ._bbccc .Height ()/2};case AnchorTop :_fagb =_fc .Point {X :_aaae ._bbccc .Llx +_aaae ._bbccc .Width ()/2,Y :_aaae ._bbccc .Ury }; +case AnchorRight :_fagb =_fc .Point {X :_aaae ._bbccc .Urx ,Y :_aaae ._bbccc .Lly +_aaae ._bbccc .Height ()/2};case AnchorBottom :_fagb =_fc .Point {X :_aaae ._bbccc .Urx +_aaae ._bbccc .Width ()/2,Y :_aaae ._bbccc .Lly };default:_fagb =_fc .NewPoint (_aaae ._bbccc .Llx +_aaae ._bbccc .Width ()/2,_aaae ._bbccc .Lly +_aaae ._bbccc .Height ()/2); +};_adce :=_aaae ._efdd ;_aafe :=_aaae ._cagbac ;_bfeb :=_fagb .X +_aaae ._cafd ;_fefe :=_fagb .Y +_aaae ._eagf ;if _adce ==-1.0{_adce =0.0;};if _aafe ==-1.0{var _gaaea []float64 ;_accfd :=_b .Pow (_bfeb -_aaae ._bbccc .Llx ,2)+_b .Pow (_fefe -_aaae ._bbccc .Lly ,2); +_gaaea =append (_gaaea ,_b .Abs (_accfd ));_degd :=_b .Pow (_bfeb -_aaae ._bbccc .Llx ,2)+_b .Pow (_aaae ._bbccc .Lly +_aaae ._bbccc .Height ()-_fefe ,2);_gaaea =append (_gaaea ,_b .Abs (_degd ));_ggggf :=_b .Pow (_aaae ._bbccc .Urx -_bfeb ,2)+_b .Pow (_fefe -_aaae ._bbccc .Ury -_aaae ._bbccc .Height (),2); +_gaaea =append (_gaaea ,_b .Abs (_ggggf ));_aacb :=_b .Pow (_aaae ._bbccc .Urx -_bfeb ,2)+_b .Pow (_aaae ._bbccc .Ury -_fefe ,2);_gaaea =append (_gaaea ,_b .Abs (_aacb ));_f .Slice (_gaaea ,func (_eggdb ,_edcd int )bool {return _eggdb > _edcd });_aafe =_b .Sqrt (_gaaea [0]); +};_egaae :=&_ggc .PdfRectangle {Llx :_bfeb -_aafe ,Lly :_fefe -_aafe ,Urx :_bfeb +_aafe ,Ury :_fefe +_aafe };_gabc :=_ggc .NewPdfShadingType3 ();_gabc .PdfShading .ShadingType =_fe .MakeInteger (3);_gabc .PdfShading .ColorSpace =_ggc .NewPdfColorspaceDeviceRGB (); +_gabc .PdfShading .Background =_fe .MakeArrayFromFloats ([]float64 {_bgcf ,_ebfb ,_gbe });_gabc .PdfShading .BBox =_egaae ;_gabc .PdfShading .AntiAlias =_fe .MakeBool (_aaae ._fcacc ._daff );_gabc .Coords =_fe .MakeArrayFromFloats ([]float64 {_bfeb ,_fefe ,_adce ,_bfeb ,_fefe ,_aafe }); +_gabc .Domain =_fe .MakeArrayFromFloats ([]float64 {0.0,1.0});_gabc .Extend =_fe .MakeArray (_fe .MakeBool (_aaae ._fcacc ._fgdd [0]),_fe .MakeBool (_aaae ._fcacc ._fgdd [1]));_gabc .Function =_aaae ._fcacc .generatePdfFunctions ();return _gabc ;}; -// NewColumn returns a new column for the line items invoice table. -func (_baeg *Invoice )NewColumn (description string )*InvoiceCell {return _baeg .newColumn (description ,CellHorizontalAlignmentLeft );};func (_ebgad *pageTransformations )transformPage (_eaag *_fa .PdfPage )error {if _daf :=_ebgad .applyFlip (_eaag ); -_daf !=nil {return _daf ;};return nil ;}; +// NewBlock creates a new Block with specified width and height. +func NewBlock (width float64 ,height float64 )*Block {_cagb :=&Block {};_cagb ._cad =&_bdb .ContentStreamOperations {};_cagb ._ge =_ggc .NewPdfPageResources ();_cagb ._ecd =width ;_cagb ._gfe =height ;return _cagb ;}; -// SetWidth sets the width of the rectangle. -func (_agggf *Rectangle )SetWidth (width float64 ){_agggf ._faaa =width }; +// Style returns the style of the line. +func (_gagf *Line )Style ()_fc .LineStyle {return _gagf ._ceac }; -// SetBorderWidth sets the border width. -func (_dcaa *PolyBezierCurve )SetBorderWidth (borderWidth float64 ){_dcaa ._cadfg .BorderWidth =borderWidth ;};func _feada (_bcead *_fa .PdfFont ,_bdede float64 )*fontMetrics {_edgfe :=&fontMetrics {};if _bcead ==nil {_eef .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0069s\u0020\u006e\u0069\u006c"); -return _edgfe ;};_gefff ,_gfecc :=_bcead .GetFontDescriptor ();if _gfecc !=nil {_eef .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0067\u0065t\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063ri\u0070\u0074\u006fr\u003a \u0025\u0076",_gfecc ); -return _edgfe ;};if _edgfe ._cbaab ,_gfecc =_gefff .GetCapHeight ();_gfecc !=nil {_eef .Log .Trace ("\u0057\u0041\u0052\u004e\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0067\u0065\u0074\u0020f\u006f\u006e\u0074\u0020\u0063\u0061\u0070\u0020\u0068\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_gfecc ); -};if int (_edgfe ._cbaab )<=0{_eef .Log .Trace ("\u0057\u0041\u0052\u004e\u003a\u0020\u0043\u0061p\u0020\u0048\u0065ig\u0068\u0074\u0020\u006e\u006f\u0074 \u0061\u0076\u0061\u0069\u006c\u0061\u0062\u006c\u0065\u0020\u002d\u0020\u0073\u0065\u0074t\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u00310\u0030\u0030"); -_edgfe ._cbaab =1000;};_edgfe ._cbaab *=_bdede /1000.0;if _edgfe ._gbffe ,_gfecc =_gefff .GetXHeight ();_gfecc !=nil {_eef .Log .Trace ("\u0057\u0041R\u004e\u003a\u0020\u0055n\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0067\u0065\u0074 \u0066\u006f\u006e\u0074\u0020\u0078\u002d\u0068\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_gfecc ); -};_edgfe ._gbffe *=_bdede /1000.0;if _edgfe ._aebcd ,_gfecc =_gefff .GetAscent ();_gfecc !=nil {_eef .Log .Trace ("W\u0041\u0052\u004e\u003a\u0020\u0055n\u0061\u0062\u006c\u0065\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u0066\u006fn\u0074\u0020\u0061\u0073\u0063\u0065\u006e\u0074\u003a\u0020%\u0076",_gfecc ); -};_edgfe ._aebcd *=_bdede /1000.0;if _edgfe ._dgad ,_gfecc =_gefff .GetDescent ();_gfecc !=nil {_eef .Log .Trace ("\u0057\u0041RN\u003a\u0020\u0055n\u0061\u0062\u006c\u0065 to\u0020ge\u0074\u0020\u0066\u006f\u006e\u0074\u0020de\u0073\u0063\u0065\u006e\u0074\u003a\u0020%\u0076",_gfecc ); -};_edgfe ._dgad *=_bdede /1000.0;return _edgfe ;}; +// Draw draws the drawable d on the block. +// Note that the drawable must not wrap, i.e. only return one block. Otherwise an error is returned. +func (_bfb *Block )Draw (d Drawable )error {_bdd :=DrawContext {};_bdd .Width =_bfb ._ecd ;_bdd .Height =_bfb ._gfe ;_bdd .PageWidth =_bfb ._ecd ;_bdd .PageHeight =_bfb ._gfe ;_bdd .X =0;_bdd .Y =0;_dcb ,_ ,_efe :=d .GeneratePageBlocks (_bdd );if _efe !=nil {return _efe ; +};if len (_dcb )!=1{return ErrContentNotFit ;};for _ ,_aag :=range _dcb {if _cdfa :=_bfb .mergeBlocks (_aag );_cdfa !=nil {return _cdfa ;};};return nil ;};var _acaac =map[string ]*templateTag {"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_bcddf :_cfgb },"\u0074\u0065\u0078\u0074\u002d\u0063\u0068\u0075\u006e\u006b":&templateTag {_bdcdf :map[string ]struct{}{"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h":struct{}{}},_bcddf :_gfbgg },"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_bcddf :_gecbe },"\u0074\u0061\u0062l\u0065":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_bcddf :_dedafb },"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":&templateTag {_bdcdf :map[string ]struct{}{"\u0074\u0061\u0062l\u0065":struct{}{}},_bcddf :_gcba },"\u006c\u0069\u006e\u0065":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_gedea },"\u0072e\u0063\u0074\u0061\u006e\u0067\u006ce":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_gbcbd },"\u0065l\u006c\u0069\u0070\u0073\u0065":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_dbaec },"\u0069\u006d\u0061g\u0065":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_bcddf :_dbba },"\u0063h\u0061\u0070\u0074\u0065\u0072":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_cgcb },"\u0063h\u0061p\u0074\u0065\u0072\u002d\u0068\u0065\u0061\u0064\u0069\u006e\u0067":&templateTag {_bdcdf :map[string ]struct{}{"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_ggdeb },"\u0063\u0068\u0061r\u0074":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_fgfc },"\u0070\u0061\u0067\u0065\u002d\u0062\u0072\u0065\u0061\u006b":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{}},_bcddf :_bfcfd },"\u0062\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064":&templateTag {_bdcdf :map[string ]struct{}{"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{}},_bcddf :_fdbcg },"\u006c\u0069\u0073\u0074":&templateTag {_bdcdf :map[string ]struct{}{"\u0063r\u0065\u0061\u0074\u006f\u0072":struct{}{},"\u0062\u006c\u006fc\u006b":struct{}{},"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":struct{}{},"\u0074\u0061\u0062\u006c\u0065\u002d\u0063\u0065\u006c\u006c":struct{}{},"\u0063h\u0061\u0070\u0074\u0065\u0072":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_bcddf :_cebcg },"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":&templateTag {_bdcdf :map[string ]struct{}{"\u006c\u0069\u0073\u0074":struct{}{}},_bcddf :_gfeg },"l\u0069\u0073\u0074\u002d\u006d\u0061\u0072\u006b\u0065\u0072":&templateTag {_bdcdf :map[string ]struct{}{"\u006c\u0069\u0073\u0074":struct{}{},"\u006ci\u0073\u0074\u002d\u0069\u0074\u0065m":struct{}{}},_bcddf :_eafef }}; -// SetExtends specifies whether to extend the shading beyond the starting and ending points. -// -// Text extends is set to `[]bool{false, false}` by default. -func (_cdbg *shading )SetExtends (start bool ,end bool ){_cdbg ._ffcf =[]bool {start ,end }};func (_egae *templateProcessor )getNodeErrorLocation (_fgcdd *templateNode ,_bbbca string ,_cbafd ...interface{})string {_bdbbc :=_g .Sprintf (_bbbca ,_cbafd ...); -_dbcd :=_g .Sprintf ("\u0025\u0064",_fgcdd ._fcagb );if _fgcdd ._edcb !=0{_dbcd =_g .Sprintf ("\u0025\u0064\u003a%\u0064",_fgcdd ._edcb ,_fgcdd ._gdbed );};if _egae ._cdgag !=""{return _g .Sprintf ("\u0025\u0073\u0020\u005b\u0025\u0073\u003a\u0025\u0073\u005d",_bdbbc ,_egae ._cdgag ,_dbcd ); -};return _g .Sprintf ("\u0025s\u0020\u005b\u0025\u0073\u005d",_bdbbc ,_dbcd );};func (_ffef *Paragraph )getMaxLineWidth ()float64 {if _ffef ._gbdea ==nil ||len (_ffef ._gbdea )==0{_ffef .wrapText ();};var _gebe float64 ;for _ ,_ecae :=range _ffef ._gbdea {_acac :=_ffef .getTextLineWidth (_ecae ); -if _acac > _gebe {_gebe =_acac ;};};return _gebe ;};func (_fcaafa *TOCLine )prepareParagraph (_gdccb *StyledParagraph ,_dedcd DrawContext ){_bcdc :=_fcaafa .Title .Text ;if _fcaafa .Number .Text !=""{_bcdc ="\u0020"+_bcdc ;};_bcdc +="\u0020";_ababg :=_fcaafa .Page .Text ; -if _ababg !=""{_ababg ="\u0020"+_ababg ;};_gdccb ._cfbcg =[]*TextChunk {{Text :_fcaafa .Number .Text ,Style :_fcaafa .Number .Style ,_gbgga :_fcaafa .getLineLink ()},{Text :_bcdc ,Style :_fcaafa .Title .Style ,_gbgga :_fcaafa .getLineLink ()},{Text :_ababg ,Style :_fcaafa .Page .Style ,_gbgga :_fcaafa .getLineLink ()}}; -_gdccb .wrapText ();_gaaaf :=len (_gdccb ._egffa );if _gaaaf ==0{return ;};_affd :=_dedcd .Width *1000-_gdccb .getTextLineWidth (_gdccb ._egffa [_gaaaf -1]);_baae :=_gdccb .getTextLineWidth ([]*TextChunk {&_fcaafa .Separator });_dagaf :=int (_affd /_baae ); -_dgaeb :=_dc .Repeat (_fcaafa .Separator .Text ,_dagaf );_dcbeg :=_fcaafa .Separator .Style ;_gfbag :=_gdccb .Insert (2,_dgaeb );_gfbag .Style =_dcbeg ;_gfbag ._gbgga =_fcaafa .getLineLink ();_affd =_affd -float64 (_dagaf )*_baae ;if _affd > 500{_fcacb ,_egbba :=_dcbeg .Font .GetRuneMetrics (' '); -if _egbba &&_affd > _fcacb .Wx {_dgbdb :=int (_affd /_fcacb .Wx );if _dgbdb > 0{_aaed :=_dcbeg ;_aaed .FontSize =1;_gfbag =_gdccb .Insert (2,_dc .Repeat ("\u0020",_dgbdb ));_gfbag .Style =_aaed ;_gfbag ._gbgga =_fcaafa .getLineLink ();};};};}; -// SetLineLevelOffset sets the amount of space an indentation level occupies -// for all new lines of the table of contents. -func (_eagb *TOC )SetLineLevelOffset (levelOffset float64 ){_eagb ._gafab =levelOffset }; +// RotateDeg rotates the current active page by angle degrees. An error is returned on failure, +// which can be if there is no currently active page, or the angleDeg is not a multiple of 90 degrees. +func (_bgae *Creator )RotateDeg (angleDeg int64 )error {_aea :=_bgae .getActivePage ();if _aea ==nil {_ca .Log .Debug ("F\u0061\u0069\u006c\u0020\u0074\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0065\u003a\u0020\u006e\u006f\u0020p\u0061\u0067\u0065\u0020\u0063\u0075\u0072\u0072\u0065\u006etl\u0079\u0020\u0061c\u0074i\u0076\u0065"); +return _fa .New ("\u006e\u006f\u0020\u0070\u0061\u0067\u0065\u0020\u0061c\u0074\u0069\u0076\u0065");};if angleDeg %90!=0{_ca .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067e\u0020\u0072\u006f\u0074\u0061\u0074\u0069on\u0020\u0061\u006e\u0067l\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006dul\u0074\u0069p\u006c\u0065\u0020\u006f\u0066\u0020\u0039\u0030"); +return _fa .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};var _fdga int64 ;if _aea .Rotate !=nil {_fdga =*(_aea .Rotate );};_fdga +=angleDeg ;_aea .Rotate =&_fdga ;return nil ;}; -// Positioning represents the positioning type for drawing creator components (relative/absolute). -type Positioning int ; +// Width returns the width of the rectangle. +// NOTE: the returned value does not include the border width of the rectangle. +func (_gcbc *Rectangle )Width ()float64 {return _gcbc ._gfad };func (_aefdd *Paragraph )getMaxLineWidth ()float64 {if _aefdd ._cbcf ==nil ||len (_aefdd ._cbcf )==0{_aefdd .wrapText ();};var _cgafa float64 ;for _ ,_eccd :=range _aefdd ._cbcf {_bbbe :=_aefdd .getTextLineWidth (_eccd ); +if _bbbe > _cgafa {_cgafa =_bbbe ;};};return _cgafa ;}; -// SetLink makes the line an internal link. -// The text parameter represents the text that is displayed. -// The user is taken to the specified page, at the specified x and y -// coordinates. Position 0, 0 is at the top left of the page. -func (_dcagc *TOCLine )SetLink (page int64 ,x ,y float64 ){_dcagc ._faga =x ;_dcagc ._eeaa =y ;_dcagc ._gdda =page ;_fbcd :=_dcagc ._bagf ._ggee .Color ;_dcagc .Number .Style .Color =_fbcd ;_dcagc .Title .Style .Color =_fbcd ;_dcagc .Separator .Style .Color =_fbcd ; -_dcagc .Page .Style .Color =_fbcd ;}; +// VectorDrawable is a Drawable with a specified width and height. +type VectorDrawable interface{Drawable ; -// SetPos sets the position of the chart to the specified coordinates. -// This method sets the chart to use absolute positioning. -func (_gdcd *Chart )SetPos (x ,y float64 ){_gdcd ._gbdd =PositionAbsolute ;_gdcd ._ggf =x ;_gdcd ._gfe =y ;}; +// Width returns the width of the Drawable. +Width ()float64 ; -// SetIndent sets the cell's left indent. -func (_gbdf *TableCell )SetIndent (indent float64 ){_gbdf ._ddbeg =indent };func (_cfgfe *templateProcessor )loadImageFromSrc (_dcafd string )(*Image ,error ){if _dcafd ==""{_eef .Log .Error ("\u0049\u006d\u0061\u0067\u0065\u0020\u0060\u0073\u0072\u0063\u0060\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062e\u0020\u0065m\u0070\u0074\u0079\u002e"); -return nil ,_cfee ;};_afcedg :=_dc .Split (_dcafd ,"\u002c");for _ ,_afedd :=range _afcedg {_afedd =_dc .TrimSpace (_afedd );if _afedd ==""{continue ;};_efbafg ,_dbegb :=_cfgfe ._cbdga .ImageMap [_afedd ];if _dbegb {return _aagg (_efbafg );};if _dabgb :=_cfgfe .parseAttrPropList (_afedd ); -len (_dabgb )> 0{if _egffg ,_bddcg :=_dabgb ["\u0070\u0061\u0074\u0068"];_bddcg {if _ddafd ,_dcbg :=_acgfb (_egffg );_dcbg !=nil {_eef .Log .Debug ("\u0043\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020l\u006f\u0061\u0064\u0020\u0069\u006d\u0061g\u0065\u0020\u0060\u0025\u0073\u0060\u003a\u0020\u0025\u0076\u002e",_egffg ,_dcbg ); -}else {return _ddafd ,nil ;};};};};_eef .Log .Error ("\u0043\u006ful\u0064\u0020\u006eo\u0074\u0020\u0066\u0069nd \u0069ma\u0067\u0065\u0020\u0072\u0065\u0073\u006fur\u0063\u0065\u003a\u0020\u0060\u0025\u0073`\u002e",_dcafd );return nil ,_cfee ;}; +// Height returns the height of the Drawable. +Height ()float64 ;}; -// Paragraph represents text drawn with a specified font and can wrap across lines and pages. -// By default it occupies the available width in the drawing context. -type Paragraph struct{_babfa string ;_gcedf *_fa .PdfFont ;_cgcbd float64 ;_ecegc float64 ;_beaa Color ;_fbgf TextAlignment ;_fade bool ;_gdffb float64 ;_ebfbg int ;_gade bool ;_dgdea float64 ;_fbba Margins ;_aacf Positioning ;_ggde float64 ;_ffdcg float64 ; -_bdefc ,_efdb float64 ;_gbdea []string ;}; +// Width returns the width of the Paragraph. +func (_caedf *StyledParagraph )Width ()float64 {if _caedf ._gfbb &&int (_caedf ._gcadd )> 0{return _caedf ._gcadd ;};return _caedf .getTextWidth ()/1000.0;};var PPI float64 =72;func (_eaf *Block )mergeBlocks (_bca *Block )error {_cafcf :=_ddf (_eaf ._cad ,_eaf ._ge ,_bca ._cad ,_bca ._ge ); +if _cafcf !=nil {return _cafcf ;};for _ ,_dag :=range _bca ._ga {_eaf .AddAnnotation (_dag );};return nil ;}; -// LineWidth returns the width of the line. -func (_eebfc *Line )LineWidth ()float64 {return _eebfc ._baec };func _decfe (_bacebg *templateProcessor ,_gbfbcd *templateNode )(interface{},error ){return _bacebg .parseDivision (_gbfbcd );}; +// Title returns the title of the invoice. +func (_dbbg *Invoice )Title ()string {return _dbbg ._bfbbd };func (_bbbg *TableCell )height (_eaffa float64 )float64 {var _adbf float64 ;switch _becg :=_bbbg ._efbbe .(type ){case *Paragraph :if _becg ._bebg {_becg .SetWidth (_eaffa -_bbbg ._bbgcg -_becg ._fgcbf .Left -_becg ._fgcbf .Right ); +};_adbf =_becg .Height ()+_becg ._fgcbf .Top +_becg ._fgcbf .Bottom +0.5*_becg ._fcbfa *_becg ._dacae ;case *StyledParagraph :if _becg ._gfbb {_becg .SetWidth (_eaffa -_bbbg ._bbgcg -_becg ._fbgbc .Left -_becg ._fbgbc .Right );};_adbf =_becg .Height ()+_becg ._fbgbc .Top +_becg ._fbgbc .Bottom +0.5*_becg .getTextHeight (); +case *Image :_becg .applyFitMode (_eaffa -_bbbg ._bbgcg );_adbf =_becg .Height ()+_becg ._cbea .Top +_becg ._cbea .Bottom ;case *Table :_becg .updateRowHeights (_eaffa -_bbbg ._bbgcg -_becg ._gfbcc .Left -_becg ._gfbcc .Right );_adbf =_becg .Height ()+_becg ._gfbcc .Top +_becg ._gfbcc .Bottom ; +case *List :_adbf =_becg .ctxHeight (_eaffa -_bbbg ._bbgcg )+_becg ._fed .Top +_becg ._fed .Bottom ;case *Division :_adbf =_becg .ctxHeight (_eaffa -_bbbg ._bbgcg )+_becg ._debb .Top +_becg ._debb .Bottom +_becg ._agda .Top +_becg ._agda .Bottom ;case *Chart :_adbf =_becg .Height ()+_becg ._gcff .Top +_becg ._gcff .Bottom ; +case *Rectangle :_becg .applyFitMode (_eaffa -_bbbg ._bbgcg );_adbf =_becg .Height ()+_becg ._ebfce .Top +_becg ._ebfce .Bottom +_becg ._decec ;case *Ellipse :_becg .applyFitMode (_eaffa -_bbbg ._bbgcg );_adbf =_becg .Height ()+_becg ._cadg .Top +_becg ._cadg .Bottom ; +case *Line :_adbf =_becg .Height ()+_becg ._bccc .Top +_becg ._bccc .Bottom ;};return _adbf ;}; -// SetBorderWidth sets the border width. -func (_fdce *CurvePolygon )SetBorderWidth (borderWidth float64 ){_fdce ._dbag .BorderWidth =borderWidth }; +// Rows returns the total number of rows the table has. +func (_aegg *Table )Rows ()int {return _aegg ._fgbfga }; -// Marker returns the marker used for the list items. -// The marker instance can be used the change the text and the style -// of newly added list items. -func (_bdggf *List )Marker ()*TextChunk {return &_bdggf ._cgef }; +// Indent returns the left offset of the list when nested into another list. +func (_eccac *List )Indent ()float64 {return _eccac ._egab }; -// SetHeading sets the text and the style of the heading of the TOC component. -func (_bbba *TOC )SetHeading (text string ,style TextStyle ){_cgfdg :=_bbba .Heading ();_cgfdg .Reset ();_ggaec :=_cgfdg .Append (text );_ggaec .Style =style ;}; +// GetMargins returns the Paragraph's margins: left, right, top, bottom. +func (_fagg *StyledParagraph )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _fagg ._fbgbc .Left ,_fagg ._fbgbc .Right ,_fagg ._fbgbc .Top ,_fagg ._fbgbc .Bottom ;};func (_dbaa *pageTransformations )transformBlock (_dfef *Block ){if _dbaa ._dafc !=nil {_dfef .transform (*_dbaa ._dafc ); +};}; -// Cols returns the total number of columns the table has. -func (_ddbec *Table )Cols ()int {return _ddbec ._beege }; +// SetLevelOffset sets the amount of space an indentation level occupies. +func (_gaggb *TOCLine )SetLevelOffset (levelOffset float64 ){_gaggb ._aeeeg =levelOffset ;_gaggb ._ecde ._fbgbc .Left =_gaggb ._adbfe +float64 (_gaggb ._daebd -1)*_gaggb ._aeeeg ;};func (_bfa *Block )transform (_ege _bd .Matrix ){_cdg :=_bdb .NewContentCreator ().Add_cm (_ege [0],_ege [1],_ege [3],_ege [4],_ege [6],_ege [7]).Operations (); +*_bfa ._cad =append (*_cdg ,*_bfa ._cad ...);_bfa ._cad .WrapIfNeeded ();}; -// SetDashPattern sets the dash pattern of the line. -// NOTE: the dash pattern is taken into account only if the style of the -// line is set to dashed. -func (_bbcgf *Line )SetDashPattern (dashArray []int64 ,dashPhase int64 ){_bbcgf ._efgeg =dashArray ;_bbcgf ._gfee =dashPhase ;}; +// BorderWidth returns the border width of the rectangle. +func (_cdfac *Rectangle )BorderWidth ()float64 {return _cdfac ._decec }; -// ToRGB implements interface Color. -// Note: It's not directly used since shading color works differently than regular color. -func (_ecba *RadialShading )ToRGB ()(float64 ,float64 ,float64 ){return 0,0,0}; +// PageBreak represents a page break for a chapter. +type PageBreak struct{};func _cece (_abbg float64 ,_aebff float64 )float64 {return _b .Round (_abbg /_aebff )*_aebff }; // SetTOC sets the table of content component of the creator. // This method should be used when building a custom table of contents. -func (_gbfd *Creator )SetTOC (toc *TOC ){if toc ==nil {return ;};_gbfd ._bbgg =toc ;};func (_aaadaf *templateProcessor )parseDivision (_dgdd *templateNode )(interface{},error ){_edab :=_aaadaf .creator .NewDivision ();for _ ,_dgfba :=range _dgdd ._facfb .Attr {_bdcb :=_dgfba .Value ; -switch _baab :=_dgfba .Name .Local ;_baab {case "\u0065\u006ea\u0062\u006c\u0065-\u0070\u0061\u0067\u0065\u002d\u0077\u0072\u0061\u0070":_edab .EnablePageWrap (_aaadaf .parseBoolAttr (_baab ,_bdcb ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_fdda :=_aaadaf .parseMarginAttr (_baab ,_bdcb ); -_edab .SetMargins (_fdda .Left ,_fdda .Right ,_fdda .Top ,_fdda .Bottom );case "\u0070a\u0064\u0064\u0069\u006e\u0067":_gcba :=_aaadaf .parseMarginAttr (_baab ,_bdcb );_edab .SetPadding (_gcba .Left ,_gcba .Right ,_gcba .Top ,_gcba .Bottom );default:_aaadaf .nodeLogDebug (_dgdd ,"U\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0064\u0069\u0076\u0069\u0073\u0069on\u0020\u0061\u0074\u0074r\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025s`\u002e\u0020S\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_baab ); -};};return _edab ,nil ;}; +func (_caed *Creator )SetTOC (toc *TOC ){if toc ==nil {return ;};_caed ._effa =toc ;};func (_fcadd *LinearShading )shadingModel ()*_ggc .PdfShadingType2 {_aefa :=_fc .NewPoint (_fcadd ._cbgf .Llx +_fcadd ._cbgf .Width ()/2,_fcadd ._cbgf .Lly +_fcadd ._cbgf .Height ()/2); +_bded :=_fc .NewPoint (_fcadd ._cbgf .Llx ,_fcadd ._cbgf .Lly +_fcadd ._cbgf .Height ()/2).Add (-_aefa .X ,-_aefa .Y ).Rotate (_fcadd ._fcfe ).Add (_aefa .X ,_aefa .Y );_bded =_fc .NewPoint (_b .Max (_b .Min (_bded .X ,_fcadd ._cbgf .Urx ),_fcadd ._cbgf .Llx ),_b .Max (_b .Min (_bded .Y ,_fcadd ._cbgf .Ury ),_fcadd ._cbgf .Lly )); +_eabgf :=_fc .NewPoint (_fcadd ._cbgf .Urx ,_fcadd ._cbgf .Lly +_fcadd ._cbgf .Height ()/2).Add (-_aefa .X ,-_aefa .Y ).Rotate (_fcadd ._fcfe ).Add (_aefa .X ,_aefa .Y );_eabgf =_fc .NewPoint (_b .Min (_b .Max (_eabgf .X ,_fcadd ._cbgf .Llx ),_fcadd ._cbgf .Urx ),_b .Min (_b .Max (_eabgf .Y ,_fcadd ._cbgf .Lly ),_fcadd ._cbgf .Ury )); +_edcag :=_ggc .NewPdfShadingType2 ();_edcag .PdfShading .ShadingType =_fe .MakeInteger (2);_edcag .PdfShading .ColorSpace =_ggc .NewPdfColorspaceDeviceRGB ();_edcag .PdfShading .AntiAlias =_fe .MakeBool (_fcadd ._aecc ._daff );_edcag .Coords =_fe .MakeArrayFromFloats ([]float64 {_bded .X ,_bded .Y ,_eabgf .X ,_eabgf .Y }); +_edcag .Extend =_fe .MakeArray (_fe .MakeBool (_fcadd ._aecc ._fgdd [0]),_fe .MakeBool (_fcadd ._aecc ._fgdd [1]));_edcag .Function =_fcadd ._aecc .generatePdfFunctions ();return _edcag ;}; -// AddTextItem appends a new item with the specified text to the list. -// The method creates a styled paragraph with the specified text and returns -// it so that the item style can be customized. -// The method also returns the marker used for the newly added item. -// The marker object can be used to change the text and style of the marker -// for the current item. -func (_dffc *List )AddTextItem (text string )(*StyledParagraph ,*TextChunk ,error ){_becd :=_defdc (_dffc ._dbca );_becd .Append (text );_bdgfe ,_bdfa :=_dffc .Add (_becd );return _becd ,_bdgfe ,_bdfa ;}; +// AddShadingResource adds shading dictionary inside the resources dictionary. +func (_afca *LinearShading )AddShadingResource (block *Block )(_ebffgg _fe .PdfObjectName ,_geaa error ){_fede :=1;_ebffgg =_fe .PdfObjectName ("\u0053\u0068"+_a .Itoa (_fede ));for block ._ge .HasShadingByName (_ebffgg ){_fede ++;_ebffgg =_fe .PdfObjectName ("\u0053\u0068"+_a .Itoa (_fede )); +};if _dedaf :=block ._ge .SetShadingByName (_ebffgg ,_afca .shadingModel ().ToPdfObject ());_dedaf !=nil {return "",_dedaf ;};return _ebffgg ,nil ;}; -// DrawHeader sets a function to draw a header on created output pages. -func (_fbca *Creator )DrawHeader (drawHeaderFunc func (_gccc *Block ,_fac HeaderFunctionArgs )){_fbca ._feef =drawHeaderFunc ;}; +// Width returns Image's document width. +func (_feaa *Image )Width ()float64 {return _feaa ._cagba }; -// ColorCMYKFrom8bit creates a Color from c,m,y,k values (0-100). -// Example: -// red := ColorCMYKFrom8Bit(0, 100, 100, 0) -func ColorCMYKFrom8bit (c ,m ,y ,k byte )Color {return cmykColor {_cgge :_ec .Min (float64 (c ),100)/100.0,_fbcb :_ec .Min (float64 (m ),100)/100.0,_abad :_ec .Min (float64 (y ),100)/100.0,_gdad :_ec .Min (float64 (k ),100)/100.0};}; +// AppendColumn appends a column to the line items table. +func (_eaade *Invoice )AppendColumn (description string )*InvoiceCell {_dgad :=_eaade .NewColumn (description );_eaade ._eag =append (_eaade ._eag ,_dgad );return _dgad ;}; -// CellHorizontalAlignment defines the table cell's horizontal alignment. -type CellHorizontalAlignment int ; +// Sections returns the custom content sections of the invoice as +// title-content pairs. +func (_cccb *Invoice )Sections ()[][2]string {return _cccb ._agdc }; -// SetBorderOpacity sets the border opacity of the ellipse. -func (_gbbg *Ellipse )SetBorderOpacity (opacity float64 ){_gbbg ._acdcf =opacity };type shading struct{_cfcbc Color ;_eadef bool ;_ffcf []bool ;_fbdg []*ColorPoint ;};func _cabda (_cbefe *templateProcessor ,_cabac *templateNode )(interface{},error ){return _cbefe .parseChapterHeading (_cabac ); +// Color returns the color of the line. +func (_gadc *Line )Color ()Color {return _gadc ._cdgfa }; + +// SetBorderRadius sets the radius of the rectangle corners. +func (_fbfa *Rectangle )SetBorderRadius (topLeft ,topRight ,bottomLeft ,bottomRight float64 ){_fbfa ._gagef =topLeft ;_fbfa ._efaga =topRight ;_fbfa ._fbcea =bottomLeft ;_fbfa ._fdcc =bottomRight ;};func (_fddd *TemplateOptions )init (){if _fddd .SubtemplateMap ==nil {_fddd .SubtemplateMap =map[string ]_ae .Reader {}; +};if _fddd .FontMap ==nil {_fddd .FontMap =map[string ]*_ggc .PdfFont {};};if _fddd .ImageMap ==nil {_fddd .ImageMap =map[string ]*_ggc .Image {};};if _fddd .ColorMap ==nil {_fddd .ColorMap =map[string ]Color {};};if _fddd .ChartMap ==nil {_fddd .ChartMap =map[string ]_gg .ChartRenderable {}; +};}; + +// Height returns the height of the ellipse. +func (_gacg *Ellipse )Height ()float64 {return _gacg ._dabc };func _bbcaf (_cbfa ,_bage ,_fdeaa string ,_gcdde uint ,_ebggd TextStyle )*TOCLine {return _bebddd (TextChunk {Text :_cbfa ,Style :_ebggd },TextChunk {Text :_bage ,Style :_ebggd },TextChunk {Text :_fdeaa ,Style :_ebggd },_gcdde ,_ebggd ); }; -// SetSideBorderStyle sets the cell's side border style. -func (_fede *TableCell )SetSideBorderStyle (side CellBorderSide ,style CellBorderStyle ){switch side {case CellBorderSideAll :_fede ._deaff =style ;_fede ._fafdb =style ;_fede ._cbbdb =style ;_fede ._fbcg =style ;case CellBorderSideTop :_fede ._deaff =style ; -case CellBorderSideBottom :_fede ._fafdb =style ;case CellBorderSideLeft :_fede ._cbbdb =style ;case CellBorderSideRight :_fede ._fbcg =style ;};}; +// NewCell makes a new cell and inserts it into the table at the current position. +func (_eedba *Table )NewCell ()*TableCell {return _eedba .MultiCell (1,1)}; -// Height returns the height of the graphic svg. -func (_ecef *GraphicSVG )Height ()float64 {return _ecef ._baea .Height }; +// AddPatternResource adds pattern dictionary inside the resources dictionary. +func (_cbecb *LinearShading )AddPatternResource (block *Block )(_cfebfg _fe .PdfObjectName ,_bbgb error ){_gbdbe :=1;_ggfcf :=_fe .PdfObjectName ("\u0050"+_a .Itoa (_gbdbe ));for block ._ge .HasPatternByName (_ggfcf ){_gbdbe ++;_ggfcf =_fe .PdfObjectName ("\u0050"+_a .Itoa (_gbdbe )); +};if _caae :=block ._ge .SetPatternByName (_ggfcf ,_cbecb .ToPdfShadingPattern ().ToPdfObject ());_caae !=nil {return "",_caae ;};return _ggfcf ,nil ;}; -// TotalLines returns all the rows in the invoice totals table as -// description-value cell pairs. -func (_cadb *Invoice )TotalLines ()[][2]*InvoiceCell {_fdac :=[][2]*InvoiceCell {_cadb ._aeggf };_fdac =append (_fdac ,_cadb ._cgca ...);return append (_fdac ,_cadb ._cadf );}; +// DueDate returns the invoice due date description and value cells. +// The returned values can be used to customize the styles of the cells. +func (_cgedf *Invoice )DueDate ()(*InvoiceCell ,*InvoiceCell ){return _cgedf ._fdfc [0],_cgedf ._fdfc [1];};func _fgfc (_afdfg *templateProcessor ,_aebba *templateNode )(interface{},error ){return _afdfg .parseChart (_aebba );}; -// ToRGB implements interface Color. -// Note: It's not directly used since shading color works differently than regular color. -func (_gagf *LinearShading )ToRGB ()(float64 ,float64 ,float64 ){return 0,0,0}; +// SetWidthTop sets border width for top. +func (_gfcg *border )SetWidthTop (bw float64 ){_gfcg ._cdgaa =bw }; -// Invoice represents a configurable invoice template. -type Invoice struct{_afgg string ;_fabc *Image ;_gcfe *InvoiceAddress ;_aecb *InvoiceAddress ;_edec string ;_cgga [2]*InvoiceCell ;_bacd [2]*InvoiceCell ;_gdcc [2]*InvoiceCell ;_dgec [][2]*InvoiceCell ;_cgcg []*InvoiceCell ;_cgec [][]*InvoiceCell ;_aeggf [2]*InvoiceCell ; -_cadf [2]*InvoiceCell ;_cgca [][2]*InvoiceCell ;_ebcg [2]string ;_befe [2]string ;_gdag [][2]string ;_ggac TextStyle ;_acaa TextStyle ;_gbfbc TextStyle ;_gbgdd TextStyle ;_cecc TextStyle ;_bgeac TextStyle ;_gaga TextStyle ;_cebef InvoiceCellProps ;_abef InvoiceCellProps ; -_cdab InvoiceCellProps ;_defd InvoiceCellProps ;_fcgdf Positioning ;};func (_deba *Table )wrapRow (_abbge int ,_cccf DrawContext ,_gdge float64 )(bool ,error ){if !_deba ._dbac {return false ,nil ;};var (_gcdga =_deba ._bdfef [_abbge ];_ddfgb =-1;_abcg []*TableCell ; -_fgdb float64 ;_gaad bool ;_bgcff =make ([]float64 ,0,len (_deba ._gaecf )););_cgfda :=func (_adgff *TableCell ,_facb VectorDrawable ,_deedc bool )*TableCell {_acbg :=*_adgff ;_acbg ._cead =_facb ;if _deedc {_acbg ._cceef ++;};return &_acbg ;};_dacbb :=func (_egbe int ,_bfdea VectorDrawable ){var _bgdec float64 =-1; -if _bfdea ==nil {if _gfdce :=_bgcff [_egbe -_abbge ];_gfdce > _cccf .Height {_bfdea =_deba ._bdfef [_egbe ]._cead ;_deba ._bdfef [_egbe ]._cead =nil ;_bgcff [_egbe -_abbge ]=0;_bgdec =_gfdce ;};};_eabf :=_cgfda (_deba ._bdfef [_egbe ],_bfdea ,true );_abcg =append (_abcg ,_eabf ); -if _bgdec < 0{_bgdec =_eabf .height (_cccf .Width );};if _bgdec > _fgdb {_fgdb =_bgdec ;};};for _dfefcc :=_abbge ;_dfefcc < len (_deba ._bdfef );_dfefcc ++{_aebg :=_deba ._bdfef [_dfefcc ];if _gcdga ._cceef !=_aebg ._cceef {_ddfgb =_dfefcc ;break ;};_cccf .Width =_aebg .width (_deba ._gaecf ,_gdge ); -_fbdgb :=_aebg .height (_cccf .Width );var _gdafd VectorDrawable ;switch _gddba :=_aebg ._cead .(type ){case *StyledParagraph :if _fbdgb > _cccf .Height {_bbad :=_cccf ;_bbad .Height =_ec .Floor (_cccf .Height -_gddba ._faaba .Top -_gddba ._faaba .Bottom -0.5*_gddba .getTextHeight ()); -_ccdbb ,_fdec ,_gafee :=_gddba .split (_bbad );if _gafee !=nil {return false ,_gafee ;};if _ccdbb !=nil &&_fdec !=nil {_gddba =_ccdbb ;_aebg =_cgfda (_aebg ,_ccdbb ,false );_deba ._bdfef [_dfefcc ]=_aebg ;_gdafd =_fdec ;_gaad =true ;};_fbdgb =_aebg .height (_cccf .Width ); -};case *Division :if _fbdgb > _cccf .Height {_aebac :=_cccf ;_aebac .Height =_ec .Floor (_cccf .Height -_gddba ._cdef .Top -_gddba ._cdef .Bottom );_cecf ,_dgef :=_gddba .split (_aebac );if _cecf !=nil &&_dgef !=nil {_gddba =_cecf ;_aebg =_cgfda (_aebg ,_cecf ,false ); -_deba ._bdfef [_dfefcc ]=_aebg ;_gdafd =_dgef ;_gaad =true ;if _cecf ._gcde !=nil {_cecf ._gcde .BorderRadiusBottomLeft =0;_cecf ._gcde .BorderRadiusBottomRight =0;};if _dgef ._gcde !=nil {_dgef ._gcde .BorderRadiusTopLeft =0;_dgef ._gcde .BorderRadiusTopRight =0; -};_fbdgb =_aebg .height (_cccf .Width );};};case *List :if _fbdgb > _cccf .Height {_cadgg :=_cccf ;_cadgg .Height =_ec .Floor (_cccf .Height -_gddba ._eead .Vertical ());_cfcbb ,_dbabc :=_gddba .split (_cadgg );if _cfcbb !=nil {_gddba =_cfcbb ;_aebg =_cgfda (_aebg ,_cfcbb ,false ); -_deba ._bdfef [_dfefcc ]=_aebg ;};if _dbabc !=nil {_gdafd =_dbabc ;_gaad =true ;};_fbdgb =_aebg .height (_cccf .Width );};};_bgcff =append (_bgcff ,_fbdgb );if _gaad {if _abcg ==nil {_abcg =make ([]*TableCell ,0,len (_deba ._gaecf ));for _cceb :=_abbge ; -_cceb < _dfefcc ;_cceb ++{_dacbb (_cceb ,nil );};};_dacbb (_dfefcc ,_gdafd );};};var _deddg float64 ;for _ ,_eeccg :=range _bgcff {if _eeccg > _deddg {_deddg =_eeccg ;};};if _gaad &&_deddg < _cccf .Height {if _ddfgb < 0{_ddfgb =len (_deba ._bdfef );};_bccaf :=_deba ._bdfef [_ddfgb -1]._cceef +_deba ._bdfef [_ddfgb -1]._badd -1; -for _dedac :=_ddfgb ;_dedac < len (_deba ._bdfef );_dedac ++{_deba ._bdfef [_dedac ]._cceef ++;};_deba ._bdfef =append (_deba ._bdfef [:_ddfgb ],append (_abcg ,_deba ._bdfef [_ddfgb :]...)...);_deba ._cddcg =append (_deba ._cddcg [:_bccaf ],append ([]float64 {_fgdb },_deba ._cddcg [_bccaf :]...)...); -_deba ._cddcg [_gcdga ._cceef +_gcdga ._badd -2]=_deddg ;};return _gaad ,nil ;}; +// SetRowPosition sets cell row position. +func (_gafc *TableCell )SetRowPosition (row int ){_gafc ._deded =row }; -// NoteHeadingStyle returns the style properties used to render the heading of -// the invoice note sections. -func (_fcgec *Invoice )NoteHeadingStyle ()TextStyle {return _fcgec ._gaga };func _efccg (_badf *Creator ,_abff _dfd .Reader ,_agedg interface{},_cbcba *TemplateOptions ,_eagg componentRenderer )error {if _badf ==nil {_eef .Log .Error ("\u0043\u0072\u0065a\u0074\u006f\u0072\u0020i\u006e\u0073\u0074\u0061\u006e\u0063\u0065 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); -return _abeb ;};_agga :="";if _cfbe ,_acgcc :=_abff .(*_df .File );_acgcc {_agga =_cfbe .Name ();};_ccea :=_ef .NewBuffer (nil );if _ ,_gaega :=_dfd .Copy (_ccea ,_abff );_gaega !=nil {return _gaega ;};_bgaaf :=_cb .FuncMap {"\u0064\u0069\u0063\u0074":_cdaaa }; -if _cbcba !=nil &&_cbcba .HelperFuncMap !=nil {for _edbf ,_gcdgea :=range _cbcba .HelperFuncMap {if _ ,_bgdac :=_bgaaf [_edbf ];_bgdac {_eef .Log .Debug ("\u0043\u0061\u006e\u006e\u006f\u0074 \u006f\u0076\u0065r\u0072\u0069\u0064e\u0020\u0062\u0075\u0069\u006c\u0074\u002d\u0069\u006e\u0020`\u0025\u0073\u0060\u0020\u0068el\u0070\u0065\u0072\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_edbf ); -continue ;};_bgaaf [_edbf ]=_gcdgea ;};};_debab ,_cbdf :=_cb .New ("").Funcs (_bgaaf ).Parse (_ccea .String ());if _cbdf !=nil {return _cbdf ;};if _cbcba !=nil &&_cbcba .SubtemplateMap !=nil {for _ecgg ,_ffcfg :=range _cbcba .SubtemplateMap {if _ecgg ==""{_eef .Log .Debug ("\u0053\u0075\u0062\u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u0063\u0061\u006en\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006d\u0070\u0074\u0079\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067.\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065 \u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e"); -continue ;};if _ffcfg ==nil {_eef .Log .Debug ("S\u0075\u0062t\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0063\u0061\u006e\u006eo\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079 \u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e"); -continue ;};_fbge :=_ef .NewBuffer (nil );if _ ,_bbbcb :=_dfd .Copy (_fbge ,_ffcfg );_bbbcb !=nil {return _bbbcb ;};if _ ,_gbafa :=_debab .New (_ecgg ).Parse (_fbge .String ());_gbafa !=nil {return _gbafa ;};};};_ccea .Reset ();if _dfbca :=_debab .Execute (_ccea ,_agedg ); -_dfbca !=nil {return _dfbca ;};return _bbec (_badf ,_agga ,_ccea .Bytes (),_cbcba ,_eagg ).run ();}; +// Context returns the current drawing context. +func (_bfef *Creator )Context ()DrawContext {return _bfef ._eacd }; -// SetMargins sets the Table's left, right, top, bottom margins. -func (_face *Table )SetMargins (left ,right ,top ,bottom float64 ){_face ._fefca .Left =left ;_face ._fefca .Right =right ;_face ._fefca .Top =top ;_face ._fefca .Bottom =bottom ;}; +// TableCell defines a table cell which can contain a Drawable as content. +type TableCell struct{_afbg Color ;_fcagf _fc .LineStyle ;_ffdeb CellBorderStyle ;_egde Color ;_egbd float64 ;_cbafe CellBorderStyle ;_dagd Color ;_egaeb float64 ;_dfbfd CellBorderStyle ;_aeec Color ;_ddbdf float64 ;_aaddc CellBorderStyle ;_afga Color ; +_caffa float64 ;_deded ,_eafbd int ;_ffgdb int ;_abfda int ;_efbbe VectorDrawable ;_abad CellHorizontalAlignment ;_fddca CellVerticalAlignment ;_bbgcg float64 ;_ddggg *Table ;}; -// Division is a container component which can wrap across multiple pages. -// Currently supported drawable components: -// - *Paragraph -// - *StyledParagraph -// - *Image -// - *Chart -// -// The component stacking behavior is vertical, where the drawables are drawn -// on top of each other. -type Division struct{_cga []VectorDrawable ;_gbfg Positioning ;_cdef Margins ;_dgfg Margins ;_dacf bool ;_gfbg bool ;_gcde *Background ;}; +// SetNumber sets the number of the invoice. +func (_edfa *Invoice )SetNumber (number string )(*InvoiceCell ,*InvoiceCell ){_edfa ._geeb [1].Value =number ;return _edfa ._geeb [0],_edfa ._geeb [1];}; + +// Flip flips the active page on the specified axes. +// If `flipH` is true, the page is flipped horizontally. Similarly, if `flipV` +// is true, the page is flipped vertically. If both are true, the page is +// flipped both horizontally and vertically. +// NOTE: the flip transformations are applied when the creator is finalized, +// which is at write time in most cases. +func (_cgf *Creator )Flip (flipH ,flipV bool )error {_cdea :=_cgf .getActivePage ();if _cdea ==nil {return _fa .New ("\u006e\u006f\u0020\u0070\u0061\u0067\u0065\u0020\u0061c\u0074\u0069\u0076\u0065");};_fcgg ,_ebae :=_cgf ._afbc [_cdea ];if !_ebae {_fcgg =&pageTransformations {}; +_cgf ._afbc [_cdea ]=_fcgg ;};_fcgg ._gfag =flipH ;_fcgg ._fcaa =flipV ;return nil ;};var (_cccd =_fag .MustCompile ("\u0028[\u005cw\u002d\u005d\u002b\u0029\u005c(\u0027\u0028.\u002b\u0029\u0027\u005c\u0029");_ddead =_fa .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0063\u0072\u0065a\u0074\u006f\u0072\u0020\u0069\u006e\u0073t\u0061\u006e\u0063\u0065"); +_gfaba =_fa .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0074\u0065\u006d\u0070\u006c\u0061\u0074e\u0020p\u0061\u0072\u0065\u006e\u0074\u0020\u006eo\u0064\u0065");_dfgbg =_fa .New ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0074\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020c\u0068\u0069\u006cd\u0020n\u006f\u0064\u0065"); +_gggfb =_fa .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0074\u0065\u006d\u0070l\u0061t\u0065 \u0072\u0065\u0073\u006f\u0075\u0072\u0063e");); + +// GetMargins returns the Block's margins: left, right, top, bottom. +func (_caf *Block )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _caf ._bc .Left ,_caf ._bc .Right ,_caf ._bc .Top ,_caf ._bc .Bottom ;};func (_eddbc *TextStyle )horizontalScale ()float64 {return _eddbc .HorizontalScaling /100};func (_bcadd *templateProcessor )nodeLogError (_feaca *templateNode ,_faedf string ,_gafd ...interface{}){_ca .Log .Error (_bcadd .getNodeErrorLocation (_feaca ,_faedf ,_gafd ...)); +};func (_adegg *templateProcessor )parseFitModeAttr (_abcec ,_bcacb string )FitMode {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0066\u0069\u0074\u0020\u006do\u0064\u0065\u0020\u0061\u0074\u0074r\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c \u0025\u0073\u0029\u002e",_abcec ,_bcacb ); +_dfagb :=map[string ]FitMode {"\u006e\u006f\u006e\u0065":FitModeNone ,"\u0066\u0069\u006c\u006c\u002d\u0077\u0069\u0064\u0074\u0068":FitModeFillWidth }[_bcacb ];return _dfagb ;};var (ColorBlack =ColorRGBFromArithmetic (0,0,0);ColorWhite =ColorRGBFromArithmetic (1,1,1); +ColorRed =ColorRGBFromArithmetic (1,0,0);ColorGreen =ColorRGBFromArithmetic (0,1,0);ColorBlue =ColorRGBFromArithmetic (0,0,1);ColorYellow =ColorRGBFromArithmetic (1,1,0);); + +// NewEllipse creates a new ellipse with the center at (`xc`, `yc`), +// having the specified width and height. +// NOTE: In relative positioning mode, `xc` and `yc` are calculated using the +// current context. Furthermore, when the fit mode is set to fill the available +// space, the ellipse is scaled so that it occupies the entire context width +// while maintaining the original aspect ratio. +func (_fcadf *Creator )NewEllipse (xc ,yc ,width ,height float64 )*Ellipse {return _dccb (xc ,yc ,width ,height );}; + +// SetNoteHeadingStyle sets the style properties used to render the heading +// of the invoice note sections. +func (_gbcd *Invoice )SetNoteHeadingStyle (style TextStyle ){_gbcd ._daag =style }; -// SetStyleBottom sets border style for bottom side. -func (_ddde *border )SetStyleBottom (style CellBorderStyle ){_ddde ._befg =style }; +// SetBorderColor sets border color of the rectangle. +func (_fddc *Rectangle )SetBorderColor (col Color ){_fddc ._ecce =col }; -// SetOptimizer sets the optimizer to optimize PDF before writing. -func (_gef *Creator )SetOptimizer (optimizer _fa .Optimizer ){_gef ._effb =optimizer }; +// SetLineHeight sets the line height (1.0 default). +func (_gcgc *Paragraph )SetLineHeight (lineheight float64 ){_gcgc ._dacae =lineheight }; -// SetFillColor sets background color for border. -func (_ddd *border )SetFillColor (col Color ){_ddd ._eede =col };func _fabb (_cddd []_ce .Point )*Polyline {return &Polyline {_dfgf :&_ce .Polyline {Points :_cddd ,LineColor :_fa .NewPdfColorDeviceRGB (0,0,0),LineWidth :1.0},_ggba :1.0};}; +// SetWidth sets line width. +func (_fcade *Curve )SetWidth (width float64 ){_fcade ._bceaa =width }; -// ScaleToHeight scales the Block to a specified height, maintaining the same aspect ratio. -func (_eeg *Block )ScaleToHeight (h float64 ){_aac :=h /_eeg ._dec ;_eeg .Scale (_aac ,_aac )}; +// GetCoords returns coordinates of border. +func (_afd *border )GetCoords ()(float64 ,float64 ){return _afd ._agf ,_afd ._gea }; -// VectorDrawable is a Drawable with a specified width and height. -type VectorDrawable interface{Drawable ; +// SetFillColor sets the fill color. +func (_baadb *CurvePolygon )SetFillColor (color Color ){_baadb ._fdge =color ;_baadb ._ecae .FillColor =_dbac (color );}; -// Width returns the width of the Drawable. -Width ()float64 ; +// CellBorderStyle defines the table cell's border style. +type CellBorderStyle int ;func _eafef (_dbea *templateProcessor ,_abcfd *templateNode )(interface{},error ){return _dbea .parseListMarker (_abcfd );}; -// Height returns the height of the Drawable. -Height ()float64 ;}; +// Marker returns the marker used for the list items. +// The marker instance can be used the change the text and the style +// of newly added list items. +func (_cgda *List )Marker ()*TextChunk {return &_cgda ._ebgba }; -// Width returns the width of the specified text chunk. -func (_efacg *TextChunk )Width ()float64 {var (_gbfa float64 ;_ggeff =_efacg .Style ;);for _ ,_eadda :=range _efacg .Text {_dfbda ,_degd :=_ggeff .Font .GetRuneMetrics (_eadda );if !_degd {_eef .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006det\u0072i\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064!\u0020\u0072\u0075\u006e\u0065\u003d\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0020\u0066o\u006e\u0074\u003d\u0025\u0073\u0020\u0025\u0023\u0071",_eadda ,_eadda ,_ggeff .Font .BaseFont (),_ggeff .Font .Subtype ()); -_eef .Log .Trace ("\u0046o\u006e\u0074\u003a\u0020\u0025\u0023v",_ggeff .Font );_eef .Log .Trace ("\u0045\u006e\u0063o\u0064\u0065\u0072\u003a\u0020\u0025\u0023\u0076",_ggeff .Font .Encoder ());};_gfabd :=_ggeff .FontSize *_dfbda .Wx ;_bdecf :=_gfabd ; -if _eadda !=' '{_bdecf =_gfabd +_ggeff .CharSpacing *1000.0;};_gbfa +=_bdecf ;};return _gbfa /1000.0;}; +// NewDivision returns a new Division container component. +func (_bcfb *Creator )NewDivision ()*Division {return _ffcc ()}; -// GetMargins returns the margins of the line: left, right, top, bottom. -func (_fbggf *Line )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _fbggf ._dcdb .Left ,_fbggf ._dcdb .Right ,_fbggf ._dcdb .Top ,_fbggf ._dcdb .Bottom ;};func _cagcb (_ddbf *templateProcessor ,_dfabg *templateNode )(interface{},error ){return _ddbf .parseStyledParagraph (_dfabg ); -};func (_egd rgbColor )ToRGB ()(float64 ,float64 ,float64 ){return _egd ._abec ,_egd ._eafb ,_egd ._baa }; +// GetHeading returns the chapter heading paragraph. Used to give access to address style: font, sizing etc. +func (_baee *Chapter )GetHeading ()*Paragraph {return _baee ._ddd }; -// NewTextStyle creates a new text style object which can be used to style -// chunks of text. -// Default attributes: -// Font: Helvetica -// Font size: 10 -// Encoding: WinAnsiEncoding -// Text color: black -func (_fdee *Creator )NewTextStyle ()TextStyle {return _ggbe (_fdee ._aebd )}; +// SetHeight sets the Image's document height to specified h. +func (_afeb *Image )SetHeight (h float64 ){_afeb ._efef =h };const (CellVerticalAlignmentTop CellVerticalAlignment =iota ;CellVerticalAlignmentMiddle ;CellVerticalAlignmentBottom ;);func (_eagg *Invoice )generateLineBlocks (_bgff DrawContext )([]*Block ,DrawContext ,error ){_cffab :=_gdec (len (_eagg ._eag )); +_cffab .SetMargins (0,0,25,0);for _ ,_gddc :=range _eagg ._eag {_eece :=_egdc (_gddc .TextStyle );_eece .SetMargins (0,0,1,0);_eece .Append (_gddc .Value );_abff :=_cffab .NewCell ();_abff .SetHorizontalAlignment (_gddc .Alignment );_abff .SetBackgroundColor (_gddc .BackgroundColor ); +_eagg .setCellBorder (_abff ,_gddc );_abff .SetContent (_eece );};for _ ,_ccgf :=range _eagg ._fbac {for _ ,_acbaa :=range _ccgf {_gbbf :=_egdc (_acbaa .TextStyle );_gbbf .SetMargins (0,0,3,2);_gbbf .Append (_acbaa .Value );_ffee :=_cffab .NewCell ();_ffee .SetHorizontalAlignment (_acbaa .Alignment ); +_ffee .SetBackgroundColor (_acbaa .BackgroundColor );_eagg .setCellBorder (_ffee ,_acbaa );_ffee .SetContent (_gbbf );};};return _cffab .GeneratePageBlocks (_bgff );}; -// FitMode returns the fit mode of the line. -func (_cgad *Line )FitMode ()FitMode {return _cgad ._bfeb }; +// Height returns the height of the rectangle. +// NOTE: the returned value does not include the border width of the rectangle. +func (_fbee *Rectangle )Height ()float64 {return _fbee ._fefg }; -// NewRadialGradientColor creates a radial gradient color that could act as a color in other componenents. -// Note: The innerRadius must be smaller than outerRadius for the circle to render properly. -func (_acea *Creator )NewRadialGradientColor (x float64 ,y float64 ,innerRadius float64 ,outerRadius float64 ,colorPoints []*ColorPoint )*RadialShading {return _ebad (x ,y ,innerRadius ,outerRadius ,colorPoints );};func (_bceag *templateProcessor )parseTable (_cafb *templateNode )(interface{},error ){var _dcgf int64 ; -for _ ,_dbfbg :=range _cafb ._facfb .Attr {_aefcf :=_dbfbg .Value ;switch _ecdbd :=_dbfbg .Name .Local ;_ecdbd {case "\u0063o\u006c\u0075\u006d\u006e\u0073":_dcgf =_bceag .parseInt64Attr (_ecdbd ,_aefcf );};};if _dcgf <=0{_bceag .nodeLogDebug (_cafb ,"\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006eu\u006d\u0062e\u0072\u0020\u006f\u0066\u0020\u0074\u0061\u0062\u006ce\u0020\u0063\u006f\u006cu\u006d\u006e\u0073\u003a\u0020\u0025\u0064\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0031\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020m\u0061\u0079\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e",_dcgf ); -_dcgf =1;};_ebaba :=_bceag .creator .NewTable (int (_dcgf ));for _ ,_eaed :=range _cafb ._facfb .Attr {_accde :=_eaed .Value ;switch _ddda :=_eaed .Name .Local ;_ddda {case "\u0063\u006f\u006c\u0075\u006d\u006e\u002d\u0077\u0069\u0064\u0074\u0068\u0073":_ebaba .SetColumnWidths (_bceag .parseFloatArray (_ddda ,_accde )...); -case "\u006d\u0061\u0072\u0067\u0069\u006e":_badfe :=_bceag .parseMarginAttr (_ddda ,_accde );_ebaba .SetMargins (_badfe .Left ,_badfe .Right ,_badfe .Top ,_badfe .Bottom );case "\u0078":_ebaba .SetPos (_bceag .parseFloatAttr (_ddda ,_accde ),_ebaba ._dfdc ); -case "\u0079":_ebaba .SetPos (_ebaba ._dcbdd ,_bceag .parseFloatAttr (_ddda ,_accde ));case "\u0068\u0065a\u0064\u0065\u0072-\u0073\u0074\u0061\u0072\u0074\u002d\u0072\u006f\u0077":_ebaba ._adaae =int (_bceag .parseInt64Attr (_ddda ,_accde ));case "\u0068\u0065\u0061\u0064\u0065\u0072\u002d\u0065\u006ed\u002d\u0072\u006f\u0077":_ebaba ._begg =int (_bceag .parseInt64Attr (_ddda ,_accde )); -case "\u0065n\u0061b\u006c\u0065\u002d\u0072\u006f\u0077\u002d\u0077\u0072\u0061\u0070":_ebaba .EnableRowWrap (_bceag .parseBoolAttr (_ddda ,_accde ));case "\u0065\u006ea\u0062\u006c\u0065-\u0070\u0061\u0067\u0065\u002d\u0077\u0072\u0061\u0070":_ebaba .EnablePageWrap (_bceag .parseBoolAttr (_ddda ,_accde )); -case "\u0063o\u006c\u0075\u006d\u006e\u0073":break ;default:_bceag .nodeLogDebug (_cafb ,"\u0055n\u0073\u0075p\u0070\u006f\u0072\u0074e\u0064\u0020\u0074a\u0062\u006c\u0065\u0020\u0061\u0074\u0074\u0072\u0069bu\u0074\u0065\u003a \u0060\u0025s\u0060\u002e\u0020\u0053\u006b\u0069p\u0070\u0069n\u0067\u002e",_ddda ); -};};if _ebaba ._adaae !=0&&_ebaba ._begg !=0{_fbbae :=_ebaba .SetHeaderRows (_ebaba ._adaae ,_ebaba ._begg );if _fbbae !=nil {_bceag .nodeLogDebug (_cafb ,"\u0043\u006ful\u0064\u0020\u006eo\u0074\u0020\u0073\u0065t t\u0061bl\u0065\u0020\u0068\u0065\u0061\u0064\u0065r \u0072\u006f\u0077\u0073\u003a\u0020\u0025v\u002e",_fbbae ); -};}else {_ebaba ._adaae =0;_ebaba ._begg =0;};return _ebaba ,nil ;}; +// Wrap wraps the text of the chunk into lines based on its style and the +// specified width. +func (_aeaf *TextChunk )Wrap (width float64 )([]string ,error ){if int (width )<=0{return []string {_aeaf .Text },nil ;};var _cagaf []string ;var _cbfee []rune ;var _eefaf float64 ;var _dggcc []float64 ;_ffbdd :=_aeaf .Style ;_edbba :=_ddfgf (_aeaf .Text ); +for _ ,_dbfc :=range _aeaf .Text {if _dbfc =='\u000A'{_bdbcc :=_baecf (string (_cbfee ),_edbba );_cagaf =append (_cagaf ,_dc .TrimRightFunc (_bdbcc ,_cd .IsSpace )+string (_dbfc ));_cbfee =nil ;_eefaf =0;_dggcc =nil ;continue ;};_aada :=_dbfc ==' ';_fcfdf ,_ggbg :=_ffbdd .Font .GetRuneMetrics (_dbfc ); +if !_ggbg {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006det\u0072i\u0063\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064!\u0020\u0072\u0075\u006e\u0065\u003d\u0030\u0078\u0025\u0030\u0034\u0078\u003d\u0025\u0063\u0020\u0066o\u006e\u0074\u003d\u0025\u0073\u0020\u0025\u0023\u0071",_dbfc ,_dbfc ,_ffbdd .Font .BaseFont (),_ffbdd .Font .Subtype ()); +_ca .Log .Trace ("\u0046o\u006e\u0074\u003a\u0020\u0025\u0023v",_ffbdd .Font );_ca .Log .Trace ("\u0045\u006e\u0063o\u0064\u0065\u0072\u003a\u0020\u0025\u0023\u0076",_ffbdd .Font .Encoder ());return nil ,_fa .New ("\u0067\u006c\u0079\u0070\u0068\u0020\u0063\u0068\u0061\u0072\u0020m\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u006d\u0069\u0073s\u0069\u006e\u0067"); +};_dbfbgf :=_ffbdd .FontSize *_fcfdf .Wx ;_ffbba :=_dbfbgf ;if !_aada {_ffbba =_dbfbgf +_ffbdd .CharSpacing *1000.0;};if _eefaf +_dbfbgf > width *1000.0{_fbcgf :=-1;if !_aada {for _aaddb :=len (_cbfee )-1;_aaddb >=0;_aaddb --{if _cbfee [_aaddb ]==' '{_fbcgf =_aaddb ; +break ;};};};_aacc :=string (_cbfee );if _fbcgf > 0{_aacc =string (_cbfee [0:_fbcgf +1]);_cbfee =append (_cbfee [_fbcgf +1:],_dbfc );_dggcc =append (_dggcc [_fbcgf +1:],_ffbba );_eefaf =0;for _ ,_acaef :=range _dggcc {_eefaf +=_acaef ;};}else {if _aada {_cbfee =[]rune {}; +_dggcc =[]float64 {};_eefaf =0;}else {_cbfee =[]rune {_dbfc };_dggcc =[]float64 {_ffbba };_eefaf =_ffbba ;};};_aacc =_baecf (_aacc ,_edbba );_cagaf =append (_cagaf ,_dc .TrimRightFunc (_aacc ,_cd .IsSpace ));}else {_cbfee =append (_cbfee ,_dbfc );_eefaf +=_ffbba ; +_dggcc =append (_dggcc ,_ffbba );};};if len (_cbfee )> 0{_bffc :=string (_cbfee );_bffc =_baecf (_bffc ,_edbba );_cagaf =append (_cagaf ,_bffc );};return _cagaf ,nil ;};func _cagg (_bacc [][]_fc .CubicBezierCurve )*CurvePolygon {return &CurvePolygon {_ecae :&_fc .CurvePolygon {Rings :_bacc },_gfage :1.0,_fgcc :1.0}; +}; -// Append adds a new text chunk to the paragraph. -func (_gggag *StyledParagraph )Append (text string )*TextChunk {_adec :=NewTextChunk (text ,_gggag ._aegbg );return _gggag .appendChunk (_adec );}; +// Fit fits the chunk into the specified bounding box, cropping off the +// remainder in a new chunk, if it exceeds the specified dimensions. +// NOTE: The method assumes a line height of 1.0. In order to account for other +// line height values, the passed in height must be divided by the line height: +// height = height / lineHeight +func (_gcga *TextChunk )Fit (width ,height float64 )(*TextChunk ,error ){_bcdc ,_ggfg :=_gcga .Wrap (width );if _ggfg !=nil {return nil ,_ggfg ;};_dbgcf :=int (height /_gcga .Style .FontSize );if _dbgcf >=len (_bcdc ){return nil ,nil ;};_bdcc :="\u000a"; +_gcga .Text =_dc .Replace (_dc .Join (_bcdc [:_dbgcf ],"\u0020"),_bdcc +"\u0020",_bdcc ,-1);_gcfgd :=_dc .Replace (_dc .Join (_bcdc [_dbgcf :],"\u0020"),_bdcc +"\u0020",_bdcc ,-1);return NewTextChunk (_gcfgd ,_gcga .Style ),nil ;}; -// BorderWidth returns the border width of the rectangle. -func (_caga *Rectangle )BorderWidth ()float64 {return _caga ._aebcg }; +// SetOpacity sets opacity for Image. +func (_eaebb *Image )SetOpacity (opacity float64 ){_eaebb ._feef =opacity }; -// GetMargins returns the Paragraph's margins: left, right, top, bottom. -func (_ebff *Paragraph )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _ebff ._fbba .Left ,_ebff ._fbba .Right ,_ebff ._fbba .Top ,_ebff ._fbba .Bottom ;};func (_ebcee *templateProcessor )parseCellVerticalAlignmentAttr (_bbbec ,_abaec string )CellVerticalAlignment {_eef .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u0065\u006c\u006c\u0020\u0076\u0065r\u0074\u0069\u0063\u0061\u006c\u0020\u0061\u006c\u0069\u0067\u006e\u006d\u0065n\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a (\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_bbbec ,_abaec ); -_dbdc :=map[string ]CellVerticalAlignment {"\u0074\u006f\u0070":CellVerticalAlignmentTop ,"\u006d\u0069\u0064\u0064\u006c\u0065":CellVerticalAlignmentMiddle ,"\u0062\u006f\u0074\u0074\u006f\u006d":CellVerticalAlignmentBottom }[_abaec ];return _dbdc ;}; +// SetText replaces all the text of the paragraph with the specified one. +func (_deeg *StyledParagraph )SetText (text string )*TextChunk {_deeg .Reset ();return _deeg .Append (text );}; +// SetBorderColor sets the cell's border color. +func (_bgdag *TableCell )SetBorderColor (col Color ){_bgdag ._egde =col ;_bgdag ._dagd =col ;_bgdag ._aeec =col ;_bgdag ._afga =col ;};func _gfbgg (_aggfa *templateProcessor ,_ccfbc *templateNode )(interface{},error ){return _aggfa .parseTextChunk (_ccfbc ,nil ); +};func (_fafb *templateProcessor )parseMarginAttr (_bcdfb ,_eadea string )Margins {_ca .Log .Debug ("\u0050\u0061r\u0073\u0069\u006e\u0067 \u006d\u0061r\u0067\u0069\u006e\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c \u0025\u0073\u0029\u002e",_bcdfb ,_eadea ); +_adaace :=Margins {};switch _dgffb :=_dc .Fields (_eadea );len (_dgffb ){case 1:_adaace .Top ,_ =_a .ParseFloat (_dgffb [0],64);_adaace .Bottom =_adaace .Top ;_adaace .Left =_adaace .Top ;_adaace .Right =_adaace .Top ;case 2:_adaace .Top ,_ =_a .ParseFloat (_dgffb [0],64); +_adaace .Bottom =_adaace .Top ;_adaace .Left ,_ =_a .ParseFloat (_dgffb [1],64);_adaace .Right =_adaace .Left ;case 3:_adaace .Top ,_ =_a .ParseFloat (_dgffb [0],64);_adaace .Left ,_ =_a .ParseFloat (_dgffb [1],64);_adaace .Right =_adaace .Left ;_adaace .Bottom ,_ =_a .ParseFloat (_dgffb [2],64); +case 4:_adaace .Top ,_ =_a .ParseFloat (_dgffb [0],64);_adaace .Right ,_ =_a .ParseFloat (_dgffb [1],64);_adaace .Bottom ,_ =_a .ParseFloat (_dgffb [2],64);_adaace .Left ,_ =_a .ParseFloat (_dgffb [3],64);};return _adaace ;}; -// SetWidth set the Image's document width to specified w. This does not change the raw image data, i.e. -// no actual scaling of data is performed. That is handled by the PDF viewer. -func (_dcbe *Image )SetWidth (w float64 ){_dcbe ._gfef =w }; +// Height returns the height of the list. +func (_gggb *List )Height ()float64 {var _ededb float64 ;for _ ,_daccg :=range _gggb ._bede {_ededb +=_daccg .ctxHeight (_gggb .Width ());};return _ededb ;}; -// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated -// if the contents wrap over multiple pages. -func (_eeag *Invoice )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_beee :=ctx ;_abgbc :=[]func (_cgdc DrawContext )([]*Block ,DrawContext ,error ){_eeag .generateHeaderBlocks ,_eeag .generateInformationBlocks ,_eeag .generateLineBlocks ,_eeag .generateTotalBlocks ,_eeag .generateNoteBlocks }; -var _fbeae []*Block ;for _ ,_fgfe :=range _abgbc {_bace ,_ceefc ,_bgaa :=_fgfe (ctx );if _bgaa !=nil {return _fbeae ,ctx ,_bgaa ;};if len (_fbeae )==0{_fbeae =_bace ;}else if len (_bace )> 0{_fbeae [len (_fbeae )-1].mergeBlocks (_bace [0]);_fbeae =append (_fbeae ,_bace [1:]...); -};ctx =_ceefc ;};if _eeag ._fcgdf .IsRelative (){ctx .X =_beee .X ;};if _eeag ._fcgdf .IsAbsolute (){return _fbeae ,_beee ,nil ;};return _fbeae ,ctx ,nil ;}; +// ColorRGBFrom8bit creates a Color from 8-bit (0-255) r,g,b values. +// Example: +// red := ColorRGBFrom8Bit(255, 0, 0) +func ColorRGBFrom8bit (r ,g ,b byte )Color {return rgbColor {_efdc :float64 (r )/255.0,_fgbf :float64 (g )/255.0,_acbd :float64 (b )/255.0};}; -// NewPolyline creates a new polyline. -func (_afb *Creator )NewPolyline (points []_ce .Point )*Polyline {return _fabb (points )};func _bbec (_ddac *Creator ,_bdgab string ,_dgaaa []byte ,_daad *TemplateOptions ,_babcb componentRenderer )*templateProcessor {if _daad ==nil {_daad =&TemplateOptions {}; -};_daad .init ();if _babcb ==nil {_babcb =_ddac ;};return &templateProcessor {creator :_ddac ,_bbfa :_dgaaa ,_cbdga :_daad ,_fcaeg :_babcb ,_cdgag :_bdgab };}; +// SetSubtotal sets the subtotal of the invoice. +func (_ebbg *Invoice )SetSubtotal (value string ){_ebbg ._befc [1].Value =value };func _dgbfg (_feefb []*ColorPoint )*LinearShading {return &LinearShading {_aecc :&shading {_dedad :ColorWhite ,_daff :false ,_fgdd :[]bool {false ,false },_ggcd :_feefb },_cbgf :&_ggc .PdfRectangle {}}; +};func (_eefea *templateProcessor )parsePageBreak (_eacce *templateNode )(interface{},error ){return _cbag (),nil ;}; -// StyledParagraph represents text drawn with a specified font and can wrap across lines and pages. -// By default occupies the available width in the drawing context. -type StyledParagraph struct{_cfbcg []*TextChunk ;_aegbg TextStyle ;_ggee TextStyle ;_dgbde TextAlignment ;_ggdf TextVerticalAlignment ;_gbcb float64 ;_dgba bool ;_fdfbb float64 ;_ebgbe bool ;_gadge bool ;_ebebd TextOverflow ;_cefe float64 ;_faaba Margins ; -_defc Positioning ;_gbdbe float64 ;_cgcgca float64 ;_bagd float64 ;_agddd float64 ;_egffa [][]*TextChunk ;_cddca func (_bdce *StyledParagraph ,_agab DrawContext );}; +// AddLine appends a new line to the invoice line items table. +func (_ggdc *Invoice )AddLine (values ...string )[]*InvoiceCell {_eadd :=len (_ggdc ._eag );var _gaae []*InvoiceCell ;for _fgbaa ,_bcgca :=range values {_gfcge :=_ggdc .newCell (_bcgca ,_ggdc ._degfg );if _fgbaa < _eadd {_gfcge .Alignment =_ggdc ._eag [_fgbaa ].Alignment ; +};_gaae =append (_gaae ,_gfcge );};_ggdc ._fbac =append (_ggdc ._fbac ,_gaae );return _gaae ;}; -// SetPageSize sets the Creator's page size. Pages that are added after this will be created with -// this Page size. -// Does not affect pages already created. -// -// Common page sizes are defined as constants. -// Examples: -// 1. c.SetPageSize(creator.PageSizeA4) -// 2. c.SetPageSize(creator.PageSizeA3) -// 3. c.SetPageSize(creator.PageSizeLegal) -// 4. c.SetPageSize(creator.PageSizeLetter) -// -// For custom sizes: Use the PPMM (points per mm) and PPI (points per inch) when defining those based on -// physical page sizes: -// -// Examples: -// 1. 10x15 sq. mm: SetPageSize(PageSize{10*creator.PPMM, 15*creator.PPMM}) where PPMM is points per mm. -// 2. 3x2 sq. inches: SetPageSize(PageSize{3*creator.PPI, 2*creator.PPI}) where PPI is points per inch. -func (_efge *Creator )SetPageSize (size PageSize ){_efge ._cab =size ;_efge ._ggfe =size [0];_efge ._bbdg =size [1];_agag :=0.1*_efge ._ggfe ;_efge ._bcbf .Left =_agag ;_efge ._bcbf .Right =_agag ;_efge ._bcbf .Top =_agag ;_efge ._bcbf .Bottom =_agag ; +// SetWidthBottom sets border width for bottom. +func (_ffd *border )SetWidthBottom (bw float64 ){_ffd ._gaf =bw }; + +// SetWidth sets the the Paragraph width. This is essentially the wrapping width, +// i.e. the width the text can extend to prior to wrapping over to next line. +func (_dgfe *StyledParagraph )SetWidth (width float64 ){_dgfe ._gcadd =width ;_dgfe .wrapText ()}; + +// SetLogo sets the logo of the invoice. +func (_ebfc *Invoice )SetLogo (logo *Image ){_ebfc ._bfge =logo };func (_eadge *templateProcessor )parseLineStyleAttr (_fafg ,_fbed string )_fc .LineStyle {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069n\u0067\u0020\u006c\u0069\u006e\u0065\u0020\u0073\u0074\u0079\u006c\u0065\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_fafg ,_fbed ); +_fdace :=map[string ]_fc .LineStyle {"\u0073\u006f\u006ci\u0064":_fc .LineStyleSolid ,"\u0064\u0061\u0073\u0068\u0065\u0064":_fc .LineStyleDashed }[_fbed ];return _fdace ;};func _ddfgf (_ccfea string )bool {_cbbg :=func (_cgdff rune )bool {return _cgdff =='\u000A'}; +_ebda :=_dc .TrimFunc (_ccfea ,_cbbg );_fefcc :=_cag .Paragraph {};_ ,_bcdcc :=_fefcc .SetString (_ebda );if _bcdcc !=nil {return true ;};_bdeb ,_bcdcc :=_fefcc .Order ();if _bcdcc !=nil {return true ;};if _bdeb .NumRuns ()< 1{return true ;};return _fefcc .IsLeftToRight (); }; -// CellBorderStyle defines the table cell's border style. -type CellBorderStyle int ; +// RotatedSize returns the width and height of the rotated block. +func (_dec *Block )RotatedSize ()(float64 ,float64 ){_ ,_ ,_gca ,_eba :=_gcdfe (_dec ._ecd ,_dec ._gfe ,_dec ._de );return _gca ,_eba ;};func (_adebg *templateProcessor )renderNode (_gbca *templateNode )error {_dgea :=_gbca ._caacd ;if _dgea ==nil {return nil ; +};_efecd :=_gbca ._gbdee .Name .Local ;_dacb ,_eeaec :=_acaac [_efecd ];if !_eeaec {_adebg .nodeLogDebug (_gbca ,"I\u006e\u0076\u0061\u006c\u0069\u0064 \u0074\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u002e \u0053\u006b\u0069p\u0070i\u006e\u0067\u002e",_efecd ); +return nil ;};var _efefa interface{};if _gbca ._fbcg !=nil &&_gbca ._fbcg ._caacd !=nil {_adff :=_gbca ._fbcg ._gbdee .Name .Local ;if _ ,_eeaec =_dacb ._bdcdf [_adff ];!_eeaec {_adebg .nodeLogDebug (_gbca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e \u0069\u0073\u0020no\u0074\u0020\u0061\u0020\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u003c\u0025\u0073\u003e\u0020\u0074a\u0067\u002e",_adff ,_efecd ); +return _gfaba ;};_efefa =_gbca ._fbcg ._caacd ;}else {_ebede :="\u0063r\u0065\u0061\u0074\u006f\u0072";switch _adebg ._gcfaeb .(type ){case *Block :_ebede ="\u0062\u006c\u006fc\u006b";};if _ ,_eeaec =_dacb ._bdcdf [_ebede ];!_eeaec {_adebg .nodeLogDebug (_gbca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e \u0069\u0073\u0020no\u0074\u0020\u0061\u0020\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u003c\u0025\u0073\u003e\u0020\u0074a\u0067\u002e",_ebede ,_efecd ); +return _gfaba ;};_efefa =_adebg ._gcfaeb ;};switch _efga :=_efefa .(type ){case componentRenderer :_fccbgd ,_ebbcb :=_dgea .(Drawable );if !_ebbcb {_adebg .nodeLogError (_gbca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u0020\u0069s\u0020n\u006f\u0074\u0020\u0061\u0020\u0064\u0072\u0061\u0077\u0061\u0062\u006c\u0065\u002e",_efecd ,_dgea ); +return _dfgbg ;};_bgddg :=_efga .Draw (_fccbgd );if _bgddg !=nil {return _adebg .nodeError (_gbca ,"\u0043\u0061\u006en\u006f\u0074\u0020\u0064r\u0061\u0077\u0073\u0020\u0074\u0061\u0067 \u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u003a\u0020\u0025\u0073\u002e",_efecd ,_dgea ,_bgddg ); +};case *Division :switch _agde :=_dgea .(type ){case *Background :_efga .SetBackground (_agde );case VectorDrawable :_gfgff :=_efga .Add (_agde );if _gfgff !=nil {return _adebg .nodeError (_gbca ,"\u0043a\u006e\u006eo\u0074\u0020\u0061d\u0064\u0020\u0074\u0061\u0067\u0020\u003c%\u0073\u003e\u0020\u0028\u0025\u0054)\u0020\u0069\u006e\u0074\u006f\u0020\u0061\u0020\u0044\u0069\u0076i\u0073\u0069\u006f\u006e\u003a\u0020\u0025\u0073\u002e",_efecd ,_dgea ,_gfgff ); +};};case *TableCell :_bdddd ,_dabdg :=_dgea .(VectorDrawable );if !_dabdg {_adebg .nodeLogError (_gbca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029 \u0069\u0073\u0020\u006e\u006f\u0074 \u0061\u0020\u0076\u0065\u0063\u0074\u006f\u0072\u0020\u0064\u0072\u0061\u0077a\u0062\u006c\u0065\u002e",_efecd ,_dgea ); +return _dfgbg ;};_fccd :=_efga .SetContent (_bdddd );if _fccd !=nil {return _adebg .nodeError (_gbca ,"C\u0061\u006e\u006e\u006f\u0074\u0020\u0061\u0064\u0064 \u0074\u0061\u0067\u0020\u003c\u0025\u0073> \u0028\u0025\u0054\u0029 \u0069\u006e\u0074\u006f\u0020\u0061\u0020\u0074\u0061bl\u0065\u0020c\u0065\u006c\u006c\u003a\u0020\u0025\u0073\u002e",_efecd ,_dgea ,_fccd ); +};case *StyledParagraph :_aecef ,_gbefc :=_dgea .(*TextChunk );if !_gbefc {_adebg .nodeLogError (_gbca ,"\u0054\u0061\u0067 <\u0025\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u0020i\u0073 \u006eo\u0074 \u0061\u0020\u0074\u0065\u0078\u0074\u0020\u0063\u0068\u0075\u006e\u006b\u002e",_efecd ,_dgea ); +return _dfgbg ;};_efga .appendChunk (_aecef );case *Chapter :switch _eecc :=_dgea .(type ){case *Chapter :return nil ;case *Paragraph :if _gbca ._gbdee .Name .Local =="\u0063h\u0061p\u0074\u0065\u0072\u002d\u0068\u0065\u0061\u0064\u0069\u006e\u0067"{return nil ; +};_bbac :=_efga .Add (_eecc );if _bbac !=nil {return _adebg .nodeError (_gbca ,"\u0043a\u006e\u006eo\u0074\u0020\u0061\u0064d\u0020\u0074\u0061g\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054) \u0069\u006e\u0074o\u0020\u0061 \u0043\u0068\u0061\u0070\u0074\u0065r\u003a\u0020%\u0073\u002e",_efecd ,_dgea ,_bbac ); +};case Drawable :_debca :=_efga .Add (_eecc );if _debca !=nil {return _adebg .nodeError (_gbca ,"\u0043a\u006e\u006eo\u0074\u0020\u0061\u0064d\u0020\u0074\u0061g\u0020\u003c\u0025\u0073\u003e\u0020\u0028\u0025\u0054) \u0069\u006e\u0074o\u0020\u0061 \u0043\u0068\u0061\u0070\u0074\u0065r\u003a\u0020%\u0073\u002e",_efecd ,_dgea ,_debca ); +};};case *List :switch _fcfgc :=_dgea .(type ){case *TextChunk :case *listItem :_efga ._bede =append (_efga ._bede ,_fcfgc );default:_adebg .nodeLogError (_gbca ,"\u0054\u0061\u0067\u0020\u003c\u0025\u0073>\u0020\u0028\u0025T\u0029\u0020\u0069\u0073 \u006e\u006f\u0074\u0020\u0061\u0020\u006c\u0069\u0073\u0074\u0020\u0069\u0074\u0065\u006d\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_efecd ,_dgea ); +};case *listItem :switch _dgacc :=_dgea .(type ){case *TextChunk :case *StyledParagraph :_efga ._gdceb =_dgacc ;case *List :if _dgacc ._ceeg {_dgacc ._egab =15;};_efga ._gdceb =_dgacc ;case *Image :_efga ._gdceb =_dgacc ;case *Division :_efga ._gdceb =_dgacc ; +case *Table :_efga ._gdceb =_dgacc ;default:_adebg .nodeLogError (_gbca ,"\u0054\u0061\u0067\u0020\u003c%\u0073\u003e\u0020\u0028\u0025\u0054\u0029\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u006c\u0069\u0073\u0074\u002e",_efecd ,_dgea ); +return _dfgbg ;};};return nil ;}; -// FooterFunctionArgs holds the input arguments to a footer drawing function. -// It is designed as a struct, so additional parameters can be added in the future with backwards -// compatibility. -type FooterFunctionArgs struct{PageNum int ;TotalPages int ;}; +// GetMargins returns the Image's margins: left, right, top, bottom. +func (_cfdfa *Image )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _cfdfa ._cbea .Left ,_cfdfa ._cbea .Right ,_cfdfa ._cbea .Top ,_cfdfa ._cbea .Bottom ;};func _agbgc (_ffbf ...interface{})(map[string ]interface{},error ){_fefdd :=len (_ffbf ); +if _fefdd %2!=0{_ca .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u0073\u0020\u0066\u006f\u0072\u0020\u0063\u0072\u0065\u0061\u0074i\u006e\u0067\u0020\u006d\u0061\u0070\u003a\u0020\u0025\u0064\u002e",_fefdd ); +return nil ,_fe .ErrRangeError ;};_fbdg :=map[string ]interface{}{};for _cdaeb :=0;_cdaeb < _fefdd ;_cdaeb +=2{_adda ,_edbce :=_ffbf [_cdaeb ].(string );if !_edbce {_ca .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006d\u0061\u0070 \u006b\u0065\u0079\u0020t\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u002e\u0020\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u002e",_ffbf [_cdaeb ]); +return nil ,_fe .ErrTypeError ;};_fbdg [_adda ]=_ffbf [_cdaeb +1];};return _fbdg ,nil ;}; -// Creator is a wrapper around functionality for creating PDF reports and/or adding new -// content onto imported PDF pages, etc. -type Creator struct{ +// NoteStyle returns the style properties used to render the content of the +// invoice note sections. +func (_ggcg *Invoice )NoteStyle ()TextStyle {return _ggcg ._dcfab }; -// Errors keeps error messages that should not interrupt pdf processing and to be checked later. -Errors []error ; +// SetBorderColor sets the border color. +func (_effeg *Polygon )SetBorderColor (color Color ){_effeg ._gbda .BorderColor =_dbac (color )};func (_ffgg *Table )getLastCellFromCol (_ebgg int )(int ,*TableCell ){for _fdeg :=len (_ffgg ._cacca )-1;_fdeg >=0;_fdeg --{if _ffgg ._cacca [_fdeg ]._eafbd ==_ebgg {return _fdeg ,_ffgg ._cacca [_fdeg ]; +};};return 0,nil ;};func _baecf (_gbbbf string ,_bgdcb bool )string {_faggbb :=_gbbbf ;if _faggbb ==""{return "";};_ffede :=_cag .Paragraph {};_ ,_eebag :=_ffede .SetString (_gbbbf );if _eebag !=nil {return _faggbb ;};_eabcc ,_eebag :=_ffede .Order (); +if _eebag !=nil {return _faggbb ;};_cgeaf :=_eabcc .NumRuns ();_bbbgb :=make ([]string ,_cgeaf );for _ccafe :=0;_ccafe < _eabcc .NumRuns ();_ccafe ++{_dgdg :=_eabcc .Run (_ccafe );_cdcf :=_dgdg .String ();if _dgdg .Direction ()==_cag .RightToLeft {_cdcf =_cag .ReverseString (_cdcf ); +};if _bgdcb {_bbbgb [_ccafe ]=_cdcf ;}else {_bbbgb [_cgeaf -1]=_cdcf ;};_cgeaf --;};if len (_bbbgb )!=_eabcc .NumRuns (){return _gbbbf ;};_faggbb =_dc .Join (_bbbgb ,"");return _faggbb ;}; -// UnsupportedCharacterReplacement is character that will be used to replace unsupported glyph. -// The value will be passed to drawing context. -UnsupportedCharacterReplacement rune ;_ccgg []*_fa .PdfPage ;_ecd map[*_fa .PdfPage ]*Block ;_fgec map[*_fa .PdfPage ]*pageTransformations ;_aca *_fa .PdfPage ;_cab PageSize ;_gbb DrawContext ;_bcbf Margins ;_ggfe ,_bbdg float64 ;_eddf int ;_fcaa func (_cedb FrontpageFunctionArgs ); -_eccg func (_abb *TOC )error ;_feef func (_efa *Block ,_bdba HeaderFunctionArgs );_ddb func (_fbb *Block ,_dccee FooterFunctionArgs );_geab func (_bfb PageFinalizeFunctionArgs )error ;_gbgd func (_dabd *_fa .PdfWriter )error ;_beb bool ; +// SetWidthLeft sets border width for left. +func (_gbb *border )SetWidthLeft (bw float64 ){_gbb ._gcd =bw }; -// Controls whether a table of contents will be generated. -AddTOC bool ; +// Link returns link information for this line. +func (_gcada *TOCLine )Link ()(_fbca int64 ,_dfecg ,_bdaaf float64 ){return _gcada ._eefcc ,_gcada ._efdgc ,_gcada ._cafda ;};func (_ggfbf *TOCLine )getLineLink ()*_ggc .PdfAnnotation {if _ggfbf ._eefcc <=0{return nil ;};return _bfefg (_ggfbf ._eefcc -1,_ggfbf ._efdgc ,_ggfbf ._cafda ,0); +}; -// CustomTOC specifies if the TOC is rendered by the user. -// When the `CustomTOC` field is set to `true`, the default TOC component is not rendered. -// Instead the TOC is drawn by the user, in the callback provided to -// the `Creator.CreateTableOfContents` method. -// If `CustomTOC` is set to `false`, the callback provided to -// `Creator.CreateTableOfContents` customizes the style of the automatically generated TOC component. -CustomTOC bool ;_bbgg *TOC ; +// SetExtends specifies whether ot extend the shading beyond the starting and ending points. +// +// Text extends is set to `[]bool{false, false}` by default. +func (_adgaa *LinearShading )SetExtends (start bool ,end bool ){_adgaa ._aecc .SetExtends (start ,end )}; -// Controls whether outlines will be generated. -AddOutlines bool ;_ffgcf *_fa .Outline ;_abfe *_fa .PdfOutlineTreeNode ;_adea *_fa .PdfAcroForm ;_aded _ea .PdfObject ;_effb _fa .Optimizer ;_gfc []*_fa .PdfFont ;_aebd *_fa .PdfFont ;_gaba *_fa .PdfFont ;};func (_dgefg *templateProcessor )parseTableCell (_efgfc *templateNode )(interface{},error ){if _efgfc ._bgba ==nil {_dgefg .nodeLogError (_efgfc ,"\u0054\u0061\u0062\u006c\u0065\u0020\u0063\u0065\u006c\u006c\u0020\u0070\u0061\u0072\u0065n\u0074 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c\u002e"); -return nil ,_abag ;};_afge ,_fcafe :=_efgfc ._bgba ._ccfeb .(*Table );if !_fcafe {_dgefg .nodeLogError (_efgfc ,"\u0054\u0061\u0062\u006c\u0065\u0020\u0063\u0065\u006c\u006c\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u0028\u0025\u0054\u0029\u0020\u0069s\u0020\u006e\u006f\u0074\u0020a\u0020\u0074a\u0062\u006c\u0065\u002e",_efgfc ._bgba ._ccfeb ); -return nil ,_abag ;};var _fgcaa ,_efaa int64 ;for _ ,_fbaff :=range _efgfc ._facfb .Attr {_ebbe :=_fbaff .Value ;switch _bcad :=_fbaff .Name .Local ;_bcad {case "\u0063o\u006c\u0073\u0070\u0061\u006e":_fgcaa =_dgefg .parseInt64Attr (_bcad ,_ebbe );case "\u0072o\u0077\u0073\u0070\u0061\u006e":_efaa =_dgefg .parseInt64Attr (_bcad ,_ebbe ); -};};if _fgcaa <=0{_fgcaa =1;};if _efaa <=0{_efaa =1;};_aagcf :=_afge .MultiCell (int (_efaa ),int (_fgcaa ));for _ ,_acccd :=range _efgfc ._facfb .Attr {_dacee :=_acccd .Value ;switch _ddacb :=_acccd .Name .Local ;_ddacb {case "\u0069\u006e\u0064\u0065\u006e\u0074":_aagcf .SetIndent (_dgefg .parseFloatAttr (_ddacb ,_dacee )); -case "\u0061\u006c\u0069g\u006e":_aagcf .SetHorizontalAlignment (_dgefg .parseCellAlignmentAttr (_ddacb ,_dacee ));case "\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u002da\u006c\u0069\u0067\u006e":_aagcf .SetVerticalAlignment (_dgefg .parseCellVerticalAlignmentAttr (_ddacb ,_dacee )); -case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0073\u0074\u0079\u006c\u0065":_aagcf .SetSideBorderStyle (CellBorderSideAll ,_dgefg .parseCellBorderStyleAttr (_ddacb ,_dacee ));case "\u0062\u006fr\u0064\u0065\u0072-\u0073\u0074\u0079\u006c\u0065\u002d\u0074\u006f\u0070":_aagcf .SetSideBorderStyle (CellBorderSideTop ,_dgefg .parseCellBorderStyleAttr (_ddacb ,_dacee )); -case "\u0062\u006f\u0072\u0064er\u002d\u0073\u0074\u0079\u006c\u0065\u002d\u0062\u006f\u0074\u0074\u006f\u006d":_aagcf .SetSideBorderStyle (CellBorderSideBottom ,_dgefg .parseCellBorderStyleAttr (_ddacb ,_dacee ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0073\u0074\u0079\u006c\u0065-\u006c\u0065\u0066\u0074":_aagcf .SetSideBorderStyle (CellBorderSideLeft ,_dgefg .parseCellBorderStyleAttr (_ddacb ,_dacee )); -case "\u0062o\u0072d\u0065\u0072\u002d\u0073\u0074y\u006c\u0065-\u0072\u0069\u0067\u0068\u0074":_aagcf .SetSideBorderStyle (CellBorderSideRight ,_dgefg .parseCellBorderStyleAttr (_ddacb ,_dacee ));case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068":_aagcf .SetSideBorderWidth (CellBorderSideAll ,_dgefg .parseFloatAttr (_ddacb ,_dacee )); -case "\u0062\u006fr\u0064\u0065\u0072-\u0077\u0069\u0064\u0074\u0068\u002d\u0074\u006f\u0070":_aagcf .SetSideBorderWidth (CellBorderSideTop ,_dgefg .parseFloatAttr (_ddacb ,_dacee ));case "\u0062\u006f\u0072\u0064er\u002d\u0077\u0069\u0064\u0074\u0068\u002d\u0062\u006f\u0074\u0074\u006f\u006d":_aagcf .SetSideBorderWidth (CellBorderSideBottom ,_dgefg .parseFloatAttr (_ddacb ,_dacee )); -case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0077\u0069\u0064\u0074\u0068-\u006c\u0065\u0066\u0074":_aagcf .SetSideBorderWidth (CellBorderSideLeft ,_dgefg .parseFloatAttr (_ddacb ,_dacee ));case "\u0062o\u0072d\u0065\u0072\u002d\u0077\u0069d\u0074\u0068-\u0072\u0069\u0067\u0068\u0074":_aagcf .SetSideBorderWidth (CellBorderSideRight ,_dgefg .parseFloatAttr (_ddacb ,_dacee )); -case "\u0062\u006f\u0072d\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072":_aagcf .SetSideBorderColor (CellBorderSideAll ,_dgefg .parseColorAttr (_ddacb ,_dacee ));case "\u0062\u006fr\u0064\u0065\u0072-\u0063\u006f\u006c\u006f\u0072\u002d\u0074\u006f\u0070":_aagcf .SetSideBorderColor (CellBorderSideTop ,_dgefg .parseColorAttr (_ddacb ,_dacee )); -case "\u0062\u006f\u0072\u0064er\u002d\u0063\u006f\u006c\u006f\u0072\u002d\u0062\u006f\u0074\u0074\u006f\u006d":_aagcf .SetSideBorderColor (CellBorderSideBottom ,_dgefg .parseColorAttr (_ddacb ,_dacee ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u0063\u006f\u006c\u006f\u0072-\u006c\u0065\u0066\u0074":_aagcf .SetSideBorderColor (CellBorderSideLeft ,_dgefg .parseColorAttr (_ddacb ,_dacee )); -case "\u0062o\u0072d\u0065\u0072\u002d\u0063\u006fl\u006f\u0072-\u0072\u0069\u0067\u0068\u0074":_aagcf .SetSideBorderColor (CellBorderSideRight ,_dgefg .parseColorAttr (_ddacb ,_dacee ));case "\u0062\u006f\u0072\u0064\u0065\u0072\u002d\u006c\u0069\u006e\u0065\u002ds\u0074\u0079\u006c\u0065":_aagcf .SetBorderLineStyle (_dgefg .parseLineStyleAttr (_ddacb ,_dacee )); -case "\u0062\u0061c\u006b\u0067\u0072o\u0075\u006e\u0064\u002d\u0063\u006f\u006c\u006f\u0072":_aagcf .SetBackgroundColor (_dgefg .parseColorAttr (_ddacb ,_dacee ));case "\u0063o\u006c\u0073\u0070\u0061\u006e","\u0072o\u0077\u0073\u0070\u0061\u006e":break ; -default:_dgefg .nodeLogDebug (_efgfc ,"\u0055\u006e\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0063\u0065\u006c\u006c\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e",_ddacb ); -};};return _aagcf ,nil ;}; +// Polygon represents a polygon shape. +// Implements the Drawable interface and can be drawn on PDF using the Creator. +type Polygon struct{_gbda *_fc .Polygon ;_befea float64 ;_dffbb float64 ;_ddcb Color ;};const (CellBorderSideLeft CellBorderSide =iota ;CellBorderSideRight ;CellBorderSideTop ;CellBorderSideBottom ;CellBorderSideAll ;); -// GraphicSVG represents a drawable graphic SVG. -// It is used to render the graphic SVG components using a creator instance. -type GraphicSVG struct{_baea *_ga .GraphicSVG ;_gacf Positioning ;_gfgc float64 ;_dffe float64 ;_eefa Margins ;}; +// GetCoords returns the (x1, y1), (x2, y2) points defining the Line. +func (_eecec *Line )GetCoords ()(float64 ,float64 ,float64 ,float64 ){return _eecec ._daed ,_eecec ._gfaa ,_eecec ._eddg ,_eecec ._eabb ;};func (_gdgg *InvoiceAddress )fmtLine (_bbcc ,_bacbg string ,_bgda bool )string {if _bgda {_bacbg ="";};return _df .Sprintf ("\u0025\u0073\u0025s\u000a",_bacbg ,_bbcc ); +}; -// GeneratePageBlocks draws the chart onto a block. -func (_eadc *Chart )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_ffgc :=ctx ;_aebe :=_eadc ._gbdd .IsRelative ();var _cggca []*Block ;if _aebe {_ffd :=1.0;_ffgg :=_eadc ._ebga .Top ;if float64 (_eadc ._ccf .Height ())> ctx .Height -_eadc ._ebga .Top {_cggca =[]*Block {NewBlock (ctx .PageWidth ,ctx .PageHeight -ctx .Y )}; -var _cdbcf error ;if _ ,ctx ,_cdbcf =_ddge ().GeneratePageBlocks (ctx );_cdbcf !=nil {return nil ,ctx ,_cdbcf ;};_ffgg =0;};ctx .X +=_eadc ._ebga .Left +_ffd ;ctx .Y +=_ffgg ;ctx .Width -=_eadc ._ebga .Left +_eadc ._ebga .Right +2*_ffd ;ctx .Height -=_ffgg ; -_eadc ._ccf .SetWidth (int (ctx .Width ));}else {ctx .X =_eadc ._ggf ;ctx .Y =_eadc ._gfe ;};_afad :=_bd .NewContentCreator ();_afad .Translate (0,ctx .PageHeight );_afad .Scale (1,-1);_afad .Translate (ctx .X ,ctx .Y );_fbaf :=NewBlock (ctx .PageWidth ,ctx .PageHeight ); -_eadc ._ccf .Render (_ffe .NewRenderer (_afad ,_fbaf ._gae ),nil );if _adbe :=_fbaf .addContentsByString (_afad .String ());_adbe !=nil {return nil ,ctx ,_adbe ;};if _aebe {_daba :=_eadc .Height ()+_eadc ._ebga .Bottom ;ctx .Y +=_daba ;ctx .Height -=_daba ; -}else {ctx =_ffgc ;};_cggca =append (_cggca ,_fbaf );return _cggca ,ctx ,nil ;}; +// SetPositioning sets the positioning of the line (absolute or relative). +func (_fdca *Line )SetPositioning (positioning Positioning ){_fdca ._fgef =positioning }; -// Logo returns the logo of the invoice. -func (_eaab *Invoice )Logo ()*Image {return _eaab ._fabc }; +// SetLineSeparator sets the separator for all new lines of the table of contents. +func (_bgcc *TOC )SetLineSeparator (separator string ){_bgcc ._feaba =separator }; -// SetAntiAlias enables anti alias config. -// -// Anti alias is disabled by default. -func (_cbffg *RadialShading )SetAntiAlias (enable bool ){_cbffg ._gcbg .SetAntiAlias (enable )}; +// Height returns the height of the Paragraph. The height is calculated based on the input text and how it is wrapped +// within the container. Does not include Margins. +func (_eafe *StyledParagraph )Height ()float64 {_eafe .wrapText ();var _baeec float64 ;for _ ,_ccdb :=range _eafe ._aabba {var _cbgag float64 ;for _ ,_ffgec :=range _ccdb {_gdbe :=_eafe ._babcf *_ffgec .Style .FontSize ;if _gdbe > _cbgag {_cbgag =_gdbe ; +};};_baeec +=_cbgag ;};return _baeec ;};func _dccb (_ddae ,_gfca ,_bbea ,_ebfe float64 )*Ellipse {return &Ellipse {_eebe :_ddae ,_beb :_gfca ,_eded :_bbea ,_dabc :_ebfe ,_acgd :PositionAbsolute ,_ddbf :1.0,_fegd :ColorBlack ,_fgcca :1.0,_dadc :1.0};};func (_dcga *templateProcessor )parseTextRenderingModeAttr (_afcag ,_ggea string )TextRenderingMode {_ca .Log .Debug ("\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0074\u0065\u0078\u0074\u0020\u0072\u0065\u006e\u0064\u0065r\u0069\u006e\u0067\u0020\u006d\u006f\u0064e\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a \u0028\u0060\u0025\u0073\u0060\u002c\u0020\u0025\u0073\u0029\u002e",_afcag ,_ggea ); +_ccdbg :=map[string ]TextRenderingMode {"\u0066\u0069\u006c\u006c":TextRenderingModeFill ,"\u0073\u0074\u0072\u006f\u006b\u0065":TextRenderingModeStroke ,"f\u0069\u006c\u006c\u002d\u0073\u0074\u0072\u006f\u006b\u0065":TextRenderingModeFillStroke ,"\u0069n\u0076\u0069\u0073\u0069\u0062\u006ce":TextRenderingModeInvisible ,"\u0066i\u006c\u006c\u002d\u0063\u006c\u0069p":TextRenderingModeFillClip ,"s\u0074\u0072\u006f\u006b\u0065\u002d\u0063\u006c\u0069\u0070":TextRenderingModeStrokeClip ,"\u0066\u0069l\u006c\u002d\u0073t\u0072\u006f\u006b\u0065\u002d\u0063\u006c\u0069\u0070":TextRenderingModeFillStrokeClip ,"\u0063\u006c\u0069\u0070":TextRenderingModeClip }[_ggea ]; +return _ccdbg ;}; -// NewCurve returns new instance of Curve between points (x1,y1) and (x2, y2) with control point (cx,cy). -func (_cade *Creator )NewCurve (x1 ,y1 ,cx ,cy ,x2 ,y2 float64 )*Curve {return _eaage (x1 ,y1 ,cx ,cy ,x2 ,y2 );}; +// SetStyle sets the style of the line (solid or dashed). +func (_deda *Line )SetStyle (style _fc .LineStyle ){_deda ._ceac =style };func (_ccfcg *shading )generatePdfFunctions ()[]_ggc .PdfFunction {if len (_ccfcg ._ggcd )==0{return nil ;}else if len (_ccfcg ._ggcd )<=2{_bdbff ,_bdgac ,_fcaaf :=_ccfcg ._ggcd [0]._afea .ToRGB (); +_faed ,_ddag ,_bgfcg :=_ccfcg ._ggcd [len (_ccfcg ._ggcd )-1]._afea .ToRGB ();return []_ggc .PdfFunction {&_ggc .PdfFunctionType2 {Domain :[]float64 {0.0,1.0},Range :[]float64 {0.0,1.0,0.0,1.0,0.0,1.0},N :1,C0 :[]float64 {_bdbff ,_bdgac ,_fcaaf },C1 :[]float64 {_faed ,_ddag ,_bgfcg }}}; +}else {_faefdd :=[]_ggc .PdfFunction {};_beefd :=[]float64 {};for _bagd :=0;_bagd < len (_ccfcg ._ggcd )-1;_bagd ++{_fege ,_dcfb ,_gdcbf :=_ccfcg ._ggcd [_bagd ]._afea .ToRGB ();_eefe ,_gedf ,_gefe :=_ccfcg ._ggcd [_bagd +1]._afea .ToRGB ();_bfdbe :=&_ggc .PdfFunctionType2 {Domain :[]float64 {0.0,1.0},Range :[]float64 {0.0,1.0,0.0,1.0,0.0,1.0},N :1,C0 :[]float64 {_fege ,_dcfb ,_gdcbf },C1 :[]float64 {_eefe ,_gedf ,_gefe }}; +_faefdd =append (_faefdd ,_bfdbe );if _bagd > 0{_beefd =append (_beefd ,_ccfcg ._ggcd [_bagd ]._dbcfd );};};_daffe :=[]float64 {};for range _faefdd {_daffe =append (_daffe ,[]float64 {0.0,1.0}...);};return []_ggc .PdfFunction {&_ggc .PdfFunctionType3 {Domain :[]float64 {0.0,1.0},Range :[]float64 {0.0,1.0,0.0,1.0,0.0,1.0},Functions :_faefdd ,Bounds :_beefd ,Encode :_daffe }}; +};}; -// Width returns Image's document width. -func (_adfe *Image )Width ()float64 {return _adfe ._gfef }; +// Length calculates and returns the length of the line. +func (_cfbae *Line )Length ()float64 {return _b .Sqrt (_b .Pow (_cfbae ._eddg -_cfbae ._daed ,2.0)+_b .Pow (_cfbae ._eabb -_cfbae ._gfaa ,2.0));};func (_eg *Block )setOpacity (_aeg float64 ,_ag float64 )(string ,error ){if (_aeg < 0||_aeg >=1.0)&&(_ag < 0||_ag >=1.0){return "",nil ; +};_gge :=0;_bgc :=_df .Sprintf ("\u0047\u0053\u0025\u0064",_gge );for _eg ._ge .HasExtGState (_fe .PdfObjectName (_bgc )){_gge ++;_bgc =_df .Sprintf ("\u0047\u0053\u0025\u0064",_gge );};_fd :=_fe .MakeDict ();if _aeg >=0&&_aeg < 1.0{_fd .Set ("\u0063\u0061",_fe .MakeFloat (_aeg )); +};if _ag >=0&&_ag < 1.0{_fd .Set ("\u0043\u0041",_fe .MakeFloat (_ag ));};_cdf :=_eg ._ge .AddExtGState (_fe .PdfObjectName (_bgc ),_fd );if _cdf !=nil {return "",_cdf ;};return _bgc ,nil ;}; -// SetColor sets the color of the Paragraph text. -// -// Example: -// -// 1. p := NewParagraph("Red paragraph") -// // Set to red color with a hex code: -// p.SetColor(creator.ColorRGBFromHex("#ff0000")) -// -// 2. Make Paragraph green with 8-bit rgb values (0-255 each component) -// p.SetColor(creator.ColorRGBFrom8bit(0, 255, 0) -// -// 3. Make Paragraph blue with arithmetic (0-1) rgb components. -// p.SetColor(creator.ColorRGBFromArithmetic(0, 0, 1.0) -func (_dgee *Paragraph )SetColor (col Color ){_dgee ._beaa =col }; +// BorderColor returns the border color of the ellipse. +func (_geefb *Ellipse )BorderColor ()Color {return _geefb ._fegd }; -// BorderOpacity returns the border opacity of the rectangle (0-1). -func (_gcbe *Rectangle )BorderOpacity ()float64 {return _gcbe ._gacec }; +// Append adds a new text chunk to the paragraph. +func (_aaba *StyledParagraph )Append (text string )*TextChunk {_dddec :=NewTextChunk (text ,_aaba ._egcg );return _aaba .appendChunk (_dddec );}; -// SetColorRight sets border color for right. -func (_fcea *border )SetColorRight (col Color ){_fcea ._fdaa =col };func (_bccg *Invoice )generateTotalBlocks (_gbfbcc DrawContext )([]*Block ,DrawContext ,error ){_fgabf :=_bgfa (4);_fgabf .SetMargins (0,0,10,10);_fcdg :=[][2]*InvoiceCell {_bccg ._aeggf }; -_fcdg =append (_fcdg ,_bccg ._cgca ...);_fcdg =append (_fcdg ,_bccg ._cadf );for _ ,_adaca :=range _fcdg {_eecc ,_aebc :=_adaca [0],_adaca [1];if _aebc .Value ==""{continue ;};_fgabf .SkipCells (2);_afce :=_fgabf .NewCell ();_afce .SetBackgroundColor (_eecc .BackgroundColor ); -_afce .SetHorizontalAlignment (_aebc .Alignment );_bccg .setCellBorder (_afce ,_eecc );_fbad :=_defdc (_eecc .TextStyle );_fbad .SetMargins (0,0,2,1);_fbad .Append (_eecc .Value );_afce .SetContent (_fbad );_afce =_fgabf .NewCell ();_afce .SetBackgroundColor (_aebc .BackgroundColor ); -_afce .SetHorizontalAlignment (_aebc .Alignment );_bccg .setCellBorder (_afce ,_eecc );_fbad =_defdc (_aebc .TextStyle );_fbad .SetMargins (0,0,2,1);_fbad .Append (_aebc .Value );_afce .SetContent (_fbad );};return _fgabf .GeneratePageBlocks (_gbfbcc ); -}; +// SetMargins sets the margins of the paragraph. +func (_bbbf *List )SetMargins (left ,right ,top ,bottom float64 ){_bbbf ._fed .Left =left ;_bbbf ._fed .Right =right ;_bbbf ._fed .Top =top ;_bbbf ._fed .Bottom =bottom ;}; -// ScaleToWidth scales the rectangle to the specified width. The height of -// the rectangle is scaled so that the aspect ratio is maintained. -func (_becg *Rectangle )ScaleToWidth (w float64 ){_edddd :=_becg ._baag /_becg ._faaa ;_becg ._faaa =w ;_becg ._baag =w *_edddd ;}; +// MoveDown moves the drawing context down by relative displacement dy (negative goes up). +func (_bgfd *Creator )MoveDown (dy float64 ){_bgfd ._eacd .Y +=dy }; -// TOC returns the table of contents component of the creator. -func (_gcb *Creator )TOC ()*TOC {return _gcb ._bbgg }; +// SetSellerAddress sets the seller address of the invoice. +func (_cecbg *Invoice )SetSellerAddress (address *InvoiceAddress ){_cecbg ._cfbbb =address }; -// GetMargins returns the Block's margins: left, right, top, bottom. -func (_gggg *Block )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _gggg ._fe .Left ,_gggg ._fe .Right ,_gggg ._fe .Top ,_gggg ._fe .Bottom ;}; +// SetBorderColor sets the border color for the path. +func (_bgac *FilledCurve )SetBorderColor (color Color ){_bgac ._eadf =color }; -// MoveDown moves the drawing context down by relative displacement dy (negative goes up). -func (_efbg *Creator )MoveDown (dy float64 ){_efbg ._gbb .Y +=dy }; +// ToPdfShadingPattern generates a new model.PdfShadingPatternType3 object. +func (_dffe *RadialShading )ToPdfShadingPattern ()*_ggc .PdfShadingPatternType3 {_cffc ,_ebeg ,_bfbe :=_dffe ._fcacc ._dedad .ToRGB ();_gace :=_dffe .shadingModel ();_gace .PdfShading .Background =_fe .MakeArrayFromFloats ([]float64 {_cffc ,_ebeg ,_bfbe }); +_fdff :=_ggc .NewPdfShadingPatternType3 ();_fdff .Shading =_gace ;return _fdff ;};func (_fdfd *Table )updateRowHeights (_cddag float64 ){for _ ,_ageb :=range _fdfd ._cacca {_aeeac :=_ageb .width (_fdfd ._abbbf ,_cddag );_dbde :=_ageb .height (_aeeac ); +_aadc :=_fdfd ._begb [_ageb ._deded +_ageb ._ffgdb -2];if _ageb ._ffgdb > 1{_fgccd :=0.0;_fccbe :=_fdfd ._begb [_ageb ._deded -1:(_ageb ._deded +_ageb ._ffgdb -1)];for _ ,_cebd :=range _fccbe {_fgccd +=_cebd ;};if _dbde <=_fgccd {continue ;};};if _dbde > _aadc {_bbaa :=_dbde /float64 (_ageb ._ffgdb ); +if _bbaa > _aadc {for _ggac :=1;_ggac <=_ageb ._ffgdb ;_ggac ++{if _bbaa > _fdfd ._begb [_ageb ._deded +_ggac -2]{_fdfd ._begb [_ageb ._deded +_ggac -2]=_bbaa ;};};};};};};func (_bafb *templateProcessor )parseChapter (_edbdc *templateNode )(interface{},error ){_cfbe :=_bafb .creator .NewChapter ; +if _edbdc ._fbcg !=nil {if _fffed ,_feda :=_edbdc ._fbcg ._caacd .(*Chapter );_feda {_cfbe =_fffed .NewSubchapter ;};};_gfdeg :=_cfbe ("");for _ ,_fgedd :=range _edbdc ._gbdee .Attr {_fcfbb :=_fgedd .Value ;switch _edbf :=_fgedd .Name .Local ;_edbf {case "\u0073\u0068\u006f\u0077\u002d\u006e\u0075\u006d\u0062e\u0072\u0069\u006e\u0067":_gfdeg .SetShowNumbering (_bafb .parseBoolAttr (_edbf ,_fcfbb )); +case "\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u002d\u0069n\u002d\u0074\u006f\u0063":_gfdeg .SetIncludeInTOC (_bafb .parseBoolAttr (_edbf ,_fcfbb ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_baaaa :=_bafb .parseMarginAttr (_edbf ,_fcfbb );_gfdeg .SetMargins (_baaaa .Left ,_baaaa .Right ,_baaaa .Top ,_baaaa .Bottom ); +default:_bafb .nodeLogDebug (_edbdc ,"\u0055\u006es\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u0068\u0061\u0070\u0074\u0065\u0072\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_edbf ); +};};return _gfdeg ,nil ;};type border struct{_agf float64 ;_gea float64 ;_dcf float64 ;_aebc float64 ;_cde Color ;_fcg Color ;_gcd float64 ;_agg Color ;_gaf float64 ;_add Color ;_ebb float64 ;_feg Color ;_cdgaa float64 ;LineStyle _fc .LineStyle ;_acba CellBorderStyle ; +_dabg CellBorderStyle ;_deccc CellBorderStyle ;_cffe CellBorderStyle ;}; -// SetOpacity sets the opacity of the line (0-1). -func (_fbaa *Line )SetOpacity (opacity float64 ){_fbaa ._gcaa =opacity };func _bdbc (_cfa *Chapter ,_cdda *TOC ,_gbeb *_fa .Outline ,_gcd string ,_bge int ,_dbeb TextStyle )*Chapter {var _fecc uint =1;if _cfa !=nil {_fecc =_cfa ._feed +1;};_dgf :=&Chapter {_fgb :_bge ,_ebfe :_gcd ,_faea :true ,_abee :true ,_eda :_cfa ,_gdaf :_cdda ,_eaa :_gbeb ,_cdde :[]Drawable {},_feed :_fecc }; -_adf :=_gacc (_dgf .headingText (),_dbeb );_adf .SetFont (_dbeb .Font );_adf .SetFontSize (_dbeb .FontSize );_dgf ._abd =_adf ;return _dgf ;}; +// Scale sets the scale ratio with `X` factor and `Y` factor for the graphic svg. +func (_bfcf *GraphicSVG )Scale (xFactor ,yFactor float64 ){_bfcf ._dgaf .Width =xFactor *_bfcf ._dgaf .Width ;_bfcf ._dgaf .Height =yFactor *_bfcf ._dgaf .Height ;_bfcf ._dgaf .SetScaling (xFactor ,yFactor );}; -// SetFillOpacity sets the fill opacity of the ellipse. -func (_abea *Ellipse )SetFillOpacity (opacity float64 ){_abea ._facc =opacity }; +// NewCell returns a new invoice table cell. +func (_bcbe *Invoice )NewCell (value string )*InvoiceCell {return _bcbe .newCell (value ,_bcbe .NewCellProps ());}; -// SetFillColor sets the fill color. -func (_gdfg *CurvePolygon )SetFillColor (color Color ){_gdfg ._ddbg =color ;_gdfg ._dbag .FillColor =_gdfa (color );};func _edd (_dfgc ,_dcce ,_ddf ,_ggb float64 )*border {_abe :=&border {};_abe ._acb =_dfgc ;_abe ._edb =_dcce ;_abe ._dgga =_ddf ;_abe ._fbce =_ggb ; -_abe ._dcd =ColorBlack ;_abe ._ada =ColorBlack ;_abe ._bgfg =ColorBlack ;_abe ._fdaa =ColorBlack ;_abe ._ead =0;_abe ._bbdf =0;_abe ._feg =0;_abe ._gea =0;_abe .LineStyle =_ce .LineStyleSolid ;return _abe ;}; +// TitleStyle returns the style properties used to render the invoice title. +func (_bagc *Invoice )TitleStyle ()TextStyle {return _bagc ._eefc };type templateNode struct{_caacd interface{};_gbdee _e .StartElement ;_fbcg *templateNode ;_febd int ;_fgfag int ;_gcfag int64 ;}; -// FilledCurve represents a closed path of Bezier curves with a border and fill. -type FilledCurve struct{_edeb []_ce .CubicBezierCurve ;FillEnabled bool ;_dagdb Color ;BorderEnabled bool ;BorderWidth float64 ;_baed Color ;}; +// LineWidth returns the width of the line. +func (_ecead *Line )LineWidth ()float64 {return _ecead ._adf }; -// GeneratePageBlocks generate the Page blocks. Multiple blocks are generated if the contents wrap -// over multiple pages. -func (_eec *Chapter )GeneratePageBlocks (ctx DrawContext )([]*Block ,DrawContext ,error ){_cged :=ctx ;if _eec ._bcgd .IsRelative (){ctx .X +=_eec ._dee .Left ;ctx .Y +=_eec ._dee .Top ;ctx .Width -=_eec ._dee .Left +_eec ._dee .Right ;ctx .Height -=_eec ._dee .Top ; -};_dfb ,_eea ,_gbgg :=_eec ._abd .GeneratePageBlocks (ctx );if _gbgg !=nil {return _dfb ,ctx ,_gbgg ;};ctx =_eea ;_gdeg :=ctx .X ;_cbdb :=ctx .Y -_eec ._abd .Height ();_ecc :=int64 (ctx .Page );_fbe :=_eec .headingNumber ();_fgeg :=_eec .headingText (); -if _eec ._abee {_ega :=_eec ._gdaf .Add (_fbe ,_eec ._ebfe ,_a .FormatInt (_ecc ,10),_eec ._feed );if _eec ._gdaf ._cfgge {_ega .SetLink (_ecc ,_gdeg ,_cbdb );};};if _eec ._efcd ==nil {_eec ._efcd =_fa .NewOutlineItem (_fgeg ,_fa .NewOutlineDest (_ecc -1,_gdeg ,_cbdb )); -if _eec ._eda !=nil {_eec ._eda ._efcd .Add (_eec ._efcd );}else {_eec ._eaa .Add (_eec ._efcd );};}else {_cbcg :=&_eec ._efcd .Dest ;_cbcg .Page =_ecc -1;_cbcg .X =_gdeg ;_cbcg .Y =_cbdb ;};for _ ,_bcbb :=range _eec ._cdde {_efba ,_eege ,_adeec :=_bcbb .GeneratePageBlocks (ctx ); -if _adeec !=nil {return _dfb ,ctx ,_adeec ;};if len (_efba )< 1{continue ;};_dfb [len (_dfb )-1].mergeBlocks (_efba [0]);_dfb =append (_dfb ,_efba [1:]...);ctx =_eege ;};if _eec ._bcgd .IsRelative (){ctx .X =_cged .X ;};if _eec ._bcgd .IsAbsolute (){return _dfb ,_cged ,nil ; -};return _dfb ,ctx ,nil ;}; +// SetColumns overwrites any columns in the line items table. This should be +// called before AddLine. +func (_eeba *Invoice )SetColumns (cols []*InvoiceCell ){_eeba ._eag =cols }; -// Indent returns the left offset of the list when nested into another list. -func (_ffbf *List )Indent ()float64 {return _ffbf ._dcdc }; +// SetBoundingBox set gradient color bounding box where the gradient would be rendered. +func (_gfcc *RadialShading )SetBoundingBox (x ,y ,width ,height float64 ){_gfcc ._bbccc =&_ggc .PdfRectangle {Llx :x ,Lly :y ,Urx :x +width ,Ury :y +height };};func (_dbagg *Image )applyFitMode (_ffff float64 ){_ffff -=_dbagg ._cbea .Left +_dbagg ._cbea .Right ; +switch _dbagg ._geaf {case FitModeFillWidth :_dbagg .ScaleToWidth (_ffff );};}; -// SetMargins sets the margins of the rectangle. -// NOTE: rectangle margins are only applied if relative positioning is used. -func (_cbcgb *Rectangle )SetMargins (left ,right ,top ,bottom float64 ){_cbcgb ._bacfa .Left =left ;_cbcgb ._bacfa .Right =right ;_cbcgb ._bacfa .Top =top ;_cbcgb ._bacfa .Bottom =bottom ;};func (_fbcc *templateProcessor )parseLinkAttr (_aadae ,_bbfad string )*_fa .PdfAnnotation {_bbfad =_dc .TrimSpace (_bbfad ); -if _dc .HasPrefix (_bbfad ,"\u0075\u0072\u006c(\u0027")&&_dc .HasSuffix (_bbfad ,"\u0027\u0029")&&len (_bbfad )> 7{return _daffb (_bbfad [5:len (_bbfad )-2]);};if _dc .HasPrefix (_bbfad ,"\u0070\u0061\u0067e\u0028")&&_dc .HasSuffix (_bbfad ,"\u0029")&&len (_bbfad )> 6{var (_fadc error ; -_ecdf int64 ;_dbef float64 ;_fdade float64 ;_gbdba =1.0;_ffgbg =_dc .Split (_bbfad [5:len (_bbfad )-1],"\u002c"););_ecdf ,_fadc =_a .ParseInt (_dc .TrimSpace (_ffgbg [0]),10,64);if _fadc !=nil {_eef .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0070\u0061\u0067\u0065\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_fadc ); -return nil ;};if len (_ffgbg )>=2{_dbef ,_fadc =_a .ParseFloat (_dc .TrimSpace (_ffgbg [1]),64);if _fadc !=nil {_eef .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072\u0073\u0069\u006eg\u0020\u0058\u0020\u0070\u006f\u0073i\u0074\u0069\u006f\u006e\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_fadc ); -return nil ;};};if len (_ffgbg )>=3{_fdade ,_fadc =_a .ParseFloat (_dc .TrimSpace (_ffgbg [2]),64);if _fadc !=nil {_eef .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072\u0073\u0069\u006eg\u0020\u0059\u0020\u0070\u006f\u0073i\u0074\u0069\u006f\u006e\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_fadc ); -return nil ;};};if len (_ffgbg )>=4{_gbdba ,_fadc =_a .ParseFloat (_dc .TrimSpace (_ffgbg [3]),64);if _fadc !=nil {_eef .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u007a\u006f\u006f\u006d\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_fadc ); -return nil ;};};return _ccbeg (_ecdf -1,_dbef ,_fdade ,_gbdba );};return nil ;};const (CellBorderStyleNone CellBorderStyle =iota ;CellBorderStyleSingle ;CellBorderStyleDouble ;); +// NoteHeadingStyle returns the style properties used to render the heading of +// the invoice note sections. +func (_agb *Invoice )NoteHeadingStyle ()TextStyle {return _agb ._daag }; -// AddExternalLink adds a new external link to the paragraph. -// The text parameter represents the text that is displayed and the url -// parameter sets the destionation of the link. -func (_agcge *StyledParagraph )AddExternalLink (text ,url string )*TextChunk {_eedfc :=NewTextChunk (text ,_agcge ._ggee );_eedfc ._gbgga =_daffb (url );return _agcge .appendChunk (_eedfc );}; +// SetStyleBottom sets border style for bottom side. +func (_gccc *border )SetStyleBottom (style CellBorderStyle ){_gccc ._cffe =style }; -// SetLineHeight sets the line height (1.0 default). -func (_febdd *Paragraph )SetLineHeight (lineheight float64 ){_febdd ._ecegc =lineheight }; +// SetFillColor sets the fill color for the path. +func (_cbgc *FilledCurve )SetFillColor (color Color ){_cbgc ._ddddf =color };func (_caddc *templateProcessor )parseLine (_fecfg *templateNode )(interface{},error ){_eabfb :=_caddc .creator .NewLine (0,0,0,0);for _ ,_fdfde :=range _fecfg ._gbdee .Attr {_aaaec :=_fdfde .Value ; +switch _aeede :=_fdfde .Name .Local ;_aeede {case "\u0078\u0031":_eabfb ._daed =_caddc .parseFloatAttr (_aeede ,_aaaec );case "\u0079\u0031":_eabfb ._gfaa =_caddc .parseFloatAttr (_aeede ,_aaaec );case "\u0078\u0032":_eabfb ._eddg =_caddc .parseFloatAttr (_aeede ,_aaaec ); +case "\u0079\u0032":_eabfb ._eabb =_caddc .parseFloatAttr (_aeede ,_aaaec );case "\u0074h\u0069\u0063\u006b\u006e\u0065\u0073s":_eabfb .SetLineWidth (_caddc .parseFloatAttr (_aeede ,_aaaec ));case "\u0063\u006f\u006co\u0072":_eabfb .SetColor (_caddc .parseColorAttr (_aeede ,_aaaec )); +case "\u0073\u0074\u0079l\u0065":_eabfb .SetStyle (_caddc .parseLineStyleAttr (_aeede ,_aaaec ));case "\u0064\u0061\u0073\u0068\u002d\u0061\u0072\u0072\u0061\u0079":_eabfb .SetDashPattern (_caddc .parseInt64Array (_aeede ,_aaaec ),_eabfb ._bgfed );case "\u0064\u0061\u0073\u0068\u002d\u0070\u0068\u0061\u0073\u0065":_eabfb .SetDashPattern (_eabfb ._fgbfg ,_caddc .parseInt64Attr (_aeede ,_aaaec )); +case "\u006fp\u0061\u0063\u0069\u0074\u0079":_eabfb .SetOpacity (_caddc .parseFloatAttr (_aeede ,_aaaec ));case "\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e":_eabfb .SetPositioning (_caddc .parsePositioningAttr (_aeede ,_aaaec ));case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_eabfb .SetFitMode (_caddc .parseFitModeAttr (_aeede ,_aaaec )); +case "\u006d\u0061\u0072\u0067\u0069\u006e":_cbgdb :=_caddc .parseMarginAttr (_aeede ,_aaaec );_eabfb .SetMargins (_cbgdb .Left ,_cbgdb .Right ,_cbgdb .Top ,_cbgdb .Bottom );default:_caddc .nodeLogDebug (_fecfg ,"\u0055\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u006c\u0069\u006e\u0065 \u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020\u0060\u0025\u0073\u0060\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_aeede ); +};};return _eabfb ,nil ;};func (_gfaf *templateProcessor )parseLinkAttr (_geec ,_aefad string )*_ggc .PdfAnnotation {_aefad =_dc .TrimSpace (_aefad );if _dc .HasPrefix (_aefad ,"\u0075\u0072\u006c(\u0027")&&_dc .HasSuffix (_aefad ,"\u0027\u0029")&&len (_aefad )> 7{return _gfcae (_aefad [5:len (_aefad )-2]); +};if _dc .HasPrefix (_aefad ,"\u0070\u0061\u0067e\u0028")&&_dc .HasSuffix (_aefad ,"\u0029")&&len (_aefad )> 6{var (_ggada error ;_gegc int64 ;_agfa float64 ;_babedc float64 ;_acgad =1.0;_adadc =_dc .Split (_aefad [5:len (_aefad )-1],"\u002c"););_gegc ,_ggada =_a .ParseInt (_dc .TrimSpace (_adadc [0]),10,64); +if _ggada !=nil {_ca .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0070\u0061\u0067\u0065\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_ggada );return nil ;};if len (_adadc )>=2{_agfa ,_ggada =_a .ParseFloat (_dc .TrimSpace (_adadc [1]),64); +if _ggada !=nil {_ca .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072\u0073\u0069\u006eg\u0020\u0058\u0020\u0070\u006f\u0073i\u0074\u0069\u006f\u006e\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_ggada ); +return nil ;};};if len (_adadc )>=3{_babedc ,_ggada =_a .ParseFloat (_dc .TrimSpace (_adadc [2]),64);if _ggada !=nil {_ca .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0070\u0061\u0072\u0073\u0069\u006eg\u0020\u0059\u0020\u0070\u006f\u0073i\u0074\u0069\u006f\u006e\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_ggada ); +return nil ;};};if len (_adadc )>=4{_acgad ,_ggada =_a .ParseFloat (_dc .TrimSpace (_adadc [3]),64);if _ggada !=nil {_ca .Log .Error ("\u0046\u0061\u0069\u006c\u0065\u0064 \u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u007a\u006f\u006f\u006d\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u003a\u0020\u0025\u0076",_ggada ); +return nil ;};};return _bfefg (_gegc -1,_agfa ,_babedc ,_acgad );};return nil ;}; -// SetSubtotal sets the subtotal of the invoice. -func (_dagg *Invoice )SetSubtotal (value string ){_dagg ._aeggf [1].Value =value }; +// AddColorStop add color stop info for rendering gradient color. +func (_eaba *RadialShading )AddColorStop (color Color ,point float64 ){_eaba ._fcacc .AddColorStop (color ,point );}; -// ScaleToHeight scales the ellipse to the specified height. The width of -// the ellipse is scaled so that the aspect ratio is maintained. -func (_faeb *Ellipse )ScaleToHeight (h float64 ){_ffbb :=_faeb ._bgea /_faeb ._dceb ;_faeb ._dceb =h ;_faeb ._bgea =h *_ffbb ;}; +// TextDecorationLineStyle represents the style of lines used to decorate +// a text chunk (e.g. underline). +type TextDecorationLineStyle struct{ -// SetMargins sets the margins TOC line. -func (_adgbc *TOCLine )SetMargins (left ,right ,top ,bottom float64 ){_adgbc ._fdbdf =left ;_cffgg :=&_adgbc ._bagf ._faaba ;_cffgg .Left =_adgbc ._fdbdf +float64 (_adgbc ._dabge -1)*_adgbc ._ddccb ;_cffgg .Right =right ;_cffgg .Top =top ;_cffgg .Bottom =bottom ; -}; +// Color represents the color of the line (default: the color of the text). +Color Color ; + +// Offset represents the vertical offset of the line (default: 1). +Offset float64 ; + +// Thickness represents the thickness of the line (default: 1). +Thickness float64 ;}; + +// TextVerticalAlignment controls the vertical position of the text +// in a styled paragraph. +type TextVerticalAlignment int ; + +// SetPos sets the Block's positioning to absolute mode with the specified coordinates. +func (_gba *Block )SetPos (x ,y float64 ){_gba ._ba =PositionAbsolute ;_gba ._gb =x ;_gba ._gf =y }; // Height returns Image's document height. -func (_eba *Image )Height ()float64 {return _eba ._ffab };func _cdaaa (_fece ...interface{})(map[string ]interface{},error ){_fddd :=len (_fece );if _fddd %2!=0{_eef .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065r\u0073\u0020\u0066\u006f\u0072\u0020\u0063\u0072\u0065\u0061\u0074i\u006e\u0067\u0020\u006d\u0061\u0070\u003a\u0020\u0025\u0064\u002e",_fddd ); -return nil ,_ea .ErrRangeError ;};_ecgcb :=map[string ]interface{}{};for _gfbbe :=0;_gfbbe < _fddd ;_gfbbe +=2{_fdfdg ,_fefab :=_fece [_gfbbe ].(string );if !_fefab {_eef .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u006d\u0061\u0070 \u006b\u0065\u0079\u0020t\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u002e\u0020\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u002e",_fece [_gfbbe ]); -return nil ,_ea .ErrTypeError ;};_ecgcb [_fdfdg ]=_fece [_gfbbe +1];};return _ecgcb ,nil ;}; +func (_bcggd *Image )Height ()float64 {return _bcggd ._efef }; -// SetBorderColor sets the cell's border color. -func (_dcbbc *TableCell )SetBorderColor (col Color ){_dcbbc ._cgce =col ;_dcbbc ._cfaea =col ;_dcbbc ._egddb =col ;_dcbbc ._bbcfdd =col ;};func _ecgd (_abca string )(*GraphicSVG ,error ){_ceea ,_gcedg :=_ga .ParseFromString (_abca );if _gcedg !=nil {return nil ,_gcedg ; -};return _dbcb (_ceea );}; +// LevelOffset returns the amount of space an indentation level occupies. +func (_aaff *TOCLine )LevelOffset ()float64 {return _aaff ._aeeeg }; -// SetFillColor sets the fill color for the path. -func (_geedb *FilledCurve )SetFillColor (color Color ){_geedb ._dagdb =color }; +// NewPolyBezierCurve creates a new composite Bezier (polybezier) curve. +func (_ggdf *Creator )NewPolyBezierCurve (curves []_fc .CubicBezierCurve )*PolyBezierCurve {return _caaf (curves );};func (_efbc *List )ctxHeight (_fgfa float64 )float64 {_fgfa -=_efbc ._egab ;var _bbdcb float64 ;for _ ,_baac :=range _efbc ._bede {_bbdcb +=_baac .ctxHeight (_fgfa ); +};return _bbdcb ;};func (_fbea *StyledParagraph )getLineMetrics (_gffg int )(_cgaa ,_aace ,_fbfb float64 ){if _fbea ._aabba ==nil ||len (_fbea ._aabba )==0{_fbea .wrapText ();};if _gffg < 0||_gffg > len (_fbea ._aabba )-1{_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020p\u0061\u0072\u0061\u0067\u0072\u0061\u0070\u0068\u0020\u006c\u0069\u006e\u0065 \u0069\u006e\u0064\u0065\u0078\u0020\u0025\u0064\u002e\u0020\u0052\u0065tu\u0072\u006e\u0069\u006e\u0067\u0020\u0030\u002c\u0020\u0030",_gffg ); +return 0,0,0;};_bcgd :=_fbea ._aabba [_gffg ];for _ ,_bcca :=range _bcgd {_bfede :=_ecfaf (_bcca .Style .Font ,_bcca .Style .FontSize );if _bfede ._bacbec > _cgaa {_cgaa =_bfede ._bacbec ;};if _bfede ._afebc < _fbfb {_fbfb =_bfede ._afebc ;};if _fbde :=_bcca .Style .FontSize ; +_fbde > _aace {_aace =_fbde ;};};return _cgaa ,_aace ,_fbfb ;}; -// GetMargins returns the Image's margins: left, right, top, bottom. -func (_fcdc *Image )GetMargins ()(float64 ,float64 ,float64 ,float64 ){return _fcdc ._gbba .Left ,_fcdc ._gbba .Right ,_fcdc ._gbba .Top ,_fcdc ._gbba .Bottom ;}; +// SetMargins sets the margins of the graphic svg component. +func (_cfdbf *GraphicSVG )SetMargins (left ,right ,top ,bottom float64 ){_cfdbf ._eaff .Left =left ;_cfdbf ._eaff .Right =right ;_cfdbf ._eaff .Top =top ;_cfdbf ._eaff .Bottom =bottom ;}; -// NewRectangle creates a new rectangle with the left corner at (`x`, `y`), -// having the specified width and height. -// NOTE: In relative positioning mode, `x` and `y` are calculated using the -// current context. Furthermore, when the fit mode is set to fill the available -// space, the rectangle is scaled so that it occupies the entire context width -// while maintaining the original aspect ratio. -func (_deab *Creator )NewRectangle (x ,y ,width ,height float64 )*Rectangle {return _cfce (x ,y ,width ,height );}; +// SetLineStyle sets the style for all the line components: number, title, +// separator, page. The style is applied only for new lines added to the +// TOC component. +func (_ggbce *TOC )SetLineStyle (style TextStyle ){_ggbce .SetLineNumberStyle (style );_ggbce .SetLineTitleStyle (style );_ggbce .SetLineSeparatorStyle (style );_ggbce .SetLinePageStyle (style );};func _gedea (_cgccg *templateProcessor ,_fegdb *templateNode )(interface{},error ){return _cgccg .parseLine (_fegdb ); +};func _gddf (_fdfaf *_ggc .PdfRectangle ,_aecca _bd .Matrix )*_ggc .PdfRectangle {var _dccgc _ggc .PdfRectangle ;_dccgc .Llx ,_dccgc .Lly =_aecca .Transform (_fdfaf .Llx ,_fdfaf .Lly );_dccgc .Urx ,_dccgc .Ury =_aecca .Transform (_fdfaf .Urx ,_fdfaf .Ury ); +_dccgc .Normalize ();return &_dccgc ;}; -// SetLineTitleStyle sets the style for the title part of all new lines -// of the table of contents. -func (_gagc *TOC )SetLineTitleStyle (style TextStyle ){_gagc ._agde =style }; +// ScaleToHeight scales the ellipse to the specified height. The width of +// the ellipse is scaled so that the aspect ratio is maintained. +func (_becd *Ellipse )ScaleToHeight (h float64 ){_eebbe :=_becd ._eded /_becd ._dabc ;_becd ._dabc =h ;_becd ._eded =h *_eebbe ;}; -// SetBorderRadius sets the radius of the background corners. -func (_be *Background )SetBorderRadius (topLeft ,topRight ,bottomLeft ,bottomRight float64 ){_be .BorderRadiusTopLeft =topLeft ;_be .BorderRadiusTopRight =topRight ;_be .BorderRadiusBottomLeft =bottomLeft ;_be .BorderRadiusBottomRight =bottomRight ;}; +// TextAlignment options for paragraph. +type TextAlignment int ;func (_acgb *Creator )setActivePage (_ccdd *_ggc .PdfPage ){_acgb ._bcba =_ccdd };func (_eefa *Invoice )setCellBorder (_bfga *TableCell ,_bdgcc *InvoiceCell ){for _ ,_deefa :=range _bdgcc .BorderSides {_bfga .SetBorder (_deefa ,CellBorderStyleSingle ,_bdgcc .BorderWidth ); +};_bfga .SetBorderColor (_bdgcc .BorderColor );};func (_bdbbe *TableCell )cloneProps (_gfdfd VectorDrawable )*TableCell {_cdag :=*_bdbbe ;_cdag ._efbbe =_gfdfd ;return &_cdag ;}; -// Positioning returns the type of positioning the ellipse is set to use. -func (_gecf *Ellipse )Positioning ()Positioning {return _gecf ._dada }; +// SetTerms sets the terms and conditions section of the invoice. +func (_gbg *Invoice )SetTerms (title ,content string ){_gbg ._aacd =[2]string {title ,content }}; -// SetBorderColor sets border color of the rectangle. -func (_gafg *Rectangle )SetBorderColor (col Color ){_gafg ._bada =col }; +// Lines returns all the lines the table of contents has. +func (_dbed *TOC )Lines ()[]*TOCLine {return _dbed ._fbeeg };func (_ggcc *templateProcessor )parseImage (_cfgfd *templateNode )(interface{},error ){var _acfe string ;for _ ,_fffcb :=range _cfgfd ._gbdee .Attr {_gacge :=_fffcb .Value ;switch _ebgbc :=_fffcb .Name .Local ; +_ebgbc {case "\u0073\u0072\u0063":_acfe =_gacge ;};};_dcee ,_ccec :=_ggcc .loadImageFromSrc (_acfe );if _ccec !=nil {return nil ,_ccec ;};for _ ,_dedb :=range _cfgfd ._gbdee .Attr {_aafg :=_dedb .Value ;switch _gcca :=_dedb .Name .Local ;_gcca {case "\u0061\u006c\u0069g\u006e":_dcee .SetHorizontalAlignment (_ggcc .parseHorizontalAlignmentAttr (_gcca ,_aafg )); +case "\u006fp\u0061\u0063\u0069\u0074\u0079":_dcee .SetOpacity (_ggcc .parseFloatAttr (_gcca ,_aafg ));case "\u006d\u0061\u0072\u0067\u0069\u006e":_ceeda :=_ggcc .parseMarginAttr (_gcca ,_aafg );_dcee .SetMargins (_ceeda .Left ,_ceeda .Right ,_ceeda .Top ,_ceeda .Bottom ); +case "\u0066\u0069\u0074\u002d\u006d\u006f\u0064\u0065":_dcee .SetFitMode (_ggcc .parseFitModeAttr (_gcca ,_aafg ));case "\u0078":_dcee .SetPos (_ggcc .parseFloatAttr (_gcca ,_aafg ),_dcee ._gdd );case "\u0079":_dcee .SetPos (_dcee ._fce ,_ggcc .parseFloatAttr (_gcca ,_aafg )); +case "\u0077\u0069\u0064t\u0068":_dcee .SetWidth (_ggcc .parseFloatAttr (_gcca ,_aafg ));case "\u0068\u0065\u0069\u0067\u0068\u0074":_dcee .SetHeight (_ggcc .parseFloatAttr (_gcca ,_aafg ));case "\u0061\u006e\u0067l\u0065":_dcee .SetAngle (_ggcc .parseFloatAttr (_gcca ,_aafg )); +case "\u0073\u0072\u0063":break ;default:_ggcc .nodeLogDebug (_cfgfd ,"\u0055n\u0073\u0075p\u0070\u006f\u0072\u0074e\u0064\u0020\u0069m\u0061\u0067\u0065\u0020\u0061\u0074\u0074\u0072\u0069bu\u0074\u0065\u003a \u0060\u0025s\u0060\u002e\u0020\u0053\u006b\u0069p\u0070\u0069n\u0067\u002e",_gcca ); +};};return _dcee ,nil ;};func _ggdeb (_gdda *templateProcessor ,_becbf *templateNode )(interface{},error ){return _gdda .parseChapterHeading (_becbf );}; -// FillColor returns the fill color of the rectangle. -func (_eaec *Rectangle )FillColor ()Color {return _eaec ._abbg }; +// New creates a new instance of the PDF Creator. +func New ()*Creator {const _ccbe ="c\u0072\u0065\u0061\u0074\u006f\u0072\u002e\u004e\u0065\u0077";_gbbg :=&Creator {};_gbbg ._cec =[]*_ggc .PdfPage {};_gbbg ._gfab =map[*_ggc .PdfPage ]*Block {};_gbbg ._afbc =map[*_ggc .PdfPage ]*pageTransformations {}; +_gbbg .SetPageSize (PageSizeLetter );_aec :=0.1*_gbbg ._abf ;_gbbg ._gcgd .Left =_aec ;_gbbg ._gcgd .Right =_aec ;_gbbg ._gcgd .Top =_aec ;_gbbg ._gcgd .Bottom =_aec ;var _bcgg error ;_gbbg ._gade ,_bcgg =_ggc .NewStandard14Font (_ggc .HelveticaName ); +if _bcgg !=nil {_gbbg ._gade =_ggc .DefaultFont ();};_gbbg ._eacc ,_bcgg =_ggc .NewStandard14Font (_ggc .HelveticaBoldName );if _bcgg !=nil {_gbbg ._gade =_ggc .DefaultFont ();};_gbbg ._effa =_gbbg .NewTOC ("\u0054\u0061\u0062\u006c\u0065\u0020\u006f\u0066\u0020\u0043\u006f\u006et\u0065\u006e\u0074\u0073"); +_gbbg .AddOutlines =true ;_gbbg ._gaec =_ggc .NewOutline ();_be .TrackUse (_ccbe );return _gbbg ;};func (_beac *StyledParagraph )getTextWidth ()float64 {var _bdad float64 ;_fdad :=len (_beac ._cdffa );for _dccc ,_dcdf :=range _beac ._cdffa {_fgggd :=&_dcdf .Style ; +_cdgfd :=len (_dcdf .Text );for _dbbff ,_fcfg :=range _dcdf .Text {if _fcfg =='\u000A'{continue ;};_beece ,_aagc :=_fgggd .Font .GetRuneMetrics (_fcfg );if !_aagc {_ca .Log .Debug ("\u0052\u0075\u006e\u0065\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069c\u0073 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0025\u0076\u000a",_fcfg ); +return -1;};_bdad +=_fgggd .FontSize *_beece .Wx *_fgggd .horizontalScale ();if _fcfg !=' '&&(_dccc !=_fdad -1||_dbbff !=_cdgfd -1){_bdad +=_fgggd .CharSpacing *1000.0;};};};return _bdad ;}; -// SetBorderColor sets the border color of the ellipse. -func (_bedd *Ellipse )SetBorderColor (col Color ){_bedd ._edcd =col };func _gdaaa (_fgge *templateProcessor ,_dgbe *templateNode )(interface{},error ){return _fgge .parseImage (_dgbe );};var (ColorBlack =ColorRGBFromArithmetic (0,0,0);ColorWhite =ColorRGBFromArithmetic (1,1,1); -ColorRed =ColorRGBFromArithmetic (1,0,0);ColorGreen =ColorRGBFromArithmetic (0,1,0);ColorBlue =ColorRGBFromArithmetic (0,0,1);ColorYellow =ColorRGBFromArithmetic (1,1,0);); +// SetLineSeparatorStyle sets the style for the separator part of all new +// lines of the table of contents. +func (_eaaff *TOC )SetLineSeparatorStyle (style TextStyle ){_eaaff ._effdg =style }; -// SetStyleRight sets border style for right side. -func (_gcc *border )SetStyleRight (style CellBorderStyle ){_gcc ._adg =style }; +// NewChapter creates a new chapter with the specified title as the heading. +func (_ffgfa *Creator )NewChapter (title string )*Chapter {_ffgfa ._caffe ++;_cecf :=_ffgfa .NewTextStyle ();_cecf .FontSize =16;return _facd (nil ,_ffgfa ._effa ,_ffgfa ._gaec ,title ,_ffgfa ._caffe ,_cecf );}; -// Polygon represents a polygon shape. +// Rectangle defines a rectangle with upper left corner at (x,y) and a specified width and height. The rectangle +// can have a colored fill and/or border with a specified width. // Implements the Drawable interface and can be drawn on PDF using the Creator. -type Polygon struct{_cgecf *_ce .Polygon ;_bege float64 ;_dgcea float64 ;_beba Color ;}; +type Rectangle struct{_cgedd float64 ;_eeff float64 ;_gfad float64 ;_fefg float64 ;_bbgac Positioning ;_bgca Color ;_geee float64 ;_ecce Color ;_decec float64 ;_ffgd float64 ;_gagef float64 ;_efaga float64 ;_fbcea float64 ;_fdcc float64 ;_ebfce Margins ; +_gaef FitMode ;};type pageTransformations struct{_dafc *_bd .Matrix ;_gfag bool ;_fcaa bool ;}; -// NewFilledCurve returns a instance of filled curve. -func (_gaeg *Creator )NewFilledCurve ()*FilledCurve {return _eecf ()}; \ No newline at end of file +// SetEncoder sets the encoding/compression mechanism for the image. +func (_gdca *Image )SetEncoder (encoder _fe .StreamEncoder ){_gdca ._ggfc =encoder }; + +// NewImageFromGoImage creates an Image from a go image.Image data structure. +func (_aece *Creator )NewImageFromGoImage (goimg _c .Image )(*Image ,error ){return _ddbg (goimg )}; + +// Width returns the width of the graphic svg. +func (_deeb *GraphicSVG )Width ()float64 {return _deeb ._dgaf .Width };func _cebcg (_bggea *templateProcessor ,_geedf *templateNode )(interface{},error ){return _bggea .parseList (_geedf );};func _edbe (_gfcaa TextStyle )*List {return &List {_ebgba :TextChunk {Text :"\u2022\u0020",Style :_gfcaa },_egab :0,_ceeg :true ,_bgdd :PositionRelative ,_dagb :_gfcaa }; +}; + +// FillOpacity returns the fill opacity of the rectangle (0-1). +func (_acfd *Rectangle )FillOpacity ()float64 {return _acfd ._geee }; \ No newline at end of file diff --git a/extractor/extractor.go b/extractor/extractor.go index f090aef78..895472722 100644 --- a/extractor/extractor.go +++ b/extractor/extractor.go @@ -13,56 +13,251 @@ // Package extractor is used for quickly extracting PDF content through a simple interface. // Currently offers functionality for extracting textual content. // -package extractor ;import (_df "bytes";_d "errors";_ge "fmt";_ec "github.com/unidoc/unipdf/v3/common";_ag "github.com/unidoc/unipdf/v3/contentstream";_gb "github.com/unidoc/unipdf/v3/core";_bd "github.com/unidoc/unipdf/v3/internal/license";_fd "github.com/unidoc/unipdf/v3/internal/textencoding"; -_bc "github.com/unidoc/unipdf/v3/internal/transform";_ce "github.com/unidoc/unipdf/v3/model";_b "golang.org/x/image/draw";_ef "golang.org/x/text/unicode/norm";_dfc "golang.org/x/xerrors";_ded "image";_fg "image/color";_a "io";_aa "math";_gc "reflect";_e "regexp"; -_c "sort";_gd "strings";_de "unicode";_g "unicode/utf8";);type lineRuling struct{_fbbag rulingKind ;_aagg markKind ;_fg .Color ;_ddgfc ,_eacg _bc .Point ;};func _ccacc (_effca map[float64 ]gridTile )[]float64 {_cabg :=make ([]float64 ,0,len (_effca )); -for _decbc :=range _effca {_cabg =append (_cabg ,_decbc );};_c .Float64s (_cabg );return _cabg ;};func (_gadb *textObject )showTextAdjusted (_dae *_gb .PdfObjectArray ,_fdbf int )error {_afc :=false ;for _ ,_gaa :=range _dae .Elements (){switch _gaa .(type ){case *_gb .PdfObjectFloat ,*_gb .PdfObjectInteger :_gcacc ,_dceg :=_gb .GetNumberAsFloat (_gaa ); -if _dceg !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0073\u0068\u006f\u0077\u0054\u0065\u0078t\u0041\u0064\u006a\u0075\u0073\u0074\u0065\u0064\u002e\u0020\u0042\u0061\u0064\u0020\u006e\u0075\u006d\u0065r\u0069\u0063\u0061\u006c\u0020a\u0072\u0067\u002e\u0020\u006f\u003d\u0025\u0073\u0020\u0061\u0072\u0067\u0073\u003d\u0025\u002b\u0076",_gaa ,_dae ); -return _dceg ;};_ceeg ,_bfcf :=-_gcacc *0.001*_gadb ._befa ._ccf ,0.0;if _afc {_bfcf ,_ceeg =_ceeg ,_bfcf ;};_cddc :=_dgfb (_bc .Point {X :_ceeg ,Y :_bfcf });_gadb ._eee .Concat (_cddc );case *_gb .PdfObjectString :_abgfd :=_gb .TraceToDirectObject (_gaa ); -_caa ,_bfg :=_gb .GetStringBytes (_abgfd );if !_bfg {_ec .Log .Trace ("s\u0068\u006f\u0077\u0054\u0065\u0078\u0074\u0041\u0064j\u0075\u0073\u0074\u0065\u0064\u003a\u0020Ba\u0064\u0020\u0073\u0074r\u0069\u006e\u0067\u0020\u0061\u0072\u0067\u002e\u0020o=\u0025\u0073 \u0061\u0072\u0067\u0073\u003d\u0025\u002b\u0076",_gaa ,_dae ); -return _gb .ErrTypeError ;};_gadb .renderText (_abgfd ,_caa ,_fdbf );default:_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0073\u0068\u006f\u0077\u0054\u0065\u0078\u0074A\u0064\u006a\u0075\u0073\u0074\u0065\u0064\u002e\u0020\u0055\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0028%T\u0029\u0020\u0061\u0072\u0067\u0073\u003d\u0025\u002b\u0076",_gaa ,_dae ); -return _gb .ErrTypeError ;};};return nil ;};func (_cdeg *textTable )getDown ()paraList {_abfe :=make (paraList ,_cdeg ._ecbf );for _efdbg :=0;_efdbg < _cdeg ._ecbf ;_efdbg ++{_gfffb :=_cdeg .get (_efdbg ,_cdeg ._dcfg -1)._fdgbd ;if _gfffb .taken (){return nil ; -};_abfe [_efdbg ]=_gfffb ;};for _egccf :=0;_egccf < _cdeg ._ecbf -1;_egccf ++{if _abfe [_egccf ]._gaca !=_abfe [_egccf +1]{return nil ;};};return _abfe ;};func (_ecbe *textTable )compositeRowCorridors ()map[int ][]float64 {_edadb :=make (map[int ][]float64 ,_ecbe ._dcfg ); -if _afcg {_ec .Log .Info ("c\u006f\u006d\u0070\u006f\u0073\u0069t\u0065\u0052\u006f\u0077\u0043\u006f\u0072\u0072\u0069d\u006f\u0072\u0073:\u0020h\u003d\u0025\u0064",_ecbe ._dcfg );};for _fffe :=1;_fffe < _ecbe ._dcfg ;_fffe ++{var _abag []compositeCell ; -for _bbfba :=0;_bbfba < _ecbe ._ecbf ;_bbfba ++{if _cdcb ,_cdfcf :=_ecbe ._egfe [_aaca (_bbfba ,_fffe )];_cdfcf {_abag =append (_abag ,_cdcb );};};if len (_abag )==0{continue ;};_ebef :=_ccef (_abag );_edadb [_fffe ]=_ebef ;if _afcg {_ge .Printf ("\u0020\u0020\u0020\u0025\u0032\u0064\u003a\u0020\u00256\u002e\u0032\u0066\u000a",_fffe ,_ebef ); -};};return _edadb ;};func (_egcc pathSection )bbox ()_ce .PdfRectangle {_fgfa :=_egcc ._fbfe [0]._gfefe [0];_dabg :=_ce .PdfRectangle {Llx :_fgfa .X ,Urx :_fgfa .X ,Lly :_fgfa .Y ,Ury :_fgfa .Y };_cae :=func (_bgbe _bc .Point ){if _bgbe .X < _dabg .Llx {_dabg .Llx =_bgbe .X ; -}else if _bgbe .X > _dabg .Urx {_dabg .Urx =_bgbe .X ;};if _bgbe .Y < _dabg .Lly {_dabg .Lly =_bgbe .Y ;}else if _bgbe .Y > _dabg .Ury {_dabg .Ury =_bgbe .Y ;};};for _ ,_gcgb :=range _egcc ._fbfe [0]._gfefe [1:]{_cae (_gcgb );};for _ ,_addf :=range _egcc ._fbfe [1:]{for _ ,_gggf :=range _addf ._gfefe {_cae (_gggf ); -};};return _dabg ;};func (_fdeea paraList )readBefore (_dddgd []int ,_cbgba ,_cbbc int )bool {_aggf ,_deed :=_fdeea [_cbgba ],_fdeea [_cbbc ];if _adcg (_aggf ,_deed )&&_aggf .Lly > _deed .Lly {return true ;};if !(_aggf ._ebcf .Urx < _deed ._ebcf .Llx ){return false ; -};_cgec ,_caaec :=_aggf .Lly ,_deed .Lly ;if _cgec > _caaec {_caaec ,_cgec =_cgec ,_caaec ;};_agef :=_aa .Max (_aggf ._ebcf .Llx ,_deed ._ebcf .Llx );_agbf :=_aa .Min (_aggf ._ebcf .Urx ,_deed ._ebcf .Urx );_ddgf :=_fdeea .llyRange (_dddgd ,_cgec ,_caaec ); -for _ ,_egde :=range _ddgf {if _egde ==_cbgba ||_egde ==_cbbc {continue ;};_fgbg :=_fdeea [_egde ];if _fgbg ._ebcf .Llx <=_agbf &&_agef <=_fgbg ._ebcf .Urx {return false ;};};return true ;};func (_badb *textObject )nextLine (){_badb .moveLP (0,-_badb ._befa ._dcc )}; -func (_ggff *shapesState )quadraticTo (_aad ,_dfdc ,_gaga ,_dcba float64 ){if _cbag {_ec .Log .Info ("\u0071\u0075\u0061d\u0072\u0061\u0074\u0069\u0063\u0054\u006f\u003a");};_ggff .addPoint (_gaga ,_dcba );};type textLine struct{_ce .PdfRectangle ;_bcdg float64 ; -_aebc []*textWord ;_ecag float64 ;};func (_gecd *textObject )setTextRenderMode (_cdfe int ){if _gecd ==nil {return ;};_gecd ._befa ._bbd =RenderMode (_cdfe );};func (_aeg *PageText )getParagraphs ()paraList {var _gfg rulingList ;if _gfag {_dgef :=_beca (_aeg ._geda ); -_gfg =append (_gfg ,_dgef ...);};if _dbbc {_gcbcd :=_fdab (_aeg ._gegc );_gfg =append (_gfg ,_gcbcd ...);};_gfg ,_bbfb :=_gfg .toTilings ();var _gbafd paraList ;_bfae :=len (_aeg ._fcag );for _dfd :=0;_dfd < 360&&_bfae > 0;_dfd +=90{_aba :=make ([]*textMark ,0,len (_aeg ._fcag )-_bfae ); -for _ ,_bfdd :=range _aeg ._fcag {if _bfdd ._edge ==_dfd {_aba =append (_aba ,_bfdd );};};if len (_aba )> 0{_ddfba :=_fbcc (_aba ,_aeg ._fbbg ,_gfg ,_bbfb ,_aeg ._ccg ._fcgfa );_gbafd =append (_gbafd ,_ddfba ...);_bfae -=len (_aba );};};return _gbafd ; -};func (_efce *shapesState )fill (_bfaed *[]pathSection ){_cbabc :=pathSection {_fbfe :_efce ._abgb ,Color :_efce ._ecfc .getFillColor ()};*_bfaed =append (*_bfaed ,_cbabc );if _gfgc {_dcca :=_cbabc .bbox ();_ge .Printf ("\u0020 \u0020\u0020\u0046\u0049\u004c\u004c\u003a %\u0032\u0064\u0020\u0066\u0069\u006c\u006c\u0073\u0020\u0028\u0025\u0064\u0020\u006ee\u0077\u0029 \u0073\u0073\u003d%\u0073\u0020\u0063\u006f\u006c\u006f\u0072\u003d\u0025\u0033\u0076\u0020\u0025\u0036\u002e\u0032f\u003d\u00256.\u0032\u0066\u0078%\u0036\u002e\u0032\u0066\u000a",len (*_bfaed ),len (_cbabc ._fbfe ),_efce ,_cbabc .Color ,_dcca ,_dcca .Width (),_dcca .Height ()); -if _deaga {for _dgb ,_dbda :=range _cbabc ._fbfe {_ge .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_dgb ,_dbda );if _dgb ==10{break ;};};};};};func (_dfbf *ruling )equals (_gafce *ruling )bool {return _dfbf ._bfbc ==_gafce ._bfbc &&_gecae (_dfbf ._abbgc ,_gafce ._abbgc )&&_gecae (_dfbf ._cebe ,_gafce ._cebe )&&_gecae (_dfbf ._deee ,_gafce ._deee ); -};func (_agge *wordBag )makeRemovals ()map[int ]map[*textWord ]struct{}{_dabb :=make (map[int ]map[*textWord ]struct{},len (_agge ._faba ));for _afge :=range _agge ._faba {_dabb [_afge ]=make (map[*textWord ]struct{});};return _dabb ;};func (_bffcd *shapesState )moveTo (_eba ,_cff float64 ){_bffcd ._edee =true ; -_bffcd ._ebfb =_bffcd .devicePoint (_eba ,_cff );if _cbag {_ec .Log .Info ("\u006d\u006fv\u0065\u0054\u006f\u003a\u0020\u0025\u002e\u0032\u0066\u002c\u0025\u002e\u0032\u0066\u0020\u0064\u0065\u0076\u0069\u0063\u0065\u003d%.\u0032\u0066",_eba ,_cff ,_bffcd ._ebfb ); -};};func (_ecbb *wordBag )sort (){for _ ,_eadf :=range _ecbb ._faba {_c .Slice (_eadf ,func (_gfd ,_eae int )bool {return _fabg (_eadf [_gfd ],_eadf [_eae ])< 0});};};func (_bedb rulingList )primMinMax ()(float64 ,float64 ){_ebbfe ,_cfdbb :=_bedb [0]._abbgc ,_bedb [0]._abbgc ; -for _ ,_cecg :=range _bedb [1:]{if _cecg ._abbgc < _ebbfe {_ebbfe =_cecg ._abbgc ;}else if _cecg ._abbgc > _cfdbb {_cfdbb =_cecg ._abbgc ;};};return _ebbfe ,_cfdbb ;};func _fcd (_cdaf ,_gdca _ce .PdfRectangle )bool {return _gdca .Llx <=_cdaf .Urx &&_cdaf .Llx <=_gdca .Urx ; +package extractor ;import (_cf "bytes";_c "errors";_cfe "fmt";_ed "github.com/unidoc/unipdf/v3/common";_aad "github.com/unidoc/unipdf/v3/contentstream";_gg "github.com/unidoc/unipdf/v3/core";_af "github.com/unidoc/unipdf/v3/internal/license";_dd "github.com/unidoc/unipdf/v3/internal/textencoding"; +_cc "github.com/unidoc/unipdf/v3/internal/transform";_gb "github.com/unidoc/unipdf/v3/model";_dc "golang.org/x/image/draw";_f "golang.org/x/text/unicode/norm";_aa "golang.org/x/xerrors";_gf "image";_eb "image/color";_a "io";_df "math";_g "reflect";_ca "regexp"; +_d "sort";_ag "strings";_ac "unicode";_cb "unicode/utf8";);func _feee (_ebbc ,_gbecb _gb .PdfRectangle )bool {return _cdcd (_ebbc ,_gbecb )&&_ebgc (_ebbc ,_gbecb )};func _bba (_ced _cc .Matrix )_cc .Point {_daef ,_dfdcc :=_ced .Translation ();return _cc .Point {X :_daef ,Y :_dfdcc }; +};func (_becb *shapesState )clearPath (){_becb ._babc =nil ;_becb ._dfff =false ;if _dgeg {_ed .Log .Info ("\u0043\u004c\u0045A\u0052\u003a\u0020\u0073\u0073\u003d\u0025\u0073",_becb );};};var _gabd string ="\u005e\u005b\u0061\u002d\u007a\u0041\u002dZ\u005d\u0028\u005c)\u007c\u005c\u002e)\u007c\u005e[\u005c\u0064\u005d\u002b\u0028\u005c)\u007c\\.\u0029\u007c\u005e\u005c\u0028\u005b\u0061\u002d\u007a\u0041\u002d\u005a\u005d\u005c\u0029\u007c\u005e\u005c\u0028\u005b\u005c\u0064\u005d\u002b\u005c\u0029"; + + +// TableCell is a cell in a TextTable. +type TableCell struct{_gb .PdfRectangle ; + +// Text is the extracted text. +Text string ; + +// Marks returns the TextMarks corresponding to the text in Text. +Marks TextMarkArray ;};func (_gcbgb gridTiling )complete ()bool {for _ ,_fdeg :=range _gcbgb ._aaef {for _ ,_efeee :=range _fdeg {if !_efeee .complete (){return false ;};};};return true ;};func (_bgcfc paraList )llyRange (_fbcc []int ,_cgfab ,_ggeb float64 )[]int {_baac :=len (_bgcfc ); +if _ggeb < _bgcfc [_fbcc [0]].Lly ||_cgfab > _bgcfc [_fbcc [_baac -1]].Lly {return nil ;};_ebed :=_d .Search (_baac ,func (_bgef int )bool {return _bgcfc [_fbcc [_bgef ]].Lly >=_cgfab });_edbf :=_d .Search (_baac ,func (_fbfa int )bool {return _bgcfc [_fbcc [_fbfa ]].Lly > _ggeb }); +return _fbcc [_ebed :_edbf ];};type textLine struct{_gb .PdfRectangle ;_bdbg float64 ;_bfca []*textWord ;_egbd float64 ;};func (_dbadg paraList )inTile (_dbac gridTile )paraList {var _bcbcf paraList ;for _ ,_eaedg :=range _dbadg {if _dbac .contains (_eaedg .PdfRectangle ){_bcbcf =append (_bcbcf ,_eaedg ); +};};if _geff {_cfe .Printf ("\u0020 \u0020\u0069\u006e\u0054i\u006c\u0065\u003a\u0020\u0020%\u0073 \u0069n\u0073\u0069\u0064\u0065\u003d\u0025\u0064\n",_dbac ,len (_bcbcf ));for _feffd ,_cefdb :=range _bcbcf {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_feffd ,_cefdb ); +};_cfe .Println ("");};return _bcbcf ;};func (_efe *Extractor )extractPageText (_eg string ,_gfe *_gb .PdfPageResources ,_agb _cc .Matrix ,_gfef int )(*PageText ,int ,int ,error ){_ed .Log .Trace ("\u0065x\u0074\u0072\u0061\u0063t\u0050\u0061\u0067\u0065\u0054e\u0078t\u003a \u006c\u0065\u0076\u0065\u006c\u003d\u0025d",_gfef ); +_ccc :=&PageText {_ebae :_efe ._eda ,_ddbd :_efe ._cd ,_ddeg :_efe ._dfd };_gdg :=_beba (_efe ._eda );var _bg stateStack ;_bcc :=_gdag (_efe ,_gfe ,_aad .GraphicsState {},&_gdg ,&_bg );_eacc :=shapesState {_begf :_agb ,_cca :_cc .IdentityMatrix (),_geba :_bcc }; +var _edac bool ;_adb :=-1;if _gfef > _dgd {_edg :=_c .New ("\u0066\u006f\u0072\u006d s\u0074\u0061\u0063\u006b\u0020\u006f\u0076\u0065\u0072\u0066\u006c\u006f\u0077");_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0065\u0078\u0074\u0072\u0061\u0063\u0074\u0050\u0061\u0067\u0065\u0054\u0065\u0078\u0074\u002e\u0020\u0072\u0065\u0063u\u0072\u0073\u0069\u006f\u006e\u0020\u006c\u0065\u0076\u0065\u006c\u003d\u0025\u0064 \u0065r\u0072\u003d\u0025\u0076",_gfef ,_edg ); +return _ccc ,_gdg ._fdbd ,_gdg ._eec ,_edg ;};_baf :=_aad .NewContentStreamParser (_eg );_gbe ,_fdgb :=_baf .Parse ();if _fdgb !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020e\u0078\u0074\u0072a\u0063\u0074\u0050\u0061g\u0065\u0054\u0065\u0078\u0074\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fdgb ); +return _ccc ,_gdg ._fdbd ,_gdg ._eec ,_fdgb ;};_ccc ._dff =_gbe ;_dcd :=_aad .NewContentStreamProcessor (*_gbe );_dcd .AddHandler (_aad .HandlerConditionEnumAllOperands ,"",func (_bbd *_aad .ContentStreamOperation ,_gbeb _aad .GraphicsState ,_ffc *_gb .PdfPageResources )error {_fda :=_bbd .Operand ; +if _adea {_ed .Log .Info ("\u0026&\u0026\u0020\u006f\u0070\u003d\u0025s",_bbd );};switch _fda {case "\u0071":if _dgeg {_ed .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_eacc ._cca );};_bg .push (&_gdg );case "\u0051":if !_bg .empty (){_gdg =*_bg .pop (); +};_eacc ._cca =_gbeb .CTM ;if _dgeg {_ed .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_eacc ._cca );};case "\u0042\u0044\u0043":_ddcd ,_acde :=_gg .GetDict (_bbd .Params [1]);if !_acde {_ed .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0042D\u0043\u0020\u006f\u0070\u003d\u0025\u0073 \u0047\u0065\u0074\u0044\u0069\u0063\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_bbd ); +return _fdgb ;};_ccce :=_ddcd .Get ("\u004d\u0043\u0049\u0044");if _ccce !=nil {_bbf ,_ga :=_gg .GetIntVal (_ccce );if !_ga {_ed .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0042\u0044C\u0020\u006f\u0070=\u0025\u0073\u002e\u0020\u0042\u0061\u0064\u0020\u006eum\u0065\u0072\u0069c\u0061\u006c \u006f\u0062\u006a\u0065\u0063\u0074.\u0020\u006f=\u0025\u0073",_bbd ,_ccce ); +};_adb =_bbf ;}else {_adb =-1;};case "\u0045\u004d\u0043":_adb =-1;case "\u0042\u0054":if _edac {_ed .Log .Debug ("\u0042\u0054\u0020\u0063\u0061\u006c\u006c\u0065\u0064\u0020\u0077\u0068\u0069\u006c\u0065 \u0069n\u0020\u0061\u0020\u0074\u0065\u0078\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +_ccc ._bagf =append (_ccc ._bagf ,_bcc ._gafa ...);};_edac =true ;_fadg :=_gbeb ;_fadg .CTM =_agb .Mult (_fadg .CTM );_bcc =_gdag (_efe ,_ffc ,_fadg ,&_gdg ,&_bg );_eacc ._geba =_bcc ;case "\u0045\u0054":if !_edac {_ed .Log .Debug ("\u0045\u0054\u0020ca\u006c\u006c\u0065\u0064\u0020\u006f\u0075\u0074\u0073i\u0064e\u0020o\u0066 \u0061\u0020\u0074\u0065\u0078\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +};_edac =false ;_ccc ._bagf =append (_ccc ._bagf ,_bcc ._gafa ...);_bcc .reset ();case "\u0054\u002a":_bcc .nextLine ();case "\u0054\u0064":if _gdf ,_ebd :=_bcc .checkOp (_bbd ,2,true );!_gdf {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_ebd ); +return _ebd ;};_ffa ,_ebfd ,_bgb :=_abee (_bbd .Params );if _bgb !=nil {return _bgb ;};_bcc .moveText (_ffa ,_ebfd );case "\u0054\u0044":if _feda ,_dca :=_bcc .checkOp (_bbd ,2,true );!_feda {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_dca ); +return _dca ;};_ebdd ,_edf ,_gcc :=_abee (_bbd .Params );if _gcc !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gcc );return _gcc ;};_bcc .moveTextSetLeading (_ebdd ,_edf );case "\u0054\u006a":if _abgb ,_ebbf :=_bcc .checkOp (_bbd ,1,true ); +!_abgb {_ed .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0054\u006a\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d%\u0076",_bbd ,_ebbf );return _ebbf ;};_cdf :=_gg .TraceToDirectObject (_bbd .Params [0]);_bcf ,_dgcc :=_gg .GetStringBytes (_cdf ); +if !_dgcc {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020T\u006a\u0020o\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074S\u0074\u0072\u0069\u006e\u0067\u0042\u0079\u0074\u0065\u0073\u0020\u0066a\u0069\u006c\u0065\u0064",_bbd );return _gg .ErrTypeError ; +};return _bcc .showText (_cdf ,_bcf ,_adb );case "\u0054\u004a":if _dae ,_fade :=_bcc .checkOp (_bbd ,1,true );!_dae {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u004a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fade );return _fade ;};_egg ,_bag :=_gg .GetArray (_bbd .Params [0]); +if !_bag {_ed .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0054\u004a\u0020\u006f\u0070\u003d\u0025s\u0020G\u0065t\u0041r\u0072\u0061\u0079\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_bbd );return _fdgb ;};return _bcc .showTextAdjusted (_egg ,_adb ); +case "\u0027":if _agc ,_dge :=_bcc .checkOp (_bbd ,1,true );!_agc {_ed .Log .Debug ("\u0045R\u0052O\u0052\u003a\u0020\u0027\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_dge );return _dge ;};_dbd :=_gg .TraceToDirectObject (_bbd .Params [0]);_gegec ,_ccff :=_gg .GetStringBytes (_dbd ); +if !_ccff {_ed .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020'\u0020\u006f\u0070\u003d%s \u0047et\u0053\u0074\u0072\u0069\u006e\u0067\u0042yt\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064",_bbd );return _gg .ErrTypeError ;};_bcc .nextLine ();return _bcc .showText (_dbd ,_gegec ,_adb ); +case "\u0022":if _aec ,_ggd :=_bcc .checkOp (_bbd ,3,true );!_aec {_ed .Log .Debug ("\u0045R\u0052O\u0052\u003a\u0020\u0022\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_ggd );return _ggd ;};_edb ,_eafa ,_dcf :=_abee (_bbd .Params [:2]);if _dcf !=nil {return _dcf ; +};_adaf :=_gg .TraceToDirectObject (_bbd .Params [2]);_becf ,_gec :=_gg .GetStringBytes (_adaf );if !_gec {_ed .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020\"\u0020\u006f\u0070\u003d%s \u0047et\u0053\u0074\u0072\u0069\u006e\u0067\u0042yt\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064",_bbd ); +return _gg .ErrTypeError ;};_bcc .setCharSpacing (_edb );_bcc .setWordSpacing (_eafa );_bcc .nextLine ();return _bcc .showText (_adaf ,_becf ,_adb );case "\u0054\u004c":_egf ,_egb :=_bgc (_bbd );if _egb !=nil {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u004c\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_egb ); +return _egb ;};_bcc .setTextLeading (_egf );case "\u0054\u0063":_fff ,_adg :=_bgc (_bbd );if _adg !=nil {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0063\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_adg );return _adg ;};_bcc .setCharSpacing (_fff ); +case "\u0054\u0066":if _bdad ,_gdbe :=_bcc .checkOp (_bbd ,2,true );!_bdad {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0066\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gdbe );return _gdbe ;};_dbf ,_cdc :=_gg .GetNameVal (_bbd .Params [0]); +if !_cdc {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u004ea\u006d\u0065\u0056\u0061\u006c\u0020\u0066a\u0069\u006c\u0065\u0064",_bbd );return _gg .ErrTypeError ;};_ggg ,_abe :=_gg .GetNumberAsFloat (_bbd .Params [1]); +if !_cdc {_ed .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u0046\u006c\u006f\u0061\u0074\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065d\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bbd ,_abe ); +return _abe ;};_abe =_bcc .setFont (_dbf ,_ggg );_bcc ._efcbd =_aa .Is (_abe ,_gg .ErrNotSupported );if _abe !=nil &&!_bcc ._efcbd {return _abe ;};case "\u0054\u006d":if _cge ,_dfe :=_bcc .checkOp (_bbd ,6,true );!_cge {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u006d\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_dfe ); +return _dfe ;};_edc ,_cfc :=_gg .GetNumbersAsFloat (_bbd .Params );if _cfc !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_cfc );return _cfc ;};_bcc .setTextMatrix (_edc );case "\u0054\u0072":if _ecb ,_cdcf :=_bcc .checkOp (_bbd ,1,true ); +!_ecb {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0072\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_cdcf );return _cdcf ;};_cadc ,_ega :=_gg .GetIntVal (_bbd .Params [0]);if !_ega {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0072\u0020\u006f\u0070\u003d\u0025\u0073 \u0047e\u0074\u0049\u006e\u0074\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_bbd ); +return _gg .ErrTypeError ;};_bcc .setTextRenderMode (_cadc );case "\u0054\u0073":if _gdc ,_acdea :=_bcc .checkOp (_bbd ,1,true );!_gdc {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_acdea );return _acdea ; +};_gae ,_cba :=_gg .GetNumberAsFloat (_bbd .Params [0]);if _cba !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_cba );return _cba ;};_bcc .setTextRise (_gae );case "\u0054\u0077":if _afgb ,_eefa :=_bcc .checkOp (_bbd ,1,true ); +!_afgb {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_eefa );return _eefa ;};_adc ,_gaf :=_gg .GetNumberAsFloat (_bbd .Params [0]);if _gaf !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gaf ); +return _gaf ;};_bcc .setWordSpacing (_adc );case "\u0054\u007a":if _fec ,_gcb :=_bcc .checkOp (_bbd ,1,true );!_fec {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gcb );return _gcb ;};_ccdd ,_ecfc :=_gg .GetNumberAsFloat (_bbd .Params [0]); +if _ecfc !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_ecfc );return _ecfc ;};_bcc .setHorizScaling (_ccdd );case "\u0063\u006d":_eacc ._cca =_gbeb .CTM ;if _eacc ._cca .Singular (){_fgb :=_cc .IdentityMatrix ().Translate (_eacc ._cca .Translation ()); +_ed .Log .Debug ("S\u0069n\u0067\u0075\u006c\u0061\u0072\u0020\u0063\u0074m\u003d\u0025\u0073\u2192%s",_eacc ._cca ,_fgb );_eacc ._cca =_fgb ;};if _dgeg {_ed .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_eacc ._cca );};case "\u006d":if len (_bbd .Params )!=2{_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006d\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_be ); +return nil ;};_gcg ,_bdac :=_gg .GetNumbersAsFloat (_bbd .Params );if _bdac !=nil {return _bdac ;};_eacc .moveTo (_gcg [0],_gcg [1]);case "\u006c":if len (_bbd .Params )!=2{_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006c\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_be ); +return nil ;};_agad ,_dee :=_gg .GetNumbersAsFloat (_bbd .Params );if _dee !=nil {return _dee ;};_eacc .lineTo (_agad [0],_agad [1]);case "\u0063":if len (_bbd .Params )!=6{return _be ;};_bfd ,_aef :=_gg .GetNumbersAsFloat (_bbd .Params );if _aef !=nil {return _aef ; +};_ed .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020b\u0065\u007a\u0069\u0065\u0072 \u0070a\u0072a\u006d\u0073\u003a\u0020\u0025\u002e\u0032f",_bfd );_eacc .cubicTo (_bfd [0],_bfd [1],_bfd [2],_bfd [3],_bfd [4],_bfd [5]);case "\u0076","\u0079":if len (_bbd .Params )!=4{return _be ; +};_bdb ,_fcf :=_gg .GetNumbersAsFloat (_bbd .Params );if _fcf !=nil {return _fcf ;};_ed .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020b\u0065\u007a\u0069\u0065\u0072 \u0070a\u0072a\u006d\u0073\u003a\u0020\u0025\u002e\u0032f",_bdb );_eacc .quadraticTo (_bdb [0],_bdb [1],_bdb [2],_bdb [3]); +case "\u0068":_eacc .closePath ();case "\u0072\u0065":if len (_bbd .Params )!=4{return _be ;};_ebbfc ,_aee :=_gg .GetNumbersAsFloat (_bbd .Params );if _aee !=nil {return _aee ;};_eacc .drawRectangle (_ebbfc [0],_ebbfc [1],_ebbfc [2],_ebbfc [3]);_eacc .closePath (); +case "\u0053":_eacc .stroke (&_ccc ._eff );_eacc .clearPath ();case "\u0073":_eacc .closePath ();_eacc .stroke (&_ccc ._eff );_eacc .clearPath ();case "\u0046":_eacc .fill (&_ccc ._efbe );_eacc .clearPath ();case "\u0066","\u0066\u002a":_eacc .closePath (); +_eacc .fill (&_ccc ._efbe );_eacc .clearPath ();case "\u0042","\u0042\u002a":_eacc .fill (&_ccc ._efbe );_eacc .stroke (&_ccc ._eff );_eacc .clearPath ();case "\u0062","\u0062\u002a":_eacc .closePath ();_eacc .fill (&_ccc ._efbe );_eacc .stroke (&_ccc ._eff ); +_eacc .clearPath ();case "\u006e":_eacc .clearPath ();case "\u0044\u006f":if len (_bbd .Params )==0{_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0058\u004fbj\u0065c\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0070\u0065\u0072\u0061n\u0064\u0020\u0066\u006f\u0072\u0020\u0044\u006f\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072.\u0020\u0047\u006f\u0074\u0020\u0025\u002b\u0076\u002e",_bbd .Params ); +return _gg .ErrRangeError ;};_baa ,_ebc :=_gg .GetName (_bbd .Params [0]);if !_ebc {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0044\u006f\u0020\u006f\u0070e\u0072a\u0074\u006f\u0072\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006fp\u0065\u0072\u0061\u006e\u0064\u003a\u0020\u0025\u002b\u0076\u002e",_bbd .Params [0]); +return _gg .ErrTypeError ;};_ ,_aecd :=_ffc .GetXObjectByName (*_baa );if _aecd !=_gb .XObjectTypeForm {break ;};_bfcc ,_ebc :=_efe ._db [_baa .String ()];if !_ebc {_gbb ,_ead :=_ffc .GetXObjectFormByName (*_baa );if _ead !=nil {_ed .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ead ); +return _ead ;};_eefc ,_ead :=_gbb .GetContentStream ();if _ead !=nil {_ed .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ead );return _ead ;};_fce :=_gbb .Resources ;if _fce ==nil {_fce =_ffc ;};_cbc :=_gbeb .CTM ;if _bac ,_cgd :=_gg .GetArray (_gbb .Matrix ); +_cgd {_deed ,_fdfb :=_bac .GetAsFloat64Slice ();if _fdfb !=nil {return _fdfb ;};if len (_deed )!=6{return _be ;};_bad :=_cc .NewMatrix (_deed [0],_deed [1],_deed [2],_deed [3],_deed [4],_deed [5]);_cbc =_gbeb .CTM .Mult (_bad );};_ecdb ,_cef ,_fgg ,_ead :=_efe .extractPageText (string (_eefc ),_fce ,_agb .Mult (_cbc ),_gfef +1); +if _ead !=nil {_ed .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ead );return _ead ;};_bfcc =textResult {*_ecdb ,_cef ,_fgg };_efe ._db [_baa .String ()]=_bfcc ;};_eacc ._cca =_gbeb .CTM ;if _dgeg {_ed .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_eacc ._cca ); +};_ccc ._bagf =append (_ccc ._bagf ,_bfcc ._gga ._bagf ...);_ccc ._eff =append (_ccc ._eff ,_bfcc ._gga ._eff ...);_ccc ._efbe =append (_ccc ._efbe ,_bfcc ._gga ._efbe ...);_gdg ._fdbd +=_bfcc ._bdef ;_gdg ._eec +=_bfcc ._bee ;case "\u0072\u0067","\u0067","\u006b","\u0063\u0073","\u0073\u0063","\u0073\u0063\u006e":_bcc ._ccg .ColorspaceNonStroking =_gbeb .ColorspaceNonStroking ; +_bcc ._ccg .ColorNonStroking =_gbeb .ColorNonStroking ;case "\u0052\u0047","\u0047","\u004b","\u0043\u0053","\u0053\u0043","\u0053\u0043\u004e":_bcc ._ccg .ColorspaceStroking =_gbeb .ColorspaceStroking ;_bcc ._ccg .ColorStroking =_gbeb .ColorStroking ; +};return nil ;});_fdgb =_dcd .Process (_gfe );return _ccc ,_gdg ._fdbd ,_gdg ._eec ,_fdgb ;};func (_cfbc *ruling )alignsSec (_eceab *ruling )bool {const _cafe =_dbgc +1.0;return _cfbc ._daag -_cafe <=_eceab ._fcff &&_eceab ._daag -_cafe <=_cfbc ._fcff ; +};func _cdcd (_acfg ,_ecfd _gb .PdfRectangle )bool {return _ecfd .Llx <=_acfg .Urx &&_acfg .Llx <=_ecfd .Urx ;}; + +// String returns a description of `state`. +func (_bada *textState )String ()string {_dbb :="\u005bN\u004f\u0054\u0020\u0053\u0045\u0054]";if _bada ._bdg !=nil {_dbb =_bada ._bdg .BaseFont ();};return _cfe .Sprintf ("\u0074\u0063\u003d\u0025\u002e\u0032\u0066\u0020\u0074\u0077\u003d\u0025\u002e\u0032\u0066 \u0074f\u0073\u003d\u0025\u002e\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0071",_bada ._bfdf ,_bada ._bfa ,_bada ._agge ,_dbb ); }; -// ImageMark represents an image drawn on a page and its position in device coordinates. -// All coordinates are in device coordinates. -type ImageMark struct{Image *_ce .Image ; +// String returns a description of `p`. +func (_gdbd *textPara )String ()string {if _gdbd ._befd {return _cfe .Sprintf ("\u0025\u0036\u002e\u0032\u0066\u0020\u005b\u0045\u004d\u0050\u0054\u0059\u005d",_gdbd .PdfRectangle );};_acfcd :="";if _gdbd ._bedfe !=nil {_acfcd =_cfe .Sprintf ("\u005b\u0025\u0064\u0078\u0025\u0064\u005d\u0020",_gdbd ._bedfe ._fccgee ,_gdbd ._bedfe ._dege ); +};return _cfe .Sprintf ("\u0025\u0036\u002e\u0032f \u0025\u0073\u0025\u0064\u0020\u006c\u0069\u006e\u0065\u0073\u0020\u0025\u0071",_gdbd .PdfRectangle ,_acfcd ,len (_gdbd ._abbe ),_fabf (_gdbd .text (),50));};func _dfba (_adff ,_cgbc _gb .PdfRectangle )(_gb .PdfRectangle ,bool ){if !_feee (_adff ,_cgbc ){return _gb .PdfRectangle {},false ; +};return _gb .PdfRectangle {Llx :_df .Max (_adff .Llx ,_cgbc .Llx ),Urx :_df .Min (_adff .Urx ,_cgbc .Urx ),Lly :_df .Max (_adff .Lly ,_cgbc .Lly ),Ury :_df .Min (_adff .Ury ,_cgbc .Ury )},true ;};func _dga (_efee *textLine )float64 {return _efee ._bfca [0].Llx }; +func (_aebe compositeCell )String ()string {_ebecf :="";if len (_aebe .paraList )> 0{_ebecf =_fabf (_aebe .paraList .merge ().text (),50);};return _cfe .Sprintf ("\u0025\u0036\u002e\u0032\u0066\u0020\u0025\u0064\u0020\u0070\u0061\u0072a\u0073\u0020\u0025\u0071",_aebe .PdfRectangle ,len (_aebe .paraList ),_ebecf ); +};func (_fef *stateStack )size ()int {return len (*_fef )};func _bedf (_dgdf float64 )int {var _bfdc int ;if _dgdf >=0{_bfdc =int (_dgdf /_edagd );}else {_bfdc =int (_dgdf /_edagd )-1;};return _bfdc ;}; -// Dimensions of the image as displayed in the PDF. -Width float64 ;Height float64 ; +// ExtractFonts returns all font information from the page extractor, including +// font name, font type, the raw data of the embedded font file (if embedded), font descriptor and more. +// +// The argument `previousPageFonts` is used when trying to build a complete font catalog for multiple pages or the entire document. +// The entries from `previousPageFonts` are added to the returned result unless already included in the page, i.e. no duplicate entries. +// +// NOTE: If previousPageFonts is nil, all fonts from the page will be returned. Use it when building up a full list of fonts for a document or page range. +func (_ge *Extractor )ExtractFonts (previousPageFonts *PageFonts )(*PageFonts ,error ){_beb :=PageFonts {};_gfb :=_beb .extractPageResourcesToFont (_ge ._bd );if _gfb !=nil {return nil ,_gfb ;};if previousPageFonts !=nil {for _ ,_fd :=range previousPageFonts .Fonts {if !_eaf (_beb .Fonts ,_fd .FontName ){_beb .Fonts =append (_beb .Fonts ,_fd ); +};};};return &PageFonts {Fonts :_beb .Fonts },nil ;};type ruling struct{_cffe rulingKind ;_bbge markKind ;_eb .Color ;_abfg float64 ;_daag float64 ;_fcff float64 ;_fdde float64 ;};func (_bgbaa *textPara )depth ()float64 {if _bgbaa ._befd {return -1.0;}; +if len (_bgbaa ._abbe )> 0{return _bgbaa ._abbe [0]._bdbg ;};return _bgbaa ._bedfe .depth ();};func _fggcc (_cfbd *list )[]*list {var _acgc []*list ;for _ ,_dedb :=range _cfbd ._gbcab {switch _dedb ._feec {case "\u004c\u0049":_ccfgg :=_accb (_dedb );_ddff :=_fggcc (_dedb ); +_eecg :=_gbcag (_ccfgg ,"\u0062\u0075\u006c\u006c\u0065\u0074",_ddff );_afdb :=_adag (_ccfgg ,"");_eecg ._ebabg =_afdb ;_acgc =append (_acgc ,_eecg );case "\u004c\u0042\u006fd\u0079":return _fggcc (_dedb );case "\u004c":_bbfea :=_fggcc (_dedb );_acgc =append (_acgc ,_bbfea ...); +return _acgc ;};};return _acgc ;};func (_bdce *wordBag )maxDepth ()float64 {return _bdce ._gebga -_bdce .Lly };func (_ffee *textObject )setHorizScaling (_eca float64 ){if _ffee ==nil {return ;};_ffee ._cbag ._fceg =_eca ;}; -// Position of the image in PDF coordinates (lower left corner). -X float64 ;Y float64 ; +// RenderMode specifies the text rendering mode (Tmode), which determines whether showing text shall cause +// glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three. +// Stroking, filling, and clipping shall have the same effects for a text object as they do for a path object +// (see 8.5.3, "Path-Painting Operators" and 8.5.4, "Clipping Path Operators"). +type RenderMode int ;func (_fgd *PageText )getParagraphs ()paraList {var _ebee rulingList ;if _gfaf {_bbcg :=_dbff (_fgd ._eff );_ebee =append (_ebee ,_bbcg ...);};if _bdacb {_edag :=_bdcec (_fgd ._efbe );_ebee =append (_ebee ,_edag ...);};_ebee ,_bebb :=_ebee .toTilings (); +var _fcdf paraList ;_ddf :=len (_fgd ._bagf );for _ddcc :=0;_ddcc < 360&&_ddf > 0;_ddcc +=90{_geee :=make ([]*textMark ,0,len (_fgd ._bagf )-_ddf );for _ ,_deg :=range _fgd ._bagf {if _deg ._cggbc ==_ddcc {_geee =append (_geee ,_deg );};};if len (_geee )> 0{_dcee :=_acgef (_geee ,_fgd ._ebae ,_ebee ,_bebb ,_fgd ._ege ._ebff ); +_fcdf =append (_fcdf ,_dcee ...);_ddf -=len (_geee );};};return _fcdf ;};func (_defg *wordBag )arrangeText ()*textPara {_defg .sort ();if _gdggd {_defg .removeDuplicates ();};var _dgga []*textLine ;for _ ,_gecac :=range _defg .depthIndexes (){for !_defg .empty (_gecac ){_fgfaa :=_defg .firstReadingIndex (_gecac ); +_fgfd :=_defg .firstWord (_fgfaa );_dfgf :=_dabb (_defg ,_fgfaa );_agbb :=_fgfd ._fgdbd ;_abedb :=_fgfd ._cbfcee -_dgfg *_agbb ;_facc :=_fgfd ._cbfcee +_dgfg *_agbb ;_abaac :=_dedd *_agbb ;_dead :=_ccfe *_agbb ;_fdeb :for {var _ffcb *textWord ;_cbcg :=0; +for _ ,_bcbcd :=range _defg .depthBand (_abedb ,_facc ){_dbaf :=_defg .highestWord (_bcbcd ,_abedb ,_facc );if _dbaf ==nil {continue ;};_fedcg :=_daefa (_dbaf ,_dfgf ._bfca [len (_dfgf ._bfca )-1]);if _fedcg < -_dead {break _fdeb ;};if _fedcg > _abaac {continue ; +};if _ffcb !=nil &&_fdd (_dbaf ,_ffcb )>=0{continue ;};_ffcb =_dbaf ;_cbcg =_bcbcd ;};if _ffcb ==nil {break ;};_dfgf .pullWord (_defg ,_ffcb ,_cbcg );};_dfgf .markWordBoundaries ();_dgga =append (_dgga ,_dfgf );};};if len (_dgga )==0{return nil ;};_d .Slice (_dgga ,func (_fagfe ,_bdcb int )bool {return _ecdf (_dgga [_fagfe ],_dgga [_bdcb ])< 0}); +_gdgb :=_daae (_defg .PdfRectangle ,_dgga );if _gcga {_ed .Log .Info ("\u0061\u0072\u0072an\u0067\u0065\u0054\u0065\u0078\u0074\u0020\u0021\u0021\u0021\u0020\u0070\u0061\u0072\u0061\u003d\u0025\u0073",_gdgb .String ());if _abgd {for _gebd ,_bdag :=range _gdgb ._abbe {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_gebd ,_bdag .String ()); +if _befe {for _bfdfa ,_cbgc :=range _bdag ._bfca {_cfe .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_bfdfa ,_cbgc .String ());for _fdbbe ,_fcec :=range _cbgc ._fdgbc {_cfe .Printf ("\u00251\u0032\u0064\u003a\u0020\u0025\u0073\n",_fdbbe ,_fcec .String ()); +};};};};};};return _gdgb ;};type lineRuling struct{_ecee rulingKind ;_fbcd markKind ;_eb .Color ;_efffg ,_agae _cc .Point ;};type compositeCell struct{_gb .PdfRectangle ;paraList ;};func (_geg *imageExtractContext )extractXObjectImage (_gee *_gg .PdfObjectName ,_ecfa _aad .GraphicsState ,_aae *_gb .PdfPageResources )error {_fdf ,_ :=_aae .GetXObjectByName (*_gee ); +if _fdf ==nil {return nil ;};_gdb ,_dcg :=_geg ._eae [_fdf ];if !_dcg {_agf ,_eea :=_aae .GetXObjectImageByName (*_gee );if _eea !=nil {return _eea ;};if _agf ==nil {return nil ;};_def ,_eea :=_agf .ToImage ();if _eea !=nil {return _eea ;};var _gea _gf .Image ; +if _agf .Mask !=nil {if _gea ,_eea =_ccbcb (_agf .Mask ,_eb .Opaque );_eea !=nil {_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u0063\u006f\u0075\u006c\u0064 \u006eo\u0074\u0020\u0067\u0065\u0074\u0020\u0065\u0078\u0070\u006c\u0069\u0063\u0069\u0074\u0020\u0069\u006d\u0061\u0067e\u0020\u006d\u0061\u0073\u006b\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e"); +};}else if _agf .SMask !=nil {_gea ,_eea =_agbca (_agf .SMask ,_eb .Opaque );if _eea !=nil {_ed .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0066\u0074\u0020\u0069\u006da\u0067e\u0020\u006d\u0061\u0073k\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +};};if _gea !=nil {_gcd ,_bfc :=_def .ToGoImage ();if _bfc !=nil {return _bfc ;};_gcd =_cadba (_gcd ,_gea );switch _agf .ColorSpace .String (){case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0049n\u0064\u0065\u0078\u0065\u0064":_def ,_bfc =_gb .ImageHandling .NewGrayImageFromGoImage (_gcd ); +if _bfc !=nil {return _bfc ;};default:_def ,_bfc =_gb .ImageHandling .NewImageFromGoImage (_gcd );if _bfc !=nil {return _bfc ;};};};_gdb =&cachedImage {_gde :_def ,_ecg :_agf .ColorSpace };_geg ._eae [_fdf ]=_gdb ;};_feg :=_gdb ._gde ;_fg :=_gdb ._ecg ; +_fba ,_bc :=_fg .ImageToRGB (*_feg );if _bc !=nil {return _bc ;};_ed .Log .Debug ("@\u0044\u006f\u0020\u0043\u0054\u004d\u003a\u0020\u0025\u0073",_ecfa .CTM .String ());_bcg :=ImageMark {Image :&_fba ,Width :_ecfa .CTM .ScalingFactorX (),Height :_ecfa .CTM .ScalingFactorY (),Angle :_ecfa .CTM .Angle ()}; +_bcg .X ,_bcg .Y =_ecfa .CTM .Translation ();_geg ._cdb =append (_geg ._cdb ,_bcg );_geg ._ce ++;return nil ;};func _gecd (_feae *textLine ,_fbaa []*textLine ,_bcff []float64 )float64 {var _agafc float64 =-1;for _ ,_gagd :=range _fbaa {if _gagd ._bdbg > _feae ._bdbg {if _df .Round (_gagd .Llx )>=_df .Round (_feae .Llx ){_agafc =_gagd ._bdbg ; +}else {break ;};};};return _agafc ;};func (_fgfdb rulingList )log (_agdbf string ){if !_geaeg {return ;};_ed .Log .Info ("\u0023\u0023\u0023\u0020\u0025\u0031\u0030\u0073\u003a\u0020\u0076\u0065c\u0073\u003d\u0025\u0073",_agdbf ,_fgfdb .String ());for _cface ,_fgae :=range _fgfdb {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_cface ,_fgae .String ()); +};};func (_bfggd *textTable )getComposite (_dfbd ,_fbac int )(paraList ,_gb .PdfRectangle ){_fecd ,_aecg :=_bfggd ._faeg [_aafb (_dfbd ,_fbac )];if _geff {_cfe .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0067\u0065\u0074\u0043\u006f\u006d\u0070o\u0073i\u0074\u0065\u0028\u0025\u0064\u002c\u0025\u0064\u0029\u002d\u003e\u0025\u0073\u000a",_dfbd ,_fbac ,_fecd .String ()); +};if !_aecg {return nil ,_gb .PdfRectangle {};};return _fecd .parasBBox ();};func (_fgf *textObject )showText (_bbdb _gg .PdfObject ,_fcea []byte ,_abdg int )error {return _fgf .renderText (_bbdb ,_fcea ,_abdg );};var _aaeg *_ca .Regexp =_ca .MustCompile (_fdfgd +"\u007c"+_gabd ); +func _bafe (_gbda ,_cbdd bounded )float64 {return _ggbc (_gbda )-_ggbc (_cbdd )};func (_ecba *textObject )getFontDict (_baag string )(_gbca _gg .PdfObject ,_cbbg error ){_cffd :=_ecba ._edacg ;if _cffd ==nil {_ed .Log .Debug ("g\u0065\u0074\u0046\u006f\u006e\u0074D\u0069\u0063\u0074\u002e\u0020\u004eo\u0020\u0072\u0065\u0073\u006f\u0075\u0072c\u0065\u0073\u002e\u0020\u006e\u0061\u006d\u0065\u003d\u0025#\u0071",_baag ); +return nil ,nil ;};_gbca ,_agea :=_cffd .GetFontByName (_gg .PdfObjectName (_baag ));if !_agea {_ed .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0067\u0065t\u0046\u006f\u006et\u0044\u0069\u0063\u0074\u003a\u0020\u0046\u006f\u006et \u006e\u006f\u0074 \u0066\u006fu\u006e\u0064\u003a\u0020\u006e\u0061m\u0065\u003d%\u0023\u0071",_baag ); +return nil ,_c .New ("f\u006f\u006e\u0074\u0020no\u0074 \u0069\u006e\u0020\u0072\u0065s\u006f\u0075\u0072\u0063\u0065\u0073");};return _gbca ,nil ;};func (_acg *textObject )setTextRise (_fcd float64 ){if _acg ==nil {return ;};_acg ._cbag ._gce =_fcd ;}; +func (_gebg *TextMarkArray )exists (_eedc TextMark )bool {for _ ,_ddfb :=range _gebg .Elements (){if _g .DeepEqual (_eedc .DirectObject ,_ddfb .DirectObject )&&_g .DeepEqual (_eedc .BBox ,_ddfb .BBox )&&_ddfb .Text ==_eedc .Text {return true ;};};return false ; +};func _gbcbg (_adfe map[int ]intSet )[]int {_gecaf :=make ([]int ,0,len (_adfe ));for _cbcce :=range _adfe {_gecaf =append (_gecaf ,_cbcce );};_d .Ints (_gecaf );return _gecaf ;};func (_abdf *shapesState )closePath (){if _abdf ._dfff {_abdf ._babc =append (_abdf ._babc ,_dcab (_abdf ._bcb )); +_abdf ._dfff =false ;}else if len (_abdf ._babc )==0{if _dgeg {_ed .Log .Debug ("\u0063\u006c\u006f\u0073eP\u0061\u0074\u0068\u0020\u0077\u0069\u0074\u0068\u0020\u006e\u006f\u0020\u0070\u0061t\u0068");};_abdf ._dfff =false ;return ;};_abdf ._babc [len (_abdf ._babc )-1].close (); +if _dgeg {_ed .Log .Info ("\u0063\u006c\u006f\u0073\u0065\u0050\u0061\u0074\u0068\u003a\u0020\u0025\u0073",_abdf );};}; -// Angle in degrees, if rotated. -Angle float64 ;};func (_gbca *wordBag )applyRemovals (_acee map[int ]map[*textWord ]struct{}){for _fffg ,_edgd :=range _acee {if len (_edgd )==0{continue ;};_eccg :=_gbca ._faba [_fffg ];_gfcf :=len (_eccg )-len (_edgd );if _gfcf ==0{delete (_gbca ._faba ,_fffg ); -continue ;};_egea :=make ([]*textWord ,_gfcf );_gfgfg :=0;for _ ,_fecg :=range _eccg {if _ ,_edef :=_edgd [_fecg ];!_edef {_egea [_gfgfg ]=_fecg ;_gfgfg ++;};};_gbca ._faba [_fffg ]=_egea ;};};type textTable struct{_ce .PdfRectangle ;_ecbf ,_dcfg int ; -_beaeg bool ;_gcbga map[uint64 ]*textPara ;_egfe map[uint64 ]compositeCell ;};func (_bgf *textObject )setTextMatrix (_aaf []float64 ){if len (_aaf )!=6{_ec .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u006c\u0065\u006e\u0028\u0066\u0029\u0020\u0021\u003d\u0020\u0036\u0020\u0028\u0025\u0064\u0029",len (_aaf )); -return ;};_gcac ,_fbed ,_bbgf ,_dac ,_geg ,_cgda :=_aaf [0],_aaf [1],_aaf [2],_aaf [3],_aaf [4],_aaf [5];_bgf ._eee =_bc .NewMatrix (_gcac ,_fbed ,_bbgf ,_dac ,_geg ,_cgda );_bgf ._ecg =_bgf ._eee ;};func _cacf (_bbcg []TextMark ,_adce *int ,_gcbb string )[]TextMark {_dded :=_efe ; -_dded .Text =_gcbb ;return _cfaf (_bbcg ,_adce ,_dded );};func (_bbfe *textPara )bbox ()_ce .PdfRectangle {return _bbfe .PdfRectangle }; +// ApplyArea processes the page text only within the specified area `bbox`. +// Each time ApplyArea is called, it updates the result set in `pt`. +// Can be called multiple times in a row with different bounding boxes. +func (_bfcff *PageText )ApplyArea (bbox _gb .PdfRectangle ){_ceda :=make ([]*textMark ,0,len (_bfcff ._bagf ));for _ ,_dfdcb :=range _bfcff ._bagf {if _feee (_dfdcb .bbox (),bbox ){_ceda =append (_ceda ,_dfdcb );};};var _abfd paraList ;_fbg :=len (_ceda ); +for _fac :=0;_fac < 360&&_fbg > 0;_fac +=90{_aag :=make ([]*textMark ,0,len (_ceda )-_fbg );for _ ,_gffe :=range _ceda {if _gffe ._cggbc ==_fac {_aag =append (_aag ,_gffe );};};if len (_aag )> 0{_deb :=_acgef (_aag ,_bfcff ._ebae ,nil ,nil ,_bfcff ._ege ._ebff ); +_abfd =append (_abfd ,_deb ...);_fbg -=len (_aag );};};_ggb :=new (_cf .Buffer );_abfd .writeText (_ggb );_bfcff ._ccbd =_ggb .String ();_bfcff ._afc =_abfd .toTextMarks ();_bfcff ._ded =_abfd .tables ();};func (_bbab *textTable )put (_egbg ,_gbba int ,_ccfa *textPara ){_bbab ._adda [_aafb (_egbg ,_gbba )]=_ccfa ; +};func (_fdddd rulingList )vertsHorzs ()(rulingList ,rulingList ){var _gdbg ,_eadb rulingList ;for _ ,_cedgb :=range _fdddd {switch _cedgb ._cffe {case _gfafc :_gdbg =append (_gdbg ,_cedgb );case _bdfd :_eadb =append (_eadb ,_cedgb );};};return _gdbg ,_eadb ; +};func (_ebdf *textObject )newTextMark (_gcge string ,_aeff _cc .Matrix ,_ebea _cc .Point ,_eagg float64 ,_dbef *_gb .PdfFont ,_dbbc float64 ,_dbbd ,_cbce _eb .Color ,_bcbg _gg .PdfObject ,_badeb []string ,_gfafb int ,_edacd int )(textMark ,bool ){_fgbd :=_aeff .Angle (); +_gabg :=_edeeg (_fgbd ,_ecce );var _fafcg float64 ;if _gabg %180!=90{_fafcg =_aeff .ScalingFactorY ();}else {_fafcg =_aeff .ScalingFactorX ();};_edagcg :=_bba (_aeff );_abbb :=_gb .PdfRectangle {Llx :_edagcg .X ,Lly :_edagcg .Y ,Urx :_ebea .X ,Ury :_ebea .Y }; +switch _gabg %360{case 90:_abbb .Urx -=_fafcg ;case 180:_abbb .Ury -=_fafcg ;case 270:_abbb .Urx +=_fafcg ;case 0:_abbb .Ury +=_fafcg ;default:_gabg =0;_abbb .Ury +=_fafcg ;};if _abbb .Llx > _abbb .Urx {_abbb .Llx ,_abbb .Urx =_abbb .Urx ,_abbb .Llx ;}; +if _abbb .Lly > _abbb .Ury {_abbb .Lly ,_abbb .Ury =_abbb .Ury ,_abbb .Lly ;};_abed :=true ;if _ebdf ._cgf ._eda .Width ()> 0{_ffd ,_abec :=_dfba (_abbb ,_ebdf ._cgf ._eda );if !_abec {_abed =false ;_ed .Log .Debug ("\u0054\u0065\u0078\u0074\u0020m\u0061\u0072\u006b\u0020\u006f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0070a\u0067\u0065\u002e\u0020\u0062\u0062\u006f\u0078\u003d\u0025\u0067\u0020\u006d\u0065\u0064\u0069\u0061\u0042\u006f\u0078\u003d\u0025\u0067\u0020\u0074\u0065\u0078\u0074\u003d\u0025q",_abbb ,_ebdf ._cgf ._eda ,_gcge ); +};_abbb =_ffd ;};_dccg :=_abbb ;_baba :=_ebdf ._cgf ._eda ;switch _gabg %360{case 90:_baba .Urx ,_baba .Ury =_baba .Ury ,_baba .Urx ;_dccg =_gb .PdfRectangle {Llx :_baba .Urx -_abbb .Ury ,Urx :_baba .Urx -_abbb .Lly ,Lly :_abbb .Llx ,Ury :_abbb .Urx }; +case 180:_dccg =_gb .PdfRectangle {Llx :_baba .Urx -_abbb .Llx ,Urx :_baba .Urx -_abbb .Urx ,Lly :_baba .Ury -_abbb .Lly ,Ury :_baba .Ury -_abbb .Ury };case 270:_baba .Urx ,_baba .Ury =_baba .Ury ,_baba .Urx ;_dccg =_gb .PdfRectangle {Llx :_abbb .Ury ,Urx :_abbb .Lly ,Lly :_baba .Ury -_abbb .Llx ,Ury :_baba .Ury -_abbb .Urx }; +};if _dccg .Llx > _dccg .Urx {_dccg .Llx ,_dccg .Urx =_dccg .Urx ,_dccg .Llx ;};if _dccg .Lly > _dccg .Ury {_dccg .Lly ,_dccg .Ury =_dccg .Ury ,_dccg .Lly ;};_afbc :=textMark {_ceca :_gcge ,PdfRectangle :_dccg ,_aagcg :_abbb ,_gcfc :_dbef ,_gded :_fafcg ,_ggaf :_dbbc ,_dddf :_aeff ,_fdda :_ebea ,_cggbc :_gabg ,_egea :_dbbd ,_cdfbb :_cbce ,_dgebc :_bcbg ,_bfdcd :_badeb ,Th :_ebdf ._cbag ._fceg ,Tw :_ebdf ._cbag ._bfa ,_afae :_edacd ,_gegcc :_gfafb }; +if _gbbcc {_ed .Log .Info ("n\u0065\u0077\u0054\u0065\u0078\u0074M\u0061\u0072\u006b\u003a\u0020\u0073t\u0061\u0072\u0074\u003d\u0025\u002e\u0032f\u0020\u0065\u006e\u0064\u003d\u0025\u002e\u0032\u0066\u0020%\u0073",_edagcg ,_ebea ,_afbc .String ());};return _afbc ,_abed ; +};func (_cbfe *shapesState )devicePoint (_fca ,_fgeg float64 )_cc .Point {_ecfb :=_cbfe ._begf .Mult (_cbfe ._cca );_fca ,_fgeg =_ecfb .Transform (_fca ,_fgeg );return _cc .NewPoint (_fca ,_fgeg );};func (_ggee rulingList )splitSec ()[]rulingList {_d .Slice (_ggee ,func (_cgfgd ,_fceeg int )bool {_dfaa ,_ggdee :=_ggee [_cgfgd ],_ggee [_fceeg ]; +if _dfaa ._daag !=_ggdee ._daag {return _dfaa ._daag < _ggdee ._daag ;};return _dfaa ._fcff < _ggdee ._fcff ;});_agac :=make (map[*ruling ]struct{},len (_ggee ));_abdgg :=func (_fdga *ruling )rulingList {_fbfe :=rulingList {_fdga };_agac [_fdga ]=struct{}{}; +for _ ,_ccebc :=range _ggee {if _ ,_agefg :=_agac [_ccebc ];_agefg {continue ;};for _ ,_egfd :=range _fbfe {if _ccebc .alignsSec (_egfd ){_fbfe =append (_fbfe ,_ccebc );_agac [_ccebc ]=struct{}{};break ;};};};return _fbfe ;};_ecaf :=[]rulingList {_abdgg (_ggee [0])}; +for _ ,_fcafc :=range _ggee [1:]{if _ ,_caefc :=_agac [_fcafc ];_caefc {continue ;};_ecaf =append (_ecaf ,_abdgg (_fcafc ));};return _ecaf ;};type list struct{_ggbee []*textLine ;_feec string ;_gbcab []*list ;_ebabg string ;};func (_cbb *textObject )getFillColor ()_eb .Color {return _fbfab (_cbb ._ccg .ColorspaceNonStroking ,_cbb ._ccg .ColorNonStroking ); +};func (_ececce paraList )findGridTables (_gedfb []gridTiling )[]*textTable {if _geff {_ed .Log .Info ("\u0066i\u006e\u0064\u0047\u0072\u0069\u0064\u0054\u0061\u0062\u006c\u0065s\u003a\u0020\u0025\u0064\u0020\u0070\u0061\u0072\u0061\u0073",len (_ececce )); +for _feaf ,_eddd :=range _ececce {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_feaf ,_eddd );};};var _eddg []*textTable ;for _ffacg ,_bgdgf :=range _gedfb {_dgede ,_fbfbc :=_ececce .findTableGrid (_bgdgf );if _dgede !=nil {_dgede .log (_cfe .Sprintf ("\u0066\u0069\u006e\u0064Ta\u0062\u006c\u0065\u0057\u0069\u0074\u0068\u0047\u0072\u0069\u0064\u0073\u003a\u0020%\u0064",_ffacg )); +_eddg =append (_eddg ,_dgede );_dgede .markCells ();};for _edgcd :=range _fbfbc {_edgcd ._ggdd =true ;};};if _geff {_ed .Log .Info ("\u0066i\u006e\u0064\u0047\u0072i\u0064\u0054\u0061\u0062\u006ce\u0073:\u0020%\u0064\u0020\u0074\u0061\u0062\u006c\u0065s",len (_eddg )); +};return _eddg ;};func _adcb (_fdfda float64 )bool {return _df .Abs (_fdfda )< _dbgc };func _fgdf (_ggef string )(string ,bool ){_gfdgg :=[]rune (_ggef );if len (_gfdgg )!=1{return "",false ;};_dbbfg ,_ccec :=_edfcef [_gfdgg [0]];return _dbbfg ,_ccec ; +};func _cbcc (_abae _gb .PdfRectangle )*ruling {return &ruling {_cffe :_bdfd ,_abfg :_abae .Ury ,_daag :_abae .Llx ,_fcff :_abae .Urx };};func _ggff (_aged []*wordBag )[]*wordBag {if len (_aged )<=1{return _aged ;};if _gcga {_ed .Log .Info ("\u006d\u0065\u0072\u0067\u0065\u0057\u006f\u0072\u0064B\u0061\u0067\u0073\u003a"); +};_d .Slice (_aged ,func (_cffgg ,_ebag int )bool {_cffge ,_dddg :=_aged [_cffgg ],_aged [_ebag ];_egee :=_cffge .Width ()*_cffge .Height ();_aggb :=_dddg .Width ()*_dddg .Height ();if _egee !=_aggb {return _egee > _aggb ;};if _cffge .Height ()!=_dddg .Height (){return _cffge .Height ()> _dddg .Height (); +};return _cffgg < _ebag ;});var _gecef []*wordBag ;_ecc :=make (intSet );for _bgff :=0;_bgff < len (_aged );_bgff ++{if _ecc .has (_bgff ){continue ;};_cdg :=_aged [_bgff ];for _fgfb :=_bgff +1;_fgfb < len (_aged );_fgfb ++{if _ecc .has (_bgff ){continue ; +};_dcff :=_aged [_fgfb ];_fdbb :=_cdg .PdfRectangle ;_fdbb .Llx -=_cdg ._bcef ;if _egcd (_fdbb ,_dcff .PdfRectangle ){_cdg .absorb (_dcff );_ecc .add (_fgfb );};};_gecef =append (_gecef ,_cdg );};if len (_aged )!=len (_gecef )+len (_ecc ){_ed .Log .Error ("\u006d\u0065\u0072ge\u0057\u006f\u0072\u0064\u0042\u0061\u0067\u0073\u003a \u0025d\u2192%\u0064 \u0061\u0062\u0073\u006f\u0072\u0062\u0065\u0064\u003d\u0025\u0064",len (_aged ),len (_gecef ),len (_ecc )); +};return _gecef ;};func (_gdga rulingList )sort (){_d .Slice (_gdga ,_gdga .comp )};func (_caef *stateStack )top ()*textState {if _caef .empty (){return nil ;};return (*_caef )[_caef .size ()-1];};func _ccbcb (_fdbc _gg .PdfObject ,_abcf _eb .Color )(_gf .Image ,error ){_fccb ,_cdfda :=_gg .GetStream (_fdbc ); +if !_cdfda {return nil ,nil ;};_abdca ,_ccac :=_gb .NewXObjectImageFromStream (_fccb );if _ccac !=nil {return nil ,_ccac ;};_feead ,_ccac :=_abdca .ToImage ();if _ccac !=nil {return nil ,_ccac ;};return _fbaff (_feead ,_abcf ),nil ;}; // Text returns the text content of the `bulletLists`. -func (_aegg *lists )Text ()string {_bcac :=&_gd .Builder {};for _ ,_bfea :=range *_aegg {_geea :=_bfea .Text ();_bcac .WriteString (_geea );};return _bcac .String ();};func (_dcdd paraList )list ()[]*list {var _cfd []*textLine ;var _cfef []*textLine ;for _ ,_dagg :=range _dcdd {_dbag :=_dagg .getListLines (); -_cfd =append (_cfd ,_dbag ...);_cfef =append (_cfef ,_dagg ._bdbcg ...);};_cbcb :=_egbg (_cfd );_effc :=_cbbae (_cfef ,_cbcb );return _effc ;};func (_bgfg *textObject )getStrokeColor ()_fg .Color {return _agefd (_bgfg ._gbe .ColorspaceStroking ,_bgfg ._gbe .ColorStroking ); -};func (_cfbbg *textWord )bbox ()_ce .PdfRectangle {return _cfbbg .PdfRectangle }; +func (_ceeb *lists )Text ()string {_ccfc :=&_ag .Builder {};for _ ,_gedbg :=range *_ceeb {_bgde :=_gedbg .Text ();_ccfc .WriteString (_bgde );};return _ccfc .String ();};func (_gfag *structElement )parseStructElement (_eebae _gg .PdfObject ){_bace ,_gdef :=_gg .GetDict (_eebae ); +if !_gdef {_ed .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u0053\u0074\u0072u\u0063\u0074\u0045le\u006d\u0065\u006e\u0074\u003a\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u002e"); +return ;};_ecfbf :=_bace .Get ("\u0053");_ebged :=_bace .Get ("\u0050\u0067");_bgab :="";if _ecfbf !=nil {_bgab =_ecfbf .String ();};_agda :=_bace .Get ("\u004b");_gfag ._gacb =_bgab ;_gfag ._gfeff =_ebged ;switch _fdcad :=_agda .(type ){case *_gg .PdfObjectInteger :_gfag ._gacb =_bgab ; +_gfag ._adfb =int64 (*_fdcad );_gfag ._gfeff =_ebged ;case *_gg .PdfObjectReference :_egec :=*_gg .MakeArray (_fdcad );var _dfcf int64 =-1;_gfag ._adfb =_dfcf ;if _egec .Len ()==1{_cgfd :=_egec .Elements ()[0];_ecdaca ,_eded :=_cgfd .(*_gg .PdfObjectInteger ); +if _eded {_dfcf =int64 (*_ecdaca );_gfag ._adfb =_dfcf ;_gfag ._gacb =_bgab ;_gfag ._gfeff =_ebged ;return ;};};_bfgd :=[]structElement {};for _ ,_ccfd :=range _egec .Elements (){_dedae ,_ddae :=_ccfd .(*_gg .PdfObjectInteger );if _ddae {_dfcf =int64 (*_dedae ); +_gfag ._adfb =_dfcf ;_gfag ._gacb =_bgab ;}else {_faec :=&structElement {};_faec .parseStructElement (_ccfd );_bfgd =append (_bfgd ,*_faec );};_dfcf =-1;};_gfag ._ddcfe =_bfgd ;case *_gg .PdfObjectArray :_bbbd :=_agda .(*_gg .PdfObjectArray );var _adfg int64 =-1; +_gfag ._adfb =_adfg ;if _bbbd .Len ()==1{_acfef :=_bbbd .Elements ()[0];_afed ,_eefad :=_acfef .(*_gg .PdfObjectInteger );if _eefad {_adfg =int64 (*_afed );_gfag ._adfb =_adfg ;_gfag ._gacb =_bgab ;_gfag ._gfeff =_ebged ;return ;};};_gced :=[]structElement {}; +for _ ,_eeac :=range _bbbd .Elements (){_bfde ,_agbg :=_eeac .(*_gg .PdfObjectInteger );if _agbg {_adfg =int64 (*_bfde );_gfag ._adfb =_adfg ;_gfag ._gacb =_bgab ;_gfag ._gfeff =_ebged ;}else {_dgbb :=&structElement {};_dgbb .parseStructElement (_eeac ); +_gced =append (_gced ,*_dgbb );};_adfg =-1;};_gfag ._ddcfe =_gced ;};};func _fdedf (_egead ,_dbbab _cc .Point )bool {_fecf :=_df .Abs (_egead .X -_dbbab .X );_egbdb :=_df .Abs (_egead .Y -_dbbab .Y );return _dffe (_fecf ,_egbdb );};type textState struct{_bfdf float64 ; +_bfa float64 ;_fceg float64 ;_fea float64 ;_agge float64 ;_eacgf RenderMode ;_gce float64 ;_bdg *_gb .PdfFont ;_afd _gb .PdfRectangle ;_fdbd int ;_eec int ;};const _baee =10;func (_cgga rectRuling )asRuling ()(*ruling ,bool ){_dgcdd :=ruling {_cffe :_cgga ._gcaad ,Color :_cgga .Color ,_bbge :_cbcd }; +switch _cgga ._gcaad {case _gfafc :_dgcdd ._abfg =0.5*(_cgga .Llx +_cgga .Urx );_dgcdd ._daag =_cgga .Lly ;_dgcdd ._fcff =_cgga .Ury ;_dfed ,_gddef :=_cgga .checkWidth (_cgga .Llx ,_cgga .Urx );if !_gddef {if _afbec {_ed .Log .Error ("\u0072\u0065\u0063\u0074\u0052\u0075l\u0069\u006e\u0067\u002e\u0061\u0073\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0072\u0075\u006c\u0069\u006e\u0067V\u0065\u0072\u0074\u0020\u0021\u0063\u0068\u0065\u0063\u006b\u0057\u0069\u0064\u0074h\u0020v\u003d\u0025\u002b\u0076",_cgga ); +};return nil ,false ;};_dgcdd ._fdde =_dfed ;case _bdfd :_dgcdd ._abfg =0.5*(_cgga .Lly +_cgga .Ury );_dgcdd ._daag =_cgga .Llx ;_dgcdd ._fcff =_cgga .Urx ;_bdbfb ,_dbfcf :=_cgga .checkWidth (_cgga .Lly ,_cgga .Ury );if !_dbfcf {if _afbec {_ed .Log .Error ("\u0072\u0065\u0063\u0074\u0052\u0075l\u0069\u006e\u0067\u002e\u0061\u0073\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0072\u0075\u006c\u0069\u006e\u0067H\u006f\u0072\u007a\u0020\u0021\u0063\u0068\u0065\u0063\u006b\u0057\u0069\u0064\u0074h\u0020v\u003d\u0025\u002b\u0076",_cgga ); +};return nil ,false ;};_dgcdd ._fdde =_bdbfb ;default:_ed .Log .Error ("\u0062\u0061\u0064\u0020pr\u0069\u006d\u0061\u0072\u0079\u0020\u006b\u0069\u006e\u0064\u003d\u0025\u0064",_cgga ._gcaad );return nil ,false ;};return &_dgcdd ,true ;};func (_adad *textLine )text ()string {var _dcgd []string ; +for _ ,_bead :=range _adad ._bfca {if _bead ._cacca {_dcgd =append (_dcgd ,"\u0020");};_dcgd =append (_dcgd ,_bead ._bcfea );};return _ag .Join (_dcgd ,"");};func _dcab (_eece _cc .Point )*subpath {return &subpath {_ccgf :[]_cc .Point {_eece }}};func (_gbee *textObject )setTextRenderMode (_gfed int ){if _gbee ==nil {return ; +};_gbee ._cbag ._eacgf =RenderMode (_gfed );};type rulingKind int ;func _dffe (_bcdga ,_ecceb float64 )bool {return _bcdga /_df .Max (_cccd ,_ecceb )< _gdde };type textMark struct{_gb .PdfRectangle ;_cggbc int ;_ceca string ;_fbgee string ;_gcfc *_gb .PdfFont ; +_gded float64 ;_ggaf float64 ;_dddf _cc .Matrix ;_fdda _cc .Point ;_aagcg _gb .PdfRectangle ;_egea _eb .Color ;_cdfbb _eb .Color ;_dgebc _gg .PdfObject ;_bfdcd []string ;Tw float64 ;Th float64 ;_afae int ;_gegcc int ;};func (_beae *shapesState )moveTo (_bdgf ,_aafe float64 ){_beae ._dfff =true ; +_beae ._bcb =_beae .devicePoint (_bdgf ,_aafe );if _dgeg {_ed .Log .Info ("\u006d\u006fv\u0065\u0054\u006f\u003a\u0020\u0025\u002e\u0032\u0066\u002c\u0025\u002e\u0032\u0066\u0020\u0064\u0065\u0076\u0069\u0063\u0065\u003d%.\u0032\u0066",_bdgf ,_aafe ,_beae ._bcb ); +};};const (_eefaf rulingKind =iota ;_bdfd ;_gfafc ;);func _gede (_fgecb ,_ddef bounded )float64 {_gdgf :=_fdd (_fgecb ,_ddef );if !_cdgd (_gdgf ){return _gdgf ;};return _bafe (_fgecb ,_ddef );}; + +// NewWithOptions an Extractor instance for extracting content from the input PDF page with options. +func NewWithOptions (page *_gb .PdfPage ,options *Options )(*Extractor ,error ){const _fb ="\u0065x\u0074\u0072\u0061\u0063\u0074\u006f\u0072\u002e\u004e\u0065\u0077W\u0069\u0074\u0068\u004f\u0070\u0074\u0069\u006f\u006e\u0073";_eeb ,_ff :=page .GetAllContentStreams (); +if _ff !=nil {return nil ,_ff ;};_ec ,_ef :=page .GetStructTreeRoot ();if !_ef {_ed .Log .Info ("T\u0068\u0065\u0020\u0070\u0064\u0066\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0074\u0061\u0067g\u0065d\u002e\u0020\u0053\u0074r\u0075\u0063t\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074\u0020\u0065\u0078\u0069\u0073\u0074\u002e"); +};_fe :=page .GetContainingPdfObject ();_cfg ,_ff :=page .GetMediaBox ();if _ff !=nil {return nil ,_cfe .Errorf ("\u0065\u0078\u0074r\u0061\u0063\u0074\u006fr\u0020\u0072\u0065\u0071\u0075\u0069\u0072e\u0073\u0020\u006d\u0065\u0064\u0069\u0061\u0042\u006f\u0078\u002e\u0020\u0025\u0076",_ff ); +};_bf :=&Extractor {_ee :_eeb ,_bd :page .Resources ,_eda :*_cfg ,_gfg :page .CropBox ,_ebb :map[string ]fontEntry {},_db :map[string ]textResult {},_dfb :options ,_cd :_ec ,_dfd :_fe };if _bf ._eda .Llx > _bf ._eda .Urx {_ed .Log .Info ("\u004d\u0065\u0064\u0069\u0061\u0042o\u0078\u0020\u0068\u0061\u0073\u0020\u0058\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0073\u0020r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u002e\u0020\u0025\u002e\u0032\u0066\u0020F\u0069x\u0069\u006e\u0067\u002e",_bf ._eda ); +_bf ._eda .Llx ,_bf ._eda .Urx =_bf ._eda .Urx ,_bf ._eda .Llx ;};if _bf ._eda .Lly > _bf ._eda .Ury {_ed .Log .Info ("\u004d\u0065\u0064\u0069\u0061\u0042o\u0078\u0020\u0068\u0061\u0073\u0020\u0059\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0073\u0020r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u002e\u0020\u0025\u002e\u0032\u0066\u0020F\u0069x\u0069\u006e\u0067\u002e",_bf ._eda ); +_bf ._eda .Lly ,_bf ._eda .Ury =_bf ._eda .Ury ,_bf ._eda .Lly ;};_af .TrackUse (_fb );return _bf ,nil ;};func _dfcc (_fcfd *textWord ,_gdgg float64 ,_fbge ,_gccc rulingList )*wordBag {_gebbd :=_bedf (_fcfd ._cbfcee );_cedac :=[]*textWord {_fcfd };_affe :=wordBag {_gegc :map[int ][]*textWord {_gebbd :_cedac },PdfRectangle :_fcfd .PdfRectangle ,_bcef :_fcfd ._fgdbd ,_gebga :_gdgg ,_cbfg :_fbge ,_gaeg :_gccc }; +return &_affe ;};func (_fbaf *wordBag )applyRemovals (_fefd map[int ]map[*textWord ]struct{}){for _ade ,_bdgc :=range _fefd {if len (_bdgc )==0{continue ;};_agaa :=_fbaf ._gegc [_ade ];_bbae :=len (_agaa )-len (_bdgc );if _bbae ==0{delete (_fbaf ._gegc ,_ade ); +continue ;};_gacf :=make ([]*textWord ,_bbae );_fbfc :=0;for _ ,_efae :=range _agaa {if _ ,_bcfc :=_bdgc [_efae ];!_bcfc {_gacf [_fbfc ]=_efae ;_fbfc ++;};};_fbaf ._gegc [_ade ]=_gacf ;};};func _aadb (_efffe ,_eafe float64 )string {_fegg :=!_cdgd (_efffe -_eafe ); +if _fegg {return "\u000a";};return "\u0020";};func (_eggg *textTable )bbox ()_gb .PdfRectangle {return _eggg .PdfRectangle };var _bcbc =[]string {"\u2756","\u27a2","\u2713","\u2022","\uf0a7","\u25a1","\u2212","\u25a0","\u25aa","\u006f"};func _fdddc (_adagg []pathSection ){if _bcdg < 0.0{return ; +};if _geaeg {_ed .Log .Info ("\u0067\u0072\u0061\u006e\u0075\u006c\u0061\u0072\u0069\u007a\u0065\u003a\u0020\u0025\u0064 \u0073u\u0062\u0070\u0061\u0074\u0068\u0020\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0073",len (_adagg ));};for _fbfd ,_gaaa :=range _adagg {for _ggdg ,_eaeae :=range _gaaa ._ggfc {for _ageff ,_cdba :=range _eaeae ._ccgf {_eaeae ._ccgf [_ageff ]=_cc .Point {X :_bfddb (_cdba .X ),Y :_bfddb (_cdba .Y )}; +if _geaeg {_eggb :=_eaeae ._ccgf [_ageff ];if !_ggadd (_cdba ,_eggb ){_cfce :=_cc .Point {X :_eggb .X -_cdba .X ,Y :_eggb .Y -_cdba .Y };_cfe .Printf ("\u0025\u0034d \u002d\u0020\u00254\u0064\u0020\u002d\u0020%4d\u003a %\u002e\u0032\u0066\u0020\u2192\u0020\u0025.2\u0066\u0020\u0028\u0025\u0067\u0029\u000a",_fbfd ,_ggdg ,_ageff ,_cdba ,_eggb ,_cfce ); +};};};};};}; + +// Len returns the number of TextMarks in `ma`. +func (_dfac *TextMarkArray )Len ()int {if _dfac ==nil {return 0;};return len (_dfac ._ggcf );}; + +// TableInfo gets table information of the textmark `tm`. +func (_cega *TextMark )TableInfo ()(*TextTable ,[][]int ){if !_cega ._fefe {return nil ,nil ;};_cbbf :=_cega ._egc ;_cggb :=_cbbf .getCellInfo (*_cega );return _cbbf ,_cggb ;};const (_adab =false ;_gbbcc =false ;_adea =false ;_abb =false ;_dgeg =false ; +_geafa =false ;_fdec =false ;_baff =false ;_gcga =false ;_abgd =_gcga &&true ;_befe =_abgd &&false ;_fccg =_gcga &&true ;_geff =false ;_abef =_geff &&false ;_cbadb =_geff &&true ;_geaeg =false ;_faab =_geaeg &&false ;_dgbge =_geaeg &&false ;_aaga =_geaeg &&true ; +_afbec =_geaeg &&false ;_aagad =_geaeg &&false ;);func (_dfee *subpath )last ()_cc .Point {return _dfee ._ccgf [len (_dfee ._ccgf )-1]};func _fde (_cbbe ,_faaa _gb .PdfRectangle )_gb .PdfRectangle {return _gb .PdfRectangle {Llx :_df .Min (_cbbe .Llx ,_faaa .Llx ),Lly :_df .Min (_cbbe .Lly ,_faaa .Lly ),Urx :_df .Max (_cbbe .Urx ,_faaa .Urx ),Ury :_df .Max (_cbbe .Ury ,_faaa .Ury )}; +}; + +// BBox returns the smallest axis-aligned rectangle that encloses all the TextMarks in `ma`. +func (_deeg *TextMarkArray )BBox ()(_gb .PdfRectangle ,bool ){var _bfcd _gb .PdfRectangle ;_ggbe :=false ;for _ ,_cffg :=range _deeg ._ggcf {if _cffg .Meta ||_edefac (_cffg .Text ){continue ;};if _ggbe {_bfcd =_fde (_bfcd ,_cffg .BBox );}else {_bfcd =_cffg .BBox ; +_ggbe =true ;};};return _bfcd ,_ggbe ;};func (_efbed rectRuling )checkWidth (_cegbd ,_ceggf float64 )(float64 ,bool ){_badba :=_ceggf -_cegbd ;_cece :=_badba <=_dbgc ;return _badba ,_cece ;};func (_ecdg *textTable )newTablePara ()*textPara {_abea :=_ecdg .computeBbox (); +_bgag :=&textPara {PdfRectangle :_abea ,_cedf :_abea ,_bedfe :_ecdg };if _geff {_ed .Log .Info ("\u006e\u0065w\u0054\u0061\u0062l\u0065\u0050\u0061\u0072\u0061\u003a\u0020\u0025\u0073",_bgag );};return _bgag ;};func (_egaf *textObject )setFont (_fdc string ,_fgef float64 )error {if _egaf ==nil {return nil ; +};_egaf ._cbag ._agge =_fgef ;_cfac ,_aaad :=_egaf .getFont (_fdc );if _aaad !=nil {return _aaad ;};_egaf ._cbag ._bdg =_cfac ;return nil ;};type cachedImage struct{_gde *_gb .Image ;_ecg _gb .PdfColorspace ;};func _fdgd (_cfdc map[float64 ][]*textLine )[]float64 {_afda :=[]float64 {}; +for _bgcf :=range _cfdc {_afda =append (_afda ,_bgcf );};_d .Float64s (_afda );return _afda ;}; + +// String returns a human readable description of `vecs`. +func (_adade rulingList )String ()string {if len (_adade )==0{return "\u007b \u0045\u004d\u0050\u0054\u0059\u0020}";};_gfggd ,_fdbe :=_adade .vertsHorzs ();_fcde :=len (_gfggd );_gabe :=len (_fdbe );if _fcde ==0||_gabe ==0{return _cfe .Sprintf ("\u007b%\u0064\u0020\u0078\u0020\u0025\u0064}",_fcde ,_gabe ); +};_bcbd :=_gb .PdfRectangle {Llx :_gfggd [0]._abfg ,Urx :_gfggd [_fcde -1]._abfg ,Lly :_fdbe [_gabe -1]._abfg ,Ury :_fdbe [0]._abfg };return _cfe .Sprintf ("\u007b\u0025d\u0020\u0078\u0020%\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u007d",_fcde ,_gabe ,_bcbd ); +}; + +// RangeOffset returns the TextMarks in `ma` that overlap text[start:end] in the extracted text. +// These are tm: `start` <= tm.Offset + len(tm.Text) && tm.Offset < `end` where +// `start` and `end` are offsets in the extracted text. +// NOTE: TextMarks can contain multiple characters. e.g. "ffi" for the ffi ligature so the first and +// last elements of the returned TextMarkArray may only partially overlap text[start:end]. +func (_cce *TextMarkArray )RangeOffset (start ,end int )(*TextMarkArray ,error ){if _cce ==nil {return nil ,_c .New ("\u006da\u003d\u003d\u006e\u0069\u006c");};if end < start {return nil ,_cfe .Errorf ("\u0065\u006e\u0064\u0020\u003c\u0020\u0073\u0074\u0061\u0072\u0074\u002e\u0020\u0052\u0061n\u0067\u0065\u004f\u0066\u0066\u0073\u0065\u0074\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064\u002e\u0020\u0073\u0074\u0061\u0072t=\u0025\u0064\u0020\u0065\u006e\u0064\u003d\u0025\u0064\u0020",start ,end ); +};_fbf :=len (_cce ._ggcf );if _fbf ==0{return _cce ,nil ;};if start < _cce ._ggcf [0].Offset {start =_cce ._ggcf [0].Offset ;};if end > _cce ._ggcf [_fbf -1].Offset +1{end =_cce ._ggcf [_fbf -1].Offset +1;};_ecdac :=_d .Search (_fbf ,func (_daec int )bool {return _cce ._ggcf [_daec ].Offset +len (_cce ._ggcf [_daec ].Text )-1>=start }); +if !(0<=_ecdac &&_ecdac < _fbf ){_gad :=_cfe .Errorf ("\u004f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u002e\u0020\u0073\u0074\u0061\u0072\u0074\u003d%\u0064\u0020\u0069\u0053\u0074\u0061\u0072\u0074\u003d\u0025\u0064\u0020\u006c\u0065\u006e\u003d\u0025\u0064\u000a\u0009\u0066\u0069\u0072\u0073\u0074\u003d\u0025\u0076\u000a\u0009 \u006c\u0061\u0073\u0074\u003d%\u0076",start ,_ecdac ,_fbf ,_cce ._ggcf [0],_cce ._ggcf [_fbf -1]); +return nil ,_gad ;};_gfgf :=_d .Search (_fbf ,func (_fcdg int )bool {return _cce ._ggcf [_fcdg ].Offset > end -1});if !(0<=_gfgf &&_gfgf < _fbf ){_aggd :=_cfe .Errorf ("\u004f\u0075\u0074\u0020\u006f\u0066\u0020r\u0061\u006e\u0067e\u002e\u0020\u0065n\u0064\u003d%\u0064\u0020\u0069\u0045\u006e\u0064=\u0025d \u006c\u0065\u006e\u003d\u0025\u0064\u000a\u0009\u0066\u0069\u0072\u0073\u0074\u003d\u0025\u0076\u000a\u0009\u0020\u006c\u0061\u0073\u0074\u003d\u0025\u0076",end ,_gfgf ,_fbf ,_cce ._ggcf [0],_cce ._ggcf [_fbf -1]); +return nil ,_aggd ;};if _gfgf <=_ecdac {return nil ,_cfe .Errorf ("\u0069\u0045\u006e\u0064\u0020\u003c=\u0020\u0069\u0053\u0074\u0061\u0072\u0074\u003a\u0020\u0073\u0074\u0061\u0072\u0074\u003d\u0025\u0064\u0020\u0065\u006ed\u003d\u0025\u0064\u0020\u0069\u0053\u0074\u0061\u0072\u0074\u003d\u0025\u0064\u0020i\u0045n\u0064\u003d\u0025\u0064",start ,end ,_ecdac ,_gfgf ); +};return &TextMarkArray {_ggcf :_cce ._ggcf [_ecdac :_gfgf ]},nil ;}; + +// String returns a description of `b`. +func (_aece *wordBag )String ()string {var _fgec []string ;for _ ,_fdac :=range _aece .depthIndexes (){_bdfff :=_aece ._gegc [_fdac ];for _ ,_aagc :=range _bdfff {_fgec =append (_fgec ,_aagc ._bcfea );};};return _cfe .Sprintf ("\u0025.\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065=\u0025\u002e\u0032\u0066\u0020\u0025\u0064\u0020\u0025\u0071",_aece .PdfRectangle ,_aece ._bcef ,len (_fgec ),_fgec ); +};func (_cceag intSet )del (_cacg int ){delete (_cceag ,_cacg )};func _aaffa (_cfdf map[float64 ]gridTile )[]float64 {_fabb :=make ([]float64 ,0,len (_cfdf ));for _begge :=range _cfdf {_fabb =append (_fabb ,_begge );};_d .Float64s (_fabb );return _fabb ; +};func (_ffgb *textObject )moveText (_gdec ,_cab float64 ){_ffgb .moveLP (_gdec ,_cab )};func _ggadd (_aaag ,_gbge _cc .Point )bool {return _aaag .X ==_gbge .X &&_aaag .Y ==_gbge .Y };func _ffbbc (_beec []*textWord ,_gffadc int )[]*textWord {_bdgdc :=len (_beec ); +copy (_beec [_gffadc :],_beec [_gffadc +1:]);return _beec [:_bdgdc -1];};func _eddb (_bdfb []*textLine ,_dfga map[float64 ][]*textLine ,_dcebcb []float64 ,_cdgge int ,_fga ,_fbdf float64 )[]*list {_acga :=[]*list {};_cbfb :=_cdgge ;_cdgge =_cdgge +1;_gddb :=_dcebcb [_cbfb ]; +_caccf :=_dfga [_gddb ];_gdccc :=_feed (_caccf ,_fbdf ,_fga );for _bagg ,_beee :=range _gdccc {var _dgad float64 ;_cbeb :=[]*list {};_edcf :=_beee ._bdbg ;_aaea :=_fbdf ;if _bagg < len (_gdccc )-1{_aaea =_gdccc [_bagg +1]._bdbg ;};if _cdgge < len (_dcebcb ){_cbeb =_eddb (_bdfb ,_dfga ,_dcebcb ,_cdgge ,_edcf ,_aaea ); +};_dgad =_aaea ;if len (_cbeb )> 0{_dbba :=_cbeb [0];if len (_dbba ._ggbee )> 0{_dgad =_dbba ._ggbee [0]._bdbg ;};};_cfff :=[]*textLine {_beee };_ffceg :=_bbfg (_beee ,_bdfb ,_dcebcb ,_edcf ,_dgad );_cfff =append (_cfff ,_ffceg ...);_bbfa :=_gbcag (_cfff ,"\u0062\u0075\u006c\u006c\u0065\u0074",_cbeb ); +_bbfa ._ebabg =_adag (_cfff ,"");_acga =append (_acga ,_bbfa );};return _acga ;}; + +// PageFonts represents extracted fonts on a PDF page. +type PageFonts struct{Fonts []Font ;};func _ggbc (_deff bounded )float64 {return -_deff .bbox ().Lly }; + +// String returns a human readable description of `path`. +func (_cfeb *subpath )String ()string {_adf :=_cfeb ._ccgf ;_dfca :=len (_adf );if _dfca <=5{return _cfe .Sprintf ("\u0025d\u003a\u0020\u0025\u0036\u002e\u0032f",_dfca ,_adf );};return _cfe .Sprintf ("\u0025d\u003a\u0020\u0025\u0036.\u0032\u0066\u0020\u0025\u0036.\u0032f\u0020.\u002e\u002e\u0020\u0025\u0036\u002e\u0032f",_dfca ,_adf [0],_adf [1],_adf [_dfca -1]); +};func _bbg (_caega *textLine )bool {_bgbe :=true ;_dfcag :=-1;for _ ,_dddeff :=range _caega ._bfca {for _ ,_aage :=range _dddeff ._fdgbc {_faef :=_aage ._afae ;if _dfcag ==-1{_dfcag =_faef ;}else {if _dfcag !=_faef {_bgbe =false ;break ;};};};};return _bgbe ; +}; + +// String returns a string descibing `i`. +func (_befc gridTile )String ()string {_cecc :=func (_gdaa bool ,_gddbg string )string {if _gdaa {return _gddbg ;};return "\u005f";};return _cfe .Sprintf ("\u00256\u002e2\u0066\u0020\u0025\u0031\u0073%\u0031\u0073%\u0031\u0073\u0025\u0031\u0073",_befc .PdfRectangle ,_cecc (_befc ._bdcfac ,"\u004c"),_cecc (_befc ._babe ,"\u0052"),_cecc (_befc ._debb ,"\u0042"),_cecc (_befc ._cccb ,"\u0054")); +};func (_addce gridTile )contains (_eedd _gb .PdfRectangle )bool {if _addce .numBorders ()< 3{return false ;};if _addce ._bdcfac &&_eedd .Llx < _addce .Llx -_caeg {return false ;};if _addce ._babe &&_eedd .Urx > _addce .Urx +_caeg {return false ;};if _addce ._debb &&_eedd .Lly < _addce .Lly -_caeg {return false ; +};if _addce ._cccb &&_eedd .Ury > _addce .Ury +_caeg {return false ;};return true ;};func (_aaafg *textTable )log (_bfdd string ){if !_geff {return ;};_ed .Log .Info ("~\u007e\u007e\u0020\u0025\u0073\u003a \u0025\u0064\u0020\u0078\u0020\u0025d\u0020\u0067\u0072\u0069\u0064\u003d\u0025t\u000a\u0020\u0020\u0020\u0020\u0020\u0020\u0025\u0036\u002e2\u0066",_bfdd ,_aaafg ._fccgee ,_aaafg ._dege ,_aaafg ._baccf ,_aaafg .PdfRectangle ); +for _adedf :=0;_adedf < _aaafg ._dege ;_adedf ++{for _bffg :=0;_bffg < _aaafg ._fccgee ;_bffg ++{_efcag :=_aaafg .get (_bffg ,_adedf );if _efcag ==nil {continue ;};_cfe .Printf ("%\u0034\u0064\u0020\u00252d\u003a \u0025\u0036\u002e\u0032\u0066 \u0025\u0071\u0020\u0025\u0064\u000a",_bffg ,_adedf ,_efcag .PdfRectangle ,_fabf (_efcag .text (),50),_cb .RuneCountInString (_efcag .text ())); +};};}; // Options extractor options. type Options struct{ @@ -79,100 +274,495 @@ ApplyCropBox bool ; // Thus it is a flag to allow the user to control this process. // // Skipping some extraction processes would also lead to the reduced processing time. -UseSimplerExtractionProcess bool ;};func _beca (_aceeg []pathSection )rulingList {_bdged (_aceeg );if _gfgc {_ec .Log .Info ("\u006d\u0061k\u0065\u0053\u0074\u0072\u006f\u006b\u0065\u0052\u0075\u006c\u0069\u006e\u0067\u0073\u003a\u0020\u0025\u0064\u0020\u0073\u0074\u0072ok\u0065\u0073",len (_aceeg )); -};var _eabca rulingList ;for _ ,_fdga :=range _aceeg {for _ ,_eeed :=range _fdga ._fbfe {if len (_eeed ._gfefe )< 2{continue ;};_gceb :=_eeed ._gfefe [0];for _ ,_bfbcc :=range _eeed ._gfefe [1:]{if _gadbd ,_eabfd :=_gfbbf (_gceb ,_bfbcc ,_fdga .Color ); -_eabfd {_eabca =append (_eabca ,_gadbd );};_gceb =_bfbcc ;};};};if _gfgc {_ec .Log .Info ("m\u0061\u006b\u0065\u0053tr\u006fk\u0065\u0052\u0075\u006c\u0069n\u0067\u0073\u003a\u0020\u0025\u0073",_eabca );};return _eabca ;};func _bcdee (_deeef ,_bgae _bc .Point )rulingKind {_gcbce :=_aa .Abs (_deeef .X -_bgae .X ); -_fcefg :=_aa .Abs (_deeef .Y -_bgae .Y );return _gbbf (_gcbce ,_fcefg ,_cffa );};func (_ddbg *textPara )depth ()float64 {if _ddbg ._bedf {return -1.0;};if len (_ddbg ._bdbcg )> 0{return _ddbg ._bdbcg [0]._bcdg ;};return _ddbg ._bddea .depth ();}; +UseSimplerExtractionProcess bool ;};func (_fgeb *wordBag )firstWord (_cdcg int )*textWord {return _fgeb ._gegc [_cdcg ][0]};func (_cacb rulingList )connections (_edbfd map[int ]intSet ,_gadd int )intSet {_ddcg :=make (intSet );_agcag :=make (intSet );var _faaee func (int ); +_faaee =func (_fegee int ){if !_agcag .has (_fegee ){_agcag .add (_fegee );for _debc :=range _cacb {if _edbfd [_debc ].has (_fegee ){_ddcg .add (_debc );};};for _cbebd :=range _cacb {if _ddcg .has (_cbebd ){_faaee (_cbebd );};};};};_faaee (_gadd );return _ddcg ; +};func (_ddcdb *wordBag )sort (){for _ ,_acaf :=range _ddcdb ._gegc {_d .Slice (_acaf ,func (_ccfg ,_dab int )bool {return _fdd (_acaf [_ccfg ],_acaf [_dab ])< 0});};};func (_aggg *textTable )getDown ()paraList {_acbdc :=make (paraList ,_aggg ._fccgee ); +for _cbff :=0;_cbff < _aggg ._fccgee ;_cbff ++{_efgfc :=_aggg .get (_cbff ,_aggg ._dege -1)._cgfe ;if _efgfc .taken (){return nil ;};_acbdc [_cbff ]=_efgfc ;};for _bded :=0;_bded < _aggg ._fccgee -1;_bded ++{if _acbdc [_bded ]._ccdg !=_acbdc [_bded +1]{return nil ; +};};return _acbdc ;};type rectRuling struct{_gcaad rulingKind ;_abgg markKind ;_eb .Color ;_gb .PdfRectangle ;};func _bdda (_agga *_gb .Image ,_cegfa _eb .Color )_gf .Image {_bdcg ,_eebf :=int (_agga .Width ),int (_agga .Height );_geefb :=_gf .NewRGBA (_gf .Rect (0,0,_bdcg ,_eebf )); +for _abcbe :=0;_abcbe < _eebf ;_abcbe ++{for _gcfg :=0;_gcfg < _bdcg ;_gcfg ++{_geade ,_dcaf :=_agga .ColorAt (_gcfg ,_abcbe );if _dcaf !=nil {_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_gcfg ,_abcbe ); +continue ;};_febf ,_abagd ,_ecgcb ,_ :=_geade .RGBA ();var _eaaa _eb .Color ;if _febf +_abagd +_ecgcb ==0{_eaaa =_eb .Transparent ;}else {_eaaa =_cegfa ;};_geefb .Set (_gcfg ,_abcbe ,_eaaa );};};return _geefb ;};func (_bdgfd rulingList )primMinMax ()(float64 ,float64 ){_aeadd ,_ccad :=_bdgfd [0]._abfg ,_bdgfd [0]._abfg ; +for _ ,_gfda :=range _bdgfd [1:]{if _gfda ._abfg < _aeadd {_aeadd =_gfda ._abfg ;}else if _gfda ._abfg > _ccad {_ccad =_gfda ._abfg ;};};return _aeadd ,_ccad ;};func (_dedga rulingList )toTilings ()(rulingList ,[]gridTiling ){_dedga .log ("\u0074o\u0054\u0069\u006c\u0069\u006e\u0067s"); +if len (_dedga )==0{return nil ,nil ;};_dedga =_dedga .tidied ("\u0061\u006c\u006c");_dedga .log ("\u0074\u0069\u0064\u0069\u0065\u0064");_fbbab :=_dedga .toGrids ();_bdfba :=make ([]gridTiling ,len (_fbbab ));for _bebf ,_bfcdb :=range _fbbab {_bdfba [_bebf ]=_bfcdb .asTiling (); +};return _dedga ,_bdfba ;};func (_fdcg rulingList )intersections ()map[int ]intSet {var _eaeea ,_gacg []int ;for _bgffe ,_edbc :=range _fdcg {switch _edbc ._cffe {case _gfafc :_eaeea =append (_eaeea ,_bgffe );case _bdfd :_gacg =append (_gacg ,_bgffe ); +};};if len (_eaeea )< _edeec +1||len (_gacg )< _fegbc +1{return nil ;};if len (_eaeea )+len (_gacg )> _aaaa {_ed .Log .Debug ("\u0069\u006e\u0074\u0065\u0072\u0073e\u0063\u0074\u0069\u006f\u006e\u0073\u003a\u0020\u0054\u004f\u004f\u0020\u004d\u0041\u004e\u0059\u0020\u0072\u0075\u006ci\u006e\u0067\u0073\u0020\u0076\u0065\u0063\u0073\u003d\u0025\u0064\u0020\u003d\u0020%\u0064 \u0078\u0020\u0025\u0064",len (_fdcg ),len (_eaeea ),len (_gacg )); +return nil ;};_cddg :=make (map[int ]intSet ,len (_eaeea )+len (_gacg ));for _ ,_gggeg :=range _eaeea {for _ ,_afbg :=range _gacg {if _fdcg [_gggeg ].intersects (_fdcg [_afbg ]){if _ ,_acgb :=_cddg [_gggeg ];!_acgb {_cddg [_gggeg ]=make (intSet );};if _ ,_fdcb :=_cddg [_afbg ]; +!_fdcb {_cddg [_afbg ]=make (intSet );};_cddg [_gggeg ].add (_afbg );_cddg [_afbg ].add (_gggeg );};};};return _cddg ;};var _gegca =map[rulingKind ]string {_eefaf :"\u006e\u006f\u006e\u0065",_bdfd :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c",_gfafc :"\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c"}; +func (_beeb *textPara )toCellTextMarks (_bbdbe *int )[]TextMark {var _edefc []TextMark ;for _gba ,_eabag :=range _beeb ._abbe {_bceb :=_eabag .toTextMarks (_bbdbe );_gbaf :=_ddfg &&_eabag .endsInHyphen ()&&_gba !=len (_beeb ._abbe )-1;if _gbaf {_bceb =_aege (_bceb ,_bbdbe ); +};_edefc =append (_edefc ,_bceb ...);if !(_gbaf ||_gba ==len (_beeb ._abbe )-1){_edefc =_dgccag (_edefc ,_bbdbe ,_aadb (_eabag ._bdbg ,_beeb ._abbe [_gba +1]._bdbg ));};};return _edefc ;};func _aafb (_deac ,_bfbgb int )uint64 {return uint64 (_deac )*0x1000000+uint64 (_bfbgb )}; +func (_dgcd *wordBag )makeRemovals ()map[int ]map[*textWord ]struct{}{_fdbf :=make (map[int ]map[*textWord ]struct{},len (_dgcd ._gegc ));for _gbfe :=range _dgcd ._gegc {_fdbf [_gbfe ]=make (map[*textWord ]struct{});};return _fdbf ;};func (_feaae paraList )sortTopoOrder (){_adfbe :=_feaae .topoOrder (); +_feaae .reorder (_adfbe )};func _ecdf (_cabc ,_eccc bounded )float64 {_bbaea :=_bafe (_cabc ,_eccc );if !_cdgd (_bbaea ){return _bbaea ;};return _fdd (_cabc ,_eccc );};func _gcda (_beegg func (*wordBag ,*textWord ,float64 )bool ,_eabd float64 )func (*wordBag ,*textWord )bool {return func (_edfb *wordBag ,_aaed *textWord )bool {return _beegg (_edfb ,_aaed ,_eabd )}; +};func (_bcfd *wordBag )minDepth ()float64 {return _bcfd ._gebga -(_bcfd .Ury -_bcfd ._bcef )};func _eaf (_cbe []Font ,_bdc string )bool {for _ ,_ebbd :=range _cbe {if _ebbd .FontName ==_bdc {return true ;};};return false ;};func (_dbccd gridTile )numBorders ()int {_cagc :=0; +if _dbccd ._bdcfac {_cagc ++;};if _dbccd ._babe {_cagc ++;};if _dbccd ._debb {_cagc ++;};if _dbccd ._cccb {_cagc ++;};return _cagc ;};func (_gbd *wordBag )depthRange (_bgf ,_caeb int )[]int {var _ddab []int ;for _eaea :=range _gbd ._gegc {if _bgf <=_eaea &&_eaea <=_caeb {_ddab =append (_ddab ,_eaea ); +};};if len (_ddab )==0{return nil ;};_d .Ints (_ddab );return _ddab ;}; + +// ImageExtractOptions contains options for controlling image extraction from +// PDF pages. +type ImageExtractOptions struct{IncludeInlineStencilMasks bool ;};func _beba (_bbc _gb .PdfRectangle )textState {return textState {_fceg :100,_eacgf :RenderModeFill ,_afd :_bbc };};func _fdd (_cegbb ,_bfcgc bounded )float64 {return _cegbb .bbox ().Llx -_bfcgc .bbox ().Llx }; +func (_cgdc rulingList )snapToGroupsDirection ()rulingList {_cgdc .sortStrict ();_dbcb :=make (map[*ruling ]rulingList ,len (_cgdc ));_ecfcg :=_cgdc [0];_decdg :=func (_fgbb *ruling ){_ecfcg =_fgbb ;_dbcb [_ecfcg ]=rulingList {_fgbb }};_decdg (_cgdc [0]); +for _ ,_efgc :=range _cgdc [1:]{if _efgc ._abfg < _ecfcg ._abfg -_dafe {_ed .Log .Error ("\u0073\u006e\u0061\u0070T\u006f\u0047\u0072\u006f\u0075\u0070\u0073\u0044\u0069r\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0057\u0072\u006f\u006e\u0067\u0020\u0070\u0072\u0069\u006da\u0072\u0079\u0020\u006f\u0072d\u0065\u0072\u002e\u000a\u0009\u0076\u0030\u003d\u0025\u0073\u000a\u0009\u0020\u0076\u003d\u0025\u0073",_ecfcg ,_efgc ); +};if _efgc ._abfg > _ecfcg ._abfg +_dbgc {_decdg (_efgc );}else {_dbcb [_ecfcg ]=append (_dbcb [_ecfcg ],_efgc );};};_gagae :=make (map[*ruling ]float64 ,len (_dbcb ));_efedc :=make (map[*ruling ]*ruling ,len (_cgdc ));for _ddbe ,_fbag :=range _dbcb {_gagae [_ddbe ]=_fbag .mergePrimary (); +for _ ,_ebeb :=range _fbag {_efedc [_ebeb ]=_ddbe ;};};for _ ,_fbgg :=range _cgdc {_fbgg ._abfg =_gagae [_efedc [_fbgg ]];};_agab :=make (rulingList ,0,len (_cgdc ));for _ ,_agag :=range _dbcb {_aacc :=_agag .splitSec ();for _fdgcb ,_ebcg :=range _aacc {_cegga :=_ebcg .merge (); +if len (_agab )> 0{_ececc :=_agab [len (_agab )-1];if _ececc .alignsPrimary (_cegga )&&_ececc .alignsSec (_cegga ){_ed .Log .Error ("\u0073\u006e\u0061\u0070\u0054\u006fG\u0072\u006f\u0075\u0070\u0073\u0044\u0069\u0072\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0044\u0075\u0070\u006ci\u0063\u0061\u0074\u0065\u0020\u0069\u003d\u0025\u0064\u000a\u0009\u0077\u003d\u0025s\u000a\t\u0076\u003d\u0025\u0073",_fdgcb ,_ececc ,_cegga ); +continue ;};};_agab =append (_agab ,_cegga );};};_agab .sortStrict ();return _agab ;};func _fabf (_bdea string ,_feafa int )string {if len (_bdea )< _feafa {return _bdea ;};return _bdea [:_feafa ];};type rulingList []*ruling ;func (_ggecc *ruling )intersects (_abfe *ruling )bool {_cbcge :=(_ggecc ._cffe ==_gfafc &&_abfe ._cffe ==_bdfd )||(_abfe ._cffe ==_gfafc &&_ggecc ._cffe ==_bdfd ); +_cdbfb :=func (_cdcgg ,_edbb *ruling )bool {return _cdcgg ._daag -_egaa <=_edbb ._abfg &&_edbb ._abfg <=_cdcgg ._fcff +_egaa ;};_facgb :=_cdbfb (_ggecc ,_abfe );_baffg :=_cdbfb (_abfe ,_ggecc );if _geaeg {_cfe .Printf ("\u0020\u0020\u0020\u0020\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074\u0073\u003a\u0020\u0020\u006fr\u0074\u0068\u006f\u0067\u006f\u006e\u0061l\u003d\u0025\u0074\u0020\u006f\u0031\u003d\u0025\u0074\u0020\u006f2\u003d\u0025\u0074\u0020\u2192\u0020\u0025\u0074\u000a"+"\u0020\u0020\u0020 \u0020\u0020\u0020\u0076\u003d\u0025\u0073\u000a"+" \u0020\u0020\u0020\u0020\u0020\u0077\u003d\u0025\u0073\u000a",_cbcge ,_facgb ,_baffg ,_cbcge &&_facgb &&_baffg ,_ggecc ,_abfe ); +};return _cbcge &&_facgb &&_baffg ;};type bounded interface{bbox ()_gb .PdfRectangle };func (_gag *subpath )removeDuplicates (){if len (_gag ._ccgf )==0{return ;};_egbc :=[]_cc .Point {_gag ._ccgf [0]};for _ ,_dfeea :=range _gag ._ccgf [1:]{if !_ggadd (_dfeea ,_egbc [len (_egbc )-1]){_egbc =append (_egbc ,_dfeea ); +};};_gag ._ccgf =_egbc ;};func (_acda *textWord )appendMark (_fadc *textMark ,_bfdgg _gb .PdfRectangle ){_acda ._fdgbc =append (_acda ._fdgbc ,_fadc );_acda .PdfRectangle =_fde (_acda .PdfRectangle ,_fadc .PdfRectangle );if _fadc ._gded > _acda ._fgdbd {_acda ._fgdbd =_fadc ._gded ; +};_acda ._cbfcee =_bfdgg .Ury -_acda .PdfRectangle .Lly ;};func _cebdd (_gdcgb []compositeCell )[]float64 {var _cgfbe []*textLine ;_gceda :=0;for _ ,_gffad :=range _gdcgb {_gceda +=len (_gffad .paraList );_cgfbe =append (_cgfbe ,_gffad .lines ()...);}; +_d .Slice (_cgfbe ,func (_gdbf ,_ddgb int )bool {_ddecd ,_fefdd :=_cgfbe [_gdbf ],_cgfbe [_ddgb ];_adcg ,_gadea :=_ddecd ._bdbg ,_fefdd ._bdbg ;if !_cdgd (_adcg -_gadea ){return _adcg < _gadea ;};return _ddecd .Llx < _fefdd .Llx ;});if _geff {_cfe .Printf ("\u0020\u0020\u0020 r\u006f\u0077\u0042\u006f\u0072\u0064\u0065\u0072\u0073:\u0020%\u0064 \u0070a\u0072\u0061\u0073\u0020\u0025\u0064\u0020\u006c\u0069\u006e\u0065\u0073\u000a",_gceda ,len (_cgfbe )); +for _ddege ,_gddc :=range _cgfbe {_cfe .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_ddege ,_gddc );};};var _gbbdb []float64 ;_cebga :=_cgfbe [0];var _edbgf [][]*textLine ;_gcef :=[]*textLine {_cebga };for _feca ,_aafd :=range _cgfbe [1:]{if _aafd .Ury < _cebga .Lly {_ccbad :=0.5*(_aafd .Ury +_cebga .Lly ); +if _geff {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u003c\u0020\u0025\u0036.\u0032f\u0020\u0062\u006f\u0072\u0064\u0065\u0072\u003d\u0025\u0036\u002e\u0032\u0066\u000a"+"\u0009\u0020\u0071\u003d\u0025\u0073\u000a\u0009\u0020p\u003d\u0025\u0073\u000a",_feca ,_aafd .Ury ,_cebga .Lly ,_ccbad ,_cebga ,_aafd ); +};_gbbdb =append (_gbbdb ,_ccbad );_edbgf =append (_edbgf ,_gcef );_gcef =nil ;};_gcef =append (_gcef ,_aafd );if _aafd .Lly < _cebga .Lly {_cebga =_aafd ;};};if len (_gcef )> 0{_edbgf =append (_edbgf ,_gcef );};if _geff {_cfe .Printf (" \u0020\u0020\u0020\u0020\u0020\u0020 \u0072\u006f\u0077\u0043\u006f\u0072\u0072\u0069\u0064o\u0072\u0073\u003d%\u0036.\u0032\u0066\u000a",_gbbdb ); +};if _geff {_ed .Log .Info ("\u0072\u006f\u0077\u003d\u0025\u0064",len (_gdcgb ));for _acca ,_gebc :=range _gdcgb {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_acca ,_gebc );};_ed .Log .Info ("\u0067r\u006f\u0075\u0070\u0073\u003d\u0025d",len (_edbgf )); +for _dfbfg ,_efdd :=range _edbgf {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0064\u000a",_dfbfg ,len (_efdd ));for _agdfgg ,_eaaf :=range _efdd {_cfe .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_agdfgg ,_eaaf );};};};_gfcf :=true ; +for _acdb ,_ccdf :=range _edbgf {_dfdcbe :=true ;for _ddged ,_agdg :=range _gdcgb {if _geff {_cfe .Printf ("\u0020\u0020\u0020\u007e\u007e\u007e\u0067\u0072\u006f\u0075\u0070\u0020\u0025\u0064\u0020\u006f\u0066\u0020\u0025\u0064\u0020\u0063\u0065\u006cl\u0020\u0025\u0064\u0020\u006ff\u0020\u0025d\u0020\u0025\u0073\u000a",_acdb ,len (_edbgf ),_ddged ,len (_gdcgb ),_agdg ); +};if !_agdg .hasLines (_ccdf ){if _geff {_cfe .Printf ("\u0020\u0020\u0020\u0021\u0021\u0021\u0067\u0072\u006f\u0075\u0070\u0020\u0025d\u0020\u006f\u0066\u0020\u0025\u0064 \u0063\u0065\u006c\u006c\u0020\u0025\u0064\u0020\u006f\u0066\u0020\u0025\u0064 \u004f\u0055\u0054\u000a",_acdb ,len (_edbgf ),_ddged ,len (_gdcgb )); +};_dfdcbe =false ;break ;};};if !_dfdcbe {_gfcf =false ;break ;};};if !_gfcf {if _geff {_ed .Log .Info ("\u0072\u006f\u0077\u0020\u0063o\u0072\u0072\u0069\u0064\u006f\u0072\u0073\u0020\u0064\u006f\u006e\u0027\u0074 \u0073\u0070\u0061\u006e\u0020\u0061\u006c\u006c\u0020\u0063\u0065\u006c\u006c\u0073\u0020\u0069\u006e\u0020\u0072\u006f\u0077\u002e\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006eg"); +};_gbbdb =nil ;};if _geff &&_gbbdb !=nil {_cfe .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u002a\u002a*\u0072\u006f\u0077\u0043\u006f\u0072\u0072i\u0064\u006f\u0072\u0073\u003d\u0025\u0036\u002e\u0032\u0066\u000a",_gbbdb );};return _gbbdb ; +};func (_cedg *textPara )writeCellText (_ecgce _a .Writer ){for _bcgf ,_bedd :=range _cedg ._abbe {_ageada :=_bedd .text ();_fcca :=_ddfg &&_bedd .endsInHyphen ()&&_bcgf !=len (_cedg ._abbe )-1;if _fcca {_ageada =_aabe (_ageada );};_ecgce .Write ([]byte (_ageada )); +if !(_fcca ||_bcgf ==len (_cedg ._abbe )-1){_ecgce .Write ([]byte (_aadb (_bedd ._bdbg ,_cedg ._abbe [_bcgf +1]._bdbg )));};};};func (_ddeac *wordBag )getDepthIdx (_dbgac float64 )int {_affg :=_ddeac .depthIndexes ();_fee :=_bedf (_dbgac );if _fee < _affg [0]{return _affg [0]; +};if _fee > _affg [len (_affg )-1]{return _affg [len (_affg )-1];};return _fee ;};type paraList []*textPara ;type fontEntry struct{_cegb *_gb .PdfFont ;_dgca int64 ;};func (_dagbg paraList )topoOrder ()[]int {if _baff {_ed .Log .Info ("\u0074\u006f\u0070\u006f\u004f\u0072\u0064\u0065\u0072\u003a"); +};_dbec :=len (_dagbg );_eabca :=make ([]bool ,_dbec );_ecfdb :=make ([]int ,0,_dbec );_edede :=_dagbg .llyOrdering ();var _ebgb func (_cgbcb int );_ebgb =func (_cbfgfb int ){_eabca [_cbfgfb ]=true ;for _fddd :=0;_fddd < _dbec ;_fddd ++{if !_eabca [_fddd ]{if _dagbg .readBefore (_edede ,_cbfgfb ,_fddd ){_ebgb (_fddd ); +};};};_ecfdb =append (_ecfdb ,_cbfgfb );};for _geeeg :=0;_geeeg < _dbec ;_geeeg ++{if !_eabca [_geeeg ]{_ebgb (_geeeg );};};return _edde (_ecfdb );};type event struct{_bggcc float64 ;_aagcb bool ;_caccdd int ;};const (_dafe =1.0e-6;_bcdg =1.0e-4;_ecce =10; +_edagd =6;_dgfg =0.5;_cgc =0.12;_gbdc =0.19;_cedace =0.04;_fcga =0.04;_dccd =1.0;_aeg =0.04;_debd =0.4;_cdcgd =0.7;_cbfc =1.0;_cdce =0.1;_dedd =1.4;_ccfe =0.46;_bacc =0.02;_gcca =0.2;_fabc =0.5;_ddcf =4;_cfab =4.0;_dgea =6;_dgcca =0.3;_agcd =0.01;_gbea =0.02; +_edeec =2;_fegbc =2;_aaaa =500;_caf =4.0;_eee =4.0;_gdde =0.05;_cccd =0.1;_egaa =2.0;_dbgc =2.0;_caeg =1.5;_fbgec =3.0;_ecdaa =0.25;);func (_abecc *textWord )absorb (_edbfa *textWord ){_abecc .PdfRectangle =_fde (_abecc .PdfRectangle ,_edbfa .PdfRectangle ); +_abecc ._fdgbc =append (_abecc ._fdgbc ,_edbfa ._fdgbc ...);}; + +// Tables returns the tables extracted from the page. +func (_gdba PageText )Tables ()[]TextTable {if _geff {_ed .Log .Info ("\u0054\u0061\u0062\u006c\u0065\u0073\u003a\u0020\u0025\u0064",len (_gdba ._ded ));};return _gdba ._ded ;};func _dbfg (_aeeg ,_caaa _cc .Point )rulingKind {_eced :=_df .Abs (_aeeg .X -_caaa .X ); +_gggd :=_df .Abs (_aeeg .Y -_caaa .Y );return _gaba (_eced ,_gggd ,_gdde );};func (_dffc *textPara )getListLines ()[]*textLine {var _cgca []*textLine ;_cegd :=_eaag (_dffc ._abbe );for _ ,_agd :=range _dffc ._abbe {_gcaa :=_agd ._bfca [0]._bcfea [0];if _cacc (_gcaa ){_cgca =append (_cgca ,_agd ); +};};_cgca =append (_cgca ,_cegd ...);return _cgca ;};type shapesState struct{_cca _cc .Matrix ;_begf _cc .Matrix ;_babc []*subpath ;_dfff bool ;_bcb _cc .Point ;_geba *textObject ;};func (_ffg *PageFonts )extractPageResourcesToFont (_ada *_gb .PdfPageResources )error {_dfc ,_gd :=_gg .GetDict (_ada .Font ); +if !_gd {return _c .New (_cfd );};for _ ,_dcc :=range _dfc .Keys (){var (_ecd =true ;_aac []byte ;_eac string ;);_dce ,_ebe :=_ada .GetFontByName (_dcc );if !_ebe {return _c .New (_cad );};_efc ,_eba :=_gb .NewPdfFontFromPdfObject (_dce );if _eba !=nil {return _eba ; +};_eacd :=_efc .FontDescriptor ();_ddc :=_efc .FontDescriptor ().FontName .String ();_ddd :=_efc .Subtype ();if _eaf (_ffg .Fonts ,_ddc ){continue ;};if len (_efc .ToUnicode ())==0{_ecd =false ;};if _eacd .FontFile !=nil {if _ebbb ,_dgg :=_gg .GetStream (_eacd .FontFile ); +_dgg {_aac ,_eba =_gg .DecodeStream (_ebbb );if _eba !=nil {return _eba ;};_eac =_ddc +"\u002e\u0070\u0066\u0062";};}else if _eacd .FontFile2 !=nil {if _de ,_ab :=_gg .GetStream (_eacd .FontFile2 );_ab {_aac ,_eba =_gg .DecodeStream (_de );if _eba !=nil {return _eba ; +};_eac =_ddc +"\u002e\u0074\u0074\u0066";};}else if _eacd .FontFile3 !=nil {if _fdg ,_bec :=_gg .GetStream (_eacd .FontFile3 );_bec {_aac ,_eba =_gg .DecodeStream (_fdg );if _eba !=nil {return _eba ;};_eac =_ddc +"\u002e\u0063\u0066\u0066";};};if len (_eac )< 1{_ed .Log .Debug (_ea ); +};_aga :=Font {FontName :_ddc ,PdfFont :_efc ,IsCID :_efc .IsCID (),IsSimple :_efc .IsSimple (),ToUnicode :_ecd ,FontType :_ddd ,FontData :_aac ,FontFileName :_eac ,FontDescriptor :_eacd };_ffg .Fonts =append (_ffg .Fonts ,_aga );};return nil ;};func (_egeea paraList )findTables (_eaac []gridTiling )[]*textTable {_egeea .addNeighbours (); +_d .Slice (_egeea ,func (_cade ,_ebabgc int )bool {return _gede (_egeea [_cade ],_egeea [_ebabgc ])< 0});var _eecgd []*textTable ;if _ecbbf {_faba :=_egeea .findGridTables (_eaac );_eecgd =append (_eecgd ,_faba ...);};if _cbaf {_gbdfb :=_egeea .findTextTables (); +_eecgd =append (_eecgd ,_gbdfb ...);};return _eecgd ;};func _dbff (_bbdc []pathSection )rulingList {_fdddc (_bbdc );if _geaeg {_ed .Log .Info ("\u006d\u0061k\u0065\u0053\u0074\u0072\u006f\u006b\u0065\u0052\u0075\u006c\u0069\u006e\u0067\u0073\u003a\u0020\u0025\u0064\u0020\u0073\u0074\u0072ok\u0065\u0073",len (_bbdc )); +};var _bgdg rulingList ;for _ ,_cdbc :=range _bbdc {for _ ,_fedb :=range _cdbc ._ggfc {if len (_fedb ._ccgf )< 2{continue ;};_badgb :=_fedb ._ccgf [0];for _ ,_faad :=range _fedb ._ccgf [1:]{if _ageac ,_aeda :=_caff (_badgb ,_faad ,_cdbc .Color );_aeda {_bgdg =append (_bgdg ,_ageac ); +};_badgb =_faad ;};};};if _geaeg {_ed .Log .Info ("m\u0061\u006b\u0065\u0053tr\u006fk\u0065\u0052\u0075\u006c\u0069n\u0067\u0073\u003a\u0020\u0025\u0073",_bgdg );};return _bgdg ;};func _cacc (_gedee byte )bool {for _ ,_cfba :=range _bcbc {if []byte (_cfba )[0]==_gedee {return true ; +};};return false ;};func (_ffca *textTable )computeBbox ()_gb .PdfRectangle {var _gcbbf _gb .PdfRectangle ;_efffae :=false ;for _bfggc :=0;_bfggc < _ffca ._dege ;_bfggc ++{for _feacfd :=0;_feacfd < _ffca ._fccgee ;_feacfd ++{_eedgb :=_ffca .get (_feacfd ,_bfggc ); +if _eedgb ==nil {continue ;};if !_efffae {_gcbbf =_eedgb .PdfRectangle ;_efffae =true ;}else {_gcbbf =_fde (_gcbbf ,_eedgb .PdfRectangle );};};};return _gcbbf ;};func (_cgbdb rulingList )asTiling ()gridTiling {if _aaga {_ed .Log .Info ("r\u0075\u006ci\u006e\u0067\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0076\u0065\u0063s\u003d\u0025\u0064\u0020\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u002b\u002b\u002b\u0020\u003d\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d=\u003d",len (_cgbdb )); +};for _gaga ,_efbee :=range _cgbdb [1:]{_dabba :=_cgbdb [_gaga ];if _dabba .alignsPrimary (_efbee )&&_dabba .alignsSec (_efbee ){_ed .Log .Error ("a\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0044\u0075\u0070\u006c\u0069\u0063\u0061\u0074\u0065 \u0072\u0075\u006c\u0069\u006e\u0067\u0073\u002e\u000a\u0009v=\u0025\u0073\u000a\t\u0077=\u0025\u0073",_efbee ,_dabba ); +};};_cgbdb .sortStrict ();_cgbdb .log ("\u0073n\u0061\u0070\u0070\u0065\u0064");_ggfa ,_feeb :=_cgbdb .vertsHorzs ();_bdba :=_ggfa .primaries ();_efga :=_feeb .primaries ();_degf :=len (_bdba )-1;_ecae :=len (_efga )-1;if _degf ==0||_ecae ==0{return gridTiling {}; +};_egce :=_gb .PdfRectangle {Llx :_bdba [0],Urx :_bdba [_degf ],Lly :_efga [0],Ury :_efga [_ecae ]};if _aaga {_ed .Log .Info ("\u0072\u0075l\u0069\u006e\u0067\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0076\u0065\u0072\u0074s=\u0025\u0064",len (_ggfa )); +for _dcbca ,_ddfe :=range _ggfa {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_dcbca ,_ddfe );};_ed .Log .Info ("\u0072\u0075l\u0069\u006e\u0067\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0068\u006f\u0072\u007as=\u0025\u0064",len (_feeb )); +for _abggf ,_ccfgb :=range _feeb {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_abggf ,_ccfgb );};_ed .Log .Info ("\u0072\u0075\u006c\u0069\u006eg\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067:\u0020\u0020\u0077\u0078\u0068\u003d\u0025\u0064\u0078\u0025\u0064\u000a\u0009\u006c\u006c\u0078\u003d\u0025\u002e\u0032\u0066\u000a\u0009\u006c\u006c\u0079\u003d\u0025\u002e\u0032f",_degf ,_ecae ,_bdba ,_efga ); +};_cggd :=make ([]gridTile ,_degf *_ecae );for _gdgc :=_ecae -1;_gdgc >=0;_gdgc --{_bgbebf :=_efga [_gdgc ];_dbdg :=_efga [_gdgc +1];for _ggebe :=0;_ggebe < _degf ;_ggebe ++{_ddaeg :=_bdba [_ggebe ];_efbc :=_bdba [_ggebe +1];_aagf :=_ggfa .findPrimSec (_ddaeg ,_bgbebf ); +_ddffa :=_ggfa .findPrimSec (_efbc ,_bgbebf );_bbdg :=_feeb .findPrimSec (_bgbebf ,_ddaeg );_adeb :=_feeb .findPrimSec (_dbdg ,_ddaeg );_ddade :=_gb .PdfRectangle {Llx :_ddaeg ,Urx :_efbc ,Lly :_bgbebf ,Ury :_dbdg };_cffag :=_fggg (_ddade ,_aagf ,_ddffa ,_bbdg ,_adeb ); +_cggd [_gdgc *_degf +_ggebe ]=_cffag ;if _aaga {_cfe .Printf ("\u0020\u0020\u0078\u003d\u0025\u0032\u0064\u0020\u0079\u003d\u0025\u0032\u0064\u003a\u0020%\u0073 \u0025\u0036\u002e\u0032\u0066\u0020\u0078\u0020\u0025\u0036\u002e\u0032\u0066\u000a",_ggebe ,_gdgc ,_cffag .String (),_cffag .Width (),_cffag .Height ()); +};};};if _aaga {_ed .Log .Info ("r\u0075\u006c\u0069\u006e\u0067\u004c\u0069\u0073\u0074.\u0061\u0073\u0054\u0069\u006c\u0069\u006eg:\u0020\u0063\u006f\u0061l\u0065\u0073\u0063\u0065\u0020\u0068\u006f\u0072\u0069zo\u006e\u0074a\u006c\u002e\u0020\u0025\u0036\u002e\u0032\u0066",_egce ); +};_deade :=make ([]map[float64 ]gridTile ,_ecae );for _aabb :=_ecae -1;_aabb >=0;_aabb --{if _aaga {_cfe .Printf ("\u0020\u0020\u0079\u003d\u0025\u0032\u0064\u000a",_aabb );};_deade [_aabb ]=make (map[float64 ]gridTile ,_degf );for _edad :=0;_edad < _degf ; +_edad ++{_daea :=_cggd [_aabb *_degf +_edad ];if _aaga {_cfe .Printf ("\u0020\u0020\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_edad ,_daea );};if !_daea ._bdcfac {continue ;};_cddfdg :=_edad ;for _dbgca :=_edad +1;!_daea ._babe &&_dbgca < _degf ; +_dbgca ++{_baae :=_cggd [_aabb *_degf +_dbgca ];_daea .Urx =_baae .Urx ;_daea ._cccb =_daea ._cccb ||_baae ._cccb ;_daea ._debb =_daea ._debb ||_baae ._debb ;_daea ._babe =_baae ._babe ;if _aaga {_cfe .Printf ("\u0020 \u0020%\u0034\u0064\u003a\u0020\u0025s\u0020\u2192 \u0025\u0073\u000a",_dbgca ,_baae ,_daea ); +};_cddfdg =_dbgca ;};if _aaga {_cfe .Printf (" \u0020 \u0025\u0032\u0064\u0020\u002d\u0020\u0025\u0032d\u0020\u2192\u0020\u0025s\n",_edad ,_cddfdg ,_daea );};_edad =_cddfdg ;_deade [_aabb ][_daea .Llx ]=_daea ;};};_dgcad :=make (map[float64 ]map[float64 ]gridTile ,_ecae ); +_ggcad :=make (map[float64 ]map[float64 ]struct{},_ecae );for _dafdb :=_ecae -1;_dafdb >=0;_dafdb --{_edea :=_cggd [_dafdb *_degf ].Lly ;_dgcad [_edea ]=make (map[float64 ]gridTile ,_degf );_ggcad [_edea ]=make (map[float64 ]struct{},_degf );};if _aaga {_ed .Log .Info ("\u0072u\u006c\u0069n\u0067\u004c\u0069s\u0074\u002e\u0061\u0073\u0054\u0069\u006ci\u006e\u0067\u003a\u0020\u0063\u006fa\u006c\u0065\u0073\u0063\u0065\u0020\u0076\u0065\u0072\u0074\u0069c\u0061\u006c\u002e\u0020\u0025\u0036\u002e\u0032\u0066",_egce ); +};for _gfdg :=_ecae -1;_gfdg >=0;_gfdg --{_gagdf :=_cggd [_gfdg *_degf ].Lly ;_ceaa :=_deade [_gfdg ];if _aaga {_cfe .Printf ("\u0020\u0020\u0079\u003d\u0025\u0032\u0064\u000a",_gfdg );};for _ ,_acffd :=range _aaffa (_ceaa ){if _ ,_cgff :=_ggcad [_gagdf ][_acffd ]; +_cgff {continue ;};_dgbgb :=_ceaa [_acffd ];if _aaga {_cfe .Printf (" \u0020\u0020\u0020\u0020\u0076\u0030\u003d\u0025\u0073\u000a",_dgbgb .String ());};for _dbefc :=_gfdg -1;_dbefc >=0;_dbefc --{if _dgbgb ._debb {break ;};_gcecg :=_deade [_dbefc ];_gdcgac ,_fgdd :=_gcecg [_acffd ]; +if !_fgdd {break ;};if _gdcgac .Urx !=_dgbgb .Urx {break ;};_dgbgb ._debb =_gdcgac ._debb ;_dgbgb .Lly =_gdcgac .Lly ;if _aaga {_cfe .Printf ("\u0020\u0020\u0020\u0020 \u0020\u0020\u0076\u003d\u0025\u0073\u0020\u0076\u0030\u003d\u0025\u0073\u000a",_gdcgac .String (),_dgbgb .String ()); +};_ggcad [_gdcgac .Lly ][_gdcgac .Llx ]=struct{}{};};if _gfdg ==0{_dgbgb ._debb =true ;};if _dgbgb .complete (){_dgcad [_gagdf ][_acffd ]=_dgbgb ;};};};_acfb :=gridTiling {PdfRectangle :_egce ,_edfg :_cgdeg (_dgcad ),_abbf :_eccca (_dgcad ),_aaef :_dgcad }; +_acfb .log ("\u0043r\u0065\u0061\u0074\u0065\u0064");return _acfb ;};func (_ecgc *textLine )bbox ()_gb .PdfRectangle {return _ecgc .PdfRectangle };func _dcga (_bfeg *wordBag ,_abce *textWord ,_dddd float64 )bool {return _abce .Llx < _bfeg .Urx +_dddd &&_bfeg .Llx -_dddd < _abce .Urx ; +};func _dcfc (_effb int ,_bcdca map[int ][]float64 )([]int ,int ){_acba :=make ([]int ,_effb );_fgab :=0;for _febc :=0;_febc < _effb ;_febc ++{_acba [_febc ]=_fgab ;_fgab +=len (_bcdca [_febc ])+1;};return _acba ,_fgab ;};type textTable struct{_gb .PdfRectangle ; +_fccgee ,_dege int ;_baccf bool ;_adda map[uint64 ]*textPara ;_faeg map[uint64 ]compositeCell ;};func _gggb (_fae _cc .Point )_cc .Matrix {return _cc .TranslationMatrix (_fae .X ,_fae .Y )}; + +// ExtractText processes and extracts all text data in content streams and returns as a string. +// It takes into account character encodings in the PDF file, which are decoded by +// CharcodeBytesToUnicode. +// Characters that can't be decoded are replaced with MissingCodeRune ('\ufffd' = �). +func (_geeb *Extractor )ExtractText ()(string ,error ){_agg ,_ ,_ ,_dbg :=_geeb .ExtractTextWithStats ();return _agg ,_dbg ;};func (_bebed *textTable )reduce ()*textTable {_eggec :=make ([]int ,0,_bebed ._dege );_efead :=make ([]int ,0,_bebed ._fccgee ); +for _feedd :=0;_feedd < _bebed ._dege ;_feedd ++{if !_bebed .emptyCompositeRow (_feedd ){_eggec =append (_eggec ,_feedd );};};for _cdfd :=0;_cdfd < _bebed ._fccgee ;_cdfd ++{if !_bebed .emptyCompositeColumn (_cdfd ){_efead =append (_efead ,_cdfd );};}; +if len (_eggec )==_bebed ._dege &&len (_efead )==_bebed ._fccgee {return _bebed ;};_dbffe :=textTable {_baccf :_bebed ._baccf ,_fccgee :len (_efead ),_dege :len (_eggec ),_adda :make (map[uint64 ]*textPara ,len (_efead )*len (_eggec ))};if _geff {_ed .Log .Info ("\u0072\u0065\u0064\u0075ce\u003a\u0020\u0025\u0064\u0078\u0025\u0064\u0020\u002d\u003e\u0020\u0025\u0064\u0078%\u0064",_bebed ._fccgee ,_bebed ._dege ,len (_efead ),len (_eggec )); +_ed .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0043\u006f\u006c\u0073\u003a\u0020\u0025\u002b\u0076",_efead );_ed .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0052\u006f\u0077\u0073\u003a\u0020\u0025\u002b\u0076",_eggec );};for _cbfce ,_ceba :=range _eggec {for _egfe ,_ffafb :=range _efead {_beade ,_bbacf :=_bebed .getComposite (_ffafb ,_ceba ); +if _beade ==nil {continue ;};if _geff {_cfe .Printf ("\u0020 \u0025\u0032\u0064\u002c \u0025\u0032\u0064\u0020\u0028%\u0032d\u002c \u0025\u0032\u0064\u0029\u0020\u0025\u0071\n",_egfe ,_cbfce ,_ffafb ,_ceba ,_fabf (_beade .merge ().text (),50));};_dbffe .putComposite (_egfe ,_cbfce ,_beade ,_bbacf ); +};};return &_dbffe ;};func (_cedab *textObject )getFontDirect (_bfe string )(*_gb .PdfFont ,error ){_debe ,_abff :=_cedab .getFontDict (_bfe );if _abff !=nil {return nil ,_abff ;};_aaaf ,_abff :=_gb .NewPdfFontFromPdfObject (_debe );if _abff !=nil {_ed .Log .Debug ("\u0067\u0065\u0074\u0046\u006f\u006e\u0074\u0044\u0069\u0072\u0065\u0063\u0074\u003a\u0020\u004e\u0065\u0077Pd\u0066F\u006f\u006e\u0074\u0046\u0072\u006f\u006d\u0050\u0064\u0066\u004f\u0062j\u0065\u0063\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u006e\u0061\u006d\u0065\u003d%\u0023\u0071\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bfe ,_abff ); +};return _aaaf ,_abff ;};func (_faee *textLine )pullWord (_fadb *wordBag ,_cefa *textWord ,_caea int ){_faee .appendWord (_cefa );_fadb .removeWord (_cefa ,_caea );};func (_abefg paraList )sortReadingOrder (){_ed .Log .Trace ("\u0073\u006fr\u0074\u0052\u0065\u0061\u0064i\u006e\u0067\u004f\u0072\u0064e\u0072\u003a\u0020\u0070\u0061\u0072\u0061\u0073\u003d\u0025\u0064\u0020\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u0078\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d",len (_abefg )); +if len (_abefg )<=1{return ;};_abefg .computeEBBoxes ();_d .Slice (_abefg ,func (_gcgdb ,_bgcff int )bool {return _ecdf (_abefg [_gcgdb ],_abefg [_bgcff ])<=0});};func (_faaag *textPara )fontsize ()float64 {return _faaag ._abbe [0]._egbd };var _eebbd =map[markKind ]string {_fdacf :"\u0073\u0074\u0072\u006f\u006b\u0065",_cbcd :"\u0066\u0069\u006c\u006c",_ecdcf :"\u0061u\u0067\u006d\u0065\u006e\u0074"}; +func _gdcc (_bgda []structElement ,_gcbb map[int ][]*textLine ,_fdae _gg .PdfObject )[]*list {_bfge :=[]*list {};for _ ,_abcc :=range _bgda {_ecec :=_abcc ._ddcfe ;_fcdff :=int (_abcc ._adfb );_deeea :=_abcc ._gacb ;_cgdeb :=[]*textLine {};_egbcg :=[]*list {}; +_aacd :=_abcc ._gfeff ;_eabc ,_gbfee :=(_aacd .(*_gg .PdfObjectReference ));if !_gbfee {_ed .Log .Debug ("\u0066\u0061\u0069l\u0065\u0064\u0020\u006f\u0074\u0020\u0063\u0061\u0073\u0074\u0020\u0074\u006f\u0020\u002a\u0063\u006f\u0072\u0065\u002e\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074R\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065"); +};if _fcdff !=-1&&_eabc !=nil {if _abeb ,_bgbb :=_gcbb [_fcdff ];_bgbb {if _gegee ,_cefc :=_fdae .(*_gg .PdfIndirectObject );_cefc {_geeaa :=_gegee .PdfObjectReference ;if _g .DeepEqual (*_eabc ,_geeaa ){_cgdeb =_abeb ;};};};};if _ecec !=nil {_egbcg =_gdcc (_ecec ,_gcbb ,_fdae ); +};_dcda :=_gbcag (_cgdeb ,_deeea ,_egbcg );_bfge =append (_bfge ,_dcda );};return _bfge ;}; + +// ExtractPageText returns the text contents of `e` (an Extractor for a page) as a PageText. +// TODO(peterwilliams97): The stats complicate this function signature and aren't very useful. +// +// Replace with a function like Extract() (*PageText, error) +func (_bde *Extractor )ExtractPageText ()(*PageText ,int ,int ,error ){_cg ,_cgg ,_eef ,_fag :=_bde .extractPageText (_bde ._ee ,_bde ._bd ,_cc .IdentityMatrix (),0);if _fag !=nil &&_fag !=_gb .ErrColorOutOfRange {return nil ,0,0,_fag ;};if _bde ._dfb !=nil {_cg ._ege ._ebff =_bde ._dfb .UseSimplerExtractionProcess ; +};_cg .computeViews ();_fag =_eabb (_cg );if _fag !=nil {return nil ,0,0,_fag ;};if _bde ._dfb !=nil {if _bde ._dfb .ApplyCropBox &&_bde ._gfg !=nil {_cg .ApplyArea (*_bde ._gfg );};_cg ._ege ._gdeb =_bde ._dfb .DisableDocumentTags ;};return _cg ,_cgg ,_eef ,nil ; +};func (_gdd *subpath )close (){if !_ggadd (_gdd ._ccgf [0],_gdd .last ()){_gdd .add (_gdd ._ccgf [0]);};_gdd ._beac =true ;_gdd .removeDuplicates ();};func (_adfbf *textTable )isExportable ()bool {if _adfbf ._baccf {return true ;};_eggea :=func (_bdbcb int )bool {_fcafa :=_adfbf .get (0,_bdbcb ); +if _fcafa ==nil {return false ;};_cecb :=_fcafa .text ();_fbbg :=_cb .RuneCountInString (_cecb );_beega :=_dfbag .MatchString (_cecb );return _fbbg <=1||_beega ;};for _gccae :=0;_gccae < _adfbf ._dege ;_gccae ++{if !_eggea (_gccae ){return true ;};};return false ; +};func _ccee (_gaff ,_efeae *textPara )bool {if _gaff ._befd ||_efeae ._befd {return true ;};return _cdgd (_gaff .depth ()-_efeae .depth ());};func (_efffa gridTile )complete ()bool {return _efffa .numBorders ()==4};func (_affed *textPara )isAtom ()*textTable {_eadba :=_affed ; +_dgab :=_affed ._ccdg ;_cegf :=_affed ._cgfe ;if _dgab .taken ()||_cegf .taken (){return nil ;};_fbef :=_dgab ._cgfe ;if _fbef .taken ()||_fbef !=_cegf ._ccdg {return nil ;};return _dfcee (_eadba ,_dgab ,_cegf ,_fbef );};type wordBag struct{_gb .PdfRectangle ; +_bcef float64 ;_cbfg ,_gaeg rulingList ;_gebga float64 ;_gegc map[int ][]*textWord ;}; + +// String returns a description of `k`. +func (_cgbecc rulingKind )String ()string {_dccgd ,_acec :=_gegca [_cgbecc ];if !_acec {return _cfe .Sprintf ("\u004e\u006ft\u0020\u0061\u0020r\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0025\u0064",_cgbecc );};return _dccgd ;};func (_cddf *wordBag )text ()string {_ddda :=_cddf .allWords (); +_daefb :=make ([]string ,len (_ddda ));for _ffbd ,_acb :=range _ddda {_daefb [_ffbd ]=_acb ._bcfea ;};return _ag .Join (_daefb ,"\u0020");};const (_ddfg =true ;_gdggd =true ;_dbfc =true ;_bcba =false ;_cec =false ;_dbae =6;_dcba =3.0;_dagb =200;_ecbbf =true ; +_cbaf =true ;_gfaf =true ;_bdacb =true ;_abdfd =false ;);func (_geegc intSet )has (_beadc int )bool {_ ,_ccfag :=_geegc [_beadc ];return _ccfag };func (_feaee *textWord )addDiacritic (_afbcd string ){_gdfg :=_feaee ._fdgbc [len (_feaee ._fdgbc )-1];_gdfg ._ceca +=_afbcd ; +_gdfg ._ceca =_f .NFKC .String (_gdfg ._ceca );};func _bdbf (_egef _gb .PdfRectangle )*ruling {return &ruling {_cffe :_gfafc ,_abfg :_egef .Urx ,_daag :_egef .Lly ,_fcff :_egef .Ury };};func (_gcae *structTreeRoot )buildList (_aegg map[int ][]*textLine ,_ceff _gg .PdfObject )[]*list {if _gcae ==nil {_ed .Log .Debug ("\u0062\u0075\u0069\u006c\u0064\u004c\u0069\u0073\u0074\u003a\u0020t\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0069\u0073 \u006e\u0069\u006c"); +return nil ;};var _bdaa *structElement ;_ddfbg :=[]structElement {};if len (_gcae ._gafdd )==1{_egeg :=_gcae ._gafdd [0]._gacb ;if _egeg =="\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074"||_egeg =="\u0053\u0065\u0063\u0074"||_egeg =="\u0050\u0061\u0072\u0074"||_egeg =="\u0044\u0069\u0076"||_egeg =="\u0041\u0072\u0074"{_bdaa =&_gcae ._gafdd [0]; +};}else {_bdaa =&structElement {_ddcfe :_gcae ._gafdd ,_gacb :_gcae ._bgee };};if _bdaa ==nil {_ed .Log .Debug ("\u0062\u0075\u0069\u006cd\u004c\u0069\u0073\u0074\u003a\u0020\u0074\u006f\u0070\u0045l\u0065m\u0065\u006e\u0074\u0020\u0069\u0073\u0020n\u0069\u006c"); +return nil ;};for _ ,_ccdb :=range _bdaa ._ddcfe {if _ccdb ._gacb =="\u004c"{_ddfbg =append (_ddfbg ,_ccdb );}else if _ccdb ._gacb =="\u0054\u0061\u0062l\u0065"{_fdeff :=_bbfe (_ccdb );_ddfbg =append (_ddfbg ,_fdeff ...);};};_ccde :=_gdcc (_ddfbg ,_aegg ,_ceff ); +var _caccc []*list ;for _ ,_afbecb :=range _ccde {_geed :=_fggcc (_afbecb );_caccc =append (_caccc ,_geed ...);};return _caccc ;};func (_gfge *TextMarkArray )getTextMarkAtOffset (_gef int )*TextMark {for _ ,_feaa :=range _gfge ._ggcf {if _feaa .Offset ==_gef {return &_feaa ; +};};return nil ;}; + +// String returns a string describing `pt`. +func (_gbg PageText )String ()string {_adbb :=_cfe .Sprintf ("P\u0061\u0067\u0065\u0054ex\u0074:\u0020\u0025\u0064\u0020\u0065l\u0065\u006d\u0065\u006e\u0074\u0073",len (_gbg ._bagf ));_egag :=[]string {"\u002d"+_adbb };for _ ,_cac :=range _gbg ._bagf {_egag =append (_egag ,_cac .String ()); +};_egag =append (_egag ,"\u002b"+_adbb );return _ag .Join (_egag ,"\u000a");}; // String returns a string describing `tm`. -func (_cfa TextMark )String ()string {_bfbd :=_cfa .BBox ;var _geca string ;if _cfa .Font !=nil {_geca =_cfa .Font .String ();if len (_geca )> 50{_geca =_geca [:50]+"\u002e\u002e\u002e";};};var _abbg string ;if _cfa .Meta {_abbg ="\u0020\u002a\u004d\u002a"; -};return _ge .Sprintf ("\u007b\u0054\u0065\u0078t\u004d\u0061\u0072\u006b\u003a\u0020\u0025\u0064\u0020%\u0071\u003d\u0025\u0030\u0032\u0078\u0020\u0028\u0025\u0036\u002e\u0032\u0066\u002c\u0020\u0025\u0036\u002e2\u0066\u0029\u0020\u0028\u00256\u002e\u0032\u0066\u002c\u0020\u0025\u0036\u002e\u0032\u0066\u0029\u0020\u0025\u0073\u0025\u0073\u007d",_cfa .Offset ,_cfa .Text ,[]rune (_cfa .Text ),_bfbd .Llx ,_bfbd .Lly ,_bfbd .Urx ,_bfbd .Ury ,_geca ,_abbg ); -};func (_fffca paraList )merge ()*textPara {_ec .Log .Trace ("\u006d\u0065\u0072\u0067\u0065:\u0020\u0070\u0061\u0072\u0061\u0073\u003d\u0025\u0064\u0020\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u0078\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d",len (_fffca )); -if len (_fffca )==0{return nil ;};_fffca .sortReadingOrder ();_baea :=_fffca [0].PdfRectangle ;_dafg :=_fffca [0]._bdbcg ;for _ ,_eefa :=range _fffca [1:]{_baea =_cdggc (_baea ,_eefa .PdfRectangle );_dafg =append (_dafg ,_eefa ._bdbcg ...);};return _ffec (_baea ,_dafg ); +func (_bce TextMark )String ()string {_aaffg :=_bce .BBox ;var _eab string ;if _bce .Font !=nil {_eab =_bce .Font .String ();if len (_eab )> 50{_eab =_eab [:50]+"\u002e\u002e\u002e";};};var _fggc string ;if _bce .Meta {_fggc ="\u0020\u002a\u004d\u002a"; +};return _cfe .Sprintf ("\u007b\u0054\u0065\u0078t\u004d\u0061\u0072\u006b\u003a\u0020\u0025\u0064\u0020%\u0071\u003d\u0025\u0030\u0032\u0078\u0020\u0028\u0025\u0036\u002e\u0032\u0066\u002c\u0020\u0025\u0036\u002e2\u0066\u0029\u0020\u0028\u00256\u002e\u0032\u0066\u002c\u0020\u0025\u0036\u002e\u0032\u0066\u0029\u0020\u0025\u0073\u0025\u0073\u007d",_bce .Offset ,_bce .Text ,[]rune (_bce .Text ),_aaffg .Llx ,_aaffg .Lly ,_aaffg .Urx ,_aaffg .Ury ,_eab ,_fggc ); +};func (_gcab *textObject )moveTextSetLeading (_gbc ,_baad float64 ){_gcab ._cbag ._fea =-_baad ;_gcab .moveLP (_gbc ,_baad );}; + +// String returns a human readable description of `s`. +func (_afacf intSet )String ()string {var _ecdec []int ;for _gecf :=range _afacf {if _afacf .has (_gecf ){_ecdec =append (_ecdec ,_gecf );};};_d .Ints (_ecdec );return _cfe .Sprintf ("\u0025\u002b\u0076",_ecdec );};func (_ecdd *ruling )alignsPrimary (_daed *ruling )bool {return _ecdd ._cffe ==_daed ._cffe &&_df .Abs (_ecdd ._abfg -_daed ._abfg )< _dbgc *0.5; +};func (_cfcb paraList )lines ()[]*textLine {var _bdcde []*textLine ;for _ ,_bbaa :=range _cfcb {_bdcde =append (_bdcde ,_bbaa ._abbe ...);};return _bdcde ;};var _b =false ;func (_gffa *wordBag )scanBand (_daeb string ,_cfed *wordBag ,_cag func (_dgbg *wordBag ,_fgecc *textWord )bool ,_efge ,_bbb ,_egfg float64 ,_fdca ,_cage bool )int {_cedb :=_cfed ._bcef ; +var _cfebf map[int ]map[*textWord ]struct{};if !_fdca {_cfebf =_gffa .makeRemovals ();};_dgfd :=_dgfg *_cedb ;_cdd :=0;for _ ,_gab :=range _gffa .depthBand (_efge -_dgfd ,_bbb +_dgfd ){if len (_gffa ._gegc [_gab ])==0{continue ;};for _ ,_gega :=range _gffa ._gegc [_gab ]{if !(_efge -_dgfd <=_gega ._cbfcee &&_gega ._cbfcee <=_bbb +_dgfd ){continue ; +};if !_cag (_cfed ,_gega ){continue ;};_adge :=2.0*_df .Abs (_gega ._fgdbd -_cfed ._bcef )/(_gega ._fgdbd +_cfed ._bcef );_edef :=_df .Max (_gega ._fgdbd /_cfed ._bcef ,_cfed ._bcef /_gega ._fgdbd );_bbba :=_df .Min (_adge ,_edef );if _egfg > 0&&_bbba > _egfg {continue ; +};if _cfed .blocked (_gega ){continue ;};if !_fdca {_cfed .pullWord (_gega ,_gab ,_cfebf );};_cdd ++;if !_cage {if _gega ._cbfcee < _efge {_efge =_gega ._cbfcee ;};if _gega ._cbfcee > _bbb {_bbb =_gega ._cbfcee ;};};if _fdca {break ;};};};if !_fdca {_gffa .applyRemovals (_cfebf ); +};return _cdd ;};func _bdcec (_ggbg []pathSection )rulingList {_fdddc (_ggbg );if _geaeg {_ed .Log .Info ("\u006da\u006b\u0065\u0046\u0069l\u006c\u0052\u0075\u006c\u0069n\u0067s\u003a \u0025\u0064\u0020\u0066\u0069\u006c\u006cs",len (_ggbg ));};var _gbece rulingList ; +for _ ,_acgea :=range _ggbg {for _ ,_ebca :=range _acgea ._ggfc {if !_ebca .isQuadrilateral (){if _geaeg {_ed .Log .Error ("!\u0069s\u0051\u0075\u0061\u0064\u0072\u0069\u006c\u0061t\u0065\u0072\u0061\u006c: \u0025\u0073",_ebca );};continue ;};if _ggfcd ,_feggg :=_ebca .makeRectRuling (_acgea .Color ); +_feggg {_gbece =append (_gbece ,_ggfcd );}else {if _afbec {_ed .Log .Error ("\u0021\u006d\u0061\u006beR\u0065\u0063\u0074\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0025\u0073",_ebca );};};};};if _geaeg {_ed .Log .Info ("\u006d\u0061\u006b\u0065Fi\u006c\u006c\u0052\u0075\u006c\u0069\u006e\u0067\u0073\u003a\u0020\u0025\u0073",_gbece .String ()); +};return _gbece ;};func (_ggf TextTable )getCellInfo (_gfgee TextMark )[][]int {for _beed ,_bdca :=range _ggf .Cells {for _fegb ,_fcc :=range _bdca {_acc :=&_fcc .Marks ;if _acc .exists (_gfgee ){return [][]int {{_beed },{_fegb }};};};};return nil ;};func (_dgbfa paraList )extractTables (_ceebb []gridTiling )paraList {if _geff {_ed .Log .Debug ("\u0065\u0078\u0074r\u0061\u0063\u0074\u0054\u0061\u0062\u006c\u0065\u0073\u003d\u0025\u0064\u0020\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u0078\u003d\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d",len (_dgbfa )); +};if len (_dgbfa )< _dgea {return _dgbfa ;};_daede :=_dgbfa .findTables (_ceebb );if _geff {_ed .Log .Info ("c\u006f\u006d\u0062\u0069\u006e\u0065d\u0020\u0074\u0061\u0062\u006c\u0065s\u0020\u0025\u0064\u0020\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d=\u003d",len (_daede )); +for _dbgg ,_eeag :=range _daede {_eeag .log (_cfe .Sprintf ("c\u006f\u006d\u0062\u0069\u006e\u0065\u0064\u0020\u0025\u0064",_dbgg ));};};return _dgbfa .applyTables (_daede );};func (_agbc *textPara )text ()string {_dgedb :=new (_cf .Buffer );_agbc .writeText (_dgedb ); +return _dgedb .String ();};func _gaee (_adae *wordBag ,_efca float64 ,_bege ,_aegb rulingList )[]*wordBag {var _cbfgf []*wordBag ;for _ ,_edcg :=range _adae .depthIndexes (){_bcgag :=false ;for !_adae .empty (_edcg ){_fcgb :=_adae .firstReadingIndex (_edcg ); +_eagc :=_adae .firstWord (_fcgb );_ebcc :=_dfcc (_eagc ,_efca ,_bege ,_aegb );_adae .removeWord (_eagc ,_fcgb );if _fdec {_ed .Log .Info ("\u0066\u0069\u0072\u0073\u0074\u0057\u006f\u0072\u0064\u0020\u005e\u005e^\u005e\u0020\u0025\u0073",_eagc .String ()); +};for _baef :=true ;_baef ;_baef =_bcgag {_bcgag =false ;_eeed :=_cbfc *_ebcc ._bcef ;_fadf :=_debd *_ebcc ._bcef ;_dgfe :=_dccd *_ebcc ._bcef ;if _fdec {_ed .Log .Info ("\u0070a\u0072a\u0057\u006f\u0072\u0064\u0073\u0020\u0064\u0065\u0070\u0074\u0068 \u0025\u002e\u0032\u0066 \u002d\u0020\u0025\u002e\u0032f\u0020\u006d\u0061\u0078\u0049\u006e\u0074\u0072\u0061\u0044\u0065\u0070\u0074\u0068\u0047\u0061\u0070\u003d\u0025\u002e\u0032\u0066\u0020\u006d\u0061\u0078\u0049\u006e\u0074\u0072\u0061R\u0065\u0061\u0064\u0069\u006e\u0067\u0047\u0061p\u003d\u0025\u002e\u0032\u0066",_ebcc .minDepth (),_ebcc .maxDepth (),_dgfe ,_fadf ); +};if _adae .scanBand ("\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",_ebcc ,_gcda (_dcga ,0),_ebcc .minDepth ()-_dgfe ,_ebcc .maxDepth ()+_dgfe ,_aeg ,false ,false )> 0{_bcgag =true ;};if _adae .scanBand ("\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c",_ebcc ,_gcda (_dcga ,_fadf ),_ebcc .minDepth (),_ebcc .maxDepth (),_cdcgd ,false ,false )> 0{_bcgag =true ; +};if _bcgag {continue ;};_gfcc :=_adae .scanBand ("",_ebcc ,_gcda (_dbbg ,_eeed ),_ebcc .minDepth (),_ebcc .maxDepth (),_cdce ,true ,false );if _gfcc > 0{_efcad :=(_ebcc .maxDepth ()-_ebcc .minDepth ())/_ebcc ._bcef ;if (_gfcc > 1&&float64 (_gfcc )> 0.3*_efcad )||_gfcc <=10{if _adae .scanBand ("\u006f\u0074\u0068e\u0072",_ebcc ,_gcda (_dbbg ,_eeed ),_ebcc .minDepth (),_ebcc .maxDepth (),_cdce ,false ,true )> 0{_bcgag =true ; +};};};};_cbfgf =append (_cbfgf ,_ebcc );};};return _cbfgf ;}; + +// String returns a string describing `ma`. +func (_deec TextMarkArray )String ()string {_fbb :=len (_deec ._ggcf );if _fbb ==0{return "\u0045\u004d\u0050T\u0059";};_dfbb :=_deec ._ggcf [0];_ecdc :=_deec ._ggcf [_fbb -1];return _cfe .Sprintf ("\u007b\u0054\u0045\u0058\u0054\u004d\u0041\u0052K\u0041\u0052\u0052AY\u003a\u0020\u0025\u0064\u0020\u0065l\u0065\u006d\u0065\u006e\u0074\u0073\u000a\u0009\u0066\u0069\u0072\u0073\u0074\u003d\u0025s\u000a\u0009\u0020\u006c\u0061\u0073\u0074\u003d%\u0073\u007d",_fbb ,_dfbb ,_ecdc ); +};var _fdfgd string ="\u0028\u003f\u0069\u0029\u005e\u0028\u004d\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u0043\u0028?\u003a\u0044\u007cM\u0029\u007c\u0044\u003f\u0043{\u0030\u002c\u0033\u007d\u0029\u0028\u0058\u0028\u003f\u003a\u004c\u007c\u0043\u0029\u007cL\u003f\u0058\u007b\u0030\u002c\u0033}\u0029\u0028\u0049\u0028\u003f\u003a\u0056\u007c\u0058\u0029\u007c\u0056\u003f\u0049\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u005c\u0029\u007c\u005c\u002e\u0029\u007c\u005e\u005c\u0028\u0028\u004d\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u0043\u0028\u003f\u003aD\u007cM\u0029\u007c\u0044\u003f\u0043\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u0058\u0028?\u003a\u004c\u007c\u0043\u0029\u007c\u004c?\u0058\u007b0\u002c\u0033\u007d\u0029(\u0049\u0028\u003f\u003a\u0056|\u0058\u0029\u007c\u0056\u003f\u0049\u007b\u0030\u002c\u0033\u007d\u0029\u005c\u0029"; +func (_aeb *shapesState )newSubPath (){_aeb .clearPath ();if _dgeg {_ed .Log .Info ("\u006e\u0065\u0077\u0053\u0075\u0062\u0050\u0061\u0074h\u003a\u0020\u0025\u0073",_aeb );};};func (_deag *shapesState )establishSubpath ()*subpath {_fgfa ,_cfcd :=_deag .lastpointEstablished (); +if !_cfcd {_deag ._babc =append (_deag ._babc ,_dcab (_fgfa ));};if len (_deag ._babc )==0{return nil ;};_deag ._dfff =false ;return _deag ._babc [len (_deag ._babc )-1];}; + +// Elements returns the TextMarks in `ma`. +func (_edff *TextMarkArray )Elements ()[]TextMark {return _edff ._ggcf };func (_bfbd *textLine )toTextMarks (_daaf *int )[]TextMark {var _bgg []TextMark ;for _ ,_aggee :=range _bfbd ._bfca {if _aggee ._cacca {_bgg =_dgccag (_bgg ,_daaf ,"\u0020");};_efef :=_aggee .toTextMarks (_daaf ); +_bgg =append (_bgg ,_efef ...);};return _bgg ;};func _agbca (_faefb _gg .PdfObject ,_cagd _eb .Color )(_gf .Image ,error ){_fdbcd ,_eaeef :=_gg .GetStream (_faefb );if !_eaeef {return nil ,nil ;};_ffgg ,_bcbe :=_gb .NewXObjectImageFromStream (_fdbcd ); +if _bcbe !=nil {return nil ,_bcbe ;};_adaa ,_bcbe :=_ffgg .ToImage ();if _bcbe !=nil {return nil ,_bcbe ;};return _bdda (_adaa ,_cagd ),nil ;};func _caff (_cbfgfc ,_gfeb _cc .Point ,_afca _eb .Color )(*ruling ,bool ){_ebaf :=lineRuling {_efffg :_cbfgfc ,_agae :_gfeb ,_ecee :_cccea (_cbfgfc ,_gfeb ),Color :_afca }; +if _ebaf ._ecee ==_eefaf {return nil ,false ;};return _ebaf .asRuling ();}; + +// TextMarkArray is a collection of TextMarks. +type TextMarkArray struct{_ggcf []TextMark };const (RenderModeStroke RenderMode =1< 0{return false ;};};};return true ;};func _gdfe (_gfgb _gb .PdfRectangle )*ruling {return &ruling {_cffe :_gfafc ,_abfg :_gfgb .Llx ,_daag :_gfgb .Lly ,_fcff :_gfgb .Ury }; +};func _dcge (_bcbaf []TextMark ,_ebddb *TextTable )[]TextMark {var _cbfbe []TextMark ;for _ ,_ebccc :=range _bcbaf {_ebccc ._fefe =true ;_ebccc ._egc =_ebddb ;_cbfbe =append (_cbfbe ,_ebccc );};return _cbfbe ;}; + +// Extractor stores and offers functionality for extracting content from PDF pages. +type Extractor struct{_ee string ;_bd *_gb .PdfPageResources ;_eda _gb .PdfRectangle ;_gfg *_gb .PdfRectangle ;_ebb map[string ]fontEntry ;_db map[string ]textResult ;_bda int64 ;_dg int ;_dfb *Options ;_cd *_gg .PdfObject ;_dfd _gg .PdfObject ;};func (_fecge paraList )readBefore (_agcb []int ,_dcbb ,_ddad int )bool {_ccbb ,_begee :=_fecge [_dcbb ],_fecge [_ddad ]; +if _cgfgb (_ccbb ,_begee )&&_ccbb .Lly > _begee .Lly {return true ;};if !(_ccbb ._cedf .Urx < _begee ._cedf .Llx ){return false ;};_gbfc ,_gefa :=_ccbb .Lly ,_begee .Lly ;if _gbfc > _gefa {_gefa ,_gbfc =_gbfc ,_gefa ;};_abadc :=_df .Max (_ccbb ._cedf .Llx ,_begee ._cedf .Llx ); +_eebb :=_df .Min (_ccbb ._cedf .Urx ,_begee ._cedf .Urx );_gfggb :=_fecge .llyRange (_agcb ,_gbfc ,_gefa );for _ ,_acbc :=range _gfggb {if _acbc ==_dcbb ||_acbc ==_ddad {continue ;};_ddba :=_fecge [_acbc ];if _ddba ._cedf .Llx <=_eebb &&_abadc <=_ddba ._cedf .Urx {return false ; +};};return true ;};func (_acdg *textMark )inDiacriticArea (_aecff *textMark )bool {_dged :=_acdg .Llx -_aecff .Llx ;_bcdb :=_acdg .Urx -_aecff .Urx ;_egcf :=_acdg .Lly -_aecff .Lly ;return _df .Abs (_dged +_bcdb )< _acdg .Width ()*_fabc &&_df .Abs (_egcf )< _acdg .Height ()*_fabc ; }; -// ApplyArea processes the page text only within the specified area `bbox`. -// Each time ApplyArea is called, it updates the result set in `pt`. -// Can be called multiple times in a row with different bounding boxes. -func (_gdg *PageText )ApplyArea (bbox _ce .PdfRectangle ){_gefe :=make ([]*textMark ,0,len (_gdg ._fcag ));for _ ,_edc :=range _gdg ._fcag {if _decgb (_edc .bbox (),bbox ){_gefe =append (_gefe ,_edc );};};var _fbcf paraList ;_eaae :=len (_gefe );for _cgac :=0; -_cgac < 360&&_eaae > 0;_cgac +=90{_dgee :=make ([]*textMark ,0,len (_gefe )-_eaae );for _ ,_ceff :=range _gefe {if _ceff ._edge ==_cgac {_dgee =append (_dgee ,_ceff );};};if len (_dgee )> 0{_gfgf :=_fbcc (_dgee ,_gdg ._fbbg ,nil ,nil ,_gdg ._ccg ._fcgfa ); -_fbcf =append (_fbcf ,_gfgf ...);_eaae -=len (_dgee );};};_bgdf :=new (_df .Buffer );_fbcf .writeText (_bgdf );_gdg ._gcee =_bgdf .String ();_gdg ._ebfc =_fbcf .toTextMarks ();_gdg ._eadb =_fbcf .tables ();};func _bddac (_fgaac []*textMark ,_bbad _ce .PdfRectangle )*textWord {_gadac :=_fgaac [0].PdfRectangle ; -_bdbaa :=_fgaac [0]._bfaca ;for _ ,_bcgce :=range _fgaac [1:]{_gadac =_cdggc (_gadac ,_bcgce .PdfRectangle );if _bcgce ._bfaca > _bdbaa {_bdbaa =_bcgce ._bfaca ;};};return &textWord {PdfRectangle :_gadac ,_bgeaa :_fgaac ,_cffdg :_bbad .Ury -_gadac .Lly ,_ddgee :_bdbaa }; -};func (_fcee rulingList )bbox ()_ce .PdfRectangle {var _eeba _ce .PdfRectangle ;if len (_fcee )==0{_ec .Log .Error ("r\u0075\u006c\u0069\u006e\u0067\u004ci\u0073\u0074\u002e\u0062\u0062\u006f\u0078\u003a\u0020n\u006f\u0020\u0072u\u006ci\u006e\u0067\u0073"); -return _ce .PdfRectangle {};};if _fcee [0]._bfbc ==_ecac {_eeba .Llx ,_eeba .Urx =_fcee .secMinMax ();_eeba .Lly ,_eeba .Ury =_fcee .primMinMax ();}else {_eeba .Llx ,_eeba .Urx =_fcee .primMinMax ();_eeba .Lly ,_eeba .Ury =_fcee .secMinMax ();};return _eeba ; -};func _aaca (_egcg ,_dbbbc int )uint64 {return uint64 (_egcg )*0x1000000+uint64 (_dbbbc )};func (_bgcd *shapesState )lastpointEstablished ()(_bc .Point ,bool ){if _bgcd ._edee {return _bgcd ._ebfb ,false ;};_gbbg :=len (_bgcd ._abgb );if _gbbg > 0&&_bgcd ._abgb [_gbbg -1]._cgde {return _bgcd ._abgb [_gbbg -1].last (),false ; -};return _bc .Point {},true ;};func (_ffcb *Extractor )extractPageText (_fdf string ,_gccf *_ce .PdfPageResources ,_dg _bc .Matrix ,_gccd int )(*PageText ,int ,int ,error ){_ec .Log .Trace ("\u0065x\u0074\u0072\u0061\u0063t\u0050\u0061\u0067\u0065\u0054e\u0078t\u003a \u006c\u0065\u0076\u0065\u006c\u003d\u0025d",_gccd ); -_eaa :=&PageText {_fbbg :_ffcb ._gda ,_bbb :_ffcb ._ba ,_fefc :_ffcb ._eg };_dee :=_cab (_ffcb ._gda );var _bfa stateStack ;_gfc :=_egf (_ffcb ,_gccf ,_ag .GraphicsState {},&_dee ,&_bfa );_ggc :=shapesState {_dag :_dg ,_aabgc :_bc .IdentityMatrix (),_ecfc :_gfc }; -var _ccce bool ;_fdb :=-1;if _gccd > _adee {_fff :=_d .New ("\u0066\u006f\u0072\u006d s\u0074\u0061\u0063\u006b\u0020\u006f\u0076\u0065\u0072\u0066\u006c\u006f\u0077");_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0065\u0078\u0074\u0072\u0061\u0063\u0074\u0050\u0061\u0067\u0065\u0054\u0065\u0078\u0074\u002e\u0020\u0072\u0065\u0063u\u0072\u0073\u0069\u006f\u006e\u0020\u006c\u0065\u0076\u0065\u006c\u003d\u0025\u0064 \u0065r\u0072\u003d\u0025\u0076",_gccd ,_fff ); -return _eaa ,_dee ._baf ,_dee ._afgb ,_fff ;};_abd :=_ag .NewContentStreamParser (_fdf );_fbf ,_bac :=_abd .Parse ();if _bac !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020e\u0078\u0074\u0072a\u0063\u0074\u0050\u0061g\u0065\u0054\u0065\u0078\u0074\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bac ); -return _eaa ,_dee ._baf ,_dee ._afgb ,_bac ;};_eaa ._ecfe =_fbf ;_dfa :=_ag .NewContentStreamProcessor (*_fbf );_dfa .AddHandler (_ag .HandlerConditionEnumAllOperands ,"",func (_dce *_ag .ContentStreamOperation ,_gbge _ag .GraphicsState ,_bag *_ce .PdfPageResources )error {_cgd :=_dce .Operand ; -if _acab {_ec .Log .Info ("\u0026&\u0026\u0020\u006f\u0070\u003d\u0025s",_dce );};switch _cgd {case "\u0071":if _cbag {_ec .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_ggc ._aabgc );};_bfa .push (&_dee );case "\u0051":if !_bfa .empty (){_dee =*_bfa .pop (); -};_ggc ._aabgc =_gbge .CTM ;if _cbag {_ec .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_ggc ._aabgc );};case "\u0042\u0044\u0043":_gce ,_bacc :=_gb .GetDict (_dce .Params [1]);if !_bacc {_ec .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0042D\u0043\u0020\u006f\u0070\u003d\u0025\u0073 \u0047\u0065\u0074\u0044\u0069\u0063\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_dce ); -return _bac ;};_badc :=_gce .Get ("\u004d\u0043\u0049\u0044");if _badc !=nil {_fce ,_cdf :=_gb .GetIntVal (_badc );if !_cdf {_ec .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0042\u0044C\u0020\u006f\u0070=\u0025\u0073\u002e\u0020\u0042\u0061\u0064\u0020\u006eum\u0065\u0072\u0069c\u0061\u006c \u006f\u0062\u006a\u0065\u0063\u0074.\u0020\u006f=\u0025\u0073",_dce ,_badc ); -};_fdb =_fce ;}else {_fdb =-1;};case "\u0045\u004d\u0043":_fdb =-1;case "\u0042\u0054":if _ccce {_ec .Log .Debug ("\u0042\u0054\u0020\u0063\u0061\u006c\u006c\u0065\u0064\u0020\u0077\u0068\u0069\u006c\u0065 \u0069n\u0020\u0061\u0020\u0074\u0065\u0078\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -_eaa ._fcag =append (_eaa ._fcag ,_gfc ._cfb ...);};_ccce =true ;_ceac :=_gbge ;_ceac .CTM =_dg .Mult (_ceac .CTM );_gfc =_egf (_ffcb ,_bag ,_ceac ,&_dee ,&_bfa );_ggc ._ecfc =_gfc ;case "\u0045\u0054":if !_ccce {_ec .Log .Debug ("\u0045\u0054\u0020ca\u006c\u006c\u0065\u0064\u0020\u006f\u0075\u0074\u0073i\u0064e\u0020o\u0066 \u0061\u0020\u0074\u0065\u0078\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -};_ccce =false ;_eaa ._fcag =append (_eaa ._fcag ,_gfc ._cfb ...);_gfc .reset ();case "\u0054\u002a":_gfc .nextLine ();case "\u0054\u0064":if _bfb ,_aec :=_gfc .checkOp (_dce ,2,true );!_bfb {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_aec ); -return _aec ;};_aecd ,_bacd ,_gba :=_fbda (_dce .Params );if _gba !=nil {return _gba ;};_gfc .moveText (_aecd ,_bacd );case "\u0054\u0044":if _dff ,_abg :=_gfc .checkOp (_dce ,2,true );!_dff {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_abg ); -return _abg ;};_ece ,_af ,_fab :=_fbda (_dce .Params );if _fab !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fab );return _fab ;};_gfc .moveTextSetLeading (_ece ,_af );case "\u0054\u006a":if _ced ,_cdc :=_gfc .checkOp (_dce ,1,true ); -!_ced {_ec .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0054\u006a\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d%\u0076",_dce ,_cdc );return _cdc ;};_faad :=_gb .TraceToDirectObject (_dce .Params [0]);_badfg ,_caff :=_gb .GetStringBytes (_faad ); -if !_caff {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020T\u006a\u0020o\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074S\u0074\u0072\u0069\u006e\u0067\u0042\u0079\u0074\u0065\u0073\u0020\u0066a\u0069\u006c\u0065\u0064",_dce );return _gb .ErrTypeError ; -};return _gfc .showText (_faad ,_badfg ,_fdb );case "\u0054\u004a":if _cdce ,_cba :=_gfc .checkOp (_dce ,1,true );!_cdce {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u004a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_cba );return _cba ;};_aefb ,_aed :=_gb .GetArray (_dce .Params [0]); -if !_aed {_ec .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0054\u004a\u0020\u006f\u0070\u003d\u0025s\u0020G\u0065t\u0041r\u0072\u0061\u0079\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_dce );return _bac ;};return _gfc .showTextAdjusted (_aefb ,_fdb ); -case "\u0027":if _fcgf ,_bff :=_gfc .checkOp (_dce ,1,true );!_fcgf {_ec .Log .Debug ("\u0045R\u0052O\u0052\u003a\u0020\u0027\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bff );return _bff ;};_cdd :=_gb .TraceToDirectObject (_dce .Params [0]);_bdd ,_fac :=_gb .GetStringBytes (_cdd ); -if !_fac {_ec .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020'\u0020\u006f\u0070\u003d%s \u0047et\u0053\u0074\u0072\u0069\u006e\u0067\u0042yt\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064",_dce );return _gb .ErrTypeError ;};_gfc .nextLine ();return _gfc .showText (_cdd ,_bdd ,_fdb ); -case "\u0022":if _bbc ,_gge :=_gfc .checkOp (_dce ,3,true );!_bbc {_ec .Log .Debug ("\u0045R\u0052O\u0052\u003a\u0020\u0022\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gge );return _gge ;};_gcd ,_gbaf ,_fbe :=_fbda (_dce .Params [:2]);if _fbe !=nil {return _fbe ; -};_cf :=_gb .TraceToDirectObject (_dce .Params [2]);_eda ,_fga :=_gb .GetStringBytes (_cf );if !_fga {_ec .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020\"\u0020\u006f\u0070\u003d%s \u0047et\u0053\u0074\u0072\u0069\u006e\u0067\u0042yt\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064",_dce ); -return _gb .ErrTypeError ;};_gfc .setCharSpacing (_gcd );_gfc .setWordSpacing (_gbaf );_gfc .nextLine ();return _gfc .showText (_cf ,_eda ,_fdb );case "\u0054\u004c":_eaf ,_bgd :=_dgd (_dce );if _bgd !=nil {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u004c\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bgd ); -return _bgd ;};_gfc .setTextLeading (_eaf );case "\u0054\u0063":_cega ,_fef :=_dgd (_dce );if _fef !=nil {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0063\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fef );return _fef ;};_gfc .setCharSpacing (_cega ); -case "\u0054\u0066":if _bfe ,_deag :=_gfc .checkOp (_dce ,2,true );!_bfe {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0066\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_deag );return _deag ;};_fcef ,_fca :=_gb .GetNameVal (_dce .Params [0]); -if !_fca {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u004ea\u006d\u0065\u0056\u0061\u006c\u0020\u0066a\u0069\u006c\u0065\u0064",_dce );return _gb .ErrTypeError ;};_egb ,_eade :=_gb .GetNumberAsFloat (_dce .Params [1]); -if !_fca {_ec .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u0046\u006c\u006f\u0061\u0074\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065d\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_dce ,_eade ); -return _eade ;};_eade =_gfc .setFont (_fcef ,_egb );_gfc ._efbb =_dfc .Is (_eade ,_gb .ErrNotSupported );if _eade !=nil &&!_gfc ._efbb {return _eade ;};case "\u0054\u006d":if _dgf ,_dade :=_gfc .checkOp (_dce ,6,true );!_dgf {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u006d\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_dade ); -return _dade ;};_eac ,_fee :=_gb .GetNumbersAsFloat (_dce .Params );if _fee !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fee );return _fee ;};_gfc .setTextMatrix (_eac );case "\u0054\u0072":if _cdb ,_fcff :=_gfc .checkOp (_dce ,1,true ); -!_cdb {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0072\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fcff );return _fcff ;};_dgg ,_acag :=_gb .GetIntVal (_dce .Params [0]);if !_acag {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0072\u0020\u006f\u0070\u003d\u0025\u0073 \u0047e\u0074\u0049\u006e\u0074\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_dce ); -return _gb .ErrTypeError ;};_gfc .setTextRenderMode (_dgg );case "\u0054\u0073":if _afg ,_bgc :=_gfc .checkOp (_dce ,1,true );!_afg {_ec .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a \u0054\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bgc );return _bgc ; -};_afa ,_cfc :=_gb .GetNumberAsFloat (_dce .Params [0]);if _cfc !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_cfc );return _cfc ;};_gfc .setTextRise (_afa );case "\u0054\u0077":if _bgbc ,_gbc :=_gfc .checkOp (_dce ,1,true ); -!_bgbc {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gbc );return _gbc ;};_abgf ,_cbab :=_gb .GetNumberAsFloat (_dce .Params [0]);if _cbab !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_cbab ); -return _cbab ;};_gfc .setWordSpacing (_abgf );case "\u0054\u007a":if _aaa ,_bbg :=_gfc .checkOp (_dce ,1,true );!_aaa {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bbg );return _bbg ;};_dfb ,_bagg :=_gb .GetNumberAsFloat (_dce .Params [0]); -if _bagg !=nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bagg );return _bagg ;};_gfc .setHorizScaling (_dfb );case "\u0063\u006d":_ggc ._aabgc =_gbge .CTM ;if _ggc ._aabgc .Singular (){_add :=_bc .IdentityMatrix ().Translate (_ggc ._aabgc .Translation ()); -_ec .Log .Debug ("S\u0069n\u0067\u0075\u006c\u0061\u0072\u0020\u0063\u0074m\u003d\u0025\u0073\u2192%s",_ggc ._aabgc ,_add );_ggc ._aabgc =_add ;};if _cbag {_ec .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_ggc ._aabgc );};case "\u006d":if len (_dce .Params )!=2{_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006d\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_fe ); -return nil ;};_beb ,_efbd :=_gb .GetNumbersAsFloat (_dce .Params );if _efbd !=nil {return _efbd ;};_ggc .moveTo (_beb [0],_beb [1]);case "\u006c":if len (_dce .Params )!=2{_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006c\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0076\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_fe ); -return nil ;};_dada ,_bfdb :=_gb .GetNumbersAsFloat (_dce .Params );if _bfdb !=nil {return _bfdb ;};_ggc .lineTo (_dada [0],_dada [1]);case "\u0063":if len (_dce .Params )!=6{return _fe ;};_afgf ,_ecc :=_gb .GetNumbersAsFloat (_dce .Params );if _ecc !=nil {return _ecc ; -};_ec .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020b\u0065\u007a\u0069\u0065\u0072 \u0070a\u0072a\u006d\u0073\u003a\u0020\u0025\u002e\u0032f",_afgf );_ggc .cubicTo (_afgf [0],_afgf [1],_afgf [2],_afgf [3],_afgf [4],_afgf [5]);case "\u0076","\u0079":if len (_dce .Params )!=4{return _fe ; -};_cdfc ,_edg :=_gb .GetNumbersAsFloat (_dce .Params );if _edg !=nil {return _edg ;};_ec .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020b\u0065\u007a\u0069\u0065\u0072 \u0070a\u0072a\u006d\u0073\u003a\u0020\u0025\u002e\u0032f",_cdfc );_ggc .quadraticTo (_cdfc [0],_cdfc [1],_cdfc [2],_cdfc [3]); -case "\u0068":_ggc .closePath ();case "\u0072\u0065":if len (_dce .Params )!=4{return _fe ;};_gca ,_adf :=_gb .GetNumbersAsFloat (_dce .Params );if _adf !=nil {return _adf ;};_ggc .drawRectangle (_gca [0],_gca [1],_gca [2],_gca [3]);_ggc .closePath (); -case "\u0053":_ggc .stroke (&_eaa ._geda );_ggc .clearPath ();case "\u0073":_ggc .closePath ();_ggc .stroke (&_eaa ._geda );_ggc .clearPath ();case "\u0046":_ggc .fill (&_eaa ._gegc );_ggc .clearPath ();case "\u0066","\u0066\u002a":_ggc .closePath ();_ggc .fill (&_eaa ._gegc ); -_ggc .clearPath ();case "\u0042","\u0042\u002a":_ggc .fill (&_eaa ._gegc );_ggc .stroke (&_eaa ._geda );_ggc .clearPath ();case "\u0062","\u0062\u002a":_ggc .closePath ();_ggc .fill (&_eaa ._gegc );_ggc .stroke (&_eaa ._geda );_ggc .clearPath ();case "\u006e":_ggc .clearPath (); -case "\u0044\u006f":if len (_dce .Params )==0{_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0058\u004fbj\u0065c\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0070\u0065\u0072\u0061n\u0064\u0020\u0066\u006f\u0072\u0020\u0044\u006f\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072.\u0020\u0047\u006f\u0074\u0020\u0025\u002b\u0076\u002e",_dce .Params ); -return _gb .ErrRangeError ;};_deda ,_eff :=_gb .GetName (_dce .Params [0]);if !_eff {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0044\u006f\u0020\u006f\u0070e\u0072a\u0074\u006f\u0072\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006fp\u0065\u0072\u0061\u006e\u0064\u003a\u0020\u0025\u002b\u0076\u002e",_dce .Params [0]); -return _gb .ErrTypeError ;};_ ,_geaf :=_bag .GetXObjectByName (*_deda );if _geaf !=_ce .XObjectTypeForm {break ;};_egbd ,_eff :=_ffcb ._fa [_deda .String ()];if !_eff {_agcd ,_ddf :=_bag .GetXObjectFormByName (*_deda );if _ddf !=nil {_ec .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ddf ); -return _ddf ;};_edf ,_ddf :=_agcd .GetContentStream ();if _ddf !=nil {_ec .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ddf );return _ddf ;};_bdg :=_agcd .Resources ;if _bdg ==nil {_bdg =_bag ;};_gcdc :=_gbge .CTM ;if _ggg ,_ada :=_gb .GetArray (_agcd .Matrix ); -_ada {_cgc ,_gced :=_ggg .GetAsFloat64Slice ();if _gced !=nil {return _gced ;};if len (_cgc )!=6{return _fe ;};_bcc :=_bc .NewMatrix (_cgc [0],_cgc [1],_cgc [2],_cgc [3],_cgc [4],_cgc [5]);_gcdc =_gbge .CTM .Mult (_bcc );};_gff ,_cdbg ,_edgg ,_ddf :=_ffcb .extractPageText (string (_edf ),_bdg ,_dg .Mult (_gcdc ),_gccd +1); -if _ddf !=nil {_ec .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ddf );return _ddf ;};_egbd =textResult {*_gff ,_cdbg ,_edgg };_ffcb ._fa [_deda .String ()]=_egbd ;};_ggc ._aabgc =_gbge .CTM ;if _cbag {_ec .Log .Info ("\u0063\u0074\u006d\u003d\u0025\u0073",_ggc ._aabgc ); -};_eaa ._fcag =append (_eaa ._fcag ,_egbd ._ceee ._fcag ...);_eaa ._geda =append (_eaa ._geda ,_egbd ._ceee ._geda ...);_eaa ._gegc =append (_eaa ._gegc ,_egbd ._ceee ._gegc ...);_dee ._baf +=_egbd ._agcc ;_dee ._afgb +=_egbd ._dge ;case "\u0072\u0067","\u0067","\u006b","\u0063\u0073","\u0073\u0063","\u0073\u0063\u006e":_gfc ._gbe .ColorspaceNonStroking =_gbge .ColorspaceNonStroking ; -_gfc ._gbe .ColorNonStroking =_gbge .ColorNonStroking ;case "\u0052\u0047","\u0047","\u004b","\u0043\u0053","\u0053\u0043","\u0053\u0043\u004e":_gfc ._gbe .ColorspaceStroking =_gbge .ColorspaceStroking ;_gfc ._gbe .ColorStroking =_gbge .ColorStroking ; -};return nil ;});_bac =_dfa .Process (_gccf );return _eaa ,_dee ._baf ,_dee ._afgb ,_bac ;}; +// ToText returns the page text as a single string. +// Deprecated: This function is deprecated and will be removed in a future major version. Please use +// Text() instead. +func (_fede PageText )ToText ()string {return _fede .Text ()};func _dgce (_dafea map[int ][]float64 )[]int {_fafg :=make ([]int ,len (_dafea ));_dfeb :=0;for _dceda :=range _dafea {_fafg [_dfeb ]=_dceda ;_dfeb ++;};_d .Ints (_fafg );return _fafg ;};func _ebgc (_abca ,_eabf _gb .PdfRectangle )bool {return _abca .Lly <=_eabf .Ury &&_eabf .Lly <=_abca .Ury ; +};type textPara struct{_gb .PdfRectangle ;_cedf _gb .PdfRectangle ;_abbe []*textLine ;_bedfe *textTable ;_ggdd bool ;_befd bool ;_dgdb *textPara ;_ccdg *textPara ;_dbecf *textPara ;_cgfe *textPara ;_fega []list ;};func (_aab *imageExtractContext )extractContentStreamImages (_cbf string ,_cfa *_gb .PdfPageResources )error {_aaf :=_aad .NewContentStreamParser (_cbf ); +_fa ,_feb :=_aaf .Parse ();if _feb !=nil {return _feb ;};if _aab ._eae ==nil {_aab ._eae =map[*_gg .PdfObjectStream ]*cachedImage {};};if _aab ._eag ==nil {_aab ._eag =&ImageExtractOptions {};};_agaf :=_aad .NewContentStreamProcessor (*_fa );_agaf .AddHandler (_aad .HandlerConditionEnumAllOperands ,"",_aab .processOperand ); +return _agaf .Process (_cfa );};func (_dcaca *textTable )getRight ()paraList {_bbbab :=make (paraList ,_dcaca ._dege );for _eaed :=0;_eaed < _dcaca ._dege ;_eaed ++{_fefb :=_dcaca .get (_dcaca ._fccgee -1,_eaed )._ccdg ;if _fefb .taken (){return nil ;}; +_bbbab [_eaed ]=_fefb ;};for _dgadf :=0;_dgadf < _dcaca ._dege -1;_dgadf ++{if _bbbab [_dgadf ]._cgfe !=_bbbab [_dgadf +1]{return nil ;};};return _bbbab ;};func (_afaa rulingList )sortStrict (){_d .Slice (_afaa ,func (_dfcfc ,_cgfb int )bool {_cdfg ,_abgbbb :=_afaa [_dfcfc ],_afaa [_cgfb ]; +_fcdb ,_feacf :=_cdfg ._cffe ,_abgbbb ._cffe ;if _fcdb !=_feacf {return _fcdb > _feacf ;};_cebd ,_ddfgc :=_cdfg ._abfg ,_abgbbb ._abfg ;if !_cdgd (_cebd -_ddfgc ){return _cebd < _ddfgc ;};_cebd ,_ddfgc =_cdfg ._daag ,_abgbbb ._daag ;if _cebd !=_ddfgc {return _cebd < _ddfgc ; +};return _cdfg ._fcff < _abgbbb ._fcff ;});};func (_dbfe paraList )toTextMarks ()[]TextMark {_bbfd :=0;var _dbbge []TextMark ;for _cgee ,_bgba :=range _dbfe {if _bgba ._befd {continue ;};_beeee :=_bgba .toTextMarks (&_bbfd );_dbbge =append (_dbbge ,_beeee ...); +if _cgee !=len (_dbfe )-1{if _ccee (_bgba ,_dbfe [_cgee +1]){_dbbge =_dgccag (_dbbge ,&_bbfd ,"\u0020");}else {_dbbge =_dgccag (_dbbge ,&_bbfd ,"\u000a");_dbbge =_dgccag (_dbbge ,&_bbfd ,"\u000a");};};};_dbbge =_dgccag (_dbbge ,&_bbfd ,"\u000a");_dbbge =_dgccag (_dbbge ,&_bbfd ,"\u000a"); +return _dbbge ;};func (_gaab rulingList )aligned ()bool {if len (_gaab )< 2{return false ;};_bcbgg :=make (map[*ruling ]int );_bcbgg [_gaab [0]]=0;for _ ,_gcdc :=range _gaab [1:]{_cgab :=false ;for _fcag :=range _bcbgg {if _gcdc .gridIntersecting (_fcag ){_bcbgg [_fcag ]++; +_cgab =true ;break ;};};if !_cgab {_bcbgg [_gcdc ]=0;};};_edfec :=0;for _ ,_bbea :=range _bcbgg {if _bbea ==0{_edfec ++;};};_bgbad :=float64 (_edfec )/float64 (len (_gaab ));_dac :=_bgbad <=1.0-_ecdaa ;if _geaeg {_ed .Log .Info ("\u0061\u006c\u0069\u0067\u006e\u0065\u0064\u003d\u0025\u0074\u0020\u0075\u006em\u0061\u0074\u0063\u0068\u0065\u0064=\u0025\u002e\u0032\u0066\u003d\u0025\u0064\u002f\u0025\u0064\u0020\u0076\u0065c\u0073\u003d\u0025\u0073",_dac ,_bgbad ,_edfec ,len (_gaab ),_gaab .String ()); +};return _dac ;};func _aege (_ccggb []TextMark ,_ggag *int )[]TextMark {_eegb :=_ccggb [len (_ccggb )-1];_egac :=[]rune (_eegb .Text );if len (_egac )==1{_ccggb =_ccggb [:len (_ccggb )-1];_cgbag :=_ccggb [len (_ccggb )-1];*_ggag =_cgbag .Offset +len (_cgbag .Text ); +}else {_gceb :=_aabe (_eegb .Text );*_ggag +=len (_gceb )-len (_eegb .Text );_eegb .Text =_gceb ;};return _ccggb ;};func (_bcdgd *textPara )toTextMarks (_fgbe *int )[]TextMark {if _bcdgd ._bedfe ==nil {return _bcdgd .toCellTextMarks (_fgbe );};var _fedg []TextMark ; +for _gdcga :=0;_gdcga < _bcdgd ._bedfe ._dege ;_gdcga ++{for _gcddg :=0;_gcddg < _bcdgd ._bedfe ._fccgee ;_gcddg ++{_badf :=_bcdgd ._bedfe .get (_gcddg ,_gdcga );if _badf ==nil {_fedg =_dgccag (_fedg ,_fgbe ,"\u0009");}else {_bcgb :=_badf .toCellTextMarks (_fgbe ); +_fedg =append (_fedg ,_bcgb ...);};_fedg =_dgccag (_fedg ,_fgbe ,"\u0020");};if _gdcga < _bcdgd ._bedfe ._dege -1{_fedg =_dgccag (_fedg ,_fgbe ,"\u000a");};};_cfcdg :=_bcdgd ._bedfe ;if _cfcdg .isExportable (){_gfgc :=_cfcdg .toTextTable ();_fedg =_dcge (_fedg ,&_gfgc ); +};return _fedg ;};func _cdgd (_ggac float64 )bool {return _df .Abs (_ggac )< _dafe }; -// Tables returns the tables extracted from the page. -func (_gdfa PageText )Tables ()[]TextTable {if _afcg {_ec .Log .Info ("\u0054\u0061\u0062\u006c\u0065\u0073\u003a\u0020\u0025\u0064",len (_gdfa ._eadb ));};return _gdfa ._eadb ;};func _fddd (_dcbdd _gb .PdfObject ,_gdgcc _fg .Color )(_ded .Image ,error ){_dcafg ,_afadd :=_gb .GetStream (_dcbdd ); -if !_afadd {return nil ,nil ;};_bdac ,_gdacc :=_ce .NewXObjectImageFromStream (_dcafg );if _gdacc !=nil {return nil ,_gdacc ;};_dfgad ,_gdacc :=_bdac .ToImage ();if _gdacc !=nil {return nil ,_gdacc ;};return _abgbe (_dfgad ,_gdgcc ),nil ;};func _ffef (_gfae func (*wordBag ,*textWord ,float64 )bool ,_bdbc float64 )func (*wordBag ,*textWord )bool {return func (_fdda *wordBag ,_cfca *textWord )bool {return _gfae (_fdda ,_cfca ,_bdbc )}; -};func _deca (_fbgeb []*textLine ,_fffa map[float64 ][]*textLine ,_afacg []float64 ,_bfbda int ,_bead ,_ebbd float64 )[]*list {_cgce :=[]*list {};_afcgc :=_bfbda ;_bfbda =_bfbda +1;_abdc :=_afacg [_afcgc ];_beecba :=_fffa [_abdc ];_fgab :=_bdbf (_beecba ,_ebbd ,_bead ); -for _dadcf ,_ccac :=range _fgab {var _dfcc float64 ;_fefff :=[]*list {};_fgbaa :=_ccac ._bcdg ;_fded :=_ebbd ;if _dadcf < len (_fgab )-1{_fded =_fgab [_dadcf +1]._bcdg ;};if _bfbda < len (_afacg ){_fefff =_deca (_fbgeb ,_fffa ,_afacg ,_bfbda ,_fgbaa ,_fded ); -};_dfcc =_fded ;if len (_fefff )> 0{_dafb :=_fefff [0];if len (_dafb ._ggdb )> 0{_dfcc =_dafb ._ggdb [0]._bcdg ;};};_bcfg :=[]*textLine {_ccac };_aced :=_dcbf (_ccac ,_fbgeb ,_afacg ,_fgbaa ,_dfcc );_bcfg =append (_bcfg ,_aced ...);_fagdb :=_baba (_bcfg ,"\u0062\u0075\u006c\u006c\u0065\u0074",_fefff ); -_fagdb ._dage =_efaf (_bcfg ,"");_cgce =append (_cgce ,_fagdb );};return _cgce ;};var _eeggd =_e .MustCompile ("\u005e\u005c\u0073\u002a\u0028\u005c\u0064\u002b\u005c\u002e\u003f|\u005b\u0049\u0069\u0076\u005d\u002b\u0029\u005c\u0073\u002a\\\u0029\u003f\u0024"); -const (_be ="\u0045\u0052R\u004f\u0052\u003a\u0020\u0043\u0061\u006e\u0027\u0074\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065"; -_cc ="\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043a\u006e\u0027\u0074 g\u0065\u0074\u0020\u0066\u006f\u006et\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073\u002c\u0020\u0066\u006fn\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006fu\u006e\u0064"; -_cb ="\u0045\u0052\u0052O\u0052\u003a\u0020\u0043\u0061\u006e\u0027\u0074\u0020\u0067\u0065\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002c\u0020\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065";); -func (_adea *textTable )growTable (){_ggac :=func (_gacg paraList ){_adea ._dcfg ++;for _dgfgb :=0;_dgfgb < _adea ._ecbf ;_dgfgb ++{_beecc :=_gacg [_dgfgb ];_adea .put (_dgfgb ,_adea ._dcfg -1,_beecc );};};_fgge :=func (_bgfe paraList ){_adea ._ecbf ++; -for _babbc :=0;_babbc < _adea ._dcfg ;_babbc ++{_aafac :=_bgfe [_babbc ];_adea .put (_adea ._ecbf -1,_babbc ,_aafac );};};if _dcedc {_adea .log ("\u0067r\u006f\u0077\u0054\u0061\u0062\u006ce");};for _gbfa :=0;;_gbfa ++{_gaba :=false ;_cada :=_adea .getDown (); -_afgcd :=_adea .getRight ();if _dcedc {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_gbfa ,_adea );_ge .Printf ("\u0020\u0020 \u0020\u0020\u0020 \u0020\u0064\u006f\u0077\u006e\u003d\u0025\u0073\u000a",_cada );_ge .Printf ("\u0020\u0020 \u0020\u0020\u0020 \u0072\u0069\u0067\u0068\u0074\u003d\u0025\u0073\u000a",_afgcd ); -};if _cada !=nil &&_afgcd !=nil {_fcdf :=_cada [len (_cada )-1];if !_fcdf .taken ()&&_fcdf ==_afgcd [len (_afgcd )-1]{_ggac (_cada );if _afgcd =_adea .getRight ();_afgcd !=nil {_fgge (_afgcd );_adea .put (_adea ._ecbf -1,_adea ._dcfg -1,_fcdf );};_gaba =true ; -};};if !_gaba &&_cada !=nil {_ggac (_cada );_gaba =true ;};if !_gaba &&_afgcd !=nil {_fgge (_afgcd );_gaba =true ;};if !_gaba {break ;};};};func _edeff (_cbed _ce .PdfRectangle )*ruling {return &ruling {_bfbc :_ecac ,_abbgc :_cbed .Ury ,_cebe :_cbed .Llx ,_deee :_cbed .Urx }; -};func (_abee *textWord )computeText ()string {_dbfffe :=make ([]string ,len (_abee ._bgeaa ));for _eedge ,_cfcbg :=range _abee ._bgeaa {_dbfffe [_eedge ]=_cfcbg ._ecaa ;};return _gd .Join (_dbfffe ,"");};func (_fddcf gridTiling )log (_cdcf string ){if !_bea {return ; -};_ec .Log .Info ("\u0074i\u006ci\u006e\u0067\u003a\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u0025\u0071",len (_fddcf ._cgecb ),len (_fddcf ._agbb ),_cdcf );_ge .Printf ("\u0020\u0020\u0020l\u006c\u0078\u003d\u0025\u002e\u0032\u0066\u000a",_fddcf ._cgecb ); -_ge .Printf ("\u0020\u0020\u0020l\u006c\u0079\u003d\u0025\u002e\u0032\u0066\u000a",_fddcf ._agbb );for _fdgdf ,_ffcde :=range _fddcf ._agbb {_fbaa ,_ccag :=_fddcf ._bage [_ffcde ];if !_ccag {continue ;};_ge .Printf ("%\u0034\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u000a",_fdgdf ,_ffcde ); -for _agfa ,_deedg :=range _fddcf ._cgecb {_eedgg ,_cafeg :=_fbaa [_deedg ];if !_cafeg {continue ;};_ge .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_agfa ,_eedgg .String ());};};};func _eccb (_bdff []*textLine )[]*textLine {_adgf :=[]*textLine {}; -for _ ,_geac :=range _bdff {_eabad :=_geac .text ();_dcf :=_ccfe .Find ([]byte (_eabad ));if _dcf !=nil {_adgf =append (_adgf ,_geac );};};return _adgf ;}; +// String returns a human readable description of `ss`. +func (_bgce *shapesState )String ()string {return _cfe .Sprintf ("\u007b\u0025\u0064\u0020su\u0062\u0070\u0061\u0074\u0068\u0073\u0020\u0066\u0072\u0065\u0073\u0068\u003d\u0025t\u007d",len (_bgce ._babc ),_bgce ._dfff );};func (_bdeg paraList )applyTables (_edfdg []*textTable )paraList {var _gcdg paraList ; +for _ ,_eafac :=range _edfdg {_gcdg =append (_gcdg ,_eafac .newTablePara ());};for _ ,_cfca :=range _bdeg {if _cfca ._ggdd {continue ;};_gcdg =append (_gcdg ,_cfca );};return _gcdg ;};func (_gebb *imageExtractContext )extractFormImages (_dceb *_gg .PdfObjectName ,_eaee _aad .GraphicsState ,_gege *_gb .PdfPageResources )error {_faf ,_aaff :=_gege .GetXObjectFormByName (*_dceb ); +if _aaff !=nil {return _aaff ;};if _faf ==nil {return nil ;};_cae ,_aaff :=_faf .GetContentStream ();if _aaff !=nil {return _aaff ;};_ccf :=_faf .Resources ;if _ccf ==nil {_ccf =_gege ;};_aaff =_gebb .extractContentStreamImages (string (_cae ),_ccf );if _aaff !=nil {return _aaff ; +};_gebb ._ebf ++;return nil ;}; + +// String returns a string describing the current state of the textState stack. +func (_gece *stateStack )String ()string {_cgb :=[]string {_cfe .Sprintf ("\u002d\u002d\u002d\u002d f\u006f\u006e\u0074\u0020\u0073\u0074\u0061\u0063\u006b\u003a\u0020\u0025\u0064",len (*_gece ))};for _dba ,_age :=range *_gece {_ged :="\u003c\u006e\u0069l\u003e"; +if _age !=nil {_ged =_age .String ();};_cgb =append (_cgb ,_cfe .Sprintf ("\u0009\u0025\u0032\u0064\u003a\u0020\u0025\u0073",_dba ,_ged ));};return _ag .Join (_cgb ,"\u000a");};func (_dbeb *ruling )encloses (_fagc ,_cfadb float64 )bool {return _dbeb ._daag -_egaa <=_fagc &&_cfadb <=_dbeb ._fcff +_egaa ; +}; + +// ImageMark represents an image drawn on a page and its position in device coordinates. +// All coordinates are in device coordinates. +type ImageMark struct{Image *_gb .Image ; + +// Dimensions of the image as displayed in the PDF. +Width float64 ;Height float64 ; + +// Position of the image in PDF coordinates (lower left corner). +X float64 ;Y float64 ; + +// Angle in degrees, if rotated. +Angle float64 ;};func _befg (_adcdc *list ,_gcdd *_ag .Builder ,_gbff *string ){_fbcf :=_efeb (_adcdc ,_gbff );_gcdd .WriteString (_fbcf );for _ ,_ffce :=range _adcdc ._gbcab {_gcec :=*_gbff +"\u0020\u0020\u0020";_befg (_ffce ,_gcdd ,&_gcec );};};var (_ccb =_c .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +_be =_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"););type textWord struct{_gb .PdfRectangle ;_cbfcee float64 ;_bcfea string ;_fdgbc []*textMark ;_fgdbd float64 ;_cacca bool ;};func (_eddea rulingList )bbox ()_gb .PdfRectangle {var _gbcbf _gb .PdfRectangle ; +if len (_eddea )==0{_ed .Log .Error ("r\u0075\u006c\u0069\u006e\u0067\u004ci\u0073\u0074\u002e\u0062\u0062\u006f\u0078\u003a\u0020n\u006f\u0020\u0072u\u006ci\u006e\u0067\u0073");return _gb .PdfRectangle {};};if _eddea [0]._cffe ==_bdfd {_gbcbf .Llx ,_gbcbf .Urx =_eddea .secMinMax (); +_gbcbf .Lly ,_gbcbf .Ury =_eddea .primMinMax ();}else {_gbcbf .Llx ,_gbcbf .Urx =_eddea .primMinMax ();_gbcbf .Lly ,_gbcbf .Ury =_eddea .secMinMax ();};return _gbcbf ;};func (_gbebg *shapesState )fill (_dbcd *[]pathSection ){_ffeg :=pathSection {_ggfc :_gbebg ._babc ,Color :_gbebg ._geba .getFillColor ()}; +*_dbcd =append (*_dbcd ,_ffeg );if _geaeg {_fdfc :=_ffeg .bbox ();_cfe .Printf ("\u0020 \u0020\u0020\u0046\u0049\u004c\u004c\u003a %\u0032\u0064\u0020\u0066\u0069\u006c\u006c\u0073\u0020\u0028\u0025\u0064\u0020\u006ee\u0077\u0029 \u0073\u0073\u003d%\u0073\u0020\u0063\u006f\u006c\u006f\u0072\u003d\u0025\u0033\u0076\u0020\u0025\u0036\u002e\u0032f\u003d\u00256.\u0032\u0066\u0078%\u0036\u002e\u0032\u0066\u000a",len (*_dbcd ),len (_ffeg ._ggfc ),_gbebg ,_ffeg .Color ,_fdfc ,_fdfc .Width (),_fdfc .Height ()); +if _faab {for _gbf ,_fdfd :=range _ffeg ._ggfc {_cfe .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_gbf ,_fdfd );if _gbf ==10{break ;};};};};};func (_cbfa *wordBag )blocked (_bca *textWord )bool {if _bca .Urx < _cbfa .Llx {_agead :=_bdbf (_bca .PdfRectangle ); +_fgge :=_gdfe (_cbfa .PdfRectangle );if _cbfa ._cbfg .blocks (_agead ,_fgge ){if _aagad {_ed .Log .Info ("\u0062\u006c\u006f\u0063ke\u0064\u0020\u2190\u0078\u003a\u0020\u0025\u0073\u0020\u0025\u0073",_bca ,_cbfa );};return true ;};}else if _cbfa .Urx < _bca .Llx {_dfgd :=_bdbf (_cbfa .PdfRectangle ); +_efbf :=_gdfe (_bca .PdfRectangle );if _cbfa ._cbfg .blocks (_dfgd ,_efbf ){if _aagad {_ed .Log .Info ("b\u006co\u0063\u006b\u0065\u0064\u0020\u0078\u2192\u0020:\u0020\u0025\u0073\u0020%s",_bca ,_cbfa );};return true ;};};if _bca .Ury < _cbfa .Lly {_cee :=_cbcc (_bca .PdfRectangle ); +_abfc :=_bdd (_cbfa .PdfRectangle );if _cbfa ._gaeg .blocks (_cee ,_abfc ){if _aagad {_ed .Log .Info ("\u0062\u006c\u006f\u0063ke\u0064\u0020\u2190\u0079\u003a\u0020\u0025\u0073\u0020\u0025\u0073",_bca ,_cbfa );};return true ;};}else if _cbfa .Ury < _bca .Lly {_bccce :=_cbcc (_cbfa .PdfRectangle ); +_gebe :=_bdd (_bca .PdfRectangle );if _cbfa ._gaeg .blocks (_bccce ,_gebe ){if _aagad {_ed .Log .Info ("b\u006co\u0063\u006b\u0065\u0064\u0020\u0079\u2192\u0020:\u0020\u0025\u0073\u0020%s",_bca ,_cbfa );};return true ;};};return false ;};func (_gcf *shapesState )drawRectangle (_feaaa ,_aabf ,_afbe ,_bge float64 ){if _dgeg {_ecea :=_gcf .devicePoint (_feaaa ,_aabf ); +_ffbg :=_gcf .devicePoint (_feaaa +_afbe ,_aabf +_bge );_edgb :=_gb .PdfRectangle {Llx :_ecea .X ,Lly :_ecea .Y ,Urx :_ffbg .X ,Ury :_ffbg .Y };_ed .Log .Info ("d\u0072a\u0077\u0052\u0065\u0063\u0074\u0061\u006e\u0067l\u0065\u003a\u0020\u00256.\u0032\u0066",_edgb ); +};_gcf .newSubPath ();_gcf .moveTo (_feaaa ,_aabf );_gcf .lineTo (_feaaa +_afbe ,_aabf );_gcf .lineTo (_feaaa +_afbe ,_aabf +_bge );_gcf .lineTo (_feaaa ,_aabf +_bge );_gcf .closePath ();}; + +// String returns a description of `w`. +func (_gabdf *textWord )String ()string {return _cfe .Sprintf ("\u0025\u002e2\u0066\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066\u0020\"%\u0073\u0022",_gabdf ._cbfcee ,_gabdf .PdfRectangle ,_gabdf ._fgdbd ,_gabdf ._bcfea ); +};func _cea (_ebfad []*textLine ,_efaed map[float64 ][]*textLine )[]*list {_dgfb :=_fdgd (_efaed );_ccfdd :=[]*list {};if len (_dgfb )==0{return _ccfdd ;};_babg :=_dgfb [0];_gdce :=1;_dgcaf :=_efaed [_babg ];for _cdcgb ,_abaa :=range _dgcaf {var _cgac float64 ; +_badg :=[]*list {};_efcg :=_abaa ._bdbg ;_ecfg :=-1.0;if _cdcgb < len (_dgcaf )-1{_ecfg =_dgcaf [_cdcgb +1]._bdbg ;};if _gdce < len (_dgfb ){_badg =_eddb (_ebfad ,_efaed ,_dgfb ,_gdce ,_efcg ,_ecfg );};_cgac =_ecfg ;if len (_badg )> 0{_aagg :=_badg [0]; +if len (_aagg ._ggbee )> 0{_cgac =_aagg ._ggbee [0]._bdbg ;};};_fbfg :=[]*textLine {_abaa };_dfaf :=_bbfg (_abaa ,_ebfad ,_dgfb ,_efcg ,_cgac );_fbfg =append (_fbfg ,_dfaf ...);_bbde :=_gbcag (_fbfg ,"\u0062\u0075\u006c\u006c\u0065\u0074",_badg );_bbde ._ebabg =_adag (_fbfg ,""); +_ccfdd =append (_ccfdd ,_bbde );};return _ccfdd ;};type gridTiling struct{_gb .PdfRectangle ;_edfg []float64 ;_abbf []float64 ;_aaef map[float64 ]map[float64 ]gridTile ;};func _bdd (_fcadf _gb .PdfRectangle )*ruling {return &ruling {_cffe :_bdfd ,_abfg :_fcadf .Lly ,_daag :_fcadf .Llx ,_fcff :_fcadf .Urx }; +};type textObject struct{_cgf *Extractor ;_edacg *_gb .PdfPageResources ;_ccg _aad .GraphicsState ;_cbag *textState ;_bab *stateStack ;_ffb _cc .Matrix ;_ddge _cc .Matrix ;_gafa []*textMark ;_efcbd bool ;};func _cgdeg (_gecaa map[float64 ]map[float64 ]gridTile )[]float64 {_caccd :=make ([]float64 ,0,len (_gecaa )); +_aadc :=make (map[float64 ]struct{},len (_gecaa ));for _ ,_eaec :=range _gecaa {for _fbdb :=range _eaec {if _ ,_adcee :=_aadc [_fbdb ];_adcee {continue ;};_caccd =append (_caccd ,_fbdb );_aadc [_fbdb ]=struct{}{};};};_d .Float64s (_caccd );return _caccd ; +}; + +// PageImages represents extracted images on a PDF page with spatial information: +// display position and size. +type PageImages struct{Images []ImageMark ;};func (_cdcc *stateStack )pop ()*textState {if _cdcc .empty (){return nil ;};_ddde :=*(*_cdcc )[len (*_cdcc )-1];*_cdcc =(*_cdcc )[:len (*_cdcc )-1];return &_ddde ;};func (_efbfe paraList )writeText (_cbdc _a .Writer ){for _abad ,_babd :=range _efbfe {if _babd ._befd {continue ; +};_babd .writeText (_cbdc );if _abad !=len (_efbfe )-1{if _ccee (_babd ,_efbfe [_abad +1]){_cbdc .Write ([]byte ("\u0020"));}else {_cbdc .Write ([]byte ("\u000a"));_cbdc .Write ([]byte ("\u000a"));};};};_cbdc .Write ([]byte ("\u000a"));_cbdc .Write ([]byte ("\u000a")); +};func _bfddb (_bbga float64 )float64 {return _bcdg *_df .Round (_bbga /_bcdg )};func (_geag pathSection )bbox ()_gb .PdfRectangle {_acf :=_geag ._ggfc [0]._ccgf [0];_geae :=_gb .PdfRectangle {Llx :_acf .X ,Urx :_acf .X ,Lly :_acf .Y ,Ury :_acf .Y };_gccd :=func (_dcag _cc .Point ){if _dcag .X < _geae .Llx {_geae .Llx =_dcag .X ; +}else if _dcag .X > _geae .Urx {_geae .Urx =_dcag .X ;};if _dcag .Y < _geae .Lly {_geae .Lly =_dcag .Y ;}else if _dcag .Y > _geae .Ury {_geae .Ury =_dcag .Y ;};};for _ ,_edee :=range _geag ._ggfc [0]._ccgf [1:]{_gccd (_edee );};for _ ,_degb :=range _geag ._ggfc [1:]{for _ ,_afba :=range _degb ._ccgf {_gccd (_afba ); +};};return _geae ;};func (_cfb *wordBag )absorb (_bgeb *wordBag ){_eaca :=_bgeb .makeRemovals ();for _ddgg ,_fab :=range _bgeb ._gegc {for _ ,_ebab :=range _fab {_cfb .pullWord (_ebab ,_ddgg ,_eaca );};};_bgeb .applyRemovals (_eaca );};func (_cdfbd *textTable )growTable (){_fbbf :=func (_bagc paraList ){_cdfbd ._dege ++; +for _bdgg :=0;_bdgg < _cdfbd ._fccgee ;_bdgg ++{_acad :=_bagc [_bdgg ];_cdfbd .put (_bdgg ,_cdfbd ._dege -1,_acad );};};_fecgf :=func (_gbacf paraList ){_cdfbd ._fccgee ++;for _bfdg :=0;_bfdg < _cdfbd ._dege ;_bfdg ++{_baaec :=_gbacf [_bfdg ];_cdfbd .put (_cdfbd ._fccgee -1,_bfdg ,_baaec ); +};};if _abef {_cdfbd .log ("\u0067r\u006f\u0077\u0054\u0061\u0062\u006ce");};for _gbcf :=0;;_gbcf ++{_bdbd :=false ;_dadgf :=_cdfbd .getDown ();_eggf :=_cdfbd .getRight ();if _abef {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_gbcf ,_cdfbd ); +_cfe .Printf ("\u0020\u0020 \u0020\u0020\u0020 \u0020\u0064\u006f\u0077\u006e\u003d\u0025\u0073\u000a",_dadgf );_cfe .Printf ("\u0020\u0020 \u0020\u0020\u0020 \u0072\u0069\u0067\u0068\u0074\u003d\u0025\u0073\u000a",_eggf );};if _dadgf !=nil &&_eggf !=nil {_ccaa :=_dadgf [len (_dadgf )-1]; +if !_ccaa .taken ()&&_ccaa ==_eggf [len (_eggf )-1]{_fbbf (_dadgf );if _eggf =_cdfbd .getRight ();_eggf !=nil {_fecgf (_eggf );_cdfbd .put (_cdfbd ._fccgee -1,_cdfbd ._dege -1,_ccaa );};_bdbd =true ;};};if !_bdbd &&_dadgf !=nil {_fbbf (_dadgf );_bdbd =true ; +};if !_bdbd &&_eggf !=nil {_fecgf (_eggf );_bdbd =true ;};if !_bdbd {break ;};};};type markKind int ;func (_ggba *textTable )emptyCompositeRow (_ageag int )bool {for _cdcb :=0;_cdcb < _ggba ._fccgee ;_cdcb ++{if _eaeec ,_acbde :=_ggba ._faeg [_aafb (_cdcb ,_ageag )]; +_acbde {if len (_eaeec .paraList )> 0{return false ;};};};return true ;};func (_bbgg compositeCell )hasLines (_gcbg []*textLine )bool {for _dcdaf ,_dagd :=range _gcbg {_cefb :=_feee (_bbgg .PdfRectangle ,_dagd .PdfRectangle );if _geff {_cfe .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u005e\u005e\u005e\u0069\u006e\u0074\u0065\u0072\u0073e\u0063t\u0073\u003d\u0025\u0074\u0020\u0025\u0064\u0020\u006f\u0066\u0020\u0025\u0064\u000a",_cefb ,_dcdaf ,len (_gcbg )); +_cfe .Printf ("\u0020\u0020\u0020\u0020 \u005e\u005e\u005e\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u003d\u0025s\u000a",_bbgg );_cfe .Printf ("\u0020 \u0020 \u0020\u0020\u0020\u006c\u0069\u006e\u0065\u003d\u0025\u0073\u000a",_dagd );};if _cefb {return true ; +};};return false ;}; + +// ExtractTextWithStats works like ExtractText but returns the number of characters in the output +// (`numChars`) and the number of characters that were not decoded (`numMisses`). +func (_abg *Extractor )ExtractTextWithStats ()(_ddee string ,_fed int ,_ffe int ,_fc error ){_fge ,_fed ,_ffe ,_fc :=_abg .ExtractPageText ();if _fc !=nil {return "",_fed ,_ffe ,_fc ;};return _fge .Text (),_fed ,_ffe ,nil ;};func _efeb (_acdd *list ,_fgcb *string )string {_edagc :=_ag .Split (_acdd ._ebabg ,"\u000a"); +_cddfd :=&_ag .Builder {};for _ ,_gcdb :=range _edagc {if _gcdb !=""{_cddfd .WriteString (*_fgcb );_cddfd .WriteString (_gcdb );_cddfd .WriteString ("\u000a");};};return _cddfd .String ();};func (_fbdg paraList )tables ()[]TextTable {var _cfcf []TextTable ; +if _geff {_ed .Log .Info ("\u0070\u0061\u0072\u0061\u0073\u002e\u0074\u0061\u0062\u006c\u0065\u0073\u003a");};for _ ,_fdgc :=range _fbdg {_fedc :=_fdgc ._bedfe ;if _fedc !=nil &&_fedc .isExportable (){_cfcf =append (_cfcf ,_fedc .toTextTable ());};};return _cfcf ; +};func _feed (_eceg []*textLine ,_bdec ,_cde float64 )[]*textLine {var _dbe []*textLine ;for _ ,_fcbb :=range _eceg {if _bdec ==-1{if _fcbb ._bdbg > _cde {_dbe =append (_dbe ,_fcbb );};}else {if _fcbb ._bdbg > _cde &&_fcbb ._bdbg < _bdec {_dbe =append (_dbe ,_fcbb ); +};};};return _dbe ;};func (_bef *wordBag )depthIndexes ()[]int {if len (_bef ._gegc )==0{return nil ;};_gfgd :=make ([]int ,len (_bef ._gegc ));_aedf :=0;for _degbg :=range _bef ._gegc {_gfgd [_aedf ]=_degbg ;_aedf ++;};_d .Ints (_gfgd );return _gfgd ; +};func _dgccag (_ccda []TextMark ,_cfaa *int ,_afdbb string )[]TextMark {_ecegb :=_gdcf ;_ecegb .Text =_afdbb ;return _gegag (_ccda ,_cfaa ,_ecegb );};func (_fgda *textTable )markCells (){for _fdcd :=0;_fdcd < _fgda ._dege ;_fdcd ++{for _afdfc :=0;_afdfc < _fgda ._fccgee ; +_afdfc ++{_gaeb :=_fgda .get (_afdfc ,_fdcd );if _gaeb !=nil {_gaeb ._ggdd =true ;};};};};func (_edgde *textTable )depth ()float64 {_fagfd :=1e10;for _adcbe :=0;_adcbe < _edgde ._fccgee ;_adcbe ++{_cgfde :=_edgde .get (_adcbe ,0);if _cgfde ==nil ||_cgfde ._befd {continue ; +};_fagfd =_df .Min (_fagfd ,_cgfde .depth ());};return _fagfd ;};func (_cdad *textTable )reduceTiling (_ebbgd gridTiling ,_gbefb float64 )*textTable {_dgaba :=make ([]int ,0,_cdad ._dege );_cdcgc :=make ([]int ,0,_cdad ._fccgee );_ageaf :=_ebbgd ._edfg ; +_egae :=_ebbgd ._abbf ;for _ccbf :=0;_ccbf < _cdad ._dege ;_ccbf ++{_ebef :=_ccbf > 0&&_df .Abs (_egae [_ccbf -1]-_egae [_ccbf ])< _gbefb &&_cdad .emptyCompositeRow (_ccbf );if !_ebef {_dgaba =append (_dgaba ,_ccbf );};};for _dgbgg :=0;_dgbgg < _cdad ._fccgee ; +_dgbgg ++{_gcdbe :=_dgbgg < _cdad ._fccgee -1&&_df .Abs (_ageaf [_dgbgg +1]-_ageaf [_dgbgg ])< _gbefb &&_cdad .emptyCompositeColumn (_dgbgg );if !_gcdbe {_cdcgc =append (_cdcgc ,_dgbgg );};};if len (_dgaba )==_cdad ._dege &&len (_cdcgc )==_cdad ._fccgee {return _cdad ; +};_gebda :=textTable {_baccf :_cdad ._baccf ,_fccgee :len (_cdcgc ),_dege :len (_dgaba ),_faeg :make (map[uint64 ]compositeCell ,len (_cdcgc )*len (_dgaba ))};if _geff {_ed .Log .Info ("\u0072\u0065\u0064\u0075c\u0065\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0025d\u0078%\u0064\u0020\u002d\u003e\u0020\u0025\u0064x\u0025\u0064",_cdad ._fccgee ,_cdad ._dege ,len (_cdcgc ),len (_dgaba )); +_ed .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0043\u006f\u006c\u0073\u003a\u0020\u0025\u002b\u0076",_cdcgc );_ed .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0052\u006f\u0077\u0073\u003a\u0020\u0025\u002b\u0076",_dgaba );};for _gcbe ,_ddbaab :=range _dgaba {for _bcbag ,_gbaa :=range _cdcgc {_beab ,_bbdcd :=_cdad .getComposite (_gbaa ,_ddbaab ); +if len (_beab )==0{continue ;};if _geff {_cfe .Printf ("\u0020 \u0025\u0032\u0064\u002c \u0025\u0032\u0064\u0020\u0028%\u0032d\u002c \u0025\u0032\u0064\u0029\u0020\u0025\u0071\n",_bcbag ,_gcbe ,_gbaa ,_ddbaab ,_fabf (_beab .merge ().text (),50));};_gebda .putComposite (_bcbag ,_gcbe ,_beab ,_bbdcd ); +};};return &_gebda ;};func (_bggd *textTable )compositeColCorridors ()map[int ][]float64 {_gadg :=make (map[int ][]float64 ,_bggd ._fccgee );if _geff {_ed .Log .Info ("\u0063\u006f\u006d\u0070o\u0073\u0069\u0074\u0065\u0043\u006f\u006c\u0043\u006f\u0072r\u0069d\u006f\u0072\u0073\u003a\u0020\u0077\u003d%\u0064\u0020",_bggd ._fccgee ); +};for _baggb :=0;_baggb < _bggd ._fccgee ;_baggb ++{_gadg [_baggb ]=nil ;};return _gadg ;};func _gbcag (_bbeb []*textLine ,_gade string ,_defef []*list )*list {return &list {_ggbee :_bbeb ,_feec :_gade ,_gbcab :_defef };};func _bbfe (_fccf structElement )[]structElement {_gedf :=[]structElement {}; +for _ ,_cedag :=range _fccf ._ddcfe {for _ ,_agefb :=range _cedag ._ddcfe {for _ ,_abceg :=range _agefb ._ddcfe {if _abceg ._gacb =="\u004c"{_gedf =append (_gedf ,_abceg );};};};};return _gedf ;};type lists []*list ;func _fbfab (_affgb _gb .PdfColorspace ,_aacg _gb .PdfColor )_eb .Color {if _affgb ==nil ||_aacg ==nil {return _eb .Black ; +};_ceab ,_ebgdc :=_affgb .ColorToRGB (_aacg );if _ebgdc !=nil {_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006fu\u006c\u0064\u0020no\u0074\u0020\u0063\u006f\u006e\u0076e\u0072\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0025\u0076\u0020\u0028\u0025\u0076)\u0020\u0074\u006f\u0020\u0052\u0047\u0042\u003a \u0025\u0073",_aacg ,_affgb ,_ebgdc ); +return _eb .Black ;};_gfdd ,_bgdc :=_ceab .(*_gb .PdfColorDeviceRGB );if !_bgdc {_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0065\u0064 \u0063\u006f\u006c\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0052\u0047\u0042\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0076",_ceab ); +return _eb .Black ;};return _eb .NRGBA {R :uint8 (_gfdd .R ()*255),G :uint8 (_gfdd .G ()*255),B :uint8 (_gfdd .B ()*255),A :uint8 (255)};};func (_cfbag *textPara )writeText (_fcef _a .Writer ){if _cfbag ._bedfe ==nil {_cfbag .writeCellText (_fcef );return ; +};for _gfgfa :=0;_gfgfa < _cfbag ._bedfe ._dege ;_gfgfa ++{for _affb :=0;_affb < _cfbag ._bedfe ._fccgee ;_affb ++{_facg :=_cfbag ._bedfe .get (_affb ,_gfgfa );if _facg ==nil {_fcef .Write ([]byte ("\u0009"));}else {_facg .writeCellText (_fcef );};_fcef .Write ([]byte ("\u0020")); +};if _gfgfa < _cfbag ._bedfe ._dege -1{_fcef .Write ([]byte ("\u000a"));};};};func (_dec compositeCell )split (_gebec ,_fbeg []float64 )*textTable {_gggf :=len (_gebec )+1;_ccfec :=len (_fbeg )+1;if _geff {_ed .Log .Info ("\u0063\u006f\u006d\u0070\u006f\u0073\u0069t\u0065\u0043\u0065l\u006c\u002e\u0073\u0070l\u0069\u0074\u003a\u0020\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u000a\u0009\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u003d\u0025\u0073\u000a"+"\u0009\u0072\u006f\u0077\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072\u0073=\u0025\u0036\u002e\u0032\u0066\u000a\t\u0063\u006f\u006c\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072\u0073\u003d%\u0036\u002e\u0032\u0066",_ccfec ,_gggf ,_dec ,_gebec ,_fbeg ); +_cfe .Printf ("\u0020\u0020\u0020\u0020\u0025\u0064\u0020\u0070\u0061\u0072\u0061\u0073\u000a",len (_dec .paraList ));for _afea ,_gdbc :=range _dec .paraList {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_afea ,_gdbc .String ());};_cfe .Printf ("\u0020\u0020\u0020\u0020\u0025\u0064\u0020\u006c\u0069\u006e\u0065\u0073\u000a",len (_dec .lines ())); +for _fddad ,_ffac :=range _dec .lines (){_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_fddad ,_ffac );};};_gebec =_bcaef (_gebec ,_dec .Ury ,_dec .Lly );_fbeg =_bcaef (_fbeg ,_dec .Llx ,_dec .Urx );_cgfga :=make (map[uint64 ]*textPara ,_ccfec *_gggf ); +_afaca :=textTable {_fccgee :_ccfec ,_dege :_gggf ,_adda :_cgfga };_aaae :=_dec .paraList ;_d .Slice (_aaae ,func (_fcgba ,_fedad int )bool {_begg ,_adabf :=_aaae [_fcgba ],_aaae [_fedad ];_ggffg ,_cgbec :=_begg .Lly ,_adabf .Lly ;if _ggffg !=_cgbec {return _ggffg < _cgbec ; +};return _begg .Llx < _adabf .Llx ;});_fded :=make (map[uint64 ]_gb .PdfRectangle ,_ccfec *_gggf );for _fcfb ,_gdbce :=range _gebec [1:]{_efabf :=_gebec [_fcfb ];for _aedcb ,_efaf :=range _fbeg [1:]{_gfga :=_fbeg [_aedcb ];_fded [_aafb (_aedcb ,_fcfb )]=_gb .PdfRectangle {Llx :_gfga ,Urx :_efaf ,Lly :_gdbce ,Ury :_efabf }; +};};if _geff {_ed .Log .Info ("\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u0043\u0065l\u006c\u002e\u0073\u0070\u006c\u0069\u0074\u003a\u0020\u0072e\u0063\u0074\u0073");_cfe .Printf ("\u0020\u0020\u0020\u0020");for _ceefc :=0;_ceefc < _ccfec ; +_ceefc ++{_cfe .Printf ("\u0025\u0033\u0030\u0064\u002c\u0020",_ceefc );};_cfe .Println ();for _cbced :=0;_cbced < _gggf ;_cbced ++{_cfe .Printf ("\u0020\u0020\u0025\u0032\u0064\u003a",_cbced );for _fcee :=0;_fcee < _ccfec ;_fcee ++{_cfe .Printf ("\u00256\u002e\u0032\u0066\u002c\u0020",_fded [_aafb (_fcee ,_cbced )]); +};_cfe .Println ();};};_afcb :=func (_ccae *textLine )(int ,int ){for _effd :=0;_effd < _gggf ;_effd ++{for _dedg :=0;_dedg < _ccfec ;_dedg ++{if _egcd (_fded [_aafb (_dedg ,_effd )],_ccae .PdfRectangle ){return _dedg ,_effd ;};};};return -1,-1;};_ccfb :=make (map[uint64 ][]*textLine ,_ccfec *_gggf ); +for _ ,_aafg :=range _aaae .lines (){_dfacg ,_efbg :=_afcb (_aafg );if _dfacg < 0{continue ;};_ccfb [_aafb (_dfacg ,_efbg )]=append (_ccfb [_aafb (_dfacg ,_efbg )],_aafg );};for _fgga :=0;_fgga < len (_gebec )-1;_fgga ++{_cdda :=_gebec [_fgga ];_adgg :=_gebec [_fgga +1]; +for _bggc :=0;_bggc < len (_fbeg )-1;_bggc ++{_dfcb :=_fbeg [_bggc ];_fdgce :=_fbeg [_bggc +1];_cbage :=_gb .PdfRectangle {Llx :_dfcb ,Urx :_fdgce ,Lly :_adgg ,Ury :_cdda };_adce :=_ccfb [_aafb (_bggc ,_fgga )];if len (_adce )==0{continue ;};_egbbb :=_daae (_cbage ,_adce ); +_afaca .put (_bggc ,_fgga ,_egbbb );};};return &_afaca ;};func (_dddbc rulingList )comp (_bafg ,_efbga int )bool {_gdcab ,_egge :=_dddbc [_bafg ],_dddbc [_efbga ];_bccccg ,_fgba :=_gdcab ._cffe ,_egge ._cffe ;if _bccccg !=_fgba {return _bccccg > _fgba ; +};if _bccccg ==_eefaf {return false ;};_gfad :=func (_cdga bool )bool {if _bccccg ==_bdfd {return _cdga ;};return !_cdga ;};_gaeec ,_ebgdg :=_gdcab ._abfg ,_egge ._abfg ;if _gaeec !=_ebgdg {return _gfad (_gaeec > _ebgdg );};_gaeec ,_ebgdg =_gdcab ._daag ,_egge ._daag ; +if _gaeec !=_ebgdg {return _gfad (_gaeec < _ebgdg );};return _gfad (_gdcab ._fcff < _egge ._fcff );};func _fggg (_fbged _gb .PdfRectangle ,_begd ,_gfgcb ,_beaa ,_ffdg *ruling )gridTile {_cegeg :=_fbged .Llx ;_efgf :=_fbged .Urx ;_bcdc :=_fbged .Lly ;_abda :=_fbged .Ury ; +return gridTile {PdfRectangle :_fbged ,_bdcfac :_begd !=nil &&_begd .encloses (_bcdc ,_abda ),_babe :_gfgcb !=nil &&_gfgcb .encloses (_bcdc ,_abda ),_debb :_beaa !=nil &&_beaa .encloses (_cegeg ,_efgf ),_cccb :_ffdg !=nil &&_ffdg .encloses (_cegeg ,_efgf )}; +}; + +// ToTextMark returns the public view of `tm`. +func (_cfdga *textMark )ToTextMark ()TextMark {return TextMark {Text :_cfdga ._ceca ,Original :_cfdga ._fbgee ,BBox :_cfdga ._aagcg ,Font :_cfdga ._gcfc ,FontSize :_cfdga ._gded ,FillColor :_cfdga ._egea ,StrokeColor :_cfdga ._cdfbb ,Orientation :_cfdga ._cggbc ,DirectObject :_cfdga ._dgebc ,ObjString :_cfdga ._bfdcd ,Tw :_cfdga .Tw ,Th :_cfdga .Th ,Tc :_cfdga ._ggaf ,Index :_cfdga ._gegcc }; +};func (_gfggg lineRuling )xMean ()float64 {return 0.5*(_gfggg ._efffg .X +_gfggg ._agae .X )};func _edde (_aecde []int )[]int {_fedeb :=make ([]int ,len (_aecde ));for _cgdb ,_cfecf :=range _aecde {_fedeb [len (_aecde )-1-_cgdb ]=_cfecf ;};return _fedeb ; +};func (_bfggg rulingList )blocks (_fcbc ,_ffea *ruling )bool {if _fcbc ._daag > _ffea ._fcff ||_ffea ._daag > _fcbc ._fcff {return false ;};_gdca :=_df .Max (_fcbc ._daag ,_ffea ._daag );_fdgbb :=_df .Min (_fcbc ._fcff ,_ffea ._fcff );if _fcbc ._abfg > _ffea ._abfg {_fcbc ,_ffea =_ffea ,_fcbc ; +};for _ ,_aedad :=range _bfggg {if _fcbc ._abfg <=_aedad ._abfg +_dbgc &&_aedad ._abfg <=_ffea ._abfg +_dbgc &&_aedad ._daag <=_fdgbb &&_gdca <=_aedad ._fcff {return true ;};};return false ;};func (_daf *shapesState )stroke (_ggec *[]pathSection ){_fbca :=pathSection {_ggfc :_daf ._babc ,Color :_daf ._geba .getStrokeColor ()}; +*_ggec =append (*_ggec ,_fbca );if _geaeg {_cfe .Printf ("\u0020 \u0020\u0020S\u0054\u0052\u004fK\u0045\u003a\u0020\u0025\u0064\u0020\u0073t\u0072\u006f\u006b\u0065\u0073\u0020s\u0073\u003d\u0025\u0073\u0020\u0063\u006f\u006c\u006f\u0072\u003d%\u002b\u0076\u0020\u0025\u0036\u002e\u0032\u0066\u000a",len (*_ggec ),_daf ,_daf ._geba .getStrokeColor (),_fbca .bbox ()); +if _faab {for _gbec ,_egcb :=range _daf ._babc {_cfe .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_gbec ,_egcb );if _gbec ==10{break ;};};};};}; + +// String returns a description of `tm`. +func (_cgba *textMark )String ()string {return _cfe .Sprintf ("\u0025\u002e\u0032f \u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066\u0020\u0022\u0025\u0073\u0022",_cgba .PdfRectangle ,_cgba ._gded ,_cgba ._ceca );};func _aabe (_bgdea string )string {_gbfb :=[]rune (_bgdea ); +return string (_gbfb [:len (_gbfb )-1])};type textResult struct{_gga PageText ;_bdef int ;_bee int ;};func (_bcbf rulingList )toGrids ()[]rulingList {if _geaeg {_ed .Log .Info ("t\u006f\u0047\u0072\u0069\u0064\u0073\u003a\u0020\u0025\u0073",_bcbf );};_feggd :=_bcbf .intersections (); +if _geaeg {_ed .Log .Info ("\u0074\u006f\u0047r\u0069\u0064\u0073\u003a \u0076\u0065\u0063\u0073\u003d\u0025\u0064 \u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074\u0073\u003d\u0025\u0064\u0020",len (_bcbf ),len (_feggd ));for _ ,_gbbdg :=range _gbcbg (_feggd ){_cfe .Printf ("\u00254\u0064\u003a\u0020\u0025\u002b\u0076\n",_gbbdg ,_feggd [_gbbdg ]); +};};_dfdcce :=make (map[int ]intSet ,len (_bcbf ));for _bggg :=range _bcbf {_gegbd :=_bcbf .connections (_feggd ,_bggg );if len (_gegbd )> 0{_dfdcce [_bggg ]=_gegbd ;};};if _geaeg {_ed .Log .Info ("t\u006fG\u0072\u0069\u0064\u0073\u003a\u0020\u0063\u006fn\u006e\u0065\u0063\u0074s=\u0025\u0064",len (_dfdcce )); +for _ ,_gfdc :=range _gbcbg (_dfdcce ){_cfe .Printf ("\u00254\u0064\u003a\u0020\u0025\u002b\u0076\n",_gfdc ,_dfdcce [_gfdc ]);};};_gbbcg :=_edfbf (len (_bcbf ),func (_aacab ,_eedf int )bool {_bcgfc ,_cedc :=len (_dfdcce [_aacab ]),len (_dfdcce [_eedf ]); +if _bcgfc !=_cedc {return _bcgfc > _cedc ;};return _bcbf .comp (_aacab ,_eedf );});if _geaeg {_ed .Log .Info ("t\u006fG\u0072\u0069\u0064\u0073\u003a\u0020\u006f\u0072d\u0065\u0072\u0069\u006eg=\u0025\u0076",_gbbcg );};_ebbg :=[][]int {{_gbbcg [0]}};_bgffg :for _ ,_fcae :=range _gbbcg [1:]{for _bgdee ,_eeaa :=range _ebbg {for _ ,_ccge :=range _eeaa {if _dfdcce [_ccge ].has (_fcae ){_ebbg [_bgdee ]=append (_eeaa ,_fcae ); +continue _bgffg ;};};};_ebbg =append (_ebbg ,[]int {_fcae });};if _geaeg {_ed .Log .Info ("\u0074o\u0047r\u0069\u0064\u0073\u003a\u0020i\u0067\u0072i\u0064\u0073\u003d\u0025\u0076",_ebbg );};_d .SliceStable (_ebbg ,func (_abfcc ,_addc int )bool {return len (_ebbg [_abfcc ])> len (_ebbg [_addc ])}); +for _ ,_cfcg :=range _ebbg {_d .Slice (_cfcg ,func (_ebaea ,_decb int )bool {return _bcbf .comp (_cfcg [_ebaea ],_cfcg [_decb ])});};_dffbc :=make ([]rulingList ,len (_ebbg ));for _efec ,_facb :=range _ebbg {_fdbbf :=make (rulingList ,len (_facb ));for _bcca ,_eadeb :=range _facb {_fdbbf [_bcca ]=_bcbf [_eadeb ]; +};_dffbc [_efec ]=_fdbbf ;};if _geaeg {_ed .Log .Info ("\u0074o\u0047r\u0069\u0064\u0073\u003a\u0020g\u0072\u0069d\u0073\u003d\u0025\u002b\u0076",_dffbc );};var _ebcb []rulingList ;for _ ,_cdag :=range _dffbc {if _fcfg ,_deafa :=_cdag .isActualGrid (); +_deafa {_cdag =_fcfg ;_cdag =_cdag .snapToGroups ();_ebcb =append (_ebcb ,_cdag );};};if _geaeg {_afbf ("t\u006fG\u0072\u0069\u0064\u0073\u003a\u0020\u0061\u0063t\u0075\u0061\u006c\u0047ri\u0064\u0073",_ebcb );_ed .Log .Info ("\u0074\u006f\u0047\u0072\u0069\u0064\u0073\u003a\u0020\u0067\u0072\u0069\u0064\u0073\u003d%\u0064 \u0061\u0063\u0074\u0075\u0061\u006c\u0047\u0072\u0069\u0064\u0073\u003d\u0025\u0064",len (_dffbc ),len (_ebcb )); +};return _ebcb ;}; + +// TextTable represents a table. +// Cells are ordered top-to-bottom, left-to-right. +// Cells[y] is the (0-offset) y'th row in the table. +// Cells[y][x] is the (0-offset) x'th column in the table. +type TextTable struct{_gb .PdfRectangle ;W ,H int ;Cells [][]TableCell ;};const _cegg =1.0/1000.0; + +// List returns all the list objects detected on the page. +// It detects all the bullet point Lists from a given pdf page and builds a slice of bullet list objects. +// A given bullet list object has a tree structure. +// Each bullet point list is extracted with the text content it contains and all the sub lists found under it as children in the tree. +// The rest content of the pdf is ignored and only text in the bullet point lists are extracted. +// The list extraction is done in two ways. +// 1. If the document is tagged then the lists are extracted using the tags provided in the document. +// 2. Otherwise the bullet lists are extracted from the raw text using regex matching. +// By default the document tag is used if available. +// However this can be disabled using `DisableDocumentTags` in the `Options` object. +// Sometimes disabling document tags option might give a better bullet list extraction if the document was tagged incorrectly. +// options := &Options{ +// DisableDocumentTags: false, // this means use document tag if available +// } +// ex, err := NewWithOptions(page, options) +// // handle error +// pageText, _, _, err := ex.ExtractPageText() +// // handle error +// lists := pageText.List() +// txt := lists.Text() +func (_aefb PageText )List ()lists {_ggbd :=!_aefb ._ege ._gdeb ;_adcd :=_aefb .getParagraphs ();_fdaf :=true ;if _aefb ._ddbd ==nil ||*_aefb ._ddbd ==nil {_fdaf =false ;};_bgebc :=_adcd .list ();if _fdaf &&_ggbd {_cfacf :=_gfeg (&_adcd );_ebcf :=&structTreeRoot {}; +_ebcf .parseStructTreeRoot (*_aefb ._ddbd );if _ebcf ._gafdd ==nil {_ed .Log .Debug ("\u004c\u0069\u0073\u0074\u003a\u0020\u0073t\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0064\u006f\u0065\u0073\u006e'\u0074\u0020\u0068\u0061\u0076e\u0020\u0061\u006e\u0079\u0020\u0063\u006f\u006e\u0074e\u006e\u0074\u002c\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0074\u0065\u0078\u0074\u0020\u006d\u0061\u0074\u0063\u0068\u0069\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u0020\u0069\u006e\u0073\u0074\u0065\u0061\u0064\u002e"); +return _bgebc ;};_bgebc =_ebcf .buildList (_cfacf ,_aefb ._ddeg );};return _bgebc ;};type gridTile struct{_gb .PdfRectangle ;_cccb ,_bdcfac ,_debb ,_babe bool ;};func (_afg *imageExtractContext )processOperand (_faa *_aad .ContentStreamOperation ,_bebe _aad .GraphicsState ,_cadf *_gb .PdfPageResources )error {if _faa .Operand =="\u0042\u0049"&&len (_faa .Params )==1{_gfc ,_aaa :=_faa .Params [0].(*_aad .ContentStreamInlineImage ); +if !_aaa {return nil ;};if _bfb ,_ecf :=_gg .GetBoolVal (_gfc .ImageMask );_ecf {if _bfb &&!_afg ._eag .IncludeInlineStencilMasks {return nil ;};};return _afg .extractInlineImage (_gfc ,_bebe ,_cadf );}else if _faa .Operand =="\u0044\u006f"&&len (_faa .Params )==1{_gff ,_geb :=_gg .GetName (_faa .Params [0]); +if !_geb {_ed .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0079\u0070\u0065");return _ccb ;};_ ,_ae :=_cadf .GetXObjectByName (*_gff );switch _ae {case _gb .XObjectTypeImage :return _afg .extractXObjectImage (_gff ,_bebe ,_cadf );case _gb .XObjectTypeForm :return _afg .extractFormImages (_gff ,_bebe ,_cadf ); +};}else if _afg ._cbg &&(_faa .Operand =="\u0073\u0063\u006e"||_faa .Operand =="\u0053\u0043\u004e")&&len (_faa .Params )==1{_ddb ,_gda :=_gg .GetName (_faa .Params [0]);if !_gda {_ed .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0079\u0070\u0065"); +return _ccb ;};_acd ,_gda :=_cadf .GetPatternByName (*_ddb );if !_gda {_ed .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0074\u0074\u0065\u0072n\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");return nil ;};if _acd .IsTiling (){_gc :=_acd .GetAsTilingPattern (); +_aca ,_bea :=_gc .GetContentStream ();if _bea !=nil {return _bea ;};_bea =_afg .extractContentStreamImages (string (_aca ),_gc .Resources );if _bea !=nil {return _bea ;};};}else if (_faa .Operand =="\u0063\u0073"||_faa .Operand =="\u0043\u0053")&&len (_faa .Params )>=1{_afg ._cbg =_faa .Params [0].String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"; +};return nil ;};func (_defa *wordBag )depthBand (_ebec ,_dfgcd float64 )[]int {if len (_defa ._gegc )==0{return nil ;};return _defa .depthRange (_defa .getDepthIdx (_ebec ),_defa .getDepthIdx (_dfgcd ));};func (_cgbd lineRuling )yMean ()float64 {return 0.5*(_cgbd ._efffg .Y +_cgbd ._agae .Y )}; +func (_egcfg rulingList )secMinMax ()(float64 ,float64 ){_ggca ,_edegf :=_egcfg [0]._daag ,_egcfg [0]._fcff ;for _ ,_ccea :=range _egcfg [1:]{if _ccea ._daag < _ggca {_ggca =_ccea ._daag ;};if _ccea ._fcff > _edegf {_edegf =_ccea ._fcff ;};};return _ggca ,_edegf ; +};func (_ffbb paraList )merge ()*textPara {_ed .Log .Trace ("\u006d\u0065\u0072\u0067\u0065:\u0020\u0070\u0061\u0072\u0061\u0073\u003d\u0025\u0064\u0020\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u0078\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d",len (_ffbb )); +if len (_ffbb )==0{return nil ;};_ffbb .sortReadingOrder ();_eeaba :=_ffbb [0].PdfRectangle ;_ddddc :=_ffbb [0]._abbe ;for _ ,_cefe :=range _ffbb [1:]{_eeaba =_fde (_eeaba ,_cefe .PdfRectangle );_ddddc =append (_ddddc ,_cefe ._abbe ...);};return _daae (_eeaba ,_ddddc ); +}; + +// String returns a description of `t`. +func (_bcabc *textTable )String ()string {return _cfe .Sprintf ("\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u0020\u0025\u0074",_bcabc ._fccgee ,_bcabc ._dege ,_bcabc ._baccf );};func _fbaff (_ggbgf *_gb .Image ,_aeega _eb .Color )_gf .Image {_dcbcb ,_ecff :=int (_ggbgf .Width ),int (_ggbgf .Height ); +_abdd :=_gf .NewRGBA (_gf .Rect (0,0,_dcbcb ,_ecff ));for _effa :=0;_effa < _ecff ;_effa ++{for _aabc :=0;_aabc < _dcbcb ;_aabc ++{_ddfa ,_beaec :=_ggbgf .ColorAt (_aabc ,_effa );if _beaec !=nil {_ed .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_aabc ,_effa ); +continue ;};_adcba ,_afeg ,_gfce ,_ :=_ddfa .RGBA ();var _bebbe _eb .Color ;if _adcba +_afeg +_gfce ==0{_bebbe =_aeega ;}else {_bebbe =_eb .Transparent ;};_abdd .Set (_aabc ,_effa ,_bebbe );};};return _abdd ;};func (_beca *textObject )setTextLeading (_ffef float64 ){if _beca ==nil {return ; +};_beca ._cbag ._fea =_ffef ;};func _cbd (_bfef []*textWord ,_cbagd float64 ,_eadd ,_cbef rulingList )*wordBag {_geaf :=_dfcc (_bfef [0],_cbagd ,_eadd ,_cbef );for _ ,_daa :=range _bfef [1:]{_gead :=_bedf (_daa ._cbfcee );_geaf ._gegc [_gead ]=append (_geaf ._gegc [_gead ],_daa ); +_geaf .PdfRectangle =_fde (_geaf .PdfRectangle ,_daa .PdfRectangle );};_geaf .sort ();return _geaf ;};func _aedg (_gfadg ,_cafdd int )int {if _gfadg > _cafdd {return _gfadg ;};return _cafdd ;};func (_gggc compositeCell )parasBBox ()(paraList ,_gb .PdfRectangle ){return _gggc .paraList ,_gggc .PdfRectangle ; +};type intSet map[int ]struct{};const (_cfd ="\u0045\u0052R\u004f\u0052\u003a\u0020\u0043\u0061\u006e\u0027\u0074\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065"; +_cad ="\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043a\u006e\u0027\u0074 g\u0065\u0074\u0020\u0066\u006f\u006et\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073\u002c\u0020\u0066\u006fn\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006fu\u006e\u0064"; +_ea ="\u0045\u0052\u0052O\u0052\u003a\u0020\u0043\u0061\u006e\u0027\u0074\u0020\u0067\u0065\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002c\u0020\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065";); +func (_fgcg *textMark )bbox ()_gb .PdfRectangle {return _fgcg .PdfRectangle };func _accb (_cefd *list )[]*textLine {for _ ,_cfefc :=range _cefd ._gbcab {switch _cfefc ._feec {case "\u004c\u0042\u006fd\u0079":if len (_cfefc ._ggbee )!=0{return _cfefc ._ggbee ; +};return _accb (_cfefc );case "\u0053\u0070\u0061\u006e":return _cfefc ._ggbee ;case "I\u006e\u006c\u0069\u006e\u0065\u0053\u0068\u0061\u0070\u0065":return _cfefc ._ggbee ;};};return nil ;};func _cafd (_cbgae ,_ggga int )int {if _cbgae < _ggga {return _cbgae ; +};return _ggga ;};func (_ccba rulingList )findPrimSec (_dbeff ,_dcdafe float64 )*ruling {for _ ,_afad :=range _ccba {if _cdgd (_afad ._abfg -_dbeff )&&_afad ._daag -_egaa <=_dcdafe &&_dcdafe <=_afad ._fcff +_egaa {return _afad ;};};return nil ;};func _gaba (_gbab ,_ddbaa ,_cbba float64 )rulingKind {if _gbab >=_cbba &&_dffe (_ddbaa ,_gbab ){return _bdfd ; +};if _ddbaa >=_cbba &&_dffe (_gbab ,_ddbaa ){return _gfafc ;};return _eefaf ;};func _cadba (_cbae ,_bcfec _gf .Image )_gf .Image {_eceb ,_gfee :=_bcfec .Bounds ().Size (),_cbae .Bounds ().Size ();_gegbb ,_eabbf :=_eceb .X ,_eceb .Y ;if _gfee .X > _gegbb {_gegbb =_gfee .X ; +};if _gfee .Y > _eabbf {_eabbf =_gfee .Y ;};_bacaa :=_gf .Rect (0,0,_gegbb ,_eabbf );if _eceb .X !=_gegbb ||_eceb .Y !=_eabbf {_fdcde :=_gf .NewRGBA (_bacaa );_dc .BiLinear .Scale (_fdcde ,_bacaa ,_cbae ,_bcfec .Bounds (),_dc .Over ,nil );_bcfec =_fdcde ; +};if _gfee .X !=_gegbb ||_gfee .Y !=_eabbf {_dgdg :=_gf .NewRGBA (_bacaa );_dc .BiLinear .Scale (_dgdg ,_bacaa ,_cbae ,_cbae .Bounds (),_dc .Over ,nil );_cbae =_dgdg ;};_gbcbd :=_gf .NewRGBA (_bacaa );_dc .DrawMask (_gbcbd ,_bacaa ,_cbae ,_gf .Point {},_bcfec ,_gf .Point {},_dc .Over ); +return _gbcbd ;};func (_ccaec *textTable )get (_ceae ,_ddeb int )*textPara {return _ccaec ._adda [_aafb (_ceae ,_ddeb )]};func (_feab *textWord )computeText ()string {_cgea :=make ([]string ,len (_feab ._fdgbc ));for _agcbdb ,_cgbb :=range _feab ._fdgbc {_cgea [_agcbdb ]=_cgbb ._ceca ; +};return _ag .Join (_cgea ,"");};func (_fcgd *shapesState )lastpointEstablished ()(_cc .Point ,bool ){if _fcgd ._dfff {return _fcgd ._bcb ,false ;};_bfcgd :=len (_fcgd ._babc );if _bfcgd > 0&&_fcgd ._babc [_bfcgd -1]._beac {return _fcgd ._babc [_bfcgd -1].last (),false ; +};return _cc .Point {},true ;};func (_eeg *textObject )nextLine (){_eeg .moveLP (0,-_eeg ._cbag ._fea )};func (_fbcb *PageText )computeViews (){_gbbb :=_fbcb .getParagraphs ();_gaaf :=new (_cf .Buffer );_gbbb .writeText (_gaaf );_fbcb ._ccbd =_gaaf .String (); +_fbcb ._afc =_gbbb .toTextMarks ();_fbcb ._ded =_gbbb .tables ();if _geff {_ed .Log .Info ("\u0063\u006f\u006dpu\u0074\u0065\u0056\u0069\u0065\u0077\u0073\u003a\u0020\u0074\u0061\u0062\u006c\u0065\u0073\u003d\u0025\u0064",len (_fbcb ._ded ));};};func (_fead *shapesState )cubicTo (_fdbdb ,_cbad ,_caee ,_aeed ,_bccc ,_bcfed float64 ){if _dgeg {_ed .Log .Info ("\u0063\u0075\u0062\u0069\u0063\u0054\u006f\u003a"); +};_fead .addPoint (_bccc ,_bcfed );};func (_bbe *textObject )renderText (_cfefe _gg .PdfObject ,_ccbc []byte ,_gbbd int )error {if _bbe ._efcbd {_ed .Log .Debug ("\u0072\u0065\u006e\u0064\u0065r\u0054\u0065\u0078\u0074\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0066\u006f\u006e\u0074\u002e\u0020\u004e\u006f\u0074\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u002e"); +return nil ;};_dgee :=_bbe .getCurrentFont ();_bcga :=_dgee .BytesToCharcodes (_ccbc );_ddec ,_beg ,_gge :=_dgee .CharcodesToStrings (_bcga );if _gge > 0{_ed .Log .Debug ("\u0072\u0065nd\u0065\u0072\u0054e\u0078\u0074\u003a\u0020num\u0043ha\u0072\u0073\u003d\u0025\u0064\u0020\u006eum\u004d\u0069\u0073\u0073\u0065\u0073\u003d%\u0064",_beg ,_gge ); +};_bbe ._cbag ._fdbd +=_beg ;_bbe ._cbag ._eec +=_gge ;_feff :=_bbe ._cbag ;_bfcf :=_feff ._agge ;_bae :=_feff ._fceg /100.0;_cffb :=_cegg ;if _dgee .Subtype ()=="\u0054\u0079\u0070e\u0033"{_cffb =1;};_gafd ,_ceb :=_dgee .GetRuneMetrics (' ');if !_ceb {_gafd ,_ceb =_dgee .GetCharMetrics (32); +};if !_ceb {_gafd ,_ =_gb .DefaultFont ().GetRuneMetrics (' ');};_gedb :=_gafd .Wx *_cffb ;_ed .Log .Trace ("\u0073p\u0061\u0063e\u0057\u0069\u0064t\u0068\u003d\u0025\u002e\u0032\u0066\u0020t\u0065\u0078\u0074\u003d\u0025\u0071 \u0066\u006f\u006e\u0074\u003d\u0025\u0073\u0020\u0066\u006f\u006et\u0053\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066",_gedb ,_ddec ,_dgee ,_bfcf ); +_egfa :=_cc .NewMatrix (_bfcf *_bae ,0,0,_bfcf ,0,_feff ._gce );if _geafa {_ed .Log .Info ("\u0072\u0065\u006e\u0064\u0065\u0072T\u0065\u0078\u0074\u003a\u0020\u0025\u0064\u0020\u0063\u006f\u0064\u0065\u0073=\u0025\u002b\u0076\u0020\u0074\u0065\u0078t\u0073\u003d\u0025\u0071",len (_bcga ),_bcga ,_ddec ); +};_ed .Log .Trace ("\u0072\u0065\u006e\u0064\u0065\u0072T\u0065\u0078\u0074\u003a\u0020\u0025\u0064\u0020\u0063\u006f\u0064\u0065\u0073=\u0025\u002b\u0076\u0020\u0072\u0075\u006ee\u0073\u003d\u0025\u0071",len (_bcga ),_bcga ,len (_ddec ));_afac :=_bbe .getFillColor (); +_aadg :=_bbe .getStrokeColor ();for _afdd ,_cga :=range _ddec {_bcd :=[]rune (_cga );if len (_bcd )==1&&_bcd [0]=='\x00'{continue ;};_abc :=_bcga [_afdd ];_bfcg :=_bbe ._ccg .CTM .Mult (_bbe ._ffb ).Mult (_egfa );_efa :=0.0;if len (_bcd )==1&&_bcd [0]==32{_efa =_feff ._bfa ; +};_baed ,_eebg :=_dgee .GetCharMetrics (_abc );if !_eebg {_ed .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u004e\u006f \u006d\u0065\u0074r\u0069\u0063\u0020\u0066\u006f\u0072\u0020\u0063\u006fde\u003d\u0025\u0064 \u0072\u003d0\u0078\u0025\u0030\u0034\u0078\u003d%\u002b\u0071 \u0025\u0073",_abc ,_bcd ,_bcd ,_dgee ); +return _cfe .Errorf ("\u006e\u006f\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073:\u0020f\u006f\u006e\u0074\u003d\u0025\u0073\u0020\u0063\u006f\u0064\u0065\u003d\u0025\u0064",_dgee .String (),_abc );};_dfde :=_cc .Point {X :_baed .Wx *_cffb ,Y :_baed .Wy *_cffb }; +_gdaf :=_cc .Point {X :(_dfde .X *_bfcf +_efa )*_bae };_dcb :=_cc .Point {X :(_dfde .X *_bfcf +_feff ._bfdf +_efa )*_bae };if _geafa {_ed .Log .Info ("\u0074\u0066\u0073\u003d\u0025\u002e\u0032\u0066\u0020\u0074\u0063\u003d\u0025\u002e\u0032f\u0020t\u0077\u003d\u0025\u002e\u0032\u0066\u0020\u0074\u0068\u003d\u0025\u002e\u0032\u0066",_bfcf ,_feff ._bfdf ,_feff ._bfa ,_bae ); +_ed .Log .Info ("\u0064x\u002c\u0064\u0079\u003d%\u002e\u0033\u0066\u0020\u00740\u003d%\u002e3\u0066\u0020\u0074\u003d\u0025\u002e\u0033f",_dfde ,_gdaf ,_dcb );};_cebc :=_gggb (_gdaf );_ebddc :=_gggb (_dcb );_eed :=_bbe ._ccg .CTM .Mult (_bbe ._ffb ).Mult (_cebc ); +if _abb {_ed .Log .Info ("e\u006e\u0064\u003a\u000a\tC\u0054M\u003d\u0025\u0073\u000a\u0009 \u0074\u006d\u003d\u0025\u0073\u000a"+"\u0009\u0020t\u0064\u003d\u0025s\u0020\u0078\u006c\u0061\u0074\u003d\u0025\u0073\u000a"+"\u0009t\u0064\u0030\u003d\u0025s\u000a\u0009\u0020\u0020\u2192 \u0025s\u0020x\u006c\u0061\u0074\u003d\u0025\u0073",_bbe ._ccg .CTM ,_bbe ._ffb ,_ebddc ,_bba (_bbe ._ccg .CTM .Mult (_bbe ._ffb ).Mult (_ebddc )),_cebc ,_eed ,_bba (_eed )); +};_bcfe ,_fgc :=_bbe .newTextMark (_dd .ExpandLigatures (_bcd ),_bfcg ,_bba (_eed ),_df .Abs (_gedb *_bfcg .ScalingFactorX ()),_dgee ,_bbe ._cbag ._bfdf ,_afac ,_aadg ,_cfefe ,_ddec ,_afdd ,_gbbd );if !_fgc {_ed .Log .Debug ("\u0054\u0065\u0078\u0074\u0020\u006d\u0061\u0072\u006b\u0020\u006f\u0075\u0074\u0073\u0069d\u0065 \u0070\u0061\u0067\u0065\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067"); +continue ;};if _dgee ==nil {_ed .Log .Debug ("\u0045R\u0052O\u0052\u003a\u0020\u004e\u006f\u0020\u0066\u006f\u006e\u0074\u002e");}else if _dgee .Encoder ()==nil {_ed .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020N\u006f\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006eg\u002e\u0020\u0066o\u006et\u003d\u0025\u0073",_dgee ); +}else {if _afb ,_dda :=_dgee .Encoder ().CharcodeToRune (_abc );_dda {_bcfe ._fbgee =string (_afb );};};_ed .Log .Trace ("i\u003d\u0025\u0064\u0020\u0063\u006fd\u0065\u003d\u0025\u0064\u0020\u006d\u0061\u0072\u006b=\u0025\u0073\u0020t\u0072m\u003d\u0025\u0073",_afdd ,_abc ,_bcfe ,_bfcg ); +_bbe ._gafa =append (_bbe ._gafa ,&_bcfe );_bbe ._ffb .Concat (_ebddc );};return nil ;};func (_baffb *textTable )compositeRowCorridors ()map[int ][]float64 {_cffef :=make (map[int ][]float64 ,_baffb ._dege );if _geff {_ed .Log .Info ("c\u006f\u006d\u0070\u006f\u0073\u0069t\u0065\u0052\u006f\u0077\u0043\u006f\u0072\u0072\u0069d\u006f\u0072\u0073:\u0020h\u003d\u0025\u0064",_baffb ._dege ); +};for _gdfd :=1;_gdfd < _baffb ._dege ;_gdfd ++{var _deafad []compositeCell ;for _faegb :=0;_faegb < _baffb ._fccgee ;_faegb ++{if _dgfa ,_gbcbe :=_baffb ._faeg [_aafb (_faegb ,_gdfd )];_gbcbe {_deafad =append (_deafad ,_dgfa );};};if len (_deafad )==0{continue ; +};_fdefb :=_cebdd (_deafad );_cffef [_gdfd ]=_fdefb ;if _geff {_cfe .Printf ("\u0020\u0020\u0020\u0025\u0032\u0064\u003a\u0020\u00256\u002e\u0032\u0066\u000a",_gdfd ,_fdefb );};};return _cffef ;}; + +// Text returns the extracted page text. +func (_fcg PageText )Text ()string {return _fcg ._ccbd };func (_cege gridTiling )log (_ccded string ){if !_aaga {return ;};_ed .Log .Info ("\u0074i\u006ci\u006e\u0067\u003a\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u0025\u0071",len (_cege ._edfg ),len (_cege ._abbf ),_ccded ); +_cfe .Printf ("\u0020\u0020\u0020l\u006c\u0078\u003d\u0025\u002e\u0032\u0066\u000a",_cege ._edfg );_cfe .Printf ("\u0020\u0020\u0020l\u006c\u0079\u003d\u0025\u002e\u0032\u0066\u000a",_cege ._abbf );for _cadbc ,_bdee :=range _cege ._abbf {_degc ,_gcbff :=_cege ._aaef [_bdee ]; +if !_gcbff {continue ;};_cfe .Printf ("%\u0034\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u000a",_cadbc ,_bdee );for _bcdf ,_decd :=range _cege ._edfg {_ebdg ,_cgcc :=_degc [_decd ];if !_cgcc {continue ;};_cfe .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_bcdf ,_ebdg .String ()); +};};}; + +// GetContentStreamOps returns the contentStreamOps field of `pt`. +func (_ede *PageText )GetContentStreamOps ()*_aad .ContentStreamOperations {return _ede ._dff };type imageExtractContext struct{_cdb []ImageMark ;_fbd int ;_ce int ;_ebf int ;_eae map[*_gg .PdfObjectStream ]*cachedImage ;_eag *ImageExtractOptions ;_cbg bool ; +};func _abee (_fddeg []_gg .PdfObject )(_caggf ,_bacee float64 ,_dcbd error ){if len (_fddeg )!=2{return 0,0,_cfe .Errorf ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0073\u003a \u0025\u0064",len (_fddeg )); +};_agbf ,_dcbd :=_gg .GetNumbersAsFloat (_fddeg );if _dcbd !=nil {return 0,0,_dcbd ;};return _agbf [0],_agbf [1],nil ;};func _edeeg (_fbcfe float64 ,_eccd int )int {if _eccd ==0{_eccd =1;};_bfec :=float64 (_eccd );return int (_df .Round (_fbcfe /_bfec )*_bfec ); +};func (_ebbbb *textObject )getCurrentFont ()*_gb .PdfFont {_cgfg :=_ebbbb ._cbag ._bdg ;if _cgfg ==nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u002e\u0020U\u0073\u0069\u006e\u0067\u0020d\u0065\u0066a\u0075\u006c\u0074\u002e"); +return _gb .DefaultFont ();};return _cgfg ;};func (_egcbg paraList )xNeighbours (_gadb float64 )map[*textPara ][]int {_geef :=make ([]event ,2*len (_egcbg ));if _gadb ==0{for _gafdbd ,_dcebb :=range _egcbg {_geef [2*_gafdbd ]=event {_dcebb .Llx ,true ,_gafdbd }; +_geef [2*_gafdbd +1]=event {_dcebb .Urx ,false ,_gafdbd };};}else {for _edagdf ,_cefca :=range _egcbg {_geef [2*_edagdf ]=event {_cefca .Llx -_gadb *_cefca .fontsize (),true ,_edagdf };_geef [2*_edagdf +1]=event {_cefca .Urx +_gadb *_cefca .fontsize (),false ,_edagdf }; +};};return _egcbg .eventNeighbours (_geef );};func (_ccbde *textObject )getFont (_aaec string )(*_gb .PdfFont ,error ){if _ccbde ._cgf ._ebb !=nil {_gbcd ,_acce :=_ccbde .getFontDict (_aaec );if _acce !=nil {_ed .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0067\u0065\u0074\u0046\u006f\u006e\u0074:\u0020n\u0061m\u0065=\u0025\u0073\u002c\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0073",_aaec ,_acce .Error ()); +return nil ,_acce ;};_ccbde ._cgf ._bda ++;_bfdb ,_fafc :=_ccbde ._cgf ._ebb [_gbcd .String ()];if _fafc {_bfdb ._dgca =_ccbde ._cgf ._bda ;return _bfdb ._cegb ,nil ;};};_deeda ,_deaa :=_ccbde .getFontDict (_aaec );if _deaa !=nil {return nil ,_deaa ;}; +_ffcd ,_deaa :=_ccbde .getFontDirect (_aaec );if _deaa !=nil {return nil ,_deaa ;};if _ccbde ._cgf ._ebb !=nil {_edd :=fontEntry {_ffcd ,_ccbde ._cgf ._bda };if len (_ccbde ._cgf ._ebb )>=_baee {var _gefc []string ;for _edbg :=range _ccbde ._cgf ._ebb {_gefc =append (_gefc ,_edbg ); +};_d .Slice (_gefc ,func (_dgf ,_adgc int )bool {return _ccbde ._cgf ._ebb [_gefc [_dgf ]]._dgca < _ccbde ._cgf ._ebb [_gefc [_adgc ]]._dgca ;});delete (_ccbde ._cgf ._ebb ,_gefc [0]);};_ccbde ._cgf ._ebb [_deeda .String ()]=_edd ;};return _ffcd ,nil ; +};func _adag (_aedfg []*textLine ,_befa string )string {var _cbfd _ag .Builder ;_egege :=0.0;for _dgeb ,_bcab :=range _aedfg {_bbce :=_bcab .text ();_afdf :=_bcab ._bdbg ;if _dgeb < len (_aedfg )-1{_egege =_aedfg [_dgeb +1]._bdbg ;}else {_egege =0.0;}; +_cbfd .WriteString (_befa );_cbfd .WriteString (_bbce );if _egege !=_afdf {_cbfd .WriteString ("\u000a");}else {_cbfd .WriteString ("\u0020");};};return _cbfd .String ();};func _acgef (_acae []*textMark ,_gbgd _gb .PdfRectangle ,_gegb rulingList ,_gdee []gridTiling ,_gdcb bool )paraList {_ed .Log .Trace ("\u006d\u0061\u006b\u0065\u0054\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u003a \u0025\u0064\u0020\u0065\u006c\u0065m\u0065\u006e\u0074\u0073\u0020\u0070\u0061\u0067\u0065\u0053\u0069\u007a\u0065=\u0025\u002e\u0032\u0066",len (_acae ),_gbgd ); +if len (_acae )==0{return nil ;};_cfbdb :=_fgege (_acae ,_gbgd );if len (_cfbdb )==0{return nil ;};_gegb .log ("\u006d\u0061\u006be\u0054\u0065\u0078\u0074\u0050\u0061\u0067\u0065");_ffge ,_fcdc :=_gegb .vertsHorzs ();_ddcb :=_cbd (_cfbdb ,_gbgd .Ury ,_ffge ,_fcdc ); +_agca :=_gaee (_ddcb ,_gbgd .Ury ,_ffge ,_fcdc );_agca =_ggff (_agca );_baca :=make (paraList ,0,len (_agca ));for _ ,_edbgg :=range _agca {_bfbg :=_edbgg .arrangeText ();if _bfbg !=nil {_baca =append (_baca ,_bfbg );};};if !_gdcb &&len (_baca )>=_dgea {_baca =_baca .extractTables (_gdee ); +};_baca .sortReadingOrder ();if !_gdcb {_baca .sortTopoOrder ();};_baca .log ("\u0073\u006f\u0072te\u0064\u0020\u0069\u006e\u0020\u0072\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u006f\u0072\u0064\u0065\u0072");return _baca ;};func _fgag (_bdae map[int ][]float64 )string {_ddbab :=_dgce (_bdae ); +_dbad :=make ([]string ,len (_bdae ));for _caebe ,_cceab :=range _ddbab {_dbad [_caebe ]=_cfe .Sprintf ("\u0025\u0064\u003a\u0020\u0025\u002e\u0032\u0066",_cceab ,_bdae [_cceab ]);};return _cfe .Sprintf ("\u007b\u0025\u0073\u007d",_ag .Join (_dbad ,"\u002c\u0020")); +};const (_gbeab markKind =iota ;_fdacf ;_cbcd ;_ecdcf ;);func _dabb (_cabe *wordBag ,_dfbg int )*textLine {_cafb :=_cabe .firstWord (_dfbg );_ecde :=textLine {PdfRectangle :_cafb .PdfRectangle ,_egbd :_cafb ._fgdbd ,_bdbg :_cafb ._cbfcee };_ecde .pullWord (_cabe ,_cafb ,_dfbg ); +return &_ecde ;}; + +// String returns a description of `l`. +func (_acfd *textLine )String ()string {return _cfe .Sprintf ("\u0025\u002e2\u0066\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066\u0020\"%\u0073\u0022",_acfd ._bdbg ,_acfd .PdfRectangle ,_acfd ._egbd ,_acfd .text ()); +};var _gdcf =TextMark {Text :"\u005b\u0058\u005d",Original :"\u0020",Meta :true ,FillColor :_eb .White ,StrokeColor :_eb .White };func (_aade paraList )eventNeighbours (_eege []event )map[*textPara ][]int {_d .Slice (_eege ,func (_cefg ,_ddgba int )bool {_cacf ,_edaa :=_eege [_cefg ],_eege [_ddgba ]; +_cfcag ,_efcf :=_cacf ._bggcc ,_edaa ._bggcc ;if _cfcag !=_efcf {return _cfcag < _efcf ;};if _cacf ._aagcb !=_edaa ._aagcb {return _cacf ._aagcb ;};return _cefg < _ddgba ;});_acgbc :=make (map[int ]intSet );_aabd :=make (intSet );for _ ,_gefcc :=range _eege {if _gefcc ._aagcb {_acgbc [_gefcc ._caccdd ]=make (intSet ); +for _faeca :=range _aabd {if _faeca !=_gefcc ._caccdd {_acgbc [_gefcc ._caccdd ].add (_faeca );_acgbc [_faeca ].add (_gefcc ._caccdd );};};_aabd .add (_gefcc ._caccdd );}else {_aabd .del (_gefcc ._caccdd );};};_bdbb :=map[*textPara ][]int {};for _edgdc ,_dddba :=range _acgbc {_ebgg :=_aade [_edgdc ]; +if len (_dddba )==0{_bdbb [_ebgg ]=nil ;continue ;};_fbgb :=make ([]int ,len (_dddba ));_acbcc :=0;for _bdbgf :=range _dddba {_fbgb [_acbcc ]=_bdbgf ;_acbcc ++;};_bdbb [_ebgg ]=_fbgb ;};return _bdbb ;};func (_gfbe *subpath )makeRectRuling (_bdaga _eb .Color )(*ruling ,bool ){if _afbec {_ed .Log .Info ("\u006d\u0061\u006beR\u0065\u0063\u0074\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0070\u0061\u0074\u0068\u003d\u0025\u0076",_gfbe ); +};_cfefd :=_gfbe ._ccgf [:4];_abffc :=make (map[int ]rulingKind ,len (_cfefd ));for _dcea ,_gdccg :=range _cfefd {_fadbg :=_gfbe ._ccgf [(_dcea +1)%4];_abffc [_dcea ]=_dbfg (_gdccg ,_fadbg );if _afbec {_cfe .Printf ("\u0025\u0034\u0064: \u0025\u0073\u0020\u003d\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u002d\u0020\u0025\u0036\u002e\u0032\u0066",_dcea ,_abffc [_dcea ],_gdccg ,_fadbg ); +};};if _afbec {_cfe .Printf ("\u0020\u0020\u0020\u006b\u0069\u006e\u0064\u0073\u003d\u0025\u002b\u0076\u000a",_abffc );};var _fgdb ,_gdeda []int ;for _eedg ,_bfea :=range _abffc {switch _bfea {case _bdfd :_gdeda =append (_gdeda ,_eedg );case _gfafc :_fgdb =append (_fgdb ,_eedg ); +};};if _afbec {_cfe .Printf ("\u0020\u0020 \u0068\u006f\u0072z\u0073\u003d\u0025\u0064\u0020\u0025\u002b\u0076\u000a",len (_gdeda ),_gdeda );_cfe .Printf ("\u0020\u0020 \u0076\u0065\u0072t\u0073\u003d\u0025\u0064\u0020\u0025\u002b\u0076\u000a",len (_fgdb ),_fgdb ); +};_dfcg :=(len (_gdeda )==2&&len (_fgdb )==2)||(len (_gdeda )==2&&len (_fgdb )==0&&_ggbdb (_cfefd [_gdeda [0]],_cfefd [_gdeda [1]]))||(len (_fgdb )==2&&len (_gdeda )==0&&_fdedf (_cfefd [_fgdb [0]],_cfefd [_fgdb [1]]));if _afbec {_cfe .Printf (" \u0020\u0020\u0068\u006f\u0072\u007as\u003d\u0025\u0064\u0020\u0076\u0065\u0072\u0074\u0073=\u0025\u0064\u0020o\u006b=\u0025\u0074\u000a",len (_gdeda ),len (_fgdb ),_dfcg ); +};if !_dfcg {if _afbec {_ed .Log .Error ("\u0021!\u006d\u0061\u006b\u0065R\u0065\u0063\u0074\u0052\u0075l\u0069n\u0067:\u0020\u0070\u0061\u0074\u0068\u003d\u0025v",_gfbe );_cfe .Printf (" \u0020\u0020\u0068\u006f\u0072\u007as\u003d\u0025\u0064\u0020\u0076\u0065\u0072\u0074\u0073=\u0025\u0064\u0020o\u006b=\u0025\u0074\u000a",len (_gdeda ),len (_fgdb ),_dfcg ); +};return &ruling {},false ;};if len (_fgdb )==0{for _gbac ,_cfece :=range _abffc {if _cfece !=_bdfd {_fgdb =append (_fgdb ,_gbac );};};};if len (_gdeda )==0{for _cecg ,_fgbdd :=range _abffc {if _fgbdd !=_gfafc {_gdeda =append (_gdeda ,_cecg );};};};if _afbec {_ed .Log .Info ("\u006da\u006b\u0065R\u0065\u0063\u0074\u0052u\u006c\u0069\u006eg\u003a\u0020\u0068\u006f\u0072\u007a\u0073\u003d\u0025d \u0076\u0065\u0072t\u0073\u003d%\u0064\u0020\u0070\u006f\u0069\u006et\u0073\u003d%\u0064\u000a"+"\u0009\u0020\u0068o\u0072\u007a\u0073\u003d\u0025\u002b\u0076\u000a"+"\u0009\u0020\u0076e\u0072\u0074\u0073\u003d\u0025\u002b\u0076\u000a"+"\t\u0070\u006f\u0069\u006e\u0074\u0073\u003d\u0025\u002b\u0076",len (_gdeda ),len (_fgdb ),len (_cfefd ),_gdeda ,_fgdb ,_cfefd ); +};var _befgb ,_deadg ,_dcbc ,_agdf _cc .Point ;if _cfefd [_gdeda [0]].Y > _cfefd [_gdeda [1]].Y {_dcbc ,_agdf =_cfefd [_gdeda [0]],_cfefd [_gdeda [1]];}else {_dcbc ,_agdf =_cfefd [_gdeda [1]],_cfefd [_gdeda [0]];};if _cfefd [_fgdb [0]].X > _cfefd [_fgdb [1]].X {_befgb ,_deadg =_cfefd [_fgdb [0]],_cfefd [_fgdb [1]]; +}else {_befgb ,_deadg =_cfefd [_fgdb [1]],_cfefd [_fgdb [0]];};_dddb :=_gb .PdfRectangle {Llx :_befgb .X ,Urx :_deadg .X ,Lly :_agdf .Y ,Ury :_dcbc .Y };if _dddb .Llx > _dddb .Urx {_dddb .Llx ,_dddb .Urx =_dddb .Urx ,_dddb .Llx ;};if _dddb .Lly > _dddb .Ury {_dddb .Lly ,_dddb .Ury =_dddb .Ury ,_dddb .Lly ; +};_dcdf :=rectRuling {PdfRectangle :_dddb ,_gcaad :_ebccd (_dddb ),Color :_bdaga };if _dcdf ._gcaad ==_eefaf {if _afbec {_ed .Log .Error ("\u006da\u006b\u0065\u0052\u0065\u0063\u0074\u0052\u0075\u006c\u0069\u006eg\u003a\u0020\u006b\u0069\u006e\u0064\u003d\u006e\u0069\u006c"); +};return nil ,false ;};_bgbeb ,_gcfb :=_dcdf .asRuling ();if !_gcfb {if _afbec {_ed .Log .Error ("\u006da\u006b\u0065\u0052\u0065c\u0074\u0052\u0075\u006c\u0069n\u0067:\u0020!\u0069\u0073\u0052\u0075\u006c\u0069\u006eg");};return nil ,false ;};if _geaeg {_cfe .Printf ("\u0020\u0020\u0020\u0072\u003d\u0025\u0073\u000a",_bgbeb .String ()); +};return _bgbeb ,true ;};func (_cbec rulingList )primaries ()[]float64 {_eeafd :=make (map[float64 ]struct{},len (_cbec ));for _ ,_cgag :=range _cbec {_eeafd [_cgag ._abfg ]=struct{}{};};_beeac :=make ([]float64 ,len (_eeafd ));_edda :=0;for _caec :=range _eeafd {_beeac [_edda ]=_caec ; +_edda ++;};_d .Float64s (_beeac );return _beeac ;}; + +// ExtractPageImages returns the image contents of the page extractor, including data +// and position, size information for each image. +// A set of options to control page image extraction can be passed in. The options +// parameter can be nil for the default options. By default, inline stencil masks +// are not extracted. +func (_ebg *Extractor )ExtractPageImages (options *ImageExtractOptions )(*PageImages ,error ){_becc :=&imageExtractContext {_eag :options };_afa :=_becc .extractContentStreamImages (_ebg ._ee ,_ebg ._bd );if _afa !=nil {return nil ,_afa ;};return &PageImages {Images :_becc ._cdb },nil ; +};func _bbfg (_ecdfc *textLine ,_dgegc []*textLine ,_gegf []float64 ,_agdb ,_bdcae float64 )[]*textLine {_gcde :=[]*textLine {};for _ ,_gcgd :=range _dgegc {if _gcgd ._bdbg >=_agdb {if _bdcae !=-1&&_gcgd ._bdbg < _bdcae {if _gcgd .text ()!=_ecdfc .text (){if _df .Round (_gcgd .Llx )< _df .Round (_ecdfc .Llx ){break ; +};_gcde =append (_gcde ,_gcgd );};}else if _bdcae ==-1{if _gcgd ._bdbg ==_ecdfc ._bdbg {if _gcgd .text ()!=_ecdfc .text (){_gcde =append (_gcde ,_gcgd );};continue ;};_agcdg :=_gecd (_ecdfc ,_dgegc ,_gegf );if _agcdg !=-1&&_gcgd ._bdbg <=_agcdg {_gcde =append (_gcde ,_gcgd ); +};};};};return _gcde ;}; + +// Append appends `mark` to the mark array. +func (_ccbdb *TextMarkArray )Append (mark TextMark ){_ccbdb ._ggcf =append (_ccbdb ._ggcf ,mark )};func _gegag (_aead []TextMark ,_dfef *int ,_eggc TextMark )[]TextMark {_eggc .Offset =*_dfef ;_aead =append (_aead ,_eggc );*_dfef +=len (_eggc .Text );return _aead ; +};func _ccefg (_gfgbb ,_egcc float64 )bool {return _df .Abs (_gfgbb -_egcc )<=_egaa }; + +// Marks returns the TextMark collection for a page. It represents all the text on the page. +func (_dfce PageText )Marks ()*TextMarkArray {return &TextMarkArray {_ggcf :_dfce ._afc }}; + +// Text gets the extracted text contained in `l`. +func (_fbfb *list )Text ()string {_cffc :=&_ag .Builder {};_eacf :="";_befg (_fbfb ,_cffc ,&_eacf );return _cffc .String ();};func (_bbac *textTable )toTextTable ()TextTable {if _geff {_ed .Log .Info ("t\u006fT\u0065\u0078\u0074\u0054\u0061\u0062\u006c\u0065:\u0020\u0025\u0064\u0020x \u0025\u0064",_bbac ._fccgee ,_bbac ._dege ); +};_ggffb :=make ([][]TableCell ,_bbac ._dege );for _beda :=0;_beda < _bbac ._dege ;_beda ++{_ggffb [_beda ]=make ([]TableCell ,_bbac ._fccgee );for _acbf :=0;_acbf < _bbac ._fccgee ;_acbf ++{_fbbb :=_bbac .get (_acbf ,_beda );if _fbbb ==nil {continue ; +};if _geff {_cfe .Printf ("\u0025\u0034\u0064 \u0025\u0032\u0064\u003a\u0020\u0025\u0073\u000a",_acbf ,_beda ,_fbbb );};_ggffb [_beda ][_acbf ].Text =_fbbb .text ();_adca :=0;_ggffb [_beda ][_acbf ].Marks ._ggcf =_fbbb .toTextMarks (&_adca );};};_fgcc :=TextTable {W :_bbac ._fccgee ,H :_bbac ._dege ,Cells :_ggffb }; +_fgcc .PdfRectangle =_bbac .bbox ();return _fgcc ;};func _dgdc (_fdff _gb .PdfRectangle ,_aaffb bounded )float64 {return _fdff .Ury -_aaffb .bbox ().Lly };func (_eeaf *stateStack )push (_abf *textState ){_gbeg :=*_abf ;*_eeaf =append (*_eeaf ,&_gbeg )}; +var _dfbag =_ca .MustCompile ("\u005e\u005c\u0073\u002a\u0028\u005c\u0064\u002b\u005c\u002e\u003f|\u005b\u0049\u0069\u0076\u005d\u002b\u0029\u005c\u0073\u002a\\\u0029\u003f\u0024");func _fgege (_gbegb []*textMark ,_efabfb _gb .PdfRectangle )[]*textWord {var _aeeddb []*textWord ; +var _gcccd *textWord ;if _gbbcc {_ed .Log .Info ("\u006d\u0061\u006beT\u0065\u0078\u0074\u0057\u006f\u0072\u0064\u0073\u003a\u0020\u0025\u0064\u0020\u006d\u0061\u0072\u006b\u0073",len (_gbegb ));};_bgaa :=func (){if _gcccd !=nil {_gddbb :=_gcccd .computeText (); +if !_edefac (_gddbb ){_gcccd ._bcfea =_gddbb ;_aeeddb =append (_aeeddb ,_gcccd );if _gbbcc {_ed .Log .Info ("\u0061\u0064\u0064Ne\u0077\u0057\u006f\u0072\u0064\u003a\u0020\u0025\u0064\u003a\u0020\u0077\u006f\u0072\u0064\u003d\u0025\u0073",len (_aeeddb )-1,_gcccd .String ()); +for _aacf ,_gdda :=range _gcccd ._fdgbc {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_aacf ,_gdda .String ());};};};_gcccd =nil ;};};for _ ,_bffd :=range _gbegb {if _dbfc &&_gcccd !=nil &&len (_gcccd ._fdgbc )> 0{_cebf :=_gcccd ._fdgbc [len (_gcccd ._fdgbc )-1]; +_bbfgd ,_gbebb :=_fgdf (_bffd ._ceca );_daefc ,_ffege :=_fgdf (_cebf ._ceca );if _gbebb &&!_ffege &&_cebf .inDiacriticArea (_bffd ){_gcccd .addDiacritic (_bbfgd );continue ;};if _ffege &&!_gbebb &&_bffd .inDiacriticArea (_cebf ){_gcccd ._fdgbc =_gcccd ._fdgbc [:len (_gcccd ._fdgbc )-1]; +_gcccd .appendMark (_bffd ,_efabfb );_gcccd .addDiacritic (_daefc );continue ;};};_gfba :=_edefac (_bffd ._ceca );if _gfba {_bgaa ();continue ;};if _gcccd ==nil &&!_gfba {_gcccd =_bbcee ([]*textMark {_bffd },_efabfb );continue ;};_accbf :=_gcccd ._fgdbd ; +_afgf :=_df .Abs (_dgdc (_efabfb ,_bffd )-_gcccd ._cbfcee )/_accbf ;_begb :=_daefa (_bffd ,_gcccd )/_accbf ;if _begb >=_cgc ||!(-_gbdc <=_begb &&_afgf <=_cedace ){_bgaa ();_gcccd =_bbcee ([]*textMark {_bffd },_efabfb );continue ;};_gcccd .appendMark (_bffd ,_efabfb ); +};_bgaa ();return _aeeddb ;};func (_abbbf *textTable )logComposite (_gdff string ){if !_geff {return ;};_ed .Log .Info ("\u007e~\u007eP\u0061\u0072\u0061\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u0025\u0073",_abbbf ._fccgee ,_abbbf ._dege ,_gdff );_cfe .Printf ("\u0025\u0035\u0073 \u007c",""); +for _bedfa :=0;_bedfa < _abbbf ._fccgee ;_bedfa ++{_cfe .Printf ("\u0025\u0033\u0064 \u007c",_bedfa );};_cfe .Println ("");_cfe .Printf ("\u0025\u0035\u0073 \u002b","");for _fged :=0;_fged < _abbbf ._fccgee ;_fged ++{_cfe .Printf ("\u0025\u0033\u0073 \u002b","\u002d\u002d\u002d"); +};_cfe .Println ("");for _bagd :=0;_bagd < _abbbf ._dege ;_bagd ++{_cfe .Printf ("\u0025\u0035\u0064 \u007c",_bagd );for _fabe :=0;_fabe < _abbbf ._fccgee ;_fabe ++{_eecd ,_ :=_abbbf ._faeg [_aafb (_fabe ,_bagd )].parasBBox ();_cfe .Printf ("\u0025\u0033\u0064 \u007c",len (_eecd )); +};_cfe .Println ("");};_ed .Log .Info ("\u007e~\u007eT\u0065\u0078\u0074\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u0025\u0073",_abbbf ._fccgee ,_abbbf ._dege ,_gdff );_cfe .Printf ("\u0025\u0035\u0073 \u007c","");for _cfgb :=0;_cfgb < _abbbf ._fccgee ; +_cfgb ++{_cfe .Printf ("\u0025\u0031\u0032\u0064\u0020\u007c",_cfgb );};_cfe .Println ("");_cfe .Printf ("\u0025\u0035\u0073 \u002b","");for _bgga :=0;_bgga < _abbbf ._fccgee ;_bgga ++{_cfe .Print ("\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d-\u002d\u002d\u002d\u002b"); +};_cfe .Println ("");for _ecgb :=0;_ecgb < _abbbf ._dege ;_ecgb ++{_cfe .Printf ("\u0025\u0035\u0064 \u007c",_ecgb );for _ggfe :=0;_ggfe < _abbbf ._fccgee ;_ggfe ++{_agdgf ,_ :=_abbbf ._faeg [_aafb (_ggfe ,_ecgb )].parasBBox ();_eceda :="";_adee :=_agdgf .merge (); +if _adee !=nil {_eceda =_adee .text ();};_eceda =_cfe .Sprintf ("\u0025\u0071",_fabf (_eceda ,12));_eceda =_eceda [1:len (_eceda )-1];_cfe .Printf ("\u0025\u0031\u0032\u0073\u0020\u007c",_eceda );};_cfe .Println ("");};};func _gbga (_becba []*textLine )map[float64 ][]*textLine {_d .Slice (_becba ,func (_deeb ,_bgcd int )bool {return _becba [_deeb ]._bdbg < _becba [_bgcd ]._bdbg }); +_dfbbb :=map[float64 ][]*textLine {};for _ ,_edfce :=range _becba {_bgced :=_dga (_edfce );_bgced =_df .Round (_bgced );_dfbbb [_bgced ]=append (_dfbbb [_bgced ],_edfce );};return _dfbbb ;};func (_gccad *textWord )bbox ()_gb .PdfRectangle {return _gccad .PdfRectangle }; +var (_edfcef =map[rune ]string {0x0060:"\u0300",0x02CB:"\u0300",0x0027:"\u0301",0x00B4:"\u0301",0x02B9:"\u0301",0x02CA:"\u0301",0x005E:"\u0302",0x02C6:"\u0302",0x007E:"\u0303",0x02DC:"\u0303",0x00AF:"\u0304",0x02C9:"\u0304",0x02D8:"\u0306",0x02D9:"\u0307",0x00A8:"\u0308",0x00B0:"\u030a",0x02DA:"\u030a",0x02BA:"\u030b",0x02DD:"\u030b",0x02C7:"\u030c",0x02C8:"\u030d",0x0022:"\u030e",0x02BB:"\u0312",0x02BC:"\u0313",0x0486:"\u0313",0x055A:"\u0313",0x02BD:"\u0314",0x0485:"\u0314",0x0559:"\u0314",0x02D4:"\u031d",0x02D5:"\u031e",0x02D6:"\u031f",0x02D7:"\u0320",0x02B2:"\u0321",0x00B8:"\u0327",0x02CC:"\u0329",0x02B7:"\u032b",0x02CD:"\u0331",0x005F:"\u0332",0x204E:"\u0359"}; +); // TextMark represents extracted text on a page with information regarding both textual content, // formatting (font and size) and positioning. @@ -204,10 +794,10 @@ Text string ; Original string ; // BBox is the bounding box of the text. -BBox _ce .PdfRectangle ; +BBox _gb .PdfRectangle ; // Font is the font the text was drawn with. -Font *_ce .PdfFont ; +Font *_gb .PdfFont ; // FontSize is the font size the text was drawn with. FontSize float64 ; @@ -225,220 +815,123 @@ Meta bool ; // FillColor is the fill color of the text. // The color is nil for spaces and line breaks (i.e. the Meta field is true). -FillColor _fg .Color ; +FillColor _eb .Color ; // StrokeColor is the stroke color of the text. // The color is nil for spaces and line breaks (i.e. the Meta field is true). -StrokeColor _fg .Color ; +StrokeColor _eb .Color ; // Orientation is the text orientation Orientation int ; // DirectObject is the underlying PdfObject (Text Object) that represents the visible texts. This is introduced to get // a simple access to the TextObject in case editing or replacment of some text is needed. E.g during redaction. -DirectObject _gb .PdfObject ; +DirectObject _gg .PdfObject ; // ObjString is a decoded string operand of a text-showing operator. It has the same value as `Text` attribute except // when many glyphs are represented with the same Text Object that contains multiple length string operand in which case // ObjString spans more than one character string that falls in different TextMark objects. -ObjString []string ;Tw float64 ;Th float64 ;Tc float64 ;Index int ;_ebd bool ;_afe *TextTable ;}; - -// ToText returns the page text as a single string. -// Deprecated: This function is deprecated and will be removed in a future major version. Please use -// Text() instead. -func (_fbeda PageText )ToText ()string {return _fbeda .Text ()};type shapesState struct{_aabgc _bc .Matrix ;_dag _bc .Matrix ;_abgb []*subpath ;_edee bool ;_ebfb _bc .Point ;_ecfc *textObject ;};func (_dbcc paraList )eventNeighbours (_cgcee []event )map[*textPara ][]int {_c .Slice (_cgcee ,func (_dfag ,_dafe int )bool {_edacf ,_adefe :=_cgcee [_dfag ],_cgcee [_dafe ]; -_fbfa ,_acef :=_edacf ._gcaf ,_adefe ._gcaf ;if _fbfa !=_acef {return _fbfa < _acef ;};if _edacf ._cgcbd !=_adefe ._cgcbd {return _edacf ._cgcbd ;};return _dfag < _dafe ;});_cgfd :=make (map[int ]intSet );_gcdf :=make (intSet );for _ ,_agdda :=range _cgcee {if _agdda ._cgcbd {_cgfd [_agdda ._bffcfb ]=make (intSet ); -for _cgcge :=range _gcdf {if _cgcge !=_agdda ._bffcfb {_cgfd [_agdda ._bffcfb ].add (_cgcge );_cgfd [_cgcge ].add (_agdda ._bffcfb );};};_gcdf .add (_agdda ._bffcfb );}else {_gcdf .del (_agdda ._bffcfb );};};_cfec :=map[*textPara ][]int {};for _fefb ,_caeb :=range _cgfd {_cdfgd :=_dbcc [_fefb ]; -if len (_caeb )==0{_cfec [_cdfgd ]=nil ;continue ;};_fegc :=make ([]int ,len (_caeb ));_cgdcg :=0;for _bdecg :=range _caeb {_fegc [_cgdcg ]=_bdecg ;_cgdcg ++;};_cfec [_cdfgd ]=_fegc ;};return _cfec ;}; +ObjString []string ;Tw float64 ;Th float64 ;Tc float64 ;Index int ;_fefe bool ;_egc *TextTable ;};func (_aba *textLine )markWordBoundaries (){_cceb :=_bacc *_aba ._egbd ;for _cgcb ,_ceef :=range _aba ._bfca [1:]{if _daefa (_ceef ,_aba ._bfca [_cgcb ])>=_cceb {_ceef ._cacca =true ; +};};};func (_ebge *wordBag )empty (_cccg int )bool {_ ,_fege :=_ebge ._gegc [_cccg ];return !_fege };func _dcebc (_cede string )bool {if _cb .RuneCountInString (_cede )< _ddcf {return false ;};_gacfg ,_deaf :=_cb .DecodeLastRuneInString (_cede );if _deaf <=0||!_ac .Is (_ac .Hyphen ,_gacfg ){return false ; +};_gacfg ,_deaf =_cb .DecodeLastRuneInString (_cede [:len (_cede )-_deaf ]);return _deaf > 0&&!_ac .IsSpace (_gacfg );};func (_gfgac *ruling )gridIntersecting (_bega *ruling )bool {return _ccefg (_gfgac ._daag ,_bega ._daag )&&_ccefg (_gfgac ._fcff ,_bega ._fcff ); +};func _egcd (_ddaa ,_caeeg _gb .PdfRectangle )bool {return _ddaa .Llx <=_caeeg .Llx &&_caeeg .Urx <=_ddaa .Urx &&_ddaa .Lly <=_caeeg .Lly &&_caeeg .Ury <=_ddaa .Ury ;};func _edfbf (_bgcg int ,_caad func (int ,int )bool )[]int {_fdea :=make ([]int ,_bgcg ); +for _eedb :=range _fdea {_fdea [_eedb ]=_eedb ;};_d .Slice (_fdea ,func (_eadc ,_dcfg int )bool {return _caad (_fdea [_eadc ],_fdea [_dcfg ])});return _fdea ;};func (_defc *wordBag )firstReadingIndex (_abgbb int )int {_ccgg :=_defc .firstWord (_abgbb )._fgdbd ; +_cagf :=float64 (_abgbb +1)*_edagd ;_dagc :=_cagf +_cfab *_ccgg ;_eeca :=_abgbb ;for _ ,_gefd :=range _defc .depthBand (_cagf ,_dagc ){if _fdd (_defc .firstWord (_gefd ),_defc .firstWord (_eeca ))< 0{_eeca =_gefd ;};};return _eeca ;}; -// PageFonts represents extracted fonts on a PDF page. -type PageFonts struct{Fonts []Font ;};func (_caed *textTable )log (_ecaga string ){if !_afcg {return ;};_ec .Log .Info ("~\u007e\u007e\u0020\u0025\u0073\u003a \u0025\u0064\u0020\u0078\u0020\u0025d\u0020\u0067\u0072\u0069\u0064\u003d\u0025t\u000a\u0020\u0020\u0020\u0020\u0020\u0020\u0025\u0036\u002e2\u0066",_ecaga ,_caed ._ecbf ,_caed ._dcfg ,_caed ._beaeg ,_caed .PdfRectangle ); -for _cgaa :=0;_cgaa < _caed ._dcfg ;_cgaa ++{for _edbb :=0;_edbb < _caed ._ecbf ;_edbb ++{_ccgdc :=_caed .get (_edbb ,_cgaa );if _ccgdc ==nil {continue ;};_ge .Printf ("%\u0034\u0064\u0020\u00252d\u003a \u0025\u0036\u002e\u0032\u0066 \u0025\u0071\u0020\u0025\u0064\u000a",_edbb ,_cgaa ,_ccgdc .PdfRectangle ,_adagc (_ccgdc .text (),50),_g .RuneCountInString (_ccgdc .text ())); -};};}; - -// List returns all the list objects detected on the page. -// It detects all the bullet point Lists from a given pdf page and builds a slice of bullet list objects. -// A given bullet list object has a tree structure. -// Each bullet point list is extracted with the text content it contains and all the sub lists found under it as children in the tree. -// The rest content of the pdf is ignored and only text in the bullet point lists are extracted. -// The list extraction is done in two ways. -// 1. If the document is tagged then the lists are extracted using the tags provided in the document. -// 2. Otherwise the bullet lists are extracted from the raw text using regex matching. -// By default the document tag is used if available. -// However this can be disabled using `DisableDocumentTags` in the `Options` object. -// Sometimes disabling document tags option might give a better bullet list extraction if the document was tagged incorrectly. -// options := &Options{ -// DisableDocumentTags: false, // this means use document tag if available -// } -// ex, err := NewWithOptions(page, options) -// // handle error -// pageText, _, _, err := ex.ExtractPageText() -// // handle error -// lists := pageText.List() -// txt := lists.Text() -func (_eaeg PageText )List ()lists {_edba :=!_eaeg ._ccg ._efab ;_gggb :=_eaeg .getParagraphs ();_gaef :=true ;if _eaeg ._bbb ==nil ||*_eaeg ._bbb ==nil {_gaef =false ;};_gcbcf :=_gggb .list ();if _gaef &&_edba {_bgg :=_dafd (&_gggb );_ffbf :=&structTreeRoot {}; -_ffbf .parseStructTreeRoot (*_eaeg ._bbb );if _ffbf ._dgbb ==nil {_ec .Log .Debug ("\u004c\u0069\u0073\u0074\u003a\u0020\u0073t\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0064\u006f\u0065\u0073\u006e'\u0074\u0020\u0068\u0061\u0076e\u0020\u0061\u006e\u0079\u0020\u0063\u006f\u006e\u0074e\u006e\u0074\u002c\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0074\u0065\u0078\u0074\u0020\u006d\u0061\u0074\u0063\u0068\u0069\u006e\u0067\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u0020\u0069\u006e\u0073\u0074\u0065\u0061\u0064\u002e"); -return _gcbcf ;};_gcbcf =_ffbf .buildList (_bgg ,_eaeg ._fefc );};return _gcbcf ;};func (_edca paraList )findTextTables ()[]*textTable {var _ffgdb []*textTable ;for _ ,_ggcc :=range _edca {if _ggcc .taken ()||_ggcc .Width ()==0{continue ;};_fgccd :=_ggcc .isAtom (); -if _fgccd ==nil {continue ;};_fgccd .growTable ();if _fgccd ._ecbf *_fgccd ._dcfg < _ddd {continue ;};_fgccd .markCells ();_fgccd .log ("\u0067\u0072\u006fw\u006e");_ffgdb =append (_ffgdb ,_fgccd );};return _ffgdb ;};type textObject struct{_bgcb *Extractor ; -_bacad *_ce .PdfPageResources ;_gbe _ag .GraphicsState ;_befa *textState ;_ebf *stateStack ;_eee _bc .Matrix ;_ecg _bc .Matrix ;_cfb []*textMark ;_efbb bool ;};func (_deba paraList )toTextMarks ()[]TextMark {_afcgb :=0;var _edff []TextMark ;for _eeacf ,_cgbd :=range _deba {if _cgbd ._bedf {continue ; -};_gacb :=_cgbd .toTextMarks (&_afcgb );_edff =append (_edff ,_gacb ...);if _eeacf !=len (_deba )-1{if _eeacg (_cgbd ,_deba [_eeacf +1]){_edff =_cacf (_edff ,&_afcgb ,"\u0020");}else {_edff =_cacf (_edff ,&_afcgb ,"\u000a");_edff =_cacf (_edff ,&_afcgb ,"\u000a"); -};};};_edff =_cacf (_edff ,&_afcgb ,"\u000a");_edff =_cacf (_edff ,&_afcgb ,"\u000a");return _edff ;};func (_abab *shapesState )drawRectangle (_dga ,_ebed ,_aada ,_age float64 ){if _cbag {_bbfbd :=_abab .devicePoint (_dga ,_ebed );_aga :=_abab .devicePoint (_dga +_aada ,_ebed +_age ); -_bafe :=_ce .PdfRectangle {Llx :_bbfbd .X ,Lly :_bbfbd .Y ,Urx :_aga .X ,Ury :_aga .Y };_ec .Log .Info ("d\u0072a\u0077\u0052\u0065\u0063\u0074\u0061\u006e\u0067l\u0065\u003a\u0020\u00256.\u0032\u0066",_bafe );};_abab .newSubPath ();_abab .moveTo (_dga ,_ebed ); -_abab .lineTo (_dga +_aada ,_ebed );_abab .lineTo (_dga +_aada ,_ebed +_age );_abab .lineTo (_dga ,_ebed +_age );_abab .closePath ();};func _dcgbg (_ebdd ,_badd float64 )string {_fgcc :=!_ffegg (_ebdd -_badd );if _fgcc {return "\u000a";};return "\u0020"; -};func (_fec *PageFonts )extractPageResourcesToFont (_ccc *_ce .PdfPageResources )error {_ad ,_cbg :=_gb .GetDict (_ccc .Font );if !_cbg {return _d .New (_be );};for _ ,_bbf :=range _ad .Keys (){var (_gef =true ;_bda []byte ;_gdb string ;);_bbe ,_gec :=_ccc .GetFontByName (_bbf ); -if !_gec {return _d .New (_cc );};_fcf ,_efb :=_ce .NewPdfFontFromPdfObject (_bbe );if _efb !=nil {return _efb ;};_agd :=_fcf .FontDescriptor ();_acg :=_fcf .FontDescriptor ().FontName .String ();_ea :=_fcf .Subtype ();if _efg (_fec .Fonts ,_acg ){continue ; -};if len (_fcf .ToUnicode ())==0{_gef =false ;};if _agd .FontFile !=nil {if _gcf ,_fda :=_gb .GetStream (_agd .FontFile );_fda {_bda ,_efb =_gb .DecodeStream (_gcf );if _efb !=nil {return _efb ;};_gdb =_acg +"\u002e\u0070\u0066\u0062";};}else if _agd .FontFile2 !=nil {if _faf ,_bf :=_gb .GetStream (_agd .FontFile2 ); -_bf {_bda ,_efb =_gb .DecodeStream (_faf );if _efb !=nil {return _efb ;};_gdb =_acg +"\u002e\u0074\u0074\u0066";};}else if _agd .FontFile3 !=nil {if _aae ,_fea :=_gb .GetStream (_agd .FontFile3 );_fea {_bda ,_efb =_gb .DecodeStream (_aae );if _efb !=nil {return _efb ; -};_gdb =_acg +"\u002e\u0063\u0066\u0066";};};if len (_gdb )< 1{_ec .Log .Debug (_cb );};_aab :=Font {FontName :_acg ,PdfFont :_fcf ,IsCID :_fcf .IsCID (),IsSimple :_fcf .IsSimple (),ToUnicode :_gef ,FontType :_ea ,FontData :_bda ,FontFileName :_gdb ,FontDescriptor :_agd }; -_fec .Fonts =append (_fec .Fonts ,_aab );};return nil ;};func (_dbae *wordBag )depthRange (_efea ,_fdcf int )[]int {var _gacf []int ;for _bgef :=range _dbae ._faba {if _efea <=_bgef &&_bgef <=_fdcf {_gacf =append (_gacf ,_bgef );};};if len (_gacf )==0{return nil ; -};_c .Ints (_gacf );return _gacf ;};type textMark struct{_ce .PdfRectangle ;_edge int ;_ecaa string ;_gdcgd string ;_bcdb *_ce .PdfFont ;_bfaca float64 ;_cgdb float64 ;_dadd _bc .Matrix ;_feea _bc .Point ;_aefef _ce .PdfRectangle ;_abgd _fg .Color ;_eedd _fg .Color ; -_bfade _gb .PdfObject ;_fcdc []string ;Tw float64 ;Th float64 ;_fefe int ;_beaa int ;};func (_egfb *subpath )removeDuplicates (){if len (_egfb ._gfefe )==0{return ;};_faca :=[]_bc .Point {_egfb ._gfefe [0]};for _ ,_dedg :=range _egfb ._gfefe [1:]{if !_dcbd (_dedg ,_faca [len (_faca )-1]){_faca =append (_faca ,_dedg ); -};};_egfb ._gfefe =_faca ;};func _gaagg (_faab []TextMark ,_gbaa *int )[]TextMark {_dffa :=_faab [len (_faab )-1];_bbdfe :=[]rune (_dffa .Text );if len (_bbdfe )==1{_faab =_faab [:len (_faab )-1];_gege :=_faab [len (_faab )-1];*_gbaa =_gege .Offset +len (_gege .Text ); -}else {_dagc :=_edcg (_dffa .Text );*_gbaa +=len (_dagc )-len (_dffa .Text );_dffa .Text =_dagc ;};return _faab ;};func (_faeb *textPara )text ()string {_agac :=new (_df .Buffer );_faeb .writeText (_agac );return _agac .String ();};func _dgd (_cbabd *_ag .ContentStreamOperation )(float64 ,error ){if len (_cbabd .Params )!=1{_fdbfe :=_d .New ("\u0069n\u0063\u006f\u0072\u0072e\u0063\u0074\u0020\u0070\u0061r\u0061m\u0065t\u0065\u0072\u0020\u0063\u006f\u0075\u006et"); -_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u0023\u0071\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020h\u0061\u0076\u0065\u0020\u0025\u0064\u0020i\u006e\u0070\u0075\u0074\u0020\u0070\u0061\u0072\u0061\u006d\u0073,\u0020\u0067\u006f\u0074\u0020\u0025\u0064\u0020\u0025\u002b\u0076",_cbabd .Operand ,1,len (_cbabd .Params ),_cbabd .Params ); -return 0.0,_fdbfe ;};return _gb .GetNumberAsFloat (_cbabd .Params [0]);};func _baba (_bded []*textLine ,_cafa string ,_efgac []*list )*list {return &list {_ggdb :_bded ,_ffcg :_cafa ,_gbab :_efgac };};func (_bbfa *imageExtractContext )extractFormImages (_gbgb *_gb .PdfObjectName ,_cefa _ag .GraphicsState ,_fbd *_ce .PdfPageResources )error {_gga ,_bab :=_fbd .GetXObjectFormByName (*_gbgb ); -if _bab !=nil {return _bab ;};if _gga ==nil {return nil ;};_dcb ,_bab :=_gga .GetContentStream ();if _bab !=nil {return _bab ;};_eea :=_gga .Resources ;if _eea ==nil {_eea =_fbd ;};_bab =_bbfa .extractContentStreamImages (string (_dcb ),_eea );if _bab !=nil {return _bab ; -};_bbfa ._agb ++;return nil ;};type imageExtractContext struct{_gbf []ImageMark ;_da int ;_fbc int ;_agb int ;_aabe map[*_gb .PdfObjectStream ]*cachedImage ;_cef *ImageExtractOptions ;_dedf bool ;};func _edcg (_dgfbg string )string {_bcdca :=[]rune (_dgfbg ); -return string (_bcdca [:len (_bcdca )-1])};func _fbga (_agfb _gb .PdfObject ,_faaga _fg .Color )(_ded .Image ,error ){_edda ,_bgdca :=_gb .GetStream (_agfb );if !_bgdca {return nil ,nil ;};_dabga ,_abagc :=_ce .NewXObjectImageFromStream (_edda );if _abagc !=nil {return nil ,_abagc ; -};_bfda ,_abagc :=_dabga .ToImage ();if _abagc !=nil {return nil ,_abagc ;};return _bcfde (_bfda ,_faaga ),nil ;}; +// String returns a description of `k`. +func (_cadb markKind )String ()string {_bcaf ,_ccfba :=_eebbd [_cadb ];if !_ccfba {return _cfe .Sprintf ("\u004e\u006f\u0074\u0020\u0061\u0020\u006d\u0061\u0072k\u003a\u0020\u0025\u0064",_cadb );};return _bcaf ;};func (_faggb rulingList )mergePrimary ()float64 {_fcac :=_faggb [0]._abfg ; +for _ ,_gdae :=range _faggb [1:]{_fcac +=_gdae ._abfg ;};return _fcac /float64 (len (_faggb ));};func (_cda *textObject )moveLP (_gdfa ,_gafc float64 ){_cda ._ddge .Concat (_cc .NewMatrix (1,0,0,1,_gdfa ,_gafc ));_cda ._ffb =_cda ._ddge ;};func _afbf (_agdc string ,_eacag []rulingList ){_ed .Log .Info ("\u0024\u0024 \u0025\u0064\u0020g\u0072\u0069\u0064\u0073\u0020\u002d\u0020\u0025\u0073",len (_eacag ),_agdc ); +for _gafdf ,_ddfga :=range _eacag {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_gafdf ,_ddfga .String ());};}; -// RangeOffset returns the TextMarks in `ma` that overlap text[start:end] in the extracted text. -// These are tm: `start` <= tm.Offset + len(tm.Text) && tm.Offset < `end` where -// `start` and `end` are offsets in the extracted text. -// NOTE: TextMarks can contain multiple characters. e.g. "ffi" for the ffi ligature so the first and -// last elements of the returned TextMarkArray may only partially overlap text[start:end]. -func (_bcg *TextMarkArray )RangeOffset (start ,end int )(*TextMarkArray ,error ){if _bcg ==nil {return nil ,_d .New ("\u006da\u003d\u003d\u006e\u0069\u006c");};if end < start {return nil ,_ge .Errorf ("\u0065\u006e\u0064\u0020\u003c\u0020\u0073\u0074\u0061\u0072\u0074\u002e\u0020\u0052\u0061n\u0067\u0065\u004f\u0066\u0066\u0073\u0065\u0074\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064\u002e\u0020\u0073\u0074\u0061\u0072t=\u0025\u0064\u0020\u0065\u006e\u0064\u003d\u0025\u0064\u0020",start ,end ); -};_gab :=len (_bcg ._dec );if _gab ==0{return _bcg ,nil ;};if start < _bcg ._dec [0].Offset {start =_bcg ._dec [0].Offset ;};if end > _bcg ._dec [_gab -1].Offset +1{end =_bcg ._dec [_gab -1].Offset +1;};_cgdca :=_c .Search (_gab ,func (_aafag int )bool {return _bcg ._dec [_aafag ].Offset +len (_bcg ._dec [_aafag ].Text )-1>=start }); -if !(0<=_cgdca &&_cgdca < _gab ){_accc :=_ge .Errorf ("\u004f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u002e\u0020\u0073\u0074\u0061\u0072\u0074\u003d%\u0064\u0020\u0069\u0053\u0074\u0061\u0072\u0074\u003d\u0025\u0064\u0020\u006c\u0065\u006e\u003d\u0025\u0064\u000a\u0009\u0066\u0069\u0072\u0073\u0074\u003d\u0025\u0076\u000a\u0009 \u006c\u0061\u0073\u0074\u003d%\u0076",start ,_cgdca ,_gab ,_bcg ._dec [0],_bcg ._dec [_gab -1]); -return nil ,_accc ;};_bgcf :=_c .Search (_gab ,func (_bedge int )bool {return _bcg ._dec [_bedge ].Offset > end -1});if !(0<=_bgcf &&_bgcf < _gab ){_gffd :=_ge .Errorf ("\u004f\u0075\u0074\u0020\u006f\u0066\u0020r\u0061\u006e\u0067e\u002e\u0020\u0065n\u0064\u003d%\u0064\u0020\u0069\u0045\u006e\u0064=\u0025d \u006c\u0065\u006e\u003d\u0025\u0064\u000a\u0009\u0066\u0069\u0072\u0073\u0074\u003d\u0025\u0076\u000a\u0009\u0020\u006c\u0061\u0073\u0074\u003d\u0025\u0076",end ,_bgcf ,_gab ,_bcg ._dec [0],_bcg ._dec [_gab -1]); -return nil ,_gffd ;};if _bgcf <=_cgdca {return nil ,_ge .Errorf ("\u0069\u0045\u006e\u0064\u0020\u003c=\u0020\u0069\u0053\u0074\u0061\u0072\u0074\u003a\u0020\u0073\u0074\u0061\u0072\u0074\u003d\u0025\u0064\u0020\u0065\u006ed\u003d\u0025\u0064\u0020\u0069\u0053\u0074\u0061\u0072\u0074\u003d\u0025\u0064\u0020i\u0045n\u0064\u003d\u0025\u0064",start ,end ,_cgdca ,_bgcf ); -};return &TextMarkArray {_dec :_bcg ._dec [_cgdca :_bgcf ]},nil ;};const _gdgb =10;func (_effb compositeCell )String ()string {_acdc :="";if len (_effb .paraList )> 0{_acdc =_adagc (_effb .paraList .merge ().text (),50);};return _ge .Sprintf ("\u0025\u0036\u002e\u0032\u0066\u0020\u0025\u0064\u0020\u0070\u0061\u0072a\u0073\u0020\u0025\u0071",_effb .PdfRectangle ,len (_effb .paraList ),_acdc ); -};func _eabf (_cdfcb *list ,_gddd *string )string {_dcde :=_gd .Split (_cdfcb ._dage ,"\u000a");_debc :=&_gd .Builder {};for _ ,_ccda :=range _dcde {if _ccda !=""{_debc .WriteString (*_gddd );_debc .WriteString (_ccda );_debc .WriteString ("\u000a");}; -};return _debc .String ();};func (_bdbd rulingList )vertsHorzs ()(rulingList ,rulingList ){var _afabe ,_gbac rulingList ;for _ ,_gcdg :=range _bdbd {switch _gcdg ._bfbc {case _ebdaf :_afabe =append (_afabe ,_gcdg );case _ecac :_gbac =append (_gbac ,_gcdg ); -};};return _afabe ,_gbac ;}; +// New returns an Extractor instance for extracting content from the input PDF page. +func New (page *_gb .PdfPage )(*Extractor ,error ){return NewWithOptions (page ,nil )};func (_ccef rulingList )augmentGrid ()(rulingList ,rulingList ){_ggeg ,_dcac :=_ccef .vertsHorzs ();if len (_ggeg )==0||len (_dcac )==0{return _ggeg ,_dcac ;};_efabcf ,_aded :=_ggeg ,_dcac ; +_bfee :=_ggeg .bbox ();_agcbd :=_dcac .bbox ();if _geaeg {_ed .Log .Info ("\u0061u\u0067\u006d\u0065\u006e\u0074\u0047\u0072\u0069\u0064\u003a\u0020b\u0062\u006f\u0078\u0056\u003d\u0025\u0036\u002e\u0032\u0066",_bfee );_ed .Log .Info ("\u0061u\u0067\u006d\u0065\u006e\u0074\u0047\u0072\u0069\u0064\u003a\u0020b\u0062\u006f\u0078\u0048\u003d\u0025\u0036\u002e\u0032\u0066",_agcbd ); +};var _gegage ,_faeegg ,_baec ,_becbag *ruling ;if _agcbd .Llx < _bfee .Llx -_egaa {_gegage =&ruling {_bbge :_ecdcf ,_cffe :_gfafc ,_abfg :_agcbd .Llx ,_daag :_bfee .Lly ,_fcff :_bfee .Ury };_ggeg =append (rulingList {_gegage },_ggeg ...);};if _agcbd .Urx > _bfee .Urx +_egaa {_faeegg =&ruling {_bbge :_ecdcf ,_cffe :_gfafc ,_abfg :_agcbd .Urx ,_daag :_bfee .Lly ,_fcff :_bfee .Ury }; +_ggeg =append (_ggeg ,_faeegg );};if _bfee .Lly < _agcbd .Lly -_egaa {_baec =&ruling {_bbge :_ecdcf ,_cffe :_bdfd ,_abfg :_bfee .Lly ,_daag :_agcbd .Llx ,_fcff :_agcbd .Urx };_dcac =append (rulingList {_baec },_dcac ...);};if _bfee .Ury > _agcbd .Ury +_egaa {_becbag =&ruling {_bbge :_ecdcf ,_cffe :_bdfd ,_abfg :_bfee .Ury ,_daag :_agcbd .Llx ,_fcff :_agcbd .Urx }; +_dcac =append (_dcac ,_becbag );};if len (_ggeg )+len (_dcac )==len (_ccef ){return _efabcf ,_aded ;};_cagg :=append (_ggeg ,_dcac ...);_ccef .log ("u\u006e\u0061\u0075\u0067\u006d\u0065\u006e\u0074\u0065\u0064");_cagg .log ("\u0061u\u0067\u006d\u0065\u006e\u0074\u0065d"); +return _ggeg ,_dcac ;};func _edefac (_deafac string )bool {for _ ,_dbed :=range _deafac {if !_ac .IsSpace (_dbed ){return false ;};};return true ;};func _ggbdb (_efed ,_befad _cc .Point )bool {_fadd :=_df .Abs (_efed .X -_befad .X );_ffae :=_df .Abs (_efed .Y -_befad .Y ); +return _dffe (_ffae ,_fadd );};func _dfcee (_ffbga ,_eaae ,_acgba ,_gaabf *textPara )*textTable {_bacd :=&textTable {_fccgee :2,_dege :2,_adda :make (map[uint64 ]*textPara ,4)};_bacd .put (0,0,_ffbga );_bacd .put (1,0,_eaae );_bacd .put (0,1,_acgba );_bacd .put (1,1,_gaabf ); +return _bacd ;};func (_bff *subpath )isQuadrilateral ()bool {if len (_bff ._ccgf )< 4||len (_bff ._ccgf )> 5{return false ;};if len (_bff ._ccgf )==5{_fgfdbc :=_bff ._ccgf [0];_fage :=_bff ._ccgf [4];if _fgfdbc .X !=_fage .X ||_fgfdbc .Y !=_fage .Y {return false ; +};};return true ;};func (_fcdgd *shapesState )addPoint (_ddbg ,_dbcc float64 ){_efbeb :=_fcdgd .establishSubpath ();_cgde :=_fcdgd .devicePoint (_ddbg ,_dbcc );if _efbeb ==nil {_fcdgd ._dfff =true ;_fcdgd ._bcb =_cgde ;}else {_efbeb .add (_cgde );};};func (_ccgee rulingList )snapToGroups ()rulingList {_ggfg ,_dccgb :=_ccgee .vertsHorzs (); +if len (_ggfg )> 0{_ggfg =_ggfg .snapToGroupsDirection ();};if len (_dccgb )> 0{_dccgb =_dccgb .snapToGroupsDirection ();};_ggdad :=append (_ggfg ,_dccgb ...);_ggdad .log ("\u0073\u006e\u0061p\u0054\u006f\u0047\u0072\u006f\u0075\u0070\u0073");return _ggdad ; +};func _bgc (_gbcb *_aad .ContentStreamOperation )(float64 ,error ){if len (_gbcb .Params )!=1{_ddg :=_c .New ("\u0069n\u0063\u006f\u0072\u0072e\u0063\u0074\u0020\u0070\u0061r\u0061m\u0065t\u0065\u0072\u0020\u0063\u006f\u0075\u006et");_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u0023\u0071\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020h\u0061\u0076\u0065\u0020\u0025\u0064\u0020i\u006e\u0070\u0075\u0074\u0020\u0070\u0061\u0072\u0061\u006d\u0073,\u0020\u0067\u006f\u0074\u0020\u0025\u0064\u0020\u0025\u002b\u0076",_gbcb .Operand ,1,len (_gbcb .Params ),_gbcb .Params ); +return 0.0,_ddg ;};return _gg .GetNumberAsFloat (_gbcb .Params [0]);};type structTreeRoot struct{_gafdd []structElement ;_bgee string ;};func (_gfa *subpath )add (_cffa ..._cc .Point ){_gfa ._ccgf =append (_gfa ._ccgf ,_cffa ...)};func (_aed *textObject )showTextAdjusted (_gcaf *_gg .PdfObjectArray ,_edfc int )error {_afge :=false ; +for _ ,_ceg :=range _gcaf .Elements (){switch _ceg .(type ){case *_gg .PdfObjectFloat ,*_gg .PdfObjectInteger :_dgb ,_aecc :=_gg .GetNumberAsFloat (_ceg );if _aecc !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0073\u0068\u006f\u0077\u0054\u0065\u0078t\u0041\u0064\u006a\u0075\u0073\u0074\u0065\u0064\u002e\u0020\u0042\u0061\u0064\u0020\u006e\u0075\u006d\u0065r\u0069\u0063\u0061\u006c\u0020a\u0072\u0067\u002e\u0020\u006f\u003d\u0025\u0073\u0020\u0061\u0072\u0067\u0073\u003d\u0025\u002b\u0076",_ceg ,_gcaf ); +return _aecc ;};_dfg ,_badb :=-_dgb *0.001*_aed ._cbag ._agge ,0.0;if _afge {_badb ,_dfg =_dfg ,_badb ;};_cbgg :=_gggb (_cc .Point {X :_dfg ,Y :_badb });_aed ._ffb .Concat (_cbgg );case *_gg .PdfObjectString :_ecda :=_gg .TraceToDirectObject (_ceg );_efb ,_cbed :=_gg .GetStringBytes (_ecda ); +if !_cbed {_ed .Log .Trace ("s\u0068\u006f\u0077\u0054\u0065\u0078\u0074\u0041\u0064j\u0075\u0073\u0074\u0065\u0064\u003a\u0020Ba\u0064\u0020\u0073\u0074r\u0069\u006e\u0067\u0020\u0061\u0072\u0067\u002e\u0020o=\u0025\u0073 \u0061\u0072\u0067\u0073\u003d\u0025\u002b\u0076",_ceg ,_gcaf ); +return _gg .ErrTypeError ;};_aed .renderText (_ecda ,_efb ,_edfc );default:_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0073\u0068\u006f\u0077\u0054\u0065\u0078\u0074A\u0064\u006a\u0075\u0073\u0074\u0065\u0064\u002e\u0020\u0055\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0028%T\u0029\u0020\u0061\u0072\u0067\u0073\u003d\u0025\u002b\u0076",_ceg ,_gcaf ); +return _gg .ErrTypeError ;};};return nil ;};func (_ffad *textObject )checkOp (_eeba *_aad .ContentStreamOperation ,_cggc int ,_dbc bool )(_dbga bool ,_dad error ){if _ffad ==nil {var _dfdc []_gg .PdfObject ;if _cggc > 0{_dfdc =_eeba .Params ;if len (_dfdc )> _cggc {_dfdc =_dfdc [:_cggc ]; +};};_ed .Log .Debug ("\u0025\u0023q \u006f\u0070\u0065r\u0061\u006e\u0064\u0020out\u0073id\u0065\u0020\u0074\u0065\u0078\u0074\u002e p\u0061\u0072\u0061\u006d\u0073\u003d\u0025+\u0076",_eeba .Operand ,_dfdc );};if _cggc >=0{if len (_eeba .Params )!=_cggc {if _dbc {_dad =_c .New ("\u0069n\u0063\u006f\u0072\u0072e\u0063\u0074\u0020\u0070\u0061r\u0061m\u0065t\u0065\u0072\u0020\u0063\u006f\u0075\u006et"); +};_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u0023\u0071\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020h\u0061\u0076\u0065\u0020\u0025\u0064\u0020i\u006e\u0070\u0075\u0074\u0020\u0070\u0061\u0072\u0061\u006d\u0073,\u0020\u0067\u006f\u0074\u0020\u0025\u0064\u0020\u0025\u002b\u0076",_eeba .Operand ,_cggc ,len (_eeba .Params ),_eeba .Params ); +return false ,_dad ;};};return true ,nil ;};func (_bcabd lineRuling )asRuling ()(*ruling ,bool ){_eadg :=ruling {_cffe :_bcabd ._ecee ,Color :_bcabd .Color ,_bbge :_fdacf };switch _bcabd ._ecee {case _gfafc :_eadg ._abfg =_bcabd .xMean ();_eadg ._daag =_df .Min (_bcabd ._efffg .Y ,_bcabd ._agae .Y ); +_eadg ._fcff =_df .Max (_bcabd ._efffg .Y ,_bcabd ._agae .Y );case _bdfd :_eadg ._abfg =_bcabd .yMean ();_eadg ._daag =_df .Min (_bcabd ._efffg .X ,_bcabd ._agae .X );_eadg ._fcff =_df .Max (_bcabd ._efffg .X ,_bcabd ._agae .X );default:_ed .Log .Error ("\u0062\u0061\u0064\u0020pr\u0069\u006d\u0061\u0072\u0079\u0020\u006b\u0069\u006e\u0064\u003d\u0025\u0064",_bcabd ._ecee ); +return nil ,false ;};return &_eadg ,true ;};func (_bbgc intSet )add (_afdc int ){_bbgc [_afdc ]=struct{}{}}; -// ExtractTextWithStats works like ExtractText but returns the number of characters in the output -// (`numChars`) and the number of characters that were not decoded (`numMisses`). -func (_ceef *Extractor )ExtractTextWithStats ()(_ddg string ,_cce int ,_fed int ,_dda error ){_fcb ,_cce ,_fed ,_dda :=_ceef .ExtractPageText ();if _dda !=nil {return "",_cce ,_fed ,_dda ;};return _fcb .Text (),_cce ,_fed ,nil ;}; +// PageText represents the layout of text on a device page. +type PageText struct{_bagf []*textMark ;_ccbd string ;_afc []TextMark ;_ded []TextTable ;_ebae _gb .PdfRectangle ;_eff []pathSection ;_efbe []pathSection ;_ddbd *_gg .PdfObject ;_ddeg _gg .PdfObject ;_dff *_aad .ContentStreamOperations ;_ege PageTextOptions ; +};type pathSection struct{_ggfc []*subpath ;_eb .Color ;};func (_ecbf paraList )llyOrdering ()[]int {_cgfa :=make ([]int ,len (_ecbf ));for _ebbcc :=range _ecbf {_cgfa [_ebbcc ]=_ebbcc ;};_d .SliceStable (_cgfa ,func (_afgg ,_adga int )bool {_bebab ,_dgbf :=_cgfa [_afgg ],_cgfa [_adga ]; +return _ecbf [_bebab ].Lly < _ecbf [_dgbf ].Lly ;});return _cgfa ;};func (_afgd *wordBag )removeWord (_ecga *textWord ,_fecg int ){_gedg :=_afgd ._gegc [_fecg ];_gedg =_abdc (_gedg ,_ecga );if len (_gedg )==0{delete (_afgd ._gegc ,_fecg );}else {_afgd ._gegc [_fecg ]=_gedg ; +};};func (_edacdf *ruling )equals (_fddeb *ruling )bool {return _edacdf ._cffe ==_fddeb ._cffe &&_ccefg (_edacdf ._abfg ,_fddeb ._abfg )&&_ccefg (_edacdf ._daag ,_fddeb ._daag )&&_ccefg (_edacdf ._fcff ,_fddeb ._fcff );};func (_bcfde *textTable )putComposite (_ecfcaa ,_ggfd int ,_abbef paraList ,_eagf _gb .PdfRectangle ){if len (_abbef )==0{_ed .Log .Error ("\u0074\u0065xt\u0054\u0061\u0062l\u0065\u0029\u0020\u0070utC\u006fmp\u006f\u0073\u0069\u0074\u0065\u003a\u0020em\u0070\u0074\u0079\u0020\u0070\u0061\u0072a\u0073"); +return ;};_efde :=compositeCell {PdfRectangle :_eagf ,paraList :_abbef };if _geff {_cfe .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0070\u0075\u0074\u0043\u006f\u006d\u0070o\u0073i\u0074\u0065\u0028\u0025\u0064\u002c\u0025\u0064\u0029\u003c\u002d\u0025\u0073\u000a",_ecfcaa ,_ggfd ,_efde .String ()); +};_efde .updateBBox ();_bcfde ._faeg [_aafb (_ecfcaa ,_ggfd )]=_efde ;};func (_eada *textObject )getStrokeColor ()_eb .Color {return _fbfab (_eada ._ccg .ColorspaceStroking ,_eada ._ccg .ColorStroking );};func (_daac paraList )addNeighbours (){_ecfad :=func (_ffeb []int ,_bbbc *textPara )([]*textPara ,[]*textPara ){_gdac :=make ([]*textPara ,0,len (_ffeb )-1); +_dgaa :=make ([]*textPara ,0,len (_ffeb )-1);for _ ,_cbbc :=range _ffeb {_gfadb :=_daac [_cbbc ];if _gfadb .Urx <=_bbbc .Llx {_gdac =append (_gdac ,_gfadb );}else if _gfadb .Llx >=_bbbc .Urx {_dgaa =append (_dgaa ,_gfadb );};};return _gdac ,_dgaa ;};_dcbed :=func (_bcdgdc []int ,_gagaa *textPara )([]*textPara ,[]*textPara ){_egaad :=make ([]*textPara ,0,len (_bcdgdc )-1); +_cbcef :=make ([]*textPara ,0,len (_bcdgdc )-1);for _ ,_cgace :=range _bcdgdc {_cfcff :=_daac [_cgace ];if _cfcff .Ury <=_gagaa .Lly {_cbcef =append (_cbcef ,_cfcff );}else if _cfcff .Lly >=_gagaa .Ury {_egaad =append (_egaad ,_cfcff );};};return _egaad ,_cbcef ; +};_fcce :=_daac .yNeighbours (_gbea );for _ ,_eccdd :=range _daac {_fbfaa :=_fcce [_eccdd ];if len (_fbfaa )==0{continue ;};_bgfb ,_becddb :=_ecfad (_fbfaa ,_eccdd );if len (_bgfb )==0&&len (_becddb )==0{continue ;};if len (_bgfb )> 0{_gcdgd :=_bgfb [0]; +for _ ,_dfdce :=range _bgfb [1:]{if _dfdce .Urx >=_gcdgd .Urx {_gcdgd =_dfdce ;};};for _ ,_efbcd :=range _bgfb {if _efbcd !=_gcdgd &&_efbcd .Urx > _gcdgd .Llx {_gcdgd =nil ;break ;};};if _gcdgd !=nil &&_ebgc (_eccdd .PdfRectangle ,_gcdgd .PdfRectangle ){_eccdd ._dgdb =_gcdgd ; +};};if len (_becddb )> 0{_bfegd :=_becddb [0];for _ ,_fcece :=range _becddb [1:]{if _fcece .Llx <=_bfegd .Llx {_bfegd =_fcece ;};};for _ ,_gedd :=range _becddb {if _gedd !=_bfegd &&_gedd .Llx < _bfegd .Urx {_bfegd =nil ;break ;};};if _bfegd !=nil &&_ebgc (_eccdd .PdfRectangle ,_bfegd .PdfRectangle ){_eccdd ._ccdg =_bfegd ; +};};};_fcce =_daac .xNeighbours (_agcd );for _ ,_cgdg :=range _daac {_ggdde :=_fcce [_cgdg ];if len (_ggdde )==0{continue ;};_bced ,_gfgfc :=_dcbed (_ggdde ,_cgdg );if len (_bced )==0&&len (_gfgfc )==0{continue ;};if len (_gfgfc )> 0{_eace :=_gfgfc [0]; +for _ ,_bbgee :=range _gfgfc [1:]{if _bbgee .Ury >=_eace .Ury {_eace =_bbgee ;};};for _ ,_bdefc :=range _gfgfc {if _bdefc !=_eace &&_bdefc .Ury > _eace .Lly {_eace =nil ;break ;};};if _eace !=nil &&_cdcd (_cgdg .PdfRectangle ,_eace .PdfRectangle ){_cgdg ._cgfe =_eace ; +};};if len (_bced )> 0{_abdff :=_bced [0];for _ ,_gcggf :=range _bced [1:]{if _gcggf .Lly <=_abdff .Lly {_abdff =_gcggf ;};};for _ ,_aeegf :=range _bced {if _aeegf !=_abdff &&_aeegf .Lly < _abdff .Ury {_abdff =nil ;break ;};};if _abdff !=nil &&_cdcd (_cgdg .PdfRectangle ,_abdff .PdfRectangle ){_cgdg ._dbecf =_abdff ; +};};};for _ ,_cgfc :=range _daac {if _cgfc ._dgdb !=nil &&_cgfc ._dgdb ._ccdg !=_cgfc {_cgfc ._dgdb =nil ;};if _cgfc ._dbecf !=nil &&_cgfc ._dbecf ._cgfe !=_cgfc {_cgfc ._dbecf =nil ;};if _cgfc ._ccdg !=nil &&_cgfc ._ccdg ._dgdb !=_cgfc {_cgfc ._ccdg =nil ; +};if _cgfc ._cgfe !=nil &&_cgfc ._cgfe ._dbecf !=_cgfc {_cgfc ._cgfe =nil ;};};};func _daae (_dafd _gb .PdfRectangle ,_adbe []*textLine )*textPara {return &textPara {PdfRectangle :_dafd ,_abbe :_adbe };};func (_gaac paraList )findTableGrid (_egbe gridTiling )(*textTable ,map[*textPara ]struct{}){_fdcga :=len (_egbe ._edfg ); +_ceee :=len (_egbe ._abbf );_bagbf :=textTable {_baccf :true ,_fccgee :_fdcga ,_dege :_ceee ,_adda :make (map[uint64 ]*textPara ,_fdcga *_ceee ),_faeg :make (map[uint64 ]compositeCell ,_fdcga *_ceee )};_bagbf .PdfRectangle =_egbe .PdfRectangle ;_dfgg :=make (map[*textPara ]struct{}); +_fcdcc :=int ((1.0-_dgcca )*float64 (_fdcga *_ceee ));_ggcfc :=0;if _aaga {_ed .Log .Info ("\u0066\u0069\u006e\u0064Ta\u0062\u006c\u0065\u0047\u0072\u0069\u0064\u003a\u0020\u0025\u0064\u0020\u0078\u0020%\u0064",_fdcga ,_ceee );};for _bcdd ,_baaeg :=range _egbe ._abbf {_gbdb ,_daedc :=_egbe ._aaef [_baaeg ]; +if !_daedc {continue ;};for _acbbe ,_ecab :=range _egbe ._edfg {_gcbbfg ,_fgad :=_gbdb [_ecab ];if !_fgad {continue ;};_dggac :=_gaac .inTile (_gcbbfg );if len (_dggac )==0{_ggcfc ++;if _ggcfc > _fcdcc {if _aaga {_ed .Log .Info ("\u0021\u006e\u0075m\u0045\u006d\u0070\u0074\u0079\u003d\u0025\u0064",_ggcfc ); +};return nil ,nil ;};}else {_bagbf .putComposite (_acbbe ,_bcdd ,_dggac ,_gcbbfg .PdfRectangle );for _ ,_efffd :=range _dggac {_dfgg [_efffd ]=struct{}{};};};};};_fgbde :=0;for _cfcc :=0;_cfcc < _fdcga ;_cfcc ++{_aegf :=_bagbf .get (_cfcc ,0);if _aegf ==nil ||!_aegf ._befd {_fgbde ++; +};};if _fgbde ==0{if _aaga {_ed .Log .Info ("\u0021\u006e\u0075m\u0048\u0065\u0061\u0064\u0065\u0072\u003d\u0030");};return nil ,nil ;};_cdcfa :=_bagbf .reduceTiling (_egbe ,_fbgec );_cdcfa =_cdcfa .subdivide ();return _cdcfa ,_dfgg ;};func (_cedbf *textPara )taken ()bool {return _cedbf ==nil ||_cedbf ._ggdd }; +func _eccca (_cgfbg map[float64 ]map[float64 ]gridTile )[]float64 {_cegcg :=make ([]float64 ,0,len (_cgfbg ));for _dded :=range _cgfbg {_cegcg =append (_cegcg ,_dded );};_d .Float64s (_cegcg );_abag :=len (_cegcg );for _dcgb :=0;_dcgb < _abag /2;_dcgb ++{_cegcg [_dcgb ],_cegcg [_abag -1-_dcgb ]=_cegcg [_abag -1-_dcgb ],_cegcg [_dcgb ]; +};return _cegcg ;};func _ebccd (_degbf _gb .PdfRectangle )rulingKind {_dffb :=_degbf .Width ();_afeb :=_degbf .Height ();if _dffb > _afeb {if _dffb >=_caf {return _bdfd ;};}else {if _afeb >=_caf {return _gfafc ;};};return _eefaf ;};func _bcaef (_babb []float64 ,_gbgc ,_aeedd float64 )[]float64 {_gbfcd ,_caag :=_gbgc ,_aeedd ; +if _caag < _gbfcd {_gbfcd ,_caag =_caag ,_gbfcd ;};_fegeg :=make ([]float64 ,0,len (_babb )+2);_fegeg =append (_fegeg ,_gbgc );for _ ,_cfaf :=range _babb {if _cfaf <=_gbfcd {continue ;}else if _cfaf >=_caag {break ;};_fegeg =append (_fegeg ,_cfaf );};_fegeg =append (_fegeg ,_aeedd ); +return _fegeg ;};func (_ebfa *textObject )setWordSpacing (_bga float64 ){if _ebfa ==nil {return ;};_ebfa ._cbag ._bfa =_bga ;};type stateStack []*textState ;func (_cgeb rulingList )merge ()*ruling {_bedc :=_cgeb [0]._abfg ;_geeg :=_cgeb [0]._daag ;_bcbcb :=_cgeb [0]._fcff ; +for _ ,_cdaca :=range _cgeb [1:]{_bedc +=_cdaca ._abfg ;if _cdaca ._daag < _geeg {_geeg =_cdaca ._daag ;};if _cdaca ._fcff > _bcbcb {_bcbcb =_cdaca ._fcff ;};};_gfgce :=&ruling {_cffe :_cgeb [0]._cffe ,_bbge :_cgeb [0]._bbge ,Color :_cgeb [0].Color ,_abfg :_bedc /float64 (len (_cgeb )),_daag :_geeg ,_fcff :_bcbcb }; +if _dgbge {_ed .Log .Info ("\u006de\u0072g\u0065\u003a\u0020\u0025\u0032d\u0020\u0076e\u0063\u0073\u0020\u0025\u0073",len (_cgeb ),_gfgce );for _adbd ,_eabe :=range _cgeb {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_adbd ,_eabe ); +};};return _gfgce ;};func (_aefa paraList )yNeighbours (_cbde float64 )map[*textPara ][]int {_cbcf :=make ([]event ,2*len (_aefa ));if _cbde ==0{for _aaecc ,_bfdedc :=range _aefa {_cbcf [2*_aaecc ]=event {_bfdedc .Lly ,true ,_aaecc };_cbcf [2*_aaecc +1]=event {_bfdedc .Ury ,false ,_aaecc }; +};}else {for _edgbg ,_bbff :=range _aefa {_cbcf [2*_edgbg ]=event {_bbff .Lly -_cbde *_bbff .fontsize (),true ,_edgbg };_cbcf [2*_edgbg +1]=event {_bbff .Ury +_cbde *_bbff .fontsize (),false ,_edgbg };};};return _aefa .eventNeighbours (_cbcf );};func (_ebgd *wordBag )removeDuplicates (){if _fccg {_ed .Log .Info ("r\u0065m\u006f\u0076\u0065\u0044\u0075\u0070\u006c\u0069c\u0061\u0074\u0065\u0073: \u0025\u0071",_ebgd .text ()); +};for _ ,_faeeg :=range _ebgd .depthIndexes (){if len (_ebgd ._gegc [_faeeg ])==0{continue ;};_egbb :=_ebgd ._gegc [_faeeg ][0];_efd :=_gcca *_egbb ._fgdbd ;_eadfb :=_egbb ._cbfcee ;for _ ,_deab :=range _ebgd .depthBand (_eadfb ,_eadfb +_efd ){_ececd :=map[*textWord ]struct{}{}; +_cgcf :=_ebgd ._gegc [_deab ];for _ ,_bbbae :=range _cgcf {if _ ,_ggbdf :=_ececd [_bbbae ];_ggbdf {continue ;};for _ ,_cabb :=range _cgcf {if _ ,_afce :=_ececd [_cabb ];_afce {continue ;};if _cabb !=_bbbae &&_cabb ._bcfea ==_bbbae ._bcfea &&_df .Abs (_cabb .Llx -_bbbae .Llx )< _efd &&_df .Abs (_cabb .Urx -_bbbae .Urx )< _efd &&_df .Abs (_cabb .Lly -_bbbae .Lly )< _efd &&_df .Abs (_cabb .Ury -_bbbae .Ury )< _efd {_ececd [_cabb ]=struct{}{}; +};};};if len (_ececd )> 0{_aadga :=0;for _ ,_ggde :=range _cgcf {if _ ,_bfed :=_ececd [_ggde ];!_bfed {_cgcf [_aadga ]=_ggde ;_aadga ++;};};_ebgd ._gegc [_deab ]=_cgcf [:len (_cgcf )-len (_ececd )];if len (_ebgd ._gegc [_deab ])==0{delete (_ebgd ._gegc ,_deab ); +};};};};};func (_bdcfb paraList )computeEBBoxes (){if _adab {_ed .Log .Info ("\u0063o\u006dp\u0075\u0074\u0065\u0045\u0042\u0042\u006f\u0078\u0065\u0073\u003a");};for _ ,_gbef :=range _bdcfb {_gbef ._cedf =_gbef .PdfRectangle ;};_aggdb :=_bdcfb .yNeighbours (0); +for _bdcfa ,_bdab :=range _bdcfb {_affa :=_bdab ._cedf ;_cfbad ,_cfad :=-1.0e9,+1.0e9;for _ ,_beea :=range _aggdb [_bdab ]{_ggbb :=_bdcfb [_beea ]._cedf ;if _ggbb .Urx < _affa .Llx {_cfbad =_df .Max (_cfbad ,_ggbb .Urx );}else if _affa .Urx < _ggbb .Llx {_cfad =_df .Min (_cfad ,_ggbb .Llx ); +};};for _feadf ,_cagee :=range _bdcfb {_cafg :=_cagee ._cedf ;if _bdcfa ==_feadf ||_cafg .Ury > _affa .Lly {continue ;};if _cfbad <=_cafg .Llx &&_cafg .Llx < _affa .Llx {_affa .Llx =_cafg .Llx ;}else if _cafg .Urx <=_cfad &&_affa .Urx < _cafg .Urx {_affa .Urx =_cafg .Urx ; +};};if _adab {_cfe .Printf ("\u0025\u0034\u0064\u003a %\u0036\u002e\u0032\u0066\u2192\u0025\u0036\u002e\u0032\u0066\u0020\u0025\u0071\u000a",_bdcfa ,_bdab ._cedf ,_affa ,_fabf (_bdab .text (),50));};_bdab ._cedf =_affa ;};if _bcba {for _ ,_bbed :=range _bdcfb {_bbed .PdfRectangle =_bbed ._cedf ; +};};};func _gfeg (_cdac *paraList )map[int ][]*textLine {_egd :=map[int ][]*textLine {};for _ ,_fbcg :=range *_cdac {for _ ,_gagb :=range _fbcg ._abbe {if !_bbg (_gagb ){_ed .Log .Debug ("g\u0072\u006f\u0075p\u004c\u0069\u006e\u0065\u0073\u003a\u0020\u0054\u0068\u0065\u0020\u0074\u0065\u0078\u0074\u0020\u006c\u0069\u006e\u0065\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0073 \u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u006e\u0065 \u006d\u0063\u0069\u0064 \u006e\u0075\u006d\u0062e\u0072\u002e\u0020\u0049\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0073p\u006c\u0069\u0074\u002e"); +continue ;};_badbe :=_gagb ._bfca [0]._fdgbc [0]._afae ;_egd [_badbe ]=append (_egd [_badbe ],_gagb );};if _fbcg ._bedfe !=nil {_acaa :=_fbcg ._bedfe ._adda ;for _ ,_bfce :=range _acaa {for _ ,_eccf :=range _bfce ._abbe {if !_bbg (_eccf ){_ed .Log .Debug ("g\u0072\u006f\u0075p\u004c\u0069\u006e\u0065\u0073\u003a\u0020\u0054\u0068\u0065\u0020\u0074\u0065\u0078\u0074\u0020\u006c\u0069\u006e\u0065\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0073 \u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u006e\u0065 \u006d\u0063\u0069\u0064 \u006e\u0075\u006d\u0062e\u0072\u002e\u0020\u0049\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0073p\u006c\u0069\u0074\u002e"); +continue ;};_bfded :=_eccf ._bfca [0]._fdgbc [0]._afae ;_egd [_bfded ]=append (_egd [_bfded ],_eccf );};};};};return _egd ;};func _cgfgb (_efabc ,_dfec *textPara )bool {return _cdcd (_efabc ._cedf ,_dfec ._cedf )};func _abdc (_abfb []*textWord ,_aaaac *textWord )[]*textWord {for _dbgf ,_deba :=range _abfb {if _deba ==_aaaac {return _ffbbc (_abfb ,_dbgf ); +};};_ed .Log .Error ("\u0072\u0065\u006d\u006f\u0076e\u0057\u006f\u0072\u0064\u003a\u0020\u0077\u006f\u0072\u0064\u0073\u0020\u0064o\u0065\u0073\u006e\u0027\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0077\u006f\u0072\u0064\u003d\u0025\u0073",_aaaac ); +return nil ;};func (_ddea *textObject )setCharSpacing (_dfa float64 ){if _ddea ==nil {return ;};_ddea ._cbag ._bfdf =_dfa ;if _geafa {_ed .Log .Info ("\u0073\u0065t\u0043\u0068\u0061\u0072\u0053\u0070\u0061\u0063\u0069\u006e\u0067\u003a\u0020\u0025\u002e\u0032\u0066\u0020\u0073\u0074\u0061\u0074e=\u0025\u0073",_dfa ,_ddea ._cbag .String ()); +};}; // PageTextOptions holds various options available in extraction process. -type PageTextOptions struct{_efab bool ;_fcgfa bool ;};func (_ddafg *textTable )subdivide ()*textTable {_ddafg .logComposite ("\u0073u\u0062\u0064\u0069\u0076\u0069\u0064e");_bdba :=_ddafg .compositeRowCorridors ();_gcagd :=_ddafg .compositeColCorridors (); -if _afcg {_ec .Log .Info ("\u0073u\u0062\u0064i\u0076\u0069\u0064\u0065:\u000a\u0009\u0072o\u0077\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072s=\u0025\u0073\u000a\t\u0063\u006fl\u0043\u006f\u0072\u0072\u0069\u0064o\u0072\u0073=\u0025\u0073",_bfbfd (_bdba ),_bfbfd (_gcagd )); -};if len (_bdba )==0||len (_gcagd )==0{return _ddafg ;};_acgg (_bdba );_acgg (_gcagd );if _afcg {_ec .Log .Info ("\u0073\u0075\u0062\u0064\u0069\u0076\u0069\u0064\u0065\u0020\u0066\u0069\u0078\u0065\u0064\u003a\u000a\u0009r\u006f\u0077\u0043\u006f\u0072\u0072\u0069d\u006f\u0072\u0073\u003d\u0025\u0073\u000a\u0009\u0063\u006f\u006cC\u006f\u0072\u0072\u0069\u0064\u006f\u0072\u0073\u003d\u0025\u0073",_bfbfd (_bdba ),_bfbfd (_gcagd )); -};_egfae ,_gfbfa :=_daeg (_ddafg ._dcfg ,_bdba );_ggbd ,_eccea :=_daeg (_ddafg ._ecbf ,_gcagd );_afeab :=make (map[uint64 ]*textPara ,_eccea *_gfbfa );_fcde :=&textTable {PdfRectangle :_ddafg .PdfRectangle ,_beaeg :_ddafg ._beaeg ,_dcfg :_gfbfa ,_ecbf :_eccea ,_gcbga :_afeab }; -if _afcg {_ec .Log .Info ("\u0073\u0075b\u0064\u0069\u0076\u0069\u0064\u0065\u003a\u0020\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u0020\u003d\u0020\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u0020\u0063\u0065\u006c\u006c\u0073\u003d\u0020\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u000a"+"\u0009\u0072\u006f\u0077\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072s\u003d\u0025\u0073\u000a"+"\u0009\u0063\u006f\u006c\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072s\u003d\u0025\u0073\u000a"+"\u0009\u0079\u004f\u0066\u0066\u0073\u0065\u0074\u0073=\u0025\u002b\u0076\u000a"+"\u0009\u0078\u004f\u0066\u0066\u0073\u0065\u0074\u0073\u003d\u0025\u002b\u0076",_ddafg ._ecbf ,_ddafg ._dcfg ,_eccea ,_gfbfa ,_bfbfd (_bdba ),_bfbfd (_gcagd ),_egfae ,_ggbd ); -};for _feece :=0;_feece < _ddafg ._dcfg ;_feece ++{_feeb :=_egfae [_feece ];for _fdgdd :=0;_fdgdd < _ddafg ._ecbf ;_fdgdd ++{_gcgd :=_ggbd [_fdgdd ];if _afcg {_ge .Printf ("\u0025\u0036\u0064\u002c %\u0032\u0064\u003a\u0020\u0078\u0030\u003d\u0025\u0064\u0020\u0079\u0030\u003d\u0025d\u000a",_fdgdd ,_feece ,_gcgd ,_feeb ); -};_cbbfg ,_dffaf :=_ddafg ._egfe [_aaca (_fdgdd ,_feece )];if !_dffaf {continue ;};_defff :=_cbbfg .split (_bdba [_feece ],_gcagd [_fdgdd ]);for _addfd :=0;_addfd < _defff ._dcfg ;_addfd ++{for _gfbe :=0;_gfbe < _defff ._ecbf ;_gfbe ++{_fcafg :=_defff .get (_gfbe ,_addfd ); -_fcde .put (_gcgd +_gfbe ,_feeb +_addfd ,_fcafg );if _afcg {_ge .Printf ("\u0025\u0038\u0064\u002c\u0020\u0025\u0032\u0064\u003a\u0020\u0025\u0073\u000a",_gcgd +_gfbe ,_feeb +_addfd ,_fcafg );};};};};};return _fcde ;};func _dca (_ccga []*textWord ,_aag float64 ,_dgge ,_acd rulingList )*wordBag {_bcbb :=_bbea (_ccga [0],_aag ,_dgge ,_acd ); -for _ ,_gaf :=range _ccga [1:]{_eaad :=_fece (_gaf ._cffdg );_bcbb ._faba [_eaad ]=append (_bcbb ._faba [_eaad ],_gaf );_bcbb .PdfRectangle =_cdggc (_bcbb .PdfRectangle ,_gaf .PdfRectangle );};_bcbb .sort ();return _bcbb ;};func (_fbfca rulingList )tidied (_bcdfe string )rulingList {_cefd :=_fbfca .removeDuplicates (); -_cefd .log ("\u0075n\u0069\u0071\u0075\u0065\u0073");_fgae :=_cefd .snapToGroups ();if _fgae ==nil {return nil ;};_fgae .sort ();if _gfgc {_ec .Log .Info ("\u0074\u0069\u0064i\u0065\u0064\u003a\u0020\u0025\u0071\u0020\u0076\u0065\u0063\u0073\u003d\u0025\u0064\u0020\u0075\u006e\u0069\u0071\u0075\u0065\u0073\u003d\u0025\u0064\u0020\u0063\u006f\u0061l\u0065\u0073\u0063\u0065\u0064\u003d\u0025\u0064",_bcdfe ,len (_fbfca ),len (_cefd ),len (_fgae )); -};_fgae .log ("\u0063o\u0061\u006c\u0065\u0073\u0063\u0065d");return _fgae ;};func (_cdag *subpath )makeRectRuling (_bbaf _fg .Color )(*ruling ,bool ){if _feceb {_ec .Log .Info ("\u006d\u0061\u006beR\u0065\u0063\u0074\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0070\u0061\u0074\u0068\u003d\u0025\u0076",_cdag ); -};_dgad :=_cdag ._gfefe [:4];_fcga :=make (map[int ]rulingKind ,len (_dgad ));for _gaeff ,_fabe :=range _dgad {_agcac :=_cdag ._gfefe [(_gaeff +1)%4];_fcga [_gaeff ]=_bcdee (_fabe ,_agcac );if _feceb {_ge .Printf ("\u0025\u0034\u0064: \u0025\u0073\u0020\u003d\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u002d\u0020\u0025\u0036\u002e\u0032\u0066",_gaeff ,_fcga [_gaeff ],_fabe ,_agcac ); -};};if _feceb {_ge .Printf ("\u0020\u0020\u0020\u006b\u0069\u006e\u0064\u0073\u003d\u0025\u002b\u0076\u000a",_fcga );};var _adbc ,_cbecc []int ;for _ceeeg ,_gaadb :=range _fcga {switch _gaadb {case _ecac :_cbecc =append (_cbecc ,_ceeeg );case _ebdaf :_adbc =append (_adbc ,_ceeeg ); -};};if _feceb {_ge .Printf ("\u0020\u0020 \u0068\u006f\u0072z\u0073\u003d\u0025\u0064\u0020\u0025\u002b\u0076\u000a",len (_cbecc ),_cbecc );_ge .Printf ("\u0020\u0020 \u0076\u0065\u0072t\u0073\u003d\u0025\u0064\u0020\u0025\u002b\u0076\u000a",len (_adbc ),_adbc ); -};_fcce :=(len (_cbecc )==2&&len (_adbc )==2)||(len (_cbecc )==2&&len (_adbc )==0&&_acdeg (_dgad [_cbecc [0]],_dgad [_cbecc [1]]))||(len (_adbc )==2&&len (_cbecc )==0&&_ddafc (_dgad [_adbc [0]],_dgad [_adbc [1]]));if _feceb {_ge .Printf (" \u0020\u0020\u0068\u006f\u0072\u007as\u003d\u0025\u0064\u0020\u0076\u0065\u0072\u0074\u0073=\u0025\u0064\u0020o\u006b=\u0025\u0074\u000a",len (_cbecc ),len (_adbc ),_fcce ); -};if !_fcce {if _feceb {_ec .Log .Error ("\u0021!\u006d\u0061\u006b\u0065R\u0065\u0063\u0074\u0052\u0075l\u0069n\u0067:\u0020\u0070\u0061\u0074\u0068\u003d\u0025v",_cdag );_ge .Printf (" \u0020\u0020\u0068\u006f\u0072\u007as\u003d\u0025\u0064\u0020\u0076\u0065\u0072\u0074\u0073=\u0025\u0064\u0020o\u006b=\u0025\u0074\u000a",len (_cbecc ),len (_adbc ),_fcce ); -};return &ruling {},false ;};if len (_adbc )==0{for _aeadc ,_aagb :=range _fcga {if _aagb !=_ecac {_adbc =append (_adbc ,_aeadc );};};};if len (_cbecc )==0{for _ebbg ,_ffgd :=range _fcga {if _ffgd !=_ebdaf {_cbecc =append (_cbecc ,_ebbg );};};};if _feceb {_ec .Log .Info ("\u006da\u006b\u0065R\u0065\u0063\u0074\u0052u\u006c\u0069\u006eg\u003a\u0020\u0068\u006f\u0072\u007a\u0073\u003d\u0025d \u0076\u0065\u0072t\u0073\u003d%\u0064\u0020\u0070\u006f\u0069\u006et\u0073\u003d%\u0064\u000a"+"\u0009\u0020\u0068o\u0072\u007a\u0073\u003d\u0025\u002b\u0076\u000a"+"\u0009\u0020\u0076e\u0072\u0074\u0073\u003d\u0025\u002b\u0076\u000a"+"\t\u0070\u006f\u0069\u006e\u0074\u0073\u003d\u0025\u002b\u0076",len (_cbecc ),len (_adbc ),len (_dgad ),_cbecc ,_adbc ,_dgad ); -};var _fedd ,_acagb ,_aegcd ,_baee _bc .Point ;if _dgad [_cbecc [0]].Y > _dgad [_cbecc [1]].Y {_aegcd ,_baee =_dgad [_cbecc [0]],_dgad [_cbecc [1]];}else {_aegcd ,_baee =_dgad [_cbecc [1]],_dgad [_cbecc [0]];};if _dgad [_adbc [0]].X > _dgad [_adbc [1]].X {_fedd ,_acagb =_dgad [_adbc [0]],_dgad [_adbc [1]]; -}else {_fedd ,_acagb =_dgad [_adbc [1]],_dgad [_adbc [0]];};_gefg :=_ce .PdfRectangle {Llx :_fedd .X ,Urx :_acagb .X ,Lly :_baee .Y ,Ury :_aegcd .Y };if _gefg .Llx > _gefg .Urx {_gefg .Llx ,_gefg .Urx =_gefg .Urx ,_gefg .Llx ;};if _gefg .Lly > _gefg .Ury {_gefg .Lly ,_gefg .Ury =_gefg .Ury ,_gefg .Lly ; -};_gdfd :=rectRuling {PdfRectangle :_gefg ,_dfec :_gcgf (_gefg ),Color :_bbaf };if _gdfd ._dfec ==_gdcf {if _feceb {_ec .Log .Error ("\u006da\u006b\u0065\u0052\u0065\u0063\u0074\u0052\u0075\u006c\u0069\u006eg\u003a\u0020\u006b\u0069\u006e\u0064\u003d\u006e\u0069\u006c"); -};return nil ,false ;};_addd ,_ddgea :=_gdfd .asRuling ();if !_ddgea {if _feceb {_ec .Log .Error ("\u006da\u006b\u0065\u0052\u0065c\u0074\u0052\u0075\u006c\u0069n\u0067:\u0020!\u0069\u0073\u0052\u0075\u006c\u0069\u006eg");};return nil ,false ;};if _gfgc {_ge .Printf ("\u0020\u0020\u0020\u0072\u003d\u0025\u0073\u000a",_addd .String ()); -};return _addd ,true ;};func (_ecaab *textTable )get (_dcafe ,_dafcc int )*textPara {return _ecaab ._gcbga [_aaca (_dcafe ,_dafcc )];};func _eacf (_aebfc float64 )float64 {return _dgeec *_aa .Round (_aebfc /_dgeec )};func (_aaed paraList )writeText (_eafd _a .Writer ){for _fcgdd ,_bbfd :=range _aaed {if _bbfd ._bedf {continue ; -};_bbfd .writeText (_eafd );if _fcgdd !=len (_aaed )-1{if _eeacg (_bbfd ,_aaed [_fcgdd +1]){_eafd .Write ([]byte ("\u0020"));}else {_eafd .Write ([]byte ("\u000a"));_eafd .Write ([]byte ("\u000a"));};};};_eafd .Write ([]byte ("\u000a"));_eafd .Write ([]byte ("\u000a")); -};func _eecad (_cbbcf ,_eabef _bc .Point )rulingKind {_egfba :=_aa .Abs (_cbbcf .X -_eabef .X );_gbaae :=_aa .Abs (_cbbcf .Y -_eabef .Y );return _gbbf (_egfba ,_gbaae ,_cec );};func _gfbbf (_eaeb ,_begg _bc .Point ,_cgg _fg .Color )(*ruling ,bool ){_cbfgb :=lineRuling {_ddgfc :_eaeb ,_eacg :_begg ,_fbbag :_eecad (_eaeb ,_begg ),Color :_cgg }; -if _cbfgb ._fbbag ==_gdcf {return nil ,false ;};return _cbfgb .asRuling ();};func (_cbae *wordBag )pullWord (_bfab *textWord ,_fceff int ,_dcbg map[int ]map[*textWord ]struct{}){_cbae .PdfRectangle =_cdggc (_cbae .PdfRectangle ,_bfab .PdfRectangle );if _bfab ._ddgee > _cbae ._egfa {_cbae ._egfa =_bfab ._ddgee ; -};_cbae ._faba [_fceff ]=append (_cbae ._faba [_fceff ],_bfab );_dcbg [_fceff ][_bfab ]=struct{}{};};func _dafd (_bbde *paraList )map[int ][]*textLine {_fdbg :=map[int ][]*textLine {};for _ ,_ceca :=range *_bbde {for _ ,_bba :=range _ceca ._bdbcg {if !_bcgc (_bba ){_ec .Log .Debug ("g\u0072\u006f\u0075p\u004c\u0069\u006e\u0065\u0073\u003a\u0020\u0054\u0068\u0065\u0020\u0074\u0065\u0078\u0074\u0020\u006c\u0069\u006e\u0065\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0073 \u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u006e\u0065 \u006d\u0063\u0069\u0064 \u006e\u0075\u006d\u0062e\u0072\u002e\u0020\u0049\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0073p\u006c\u0069\u0074\u002e"); -continue ;};_bcefg :=_bba ._aebc [0]._bgeaa [0]._fefe ;_fdbg [_bcefg ]=append (_fdbg [_bcefg ],_bba );};if _ceca ._bddea !=nil {_cafg :=_ceca ._bddea ._gcbga ;for _ ,_gfdd :=range _cafg {for _ ,_cbfd :=range _gfdd ._bdbcg {if !_bcgc (_cbfd ){_ec .Log .Debug ("g\u0072\u006f\u0075p\u004c\u0069\u006e\u0065\u0073\u003a\u0020\u0054\u0068\u0065\u0020\u0074\u0065\u0078\u0074\u0020\u006c\u0069\u006e\u0065\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0073 \u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u006e\u0065 \u006d\u0063\u0069\u0064 \u006e\u0075\u006d\u0062e\u0072\u002e\u0020\u0049\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0073p\u006c\u0069\u0074\u002e"); -continue ;};_gabc :=_cbfd ._aebc [0]._bgeaa [0]._fefe ;_fdbg [_gabc ]=append (_fdbg [_gabc ],_cbfd );};};};};return _fdbg ;};func (_fgcad *shapesState )establishSubpath ()*subpath {_cdgg ,_egbf :=_fgcad .lastpointEstablished ();if !_egbf {_fgcad ._abgb =append (_fgcad ._abgb ,_fae (_cdgg )); -};if len (_fgcad ._abgb )==0{return nil ;};_fgcad ._edee =false ;return _fgcad ._abgb [len (_fgcad ._abgb )-1];};func (_cafe lineRuling )xMean ()float64 {return 0.5*(_cafe ._ddgfc .X +_cafe ._eacg .X )};func (_egef rulingList )mergePrimary ()float64 {_aebae :=_egef [0]._abbgc ; -for _ ,_eagab :=range _egef [1:]{_aebae +=_eagab ._abbgc ;};return _aebae /float64 (len (_egef ));};type wordBag struct{_ce .PdfRectangle ;_egfa float64 ;_eeca ,_gbef rulingList ;_cfg float64 ;_faba map[int ][]*textWord ;};func (_faae *shapesState )devicePoint (_ceba ,_ecgc float64 )_bc .Point {_cac :=_faae ._dag .Mult (_faae ._aabgc ); -_ceba ,_ecgc =_cac .Transform (_ceba ,_ecgc );return _bc .NewPoint (_ceba ,_ecgc );};func (_fegd intSet )has (_gdcff int )bool {_ ,_bedff :=_fegd [_gdcff ];return _bedff };func (_bbbc rulingList )augmentGrid ()(rulingList ,rulingList ){_fecfe ,_efccb :=_bbbc .vertsHorzs (); -if len (_fecfe )==0||len (_efccb )==0{return _fecfe ,_efccb ;};_bgea ,_gdddc :=_fecfe ,_efccb ;_dbfe :=_fecfe .bbox ();_abbf :=_efccb .bbox ();if _gfgc {_ec .Log .Info ("\u0061u\u0067\u006d\u0065\u006e\u0074\u0047\u0072\u0069\u0064\u003a\u0020b\u0062\u006f\u0078\u0056\u003d\u0025\u0036\u002e\u0032\u0066",_dbfe ); -_ec .Log .Info ("\u0061u\u0067\u006d\u0065\u006e\u0074\u0047\u0072\u0069\u0064\u003a\u0020b\u0062\u006f\u0078\u0048\u003d\u0025\u0036\u002e\u0032\u0066",_abbf );};var _bdef ,_cgcg ,_ggafbf ,_fffb *ruling ;if _abbf .Llx < _dbfe .Llx -_ebbf {_bdef =&ruling {_bgaa :_cgacb ,_bfbc :_ebdaf ,_abbgc :_abbf .Llx ,_cebe :_dbfe .Lly ,_deee :_dbfe .Ury }; -_fecfe =append (rulingList {_bdef },_fecfe ...);};if _abbf .Urx > _dbfe .Urx +_ebbf {_cgcg =&ruling {_bgaa :_cgacb ,_bfbc :_ebdaf ,_abbgc :_abbf .Urx ,_cebe :_dbfe .Lly ,_deee :_dbfe .Ury };_fecfe =append (_fecfe ,_cgcg );};if _dbfe .Lly < _abbf .Lly -_ebbf {_ggafbf =&ruling {_bgaa :_cgacb ,_bfbc :_ecac ,_abbgc :_dbfe .Lly ,_cebe :_abbf .Llx ,_deee :_abbf .Urx }; -_efccb =append (rulingList {_ggafbf },_efccb ...);};if _dbfe .Ury > _abbf .Ury +_ebbf {_fffb =&ruling {_bgaa :_cgacb ,_bfbc :_ecac ,_abbgc :_dbfe .Ury ,_cebe :_abbf .Llx ,_deee :_abbf .Urx };_efccb =append (_efccb ,_fffb );};if len (_fecfe )+len (_efccb )==len (_bbbc ){return _bgea ,_gdddc ; -};_gfdag :=append (_fecfe ,_efccb ...);_bbbc .log ("u\u006e\u0061\u0075\u0067\u006d\u0065\u006e\u0074\u0065\u0064");_gfdag .log ("\u0061u\u0067\u006d\u0065\u006e\u0074\u0065d");return _fecfe ,_efccb ;};const (_fdac =1.0e-6;_dgeec =1.0e-4;_fafa =10;_edbf =6; -_cdca =0.5;_edd =0.12;_dfac =0.19;_bagb =0.04;_fffgc =0.04;_cfebd =1.0;_bdgd =0.04;_ccab =0.4;_gfff =0.7;_gceeb =1.0;_baae =0.1;_ebfa =1.4;_gecdb =0.46;_ddag =0.02;_bada =0.2;_geb =0.5;_ggafb =4;_bafc =4.0;_ddd =6;_fbbd =0.3;_gccfg =0.01;_gcga =0.02;_cbbb =2; -_acgd =2;_fcae =500;_cec =4.0;_aace =4.0;_cffa =0.05;_edeeb =0.1;_ebbf =2.0;_gcef =2.0;_fdgb =1.5;_ffee =3.0;_cfea =0.25;);func (_bgcg *shapesState )newSubPath (){_bgcg .clearPath ();if _cbag {_ec .Log .Info ("\u006e\u0065\u0077\u0053\u0075\u0062\u0050\u0061\u0074h\u003a\u0020\u0025\u0073",_bgcg ); -};};func _adcg (_adfee ,_fcbg *textPara )bool {return _fcd (_adfee ._ebcf ,_fcbg ._ebcf )};func (_fcfa gridTile )complete ()bool {return _fcfa .numBorders ()==4};type structElement struct{_bacdb string ;_cagb []structElement ;_efcc int64 ;_geaa _gb .PdfObject ; -};var (_gdf =_d .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");_fe =_d .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"););func _gbbf (_deafb ,_ccdd ,_cgddb float64 )rulingKind {if _deafb >=_cgddb &&_beeee (_ccdd ,_deafb ){return _ecac ; -};if _ccdd >=_cgddb &&_beeee (_deafb ,_ccdd ){return _ebdaf ;};return _gdcf ;};func (_bae *shapesState )stroke (_gceed *[]pathSection ){_decb :=pathSection {_fbfe :_bae ._abgb ,Color :_bae ._ecfc .getStrokeColor ()};*_gceed =append (*_gceed ,_decb );if _gfgc {_ge .Printf ("\u0020 \u0020\u0020S\u0054\u0052\u004fK\u0045\u003a\u0020\u0025\u0064\u0020\u0073t\u0072\u006f\u006b\u0065\u0073\u0020s\u0073\u003d\u0025\u0073\u0020\u0063\u006f\u006c\u006f\u0072\u003d%\u002b\u0076\u0020\u0025\u0036\u002e\u0032\u0066\u000a",len (*_gceed ),_bae ,_bae ._ecfc .getStrokeColor (),_decb .bbox ()); -if _deaga {for _bca ,_edad :=range _bae ._abgb {_ge .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_bca ,_edad );if _bca ==10{break ;};};};};}; - -// ImageExtractOptions contains options for controlling image extraction from -// PDF pages. -type ImageExtractOptions struct{IncludeInlineStencilMasks bool ;};func _fgabc (_cbec float64 ,_cbfe int )int {if _cbfe ==0{_cbfe =1;};_afcc :=float64 (_cbfe );return int (_aa .Round (_cbec /_afcc )*_afcc );}; - -// Extractor stores and offers functionality for extracting content from PDF pages. -type Extractor struct{_bcf string ;_ab *_ce .PdfPageResources ;_gda _ce .PdfRectangle ;_ed *_ce .PdfRectangle ;_cd map[string ]fontEntry ;_fa map[string ]textResult ;_bg int64 ;_eb int ;_fgb *Options ;_ba *_gb .PdfObject ;_eg _gb .PdfObject ;}; - -// TextMarkArray is a collection of TextMarks. -type TextMarkArray struct{_dec []TextMark };func _fafg (_gagb ,_aafg _ce .PdfRectangle )bool {return _gagb .Llx <=_aafg .Llx &&_aafg .Urx <=_gagb .Urx &&_gagb .Lly <=_aafg .Lly &&_aafg .Ury <=_gagb .Ury ;};func (_cdddg *textTable )emptyCompositeColumn (_bdgc int )bool {for _bddfb :=0; -_bddfb < _cdddg ._dcfg ;_bddfb ++{if _gfed ,_bdda :=_cdddg ._egfe [_aaca (_bdgc ,_bddfb )];_bdda {if len (_gfed .paraList )> 0{return false ;};};};return true ;};func _bdcdcf (_afbef map[float64 ]map[float64 ]gridTile )[]float64 {_edced :=make ([]float64 ,0,len (_afbef )); -for _eddc :=range _afbef {_edced =append (_edced ,_eddc );};_c .Float64s (_edced );_ebbfa :=len (_edced );for _afad :=0;_afad < _ebbfa /2;_afad ++{_edced [_afad ],_edced [_ebbfa -1-_afad ]=_edced [_ebbfa -1-_afad ],_edced [_afad ];};return _edced ;};func (_baggf *textTable )compositeColCorridors ()map[int ][]float64 {_fabf :=make (map[int ][]float64 ,_baggf ._ecbf ); -if _afcg {_ec .Log .Info ("\u0063\u006f\u006d\u0070o\u0073\u0069\u0074\u0065\u0043\u006f\u006c\u0043\u006f\u0072r\u0069d\u006f\u0072\u0073\u003a\u0020\u0077\u003d%\u0064\u0020",_baggf ._ecbf );};for _bccdf :=0;_bccdf < _baggf ._ecbf ;_bccdf ++{_fabf [_bccdf ]=nil ; -};return _fabf ;};func (_geaaf paraList )findGridTables (_bdbde []gridTiling )[]*textTable {if _afcg {_ec .Log .Info ("\u0066i\u006e\u0064\u0047\u0072\u0069\u0064\u0054\u0061\u0062\u006c\u0065s\u003a\u0020\u0025\u0064\u0020\u0070\u0061\u0072\u0061\u0073",len (_geaaf )); -for _fccfg ,_cbafd :=range _geaaf {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_fccfg ,_cbafd );};};var _egca []*textTable ;for _gefad ,_badag :=range _bdbde {_gcfee ,_afdba :=_geaaf .findTableGrid (_badag );if _gcfee !=nil {_gcfee .log (_ge .Sprintf ("\u0066\u0069\u006e\u0064Ta\u0062\u006c\u0065\u0057\u0069\u0074\u0068\u0047\u0072\u0069\u0064\u0073\u003a\u0020%\u0064",_gefad )); -_egca =append (_egca ,_gcfee );_gcfee .markCells ();};for _cdfcd :=range _afdba {_cdfcd ._bfcd =true ;};};if _afcg {_ec .Log .Info ("\u0066i\u006e\u0064\u0047\u0072i\u0064\u0054\u0061\u0062\u006ce\u0073:\u0020%\u0064\u0020\u0074\u0061\u0062\u006c\u0065s",len (_egca )); -};return _egca ;}; - -// Elements returns the TextMarks in `ma`. -func (_ecb *TextMarkArray )Elements ()[]TextMark {return _ecb ._dec };func (_gecdc lineRuling )yMean ()float64 {return 0.5*(_gecdc ._ddgfc .Y +_gecdc ._eacg .Y )};func (_bggbe rulingList )snapToGroups ()rulingList {_gecce ,_ffgda :=_bggbe .vertsHorzs (); -if len (_gecce )> 0{_gecce =_gecce .snapToGroupsDirection ();};if len (_ffgda )> 0{_ffgda =_ffgda .snapToGroupsDirection ();};_gfeb :=append (_gecce ,_ffgda ...);_gfeb .log ("\u0073\u006e\u0061p\u0054\u006f\u0047\u0072\u006f\u0075\u0070\u0073");return _gfeb ; -}; +type PageTextOptions struct{_gdeb bool ;_ebff bool ;};func (_fbc *imageExtractContext )extractInlineImage (_bfg *_aad .ContentStreamInlineImage ,_dde _aad .GraphicsState ,_fdb *_gb .PdfPageResources )error {_gca ,_fad :=_bfg .ToImage (_fdb );if _fad !=nil {return _fad ; +};_eacg ,_fad :=_bfg .GetColorSpace (_fdb );if _fad !=nil {return _fad ;};if _eacg ==nil {_eacg =_gb .NewPdfColorspaceDeviceGray ();};_abd ,_fad :=_eacg .ImageToRGB (*_gca );if _fad !=nil {return _fad ;};_ba :=ImageMark {Image :&_abd ,Width :_dde .CTM .ScalingFactorX (),Height :_dde .CTM .ScalingFactorY (),Angle :_dde .CTM .Angle ()}; +_ba .X ,_ba .Y =_dde .CTM .Translation ();_fbc ._cdb =append (_fbc ._cdb ,_ba );_fbc ._fbd ++;return nil ;};const _dgd =20;func (_gfegf rulingList )removeDuplicates ()rulingList {if len (_gfegf )==0{return nil ;};_gfegf .sort ();_fbad :=rulingList {_gfegf [0]}; +for _ ,_acgd :=range _gfegf [1:]{if _acgd .equals (_fbad [len (_fbad )-1]){continue ;};_fbad =append (_fbad ,_acgd );};return _fbad ;}; // String returns a description of `v`. -func (_faga *ruling )String ()string {if _faga ._bfbc ==_gdcf {return "\u004e\u004f\u0054\u0020\u0052\u0055\u004c\u0049\u004e\u0047";};_cegd ,_bgdd :="\u0078","\u0079";if _faga ._bfbc ==_ecac {_cegd ,_bgdd ="\u0079","\u0078";};_dcga :="";if _faga ._bcgdf !=0.0{_dcga =_ge .Sprintf (" \u0077\u0069\u0064\u0074\u0068\u003d\u0025\u002e\u0032\u0066",_faga ._bcgdf ); -};return _ge .Sprintf ("\u0025\u00310\u0073\u0020\u0025\u0073\u003d\u0025\u0036\u002e\u0032\u0066\u0020\u0025\u0073\u003d\u0025\u0036\u002e\u0032\u0066\u0020\u002d\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0028\u0025\u0036\u002e\u0032\u0066\u0029\u0020\u0025\u0073\u0020\u0025\u0076\u0025\u0073",_faga ._bfbc ,_cegd ,_faga ._abbgc ,_bgdd ,_faga ._cebe ,_faga ._deee ,_faga ._deee -_faga ._cebe ,_faga ._bgaa ,_faga .Color ,_dcga ); -};type textPara struct{_ce .PdfRectangle ;_ebcf _ce .PdfRectangle ;_bdbcg []*textLine ;_bddea *textTable ;_bfcd bool ;_bedf bool ;_egab *textPara ;_gaca *textPara ;_abdda *textPara ;_fdgbd *textPara ;_efafd []list ;};const (RenderModeStroke RenderMode =1< 0{_gada [_geeae ]=_bcdfea ; -};};if _gfgc {_ec .Log .Info ("t\u006fG\u0072\u0069\u0064\u0073\u003a\u0020\u0063\u006fn\u006e\u0065\u0063\u0074s=\u0025\u0064",len (_gada ));for _ ,_gceef :=range _afaae (_gada ){_ge .Printf ("\u00254\u0064\u003a\u0020\u0025\u002b\u0076\n",_gceef ,_gada [_gceef ]); -};};_faed :=_debaa (len (_ggfg ),func (_bffcf ,_gagd int )bool {_dcbfc ,_eccd :=len (_gada [_bffcf ]),len (_gada [_gagd ]);if _dcbfc !=_eccd {return _dcbfc > _eccd ;};return _ggfg .comp (_bffcf ,_gagd );});if _gfgc {_ec .Log .Info ("t\u006fG\u0072\u0069\u0064\u0073\u003a\u0020\u006f\u0072d\u0065\u0072\u0069\u006eg=\u0025\u0076",_faed ); -};_ffcccf :=[][]int {{_faed [0]}};_afabg :for _ ,_gecc :=range _faed [1:]{for _edbg ,_baaf :=range _ffcccf {for _ ,_cfgf :=range _baaf {if _gada [_cfgf ].has (_gecc ){_ffcccf [_edbg ]=append (_baaf ,_gecc );continue _afabg ;};};};_ffcccf =append (_ffcccf ,[]int {_gecc }); -};if _gfgc {_ec .Log .Info ("\u0074o\u0047r\u0069\u0064\u0073\u003a\u0020i\u0067\u0072i\u0064\u0073\u003d\u0025\u0076",_ffcccf );};_c .SliceStable (_ffcccf ,func (_fdgd ,_edded int )bool {return len (_ffcccf [_fdgd ])> len (_ffcccf [_edded ])});for _ ,_bgab :=range _ffcccf {_c .Slice (_bgab ,func (_bacbg ,_abcf int )bool {return _ggfg .comp (_bgab [_bacbg ],_bgab [_abcf ])}); -};_bade :=make ([]rulingList ,len (_ffcccf ));for _gagef ,_decba :=range _ffcccf {_bdfb :=make (rulingList ,len (_decba ));for _cfcc ,_fcdb :=range _decba {_bdfb [_cfcc ]=_ggfg [_fcdb ];};_bade [_gagef ]=_bdfb ;};if _gfgc {_ec .Log .Info ("\u0074o\u0047r\u0069\u0064\u0073\u003a\u0020g\u0072\u0069d\u0073\u003d\u0025\u002b\u0076",_bade ); -};var _aeafa []rulingList ;for _ ,_acdb :=range _bade {if _beee ,_edegf :=_acdb .isActualGrid ();_edegf {_acdb =_beee ;_acdb =_acdb .snapToGroups ();_aeafa =append (_aeafa ,_acdb );};};if _gfgc {_fcegc ("t\u006fG\u0072\u0069\u0064\u0073\u003a\u0020\u0061\u0063t\u0075\u0061\u006c\u0047ri\u0064\u0073",_aeafa ); -_ec .Log .Info ("\u0074\u006f\u0047\u0072\u0069\u0064\u0073\u003a\u0020\u0067\u0072\u0069\u0064\u0073\u003d%\u0064 \u0061\u0063\u0074\u0075\u0061\u006c\u0047\u0072\u0069\u0064\u0073\u003d\u0025\u0064",len (_bade ),len (_aeafa ));};return _aeafa ;};func _beeee (_fdgg ,_gbcbf float64 )bool {return _fdgg /_aa .Max (_edeeb ,_gbcbf )< _cffa }; -func _ebebc (_egad *textLine ,_bdbbb []*textLine ,_agaf []float64 )float64 {var _gdba float64 =-1;for _ ,_eefbc :=range _bdbbb {if _eefbc ._bcdg > _egad ._bcdg {if _aa .Round (_eefbc .Llx )>=_aa .Round (_egad .Llx ){_gdba =_eefbc ._bcdg ;}else {break ; -};};};return _gdba ;};func _egee (_dcd *wordBag ,_edde int )*textLine {_cbbaa :=_dcd .firstWord (_edde );_cdfgf :=textLine {PdfRectangle :_cbbaa .PdfRectangle ,_ecag :_cbbaa ._ddgee ,_bcdg :_cbbaa ._cffdg };_cdfgf .pullWord (_dcd ,_cbbaa ,_edde );return &_cdfgf ; -};func (_bcdf paraList )topoOrder ()[]int {if _eaba {_ec .Log .Info ("\u0074\u006f\u0070\u006f\u004f\u0072\u0064\u0065\u0072\u003a");};_aacba :=len (_bcdf );_ebedb :=make ([]bool ,_aacba );_bfgcd :=make ([]int ,0,_aacba );_ceefe :=_bcdf .llyOrdering (); -var _ffbb func (_acge int );_ffbb =func (_cddd int ){_ebedb [_cddd ]=true ;for _ggge :=0;_ggge < _aacba ;_ggge ++{if !_ebedb [_ggge ]{if _bcdf .readBefore (_ceefe ,_cddd ,_ggge ){_ffbb (_ggge );};};};_bfgcd =append (_bfgcd ,_cddd );};for _eabd :=0;_eabd < _aacba ; -_eabd ++{if !_ebedb [_eabd ]{_ffbb (_eabd );};};return _ccba (_bfgcd );};func (_gage *textLine )endsInHyphen ()bool {_gddbf :=_gage ._aebc [len (_gage ._aebc )-1];_dbdc :=_gddbf ._bbdb ;_afd ,_beec :=_g .DecodeLastRuneInString (_dbdc );if _beec <=0||!_de .Is (_de .Hyphen ,_afd ){return false ; -};if _gddbf ._gfffc &&_fccf (_dbdc ){return true ;};return _fccf (_gage .text ());};func _fae (_bbdd _bc .Point )*subpath {return &subpath {_gfefe :[]_bc .Point {_bbdd }}};type intSet map[int ]struct{};func _acdeg (_bggb ,_caeg _bc .Point )bool {_gceaf :=_aa .Abs (_bggb .X -_caeg .X ); -_agdab :=_aa .Abs (_bggb .Y -_caeg .Y );return _beeee (_agdab ,_gceaf );};func _beecb (_aggd *list )[]*list {var _cgea []*list ;for _ ,_fadc :=range _aggd ._gbab {switch _fadc ._ffcg {case "\u004c\u0049":_daga :=_fdecc (_fadc );_dfae :=_beecb (_fadc ); -_eddg :=_baba (_daga ,"\u0062\u0075\u006c\u006c\u0065\u0074",_dfae );_ffge :=_efaf (_daga ,"");_eddg ._dage =_ffge ;_cgea =append (_cgea ,_eddg );case "\u004c\u0042\u006fd\u0079":return _beecb (_fadc );case "\u004c":_ecda :=_beecb (_fadc );_cgea =append (_cgea ,_ecda ...); -return _cgea ;};};return _cgea ;};func _dcbf (_ddfg *textLine ,_gfee []*textLine ,_agde []float64 ,_dagdd ,_cfcb float64 )[]*textLine {_fcda :=[]*textLine {};for _ ,_ffde :=range _gfee {if _ffde ._bcdg >=_dagdd {if _cfcb !=-1&&_ffde ._bcdg < _cfcb {if _ffde .text ()!=_ddfg .text (){if _aa .Round (_ffde .Llx )< _aa .Round (_ddfg .Llx ){break ; -};_fcda =append (_fcda ,_ffde );};}else if _cfcb ==-1{if _ffde ._bcdg ==_ddfg ._bcdg {if _ffde .text ()!=_ddfg .text (){_fcda =append (_fcda ,_ffde );};continue ;};_gddg :=_ebebc (_ddfg ,_gfee ,_agde );if _gddg !=-1&&_ffde ._bcdg <=_gddg {_fcda =append (_fcda ,_ffde ); -};};};};return _fcda ;};func (_gaec *stateStack )empty ()bool {return len (*_gaec )==0};func _agce (_gbfb ,_cgeea bounded )float64 {return _deage (_gbfb )-_deage (_cgeea )};type textResult struct{_ceee PageText ;_agcc int ;_dge int ;}; - -// TableInfo gets table information of the textmark `tm`. -func (_bafd *TextMark )TableInfo ()(*TextTable ,[][]int ){if !_bafd ._ebd {return nil ,nil ;};_cfbd :=_bafd ._afe ;_bafa :=_cfbd .getCellInfo (*_bafd );return _cfbd ,_bafa ;};func _daeg (_dcabd int ,_aeef map[int ][]float64 )([]int ,int ){_dcgce :=make ([]int ,_dcabd ); -_fdcg :=0;for _cdcdd :=0;_cdcdd < _dcabd ;_cdcdd ++{_dcgce [_cdcdd ]=_fdcg ;_fdcg +=len (_aeef [_cdcdd ])+1;};return _dcgce ,_fdcg ;};var _cfgd string ="\u0028\u003f\u0069\u0029\u005e\u0028\u004d\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u0043\u0028?\u003a\u0044\u007cM\u0029\u007c\u0044\u003f\u0043{\u0030\u002c\u0033\u007d\u0029\u0028\u0058\u0028\u003f\u003a\u004c\u007c\u0043\u0029\u007cL\u003f\u0058\u007b\u0030\u002c\u0033}\u0029\u0028\u0049\u0028\u003f\u003a\u0056\u007c\u0058\u0029\u007c\u0056\u003f\u0049\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u005c\u0029\u007c\u005c\u002e\u0029\u007c\u005e\u005c\u0028\u0028\u004d\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u0043\u0028\u003f\u003aD\u007cM\u0029\u007c\u0044\u003f\u0043\u007b\u0030\u002c\u0033\u007d\u0029\u0028\u0058\u0028?\u003a\u004c\u007c\u0043\u0029\u007c\u004c?\u0058\u007b0\u002c\u0033\u007d\u0029(\u0049\u0028\u003f\u003a\u0056|\u0058\u0029\u007c\u0056\u003f\u0049\u007b\u0030\u002c\u0033\u007d\u0029\u005c\u0029"; - +func (_eead *ruling )String ()string {if _eead ._cffe ==_eefaf {return "\u004e\u004f\u0054\u0020\u0052\u0055\u004c\u0049\u004e\u0047";};_dcce ,_bcce :="\u0078","\u0079";if _eead ._cffe ==_bdfd {_dcce ,_bcce ="\u0079","\u0078";};_ababb :="";if _eead ._fdde !=0.0{_ababb =_cfe .Sprintf (" \u0077\u0069\u0064\u0074\u0068\u003d\u0025\u002e\u0032\u0066",_eead ._fdde ); +};return _cfe .Sprintf ("\u0025\u00310\u0073\u0020\u0025\u0073\u003d\u0025\u0036\u002e\u0032\u0066\u0020\u0025\u0073\u003d\u0025\u0036\u002e\u0032\u0066\u0020\u002d\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0028\u0025\u0036\u002e\u0032\u0066\u0029\u0020\u0025\u0073\u0020\u0025\u0076\u0025\u0073",_eead ._cffe ,_dcce ,_eead ._abfg ,_bcce ,_eead ._daag ,_eead ._fcff ,_eead ._fcff -_eead ._daag ,_eead ._bbge ,_eead .Color ,_ababb ); +};func (_ddfff *textTable )subdivide ()*textTable {_ddfff .logComposite ("\u0073u\u0062\u0064\u0069\u0076\u0069\u0064e");_ebaec :=_ddfff .compositeRowCorridors ();_dfab :=_ddfff .compositeColCorridors ();if _geff {_ed .Log .Info ("\u0073u\u0062\u0064i\u0076\u0069\u0064\u0065:\u000a\u0009\u0072o\u0077\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072s=\u0025\u0073\u000a\t\u0063\u006fl\u0043\u006f\u0072\u0072\u0069\u0064o\u0072\u0073=\u0025\u0073",_fgag (_ebaec ),_fgag (_dfab )); +};if len (_ebaec )==0||len (_dfab )==0{return _ddfff ;};_bcgfca (_ebaec );_bcgfca (_dfab );if _geff {_ed .Log .Info ("\u0073\u0075\u0062\u0064\u0069\u0076\u0069\u0064\u0065\u0020\u0066\u0069\u0078\u0065\u0064\u003a\u000a\u0009r\u006f\u0077\u0043\u006f\u0072\u0072\u0069d\u006f\u0072\u0073\u003d\u0025\u0073\u000a\u0009\u0063\u006f\u006cC\u006f\u0072\u0072\u0069\u0064\u006f\u0072\u0073\u003d\u0025\u0073",_fgag (_ebaec ),_fgag (_dfab )); +};_cccf ,_fdcae :=_dcfc (_ddfff ._dege ,_ebaec );_adafb ,_aceg :=_dcfc (_ddfff ._fccgee ,_dfab );_edefa :=make (map[uint64 ]*textPara ,_aceg *_fdcae );_dced :=&textTable {PdfRectangle :_ddfff .PdfRectangle ,_baccf :_ddfff ._baccf ,_dege :_fdcae ,_fccgee :_aceg ,_adda :_edefa }; +if _geff {_ed .Log .Info ("\u0073\u0075b\u0064\u0069\u0076\u0069\u0064\u0065\u003a\u0020\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u0020\u003d\u0020\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u0020\u0063\u0065\u006c\u006c\u0073\u003d\u0020\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u000a"+"\u0009\u0072\u006f\u0077\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072s\u003d\u0025\u0073\u000a"+"\u0009\u0063\u006f\u006c\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072s\u003d\u0025\u0073\u000a"+"\u0009\u0079\u004f\u0066\u0066\u0073\u0065\u0074\u0073=\u0025\u002b\u0076\u000a"+"\u0009\u0078\u004f\u0066\u0066\u0073\u0065\u0074\u0073\u003d\u0025\u002b\u0076",_ddfff ._fccgee ,_ddfff ._dege ,_aceg ,_fdcae ,_fgag (_ebaec ),_fgag (_dfab ),_cccf ,_adafb ); +};for _cfbb :=0;_cfbb < _ddfff ._dege ;_cfbb ++{_aedaa :=_cccf [_cfbb ];for _fafe :=0;_fafe < _ddfff ._fccgee ;_fafe ++{_ecfca :=_adafb [_fafe ];if _geff {_cfe .Printf ("\u0025\u0036\u0064\u002c %\u0032\u0064\u003a\u0020\u0078\u0030\u003d\u0025\u0064\u0020\u0079\u0030\u003d\u0025d\u000a",_fafe ,_cfbb ,_ecfca ,_aedaa ); +};_dggc ,_eecf :=_ddfff ._faeg [_aafb (_fafe ,_cfbb )];if !_eecf {continue ;};_gfbef :=_dggc .split (_ebaec [_cfbb ],_dfab [_fafe ]);for _dcbe :=0;_dcbe < _gfbef ._dege ;_dcbe ++{for _bfdca :=0;_bfdca < _gfbef ._fccgee ;_bfdca ++{_abcb :=_gfbef .get (_bfdca ,_dcbe ); +_dced .put (_ecfca +_bfdca ,_aedaa +_dcbe ,_abcb );if _geff {_cfe .Printf ("\u0025\u0038\u0064\u002c\u0020\u0025\u0032\u0064\u003a\u0020\u0025\u0073\u000a",_ecfca +_bfdca ,_aedaa +_dcbe ,_abcb );};};};};};return _dced ;};func (_dea *textObject )setTextMatrix (_dag []float64 ){if len (_dag )!=6{_ed .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u006c\u0065\u006e\u0028\u0066\u0029\u0020\u0021\u003d\u0020\u0036\u0020\u0028\u0025\u0064\u0029",len (_dag )); +return ;};_ggc ,_edfd ,_ace ,_gbbc ,_aecf ,_gac :=_dag [0],_dag [1],_dag [2],_dag [3],_dag [4],_dag [5];_dea ._ffb =_cc .NewMatrix (_ggc ,_edfd ,_ace ,_gbbc ,_aecf ,_gac );_dea ._ddge =_dea ._ffb ;};func (_cdgg *textLine )endsInHyphen ()bool {_ggad :=_cdgg ._bfca [len (_cdgg ._bfca )-1]; +_cbdb :=_ggad ._bcfea ;_eacb ,_efff :=_cb .DecodeLastRuneInString (_cbdb );if _efff <=0||!_ac .Is (_ac .Hyphen ,_eacb ){return false ;};if _ggad ._cacca &&_dcebc (_cbdb ){return true ;};return _dcebc (_cdgg .text ());}; // Font represents the font properties on a PDF page. -type Font struct{PdfFont *_ce .PdfFont ; +type Font struct{PdfFont *_gb .PdfFont ; // FontName represents Font Name from font properties. FontName string ; @@ -469,524 +962,32 @@ FontData []byte ; FontFileName string ; // FontDescriptor represents metrics and other attributes inside font properties from PDF Structure (Font Descriptor). -FontDescriptor *_ce .PdfFontDescriptor ;};func (_fdeef *textPara )writeCellText (_cbfec _a .Writer ){for _abff ,_defb :=range _fdeef ._bdbcg {_efgg :=_defb .text ();_gaadf :=_dcgd &&_defb .endsInHyphen ()&&_abff !=len (_fdeef ._bdbcg )-1;if _gaadf {_efgg =_edcg (_efgg ); -};_cbfec .Write ([]byte (_efgg ));if !(_gaadf ||_abff ==len (_fdeef ._bdbcg )-1){_cbfec .Write ([]byte (_dcgbg (_defb ._bcdg ,_fdeef ._bdbcg [_abff +1]._bcdg )));};};};func (_gefgf *textTable )toTextTable ()TextTable {if _afcg {_ec .Log .Info ("t\u006fT\u0065\u0078\u0074\u0054\u0061\u0062\u006c\u0065:\u0020\u0025\u0064\u0020x \u0025\u0064",_gefgf ._ecbf ,_gefgf ._dcfg ); -};_bgga :=make ([][]TableCell ,_gefgf ._dcfg );for _cdbe :=0;_cdbe < _gefgf ._dcfg ;_cdbe ++{_bgga [_cdbe ]=make ([]TableCell ,_gefgf ._ecbf );for _gcbe :=0;_gcbe < _gefgf ._ecbf ;_gcbe ++{_egdc :=_gefgf .get (_gcbe ,_cdbe );if _egdc ==nil {continue ;}; -if _afcg {_ge .Printf ("\u0025\u0034\u0064 \u0025\u0032\u0064\u003a\u0020\u0025\u0073\u000a",_gcbe ,_cdbe ,_egdc );};_bgga [_cdbe ][_gcbe ].Text =_egdc .text ();_adbcf :=0;_bgga [_cdbe ][_gcbe ].Marks ._dec =_egdc .toTextMarks (&_adbcf );};};_gdaaf :=TextTable {W :_gefgf ._ecbf ,H :_gefgf ._dcfg ,Cells :_bgga }; -_gdaaf .PdfRectangle =_gefgf .bbox ();return _gdaaf ;};var _fdgf =map[markKind ]string {_gbffb :"\u0073\u0074\u0072\u006f\u006b\u0065",_eecbc :"\u0066\u0069\u006c\u006c",_cgacb :"\u0061u\u0067\u006d\u0065\u006e\u0074"};func (_bfc *imageExtractContext )extractContentStreamImages (_ae string ,_fgf *_ce .PdfPageResources )error {_dfca :=_ag .NewContentStreamParser (_ae ); -_cea ,_ga :=_dfca .Parse ();if _ga !=nil {return _ga ;};if _bfc ._aabe ==nil {_bfc ._aabe =map[*_gb .PdfObjectStream ]*cachedImage {};};if _bfc ._cef ==nil {_bfc ._cef =&ImageExtractOptions {};};_dbe :=_ag .NewContentStreamProcessor (*_cea );_dbe .AddHandler (_ag .HandlerConditionEnumAllOperands ,"",_bfc .processOperand ); -return _dbe .Process (_fgf );};func _cbbae (_ffda []*textLine ,_cagca map[float64 ][]*textLine )[]*list {_acf :=_bcfe (_cagca );_ccgd :=[]*list {};if len (_acf )==0{return _ccgd ;};_facd :=_acf [0];_eebg :=1;_eeda :=_cagca [_facd ];for _gaad ,_dbgd :=range _eeda {var _bdcd float64 ; -_bafaa :=[]*list {};_caacf :=_dbgd ._bcdg ;_gcdd :=-1.0;if _gaad < len (_eeda )-1{_gcdd =_eeda [_gaad +1]._bcdg ;};if _eebg < len (_acf ){_bafaa =_deca (_ffda ,_cagca ,_acf ,_eebg ,_caacf ,_gcdd );};_bdcd =_gcdd ;if len (_bafaa )> 0{_eaff :=_bafaa [0]; -if len (_eaff ._ggdb )> 0{_bdcd =_eaff ._ggdb [0]._bcdg ;};};_cbbe :=[]*textLine {_dbgd };_cadg :=_dcbf (_dbgd ,_ffda ,_acf ,_caacf ,_bdcd );_cbbe =append (_cbbe ,_cadg ...);_aeba :=_baba (_cbbe ,"\u0062\u0075\u006c\u006c\u0065\u0074",_bafaa );_aeba ._dage =_efaf (_cbbe ,""); -_ccgd =append (_ccgd ,_aeba );};return _ccgd ;};func (_geff *ruling )intersects (_dbfa *ruling )bool {_acbf :=(_geff ._bfbc ==_ebdaf &&_dbfa ._bfbc ==_ecac )||(_dbfa ._bfbc ==_ebdaf &&_geff ._bfbc ==_ecac );_dbce :=func (_fdgab ,_aceg *ruling )bool {return _fdgab ._cebe -_ebbf <=_aceg ._abbgc &&_aceg ._abbgc <=_fdgab ._deee +_ebbf ; -};_cfge :=_dbce (_geff ,_dbfa );_ggdd :=_dbce (_dbfa ,_geff );if _gfgc {_ge .Printf ("\u0020\u0020\u0020\u0020\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074\u0073\u003a\u0020\u0020\u006fr\u0074\u0068\u006f\u0067\u006f\u006e\u0061l\u003d\u0025\u0074\u0020\u006f\u0031\u003d\u0025\u0074\u0020\u006f2\u003d\u0025\u0074\u0020\u2192\u0020\u0025\u0074\u000a"+"\u0020\u0020\u0020 \u0020\u0020\u0020\u0076\u003d\u0025\u0073\u000a"+" \u0020\u0020\u0020\u0020\u0020\u0077\u003d\u0025\u0073\u000a",_acbf ,_cfge ,_ggdd ,_acbf &&_cfge &&_ggdd ,_geff ,_dbfa ); -};return _acbf &&_cfge &&_ggdd ;};func (_bcfa *textObject )setTextRise (_dfga float64 ){if _bcfa ==nil {return ;};_bcfa ._befa ._gegg =_dfga ;};func (_baa *textObject )setFont (_dedfd string ,_gcbc float64 )error {if _baa ==nil {return nil ;};_baa ._befa ._ccf =_gcbc ; -_dffb ,_ggea :=_baa .getFont (_dedfd );if _ggea !=nil {return _ggea ;};_baa ._befa ._badfc =_dffb ;return nil ;};func (_bdec rulingList )intersections ()map[int ]intSet {var _eebc ,_bcab []int ;for _fabga ,_aebab :=range _bdec {switch _aebab ._bfbc {case _ebdaf :_eebc =append (_eebc ,_fabga ); -case _ecac :_bcab =append (_bcab ,_fabga );};};if len (_eebc )< _cbbb +1||len (_bcab )< _acgd +1{return nil ;};if len (_eebc )+len (_bcab )> _fcae {_ec .Log .Debug ("\u0069\u006e\u0074\u0065\u0072\u0073e\u0063\u0074\u0069\u006f\u006e\u0073\u003a\u0020\u0054\u004f\u004f\u0020\u004d\u0041\u004e\u0059\u0020\u0072\u0075\u006ci\u006e\u0067\u0073\u0020\u0076\u0065\u0063\u0073\u003d\u0025\u0064\u0020\u003d\u0020%\u0064 \u0078\u0020\u0025\u0064",len (_bdec ),len (_eebc ),len (_bcab )); -return nil ;};_geeb :=make (map[int ]intSet ,len (_eebc )+len (_bcab ));for _ ,_dbgg :=range _eebc {for _ ,_agdd :=range _bcab {if _bdec [_dbgg ].intersects (_bdec [_agdd ]){if _ ,_baac :=_geeb [_dbgg ];!_baac {_geeb [_dbgg ]=make (intSet );};if _ ,_fage :=_geeb [_agdd ]; -!_fage {_geeb [_agdd ]=make (intSet );};_geeb [_dbgg ].add (_agdd );_geeb [_agdd ].add (_dbgg );};};};return _geeb ;};func (_dbff rulingList )aligned ()bool {if len (_dbff )< 2{return false ;};_edce :=make (map[*ruling ]int );_edce [_dbff [0]]=0;for _ ,_dddgg :=range _dbff [1:]{_fggg :=false ; -for _bfffe :=range _edce {if _dddgg .gridIntersecting (_bfffe ){_edce [_bfffe ]++;_fggg =true ;break ;};};if !_fggg {_edce [_dddgg ]=0;};};_bgbf :=0;for _ ,_aabb :=range _edce {if _aabb ==0{_bgbf ++;};};_gafdc :=float64 (_bgbf )/float64 (len (_dbff )); -_cbacg :=_gafdc <=1.0-_cfea ;if _gfgc {_ec .Log .Info ("\u0061\u006c\u0069\u0067\u006e\u0065\u0064\u003d\u0025\u0074\u0020\u0075\u006em\u0061\u0074\u0063\u0068\u0065\u0064=\u0025\u002e\u0032\u0066\u003d\u0025\u0064\u002f\u0025\u0064\u0020\u0076\u0065c\u0073\u003d\u0025\u0073",_cbacg ,_gafdc ,_bgbf ,len (_dbff ),_dbff .String ()); -};return _cbacg ;};func (_aafe rulingList )connections (_abfa map[int ]intSet ,_bacg int )intSet {_dbee :=make (intSet );_fdeca :=make (intSet );var _agdb func (int );_agdb =func (_fdaf int ){if !_fdeca .has (_fdaf ){_fdeca .add (_fdaf );for _eeabg :=range _aafe {if _abfa [_eeabg ].has (_fdaf ){_dbee .add (_eeabg ); -};};for _bege :=range _aafe {if _dbee .has (_bege ){_agdb (_bege );};};};};_agdb (_bacg );return _dbee ;};func _fabgb (_cfbb ,_dcac bounded )float64 {_gfeg :=_fabg (_cfbb ,_dcac );if !_ffegg (_gfeg ){return _gfeg ;};return _agce (_cfbb ,_dcac );};func (_dccd *shapesState )lineTo (_cbc ,_faac float64 ){if _cbag {_ec .Log .Info ("\u006c\u0069\u006eeT\u006f\u0028\u0025\u002e\u0032\u0066\u002c\u0025\u002e\u0032\u0066\u0020\u0070\u003d\u0025\u002e\u0032\u0066",_cbc ,_faac ,_dccd .devicePoint (_cbc ,_faac )); -};_dccd .addPoint (_cbc ,_faac );};func (_dgdg *subpath )close (){if !_dcbd (_dgdg ._gfefe [0],_dgdg .last ()){_dgdg .add (_dgdg ._gfefe [0]);};_dgdg ._cgde =true ;_dgdg .removeDuplicates ();}; - -// ExtractFonts returns all font information from the page extractor, including -// font name, font type, the raw data of the embedded font file (if embedded), font descriptor and more. -// -// The argument `previousPageFonts` is used when trying to build a complete font catalog for multiple pages or the entire document. -// The entries from `previousPageFonts` are added to the returned result unless already included in the page, i.e. no duplicate entries. -// -// NOTE: If previousPageFonts is nil, all fonts from the page will be returned. Use it when building up a full list of fonts for a document or page range. -func (_cg *Extractor )ExtractFonts (previousPageFonts *PageFonts )(*PageFonts ,error ){_fb :=PageFonts {};_gcg :=_fb .extractPageResourcesToFont (_cg ._ab );if _gcg !=nil {return nil ,_gcg ;};if previousPageFonts !=nil {for _ ,_cbb :=range previousPageFonts .Fonts {if !_efg (_fb .Fonts ,_cbb .FontName ){_fb .Fonts =append (_fb .Fonts ,_cbb ); -};};};return &PageFonts {Fonts :_fb .Fonts },nil ;};func (_ggag *shapesState )clearPath (){_ggag ._abgb =nil ;_ggag ._edee =false ;if _cbag {_ec .Log .Info ("\u0043\u004c\u0045A\u0052\u003a\u0020\u0073\u0073\u003d\u0025\u0073",_ggag );};};func _bdbf (_cgca []*textLine ,_bbgd ,_ebab float64 )[]*textLine {var _cdga []*textLine ; -for _ ,_ddfcf :=range _cgca {if _bbgd ==-1{if _ddfcf ._bcdg > _ebab {_cdga =append (_cdga ,_ddfcf );};}else {if _ddfcf ._bcdg > _ebab &&_ddfcf ._bcdg < _bbgd {_cdga =append (_cdga ,_ddfcf );};};};return _cdga ;}; - -// String returns a human readable description of `path`. -func (_ccfa *subpath )String ()string {_dagd :=_ccfa ._gfefe ;_cged :=len (_dagd );if _cged <=5{return _ge .Sprintf ("\u0025d\u003a\u0020\u0025\u0036\u002e\u0032f",_cged ,_dagd );};return _ge .Sprintf ("\u0025d\u003a\u0020\u0025\u0036.\u0032\u0066\u0020\u0025\u0036.\u0032f\u0020.\u002e\u002e\u0020\u0025\u0036\u002e\u0032f",_cged ,_dagd [0],_dagd [1],_dagd [_cged -1]); -};func (_egccc *ruling )encloses (_cbaf ,_gefeb float64 )bool {return _egccc ._cebe -_ebbf <=_cbaf &&_gefeb <=_egccc ._deee +_ebbf ;};func (_eecf paraList )findTables (_bgfa []gridTiling )[]*textTable {_eecf .addNeighbours ();_c .Slice (_eecf ,func (_adbee ,_acda int )bool {return _fabgb (_eecf [_adbee ],_eecf [_acda ])< 0}); -var _fedga []*textTable ;if _dacb {_abffb :=_eecf .findGridTables (_bgfa );_fedga =append (_fedga ,_abffb ...);};if _eccc {_cbfdf :=_eecf .findTextTables ();_fedga =append (_fedga ,_cbfdf ...);};return _fedga ;};func (_ggceb *textObject )getCurrentFont ()*_ce .PdfFont {_ccea :=_ggceb ._befa ._badfc ; -if _ccea ==nil {_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u002e\u0020U\u0073\u0069\u006e\u0067\u0020d\u0065\u0066a\u0075\u006c\u0074\u002e");return _ce .DefaultFont (); -};return _ccea ;};func (_ababb *textPara )toCellTextMarks (_baaeb *int )[]TextMark {var _bcga []TextMark ;for _fcgfag ,_cgcff :=range _ababb ._bdbcg {_bfff :=_cgcff .toTextMarks (_baaeb );_debac :=_dcgd &&_cgcff .endsInHyphen ()&&_fcgfag !=len (_ababb ._bdbcg )-1; -if _debac {_bfff =_gaagg (_bfff ,_baaeb );};_bcga =append (_bcga ,_bfff ...);if !(_debac ||_fcgfag ==len (_ababb ._bdbcg )-1){_bcga =_cacf (_bcga ,_baaeb ,_dcgbg (_cgcff ._bcdg ,_ababb ._bdbcg [_fcgfag +1]._bcdg ));};};return _bcga ;};const (_fad =false ; -_cfgg =false ;_acab =false ;_fgba =false ;_cbag =false ;_dggee =false ;_becc =false ;_eaba =false ;_egd =false ;_eeg =_egd &&true ;_aacb =_eeg &&false ;_fbfc =_egd &&true ;_afcg =false ;_dcedc =_afcg &&false ;_fefa =_afcg &&true ;_gfgc =false ;_deaga =_gfgc &&false ; -_fcfe =_gfgc &&false ;_bea =_gfgc &&true ;_feceb =_gfgc &&false ;_aecc =_gfgc &&false ;);func _geedc (_aeda _ce .PdfRectangle ,_baed ,_deaab ,_afdbf ,_gdaac *ruling )gridTile {_bfgb :=_aeda .Llx ;_dfdgd :=_aeda .Urx ;_defe :=_aeda .Lly ;_facca :=_aeda .Ury ; -return gridTile {PdfRectangle :_aeda ,_ebdg :_baed !=nil &&_baed .encloses (_defe ,_facca ),_ebga :_deaab !=nil &&_deaab .encloses (_defe ,_facca ),_ddbaf :_afdbf !=nil &&_afdbf .encloses (_bfgb ,_dfdgd ),_fgde :_gdaac !=nil &&_gdaac .encloses (_bfgb ,_dfdgd )}; -};func (_feca *ruling )gridIntersecting (_acfc *ruling )bool {return _gecae (_feca ._cebe ,_acfc ._cebe )&&_gecae (_feca ._deee ,_acfc ._deee );};func (_bagd gridTile )numBorders ()int {_egecc :=0;if _bagd ._ebdg {_egecc ++;};if _bagd ._ebga {_egecc ++; -};if _bagd ._ddbaf {_egecc ++;};if _bagd ._fgde {_egecc ++;};return _egecc ;};const (_dcgd =true ;_cafd =true ;_efbf =true ;_dbde =false ;_gaee =false ;_gafd =6;_aedg =3.0;_abgc =200;_dacb =true ;_eccc =true ;_gfag =true ;_dbbc =true ;_gdcg =false ;);func _cedg (_gbfd *wordBag ,_deagd *textWord ,_dbbb float64 )bool {return _gbfd .Urx <=_deagd .Llx &&_deagd .Llx < _gbfd .Urx +_dbbb ; -};func (_ccd *textObject )setHorizScaling (_ecd float64 ){if _ccd ==nil {return ;};_ccd ._befa ._gdc =_ecd ;};func _deage (_bfbb bounded )float64 {return -_bfbb .bbox ().Lly };func _bcfe (_fbba map[float64 ][]*textLine )[]float64 {_ecde :=[]float64 {}; -for _aaaa :=range _fbba {_ecde =append (_ecde ,_aaaa );};_c .Float64s (_ecde );return _ecde ;};func (_babgb *textObject )newTextMark (_fagg string ,_aeea _bc .Matrix ,_edae _bc .Point ,_bfdfg float64 ,_dbbf *_ce .PdfFont ,_cccb float64 ,_dbbce ,_becca _fg .Color ,_cffd _gb .PdfObject ,_cefgg []string ,_fbae int ,_gcfe int )(textMark ,bool ){_gaeec :=_aeea .Angle (); -_ceefg :=_fgabc (_gaeec ,_fafa );var _caefe float64 ;if _ceefg %180!=90{_caefe =_aeea .ScalingFactorY ();}else {_caefe =_aeea .ScalingFactorX ();};_gbdaa :=_afb (_aeea );_fcdd :=_ce .PdfRectangle {Llx :_gbdaa .X ,Lly :_gbdaa .Y ,Urx :_edae .X ,Ury :_edae .Y }; -switch _ceefg %360{case 90:_fcdd .Urx -=_caefe ;case 180:_fcdd .Ury -=_caefe ;case 270:_fcdd .Urx +=_caefe ;case 0:_fcdd .Ury +=_caefe ;default:_ceefg =0;_fcdd .Ury +=_caefe ;};if _fcdd .Llx > _fcdd .Urx {_fcdd .Llx ,_fcdd .Urx =_fcdd .Urx ,_fcdd .Llx ; -};if _fcdd .Lly > _fcdd .Ury {_fcdd .Lly ,_fcdd .Ury =_fcdd .Ury ,_fcdd .Lly ;};_adbec :=true ;if _babgb ._bgcb ._gda .Width ()> 0{_facc ,_gbfe :=_cad (_fcdd ,_babgb ._bgcb ._gda );if !_gbfe {_adbec =false ;_ec .Log .Debug ("\u0054\u0065\u0078\u0074\u0020m\u0061\u0072\u006b\u0020\u006f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0070a\u0067\u0065\u002e\u0020\u0062\u0062\u006f\u0078\u003d\u0025\u0067\u0020\u006d\u0065\u0064\u0069\u0061\u0042\u006f\u0078\u003d\u0025\u0067\u0020\u0074\u0065\u0078\u0074\u003d\u0025q",_fcdd ,_babgb ._bgcb ._gda ,_fagg ); -};_fcdd =_facc ;};_fffda :=_fcdd ;_aacf :=_babgb ._bgcb ._gda ;switch _ceefg %360{case 90:_aacf .Urx ,_aacf .Ury =_aacf .Ury ,_aacf .Urx ;_fffda =_ce .PdfRectangle {Llx :_aacf .Urx -_fcdd .Ury ,Urx :_aacf .Urx -_fcdd .Lly ,Lly :_fcdd .Llx ,Ury :_fcdd .Urx }; -case 180:_fffda =_ce .PdfRectangle {Llx :_aacf .Urx -_fcdd .Llx ,Urx :_aacf .Urx -_fcdd .Urx ,Lly :_aacf .Ury -_fcdd .Lly ,Ury :_aacf .Ury -_fcdd .Ury };case 270:_aacf .Urx ,_aacf .Ury =_aacf .Ury ,_aacf .Urx ;_fffda =_ce .PdfRectangle {Llx :_fcdd .Ury ,Urx :_fcdd .Lly ,Lly :_aacf .Ury -_fcdd .Llx ,Ury :_aacf .Ury -_fcdd .Urx }; -};if _fffda .Llx > _fffda .Urx {_fffda .Llx ,_fffda .Urx =_fffda .Urx ,_fffda .Llx ;};if _fffda .Lly > _fffda .Ury {_fffda .Lly ,_fffda .Ury =_fffda .Ury ,_fffda .Lly ;};_ecdb :=textMark {_ecaa :_fagg ,PdfRectangle :_fffda ,_aefef :_fcdd ,_bcdb :_dbbf ,_bfaca :_caefe ,_cgdb :_cccb ,_dadd :_aeea ,_feea :_edae ,_edge :_ceefg ,_abgd :_dbbce ,_eedd :_becca ,_bfade :_cffd ,_fcdc :_cefgg ,Th :_babgb ._befa ._gdc ,Tw :_babgb ._befa ._eag ,_fefe :_gcfe ,_beaa :_fbae }; -if _cfgg {_ec .Log .Info ("n\u0065\u0077\u0054\u0065\u0078\u0074M\u0061\u0072\u006b\u003a\u0020\u0073t\u0061\u0072\u0074\u003d\u0025\u002e\u0032f\u0020\u0065\u006e\u0064\u003d\u0025\u002e\u0032\u0066\u0020%\u0073",_gbdaa ,_edae ,_ecdb .String ());};return _ecdb ,_adbec ; -}; +FontDescriptor *_gb .PdfFontDescriptor ;};func (_bcae *wordBag )highestWord (_bdgd int ,_acge ,_bed float64 )*textWord {for _ ,_cbga :=range _bcae ._gegc [_bdgd ]{if _acge <=_cbga ._cbfcee &&_cbga ._cbfcee <=_bed {return _cbga ;};};return nil ;};func _bcgfca (_ffba map[int ][]float64 ){if len (_ffba )<=1{return ; +};_ecfab :=_dgce (_ffba );if _geff {_ed .Log .Info ("\u0066i\u0078C\u0065\u006c\u006c\u0073\u003a \u006b\u0065y\u0073\u003d\u0025\u002b\u0076",_ecfab );};var _dacdf ,_egdb int ;for _dacdf ,_egdb =range _ecfab {if _ffba [_egdb ]!=nil {break ;};};for _gegbe ,_becdd :=range _ecfab [_dacdf :]{_ggcg :=_ffba [_becdd ]; +if _ggcg ==nil {continue ;};if _geff {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u006b\u0030\u003d\u0025\u0064\u0020\u006b1\u003d\u0025\u0064\u000a",_dacdf +_gegbe ,_egdb ,_becdd );};_cbbab :=_ffba [_becdd ];if _cbbab [len (_cbbab )-1]> _ggcg [0]{_cbbab [len (_cbbab )-1]=_ggcg [0]; +_ffba [_egdb ]=_cbbab ;};_egdb =_becdd ;};};func _eaag (_bdcf []*textLine )[]*textLine {_fdef :=[]*textLine {};for _ ,_bcccc :=range _bdcf {_ccbe :=_bcccc .text ();_dadg :=_aaeg .Find ([]byte (_ccbe ));if _dadg !=nil {_fdef =append (_fdef ,_bcccc );};}; +return _fdef ;};func (_egeab rulingList )tidied (_eeedd string )rulingList {_daga :=_egeab .removeDuplicates ();_daga .log ("\u0075n\u0069\u0071\u0075\u0065\u0073");_adfc :=_daga .snapToGroups ();if _adfc ==nil {return nil ;};_adfc .sort ();if _geaeg {_ed .Log .Info ("\u0074\u0069\u0064i\u0065\u0064\u003a\u0020\u0025\u0071\u0020\u0076\u0065\u0063\u0073\u003d\u0025\u0064\u0020\u0075\u006e\u0069\u0071\u0075\u0065\u0073\u003d\u0025\u0064\u0020\u0063\u006f\u0061l\u0065\u0073\u0063\u0065\u0064\u003d\u0025\u0064",_eeedd ,len (_egeab ),len (_daga ),len (_adfc )); +};_adfc .log ("\u0063o\u0061\u006c\u0065\u0073\u0063\u0065d");return _adfc ;};func (_ggdb *textLine )appendWord (_feea *textWord ){_ggdb ._bfca =append (_ggdb ._bfca ,_feea );_ggdb .PdfRectangle =_fde (_ggdb .PdfRectangle ,_feea .PdfRectangle );if _feea ._fgdbd > _ggdb ._egbd {_ggdb ._egbd =_feea ._fgdbd ; +};if _feea ._cbfcee > _ggdb ._bdbg {_ggdb ._bdbg =_feea ._cbfcee ;};};func _bbcee (_eddac []*textMark ,_ddcef _gb .PdfRectangle )*textWord {_affee :=_eddac [0].PdfRectangle ;_dfbbbf :=_eddac [0]._gded ;for _ ,_egda :=range _eddac [1:]{_affee =_fde (_affee ,_egda .PdfRectangle ); +if _egda ._gded > _dfbbbf {_dfbbbf =_egda ._gded ;};};return &textWord {PdfRectangle :_affee ,_fdgbc :_eddac ,_cbfcee :_ddcef .Ury -_affee .Lly ,_fgdbd :_dfbbbf };};func (_dbaa paraList )findTextTables ()[]*textTable {var _cdcge []*textTable ;for _ ,_agebe :=range _dbaa {if _agebe .taken ()||_agebe .Width ()==0{continue ; +};_ggdc :=_agebe .isAtom ();if _ggdc ==nil {continue ;};_ggdc .growTable ();if _ggdc ._fccgee *_ggdc ._dege < _dgea {continue ;};_ggdc .markCells ();_ggdc .log ("\u0067\u0072\u006fw\u006e");_cdcge =append (_cdcge ,_ggdc );};return _cdcge ;};func _dbbg (_ebaef *wordBag ,_beeg *textWord ,_bdcd float64 )bool {return _ebaef .Urx <=_beeg .Llx &&_beeg .Llx < _ebaef .Urx +_bdcd ; +};func (_fgcf *shapesState )quadraticTo (_ffaa ,_dfbf ,_eeab ,_fdfg float64 ){if _dgeg {_ed .Log .Info ("\u0071\u0075\u0061d\u0072\u0061\u0074\u0069\u0063\u0054\u006f\u003a");};_fgcf .addPoint (_eeab ,_fdfg );};func (_eaab *compositeCell )updateBBox (){for _ ,_fagg :=range _eaab .paraList {_eaab .PdfRectangle =_fde (_eaab .PdfRectangle ,_fagg .PdfRectangle ); +};};func (_ecef paraList )reorder (_aagcd []int ){_caccb :=make (paraList ,len (_ecef ));for _acbb ,_agfe :=range _aagcd {_caccb [_acbb ]=_ecef [_agfe ];};copy (_ecef ,_caccb );};func _daefa (_gcbf ,_cegc bounded )float64 {return _gcbf .bbox ().Llx -_cegc .bbox ().Urx }; -// String returns a string describing the current state of the textState stack. -func (_bcbg *stateStack )String ()string {_ceb :=[]string {_ge .Sprintf ("\u002d\u002d\u002d\u002d f\u006f\u006e\u0074\u0020\u0073\u0074\u0061\u0063\u006b\u003a\u0020\u0025\u0064",len (*_bcbg ))};for _gdda ,_ggca :=range *_bcbg {_dbcf :="\u003c\u006e\u0069l\u003e"; -if _ggca !=nil {_dbcf =_ggca .String ();};_ceb =append (_ceb ,_ge .Sprintf ("\u0009\u0025\u0032\u0064\u003a\u0020\u0025\u0073",_gdda ,_dbcf ));};return _gd .Join (_ceb ,"\u000a");};func (_ffb *textObject )setTextLeading (_dbdd float64 ){if _ffb ==nil {return ; -};_ffb ._befa ._dcc =_dbdd ;};func (_beeb paraList )findTableGrid (_bafeb gridTiling )(*textTable ,map[*textPara ]struct{}){_dcfgf :=len (_bafeb ._cgecb );_agcf :=len (_bafeb ._agbb );_feeee :=textTable {_beaeg :true ,_ecbf :_dcfgf ,_dcfg :_agcf ,_gcbga :make (map[uint64 ]*textPara ,_dcfgf *_agcf ),_egfe :make (map[uint64 ]compositeCell ,_dcfgf *_agcf )}; -_feeee .PdfRectangle =_bafeb .PdfRectangle ;_aggdd :=make (map[*textPara ]struct{});_dfda :=int ((1.0-_fbbd )*float64 (_dcfgf *_agcf ));_cafc :=0;if _bea {_ec .Log .Info ("\u0066\u0069\u006e\u0064Ta\u0062\u006c\u0065\u0047\u0072\u0069\u0064\u003a\u0020\u0025\u0064\u0020\u0078\u0020%\u0064",_dcfgf ,_agcf ); -};for _fadgf ,_acaa :=range _bafeb ._agbb {_gfcgc ,_ddaag :=_bafeb ._bage [_acaa ];if !_ddaag {continue ;};for _efgf ,_aaedd :=range _bafeb ._cgecb {_dfbg ,_fcab :=_gfcgc [_aaedd ];if !_fcab {continue ;};_fgdg :=_beeb .inTile (_dfbg );if len (_fgdg )==0{_cafc ++; -if _cafc > _dfda {if _bea {_ec .Log .Info ("\u0021\u006e\u0075m\u0045\u006d\u0070\u0074\u0079\u003d\u0025\u0064",_cafc );};return nil ,nil ;};}else {_feeee .putComposite (_efgf ,_fadgf ,_fgdg ,_dfbg .PdfRectangle );for _ ,_cgeg :=range _fgdg {_aggdd [_cgeg ]=struct{}{}; -};};};};_ddgb :=0;for _bbba :=0;_bbba < _dcfgf ;_bbba ++{_fgfd :=_feeee .get (_bbba ,0);if _fgfd ==nil ||!_fgfd ._bedf {_ddgb ++;};};if _ddgb ==0{if _bea {_ec .Log .Info ("\u0021\u006e\u0075m\u0048\u0065\u0061\u0064\u0065\u0072\u003d\u0030");};return nil ,nil ; -};_dfdd :=_feeee .reduceTiling (_bafeb ,_ffee );_dfdd =_dfdd .subdivide ();return _dfdd ,_aggdd ;};func (_faggb *textTable )isExportable ()bool {if _faggb ._beaeg {return true ;};_aefbe :=func (_eebf int )bool {_ggcbc :=_faggb .get (0,_eebf );if _ggcbc ==nil {return false ; -};_gddf :=_ggcbc .text ();_bgdcb :=_g .RuneCountInString (_gddf );_eeaea :=_eeggd .MatchString (_gddf );return _bgdcb <=1||_eeaea ;};for _ecbag :=0;_ecbag < _faggb ._dcfg ;_ecbag ++{if !_aefbe (_ecbag ){return true ;};};return false ;};func _fece (_fbff float64 )int {var _eedg int ; -if _fbff >=0{_eedg =int (_fbff /_edbf );}else {_eedg =int (_fbff /_edbf )-1;};return _eedg ;};func _fadg (_eaffb map[int ][]float64 )[]int {_ebbgc :=make ([]int ,len (_eaffb ));_cbfda :=0;for _ebdc :=range _eaffb {_ebbgc [_cbfda ]=_ebdc ;_cbfda ++;};_c .Ints (_ebbgc ); -return _ebbgc ;};type rectRuling struct{_dfec rulingKind ;_effbc markKind ;_fg .Color ;_ce .PdfRectangle ;}; - -// String returns a human readable description of `vecs`. -func (_dfcg rulingList )String ()string {if len (_dfcg )==0{return "\u007b \u0045\u004d\u0050\u0054\u0059\u0020}";};_agefa ,_afbc :=_dfcg .vertsHorzs ();_cgdg :=len (_agefa );_acdea :=len (_afbc );if _cgdg ==0||_acdea ==0{return _ge .Sprintf ("\u007b%\u0064\u0020\u0078\u0020\u0025\u0064}",_cgdg ,_acdea ); -};_degdb :=_ce .PdfRectangle {Llx :_agefa [0]._abbgc ,Urx :_agefa [_cgdg -1]._abbgc ,Lly :_afbc [_acdea -1]._abbgc ,Ury :_afbc [0]._abbgc };return _ge .Sprintf ("\u007b\u0025d\u0020\u0078\u0020%\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u007d",_cgdg ,_acdea ,_degdb ); -};func (_gac *textObject )setCharSpacing (_cdfg float64 ){if _gac ==nil {return ;};_gac ._befa ._ggf =_cdfg ;if _dggee {_ec .Log .Info ("\u0073\u0065t\u0043\u0068\u0061\u0072\u0053\u0070\u0061\u0063\u0069\u006e\u0067\u003a\u0020\u0025\u002e\u0032\u0066\u0020\u0073\u0074\u0061\u0074e=\u0025\u0073",_cdfg ,_gac ._befa .String ()); -};};func (_bfad *textLine )toTextMarks (_ccfg *int )[]TextMark {var _dcab []TextMark ;for _ ,_bfddb :=range _bfad ._aebc {if _bfddb ._gfffc {_dcab =_cacf (_dcab ,_ccfg ,"\u0020");};_aefe :=_bfddb .toTextMarks (_ccfg );_dcab =append (_dcab ,_aefe ...);}; -return _dcab ;}; - -// String returns a string descibing `i`. -func (_dcea gridTile )String ()string {_ffeb :=func (_eaga bool ,_dbfff string )string {if _eaga {return _dbfff ;};return "\u005f";};return _ge .Sprintf ("\u00256\u002e2\u0066\u0020\u0025\u0031\u0073%\u0031\u0073%\u0031\u0073\u0025\u0031\u0073",_dcea .PdfRectangle ,_ffeb (_dcea ._ebdg ,"\u004c"),_ffeb (_dcea ._ebga ,"\u0052"),_ffeb (_dcea ._ddbaf ,"\u0042"),_ffeb (_dcea ._fgde ,"\u0054")); -};func _fdecc (_fdeg *list )[]*textLine {for _ ,_fbge :=range _fdeg ._gbab {switch _fbge ._ffcg {case "\u004c\u0042\u006fd\u0079":if len (_fbge ._ggdb )!=0{return _fbge ._ggdb ;};return _fdecc (_fbge );case "\u0053\u0070\u0061\u006e":return _fbge ._ggdb ; -case "I\u006e\u006c\u0069\u006e\u0065\u0053\u0068\u0061\u0070\u0065":return _fbge ._ggdb ;};};return nil ;};func _gcgf (_fdba _ce .PdfRectangle )rulingKind {_bcffb :=_fdba .Width ();_ddedfg :=_fdba .Height ();if _bcffb > _ddedfg {if _bcffb >=_cec {return _ecac ; -};}else {if _ddedfg >=_cec {return _ebdaf ;};};return _gdcf ;};func (_cbgb *textObject )renderText (_egg _gb .PdfObject ,_bed []byte ,_cdfd int )error {if _cbgb ._efbb {_ec .Log .Debug ("\u0072\u0065\u006e\u0064\u0065r\u0054\u0065\u0078\u0074\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0066\u006f\u006e\u0074\u002e\u0020\u004e\u006f\u0074\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u002e"); -return nil ;};_febf :=_cbgb .getCurrentFont ();_gbff :=_febf .BytesToCharcodes (_bed );_deeb ,_ccbf ,_ffbd :=_febf .CharcodesToStrings (_gbff );if _ffbd > 0{_ec .Log .Debug ("\u0072\u0065nd\u0065\u0072\u0054e\u0078\u0074\u003a\u0020num\u0043ha\u0072\u0073\u003d\u0025\u0064\u0020\u006eum\u004d\u0069\u0073\u0073\u0065\u0073\u003d%\u0064",_ccbf ,_ffbd ); -};_cbgb ._befa ._baf +=_ccbf ;_cbgb ._befa ._afgb +=_ffbd ;_fcgd :=_cbgb ._befa ;_acgc :=_fcgd ._ccf ;_ecf :=_fcgd ._gdc /100.0;_cda :=_fgc ;if _febf .Subtype ()=="\u0054\u0079\u0070e\u0033"{_cda =1;};_becb ,_bedg :=_febf .GetRuneMetrics (' ');if !_bedg {_becb ,_bedg =_febf .GetCharMetrics (32); -};if !_bedg {_becb ,_ =_ce .DefaultFont ().GetRuneMetrics (' ');};_gffg :=_becb .Wx *_cda ;_ec .Log .Trace ("\u0073p\u0061\u0063e\u0057\u0069\u0064t\u0068\u003d\u0025\u002e\u0032\u0066\u0020t\u0065\u0078\u0074\u003d\u0025\u0071 \u0066\u006f\u006e\u0074\u003d\u0025\u0073\u0020\u0066\u006f\u006et\u0053\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066",_gffg ,_deeb ,_febf ,_acgc ); -_eecb :=_bc .NewMatrix (_acgc *_ecf ,0,0,_acgc ,0,_fcgd ._gegg );if _dggee {_ec .Log .Info ("\u0072\u0065\u006e\u0064\u0065\u0072T\u0065\u0078\u0074\u003a\u0020\u0025\u0064\u0020\u0063\u006f\u0064\u0065\u0073=\u0025\u002b\u0076\u0020\u0074\u0065\u0078t\u0073\u003d\u0025\u0071",len (_gbff ),_gbff ,_deeb ); -};_ec .Log .Trace ("\u0072\u0065\u006e\u0064\u0065\u0072T\u0065\u0078\u0074\u003a\u0020\u0025\u0064\u0020\u0063\u006f\u0064\u0065\u0073=\u0025\u002b\u0076\u0020\u0072\u0075\u006ee\u0073\u003d\u0025\u0071",len (_gbff ),_gbff ,len (_deeb ));_egc :=_cbgb .getFillColor (); -_ddfb :=_cbgb .getStrokeColor ();for _fbb ,_aafa :=range _deeb {_ffe :=[]rune (_aafa );if len (_ffe )==1&&_ffe [0]=='\x00'{continue ;};_eed :=_gbff [_fbb ];_ffea :=_cbgb ._gbe .CTM .Mult (_cbgb ._eee ).Mult (_eecb );_efde :=0.0;if len (_ffe )==1&&_ffe [0]==32{_efde =_fcgd ._eag ; -};_ebe ,_fdc :=_febf .GetCharMetrics (_eed );if !_fdc {_ec .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u004e\u006f \u006d\u0065\u0074r\u0069\u0063\u0020\u0066\u006f\u0072\u0020\u0063\u006fde\u003d\u0025\u0064 \u0072\u003d0\u0078\u0025\u0030\u0034\u0078\u003d%\u002b\u0071 \u0025\u0073",_eed ,_ffe ,_ffe ,_febf ); -return _ge .Errorf ("\u006e\u006f\u0020\u0063\u0068\u0061\u0072\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073:\u0020f\u006f\u006e\u0074\u003d\u0025\u0073\u0020\u0063\u006f\u0064\u0065\u003d\u0025\u0064",_febf .String (),_eed );};_cdg :=_bc .Point {X :_ebe .Wx *_cda ,Y :_ebe .Wy *_cda }; -_fbbf :=_bc .Point {X :(_cdg .X *_acgc +_efde )*_ecf };_cdcd :=_bc .Point {X :(_cdg .X *_acgc +_fcgd ._ggf +_efde )*_ecf };if _dggee {_ec .Log .Info ("\u0074\u0066\u0073\u003d\u0025\u002e\u0032\u0066\u0020\u0074\u0063\u003d\u0025\u002e\u0032f\u0020t\u0077\u003d\u0025\u002e\u0032\u0066\u0020\u0074\u0068\u003d\u0025\u002e\u0032\u0066",_acgc ,_fcgd ._ggf ,_fcgd ._eag ,_ecf ); -_ec .Log .Info ("\u0064x\u002c\u0064\u0079\u003d%\u002e\u0033\u0066\u0020\u00740\u003d%\u002e3\u0066\u0020\u0074\u003d\u0025\u002e\u0033f",_cdg ,_fbbf ,_cdcd );};_ffd :=_dgfb (_fbbf );_abfb :=_dgfb (_cdcd );_babb :=_cbgb ._gbe .CTM .Mult (_cbgb ._eee ).Mult (_ffd ); -if _fgba {_ec .Log .Info ("e\u006e\u0064\u003a\u000a\tC\u0054M\u003d\u0025\u0073\u000a\u0009 \u0074\u006d\u003d\u0025\u0073\u000a"+"\u0009\u0020t\u0064\u003d\u0025s\u0020\u0078\u006c\u0061\u0074\u003d\u0025\u0073\u000a"+"\u0009t\u0064\u0030\u003d\u0025s\u000a\u0009\u0020\u0020\u2192 \u0025s\u0020x\u006c\u0061\u0074\u003d\u0025\u0073",_cbgb ._gbe .CTM ,_cbgb ._eee ,_abfb ,_afb (_cbgb ._gbe .CTM .Mult (_cbgb ._eee ).Mult (_abfb )),_ffd ,_babb ,_afb (_babb )); -};_efc ,_ffbe :=_cbgb .newTextMark (_fd .ExpandLigatures (_ffe ),_ffea ,_afb (_babb ),_aa .Abs (_gffg *_ffea .ScalingFactorX ()),_febf ,_cbgb ._befa ._ggf ,_egc ,_ddfb ,_egg ,_deeb ,_fbb ,_cdfd );if !_ffbe {_ec .Log .Debug ("\u0054\u0065\u0078\u0074\u0020\u006d\u0061\u0072\u006b\u0020\u006f\u0075\u0074\u0073\u0069d\u0065 \u0070\u0061\u0067\u0065\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067"); -continue ;};if _febf ==nil {_ec .Log .Debug ("\u0045R\u0052O\u0052\u003a\u0020\u004e\u006f\u0020\u0066\u006f\u006e\u0074\u002e");}else if _febf .Encoder ()==nil {_ec .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020N\u006f\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006eg\u002e\u0020\u0066o\u006et\u003d\u0025\u0073",_febf ); -}else {if _ggce ,_gbbd :=_febf .Encoder ().CharcodeToRune (_eed );_gbbd {_efc ._gdcgd =string (_ggce );};};_ec .Log .Trace ("i\u003d\u0025\u0064\u0020\u0063\u006fd\u0065\u003d\u0025\u0064\u0020\u006d\u0061\u0072\u006b=\u0025\u0073\u0020t\u0072m\u003d\u0025\u0073",_fbb ,_eed ,_efc ,_ffea ); -_cbgb ._cfb =append (_cbgb ._cfb ,&_efc );_cbgb ._eee .Concat (_abfb );};return nil ;};func (_bcgaa lineRuling )asRuling ()(*ruling ,bool ){_cabcb :=ruling {_bfbc :_bcgaa ._fbbag ,Color :_bcgaa .Color ,_bgaa :_gbffb };switch _bcgaa ._fbbag {case _ebdaf :_cabcb ._abbgc =_bcgaa .xMean (); -_cabcb ._cebe =_aa .Min (_bcgaa ._ddgfc .Y ,_bcgaa ._eacg .Y );_cabcb ._deee =_aa .Max (_bcgaa ._ddgfc .Y ,_bcgaa ._eacg .Y );case _ecac :_cabcb ._abbgc =_bcgaa .yMean ();_cabcb ._cebe =_aa .Min (_bcgaa ._ddgfc .X ,_bcgaa ._eacg .X );_cabcb ._deee =_aa .Max (_bcgaa ._ddgfc .X ,_bcgaa ._eacg .X ); -default:_ec .Log .Error ("\u0062\u0061\u0064\u0020pr\u0069\u006d\u0061\u0072\u0079\u0020\u006b\u0069\u006e\u0064\u003d\u0025\u0064",_bcgaa ._fbbag );return nil ,false ;};return &_cabcb ,true ;};func (_ccgae *textWord )toTextMarks (_dbadg *int )[]TextMark {var _bfbab []TextMark ; -for _ ,_ecegf :=range _ccgae ._bgeaa {_bfbab =_cfaf (_bfbab ,_dbadg ,_ecegf .ToTextMark ());};return _bfbab ;};func (_fgff *wordBag )scanBand (_ceea string ,_bdde *wordBag ,_ffcf func (_dfdg *wordBag ,_ggd *textWord )bool ,_bacdd ,_ecgcc ,_cdfea float64 ,_eef ,_dffg bool )int {_cbe :=_bdde ._egfa ; -var _bbfbb map[int ]map[*textWord ]struct{};if !_eef {_bbfbb =_fgff .makeRemovals ();};_agda :=_cdca *_cbe ;_aaec :=0;for _ ,_deab :=range _fgff .depthBand (_bacdd -_agda ,_ecgcc +_agda ){if len (_fgff ._faba [_deab ])==0{continue ;};for _ ,_eagc :=range _fgff ._faba [_deab ]{if !(_bacdd -_agda <=_eagc ._cffdg &&_eagc ._cffdg <=_ecgcc +_agda ){continue ; -};if !_ffcf (_bdde ,_eagc ){continue ;};_gde :=2.0*_aa .Abs (_eagc ._ddgee -_bdde ._egfa )/(_eagc ._ddgee +_bdde ._egfa );_eabb :=_aa .Max (_eagc ._ddgee /_bdde ._egfa ,_bdde ._egfa /_eagc ._ddgee );_caef :=_aa .Min (_gde ,_eabb );if _cdfea > 0&&_caef > _cdfea {continue ; -};if _bdde .blocked (_eagc ){continue ;};if !_eef {_bdde .pullWord (_eagc ,_deab ,_bbfbb );};_aaec ++;if !_dffg {if _eagc ._cffdg < _bacdd {_bacdd =_eagc ._cffdg ;};if _eagc ._cffdg > _ecgcc {_ecgcc =_eagc ._cffdg ;};};if _eef {break ;};};};if !_eef {_fgff .applyRemovals (_bbfbb ); -};return _aaec ;};func _cab (_eec _ce .PdfRectangle )textState {return textState {_gdc :100,_bbd :RenderModeFill ,_dab :_eec };};func (_fagc *wordBag )minDepth ()float64 {return _fagc ._cfg -(_fagc .Ury -_fagc ._egfa )};func _ggabe (_deabe float64 )bool {return _aa .Abs (_deabe )< _gcef }; -func (_dbed paraList )xNeighbours (_gcdda float64 )map[*textPara ][]int {_daeee :=make ([]event ,2*len (_dbed ));if _gcdda ==0{for _gdac ,_ggfd :=range _dbed {_daeee [2*_gdac ]=event {_ggfd .Llx ,true ,_gdac };_daeee [2*_gdac +1]=event {_ggfd .Urx ,false ,_gdac }; -};}else {for _ccge ,_fgaf :=range _dbed {_daeee [2*_ccge ]=event {_fgaf .Llx -_gcdda *_fgaf .fontsize (),true ,_ccge };_daeee [2*_ccge +1]=event {_fgaf .Urx +_gcdda *_fgaf .fontsize (),false ,_ccge };};};return _dbed .eventNeighbours (_daeee );}; - -// String returns a description of `t`. -func (_bdgda *textTable )String ()string {return _ge .Sprintf ("\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u0020\u0025\u0074",_bdgda ._ecbf ,_bdgda ._dcfg ,_bdgda ._beaeg );};func _afb (_cced _bc .Matrix )_bc .Point {_eabe ,_aabg :=_cced .Translation (); -return _bc .Point {X :_eabe ,Y :_aabg };};func (_fbfg *textTable )logComposite (_bgeb string ){if !_afcg {return ;};_ec .Log .Info ("\u007e~\u007eP\u0061\u0072\u0061\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u0025\u0073",_fbfg ._ecbf ,_fbfg ._dcfg ,_bgeb ); -_ge .Printf ("\u0025\u0035\u0073 \u007c","");for _fdgda :=0;_fdgda < _fbfg ._ecbf ;_fdgda ++{_ge .Printf ("\u0025\u0033\u0064 \u007c",_fdgda );};_ge .Println ("");_ge .Printf ("\u0025\u0035\u0073 \u002b","");for _beef :=0;_beef < _fbfg ._ecbf ;_beef ++{_ge .Printf ("\u0025\u0033\u0073 \u002b","\u002d\u002d\u002d"); -};_ge .Println ("");for _ffebg :=0;_ffebg < _fbfg ._dcfg ;_ffebg ++{_ge .Printf ("\u0025\u0035\u0064 \u007c",_ffebg );for _acdda :=0;_acdda < _fbfg ._ecbf ;_acdda ++{_ecfge ,_ :=_fbfg ._egfe [_aaca (_acdda ,_ffebg )].parasBBox ();_ge .Printf ("\u0025\u0033\u0064 \u007c",len (_ecfge )); -};_ge .Println ("");};_ec .Log .Info ("\u007e~\u007eT\u0065\u0078\u0074\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u0025\u0073",_fbfg ._ecbf ,_fbfg ._dcfg ,_bgeb );_ge .Printf ("\u0025\u0035\u0073 \u007c","");for _dfcbe :=0;_dfcbe < _fbfg ._ecbf ;_dfcbe ++{_ge .Printf ("\u0025\u0031\u0032\u0064\u0020\u007c",_dfcbe ); -};_ge .Println ("");_ge .Printf ("\u0025\u0035\u0073 \u002b","");for _efbbb :=0;_efbbb < _fbfg ._ecbf ;_efbbb ++{_ge .Print ("\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d\u002d-\u002d\u002d\u002d\u002b");};_ge .Println ("");for _fceaf :=0;_fceaf < _fbfg ._dcfg ; -_fceaf ++{_ge .Printf ("\u0025\u0035\u0064 \u007c",_fceaf );for _ecca :=0;_ecca < _fbfg ._ecbf ;_ecca ++{_gdddg ,_ :=_fbfg ._egfe [_aaca (_ecca ,_fceaf )].parasBBox ();_ddfbg :="";_cdfa :=_gdddg .merge ();if _cdfa !=nil {_ddfbg =_cdfa .text ();};_ddfbg =_ge .Sprintf ("\u0025\u0071",_adagc (_ddfbg ,12)); -_ddfbg =_ddfbg [1:len (_ddfbg )-1];_ge .Printf ("\u0025\u0031\u0032\u0073\u0020\u007c",_ddfbg );};_ge .Println ("");};};func (_ebabb paraList )log (_eedee string ){if !_eaba {return ;};_ec .Log .Info ("%\u0038\u0073\u003a\u0020\u0025\u0064 \u0070\u0061\u0072\u0061\u0073\u0020=\u003d\u003d\u003d\u003d\u003d\u003d\u002d-\u002d\u002d\u002d\u002d\u002d\u003d\u003d\u003d\u003d\u003d=\u003d",_eedee ,len (_ebabb )); -for _bebg ,_ecbg :=range _ebabb {if _ecbg ==nil {continue ;};_dggde :=_ecbg .text ();_affb :="\u0020\u0020";if _ecbg ._bddea !=nil {_affb =_ge .Sprintf ("\u005b%\u0064\u0078\u0025\u0064\u005d",_ecbg ._bddea ._ecbf ,_ecbg ._bddea ._dcfg );};_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0025s\u0020\u0025\u0071\u000a",_bebg ,_ecbg .PdfRectangle ,_affb ,_adagc (_dggde ,50)); -};}; - -// ToTextMark returns the public view of `tm`. -func (_cfcg *textMark )ToTextMark ()TextMark {return TextMark {Text :_cfcg ._ecaa ,Original :_cfcg ._gdcgd ,BBox :_cfcg ._aefef ,Font :_cfcg ._bcdb ,FontSize :_cfcg ._bfaca ,FillColor :_cfcg ._abgd ,StrokeColor :_cfcg ._eedd ,Orientation :_cfcg ._edge ,DirectObject :_cfcg ._bfade ,ObjString :_cfcg ._fcdc ,Tw :_cfcg .Tw ,Th :_cfcg .Th ,Tc :_cfcg ._cgdb ,Index :_cfcg ._beaa }; -};type structTreeRoot struct{_dgbb []structElement ;_fdec string ;};func (_edfe *structTreeRoot )parseStructTreeRoot (_daec _gb .PdfObject ){if _daec !=nil {_adbe ,_edgcg :=_gb .GetDict (_daec );if !_edgcg {_ec .Log .Debug ("\u0070\u0061\u0072s\u0065\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u003a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006eo\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e"); -};K :=_adbe .Get ("\u004b");_aggb :=_adbe .Get ("\u0054\u0079\u0070\u0065").String ();var _fffd *_gb .PdfObjectArray ;switch _accd :=K .(type ){case *_gb .PdfObjectArray :_fffd =_accd ;case *_gb .PdfObjectReference :_fffd =_gb .MakeArray (K );};_ega :=[]structElement {}; -for _ ,_dcce :=range _fffd .Elements (){_ddfc :=&structElement {};_ddfc .parseStructElement (_dcce );_ega =append (_ega ,*_ddfc );};_edfe ._dgbb =_ega ;_edfe ._fdec =_aggb ;};};func (_aefgf rulingList )primaries ()[]float64 {_fecb :=make (map[float64 ]struct{},len (_aefgf )); -for _ ,_cfga :=range _aefgf {_fecb [_cfga ._abbgc ]=struct{}{};};_effa :=make ([]float64 ,len (_fecb ));_ccaag :=0;for _afdga :=range _fecb {_effa [_ccaag ]=_afdga ;_ccaag ++;};_c .Float64s (_effa );return _effa ;};func (_fcbgb rulingList )findPrimSec (_abgfc ,_cfafg float64 )*ruling {for _ ,_cbbg :=range _fcbgb {if _ffegg (_cbbg ._abbgc -_abgfc )&&_cbbg ._cebe -_ebbf <=_cfafg &&_cfafg <=_cbbg ._deee +_ebbf {return _cbbg ; -};};return nil ;};const _fgc =1.0/1000.0;func (_begd rulingList )toTilings ()(rulingList ,[]gridTiling ){_begd .log ("\u0074o\u0054\u0069\u006c\u0069\u006e\u0067s");if len (_begd )==0{return nil ,nil ;};_begd =_begd .tidied ("\u0061\u006c\u006c");_begd .log ("\u0074\u0069\u0064\u0069\u0065\u0064"); -_daa :=_begd .toGrids ();_feac :=make ([]gridTiling ,len (_daa ));for _debb ,_abffe :=range _daa {_feac [_debb ]=_abffe .asTiling ();};return _begd ,_feac ;};func (_bfgf paraList )sortTopoOrder (){_bdcg :=_bfgf .topoOrder ();_bfgf .reorder (_bdcg )};func _egf (_bebb *Extractor ,_bdb *_ce .PdfPageResources ,_eab _ag .GraphicsState ,_fgfe *textState ,_ebc *stateStack )*textObject {return &textObject {_bgcb :_bebb ,_bacad :_bdb ,_gbe :_eab ,_ebf :_ebc ,_befa :_fgfe ,_eee :_bc .IdentityMatrix (),_ecg :_bc .IdentityMatrix ()}; -};func (_aacg rulingList )isActualGrid ()(rulingList ,bool ){_cbea ,_eaegd :=_aacg .augmentGrid ();if !(len (_cbea )>=_cbbb +1&&len (_eaegd )>=_acgd +1){if _gfgc {_ec .Log .Info ("\u0069s\u0041\u0063t\u0075\u0061\u006c\u0047r\u0069\u0064\u003a \u004e\u006f\u0074\u0020\u0061\u006c\u0069\u0067\u006eed\u002e\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u003c\u0020\u0025d\u0020\u0078 \u0025\u0064",len (_cbea ),len (_eaegd ),_cbbb +1,_acgd +1); -};return nil ,false ;};if _gfgc {_ec .Log .Info ("\u0069\u0073\u0041\u0063\u0074\u0075a\u006c\u0047\u0072\u0069\u0064\u003a\u0020\u0025\u0073\u0020\u003a\u0020\u0025t\u0020\u0026\u0020\u0025\u0074\u0020\u2192 \u0025\u0074",_aacg ,len (_cbea )>=2,len (_eaegd )>=2,len (_cbea )>=2&&len (_eaegd )>=2); -for _gcgc ,_gfce :=range _aacg {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0076\u000a",_gcgc ,_gfce );};};if _gdcg {_bgbb ,_dgbc :=_cbea [0],_cbea [len (_cbea )-1];_cdfda ,_cdac :=_eaegd [0],_eaegd [len (_eaegd )-1];if !(_ggabe (_bgbb ._abbgc -_cdfda ._cebe )&&_ggabe (_dgbc ._abbgc -_cdfda ._deee )&&_ggabe (_cdfda ._abbgc -_bgbb ._deee )&&_ggabe (_cdac ._abbgc -_bgbb ._cebe )){if _gfgc {_ec .Log .Info ("\u0069\u0073\u0041\u0063\u0074\u0075\u0061l\u0047\u0072\u0069d\u003a\u0020\u0020N\u006f\u0074 \u0061\u006c\u0069\u0067\u006e\u0065d\u002e\n\t\u0076\u0030\u003d\u0025\u0073\u000a\u0009\u0076\u0031\u003d\u0025\u0073\u000a\u0009\u0068\u0030\u003d\u0025\u0073\u000a\u0009\u0068\u0031\u003d\u0025\u0073",_bgbb ,_dgbc ,_cdfda ,_cdac ); -};return nil ,false ;};}else {if !_cbea .aligned (){if _fcfe {_ec .Log .Info ("i\u0073\u0041\u0063\u0074\u0075\u0061l\u0047\u0072\u0069\u0064\u003a\u0020N\u006f\u0074\u0020\u0061\u006c\u0069\u0067n\u0065\u0064\u0020\u0076\u0065\u0072\u0074\u0073\u002e\u0020%\u0064",len (_cbea )); -};return nil ,false ;};if !_eaegd .aligned (){if _gfgc {_ec .Log .Info ("i\u0073\u0041\u0063\u0074\u0075\u0061l\u0047\u0072\u0069\u0064\u003a\u0020N\u006f\u0074\u0020\u0061\u006c\u0069\u0067n\u0065\u0064\u0020\u0068\u006f\u0072\u007a\u0073\u002e\u0020%\u0064",len (_eaegd )); -};return nil ,false ;};};_cbfeca :=append (_cbea ,_eaegd ...);return _cbfeca ,true ;}; - -// Marks returns the TextMark collection for a page. It represents all the text on the page. -func (_fba PageText )Marks ()*TextMarkArray {return &TextMarkArray {_dec :_fba ._ebfc }};func (_fbbda *textTable )put (_bfgfd ,_cgga int ,_abgbb *textPara ){_fbbda ._gcbga [_aaca (_bfgfd ,_cgga )]=_abgbb ;};func _eggg (_fdce ,_eddee ,_aafgf ,_eddcc *textPara )*textTable {_ddcg :=&textTable {_ecbf :2,_dcfg :2,_gcbga :make (map[uint64 ]*textPara ,4)}; -_ddcg .put (0,0,_fdce );_ddcg .put (1,0,_eddee );_ddcg .put (0,1,_aafgf );_ddcg .put (1,1,_eddcc );return _ddcg ;};func (_ggcg *wordBag )getDepthIdx (_dggd float64 )int {_edcb :=_ggcg .depthIndexes ();_dfgac :=_fece (_dggd );if _dfgac < _edcb [0]{return _edcb [0]; -};if _dfgac > _edcb [len (_edcb )-1]{return _edcb [len (_edcb )-1];};return _dfgac ;}; - -// Text returns the extracted page text. -func (_bge PageText )Text ()string {return _bge ._gcee };func (_degd *textObject )getFontDict (_decf string )(_aefg _gb .PdfObject ,_aaee error ){_aea :=_degd ._bacad ;if _aea ==nil {_ec .Log .Debug ("g\u0065\u0074\u0046\u006f\u006e\u0074D\u0069\u0063\u0074\u002e\u0020\u004eo\u0020\u0072\u0065\u0073\u006f\u0075\u0072c\u0065\u0073\u002e\u0020\u006e\u0061\u006d\u0065\u003d\u0025#\u0071",_decf ); -return nil ,nil ;};_aefg ,_bdf :=_aea .GetFontByName (_gb .PdfObjectName (_decf ));if !_bdf {_ec .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0067\u0065t\u0046\u006f\u006et\u0044\u0069\u0063\u0074\u003a\u0020\u0046\u006f\u006et \u006e\u006f\u0074 \u0066\u006fu\u006e\u0064\u003a\u0020\u006e\u0061m\u0065\u003d%\u0023\u0071",_decf ); -return nil ,_d .New ("f\u006f\u006e\u0074\u0020no\u0074 \u0069\u006e\u0020\u0072\u0065s\u006f\u0075\u0072\u0063\u0065\u0073");};return _aefg ,nil ;};func _decgb (_bbcb ,_fcgb _ce .PdfRectangle )bool {return _fcd (_bbcb ,_fcgb )&&_fdg (_bbcb ,_fcgb )};func (_fecf *subpath )last ()_bc .Point {return _fecf ._gfefe [len (_fecf ._gfefe )-1]}; -func (_fagb *textLine )markWordBoundaries (){_dged :=_ddag *_fagb ._ecag ;for _ccff ,_egeeg :=range _fagb ._aebc [1:]{if _gdgbc (_egeeg ,_fagb ._aebc [_ccff ])>=_dged {_egeeg ._gfffc =true ;};};}; - -// TextTable represents a table. -// Cells are ordered top-to-bottom, left-to-right. -// Cells[y] is the (0-offset) y'th row in the table. -// Cells[y][x] is the (0-offset) x'th column in the table. -type TextTable struct{_ce .PdfRectangle ;W ,H int ;Cells [][]TableCell ;};func (_aeeff intSet )add (_gefd int ){_aeeff [_gefd ]=struct{}{}};func _abgbe (_adbbg *_ce .Image ,_gbdc _fg .Color )_ded .Image {_eadcf ,_dfbcd :=int (_adbbg .Width ),int (_adbbg .Height ); -_cdebf :=_ded .NewRGBA (_ded .Rect (0,0,_eadcf ,_dfbcd ));for _cbeaf :=0;_cbeaf < _dfbcd ;_cbeaf ++{for _fcgfb :=0;_fcgfb < _eadcf ;_fcgfb ++{_cgbbg ,_gdcac :=_adbbg .ColorAt (_fcgfb ,_cbeaf );if _gdcac !=nil {_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_fcgfb ,_cbeaf ); -continue ;};_bfcbg ,_bbgeg ,_eagf ,_ :=_cgbbg .RGBA ();var _ebgaf _fg .Color ;if _bfcbg +_bbgeg +_eagf ==0{_ebgaf =_gbdc ;}else {_ebgaf =_fg .Transparent ;};_cdebf .Set (_fcgfb ,_cbeaf ,_ebgaf );};};return _cdebf ;};func _cbda (_bdaf *PageText )error {_gffgg :=_bd .GetLicenseKey (); -if _gffgg !=nil &&_gffgg .IsLicensed ()||_ff {return nil ;};_ge .Printf ("\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064\u0020c\u006f\u0070\u0079\u0020\u006f\u0066\u0020\u0055\u006e\u0069P\u0044\u0046\u000a");_ge .Println ("-\u0020\u0047\u0065\u0074\u0020\u0061\u0020\u0066\u0072e\u0065\u0020\u0074\u0072\u0069\u0061\u006c l\u0069\u0063\u0065\u006es\u0065\u0020\u006f\u006e\u0020\u0068\u0074\u0074\u0070s:\u002f\u002fu\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"); -return _d .New ("\u0075\u006e\u0069\u0070d\u0066\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020c\u006fd\u0065\u0020\u0072\u0065\u0071\u0075\u0069r\u0065\u0064");};func (_beecg rectRuling )checkWidth (_dccaf ,_afab float64 )(float64 ,bool ){_bagbg :=_afab -_dccaf ; -_abcb :=_bagbg <=_gcef ;return _bagbg ,_abcb ;};func (_bfac *shapesState )cubicTo (_agf ,_dbg ,_fgca ,_cbaae ,_dcec ,_gadf float64 ){if _cbag {_ec .Log .Info ("\u0063\u0075\u0062\u0069\u0063\u0054\u006f\u003a");};_bfac .addPoint (_dcec ,_gadf );};func _acgg (_bddeg map[int ][]float64 ){if len (_bddeg )<=1{return ; -};_ggggb :=_fadg (_bddeg );if _afcg {_ec .Log .Info ("\u0066i\u0078C\u0065\u006c\u006c\u0073\u003a \u006b\u0065y\u0073\u003d\u0025\u002b\u0076",_ggggb );};var _bgcca ,_gfca int ;for _bgcca ,_gfca =range _ggggb {if _bddeg [_gfca ]!=nil {break ;};};for _gdabf ,_agba :=range _ggggb [_bgcca :]{_cgba :=_bddeg [_agba ]; -if _cgba ==nil {continue ;};if _afcg {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u006b\u0030\u003d\u0025\u0064\u0020\u006b1\u003d\u0025\u0064\u000a",_bgcca +_gdabf ,_gfca ,_agba );};_egbfef :=_bddeg [_agba ];if _egbfef [len (_egbfef )-1]> _cgba [0]{_egbfef [len (_egbfef )-1]=_cgba [0]; -_bddeg [_gfca ]=_egbfef ;};_gfca =_agba ;};};func _fbcc (_agbg []*textMark ,_gbefe _ce .PdfRectangle ,_afgd rulingList ,_dffd []gridTiling ,_fbgd bool )paraList {_ec .Log .Trace ("\u006d\u0061\u006b\u0065\u0054\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u003a \u0025\u0064\u0020\u0065\u006c\u0065m\u0065\u006e\u0074\u0073\u0020\u0070\u0061\u0067\u0065\u0053\u0069\u007a\u0065=\u0025\u002e\u0032\u0066",len (_agbg ),_gbefe ); -if len (_agbg )==0{return nil ;};_ebaga :=_fecgf (_agbg ,_gbefe );if len (_ebaga )==0{return nil ;};_afgd .log ("\u006d\u0061\u006be\u0054\u0065\u0078\u0074\u0050\u0061\u0067\u0065");_bfag ,_aafad :=_afgd .vertsHorzs ();_facac :=_dca (_ebaga ,_gbefe .Ury ,_bfag ,_aafad ); -_gadfb :=_cgbf (_facac ,_gbefe .Ury ,_bfag ,_aafad );_gadfb =_bddf (_gadfb );_gedg :=make (paraList ,0,len (_gadfb ));for _ ,_gcffb :=range _gadfb {_gegbb :=_gcffb .arrangeText ();if _gegbb !=nil {_gedg =append (_gedg ,_gegbb );};};if !_fbgd &&len (_gedg )>=_ddd {_gedg =_gedg .extractTables (_dffd ); -};_gedg .sortReadingOrder ();if !_fbgd {_gedg .sortTopoOrder ();};_gedg .log ("\u0073\u006f\u0072te\u0064\u0020\u0069\u006e\u0020\u0072\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u006f\u0072\u0064\u0065\u0072");return _gedg ;}; - -// Append appends `mark` to the mark array. -func (_ceae *TextMarkArray )Append (mark TextMark ){_ceae ._dec =append (_ceae ._dec ,mark )};func (_gfdf paraList )inTile (_dedc gridTile )paraList {var _adeff paraList ;for _ ,_gcda :=range _gfdf {if _dedc .contains (_gcda .PdfRectangle ){_adeff =append (_adeff ,_gcda ); -};};if _afcg {_ge .Printf ("\u0020 \u0020\u0069\u006e\u0054i\u006c\u0065\u003a\u0020\u0020%\u0073 \u0069n\u0073\u0069\u0064\u0065\u003d\u0025\u0064\n",_dedc ,len (_adeff ));for _eddd ,_agfaa :=range _adeff {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_eddd ,_agfaa ); -};_ge .Println ("");};return _adeff ;}; - -// String returns a description of `b`. -func (_cbf *wordBag )String ()string {var _ccdg []string ;for _ ,_ebfd :=range _cbf .depthIndexes (){_aeb :=_cbf ._faba [_ebfd ];for _ ,_efba :=range _aeb {_ccdg =append (_ccdg ,_efba ._bbdb );};};return _ge .Sprintf ("\u0025.\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065=\u0025\u002e\u0032\u0066\u0020\u0025\u0064\u0020\u0025\u0071",_cbf .PdfRectangle ,_cbf ._egfa ,len (_ccdg ),_ccdg ); -};func (_cbbfe *subpath )add (_bcde ..._bc .Point ){_cbbfe ._gfefe =append (_cbbfe ._gfefe ,_bcde ...)};func (_ebcg *wordBag )arrangeText ()*textPara {_ebcg .sort ();if _cafd {_ebcg .removeDuplicates ();};var _gdced []*textLine ;for _ ,_bga :=range _ebcg .depthIndexes (){for !_ebcg .empty (_bga ){_cgbc :=_ebcg .firstReadingIndex (_bga ); -_fgcfa :=_ebcg .firstWord (_cgbc );_fgbdd :=_egee (_ebcg ,_cgbc );_fdeb :=_fgcfa ._ddgee ;_geed :=_fgcfa ._cffdg -_cdca *_fdeb ;_ccabb :=_fgcfa ._cffdg +_cdca *_fdeb ;_ddbe :=_ebfa *_fdeb ;_aecce :=_gecdb *_fdeb ;_aabf :for {var _agaa *textWord ;_egdb :=0; -for _ ,_baggg :=range _ebcg .depthBand (_geed ,_ccabb ){_geggfe :=_ebcg .highestWord (_baggg ,_geed ,_ccabb );if _geggfe ==nil {continue ;};_cgeaa :=_gdgbc (_geggfe ,_fgbdd ._aebc [len (_fgbdd ._aebc )-1]);if _cgeaa < -_aecce {break _aabf ;};if _cgeaa > _ddbe {continue ; -};if _agaa !=nil &&_fabg (_geggfe ,_agaa )>=0{continue ;};_agaa =_geggfe ;_egdb =_baggg ;};if _agaa ==nil {break ;};_fgbdd .pullWord (_ebcg ,_agaa ,_egdb );};_fgbdd .markWordBoundaries ();_gdced =append (_gdced ,_fgbdd );};};if len (_gdced )==0{return nil ; -};_c .Slice (_gdced ,func (_abffd ,_fbfed int )bool {return _cbcf (_gdced [_abffd ],_gdced [_fbfed ])< 0});_gfbc :=_ffec (_ebcg .PdfRectangle ,_gdced );if _egd {_ec .Log .Info ("\u0061\u0072\u0072an\u0067\u0065\u0054\u0065\u0078\u0074\u0020\u0021\u0021\u0021\u0020\u0070\u0061\u0072\u0061\u003d\u0025\u0073",_gfbc .String ()); -if _eeg {for _cagg ,_bdad :=range _gfbc ._bdbcg {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_cagg ,_bdad .String ());if _aacb {for _fbbc ,_edfg :=range _bdad ._aebc {_ge .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_fbbc ,_edfg .String ()); -for _dfe ,_ddbd :=range _edfg ._bgeaa {_ge .Printf ("\u00251\u0032\u0064\u003a\u0020\u0025\u0073\n",_dfe ,_ddbd .String ());};};};};};};return _gfbc ;};func _fbcfg (_ffcbg string )(string ,bool ){_geacfe :=[]rune (_ffcbg );if len (_geacfe )!=1{return "",false ; -};_bffg ,_bcfgd :=_eeff [_geacfe [0]];return _bffg ,_bcfgd ;}; - -// PageText represents the layout of text on a device page. -type PageText struct{_fcag []*textMark ;_gcee string ;_ebfc []TextMark ;_eadb []TextTable ;_fbbg _ce .PdfRectangle ;_geda []pathSection ;_gegc []pathSection ;_bbb *_gb .PdfObject ;_fefc _gb .PdfObject ;_ecfe *_ag .ContentStreamOperations ;_ccg PageTextOptions ; -};func _bgeba (_ceabc ,_abgg int )int {if _ceabc > _abgg {return _ceabc ;};return _abgg ;};func (_aagf rulingList )asTiling ()gridTiling {if _bea {_ec .Log .Info ("r\u0075\u006ci\u006e\u0067\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0076\u0065\u0063s\u003d\u0025\u0064\u0020\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u002b\u002b\u002b\u0020\u003d\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d=\u003d",len (_aagf )); -};for _bfacf ,_afged :=range _aagf [1:]{_egada :=_aagf [_bfacf ];if _egada .alignsPrimary (_afged )&&_egada .alignsSec (_afged ){_ec .Log .Error ("a\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0044\u0075\u0070\u006c\u0069\u0063\u0061\u0074\u0065 \u0072\u0075\u006c\u0069\u006e\u0067\u0073\u002e\u000a\u0009v=\u0025\u0073\u000a\t\u0077=\u0025\u0073",_afged ,_egada ); -};};_aagf .sortStrict ();_aagf .log ("\u0073n\u0061\u0070\u0070\u0065\u0064");_cdge ,_bacf :=_aagf .vertsHorzs ();_dbcg :=_cdge .primaries ();_geag :=_bacf .primaries ();_dfdb :=len (_dbcg )-1;_ecacf :=len (_geag )-1;if _dfdb ==0||_ecacf ==0{return gridTiling {}; -};_gaae :=_ce .PdfRectangle {Llx :_dbcg [0],Urx :_dbcg [_dfdb ],Lly :_geag [0],Ury :_geag [_ecacf ]};if _bea {_ec .Log .Info ("\u0072\u0075l\u0069\u006e\u0067\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0076\u0065\u0072\u0074s=\u0025\u0064",len (_cdge )); -for _dgbe ,_aabfb :=range _cdge {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_dgbe ,_aabfb );};_ec .Log .Info ("\u0072\u0075l\u0069\u006e\u0067\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0068\u006f\u0072\u007as=\u0025\u0064",len (_bacf )); -for _eagcf ,_fcaf :=range _bacf {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_eagcf ,_fcaf );};_ec .Log .Info ("\u0072\u0075\u006c\u0069\u006eg\u004c\u0069\u0073\u0074\u002e\u0061\u0073\u0054\u0069\u006c\u0069\u006e\u0067:\u0020\u0020\u0077\u0078\u0068\u003d\u0025\u0064\u0078\u0025\u0064\u000a\u0009\u006c\u006c\u0078\u003d\u0025\u002e\u0032\u0066\u000a\u0009\u006c\u006c\u0079\u003d\u0025\u002e\u0032f",_dfdb ,_ecacf ,_dbcg ,_geag ); -};_eedf :=make ([]gridTile ,_dfdb *_ecacf );for _feffe :=_ecacf -1;_feffe >=0;_feffe --{_eabfg :=_geag [_feffe ];_bdffb :=_geag [_feffe +1];for _gdeb :=0;_gdeb < _dfdb ;_gdeb ++{_efad :=_dbcg [_gdeb ];_bfgca :=_dbcg [_gdeb +1];_dgaac :=_cdge .findPrimSec (_efad ,_eabfg ); -_efadd :=_cdge .findPrimSec (_bfgca ,_eabfg );_gabcb :=_bacf .findPrimSec (_eabfg ,_efad );_fefcb :=_bacf .findPrimSec (_bdffb ,_efad );_gecda :=_ce .PdfRectangle {Llx :_efad ,Urx :_bfgca ,Lly :_eabfg ,Ury :_bdffb };_dbdbf :=_geedc (_gecda ,_dgaac ,_efadd ,_gabcb ,_fefcb ); -_eedf [_feffe *_dfdb +_gdeb ]=_dbdbf ;if _bea {_ge .Printf ("\u0020\u0020\u0078\u003d\u0025\u0032\u0064\u0020\u0079\u003d\u0025\u0032\u0064\u003a\u0020%\u0073 \u0025\u0036\u002e\u0032\u0066\u0020\u0078\u0020\u0025\u0036\u002e\u0032\u0066\u000a",_gdeb ,_feffe ,_dbdbf .String (),_dbdbf .Width (),_dbdbf .Height ()); -};};};if _bea {_ec .Log .Info ("r\u0075\u006c\u0069\u006e\u0067\u004c\u0069\u0073\u0074.\u0061\u0073\u0054\u0069\u006c\u0069\u006eg:\u0020\u0063\u006f\u0061l\u0065\u0073\u0063\u0065\u0020\u0068\u006f\u0072\u0069zo\u006e\u0074a\u006c\u002e\u0020\u0025\u0036\u002e\u0032\u0066",_gaae ); -};_decbd :=make ([]map[float64 ]gridTile ,_ecacf );for _egfda :=_ecacf -1;_egfda >=0;_egfda --{if _bea {_ge .Printf ("\u0020\u0020\u0079\u003d\u0025\u0032\u0064\u000a",_egfda );};_decbd [_egfda ]=make (map[float64 ]gridTile ,_dfdb );for _eefac :=0;_eefac < _dfdb ; -_eefac ++{_dcaf :=_eedf [_egfda *_dfdb +_eefac ];if _bea {_ge .Printf ("\u0020\u0020\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_eefac ,_dcaf );};if !_dcaf ._ebdg {continue ;};_adga :=_eefac ;for _dbfd :=_eefac +1;!_dcaf ._ebga &&_dbfd < _dfdb ;_dbfd ++{_abbfd :=_eedf [_egfda *_dfdb +_dbfd ]; -_dcaf .Urx =_abbfd .Urx ;_dcaf ._fgde =_dcaf ._fgde ||_abbfd ._fgde ;_dcaf ._ddbaf =_dcaf ._ddbaf ||_abbfd ._ddbaf ;_dcaf ._ebga =_abbfd ._ebga ;if _bea {_ge .Printf ("\u0020 \u0020%\u0034\u0064\u003a\u0020\u0025s\u0020\u2192 \u0025\u0073\u000a",_dbfd ,_abbfd ,_dcaf ); -};_adga =_dbfd ;};if _bea {_ge .Printf (" \u0020 \u0025\u0032\u0064\u0020\u002d\u0020\u0025\u0032d\u0020\u2192\u0020\u0025s\n",_eefac ,_adga ,_dcaf );};_eefac =_adga ;_decbd [_egfda ][_dcaf .Llx ]=_dcaf ;};};_eeea :=make (map[float64 ]map[float64 ]gridTile ,_ecacf ); -_ffgf :=make (map[float64 ]map[float64 ]struct{},_ecacf );for _dcfbc :=_ecacf -1;_dcfbc >=0;_dcfbc --{_eaec :=_eedf [_dcfbc *_dfdb ].Lly ;_eeea [_eaec ]=make (map[float64 ]gridTile ,_dfdb );_ffgf [_eaec ]=make (map[float64 ]struct{},_dfdb );};if _bea {_ec .Log .Info ("\u0072u\u006c\u0069n\u0067\u004c\u0069s\u0074\u002e\u0061\u0073\u0054\u0069\u006ci\u006e\u0067\u003a\u0020\u0063\u006fa\u006c\u0065\u0073\u0063\u0065\u0020\u0076\u0065\u0072\u0074\u0069c\u0061\u006c\u002e\u0020\u0025\u0036\u002e\u0032\u0066",_gaae ); -};for _cfda :=_ecacf -1;_cfda >=0;_cfda --{_dfceb :=_eedf [_cfda *_dfdb ].Lly ;_ecagb :=_decbd [_cfda ];if _bea {_ge .Printf ("\u0020\u0020\u0079\u003d\u0025\u0032\u0064\u000a",_cfda );};for _ ,_aeca :=range _ccacc (_ecagb ){if _ ,_afeb :=_ffgf [_dfceb ][_aeca ]; -_afeb {continue ;};_dbdac :=_ecagb [_aeca ];if _bea {_ge .Printf (" \u0020\u0020\u0020\u0020\u0076\u0030\u003d\u0025\u0073\u000a",_dbdac .String ());};for _beea :=_cfda -1;_beea >=0;_beea --{if _dbdac ._ddbaf {break ;};_adba :=_decbd [_beea ];_cgf ,_gefa :=_adba [_aeca ]; -if !_gefa {break ;};if _cgf .Urx !=_dbdac .Urx {break ;};_dbdac ._ddbaf =_cgf ._ddbaf ;_dbdac .Lly =_cgf .Lly ;if _bea {_ge .Printf ("\u0020\u0020\u0020\u0020 \u0020\u0020\u0076\u003d\u0025\u0073\u0020\u0076\u0030\u003d\u0025\u0073\u000a",_cgf .String (),_dbdac .String ()); -};_ffgf [_cgf .Lly ][_cgf .Llx ]=struct{}{};};if _cfda ==0{_dbdac ._ddbaf =true ;};if _dbdac .complete (){_eeea [_dfceb ][_aeca ]=_dbdac ;};};};_gefaa :=gridTiling {PdfRectangle :_gaae ,_cgecb :_edege (_eeea ),_agbb :_bdcdcf (_eeea ),_bage :_eeea };_gefaa .log ("\u0043r\u0065\u0061\u0074\u0065\u0064"); -return _gefaa ;};func (_gfb *wordBag )firstReadingIndex (_febc int )int {_aadb :=_gfb .firstWord (_febc )._ddgee ;_def :=float64 (_febc +1)*_edbf ;_efgde :=_def +_bafc *_aadb ;_gdgf :=_febc ;for _ ,_gdab :=range _gfb .depthBand (_def ,_efgde ){if _fabg (_gfb .firstWord (_gdab ),_gfb .firstWord (_gdgf ))< 0{_gdgf =_gdab ; -};};return _gdgf ;};func (_gcdb *compositeCell )updateBBox (){for _ ,_bbbg :=range _gcdb .paraList {_gcdb .PdfRectangle =_cdggc (_gcdb .PdfRectangle ,_bbbg .PdfRectangle );};};func _bgec (_dagce _ce .PdfRectangle )*ruling {return &ruling {_bfbc :_ebdaf ,_abbgc :_dagce .Llx ,_cebe :_dagce .Lly ,_deee :_dagce .Ury }; -};var _ccfe *_e .Regexp =_e .MustCompile (_cfgd +"\u007c"+_befc ); - -// NewWithOptions an Extractor instance for extracting content from the input PDF page with options. -func NewWithOptions (page *_ce .PdfPage ,options *Options )(*Extractor ,error ){const _gcc ="\u0065x\u0074\u0072\u0061\u0063\u0074\u006f\u0072\u002e\u004e\u0065\u0077W\u0069\u0074\u0068\u004f\u0070\u0074\u0069\u006f\u006e\u0073";_ged ,_ca :=page .GetAllContentStreams (); -if _ca !=nil {return nil ,_ca ;};_dc ,_ffc :=page .GetStructTreeRoot ();if !_ffc {_ec .Log .Info ("T\u0068\u0065\u0020\u0070\u0064\u0066\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0074\u0061\u0067g\u0065d\u002e\u0020\u0053\u0074r\u0075\u0063t\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074\u0020\u0065\u0078\u0069\u0073\u0074\u002e"); -};_dd :=page .GetContainingPdfObject ();_bb ,_ca :=page .GetMediaBox ();if _ca !=nil {return nil ,_ge .Errorf ("\u0065\u0078\u0074r\u0061\u0063\u0074\u006fr\u0020\u0072\u0065\u0071\u0075\u0069\u0072e\u0073\u0020\u006d\u0065\u0064\u0069\u0061\u0042\u006f\u0078\u002e\u0020\u0025\u0076",_ca ); -};_gbg :=&Extractor {_bcf :_ged ,_ab :page .Resources ,_gda :*_bb ,_ed :page .CropBox ,_cd :map[string ]fontEntry {},_fa :map[string ]textResult {},_fgb :options ,_ba :_dc ,_eg :_dd };if _gbg ._gda .Llx > _gbg ._gda .Urx {_ec .Log .Info ("\u004d\u0065\u0064\u0069\u0061\u0042o\u0078\u0020\u0068\u0061\u0073\u0020\u0058\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0073\u0020r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u002e\u0020\u0025\u002e\u0032\u0066\u0020F\u0069x\u0069\u006e\u0067\u002e",_gbg ._gda ); -_gbg ._gda .Llx ,_gbg ._gda .Urx =_gbg ._gda .Urx ,_gbg ._gda .Llx ;};if _gbg ._gda .Lly > _gbg ._gda .Ury {_ec .Log .Info ("\u004d\u0065\u0064\u0069\u0061\u0042o\u0078\u0020\u0068\u0061\u0073\u0020\u0059\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0073\u0020r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u002e\u0020\u0025\u002e\u0032\u0066\u0020F\u0069x\u0069\u006e\u0067\u002e",_gbg ._gda ); -_gbg ._gda .Lly ,_gbg ._gda .Ury =_gbg ._gda .Ury ,_gbg ._gda .Lly ;};_bd .TrackUse (_gcc );return _gbg ,nil ;}; - -// String returns a human readable description of `ss`. -func (_accb *shapesState )String ()string {return _ge .Sprintf ("\u007b\u0025\u0064\u0020su\u0062\u0070\u0061\u0074\u0068\u0073\u0020\u0066\u0072\u0065\u0073\u0068\u003d\u0025t\u007d",len (_accb ._abgb ),_accb ._edee );};func (_gdaa *textObject )moveTextSetLeading (_cgdc ,_dfcb float64 ){_gdaa ._befa ._dcc =-_dfcb ; -_gdaa .moveLP (_cgdc ,_dfcb );};func (_bbdec rulingList )log (_gcaca string ){if !_gfgc {return ;};_ec .Log .Info ("\u0023\u0023\u0023\u0020\u0025\u0031\u0030\u0073\u003a\u0020\u0076\u0065c\u0073\u003d\u0025\u0073",_gcaca ,_bbdec .String ());for _dagf ,_gfaaa :=range _bbdec {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_dagf ,_gfaaa .String ()); -};};func (_dcdf *textLine )pullWord (_eede *wordBag ,_fceg *textWord ,_fedc int ){_dcdf .appendWord (_fceg );_eede .removeWord (_fceg ,_fedc );};func (_eecg rulingList )removeDuplicates ()rulingList {if len (_eecg )==0{return nil ;};_eecg .sort ();_cdbd :=rulingList {_eecg [0]}; -for _ ,_cbfc :=range _eecg [1:]{if _cbfc .equals (_cdbd [len (_cdbd )-1]){continue ;};_cdbd =append (_cdbd ,_cbfc );};return _cdbd ;};func (_agcdb *subpath )isQuadrilateral ()bool {if len (_agcdb ._gfefe )< 4||len (_agcdb ._gfefe )> 5{return false ;};if len (_agcdb ._gfefe )==5{_gaada :=_agcdb ._gfefe [0]; -_ccdf :=_agcdb ._gfefe [4];if _gaada .X !=_ccdf .X ||_gaada .Y !=_ccdf .Y {return false ;};};return true ;};func _cecd (_eacgc []rulingList )(rulingList ,rulingList ){var _fagf rulingList ;for _ ,_fcbfg :=range _eacgc {_fagf =append (_fagf ,_fcbfg ...); -};return _fagf .vertsHorzs ();};func _dbga (_fagba _ce .PdfRectangle )*ruling {return &ruling {_bfbc :_ebdaf ,_abbgc :_fagba .Urx ,_cebe :_fagba .Lly ,_deee :_fagba .Ury };};func _baafc (_gfebd ,_gdaace int )int {if _gfebd < _gdaace {return _gfebd ;};return _gdaace ; -};func (_bcdbf compositeCell )hasLines (_cddcb []*textLine )bool {for _afcd ,_gfge :=range _cddcb {_afegg :=_decgb (_bcdbf .PdfRectangle ,_gfge .PdfRectangle );if _afcg {_ge .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u005e\u005e\u005e\u0069\u006e\u0074\u0065\u0072\u0073e\u0063t\u0073\u003d\u0025\u0074\u0020\u0025\u0064\u0020\u006f\u0066\u0020\u0025\u0064\u000a",_afegg ,_afcd ,len (_cddcb )); -_ge .Printf ("\u0020\u0020\u0020\u0020 \u005e\u005e\u005e\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u003d\u0025s\u000a",_bcdbf );_ge .Printf ("\u0020 \u0020 \u0020\u0020\u0020\u006c\u0069\u006e\u0065\u003d\u0025\u0073\u000a",_gfge );};if _afegg {return true ; -};};return false ;};const (_beagd markKind =iota ;_gbffb ;_eecbc ;_cgacb ;);func _fccf (_ebeb string )bool {if _g .RuneCountInString (_ebeb )< _ggafb {return false ;};_ffag ,_gfbg :=_g .DecodeLastRuneInString (_ebeb );if _gfbg <=0||!_de .Is (_de .Hyphen ,_ffag ){return false ; -};_ffag ,_gfbg =_g .DecodeLastRuneInString (_ebeb [:len (_ebeb )-_gfbg ]);return _gfbg > 0&&!_de .IsSpace (_ffag );};type fontEntry struct{_ddaa *_ce .PdfFont ;_addb int64 ;};func _gecae (_effdd ,_ceddb float64 )bool {return _aa .Abs (_effdd -_ceddb )<=_ebbf }; - - -// String returns a description of `w`. -func (_beaf *textWord )String ()string {return _ge .Sprintf ("\u0025\u002e2\u0066\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066\u0020\"%\u0073\u0022",_beaf ._cffdg ,_beaf .PdfRectangle ,_beaf ._ddgee ,_beaf ._bbdb ); -};func _ddedf (_agcg []TextMark ,_egec *TextTable )[]TextMark {var _cbfg []TextMark ;for _ ,_dfgd :=range _agcg {_dfgd ._ebd =true ;_dfgd ._afe =_egec ;_cbfg =append (_cbfg ,_dfgd );};return _cbfg ;};type markKind int ;func (_gegdd *textTable )reduce ()*textTable {_eadc :=make ([]int ,0,_gegdd ._dcfg ); -_dfbcf :=make ([]int ,0,_gegdd ._ecbf );for _ecbbd :=0;_ecbbd < _gegdd ._dcfg ;_ecbbd ++{if !_gegdd .emptyCompositeRow (_ecbbd ){_eadc =append (_eadc ,_ecbbd );};};for _addg :=0;_addg < _gegdd ._ecbf ;_addg ++{if !_gegdd .emptyCompositeColumn (_addg ){_dfbcf =append (_dfbcf ,_addg ); -};};if len (_eadc )==_gegdd ._dcfg &&len (_dfbcf )==_gegdd ._ecbf {return _gegdd ;};_ebba :=textTable {_beaeg :_gegdd ._beaeg ,_ecbf :len (_dfbcf ),_dcfg :len (_eadc ),_gcbga :make (map[uint64 ]*textPara ,len (_dfbcf )*len (_eadc ))};if _afcg {_ec .Log .Info ("\u0072\u0065\u0064\u0075ce\u003a\u0020\u0025\u0064\u0078\u0025\u0064\u0020\u002d\u003e\u0020\u0025\u0064\u0078%\u0064",_gegdd ._ecbf ,_gegdd ._dcfg ,len (_dfbcf ),len (_eadc )); -_ec .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0043\u006f\u006c\u0073\u003a\u0020\u0025\u002b\u0076",_dfbcf );_ec .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0052\u006f\u0077\u0073\u003a\u0020\u0025\u002b\u0076",_eadc );};for _dgbea ,_bggf :=range _eadc {for _fgea ,_ccbb :=range _dfbcf {_fbcg ,_egfed :=_gegdd .getComposite (_ccbb ,_bggf ); -if _fbcg ==nil {continue ;};if _afcg {_ge .Printf ("\u0020 \u0025\u0032\u0064\u002c \u0025\u0032\u0064\u0020\u0028%\u0032d\u002c \u0025\u0032\u0064\u0029\u0020\u0025\u0071\n",_fgea ,_dgbea ,_ccbb ,_bggf ,_adagc (_fbcg .merge ().text (),50));};_ebba .putComposite (_fgea ,_dgbea ,_fbcg ,_egfed ); -};};return &_ebba ;};func (_bcbgb rulingList )sortStrict (){_c .Slice (_bcbgb ,func (_ddcdg ,_befg int )bool {_bgee ,_aeec :=_bcbgb [_ddcdg ],_bcbgb [_befg ];_dedba ,_adgc :=_bgee ._bfbc ,_aeec ._bfbc ;if _dedba !=_adgc {return _dedba > _adgc ;};_babe ,_ccacf :=_bgee ._abbgc ,_aeec ._abbgc ; -if !_ffegg (_babe -_ccacf ){return _babe < _ccacf ;};_babe ,_ccacf =_bgee ._cebe ,_aeec ._cebe ;if _babe !=_ccacf {return _babe < _ccacf ;};return _bgee ._deee < _aeec ._deee ;});};func _ffegg (_cfac float64 )bool {return _aa .Abs (_cfac )< _fdac };func _bcfde (_debfc *_ce .Image ,_cgedf _fg .Color )_ded .Image {_gfcga ,_bgbac :=int (_debfc .Width ),int (_debfc .Height ); -_cgdde :=_ded .NewRGBA (_ded .Rect (0,0,_gfcga ,_bgbac ));for _ceebd :=0;_ceebd < _bgbac ;_ceebd ++{for _aceee :=0;_aceee < _gfcga ;_aceee ++{_efagc ,_ggfa :=_debfc .ColorAt (_aceee ,_ceebd );if _ggfa !=nil {_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_aceee ,_ceebd ); -continue ;};_bfdcg ,_eagca ,_dbgb ,_ :=_efagc .RGBA ();var _dgcg _fg .Color ;if _bfdcg +_eagca +_dbgb ==0{_dgcg =_fg .Transparent ;}else {_dgcg =_cgedf ;};_cgdde .Set (_aceee ,_ceebd ,_dgcg );};};return _cgdde ;};type pathSection struct{_fbfe []*subpath ; -_fg .Color ;};func (_bcb *textObject )setWordSpacing (_eaag float64 ){if _bcb ==nil {return ;};_bcb ._befa ._eag =_eaag ;};func (_ggb *stateStack )size ()int {return len (*_ggb )};func (_ddae *textObject )showText (_efa _gb .PdfObject ,_ede []byte ,_baca int )error {return _ddae .renderText (_efa ,_ede ,_baca ); -};func _efaf (_efag []*textLine ,_bcbba string )string {var _gfcff _gd .Builder ;_gdgc :=0.0;for _ffab ,_aggc :=range _efag {_egag :=_aggc .text ();_bdee :=_aggc ._bcdg ;if _ffab < len (_efag )-1{_gdgc =_efag [_ffab +1]._bcdg ;}else {_gdgc =0.0;};_gfcff .WriteString (_bcbba ); -_gfcff .WriteString (_egag );if _gdgc !=_bdee {_gfcff .WriteString ("\u000a");}else {_gfcff .WriteString ("\u0020");};};return _gfcff .String ();};var _ff =false ;func _fcegc (_ceab string ,_dcgca []rulingList ){_ec .Log .Info ("\u0024\u0024 \u0025\u0064\u0020g\u0072\u0069\u0064\u0073\u0020\u002d\u0020\u0025\u0073",len (_dcgca ),_ceab ); -for _ffdg ,_afbe :=range _dcgca {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_ffdg ,_afbe .String ());};};func _bcgc (_cege *textLine )bool {_ccgf :=true ;_cbgd :=-1;for _ ,_gbeg :=range _cege ._aebc {for _ ,_gdgd :=range _gbeg ._bgeaa {_dgefb :=_gdgd ._fefe ; -if _cbgd ==-1{_cbgd =_dgefb ;}else {if _cbgd !=_dgefb {_ccgf =false ;break ;};};};};return _ccgf ;};func (_gbd *wordBag )blocked (_febb *textWord )bool {if _febb .Urx < _gbd .Llx {_facg :=_dbga (_febb .PdfRectangle );_ddc :=_bgec (_gbd .PdfRectangle ); -if _gbd ._eeca .blocks (_facg ,_ddc ){if _aecc {_ec .Log .Info ("\u0062\u006c\u006f\u0063ke\u0064\u0020\u2190\u0078\u003a\u0020\u0025\u0073\u0020\u0025\u0073",_febb ,_gbd );};return true ;};}else if _gbd .Urx < _febb .Llx {_afba :=_dbga (_gbd .PdfRectangle ); -_bcag :=_bgec (_febb .PdfRectangle );if _gbd ._eeca .blocks (_afba ,_bcag ){if _aecc {_ec .Log .Info ("b\u006co\u0063\u006b\u0065\u0064\u0020\u0078\u2192\u0020:\u0020\u0025\u0073\u0020%s",_febb ,_gbd );};return true ;};};if _febb .Ury < _gbd .Lly {_bbgfd :=_edeff (_febb .PdfRectangle ); -_fdbd :=_fgee (_gbd .PdfRectangle );if _gbd ._gbef .blocks (_bbgfd ,_fdbd ){if _aecc {_ec .Log .Info ("\u0062\u006c\u006f\u0063ke\u0064\u0020\u2190\u0079\u003a\u0020\u0025\u0073\u0020\u0025\u0073",_febb ,_gbd );};return true ;};}else if _gbd .Ury < _febb .Lly {_cbaad :=_edeff (_gbd .PdfRectangle ); -_bbce :=_fgee (_febb .PdfRectangle );if _gbd ._gbef .blocks (_cbaad ,_bbce ){if _aecc {_ec .Log .Info ("b\u006co\u0063\u006b\u0065\u0064\u0020\u0079\u2192\u0020:\u0020\u0025\u0073\u0020%s",_febb ,_gbd );};return true ;};};return false ;};func (_ggda *wordBag )maxDepth ()float64 {return _ggda ._cfg -_ggda .Lly }; -func _agefd (_cfcag _ce .PdfColorspace ,_cadgd _ce .PdfColor )_fg .Color {if _cfcag ==nil ||_cadgd ==nil {return _fg .Black ;};_cadb ,_acegb :=_cfcag .ColorToRGB (_cadgd );if _acegb !=nil {_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006fu\u006c\u0064\u0020no\u0074\u0020\u0063\u006f\u006e\u0076e\u0072\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0025\u0076\u0020\u0028\u0025\u0076)\u0020\u0074\u006f\u0020\u0052\u0047\u0042\u003a \u0025\u0073",_cadgd ,_cfcag ,_acegb ); -return _fg .Black ;};_cbgf ,_fafab :=_cadb .(*_ce .PdfColorDeviceRGB );if !_fafab {_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0065\u0064 \u0063\u006f\u006c\u006f\u0072\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0052\u0047\u0042\u0020\u0063\u006flo\u0072\u0073\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0076",_cadb ); -return _fg .Black ;};return _fg .NRGBA {R :uint8 (_cbgf .R ()*255),G :uint8 (_cbgf .G ()*255),B :uint8 (_cbgf .B ()*255),A :uint8 (255)};};func (_faedf paraList )yNeighbours (_abfag float64 )map[*textPara ][]int {_agag :=make ([]event ,2*len (_faedf )); -if _abfag ==0{for _gdada ,_cggb :=range _faedf {_agag [2*_gdada ]=event {_cggb .Lly ,true ,_gdada };_agag [2*_gdada +1]=event {_cggb .Ury ,false ,_gdada };};}else {for _caad ,_eacfg :=range _faedf {_agag [2*_caad ]=event {_eacfg .Lly -_abfag *_eacfg .fontsize (),true ,_caad }; -_agag [2*_caad +1]=event {_eacfg .Ury +_abfag *_eacfg .fontsize (),false ,_caad };};};return _faedf .eventNeighbours (_agag );};func _cfaf (_gbeb []TextMark ,_adag *int ,_accfb TextMark )[]TextMark {_accfb .Offset =*_adag ;_gbeb =append (_gbeb ,_accfb ); -*_adag +=len (_accfb .Text );return _gbeb ;};func (_fcgad *textTable )getRight ()paraList {_bgdc :=make (paraList ,_fcgad ._dcfg );for _faag :=0;_faag < _fcgad ._dcfg ;_faag ++{_adgaf :=_fcgad .get (_fcgad ._ecbf -1,_faag )._gaca ;if _adgaf .taken (){return nil ; -};_bgdc [_faag ]=_adgaf ;};for _eaac :=0;_eaac < _fcgad ._dcfg -1;_eaac ++{if _bgdc [_eaac ]._fdgbd !=_bgdc [_eaac +1]{return nil ;};};return _bgdc ;};func (_gaefc *textPara )isAtom ()*textTable {_fefeg :=_gaefc ;_eefg :=_gaefc ._gaca ;_daaa :=_gaefc ._fdgbd ; -if _eefg .taken ()||_daaa .taken (){return nil ;};_bdce :=_eefg ._fdgbd ;if _bdce .taken ()||_bdce !=_daaa ._gaca {return nil ;};return _eggg (_fefeg ,_eefg ,_daaa ,_bdce );};func _ccef (_bgcfe []compositeCell )[]float64 {var _ffcfb []*textLine ;_ccbcc :=0; -for _ ,_baga :=range _bgcfe {_ccbcc +=len (_baga .paraList );_ffcfb =append (_ffcfb ,_baga .lines ()...);};_c .Slice (_ffcfb ,func (_dbac ,_ecdd int )bool {_egade ,_ecfce :=_ffcfb [_dbac ],_ffcfb [_ecdd ];_adeg ,_cgcea :=_egade ._bcdg ,_ecfce ._bcdg ;if !_ffegg (_adeg -_cgcea ){return _adeg < _cgcea ; -};return _egade .Llx < _ecfce .Llx ;});if _afcg {_ge .Printf ("\u0020\u0020\u0020 r\u006f\u0077\u0042\u006f\u0072\u0064\u0065\u0072\u0073:\u0020%\u0064 \u0070a\u0072\u0061\u0073\u0020\u0025\u0064\u0020\u006c\u0069\u006e\u0065\u0073\u000a",_ccbcc ,len (_ffcfb )); -for _egff ,_cffad :=range _ffcfb {_ge .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_egff ,_cffad );};};var _bbcbd []float64 ;_edbd :=_ffcfb [0];var _cdaed [][]*textLine ;_ddgd :=[]*textLine {_edbd };for _bcec ,_deebg :=range _ffcfb [1:]{if _deebg .Ury < _edbd .Lly {_afebd :=0.5*(_deebg .Ury +_edbd .Lly ); -if _afcg {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u003c\u0020\u0025\u0036.\u0032f\u0020\u0062\u006f\u0072\u0064\u0065\u0072\u003d\u0025\u0036\u002e\u0032\u0066\u000a"+"\u0009\u0020\u0071\u003d\u0025\u0073\u000a\u0009\u0020p\u003d\u0025\u0073\u000a",_bcec ,_deebg .Ury ,_edbd .Lly ,_afebd ,_edbd ,_deebg ); -};_bbcbd =append (_bbcbd ,_afebd );_cdaed =append (_cdaed ,_ddgd );_ddgd =nil ;};_ddgd =append (_ddgd ,_deebg );if _deebg .Lly < _edbd .Lly {_edbd =_deebg ;};};if len (_ddgd )> 0{_cdaed =append (_cdaed ,_ddgd );};if _afcg {_ge .Printf (" \u0020\u0020\u0020\u0020\u0020\u0020 \u0072\u006f\u0077\u0043\u006f\u0072\u0072\u0069\u0064o\u0072\u0073\u003d%\u0036.\u0032\u0066\u000a",_bbcbd ); -};if _afcg {_ec .Log .Info ("\u0072\u006f\u0077\u003d\u0025\u0064",len (_bgcfe ));for _fecge ,_dfdf :=range _bgcfe {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_fecge ,_dfdf );};_ec .Log .Info ("\u0067r\u006f\u0075\u0070\u0073\u003d\u0025d",len (_cdaed )); -for _ebcgc ,_fabge :=range _cdaed {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0064\u000a",_ebcgc ,len (_fabge ));for _eacgf ,_ffga :=range _fabge {_ge .Printf ("\u0025\u0038\u0064\u003a\u0020\u0025\u0073\u000a",_eacgf ,_ffga );};};};_ccaba :=true ; -for _fcgab ,_feeae :=range _cdaed {_agab :=true ;for _ecea ,_adbad :=range _bgcfe {if _afcg {_ge .Printf ("\u0020\u0020\u0020\u007e\u007e\u007e\u0067\u0072\u006f\u0075\u0070\u0020\u0025\u0064\u0020\u006f\u0066\u0020\u0025\u0064\u0020\u0063\u0065\u006cl\u0020\u0025\u0064\u0020\u006ff\u0020\u0025d\u0020\u0025\u0073\u000a",_fcgab ,len (_cdaed ),_ecea ,len (_bgcfe ),_adbad ); -};if !_adbad .hasLines (_feeae ){if _afcg {_ge .Printf ("\u0020\u0020\u0020\u0021\u0021\u0021\u0067\u0072\u006f\u0075\u0070\u0020\u0025d\u0020\u006f\u0066\u0020\u0025\u0064 \u0063\u0065\u006c\u006c\u0020\u0025\u0064\u0020\u006f\u0066\u0020\u0025\u0064 \u004f\u0055\u0054\u000a",_fcgab ,len (_cdaed ),_ecea ,len (_bgcfe )); -};_agab =false ;break ;};};if !_agab {_ccaba =false ;break ;};};if !_ccaba {if _afcg {_ec .Log .Info ("\u0072\u006f\u0077\u0020\u0063o\u0072\u0072\u0069\u0064\u006f\u0072\u0073\u0020\u0064\u006f\u006e\u0027\u0074 \u0073\u0070\u0061\u006e\u0020\u0061\u006c\u006c\u0020\u0063\u0065\u006c\u006c\u0073\u0020\u0069\u006e\u0020\u0072\u006f\u0077\u002e\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006eg"); -};_bbcbd =nil ;};if _afcg &&_bbcbd !=nil {_ge .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u002a\u002a*\u0072\u006f\u0077\u0043\u006f\u0072\u0072i\u0064\u006f\u0072\u0073\u003d\u0025\u0036\u002e\u0032\u0066\u000a",_bbcbd );};return _bbcbd ; -};func (_aff *TextMarkArray )getTextMarkAtOffset (_cbaa int )*TextMark {for _ ,_cefb :=range _aff ._dec {if _cefb .Offset ==_cbaa {return &_cefb ;};};return nil ;}; - -// ExtractText processes and extracts all text data in content streams and returns as a string. -// It takes into account character encodings in the PDF file, which are decoded by -// CharcodeBytesToUnicode. -// Characters that can't be decoded are replaced with MissingCodeRune ('\ufffd' = �). -func (_fgg *Extractor )ExtractText ()(string ,error ){_badf ,_ ,_ ,_gae :=_fgg .ExtractTextWithStats ();return _badf ,_gae ;};func (_fbag compositeCell )parasBBox ()(paraList ,_ce .PdfRectangle ){return _fbag .paraList ,_fbag .PdfRectangle ;};func _ddafc (_bfffa ,_fadcg _bc .Point )bool {_adge :=_aa .Abs (_bfffa .X -_fadcg .X ); -_cdeb :=_aa .Abs (_bfffa .Y -_fadcg .Y );return _beeee (_adge ,_cdeb );};func (_gcddc *textPara )writeText (_fecd _a .Writer ){if _gcddc ._bddea ==nil {_gcddc .writeCellText (_fecd );return ;};for _gcbf :=0;_gcbf < _gcddc ._bddea ._dcfg ;_gcbf ++{for _dadcc :=0; -_dadcc < _gcddc ._bddea ._ecbf ;_dadcc ++{_gfcg :=_gcddc ._bddea .get (_dadcc ,_gcbf );if _gfcg ==nil {_fecd .Write ([]byte ("\u0009"));}else {_gfcg .writeCellText (_fecd );};_fecd .Write ([]byte ("\u0020"));};if _gcbf < _gcddc ._bddea ._dcfg -1{_fecd .Write ([]byte ("\u000a")); -};};};func (_dbbfc rulingList )sort (){_c .Slice (_dbbfc ,_dbbfc .comp )};var (_eeff =map[rune ]string {0x0060:"\u0300",0x02CB:"\u0300",0x0027:"\u0301",0x00B4:"\u0301",0x02B9:"\u0301",0x02CA:"\u0301",0x005E:"\u0302",0x02C6:"\u0302",0x007E:"\u0303",0x02DC:"\u0303",0x00AF:"\u0304",0x02C9:"\u0304",0x02D8:"\u0306",0x02D9:"\u0307",0x00A8:"\u0308",0x00B0:"\u030a",0x02DA:"\u030a",0x02BA:"\u030b",0x02DD:"\u030b",0x02C7:"\u030c",0x02C8:"\u030d",0x0022:"\u030e",0x02BB:"\u0312",0x02BC:"\u0313",0x0486:"\u0313",0x055A:"\u0313",0x02BD:"\u0314",0x0485:"\u0314",0x0559:"\u0314",0x02D4:"\u031d",0x02D5:"\u031e",0x02D6:"\u031f",0x02D7:"\u0320",0x02B2:"\u0321",0x00B8:"\u0327",0x02CC:"\u0329",0x02B7:"\u032b",0x02CD:"\u0331",0x005F:"\u0332",0x204E:"\u0359"}; -);func (_cgeba *textTable )emptyCompositeRow (_acbg int )bool {for _aegcb :=0;_aegcb < _cgeba ._ecbf ;_aegcb ++{if _bdfe ,_eaead :=_cgeba ._egfe [_aaca (_aegcb ,_acbg )];_eaead {if len (_bdfe .paraList )> 0{return false ;};};};return true ;};func (_dcg *imageExtractContext )extractXObjectImage (_cee *_gb .PdfObjectName ,_faa _ag .GraphicsState ,_fead *_ce .PdfPageResources )error {_ebb ,_ :=_fead .GetXObjectByName (*_cee ); -if _ebb ==nil {return nil ;};_gdff ,_bad :=_dcg ._aabe [_ebb ];if !_bad {_ddb ,_gcb :=_fead .GetXObjectImageByName (*_cee );if _gcb !=nil {return _gcb ;};if _ddb ==nil {return nil ;};_gg ,_gcb :=_ddb .ToImage ();if _gcb !=nil {return _gcb ;};var _agg _ded .Image ; -if _ddb .Mask !=nil {if _agg ,_gcb =_fddd (_ddb .Mask ,_fg .Opaque );_gcb !=nil {_ec .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u0063\u006f\u0075\u006c\u0064 \u006eo\u0074\u0020\u0067\u0065\u0074\u0020\u0065\u0078\u0070\u006c\u0069\u0063\u0069\u0074\u0020\u0069\u006d\u0061\u0067e\u0020\u006d\u0061\u0073\u006b\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e"); -};}else if _ddb .SMask !=nil {_agg ,_gcb =_fbga (_ddb .SMask ,_fg .Opaque );if _gcb !=nil {_ec .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0066\u0074\u0020\u0069\u006da\u0067e\u0020\u006d\u0061\u0073k\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -};};if _agg !=nil {_dbb ,_cag :=_gg .ToGoImage ();if _cag !=nil {return _cag ;};_dbb =_eaecc (_dbb ,_agg );switch _ddb .ColorSpace .String (){case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0049n\u0064\u0065\u0078\u0065\u0064":_gg ,_cag =_ce .ImageHandling .NewGrayImageFromGoImage (_dbb ); -if _cag !=nil {return _cag ;};default:_gg ,_cag =_ce .ImageHandling .NewImageFromGoImage (_dbb );if _cag !=nil {return _cag ;};};};_gdff =&cachedImage {_aca :_gg ,_abb :_ddb .ColorSpace };_dcg ._aabe [_ebb ]=_gdff ;};_gag :=_gdff ._aca ;_agc :=_gdff ._abb ; -_ege ,_dbc :=_agc .ImageToRGB (*_gag );if _dbc !=nil {return _dbc ;};_ec .Log .Debug ("@\u0044\u006f\u0020\u0043\u0054\u004d\u003a\u0020\u0025\u0073",_faa .CTM .String ());_gdbf :=ImageMark {Image :&_ege ,Width :_faa .CTM .ScalingFactorX (),Height :_faa .CTM .ScalingFactorY (),Angle :_faa .CTM .Angle ()}; -_gdbf .X ,_gdbf .Y =_faa .CTM .Translation ();_dcg ._gbf =append (_dcg ._gbf ,_gdbf );_dcg ._fbc ++;return nil ;}; - -// String returns a description of `tm`. -func (_ccgdg *textMark )String ()string {return _ge .Sprintf ("\u0025\u002e\u0032f \u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066\u0020\u0022\u0025\u0073\u0022",_ccgdg .PdfRectangle ,_ccgdg ._bfaca ,_ccgdg ._ecaa );};func _cgbe (_dfce structElement )[]structElement {_egbb :=[]structElement {}; -for _ ,_edggc :=range _dfce ._cagb {for _ ,_fgbd :=range _edggc ._cagb {for _ ,_dffe :=range _fgbd ._cagb {if _dffe ._bacdb =="\u004c"{_egbb =append (_egbb ,_dffe );};};};};return _egbb ;};func (_abddc paraList )llyRange (_cde []int ,_cefga ,_cabdb float64 )[]int {_beg :=len (_abddc ); -if _cabdb < _abddc [_cde [0]].Lly ||_cefga > _abddc [_cde [_beg -1]].Lly {return nil ;};_dfaf :=_c .Search (_beg ,func (_bcaf int )bool {return _abddc [_cde [_bcaf ]].Lly >=_cefga });_edeef :=_c .Search (_beg ,func (_afag int )bool {return _abddc [_cde [_afag ]].Lly > _cabdb }); -return _cde [_dfaf :_edeef ];};func (_edgce *textWord )addDiacritic (_eccfb string ){_ccdfb :=_edgce ._bgeaa [len (_edgce ._bgeaa )-1];_ccdfb ._ecaa +=_eccfb ;_ccdfb ._ecaa =_ef .NFKC .String (_ccdfb ._ecaa );};func (_ffgdd rulingList )secMinMax ()(float64 ,float64 ){_face ,_cefag :=_ffgdd [0]._cebe ,_ffgdd [0]._deee ; -for _ ,_ebdf :=range _ffgdd [1:]{if _ebdf ._cebe < _face {_face =_ebdf ._cebe ;};if _ebdf ._deee > _cefag {_cefag =_ebdf ._deee ;};};return _face ,_cefag ;};func (_beggg paraList )addNeighbours (){_fcffc :=func (_agefc []int ,_ebbad *textPara )([]*textPara ,[]*textPara ){_gfbd :=make ([]*textPara ,0,len (_agefc )-1); -_acfg :=make ([]*textPara ,0,len (_agefc )-1);for _ ,_dgadg :=range _agefc {_bfcb :=_beggg [_dgadg ];if _bfcb .Urx <=_ebbad .Llx {_gfbd =append (_gfbd ,_bfcb );}else if _bfcb .Llx >=_ebbad .Urx {_acfg =append (_acfg ,_bfcb );};};return _gfbd ,_acfg ;}; -_eccgb :=func (_cbfgbf []int ,_gcbeb *textPara )([]*textPara ,[]*textPara ){_febg :=make ([]*textPara ,0,len (_cbfgbf )-1);_aegcf :=make ([]*textPara ,0,len (_cbfgbf )-1);for _ ,_ccbaf :=range _cbfgbf {_beaga :=_beggg [_ccbaf ];if _beaga .Ury <=_gcbeb .Lly {_aegcf =append (_aegcf ,_beaga ); -}else if _beaga .Lly >=_gcbeb .Ury {_febg =append (_febg ,_beaga );};};return _febg ,_aegcf ;};_eccf :=_beggg .yNeighbours (_gcga );for _ ,_afbg :=range _beggg {_cgaf :=_eccf [_afbg ];if len (_cgaf )==0{continue ;};_bffb ,_eaecb :=_fcffc (_cgaf ,_afbg ); -if len (_bffb )==0&&len (_eaecb )==0{continue ;};if len (_bffb )> 0{_aafc :=_bffb [0];for _ ,_eccfa :=range _bffb [1:]{if _eccfa .Urx >=_aafc .Urx {_aafc =_eccfa ;};};for _ ,_cegab :=range _bffb {if _cegab !=_aafc &&_cegab .Urx > _aafc .Llx {_aafc =nil ; -break ;};};if _aafc !=nil &&_fdg (_afbg .PdfRectangle ,_aafc .PdfRectangle ){_afbg ._egab =_aafc ;};};if len (_eaecb )> 0{_dgc :=_eaecb [0];for _ ,_gbbfd :=range _eaecb [1:]{if _gbbfd .Llx <=_dgc .Llx {_dgc =_gbbfd ;};};for _ ,_bccaf :=range _eaecb {if _bccaf !=_dgc &&_bccaf .Llx < _dgc .Urx {_dgc =nil ; -break ;};};if _dgc !=nil &&_fdg (_afbg .PdfRectangle ,_dgc .PdfRectangle ){_afbg ._gaca =_dgc ;};};};_eccf =_beggg .xNeighbours (_gccfg );for _ ,_ffbgf :=range _beggg {_gcad :=_eccf [_ffbgf ];if len (_gcad )==0{continue ;};_edbde ,_adbae :=_eccgb (_gcad ,_ffbgf ); -if len (_edbde )==0&&len (_adbae )==0{continue ;};if len (_adbae )> 0{_abeb :=_adbae [0];for _ ,_acbb :=range _adbae [1:]{if _acbb .Ury >=_abeb .Ury {_abeb =_acbb ;};};for _ ,_dcad :=range _adbae {if _dcad !=_abeb &&_dcad .Ury > _abeb .Lly {_abeb =nil ; -break ;};};if _abeb !=nil &&_fcd (_ffbgf .PdfRectangle ,_abeb .PdfRectangle ){_ffbgf ._fdgbd =_abeb ;};};if len (_edbde )> 0{_bgad :=_edbde [0];for _ ,_abfgd :=range _edbde [1:]{if _abfgd .Lly <=_bgad .Lly {_bgad =_abfgd ;};};for _ ,_cdbf :=range _edbde {if _cdbf !=_bgad &&_cdbf .Lly < _bgad .Ury {_bgad =nil ; -break ;};};if _bgad !=nil &&_fcd (_ffbgf .PdfRectangle ,_bgad .PdfRectangle ){_ffbgf ._abdda =_bgad ;};};};for _ ,_caaeb :=range _beggg {if _caaeb ._egab !=nil &&_caaeb ._egab ._gaca !=_caaeb {_caaeb ._egab =nil ;};if _caaeb ._abdda !=nil &&_caaeb ._abdda ._fdgbd !=_caaeb {_caaeb ._abdda =nil ; -};if _caaeb ._gaca !=nil &&_caaeb ._gaca ._egab !=_caaeb {_caaeb ._gaca =nil ;};if _caaeb ._fdgbd !=nil &&_caaeb ._fdgbd ._abdda !=_caaeb {_caaeb ._fdgbd =nil ;};};};func (_fdfd *wordBag )depthIndexes ()[]int {if len (_fdfd ._faba )==0{return nil ;};_afeg :=make ([]int ,len (_fdfd ._faba )); -_fagd :=0;for _agfd :=range _fdfd ._faba {_afeg [_fagd ]=_agfd ;_fagd ++;};_c .Ints (_afeg );return _afeg ;};func (_ddaac gridTiling )complete ()bool {for _ ,_ddcff :=range _ddaac ._bage {for _ ,_edcec :=range _ddcff {if !_edcec .complete (){return false ; -};};};return true ;};func (_fdd *textObject )checkOp (_fdbff *_ag .ContentStreamOperation ,_efd int ,_feb bool )(_efdb bool ,_fdaa error ){if _fdd ==nil {var _eeab []_gb .PdfObject ;if _efd > 0{_eeab =_fdbff .Params ;if len (_eeab )> _efd {_eeab =_eeab [:_efd ]; -};};_ec .Log .Debug ("\u0025\u0023q \u006f\u0070\u0065r\u0061\u006e\u0064\u0020out\u0073id\u0065\u0020\u0074\u0065\u0078\u0074\u002e p\u0061\u0072\u0061\u006d\u0073\u003d\u0025+\u0076",_fdbff .Operand ,_eeab );};if _efd >=0{if len (_fdbff .Params )!=_efd {if _feb {_fdaa =_d .New ("\u0069n\u0063\u006f\u0072\u0072e\u0063\u0074\u0020\u0070\u0061r\u0061m\u0065t\u0065\u0072\u0020\u0063\u006f\u0075\u006et"); -};_ec .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u0023\u0071\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020h\u0061\u0076\u0065\u0020\u0025\u0064\u0020i\u006e\u0070\u0075\u0074\u0020\u0070\u0061\u0072\u0061\u006d\u0073,\u0020\u0067\u006f\u0074\u0020\u0025\u0064\u0020\u0025\u002b\u0076",_fdbff .Operand ,_efd ,len (_fdbff .Params ),_fdbff .Params ); -return false ,_fdaa ;};};return true ,nil ;};func (_aegdb rulingList )blocks (_fgec ,_dfbfe *ruling )bool {if _fgec ._cebe > _dfbfe ._deee ||_dfbfe ._cebe > _fgec ._deee {return false ;};_dfbce :=_aa .Max (_fgec ._cebe ,_dfbfe ._cebe );_gdcfc :=_aa .Min (_fgec ._deee ,_dfbfe ._deee ); -if _fgec ._abbgc > _dfbfe ._abbgc {_fgec ,_dfbfe =_dfbfe ,_fgec ;};for _ ,_ffaga :=range _aegdb {if _fgec ._abbgc <=_ffaga ._abbgc +_gcef &&_ffaga ._abbgc <=_dfbfe ._abbgc +_gcef &&_ffaga ._cebe <=_gdcfc &&_dfbce <=_ffaga ._deee {return true ;};};return false ; -}; - -// New returns an Extractor instance for extracting content from the input PDF page. -func New (page *_ce .PdfPage )(*Extractor ,error ){return NewWithOptions (page ,nil )};func (_gacff *textMark )inDiacriticArea (_bced *textMark )bool {_beae :=_gacff .Llx -_bced .Llx ;_gcff :=_gacff .Urx -_bced .Urx ;_aade :=_gacff .Lly -_bced .Lly ;return _aa .Abs (_beae +_gcff )< _gacff .Width ()*_geb &&_aa .Abs (_aade )< _gacff .Height ()*_geb ; -};func (_bec *textObject )getFillColor ()_fg .Color {return _agefd (_bec ._gbe .ColorspaceNonStroking ,_bec ._gbe .ColorNonStroking );};func (_bgcc *wordBag )highestWord (_efbg int ,_egfd ,_cegf float64 )*textWord {for _ ,_bee :=range _bgcc ._faba [_efbg ]{if _egfd <=_bee ._cffdg &&_bee ._cffdg <=_cegf {return _bee ; -};};return nil ;};type list struct{_ggdb []*textLine ;_ffcg string ;_gbab []*list ;_dage string ;};type textWord struct{_ce .PdfRectangle ;_cffdg float64 ;_bbdb string ;_bgeaa []*textMark ;_ddgee float64 ;_gfffc bool ;};type gridTile struct{_ce .PdfRectangle ; -_fgde ,_ebdg ,_ddbaf ,_ebga bool ;};func (_aeadcd *ruling )alignsPrimary (_efgb *ruling )bool {return _aeadcd ._bfbc ==_efgb ._bfbc &&_aa .Abs (_aeadcd ._abbgc -_efgb ._abbgc )< _gcef *0.5;}; - -// ExtractPageText returns the text contents of `e` (an Extractor for a page) as a PageText. -// TODO(peterwilliams97): The stats complicate this function signature and aren't very useful. -// -// Replace with a function like Extract() (*PageText, error) -func (_ead *Extractor )ExtractPageText ()(*PageText ,int ,int ,error ){_gfef ,_adc ,_ebg ,_bgb :=_ead .extractPageText (_ead ._bcf ,_ead ._ab ,_bc .IdentityMatrix (),0);if _bgb !=nil &&_bgb !=_ce .ErrColorOutOfRange {return nil ,0,0,_bgb ;};if _ead ._fgb !=nil {_gfef ._ccg ._fcgfa =_ead ._fgb .UseSimplerExtractionProcess ; -};_gfef .computeViews ();_bgb =_cbda (_gfef );if _bgb !=nil {return nil ,0,0,_bgb ;};if _ead ._fgb !=nil {if _ead ._fgb .ApplyCropBox &&_ead ._ed !=nil {_gfef .ApplyArea (*_ead ._ed );};_gfef ._ccg ._efab =_ead ._fgb .DisableDocumentTags ;};return _gfef ,_adc ,_ebg ,nil ; -};func (_ceda *textObject )getFont (_bce string )(*_ce .PdfFont ,error ){if _ceda ._bgcb ._cd !=nil {_bacb ,_bffc :=_ceda .getFontDict (_bce );if _bffc !=nil {_ec .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0067\u0065\u0074\u0046\u006f\u006e\u0074:\u0020n\u0061m\u0065=\u0025\u0073\u002c\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0073",_bce ,_bffc .Error ()); -return nil ,_bffc ;};_ceda ._bgcb ._bg ++;_ffa ,_caac :=_ceda ._bgcb ._cd [_bacb .String ()];if _caac {_ffa ._addb =_ceda ._bgcb ._bg ;return _ffa ._ddaa ,nil ;};};_ace ,_afea :=_ceda .getFontDict (_bce );if _afea !=nil {return nil ,_afea ;};_caab ,_afea :=_ceda .getFontDirect (_bce ); -if _afea !=nil {return nil ,_afea ;};if _ceda ._bgcb ._cd !=nil {_bfgc :=fontEntry {_caab ,_ceda ._bgcb ._bg };if len (_ceda ._bgcb ._cd )>=_gdgb {var _fgcf []string ;for _fafb :=range _ceda ._bgcb ._cd {_fgcf =append (_fgcf ,_fafb );};_c .Slice (_fgcf ,func (_cdgd ,_gffb int )bool {return _ceda ._bgcb ._cd [_fgcf [_cdgd ]]._addb < _ceda ._bgcb ._cd [_fgcf [_gffb ]]._addb ; -});delete (_ceda ._bgcb ._cd ,_fgcf [0]);};_ceda ._bgcb ._cd [_ace .String ()]=_bfgc ;};return _caab ,nil ;};func (_bgbaa rulingList )merge ()*ruling {_gdfdb :=_bgbaa [0]._abbgc ;_bbbb :=_bgbaa [0]._cebe ;_bfba :=_bgbaa [0]._deee ;for _ ,_gbefc :=range _bgbaa [1:]{_gdfdb +=_gbefc ._abbgc ; -if _gbefc ._cebe < _bbbb {_bbbb =_gbefc ._cebe ;};if _gbefc ._deee > _bfba {_bfba =_gbefc ._deee ;};};_dggdg :=&ruling {_bfbc :_bgbaa [0]._bfbc ,_bgaa :_bgbaa [0]._bgaa ,Color :_bgbaa [0].Color ,_abbgc :_gdfdb /float64 (len (_bgbaa )),_cebe :_bbbb ,_deee :_bfba }; -if _fcfe {_ec .Log .Info ("\u006de\u0072g\u0065\u003a\u0020\u0025\u0032d\u0020\u0076e\u0063\u0073\u0020\u0025\u0073",len (_bgbaa ),_dggdg );for _fcad ,_geegc :=range _bgbaa {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_fcad ,_geegc ); -};};return _dggdg ;};func (_acca *textPara )taken ()bool {return _acca ==nil ||_acca ._bfcd };func (_fdfe rulingList )splitSec ()[]rulingList {_c .Slice (_fdfe ,func (_geffd ,_bgca int )bool {_egdg ,_bbge :=_fdfe [_geffd ],_fdfe [_bgca ];if _egdg ._cebe !=_bbge ._cebe {return _egdg ._cebe < _bbge ._cebe ; -};return _egdg ._deee < _bbge ._deee ;});_dffeb :=make (map[*ruling ]struct{},len (_fdfe ));_gabed :=func (_fbcfb *ruling )rulingList {_fgbbd :=rulingList {_fbcfb };_dffeb [_fbcfb ]=struct{}{};for _ ,_decc :=range _fdfe {if _ ,_debe :=_dffeb [_decc ];_debe {continue ; -};for _ ,_afgaa :=range _fgbbd {if _decc .alignsSec (_afgaa ){_fgbbd =append (_fgbbd ,_decc );_dffeb [_decc ]=struct{}{};break ;};};};return _fgbbd ;};_fdgff :=[]rulingList {_gabed (_fdfe [0])};for _ ,_feede :=range _fdfe [1:]{if _ ,_gead :=_dffeb [_feede ]; -_gead {continue ;};_fdgff =append (_fdgff ,_gabed (_feede ));};return _fdgff ;};func (_agbd *ruling )alignsSec (_cgdae *ruling )bool {const _ecce =_gcef +1.0;return _agbd ._cebe -_ecce <=_cgdae ._deee &&_cgdae ._cebe -_ecce <=_agbd ._deee ;};func (_dfge *wordBag )removeWord (_cdaeb *textWord ,_effe int ){_eeac :=_dfge ._faba [_effe ]; -_eeac =_beff (_eeac ,_cdaeb );if len (_eeac )==0{delete (_dfge ._faba ,_effe );}else {_dfge ._faba [_effe ]=_eeac ;};};func (_fbgg *textTable )reduceTiling (_aadf gridTiling ,_egabb float64 )*textTable {_cbcg :=make ([]int ,0,_fbgg ._dcfg );_cdgee :=make ([]int ,0,_fbgg ._ecbf ); -_dadfb :=_aadf ._cgecb ;_gbed :=_aadf ._agbb ;for _ecfg :=0;_ecfg < _fbgg ._dcfg ;_ecfg ++{_dgbbf :=_ecfg > 0&&_aa .Abs (_gbed [_ecfg -1]-_gbed [_ecfg ])< _egabb &&_fbgg .emptyCompositeRow (_ecfg );if !_dgbbf {_cbcg =append (_cbcg ,_ecfg );};};for _fcdfa :=0; -_fcdfa < _fbgg ._ecbf ;_fcdfa ++{_bace :=_fcdfa < _fbgg ._ecbf -1&&_aa .Abs (_dadfb [_fcdfa +1]-_dadfb [_fcdfa ])< _egabb &&_fbgg .emptyCompositeColumn (_fcdfa );if !_bace {_cdgee =append (_cdgee ,_fcdfa );};};if len (_cbcg )==_fbgg ._dcfg &&len (_cdgee )==_fbgg ._ecbf {return _fbgg ; -};_fefeb :=textTable {_beaeg :_fbgg ._beaeg ,_ecbf :len (_cdgee ),_dcfg :len (_cbcg ),_egfe :make (map[uint64 ]compositeCell ,len (_cdgee )*len (_cbcg ))};if _afcg {_ec .Log .Info ("\u0072\u0065\u0064\u0075c\u0065\u0054\u0069\u006c\u0069\u006e\u0067\u003a\u0020\u0025d\u0078%\u0064\u0020\u002d\u003e\u0020\u0025\u0064x\u0025\u0064",_fbgg ._ecbf ,_fbgg ._dcfg ,len (_cdgee ),len (_cbcg )); -_ec .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0043\u006f\u006c\u0073\u003a\u0020\u0025\u002b\u0076",_cdgee );_ec .Log .Info ("\u0072\u0065d\u0075\u0063\u0065d\u0052\u006f\u0077\u0073\u003a\u0020\u0025\u002b\u0076",_cbcg );};for _egeca ,_aabgd :=range _cbcg {for _gceaa ,_ddgfb :=range _cdgee {_aafdd ,_fbcfa :=_fbgg .getComposite (_ddgfb ,_aabgd ); -if len (_aafdd )==0{continue ;};if _afcg {_ge .Printf ("\u0020 \u0025\u0032\u0064\u002c \u0025\u0032\u0064\u0020\u0028%\u0032d\u002c \u0025\u0032\u0064\u0029\u0020\u0025\u0071\n",_gceaa ,_egeca ,_ddgfb ,_aabgd ,_adagc (_aafdd .merge ().text (),50));};_fefeb .putComposite (_gceaa ,_egeca ,_aafdd ,_fbcfa ); -};};return &_fefeb ;};func (_dfcfg *wordBag )text ()string {_ccbfg :=_dfcfg .allWords ();_fbg :=make ([]string ,len (_ccbfg ));for _fcfg ,_fcge :=range _ccbfg {_fbg [_fcfg ]=_fcge ._bbdb ;};return _gd .Join (_fbg ,"\u0020");};func _abdg (_dced *wordBag ,_cdfcc *textWord ,_gbcaa float64 )bool {return _cdfcc .Llx < _dced .Urx +_gbcaa &&_dced .Llx -_gbcaa < _cdfcc .Urx ; -}; - -// BBox returns the smallest axis-aligned rectangle that encloses all the TextMarks in `ma`. -func (_daea *TextMarkArray )BBox ()(_ce .PdfRectangle ,bool ){var _afgc _ce .PdfRectangle ;_gabb :=false ;for _ ,_ccfd :=range _daea ._dec {if _ccfd .Meta ||_ecga (_ccfd .Text ){continue ;};if _gabb {_afgc =_cdggc (_afgc ,_ccfd .BBox );}else {_afgc =_ccfd .BBox ; -_gabb =true ;};};return _afgc ,_gabb ;};func _ccaa (_bafg *list ,_ddcf *_gd .Builder ,_babg *string ){_fbde :=_eabf (_bafg ,_babg );_ddcf .WriteString (_fbde );for _ ,_edbag :=range _bafg ._gbab {_gccg :=*_babg +"\u0020\u0020\u0020";_ccaa (_edbag ,_ddcf ,&_gccg ); -};};func _ecga (_bdadd string )bool {for _ ,_bgdfg :=range _bdadd {if !_de .IsSpace (_bgdfg ){return false ;};};return true ;};func (_gfbb *textLine )bbox ()_ce .PdfRectangle {return _gfbb .PdfRectangle };func _gdfab (_bfcg []structElement ,_ebagg map[int ][]*textLine ,_bgbce _gb .PdfObject )[]*list {_geggf :=[]*list {}; -for _ ,_afga :=range _bfcg {_ggab :=_afga ._cagb ;_eafc :=int (_afga ._efcc );_eagcd :=_afga ._bacdb ;_eeadd :=[]*textLine {};_aegc :=[]*list {};_ffccc :=_afga ._geaa ;_gbdd ,_daeab :=(_ffccc .(*_gb .PdfObjectReference ));if !_daeab {_ec .Log .Debug ("\u0066\u0061\u0069l\u0065\u0064\u0020\u006f\u0074\u0020\u0063\u0061\u0073\u0074\u0020\u0074\u006f\u0020\u002a\u0063\u006f\u0072\u0065\u002e\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074R\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065"); -};if _eafc !=-1&&_gbdd !=nil {if _cbgg ,_gcbcg :=_ebagg [_eafc ];_gcbcg {if _eaca ,_fcfb :=_bgbce .(*_gb .PdfIndirectObject );_fcfb {_dbad :=_eaca .PdfObjectReference ;if _gc .DeepEqual (*_gbdd ,_dbad ){_eeadd =_cbgg ;};};};};if _ggab !=nil {_aegc =_gdfab (_ggab ,_ebagg ,_bgbce ); -};_gcag :=_baba (_eeadd ,_eagcd ,_aegc );_geggf =append (_geggf ,_gcag );};return _geggf ;}; - -// Text gets the extracted text contained in `l`. -func (_ccdc *list )Text ()string {_cfee :=&_gd .Builder {};_ggee :="";_ccaa (_ccdc ,_cfee ,&_ggee );return _cfee .String ();};type event struct{_gcaf float64 ;_cgcbd bool ;_bffcfb int ;}; - -// String returns a description of `p`. -func (_bcbd *textPara )String ()string {if _bcbd ._bedf {return _ge .Sprintf ("\u0025\u0036\u002e\u0032\u0066\u0020\u005b\u0045\u004d\u0050\u0054\u0059\u005d",_bcbd .PdfRectangle );};_cedd :="";if _bcbd ._bddea !=nil {_cedd =_ge .Sprintf ("\u005b\u0025\u0064\u0078\u0025\u0064\u005d\u0020",_bcbd ._bddea ._ecbf ,_bcbd ._bddea ._dcfg ); -};return _ge .Sprintf ("\u0025\u0036\u002e\u0032f \u0025\u0073\u0025\u0064\u0020\u006c\u0069\u006e\u0065\u0073\u0020\u0025\u0071",_bcbd .PdfRectangle ,_cedd ,len (_bcbd ._bdbcg ),_adagc (_bcbd .text (),50));};func (_dcag *textMark )bbox ()_ce .PdfRectangle {return _dcag .PdfRectangle }; - - -// GetContentStreamOps returns the contentStreamOps field of `pt`. -func (_bdab *PageText )GetContentStreamOps ()*_ag .ContentStreamOperations {return _bdab ._ecfe };type stateStack []*textState ;func _dgfb (_dgda _bc .Point )_bc .Matrix {return _bc .TranslationMatrix (_dgda .X ,_dgda .Y )};var _efe =TextMark {Text :"\u005b\u0058\u005d",Original :"\u0020",Meta :true ,FillColor :_fg .White ,StrokeColor :_fg .White }; -func (_eeaa gridTile )contains (_ecef _ce .PdfRectangle )bool {if _eeaa .numBorders ()< 3{return false ;};if _eeaa ._ebdg &&_ecef .Llx < _eeaa .Llx -_fdgb {return false ;};if _eeaa ._ebga &&_ecef .Urx > _eeaa .Urx +_fdgb {return false ;};if _eeaa ._ddbaf &&_ecef .Lly < _eeaa .Lly -_fdgb {return false ; -};if _eeaa ._fgde &&_ecef .Ury > _eeaa .Ury +_fdgb {return false ;};return true ;};func (_bcbdg *wordBag )removeDuplicates (){if _fbfc {_ec .Log .Info ("r\u0065m\u006f\u0076\u0065\u0044\u0075\u0070\u006c\u0069c\u0061\u0074\u0065\u0073: \u0025\u0071",_bcbdg .text ()); -};for _ ,_eagcb :=range _bcbdg .depthIndexes (){if len (_bcbdg ._faba [_eagcb ])==0{continue ;};_bgfcfe :=_bcbdg ._faba [_eagcb ][0];_dccdd :=_bada *_bgfcfe ._ddgee ;_ecfd :=_bgfcfe ._cffdg ;for _ ,_aaecb :=range _bcbdg .depthBand (_ecfd ,_ecfd +_dccdd ){_cddde :=map[*textWord ]struct{}{}; -_cgbee :=_bcbdg ._faba [_aaecb ];for _ ,_aacd :=range _cgbee {if _ ,_gcae :=_cddde [_aacd ];_gcae {continue ;};for _ ,_daeac :=range _cgbee {if _ ,_fbedag :=_cddde [_daeac ];_fbedag {continue ;};if _daeac !=_aacd &&_daeac ._bbdb ==_aacd ._bbdb &&_aa .Abs (_daeac .Llx -_aacd .Llx )< _dccdd &&_aa .Abs (_daeac .Urx -_aacd .Urx )< _dccdd &&_aa .Abs (_daeac .Lly -_aacd .Lly )< _dccdd &&_aa .Abs (_daeac .Ury -_aacd .Ury )< _dccdd {_cddde [_daeac ]=struct{}{}; -};};};if len (_cddde )> 0{_accfe :=0;for _ ,_gdbbg :=range _cgbee {if _ ,_gdge :=_cddde [_gdbbg ];!_gdge {_cgbee [_accfe ]=_gdbbg ;_accfe ++;};};_bcbdg ._faba [_aaecb ]=_cgbee [:len (_cgbee )-len (_cddde )];if len (_bcbdg ._faba [_aaecb ])==0{delete (_bcbdg ._faba ,_aaecb ); -};};};};};func (_ddge *textObject )moveLP (_efgd ,_badcf float64 ){_ddge ._ecg .Concat (_bc .NewMatrix (1,0,0,1,_efgd ,_badcf ));_ddge ._eee =_ddge ._ecg ;}; - -// String returns a description of `l`. -func (_gdcef *textLine )String ()string {return _ge .Sprintf ("\u0025\u002e2\u0066\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u0073\u0069\u007a\u0065\u003d\u0025\u002e\u0032\u0066\u0020\"%\u0073\u0022",_gdcef ._bcdg ,_gdcef .PdfRectangle ,_gdcef ._ecag ,_gdcef .text ()); -};func (_dfee compositeCell )split (_cbd ,_ggffa []float64 )*textTable {_fcgc :=len (_cbd )+1;_bffcg :=len (_ggffa )+1;if _afcg {_ec .Log .Info ("\u0063\u006f\u006d\u0070\u006f\u0073\u0069t\u0065\u0043\u0065l\u006c\u002e\u0073\u0070l\u0069\u0074\u003a\u0020\u0025\u0064\u0020\u0078\u0020\u0025\u0064\u000a\u0009\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u003d\u0025\u0073\u000a"+"\u0009\u0072\u006f\u0077\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072\u0073=\u0025\u0036\u002e\u0032\u0066\u000a\t\u0063\u006f\u006c\u0043\u006f\u0072\u0072\u0069\u0064\u006f\u0072\u0073\u003d%\u0036\u002e\u0032\u0066",_bffcg ,_fcgc ,_dfee ,_cbd ,_ggffa ); -_ge .Printf ("\u0020\u0020\u0020\u0020\u0025\u0064\u0020\u0070\u0061\u0072\u0061\u0073\u000a",len (_dfee .paraList ));for _deff ,_beage :=range _dfee .paraList {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_deff ,_beage .String ());}; -_ge .Printf ("\u0020\u0020\u0020\u0020\u0025\u0064\u0020\u006c\u0069\u006e\u0065\u0073\u000a",len (_dfee .lines ()));for _egac ,_ddcd :=range _dfee .lines (){_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_egac ,_ddcd );};};_cbd =_ggba (_cbd ,_dfee .Ury ,_dfee .Lly ); -_ggffa =_ggba (_ggffa ,_dfee .Llx ,_dfee .Urx );_gbee :=make (map[uint64 ]*textPara ,_bffcg *_fcgc );_dfeb :=textTable {_ecbf :_bffcg ,_dcfg :_fcgc ,_gcbga :_gbee };_ddbb :=_dfee .paraList ;_c .Slice (_ddbb ,func (_cfdb ,_fafae int )bool {_dggg ,_adcga :=_ddbb [_cfdb ],_ddbb [_fafae ]; -_ecgd ,_cgbdg :=_dggg .Lly ,_adcga .Lly ;if _ecgd !=_cgbdg {return _ecgd < _cgbdg ;};return _dggg .Llx < _adcga .Llx ;});_abbc :=make (map[uint64 ]_ce .PdfRectangle ,_bffcg *_fcgc );for _efaa ,_cccd :=range _cbd [1:]{_ccfgc :=_cbd [_efaa ];for _gagg ,_ffdd :=range _ggffa [1:]{_ggef :=_ggffa [_gagg ]; -_abbc [_aaca (_gagg ,_efaa )]=_ce .PdfRectangle {Llx :_ggef ,Urx :_ffdd ,Lly :_cccd ,Ury :_ccfgc };};};if _afcg {_ec .Log .Info ("\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u0043\u0065l\u006c\u002e\u0073\u0070\u006c\u0069\u0074\u003a\u0020\u0072e\u0063\u0074\u0073"); -_ge .Printf ("\u0020\u0020\u0020\u0020");for _fgbb :=0;_fgbb < _bffcg ;_fgbb ++{_ge .Printf ("\u0025\u0033\u0030\u0064\u002c\u0020",_fgbb );};_ge .Println ();for _cdef :=0;_cdef < _fcgc ;_cdef ++{_ge .Printf ("\u0020\u0020\u0025\u0032\u0064\u003a",_cdef ); -for _ebbe :=0;_ebbe < _bffcg ;_ebbe ++{_ge .Printf ("\u00256\u002e\u0032\u0066\u002c\u0020",_abbc [_aaca (_ebbe ,_cdef )]);};_ge .Println ();};};_dbf :=func (_aecfd *textLine )(int ,int ){for _ddgc :=0;_ddgc < _fcgc ;_ddgc ++{for _abdcd :=0;_abdcd < _bffcg ; -_abdcd ++{if _fafg (_abbc [_aaca (_abdcd ,_ddgc )],_aecfd .PdfRectangle ){return _abdcd ,_ddgc ;};};};return -1,-1;};_eadg :=make (map[uint64 ][]*textLine ,_bffcg *_fcgc );for _ ,_adfa :=range _ddbb .lines (){_cdgab ,_ccde :=_dbf (_adfa );if _cdgab < 0{continue ; -};_eadg [_aaca (_cdgab ,_ccde )]=append (_eadg [_aaca (_cdgab ,_ccde )],_adfa );};for _dgfg :=0;_dgfg < len (_cbd )-1;_dgfg ++{_gffa :=_cbd [_dgfg ];_adgg :=_cbd [_dgfg +1];for _fggc :=0;_fggc < len (_ggffa )-1;_fggc ++{_ebcc :=_ggffa [_fggc ];_dbdb :=_ggffa [_fggc +1]; -_eggc :=_ce .PdfRectangle {Llx :_ebcc ,Urx :_dbdb ,Lly :_adgg ,Ury :_gffa };_afaa :=_eadg [_aaca (_fggc ,_dgfg )];if len (_afaa )==0{continue ;};_eaded :=_ffec (_eggc ,_afaa );_dfeb .put (_fggc ,_dgfg ,_eaded );};};return &_dfeb ;};func _fbda (_aeeg []_gb .PdfObject )(_ffgeg ,_fcbga float64 ,_acgec error ){if len (_aeeg )!=2{return 0,0,_ge .Errorf ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0073\u003a \u0025\u0064",len (_aeeg )); -};_fdecb ,_acgec :=_gb .GetNumbersAsFloat (_aeeg );if _acgec !=nil {return 0,0,_acgec ;};return _fdecb [0],_fdecb [1],nil ;};type subpath struct{_gfefe []_bc .Point ;_cgde bool ;};func (_bedc *textTable )newTablePara ()*textPara {_fbfeg :=_bedc .computeBbox (); -_cadab :=&textPara {PdfRectangle :_fbfeg ,_ebcf :_fbfeg ,_bddea :_bedc };if _afcg {_ec .Log .Info ("\u006e\u0065w\u0054\u0061\u0062l\u0065\u0050\u0061\u0072\u0061\u003a\u0020\u0025\u0073",_cadab );};return _cadab ;};func (_ebbc *textPara )fontsize ()float64 {return _ebbc ._bdbcg [0]._ecag }; -func (_adfe *stateStack )top ()*textState {if _adfe .empty (){return nil ;};return (*_adfe )[_adfe .size ()-1];};func (_cbbf *stateStack )pop ()*textState {if _cbbf .empty (){return nil ;};_aefc :=*(*_cbbf )[len (*_cbbf )-1];*_cbbf =(*_cbbf )[:len (*_cbbf )-1]; -return &_aefc ;};func _beff (_cafb []*textWord ,_fefbf *textWord )[]*textWord {for _eadcd ,_gdaga :=range _cafb {if _gdaga ==_fefbf {return _ddbf (_cafb ,_eadcd );};};_ec .Log .Error ("\u0072\u0065\u006d\u006f\u0076e\u0057\u006f\u0072\u0064\u003a\u0020\u0077\u006f\u0072\u0064\u0073\u0020\u0064o\u0065\u0073\u006e\u0027\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0077\u006f\u0072\u0064\u003d\u0025\u0073",_fefbf ); -return nil ;};const _adee =20;func (_dcee *wordBag )empty (_ggaf int )bool {_ ,_cdgb :=_dcee ._faba [_ggaf ];return !_cdgb };type rulingList []*ruling ;func (_decfg paraList )applyTables (_gece []*textTable )paraList {var _ebfff paraList ;for _ ,_bcgcf :=range _gece {_ebfff =append (_ebfff ,_bcgcf .newTablePara ()); -};for _ ,_bede :=range _decfg {if _bede ._bfcd {continue ;};_ebfff =append (_ebfff ,_bede );};return _ebfff ;};func _fabg (_fggd ,_cbee bounded )float64 {return _fggd .bbox ().Llx -_cbee .bbox ().Llx };func _eaecc (_gcggc ,_dgea _ded .Image )_ded .Image {_bdgee ,_ffdb :=_dgea .Bounds ().Size (),_gcggc .Bounds ().Size (); -_cbgbb ,_gfaec :=_bdgee .X ,_bdgee .Y ;if _ffdb .X > _cbgbb {_cbgbb =_ffdb .X ;};if _ffdb .Y > _gfaec {_gfaec =_ffdb .Y ;};_ffad :=_ded .Rect (0,0,_cbgbb ,_gfaec );if _bdgee .X !=_cbgbb ||_bdgee .Y !=_gfaec {_gcfc :=_ded .NewRGBA (_ffad );_b .BiLinear .Scale (_gcfc ,_ffad ,_gcggc ,_dgea .Bounds (),_b .Over ,nil ); -_dgea =_gcfc ;};if _ffdb .X !=_cbgbb ||_ffdb .Y !=_gfaec {_bgfab :=_ded .NewRGBA (_ffad );_b .BiLinear .Scale (_bgfab ,_ffad ,_gcggc ,_gcggc .Bounds (),_b .Over ,nil );_gcggc =_bgfab ;};_dgdf :=_ded .NewRGBA (_ffad );_b .DrawMask (_dgdf ,_ffad ,_gcggc ,_ded .Point {},_dgea ,_ded .Point {},_b .Over ); -return _dgdf ;}; // NewFromContents creates a new extractor from contents and page resources. -func NewFromContents (contents string ,resources *_ce .PdfPageResources )(*Extractor ,error ){const _abf ="\u0065x\u0074\u0072\u0061\u0063t\u006f\u0072\u002e\u004e\u0065w\u0046r\u006fm\u0043\u006f\u006e\u0074\u0065\u006e\u0074s";_ac :=&Extractor {_bcf :contents ,_ab :resources ,_cd :map[string ]fontEntry {},_fa :map[string ]textResult {}}; -_bd .TrackUse (_abf );return _ac ,nil ;};type ruling struct{_bfbc rulingKind ;_bgaa markKind ;_fg .Color ;_abbgc float64 ;_cebe float64 ;_deee float64 ;_bcgdf float64 ;};func (_bgfc *textObject )reset (){_bgfc ._eee =_bc .IdentityMatrix ();_bgfc ._ecg =_bc .IdentityMatrix (); -_bgfc ._cfb =nil ;};func (_cebb paraList )extractTables (_bafge []gridTiling )paraList {if _afcg {_ec .Log .Debug ("\u0065\u0078\u0074r\u0061\u0063\u0074\u0054\u0061\u0062\u006c\u0065\u0073\u003d\u0025\u0064\u0020\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u0078\u003d\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d",len (_cebb )); -};if len (_cebb )< _ddd {return _cebb ;};_deeee :=_cebb .findTables (_bafge );if _afcg {_ec .Log .Info ("c\u006f\u006d\u0062\u0069\u006e\u0065d\u0020\u0074\u0061\u0062\u006c\u0065s\u0020\u0025\u0064\u0020\u003d\u003d\u003d=\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d=\u003d",len (_deeee )); -for _dbeba ,_dcbfg :=range _deeee {_dcbfg .log (_ge .Sprintf ("c\u006f\u006d\u0062\u0069\u006e\u0065\u0064\u0020\u0025\u0064",_dbeba ));};};return _cebb .applyTables (_deeee );};func _edege (_eccbb map[float64 ]map[float64 ]gridTile )[]float64 {_fege :=make ([]float64 ,0,len (_eccbb )); -_gaagc :=make (map[float64 ]struct{},len (_eccbb ));for _ ,_dffda :=range _eccbb {for _aceb :=range _dffda {if _ ,_ggabg :=_gaagc [_aceb ];_ggabg {continue ;};_fege =append (_fege ,_aceb );_gaagc [_aceb ]=struct{}{};};};_c .Float64s (_fege );return _fege ; -};func _dcbd (_egaga ,_fagcg _bc .Point )bool {return _egaga .X ==_fagcg .X &&_egaga .Y ==_fagcg .Y };func _cad (_adef ,_dcgg _ce .PdfRectangle )(_ce .PdfRectangle ,bool ){if !_decgb (_adef ,_dcgg ){return _ce .PdfRectangle {},false ;};return _ce .PdfRectangle {Llx :_aa .Max (_adef .Llx ,_dcgg .Llx ),Urx :_aa .Min (_adef .Urx ,_dcgg .Urx ),Lly :_aa .Max (_adef .Lly ,_dcgg .Lly ),Ury :_aa .Min (_adef .Ury ,_dcgg .Ury )},true ; -};func _fdg (_gfaf ,_bdbb _ce .PdfRectangle )bool {return _gfaf .Lly <=_bdbb .Ury &&_bdbb .Lly <=_gfaf .Ury ;};func (_fcea *textTable )getComposite (_cgcba ,_cdcbg int )(paraList ,_ce .PdfRectangle ){_gggd ,_cedf :=_fcea ._egfe [_aaca (_cgcba ,_cdcbg )]; -if _afcg {_ge .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0067\u0065\u0074\u0043\u006f\u006d\u0070o\u0073i\u0074\u0065\u0028\u0025\u0064\u002c\u0025\u0064\u0029\u002d\u003e\u0025\u0073\u000a",_cgcba ,_cdcbg ,_gggd .String ());};if !_cedf {return nil ,_ce .PdfRectangle {}; -};return _gggd .parasBBox ();};func (_bcaa *textTable )markCells (){for _bcae :=0;_bcae < _bcaa ._dcfg ;_bcae ++{for _badfcb :=0;_badfcb < _bcaa ._ecbf ;_badfcb ++{_aece :=_bcaa .get (_badfcb ,_bcae );if _aece !=nil {_aece ._bfcd =true ;};};};};func (_gcea paraList )llyOrdering ()[]int {_debf :=make ([]int ,len (_gcea )); -for _bfaec :=range _gcea {_debf [_bfaec ]=_bfaec ;};_c .SliceStable (_debf ,func (_ddaf ,_beag int )bool {_bcbge ,_ceaeg :=_debf [_ddaf ],_debf [_beag ];return _gcea [_bcbge ].Lly < _gcea [_ceaeg ].Lly ;});return _debf ;};func (_ebcfd *textTable )depth ()float64 {_cfgef :=1e10; -for _dcgaa :=0;_dcgaa < _ebcfd ._ecbf ;_dcgaa ++{_cdcef :=_ebcfd .get (_dcgaa ,0);if _cdcef ==nil ||_cdcef ._bedf {continue ;};_cfgef =_aa .Min (_cfgef ,_cdcef .depth ());};return _cfgef ;};func _afaae (_cecfe map[int ]intSet )[]int {_febbf :=make ([]int ,0,len (_cecfe )); -for _fbfcb :=range _cecfe {_febbf =append (_febbf ,_fbfcb );};_c .Ints (_febbf );return _febbf ;};func _bbea (_gcbgg *textWord ,_dbeb float64 ,_cagf ,_bbeg rulingList )*wordBag {_aagd :=_fece (_gcbgg ._cffdg );_gdbfb :=[]*textWord {_gcbgg };_feee :=wordBag {_faba :map[int ][]*textWord {_aagd :_gdbfb },PdfRectangle :_gcbgg .PdfRectangle ,_egfa :_gcbgg ._ddgee ,_cfg :_dbeb ,_eeca :_cagf ,_gbef :_bbeg }; -return &_feee ;};func (_ccdge *structElement )parseStructElement (_eead _gb .PdfObject ){_fdad ,_fafe :=_gb .GetDict (_eead );if !_fafe {_ec .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u0053\u0074\u0072u\u0063\u0074\u0045le\u006d\u0065\u006e\u0074\u003a\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u002e"); -return ;};_aecde :=_fdad .Get ("\u0053");_gedc :=_fdad .Get ("\u0050\u0067");_dfbc :="";if _aecde !=nil {_dfbc =_aecde .String ();};_gbda :=_fdad .Get ("\u004b");_ccdge ._bacdb =_dfbc ;_ccdge ._geaa =_gedc ;switch _dedb :=_gbda .(type ){case *_gb .PdfObjectInteger :_ccdge ._bacdb =_dfbc ; -_ccdge ._efcc =int64 (*_dedb );_ccdge ._geaa =_gedc ;case *_gb .PdfObjectReference :_aebf :=*_gb .MakeArray (_dedb );var _gdcc int64 =-1;_ccdge ._efcc =_gdcc ;if _aebf .Len ()==1{_abe :=_aebf .Elements ()[0];_acec ,_ceega :=_abe .(*_gb .PdfObjectInteger ); -if _ceega {_gdcc =int64 (*_acec );_ccdge ._efcc =_gdcc ;_ccdge ._bacdb =_dfbc ;_ccdge ._geaa =_gedc ;return ;};};_aegd :=[]structElement {};for _ ,_fgaa :=range _aebf .Elements (){_fdee ,_fdaaf :=_fgaa .(*_gb .PdfObjectInteger );if _fdaaf {_gdcc =int64 (*_fdee ); -_ccdge ._efcc =_gdcc ;_ccdge ._bacdb =_dfbc ;}else {_dddg :=&structElement {};_dddg .parseStructElement (_fgaa );_aegd =append (_aegd ,*_dddg );};_gdcc =-1;};_ccdge ._cagb =_aegd ;case *_gb .PdfObjectArray :_gdcab :=_gbda .(*_gb .PdfObjectArray );var _baef int64 =-1; -_ccdge ._efcc =_baef ;if _gdcab .Len ()==1{_acdd :=_gdcab .Elements ()[0];_afac ,_gbbgd :=_acdd .(*_gb .PdfObjectInteger );if _gbbgd {_baef =int64 (*_afac );_ccdge ._efcc =_baef ;_ccdge ._bacdb =_dfbc ;_ccdge ._geaa =_gedc ;return ;};};_dcfc :=[]structElement {}; -for _ ,_gbcb :=range _gdcab .Elements (){_effg ,_caaa :=_gbcb .(*_gb .PdfObjectInteger );if _caaa {_baef =int64 (*_effg );_ccdge ._efcc =_baef ;_ccdge ._bacdb =_dfbc ;_ccdge ._geaa =_gedc ;}else {_fbdd :=&structElement {};_fbdd .parseStructElement (_gbcb ); -_dcfc =append (_dcfc ,*_fbdd );};_baef =-1;};_ccdge ._cagb =_dcfc ;};};func (_cdgbf *structTreeRoot )buildList (_cbfb map[int ][]*textLine ,_gcge _gb .PdfObject )[]*list {if _cdgbf ==nil {_ec .Log .Debug ("\u0062\u0075\u0069\u006c\u0064\u004c\u0069\u0073\u0074\u003a\u0020t\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0069\u0073 \u006e\u0069\u006c"); -return nil ;};var _eabc *structElement ;_dadc :=[]structElement {};if len (_cdgbf ._dgbb )==1{_efae :=_cdgbf ._dgbb [0]._bacdb ;if _efae =="\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074"||_efae =="\u0053\u0065\u0063\u0074"||_efae =="\u0050\u0061\u0072\u0074"||_efae =="\u0044\u0069\u0076"||_efae =="\u0041\u0072\u0074"{_eabc =&_cdgbf ._dgbb [0]; -};}else {_eabc =&structElement {_cagb :_cdgbf ._dgbb ,_bacdb :_cdgbf ._fdec };};if _eabc ==nil {_ec .Log .Debug ("\u0062\u0075\u0069\u006cd\u004c\u0069\u0073\u0074\u003a\u0020\u0074\u006f\u0070\u0045l\u0065m\u0065\u006e\u0074\u0020\u0069\u0073\u0020n\u0069\u006c"); -return nil ;};for _ ,_aead :=range _eabc ._cagb {if _aead ._bacdb =="\u004c"{_dadc =append (_dadc ,_aead );}else if _aead ._bacdb =="\u0054\u0061\u0062l\u0065"{_dcegf :=_cgbe (_aead );_dadc =append (_dadc ,_dcegf ...);};};_adgfc :=_gdfab (_dadc ,_cbfb ,_gcge ); -var _ebebe []*list ;for _ ,_eegf :=range _adgfc {_bfcc :=_beecb (_eegf );_ebebe =append (_ebebe ,_bfcc ...);};return _ebebe ;};func (_adeea TextTable )getCellInfo (_gcaa TextMark )[][]int {for _eadbb ,_ebec :=range _adeea .Cells {for _edb ,_agca :=range _ebec {_deg :=&_agca .Marks ; -if _deg .exists (_gcaa ){return [][]int {{_eadbb },{_edb }};};};};return nil ;};func (_bgba paraList )lines ()[]*textLine {var _dafgg []*textLine ;for _ ,_abffg :=range _bgba {_dafgg =append (_dafgg ,_abffg ._bdbcg ...);};return _dafgg ;};func (_bcef *shapesState )closePath (){if _bcef ._edee {_bcef ._abgb =append (_bcef ._abgb ,_fae (_bcef ._ebfb )); -_bcef ._edee =false ;}else if len (_bcef ._abgb )==0{if _cbag {_ec .Log .Debug ("\u0063\u006c\u006f\u0073eP\u0061\u0074\u0068\u0020\u0077\u0069\u0074\u0068\u0020\u006e\u006f\u0020\u0070\u0061t\u0068");};_bcef ._edee =false ;return ;};_bcef ._abgb [len (_bcef ._abgb )-1].close (); -if _cbag {_ec .Log .Info ("\u0063\u006c\u006f\u0073\u0065\u0050\u0061\u0074\u0068\u003a\u0020\u0025\u0073",_bcef );};};func (_dcge *stateStack )push (_adb *textState ){_ffbg :=*_adb ;*_dcge =append (*_dcge ,&_ffbg )};func _bddf (_efgea []*wordBag )[]*wordBag {if len (_efgea )<=1{return _efgea ; -};if _egd {_ec .Log .Info ("\u006d\u0065\u0072\u0067\u0065\u0057\u006f\u0072\u0064B\u0061\u0067\u0073\u003a");};_c .Slice (_efgea ,func (_ebda ,_eebb int )bool {_bcade ,_bfdf :=_efgea [_ebda ],_efgea [_eebb ];_aacc :=_bcade .Width ()*_bcade .Height (); -_bcdcf :=_bfdf .Width ()*_bfdf .Height ();if _aacc !=_bcdcf {return _aacc > _bcdcf ;};if _bcade .Height ()!=_bfdf .Height (){return _bcade .Height ()> _bfdf .Height ();};return _ebda < _eebb ;});var _bgfb []*wordBag ;_cefad :=make (intSet );for _cabd :=0; -_cabd < len (_efgea );_cabd ++{if _cefad .has (_cabd ){continue ;};_bfdc :=_efgea [_cabd ];for _bfgg :=_cabd +1;_bfgg < len (_efgea );_bfgg ++{if _cefad .has (_cabd ){continue ;};_ffg :=_efgea [_bfgg ];_bcgd :=_bfdc .PdfRectangle ;_bcgd .Llx -=_bfdc ._egfa ; -if _fafg (_bcgd ,_ffg .PdfRectangle ){_bfdc .absorb (_ffg );_cefad .add (_bfgg );};};_bgfb =append (_bgfb ,_bfdc );};if len (_efgea )!=len (_bgfb )+len (_cefad ){_ec .Log .Error ("\u006d\u0065\u0072ge\u0057\u006f\u0072\u0064\u0042\u0061\u0067\u0073\u003a \u0025d\u2192%\u0064 \u0061\u0062\u0073\u006f\u0072\u0062\u0065\u0064\u003d\u0025\u0064",len (_efgea ),len (_bgfb ),len (_cefad )); -};return _bgfb ;};func (_cceb *textPara )getListLines ()[]*textLine {var _gegb []*textLine ;_cefg :=_eccb (_cceb ._bdbcg );for _ ,_cbeb :=range _cceb ._bdbcg {_gcba :=_cbeb ._aebc [0]._bbdb [0];if _fdfa (_gcba ){_gegb =append (_gegb ,_cbeb );};};_gegb =append (_gegb ,_cefg ...); -return _gegb ;};func (_abdd *PageText )computeViews (){_gefc :=_abdd .getParagraphs ();_ceeec :=new (_df .Buffer );_gefc .writeText (_ceeec );_abdd ._gcee =_ceeec .String ();_abdd ._ebfc =_gefc .toTextMarks ();_abdd ._eadb =_gefc .tables ();if _afcg {_ec .Log .Info ("\u0063\u006f\u006dpu\u0074\u0065\u0056\u0069\u0065\u0077\u0073\u003a\u0020\u0074\u0061\u0062\u006c\u0065\u0073\u003d\u0025\u0064",len (_abdd ._eadb )); -};};func _bdged (_fcaed []pathSection ){if _dgeec < 0.0{return ;};if _gfgc {_ec .Log .Info ("\u0067\u0072\u0061\u006e\u0075\u006c\u0061\u0072\u0069\u007a\u0065\u003a\u0020\u0025\u0064 \u0073u\u0062\u0070\u0061\u0074\u0068\u0020\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0073",len (_fcaed )); -};for _cgdbd ,_cacg :=range _fcaed {for _bdcb ,_befab :=range _cacg ._fbfe {for _agfde ,_efee :=range _befab ._gfefe {_befab ._gfefe [_agfde ]=_bc .Point {X :_eacf (_efee .X ),Y :_eacf (_efee .Y )};if _gfgc {_ddgfa :=_befab ._gfefe [_agfde ];if !_dcbd (_efee ,_ddgfa ){_ffgb :=_bc .Point {X :_ddgfa .X -_efee .X ,Y :_ddgfa .Y -_efee .Y }; -_ge .Printf ("\u0025\u0034d \u002d\u0020\u00254\u0064\u0020\u002d\u0020%4d\u003a %\u002e\u0032\u0066\u0020\u2192\u0020\u0025.2\u0066\u0020\u0028\u0025\u0067\u0029\u000a",_cgdbd ,_bdcb ,_agfde ,_efee ,_ddgfa ,_ffgb );};};};};};};func (_cedaf *textTable )putComposite (_fgggd ,_egadc int ,_fabfg paraList ,_ggagg _ce .PdfRectangle ){if len (_fabfg )==0{_ec .Log .Error ("\u0074\u0065xt\u0054\u0061\u0062l\u0065\u0029\u0020\u0070utC\u006fmp\u006f\u0073\u0069\u0074\u0065\u003a\u0020em\u0070\u0074\u0079\u0020\u0070\u0061\u0072a\u0073"); -return ;};_gbgd :=compositeCell {PdfRectangle :_ggagg ,paraList :_fabfg };if _afcg {_ge .Printf ("\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0070\u0075\u0074\u0043\u006f\u006d\u0070o\u0073i\u0074\u0065\u0028\u0025\u0064\u002c\u0025\u0064\u0029\u003c\u002d\u0025\u0073\u000a",_fgggd ,_egadc ,_gbgd .String ()); -};_gbgd .updateBBox ();_cedaf ._egfe [_aaca (_fgggd ,_egadc )]=_gbgd ;};func (_eeb *shapesState )addPoint (_cgee ,_bcad float64 ){_edgc :=_eeb .establishSubpath ();_cbac :=_eeb .devicePoint (_cgee ,_bcad );if _edgc ==nil {_eeb ._edee =true ;_eeb ._ebfb =_cbac ; -}else {_edgc .add (_cbac );};}; - -// RenderMode specifies the text rendering mode (Tmode), which determines whether showing text shall cause -// glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three. -// Stroking, filling, and clipping shall have the same effects for a text object as they do for a path object -// (see 8.5.3, "Path-Painting Operators" and 8.5.4, "Clipping Path Operators"). -type RenderMode int ;type bounded interface{bbox ()_ce .PdfRectangle };type textState struct{_ggf float64 ;_eag float64 ;_gdc float64 ;_dcc float64 ;_ccf float64 ;_bbd RenderMode ;_gegg float64 ;_badfc *_ce .PdfFont ;_dab _ce .PdfRectangle ;_baf int ;_afgb int ; -};func (_dgdd *wordBag )firstWord (_bcdc int )*textWord {return _dgdd ._faba [_bcdc ][0]};func _accf (_ebca *textLine )float64 {return _ebca ._aebc [0].Llx };func _gdgbc (_ccgb ,_feff bounded )float64 {return _ccgb .bbox ().Llx -_feff .bbox ().Urx }; - -// String returns a description of `state`. -func (_gcbg *textState )String ()string {_bdge :="\u005bN\u004f\u0054\u0020\u0053\u0045\u0054]";if _gcbg ._badfc !=nil {_bdge =_gcbg ._badfc .BaseFont ();};return _ge .Sprintf ("\u0074\u0063\u003d\u0025\u002e\u0032\u0066\u0020\u0074\u0077\u003d\u0025\u002e\u0032\u0066 \u0074f\u0073\u003d\u0025\u002e\u0032\u0066\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0071",_gcbg ._ggf ,_gcbg ._eag ,_gcbg ._ccf ,_bdge ); -}; - -// PageImages represents extracted images on a PDF page with spatial information: -// display position and size. -type PageImages struct{Images []ImageMark ;}; - -// String returns a human readable description of `s`. -func (_bfed intSet )String ()string {var _affd []int ;for _eafdb :=range _bfed {if _bfed .has (_eafdb ){_affd =append (_affd ,_eafdb );};};_c .Ints (_affd );return _ge .Sprintf ("\u0025\u002b\u0076",_affd );};func (_eeae *textLine )text ()string {var _daf []string ; -for _ ,_gafdb :=range _eeae ._aebc {if _gafdb ._gfffc {_daf =append (_daf ,"\u0020");};_daf =append (_daf ,_gafdb ._bbdb );};return _gd .Join (_daf ,"");};func _efg (_cca []Font ,_db string )bool {for _ ,_gdd :=range _cca {if _gdd .FontName ==_db {return true ; -};};return false ;};func _fgee (_gfdad _ce .PdfRectangle )*ruling {return &ruling {_bfbc :_ecac ,_abbgc :_gfdad .Lly ,_cebe :_gfdad .Llx ,_deee :_gfdad .Urx };};func (_dgdcb *textTable )bbox ()_ce .PdfRectangle {return _dgdcb .PdfRectangle };func (_dcbad rulingList )comp (_aaeca ,_fbgb int )bool {_eccgd ,_feec :=_dcbad [_aaeca ],_dcbad [_fbgb ]; -_cecgc ,_fddc :=_eccgd ._bfbc ,_feec ._bfbc ;if _cecgc !=_fddc {return _cecgc > _fddc ;};if _cecgc ==_gdcf {return false ;};_bdadf :=func (_adfc bool )bool {if _cecgc ==_ecac {return _adfc ;};return !_adfc ;};_egaf ,_daee :=_eccgd ._abbgc ,_feec ._abbgc ; -if _egaf !=_daee {return _bdadf (_egaf > _daee );};_egaf ,_daee =_eccgd ._cebe ,_feec ._cebe ;if _egaf !=_daee {return _bdadf (_egaf < _daee );};return _bdadf (_eccgd ._deee < _feec ._deee );};func (_cafda *textWord )absorb (_bbbda *textWord ){_cafda .PdfRectangle =_cdggc (_cafda .PdfRectangle ,_bbbda .PdfRectangle ); -_cafda ._bgeaa =append (_cafda ._bgeaa ,_bbbda ._bgeaa ...);};var _dbgc =[]string {"\u2756","\u27a2","\u2713","\u2022","\uf0a7","\u25a1","\u2212","\u25a0","\u25aa","\u006f"};func (_decg *wordBag )absorb (_eceg *wordBag ){_gfbf :=_eceg .makeRemovals (); -for _cabc ,_bfeb :=range _eceg ._faba {for _ ,_dece :=range _bfeb {_decg .pullWord (_dece ,_cabc ,_gfbf );};};_eceg .applyRemovals (_gfbf );};func _adagc (_agaae string ,_agacd int )string {if len (_agaae )< _agacd {return _agaae ;};return _agaae [:_agacd ]; -};func (_ddbeb rectRuling )asRuling ()(*ruling ,bool ){_bbda :=ruling {_bfbc :_ddbeb ._dfec ,Color :_ddbeb .Color ,_bgaa :_eecbc };switch _ddbeb ._dfec {case _ebdaf :_bbda ._abbgc =0.5*(_ddbeb .Llx +_ddbeb .Urx );_bbda ._cebe =_ddbeb .Lly ;_bbda ._deee =_ddbeb .Ury ; -_acae ,_beda :=_ddbeb .checkWidth (_ddbeb .Llx ,_ddbeb .Urx );if !_beda {if _feceb {_ec .Log .Error ("\u0072\u0065\u0063\u0074\u0052\u0075l\u0069\u006e\u0067\u002e\u0061\u0073\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0072\u0075\u006c\u0069\u006e\u0067V\u0065\u0072\u0074\u0020\u0021\u0063\u0068\u0065\u0063\u006b\u0057\u0069\u0064\u0074h\u0020v\u003d\u0025\u002b\u0076",_ddbeb ); -};return nil ,false ;};_bbda ._bcgdf =_acae ;case _ecac :_bbda ._abbgc =0.5*(_ddbeb .Lly +_ddbeb .Ury );_bbda ._cebe =_ddbeb .Llx ;_bbda ._deee =_ddbeb .Urx ;_eagg ,_abca :=_ddbeb .checkWidth (_ddbeb .Lly ,_ddbeb .Ury );if !_abca {if _feceb {_ec .Log .Error ("\u0072\u0065\u0063\u0074\u0052\u0075l\u0069\u006e\u0067\u002e\u0061\u0073\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0072\u0075\u006c\u0069\u006e\u0067H\u006f\u0072\u007a\u0020\u0021\u0063\u0068\u0065\u0063\u006b\u0057\u0069\u0064\u0074h\u0020v\u003d\u0025\u002b\u0076",_ddbeb ); -};return nil ,false ;};_bbda ._bcgdf =_eagg ;default:_ec .Log .Error ("\u0062\u0061\u0064\u0020pr\u0069\u006d\u0061\u0072\u0079\u0020\u006b\u0069\u006e\u0064\u003d\u0025\u0064",_ddbeb ._dfec );return nil ,false ;};return &_bbda ,true ;};func (_fag *TextMarkArray )exists (_cagc TextMark )bool {for _ ,_dbca :=range _fag .Elements (){if _gc .DeepEqual (_cagc .DirectObject ,_dbca .DirectObject )&&_gc .DeepEqual (_cagc .BBox ,_dbca .BBox )&&_dbca .Text ==_cagc .Text {return true ; -};};return false ;};var _befc string ="\u005e\u005b\u0061\u002d\u007a\u0041\u002dZ\u005d\u0028\u005c)\u007c\u005c\u002e)\u007c\u005e[\u005c\u0064\u005d\u002b\u0028\u005c)\u007c\\.\u0029\u007c\u005e\u005c\u0028\u005b\u0061\u002d\u007a\u0041\u002d\u005a\u005d\u005c\u0029\u007c\u005e\u005c\u0028\u005b\u005c\u0064\u005d\u002b\u005c\u0029"; -func (_fffc *textLine )appendWord (_gaag *textWord ){_fffc ._aebc =append (_fffc ._aebc ,_gaag );_fffc .PdfRectangle =_cdggc (_fffc .PdfRectangle ,_gaag .PdfRectangle );if _gaag ._ddgee > _fffc ._ecag {_fffc ._ecag =_gaag ._ddgee ;};if _gaag ._cffdg > _fffc ._bcdg {_fffc ._bcdg =_gaag ._cffdg ; -};};func _fdab (_afdb []pathSection )rulingList {_bdged (_afdb );if _gfgc {_ec .Log .Info ("\u006da\u006b\u0065\u0046\u0069l\u006c\u0052\u0075\u006c\u0069n\u0067s\u003a \u0025\u0064\u0020\u0066\u0069\u006c\u006cs",len (_afdb ));};var _gbfde rulingList ; -for _ ,_bedged :=range _afdb {for _ ,_aggbf :=range _bedged ._fbfe {if !_aggbf .isQuadrilateral (){if _gfgc {_ec .Log .Error ("!\u0069s\u0051\u0075\u0061\u0064\u0072\u0069\u006c\u0061t\u0065\u0072\u0061\u006c: \u0025\u0073",_aggbf );};continue ;};if _ebff ,_gbgc :=_aggbf .makeRectRuling (_bedged .Color ); -_gbgc {_gbfde =append (_gbfde ,_ebff );}else {if _feceb {_ec .Log .Error ("\u0021\u006d\u0061\u006beR\u0065\u0063\u0074\u0052\u0075\u006c\u0069\u006e\u0067\u003a\u0020\u0025\u0073",_aggbf );};};};};if _gfgc {_ec .Log .Info ("\u006d\u0061\u006b\u0065Fi\u006c\u006c\u0052\u0075\u006c\u0069\u006e\u0067\u0073\u003a\u0020\u0025\u0073",_gbfde .String ()); -};return _gbfde ;};func _eeacg (_adefa ,_dccb *textPara )bool {if _adefa ._bedf ||_dccb ._bedf {return true ;};return _ffegg (_adefa .depth ()-_dccb .depth ());};func _cbcf (_dbef ,_ggcb bounded )float64 {_cfeb :=_agce (_dbef ,_ggcb );if !_ffegg (_cfeb ){return _cfeb ; -};return _fabg (_dbef ,_ggcb );}; - -// String returns a string describing `ma`. -func (_cbba TextMarkArray )String ()string {_cgcf :=len (_cbba ._dec );if _cgcf ==0{return "\u0045\u004d\u0050T\u0059";};_egbdd :=_cbba ._dec [0];_cgdac :=_cbba ._dec [_cgcf -1];return _ge .Sprintf ("\u007b\u0054\u0045\u0058\u0054\u004d\u0041\u0052K\u0041\u0052\u0052AY\u003a\u0020\u0025\u0064\u0020\u0065l\u0065\u006d\u0065\u006e\u0074\u0073\u000a\u0009\u0066\u0069\u0072\u0073\u0074\u003d\u0025s\u000a\u0009\u0020\u006c\u0061\u0073\u0074\u003d%\u0073\u007d",_cgcf ,_egbdd ,_cgdac ); -};func _ddbf (_bbag []*textWord ,_ababe int )[]*textWord {_bgcfc :=len (_bbag );copy (_bbag [_ababe :],_bbag [_ababe +1:]);return _bbag [:_bgcfc -1];};type cachedImage struct{_aca *_ce .Image ;_abb _ce .PdfColorspace ;};func _cgbf (_eecd *wordBag ,_cddg float64 ,_cfebc ,_dbbg rulingList )[]*wordBag {var _abbec []*wordBag ; -for _ ,_faff :=range _eecd .depthIndexes (){_ecdbg :=false ;for !_eecd .empty (_faff ){_bcca :=_eecd .firstReadingIndex (_faff );_aeee :=_eecd .firstWord (_bcca );_fge :=_bbea (_aeee ,_cddg ,_cfebc ,_dbbg );_eecd .removeWord (_aeee ,_bcca );if _becc {_ec .Log .Info ("\u0066\u0069\u0072\u0073\u0074\u0057\u006f\u0072\u0064\u0020\u005e\u005e^\u005e\u0020\u0025\u0073",_aeee .String ()); -};for _gddc :=true ;_gddc ;_gddc =_ecdbg {_ecdbg =false ;_dfacb :=_gceeb *_fge ._egfa ;_fdeeb :=_ccab *_fge ._egfa ;_bgbed :=_cfebd *_fge ._egfa ;if _becc {_ec .Log .Info ("\u0070a\u0072a\u0057\u006f\u0072\u0064\u0073\u0020\u0064\u0065\u0070\u0074\u0068 \u0025\u002e\u0032\u0066 \u002d\u0020\u0025\u002e\u0032f\u0020\u006d\u0061\u0078\u0049\u006e\u0074\u0072\u0061\u0044\u0065\u0070\u0074\u0068\u0047\u0061\u0070\u003d\u0025\u002e\u0032\u0066\u0020\u006d\u0061\u0078\u0049\u006e\u0074\u0072\u0061R\u0065\u0061\u0064\u0069\u006e\u0067\u0047\u0061p\u003d\u0025\u002e\u0032\u0066",_fge .minDepth (),_fge .maxDepth (),_bgbed ,_fdeeb ); -};if _eecd .scanBand ("\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",_fge ,_ffef (_abdg ,0),_fge .minDepth ()-_bgbed ,_fge .maxDepth ()+_bgbed ,_bdgd ,false ,false )> 0{_ecdbg =true ;};if _eecd .scanBand ("\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c",_fge ,_ffef (_abdg ,_fdeeb ),_fge .minDepth (),_fge .maxDepth (),_gfff ,false ,false )> 0{_ecdbg =true ; -};if _ecdbg {continue ;};_eaea :=_eecd .scanBand ("",_fge ,_ffef (_cedg ,_dfacb ),_fge .minDepth (),_fge .maxDepth (),_baae ,true ,false );if _eaea > 0{_aedd :=(_fge .maxDepth ()-_fge .minDepth ())/_fge ._egfa ;if (_eaea > 1&&float64 (_eaea )> 0.3*_aedd )||_eaea <=10{if _eecd .scanBand ("\u006f\u0074\u0068e\u0072",_fge ,_ffef (_cedg ,_dfacb ),_fge .minDepth (),_fge .maxDepth (),_baae ,false ,true )> 0{_ecdbg =true ; -};};};};_abbec =append (_abbec ,_fge );};};return _abbec ;};func _ffec (_afcgbe _ce .PdfRectangle ,_ddea []*textLine )*textPara {return &textPara {PdfRectangle :_afcgbe ,_bdbcg :_ddea };};func (_edbc *textWord )appendMark (_edaf *textMark ,_aecac _ce .PdfRectangle ){_edbc ._bgeaa =append (_edbc ._bgeaa ,_edaf ); -_edbc .PdfRectangle =_cdggc (_edbc .PdfRectangle ,_edaf .PdfRectangle );if _edaf ._bfaca > _edbc ._ddgee {_edbc ._ddgee =_edaf ._bfaca ;};_edbc ._cffdg =_aecac .Ury -_edbc .PdfRectangle .Lly ;};func (_gfa *subpath )clear (){*_gfa =subpath {}};func _fdfa (_adgb byte )bool {for _ ,_abddd :=range _dbgc {if []byte (_abddd )[0]==_adgb {return true ; -};};return false ;};func _fecgf (_cbca []*textMark ,_daef _ce .PdfRectangle )[]*textWord {var _gafbf []*textWord ;var _facgf *textWord ;if _cfgg {_ec .Log .Info ("\u006d\u0061\u006beT\u0065\u0078\u0074\u0057\u006f\u0072\u0064\u0073\u003a\u0020\u0025\u0064\u0020\u006d\u0061\u0072\u006b\u0073",len (_cbca )); -};_bacba :=func (){if _facgf !=nil {_dgbd :=_facgf .computeText ();if !_ecga (_dgbd ){_facgf ._bbdb =_dgbd ;_gafbf =append (_gafbf ,_facgf );if _cfgg {_ec .Log .Info ("\u0061\u0064\u0064Ne\u0077\u0057\u006f\u0072\u0064\u003a\u0020\u0025\u0064\u003a\u0020\u0077\u006f\u0072\u0064\u003d\u0025\u0073",len (_gafbf )-1,_facgf .String ()); -for _egded ,_ccfgcd :=range _facgf ._bgeaa {_ge .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0073\u000a",_egded ,_ccfgcd .String ());};};};_facgf =nil ;};};for _ ,_dcbc :=range _cbca {if _efbf &&_facgf !=nil &&len (_facgf ._bgeaa )> 0{_eced :=_facgf ._bgeaa [len (_facgf ._bgeaa )-1]; -_gdfc ,_fcca :=_fbcfg (_dcbc ._ecaa );_bcdeb ,_agefe :=_fbcfg (_eced ._ecaa );if _fcca &&!_agefe &&_eced .inDiacriticArea (_dcbc ){_facgf .addDiacritic (_gdfc );continue ;};if _agefe &&!_fcca &&_dcbc .inDiacriticArea (_eced ){_facgf ._bgeaa =_facgf ._bgeaa [:len (_facgf ._bgeaa )-1]; -_facgf .appendMark (_dcbc ,_daef );_facgf .addDiacritic (_bcdeb );continue ;};};_agcgb :=_ecga (_dcbc ._ecaa );if _agcgb {_bacba ();continue ;};if _facgf ==nil &&!_agcgb {_facgf =_bddac ([]*textMark {_dcbc },_daef );continue ;};_dbefd :=_facgf ._ddgee ; -_beefe :=_aa .Abs (_dgdc (_daef ,_dcbc )-_facgf ._cffdg )/_dbefd ;_dgga :=_gdgbc (_dcbc ,_facgf )/_dbefd ;if _dgga >=_edd ||!(-_dfac <=_dgga &&_beefe <=_bagb ){_bacba ();_facgf =_bddac ([]*textMark {_dcbc },_daef );continue ;};_facgf .appendMark (_dcbc ,_daef ); -};_bacba ();return _gafbf ;};func (_cedb *textTable )computeBbox ()_ce .PdfRectangle {var _edeb _ce .PdfRectangle ;_dbbcf :=false ;for _fegea :=0;_fegea < _cedb ._dcfg ;_fegea ++{for _ccbc :=0;_ccbc < _cedb ._ecbf ;_ccbc ++{_ffeab :=_cedb .get (_ccbc ,_fegea ); -if _ffeab ==nil {continue ;};if !_dbbcf {_edeb =_ffeab .PdfRectangle ;_dbbcf =true ;}else {_edeb =_cdggc (_edeb ,_ffeab .PdfRectangle );};};};return _edeb ;}; - -// String returns a description of `k`. -func (_dgaa markKind )String ()string {_ggbe ,_cdceg :=_fdgf [_dgaa ];if !_cdceg {return _ge .Sprintf ("\u004e\u006f\u0074\u0020\u0061\u0020\u006d\u0061\u0072k\u003a\u0020\u0025\u0064",_dgaa );};return _ggbe ;};func (_ddaea paraList )reorder (_dfbd []int ){_efed :=make (paraList ,len (_ddaea )); -for _gbegb ,_afec :=range _dfbd {_efed [_gbegb ]=_ddaea [_afec ];};copy (_ddaea ,_efed );};type lists []*list ;func (_cgb *textObject )getFontDirect (_ddba string )(*_ce .PdfFont ,error ){_abc ,_deb :=_cgb .getFontDict (_ddba );if _deb !=nil {return nil ,_deb ; -};_caae ,_deb :=_ce .NewPdfFontFromPdfObject (_abc );if _deb !=nil {_ec .Log .Debug ("\u0067\u0065\u0074\u0046\u006f\u006e\u0074\u0044\u0069\u0072\u0065\u0063\u0074\u003a\u0020\u004e\u0065\u0077Pd\u0066F\u006f\u006e\u0074\u0046\u0072\u006f\u006d\u0050\u0064\u0066\u004f\u0062j\u0065\u0063\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u006e\u0061\u006d\u0065\u003d%\u0023\u0071\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_ddba ,_deb ); -};return _caae ,_deb ;};func _cdggc (_eaed ,_bcff _ce .PdfRectangle )_ce .PdfRectangle {return _ce .PdfRectangle {Llx :_aa .Min (_eaed .Llx ,_bcff .Llx ),Lly :_aa .Min (_eaed .Lly ,_bcff .Lly ),Urx :_aa .Max (_eaed .Urx ,_bcff .Urx ),Ury :_aa .Max (_eaed .Ury ,_bcff .Ury )}; -};type compositeCell struct{_ce .PdfRectangle ;paraList ;};func (_ffccf paraList )sortReadingOrder (){_ec .Log .Trace ("\u0073\u006fr\u0074\u0052\u0065\u0061\u0064i\u006e\u0067\u004f\u0072\u0064e\u0072\u003a\u0020\u0070\u0061\u0072\u0061\u0073\u003d\u0025\u0064\u0020\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u0078\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d",len (_ffccf )); -if len (_ffccf )<=1{return ;};_ffccf .computeEBBoxes ();_c .Slice (_ffccf ,func (_cgdd ,_cfag int )bool {return _cbcf (_ffccf [_cgdd ],_ffccf [_cfag ])<=0});}; - -// String returns a string describing `pt`. -func (_gacc PageText )String ()string {_bbfc :=_ge .Sprintf ("P\u0061\u0067\u0065\u0054ex\u0074:\u0020\u0025\u0064\u0020\u0065l\u0065\u006d\u0065\u006e\u0074\u0073",len (_gacc ._fcag ));_cdae :=[]string {"\u002d"+_bbfc };for _ ,_acc :=range _gacc ._fcag {_cdae =append (_cdae ,_acc .String ()); -};_cdae =append (_cdae ,"\u002b"+_bbfc );return _gd .Join (_cdae ,"\u000a");};func (_fgdc paraList )computeEBBoxes (){if _fad {_ec .Log .Info ("\u0063o\u006dp\u0075\u0074\u0065\u0045\u0042\u0042\u006f\u0078\u0065\u0073\u003a");};for _ ,_bffe :=range _fgdc {_bffe ._ebcf =_bffe .PdfRectangle ; -};_fbede :=_fgdc .yNeighbours (0);for _gbebc ,_dfcd :=range _fgdc {_dcfb :=_dfcd ._ebcf ;_gaeeg ,_fdefd :=-1.0e9,+1.0e9;for _ ,_ddfce :=range _fbede [_dfcd ]{_dafde :=_fgdc [_ddfce ]._ebcf ;if _dafde .Urx < _dcfb .Llx {_gaeeg =_aa .Max (_gaeeg ,_dafde .Urx ); -}else if _dcfb .Urx < _dafde .Llx {_fdefd =_aa .Min (_fdefd ,_dafde .Llx );};};for _cgbea ,_efgad :=range _fgdc {_afef :=_efgad ._ebcf ;if _gbebc ==_cgbea ||_afef .Ury > _dcfb .Lly {continue ;};if _gaeeg <=_afef .Llx &&_afef .Llx < _dcfb .Llx {_dcfb .Llx =_afef .Llx ; -}else if _afef .Urx <=_fdefd &&_dcfb .Urx < _afef .Urx {_dcfb .Urx =_afef .Urx ;};};if _fad {_ge .Printf ("\u0025\u0034\u0064\u003a %\u0036\u002e\u0032\u0066\u2192\u0025\u0036\u002e\u0032\u0066\u0020\u0025\u0071\u000a",_gbebc ,_dfcd ._ebcf ,_dcfb ,_adagc (_dfcd .text (),50)); -};_dfcd ._ebcf =_dcfb ;};if _dbde {for _ ,_abbb :=range _fgdc {_abbb .PdfRectangle =_abbb ._ebcf ;};};};func (_gadg *wordBag )allWords ()[]*textWord {var _afgbd []*textWord ;for _ ,_edeg :=range _gadg ._faba {_afgbd =append (_afgbd ,_edeg ...);};return _afgbd ; -};type gridTiling struct{_ce .PdfRectangle ;_cgecb []float64 ;_agbb []float64 ;_bage map[float64 ]map[float64 ]gridTile ;};func (_feab *imageExtractContext )processOperand (_ccb *_ag .ContentStreamOperation ,_cbge _ag .GraphicsState ,_gee *_ce .PdfPageResources )error {if _ccb .Operand =="\u0042\u0049"&&len (_ccb .Params )==1{_dbd ,_gddb :=_ccb .Params [0].(*_ag .ContentStreamInlineImage ); -if !_gddb {return nil ;};if _bef ,_feg :=_gb .GetBoolVal (_dbd .ImageMask );_feg {if _bef &&!_feab ._cef .IncludeInlineStencilMasks {return nil ;};};return _feab .extractInlineImage (_dbd ,_cbge ,_gee );}else if _ccb .Operand =="\u0044\u006f"&&len (_ccb .Params )==1{_dfg ,_gbb :=_gb .GetName (_ccb .Params [0]); -if !_gbb {_ec .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0079\u0070\u0065");return _gdf ;};_ ,_gf :=_gee .GetXObjectByName (*_dfg );switch _gf {case _ce .XObjectTypeImage :return _feab .extractXObjectImage (_dfg ,_cbge ,_gee );case _ce .XObjectTypeForm :return _feab .extractFormImages (_dfg ,_cbge ,_gee ); -};}else if _feab ._dedf &&(_ccb .Operand =="\u0073\u0063\u006e"||_ccb .Operand =="\u0053\u0043\u004e")&&len (_ccb .Params )==1{_bde ,_gdag :=_gb .GetName (_ccb .Params [0]);if !_gdag {_ec .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0079\u0070\u0065"); -return _gdf ;};_bcd ,_gdag :=_gee .GetPatternByName (*_bde );if !_gdag {_ec .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0074\u0074\u0065\u0072n\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");return nil ;};if _bcd .IsTiling (){_cga :=_bcd .GetAsTilingPattern (); -_caf ,_efge :=_cga .GetContentStream ();if _efge !=nil {return _efge ;};_efge =_feab .extractContentStreamImages (string (_caf ),_cga .Resources );if _efge !=nil {return _efge ;};};}else if (_ccb .Operand =="\u0063\u0073"||_ccb .Operand =="\u0043\u0053")&&len (_ccb .Params )>=1{_feab ._dedf =_ccb .Params [0].String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"; -};return nil ;};func _ccba (_gcgeb []int )[]int {_fcbf :=make ([]int ,len (_gcgeb ));for _dcgb ,_fafge :=range _gcgeb {_fcbf [len (_gcgeb )-1-_dcgb ]=_fafge ;};return _fcbf ;};func (_baad rulingList )snapToGroupsDirection ()rulingList {_baad .sortStrict (); -_cfgae :=make (map[*ruling ]rulingList ,len (_baad ));_febfa :=_baad [0];_fcfec :=func (_aebcg *ruling ){_febfa =_aebcg ;_cfgae [_febfa ]=rulingList {_aebcg }};_fcfec (_baad [0]);for _ ,_bgdde :=range _baad [1:]{if _bgdde ._abbgc < _febfa ._abbgc -_fdac {_ec .Log .Error ("\u0073\u006e\u0061\u0070T\u006f\u0047\u0072\u006f\u0075\u0070\u0073\u0044\u0069r\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0057\u0072\u006f\u006e\u0067\u0020\u0070\u0072\u0069\u006da\u0072\u0079\u0020\u006f\u0072d\u0065\u0072\u002e\u000a\u0009\u0076\u0030\u003d\u0025\u0073\u000a\u0009\u0020\u0076\u003d\u0025\u0073",_febfa ,_bgdde ); -};if _bgdde ._abbgc > _febfa ._abbgc +_gcef {_fcfec (_bgdde );}else {_cfgae [_febfa ]=append (_cfgae [_febfa ],_bgdde );};};_efaag :=make (map[*ruling ]float64 ,len (_cfgae ));_addbd :=make (map[*ruling ]*ruling ,len (_baad ));for _ffeg ,_aaecbe :=range _cfgae {_efaag [_ffeg ]=_aaecbe .mergePrimary (); -for _ ,_cegae :=range _aaecbe {_addbd [_cegae ]=_ffeg ;};};for _ ,_babc :=range _baad {_babc ._abbgc =_efaag [_addbd [_babc ]];};_bccd :=make (rulingList ,0,len (_baad ));for _ ,_ecba :=range _cfgae {_egdf :=_ecba .splitSec ();for _adca ,_facgc :=range _egdf {_cbde :=_facgc .merge (); -if len (_bccd )> 0{_cgge :=_bccd [len (_bccd )-1];if _cgge .alignsPrimary (_cbde )&&_cgge .alignsSec (_cbde ){_ec .Log .Error ("\u0073\u006e\u0061\u0070\u0054\u006fG\u0072\u006f\u0075\u0070\u0073\u0044\u0069\u0072\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0044\u0075\u0070\u006ci\u0063\u0061\u0074\u0065\u0020\u0069\u003d\u0025\u0064\u000a\u0009\u0077\u003d\u0025s\u000a\t\u0076\u003d\u0025\u0073",_adca ,_cgge ,_cbde ); -continue ;};};_bccd =append (_bccd ,_cbde );};};_bccd .sortStrict ();return _bccd ;}; - -// Len returns the number of TextMarks in `ma`. -func (_eggf *TextMarkArray )Len ()int {if _eggf ==nil {return 0;};return len (_eggf ._dec );};func _ggba (_cbfca []float64 ,_efadb ,_edac float64 )[]float64 {_fdcff ,_dacc :=_efadb ,_edac ;if _dacc < _fdcff {_fdcff ,_dacc =_dacc ,_fdcff ;};_faged :=make ([]float64 ,0,len (_cbfca )+2); -_faged =append (_faged ,_efadb );for _ ,_eeef :=range _cbfca {if _eeef <=_fdcff {continue ;}else if _eeef >=_dacc {break ;};_faged =append (_faged ,_eeef );};_faged =append (_faged ,_edac );return _faged ;};type paraList []*textPara ;func _debaa (_affa int ,_abfg func (int ,int )bool )[]int {_bbdaf :=make ([]int ,_affa ); -for _debg :=range _bbdaf {_bbdaf [_debg ]=_debg ;};_c .Slice (_bbdaf ,func (_cdfgc ,_acegf int )bool {return _abfg (_bbdaf [_cdfgc ],_bbdaf [_acegf ])});return _bbdaf ;};func _egbg (_dcgc []*textLine )map[float64 ][]*textLine {_c .Slice (_dcgc ,func (_gegdc ,_bgdb int )bool {return _dcgc [_gegdc ]._bcdg < _dcgc [_bgdb ]._bcdg }); -_gabe :=map[float64 ][]*textLine {};for _ ,_acb :=range _dcgc {_dfcee :=_accf (_acb );_dfcee =_aa .Round (_dfcee );_gabe [_dfcee ]=append (_gabe [_dfcee ],_acb );};return _gabe ;};func (_faggf intSet )del (_dafac int ){delete (_faggf ,_dafac )}; - -// TableCell is a cell in a TextTable. -type TableCell struct{_ce .PdfRectangle ; - -// Text is the extracted text. -Text string ; - -// Marks returns the TextMarks corresponding to the text in Text. -Marks TextMarkArray ;};const (_gdcf rulingKind =iota ;_ecac ;_ebdaf ;); \ No newline at end of file +func NewFromContents (contents string ,resources *_gb .PdfPageResources )(*Extractor ,error ){const _ad ="\u0065x\u0074\u0072\u0061\u0063t\u006f\u0072\u002e\u004e\u0065w\u0046r\u006fm\u0043\u006f\u006e\u0074\u0065\u006e\u0074s";_ece :=&Extractor {_ee :contents ,_bd :resources ,_ebb :map[string ]fontEntry {},_db :map[string ]textResult {}}; +_af .TrackUse (_ad );return _ece ,nil ;};func (_gdcfg *subpath )clear (){*_gdcfg =subpath {}};func (_ddbga *textPara )bbox ()_gb .PdfRectangle {return _ddbga .PdfRectangle };func (_agfc *wordBag )pullWord (_fbe *textWord ,_acee int ,_gacfe map[int ]map[*textWord ]struct{}){_agfc .PdfRectangle =_fde (_agfc .PdfRectangle ,_fbe .PdfRectangle ); +if _fbe ._fgdbd > _agfc ._bcef {_agfc ._bcef =_fbe ._fgdbd ;};_agfc ._gegc [_acee ]=append (_agfc ._gegc [_acee ],_fbe );_gacfe [_acee ][_fbe ]=struct{}{};};func (_dfccd rulingList )isActualGrid ()(rulingList ,bool ){_deddg ,_affec :=_dfccd .augmentGrid (); +if !(len (_deddg )>=_edeec +1&&len (_affec )>=_fegbc +1){if _geaeg {_ed .Log .Info ("\u0069s\u0041\u0063t\u0075\u0061\u006c\u0047r\u0069\u0064\u003a \u004e\u006f\u0074\u0020\u0061\u006c\u0069\u0067\u006eed\u002e\u0020\u0025d\u0020\u0078 \u0025\u0064\u0020\u003c\u0020\u0025d\u0020\u0078 \u0025\u0064",len (_deddg ),len (_affec ),_edeec +1,_fegbc +1); +};return nil ,false ;};if _geaeg {_ed .Log .Info ("\u0069\u0073\u0041\u0063\u0074\u0075a\u006c\u0047\u0072\u0069\u0064\u003a\u0020\u0025\u0073\u0020\u003a\u0020\u0025t\u0020\u0026\u0020\u0025\u0074\u0020\u2192 \u0025\u0074",_dfccd ,len (_deddg )>=2,len (_affec )>=2,len (_deddg )>=2&&len (_affec )>=2); +for _fcaea ,_bfgg :=range _dfccd {_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0076\u000a",_fcaea ,_bfgg );};};if _abdfd {_efdg ,_fced :=_deddg [0],_deddg [len (_deddg )-1];_bgdeb ,_fddc :=_affec [0],_affec [len (_affec )-1];if !(_adcb (_efdg ._abfg -_bgdeb ._daag )&&_adcb (_fced ._abfg -_bgdeb ._fcff )&&_adcb (_bgdeb ._abfg -_efdg ._fcff )&&_adcb (_fddc ._abfg -_efdg ._daag )){if _geaeg {_ed .Log .Info ("\u0069\u0073\u0041\u0063\u0074\u0075\u0061l\u0047\u0072\u0069d\u003a\u0020\u0020N\u006f\u0074 \u0061\u006c\u0069\u0067\u006e\u0065d\u002e\n\t\u0076\u0030\u003d\u0025\u0073\u000a\u0009\u0076\u0031\u003d\u0025\u0073\u000a\u0009\u0068\u0030\u003d\u0025\u0073\u000a\u0009\u0068\u0031\u003d\u0025\u0073",_efdg ,_fced ,_bgdeb ,_fddc ); +};return nil ,false ;};}else {if !_deddg .aligned (){if _dgbge {_ed .Log .Info ("i\u0073\u0041\u0063\u0074\u0075\u0061l\u0047\u0072\u0069\u0064\u003a\u0020N\u006f\u0074\u0020\u0061\u006c\u0069\u0067n\u0065\u0064\u0020\u0076\u0065\u0072\u0074\u0073\u002e\u0020%\u0064",len (_deddg )); +};return nil ,false ;};if !_affec .aligned (){if _geaeg {_ed .Log .Info ("i\u0073\u0041\u0063\u0074\u0075\u0061l\u0047\u0072\u0069\u0064\u003a\u0020N\u006f\u0074\u0020\u0061\u006c\u0069\u0067n\u0065\u0064\u0020\u0068\u006f\u0072\u007a\u0073\u002e\u0020%\u0064",len (_affec )); +};return nil ,false ;};};_dccdb :=append (_deddg ,_affec ...);return _dccdb ,true ;};func (_efcb *stateStack )empty ()bool {return len (*_efcb )==0};func _cccea (_dbfec ,_bdbe _cc .Point )rulingKind {_gebdd :=_df .Abs (_dbfec .X -_bdbe .X );_fbfce :=_df .Abs (_dbfec .Y -_bdbe .Y ); +return _gaba (_gebdd ,_fbfce ,_caf );};type structElement struct{_gacb string ;_ddcfe []structElement ;_adfb int64 ;_gfeff _gg .PdfObject ;};func (_gafdb paraList )log (_abfde string ){if !_baff {return ;};_ed .Log .Info ("%\u0038\u0073\u003a\u0020\u0025\u0064 \u0070\u0061\u0072\u0061\u0073\u0020=\u003d\u003d\u003d\u003d\u003d\u003d\u002d-\u002d\u002d\u002d\u002d\u002d\u003d\u003d\u003d\u003d\u003d=\u003d",_abfde ,len (_gafdb )); +for _ggdba ,_cgbe :=range _gafdb {if _cgbe ==nil {continue ;};_cgef :=_cgbe .text ();_edfe :="\u0020\u0020";if _cgbe ._bedfe !=nil {_edfe =_cfe .Sprintf ("\u005b%\u0064\u0078\u0025\u0064\u005d",_cgbe ._bedfe ._fccgee ,_cgbe ._bedfe ._dege );};_cfe .Printf ("\u0025\u0034\u0064\u003a\u0020\u0025\u0036\u002e\u0032\u0066\u0020\u0025s\u0020\u0025\u0071\u000a",_ggdba ,_cgbe .PdfRectangle ,_edfe ,_fabf (_cgef ,50)); +};};func (_ggge *structTreeRoot )parseStructTreeRoot (_deee _gg .PdfObject ){if _deee !=nil {_abfcf ,_cced :=_gg .GetDict (_deee );if !_cced {_ed .Log .Debug ("\u0070\u0061\u0072s\u0065\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u003a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006eo\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e"); +};K :=_abfcf .Get ("\u004b");_fagf :=_abfcf .Get ("\u0054\u0079\u0070\u0065").String ();var _caa *_gg .PdfObjectArray ;switch _bade :=K .(type ){case *_gg .PdfObjectArray :_caa =_bade ;case *_gg .PdfObjectReference :_caa =_gg .MakeArray (K );};_cfec :=[]structElement {}; +for _ ,_dddef :=range _caa .Elements (){_baedg :=&structElement {};_baedg .parseStructElement (_dddef );_cfec =append (_cfec ,*_baedg );};_ggge ._gafdd =_cfec ;_ggge ._bgee =_fagf ;};};func _gdag (_defe *Extractor ,_gaa *_gb .PdfPageResources ,_gacc _aad .GraphicsState ,_geea *textState ,_egfc *stateStack )*textObject {return &textObject {_cgf :_defe ,_edacg :_gaa ,_ccg :_gacc ,_bab :_egfc ,_cbag :_geea ,_ffb :_cc .IdentityMatrix (),_ddge :_cc .IdentityMatrix ()}; +};type subpath struct{_ccgf []_cc .Point ;_beac bool ;}; \ No newline at end of file diff --git a/fdf/fdf.go b/fdf/fdf.go index f6396f6f5..46621529a 100644 --- a/fdf/fdf.go +++ b/fdf/fdf.go @@ -10,115 +10,113 @@ // terms that can be accessed at https://unidoc.io/eula/ // Package fdf provides support for loading form field data from Form Field Data (FDF) files. -package fdf ;import (_b "bufio";_cf "bytes";_fc "encoding/hex";_e "errors";_a "fmt";_ed "github.com/unidoc/unipdf/v3/common";_d "github.com/unidoc/unipdf/v3/core";_bf "io";_ff "os";_fa "regexp";_ef "sort";_ec "strconv";_c "strings";);func (_fbe *fdfParser )parseString ()(*_d .PdfObjectString ,error ){_fbe ._bbd .ReadByte (); -var _eae _cf .Buffer ;_gb :=1;for {_geb ,_bfc :=_fbe ._bbd .Peek (1);if _bfc !=nil {return _d .MakeString (_eae .String ()),_bfc ;};if _geb [0]=='\\'{_fbe ._bbd .ReadByte ();_gbb ,_ffd :=_fbe ._bbd .ReadByte ();if _ffd !=nil {return _d .MakeString (_eae .String ()),_ffd ; -};if _d .IsOctalDigit (_gbb ){_dbc ,_ecb :=_fbe ._bbd .Peek (2);if _ecb !=nil {return _d .MakeString (_eae .String ()),_ecb ;};var _aa []byte ;_aa =append (_aa ,_gbb );for _ ,_afe :=range _dbc {if _d .IsOctalDigit (_afe ){_aa =append (_aa ,_afe );}else {break ; -};};_fbe ._bbd .Discard (len (_aa )-1);_ed .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_aa );_efc ,_ecb :=_ec .ParseUint (string (_aa ),8,32);if _ecb !=nil {return _d .MakeString (_eae .String ()),_ecb ; -};_eae .WriteByte (byte (_efc ));continue ;};switch _gbb {case 'n':_eae .WriteRune ('\n');case 'r':_eae .WriteRune ('\r');case 't':_eae .WriteRune ('\t');case 'b':_eae .WriteRune ('\b');case 'f':_eae .WriteRune ('\f');case '(':_eae .WriteRune ('(');case ')':_eae .WriteRune (')'); -case '\\':_eae .WriteRune ('\\');};continue ;}else if _geb [0]=='('{_gb ++;}else if _geb [0]==')'{_gb --;if _gb ==0{_fbe ._bbd .ReadByte ();break ;};};_eab ,_ :=_fbe ._bbd .ReadByte ();_eae .WriteByte (_eab );};return _d .MakeString (_eae .String ()),nil ; -}; +package fdf ;import (_ca "bufio";_aa "bytes";_f "encoding/hex";_c "errors";_be "fmt";_cd "github.com/unidoc/unipdf/v3/common";_age "github.com/unidoc/unipdf/v3/core";_e "io";_ba "os";_b "regexp";_d "sort";_ag "strconv";_a "strings";);var _bc =_b .MustCompile ("\u0025\u0025\u0045O\u0046"); -// FieldDictionaries returns a map of field names to field dictionaries. -func (fdf *Data )FieldDictionaries ()(map[string ]*_d .PdfObjectDictionary ,error ){_db :=map[string ]*_d .PdfObjectDictionary {};for _efa :=0;_efa < fdf ._cg .Len ();_efa ++{_cd ,_ad :=_d .GetDict (fdf ._cg .Get (_efa ));if _ad {_dg ,_ :=_d .GetString (_cd .Get ("\u0054")); -if _dg !=nil {_db [_dg .Str ()]=_cd ;};};};return _db ,nil ;};type fdfParser struct{_adb int ;_fb int ;_fec map[int64 ]_d .PdfObject ;_gc _bf .ReadSeeker ;_bbd *_b .Reader ;_af int64 ;_gfb *_d .PdfObjectDictionary ;};func (_cfe *fdfParser )parseDict ()(*_d .PdfObjectDictionary ,error ){_ed .Log .Trace ("\u0052\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0046\u0044\u0046\u0020D\u0069\u0063\u0074\u0021"); -_dfea :=_d .MakeDict ();_cfdb ,_ :=_cfe ._bbd .ReadByte ();if _cfdb !='<'{return nil ,_e .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074");};_cfdb ,_ =_cfe ._bbd .ReadByte ();if _cfdb !='<'{return nil ,_e .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); -};for {_cfe .skipSpaces ();_cfe .skipComments ();_bbg ,_ecgf :=_cfe ._bbd .Peek (2);if _ecgf !=nil {return nil ,_ecgf ;};_ed .Log .Trace ("D\u0069c\u0074\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_bbg ),string (_bbg )); -if (_bbg [0]=='>')&&(_bbg [1]=='>'){_ed .Log .Trace ("\u0045\u004f\u0046\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079");_cfe ._bbd .ReadByte ();_cfe ._bbd .ReadByte ();break ;};_ed .Log .Trace ("\u0050a\u0072s\u0065\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0021"); -_bgc ,_ecgf :=_cfe .parseName ();_ed .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_bgc );if _ecgf !=nil {_ed .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0052e\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006ea\u006d\u0065\u0020e\u0072r\u0020\u0025\u0073",_ecgf ); -return nil ,_ecgf ;};if len (_bgc )> 4&&_bgc [len (_bgc )-4:]=="\u006e\u0075\u006c\u006c"{_cfa :=_bgc [0:len (_bgc )-4];_ed .Log .Debug ("\u0054\u0061\u006b\u0069n\u0067\u0020\u0063\u0061\u0072\u0065\u0020\u006f\u0066\u0020n\u0075l\u006c\u0020\u0062\u0075\u0067\u0020\u0028%\u0073\u0029",_bgc ); -_ed .Log .Debug ("\u004e\u0065\u0077\u0020ke\u0079\u0020\u0022\u0025\u0073\u0022\u0020\u003d\u0020\u006e\u0075\u006c\u006c",_cfa );_cfe .skipSpaces ();_fabc ,_ :=_cfe ._bbd .Peek (1);if _fabc [0]=='/'{_dfea .Set (_cfa ,_d .MakeNull ());continue ;};};_cfe .skipSpaces (); -_aadb ,_ecgf :=_cfe .parseObject ();if _ecgf !=nil {return nil ,_ecgf ;};_dfea .Set (_bgc ,_aadb );_ed .Log .Trace ("\u0064\u0069\u0063\u0074\u005b\u0025\u0073\u005d\u0020\u003d\u0020\u0025\u0073",_bgc ,_aadb .String ());};_ed .Log .Trace ("\u0072\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0046\u0044\u0046\u0020\u0044\u0069\u0063\u0074\u0021"); -return _dfea ,nil ;};var _cfd =_fa .MustCompile ("\u005e\u005b\u005c\u002b\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d9\u002e\u005d\u002b\u0029"); -// Root returns the Root of the FDF document. -func (_aab *fdfParser )Root ()(*_d .PdfObjectDictionary ,error ){if _aab ._gfb !=nil {if _ccbc ,_bed :=_aab .trace (_aab ._gfb .Get ("\u0052\u006f\u006f\u0074")).(*_d .PdfObjectDictionary );_bed {if _afea ,_gba :=_aab .trace (_ccbc .Get ("\u0046\u0044\u0046")).(*_d .PdfObjectDictionary ); -_gba {return _afea ,nil ;};};};var _bag []int64 ;for _ddce :=range _aab ._fec {_bag =append (_bag ,_ddce );};_ef .Slice (_bag ,func (_gbd ,_cac int )bool {return _bag [_gbd ]< _bag [_cac ]});for _ ,_gef :=range _bag {_agd :=_aab ._fec [_gef ];if _aae ,_faa :=_aab .trace (_agd ).(*_d .PdfObjectDictionary ); -_faa {if _fdf ,_daa :=_aab .trace (_aae .Get ("\u0046\u0044\u0046")).(*_d .PdfObjectDictionary );_daa {return _fdf ,nil ;};};};return nil ,_e .New ("\u0046\u0044\u0046\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};func (_gcf *fdfParser )parseNull ()(_d .PdfObjectNull ,error ){_ ,_ffb :=_gcf ._bbd .Discard (4); -return _d .PdfObjectNull {},_ffb ;};func (_aba *fdfParser )parseBool ()(_d .PdfObjectBool ,error ){_agab ,_eabb :=_aba ._bbd .Peek (4);if _eabb !=nil {return _d .PdfObjectBool (false ),_eabb ;};if (len (_agab )>=4)&&(string (_agab [:4])=="\u0074\u0072\u0075\u0065"){_aba ._bbd .Discard (4); -return _d .PdfObjectBool (true ),nil ;};_agab ,_eabb =_aba ._bbd .Peek (5);if _eabb !=nil {return _d .PdfObjectBool (false ),_eabb ;};if (len (_agab )>=5)&&(string (_agab [:5])=="\u0066\u0061\u006cs\u0065"){_aba ._bbd .Discard (5);return _d .PdfObjectBool (false ),nil ; -};return _d .PdfObjectBool (false ),_e .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg");};func _abe (_dagb _bf .ReadSeeker )(*fdfParser ,error ){_facc :=&fdfParser {};_facc ._gc =_dagb ; -_facc ._fec =map[int64 ]_d .PdfObject {};_ege ,_egg ,_baff :=_facc .parseFdfVersion ();if _baff !=nil {_ed .Log .Error ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0076e\u0072\u0073\u0069o\u006e:\u0020\u0025\u0076",_baff ); -return nil ,_baff ;};_facc ._adb =_ege ;_facc ._fb =_egg ;_baff =_facc .parse ();return _facc ,_baff ;};func (_fcd *fdfParser )setFileOffset (_gfe int64 ){_fcd ._gc .Seek (_gfe ,_bf .SeekStart );_fcd ._bbd =_b .NewReader (_fcd ._gc );};func (_bgd *fdfParser )parseHexString ()(*_d .PdfObjectString ,error ){_bgd ._bbd .ReadByte (); -var _fcg _cf .Buffer ;for {_cdd ,_dfe :=_bgd ._bbd .Peek (1);if _dfe !=nil {return _d .MakeHexString (""),_dfe ;};if _cdd [0]=='>'{_bgd ._bbd .ReadByte ();break ;};_ga ,_ :=_bgd ._bbd .ReadByte ();if !_d .IsWhiteSpace (_ga ){_fcg .WriteByte (_ga );};}; -if _fcg .Len ()%2==1{_fcg .WriteRune ('0');};_aec ,_abc :=_fc .DecodeString (_fcg .String ());if _abc !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0068\u0065\u0078\u0020\u0073\u0074r\u0069\u006e\u0067\u003a\u0020\u0027\u0025\u0073\u0027 \u002d\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0061n\u0020\u0065\u006d\u0070\u0074\u0079 \u0073\u0074\u0072i\u006e\u0067",_fcg .String ()); -return _d .MakeHexString (""),nil ;};return _d .MakeHexString (string (_aec )),nil ;};func (_fed *fdfParser )skipSpaces ()(int ,error ){_bd :=0;for {_fbf ,_ccd :=_fed ._bbd .ReadByte ();if _ccd !=nil {return 0,_ccd ;};if _d .IsWhiteSpace (_fbf ){_bd ++; -}else {_fed ._bbd .UnreadByte ();break ;};};return _bd ,nil ;};func (_bbcd *fdfParser )parseArray ()(*_d .PdfObjectArray ,error ){_fab :=_d .MakeArray ();_bbcd ._bbd .ReadByte ();for {_bbcd .skipSpaces ();_fbg ,_efd :=_bbcd ._bbd .Peek (1);if _efd !=nil {return _fab ,_efd ; -};if _fbg [0]==']'{_bbcd ._bbd .ReadByte ();break ;};_ccc ,_efd :=_bbcd .parseObject ();if _efd !=nil {return _fab ,_efd ;};_fab .Append (_ccc );};return _fab ,nil ;}; +// LoadFromPath loads FDF form data from file path `fdfPath`. +func LoadFromPath (fdfPath string )(*Data ,error ){_eg ,_ac :=_ba .Open (fdfPath );if _ac !=nil {return nil ,_ac ;};defer _eg .Close ();return Load (_eg );};func (_cbaf *fdfParser )seekFdfVersionTopDown ()(int ,int ,error ){_cbaf ._gaf .Seek (0,_e .SeekStart ); +_cbaf ._dge =_ca .NewReader (_cbaf ._gaf );_ddc :=20;_ecg :=make ([]byte ,_ddc );for {_gce ,_gee :=_cbaf ._dge .ReadByte ();if _gee !=nil {if _gee ==_e .EOF {break ;}else {return 0,0,_gee ;};};if _age .IsDecimalDigit (_gce )&&_ecg [_ddc -1]=='.'&&_age .IsDecimalDigit (_ecg [_ddc -2])&&_ecg [_ddc -3]=='-'&&_ecg [_ddc -4]=='F'&&_ecg [_ddc -5]=='D'&&_ecg [_ddc -6]=='P'{_gedb :=int (_ecg [_ddc -2]-'0'); +_dff :=int (_gce -'0');return _gedb ,_dff ,nil ;};_ecg =append (_ecg [1:_ddc ],_gce );};return 0,0,_c .New ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};func (_bdb *fdfParser )parseArray ()(*_age .PdfObjectArray ,error ){_fcd :=_age .MakeArray (); +_bdb ._dge .ReadByte ();for {_bdb .skipSpaces ();_eac ,_aed :=_bdb ._dge .Peek (1);if _aed !=nil {return _fcd ,_aed ;};if _eac [0]==']'{_bdb ._dge .ReadByte ();break ;};_ccg ,_aed :=_bdb .parseObject ();if _aed !=nil {return _fcd ,_aed ;};_fcd .Append (_ccg ); +};return _fcd ,nil ;};func (_gbgee *fdfParser )parseObject ()(_age .PdfObject ,error ){_cd .Log .Trace ("\u0052e\u0061d\u0020\u0064\u0069\u0072\u0065c\u0074\u0020o\u0062\u006a\u0065\u0063\u0074");_gbgee .skipSpaces ();for {_abba ,_gaab :=_gbgee ._dge .Peek (2); +if _gaab !=nil {return nil ,_gaab ;};_cd .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_abba ));if _abba [0]=='/'{_egda ,_fff :=_gbgee .parseName ();_cd .Log .Trace ("\u002d\u003e\u004ea\u006d\u0065\u003a\u0020\u0027\u0025\u0073\u0027",_egda ); +return &_egda ,_fff ;}else if _abba [0]=='('{_cd .Log .Trace ("\u002d>\u0053\u0074\u0072\u0069\u006e\u0067!");return _gbgee .parseString ();}else if _abba [0]=='['{_cd .Log .Trace ("\u002d\u003e\u0041\u0072\u0072\u0061\u0079\u0021");return _gbgee .parseArray (); +}else if (_abba [0]=='<')&&(_abba [1]=='<'){_cd .Log .Trace ("\u002d>\u0044\u0069\u0063\u0074\u0021");return _gbgee .parseDict ();}else if _abba [0]=='<'{_cd .Log .Trace ("\u002d\u003e\u0048\u0065\u0078\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0021"); +return _gbgee .parseHexString ();}else if _abba [0]=='%'{_gbgee .readComment ();_gbgee .skipSpaces ();}else {_cd .Log .Trace ("\u002d\u003eN\u0075\u006d\u0062e\u0072\u0020\u006f\u0072\u0020\u0072\u0065\u0066\u003f");_abba ,_ =_gbgee ._dge .Peek (15);_deba :=string (_abba ); +_cd .Log .Trace ("\u0050\u0065\u0065k\u0020\u0073\u0074\u0072\u003a\u0020\u0025\u0073",_deba );if (len (_deba )> 3)&&(_deba [:4]=="\u006e\u0075\u006c\u006c"){_ecd ,_gad :=_gbgee .parseNull ();return &_ecd ,_gad ;}else if (len (_deba )> 4)&&(_deba [:5]=="\u0066\u0061\u006cs\u0065"){_ef ,_dgaa :=_gbgee .parseBool (); +return &_ef ,_dgaa ;}else if (len (_deba )> 3)&&(_deba [:4]=="\u0074\u0072\u0075\u0065"){_bae ,_dde :=_gbgee .parseBool ();return &_bae ,_dde ;};_acda :=_gaa .FindStringSubmatch (_deba );if len (_acda )> 1{_abba ,_ =_gbgee ._dge .ReadBytes ('R');_cd .Log .Trace ("\u002d\u003e\u0020\u0021\u0052\u0065\u0066\u003a\u0020\u0027\u0025\u0073\u0027",string (_abba [:])); +_ege ,_dedb :=_gdg (string (_abba ));return &_ege ,_dedb ;};_fce :=_bd .FindStringSubmatch (_deba );if len (_fce )> 1{_cd .Log .Trace ("\u002d\u003e\u0020\u004e\u0075\u006d\u0062\u0065\u0072\u0021");return _gbgee .parseNumber ();};_fce =_gg .FindStringSubmatch (_deba ); +if len (_fce )> 1{_cd .Log .Trace ("\u002d\u003e\u0020\u0045xp\u006f\u006e\u0065\u006e\u0074\u0069\u0061\u006c\u0020\u004e\u0075\u006d\u0062\u0065r\u0021");_cd .Log .Trace ("\u0025\u0020\u0073",_fce );return _gbgee .parseNumber ();};_cd .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020U\u006e\u006b\u006e\u006f\u0077n\u0020(\u0070e\u0065\u006b\u0020\u0022\u0025\u0073\u0022)",_deba ); +return nil ,_c .New ("\u006f\u0062\u006a\u0065\u0063t\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006fr\u0020\u002d\u0020\u0075\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e"); +};};};func (_gdf *fdfParser )readTextLine ()(string ,error ){var _geg _aa .Buffer ;for {_adg ,_gbge :=_gdf ._dge .Peek (1);if _gbge !=nil {_cd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_gbge .Error ());return _geg .String (),_gbge ; +};if (_adg [0]!='\r')&&(_adg [0]!='\n'){_ged ,_ :=_gdf ._dge .ReadByte ();_geg .WriteByte (_ged );}else {break ;};};return _geg .String (),nil ;};func _gdg (_cac string )(_age .PdfObjectReference ,error ){_bcc :=_age .PdfObjectReference {};_ebc :=_gaa .FindStringSubmatch (_cac ); +if len (_ebc )< 3{_cd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065");return _bcc ,_c .New ("\u0075n\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0070\u0061r\u0073e\u0020r\u0065\u0066\u0065\u0072\u0065\u006e\u0063e"); +};_cag ,_aec :=_ag .Atoi (_ebc [1]);if _aec !=nil {_cd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070a\u0072\u0073\u0069n\u0067\u0020\u006fb\u006a\u0065c\u0074\u0020\u006e\u0075\u006d\u0062e\u0072 '\u0025\u0073\u0027\u0020\u002d\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u0075\u006d\u0020\u003d\u0020\u0030",_ebc [1]); +return _bcc ,nil ;};_bcc .ObjectNumber =int64 (_cag );_fcbc ,_aec :=_ag .Atoi (_ebc [2]);if _aec !=nil {_cd .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0070\u0061r\u0073\u0069\u006e\u0067\u0020g\u0065\u006e\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0027\u0025\u0073\u0027\u0020\u002d\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u0067\u0065\u006e\u0020\u003d\u0020\u0030",_ebc [2]); +return _bcc ,nil ;};_bcc .GenerationNumber =int64 (_fcbc );return _bcc ,nil ;};func (_eacg *fdfParser )parseBool ()(_age .PdfObjectBool ,error ){_ffa ,_ccgf :=_eacg ._dge .Peek (4);if _ccgf !=nil {return _age .PdfObjectBool (false ),_ccgf ;};if (len (_ffa )>=4)&&(string (_ffa [:4])=="\u0074\u0072\u0075\u0065"){_eacg ._dge .Discard (4); +return _age .PdfObjectBool (true ),nil ;};_ffa ,_ccgf =_eacg ._dge .Peek (5);if _ccgf !=nil {return _age .PdfObjectBool (false ),_ccgf ;};if (len (_ffa )>=5)&&(string (_ffa [:5])=="\u0066\u0061\u006cs\u0065"){_eacg ._dge .Discard (5);return _age .PdfObjectBool (false ),nil ; +};return _age .PdfObjectBool (false ),_c .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg");};func (_gcg *fdfParser )trace (_accd _age .PdfObject )_age .PdfObject {switch _fgd :=_accd .(type ){case *_age .PdfObjectReference :_cga ,_bde :=_gcg ._agd [_fgd .ObjectNumber ].(*_age .PdfIndirectObject ); +if _bde {return _cga .PdfObject ;};_cd .Log .Debug ("\u0054\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");return nil ;case *_age .PdfIndirectObject :return _fgd .PdfObject ;};return _accd ;};func (_gfd *fdfParser )parseIndirectObject ()(_age .PdfObject ,error ){_dbb :=_age .PdfIndirectObject {}; +_cd .Log .Trace ("\u002dR\u0065a\u0064\u0020\u0069\u006e\u0064i\u0072\u0065c\u0074\u0020\u006f\u0062\u006a");_bebd ,_dbc :=_gfd ._dge .Peek (20);if _dbc !=nil {_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020r\u0065a\u0064\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a"); +return &_dbb ,_dbc ;};_cd .Log .Trace ("\u0028\u0069\u006edi\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0020\u0070\u0065\u0065\u006b\u0020\u0022\u0025\u0073\u0022",string (_bebd ));_ffad :=_eed .FindStringSubmatchIndex (string (_bebd ));if len (_ffad )< 6{_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_bebd )); +return &_dbb ,_c .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); +};_gfd ._dge .Discard (_ffad [0]);_cd .Log .Trace ("O\u0066\u0066\u0073\u0065\u0074\u0073\u0020\u0025\u0020\u0064",_ffad );_agdg :=_ffad [1]-_ffad [0];_aaf :=make ([]byte ,_agdg );_ ,_dbc =_gfd .readAtLeast (_aaf ,_agdg );if _dbc !=nil {_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020-\u0020\u0025\u0073",_dbc ); +return nil ,_dbc ;};_cd .Log .Trace ("\u0074\u0065\u0078t\u006c\u0069\u006e\u0065\u003a\u0020\u0025\u0073",_aaf );_daee :=_eed .FindStringSubmatch (string (_aaf ));if len (_daee )< 3{_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_aaf )); +return &_dbb ,_c .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); +};_gae ,_ :=_ag .Atoi (_daee [1]);_ddd ,_ :=_ag .Atoi (_daee [2]);_dbb .ObjectNumber =int64 (_gae );_dbb .GenerationNumber =int64 (_ddd );for {_bcg ,_aag :=_gfd ._dge .Peek (2);if _aag !=nil {return &_dbb ,_aag ;};_cd .Log .Trace ("I\u006ed\u002e\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_bcg ),string (_bcg )); +if _age .IsWhiteSpace (_bcg [0]){_gfd .skipSpaces ();}else if _bcg [0]=='%'{_gfd .skipComments ();}else if (_bcg [0]=='<')&&(_bcg [1]=='<'){_cd .Log .Trace ("\u0043\u0061\u006c\u006c\u0020\u0050\u0061\u0072\u0073e\u0044\u0069\u0063\u0074");_dbb .PdfObject ,_aag =_gfd .parseDict (); +_cd .Log .Trace ("\u0045\u004f\u0046\u0020Ca\u006c\u006c\u0020\u0050\u0061\u0072\u0073\u0065\u0044\u0069\u0063\u0074\u003a\u0020%\u0076",_aag );if _aag !=nil {return &_dbb ,_aag ;};_cd .Log .Trace ("\u0050\u0061\u0072\u0073\u0065\u0064\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e.\u002e\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); +}else if (_bcg [0]=='/')||(_bcg [0]=='(')||(_bcg [0]=='[')||(_bcg [0]=='<'){_dbb .PdfObject ,_aag =_gfd .parseObject ();if _aag !=nil {return &_dbb ,_aag ;};_cd .Log .Trace ("P\u0061\u0072\u0073\u0065\u0064\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u002e\u002e\u002e \u0066\u0069\u006ei\u0073h\u0065\u0064\u002e"); +}else {if _bcg [0]=='e'{_cgbb ,_dgbeb :=_gfd .readTextLine ();if _dgbeb !=nil {return nil ,_dgbeb ;};if len (_cgbb )>=6&&_cgbb [0:6]=="\u0065\u006e\u0064\u006f\u0062\u006a"{break ;};}else if _bcg [0]=='s'{_bcg ,_ =_gfd ._dge .Peek (10);if string (_bcg [:6])=="\u0073\u0074\u0072\u0065\u0061\u006d"{_fggg :=6; +if len (_bcg )> 6{if _age .IsWhiteSpace (_bcg [_fggg ])&&_bcg [_fggg ]!='\r'&&_bcg [_fggg ]!='\n'{_cd .Log .Debug ("\u004e\u006fn\u002d\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0074\u0020\u0046\u0044\u0046\u0020\u006e\u006f\u0074 \u0065\u006e\u0064\u0069\u006e\u0067 \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0069\u006e\u0065\u0020\u0070\u0072o\u0070\u0065r\u006c\u0079\u0020\u0077i\u0074\u0068\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072"); +_fggg ++;};if _bcg [_fggg ]=='\r'{_fggg ++;if _bcg [_fggg ]=='\n'{_fggg ++;};}else if _bcg [_fggg ]=='\n'{_fggg ++;};};_gfd ._dge .Discard (_fggg );_bfbf ,_dad :=_dbb .PdfObject .(*_age .PdfObjectDictionary );if !_dad {return nil ,_c .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006di\u0073s\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_cd .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074\u0020\u0025\u0073",_bfbf );_ade ,_cdg :=_bfbf .Get ("\u004c\u0065\u006e\u0067\u0074\u0068").(*_age .PdfObjectInteger );if !_cdg {return nil ,_c .New ("\u0073\u0074re\u0061\u006d\u0020l\u0065\u006e\u0067\u0074h n\u0065ed\u0073\u0020\u0074\u006f\u0020\u0062\u0065 a\u006e\u0020\u0069\u006e\u0074\u0065\u0067e\u0072"); +};_dca :=*_ade ;if _dca < 0{return nil ,_c .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f \u0062e\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0030");};if int64 (_dca )> _gfd ._cbb {_cd .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0053t\u0072\u0065\u0061\u006d\u0020l\u0065\u006e\u0067\u0074\u0068\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0069\u007a\u0065"); +return nil ,_c .New ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0073t\u0072\u0065\u0061m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002c\u0020la\u0072\u0067\u0065r\u0020\u0074h\u0061\u006e\u0020\u0066\u0069\u006ce\u0020\u0073i\u007a\u0065");};_fgb :=make ([]byte ,_dca ); +_ ,_aag =_gfd .readAtLeast (_fgb ,int (_dca ));if _aag !=nil {_cd .Log .Debug ("E\u0052\u0052\u004f\u0052 s\u0074r\u0065\u0061\u006d\u0020\u0028%\u0064\u0029\u003a\u0020\u0025\u0058",len (_fgb ),_fgb );_cd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_aag ); +return nil ,_aag ;};_fffd :=_age .PdfObjectStream {};_fffd .Stream =_fgb ;_fffd .PdfObjectDictionary =_dbb .PdfObject .(*_age .PdfObjectDictionary );_fffd .ObjectNumber =_dbb .ObjectNumber ;_fffd .GenerationNumber =_dbb .GenerationNumber ;_gfd .skipSpaces (); +_gfd ._dge .Discard (9);_gfd .skipSpaces ();return &_fffd ,nil ;};};_dbb .PdfObject ,_aag =_gfd .parseObject ();return &_dbb ,_aag ;};};_cd .Log .Trace ("\u0052\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0021"); +return &_dbb ,nil ;};func (_daa *fdfParser )skipSpaces ()(int ,error ){_ec :=0;for {_eb ,_gd :=_daa ._dge .ReadByte ();if _gd !=nil {return 0,_gd ;};if _age .IsWhiteSpace (_eb ){_ec ++;}else {_daa ._dge .UnreadByte ();break ;};};return _ec ,nil ;}; -// Data represents forms data format (FDF) file data. -type Data struct{_cc *_d .PdfObjectDictionary ;_cg *_d .PdfObjectArray ;};func (_bgb *fdfParser )parseFdfVersion ()(int ,int ,error ){_bgb ._gc .Seek (0,_bf .SeekStart );_bcd :=20;_ccb :=make ([]byte ,_bcd );_bgb ._gc .Read (_ccb );_ece :=_gd .FindStringSubmatch (string (_ccb )); -if len (_ece )< 3{_cfab ,_fcdg ,_dbce :=_bgb .seekFdfVersionTopDown ();if _dbce !=nil {_ed .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065\u0063\u006f\u0076\u0065\u0072\u0079\u0020\u002d\u0020\u0075n\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0066\u0069nd\u0020\u0076\u0065r\u0073i\u006f\u006e"); -return 0,0,_dbce ;};return _cfab ,_fcdg ,nil ;};_bcg ,_afc :=_ec .Atoi (_ece [1]);if _afc !=nil {return 0,0,_afc ;};_bbdg ,_afc :=_ec .Atoi (_ece [2]);if _afc !=nil {return 0,0,_afc ;};_ed .Log .Debug ("\u0046\u0064\u0066\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020%\u0064\u002e\u0025\u0064",_bcg ,_bbdg ); -return _bcg ,_bbdg ,nil ;};func (_bbc *fdfParser )readTextLine ()(string ,error ){var _fae _cf .Buffer ;for {_dd ,_ddc :=_bbc ._bbd .Peek (1);if _ddc !=nil {_ed .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_ddc .Error ());return _fae .String (),_ddc ; -};if (_dd [0]!='\r')&&(_dd [0]!='\n'){_ccdc ,_ :=_bbc ._bbd .ReadByte ();_fae .WriteByte (_ccdc );}else {break ;};};return _fae .String (),nil ;};func (_ccf *fdfParser )readAtLeast (_fcb []byte ,_ab int )(int ,error ){_abd :=_ab ;_bg :=0;_bfga :=0;for _abd > 0{_bac ,_dbd :=_ccf ._bbd .Read (_fcb [_bg :]); -if _dbd !=nil {_ed .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0046\u0061i\u006c\u0065\u0064\u0020\u0072\u0065\u0061d\u0069\u006e\u0067\u0020\u0028\u0025\u0064\u003b\u0025\u0064\u0029\u0020\u0025\u0073",_bac ,_bfga ,_dbd .Error ());return _bg ,_e .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065a\u0064\u0069\u006e\u0067"); -};_bfga ++;_bg +=_bac ;_abd -=_bac ;};return _bg ,nil ;};func (_dc *fdfParser )trace (_dcf _d .PdfObject )_d .PdfObject {switch _acd :=_dcf .(type ){case *_d .PdfObjectReference :_ccda ,_cdbb :=_dc ._fec [_acd .ObjectNumber ].(*_d .PdfIndirectObject ); -if _cdbb {return _ccda .PdfObject ;};_ed .Log .Debug ("\u0054\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");return nil ;case *_d .PdfIndirectObject :return _acd .PdfObject ;};return _dcf ;};func (_bde *fdfParser )parseName ()(_d .PdfObjectName ,error ){var _fadd _cf .Buffer ; -_bdd :=false ;for {_eb ,_gcd :=_bde ._bbd .Peek (1);if _gcd ==_bf .EOF {break ;};if _gcd !=nil {return _d .PdfObjectName (_fadd .String ()),_gcd ;};if !_bdd {if _eb [0]=='/'{_bdd =true ;_bde ._bbd .ReadByte ();}else if _eb [0]=='%'{_bde .readComment (); -_bde .skipSpaces ();}else {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020N\u0061\u006d\u0065\u0020\u0073\u0074\u0061\u0072\u0074\u0069\u006e\u0067\u0020w\u0069\u0074\u0068\u0020\u0025\u0073\u0020(\u0025\u0020\u0078\u0029",_eb ,_eb );return _d .PdfObjectName (_fadd .String ()),_a .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_eb [0]); -};}else {if _d .IsWhiteSpace (_eb [0]){break ;}else if (_eb [0]=='/')||(_eb [0]=='[')||(_eb [0]=='(')||(_eb [0]==']')||(_eb [0]=='<')||(_eb [0]=='>'){break ;}else if _eb [0]=='#'{_cgb ,_efb :=_bde ._bbd .Peek (3);if _efb !=nil {return _d .PdfObjectName (_fadd .String ()),_efb ; -};_bde ._bbd .Discard (3);_aea ,_efb :=_fc .DecodeString (string (_cgb [1:3]));if _efb !=nil {return _d .PdfObjectName (_fadd .String ()),_efb ;};_fadd .Write (_aea );}else {_bga ,_ :=_bde ._bbd .ReadByte ();_fadd .WriteByte (_bga );};};};return _d .PdfObjectName (_fadd .String ()),nil ; -};var _fe =_fa .MustCompile ("\u0025\u0025\u0045O\u0046");func _bgf (_aad string )(_d .PdfObjectReference ,error ){_aeb :=_d .PdfObjectReference {};_fdc :=_age .FindStringSubmatch (_aad );if len (_fdc )< 3{_ed .Log .Debug ("\u0045\u0072\u0072or\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065"); -return _aeb ,_e .New ("\u0075n\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0070\u0061r\u0073e\u0020r\u0065\u0066\u0065\u0072\u0065\u006e\u0063e");};_cfdc ,_cbc :=_ec .Atoi (_fdc [1]);if _cbc !=nil {_ed .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070a\u0072\u0073\u0069n\u0067\u0020\u006fb\u006a\u0065c\u0074\u0020\u006e\u0075\u006d\u0062e\u0072 '\u0025\u0073\u0027\u0020\u002d\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u0075\u006d\u0020\u003d\u0020\u0030",_fdc [1]); -return _aeb ,nil ;};_aeb .ObjectNumber =int64 (_cfdc );_fccb ,_cbc :=_ec .Atoi (_fdc [2]);if _cbc !=nil {_ed .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0070\u0061r\u0073\u0069\u006e\u0067\u0020g\u0065\u006e\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0027\u0025\u0073\u0027\u0020\u002d\u0020\u0055\u0073\u0069\u006e\u0067\u0020\u0067\u0065\u006e\u0020\u003d\u0020\u0030",_fdc [2]); -return _aeb ,nil ;};_aeb .GenerationNumber =int64 (_fccb );return _aeb ,nil ;};func (_ggfd *fdfParser )parseIndirectObject ()(_d .PdfObject ,error ){_cfc :=_d .PdfIndirectObject {};_ed .Log .Trace ("\u002dR\u0065a\u0064\u0020\u0069\u006e\u0064i\u0072\u0065c\u0074\u0020\u006f\u0062\u006a"); -_ebb ,_ffg :=_ggfd ._bbd .Peek (20);if _ffg !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020r\u0065a\u0064\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a"); -return &_cfc ,_ffg ;};_ed .Log .Trace ("\u0028\u0069\u006edi\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0020\u0070\u0065\u0065\u006b\u0020\u0022\u0025\u0073\u0022",string (_ebb ));_ca :=_fcc .FindStringSubmatchIndex (string (_ebb ));if len (_ca )< 6{_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_ebb )); -return &_cfc ,_e .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); -};_ggfd ._bbd .Discard (_ca [0]);_ed .Log .Trace ("O\u0066\u0066\u0073\u0065\u0074\u0073\u0020\u0025\u0020\u0064",_ca );_gcfd :=_ca [1]-_ca [0];_gdef :=make ([]byte ,_gcfd );_ ,_ffg =_ggfd .readAtLeast (_gdef ,_gcfd );if _ffg !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0061\u0062l\u0065\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020-\u0020\u0025\u0073",_ffg ); -return nil ,_ffg ;};_ed .Log .Trace ("\u0074\u0065\u0078t\u006c\u0069\u006e\u0065\u003a\u0020\u0025\u0073",_gdef );_dge :=_fcc .FindStringSubmatch (string (_gdef ));if len (_dge )< 3{_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_gdef )); -return &_cfc ,_e .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); -};_fedc ,_ :=_ec .Atoi (_dge [1]);_cdg ,_ :=_ec .Atoi (_dge [2]);_cfc .ObjectNumber =int64 (_fedc );_cfc .GenerationNumber =int64 (_cdg );for {_ega ,_gec :=_ggfd ._bbd .Peek (2);if _gec !=nil {return &_cfc ,_gec ;};_ed .Log .Trace ("I\u006ed\u002e\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_ega ),string (_ega )); -if _d .IsWhiteSpace (_ega [0]){_ggfd .skipSpaces ();}else if _ega [0]=='%'{_ggfd .skipComments ();}else if (_ega [0]=='<')&&(_ega [1]=='<'){_ed .Log .Trace ("\u0043\u0061\u006c\u006c\u0020\u0050\u0061\u0072\u0073e\u0044\u0069\u0063\u0074");_cfc .PdfObject ,_gec =_ggfd .parseDict (); -_ed .Log .Trace ("\u0045\u004f\u0046\u0020Ca\u006c\u006c\u0020\u0050\u0061\u0072\u0073\u0065\u0044\u0069\u0063\u0074\u003a\u0020%\u0076",_gec );if _gec !=nil {return &_cfc ,_gec ;};_ed .Log .Trace ("\u0050\u0061\u0072\u0073\u0065\u0064\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e.\u002e\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); -}else if (_ega [0]=='/')||(_ega [0]=='(')||(_ega [0]=='[')||(_ega [0]=='<'){_cfc .PdfObject ,_gec =_ggfd .parseObject ();if _gec !=nil {return &_cfc ,_gec ;};_ed .Log .Trace ("P\u0061\u0072\u0073\u0065\u0064\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u002e\u002e\u002e \u0066\u0069\u006ei\u0073h\u0065\u0064\u002e"); -}else {if _ega [0]=='e'{_ebc ,_dae :=_ggfd .readTextLine ();if _dae !=nil {return nil ,_dae ;};if len (_ebc )>=6&&_ebc [0:6]=="\u0065\u006e\u0064\u006f\u0062\u006a"{break ;};}else if _ega [0]=='s'{_ega ,_ =_ggfd ._bbd .Peek (10);if string (_ega [:6])=="\u0073\u0074\u0072\u0065\u0061\u006d"{_afb :=6; -if len (_ega )> 6{if _d .IsWhiteSpace (_ega [_afb ])&&_ega [_afb ]!='\r'&&_ega [_afb ]!='\n'{_ed .Log .Debug ("\u004e\u006fn\u002d\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0074\u0020\u0046\u0044\u0046\u0020\u006e\u006f\u0074 \u0065\u006e\u0064\u0069\u006e\u0067 \u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006c\u0069\u006e\u0065\u0020\u0070\u0072o\u0070\u0065r\u006c\u0079\u0020\u0077i\u0074\u0068\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072"); -_afb ++;};if _ega [_afb ]=='\r'{_afb ++;if _ega [_afb ]=='\n'{_afb ++;};}else if _ega [_afb ]=='\n'{_afb ++;};};_ggfd ._bbd .Discard (_afb );_gdbf ,_baf :=_cfc .PdfObject .(*_d .PdfObjectDictionary );if !_baf {return nil ,_e .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006di\u0073s\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_ed .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074\u0020\u0025\u0073",_gdbf );_bfd ,_ee :=_gdbf .Get ("\u004c\u0065\u006e\u0067\u0074\u0068").(*_d .PdfObjectInteger );if !_ee {return nil ,_e .New ("\u0073\u0074re\u0061\u006d\u0020l\u0065\u006e\u0067\u0074h n\u0065ed\u0073\u0020\u0074\u006f\u0020\u0062\u0065 a\u006e\u0020\u0069\u006e\u0074\u0065\u0067e\u0072"); -};_afeb :=*_bfd ;if _afeb < 0{return nil ,_e .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f \u0062e\u0020\u006c\u006f\u006e\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0030");};if int64 (_afeb )> _ggfd ._af {_ed .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0053t\u0072\u0065\u0061\u006d\u0020l\u0065\u006e\u0067\u0074\u0068\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0069\u007a\u0065"); -return nil ,_e .New ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0073t\u0072\u0065\u0061m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u002c\u0020la\u0072\u0067\u0065r\u0020\u0074h\u0061\u006e\u0020\u0066\u0069\u006ce\u0020\u0073i\u007a\u0065");};_gbe :=make ([]byte ,_afeb ); -_ ,_gec =_ggfd .readAtLeast (_gbe ,int (_afeb ));if _gec !=nil {_ed .Log .Debug ("E\u0052\u0052\u004f\u0052 s\u0074r\u0065\u0061\u006d\u0020\u0028%\u0064\u0029\u003a\u0020\u0025\u0058",len (_gbe ),_gbe );_ed .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gec ); -return nil ,_gec ;};_bacc :=_d .PdfObjectStream {};_bacc .Stream =_gbe ;_bacc .PdfObjectDictionary =_cfc .PdfObject .(*_d .PdfObjectDictionary );_bacc .ObjectNumber =_cfc .ObjectNumber ;_bacc .GenerationNumber =_cfc .GenerationNumber ;_ggfd .skipSpaces (); -_ggfd ._bbd .Discard (9);_ggfd .skipSpaces ();return &_bacc ,nil ;};};_cfc .PdfObject ,_gec =_ggfd .parseObject ();return &_cfc ,_gec ;};};_ed .Log .Trace ("\u0052\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0021"); -return &_cfc ,nil ;}; +// FieldValues implements interface model.FieldValueProvider. +// Returns a map of field names to values (PdfObjects). +func (fdf *Data )FieldValues ()(map[string ]_age .PdfObject ,error ){_bb ,_cce :=fdf .FieldDictionaries ();if _cce !=nil {return nil ,_cce ;};var _cb []string ;for _gbc :=range _bb {_cb =append (_cb ,_gbc );};_d .Strings (_cb );_egc :=map[string ]_age .PdfObject {}; +for _ ,_fe :=range _cb {_ede :=_bb [_fe ];_bec :=_age .TraceToDirectObject (_ede .Get ("\u0056"));_egc [_fe ]=_bec ;};return _egc ,nil ;};func (_fd *fdfParser )parseName ()(_age .PdfObjectName ,error ){var _dga _aa .Buffer ;_abb :=false ;for {_df ,_acg :=_fd ._dge .Peek (1); +if _acg ==_e .EOF {break ;};if _acg !=nil {return _age .PdfObjectName (_dga .String ()),_acg ;};if !_abb {if _df [0]=='/'{_abb =true ;_fd ._dge .ReadByte ();}else if _df [0]=='%'{_fd .readComment ();_fd .skipSpaces ();}else {_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020N\u0061\u006d\u0065\u0020\u0073\u0074\u0061\u0072\u0074\u0069\u006e\u0067\u0020w\u0069\u0074\u0068\u0020\u0025\u0073\u0020(\u0025\u0020\u0078\u0029",_df ,_df ); +return _age .PdfObjectName (_dga .String ()),_be .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_df [0]);};}else {if _age .IsWhiteSpace (_df [0]){break ;}else if (_df [0]=='/')||(_df [0]=='[')||(_df [0]=='(')||(_df [0]==']')||(_df [0]=='<')||(_df [0]=='>'){break ; +}else if _df [0]=='#'{_dcg ,_fgf :=_fd ._dge .Peek (3);if _fgf !=nil {return _age .PdfObjectName (_dga .String ()),_fgf ;};_fd ._dge .Discard (3);_daab ,_fgf :=_f .DecodeString (string (_dcg [1:3]));if _fgf !=nil {return _age .PdfObjectName (_dga .String ()),_fgf ; +};_dga .Write (_daab );}else {_dab ,_ :=_fd ._dge .ReadByte ();_dga .WriteByte (_dab );};};};return _age .PdfObjectName (_dga .String ()),nil ;}; -// LoadFromPath loads FDF form data from file path `fdfPath`. -func LoadFromPath (fdfPath string )(*Data ,error ){_ecc ,_eg :=_ff .Open (fdfPath );if _eg !=nil {return nil ,_eg ;};defer _ecc .Close ();return Load (_ecc );};func (_bbb *fdfParser )getFileOffset ()int64 {_df ,_ :=_bbb ._gc .Seek (0,_bf .SeekCurrent ); -_df -=int64 (_bbb ._bbd .Buffered ());return _df ;};func (_dda *fdfParser )parseNumber ()(_d .PdfObject ,error ){return _d .ParseNumber (_dda ._bbd )};func (_fdcc *fdfParser )seekFdfVersionTopDown ()(int ,int ,error ){_fdcc ._gc .Seek (0,_bf .SeekStart ); -_fdcc ._bbd =_b .NewReader (_fdcc ._gc );_ecee :=20;_gea :=make ([]byte ,_ecee );for {_eeag ,_deb :=_fdcc ._bbd .ReadByte ();if _deb !=nil {if _deb ==_bf .EOF {break ;}else {return 0,0,_deb ;};};if _d .IsDecimalDigit (_eeag )&&_gea [_ecee -1]=='.'&&_d .IsDecimalDigit (_gea [_ecee -2])&&_gea [_ecee -3]=='-'&&_gea [_ecee -4]=='F'&&_gea [_ecee -5]=='D'&&_gea [_ecee -6]=='P'{_gga :=int (_gea [_ecee -2]-'0'); -_dfd :=int (_eeag -'0');return _gga ,_dfd ,nil ;};_gea =append (_gea [1:_ecee ],_eeag );};return 0,0,_e .New ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};var _be =_fa .MustCompile ("\u005e\u005b\u005c+-\u002e\u005d\u002a\u0028\u005b\u0030\u002d\u0039\u002e]\u002b)\u0065[\u005c+\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d\u0039\u002e\u005d\u002b\u0029"); -func (_acg *fdfParser )skipComments ()error {if _ ,_gg :=_acg .skipSpaces ();_gg !=nil {return _gg ;};_cb :=true ;for {_ea ,_egb :=_acg ._bbd .Peek (1);if _egb !=nil {_ed .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_egb .Error ());return _egb ; -};if _cb &&_ea [0]!='%'{return nil ;};_cb =false ;if (_ea [0]!='\r')&&(_ea [0]!='\n'){_acg ._bbd .ReadByte ();}else {break ;};};return _acg .skipComments ();};func (_dgg *fdfParser )readComment ()(string ,error ){var _fgc _cf .Buffer ;_ ,_ggf :=_dgg .skipSpaces (); -if _ggf !=nil {return _fgc .String (),_ggf ;};_edg :=true ;for {_gdg ,_ge :=_dgg ._bbd .Peek (1);if _ge !=nil {_ed .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_ge .Error ());return _fgc .String (),_ge ;};if _edg &&_gdg [0]!='%'{return _fgc .String (),_e .New ("c\u006f\u006d\u006d\u0065\u006e\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0073\u0074a\u0072\u0074\u0020w\u0069t\u0068\u0020\u0025"); -};_edg =false ;if (_gdg [0]!='\r')&&(_gdg [0]!='\n'){_fd ,_ :=_dgg ._bbd .ReadByte ();_fgc .WriteByte (_fd );}else {break ;};};return _fgc .String (),nil ;};func _dgd (_cbcb string )(*fdfParser ,error ){_abg :=fdfParser {};_gfc :=[]byte (_cbcb );_bgfe :=_cf .NewReader (_gfc ); -_abg ._gc =_bgfe ;_abg ._fec =map[int64 ]_d .PdfObject {};_dag :=_b .NewReader (_bgfe );_abg ._bbd =_dag ;_abg ._af =int64 (len (_cbcb ));return &_abg ,_abg .parse ();};func (_fgg *fdfParser )seekToEOFMarker (_ead int64 )error {_bfe :=int64 (0);_gae :=int64 (1000); -for _bfe < _ead {if _ead <=(_gae +_bfe ){_gae =_ead -_bfe ;};_ ,_bbbf :=_fgg ._gc .Seek (-_bfe -_gae ,_bf .SeekEnd );if _bbbf !=nil {return _bbbf ;};_fcff :=make ([]byte ,_gae );_fgg ._gc .Read (_fcff );_ed .Log .Trace ("\u004c\u006f\u006f\u006bi\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0045\u004f\u0046 \u006da\u0072\u006b\u0065\u0072\u003a\u0020\u0022%\u0073\u0022",string (_fcff )); -_cca :=_fe .FindAllStringIndex (string (_fcff ),-1);if _cca !=nil {_bged :=_cca [len (_cca )-1];_ed .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_cca );_fgg ._gc .Seek (-_bfe -_gae +int64 (_bged [0]),_bf .SeekEnd );return nil ;};_ed .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006eg\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0021\u0020\u002d\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020s\u0065e\u006b\u0069\u006e\u0067"); -_bfe +=_gae ;};_ed .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006be\u0072 \u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e");return _e .New ("\u0045\u004f\u0046\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -}; +// Root returns the Root of the FDF document. +func (_bega *fdfParser )Root ()(*_age .PdfObjectDictionary ,error ){if _bega ._ae !=nil {if _gafc ,_acc :=_bega .trace (_bega ._ae .Get ("\u0052\u006f\u006f\u0074")).(*_age .PdfObjectDictionary );_acc {if _eae ,_afa :=_bega .trace (_gafc .Get ("\u0046\u0044\u0046")).(*_age .PdfObjectDictionary ); +_afa {return _eae ,nil ;};};};var _agb []int64 ;for _cbaa :=range _bega ._agd {_agb =append (_agb ,_cbaa );};_d .Slice (_agb ,func (_dbe ,_edb int )bool {return _agb [_dbe ]< _agb [_edb ]});for _ ,_cf :=range _agb {_bbd :=_bega ._agd [_cf ];if _cdad ,_bgaa :=_bega .trace (_bbd ).(*_age .PdfObjectDictionary ); +_bgaa {if _cbdf ,_fcda :=_bega .trace (_cdad .Get ("\u0046\u0044\u0046")).(*_age .PdfObjectDictionary );_fcda {return _cbdf ,nil ;};};};return nil ,_c .New ("\u0046\u0044\u0046\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");}; // Load loads FDF form data from `r`. -func Load (r _bf .ReadSeeker )(*Data ,error ){_ffe ,_ae :=_abe (r );if _ae !=nil {return nil ,_ae ;};_da ,_ae :=_ffe .Root ();if _ae !=nil {return nil ,_ae ;};_bfg ,_bb :=_d .GetArray (_da .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_bb {return nil ,_e .New ("\u0066\u0069\u0065\u006c\u0064\u0073\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); -};return &Data {_cg :_bfg ,_cc :_da },nil ;};func (_gaf *fdfParser )parseObject ()(_d .PdfObject ,error ){_ed .Log .Trace ("\u0052e\u0061d\u0020\u0064\u0069\u0072\u0065c\u0074\u0020o\u0062\u006a\u0065\u0063\u0074");_gaf .skipSpaces ();for {_fcf ,_add :=_gaf ._bbd .Peek (2); -if _add !=nil {return nil ,_add ;};_ed .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_fcf ));if _fcf [0]=='/'{_gde ,_faf :=_gaf .parseName ();_ed .Log .Trace ("\u002d\u003e\u004ea\u006d\u0065\u003a\u0020\u0027\u0025\u0073\u0027",_gde ); -return &_gde ,_faf ;}else if _fcf [0]=='('{_ed .Log .Trace ("\u002d>\u0053\u0074\u0072\u0069\u006e\u0067!");return _gaf .parseString ();}else if _fcf [0]=='['{_ed .Log .Trace ("\u002d\u003e\u0041\u0072\u0072\u0061\u0079\u0021");return _gaf .parseArray (); -}else if (_fcf [0]=='<')&&(_fcf [1]=='<'){_ed .Log .Trace ("\u002d>\u0044\u0069\u0063\u0074\u0021");return _gaf .parseDict ();}else if _fcf [0]=='<'{_ed .Log .Trace ("\u002d\u003e\u0048\u0065\u0078\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0021");return _gaf .parseHexString (); -}else if _fcf [0]=='%'{_gaf .readComment ();_gaf .skipSpaces ();}else {_ed .Log .Trace ("\u002d\u003eN\u0075\u006d\u0062e\u0072\u0020\u006f\u0072\u0020\u0072\u0065\u0066\u003f");_fcf ,_ =_gaf ._bbd .Peek (15);_bge :=string (_fcf );_ed .Log .Trace ("\u0050\u0065\u0065k\u0020\u0073\u0074\u0072\u003a\u0020\u0025\u0073",_bge ); -if (len (_bge )> 3)&&(_bge [:4]=="\u006e\u0075\u006c\u006c"){_aee ,_bbf :=_gaf .parseNull ();return &_aee ,_bbf ;}else if (len (_bge )> 4)&&(_bge [:5]=="\u0066\u0061\u006cs\u0065"){_def ,_gebf :=_gaf .parseBool ();return &_def ,_gebf ;}else if (len (_bge )> 3)&&(_bge [:4]=="\u0074\u0072\u0075\u0065"){_ecg ,_cde :=_gaf .parseBool (); -return &_ecg ,_cde ;};_ce :=_age .FindStringSubmatch (_bge );if len (_ce )> 1{_fcf ,_ =_gaf ._bbd .ReadBytes ('R');_ed .Log .Trace ("\u002d\u003e\u0020\u0021\u0052\u0065\u0066\u003a\u0020\u0027\u0025\u0073\u0027",string (_fcf [:]));_agc ,_gebb :=_bgf (string (_fcf )); -return &_agc ,_gebb ;};_ceg :=_cfd .FindStringSubmatch (_bge );if len (_ceg )> 1{_ed .Log .Trace ("\u002d\u003e\u0020\u004e\u0075\u006d\u0062\u0065\u0072\u0021");return _gaf .parseNumber ();};_ceg =_be .FindStringSubmatch (_bge );if len (_ceg )> 1{_ed .Log .Trace ("\u002d\u003e\u0020\u0045xp\u006f\u006e\u0065\u006e\u0074\u0069\u0061\u006c\u0020\u004e\u0075\u006d\u0062\u0065r\u0021"); -_ed .Log .Trace ("\u0025\u0020\u0073",_ceg );return _gaf .parseNumber ();};_ed .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020U\u006e\u006b\u006e\u006f\u0077n\u0020(\u0070e\u0065\u006b\u0020\u0022\u0025\u0073\u0022)",_bge );return nil ,_e .New ("\u006f\u0062\u006a\u0065\u0063t\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006fr\u0020\u002d\u0020\u0075\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e"); -};};}; +func Load (r _e .ReadSeeker )(*Data ,error ){_ea ,_cc :=_bed (r );if _cc !=nil {return nil ,_cc ;};_ab ,_cc :=_ea .Root ();if _cc !=nil {return nil ,_cc ;};_abe ,_gb :=_age .GetArray (_ab .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_gb {return nil ,_c .New ("\u0066\u0069\u0065\u006c\u0064\u0073\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); +};return &Data {_ed :_abe ,_cda :_ab },nil ;};var _gg =_b .MustCompile ("\u005e\u005b\u005c+-\u002e\u005d\u002a\u0028\u005b\u0030\u002d\u0039\u002e]\u002b)\u0065[\u005c+\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d\u0039\u002e\u005d\u002b\u0029");func (_gfb *fdfParser )parseHexString ()(*_age .PdfObjectString ,error ){_gfb ._dge .ReadByte (); +var _cdec _aa .Buffer ;for {_afg ,_ded :=_gfb ._dge .Peek (1);if _ded !=nil {return _age .MakeHexString (""),_ded ;};if _afg [0]=='>'{_gfb ._dge .ReadByte ();break ;};_bdf ,_ :=_gfb ._dge .ReadByte ();if !_age .IsWhiteSpace (_bdf ){_cdec .WriteByte (_bdf ); +};};if _cdec .Len ()%2==1{_cdec .WriteRune ('0');};_dae ,_bac :=_f .DecodeString (_cdec .String ());if _bac !=nil {_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0068\u0065\u0078\u0020\u0073\u0074r\u0069\u006e\u0067\u003a\u0020\u0027\u0025\u0073\u0027 \u002d\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0061n\u0020\u0065\u006d\u0070\u0074\u0079 \u0073\u0074\u0072i\u006e\u0067",_cdec .String ()); +return _age .MakeHexString (""),nil ;};return _age .MakeHexString (string (_dae )),nil ;};func (_bbf *fdfParser )parseString ()(*_age .PdfObjectString ,error ){_bbf ._dge .ReadByte ();var _ead _aa .Buffer ;_ceg :=1;for {_agc ,_gf :=_bbf ._dge .Peek (1); +if _gf !=nil {return _age .MakeString (_ead .String ()),_gf ;};if _agc [0]=='\\'{_bbf ._dge .ReadByte ();_adgd ,_acd :=_bbf ._dge .ReadByte ();if _acd !=nil {return _age .MakeString (_ead .String ()),_acd ;};if _age .IsOctalDigit (_adgd ){_gge ,_bga :=_bbf ._dge .Peek (2); +if _bga !=nil {return _age .MakeString (_ead .String ()),_bga ;};var _af []byte ;_af =append (_af ,_adgd );for _ ,_eca :=range _gge {if _age .IsOctalDigit (_eca ){_af =append (_af ,_eca );}else {break ;};};_bbf ._dge .Discard (len (_af )-1);_cd .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_af ); +_ffb ,_bga :=_ag .ParseUint (string (_af ),8,32);if _bga !=nil {return _age .MakeString (_ead .String ()),_bga ;};_ead .WriteByte (byte (_ffb ));continue ;};switch _adgd {case 'n':_ead .WriteRune ('\n');case 'r':_ead .WriteRune ('\r');case 't':_ead .WriteRune ('\t'); +case 'b':_ead .WriteRune ('\b');case 'f':_ead .WriteRune ('\f');case '(':_ead .WriteRune ('(');case ')':_ead .WriteRune (')');case '\\':_ead .WriteRune ('\\');};continue ;}else if _agc [0]=='('{_ceg ++;}else if _agc [0]==')'{_ceg --;if _ceg ==0{_bbf ._dge .ReadByte (); +break ;};};_ccd ,_ :=_bbf ._dge .ReadByte ();_ead .WriteByte (_ccd );};return _age .MakeString (_ead .String ()),nil ;}; -// FieldValues implements interface model.FieldValueProvider. -// Returns a map of field names to values (PdfObjects). -func (fdf *Data )FieldValues ()(map[string ]_d .PdfObject ,error ){_cgd ,_adc :=fdf .FieldDictionaries ();if _adc !=nil {return nil ,_adc ;};var _gf []string ;for _ac :=range _cgd {_gf =append (_gf ,_ac );};_ef .Strings (_gf );_cdb :=map[string ]_d .PdfObject {}; -for _ ,_aga :=range _gf {_ba :=_cgd [_aga ];_fgd :=_d .TraceToDirectObject (_ba .Get ("\u0056"));_cdb [_aga ]=_fgd ;};return _cdb ,nil ;};func (_agg *fdfParser )parse ()error {_agg ._gc .Seek (0,_bf .SeekStart );_agg ._bbd =_b .NewReader (_agg ._gc );for {_agg .skipComments (); -_bbga ,_adf :=_agg ._bbd .Peek (20);if _adf !=nil {_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020r\u0065a\u0064\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a"); -return _adf ;};if _c .HasPrefix (string (_bbga ),"\u0074r\u0061\u0069\u006c\u0065\u0072"){_agg ._bbd .Discard (7);_agg .skipSpaces ();_agg .skipComments ();_eea ,_ :=_agg .parseDict ();_agg ._gfb =_eea ;break ;};_acgf :=_fcc .FindStringSubmatchIndex (string (_bbga )); -if len (_acgf )< 6{_ed .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_bbga )); -return _e .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); -};_ddg ,_adf :=_agg .parseIndirectObject ();if _adf !=nil {return _adf ;};switch _gda :=_ddg .(type ){case *_d .PdfIndirectObject :_agg ._fec [_gda .ObjectNumber ]=_gda ;case *_d .PdfObjectStream :_agg ._fec [_gda .ObjectNumber ]=_gda ;default:return _e .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};};return nil ;};var _age =_fa .MustCompile ("^\u005c\u0073\u002a\u0028\\d\u002b)\u005c\u0073\u002b\u0028\u005cd\u002b\u0029\u005c\u0073\u002b\u0052");var _fcc =_fa .MustCompile ("\u0028\u005c\u0064\u002b)\\\u0073\u002b\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u006f\u0062\u006a"); -var _gd =_fa .MustCompile ("\u0025F\u0044F\u002d\u0028\u005c\u0064\u0029\u005c\u002e\u0028\u005c\u0064\u0029"); \ No newline at end of file +// Data represents forms data format (FDF) file data. +type Data struct{_cda *_age .PdfObjectDictionary ;_ed *_age .PdfObjectArray ;};func (_deb *fdfParser )skipComments ()error {if _ ,_eba :=_deb .skipSpaces ();_eba !=nil {return _eba ;};_ff :=true ;for {_egd ,_bg :=_deb ._dge .Peek (1);if _bg !=nil {_cd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_bg .Error ()); +return _bg ;};if _ff &&_egd [0]!='%'{return nil ;};_ff =false ;if (_egd [0]!='\r')&&(_egd [0]!='\n'){_deb ._dge .ReadByte ();}else {break ;};};return _deb .skipComments ();};func (_gag *fdfParser )setFileOffset (_ge int64 ){_gag ._gaf .Seek (_ge ,_e .SeekStart ); +_gag ._dge =_ca .NewReader (_gag ._gaf );};var _bd =_b .MustCompile ("\u005e\u005b\u005c\u002b\u002d\u002e\u005d\u002a\u0028\u005b\u0030\u002d9\u002e\u005d\u002b\u0029");var _eed =_b .MustCompile ("\u0028\u005c\u0064\u002b)\\\u0073\u002b\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002b\u006f\u0062\u006a"); +func (_bcf *fdfParser )parseDict ()(*_age .PdfObjectDictionary ,error ){_cd .Log .Trace ("\u0052\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0046\u0044\u0046\u0020D\u0069\u0063\u0074\u0021");_fgg :=_age .MakeDict ();_ecc ,_ :=_bcf ._dge .ReadByte ();if _ecc !='<'{return nil ,_c .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); +};_ecc ,_ =_bcf ._dge .ReadByte ();if _ecc !='<'{return nil ,_c .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074");};for {_bcf .skipSpaces ();_bcf .skipComments ();_fa ,_gdgb :=_bcf ._dge .Peek (2);if _gdgb !=nil {return nil ,_gdgb ; +};_cd .Log .Trace ("D\u0069c\u0074\u0020\u0070\u0065\u0065\u006b\u003a\u0020%\u0073\u0020\u0028\u0025 x\u0029\u0021",string (_fa ),string (_fa ));if (_fa [0]=='>')&&(_fa [1]=='>'){_cd .Log .Trace ("\u0045\u004f\u0046\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +_bcf ._dge .ReadByte ();_bcf ._dge .ReadByte ();break ;};_cd .Log .Trace ("\u0050a\u0072s\u0065\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0021");_dec ,_gdgb :=_bcf .parseName ();_cd .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_dec ); +if _gdgb !=nil {_cd .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0052e\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006ea\u006d\u0065\u0020e\u0072r\u0020\u0025\u0073",_gdgb );return nil ,_gdgb ;};if len (_dec )> 4&&_dec [len (_dec )-4:]=="\u006e\u0075\u006c\u006c"{_cadb :=_dec [0:len (_dec )-4]; +_cd .Log .Debug ("\u0054\u0061\u006b\u0069n\u0067\u0020\u0063\u0061\u0072\u0065\u0020\u006f\u0066\u0020n\u0075l\u006c\u0020\u0062\u0075\u0067\u0020\u0028%\u0073\u0029",_dec );_cd .Log .Debug ("\u004e\u0065\u0077\u0020ke\u0079\u0020\u0022\u0025\u0073\u0022\u0020\u003d\u0020\u006e\u0075\u006c\u006c",_cadb ); +_bcf .skipSpaces ();_dfa ,_ :=_bcf ._dge .Peek (1);if _dfa [0]=='/'{_fgg .Set (_cadb ,_age .MakeNull ());continue ;};};_bcf .skipSpaces ();_egf ,_gdgb :=_bcf .parseObject ();if _gdgb !=nil {return nil ,_gdgb ;};_fgg .Set (_dec ,_egf );_cd .Log .Trace ("\u0064\u0069\u0063\u0074\u005b\u0025\u0073\u005d\u0020\u003d\u0020\u0025\u0073",_dec ,_egf .String ()); +};_cd .Log .Trace ("\u0072\u0065\u0074\u0075rn\u0069\u006e\u0067\u0020\u0046\u0044\u0046\u0020\u0044\u0069\u0063\u0074\u0021");return _fgg ,nil ;};func (_cgd *fdfParser )seekToEOFMarker (_ffg int64 )error {_fga :=int64 (0);_dee :=int64 (1000);for _fga < _ffg {if _ffg <=(_dee +_fga ){_dee =_ffg -_fga ; +};_ ,_ccdd :=_cgd ._gaf .Seek (-_fga -_dee ,_e .SeekEnd );if _ccdd !=nil {return _ccdd ;};_edef :=make ([]byte ,_dee );_cgd ._gaf .Read (_edef );_cd .Log .Trace ("\u004c\u006f\u006f\u006bi\u006e\u0067\u0020\u0066\u006f\u0072\u0020\u0045\u004f\u0046 \u006da\u0072\u006b\u0065\u0072\u003a\u0020\u0022%\u0073\u0022",string (_edef )); +_fdg :=_bc .FindAllStringIndex (string (_edef ),-1);if _fdg !=nil {_dfaf :=_fdg [len (_fdg )-1];_cd .Log .Trace ("\u0049\u006e\u0064\u003a\u0020\u0025\u0020\u0064",_fdg );_cgd ._gaf .Seek (-_fga -_dee +int64 (_dfaf [0]),_e .SeekEnd );return nil ;};_cd .Log .Debug ("\u0057\u0061\u0072\u006e\u0069\u006eg\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0021\u0020\u002d\u0020\u0063\u006f\u006e\u0074\u0069\u006e\u0075\u0065\u0020s\u0065e\u006b\u0069\u006e\u0067"); +_fga +=_dee ;};_cd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0045\u004f\u0046\u0020\u006d\u0061\u0072\u006be\u0072 \u0077\u0061\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e");return _c .New ("\u0045\u004f\u0046\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +};var _gaa =_b .MustCompile ("^\u005c\u0073\u002a\u0028\\d\u002b)\u005c\u0073\u002b\u0028\u005cd\u002b\u0029\u005c\u0073\u002b\u0052");func (_ccf *fdfParser )getFileOffset ()int64 {_de ,_ :=_ccf ._gaf .Seek (0,_e .SeekCurrent );_de -=int64 (_ccf ._dge .Buffered ()); +return _de ;};func (_acb *fdfParser )parse ()error {_acb ._gaf .Seek (0,_e .SeekStart );_acb ._dge =_ca .NewReader (_acb ._gaf );for {_acb .skipComments ();_fdga ,_ccb :=_acb ._dge .Peek (20);if _ccb !=nil {_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f\u0020r\u0065a\u0064\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a"); +return _ccb ;};if _a .HasPrefix (string (_fdga ),"\u0074r\u0061\u0069\u006c\u0065\u0072"){_acb ._dge .Discard (7);_acb .skipSpaces ();_acb .skipComments ();_fdeb ,_ :=_acb .parseDict ();_acb ._ae =_fdeb ;break ;};_bfc :=_eed .FindStringSubmatchIndex (string (_fdga )); +if len (_bfc )< 6{_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0061\u0062l\u0065\u0020\u0074\u006f \u0066\u0069\u006e\u0064\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",string (_fdga )); +return _c .New ("\u0075\u006e\u0061b\u006c\u0065\u0020\u0074\u006f\u0020\u0064\u0065\u0074\u0065\u0063\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065"); +};_eecc ,_ccb :=_acb .parseIndirectObject ();if _ccb !=nil {return _ccb ;};switch _aecd :=_eecc .(type ){case *_age .PdfIndirectObject :_acb ._agd [_aecd .ObjectNumber ]=_aecd ;case *_age .PdfObjectStream :_acb ._agd [_aecd .ObjectNumber ]=_aecd ;default:return _c .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};};return nil ;};func (_fg *fdfParser )readComment ()(string ,error ){var _aaa _aa .Buffer ;_ ,_bdg :=_fg .skipSpaces ();if _bdg !=nil {return _aaa .String (),_bdg ;};_bad :=true ;for {_cgf ,_beb :=_fg ._dge .Peek (1);if _beb !=nil {_cd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_beb .Error ()); +return _aaa .String (),_beb ;};if _bad &&_cgf [0]!='%'{return _aaa .String (),_c .New ("c\u006f\u006d\u006d\u0065\u006e\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0073\u0074a\u0072\u0074\u0020w\u0069t\u0068\u0020\u0025");};_bad =false ;if (_cgf [0]!='\r')&&(_cgf [0]!='\n'){_caf ,_ :=_fg ._dge .ReadByte (); +_aaa .WriteByte (_caf );}else {break ;};};return _aaa .String (),nil ;};func (_fcb *fdfParser )readAtLeast (_ad []byte ,_aga int )(int ,error ){_ce :=_aga ;_cg :=0;_adf :=0;for _ce > 0{_egb ,_cgb :=_fcb ._dge .Read (_ad [_cg :]);if _cgb !=nil {_cd .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0046\u0061i\u006c\u0065\u0064\u0020\u0072\u0065\u0061d\u0069\u006e\u0067\u0020\u0028\u0025\u0064\u003b\u0025\u0064\u0029\u0020\u0025\u0073",_egb ,_adf ,_cgb .Error ()); +return _cg ,_c .New ("\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065a\u0064\u0069\u006e\u0067");};_adf ++;_cg +=_egb ;_ce -=_egb ;};return _cg ,nil ;};func _cee (_ffbb string )(*fdfParser ,error ){_fdf :=fdfParser {};_bdgd :=[]byte (_ffbb );_bce :=_aa .NewReader (_bdgd ); +_fdf ._gaf =_bce ;_fdf ._agd =map[int64 ]_age .PdfObject {};_decd :=_ca .NewReader (_bce );_fdf ._dge =_decd ;_fdf ._cbb =int64 (len (_ffbb ));return &_fdf ,_fdf .parse ();};func (_dd *fdfParser )parseNull ()(_age .PdfObjectNull ,error ){_ ,_bf :=_dd ._dge .Discard (4); +return _age .PdfObjectNull {},_bf ;};func (_beg *fdfParser )parseNumber ()(_age .PdfObject ,error ){return _age .ParseNumber (_beg ._dge )};func (_bfb *fdfParser )parseFdfVersion ()(int ,int ,error ){_bfb ._gaf .Seek (0,_e .SeekStart );_aca :=20;_fb :=make ([]byte ,_aca ); +_bfb ._gaf .Read (_fb );_aef :=_dc .FindStringSubmatch (string (_fb ));if len (_aef )< 3{_ebcf ,_fde ,_dag :=_bfb .seekFdfVersionTopDown ();if _dag !=nil {_cd .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0072\u0065\u0063\u006f\u0076\u0065\u0072\u0079\u0020\u002d\u0020\u0075n\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0066\u0069nd\u0020\u0076\u0065r\u0073i\u006f\u006e"); +return 0,0,_dag ;};return _ebcf ,_fde ,nil ;};_gc ,_edg :=_ag .Atoi (_aef [1]);if _edg !=nil {return 0,0,_edg ;};_becc ,_edg :=_ag .Atoi (_aef [2]);if _edg !=nil {return 0,0,_edg ;};_cd .Log .Debug ("\u0046\u0064\u0066\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020%\u0064\u002e\u0025\u0064",_gc ,_becc ); +return _gc ,_becc ,nil ;}; + +// FieldDictionaries returns a map of field names to field dictionaries. +func (fdf *Data )FieldDictionaries ()(map[string ]*_age .PdfObjectDictionary ,error ){_fc :=map[string ]*_age .PdfObjectDictionary {};for _fcc :=0;_fcc < fdf ._ed .Len ();_fcc ++{_cad ,_dg :=_age .GetDict (fdf ._ed .Get (_fcc ));if _dg {_ee ,_ :=_age .GetString (_cad .Get ("\u0054")); +if _ee !=nil {_fc [_ee .Str ()]=_cad ;};};};return _fc ,nil ;};type fdfParser struct{_cef int ;_db int ;_agd map[int64 ]_age .PdfObject ;_gaf _e .ReadSeeker ;_dge *_ca .Reader ;_cbb int64 ;_ae *_age .PdfObjectDictionary ;};func _bed (_bfe _e .ReadSeeker )(*fdfParser ,error ){_feb :=&fdfParser {}; +_feb ._gaf =_bfe ;_feb ._agd =map[int64 ]_age .PdfObject {};_caga ,_bcd ,_fbb :=_feb .parseFdfVersion ();if _fbb !=nil {_cd .Log .Error ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0076e\u0072\u0073\u0069o\u006e:\u0020\u0025\u0076",_fbb ); +return nil ,_fbb ;};_feb ._cef =_caga ;_feb ._db =_bcd ;_fbb =_feb .parse ();return _feb ,_fbb ;};var _dc =_b .MustCompile ("\u0025F\u0044F\u002d\u0028\u005c\u0064\u0029\u005c\u002e\u0028\u005c\u0064\u0029"); \ No newline at end of file diff --git a/fjson/fjson.go b/fjson/fjson.go index 340604ed2..7e359bfc6 100644 --- a/fjson/fjson.go +++ b/fjson/fjson.go @@ -10,43 +10,43 @@ // terms that can be accessed at https://unidoc.io/eula/ // Package fjson provides support for loading PDF form field data from JSON data/files. -package fjson ;import (_b "encoding/json";_f "github.com/unidoc/unipdf/v3/common";_eg "github.com/unidoc/unipdf/v3/core";_df "github.com/unidoc/unipdf/v3/model";_d "io";_e "os";);type fieldValue struct{Name string `json:"name"`;Value string `json:"value"`; -ImageValue *_df .Image `json:"-"`; +package fjson ;import (_f "encoding/json";_c "github.com/unidoc/unipdf/v3/common";_b "github.com/unidoc/unipdf/v3/core";_ge "github.com/unidoc/unipdf/v3/model";_gc "io";_e "os";); -// Options lists allowed values if present. -Options []string `json:"options,omitempty"`;}; +// JSON returns the field data as a string in JSON format. +func (_ab FieldData )JSON ()(string ,error ){_dcg ,_gcf :=_f .MarshalIndent (_ab ._fg ,"","\u0020\u0020\u0020\u0020");return string (_dcg ),_gcf ;}; // FieldValues implements model.FieldValueProvider interface. -func (_fd *FieldData )FieldValues ()(map[string ]_eg .PdfObject ,error ){_bd :=make (map[string ]_eg .PdfObject );for _ ,_bdc :=range _fd ._fc {if len (_bdc .Value )> 0{_bd [_bdc .Name ]=_eg .MakeString (_bdc .Value );};};return _bd ,nil ;}; +func (_gcca *FieldData )FieldValues ()(map[string ]_b .PdfObject ,error ){_ac :=make (map[string ]_b .PdfObject );for _ ,_dbd :=range _gcca ._fg {if len (_dbd .Value )> 0{_ac [_dbd .Name ]=_b .MakeString (_dbd .Value );};};return _ac ,nil ;}; // LoadFromPDFFile loads form field data from a PDF file. -func LoadFromPDFFile (filePath string )(*FieldData ,error ){_eag ,_bcd :=_e .Open (filePath );if _bcd !=nil {return nil ,_bcd ;};defer _eag .Close ();return LoadFromPDF (_eag );}; +func LoadFromPDFFile (filePath string )(*FieldData ,error ){_edd ,_ffgd :=_e .Open (filePath );if _ffgd !=nil {return nil ,_ffgd ;};defer _edd .Close ();return LoadFromPDF (_edd );}; -// SetImage assign model.Image to a specific field identified by fieldName. -func (_dgf *FieldData )SetImage (fieldName string ,img *_df .Image ,opt []string )error {_dfbg :=fieldValue {Name :fieldName ,ImageValue :img ,Options :opt };_dgf ._fc =append (_dgf ._fc ,_dfbg );return nil ;}; +// LoadFromJSON loads JSON form data from `r`. +func LoadFromJSON (r _gc .Reader )(*FieldData ,error ){var _d FieldData ;_ba :=_f .NewDecoder (r ).Decode (&_d ._fg );if _ba !=nil {return nil ,_ba ;};return &_d ,nil ;};type fieldValue struct{Name string `json:"name"`;Value string `json:"value"`;ImageValue *_ge .Image `json:"-"`; -// FieldData represents form field data loaded from JSON file. -type FieldData struct{_fc []fieldValue }; -// JSON returns the field data as a string in JSON format. -func (_abf FieldData )JSON ()(string ,error ){_dg ,_dfb :=_b .MarshalIndent (_abf ._fc ,"","\u0020\u0020\u0020\u0020");return string (_dg ),_dfb ;}; +// Options lists allowed values if present. +Options []string `json:"options,omitempty"`;}; // SetImageFromFile assign image file to a specific field identified by fieldName. -func (_ec *FieldData )SetImageFromFile (fieldName string ,imagePath string ,opt []string )error {_eee ,_daa :=_e .Open (imagePath );if _daa !=nil {return _daa ;};defer _eee .Close ();_fgd ,_daa :=_df .ImageHandling .Read (_eee );if _daa !=nil {_f .Log .Error ("\u0045\u0072\u0072or\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_daa ); -return _daa ;};return _ec .SetImage (fieldName ,_fgd ,opt );}; +func (_edc *FieldData )SetImageFromFile (fieldName string ,imagePath string ,opt []string )error {_gba ,_gbb :=_e .Open (imagePath );if _gbb !=nil {return _gbb ;};defer _gba .Close ();_ebgb ,_gbb :=_ge .ImageHandling .Read (_gba );if _gbb !=nil {_c .Log .Error ("\u0045\u0072\u0072or\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_gbb ); +return _gbb ;};return _edc .SetImage (fieldName ,_ebgb ,opt );}; -// FieldImageValues implements model.FieldImageProvider interface. -func (_da *FieldData )FieldImageValues ()(map[string ]*_df .Image ,error ){_dd :=make (map[string ]*_df .Image );for _ ,_dgd :=range _da ._fc {if _dgd .ImageValue !=nil {_dd [_dgd .Name ]=_dgd .ImageValue ;};};return _dd ,nil ;}; +// LoadFromPDF loads form field data from a PDF. +func LoadFromPDF (rs _gc .ReadSeeker )(*FieldData ,error ){_ed ,_a :=_ge .NewPdfReader (rs );if _a !=nil {return nil ,_a ;};if _ed .AcroForm ==nil {return nil ,nil ;};var _bb []fieldValue ;_cb :=_ed .AcroForm .AllFields ();for _ ,_db :=range _cb {var _gf []string ; +_cdd :=make (map[string ]struct{});_ff ,_bf :=_db .FullName ();if _bf !=nil {return nil ,_bf ;};if _da ,_gee :=_db .V .(*_b .PdfObjectString );_gee {_bb =append (_bb ,fieldValue {Name :_ff ,Value :_da .Decoded ()});continue ;};var _fc string ;for _ ,_gce :=range _db .Annotations {_bab ,_ebd :=_b .GetName (_gce .AS ); +if _ebd {_fc =_bab .String ();};_df ,_ffg :=_b .GetDict (_gce .AP );if !_ffg {continue ;};_fe ,_ :=_b .GetDict (_df .Get ("\u004e"));for _ ,_gg :=range _fe .Keys (){_ggg :=_gg .String ();if _ ,_eac :=_cdd [_ggg ];!_eac {_gf =append (_gf ,_ggg );_cdd [_ggg ]=struct{}{}; +};};_cg ,_ :=_b .GetDict (_df .Get ("\u0044"));for _ ,_eab :=range _cg .Keys (){_ebg :=_eab .String ();if _ ,_cc :=_cdd [_ebg ];!_cc {_gf =append (_gf ,_ebg );_cdd [_ebg ]=struct{}{};};};};_gcc :=fieldValue {Name :_ff ,Value :_fc ,Options :_gf };_bb =append (_bb ,_gcc ); +};_be :=FieldData {_fg :_bb };return &_be ,nil ;}; -// LoadFromJSONFile loads form field data from a JSON file. -func LoadFromJSONFile (filePath string )(*FieldData ,error ){_fce ,_ba :=_e .Open (filePath );if _ba !=nil {return nil ,_ba ;};defer _fce .Close ();return LoadFromJSON (_fce );}; +// FieldData represents form field data loaded from JSON file. +type FieldData struct{_fg []fieldValue }; -// LoadFromJSON loads JSON form data from `r`. -func LoadFromJSON (r _d .Reader )(*FieldData ,error ){var _bb FieldData ;_c :=_b .NewDecoder (r ).Decode (&_bb ._fc );if _c !=nil {return nil ,_c ;};return &_bb ,nil ;}; +// SetImage assign model.Image to a specific field identified by fieldName. +func (_gga *FieldData )SetImage (fieldName string ,img *_ge .Image ,opt []string )error {_aba :=fieldValue {Name :fieldName ,ImageValue :img ,Options :opt };_gga ._fg =append (_gga ._fg ,_aba );return nil ;}; -// LoadFromPDF loads form field data from a PDF. -func LoadFromPDF (rs _d .ReadSeeker )(*FieldData ,error ){_a ,_ae :=_df .NewPdfReader (rs );if _ae !=nil {return nil ,_ae ;};if _a .AcroForm ==nil {return nil ,nil ;};var _bf []fieldValue ;_ega :=_a .AcroForm .AllFields ();for _ ,_fe :=range _ega {var _bc []string ; -_ab :=make (map[string ]struct{});_db ,_egd :=_fe .FullName ();if _egd !=nil {return nil ,_egd ;};if _cb ,_aeb :=_fe .V .(*_eg .PdfObjectString );_aeb {_bf =append (_bf ,fieldValue {Name :_db ,Value :_cb .Decoded ()});continue ;};var _de string ;for _ ,_gd :=range _fe .Annotations {_bab ,_ag :=_eg .GetName (_gd .AS ); -if _ag {_de =_bab .String ();};_cc ,_ff :=_eg .GetDict (_gd .AP );if !_ff {continue ;};_aa ,_ :=_eg .GetDict (_cc .Get ("\u004e"));for _ ,_ea :=range _aa .Keys (){_aed :=_ea .String ();if _ ,_fg :=_ab [_aed ];!_fg {_bc =append (_bc ,_aed );_ab [_aed ]=struct{}{}; -};};_ad ,_ :=_eg .GetDict (_cc .Get ("\u0044"));for _ ,_fa :=range _ad .Keys (){_adb :=_fa .String ();if _ ,_cff :=_ab [_adb ];!_cff {_bc =append (_bc ,_adb );_ab [_adb ]=struct{}{};};};};_gb :=fieldValue {Name :_db ,Value :_de ,Options :_bc };_bf =append (_bf ,_gb ); -};_aad :=FieldData {_fc :_bf };return &_aad ,nil ;}; \ No newline at end of file +// LoadFromJSONFile loads form field data from a JSON file. +func LoadFromJSONFile (filePath string )(*FieldData ,error ){_eb ,_ea :=_e .Open (filePath );if _ea !=nil {return nil ,_ea ;};defer _eb .Close ();return LoadFromJSON (_eb );}; + +// FieldImageValues implements model.FieldImageProvider interface. +func (_gb *FieldData )FieldImageValues ()(map[string ]*_ge .Image ,error ){_fab :=make (map[string ]*_ge .Image );for _ ,_ga :=range _gb ._fg {if _ga .ImageValue !=nil {_fab [_ga .Name ]=_ga .ImageValue ;};};return _fab ,nil ;}; \ No newline at end of file diff --git a/go.mod b/go.mod index 3c4d4bd15..8e2593a5a 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/unidoc/timestamp v0.0.0-20200412005513-91597fd3793a github.com/unidoc/unichart v0.1.0 github.com/unidoc/unitype v0.2.1 - golang.org/x/crypto v0.14.0 + golang.org/x/crypto v0.17.0 golang.org/x/image v0.14.0 golang.org/x/net v0.17.0 golang.org/x/text v0.14.0 @@ -28,6 +28,6 @@ require ( github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/sirupsen/logrus v1.5.0 // indirect - golang.org/x/sys v0.13.0 // indirect + golang.org/x/sys v0.15.0 // indirect gopkg.in/yaml.v3 v3.0.0 // indirect ) diff --git a/go.sum b/go.sum index 2b64b3752..006927e95 100644 --- a/go.sum +++ b/go.sum @@ -32,10 +32,6 @@ github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMT github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/trimmer-io/go-xmp v1.0.0 h1:zY8bolSga5kOjBAaHS6hrdxLgEoYuT875xTy0QDwZWs= github.com/trimmer-io/go-xmp v1.0.0/go.mod h1:Aaptr9sp1lLv7UnCAdQ+gSHZyY2miYaKmcNVj7HRBwA= -github.com/unidoc/freetype v0.2.2 h1:YamDW1CN1RKQij02JKEk44h2jzholJM72cZdsK6URh4= -github.com/unidoc/freetype v0.2.2/go.mod h1:mJ/Q7JnqEoWtajJVrV6S1InbRv0K/fJerPB5SQs32KI= -github.com/unidoc/freetype v0.2.3-0.20231205120720-a3f6ed28b644 h1:zQSHSxGLqt8f3zRnSq8v4gI3CW69/qmYSoDZ1vB56CE= -github.com/unidoc/freetype v0.2.3-0.20231205120720-a3f6ed28b644/go.mod h1:mJ/Q7JnqEoWtajJVrV6S1InbRv0K/fJerPB5SQs32KI= github.com/unidoc/freetype v0.2.3 h1:uPqW+AY0vXN6K2tvtg8dMAtHTEvvHTN52b72XpZU+3I= github.com/unidoc/freetype v0.2.3/go.mod h1:mJ/Q7JnqEoWtajJVrV6S1InbRv0K/fJerPB5SQs32KI= github.com/unidoc/garabic v0.0.0-20220702200334-8c7cb25baa11 h1:kExUKrbi429KdVVuAc85z4P+W/Rk4bjGWB5KzZLl/l8= @@ -52,8 +48,9 @@ github.com/unidoc/unitype v0.2.1/go.mod h1:mafyug7zYmDOusqa7G0dJV45qp4b6TDAN+pHN github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= +golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= +golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/image v0.14.0 h1:tNgSxAFe3jC4uYqvZdTr84SZoM1KfwdC9SKIFrLjFn4= golang.org/x/image v0.14.0/go.mod h1:HUYqC05R2ZcZ3ejNQsIHQDQiwWM4JBqmm6MKANTp4LE= @@ -78,13 +75,15 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= +golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= diff --git a/internal/bitwise/bitwise.go b/internal/bitwise/bitwise.go index 2148d0f37..72627010c 100644 --- a/internal/bitwise/bitwise.go +++ b/internal/bitwise/bitwise.go @@ -9,58 +9,56 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package bitwise ;import (_b "encoding/binary";_a "errors";_ea "fmt";_d "github.com/unidoc/unipdf/v3/common";_g "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_eb "io";);func (_ccb *BufferedWriter )grow (_ca int ){if _ccb ._c ==nil &&_ca < _ed {_ccb ._c =make ([]byte ,_ca ,_ed ); -return ;};_db :=len (_ccb ._c );if _ccb ._da !=0{_db ++;};_af :=cap (_ccb ._c );switch {case _ca <=_af /2-_db :_d .Log .Trace ("\u005b\u0042\u0075\u0066\u0066\u0065r\u0065\u0064\u0057\u0072\u0069t\u0065\u0072\u005d\u0020\u0067\u0072o\u0077\u0020\u002d\u0020\u0072e\u0073\u006c\u0069\u0063\u0065\u0020\u006f\u006e\u006c\u0079\u002e\u0020L\u0065\u006e\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0043\u0061\u0070\u003a\u0020'\u0025\u0064\u0027\u002c\u0020\u006e\u003a\u0020'\u0025\u0064\u0027",len (_ccb ._c ),cap (_ccb ._c ),_ca ); -_d .Log .Trace ("\u0020\u006e\u0020\u003c\u003d\u0020\u0063\u0020\u002f\u0020\u0032\u0020\u002d\u006d\u002e \u0043:\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u006d\u003a\u0020\u0027\u0025\u0064\u0027",_af ,_db );copy (_ccb ._c ,_ccb ._c [_ccb .fullOffset ():]); -case _af > _aa -_af -_ca :_d .Log .Error ("\u0042\u0055F\u0046\u0045\u0052 \u0074\u006f\u006f\u0020\u006c\u0061\u0072\u0067\u0065");return ;default:_geb :=make ([]byte ,2*_af +_ca );copy (_geb ,_ccb ._c );_ccb ._c =_geb ;};_ccb ._c =_ccb ._c [:_db +_ca ]; -};var _ _eb .Writer =&BufferedWriter {};var _ BinaryWriter =&Writer {};func (_fdg *Reader )BitPosition ()int {return int (_fdg ._gc )};func (_ada *Reader )Length ()uint64 {return uint64 (_ada ._gddcf ._bb )};func (_cec *Reader )RelativePosition ()int64 {return _cec ._bg }; -type BinaryWriter interface{BitWriter ;_eb .Writer ;_eb .ByteWriter ;Data ()[]byte ;};type readerSource struct{_efc []byte ;_cb int ;_bb int ;};func (_fca *Reader )Align ()(_gdc byte ){_gdc =_fca ._gc ;_fca ._gc =0;return _gdc };func (_bda *Reader )Seek (offset int64 ,whence int )(int64 ,error ){_bda ._dfg =-1; -_bda ._gc =0;_bda ._fee =0;_bda ._ccbf =0;var _gce int64 ;switch whence {case _eb .SeekStart :_gce =offset ;case _eb .SeekCurrent :_gce =_bda ._bg +offset ;case _eb .SeekEnd :_gce =int64 (_bda ._gddcf ._bb )+offset ;default:return 0,_a .New ("\u0072\u0065\u0061de\u0072\u002e\u0052\u0065\u0061\u0064\u0065\u0072\u002eS\u0065e\u006b:\u0020i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0077\u0068\u0065\u006e\u0063\u0065"); -};if _gce < 0{return 0,_a .New ("\u0072\u0065a\u0064\u0065\u0072\u002eR\u0065\u0061d\u0065\u0072\u002e\u0053\u0065\u0065\u006b\u003a \u006e\u0065\u0067\u0061\u0074\u0069\u0076\u0065\u0020\u0070\u006f\u0073i\u0074\u0069\u006f\u006e");};_bda ._bg =_gce ; -_bda ._gc =0;return _gce ,nil ;};func (_cg *BufferedWriter )writeFullBytes (_acf []byte )int {_fg :=copy (_cg ._c [_cg .fullOffset ():],_acf );_cg ._ab +=_fg ;return _fg ;};func (_gage *Writer )Write (p []byte )(int ,error ){if len (p )> _gage .byteCapacity (){return 0,_eb .EOF ; -};for _ ,_bec :=range p {if _fbf :=_gage .writeByte (_bec );_fbf !=nil {return 0,_fbf ;};};return len (p ),nil ;};func (_ff *Writer )writeBit (_fcb uint8 )error {if len (_ff ._bac )-1< _ff ._eeb {return _eb .EOF ;};_gba :=_ff ._gag ;if _ff ._abc {_gba =7-_ff ._gag ; -};_ff ._bac [_ff ._eeb ]|=byte (uint16 (_fcb <<_gba )&0xff);_ff ._gag ++;if _ff ._gag ==8{_ff ._eeb ++;_ff ._gag =0;};return nil ;};func (_bef *BufferedWriter )tryGrowByReslice (_fbc int )bool {if _bff :=len (_bef ._c );_fbc <=cap (_bef ._c )-_bff {_bef ._c =_bef ._c [:_bff +_fbc ]; -return true ;};return false ;};func (_gcc *Reader )readBool ()(_bbe bool ,_dbc error ){if _gcc ._gc ==0{_gcc ._fee ,_dbc =_gcc .readBufferByte ();if _dbc !=nil {return false ,_dbc ;};_bbe =(_gcc ._fee &0x80)!=0;_gcc ._fee ,_gcc ._gc =_gcc ._fee &0x7f,7; -return _bbe ,nil ;};_gcc ._gc --;_bbe =(_gcc ._fee &(1<<_gcc ._gc ))!=0;_gcc ._fee &=1<<_gcc ._gc -1;return _bbe ,nil ;};func (_de *BufferedWriter )WriteByte (bt byte )error {if _de ._ab > len (_de ._c )-1||(_de ._ab ==len (_de ._c )-1&&_de ._da !=0){_de .expandIfNeeded (1); -};_de .writeByte (bt );return nil ;};func (_gad *Reader )ReadByte ()(byte ,error ){if _gad ._gc ==0{return _gad .readBufferByte ();};return _gad .readUnalignedByte ();};func (_edg *Reader )ConsumeRemainingBits ()(uint64 ,error ){if _edg ._gc !=0{return _edg .ReadBits (_edg ._gc ); -};return 0,nil ;};func (_ceg *BufferedWriter )writeByte (_fcg byte ){switch {case _ceg ._da ==0:_ceg ._c [_ceg ._ab ]=_fcg ;_ceg ._ab ++;case _ceg ._ec :_ceg ._c [_ceg ._ab ]|=_fcg >>_ceg ._da ;_ceg ._ab ++;_ceg ._c [_ceg ._ab ]=byte (uint16 (_fcg )<<(8-_ceg ._da )&0xff); -default:_ceg ._c [_ceg ._ab ]|=byte (uint16 (_fcg )<<_ceg ._da &0xff);_ceg ._ab ++;_ceg ._c [_ceg ._ab ]=_fcg >>(8-_ceg ._da );};};func (_ba *BufferedWriter )Data ()[]byte {return _ba ._c };func (_gfg *Writer )SkipBits (skip int )error {const _fbac ="\u0057r\u0069t\u0065\u0072\u002e\u0053\u006b\u0069\u0070\u0042\u0069\u0074\u0073"; -if skip ==0{return nil ;};_afg :=int (_gfg ._gag )+skip ;if _afg >=0&&_afg < 8{_gfg ._gag =uint8 (_afg );return nil ;};_afg =int (_gfg ._gag )+_gfg ._eeb *8+skip ;if _afg < 0{return _g .Errorf (_fbac ,"\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};_gcea :=_afg /8;_gagd :=_afg %8;_d .Log .Trace ("\u0053\u006b\u0069\u0070\u0042\u0069\u0074\u0073");_d .Log .Trace ("\u0042\u0069\u0074\u0049\u006e\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0042\u0079\u0074\u0065\u0049n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0046\u0075\u006c\u006c\u0042\u0069\u0074\u0073\u003a\u0020'\u0025\u0064\u0027\u002c\u0020\u004c\u0065\u006e\u003a\u0020\u0027\u0025\u0064\u0027,\u0020\u0043\u0061p\u003a\u0020\u0027\u0025\u0064\u0027",_gfg ._gag ,_gfg ._eeb ,int (_gfg ._gag )+(_gfg ._eeb )*8,len (_gfg ._bac ),cap (_gfg ._bac )); -_d .Log .Trace ("S\u006b\u0069\u0070\u003a\u0020\u0027%\u0064\u0027\u002c\u0020\u0064\u003a \u0027\u0025\u0064\u0027\u002c\u0020\u0062i\u0074\u0049\u006e\u0064\u0065\u0078\u003a\u0020\u0027\u0025d\u0027",skip ,_afg ,_gagd );_gfg ._gag =uint8 (_gagd );if _dee :=_gcea -_gfg ._eeb ; -_dee > 0&&len (_gfg ._bac )-1< _gcea {_d .Log .Trace ("\u0042\u0079\u0074e\u0044\u0069\u0066\u0066\u003a\u0020\u0025\u0064",_dee );return _g .Errorf (_fbac ,"\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065");};_gfg ._eeb =_gcea ; -_d .Log .Trace ("\u0042\u0069\u0074I\u006e\u0064\u0065\u0078:\u0020\u0027\u0025\u0064\u0027\u002c\u0020B\u0079\u0074\u0065\u0049\u006e\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027",_gfg ._gag ,_gfg ._eeb );return nil ;};func (_adgf *Writer )WriteBit (bit int )error {switch bit {case 0,1:return _adgf .writeBit (uint8 (bit )); -};return _g .Error ("\u0057\u0072\u0069\u0074\u0065\u0042\u0069\u0074","\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0062\u0069\u0074\u0020v\u0061\u006c\u0075\u0065");};func (_eca *BufferedWriter )writeShiftedBytes (_gb []byte )int {for _ ,_gbf :=range _gb {_eca .writeByte (_gbf ); -};return len (_gb );};func (_gddc *BufferedWriter )expandIfNeeded (_fd int ){if !_gddc .tryGrowByReslice (_fd ){_gddc .grow (_fd );};};func (_be *BufferedWriter )Reset (){_be ._c =_be ._c [:0];_be ._ab =0;_be ._da =0};func (_ee *Reader )Reset (){_ee ._bg =_ee ._cf ; -_ee ._gc =_ee ._fba ;_ee ._fee =_ee ._bad ;_ee ._ccbf =_ee ._dde ;};func NewWriterMSB (data []byte )*Writer {return &Writer {_bac :data ,_abc :true }};func (_dac *BufferedWriter )Write (d []byte )(int ,error ){_dac .expandIfNeeded (len (d ));if _dac ._da ==0{return _dac .writeFullBytes (d ),nil ; -};return _dac .writeShiftedBytes (d ),nil ;};func (_cbe *Writer )UseMSB ()bool {return _cbe ._abc };func (_cc *BufferedWriter )FinishByte (){if _cc ._da ==0{return ;};_cc ._da =0;_cc ._ab ++;};func (_abe *BufferedWriter )byteCapacity ()int {_ace :=len (_abe ._c )-_abe ._ab ; -if _abe ._da !=0{_ace --;};return _ace ;};func (_ede *BufferedWriter )WriteBit (bit int )error {if bit !=1&&bit !=0{return _g .Errorf ("\u0042\u0075\u0066fe\u0072\u0065\u0064\u0057\u0072\u0069\u0074\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065\u0042\u0069\u0074","\u0062\u0069\u0074\u0020\u0076\u0061\u006cu\u0065\u0020\u006du\u0073\u0074\u0020\u0062e\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0030\u002c\u0031\u007d\u0020\u0062\u0075\u0074\u0020\u0069\u0073\u003a\u0020\u0025\u0064",bit ); -};if len (_ede ._c )-1< _ede ._ab {_ede .expandIfNeeded (1);};_dea :=_ede ._da ;if _ede ._ec {_dea =7-_ede ._da ;};_ede ._c [_ede ._ab ]|=byte (uint16 (bit <<_dea )&0xff);_ede ._da ++;if _ede ._da ==8{_ede ._ab ++;_ede ._da =0;};return nil ;};func (_dda *Writer )WriteBits (bits uint64 ,number int )(_fbad int ,_fda error ){const _dab ="\u0057\u0072\u0069\u0074\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065r\u0042\u0069\u0074\u0073"; -if number < 0||number > 64{return 0,_g .Errorf (_dab ,"\u0062i\u0074\u0073 \u006e\u0075\u006db\u0065\u0072\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020r\u0061\u006e\u0067\u0065\u0020\u003c\u0030\u002c\u0036\u0034\u003e,\u0020\u0069\u0073\u003a\u0020\u0027\u0025\u0064\u0027",number ); -};if number ==0{return 0,nil ;};_cd :=number /8;if _cd > 0{_egfa :=number -_cd *8;for _gga :=_cd -1;_gga >=0;_gga --{_cgd :=byte ((bits >>uint (_gga *8+_egfa ))&0xff);if _fda =_dda .WriteByte (_cgd );_fda !=nil {return _fbad ,_g .Wrapf (_fda ,_dab ,"\u0062\u0079\u0074\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_cd -_gga +1); -};};number -=_cd *8;if number ==0{return _cd ,nil ;};};var _baa int ;for _gbg :=0;_gbg < number ;_gbg ++{if _dda ._abc {_baa =int ((bits >>uint (number -1-_gbg ))&0x1);}else {_baa =int (bits &0x1);bits >>=1;};if _fda =_dda .WriteBit (_baa );_fda !=nil {return _fbad ,_g .Wrapf (_fda ,_dab ,"\u0062i\u0074\u003a\u0020\u0025\u0064",_gbg ); -};};return _cd ,nil ;};type BitWriter interface{WriteBit (_cgc int )error ;WriteBits (_bae uint64 ,_baed int )(_acef int ,_fe error );FinishByte ();SkipBits (_ggc int )error ;};func (_egb *Reader )ReadBit ()(_ged int ,_faddg error ){_dfc ,_faddg :=_egb .readBool (); -if _faddg !=nil {return 0,_faddg ;};if _dfc {_ged =1;};return _ged ,nil ;};func (_fadc *Writer )FinishByte (){if _fadc ._gag ==0{return ;};_fadc ._gag =0;_fadc ._eeb ++;};func (_ge *BufferedWriter )WriteBits (bits uint64 ,number int )(_bf int ,_ac error ){const _gg ="\u0042u\u0066\u0066\u0065\u0072e\u0064\u0057\u0072\u0069\u0074e\u0072.\u0057r\u0069\u0074\u0065\u0072\u0042\u0069\u0074s"; -if number < 0||number > 64{return 0,_g .Errorf (_gg ,"\u0062i\u0074\u0073 \u006e\u0075\u006db\u0065\u0072\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020r\u0061\u006e\u0067\u0065\u0020\u003c\u0030\u002c\u0036\u0034\u003e,\u0020\u0069\u0073\u003a\u0020\u0027\u0025\u0064\u0027",number ); -};_df :=number /8;if _df > 0{_fb :=number -_df *8;for _fc :=_df -1;_fc >=0;_fc --{_egf :=byte ((bits >>uint (_fc *8+_fb ))&0xff);if _ac =_ge .WriteByte (_egf );_ac !=nil {return _bf ,_g .Wrapf (_ac ,_gg ,"\u0062\u0079\u0074\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_df -_fc +1); -};};number -=_df *8;if number ==0{return _df ,nil ;};};var _bfd int ;for _bd :=0;_bd < number ;_bd ++{if _ge ._ec {_bfd =int ((bits >>uint (number -1-_bd ))&0x1);}else {_bfd =int (bits &0x1);bits >>=1;};if _ac =_ge .WriteBit (_bfd );_ac !=nil {return _bf ,_g .Wrapf (_ac ,_gg ,"\u0062i\u0074\u003a\u0020\u0025\u0064",_bd ); -};};return _df ,nil ;};func (_gef *Writer )ResetBit (){_gef ._gag =0};type Reader struct{_gddcf readerSource ;_fee byte ;_gc byte ;_bg int64 ;_ccbf int ;_dfg int ;_cf int64 ;_fba byte ;_bad byte ;_dde int ;};type StreamReader interface{_eb .Reader ;_eb .ByteReader ; -_eb .Seeker ;Align ()byte ;BitPosition ()int ;Mark ();Length ()uint64 ;ReadBit ()(int ,error );ReadBits (_ef byte )(uint64 ,error );ReadBool ()(bool ,error );ReadUint32 ()(uint32 ,error );Reset ();AbsolutePosition ()int64 ;};func (_ded *Writer )WriteByte (c byte )error {return _ded .writeByte (c )}; -type Writer struct{_bac []byte ;_gag uint8 ;_eeb int ;_abc bool ;};func (_bc *Reader )readUnalignedByte ()(_gfa byte ,_gdb error ){_adae :=_bc ._gc ;_gfa =_bc ._fee <<(8-_adae );_bc ._fee ,_gdb =_bc .readBufferByte ();if _gdb !=nil {return 0,_gdb ;};_gfa |=_bc ._fee >>_adae ; -_bc ._fee &=1<<_adae -1;return _gfa ,nil ;};func (_feef *Reader )ReadUint32 ()(uint32 ,error ){_aff :=make ([]byte ,4);_ ,_gf :=_feef .Read (_aff );if _gf !=nil {return 0,_gf ;};return _b .BigEndian .Uint32 (_aff ),nil ;};type BufferedWriter struct{_c []byte ; -_da uint8 ;_ab int ;_ec bool ;};var _ BinaryWriter =&BufferedWriter {};var (_ _eb .Reader =&Reader {};_ _eb .ByteReader =&Reader {};_ _eb .Seeker =&Reader {};_ StreamReader =&Reader {};);func (_edc *Reader )read (_adad []byte )(int ,error ){if _edc ._bg >=int64 (_edc ._gddcf ._bb ){return 0,_eb .EOF ; -};_edc ._dfg =-1;_bgbf :=copy (_adad ,_edc ._gddcf ._efc [(int64 (_edc ._gddcf ._cb )+_edc ._bg ):(_edc ._gddcf ._cb +_edc ._gddcf ._bb )]);_edc ._bg +=int64 (_bgbf );return _bgbf ,nil ;};func (_ae *Reader )readBufferByte ()(byte ,error ){if _ae ._bg >=int64 (_ae ._gddcf ._bb ){return 0,_eb .EOF ; -};_ae ._dfg =-1;_adg :=_ae ._gddcf ._efc [int64 (_ae ._gddcf ._cb )+_ae ._bg ];_ae ._bg ++;_ae ._ccbf =int (_adg );return _adg ,nil ;};func (_efb *Reader )AbsoluteLength ()uint64 {return uint64 (len (_efb ._gddcf ._efc ))};func NewReader (data []byte )*Reader {return &Reader {_gddcf :readerSource {_efc :data ,_bb :len (data ),_cb :0}}; -};func (_cac *Reader )ReadBits (n byte )(_gae uint64 ,_bfdc error ){if n < _cac ._gc {_acefc :=_cac ._gc -n ;_gae =uint64 (_cac ._fee >>_acefc );_cac ._fee &=1<<_acefc -1;_cac ._gc =_acefc ;return _gae ,nil ;};if n > _cac ._gc {if _cac ._gc > 0{_gae =uint64 (_cac ._fee ); -n -=_cac ._gc ;};for n >=8{_dbe ,_fbg :=_cac .readBufferByte ();if _fbg !=nil {return 0,_fbg ;};_gae =_gae <<8+uint64 (_dbe );n -=8;};if n > 0{if _cac ._fee ,_bfdc =_cac .readBufferByte ();_bfdc !=nil {return 0,_bfdc ;};_cea :=8-n ;_gae =_gae <>_cea ); -_cac ._fee &=1<<_cea -1;_cac ._gc =_cea ;}else {_cac ._gc =0;};return _gae ,nil ;};_cac ._gc =0;return uint64 (_cac ._fee ),nil ;};const (_ed =64;_aa =int (^uint (0)>>1););func NewWriter (data []byte )*Writer {return &Writer {_bac :data }};func (_dg *BufferedWriter )fullOffset ()int {_dd :=_dg ._ab ; -if _dg ._da !=0{_dd ++;};return _dd ;};func (_cab *Writer )byteCapacity ()int {_edeb :=len (_cab ._bac )-_cab ._eeb ;if _cab ._gag !=0{_edeb --;};return _edeb ;};func (_ccc *Reader )NewPartialReader (offset ,length int ,relative bool )(*Reader ,error ){if offset < 0{return nil ,_a .New ("p\u0061\u0072\u0074\u0069\u0061\u006c\u0020\u0072\u0065\u0061\u0064\u0065\u0072\u0020\u006f\u0066\u0066\u0073e\u0074\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062e \u006e\u0065\u0067a\u0074i\u0076\u0065"); -};if relative {offset =_ccc ._gddcf ._cb +offset ;};if length > 0{_efa :=len (_ccc ._gddcf ._efc );if relative {_efa =_ccc ._gddcf ._bb ;};if offset +length > _efa {return nil ,_ea .Errorf ("\u0070\u0061r\u0074\u0069\u0061l\u0020\u0072\u0065\u0061\u0064e\u0072\u0020\u006f\u0066\u0066se\u0074\u0028\u0025\u0064\u0029\u002b\u006c\u0065\u006e\u0067\u0074\u0068\u0028\u0025\u0064\u0029\u003d\u0025d\u0020i\u0073\u0020\u0067\u0072\u0065\u0061ter\u0020\u0074\u0068\u0061\u006e\u0020\u0074\u0068\u0065\u0020\u006f\u0072ig\u0069n\u0061\u006c\u0020\u0072e\u0061d\u0065r\u0020\u006ce\u006e\u0067th\u003a\u0020\u0025\u0064",offset ,length ,offset +length ,_ccc ._gddcf ._bb ); -};};if length < 0{_fadd :=len (_ccc ._gddcf ._efc );if relative {_fadd =_ccc ._gddcf ._bb ;};length =_fadd -offset ;};return &Reader {_gddcf :readerSource {_efc :_ccc ._gddcf ._efc ,_bb :length ,_cb :offset }},nil ;};var _ _eb .ByteWriter =&BufferedWriter {}; -func (_fgc *Reader )AbsolutePosition ()int64 {return _fgc ._bg +int64 (_fgc ._gddcf ._cb )};func (_bab *Reader )Mark (){_bab ._cf =_bab ._bg ;_bab ._fba =_bab ._gc ;_bab ._bad =_bab ._fee ;_bab ._dde =_bab ._ccbf ;};func BufferedMSB ()*BufferedWriter {return &BufferedWriter {_ec :true }}; -func (_f *BufferedWriter )SkipBits (skip int )error {if skip ==0{return nil ;};_eaf :=int (_f ._da )+skip ;if _eaf >=0&&_eaf < 8{_f ._da =uint8 (_eaf );return nil ;};_eaf =int (_f ._da )+_f ._ab *8+skip ;if _eaf < 0{return _g .Errorf ("\u0057r\u0069t\u0065\u0072\u002e\u0053\u006b\u0069\u0070\u0042\u0069\u0074\u0073","\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};_fa :=_eaf /8;_gdd :=_eaf %8;_f ._da =uint8 (_gdd );if _ad :=_fa -_f ._ab ;_ad > 0&&len (_f ._c )-1< _fa {if _f ._da !=0{_ad ++;};_f .expandIfNeeded (_ad );};_f ._ab =_fa ;return nil ;};func (_ddg *Writer )Data ()[]byte {return _ddg ._bac };func (_gd *BufferedWriter )ResetBitIndex (){_gd ._da =0}; -func (_dgc *Reader )Read (p []byte )(_egg int ,_cfc error ){if _dgc ._gc ==0{return _dgc .read (p );};for ;_egg < len (p );_egg ++{if p [_egg ],_cfc =_dgc .readUnalignedByte ();_cfc !=nil {return 0,_cfc ;};};return _egg ,nil ;};func (_abef *Reader )ReadBool ()(bool ,error ){return _abef .readBool ()}; -func (_edb *Writer )writeByte (_afe byte )error {if _edb ._eeb > len (_edb ._bac )-1{return _eb .EOF ;};if _edb ._eeb ==len (_edb ._bac )-1&&_edb ._gag !=0{return _eb .EOF ;};if _edb ._gag ==0{_edb ._bac [_edb ._eeb ]=_afe ;_edb ._eeb ++;return nil ;}; -if _edb ._abc {_edb ._bac [_edb ._eeb ]|=_afe >>_edb ._gag ;_edb ._eeb ++;_edb ._bac [_edb ._eeb ]=byte (uint16 (_afe )<<(8-_edb ._gag )&0xff);}else {_edb ._bac [_edb ._eeb ]|=byte (uint16 (_afe )<<_edb ._gag &0xff);_edb ._eeb ++;_edb ._bac [_edb ._eeb ]=_afe >>(8-_edb ._gag ); -};return nil ;};func (_ce *BufferedWriter )Len ()int {return _ce .byteCapacity ()}; \ No newline at end of file +package bitwise ;import (_dd "encoding/binary";_g "errors";_ff "fmt";_b "github.com/unidoc/unipdf/v3/common";_c "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_f "io";);func (_bfe *BufferedWriter )byteCapacity ()int {_dad :=len (_bfe ._fg )-_bfe ._a ; +if _bfe ._fc !=0{_dad --;};return _dad ;};func (_ec *BufferedWriter )Data ()[]byte {return _ec ._fg };func (_fd *Writer )SkipBits (skip int )error {const _bfb ="\u0057r\u0069t\u0065\u0072\u002e\u0053\u006b\u0069\u0070\u0042\u0069\u0074\u0073";if skip ==0{return nil ; +};_fcf :=int (_fd ._gefd )+skip ;if _fcf >=0&&_fcf < 8{_fd ._gefd =uint8 (_fcf );return nil ;};_fcf =int (_fd ._gefd )+_fd ._aba *8+skip ;if _fcf < 0{return _c .Errorf (_bfb ,"\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};_bae :=_fcf /8;_cefd :=_fcf %8;_b .Log .Trace ("\u0053\u006b\u0069\u0070\u0042\u0069\u0074\u0073");_b .Log .Trace ("\u0042\u0069\u0074\u0049\u006e\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0042\u0079\u0074\u0065\u0049n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0046\u0075\u006c\u006c\u0042\u0069\u0074\u0073\u003a\u0020'\u0025\u0064\u0027\u002c\u0020\u004c\u0065\u006e\u003a\u0020\u0027\u0025\u0064\u0027,\u0020\u0043\u0061p\u003a\u0020\u0027\u0025\u0064\u0027",_fd ._gefd ,_fd ._aba ,int (_fd ._gefd )+(_fd ._aba )*8,len (_fd ._bda ),cap (_fd ._bda )); +_b .Log .Trace ("S\u006b\u0069\u0070\u003a\u0020\u0027%\u0064\u0027\u002c\u0020\u0064\u003a \u0027\u0025\u0064\u0027\u002c\u0020\u0062i\u0074\u0049\u006e\u0064\u0065\u0078\u003a\u0020\u0027\u0025d\u0027",skip ,_fcf ,_cefd );_fd ._gefd =uint8 (_cefd );if _bdf :=_bae -_fd ._aba ; +_bdf > 0&&len (_fd ._bda )-1< _bae {_b .Log .Trace ("\u0042\u0079\u0074e\u0044\u0069\u0066\u0066\u003a\u0020\u0025\u0064",_bdf );return _c .Errorf (_bfb ,"\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065");};_fd ._aba =_bae ; +_b .Log .Trace ("\u0042\u0069\u0074I\u006e\u0064\u0065\u0078:\u0020\u0027\u0025\u0064\u0027\u002c\u0020B\u0079\u0074\u0065\u0049\u006e\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027",_fd ._gefd ,_fd ._aba );return nil ;};func (_ca *Reader )ReadUint32 ()(uint32 ,error ){_eea :=make ([]byte ,4); +_ ,_abd :=_ca .Read (_eea );if _abd !=nil {return 0,_abd ;};return _dd .BigEndian .Uint32 (_eea ),nil ;};func (_bdg *Reader )read (_dbf []byte )(int ,error ){if _bdg ._add >=int64 (_bdg ._cef ._bef ){return 0,_f .EOF ;};_bdg ._cgb =-1;_caa :=copy (_dbf ,_bdg ._cef ._ee [(int64 (_bdg ._cef ._af )+_bdg ._add ):(_bdg ._cef ._af +_bdg ._cef ._bef )]); +_bdg ._add +=int64 (_caa );return _caa ,nil ;};func (_aef *Reader )readUnalignedByte ()(_aed byte ,_cca error ){_eec :=_aef ._ead ;_aed =_aef ._ffd <<(8-_eec );_aef ._ffd ,_cca =_aef .readBufferByte ();if _cca !=nil {return 0,_cca ;};_aed |=_aef ._ffd >>_eec ; +_aef ._ffd &=1<<_eec -1;return _aed ,nil ;};func (_bac *Writer )byteCapacity ()int {_bcg :=len (_bac ._bda )-_bac ._aba ;if _bac ._gefd !=0{_bcg --;};return _bcg ;};type Writer struct{_bda []byte ;_gefd uint8 ;_aba int ;_dda bool ;};func (_fab *Reader )readBool ()(_cdc bool ,_cfg error ){if _fab ._ead ==0{_fab ._ffd ,_cfg =_fab .readBufferByte (); +if _cfg !=nil {return false ,_cfg ;};_cdc =(_fab ._ffd &0x80)!=0;_fab ._ffd ,_fab ._ead =_fab ._ffd &0x7f,7;return _cdc ,nil ;};_fab ._ead --;_cdc =(_fab ._ffd &(1<<_fab ._ead ))!=0;_fab ._ffd &=1<<_fab ._ead -1;return _cdc ,nil ;};func (_bed *Writer )Write (p []byte )(int ,error ){if len (p )> _bed .byteCapacity (){return 0,_f .EOF ; +};for _ ,_abc :=range p {if _aedf :=_bed .writeByte (_abc );_aedf !=nil {return 0,_aedf ;};};return len (p ),nil ;};func (_faa *Writer )WriteBit (bit int )error {switch bit {case 0,1:return _faa .writeBit (uint8 (bit ));};return _c .Error ("\u0057\u0072\u0069\u0074\u0065\u0042\u0069\u0074","\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0062\u0069\u0074\u0020v\u0061\u006c\u0075\u0065"); +};func (_dcd *Reader )Read (p []byte )(_gcf int ,_bd error ){if _dcd ._ead ==0{return _dcd .read (p );};for ;_gcf < len (p );_gcf ++{if p [_gcf ],_bd =_dcd .readUnalignedByte ();_bd !=nil {return 0,_bd ;};};return _gcf ,nil ;};func (_eg *Reader )readBufferByte ()(byte ,error ){if _eg ._add >=int64 (_eg ._cef ._bef ){return 0,_f .EOF ; +};_eg ._cgb =-1;_bde :=_eg ._cef ._ee [int64 (_eg ._cef ._af )+_eg ._add ];_eg ._add ++;_eg ._ecg =int (_bde );return _bde ,nil ;};func (_eb *BufferedWriter )writeByte (_fa byte ){switch {case _eb ._fc ==0:_eb ._fg [_eb ._a ]=_fa ;_eb ._a ++;case _eb ._fb :_eb ._fg [_eb ._a ]|=_fa >>_eb ._fc ; +_eb ._a ++;_eb ._fg [_eb ._a ]=byte (uint16 (_fa )<<(8-_eb ._fc )&0xff);default:_eb ._fg [_eb ._a ]|=byte (uint16 (_fa )<<_eb ._fc &0xff);_eb ._a ++;_eb ._fg [_eb ._a ]=_fa >>(8-_eb ._fc );};};func (_edb *BufferedWriter )tryGrowByReslice (_bfa int )bool {if _gf :=len (_edb ._fg ); +_bfa <=cap (_edb ._fg )-_gf {_edb ._fg =_edb ._fg [:_gf +_bfa ];return true ;};return false ;};func (_ea *BufferedWriter )writeFullBytes (_fbf []byte )int {_fgg :=copy (_ea ._fg [_ea .fullOffset ():],_fbf );_ea ._a +=_fgg ;return _fgg ;};type BufferedWriter struct{_fg []byte ; +_fc uint8 ;_a int ;_fb bool ;};func (_fe *BufferedWriter )SkipBits (skip int )error {if skip ==0{return nil ;};_ce :=int (_fe ._fc )+skip ;if _ce >=0&&_ce < 8{_fe ._fc =uint8 (_ce );return nil ;};_ce =int (_fe ._fc )+_fe ._a *8+skip ;if _ce < 0{return _c .Errorf ("\u0057r\u0069t\u0065\u0072\u002e\u0053\u006b\u0069\u0070\u0042\u0069\u0074\u0073","\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};_da :=_ce /8;_ac :=_ce %8;_fe ._fc =uint8 (_ac );if _gg :=_da -_fe ._a ;_gg > 0&&len (_fe ._fg )-1< _da {if _fe ._fc !=0{_gg ++;};_fe .expandIfNeeded (_gg );};_fe ._a =_da ;return nil ;};type StreamReader interface{_f .Reader ;_f .ByteReader ;_f .Seeker ; +Align ()byte ;BitPosition ()int ;Mark ();Length ()uint64 ;ReadBit ()(int ,error );ReadBits (_ffb byte )(uint64 ,error );ReadBool ()(bool ,error );ReadUint32 ()(uint32 ,error );Reset ();AbsolutePosition ()int64 ;};func (_ba *BufferedWriter )writeShiftedBytes (_edf []byte )int {for _ ,_ggc :=range _edf {_ba .writeByte (_ggc ); +};return len (_edf );};var (_ _f .Reader =&Reader {};_ _f .ByteReader =&Reader {};_ _f .Seeker =&Reader {};_ StreamReader =&Reader {};);func (_gdd *Writer )UseMSB ()bool {return _gdd ._dda };func (_dc *Reader )NewPartialReader (offset ,length int ,relative bool )(*Reader ,error ){if offset < 0{return nil ,_g .New ("p\u0061\u0072\u0074\u0069\u0061\u006c\u0020\u0072\u0065\u0061\u0064\u0065\u0072\u0020\u006f\u0066\u0066\u0073e\u0074\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062e \u006e\u0065\u0067a\u0074i\u0076\u0065"); +};if relative {offset =_dc ._cef ._af +offset ;};if length > 0{_gga :=len (_dc ._cef ._ee );if relative {_gga =_dc ._cef ._bef ;};if offset +length > _gga {return nil ,_ff .Errorf ("\u0070\u0061r\u0074\u0069\u0061l\u0020\u0072\u0065\u0061\u0064e\u0072\u0020\u006f\u0066\u0066se\u0074\u0028\u0025\u0064\u0029\u002b\u006c\u0065\u006e\u0067\u0074\u0068\u0028\u0025\u0064\u0029\u003d\u0025d\u0020i\u0073\u0020\u0067\u0072\u0065\u0061ter\u0020\u0074\u0068\u0061\u006e\u0020\u0074\u0068\u0065\u0020\u006f\u0072ig\u0069n\u0061\u006c\u0020\u0072e\u0061d\u0065r\u0020\u006ce\u006e\u0067th\u003a\u0020\u0025\u0064",offset ,length ,offset +length ,_dc ._cef ._bef ); +};};if length < 0{_bfag :=len (_dc ._cef ._ee );if relative {_bfag =_dc ._cef ._bef ;};length =_bfag -offset ;};return &Reader {_cef :readerSource {_ee :_dc ._cef ._ee ,_bef :length ,_af :offset }},nil ;};type BinaryWriter interface{BitWriter ;_f .Writer ; +_f .ByteWriter ;Data ()[]byte ;};func (_be *BufferedWriter )ResetBitIndex (){_be ._fc =0};func (_fbfa *Reader )ConsumeRemainingBits ()(uint64 ,error ){if _fbfa ._ead !=0{return _fbfa .ReadBits (_fbfa ._ead );};return 0,nil ;};var _ BinaryWriter =&BufferedWriter {}; +func (_fce *BufferedWriter )Reset (){_fce ._fg =_fce ._fg [:0];_fce ._a =0;_fce ._fc =0};type readerSource struct{_ee []byte ;_af int ;_bef int ;};func (_gba *Writer )WriteByte (c byte )error {return _gba .writeByte (c )};func (_ceg *Reader )BitPosition ()int {return int (_ceg ._ead )}; +func (_geb *Writer )ResetBit (){_geb ._gefd =0};func (_fgb *BufferedWriter )Write (d []byte )(int ,error ){_fgb .expandIfNeeded (len (d ));if _fgb ._fc ==0{return _fgb .writeFullBytes (d ),nil ;};return _fgb .writeShiftedBytes (d ),nil ;};func (_ed *BufferedWriter )Len ()int {return _ed .byteCapacity ()}; +func NewReader (data []byte )*Reader {return &Reader {_cef :readerSource {_ee :data ,_bef :len (data ),_af :0}};};type Reader struct{_cef readerSource ;_ffd byte ;_ead byte ;_add int64 ;_ecg int ;_cgb int ;_aa int64 ;_abf byte ;_ddd byte ;_ef int ;};func (_eab *Reader )Seek (offset int64 ,whence int )(int64 ,error ){_eab ._cgb =-1; +_eab ._ead =0;_eab ._ffd =0;_eab ._ecg =0;var _aee int64 ;switch whence {case _f .SeekStart :_aee =offset ;case _f .SeekCurrent :_aee =_eab ._add +offset ;case _f .SeekEnd :_aee =int64 (_eab ._cef ._bef )+offset ;default:return 0,_g .New ("\u0072\u0065\u0061de\u0072\u002e\u0052\u0065\u0061\u0064\u0065\u0072\u002eS\u0065e\u006b:\u0020i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0077\u0068\u0065\u006e\u0063\u0065"); +};if _aee < 0{return 0,_g .New ("\u0072\u0065a\u0064\u0065\u0072\u002eR\u0065\u0061d\u0065\u0072\u002e\u0053\u0065\u0065\u006b\u003a \u006e\u0065\u0067\u0061\u0074\u0069\u0076\u0065\u0020\u0070\u006f\u0073i\u0074\u0069\u006f\u006e");};_eab ._add =_aee ; +_eab ._ead =0;return _aee ,nil ;};func (_fcb *Reader )Align ()(_gbd byte ){_gbd =_fcb ._ead ;_fcb ._ead =0;return _gbd };func (_fgbg *BufferedWriter )fullOffset ()int {_cd :=_fgbg ._a ;if _fgbg ._fc !=0{_cd ++;};return _cd ;};func (_gb *BufferedWriter )WriteBit (bit int )error {if bit !=1&&bit !=0{return _c .Errorf ("\u0042\u0075\u0066fe\u0072\u0065\u0064\u0057\u0072\u0069\u0074\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065\u0042\u0069\u0074","\u0062\u0069\u0074\u0020\u0076\u0061\u006cu\u0065\u0020\u006du\u0073\u0074\u0020\u0062e\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0030\u002c\u0031\u007d\u0020\u0062\u0075\u0074\u0020\u0069\u0073\u003a\u0020\u0025\u0064",bit ); +};if len (_gb ._fg )-1< _gb ._a {_gb .expandIfNeeded (1);};_bf :=_gb ._fc ;if _gb ._fb {_bf =7-_gb ._fc ;};_gb ._fg [_gb ._a ]|=byte (uint16 (bit <<_bf )&0xff);_gb ._fc ++;if _gb ._fc ==8{_gb ._a ++;_gb ._fc =0;};return nil ;};func (_ecf *Writer )WriteBits (bits uint64 ,number int )(_fggc int ,_beg error ){const _ecgd ="\u0057\u0072\u0069\u0074\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065r\u0042\u0069\u0074\u0073"; +if number < 0||number > 64{return 0,_c .Errorf (_ecgd ,"\u0062i\u0074\u0073 \u006e\u0075\u006db\u0065\u0072\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020r\u0061\u006e\u0067\u0065\u0020\u003c\u0030\u002c\u0036\u0034\u003e,\u0020\u0069\u0073\u003a\u0020\u0027\u0025\u0064\u0027",number ); +};if number ==0{return 0,nil ;};_edd :=number /8;if _edd > 0{_febf :=number -_edd *8;for _gfg :=_edd -1;_gfg >=0;_gfg --{_eba :=byte ((bits >>uint (_gfg *8+_febf ))&0xff);if _beg =_ecf .WriteByte (_eba );_beg !=nil {return _fggc ,_c .Wrapf (_beg ,_ecgd ,"\u0062\u0079\u0074\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_edd -_gfg +1); +};};number -=_edd *8;if number ==0{return _edd ,nil ;};};var _bgc int ;for _cb :=0;_cb < number ;_cb ++{if _ecf ._dda {_bgc =int ((bits >>uint (number -1-_cb ))&0x1);}else {_bgc =int (bits &0x1);bits >>=1;};if _beg =_ecf .WriteBit (_bgc );_beg !=nil {return _fggc ,_c .Wrapf (_beg ,_ecgd ,"\u0062i\u0074\u003a\u0020\u0025\u0064",_cb ); +};};return _edd ,nil ;};var _ _f .ByteWriter =&BufferedWriter {};var _ _f .Writer =&BufferedWriter {};func (_cf *BufferedWriter )WriteBits (bits uint64 ,number int )(_dgb int ,_bg error ){const _bba ="\u0042u\u0066\u0066\u0065\u0072e\u0064\u0057\u0072\u0069\u0074e\u0072.\u0057r\u0069\u0074\u0065\u0072\u0042\u0069\u0074s"; +if number < 0||number > 64{return 0,_c .Errorf (_bba ,"\u0062i\u0074\u0073 \u006e\u0075\u006db\u0065\u0072\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020r\u0061\u006e\u0067\u0065\u0020\u003c\u0030\u002c\u0036\u0034\u003e,\u0020\u0069\u0073\u003a\u0020\u0027\u0025\u0064\u0027",number ); +};_ga :=number /8;if _ga > 0{_fbg :=number -_ga *8;for _cc :=_ga -1;_cc >=0;_cc --{_ab :=byte ((bits >>uint (_cc *8+_fbg ))&0xff);if _bg =_cf .WriteByte (_ab );_bg !=nil {return _dgb ,_c .Wrapf (_bg ,_bba ,"\u0062\u0079\u0074\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_ga -_cc +1); +};};number -=_ga *8;if number ==0{return _ga ,nil ;};};var _ad int ;for _ge :=0;_ge < number ;_ge ++{if _cf ._fb {_ad =int ((bits >>uint (number -1-_ge ))&0x1);}else {_ad =int (bits &0x1);bits >>=1;};if _bg =_cf .WriteBit (_ad );_bg !=nil {return _dgb ,_c .Wrapf (_bg ,_bba ,"\u0062i\u0074\u003a\u0020\u0025\u0064",_ge ); +};};return _ga ,nil ;};func (_cegc *Writer )writeBit (_gac uint8 )error {if len (_cegc ._bda )-1< _cegc ._aba {return _f .EOF ;};_gde :=_cegc ._gefd ;if _cegc ._dda {_gde =7-_cegc ._gefd ;};_cegc ._bda [_cegc ._aba ]|=byte (uint16 (_gac <<_gde )&0xff); +_cegc ._gefd ++;if _cegc ._gefd ==8{_cegc ._aba ++;_cegc ._gefd =0;};return nil ;};func (_gd *Reader )Mark (){_gd ._aa =_gd ._add ;_gd ._abf =_gd ._ead ;_gd ._ddd =_gd ._ffd ;_gd ._ef =_gd ._ecg ;};func (_bbe *Reader )Reset (){_bbe ._add =_bbe ._aa ;_bbe ._ead =_bbe ._abf ; +_bbe ._ffd =_bbe ._ddd ;_bbe ._ecg =_bbe ._ef ;};func (_fgc *Reader )ReadBool ()(bool ,error ){return _fgc .readBool ()};func (_bafa *Reader )AbsolutePosition ()int64 {return _bafa ._add +int64 (_bafa ._cef ._af )};func (_feg *Writer )FinishByte (){if _feg ._gefd ==0{return ; +};_feg ._gefd =0;_feg ._aba ++;};func NewWriter (data []byte )*Writer {return &Writer {_bda :data }};func (_efd *Reader )RelativePosition ()int64 {return _efd ._add };func (_ag *BufferedWriter )FinishByte (){if _ag ._fc ==0{return ;};_ag ._fc =0;_ag ._a ++; +};const (_gc =64;_dg =int (^uint (0)>>1););func (_fba *Writer )Data ()[]byte {return _fba ._bda };func NewWriterMSB (data []byte )*Writer {return &Writer {_bda :data ,_dda :true }};func (_afg *Reader )ReadBits (n byte )(_edgb uint64 ,_edc error ){if n < _afg ._ead {_cdb :=_afg ._ead -n ; +_edgb =uint64 (_afg ._ffd >>_cdb );_afg ._ffd &=1<<_cdb -1;_afg ._ead =_cdb ;return _edgb ,nil ;};if n > _afg ._ead {if _afg ._ead > 0{_edgb =uint64 (_afg ._ffd );n -=_afg ._ead ;};for n >=8{_baf ,_ccd :=_afg .readBufferByte ();if _ccd !=nil {return 0,_ccd ; +};_edgb =_edgb <<8+uint64 (_baf );n -=8;};if n > 0{if _afg ._ffd ,_edc =_afg .readBufferByte ();_edc !=nil {return 0,_edc ;};_gec :=8-n ;_edgb =_edgb <>_gec );_afg ._ffd &=1<<_gec -1;_afg ._ead =_gec ;}else {_afg ._ead =0;};return _edgb ,nil ; +};_afg ._ead =0;return uint64 (_afg ._ffd ),nil ;};type BitWriter interface{WriteBit (_de int )error ;WriteBits (_fac uint64 ,_ggb int )(_bgb int ,_bfd error );FinishByte ();SkipBits (_fgbcc int )error ;};func (_gef *Reader )AbsoluteLength ()uint64 {return uint64 (len (_gef ._cef ._ee ))}; +func (_feb *BufferedWriter )grow (_acg int ){if _feb ._fg ==nil &&_acg < _gc {_feb ._fg =make ([]byte ,_acg ,_gc );return ;};_bea :=len (_feb ._fg );if _feb ._fc !=0{_bea ++;};_fgbc :=cap (_feb ._fg );switch {case _acg <=_fgbc /2-_bea :_b .Log .Trace ("\u005b\u0042\u0075\u0066\u0066\u0065r\u0065\u0064\u0057\u0072\u0069t\u0065\u0072\u005d\u0020\u0067\u0072o\u0077\u0020\u002d\u0020\u0072e\u0073\u006c\u0069\u0063\u0065\u0020\u006f\u006e\u006c\u0079\u002e\u0020L\u0065\u006e\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0043\u0061\u0070\u003a\u0020'\u0025\u0064\u0027\u002c\u0020\u006e\u003a\u0020'\u0025\u0064\u0027",len (_feb ._fg ),cap (_feb ._fg ),_acg ); +_b .Log .Trace ("\u0020\u006e\u0020\u003c\u003d\u0020\u0063\u0020\u002f\u0020\u0032\u0020\u002d\u006d\u002e \u0043:\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u006d\u003a\u0020\u0027\u0025\u0064\u0027",_fgbc ,_bea );copy (_feb ._fg ,_feb ._fg [_feb .fullOffset ():]); +case _fgbc > _dg -_fgbc -_acg :_b .Log .Error ("\u0042\u0055F\u0046\u0045\u0052 \u0074\u006f\u006f\u0020\u006c\u0061\u0072\u0067\u0065");return ;default:_db :=make ([]byte ,2*_fgbc +_acg );copy (_db ,_feb ._fg );_feb ._fg =_db ;};_feb ._fg =_feb ._fg [:_bea +_acg ]; +};func BufferedMSB ()*BufferedWriter {return &BufferedWriter {_fb :true }};func (_bgd *Reader )ReadByte ()(byte ,error ){if _bgd ._ead ==0{return _bgd .readBufferByte ();};return _bgd .readUnalignedByte ();};func (_fec *BufferedWriter )expandIfNeeded (_cg int ){if !_fec .tryGrowByReslice (_cg ){_fec .grow (_cg ); +};};func (_cge *Reader )Length ()uint64 {return uint64 (_cge ._cef ._bef )};func (_bbg *BufferedWriter )WriteByte (bt byte )error {if _bbg ._a > len (_bbg ._fg )-1||(_bbg ._a ==len (_bbg ._fg )-1&&_bbg ._fc !=0){_bbg .expandIfNeeded (1);};_bbg .writeByte (bt ); +return nil ;};var _ BinaryWriter =&Writer {};func (_cfb *Reader )ReadBit ()(_bbb int ,_bfc error ){_aag ,_bfc :=_cfb .readBool ();if _bfc !=nil {return 0,_bfc ;};if _aag {_bbb =1;};return _bbb ,nil ;};func (_aaa *Writer )writeByte (_fcbb byte )error {if _aaa ._aba > len (_aaa ._bda )-1{return _f .EOF ; +};if _aaa ._aba ==len (_aaa ._bda )-1&&_aaa ._gefd !=0{return _f .EOF ;};if _aaa ._gefd ==0{_aaa ._bda [_aaa ._aba ]=_fcbb ;_aaa ._aba ++;return nil ;};if _aaa ._dda {_aaa ._bda [_aaa ._aba ]|=_fcbb >>_aaa ._gefd ;_aaa ._aba ++;_aaa ._bda [_aaa ._aba ]=byte (uint16 (_fcbb )<<(8-_aaa ._gefd )&0xff); +}else {_aaa ._bda [_aaa ._aba ]|=byte (uint16 (_fcbb )<<_aaa ._gefd &0xff);_aaa ._aba ++;_aaa ._bda [_aaa ._aba ]=_fcbb >>(8-_aaa ._gefd );};return nil ;}; \ No newline at end of file diff --git a/internal/ccittfax/ccittfax.go b/internal/ccittfax/ccittfax.go index 1694960ac..0cc80f64e 100644 --- a/internal/ccittfax/ccittfax.go +++ b/internal/ccittfax/ccittfax.go @@ -9,120 +9,123 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package ccittfax ;import (_g "errors";_b "github.com/unidoc/unipdf/v3/internal/bitwise";_ef "io";_d "math";);var (_bcg map[int ]code ;_aa map[int ]code ;_dge map[int ]code ;_bg map[int ]code ;_ed map[int ]code ;_ffg map[int ]byte ;_ca =code {Code :1<<4,BitsWritten :12}; -_ac =code {Code :3<<3,BitsWritten :13};_gcf =code {Code :2<<3,BitsWritten :13};_fb =code {Code :1<<12,BitsWritten :4};_fbe =code {Code :1<<13,BitsWritten :3};_ffc =code {Code :1<<15,BitsWritten :1};_fgg =code {Code :3<<13,BitsWritten :3};_egg =code {Code :3<<10,BitsWritten :6}; -_bf =code {Code :3<<9,BitsWritten :7};_caf =code {Code :2<<13,BitsWritten :3};_eab =code {Code :2<<10,BitsWritten :6};_afb =code {Code :2<<9,BitsWritten :7};);func init (){_gb =&treeNode {_fdg :true ,_ffgb :_a };_gbe =&treeNode {_ffgb :_ag ,_gdeg :_gb }; -_gbe ._ggfe =_gbe ;_bc =&tree {_acd :&treeNode {}};if _gg :=_bc .fillWithNode (12,0,_gbe );_gg !=nil {panic (_gg .Error ());};if _agf :=_bc .fillWithNode (12,1,_gb );_agf !=nil {panic (_agf .Error ());};_f =&tree {_acd :&treeNode {}};for _bb :=0;_bb < len (_df ); -_bb ++{for _c :=0;_c < len (_df [_bb ]);_c ++{if _bd :=_f .fill (_bb +2,int (_df [_bb ][_c ]),int (_bbgf [_bb ][_c ]));_bd !=nil {panic (_bd .Error ());};};};if _ba :=_f .fillWithNode (12,0,_gbe );_ba !=nil {panic (_ba .Error ());};if _cf :=_f .fillWithNode (12,1,_gb ); -_cf !=nil {panic (_cf .Error ());};_fg =&tree {_acd :&treeNode {}};for _dd :=0;_dd < len (_af );_dd ++{for _ga :=0;_ga < len (_af [_dd ]);_ga ++{if _dc :=_fg .fill (_dd +4,int (_af [_dd ][_ga ]),int (_cc [_dd ][_ga ]));_dc !=nil {panic (_dc .Error ()); -};};};if _bbd :=_fg .fillWithNode (12,0,_gbe );_bbd !=nil {panic (_bbd .Error ());};if _dg :=_fg .fillWithNode (12,1,_gb );_dg !=nil {panic (_dg .Error ());};_ff =&tree {_acd :&treeNode {}};if _fa :=_ff .fill (4,1,_gc );_fa !=nil {panic (_fa .Error ()); -};if _gbd :=_ff .fill (3,1,_ea );_gbd !=nil {panic (_gbd .Error ());};if _gf :=_ff .fill (1,1,0);_gf !=nil {panic (_gf .Error ());};if _cd :=_ff .fill (3,3,1);_cd !=nil {panic (_cd .Error ());};if _bbg :=_ff .fill (6,3,2);_bbg !=nil {panic (_bbg .Error ()); -};if _cfa :=_ff .fill (7,3,3);_cfa !=nil {panic (_cfa .Error ());};if _eg :=_ff .fill (3,2,-1);_eg !=nil {panic (_eg .Error ());};if _ggc :=_ff .fill (6,2,-2);_ggc !=nil {panic (_ggc .Error ());};if _ge :=_ff .fill (7,2,-3);_ge !=nil {panic (_ge .Error ()); -};};func _cdb (_ebab int )([]byte ,int ){var _ffb []byte ;for _add :=0;_add < 6;_add ++{_ffb ,_ebab =_dee (_ffb ,_ebab ,_ac );};return _ffb ,_ebab %8;};var _bbgf =[...][]uint16 {{3,2},{1,4},{6,5},{7},{9,8},{10,11,12},{13,14},{15},{16,17,0,18,64},{24,25,23,22,19,20,21,1792,1856,1920},{1984,2048,2112,2176,2240,2304,2368,2432,2496,2560,52,55,56,59,60,320,384,448,53,54,50,51,44,45,46,47,57,58,61,256,48,49,62,63,30,31,32,33,40,41,128,192,26,27,28,29,34,35,36,37,38,39,42,43},{640,704,768,832,1280,1344,1408,1472,1536,1600,1664,1728,512,576,896,960,1024,1088,1152,1216}}; -type Decoder struct{_ec int ;_bgc int ;_bgg int ;_ega []byte ;_bgcb int ;_ab bool ;_gea bool ;_cg bool ;_cff bool ;_fc bool ;_ead bool ;_gfb bool ;_geg int ;_cgc int ;_bed []int ;_de []int ;_eba int ;_ae int ;_dfd int ;_ecc int ;_cdc *_b .Reader ;_da tiffType ; -_ee error ;};func (_fce *Decoder )looseFetchEOL ()(bool ,error ){_cag ,_ebae :=_fce ._cdc .ReadBits (12);if _ebae !=nil {return false ,_ebae ;};switch _cag {case 0x1:return true ,nil ;case 0x0:for {_fe ,_ege :=_fce ._cdc .ReadBool ();if _ege !=nil {return false ,_ege ; -};if _fe {return true ,nil ;};};default:return false ,nil ;};};var (_gb *treeNode ;_gbe *treeNode ;_f *tree ;_fg *tree ;_bc *tree ;_ff *tree ;_a =-2000;_ag =-1000;_gc =-3000;_ea =-4000;);func (_dcb *Decoder )tryFetchEOL ()(bool ,error ){_dca ,_faa :=_dcb ._cdc .ReadBits (12); -if _faa !=nil {return false ,_faa ;};return _dca ==0x1,nil ;};func init (){_bcg =make (map[int ]code );_bcg [0]=code {Code :13<<8|3<<6,BitsWritten :10};_bcg [1]=code {Code :2<<(5+8),BitsWritten :3};_bcg [2]=code {Code :3<<(6+8),BitsWritten :2};_bcg [3]=code {Code :2<<(6+8),BitsWritten :2}; -_bcg [4]=code {Code :3<<(5+8),BitsWritten :3};_bcg [5]=code {Code :3<<(4+8),BitsWritten :4};_bcg [6]=code {Code :2<<(4+8),BitsWritten :4};_bcg [7]=code {Code :3<<(3+8),BitsWritten :5};_bcg [8]=code {Code :5<<(2+8),BitsWritten :6};_bcg [9]=code {Code :4<<(2+8),BitsWritten :6}; -_bcg [10]=code {Code :4<<(1+8),BitsWritten :7};_bcg [11]=code {Code :5<<(1+8),BitsWritten :7};_bcg [12]=code {Code :7<<(1+8),BitsWritten :7};_bcg [13]=code {Code :4<<8,BitsWritten :8};_bcg [14]=code {Code :7<<8,BitsWritten :8};_bcg [15]=code {Code :12<<8,BitsWritten :9}; -_bcg [16]=code {Code :5<<8|3<<6,BitsWritten :10};_bcg [17]=code {Code :6<<8,BitsWritten :10};_bcg [18]=code {Code :2<<8,BitsWritten :10};_bcg [19]=code {Code :12<<8|7<<5,BitsWritten :11};_bcg [20]=code {Code :13<<8,BitsWritten :11};_bcg [21]=code {Code :13<<8|4<<5,BitsWritten :11}; -_bcg [22]=code {Code :6<<8|7<<5,BitsWritten :11};_bcg [23]=code {Code :5<<8,BitsWritten :11};_bcg [24]=code {Code :2<<8|7<<5,BitsWritten :11};_bcg [25]=code {Code :3<<8,BitsWritten :11};_bcg [26]=code {Code :12<<8|10<<4,BitsWritten :12};_bcg [27]=code {Code :12<<8|11<<4,BitsWritten :12}; -_bcg [28]=code {Code :12<<8|12<<4,BitsWritten :12};_bcg [29]=code {Code :12<<8|13<<4,BitsWritten :12};_bcg [30]=code {Code :6<<8|8<<4,BitsWritten :12};_bcg [31]=code {Code :6<<8|9<<4,BitsWritten :12};_bcg [32]=code {Code :6<<8|10<<4,BitsWritten :12};_bcg [33]=code {Code :6<<8|11<<4,BitsWritten :12}; -_bcg [34]=code {Code :13<<8|2<<4,BitsWritten :12};_bcg [35]=code {Code :13<<8|3<<4,BitsWritten :12};_bcg [36]=code {Code :13<<8|4<<4,BitsWritten :12};_bcg [37]=code {Code :13<<8|5<<4,BitsWritten :12};_bcg [38]=code {Code :13<<8|6<<4,BitsWritten :12};_bcg [39]=code {Code :13<<8|7<<4,BitsWritten :12}; -_bcg [40]=code {Code :6<<8|12<<4,BitsWritten :12};_bcg [41]=code {Code :6<<8|13<<4,BitsWritten :12};_bcg [42]=code {Code :13<<8|10<<4,BitsWritten :12};_bcg [43]=code {Code :13<<8|11<<4,BitsWritten :12};_bcg [44]=code {Code :5<<8|4<<4,BitsWritten :12};_bcg [45]=code {Code :5<<8|5<<4,BitsWritten :12}; -_bcg [46]=code {Code :5<<8|6<<4,BitsWritten :12};_bcg [47]=code {Code :5<<8|7<<4,BitsWritten :12};_bcg [48]=code {Code :6<<8|4<<4,BitsWritten :12};_bcg [49]=code {Code :6<<8|5<<4,BitsWritten :12};_bcg [50]=code {Code :5<<8|2<<4,BitsWritten :12};_bcg [51]=code {Code :5<<8|3<<4,BitsWritten :12}; -_bcg [52]=code {Code :2<<8|4<<4,BitsWritten :12};_bcg [53]=code {Code :3<<8|7<<4,BitsWritten :12};_bcg [54]=code {Code :3<<8|8<<4,BitsWritten :12};_bcg [55]=code {Code :2<<8|7<<4,BitsWritten :12};_bcg [56]=code {Code :2<<8|8<<4,BitsWritten :12};_bcg [57]=code {Code :5<<8|8<<4,BitsWritten :12}; -_bcg [58]=code {Code :5<<8|9<<4,BitsWritten :12};_bcg [59]=code {Code :2<<8|11<<4,BitsWritten :12};_bcg [60]=code {Code :2<<8|12<<4,BitsWritten :12};_bcg [61]=code {Code :5<<8|10<<4,BitsWritten :12};_bcg [62]=code {Code :6<<8|6<<4,BitsWritten :12};_bcg [63]=code {Code :6<<8|7<<4,BitsWritten :12}; -_aa =make (map[int ]code );_aa [0]=code {Code :53<<8,BitsWritten :8};_aa [1]=code {Code :7<<(2+8),BitsWritten :6};_aa [2]=code {Code :7<<(4+8),BitsWritten :4};_aa [3]=code {Code :8<<(4+8),BitsWritten :4};_aa [4]=code {Code :11<<(4+8),BitsWritten :4};_aa [5]=code {Code :12<<(4+8),BitsWritten :4}; -_aa [6]=code {Code :14<<(4+8),BitsWritten :4};_aa [7]=code {Code :15<<(4+8),BitsWritten :4};_aa [8]=code {Code :19<<(3+8),BitsWritten :5};_aa [9]=code {Code :20<<(3+8),BitsWritten :5};_aa [10]=code {Code :7<<(3+8),BitsWritten :5};_aa [11]=code {Code :8<<(3+8),BitsWritten :5}; -_aa [12]=code {Code :8<<(2+8),BitsWritten :6};_aa [13]=code {Code :3<<(2+8),BitsWritten :6};_aa [14]=code {Code :52<<(2+8),BitsWritten :6};_aa [15]=code {Code :53<<(2+8),BitsWritten :6};_aa [16]=code {Code :42<<(2+8),BitsWritten :6};_aa [17]=code {Code :43<<(2+8),BitsWritten :6}; -_aa [18]=code {Code :39<<(1+8),BitsWritten :7};_aa [19]=code {Code :12<<(1+8),BitsWritten :7};_aa [20]=code {Code :8<<(1+8),BitsWritten :7};_aa [21]=code {Code :23<<(1+8),BitsWritten :7};_aa [22]=code {Code :3<<(1+8),BitsWritten :7};_aa [23]=code {Code :4<<(1+8),BitsWritten :7}; -_aa [24]=code {Code :40<<(1+8),BitsWritten :7};_aa [25]=code {Code :43<<(1+8),BitsWritten :7};_aa [26]=code {Code :19<<(1+8),BitsWritten :7};_aa [27]=code {Code :36<<(1+8),BitsWritten :7};_aa [28]=code {Code :24<<(1+8),BitsWritten :7};_aa [29]=code {Code :2<<8,BitsWritten :8}; -_aa [30]=code {Code :3<<8,BitsWritten :8};_aa [31]=code {Code :26<<8,BitsWritten :8};_aa [32]=code {Code :27<<8,BitsWritten :8};_aa [33]=code {Code :18<<8,BitsWritten :8};_aa [34]=code {Code :19<<8,BitsWritten :8};_aa [35]=code {Code :20<<8,BitsWritten :8}; -_aa [36]=code {Code :21<<8,BitsWritten :8};_aa [37]=code {Code :22<<8,BitsWritten :8};_aa [38]=code {Code :23<<8,BitsWritten :8};_aa [39]=code {Code :40<<8,BitsWritten :8};_aa [40]=code {Code :41<<8,BitsWritten :8};_aa [41]=code {Code :42<<8,BitsWritten :8}; -_aa [42]=code {Code :43<<8,BitsWritten :8};_aa [43]=code {Code :44<<8,BitsWritten :8};_aa [44]=code {Code :45<<8,BitsWritten :8};_aa [45]=code {Code :4<<8,BitsWritten :8};_aa [46]=code {Code :5<<8,BitsWritten :8};_aa [47]=code {Code :10<<8,BitsWritten :8}; -_aa [48]=code {Code :11<<8,BitsWritten :8};_aa [49]=code {Code :82<<8,BitsWritten :8};_aa [50]=code {Code :83<<8,BitsWritten :8};_aa [51]=code {Code :84<<8,BitsWritten :8};_aa [52]=code {Code :85<<8,BitsWritten :8};_aa [53]=code {Code :36<<8,BitsWritten :8}; -_aa [54]=code {Code :37<<8,BitsWritten :8};_aa [55]=code {Code :88<<8,BitsWritten :8};_aa [56]=code {Code :89<<8,BitsWritten :8};_aa [57]=code {Code :90<<8,BitsWritten :8};_aa [58]=code {Code :91<<8,BitsWritten :8};_aa [59]=code {Code :74<<8,BitsWritten :8}; -_aa [60]=code {Code :75<<8,BitsWritten :8};_aa [61]=code {Code :50<<8,BitsWritten :8};_aa [62]=code {Code :51<<8,BitsWritten :8};_aa [63]=code {Code :52<<8,BitsWritten :8};_dge =make (map[int ]code );_dge [64]=code {Code :3<<8|3<<6,BitsWritten :10};_dge [128]=code {Code :12<<8|8<<4,BitsWritten :12}; -_dge [192]=code {Code :12<<8|9<<4,BitsWritten :12};_dge [256]=code {Code :5<<8|11<<4,BitsWritten :12};_dge [320]=code {Code :3<<8|3<<4,BitsWritten :12};_dge [384]=code {Code :3<<8|4<<4,BitsWritten :12};_dge [448]=code {Code :3<<8|5<<4,BitsWritten :12}; -_dge [512]=code {Code :3<<8|12<<3,BitsWritten :13};_dge [576]=code {Code :3<<8|13<<3,BitsWritten :13};_dge [640]=code {Code :2<<8|10<<3,BitsWritten :13};_dge [704]=code {Code :2<<8|11<<3,BitsWritten :13};_dge [768]=code {Code :2<<8|12<<3,BitsWritten :13}; -_dge [832]=code {Code :2<<8|13<<3,BitsWritten :13};_dge [896]=code {Code :3<<8|18<<3,BitsWritten :13};_dge [960]=code {Code :3<<8|19<<3,BitsWritten :13};_dge [1024]=code {Code :3<<8|20<<3,BitsWritten :13};_dge [1088]=code {Code :3<<8|21<<3,BitsWritten :13}; -_dge [1152]=code {Code :3<<8|22<<3,BitsWritten :13};_dge [1216]=code {Code :119<<3,BitsWritten :13};_dge [1280]=code {Code :2<<8|18<<3,BitsWritten :13};_dge [1344]=code {Code :2<<8|19<<3,BitsWritten :13};_dge [1408]=code {Code :2<<8|20<<3,BitsWritten :13}; -_dge [1472]=code {Code :2<<8|21<<3,BitsWritten :13};_dge [1536]=code {Code :2<<8|26<<3,BitsWritten :13};_dge [1600]=code {Code :2<<8|27<<3,BitsWritten :13};_dge [1664]=code {Code :3<<8|4<<3,BitsWritten :13};_dge [1728]=code {Code :3<<8|5<<3,BitsWritten :13}; -_bg =make (map[int ]code );_bg [64]=code {Code :27<<(3+8),BitsWritten :5};_bg [128]=code {Code :18<<(3+8),BitsWritten :5};_bg [192]=code {Code :23<<(2+8),BitsWritten :6};_bg [256]=code {Code :55<<(1+8),BitsWritten :7};_bg [320]=code {Code :54<<8,BitsWritten :8}; -_bg [384]=code {Code :55<<8,BitsWritten :8};_bg [448]=code {Code :100<<8,BitsWritten :8};_bg [512]=code {Code :101<<8,BitsWritten :8};_bg [576]=code {Code :104<<8,BitsWritten :8};_bg [640]=code {Code :103<<8,BitsWritten :8};_bg [704]=code {Code :102<<8,BitsWritten :9}; -_bg [768]=code {Code :102<<8|1<<7,BitsWritten :9};_bg [832]=code {Code :105<<8,BitsWritten :9};_bg [896]=code {Code :105<<8|1<<7,BitsWritten :9};_bg [960]=code {Code :106<<8,BitsWritten :9};_bg [1024]=code {Code :106<<8|1<<7,BitsWritten :9};_bg [1088]=code {Code :107<<8,BitsWritten :9}; -_bg [1152]=code {Code :107<<8|1<<7,BitsWritten :9};_bg [1216]=code {Code :108<<8,BitsWritten :9};_bg [1280]=code {Code :108<<8|1<<7,BitsWritten :9};_bg [1344]=code {Code :109<<8,BitsWritten :9};_bg [1408]=code {Code :109<<8|1<<7,BitsWritten :9};_bg [1472]=code {Code :76<<8,BitsWritten :9}; -_bg [1536]=code {Code :76<<8|1<<7,BitsWritten :9};_bg [1600]=code {Code :77<<8,BitsWritten :9};_bg [1664]=code {Code :24<<(2+8),BitsWritten :6};_bg [1728]=code {Code :77<<8|1<<7,BitsWritten :9};_ed =make (map[int ]code );_ed [1792]=code {Code :1<<8,BitsWritten :11}; -_ed [1856]=code {Code :1<<8|4<<5,BitsWritten :11};_ed [1920]=code {Code :1<<8|5<<5,BitsWritten :11};_ed [1984]=code {Code :1<<8|2<<4,BitsWritten :12};_ed [2048]=code {Code :1<<8|3<<4,BitsWritten :12};_ed [2112]=code {Code :1<<8|4<<4,BitsWritten :12};_ed [2176]=code {Code :1<<8|5<<4,BitsWritten :12}; -_ed [2240]=code {Code :1<<8|6<<4,BitsWritten :12};_ed [2304]=code {Code :1<<8|7<<4,BitsWritten :12};_ed [2368]=code {Code :1<<8|12<<4,BitsWritten :12};_ed [2432]=code {Code :1<<8|13<<4,BitsWritten :12};_ed [2496]=code {Code :1<<8|14<<4,BitsWritten :12}; -_ed [2560]=code {Code :1<<8|15<<4,BitsWritten :12};_ffg =make (map[int ]byte );_ffg [0]=0xFF;_ffg [1]=0xFE;_ffg [2]=0xFC;_ffg [3]=0xF8;_ffg [4]=0xF0;_ffg [5]=0xE0;_ffg [6]=0xC0;_ffg [7]=0x80;_ffg [8]=0x00;};func (_ebf *Decoder )tryFetchEOL1 ()(bool ,error ){_dafe ,_ddd :=_ebf ._cdc .ReadBits (13); -if _ddd !=nil {return false ,_ddd ;};return _dafe ==0x3,nil ;};var (_bda byte =1;_gge byte =0;);const (_ tiffType =iota ;_dce ;_bdg ;_aae ;);func (_daa *Decoder )getNextChangingElement (_fbc int ,_gdc bool )int {_dcg :=0;if !_gdc {_dcg =1;};_cbf :=int (uint32 (_daa ._ecc )&0xFFFFFFFE)+_dcg ; -if _cbf > 2{_cbf -=2;};if _fbc ==0{return _cbf ;};for _bbdb :=_cbf ;_bbdb < _daa ._eba ;_bbdb +=2{if _fbc < _daa ._bed [_bbdb ]{_daa ._ecc =_bbdb ;return _bbdb ;};};return -1;};var _af =[...][]uint16 {{0x7,0x8,0xb,0xc,0xe,0xf},{0x12,0x13,0x14,0x1b,0x7,0x8},{0x17,0x18,0x2a,0x2b,0x3,0x34,0x35,0x7,0x8},{0x13,0x17,0x18,0x24,0x27,0x28,0x2b,0x3,0x37,0x4,0x8,0xc},{0x12,0x13,0x14,0x15,0x16,0x17,0x1a,0x1b,0x2,0x24,0x25,0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x3,0x32,0x33,0x34,0x35,0x36,0x37,0x4,0x4a,0x4b,0x5,0x52,0x53,0x54,0x55,0x58,0x59,0x5a,0x5b,0x64,0x65,0x67,0x68,0xa,0xb},{0x98,0x99,0x9a,0x9b,0xcc,0xcd,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xdb},{},{0x8,0xc,0xd},{0x12,0x13,0x14,0x15,0x16,0x17,0x1c,0x1d,0x1e,0x1f}}; -func (_cbeae *Decoder )decode1D ()error {var (_dba int ;_eea error ;);_gde :=true ;_cbeae ._ae =0;for {var _cfad int ;if _gde {_cfad ,_eea =_cbeae .decodeRun (_fg );}else {_cfad ,_eea =_cbeae .decodeRun (_f );};if _eea !=nil {return _eea ;};_dba +=_cfad ; -_cbeae ._de [_cbeae ._ae ]=_dba ;_cbeae ._ae ++;_gde =!_gde ;if _dba >=_cbeae ._ec {break ;};};return nil ;};var _df =[...][]uint16 {{0x2,0x3},{0x2,0x3},{0x2,0x3},{0x3},{0x4,0x5},{0x4,0x5,0x7},{0x4,0x7},{0x18},{0x17,0x18,0x37,0x8,0xf},{0x17,0x18,0x28,0x37,0x67,0x68,0x6c,0x8,0xc,0xd},{0x12,0x13,0x14,0x15,0x16,0x17,0x1c,0x1d,0x1e,0x1f,0x24,0x27,0x28,0x2b,0x2c,0x33,0x34,0x35,0x37,0x38,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x5b,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xda,0xdb},{0x4a,0x4b,0x4c,0x4d,0x52,0x53,0x54,0x55,0x5a,0x5b,0x64,0x65,0x6c,0x6d,0x72,0x73,0x74,0x75,0x76,0x77}}; -func _gaeg (_ced int )([]byte ,int ){var _gba []byte ;for _ede :=0;_ede < 2;_ede ++{_gba ,_ced =_dee (_gba ,_ced ,_ca );};return _gba ,_ced %8;};type tiffType int ;func _aedf (_cce []byte ,_ecda int ,_edf code )([]byte ,int ){_bfb :=true ;var _ecb []byte ; -_ecb ,_ecda =_dee (nil ,_ecda ,_edf );_gcc :=0;var _eeaf int ;for _gcc < len (_cce ){_eeaf ,_gcc =_egd (_cce ,_bfb ,_gcc );_ecb ,_ecda =_ggd (_ecb ,_ecda ,_eeaf ,_bfb );_bfb =!_bfb ;};return _ecb ,_ecda %8;};var (_be =_g .New ("\u0063\u0063\u0069\u0074tf\u0061\u0078\u0020\u0063\u006f\u0072\u0072\u0075\u0070\u0074\u0065\u0064\u0020\u0052T\u0043"); -_fd =_g .New ("\u0063\u0063\u0069\u0074tf\u0061\u0078\u0020\u0045\u004f\u004c\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064"););func (_acc *Decoder )decodeRowType2 ()error {if _acc ._gfb {_acc ._cdc .Align ();};if _gbc :=_acc .decode1D ();_gbc !=nil {return _gbc ; -};return nil ;};func (_ccb *Decoder )decodeG32D ()error {_ccb ._eba =_ccb ._ae ;_ccb ._de ,_ccb ._bed =_ccb ._bed ,_ccb ._de ;_dga :=true ;var (_cfc bool ;_eff int ;_bcf error ;);_ccb ._ae =0;_eca :for _eff < _ccb ._ec {_dfc :=_ff ._acd ;for {_cfc ,_bcf =_ccb ._cdc .ReadBool (); -if _bcf !=nil {return _bcf ;};_dfc =_dfc .walk (_cfc );if _dfc ==nil {continue _eca ;};if !_dfc ._fdg {continue ;};switch _dfc ._ffgb {case _ea :var _fgga int ;if _dga {_fgga ,_bcf =_ccb .decodeRun (_fg );}else {_fgga ,_bcf =_ccb .decodeRun (_f );};if _bcf !=nil {return _bcf ; -};_eff +=_fgga ;_ccb ._de [_ccb ._ae ]=_eff ;_ccb ._ae ++;if _dga {_fgga ,_bcf =_ccb .decodeRun (_f );}else {_fgga ,_bcf =_ccb .decodeRun (_fg );};if _bcf !=nil {return _bcf ;};_eff +=_fgga ;_ccb ._de [_ccb ._ae ]=_eff ;_ccb ._ae ++;case _gc :_bcc :=_ccb .getNextChangingElement (_eff ,_dga )+1; -if _bcc >=_ccb ._eba {_eff =_ccb ._ec ;}else {_eff =_ccb ._bed [_bcc ];};default:_bbc :=_ccb .getNextChangingElement (_eff ,_dga );if _bbc >=_ccb ._eba ||_bbc ==-1{_eff =_ccb ._ec +_dfc ._ffgb ;}else {_eff =_ccb ._bed [_bbc ]+_dfc ._ffgb ;};_ccb ._de [_ccb ._ae ]=_eff ; -_ccb ._ae ++;_dga =!_dga ;};continue _eca ;};};return nil ;};func (_aec *Decoder )decodeRun (_dbd *tree )(int ,error ){var _ecd int ;_ggca :=_dbd ._acd ;for {_fag ,_daf :=_aec ._cdc .ReadBool ();if _daf !=nil {return 0,_daf ;};_ggca =_ggca .walk (_fag ); -if _ggca ==nil {return 0,_g .New ("\u0075\u006e\u006bno\u0077\u006e\u0020\u0063\u006f\u0064\u0065\u0020\u0069n\u0020H\u0075f\u0066m\u0061\u006e\u0020\u0052\u004c\u0045\u0020\u0073\u0074\u0072\u0065\u0061\u006d");};if _ggca ._fdg {_ecd +=_ggca ._ffgb ;switch {case _ggca ._ffgb >=64:_ggca =_dbd ._acd ; -case _ggca ._ffgb >=0:return _ecd ,nil ;default:return _aec ._ec ,nil ;};};};};type code struct{Code uint16 ;BitsWritten int ;};func (_caa *treeNode )walk (_bfbd bool )*treeNode {if _bfbd {return _caa ._gdeg ;};return _caa ._ggfe ;};func _bfd (_edb int )([]byte ,int ){var _ace []byte ; -for _eag :=0;_eag < 6;_eag ++{_ace ,_edb =_dee (_ace ,_edb ,_ca );};return _ace ,_edb %8;};func (_bbe *Decoder )Read (in []byte )(int ,error ){if _bbe ._ee !=nil {return 0,_bbe ._ee ;};_bdgb :=len (in );var (_gd int ;_cgcd int ;);for _bdgb !=0{if _bbe ._cgc >=_bbe ._geg {if _ecf :=_bbe .fetch (); -_ecf !=nil {_bbe ._ee =_ecf ;return 0,_ecf ;};};if _bbe ._geg ==-1{return _gd ,_ef .EOF ;};switch {case _bdgb <=_bbe ._geg -_bbe ._cgc :_bga :=_bbe ._ega [_bbe ._cgc :_bbe ._cgc +_bdgb ];for _ ,_aad :=range _bga {if !_bbe ._cff {_aad =^_aad ;};in [_cgcd ]=_aad ; -_cgcd ++;};_gd +=len (_bga );_bbe ._cgc +=len (_bga );return _gd ,nil ;default:_cbg :=_bbe ._ega [_bbe ._cgc :];for _ ,_db :=range _cbg {if !_bbe ._cff {_db =^_db ;};in [_cgcd ]=_db ;_cgcd ++;};_gd +=len (_cbg );_bbe ._cgc +=len (_cbg );_bdgb -=len (_cbg ); -};};return _gd ,nil ;};func _egd (_dgg []byte ,_aac bool ,_gce int )(int ,int ){_cdeg :=0;for _gce < len (_dgg ){if _aac {if _dgg [_gce ]!=_bda {break ;};}else {if _dgg [_gce ]!=_gge {break ;};};_cdeg ++;_gce ++;};return _cdeg ,_gce ;};func (_ddee *Decoder )decode2D ()error {_ddee ._eba =_ddee ._ae ; -_ddee ._de ,_ddee ._bed =_ddee ._bed ,_ddee ._de ;_aee :=true ;var (_eaf bool ;_ebdb int ;_gaea error ;);_ddee ._ae =0;_aaeg :for _ebdb < _ddee ._ec {_bde :=_ff ._acd ;for {_eaf ,_gaea =_ddee ._cdc .ReadBool ();if _gaea !=nil {return _gaea ;};_bde =_bde .walk (_eaf ); -if _bde ==nil {continue _aaeg ;};if !_bde ._fdg {continue ;};switch _bde ._ffgb {case _ea :var _dbf int ;if _aee {_dbf ,_gaea =_ddee .decodeRun (_fg );}else {_dbf ,_gaea =_ddee .decodeRun (_f );};if _gaea !=nil {return _gaea ;};_ebdb +=_dbf ;_ddee ._de [_ddee ._ae ]=_ebdb ; -_ddee ._ae ++;if _aee {_dbf ,_gaea =_ddee .decodeRun (_f );}else {_dbf ,_gaea =_ddee .decodeRun (_fg );};if _gaea !=nil {return _gaea ;};_ebdb +=_dbf ;_ddee ._de [_ddee ._ae ]=_ebdb ;_ddee ._ae ++;case _gc :_acb :=_ddee .getNextChangingElement (_ebdb ,_aee )+1; -if _acb >=_ddee ._eba {_ebdb =_ddee ._ec ;}else {_ebdb =_ddee ._bed [_acb ];};default:_ebe :=_ddee .getNextChangingElement (_ebdb ,_aee );if _ebe >=_ddee ._eba ||_ebe ==-1{_ebdb =_ddee ._ec +_bde ._ffgb ;}else {_ebdb =_ddee ._bed [_ebe ]+_bde ._ffgb ;}; -_ddee ._de [_ddee ._ae ]=_ebdb ;_ddee ._ae ++;_aee =!_aee ;};continue _aaeg ;};};return nil ;};type treeNode struct{_ggfe *treeNode ;_gdeg *treeNode ;_ffgb int ;_cfae bool ;_fdg bool ;};func _ggdf (_fad []byte ,_dfbg int )int {if _dfbg >=len (_fad ){return _dfbg ; -};if _dfbg < -1{_dfbg =-1;};var _cae byte ;if _dfbg > -1{_cae =_fad [_dfbg ];}else {_cae =_bda ;};_deb :=_dfbg +1;for _deb < len (_fad ){if _fad [_deb ]!=_cae {break ;};_deb ++;};return _deb ;};type tree struct{_acd *treeNode };func (_aed *Decoder )decodeRow ()(_ebd error ){if !_aed ._ead &&_aed ._bgc > 0&&_aed ._bgc ==_aed ._bgg {return _ef .EOF ; -};switch _aed ._da {case _dce :_ebd =_aed .decodeRowType2 ();case _bdg :_ebd =_aed .decodeRowType4 ();case _aae :_ebd =_aed .decodeRowType6 ();};if _ebd !=nil {return _ebd ;};_bdc :=0;_efa :=true ;_aed ._ecc =0;for _fdc :=0;_fdc < _aed ._ae ;_fdc ++{_cfff :=_aed ._ec ; -if _fdc !=_aed ._ae {_cfff =_aed ._de [_fdc ];};if _cfff > _aed ._ec {_cfff =_aed ._ec ;};_eeb :=_bdc /8;for _bdc %8!=0&&_cfff -_bdc > 0{var _egc byte ;if !_efa {_egc =1< 7{_aed ._ega [_eeb ]=_agb ;_bdc +=8;_eeb ++;};};for _cfff -_bdc > 0{if _bdc %8==0{_aed ._ega [_eeb ]=0;};var _dcd byte ;if !_efa {_dcd =1<>uint (_ceb ))&1)!=0;_acda :=_bdef .walk (_dage ); -if _acda !=nil {if _acda ._fdg {return _g .New ("\u006e\u006f\u0064\u0065\u0020\u0069\u0073\u0020\u006c\u0065\u0061\u0066\u002c\u0020\u006eo\u0020o\u0074\u0068\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067");};_bdef =_acda ;continue ; -};_acda =&treeNode {};if _fgc ==_gda -1{_acda ._ffgb =_ccd ;_acda ._fdg =true ;};if _cadg ==0{_acda ._cfae =true ;};_bdef .set (_dage ,_acda );_bdef =_acda ;};return nil ;};func (_eeda *treeNode )set (_bcd bool ,_aaa *treeNode ){if !_bcd {_eeda ._ggfe =_aaa ; -}else {_eeda ._gdeg =_aaa ;};};type Encoder struct{K int ;EndOfLine bool ;EncodedByteAlign bool ;Columns int ;Rows int ;EndOfBlock bool ;BlackIs1 bool ;DamagedRowsBeforeError int ;};func (_ggf *Decoder )decodeRowType4 ()error {if !_ggf ._ab {return _ggf .decoderRowType41D (); -};if _ggf ._gfb {_ggf ._cdc .Align ();};_ggf ._cdc .Mark ();_geac ,_fac :=_ggf .tryFetchEOL ();if _fac !=nil {return _fac ;};if !_geac &&_ggf ._fc {_ggf ._dfd ++;if _ggf ._dfd > _ggf ._bgcb {return _fd ;};_ggf ._cdc .Reset ();};if !_geac {_ggf ._cdc .Reset (); -};_gdg ,_fac :=_ggf ._cdc .ReadBool ();if _fac !=nil {return _fac ;};if _gdg {if _geac &&_ggf ._ead {if _fac =_ggf .tryFetchRTC2D ();_fac !=nil {return _fac ;};};_fac =_ggf .decode1D ();}else {_fac =_ggf .decode2D ();};if _fac !=nil {return _fac ;};return nil ; -};func (_ffcd *Encoder )encodeG32D (_bad [][]byte )[]byte {var _fcd []byte ;var _gfd int ;for _eee :=0;_eee < len (_bad );_eee +=_ffcd .K {if _ffcd .Rows > 0&&!_ffcd .EndOfBlock &&_eee ==_ffcd .Rows {break ;};_dfb ,_bgcc :=_aedf (_bad [_eee ],_gfd ,_ac ); -_fcd =_ffcd .appendEncodedRow (_fcd ,_dfb ,_gfd );if _ffcd .EncodedByteAlign {_bgcc =0;};_gfd =_bgcc ;for _aga :=_eee +1;_aga < (_eee +_ffcd .K )&&_aga < len (_bad );_aga ++{if _ffcd .Rows > 0&&!_ffcd .EndOfBlock &&_aga ==_ffcd .Rows {break ;};_dac ,_gef :=_dee (nil ,_gfd ,_gcf ); -var _bedd ,_gbcb ,_baf int ;_efg :=-1;for _efg < len (_bad [_aga ]){_bedd =_ggdf (_bad [_aga ],_efg );_gbcb =_cef (_bad [_aga ],_bad [_aga -1],_efg );_baf =_ggdf (_bad [_aga -1],_gbcb );if _baf < _bedd {_dac ,_gef =_cec (_dac ,_gef );_efg =_baf ;}else {if _d .Abs (float64 (_gbcb -_bedd ))> 3{_dac ,_gef ,_efg =_cga (_bad [_aga ],_dac ,_gef ,_efg ,_bedd ); -}else {_dac ,_gef =_cgd (_dac ,_gef ,_bedd ,_gbcb );_efg =_bedd ;};};};_fcd =_ffcd .appendEncodedRow (_fcd ,_dac ,_gfd );if _ffcd .EncodedByteAlign {_gef =0;};_gfd =_gef %8;};};if _ffcd .EndOfBlock {_dcaa ,_ :=_cdb (_gfd );_fcd =_ffcd .appendEncodedRow (_fcd ,_dcaa ,_gfd ); -};return _fcd ;};func (_bgae *Encoder )encodeG4 (_ccf [][]byte )[]byte {_egb :=make ([][]byte ,len (_ccf ));copy (_egb ,_ccf );_egb =_bbcf (_egb );var _abd []byte ;var _dagf int ;for _cbfb :=1;_cbfb < len (_egb );_cbfb ++{if _bgae .Rows > 0&&!_bgae .EndOfBlock &&_cbfb ==(_bgae .Rows +1){break ; -};var _ebea []byte ;var _eeg ,_cbgb ,_gcd int ;_faf :=_dagf ;_cdd :=-1;for _cdd < len (_egb [_cbfb ]){_eeg =_ggdf (_egb [_cbfb ],_cdd );_cbgb =_cef (_egb [_cbfb ],_egb [_cbfb -1],_cdd );_gcd =_ggdf (_egb [_cbfb -1],_cbgb );if _gcd < _eeg {_ebea ,_faf =_dee (_ebea ,_faf ,_fb ); -_cdd =_gcd ;}else {if _d .Abs (float64 (_cbgb -_eeg ))> 3{_ebea ,_faf ,_cdd =_cga (_egb [_cbfb ],_ebea ,_faf ,_cdd ,_eeg );}else {_ebea ,_faf =_cgd (_ebea ,_faf ,_eeg ,_cbgb );_cdd =_eeg ;};};};_abd =_bgae .appendEncodedRow (_abd ,_ebea ,_dagf );if _bgae .EncodedByteAlign {_faf =0; -};_dagf =_faf %8;};if _bgae .EndOfBlock {_faab ,_ :=_gaeg (_dagf );_abd =_bgae .appendEncodedRow (_abd ,_faab ,_dagf );};return _abd ;};func (_ecga *tree )fillWithNode (_cafg ,_gaec int ,_cgfg *treeNode )error {_aef :=_ecga ._acd ;for _afe :=0;_afe < _cafg ; -_afe ++{_fbg :=uint (_cafg -1-_afe );_bfa :=((_gaec >>_fbg )&1)!=0;_aabf :=_aef .walk (_bfa );if _aabf !=nil {if _aabf ._fdg {return _g .New ("\u006e\u006f\u0064\u0065\u0020\u0069\u0073\u0020\u006c\u0065\u0061\u0066\u002c\u0020\u006eo\u0020o\u0074\u0068\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067"); -};_aef =_aabf ;continue ;};if _afe ==_cafg -1{_aabf =_cgfg ;}else {_aabf =&treeNode {};};if _gaec ==0{_aabf ._cfae =true ;};_aef .set (_bfa ,_aabf );_aef =_aabf ;};return nil ;};func _cef (_dgf ,_fef []byte ,_gag int )int {_dfcf :=_ggdf (_fef ,_gag );if _dfcf < len (_fef )&&(_gag ==-1&&_fef [_dfcf ]==_bda ||_gag >=0&&_gag < len (_dgf )&&_dgf [_gag ]==_fef [_dfcf ]||_gag >=len (_dgf )&&_dgf [_gag -1]!=_fef [_dfcf ]){_dfcf =_ggdf (_fef ,_dfcf ); -};return _dfcf ;};func (_cfd *Decoder )decodeRowType6 ()error {if _cfd ._gfb {_cfd ._cdc .Align ();};if _cfd ._ead {_cfd ._cdc .Mark ();_aaef ,_agff :=_cfd .tryFetchEOL ();if _agff !=nil {return _agff ;};if _aaef {_aaef ,_agff =_cfd .tryFetchEOL ();if _agff !=nil {return _agff ; -};if _aaef {return _ef .EOF ;};};_cfd ._cdc .Reset ();};return _cfd .decode2D ();};func _cga (_agfg ,_bgf []byte ,_dcda ,_ade ,_eebc int )([]byte ,int ,int ){_dda :=_ggdf (_agfg ,_eebc );_ecag :=_ade >=0&&_agfg [_ade ]==_bda ||_ade ==-1;_bgf ,_dcda =_dee (_bgf ,_dcda ,_fbe ); -var _cda int ;if _ade > -1{_cda =_eebc -_ade ;}else {_cda =_eebc -_ade -1;};_bgf ,_dcda =_ggd (_bgf ,_dcda ,_cda ,_ecag );_ecag =!_ecag ;_gac :=_dda -_eebc ;_bgf ,_dcda =_ggd (_bgf ,_dcda ,_gac ,_ecag );_ade =_dda ;return _bgf ,_dcda ,_ade ;};func (_ged tiffType )String ()string {switch _ged {case _dce :return "\u0074\u0069\u0066\u0066\u0054\u0079\u0070\u0065\u004d\u006f\u0064i\u0066\u0069\u0065\u0064\u0048\u0075\u0066\u0066\u006d\u0061n\u0052\u006c\u0065"; -case _bdg :return "\u0074\u0069\u0066\u0066\u0054\u0079\u0070\u0065\u0054\u0034";case _aae :return "\u0074\u0069\u0066\u0066\u0054\u0079\u0070\u0065\u0054\u0036";default:return "\u0075n\u0064\u0065\u0066\u0069\u006e\u0065d";};};func (_aaca *Encoder )appendEncodedRow (_dacf ,_fae []byte ,_ffge int )[]byte {if len (_dacf )> 0&&_ffge !=0&&!_aaca .EncodedByteAlign {_dacf [len (_dacf )-1]=_dacf [len (_dacf )-1]|_fae [0]; -_dacf =append (_dacf ,_fae [1:]...);}else {_dacf =append (_dacf ,_fae ...);};return _dacf ;};func _fdd (_fcg ,_gfc []byte ,_eed int ,_cfce bool )int {_eadf :=_ggdf (_gfc ,_eed );if _eadf < len (_gfc )&&(_eed ==-1&&_gfc [_eadf ]==_bda ||_eed >=0&&_eed < len (_fcg )&&_fcg [_eed ]==_gfc [_eadf ]||_eed >=len (_fcg )&&_cfce &&_gfc [_eadf ]==_bda ||_eed >=len (_fcg )&&!_cfce &&_gfc [_eadf ]==_gge ){_eadf =_ggdf (_gfc ,_eadf ); -};return _eadf ;};func _cec (_cefa []byte ,_eec int )([]byte ,int ){return _dee (_cefa ,_eec ,_fb )};func _aage (_bdgc int ,_daff bool )(code ,int ,bool ){if _bdgc < 64{if _daff {return _aa [_bdgc ],0,true ;};return _bcg [_bdgc ],0,true ;};_afa :=_bdgc /64; -if _afa > 40{return _ed [2560],_bdgc -2560,false ;};if _afa > 27{return _ed [_afa *64],_bdgc -_afa *64,false ;};if _daff {return _bg [_afa *64],_bdgc -_afa *64,false ;};return _dge [_afa *64],_bdgc -_afa *64,false ;};func (_deg *Encoder )encodeG31D (_aab [][]byte )[]byte {var _aag []byte ; -_aeg :=0;for _bce :=range _aab {if _deg .Rows > 0&&!_deg .EndOfBlock &&_bce ==_deg .Rows {break ;};_dag ,_abb :=_aedf (_aab [_bce ],_aeg ,_ca );_aag =_deg .appendEncodedRow (_aag ,_dag ,_aeg );if _deg .EncodedByteAlign {_abb =0;};_aeg =_abb ;};if _deg .EndOfBlock {_fage ,_ :=_bfd (_aeg ); -_aag =_deg .appendEncodedRow (_aag ,_fage ,_aeg );};return _aag ;};func (_ecg *Decoder )tryFetchRTC2D ()(_dceg error ){_ecg ._cdc .Mark ();var _ffcc bool ;for _gbg :=0;_gbg < 5;_gbg ++{_ffcc ,_dceg =_ecg .tryFetchEOL1 ();if _dceg !=nil {if _g .Is (_dceg ,_ef .EOF ){if _gbg ==0{break ; -};return _be ;};};if _ffcc {continue ;};if _gbg > 0{return _be ;};break ;};if _ffcc {return _ef .EOF ;};_ecg ._cdc .Reset ();return _dceg ;};func _cgd (_cbc []byte ,_adg ,_fbf ,_cgf int )([]byte ,int ){_fbb :=_efac (_fbf ,_cgf );_cbc ,_adg =_dee (_cbc ,_adg ,_fbb ); -return _cbc ,_adg ;};func _ggd (_beg []byte ,_bafa int ,_egef int ,_caff bool )([]byte ,int ){var (_bbgc code ;_bca bool ;);for !_bca {_bbgc ,_egef ,_bca =_aage (_egef ,_caff );_beg ,_bafa =_dee (_beg ,_bafa ,_bbgc );};return _beg ,_bafa ;};func _bbcf (_geda [][]byte )[][]byte {_fcb :=make ([]byte ,len (_geda [0])); -for _fcbc :=range _fcb {_fcb [_fcbc ]=_bda ;};_geda =append (_geda ,[]byte {});for _dbdf :=len (_geda )-1;_dbdf > 0;_dbdf --{_geda [_dbdf ]=_geda [_dbdf -1];};_geda [0]=_fcb ;return _geda ;};func _dee (_ecfd []byte ,_bae int ,_cgg code )([]byte ,int ){_egcd :=0; -for _egcd < _cgg .BitsWritten {_gbf :=_bae /8;_adc :=_bae %8;if _gbf >=len (_ecfd ){_ecfd =append (_ecfd ,0);};_gaf :=8-_adc ;_abf :=_cgg .BitsWritten -_egcd ;if _gaf > _abf {_gaf =_abf ;};if _egcd < 8{_ecfd [_gbf ]=_ecfd [_gbf ]|byte (_cgg .Code >>uint (8+_adc -_egcd ))&_ffg [8-_gaf -_adc ]; -}else {_ecfd [_gbf ]=_ecfd [_gbf ]|(byte (_cgg .Code <>uint (_adc );};_bae +=_gaf ;_egcd +=_gaf ;};return _ecfd ,_bae ;};func (_geb *Decoder )decoderRowType41D ()error {if _geb ._gfb {_geb ._cdc .Align ();};_geb ._cdc .Mark (); -var (_cgb bool ;_dde error ;);if _geb ._fc {_cgb ,_dde =_geb .tryFetchEOL ();if _dde !=nil {return _dde ;};if !_cgb {return _fd ;};}else {_cgb ,_dde =_geb .looseFetchEOL ();if _dde !=nil {return _dde ;};};if !_cgb {_geb ._cdc .Reset ();};if _cgb &&_geb ._ead {_geb ._cdc .Mark (); -for _cbea :=0;_cbea < 5;_cbea ++{_cgb ,_dde =_geb .tryFetchEOL ();if _dde !=nil {if _g .Is (_dde ,_ef .EOF ){if _cbea ==0{break ;};return _be ;};};if _cgb {continue ;};if _cbea > 0{return _be ;};break ;};if _cgb {return _ef .EOF ;};_geb ._cdc .Reset (); -};if _dde =_geb .decode1D ();_dde !=nil {return _dde ;};return nil ;};func _efac (_fed ,_dgab int )code {var _bggf code ;switch _dgab -_fed {case -1:_bggf =_fgg ;case -2:_bggf =_egg ;case -3:_bggf =_bf ;case 0:_bggf =_ffc ;case 1:_bggf =_caf ;case 2:_bggf =_eab ; -case 3:_bggf =_afb ;};return _bggf ;};func NewDecoder (data []byte ,options DecodeOptions )(*Decoder ,error ){_gae :=&Decoder {_cdc :_b .NewReader (data ),_ec :options .Columns ,_bgc :options .Rows ,_bgcb :options .DamagedRowsBeforeError ,_ega :make ([]byte ,(options .Columns +7)/8),_bed :make ([]int ,options .Columns +2),_de :make ([]int ,options .Columns +2),_gfb :options .EncodedByteAligned ,_cff :options .BlackIsOne ,_fc :options .EndOfLine ,_ead :options .EndOfBlock }; -switch {case options .K ==0:_gae ._da =_bdg ;if len (data )< 20{return nil ,_g .New ("\u0074o\u006f\u0020\u0073\u0068o\u0072\u0074\u0020\u0063\u0063i\u0074t\u0066a\u0078\u0020\u0073\u0074\u0072\u0065\u0061m");};_efb :=data [:20];if _efb [0]!=0||(_efb [1]>>4!=1&&_efb [1]!=1){_gae ._da =_dce ; -_ce :=(uint16 (_efb [0])<<8+uint16 (_efb [1]&0xff))>>4;for _eda :=12;_eda < 160;_eda ++{_ce =(_ce <<1)+uint16 ((_efb [_eda /8]>>uint16 (7-(_eda %8)))&0x01);if _ce &0xfff==1{_gae ._da =_bdg ;break ;};};};case options .K < 0:_gae ._da =_aae ;case options .K > 0:_gae ._da =_bdg ; -_gae ._ab =true ;};switch _gae ._da {case _dce ,_bdg ,_aae :default:return nil ,_g .New ("\u0075\u006ek\u006e\u006f\u0077\u006e\u0020\u0063\u0063\u0069\u0074\u0074\u0066\u0061\u0078\u002e\u0044\u0065\u0063\u006f\u0064\u0065\u0072\u0020ty\u0070\u0065"); -};return _gae ,nil ;};type DecodeOptions struct{Columns int ;Rows int ;K int ;EncodedByteAligned bool ;BlackIsOne bool ;EndOfBlock bool ;EndOfLine bool ;DamagedRowsBeforeError int ;};func (_cde *Decoder )fetch ()error {if _cde ._geg ==-1{return nil ;}; -if _cde ._cgc < _cde ._geg {return nil ;};_cde ._geg =0;_cbe :=_cde .decodeRow ();if _cbe !=nil {if !_g .Is (_cbe ,_ef .EOF ){return _cbe ;};if _cde ._geg !=0{return _cbe ;};_cde ._geg =-1;};_cde ._cgc =0;return nil ;};var _cc =[...][]uint16 {{2,3,4,5,6,7},{128,8,9,64,10,11},{192,1664,16,17,13,14,15,1,12},{26,21,28,27,18,24,25,22,256,23,20,19},{33,34,35,36,37,38,31,32,29,53,54,39,40,41,42,43,44,30,61,62,63,0,320,384,45,59,60,46,49,50,51,52,55,56,57,58,448,512,640,576,47,48},{1472,1536,1600,1728,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408},{},{1792,1856,1920},{1984,2048,2112,2176,2240,2304,2368,2432,2496,2560}}; -func (_dff *Encoder )Encode (pixels [][]byte )[]byte {if _dff .BlackIs1 {_bda =0;_gge =1;}else {_bda =1;_gge =0;};if _dff .K ==0{return _dff .encodeG31D (pixels );};if _dff .K > 0{return _dff .encodeG32D (pixels );};if _dff .K < 0{return _dff .encodeG4 (pixels ); -};return nil ;}; \ No newline at end of file +package ccittfax ;import (_g "errors";_c "github.com/unidoc/unipdf/v3/internal/bitwise";_a "io";_gd "math";);var (_ag *treeNode ;_ff *treeNode ;_cf *tree ;_e *tree ;_gg *tree ;_fe *tree ;_ca =-2000;_cfb =-1000;_ee =-3000;_caf =-4000;);func init (){_ag =&treeNode {_bce :true ,_bfe :_ca }; +_ff =&treeNode {_bfe :_cfb ,_age :_ag };_ff ._adff =_ff ;_gg =&tree {_fbff :&treeNode {}};if _eb :=_gg .fillWithNode (12,0,_ff );_eb !=nil {panic (_eb .Error ());};if _b :=_gg .fillWithNode (12,1,_ag );_b !=nil {panic (_b .Error ());};_cf =&tree {_fbff :&treeNode {}}; +for _ggd :=0;_ggd < len (_bb );_ggd ++{for _cb :=0;_cb < len (_bb [_ggd ]);_cb ++{if _fd :=_cf .fill (_ggd +2,int (_bb [_ggd ][_cb ]),int (_aa [_ggd ][_cb ]));_fd !=nil {panic (_fd .Error ());};};};if _cff :=_cf .fillWithNode (12,0,_ff );_cff !=nil {panic (_cff .Error ()); +};if _cab :=_cf .fillWithNode (12,1,_ag );_cab !=nil {panic (_cab .Error ());};_e =&tree {_fbff :&treeNode {}};for _d :=0;_d < len (_dg );_d ++{for _fc :=0;_fc < len (_dg [_d ]);_fc ++{if _fa :=_e .fill (_d +4,int (_dg [_d ][_fc ]),int (_gdg [_d ][_fc ])); +_fa !=nil {panic (_fa .Error ());};};};if _cd :=_e .fillWithNode (12,0,_ff );_cd !=nil {panic (_cd .Error ());};if _fdc :=_e .fillWithNode (12,1,_ag );_fdc !=nil {panic (_fdc .Error ());};_fe =&tree {_fbff :&treeNode {}};if _ga :=_fe .fill (4,1,_ee );_ga !=nil {panic (_ga .Error ()); +};if _gf :=_fe .fill (3,1,_caf );_gf !=nil {panic (_gf .Error ());};if _fad :=_fe .fill (1,1,0);_fad !=nil {panic (_fad .Error ());};if _fab :=_fe .fill (3,3,1);_fab !=nil {panic (_fab .Error ());};if _dc :=_fe .fill (6,3,2);_dc !=nil {panic (_dc .Error ()); +};if _cae :=_fe .fill (7,3,3);_cae !=nil {panic (_cae .Error ());};if _fdf :=_fe .fill (3,2,-1);_fdf !=nil {panic (_fdf .Error ());};if _ec :=_fe .fill (6,2,-2);_ec !=nil {panic (_ec .Error ());};if _ad :=_fe .fill (7,2,-3);_ad !=nil {panic (_ad .Error ()); +};};func _ebd (_ffcb ,_cba []byte ,_gac int )int {_gbgf :=_ecfd (_cba ,_gac );if _gbgf < len (_cba )&&(_gac ==-1&&_cba [_gbgf ]==_ceb ||_gac >=0&&_gac < len (_ffcb )&&_ffcb [_gac ]==_cba [_gbgf ]||_gac >=len (_ffcb )&&_ffcb [_gac -1]!=_cba [_gbgf ]){_gbgf =_ecfd (_cba ,_gbgf ); +};return _gbgf ;};var (_gff =_g .New ("\u0063\u0063\u0069\u0074tf\u0061\u0078\u0020\u0063\u006f\u0072\u0072\u0075\u0070\u0074\u0065\u0064\u0020\u0052T\u0043");_dbd =_g .New ("\u0063\u0063\u0069\u0074tf\u0061\u0078\u0020\u0045\u004f\u004c\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064"); +);func (_df tiffType )String ()string {switch _df {case _ab :return "\u0074\u0069\u0066\u0066\u0054\u0079\u0070\u0065\u004d\u006f\u0064i\u0066\u0069\u0065\u0064\u0048\u0075\u0066\u0066\u006d\u0061n\u0052\u006c\u0065";case _db :return "\u0074\u0069\u0066\u0066\u0054\u0079\u0070\u0065\u0054\u0034"; +case _gdf :return "\u0074\u0069\u0066\u0066\u0054\u0079\u0070\u0065\u0054\u0036";default:return "\u0075n\u0064\u0065\u0066\u0069\u006e\u0065d";};};func (_ecb *treeNode )walk (_ebga bool )*treeNode {if _ebga {return _ecb ._age ;};return _ecb ._adff ;};func (_dae *Encoder )encodeG4 (_fbg [][]byte )[]byte {_cad :=make ([][]byte ,len (_fbg )); +copy (_cad ,_fbg );_cad =_fbd (_cad );var _abe []byte ;var _fag int ;for _fga :=1;_fga < len (_cad );_fga ++{if _dae .Rows > 0&&!_dae .EndOfBlock &&_fga ==(_dae .Rows +1){break ;};var _aee []byte ;var _ccf ,_def ,_cbgf int ;_aaf :=_fag ;_fcb :=-1;for _fcb < len (_cad [_fga ]){_ccf =_ecfd (_cad [_fga ],_fcb ); +_def =_ebd (_cad [_fga ],_cad [_fga -1],_fcb );_cbgf =_ecfd (_cad [_fga -1],_def );if _cbgf < _ccf {_aee ,_aaf =_bgb (_aee ,_aaf ,_dge );_fcb =_cbgf ;}else {if _gd .Abs (float64 (_def -_ccf ))> 3{_aee ,_aaf ,_fcb =_eada (_cad [_fga ],_aee ,_aaf ,_fcb ,_ccf ); +}else {_aee ,_aaf =_acab (_aee ,_aaf ,_ccf ,_def );_fcb =_ccf ;};};};_abe =_dae .appendEncodedRow (_abe ,_aee ,_fag );if _dae .EncodedByteAlign {_aaf =0;};_fag =_aaf %8;};if _dae .EndOfBlock {_ddg ,_ :=_agdf (_fag );_abe =_dae .appendEncodedRow (_abe ,_ddg ,_fag ); +};return _abe ;};func (_gag *Decoder )Read (in []byte )(int ,error ){if _gag ._eg !=nil {return 0,_gag ._eg ;};_ba :=len (in );var (_fbc int ;_gcg int ;);for _ba !=0{if _gag ._bbc >=_gag ._bf {if _af :=_gag .fetch ();_af !=nil {_gag ._eg =_af ;return 0,_af ; +};};if _gag ._bf ==-1{return _fbc ,_a .EOF ;};switch {case _ba <=_gag ._bf -_gag ._bbc :_cdd :=_gag ._gfd [_gag ._bbc :_gag ._bbc +_ba ];for _ ,_eag :=range _cdd {if !_gag ._acc {_eag =^_eag ;};in [_gcg ]=_eag ;_gcg ++;};_fbc +=len (_cdd );_gag ._bbc +=len (_cdd ); +return _fbc ,nil ;default:_gba :=_gag ._gfd [_gag ._bbc :];for _ ,_fae :=range _gba {if !_gag ._acc {_fae =^_fae ;};in [_gcg ]=_fae ;_gcg ++;};_fbc +=len (_gba );_gag ._bbc +=len (_gba );_ba -=len (_gba );};};return _fbc ,nil ;};func init (){_ggb =make (map[int ]code ); +_ggb [0]=code {Code :13<<8|3<<6,BitsWritten :10};_ggb [1]=code {Code :2<<(5+8),BitsWritten :3};_ggb [2]=code {Code :3<<(6+8),BitsWritten :2};_ggb [3]=code {Code :2<<(6+8),BitsWritten :2};_ggb [4]=code {Code :3<<(5+8),BitsWritten :3};_ggb [5]=code {Code :3<<(4+8),BitsWritten :4}; +_ggb [6]=code {Code :2<<(4+8),BitsWritten :4};_ggb [7]=code {Code :3<<(3+8),BitsWritten :5};_ggb [8]=code {Code :5<<(2+8),BitsWritten :6};_ggb [9]=code {Code :4<<(2+8),BitsWritten :6};_ggb [10]=code {Code :4<<(1+8),BitsWritten :7};_ggb [11]=code {Code :5<<(1+8),BitsWritten :7}; +_ggb [12]=code {Code :7<<(1+8),BitsWritten :7};_ggb [13]=code {Code :4<<8,BitsWritten :8};_ggb [14]=code {Code :7<<8,BitsWritten :8};_ggb [15]=code {Code :12<<8,BitsWritten :9};_ggb [16]=code {Code :5<<8|3<<6,BitsWritten :10};_ggb [17]=code {Code :6<<8,BitsWritten :10}; +_ggb [18]=code {Code :2<<8,BitsWritten :10};_ggb [19]=code {Code :12<<8|7<<5,BitsWritten :11};_ggb [20]=code {Code :13<<8,BitsWritten :11};_ggb [21]=code {Code :13<<8|4<<5,BitsWritten :11};_ggb [22]=code {Code :6<<8|7<<5,BitsWritten :11};_ggb [23]=code {Code :5<<8,BitsWritten :11}; +_ggb [24]=code {Code :2<<8|7<<5,BitsWritten :11};_ggb [25]=code {Code :3<<8,BitsWritten :11};_ggb [26]=code {Code :12<<8|10<<4,BitsWritten :12};_ggb [27]=code {Code :12<<8|11<<4,BitsWritten :12};_ggb [28]=code {Code :12<<8|12<<4,BitsWritten :12};_ggb [29]=code {Code :12<<8|13<<4,BitsWritten :12}; +_ggb [30]=code {Code :6<<8|8<<4,BitsWritten :12};_ggb [31]=code {Code :6<<8|9<<4,BitsWritten :12};_ggb [32]=code {Code :6<<8|10<<4,BitsWritten :12};_ggb [33]=code {Code :6<<8|11<<4,BitsWritten :12};_ggb [34]=code {Code :13<<8|2<<4,BitsWritten :12};_ggb [35]=code {Code :13<<8|3<<4,BitsWritten :12}; +_ggb [36]=code {Code :13<<8|4<<4,BitsWritten :12};_ggb [37]=code {Code :13<<8|5<<4,BitsWritten :12};_ggb [38]=code {Code :13<<8|6<<4,BitsWritten :12};_ggb [39]=code {Code :13<<8|7<<4,BitsWritten :12};_ggb [40]=code {Code :6<<8|12<<4,BitsWritten :12};_ggb [41]=code {Code :6<<8|13<<4,BitsWritten :12}; +_ggb [42]=code {Code :13<<8|10<<4,BitsWritten :12};_ggb [43]=code {Code :13<<8|11<<4,BitsWritten :12};_ggb [44]=code {Code :5<<8|4<<4,BitsWritten :12};_ggb [45]=code {Code :5<<8|5<<4,BitsWritten :12};_ggb [46]=code {Code :5<<8|6<<4,BitsWritten :12};_ggb [47]=code {Code :5<<8|7<<4,BitsWritten :12}; +_ggb [48]=code {Code :6<<8|4<<4,BitsWritten :12};_ggb [49]=code {Code :6<<8|5<<4,BitsWritten :12};_ggb [50]=code {Code :5<<8|2<<4,BitsWritten :12};_ggb [51]=code {Code :5<<8|3<<4,BitsWritten :12};_ggb [52]=code {Code :2<<8|4<<4,BitsWritten :12};_ggb [53]=code {Code :3<<8|7<<4,BitsWritten :12}; +_ggb [54]=code {Code :3<<8|8<<4,BitsWritten :12};_ggb [55]=code {Code :2<<8|7<<4,BitsWritten :12};_ggb [56]=code {Code :2<<8|8<<4,BitsWritten :12};_ggb [57]=code {Code :5<<8|8<<4,BitsWritten :12};_ggb [58]=code {Code :5<<8|9<<4,BitsWritten :12};_ggb [59]=code {Code :2<<8|11<<4,BitsWritten :12}; +_ggb [60]=code {Code :2<<8|12<<4,BitsWritten :12};_ggb [61]=code {Code :5<<8|10<<4,BitsWritten :12};_ggb [62]=code {Code :6<<8|6<<4,BitsWritten :12};_ggb [63]=code {Code :6<<8|7<<4,BitsWritten :12};_ac =make (map[int ]code );_ac [0]=code {Code :53<<8,BitsWritten :8}; +_ac [1]=code {Code :7<<(2+8),BitsWritten :6};_ac [2]=code {Code :7<<(4+8),BitsWritten :4};_ac [3]=code {Code :8<<(4+8),BitsWritten :4};_ac [4]=code {Code :11<<(4+8),BitsWritten :4};_ac [5]=code {Code :12<<(4+8),BitsWritten :4};_ac [6]=code {Code :14<<(4+8),BitsWritten :4}; +_ac [7]=code {Code :15<<(4+8),BitsWritten :4};_ac [8]=code {Code :19<<(3+8),BitsWritten :5};_ac [9]=code {Code :20<<(3+8),BitsWritten :5};_ac [10]=code {Code :7<<(3+8),BitsWritten :5};_ac [11]=code {Code :8<<(3+8),BitsWritten :5};_ac [12]=code {Code :8<<(2+8),BitsWritten :6}; +_ac [13]=code {Code :3<<(2+8),BitsWritten :6};_ac [14]=code {Code :52<<(2+8),BitsWritten :6};_ac [15]=code {Code :53<<(2+8),BitsWritten :6};_ac [16]=code {Code :42<<(2+8),BitsWritten :6};_ac [17]=code {Code :43<<(2+8),BitsWritten :6};_ac [18]=code {Code :39<<(1+8),BitsWritten :7}; +_ac [19]=code {Code :12<<(1+8),BitsWritten :7};_ac [20]=code {Code :8<<(1+8),BitsWritten :7};_ac [21]=code {Code :23<<(1+8),BitsWritten :7};_ac [22]=code {Code :3<<(1+8),BitsWritten :7};_ac [23]=code {Code :4<<(1+8),BitsWritten :7};_ac [24]=code {Code :40<<(1+8),BitsWritten :7}; +_ac [25]=code {Code :43<<(1+8),BitsWritten :7};_ac [26]=code {Code :19<<(1+8),BitsWritten :7};_ac [27]=code {Code :36<<(1+8),BitsWritten :7};_ac [28]=code {Code :24<<(1+8),BitsWritten :7};_ac [29]=code {Code :2<<8,BitsWritten :8};_ac [30]=code {Code :3<<8,BitsWritten :8}; +_ac [31]=code {Code :26<<8,BitsWritten :8};_ac [32]=code {Code :27<<8,BitsWritten :8};_ac [33]=code {Code :18<<8,BitsWritten :8};_ac [34]=code {Code :19<<8,BitsWritten :8};_ac [35]=code {Code :20<<8,BitsWritten :8};_ac [36]=code {Code :21<<8,BitsWritten :8}; +_ac [37]=code {Code :22<<8,BitsWritten :8};_ac [38]=code {Code :23<<8,BitsWritten :8};_ac [39]=code {Code :40<<8,BitsWritten :8};_ac [40]=code {Code :41<<8,BitsWritten :8};_ac [41]=code {Code :42<<8,BitsWritten :8};_ac [42]=code {Code :43<<8,BitsWritten :8}; +_ac [43]=code {Code :44<<8,BitsWritten :8};_ac [44]=code {Code :45<<8,BitsWritten :8};_ac [45]=code {Code :4<<8,BitsWritten :8};_ac [46]=code {Code :5<<8,BitsWritten :8};_ac [47]=code {Code :10<<8,BitsWritten :8};_ac [48]=code {Code :11<<8,BitsWritten :8}; +_ac [49]=code {Code :82<<8,BitsWritten :8};_ac [50]=code {Code :83<<8,BitsWritten :8};_ac [51]=code {Code :84<<8,BitsWritten :8};_ac [52]=code {Code :85<<8,BitsWritten :8};_ac [53]=code {Code :36<<8,BitsWritten :8};_ac [54]=code {Code :37<<8,BitsWritten :8}; +_ac [55]=code {Code :88<<8,BitsWritten :8};_ac [56]=code {Code :89<<8,BitsWritten :8};_ac [57]=code {Code :90<<8,BitsWritten :8};_ac [58]=code {Code :91<<8,BitsWritten :8};_ac [59]=code {Code :74<<8,BitsWritten :8};_ac [60]=code {Code :75<<8,BitsWritten :8}; +_ac [61]=code {Code :50<<8,BitsWritten :8};_ac [62]=code {Code :51<<8,BitsWritten :8};_ac [63]=code {Code :52<<8,BitsWritten :8};_ada =make (map[int ]code );_ada [64]=code {Code :3<<8|3<<6,BitsWritten :10};_ada [128]=code {Code :12<<8|8<<4,BitsWritten :12}; +_ada [192]=code {Code :12<<8|9<<4,BitsWritten :12};_ada [256]=code {Code :5<<8|11<<4,BitsWritten :12};_ada [320]=code {Code :3<<8|3<<4,BitsWritten :12};_ada [384]=code {Code :3<<8|4<<4,BitsWritten :12};_ada [448]=code {Code :3<<8|5<<4,BitsWritten :12}; +_ada [512]=code {Code :3<<8|12<<3,BitsWritten :13};_ada [576]=code {Code :3<<8|13<<3,BitsWritten :13};_ada [640]=code {Code :2<<8|10<<3,BitsWritten :13};_ada [704]=code {Code :2<<8|11<<3,BitsWritten :13};_ada [768]=code {Code :2<<8|12<<3,BitsWritten :13}; +_ada [832]=code {Code :2<<8|13<<3,BitsWritten :13};_ada [896]=code {Code :3<<8|18<<3,BitsWritten :13};_ada [960]=code {Code :3<<8|19<<3,BitsWritten :13};_ada [1024]=code {Code :3<<8|20<<3,BitsWritten :13};_ada [1088]=code {Code :3<<8|21<<3,BitsWritten :13}; +_ada [1152]=code {Code :3<<8|22<<3,BitsWritten :13};_ada [1216]=code {Code :119<<3,BitsWritten :13};_ada [1280]=code {Code :2<<8|18<<3,BitsWritten :13};_ada [1344]=code {Code :2<<8|19<<3,BitsWritten :13};_ada [1408]=code {Code :2<<8|20<<3,BitsWritten :13}; +_ada [1472]=code {Code :2<<8|21<<3,BitsWritten :13};_ada [1536]=code {Code :2<<8|26<<3,BitsWritten :13};_ada [1600]=code {Code :2<<8|27<<3,BitsWritten :13};_ada [1664]=code {Code :3<<8|4<<3,BitsWritten :13};_ada [1728]=code {Code :3<<8|5<<3,BitsWritten :13}; +_fg =make (map[int ]code );_fg [64]=code {Code :27<<(3+8),BitsWritten :5};_fg [128]=code {Code :18<<(3+8),BitsWritten :5};_fg [192]=code {Code :23<<(2+8),BitsWritten :6};_fg [256]=code {Code :55<<(1+8),BitsWritten :7};_fg [320]=code {Code :54<<8,BitsWritten :8}; +_fg [384]=code {Code :55<<8,BitsWritten :8};_fg [448]=code {Code :100<<8,BitsWritten :8};_fg [512]=code {Code :101<<8,BitsWritten :8};_fg [576]=code {Code :104<<8,BitsWritten :8};_fg [640]=code {Code :103<<8,BitsWritten :8};_fg [704]=code {Code :102<<8,BitsWritten :9}; +_fg [768]=code {Code :102<<8|1<<7,BitsWritten :9};_fg [832]=code {Code :105<<8,BitsWritten :9};_fg [896]=code {Code :105<<8|1<<7,BitsWritten :9};_fg [960]=code {Code :106<<8,BitsWritten :9};_fg [1024]=code {Code :106<<8|1<<7,BitsWritten :9};_fg [1088]=code {Code :107<<8,BitsWritten :9}; +_fg [1152]=code {Code :107<<8|1<<7,BitsWritten :9};_fg [1216]=code {Code :108<<8,BitsWritten :9};_fg [1280]=code {Code :108<<8|1<<7,BitsWritten :9};_fg [1344]=code {Code :109<<8,BitsWritten :9};_fg [1408]=code {Code :109<<8|1<<7,BitsWritten :9};_fg [1472]=code {Code :76<<8,BitsWritten :9}; +_fg [1536]=code {Code :76<<8|1<<7,BitsWritten :9};_fg [1600]=code {Code :77<<8,BitsWritten :9};_fg [1664]=code {Code :24<<(2+8),BitsWritten :6};_fg [1728]=code {Code :77<<8|1<<7,BitsWritten :9};_ggg =make (map[int ]code );_ggg [1792]=code {Code :1<<8,BitsWritten :11}; +_ggg [1856]=code {Code :1<<8|4<<5,BitsWritten :11};_ggg [1920]=code {Code :1<<8|5<<5,BitsWritten :11};_ggg [1984]=code {Code :1<<8|2<<4,BitsWritten :12};_ggg [2048]=code {Code :1<<8|3<<4,BitsWritten :12};_ggg [2112]=code {Code :1<<8|4<<4,BitsWritten :12}; +_ggg [2176]=code {Code :1<<8|5<<4,BitsWritten :12};_ggg [2240]=code {Code :1<<8|6<<4,BitsWritten :12};_ggg [2304]=code {Code :1<<8|7<<4,BitsWritten :12};_ggg [2368]=code {Code :1<<8|12<<4,BitsWritten :12};_ggg [2432]=code {Code :1<<8|13<<4,BitsWritten :12}; +_ggg [2496]=code {Code :1<<8|14<<4,BitsWritten :12};_ggg [2560]=code {Code :1<<8|15<<4,BitsWritten :12};_gda =make (map[int ]byte );_gda [0]=0xFF;_gda [1]=0xFE;_gda [2]=0xFC;_gda [3]=0xF8;_gda [4]=0xF0;_gda [5]=0xE0;_gda [6]=0xC0;_gda [7]=0x80;_gda [8]=0x00; +};func _cdc (_gbe []byte ,_bfd int ,_cbe code )([]byte ,int ){_dag :=true ;var _dagc []byte ;_dagc ,_bfd =_bgb (nil ,_bfd ,_cbe );_ccd :=0;var _gfg int ;for _ccd < len (_gbe ){_gfg ,_ccd =_edgb (_gbe ,_dag ,_ccd );_dagc ,_bfd =_gfc (_dagc ,_bfd ,_gfg ,_dag ); +_dag =!_dag ;};return _dagc ,_bfd %8;};func _bgb (_dfb []byte ,_ega int ,_aaeg code )([]byte ,int ){_ecf :=0;for _ecf < _aaeg .BitsWritten {_efcg :=_ega /8;_beag :=_ega %8;if _efcg >=len (_dfb ){_dfb =append (_dfb ,0);};_adf :=8-_beag ;_affa :=_aaeg .BitsWritten -_ecf ; +if _adf > _affa {_adf =_affa ;};if _ecf < 8{_dfb [_efcg ]=_dfb [_efcg ]|byte (_aaeg .Code >>uint (8+_beag -_ecf ))&_gda [8-_adf -_beag ];}else {_dfb [_efcg ]=_dfb [_efcg ]|(byte (_aaeg .Code <>uint (_beag );};_ega +=_adf ; +_ecf +=_adf ;};return _dfb ,_ega ;};func (_aec *Decoder )tryFetchRTC2D ()(_ffcg error ){_aec ._ef .Mark ();var _dac bool ;for _fcaf :=0;_fcaf < 5;_fcaf ++{_dac ,_ffcg =_aec .tryFetchEOL1 ();if _ffcg !=nil {if _g .Is (_ffcg ,_a .EOF ){if _fcaf ==0{break ; +};return _gff ;};};if _dac {continue ;};if _fcaf > 0{return _gff ;};break ;};if _dac {return _a .EOF ;};_aec ._ef .Reset ();return _ffcg ;};func (_ecd *Decoder )decoderRowType41D ()error {if _ecd ._fde {_ecd ._ef .Align ();};_ecd ._ef .Mark ();var (_fca bool ; +_edg error ;);if _ecd ._ce {_fca ,_edg =_ecd .tryFetchEOL ();if _edg !=nil {return _edg ;};if !_fca {return _dbd ;};}else {_fca ,_edg =_ecd .looseFetchEOL ();if _edg !=nil {return _edg ;};};if !_fca {_ecd ._ef .Reset ();};if _fca &&_ecd ._ea {_ecd ._ef .Mark (); +for _aab :=0;_aab < 5;_aab ++{_fca ,_edg =_ecd .tryFetchEOL ();if _edg !=nil {if _g .Is (_edg ,_a .EOF ){if _aab ==0{break ;};return _gff ;};};if _fca {continue ;};if _aab > 0{return _gff ;};break ;};if _fca {return _a .EOF ;};_ecd ._ef .Reset ();};if _edg =_ecd .decode1D (); +_edg !=nil {return _edg ;};return nil ;};var _aa =[...][]uint16 {{3,2},{1,4},{6,5},{7},{9,8},{10,11,12},{13,14},{15},{16,17,0,18,64},{24,25,23,22,19,20,21,1792,1856,1920},{1984,2048,2112,2176,2240,2304,2368,2432,2496,2560,52,55,56,59,60,320,384,448,53,54,50,51,44,45,46,47,57,58,61,256,48,49,62,63,30,31,32,33,40,41,128,192,26,27,28,29,34,35,36,37,38,39,42,43},{640,704,768,832,1280,1344,1408,1472,1536,1600,1664,1728,512,576,896,960,1024,1088,1152,1216}}; +func (_egd *Encoder )encodeG32D (_gaf [][]byte )[]byte {var _feb []byte ;var _facf int ;for _bdc :=0;_bdc < len (_gaf );_bdc +=_egd .K {if _egd .Rows > 0&&!_egd .EndOfBlock &&_bdc ==_egd .Rows {break ;};_cee ,_dba :=_cdc (_gaf [_bdc ],_facf ,_cbg );_feb =_egd .appendEncodedRow (_feb ,_cee ,_facf ); +if _egd .EncodedByteAlign {_dba =0;};_facf =_dba ;for _bea :=_bdc +1;_bea < (_bdc +_egd .K )&&_bea < len (_gaf );_bea ++{if _egd .Rows > 0&&!_egd .EndOfBlock &&_bea ==_egd .Rows {break ;};_ggbe ,_cfe :=_bgb (nil ,_facf ,_de );var _fdd ,_ffb ,_bfc int ; +_ffg :=-1;for _ffg < len (_gaf [_bea ]){_fdd =_ecfd (_gaf [_bea ],_ffg );_ffb =_ebd (_gaf [_bea ],_gaf [_bea -1],_ffg );_bfc =_ecfd (_gaf [_bea -1],_ffb );if _bfc < _fdd {_ggbe ,_cfe =_ede (_ggbe ,_cfe );_ffg =_bfc ;}else {if _gd .Abs (float64 (_ffb -_fdd ))> 3{_ggbe ,_cfe ,_ffg =_eada (_gaf [_bea ],_ggbe ,_cfe ,_ffg ,_fdd ); +}else {_ggbe ,_cfe =_acab (_ggbe ,_cfe ,_fdd ,_ffb );_ffg =_fdd ;};};};_feb =_egd .appendEncodedRow (_feb ,_ggbe ,_facf );if _egd .EncodedByteAlign {_cfe =0;};_facf =_cfe %8;};};if _egd .EndOfBlock {_geb ,_ :=_accf (_facf );_feb =_egd .appendEncodedRow (_feb ,_geb ,_facf ); +};return _feb ;};func (_bee *Decoder )decodeG32D ()error {_bee ._caed =_bee ._gce ;_bee ._gdac ,_bee ._ed =_bee ._ed ,_bee ._gdac ;_bff :=true ;var (_gae bool ;_gdab int ;_cfd error ;);_bee ._gce =0;_fef :for _gdab < _bee ._fb {_dfc :=_fe ._fbff ;for {_gae ,_cfd =_bee ._ef .ReadBool (); +if _cfd !=nil {return _cfd ;};_dfc =_dfc .walk (_gae );if _dfc ==nil {continue _fef ;};if !_dfc ._bce {continue ;};switch _dfc ._bfe {case _caf :var _abd int ;if _bff {_abd ,_cfd =_bee .decodeRun (_e );}else {_abd ,_cfd =_bee .decodeRun (_cf );};if _cfd !=nil {return _cfd ; +};_gdab +=_abd ;_bee ._gdac [_bee ._gce ]=_gdab ;_bee ._gce ++;if _bff {_abd ,_cfd =_bee .decodeRun (_cf );}else {_abd ,_cfd =_bee .decodeRun (_e );};if _cfd !=nil {return _cfd ;};_gdab +=_abd ;_bee ._gdac [_bee ._gce ]=_gdab ;_bee ._gce ++;case _ee :_bad :=_bee .getNextChangingElement (_gdab ,_bff )+1; +if _bad >=_bee ._caed {_gdab =_bee ._fb ;}else {_gdab =_bee ._ed [_bad ];};default:_beef :=_bee .getNextChangingElement (_gdab ,_bff );if _beef >=_bee ._caed ||_beef ==-1{_gdab =_bee ._fb +_dfc ._bfe ;}else {_gdab =_bee ._ed [_beef ]+_dfc ._bfe ;};_bee ._gdac [_bee ._gce ]=_gdab ; +_bee ._gce ++;_bff =!_bff ;};continue _fef ;};};return nil ;};var (_ceb byte =1;_afa byte =0;);func (_dd *Decoder )decodeRowType4 ()error {if !_dd ._bg {return _dd .decoderRowType41D ();};if _dd ._fde {_dd ._ef .Align ();};_dd ._ef .Mark ();_cdg ,_be :=_dd .tryFetchEOL (); +if _be !=nil {return _be ;};if !_cdg &&_dd ._ce {_dd ._dgc ++;if _dd ._dgc > _dd ._cfca {return _dbd ;};_dd ._ef .Reset ();};if !_cdg {_dd ._ef .Reset ();};_agdc ,_be :=_dd ._ef .ReadBool ();if _be !=nil {return _be ;};if _agdc {if _cdg &&_dd ._ea {if _be =_dd .tryFetchRTC2D (); +_be !=nil {return _be ;};};_be =_dd .decode1D ();}else {_be =_dd .decode2D ();};if _be !=nil {return _be ;};return nil ;};func _ede (_adg []byte ,_bed int )([]byte ,int ){return _bgb (_adg ,_bed ,_dge )};func NewDecoder (data []byte ,options DecodeOptions )(*Decoder ,error ){_efa :=&Decoder {_ef :_c .NewReader (data ),_fb :options .Columns ,_abg :options .Rows ,_cfca :options .DamagedRowsBeforeError ,_gfd :make ([]byte ,(options .Columns +7)/8),_ed :make ([]int ,options .Columns +2),_gdac :make ([]int ,options .Columns +2),_fde :options .EncodedByteAligned ,_acc :options .BlackIsOne ,_ce :options .EndOfLine ,_ea :options .EndOfBlock }; +switch {case options .K ==0:_efa ._aca =_db ;if len (data )< 20{return nil ,_g .New ("\u0074o\u006f\u0020\u0073\u0068o\u0072\u0074\u0020\u0063\u0063i\u0074t\u0066a\u0078\u0020\u0073\u0074\u0072\u0065\u0061m");};_ced :=data [:20];if _ced [0]!=0||(_ced [1]>>4!=1&&_ced [1]!=1){_efa ._aca =_ab ; +_cdf :=(uint16 (_ced [0])<<8+uint16 (_ced [1]&0xff))>>4;for _ceg :=12;_ceg < 160;_ceg ++{_cdf =(_cdf <<1)+uint16 ((_ced [_ceg /8]>>uint16 (7-(_ceg %8)))&0x01);if _cdf &0xfff==1{_efa ._aca =_db ;break ;};};};case options .K < 0:_efa ._aca =_gdf ;case options .K > 0:_efa ._aca =_db ; +_efa ._bg =true ;};switch _efa ._aca {case _ab ,_db ,_gdf :default:return nil ,_g .New ("\u0075\u006ek\u006e\u006f\u0077\u006e\u0020\u0063\u0063\u0069\u0074\u0074\u0066\u0061\u0078\u002e\u0044\u0065\u0063\u006f\u0064\u0065\u0072\u0020ty\u0070\u0065");}; +return _efa ,nil ;};func _fggc (_bafd ,_dee []byte ,_faf int ,_aaff bool )int {_fbf :=_ecfd (_dee ,_faf );if _fbf < len (_dee )&&(_faf ==-1&&_dee [_fbf ]==_ceb ||_faf >=0&&_faf < len (_bafd )&&_bafd [_faf ]==_dee [_fbf ]||_faf >=len (_bafd )&&_aaff &&_dee [_fbf ]==_ceb ||_faf >=len (_bafd )&&!_aaff &&_dee [_fbf ]==_afa ){_fbf =_ecfd (_dee ,_fbf ); +};return _fbf ;};var _bb =[...][]uint16 {{0x2,0x3},{0x2,0x3},{0x2,0x3},{0x3},{0x4,0x5},{0x4,0x5,0x7},{0x4,0x7},{0x18},{0x17,0x18,0x37,0x8,0xf},{0x17,0x18,0x28,0x37,0x67,0x68,0x6c,0x8,0xc,0xd},{0x12,0x13,0x14,0x15,0x16,0x17,0x1c,0x1d,0x1e,0x1f,0x24,0x27,0x28,0x2b,0x2c,0x33,0x34,0x35,0x37,0x38,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x5b,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xda,0xdb},{0x4a,0x4b,0x4c,0x4d,0x52,0x53,0x54,0x55,0x5a,0x5b,0x64,0x65,0x6c,0x6d,0x72,0x73,0x74,0x75,0x76,0x77}}; +func _ecfd (_dgb []byte ,_aecg int )int {if _aecg >=len (_dgb ){return _aecg ;};if _aecg < -1{_aecg =-1;};var _gcd byte ;if _aecg > -1{_gcd =_dgb [_aecg ];}else {_gcd =_ceb ;};_bgfc :=_aecg +1;for _bgfc < len (_dgb ){if _dgb [_bgfc ]!=_gcd {break ;};_bgfc ++; +};return _bgfc ;};func (_bdee *Decoder )getNextChangingElement (_egf int ,_cfbf bool )int {_cc :=0;if !_cfbf {_cc =1;};_faa :=int (uint32 (_bdee ._ebg )&0xFFFFFFFE)+_cc ;if _faa > 2{_faa -=2;};if _egf ==0{return _faa ;};for _cbgb :=_faa ;_cbgb < _bdee ._caed ; +_cbgb +=2{if _egf < _bdee ._ed [_cbgb ]{_bdee ._ebg =_cbgb ;return _cbgb ;};};return -1;};var (_ggb map[int ]code ;_ac map[int ]code ;_ada map[int ]code ;_fg map[int ]code ;_ggg map[int ]code ;_gda map[int ]byte ;_bbf =code {Code :1<<4,BitsWritten :12}; +_cbg =code {Code :3<<3,BitsWritten :13};_de =code {Code :2<<3,BitsWritten :13};_dge =code {Code :1<<12,BitsWritten :4};_gc =code {Code :1<<13,BitsWritten :3};_fgf =code {Code :1<<15,BitsWritten :1};_ffc =code {Code :3<<13,BitsWritten :3};_cfc =code {Code :3<<10,BitsWritten :6}; +_ae =code {Code :3<<9,BitsWritten :7};_fgc =code {Code :2<<13,BitsWritten :3};_bd =code {Code :2<<10,BitsWritten :6};_acf =code {Code :2<<9,BitsWritten :7};);func (_cddf *Decoder )decodeRow ()(_agd error ){if !_cddf ._ea &&_cddf ._abg > 0&&_cddf ._abg ==_cddf ._gb {return _a .EOF ; +};switch _cddf ._aca {case _ab :_agd =_cddf .decodeRowType2 ();case _db :_agd =_cddf .decodeRowType4 ();case _gdf :_agd =_cddf .decodeRowType6 ();};if _agd !=nil {return _agd ;};_bgf :=0;_cde :=true ;_cddf ._ebg =0;for _gcc :=0;_gcc < _cddf ._gce ;_gcc ++{_ebge :=_cddf ._fb ; +if _gcc !=_cddf ._gce {_ebge =_cddf ._gdac [_gcc ];};if _ebge > _cddf ._fb {_ebge =_cddf ._fb ;};_eef :=_bgf /8;for _bgf %8!=0&&_ebge -_bgf > 0{var _ge byte ;if !_cde {_ge =1< 7{_cddf ._gfd [_eef ]=_fgg ;_bgf +=8;_eef ++;};};for _ebge -_bgf > 0{if _bgf %8==0{_cddf ._gfd [_eef ]=0;};var _deb byte ;if !_cde {_deb =1<=_efb ._caed {_cdfc =_efb ._fb ;}else {_cdfc =_efb ._ed [_eaa ];};default:_cdeg :=_efb .getNextChangingElement (_cdfc ,_gbg );if _cdeg >=_efb ._caed ||_cdeg ==-1{_cdfc =_efb ._fb +_fac ._bfe ;}else {_cdfc =_efb ._ed [_cdeg ]+_fac ._bfe ;};_efb ._gdac [_efb ._gce ]=_cdfc ; +_efb ._gce ++;_gbg =!_gbg ;};continue _cgc ;};};return nil ;};type Encoder struct{K int ;EndOfLine bool ;EncodedByteAlign bool ;Columns int ;Rows int ;EndOfBlock bool ;BlackIs1 bool ;DamagedRowsBeforeError int ;};type DecodeOptions struct{Columns int ; +Rows int ;K int ;EncodedByteAligned bool ;BlackIsOne bool ;EndOfBlock bool ;EndOfLine bool ;DamagedRowsBeforeError int ;};type code struct{Code uint16 ;BitsWritten int ;};func _cac (_ebb int ,_cbdb bool )(code ,int ,bool ){if _ebb < 64{if _cbdb {return _ac [_ebb ],0,true ; +};return _ggb [_ebb ],0,true ;};_bdcc :=_ebb /64;if _bdcc > 40{return _ggg [2560],_ebb -2560,false ;};if _bdcc > 27{return _ggg [_bdcc *64],_ebb -_bdcc *64,false ;};if _cbdb {return _fg [_bdcc *64],_ebb -_bdcc *64,false ;};return _ada [_bdcc *64],_ebb -_bdcc *64,false ; +};var _dg =[...][]uint16 {{0x7,0x8,0xb,0xc,0xe,0xf},{0x12,0x13,0x14,0x1b,0x7,0x8},{0x17,0x18,0x2a,0x2b,0x3,0x34,0x35,0x7,0x8},{0x13,0x17,0x18,0x24,0x27,0x28,0x2b,0x3,0x37,0x4,0x8,0xc},{0x12,0x13,0x14,0x15,0x16,0x17,0x1a,0x1b,0x2,0x24,0x25,0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x3,0x32,0x33,0x34,0x35,0x36,0x37,0x4,0x4a,0x4b,0x5,0x52,0x53,0x54,0x55,0x58,0x59,0x5a,0x5b,0x64,0x65,0x67,0x68,0xa,0xb},{0x98,0x99,0x9a,0x9b,0xcc,0xcd,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xdb},{},{0x8,0xc,0xd},{0x12,0x13,0x14,0x15,0x16,0x17,0x1c,0x1d,0x1e,0x1f}}; +func (_eda *Encoder )encodeG31D (_gdfb [][]byte )[]byte {var _cecd []byte ;_efe :=0;for _ddd :=range _gdfb {if _eda .Rows > 0&&!_eda .EndOfBlock &&_ddd ==_eda .Rows {break ;};_gca ,_bda :=_cdc (_gdfb [_ddd ],_efe ,_bbf );_cecd =_eda .appendEncodedRow (_cecd ,_gca ,_efe ); +if _eda .EncodedByteAlign {_bda =0;};_efe =_bda ;};if _eda .EndOfBlock {_bac ,_ :=_cce (_efe );_cecd =_eda .appendEncodedRow (_cecd ,_bac ,_efe );};return _cecd ;};func (_cg *Decoder )decodeRowType2 ()error {if _cg ._fde {_cg ._ef .Align ();};if _cdfg :=_cg .decode1D (); +_cdfg !=nil {return _cdfg ;};return nil ;};func _gfc (_facff []byte ,_gbb int ,_cebd int ,_bacf bool )([]byte ,int ){var (_cge code ;_bca bool ;);for !_bca {_cge ,_cebd ,_bca =_cac (_cebd ,_bacf );_facff ,_gbb =_bgb (_facff ,_gbb ,_cge );};return _facff ,_gbb ; +};func _eada (_cbc ,_edged []byte ,_dgce ,_gagd ,_gad int )([]byte ,int ,int ){_dged :=_ecfd (_cbc ,_gad );_bacg :=_gagd >=0&&_cbc [_gagd ]==_ceb ||_gagd ==-1;_edged ,_dgce =_bgb (_edged ,_dgce ,_gc );var _dcf int ;if _gagd > -1{_dcf =_gad -_gagd ;}else {_dcf =_gad -_gagd -1; +};_edged ,_dgce =_gfc (_edged ,_dgce ,_dcf ,_bacg );_bacg =!_bacg ;_efgg :=_dged -_gad ;_edged ,_dgce =_gfc (_edged ,_dgce ,_efgg ,_bacg );_gagd =_dged ;return _edged ,_dgce ,_gagd ;};func (_beb *Encoder )Encode (pixels [][]byte )[]byte {if _beb .BlackIs1 {_ceb =0; +_afa =1;}else {_ceb =1;_afa =0;};if _beb .K ==0{return _beb .encodeG31D (pixels );};if _beb .K > 0{return _beb .encodeG32D (pixels );};if _beb .K < 0{return _beb .encodeG4 (pixels );};return nil ;};func _edgb (_bcb []byte ,_cffg bool ,_bbd int )(int ,int ){_dgeb :=0; +for _bbd < len (_bcb ){if _cffg {if _bcb [_bbd ]!=_ceb {break ;};}else {if _bcb [_bbd ]!=_afa {break ;};};_dgeb ++;_bbd ++;};return _dgeb ,_bbd ;};type treeNode struct{_adff *treeNode ;_age *treeNode ;_bfe int ;_fbgb bool ;_bce bool ;};type tree struct{_fbff *treeNode }; +func (_beg *Decoder )tryFetchEOL ()(bool ,error ){_ccc ,_acaf :=_beg ._ef .ReadBits (12);if _acaf !=nil {return false ,_acaf ;};return _ccc ==0x1,nil ;};func (_abf *Decoder )tryFetchEOL1 ()(bool ,error ){_gdgb ,_cca :=_abf ._ef .ReadBits (13);if _cca !=nil {return false ,_cca ; +};return _gdgb ==0x3,nil ;};func (_dbb *Decoder )fetch ()error {if _dbb ._bf ==-1{return nil ;};if _dbb ._bbc < _dbb ._bf {return nil ;};_dbb ._bf =0;_bba :=_dbb .decodeRow ();if _bba !=nil {if !_g .Is (_bba ,_a .EOF ){return _bba ;};if _dbb ._bf !=0{return _bba ; +};_dbb ._bf =-1;};_dbb ._bbc =0;return nil ;};func _fbd (_daed [][]byte )[][]byte {_dcb :=make ([]byte ,len (_daed [0]));for _dfe :=range _dcb {_dcb [_dfe ]=_ceb ;};_daed =append (_daed ,[]byte {});for _aeg :=len (_daed )-1;_aeg > 0;_aeg --{_daed [_aeg ]=_daed [_aeg -1]; +};_daed [0]=_dcb ;return _daed ;};func _deef (_cdgd ,_ccab int )code {var _dcc code ;switch _ccab -_cdgd {case -1:_dcc =_ffc ;case -2:_dcc =_cfc ;case -3:_dcc =_ae ;case 0:_dcc =_fgf ;case 1:_dcc =_fgc ;case 2:_dcc =_bd ;case 3:_dcc =_acf ;};return _dcc ; +};func (_aeb *Decoder )decodeRun (_fed *tree )(int ,error ){var _fefg int ;_bae :=_fed ._fbff ;for {_cecg ,_efg :=_aeb ._ef .ReadBool ();if _efg !=nil {return 0,_efg ;};_bae =_bae .walk (_cecg );if _bae ==nil {return 0,_g .New ("\u0075\u006e\u006bno\u0077\u006e\u0020\u0063\u006f\u0064\u0065\u0020\u0069n\u0020H\u0075f\u0066m\u0061\u006e\u0020\u0052\u004c\u0045\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); +};if _bae ._bce {_fefg +=_bae ._bfe ;switch {case _bae ._bfe >=64:_bae =_fed ._fbff ;case _bae ._bfe >=0:return _fefg ,nil ;default:return _aeb ._fb ,nil ;};};};};func (_edge *Decoder )looseFetchEOL ()(bool ,error ){_deg ,_efc :=_edge ._ef .ReadBits (12); +if _efc !=nil {return false ,_efc ;};switch _deg {case 0x1:return true ,nil ;case 0x0:for {_bbe ,_bc :=_edge ._ef .ReadBool ();if _bc !=nil {return false ,_bc ;};if _bbe {return true ,nil ;};};default:return false ,nil ;};};func (_dbe *treeNode )set (_dbdb bool ,_agea *treeNode ){if !_dbdb {_dbe ._adff =_agea ; +}else {_dbe ._age =_agea ;};};func _acab (_dbad []byte ,_gdgd ,_edac ,_fcc int )([]byte ,int ){_fge :=_deef (_edac ,_fcc );_dbad ,_gdgd =_bgb (_dbad ,_gdgd ,_fge );return _dbad ,_gdgd ;};func (_cea *Decoder )decodeRowType6 ()error {if _cea ._fde {_cea ._ef .Align (); +};if _cea ._ea {_cea ._ef .Mark ();_gbf ,_edc :=_cea .tryFetchEOL ();if _edc !=nil {return _edc ;};if _gbf {_gbf ,_edc =_cea .tryFetchEOL ();if _edc !=nil {return _edc ;};if _gbf {return _a .EOF ;};};_cea ._ef .Reset ();};return _cea .decode2D ();};type tiffType int ; +var _gdg =[...][]uint16 {{2,3,4,5,6,7},{128,8,9,64,10,11},{192,1664,16,17,13,14,15,1,12},{26,21,28,27,18,24,25,22,256,23,20,19},{33,34,35,36,37,38,31,32,29,53,54,39,40,41,42,43,44,30,61,62,63,0,320,384,45,59,60,46,49,50,51,52,55,56,57,58,448,512,640,576,47,48},{1472,1536,1600,1728,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408},{},{1792,1856,1920},{1984,2048,2112,2176,2240,2304,2368,2432,2496,2560}}; +func _agdf (_cbd int )([]byte ,int ){var _dgcd []byte ;for _ecc :=0;_ecc < 2;_ecc ++{_dgcd ,_cbd =_bgb (_dgcd ,_cbd ,_bbf );};return _dgcd ,_cbd %8;};func (_cgce *tree )fillWithNode (_fcf ,_bcg int ,_gea *treeNode )error {_ccg :=_cgce ._fbff ;for _begb :=0; +_begb < _fcf ;_begb ++{_ffce :=uint (_fcf -1-_begb );_edcg :=((_bcg >>_ffce )&1)!=0;_edgec :=_ccg .walk (_edcg );if _edgec !=nil {if _edgec ._bce {return _g .New ("\u006e\u006f\u0064\u0065\u0020\u0069\u0073\u0020\u006c\u0065\u0061\u0066\u002c\u0020\u006eo\u0020o\u0074\u0068\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067"); +};_ccg =_edgec ;continue ;};if _begb ==_fcf -1{_edgec =_gea ;}else {_edgec =&treeNode {};};if _bcg ==0{_edgec ._fbgb =true ;};_ccg .set (_edcg ,_edgec );_ccg =_edgec ;};return nil ;};func (_decd *tree )fill (_cgd ,_dcg ,_cgg int )error {_eeg :=_decd ._fbff ; +for _ggdd :=0;_ggdd < _cgd ;_ggdd ++{_cbdd :=_cgd -1-_ggdd ;_cafc :=((_dcg >>uint (_cbdd ))&1)!=0;_fdfe :=_eeg .walk (_cafc );if _fdfe !=nil {if _fdfe ._bce {return _g .New ("\u006e\u006f\u0064\u0065\u0020\u0069\u0073\u0020\u006c\u0065\u0061\u0066\u002c\u0020\u006eo\u0020o\u0074\u0068\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067"); +};_eeg =_fdfe ;continue ;};_fdfe =&treeNode {};if _ggdd ==_cgd -1{_fdfe ._bfe =_cgg ;_fdfe ._bce =true ;};if _dcg ==0{_fdfe ._fbgb =true ;};_eeg .set (_cafc ,_fdfe );_eeg =_fdfe ;};return nil ;};func _cce (_gbc int )([]byte ,int ){var _fcbg []byte ;for _fgfc :=0; +_fgfc < 6;_fgfc ++{_fcbg ,_gbc =_bgb (_fcbg ,_gbc ,_bbf );};return _fcbg ,_gbc %8;};const (_ tiffType =iota ;_ab ;_db ;_gdf ;);type Decoder struct{_fb int ;_abg int ;_gb int ;_gfd []byte ;_cfca int ;_bg bool ;_dec bool ;_bde bool ;_acc bool ;_ce bool ; +_ea bool ;_fde bool ;_bf int ;_bbc int ;_ed []int ;_gdac []int ;_caed int ;_gce int ;_dgc int ;_ebg int ;_ef *_c .Reader ;_aca tiffType ;_eg error ;};func (_egff *Encoder )appendEncodedRow (_gdbc ,_gef []byte ,_gcae int )[]byte {if len (_gdbc )> 0&&_gcae !=0&&!_egff .EncodedByteAlign {_gdbc [len (_gdbc )-1]=_gdbc [len (_gdbc )-1]|_gef [0]; +_gdbc =append (_gdbc ,_gef [1:]...);}else {_gdbc =append (_gdbc ,_gef ...);};return _gdbc ;};func (_gcge *Decoder )decode1D ()error {var (_cec int ;_faef error ;);_caee :=true ;_gcge ._gce =0;for {var _baf int ;if _caee {_baf ,_faef =_gcge .decodeRun (_e ); +}else {_baf ,_faef =_gcge .decodeRun (_cf );};if _faef !=nil {return _faef ;};_cec +=_baf ;_gcge ._gdac [_gcge ._gce ]=_cec ;_gcge ._gce ++;_caee =!_caee ;if _cec >=_gcge ._fb {break ;};};return nil ;}; \ No newline at end of file diff --git a/internal/cmap/bcmaps/bcmaps.go b/internal/cmap/bcmaps/bcmaps.go index df3761775..747aa248f 100644 --- a/internal/cmap/bcmaps/bcmaps.go +++ b/internal/cmap/bcmaps/bcmaps.go @@ -9,380 +9,388 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package bcmaps ;import (_e "bytes";_eg "compress/gzip";_d "fmt";_b "io";_ce "os";_c "strings";_f "time";);var _fa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x49\xab\x65\x47\x72\xc7\xf7\xf5\x29\xee\xb2\xbd\x68\xeb\xe4\x18\x19\x50\x3c\x68\x24\x0b\xab\x4d\xdb\xa6\xe5\x09\x8c\x17\x67\x88\x23\x0a\x5c\xaf\x8a\xaa\xd2\x42\xdf\xde\xc4\xef\x7f\x25\xd9\xc2\xa0\x85\x08\xd5\xff\xe5\x10\x19\x19\x73\x9e\xfb\xd5\xd7\xdf\x7d\xf3\xdd\xeb\xbb\x2f\x8f\xaf\xfe\xf9\xd3\x87\xf3\xfb\xf8\xf2\xb8\xdf\xbd\x5e\x9f\xe2\xf3\x87\x1f\x3f\x9d\xf1\x38\xe2\x87\x77\xaf\x6f\xde\x94\xfa\xb8\xde\x9d\x5f\x7e\xfe\x27\xe4\x7c\xbf\x7f\x7c\xf3\x26\xe7\x7f\xff\xd3\xe7\x2f\xf1\xfe\xbb\xd7\xfb\xc3\xa3\x69\xdc\xf5\xe3\xc7\xe7\xd8\xc7\xe3\xab\xbf\xc6\x0f\xef\x3e\x7f\xf9\xf4\xd3\xe3\x0f\x7f\xba\x3e\x1c\xf1\x37\x8f\x2b\xee\xc4\xff\xe9\xd3\x15\x9f\xde\xbd\xfe\xf0\xf8\xc3\x9f\xf7\x8f\xfb\x6b\xf9\xe5\x0f\xdf\xff\xf8\xf1\xe3\x7f\xc7\xfb\x78\xfd\xf2\xa8\x60\xf1\x7a\x41\xdf\x7c\xf5\xf5\x5f\xf6\x8f\xff\xb8\xbf\x8f\xc7\x57\xb6\xde\x7f\xfe\xe3\x5f\xff\xe1\xfb\x3f\xff\xf1\xef\xf9\x1b\x7f\xfa\xb7\xf8\xf4\xf9\xdd\x87\xd7\x47\x29\x7f\xbb\x6d\xf3\x57\xfc\x5f\x7e\xfa\x18\x8f\xf2\x5c\xe3\x3f\xfe\xf5\xbb\x6f\x1e\xff\x59\x1e\x65\x7b\xd4\xd1\x7b\xf9\xaf\x27\xfe\xef\x7f\xf9\x70\xc5\x63\xd3\xbf\xba\xf8\x3f\x3f\x5c\xf1\xf9\xe3\x7e\xc6\xa7\xfd\xf5\x87\x78\xf3\x78\xbc\xdd\xb6\x97\xc7\xe3\xf1\x76\x6d\x2f\xf9\xaf\x55\xfa\xf6\xf2\x78\xeb\xdf\x7e\xfb\x35\xff\xfe\x93\xfe\xfa\xcd\xb7\xfc\xeb\xef\x36\xfe\xfa\xed\xd7\xf9\xd7\x78\xbd\x7e\xb3\xda\x9b\xa2\x4d\x5e\x3f\x7c\xb9\xe2\x16\xc6\xfa\x6f\xcb\xfd\xf2\xa8\xad\xe4\x9c\xff\xfd\xc7\x37\x65\xdb\x9e\x7c\xbd\xbb\x9e\xe3\x6b\x8e\xb7\x4b\xe3\xdf\x5a\xe4\xbf\xe2\xe5\x31\xf3\x5f\x4f\xee\x56\x11\xd2\x12\x59\x42\xf6\xf3\xe5\x31\x7d\x26\x72\x2c\x90\xe3\x7e\x79\x58\x67\xd6\x29\xe4\x8c\x44\x3c\x91\x6b\x07\x89\xf5\xf2\xb0\xc1\xac\x5b\xeb\xdc\xf6\xf2\x30\x63\xd6\x7d\x0a\x39\x13\xc9\x59\xb5\xdf\x89\xd4\x91\xb3\xd6\x96\xc8\x64\x56\x35\x7f\x79\x98\x83\xac\x02\xe2\xfb\xcb\x63\x95\x5c\xb9\xba\x66\xdd\xe5\xe5\xb1\x7a\x7d\xf3\x76\x35\x9d\xa2\xe5\x29\xbc\x8e\x44\x74\x8a\xe6\xf3\xe5\xe1\x6b\x25\xa2\x59\xed\x98\x2f\x8f\xb2\x95\x64\xa8\x1d\x82\x2e\xa0\x96\xf3\xba\x56\xea\xc9\x46\xd9\x46\x32\xd9\x4d\x50\x2e\x5e\x36\xcf\xfd\xba\x56\xef\x5e\x5e\x1e\xa5\x6c\x96\x90\x96\x87\x58\xe7\x74\x7d\xd7\xa8\x24\xd6\x57\x01\x2a\x82\x0a\x82\x13\x54\x05\x55\x20\x98\xd8\x9b\xa0\x96\xc2\xdc\x1a\x50\x17\xd4\x19\xa5\xe5\x87\xa0\xc1\x28\x98\xd8\xa7\xa0\x99\x50\xd5\x44\x13\x94\xd7\x30\x8a\x96\x5f\x82\xb8\xab\x26\x26\x5c\x90\x03\x69\xf9\x5d\xd0\x0e\xf7\x1b\xd0\x21\xe8\x00\x42\x12\xfb\x29\xe8\x84\xaf\x0e\x74\x09\xba\x80\x16\x50\x08\x0a\x58\x9d\x40\x92\x57\x12\x1b\x1b\x6b\x1d\x92\x57\x12\x1b\x85\xb5\x0e\xc9\x2b\x89\x8d\x06\x13\x87\xe4\x95\xc4\x46\xd5\x44\xc9\xeb\x40\x5e\x8d\x1d\x0f\xc9\x2b\x89\x8d\xa1\xb5\x24\xaf\x03\x79\xa1\x00\xfd\x90\xbc\x0e\xc9\x0b\xbe\x0e\xc9\xeb\x90\xbc\x90\x84\xf4\x1f\x62\xa3\x69\x2d\xc9\xeb\x40\x5e\x5d\x4c\x48\x5e\x49\x6c\x6c\x62\x42\xf2\x4a\x62\xa3\x72\x43\x87\xe4\x95\xc4\x46\xd1\x8e\x92\x57\x12\x1b\xd2\xc2\x43\xf2\x3a\x90\x57\x4f\xc8\xa4\x98\x36\x18\x35\x80\x06\x22\xb4\x89\xbc\x16\xd0\x2c\x82\xd2\x34\x36\x24\x61\xb3\x0a\x42\x5e\x4b\x50\x13\xd4\x72\x54\xdf\x80\xba\x20\xe4\xe5\x82\x86\xa0\xc1\xa8\x0a\x34\x05\x21\x1c\x17\xb4\x04\x2d\x46\x75\x20\x17\x84\x24\x5c\x7c\x1d\x82\x0e\x46\x35\xa0\x53\x10\x07\x72\xf1\x15\x82\x82\x51\x06\xa4\x33\x5a\x5e\xda\xdc\xf2\xd2\xcc\x34\x2a\xc9\x6a\x28\xb9\xc9\x1e\x6d\x35\x46\xb1\xd6\xd2\x81\x92\xac\x4d\xf2\x5a\x3a\xd0\x4a\x95\x9b\x85\x89\xae\x89\x49\x6c\x72\x1e\x97\x04\x93\xd8\x64\x3f\x97\x00\x93\xd8\x74\x10\xc9\xcf\x9d\x59\x9c\xd9\x77\x41\x79\xe6\x09\x03\xae\x23\x7b\xde\xb4\x9c\xed\x92\x8f\x80\x94\x82\x9f\x5a\xf2\x11\x10\x93\x03\x5e\xf2\x11\x2b\x8d\xb8\x14\xb4\x66\xc9\x88\x21\xab\xce\x09\xb4\x04\xb1\x16\x4a\xb9\x64\x3f\x10\x73\x78\x5f\xb2\x1f\x88\x35\xec\x67\xc9\x7e\x56\x6a\x73\x29\x5d\x13\x5d\x10\xe7\x79\xae\xc5\x79\x56\x1c\x39\x6a\xa4\x64\x56\x9c\x82\x74\x20\xb8\x0f\x54\x77\xa5\xab\x2f\x15\x47\xb5\x6e\xed\x78\x23\xbf\x06\xab\xb7\x76\xbc\x9d\x51\x0b\x48\xcb\xdf\x88\xab\x71\xc6\xfb\x10\x74\xe6\xa8\x92\x90\x4b\xe7\xbd\x2f\x20\x07\x72\x41\x62\x75\x01\xb1\x96\x8f\x96\xa3\x2a\xa3\x46\x17\xd4\x19\x25\x68\x08\xb2\x1c\x85\xce\xfb\x58\x82\xd2\xae\xe7\x13\xd2\xf2\xe3\x60\x54\x07\x3a\x05\x71\xec\x5e\x09\xd3\x3f\x07\xd7\xff\x2f\xde\x2e\x1f\x48\xc5\x89\x21\xb5\xc3\xa3\xec\x12\x62\x13\xfd\x77\xd9\xa5\x13\x56\xea\x00\x92\x1a\xfb\xda\x13\xc2\xbf\xfa\x3a\x04\x1d\x4c\x84\xa1\x25\x86\xd2\xef\x97\x8a\xcb\x75\xf9\x7d\x88\x4d\xfc\x85\x4b\x65\x20\xd6\x50\x5b\x97\xca\x40\x6c\xf6\x09\xa4\xf3\x5e\xd7\xcb\xa3\xc8\x96\xfc\x0a\x41\xc1\x28\xee\xe1\x42\x6f\x3d\x43\x79\x69\x06\x74\x6b\xad\x5b\x6b\x71\xc6\x5b\x6b\xe5\x9d\x96\x8e\x32\xb8\xee\x14\x62\x93\x44\xc1\x95\x04\x40\x4a\x27\x14\xec\xba\x66\x48\xe9\x04\xb2\xbd\x17\x41\xc8\x6b\x6c\x40\xc8\x6b\x9f\x1a\x95\x6b\xed\x92\x2a\x64\x76\x67\xe2\x7c\x8e\x4a\x56\x3b\xc9\xca\x2e\x0f\x05\x19\x1b\x67\xdc\xe5\xa1\x76\x64\xdf\xe1\x7e\x97\xec\xf7\xf4\x17\xa5\x1b\x3b\xca\x5f\x40\x6c\x0e\xd6\x5a\x53\x10\x67\x34\xb8\xd7\x0d\xed\xba\x21\x2c\x65\xd7\x0d\xed\xe9\x31\x8a\xe2\xe4\x2e\x97\x01\xb1\xc9\x6d\xef\xde\x05\xe5\x3d\x76\x5c\xee\xee\x5a\x3e\xc9\x70\xcc\x62\x77\x13\xe4\x8c\xd2\xc4\x5d\x10\xc6\x43\x6c\xdb\xe5\x6c\xf6\x4c\x68\xca\x53\x12\xa7\x0e\x74\xe2\x59\x70\x80\xfb\x29\x79\x25\x19\xcf\x1d\x4f\xc9\xeb\xcc\x03\x0d\xcc\x75\x3f\xb5\xd6\xa9\x03\x09\xd2\x81\xce\x5c\x7e\xa0\x39\xfb\xa5\xe5\x93\xcc\x49\x58\xd9\x2f\x2d\x1f\x79\xec\x21\x79\x85\x8e\x1d\x3a\x36\x7c\x85\x8e\x8d\x02\x0c\x04\x7d\x48\x01\x8e\x34\xea\xa2\x80\x71\xc8\xa8\x21\x36\xc7\x02\x82\xaf\x63\xe4\xa5\x4d\x34\xe7\x50\x04\x84\xd8\x24\x5b\x3b\x94\x40\x1e\x5c\xed\xc4\x7b\x1e\xba\xda\x03\xb7\xfb\x5c\x4b\x6e\xf7\x90\xdb\x9d\x30\x21\xb7\x7b\xa4\xc1\x94\x49\x6a\x76\xc8\x60\x0e\x19\xcc\x14\x84\xe6\x1c\x67\x63\x14\x3b\x9e\x5d\x10\xa9\x99\x75\xa0\x21\x28\xcf\x68\x62\xe2\xbc\x04\x5d\xac\x55\x81\xb0\xb4\x23\x52\xf6\x86\xec\x8f\xd0\x19\x03\xd9\xcf\x06\x84\xec\x8f\x74\xa8\xc5\xf0\xfd\x87\x1c\x2a\xc4\xe6\x64\xc7\xbb\x09\x4a\x57\x69\xc6\x44\xd9\x23\xc4\xe6\x44\xaa\x72\xbb\x90\xa2\x84\xfb\x90\x89\x1e\x32\xd1\xe7\xf2\xcf\x1d\xe1\x1e\xf5\x3d\x75\x43\x67\xda\x60\xb1\xd5\x80\x9a\x20\xae\x76\x1a\x10\x92\x38\xd3\xd5\x16\x5b\x40\x63\x0a\xc2\x33\x11\x18\xcf\x81\x46\x9f\x99\x7d\x94\xc5\x3d\x9e\xca\x3e\x20\x36\x71\x56\xa7\xb2\x8f\x33\xb3\x84\xb2\xea\x06\x74\x09\x42\x84\x26\x08\x11\x9e\x99\xa2\x97\x85\xef\x3f\xad\x08\xc2\x75\x50\x78\x9c\x56\x05\xb1\x23\x41\xf6\x34\xed\x68\xec\x68\x9c\xd1\xb4\x63\x96\x1e\x65\x71\x1d\xa7\xed\x82\x52\x0b\xcb\xd2\x5a\x87\xa0\xd4\x2f\x55\x1f\xa7\xf4\xeb\x5c\x2c\x8f\x75\x9c\xca\x3e\x20\x36\xb9\x8e\x53\xde\xe4\x74\x58\xc5\x3a\x4e\xe5\x1a\xa7\x72\x0d\x34\xe7\x54\xb2\x71\x7a\xde\xe3\x9a\x82\x5c\x10\xf7\x68\x03\x48\x7c\x79\xba\xed\x25\xee\x5d\x92\x70\xdc\x36\x9e\xe9\x54\xba\x71\x66\xf0\x2f\x0b\xb7\x7d\x2a\xf8\x43\x6c\x3e\x21\xdd\xe3\xc1\x81\x5c\xd0\x73\x22\x66\x65\x5c\x9a\xbc\xc9\x89\x4e\x78\x49\xd9\x5f\xd2\x89\x0b\xab\x75\x04\x7d\xc9\x6a\x2f\x59\x2d\x45\xd0\x25\xab\xbd\xd0\x09\x47\x99\x2e\xe9\xc4\x25\x9d\x40\x0b\x2f\xe9\xc4\x85\x73\x77\x62\xda\x25\xe7\x7e\x29\x64\x22\xfb\x4b\xce\xfd\xca\xeb\xa8\xdb\x36\x7e\x3f\x14\x5f\xba\x2d\xc8\x58\xb8\xdd\xcb\x4e\x41\x91\x8b\x90\x97\x5d\xba\xc0\x2b\xdd\x76\xdd\xc8\x7f\xae\x75\x09\x42\xd7\xc4\xf6\x42\xc2\x57\xba\xf0\xba\x11\x34\x2e\xb9\x70\x88\x4d\xcc\xe2\xf2\x21\x68\xe5\x28\xdc\xee\xa5\x0b\xbc\x74\x81\x8b\xe5\x75\x81\x57\x7a\xcf\xba\xe1\x7f\x2e\x79\x4f\x88\x4d\xb2\xf9\xeb\xd2\x79\xd3\x63\xd6\x42\xb1\x70\x85\x96\x0f\x62\xd2\x12\x24\x71\xa6\x83\xa8\x05\xbd\xbd\xe4\x20\x2e\x39\x08\x0c\xf1\x92\x83\xb8\xf2\x02\x6b\x21\x14\x87\x2e\x30\xfa\x48\x68\x08\x9a\x82\x74\x35\x0b\xc8\x04\xe5\x81\x0a\x0e\x22\x94\x84\x85\x92\xb0\xa5\x89\xbb\xa0\x9d\x51\x82\x0e\x41\x78\x16\xa2\x4d\x74\x64\x1f\x79\xdb\xb5\xa0\x32\xa1\x24\x2c\x94\x84\xb9\x20\x2d\xcf\x0d\x15\xe4\x15\xba\xa1\x48\xbf\x5a\x2b\x45\x5f\x9c\x62\xf5\x84\x55\x02\x63\x9c\x62\x35\xc9\x54\xf0\x0f\x75\x2a\xe2\x4a\x11\x2a\x59\x8a\x6b\x08\x42\x84\x4f\x48\x6b\x5d\xc9\x7d\x23\x43\x8d\x4b\xdc\x5f\xa4\x7d\xc4\xa4\xb8\xd0\x89\x40\x84\x8d\x52\xfa\x96\x08\xef\x94\x44\x6d\x24\x4b\xb7\x24\x71\xcb\x06\x5c\x10\x6b\xdd\x99\x8e\xd6\x46\x00\xba\x95\x8e\x42\x6c\xba\x20\x98\xb8\x39\xb6\x32\xb6\x5b\xc7\xbe\x33\xb7\xa8\x1d\xab\xbb\x95\x5b\xdc\x52\x4c\xd7\x28\x14\xf3\x4e\x37\x52\x3b\xe5\xc8\x2d\x37\x72\x93\x6e\x18\x65\xd3\x2d\x5d\xbd\xf7\x9a\xa3\x28\x05\x6e\xf5\x19\x20\x66\x64\x6c\xb7\xfa\x0c\x77\xd6\x10\xb5\xe3\xcb\x6e\xd5\x10\x10\xb3\x8d\xe5\xe5\x46\xee\xac\x62\x6b\x47\x7d\x6f\x55\xb1\x10\xb3\x0d\xe1\xa8\x8a\xbd\x2f\x76\xc4\x4b\xdd\x97\x76\xbc\xb4\x23\xcb\x5f\xda\xf1\x62\x2d\xae\xe3\x96\xa0\x21\x66\x24\x84\xb7\xb2\xd2\x3b\xf2\x8c\x43\x4c\x84\x98\x48\x62\xc6\xa5\xdd\x4a\x37\x6e\x6e\x68\x64\x8e\xe8\x6a\xb0\xf9\x86\xfa\x52\x5d\xfb\x86\xfa\x8a\x98\x3d\x47\xed\x40\x96\x8a\x49\xc1\xed\x9b\x2d\x41\x8b\xfe\xd5\x06\xa4\x89\xdc\x10\xe5\xaf\x6f\x4b\xcb\x27\x31\x2b\x05\xa8\x08\x62\x47\x67\xf9\xa5\x89\x8b\x1d\x8b\x26\x6a\xc7\xf4\xd1\x95\x92\xd5\xb7\x5d\x6b\xed\x5a\xab\x01\x69\xad\x83\x51\x8d\xe5\x4f\x8d\x3a\x35\xaa\x03\x69\x54\x9e\xbe\x92\x35\xf8\x46\x96\x25\x62\x56\x38\x10\xae\xc3\xb7\x48\xee\xa7\xf8\x8a\x1b\xe8\xd6\x5a\x33\xa1\x5b\x6b\xdd\xf3\xe5\x51\x9f\x07\xca\xbc\x3f\x89\x24\x01\xab\xb7\x0e\x84\xa0\x2d\x2b\x33\x7f\xf6\x39\x0b\xde\xc4\x32\xcd\xf6\x82\x37\x11\x31\xcb\x18\xee\x05\x6f\x22\x32\xc9\x66\xbc\x74\x04\x5d\x70\x0a\xc6\x19\xcb\x78\x42\xec\x58\x05\xb1\x63\x99\x69\xa2\x96\xde\xd7\x0b\x4d\x05\x11\xb3\x74\x0a\x5e\x68\x2a\x78\xc9\x14\xa1\x5a\x26\x25\x5e\x48\x11\x44\xec\xc9\x17\x4d\x05\x2f\x34\x45\xcd\xe0\xcb\x34\xca\x34\x2a\xa5\xaa\x46\xa8\x17\xee\xd1\x16\xac\xea\x1e\x8b\xee\x31\x0b\x78\x2f\xba\xc7\x72\xc0\x97\x33\xea\x10\x5f\x87\xf8\x12\x24\xbe\x32\xcd\xae\xa4\x08\x5e\x4e\x8d\x3a\x35\x0a\x56\x4f\x8d\xba\xd2\x9b\xac\xc9\x81\x2e\x2d\x9f\xc4\xac\x72\xec\x4b\x13\x23\x4d\x94\xb0\xee\x25\x8a\x20\x4c\xb4\x72\x1d\x58\x87\x97\xcc\x1e\xeb\x5a\x1c\x88\x6a\x5d\xc4\xac\x71\xec\xd0\xb1\x33\x50\xd4\x25\xee\x09\x14\x5e\x6e\x34\x47\xd7\x71\x0f\x41\xc9\xbd\x6f\x88\xf0\x16\x13\xa4\x8d\xd6\xda\xef\x86\x62\x57\xf7\x57\xa4\x92\x41\x78\x95\xca\x54\x54\xc6\xd1\xb5\x2a\x95\xa9\x52\x99\x0c\xc5\x5e\xa5\x32\x90\xea\xa8\x5f\x95\xca\x54\x59\x30\x46\x5d\x65\xc1\x35\x5d\x6d\xf5\xaa\xb5\x4e\x41\x3a\xaf\x01\x71\xde\x3a\x34\x8a\x89\x43\xa3\xa8\xef\xad\x39\x10\x82\xaa\xd8\xb9\x77\x58\x95\x32\xd4\x95\x86\xe8\x06\x5f\x2e\x88\xde\x91\x69\x14\x09\x9d\xd7\x74\xb5\xd5\x1d\x26\xc8\x07\x44\x8c\xee\xb9\x57\xd7\x19\x1d\x26\x10\x7a\x75\x31\x41\xb3\xc8\x32\xab\xf4\xea\x62\x22\x15\xab\x6d\x08\xbd\x4a\xb1\xaa\x14\xab\x0b\xd2\xc4\x0c\x8c\x6d\x93\xbc\x4e\x2d\x4f\x60\xb4\x2e\x48\x22\x4c\xd2\x36\xdc\x5b\x3d\x25\xc2\x13\x13\x7b\x42\x2e\x88\x1d\x3b\xf2\x92\x92\x56\x29\x29\x7a\x5b\xcf\xe7\x8e\x67\x8e\x1a\x1c\xfb\x14\xab\xd4\x36\xf6\x9c\x28\x41\x67\x36\xd3\xb6\xc1\x81\xc8\x66\x44\x56\xc5\x36\x2b\xe1\xc0\xeb\xb5\x18\x25\x48\x4c\x24\xe9\xa3\x71\x46\xd9\x40\xbd\xd9\x31\x73\x62\x57\xc3\x5f\xa4\x6d\xf8\xb2\x46\xcb\x40\xc4\xe4\x20\x1a\x2d\x03\x6f\xa9\x5f\xad\x64\x14\xf4\x26\xfd\x6a\xd2\xaf\xae\x89\x26\xe8\x64\xd4\x04\xba\x04\x71\x20\xce\xd8\xa4\x39\x2d\x63\x78\x2b\x38\xe7\x46\x0c\x17\x31\x1b\x2c\x3f\xb4\x7c\x2a\x50\x2b\x55\xd0\x73\x22\x9e\x05\x49\x34\xca\x56\x6f\x73\xe6\x28\x0c\xb1\x4d\x31\x41\x67\xd5\x06\xcb\xd3\xb7\xf0\x36\x9d\x51\xb0\x3a\x77\x41\x78\x83\x81\x24\xe4\x04\x5b\xba\xb4\x56\xd0\x9c\x66\x12\x0e\x15\x90\x65\x0a\xea\xcd\x24\x09\x43\x12\x3a\xb6\x89\xd5\x24\x63\x3d\x47\x89\x89\xd4\xfb\x56\xb4\xbc\xf4\xbe\x65\x6d\xd3\x0a\x2e\xa9\x51\xdb\x88\x98\x71\x69\x6d\x49\x12\x8b\x63\x4f\x41\x3a\x76\x92\x51\x37\xce\xb8\x74\xec\xcc\x4d\x5a\xc1\x71\x35\xda\x22\x22\xa3\x4b\x12\xae\xe5\x3d\x75\xb5\x2c\x76\x74\x49\xc2\xd1\xd5\xc1\xd5\x92\x53\x7b\x4b\x53\x68\x65\xb1\x96\x4c\x01\x62\x36\x38\xe3\xa1\x7b\xcc\xf0\xd9\x2a\xbe\xbf\x29\x7c\x36\x85\xcf\xc9\x8e\x0a\x9f\x0d\x5d\xad\x78\xe2\x26\x5d\x6d\xca\x53\x26\xf7\x78\x89\x2f\x74\xb5\x62\x0a\x4d\xba\xda\xe4\x9c\x89\xbb\x4d\xce\xb9\x65\xba\xd2\xaa\xee\xf1\xd2\xb1\x93\x98\x4d\x04\x1d\x62\x22\x03\x76\xab\x3a\x90\x02\x76\x23\xb1\x57\x60\x6c\xa1\x1b\x8a\x94\x44\x95\xde\x87\x24\xc1\x33\x1b\x7d\x66\x6f\x21\x26\x6e\xd6\x92\xec\x6f\xad\x95\x64\x2e\x87\x09\xb9\xf0\x86\x0d\xd5\xac\xcc\x5c\x4f\x5d\xde\x3b\xcb\x23\xc2\x2e\xbf\x0a\x31\x7a\xdd\xde\x95\x2c\xf5\xc1\x28\x9c\x55\x57\x74\xee\x8a\xce\x84\xcf\xae\xe8\xdc\xd1\xaf\x46\x82\xd3\xa5\x5f\x10\xe3\x01\xd0\xbb\xf4\x8b\x97\xb4\xd6\xd0\x55\xbd\xa4\x79\x5f\x69\x0a\x0d\x4b\xeb\x4b\xa3\x16\xa6\x60\x1a\xa5\x1d\x93\xcc\x81\x27\xef\x0a\xc5\x5d\xa1\x38\x2b\x6c\xef\x0a\xc5\x3d\x33\xe4\xd6\xa6\xd6\xba\x04\x61\xc8\xb8\xed\x2e\xc5\xe4\x09\xae\x35\xa4\xaa\x27\x38\x11\xb3\xac\xb0\x5d\x4f\x70\xce\x53\x57\x6b\x4b\xd0\x29\x08\xfd\x32\x24\xb1\x6b\xf9\x24\xad\xb9\x46\x3d\x97\xc7\xdc\x51\x72\x3d\x75\x79\x47\xbf\x9a\x03\x49\xbf\x20\x66\x59\x61\x7b\x97\x2f\xec\xa9\x26\xad\xe3\xf8\xba\xd4\x04\x62\xa6\x4b\x53\xa4\xef\x19\xb0\x5b\xc7\xd5\x76\x05\x6c\x88\xd9\xda\x7e\x3f\x14\x77\xe9\x47\x47\x19\x3a\xba\x36\xa4\x0c\x90\xd6\x11\xc1\x90\x43\x1d\x1d\x1e\xb3\x00\xf7\x41\xcf\xc7\x47\xfa\xc5\xd6\x61\x7b\xc8\x2f\x42\x8c\xce\x90\x0f\x5e\x75\x45\x46\x81\xed\x31\xb4\xfc\x60\x79\x02\xe3\x18\x5a\x7e\xe0\xa5\x48\x50\xc6\xa8\x82\x1a\xa3\x58\x8b\x4e\xbe\x88\x19\xf7\x30\xe4\x76\x47\x3a\xd4\xd6\xd1\xc8\x21\x87\x0a\x31\xa5\x6a\x63\x6a\xc7\x4c\x08\x1b\xaf\xa3\x3e\xe8\x1f\x89\x18\xed\x29\x1f\x4a\x0e\x07\xde\x73\xe0\xaf\x87\xbc\x27\xc4\x6c\x71\x46\x13\xab\xe8\xed\x20\x39\x1c\xd2\xdb\x91\x6e\xa4\xf1\xe4\xe8\x43\x6e\x04\x62\xb6\x38\xf6\xa9\x03\x11\x51\xe7\xc6\x44\x45\xd4\xa1\x88\x9a\x55\xb1\x0f\x45\xd4\x71\xa5\x89\x4d\x32\xfa\x71\x2d\x41\x98\x98\xe4\x25\x67\x33\x32\x31\x6f\x34\x36\x7d\x28\x31\x1f\x7a\x62\xa7\x1e\x19\xb7\x26\x72\xb5\xf4\x3a\x7d\xea\x6a\x21\x4d\xd5\xc1\xd4\xd5\x4e\xc5\x4a\x17\x54\x05\xc1\x04\x5e\x6a\xca\x1b\x4c\x79\x83\xac\xcc\x7c\xca\x1b\x4c\x62\x12\x6d\x33\x9f\x8a\x49\x53\x31\x09\x1b\x98\x8a\x49\x13\x79\x51\xe5\xf9\x94\xbc\x66\x9a\x6b\x53\x4e\x3c\x65\xae\x10\x93\xca\xcd\xa5\x89\x19\x28\x9a\x32\xb6\xa9\x2c\x6b\x2a\xcb\xe2\xb6\xa7\xb2\xac\x49\x84\x50\x1a\x34\x15\x21\x20\xe6\x6b\x03\x12\xab\x49\x7a\x79\x8e\xd2\x8e\x5c\x87\x42\xf1\xd4\x75\xcc\xe7\x75\xb0\xa3\xae\x63\x5e\x29\xe8\xb5\x31\xea\x32\x41\x12\x34\x52\xd5\x0d\xcd\x2c\x5b\xdb\xe2\xd2\x26\x65\xab\x88\x19\x49\xc9\xa4\x6c\xf5\x89\x51\xd3\xc5\xf4\x29\xa3\x86\xd8\xda\x04\xe9\x40\x5c\xed\x22\x4c\x4d\x5d\x2d\x64\xf6\x21\x48\x3b\xde\xfa\x58\xa2\x00\xe9\x8c\x49\xda\xc2\x1b\xcc\x5b\x67\xe4\x65\xed\xc9\xbd\x72\x75\x48\x5b\x04\xff\xa9\x64\x1c\x62\x8b\xe4\x52\x0f\xcc\x6e\x98\x28\xfd\x49\x37\x99\x28\xc4\x16\xea\x6b\x32\x51\x9e\x68\xdb\x22\x42\xe8\x89\x56\xc4\x56\x56\xfe\x6e\xb2\x21\xcb\xac\xa3\x2d\x24\x61\xd6\x04\x35\x46\x4d\xa0\x2e\x28\x23\xaa\xca\x0a\x53\x85\x0d\x31\xde\x57\xdc\xe8\xc1\x3a\xcf\xbd\xcd\xa9\xd6\xf5\xdc\xeb\xb6\x98\x88\xec\x4d\xe1\x00\x62\x0b\x73\x37\xe9\x97\x9d\x8c\xc2\x6a\x4d\x19\x2e\xc4\x16\x45\xb7\x9d\x1a\x95\x82\x6e\x7c\x29\xe2\x26\x41\xdb\xad\x51\xec\x78\x3f\x47\x9d\x2f\x8f\xbe\xb5\xe4\x6b\x49\x5e\x10\x5b\x14\x2f\x4b\x66\xb5\xd2\xf1\x75\xde\xd5\x7d\xc9\xf1\x41\x6c\x11\x18\x97\xa4\xba\xd2\xa5\xf5\x6d\xb0\x96\x5c\x1a\x64\x6e\x70\xbf\x94\x49\xae\x8c\xbb\x7d\x23\x03\x59\x8a\xbb\x4b\x5f\xcb\x90\x82\x2e\xc5\xdd\x95\x82\xee\x4a\x8d\xf5\xc8\xec\x2b\xc3\x49\xdf\x70\x30\x4b\xa9\x0b\xa4\x29\x51\x5d\x97\x76\xe4\x40\xbc\x02\xbb\x5e\x5b\x9d\xb7\xcf\x4e\xdb\xcd\xf5\xf6\x29\x62\x52\x72\x3d\x6e\xba\xcf\xf1\xf2\xe8\x15\x26\x9c\xaf\x02\x44\x6c\xd1\x6b\x70\xa5\xb3\x9e\x7e\xa2\x2b\xf1\x72\xf9\x09\x88\xf1\x21\x8f\xbb\xfc\x04\xa4\x2b\xf1\x72\x15\xf0\x10\x5b\x45\x90\x76\x4c\x05\xe8\xbc\xef\xba\x1e\x4a\x9d\x47\xc4\x5e\xd1\x7b\x3d\x22\xfa\x9e\x71\xa8\x37\x3c\xd3\xae\x38\x04\xb1\x45\xe1\xb8\xeb\x3a\xf6\x14\x61\x6f\x4b\x90\x0b\xe2\xb6\x69\x65\xec\x03\x56\x77\xcb\xe5\x1b\xe6\xbe\xdb\x25\x28\x6d\x7b\x11\x28\x76\xb5\x0c\x20\xbd\x53\x7a\xe9\x11\xd1\x79\x1e\xec\xbd\xfd\x7e\x83\xda\xf5\x7a\x28\x62\x8b\x1e\x86\x5e\x0f\x9d\x57\xba\xae\x10\xaf\x57\x3a\x11\x93\x83\xd8\x4f\xec\x69\x4f\xd7\xd1\xf9\x7e\xc6\x77\x95\xfc\x90\xb6\xe1\xe8\xf5\xfe\xe6\x3c\xb6\x75\x3e\x5d\x71\x3d\xb6\xf9\xc1\x35\x0f\xb2\xa4\x43\xd7\x7c\xe8\x9a\xb1\x94\x43\xd7\xcc\x33\x5a\x1f\x04\x33\x3d\xa3\xf9\xb1\x52\xd7\x26\x4c\x1c\xab\x09\xc2\xa8\x29\xa7\x0f\x55\x07\x3c\xb6\x75\x85\x29\x3d\xb6\x89\xd8\xc2\xf7\xeb\xb1\xcd\x79\x62\xea\xbc\x31\xba\x9e\x98\x9c\x87\x95\xae\xfa\x4d\x0f\x2b\x7e\xe6\xe0\x2e\x13\x3b\x95\xaa\x41\x6c\xd1\x0f\x39\x95\xaa\xf1\x34\xd1\xd5\x5b\xd1\xd3\x84\xd3\xe3\xef\x8e\xb9\xaa\xc7\x2f\x62\xbc\x14\xf9\xa5\x46\xdd\x95\xb2\x1f\x1b\x9e\xf8\x92\xec\x21\xb6\x9a\x20\x24\x71\x65\xb4\x19\x1b\x16\x7c\x29\xda\x40\x8a\x6e\x48\x3d\x7e\xbf\x8e\xc9\x23\x73\x8a\xf0\xe2\x4b\x22\x11\x5b\x34\x52\xae\x43\x13\xd3\xe7\x0c\x1e\x07\xfc\x52\x00\x82\xd8\x6a\x2c\xaf\x00\x44\xab\x7e\x6c\x04\x46\xb5\xea\x3d\x66\xd6\x49\x85\xe5\x83\x37\x33\x11\xe3\x51\xcb\x83\x37\x33\x0f\x5e\xba\x0b\x3e\x23\x78\xe9\x16\xb1\xd5\x34\x11\xed\x0e\x0a\x3f\x1a\xfa\x1e\x4a\xcc\x21\x8d\x87\x61\x0f\xb5\x3f\x69\xc2\x8f\x42\x44\x55\x13\xde\x23\xb5\x7b\xa8\xe6\x0a\xa9\x6f\x48\x7d\x69\xc4\x84\x44\x08\x19\x05\xdf\x1f\x12\x61\xa8\x3c\xc4\xab\x87\xb2\xf0\xa0\xf0\xab\x04\xb3\x50\xe1\x07\x31\xde\xdf\x3c\xd4\x3c\xa1\xe3\x3e\xf8\x72\xc4\xd5\x71\x77\xba\xe4\x43\x95\x86\xba\xe4\x7e\x23\xfb\x86\xbc\x6e\xc9\x1e\xd2\x78\xb8\xf3\x5b\xb2\xbf\xcf\x8b\x52\x13\x48\x4d\x0a\x88\x2d\xd2\x8d\xfb\xc4\x67\xdc\x99\x5f\x8f\x4e\x09\x7c\x2b\xbf\x86\x14\x75\x90\x6f\x25\xd0\xf4\x99\x07\xe9\x2c\x2a\x4e\x94\x4f\xfd\x0e\x75\x9d\x83\x4e\xf1\x18\xa9\x5a\xa1\x4e\x71\x6c\xa9\xad\x63\xa4\x75\xc6\x46\xb3\x5d\xc4\x56\x56\xf8\xb1\xf1\x51\x5f\x6c\x99\x56\x8c\xa9\x89\xa4\x15\x22\xb6\xba\xa0\x00\x4a\x96\x06\xcf\xea\xb1\xdd\x5a\xeb\xd6\x2b\xb4\x20\xad\x05\x97\xbc\xb3\x85\x9a\xb4\x51\x32\x8d\x1b\xbc\xef\x44\xa1\x71\x26\x62\xab\x17\xa0\x43\x50\x72\x4f\xa7\x38\x0a\xbe\x34\x8a\xe2\x58\x96\x6e\x51\x88\x63\x41\xcb\x74\xd0\xf1\x0f\xb5\x4c\xa3\xec\xa9\x80\x04\x9a\x28\x3c\x98\x8b\xd8\xca\x40\x13\x65\xd7\x8e\x59\xea\x0e\xb2\xcf\x28\x94\xba\x22\x75\x6b\xb0\x9a\x65\xef\x93\x8c\x35\x98\x48\xf5\x2b\xd2\xca\xd0\x44\x2d\x1f\x27\xa3\x26\xd0\x25\x48\xf2\x82\x2f\xda\x9c\x41\xef\x71\xac\x34\x8c\x50\xef\x31\x2a\xb6\xb2\x52\x27\xa3\x62\x2b\x22\x86\x23\x89\x8a\xad\x44\xcd\xf8\x3a\xe8\x3d\x46\x25\x91\x11\x31\x72\xae\xa8\x24\x32\x51\x33\x5e\x0c\xaf\x1a\x75\x09\xba\xf8\x20\xa3\x02\x85\xa0\xe0\xe3\x0e\x46\x49\x5e\xf5\xd0\xf7\x1e\x29\xe8\x8a\xe6\x8a\xd8\xea\x8c\x42\x73\xa3\xa6\xc7\x1f\x9e\x19\x76\xd4\x53\x3b\x9e\xe4\x10\xe9\xc4\x83\x16\xe0\xdb\xa8\x19\x10\xe6\xb6\x31\x91\x80\x20\x62\x24\x7e\x51\x43\xdc\xc7\x91\xa3\xc4\x04\x1f\x18\x88\xd8\x1a\xac\x25\x11\xd2\x71\x9b\x3c\x75\x86\x3a\x6e\xd1\x32\x1f\x99\x64\x1a\xd1\xc8\x47\x44\x8c\x8c\x31\x1a\xc1\x54\x64\x6e\x19\x36\xa2\x11\x4c\x45\x6c\x65\xd2\x1d\x6d\xa0\x5f\x2d\x5d\xd7\xdc\x9c\x89\xb8\x2e\x11\xe3\xa1\x36\x68\x8f\xbd\x0d\xba\x51\xb3\x6c\x4c\x94\xbc\x5a\x4a\x62\xf2\x69\x5c\x34\x49\x02\x62\x52\x93\x26\x49\xd0\xeb\x98\xc5\xe7\xef\x46\xe1\x50\x2b\x24\x68\x4c\xcc\x0a\x8f\x6a\x4c\x44\xcf\xd0\x36\x79\xec\x8b\x4e\x68\x13\x31\x3a\x66\xd1\x69\x7c\x85\x1a\x13\x2d\xf3\xfb\x50\x63\x42\xc4\xa4\x91\x6a\x4c\x04\x9f\x0b\xcf\x56\x99\xc8\x03\x9d\x88\x2d\x2c\xb8\xd3\x0b\x0b\xbe\x75\x9d\x2d\x5d\x75\xe8\x5b\x57\x11\x5b\x59\xcd\x85\xbe\x75\x0d\x3e\x46\x9d\x6d\xb2\xfc\xa1\x1d\x0f\xed\xe8\x40\xda\xf1\x66\x2d\x4b\x71\xd2\x32\x78\x12\x5b\xa8\x8c\x3a\x07\x41\x1f\x60\xd2\x7d\x0b\xf5\x01\x44\x66\xef\x82\x8a\xa0\xc2\x13\x6a\x03\xaa\x82\x98\x88\x37\xa0\x27\xf0\x24\x4d\x56\xa7\xd6\x40\x8c\x8c\x24\x13\x5f\x1a\x83\xfc\x5e\xa4\x3c\x97\x27\xbf\x0f\x8a\xeb\xc9\xe7\xc2\xa1\xe2\x3a\x46\xc6\xfd\xc9\xf7\xcf\x31\x76\xed\x98\xa4\xf1\x84\x1a\x83\xb8\x1f\x23\xbd\xe7\xa4\x04\x8f\x21\xef\x09\x31\x1e\x50\x62\xf0\x69\x5c\x8c\x14\xc8\x1c\xb8\xb7\x41\x1b\x5d\xc4\x16\x9e\x78\xd0\x3b\x8c\x91\x36\x30\xe5\x9c\x87\x6c\x60\xc8\x8d\xa0\xf0\x43\x6e\x84\xe2\x7a\xf2\x01\x69\xa8\xb8\x8e\x39\xf8\x0c\x0a\xd3\x9f\xf2\x8b\x53\x55\x53\x56\xd2\x31\xa9\x9a\x62\x5a\x5a\x1d\x5f\xde\xc5\xe4\x33\x04\x91\x32\xb0\xba\x29\x9f\x41\xd9\x3c\x79\x56\x0f\x95\xcd\x31\x53\xcd\x26\xaf\xe3\x31\xf9\x04\x4d\xc4\x16\x0a\x30\xe9\x98\xc5\x74\x8d\x82\x09\xd7\x28\xd7\x28\x03\xd2\xa8\x4c\x3e\x26\x0f\x87\xa1\xea\x57\xa4\xf2\x22\x14\xaa\x7e\x63\xa6\x27\x9e\xa6\x89\xf2\xc4\x10\x5b\x93\xe5\xe5\x89\x27\xfa\x45\xd1\x1f\x53\xfa\x35\x9f\xfa\x05\xf7\xd2\x2f\xaa\xcc\x49\xcd\x17\xaa\x32\x83\x8f\x7f\x27\x55\x40\xf0\x05\xf0\x93\xd8\xb2\x0d\x08\x41\x53\xf3\x4d\xdd\xa3\x6a\xbe\xb0\xcc\x34\xe6\x32\x07\x3a\x05\xe1\xb8\xac\x00\x69\xad\x24\x73\xb9\x26\x6a\xad\x45\x90\x37\x41\x04\x33\x4b\xd5\x98\xcb\x53\x12\xc6\xe7\x92\x22\xb6\x30\x18\xe3\xeb\xaf\x30\x34\xc7\x0b\x3b\x4a\x73\x4c\x9a\x63\x4c\x94\xe6\x58\xd6\x56\x53\x2e\xdc\xa8\xad\x44\x6c\x65\x3e\x12\xc6\x07\x06\x41\xfd\x38\x1d\x9d\x50\xfd\x18\x8b\x17\xc7\x2d\x8b\xeb\x58\x3a\xe3\x22\xcd\xdf\x90\xfd\x22\xcd\x17\xb1\x65\x0b\xa8\x0b\xca\x89\xa5\xb1\x16\x59\x8b\x88\x49\x38\xeb\xd2\x5a\xc9\x97\x15\xc2\x94\x6a\x3e\x11\x5b\xe4\x03\x4b\x7c\xe9\x6b\x5d\x45\x54\x7d\xad\x2b\x52\x94\x0f\x2c\xdd\x23\xc4\xd6\x12\x24\x26\x68\x20\x94\x95\x13\x55\x3f\x06\x75\x9a\x15\x64\xaf\x3a\x2d\x9c\xdf\x10\x54\x3c\xa6\xf3\x1b\x02\x11\x5b\x8b\x51\x34\x56\xc3\xf1\x5f\x95\x74\xc3\xe5\xbf\x20\xb6\xb4\xbc\x64\xef\xa9\xbe\xd6\x50\x5f\x3f\x9f\x10\x1f\x29\x77\x46\x49\x7d\x21\xc6\xb3\x67\x38\xaf\x53\xe1\xb7\xbe\x81\x66\x47\x9d\x11\x52\x5a\x56\x73\xe1\x3a\x23\x25\xa5\x35\xb4\x50\x25\x65\xec\x34\x36\x1a\xf2\xda\x4d\x10\xcd\xc1\xb5\x06\x50\x11\xc4\x6f\x61\xb2\xb0\x08\x95\x81\xb1\xf3\x9a\xd7\xe1\x6b\xe7\x35\x4f\xc4\xd6\x9a\x40\x28\xe6\xae\x1f\x7e\xa0\x72\xbb\x5c\xda\x9e\x2e\x6d\x55\xb8\x57\x29\x13\x97\xbe\x76\xc7\xb9\xab\x94\x89\x2b\x23\xc1\xea\x59\x33\xc6\xc5\xcf\x1d\x44\x8a\xe3\xa3\x2f\x7e\xee\x10\x54\x11\x8b\xcf\x12\x43\x55\x44\x90\xd3\x2f\x3e\xe3\x0c\xe5\xf4\x11\xe9\xf8\xd6\xdc\x72\xf9\xe0\xa3\x80\x88\x9b\x2f\xfa\xb9\xc7\xa0\xcf\x24\xa2\xb4\x2e\x68\x88\x04\x99\xf9\xda\x32\xf9\xbb\x25\xae\x7b\xcf\xdc\x52\xf3\xee\x9d\xdc\xf2\xde\x07\x3f\xcc\xb0\xdf\xd6\xc3\xed\xb7\x81\xf8\xde\x69\xf7\x8a\xb0\xd1\xbd\xd3\x1a\xb9\xf7\xcc\x3b\x7e\xde\x88\xbc\x43\xc4\x66\x26\x65\xb7\x8a\x78\x11\x9b\x65\x03\x7a\xee\xbd\xff\xfc\x03\x80\x7b\x27\xef\x10\xe1\xf1\xe4\xde\xa9\x7c\xef\xfd\x57\xe9\xde\xba\xbc\x9b\x6f\x5d\x57\x4b\xe7\x70\xeb\x5b\x57\x11\x49\xf7\xd6\xb7\xae\xf7\xfe\xab\x74\x6f\x15\xd6\xf7\x21\xe9\xc2\x96\x4a\xe6\x9b\x32\x77\x8d\x34\x9c\x5b\x65\xee\x7d\x66\x8a\xbd\x6c\xfb\xbf\xc9\x49\xfe\xff\xfb\xfd\xe3\x9b\x5f\x7e\xc4\x76\xfe\xf8\xe9\x53\xbc\x7e\xe1\x27\x73\xfc\x4e\xed\x71\xc5\xfd\xee\x35\x7e\xf9\xf9\xdd\xc7\x0f\x1f\x73\x16\xff\xfd\x4f\x00\x00\x00\xff\xff\x1e\x5b\x0f\x99\xaa\x37\x00\x00"); -func _dbcf ()(*asset ,error ){_ecaf ,_bac :=_edfd ();if _bac !=nil {return nil ,_bac ;};_bec :=bindataFileInfo {_ag :"Adobe-Japan1-1",_bc :1098,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491308,0)};_geg :=&asset {_cd :_ecaf ,_dce :_bec };return _geg ,nil ; -};func _cafgf ()([]byte ,error ){return _dc (_efbd ,"UniJIS2004-UTF32-H")};func _bdbc ()(*asset ,error ){_edbab ,_aedb :=_fedg ();if _aedb !=nil {return nil ,_aedb ;};_gagdb :=bindataFileInfo {_ag :"UniCNS-UTF32-H",_bc :322404,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492707,0)}; -_effa :=&asset {_cd :_edbab ,_dce :_gagdb };return _effa ,nil ;};func _fad ()([]byte ,error ){return _dc (_bfe ,"Ext-RKSJ-H")};func _bged ()([]byte ,error ){return _dc (_feecc ,"KSCms-UHC-H")};var _bbga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4b\xaf\x6d\x39\x72\xe7\x37\xcf\x4f\x71\x86\xed\x41\xbb\x16\x17\xdf\x40\xe1\x02\x96\xd4\x05\x0b\x8d\xb6\x0d\x4b\xb2\x0d\x18\x1e\x90\xfb\x21\x27\x60\x65\x16\xb2\x4a\x03\x7d\x7b\x83\xff\xff\x2f\x76\x0a\x86\x81\xa3\x3b\xb9\x3b\x0e\xd7\x22\xb9\xc8\x60\x30\xde\xf1\x87\xbf\xfd\xfb\xbf\xfb\xfb\x5f\x7e\xfe\xeb\xd7\x1f\xfe\x97\xdf\x7e\x7d\xfc\xc3\xeb\xaf\x5f\xef\x9f\x7f\x79\xfe\xf6\xfa\xcb\xaf\xff\xfa\xdb\xe3\xf5\xb5\x5f\xff\xfc\xf3\x2f\x3f\xfd\x94\xee\xaf\xe7\xcf\x8f\xbf\x06\xa8\xff\x1e\xff\xb2\xfe\xfc\xd3\x4f\xe7\xfd\x7f\xf8\xb7\xbf\xfc\xf5\xf5\x2f\x7f\xff\xcb\xfb\xd7\xaf\xec\xe7\x9e\xff\xfa\x67\x9e\xfd\xfa\xfa\xc3\xff\xfa\xfa\xe7\x9f\xff\xf2\xd7\xdf\xfe\xed\xeb\x3f\xfd\x0f\xcf\x5f\xf7\xeb\xbf\xfb\x7a\xbe\xde\xe7\xef\xff\xf3\x6f\xcf\xd7\x6f\x3f\xff\xf2\xcf\x5f\xff\xe9\xbf\xfe\xfa\xdb\x6b\xa5\x4f\xc3\x3f\xfc\xeb\x9f\xff\xfc\xff\xbc\xfe\xe5\xf5\xcb\x5f\xbf\x92\xfe\xf6\xfa\xe5\xa9\xff\x7f\xfa\xc3\xdf\xfe\xb7\xf5\xe7\xff\x69\xfd\xcb\xeb\xeb\x0f\xff\xf4\xcb\xcf\xff\xf5\x1f\xfe\xf3\x3f\xfd\xe3\x9f\xc6\x7f\xfe\x1f\xd5\xa8\xb6\xff\xed\xf5\xdb\x5f\x7e\xfe\xf5\x97\xaf\x94\xfe\xfb\xeb\x1a\xbf\xff\xfd\x1f\xff\xed\xcf\x2f\x3a\xfb\xe9\x0f\xff\xc7\x3f\xfd\xfd\xdf\x7d\xfd\x9f\xe9\x2b\x5d\x5f\x77\x2d\xa9\xfc\x5f\xfc\xfd\x7f\xff\x6f\xbf\x3e\x5f\x5f\x97\xa1\xe2\x0f\x78\xfc\xfa\x7c\xfd\xe5\xcf\xeb\xf1\xfa\x6d\xfd\xf2\xcf\xaf\x9f\xbe\xbe\xfe\x78\x5d\x3f\xbe\xfc\xef\x8f\xfd\x4f\x3f\xce\x5f\xfe\xf6\x1a\xfc\xed\x8f\x7f\xf7\xa7\xbf\xf1\xdf\xfe\xcb\x35\xf8\xeb\x1f\xff\xcb\x9f\xfe\x26\xfe\xfa\x27\xfd\xf5\xfc\xfd\x8f\x7f\xea\x7f\xc3\xdf\x5f\xbf\x3c\xff\x3f\xa3\xfc\x94\x3c\xf8\x2f\xbf\xfe\xf5\xf9\x7a\xfb\x6f\x1a\xf7\x8f\xe9\xfd\xe3\x2b\x9d\x37\xfe\x7d\xd3\x4f\xe9\xba\x98\xed\xcf\xcf\xc7\xff\xbd\x7e\xfb\xe9\x8f\x8f\x7b\x5d\xe7\xc9\xf3\x23\xfd\xf8\xba\xaf\xa1\x9f\xe5\xc7\xd7\x9d\x8a\x7e\xf6\x1f\x5f\xa9\x56\xfd\x1c\x3f\xbe\xd2\xd5\xf5\x73\xfe\xf8\x9a\x7e\x74\xfd\xf8\x6a\xcd\x3f\xf7\x8f\xaf\xd4\xdb\xf9\xb9\x4f\xa7\x59\x7f\xdd\xe9\xfc\xbc\xf4\xb3\xfc\xf8\x4a\x73\xea\x67\xfb\xf1\x75\x17\x8d\xb0\xcf\x08\x97\x7f\x8e\x33\x05\xf7\x30\x7f\x7c\x8d\x72\xeb\xe7\x19\xa2\x6b\x0a\x5b\x43\x68\x0a\xfb\xf1\xe3\xab\x57\xcd\x7c\x3f\x7f\x7c\xf5\xe2\xd1\x5e\xe7\xaf\x7e\xed\x7d\x3a\x3b\xa3\xe5\xd1\xce\x24\x4f\xbf\x79\x5e\xe7\x67\xd7\xcf\x33\x70\x4e\xfa\x39\xce\x10\x59\x3f\x5f\xe7\xa7\x9f\x7d\xff\xf8\xea\xfa\xb6\xbc\xda\xe9\x57\xaf\x9d\x6f\xeb\x55\xfd\x6a\xea\xf9\xd6\xcf\x71\x9e\xd5\x6b\x9a\x43\x3b\x0f\x94\x99\xce\xb3\xa7\x87\xb2\x34\x07\xfd\xf5\xac\x69\x6f\x67\x49\xca\x59\x9d\xde\x92\x7e\xde\x67\x60\xff\x35\x9f\xbf\xde\xfa\xa9\x7e\xb3\x7e\xbe\xcf\x03\xe7\xd9\x7a\x30\xa3\xb7\xa2\x9f\xe9\xfc\xf5\xd6\xcf\xfb\xfc\xb5\xea\xe7\xfc\xf1\xd5\xf9\xab\x96\x6f\xe8\xe7\x3e\x7f\x55\x0f\x53\xa3\xa9\x87\xa9\xd1\xce\xb7\x55\x4d\xb2\xfb\xe7\x99\xa4\xa6\xb3\xce\x52\x8f\x5b\x3b\xb0\x47\x3f\xab\x7a\xba\xd8\x53\xbb\x75\xeb\xe7\x3c\x3f\xf5\xc0\x5c\xe7\x67\xd1\xcf\x7d\x7e\x76\xfd\x7c\x9c\x9f\x97\x7e\x3e\xcf\xcf\xfc\xd3\x1f\x9f\xd7\x99\x7b\xba\xee\xf6\xd3\x1f\x9f\x69\xea\xf7\x59\xd7\xd7\x3d\xae\xb3\x4d\xb3\xf3\xbb\xfd\xf8\x4a\x29\x01\xec\x33\x97\x83\x5a\x82\xde\x82\x78\x70\xdd\x3f\xbe\x46\xbb\x80\xce\x3e\xdd\xa9\x01\x94\x1f\x5f\xa3\x8e\x1b\xa8\xfe\xf8\x9a\xf9\x8e\xb6\x26\xa8\x00\x1d\x14\xab\xd1\x74\xbe\x5c\xcb\xff\xba\x47\x3a\xeb\x3b\xea\xf4\x14\x93\xba\x2c\x15\x40\x4b\x54\x06\xd0\x99\x56\x71\x1f\x3e\x2b\xfe\x5d\x46\xfe\xf1\x95\x4a\x02\x38\x8b\x96\xdc\x41\x39\x9b\x50\xe7\x05\x70\x4e\x47\x75\x67\x45\xe7\x92\x29\x94\xf3\x89\x77\xe3\x31\xed\x56\x89\x96\x33\xef\xe2\x0f\x6c\x67\x77\x53\xbf\x00\xea\x39\x6b\x1d\x40\x5d\x47\xcb\xd9\x4c\x26\xdd\xb4\x9d\x35\x01\x9c\xb9\x15\x7f\x69\x3b\x2b\x39\x46\xe3\xb9\x83\xb2\x63\xb4\x0a\x74\x0b\x2a\x40\x59\x50\xbc\x57\x04\x31\xb2\x96\x68\x0c\x3f\xd9\x87\xfa\x1c\x15\xe8\x79\x20\x36\xab\x8f\xb7\x20\xda\xa6\x9e\x4c\x45\xf4\x0f\xba\xf5\xff\x43\xc9\xf4\xa8\xa6\x56\x19\x42\x8b\x30\xa3\x17\xcd\xac\x06\x24\x4a\xc4\x70\x87\x02\xce\xc4\xda\xf7\xb3\xdc\x33\xcd\x1b\xe8\x16\x94\x80\xb2\xa0\x0c\xd4\x04\x0d\xa0\xfe\xe3\x6b\x0a\xc5\x05\x0d\xb5\x4d\xa0\xa9\x36\xf7\x32\xce\xa7\x27\x90\x7b\x1c\x9c\x4a\x35\x5a\x0e\x7a\xd0\xe1\x38\x44\x6b\x74\x56\x61\x0c\xd1\xe1\x1b\xe0\x50\x62\x56\x72\x1c\x34\x1a\x9d\xbd\x1a\xe7\x88\xa7\x11\x2f\x09\x7d\xd9\xed\x71\x96\xf5\x4e\x9e\xfc\x38\x4b\x75\x27\xfa\xd3\xe2\x74\xce\xc3\x38\x27\x38\x75\x66\x71\x4e\x6b\x1a\xf4\x70\x68\x63\xca\xf1\xd8\x5b\xf3\xe3\x3b\x74\x8d\x80\x4a\x43\x07\xb1\xe7\x80\xe6\xf9\x2a\x3e\xf1\xdc\x17\xb1\xd6\x63\xbd\xce\x24\x68\xd1\xed\xc0\x51\x1e\xe7\x84\xa6\x11\x2d\x07\x67\x13\xef\x1c\x9a\x3b\xf2\x1d\x4d\x67\x7a\xdd\xdf\x3e\xcf\xf2\x8d\xca\x16\xcc\x51\xcf\x21\x9c\xd1\x36\xd4\xe6\xd7\xa6\x70\xaa\x67\xda\x84\x36\xfd\xce\x40\xda\x91\x02\xe0\x95\xb9\x81\x96\xd6\x93\x07\xf5\xc9\x39\x80\x43\xbe\x3e\x2d\xfe\x7e\xfa\xf0\x55\xc6\x02\xac\x51\xb4\x5d\x03\xa8\x0a\xea\x40\xa7\xff\x32\x1a\xd0\x16\xc4\x93\x4b\x33\xe1\x80\xaf\x25\x7a\x76\x65\xa0\xb3\x5a\x60\xc0\x3e\x8b\x3a\xf2\x7d\x01\x1d\x46\xe0\x72\x8f\x0f\xa3\x14\xdf\xf6\xf0\x87\x5e\x00\x9a\x56\xd6\x24\x67\x39\x28\x5a\xd3\x04\x48\x3f\xbe\x6a\xbe\x00\xee\x1f\x5f\xf5\x0e\xe0\x10\xad\xcf\x3b\x8f\xd3\x12\xc0\xf3\xc7\x57\x35\x05\x9b\x65\xbc\x0e\xd0\x01\xde\xe7\x9d\xdb\xc0\xd9\x87\x7a\x07\x70\xc6\xa9\x01\x9c\x71\x2a\xbd\x89\x38\x7a\xa5\x67\x39\x33\xad\xa6\xd6\xb3\x1c\xda\x56\x4d\xad\xa7\xc8\x66\xf5\x11\x9f\xe5\xd0\xb6\x9a\x03\x18\xe7\x9d\xe8\x60\x9e\xc7\xa2\x83\x75\x80\x68\xd9\xe7\x9d\x68\xd1\xf7\x44\x07\xe7\x7b\x0a\xe3\x9c\x8d\xaf\x85\xb9\x2d\xcd\x2d\x5a\x34\x37\xbe\xf4\xec\x4a\x2d\xac\xc1\x21\x08\xb5\x30\xce\xd2\x38\xd1\xa2\x71\xa2\x83\xb3\x3a\x85\x35\xd8\x1a\x87\xde\xb6\xc6\x09\x40\xe3\xd0\xc1\x39\x11\xb5\x30\xeb\xad\x71\xd8\xb9\xad\x71\x02\xd0\x38\x01\x68\x9c\xfa\x2d\x4d\x9d\x62\x2a\xaa\xb1\x64\x8a\x81\xa8\xc5\x80\x2e\x99\x9b\x9d\x6c\x3a\x0c\xbe\x14\x66\xd3\x61\xf0\x9d\x30\xdb\x59\xa0\x9b\x71\xdb\xa1\x99\xdc\xd7\xb3\x1d\x92\x79\xb3\x74\xed\x2c\xd0\x9d\xa3\x83\x73\xfd\xb0\x40\xbe\x70\x7a\x3c\x77\x2e\x9c\xd4\xe8\xe1\x2c\x4a\x6a\xd1\xa2\xb3\x34\x98\x9d\x88\xc6\x1d\xc0\x19\x09\x7c\x6e\x3a\x8f\xdd\xc4\x65\xea\x5a\x4a\x2d\x9a\x0e\x39\x69\x31\xae\x08\x9c\x89\xcb\xd4\x85\x75\xa7\x01\x20\xea\xd9\x01\x74\x32\xcd\x5b\xcc\x7e\xce\x58\xf2\x75\x3d\xbb\xa8\x76\x8b\x96\xf3\x85\x77\xf4\x70\xbe\xf0\x8e\x1e\x44\x57\x46\x40\xe2\x40\x62\xd8\x43\xc2\x5b\x0e\xe8\x10\xe0\x96\x00\xce\xd1\x36\x2f\x30\x75\x19\x8d\xde\x2b\xd0\x5b\x6f\x79\x16\xe3\x10\x99\xc4\x61\xd4\xb5\x92\x38\x8c\xe3\xf4\x77\x83\xc9\xbe\x1f\xd8\xdc\x21\x86\x0d\x44\xd4\x25\x30\xef\x3b\x20\xbd\x44\xdf\xe7\x16\x98\x37\x47\x6b\x78\x5c\x76\x7e\xea\xa2\x03\x7f\xa7\x2e\x3a\x4e\xd0\x34\x4e\x04\x70\xa4\x0d\x08\xc7\x3c\x87\xe6\xe6\x74\x4f\x21\x08\x47\x70\x1a\x41\x26\xc0\x99\x5e\x8d\x96\xc3\x51\x42\x38\xa6\xa6\x50\xa7\x7b\x78\x1c\x92\x30\x1a\x24\xea\x21\xfa\xdd\x20\x65\x8f\xb3\xd9\xa3\x5d\x7e\xf2\xc9\x93\x9a\xed\x7e\x9c\xa9\xb7\xe2\xc5\xdd\x8f\x43\xb3\x5b\x1e\x01\x89\xed\xf2\x45\xba\x1f\x67\x57\x5b\x29\x01\x1d\x66\xbb\xf4\xe8\xe5\xf0\xdb\x5c\x41\xfb\x71\xe8\x5b\xb9\x3b\xbd\x9c\xd3\x53\x8a\x77\x65\x8b\xfc\xd6\x34\xe8\x45\xb4\x4b\xec\xbb\xa0\x73\xa4\xaf\xe8\xf3\x6c\x4c\x83\x97\xd8\x8f\xb3\x33\x79\x7e\xa0\x23\xb0\x94\x0a\x24\x32\xc5\x22\xed\x87\xe8\x54\xb9\x18\xe1\xac\x79\xb9\x6b\x40\xf5\xc7\x57\x01\xe5\xf6\xc3\x6c\xe5\x60\x66\x67\xd9\x3b\xec\xe3\x7e\x2c\xd1\x4e\xaf\xd9\x7e\x88\x8e\xb5\x19\x6d\x4f\xdd\x13\x31\xde\xfb\xc7\x57\xee\x93\xb9\x1c\x52\x56\x3e\xdf\x70\x4e\x74\x6e\xd1\xcb\x39\xd1\xb9\x8c\x78\x72\x9c\x2f\x6a\xd1\x76\x88\x56\xff\x40\xe7\x6b\xc7\xe7\xbd\x23\x67\x8d\x8b\x79\x8a\xa2\x55\xf6\xe8\xa9\xfd\x9b\xac\xc4\xf3\xe0\x5e\x19\x25\xda\xf2\x8f\xaf\x92\x4d\x23\xf7\xf3\xec\x6d\xb9\x7c\x12\xf7\xf3\x1c\x95\x32\x6b\x3c\xd9\xce\x7b\x29\x9e\xec\xc2\x89\x02\x74\xf6\x3d\x19\x39\xf7\xf3\x1c\xe7\x76\x8f\x18\x6f\xfd\xf8\x2a\x9d\x15\x7c\xea\x1e\x3f\x23\x7c\x47\x6c\xf7\xf3\x9c\xf6\x36\x7d\x9f\xed\xe7\x39\x90\x65\xf8\xd8\xed\xe7\xf4\x9d\x4c\x9b\x90\xa9\xf7\x80\x6e\x21\x0c\x53\x13\x32\xd5\xc1\x27\x9d\x2b\xb2\xc3\x85\x6f\xa1\x79\x1b\xa0\xc1\x53\x88\x96\x6e\x3e\xf0\x20\x5a\x9f\x2d\xc6\x5b\x12\xa5\xf9\x24\x5d\x8d\x10\xb9\xfd\x34\x12\x26\x96\x49\x48\x08\x8d\xda\xcf\x43\x1e\x7a\x2f\xf1\xde\x11\x5a\xaf\x58\x98\x83\x92\x79\x5c\xcc\xfa\x5c\x13\x2d\x5d\xf4\x72\x98\xa6\xfc\x19\xcf\xd7\x6a\x8f\xb6\x73\x00\xd3\x60\x84\x83\xae\xad\xc5\x46\x48\x34\x6f\x31\x97\x83\xa0\x65\x4e\xbe\xef\x70\x9b\xbd\x7d\x46\xd8\x67\xcd\x38\x10\xcf\x43\x42\x4a\x20\xe8\xf3\x20\x6f\xe9\x9f\x79\x1e\x8e\xa5\x5f\x31\x9e\x2e\x4b\x0e\xfc\x53\xb7\x72\x8f\xf1\x0e\xf2\xf6\x11\xf3\x94\xe0\xfe\x19\xe1\xdc\xd2\xa5\xd5\x78\xef\xcc\x7a\xc6\x5c\xb6\x50\xab\x45\xdb\x39\xe2\x29\xb3\xba\xfb\xf0\x24\x23\x76\xfa\x5c\xe2\x8d\x9b\x67\x3f\xcf\x81\x28\x35\x50\xf2\x1c\x88\x56\x02\x79\xa5\x20\x28\xbe\x61\xf6\x4b\x47\x20\xb7\x80\xce\x5a\x67\xd3\xfd\xfd\xd2\xa5\x8e\xcc\xb0\x5f\xe7\x40\xb4\x7a\xdd\x40\x67\xad\x67\x8b\x27\xeb\x39\x8e\x26\x99\xfb\x75\x0e\x44\x2d\xe0\xe7\xeb\x1c\x88\xce\xc5\xb2\x5f\x3a\x10\x63\x04\x34\xcf\xa1\x9e\xf1\xe4\x12\x93\x14\x6d\x87\x2c\xc2\x39\xec\xd7\x10\xbe\x7c\xfa\x7c\x4b\xed\xc0\xcc\xa4\xad\x29\x1f\xe8\x60\x48\x33\xa7\xb3\x5f\x87\x29\xcc\xa5\x07\x74\x70\x7e\x82\x3d\xaf\x83\xf3\x39\x08\xe8\xeb\xe0\x7c\xc9\xec\xca\xcb\xc4\x95\xf5\x7c\x1d\x66\xb0\xd7\x14\x4f\x4a\x9b\x95\x99\xcb\xc1\xf9\x36\x66\xb4\x1d\x9c\x1f\xb1\x12\x62\x08\xfb\xa7\xcf\xf3\x0d\x17\x3b\xfd\x3a\x38\x5f\x3f\x5f\x74\x70\xbe\x5f\xf1\x0d\x07\xcb\x5b\x1e\x01\x65\xed\x0a\x23\x88\x0c\xb7\xcc\x17\x1d\xbc\x2e\x29\xf3\x45\xe7\x2a\x6c\x35\x56\xf0\x10\xe5\x82\x86\x61\xbf\x44\x94\xb9\x68\xf7\x6b\xe9\x6c\xde\x01\x3d\xcf\x5a\x73\xde\x5f\xc2\x6b\xb8\xa2\xfd\x3a\x78\x5d\x7a\xac\xa7\xf4\x5a\x3d\xf3\xe4\x16\xbe\x5c\xf4\xb2\x35\xcf\xc1\xd7\x1e\xbc\xee\x3d\x70\xe9\xe0\x75\xaf\x33\xda\x9a\x46\x60\xd6\x62\x4d\x7f\xef\xf3\x60\x79\xbb\xe3\x49\xa9\xa8\x62\x1f\x0e\xce\x97\xd6\xe2\xbd\x7d\xf6\xef\x33\xde\xe3\x40\x66\x2e\xf7\xfb\x60\x72\x8e\x13\xfe\x16\x26\x4f\x4e\xe3\x5b\x98\x3c\xf8\xf6\xb7\x48\x7b\xfd\x40\x67\x75\x91\x22\xf6\x5b\xa4\xfd\x88\xbc\xdf\x12\xe5\xf7\x41\xf3\xd2\x5a\xbc\x28\x22\xf9\xe9\x74\xea\x56\x4d\x40\x87\xbf\xb8\xf8\xa4\xf7\x91\x81\x5a\xaf\x01\xbd\xf4\x11\x0d\x48\x24\x85\x23\xf7\x46\x0c\x0a\x48\x1a\x3d\x48\xd1\xfb\x20\x7d\xcf\xdc\xcd\xef\x83\xf4\xa5\xc6\x5c\x0e\xd2\xe7\x29\x34\xc8\xe3\x92\xf6\x40\xd7\x61\x1e\xd7\x94\x08\x2a\x6a\x73\xa0\xd3\x24\xe6\x30\x8f\xeb\x20\xe4\x90\x22\xf1\x40\x5b\x8c\xe3\x65\x28\x4b\xfb\xa5\x0b\xf6\x00\x8f\x1f\x5f\x33\x67\xf7\x51\x0f\x0d\x4e\x3c\x67\xf6\x50\x18\x90\xc7\x30\x83\x3e\x06\x90\xd9\xeb\x29\x68\x4a\x0b\x5b\x3d\xc3\x25\xad\x5e\x66\x52\xeb\xcc\x7e\x5e\x23\xa0\x97\x54\x6d\xee\x5f\x12\xed\xbc\xa6\xdf\x7b\x89\x03\x9a\x6e\xd2\x8e\xdf\x2d\x80\xb3\xe1\xba\xb1\x0e\x60\x1a\x00\x50\x45\xd4\x00\xa4\x7c\xad\x00\x87\xab\xac\x13\x40\xd7\x78\x01\x98\x3a\xfe\x00\x87\x16\x5c\x1d\xe0\xdc\xe1\x7d\x46\x77\x87\xd0\x26\xa6\x60\x8d\x32\x2d\x53\xf3\x89\x16\x31\x52\x0c\x24\xf5\x5a\xcc\x54\x94\xa5\x32\xaa\x08\x4b\x0b\xe0\x20\x8d\x26\x57\xf6\xf8\x77\x5c\xe8\x81\x84\x17\xda\x9c\x03\x9d\xab\x26\xb7\x80\x84\xa3\x3d\x9e\x3c\x1f\x65\x41\xf6\x40\x53\x12\x77\xb4\x89\x14\x8b\xac\x1c\x68\xeb\xf2\x6c\x40\x87\xa8\xa5\x8b\xd1\xa5\xbc\xbe\xb5\xad\x07\x3a\x87\xfe\x2a\xbc\x27\xb9\xdb\x0a\x9a\x03\xe9\x5a\xd0\xca\x1f\xe8\x70\x70\x43\x07\xf4\x40\x67\xf4\xdf\xdf\x3b\x04\xa8\x0d\x9e\x3c\xc4\xa9\xcd\x1b\x48\x7c\xe0\xb8\x02\x3a\xe7\x6c\xc4\x93\x07\xa9\x4a\x8a\x11\x74\x25\x0e\xd6\x45\x92\x45\xbb\xee\x09\x94\xc5\xcb\x16\xa0\xaa\xb9\x04\x74\xde\x9b\xe5\x06\x7a\x4a\x91\x90\x80\xcc\x4d\x46\x9f\x52\xfd\x27\xde\x3b\xdf\x97\xad\x3c\x3c\x90\xc8\xd8\xc8\x40\xf3\x23\x1b\x1c\x48\x1c\xea\x8c\x27\xcf\x99\x6f\x29\x9e\x3c\x67\x7e\x34\x46\x3f\xcc\x48\xae\x31\x9e\xd8\x8f\x1c\xdf\x60\x72\x7b\x05\x74\x56\xf7\xe2\xdb\xa7\x48\x6a\x4e\x8c\xb0\x35\xc2\xe5\x6f\x58\xe2\x73\x7d\xb9\x1c\xe8\x90\x38\xeb\x50\x0e\xa4\x33\x04\x4e\x48\xb7\x54\x6f\x56\x62\x89\xed\x2c\xcc\x73\x9d\x95\x68\x56\x50\x96\xad\x33\xdb\x2c\x5d\x1d\xe8\xe0\xa0\x25\xf3\x03\x89\xf9\x89\xd1\x0f\x86\xb4\xab\x30\xfa\xc1\x90\xd6\xaf\x0a\x74\x2e\xac\xab\xc6\x7b\x1e\x3d\x7f\x47\x7c\xcf\xa3\xe2\xc4\x3a\xdd\x1c\x8e\xb1\xb4\xd9\x80\x64\xef\x00\xe9\xa5\x12\xcb\xd6\x52\x1f\xa8\xca\x76\x13\xef\x9d\x25\x9c\x85\x4f\x92\x48\x23\x3b\x88\x20\x1b\x45\xa2\x97\x73\xd7\xb4\x16\x90\x48\xf8\x15\xe3\xbd\x8e\xc8\x76\xd3\x8b\x38\xb8\x04\x9a\x2f\x19\xa9\x2c\x06\x96\xbd\xa5\x3f\x8b\x11\xb6\x0e\x6e\x29\x05\xe8\x1c\xa4\x38\x80\xb2\xa7\xe4\xc1\x17\x6d\x09\x0e\x17\xcb\xbb\x87\x50\x84\xb9\x6c\x5d\x27\xa5\x7b\x79\xb7\x16\xbb\x80\x84\x5b\xc7\xf1\x8e\x11\x0e\xba\xf6\x40\xc9\x3d\xc5\x39\xe4\x0a\x24\x4e\x33\x45\x9b\xae\xaf\xc4\x78\x53\x48\x18\x33\x93\x30\x69\x95\x6e\xd9\xfb\x70\x2a\xc5\x86\x83\x03\x9d\x9b\xb5\x80\x68\x5b\xfc\x78\xe1\xb0\x6c\xf1\xc7\x23\x33\x33\x59\xb5\xe6\x1d\x50\x13\xba\xde\x40\x5d\xdf\xc7\x78\x3a\xd4\xa5\xb9\xcf\xc7\x59\xb3\x72\x71\x58\x1e\x32\x67\x35\xd6\x13\x21\x9b\x23\x20\x21\xbb\x5c\x35\xda\xce\x2a\x5d\xcc\xf3\x71\x50\xb9\x5c\x2d\x03\xbd\x25\x48\x7b\x9e\x0f\x5d\xba\x17\x08\x2a\xe1\x7c\x7c\x20\x71\x46\x13\xd2\xf7\x10\x1f\x3f\xa3\x4d\xfb\x5e\x26\x23\x88\xa7\xe9\x39\xda\x96\xf6\x21\x20\x69\xdc\x4a\x03\x3a\xa4\xa1\x64\x43\x4f\x5f\x5c\xe0\x8b\x05\xcd\x04\x99\xb2\xa0\xe9\xfb\xae\x58\xd0\xec\xb5\x44\xdb\x53\x82\x66\x40\x2f\x3d\x79\x03\xbd\x45\x16\x79\x4f\x07\x77\x40\x08\x25\x2f\x36\xdb\x16\x0a\x32\x61\x4b\x1d\x68\x8a\x34\x54\x20\xad\xee\xa7\x97\x73\x54\x53\x0f\xe8\xa1\x4b\xd5\x7b\x24\x59\xab\x57\x76\xd3\x52\xd2\x00\x3f\x25\x25\x95\x39\x02\x12\xaf\x9e\x19\xcf\x27\xe7\x0e\x48\x3c\x77\x7c\xdf\x21\x68\xad\xb0\xef\x92\x68\xea\xcd\xb9\x95\x0c\x53\x3b\x2b\x28\xa9\x25\x97\x1e\x90\xae\x27\x70\x42\x72\x4a\x29\x5c\x79\x92\x4c\x7a\xfe\xbc\xb7\xce\x89\xcb\x13\xe8\x60\x4f\xbd\xa2\xed\x29\x85\xc6\x0d\xe4\xf5\x04\xd2\x0a\x66\x4e\x8e\x65\x8a\xca\x8e\x89\x41\xe9\x57\x89\x27\xcd\xbd\xd2\xa7\x6e\xf4\x1c\x4f\x8a\x86\xf4\x16\xd0\x5b\x12\x37\x4f\x8a\x93\xce\x8d\xaf\x35\x9e\x15\xc6\x3b\x2b\xd1\x2b\x27\x55\x3c\x50\x0e\xe2\x2a\x26\xa8\xc7\x45\x66\x2e\xa8\xb3\x2e\x66\x69\xe2\x74\x98\xa7\x99\xec\x98\x58\xd2\xd6\xb9\x62\xcd\x76\xa6\xfe\xad\x9d\xad\x98\x0b\xcd\x0d\x14\x11\x17\xda\x3b\x37\xcb\x5b\xe2\x55\x65\xab\xdf\x53\x6c\x3d\x37\x8b\x98\x9b\x1a\xb7\xc0\x7b\x7a\x73\x81\x24\x26\x75\x38\x9f\xf7\xf2\x56\xd3\x8b\xc4\x96\xda\x02\x7a\x8b\x84\x31\xba\x74\x49\x83\xdb\xea\x7d\x10\xad\x4c\xae\x84\xb7\x45\x93\x58\x0a\x1d\xd5\x0b\x82\xfd\xd6\x51\x9d\x12\x46\xea\xb8\x24\x46\x78\x03\x0f\x64\xf4\x19\x40\x07\xcd\x7d\xff\x1e\xc8\x44\x39\xa0\x43\x32\xa7\x88\x56\x1d\x97\x94\x32\x43\x88\x56\xcd\x82\x97\xfb\xd3\xd6\x24\xd8\x32\x9e\xc4\x4e\x0b\xd9\x07\x5a\x42\x91\x68\x7b\x1c\xc2\xab\xf5\x3c\x90\x6e\xf8\x18\x4f\x44\xf9\x12\xd9\xa8\xe3\x3a\xab\xd4\xfd\x45\x07\xd2\xb7\x0b\x0d\x0e\xe4\x6b\x86\x11\xce\x05\x98\x3f\xf3\x94\x30\x39\x3e\x6d\x87\x5f\xab\x83\xd1\xe5\xd0\x71\x89\xe9\x3f\x90\x8e\x47\xcc\xec\x5c\x8e\xdd\xa8\x7c\xa0\x83\xd8\x16\x50\xab\xed\xe6\xd5\x0a\x8d\x3a\x92\x2c\x43\x33\x75\xa0\xae\xe3\x3f\x80\xce\x78\xed\x8e\x36\x6b\xce\x2a\x90\xd1\xdc\xf3\x4c\x26\x53\xa3\x01\x2d\x1d\x47\x46\x10\x29\xea\x17\xbd\x9c\x2b\x28\xb7\x8b\xb6\xed\x6f\xbf\x80\xcc\x89\x30\xfa\x39\x56\xcd\x96\xd9\x03\x9d\x83\x5b\x9a\x47\xbf\x87\xd4\x53\xb5\x01\x89\xc7\x4d\x37\x90\x76\x1a\x0c\xb9\xa7\x34\x98\xa9\x00\x0d\x69\x3e\x33\x90\xc4\xf1\xc1\x93\x5a\xb3\xbb\x05\xa4\x35\xeb\x8c\xa7\xcb\xf1\xaa\xb4\x6d\x5f\x09\xd1\x76\xbe\x3d\xc5\x08\xe6\xfa\x72\x3c\x69\x9c\xf0\x78\x59\x82\xed\x75\x07\x74\x30\x4b\x3e\x32\x82\x96\x2e\xf8\x09\x24\xdb\x5b\xe6\x49\x7d\xc3\x00\x27\xb2\x58\x88\x8b\x99\x65\x69\xc3\xaf\x1c\xd0\x12\x27\x79\x03\xbd\xb4\x63\x5e\xa5\xac\xcb\x3f\x95\x0b\xa8\x8b\x37\x2e\x40\xcf\x83\x9f\xac\x44\xde\x52\x09\x65\xc6\x13\xbe\x5c\x37\xef\x41\xe8\xdd\x56\xac\xba\x9a\x0d\x28\x89\x68\x65\x20\x09\x79\xec\x4a\x19\x62\x28\x5a\x01\x9a\xda\x15\x7f\xbb\x4c\x88\x2d\xa7\x04\xe4\x6f\xe7\x49\x31\x92\x95\x73\x54\x84\xf3\xb6\xdd\xd7\x61\x47\x9c\xca\xa9\x92\x75\xad\x14\x4e\x55\x91\x9a\x22\xe5\x68\x7b\x88\x86\x78\x9e\x72\xca\x69\xd7\x98\x40\x56\xb8\x05\x94\xc5\x45\x57\x20\x51\xcc\x7e\x03\x89\xec\x5f\xd1\x8b\x5c\x70\x46\x06\xea\xd2\x28\x7c\xcb\x29\x9f\x47\x65\xf9\x63\x41\xe5\x00\x94\x47\x09\x48\x3c\x52\x8a\x21\x0e\x4a\x16\x0e\x6e\x15\x62\xf7\x1c\x53\x3b\x62\x50\x61\x23\x2a\x7a\xe5\x0e\xf4\x90\xe2\xdc\x07\xa9\x1e\xee\xbb\x5c\xf1\x81\xe6\x01\xe3\xc9\x83\x06\x25\xc5\xe7\x1e\x02\xd3\x5a\x61\x74\x69\x68\xcb\x1d\xef\x89\xf4\xb1\x9d\x75\xfd\x6e\x30\x39\x90\xf4\x3e\x23\xfa\x7c\x8a\x14\x31\xeb\x25\xad\x61\x40\xba\x04\xac\x81\x38\x90\x50\x99\xcd\xad\xba\x47\x2f\x50\xa4\x6e\xf3\xdb\xf1\xa4\x67\xc6\x08\xd2\x33\x59\x2c\xaf\xa3\x0d\x99\x2c\x20\x0d\x4d\x9a\xcf\xc9\xc6\xb7\x73\xac\x7a\x62\xe3\x9b\x78\xb2\xda\xbd\xd6\x32\x8b\x96\x1e\xef\x9d\x63\x55\x3a\x57\x82\x1c\x6e\x9a\x7c\xe4\x0e\x64\x6d\x38\x87\xb3\x49\xfb\xd7\x59\xdd\xb6\x64\x42\x88\xf1\xa4\xab\x8e\xe3\x2f\xd3\x66\x1d\x7c\x51\x33\x82\xde\x01\x9d\x55\x8a\x7d\xe8\x42\xb4\x04\x21\x94\x69\xb2\xcd\xab\x00\x69\x1f\x3e\x6d\x5b\x68\x17\x6d\x67\xbc\x76\x45\x2f\x96\x0b\x3c\x97\x3e\xdd\xd6\x80\xcc\xdd\xd0\x8b\x94\x38\x17\x5f\x2b\x57\x9a\x6a\xcd\x67\x1d\x5d\xfa\xc5\xcf\xe8\xda\xb1\x0a\x09\xeb\x52\x42\x5d\x29\xda\x0e\x51\x4e\x5c\x8e\xfd\x90\x8d\x96\x38\x80\xfd\x1c\xc0\x1e\xa4\xb6\xcb\xf3\xaf\x55\xb7\x49\x5d\x82\x81\xad\xda\x99\xa6\x15\xc8\xa9\xcc\x9e\x35\x41\xc2\xa4\x2e\x69\x41\xa6\xac\x2e\xb9\x72\xf4\xb2\xc4\x57\x76\xa0\x97\xae\x74\x20\xa9\x44\x7a\xcf\x40\x5a\xf9\x3e\x80\xa4\x69\xe5\x1b\x86\xae\xdf\xc2\xba\x0c\xb9\x02\x5c\xd1\x8b\x4e\x40\xfb\x3c\x29\x85\xcc\x15\xd0\x4b\xdc\x29\xb3\xde\xfe\x22\x66\xa6\xab\xab\x73\xe2\xe4\x08\x53\x2d\x3d\x1d\x48\x66\xb3\xf8\x76\xe9\x56\xaf\xf8\x06\xcb\xa6\xf1\xb5\xd2\xad\xc6\x95\x37\xcd\x3b\x5e\x01\x75\x71\xa0\x17\x90\x67\x96\x80\x4c\x43\x3a\x90\x30\x72\x06\xf4\xd4\x39\xf2\x4a\xcc\x69\xac\xa3\x4f\x29\x87\x52\xca\x40\x62\x9f\xc0\x10\xa9\x4b\xca\xe0\x2a\x91\x0f\x4d\x2d\xe0\xc4\x3c\xab\xd4\xca\x60\x2e\xf6\x33\x85\x2e\x4d\x58\x40\x7f\xd1\x94\x0d\xe6\xd3\xa6\x8b\xf3\x9a\xd1\xf6\x14\x0b\xc8\x3c\xc5\x45\xdb\xe7\xae\x8e\xa5\x6f\x9f\xcc\x7a\x49\x85\x66\xe5\xed\x81\xc4\x2c\xde\x09\xe8\xec\x58\xf4\xb2\x86\xec\x5d\x69\x7c\x4f\x94\xad\x2f\xe9\x2c\xe8\xb2\x01\x83\x03\x2f\x2d\x08\x16\xe0\x03\xc9\x5e\xca\xed\xb1\x44\x1a\x0a\xe4\x5b\xbe\x3f\xc5\xa2\x7f\xb5\xef\x4f\xb9\x38\xf0\x4b\xcb\xd4\xe1\x9f\x96\xc8\x46\x6a\xf1\xe4\x16\xa7\xc5\x93\xb2\x97\x76\x8e\x8e\x94\x12\xb9\x81\x06\x5b\x5a\xb3\x09\x31\xd8\xbe\x91\x40\x2d\xa9\x28\x5a\x70\x14\x5b\x4b\xd1\x73\x40\x5a\x8a\xe6\x0d\xdc\x22\x7d\x0d\x54\x96\x52\xa2\xc4\x8d\x2b\xa5\x44\xbb\x21\xfb\x52\x43\xe4\x9a\x18\xef\x70\x4c\x65\x70\x09\xc8\x6d\xb4\xcf\x1e\x4f\x4a\x24\xe3\xfb\xf6\x21\x30\xa5\x72\xa7\x4b\x45\x51\x7a\x8c\x7e\x2e\xa4\x5a\xb8\xb7\xa5\xb0\x68\xb1\xd6\x9b\x35\xa3\x17\x99\xe9\x26\xa8\xb5\x0f\xc2\x94\x02\x67\xb7\x39\x48\x8c\xa0\xa3\xf3\x99\xe7\xd6\x11\x80\xa0\x6d\x71\x61\x63\x06\x24\x63\x2d\xc8\xf4\xd0\x0a\x56\x88\x8f\x7c\x04\xc6\x95\x02\x12\x4a\x72\x1d\x3e\xcc\xf1\x72\x05\xa1\x94\xe0\x82\x78\xa0\x65\xcd\x40\x4d\x86\xdc\x80\x64\xba\x85\xf4\x3d\xc4\x73\x36\xbe\x5d\x96\xff\x16\x87\xec\xb1\xc4\xe7\x41\x40\xe5\x07\x90\x2b\x3b\xfd\x10\xf1\x49\x90\x86\x87\xc5\x51\xe4\x9e\x87\x88\x48\xec\xa6\xec\xeb\x25\x71\xc5\xca\xbe\x9e\x27\x1c\xd3\xd3\x82\x39\xfc\x8c\x54\x1b\x3d\x71\x1c\x65\x5f\x6f\x41\x24\xa5\xda\xa8\xc1\xd1\xdb\x86\x6e\xb3\xd9\x81\x24\x13\x71\x70\x6d\x43\x9f\x57\x3c\xf9\x94\x7e\xdb\xdf\x20\x65\x46\x4d\xe0\x84\x8c\xdf\x6d\x80\x67\x4f\x79\x33\x87\x2c\xf5\xb4\x6c\xca\xf9\x93\xb9\xbb\xa4\x12\x6d\x4b\xc4\xa7\x03\x3d\x3e\x5e\x16\x07\x7a\x89\x60\x33\x9e\xd6\xb3\x21\x01\xca\xe0\x9c\x47\x0d\x48\x6c\x57\x65\x04\x29\x8e\x46\xac\xcb\x96\xfe\x9e\x9d\x7e\xca\xa4\x76\xc7\x78\x47\x46\xc9\xa5\x45\x9b\xce\xca\x8c\xf7\xba\x70\x90\x11\xb6\xb5\xe4\xf1\xe4\x5b\x27\xce\xbd\x48\xed\x51\x07\x58\x20\x93\x68\x0d\xa6\x4f\x4a\x89\xd2\xc0\x3a\x99\x36\xfb\x6c\x03\xe8\x2d\x7e\xd4\x7d\xda\x44\x19\xec\x85\xcc\x90\x39\xce\xdf\x0b\xf3\x3a\xef\xc9\xc7\x63\x42\xa5\x6c\xa6\xab\xec\xa6\xd5\x10\x17\xd8\x6a\xc3\xca\xcd\xe5\xf1\xb6\x0c\x5d\x0a\x90\xd4\x9c\xac\xa0\x6c\x2b\x4d\x8e\xe4\x82\x24\x67\xc1\x7a\x48\xb7\x50\x1b\x18\xf9\xb6\x62\x13\x36\x16\x4d\x43\x8b\xb6\xad\xf7\xfe\x03\x44\x59\xca\x85\x76\xf1\xb9\x6f\x69\x91\x6f\x96\xf0\xad\xe3\x31\x63\xda\xd2\x29\x77\x88\xd6\xdb\x0b\x13\x13\x3d\x84\x37\x77\x0e\xd2\x5b\xf7\xd3\x84\xe7\x7c\x8b\xf0\x06\x2a\xbf\xe5\xe1\x57\xaf\x78\x52\xc7\xff\x03\xbd\x45\xe8\x19\x4f\x3c\x52\x89\x99\x29\x38\x20\xb8\xf6\xf7\x96\xe7\x25\x88\x26\x45\x47\xbb\x21\xe6\x56\x6d\xf0\x0d\x53\x86\xc0\x81\x40\x38\xaf\x61\x44\xeb\x40\x8e\x53\x88\x36\x99\x55\xbc\xbc\xf3\x92\x76\xa8\x59\x82\x98\x97\x6f\x78\xdf\xe2\xd3\x8a\x0e\x7b\x0c\x1c\xe8\x25\x64\x0a\xe8\x2d\x44\x6b\x86\xa6\xbe\xa1\xd2\x8b\x39\xa6\xc4\xcc\x74\xfb\xcf\xca\xe8\xba\xfd\x5b\x66\x74\xa1\x64\x1e\x3c\x29\x94\xb4\x09\xeb\x40\xe6\x21\x98\x8b\xed\xdd\xd1\x8b\x64\x86\x66\x64\x9a\x97\xd6\xe5\xaa\x3c\xb9\x45\x78\x33\x73\x11\x41\xcb\x89\x95\x10\x31\x1f\x31\xba\xc2\x49\xe0\x9f\xe6\x25\x2d\xe4\x65\x49\x60\xca\xef\xbf\x58\xb7\x7f\x20\xc5\x8a\xf8\x12\x98\x49\xdc\xa2\xfd\x66\xeb\x54\x10\x43\x2f\x56\x35\xcc\x24\xb9\x67\xb0\xf2\x69\x59\x7d\xe1\x55\x4a\x96\x58\xbc\xd3\x33\x49\x6d\xc5\x31\x9e\x52\x58\x64\x2e\xa4\x99\x24\x28\x77\xe6\xa9\x40\x83\x6e\x23\xd9\x81\xb4\x2b\xac\xb5\xd4\x17\xcd\x3a\xc9\x03\x29\x64\xc5\x17\xd2\xbc\x25\xf3\x21\x33\xcc\x5b\xc6\x68\x44\xea\x79\xdb\xb3\x88\xfd\xbb\xad\x38\x62\x1f\x14\xf4\xd3\x8a\x49\xed\x54\x88\x4f\x9b\x85\x5e\x24\x9f\x0d\xd6\xec\x76\xd0\x8a\xc9\xdb\xbc\x1d\xb7\xc2\x1e\xdd\xf6\x53\xf1\x25\x37\xb3\xac\x23\x5c\x48\x33\x0f\xc5\xc8\x98\xf4\xcd\x2c\x89\x65\xf0\x5e\x06\x5b\x0b\xd0\x94\x9c\xc5\x7b\x3a\xc5\xb6\x41\x1f\xc8\x6b\xc6\x7b\x76\x5a\xe3\x8b\xa4\x86\xc8\xbd\xc5\x93\xc2\xdd\x18\x41\xbc\xa3\x5d\x3e\x0f\x24\x9f\x27\xb0\x5c\xaa\x86\x5e\x59\x25\xa9\x1a\xea\x0d\x9e\x15\x31\x45\xb0\x10\xf6\x70\x2e\x28\x1e\xec\xd5\x5c\xec\xaa\x58\xed\x47\x5c\xda\x00\x5a\xc2\xf2\x44\x9f\x3e\xe1\xbe\xac\x66\x91\xdc\x3a\xcc\x73\xce\x22\x76\x2d\x5b\x79\x32\xad\x32\x40\x25\x32\xa5\x24\xa8\x71\x36\xab\xfd\xc4\x18\x4f\xe1\x3c\xd9\x36\xab\x03\x1d\xe9\xf7\x66\x66\x15\x6b\x9a\xbf\xb6\x2e\xed\x18\x58\x2e\xe9\xb7\xd9\x00\x5f\xa7\xa4\xdf\x5c\x7d\x09\xcc\xa6\x6b\xa6\xdc\xd1\xd6\xb4\x66\xd1\x76\x2e\xd5\xdc\x0b\x90\x2e\xf1\x1e\x4f\xca\xff\xaa\x7e\xeb\x67\x5c\xa7\xc2\x4f\x7a\x02\x95\x9b\xf5\xa3\x2c\x4c\xd3\xdd\x35\x7c\xb3\xcc\x76\x16\x74\x20\x4c\xcd\x26\x8b\xab\x1d\xfb\xab\x5d\x8a\xfb\x04\x99\xe4\x46\xdc\x72\x62\x6a\x16\xb4\xcc\x15\xcd\x26\xcd\x66\xe2\x00\x36\x50\x39\x7a\x79\xc9\x1c\xe3\xd1\xbb\x78\x39\x6e\x63\xbb\xf4\xd6\xdc\x68\x93\x19\x6e\x72\x58\xba\x34\x94\x97\x6f\xd5\x69\x41\xf9\x6a\x01\x59\x73\xcb\x7b\x72\x6f\xbb\x41\xc2\x8e\xae\xd6\xdb\x22\xa1\xb6\x56\x96\xb7\x8b\x14\x0d\x10\x54\x62\x6c\x2f\x10\x9f\x61\x27\x2b\x8e\xe3\xb0\x37\xc8\x15\x90\x35\x86\x5e\x25\x39\xe6\xd6\x58\xa5\xe1\x50\x33\xdf\xdb\x73\x58\x5b\x9a\x18\x41\xca\x85\x06\x11\x51\xfc\x43\xef\xe6\xa2\xed\x82\x5b\x2e\x0e\x92\x2c\xd8\xe3\x62\xd6\x53\x2e\xe9\x09\x64\x92\xed\xb9\xcf\x80\x24\xfe\x4e\xd6\x65\xd9\xe1\x9d\xeb\x69\x59\x91\x63\xde\x7f\xae\x6d\x17\x8e\x0e\x24\x73\x13\x97\x87\x8d\xa3\x88\xf0\x53\x92\xc7\xb8\x40\xfa\x6d\x5f\x05\x48\xe6\xb6\x53\x3f\x84\x69\xdb\xda\xcc\x5c\x24\x41\xf4\x79\xf3\xde\x32\x87\xe6\x6f\x90\xe9\x32\x77\x50\x79\xcb\xe7\xc0\x71\x1b\x07\x32\xa1\xf7\xac\x1f\xe2\x75\x2a\xd8\xfa\xb0\x4e\x12\xa2\x2c\x6e\x3f\xcf\x1e\x4f\xea\xca\x83\xf4\x3d\x30\xdf\x79\x3c\xf9\x00\x37\xbb\xa2\x1c\xc8\x3a\xc2\x68\xd3\xc1\x05\xeb\xe4\x03\x5c\x12\xc7\xff\xdf\xfb\xf9\xd6\x29\x0f\xdd\x56\xe3\x49\x11\xbb\x38\x39\xf2\xbb\x6d\xb3\x04\x24\xf9\x05\x5c\xc2\x47\xd6\xdc\xe9\x94\x8f\x6c\x8f\xaf\x7d\x22\x0c\x5f\x40\xe2\xc5\x21\xae\xe6\xc5\xef\x14\xbd\xbc\x24\xc9\xf1\x1e\x46\xc7\x0a\x24\x25\x0f\xa7\x43\xee\x9e\xbd\xb0\xba\x4f\xb3\x56\x9d\x27\xc5\x65\x96\x18\x6f\xd9\xf5\x74\x02\xbd\x64\x7a\xf6\xf7\x89\xa7\xce\x2d\xbe\x61\x9b\x25\xa3\x97\x6d\xfb\x84\xd7\xda\x4e\x8e\x71\x5d\xc8\x08\x58\x82\x45\xb2\x0b\x62\xec\xf4\xcb\x11\x90\xec\x8a\xb8\xe1\x96\xd9\x3f\x39\xec\x65\xe4\x90\x69\x87\x3d\x07\xe0\xd5\x29\x8e\xb7\x0e\xb0\xee\x8d\x9c\x3c\x80\x86\x94\x6d\x15\x48\xae\xa7\x57\xb4\xbd\x14\xd8\xe1\xd1\x6d\x07\x43\x0d\x31\x65\x07\xab\x09\x82\x6d\x86\x30\x18\x9f\xb7\x4e\x47\x87\x41\x7b\x1f\x29\xa1\xc3\xc6\xce\xb7\xb0\x35\x08\xaf\xac\x5b\xe5\x82\x86\xbc\xe5\x34\x7a\xf9\x3c\xac\xcb\xb2\x5b\x9d\xdf\x12\xe5\x25\xb3\x58\x71\x4c\xc0\x81\x64\x64\x31\x49\x59\x97\x49\x91\x91\x77\x89\xaf\xcc\xf5\xd3\x26\xc2\x6b\x34\x58\xe2\x2b\x6b\xb7\x70\xba\x64\xd0\xea\x69\xf0\xa4\x75\x84\xd1\x8b\xfc\x7c\xbb\x8d\x25\x4b\x66\xaa\x3a\x6b\x3c\xb9\x84\x68\xd1\x26\x17\xac\x02\x24\x9f\x83\x69\x94\x5c\xd7\x56\x9f\x8d\x59\x9f\x45\x6b\x9f\x99\x49\xd0\xba\x3b\x73\xf1\xa1\xb6\xb0\xb1\xcc\xcb\x8d\x1a\xd0\xe1\x75\x2e\x1f\xea\x25\xc3\x54\xae\xe6\x44\x56\x72\xa8\x52\xb4\x49\xc8\x44\x03\xbb\x92\x84\xcc\xbb\x07\x24\xb4\x33\xaf\xb3\x64\xc2\xea\xa0\xf2\x4a\xba\x8d\x33\x5f\x9b\xc4\xcf\xd8\x63\xed\x40\x36\x0d\x31\x17\x5d\x10\x5c\x33\xcb\x06\xad\x39\x78\xcf\xba\xbe\xc1\x78\x22\x99\x68\x44\x57\xda\x72\xb7\xf2\x41\x5a\xf7\xb0\xd9\x36\xa0\x2a\x0f\xeb\x0c\x24\x2d\x6b\xa7\x4d\x6e\x86\x76\xec\x39\x90\x4d\x58\x15\xe8\x5c\x48\x33\x47\x9b\xfc\x75\x8d\x92\xeb\xb6\x5f\xaa\xb9\xf6\xa5\xc8\xd7\x92\x13\x7d\x2e\xf3\x33\x8c\xa7\x70\x26\x2c\x04\xcb\x21\xde\x36\x0c\x1f\x48\xde\x71\x39\xa0\x97\xf4\xb1\x86\xc4\x2d\xd6\xeb\xbe\x81\xce\x4a\x5c\xbe\xee\x57\x16\xd1\xb2\xe3\xd2\x81\x44\xe8\x59\x25\x19\xbb\xba\x43\x3f\x0e\xa4\x83\xcb\xba\x64\x7b\xc8\x9b\xcf\x5b\x8a\x05\x2f\xb1\xd3\x79\xda\x8e\x12\xbd\x48\xe5\xc3\x3c\x15\x1f\x5e\x50\xb3\xac\xac\xd8\xaf\x31\x18\x61\xed\x4f\xf0\xc5\x81\xe4\x60\xd5\xa3\xed\xad\xef\x63\x74\xe9\xb7\xd1\x7a\x2e\x73\xa0\x0e\x71\x38\x90\x02\xb8\x7a\x40\x62\x0c\x4c\xe8\x57\xc1\x45\xcd\xbd\x28\x2a\xae\x5c\x3e\xfe\xcb\x61\x71\x85\x2f\x52\x5c\x5c\x43\x1f\xbb\x1c\xfe\x16\x2b\xa1\xf8\xb7\x92\x66\x40\x0f\x59\x16\x78\x52\x16\x9e\xce\x7a\x2a\x6a\x9d\x90\x91\x03\xc9\xcc\x08\x9e\xc9\x80\xd6\x4b\x8e\x36\xf9\x8c\x70\x1a\x8b\x4d\x9e\x25\xda\x5e\xf2\x0e\xf2\x17\x89\xff\xad\x9d\xf5\x94\xa9\xad\x15\x73\xed\xcb\xfc\x2f\xfc\xe8\xaa\xf8\x76\x0e\x20\x5d\x4f\xac\x84\x2c\x5f\xc5\x31\xdb\x07\x92\xc3\xa1\x19\x98\x55\x2d\xe9\xcc\x68\xb3\x47\x87\xd7\xac\x4a\x52\x1d\x9c\x9c\xaa\xcb\x0a\x12\xbd\xaa\x03\x72\xa2\x4f\x61\x08\xb2\xfe\xaa\xe7\x84\x77\x54\x37\xab\xea\x4c\xc3\xdf\xaf\x6a\x55\x11\x27\x5c\x36\xb2\x7a\x47\x2f\x32\xbb\x07\xad\xab\x5e\x33\x56\x49\x96\xaf\x96\xdb\xf5\x3d\x51\x96\x59\xac\x55\x88\xb2\xcc\x62\xb5\x80\x30\x32\x8b\xd5\x04\xd9\xa8\x3b\x7f\xe2\x7a\x0e\x74\x50\x24\x81\x84\x32\x7d\x65\x74\xca\xab\x4a\x4d\x3e\x7c\x5b\xad\x66\xa7\x6a\x10\xbb\xe9\x96\x4b\x23\x20\x05\x35\x80\x14\x8d\x78\x27\x6f\x52\x13\xd9\xb8\x20\x29\xcd\x68\x67\xee\x74\xc9\xf4\x55\xe0\xd7\x56\xb3\xc6\x17\x02\x2a\xd3\x57\xcf\x6c\x84\x22\x01\xcb\x8c\xf7\x64\x3f\x47\x7d\xb1\x14\xbb\x57\x10\xbe\x57\x3b\xc7\xa3\xe3\x81\xb0\xda\xf6\xc5\xe2\x05\x55\x54\x5e\xb3\x5b\xdf\x81\xe4\xee\x4d\x2f\x32\x7d\xb5\xc2\x17\xc9\xf4\x55\x9b\x39\xa6\xa5\x70\xf3\x56\x3f\x90\xc5\xf4\x02\xa4\x18\xaa\x1e\x6d\x45\xbc\xdc\x04\x52\x9f\xa0\xa4\x25\x01\x34\x8d\x4b\x92\x40\x0e\x82\x66\x93\x19\xa2\xf8\x52\xe0\x5e\xc6\xcc\xb1\xba\xc5\xed\xc4\x3c\x85\x22\xd7\x07\x92\xdc\x53\xe2\x49\x65\x99\x88\xf1\xa4\x00\x9a\x1c\xa4\x6e\x57\xba\xc2\xcc\x1c\x16\xc2\x85\x6b\x2f\xe2\x9b\x03\x6f\x23\x19\x52\xd0\x92\x79\xab\x22\x52\xaf\x61\x9e\x93\x03\x3f\xe4\xb2\x1c\x97\xaa\xfc\xbf\x0b\x3e\x2a\x6b\x98\x83\x01\xcf\x14\x0a\x5e\x7b\x0e\xa8\x4a\xe4\x0c\x48\xa6\x2f\x66\x2d\x59\xa3\xc7\x05\x31\xc4\xbd\x5d\x1c\xd5\x29\x07\xc0\x0a\x29\x9a\x66\x36\x7a\x40\xba\xac\xb8\xb6\xa7\xa5\x43\xf0\x45\xb1\xd7\x35\xd8\x8b\x89\xe2\xc8\x23\x2c\x9b\x66\xc1\x89\x65\xfd\x2f\x47\x55\xd6\x98\x76\x43\x6e\x64\x63\xa9\x8d\xb9\xd8\x56\x82\x29\x71\x6d\xf8\xca\x0c\x24\x2c\xe0\x12\xdf\xd6\x73\x72\xa8\xb7\x94\x2e\x41\xde\xb6\x2f\x78\x0b\xd1\x6b\x5b\xaf\x1a\xbd\x68\x5d\x12\x17\xbc\xad\x07\x41\x86\xe5\xfc\x38\xae\x12\x6d\x0a\xc1\xe5\x02\x7c\x0c\xcb\xad\x40\xd2\x8f\x56\x08\xbd\x75\xfb\x37\x6c\x89\xb8\xfd\x8a\x8c\xb9\x9e\xe6\x5c\x19\xcf\x5c\x7b\xe1\xe4\x3c\xad\xb2\xab\xbc\x27\xa9\xb2\x83\x2f\x72\x1c\x6c\xe5\xf3\x9e\x08\x36\x27\x40\xe1\x63\x6d\x80\x4b\xd2\xae\xd7\x74\xc7\x7b\xba\x00\x3f\xbd\x3c\x25\x1d\x56\x20\x59\x71\x2c\xf3\x2d\x05\x7e\xe5\x38\xe1\x48\x09\x7c\x91\x1d\x0e\x5b\xf4\xa2\x6b\x06\x3b\xca\x72\x58\x56\x83\x16\x58\xd7\x5e\x59\x25\x49\x09\x35\xdd\xd1\xe6\x94\x2a\x01\xd9\x01\x81\x11\xf0\xe8\xf0\xae\x28\xf8\xa9\xdc\xed\xdb\x20\x91\xf3\x68\x97\x3e\xb6\x00\x0d\xa1\x48\x40\xe7\x46\x1a\xa0\xab\x44\x8f\x5a\x6b\x0c\xf1\x10\x2a\x0f\xa0\xb7\x5c\x72\x78\x4f\xe4\xe6\x82\xf3\x51\x4c\x53\x2f\x2c\x93\xfc\x0f\xfb\x84\x5b\x54\x4c\x53\x43\x97\xb9\x5e\x76\xc0\xbf\xa3\xed\x1c\x16\xb4\x74\xcb\x11\x4e\xe8\x63\x97\x23\x9c\x12\x8b\xed\x08\x27\xc4\xa7\x65\xc1\xa7\x42\x98\x5e\x0e\x1f\x8d\x85\xd1\xf1\xc0\x12\xbd\x64\x30\x68\xa8\xe5\x97\x0d\x06\xce\xec\x71\xa0\x87\x48\x66\xb4\xe9\x36\x86\xd7\x51\xc4\x51\x8b\x83\xf4\xb2\xfe\x70\x32\x33\x2b\x02\x20\x37\xf2\x8c\xac\x68\xe2\x96\x3c\x23\x33\x66\x95\xe5\xa8\xa2\x5e\xe2\x49\x91\x86\x98\xb5\xdc\x8a\x1a\x28\xf9\x1e\x16\xa6\x1a\xd0\xad\xe3\x18\x6d\x16\xec\x32\x90\xb9\xa9\x02\x24\xa4\x67\xad\x1d\x39\x84\x32\x6a\x49\xe8\xcb\x98\x2b\xd6\x5b\x39\x10\x52\xf4\x29\x3d\x60\xac\xb5\x03\x79\x1a\xa8\xec\x40\x11\xec\xee\xcb\x66\x8e\x7e\xc7\x93\xe2\x63\x2d\xe2\xae\xb7\x4c\x9e\xe8\x40\xd7\xdb\x6a\x24\x70\xe2\x6d\xd3\x1e\xeb\x62\x4b\x46\x8e\xf7\x24\x4b\x5d\x10\xb4\x37\x6e\x5a\x7c\xbb\xc8\x22\x66\xb1\xf5\xb6\xb7\x0e\x97\xe3\x5b\xba\x53\x04\xd0\x25\x2b\x47\x0d\x89\xec\x0d\x57\x1b\x23\x88\xf8\xc4\xac\x25\xa6\x07\x5e\xcb\xae\xd1\x10\x9b\x97\x1d\x31\x83\x77\x7c\x3b\xa0\x21\x66\xb6\x7f\x0f\x30\x3e\x90\x88\x96\x31\x6b\x5f\xe6\xf6\x7d\x19\x6f\x59\x32\x2a\xc2\xf7\xbe\xec\x25\x6d\xb2\xb8\x25\x7f\x36\xf4\xcd\xdb\xf2\xe7\x3d\xa3\x4d\x9a\xf7\x1c\x6d\xd2\xa7\xb7\x80\xa4\xcc\x30\xb1\xdb\xb2\x6b\x94\xbb\xc7\x78\xef\x4f\xb0\x73\xdd\x17\x32\x1f\x6d\x3a\x7f\x08\xfb\x5b\xee\x9c\x35\x67\x66\xad\x95\xbf\xfd\xed\xfb\x82\x9d\xe1\x3d\x69\x7c\x1d\x8c\x73\xa0\xf1\x09\xa0\x3e\x90\xa4\xe6\xc6\xac\x25\x09\x38\xdb\xca\x81\xe4\x53\xfc\x81\x74\xfd\x8e\x80\xe4\xa3\x12\xdf\x8e\xa1\xd6\x23\x24\x0b\xfb\x56\x2e\xec\x24\x09\xde\x91\xc1\x07\x3a\xe7\x88\xeb\x70\xdb\x2d\x93\x13\xb7\x91\x7e\x7b\xbc\x67\xbf\xe8\x09\x24\xa9\x72\xd2\xa6\x75\x41\x19\xb5\xe5\xb2\xd9\xd0\x29\xef\x24\xd5\x1b\x66\xbf\x9d\x96\xbd\x59\x1a\xd0\xad\x0b\x3e\x20\xab\x40\x2b\x90\x22\x21\x13\x23\xd8\x7e\x96\x03\x7a\x2b\x9a\xf3\x7b\x43\xdf\x96\x91\x85\x88\xf4\x03\xe9\x1e\xf5\x7d\xb8\x65\xf4\x28\xf8\x3b\x6e\xf9\x73\x36\x87\x0a\xd6\xad\x54\x68\x19\x01\x6d\x4b\x8c\xad\x0e\xc3\x3e\x90\xc8\x77\xbc\xb7\xcc\xd9\xf9\xe3\x95\xeb\xac\x20\xf4\x6d\x8b\xb8\x7d\x32\xde\xb6\x90\xd9\x80\xce\x91\x83\x28\x6f\x19\x4b\xaa\x23\xd9\x0f\xb4\xa4\x77\x64\x3c\xe9\x7f\xb1\xec\x6f\x9b\x4e\x2a\x4b\x28\xe1\xb4\x07\xda\x65\xf1\x5d\xd9\x84\x70\xcb\x04\x52\x3b\x68\x90\x1d\xb2\xc9\xf2\xe6\x6d\xdd\x62\x07\x92\x51\xe7\x0a\xe8\x29\xb1\xcb\xa3\x17\xdb\xeb\xcd\xdf\x6f\x65\x75\x29\x98\x01\xb6\x8d\x1e\xf8\x2a\xec\x62\x4e\xf9\x03\x15\xa9\x0c\x32\x90\x1c\xd6\x4a\x40\x0a\xfb\x60\x9e\x12\x47\x4b\x9d\xbc\x67\xff\xd1\xce\xe8\x36\xf4\xb1\xd6\x76\x62\x1c\xa0\x96\x9c\x18\x73\xb5\x21\x65\x4b\x94\x2b\x19\x04\x95\x8b\x61\x85\xb7\xda\x96\x97\xe2\x20\xd5\x65\x3d\xbc\xa1\x06\xf9\x1e\x40\x5b\xeb\x02\xe4\x70\x18\x73\x61\x1b\x67\x3d\xfa\x6c\x52\xcf\x38\xe4\xf6\x40\xf2\x25\x07\x0b\x9a\x9c\x0a\xaf\x8b\x27\xd9\xcd\x80\x1e\x12\xe8\xe9\x53\x02\x7d\x87\xbc\xc9\xcd\xae\x39\x03\x52\xdd\xdd\xbe\x34\x8c\xd7\xbd\x82\x77\x40\x4f\x09\xdf\x37\x90\x2c\x04\xec\x91\x9d\xee\x1a\xab\xab\xfc\x55\xb5\x82\x75\x5d\x46\x32\x9c\x26\xb7\x24\x8f\x86\xb7\xf3\x56\xfe\xaa\x3c\x7c\xe5\xed\x8e\x4f\xf8\x00\xd2\xca\xb3\xd6\x96\x3c\x2e\xbe\x5d\x8e\x7c\x64\x76\x38\xd0\x2d\xf9\x85\xf7\x74\x02\xe0\xa9\x77\x17\x0e\xc2\x0a\xec\x2e\xed\x65\x8b\xf1\xac\xda\xf8\xf4\xf9\xfa\xe4\x87\xa8\x7b\x38\x58\xdd\x06\x73\xe2\x1e\x2b\xe4\xc6\x6e\x7d\xe8\xa9\xb7\xf3\x5d\xe1\xc5\x4f\xfc\x22\x5e\xfc\x8e\x51\xec\x4e\x21\x50\x1d\x95\xd8\xaf\x14\x90\x7c\x07\x26\xbd\x48\x3e\x8b\x0b\xc2\xf2\x0b\xae\x5f\x7b\xf8\x02\xe4\x74\x0c\x64\x6f\xef\xdf\x90\xe9\xb9\xc6\xe8\x3e\x63\xac\xae\xdc\xf3\x6a\xe6\xb2\x1a\x36\xdb\x36\x66\x26\xa7\x34\xec\x05\x5b\x49\x53\x1a\xf6\x90\x3d\x1d\xcc\xc1\xe9\x98\xf6\x2a\x62\xa7\xe5\xac\x57\xd0\xdf\x6f\x39\xe4\x75\xf4\xcd\x7b\xca\xf7\x0a\xef\x2e\x47\x1e\xf6\xa0\x0c\x72\xb3\x2b\x33\xfa\x5c\x56\xf1\x32\x9e\x4c\x82\xa8\xb4\xf6\xfc\x77\x99\x39\xaa\xa3\x12\x3b\x9e\x43\x7b\x5a\x9b\xd0\x02\xea\x22\xf4\xdf\x1b\xfa\xf6\xd4\x7d\x8f\x7d\x72\x4f\x3b\x85\x0f\x86\x97\x40\x8f\x3f\xa0\x83\x1b\x4b\xdc\x41\x4a\x9c\xd5\x70\xd9\xde\xf2\xd6\xab\x08\xfb\x7b\xd9\x53\x91\x8f\x58\x76\x73\x07\xd1\x1c\x88\x18\x04\x66\x89\x53\xc6\xbc\xb5\x25\x02\xe6\x06\x19\x5e\xd3\xdc\x1b\x23\x40\x4e\x03\x32\xc9\x9c\x40\xe2\xb7\x2d\x28\x3b\x82\x30\xe3\x12\x17\x31\x83\x1c\x96\x85\x4d\x97\xf1\xc4\xf9\x64\x90\x69\x39\xfe\x0d\xa4\x58\x22\x1b\x88\x80\x5b\xce\x7a\x0d\xd1\x78\x5b\xe4\xcc\xdc\xa3\xdb\x56\x71\x78\x08\x3b\xe4\x39\x12\xb0\x12\x41\x58\x40\x9f\x3d\xed\xa6\x45\x2f\xb2\x0c\x3b\xaf\x5e\x75\x94\x60\xa9\x90\xd3\xed\xe0\x8a\x1e\xef\x6d\xdd\xe2\xf1\xa4\x9d\x9a\x18\xc1\xf9\x0c\xe0\x59\xe4\x74\xd7\xd1\xae\x3b\x4a\x30\x07\xa1\xdf\xf2\x5a\x2e\x31\x6b\xa1\x4f\x8a\xf7\xb4\x12\x13\xd2\xa0\x48\xc0\xd6\x53\x3c\xa9\x5d\x01\x95\xe5\x74\xd7\x71\x4d\x74\x5c\x60\xc5\xe8\xe1\xc4\x3c\x25\x46\x57\x5c\x60\x0f\x3e\xc1\xd1\x7e\x9d\x6b\x5b\xf1\x7d\xd5\x61\xee\x07\xca\x9f\x24\x33\xd5\xc9\x77\x1a\x7e\xe6\xfb\x61\x11\xb7\xc6\x93\xc2\xb3\x1e\xbd\x28\x28\xb9\xc6\x7b\x52\xb3\xb0\x47\x32\xca\xb5\x1e\x7d\x4a\x0a\x0a\x7e\xed\x21\xb3\x34\x12\xa0\x93\xe8\x94\xc4\x31\x56\x32\x9c\x1a\x2b\xff\x90\x6e\xbf\xb2\x66\x8a\x27\xcc\x41\x52\x14\x4f\xd8\x63\x5d\x1c\x17\x58\x2c\x5d\x38\xe5\x4c\x8e\xd3\xa1\x3c\x32\x05\x33\x9c\xa3\x04\x4b\x90\x5a\x65\x80\x29\x09\xee\x4d\x22\x7c\xef\x30\x1b\x4f\xcc\xee\x1d\x48\xdf\x07\x9e\x29\x3f\x4b\xc7\x60\xe7\xac\x2b\x75\xf2\xed\x4f\x9d\x87\x3b\xc7\x93\xd2\x0d\x73\x09\x60\xcc\xeb\x01\xd9\xcf\x3c\x20\x9b\x82\xa3\x4f\x79\x46\x71\x72\x24\xd0\xf7\x2b\xe6\x29\x81\xfe\xe2\x4a\x90\x83\x5c\xc1\xa8\xba\x9f\x5b\xf1\x8b\x85\xb9\x38\x31\x6c\x7c\x83\x24\xc0\x04\x71\x75\x4e\x14\xfc\xf6\xc9\x89\xd2\x39\x0f\x08\xfb\x9c\xe9\x97\x19\x1f\xce\xa6\x62\x06\x7b\x5c\xf0\x8e\x19\x6c\x5c\x48\x2f\x13\x5e\x56\x57\x19\x4b\x6a\xe6\x6b\x5f\x0e\x13\x62\xa7\x5f\x0e\x08\x83\x25\x93\xcc\x5e\x72\x8b\xf7\x24\x25\x80\x05\x92\xd9\x6b\xb0\x4f\x2f\x5f\xf0\xb0\x79\x32\x4f\x16\x14\x40\xfb\xa5\xeb\x1e\x4f\x1e\xe7\x05\xe9\x48\x5d\xe4\x05\xb9\xfa\xf7\x86\xbe\xfd\x12\x07\xd3\x4a\x74\x6a\x81\x82\x6e\xec\x50\xcd\xb1\x52\x4a\x8f\x72\x37\x96\x69\x3b\xda\x88\x4f\x12\xef\x38\xd9\x32\x5b\x47\xe3\x40\x48\x88\xee\x84\x0d\x6c\x09\xca\xe5\x82\x9c\x3a\x53\x46\x81\x9f\xb1\x97\xdf\x8d\xc8\x22\x61\xb8\xc5\x56\x3b\x4a\x30\x5f\x01\x1d\xd2\x90\xa3\x17\x99\xf6\x12\x8b\xf6\xb6\x46\xdb\x42\xfb\x7e\x1b\x0d\x24\xb8\xb6\x61\xc1\xce\x4e\xf6\x8d\x38\x3d\x1f\xf1\x46\x9c\x9e\x63\x9d\x9a\x63\xf1\x4a\xd1\x75\x71\x20\x65\x0c\x68\x40\xcb\xce\x7a\x01\x29\xc8\x5b\xbc\xf1\x81\x14\x93\x25\x91\xac\x39\xde\xae\x3a\xa4\xa0\x39\xde\xae\xfd\xde\x8b\x8d\x8e\x13\x48\xde\x9d\xb7\x67\x96\x1c\x38\xde\x33\xd0\xad\x3d\x0a\x48\xab\x7b\xdd\x40\x5a\xf9\xcb\x23\x24\x91\x7d\x1f\xea\x03\x39\x4c\x9e\x3e\xa7\xcd\x7e\x13\x48\xb2\xcd\x88\x27\x95\xbd\x40\x44\xab\x0d\x09\x68\x7d\x66\xda\x64\xf9\xb6\x7f\xc0\x81\x8a\x3c\x9a\x2f\x20\xe9\xef\x4b\xb4\x59\xbf\x16\xbd\x48\xa8\xed\x05\x48\xc1\x15\x6d\x00\x49\x8c\x6d\xd1\x26\x37\xad\xc9\xf7\x2d\x93\x6f\x20\xa5\xa0\xb5\x3f\x6e\x23\x32\x6f\x8e\x0a\x64\x15\x45\xb4\xd9\x8d\x29\xda\x14\x20\x92\xbd\x2e\xb7\xa4\x12\x07\xf1\x1c\x48\x3b\x7d\x15\x20\xf9\x8c\xd4\x80\x7c\x01\x36\x20\x25\xb1\x6a\x5e\x89\xdb\xfe\x01\xf7\x05\x94\xc5\xb2\x30\x82\xc4\xd8\x3b\x7a\x91\x62\xc5\x26\xba\x36\x94\x14\xbb\xd9\x3b\xb7\x39\xf6\xaf\x9a\x1f\x6d\x8e\xfd\x2b\x37\xeb\x72\xe3\x91\xc3\x78\x4e\x15\xd5\xf9\x3e\xd9\x6d\xac\x54\x3a\xd0\x43\x24\x25\x20\xc9\x05\xec\x98\x8d\xa3\x3d\x35\x20\x91\x1b\x66\x6d\x73\xe8\x60\xc7\xb2\x35\xe8\x35\x20\xa9\xec\x2e\xde\xb3\x5b\x26\x78\x9d\x1d\xa5\xcb\x1e\x65\x47\xe9\x4e\x7f\xbb\x13\x63\x67\x76\x25\x4b\x2e\xb0\x82\xe4\x40\x4a\xe7\x55\xa2\x4d\xca\xcb\x2b\xda\x84\x83\x8d\xf1\xa4\x00\x2a\x9f\xf7\x74\xc2\xd9\x31\x67\x22\xad\xb4\x11\xfb\xc7\x3c\x2d\x9b\x0e\x4e\xb1\x64\xd3\x5e\x53\x07\xd2\x37\x4c\xde\xd3\x09\xe8\x1f\xc8\xb1\x7f\x3c\x29\x85\x85\x6d\x09\xcd\x31\x83\xb9\x26\x20\x4b\x48\xcd\x2b\x58\x08\x67\x9a\x40\x0a\x3f\x9f\x01\x39\xb1\x41\x05\x52\x0e\x3b\xd6\x5a\x66\xcd\x5c\xbf\xd7\x29\x9f\x47\xe5\xa4\x4d\x37\x4a\xc4\xd9\x12\x47\xb5\xda\x0c\x77\x25\xa0\xae\x43\x16\x4f\xca\x88\x34\xe3\x49\x71\x53\x35\xda\x14\x61\x97\x03\xd2\xdd\xc5\x31\x76\x22\xf0\x0a\x69\xa8\x8e\x5c\x6b\x01\x29\xc7\x3a\x48\x58\x71\x40\xf2\xb6\x38\x12\x30\x08\x4c\x35\x0f\x78\x33\xfa\xb2\xf7\x31\xbd\x38\xa9\x38\xe4\xb4\x5a\xc8\x6c\x1d\x48\x49\x5d\x58\xa6\xea\x5c\x1b\x20\x4c\xd5\xd1\xb9\xe3\x8b\x9c\x45\xa2\x07\x64\x2e\x9a\x3e\x39\x02\xf4\x29\x2e\x3a\x71\xac\x9a\x3c\x4d\x6f\x56\x42\x46\xce\x76\x5f\xd1\x26\x73\xc5\xbc\x80\xec\xe3\xe0\x11\x9a\x94\x0b\x85\x7d\x68\x36\x92\x31\x42\xb3\xa2\x23\x05\x24\x7f\x63\xe6\x22\x23\xe7\xb8\x20\xd8\x76\x62\x2c\x1c\xea\xb6\x6c\x5f\x9e\x40\x3a\x9c\x90\x4c\xb9\x2d\x66\x3b\xbd\x1f\x48\xc2\x37\x97\x80\x1d\x15\xdb\x07\xd2\x45\x0d\x82\x2a\x35\x6a\x0f\x92\xe9\x28\xc1\x99\x02\x5a\x72\xda\x62\x3c\x23\x61\xf2\x17\xc9\x54\x5a\x94\x86\x5d\x90\x82\xb5\x47\x06\x12\x31\x67\xe5\x6d\x38\xcd\x5c\x02\xdd\x19\x92\x5a\x3c\x69\x25\x01\x7d\x92\xbd\x0c\x48\x33\xb3\xf1\xb7\x39\xda\xaf\x04\xb6\x5a\x11\x30\xb9\x46\x1d\xfb\xd7\x59\x5d\x47\xfb\x5d\x23\xa0\xf3\xed\x81\xad\x36\x6b\x66\x8e\x9c\x63\xff\x0a\x44\xc4\xe9\x90\x6e\x56\x5e\xf1\x7d\xa4\x8d\x6c\x8e\xef\x2b\x23\xc5\x93\xe7\x70\x36\x70\xd0\x09\x90\xe2\x04\x28\xf6\xaf\x65\x70\x77\x4c\x67\xe3\x0d\x48\xa4\x0f\xc2\x3b\x14\xd8\xd5\xd9\x5b\xab\x1a\xec\x33\xd2\x9c\x4e\xbb\xab\x18\x82\xa0\xb7\x1c\xeb\xe8\xc5\x8a\xc6\x98\x0b\xb5\x14\x2a\x90\xf4\xe9\xac\xbc\x22\x01\x5b\xab\xcc\x53\x19\xb7\x2e\x4e\x87\x1c\x38\xcb\x0d\x73\x63\xa3\xea\xb8\x02\xf2\x39\x62\x04\xe9\x86\xad\x0d\x6e\x63\x5a\x99\x08\xe9\x9b\xf6\xc3\xe6\x82\x90\x72\xa1\xda\xa7\xa9\x39\x7b\x76\x1f\x10\x3b\x99\x5f\x6b\x02\x0b\xa6\xed\x59\x23\xde\x73\x2c\x2c\xef\x39\x18\x67\x34\x20\xe5\xe1\x80\xf0\x4e\xbb\x2a\x40\x4e\xa7\xd5\x48\x5c\x9c\x4e\x79\x94\x62\xf4\xed\xf1\x6e\x20\xf9\xa8\xd4\x80\x64\xe1\x01\x43\x96\x63\x76\x99\x8b\x34\x06\xdd\x8e\x8a\xcd\x31\x7c\xb9\x95\x80\x74\x1a\x61\xc9\x14\xa6\x57\xe7\xf7\x39\xe6\x9b\x63\xf8\x6a\x8e\x21\x6c\x94\x83\xc0\x48\xb9\xd0\x55\x3c\x42\x90\x4c\x12\x23\xa0\x2d\xbe\xd2\x28\xe9\xa4\x43\x95\xa5\x58\x32\x0a\x04\xef\xb1\x2c\x02\x72\xab\x2e\x79\x3c\x34\x08\xd3\xf2\xc7\xe7\x80\x14\x72\x0a\xd2\x5b\x49\x90\x58\x7a\x45\xed\x95\x01\x61\xda\x76\x91\x81\x84\xa1\x32\x60\x3b\x65\xa5\x2e\xf3\x03\x39\x24\x73\x00\xc9\x98\x00\x61\xb2\x3a\x61\xc0\x69\x29\xda\x2f\x57\x38\x18\x29\x17\x7a\xca\x01\x29\x65\x4e\x8e\x27\x9d\x90\x88\xb9\x38\x08\x9a\x8d\x70\x24\xe0\x4c\xf1\xa4\x8c\x95\x90\x0d\x47\x02\x06\xd1\x52\x0d\x89\x32\x21\x7d\xdb\xc6\x27\x08\xc5\x96\x26\xae\x83\x30\xdb\xfe\xdb\x37\xef\xd9\x14\x05\x81\xd9\x0e\xbc\x98\x01\x49\x11\x10\x6b\xa6\xab\xa4\x73\x54\xb7\x9d\xe7\x7a\x40\x5e\x09\x8f\xf7\x70\x4e\x02\xbe\xe1\xe1\x60\x80\x32\x81\x6c\xee\x05\x72\xd6\x5f\xae\xed\x87\x2f\x39\x8e\xea\xc3\x33\x83\xd4\x3e\x5c\xe7\x84\x1d\x93\xaf\x6e\x9d\x2d\xda\x1c\xff\xd6\x80\xec\x1a\xe5\x36\xc7\xcd\x5d\x5c\x6b\x12\xfd\x7b\x85\x31\x70\x0a\xd9\x04\x21\x74\x0a\xd9\x09\x1f\xeb\x24\x40\x35\xde\x93\x8c\x72\x81\x91\x8e\x6a\x0b\xd6\x43\x1e\xb8\xb9\x82\x83\x4a\x79\x9a\x27\xe4\x5b\xa2\x78\x4f\x9f\x36\xb9\x93\x71\x01\x2a\x75\x69\x49\xe0\xa7\x45\xf1\x0c\xc9\x54\xfa\x9e\x5a\x21\x53\x18\xcc\x3f\x6d\x53\x6b\x96\x81\xec\xef\xe4\xf1\x2c\x44\xc7\x8e\xbd\xac\x17\xe7\x54\xd9\xf0\x3d\xc1\x4f\xa7\xe1\xf9\xb4\x21\x36\xd3\x8b\x7c\x91\x13\x98\x25\x53\x77\x2f\x90\x3e\x9b\xb3\x3b\x2b\xa8\xc4\x9b\xd9\x3a\xfa\x03\xc9\x58\xc9\x75\x61\x01\x7b\xde\xd1\x8b\x0b\xad\x18\x92\xb1\x39\x3b\xe8\xba\x39\x35\x61\xcb\x77\x40\xca\xc6\xc2\x09\x7f\x3b\x7c\x83\xeb\xc9\xe9\x04\x3b\x6b\xe6\x14\x82\x71\x72\x94\x4d\xa7\x0e\xd6\x45\x11\x6f\x3d\x4e\x2a\x19\x73\xb8\x0e\x15\x64\x96\xdb\x1d\x90\x5c\x21\xa3\x6d\xdb\x63\x85\x11\x48\x26\xc0\x08\xce\x33\x22\x3b\x58\x73\xd0\x57\x75\x08\x51\x23\xcc\x6b\xf8\xfb\xe6\xe5\x24\xc3\x57\x40\xf6\xf5\x0a\x48\xd7\xaf\xbf\x7d\x4a\x86\xae\xae\xbd\xd2\xa6\x8a\xb4\xb4\x19\x6d\x92\x00\xb9\xd2\xa7\x32\xca\x74\xf6\x68\xca\x00\x3a\xae\xeb\x7b\x4e\xd9\xf1\x5a\xdd\x81\x17\x6d\x26\x13\x5e\xf3\x41\x53\x56\xc7\x7e\x47\x9b\x1d\x90\x3e\x90\x0e\x60\xf5\xf0\xc9\x07\xd0\x22\xf5\xbc\x45\x32\xed\x6f\xdc\xe6\x6d\x63\x42\xe9\x40\xba\x04\x7c\x6f\x4f\x79\xcb\xb6\x44\x2f\xb7\x3d\x2a\x8d\x84\x53\xde\xb2\xc5\x99\xd9\x1a\xb1\x55\xd6\xfc\x1d\x48\xc9\xa6\x33\x23\x60\x64\x19\x40\xe6\xb7\x03\x7a\x09\xed\x78\xcf\x9a\xb1\xc6\x7b\x5b\xc9\xad\x27\xa3\xeb\xc8\xdd\xcc\x5a\xde\xb2\xed\xf2\x4d\xed\xd8\xaa\x62\xfd\xda\x81\x94\x60\xa6\x06\x24\x9f\x46\x1f\xb2\x99\x2d\x33\xf8\x9a\x99\xd9\x89\x4c\x67\x40\x32\xce\xf8\x00\xce\xac\xe3\x68\xa7\xb4\x03\x89\x13\xb9\x03\x72\x0c\x3d\x23\x48\xd7\x5e\x63\x2e\xcb\xa6\xd2\x09\x24\xcf\x85\x19\x90\x02\xb2\x2f\x7a\x91\x26\xd5\xaa\xa2\x03\x89\xdb\x9f\x7c\x9f\xfd\x6a\xe3\x49\xc7\x72\xc5\x5c\x24\x92\x0d\xdf\xf0\x44\x76\x95\xe8\xc5\x72\x81\x05\x5e\x57\xbb\x28\x5c\x41\x44\x7d\x15\x90\xde\x95\x23\x06\xe8\x4a\x19\x08\xf6\xaf\x38\x2c\xdf\x47\x67\x16\x2b\x72\x4c\x16\x5d\xe2\xa1\x0f\xf6\xaf\x58\x13\x7e\xc5\x7b\xef\x4f\x72\xf2\x36\x8b\x0e\x60\xf5\xa1\x76\x31\x87\x6c\xe7\xb9\xe6\x6a\x0e\x2d\x73\x20\x8a\x6c\x25\x0e\x78\x6d\x2e\xee\x90\x6d\x1a\x6a\x8e\x16\x2b\x5c\x41\x33\x4a\x45\xf9\x49\x25\x98\xc9\x9d\x75\xa9\x4e\x60\xcb\x09\x50\xf6\x97\x9a\x39\x9c\xf6\x96\x1d\x3d\xda\x74\xe0\xd9\x69\xfb\xc7\x4e\x30\x4b\x71\x65\xcd\x59\x55\x0e\xd4\x75\xe9\x54\x20\x39\x62\xb2\x2b\xd5\x7e\x44\xbe\xd6\x1c\x73\x56\x9d\xec\xe6\x40\x92\x04\xac\x5c\x98\x15\xd9\x86\x5e\x74\xa5\xdb\x8f\xa8\xcd\xaa\x4b\x07\x21\x7a\xca\x95\xb5\x39\x2c\xe9\x40\xf2\x39\xb8\x99\xcb\x76\x4e\xf3\x78\xcf\x17\x4b\xb4\x29\xf0\x82\xb6\xe6\xb8\x4e\xda\x9a\x0d\x8b\xac\x7c\x73\xd0\x97\xf9\x6d\x62\xdc\x50\xdd\xcc\xe6\x4a\x27\x96\x97\x66\x23\x2f\x7b\x06\x92\x71\x8d\x55\xb2\xd3\x6b\x66\x57\xec\xf4\xca\x85\x3b\x9b\xb3\xc4\xb1\x9b\xcd\xd5\x46\x5a\xf4\x29\x23\x35\xe7\x4f\xe5\x34\x2a\xac\xdc\x6c\xeb\xf7\x84\xf5\x07\xd2\x29\x66\x5d\x24\x47\xd6\x14\x33\x13\xb3\x11\x14\xcc\x8e\xb4\xd7\x60\x3c\xa9\xd7\xb8\xc8\x66\x73\x4e\xf3\xc2\x93\xdb\x7e\xf4\xcc\xda\x81\x25\x50\x37\x1b\xb0\xe7\xf5\x3d\xa7\x3c\xb1\x6e\x5f\x5e\x18\x95\xcc\x28\x81\xf4\x8a\xa9\x2b\x41\x4e\x3b\x3e\x8d\x0d\x48\x1a\x3c\x88\x48\xb7\xcb\xb6\x85\xe1\x69\xab\x38\x1a\xa0\xd9\xed\x53\x3c\xe8\x53\x37\xfc\x00\x29\x14\x61\x57\x2e\x10\xbb\x3b\x3d\x11\xe8\x6a\xe1\xf4\x06\x41\xed\x73\x3b\x6b\x3c\xa9\x7c\x1a\x33\xfa\x94\x78\x58\xe2\x3d\x45\x6f\x65\xda\x5c\xbb\x2d\x33\x17\xdf\xaa\xdc\x87\x12\x5c\x5b\x62\x93\x64\xdd\x2e\xf9\x66\x84\x6d\x6d\xa2\xd1\x60\xd8\x09\x07\x32\x35\xc8\x8f\x30\x80\xbc\xf4\x37\x90\xb4\x74\xdc\x95\x12\x5c\x7b\x82\xa4\x38\x4d\x4d\xaf\x01\xbd\x25\x80\x32\x82\x11\x94\xcb\x43\x82\x6b\xb9\x4a\x40\xca\xd3\xc6\xe6\x2a\x82\xb0\x96\x8b\xb9\x1c\xfe\x70\x20\xaa\xba\xea\x47\xb5\xdf\x44\x73\xd9\x8f\x6a\xaf\xe5\x36\xe5\xf1\xdb\x2e\x8e\xff\xb0\x36\xf8\x8a\xb6\x2e\x27\x38\xbe\xc1\xb1\x6a\x5c\x41\xb6\x9f\xd7\xf8\x22\x6b\x7c\xcd\x07\x4d\x09\xbc\xbd\x41\x1a\x86\x73\x27\x70\x55\x5a\xe0\x1d\x31\x9e\x04\xde\x74\x45\xdb\xd2\x3c\xf9\x06\x67\xa5\xb3\xfc\x32\xa7\x0d\x3e\x5c\x1e\x13\xbf\x82\x0a\x34\xc5\x97\x04\x24\x9f\x98\x11\xef\xc9\x5e\xc0\x3c\x9d\xf1\x17\xed\xe5\x54\x42\x9b\x8e\xcc\x30\xa7\x7d\xbb\x2d\xa3\xcc\xe9\x74\x48\xac\xd9\x64\xcd\xfc\x45\x13\xf7\x3c\xda\xb4\x66\x71\x89\xcb\x6b\xb9\x3b\x21\x67\x73\x15\x94\x3e\x52\xbc\x67\x77\x47\x46\xc0\x9f\xba\x03\x49\xb9\x77\x45\x2f\xda\x31\xd8\x84\x69\xcb\x02\xa4\x5d\xb6\xfc\x5a\xe2\x1b\x74\x55\xda\x24\x78\x20\xa5\x19\x62\xe5\xa7\x73\x51\xc4\xcc\x74\x21\x75\x30\x79\x0a\xcb\x27\x2c\x84\xc5\xed\xc9\xc9\x59\x56\x23\xb1\x0f\xcb\x97\x0e\x78\xbd\xec\xd1\xcc\x3c\x9d\x6f\xf8\xe2\x4a\x20\xdf\x30\xe4\xd4\x82\x79\x1e\x01\x49\xa9\x04\x19\x96\xb4\x5d\x07\xc4\x7c\x71\x51\x47\x2f\x0e\x8c\xf7\x3c\x9d\x4d\x27\xc8\x9b\xd3\x06\x27\xe8\xd2\x32\x91\x84\xbe\x38\xc5\xaf\x33\x99\xb4\xb9\x9c\x09\x8e\xfd\x5b\x2e\xee\x30\x19\x4f\x6b\x56\x3f\x4f\x2a\x91\x2e\xf4\x65\xe9\x6a\x8e\x5d\x91\x29\xbf\x64\xd8\xa0\xed\x40\x16\x88\xeb\x76\xa6\xc9\x1a\x90\xf8\x66\x56\xde\xbe\xe4\xf6\xe9\x6f\x73\xe3\x43\x55\x81\xe4\x70\xc8\xd5\x25\xc9\xb8\xa5\x7a\x7f\x4f\x94\x95\x4e\xa7\x57\x10\x74\xdb\xa9\x09\xf2\x26\x97\xf4\x11\x47\x47\xc1\xb0\x2d\xee\xd1\xed\xfb\xb7\x31\x51\x67\x59\xc8\xf4\xa2\x54\x26\x08\xca\x93\xac\xbe\x1c\xc7\x6d\xc7\x97\x11\xbd\x98\xb8\x32\x9e\xf9\xed\x19\xbd\x28\x4e\xfe\xd3\x8b\x35\xb0\xd1\xa6\xbc\x4d\xa0\x88\x8a\xf3\x74\x0c\x68\x84\xe2\xce\x1c\x6d\xe3\x53\x88\xe5\x40\xd2\x57\xde\xd1\xe6\x5c\xb6\x01\x29\x19\x29\x24\xcc\x05\x78\x32\xb3\x96\x0f\x40\xc7\xdc\x34\x1f\xce\xf3\x05\xd1\x92\xd5\xbf\xf4\x2b\xde\x33\x6f\xec\xef\x93\xd5\xbf\x60\x5a\x98\xb2\xfa\x97\x9a\x03\x1a\x9f\xa2\x30\x07\x72\xf0\x41\x07\x92\x45\x99\xa3\xf3\xd0\xa5\x73\x7d\x20\x27\x51\x64\x3c\x47\xd1\x41\x24\xe5\x3b\xd0\x82\x43\x73\x9e\xe2\x11\xef\x39\xb8\x22\xc6\x93\x27\x41\x88\x5d\x0f\x1b\x6a\xe1\xb4\x94\x7d\x38\x97\x11\x90\xd3\xc5\x27\x20\xf9\x0e\x70\x19\x3f\xa9\xce\xe1\x59\x3b\x6c\xa0\x46\x2f\x84\x60\x4f\x20\x71\x53\xcc\xda\x55\x67\x6a\x89\xf7\x94\x59\xa4\x46\x9b\xbc\x7c\x62\x74\x11\xc9\xe0\xc2\xec\x11\x10\x07\xc9\xc9\x75\x3e\xb3\x76\x20\x70\x0a\x28\x49\x83\xce\x93\xce\xa7\x01\xbe\x3c\x51\xa8\x0d\x20\x49\x3a\x31\x33\xab\x28\x20\x30\xca\x3e\x5c\x83\x43\x93\xc2\xa2\x63\x47\x99\xf6\x08\x48\xe0\xee\xcb\x21\x28\x90\x0d\x7b\x04\x04\x21\x7c\xa1\x74\xf1\xe8\xf6\x08\x40\xd9\xe6\x50\xe3\x92\xb9\xa8\xed\xd3\x8f\x86\x79\xda\x23\xa0\xb1\x4a\xf2\xd4\x2f\x1d\xac\x93\x6f\x7e\x8e\x2b\xcf\x39\x85\x1d\x5e\xdf\xe6\xcb\xa5\x96\xb8\x12\x5c\xc7\xa3\x82\xbb\xae\xdc\x31\xf9\xa2\x97\x93\x5b\x45\x9f\xdb\x55\x6e\x3c\x4f\xe7\x0d\xbe\x90\x7b\xac\x94\x08\x62\x8e\x27\x3b\x54\xe3\xed\xb0\x6e\xa4\x0b\x0a\x54\xc0\xce\xbc\xcd\x50\x70\x5d\xc8\xaf\xbd\x85\x3a\xe1\xed\x34\xb7\x77\xbc\x27\x09\x17\x06\xc6\xd9\x74\xa6\x2d\x19\xd3\x9e\xe5\x05\x62\x4e\x8e\x1c\xf0\x45\x21\xd1\x25\x71\x72\xde\x9c\x00\x46\xd7\xbe\xa3\xbf\x8f\x70\xe9\x2b\x9e\x14\xa7\x1c\x73\x71\x9d\x12\xb8\xef\xf7\xb6\x5b\x5f\xbc\xa7\xbc\xc8\x26\xd8\x4b\xee\x01\xd5\x69\x59\x0f\xa4\xb4\x62\x26\xca\x4b\x6a\x8f\x8a\x7e\x7b\x59\xed\xe1\xec\xe6\xcd\x91\xcd\xf9\xc8\x9f\xdf\x11\xe5\x25\x9d\x48\x99\x33\x5e\xb4\x2b\x16\x9d\x4a\x58\xbc\x33\x93\xc1\x79\xae\x00\x4d\x89\x02\x4c\xc6\xe9\x2b\xbd\xf1\xeb\xda\x56\xc4\xbb\x17\xbb\x81\x3b\x45\xcf\x81\xc4\xb9\x9a\xd4\xae\xe4\x64\xd2\x46\x8a\x25\xbf\x82\xe2\x7c\xbc\x07\xd2\xad\x6a\xde\x63\xc9\xf1\xbb\x3b\x67\x6b\x5b\xc9\x3e\xb7\x99\x5e\x7c\x53\x17\x46\xd0\xf1\x87\x14\x39\x40\xba\x38\x0d\x65\x5b\xc9\x55\x1f\xac\xd3\x5a\xca\xc7\xdb\x8b\x51\x79\xa9\x72\x6e\x2e\xb4\xdd\x92\x19\x0a\x5f\x24\xab\x7f\xb1\x93\xd8\x81\x84\xf4\xdd\x7d\x5a\x05\x63\x2f\xcd\x03\xc9\x7e\xee\xfb\x7e\xdd\xf2\x37\x6e\x46\x8a\x75\x43\xb0\x1b\x90\x7c\x2f\x2b\x6d\x2e\x48\x95\xe8\xd3\x89\xa1\xee\x80\x14\xbc\xd9\x18\x41\xc4\x1c\xee\x74\x49\x59\x53\xef\x98\xcb\xb2\x23\x18\x4f\x3a\xa7\x44\xcc\xda\xda\x67\x56\xde\x1e\xe2\x95\xd5\xbd\x9d\xb6\xf4\x03\xc9\xea\x0f\xa2\x59\x75\x83\x21\xcc\x61\xcf\xd5\x95\x16\x0e\xe4\x8c\x7c\xf1\xa4\x72\x3c\x80\x92\x52\xdd\xe4\xce\xb7\x4b\x59\x53\xb1\x52\x3b\xec\xb9\x61\xa6\x5a\xaa\x86\xdd\xb0\xe5\x13\x04\x1d\x3b\x9d\x1d\xcb\xd5\xa3\x4d\x0e\xf8\x99\x5e\xec\xd4\xcf\xf1\xc8\x2e\x53\xc4\xd1\x91\x0f\x7a\xb6\x83\xd5\x81\x14\xee\x7e\x33\xde\xb6\x1d\x85\x3e\xb7\x35\xbe\xcc\x5a\x97\xd5\xa0\x17\x67\x03\x4e\xac\x4b\x71\x30\xce\x15\x90\xf5\xfe\x15\xc8\x6a\x32\xaf\x84\xf2\xff\x76\xb8\x29\xc2\x97\x5d\xbb\xb5\x2d\x97\xd6\x1c\xf1\xa4\x24\x55\xbb\x03\x1e\x48\xde\xb2\x8c\x20\xf3\x79\xc5\xbf\x63\x61\x22\xe7\xa4\x3a\x48\xd8\x7e\x4b\x8d\x20\x61\x57\xdf\x68\x0e\x12\xce\x4e\xa1\x7a\x20\xc5\xbb\xb2\x9e\x0e\x19\xbe\xef\x78\x4f\x57\xac\x79\x71\x07\x10\x17\x7b\x96\x1f\xc8\x89\xa1\xe8\x73\x99\xfb\x2e\x40\x92\x51\xee\x78\x4f\xdf\x90\xe9\x73\xb9\x30\x40\xbc\x27\x23\x19\x67\x53\xea\x92\x72\xb1\x2e\xd5\x7e\xd8\x66\xc2\x1c\x15\xdc\x21\x84\xab\x8a\x5d\xbb\xf8\x06\xa5\xb2\x6d\x5c\x95\x4b\xea\x8b\x06\x47\xbf\x9a\x6d\x33\x9c\x62\x2b\x25\xb8\x66\x16\x4a\x09\xb3\x48\x4b\x26\xeb\x76\xf1\xb5\x2a\x11\x5d\x60\x13\x88\xe7\x45\x0f\xb0\xa4\x31\xc8\x2e\x4f\xd5\x1c\xcf\x5b\xa2\xcf\xee\xac\x2a\x60\x56\x77\x42\x63\x9b\x12\x97\xfc\xe8\x7b\x82\x46\x76\x6c\x56\x5e\x17\xfb\xb5\x8f\xf4\xbd\x4e\xd9\xc1\xb7\xb9\xb2\x14\x0a\xa9\xcd\x76\x6d\x3b\x90\x89\x48\x40\xb2\xe9\x5a\xd9\xbe\xec\xae\xee\x14\x80\x07\x52\xea\x14\x8e\x95\x85\xef\xc2\x26\x0d\x8a\x39\x45\x9b\x3c\x93\xe3\x3d\xd7\x25\x33\x1f\xbb\x24\x7c\xf7\x20\x30\x12\xbe\x1b\x6a\xf9\x25\x1b\x72\x71\x2a\x93\x03\x39\xb0\x93\x36\xc7\x5d\x71\x90\xe4\x84\x5e\x06\xc8\xab\x1c\xb1\xb5\x42\xe8\x87\xf3\x0e\x58\x1c\x5d\xc3\x29\x07\xcd\xb3\x2c\x39\xa1\x67\x27\x65\x3f\x90\xfc\x94\x39\x48\x12\x94\x33\x7a\xce\x35\x9d\xd0\x06\xd2\x20\xeb\x6f\x85\x9f\x59\xd3\x24\x85\x2d\x93\x10\x5d\x32\xe3\x4d\x5b\xc5\x99\xb5\xf3\xc0\xe6\x78\x4f\x42\x2d\x8a\xa3\x65\x0b\xef\x7d\x05\x24\xc9\x83\xf5\x94\x58\xd9\x82\x18\x28\x4b\x6b\x0d\x14\x59\x0e\x56\x81\xd8\x59\x74\xbc\x38\x48\xf2\xfb\xee\xd3\xbc\xe3\x92\x78\x98\xe1\x78\x97\x52\xaf\xb6\x0a\xa9\x5d\x0e\x68\xb8\x79\x72\x3b\xf3\x9c\xbf\x61\x3b\x57\x0a\x84\x42\x09\x55\x33\xea\x84\xb5\xbd\xd3\x5c\x02\xf2\xb5\x2e\x68\x98\x97\x7d\xad\x27\x7d\xca\x2f\xba\xc7\x11\xdf\x56\x5f\x70\x09\xd8\xdb\x19\xef\x8b\x25\x6f\xe7\x3c\xb9\xe0\x1f\x36\x92\x99\x47\x5a\x2e\x2e\x9a\xd9\x69\xa7\x12\x2a\xf0\x25\x4a\x0e\x3a\xd0\x1f\xae\x87\x4b\x08\x30\x17\x25\x07\x1d\x41\xf6\x55\x98\xb3\x25\x4e\xc0\xc3\x29\x65\x46\x40\x4a\xbf\x04\xf1\x79\x38\x15\x2a\xb3\x96\x3c\x31\xe2\x3c\x28\x95\x50\xef\x8c\x27\xf3\x64\x2e\xec\xe6\xd3\xd9\xc6\x39\xd4\x4f\x7b\xab\xc3\xa4\x58\x12\x88\x5d\x71\xf2\x20\x8c\x4f\xeb\x69\x23\x12\x2b\xaf\x90\xe1\xd6\xef\x80\x5c\xa8\x2a\x9e\xd4\x55\xd9\x18\x41\xf2\xd9\x80\xf4\xc9\x33\xb9\x25\x58\x2b\x99\x35\x2b\xae\x9e\xcb\x1e\xc6\x41\x52\x9e\xe6\x9b\x59\xf9\xa7\xb9\xc5\x1e\x90\xc2\x97\x21\x6f\x36\x6b\x62\x96\x5e\xd4\x52\x64\xd6\x2f\x07\xb1\x5b\x52\x25\x2a\x18\x7f\x84\xe5\x0a\x89\x95\x0b\xd0\x66\xcd\xf8\x22\x99\x35\x5b\x65\x75\xed\x0d\xec\x9c\x3c\xcd\x11\xb5\x05\xd9\x6d\xbd\xac\xd5\x65\x57\x5e\xfe\xa2\x46\x9b\x33\xdf\x80\x05\x72\xe3\x6d\x19\xec\x51\xf5\xbd\xea\xcc\x88\x07\xd2\x1e\x41\x6d\x14\x43\xdb\x1a\x57\x90\xaa\xef\xf5\x09\xfb\x44\x64\x2c\x7d\x62\xd6\xa4\x17\xa7\x3c\xc2\x0f\x6c\x39\xad\xa7\xbd\xc7\x0f\xa4\x35\xe3\x6c\xbe\x8d\xad\xd7\xb7\x7e\xca\x8d\xb0\xd9\xcc\xc6\x3b\x6c\x36\xc5\x64\x2c\x98\xf3\x49\xf6\x0d\x76\x4e\xe1\x46\xa8\xaa\x13\x04\xb5\x08\x16\xf5\xe6\x12\xe6\x09\x01\xdd\xd4\xf0\x30\xaf\xb3\xc5\xee\x97\x7e\xf3\x9e\x75\xca\x93\xf7\xf6\xef\x65\x56\x0f\xd4\xe5\x16\xc6\x93\xc4\x80\x4d\x20\x69\xe2\x3c\x17\x87\x64\x36\x0e\xc4\xb6\x8f\x2f\x36\xe4\x6d\x5e\xdc\x6e\xf5\x8d\x40\xcb\xcb\xc7\x63\x27\x0b\x92\xe6\x4e\x37\x7e\xbc\x17\xbd\xd8\xf3\x24\xf3\x9e\xf3\xd0\x99\xbb\xd9\xf2\xea\xad\x33\x07\xa4\x3a\x67\x16\x08\x77\xb2\x87\x63\x01\x5a\xae\x9a\x4b\x9f\xe6\xde\xac\x32\xd8\x4e\x5f\x99\x62\x9e\xe2\xe1\xaf\x4c\x1b\x69\x4b\x79\x6f\xbb\x30\x00\x7d\x9a\x8f\xb5\xbe\x79\x27\x87\x76\x14\x7a\x91\x5e\x1c\x45\xc7\x76\xb2\x22\x57\xcb\x6e\xfb\x76\x4e\x61\x23\xef\xbe\x45\x5c\x5d\x83\xe5\x40\x52\x3f\x99\xab\xdd\x92\x0b\x1a\xa6\x8c\xed\xb4\x97\xed\xd3\xa6\x14\x52\x9f\x5e\xe4\x80\x64\xc4\xde\xb7\x13\x9c\xfa\x58\x11\x0f\x8a\xf5\x7e\xdf\xce\x14\x61\xcc\xda\x4e\x87\x74\xe7\x78\xb2\x88\xdf\x8e\x27\xab\xbe\x2f\x20\x29\x5d\xcc\xdd\x6c\x57\x02\x71\x0e\xb7\x03\x59\x5b\x1a\x6d\xf2\x00\xba\x18\x01\x05\x10\x4f\x8a\x47\xc2\xb9\x73\x93\x58\xf3\xa6\xcd\xa9\x5e\x2f\xbe\xc1\x21\xc3\x39\x9e\x94\xb7\xac\x15\x01\x5b\xbe\xc1\x15\xf3\xcf\x96\x6f\x70\xee\xec\xf4\xed\x5c\x29\xb1\x4a\xf2\xcc\x70\x19\xa2\xb6\x9d\x90\x13\x51\x7c\xe7\xe1\xb0\x8f\x68\x33\xc7\x9b\x81\x9c\x04\x28\x9e\x94\x4a\x6b\x46\x9b\x83\x55\xbc\x2b\xd9\xf2\x60\xa5\x17\xd7\x1a\xe1\x34\x4a\xf2\xa8\x4e\xc9\x75\x20\x85\x0c\xc7\xe8\xcb\x9e\x51\xbc\x67\x3f\x0d\x33\x45\x3b\xbb\x78\xea\xa0\x17\xd7\xb0\xe6\x34\x66\xa7\x5e\xed\x01\x59\x47\x3f\x81\x64\x2a\xfd\x8c\x60\x23\x27\xbd\x80\xc9\x01\x09\xcf\x38\x71\x45\xea\x43\xae\xa0\x5d\x84\x3d\xa8\x91\x1c\xfd\x5a\x31\x87\x3a\xc2\xb5\x16\x5f\x09\x8e\x70\xad\x95\x79\xca\xc3\xb8\x60\x70\xdd\x45\xbc\xbf\x23\xf3\xda\x2e\xb2\x52\xa1\x3c\x71\x2c\x6c\x73\x56\xe6\x46\x2c\x2c\x72\xf2\x76\xc2\x25\xd4\x87\xdb\x15\x4b\xe2\x1b\x9c\x46\x34\xce\x58\xa1\xb4\x42\x03\x12\xff\x0b\x16\xc8\xa0\xdc\x90\x97\x76\x71\xf0\xdd\x8c\xf7\x9c\x5f\xf1\x7b\x9d\xf2\x76\xa6\xa6\xc2\x27\x55\x27\x6e\x61\x93\x24\xf8\x34\xfc\xf3\x76\xf5\x11\x60\x41\xab\x6d\x9e\x90\x14\x89\x3a\x2d\x81\xae\xb2\x0c\xf7\xca\x07\x2a\xa0\xb7\x0f\x08\xa1\x32\x27\x95\xc2\x06\xca\x6a\x5c\xe2\x78\x90\x00\x09\xe2\x6a\x3b\x71\xe2\xc0\x87\xa8\xc3\x7b\xdb\xc4\x80\x79\xba\x1a\x6d\x8b\x36\x25\x65\x07\x79\x1b\xe1\x06\x0d\x48\x82\x1d\x1b\xdf\xec\xb8\xc4\xcc\x9a\xcb\xc1\x72\xe0\x9b\x73\x7b\x40\x40\x9b\x43\x34\x5a\xbc\xf7\xd2\x91\x63\x04\xe7\x16\x00\x0d\x9a\x75\x68\x6c\x8b\xc4\xae\x7e\xc7\x5c\x5c\x65\xad\x30\x17\xdd\xf0\x03\xa4\x68\xe2\xf6\xf1\x11\xdd\x9d\x6b\x66\x00\xd9\xd1\x2d\xda\xac\x20\x29\x40\xca\x16\x66\x01\x7b\x77\xa7\xee\x6c\x01\xc9\xc4\xca\xa1\xb6\x8f\x2f\x3c\xcb\xee\x36\x33\xb2\x0f\x4a\x95\x54\x5b\xe6\x49\xe7\xbd\x03\xe9\x9d\x1c\x69\x94\x68\x53\x39\xa1\x16\x6d\xd6\xb9\xfa\x8b\xba\xfd\x42\xd8\xcd\x8e\xc0\x3b\x81\xf4\xde\xe4\x1b\x9c\x31\x6b\xc4\x93\x72\x71\xe2\xe0\x76\xe7\x15\x83\xa0\x39\x0c\xd9\x99\xf5\x0e\xa4\xdd\x6c\xf4\x29\x9c\x88\xf5\xa4\xf2\xc8\x8c\x36\xd7\xc5\x8b\xf7\xe4\xc7\xcb\xb5\xd6\x9d\x7a\x0a\x2c\x20\xd9\xaa\xe5\x2c\x82\x8b\x91\xb3\xf6\x70\x4d\xe9\x2b\x20\xa5\x4c\xbf\xe3\x3d\xa9\x8a\x18\x41\x66\xd4\x5c\x59\x6b\xcb\x75\x37\xe4\xc6\x72\xdd\x0d\x93\xa2\xea\x22\x05\xeb\x08\x21\xca\x83\xeb\x62\x28\xac\x1b\x25\x0f\x01\xcb\x85\x59\x0f\x17\xf0\xca\xd1\x8b\xcc\xd9\x33\x20\xe5\x93\x8b\x2f\x32\xef\xc8\x39\x92\xc1\x35\x3b\xff\x4a\x73\x68\x73\x43\x51\xe5\xd0\xe6\x96\x63\x2e\x92\x12\xc6\x15\xef\x29\x0e\xb1\x45\x9f\x56\x49\x0e\x20\x31\x22\x96\xf2\x28\xdb\x8a\x34\xe3\xb0\xe7\x82\xa3\xe9\x9e\xce\xdf\xc1\x65\x35\x9d\xb1\x83\xb9\x4c\xfb\x5a\x9b\x93\xa4\x34\x6b\x06\x3f\x65\x9a\x2d\x48\xbf\x7b\x8a\xda\x04\xdb\x25\xd3\x6c\xeb\x5c\x9c\x0e\x90\x9e\xd1\x8b\x08\xaf\xcb\x0b\x34\x17\x6a\xed\x70\xfb\x5b\x46\xd5\x16\x17\xa0\x8c\xaa\xbd\x80\x9f\x0a\x97\x6e\x28\x4f\x1c\x2e\x5d\x52\xcc\xc5\x66\x69\x18\x11\x8c\x9c\xd0\x25\x99\x35\x1b\xfe\x47\x8e\x42\x2e\xb8\xcb\x6d\x19\x32\xf3\xbc\xe3\x49\xf1\xcd\xf5\x7b\xef\x0b\x17\x47\x6d\x25\x06\x5c\xce\x80\x34\x80\x94\xf6\x92\x3b\xc1\x16\x50\xe7\xed\x3f\x90\x0c\x30\x1c\x6a\x79\x26\x37\x04\x1f\x87\x2f\xb7\x04\x21\x5c\xf6\xf5\x04\x41\x2d\xfe\x62\x68\xa0\xc8\x69\xba\x02\x72\x69\xa3\x06\x24\xbb\x66\x0a\x48\x41\xa6\x20\xbd\x33\x66\x39\xad\xe7\x81\xe4\xe7\x0a\xd1\x72\x8e\xdf\x09\xe7\xb3\xd1\xf8\x32\xba\x1d\xcf\xb8\x39\xe5\xf1\xdb\x09\xed\xd8\x32\x4f\x36\x62\xea\xf6\x76\x5d\xe1\x18\x5d\x82\x6b\x07\xe9\xed\xe3\x1b\xbc\xa3\x43\x8d\x27\xdf\xf0\x10\x1f\x14\xdb\xf2\x10\x91\x44\x7d\xe1\x50\xe3\x82\xaa\xc8\xa1\xc6\xb9\xb2\xb9\x36\x2c\xce\x0f\x24\xdf\x52\x0e\xa7\x44\xf1\xd2\xa2\x17\x97\xb3\xe5\x12\x78\xe0\x5c\x36\x80\x44\x78\x47\xb4\x3d\xc4\x49\xd2\x8b\x88\x1d\x7e\xd8\xfb\x61\x27\x38\xf8\xca\x87\x0b\x5c\xc1\x89\xa8\x86\x47\x73\xee\x84\xb6\x9f\x76\x0e\xe4\xc2\x7d\xda\x71\x09\xd2\xe0\xac\x5f\x41\x32\x1d\x24\x8c\xb9\x77\x3f\x1d\xaa\xca\x61\x71\x9e\xaf\xf6\x79\xcf\xd6\xf4\x09\xe4\x6a\x2d\xf1\xa4\xfc\x1f\x62\x3c\x47\x17\x5a\x58\xdc\x12\xda\x5b\x6e\xd1\xa6\x23\x0e\x67\x2e\xef\xe3\x86\x42\xcd\x61\xc1\x39\x2e\x63\x67\xef\xaa\xec\xad\x42\x7f\x0b\x71\x88\x5b\x75\x33\x2a\x1e\x16\x2e\x2c\x5a\x42\x42\x72\x29\x51\x4c\x51\x51\x3c\x94\x95\x77\xb9\x50\xe2\x41\x5d\x12\xb4\x8d\x11\x6d\x8e\x2b\xf3\xcc\x5e\x3e\xc6\x8c\xf7\x92\xd5\x01\x37\x2d\x87\xf7\xe6\xc2\x05\xf8\x72\xaa\xf5\x78\xd2\xc5\xa1\x38\x0f\x2f\x9b\x89\x21\x99\x2f\x2e\x32\xe6\xe9\x6c\x25\x56\x5f\x50\x94\xbf\x41\x16\x6d\xda\xbb\xc0\xba\x97\x35\xe8\xac\x84\x4c\x7b\xe5\x86\x2d\xb1\x2f\x72\x5c\xcd\x16\xe1\x11\xda\x5d\x4a\xb4\x60\x6a\x73\xcc\x6e\x71\xc6\x95\x46\xb9\x50\x57\x01\x6c\xfb\x2d\xae\x1d\x63\xac\x2b\x7b\xb6\x90\x4d\xdf\x04\xbf\xfb\x6b\x1d\xa5\x8b\x2b\xab\x6b\x79\xb6\xb8\x74\x94\x96\xaa\xdc\x50\x94\x37\x8c\xdd\x04\x52\x45\x24\x48\xfb\xdb\x58\x0e\xbe\xbc\x4d\x6a\xa3\x6d\x3b\x08\xeb\x02\x72\x90\xcb\xe9\xa5\x0f\x27\x8d\xb2\x2f\xcd\x81\x94\xba\x53\x97\x4e\xa7\xb2\xa7\x8b\xb8\x76\x57\xf6\xac\x4e\xf7\xd4\x47\x24\x86\xea\x40\x3a\xd3\xa2\x8a\xdd\x95\x3d\xbb\xc3\x5a\x0e\xa4\x72\xcb\xba\x3c\x0e\x64\x47\xe1\x6f\x75\xca\xdd\x85\x3e\xbb\xc3\xac\x0f\x24\xc2\x9b\xa2\x53\x65\x5f\xeb\x4c\x4d\x0e\x2c\xae\xc2\xdb\x5d\x04\xb4\xb9\x5a\x44\x77\x11\xd0\xea\x63\xd5\x5d\xf6\xb3\xfb\x88\x77\x87\x1a\x17\xdb\xcf\xbb\x43\x8d\x8b\x63\xe3\xba\x83\x8b\xdb\x15\xef\x39\xdb\x6a\xe6\x73\xed\xa4\x32\xfd\xb9\xc9\x69\x05\x6f\x3f\x29\xc5\x43\xb7\x11\xe9\x40\x22\x37\xed\x06\x72\x16\x82\x02\xa4\xa0\xeb\xdb\xdf\xa0\x90\xe1\xd2\x46\x02\x92\x78\xc1\xf2\x5a\x65\x30\x0b\x4f\x5a\xbf\x76\xf3\x24\x69\xdf\xe9\xd3\x5c\xc3\xf0\x93\xb7\x73\x50\xd3\xe7\x2d\x97\xb8\x7c\x07\x24\x9e\x7a\x02\x61\xfe\x29\x40\x8a\xcc\x8b\x27\x9d\xac\x73\x46\x9b\xcc\x4d\x3a\x8e\x7d\xd8\x08\xe8\x44\xef\xdd\x01\xbd\xd5\x11\x5a\x07\x92\x20\xc9\xac\x49\xfe\x14\xbd\xd8\x63\x9b\xd5\x95\x11\xb0\xf7\x98\xb5\x38\x50\x57\xa5\xee\x2e\xe6\xd9\x46\x7c\xc3\xb6\x4b\x1c\xef\x49\x24\x73\xe2\xc9\x3e\x54\xff\xa2\x14\x9e\x94\x69\x6f\xd8\x1c\xd3\x5d\xcc\xb3\x5d\xe0\x4b\x26\x33\xc5\x00\x92\x76\x1d\xe4\xcd\xf6\x16\xc8\x15\x48\xc2\x7e\xa7\x4f\x19\x24\x5d\x90\xbf\x3b\x14\xb7\xc7\x5c\x9c\x6f\xd8\x7e\xbc\xdd\x85\x37\xfb\xa4\x4f\x95\xda\xac\xf3\x8e\x36\x1f\x55\xda\xa6\x53\x91\x77\x20\x19\x0f\x5b\xb4\xd9\x19\xca\x23\xb8\x0c\xa7\x0d\x7d\x07\x52\xe0\x7f\xb4\x39\xa7\xf7\xbc\x81\x14\xcd\xd8\x0d\x51\x16\xf3\x4a\x40\x0a\x67\x6a\x13\x48\xb9\x1a\x66\x3c\xe9\x08\xd7\x01\x24\xc5\x0a\xb8\xab\xa4\x51\xed\x62\x6f\x2b\xce\x65\xf4\xe9\x9a\xd8\x3d\x03\x3d\x64\xd7\x28\x40\x32\x64\x46\x9f\x22\x68\x3d\x7a\xc1\x91\x8f\xf7\xec\xc8\xd7\xa3\x4d\xfb\x1e\xb3\x96\xeb\x9e\x2d\x4a\xdd\xb5\x2e\xeb\x98\xd1\x26\x2e\x93\x33\xad\x98\xd6\xea\x44\x46\x7d\xb8\x16\x47\xff\x40\x12\xe1\xa1\x28\x4e\xc7\xeb\x3c\x7b\x07\x12\x57\x3b\x3c\x6b\xd5\xa5\xec\x1d\x5c\x52\xdc\x6a\xb3\xba\xa4\x7f\x22\x55\xe9\x73\x3a\x6b\xa2\x47\x6f\x4e\xa8\xca\xac\xe5\x45\xdc\x2e\xb0\xa7\x89\x0c\xcf\xe8\xc5\x15\x4b\x8a\xdf\xeb\x66\x2f\xc0\x9e\xee\x82\xc0\x10\x50\x45\x95\x96\x0c\x2d\x70\x25\x4a\x7b\x69\x1d\xc8\x79\x04\x81\xa4\x96\x6b\x9c\x38\xb9\xff\x56\xfb\x92\x1f\x48\x52\xd0\x9c\x40\x92\xeb\x20\xe6\xdd\x21\xfb\xe9\x5b\xef\x8b\x3e\xec\x1b\xec\x5c\xc4\xdd\x81\xab\xdd\x9a\x9c\x03\xa9\xc6\x14\x77\x89\xfc\x7f\xbb\xc3\x4a\x0f\xe4\x2c\xfe\x40\x4e\x53\x33\x18\x9e\x98\x6f\x7a\xf1\x6d\x0c\x4a\xda\xff\xd7\x5a\xb3\xee\xc0\xd5\xde\xb9\x4b\x5c\xdf\xa3\xf2\x11\xf2\xdc\x2d\xf1\xb9\xce\x52\x95\x21\x37\x0e\x16\x75\x52\x9e\x03\xc9\x02\x3a\x02\x32\xc9\xe4\x3d\x07\x4f\xb3\x65\xae\xfd\x71\x83\x5a\xc3\xae\x51\x20\xef\x20\xec\x72\x02\xc9\xf2\xdd\x02\xd2\xf7\x71\x74\x24\xca\xd5\x5c\xa2\x4d\xe8\x7a\xbb\xcd\x61\xa5\x19\x62\xa7\xcc\xbd\xcd\xf9\x34\x3a\x05\x26\x2b\x64\xd8\x61\xa5\x85\xc3\x32\x89\x5c\x33\x12\xca\x94\xd8\x13\x07\xc2\xc6\x43\xd7\xf2\x3d\x90\x32\x3e\x40\xb4\xa6\x33\xf7\x72\xa7\x4f\xe7\xe8\xc8\xd1\x26\x81\x09\x52\x34\x31\x95\x32\x82\x13\x10\x82\xae\xd3\xfe\x01\xec\xb4\xfd\x6a\x47\x7c\x83\x7d\x15\x58\x09\x85\xa3\xf6\x02\x29\x52\x81\xc9\x6c\x2f\xf0\xee\x00\xd4\x6a\x9d\xe4\x81\x92\x54\x53\xfe\x3e\x49\x64\xc5\x59\x1d\x0e\x24\x12\x56\x13\x90\x7d\x77\x26\xd0\x5b\x3a\x50\xcf\x6c\xb3\x9e\x09\xe8\xd6\x65\xd5\x81\x2c\xdb\x34\x20\x27\x57\xe7\x49\xa7\x37\xbf\x03\x92\x1f\x2f\x7b\xe4\x38\xcb\x06\xf6\x6c\x5c\x95\x26\x90\xf4\x95\xac\xbc\xe4\xa5\xd2\xb8\x46\x37\x6a\x32\x66\x26\x7e\x3b\xae\xbc\xed\x52\x9b\x97\x7b\x79\xc0\x3b\x7a\x66\xce\x4c\x9c\xb8\xba\x70\xa1\x04\xcf\x1e\x16\xcc\xd9\x77\x3b\x54\x8e\x78\xcf\x69\x4b\x59\xdd\x87\x75\xa0\xec\xfb\xc3\xe1\xd2\x57\x01\x92\xb9\x29\x7a\x11\x29\x9a\x10\x2d\xcb\x3d\x37\x3b\xe6\x8a\x84\x17\x57\xf3\x53\xca\xaf\x1b\x12\x8d\x4b\x23\x04\xd4\x95\x05\xaf\x78\xcf\x2b\x18\xef\x2d\x63\x24\x4f\x4a\x1f\x3b\xb9\x3c\x5c\xf7\xef\xe2\x82\x90\x61\xb1\x4f\xce\x8a\x2b\xfd\x95\x11\x6d\x52\x1f\x42\x19\x9e\x04\xe9\x17\x20\x31\x1b\x5c\x87\x96\x51\x3a\x23\xc8\x94\xd8\x0a\x6c\x82\x5d\x13\xe3\x8c\xd9\x35\xf1\x1a\xf1\xa4\x52\xfc\xe6\x0b\xc8\x8c\xa4\x47\xb0\xc4\x92\x20\xb5\x32\x3a\xe6\x09\xb6\x3a\xa5\xf0\xcd\x89\x73\x7a\xa2\x6b\xc6\x7b\xd6\x99\xfb\x8b\x5e\xd6\x53\x73\xc1\x2b\x26\xb2\xa5\x14\x90\x4f\x23\x90\x2c\x43\xe7\x5a\xfb\x96\x28\xbf\x48\x88\xc2\xb4\x8d\x76\xdc\x72\x12\x67\xca\x60\x32\x12\x60\x72\xa9\xd1\xa6\x83\xcb\x26\xbd\xa9\x60\x3b\x80\x6c\x92\x08\x48\x5c\xd1\x8c\xf7\xe4\x78\x06\x91\x54\xd8\x65\x1e\xdc\x87\x6f\xd5\x80\xb0\x6b\xd4\x81\xec\x3b\x1b\x90\xf8\x19\xee\x58\x09\x3e\x6d\x80\xa0\xaa\x25\x58\x1b\x07\x57\x82\x4f\xbd\xb8\xf3\x9c\x8f\xb7\xb0\xd8\x6f\x67\x0b\x4b\x01\xe9\x6b\x3f\xbd\xc8\xce\xcf\x2d\xa7\xc0\xce\x32\x21\xd8\x6f\xa7\x11\xe5\x70\xbe\xed\x84\xce\x25\xf0\xb6\x8f\x0a\xb7\xf8\xdb\x21\xc3\xbe\xba\xa6\x45\x24\xeb\xad\xba\xeb\x05\xe6\xe9\x5e\xe6\xe5\xd0\x1c\x8f\x30\x2d\x30\x59\x79\x72\x20\x5f\x87\xd1\x8b\xe2\x99\x06\xef\x39\x0a\x32\x05\xe4\xd4\x4c\xb7\x21\x57\x45\x68\xbc\xe7\x14\x95\x99\x11\x6c\xd4\xb9\x78\xcf\xfc\xd3\x1d\xef\xa9\x76\xf7\x64\x74\x0c\x92\x09\x48\xfe\x08\x33\x7a\x91\x6f\xf7\x15\xef\x49\xf3\x9e\xe2\x3d\x29\x10\x4a\x8c\xa0\x1c\xdb\x37\xef\xc1\x65\x32\x33\x61\x9d\x4d\x27\x07\x92\xd3\x5d\xac\x99\xf4\xc6\xf6\x3c\x39\x90\x6c\xf9\xf1\xed\x52\x2a\x39\x11\x64\x77\xe0\x6a\x75\xe0\xcc\x81\x1c\x8c\x23\x5c\x9a\x36\xfe\x3a\x3e\xf3\x40\xbe\x90\x26\x90\xb2\x25\x5c\xd1\x26\x53\x9b\x0f\xee\x74\x3e\xde\x9b\xaf\x95\xf1\xb7\x73\xb1\xcc\xe4\xa3\xda\x03\x72\x76\xb9\x80\x64\x28\xfa\x3c\x69\x89\x93\xf1\x2c\x71\x5a\x02\x9c\x54\xa3\x19\xd1\x26\x1e\xd0\xfc\x9a\x63\x68\x8b\x7d\x85\x0e\xe4\x4c\x34\x7c\x91\x54\x37\xd6\x8b\x1f\x48\x15\x59\x46\xbc\xa7\xd0\x2a\x56\x37\x81\xd7\x01\x2d\x45\xe2\x32\xba\xcc\x70\x2e\x7c\xd0\x67\x72\xe6\x47\xbe\x3d\x8c\xbf\x1d\x48\x7b\xc4\xfe\xd9\xc0\x6b\x17\xd1\x03\x49\x12\xe8\xf1\x9e\x94\x51\x66\xb4\xe6\xed\x72\xa8\x85\x27\xed\xf3\xc3\x4a\x38\x4a\x77\x80\x67\x72\x0a\xcd\x8d\x79\x5a\x1e\x74\x2d\xcf\x03\xd9\x05\x60\x00\x59\x1a\x8d\x36\x7b\x15\xd1\x8b\x42\xc5\xad\xf1\x3d\x90\xd9\x35\x9e\x94\xf4\x3b\xa2\x4f\xb1\x17\xf5\x03\x89\x8f\xcd\xcc\x6c\xbb\x5a\x0b\xdf\x6e\xb6\x8b\x73\x64\xb3\xad\xbd\xc9\xfa\xcc\x62\x1d\x91\x70\x23\x82\x97\x1d\xcb\x56\x66\x98\x8b\x76\x94\x6e\xb3\x97\x4f\x77\x94\x6e\x1e\xf7\xf7\x9c\xb2\x43\x78\xbb\x35\x6a\x07\xb2\x4b\x3a\x90\x75\x3e\x10\x11\x5b\x6a\xd1\x9e\x4c\x59\x6a\x3b\xe2\xb6\x03\x7a\x1b\x62\xa5\xcb\x31\x36\x5b\xf6\xfb\xcc\x56\x4a\xb0\xd5\xce\xf7\x04\x8f\xe4\xc0\xdc\x8c\x28\x30\x65\x71\x6d\x13\x22\xa2\x9c\x4e\xed\x02\xd1\x8a\xab\x4b\xb3\x14\x16\x40\xad\x9b\x3a\x90\x0d\x37\xd1\xe6\x54\xa1\xf4\x49\x70\xea\x04\x72\xa6\x34\x9e\x54\xc2\x43\x3b\xbd\x1f\xc8\xc9\x3a\xe3\x49\xd9\xac\x63\x04\x13\x9f\x49\x9f\x4e\xdc\x62\x79\xc2\x05\x1f\x9b\x7d\xa6\x0f\xa4\xd0\x58\x36\xb0\x38\x5f\xb4\xf9\x51\x07\x02\x97\x04\x29\x72\x20\x70\x6b\xd1\xa6\xc0\x19\xbe\x9d\x62\x38\xbe\xa9\xa7\xf3\x22\x77\x0e\x92\x0b\xde\x24\x90\x49\x21\xbc\xad\xb1\x7f\x15\xaf\x86\x0a\x24\x61\x2a\xde\x73\xa8\xea\x88\x27\xe5\xa2\x36\xe3\x49\x95\x83\x1a\xd1\xa7\xf2\x85\x80\xf4\xd5\x3a\x6c\x56\xb0\x3a\x90\x9b\xa3\x5a\x1d\x5e\xe4\xeb\x77\xca\x88\x5b\x11\x0f\x67\x75\x48\x34\x97\x87\xd3\x3d\x95\x3b\x20\x57\xc3\xe0\x3d\xe7\xd5\x2d\xf4\xb9\xcd\x97\x30\x1e\xe9\x32\xa3\x4d\x61\x18\x8c\xa0\xa2\x95\xd9\x21\x28\xdd\x01\xbd\x6d\x80\x9f\x2e\x53\x99\xc0\x41\x65\x81\xee\x2d\xc5\x7b\x32\x4f\xde\x01\x59\xf5\xe6\xf1\x64\xb6\x6d\xd6\x49\x76\x57\xa2\xac\x39\xde\x13\x69\xa8\x60\x8f\x42\x71\xeb\x04\x93\x1b\xf9\x5e\x06\x90\xce\x0a\xdf\xd0\x94\x91\xa4\x72\x01\xca\xa4\xdb\xca\x8c\x27\x65\x54\xe5\x5a\x53\x60\x6e\x9b\x5c\x09\x0d\xdd\x77\xbc\xa7\x82\xfc\x57\x3c\x69\xbf\x7d\xb7\x75\x18\xa6\x0c\x24\x5f\x8c\x1a\x6d\xca\x64\x02\xb9\x71\x46\xea\xc2\xde\x5a\xf8\x1e\xac\x52\xc7\xc7\xbe\x01\x29\x56\x34\x46\xb0\xb4\x16\x7d\x8a\x7d\x6a\x23\x9e\x94\x8f\x2f\xd7\x45\x77\xea\xb0\x9b\xf1\x14\xda\x71\x83\x2f\x4a\x1a\x55\x1a\xab\xe4\xec\xd1\xb9\xc4\x93\x2a\x13\xc0\x55\xe9\xc4\x50\x9d\xb9\x48\xa2\xae\xf3\x0a\x48\x61\xe4\x50\x86\x61\x5f\x0c\x28\x83\xcd\xaf\x17\x44\x52\xe6\xd7\x9e\xb8\xee\x87\x33\x84\x80\xad\xc3\x11\x1a\x29\x20\x7b\x2d\x77\x20\x51\x06\x4e\x87\xe4\xe4\x52\xa1\x28\x8a\x31\x2d\x95\x4b\x4e\x12\x6e\x0d\xd6\x63\x2a\xd8\xbe\x70\x8e\xec\x3a\x9b\x73\x40\xca\x6b\x7d\x7f\xaf\x53\x9e\x12\x6a\x7b\x86\xbf\x70\x58\x69\x1b\x01\x49\xb3\xd2\x19\xd0\xb5\x38\xcc\x8c\xcf\x69\x21\x05\xa2\x6c\xdb\xa5\xf3\x60\x75\x87\x79\xe6\xce\xe7\x2a\x2b\x73\xc9\x2d\x20\xb9\x7a\x43\x36\x16\x02\x68\x07\xd2\x21\x83\xeb\x53\x08\x68\x47\x47\xe8\x30\xcf\x0c\x67\xee\x30\xcf\xdc\xd9\xce\x65\xf7\x20\x10\xcd\x25\x41\x1b\x07\x57\x66\xc6\x7e\x47\x9f\xf6\xb6\x04\x7d\xb6\x73\xb8\x99\x6f\x9e\x1b\x1b\xf2\x00\x92\x32\x03\xc2\xbb\x5d\x6a\x9e\x8d\xdf\x2e\x5b\x05\x19\xde\x4e\x90\x09\x71\x55\xa0\x65\xae\xf0\x4f\x2e\x1e\x1a\x7c\x9e\x53\x10\xdd\x33\xda\xe4\x64\xcf\x76\x3a\x4b\x32\x8a\x9c\xb9\xe1\x1a\x3a\x90\x0f\x35\xef\xd9\x7a\x0f\x11\xd9\xd6\xd8\xb3\xd6\x4e\x5d\xe4\xf0\xf3\xee\xa8\xcb\xd2\xe1\x83\x6c\xc8\x44\xc3\x15\x91\x95\x1c\x32\x8b\xe2\xb1\xd6\xa4\x2e\xa2\xcd\x86\xcc\x02\x9a\xdb\x8b\x18\x1d\xb6\xe3\x25\x7b\x61\x5d\x1e\x96\x9e\x5a\xbc\xb7\x0f\x82\x72\x91\x3d\x5c\xf7\x0f\x52\x64\xd3\x25\xe2\xe8\x7c\x98\xb3\x83\xc3\x7e\x50\xbe\x9e\x27\xb7\xe3\x1e\xe9\x65\x9b\x0f\x62\x2e\x4e\x67\x05\x37\xac\x12\x45\xfd\xe2\xb0\xa8\xcc\x68\x8f\xeb\xd0\x86\xc5\x0e\x61\x92\x37\x70\xad\x90\x3e\xf9\xff\x96\xcc\xe5\xf1\x24\x06\x93\x3e\xa5\xb1\x4f\xec\xd8\xd3\x46\x32\x70\xfe\x69\xe3\x2f\x27\xe7\xe9\xb0\x7c\x46\xb0\xd8\x8c\xd4\x35\x95\xc7\xb7\x74\x0b\xca\xf3\xe5\x80\x0d\xcb\x67\xf3\x65\x0f\x63\x70\xc9\xf5\x6e\x1a\xc4\x55\xe2\x6f\x09\x42\xaf\xc8\xbc\x5c\xb9\xd6\x2c\xe1\x66\xc8\xcd\x0b\x7f\x12\xfa\x74\x28\x17\xbb\x22\x0f\xdc\x3c\x39\x1d\x4a\x88\xdb\x6f\xd6\x1a\xa7\x57\xd8\x99\x37\x25\x87\xbd\xd6\xaa\x07\x53\x3b\x97\xf1\xdb\x09\x5c\xe1\x40\x2d\x7f\xce\xcf\x93\x8a\xbe\x03\x93\x2d\x63\xde\x9f\x27\x95\x2b\x25\x07\x24\xe9\x29\xc6\x73\x18\xb9\xcf\x9f\xab\x85\x56\x97\x95\xe8\xc4\xcd\xd9\x4f\xa3\xaf\x8b\xf1\x12\x90\xd4\x41\xc6\x56\xd7\xf9\xec\xae\x44\x79\x20\xf9\x73\x19\x77\xd7\xe5\xcb\x51\xa6\xee\xee\x5a\x9e\x1d\x4c\x5e\xaa\x66\x52\x60\x21\x5c\xa1\xb3\xa2\x6b\x5f\xb6\x44\x71\x95\x2c\xd9\x9e\x8a\x5d\xf0\x0e\xa4\xd5\x35\xf9\x5e\x4e\x34\x8b\x3c\xef\xfa\x99\xd5\x69\x4b\x3b\x01\x68\xe8\xbe\x97\x64\x8d\xd6\xf3\xb7\x95\x47\xce\xa3\x72\xe2\xb8\xa3\x1b\xdd\x41\x26\x76\xcb\x66\xaa\x6a\x26\x7e\xdd\x4e\x27\xe9\xc5\x76\xac\x5a\x73\x89\xa2\xbe\x6e\x93\x8d\x68\x43\xbc\xa0\x17\xeb\xc2\x12\x6d\x0e\x9e\x66\x99\x9c\xf6\xa7\xcc\x80\x94\x66\xc8\xc8\xbb\xec\xa5\x09\x8f\xe4\x68\xb1\x8e\x61\xca\x25\x33\xb3\xd3\xaa\xf4\x95\xa5\x7d\xc6\x28\xe7\x58\xae\x62\x9f\xe9\xee\x82\x96\x99\x6b\xc6\x05\x2d\x0b\xc2\xf7\xca\x2e\x5f\x3f\x79\x4f\x97\x07\x7a\xc7\x55\x9c\x82\x93\x6f\x20\x5e\x8b\x55\x72\x95\x10\x4c\x82\x2e\x29\x59\x4a\x0d\x48\x96\xe1\x46\x2f\xce\x1a\x65\x72\xba\xc4\x0d\x57\x97\xb1\xe9\x2e\x1b\x59\x6f\x36\xb0\x8a\x17\x70\xda\xfe\x03\x79\x3b\x33\x90\xf8\x27\xfa\xb4\x31\x08\xdd\xdb\x72\x7a\x1b\x64\x1b\xc7\x72\xb5\xc9\x8e\xd9\x89\xd1\x2e\x4e\x07\x92\x43\x97\x6f\xff\x65\xde\x98\x1b\x7e\x39\x69\xaa\xbd\x52\xfa\xa2\xf8\x3a\x2b\xaf\x38\xaf\xea\x64\xe0\x07\x92\xac\x51\x19\x41\xa2\x23\x8a\x15\x47\x76\x35\x87\xde\xf7\x55\xed\x75\x13\x33\xd3\x75\x68\x7f\x8b\xbe\x94\xe0\xb4\x38\xfd\xe8\x81\x64\x8c\x6d\xd1\x66\xcd\x5f\x40\xd2\x30\xfb\x18\x2f\xf3\xb1\xf0\x95\xab\x39\xb5\x3b\xdf\xd7\xd0\x53\xdf\x40\xca\xce\x9b\x19\xc1\x29\x2a\xcd\x23\xad\xe6\xea\x37\xac\x84\xf8\xd8\x8a\x88\xeb\xba\x8d\xed\x06\xaf\x9b\xfd\xbe\x4b\x3c\x29\x47\x30\x73\x4c\xab\xe9\x8b\x32\x73\xe9\x4e\x51\xe9\x6b\xd4\x11\x61\xf5\x66\xd6\xdd\x85\x3e\x59\xb3\xee\xea\xe0\xec\xa6\x1c\x15\x3b\x2a\x11\xaa\x38\xc6\x8e\x75\x0c\xc3\x13\xc8\x6a\x1d\xc6\x9b\xf6\xae\x6e\x40\xca\x3d\xc3\xf7\x51\xa5\x1d\x42\x81\x9d\x08\xe2\x63\x3b\x91\x0b\xb0\x1d\x48\x19\xf9\xc0\x4f\xaa\x31\x82\x13\xe2\x4e\x47\xcc\x7a\xd8\xf5\x72\x46\x9b\x6a\x72\xfa\xea\x5a\x43\x57\x10\x17\xf5\x12\x1f\xdb\xed\xf1\xd0\x97\x32\xb5\x34\x57\x90\xee\x0e\x1d\xeb\x35\x45\x9b\xf0\x1a\x42\xe8\xf4\xa3\x58\x6a\xa8\xdb\x88\x7c\xe6\x40\xb2\x8e\xa6\xdf\x75\x1b\xdb\x88\x36\x94\x66\x5e\x97\xe1\xb2\x55\x9c\x2a\x3b\x00\x22\x39\xae\x21\x99\x3d\x08\xa8\xf9\xdf\x3b\xbe\xc8\xa1\x24\x95\x79\xda\x07\x1d\xb2\xaf\x64\xa4\xb9\x33\x33\x59\x8d\x72\xb7\xbc\xe4\x7a\x8f\xc5\xa9\x21\xba\xeb\x3d\x76\x2c\x4a\xcb\x29\x46\x1b\x54\x63\x3a\x7b\xc8\xfd\xad\x9f\x72\x5f\x73\x5a\x7b\xc9\x8b\x8e\x32\xb3\x30\xec\xb2\x91\x8d\x5b\x7c\x89\x6f\x6e\x0e\xa2\xed\x44\xa0\x71\xe7\xad\xe9\xd0\x51\xd0\xdc\xa9\x53\xe0\x47\x97\x52\xa7\xe4\x09\x79\x73\x6d\x13\x07\x1f\x1c\x48\x4e\x77\x31\xba\xb5\xb3\x25\xfa\x7c\x4b\x11\xef\xf7\x6c\x36\xca\x6c\xb5\xd3\xaa\xb8\x36\xf2\x81\x1c\x7d\xe7\x99\x29\x19\x69\x77\x1c\xdb\x81\x94\x82\x93\x0d\x74\xdd\x93\x01\x52\x2c\xa7\x46\xac\xf1\xa4\x38\x0a\x0e\xcb\xa2\x2a\x1f\x7d\xba\xb2\x76\xcc\xc5\x51\x5f\xdc\x80\x76\xeb\x43\x87\xbd\x36\xf7\xef\x0d\xa4\x5c\x57\x20\xb6\x39\x6c\x57\xc5\x3d\x90\xdc\xd7\xa2\x4d\x71\xf2\x81\x68\xdb\xa5\x78\xe2\x49\x09\xd1\x17\xf3\xdc\x68\xe2\x68\x5b\x36\xce\x54\x20\x65\x36\x48\x01\x55\x71\x53\xbc\x27\x32\x85\x48\xbd\x94\x1c\x34\xd7\x2b\x9e\x7c\x8b\xbb\x01\x72\x2e\x69\x48\xb4\xf3\x93\xcc\x2b\x20\x49\x1e\x1c\x8f\xed\xd0\x74\x50\xf2\x61\xdf\x67\xc8\xa2\xab\x8b\x20\xb4\xaf\x87\x93\xb3\xf4\x80\x94\x4a\x1e\x72\x23\x2e\xba\x17\xc8\x30\x0e\x80\x7c\xed\xc3\xc5\x4a\xd9\x77\x3b\xf9\xf5\x1e\x90\xfc\x81\x38\x56\x0f\x6b\xfa\x21\x8b\x4f\x87\xbc\x58\x01\xb4\x9e\xb6\xa6\x43\xf6\x9f\x0e\x07\xcf\xd1\xa6\xea\xe0\x96\xe4\xd6\xd3\x55\xdd\x18\xfd\xe9\x2b\x01\xd2\xe7\x58\xbc\xc1\xe1\x24\xb7\x07\x84\x49\x66\xb1\x5e\x6a\x3c\x29\x87\xae\x1c\x90\x39\x3b\x46\xd0\xf7\xd9\xc5\xf0\x40\x92\x3f\x39\x55\x4f\x87\x83\xb3\xf2\x2e\xd1\x89\xcc\xb0\xe4\xba\xd7\x2e\xc8\xb7\xcc\x5b\x19\xe7\x2b\xd7\xcf\x6c\x8d\xef\x53\xae\x8d\x16\x9c\x9d\x0c\x5a\x65\xb0\x4a\xca\xae\x51\x30\x3a\xba\x46\x66\xc5\x84\xec\x3a\x98\x1d\xd5\xe2\x52\x3e\x8d\xdc\xf8\xa2\x97\xcd\xa1\x7c\x83\x78\xf8\xd6\xd8\x87\x97\x4b\xca\xb1\x66\x2f\x6a\xcb\x47\x9b\x94\x74\xac\xa0\xac\x54\x2d\x30\x8b\xb8\x39\x98\x29\x72\x6d\xa4\x78\xb2\x69\x84\x68\xb3\x89\xfc\x06\x9a\x5a\x79\xaf\x84\x22\xe5\x2a\x86\xd3\x25\x6b\x53\x45\xaa\x74\xbd\xc7\x92\xa3\x4f\xb1\x87\x4e\x3b\xdb\xa9\x95\xe8\x7a\xe7\x7d\x5f\xa6\x1a\xc6\x82\x7d\x39\x43\xa5\x67\xbd\x9d\xb5\x02\x55\xed\x36\x67\x0e\xf3\xb6\x9d\x98\xc2\x99\x45\x0e\xa4\xbc\xcf\x37\x4f\x3a\xef\xba\x15\x6a\x54\x24\x2c\xe3\x7b\x9d\xb2\xcb\x15\xd6\x44\xa7\xce\x3e\x81\x90\xb2\xe5\x86\xd6\x9c\x7c\xb1\xbb\x08\x61\x73\x52\xca\x4e\x31\x41\x17\x4f\xea\x94\x0f\x4c\xf1\x24\x21\x21\xfe\xc0\xe4\x64\x30\xe6\xde\x1c\x3b\x56\x1d\x4e\x71\x20\xa5\x96\x36\x89\x26\xea\xcb\xa9\xf2\x7b\x44\x76\x4d\x9e\x74\x89\x55\xa3\xcf\xbe\x9d\x62\xf4\xd3\x26\xad\x20\x73\xb9\x2d\xea\x5c\x01\x29\x23\x82\x51\xcb\x91\x5d\x05\x15\x0c\xf5\x02\xe1\xa6\xf6\xed\x24\xe9\x46\x34\x47\x7d\xe5\xca\x06\x62\x06\xb8\xa2\x4d\xbc\x9c\x75\x7d\x8e\xbb\xea\xc3\x97\xce\xce\xd3\xfa\xd1\x80\x1c\x53\xd7\x80\xc4\xcf\x24\xde\x73\xb8\x81\xc5\xdf\xad\xcc\x0d\xc5\x85\x01\xba\x6b\x02\x66\xe7\x00\x3b\x90\xcc\x31\xe6\x9b\xb7\xd3\x65\xa2\x19\xdb\x45\x2a\x18\xa7\x69\x3c\x90\x8a\xe0\xf7\x78\x52\x9a\x5b\x4b\x25\x5b\xf5\x1a\x9a\x53\xe5\x77\x57\x16\x1c\x18\x4b\x76\x71\x82\xf1\x19\xd0\x53\x29\x5e\xfc\xb5\x45\x72\x48\xec\xad\x2a\x0b\xd6\xd8\x23\x47\x5a\xdd\xa0\x9d\xf5\xfe\xa3\x45\x9b\xf9\xfb\x78\x4f\x17\x19\xfb\xe0\x3a\x0f\x2e\x79\xda\x77\xe1\x20\xf1\x9e\xeb\xa3\xd5\x68\xb3\xef\x47\x40\x32\x29\xb1\x0f\xd6\xf4\x3b\xe7\xd8\x81\xa4\x65\x35\x9b\xb0\x95\xe4\xb3\xa0\xff\xdd\x76\x66\x43\x8f\xbb\x43\xd3\x4f\x9f\x4e\x5f\x79\x05\x64\x0d\x25\x7d\x5a\xa3\xcd\xcc\x5c\x02\x02\x47\xc5\x5d\x65\x2e\xec\x1f\xa8\x68\x6f\x33\x90\x0c\x53\xbe\xba\x76\x15\x37\x85\x81\xd7\xb5\x12\x33\x66\xe9\x2d\xa9\x24\x63\xb2\xde\x55\xdf\x9e\xd9\x4d\x6b\xf3\x63\x9e\x4e\xd6\x89\x7a\x66\x3b\x17\x05\xd6\x11\x87\x64\x35\xf8\x3c\x82\xb0\x72\x8c\x2e\xde\xb1\xc4\x7b\x32\x76\xdd\xec\x66\x35\x96\xfb\x9a\xd9\xd2\xed\xb7\xcf\xac\xb7\x13\xb6\x07\x64\x25\x88\x57\x10\x69\xc6\xca\x93\x6d\x69\xa6\x71\xe2\x14\x3e\x95\x1d\x4b\x79\x20\xed\x11\xdf\xd0\x4c\x35\xa0\x21\xae\xe2\xe8\xdc\x1e\x07\x92\xea\xe6\xe2\x3d\x91\x7d\x47\xe6\xf5\x2d\xd9\x26\xd7\x1a\x90\xd4\x72\x31\x9e\xb3\xe7\x81\xf3\x8d\x34\x43\xd1\x26\x07\x5c\xf6\xbd\x21\xbb\x4d\x20\x69\xc2\x4d\xb0\x5d\x0b\xb2\xe1\xeb\xb5\x9b\xbd\xd5\x53\x8c\x27\xd5\x22\xe7\x5d\x3a\xfa\x8e\x3f\xd0\x46\xee\x01\x5f\x9c\x49\xf3\xe6\x6c\xba\x6a\x64\x66\x25\x24\xdb\xf4\xf6\x7d\xe1\xd4\xee\x08\xad\x1a\xc4\xc0\xe5\x26\x2f\xc8\x54\xe7\xbe\xf0\x44\xbb\xb3\x2b\xf3\x49\x8e\xde\x82\x53\xde\x4a\xc1\x59\x67\x8f\x36\x09\xb5\xbe\xad\x76\xc7\x4d\x24\x7a\x79\xe8\x03\xa3\x4d\xee\x3a\x10\x57\x29\xfe\x0b\x9e\x19\xc4\x5d\xa1\xf5\xdc\xc3\xa9\xcf\xd9\x88\xe1\x54\x2d\x90\x86\x61\x93\x20\x9b\x6b\xe7\xb9\xc1\x46\x0c\x7f\x11\x5b\xed\xec\x1a\xdc\xf7\xc4\x64\x25\xc6\x93\x19\xa0\xd5\x11\x90\x8f\x1c\x4f\xe2\x73\x90\x81\xa4\xcc\xe0\xe6\x74\x32\x4b\x9c\x85\xb6\xd3\x57\x8e\x78\x4f\xa6\x3d\xb4\xe4\x8e\x8a\xea\x37\xc7\xc3\xae\x74\x8d\xeb\x70\xda\x00\x7a\x05\x94\xa5\x9b\x9a\x40\xce\x65\xd0\x80\xa4\x38\xb2\x94\xb0\x6d\x4c\x70\x34\xdc\x81\xac\x37\x0e\x48\x22\x67\xe6\xbd\xe9\x4c\xc8\xf4\x69\xcf\x0c\xbe\x68\xba\x8c\xea\x88\x36\xbb\x38\xdd\x40\xbe\x20\x02\x12\xff\x14\x6d\x2e\x74\x64\x55\x8a\x2b\x3c\xd6\x59\xa3\x4d\xa6\x1a\xb0\x60\x0d\x73\x22\x13\x48\x01\xcb\xf4\xa2\x2a\x8e\xad\xb1\x4a\x92\x6d\xda\x15\xef\x09\xb1\x0b\xd7\x9a\x64\x9b\x8e\x4f\xea\x5e\x76\x93\x04\xb3\x1c\x4d\x85\x67\xc6\x7e\xd8\xc1\xd1\x06\x57\x07\xc7\x74\x7c\xc9\xa9\xb5\x87\xde\xd1\x15\xf4\x6a\x5c\x5d\x70\xc3\x77\x40\xd2\xa0\x83\x3d\x4e\xa3\xdf\xc0\x5d\xe7\x94\xf8\xbc\xb7\x9c\x82\xbe\x00\xc9\x3f\xb6\xf2\xa4\xae\x04\xbc\xb9\xb7\xb3\x4f\xe0\x7f\xbf\xed\x24\x86\x11\x77\x47\xc6\xba\x06\xa4\x94\x9f\xcc\xc5\x55\xeb\x50\x4a\x38\x74\xa5\x24\xc8\x86\x73\x4a\xc0\x0d\xbb\x4e\x5d\xae\x90\x0d\x39\x82\x95\xc1\xe5\xf8\x72\x91\x7f\xc8\x9b\x33\xcf\x21\x5d\xb8\xfa\x5c\xc5\xcd\xce\xa1\x2b\x79\x72\xc6\x94\x0e\xbf\x12\x43\xe0\x7a\x73\x2d\xd6\x5a\xce\x5e\x03\x49\x6e\xbf\xec\x46\x08\xe1\x7d\x39\x93\x35\xd7\xb6\xca\xc6\x35\xd7\xe9\xe8\x0e\x4f\x69\xf8\xfc\xb8\x6c\x5c\xed\xb0\x5d\x6f\xec\x36\x13\x48\xd9\xbf\x21\xd1\x6f\x7d\x51\x5c\xb1\xe6\x94\x1b\x67\xc5\x89\x22\x32\xb3\x7e\xdb\x58\x09\x13\xe6\xd0\x95\x06\x4e\x50\x60\xee\x0e\xc8\xca\x59\x7a\x91\x5a\x27\x38\x5e\x05\xab\xb4\x14\xb3\x76\xba\xda\x42\x9b\xbe\x0f\xf3\xf2\x7e\x6f\xcf\xf3\x7c\xc3\x18\x97\xd3\x59\x49\x91\x3a\x1c\xac\x52\x6a\xfa\x36\xf7\xc5\x79\x34\x6b\x93\xa2\x1b\x79\xee\x5e\x01\xc9\x79\x3d\x05\x64\x75\xfe\x04\xd2\xf0\xe2\x0f\xc7\xb8\xcc\x4d\x89\x50\x0c\x47\xb2\x64\x67\x7f\x3a\x90\x7c\x60\xc5\x0b\x0c\xc7\xb5\x34\x7b\x3b\x8f\xa1\xdc\xfc\xc5\xe1\xd9\x63\xc8\x51\xaa\xd9\x25\xfd\x40\xca\x4d\xda\xf9\xa4\xed\x2c\xfe\xf1\xa4\x44\x78\x91\xc5\x31\xc8\x2e\xc7\x5c\x92\xb3\x9f\xce\x09\x24\xcd\x74\x05\xf2\x11\x1f\x3c\x69\xbd\x5c\x8e\x36\x87\x7d\x64\x20\xa1\x72\x61\x04\x3b\x12\x75\x8f\xee\x30\x93\x9b\xaf\x4d\x0e\x6a\x1d\x01\xc9\x61\x6d\x26\x20\x6b\xb1\x18\xc1\x44\xf9\xba\x80\xa4\xe7\x2c\xd1\xa7\x0a\x0f\x35\xf7\x72\x8b\xef\x2a\xac\xb5\x2b\xd3\xd9\x1b\xf8\x40\x4a\x32\x28\x6e\xea\x40\x96\x20\x02\x52\xe6\x86\xda\x81\x5c\x52\x32\xda\x54\x17\x2f\xf9\xfb\x9c\x53\xc2\xd1\x46\xc3\x95\xe9\x7a\x63\x8f\x94\xcd\x2e\x3b\x50\x60\x38\x74\x25\x3b\xeb\xed\x81\x74\x09\xb4\x68\x93\x9e\x33\x5d\x40\xe6\xad\x18\x41\xba\xf6\xc9\x2a\x29\x74\xa5\xb8\x3c\xff\x18\xce\x58\xe7\xc4\x50\xc3\x55\xeb\x5a\x8e\x27\xc5\xf9\x58\x2f\x7e\x20\x15\xfa\x2c\x1e\x21\x2b\x47\xc7\x3d\x07\x90\xb8\x53\xe6\x92\x5d\x71\x86\xb5\xce\x4e\x02\x14\xef\x89\xf8\xf8\xe2\x3c\x90\xb4\xeb\x39\x03\x29\xfa\x8e\xa3\xe3\xdc\x10\x83\x95\xcf\x44\x10\x16\x20\xe9\xd3\xc1\x3a\x07\xb9\xd8\x9b\xfb\x40\x12\x94\x0b\x73\xd9\x0a\x0c\x4a\x1d\x48\x58\xce\x8e\x59\xb6\x99\x7c\xbb\xa5\x99\xfe\x81\x14\x01\x7a\x17\x20\x25\x39\x6a\x1d\x48\x26\x4f\x4e\x40\xb1\x77\x09\xf8\x29\x19\xa5\xb9\xf2\xc8\x70\x70\x4c\x0e\x6c\x95\x54\x92\x1b\xbb\x59\x70\x1f\x65\x3c\x5f\xc6\x57\xb4\x99\x77\xa4\x17\x05\x1b\x55\x76\xac\xb8\x26\x27\x3b\x8d\x3d\x04\xca\x50\x9d\xc3\x82\x3e\x15\x0e\x53\xcd\xce\x8c\x21\x0f\xa0\x5c\xc1\x9e\xea\x6c\x6f\xb7\x7b\xb1\x7d\xc2\xbe\x0a\xc3\x61\x2d\x25\xf5\x80\x5c\xb8\x0d\xc8\x69\x83\x99\x4b\x75\x78\xd1\xc5\x08\x0e\x75\x02\xe7\xc5\xdf\xd7\x0b\x4c\xae\xae\xfb\x97\xe3\x49\x45\xfb\xd1\x4b\x73\x81\x06\x28\x83\x52\x2e\x64\x47\x9c\x0e\x87\xbc\x94\x31\xa3\x4d\x3a\xe5\x6a\x7c\x69\x0e\x3d\xca\x15\x48\x5a\x01\xf6\xc8\xde\x3a\x2e\x36\x30\x06\xd5\xdd\x07\x7d\x8a\xcd\x3b\xb2\xe9\xb7\x44\xb9\x99\xab\x4d\x5e\x50\x1b\x3d\x0a\x64\xca\xa2\x40\xe6\x18\x8b\xf9\x6f\x66\xc6\x0f\xe4\x10\xd7\x01\x24\x77\xf5\x12\x4f\xca\x9c\xd6\xdd\xa7\x4c\x20\x25\xf3\xf1\xdd\x36\x56\xc8\xb0\x72\x35\xd4\x99\xe2\x49\xe9\x94\xbb\x17\xcd\x4e\x38\x05\x34\xb0\x29\xa3\x72\x70\xcd\x99\x77\xb6\xcc\x01\x30\xe6\x63\x87\x43\x5e\x5a\x90\xe1\x6e\xb3\x1f\x47\xa7\x5b\x03\x74\x31\xba\xc2\x61\x1c\xcb\x35\x46\x77\xa6\x59\x96\x17\x77\x9d\x5a\x80\xe4\xd8\xce\x76\x9a\x87\xbf\x62\x3c\x57\x75\xcb\x8c\xe0\xba\xd7\xdc\x95\x32\x8f\xe4\x99\x03\x52\x32\x9f\x4f\x9b\x0e\x2e\x68\x30\x9c\x0d\x2d\xdf\x40\xd2\x34\x82\xe6\x76\x01\x72\x72\xc9\xe1\x5a\x6d\x35\x73\xc8\x86\xdd\x01\x59\x17\x99\x47\x6a\x03\x41\x87\x2f\x96\x3b\x20\x29\x4f\xb8\x3c\xa8\xdc\x06\xa2\x29\x18\xa7\xdb\x63\xf4\x40\x32\x79\x42\xa6\x06\xc6\x4a\xc6\x33\x4e\x4c\xda\xe4\xcc\x36\xaf\x80\x44\x44\xd8\x15\xe7\xe7\x0b\xb2\xe8\xa0\x1a\x17\xe2\x3a\x90\xb4\xa5\x5c\x48\xe6\xfd\x3b\x04\x46\xc1\x31\x3d\x58\x01\xfb\x03\xb9\x98\xe7\x81\xa4\x29\x66\x6f\x95\xcb\x20\x5b\xa7\x7c\x20\x5d\x9c\x31\xc2\xb6\x1e\xb0\x03\x59\x09\x32\x80\x84\x75\x10\x57\xd7\x73\xbf\x59\x79\xd5\x6c\xaf\x03\x92\xb2\xec\xb5\x0c\x99\x5a\xae\x0d\x97\xa2\xcd\x56\x07\x8f\xb0\x9c\x70\x09\x9c\x58\xd2\xa0\xbb\xd8\xd6\x81\x96\x34\xda\x17\x90\xfc\xf6\x99\xcb\xb2\x03\x27\x64\x78\xe1\x74\x57\x81\x94\x1b\x02\xcc\x5a\xf2\x85\x72\x32\xfe\xe1\x80\x9b\x9a\xa2\x17\xc7\x6e\xc2\x6c\x2c\xbb\xa4\x72\x8a\x1d\x8c\x63\xf3\xeb\xa0\x54\xdb\xe0\x8c\x29\x1f\x60\x99\x2d\x20\x9b\x89\xe3\x49\xb3\x4f\xcc\xcc\xa9\x7a\x59\x25\x67\x0e\x74\x36\x8f\xe1\xa2\x6e\xa5\x83\x3d\xcb\x65\x33\x3e\xd0\xc1\xba\x02\x91\xdc\x36\xd4\xf2\x9e\xfc\x96\xea\x04\x93\x95\x02\xa1\x07\x97\xb9\x9d\x35\x86\x8b\x13\x8b\x0b\xb4\x40\x3e\x4d\xd9\x2e\x78\x07\xf2\xa5\x1a\x23\x48\xcd\x12\xef\xb9\xa8\x31\x2b\xb8\x9d\x67\x24\x46\x5f\x2a\x5c\x51\x03\x72\xf6\x4a\xaf\xe7\x76\xb5\x6e\x76\x65\xdb\xec\x17\xe3\x89\xd6\x35\x28\x18\x85\xd4\xee\x04\xa4\x5a\x46\x50\x45\x65\x76\xaf\x71\x35\xcb\x6f\x29\x9f\x33\xfd\x2d\x51\x7e\x38\xdf\x04\xd4\xdc\x4e\x4d\xc1\xe3\x3a\x99\x7b\xe7\x88\x3f\x5c\x8f\x02\xb4\x73\x0c\x91\xb3\x2b\x0f\x57\x67\xab\x17\x1b\xe1\x2c\x0b\x8d\x83\xf4\x30\xe7\xc3\xe6\xba\x68\x7b\x2c\xa8\x84\xcc\x12\x7c\xa5\x33\x30\x24\xc8\xfe\x83\x52\xe5\xee\x53\x0e\x4f\xb5\x41\x7c\x48\x94\x78\x05\x24\xc5\x3f\xe4\x4d\xe5\xdd\x7b\x7c\x91\x4c\x35\xad\x80\xe6\x4f\x7b\xa1\x42\x24\x6d\x9c\x99\xf0\xc6\x4e\x84\x1e\x64\xd8\x82\x64\xbb\x03\x92\x21\x85\xad\x76\xcd\xb5\x46\x2f\x12\x1d\x5b\x70\x5a\x12\x16\xeb\xcd\xf1\x70\x9c\x50\x83\x6c\x28\x32\xa8\x76\x2e\x08\x27\x27\x4c\x6c\xa7\xeb\xaa\x75\x0e\x99\xab\xa5\xa5\x1c\x90\xbc\x36\xf8\xa2\x97\xf3\x5b\xc4\x93\xba\x1c\x3b\xbc\x8e\x4d\x27\x37\x92\x8e\x04\xc2\x1c\x87\xda\xe1\x3e\x35\x47\x9b\x2e\x01\x08\x28\x35\xc6\xb9\x7e\x95\x39\x30\x0f\x56\xd7\x35\xc6\x43\x9a\x91\xdb\x54\x4f\xf0\x6b\x36\x9d\x5c\x1c\x63\xe7\x24\xb8\x58\x25\x67\x21\x18\xf0\x6b\x6f\xe7\x76\xe6\x9a\x51\x4e\x82\xd2\x20\xbc\x6f\xeb\x39\x63\x74\xe5\x0a\x8c\xab\xe4\xed\x20\xef\x8b\x11\x74\xe0\x1d\xfb\x37\x1c\x8c\xd3\xed\xcc\x76\x20\x67\x4b\xe8\x40\x12\xcc\xbd\xb7\x53\x72\x5d\x71\x52\x80\xe1\x5a\x6d\xbd\x7e\x20\x25\x89\x9c\xf4\x29\xc1\xd5\x79\x0e\x06\x35\xd7\xb8\xac\xe6\xb5\x9d\xd0\x31\x20\x69\x75\x0b\xbd\xb8\x6e\x8d\x2f\xce\x99\x1c\x57\xe6\x7d\x20\xe8\xc4\x1a\xca\xe1\xc0\x92\xec\x6c\x76\x63\x26\x67\x6d\xb3\x5c\x30\x9d\x06\xc0\x9e\xc2\x07\x52\x45\xbb\x8b\xf7\x6c\x5a\xcf\xf4\x29\x7d\x3a\x7c\xac\x43\x42\xea\x60\xd6\xc9\x59\x8b\x7d\x36\x29\xd5\x06\xd3\x30\x95\xbb\xaf\x5a\x83\x7e\x20\x05\x48\x7b\x6f\xa7\x42\xfd\x4b\x67\x25\x14\xf6\x51\x73\xb4\x59\xd3\xdf\x80\xec\x6a\x66\x09\x62\x3a\x2c\x7f\xb2\x2b\xb7\x13\xb1\x9a\x25\x9b\xf2\xb6\xea\xc8\x67\x0e\xc3\xe8\x83\x95\xcf\xf6\x58\x31\x0e\x4e\x65\xcf\x2b\xdd\x27\xdc\x05\xd8\xba\x3d\x64\x86\x03\x36\xaa\xa3\x27\x0f\x24\x85\x28\xfb\x20\xbf\xac\x5c\x19\x2f\x3b\xcb\x35\xe3\x65\x7b\x8c\x0d\xfa\x74\xfe\x95\x0b\xc8\xd7\x1a\xab\xe4\x4c\x77\x8e\x50\x1e\x2e\x88\x56\xb9\xfc\x67\xd6\xa5\xc3\x09\x77\x34\x45\xb1\xa6\xff\x40\x4e\xdc\x50\x80\x64\xac\xfc\x40\x62\x0f\xaf\x80\xe4\x84\xfa\x1f\xe0\x94\x27\x85\xb6\x6b\x0c\x28\x91\x9a\xa9\x15\x3b\x5b\xdf\x01\x29\xb5\x0f\xdb\xa2\x30\x8c\x7e\x33\x6d\x99\x5c\x6a\xbd\x99\xa8\x95\xf4\x23\xde\x53\xb2\x94\x98\x9a\xc3\x51\x7d\x1f\x52\x11\x2d\x83\xbc\x76\x04\xb3\x0b\xd0\x81\x74\xcf\x98\xab\x9d\x15\xc2\x5b\x81\x6c\x1e\x01\x92\x16\xd2\xc9\xce\x87\x83\x24\xba\x93\x44\x0e\x2a\x9b\x35\x16\xd4\xb5\xad\xe7\x60\x3c\x1d\x40\xee\x51\x87\x3e\x94\x11\xa3\xbb\x08\x92\xef\xbc\xa9\xe8\xfe\x32\x99\x27\x75\xc7\x2c\x36\x3b\xf8\xa0\x15\xd0\xbc\x39\xcd\x90\x49\xfb\x74\x3c\x7f\x1c\xb9\x66\xaf\xe5\xca\x93\xf6\xb6\x64\x05\x2d\xb1\x38\x27\xed\x81\xe4\xab\x90\x02\x12\x51\xae\x8c\xae\x03\x98\xf9\xbe\xe6\x8c\x1d\x23\x20\x85\xa0\x98\x10\x4e\x52\x75\x33\x9e\xab\x44\xdb\xdf\x62\x38\x88\xa0\xc0\x81\xce\x6e\x91\xb3\xc6\x7b\x92\x4a\x38\x72\x72\xc5\x6a\x4e\xb8\x7f\x20\x69\x6e\x99\x8b\x6c\x10\xcd\x29\x7a\xc6\xec\xb6\x75\xf7\x80\xcc\x97\x30\xba\xc9\xb7\xaf\xf4\x29\x89\xa5\x42\x6a\xa7\xb2\xbd\x35\x48\xb4\x83\x08\x4a\x83\xd8\xd9\x4d\xcb\x89\xa1\x86\x8b\x74\x65\x27\xf3\x19\x53\x39\xbd\xdb\x05\x2e\x29\x48\xbf\x54\xe6\x69\xa9\xa4\xb2\x9b\xc3\x61\xcf\x1c\xce\x61\x97\x46\x5f\xb8\x73\x90\x75\x3a\xda\x24\xf0\x46\x9f\x52\xaf\x21\x95\x4c\xd7\x69\xb6\xbb\xd5\x70\xa0\x40\x1f\xbe\x82\xe6\x54\x58\x77\x83\xdc\x4c\x27\x6a\xe2\xfb\xa4\xdb\xef\xe9\xf3\xa4\x03\x88\x13\x90\x5d\x52\x03\xd2\x05\xf1\x81\x4c\xc2\x3c\xcf\x69\x97\xbf\xe8\x53\xea\x84\x01\x5e\x2f\x8b\xdb\x9c\x80\x65\x45\x0e\x58\x67\x1d\x3d\x52\xd7\x54\xe6\xec\x1c\x84\x77\x2d\x9b\x27\x3b\x90\x1d\xba\xdc\x8b\x3c\x87\xea\x0d\x46\xda\x57\xe8\x86\xa0\x99\xab\x9d\x8c\xe7\xb0\xf5\x20\x6f\xce\x9c\x3d\xe2\xbd\x69\xcf\x64\x8f\x2e\x1f\xfb\xee\x50\xa7\x03\xc9\xde\x73\x03\xb9\xee\x09\x67\x9a\x6a\x42\x25\x20\x67\xbb\x08\x48\x72\xb2\xa5\x3c\x6a\x0b\x5d\xe6\x7f\xe7\x43\x8a\x9c\x09\x0e\x3e\xb4\x9b\x77\x8a\x36\xe5\xbd\x83\x64\x2a\xcb\x75\xae\x7c\x91\xec\x05\xb5\x43\x0b\x9c\x5a\x2b\x30\x44\x29\xb2\x5a\x86\x12\x3d\x2d\xad\x59\x72\x9c\x2e\xc9\xdb\xb8\x12\x9e\xae\x6e\x09\x95\x7a\xba\x64\x17\x38\xff\x34\xcb\x79\xfd\x07\x88\xf2\xcb\xd9\x9f\x2c\x92\x4d\xe7\xba\xca\x1c\xea\x17\xc9\xe6\xbc\xbc\xf0\x72\x2c\x1a\xe1\xd9\x85\xf7\x74\x90\xb2\xf5\x41\x2e\x24\xd3\x33\x13\x95\x42\xbd\xcc\x3b\x20\x09\xe6\x1c\xb9\xb7\x5d\xcd\x20\xf4\xe2\x98\x7a\x06\xed\xc4\x23\x75\xb8\x4c\x17\x68\x69\x85\x25\x7c\xbb\x8c\xa3\x45\xc7\x75\x59\xe7\x6a\x91\x7a\x29\x39\x52\x71\x32\xcb\xb1\xa8\x36\xeb\x43\xbd\x9c\xbf\xd9\xa1\xe2\x63\x5d\xae\xc5\xe1\xbb\x79\x49\x87\xdd\xe0\x9f\xd6\xb5\x9d\x6f\x4d\x5f\xeb\xea\x29\x1d\x3e\x6f\x49\x6b\xdd\xd8\xb2\x25\x1f\x95\x6e\x27\xfb\x03\x29\xd7\xb2\xc9\xfe\x4a\x4e\xb9\xe2\x2b\xcf\x35\x51\x2a\x3c\xee\x4a\xce\x0f\x66\x92\xb9\x12\x19\x2d\x18\x41\x88\x9d\xbd\x9d\xb8\xb2\x3b\xae\x6c\x2c\xf3\x56\x9f\x27\x95\xac\xde\x59\xdb\x0e\x64\x17\x7f\xe6\x82\x17\x31\xdf\x20\x63\xa5\x93\xac\x8c\x25\xbd\x78\xad\x8d\x36\xd9\xb3\x5d\x0e\xf5\x40\xb2\x2f\xb3\x82\x72\x81\x6f\xf0\x8e\xcb\xa1\xb8\xae\x3c\x7d\x20\xf9\xab\xb2\x82\xd6\x61\xdf\xde\x4d\xfb\xbc\xf7\x18\xc1\x9e\x35\x37\x33\x93\x46\xbb\xc2\x3b\xda\xe7\xbd\xbb\x7a\xe0\x81\x9c\x91\x8f\x5e\xc4\x1f\xda\xb2\x3f\x96\xf4\xcd\x19\x8c\xc4\xcb\xbd\xf2\x64\x26\x8f\x59\x40\xca\xe4\xc7\x6e\x12\xf0\x5a\x02\xaa\xe2\x71\x33\x90\x6c\x25\xec\xad\x62\x5a\xab\x7d\x70\x0e\x24\x85\x05\xdf\xe0\xc4\x49\x37\x78\xe6\x02\xb6\x48\x4f\xf6\x8e\xaf\xf6\xa0\x1e\x4b\x79\x83\x6b\x8e\x3e\x65\xfa\x72\xc5\xf8\x03\x59\x49\xe7\xf7\xa4\x37\xae\x17\x7b\x24\x4f\x97\xec\x4c\x70\x83\xfa\x25\xd5\x24\x6c\x89\x27\xab\x36\x72\x1e\x48\x7c\xba\x09\xe1\x22\xe1\xd2\xa0\x4f\xab\xf3\x7c\x8a\xed\x47\xdf\x0b\xbb\xe2\x34\x4a\x8d\xb9\x14\x7b\x27\x74\x7a\xd9\x66\x1a\xbc\x9b\x62\x91\xb2\x9d\x2d\x0f\x24\xf9\xc5\x72\xc8\xaa\x2e\xd7\x60\x1e\x77\x39\x01\x12\x6c\xc9\x32\x73\x83\xbd\x67\xd9\xdb\xa3\x71\x1e\xaa\x2b\x80\xd3\x8b\xbc\xd5\x5b\x02\x97\x9a\x2d\x43\x26\x8b\x4b\xd1\x9a\xf5\x02\xcb\x9b\x5d\xe2\xc0\x48\xc5\x67\x66\x9b\xda\x86\x3d\xd9\x4b\x60\x4f\x73\xbe\x76\xce\x43\x73\x1a\xfd\x04\x24\x95\x9d\xd3\x1a\x1d\xc8\xa1\x40\x03\x48\x16\xa5\x98\x8b\x33\x98\x47\x2f\xdb\x3a\xfa\x68\x33\x3b\xe3\xf7\xa4\x9c\xcd\xc8\x2f\xf6\x2c\xcf\x85\xf5\xec\x24\x66\xf3\xd7\x4a\x21\x5a\x73\xfd\xd6\x25\xee\x3c\x2a\x8d\x9a\x05\xa6\x45\x38\xa3\x6f\x6a\x57\x17\x69\x8e\x8a\x3a\x90\x3c\x02\x2c\xa4\xe0\x3e\xde\x21\x4c\xf6\x86\x40\x3f\xb3\x5c\x2e\xd4\x19\x55\x0f\x24\x93\x0b\x84\x50\x75\x48\xba\xb3\x38\x1d\xc8\xd5\x1b\x18\x5d\x87\x13\xee\x6d\x8d\x69\xfb\x32\x7d\x8a\x4c\xa5\x4f\x9b\xf5\x56\xd1\x8b\x5c\xe2\x20\x6f\xf2\x9b\xc8\xf6\xff\x3d\x90\x53\x75\x33\xba\x8d\x4f\x8d\x3e\xc5\x0d\x17\x8e\xb8\xdd\xce\x31\xa4\xac\xe1\x84\xfb\xa0\x88\x74\xa7\xf9\xf7\x27\xe5\xcf\x19\x73\x31\x2f\xc7\x51\x15\xc7\x54\xed\xc7\x7b\x20\x73\x22\x03\x48\x45\xf0\x39\xc6\x4e\x25\x84\x6e\x6a\x89\x47\xaa\xf6\x7a\x1d\x6b\xba\xc8\xa9\x6f\x63\xfb\x8b\xd7\xc6\x7a\x4e\x11\xde\x0b\x92\x22\x2d\x6b\xed\x29\x9e\x14\x69\xe7\x0a\xb2\xa7\x44\xac\xb5\xb3\xc9\x36\x50\x4b\x7e\x13\xe3\xe2\xc8\x4d\x34\x8d\xd1\xa6\x18\x45\xd0\x75\x42\x60\x02\x92\x71\x26\x46\xb7\xf9\x07\x92\xb2\x64\x26\x1e\x7c\xbb\x8b\x72\x0e\xc8\xf0\x72\xd6\xb6\x1e\x6d\x0a\xf6\x65\xc7\xc4\xcb\xd5\xcc\x78\xf2\x25\xef\xce\xce\x30\xec\x4b\xde\x32\x07\x70\x69\x95\x26\x07\x42\xa5\x36\x6b\x61\xe5\x97\x0d\x92\xac\xd9\x72\x31\xa3\x1c\x6d\x22\xca\x3d\xda\x54\xa3\xba\x45\x9b\x42\x6a\x6b\xf4\x29\x89\x85\xf3\xb0\x1c\x82\x12\x4f\xea\x22\x83\xa3\x5f\x2a\xd8\x99\xd1\x73\x2e\x17\xe5\xbc\x59\xf9\x65\x2b\xfc\xa7\x4d\x76\x86\xce\x17\x6d\x3b\x46\x7a\x5d\x14\x55\xda\x13\xc4\xc7\x05\x3b\x1b\x04\x94\x12\x9d\x1c\xf8\xed\x30\x93\x2b\xda\x9c\x76\x2b\x7a\x51\x12\xda\x4e\x2f\xba\x00\xed\x29\x71\x20\x49\x10\x90\x22\xf3\xb1\x18\x24\xd7\xb6\x32\x0a\x02\xba\x5d\xd6\x9f\x95\xdf\xce\x90\xc7\x37\x48\xe7\xda\xdb\x64\x3c\xd9\x66\x3a\xab\xb4\x97\x63\x37\x07\x90\x9d\xd9\xa2\x4d\x71\xab\x9c\x15\xe9\x6a\xc7\x15\xdf\xa0\x0b\xa2\x73\x01\xaa\x96\x67\x77\xbe\x97\x03\x29\x1b\x37\xe4\x4d\xde\xf1\x75\xde\xf1\xde\x4b\x25\xde\x3c\x17\xf1\xd4\x05\x66\x71\x39\xfe\x34\x4e\x9c\x38\xec\x96\xaf\x68\xb3\x24\x97\x80\xec\x95\xe2\x99\x3d\xe4\xaa\x30\xa2\x17\x49\x02\x71\xe1\x2a\xa1\x54\xad\x25\xa0\x2e\x1a\x12\x4f\xca\xb8\x0d\x26\x8b\x33\x6f\xb0\x9c\xf6\xc6\xcf\xb5\xc6\x08\xb2\x0c\xcd\xfc\x3d\x51\x96\xab\x7e\x4b\x90\xa9\x28\xe6\x49\x37\xcb\x9a\xd4\x68\x73\x02\x67\x96\x42\x1e\x8e\x93\xad\x7e\x60\x06\x30\xa4\x0c\xbc\x1d\x85\xba\x1d\xf7\x9b\xe3\xdf\x86\x4b\xe3\x8c\x0b\xc4\x7e\xba\xa4\x24\x24\xe5\x69\x9d\x2b\x48\xa8\x0c\xbc\x05\x03\xcc\x7a\xc2\xc1\x00\x2d\xeb\x6a\x3b\x90\x12\xee\xa7\x80\xe4\xa2\x06\x51\x76\xce\xaa\xe0\x9b\x9f\x2e\xe9\x0a\x4a\x5a\x6f\xec\x9c\x5c\x23\x9c\xf3\x39\xfe\x2f\x9b\x27\xd9\x5c\xbb\x1c\xa1\x2d\x5d\x2e\x7d\x19\xe4\xf4\x65\xb7\x73\x48\x83\x0a\x61\xd6\x01\x82\x4a\xa7\xdc\x2f\xc8\x14\xce\xf9\xfe\x06\x57\x56\xc9\xfd\x03\xc9\xc2\xeb\xeb\xc9\xd5\x53\xfa\x34\xf2\x6e\xfb\x93\x20\x56\xee\x84\x33\x54\x3c\x29\xef\x04\x1f\x2b\x3c\xcb\xd1\xf8\x52\x4b\xc5\xe1\xee\xc3\xd5\x53\x8a\x8b\x56\x8e\x9d\x1c\x26\xe4\x6b\xc6\x55\x50\xba\xcb\xfb\x1c\x48\xe9\x74\x0a\xe3\x39\x79\xe6\x60\x3c\xa2\x12\xfd\x9e\xf8\xe6\xee\x20\x89\x03\xa9\xb4\xa7\xd5\x5d\xd4\x21\xe1\xe2\xdc\xb7\x0b\xf4\x7a\xcd\xf6\xed\xc4\xaf\x85\x36\x11\x57\xd7\x3f\x3e\x90\xf9\x5f\x7a\x91\x24\xe0\x2c\xc9\xc3\x5e\xe7\x15\xeb\xc1\x76\x2a\x1a\x34\xa9\xfb\xb6\x32\x6a\x06\x24\xfe\x30\xe6\x62\x87\xb5\xcc\xe8\xcb\x7a\x71\xbe\x41\xd2\x5a\x4b\x3c\x89\x47\x33\x6d\xf6\x07\xca\xd1\x26\x27\xb1\x49\x2f\x4a\x95\x84\x82\x6b\x2b\xf9\x69\x89\xb5\xbe\x9d\xd1\xa2\xc5\x7b\xf2\x5e\xfd\xb4\x99\x10\x32\x4f\x61\x5d\x89\x99\x49\x41\x02\xdf\xb5\xa5\x73\xed\x0d\x9c\x90\x5c\x50\x5d\xb6\x6a\xb8\x7e\x49\xa9\xac\xa0\xbd\x52\x4a\x8f\x27\xad\x5c\x88\x36\x6b\x36\x03\x92\x6c\xe3\x6b\xc6\x3e\xf6\x0d\xde\x71\x4b\x03\xdb\xaf\x78\x52\x98\x7c\x7f\xda\x1c\x5f\x3b\x80\x74\xe2\xc0\x3a\x7b\xe3\xe7\xe8\xd3\x92\xf1\xa0\xcd\xf2\x75\xe5\x8b\x74\x55\x06\xf6\x64\x47\x37\x7c\xde\x93\x13\x63\x89\x27\x75\x56\xc0\xd6\xec\xd0\x6d\x76\xc5\x9e\x2e\xe8\xa2\xed\xd3\x5f\x9d\x5b\xfd\x40\x36\xbb\xb3\x12\x24\x16\xf2\x5c\x8a\xcb\x56\x71\xe2\xec\xf7\xe2\x88\xcc\x61\xbf\xfd\xe6\x72\xaf\xc3\x7e\xfb\x0d\x93\xfc\xb6\xa7\x8b\xc3\x76\x86\xbd\xf8\xab\x33\x98\x8f\x5d\x9c\xaf\xdd\xa4\x7d\x17\xc8\xb7\xc7\xab\x4e\x5a\xc1\x5c\xe4\x5d\x52\xef\xef\xb3\xc4\x9d\x47\x5d\xd8\xc5\x13\xb5\xeb\xc9\x98\x01\x29\x53\xd3\x45\xa7\xe2\x1d\x9d\xdc\x63\xb8\x12\x48\xb1\xf7\xf1\x70\x7d\x8f\x7e\xe7\x80\xa4\xa7\x36\x77\xba\x9b\x2b\x57\x58\xd7\xb7\xed\x18\x82\x10\xbd\xad\x49\x75\xbc\xfb\xd8\xf2\xfd\x68\x70\x37\x76\xf5\xae\x38\xfd\xd8\x9d\xbb\x4d\x16\xc6\x15\x36\xb8\x91\xa8\xa9\x11\x1b\xe1\x52\x86\xe8\x08\x5d\x61\x23\xe3\x06\xb3\x49\x9d\x32\x68\x93\xeb\x97\x73\x20\x0c\x7b\x5e\xb7\xc6\x37\xd8\xbf\xa3\x30\x7a\x14\x3d\xa4\x17\x07\x26\x40\xfa\xba\x0d\x84\x90\x0d\x6b\x2f\xe1\x3d\xf6\xd0\xa5\x13\xeb\xa2\x64\xa4\x1d\xc7\x1e\xfb\x4c\x67\x07\xe6\x8e\x4d\x32\xd2\x4a\x2f\xda\x87\xcc\xb1\x72\x8a\xd1\x01\x62\x4f\xdf\xfe\x1c\x0f\xd5\x79\x68\x1d\xc2\x34\x5d\x59\xc5\xdc\xcd\x9e\xce\x11\x7b\xc5\x7b\xf2\xf4\xb6\xc4\xe2\x8a\x10\xbd\x33\xba\x3d\x1e\x6e\x56\x62\xe2\xcf\xc9\x08\x24\x75\x61\x84\x6d\x03\x0c\xef\x39\x5a\x93\x9d\x56\xd4\x65\x73\xba\xcc\x03\x59\x53\x5c\x80\xf4\x7d\xe6\x83\xb6\x2b\x0b\xba\xdc\xce\x70\x31\x85\x82\x2b\x9d\x8b\x29\x54\x6c\xdd\xdb\x69\x3d\xf1\x55\xd8\x4a\xe4\x99\x27\xeb\xb9\x7d\x58\x7c\xfd\xba\x0c\x42\x85\x03\x75\x19\x84\x3c\x47\xbc\x27\x99\xa1\xf2\x9e\x95\x4a\xe0\xe0\x76\x36\x67\xbe\x41\x5c\x5f\x77\x8a\xa5\x41\xa9\x03\x44\xdc\xad\x5a\x82\x19\x45\xc0\x46\x07\xca\xc9\x91\x9e\x33\x0f\xae\x20\x9b\xcf\x2b\x57\x82\x6b\xa8\x57\xc8\xd4\x83\xb4\xac\x0d\xc8\x86\xa2\x80\x64\x28\x02\xcb\x1f\xb8\x96\x0e\x20\x05\xf0\xe7\x80\x54\x87\xa4\xc6\x7b\x2a\x35\x74\xc5\x7b\xca\x80\x72\x45\x9b\x22\x63\x3b\xa3\xcb\xf1\xac\x7c\x20\x29\x4f\x58\xeb\x87\xf3\x29\x8f\x80\x5c\x2b\x66\x02\xc9\x32\x04\x89\x7e\xf8\xa4\x82\xe5\x32\xd0\xd7\xb8\xd6\x1e\x38\xa5\xb1\x12\x22\x99\x68\xf3\xf7\xc3\xbe\xf9\x31\xba\x8b\x66\x71\xc6\x94\x54\xb4\xe3\x27\xb5\x9f\x2e\x49\xc6\x35\x63\xc6\x0e\x57\xb3\xed\xbc\x26\xe9\x03\xd9\xbe\xe4\x11\x9e\x2e\xd5\x06\xb6\x3e\xad\xd1\xb6\x9a\xd3\x05\x13\x4a\xe1\xaa\x7c\x4d\xe3\x59\x03\x92\x57\x3d\x67\xf3\x65\x83\x2b\x2b\xff\x92\xcc\x80\x97\x0f\x1e\xdb\xa8\x36\x36\xe9\x39\x3f\x6d\x72\x78\x60\x95\x5c\x47\x1c\x2b\x00\xa5\x07\x52\xff\x9e\x53\xb6\xe3\x77\x49\x90\xc5\xb7\x53\xf4\x40\x6e\x70\xe7\xae\xd1\xe6\xd8\x6d\x0f\xaf\xb2\xe2\xe5\xca\x01\xc9\x10\xc6\xbd\xa6\x04\x99\x39\x3e\xfe\xed\xcc\xaf\x16\x36\xa8\x1a\x10\x3c\xe0\x1b\x55\x3f\x6d\x16\x0f\x5b\x40\x2e\xed\xc9\x08\x4e\x9e\xc9\xf2\x62\x93\x87\xb7\x7a\xdb\xff\x57\x47\x7c\xda\x65\xbb\x7b\xf4\x49\x7d\x01\x3b\xc8\x1d\x48\x7c\x57\x8e\x27\x4d\x4e\x6f\x20\xd5\xc1\xfd\xf4\x22\x63\x90\x14\x32\x07\x52\x25\x6f\x21\xda\x74\xed\x81\xee\x52\xb0\x07\x92\x49\x50\xdc\xcd\x74\x25\x82\xee\xf4\xe6\xd3\xfe\xdb\xdd\x37\xfc\x74\x5d\x82\x3c\x63\x74\xad\x99\xf5\xc6\xf3\xe3\xdb\x1d\x4f\x3a\x3c\xbb\x01\xe9\x6b\x75\xa7\x4f\xca\x12\x58\xf3\x37\x5d\x7a\xa0\xe6\xcf\x7b\xce\xf1\x70\x01\x39\xd2\x91\xf7\x9c\x31\xe0\xe6\x6b\x9d\xf2\x28\xf1\x0d\xa4\x0d\x67\x3c\x6b\xde\x7b\xbc\xa7\x50\x99\xc4\xf7\x39\x38\x66\xd2\xe6\x28\xc8\xc4\x78\x58\xfd\xe9\x53\x02\xa8\xc3\x3e\x0e\xa4\x74\xae\xf1\x0d\x16\xe8\xab\xdf\x73\x62\xcd\xdc\x12\x90\x94\x35\xa9\x00\x29\x5d\xe6\x9d\x81\xe4\x96\x59\x26\x90\x1c\xd6\x4a\x03\x12\x2f\x7e\x57\x20\x1d\xd5\xe4\xaf\x75\x51\x04\x27\xbe\x9a\x2e\x8a\xd0\x67\x3c\xe9\x22\xff\x17\xe3\x39\x40\x3a\xd1\xa7\xb5\xcf\x57\x40\x32\x68\xb5\x78\x4f\xc6\xed\xf8\x06\x65\xd6\xbb\xd9\x5b\xd7\x6d\xbc\x63\xf4\xe5\x9c\xde\x8c\xee\x74\x48\x39\xda\xa4\x6c\x8b\x6f\x58\xc6\x6b\x56\x42\x8a\x80\x11\xdf\xee\x88\x45\x30\xd2\x9e\xf3\xae\xc1\x32\xed\x2b\xdf\x9c\xb0\xfd\x40\x8a\x69\x4d\xcc\x45\xf2\x60\xfa\x3c\xa9\x20\x10\x70\xc2\x9e\x19\x8e\x4e\x9b\x2e\xe5\x50\x6a\xec\xc3\x36\xcb\x12\xbd\xa8\xe0\x14\x67\xe5\x26\x2c\xa2\x01\xc9\x1f\xe1\xbe\x80\x74\xe5\x5d\x01\xc9\x8e\xc2\xbe\xcb\xff\xbe\x3b\xc8\x65\xe2\x63\xef\x88\xda\x03\x39\x67\xcd\x04\xb2\x6c\x1a\x4f\xea\x6b\x87\x67\xa6\x2c\x3c\xcd\xc9\x4f\x0f\xe4\x6c\x92\x3c\x69\x0f\x12\x70\xf0\xc6\x0e\x36\x80\x54\x2f\x25\x07\x24\x77\xce\xf8\x06\xb3\x87\xec\xa6\xe4\xac\x6a\xd6\x63\xda\xc7\x3e\x3b\xca\x73\x0e\xa7\x03\xb5\x02\x6f\xe2\x71\x6f\xcf\x93\x03\x55\xed\x6d\xb4\x29\xee\x18\x5c\xb2\x05\xe4\x48\x95\xdf\x10\xe5\xf3\xa8\x6a\x5c\xf0\x81\x12\x44\x8a\xdd\xc7\xa7\x1d\xe9\xf3\xe4\xf8\xdb\x94\x91\xd8\x4e\x09\x14\x79\xb0\xf1\x4a\xed\xd3\x5c\x53\x63\xe2\x2c\x6f\x4d\xce\xb4\xb3\x7c\x1d\x6c\x27\xc5\xd7\xfb\x04\x92\xeb\x3c\x07\xd0\x05\x11\x6f\x46\x77\x61\x76\x1b\x1d\x0f\xe4\xbc\x18\x1e\x4f\x09\x32\xcb\x0d\x31\xa8\x84\x4c\xdc\x40\xd6\x77\x4d\x20\x69\xe2\x46\x3c\xe9\x0a\x22\xd1\xa6\x9c\xc9\xa3\x01\x29\xb1\x09\x9b\x5b\x15\x29\x37\xd8\x16\x07\xbc\xc6\x91\x73\x85\x06\xeb\x24\x0f\x24\xb5\xc0\x88\x27\xe5\x29\xcc\x46\x38\x45\xa5\x75\xd8\x07\x72\x4d\xb9\x0c\x24\x17\x99\x64\x48\xa6\x8c\xda\x5a\x40\xb2\x83\x43\x44\x9c\x78\xf2\x66\xe3\x1b\xde\xdc\x1e\x41\xd5\x1b\xaa\x93\x2a\x4d\xbb\xb2\xf7\x1b\xe4\x55\x72\xc9\x56\x20\x0d\x0d\x27\x2a\xfa\x34\xa9\x2d\x17\x90\xaa\x92\x70\x00\x9d\xb0\xc7\xfc\xe8\x81\x24\x2c\x5e\x8c\xae\x24\x4e\xe6\xfa\xa6\x7d\xd0\xeb\xe0\x4a\x70\x00\x6a\xba\xa3\xcd\xbb\x92\x81\x64\x44\x62\x5d\x24\xcd\x94\x96\xe3\x49\x79\xee\x42\x24\xed\x09\x62\x4f\xda\x03\xd9\xfb\x98\x11\x5c\xf5\x21\xf3\xa4\x18\x83\xc4\x75\xd8\x9d\xc5\x85\x43\x26\x2f\xf7\xd6\x39\x64\xf2\x19\xa9\xa9\x44\x9b\x0c\xa7\x90\x30\xc9\x44\x6d\xc4\xac\x97\x49\x18\xb3\x16\x43\x71\xc7\xcc\x08\xe1\x35\x24\xef\xf1\x92\x79\x72\x38\x78\x9a\x2b\x4f\xf5\xdc\x7b\x01\x7b\xf0\x2c\xbf\x27\x90\x05\xe5\x06\xa4\x10\x7a\x4e\xc0\x60\xad\x13\x90\x7d\x46\xe8\xd3\xf5\x96\xd9\x77\xa7\xc5\xa9\xac\xa0\xfc\xbe\x73\x65\x1f\x2c\x13\x75\xce\x83\xb2\xdb\xe4\xc6\x29\x96\x25\xa3\xda\x24\x78\x20\x79\x7b\x04\xe4\x64\x96\x60\xf9\x74\x44\x1f\x18\x32\x97\x8b\x3c\x05\x24\xbf\x02\x88\xb9\x8a\x1b\xb4\x0c\x3b\xb3\xe4\xa8\x78\x73\x3a\x96\xe3\x10\x8b\x57\x62\xc9\x45\xad\xb0\x0f\xf6\x0b\x69\x3d\xda\x6c\xfc\x0d\x48\x8a\x54\x2e\x08\x57\x62\x6f\xd1\xa7\x0b\x5c\x45\x2f\x96\xd6\xb8\xc8\xe4\x6b\x5d\x63\x5d\xac\xe9\x6f\x50\x29\x49\x4f\x2d\xd6\xc5\x7a\xf8\xce\x25\x60\x9f\xe9\x04\x31\x97\x97\x48\x2d\x5c\x2c\xd2\xa0\x77\xd7\xa5\x9c\x2e\x7c\x90\x5b\xb4\x6d\x47\x4f\xfa\x3d\x6b\xad\xe3\xc2\x7d\x98\x25\x1b\x01\x89\xec\x8f\x6f\x39\xe5\xf3\xa8\xbc\x6c\xe7\x05\xa4\x40\x4b\x88\x88\x04\x9f\x72\x43\xf7\xad\x7d\xee\x35\x20\x1d\x08\x3e\x57\x75\xe3\x5a\xeb\x01\x15\xb5\x4d\x20\xc7\xec\x33\x82\xb4\xd6\x03\xbe\xeb\xe1\xd2\x90\x6c\xc4\x43\xc1\x00\x9d\x3b\x1d\x81\x09\x1e\xf7\x49\xf2\xcc\x0e\x24\x2f\x54\x10\x54\x09\x66\xf2\x80\xbc\x3d\x7d\x58\xe0\x6e\x14\x28\x5b\x07\xfc\xe8\xd3\xe5\x18\x19\xdd\x55\xdd\x32\xbc\x87\x02\x5e\x73\x8b\x36\x71\x76\x19\x6e\x51\x69\x1a\xdb\x60\x3b\x1d\xc6\xda\x98\xd9\xcb\x65\x6c\xe0\x1d\x5d\x36\xbd\xb2\x82\xd6\x22\xdf\x90\x30\x57\x60\xeb\x5c\x80\xaa\x59\x90\x2b\x28\xa9\xa4\x8d\x3d\x78\xf8\x97\x25\x08\xe6\xf2\xb2\x5e\x1c\x72\xaa\xfa\x68\x6d\x40\x8a\xde\xce\xa7\x5c\x6e\x20\xf9\x3e\x73\xb1\xbc\x6d\xfa\x02\x7d\x9c\x9c\xa5\xf2\x45\x6f\x69\x44\xe1\x44\xec\xe3\xdb\x1d\x20\x3d\xa7\xa3\x2e\x87\x77\xda\xe9\xf0\x6b\xf1\xb1\x72\x92\xfb\xe6\xa0\xd6\xe9\x84\xf4\xdd\x61\x42\xf3\x93\x82\xde\x4f\x26\xc7\xdb\x99\xd0\xe3\x9d\x6b\x15\xcc\x9c\x8e\x6d\xb4\x1b\xd3\x81\x5c\x61\x4e\xf3\x9c\xba\xba\x1a\x47\x60\x3a\xee\xca\xf9\x26\x0e\x24\xa5\x92\x0f\xd2\xf4\xd5\xe5\x98\xc8\xe9\x9c\xc9\xd9\xa5\x3d\x27\x8e\x8a\xce\x99\x31\xa7\xf3\x31\x58\x53\x3c\xed\xa8\x58\x9c\x6f\xe2\x40\xca\xd4\x6d\x42\x3f\xa5\x5e\xcb\x48\x09\xb3\xe1\xc2\x45\x2f\x4e\xb3\x79\x31\x82\x30\xf9\x77\x48\x36\x79\xd6\x2c\x8a\x12\xd1\x26\x11\xde\x59\x92\xa7\xb3\x24\x57\xab\xf3\xa6\xb3\x1d\x57\x87\x1b\x1c\x48\x01\xee\xc6\x56\xf2\x1b\x37\x56\x42\xae\x89\x19\x72\x3a\x95\x57\xa1\xdb\x23\x60\xda\x51\x31\xdb\x3d\x6f\xce\x6e\x57\x56\xe3\xa0\xf3\x1b\x57\x4b\xa3\x73\x0e\xae\x27\x7f\x11\x19\x86\xcd\xfb\x4f\x87\x10\x15\x76\xcc\xd9\xd7\xec\x10\x3b\xa7\x6a\xf6\x94\xc9\x4a\x60\xdc\xbe\x79\x4f\x6a\x08\xf8\xd1\xa9\xeb\xa2\x3b\xf3\xc6\x74\xf6\xe1\xde\xf8\x22\x29\xdb\xaa\x0b\x92\x1e\xc8\x79\x8a\x1b\x90\x6c\x10\xbe\x1c\xa7\x32\xac\x65\x9b\x5f\x67\x38\x1c\x32\x6b\x3b\x15\xda\xf0\x36\xed\x54\xd8\xe1\xb0\xa7\x6b\xef\x38\xfd\xfe\xb4\x8b\x61\x6d\x31\x17\x2b\x72\xc0\x25\xa7\x5b\x43\xbe\x9e\xd3\xf1\x76\x66\x60\x48\x61\xec\x9a\x3d\x07\x72\x3c\x28\x90\x55\x8b\x83\x79\x6e\xbf\xc7\x5c\x24\x2b\xb6\xe8\x45\x51\x18\xf9\x8a\xf7\x64\x2a\x6d\xe9\x5b\xa2\xec\xdc\xc7\xc5\x36\xcf\x03\x49\x23\xe3\x63\x3c\x6d\x4d\x77\x56\xd1\xe9\x6c\xc7\x25\x96\xd7\x9e\x91\x37\x1b\xaf\xc8\xa7\xda\x4c\x86\xe7\x72\xed\xe7\xcf\x7b\x22\xb5\x26\xa7\x73\xd9\x83\x13\x62\xe0\xac\x6d\x77\x89\xb6\xa1\x68\x2a\x7a\x91\x20\xe2\x24\xdb\x07\x52\x7a\x40\x96\x50\x37\x67\xab\x6c\x84\x2d\xed\x76\x91\x39\x90\xb4\xa5\xa0\xb9\x4b\xba\x66\x88\xc8\x72\x2e\x8a\xc4\xf7\x39\x0b\x2d\xa3\x4b\x5f\xd9\x2a\x87\x65\x63\xc5\xcd\x40\x45\xde\xdc\x05\x48\x6a\x1d\x13\x57\x67\x5e\xee\xce\xa4\x3b\xed\xdd\x99\xed\x32\x76\x20\x7b\x7e\x46\x9b\xb2\xec\xa6\x78\x4f\xdf\xc0\xa1\xb6\x35\xdd\x55\x1f\x0e\x24\xdd\x5b\x02\x72\x6e\x3b\xd6\x73\x9b\xa3\x60\x5d\xb6\x5d\xe9\x38\x9c\xb2\xad\x77\x87\x60\x4f\xe7\x6f\x6e\x08\x53\x73\x3b\xf9\x38\x2b\xbf\x2d\xca\x41\xd0\x36\x5e\x06\x09\x48\xe6\xa6\x58\x17\x29\x95\x12\x68\xbe\x5d\x50\x8b\x63\x25\xfb\x79\x71\x84\xe4\x81\xb4\xba\x35\x9e\x94\x86\x12\x7c\xd9\x0e\xbf\xb1\xc4\x62\x2f\xd4\xda\x38\xf0\x2a\x2f\xdb\x3a\xab\xfb\x10\xbf\x0d\xef\x38\x1f\xbe\x74\x20\x14\x0f\xe7\xc5\x60\x66\xb2\x8a\x97\x06\xa1\x97\x1d\xbc\x5d\x77\x3c\xa9\xd0\x87\x16\x6d\x8a\xc2\x8a\x36\xc9\x60\x36\xfb\xcd\xf9\xd0\xf7\xe5\x18\x4f\xc4\xa7\xde\x01\x49\x3f\x9a\x99\x35\xce\x6c\xde\xbf\xa7\x5d\xf0\x38\x01\x4f\xbb\x8c\xf1\xed\x62\x21\x4a\xe5\xdb\xc9\x27\xf7\x81\xfc\xb5\x15\xc8\xdc\x5b\x03\x92\x0f\x0e\x38\xf8\x74\x7e\x19\x88\xb2\x35\xa2\x1d\x2c\x7f\x3a\x07\x35\x7b\xab\x12\xb2\x0d\x95\x56\x78\xcb\x42\xec\x9e\x2e\x32\x51\x99\xb5\xbd\xc0\xcd\x42\x38\xef\x73\xef\x5c\x56\x2f\x6b\xfa\x59\x09\xe5\x9a\xcb\xae\xdf\x37\xe7\x4b\x21\xc3\x93\xef\x93\x5e\x35\x23\x3d\x4d\x85\x33\xe5\x59\xe3\x49\xab\x91\x3c\xba\xb2\xbd\x75\x14\x1d\xf3\x3d\xec\xea\xe9\xfd\x53\x90\x52\x6f\xe0\x92\xb3\x39\x67\xce\x83\x72\x2d\xb7\x0c\x26\x8b\x85\xa8\x71\x71\xda\x3d\xf6\x86\x4e\xbc\x75\xa5\xdb\xff\x68\x2e\x2b\x2f\x87\x25\xab\x25\xe5\x65\xb7\x02\x76\x3a\x63\x73\xfb\x1d\x92\xc7\xb6\xbf\xcf\x6e\xb5\xdd\x41\x20\x07\xd2\x19\x6b\xd1\xa7\x74\xe6\x77\xb4\x49\x7a\xca\xd1\x8b\x94\x58\x66\x28\xd6\xe5\x1a\x8b\xfe\xa2\x25\x75\x65\x4b\xf1\x9e\x7c\x62\xe6\xfd\x6d\x42\xa2\xf3\xa8\x34\x6a\x77\x74\xe3\x84\x28\x7c\x92\xeb\xaf\x5e\x74\x6a\x47\xfa\xf8\xa4\xed\xd2\xa5\x4c\xc6\x69\xed\x7d\x38\xd7\xe5\x3a\x6e\x8d\xf7\x6c\x7b\x36\x31\xb0\x8f\x6f\x66\xe3\xed\xe3\xdb\x9c\xc2\x7c\xe2\xe3\x3b\x18\x21\x59\x8c\x65\xf4\x64\x8e\x97\xa5\x4f\xce\xa0\xe1\xe3\xb1\x92\x0b\xc1\x5b\x68\x5f\xce\x5a\x01\xef\xbf\x92\xcb\x1e\x95\x80\x4c\x32\xe9\xd3\x5c\x9f\x39\x26\xa7\xab\xee\x48\x02\xcb\x3a\x26\x67\x1f\x3e\x90\xfc\x2b\x7d\x38\xd7\xed\xbc\x5b\x3e\x1e\xcb\xb6\x6e\x27\x4a\x3c\x90\x1c\x7b\x7c\xab\x2e\x65\x59\xa8\x0e\x06\x98\xe1\x03\xcb\x17\xd9\xeb\x95\x63\x65\xaf\xd7\xea\x24\x32\x07\x92\xa6\xdf\x87\x73\x65\x87\x83\x5b\x82\x58\xae\xeb\xe2\xd8\xb1\x49\x86\x68\x67\x24\xf9\x7f\x19\x7b\x93\x64\x8b\x79\x1d\x5b\xaf\x9f\xa3\xb8\x43\x10\x49\x89\x45\x44\xc6\x9d\x0b\x49\x6d\xb9\xe7\x86\xe7\xdf\x70\x10\xdf\x5a\x27\xfd\xc2\xf6\xfb\x6f\xeb\x10\xd8\x3a\x2c\x40\x00\xac\x50\x8c\x19\xef\xd2\x95\xf0\x52\x07\xe2\x8d\x5c\x3d\xc3\x6d\xa7\xfa\x4b\x9e\xa9\xe8\xcb\xcd\x33\x95\x68\x76\x73\xfc\xe5\xaa\x61\xc6\xdb\xf3\x33\xc4\xbc\x24\x24\xbd\x35\x9b\x61\x57\xdb\x30\x35\x1b\xb2\xa4\x6d\xae\x25\x96\x58\x8c\xcb\x0e\x14\xcb\x0c\xfb\xbc\x49\x5c\x38\x62\xc6\x1d\x28\x9e\x51\xd5\x97\x88\xb0\x76\x57\x51\x90\x14\xa4\x5a\xf2\x66\x5c\x46\x95\x21\xfe\x24\x05\xe9\x85\xf2\x99\x0f\xaf\xe2\x12\x88\x87\xab\x0d\x51\x9e\xcb\x28\xa2\xd2\x1d\x28\x0c\xe4\x86\xbf\x0c\xef\x50\x16\x40\x59\xb6\xe2\x1a\x70\x20\x28\xd1\x05\xbd\x71\x2f\xce\x18\xb4\x6f\x56\x5f\x78\xb2\xf6\xd8\x2b\x9e\x80\x2c\x09\x33\x76\xd1\xcf\xb8\xfc\x65\xb8\x05\xb3\x6f\x26\xb6\x73\x23\x78\xc1\x20\xb6\x73\xc3\xfc\xf0\x40\x18\xc8\xf9\xcb\x08\x02\x84\x8a\x26\x62\xf3\x3d\xc4\x4b\x71\xad\x53\x75\x8d\x34\x75\xad\xd3\xfc\x5b\x58\xb2\xb3\xfc\x12\x95\xb9\x58\x36\x1b\xee\xe0\xb7\xff\x2f\xf8\x8c\x0d\x1a\x31\x9a\x9f\xec\x3a\x83\x07\xad\xc2\xda\x22\x9a\x9d\xfa\x12\x17\x2b\x43\xdc\xda\x89\x25\x7d\x1b\x8a\x67\x31\xc9\x74\x44\x50\x6e\x38\x99\x9d\x7d\x5d\xd8\x1b\xb3\xaf\x9c\xf1\xb8\x7d\x13\xac\x7e\x60\x84\xda\xb2\xb8\xbc\xeb\x52\x02\x68\x60\x04\xa7\x39\x8a\xe0\x5d\xed\xd1\x3c\x70\x91\x83\x1f\xf0\x20\xa2\x71\x1b\x52\xae\x61\x92\x5a\x30\xd9\x1c\x04\x2d\x6e\x4d\x92\x33\x22\x5e\x08\x8e\x1e\x63\xea\x92\xe7\xf1\xff\x7d\x71\x99\xc8\x68\xb9\xe4\x21\x22\xdf\x81\xc2\xe4\x36\x1b\x0a\x97\x1e\xb6\x56\x73\x28\xd2\x3a\xb5\x4c\x25\x59\xfb\x47\xeb\x8b\x31\xc3\xc3\xbd\x59\x9d\x2e\xdc\x1b\x58\xe5\x26\x7e\x3b\x59\x4c\xb8\xe2\x98\xd7\x34\x40\xfc\xc8\x87\x9a\x27\xe3\x85\xae\xbb\xb1\xd6\x7b\xf4\xac\x32\xd9\x97\x3c\x52\x29\x9b\x23\x92\x94\x79\x38\x64\xd7\x2c\x55\xb4\x31\x67\x11\x53\x84\x61\x5d\x21\xe4\xe7\x81\x72\x28\xd7\x21\x28\x7c\xf6\x35\xf1\x2f\xfe\x76\x52\xa0\x2f\x8e\xe3\x12\x47\xdc\xac\xb5\xfe\x2a\xce\x6d\x55\x5f\x48\x7b\x3f\x92\x6a\x91\x4d\x05\xb5\x90\x64\x51\x0f\x6f\xf3\xa7\xd4\xe1\x97\xa0\x70\x6a\x95\xd2\x62\x9f\xd0\x25\x56\x3f\x12\xca\xaa\x9f\x9f\x1c\xb2\xa1\x04\x0e\xcb\x59\x82\x14\xd7\x09\xa5\x49\x4d\x7d\x4c\x19\xbf\x2d\x1c\x81\x71\xd6\x1e\x2b\xd6\xdf\x87\x7c\x1b\x83\xc8\xaf\x0f\x26\x78\x07\x22\x8b\xdc\x00\x52\xe6\xe2\x0e\xb4\x48\x7d\x59\x05\xe1\x0e\xc3\x6f\x89\x78\xbc\xec\x9f\x56\x22\x0c\x7b\x11\x14\xcf\x8c\x18\x0e\x8e\x55\x48\xad\xcb\x6c\x12\x62\xf4\x21\xac\xe7\x81\xc2\xf1\x82\xe5\x69\xe1\x32\x41\x50\xd1\x21\xc3\x25\x5d\x46\xad\x42\xbc\x09\x76\x22\x8b\xcc\xd3\x64\x48\x19\x04\xf2\xac\xba\xf7\x5f\x24\xe9\xd2\x5e\x67\x85\xc2\x7e\xb4\xab\x5d\xe1\xde\xd0\xba\xea\x0c\xc5\x5b\x74\xa8\x5d\x0f\xb6\xeb\x43\xbf\x4d\x42\x91\x17\x41\xb1\xe7\x2c\x86\xe2\x08\xaf\xf6\xc2\xbd\xa1\xe2\x53\x37\x16\x2e\x05\x6d\xdc\x82\x62\xa6\xd9\x07\x29\x48\xa4\x6e\xc2\x57\x8b\x58\x06\x3a\x91\xad\x46\x62\x51\xd1\xac\xe1\x06\xa5\x59\x69\x0a\x4f\x94\x05\xc5\x5d\x3b\x5c\xbe\xf0\x5f\xd4\xbe\x72\xe1\x4f\x88\x85\xff\xc0\x3e\xe7\xc6\x77\xf3\x1c\x82\xb0\xe8\x68\x82\xc2\xb5\x4a\x94\xd0\x09\x57\xf3\x3e\x48\x28\xa0\xd1\x12\x95\x43\x37\xe1\xc4\xe0\xbb\x75\xe7\xba\x66\xcc\x34\xde\x7e\x07\x8a\x47\x63\xce\xc9\x2b\xa2\x72\xdc\x7a\x82\x5c\x61\xdb\x7d\x37\xf5\x73\x62\x1c\xc8\x75\xd7\x9a\x44\xba\xd3\xd8\x27\x7c\x56\xd5\xfa\x0a\x13\x58\xf1\x75\x64\xf7\x69\x43\x63\x58\x2c\xa3\x28\xfa\xb5\x88\xfd\xf6\xe8\xb7\x11\x16\xcd\x2c\x87\x6b\x71\xbe\xe6\x64\xb5\x42\x13\xdd\xf8\xcd\x1d\x08\x97\x25\x43\x71\xed\x78\x19\x0a\xd3\x4b\x8d\x68\xc5\x85\x93\x76\xd8\x2b\x32\xf1\xdc\xa4\x56\x18\x2b\xce\x67\xf5\xe2\xc2\x62\x6d\x96\x12\xf4\xcb\xda\x04\x2a\x65\xa9\xc4\x5e\xa6\x10\x42\x6a\xac\x8d\xad\x3c\xfa\x53\xb6\x26\x18\x4a\x8c\xf5\xf2\xba\xc5\x66\x71\xbd\x64\x32\xfc\x0f\x94\x32\x06\x25\x15\x2b\xd4\xb1\x88\x06\x51\x24\xaa\xb8\x17\xea\x9a\x7c\x71\x98\x7a\x34\xdc\x37\x84\xf3\x16\x53\x90\xcf\xf6\x12\x33\x61\x37\x3c\x92\xa0\x58\xe5\xc8\x8d\x31\x56\x1c\x91\xee\x47\x53\xf6\x23\x67\x08\xab\xff\x8a\x00\xdc\xe5\x11\x2b\x63\xa4\xc2\x4e\x6b\xae\xb8\xf5\x4c\x98\xd6\xcc\x15\x7b\xf8\x41\xdc\x81\xb9\xc2\xae\x20\x61\x3b\x70\xa0\x3b\xa0\x26\xe8\x77\xbe\x8c\xd5\x6a\xae\xb0\x01\x48\xd8\x45\xcf\x15\x7e\x7a\x09\x8b\xdf\x03\xad\x80\x9a\xa0\x7d\xfe\xaf\x19\x7a\xe3\x37\x5a\x8f\x5d\x7b\xe2\xce\xfc\x40\xfd\x40\xb1\x4f\x38\x50\xb4\x10\x22\x3e\x57\x5a\xf1\x65\xac\xa3\x13\x8b\xdf\x41\xfa\x9b\x89\xc5\x6f\x4a\x99\x16\xe2\xcd\x7a\xdc\xaa\x33\x22\x14\x24\xde\x89\x0f\x14\xb5\x14\xff\x76\x46\xc4\x6e\x78\x62\x81\x3b\x6e\x51\x22\x2c\x70\x13\x77\x76\x73\x45\x84\xb5\x81\xdb\xce\xc4\xea\x75\xdc\xa2\x44\xbc\x05\x27\x12\x03\x4c\x2c\x5b\x13\x41\xfc\x27\xb6\xac\x89\x20\x47\x07\x8a\x3a\x1f\x5a\x0f\x6f\xb8\x84\x6d\xe9\x24\x7a\xf4\x20\x1e\xd9\x81\x5a\xfc\xc6\xd8\x0b\xf3\x50\x6f\x41\x31\xf6\xae\xd6\x67\x8c\xbd\xaa\x3d\xc6\xd0\xd5\x17\xc6\x50\xd5\xfa\x0a\xba\x74\xb5\x7e\xd4\x7e\x4a\x6e\xef\x50\x77\xe0\x3c\x32\x89\x33\x9d\x92\x66\xec\x66\x44\xad\x0b\x7a\xfe\xfd\xaf\xc1\x03\xda\x24\xb2\x74\x22\x1e\xd9\x81\x7e\xf1\x9b\xff\xef\x3b\xbf\x75\x5a\x88\x93\xc0\xe0\x8a\xe9\x40\x41\xb3\x5e\x04\x05\x95\xfa\x2d\x28\x7a\xad\xf1\xdd\x70\xa4\x46\x14\xb1\xd8\x12\xc9\xf3\xe7\x0a\x2f\xba\x44\x84\x97\x03\xc5\xff\x0d\xea\x8c\xc8\xcb\x03\x0b\xdc\x03\x05\x3d\x47\x15\x74\x78\x9e\xcb\xa1\x03\x45\x9d\x83\x3a\x1f\xf8\x65\x74\x41\x31\xf6\xa1\x5a\xa2\x9f\xc4\x26\x9c\x2c\x4f\x29\x8b\x12\xf1\x80\x3d\x88\x3a\x7d\xa0\x12\xbf\xd1\xb3\x30\x8f\x4d\x24\x3e\x38\x50\x50\x49\xf2\x17\x9e\x79\x29\x8b\x93\xe3\xde\x7f\x3c\x9a\xa3\x1a\xfc\x92\x25\x2b\x35\x7a\x96\xc5\xd7\x71\x47\x9f\x50\x5a\x73\xd5\xa3\x19\x12\x96\x35\x93\x45\x2e\x71\x59\x7a\xa0\xe8\xb5\xa4\x23\x76\xfb\xa3\x8a\x77\xdb\x88\x7e\x96\x4b\x50\xb4\x57\x18\x43\x04\x18\x4e\x78\x37\x1c\x28\xea\x2c\x6a\x61\xf1\xa5\x5a\x60\x0c\x85\x16\xc2\x94\x75\x54\xd1\x2c\x72\xa9\xa4\x2c\xa9\x0a\x67\xb8\xd1\x44\xc1\x78\xe0\x4d\xc4\xb9\x9c\x2b\x32\xab\x24\xc2\x36\xcd\x15\x0f\xb5\x89\xeb\xd8\x03\x1d\x9e\x6f\x92\xe2\x78\xb6\x4d\xf9\xb9\xfe\x49\x29\x4f\xac\x5e\x47\x53\xa5\x71\x14\x48\xf9\x29\x82\xee\xf8\xed\x11\x44\xa5\x55\xd0\x8a\xdf\x86\xa0\xef\x40\x62\x98\xc1\x44\x54\x43\xd1\x51\x89\x6a\x1c\x21\x06\xf7\x87\x07\xaa\xf1\x5b\x16\x74\x26\xbe\xf9\xff\xce\xda\x9c\xb2\x84\x33\x32\x04\xa6\x2c\xf6\x19\x30\x8c\x84\x33\xf2\x97\x8c\x26\x01\x9c\x30\x45\xa7\x96\xf0\x9f\x1a\x5d\x84\x89\x7b\xe3\x94\x25\x48\x0b\x36\x90\x20\xc5\x4a\x3d\xba\x46\xb4\x98\x6a\x09\x4b\xac\xb1\x09\x63\xf9\x89\x2d\x6b\x22\x58\xca\x81\xce\x94\x75\xf5\x2c\xfc\x99\x52\x96\x20\x2d\x26\x49\xa2\x13\xef\xb6\x29\x4b\x74\x16\x2c\x22\x36\xd8\x31\xd5\x45\x02\x11\xef\xb6\x09\x73\xb9\xb9\xe2\xd6\x33\x15\x2d\x3a\x71\xba\x18\x5c\x58\x1c\x28\xc7\x6f\x4d\x50\x39\xbf\x89\x5d\x23\x14\x54\x2a\x52\x29\x61\x23\x3a\x46\x31\x74\x58\x12\x57\xea\xb9\x22\xdc\xd3\x18\x52\xfb\x2f\xad\x6b\x79\x8a\xa8\xbe\xa9\x48\x90\xc2\xa9\x26\x15\x09\x52\xa4\x7e\x4f\x45\x8b\x4e\xc4\xf8\x4d\x44\xdd\x9b\x2c\xb1\x89\x43\xdf\x64\x89\x4d\x45\xbd\x8e\x2c\x72\xa9\x48\x74\x3e\xea\x94\xe8\x44\xa8\xa4\x74\x5d\x8f\x7f\x5c\xf1\x63\x13\xb4\xf9\x51\xdf\x06\x6f\x11\x0a\xfd\x40\x51\xeb\xcd\x98\x3e\x46\xaf\x45\xfd\x0b\xda\x63\x05\xb0\x3a\x4b\x3c\x26\x79\x8b\x30\xb4\x09\xc3\xb0\x85\x19\x63\xc2\x96\x67\x61\xb8\x98\xb0\x21\x59\x3d\xf2\x7c\x27\x4c\x15\x57\x4f\x8c\x37\x96\xab\x03\x1d\x3a\x5d\xe9\xef\xc7\x33\x0c\x3c\x2a\x16\xd6\x7b\xe7\xc7\x26\x30\x5a\xac\x49\xd0\xcb\x8f\x5d\xe0\x2f\x7e\xa4\x03\x11\x6d\x36\x5d\xd8\x83\x1c\xb0\xc5\x8f\x6a\x24\x14\xee\xc5\xca\xb7\xb0\xd9\x4b\xbc\x6e\x2e\xac\xf4\x12\xa1\xf1\x16\x56\x6c\x09\x77\xb6\x85\x6d\x5a\xc2\xb4\xe9\x40\xa7\xc5\x0b\x6b\xa6\x85\x01\x5a\xe2\x91\x7b\x75\x36\x08\x17\xaf\xe3\x0b\x7b\xb4\x44\x0c\x85\x45\xcc\xd7\xf3\xa3\x1a\x61\x06\xba\xea\x89\xa5\xf7\x42\xcf\x2e\x6c\xc9\x0e\xd8\x04\x46\x45\x43\x5d\x08\x3e\xbe\x08\x3b\xb9\xb0\x26\x4b\x1c\x12\x0e\x14\xd5\x0e\xfe\x31\xa2\x13\xa5\x2b\xdf\x74\x28\x5c\xe8\x13\xb1\x9d\x0f\xd4\x03\xe2\x1f\xc3\x91\x25\xf1\xf4\xbc\x08\xbd\x9a\x70\x90\x5e\x04\x3f\x4d\x17\xe2\xb8\x7a\xac\xbf\x89\x1d\xd3\x81\x4e\xe7\x2e\xe4\x71\x11\x0c\xf5\x80\x54\x14\xc7\xb7\x44\x16\xe0\x03\xed\x80\xe8\x40\xf8\xb1\xa7\xab\x08\x0c\xf7\xf4\x84\xfb\xd1\x81\xe2\x1f\x0b\xff\xc8\x72\x79\x97\x7f\x8c\xb0\x7c\x3e\x8d\x36\x6e\x08\xfb\x30\x2c\x11\xe0\x59\xfc\x46\xa5\xb1\x42\x26\x6c\x1e\x0f\xc4\x38\x7a\x16\x98\xe3\xc7\x2a\x88\x51\xf5\x2e\x70\xc5\x8f\x43\xd0\xe6\x47\x83\x87\x99\x6e\x49\x4c\xa5\xe7\x8f\x9a\xa4\x73\x8f\x9a\x84\x38\x12\x83\xb0\xb3\x4a\xb7\xf8\xbe\x41\x64\x31\x7a\x63\xe6\x24\x3f\x11\xbd\x3f\x5d\xff\x03\x1e\x26\xbc\x25\x05\x0d\x1a\x57\x9a\x88\x6c\xbc\xe9\x96\x10\xc4\xd1\x33\xdd\xe2\xfa\x38\x7a\xa6\xeb\xee\x49\x60\x0c\x4a\x42\xc0\xb2\x7c\xdd\x22\x47\x5b\x31\xa8\x4a\x8b\x9d\xc9\x91\x4c\x74\xe4\x0e\xf3\xe2\x85\xcd\x54\xba\x5b\x13\xd4\xf9\x31\x09\x8c\x1e\x34\x1a\xe9\xcc\x4e\x53\xad\xa1\x86\x6e\x89\x44\x67\xae\xd4\xb9\x01\x19\xd5\x9b\x01\x19\x3b\xac\x32\xa8\xa5\x43\xe2\xa1\xff\xa3\xce\x19\xaa\xe6\x96\xe8\x4c\xc8\x38\xa0\xcd\x9c\x21\x48\xd8\xff\x1d\xf0\xac\xe8\xee\x68\x78\x36\x9f\x1f\x9b\xc0\x19\x3f\xde\x82\x42\x96\xc9\xed\xb9\x88\x43\x99\x1e\xc9\x55\x78\x33\xa7\x47\x72\x15\x27\xe5\xf4\x48\x1c\xe2\x75\x34\x3d\xd2\x1e\x2b\xe6\xf8\x91\xba\x58\x08\x52\x95\x3a\x0d\x23\xa7\x84\x0f\xe1\x81\x26\x3f\x76\x81\x2b\x7e\x7c\x04\x6d\x7e\x1c\x02\xdf\xf8\x91\x0e\xc4\x03\x69\x7a\x34\x8e\x78\x20\x4d\x57\x95\x1a\x0c\xef\xe3\x03\xaa\xa2\x60\xc8\x47\xc3\x5a\xc8\x67\x6d\x06\x0f\x9b\xf1\x5a\xb5\xb0\x9e\x4a\x4f\xe9\x82\xe2\x1f\x0b\x1d\x08\xff\x92\x74\x71\xaf\x7e\xc0\x18\xb4\xe4\x2c\x82\xe5\xa4\xab\x49\x78\xc2\x0d\x36\x3d\x7f\x50\xe8\xf7\x26\x1a\x84\xe7\xeb\x01\x9b\xc0\xf3\xaf\x8f\xe4\x25\x62\xe9\x9c\x1f\xbb\xc0\x11\x3f\xfa\xd3\xc9\x8f\xaa\x37\x26\xec\xf9\xfb\xf4\x17\x90\x7f\xfb\xe2\x53\xc9\xcf\xcb\x84\xfd\x41\xd1\x3d\x2d\x29\x11\x69\x27\x5d\x4d\xfa\xfe\xc7\x6c\x4a\x28\x7e\xcc\x66\xbb\x04\x45\x35\xa2\xdd\x0f\xc2\xb6\x5b\x50\xfc\x9f\x6a\xf9\xa0\x9d\x44\xe2\x63\x85\xeb\xc5\x3f\x46\x57\x25\x05\x5f\x2c\x37\x17\x4e\xbc\xab\x7f\xb4\x28\xa1\xf8\x10\xc3\x2e\xcd\x17\x29\x66\x13\x91\x63\x0e\xd4\xf9\x51\x15\x85\x18\x72\xc1\x70\xa0\xc9\x8f\xae\x28\x88\xa5\xd9\x63\xab\x70\x61\x09\x7b\xc0\x60\x2e\x29\xc2\x08\x0c\x94\x1e\x09\x5b\xdc\x68\x26\x9e\xc3\x0e\x14\xe3\x1a\xff\x68\xae\xb1\x7a\x04\xd7\x4f\x0f\x52\x3a\xd8\x56\x60\xbc\xb1\xb0\xa5\x4a\xf8\xfc\x1e\x88\x2f\x1f\x20\x9a\x67\xed\x1b\x17\x73\xce\x7d\xee\xc2\xd0\x2a\x61\x67\xb9\x46\x64\x9d\x4d\x58\x02\xae\xc1\x65\x01\x56\x1f\x07\xea\x01\xd1\x44\x42\x2d\x60\x4a\xbd\x88\x7c\x98\x88\x4b\x78\xa0\x9b\x1f\x87\xc0\x27\x7e\xf4\xa7\x3b\x20\x7e\x63\x1b\x51\xd5\x9b\x30\x63\x4f\x18\xc7\xad\x11\x0e\xc2\x89\xe7\x88\x35\x72\x54\xca\x63\xcf\x81\xf8\xf2\x16\x14\x75\x22\xe9\x23\x0c\xc9\x93\x34\xd6\x08\xa7\xdc\x94\x08\x48\x7b\xc0\x16\x3f\x36\x41\x9d\x1f\x55\x6b\xa8\x7e\xae\x8d\x16\x01\x0e\x13\x96\x2d\x8b\x90\x86\xa9\xe6\x4b\x50\xb4\x8f\x12\x18\x91\x40\x36\x61\x97\x71\xa0\x68\x3f\x53\x27\x7b\x06\x5e\x0b\x0e\xf4\x70\xe1\xd3\x04\xd6\xf8\x51\x4d\x84\xc8\x25\xfc\xca\x0e\x78\x18\xb9\xaa\xe3\x65\x71\x55\x84\x78\x8c\x88\xf4\x9e\xaa\x3a\x1e\x91\x77\x12\x97\xae\x8b\x58\x85\x89\x0b\xf5\x35\xe2\xaa\x38\xe9\xd2\x67\x8d\x9b\x39\xbe\xbb\xa0\xf8\x14\xcd\x32\x22\xed\x52\x4a\x49\xff\xc9\xd9\x5c\xea\x74\x70\x36\x97\xfe\x1c\x91\x4d\x29\xa5\xc4\x2a\x8d\x09\x5b\xaa\x1a\x16\x6b\x36\x26\x65\x8b\xc8\x7b\x49\xa7\xe5\x35\x22\xe6\xcc\x01\xf9\xb5\x41\x65\x96\xb7\xc1\x51\x1a\x5b\x91\x45\x0c\xbd\x94\xf0\x52\x59\x64\xdb\x4f\x38\xe1\xad\xc1\x1a\x2e\xfd\x39\x38\xcd\x12\x1b\xeb\x40\xf1\xe5\x60\x7a\x3a\x0c\x28\xc9\xe9\xfc\x9f\x24\x87\xf5\xb4\x4a\x72\x06\xd3\x2a\xc9\x19\x0c\x4a\x92\x33\x18\x14\xbb\xc6\x11\xe1\x3f\x52\x93\xa8\xb0\x10\xf2\x1a\xb7\x30\x3c\x4a\x4d\xa2\x12\xd7\xb2\x89\x18\xaf\x0b\x93\x9a\x84\xd3\xdf\x22\xd1\x79\x6a\x92\x1b\x0e\x74\x4d\x82\x12\xce\x89\xa9\x49\x18\x22\xd6\x42\x6a\x62\xf8\xcd\x0d\x9c\x74\xe5\x88\x1b\xd5\xd4\x34\xc3\xf1\xd2\x93\x9a\x38\x35\xec\x51\x52\x13\xa7\x46\xb6\x97\xd4\xc4\xa9\x2f\x83\x60\x6f\x39\x5e\x06\x21\x4e\x65\xe5\xc0\x76\x6b\x8d\x97\x49\xb3\x30\x44\xb4\xdd\x44\x68\xb7\x85\xd1\x49\xfa\x93\x8d\x30\x71\x4d\x04\x6d\x58\x83\x13\x5e\x13\x6b\x72\xc2\x6b\x28\xee\xf1\x63\x7e\xf1\x6f\x5b\x83\x43\x5d\xd3\x6c\xff\xe8\x1c\x47\xac\xf1\xd3\xbd\x9b\xf8\xed\x07\xa9\x04\x45\x26\xc1\x84\x25\xcd\x81\x3a\x57\x74\x5d\xe0\x88\x1f\xa9\xe7\x83\xfe\x9c\xa3\x06\x87\x3a\x8c\xb2\x17\xd1\xd6\xd2\x1f\x3d\xc2\xba\x24\x61\x9c\xb0\xb0\xf6\x48\xad\xfd\xe3\x25\xc8\xc2\x14\x24\x11\x9e\xfe\x40\xd1\x73\x72\x3e\x1d\x30\xe6\xaa\xa9\x56\x2e\xdf\xb8\x30\x39\xe0\x1b\x3f\x3e\x40\x4c\x01\xe3\x20\x5d\x78\xc2\x04\x69\x11\xc5\x2d\x25\xac\xcd\x16\x81\xdb\x12\x71\x48\x0e\x14\xc3\x42\x50\x66\xb8\x6c\x25\x1c\xf0\x16\xa1\xda\xd2\xff\x7c\x1a\x37\x52\x58\x55\xae\x99\xa0\x39\x72\x33\xd1\xe3\x3c\x16\x1d\x28\xa8\xc3\x75\xf8\xc2\x3c\x23\xb5\xa1\x6a\xd0\x4e\x64\x1e\x3e\x60\x34\x39\xf4\x29\x93\x35\xfc\x5b\x8c\x83\x73\x12\xd1\xd3\x12\x66\x48\x0b\x2b\x8f\x44\x6c\x87\x35\x39\xe1\x61\x86\xb4\x88\x89\x96\x70\xbb\x39\x10\x5f\x32\xfc\x82\xe2\xea\x22\x4e\x04\x3f\xf8\xeb\xa9\xae\x88\x3b\x4a\x85\x2c\xe1\x7f\x3d\xe5\x8e\x98\x68\xc9\x8b\x4c\xe0\x89\xb0\x41\x8b\x68\x6a\x89\x20\x3b\x8b\x18\x69\x09\x9b\xf2\x03\x05\x35\xc6\x65\xf0\x8b\x1f\xe9\x1c\x3a\x3f\x8d\xcb\x60\x8a\x1f\xd5\xd7\x98\x47\x1e\x46\xd7\x44\xad\x13\x2e\xf2\x40\x93\x1b\x56\xd5\x1a\x72\x8d\x11\xef\xc2\x7c\xe4\xfc\xa8\x5a\xe3\xb4\xd1\xf5\x29\xb7\xc6\x5d\xbf\xb1\x02\xe0\xfd\xb6\xb0\xee\x48\x38\x84\x2c\x32\x85\x27\x9e\x2a\x17\xf1\xce\x12\x96\xc1\x0b\x0b\x8e\x44\xc0\xd6\x03\xc5\xa0\x90\xf2\xe9\x9b\x5a\x4d\x6a\xbc\x2b\x26\x0c\xc4\x17\xe9\xc0\x13\x26\x23\x8b\x94\xdf\x49\xdb\x33\x02\xa5\xa5\x7c\x25\x83\x31\xa8\xa2\x16\xb9\x88\xbb\x44\x8e\x88\x11\x9b\x78\xd7\x5c\xf3\x61\x92\xd9\x72\x4d\x0e\xa6\xda\x63\x11\x38\x2d\xe5\x4b\x8d\x84\xbb\x51\xc2\x82\xfb\x40\xdc\x1c\x17\x81\x10\xf9\xd1\x7f\xc2\x48\x9c\x36\x49\xca\x9d\xf2\x25\xee\x88\x94\x14\x09\x9b\xa7\x45\xd4\xb3\xf3\x63\x12\x18\x63\x66\x41\x9c\x9c\x45\x79\x87\x3c\x50\xdc\xd4\xf1\xe4\xbc\x66\x24\x96\x3b\x60\x15\x18\x83\x66\x17\x3c\x75\xf1\x7b\x49\x22\x1a\xfc\xc1\x49\x71\x86\x25\x75\xca\x49\x42\xd0\x10\x89\xa6\x7a\x60\x9e\xa6\x7f\x0c\x25\x90\x93\x38\x8b\x13\x67\x97\xd8\x47\x5a\xb8\xd4\x25\xf6\x9c\x14\xbb\x7a\x37\xe0\x01\xc9\x79\x24\x5f\x4b\x39\xa9\x8d\xb8\xc3\x4d\x5d\x62\xaf\x7b\x5a\xde\x15\x0e\x18\x03\x91\xd8\x0f\xdf\x98\xd3\x01\x0e\xa0\x96\x09\x0e\xa0\x16\x82\xf0\xb0\x49\x39\x6b\x58\x11\xa0\x20\x69\x1b\x3a\xc3\x14\x39\x0d\xc9\xd6\x64\x6a\xb3\x98\x39\x22\x14\xa4\x21\xf6\xe1\x3e\x76\x88\x5f\x38\x72\xe6\xac\xc9\xe4\x58\x69\xf1\x61\x1d\xce\xf9\x9f\x13\x01\x2e\x02\x6a\xfd\xc9\xd6\xe4\xc6\x3b\x57\x57\xbb\xe2\x47\xf5\x80\x9b\x56\x1e\x53\x0f\xf8\xc6\x8f\x74\x88\x4b\xe0\x21\xe9\x5a\x31\x23\x43\xd2\xc5\x15\xed\x90\xc8\x84\x21\x6c\x22\x91\xc7\x22\x3c\x54\x22\x1d\xc1\x81\xa2\x4e\x89\x53\x3c\xad\xa6\x5c\x24\x32\x91\x91\x39\x0d\x31\x3e\x77\xbb\xb9\x48\x64\xc2\x68\x36\x0d\x31\xfe\x66\x42\xd8\xcf\x4d\xce\x98\xc3\xd5\x4c\xda\xd7\xff\xc5\x26\x0d\x63\x91\x85\x01\x4a\xca\xba\x6e\x24\xec\x53\xc2\x23\x69\xcd\xcd\xe3\x47\x11\x33\x6f\xe6\xee\x56\x77\xfc\x36\xc1\xb0\x5e\xa6\xb2\x88\x61\x5f\xa6\xf2\xf1\x8f\x9d\x1f\xbb\xc0\xe8\x82\xa4\xf4\x85\x04\x9a\xd8\x57\x24\x10\x17\x86\x89\x4a\x1a\x92\x52\x8e\xc7\x3a\x8b\xcc\x78\xed\x4d\x3a\x7c\xcc\x17\x69\xd2\x65\xdf\x7c\xe3\xa0\x32\x34\xae\x78\xee\x4d\x43\x12\xcc\x7d\x33\x41\xd2\x0f\xc4\x6f\xf4\x86\x73\xeb\x10\x3f\x44\x6e\xb8\x34\xc4\x00\x9c\x5b\x71\x86\x3d\x10\xff\x47\x7b\x3f\xd8\x9c\x9d\xf0\xfc\x05\xe5\x86\x08\xc7\x3d\x35\x71\x75\x17\x99\x92\xd3\xd0\xa6\x81\x3d\xcc\x10\x15\x39\xc3\x12\x55\xe5\x40\x31\x06\xed\x20\x38\x16\x0e\x11\x98\x3d\x0b\x8e\xf8\x6b\x5d\x6a\x61\x08\x4a\xbc\xc6\x54\x81\xc1\xf1\xe8\xbd\x75\xe9\x39\x06\x5d\xbb\x2e\xe8\x8d\xf7\xc3\x01\xa3\xda\xae\xff\x84\xe5\x08\x6a\x73\xc0\x20\x38\x8a\x66\x5d\xc8\x39\x09\x63\x16\x89\x95\xf3\x75\xa9\x15\x1e\x3e\x88\xe5\x7d\xc0\x11\x3f\x26\x41\x6f\x40\xea\xc1\xa1\x5c\x26\xdc\xe5\x81\x7a\x40\x74\x20\xdc\xdc\x53\x26\xb1\xe4\xc2\x30\x27\x63\x3a\xb2\x56\xf8\xab\x7b\xb5\x59\x71\x6b\xed\xe5\x65\xc5\x01\x33\x5f\xec\x62\x17\x7b\x8f\xac\x63\xd3\x8a\x6b\xeb\x8c\xd7\xc1\x5a\x59\x6f\x49\x48\x04\x59\x91\x33\x41\x11\x17\x59\x91\xcf\x8f\xf4\x3c\xce\xa6\x19\x5b\xf1\x45\x7a\xe3\x94\x75\x6e\xe2\xf5\x3a\x5f\xaa\x27\x36\x23\xf9\xd2\x3f\x46\xbc\xfb\x7c\x89\xe8\x05\xa2\x6b\xe3\xca\x83\x75\xc6\x2b\xf0\x40\xd1\x75\xb6\xc3\x84\x5b\xca\x58\x1b\xaf\x55\x90\xc8\x96\xd4\x06\xc4\x7a\x54\xeb\x8a\x4f\x35\x1f\xbc\x20\x67\x9d\x07\x08\x72\x94\x31\xfc\x5c\x04\x39\x3a\x3f\x66\x81\x41\x57\xa4\x8c\x17\xe5\x7c\x69\x54\x11\x2b\x3f\xe3\x37\xb7\xd6\x0d\x01\x10\x2b\xb2\x05\x67\x6c\x2a\xd6\x7a\x18\x3f\x62\xb5\x62\x87\x91\x2f\x44\x87\xd7\xdf\x7c\x21\x3a\x44\x47\xca\x57\xfd\xe7\x0b\x6c\x92\xf2\x66\xc2\xd7\xae\x55\x21\x2a\xf2\xb1\xc2\x83\x38\x65\x62\x97\x2d\xb2\xe4\x7a\x7d\x5f\x95\xe7\x43\x6d\x3f\x56\x85\xc6\xac\xef\x2b\xa2\xc9\xa7\xac\x0d\x07\x19\x75\x33\xf9\x00\x16\x2f\xc0\x99\x08\xb6\x6b\xc5\x96\x22\x5f\x92\x88\x0a\xc5\x25\x02\x8d\xa9\x62\xad\xe5\x95\x37\x13\xf1\x6d\x91\x0e\x36\x5f\x2c\xae\xab\x51\x0b\x67\x51\x12\xc0\xe6\x8b\xb3\x28\x06\x51\x99\xf4\x90\x6b\x75\xa8\xc8\x76\x62\x45\x38\x54\xef\x1f\x56\xe7\xe1\x51\x8b\xc7\x8a\x5c\x52\x19\x73\xda\x45\x34\xa3\x9c\x24\x63\x71\x4c\xce\x49\x32\x16\xb6\x53\x29\x4b\x1f\x93\x10\x36\x27\x89\x5c\x9c\x85\x33\x86\x6a\x07\xda\x01\x0d\x41\x3c\x4b\xaa\xab\x11\xb7\x3d\x27\xb1\x1f\xaf\xb0\xc5\x32\x1f\x76\x9d\xde\xa3\x2c\xb6\x08\xc5\x32\x1f\x47\xec\xac\xbb\x89\x15\x47\xec\x8c\x41\xca\x22\x2b\x6b\x2a\xf8\x27\x2e\xd2\xb2\xe6\x24\xc6\x1d\x7a\xa8\x64\xe3\xbc\xc2\x63\x37\x27\x49\xe0\x0c\x7e\xc0\x8f\xfa\x40\x3f\x5e\x3f\x19\xd7\xa4\x11\xd6\x3d\x8c\xa6\x72\xd2\x8c\xaf\x19\xd5\xb0\x96\xf1\x14\x9b\xb1\xc6\x5d\x8b\xf5\xba\x24\x51\x39\x62\x3d\x66\x6c\xfc\xd6\x0a\x6b\xce\x54\x92\x14\xdb\x4b\x07\x24\x0f\x2f\x94\x94\x3c\x44\x58\xf4\xac\x37\x36\x12\x92\xe6\x24\x79\x08\x1f\xcc\x9c\x24\x0f\x11\x43\x26\x63\x6b\xb2\xd6\xc7\x44\x8a\xe5\x3f\xfe\x8f\xe5\x82\xa7\xca\x9c\xa4\x0f\x3f\xe6\x51\xe2\xc0\xf5\x63\x29\xc5\x60\xf4\x3b\x56\x8f\x4d\x68\x91\x4c\x8c\x9e\x4d\x70\x0f\xed\x03\x37\xaf\x81\x19\xb3\x94\x4d\xc8\x8e\x8c\x59\xca\x26\x2c\x47\xc6\x10\x65\xf7\x4c\x67\xfa\x2d\x28\xfe\xaf\x53\x67\x84\x91\x48\xe5\x89\xf9\xdf\xc4\x91\xc8\xa9\x77\x41\x3c\x87\x26\xfd\xe7\x8c\x01\x77\xd5\x1a\x07\xce\xc2\x4d\xfb\xee\x91\x0b\x3e\xc9\xc8\xea\x80\x67\x90\x6c\x27\x77\x8f\x43\x5d\xc6\xcf\x66\x93\x76\x31\x93\xe9\x7f\xf7\x38\xd4\x65\xf2\x38\x6f\xd2\x2e\xa6\x42\x9c\xbc\x4d\x10\x88\x4c\x3c\xeb\x03\xc5\x3f\x26\xfd\x63\x6c\xaf\x0b\x1e\xf8\x07\x6c\xf1\xe3\x10\xa4\xb7\x5b\xd5\xb3\x8e\x5c\xe3\xbe\xb3\x7b\x58\xf4\xe4\xac\x9e\xc7\xd9\x4c\xdb\xd9\x4d\xce\xc4\xcc\x6d\xd8\xe6\x9d\x30\x13\x68\x62\x13\x3e\x22\xe3\x9e\xbf\x7b\xc4\xb7\x4e\xf2\x82\x3f\x20\x0f\xb9\x97\xbe\x3d\xbd\xcb\xd8\x75\x1f\x88\x87\xdc\x4b\xdf\xc6\xbc\x62\xea\xb1\x3b\x2a\x18\x53\x8f\x4d\x3c\x89\x24\xd7\xfe\xcd\xb3\x61\xce\x8f\xa1\xf8\xc7\x47\xff\x18\x8b\xb9\x52\x93\x6f\x52\x1e\x66\x32\x94\x1c\x28\x86\x55\xff\xf1\x46\x64\x13\x1a\x22\x63\xb4\xb1\x7b\x65\xb2\x6a\x16\xf4\xf1\xca\x2c\x10\x82\x88\xe6\xa1\xae\x73\x16\x91\x2b\x36\x00\xb5\xf9\xc7\xa0\x40\xed\x82\x20\x4f\x77\x3d\xc1\x1f\x4d\x4d\x22\x04\xf8\x3b\x1c\x30\xc5\x8f\xfa\x34\xd8\x2e\x37\xff\x16\x14\x70\x1b\x0c\x59\x42\x10\x31\xb1\x73\x96\x10\x34\xe6\x55\x42\xd0\x98\xd7\x7e\x09\x8a\x5a\x3a\xcd\x37\x86\xa1\xae\x85\xa5\x4f\xce\x12\x90\xb0\xf4\xc9\x58\xd6\x6f\xd2\x10\x66\x8c\x9a\x77\x6f\x68\xb9\x76\x1b\x3c\xc2\x43\x60\xf6\xdd\x59\x12\xb0\x29\x39\x50\x54\x33\x6e\x41\x3f\x9e\xd5\xbb\xc0\x20\xc6\xa0\x9a\x8e\x49\x02\x91\x02\x36\xb1\x1d\x32\x0f\xd7\x9b\xcc\x80\x99\x68\x74\x9b\x7c\x7f\xa9\x34\xf5\x27\x3c\x04\x72\x91\x60\x71\x93\x5a\x9a\x84\x39\x22\x5a\xe7\x72\xf9\x53\x7a\x20\x61\x8e\x34\xe1\x19\xe3\x91\xdd\x3b\x26\x28\xcd\x23\x89\xeb\xc4\xc2\xbd\xd3\xe6\x8d\x33\x63\x4c\xb2\x3b\xeb\x10\x99\x8c\x76\x0f\xf3\x9f\x5c\x24\xaf\xb1\x9a\xe4\x22\x79\x8d\x37\xce\x8c\xa1\xc9\x26\xc0\x43\x26\x5e\xeb\xee\x61\xe2\x93\x8b\x24\x72\xd0\x82\x24\x60\xa0\x59\xfa\x63\x30\xba\x2a\x21\x9c\xa8\xfd\x2e\x89\x88\xe0\x79\x99\xc0\x88\xbb\xcf\x41\xad\x43\x50\xf4\xa6\x5c\x82\x82\x56\x25\x09\xc2\x94\x41\x9a\x36\xac\x88\x33\x16\x2b\xbb\xb3\x24\x95\xa2\xdf\x50\x3b\x5d\x13\x1b\x8e\xab\xb9\x48\xce\x27\x6a\xa7\x6b\x9e\x23\x1e\x44\x2e\x92\x4f\x96\xaf\x22\x39\x5f\xcc\x00\x27\xbc\x03\xc6\xb0\x1e\xea\xe1\x1e\x5a\xd1\x30\x36\x79\xec\x32\x36\x2b\x9b\x47\xcd\x5c\x44\x8f\x85\x6a\xe1\x84\x77\xc0\x09\x08\x09\x62\x59\xcc\xb8\xa1\x6d\x62\x42\x64\x82\x66\x6e\x1e\x35\x73\x91\x2c\x87\xcf\x41\x2e\x92\xc8\x38\x7b\xe5\xa2\x75\xe8\x65\x7a\x44\x9d\x37\x0e\xee\xf7\x75\xfb\xc7\x1c\x3f\x52\x4d\x5c\x21\xe7\x22\xc9\xfa\xc1\x1d\x92\xac\x38\xb4\xe5\x22\x29\xff\xe8\x9a\x96\x25\xd6\xc8\x22\x4e\x8e\x65\x30\xc9\x0b\xf6\x80\xd1\x84\xf8\xf1\x83\x93\x35\x01\x61\xeb\x93\x31\x1e\xd9\xe3\xa2\x41\x44\x89\x67\xb8\x4c\x04\xba\x3d\xc2\x80\x37\x13\x50\x6c\x93\x7e\x2c\x13\x73\x63\x8f\x70\xd0\xcb\xd8\x71\x6f\x5e\xda\x32\x16\xd1\x7b\x84\xe5\x4f\xc6\xe6\x64\x8f\x48\x67\x91\xb1\x2b\xd9\xbc\x97\x65\x52\x5d\xec\x11\x86\xb8\x99\x08\x38\x9b\xd7\xb3\x8c\x91\xc9\x26\x1d\x58\xbe\x59\x4b\x49\x00\x96\x49\xba\xb5\x79\xe8\xca\x77\xfa\xc7\x00\x4a\x9b\x9c\x5f\x99\x68\x19\x7b\x84\xf5\x6b\x26\x6f\xca\x26\xb3\x56\xbe\x91\x22\x5e\x9d\x32\xf9\xaf\x0f\x14\x56\x04\x58\x78\x1c\x70\xc6\x8f\x45\xd0\x17\x10\x7d\x0b\xa7\xb5\x4c\xa2\xee\x3d\x58\x02\x49\xb1\xbd\x49\xc2\x95\x49\x33\x7d\xa0\xf8\x12\x91\x22\x27\x56\xc6\xfa\x65\x8f\x1b\x8a\x16\xd5\x19\x6c\x79\x63\xd3\x72\xc0\x15\x3f\xaa\x09\xdb\xb4\x24\x81\x6f\xfc\x48\x8b\x8f\x0c\x55\x90\x8c\xf1\xc4\xf6\x55\x6e\x42\x07\xfc\x00\xe9\x10\x67\x14\x0c\x50\x36\xc9\xaf\x32\x06\x28\x7b\x84\x93\x44\x52\x4a\xee\x4d\x50\x89\x8c\x59\xc9\x26\xdf\x55\xc6\xac\x64\x93\xef\x2a\x63\x47\x72\xa0\x1f\xa6\x32\x97\xc0\x20\x16\x82\x32\xb0\x43\xbd\x89\x88\xb4\xc9\x86\x95\xff\xda\x88\x0d\x03\x01\x1a\x0e\x44\xd7\xc7\x23\x30\xc8\xd5\xd4\x81\x50\x0e\x98\x9c\x6c\x1e\xe5\x32\x36\x26\x9b\x24\x57\x49\xb1\x52\x0f\xf8\x01\x52\x6d\x83\x40\x8f\x66\x88\xa5\xed\x46\x03\x91\xf5\xea\xfc\x38\x04\xfe\xe2\xc7\x47\x10\x15\x69\xfe\x58\x06\x6f\x49\x0b\xc7\xa4\x5b\xd2\xc2\xb5\xe7\xcd\x8d\xc3\x01\xcf\x52\xf7\x48\x40\xb0\x86\xbd\xb9\x71\xd8\xe4\xc1\xca\xf8\x58\x1f\x88\x46\x50\x5e\x83\x33\x15\xc6\x24\x07\xba\x03\x52\x93\xf1\x34\x75\x3f\x9a\xdb\x30\x8f\xcd\xda\x60\x0e\x4e\x4a\xa6\x41\x78\x99\x24\xc5\x8d\xd8\xa3\xc7\x4c\x7b\x94\x5d\x4d\x8a\xd7\x3b\x4d\x8a\x2f\xc3\x55\x2e\xdd\xbc\xd4\x1f\xb0\xc5\x8f\x4d\x10\xe6\x4c\xc3\xdf\x8e\xf8\xb1\x0b\xa2\x4d\x91\x36\xe2\x5f\x64\x0c\x46\x36\x51\x2d\x74\x41\xb3\x79\xa9\xcc\xa6\xd6\x88\x23\xaf\x52\x32\xee\xc1\x42\x68\x82\x84\xad\x6b\x26\xdd\xf5\x81\xbe\x80\xf4\x8f\x32\x7d\x2a\x06\x53\xfc\x78\x0b\xe2\x1f\xe9\x39\x47\xac\x47\xbc\x1e\x41\x20\xd2\x5d\x55\x6b\x44\x81\xc8\x84\xbf\xdb\x64\xcb\x3a\x3f\x16\x81\x6f\xfc\xa8\x4f\x63\xda\xc9\x35\xb3\x09\xe7\x90\xb5\xc5\x1e\x91\x0e\x21\xdd\xda\x0b\x8e\x19\x97\x47\xd8\x8e\x1c\xa8\xf3\xa3\x6a\x0d\x0e\xc6\x94\x64\x8f\xc9\x3c\xeb\xb7\x85\x61\x5a\x95\x40\x85\x47\x4d\x7e\xd8\xa8\x11\xd1\xe1\xfc\x98\x04\x06\x33\x75\x7d\x0a\x13\x74\xd5\x13\x0c\x4b\x70\xb0\x3d\x38\x0f\x3e\xfe\x3f\x26\x5d\xb3\x1c\xa9\x5f\xf3\x23\xbe\xdf\xcc\x8e\x18\x7d\xc3\x66\x62\xf4\x8d\x90\x36\xcd\x4e\x44\xf4\xcf\x55\x8c\xce\x85\xed\xdd\x1e\x83\x23\x7e\xfc\xc7\x10\x4b\x7b\x44\x38\xa4\x4c\xda\xd6\x03\xf5\x80\x98\x3a\xac\x7a\xef\x26\x8d\x12\x66\xbd\x19\xa3\x8b\x03\xdd\xfc\xa8\x26\x8f\x88\x64\x73\xd2\x86\x97\x9b\xe8\x1a\x57\xbf\xb9\x6a\xf9\x09\x33\xdf\x5c\xb5\xc4\x70\xe6\xc5\xec\xe2\x40\x33\xa0\x26\x68\x61\xd1\xd6\x05\xfe\x00\x87\xc0\xc3\x92\x3c\x1f\xef\x81\xb9\xf0\xad\xbd\x21\x51\x12\x72\x95\xe0\xc5\x8b\x75\xae\xd2\x27\x2f\xa3\x64\x8b\x35\xc2\x7e\x29\x63\x2f\xb1\xc9\x0d\x96\x89\xac\x76\xa0\x0f\x43\x39\xaa\xf9\xc5\x2d\xd8\xdd\xa5\xe0\xe2\x1d\x3a\xe3\xc5\xb5\x89\x7e\x90\x94\x0e\x7b\x0f\x4e\xe8\x98\x48\x1c\xe8\xc1\xaa\xee\x12\x38\x00\x93\xc0\x18\xb5\xf8\xfe\x87\x4a\xeb\x12\x7d\x0e\xf7\x55\x62\x10\x37\xc3\x19\x0f\xb0\x03\x05\x45\xba\x14\xd3\x2f\x96\xcb\x2a\xa9\x08\x2b\xe5\x5c\x35\x7b\x18\x3f\xdd\xbd\xde\x02\xa3\xef\x9a\xbd\x4f\x7d\x97\x74\x71\x67\x60\x89\x09\xfb\xa6\x4c\x58\xdf\x03\xbd\x01\xe9\x4b\xd8\x47\xda\xee\x83\xb0\x5a\x2b\x22\x97\x99\xae\x25\xf7\xbc\x98\x67\xf6\x5f\x04\x48\xc8\x3a\x74\xcd\x4b\x96\x84\xec\x48\x88\x97\x90\x75\xe8\x22\x0a\xc2\xf9\x71\x08\x0c\x2e\xe4\xdc\x33\x2f\x59\x1d\xc2\x04\xf3\x62\x9e\x87\x1a\xa1\x73\x43\x8d\xc4\xbe\x56\x61\xdd\x0e\x18\xb4\x42\xf2\x88\x83\x90\xe4\x65\xbb\x49\x7d\x96\x31\xe1\xd8\x84\x45\xc8\x98\x70\x1c\x28\x86\x85\x90\xf2\x82\x9e\x71\xa3\xd8\x84\x37\xc8\x98\x70\xec\x19\xce\x50\x19\x33\x8d\xcd\x73\x76\xc6\x4c\xe3\x40\x0c\xd9\xff\x18\xdb\x1e\xb2\xa4\x6d\xb2\x88\xa5\x87\x5b\xec\x03\x9e\x21\x93\xb0\xf5\x40\x58\x3d\x22\xb2\x93\xed\x5b\x13\x75\xc2\xf8\x29\x37\x91\x23\x3c\xa7\xd2\x43\x9e\xe9\x03\x7e\xf1\x23\xd4\xc9\x18\x78\x71\x37\x7d\xc0\x14\x3f\xaa\x91\x98\x49\x32\x30\x6c\x9e\xc2\x33\x26\x1e\x07\xe2\xb7\x26\x68\x07\xc4\xb0\xc2\x3f\x2a\x29\x41\xd8\x01\x8f\xe0\x63\xd3\x71\xa0\xce\x8f\x06\x47\xfc\x48\x8b\xe1\x3d\x95\x31\xf1\xd8\x33\x02\x69\xe6\x56\x68\x91\x7b\x91\xa6\xc9\xb9\xb1\xdb\x4b\xa2\x47\x38\x30\x65\xfc\x43\x36\xa1\x0c\xce\x8f\x45\x60\x8c\xea\x56\x3d\xc1\xc9\x3a\x16\x4f\xb6\x85\x84\xd2\xdc\xf3\x66\xb2\x90\x57\x62\x0b\x64\xe9\xd3\xc9\x5d\x07\x31\x25\xf6\x7c\x64\xf5\xc9\x41\x7c\x86\x13\x51\xc6\x8a\x64\xf3\x30\x9d\x31\x1b\xd9\x93\x9b\x0f\xcc\x28\x0f\x44\xa5\x6a\x22\xf8\x08\x93\x92\x3d\x2b\x64\xac\xff\xac\xb2\x27\x57\x1d\x18\x98\x1c\x28\xac\x67\x71\x0e\x3a\xe0\x8a\x1f\x9b\xa0\xcd\x8f\x49\x60\x70\x07\xdb\xc7\xc9\x3d\x84\xb4\xfb\x8c\x30\x95\xe9\xc9\x9a\xb9\x08\xf6\x95\xb1\x37\xd9\x04\x1f\x38\x3f\x56\x81\x31\x64\xe4\x7c\x62\x40\xfd\xe4\x3f\x30\x6c\x03\x75\xa3\x31\xb9\xb5\x20\x8f\xf5\xd6\x9b\xf5\x93\x25\xdb\xb1\x7b\xcb\x4d\x94\x6c\x58\x09\xe7\xbf\x6f\xa3\x7f\x92\xf4\x08\x48\x99\x75\xa3\x30\x1b\x66\xa6\x59\x92\xde\xa0\xa5\x84\x99\x1b\x8e\x26\xe9\x0d\x47\xa7\xf4\x90\x1f\x70\x4f\xae\xb2\xb1\x07\xd9\x24\xec\xca\xd8\x83\xec\xd9\x63\x6f\xd0\x25\xbe\xe1\x40\x94\xbb\xc4\x77\xe8\xff\xba\xa0\x1f\x26\xba\x54\xc3\x0d\x34\xe1\x50\xf6\x0c\x8f\xe1\x4c\x90\x93\x3d\xb9\x55\xc6\x70\x63\x93\x1b\x2a\x63\xb8\xb1\x67\x78\x02\xe5\x2e\x71\x5d\x7c\x29\xf9\x5c\xb0\xf9\xdd\x0d\x7e\xf1\x23\x4d\xc8\xbc\xf9\x56\xfb\x61\xdf\x9c\xbb\x44\x59\xe6\xcd\xb7\x88\x1c\x81\x07\x72\x97\xf4\x72\xd8\xc7\x56\xe3\x40\x87\x70\x5a\x96\x66\xd8\x95\x65\xad\x4a\x93\xdd\x48\x97\x7c\x6e\xa8\xc1\x8e\x8f\x64\x43\x19\xc3\x8d\xcd\x7b\x71\xee\x92\xdd\x58\xdf\xd3\xf3\xa8\xe3\x11\x6b\x40\x2f\x27\x07\x8a\x06\x6f\xfd\x46\xa5\x6c\x4e\x67\x58\x28\xe7\x2e\x49\x0e\xbb\xb2\xdc\x25\xba\x61\xe4\x95\xbb\xc4\x33\xec\xb8\x32\xb1\x93\xf6\xe4\x52\x9b\xf0\x7d\x1b\xdf\xff\xac\x5b\x99\xf9\x05\xdb\xe8\x1a\x66\xca\x6e\xb6\x15\x83\x31\xdf\xec\x5b\x79\x9f\xcc\xd8\x70\x1c\x88\x6a\x3a\x10\x74\x62\x65\xe5\xc9\x31\x29\x9e\xd7\xc6\xe5\x36\x13\x28\xfd\x40\x61\xcb\xad\x8d\xc8\xe2\x00\x4f\x48\xa6\x03\x4d\x7e\x34\xa8\x6f\xa9\x88\x03\x3d\x66\x1a\x1b\x8f\xdc\x4c\x1a\x85\xbd\xf0\xc0\x51\x64\x84\xbd\xb8\x49\x27\x83\xea\x81\xa2\xb3\xc8\xd1\xc2\x72\xf6\xd1\x8c\xaf\xc8\x28\x9e\xb1\xef\x38\x10\xb6\xcb\x59\x8d\xc0\xb9\x5d\x10\x9d\xed\x6a\x32\x94\x70\xd7\x28\xb9\x19\xc0\xbe\x63\x93\x6a\x27\xeb\xb2\x89\x24\x39\xe9\x71\x07\xb8\x36\xc0\xa0\x63\x93\xa7\x26\x63\xd0\xb1\x17\x7e\x33\x0f\x21\x4f\x36\x49\x65\xf2\x60\xa5\x93\x23\xee\xf3\x3f\xe0\x88\x1f\xe9\x39\x17\xf2\x03\x79\x5c\x61\x65\x95\x49\xab\xb6\xf1\xbd\xcd\xc4\x66\xd9\x78\xd4\x66\xac\x44\xf6\x0a\x5b\xa9\x8c\x95\xc8\x96\xd7\xac\x82\x82\x1c\x30\xc5\x8f\x59\x10\xff\xa8\xdf\x68\x50\x14\xc7\xfb\xe6\xe1\x01\x7d\x13\x58\x21\x9f\x5d\xc9\x3f\x29\x6c\xb9\xca\x3e\xa3\xb9\xda\xc3\xe6\xda\xb2\xe8\x0d\x14\xdb\x93\x4d\x48\x86\x8c\x3d\xc9\xd6\x8b\xe8\x60\x15\x5e\x77\x1c\xfa\xc8\xab\xba\x17\x37\xee\x18\x97\x6c\x42\x32\xe4\xa1\x19\x7f\x54\x67\x13\xf4\xc3\x04\xdb\xe0\x51\x24\x78\xe7\x6d\x39\xbd\x2a\x00\xd5\x01\x83\x1c\x68\x80\xc5\xfd\x3b\xb6\x26\x7b\x85\x75\x94\x9e\x0b\xf7\x0a\xe7\x9b\x8c\xc5\xc8\xd6\x9b\x27\x16\x23\x7b\x55\xec\x93\x2f\x71\x47\x0d\x19\xd4\x9d\xe1\x92\x95\x2f\xef\x95\x9b\xa0\x10\x19\x23\x91\xad\xf7\x51\xa2\xdc\x6c\x3c\x64\x33\x51\x60\x36\xa9\x5f\x32\x01\x31\xf6\x6a\x4c\x0e\xca\x82\x14\x2e\x59\x97\x8b\xab\x41\x37\x0d\xb8\xa9\xce\x2e\x68\x62\xe6\xad\x4f\xe3\xb0\x4c\x24\xb2\x2d\x87\x59\x45\x18\x3a\x60\xcc\x14\xaa\x84\xf7\xd2\x8c\xa1\xc9\x81\xa2\x45\xe9\x0e\xae\x04\xcc\x54\xac\x31\xe4\x4c\x3d\x50\x8c\x50\x7a\xa5\x33\x37\x2c\xfb\x8b\xfb\x01\x4c\x49\xf6\x8a\x38\x96\xa9\x66\xb1\x71\xdc\x6f\x67\xac\x47\xb6\x5c\x6d\x6b\x16\x57\x47\xda\x98\x8c\x31\xc9\x5e\x03\xfa\x4b\xcb\xc4\x9b\x67\xaa\x59\xdd\x19\x71\xc2\x31\xe3\xe2\xc3\x5a\xb3\x7a\x17\x09\x17\xb3\x79\x73\x30\xe3\xd2\x39\x9c\xe4\x31\x04\xd9\x0b\xfb\x2a\xa5\xba\xdd\x64\x80\xc9\x64\x56\x39\x10\x96\xed\xec\x10\xd6\x44\x72\x59\x81\xd6\x84\x1e\xd2\x40\x2c\x81\x43\x2a\x07\x4f\xa1\x8a\x1f\xeb\x96\x6f\x6c\x2d\x92\x8e\x85\x78\xfa\x47\xa8\x25\xe5\x89\x0f\x8d\x22\x48\xef\x15\xa6\x50\xe5\x92\x42\x88\xc5\xab\x5c\xa2\x24\x5e\x33\x0a\x0e\xb7\x15\x66\xe2\x92\xd0\x6f\x6c\xc0\x8b\xba\x47\x5e\x16\x82\x66\x6e\x32\xb1\x14\x62\x0b\x6e\x22\x52\x94\x4b\xfa\x21\xce\xce\xe5\x92\x7e\xd8\x88\xd9\x2d\x6d\x15\xf6\x4d\xe5\x92\x24\x87\xad\x51\xd1\x5e\x7b\xbd\x54\x2a\x69\xc5\x13\xa7\xde\x62\xb3\xf0\xc4\x29\x84\x44\x3d\x10\x96\xf6\xe2\xba\xf0\xc4\x29\x97\x84\x97\x2c\x74\x97\x24\xf2\xa5\x45\xd6\x64\x5c\x64\xf5\x7a\x7d\xa0\x18\x94\xa4\x95\x18\xc1\x97\xa4\xf5\x17\x91\x78\x2f\x16\x68\x12\xa0\x14\xc2\xd5\x6c\x5e\x96\xcb\x25\xd1\xfd\x20\xb1\x64\x95\x20\x3b\xba\x6d\x5f\x04\xd9\xb9\x24\x8f\x1f\x9c\xac\x8b\x95\x15\xb1\xf9\x8a\x95\x0c\xe6\xd3\xf5\x11\x43\x7e\x11\xdb\x98\x6c\xb9\x07\x8a\xbe\xc5\xd2\xfe\x92\x59\xa4\x5c\x21\x9e\x2f\x0e\xb3\x05\x0b\x95\x57\xb9\x3d\xb0\x50\x39\x50\xb4\x1f\xf2\xf8\xf6\x58\xa1\x0b\xa9\x6f\x5e\xf2\x62\x94\xeb\x9f\x0d\xfa\x5e\x5e\xb6\x0b\x06\x2a\x6f\x4f\xb0\x3c\xc9\x8b\x5e\x32\x63\x14\x6c\x52\x5e\x39\xde\x56\xa2\x88\xbe\x78\xde\x96\xab\xea\xd3\x88\x83\x7e\x55\xfd\x16\x31\x56\x30\x5f\x79\x79\x21\x2f\x98\xaf\xbc\xbc\x89\x17\x5c\x3b\xde\x9e\x20\x78\xbb\x04\xc5\xff\x35\x86\x2f\xaf\x97\xda\x87\xc0\x18\x7f\xa3\x89\x0c\xfd\x5b\x13\x14\xc3\x08\x39\x7e\x3b\xce\x2c\x95\xe3\xd4\x01\x63\x18\x5d\xb5\xe2\xcb\xd1\x8a\xfe\x73\xc5\x30\x3a\x63\x2c\x50\xbc\xd3\xf1\x82\x18\x35\x91\xb5\xd0\xf3\x61\x28\x3e\x1d\x55\x50\x48\x43\x53\xef\xe2\xce\xbf\x60\x40\xf2\xf6\xc8\x7c\x56\xd2\x05\xa9\xe2\xe4\x55\x88\x66\x72\x20\xbe\x6c\x82\xc2\xb5\x06\xc7\xab\x03\xce\xf8\x91\x61\xe1\x77\x52\xd9\x22\xbe\x3d\xac\x82\x0a\xd1\x4d\x0e\x14\xb5\xa6\x26\xe8\x87\x0f\xc8\x23\xf0\x3b\x3f\x66\x6a\xc5\xee\xb8\x76\x4d\x48\x44\x8c\x28\x58\x8c\x1c\x28\xfa\x93\xb3\xa0\x1d\x10\x3d\x8f\x23\x5c\x21\xda\xc9\xdb\xe3\xaa\xbe\x10\x0c\xe8\x40\xfc\x1f\x75\x86\x15\x50\x21\x53\xe0\x8b\x73\x6a\xc1\xec\xe4\xed\x78\xb6\xd4\xa1\xd9\x89\xe0\x71\xb2\x17\x79\xc9\x3a\x70\x7e\x6c\x02\x9f\xf8\x51\x2d\x42\x8e\xa2\x16\xc3\xdc\xb4\xb2\x78\x1e\x30\x3a\xa7\x5a\x49\xc4\x9c\x54\x4d\xdc\xa1\x17\xc2\xad\xbc\xbd\x31\x01\x65\x08\x8a\xdf\x44\xf1\x1e\x2c\x4f\x32\xbd\x57\xce\xa9\x8a\x28\x7c\xc0\x11\x3f\xd2\x20\xa1\xff\x93\x64\x25\x2e\xb7\x4b\xd2\xdc\x74\x9a\xb8\x9b\xa0\x1f\xbe\x2d\x43\x60\xcc\x86\x44\x1e\x23\x63\x45\xdc\x3e\x60\xcc\x86\x34\xc0\x80\xaa\xd2\x00\xb1\xea\x95\x24\x0d\x40\xa0\xfe\x24\x0d\x30\x99\x8d\xa7\x09\xe2\xff\x18\x70\x04\x11\x2e\x58\xd6\xbc\xbc\xb1\x96\x24\xa9\x0e\x0f\x9d\x92\x24\xc6\x93\x3a\x25\xc6\xa4\x2b\x4b\x62\xa2\xb0\x13\x2e\x49\x5c\x33\x21\x77\x1d\x82\x62\x48\x12\x63\x12\x9b\x25\x89\x71\xac\x69\xa9\x11\xf0\xe5\x80\x39\x7e\xcc\x82\x66\xfc\x28\xb9\x89\x00\xc0\x05\x43\x9b\xb7\x13\xaa\x09\x43\x9b\x03\xc5\x98\x24\xf1\x8b\x51\x48\xe2\x17\xf4\xee\x45\x50\x7c\xd9\xa9\x33\x12\xcc\xa6\x86\xb7\xfc\x01\x83\xdf\x7a\x13\x84\x37\x4f\x1a\x02\x83\x52\xdd\x9f\x7e\xb8\x01\xd1\x81\xcd\x84\x8f\x2c\x28\x9a\x1c\x45\x50\x78\xf3\x64\xf1\x78\xdc\x5e\x17\x12\xe7\xbd\x44\xf2\x4f\x4a\xf7\xf9\xf6\x1d\xb9\x8d\xb1\xc9\x39\xd0\x0e\xe8\x1f\x6f\x42\xde\x1e\x21\x29\x0a\x41\xdf\x0e\x34\x71\x4b\x02\x64\x01\xcc\xc9\xd0\x1d\xd0\x23\x28\x3a\x40\x62\x91\xb7\x13\x79\x29\x4b\xaa\x09\x5c\x9b\x25\xd5\x78\x10\xb5\x22\x46\x26\x22\x5d\xf6\x3f\xe2\x5c\x53\x6e\x83\x6f\xfc\x08\xb5\xe2\xaa\xb6\x64\xc9\x7c\x1c\x59\x8b\xe9\x11\xa1\x27\x0a\xf7\x32\x2f\xce\xa6\xc5\xe4\x88\xfb\xd6\x92\x25\xaa\xc4\xc9\xcf\x12\xd5\x78\x70\x4e\x8d\x17\xe7\x03\x96\xf8\x91\x26\x3e\xc8\x21\x71\xfc\x68\x5e\xe2\x88\x93\x52\x23\x7f\xed\x01\xbf\xf8\x31\x5a\x1c\x18\xfc\x36\xde\x87\x0f\x18\x4d\x32\x28\x5e\xae\x0b\xf1\x9b\xdf\x11\xae\x46\x85\x38\x5f\xef\x48\xd0\x18\xc9\x25\xa8\x7e\x21\xe2\xe0\x3b\x12\x44\x45\x54\x07\xab\x1c\x06\x42\x2f\xae\x9e\x45\x33\x35\x12\x64\x63\x55\x19\x38\x0c\x35\x2c\xbf\x0e\x18\x3d\x7d\xe8\x69\x82\x6e\x8f\x9a\x67\x14\x68\x0a\x9e\xb5\x0b\xd6\x42\x07\x0a\x29\x23\xfa\xdb\x01\x73\xfc\x98\x05\xc5\xa4\x92\xa0\xe2\x80\x31\xa9\xc8\xf5\xc8\xb8\x6c\xf1\x2e\x77\xc0\xe8\x5d\x55\x3d\xc1\xe5\x58\x16\xbd\x23\x52\xc5\x16\x4c\x89\xde\x11\x57\xa1\x25\xa3\x02\xf0\xee\x2c\xdc\xa7\x1d\x28\xfe\x0f\x15\x30\x0a\xb4\x41\xe6\x47\x78\x01\x15\x0c\x89\xde\x11\xa6\x65\x25\xa3\x00\x46\x41\x1a\x50\x00\x78\x73\x16\x36\xd9\x2f\x0f\xe9\x85\x7b\xb7\x03\xc5\x20\x9a\xfa\x82\xbb\x54\xd5\x08\xc3\xeb\xa7\x60\x73\xf4\x8e\x9b\x89\xea\x97\xa0\xa8\x86\xed\x00\x8f\xec\x05\x9b\xa3\x77\x44\x1e\xd2\xd4\xea\x63\xb0\xc5\x8f\xf4\xe6\x81\xe0\x28\x87\xf1\xa8\xd2\x21\xe8\x87\xdf\x5b\x12\x18\x43\x44\x55\xc8\x43\x54\x91\x31\x0f\x18\xfc\x86\xe6\x18\x0f\xb4\x61\x1f\x31\x88\x35\x88\x09\xd2\x81\x42\x53\x0c\xb5\x88\x68\x72\xdb\x7d\xc0\x43\x80\xe2\x16\xe5\xf7\x96\x0d\xbe\xf1\xa3\x5a\x0c\xca\x11\xc9\xee\x40\x3b\x20\x5a\xc4\x43\xa8\x35\x16\x40\xde\xd1\x4b\x91\x68\x84\xcd\x57\x29\xe2\xcd\x38\x91\x16\xec\x88\xde\xd1\xf4\x65\x13\x84\xfb\xdc\xe5\x1f\x73\xfc\xd8\x05\x45\xcf\xbb\x6a\x8d\x2b\xd3\x52\xd4\x55\xdc\x7c\x5a\x77\x23\x21\x71\x18\x1d\xbd\x83\x5c\xa5\x58\x19\xbd\x38\xb3\x96\x22\x1e\xc7\xaf\xa7\x75\xcd\x79\x8b\x6d\x1e\x56\x46\x07\xea\xfc\xa8\x5a\x63\x9b\x87\xd1\xd1\x3b\xe2\x68\x2b\x5b\xcf\x03\x45\x1b\x6c\x32\x46\x64\xed\x49\xad\x8b\x05\xc2\xd0\xab\x14\x51\x27\xa2\x4c\x94\x72\xff\xa3\x23\xfa\xf9\x34\xda\xb8\x55\x0d\xf3\x71\xab\x45\x66\x40\xea\x88\x9c\x3e\x52\xaa\x83\x50\xb0\x45\xfa\x07\xbf\xa2\x86\x21\xd3\x4b\x96\x86\x52\xa4\x72\xf0\x2b\x6a\xb8\x19\xbd\x4a\xd3\x50\xd4\xf1\x11\x5c\x56\xa4\x81\xc2\x04\xac\x14\xa9\x15\x36\x12\x58\x23\xbd\x63\xc4\x09\x8c\xf0\xbd\xaf\x1c\x78\xdb\xd0\x2c\x87\x79\x71\x29\xd2\x40\x61\x11\x56\x8a\xd4\x4a\xa4\xfc\x29\xa4\x42\x3a\x10\x7e\x90\x68\x67\x72\x23\x14\x52\x08\xbf\x63\xc2\x2c\xd2\x23\xe4\x38\x28\xd2\x23\x93\x19\x97\x1e\x99\x2c\x96\xe3\x31\x78\x24\xa9\x48\xad\xc8\x9f\x78\x54\x83\x31\x46\x69\x19\x42\xd5\x16\x69\x19\x36\x2f\x45\x5a\x26\x5c\x9e\x4a\x91\x96\x99\x70\x83\xb4\x0c\x6e\x4c\x6d\x48\x23\x84\x1b\x53\x29\x52\x3a\x0b\xe6\x90\x26\x21\x11\x6b\x91\x26\x59\x90\x58\xff\xc7\x6e\xa5\x48\x93\xac\x50\x1d\xd8\x58\x1d\x48\x1e\x9b\x06\xa3\x7d\x36\x28\x63\xc1\x54\xd2\x32\x0b\xbe\xe9\x6a\x9e\x31\xb1\x5b\xe1\x31\xbd\x14\x69\xa0\x15\x9b\xe3\x22\x0d\xb4\xe1\x22\xa9\x1c\x6e\x07\x8a\x74\xcc\xa6\xa3\x62\x22\xce\xf8\x45\x3a\x86\x33\x7e\x91\x8e\xc1\xa5\xa9\x5f\xd5\x60\x24\x89\x95\x8e\xc1\xbb\xba\x5f\x9a\xa9\x1d\x3c\x7d\x4b\xc7\x70\x01\x70\x4b\xc7\x10\x7f\xf7\x96\x36\x88\x47\xef\x42\x44\xa0\x03\xb5\x80\xba\x20\x48\xc3\x12\x3f\xc2\xbd\xa9\x60\xc8\xf5\x8e\xf0\x60\x2a\x5e\xa8\x5f\x7c\xf5\xae\xa1\x1f\x63\x73\xd0\x93\x1b\x21\x5b\x4c\xf2\x8f\xf2\x4a\x55\x9b\xa1\xc8\x6e\xa9\x4e\xae\x15\x6e\x29\xa0\xb0\xb1\x2b\xb7\x34\x4e\xd8\xd8\x15\x2c\xb2\x5e\x9c\xb6\x0b\x16\x59\xaf\xbc\xb4\x7b\x62\xc7\x33\x7e\xb1\x71\xc0\x40\xeb\x40\x51\x8d\x54\x4c\xb8\x42\x95\x9b\x1d\x0f\x2f\xde\xa9\xeb\x40\x30\x22\x5b\x6b\xb9\xa5\x71\x70\xe8\xee\x49\x22\xff\x0b\x71\x20\xfe\xe3\xc7\x5b\xa0\xb2\xd6\x1f\x28\xc2\xd4\xc6\xa2\x77\xa0\xfc\x97\x32\xf8\x53\x34\x74\x32\x94\x7f\x78\xba\x36\x12\x95\x1c\x28\x62\x48\xc7\x54\x1d\x28\x52\x67\xfd\x41\xed\x2f\x0e\xe7\x81\xfa\xff\x02\x8d\x08\x25\xec\xf6\xe6\x5f\xe2\xb5\x03\xad\x88\x7c\x7d\x0b\xda\xe7\xb7\x47\xff\xa7\x4c\x4f\x6a\x3d\x22\x8b\x62\xf0\x77\xa0\x88\x44\x7d\xa9\xd7\x11\xee\x19\x02\x1f\x28\xc2\xcd\x26\x5a\x88\x05\x57\xc1\x67\x3f\xc5\x54\x27\x3e\xe2\x81\x22\xd8\x6d\xe5\xff\x88\x9b\x8e\x15\xd2\x81\x22\x35\x5f\xfa\xc7\xfb\x8f\xf3\xe9\x8a\x21\xf9\x1f\xf7\xff\xa3\xdb\x11\x05\xf8\xe6\x9c\x78\xa0\xd3\x51\x76\xff\x07\x3a\x1d\xe5\xe2\xf4\xc3\x93\xf7\xe6\x4c\x73\x20\x82\xe2\x1b\xca\xff\xfe\x57\xf5\x00\xe3\xf5\xf4\xe1\x78\x77\x20\x92\xda\xfa\xcb\x27\x52\xfd\x77\x41\x35\xb2\x27\xab\x75\x62\x25\x5f\x86\x7a\x24\xf2\x71\xeb\xe3\xb4\xd7\xdd\xc2\x8c\xbc\x1e\xfe\x2d\x32\x40\x77\x91\x70\x92\xf3\xc3\xed\x45\xcc\xdc\xfe\x08\x8a\xe4\xbb\x97\x7b\xf6\x45\xf8\x57\x51\x42\x19\x40\x54\xe7\x4a\x7f\x99\x80\x0f\x14\x21\x65\x9b\xbf\x8c\xa8\xdf\x62\x50\xb2\xac\x77\xb1\x48\x84\x98\x54\x4e\xbf\x03\x45\x86\xbf\x9b\xbe\x90\x5a\x8a\x94\x97\x07\x8a\x50\xf0\xcf\x10\x14\x0c\x73\xdf\x82\x22\x75\xec\xdd\x04\xd5\xbf\x54\x4f\x07\x7a\xff\x72\x22\x1f\x28\x66\x4c\x63\xa8\x84\x97\xaf\x49\x50\x04\x40\x17\x25\xe2\x72\x5f\x79\xa4\x3f\xc2\xe7\xdf\x58\x0b\x1e\xe8\xd0\xe5\xaf\xbd\x98\x5b\xd3\xa5\xc2\xca\xa2\x6e\x25\x63\x8c\x5b\x27\xf1\x5a\xad\x82\x9e\xf8\xf2\x11\x14\x2d\x0c\xf5\x25\x02\xae\x9b\x97\x08\xb4\xdf\xfe\xea\x0c\x2a\x0d\xfd\x16\xc1\xe6\x6f\x09\x52\x25\x8a\xf3\xa5\x16\x16\x71\xb0\xfd\x65\xf0\x6e\x57\x3f\x83\xf2\xd8\xf3\x7d\x38\x6f\xff\x71\x79\x23\x77\x9d\x7a\xdd\x48\x51\xdc\xbb\xa0\xfa\x97\x76\xea\x40\x11\x7d\xbd\x35\x41\x3d\x5a\xf0\x6f\x21\x9c\xe2\x56\xf2\x3c\x9a\x23\x1b\x21\x81\x7b\x15\x14\x7d\xf9\x6b\x21\xe4\xc8\x5f\x46\x00\x7b\x4b\x4e\x6c\x0c\x95\x4f\xe9\x23\xcc\xff\x4d\x2c\x9b\x03\xfd\x02\x52\x9d\xc4\x97\x96\xe4\xc4\x13\xfc\x33\xa4\x28\x1a\xb3\xd2\xd5\xeb\x98\x15\x12\x25\x1c\x28\x92\x36\x64\xff\x16\xd9\x72\xb2\xc6\x40\x1e\x77\x69\x86\x48\x24\x70\x93\x45\xfe\xc3\xa3\xfc\xae\x6e\x21\x72\xfb\x17\xc9\x74\xbc\xb0\x54\xec\x3e\x3f\x5e\xea\x9f\x56\xfc\x5b\xc4\x15\x6f\x86\xd0\x28\x86\xbe\xf3\x7f\xa2\x44\xbc\xe9\xd7\xfa\x07\x1d\xde\xcd\xa2\x6e\x0f\xb5\x6f\xbd\x14\x4e\x6e\x77\x16\x7f\xc6\xce\xf6\xce\xe2\xba\xae\x2c\x8c\x97\xa0\x1a\x91\xe7\xb3\xa0\xf6\x97\xcb\xfc\xc3\x29\xbe\xb5\xcb\x75\x8e\xbf\x84\x5f\x1f\x16\x05\xa5\xde\xee\x0b\x09\xfe\xa0\x60\x9f\xff\x93\x39\xf6\x40\xdf\x5f\xf6\xa8\x6f\x6d\x22\x31\x44\x73\xeb\x25\x12\xc4\xff\x7a\xcb\x71\xff\xbf\x14\xf2\xe2\xc4\x0f\xf5\x16\xe7\xfd\xd8\xa6\x1e\x00\xab\x54\x01\x35\x6e\x02\xfe\x7f\x35\xfc\xff\x35\xff\xcf\xff\xe3\xf7\x5f\xff\x9d\xaf\x7f\xff\xeb\xbf\xdb\x69\xfa\xbf\xfe\x7b\x87\xcb\xe9\xf9\x53\xfe\xfd\xaf\x08\x90\xb0\x23\x18\xff\x7f\xef\x78\x12\x08\x4b\xe2\x1d\x79\x01\xcf\x9f\x11\x69\xe9\x0e\x66\xf1\x4d\xe8\xab\xb3\xd5\xde\x61\x31\x7f\xfe\xa4\xd0\xc9\x81\x29\x60\x22\x31\x45\xfe\xaf\xff\x7e\xe3\x75\xfd\xfc\x79\x22\xde\xe1\x15\xa8\x1a\xa8\x05\xaa\x1d\xd4\x12\x2a\x82\x71\x1d\xad\xf2\xc6\x1d\xc3\xf9\x43\x28\xb1\x43\xca\xdc\xc3\x0a\x8c\x02\x41\xa3\x84\xed\xc6\x46\xec\xa0\x5b\xd8\x6d\x6c\x04\xb5\xae\x60\x8f\x50\x50\x08\xcb\xe8\x47\xd8\xc7\x58\x02\xef\x81\x0d\x3a\x45\x21\x3c\x4e\xd4\xda\x51\x30\x14\xe6\xbf\xff\xd5\x31\x6f\xcc\x24\x78\xa6\xb0\xfe\xfd\xaf\x9e\xf5\x75\x64\x15\xa4\xf0\x3b\xe8\x87\x81\xc4\x35\x05\x85\xfb\x4c\x42\x0b\xec\xe3\xe1\xc5\x2d\x36\x46\x49\x07\x58\xc6\x46\xee\x91\x02\xd6\x03\x21\x1d\x6f\xe8\xf3\x8c\xcf\x15\x85\x50\x44\x60\xe3\x30\x4b\x81\x3b\x48\x61\x8b\xb1\x84\xd9\x09\x6c\xe8\x41\x0a\xcf\xbf\xff\xd5\x49\x08\x9c\x7b\x37\x85\xfa\xa1\x50\xc7\xf0\xec\x40\xcd\x68\x62\x17\x08\xbb\x8c\x25\x42\x48\x60\xe3\xa2\x96\x42\x38\x66\xdd\xc2\x56\x63\xdb\xa9\x38\x1b\xfd\x33\xfa\x3b\x68\x4d\xd4\xf0\xf8\x06\xcc\xdb\x93\xd0\xae\xe4\x1c\x7e\x3b\xa1\x0a\x0f\x34\x8d\x5e\x41\x65\x2a\x09\xdb\x64\x0a\x29\xd0\x43\xe8\x6c\x74\x04\x84\xe9\xc2\x56\x63\x23\x66\x08\xe4\x88\xab\x64\x0a\xf4\x9a\x09\x8c\x33\x13\x85\x7d\xd0\xa2\x7f\xd8\xf4\x50\xf8\xa2\x41\xbe\x8e\x08\x84\x14\xa2\x7b\x50\x8f\x3b\x33\x0a\x67\xbe\x63\xdb\x97\xb9\x10\x8b\x42\x8c\x1c\xef\xa7\x03\xdd\x46\x9f\xaa\xe9\x07\x77\x62\x14\xf2\xbf\xff\x45\x80\x94\x03\x14\x63\xdb\xbf\xff\x35\x70\x24\xcf\xf8\x7e\x44\xe1\x48\x24\x01\x74\x32\x91\xd0\x28\x9c\x8a\x39\x6c\x65\xc2\x9c\x51\x08\xf4\x10\x7a\x18\x1d\x39\x54\x2e\xba\x11\x69\x83\x28\x44\x7e\x7c\xba\x11\xdb\x60\x0a\xe4\x9f\x17\xb6\x1a\x1b\xa9\xa0\x8b\xb0\xc3\xd8\x48\x80\xf2\x08\xfb\x1a\x1b\xb9\x14\xd5\xda\x72\xbd\x2b\xea\x55\x6b\xeb\x31\xf6\x6c\x24\x9b\x5a\x5b\xae\x37\x16\xad\xa6\xd6\x96\xeb\x25\xbf\x12\xad\x3d\x1e\xf2\x13\x8a\x8e\xc9\x1b\x8f\x89\x19\x3b\x70\x56\xfc\x4c\x64\x33\x0a\xe1\xbe\x44\xbd\xcd\xd4\x89\xdb\x21\x2e\x83\x33\x76\xf7\x14\xc2\xa5\x2e\x0b\x3b\x8c\x9d\x61\xcf\x1f\xd8\xd7\xb3\x11\xa6\xc9\xbd\xaa\xc3\xbf\x0e\x07\x8d\xdf\x91\xe5\xce\x2d\x4b\xe1\xf9\x94\x42\x04\xde\x4b\xc2\x76\x61\x07\xb1\xd1\xc1\x8e\xdb\xd8\x08\x36\xd7\x85\xad\xc6\x8e\xc3\x56\x21\xee\x07\xfa\x19\xfd\xfd\xfb\x5f\x83\xdb\xa9\xd2\x13\xda\xac\x90\xbb\x1e\x8b\xac\xd2\xb3\x7b\x91\x4f\xe7\x46\xa8\xe5\xd2\xf3\xd4\xb7\xc1\x57\x04\x2d\x29\xbd\xf8\xdb\xf0\xa2\xc5\xbc\xa1\x74\xcd\xe8\x29\x44\x5e\x78\xfa\xf6\xf8\xdb\x38\x44\x70\xb3\x71\x80\x47\xd8\x58\xa0\x2e\x3a\x5c\xfd\x2d\x9b\xe0\xd8\xc5\x14\x7c\x21\xa3\x10\x69\x10\x55\x83\xe6\xa3\xa0\x2d\x88\x31\x57\xfa\x84\xc4\xa7\x10\xfd\x15\x31\x7f\xae\xe2\x47\xc6\xc7\x26\x6c\x37\x76\xc4\x8e\x51\xd8\x69\x6c\xa4\xdf\xaa\xc2\xbe\xc6\x7e\x91\xe7\x1a\xec\x70\xbd\x91\xe6\xaa\x18\xfb\x18\x1b\x49\x26\xd4\xda\x18\xc2\x86\x20\x0d\x61\x63\xe5\x8e\x42\xe4\x87\x29\xc2\x36\x63\xfb\xe9\xd9\x23\xec\x5f\x0d\x91\x01\xd2\x58\xf7\xec\xe8\x9c\xaa\xe9\xfc\x2d\xf7\x2c\xb2\xad\x24\xb5\xb6\x3c\xb6\xd8\xb7\x15\x46\xfc\x99\x3a\xb1\x37\x38\x5b\x26\xf6\x27\xec\x46\xfe\xbf\x36\x28\xbf\x67\x15\x34\xdc\x83\xe5\xd6\xc3\x93\xf2\x83\x35\x0a\x85\xf7\xb4\x10\x0d\x3f\xeb\x63\xd1\x3f\x85\x58\xff\x42\x11\x55\xfc\xa5\x29\x44\x4e\x98\xe0\xd0\x8a\xdb\x32\x85\xd0\x4f\x71\x00\xa9\x23\x8c\xb3\x29\x44\x8e\x9a\xd8\x66\xd4\xd1\x50\xe3\xa7\x70\xb6\xde\xb8\x61\xd6\x31\x10\xf9\x8a\x73\x4d\xc3\xb4\xac\x92\x33\x92\x42\x70\x5e\x1c\x05\xea\xf8\x21\xb2\xa7\x10\xf7\x3c\x71\xad\x51\x39\x15\x53\xc8\xd1\xc1\x11\xe8\x0f\x81\x3b\x85\x7e\xf6\x4e\x31\x99\xad\x57\xf4\x54\xe3\xcd\xb7\x63\x2d\xd1\xfa\xa6\xee\x53\x88\x6c\xea\x71\x49\xd2\xc8\xca\x4a\x21\x92\x47\xc5\xdc\xb7\x99\x99\xa3\x53\x88\x5c\x3f\xc1\xd9\x6d\x46\xda\x05\x0a\x71\x84\x89\xf7\xb4\x36\x27\x3c\xd1\x88\x96\x54\xd1\x1e\x6d\xdd\x30\xf1\x29\xac\x48\xfa\x79\x08\xdb\x79\x7d\xa7\x10\xbb\xc0\xd0\x78\x7d\xc6\x6e\x87\x42\xd0\x24\x36\x38\x9d\x0c\x77\x14\x9e\x48\x5f\x7b\xea\x1e\x23\x22\x09\x50\xc8\x91\x19\xa5\x05\xba\x1a\x1d\x31\x3a\x9a\xb2\x27\xe1\xe7\x43\x81\x74\x8b\xd7\x7f\x91\x8c\xb4\x83\x5e\x67\x00\x35\x3b\x4d\x19\x6b\xef\x29\xc4\x11\x4b\xa1\xe4\xa5\x22\xa7\xe2\xdc\x5c\x4a\x61\x71\xb1\x07\x38\x85\xa3\xb3\x1c\x16\x3e\x92\x3e\x52\xa8\x81\x7e\x84\x6e\x46\x13\xee\x75\x08\xbd\x8c\x0e\x95\xa1\xf0\xf1\x6c\x85\xa3\x10\xf1\x7a\x15\xde\xff\x42\x8a\x4f\x21\xf6\xa9\x4a\x59\x21\x55\x7b\x0a\xe8\x49\x7d\x0d\xfb\x9c\x42\x74\x50\xf9\x11\xb4\x81\x3d\x85\x15\xe8\x2e\xf4\x36\x9a\xba\x8d\xfe\x84\x0e\xd7\x59\x42\x71\xcc\xa5\xfd\xee\x29\xb4\x48\x26\x23\x9a\x20\x24\xa7\x30\x08\xf8\x29\xf4\x34\x3a\x9a\x54\x1e\x85\x0b\x1e\x9c\x18\xb9\x8e\xa2\xbc\x28\x5a\x22\x4e\x61\x06\xba\x09\xad\x51\x46\x64\xc1\x51\x94\x46\x21\x8d\xc7\xe8\xe8\x89\x72\x26\x24\x93\x2a\x32\x77\x8f\xa2\x4c\x23\x11\xb5\x27\x0a\x33\x9a\x54\xa2\x94\xb4\x44\x6f\xe2\x0b\x7a\xe6\x93\x47\x19\x1b\xa9\xc1\x4a\x31\xb1\x7a\xa5\x10\xb9\x5e\x94\x9c\x20\xad\x66\x34\xe9\x6f\x1e\xa1\x97\xd1\x5f\x7c\x4d\x07\xb3\xb9\x8a\x67\xc8\xa4\xfc\x03\xda\x78\x9d\x42\xc4\x61\x54\x8a\x84\x6c\xf6\x89\x40\x43\xe3\xce\x46\x0f\xa3\xe3\xe0\x58\x5c\xf7\x6b\x74\x34\xa9\xe1\xe4\x21\xc2\xb2\xca\xde\xea\x60\x36\x05\x23\x48\xfe\xb8\xdd\x93\xb1\x8d\x0e\x86\x50\xf2\x82\x70\x11\x89\x42\x18\xea\xa7\xbf\x34\x3b\xd9\xe8\x16\xb9\x78\xaa\xd0\xdd\xe8\x08\x40\x28\x1e\xcc\xd3\x1d\x8c\x5c\x44\xb7\x38\x36\x9b\xd9\x08\xd0\x98\x94\xe3\x22\x2f\xf7\x3b\x98\xed\x76\x25\x66\x36\xa2\xeb\x72\x43\x78\xa0\x65\x74\xf4\x5b\x29\x18\xf2\xfa\x19\x1d\x34\x11\xba\x58\x8a\x23\xb4\xe3\xb8\xff\xb2\xff\x3c\x46\x47\x93\x7f\x89\x7f\x86\xd1\x41\x2a\xe7\xf5\x31\xbd\xe3\x0d\x77\xdc\x4e\xf0\x33\xba\xd1\xd1\x64\x53\x93\x53\x33\x4f\xf8\xc6\x24\x69\x28\xa6\x60\x09\x71\xe5\xbc\x32\x49\x00\x47\x21\x98\xad\xbb\x92\x66\x34\x41\x49\x1f\xa1\xdd\x13\x08\x2b\xb6\x2f\x26\x2c\xd1\x7d\xb1\x41\x39\x90\xeb\x56\xd0\x4f\xd5\x6d\x46\x8e\x07\xe3\xc1\xa5\xdb\x24\xde\x13\x85\x20\x6c\x53\x93\x26\x6c\x81\xb0\x4a\x29\x72\x5b\x8a\x6f\x08\xab\x6c\x22\xb7\x19\x39\xd6\x86\xf1\x28\x91\x48\xdc\x85\x53\x78\x89\xf7\x09\x7a\x88\x26\xf1\xac\x3c\x1e\x09\xe0\x6d\xe1\x0e\x13\xeb\xf1\x28\x79\xd5\x6d\xe1\x8e\x33\xc4\x78\x94\x6f\xe7\xb6\x1e\x0c\xd3\xe9\xf1\x28\x11\x55\x1c\x13\x28\x44\x25\x4a\xf9\x71\x5b\x0f\xde\xe8\xc1\xee\x4a\x34\xca\x3b\x54\xc1\xa3\xdc\x3a\x37\xab\xd4\x29\x3c\x44\xe6\x14\xba\x1a\x1d\xfd\x96\x5a\xd7\x51\x62\x92\x49\x6f\x3c\xca\x63\x72\x5b\x0f\xc6\xde\x75\x3c\x12\xa9\xc7\x1a\x22\xce\x0f\xe3\xb9\x9f\x7f\xde\x1a\x9d\x8f\x6f\xff\x17\x3d\xba\x85\x9e\x46\x47\x1b\x12\x96\xc7\x2a\x21\xee\x13\xc6\xa3\x74\x57\x8f\x55\xc2\x03\xdd\x95\xea\xe6\x31\xdd\xe3\x46\x61\x70\xf2\x9a\x18\x93\x53\x88\x61\x29\xdd\xcd\x63\x4a\x12\x7b\x33\x5f\xfe\xfa\x67\x74\xf4\x44\x53\xfd\x58\xc8\xe3\x76\x7c\x3c\x4a\x37\x15\xb7\xe3\x14\x08\xcb\x59\x85\x6e\x46\xcf\xf8\x5a\xa3\xb4\xec\x3f\xc1\xa2\x59\xab\x55\x35\x2f\x92\x57\x22\x4b\x05\x57\xeb\xda\x70\x9a\x1f\xcf\xf0\xd7\xdd\xe8\x11\x5f\x57\xa1\xa7\xd1\x31\x4a\xa5\xd5\xa9\x96\xfd\x0a\x61\x95\x43\xa7\x9a\xb0\xe1\x6e\x35\xaa\x32\x25\x55\x2b\xd5\x70\xb4\x4a\x39\x1b\x2d\x9a\xc4\x85\xf8\xa8\x5a\x51\xaa\x65\xbf\x72\xd4\x51\xa6\x9b\x6a\xc5\x17\xd7\xd2\xa3\x6a\x8b\xd1\xcc\x2f\x44\x13\xcd\xca\x76\xd3\xac\xe1\x5a\xb0\x51\x95\xae\x6d\xd6\x70\x71\x47\x3d\xea\xed\x4a\x86\xd1\x51\xb7\x76\x07\xcd\x1b\x12\x8c\x16\x72\x36\xfa\x36\x3a\x46\x29\xed\xd9\x2c\x88\x71\xcb\x3c\xaa\xf4\x61\xb3\x20\x36\x46\xa9\x85\xbd\x79\x94\x61\x8e\x30\x6a\x83\x26\xcd\xa3\x24\x6f\x46\xd6\xda\xd6\xbc\x97\x88\x9d\xf7\xa8\xda\x48\x35\xcb\x50\x5c\x11\x8f\x2a\x9d\xd5\x4d\x93\x0e\x4d\x9c\x78\xca\x34\xe9\x0c\x5e\xfb\xab\xee\x99\xef\xcc\xbc\x96\xbc\xee\x9d\x47\x0f\x21\x69\xda\x76\x75\x0b\x49\xdc\xe1\x8e\xa6\xdc\x46\xdd\x7b\x89\x4e\x94\x50\x11\xb6\x7b\x2f\x11\x36\xfb\xa3\x69\x38\xdd\x2a\x38\x9c\xfb\x47\xd3\xba\xd9\xcd\xdf\xb8\xf5\x67\x4d\x43\x37\x7f\x87\x41\xe4\x68\x52\x20\xc3\xa3\x54\xc0\x55\x09\xf7\xf0\x14\x0f\x62\xf3\x39\x99\x95\x55\xf0\xe8\x91\x8c\x4b\x99\x87\x86\x55\xf0\x50\x88\x46\x86\x33\xcc\xc8\x83\xc1\xbb\xee\xe1\x4a\x62\xe6\x9b\xf2\x90\x0d\xf3\xf7\x18\x0a\x81\x28\xb4\xd6\x9f\x41\xae\x35\xad\x56\xc3\x4b\x5e\xdc\xf7\x8d\xe6\xdc\x5b\xb3\x1a\xdd\x02\xad\x7e\x7b\x2f\x41\xfc\xb6\xac\x45\x6c\x58\x8f\x87\x13\xc3\x20\x35\xe4\xc4\x6b\x81\x42\x90\xca\xf9\xb9\xac\x66\xe2\xfa\x6f\xb4\xbf\x44\x5d\xae\x1b\x66\xd3\x4a\x38\x4c\xef\x81\x3e\xd1\x92\x37\xbc\xe4\x0d\xa6\x41\x69\xf3\xa6\xa7\x21\x6e\x05\x47\xd3\x0a\x3e\xad\x91\xc3\xbe\x23\xe5\xbf\xfc\x5f\xd5\xe8\xe8\xb7\xd2\x7b\x4d\xeb\x93\xb8\x20\x1c\x4d\x8c\x3c\xbd\xf8\x4e\xc2\x0a\xab\xee\x65\xcd\x16\x91\x08\x46\x17\x43\x2c\xcf\x7c\x58\x87\x8e\xae\x15\x65\x79\x8a\x17\x61\xf6\x74\x92\x89\xab\xc6\x28\x20\xdc\x5a\xf2\x96\x17\xdf\x30\xcc\x18\x5d\x59\xd3\x96\x77\x35\x61\x92\x91\xb2\x3a\xa8\x1b\xca\x49\x46\xd0\xd1\xa5\x0a\x96\x55\x41\x24\x3b\x19\x5d\x1b\xa9\x35\x87\xd1\x47\x7f\x77\xcd\xe5\xf2\xda\xb0\x42\x48\xba\x56\x92\x65\x21\x89\x88\x41\xa3\x8b\x82\xcb\xcb\xe9\x0a\x52\x75\xd3\xc4\xaa\x60\x91\x53\x4d\x6b\xc3\xf6\xec\xec\x38\x98\x75\x6d\x8d\xb6\xa5\x81\x2c\x2a\x45\x8a\x7a\x5b\x0f\x46\x8c\x85\xd1\x87\x2b\xf9\x19\x1d\x75\x6b\x57\xb3\x2d\x24\x61\xfd\x31\x86\x2b\xf1\x0a\x18\x76\x1f\xa9\x5c\xaa\xc4\xa3\xdc\xc1\x9a\x43\x19\xfd\xb6\x47\x19\x51\xf7\xc7\xd0\x16\x63\x7b\xe6\xf7\xa2\x12\x48\xf5\x7a\xe6\x23\x1b\x73\xc2\xfc\x6c\x12\x20\x90\xc2\x21\xd5\x90\x0a\x7b\xad\xd9\x88\x85\x5b\xb4\x63\x7a\xbd\xa6\x45\xa4\x84\x31\x94\x5e\xef\xf5\x70\xde\x98\xcb\xa1\x99\x7f\x2d\xdc\x24\x8a\x29\xda\x5f\xbd\x5e\xbc\xc2\x9c\x64\x0c\x49\xf1\xeb\x5d\xc1\xcb\x1d\xbe\x96\xba\xd7\xc2\x1d\xce\x28\x63\x68\x11\x78\xad\xd6\xe3\xd6\x72\x0c\xb1\xe6\xcf\xa3\xfc\x05\x7f\x0f\xa5\x88\xfc\x99\xbf\x7f\x8c\x72\xfc\x47\x5b\xa3\x9f\xe7\xf4\xc7\x68\x35\x79\x3f\xaf\x6d\x3f\x52\x86\x29\xdd\xe2\xcf\xec\x4f\x32\x99\xeb\x52\xda\xc7\xdf\xa8\xc6\x2f\xf0\xae\x46\x6c\x47\x30\xde\xeb\xd2\x2e\xe3\x67\xd5\xf2\x23\x41\x9d\x4e\x74\x3f\x0f\xf8\xb7\xa8\x46\xe9\xe0\x7e\xeb\xaf\x9a\x0f\x3c\xaa\xe8\x33\x25\x3e\xd2\x8a\x5d\x4e\x18\x67\xfe\x25\x1d\x41\xd1\xba\xf2\x59\x8d\x90\xc3\xa6\x68\xe1\xfb\x2c\xea\xc4\xfa\xbd\x2e\xad\x09\x9f\xd7\xb2\x4f\x83\x52\x6e\xd3\xcf\x83\xfa\xc8\x55\x74\x49\xbb\x7e\xd6\xc5\x1f\xb1\x34\xa5\x60\x3e\xeb\xe2\x8f\xb4\x3e\x97\x52\x8f\x7e\x5e\x13\x3f\x92\xa9\x89\xcf\x3e\xaf\x89\xe1\xfd\x93\xae\x4b\x87\x9b\xcf\x92\xf0\x89\x94\xd2\x8d\x9f\x05\xfe\x13\x6d\x94\x08\x47\x37\x34\xa7\x40\xf5\x46\x67\xa3\xa9\x5e\xa9\xa7\x74\x45\x73\x0a\x0c\x56\x09\xdb\x2e\x68\x76\x0a\x51\x7d\x52\xc2\xa9\x0b\x71\x58\xbc\x29\x1e\xbc\xbe\x1f\xae\x07\xa2\x29\x4e\xa9\x9f\x13\x97\x9e\x13\xcb\xe3\x6a\x7e\x42\x43\xcb\xa4\xac\x50\x17\xba\x70\x75\xbd\x69\x26\x25\x9e\x4b\x1e\x55\xa2\xfb\x0a\x09\xda\x13\x22\x7e\x0a\x84\x71\xf4\xe7\xd5\x68\xaa\x57\xb3\x89\x29\x5f\x9d\x04\x0d\x57\x72\x1e\x40\xde\xf4\x4e\x81\xe0\x87\x45\xe8\x69\xf4\x26\x67\xdf\x23\xbc\x7a\x9f\xe0\xd7\xa4\x54\x65\x69\x6d\xe3\x49\xe3\xa7\xda\xd7\xdf\xe7\x0c\x4a\xe9\xeb\xf4\x9a\x79\x0a\x85\x67\xde\x4b\xf8\xc7\x78\x32\xf5\x91\x80\xa1\xe7\xbe\x8d\x8f\xea\x9b\xd0\x43\x53\x9b\xb9\x20\xcb\xca\xd4\x95\x59\x9c\x4e\x81\xf8\x82\x4d\xe8\xd7\x68\x65\x10\x1c\xc2\x8b\x36\x0a\x26\xaa\x4c\x4f\x79\x16\xa3\xa9\x3d\x1b\xef\xda\xe1\x7a\xa5\x77\xca\xbc\x61\x9e\xc2\x47\x2c\x3e\xd0\xcb\xb5\xc4\xd9\x10\xcb\xc2\xd5\xf5\x5a\xb6\x70\xb2\x3a\x95\xab\x2f\x6b\x18\x0f\x05\x8a\x1a\x5d\xee\x3b\x94\xcc\xca\xca\x57\xcc\x1e\x45\x94\x24\x2c\x31\x0e\x59\x14\x68\xb6\x0b\xdd\x8c\x8e\xb8\x22\xa2\x7b\xe9\xd3\x68\x6a\x57\x1a\x2a\xbd\xd2\x9d\x02\x21\xf3\x8a\xd0\xd9\x68\x1a\x95\xa8\x15\x8b\x42\xd1\x7c\x88\x57\xcb\x18\xc6\x53\xbd\x12\x54\x96\x29\x36\x20\x25\xf2\x95\x95\x7f\xb2\x4c\x11\xa7\x68\xb0\x4a\x95\x76\x7b\xb0\x37\xcc\x9d\x95\xe6\x4a\x77\xf8\x8b\x3b\xfc\xc4\x0d\xdd\x81\x96\xd1\x11\x30\x4a\x49\xde\x6e\x0b\xf8\xad\xc1\x0e\x7d\xee\x51\xdd\x31\x2a\xae\xe8\x0e\x74\x1b\xdd\x48\xab\x58\x84\x77\xa3\x04\xe9\x51\xae\xb7\x7b\xb8\xd1\x10\xfb\x5b\xb9\x26\x6f\x0b\xce\x4d\x6a\xab\xe2\xbc\x8e\x66\x32\xa2\xb1\xde\xe2\xb1\xdb\x14\xb8\xe1\xbd\xe2\x4c\x8f\xd6\x12\x37\xe9\xef\x8a\xd2\xcf\xe9\x81\x73\xf5\x1b\x1d\x5a\xdc\xec\x72\xe7\x09\x4d\xa6\xe4\x96\xf7\x6a\x46\x47\xdf\xb3\xbf\x9e\x46\x7f\xa4\x85\xe4\xf3\xc7\x74\x8f\x07\xcd\x74\x8b\x27\x1f\x6b\xd6\x07\xde\x23\xde\xe4\x01\x1f\xe3\xe9\xbc\x33\x48\xf6\x61\x3c\xd5\x8b\x57\x1f\x73\x19\x49\x3f\x6e\xe5\x5d\x7b\x3c\x1f\x0f\x5c\x56\x94\x33\xf2\xf1\x84\x3c\x04\x4b\xfa\xab\xa5\x1a\x4d\xab\xca\x1b\xf9\x98\xf9\x1e\xf4\xb3\xd7\x85\xc7\xda\x80\x10\x7c\x97\x33\xaa\x3e\x66\xca\x07\xc9\xb4\xe2\x7e\x56\x37\x3e\x68\x26\x11\x79\x4c\xb3\x07\x81\xb5\xb2\x79\x2c\xb0\x8f\x68\xa9\x0c\x8b\xba\x6e\x38\x05\xaa\x57\x06\xc5\x6a\x1e\xe6\xbe\xe1\x56\xee\xd7\xda\xc5\x37\x55\x39\x3e\xc5\xf2\xd5\xc4\xa9\x4a\x4b\x99\x84\x7e\x8c\xa6\x76\x42\x68\xf7\x6a\x22\x54\x11\x41\x8b\x5d\x35\x11\x2a\x7c\x66\x85\x50\xcd\x67\xc4\xea\xbb\x8e\xec\xfc\xe3\xde\x6a\xf5\x66\x46\x21\xa6\xdf\xe5\xdc\xa1\xcd\x22\x47\xc4\xbe\xcb\x39\x3d\x9b\xd7\x54\x32\x57\x5f\x4e\xe7\xd9\x3c\x0c\x82\xc4\x5c\xb7\x92\x11\x36\xaf\xa9\x0d\xe1\x92\xbe\x68\xd3\xcd\x6a\x14\x7f\xf8\x6e\x3c\x49\x37\x8b\xd0\xd3\x68\x6a\x77\xbe\x4d\x0b\x11\x21\xff\xae\x5b\x79\x04\xdb\x72\x2f\xe3\x18\x7e\xdd\x5a\x7e\x9a\x57\xb7\x26\x22\x69\x2a\xbb\xa9\xd0\x91\x8b\x5b\x2b\x44\xb7\x4e\x0e\xf3\xb2\xe4\xea\xbb\x97\xec\x0e\x47\x38\x6f\x66\xb7\xb8\x10\x99\xe6\xe2\x06\xf6\x80\xcb\xf8\x50\x6b\xcd\xad\xaa\xf7\x5d\xb4\xd4\x4a\xd3\x2d\x2e\x64\x6c\xb9\x95\xf2\xb0\x7b\x85\xef\xb0\xff\xa3\xe4\xb1\xdd\xec\x4f\xd4\xdc\xeb\x91\xa2\xd2\x15\xc5\x29\x04\xd1\x1e\xed\x4f\xba\xf9\xbc\x43\x84\x47\x53\x3e\x4c\x84\x01\x27\x3e\x12\xd3\x61\x4e\x1c\x4c\xed\xa3\xb4\xc2\xc3\x9c\x38\xd4\x1f\xe9\xfc\xe1\xfe\x0c\xe6\xf6\x51\xe6\xd4\xe1\xb9\xe5\x1e\xc0\x34\x1e\x9e\xdb\xa1\xee\x2b\xdf\xe3\xb0\x22\x1c\x28\x42\xad\xce\xc3\xcb\xf0\xd0\xa8\xfe\x32\x98\xba\x37\x1a\x95\xc4\x6e\x7a\x54\x98\xfc\x5c\xca\x90\xd8\xa7\xa7\x96\xd3\xfd\xfd\xf7\x79\x35\x9a\x14\xac\x12\xbb\xe9\xf5\x76\x76\x19\xb0\xe9\x7b\x6b\xc2\x89\x26\x74\xed\x16\xf6\xc9\xd4\x56\x27\x36\xb5\x98\x4c\x68\xac\x24\x88\x44\x0a\xa6\x10\x61\x14\x87\x3f\x5f\x46\xd3\xaa\x16\xc4\x69\xf1\x99\x44\xad\xd5\x7a\x38\xa7\x6b\x9f\x04\xeb\xca\x42\x37\xa3\x07\xb5\xa8\x51\x4b\xcf\x44\x7a\x94\xaf\x10\xf7\x57\x0a\x74\x5e\xb9\x86\xa7\x19\x6a\xca\x88\x4f\x8b\xd0\x32\x89\x17\xe2\xa0\xf4\x6d\x7d\x59\x41\x2e\x22\x50\x5d\xfe\x7c\x1a\x4d\x42\x58\x29\xce\x65\x71\x58\x22\xb1\x54\xcb\xf2\x86\x77\x89\x66\xda\x8b\x2c\xd3\x8c\x0b\x8d\x27\x19\x2d\x19\x5f\x93\xd4\xb0\x52\x2d\x6b\xde\xc6\x57\xa2\x7c\x09\x3d\x8c\x26\x59\xac\xb2\xfe\x2e\x6f\x0e\x17\x51\x7f\x44\x9b\xb5\x3c\x56\x12\x4a\x2b\xa7\x61\x5f\xde\x34\xc6\x9d\x47\xb2\xac\x2d\x2f\xdb\x71\xd5\x91\x88\x7b\x7a\xa0\x6d\x74\xec\x6b\xab\x92\x02\x6f\x53\x32\x92\x09\x24\x65\x66\xc1\xaf\x97\x02\x13\x22\x8d\xb0\xbd\x6c\x6f\x11\x5e\x2b\xd9\xb6\x1e\xda\xa2\xa4\xb2\x03\x6f\x33\x2b\x49\x81\x9e\xdb\xe8\x62\x74\xf4\x5d\xeb\xe4\xf6\xf2\xbc\x91\xfb\xaa\x53\xdb\xb6\xdc\x6f\xb1\x81\x56\xac\xd7\x9d\x7f\xe1\xf9\xa6\x0d\xf2\x6b\x75\xf6\x12\xe8\x48\x2b\xc9\x6b\xb5\xf2\x0e\x65\x9d\xbd\x84\x5f\xc6\x47\x70\x9d\x3f\xf4\xcf\xe8\x98\x8f\xbf\x64\xb7\x6e\x94\x1c\xbd\x4d\xcc\xf1\x7a\xb6\xb9\xc5\x50\x82\x19\x82\x4c\x53\x20\x67\xae\x98\xe3\xf5\xb4\x12\x69\xfa\xf9\x43\x67\xa3\xa9\x5d\xeb\xd1\x6b\x49\x78\xd9\x71\x34\x1d\xb6\x5e\x9f\x05\x08\x2f\x79\x35\x71\xc7\xcf\xa4\xf9\x31\xaf\xd2\x94\x3f\xef\x2c\xe2\x5e\x24\x3d\x62\xbd\x9f\x75\xd0\x0f\x01\x69\xcd\xf8\xd7\x78\x6a\x57\x0e\xdb\x9f\xd7\xe4\x9f\x08\x2f\xcd\xfa\xb3\xb2\xf9\x0d\x7d\xaf\xde\x98\x66\x3f\x62\xb6\x89\xf9\x7e\x33\x1b\xcd\xa0\xa4\x55\x7e\x96\x90\x1f\x8b\x6f\x57\xca\xe6\x9f\xd5\x87\x6e\x3c\x94\x33\xcf\x96\x41\xa7\x10\xdd\x51\x66\xb9\xfe\x59\xe3\x7e\x8c\x56\xa3\xfa\x3c\x5a\x92\x36\x5e\xca\x20\xd7\x3f\x33\xb1\x12\xf6\x77\xe5\x38\xff\xbc\x98\x92\xab\xff\xd1\x2e\xed\x33\x11\x74\x43\xa2\x6c\x2f\xfd\x33\xf7\x7d\x30\xb7\x56\xfc\xcf\xec\xf4\x41\x9b\xae\xad\xea\xe7\xc5\xeb\x83\x9f\x94\x40\xae\x7f\x56\xad\xba\x50\xe9\xf7\xf8\x4f\xb6\x57\x9f\x69\xf7\xb1\x5a\x75\xb1\xed\xe7\xd5\x4a\x37\x22\x9d\xbc\x1d\xc3\x37\x22\x43\x57\x19\x5d\x09\x3d\x7d\x95\x31\x64\x58\xa2\xbc\x6d\x43\x96\x25\xa7\x40\xfd\xca\x46\x7a\x49\x46\xc7\xc5\xf0\x86\xf2\x92\xca\xb6\xe4\x14\x30\x50\x51\x32\xdf\x4b\x6b\xf3\xb8\x48\x08\xed\x6a\x24\x2e\x03\xf3\xe8\x4b\x09\xd9\xc6\x25\xfe\x1f\xba\xfa\x18\x4a\x03\xea\xab\x8f\x21\x9b\xee\xa1\x84\xa0\x69\x18\x1f\x8a\xa7\x2a\x2f\x6a\xd2\x2a\x39\x48\x3a\x79\x0d\x65\xfa\x94\x6d\xc8\x29\xd0\x4b\x25\xa7\x4d\x1e\x6d\xd2\xa8\x1e\xd5\x33\x5d\xfd\xa4\xfa\x47\xe8\x6a\x74\x10\x47\x59\xbe\xf0\x4a\x8f\x82\x7a\x8f\xdc\x0d\xdf\x71\x60\x3c\x9b\xae\x81\x1c\x0d\x59\x6b\x2c\xcc\x68\xd3\x35\x94\x38\x36\x8b\x87\x46\xdc\x3b\xa4\x74\xfd\x65\x26\x7e\x8c\x6f\xe0\xbb\xf0\xae\x27\xfa\x93\x2e\xe5\x60\xcd\xee\x0f\x19\x2d\x13\x51\x3d\x0f\x38\x8d\xff\xc8\x4a\x0c\xbe\xb8\x9f\xdc\x20\x24\xa5\x92\x1a\x32\x7e\x38\x05\xda\x25\x59\xd7\x28\xee\x3f\x77\x05\x49\x19\xa4\x46\x31\x53\x91\xd7\x32\x29\x25\xd4\x28\x52\xfc\xa3\x0c\xfa\xa9\x54\xa9\x45\x7b\xf9\x41\xe6\xcb\xaa\x6e\x16\x93\x81\xbb\x82\x44\xa0\x9c\x35\x7c\x57\x30\xc2\x42\xe2\xe0\x1f\xe1\x8b\xf1\xc4\xbd\x52\xed\xda\xa5\x8c\x22\xea\x28\x5b\x70\x31\x0f\x86\x8d\x44\xaa\x62\xa9\x22\xd5\x3c\xc8\x75\x75\x34\xbf\xf0\x1e\xac\x88\xc6\xdd\xd0\xf0\x4d\xc4\xe0\xae\x20\xe9\x0e\x72\xf8\xb2\x60\xdc\x64\x69\x56\x26\xda\xdb\x34\xe0\x0e\x41\x76\x55\x07\x1c\xc6\x4f\xb2\x28\x5f\xc2\x2f\xe3\x37\x31\xa7\x84\xd6\xd4\xde\xb0\x48\x12\x8b\xdc\xd3\xad\x92\x8a\x58\x33\x78\x9b\x06\x37\x71\xbe\x6e\x7f\xed\xca\x63\x2f\x92\x94\x10\x89\x80\xf7\x14\x82\xef\x35\xaf\xb7\x49\xc3\xd5\x82\x2c\x9a\x96\xed\xa4\x4f\x81\x31\x89\xf2\xb7\x49\xc6\x25\x82\x8c\x97\x96\xad\xa2\x17\x56\xd1\x09\x27\xa0\x65\xb3\xe8\x53\x88\xbe\xa3\xd2\xc6\x23\x3d\x8e\xb5\xf4\xa9\xa5\x0b\xbf\x8c\x8f\xf9\x53\x8a\xde\x47\xc7\x64\x02\x08\xa4\x94\xc4\xac\x8f\x99\x92\x3b\x04\x99\x1e\x1d\xf0\x31\x7e\x81\x57\xf5\x66\xca\x07\xa6\x94\x8c\x3f\xba\x21\x1c\x0f\x2a\xa1\xaa\x93\x5a\xe3\xc6\xa3\xa1\x2a\x45\x70\xf5\x50\x2b\x3c\x9c\x94\x53\xba\x5a\xb3\x54\x55\xf3\x08\x9d\x8d\x8e\x4e\x66\x49\x78\xb5\xe4\x73\x38\x97\x9d\xc0\x01\xa7\xf1\x11\xc9\x87\xcb\xd6\x51\xcd\xda\x95\x79\xcd\x92\xa8\xea\x79\xad\xcc\xab\x16\x87\xaa\x3d\xe6\xa8\x24\x34\x57\x5a\xf0\xaa\x13\x91\x82\xf6\x27\x5d\x4c\x8e\xba\x96\xf1\x41\x99\xa6\x21\xe9\x0c\xac\xa0\xfe\x7a\xa0\x5f\xa3\x59\xab\x34\xb4\x0a\x41\x4b\x0e\xf8\x18\xbf\xc0\x0f\xe1\xb7\xf1\x51\xbd\xe4\xac\xe9\xda\x5a\x61\x12\x88\xf5\xbc\x88\x92\x40\x01\xca\x28\x8d\x73\xb3\x3c\x71\xb2\x4f\xba\x68\x1c\x3e\xd9\x8f\xa6\x5e\xb2\x49\x19\x3e\xa9\x8f\x0e\xdb\x64\xa7\xf4\xf6\x0a\xd3\xd5\x6c\x17\x3a\x1b\x5d\x30\xcb\x6b\xc2\x3f\xc6\x37\xf0\x43\x78\x75\x27\x62\x1a\x24\x3d\xcf\x1d\xb0\x1a\x1f\xdd\x2c\x9a\xa9\xee\x6e\x72\xf6\xd6\x2b\xd1\x01\x5d\x3f\xdd\xd7\xc5\xd9\xf0\x19\x7b\x0c\x54\xb4\xae\xb6\xc6\xb0\x8a\x1e\x30\x54\x11\x5f\x0e\x33\x14\x67\xe9\xa4\xbb\x27\xbb\x10\xac\x31\x54\xbf\xf8\xd5\xa7\xdd\x31\x91\x12\x5d\xac\x12\x55\x9f\x42\x4c\x16\x97\xcb\x44\x20\xa0\x10\xd5\xe8\x66\x8e\x68\x03\x14\x0a\x78\x55\xe3\xee\x4c\x99\x05\x4a\x41\x4d\x2b\xa8\x49\x6c\x8e\xcb\x68\x51\x67\xca\x2e\x50\xa3\x9d\x56\x50\x1c\x24\x93\x2e\x8b\x86\x0f\x92\x63\x31\x5b\x77\xad\xff\xc1\x26\x6b\x2c\x4f\x26\x47\xb5\x74\x8b\x18\x4b\xe7\xd8\xb1\x98\x1c\x9d\x10\xc7\xf2\xe4\x90\xc8\x26\x3d\xc9\xdf\x0f\xe3\x3f\xf0\x8c\xda\xa7\xb2\xc1\xa9\xac\x5d\x46\x67\xa3\x83\x57\x1e\x25\x4a\xdf\x56\x84\x9b\x39\x7b\x24\x8f\xdb\x7b\x2c\x52\xab\x36\xb1\xd6\xb6\x6e\x20\xa9\x6a\x7a\xb4\x7c\x6e\x13\x8f\xf0\x83\xe9\x91\xee\xd9\x53\x02\xb6\xc9\x5c\x9e\x84\xf6\x60\xb7\x06\xa5\xd4\xfb\x7b\xb9\xd5\x45\xab\x46\x6f\xa3\x19\xab\x96\x4f\x1f\xe2\x06\xcf\xd3\xde\x5e\x8f\xd7\x5a\x80\x8c\xad\xde\x47\x13\xc4\x80\x02\xbd\x17\xed\x5f\x9d\x55\x06\x87\xc1\x44\x66\x8c\x35\x7c\x18\x54\x84\x03\xe2\x90\x1f\xa8\x1a\x4d\x77\x94\x63\xff\x35\x23\x72\xbc\x4b\xba\x47\x21\xc8\x01\x85\x06\x5e\xd5\x5b\x2e\x5e\x58\xa1\x8a\xc8\x3e\xdf\x0d\xce\x77\x04\x35\x5f\xf6\xb9\x39\x85\x85\x49\x67\x12\x7e\x1b\xff\x12\x4e\x4a\xe8\x9f\xd1\xd4\xae\x05\xf4\x67\xd5\xf9\x83\x68\x55\x33\xfe\x33\xd1\x38\xc8\xa5\xaa\x7a\x7e\x56\x9d\x3f\x92\x9d\x4b\xd3\xfe\xac\x3a\x7f\x04\x66\xd1\x02\xfa\xd3\xf1\x5c\xa9\x06\xfe\x36\x0b\x3f\xd3\x8c\x9c\x03\x4d\xb2\xf8\xd3\x35\x21\xa1\x17\xce\xe7\x45\xf8\xd7\x78\x3a\xaf\x85\xf5\x67\x12\xff\x44\x4a\x09\xe9\xcf\xec\xfa\x83\x5d\xff\xd0\xcb\xe8\xe8\xbb\x36\x05\xbf\x29\xd2\xfc\x90\xb5\x2a\x05\xf6\xd3\x2d\xde\xf8\xc5\x9a\xa5\xe3\xb9\x3d\x27\x16\x9e\x13\xe9\x6f\x7d\xfe\x59\x04\x7f\xa2\x30\x27\xe5\xe1\x33\xe5\xe0\x15\xfd\x6f\x49\xfc\x74\x97\x34\x3e\x84\xa7\x8a\x5d\x3f\xaf\xac\x9f\x7a\xd9\x85\xfe\x19\x1d\xd5\x37\x69\x84\xcf\xc2\xc3\x83\xf6\x9f\x50\x7d\xd6\x14\x1c\xdf\x52\xd3\x3a\xff\x99\x3f\x3e\xf8\x43\x29\x82\x7d\x7a\x9b\xbc\x67\xeb\x56\x60\xfa\x3d\x7b\x5e\x74\xbe\x29\x35\xb4\x7c\x0b\x96\xb2\x24\x34\xa5\x08\xbe\x34\xa6\xc9\x33\x77\x6a\xca\x0f\xed\x67\xee\xc9\xd9\x30\x35\xe5\x86\xf6\xd9\x70\x72\x36\x34\x3b\x4d\xf9\xcc\x9e\xc2\x20\x60\x92\xd0\x3f\xa1\x11\xa9\xa6\x44\xcd\x97\xb6\xa4\x33\x1c\x0d\x92\x2e\x1d\xe6\xa5\x95\x6f\x72\x62\x4c\x18\x92\x1d\x70\x18\x4f\x2f\x95\xa6\xf9\x9a\xee\xa5\x48\xf9\xa8\x9e\xe5\xea\x61\x04\xa5\x57\xbf\x96\x69\x80\x7a\x52\x3e\x67\x79\x1e\x9c\x02\x63\x55\xa2\x65\xf9\x18\x9c\x02\xb5\x2b\x59\x72\x92\xa4\xcd\x44\x52\xfa\xa6\xd4\xc8\x49\xea\x66\x26\x84\xa1\x29\x17\x7a\xd2\x7a\x38\xc3\xb1\x20\x11\xef\xfb\x40\x3f\xa3\x69\x76\xa8\xd9\xe9\x66\x45\x33\x65\x71\x4f\xd3\xcd\x8a\x08\x43\xf5\x4c\x57\x0f\xfb\x0d\xf5\x46\xeb\xde\x4c\x70\xbd\x6e\x4c\x48\x19\x41\x21\xaa\x21\xdc\xfc\x01\x5f\xe3\x3f\xf0\x70\x48\x36\x9f\xc9\x7d\x80\x30\xf3\x07\x54\xf7\x75\xf0\xd4\x95\xc9\xf4\xc1\x73\xf2\xd0\x9d\xba\x72\x61\xcb\x40\xff\x14\x62\x58\x5d\x29\xab\xb3\xd8\x7e\x66\xf5\xb3\xfa\x7b\xd7\xa3\xfe\x88\xa5\xfc\xa4\x3d\x0b\xf9\xf0\xb1\xbf\x98\x45\x0b\xe1\x2c\x30\x72\x57\xd6\xfc\x62\x46\xd6\x79\xd4\x29\xe9\x7d\x1e\x9d\x3c\x52\xff\x25\xa7\xf7\x23\xf5\x8c\x03\xe8\xc1\x33\x2c\x59\xde\x9f\x42\xc3\x88\xdb\xf8\x6e\xfc\x20\xdc\x8c\xd0\xd3\xe8\xc5\xe7\x43\x78\x77\x07\xea\x38\xeb\x7c\x31\x75\x74\xc2\x1c\xae\x67\xb9\xfa\x45\xf5\x5d\xe8\x9f\xd1\x54\xc3\xd2\x36\x7d\xf0\x24\x6a\x4d\xfa\xcb\x1a\x7f\x9b\x65\x75\xc2\x1c\x2c\x1a\xd3\x27\xcc\x79\xc3\x83\xba\xfc\x98\xb7\x79\xf0\x86\x49\x08\x49\x7d\xc0\x6d\xfc\x1b\x9e\xd8\x46\xff\x8c\xa6\x1a\x49\xd6\x63\x09\x7a\xd4\x9d\xfe\x1f\x78\xee\x9d\xaf\x1f\xff\x1b\xad\x6b\xce\x1e\xcf\x25\x61\xe1\x92\x32\x00\x4f\x3f\x05\xcf\x47\xa3\x53\xbe\xf5\xc7\x4a\x29\x1e\x79\x53\x57\xb6\xfb\x47\x8b\x16\x51\x6a\x52\xbe\x34\x95\x7e\xf2\x25\x0a\x4d\x72\xfa\x6f\xbb\xd8\x2d\xa2\xc5\x1c\x7c\x17\xde\xd5\x33\xf5\x52\x85\xb2\x5d\x5f\x04\x6d\x49\x59\x59\x82\x89\xda\x42\x21\xe2\x2d\x29\xdb\xfd\xa3\xd5\x69\xf2\xa0\x9c\x2f\x4d\xe5\x63\xfe\xe7\xe5\xd8\xd9\xbf\xa7\x5f\x8e\x89\xf4\x72\xf0\xf4\xc6\xa7\x4a\x22\xb9\xa4\x7c\x49\x93\x57\xdd\x84\xce\x48\x7c\x9a\x74\xf7\x38\xab\xf6\x52\x33\x4c\xd6\x13\x21\x03\x0e\xb4\x8c\xde\xd4\x62\xfc\x6b\xfc\x2f\x3e\x1f\x42\x7f\x42\x4f\x3a\xa9\x84\xfe\x3e\x6c\xce\x1a\x3a\xa9\x4b\x8f\x57\x93\x86\x33\x68\xd6\xb5\xcb\xac\xe6\xfe\x2a\x92\x49\xd3\x56\xeb\x86\x2a\x1a\x48\xd3\x56\xb3\x21\xa7\xcd\x2e\xee\x6c\x5e\xfb\xc2\x5c\x3d\xe5\x4b\x6c\xd8\xf4\x36\xa4\xec\x24\xd6\x48\xcd\x6b\x1f\x87\xcd\xac\x5b\x1a\x42\xa9\x44\x21\xb6\x46\x5d\x0b\x6e\xd3\xd6\x68\x72\xaa\x74\x52\xed\xd9\xcc\x65\x0d\x2e\xd3\xca\xda\xcc\x4d\x11\x53\x25\x75\x0d\xa9\xe9\xae\x80\x70\x2a\xc9\x99\xb2\x89\xa7\x42\x21\xa6\x49\x23\x6d\x5e\x11\x79\xbb\x76\x2a\xed\xd9\xac\x65\x39\xca\xe6\x74\xf9\x7b\xb7\x0a\x25\x89\xe2\x75\xc0\xdb\x78\xaa\x57\xab\x5e\x11\x89\x67\xdf\xb5\x50\xca\x61\x75\x11\x3d\x25\xe5\x24\x6d\xe4\x03\x31\x91\x53\x12\x56\xb3\x6b\x76\xd3\x9d\x27\x6a\x67\xd4\x9e\x7e\xa2\x26\x5b\x4a\xca\xba\x1b\x9a\x5d\x9b\xc9\xd9\x61\xf9\x24\x26\xeb\x56\x76\x1d\x65\xa7\xf9\xe8\x5e\x9f\x79\x5b\x76\xde\xe9\xe9\xb7\xe5\xd9\xd5\x4b\xd1\x4c\x7e\xb5\xa7\x40\xf5\xbc\x54\xcd\x61\x36\x18\xb0\xc1\xf0\xe7\xaf\xd1\x31\x51\x5a\x6e\x87\x59\x9b\xf4\x76\x4a\x30\x7d\x40\xd7\x4e\xd8\x34\xcd\xdf\xf0\x98\x78\xd0\x56\x92\xe9\x03\x0e\xe3\xe9\xbc\xd6\x19\x3f\x68\x4f\x0e\xe1\x39\xb9\x37\xde\x19\x11\xd5\xc2\xcb\xcc\xd0\x65\xdd\xe4\x3d\x7b\x48\x35\xf9\x3d\x7b\x0e\x04\x2a\x8b\x3d\x14\xd7\xe2\x14\x52\x7c\xae\xce\x78\x4f\xc0\xf3\xb7\xd2\x52\x1f\xf0\x31\xbe\x81\x1f\xc2\xbb\xf3\x50\x58\x16\x74\xd3\x27\xff\x39\xf1\x95\x91\xa9\xdc\x9c\xa6\x3c\xef\xdc\xe3\xef\xf3\x6e\x74\xd0\x20\x4b\xc5\x4d\x53\x7e\xc2\xdc\xf8\xd8\x1e\xd0\xdf\x33\xd8\x64\xf4\x32\x7a\x07\x5a\x8d\xce\xbf\x5a\xe8\xa4\xb4\xc1\x5c\xee\x8c\x06\x25\xb1\x9f\xe6\xb2\x08\x57\xf8\xb7\x74\x4e\xaf\x61\x53\x63\xd5\xfe\xc4\xf7\x04\x73\xa1\x57\xb3\x74\xd6\xf2\x22\xc5\x43\xb4\xf2\x39\x1f\x50\x34\xe3\x05\x39\xe3\x0f\x70\xc0\x6e\x3c\xcd\x0e\xa1\x35\x83\x3c\xda\x2a\xbf\xf2\x01\x5f\xe3\xa3\x3b\xba\x04\x9a\xdb\x4b\x2a\xcf\xb3\xb9\x88\x66\x7e\x9e\x9d\x1b\xc5\xad\xcb\xa1\xb9\xbd\x36\x6e\xba\x53\x6e\xe3\x87\xf1\x0b\x7c\x15\xfe\x35\x9e\x76\xa5\xe9\xb7\x17\xc1\xb8\x59\x48\xca\xcf\x7b\x40\xa9\xe2\x0d\x4b\x15\x0c\x36\xe6\xb6\xc2\x21\x89\x1f\xe1\xc4\x0f\xe4\x66\x43\xe1\xe4\x22\xb5\xb8\xad\x71\x76\x3c\x52\xeb\x71\x66\xfa\x86\x60\xbe\x1a\xad\x44\xfc\xf5\xa2\xf6\xc2\x68\x1c\x0c\xe7\x6b\x8d\xfe\x8a\x08\x9c\xd0\xe6\x6b\x59\x26\xbd\x9f\x77\x33\xaf\xf7\x80\xdc\x1b\x28\x75\xef\x01\x1f\xe3\xa1\x99\x36\xf2\x7e\x45\x9e\x2f\xba\xbb\x68\x27\xef\xf7\xdf\xf9\xa2\x8c\x65\x4e\x39\x5f\x73\x26\x47\xf8\x7c\x4b\x19\xfb\x85\x76\xfe\x60\x9d\x5b\x7a\xf1\x67\xd6\xe1\x08\xaf\x5c\xb3\x07\x7c\x8d\xa7\x1e\xed\x34\xfc\x16\x3b\x7f\xe8\x90\xbb\xfc\x27\xef\x84\xf3\xe7\x83\x04\x87\x70\x65\x90\x3d\xa0\x9b\x67\x18\xb7\xa6\xd2\x6f\xaf\x93\xe3\x76\xbe\x75\x3e\xfa\x59\x6b\xfc\x70\xbb\xbb\xa5\x97\x7f\x16\xb0\x9f\x86\xad\x49\xfb\xcc\xba\xbc\xd5\xe6\x5b\x5b\xf4\xcf\xac\xfb\x89\x1c\xd2\xb4\x7e\x94\x9d\x9f\x86\xad\x6d\xa0\x5f\x5f\xe7\x87\x66\xbe\xb5\x0d\xf4\xeb\xeb\xc4\x22\x3c\xcb\xb0\x65\x7e\xee\xcf\x87\xc0\x4b\x20\x3f\x2f\x2b\x9c\xb7\xf3\xa3\xed\xa1\x9f\x4b\x27\xc1\xae\xb3\x4c\x96\x70\xe1\xa7\xd0\xc0\x37\xe1\xbb\xf1\x51\x3d\xa3\xb2\xd7\xfe\x29\xbc\x81\x2e\xa0\x25\x8f\x0b\x3b\xf1\xfc\x70\x22\x5e\x8a\x9b\x72\x0a\x11\xf9\x88\xe5\xc3\xde\xfc\xa7\x30\xf9\x5c\x8d\x0e\xd7\x1e\x62\x4a\x68\x86\xb5\x14\x8e\x6a\xe1\xce\x7f\x3e\x1f\xc2\xbb\x76\x56\x95\xa1\xda\xb5\x7c\xe0\xd8\x9f\x32\xa1\xec\x16\xa9\xa8\x28\x7c\xe0\xf5\xfd\x72\xf5\x91\xe0\x47\x1b\x67\x3b\xfa\x9f\x02\xad\xf2\x2e\xb2\xfc\x72\x4b\x00\x80\xa4\x24\xac\x6b\x29\xe4\xd5\x52\xe2\x2a\xa5\x63\x5d\xcb\x2f\xba\x78\xf7\xe7\x8b\xd5\x69\x25\x13\x3e\x0e\xde\x99\x08\x89\x07\xaa\x46\x77\x7c\xd1\x8a\xf0\xd3\x78\xe6\x95\xcb\x05\x12\x61\x51\x78\x4f\x35\xc9\x9f\xff\x8c\xa6\x33\x6c\x8d\x96\x82\x48\x9c\x02\xb4\x61\x6f\xb4\x7c\x6c\xc7\x55\x3f\x29\x07\xeb\xb2\xaf\xfe\xc2\x3b\x3f\xe5\xca\xc5\xcb\xca\x52\x55\x2b\xd3\x7b\x16\x33\x5c\xf7\x29\x34\x9c\xe0\x2e\xe1\x87\xf1\x13\xbc\xab\x5f\xc6\xef\x53\x4d\xf6\xe7\x9f\xd0\xb0\x93\x9e\x14\x57\x36\x3b\x85\xe3\xbe\x0f\x15\x2b\x9b\x9d\xc2\xf4\x3d\x5f\xee\xa3\xb9\x29\xa3\xf4\xf5\x16\x48\x7a\x2e\x0a\x31\x21\x1c\x35\xec\xc7\x7f\x0a\x34\x2a\xa6\xf4\x5b\xf4\xca\x61\xf5\xa4\xb4\xa5\x0b\x77\x7f\x0a\xfd\x54\xc3\xc9\x64\xf9\xa6\x00\x97\xfe\x94\x89\x0c\xb3\x70\xec\xa7\x10\xad\x16\xf5\x5d\xeb\xf9\x8a\x1b\x83\x7c\x79\xa4\xcb\x84\x44\x8c\xeb\xa3\x46\x75\x46\xc0\xc5\x3f\x93\x98\x66\xd9\xc5\x7f\xe1\xe2\x9f\xb2\x5e\xd9\x96\xdf\xb9\xf1\xf1\x3f\xf8\x26\xfc\x63\x7c\xb0\x01\x9e\xa7\x07\x14\xe1\xe3\x22\x21\xeb\xf9\x7b\xd9\xf6\x1d\x2f\xff\xf3\xf9\x10\xbe\x1a\xcf\x74\x73\x34\x59\xb6\x7d\x5f\x3c\x7f\x67\x42\x13\x1e\xf0\x15\x1e\x91\xaa\x5d\xdd\xd1\xb2\x8a\x37\x7e\xbe\x44\x61\x3f\x44\xe3\x8d\x9f\x72\xe3\x5a\x01\x2f\x7c\x0a\x1f\x78\xaa\xf7\x3d\x01\x8e\xf7\x07\xdf\x84\xbf\x8d\x0f\x1a\x3f\xfe\x7c\x1a\x4d\x35\x62\xa7\xdb\x32\xc2\x3b\x77\x96\x15\xd6\xba\xb5\x80\x2e\x5e\xa2\x95\x9d\xf3\x80\x7f\x78\xba\x29\xc6\xb1\x7d\x3a\xce\xed\x29\x37\xb5\xeb\xfb\x83\x85\xa9\x78\xd6\x4d\xdb\x7a\xac\x72\xc3\x66\x3c\xcb\x08\xc0\xfe\xeb\xa7\x40\xf5\x12\x59\xdf\x1b\xe0\xd7\x7e\xf0\x74\xc7\xcf\xbf\x78\xb0\x27\x65\x90\x3c\xa0\xab\x1f\x54\xdf\x84\x76\xf5\x1a\x95\x24\xff\xf1\xa8\x74\x3f\x40\x3c\xe0\x03\x6a\x52\x74\x52\x97\x2d\xd3\xf2\x49\x1d\x97\xf3\x4c\x5e\x9e\x85\xdf\x39\x85\xa8\xbe\x4b\xda\xaa\x39\x90\x90\xf2\x4a\xb3\xb8\x70\x48\xa7\x10\xb2\x8c\xf5\xce\xf2\x09\x1e\x5f\xf3\xa4\xcc\x8b\x6b\x29\x68\xdf\xc2\xeb\x3c\x5f\x52\x73\xd5\x8c\x19\xc1\x5a\xcf\xe7\x43\xf8\x61\x7c\xd4\xde\x5d\x8b\x48\xc9\x63\x74\xee\xe2\x7b\x3f\x46\x2f\x9d\xec\x71\x04\x5d\xcb\x27\xfb\x55\x59\x02\x7a\xd5\x60\xcd\xb0\x55\xb4\x61\x57\x6d\xff\xf4\xb5\x30\xf9\xce\xc4\x4a\x5a\x76\x22\x3f\x85\x60\x4c\x2d\x8f\xcd\xbd\xd7\x99\x9c\x98\xed\x07\x1c\xc6\x2f\xf0\x4d\x78\x75\xbf\xb1\x8b\x95\xa9\xd2\xb2\xcd\xf7\xc2\xb6\x5b\x99\xfc\xd6\xb2\x6d\xf7\xd2\x71\x7a\xfc\x05\x3f\xfe\xdf\xed\xb0\x56\xf3\xc2\xd7\x18\x35\x79\xf9\x16\x5e\xea\x14\x68\x86\x4d\x3d\x8e\xe7\x14\x62\x47\x33\xa4\x21\x6d\xfb\xbd\x3a\x0c\x3d\x8a\xbf\xdf\xc6\x87\x6e\xe3\x26\xd8\x3e\xe8\xa7\x40\xf5\xec\xf5\x57\x37\x9f\xf3\x30\xad\xc4\x78\xcb\xce\xe9\xa7\x40\xf5\xda\x8b\xf4\xe1\xea\x23\xc7\xa0\xee\x16\x56\xf7\x6a\xa0\xf3\x36\x39\xec\x96\x3d\xcb\x4f\x81\xea\x25\x46\xc3\xca\x24\x7c\xcc\x7d\x15\x81\xa3\x39\x05\x88\xc3\x2e\x7a\xf9\x59\x7a\x0d\x0d\x96\xfb\x95\xe5\x83\x38\xce\xe5\x49\x69\xdc\x0e\xe8\xea\x83\x25\x92\x54\x9e\x0f\xdc\x38\x9d\xfb\xea\xc2\x4e\xe7\x0b\x37\xf3\x54\x2e\x09\xe9\xf0\xa0\x88\x9a\x27\x7f\x3b\x7b\x9d\x9f\x42\xe1\x73\x75\xde\x7c\xce\x1b\xb9\x12\xc5\x2d\xfc\xca\x29\x50\xbd\x18\xc8\x07\x71\x7c\xca\x33\x41\x83\x0e\x54\x8c\x8e\xbe\x8b\x0f\x6c\x6f\xbe\x22\xd2\xe4\xa9\x45\xb5\x2f\xd7\x1e\x6b\x99\x6c\x69\xec\x62\xbe\x70\x31\x4f\xc5\xab\xfc\x34\x3b\x61\x86\xae\x84\x71\x0b\xdf\x72\x0a\x0b\x7c\x17\x7e\x1b\x1f\xd5\x4b\x63\x4c\x13\x3e\xcc\xcd\x73\x12\xf3\xd9\xdc\x7c\x61\x56\xae\x74\x70\x6b\xd9\xac\x7c\xcd\xd0\x9a\xba\xd4\x59\xd3\x5a\x73\x8a\x62\x62\xbe\x69\xed\x38\xd5\x79\xde\x6e\x96\xcf\xdb\x78\x9c\xa7\x72\x69\x05\x5d\xd6\x5f\x64\xa9\x4d\xe2\xed\xe5\xde\xf0\x8c\xaf\x3c\x62\x07\x7c\x8c\xaf\xe0\x9b\xf0\xcd\xf8\x1e\xd5\x14\xa1\x87\xd1\xb4\x2a\x91\x5a\x3a\xf6\xae\x85\xf3\x9f\x99\x78\xe9\xba\x6e\xad\x08\xcc\x48\x82\xaa\x03\x55\xa3\x17\x9f\x77\xe1\xa5\x77\x38\xcd\x17\x73\xa5\x9f\xf5\xf1\x30\x4f\xc5\x34\xde\x5e\xe0\xc2\xba\x3a\x27\xed\x8c\xb6\x17\x38\x0e\xf3\xc5\x44\xd8\x26\x3d\x29\xfb\x93\x04\x73\x7b\x5b\xb7\x91\x63\xed\xee\xb7\x77\xb0\x5b\x9d\x11\xde\x87\x6d\xdc\xc6\x73\xd2\xa6\xff\x75\x1f\xed\x44\x2e\x79\xf5\x2b\x3d\x5e\xe4\xa9\x24\xc9\xab\x5f\xe9\xf1\x17\x4f\x4a\xd7\xb4\xd6\xeb\x09\x7c\x99\x40\x1d\x06\x5e\x4f\x60\xbc\xd6\xa7\xa2\x2b\xac\xe5\x57\x7a\x9c\xbd\x93\xf2\x33\xad\xe5\xc3\xf3\xc2\x00\x59\xd9\x87\x0e\xa8\xee\xfc\x90\x40\xdd\xdf\xac\x9f\x55\xf8\x4f\xf5\xe8\xa8\xe4\x57\x5e\xd2\x11\xa6\x22\x97\xbb\x65\x13\xe1\xf5\x21\x24\xf2\xad\x5b\x9f\x85\xe4\x43\x48\xaa\x3f\xff\x19\xfd\xf1\x39\xd4\xf1\x21\x55\x4e\xd4\x4a\xcb\xb2\xec\x44\xbd\xe4\x44\x5d\x74\xaf\x63\x27\xea\x53\xc0\x17\x5b\x4b\xc0\x67\x45\x84\xf1\xae\xf2\xa9\x6c\xbb\x33\xef\x1e\xe1\xd2\x92\x32\x82\x1c\xf0\x35\xfe\xc3\xe9\x1a\x7c\xf2\xf7\x3c\x5a\x2a\xbd\xc2\xee\x32\x8b\x3d\x85\x86\xd7\xb5\xbe\x47\x20\x4e\x21\xea\xbf\xc9\x92\xdc\x15\x1c\xed\x14\xa8\x9f\x94\x92\x5d\xaf\x96\xa7\x40\x3d\x24\x06\xed\x89\xbb\xbc\x53\x08\xd6\xec\xaa\x86\x05\x77\xcb\xf5\xb7\xe0\x7c\xb5\x1d\xe4\xf3\x14\xc0\x93\x6b\xb3\xe7\x61\x3c\xcc\x43\xbe\x50\xbb\xf8\x6e\x62\x82\xa6\xf2\x90\x2c\xb8\x2b\x5c\xd9\x96\xeb\x6f\x79\x2e\x55\xef\x51\x71\xd0\x29\x44\x79\xdf\x5d\x07\x9d\x4d\x38\xd1\x8c\x45\xde\x81\xaa\xd1\x41\x04\x82\x48\x6d\xf2\x22\x52\x08\x5e\x20\x49\x73\x57\x68\xb2\xdd\xe3\x04\x93\x09\x5f\x7c\xa0\x64\x74\xe8\x10\xdc\x3b\xb6\x7d\x7f\x37\xde\xbe\x19\x39\xd9\xb8\xfc\x52\xa0\xd1\x6c\xbc\x1b\x65\x11\x20\x7f\xa9\x5d\x7c\x4f\x21\xc2\xbe\x8a\x02\x8a\x59\xb6\x71\xf5\x4d\x05\x6f\x90\x03\x56\xe3\xa1\x0c\x69\x3f\x7b\xe9\xdd\xf8\x11\xd5\xdc\x42\x4f\xa3\xe9\x0c\x99\x40\xbb\x9e\x55\xb7\x5c\x82\x0b\x97\x21\xbb\xeb\x59\x75\xcb\xc7\xb7\xe0\xf6\x71\x40\x57\x3f\xa8\x5e\x9d\x47\x43\x9d\xc2\x19\x53\x4e\xd7\x3f\x6f\xaf\xce\xc7\x3f\xfd\x17\x8b\xf3\x73\xab\x36\x6e\x39\x4e\xe1\x89\xda\x34\x34\xcf\x22\x4f\xb7\x05\xff\x8c\x03\x0e\xe3\x19\x9b\x58\x56\x6f\xb4\xbb\x73\xf6\x2a\x04\x1a\x3e\xa0\xab\x5f\x54\xaf\x21\x2f\x93\x08\x56\x7e\x48\x9f\xdb\x15\xdc\xec\x14\xa8\x86\x44\xa5\x5d\x6f\xb1\x5b\x6e\xca\x85\x08\xc0\x1b\xef\x64\x0a\xd4\x23\x51\xb9\x4d\xd2\x1b\x05\x49\xb8\xd6\x03\x56\xe3\xe9\x3e\x59\xec\xfb\x3d\xc4\x27\x77\x64\x73\x26\xcd\xde\x81\x5c\x0d\x2b\x19\x66\xf7\xdb\x2e\xc6\xa7\x70\x9f\xcf\x8b\x6a\x31\xd1\xc2\x4c\x38\x67\xb1\xc9\x6d\x71\xe6\x04\x57\x70\x4d\x3b\xe0\x5f\xa3\x31\x91\x62\x93\xdb\x12\x11\x46\xc3\x39\x8b\x4b\x64\x34\xbc\xe5\x77\x5c\x30\xa2\xdf\x64\xed\xa4\x10\x5c\x72\xab\x2f\xa6\x30\xaf\xd1\xa5\x26\x35\x6a\x5d\xc7\xb1\xb1\x60\x80\xb5\xfb\x63\xca\x73\x6c\x2c\x55\x62\xfb\x98\xc7\x39\x36\x12\x75\xe9\x40\xcb\xe8\xe8\x3b\x09\x9f\xbb\x8c\x86\xb7\x1c\x8c\x4b\x25\x81\xb6\x1d\x8c\x37\x0e\xc6\x39\x4b\x31\x3e\x9e\x0e\x0e\x93\x05\xbb\xac\x6d\x07\xe3\x2d\x07\xe3\x52\x45\xe0\xc7\x8a\x94\xd3\x64\xa9\x52\xec\x8f\x99\xf8\x81\x89\x1f\xa3\x9b\xd1\xd1\x77\xf1\xea\x63\x3d\xfa\xb0\xea\x71\x73\xb3\xfb\x63\x9d\xc3\x23\x74\xa9\x12\x91\x67\x3d\xc6\xd3\xcb\x47\xbd\x59\xee\xa5\x48\xa9\x66\xab\xb5\x4b\x45\x8d\x54\x72\x4c\xf7\x6a\x35\x52\xd1\x0b\x78\xb2\x1d\x70\x1b\xff\x3b\xdd\x94\x5a\xaf\xe6\xe1\x2a\x5a\x36\xe3\x9b\xf1\x54\x23\x59\xa8\xe6\xe1\x8a\x5e\xa8\xd0\x52\xa6\xd0\x9b\x44\xa8\xa9\x70\x5b\x72\x40\xf7\x06\x09\xaf\x12\x91\x6a\x6e\x25\x3d\x78\x6e\xfe\x7c\x1a\x4d\xab\xdd\xd5\xbf\xc6\x43\x04\x49\x54\x35\x31\xe3\xdd\xf9\xe0\x55\xcf\xfa\x19\x1f\xdf\x37\xad\x26\xcd\x44\xc3\xba\x59\x89\x7e\x76\x6f\x96\x7c\xde\xa7\x4b\x13\xbf\x36\x4b\x3e\x0f\xd1\xa5\x89\x5f\x9b\x95\x2c\x87\xe1\x82\x45\xd8\xb6\xff\xf3\x29\xc4\xde\xb6\x65\x7d\x6f\x6a\xc6\x93\x74\xce\xe4\xcd\xee\xcd\x1c\xd8\x58\xf4\x9a\x96\xfe\x66\x8d\xd0\xe0\xc0\x26\x0e\x54\xac\xb5\x2d\x7f\xe9\xd2\x8a\xbf\x77\x3d\x90\xa7\x49\xb7\xb7\xe5\xe1\x22\xe4\x5d\xbd\xb4\xba\x6c\x48\x6d\xbb\x8d\xdf\xc6\xc7\xdc\x8a\xc8\xcd\xc4\x6c\x22\xa6\x38\xbc\x5b\x98\xbb\x88\xf9\x74\xe1\x1f\xe3\xa9\x5e\x9c\xd9\xcd\x81\x9c\x8d\x95\x11\xbc\x77\xef\x14\x30\xc2\x2e\x18\x73\x1d\xb0\x1b\x1f\x2c\x32\x86\xd0\xd3\x68\x6a\x6f\xea\x8d\xa5\xb6\xb3\x4d\x6b\x4d\xbd\x19\x52\x74\x71\x48\xce\x64\x08\xdc\x76\x97\xde\x24\x36\x48\xa5\x49\xa7\x77\x33\x66\x0f\xc6\x2c\x5a\x6d\xbb\x19\x2d\x02\xc1\x65\x0c\xc5\xb7\x9d\xab\xb7\x9c\xa8\x4b\xd3\xc6\x62\x98\xcf\x38\x49\x97\xae\x5d\xce\x30\x3f\x0d\x56\x92\x9e\x20\xcd\xf0\x26\x6a\x10\x37\x5e\xeb\xe3\x30\x69\x38\x60\x97\x2e\x36\x1b\x66\x33\x9e\xb4\x0b\x96\x5f\xdb\x3e\xda\x5b\xbe\xd8\xa5\x4b\x31\x0e\x0f\x76\x20\x9d\x5d\x5b\x8e\x61\xe9\x1c\x88\x5b\x17\x9f\x0d\xaf\x19\x24\x8f\x67\xe7\xbc\x9d\xaa\x61\x77\x1d\xa5\xbb\xd8\x6c\x98\x38\x3c\x5e\x97\x2e\x55\x37\x4c\x1d\x9c\xb4\x4b\x97\x5a\x1f\xe6\x33\x0e\xcd\x45\xbd\x9c\xde\x18\x4d\x11\x4d\x9a\x6e\x7a\x71\x20\xe9\x7c\x91\x90\x4c\x6f\x80\xa6\x68\x49\xca\x7d\x5c\xb0\x29\x50\x8d\x14\xe0\x34\x71\x70\xae\x2e\x5d\x9a\x6e\x7a\xcf\x82\x95\x7b\xe9\x62\xa8\x69\x75\x3f\x15\xe1\x5f\x9f\x9b\x66\x3a\x35\x77\x6d\x78\xa7\x65\x70\x8a\x96\xd2\x80\xd3\xb4\x9c\xd0\xb2\xb8\x76\xb7\x2a\x9a\xf5\xf6\x9f\x6c\xb0\xa6\x45\x37\xbc\xb0\x33\x81\xa1\x0e\x64\x5a\xc0\x87\x5d\xb2\xb5\xcc\x87\x0b\x61\x19\xda\x83\x2e\x6b\xf1\x08\xf0\x96\x8b\x26\x6c\x99\x14\x3a\x6b\x0f\xad\x94\xcb\xfc\xa3\xb3\xf6\xd0\x4a\xb9\xbc\x43\x09\xaf\xea\x5c\x34\xbf\xcb\x6a\x0a\x67\xea\x32\x44\x3a\x39\x53\x9f\x02\xad\x32\x91\xcb\x7b\x8e\xa5\x48\x3b\xda\x5c\x2c\xef\x39\xc2\x22\x3f\x17\x9d\x67\xd6\x72\x2d\x87\x8d\x72\x79\xd4\xa8\xb7\x1c\x3a\xc8\x0f\xd5\xbe\xad\xa5\x74\x90\x1f\xda\x15\x6c\x73\x15\x07\xf9\x22\xe5\xb5\xcd\x55\x1b\xe5\x35\x1e\x57\xb3\x8d\x8f\xbe\x57\xd7\x22\x8a\xc5\x6b\xfe\xf9\x1c\x8a\xc9\x99\x7a\xe3\x4c\x9d\x89\x99\xbd\xed\x4c\x7d\x0a\x74\x46\x67\xc3\x6d\xde\xdc\x9a\x27\xf1\xec\xb6\x52\xdb\xf0\xe6\xd0\x72\xbb\xcd\x9b\x1b\xde\xac\xea\xa4\x79\x13\x9f\x83\x32\xc4\xca\xdb\x4a\x6d\xa3\xd4\xfe\x6a\xf1\x58\x45\x32\xa9\xcc\xd7\x5c\x13\x8f\xf9\xe9\xbe\xb4\x95\x7c\xbd\xb5\xc0\xdc\xfe\xbe\xb4\x39\x7c\x5d\xfd\x4b\xf5\x2d\x0b\x3d\x8d\x5e\x04\x21\x1a\xc2\xbf\xc6\x7f\x81\xd7\x7c\xbf\x3e\x75\xe1\x4e\x7d\x5f\x62\xa7\xd7\x7c\xf0\xc2\x07\xda\x89\xbc\xe6\x79\xac\xf6\xef\x4b\x13\xfb\x5a\xbb\xbc\x68\x97\xa6\x56\xbd\x8a\x71\x6b\x71\x5f\x0f\xbd\xfc\x79\xb0\x58\xed\xdf\x97\xb4\xce\xcf\xab\x18\xa6\x00\xf7\x25\x06\xf9\x59\x85\x63\x0a\x70\x5f\x5a\xdd\x7e\xde\x12\xfc\x54\xbf\xa6\xf6\x33\xff\x7d\x31\xe5\x77\xd2\x16\xe2\xf3\xf2\x16\x69\x0d\x72\xe9\x46\x4f\xa3\xa3\xfa\x24\x09\xff\xcc\x09\xdc\x42\xdc\x49\xba\xf7\xf3\xf2\xf6\xb1\xbc\x69\x89\xff\x2c\x99\x38\x2a\xdf\xdc\xa6\x1d\xd0\xad\x32\x55\x5a\xe2\x3f\x4f\x55\x58\xcc\x9f\xcf\x5d\x8d\x88\x86\x45\xfc\x9d\xb4\x29\xfd\xac\x86\x3e\xd4\x90\xb6\x5d\xdf\xaa\x46\xd3\xaa\x84\xe7\xf3\x1e\x96\xab\x12\x25\xba\xdb\xf6\x73\x3e\x05\xbe\x87\xed\xc7\x25\x1a\xcb\xff\xf9\x26\x5b\xfa\xb6\xff\xf3\x1e\x3c\xa2\xdf\x29\x5e\xf4\x0f\xf8\x18\x1f\x44\x23\x2c\xd9\x01\x5f\xe3\x3f\xf0\x0d\xfc\x72\x3d\x0c\x8b\x48\xc3\xdb\x0e\xcd\xa7\x40\x3d\xac\xc3\xe3\x12\x4b\x8d\xb8\xc3\xc9\x84\xd3\x3a\xd0\xcf\x68\xaa\x67\x19\xb6\xff\xf3\x29\x34\xf0\x59\x78\x0d\x0b\xfb\xf1\x9b\xfc\x30\x9b\x6c\xd9\x14\x9e\xa8\xbe\x0a\x5d\x8d\xa6\x1a\xa8\x39\xd2\xfc\xab\x86\x5e\x8a\x9a\xc9\xa3\x4d\x1a\x55\x55\xb3\xcb\xd5\xc7\x64\xdd\x1a\x6c\x5a\xae\x3e\xa2\xe3\xdc\xda\xca\x0f\xe5\xb7\xda\xf2\x8b\xbe\x31\x9f\xda\xf6\x8b\xde\x83\x1b\x9d\x9b\x48\xa8\x07\x7c\x8c\xa7\x3b\x1c\x5f\x87\xa2\xb6\xed\x81\xf9\xf8\xad\xad\xd4\x90\xf9\xf8\x29\xc4\xf7\xdc\xa7\x1d\xf0\xef\xfb\x0f\x3c\xdf\xfb\x1a\x85\xc4\xd9\x07\x4f\xfd\x32\xe4\x3e\x05\xbe\x57\x7f\xca\xf2\xf7\xb1\xe9\x25\x55\xdb\xb6\xa7\xf0\x29\x44\xf7\x49\x35\x70\xc0\xc7\x78\xba\xc9\x0d\x13\xe9\xb6\x29\x84\xc0\x11\xc0\x69\xdb\x83\xf8\x14\xa2\x7a\x76\xf8\xe3\xd6\xe6\x65\xdc\xa8\x05\x89\xc4\x50\xd0\xb2\x53\x88\x5e\xde\xa2\x82\xef\x0e\xe4\x88\x7c\xdf\x62\xcd\xdb\xd4\xe4\xee\xe0\xf6\x6c\xdd\xa6\x26\x81\xc5\xee\x3b\xe9\x7b\x09\x34\x09\x94\xf2\x2d\x62\xde\x26\x0e\xb7\x01\x37\x91\xc2\xb6\x13\x2a\x6d\xf9\x10\xdf\xb7\x58\xf0\xb6\x44\xe0\x14\x7c\x63\xe0\x74\x40\x57\xbf\xa8\x5e\xa3\x35\xe7\x73\xbe\x57\x56\xcb\x6d\x5f\xe1\x8d\x77\x70\x52\x0e\xcb\x3d\x14\xd6\x7c\xe3\x2c\x9c\x71\x24\xdc\x76\x16\x3e\x05\x5a\x45\xed\x0c\x5f\x07\xe0\x44\x9c\x6f\x16\x88\xf1\x68\x0d\xc6\x6b\x38\xff\x4f\xe5\x9f\xd0\xb1\x06\xdf\xc4\xd4\xda\x43\x49\xd6\x36\x4e\xc3\xf9\xbe\xff\x93\x1d\xd6\x78\x74\x54\x1b\x3c\x31\xeb\x76\x75\xe8\x89\x79\xe3\x69\x7c\x1a\xa9\xc2\xbf\xc6\x47\x9f\xd8\xa4\x0c\x25\x6d\xdb\x38\x1e\xe7\x9b\x4d\x8a\x1d\x8f\x4f\x01\xfa\x54\xd5\x6e\x05\xf6\x68\x76\x25\xba\x8f\x45\xfd\xd1\x74\x55\xd5\x63\x1e\x7f\xe0\x71\x69\x00\x85\x5b\x3f\x85\x18\x71\x15\x21\x2c\xe9\x18\xac\x2b\xd3\xe7\x26\x2f\x3a\x85\x50\x6b\x55\xf4\xf4\xe4\x3e\x9a\x5c\x56\xd0\x51\xad\x00\xaa\x26\x57\xda\x57\xcf\xe0\x5b\x99\xd5\xef\x5b\x92\x55\x3d\x8b\xdc\x44\xdc\xb7\x24\xcb\x37\x11\x23\x4c\xd7\xf3\x2d\xbd\xa3\xc8\x68\xa7\x10\xbb\x0e\xb2\xa4\x1d\xb0\x19\x7f\xce\xce\xb7\xd6\x02\x3d\x83\x9f\x02\xb5\x0f\xd5\xee\x09\xc1\x87\x5b\xc9\x43\x37\xae\xdb\x14\x42\x8d\x10\x16\x69\xdb\x29\x7b\xe3\x57\x9d\x94\xcc\xf1\x80\xb7\xf1\x41\x4b\x13\xc1\xb4\xe4\xd9\xfc\x7e\xb2\x3f\xf7\x60\x11\x14\xd3\xc6\x5a\x24\x6e\x24\x32\x91\xc6\xf6\xf0\x3d\x84\xbc\xac\x6f\xdd\x24\x8f\x66\x39\x69\x30\x3e\xb7\x25\x4e\x2b\xb6\x95\x56\xcc\x43\x6d\xa6\x18\xb7\x10\xf7\x23\xe1\xf7\x2d\x84\xbc\xac\x95\x50\x78\xdb\xcb\xfa\x14\x3e\xf0\xaa\xc7\xcc\x1a\xf7\x0e\xf9\xd1\xea\xd9\xbc\xfe\x60\xc9\x7e\x63\x10\xb7\x49\x4a\x4f\xe1\x17\x9f\xab\xef\x56\x21\x4d\x84\x64\x83\x45\xd6\x7a\x0a\x2d\x3e\x1f\x42\x77\xa3\xa9\x5d\x02\xe5\x4b\x08\x5c\xbe\x33\xa9\x91\xb7\x3d\xbe\x4f\x21\xfa\xc8\x2e\x6a\x74\xab\xdd\xce\x56\xf5\x91\x40\xf9\x0e\x82\x5c\xf7\xf9\x91\xb6\xec\x5e\x81\xb9\x9a\x50\x16\xd8\x03\xbe\xc6\x43\x19\x6d\x44\xba\xb5\x74\x17\x25\xc5\xab\xbe\x9b\xc0\x53\x3c\x3f\x59\xd5\xe8\xd2\x9c\x24\xfa\xf9\xd1\xda\xe0\xab\x89\xd1\x91\x7a\xdd\x2b\xe3\x5d\x4e\xe1\x89\xcf\x8d\xae\x46\xd3\xa8\xe4\xa9\x5b\x19\x74\xcd\x87\xe4\xa9\x7b\x3e\x3a\xf3\x21\x95\xee\x2b\x8b\x11\x57\x16\xe9\x7e\x86\xf1\xc5\xf8\x68\x55\xcb\x6c\x37\xdd\xb9\xca\xb8\xc9\x90\xb0\xed\xab\x7e\x0a\x41\x78\xf6\x9d\x63\x98\xf0\x43\x1c\x2c\x31\x1b\x26\x3c\x37\x1f\x37\x41\x5e\xb6\x5d\xdb\x4f\xe1\x03\x4f\xb3\xbe\xf9\x20\x7d\x7f\x7e\x6e\xa3\x8b\xd1\xd1\xc9\xbb\x0a\x5d\x8d\x0e\x12\xe8\x5e\x79\xc8\x86\xe0\x14\xde\xf8\x5c\x9d\xd1\x79\x76\x70\x1f\xa2\x84\xb9\x7b\xf8\x3e\x64\x70\xef\x71\x57\x09\xf1\xf0\xea\x18\x37\x1d\xe9\xd6\x8d\xf0\x18\xde\x3b\x60\x85\x7f\xeb\x46\x78\x0c\xf3\x70\x98\xe3\xcb\x48\xf3\x40\xd3\x68\xaa\x37\xcd\xbc\xc3\xc1\x2a\xe0\xd6\x95\xf0\x98\x56\xac\x53\x34\x93\xa0\xf9\xe2\x63\x70\xf1\xa1\xd7\x8e\x31\x75\xe6\x1c\x44\x95\xbb\x75\x23\x3c\xa6\xae\xbf\xc7\x84\x66\xe2\xed\x69\x9a\x71\x1f\x72\x57\x89\x88\xef\x43\x14\x24\xe0\xae\x5a\x73\xa6\xb9\x95\xfb\x90\xbb\x6a\xcd\xf1\x7d\x08\xee\xff\x19\xcf\xf2\x4d\x0c\x00\x0a\x0c\x4a\xfa\x79\x7a\x89\x8a\x38\x72\x99\x7c\x8c\xdb\x4e\xff\xa7\x40\xed\x5d\xbd\xf1\x36\x6c\x8a\xc4\x5d\xbd\x31\x89\xe3\x8a\x23\x3f\x7f\xb5\x2f\xa3\x69\x95\xe3\x93\x63\x07\x9c\x02\xad\x36\xa1\xab\xd1\x8c\x55\x6b\xcb\xf2\x52\x14\x51\xe7\xf2\x23\xad\xbd\x4c\xe1\x25\x66\xe5\x45\x6f\x2c\xab\x03\x4c\x1a\xee\x26\x4d\xb9\xac\x70\xb9\x66\xb9\x9b\x0e\x08\xbe\x66\x19\x5c\xb3\x3c\xee\xa4\xd9\x92\x6b\x96\xbb\x69\xc9\x59\xd6\xc3\x0b\x3d\x2c\xed\xbf\xbc\x69\x58\xe8\x03\x5d\x4e\x3b\x0f\xda\x26\x0f\x5a\xc6\xb7\xfe\x40\xd3\x68\x3a\x23\xa6\x5f\x66\x6e\xe2\x23\xdc\x4d\x4c\xbf\xac\x27\x88\x83\x70\x37\x29\x33\x5f\xbf\x10\x10\x21\x13\x31\xf1\x40\xae\x7e\x29\x8a\xe5\x7f\xf2\x32\x38\x96\x37\x15\x5c\xcf\xdc\x4d\x6b\xd2\xf6\x84\xe1\x35\x71\x37\xed\x30\xb7\x57\xc2\x70\x9f\xc8\x8f\x96\xbc\xed\x89\xe4\x36\xe7\x6e\xda\x49\x6e\xab\x17\xae\x6d\xee\xa6\x2d\xe3\xb6\x62\xdf\x9a\x31\xe9\x97\x6d\x59\xe1\x7e\x46\x8f\x65\x63\x7b\x97\xb7\x35\x33\xda\xce\x6d\xcf\x4c\x38\x5b\x64\x2b\xaf\xed\x99\xe1\x7a\xe6\x6e\x92\xd0\xed\xed\xdc\xd6\x8c\x69\x23\xb6\xad\xc1\xb7\xa6\x40\x3b\xae\x6d\x59\x89\xf0\x0d\x99\x70\x90\xdb\x41\x1b\x4e\x81\x41\x35\x7f\xbe\x8d\x3f\x6c\x55\x75\x4a\xdd\x26\xf1\x16\x89\x75\x20\x7a\xad\x5e\x5e\x91\x58\x22\xf7\x5a\x55\x93\x55\xe0\x6e\xda\x9c\xbc\x16\x8a\x88\xde\x90\xad\x34\x5f\x33\xff\x1b\xfb\x30\x82\x24\x1c\x68\x18\x4d\x27\x87\xf1\xaf\xf1\xf4\x46\x07\xa2\xd7\xba\x57\x97\x48\x4d\xc7\xc5\xd7\xb4\x89\x6b\xa3\x74\xf7\xcb\xdf\xbb\x37\x28\x8c\xae\xd3\xf1\xeb\xfd\x59\x44\xe1\xcb\x55\xfc\xf4\x7a\xb7\xa1\x4b\x24\xdc\x7e\x0f\xe8\xea\xa1\x65\x4f\xae\xe6\xaf\xfa\x5f\x54\x03\xda\xb7\x42\xe3\x17\x76\x7f\xb7\x6e\xd8\x87\x62\xf5\x6d\x82\x3a\xe4\x2a\xf6\xfb\xf5\x66\xf4\xd1\x52\x56\xec\x3f\xbd\x5f\x2a\xc2\xc3\xdd\xb5\xcd\xfb\x79\xd1\x0b\x3f\x11\x59\x69\xef\xf1\xf3\x7e\x0e\x03\x9a\xbb\xeb\xd0\xf6\xb3\x06\xff\x41\x79\x1d\x49\x7e\xde\x6d\x10\xca\xe1\xc6\x9e\x74\x8f\x9f\x99\xf5\x07\xb3\x6a\x79\x50\xba\xd0\x53\xa8\x81\xd6\x48\xa7\xbb\x8e\xba\xe8\x45\x8d\x9a\xee\xe1\x64\x92\xbd\x6a\x28\xc2\xc3\x29\xd0\x28\x17\x4b\xe3\x67\x2d\xf2\xd3\x34\x69\x0d\xfb\x59\xaf\xff\x44\x77\x1d\xf1\x7e\xa6\xfb\x0f\x1e\x96\x24\x7c\xa6\x7b\x5c\x9b\xc9\xd6\xfb\x40\xd9\x68\x66\x55\x9d\xff\xbc\x42\x86\x47\x4a\xae\xda\x9e\x29\x1e\xc4\x29\xd0\xa8\x96\xb6\xcf\x2c\xac\xbb\x38\x3d\x0d\x8c\xcf\x3c\xfc\x71\xb8\xd3\xd3\xc0\xf8\xac\xa8\x09\x03\x78\x77\x2d\x27\x9f\xe5\x5b\xb7\x6b\x5d\x92\xf3\x99\x87\x3f\xd1\x52\x3b\xb4\xcf\xaa\x57\xf7\x5f\x1d\x55\xed\x48\x11\x9b\x48\x11\x32\x49\xdf\x8e\x14\x71\x0a\xd1\x2c\x4e\x82\x07\x7c\x8c\x8f\x66\x07\xeb\xc6\x94\x43\xcb\x56\x48\x88\x1b\x17\xf5\x3d\x95\x87\x72\x13\x1b\x42\x16\xec\x07\x72\x35\x23\x18\x81\x65\x86\xb8\x11\x14\xa2\xf3\x98\xc6\x1e\x70\x1b\x1f\x33\xe5\xbe\x8b\x36\x13\x3f\x97\x7b\x60\xcd\x30\x15\x5b\x70\x2b\xb0\xc4\x3d\xb2\x3a\x3f\xdd\x2a\xb4\xd1\x1b\xc2\x54\x70\xc1\x4d\xc8\x88\x4c\x32\xa7\x3d\xe5\xb9\xb2\x09\x0d\x91\x6e\x2c\x66\xf7\x94\x87\xca\x29\x50\xcd\xad\x66\xb5\xb7\x52\xa8\x88\x7b\xb0\x05\x74\xa8\x88\x53\xa0\x1e\x4e\x25\x33\x89\x73\x66\x5c\xca\x65\xad\xe4\x53\x2e\x2a\xa7\x40\xf5\x8f\xab\xd9\xc6\xbf\xf1\xb9\x6b\x11\x11\x08\x5d\x78\x93\x3d\xe5\x80\x1a\x6c\x42\x4a\xc8\x93\xb2\xa7\x32\x55\x9e\x42\x8a\x6a\x1e\xa1\xb3\xd1\x54\x83\xae\x9c\x4a\x55\xb9\x15\x29\xe2\x1e\xac\x82\x53\x49\x29\xb7\x22\x42\x3c\xba\xa0\x77\x44\x88\x53\x88\xea\x93\xd1\x8f\xd1\x2d\xd0\x45\xe8\x6e\xf4\xa4\x96\x26\xfc\x32\x3e\xc6\x8a\xa6\x74\x58\x89\x3d\xb9\xff\x7b\x2e\xd7\xee\xb1\x12\x17\xf1\xb9\xfc\xbd\x16\x47\x85\xa1\x78\xae\x6c\xbc\x66\x90\xfb\xbf\xe7\x42\x6d\x4d\x5b\x51\x4d\xac\xa8\xc8\x0f\x7f\x20\x37\xab\xb1\x72\xbb\xe3\x68\x13\xa7\x40\x77\x58\xaa\x67\xf1\x60\x31\xa3\x7a\x08\x5b\x78\xc0\x61\x3c\xcd\xa2\xd0\x1c\x86\x62\x2b\xdc\xc4\x83\xcb\xc2\x01\x6f\xe3\x9f\xe8\xce\x10\x7a\x1a\x4d\x77\xb8\x1d\x9d\x4a\x0b\x79\x0a\x41\xfa\xa2\x5a\x4c\x04\x0c\xa2\x1e\x8c\xfb\x0f\xe8\x5e\x46\xb0\xc7\xe7\xea\xea\x8d\x96\xaf\x59\x44\x9c\xf1\x1f\xc4\xbe\x3a\x5f\x6f\xff\x5b\xd0\xae\x68\xcc\xa6\x1d\x06\x50\x4f\x12\xdb\xda\x00\x4a\xc1\x28\x1e\x52\xa5\x1c\xf0\x36\xfe\x68\x06\x99\x11\x4c\x65\x7d\x3c\x85\xc5\xe7\x4d\xf8\x6d\x7c\xb4\xca\x52\x30\x95\x8f\x61\x2b\xa4\xc5\x93\xa4\x8e\x14\xd2\x62\x4f\xee\x24\x1f\xe2\x17\x1e\x50\x33\x40\xa0\xc2\x27\xb1\xa8\xce\xdb\xdc\x7f\xab\xf7\x12\x75\x5f\x32\x4e\x9c\x46\x1e\xbd\x32\xcc\xc7\xea\x2e\xbc\x47\x32\x31\x89\xb6\x63\x50\x9c\x02\xd5\xa3\xdc\xe7\x63\xbe\x7d\xd4\xcd\xf6\x08\x3f\x8c\xa7\x7a\x4d\x99\xaf\xf4\x88\x3a\x21\x4f\x98\x03\xdd\x46\x33\xaa\xae\x5e\x7a\x54\x5c\xdd\x3d\x32\x22\x9c\xb6\xff\x51\x10\x0a\x25\x80\xde\xd3\xf6\x3f\x8a\x2a\xf1\xe8\x0d\xc3\x51\x25\xb6\xa2\x4a\x3c\x7a\xc3\x70\x54\x89\x53\x88\xee\xeb\x0d\x63\xfa\xd6\x8d\x38\x12\x59\x5b\xcf\x59\xad\xd8\xb8\x8c\x7b\x88\x55\xb8\x1d\x3e\x62\x13\x30\x22\x3d\x7a\xc3\x98\xb6\x0b\x9a\x24\x24\x78\xf0\x0c\x3f\xa0\xab\x1f\x54\xff\x08\x2d\x4e\xab\xea\xa5\x84\xda\x17\x5d\xb3\xa1\x91\x58\xa0\x1d\x0f\xe2\x14\x82\x08\x98\x04\x1f\xf0\x31\xbe\x82\xef\xc2\x37\xe3\xcf\x0e\xa8\x35\xd7\xbe\x8c\xa6\x55\x0e\x99\xd3\xf7\x65\x93\xfb\xb2\xa6\x99\xf5\xbd\xd8\x0c\xeb\x9c\xac\xfd\xf1\xb4\x71\x0e\xf1\x22\x4e\x2d\xc6\x0f\xe3\xcf\xa6\x4e\xdb\xe6\xd9\xbc\x1e\x86\xcb\x8a\x5c\x96\x36\xc1\x24\x28\xd0\x97\xae\xbe\x58\xd2\x1b\x01\xc7\x73\x57\x67\x74\x7a\x53\x9c\x88\x27\x6b\x19\xf6\xed\x1a\x01\x23\x32\xd1\x9a\x0f\xf4\x09\xcd\xca\x31\xd4\x19\xaf\x1c\xf8\xb3\x3c\x79\xa8\x37\xcb\xb5\xc7\xe1\xad\x69\x55\x55\xfa\xc5\x4d\x1c\x89\xf3\xb9\x6a\x37\x93\x61\xe2\xf3\x14\x31\x9f\x4d\x7c\x14\x3f\xe2\x21\x87\xca\x01\xbb\xf1\x54\xdf\x84\x5e\x46\x47\xdf\xb9\x13\x72\x66\xee\x3d\xf1\x72\x79\x0a\x77\x7a\xb3\x7b\x3e\xb8\x5d\x7b\xc8\xf8\x7e\x40\x11\x3e\x8c\x71\xd2\x53\xc4\x93\x5d\x27\x5b\x85\x95\x78\x64\x4b\x31\x7d\x45\x35\xf1\x4f\x79\xf4\x96\x3f\x87\xf5\x53\x04\x92\x90\x97\xd7\x26\x9a\x04\x05\xaa\xc1\xe0\x68\x0e\xb3\xfc\x50\x37\xc5\x65\xb6\xb6\x51\xa0\x88\xa7\x88\x9d\x7c\xe9\x44\xc4\x88\xdc\xb9\xd8\x9c\xca\x96\xb8\x27\x7e\x2b\x32\xf1\x99\xc3\x2b\x01\xfe\x29\x0f\x2e\xed\x7b\x0e\x2f\x87\x61\x15\x73\xf0\xaa\xc6\xba\x9b\xcb\xa2\xe7\x56\xf5\xd3\x83\xc5\x85\xe4\xb9\x55\xff\xb4\xe8\x70\xcd\xf3\xdc\xdc\x90\x4e\x5f\xf3\xcc\xc9\x94\x93\xda\xe3\x80\xdb\xf8\xe8\xbd\xf4\xc1\x74\xb3\x53\xcd\x4a\x62\x97\x39\x61\xa9\x59\x89\xda\x72\xb3\xdc\xac\x3c\xba\x9e\x9f\xbe\x59\x99\xdc\xac\x74\x9e\x40\xe7\xf2\xaa\xba\xd4\x4b\xed\x49\x97\xd5\x4a\xb8\x7b\x64\x82\x85\x6f\xc7\x60\x38\x05\x7a\x23\x69\xb0\x41\xca\xe4\x8e\xe3\xb9\xa5\x5c\x7d\xc7\x31\x89\xf5\xf8\x3c\x9a\xf2\x65\xe5\xca\xed\xc3\xf3\x70\x85\x32\x7d\xfb\x30\xb9\x4e\x78\x74\x91\x3b\x7d\x9d\x30\x09\x9d\xff\xe8\x66\x7d\x6e\xb3\x08\xd7\x09\xcf\xc3\x61\x69\x6e\xb3\x08\x76\x1d\xcf\x73\xfb\x7b\xd7\xa3\x70\xf5\x5c\x3f\x4c\xdf\x27\x10\xbc\x21\x77\x31\xb2\xef\x13\xe6\x56\x37\xb5\xd7\x79\xad\x2e\x5f\x75\x53\x3a\xe7\xb5\x18\xc6\x09\x5e\x1e\x82\xdb\xc1\x16\x4e\x61\xf1\x79\x17\xfe\x35\x9e\xea\xa5\x44\x7c\xb2\x57\x54\x85\x47\x57\x3d\xf3\xf5\xa4\xbc\x4c\xca\x6d\xb4\xab\x67\xc3\xa7\xcb\x93\xf9\x5a\x03\x12\xa5\xf1\xa9\x52\x16\xaf\x35\x20\x47\xf2\xa7\x8a\x93\x6d\xd7\x31\xb1\xeb\x20\xd0\xd1\x81\x5c\x3d\x44\xa8\x3a\x40\xf8\x48\x3e\x89\x68\xf8\xe8\x12\x76\x2a\xa2\xe1\x9e\x3f\x55\xcf\x61\x6f\xfe\x7c\x52\xf8\xa9\x1e\x09\x96\x8f\x98\x13\xff\x8f\xa7\xfe\x67\x5b\xac\xcf\x53\xcc\x59\xf0\xf1\xb6\xd8\x67\xc1\xf9\xa1\xdf\x9b\x58\xc5\x26\x15\x93\x33\xdf\x23\x1b\xce\xe5\x33\x1f\x61\x08\xd2\x23\x6b\xca\x75\x49\x60\x88\x4a\x90\x89\x9c\x74\xa0\x9f\xd1\x54\xc3\x8a\xb8\x6c\x0a\xa1\x68\x05\x8f\xac\x26\x97\x0f\x77\xc4\x21\x38\xf8\x22\xbc\xab\x47\x59\x71\xae\x59\x3e\xc5\x11\x9f\x20\x3d\x5a\xe4\x96\x4f\x71\xeb\x3a\x2c\x29\xe7\xd0\x4d\xf0\x02\x0a\x0c\xb6\xab\x76\x5d\x22\xac\x88\x07\x98\x7b\x35\x7a\x1a\x4d\x67\x58\xe3\x96\xed\x2f\x14\x7e\xe0\xd1\x9d\xd1\xba\xc4\x11\xc4\x21\xc8\x04\x9c\x3b\xd0\x32\xfa\x77\xd0\xa8\x1e\x07\x25\xd8\x84\x21\x48\x4f\x87\x0f\x97\x32\xec\x6d\x45\x25\xc0\x51\x75\x3b\x2a\xc1\x29\x34\x3e\xbf\x85\x1f\xc6\x2f\xf0\x55\xf8\x57\xf8\xa1\xea\xe9\x8d\x82\x09\x9e\x02\xd5\x1b\xdd\x8c\x8e\xbe\x77\x75\x52\xc2\xb2\xf0\xca\x79\x08\xde\xb7\x97\xbd\x72\x16\xb6\x20\x8f\x4c\x35\x97\x8d\x3b\x16\x27\xc7\x47\x77\x40\x2b\x99\x64\x89\x03\x43\x2f\x1a\xd5\xf2\xa8\x60\x33\xe9\x00\x07\x3d\xd8\x0b\x3f\x9b\x87\xb8\x60\x07\xec\xc6\x47\x37\x51\x01\x44\x1d\xa0\x00\x11\xc4\x36\x36\xe2\x50\xfc\x81\xc7\xc4\xcc\xee\xbe\x0e\x77\x84\xad\xda\x4b\x39\xf6\x36\x21\x04\x32\x89\x57\x0f\xb4\x8c\x0e\xee\xe3\x1c\xbb\xb2\x2e\x93\x88\x20\x90\x1e\xdd\x97\xac\xac\xbb\x3d\x05\x14\xe8\x43\x7d\xf7\x58\xb1\x28\x79\x3a\x9b\x9d\x65\x8b\x12\x05\x1a\x78\xfe\x5a\x5d\xee\xbc\x68\xc3\x36\x65\xf9\xe8\xa8\x88\x02\xcf\x10\xe3\x14\x33\x4e\x9c\x21\x33\x11\x9e\x0e\x34\x8d\xfe\xf8\x9c\x5e\xda\xa3\x66\xe9\xe4\x88\x6b\xf2\x01\x25\x82\x3a\xf3\x0d\x56\xe2\xe5\x33\xdf\xc2\xab\xe5\x21\x2d\xc2\x76\xd6\xff\x4d\x9e\xff\x83\x57\x37\x3d\xe5\x3a\xbd\xe9\x0a\x64\xd9\xd4\x84\x6c\xfc\xe9\x19\xd2\x20\xca\xa6\x77\x0a\x87\xf6\x83\x63\xbe\x43\x04\xec\xa5\xd3\xdb\x40\x3f\x2e\x5b\xa6\x28\x74\xc0\x23\x5b\x44\x87\x0e\xd8\x4b\xc7\x37\xdd\x5d\xac\xdb\x9c\x13\xe7\xb8\x3c\x92\xd1\x9a\xc3\x5b\xa3\x6d\xea\x8d\x47\x8b\xc1\xca\x43\xe4\xc1\x03\x0e\xe3\xe9\x0e\xfb\x61\x47\x1a\xd8\x2b\x4c\x4e\x0e\x1e\x8e\xb2\x8b\x89\x22\x10\x54\xdd\x75\x38\xbf\xfe\x5e\x78\x6f\xd4\x4b\xb3\x62\x83\x8c\xc5\xf1\xad\x5e\xd2\xbb\x8f\x39\x16\xd3\x8b\x7a\x89\xca\x36\xbd\x20\xfd\x7d\xaa\x97\xa8\xac\xfc\xf7\x9b\xfc\xf7\x59\xd7\x58\xe4\xb7\xa7\xd0\xf8\x7c\x08\x3f\x8c\xa7\x59\xe9\x6f\x1f\xd3\x08\x0a\x90\xea\x25\xea\x57\x6b\x1d\xfc\x2e\xea\x25\xfd\x5d\xad\x5d\x22\x23\x9c\xfc\xca\xb7\x83\x01\x9c\x02\xd5\x48\xbd\xd8\x0a\x82\x44\xf5\x07\x5f\x84\x17\x15\xaa\x46\x2b\xc9\xaa\xd3\xd5\x4f\xaa\xef\x42\x4f\xa3\xe9\xfd\x50\xef\xcd\x82\x1c\xeb\x2a\x41\xee\xb6\x83\x01\x6c\xb2\xd2\xa7\x9a\x58\x0c\x9d\x96\xfe\x14\xa2\x3b\x3a\xe2\x2f\xfb\x4b\x90\x97\xfe\xe0\x21\x7e\x33\xaf\xe1\xd0\x50\x93\x44\xc2\x0e\x0d\x8b\xc3\x51\xc5\x6f\xf6\x80\xae\x87\x7e\x26\xb1\xbe\x6d\x0f\xe4\xd6\x5f\x65\x60\xe8\x2c\xf4\x1b\xff\xfe\xac\x4b\xc1\x65\x8f\x06\x79\xfb\xd7\xa4\x45\xd5\x46\x06\xab\x6b\x58\x9a\x14\x5b\x13\x90\x70\xfe\xe0\x6f\xe1\x87\xf1\x74\x93\xfb\xe1\x65\x73\x02\xb9\xf5\x57\xf9\x56\xda\xad\xff\x14\x3a\x78\x7d\x6f\xed\x4b\x4e\xb7\x9a\xb4\x1e\xca\xaf\xff\x14\xce\x36\x71\x3c\xea\xa6\xb6\x89\x0b\x7b\x82\xaa\x2b\x84\xd5\xcd\xca\x5d\xd4\x94\xde\xb4\xe1\x00\xa9\xee\x53\xcd\x5c\x03\x39\xd7\xfd\x26\xd7\x7d\xb6\x62\xe8\x56\xb3\x1c\xb3\x6a\xe6\x84\xe1\x68\x02\x9b\xec\xf1\xa9\x92\x57\xf5\x80\xdd\xf8\x20\x32\x67\xf9\x35\x3c\x28\x8e\x4d\x35\xdf\xff\x41\x9a\xe7\xbd\x86\x39\x37\x1e\xef\xcf\xbf\x35\xe1\x3f\xe1\xa1\x85\xf6\x06\x3e\x56\xc9\xed\xbf\xe6\xdb\x78\x77\x2a\x16\xa2\xc1\x59\x6e\xd9\x85\x01\x3f\xff\x54\x65\x53\xb9\x86\x57\x1c\xdc\xfe\xad\xc4\x86\x49\xc1\xc3\x7f\x95\xd7\xd4\x1a\x96\x76\x5e\xf8\x2b\x29\xf1\xf7\xf2\x0b\xbf\xfc\xfe\xab\xee\x2f\x9c\x5b\x7e\xcb\xef\xbf\xea\xa2\xc2\xc9\xe5\x37\x01\x00\xf2\x10\x9f\xd8\xb5\x01\x47\xff\xf3\x39\xbd\x54\x9a\xb9\x2d\xbf\xff\xc1\xe1\xc9\x7e\xff\xa7\x40\xed\x52\x02\xd3\xec\x36\x35\x61\x52\xb5\x3e\x12\x2e\xe2\xfd\x57\xf9\x05\xad\x69\x76\x9b\x90\xf8\x0f\x5d\x8c\x8e\x4e\x6a\xcb\x60\x47\x88\x85\xc3\x43\xcd\x5a\xd4\xed\xf0\xb0\x70\x78\x20\x00\xd6\x81\x44\x79\x0e\x96\x55\x8e\x38\x6b\x79\x35\x5b\x30\x73\x11\x57\x2d\x6b\xaa\xa5\x56\xab\xd0\xd5\xe8\x46\xa2\x96\x47\xf8\x61\xfc\x04\xdf\x84\x5f\xc6\xef\xa8\x66\x08\xad\x89\xe2\xa0\x58\x8b\x14\xc6\x32\x1f\xc4\x89\xb1\x5c\xd2\x77\x4a\xe0\xb6\x49\x5a\x5f\x2e\xed\x0c\xfc\x16\xae\xe0\x01\x55\x76\xf8\x4e\x56\x7f\x0a\x29\x3e\xaf\x42\x67\xa3\x69\x54\x9b\xac\x6d\xf5\xc2\x29\xb4\xea\x82\xc1\x59\xec\x37\xe9\xea\x0f\x9e\x09\xd9\x66\x83\x38\x8e\x16\x5d\xc4\x2f\x3b\x17\x10\x5d\x20\xd5\x22\xed\x62\x27\x82\xc5\x21\xb4\x16\xcd\xc8\xf6\x8a\xb8\x45\x79\x91\xd8\xaf\xd7\xa4\xc3\x3f\xf8\x21\xfc\x36\xfe\x8d\x66\x55\xbd\x6e\xa6\x56\x3c\x5e\x97\x2b\xe9\x6b\x2f\x94\x64\x22\xa8\x32\x70\x5d\xdb\xa2\xc3\x19\xb7\xde\xda\xa6\xd8\xe9\x60\x11\xf2\xaf\xde\x5a\x3a\x5e\x2f\x88\x11\xfb\x4f\x91\x34\xb6\x83\x10\x9c\x02\xd5\xdf\xfe\x7c\x18\xbf\xc0\x67\xe1\x45\x04\x0e\xa7\xf5\xe6\x7d\xd2\x79\xee\x37\x79\xee\xcb\xa5\x85\xc9\xbe\x0b\x0b\x1f\x85\x7a\x73\xdb\xbb\x5e\xab\xcc\x97\xc1\x72\xd8\x5b\xaf\x07\xcb\x23\x75\x95\x5d\xe7\x52\x86\xb8\x53\xa0\x97\x52\xb1\x7e\x8d\x56\x08\x85\x2a\xbb\x4e\x27\xcc\x3f\x85\x48\x8a\x74\x4b\x6d\xfd\x7c\x76\xc1\xe9\xa0\xde\xd2\x4f\x76\x3a\x58\xf1\xe6\x9b\xea\xad\x4d\xd6\xcf\x5a\x91\x40\x82\x55\xc6\x8e\xeb\x67\x29\xe1\xf5\xb6\x92\x8c\x71\x3b\x14\xc3\x56\x28\x86\x2a\xf3\x3a\x87\x62\x38\x85\x18\x97\x6c\xcb\xd6\x67\x8e\x25\x6f\x5a\x95\x11\xd9\xfa\xac\x41\x22\x81\x9a\x22\x8a\x6c\x87\x4a\x38\x05\xaa\xd1\x71\xd2\x67\x67\xe5\xa7\xaf\x32\x59\x5a\x7e\x47\x55\x22\xfa\x2a\x73\x3c\x27\xa2\xdf\x24\xa2\x2f\x64\xb0\x3a\x50\x35\x3a\xa8\xf3\x48\x7e\x3e\x6b\xe3\x4f\xa3\x8a\x4d\xd3\x4b\x9e\x79\x0a\x74\x27\xf4\xe8\xeb\xcc\xf2\x6f\x8f\x87\xd3\x83\x6f\xe0\xd1\xaf\xa7\x40\x37\x43\x20\x0e\x38\x84\x0f\xaf\x89\x8a\xb3\xf4\x01\x7f\xc2\xc3\x0d\x64\xce\x3c\xe0\x6d\x7c\xf0\x5a\x6c\x5e\x0e\x54\x8d\x8e\xea\xb1\x3a\x3b\xa0\xab\x67\x58\x98\x38\xbc\x0e\x24\xf1\x2a\x90\x44\xc5\x66\xe1\x75\x20\x89\x57\x19\xe7\x2b\xc6\x09\xaf\x33\xce\xbf\x64\x9c\x2f\x3c\x7c\x1d\x68\x1a\x4d\x35\x37\xbd\x54\x78\xbd\x97\x14\xf3\xa9\xe2\x88\xfc\x76\xbd\x69\xbe\x8a\x47\x51\xb1\x2b\x78\x1d\x8f\xe2\x55\xdc\x89\x5a\x1f\xa8\xa6\x13\xee\x29\xd0\xfd\xaa\xef\x51\x23\xa7\x10\x6a\x24\x96\xc8\x03\xfd\x8c\xa6\x9a\xa6\xee\x2c\x57\x23\x62\x36\x55\xbf\xdc\x1d\x51\xa7\x6b\x58\xcb\xd5\xaf\xa8\x3e\x24\xe8\x75\x46\xfb\x57\x61\x2d\x6a\xd5\xdc\xe6\xae\xb9\x25\x62\x5e\xad\x83\x6a\xf2\xbc\x8d\x0f\xa2\xa9\x37\x8a\x3b\xf1\x2a\xb7\x7c\xe5\x95\xf2\xed\x7a\xd4\x7c\x15\x8f\xa2\x92\xdc\xe1\xed\x4a\xea\xf6\x12\x52\xe2\xe0\x99\x93\x6c\x56\xc8\xb0\x42\x33\x7a\x1a\xfd\x91\xdb\x09\xe2\x14\x4f\x6d\x61\x41\xe9\x45\xe8\x6c\x34\xb5\xdf\xff\x41\x14\xf7\xb7\x17\xf3\x39\x4f\xa4\xb5\xdd\x55\xf8\x6e\x7c\xac\x72\xdd\xe8\x69\x34\x9d\xba\xe9\xac\x92\xcc\xbf\x84\x96\x28\x44\xfe\x7a\xc9\x2d\x4f\x21\x86\x26\x82\x2a\xce\xde\x4b\x64\x89\x54\x9b\xb8\x5f\xe9\xe4\x5e\x02\x4d\x94\x6b\x68\x68\xe3\x67\x34\x8d\x56\xe6\xb1\x98\xab\x38\x5c\xd7\x26\xae\xd2\xe1\xfa\x55\xc8\x88\x4a\x1a\x8d\x03\xba\x7a\xb8\x6d\x18\xfd\x09\x8d\x26\x91\x44\xcb\x49\xe4\x14\xa0\x8c\xa6\xbd\x58\x14\x8b\xe6\x45\x9a\xe4\xf6\xbc\x90\xa9\xbe\x36\xd1\xe0\xee\xea\x3d\x6e\x16\xb5\x5f\xfa\x7e\xf9\xfb\x68\x96\x77\xd7\xd7\x51\x17\x5e\x65\x81\xaf\x5c\xee\xbc\xfd\x36\x8f\xe3\x95\x51\xc9\x66\xf9\x12\x6d\x81\x02\xd5\xdf\x54\xff\xb8\x3b\x11\x67\xa1\xa4\x6b\x08\x5d\x8c\x3e\x33\x42\x3c\xae\x03\x55\xa3\x17\xb5\x34\xe1\xb7\xf1\x6f\x7c\x7e\x0b\xfd\x33\x9a\x46\x1f\x66\xea\xb1\xbe\xe0\x7d\xb5\x72\x73\xf9\xf6\xc7\xfa\x42\x07\xf4\xfe\x74\xe1\x5d\xfd\xa0\x7a\xa1\xa7\x68\x80\x0b\x44\xed\x9a\xc0\xc7\x92\xa5\xf3\x39\x37\x53\x07\x94\x64\xf1\x5e\x5a\x71\xdb\x7d\x9d\xbf\xfd\x55\xbc\x84\xda\x07\xa3\xad\xa6\x0d\xde\x0b\x95\x4b\xa2\x03\x3e\xc6\xd3\xee\xe8\xc2\xab\x5d\xfc\x08\xea\xd0\x14\x2a\x17\xdc\x29\x04\x8d\x73\x13\x3a\x1b\x1d\xd5\x0f\x29\x86\x6a\xbe\x24\x00\x42\x1d\x52\x0c\xd5\xc3\xd2\x89\x7b\x48\x31\x54\x73\x48\x85\x43\xb4\x16\x54\xaf\x11\xe1\x5e\x90\xea\x90\x62\xa8\x1e\xad\x0e\xe8\xe3\x86\x3a\xcd\x4b\x1c\x2e\x00\x75\x48\xc4\x9b\x95\x35\x46\xfa\x95\x63\xd4\x01\x1f\xe3\xf9\x7e\xe8\xfb\xf5\xf7\x3d\xf5\x4b\x50\xba\xa9\x19\x81\xf0\x52\x63\x8b\xfb\x92\xf2\x9c\xc2\x17\x78\x31\x4f\x37\x93\x60\xbb\xde\x88\x92\x7a\xc0\x6d\x7c\x30\xc3\xad\xcf\xbd\x18\x70\x62\x6d\x97\x58\xb3\x7b\x31\x20\xd1\x5a\xbb\xa4\x8a\xba\xbb\x4f\x20\xfa\x86\x73\xe7\x01\x5d\xfd\xa2\x7a\xa8\x36\xac\x37\x31\x52\x6f\xf8\x70\xbe\x76\xcf\x7f\x95\xe3\xbc\x5d\xe2\x41\x9d\x49\xdf\x4e\xcc\xb9\x66\xcd\x38\x3c\xb9\x1c\xf7\x9a\x95\xd7\x34\x75\x26\x72\x28\x89\x98\x6e\x96\x53\x60\x4b\x22\xc2\x34\x0b\x62\xff\xdd\x88\x45\xf7\xe2\xef\x4e\xe1\x03\xaf\x7a\xac\x78\xe3\x18\x58\xb8\xec\x78\x9d\x6d\xfc\x14\xee\xf8\xbc\xa8\x1a\x6b\x5e\x0c\xbd\x5b\x2a\xae\xe6\x35\x9e\xea\xa5\x45\xa6\x55\x2c\x06\xe0\xcd\x93\x32\x3d\x5a\x0e\x7c\x2d\x69\x52\xa6\x25\x71\x3a\x15\x99\xbe\xb7\x56\xc3\xa4\xbb\x25\x29\x00\x99\x74\x9f\xc2\x59\x66\x92\x88\x3c\xbd\xf6\xf1\x50\xd9\x52\x75\x35\x7f\xd5\xff\xc0\x43\xfc\x65\xad\xb6\x44\x35\xb1\xf2\xf2\x2a\x16\xf1\xde\x4b\x92\xbe\x58\xd6\x6a\xd8\x6e\xb7\x24\xd5\xbe\xac\xa6\x78\x91\x6c\x49\x6b\xeb\xb2\xa4\x2c\x51\x4d\x73\xbe\x4c\xb5\x25\xea\x74\x35\xeb\x0d\x43\x9c\x57\x4b\x6a\x46\x57\xa3\x21\xb2\x04\x6b\x59\xce\x17\x72\xae\x05\x65\x99\x66\x9c\x4b\x5b\xbe\xfc\xb9\x7b\x09\x2d\x09\xd3\xf4\xf6\x65\xf9\xe4\x04\xda\xb2\x74\xfb\x36\x07\x72\x02\x4d\xfd\x11\xba\x1a\x1d\x83\xca\xe2\xc0\x6d\xe2\x84\x3f\x7b\xf1\x98\xb6\xa5\x96\xe7\xce\x96\xa5\xec\x36\x6f\x1d\xaf\xdc\xd5\x5b\x96\x96\xda\x56\xed\x1b\xd5\x3e\xd4\xea\xd0\x62\xbb\x51\x99\x5a\x83\xb7\x55\x66\x78\xb3\x9f\x5a\x8c\x77\x27\x27\x63\xbd\xd5\xc9\xd9\x8d\x3f\x13\x9b\xa5\x90\xe5\xc5\x7e\x0a\x74\xe6\xce\xc2\xbf\xc6\x43\x1a\xb1\xf1\xb6\x0e\xd9\x22\xa5\xd8\x78\x9b\x2d\xe3\x84\x5a\xb2\x36\xf3\xdb\x6b\x6d\x18\x5b\x97\x7c\xfd\x07\x5e\x84\xe7\xe3\x9f\xff\x8b\xc6\xa5\x02\x5e\xcf\x0b\xb6\xd8\x2d\x6b\xb3\xfc\x7a\x8f\x1e\x46\xd9\x05\x63\x9e\xd7\x1e\xf7\xaf\x7c\xdc\x5b\x96\xa2\x7a\xad\xd7\x5e\x3a\x95\xb2\xd0\x3f\xa3\xa3\xd5\x92\x68\xf5\xe7\xd5\x00\x1f\xf7\x86\xa1\xc5\x6b\x1f\xf7\x57\xbe\xec\xad\x88\x1d\x7e\x66\x87\x38\x5f\x96\x9c\xaa\xd0\x9a\xc7\x30\x5b\x2e\x59\x2b\xf7\xcf\x7a\xe7\x87\x04\x95\x6c\x7c\x37\x3e\x08\x9a\x93\xd0\xd3\x68\x1a\x2d\xb7\xf0\xaf\xf1\x74\x5e\xc7\x9a\x9f\xd5\x11\x67\xd9\x56\x74\xac\xf9\x99\x1d\x7e\xb0\x83\x94\xe3\xcf\x4b\x07\x86\xc8\xad\x48\xe7\xff\x2c\x41\x3c\x13\xb7\x22\x2d\xf5\xb3\x04\x61\xa0\xdc\x8a\x66\xe4\x67\xb5\xf3\x13\x2d\x75\x6c\xfa\x3c\x83\x9f\x68\x59\x8b\xf0\xb7\xf1\x31\x83\x52\xbe\x9f\x67\x10\xcb\xe5\x56\xa4\xed\x3e\x6b\xa9\xb0\x5c\x2e\x59\x44\xf8\xbc\x7e\x12\xb4\xb0\x15\x29\xb5\xcf\x92\xf8\x89\xc6\xd2\x5e\x9f\xb5\x54\x9c\xbc\x53\x2b\x5d\xcd\x5a\x1b\x61\x89\xdc\x8a\x76\x41\x9f\xd7\xdb\x30\x49\x2e\x16\xad\xcf\x44\xe3\xc0\xdd\x8a\x96\xf9\xcf\xb2\x82\xff\x7f\xbb\x25\x73\x9f\x89\xc9\x89\xbb\xdd\xda\xc8\x7e\xe6\xcb\x0f\xbe\x44\xe4\x86\x0c\x9a\x5f\xf9\xf9\x37\xee\x7c\x5e\xfb\xf9\xbf\x23\x5e\xa7\x0f\x7e\x80\xd7\xe6\x5f\x8e\xf5\x0d\x7f\xe1\x77\xc8\x98\xf7\x14\xe8\x0e\xba\x7d\x28\xef\xdb\x3b\xfe\x6f\xc6\xae\x1e\xc9\x72\x9b\x07\xe6\xdf\x29\xde\x0d\xbe\x27\x91\x12\x80\x64\x13\xc7\xf6\x1d\x44\x51\xac\xda\x60\x77\xa7\xc6\xbb\xf7\x77\x01\xdd\x1d\xd8\x4e\x1c\x4c\x15\xd1\xa5\x21\xf9\x48\x10\xfc\x6d\x00\x2e\x11\x0d\xc7\x23\x29\x4e\xe1\xc8\x27\x98\xcf\xa5\x7c\x60\xc3\x71\x3c\x32\x83\x81\xdc\x32\x71\x03\x3f\x80\xd3\x58\x07\xde\xe1\xda\x81\x55\x0d\x98\xf3\x48\x54\x27\x42\x75\xc4\xa0\xcf\x44\x55\x07\x6e\x05\x53\x54\x75\x30\x93\x81\xf5\x39\x63\xe7\x4c\xc6\x88\xe3\x06\x22\x60\x8a\x2e\xbc\xb2\x87\xa6\x05\x1f\xe2\x4e\x12\xf1\x0d\x87\x2f\x53\x44\xfc\x19\x75\x09\xbb\x19\xa8\x7a\x29\xb2\x3a\xd8\x54\x1a\x38\x92\x53\xc4\xfa\x4c\xa0\x9a\xd0\x9d\xe0\x8b\xd8\xc9\x40\xe1\x76\x60\xa5\xac\x40\xe1\x99\x40\xb9\xb0\xe3\xd1\x54\x2e\x76\x76\x86\xf7\x20\x33\x9a\x5a\xbf\xf6\x72\x89\xf3\xfb\x4b\xe5\x62\x40\xe3\x3d\x48\x8a\x21\x1c\xf9\x6c\xfa\x5e\xf9\x40\x39\xc1\xd6\x9b\xc1\xfb\xd1\x49\xe6\xbe\xc1\x0d\xdc\x54\xec\xef\x4c\x5c\x85\x37\x7d\xff\x08\x47\x3e\x38\x4f\x11\xa3\x3f\x13\x0d\xf8\x41\xfc\x10\x8e\xfc\xa9\x85\x5d\x5a\x8b\x0b\x55\x03\xdb\x63\x8a\xea\x3f\x49\xe9\x37\x1e\xa8\x28\xb6\xf8\x04\xb7\xbf\xe1\x74\x3e\x25\xf6\x2e\x7c\xe7\xd9\x79\x10\xe7\x18\x8a\x8e\x31\x84\x75\x87\x28\xf7\x93\x94\x7b\xc3\x73\x96\x19\x87\xc6\xc4\xc1\xda\x63\xa4\xc7\xa1\xda\x1f\xac\x25\x7b\x51\xbb\x3b\x04\xe2\x6e\x88\x6a\x33\x83\xaf\x64\x27\xf8\xef\x9b\x81\xc2\x96\xa2\x0b\x2f\x1d\x54\x2e\x34\xe2\x8c\xc3\x6d\xc6\x3e\x3c\xd4\xe7\xb8\x7d\x35\xb8\xbb\x9f\x71\x68\xc4\x1d\x98\xeb\x8d\x23\xe8\xe0\x5c\x4f\xe2\xbb\x81\xac\x96\xa2\x8a\x85\x71\xe7\xc0\x65\x04\xb7\x09\xa6\xfb\x66\xc6\x91\xc5\x08\x6e\x13\xc4\xf7\xd6\x54\xf9\xa1\xdc\xa1\x21\x08\xf8\x9a\x62\x08\x47\xed\xa9\x21\xda\x3b\x92\xf9\x6e\x46\x0d\xd1\xde\x91\xcc\x77\x43\x6c\xcd\x14\xbb\x70\x14\x6b\x84\x4d\x70\x14\x1c\x84\x2f\xc1\xc8\x1d\xeb\xed\x38\x35\xae\x4e\xb6\x4d\x67\x36\x6a\x9b\x93\xb5\xc1\xd4\x21\xf2\x78\x26\xf0\xab\xb0\xeb\x08\x93\xb9\x30\x14\xcb\x26\x36\x15\x8b\x3b\x59\xe3\x59\x44\x98\xd4\x15\x77\xb2\xe6\x6c\x34\x46\x53\x9b\x64\x8f\x9b\xf3\x57\x99\x34\xa1\xf6\x90\x74\xa7\x9b\x12\xbb\x04\xbe\xea\xcc\x55\x2c\x67\xa0\xa8\x07\xb0\xad\x71\x70\x9a\x7e\x14\x6e\x7c\xcd\x39\x98\x4d\x83\x1f\x37\xbe\xe6\xfb\xfe\x1f\xd6\x59\x0a\x10\x3e\x49\x3a\x37\xc4\x3d\x4c\x51\xa5\x43\x21\x68\x51\x4d\x96\x19\xdb\x59\x73\x9a\x4e\x6d\x67\xc1\x2e\xa7\x8b\xdf\x29\x76\x79\x26\x90\x3b\x2d\xaa\x6b\x6c\xe1\x3e\xd8\x9c\x16\xc0\x65\x19\xb8\xfb\x75\x5a\x00\x86\x25\x9f\xe0\x93\xb7\xd6\x04\x37\xc1\x55\x49\xac\x7f\x83\x41\xd8\x26\xe8\xe4\x9b\xf1\xa0\x45\x34\xf2\x4c\x20\x77\xec\xfb\xc2\x35\xb6\x9c\x3d\x70\xb2\x36\x9a\xcd\x1c\xb3\x99\x9f\x2c\x56\x83\x08\x41\xde\x8c\x27\x2a\xe1\x9a\xcd\x2a\xc8\x5b\x6b\x9c\xbc\x5d\x6d\xc6\xbd\xb5\xbb\x3e\x57\x75\xd8\x96\xd8\x63\x80\x27\x8e\x44\x07\xee\xc4\x4f\xe1\x28\x36\x76\xe2\x2e\x1c\xc5\x06\x61\xd6\xb2\x18\xe2\xf9\x39\xc6\x5c\xc8\x50\xe1\x95\xae\x39\x4d\x43\xc8\xca\x06\x1a\x13\xcb\x3b\x31\xc6\x33\x51\xa5\xf2\x18\x27\xe8\x2a\x6f\x92\x49\x6e\x41\xed\xd7\x56\x3f\xca\x37\x5e\xe2\x2c\x56\x93\x28\x7c\xdf\x59\x70\x72\x0a\x2d\x0d\xca\x09\x5e\xe3\x2a\x51\x8c\xf1\x4c\x54\x2d\x83\xea\x4f\x97\x78\x93\x14\x70\x0b\xea\xab\x4e\x0c\x02\x71\xdb\x2c\x68\x61\x2e\x35\x1a\x1c\xc3\x5b\x50\x03\x2f\x59\xf1\x72\x0c\xdf\xda\xa9\x6c\x1e\xc1\xc8\xbe\x33\x1b\x99\x18\xdc\x10\x1b\xa2\x89\xce\xb8\x34\x75\x5f\x58\x80\x05\xce\xfa\xe3\xe2\xd6\x2c\xe0\xe4\xce\xc0\x6b\x4a\x31\x84\xa3\x3a\x34\x49\x3a\x02\x20\x09\xdc\xc2\x58\x4d\x4d\xd1\xb5\xe7\x4f\xbc\x11\x57\xf5\xd9\x0c\x5c\x7a\x0c\x35\x03\x5e\x19\x5b\x70\xf2\x1b\x32\xb4\x03\x86\x16\x77\x00\xa2\x75\x67\x02\xd5\xe4\x64\x36\x34\x0e\x07\x5b\x2d\x94\x3d\xab\x39\xa0\x53\x08\x58\x90\xe2\x2e\x1c\xc5\x52\xa7\x74\x36\x10\x70\x55\xef\x6f\x2a\xcf\xd0\xec\x87\x67\xc9\xfe\xc6\xf2\x37\x86\x46\x22\xce\x06\x1c\x37\xb3\x29\x2a\x9f\x6a\x4e\x7f\x73\xfd\x3b\xd4\x9c\x38\x1c\x70\x50\xa7\xa6\x28\xd9\x99\xe8\x85\x53\x7b\x86\xe6\x33\x84\xa4\xf3\x37\xcd\xda\x50\x73\x96\x13\xbc\xd6\xd4\x0c\x5a\x32\xe0\x70\xc0\xdf\x9c\xce\x6e\x8d\x50\xdc\x43\xfb\x9b\xf6\xe8\x96\x59\xab\x0b\xe6\xc4\xa1\x25\xb7\x9a\x07\xaf\x9b\x1d\x9e\xd6\x52\x74\xe1\x35\x72\xd9\x9a\xb7\x5a\x07\xa7\x03\xce\x7b\xae\xb8\x35\xb4\x6e\xb6\xda\xc1\xec\xd5\x6a\x37\x5b\x87\xca\xa6\xfd\x3e\x68\xd3\x8d\x7b\x12\x04\xc2\xaf\xc4\x40\xed\xa9\x6b\xb7\x4c\xfe\x5d\x26\xbf\x73\x40\xdf\x6a\x33\x6c\xf7\xfd\xcd\xbd\xc1\xad\x35\xc0\xcd\xb6\x34\xd6\x46\x66\xed\x66\xa3\xe1\x64\x46\x21\xf1\x27\x59\xd4\xfe\xc6\xa5\xa1\x58\xd4\x99\x80\x8e\xd0\xdc\x4d\x4d\xbb\x78\x6c\xed\x6f\xae\xcb\xa6\xe6\x82\x7a\x75\xdd\x3a\x55\x64\xaa\x8d\x71\xfd\xed\xbc\xa8\x50\x48\xfc\x09\x9e\x75\xd3\xce\x69\xaa\x8d\xc1\xae\xf6\x8d\x6b\xee\xa9\xb5\x75\xd1\xac\x5b\xa7\x95\x9a\x9a\x75\xcb\x55\x5f\x7e\xce\x4a\xca\xaa\xc1\x45\x9f\xf3\x6a\x20\xa6\xc6\x33\xae\xbf\x7d\x53\xb1\x52\x4c\xdc\x73\xfb\x46\x85\x9d\x32\x6b\x38\xa7\xf0\x8d\x8b\x03\x9d\x53\x20\x82\x7e\xeb\xb4\x76\x3a\xa7\x60\x04\x7d\xdf\x70\x28\x0e\xb2\x35\x12\x06\x3c\x88\xbb\xf0\x6a\x04\x2e\xe3\x1e\x35\x31\x8e\x2f\x9c\x07\x9b\xf1\x68\x98\x23\x2a\x9f\x6f\x9c\x58\x1f\x59\x41\x1c\x54\xf8\x46\x63\xaa\x83\x0a\x84\xd0\x6f\x1d\x5b\xf7\x78\xb4\xb2\x41\x10\x3f\xdf\x6a\x66\x5a\x17\xd7\xf9\xeb\xaa\x75\x7e\xc7\x56\x3c\xa5\x43\xb0\x25\x5c\x26\x2d\x25\x17\x3c\x0b\x3e\x09\x3f\x84\xb3\xc7\xe8\x2e\x2c\xa5\x26\xb8\x7f\x79\x75\xb8\x82\x4b\x49\x79\x67\x3f\x75\x70\x41\x52\xba\x05\x67\xde\xd8\x3e\xaf\x8b\xb7\x4c\x99\xd8\xbe\xbc\xfa\x51\x9d\x97\xd2\x2e\xd8\x0a\xfe\xc7\x49\x56\xdf\xfe\xb5\xc0\xca\x6f\x55\xfd\x5c\x06\xd0\x51\xd1\xba\x78\x03\xb5\xc0\xcd\xeb\x47\xf5\xc8\x52\x58\xe9\x85\xb0\xd2\x1d\x3e\xe9\x53\xea\x82\x8f\x84\x6b\xe1\x9b\xd2\x29\xd8\x0b\xd6\xd7\x43\xf0\x93\xf0\x79\x12\x5e\x84\x73\x04\x75\x38\x14\x59\xa2\xf7\x2d\xf0\xf9\xe8\x57\x26\x25\xe5\x9d\x7d\xda\x4f\xb6\x18\x59\x76\x0b\x31\x9d\x3b\x14\x32\x25\x17\x7c\x15\xac\xaf\x55\x93\x51\xed\xcb\x9f\x73\xea\xe7\xd4\xb2\xbf\x77\xea\x05\x97\xfd\x0b\x11\x9a\x3b\x7c\x7e\x2d\x45\x62\x5e\x57\xc5\x79\xa2\x0b\xaf\x94\x76\xc1\xd5\xd3\xa7\x13\x3e\x05\x57\x05\xf9\x2b\x4f\x8c\xf7\x4c\x94\x02\x98\x32\xb9\x05\x57\x05\x4d\x99\xa8\xc8\x52\x2e\x38\xa3\x4a\x49\x79\xa7\x15\xe8\xf0\x2e\xb5\x10\x21\x1a\x89\xca\x24\xa0\x2e\x7c\xfb\x99\x89\xac\x20\x02\x38\xa4\xa4\x4c\x46\x75\xda\x9b\x45\x0e\x55\x30\x87\x7c\x07\x73\x65\x89\xff\xb7\xc0\xff\xa3\x93\xa7\x25\xfe\xdf\x02\xff\x8f\x5e\x9b\x96\xe2\x3e\x2f\x10\xfb\xfa\xc1\x7a\x93\xce\xb7\x10\xe8\x99\x8e\x8c\x52\xea\x82\xcf\x82\x0f\xc2\x26\xb8\x34\x36\xd0\x3b\xf4\xa9\x9d\x89\x3d\x15\x62\x67\x26\x97\xbe\xbe\x4a\x4f\xda\x4e\x78\x08\xce\x9f\x83\x98\xc1\x29\x71\xd4\x96\x67\x6d\x3a\xf6\x59\x97\xa9\xa9\x6a\xb7\xd1\xcf\xde\x09\x2b\xef\x51\x79\xd7\x3a\x7e\x0d\x4e\xbf\x6b\xd4\xcc\xb3\xd7\x35\x47\x0a\x53\xe8\xaa\xa3\xb3\x42\x39\xeb\x2c\xbc\x5f\xc2\x36\x66\xe9\x99\xcd\xc2\x33\x9b\xad\xb7\xbf\x0f\xe4\x14\xbe\x5d\x1f\xff\xfb\xed\xf7\xeb\xe3\x8f\xeb\xdb\xf3\xba\x7f\x7d\x7e\x3e\xdf\x7f\xce\xaf\xf7\xcf\xd7\xff\x13\x7d\xcd\x67\x7d\xfd\xfe\x7c\x3e\x7f\xfe\xf8\xf5\x79\x3f\xaf\x8f\x1f\x1f\xf9\x5f\xf5\xf7\x57\x00\x00\x00\xff\xff\x27\xed\x3a\x18\xe9\x30\x02\x00"); -var _aebe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd2\x4d\x8b\xdb\x3c\x10\x07\xf0\xbb\x3e\xc5\x1c\xf7\x39\xec\xe3\x91\xfc\x1a\x10\x81\x92\x65\x21\x2c\xdb\x96\xa4\xb4\x67\x47\x1a\x07\x43\x23\x1b\xc5\x39\xe4\xdb\x97\x99\x71\x52\xe8\x21\x28\xfa\x59\xfa\x33\x8c\xa6\xd8\xed\xdf\xf6\x69\x5c\xa0\xf8\x9e\xa7\x70\xa4\x05\x86\x31\xc5\x4c\xd7\xe9\x96\x03\xc1\x89\xce\x63\x32\xc6\x3a\x88\x63\x58\x1e\x5b\x59\xc2\xa5\x9f\x8d\xe1\xfb\xc7\xfb\x75\xa1\xcb\x3e\x0d\x13\x94\x7a\x2e\xde\xe6\xf5\x2c\x40\x71\xa0\xf3\x78\x5d\xf2\x1d\x5e\xbe\xc4\xe9\x44\xff\x41\xa4\x81\xfd\x5b\x8e\x94\xc7\x74\x86\x97\x8f\xc3\x13\x8f\xb7\x79\xfe\x4d\x17\x4a\x0b\x58\x31\x4a\x51\x56\x53\xec\x3e\xfb\xf9\x6b\x7f\x21\x28\x24\xe7\xf5\xe3\xf0\xaa\x47\xe4\xcb\x4f\xca\xd7\x71\x4a\x60\xff\x47\x74\x7f\xf9\xc7\x7d\xa6\x35\xc9\x14\xbf\x3e\xa7\x48\x80\x8f\xbc\xfd\xdb\x6e\xba\xa5\x05\xaa\xa6\x6c\xd5\xac\x56\x1d\xa6\x48\xd7\xb9\x0f\x94\xfb\x74\x26\x03\xe0\x11\x11\xb7\xe0\xad\x7b\x7f\xdf\x72\x49\xff\x9c\x30\x76\xb3\xde\x1c\xa3\xca\xe3\x06\xe2\x30\x6c\x01\x8d\x47\xab\x7b\xcb\x7b\x57\x37\xc6\xa3\x53\x71\x2c\xb5\x75\xc6\x63\xa9\x52\xb2\xb4\x4d\x67\x3c\x56\x2a\x15\x8b\x45\x57\x19\x8f\xb5\x52\x2d\xe4\x3a\xce\x6e\x94\x1a\xa1\xba\xe4\xf0\x56\xa9\x15\x6a\x37\x9c\xde\x29\x75\x52\x01\x56\x1c\xbf\x51\xda\x08\x95\xc8\xf1\xbd\x52\xbf\xd6\xc9\xf1\x27\xa5\x93\x50\x67\x39\x3e\x28\x05\xa6\x12\x5b\x8e\x8f\x4a\x51\xa8\x74\x1c\x4f\x4a\x24\x54\x77\x1c\x3f\x28\x0d\x42\x5d\x85\xc6\xdb\xb5\xb7\xd2\xa9\x0a\x37\x8d\xf1\x56\x9b\x65\xa5\x59\x55\x59\x3b\xe3\xad\x5b\x5f\xc0\x86\x2d\x54\x0d\x76\xf2\x0c\x8f\x76\xf3\x7f\x9e\xc7\xe7\x8c\x84\x5b\xce\x94\x16\x99\x46\x19\x04\x7e\xe0\x31\xd1\x73\xb2\xe7\x69\xe6\x5b\xf2\xfb\x13\x00\x00\xff\xff\x1f\x7c\xbd\x4b\x05\x03\x00\x00"); -var _ecafa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd2\xc1\x8a\xdb\x30\x10\x06\xe0\xbb\x9e\x62\x8e\xdb\xc3\xd6\x23\x39\x76\x1c\x30\x81\x36\x65\x21\x2c\xdb\x96\xa4\xb4\x67\xc7\x1a\x07\x41\x23\x09\x59\x3e\xe4\xed\xcb\x68\xb2\x2e\xec\x21\x28\xfa\x32\xf3\x33\x91\x54\x1d\x8e\xdf\x8e\xde\x65\xa8\x7e\xa6\x30\x9e\x29\xc3\xe4\xbc\x4d\x34\x87\x25\x8d\x04\x17\xba\x3a\xaf\x94\x36\x60\xdd\x98\xdf\xb7\x65\x19\x6f\x43\x54\x8a\xfb\xcf\xf7\x39\xd3\xed\xe8\xa7\x00\xb5\xd4\xd9\x25\x3e\x6a\x01\xaa\x13\x5d\xdd\x9c\xd3\x1d\x9e\xbe\xd8\x70\xa1\x4f\x60\x69\x62\xff\x91\x2c\x25\xe7\xaf\xf0\xf4\x7a\x5a\xf1\xbc\xc4\xf8\x97\x6e\xe4\x33\x60\x31\xf2\xb6\xac\xaa\x3a\xbc\x0d\xf1\xfb\x70\x23\xa8\x4a\xce\xf3\xeb\xe9\x59\x4a\xca\x2f\xbf\x29\xcd\x2e\x78\xd0\x9f\x11\xcd\x7f\xfe\x75\x8f\x04\xfa\x91\xf0\xe7\x2d\x58\x7a\xe4\x96\xc9\x0f\x61\xf1\x19\x6a\x6c\x76\x62\x5a\xa6\x1e\x83\xa5\x39\x0e\x23\xa5\xc1\x5f\x49\x01\xf4\x88\x88\x7b\xe8\xf1\xeb\xcb\xcb\x9e\x47\xfa\x50\xc1\x07\x24\x9d\xce\x8a\xac\x1d\x38\x4d\x7b\x40\xd5\xa3\x96\xbd\xe6\xbd\x69\x5a\xd5\xa3\x11\x31\x2c\x8d\x36\xaa\xc7\x5a\xa4\x66\xd9\xb6\x9d\xea\x71\x23\xb2\x61\xd1\x68\x36\xaa\xc7\x46\xa8\x29\x64\x3a\xce\x6e\x85\xda\x42\x4d\xcd\xe1\x5b\xa1\x6d\xa1\xed\x8e\xd3\x3b\xa1\xae\x4c\x80\x1b\x8e\xdf\x09\xed\x0a\xd5\xc8\xf1\x83\xd0\xf0\x98\x93\xe3\x2f\x42\x97\xc9\xec\xc1\x74\xba\x2d\x27\xf0\xfe\x4f\xf9\x3b\x3f\x85\xf5\x7a\xc6\x25\x25\xf2\xb9\x3c\x84\x72\x07\x7c\xb6\xce\xd3\xfa\xa8\x62\x88\xdc\x55\x3e\xff\x02\x00\x00\xff\xff\x65\xa2\x18\x80\x80\x02\x00\x00"); -var _fcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x95\x4f\x8b\xe3\x46\x10\xc5\xef\xfd\x29\xfa\xb8\x39\x6c\xdc\x55\xd5\x2d\xb5\x40\x0c\x04\x0f\x0b\x0e\x6c\x12\x32\xf9\x07\x21\x07\x59\x6a\x19\x41\x2c\x09\x59\x3e\xcc\xb7\x0f\x55\xcf\x9e\xc0\x1e\x06\x8f\x7e\xea\x7e\xd2\xfc\xde\x74\xf9\x70\x3c\xbd\x9e\xe6\x69\xf7\x87\x5f\xb6\xa5\x7f\x2b\xbb\x1f\xa7\x79\xd8\xca\x6d\xb9\x6f\x7d\xf1\xe7\x72\x99\x66\xe7\x88\xfd\x30\xf5\xfb\xf3\xd2\x3e\xfa\x6b\xb7\x3a\xa7\xfb\xdf\xde\x6f\x7b\xb9\x9e\xe6\x71\xf1\x82\x75\xc3\x7d\x7d\xac\xf5\xfe\xf0\x6b\xb9\x4c\xb7\x7d\x7b\xf7\x9f\x7e\x18\x96\x73\xf9\xce\x0f\x65\x54\xfe\xf3\x36\x94\x6d\x9a\x2f\xfe\xd3\x8f\xdd\xda\xcd\xf4\x71\xe3\xed\xbe\xae\xff\x96\x6b\x99\x77\x1f\x8d\x95\x79\xb0\x4f\x77\x38\x7e\xed\xd6\x9f\xba\x6b\xf1\x07\xcb\xfa\x8c\x9d\x9f\xb1\xcc\xee\xfe\x51\xb6\xdb\xb4\xcc\x9e\xbe\x0f\x21\xfd\x8f\x7f\x7b\x5f\x8b\xa7\x47\xca\x5f\xbf\x9f\x5e\xfd\xdf\xe4\x29\x78\x4e\x49\xea\x7f\x1e\xfc\xcf\xaf\xcb\x50\x7c\x78\x3e\xeb\xf4\x7a\x5c\xee\xf3\xee\x29\xc5\x88\x27\x38\xc2\x9f\xd5\x2f\x43\xb9\xad\x5d\x5f\xb6\x6e\xbe\x14\xe7\x7d\x1b\x42\x08\x2f\xbe\x95\xe3\x97\x2f\x2f\xfa\xbe\xdf\xac\x70\xd5\x73\xe7\x34\x80\x3c\x77\x84\x30\x8e\x2f\x3e\xb8\x36\x10\xae\x49\xaf\x39\x55\xae\x0d\x0c\xc2\x4a\x12\xb1\x6b\x83\x80\x88\x92\xba\xca\xae\x0d\x11\x24\x2a\xa1\xc0\xd1\xb5\x21\x01\x25\x43\x9c\x35\xbb\x02\xaa\x0c\x25\xd1\xf0\x1a\xa8\x36\x54\x37\x9a\x9e\x81\xb2\xbd\x41\x88\x1a\xdf\x00\x35\x86\x24\x68\x7c\x07\xd4\x3d\xde\x53\xe3\xcf\x40\x67\x43\x99\x34\xbe\x07\xea\x15\x49\xa8\x35\x7e\x00\x1a\x0c\x09\x6b\x7c\x01\x2a\x86\x52\xd6\xf8\x11\x68\x34\x94\x63\x70\x2d\xc1\x14\x99\xa9\x18\x9a\xca\xb5\x04\x59\x64\xb2\xa2\x24\x76\x2d\xc1\x16\x99\xad\x58\x85\xec\x5a\x82\x2e\x32\x5d\x31\x57\xd1\xb5\x04\x5f\x14\x1f\x4e\x35\x1e\xbe\xc8\x7c\x25\xa9\x35\x1e\xbe\xc8\x7c\xa5\x4a\x34\x1e\xbe\xc8\x7c\xa5\x9c\x35\x1e\xbe\xc8\x7c\x55\x14\x35\x1e\xbe\xc8\x7c\x55\x31\x68\x3c\x7c\x91\xf9\xaa\x2a\x2d\x96\xe0\x8b\xcc\x57\xd5\x68\xb3\x04\x5f\x64\xbe\x6a\xd2\x6a\x09\xbe\xc8\x7c\xd5\x51\xab\x25\xf8\xa2\xf2\xe8\x5f\xe3\xe1\x8b\xcc\x57\xdd\x68\xb5\x0c\x5f\x6c\xbe\x32\x69\xb5\x0c\x5f\x6c\xbe\x72\xd4\x6a\x19\xbe\xd8\x7c\xe5\x5a\xab\x65\xf8\x62\xf3\x95\x1b\xad\x96\xe1\x8b\xcd\x57\xc3\x5a\x2d\xc3\x17\x9b\xaf\x26\x6a\xb5\x0c\x5f\x6c\xbe\x9a\x5a\xab\x65\xf8\x62\xf3\xd5\x34\x5a\x2d\xc3\x17\xe7\xe7\xff\xaa\xe6\x43\x18\x37\x60\x51\xcb\x65\x18\xe3\x0e\xac\xd6\x76\x19\xca\xd8\x94\x69\xfb\xfa\x08\x38\xe3\x1e\x8c\xb5\x5f\x86\x34\x1e\xc0\x92\x16\xcc\xb0\xc6\x05\xac\xd6\x86\x19\xda\x78\xc4\x21\x09\x5a\xb1\x3c\xce\x70\x00\x63\xed\x58\x20\x4e\x08\x2c\x69\xc9\x02\x73\xc2\xcf\x03\x16\x5c\x2b\x50\x27\xa6\x8e\x24\x68\xcd\x02\x77\x82\xb3\x29\xa2\x3d\x0b\xe4\x09\x0e\xa7\x24\x2d\x5a\x60\x4f\x70\x3a\x25\x6b\xd3\x02\x7d\x82\xe3\x19\x83\x56\x2d\xf0\x27\xf0\x17\x45\xbb\x16\xf8\x13\xf8\x8b\x49\xcb\x16\xf8\x13\xf8\x8b\x59\xdb\x16\xf8\x13\xf8\x4b\xa4\x75\x0b\xfc\x49\x9f\x04\x53\x21\xd8\xe4\x7a\x4e\x28\xfd\x5d\x67\xfc\xc7\xcc\xed\xef\xdb\x56\xe6\xdd\x26\xbc\x0d\x55\x9d\x89\xd3\x5c\x3e\xbe\x2d\xd6\x65\xd5\x5d\xf6\xf3\x5f\x00\x00\x00\xff\xff\x3e\x48\x0b\x81\x59\x06\x00\x00"); -func _ggbg ()(*asset ,error ){_edcef ,_bdba :=_bbdab ();if _bdba !=nil {return nil ,_bdba ;};_aada :=bindataFileInfo {_ag :"UniJIS2004-UTF16-H",_bc :185990,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492807,0)};_bcg :=&asset {_cd :_edcef ,_dce :_aada }; -return _bcg ,nil ;};func _abdad ()(*asset ,error ){_cagce ,_cfdc :=_gdbg ();if _cfdc !=nil {return nil ,_cfdc ;};_dded :=bindataFileInfo {_ag :"UniJIS-UTF16-V",_bc :3426,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492941,0)};_abba :=&asset {_cd :_cagce ,_dce :_dded }; -return _abba ,nil ;};func _dfad ()([]byte ,error ){return _dc (_eede ,"HKm314-B5-V")};var _bfe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x5b\xab\x26\xd7\x71\xf7\xef\xf7\xa7\x78\x2e\xfd\x5e\xf8\x55\xaf\x63\xad\x82\x61\x83\x91\x2c\x22\x07\xc7\xc1\x8a\x93\x40\xc8\x45\x1f\xaa\xc5\x40\xb4\x67\x98\x19\x41\xfc\xed\x43\xfd\xfe\x8f\x95\x44\x04\x64\x30\xa5\xf9\x3f\xd5\xd5\xb5\x6a\xd5\x71\xad\xde\x5f\x7d\xfd\xdd\x37\xdf\xbd\xbd\xff\xf2\xf8\xea\x1f\x3f\x7d\x38\xbf\x8f\x2f\x8f\xfb\xfd\xdb\xf5\x29\x3e\x7f\xf8\xe9\xd3\x19\x8f\x23\x7e\x78\xff\xf6\xf2\x52\xea\xe3\x7a\x7f\x7e\xf9\xdb\x3f\x21\xe7\x8f\xfb\xc7\x97\x97\x7c\xfe\xfb\xbf\x7e\xfe\x12\x3f\x7e\xf7\x76\x7f\x78\x34\xf1\x5d\x3f\x7d\x7c\xf2\x3e\x1e\x5f\xfd\x39\x7e\x78\xff\xf9\xcb\xa7\xbf\x3e\x7e\xf3\xbb\xeb\xc3\x11\xff\xef\x71\xc5\x9d\xf8\x9f\x3e\x5d\xf1\xe9\xfd\xdb\x0f\x8f\xdf\xfc\x61\xff\xb8\xbf\x95\x9f\x7f\xf8\xfe\xa7\x8f\x1f\xff\x23\x7e\x8c\xb7\x2f\x8f\x0a\x16\x6f\x17\xf4\xe5\xab\xaf\xff\xb8\x7f\xfc\x87\xfd\xc7\x78\x7c\xf5\xfb\xff\xfc\xf2\xdb\x3f\xff\xfd\xf7\x7f\xf8\xed\xdf\xf1\x13\xbf\xfc\x73\x7c\xfa\xfc\xfe\xc3\xdb\xa3\x94\xff\xbf\x6d\xf3\xbf\xf1\x7f\xfa\xeb\xc7\x78\x94\xa7\x88\xbf\x7c\xf7\xcd\x9f\xee\xfb\x73\x7c\x79\xd8\x26\x96\x7f\xfd\xcb\x77\xdf\x3c\xfe\xad\x3c\xca\xf6\xa8\xa3\xb5\xfa\xef\x4f\xce\x7f\xf9\xe3\x87\x2b\x1e\x62\x7a\xe9\x5a\xd0\xf9\xe1\x8a\xcf\x1f\xf7\x33\x3e\xed\x6f\x3f\xc4\xcb\xe3\xf1\x6e\xdb\x5e\x1f\x8f\xc7\xbb\xb5\xbd\xe6\xbf\x56\xe9\xdb\xeb\xe3\x9d\x7f\xfb\xed\xd7\xfc\xfb\x77\xfa\xf5\x9b\x6f\xf9\xd7\xef\x37\x7e\xfd\xf6\xeb\xfc\x35\xde\xae\x5f\x48\x7b\x29\x7a\xc9\xdb\x87\x2f\x57\xdc\xc2\x90\xff\xae\xdc\xaf\x8f\xda\x4a\x3e\xf3\x3f\x7f\x7c\x29\xdb\xf6\xd4\xeb\xfd\xf5\xe4\xaf\xc9\x6f\x91\xaf\x7d\x3c\x78\xe8\x6f\x4a\xad\x02\x3c\x5b\x4b\x68\x09\x5a\x2b\x21\x9f\x40\x2e\xc8\x5f\x1f\xd6\x6d\x01\xed\x40\xfb\xf9\xfa\x78\xd8\x96\x5c\xb5\xdf\x09\xd5\x91\x0f\xda\xda\x12\x9a\xc8\xaa\xe6\x09\x39\xd0\x2a\x40\xbe\xbf\x3e\x1e\xab\xf0\xa0\xeb\xc1\xbb\x24\xd4\xeb\xcb\xbb\xd5\xa4\x57\x43\x2f\xaf\x23\x21\xe9\xd5\x7c\x26\xb4\x52\x89\xa6\x07\xdb\x31\x5f\x1f\x65\x2b\xb9\xa0\x76\x08\xba\x80\x5a\x3e\xd8\x25\xab\xa7\x2e\x65\x1b\x9e\x90\x09\x4a\xf1\x65\xf3\x7c\x63\x97\xf8\xee\xe5\xf5\x51\xca\x66\x2f\xef\xd6\xd0\x83\x03\x25\x6a\x4b\xae\x21\x2e\xc8\xa3\xb1\xa0\xa1\x05\x0d\x87\x0b\x7b\x0d\xe9\x35\xae\x2b\xb9\x2a\xb2\xae\x00\xba\x4f\x1e\x4c\x55\xa7\xc4\x4f\xc4\xf7\x9a\xe2\xa7\xc4\xcf\x54\xe2\xd1\x57\x6a\x3f\xbd\x0a\xaa\x88\x17\xd4\x04\xe5\x83\x63\xcb\x4d\x9b\xbb\xb8\xe2\x62\x87\x72\x8d\x26\xf1\x36\x12\x1a\x23\x1f\xb4\x81\x5e\x66\x23\x21\xc4\x9b\x85\xa0\x78\x7d\xac\x56\x53\x96\x49\x09\x5b\xf7\xeb\xc3\xe6\x96\x86\x36\x17\x94\xe4\x61\xb3\x02\x15\x41\x05\xa8\x00\x55\x41\x15\x08\x25\xa4\xaa\x79\x7a\xce\xac\x1d\x68\x17\xb4\xc3\x25\xf1\x87\xa0\x33\xb9\x70\xcc\x25\x13\x42\x4a\xc1\x01\xd6\x8e\x12\x10\x93\xaf\xae\x1d\x25\xd6\xb1\xc1\x95\x86\x5e\xc7\x13\x2a\xaf\x0f\x6b\x6d\x03\xaa\x82\x56\x72\xf5\x0e\xe4\x82\xd0\xab\x09\x42\xaf\x15\x47\x72\x8d\x5c\xe3\x8a\x53\x90\xf4\x42\x89\xb4\xf0\xbb\xb5\xee\x7c\x63\xc5\xf6\xeb\xd6\x1b\x93\xd8\x6c\x13\x48\x6f\xbc\x1d\xae\x05\x24\xf1\x49\x6c\x36\x54\xbd\x0f\x41\x67\x72\x95\x84\x5c\x9b\xe6\x7d\x01\x39\x90\x0b\x92\xaa\x0b\x08\x59\x3e\x5a\x72\x55\xb8\x46\x17\xd4\xe1\x12\x34\x04\x59\x72\xf5\x0d\x68\x09\x5a\xc9\xf5\x84\x24\x7e\xec\x70\x75\xa0\x43\x10\xcb\xee\x05\x88\x65\x3b\x31\x54\x3b\x4a\xcc\x22\x88\x65\xf7\x06\xc4\xb2\x9d\xb0\xaa\x03\x48\xce\xe4\x0b\xf1\xab\x02\x49\x7c\x12\x9b\x7a\xe3\xc2\xd0\xbe\x8f\xe4\x72\xa0\x7d\x0a\x9a\x70\x0d\x20\x13\x64\xb9\xb5\xf8\x97\xef\x5a\xd0\xae\x05\x4d\x20\x2d\x28\x83\xaf\xc8\xa3\x5d\xc1\x07\xb1\xd9\x31\xf4\x85\x7f\xf9\x9d\xc6\x69\x06\x74\x4b\xd6\x2d\x59\xac\xf1\x96\xac\xdc\xb4\xd2\xd9\x6d\xd7\xa6\x41\x6c\x76\x94\xb8\xa5\x3d\xfb\xd8\xc9\x85\xbb\xf6\x11\x52\x3a\xd9\x64\xef\x45\x10\xf6\x1a\x1b\x10\xf6\xda\xa7\xb8\x52\xd6\x2e\xab\x42\x66\x77\x1e\x9c\x4f\xae\x54\xb5\xb3\x1d\xfb\x5c\x82\xd6\xeb\x63\x6c\xac\x71\x9f\xa8\xba\x63\xfb\x8e\xf6\xbb\x6c\xbf\xaf\x9e\x90\xf1\xc6\x35\x04\x0d\x94\x40\xd6\x9a\x82\x58\xa3\xa1\xbd\x76\x68\xd7\x0e\x11\x0a\xbb\x76\x68\xcf\xd8\x2e\x9d\x7d\xdc\x15\xdb\x10\x9b\xec\xf6\xee\x5d\x50\xee\x63\x27\x3d\xee\x2e\xf1\x49\x86\xe3\xf7\xbb\x9b\x20\x87\x4b\x0f\xee\x82\x88\x8e\xd1\x81\xa4\x44\x26\xf4\xf2\xb4\xc4\xa9\x05\x9d\x64\x00\x52\xda\x7e\xca\x5e\x49\xc6\xf3\x8d\xa7\xec\x75\xe6\x82\x06\xf1\xb8\x9f\x92\x75\x6a\x41\x82\xb4\xa0\x33\xc5\x0f\x3c\x67\xbf\x24\x3e\xc9\x9c\x54\x98\xfd\x92\xf8\xc8\x65\x0f\xd9\x2b\xb4\xec\xd0\xb2\xd1\x2b\xb4\x6c\x1c\x60\xd8\x46\x05\xff\x5b\xdd\xfd\xbf\x4a\xf1\x3a\xe4\x1f\x47\x06\x75\x19\x64\xf5\x43\x41\x0d\xb1\x39\x16\x10\x6a\x1f\x23\xf7\x74\xe2\x58\x87\x52\x38\xc4\x26\xc5\xec\x50\x91\x3d\xd8\xf9\x49\x12\x3c\xb4\xf3\x07\xd9\xf3\x29\x4b\xd9\xf3\x50\xf6\x9c\x1b\x50\x11\x94\x8e\x35\xa9\x49\x87\xe2\xe9\x50\x3c\x4d\x41\x38\xd6\x71\x36\xb8\x78\xe3\xd9\x05\x75\xaa\x4d\x07\x1a\x82\xd2\x04\x26\x25\xce\x4b\xd0\x85\xac\x0a\x44\x20\x1e\x91\x5b\x63\x6c\xcd\x11\x5a\x63\xb0\x35\xb3\x01\xb1\x35\x47\x26\xd4\x62\x13\x2e\x25\x54\x88\xcd\xc9\x1b\xef\x26\x28\x53\xa5\x19\x0f\x2a\x5c\x21\x36\x27\x56\x55\xda\x85\x14\x35\x25\x87\x22\xf8\x50\x04\x3f\xc5\x3f\xdf\x88\xf6\x78\xf7\xa9\x1d\x3a\x33\x44\x8b\xad\x06\xd4\x04\xb1\xf3\xd3\x80\xb0\xc4\x99\xa9\xb6\xd8\x02\x1a\x53\x10\x89\x8b\xfa\x76\x0e\x1c\xfe\x9c\x69\xc2\xc5\x3e\x9e\x53\x0f\x4e\xf2\x35\xb9\xec\x9c\x43\x50\x2a\xb1\xea\x06\x74\x09\xc2\x84\x26\x08\x13\x9e\xd9\xc1\x94\x45\xee\x3f\xad\x08\x22\xb3\x58\x01\xaa\x82\x78\x23\xb5\xf2\x34\xbd\xd1\x78\xa3\xb1\x46\xd3\x1b\xb3\x3d\x2b\x8b\xed\x38\x6d\x17\x94\x5e\x58\x96\x64\x1d\x82\xd2\xbf\xd4\x9e\x9d\xf2\xaf\x73\x21\x9e\xe0\x39\x97\xc4\x2f\x89\xe7\x8d\x4a\x36\xa7\xa3\x2a\xc1\x73\xaa\x6b\x80\xd8\xc4\x73\x4e\x75\x0d\xa7\xe7\x3e\xae\x29\xc8\x05\xb1\x8f\x36\x80\xa4\x97\x67\x56\x5f\xd2\xde\x65\x09\x27\xab\x93\xb8\x4e\x75\x0d\x67\x16\xff\xb2\xc8\xea\xa7\x8a\x3f\xc4\xe6\x13\xd2\x3e\x1e\x2c\xc8\x05\x3d\x1f\x24\xac\xe8\x70\x4f\x25\x9b\x13\x9f\xf0\x92\xb6\xbf\xe4\x13\x17\x51\xeb\x18\xfa\x52\xd4\x5e\x8a\x5a\x1a\xaf\x4b\x51\x7b\xe1\x13\x8e\x33\x5d\xf2\x89\x4b\x3e\x81\x17\x5e\xf2\x89\x8b\xdc\xef\x94\xbc\x4b\xb9\xff\x52\x45\xc5\xf6\x97\x72\xff\x95\xdb\x51\xb7\x2d\x2d\x71\x69\x3b\x20\x63\x91\x76\x2f\x3b\x05\x45\x72\xd1\x3f\x5d\xda\xa1\x2b\xd3\x76\xdd\x68\x70\xae\x75\x09\xc2\x99\xa4\xd7\xc2\x84\x57\xa6\xf0\xba\x51\x34\x2e\xa5\x70\x88\x4d\xfc\xfe\xf2\x21\x68\x25\x17\x69\xf7\xd2\x0e\x5d\xda\xa1\x85\x78\xed\xd0\x95\xd9\xb3\x6e\x24\x98\x4b\xd9\x13\x62\x93\x7e\xf3\xba\xb4\xa0\xcc\x98\xb5\xd0\xfe\x5f\x21\xf1\x41\x4d\x5a\x82\x64\xaf\xcc\x00\xb5\xe0\x98\x97\x32\xc0\xa5\x0c\x40\xa4\x5d\xca\x00\x57\xee\x50\x2d\x94\xe2\xd0\x0e\x45\x1f\x09\x0d\x41\x53\x90\x6c\xbf\x80\x4c\x50\x2e\xa8\x90\x01\x42\x5d\x56\xa8\xcb\x5a\x7a\x70\x17\xb4\xc3\x25\xe8\x10\x44\xea\xa0\xda\x44\xc7\xf6\x91\xdb\x59\x0b\x3e\x11\xea\xb2\x42\x5d\x96\x0b\x92\x78\x76\xa8\x60\xaf\xd0\x0e\xc5\x91\xaa\x56\xda\xff\x38\xa4\xea\x81\xaa\x2e\x48\xaa\x9e\x70\xe1\xbe\x71\x8a\xeb\x14\x57\x03\x7a\x72\x59\x76\x0d\xb4\x08\x71\x4a\x89\x2b\x0d\xad\x96\x2a\xae\x21\x08\x43\x3f\x21\xc9\xba\x72\x8d\x8d\x46\x35\x2e\xad\xf1\xa2\xfb\xa3\x34\xc5\x85\xe7\x04\x86\x6e\x25\xa1\x5b\x86\xbe\xd3\x5e\xb5\xd1\x52\xdd\xb2\xd7\xad\x50\x70\x41\xc8\xba\xb3\x2b\xad\x8d\x3a\x74\xab\x2b\x85\xd8\x74\x41\x28\x71\x63\x1c\xf5\x75\xb7\x8c\x73\x67\x07\x52\x3b\xc1\x77\xab\x03\xb9\xe5\xbe\x2e\x2e\xdc\xf7\xce\x6c\x52\x3b\xd3\xc5\xad\x6c\x72\xd3\x94\xd8\x56\x7e\xbd\x14\xdf\x72\xf8\x3b\x27\xa8\xda\x19\x18\xee\xbd\x09\x92\x90\x06\x24\xae\x9c\x34\x6a\x27\xe3\xdd\x9a\x34\x20\x66\x1b\x6f\x57\xb2\xb9\x8f\x34\x54\x27\x06\xee\xe3\x12\x74\xc1\x85\xed\x0e\xa9\x7d\xf1\x46\x72\xd9\x7d\xe9\x8d\x97\xde\x88\xf8\x4b\x6f\xbc\x90\xc5\x6e\xdd\xda\x07\x88\x19\x5d\xe5\xad\xd6\xf6\x8e\x34\xc1\x90\x12\x21\x25\x92\x98\xb1\xa7\xb7\x7a\x96\x9b\x0d\x1c\xd9\x68\xba\x0e\x1c\x7c\x23\x06\x46\xce\x36\xbe\x11\x03\x22\x66\x4f\xae\x1d\xc8\xd2\xbb\x47\x87\xcb\x96\xa0\xf4\x6e\xcb\xad\xf1\xcd\xf4\x20\x1b\x38\xd2\x6f\x7d\x5b\x12\x9f\xc4\x2c\x47\x73\xdf\x18\x94\x7d\x5b\xbc\xd1\x11\xbf\xf4\x20\x07\x0b\x56\xf4\xa0\xde\x98\x99\xbc\x32\x7d\xfa\xb6\x4b\xd6\x2e\x59\x0d\x48\xb2\x0e\xb8\x1a\xe2\x4f\x71\x9d\xe2\xea\x40\xe2\xca\xd5\x57\x7a\x0b\xdf\x68\xd5\x44\xcc\x0a\x0b\x22\xff\xf8\x16\xa9\xfd\x94\x5e\x71\x03\xdd\x92\x35\x13\xba\x25\xeb\x9e\xaf\x8f\xfa\x5c\x50\x0e\x0f\x49\x64\x09\x54\xbd\xb5\x20\x0c\x6d\x39\xbf\xf9\xf3\xdc\xa7\x90\x92\x2c\x7b\x75\x2f\xa4\x24\x11\xb3\xac\xf4\x5e\x48\x49\x22\x93\x9e\xc7\x4b\xc7\xd0\x85\xcc\x62\xac\xb1\x8c\x27\xc4\x1b\xab\x20\xde\x58\x66\x46\xb0\x65\x0a\xf7\x32\x0f\x41\x07\x5c\x15\xe8\x14\x74\x25\x57\xb6\x2e\x5e\x68\x24\x44\xec\xa9\xd7\x64\xd9\xc5\xe0\x32\xf4\x32\x71\x99\xb8\xd2\xaa\x3a\x20\x72\x0e\x88\xaa\x2d\x54\xd5\x3e\xea\x80\xc8\x72\x5a\x77\x1d\x10\x79\x39\xd0\xcb\xe1\x3a\xa4\xd7\x21\xbd\x04\x49\xaf\xec\xd5\x2b\x8d\x84\x97\x53\x5c\xa7\xb8\x50\xf5\x14\xd7\x95\xc9\x66\x4d\x16\x74\x49\x7c\x12\xb3\xca\xb2\x2f\x3d\x18\x19\xa2\x14\x7f\x2f\x51\x04\x11\xa2\x95\xed\x20\x3a\xbc\x64\x8f\x59\xd7\x62\x41\xcc\xf4\x22\x66\x8d\x65\x87\x96\x9d\xd5\xa6\x2e\x69\x4f\xb5\xf1\x72\xe3\x39\xda\x8e\x7b\x08\x4a\xed\x7d\xc3\x84\xb7\x94\xa0\xb9\xb4\x26\x48\xda\xe3\x13\x34\x12\x5e\xe5\x13\x15\x9f\x70\x9c\xa9\xca\x27\xaa\x7c\x22\x0b\xb6\x57\xf9\x04\xa4\x3a\xfe\x55\xe5\x13\x55\x21\x4a\xd4\x56\x85\x68\xcd\x54\x5b\xbd\x4a\xd6\x29\x48\x0b\x32\x20\x16\x54\x87\xb8\x78\x70\x88\x8b\x31\xdf\x9a\x03\x61\x89\x4a\x20\x7b\x47\x55\xed\x76\x5d\x19\x69\x6e\xe8\xe5\x82\x9c\xe8\x10\x17\x7d\x9d\xd7\xcc\xa5\xd5\x1d\x25\xe8\x1a\x44\xcc\xba\x20\xad\xd1\x51\x02\xab\x56\x97\x12\x1c\xfd\x58\x36\x97\x5e\x5d\x4a\xa4\xe7\xb4\x0d\xab\x56\x79\x4e\x95\xe7\x74\x41\x7a\x30\x0b\x63\xdb\x64\xaf\x53\xe2\x29\x8c\xd6\x05\xc9\x84\x49\xda\x46\xfe\xaa\xa7\x4c\x78\x12\x43\x4f\xc8\x05\xf1\xc6\x8e\xbd\xe4\x85\x55\x5e\x88\x63\xd6\xf3\xf9\xc6\x33\xb9\x06\xcb\x3e\xa5\x2a\x23\x8e\x3d\x1f\x94\xa1\xaf\x05\x17\x0b\xba\x24\x3e\x49\x1f\xf8\x44\x95\xfb\xd6\x1b\x59\xd9\xf4\xba\x8e\x3c\x45\xda\x46\x1a\x6a\x1c\x19\x88\x98\x62\xbb\x71\x64\xe0\x2d\x3d\xa7\x95\xad\x00\x4d\x41\x5a\xb6\x1e\x34\x41\x27\x5c\x13\xe8\x12\x84\xaa\x68\xdf\xe4\x13\x2d\xab\x73\x2b\xe4\xd5\x46\x75\x16\x31\x1b\x88\x1f\x12\x9f\xae\xd1\x4a\x15\xf4\x7c\x90\xa4\xc0\x1a\x1b\x73\xa9\xb7\x39\x93\x8b\x18\x6a\x53\x4a\x24\x31\x1b\xed\x57\x4b\xb1\x37\x8e\x35\xbc\x4d\x47\x08\x2b\x99\xbb\x20\xe2\x7c\x60\x28\xa5\xb7\x96\xc9\xaa\x15\x5c\xa6\x99\x6c\xc7\x04\x64\xd9\xa1\x7a\x33\x19\xca\x30\x94\xac\x62\x5a\x49\x92\xb1\x9e\x5c\xd2\x31\x1d\xbe\x15\x89\x97\xc3\xb7\x9c\x6d\x5a\x21\xd9\x34\x66\x1b\x11\xb3\x1c\xf9\xbd\x2d\x19\x6a\x61\x95\x29\x48\x56\x49\x32\xea\x86\x09\x96\xac\x92\x4d\x49\x2b\xa4\xa4\xc6\xa9\x89\xc8\xe8\x32\x94\x4b\xbc\xa7\x93\x96\xc5\x1b\x5d\x96\x70\x9c\x74\xb0\xf3\xb4\xdc\xde\x32\x06\x5a\x59\xc8\x52\x0c\x40\xcc\x06\x6b\x3c\xb4\xcd\x59\x18\x5b\x25\xab\x37\x15\xc6\xa6\xc2\x38\x79\xa3\x0a\x63\xcb\xc6\xbc\x55\x72\x6c\xbb\x64\x2f\x75\x20\x93\x6d\xbe\xa4\x17\xae\x5c\x89\x81\x26\x57\x6e\x4a\xbb\x54\xd4\xa6\xb4\xdb\xb2\x11\x69\x1c\xfa\x79\xbb\xb4\xec\x24\x66\x13\x43\x87\x94\xc8\x52\xdc\xaa\x16\xa4\x52\xdc\xe8\xfb\x55\xf2\x5a\x68\x87\x22\x2d\x51\x15\x16\x21\x4b\x04\x96\x98\x7a\x50\x4a\xdc\xc8\x92\xed\x6f\xc9\x4a\x32\x97\xa3\x84\x92\x73\x23\xc4\x6a\x4e\x66\xae\x9b\x00\xef\x1d\xf1\x98\xb0\x2b\xa1\x42\x8c\x33\x6b\xef\x6a\x83\xfa\x80\x8b\x2c\xd5\x55\x77\xbb\xea\x2e\x85\xb1\xab\xee\x76\xfc\xab\xd1\xba\x74\xf9\x17\xc4\x2c\x47\x01\xef\xf2\x2f\x2e\x1a\x5a\xc3\x57\x75\xd1\xe0\x7d\x65\xa4\x34\x02\xb1\x2f\x71\x2d\x22\xc5\xc4\xa5\x37\x26\x99\x83\x14\xde\x55\x64\xbb\x8a\x6c\x4e\xd8\xde\x55\x64\x7b\xb6\xc6\xad\x4d\xc9\xba\x04\x11\xe7\xe4\xeb\x2e\xc7\xec\xd9\x33\xb5\x86\x55\x3b\xf7\x05\x22\x66\x39\x61\x7b\xa7\xe9\xf5\xbe\xa7\x7f\xb5\x25\xe8\x14\x84\x7f\x19\x96\xd8\x25\x3e\x49\x6b\x2e\xae\xa7\x78\xb2\x01\x4e\xde\x77\x1c\xa0\xe3\x5f\xcd\x81\xe4\x5f\x10\xb3\x9c\xb0\xbd\x5f\x7a\x63\xba\x49\xeb\xe4\xc5\x2e\x37\x81\x98\x69\xd3\x54\xc3\x7b\x96\xe2\xd6\xc9\xb1\x5d\xa5\x18\x62\x1c\xea\x78\x97\x03\x74\x76\xbb\xe3\x4c\xba\xbe\x11\x69\x9d\x35\x0e\x25\xd4\xd1\x51\x22\x27\x6c\x1f\x1c\xea\xf8\xc8\xbc\xd8\xb8\xdb\xf2\xa1\xbc\x08\x31\x8e\x7e\x7c\x70\xb7\x25\x32\x0a\x7a\x8d\x21\xf1\x03\xf1\x94\xbc\x31\x24\x7e\x90\x86\xe8\x2d\xc6\xa8\x82\x1a\x5c\xc8\xe2\xa8\x5e\xc4\x0c\x43\x0f\xa5\xdd\x91\x09\xb5\x75\x5c\x6e\x28\xa1\x42\x4c\x5d\xd6\x98\x7a\x63\xf6\x72\x6d\x64\xfb\xef\x83\x03\x22\x11\xe3\xfc\xc9\x87\xfa\xba\x41\x7a\x1c\xe4\xeb\xa1\xf4\x08\x31\x5b\xac\xd1\xa4\x2a\x8e\x39\xe8\xeb\x74\xb7\xe5\x23\xf3\x44\x1b\x0d\x2e\xe5\x09\x88\xd9\x62\xd9\xa7\x16\x44\xad\x9c\x1b\x0f\xaa\x56\x0e\xd5\xca\x9c\x8a\x7d\xa8\x56\x8e\x2b\x63\x68\xd2\x8c\x8f\x6b\x09\x22\x86\x64\x2f\x65\x93\x91\x3d\x75\xe3\xe4\xd2\x87\x7a\x6a\x88\x19\xa3\xc4\xb8\xf5\x20\x5b\xcb\x61\xa6\xeb\xea\x4c\xa4\xa9\xb1\x9f\xda\xda\xa9\x5a\xe9\x82\xaa\x20\x94\x20\x0d\x4d\x85\xfb\x54\xb8\xe7\x50\xe5\x53\xe1\x3e\x29\x3a\x9c\x8b\xf9\x54\xd1\x99\x2a\x3a\x38\xf9\x54\xd1\xe1\xb2\xae\x31\xa0\xb9\x2e\xeb\x7c\x66\x3c\x36\xb5\xb3\x53\xf1\x08\x31\xb9\xdc\x5c\x7a\x30\x2b\x41\x53\x2f\x36\xd5\x3f\x4d\xf5\x4f\xec\xf6\x54\xff\x34\x33\xdf\x37\x35\x38\x53\xf9\x1e\xd2\xcb\x13\x92\x78\x6c\xaf\xba\x3b\x65\xfb\xf9\xb4\x3d\xe2\x65\xfb\x99\xa3\x7d\x5b\x1b\x5c\x97\x09\x92\x55\xd7\xaf\x97\xe2\xa9\xdd\x9a\x39\x7d\xb6\xc5\x06\x4e\xa6\x4f\x11\x33\x1a\x94\xc9\xf4\xe9\x93\x08\xe6\xc8\xd2\xa7\x22\x18\x62\x6b\x13\xa4\xc5\xb1\xcd\x8b\x9a\x34\xb5\xcd\x90\xd9\x87\x20\xbd\x91\x69\x6a\xd1\xd9\x4c\x4d\x53\x90\xb6\x08\xfd\x79\xcb\x04\x5c\xa3\x3d\x17\xa7\x96\x1b\xd2\x16\x95\x7e\xaa\xe5\x86\xd8\xa2\x85\xd4\x75\xa8\x1b\xe1\xca\x61\xa4\x9b\xc2\x15\x62\x0b\x57\x36\x85\xab\x65\x0c\xb5\x45\x39\x30\x0d\x45\x10\x5b\x39\xc0\xbb\x29\x9e\x2c\x5b\x8c\xb6\xb0\x84\x59\x13\xd4\xe0\x9a\x40\x5d\x50\xee\xa9\xa6\x03\xd3\xa0\x0c\x31\xee\x5a\xdc\x38\x70\x75\x2e\x60\x9b\x33\x74\xeb\x02\xd6\x6d\xf1\x20\xb6\x37\xe5\x7e\x88\x2d\x42\xdf\xe4\x6b\x76\xc2\x45\x04\x9b\xfa\x58\x88\x2d\x66\x67\x3b\xc5\x95\x86\x6e\xdc\x9a\xbb\xc9\xd0\x76\x8b\x8b\x37\xde\x4f\xae\xf3\xf5\xd1\xb7\x96\x7a\x2d\xd9\x0b\x62\x8b\x11\x65\x29\xc4\x56\x26\xc1\xbe\xd1\xf7\x2f\x25\x41\x88\x2d\xaa\xe0\x92\x55\x57\xa6\xb7\xbe\x0d\x64\x29\xbd\x41\xe6\x86\xf6\x4b\x5d\xe5\xca\x22\xdb\x37\xda\x8d\xa5\x22\x0b\xb1\x45\x3b\xba\x54\x64\x57\x1a\xba\xab\x4d\xd6\xc5\xb0\xaf\xac\x1d\x7d\x23\xd9\x2c\xf5\x29\x90\xa6\xa6\x75\x5d\x7a\x23\x0b\xe2\xca\xd7\x75\xb5\xea\x5c\x6e\x76\x8e\xe0\xdc\x35\x01\xe9\xa2\x53\x4e\xae\x8b\x4e\xf7\x39\x5e\x1f\xbd\xa2\x84\xcf\x29\x68\xc2\x35\x80\x4c\x50\xc6\xa6\xba\x2c\x57\xce\x80\x18\xdf\x35\xb8\x2b\x67\x40\xba\xba\x2c\xd7\x1c\x0e\xb1\x55\x04\xe9\x8d\xe9\x00\x9d\xcb\x5c\xd7\xa5\xa9\x73\xa1\xd8\x2b\x7e\xaf\x0b\x45\xdf\xb3\x26\xf5\x46\x96\xda\x55\x93\x20\xb6\x18\x0f\x77\x6d\xc7\x9e\x26\xec\x6d\x09\x72\x41\xec\x36\x27\x12\xfb\x40\xd5\x7d\x22\xcb\xe1\x92\x93\xef\x72\x72\x02\x79\x97\x93\xef\x96\x4a\xf4\x27\x74\x09\xba\xe0\x2a\x40\x21\x28\x65\x75\xc6\x30\x5d\x3b\x3a\x17\x8a\xbd\x33\xa3\xea\x42\x51\xc4\x16\x27\x12\xba\x50\x74\x2e\xee\xba\xca\xba\x2e\xee\x44\x4c\x79\x62\x3f\x09\xab\x3d\x33\x48\x1f\x84\xfb\xae\x01\x1e\xd2\x36\x72\xbf\xae\xe4\x9c\xfb\xb7\x3e\x50\x42\x17\x6c\x7e\xb0\xdb\x83\xce\xe8\xd0\x6e\x1f\xda\x6d\x02\xe6\xd0\x6e\x73\x75\xd6\x07\xf5\x4d\x57\x67\x7e\xac\x74\xb9\x89\x12\xc7\x6a\x82\x88\x6d\x66\xe7\x43\x13\x01\x17\x6c\x5d\x95\x4b\x17\x6c\x22\xb6\x28\x07\xba\x60\xf3\x23\xe0\x22\x14\x8e\x5b\x5c\xb7\xb8\x78\x50\x27\x4b\x5c\x3e\x75\x2e\xc5\x5c\x97\x4f\xce\x95\x4b\xd7\xe0\xa7\x2b\x17\x3f\x53\x64\x57\x3c\x9e\x6a\xe2\x20\xb6\x38\x03\x39\xd5\xc4\x71\x69\xd1\x75\x9e\xa2\x4b\x0b\xe7\x72\xa0\x3b\xe2\x75\x39\x20\x62\xdc\x21\xf9\xa5\xc3\xb9\x2b\x77\x68\x6c\xa4\xed\x4b\x3b\x04\xb1\xd5\x04\x61\xaf\x2b\x27\x95\xb1\x11\xee\x97\x26\x15\x48\xd1\x3e\xea\x72\xc0\xaf\x63\x72\x3b\x9d\x86\xbe\x38\xc6\x16\xb1\xc5\xe1\xc9\x75\xe8\xc1\x4c\x50\x83\x5b\x05\xbf\x54\xcc\x20\xb6\x1a\xe2\x55\xcc\x38\xe3\x1f\x1b\x15\x55\x67\xfc\x1e\x33\x27\xa8\x82\xf8\xe0\x36\x4d\xc4\xb8\xee\xf2\xe0\x36\xcd\x83\x2b\xf2\x42\x82\x09\xae\xc8\x45\x6c\x35\x3d\x48\x28\x04\x23\x21\x37\x01\x1e\x6a\xd9\x21\x8d\x1b\x65\x0f\x1d\x79\x72\x7a\x3f\x0a\xfd\xa6\x4e\xef\x3d\xd2\xc9\x87\xa6\xb1\x90\x93\x87\x9c\x1c\xbf\x0f\x99\x10\x32\x0a\x85\x22\x64\xc2\xd0\xe0\x68\xf3\xd7\x4b\x71\xa8\x7d\x0f\x26\xc6\x4a\x61\x0c\x4d\x8c\x10\xe3\xe2\xce\x43\xc7\x2d\x9c\xd1\x0f\x3e\x39\x71\x9d\xd1\x3b\xe7\xea\x43\x23\x8a\xce\xd5\xfd\x66\x6b\x1a\xe6\xbc\xb5\x35\x90\xc6\x8d\x9f\xdf\xda\x9a\xfb\xbc\x98\x51\x81\x74\xac\x01\xb1\x45\x1b\x73\x9f\xe4\x8c\x3b\x1b\xf3\xd1\x99\x9d\x6f\x35\xe6\x90\xa2\x43\xe5\x5b\x8d\x39\x47\xcf\x83\x36\x99\x38\xc9\x8e\x81\xff\xb5\x8c\x94\xd0\x69\x74\x70\x82\x3c\x46\xba\x5f\xe8\x04\x39\xb6\x9c\x9d\xc7\xc8\x38\x8f\x8d\xd9\x59\xc4\x56\x76\xa8\xb1\x61\x89\xd8\xd2\xef\xc7\x58\x70\xed\x4f\x48\xc6\x71\xa0\x01\x94\xdd\xcc\x98\x12\x4f\x37\x23\x62\xab\x0b\x0a\xa0\xd4\x7e\x70\xb3\x1f\xdb\x2d\x59\xb7\x6e\xba\x05\x49\x16\x0b\xe2\x2e\x2f\x74\xc4\x1b\x25\x3b\xc9\xc1\x15\x53\x14\x4e\xe5\x44\x6c\xf5\x02\x74\x08\xca\x35\x72\xce\x1c\x85\x14\x1e\x45\xe5\x33\xc7\xc3\x28\x94\xcf\xe0\xc0\x75\x70\x5f\x10\x3a\x70\x8d\xb2\xa7\x2b\x53\xdf\xa2\x70\x29\x2f\x62\x2b\xeb\x5b\x94\x5d\x6f\xcc\x71\x7a\xd0\x00\x47\x61\x9c\x16\xa9\x5b\x43\xd5\x1c\xad\x9f\x64\xac\xc1\x83\x4c\xd8\x22\xad\x0c\x3d\x28\xf1\x71\xc2\x35\x81\x2e\x41\xb2\x17\x7a\x71\x48\x1a\x1c\x6c\x8e\x95\x21\x16\x3a\xd8\x8c\x4a\xd4\xad\x6c\x70\xa2\x12\x75\x22\x46\x4a\x8a\x4a\xd4\x45\xcd\xb2\x3e\x38\xd8\x8c\x4a\xff\x24\x62\xb4\x7a\x51\xe9\x9f\xa2\x66\x01\x1a\x5e\xc5\x75\x09\xba\xf8\x26\xa4\x02\x85\xa0\xe0\xfb\x12\xb8\x64\xaf\x7a\xe8\x93\x93\x34\x74\xc5\xc9\x45\x6c\x75\xb8\x70\xf2\xa8\x59\x61\x86\x67\x93\x1f\xf5\xd4\x1b\x4f\x5a\x97\x2c\x1a\xc1\xf9\xe2\xbb\xa8\x59\x80\xe6\xb6\xf1\x20\x05\x48\xc4\xe8\x37\xa3\x86\xb4\x8f\x23\xb9\xa4\x04\x1f\x31\x88\xd8\x1a\xc8\x92\x09\x39\xf4\x9b\xdc\xb6\x86\x0e\xfd\xa2\x65\x1b\x34\x69\x70\xa2\xd1\x06\x89\x18\x8d\x6a\x34\x6a\xb8\xc8\xdc\xb2\x4c\x45\xa3\x86\x8b\xd8\xca\x51\x20\x1a\x9f\x6d\x45\xcb\x24\x38\x37\xe7\x41\x92\xa0\x88\x71\x57\x1c\x9c\xd0\xbd\x0b\x4e\xbc\x66\xd9\x78\x50\xf6\x6a\x69\x89\xc9\x57\x74\xd1\x64\x09\x88\xc9\x4d\x9a\x2c\xc1\x79\xca\x2c\x39\xb5\x84\xce\x53\x82\xd3\x8d\x59\x51\x42\xa7\x1b\xd1\xb3\x56\x4e\xae\x0a\xa3\x53\x2b\x45\x8c\x63\xb7\xe8\x9c\x9e\x85\x4e\x37\x5a\xf6\x16\xa1\xd3\x0d\x11\x93\xcb\xe9\x74\x23\xf8\x24\x73\xb6\xca\x83\x5c\xef\x89\xd8\x22\x44\xbb\x92\x42\x3f\xe0\xca\xac\x1e\xfd\x10\xd7\x21\xae\x05\xf4\xe4\xe2\x8d\x13\xf1\x87\xde\x78\xe8\x8d\x0e\xa4\x37\xde\xc8\xb2\xb4\x17\xe7\x0e\x4f\x62\x0b\x9f\xd0\xf1\x43\x70\xd6\x30\x39\xc2\x0b\x9d\x35\x88\xcc\xde\x05\x15\x41\x85\x0b\xd8\x06\x54\x05\xf1\x20\xe1\xce\xb9\xc3\x93\x34\x85\x95\x8e\x1f\x62\xe4\xd6\x4e\xf2\x6a\x0c\x6d\x2d\xc4\x14\x69\x83\x6e\x26\x46\x96\xa6\xd9\x67\xae\x71\x30\x5d\x88\x94\xa7\x12\x4c\x17\xc1\x98\x3f\xbb\xc3\xa5\x1d\x1a\xd9\x48\x4c\xbe\x1e\x8d\xb1\x4b\xaf\x24\x8d\x6b\xda\x18\x34\x12\x31\x32\x89\x4e\x0e\x03\x62\x28\x89\x42\x8c\x5b\x98\x18\x7c\xa4\x17\x23\xcd\x36\x07\x59\x6e\x1c\x52\xf5\x90\xaa\x88\x3f\xa4\x6a\x86\xc2\x54\x26\x1f\x0a\x85\xa1\x6c\x82\xdf\x0f\x65\x13\xc6\xfc\x39\xb3\xf3\x0e\x8d\xf9\x31\x07\x1f\x64\x91\x01\xa6\xd2\xe3\xd4\xcc\x96\x33\x7d\x4c\x66\xb6\x98\x96\xc1\xc7\x37\x80\x31\xf9\x20\x42\xa4\x0c\x82\x6f\x2a\x75\x30\xc0\x4f\x2e\xf8\x43\x03\x7c\xcc\x74\xc6\x39\xfd\x17\x77\xc5\x73\xfc\xb2\x12\xc7\xe4\x53\x39\x11\x5b\x38\xd1\xe4\xe8\x2e\xa6\x4b\x06\x2a\xba\xb8\x5c\x5c\x06\x24\xae\xec\x75\x26\x77\x93\xa1\xc1\x5d\xa4\x72\xe9\x14\x1a\xdc\x63\x66\xba\x9e\xa6\x07\x95\xae\x21\xb6\xd8\xe5\xa9\x74\x3d\xf1\x51\x0e\x27\x62\xca\x47\xe7\xd3\x47\x59\x9b\x7c\x94\x09\x78\x32\x8f\x86\x26\xe0\xb0\x09\x54\x80\x98\x3d\x44\x6c\xd9\x06\xc4\x36\x30\x8f\x4e\xed\xb2\xe6\xd1\xb0\x6c\x6c\xe6\x32\x07\x3a\x05\x91\xdd\xac\x00\x49\x56\x92\xb9\x5c\x0f\x4a\xd6\xa2\x69\x30\x41\x54\x3c\x4b\xc7\x99\xcb\xd3\x12\xc6\x67\x9d\x22\xb6\x08\x3a\xe3\x33\xb4\x30\xfc\xca\x0b\x6f\x94\x5f\x99\xfc\xca\x78\x50\x7e\x65\x39\xf7\x4d\xe5\x79\x63\xee\x13\xb1\x95\xfd\x4d\x18\x9f\x38\x04\xb3\xed\x74\x3c\x46\xb3\x6d\x2c\x2e\x35\xb7\x1c\xfc\x63\x69\x8d\x8b\x24\xb5\x61\xfb\xa5\x24\x05\x31\xd5\xb2\x25\x07\xe0\x7b\x63\xdb\x50\x55\xdf\x1b\x8b\x18\xb7\x8e\xa1\xef\x8d\x63\x31\xc7\x94\x02\xc4\x1c\x23\x62\xcb\x16\x50\x17\x94\x4a\x94\x86\x5e\x74\x54\x22\x26\x43\xaf\x4b\x7a\xe5\x1a\xad\x50\x17\x35\xdb\x8a\xd8\xa2\x01\x59\x5a\xa3\x3e\x41\x56\x09\xd7\x27\xc8\x22\x45\x0d\xc8\x92\x4f\x40\x6c\x2d\x41\x52\x82\x83\x92\x42\xfb\xa4\x39\x39\x98\x47\xad\xb0\x8f\x9a\x47\xc3\xb3\xc3\xb0\x4a\x06\xf7\xfd\x10\xc4\x76\x2c\xb8\x38\x2d\x0e\x27\x9f\x56\xfa\x1b\x57\x3e\x85\xd8\x92\x78\xed\xa3\x67\x28\x58\x23\x14\xfc\x7c\x42\x7c\x79\xdd\xe1\x52\x28\x40\x8c\x5b\xda\x70\xee\xda\xc2\x6f\x7d\xd8\xcd\x1b\xb5\x46\x48\x69\x39\x8f\x86\x6b\x8d\x8c\xce\xd6\xf0\x68\x8d\xce\xa1\xd9\xb6\x61\x2f\xcd\xb6\x22\xb6\xd6\x00\x2a\x82\x72\xd9\x3d\x67\xa2\xd0\x20\x1b\x3b\x77\x93\x1d\xbd\x76\xee\x26\x45\x6c\xad\x09\x14\x82\x78\x10\x9f\xd0\xc8\x15\x97\x3e\xaa\xa7\xb2\x68\xe4\x8a\x2b\xcb\xd0\xe2\x63\xff\xb8\x8e\x2e\xa8\xf3\x05\x18\x0f\x1e\x6c\x2d\xd3\xce\xe2\xc3\xca\xd0\xb4\x13\xcc\x1e\x8b\xef\x54\x43\xb3\x47\x44\xe6\xd3\x35\xb7\x14\x1f\x7c\xb0\x10\x71\xaf\xd7\xc7\xe2\x0f\x1a\x22\x38\x3c\x13\x79\xa8\x6b\x0c\x8e\x79\x82\x19\x61\x6d\xdb\xf8\x5f\x09\x2f\xff\xfb\xc7\xfd\xe3\xcb\xcf\x7f\x49\x73\xfe\xf4\xe9\x53\xbc\x7d\xe1\xef\x76\xf8\x6b\x99\xc7\x15\xf7\xfb\xb7\xf8\xf9\x6f\x80\x3e\x7e\xf8\x98\x4f\xf1\xff\xff\x0a\x00\x00\xff\xff\xfe\x3d\xc7\x3f\x2f\x34\x00\x00"); -func _feg ()(*asset ,error ){_agae ,_fcbc :=_ede ();if _fcbc !=nil {return nil ,_fcbc ;};_acd :=bindataFileInfo {_ag :"Adobe-Japan1-5",_bc :2005,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491332,0)};_cag :=&asset {_cd :_agae ,_dce :_acd };return _cag ,nil ; -};func AssetInfo (name string )(_ce .FileInfo ,error ){_cbc :=_c .Replace (name ,"\\","/",-1);if _eeec ,_bcgd :=_fcbe [_cbc ];_bcgd {_bgfad ,_cceg :=_eeec ();if _cceg !=nil {return nil ,_d .Errorf ("AssetInfo %s can't read by error: %v",name ,_cceg );}; -return _bgfad ._dce ,nil ;};return nil ,_d .Errorf ("AssetInfo %s not found",name );};func _gfbf ()(*asset ,error ){_egab ,_fbce :=_dfad ();if _fbce !=nil {return nil ,_fbce ;};_bccf :=bindataFileInfo {_ag :"HKm314-B5-V",_bc :615,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492389,0)}; -_cgcd :=&asset {_cd :_egab ,_dce :_bccf };return _cgcd ,nil ;};var _bage =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xcd\x6e\xdb\x3a\x10\x85\xf7\x7a\x8a\x59\xe6\x2e\x72\x45\x8a\x95\x69\x01\x41\x80\xc6\x2e\x52\x2d\xd2\x14\x75\x9d\x16\x28\xba\xe0\xcf\xd0\x20\x50\x53\x02\x25\x2d\xfc\xf6\x05\x67\x14\x75\x61\x1c\xeb\xd3\x9c\xe1\x19\x71\xea\x43\x7f\xec\x53\x9c\xa1\xfe\x9a\x07\x77\xc2\x19\x42\x4c\x3e\xe3\x34\x2c\xd9\x21\x58\xbc\xc4\x54\x55\xb2\x01\x1f\xdd\xfc\xfe\x48\xe2\xae\x66\xac\xaa\xfa\xf9\xe9\xfe\xd3\xf9\x70\xff\x19\x96\x09\x57\x74\xe8\x8f\xa7\xdb\x34\xe3\xb5\x4f\x61\x00\xc5\x56\xbf\x8c\xab\x1d\xa0\xfe\x86\x97\x38\xcd\xf9\x06\x77\x1f\xfd\x60\xf1\x3f\xf0\x18\x0a\x7f\xcd\x1e\x73\x4c\x17\xb8\x7b\x7e\x92\x1b\x3d\x2d\xe3\xf8\x07\xaf\x98\x66\x10\xc4\x30\x79\xd2\xaa\x3e\xbc\x98\xf1\x8b\xb9\x22\xbc\xe7\x78\xa3\x17\xc4\xdf\x30\x4f\x71\x48\xd0\xfd\x2f\xc4\xee\x1f\xfe\x7e\x1b\x11\xe4\xea\x3f\xf7\xc7\xd7\x10\x26\x9c\x41\x49\xee\x5d\xff\x3c\xf7\x47\xf8\x25\x41\x0a\x68\x5a\xb5\x93\xbf\xd7\xd2\x1f\x2f\x83\xdf\x8c\x8d\xe0\x61\x5c\xf4\xd9\xa4\x0b\x56\x0f\x46\x9a\xe6\x11\x56\x81\x56\xb7\x84\x14\x23\x45\xe8\x03\x21\xc3\xc8\x14\xd4\xed\x09\x59\x46\xee\x11\xb4\x16\x5c\xe5\x19\x79\xaa\xea\x0a\xb2\xdc\xde\x86\x82\xf6\x4d\x41\x01\x09\x15\xd1\x5a\xec\xaa\x07\xa3\x8c\x2c\x88\x04\x5a\xbd\x27\xb4\x67\xd4\x91\x51\x10\x72\x8c\x1c\x55\x29\x42\xc8\x88\x7b\xe9\x82\x2c\x45\x55\xd6\x52\x15\xb5\xb7\x9e\x91\xa7\x2a\x6a\x5f\x02\xad\x02\xad\x2e\x51\x95\xa7\x81\x48\xb4\x16\x8c\xd8\xe8\xc9\x28\x29\x84\x67\x63\x11\xd8\x09\x42\x81\x8d\x81\x4e\xec\xe8\xc4\xc0\xc6\xc0\x5f\x82\x72\xf1\xd8\x8a\xc7\x96\xb2\xac\xc3\x76\x0f\xe5\x7f\xd9\xc2\x6d\x31\xdc\x92\x33\xa6\x99\x76\x90\xee\xbf\x5c\x60\x4c\xb8\xad\xf8\x38\x8c\xc5\x45\xbf\xbf\x01\x00\x00\xff\xff\x42\x42\x4b\x36\x0e\x03\x00\x00"); -var _eagc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x41\x8b\x9d\x30\x10\xc7\xef\x7e\x8a\x39\x6e\x0f\x5b\x8d\x31\xc9\x2e\x2c\x0b\xad\xaf\xb0\x52\x76\x5b\xea\x76\x5b\x28\x3d\xf8\x92\x79\x12\xa8\x31\x44\x3d\xbc\x6f\x5f\x66\x62\xed\x41\xfe\xfa\x8b\xf3\x63\x32\x49\xd9\x76\xa7\x2e\xf8\x15\xca\xaf\x69\xb6\x3d\xae\x70\xf1\xc1\x25\x5c\xe6\x2d\x59\x84\x33\x8e\x3e\x14\x85\xa8\xc1\x79\xbb\xfe\xfb\xe4\xb0\xd3\x10\x8b\xa2\xfc\xf4\xfa\xf4\xf9\xf6\xa3\xba\x7d\x82\x6d\xc1\x9d\xb5\xdd\xa9\xbf\x2e\x2b\x4e\x5d\xb8\xcc\x20\x73\xad\xdb\xe2\x5e\x0f\x50\x7e\xc3\xd1\x2f\x6b\xba\xc2\xcd\x07\x37\x9f\xf1\x1d\x38\xbc\x10\xff\x92\x1c\x26\x1f\x46\xb8\x69\x5f\x7a\x71\xe0\x7e\x8b\xf1\x0f\x4e\x18\x56\xd0\xcc\x30\x38\xce\xa2\x6c\x9f\x87\xf8\x32\x4c\x08\x47\x27\x6f\xbc\xc2\x0b\x6f\x98\x16\x3f\x07\x10\xf2\x7d\x55\x99\xff\xfc\xf5\x1a\x11\xc4\x6e\xf8\xf9\xbd\x3b\xc1\x2f\x01\xa2\x82\x5a\xa9\x3b\xf9\x7b\xe7\x3f\x9e\x67\x77\xfc\x25\x64\x6e\xde\x7a\x97\x86\x30\x62\xf1\x30\x88\xe6\xfc\x08\x7b\x08\xa9\x1b\x4d\x4c\x0d\xcc\x28\x84\x34\x8d\x64\x66\x33\xb3\x99\x29\x66\x2e\x33\x24\x56\x11\xd1\x82\x89\xae\x89\x34\x4c\x54\x26\x9a\xc8\x1d\x93\xfb\x4c\xc8\xde\xd4\x4c\xb2\x47\x93\x27\x77\x60\xb2\xc7\x90\x47\xb1\xd9\x64\x8f\x21\x8f\x62\xb3\xc9\x1e\x43\x1e\xc5\x66\x94\x4c\x28\x68\x2f\xa6\x78\xb0\x1a\x9b\x47\xa0\x50\xe4\xae\xee\x0d\x4d\xfd\xd8\x3f\xbd\xd3\x69\x1f\xf3\xb7\x5b\x4a\x18\x56\x3e\x6b\x1e\x32\x0d\xce\x07\x3c\xee\x52\x9c\x23\x55\xf1\xf3\x37\x00\x00\xff\xff\x7a\x2d\x9c\xb1\x77\x02\x00\x00"); -func _eagd ()(*asset ,error ){_abbcd ,_gfegf :=_cfcfe ();if _gfegf !=nil {return nil ,_gfegf ;};_deee :=bindataFileInfo {_ag :"UniAKR-UTF8-H",_bc :217759,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492671,0)};_agaa :=&asset {_cd :_abbcd ,_dce :_deee }; -return _agaa ,nil ;};func _dcb ()(*asset ,error ){_bfga ,_ecdg :=_fbbg ();if _ecdg !=nil {return nil ,_ecdg ;};_abd :=bindataFileInfo {_ag :"UniCNS-UTF8-H",_bc :287804,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492718,0)};_dcgd :=&asset {_cd :_bfga ,_dce :_abd }; -return _dcgd ,nil ;};func _gfc ()(*asset ,error ){_cgag ,_bfc :=_afga ();if _bfc !=nil {return nil ,_bfc ;};_bbda :=bindataFileInfo {_ag :"B5pc-H",_bc :5309,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491485,0)};_cdgd :=&asset {_cd :_cgag ,_dce :_bbda }; -return _cdgd ,nil ;};var _fgg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x1b\x05\xf0\xbd\x3e\xc5\x2c\xef\xbb\xb8\x6f\xe6\xf9\xa3\xd1\x08\x44\xa0\xe4\x72\x21\x5c\x6e\x5b\x92\xd2\xae\x1d\x69\x1c\x0c\x8d\x6c\x14\x7b\x91\x6f\x5f\xce\x73\xec\x14\xba\x08\x8e\x4f\xa4\x47\xe2\x77\x32\x33\x77\x0f\x8f\xdf\x1e\xd7\xc3\x39\xdd\xfd\xbe\x1d\xe7\xe7\x76\x4e\xfb\xc3\xba\x6c\xed\xfd\x78\xd9\xe6\x96\x5e\xda\xeb\x61\xed\x3a\xd1\xb4\x1c\xe6\xf3\xed\x6b\x7c\xcc\x6f\xbb\x53\xd7\xe1\xfe\xe7\x8f\xf7\x73\x7b\x7b\x5c\xf7\xc7\x64\xbc\x6e\xb9\x9c\xae\xd7\xa6\x74\xf7\xd4\x5e\x0f\xef\xe7\xed\x23\x7d\xf9\x65\x39\xbe\xb4\xff\xa5\xa5\xed\x91\xff\xb6\x2d\x6d\x3b\xac\xaf\xe9\xcb\x8f\xa7\xcf\xf0\xf9\x72\x3a\xfd\xdd\xde\xda\x7a\x4e\x43\x64\x6d\x5d\xe2\xb3\xbb\x7b\xf8\xb9\x3b\xfd\xba\x7b\x6b\xe9\x2e\xe6\x7c\xfd\xf1\xf4\x95\x97\xc4\x5f\xfe\x6c\xdb\xfb\xe1\xb8\x26\xf9\x7f\xce\xfa\x6f\xfc\xc7\xc7\xa9\x25\xb9\x4e\xf8\xeb\xe7\x71\x69\x29\xdf\xe6\x3d\x7e\x7b\x38\x5e\xd6\x73\x92\x5a\xfb\xca\x50\xf8\xda\xf3\x71\x69\xef\xa7\xdd\xdc\xb6\xdd\xfa\xda\xba\x94\xa6\x9c\x73\xbe\x4f\x93\x8f\xdf\xbf\xdf\xe3\x9d\xfe\x73\x45\x37\xf8\xf5\xce\xc3\xc2\xe4\x76\x47\xce\xfb\xfd\x7d\xca\xdd\x94\x85\xdf\x05\xdf\xb5\x2f\xdd\x94\x95\x89\x22\xe9\x45\xbb\x29\x1b\x13\x43\x32\x94\xda\x4d\xd9\x99\x38\x12\xc9\xea\xdd\x94\x7b\x46\x7d\x44\x5a\x31\xbb\x30\x2a\x11\xf5\x86\xe1\x03\xa3\x21\xa2\x61\xc4\xf4\xca\xa8\xc6\x1b\x64\xc7\xf8\x91\xd1\x18\x91\x65\x8c\xdf\x31\xda\x5d\xdf\x13\xe3\x5f\x18\xbd\x44\x54\x05\xe3\x67\x46\x33\x22\xcb\x03\xc6\x2f\x8c\x96\x88\x4c\x31\xbe\x31\x6a\x11\xf5\x15\xe3\xf7\x8c\xf6\x11\x55\xcf\xdd\x24\x94\x92\x90\xf2\x3c\x96\x6e\x12\x62\x49\x60\xb9\xf5\xda\x4d\x42\x2d\x09\x2d\x2f\xb9\x76\x93\x90\x4b\x82\xcb\x6b\xf1\x6e\x12\x7a\x89\x5f\x4d\x31\x9e\x5e\x12\x5e\xbd\x0d\x18\x4f\x2f\x09\xaf\xbe\x18\xc6\xd3\x4b\xc2\xab\xaf\x15\xe3\xe9\x25\xe1\x55\xc4\x31\x9e\x5e\x12\x5e\xc5\x33\xc6\xd3\x4b\xc2\xab\x14\x14\x2b\xf4\x92\xf0\x2a\x23\x9a\x15\x7a\x49\x78\x0d\x82\x6a\x85\x5e\x12\x5e\x83\xa3\x5a\xa1\x97\xb4\x6b\xff\x18\x4f\x2f\x09\xaf\x61\x44\xb5\x4a\x2f\x0d\xaf\x2a\xa8\x56\xe9\xa5\xe1\x55\x1d\xd5\x2a\xbd\x34\xbc\xea\x80\x6a\x95\x5e\x1a\x5e\x75\x44\xb5\x4a\x2f\x0d\xaf\x51\x51\xad\xd2\x4b\xc3\x6b\x74\x54\xab\xf4\xd2\xf0\x1a\x07\x54\xab\xf4\xd2\xf0\x1a\x47\x54\xab\xf4\xd2\x7a\xfb\x5f\xc5\x7c\x82\xe9\xc8\xcc\x51\xae\x52\x4c\x77\xcc\x06\xb4\xab\x24\xd3\x20\x43\xfb\x78\x04\xcd\x74\x66\xa6\xe8\x57\x89\xa6\x0b\xb3\x1e\x05\x2b\xd5\xb4\x31\x1b\xd0\xb0\x92\x4d\xf7\x5c\x24\x19\x15\x1b\xdd\x2c\x33\x53\x74\x6c\x84\x33\x61\xd6\xa3\x64\xa3\x9c\xe9\x6d\x81\xe5\x6e\x32\xd2\x59\xd0\x89\x65\xd4\x6c\xb4\x33\xae\x4d\x33\xf4\x6c\xc4\x33\x2e\x4e\xeb\x51\xb4\x51\xcf\xb8\x3a\xad\xa2\x69\x23\x9f\x71\x79\x7a\x46\xd5\x46\x3f\xa3\x9f\x1b\xba\x36\xfa\x19\xfd\xbc\x47\xd9\x46\x3f\xa3\x9f\x57\xb4\x6d\xf4\x33\xfa\xf5\x82\xba\x8d\x7e\x36\xdf\x76\x05\x3c\x83\x7e\x46\xbf\xbe\xa0\x70\xa3\x9f\xd1\xaf\xaf\x68\xdc\xe8\x67\xf4\x2b\x82\xca\xfd\xba\x07\xd2\xaf\x18\x3a\x77\xfa\x39\xfd\x4a\x41\xe7\x4e\x3f\xa7\x5f\xa9\xe8\xdc\xe9\xe7\xf4\x1b\x04\x9d\x3b\xfd\x9c\x7e\x83\xa3\x73\xa7\x9f\xd3\x6f\x28\xe8\xdc\xe9\xe7\xe5\xb6\x95\xe1\x19\xf4\x73\xfa\x55\x41\xe7\x4e\x3f\xa7\x5f\x75\x74\xee\xe3\x75\xdf\xde\x8d\xc8\x4a\xad\xb1\x7b\xdf\x76\x69\xfc\x8e\x73\xec\xf3\x6c\x99\x2f\xdb\xd6\xd6\x73\x9c\x62\x71\x80\xe0\x5c\x38\xac\xed\xf3\x44\x3c\x1d\x4f\xb8\x2b\x7e\xfe\x09\x00\x00\xff\xff\xbe\xfb\x35\x16\x3d\x07\x00\x00"); -func _ggfc ()([]byte ,error ){return _dc (_gfae ,"Adobe-Japan1-3")};var _dfed =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xc1\x8e\x9b\x30\x10\x86\xef\x7e\x8a\x39\x6e\x0f\x5b\x3c\x10\x13\x90\xa2\x95\xaa\x44\x55\xd1\x6a\xdb\xaa\xd9\x6c\x2b\x55\x3d\x10\x3c\xa4\x96\x1a\x83\x0c\x1c\xf2\xf6\x95\x7f\x08\x55\x0f\x68\x3e\x7e\x0f\xd6\x37\xd8\xc9\xbe\x3a\x54\xde\x8d\x94\x7c\x0d\x5d\x73\x94\x91\x5a\xe7\x6d\x90\xa1\x9b\x42\x23\x74\x96\x8b\xf3\x4a\x71\x4a\xd6\x35\xe3\xfd\x15\xa5\xb9\xd6\xbd\x52\xc9\xc9\xbb\xe7\xe3\xe3\xe9\xf5\x23\xe7\x8f\x9f\x68\x1a\x64\xc9\xf7\xd5\xe1\x78\x1b\x46\xb9\x56\xbe\xed\x28\x9b\xbf\xb7\x53\xbf\xec\x41\x94\x7c\x93\x8b\x1b\xc6\x70\xa3\x87\x0f\xb6\x3b\xcb\x3b\xb2\xd2\xc6\xfc\x4b\xb0\x12\x9c\xbf\xd0\xc3\x73\x17\xa4\xe6\x75\xe1\x38\xf5\xfd\x1f\xb9\x8a\x1f\x89\x91\x89\xb7\xa8\x2a\xd9\xbf\xd4\xfd\xe7\xfa\x2a\xf4\x9f\xcf\x1b\x56\xb1\xf8\x26\x61\x70\x9d\x27\x7e\xaf\xb5\xf9\x17\xbf\xde\x7a\x59\x36\x53\xc9\x8f\x53\x75\xa0\x9f\x4c\xac\x29\x35\x66\x63\x7e\x2d\xf9\xf7\x97\xce\xae\x5d\xcc\xf3\x04\x8d\xb3\xcd\xef\x3a\xa8\x5d\xaa\x39\x7f\xa2\x42\xe7\x1c\x39\x35\x91\x4d\xa1\x76\x99\xe6\x2c\xf2\xd6\xa8\x5d\xdb\x6a\x06\xe7\xe0\x06\x5c\x82\x25\x72\xa1\x23\x67\x67\xf0\x16\x6c\xc1\x05\xb8\x05\xa3\xdf\xa0\x3f\x4f\x23\x0b\xf6\x2f\xb3\xf8\x1f\xee\x3a\x6a\xbb\xea\x85\xda\x5f\x04\x7e\xd9\x13\xc5\xb2\x81\x5a\x19\xd5\xa2\x4e\x2c\x29\xa2\x1c\x51\x81\x88\x21\x9a\x1b\x0c\xb0\x99\x23\xcc\x94\x67\xf0\x8d\x5d\x6d\xab\x4b\x8c\x00\x55\xae\x11\xf1\x6c\xc9\xb0\x3c\x23\x32\x18\xa2\xd4\x8b\xe0\x2c\x84\x97\x78\x47\xd6\x33\x6b\xa6\x10\xc4\x8f\xb8\x21\x38\x95\xf8\xa7\x9d\x97\xf5\x16\xf6\x5d\x1f\xbf\xc2\xf3\x37\x00\x00\xff\xff\xf1\x10\xe4\x07\xb1\x02\x00\x00"); -var _egdd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x98\x4f\x8b\x24\xb9\x11\xc5\xef\xfd\x29\xf2\xb8\x3e\xac\x3b\xf5\x2f\xa5\x80\x65\xc0\xcc\x60\xdc\x0b\x6b\x2f\x9e\x9d\xb5\xc1\xf8\x20\x65\xaa\x86\x02\x77\x75\x51\xdd\x7d\x98\x6f\x6f\x22\xe2\xbd\x5a\x16\xfb\x30\xd4\xcb\xdf\xa8\x42\x11\x4f\x21\xa5\xba\x1e\x3f\x3e\x7d\x7a\xba\x9c\xdf\x96\xc7\x9f\x6f\x2f\xfb\xe7\xf9\xb6\x9c\xce\x97\xe3\x36\x5f\x5f\xde\x6f\xfb\x5c\xc6\xfc\x7a\xbe\x3c\x3c\x84\xb8\x1c\xe7\xfd\x8d\x8f\xf6\xb1\x3f\xf7\xeb\xc3\xc3\xe3\x97\xcb\xf9\xc7\xa7\xcf\xdf\x7f\xf9\xe5\xcf\xed\xfb\xbf\x2c\xef\xaf\x13\xfc\xe3\xd3\xa7\xcf\xdf\x5e\xdf\xe6\xf3\xd3\xe5\xf4\xb2\x24\xff\xfe\xf1\x7e\x45\x8c\x65\x79\xfc\xfb\xfc\x7a\x7e\x7d\xbb\x7d\x5b\xbe\xfb\xd3\xf1\x32\xe6\x1f\x96\x63\x9e\x94\xff\xed\x76\xcc\xdb\xf9\xf2\x75\xf9\xee\xc7\x7e\xed\x97\x70\xff\x8f\xcf\xef\xd7\xeb\x7f\xe6\xf3\xbc\xbc\x2d\xd9\xd8\xbc\x1c\xf6\xf9\xf0\xf8\xf1\xa7\x7e\xfd\x6b\x7f\x9e\x0b\xf2\xf9\xf9\xf6\xe2\x29\xfd\x6a\x03\xec\xff\x7f\x9d\xb7\xd7\xf3\xcb\x65\x09\x7f\x5c\xd7\xf2\x1b\xfe\xe5\xdb\x75\x2e\x01\x71\xfe\xf9\xe5\xe9\xd3\xf2\xaf\xb0\x84\x75\x89\xa5\xa4\xed\xdf\xe0\xff\xf8\xe9\xe5\xb8\x8f\x0a\xeb\xea\x55\xec\xe7\xe3\xd6\x2f\x5f\xe7\xc3\x0f\x7b\x1c\xeb\x87\x05\x1f\x2d\x6e\xf2\xf0\xc3\x8c\x6d\x15\x85\x14\xb5\x49\x02\x2e\xc4\xc5\x70\x04\xde\x88\x37\xc3\x05\xb8\x11\xcb\x87\x25\xc4\x50\x19\x65\x27\x3f\x3e\x2c\x55\xca\xe6\xb8\x33\x78\xf7\xe0\x0d\x98\xc1\xbb\x07\xaf\x8e\x47\x04\x56\xd1\x22\x63\x8f\x44\x9c\x14\x37\xc7\x1b\xeb\x31\x51\x53\x03\x0d\xa4\x41\xe9\x06\x1a\x49\xa3\x52\x01\x4d\xa4\x49\x69\x05\x2d\xa4\x45\x4b\x8c\x21\x1b\xaf\x2d\x3b\x37\xd1\x52\x08\xc0\x85\xb8\x18\x5e\x81\x37\xe2\xcd\xb0\xdb\x5a\x59\xb9\x89\xb6\xde\x71\x25\xae\x86\x31\x65\x6f\xc4\xcd\x30\xa6\xec\x42\x2c\x86\xdd\x90\x46\xb3\x1b\xcc\xf6\x25\x6b\x03\x4b\x63\xa2\x36\xf1\xd8\xa3\x9f\x1c\x9b\xe0\x1a\x48\x6e\xee\xaa\xe4\xa6\xfe\xe5\x16\x80\x23\xb1\x5a\x95\xab\x00\x67\xe2\x62\xa3\x0b\xf0\x46\x5c\x0d\x27\xe0\x46\x2c\x86\x19\xa4\x13\x0f\xc3\xcc\x64\x27\xd6\xbc\xb3\x30\xf6\x41\x7c\x18\xe6\xe8\x49\x3c\x0d\x6f\xc0\x27\xe2\x93\xe1\xe6\x58\x58\xa5\xf5\x4e\x59\x91\x20\x9a\xc7\x45\x2d\x2b\xa6\x14\x16\x6f\xdd\x53\xd6\x0c\x9c\x88\x93\x61\x4c\x29\xf4\x44\x45\xcd\x02\x07\xd1\x56\x2e\x6a\x16\x4e\x49\xab\x6c\x9f\x65\xdf\x7e\x92\xa5\x12\x9b\x83\xc2\x29\xe9\xa0\x8a\x9a\x05\x0e\x8a\x10\x8b\x65\xc2\x29\x69\xac\x8a\x5a\xd6\x15\x78\x10\x0f\xc3\x9c\x92\x7e\xab\xa8\x25\x32\x41\xfa\x6d\x3b\xbb\x44\xf8\x2d\xf4\x5b\x45\x2d\x91\x56\xd1\x6f\x15\xb5\x44\xe4\xdd\xe9\x77\x37\xbf\x23\xac\xea\xf4\xbb\x9b\xdf\x11\xe5\x74\xfa\xdd\xcd\xef\x88\x45\xeb\xf4\xbb\xab\xb1\x25\xa1\x9c\x4e\x63\xad\xed\x4b\x42\x26\x9d\xc6\xda\x19\x53\x12\xca\xe9\x34\x56\x45\x2d\x09\xc5\x77\x1a\xab\xa2\x96\xc4\xbc\x69\x6c\x37\x63\x13\x8a\xef\x34\xb6\x9b\xb1\x89\xe5\xd0\xd8\x6e\xc6\x26\xe6\x4d\x63\xbb\x19\x1b\x98\x20\x8d\xb5\x0d\x58\x02\x62\x0f\x5a\x35\xcc\xaa\x80\xd8\x83\x56\x0d\x6b\xb6\x88\xe2\x07\x9b\x6d\x98\x27\x2b\x83\xd0\x93\x61\x55\xae\x30\x76\xb0\xca\x61\x55\xae\x48\x70\xb0\xca\x61\x79\x07\x78\x32\x98\xe0\xb0\x04\xb3\x3b\x58\x78\x42\x98\xa8\x25\x07\xe0\x40\x6c\x6b\x99\x57\xe0\x48\x6c\x6b\x99\x23\x70\x22\xb6\x72\x72\x05\xce\xc4\x56\x4e\x16\xe0\x42\x6c\x4b\x9c\x37\xe0\x8d\xd8\x96\x38\x37\xe0\x4a\x6c\xc5\x17\xe6\xdd\x88\xad\xf8\xc2\x4c\x84\xd8\xd6\xb2\x78\xde\x8d\xbb\xc1\x44\x8b\x31\x00\x1f\xc4\x87\xe2\x20\xc0\x93\x78\xda\xe8\x08\x7c\x22\x3e\x19\xf6\xd8\x3b\x3d\x31\xa1\x2f\x51\x4f\x7c\x72\x3b\x98\x68\xd1\x56\x2d\xb5\xd5\x9d\x55\xa1\x16\x36\x3b\x1f\xf5\xa9\x01\xdb\x61\x25\x2b\xb0\x9f\x4a\x10\x2d\xd6\x15\x38\x13\x17\x1b\x1d\x80\x77\xe2\xdf\x5e\x0e\xc9\xdf\xe2\x77\x81\xd7\xb9\x3e\x9d\x88\x4f\x86\x7d\xca\xc0\x04\x4d\x54\x09\x0d\x38\x11\x27\xc3\x02\x5c\x88\x2d\x93\xb8\x02\x57\xe2\x6a\x38\x00\x0b\xb1\x18\x8e\x8e\x3b\x63\x77\x8b\x1d\x93\xde\xbf\xee\x57\xa0\xff\x77\x2b\x9a\x49\xaf\x0e\xfe\xad\xe8\x19\xc5\x0c\x5c\x88\x3d\xa3\x02\x5c\x89\x3d\xa3\x0d\x78\x12\x4f\xc3\x6e\x42\xf4\x53\x15\xa2\xc5\x1a\x81\x77\x62\xeb\xa3\xea\x65\xc5\x0e\xcb\x4c\x54\x89\x0d\x98\x09\xa2\x2c\x01\x66\x82\x76\xc4\x49\x5a\x81\x99\xa0\x9d\x65\x92\x18\x5b\x88\xcd\xb2\xe4\x99\x24\x16\x9f\xbc\x78\x3b\x10\x53\x4b\x9c\x32\xf9\x94\x29\x03\x17\x62\x9f\xb2\x00\x57\x62\x9f\x72\x03\x9e\xc4\xe6\x49\x72\x4f\xd2\x60\x90\xb1\x19\x6e\xc0\x3b\xb1\x37\x9d\xe7\xbd\xfb\xc1\x02\xd1\x52\x59\x81\x03\xb1\xee\x96\x20\xa5\x81\x27\x72\x6d\xf4\x94\x88\x33\x71\xb6\xe1\x1b\xc3\x14\x72\xbb\xa7\xa1\xfc\xdd\xcf\x10\x08\x1d\xce\x64\x2a\x79\x75\x5e\xc0\x1b\x79\x73\xce\x38\x42\x2e\xce\x99\x4e\x27\xef\xce\x37\xf0\x41\x3e\x8c\x57\xa6\xb9\x93\xef\xce\x23\xf8\x41\xee\x3b\x92\xc3\x61\xfc\xae\xbb\x5d\x87\x23\x1d\x6e\x77\x13\x55\x32\xaa\x12\x9a\x20\x66\x42\x46\x14\xa1\x09\x62\x97\xd5\x44\x4c\x0f\xc4\x3d\x68\xe4\xf4\x40\x45\x4b\x49\x80\x69\x81\xb8\x05\x0d\xa9\x0b\x2d\xd0\xc3\x44\x79\x06\xbf\xe7\x3e\x6d\xbd\x99\x3a\x0e\x99\x5d\xb7\x86\x0e\x87\x93\x7e\x2b\x80\x68\x09\x7b\x63\x67\xff\x9a\x68\x29\x73\x34\x0d\xe8\xde\x06\x6c\x32\xf6\xb5\x09\xe5\x98\xb5\xd3\x02\xbb\x2e\x48\xe1\x70\x5a\xe0\xfd\x9e\xd1\x05\x9d\x0e\x74\x2f\x55\xb0\xaa\x9d\xa5\xaa\x68\xa9\x10\x73\xb1\xed\x62\x20\xac\xb4\x73\x4d\xbb\x1b\x23\x2c\x89\xc6\xe8\x15\x20\xc4\x75\x85\x91\x83\x3b\x41\x45\x4b\xdc\x08\x83\xc6\x8c\xe8\xc3\x91\xe4\xa0\x33\xc3\x37\x08\x6c\x1f\x74\x66\x14\x1f\xce\x30\x74\xc0\x37\x6b\xae\xc0\x74\x40\x45\x88\xfe\xb7\x89\x3e\xd2\x02\x15\xca\x51\xeb\x60\x17\xa8\x68\x29\xa3\xd6\x41\x67\x54\xe8\x70\x86\xa7\x35\x2a\x5a\xca\xb0\x80\x47\x84\x09\x1d\x8e\xd6\x1b\xb4\x4c\x85\x72\x26\x7f\xb7\xec\x64\x1c\x6f\x95\x83\x67\x8a\x09\xe5\x11\x3c\x90\x07\x8f\x23\xe0\x91\xdc\x9a\x0c\x26\x1c\x3c\x6b\x0e\x3b\x25\xe2\x1a\x13\x78\x25\xaf\xb6\x22\x1c\xde\x88\xdd\x9b\x48\x2e\xe4\x76\x32\x67\x26\xd9\x89\xbb\xb5\x47\x06\x1e\xc4\xee\x01\x5e\x12\x07\x8f\x82\xc3\x8f\x82\xcc\x5c\x26\xb1\x6d\xa7\xc4\x39\xb1\x9d\x0e\x71\x07\xb0\xb9\x0f\xa1\x03\x7e\x7d\xc0\xbe\x39\x84\x06\x88\x37\x13\xba\xe6\xe0\xb5\xc2\x84\x72\x8e\xcf\xe4\xd9\x79\x01\x2f\xe4\xee\x18\x0e\x89\x83\x67\x8a\x89\x96\x32\xc2\xb3\x0d\x4c\x84\xb8\xde\xf9\x4e\xee\x1e\xb0\x58\xf6\xc1\x81\x3e\xc8\x58\x57\xf6\x81\x09\xe5\x01\x9c\x2e\xa8\x68\xc9\xde\xfc\xa7\x81\xd3\x5c\x85\xd8\x9b\x48\x80\x77\x62\x7b\x69\xdb\x59\xae\x4f\x93\xd8\x6e\x79\x15\x41\xfc\x7c\x83\x08\x31\xd8\xdd\x4a\x1f\x0f\x72\x5b\x27\xeb\xf8\xd3\x40\xc7\x43\x54\xb1\xbf\x3d\xf5\x89\xa3\x87\x8d\x5e\x11\xdc\x13\x87\xa8\x4d\x56\xc3\x87\x20\x88\x89\x2a\xb6\xe5\xf5\x69\x27\xf6\x37\xeb\x06\x7c\x10\x7b\x6c\xe2\x49\x3c\x71\xf9\xfb\xfd\x25\xea\x7f\xae\x50\xa7\x71\xf2\xe3\x16\xa2\xb6\x26\xbf\xfb\x8e\xea\xe7\x7e\x7d\xb8\xff\x04\xb6\xbf\xdf\x6e\xf3\xf2\x66\x3f\xb8\xd9\x2f\x5c\xcb\x31\x4f\xe7\xcb\xbc\xff\xa8\x77\x7d\xb9\xea\xb7\xec\xdf\x7f\x03\x00\x00\xff\xff\x74\x27\x17\x14\x00\x14\x00\x00"); -func _degb ()([]byte ,error ){return _dc (_cdgc ,"EUC-H")};var _bebc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x5b\xcf\x2f\x3d\x92\xdd\x07\xde\xd7\xa7\x78\x2e\x35\x17\x33\x9d\x3c\x93\xc0\x8b\x0d\x8c\x0e\xad\x69\x08\x1a\x1b\x96\x4f\x80\xe1\x8b\x3c\x30\xdb\x05\xb8\xab\x1a\xd5\xad\x0b\x7d\x7b\x83\xbf\x15\xc9\x68\x0b\x32\xde\xda\xc0\xc6\xc3\x3f\xc9\x4c\x32\x23\xc8\xe0\x5a\xc1\xd3\xdf\xfc\x9b\xbf\xfb\xb7\x7f\xf7\xa7\x3f\xfe\xf3\xcf\xdf\xfc\xf7\x7f\xf9\xf3\xfd\x9f\xe6\x3f\xff\xbc\x7f\xfc\xd3\xf3\x97\xf9\x4f\x7f\xfe\xcf\x7f\xb9\xe7\xcf\x35\xff\xfe\x8f\x7f\xfa\xc3\x1f\x42\xfc\x79\xfe\x78\xff\xf3\xf7\x93\x3f\xf7\x3f\x9c\xff\xf8\x87\x3f\xac\xe7\xff\xd3\x7f\xf9\xa7\x7f\x9e\xff\xf0\x77\x7f\x7a\xff\xfc\x93\x94\xef\xf9\xcf\xff\x68\x79\x7f\x7e\xfe\xe6\x7f\x98\x7f\xff\xc7\x7f\xfa\xe7\xbf\xfc\x97\x9f\x7f\xf5\xff\x7d\xfe\x7c\xcd\xff\xd7\xcf\x33\xdf\x15\xff\xdf\xfd\xe5\x99\x7f\xf9\xe3\x9f\xfe\xfe\xe7\x5f\xfd\xfb\x7f\x1d\x76\xec\x7f\xfa\xcf\xff\xf8\x8f\xff\xe7\xfc\x87\xf9\xa7\x7f\xfe\x29\xc4\xcd\x3f\x3d\xfc\xfd\xc3\xdf\xfc\x9b\xff\x78\xfe\xe3\xff\xff\xfc\x87\xf9\xf3\x37\xff\xfe\x5f\xff\x87\xf8\x1f\xfe\xdf\xff\x3f\xe2\x89\xfe\x9f\xe7\x5f\xfe\xe9\x8f\x7f\xfe\xd3\x4f\xf8\xff\x1c\x47\xf7\xe8\xff\xf1\xbf\xfc\xe3\xfc\x09\xf6\xf8\xff\xfa\x3f\xfd\xdd\xbf\xfd\xf9\xdf\xc2\x4f\x38\x7e\x62\xc9\x65\xfc\xef\x16\xff\xbf\xfc\xc7\x3f\x3f\xf3\xe7\xd0\xaf\xa4\x7a\xdf\x7f\x7e\xe6\x3f\xfd\xe3\x79\xcf\xbf\x9c\x7f\xfa\xfb\xf9\x87\x9f\x9f\xdf\x8e\xe3\xd7\x8f\xfe\xfd\xd6\xfe\xf6\xd7\x8a\xe9\x21\x1d\xeb\xff\xaf\x9f\xdf\xfe\xf6\xdf\xa5\xb1\xfe\x5b\x7c\xb6\xbc\xbf\xfd\xed\xbf\xfb\xdb\x7f\xf7\x6b\x7d\xc1\x7f\xf5\xbe\x3f\x04\x15\xf3\xa7\x3f\xff\xf3\x33\x5f\xc5\x51\xc2\x6f\xe1\xfd\xf5\x13\xd6\x13\xff\x32\xe9\x0f\xe1\x38\xac\x5e\x7f\x7c\xee\xff\xe3\xfc\xcb\x1f\x54\x78\x4e\xf5\xd7\x4f\x8c\xa9\x64\x22\xc6\xfa\xbf\x22\x72\xee\x16\x71\xa5\xf8\xeb\x27\x87\x1a\xf7\xef\xf4\xeb\x27\xb7\xa3\xed\xdf\x79\xfd\x8e\x9e\x5e\x48\x1f\xfb\x77\x5d\xcf\xf7\xb2\x7f\xb7\x5f\x3f\xe1\x08\x29\xec\x88\xfe\xeb\x27\x94\xe1\x2f\x1c\xbf\x7e\x72\xaf\xdf\xef\x7b\xc9\x27\xc5\xd4\xf7\xef\x40\xfe\xb8\x7f\xc7\x95\xde\x8e\xfd\x3b\xfd\xfa\x19\xdd\x93\xa9\x5f\x2d\xfb\xf7\xaa\x5f\xef\x79\xff\x5e\xf5\xeb\x6d\xec\xdf\xed\xd7\x4f\x3c\x46\xd8\xbf\xfb\xaf\x9f\x72\x04\xaf\xce\xf8\xf5\x13\xf2\xae\xfe\xb3\xaa\x17\x4b\x4e\xfb\x77\xa0\xfa\xc7\xfe\xbd\xe4\xd7\x82\xff\x46\x7e\xd9\x7f\xe7\x25\x8f\xd6\xfa\x8e\x28\xbf\x7e\x52\xda\xf2\x78\x56\x05\x43\x28\xfe\x40\xfb\xf5\x93\x47\xae\xfb\xf7\x92\x5f\x8c\xfe\xfc\x58\x15\x8e\x5f\xfe\xb9\x2a\x98\x63\x4f\xfb\x77\xf8\xf5\x13\xf3\x56\xe0\x5c\x15\x2c\x25\x7a\x7a\xfa\xf5\x93\xea\xe8\xfb\x77\xfe\xf5\x93\x72\xc8\xfb\x77\xf9\xf5\x53\x6a\xf5\xf7\xab\x7e\x5b\xc2\x73\x55\x30\xf5\x32\xf6\xef\x55\xc1\xf4\x2f\x5e\xb8\x9a\xd8\x88\x5f\x05\x5e\x2a\x58\x4b\xdd\xbf\xc3\xaf\x9f\x32\x52\xde\xbf\xe3\x7a\xbe\x7b\xfa\xaa\xe0\xd8\x2d\xf4\x5d\x15\x2c\xe9\x88\xfb\xb7\x04\x58\xf6\xef\xfa\xeb\xa7\x1e\x87\xbf\x6f\xd5\x2f\x05\x7f\xbe\xff\xfa\xa9\xa1\x7a\xfe\xa5\xe1\xd6\xad\xfe\xe3\x40\xc3\xc7\x48\xfb\x77\xa0\xcf\xf4\xfd\x7b\xd5\xaf\xa5\xb8\x7f\x27\xde\xe7\xf9\x97\x86\x7b\xf1\xf4\x42\x8b\xaa\xfb\x77\xfd\xf5\x53\xe2\xbf\x78\x7f\x5b\xdf\x53\x3d\x7d\xc9\xaf\x0d\x2f\x6f\x29\x78\x7c\xf2\x18\x18\x90\x52\x3f\x05\x8d\x80\xfc\xea\x71\xec\xdf\xab\x83\x8c\xaf\x01\x8c\xb0\xea\x17\x76\x8f\x18\x81\xfa\xc5\xdd\xa2\x46\x40\x80\x39\xb5\xfd\x7b\x75\x91\xf2\x09\x6c\x84\x55\xc1\x9a\xbf\x2e\x3e\xc2\xaa\x60\x6a\xc3\x5f\xb8\x04\x58\xe2\xf7\xbe\x88\x00\xe3\xd7\xe4\x47\xa4\x07\xd7\x7f\x91\xbe\x2a\xd8\x63\xd8\xbf\x97\x82\xe3\xa7\xe0\x11\xe9\xc2\xa9\xf8\xf3\x85\xdf\x6d\xff\x5e\x46\xac\xe7\xb1\x7f\x2f\x05\x87\x98\xf7\xef\xbe\xea\x9f\xbc\x3c\xba\xf0\x16\x50\x5a\xf5\xab\x65\x2b\x3c\xad\xfa\xa5\xbe\xeb\x97\x50\xf0\xd1\xd2\xfe\x9d\x7e\xfd\xc4\x96\x3c\x9d\x1e\x92\xfc\x7d\x4b\x7e\xc7\x96\x47\x5a\xf5\x4b\xf9\x33\x29\x23\xc9\xc4\x14\x7f\xdf\xaa\x5f\x0d\x9e\x4e\x03\x0c\xdf\xf3\x99\x0e\xd2\x42\xda\xbf\x97\x82\xbd\x81\x66\xe4\x77\x04\xff\xbd\x4c\x8c\xd7\x37\xaf\xfa\xc5\xb1\x1b\x5c\xa6\x7e\xf1\xf0\xfc\x4b\xbf\x47\x0e\xfb\xf7\xb2\x30\xe9\x33\x59\x23\xd3\x00\xfb\x6e\xe0\x79\xd5\x2f\xb5\xd8\x19\x97\x6c\x3c\xf9\x6f\x8f\x30\x63\x94\x55\xf9\xd0\x52\xda\xbf\x97\x70\xd3\x67\x6f\x47\xc1\x3e\xc6\x9a\xf7\x6f\xcc\xcf\x56\x76\x59\x95\x6f\x21\xf8\xef\xf2\xeb\xa7\x1d\x47\xdf\xbf\x97\xf9\xa9\x47\xf5\x02\xda\xaf\x9f\x31\xfc\x7d\x1d\xe1\x84\xfd\x7b\x59\x9f\xbe\x9f\xaf\x34\xce\xbe\xcb\xab\xf4\xee\xb6\x1b\x7f\x45\xb8\xdb\x5c\x8e\x4a\xfd\xb6\x35\x1b\xd5\xcc\x63\xda\xbf\xcb\xaa\x4f\xe9\xfe\xc0\xaa\xe0\x88\x9e\xa1\x21\xed\xb1\x7f\xf7\x35\x80\x24\xff\xbd\xc6\xbf\x3d\xbe\x8d\x46\x05\x5b\x3f\xf6\xef\xf0\xeb\xa7\xa5\x31\xf6\xef\xf8\xeb\xa7\xc5\xea\xf9\x57\x05\xdb\x6e\x5d\x8d\xde\x13\xa2\xff\xa6\xf7\x1c\xfe\xfc\xea\x3d\x79\xf8\xfb\x1b\xe3\x6b\xd8\xbf\x3b\x0a\x28\xfb\x37\xbd\x7b\x9b\xab\x4e\xef\xa9\xdb\x1c\x75\x14\x1c\x6b\xd8\xbf\x57\xef\x89\xfb\x7b\x3b\xad\xb3\xee\xde\xdb\xa9\x5f\xc9\x79\xff\x2e\xcb\x5a\x0c\x4f\x5f\xbd\x27\x15\x2f\x6f\x99\xc7\x3d\x5c\x8c\xae\xde\xfd\x8d\xff\xa3\xaf\xfa\xb5\xd4\x3f\x05\x0d\xf0\x43\xda\xbd\x7d\x60\x7d\x9a\x77\xef\x81\x00\xc3\xb6\xcf\x03\xfb\x18\xb7\x00\x06\x15\x3c\x8a\xff\x5e\xdd\x67\xec\xee\x3d\x84\x70\xea\xd8\xbf\x97\x00\xfb\x38\xbc\x06\xfd\xd7\x4f\x3f\xba\x17\x08\xc6\xda\x35\x3a\xe9\xdf\x3e\xc0\x9c\xd4\xb0\xc7\xb2\x7f\x47\xec\x69\xdf\xbf\xd3\xaf\x9f\x96\xb3\xa7\xaf\x2e\x52\xbe\x01\x6e\x9c\x74\x91\xb6\x5b\xd4\x49\x0b\x8c\xdd\xf3\xaf\x16\x58\xab\xbf\x0f\xfb\xd3\xe2\xfe\xbd\xfa\xb7\x0f\x40\xd7\xaa\x5f\xeb\x47\xda\xbf\x03\x03\xca\xb1\x7f\xa3\xe1\xe2\xbf\x97\x00\x57\x43\xdd\x11\x34\xc1\xe1\xbf\x57\x13\x8c\xcd\x0b\xa0\x8b\x8c\xdd\xe6\x01\x89\xb1\x44\xff\xdd\x19\x41\xfc\x05\x4b\xc7\x6d\xb7\x11\x30\x62\x4f\xc1\x7f\xa3\xe3\x3d\x24\x82\x11\x63\xc9\x71\xff\x5e\x12\x2c\x5b\x82\x02\x89\x69\x7f\x21\x20\x31\x1e\xff\xf2\x05\x58\x99\x6d\xf2\x85\x12\x7d\xc8\xbb\x35\x46\xef\x46\x08\x4a\xec\x3e\xa4\x08\x25\xc6\x7f\xf1\x7b\xa1\xc4\x18\xfc\x77\xfc\xf5\xd3\xdd\xc4\x83\x12\xdb\xd8\xe5\x81\x12\xdb\xd8\x43\x9a\x40\x62\xfe\x30\xcf\x78\x34\xc4\x6c\x4c\x02\x48\x4c\xe3\x03\x81\x03\x90\xd8\xd3\x11\xf6\xef\x41\x13\xfb\xde\x37\x65\xa5\x8b\xff\x5e\x46\x66\x83\xbc\x01\x48\x6c\x7d\x77\x2a\x40\x62\xf1\x21\x67\x0a\x65\x1f\xfe\xfc\xb2\x82\x7d\x1b\x25\x40\x62\x6f\xdb\x28\x80\x11\x7b\xca\xfe\xbe\xbe\x40\x7b\xf5\xe7\x57\x17\x59\x9d\xfc\xaf\x18\x62\x5e\x69\xff\x28\xfb\x37\x26\x7c\x57\x06\x00\x19\x43\x1f\x1e\xb1\x4c\x64\xae\xfe\xc0\x42\x40\x63\xdb\x7c\x10\x64\x6d\xbb\xb9\x81\x20\x47\xdb\x16\xe2\x95\x89\xdc\x26\xf4\xd5\x00\x19\x3d\xff\xe0\xfd\xa6\xbd\x13\x04\x19\x8e\xaf\x83\x9d\x20\xc8\x9e\x3e\x93\x7b\x1e\x92\xee\xd7\xda\x4e\x10\x64\x8f\xb9\xed\xdf\x68\xff\x93\xfe\x79\x88\xc3\x7c\x16\xe9\xac\x1f\xc0\x3a\x76\x44\x16\xad\x6b\x3b\x42\x3c\xaf\xd9\x27\x9f\x4d\x56\xd6\xeb\xd0\x2c\xc7\xd7\x07\x4f\xc6\x81\x15\x11\x76\x44\x57\x84\x35\xd2\x29\x25\xc5\x12\x91\x43\x5b\x2d\x3e\x76\x72\xf7\xa5\xed\xaa\xd6\x3e\x9f\x5f\x3f\x3d\x88\xde\xbc\x95\x3c\xab\x12\xb1\x40\xd3\xe0\x61\xb1\xae\xd6\x5f\x79\x4f\x6c\xf9\xd7\x8f\x19\xcf\xd8\xce\x95\x1f\xb9\xc4\xf6\xac\x2e\xdf\x14\x3f\x97\x3c\x13\x63\x52\xec\xcb\x3a\x0d\xac\x59\xec\x09\x3b\xc0\x8b\xc6\x41\x61\x3c\x7c\x96\xd5\x1d\xc7\x52\x48\xbc\xd7\x78\xd6\xa8\x68\xbc\x57\xa5\x3b\xe0\x24\xce\x40\xc1\x3c\x3b\x41\x7c\x1a\xf5\xe3\x5c\x2f\xcd\x85\x02\xe6\xd2\x44\xc3\x90\xc4\xf5\x65\xa3\x17\x2a\xf1\xd2\x7f\x31\x81\xf1\x6d\x4b\x9b\x49\xe1\xce\x4b\x79\xcf\x4b\x61\x81\x67\xdf\x93\x02\xe8\x80\xf1\xbd\x56\x01\x6d\xd5\x28\xe5\x43\x09\x9d\x1f\xab\x4a\xca\x94\xf2\xfa\x04\x81\xb8\x94\xd7\x5b\x43\xd4\x03\xf7\x8a\xa7\xa7\xa7\x42\x4d\x11\x4b\x2a\xf4\x30\x06\x9d\x54\x26\x9f\xbf\x6a\x91\xea\x7a\x4f\x40\xbe\xa9\x56\xde\x49\xfe\xb6\xbe\xe0\xa8\x0a\xaf\xf7\x37\xbd\x73\xe9\x35\x1c\xb9\x51\x09\x14\x32\x00\x53\xa9\x5d\x4a\xd0\x13\x37\x4f\x24\xc2\x8f\x12\x28\x7a\xa9\xaa\x07\x3a\x76\x5a\x9a\xea\x07\xe3\x46\xea\x2a\x9a\x6a\xf4\x41\x38\x12\x56\x09\xca\x23\x01\x53\xed\x81\xe0\x81\x5d\x69\x4c\x84\x4d\x61\x67\x5d\xc2\x86\x4c\xa6\xf3\xe2\x59\xca\x3a\x27\xe1\x41\xf8\x25\x4c\x9e\xeb\x20\xcc\xb3\xd7\xb9\x5a\x0e\x1a\x4f\xb4\x84\x48\x13\x4c\x2f\xef\x04\xc1\xe5\xb2\xf2\x07\xca\xca\x4d\x2d\x24\x13\x5e\xcd\x54\x63\x62\x6e\x8d\x7a\xae\x67\x73\x5f\x5d\x79\x58\x78\xae\x30\x50\x37\x8f\xc8\xb3\x95\x70\xa2\x81\xf0\xec\x58\xdd\xe3\x40\x05\xf9\x5c\xef\x0f\xb8\x12\xf2\x19\x31\x01\xe4\x3f\x19\x0c\x30\x5f\xf9\xc4\x5d\x50\x9b\x12\x68\x13\x87\x1e\xae\x08\x97\xc2\xce\xf5\x31\x8b\x60\xfc\x8e\xf5\xcc\x37\x8d\x01\x28\x94\x1f\x6a\x45\xe7\xcc\x8f\x9c\x12\x88\x2f\x3f\x2b\x53\x45\x7c\xf9\xa9\xb2\x64\x07\x3f\x56\x13\xab\x74\xc9\xfc\x74\x25\x04\x7e\xac\xf2\xb3\x04\xf8\x2c\x85\x86\xa1\xd7\xae\x8f\xcd\x28\x31\x4f\x14\xad\xf8\xb9\x94\x25\x42\x92\x5f\xda\x3c\xb6\xb8\x14\x09\x3c\x10\xa6\x7d\xd2\xab\xca\x6a\xe7\xe1\x68\x4d\x09\x32\x18\x91\xf0\xe4\x61\xe2\x69\xdc\xc2\x89\xa5\xaf\x9a\x76\x3a\x40\xe9\x17\xfd\x9f\x17\xa1\x95\xaa\xf8\x81\x71\xa2\x63\x94\x81\x93\xaa\xeb\x45\xa3\xf3\x30\x09\x4b\x2d\x4d\xe3\x7c\xb9\xb0\xda\xd8\x82\x9a\xcf\x5f\x3f\xe3\x00\x03\x56\x2a\xd4\xe8\x17\xb5\x76\xe2\xd7\xb3\x95\x02\x2a\xcd\xa7\x8e\xc1\x08\xb0\x54\x5d\x51\x7b\xc5\xba\xd7\xfb\xc4\xd6\xf0\x9e\x7b\x75\xb0\x20\x66\x53\xef\x9b\xae\xcd\xc3\xf7\xa3\x04\xfd\x58\x8d\x4c\xfc\xa5\x3e\xeb\x4d\x8d\x51\xb5\x3e\x3c\x70\x28\xfc\xf0\x05\x4b\x14\x15\x33\x27\xa8\x53\x67\xa7\x46\x94\xb6\x74\x30\x0e\xcc\x62\x7d\xf3\x0a\xd3\xe5\xdb\x32\x48\x4b\xc8\x84\x89\xef\x0a\xf3\x05\x7c\x59\x5b\x5f\x1f\x42\xa0\x57\xb5\x7c\x91\x29\x12\xbe\xe9\xb5\x95\xf0\xcb\x4b\x57\x61\x0d\xe3\x74\xd0\xe3\x5b\x41\x74\xe8\xa3\x95\x0b\x9d\x15\xc2\x37\xa2\xa3\xb0\xc2\x17\x87\xa8\x04\x6a\x0a\xbd\x6d\xe5\x55\x02\x25\xd4\x83\x27\xc8\xb4\xb4\x3f\x3a\xac\xa2\x35\x4a\xa0\xb5\xb4\x65\x9c\x86\x86\xe2\xc6\x30\x12\xd4\xb9\xdb\x32\x4e\xeb\x07\x4f\xf4\x40\x2e\x3e\x6e\xf5\xe8\x71\xa0\xce\xb6\xac\xd6\x38\x68\xd8\x6d\xb5\xa9\xf5\x80\x32\xa1\x67\x7a\x65\x5b\xe6\x6c\x25\xf0\xa5\xd8\xb3\xa4\xca\x2e\x7b\xd6\xfa\x50\xfc\xa4\x7e\xd4\x63\xd9\x83\x71\xd0\xa8\x1a\x8d\xad\xd2\xf0\xda\x50\x5d\x29\xed\x24\x0f\xc3\x75\x3b\x31\xed\xa8\xbc\x5d\xc4\xe3\x2d\x6d\x57\xa6\x60\x5a\x55\xbb\x0a\x06\x84\xc2\xae\x8b\xb1\x56\x99\x50\x03\xdd\xbc\xdd\x07\xcd\x9f\xfc\xf7\x82\xcc\x21\xd2\x8f\xda\xcd\x37\x63\x4c\xda\x2d\xfd\x28\x93\x74\xcb\x67\xd2\x22\x6b\x51\x7e\x2c\x2c\xe6\xbf\x3d\x3c\x0b\xf8\x69\x0f\x83\xbc\x34\x82\x4d\x09\x1a\xcd\xdb\xb2\x29\x43\x5e\xd7\x86\x85\xb0\x4c\x6b\xec\x1c\xf2\xbe\xb6\x35\x76\xb6\x41\xe7\x6c\x2f\x32\x15\x24\x6a\x6b\xf0\xec\x8b\xa1\xfe\x8e\x79\xeb\xb4\xdd\x46\x3b\xee\x8c\xa5\x0d\x0d\xf5\xd5\x8e\x7b\xb1\xf8\xc2\x9b\x8b\x7e\x54\x12\xc8\x74\xf1\xdd\xc8\xa3\xf3\xad\x1d\xcb\xdc\xd7\x77\x74\x75\xf5\x8e\x05\x54\x15\xfb\x83\x60\xe9\xde\x7d\x16\xc2\xbc\x47\xd0\x80\x4e\xd6\xdf\x04\x33\x53\x7c\xa5\x6f\xac\xcf\x1e\xab\xcf\x74\xb9\x0c\x47\xa6\xdd\x63\x6e\x47\xa6\xdd\x67\x5c\x67\x23\xd3\xee\x0f\x65\x7a\x95\xb0\x04\x35\x0a\xed\x9e\x61\x60\x14\x7d\x9a\xc2\x0f\x86\x5b\x61\xda\x7a\xa6\xad\x8f\xa2\xaa\x52\x44\xa5\x51\xea\x61\x06\xb8\x4c\xb5\xc7\x1a\xd1\x5b\x47\x46\x63\x99\xcc\xde\xe9\xd2\x63\x59\xae\x36\x54\x8b\xc1\x00\xc7\xa0\x39\x18\x7f\xe4\x14\x1c\x27\x5d\xa3\xe8\x1b\x4e\xc0\x4a\x51\xf8\xc5\x98\x50\xeb\x25\xdf\x5e\x69\x88\xe3\x02\x25\xd0\x33\xc6\x45\x5b\xc2\xdc\x8e\x5b\x5f\x46\xfe\x1b\xb9\x07\xc5\xd3\xb8\xf5\x9e\x9b\x3e\x09\xf6\x1d\xb7\x0a\x96\xbc\x6e\xb0\x97\x5e\x8a\x95\x14\x3e\x19\x58\xc9\x4e\xe7\x1e\x0f\xd4\x5c\xb5\x7e\xd6\x57\x8a\x46\x8f\x65\x01\x7b\x62\x34\x3b\x81\x64\xa1\xd0\xf7\x4e\x9a\xd1\x01\x31\x3a\xcb\x58\x25\x53\x8b\xb3\x08\x4b\x44\xc2\x18\x6e\x79\x64\xcf\x65\xc6\xfa\xc1\xe7\x9c\x32\x63\xd2\xc8\x59\x10\x1e\x03\xda\x09\x78\xee\xf4\xf4\x73\x41\xcc\x1e\xb1\x81\x57\x06\xf8\xd3\xd3\xaf\x65\x70\x87\x06\xc9\x0b\x8b\x16\xb1\x9f\x57\x5f\x05\xc8\x5f\x72\x2d\x85\x8c\x88\x62\x2f\x2c\x43\x44\x99\xd7\xc5\xb3\xd8\xe7\xeb\x52\x9e\x55\xa1\x0b\xd9\x45\xd0\xd6\x25\xd9\x69\x9c\xbb\x96\xec\x86\xfa\xea\x05\x34\x0a\xc8\xe5\x5a\x8d\x7f\x44\x14\x7b\xad\x11\x66\x44\x3e\xe6\xa2\xc1\x47\xd0\xe9\x35\x97\x1c\xe5\x41\xbb\xde\x03\x24\xb0\x2a\x7a\x67\x3d\x1b\x08\xd3\x10\xe0\xab\x77\x11\x8c\x68\x84\xf9\x18\xec\xc2\x4d\xab\xcb\xe8\xe0\x5e\x1f\x19\xa2\x7a\xc5\xdd\x05\x23\x0a\xe1\x89\x2d\x54\xf8\xa5\x30\x1e\x58\xe8\x7f\x3d\x40\x09\x83\x11\x16\xa5\xdd\x0c\xf9\xf2\xf6\xdf\xb4\xe5\x6e\x79\x4e\xba\x26\xf1\x80\xaf\x03\xc0\x75\x2f\xc3\xdb\x3b\xc6\xf9\x5e\xe0\xab\xd7\xae\x70\xa1\x00\xbc\xa2\xb7\x50\x28\xa2\xbb\x4f\xe0\xbf\x0a\x50\xfb\xc5\x46\xde\x0f\x88\xae\x29\x8c\x1d\xc0\xa6\xde\xd8\xc5\xa8\xd1\xf6\xc6\x2e\xc6\x23\xff\x9e\x69\xbb\x81\x58\x05\xcd\xdd\x2f\x5d\x92\x81\xe8\x69\x1a\x27\x1a\x61\xde\xac\x6f\x7d\x5a\xa1\x5a\x89\x30\xc3\x2c\x1c\xe3\x61\xe4\x0a\xf4\xe7\x67\x09\xb0\x0d\x58\xfb\x43\x53\x3a\xe8\x3d\x0f\xcd\x47\x6d\xf8\x59\xd4\x68\x04\xec\xc5\x33\xf1\x94\xc5\xaa\x04\x10\x31\x1a\x7a\xa6\xcc\xf8\x6a\x0e\x0f\x26\x3d\xd0\x33\x9e\x77\x12\x5e\x1a\x9a\xcb\xd6\x8e\x40\xbf\x9d\x45\xe1\x4c\x78\xb5\xc3\x98\x68\xac\xb3\x74\x46\x31\x85\x87\x12\x94\xeb\xc4\xa1\x40\xb8\x62\x61\xb0\xc8\xb3\x02\x25\x69\x4c\xb3\xbe\x3c\x00\xd0\x9e\xed\xa0\x88\x55\xa5\x09\x11\x19\x54\x6f\x0e\x7a\x3d\xad\x78\x0e\x35\x20\x5e\x84\xae\x3b\x16\x63\x4a\xa5\x0c\x3e\xf3\x64\x28\x48\x0a\x3f\x14\xd0\xf5\x43\x02\x5b\xdf\x39\x2f\x46\x6e\x5a\xe8\xbc\x14\x4f\x4d\x6f\x1a\x13\x00\x6d\xde\x68\x47\xd6\x76\xde\xb8\xec\x2c\x01\xa6\x8b\x61\x98\xb7\x1e\xa6\x16\x0b\x7b\xb7\x41\x53\x9f\x0c\x3c\x32\x3d\x73\xde\x7c\xfe\xca\xff\x82\x92\x13\x74\xe8\x2d\x00\xfa\x43\xf1\xab\xef\x05\xe6\xd4\xde\x52\xb0\xda\x95\x30\xef\xc4\x08\xbf\x0c\x17\x72\xdc\xbe\x95\x61\x04\xc5\xbe\x80\x9e\x88\xc6\x5f\x40\x4f\x2c\x74\xca\xb7\x03\x8c\x15\x1e\x0c\xe8\x74\xe8\x77\xe0\x6f\x2c\x2a\x6d\x20\x3b\x60\xf8\x8b\xac\x13\x32\x7d\xc7\xad\x4c\x7a\xe2\xc1\x5d\xc6\x03\x0b\x0e\x0f\x4d\x97\xbd\x17\xce\x03\x14\xf8\x2e\x79\xb5\xce\x88\xf7\xde\x74\x3e\x0d\x73\xef\xad\xc6\xc3\x37\x23\xbb\x81\xa6\xde\x65\xdb\x5b\x5f\x8d\x6a\x1c\x40\xa9\xb0\xc6\x85\x71\x40\x1f\x99\xff\x1b\x87\x51\xc0\xb6\xc2\xa0\xa1\xb4\x0a\x18\xc7\x42\x43\x23\x64\xc5\x17\xc2\x65\x85\x1f\xc8\x43\xe4\x3d\xd8\xbf\xb0\x10\xd6\x38\xa6\xde\xcf\xb3\x2f\x2d\x6d\x51\xb7\x71\xa8\xf1\xa7\x95\x27\xe4\xa5\x9b\x42\x7c\xc8\xbc\x67\xf5\xf9\x11\x32\x92\xe8\x41\x99\xe4\xe6\x48\x2b\x5c\x54\x09\x85\xe5\x02\x52\x78\x55\x28\xeb\xa5\x8c\x41\x61\x49\x71\x04\xfa\x04\xf3\x6e\x23\x48\x99\x2a\xa0\xea\x3d\xe4\xa9\xf8\x6a\x21\x9f\x23\x54\xfc\x05\xab\xb5\x8c\x50\x45\xaa\x79\xa0\x01\x4d\x54\xb0\xf9\x60\x28\x0c\xbb\x91\x96\xfd\x1b\xa1\xf1\xf5\x85\x70\x47\x35\x7a\x16\x90\x3b\x16\x80\x1d\x01\xbb\x9b\x22\xcf\x0e\x15\xdc\x7e\x0f\xb5\x8d\x00\x1c\x0e\x89\x5a\x0d\xc6\x86\xcc\x9b\x69\x3d\x2d\x12\x86\xe1\x82\xbd\x47\x38\x31\x05\x12\xc7\x79\xf1\xa9\x71\x85\x01\x70\xbd\x92\x07\x04\x9c\x25\x26\x10\x30\x98\x6a\x84\x9b\xb2\xf4\xfe\x5b\x48\x88\xf7\x3c\xd0\xfe\x41\x1e\xf0\x02\x43\xcf\x08\x18\xf1\x2a\xf5\x3c\x9a\x27\x88\x14\xf6\xa8\x83\x21\xfb\xa7\x28\x41\xb9\x2a\xa4\x5e\x99\x9a\x12\x28\x0e\xe8\x91\x1b\x55\x7a\xe4\x7d\x28\x84\x55\x3d\x04\x88\xb1\x65\xb2\x6c\x84\x45\x98\x87\x09\x9f\x61\xd5\x5a\xcc\x22\xcc\x21\x0e\x7d\xc3\x2b\x4f\xda\x0a\xc7\x4b\x04\x78\xd5\x3b\xde\x10\xe3\x05\x6c\x47\x5c\x60\x3d\x24\xc6\x88\x11\x1f\x8d\x50\x89\x70\xa6\xe7\x75\xc2\x98\xc2\x65\x0c\x46\x9c\xf2\xa4\xad\x4f\x88\xcb\x82\x77\x38\xc9\x48\xf8\x46\xda\x1a\x3a\x46\xa2\xbd\x1d\x14\x9c\x1a\x94\x11\x85\x24\x9a\x12\x8e\xe0\x91\xba\x38\xec\x7a\x67\x12\xb7\x59\x66\x61\xa4\x13\xb4\x4c\x45\xf1\xe7\x84\x14\x13\x2f\x82\xe8\x44\x65\xba\xb0\xc7\x59\x61\x41\x4a\x0a\x40\xb3\x07\x6d\x2f\x5d\x37\x0f\x17\x4a\xbb\xe8\x49\x9d\x07\x6e\x94\x30\xc8\x04\x57\x49\xaa\xdd\xc3\x38\xb5\x4c\xea\x48\x74\xed\xae\x67\x1f\x78\x6b\x25\xff\x22\xcc\x4d\xe2\x4d\x8c\x71\xa9\x2b\xac\x5a\x77\xc2\x8c\xc6\x96\xe7\xa4\x12\x5d\x09\x8c\xb4\x07\x05\x60\xa7\x21\x95\x23\xe1\x15\x6d\xd8\x8e\xb4\x98\xf7\x7a\x40\x3f\x5e\x8c\x30\x32\x5d\x5a\x0e\x29\xd2\x0a\x13\x7e\x91\x7e\x50\x3d\xd0\xe9\xa1\x4f\x78\x19\xd7\x55\x8d\x45\x8c\x5a\xd7\x5b\x51\x94\x2c\x5e\x86\xef\x1c\x45\xe1\x07\x2b\xb7\xaa\x8a\x73\xab\x35\x94\x93\xf1\xb5\x24\x64\x9d\x0b\x4e\xac\xaa\x3c\x1a\xb2\x1a\xe1\x35\x64\x25\x46\xe0\x91\x0b\xbe\x23\xba\x42\x2e\x72\x73\x04\xc2\x32\x91\x85\xf0\x4d\x4b\xa0\xe0\x82\xc6\xad\xb0\xa9\x17\x0d\x7e\xd0\xd4\xe8\x21\xb9\xe2\x61\x40\xb3\xb9\x16\x32\xd1\xa6\x32\xde\x9c\x84\xfa\xb3\xc6\x78\x34\x95\x71\x5b\x86\xae\x70\xe2\x81\x44\xd1\x8d\x37\x55\x8a\x6e\x7a\x13\xbd\x33\xcb\xb8\x75\x65\x6a\x4a\xe0\xeb\x9a\x3e\x82\x0f\xc2\xeb\x99\x12\x06\x23\x63\x02\x33\x6d\x3e\x03\x1d\xda\x20\x53\x0f\xd8\x58\xf2\x74\x19\xf7\xf6\x7b\xd6\x2d\xe3\x8a\x02\x3f\x8d\xcc\x00\x1a\x68\x29\x38\xff\x5a\xc3\x78\xe7\x8b\x91\x1b\xcb\x95\x2f\xc9\x5c\x99\x20\xf5\x45\xf2\x87\x27\x45\xac\x4f\xbe\x51\xa4\x94\xb4\xb8\xea\xc0\x81\x3c\xf0\xca\xf5\x1e\x28\x6c\x32\x8b\xb7\x30\xc9\x28\x48\x2d\xf3\x15\x05\x9f\x39\xde\xcb\x51\xe4\x59\xa5\xc1\x95\x05\x86\x86\xda\x7a\x51\x85\x16\x6e\x1b\x05\xde\xd6\xe8\x4b\xe5\x56\x1e\xde\xf3\xd0\x5a\x8b\x5e\xfa\x30\x88\xa3\xec\x82\x43\x20\x75\x85\x93\x32\xf1\x34\x4c\xba\xd2\x75\xcb\xea\x65\x23\xa1\x95\x32\x11\x51\x5d\x5f\x53\xe4\x0e\xac\x95\x70\x87\xa0\x75\xc2\xd8\x21\xbe\xb2\x82\x1e\xf3\x62\x43\xa3\x8a\xb6\x52\xeb\x56\x57\xef\x4e\x48\xa8\x55\x5a\xe2\x82\xc2\xa3\x2d\xca\x1b\x12\x58\x78\xb4\xd5\x98\x46\xa2\xb9\xb6\x05\x5c\x06\xf8\x64\x34\x46\x9e\xb6\xf0\xef\xc0\x11\xd3\x3a\xa6\xa4\x89\x0f\x80\x1e\xe4\x4b\x49\x8c\x75\x0d\x1f\x66\xa3\x7f\xe2\xc5\x68\xac\x60\x1a\xf8\x17\x06\x18\x74\x74\x7c\x66\xcc\x2a\x8e\x0e\x03\x3a\x50\x59\x6f\x7c\x3c\xa8\xa2\x2f\xd5\x84\x7c\xd0\xd2\x7b\x63\x80\x66\xe4\xee\x38\xa8\xb2\x0c\x4e\xc7\x41\x95\x54\x02\x0e\xcd\xb1\xb0\xd0\xe8\x32\xb1\xe0\x99\x7e\x2e\xd3\x9e\xb0\x00\x9d\x31\x52\x26\xbf\x33\x2e\xc0\xec\x47\xbf\x10\xb5\xc5\x33\xc0\xd0\xdd\xfa\x2d\xcb\xab\x30\x1d\x1a\xcb\xd0\x19\x17\xcb\xa1\x70\xe2\x8b\xa9\x0f\x73\x24\x00\xe1\xd1\x31\x92\x05\x75\xc8\x11\xa2\x1e\xd9\xa7\xa4\x45\x3c\xe3\x14\xab\x26\xc6\xc8\x09\x49\x1c\x84\x57\x6b\xcf\xa1\x05\x7e\xd0\xda\x3b\x61\xfc\x79\x09\x4b\x32\x2a\x2e\x4f\xac\xcd\x68\x2a\xa0\x12\xe6\x23\x11\xc4\x58\x50\x65\x30\xc1\x38\x46\x07\x9b\xea\x3d\x7d\x10\x4f\x7e\xe3\x8e\x54\x02\xa8\x82\xd7\x72\x98\x8b\x63\x10\x3e\x95\x7f\x35\x83\x71\x49\xa0\x99\xb0\x54\xc6\x7b\x2e\x54\x16\xab\x7e\x24\x2a\xa4\x07\x96\x0d\xc2\x51\x37\xc6\x45\x45\xa3\xe2\x1f\x5e\xd4\x08\xab\xfd\x51\xd1\xd5\x9e\x42\x16\x6a\x93\xef\x03\x17\xc4\x18\x38\xe7\x72\xd4\xa7\xe1\x9c\x4b\xa0\xb3\x71\x53\x3d\x10\x1c\x3e\x8e\x91\xc0\xa9\xf2\x71\x34\x89\x45\x1e\x78\x7d\x3e\x43\x79\x56\xbc\x74\x93\x15\xdf\xa9\x35\xef\x59\xe3\xd4\x48\xd8\x63\xfc\x20\x63\x99\xc1\xdf\x31\x6b\x67\xc6\x46\x62\xd0\x4f\x4d\x3d\xd1\xd7\xce\x0a\x56\x55\xfc\xd2\x61\xc8\x09\xab\x70\x56\xb9\x80\x49\xc0\xef\x54\x28\xfd\x6c\xb8\xe1\x01\x09\x67\xa3\x1f\xd1\xaa\xce\xce\xb4\x5d\xe3\xd9\x4e\x0d\x19\x00\xce\x81\x22\x0a\xf9\x07\x1d\x9e\x56\x7b\x0e\x5a\x33\xca\x3d\x07\x8d\x81\x61\xfe\xc4\xc4\xe1\x30\x1d\x27\x3c\x3f\x63\x07\x4e\xfa\x75\x50\x1e\x7a\x4b\x52\x1e\x00\x12\x7e\xf4\x71\x82\xe5\x3a\xad\xf6\x5c\x52\x1d\xf8\xbb\xc6\x39\x61\x5d\x18\xb5\x13\x4e\x9c\x33\xc6\x5b\xbe\x9c\x8c\x41\x39\xa7\x24\xb1\x1a\xc3\x85\x79\x0c\x5d\x61\x80\x34\x18\xef\x66\xb0\x8d\x18\x9a\xbb\x60\x2c\xf8\xe0\x1b\x1f\x79\xb0\xf8\x6b\x15\xd0\x0e\xfd\x50\x7f\x5f\x25\xdf\x8d\x79\x1a\xfa\xfe\xdd\x58\x20\x41\x73\xbe\x99\x6a\x3b\xe8\x83\xb7\x78\x10\x6d\xe1\x66\xba\xac\xf0\xc5\x37\xf3\x0e\x4c\xfe\x8c\xfb\xc6\x0b\x40\x23\xbc\x27\x83\xa5\x2a\x87\x59\x56\x4b\xbd\x27\x66\xb6\x2a\x7e\x99\xd3\xdc\xe9\xc0\xb7\xa6\x11\x30\xa7\x37\xf3\x9a\x2c\xbd\x1a\x37\xf6\x9a\x69\x8a\xf1\x40\x84\x32\x36\xfa\xc1\xe3\xca\xf2\xaf\xf1\x64\xc8\x92\xc5\x03\x53\x78\xf6\xc9\x93\x02\x68\x50\x0f\x76\x53\x98\xe5\xa9\x60\x16\x6a\xf1\x54\x79\xf2\x78\xa0\x0a\x4e\x53\x18\x60\x81\x95\x0b\xe3\xa1\x9d\x75\x06\x04\xfc\x21\x1d\x4f\xf3\x90\x3f\x04\xba\x3e\x9e\x35\x80\x84\x8c\x83\x73\x3c\xcc\x16\x54\x44\xf1\x30\x5b\x90\x99\xfe\x1b\x8f\xdc\xfa\xc8\xf7\xc1\x1d\x15\xc2\xd2\xc7\x43\x6b\x0c\xf4\xd3\x87\x39\x1e\x3c\xae\xe3\x39\xa5\x70\xe2\x69\x75\x01\xc5\x3e\x27\x9f\x4c\xcb\x79\x4e\x1a\x02\xad\xfd\x39\x71\x71\xe9\x2b\x2f\xf2\x1f\x0a\xd3\x4a\x07\x65\xe1\x34\xc5\x37\x30\x1e\x71\x60\x20\xe4\xa3\x49\x6d\xd5\x73\x71\x9a\x21\x6c\xf5\x30\x0e\x0b\x2a\x3d\x0f\xa8\x11\x3e\xf0\x30\x23\xa4\xd1\xed\x51\x4b\xc6\xb4\x3e\x1a\x7a\x25\x21\xf9\x43\x81\xe8\x72\xe8\xb0\x40\x7b\x3c\xb8\xe2\x85\xbe\x9f\x17\x12\x6f\x79\x26\x2b\x24\x68\x8c\x13\x3b\xce\xb4\xc4\x98\x4c\x5d\x17\x0b\xd3\x48\x81\x68\x53\xd3\x7b\xd8\xdc\xc9\xf4\x5e\x39\xe8\x36\x53\x9e\x0b\x40\xd6\x5c\x90\x73\x25\x64\x7e\xd0\x72\x10\xf5\x04\x5b\x5a\x09\x4c\x0f\x09\x54\xcd\x2a\xc7\x5f\x20\xcc\x2a\xaa\x83\x91\x78\x56\x78\xdf\x38\x7e\xcf\xae\xcd\xaa\x36\xa9\x87\x60\x05\x20\x25\x7c\x4b\x23\x80\x09\x27\x68\x0a\x6f\xec\x98\x4d\x75\xc7\x0a\x4f\x30\xa8\xb4\x35\x19\xa8\x98\x07\x1d\x93\xc1\x29\x34\xc5\xa3\xf5\x41\x75\x35\x50\x35\x04\xb2\x7a\x6d\x28\x1a\xee\x67\x57\x33\xa1\x34\x46\x2a\xd9\x82\x09\x60\x09\xb4\xcf\x39\x94\x87\x5a\xc8\xb0\xa1\x96\x79\x6a\x5e\x93\x2f\x80\x36\x17\x7a\xa1\xfc\x55\xf8\xdc\xc7\xa4\x59\x15\x9a\xe7\x84\x68\x45\x6c\xd3\xbc\xf4\x4e\xe4\xf7\x6a\x1a\x78\x85\xdf\xcc\x82\x02\x2a\xfa\x2e\x49\xf4\x8a\x51\x7c\x71\xae\x46\x46\xc5\x77\x74\x28\x37\x79\x4e\x7c\xf4\x80\xa6\xf7\x64\x74\xb5\xb0\xb0\xea\xaa\xc3\x4b\xb3\x6d\x8c\xae\xaf\x9a\x2d\xc0\xea\xa5\x79\x66\xc5\x4f\x38\x1a\x78\xf6\xc5\xd2\x64\xe0\xc4\xfb\xe2\x80\x60\x00\x7e\x69\x86\x19\x5e\xf2\xaa\x19\x32\x96\x9d\x07\x38\xa3\x2c\x1c\x73\x1e\x38\x1f\xf3\x6a\x0b\xe7\x21\x54\x96\x15\x66\x9e\x60\x35\xaa\xf3\x60\x2a\x05\x94\x78\x1e\xb8\x56\x8e\x55\xd1\xf3\xa0\x51\xb1\xbc\xf8\x3c\xd4\xa8\xd2\x92\xc4\x79\xd0\xa8\x72\x22\x41\x43\xda\x1a\xbd\xcf\x83\xb5\x02\xac\xd0\x3c\x8f\x2e\xc7\x02\x61\x34\x59\x2c\xcc\xa4\x71\x50\x98\x66\xce\x64\xef\x79\x0c\x3c\x74\x81\x02\x00\x23\x10\xe8\xf3\x00\xfe\xa7\xc1\xd7\xc8\x4b\xa8\x1a\x3d\xf8\xb4\x3b\x35\x7d\x26\xde\x00\x9e\x05\x9f\x32\xe3\x76\xb2\xa2\x25\x46\x06\xc7\x73\xac\x21\x24\x1c\x28\xe7\x1c\x94\x06\xa5\x3f\x4f\x4c\x70\x5d\x0a\x3c\x4f\xc9\x65\x61\x85\x53\xa3\x75\x5b\xfd\xfc\x3c\x41\xab\xa5\x54\x32\xe1\x7b\x0e\x41\x99\xe4\xf5\x1d\x84\xe5\xab\xd5\x03\x38\xf5\x07\xf9\x71\xb9\x77\x0b\x5f\xbc\x68\xf5\x8f\xf3\x1c\xf4\x89\xa0\x04\xba\x36\x82\x61\xec\x5e\x99\x2a\x3f\x10\xc0\x6a\xe3\xe7\xb9\xa0\xee\x4a\x58\x45\x5c\xcc\xfa\x1d\x0b\xe3\x9c\x17\x3a\x8f\x6b\xec\x3b\x99\x4c\x09\x5a\x18\x7f\x5e\xc0\x72\x96\xc1\x9c\x97\x66\xfd\x0e\x65\x6a\xca\x14\xf8\x81\xb1\xa2\x65\x30\xfd\xd2\x6b\x56\x3c\xc3\x31\xfa\xb9\xb2\xea\xb7\xf2\xdc\xbc\xa8\xae\x81\xf0\xbc\x85\xe9\xa9\xf7\x4d\x1f\x4f\x14\xa6\xc9\x8b\xc2\x7b\xee\x01\x82\xb6\x30\x8d\x64\xd9\x81\xf3\x61\xaa\x07\x0f\xf8\xf9\x60\xce\xd2\x32\xa4\x27\xe3\xdd\x80\x7e\x9f\x36\xde\xa1\x5b\x1c\xfd\x83\xc1\xf2\x7c\x20\xa2\xf9\x77\x17\x67\x9f\x0f\x36\x85\x75\xc0\xe7\xd3\x01\x48\xab\x5f\x9d\x1a\xc2\xd2\x1a\xce\x4e\x19\xdf\xb4\xe0\xc2\x89\xfd\x6c\x8d\xd6\x2a\x07\x3a\xb0\xfe\xc4\x68\xb5\x96\xc9\xdf\x35\xe2\xaf\x0a\xce\x21\xa7\xe0\xaa\xf8\x3c\xe1\x9e\x0b\xec\x9d\x72\x2d\xe3\x8a\x3e\x5f\x0c\x61\xe5\xd9\x57\x2b\x67\x16\x08\x3c\xdf\x2e\x6a\x41\x1e\x66\xca\x59\x10\x7e\xbe\x4c\x50\xb0\x2c\xe3\x7c\x99\xe1\xa9\x40\x8d\xf3\x95\xa7\x91\xbe\x8a\x67\x79\xd4\xa2\x4c\x90\xe4\x65\x24\xce\xf7\xd4\x03\x8b\xd3\x5f\x47\xb6\x1f\x83\x1f\x89\x1f\x4b\x71\xd7\xc1\x34\x55\xcd\x4a\x78\x09\xe7\x15\xc6\x03\xdb\x0a\x4f\x83\x70\x81\x60\xd7\x81\xef\xa3\xae\x46\x72\x1d\x45\xeb\xc9\x94\xe7\xe4\xa5\x4b\x00\xd7\x51\xf4\xa1\x85\xf0\xad\x04\xe5\x02\x61\x14\x95\x30\x95\x40\xd1\x78\x45\x6a\xe3\x89\xaa\xd5\x65\x81\x30\x56\x4c\xd5\xc3\x5b\xc2\x72\x89\xeb\x60\x70\x62\x61\xd3\x75\x68\xad\x5c\xa0\xe4\xa6\x97\x76\x12\x18\x23\x6a\xa5\xb4\x65\x9f\x43\xc5\x6f\x7e\x1d\x60\x15\xbc\x48\x17\xbe\xe9\xce\x6a\xc4\x4b\xbe\xe9\xca\xfa\x8a\x0b\xdf\x74\x67\x11\xc6\x15\xc0\x64\x35\x2c\xe6\x71\x05\x71\xd9\xca\xd3\x38\x05\x31\x88\x17\x0e\xec\x95\x49\x09\x8c\x0d\x7c\x1c\x6e\xdd\xc1\x26\xa9\x2b\x4a\x13\xcc\x2f\x5c\x31\xaf\xc6\x97\xf9\xa2\xc8\xd0\xcb\x20\x76\xc5\x0a\x1c\x5c\x3d\xe8\x62\x85\xe0\xc0\x2e\x5f\x2c\xfe\x1b\x79\xd9\xf4\x2b\x42\xed\xc0\xa4\x57\x1c\x5a\x53\xb0\x9e\x4d\xd8\x00\x7d\x27\xae\xc9\xc1\x4a\x98\x2b\x31\xf3\x95\x91\x24\xae\xc9\xc1\x92\xea\x8b\x65\x67\xa1\xb2\xfe\xf9\x4a\x70\x44\x76\x43\x5d\x59\x73\xeb\xab\xcb\x5d\xf2\x78\x31\x2a\x5d\x78\xb3\x46\x5e\xad\xf8\x32\x67\x16\xcd\x2a\x57\xbe\x0c\x96\x7b\x65\x46\x8d\x38\x48\x00\x7b\xf6\x45\x72\xaf\xdc\x78\x78\x71\x99\x2b\x77\x06\x10\xf4\x9c\xf9\x9a\x4c\xb3\x62\xc1\xd8\xc8\xab\x0b\x5c\x45\xe2\x62\xb5\xe0\x55\x96\xb8\xb4\x94\xfd\x2a\x9a\x52\x58\x7d\xec\x2a\x60\xa3\xc0\x17\x14\xb8\x43\x5e\x64\xf3\x2a\xac\xaf\x61\xbe\xf7\x2a\x45\x0d\x86\x3c\x18\x16\xfc\x0c\x57\x19\xb8\x29\x93\xc2\x1a\x87\x57\x9e\xba\xf4\x37\xb0\xd6\x57\xb5\x19\x88\x46\x18\xb0\x7d\x28\xcf\xa9\xcd\x0f\x81\x1f\xf2\xb9\x17\xc2\xe2\x0b\x4b\x5c\x2d\x8b\x0a\xac\x2f\x6b\x85\x0f\x40\xaf\x8d\xa9\x0c\x3c\x8d\x57\xa3\x65\x37\xe5\x67\xc5\x22\xdb\x53\x2e\x96\xf5\xf4\xf6\xbb\x6e\xb6\xab\x31\xfe\x14\xc4\xdd\x9a\x4c\x25\x2f\xc6\x72\xd5\x83\xc2\x3b\xcd\x13\x33\x73\x69\x99\x8f\x6a\xd5\x69\x31\x95\x5a\xd9\x5a\x91\x85\x9a\x2f\xad\x15\xa9\x2d\x29\x81\x05\x0f\x0b\x12\x5c\x3d\xab\x17\xaf\x12\x3a\x8e\xd4\x40\x07\xe8\x45\x0e\xd9\x4c\x98\x91\x2f\x28\x0f\xdd\x0a\x9f\xca\xd5\xcd\x04\x28\x8c\x6c\x0e\x3d\xfc\x2a\x13\x4f\x54\x88\x7b\xa0\xe4\xf5\x6d\xbd\xd0\xac\x3a\xe6\x3e\x20\xe4\x21\x77\x2e\x8d\x78\xa0\xd1\xc6\x8b\x86\xe8\x0d\x35\x1a\x43\x64\x85\x3c\x58\x65\xd6\x48\x5e\x27\x9c\x0c\x97\xe3\x75\xca\x1c\xb2\x20\xf3\x3a\x31\x87\x92\xd1\x89\xa3\xad\x22\x54\x16\x3f\x74\xd6\x50\x5f\x27\x0b\xaf\xf0\x7d\x5d\x67\x3d\x09\xaf\xca\x9d\x02\x3e\x7c\xc0\xd9\xf5\x9e\x4a\x18\x39\x0e\x6a\x74\x8a\x9e\x36\x5e\xca\xf4\x62\x1d\x34\x6e\x18\xff\xc0\xbf\x74\x9d\x2c\x05\x65\xd7\xe9\x25\x06\xcf\x62\xe7\x4b\x20\x20\x46\xf2\xcb\xbe\xe3\xb7\xb9\x04\x02\xc0\xed\x17\x43\x77\x63\x9e\xf2\xba\x8a\x5e\x5a\x08\xaf\x06\xca\xd6\xcc\xeb\xd2\xc2\x03\xba\xd8\xc5\xe7\x74\x4c\xef\x85\xff\xa2\x1d\x3c\x8b\x0f\x8a\x95\x3c\xd7\xb5\x8c\x53\x68\x60\xae\xeb\x62\x2c\x8e\x96\x69\x28\x41\x4f\x33\x79\x36\xa8\x05\x8e\xc6\xbe\xb0\xf4\x75\xd3\x97\x64\xa0\xe1\xfc\x6d\xac\x21\xea\x82\xe7\x77\xf6\x72\x5e\x37\x1a\xec\x7c\xc1\x0d\xcc\x6c\xc0\x95\xeb\x06\x66\xb2\x3d\xec\xba\x57\x3f\x59\x09\x83\x1f\x2c\x07\xe5\x3b\x6f\x7c\x2d\xda\x37\x75\xdd\x58\xd2\x46\x57\xbf\x6b\x57\x82\x72\xb1\x2e\x24\xab\x0c\xcd\xb5\x2a\xd3\x54\x26\x95\x81\x75\xc7\x70\xdf\xed\x50\x02\xb9\x80\x38\x91\xf6\x76\x37\xd5\x50\x9f\x84\xdb\x92\x25\x96\xd7\x4d\x1b\x38\x54\x73\x38\x50\xa4\x3b\xdc\x74\x4a\x99\x25\xbc\x15\xbd\xd2\x7e\xee\x05\x16\xd7\x8b\xf4\x00\x13\x8e\x49\x99\xe4\xad\xa3\x1a\x74\x56\xd6\xff\x5c\x77\xd7\x6a\x5a\x6a\x41\x23\x93\x16\x6f\x1a\x59\x63\xe3\xd3\x25\x1f\x48\xc6\x9e\xdc\x34\xb2\x06\x80\xbf\x6e\xcd\x61\xeb\x1b\x58\x87\xcc\xce\xac\xeb\xee\x4c\x0c\x4b\x13\xa0\xa3\x68\xf1\x38\x47\xf4\x52\x06\x99\x8a\xa6\x6f\x5c\x4c\x38\x4c\xaf\x1b\x00\x12\x8b\xf2\xc0\x46\x10\x85\xf9\x3d\x16\x5b\xbb\x9e\xcc\xea\x1c\xcc\xfe\x93\xa5\x44\xd4\xf0\x00\x4c\xe3\xef\xee\x7c\xb8\x9e\xcc\x12\x1d\x86\x6c\x01\x46\x75\xb4\x27\x4b\x80\x0c\x47\x8f\xc6\x72\x2b\xe6\x56\x82\x72\x69\x49\xa8\xea\x22\x6d\x67\xbd\xea\x65\x1e\x62\x7d\xec\xb3\x60\xce\x88\x0c\xd3\x4f\x51\xbb\xc1\x4c\x3d\x74\x7e\x29\xfb\xa1\x57\x68\x5c\x7f\x70\xea\xa9\x6d\x3d\xd6\xf6\xc9\x5f\x99\x06\x6b\x0a\x6b\x91\x09\xf9\xad\x39\x49\x24\x5a\x7d\x96\x95\x00\x51\x6d\xd4\xbb\x69\x5a\x5b\x61\xc4\x5c\x29\x40\x4b\xcb\x55\xeb\xae\x17\x75\x5e\xd4\xb5\x8e\xba\x10\xc6\xc7\x90\x78\xa0\x4b\x32\x18\x08\x41\x5e\x26\xda\xae\x07\x88\x09\x41\xbb\x58\x03\xb3\x32\xf1\xf4\xc2\x98\x03\xef\xd4\xf5\xd8\x22\x22\xbe\x99\xc9\x01\x76\x94\x5e\x0f\xd3\xd2\x61\xd1\xa4\x6b\x32\x70\x40\xbe\xae\x29\xad\xe2\x16\xb8\xa6\xb4\xda\x94\x49\xe6\x48\xf1\x2c\xe4\x5a\x64\xf5\x9a\x0c\x1c\xc2\x88\xb8\x43\x46\xc4\x0e\xe2\x0e\xe9\x4c\x99\x5c\x00\xf2\xd0\xa2\x1e\x2e\x7a\xa9\x12\xa0\x89\x55\x0f\x50\xbb\xde\x09\xe3\x36\xcd\xca\x03\xc8\xeb\x2a\x8c\xf5\x01\xbd\x11\xe6\xf3\x9b\xde\xf9\xf2\xc5\xeb\xcb\x26\x63\x4e\x07\xef\xe0\x49\x59\x05\x2b\x81\x95\xcf\x49\x61\x1a\x32\xe3\xc0\xac\x5a\x35\xa7\x30\x4d\x12\x35\xe3\x38\x19\xb8\x6a\x2e\x1c\x27\x3d\x30\xe8\x68\x4d\x4e\x44\xa4\x53\x7e\x5f\x9a\xc8\x6c\x5a\x11\x46\xc1\x8d\x76\xc7\xee\xe1\x6b\x36\xbd\x94\x2f\x6b\x7a\xa9\x1e\x66\xf6\x59\x62\x6c\xfa\x1a\x5e\xd4\x35\xb5\xa0\x30\x7c\x64\x28\x5c\xf4\x52\xfd\x60\x8a\x5a\xb2\x86\x14\xb1\x43\xe5\x9a\xdd\x4a\xa6\x84\x2e\x6f\xac\xc2\x94\xdc\xf5\xc0\x43\x26\x4c\xce\x64\xc1\xbf\x70\xfa\x64\x31\xda\x21\x45\x0d\xad\xca\xa1\xb4\xa1\xad\x28\x7c\x02\x0b\x65\x1a\x6b\xfd\x2e\xf9\x6f\xa2\xb4\x83\xef\x84\x65\x70\xd7\x1c\x43\x99\xf4\xb4\x06\x08\xaa\x01\x65\x6e\xea\xf5\x53\x36\xa7\xab\x38\x74\xd8\x28\x82\x41\xb1\xa9\x0f\xbf\x59\xe8\x37\x13\x66\x3a\x16\x28\x83\x3b\x67\xe0\x76\xbe\x5e\x28\x0f\xbb\x1f\xaf\x97\x85\xa5\x6c\xa1\xb9\x5e\x35\x36\xaa\xca\xaa\xa1\x11\xe9\x47\x6f\x05\x44\xf0\xcd\xaf\x35\x12\xbd\xa8\xd2\x84\x69\x61\xaf\x1a\x09\xfd\x02\xfe\x37\x62\xff\x3d\x82\x7a\xbd\x8c\xaa\x35\xab\x14\xa6\xef\x30\x76\x6f\xa3\x44\x20\xf6\xdb\x54\x22\x5a\x7d\x1b\x25\x82\x50\xdf\x26\x9a\xa4\x30\x6e\x7b\x7d\x12\xb8\xf0\xcb\x2f\x05\x0f\xbd\x09\xf4\xd9\x94\x40\xaf\xc4\x04\x88\xa2\xb6\xa0\x92\xb5\x3a\x31\x11\x46\xf1\xec\x2b\xbd\x5e\xb5\x39\x09\x16\x44\x26\x9c\xfc\x5a\xfb\xe3\x45\x00\x7a\x08\xfe\xf5\x76\x15\x80\x6c\x58\x39\xc5\xd6\xbc\x4b\x2b\xa7\x5a\x52\x69\x18\x19\x16\x3c\x5d\x38\xd3\x7a\xa6\x47\xb0\x58\x6a\x50\xf0\x0d\x8d\xed\xb0\x84\x5b\xc4\x15\xc7\xdd\x7d\x60\xf7\xf3\x52\xc4\x7d\x64\x01\x7a\xe5\x61\x4b\xcd\x6a\xdf\xf7\x21\xb3\x0f\x8b\xbf\x0f\x51\xb8\x65\x4b\xee\x03\xb5\x73\xa0\xc2\x7d\xb0\x06\x89\xbd\x75\xf7\x81\x51\x4a\x87\xf2\xe0\xd3\x0d\x14\x56\xb4\xe0\x53\x61\x9c\xd2\x4b\x51\xf7\x21\x5b\x32\x28\xb8\xea\x9d\x0a\x4b\x12\x83\x30\x36\x19\x57\xd4\x7d\x54\x0d\xb4\x3c\x5c\x6f\x25\x50\x1a\xd8\xa4\xae\x2e\x7a\x1f\xc2\x51\x55\xe1\x57\x99\xa8\x1e\xed\x82\xc9\xeb\x5b\x2e\x37\x4e\xd9\xb8\x0f\x50\x47\xb7\xb0\x04\x5c\x28\x5b\x66\x26\x51\x82\xda\x42\xaa\xca\x85\xff\xe5\x40\x7a\xe8\x1c\x17\xe8\x7d\x30\xc8\x43\x06\xef\x63\xa8\x7e\x03\x29\x0d\x89\x75\x85\x21\xc0\x8d\x5d\x48\xb7\x56\x6d\xb1\x64\xe9\x0e\x30\x43\x5a\xe7\x1d\xaa\x68\x6b\x23\x4c\x13\xce\xcb\x6a\xde\x2c\xcf\x1a\xec\x35\xbb\x03\xf5\x6e\x7a\x91\xed\xc8\x22\x0f\x16\xa4\x2e\xcb\x72\x47\xb8\x54\x5e\x70\xec\x8e\x40\xd5\x5a\x15\xe6\x3b\xe1\xaa\xb7\x88\x74\x5d\x26\xfa\x66\x1b\x5d\xcf\x6b\x6c\xb8\xb5\x8d\xae\xb1\x2d\xf6\x8e\x9d\xc9\xf8\xd5\x0c\xef\x88\x5f\x8a\x95\xbd\x77\x94\x1b\x07\xe9\x45\x4a\xce\x5d\xf1\x38\xcd\xa2\xc2\x20\xaa\x52\xf5\x30\xfe\x90\x4a\x09\xda\xe6\xb2\x86\xf4\xdb\x28\xb9\x0a\x93\xe9\x2a\x55\x3f\xf0\xd7\xac\x51\xe0\x8e\x27\xf3\xcb\x6b\xd4\xb8\xd9\x0a\xd7\xd5\x1a\xc4\xe1\x0b\x6d\x38\x69\xf5\x2a\x32\x4a\x00\x3e\x76\xbc\xdd\x89\x81\x98\x6d\xd3\x77\xce\xda\x81\x94\x08\xc3\xed\x03\xe1\xa2\xfc\x8d\x30\x7b\x62\xf9\x32\x16\xad\x74\x56\xb0\xdd\xb9\xb2\x38\x97\xe6\x99\x35\x03\x49\xa5\xb5\x0c\x84\xc5\xab\x77\x16\xde\xc0\x5f\x7b\x6b\x1d\x08\x13\xaf\x77\x1e\x10\xda\xdf\xdd\x7a\x75\xb3\x21\x6c\x48\x73\xf0\xfb\xae\xb6\x97\xe9\xe9\x31\x52\x5b\x99\x7e\x8e\x16\xb9\xf3\xd0\x94\x13\xd5\x92\xfc\x38\x55\xe1\xce\x43\xdf\xb7\xe4\x51\x60\xab\xcc\x2c\xdc\x05\xb6\xaa\xcd\x8a\x77\x91\xc3\x9b\xc6\x84\xa7\xa0\xb3\x7b\xfa\x2e\xb6\x7d\x90\x07\xe4\xa1\x49\x0a\xb3\x40\x9b\x6f\x2a\xb8\x9c\xda\x82\x4a\x77\x61\x88\x57\x5b\x2a\xda\x4a\xb8\x0c\xf1\xad\xdd\x56\x2c\xda\xbb\x0b\xfb\xdb\x18\x2b\x6f\xbc\x09\xa3\x2d\x44\x78\xe3\x4d\x08\x5a\x6f\x7d\x6b\xa9\xc9\x41\x43\xac\xf8\x34\xc4\xd0\xee\x8a\x0b\x48\x92\xad\x5a\xb8\xd4\x14\xa6\xb7\x2e\xcb\x7d\x57\x6a\xc4\x8e\xb8\xbb\x62\xf5\xf1\x39\xde\x72\x0f\xc0\xdc\xee\x26\xa0\xb1\x86\xca\xbb\x31\x02\xb0\x3e\xe9\x6e\x18\x74\x66\x25\x6f\x36\x88\x84\xce\xa6\x8d\x5b\x3b\x44\x0e\xda\x49\xd7\x66\x25\x2a\xd1\x8b\xe6\xeb\xd6\x8b\x3a\x05\x70\xb8\xc3\xdd\x31\x44\xb2\xab\x1d\x2c\x0a\x27\xbb\x3b\x18\x82\x9d\x6a\x77\x47\xcb\x47\xa2\xb0\x25\x96\xa0\x05\x60\x77\xc7\xdd\x8b\xbb\xfb\xee\x83\xa1\x07\xcd\x76\xed\x07\xc4\x26\x0d\x55\x02\x99\xda\x1e\x0f\x5a\x82\xd6\x3f\xb0\x95\xe5\x1e\x58\x40\x2d\x91\xbd\x07\x78\x8a\x59\x8a\x7b\xa8\xe5\xd2\xa2\x07\x58\x84\xd5\xf9\xf7\x00\xd2\xea\x2b\x07\xca\xc1\x87\x7c\xe3\xe1\x1f\x1d\x65\x8a\xe7\xe3\x71\xb9\xc5\xf3\x59\xca\x7d\x9f\xda\x92\xc5\x7b\xce\xaa\x15\x06\xe4\x91\x24\x68\x44\xa7\xd4\xa1\xf7\x30\xd8\x1e\xa8\xf5\x94\xd8\x17\xa1\xba\x4f\xa0\x1b\xbb\x2e\xee\x93\x71\x54\x9c\xf7\x3e\x9b\x44\xba\xa4\x72\xd2\xc5\xb4\x25\xf3\x3e\xb5\x21\x2b\x28\xcc\x6a\x74\xfa\xed\xd9\xb5\x14\x44\x61\x4d\x44\xad\x2f\x3e\xb5\xb1\xaf\x50\x32\x2b\x01\x18\x84\x6f\xe6\x03\x06\xa8\xec\xd6\x7c\x80\x3c\x92\x37\xf3\x01\x9d\x95\xfa\x37\xf3\x01\xa1\x83\x99\x6e\x26\x04\x06\xfc\xf5\xbe\xd8\xda\xc6\x5a\xe6\xfb\x32\xcb\x4b\x9e\x22\x8d\x67\xc2\x28\x70\x81\xc3\xfb\xc2\xa1\xab\xed\x0c\xf7\x25\xcf\x20\x43\x15\x7e\x81\xc1\x04\xe7\x7d\x61\xce\x58\x0b\x70\x5f\x12\x0c\x6d\xf6\x62\xa1\x58\x53\x55\xbb\x9a\x17\x2f\x55\x93\xc2\xa6\x5e\xf8\xea\x1a\x9d\xe8\xa2\x77\x75\x56\x1a\xdd\xda\x08\x72\x50\xbb\x3b\x33\x2e\xd2\xeb\x6e\x3a\x17\xab\x8e\xee\x3b\x4b\x8e\x8a\x07\x57\x16\x85\x59\x17\x80\x66\xb5\x4f\x83\x05\xa8\xf7\x2d\xed\x97\xdf\x9b\x33\xbd\x6f\xed\xc3\x5b\xe0\xfa\xbe\xb5\xa0\x8f\x8e\x61\x1e\x06\x86\x0f\x28\xff\x38\x00\x2e\x77\x13\x17\xa1\x10\xc6\x24\xed\x5b\xbe\x6f\x69\x97\x16\x60\xf3\x23\x18\x9e\x9b\x09\x32\x6d\x54\xba\x6f\x06\x22\xf6\x69\xdd\x62\xdb\x81\xb1\x47\xdc\xad\x32\xde\x3e\x1a\x93\xe8\xb6\xcc\xe8\xf6\x8c\xed\xd0\xcc\x2d\x27\x11\xdd\x53\xed\xad\x00\x32\x26\x26\xbd\x1e\x4a\x60\xf8\x64\xa0\xd7\x6e\x01\x61\xaf\xa9\xc5\x72\x98\x57\x21\x68\x19\x27\x90\x72\x67\x4b\xf2\xfd\x6a\x72\x80\xc2\x5e\xe4\xc7\x66\xd3\x1b\x3c\x3b\xd8\xfc\x74\x03\x55\x5b\xa3\x72\x2f\x5b\x36\x3a\x33\x22\xf7\x0b\x00\xa8\x40\x0f\xb0\x6a\x63\x77\xc5\x0d\x0c\x1d\x6c\xaf\xbf\x5f\xd5\x9a\x09\x84\xfb\xa5\xd6\xec\xc1\xbd\x5f\x11\x16\x5a\xbd\xe0\x26\x47\xb4\xdc\x2f\xbe\x64\xf6\xfc\xdd\xef\x60\xfe\x00\x23\xf4\xf2\x35\xac\x5c\xb8\x99\x35\x09\xbd\xa2\x76\xa6\x4d\x06\xdb\x53\x1f\xe0\x63\x1b\xcb\x14\x3e\x20\xc3\xc6\x1e\xdc\x47\x68\x90\x13\x83\x1e\xa6\x37\x3a\xdb\xe2\x9f\xc3\x3c\x69\x91\xb0\xbc\x96\xe4\x07\xce\x33\x13\xf7\x80\xed\x42\xa7\x7d\x3e\x87\x96\x76\x2d\x0b\xf3\x30\x8b\xd1\x71\x9e\x3e\x9a\xc5\xe8\x0c\x78\x8f\xd6\xbf\x73\x58\xc6\x13\xcc\xfb\xbc\x32\x81\xa4\x5a\x5b\xda\x7f\x00\x52\x1d\x38\xff\x08\x48\xb1\xf2\xf1\x09\xac\xe8\x60\x19\xf1\x13\xf4\x52\xf6\x78\x3c\xc1\x9a\x4e\x20\xac\x29\xa7\xf1\x87\xdf\x1e\xa6\x27\x46\x5d\x48\xe5\x89\xa0\x90\xb1\x10\xc6\x13\xe5\xf2\x25\x7f\xc4\xbb\x4d\x57\x7d\x22\x54\x87\xbd\x46\x4f\xb4\xf9\x99\x4e\x58\xb0\x28\x11\xd6\x76\x07\x85\x55\x89\xa1\x1f\x2f\x46\x98\x02\x1a\x24\xfb\x68\x84\x05\xf9\x28\x8c\xa5\x27\xec\xc1\x7c\xa2\x76\x98\x2b\x6c\x24\x33\x13\x86\x64\x1e\x54\x08\x4e\xf1\xd5\x1a\x92\x89\xef\xf4\x01\x6b\x0d\xce\x10\x79\x12\xdc\x81\x75\x44\x8f\x4e\x17\xc8\x6b\x54\x78\x52\xe6\x9c\x90\xb1\x86\x82\x27\x65\x2d\x79\x52\x98\x99\x81\xc5\x0b\x1e\xd6\x81\x0f\x7a\xe3\x93\x34\x33\x40\xad\x13\x00\x0b\x47\xd4\x93\x8a\xac\xdc\x20\x7c\xf3\xd2\x42\x69\x45\x2f\x4a\x84\xf5\x39\x14\xc0\x6a\x5c\x76\x91\x3d\x3a\x83\xa0\x73\xe2\xcc\xc3\x19\x04\x03\x1f\xfc\xa3\x33\x08\xfa\xf7\x04\x73\x0c\x91\x84\x2e\x57\x28\x4f\x8b\xdf\x23\xed\xd4\x85\xe7\xa8\x86\x26\x2b\x69\xa8\xcc\xff\x84\x3e\x46\xfc\x1d\xe3\xf6\x30\x3b\xd4\xab\xbd\x6d\xea\x29\xfd\xd0\x1e\x58\x5e\xcd\xdc\xa4\x00\xca\x93\x34\xcd\x5f\x94\x10\x95\x40\xa1\x43\xcd\x89\x0a\x6b\x73\x78\x47\x19\x43\x07\x08\x0d\x25\xb0\x8b\x31\xf1\xe9\xb6\x6b\x5c\x0f\x9f\xca\xa4\xd7\xea\x53\x90\xb4\x36\x65\x4a\x1b\x74\x64\x6d\x62\x7d\xd2\xa9\xdd\xbe\xeb\x4d\x19\xe0\xa3\xcd\xa4\x4f\xce\x5a\xab\xd0\x09\x83\xe9\xd6\x00\xf1\x64\xc6\x41\xed\x13\x7d\x32\xf0\x6b\x24\x3d\xc0\xd4\x11\xed\x3d\x33\x42\xe4\x65\x2a\x1e\xad\x15\xaf\x55\x61\x90\x52\x22\x0f\x5b\xba\x34\x7c\x3f\x82\xdd\x83\x36\xae\xf5\xe1\x7d\x0d\x9c\x4f\xa6\xc7\x0e\x0b\xab\xb0\x4a\x98\x93\x1c\xf4\xa2\xaa\xef\x41\xf9\xb9\x69\x13\x04\xdf\x83\x1f\x40\xb0\xe3\xd1\x9a\xf0\x61\x61\xce\x22\x02\x2d\x3c\x3a\xb4\x81\x29\xe6\x47\x73\x70\x4c\x6d\x3f\xac\xfc\xee\xc3\xde\x0a\x13\x40\xa5\xcc\xcd\xb5\xae\x78\x68\x3d\x5b\x31\x1f\xe6\xe9\x64\x1e\x9f\x0c\x6f\x62\xdd\xf6\xa3\xb5\xdd\x45\x42\xa5\x9b\xe6\x41\xb5\x57\x4b\x0b\xda\x65\xf1\xe4\x8e\xb1\xe8\x7c\x27\x8d\x89\x93\xf7\x1e\x3b\x2d\x62\x50\x21\xb5\x25\x69\x61\x48\x55\xf4\x16\xe8\x45\x1f\x99\x17\xd1\xe1\x41\x63\x8f\x8e\x94\x18\x85\xd2\x18\x29\x6b\xa6\xd6\x8c\x94\xda\xe1\xf0\x64\xda\xd8\xc8\x0a\x83\xfb\xb3\x5e\xaa\xd2\x78\xf8\x54\x69\xd8\xa9\x22\x7b\x47\xe7\x17\xb3\x60\x45\xf7\x53\x74\x16\x09\x32\x85\x58\xf4\x60\xf1\x7c\x33\x9f\x53\x8a\x5e\xd4\x78\x91\xa6\xf9\xa8\x85\xce\x6b\x60\x1e\xfd\x29\x45\xd5\x6b\x7a\x82\xea\x15\x4a\xb3\xed\x7d\x7a\x40\xd2\xa3\xf7\x6b\xd6\x52\x4a\x2f\x45\x73\x59\x7a\xd3\x54\x26\x3d\x2d\x24\x48\x9d\x70\x62\x56\x65\x02\xb3\x4a\x4a\x85\xe6\xc6\xd9\x35\x0f\x04\x27\xe8\xcc\x82\x47\x0c\x07\xa4\xfd\x14\x5c\x50\x25\x28\x13\x2e\xa8\x35\x02\x3f\x85\x31\x4b\x1b\xe4\x9f\x42\x03\xc5\x31\xfe\x68\x61\x3d\x6e\xd8\xa7\x34\xed\xb3\xe3\x1b\x8c\xbf\x53\x8b\xc6\x22\xa6\xa6\x30\x8d\x9b\xd1\xa2\x30\x94\x6b\x77\xe4\x53\xba\x16\xe5\x65\xc2\x70\x05\x5a\x4f\xc1\x73\xa9\xad\x92\x4f\xd1\x21\x2a\x85\x2a\x31\xab\xa1\x8d\x99\x4f\xe9\x32\xe1\x54\x89\xe3\x08\xb4\xf3\xf1\x29\x3a\x5e\x25\xff\x9e\xf3\xed\x29\x6a\xb2\xcc\x9a\x3f\x85\x55\xe5\x43\xea\xc3\xe1\xa9\x95\x33\x4f\x01\x97\x0e\x7d\xba\x48\x46\xa2\xf6\x72\x20\x80\x19\x0a\xcd\x91\x13\x51\x1e\x1d\xa5\x31\xa4\x7b\x6d\xbe\x6d\x8a\x3f\x79\x69\xa0\x04\x8c\xd9\x00\x34\x14\x6b\x9a\x64\x52\xd3\xc4\x75\xfc\x40\x19\xfb\xa8\x95\x30\x9d\x3f\x30\x62\x55\x26\x59\x98\x5a\x7c\xaa\xe6\x71\x8b\x1e\xc0\xa4\xd0\xae\xeb\x1a\xe1\xd6\x03\x99\x1f\x9c\x3e\x53\x1b\x61\xc4\x03\xa6\xa9\x59\x4c\x4c\xe1\xa9\x07\x94\x89\x3a\x61\xe5\x98\x14\xef\xec\x98\x7d\xaa\x26\xf2\xe8\x15\xd5\xd6\x8e\xf1\xb0\x1a\x39\x33\x04\x0f\x7b\x15\x3a\x53\xa8\x4f\x95\x59\x0c\x2a\x42\x66\x11\xf0\xc2\x94\xfa\x4a\xd0\x6b\xb5\x18\x99\xba\xaa\x2b\xc0\xf6\x1e\xe6\xd4\x3b\x7b\x00\x9e\x4a\x57\x18\xf4\x97\x6a\xa7\xfd\xa8\x88\x57\x0f\x90\xa9\xca\xb9\x42\x71\x74\x05\xa8\xcc\x53\x35\xc1\x0e\x0c\xaa\x2c\x9d\x65\xcf\xc4\x53\xab\xb4\x92\xf5\x80\xb4\x82\x04\xaa\x24\xc0\x4b\x9b\xb4\x82\x55\xa9\x3a\x21\xa7\x29\xcc\x7a\x21\x55\x55\x56\x58\x50\xa0\x62\x85\x05\x23\x2a\x56\x78\x34\xc5\x03\xe4\x55\xef\x26\xd1\x60\x01\x2b\x9d\x47\x10\xac\xea\xa0\x21\xfa\x7f\xc5\x0c\x0f\x2c\x4c\x55\x57\xa0\x53\x55\xcc\x70\x52\xc9\xf4\x04\xce\xe0\x79\xaa\x5a\xab\xc4\x4d\xab\x0c\xfa\x4e\x0d\xab\x98\x8b\xa6\x19\x1c\x94\xd8\x00\x42\x1c\x25\xfc\xe8\xb8\x13\xf8\xca\xd3\x58\xe2\x22\x34\xc2\x02\x86\xa0\x65\x97\x4f\x2b\xda\x56\x53\x09\x53\x39\xec\x51\xd3\xc2\x91\xa2\x3c\x6a\x0d\x43\x6f\x62\x57\x13\xfd\x84\x25\x0f\x7d\xd0\xe3\xd9\xb9\xd2\x99\x84\x7b\x5a\x95\xe9\x68\x84\xb5\xdc\xbb\x10\xc6\x63\x8b\x24\x1a\x62\x14\xf2\x6d\x62\x0a\x8c\x23\x8d\xb9\x51\x4e\x4a\x7a\x38\xaf\x64\x34\x3a\x71\xb3\x33\x70\x78\xbf\xb6\x8c\xe8\x8b\xd5\xb9\x71\x01\x3d\x1c\x51\xd2\x59\x8f\xfc\x34\x0d\x48\x9d\x87\x87\x74\x46\x45\x87\x0e\xb7\x64\xec\xd0\x96\x19\xf6\xa8\x3e\x5d\xeb\xb7\x11\x4b\xb7\x19\x6e\xe2\xc7\xf1\x9d\x4d\xf8\x74\x06\x33\x56\x73\x3d\x38\x4a\x82\xf6\x47\x3c\x5d\xa3\x19\x23\x58\xd7\xc1\x4f\x55\xf1\x58\x54\x2c\x43\x97\x3b\xac\x29\x0f\xf0\x87\x71\xbd\x0f\x61\x93\xdf\x63\xa9\x8f\x3c\x2d\xc5\x0a\x11\xf0\xcc\x84\x5f\x96\x60\x50\x2b\x99\x1c\xf5\xb1\x91\xed\x47\xe1\x07\x75\xc7\xfe\x8c\xac\x0d\x4e\x8d\x70\x52\x26\x25\xb0\x7c\x0e\x55\xb0\x99\xa5\xb1\xa6\xe2\x19\x99\xc9\x3a\x9a\xc0\x60\xc1\xa1\xb6\x5e\x3c\x23\x33\x5b\x57\x94\x89\x56\x79\xa8\x68\xad\x23\xe9\x84\x2f\x3d\xa0\x1f\xac\x2c\xec\x0a\x43\xce\xa2\x5e\x84\x0d\xb0\xea\x69\x93\xd6\x92\xe0\x28\xf6\x0d\xfa\x81\xdf\x12\xa3\x3b\xb4\xfe\xfa\x50\x98\x2d\x2c\xb0\x0a\x9d\x27\xc2\x14\xdd\x33\x60\x79\xd1\x9e\xa5\xb3\x46\xe5\x61\x25\x21\xba\x1e\x4c\x13\x6b\xd7\xd1\x33\x6c\xc2\x51\x0f\x43\x5b\xb0\xbf\x43\x66\x8c\xad\x27\xcf\x10\x06\x54\xc9\x90\x27\x36\x52\x3c\x83\xfe\xc0\xf1\x62\xcf\xa8\xac\x31\xc4\x72\xb1\x13\x28\x68\x6b\xcf\x33\xb4\xc5\x8b\x1e\x37\xe0\xd4\x42\xc7\x43\x03\x34\xd3\x0a\x8f\xed\x17\x52\xbd\x85\x20\x99\x56\x78\xf0\x97\xf5\x4c\x7b\x1a\x42\x90\x4c\x25\x3c\x83\x61\x3c\x59\x82\xb6\x23\x2b\x1e\x68\x65\x61\x00\x24\xc3\xea\x90\xe9\xea\x8a\x97\x42\x8b\x12\x38\xc3\x26\x2b\xcc\xac\x02\xa8\x9e\xd3\x55\x3a\x3b\x35\x9f\x01\x25\xe5\xc0\xef\x67\x80\x07\x38\x97\xf1\x19\x5d\x1b\xf6\xa8\x84\x76\x0d\x62\xc6\x06\xa0\xb1\x63\xf6\xd8\xc2\x34\x38\x0c\xf6\x19\x5a\x9a\x80\x2d\xc5\xcb\xd7\x99\x60\x78\xb4\xb5\x89\x0d\x0d\xcf\xd0\x0e\x19\x38\xc0\xd0\xb9\x56\x58\xa8\x21\xdf\xb9\x3e\x86\x99\x8d\x91\x9a\x1e\x66\xa3\xaa\x84\x8a\x8b\x60\x1c\x7a\x58\x72\xa4\xff\xb1\x90\xa8\x67\xfa\xe8\x69\xbd\xa4\xe9\x87\x0e\xa4\xaa\x84\xe9\x25\x34\xfa\x53\x0b\x6b\x0f\xe5\xa1\xd9\x52\x55\x9c\x90\x9d\xf3\xa2\x1e\x56\x13\x37\x61\x0b\x1c\x89\x9d\x75\x6e\x0f\x8b\x87\x3a\xeb\xca\x1f\xdc\x7f\x83\xed\xf8\x0f\xab\x76\x3a\x87\x53\x3d\x97\xe0\x16\xfd\xe8\xd2\xc2\x23\x60\xd8\xc5\xa4\xbf\x60\xd8\x35\x44\x30\x57\xfe\x9b\xe9\x79\xd9\x58\x5c\x5e\x83\x39\x9b\xe7\x66\x2e\x87\x19\xf0\xe7\x66\x26\x8c\x59\xae\x87\xf5\x3b\x61\xe0\x2b\x7a\xb4\x69\x87\x03\x05\x9f\x9b\xf9\xf9\xc1\xc2\x85\xe7\x96\x9f\x22\x29\xcc\xda\x21\xbe\x80\x03\x4f\x74\x3c\xea\x73\x43\x7f\x65\xe9\x59\xe5\x33\x34\x62\xb2\x7e\xa7\x71\xe2\xd0\x63\xcb\x77\x30\x29\x37\x53\x64\x2d\x95\xdf\x33\x6f\xac\x39\xee\x59\x85\xc3\x7a\x39\xac\xee\xb1\x05\x2f\xe0\x3a\x16\xbc\xb4\x41\x6b\x60\xc1\x4b\x67\x3f\xff\xa3\x43\x55\xaa\x3e\x82\xf5\x10\xa3\x42\x33\x38\x55\xc5\x9a\xf6\x6d\x9b\xad\x78\x11\xcd\x27\xeb\x61\x6d\x3b\x04\x1c\xb0\xbb\x67\xb0\x2c\xf7\x61\xc5\xc9\x48\x60\xbf\x47\x9b\x8a\x79\xf6\xd1\x1a\x63\xfa\xf6\x83\xc4\x58\x79\xf9\x3c\x48\x8c\x99\xba\x47\x0b\x51\xd8\x38\xf6\x68\x21\xca\xa8\x59\x0f\xd3\xa7\xaa\xc2\x8c\x57\xb8\x85\x1e\xe1\x1e\x4e\xa7\x7a\x1e\xcd\x3d\x02\x09\x59\x42\xbd\x12\xc8\x85\xc0\xd9\x3f\xf4\x3c\xe2\x00\x38\xd2\x9e\x07\xdb\xc3\x5a\xe7\xe7\xa9\xaa\x13\xf5\xae\x7c\x03\x6a\x67\x63\x51\x30\xcf\x90\x2d\x6a\x01\x04\x3d\xb2\x2a\x40\x8b\x47\xab\x1a\x68\x34\x0f\xde\x70\x8e\xe0\x7c\x1e\x5b\x92\x48\x58\xb8\x5f\xe2\x66\xed\x4a\x93\x7f\x80\xa5\xdc\x23\x59\xbc\xce\xf4\xa5\x16\x5d\xc7\x68\xf2\x09\x72\x62\x64\xc5\x63\xe8\x31\x00\x8f\xe6\x17\x50\x33\xab\x55\x9a\x48\xe3\xa3\x59\xb8\xa0\x3c\xcc\x03\x49\xc2\xb8\xbc\xc4\x18\x1e\xf5\xed\xaa\xcf\x97\xd7\x80\xae\x31\xed\x3c\xad\x44\x98\x89\xe1\xa6\x78\xd0\x2e\x15\xd5\x06\x1f\x79\x61\x58\xe9\xd2\x59\xbb\xff\x4c\x8d\x42\xd8\x0b\x1d\xde\xc2\xf1\x58\xcf\xd4\x58\x20\x6f\xde\x94\x8b\xb9\x2b\x13\xb2\x06\xd2\x4e\xb1\x3b\xe6\x42\x1f\x2d\x51\x61\xb6\xec\x99\x55\x9b\xcd\x79\xa0\x6a\x71\x38\x35\xd2\x5c\x30\xc6\x7c\x36\xdc\x82\x28\x56\x0e\x5f\x35\x24\x56\x65\x0c\x4e\x51\x7d\x6c\xc9\x04\x7e\x12\x2d\x99\x18\xf2\x6c\xb2\x64\xa2\x73\x98\xe7\xf3\x8a\x67\xb0\x25\xef\x79\xb3\x36\xfd\x34\xc2\x5a\x18\xbd\x3e\x01\x2f\x6f\xc7\x9b\xfb\x70\xa2\x4a\x18\xcc\xb4\x3d\xaf\x9c\x5b\x98\xff\xb7\x50\x55\xec\xe2\x2b\x54\x4e\x27\xd4\xda\xf8\x8a\x0d\x7b\xd9\xfe\x3e\x04\x44\x5e\x99\x83\xa6\x4c\x4d\x09\x54\x43\xe8\x10\xb1\xbe\x55\xe7\x22\x2d\x7d\xe2\x48\x6e\x1c\x36\xfa\xb0\xe6\xa1\x27\x8b\x07\x4b\x03\xde\x58\xf2\x10\x06\xdb\x69\x9e\x57\x9b\x34\x82\x32\x5d\x4a\xa0\x7e\x5a\xf4\x80\x55\xd2\xa2\x87\xd1\xf5\xd5\x5a\x90\x47\x13\x7b\x75\xb4\x27\x0e\x4a\x16\x3d\x8c\xa8\x7a\x77\xec\xa1\x2c\xe8\xab\x36\x5c\x14\xc6\x6f\x3b\x94\x89\xd5\x10\xcb\x3c\xcd\x43\xd8\xfa\x77\x37\x66\x4d\x16\xce\x77\x34\x3c\x59\x50\x80\xf3\x6e\x85\x71\x2d\x2f\xeb\x30\x0f\xad\xb3\x56\x3c\x33\xff\xf2\x02\x4f\xcd\xfc\x73\xa0\xee\xd4\xcc\xbf\xd6\x84\x4f\x66\xfe\x3b\x87\x03\xcc\x43\x56\xb3\xf2\x26\x8d\xb9\x0b\x42\xcc\x03\xaf\xdf\x60\x86\x7f\x1e\xc6\x7a\xc9\x04\xb6\xa5\x41\x4d\xf6\xf6\xac\x4c\xbc\x49\x87\x7f\x76\x9e\x66\x16\x70\xb0\xee\x7a\x6a\xd7\x0f\x3e\x9f\x79\x18\x7a\x5e\x6f\xd2\x51\x31\x00\xc4\x19\x64\x8b\x78\x38\x54\xb0\x7d\x24\x5e\x4b\x1c\x78\x0f\x1e\xee\xce\x59\x4a\x93\xc3\x58\x3a\x9b\x8b\x67\x60\xac\x64\xbd\xff\xe4\x50\xde\x30\xb0\xf6\x33\x88\x0c\x2c\x1b\x35\x03\xeb\x9c\x86\x6a\x11\x98\x5c\x63\x0a\x61\x06\x98\x41\xb1\xb7\x3e\xca\xc4\xab\xd8\x22\x92\xf5\x5a\x01\x77\x2c\xd6\xd4\xd1\x2d\x6c\xa8\x9d\x41\x0b\x07\x3a\x4f\xb3\xc6\x85\xed\x8c\x33\x08\x76\x24\x85\x41\x66\x8d\xba\xd2\x05\x33\xe2\x0e\x27\x57\x6e\xe0\x9e\x9c\x78\xe0\xd7\x8f\xcc\x0f\x15\x5d\x09\x47\x25\x14\x7e\x00\x17\x56\xcb\x9c\x31\xeb\x55\x4b\x64\xb1\xe8\x69\x25\x14\x3d\xcd\x03\x45\x4f\x87\xce\x0f\x2a\xbe\xfa\xd7\x8c\x40\x5e\xf0\xd8\x8c\x5a\x3c\xdf\x15\xcf\x7a\xf6\x46\xd1\x5a\xf2\xdf\x78\x56\x6b\x36\x96\xb9\x98\x78\xff\x3b\xe8\x7f\xb2\xec\xa2\x71\x7a\xe9\xc4\xfb\xdf\xa0\xaa\x33\xae\xd6\x1a\x0f\x3c\x4c\x33\x32\x13\x08\xca\x9d\xb1\xaa\x00\xbe\x53\x98\xf5\x50\x1e\xed\x74\xa2\xb0\x26\x9f\x3a\x9f\xd6\x84\x9c\x78\xe9\xea\x8c\xf1\x60\x66\x6f\xda\xae\x88\x46\x26\x66\x4e\xc1\xb8\x33\x76\xd5\x54\x79\xd8\x5f\xa0\xaf\x5c\x1d\x30\x1e\xb8\x18\x67\x04\x23\x71\x36\xc4\x64\x7e\x61\xb0\x53\x77\x46\xb5\xf4\xcc\xe7\x68\xf1\x42\x27\x8f\x74\x4e\xbb\x65\xb1\xc8\xe0\x80\xd7\x19\xa5\xf3\xae\xfc\xec\x96\xe8\x88\x05\xb6\xcd\xd2\xf7\xc9\x9a\x90\xc1\x16\xd3\x19\x45\xe2\x68\x54\x36\x35\x81\xb8\x12\xb8\x91\xd3\xde\x26\xcb\x40\x06\x73\x77\x33\x31\x31\x0b\xd9\x9e\x49\x7b\x1f\xaa\xc2\x28\x9f\x2e\x9c\x4c\xf9\xe8\x2c\x15\x9d\x6e\xc8\x4b\xa5\x63\xba\x70\xd2\xe4\x15\x95\x4e\xda\xd6\xd1\x15\xd6\x21\x30\xbc\x48\x0b\x76\xfa\x92\x62\xc2\xc9\x81\x3f\x6d\x72\x6a\x72\x3c\xf0\xd9\xcd\x04\x53\x60\xd6\x65\x26\xec\x2f\x5e\xa5\xa9\xa9\x0c\x3c\x87\x33\xc9\xc0\xa4\xdf\x5b\x1f\x32\x99\xcd\x18\xac\x7a\x9d\x9c\xa8\xbc\x4a\xd1\x1b\xb4\xf7\x92\x12\xbb\x56\x20\xf3\x49\x4b\x6f\xf1\xc0\x1d\x3a\xb5\x9f\xa5\x60\x1c\x98\x98\x18\x9c\xc7\x30\x99\x98\x88\x07\x47\x47\x4f\x4d\x4c\x70\x20\xc3\x64\x62\x62\x25\xe8\x07\x1f\xb2\xc6\x82\xc9\xc1\xcb\x2b\x81\x32\xb4\xf4\x88\xe6\xcd\x64\xc4\x28\xfa\xf2\xa1\xca\x22\xaa\xa1\xca\x46\x3d\xad\x89\x6b\x2a\x3e\x54\x8f\xd5\x97\x92\x3a\x38\x3e\xb1\xc9\x64\xc4\x28\x0b\x71\x4f\xe6\x22\x06\x27\x9c\xcc\x8c\xe6\x71\xa7\xcf\x8c\xe6\xd9\x4f\x39\x39\xce\x66\xc8\x2e\x65\x56\x41\xc3\x24\x66\x86\x3d\x00\xed\x26\xd3\x12\xab\x00\x12\x18\x54\x58\x19\x35\x39\xe7\x26\x1e\x1c\x8c\x33\x39\xe8\xa6\xb3\x0c\x69\x32\x79\x31\x38\xb4\x6c\x6a\x8e\x82\xe5\xb7\x33\x97\xa1\x07\x0a\x3f\x4e\x32\xe9\xad\x12\x78\xd6\x6b\x19\x76\xb0\x7c\x9c\x74\xb3\x12\x1a\x3f\xb4\x73\x92\xe2\xb0\x14\x6c\xdc\x98\x9c\x6e\x33\xd8\x74\x38\xb3\xac\x43\x22\xac\x46\x64\x61\xc9\xbe\xea\x07\x0f\xe8\x45\x4d\xb2\xa7\x80\x86\x6f\x40\xd2\x63\x91\x45\x91\x54\xd5\x80\xe8\xaf\xd9\x1a\x10\x16\x51\x3b\x8e\x58\x4b\x35\x59\xc7\x14\x0f\x76\xab\x4c\x5b\xc7\x44\xcf\xd1\xb4\x06\x5b\x91\x66\xee\xaa\x2a\x25\x70\x18\x1c\xd3\x3a\x93\xe9\x8e\xc1\x42\x81\xc9\x51\x36\x83\x39\xa4\xc9\xac\xc6\x60\x75\xf4\x64\x56\x63\x15\x40\x55\x31\x21\x41\x55\x92\x8f\xa7\x52\x30\xe6\xa1\x48\x5e\x2c\xa5\x63\xcf\xe5\xcc\xd6\x4a\x18\xfb\x34\xd1\xa0\xf1\xa4\x64\x6e\xd0\x61\x67\xf5\x2c\x6a\x02\x39\x12\x46\x00\x0b\x0e\xcf\x92\x45\xfb\x33\x61\xda\x1e\x06\x8e\x99\x89\xc1\xd2\xb8\xc9\xc4\xc4\x60\x99\xd3\x64\x32\x62\xe0\x66\x9f\xcc\x45\x34\x16\xf4\xcd\x52\x28\x8c\x39\xe6\x59\x68\x19\x4c\x9a\x4e\xe6\x22\x7a\xb0\x17\x3d\xca\x44\xc9\x45\x27\xcc\xf1\x26\x6d\x41\xa7\x2f\x31\xb5\x30\xd8\xbb\x37\x59\x3c\xd5\xba\x4a\xd6\xfe\x91\xca\xb3\xe6\x80\xe5\xa5\x78\x34\x40\xb4\x93\x29\x87\x78\x00\x38\x27\x53\x0e\xa3\x44\xc2\xd6\x2e\x10\x05\x74\xa3\xa2\x9d\xd2\x54\x6d\x1a\x46\x91\x09\x2a\xbc\x95\x46\x92\x55\x9a\x1a\x09\xc6\xb8\xa8\x2d\xb0\xe0\x66\x16\xe3\x21\x4a\xc0\x36\xc0\x62\x66\xd1\x76\x0b\x86\x07\x66\x13\x06\xab\x72\xa7\xa6\x02\xba\xbe\x5f\x8b\xe0\xc6\xef\x9d\x62\x39\xf1\xfb\x0f\xa6\x46\x27\x6e\xff\xc1\x71\x14\x53\x67\x0f\x71\x9e\xd6\x2c\x6a\x04\x6c\xa7\x98\x72\xfb\x73\xd4\xcf\xac\x32\x03\x8b\x38\x4e\x39\xf1\x39\x98\x79\xea\x2c\x6e\xce\x21\x98\x55\x7b\xcd\xf8\x24\x6d\x60\x63\xe5\xf5\x94\x1b\x9e\x4d\xae\xb3\x9a\x7e\xe9\x03\xb8\xe1\x87\x2c\x82\x36\xb0\xe1\x44\x9b\x55\xdd\x18\xc9\xca\x47\xae\x06\x87\x8f\x3c\x1e\xac\x18\x9f\xf8\xc8\x07\xa7\x26\x4e\x79\xb6\x2b\xd6\x0e\xcf\xf6\x38\xf8\x9c\xaa\xae\x8b\x69\xa9\x4c\x65\xb3\x24\x62\xd6\x86\x35\x61\x4d\xf0\xac\x52\x4b\xd0\x8b\xe8\x10\x55\x2f\x9a\xca\x44\x82\x5d\x7c\x80\x5c\x7a\x50\x02\x1f\xaa\x15\xc8\x98\x10\x7c\xe4\xf1\x60\xc5\xca\xac\xb8\x42\x70\x4e\x4c\x73\x92\x17\x85\xbb\x32\xe9\x55\xaa\xa0\xc2\xd4\x03\xb3\x51\x35\x28\x48\x4a\x70\xff\xd2\x15\xe6\xa3\x19\xe7\x2b\xb3\x8a\x6a\x72\x55\x3a\x64\x04\xac\x8c\xe7\x05\xb8\xd4\x64\xc9\xe9\x5a\x4d\x5d\x17\xf5\xe0\x61\x1f\x85\xf1\x5f\x67\x85\x17\x00\x4c\xd3\xae\x36\x30\x42\x93\xf1\xe6\x18\xa0\x29\x6f\x3b\x93\x24\xb3\xc9\x78\x03\xa3\xf0\xb6\xaf\x4c\x7a\x82\xde\x81\x90\xb4\xc1\x90\xfd\x74\x53\xe7\x83\x73\xec\xe7\xc4\xdb\x1e\x0f\x41\x66\xdc\xed\x83\xa3\x10\x66\x13\x52\xc3\xd5\x38\x1b\x48\xad\xa8\x1e\x4d\x23\x50\x25\xac\xb1\x8f\x12\xba\x56\x50\xf2\x0d\x26\x79\x84\xd7\x24\xf9\xc8\x03\x32\xa7\xb4\x55\x1d\x28\xce\x4a\x90\xa9\xa3\xc2\x45\x1f\x70\xd0\x0f\x8e\x06\x98\x4d\xe3\x37\x20\xac\x01\xbc\xb8\x57\x66\x36\x75\x1e\x06\x87\x06\x4b\x8f\x34\x98\x2e\x01\x03\x92\xb4\x7b\x91\xd3\x25\x26\xbb\x17\xe3\x81\x3b\x7a\xda\x49\xd7\x68\x87\x63\xa9\x06\xbc\x71\xf6\x7c\x2a\x93\x9e\xa6\x16\x87\x9e\xa6\x16\xc0\xb0\x6e\xb3\x5b\x3c\xac\x11\x11\x7b\xd0\x35\x22\xb2\xfa\x63\xb2\xc7\x71\x70\xc8\xf6\xec\x4c\xb6\xb2\x07\x79\xf6\x8a\x5c\x58\x8f\x3b\xbb\x2c\x22\x66\xa6\xb3\x7a\x91\x19\xf3\xd9\x35\x0a\xd2\x19\xba\x46\x41\x8e\xa9\x9c\x5d\xd6\xae\xeb\x01\x4a\x00\xac\x75\x9d\xcb\x46\xab\xea\xea\x0c\x6c\x5b\x9d\xda\x20\xc9\x82\xaa\xd9\xad\xcd\x23\x00\xb5\x79\xce\x59\x9c\x5d\x6d\x1e\x6a\xd4\xed\x3c\x65\xbd\x49\xbb\xa4\xf8\x68\xf9\x1a\x8b\x5e\xc4\x21\x34\xe3\xf7\xa6\x51\xe7\xb0\x03\xf0\x57\xd5\x87\x61\x4e\x85\xd1\x85\x88\xc5\xd0\xe9\xb7\x54\x0b\x5f\x7a\x17\x0b\x1a\x3a\xf5\x87\x2e\xca\x59\xde\x8d\x03\x03\x27\x67\x79\xaf\x87\x0b\x3f\x18\x53\x95\x09\x94\xca\x4c\xf4\x64\x03\xe8\xca\xa4\x1f\x1c\xfd\xc2\xf0\x37\x74\xe8\xa7\x3d\x20\xd1\xd2\x16\x71\xb2\xf7\x9a\x14\xae\x4a\xe8\xfc\xe0\xa8\x26\x4c\xd6\xa0\x7b\x70\x4c\xd2\xc4\xe1\xde\x39\x30\x73\xca\x1b\x2e\xc2\x86\x37\x3c\x1e\x02\x68\xb6\x0e\x15\x23\x8a\x37\x7c\x74\x7d\x44\xd3\x31\x20\xbc\x88\x95\x3b\xe2\xc7\x78\xc3\xbb\x7a\xf8\x90\xb9\x13\x02\xc4\x1d\x3e\x38\xf4\x71\x0e\x48\x0d\x8b\xb5\xe6\xe8\xfa\x36\x6a\xaa\x35\x93\x5d\xf9\x39\x64\xa5\x2a\xac\x5d\xdc\xca\x0f\x32\x14\x0a\x93\x9f\x9c\x15\x70\x73\xe8\xec\x1e\x89\x9e\x7e\x16\x54\x6b\x9d\x47\xca\x90\x30\x20\x38\x02\x64\xf8\xcf\x07\x8b\x0d\x27\xfe\xf3\xc1\x8e\xa8\x89\xff\x7c\x15\x40\x4d\x75\x7c\x45\x51\x61\xfa\x1c\xc6\x76\x1c\xe8\x9d\x9d\x6f\x13\xff\xf9\x10\x3a\x3b\x6d\xe3\x6a\x26\xac\xb3\x6f\x02\x61\x4a\xc3\xfc\x9e\x74\x58\x4e\x10\x9a\xa7\xa6\x86\xb0\x82\xa7\xb6\x1e\xd0\xa8\x4e\x99\xca\x62\x09\x7c\x0e\x36\xfd\xe4\xf8\x5f\x4e\x30\x9c\x5a\xe8\xdb\x2d\x9e\x97\x62\x1d\x4f\x1d\x90\x4c\xdb\x39\x85\x04\xf9\xcc\x53\xf7\x68\x24\xc5\x03\xed\xf5\x7e\x93\x29\x2d\xf2\x94\x1b\x04\xe3\xc8\xe9\x5c\x3d\xea\xcb\x58\x7e\xc2\xd6\xdb\x79\xea\x40\x08\xfa\xc5\x25\x7e\xcf\x84\xf5\xbc\x98\x31\xe0\x68\x8d\xa9\x35\xb9\x9c\xe0\x39\x75\x14\x07\x87\x29\xcc\x4b\x1b\xe2\x18\xdf\x2e\x19\x7b\x8e\x54\x9f\x57\x51\x0b\xe6\x45\xb6\x29\x45\xf1\x68\x84\xf5\x73\x53\x0b\x74\x05\x27\x34\x67\xc0\xb9\xe8\xf3\x52\x87\xe1\xec\xd4\x79\x55\x6d\x76\x57\x02\x13\x85\x18\xf5\x4b\x47\x9b\x82\x1b\xae\xa6\x07\xe8\x30\x97\x56\xeb\xc1\x80\x2e\x6d\x7f\xa5\xb5\x69\x26\x02\xc7\xe2\xbc\xe0\x7e\x4c\xdc\xcd\xab\xeb\xdb\x78\x29\x7b\x4d\x59\xb5\x3e\xed\x08\x11\x0a\xb0\x39\x03\x2c\x94\x4e\x00\x13\x8d\xb8\x65\x66\xd9\x6f\x3d\xb5\x2a\x97\x55\xa8\xf3\xd6\xe7\x58\x18\x73\x85\x2c\x6e\xdb\x00\x45\x58\xe7\xc9\xd0\xa6\xe4\x9e\x97\xfb\x05\xb7\xfa\x60\x57\xe2\xd4\x99\x23\x3d\xfe\xde\x51\xbd\x53\x07\x92\x70\x94\xe0\xc4\x67\x3e\xe4\x9b\xc2\x67\x1e\x0f\xae\xeb\x99\x8f\xad\x99\x1f\x84\x31\x6f\xa0\x5e\x9d\xcc\xc5\xc1\xfd\xf3\x3b\xc1\x84\x9a\xc8\x4f\x4e\xf7\xc1\x4f\x1e\x0f\xfc\x98\xf3\xd1\x04\x1a\x83\x9c\xed\xc6\xc4\x94\x3c\xe2\xae\x02\x3c\x8f\xce\x54\x41\xa5\x8f\xb9\xa0\xf8\x56\xed\x5d\x89\xca\x53\xf5\x40\xe5\x07\xfb\x0a\x80\xc6\xac\x13\xee\xc5\x4a\x18\x2c\xd8\x54\x09\xf0\xec\xaa\xf8\x4b\x0f\x53\x57\x88\x2f\x0b\x5f\xe7\x23\xe2\xcb\x72\xb1\x89\x3f\xbd\x0b\xa1\xe3\x4f\x5f\x09\xbc\x4a\xcb\x69\xe9\xc7\x53\x6b\x4b\xd1\xc5\xd4\x54\x19\xc5\x4d\x9d\x14\x4d\xc3\x67\x4b\x69\x63\x6a\x6a\x4e\x5d\x07\x70\xe8\x59\x76\xaf\x60\xea\xe4\x67\x67\x5f\xf5\x9c\x5a\x97\x4a\x97\xd6\x2e\x52\x26\x16\x26\x9b\x45\xb5\xca\x76\xb2\x59\x34\x1e\x6c\x0b\x9e\xec\x16\x1d\x1c\x34\x32\xa7\x96\x8e\xe8\xe1\xaa\x9b\x0e\xc8\xa3\xc5\xab\xb8\x51\xd8\xd8\xd9\x59\xb4\x32\xd9\xd8\xd9\x99\x04\x98\x53\x04\xa5\xeb\x0b\xaa\x5e\x44\x02\xce\x56\x0d\x3e\xda\xa8\x29\x38\xc6\x46\xcd\xc6\xed\x45\x93\xc5\xd7\xa3\x2a\x3f\xf8\x88\x6b\x85\xe6\xd4\x4d\x62\xa0\x91\x09\x3e\xe2\x2c\xba\xc9\x41\x33\xa3\xa2\x59\xb6\x63\xc6\x83\x1d\x77\x73\xea\x8e\x15\x7d\xb2\x6e\x00\x93\xb8\xb4\xd4\xb9\x2b\xcc\x17\x77\xe5\x51\x03\xa3\xa5\x4e\x1d\xfc\xa8\x92\x39\xf3\xb3\xa9\x64\xad\x07\x46\xd6\x9a\x10\xa8\x28\x99\x09\x81\x81\xbb\x7e\xda\x7c\x00\x30\xfd\xcd\x40\x1c\x8e\x8a\x9b\xaf\xce\x93\xa1\xda\x6f\xd6\xdc\x65\x21\x7c\x7f\x57\xfc\xcd\x57\x56\x4c\x4e\x61\xed\xb4\x14\xd1\x7d\xa5\x29\xb9\x35\x5f\x34\xc5\x2a\x80\xf9\xca\x31\x49\x77\x7d\xe5\x9c\xa2\xe7\x69\x3e\x80\x39\xa0\xf9\x0a\xbe\xb2\x74\x72\xbe\x72\x34\x62\xdd\xde\x7a\x29\x41\x4f\xe8\x0c\x2e\xea\xa4\xc1\x5a\x99\x9a\x0e\x39\x52\xbc\x1e\x00\x45\x69\xf9\x39\x7b\xa5\xe6\xab\xc1\x57\xd5\xeb\x74\x7a\x16\xf0\x4d\x1d\x1a\x2f\x3f\x13\x87\xc6\xaf\x04\xea\xc1\x39\x8e\xc3\x12\x64\xa3\xf5\xa6\x5b\x99\x28\x0f\x0f\x82\x9c\x51\xaf\xd6\x32\xeb\xeb\x74\x3c\x95\x1e\xd0\x1e\x6c\xfc\x4f\x1c\xf9\xd3\x39\x05\x61\xbe\xea\x86\x72\xbd\xb1\xaa\xbd\xb1\x75\xe9\x3d\x34\xce\xb0\x34\xec\x3d\x50\x5d\x88\xbf\xe7\x87\x7b\x8f\xac\xeb\x5b\x1a\x61\xe9\x75\x75\xd8\xf7\x50\x67\x0c\x0a\x73\xda\xd5\x92\xdb\x7b\xa8\x63\x66\x15\xa9\xcb\x52\x3a\x61\xc6\xcb\x4a\xe9\x3a\xd9\x7d\xc9\xfc\xd5\x31\x63\xdc\xec\xf3\xea\x5c\xa1\xaa\x67\x6d\x31\x74\x5c\x61\xa1\xae\xd5\x3c\x5e\x26\x38\x06\x27\xf2\xbc\x9c\x32\x36\x70\xf9\xbd\x07\xae\xc8\xc0\xac\xda\x7b\x34\xdd\x20\x48\x01\x3a\x85\x2e\xf2\x05\x20\x30\x0e\xe4\x79\x99\xeb\x88\x81\x15\x44\xef\xc1\xf4\x0f\xa7\x41\xbd\x87\x90\x56\xe2\xcb\xb4\x97\x5e\x5f\x2c\x65\x27\x6a\x04\x12\x38\xb2\xc2\x3a\xca\x41\x79\x04\x84\x78\x27\xb3\xc5\x5d\xef\x59\xf6\x3a\x06\x16\x99\xbd\xcc\x87\x34\xb6\xad\xbc\x87\x8e\xb0\x5b\x4d\xf1\xd5\x11\x41\x6c\x85\x7d\x83\x66\xd5\x51\x96\x1d\x7e\xbf\xfa\xdc\x1b\xb4\xb9\x7d\x75\xa7\x37\xac\x31\x2b\x06\x50\xc1\xcb\x4e\x80\xc6\xe1\x9c\xaf\x4e\xc2\xc7\x3c\xbc\x01\x37\x3c\xa7\x8f\xbd\x41\x03\x61\xe5\x61\xed\x04\xa6\x42\xda\x5e\x19\x54\x80\x89\x65\xf5\xea\x37\xd8\x45\x2b\x4a\x90\x83\xba\x12\x66\xc3\x2f\x0a\x0f\x88\x8b\xd3\x26\xdf\xd0\xf5\x99\x9d\xd2\x74\x14\xd7\x50\x38\x29\x81\x37\x69\x41\x67\xd7\x13\x45\x09\xd4\x49\x57\x2d\x04\x85\x1b\x09\x43\xb9\x74\x7f\x67\x24\xcc\xf6\x59\xf4\xa9\x49\x16\x16\x81\xbf\x9a\x58\x61\xd7\xf2\x1b\xb5\x8c\x7b\x75\xc5\x37\xae\x51\x3e\x06\x3a\xe9\x1b\x33\x93\x5a\x41\x09\x6c\xb7\x45\x3f\x9a\x00\xc1\xc5\xf3\x7e\x13\x20\x8a\x67\xdb\xf7\x62\xe8\x2f\xdb\x1c\x06\xec\xf6\x8d\x45\x1b\x83\x28\x4c\xe7\x80\x1c\x3c\xab\x56\x08\xe0\x7d\x63\xd3\x4b\x15\x66\x77\xf2\x32\x77\x2f\xdb\x19\xa2\xee\xda\x7a\x63\x13\x13\xd5\xd3\x94\x10\x29\x59\x3b\x55\x2d\x1e\x71\x27\xbe\x00\xe4\xc4\x5e\xeb\x37\x76\x7d\x5a\xa5\x1a\xda\x77\x47\x93\x8c\xb8\x23\x39\xf7\xed\xd5\x4c\x07\x67\x80\xbd\x51\x8b\xdd\x54\x23\xf0\x3e\x27\x1a\xbc\x9a\xb8\xe0\x00\xfe\x97\x89\x8b\x18\x80\xd7\x2f\xbb\x27\x06\xa7\x0f\xbc\xd1\xac\x8c\x1e\x7e\x94\xa9\xf3\x43\x67\x3f\xaf\x4c\xda\xb5\x8a\xf7\xfb\xe5\xfe\xc6\xc1\x61\x0d\xaf\xee\x6f\x64\xa7\xda\xab\x1d\x16\x38\x9c\x5e\x76\x58\xc4\xc0\x79\x8e\xaf\x76\x58\x00\xe0\xde\x24\xed\xd0\xab\xb4\xc3\x82\x3d\x72\x6f\xd2\x2e\x17\x64\x94\x74\x14\x16\xd5\x4e\x12\x6a\xb4\x1f\x20\xbb\xdf\xdd\xce\xf0\x26\x9d\x25\x54\x33\x61\x41\xc0\x46\x98\x3d\x89\x08\x47\x93\x09\xb8\x2a\x5f\x6d\x22\xc0\x57\xff\xb2\x57\x60\x70\xa6\xeb\x8b\x8b\x7d\x70\xcc\xea\x9b\x35\x4e\x21\xf0\xac\x2e\xca\x62\x85\x37\xab\x8b\x5a\xa6\x53\x09\xbc\x09\xb0\xce\x31\x8d\x2f\x9e\xf4\xa8\xeb\x8a\x5f\x1d\x1a\xcf\xf5\x91\xaf\xbc\xe7\xdc\x73\xf2\xb2\x47\x37\x06\x76\x53\xbf\x59\x33\xa4\x74\x4c\x79\xc9\x71\xf8\xbd\xf2\x80\xb3\x14\xe1\x95\x07\x3c\xe0\x93\x7d\xb3\x76\x6b\x2e\xfa\xf8\x66\xdb\x57\xc6\xc3\x43\x0e\x22\x1e\xd6\xc6\xd5\x45\x2b\xdf\xa2\xe5\x41\x94\x5c\xd4\x9b\xd8\xd3\xfc\xe2\x87\x1e\x7a\x51\xd1\x99\x3e\x0b\x2f\xbd\x5c\x50\x18\x43\xd2\x13\x45\x67\x59\x35\xc2\x5a\xc6\xa1\x30\xf0\x9e\xb6\x8b\xc7\x78\x80\xfe\x5e\x1d\xc6\xc5\xdd\x20\x6f\xd1\x92\x20\xcc\xaf\x9c\xbe\xb2\x88\x85\x8d\x42\xac\xc4\x78\xcb\xe2\x24\x31\xb0\x95\xe1\x2d\xf4\x45\x56\x82\xbe\x5a\x8c\x5e\x69\xec\xac\x1b\x1f\xf8\x47\x5e\x96\x8d\x0f\xf6\x8f\xbe\x2c\xed\x1e\xf0\x90\x97\xa5\xdd\x31\xb0\x0b\xe8\x95\x3f\x97\x53\xd9\x5e\x96\x76\x0f\x68\xf5\x5b\x24\x23\x8c\x1a\xee\xdb\x18\xd8\x55\xfc\xca\x7f\x0b\x5b\x7b\xf1\xd9\x0e\x56\x8d\xbd\xb8\x6c\x57\xa6\xc1\x0f\xaa\x37\x22\x61\x55\x49\xf1\x54\x69\xf1\xad\x97\x95\xda\x31\x80\x67\x5e\x96\x6a\x0f\x36\xf5\xbf\x95\x1e\x01\xaf\x7a\x6b\x96\xef\xbd\x13\x56\xbd\x69\xac\x55\xd2\xc6\x3c\xc8\x99\xcb\x72\xb2\xb7\x4a\xaa\xb4\xaa\x5a\x31\x52\x1c\x8b\xfb\xb2\x97\x78\x70\x5c\xee\x5b\x19\x5b\xd9\xfa\xfd\x56\xd6\xfa\xb0\x68\xea\x65\x5d\xb3\x96\x62\xbc\x55\x7d\x8e\xce\x5e\xd5\xe7\x38\x7f\xee\x95\x97\x97\x29\xdb\x97\xf5\xcb\xdd\xe2\x75\xaa\x2b\x92\xac\x3a\xd3\x0a\xcb\x8f\xa3\x35\x06\x26\x8e\xdf\x8a\x2b\x1d\x5f\xca\x5b\x75\xef\x29\xa8\xa1\xea\x9e\x40\xc6\xe8\xaa\x05\x2b\x40\x11\x2e\x93\x1c\xac\xfb\x78\xe5\x8d\x85\x70\xbf\x15\xa7\x84\xec\x3b\xeb\x9a\x63\xc8\x2a\x0d\x6f\x21\x6b\x3d\x5e\x5c\xb6\x2b\x41\xb9\xd4\x02\x14\x96\x24\x69\x26\x75\xa8\xbd\x51\x25\x28\x4c\x60\xc6\xf7\x95\x37\x97\x03\x02\xdf\xc6\x1c\x1d\xfc\xec\x95\x07\x97\x55\x23\x2f\x37\x3f\x0e\x8d\xc6\x4d\x77\xda\x30\x4a\x37\x79\x1c\x68\x0c\xdc\x02\x19\x03\x13\xa6\x6f\x13\xff\x64\xa4\xc5\x51\xbb\x12\x78\xba\xa8\xe2\x7a\x9a\xf3\xeb\x92\x32\x51\xef\xf6\x7b\x2b\xe1\xde\x26\xcd\x0f\x1e\x92\xe6\x71\x69\xbe\x4d\x07\x69\xd1\xf5\x1b\xae\x7b\xd6\xa9\xbc\x4d\x7d\x08\xfb\x2f\xef\xae\x00\x64\x93\x0d\x61\xc2\xeb\xe5\xf2\xc8\xc1\x26\xf7\xb7\x83\x11\x71\x13\xbf\x38\x56\x07\x5b\x1b\x5f\x9d\xf7\x0f\x9c\x7e\xbb\x7c\x33\x98\x73\x1d\x11\x87\x83\xfa\x65\x77\x79\x0c\xf8\xc6\x5f\x56\x4a\x0f\x0e\x61\x78\xbb\x36\x12\x22\x03\xb9\x49\x39\x20\xeb\xed\x70\xeb\x80\x7f\xf7\xd5\x7e\x74\x76\x76\xbe\xdc\x1c\xd0\xed\x45\x5a\x00\x49\xd3\xea\x02\x34\x9c\xdc\xfb\x76\x00\x0d\x87\x84\xbf\x1d\x54\x1f\xd8\x27\xf3\xca\x99\xca\x99\x77\x2f\xce\xd4\xa8\x7b\xea\x5e\x5d\x35\xc0\xb5\xa5\x6f\xd7\x66\x27\xd5\x4f\xc0\x85\x9d\x35\x6f\xb7\x1b\x9f\x79\x2d\xcd\x97\x99\x8f\x57\x4e\x53\x2b\x81\x89\xff\x43\x45\xc3\xae\xd8\xaf\xf0\xea\x9e\x02\x0e\x10\x7e\xb5\x6e\x99\xfb\x78\x5e\xad\x5b\xd6\xfb\xb5\xfd\x5d\x15\x62\x55\xf1\xe0\x54\xdb\x77\xd8\xb5\x7b\xe4\xd7\x39\x7a\x34\x14\x5c\xa4\x03\x87\xcf\xab\x35\xc2\x4c\x92\xbf\xb8\x2f\x63\x80\x12\xbf\x43\x53\x6d\x18\x5a\x2d\x1e\xc6\xf9\xf3\xb2\x46\xb8\x73\x59\xd0\xab\xbb\x03\xb8\xc0\xe5\x1d\x42\x1b\xec\xe0\x7d\x87\x76\x05\x33\xda\xca\x73\xc8\x89\x1c\x2f\x27\xe8\x0e\xb6\x14\xbf\xac\xb6\x8d\x81\x7d\xdb\xaf\xdc\x85\x2c\xa4\x7b\xb5\x16\x96\x0b\xaf\xdf\x53\x0d\x06\xe4\x75\xea\xee\x47\x40\x12\x0e\x3c\x1d\x4d\xf0\x9e\xe6\x9c\x51\x98\xcf\x67\x74\x3d\xf5\xc9\x58\x41\xee\x13\x8c\x81\x73\x8c\xdf\x93\x35\x72\x5c\x23\xfa\x72\x3a\xdf\x4a\xe0\x69\xb1\x7a\x85\x71\xb8\x73\xfe\xc9\xab\xa3\xfa\x58\x79\xf9\x9e\xb2\x6a\x1a\xca\x38\x8f\x7f\xa8\xf1\x68\x3f\x3f\xcb\x9f\xdf\xb3\xab\x79\xf2\x09\xcc\x6e\xe0\x08\x7b\x75\x52\x5f\xd5\x27\x68\x0b\x36\x82\xd4\x39\xfd\xcc\x83\xbe\xa7\x64\x94\x14\xc6\x65\x6b\x79\x74\x94\xea\x2a\x4b\xd7\x1d\x72\x96\xee\x7b\xc9\x8f\x81\x81\xd3\x5e\x7b\x0d\x6a\x97\x1d\xbd\x1a\x09\xd3\xca\x65\x7d\x2e\x6c\x46\xb5\x30\xae\x02\xac\xd5\x25\x74\x50\x15\xd6\xa9\x0b\xe4\xd1\x9e\x52\x9a\xc8\xa5\x5e\x21\xb8\xc3\x86\xfc\xce\xfa\x91\xf7\x02\x90\xb2\x2a\xf2\xbd\xf0\x4c\x07\x56\xf0\xbd\x97\xf9\x19\x1a\xe1\xfb\xbb\x8b\xfe\xbd\x98\x01\x63\x49\xdd\x7b\x31\x8b\x19\xd8\x90\xfc\xea\x26\x44\x76\x80\xbd\xda\x85\xcf\xe9\x53\xaf\x8e\xff\x63\x5f\xe5\xcb\x29\x7f\xad\xb7\xff\x3b\x41\x4d\xed\xbf\xb6\x6e\xb7\x96\x84\x81\x59\x6e\xdb\x3e\xbc\x3e\xef\x16\x2a\xe0\x74\xc7\x57\x27\xf5\xb1\x5b\xe1\xbd\x35\x7e\x21\x40\xce\xce\x1b\x2c\x8d\x7c\x6f\x8d\x40\x34\x9f\x47\x44\x8c\x51\xd7\xd6\xea\xd2\x00\xb4\x0e\x97\x99\x98\x17\x87\xa1\x2e\xad\x7f\x1f\x09\x5f\x64\xf5\x31\x57\xa5\x5e\x84\x08\x90\xa5\x56\xdb\x72\x49\xcd\xab\x45\xb5\x6a\x92\x3a\x40\x8e\x45\xe2\xaf\xfc\x83\x82\xdb\x8f\xfa\x2a\xeb\xd2\x5e\x8e\xf4\x1f\x1c\x86\xf4\x3e\x1a\xa5\x31\xb7\x2c\xb6\x1d\xac\x29\x7c\x39\x40\x6e\x3d\x40\x09\x4d\xa5\x0d\xc2\x10\x54\xe4\xa2\x23\xfd\x39\xa3\xeb\xe5\x04\xb9\x18\x65\x92\xb8\x08\x51\x97\xee\xbf\x5a\x55\xcb\x3a\xdf\xd7\x2e\x45\x04\x76\xe9\x4c\x01\x8e\xf4\x7f\xe5\x5c\x64\x0d\xe1\x2b\xd7\x1f\xb3\xc6\x2f\x9e\xbf\x50\x99\x29\x7b\x1f\x9d\x4f\x49\x27\x7e\x34\x91\xad\xae\x84\xeb\x2f\x2f\x53\xf2\xff\x34\x7a\xfd\xe5\xfc\xd3\xdf\xcf\x3f\xfc\x16\x8f\x5f\x3f\xbf\xb1\x51\x9d\x5b\xf7\xfb\xfb\xa4\xfe\xeb\xe7\x0b\x72\x01\xbf\x2e\x8b\x5f\x11\x33\x1d\x5f\x9a\x5d\xce\xcf\x3a\xf9\x1e\xd2\x1a\x8a\x2d\x6d\x05\xb9\xda\x5f\xd7\xca\xae\x88\xe8\x69\xd1\x9e\xe3\xe2\xe0\x15\x91\x3c\x2d\x59\x5a\xf9\xd2\xb2\xa7\x65\x4b\xab\x5f\x5a\xf1\xb4\x62\x69\xed\x4b\xab\x9e\x56\x2d\xad\x7f\x69\xcd\xd3\x9a\xa5\x8d\x2f\xad\x7b\x5a\x57\x1a\x2b\x7f\x88\x18\x9e\x36\x2c\x2d\x58\xda\x59\x52\xb2\xb4\xb3\xa4\xc2\xd9\xe7\xdc\xcd\xa8\x88\xee\x69\x43\x69\xdd\xd2\x7a\xaa\x5f\x5a\x5f\xd9\x62\x64\xdb\xda\x8a\xb8\x72\xca\x96\x76\x7d\xdf\xce\xfd\x95\x2b\xc2\xbf\xfd\xfa\xbe\x3d\x98\xac\x2f\xff\xf6\xab\x9a\x1e\xa2\xa5\xcd\x77\xa7\xcd\xd7\xbe\xe1\xd3\xdf\x7b\xec\xb4\xf7\xb0\xb4\x4f\x7f\xaf\xeb\xf6\x0d\x96\x56\xbe\x34\xd7\xed\x6b\xba\x85\x6b\x13\xe1\xba\x7d\x4d\xb7\xcc\xef\x13\xe1\xba\x7d\xed\xfb\x70\x58\x10\xe1\xdf\xf7\xda\xf7\xe9\x76\xdc\x15\xe1\xdf\xf7\x9a\x6e\x01\x43\x44\xb8\x6e\x5f\xd3\x6d\xfd\xe4\xf2\xba\x6e\x5f\xd3\x6d\xfd\xe4\xf2\xba\x6e\x5f\xd3\x6d\xdd\x72\x39\x3d\xed\xb4\xb4\x2d\x97\xcb\xd3\x2e\x4b\xdb\x72\xb9\x3d\xed\xb6\xb4\x2d\x97\xc7\xd3\xac\x8f\xd5\x2d\x97\xe9\x69\xd6\xc7\x74\x21\x6c\xc8\x8a\x67\x39\xf1\xa1\x1b\xc6\x71\x1f\xad\x3f\xab\xff\x6a\x49\x5c\xc7\x5d\xb4\xfe\x14\xe2\xb8\x24\x13\x5f\xcf\x6f\x3d\x4c\x8e\xe2\x0f\xaa\xff\x9c\xc4\xbd\xe4\xc3\x27\xd0\xc3\xab\x7c\x5c\x6b\x70\x70\xe8\xe0\xea\xbb\x5f\xdf\x56\x50\x75\x1a\x5f\x5a\xf4\x34\xd3\x3f\x8e\x0a\x22\x92\xa7\x99\xfe\xd9\x59\x49\x44\xf6\x34\xd3\xbf\x6e\xfd\x5f\x11\xc5\xd3\x4c\xff\xba\xae\x74\x45\x54\x4f\x33\xfd\x33\x6b\x45\x44\xf3\x34\xd3\x7f\xdb\xdf\xd0\x3d\xcd\xf4\x0f\xe1\x26\x62\x78\x9a\xe9\x5f\x57\xf0\xaf\x88\xd3\xd3\x4c\xff\xba\xdb\x7f\x45\x5c\x9e\x66\xfa\x6f\x5b\x2e\xb7\xa7\x99\xfe\xfb\x96\xcb\xe3\x69\xa6\xff\xbe\xe5\x32\x3d\xcd\xf4\xdf\xb7\x5c\x5e\x4f\xb3\xfe\xdb\x3f\xb9\x8c\x63\xa7\x0d\xeb\xbf\xfd\x93\xcb\x70\xfd\x0d\xd3\x5f\xff\xe4\x32\x5c\x7f\xc3\xf4\xd7\x3f\xb9\x0c\xd7\xdf\x30\xfd\xf5\x4f\x2e\xc3\xf5\x37\x4c\x7f\xfd\x93\xcb\x70\xfd\x0d\xd3\x5f\xff\xe4\x32\x5c\x7f\xc3\xf4\x37\x3e\xb9\x0c\xd7\xdf\x30\xfd\x8d\x4f\x2e\xc3\xf5\x37\x4c\x7f\xe3\x93\xcb\x70\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xf8\xe4\x72\xba\xfe\x4e\xe9\x2f\x1d\x9f\x5c\x4e\xd7\xdf\x19\x2c\xed\x93\xcb\xe9\xfa\x3b\xa3\xa5\x7d\x72\x39\x5d\x7f\x67\xb2\xb4\x4f\x2e\xa7\xeb\xef\xcc\x96\xf6\xc9\xe5\x74\xfd\xd9\x98\x95\x8e\x4f\x2e\xa7\xeb\xef\xac\x96\xf6\xc9\xe5\x74\xfd\x9d\xcd\xd2\x3e\xb9\x9c\xae\xbf\xb3\x5b\xda\x27\x97\xd3\xf5\x77\x0e\x4b\xdb\x72\x71\xfd\x9d\xd2\x5f\x0a\x5b\x2e\xae\xbf\xf3\xb2\xb4\x2d\x17\xd7\xdf\x79\x5b\xda\x96\x8b\xeb\xef\x7c\x2c\x6d\xcb\xc5\xf5\x77\x4e\x4b\xdb\x72\x71\xfd\x9d\xaf\xa5\x7d\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x86\x0f\x52\xfc\xe4\x72\xb9\xfe\x0c\x1f\xa4\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\x3d\x76\x5c\xae\xbf\xcb\xf4\x17\xb7\x5c\x5c\x7f\x97\xe9\x2f\x6e\xb9\xb8\xfe\x2e\xd3\x5f\xec\xdf\xae\x1d\x61\xd7\xff\x16\x9c\x25\xbf\xab\xf7\x32\xf5\xc6\x2d\x36\x57\xef\x65\xea\x4d\x5b\x6c\xae\xde\xcb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\xbe\xe6\x74\xbb\x7a\x6f\x53\x6f\xfa\xe4\x72\xbb\x7a\x6f\x53\x6f\xfe\xe4\x72\xbb\x7a\x6f\x53\x6f\xde\x72\x71\xf5\xde\xa6\xde\xbc\xe5\xe2\xea\xbd\x4d\xbd\x79\xcb\xc5\xd5\x7b\x9b\x7a\xf3\x96\x8b\xeb\xef\x36\xfd\xe5\x2d\x17\xd7\xdf\x6d\xfa\xcb\x5b\x2e\xae\xbf\xdb\xf4\x97\x3f\xb9\x3c\xae\xbf\xc7\xf4\x97\x3f\xb9\x3c\xae\xbf\xc7\xf4\x97\x3f\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\xb6\x5c\x5c\x7f\x8f\xe9\xaf\x6c\xb9\xb8\xfe\x1e\xd3\x5f\xd9\x72\x71\xfd\x3d\xa6\xbf\xba\xe5\xe2\xfa\x7b\x4c\x7f\x75\xcb\xc5\xf5\xf7\x98\xfe\xea\x96\x8b\xeb\xef\x31\xfd\xd5\x4f\x2e\xd3\xf5\x37\x4d\x7f\xf5\x93\xcb\x74\xfd\x4d\xd3\x5f\xfd\xe4\x32\x5d\x7f\xd3\xf4\x57\x3f\xb9\x4c\xd7\xdf\x34\xfd\xd5\x4f\x2e\xd3\xf5\x37\x4d\x7f\xf5\x93\xcb\x74\xfd\x4d\xd3\xdf\x86\xc3\xd3\xf5\x37\x4d\x7f\x1b\x0e\x4f\xd7\xdf\x34\xfd\x6d\x38\x3c\x5d\x7f\xd3\xf4\xb7\xe1\xf0\x74\xfd\x4d\xd3\xdf\x86\xc3\xd3\xf5\x37\x4d\x7f\x1b\x0e\x4f\xd7\xdf\x34\xfd\x6d\x38\x3c\x5d\x7f\xd3\xf4\xb7\xe1\xf0\x74\xfd\x4d\xd3\xdf\x86\xc3\xd3\xf5\x37\x4d\x7f\x1b\x0e\x4f\xd7\x9f\xd1\xcb\xb4\xe1\xf0\xeb\xfa\x33\x7a\x99\x36\x1c\x7e\x5d\x7f\x46\x2f\xd3\x86\xc3\xaf\xeb\xcf\xe8\x65\xda\x70\xf8\x75\xfd\x19\xbd\x4c\x1b\x0e\xbf\xae\x3f\xa3\x97\x69\xc3\xe1\xd7\xf5\x67\xf4\x32\x6d\x38\xfc\xba\xfe\x8c\x5e\xa6\x0d\x87\x5f\xd7\x9f\xd1\xcb\xb4\xe1\xf0\xeb\xfa\x33\x7a\x99\x36\x1c\x7e\x5d\x7f\x46\x2f\xd3\x86\xc3\xaf\xeb\xcf\xe8\x65\xda\x70\xf8\x75\xfd\x19\xbd\x4c\x1b\x0e\xbf\xae\x3f\xa3\x97\x69\xc3\xe1\xd7\xf5\x67\xf4\x32\x6d\x38\xfc\xba\xfe\x8c\x5e\xa6\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfa\xe0\x70\xe8\xd1\xd3\x4c\x0f\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xf4\xc1\xe1\xe0\x34\x2f\x18\xcd\x4b\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xf4\xc1\xe1\xe0\x34\x2f\x18\xcd\xcb\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xfc\xc1\xe1\xe0\x34\x2f\x18\xcd\xcb\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xfc\xc1\xe1\xe0\x34\x2f\x18\xcd\xcb\xc7\x96\xcb\xe5\x69\x97\xa5\x6d\xb9\xdc\x9e\x76\x5b\xda\x96\xcb\xe3\x69\x8f\xa5\x6d\xb9\x4c\x4f\x9b\x96\xb6\xe5\xf2\x7a\xda\x6b\x69\x9f\x5c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\xc3\x96\x8b\xeb\xcf\x68\x5e\x8e\x5b\x2e\xae\x3f\xa3\x79\x39\x6e\xb9\xb8\xfe\x8c\xe6\xe5\xb8\xe5\xe2\xfa\x33\x9a\x97\xe3\x96\x8b\xeb\xcf\x68\x5e\x8e\x5b\x2e\xae\x3f\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\xff\x4a\x38\x1c\x9c\x05\x06\x63\x81\xf9\x83\xc3\xc1\x59\x60\x30\x16\x98\x3f\x38\x1c\x9c\x05\x06\x63\x81\xf9\x83\xc3\xc1\x59\x60\x30\x16\x98\x3f\x38\x1c\x9c\x05\x06\x63\x81\xf9\x83\xc3\xc1\x59\x60\x30\x16\x98\x3f\x38\x1c\x9c\x05\x06\x63\x81\x39\x6d\xb1\xb9\x7a\x8d\x05\xe6\xb4\xc5\xe6\xea\x35\x16\x98\xd3\x16\x9b\xab\xd7\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\xb4\xe5\xe2\xea\x35\x16\x98\xf3\x96\x8b\xab\xd7\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\x2e\x5b\x2e\xae\x3f\x63\x81\xb9\x6c\xb9\xb8\xfe\x8c\x05\xe6\xb2\xe5\xe2\xfa\x33\x16\x98\xcb\x96\x8b\xeb\xcf\x68\x5e\x2e\x5b\x2e\xae\x3f\xa3\x79\xb9\x6c\xb9\xb8\xfe\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\xba\xe5\xe2\xfa\x33\x9a\x97\xeb\x96\x8b\xeb\xcf\x68\x5e\xae\x5b\x2e\xae\x3f\xa3\x79\xb9\x6d\xb9\xb8\xfe\x8c\xe6\xe5\xb6\xe5\xe2\xfa\x33\x9a\x97\xdb\x96\x8b\xeb\xcf\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xee\x5b\x2e\xae\x3f\xa3\x79\xb9\x6f\xb9\xb8\xfe\x8c\xe6\xe5\xbe\xe5\xe2\xfa\x33\x9a\x97\xfb\x96\x8b\xeb\xcf\x68\x5e\xee\x5b\x2e\xae\x3f\xa3\x79\xb9\x6f\xb9\xb8\xfe\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xde\x70\xd8\x69\x5e\x30\x9a\x97\x37\x1c\x76\x9a\x17\x8c\xe6\xe5\x0d\x87\x9d\xe6\x05\xa3\x79\x79\xc3\x61\xa7\x79\xc1\x68\x5e\xde\x70\xd8\x69\x5e\x30\x9a\x97\x37\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\xbf\x12\x0e\x47\x67\x81\xd1\x58\x60\xf9\xe0\x70\x74\x16\x18\x8d\x05\x96\xb4\xc5\x76\x79\x9a\xa9\x29\x6d\xb1\xdd\x9e\x66\x6a\x4a\x5b\x6c\x8f\xa7\x99\x9a\xd2\x16\xdb\xf4\x34\x53\x53\xda\x62\x7b\x3d\xcd\xba\xd9\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\x4b\xde\x72\x71\xfd\x19\x0b\x2c\x79\xcb\xc5\xf5\x67\x2c\xb0\xe4\x2d\x17\xd7\x9f\xb1\xc0\x92\xb7\x5c\x5c\x7f\xc6\x02\x4b\xde\x72\x71\xfd\x19\x0b\x2c\x65\xcb\xc5\xf5\x67\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\xd4\x2d\x17\xd7\x9f\xd1\xbc\x52\xb7\x5c\x5c\x7f\x46\xf3\x4a\xdd\x72\x71\xfd\x19\xcd\x2b\x75\xcb\xc5\xf5\x67\x34\xaf\xd4\x2d\x17\xd7\x9f\xd1\xbc\x52\xb7\x5c\x5c\x7f\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\x4a\xdb\x72\x71\xfd\x19\xcd\x2b\x6d\xcb\xc5\xf5\x67\x34\xaf\xb4\x2d\x17\xd7\x9f\xd1\xbc\xd2\xb7\x5c\x5c\x7f\x46\xf3\x4a\xdf\x72\x71\xfd\x19\xcd\x2b\x7d\xcb\xc5\xf5\x67\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x8c\x2d\x17\xd7\x9f\xd1\xbc\x32\xb6\x5c\x5c\x7f\x46\xf3\xca\xd8\x72\x71\xfd\x19\xcd\x2b\x63\xcb\xc5\xf5\x67\x34\xaf\x8c\x2d\x17\xd7\x9f\xd1\xbc\x32\xb6\x5c\x5c\x7f\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\xb1\xe5\xe2\xfa\x33\x9a\x57\xc3\x96\x8b\xeb\xcf\x68\x5e\x0d\x5b\x2e\xae\x3f\xa3\x79\x35\x6c\xb9\xb8\xfe\x8c\xe6\xd5\xb0\xe5\xe2\xfa\x33\x9a\x57\xc3\x96\x8b\xeb\xcf\x68\x5e\xfd\xe0\x70\x74\x9a\x17\x8d\xe6\xd5\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xfd\xe0\x70\x74\x9a\x17\x8d\xe6\xd5\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xfd\xe0\x70\x74\x9a\x17\x8d\xe6\xd5\x0d\x87\x9d\xe6\x45\xa3\x79\x75\xc3\x61\xa7\x79\xd1\x68\x5e\xdd\x70\xd8\x69\x5e\x34\x9a\x57\x37\x1c\x76\x9a\x17\x8d\xe6\xd5\x0d\x87\x9d\xe6\x45\xa3\x79\x75\xc3\x61\xa7\x79\xd1\x68\x5e\xdd\x70\xd8\x69\x5e\x34\x9a\x57\x37\x1c\x76\x9a\x17\x8d\xe6\xd5\xbf\x16\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x34\x2f\x19\xcd\xab\x1f\x1c\x4e\x4e\xf3\x92\xd1\xbc\x5a\xb6\x5c\x2e\x4f\x33\x3d\x94\x2d\x97\xdb\xd3\x4c\x0f\x65\xcb\xe5\xf1\x34\xd3\x43\xd9\x72\x99\x9e\x66\x7a\xa8\x5b\x2e\xaf\xa7\x59\x3f\xfa\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\x6d\x5b\x2e\xae\x3f\xa3\x79\xb5\x6d\xb9\xb8\xfe\x8c\xe6\xd5\xb6\xe5\xe2\xfa\x33\x9a\x57\xdb\x96\x8b\xeb\xcf\x68\x5e\x6d\x5b\x2e\xae\x3f\xa3\x79\xb5\x6d\xb9\xb8\xfe\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\xbe\xe5\xe2\xfa\x33\x9a\x57\xfb\x96\x8b\xeb\xcf\x68\x5e\xed\x5b\x2e\xae\x3f\xa3\x79\x75\x6c\xb9\xb8\xfe\x8c\xe6\xd5\xb1\xe5\xe2\xfa\x33\x9a\x57\xc7\x96\x8b\xeb\xcf\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xb5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfb\xe0\x70\x72\x9a\x97\x8c\xe6\xb5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\x3b\xb6\x5c\x5c\x7f\x46\xf3\xda\xb1\xe5\xe2\xfa\x33\x9a\xd7\x8e\x2d\x17\xd7\x9f\xd1\xbc\x76\x6c\xb9\xb8\xfe\x8c\xe6\xb5\x63\xcb\xc5\xf5\x67\x34\xaf\x1d\x5b\x2e\xae\x3f\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\x2d\x6c\xb9\xb8\xfe\x8c\xe6\xb5\xb8\xe5\xe2\xfa\x33\x9a\xd7\xe2\x96\x8b\xeb\xcf\x68\x5e\x8b\x5b\x2e\xae\x3f\xa3\x79\x2d\x6e\xb9\xb8\xfe\x8c\xe6\xb5\xb8\xe5\xe2\xfa\x33\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\xaf\x84\xc3\xc9\x59\x60\x32\x16\xd8\x3e\x38\x9c\x9c\x05\x26\x63\x81\xed\x83\xc3\xc9\x59\x60\x32\x16\xd8\x3e\x38\x9c\x9c\x05\x26\x63\x81\xed\x83\xc3\xc9\x59\x60\x32\x16\xd8\x3e\x38\x9c\x9c\x05\x26\x63\x81\xed\x83\xc3\xc9\x59\x60\x32\x16\xd8\xd2\x16\x9b\xab\xd7\x58\x60\x4b\x5b\x6c\xae\x5e\x63\x81\x2d\x6d\xb1\xb9\x7a\x8d\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\x4b\x5b\x2e\xae\x5e\x63\x81\x2d\x6f\xb9\xb8\x7a\x8d\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\xfb\xe0\x70\x72\x16\x98\x8c\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\xfb\xe0\x70\x72\x16\x98\x8c\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\xdb\x70\xd8\x59\x60\x32\x16\xd8\x36\x1c\x76\x16\x98\x8c\x05\xb6\x0d\x87\x9d\x05\x26\x63\x81\x6d\xc3\x61\x67\x81\xc9\x58\x60\xdb\x70\xd8\x59\x60\x32\x16\xd8\x36\x1c\x76\x16\x98\x8c\x05\xb6\x0d\x87\x9d\x05\x26\x63\x81\x6d\xc3\x61\x67\x81\xc9\x58\x60\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\xbe\xe5\x72\x79\x9a\xe9\xa1\x6f\xb9\xdc\x9e\x66\x7a\xe8\x5b\x2e\x8f\xa7\x99\x1e\xfa\x96\xcb\xf4\x34\xd3\x43\xdf\x72\x79\x3d\xcd\xfa\xd1\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\xd8\x72\x71\xfd\x19\xcd\x6b\x63\xcb\xc5\xf5\x67\x34\xaf\x8d\x2d\x17\xd7\x9f\xd1\xbc\x7e\x6c\xb9\xb8\xfe\x8c\xe6\xf5\x63\xcb\xc5\xf5\x67\x34\xaf\x1f\x5b\x2e\xae\x3f\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\x3d\x6c\xb9\xb8\xfe\x8c\xe6\xf5\xb0\xe5\xe2\xfa\x33\x9a\xd7\xc3\x96\x8b\xeb\xcf\x68\x5e\x0f\x5b\x2e\xae\x3f\xa3\x79\x3d\x6c\xb9\xb8\xfe\x8c\xe6\xf5\xb0\xe5\xe2\xfa\x33\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\xaf\x84\xc3\xd9\x59\x60\x36\x16\xd8\xe3\x16\x9b\xab\xd7\x58\x60\x4f\x5b\x6c\xae\x5e\x63\x81\x3d\x6d\xb1\xb9\x7a\x8d\x05\xf6\xb4\xc5\xe6\xea\x35\x16\xd8\xd3\x16\x9b\xab\xd7\x58\x60\x4f\x5b\x6c\xae\x5e\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\x3d\x6f\xb9\xb8\xfe\x8c\x05\xf6\xbc\xe5\xe2\xfa\x33\x16\xd8\xf3\x96\x8b\xeb\xcf\x58\x60\xcf\x5b\x2e\xae\x3f\x63\x81\x3d\x6f\xb9\xb8\xfe\x8c\x05\xf6\xb2\xe5\xe2\xfa\x33\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\xeb\x96\x8b\xeb\xcf\x68\x5e\xaf\x5b\x2e\xae\x3f\xa3\x79\xbd\x6e\xb9\xb8\xfe\x8c\xe6\xf5\xba\xe5\xe2\xfa\x33\x9a\xd7\xeb\x96\x8b\xeb\xcf\x68\x5e\xaf\x5b\x2e\xae\x3f\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xc5\x69\x5e\x31\x9a\xd7\x3f\x38\x5c\x9c\xe6\x15\xa3\x79\xe3\x83\xc3\xc5\x69\x5e\x31\x9a\x37\x3e\x38\x5c\x9c\xe6\x15\xa3\x79\xe3\x83\xc3\xc5\x69\x5e\x31\x9a\x37\x3e\x38\x5c\x9c\xe6\x15\xa3\x79\xe3\x83\xc3\xc5\x69\xde\x0a\x76\xd2\x4c\x2e\x65\x74\x9d\xa2\xa4\xa0\x9e\xab\xd9\xd2\xb6\x1e\x8a\xd1\x84\xc1\x7d\x21\x44\x9c\x9e\x76\x5a\x5a\xff\xd2\x2e\x4f\xbb\x2c\x6d\x7c\x69\xb7\xa7\x49\x0f\x83\x7b\xf6\x88\x78\x3c\xed\xb1\xb4\xf0\xa5\x4d\x4f\x9b\x96\x16\xbf\xb4\xd7\xd3\x5e\x4b\x4b\x96\xe6\x34\xa1\x18\x4d\x18\x5c\x55\x46\x84\xeb\xcf\x68\x82\xee\x6b\x21\xc2\xf5\x67\x34\x41\x37\x93\x10\xe1\xfa\x33\x9a\xa0\xeb\x3c\x88\x70\xfd\x19\x4d\x18\xe1\x93\x8b\xd3\x84\x62\x34\x61\x84\x4f\x2e\x4e\x13\x8a\xd1\x04\x5d\xb6\x4a\x84\xeb\xcf\x68\xc2\x88\x9f\x5c\x9c\x26\x14\xa3\x09\x3a\x69\x99\x08\xd7\x9f\xd1\x04\x9d\x0b\x4d\x84\xeb\xcf\x68\x82\x4e\x25\x26\xc2\xf5\x67\x34\x61\xc4\x2d\x17\xd7\x9f\xd1\x84\x11\xb7\x5c\x5c\x7f\x46\x13\x46\xdc\x72\x71\xfd\x19\x4d\x18\xb1\x87\xbf\x06\x0e\x17\x67\x11\xc5\x58\xc4\x88\x9f\xd8\x9c\x45\x14\x63\x11\x23\x7d\x62\x73\x16\x51\x8c\x45\x8c\xf4\x89\xcd\x59\x44\x31\x16\x31\xd2\x27\x36\x67\x11\xc5\x58\xc4\x48\x9f\xd8\x9c\x45\x14\x63\x11\xba\xf0\x9e\x08\x57\xaf\xb1\x88\x91\x3e\xb1\x39\x8b\x28\xc6\x22\x74\x39\x36\x11\xae\x5e\x63\x11\xba\x8c\x9a\x08\x57\xaf\xb1\x88\x91\xbe\xe6\xe4\x34\xa1\x18\x4d\x18\x69\xcb\xc5\xd5\x6b\x34\x61\xe4\x2d\x17\x57\xaf\xd1\x84\x91\xb7\x5c\x5c\xbd\x46\x13\x46\xde\x72\x71\xf5\x1a\x4d\x18\x79\xcb\xc5\xd5\x6b\x34\x61\xe4\x2d\x17\xd7\x9f\xd1\x84\x91\x3f\xb9\x38\x4d\x28\x46\x13\x46\xfe\xe4\xe2\x34\xa1\x18\x4d\xd0\x7d\xac\x44\xb8\xfe\x8c\x26\xe8\x52\x52\x22\x5c\x7f\x46\x13\x74\x19\x29\x11\xae\x3f\xa3\x09\xba\xec\x92\x08\xd7\x9f\xd1\x04\xdd\xe2\x46\x84\xeb\xcf\x68\x82\xae\xad\x24\xc2\xf5\x67\x34\x41\xd7\x27\x12\xe1\xfa\x33\x9a\xa0\xcb\x1b\x89\x70\xfd\x19\x4d\x18\x65\xcb\xc5\xf5\x67\x34\x41\x77\xe2\x11\xe1\xfa\x33\x9a\xa0\x9b\xe7\x88\x70\xfd\x19\x4d\xd0\x25\x6e\x44\xb8\xfe\x8c\x26\xe8\xe2\x33\x22\x5c\x7f\x46\x13\x74\x60\x2d\x11\xae\x3f\xa3\x09\x3a\x39\x74\x45\x38\x4d\x28\x46\x13\x74\x3e\x2b\x11\xae\x3f\xa3\x09\x3a\xbb\x94\x08\xd7\x9f\xd1\x04\x9d\x10\x4a\x84\xeb\xcf\x68\xc2\xa8\x9f\x5c\x9c\x26\x14\xa3\x09\xa3\x7e\x72\x71\x9a\x50\x8c\x26\xe8\x16\x16\x22\x5c\x7f\x46\x13\x74\xcf\x08\x11\xae\x3f\xa3\x09\xa3\x7e\x72\x71\x9a\x50\x8c\x26\x8c\xf6\xc9\xc5\x69\x42\x31\x9a\x30\xda\x96\x8b\xeb\xcf\x68\x82\xae\x5f\x26\xc2\xf5\x67\x34\x61\xb4\x2d\x17\xd7\x9f\xd1\x04\x5d\x15\x44\x84\xeb\xcf\x68\x82\x4e\xbc\x24\xc2\xf5\x67\x34\x41\x07\x98\x13\xe1\xfa\x33\x9a\xa0\xb3\xc7\x57\x84\xd3\x84\x62\x34\x41\x87\x46\x13\xe1\xfa\x33\x9a\xa0\x63\xba\x89\x70\xfd\x19\x4d\xd0\x41\xda\x44\xb8\xfe\x8c\x26\xe8\xe8\x6a\x22\x5c\x7f\x46\x13\xb8\x91\x48\x11\xae\x3f\xa3\x09\xba\x66\x82\x08\xd7\x9f\xd1\x04\x1d\x1b\x4a\x84\xeb\xcf\x68\x82\xee\x7f\x27\xc2\xf5\x67\x34\x61\xf4\x4f\x2e\x4e\x13\x8a\xd1\x04\x9d\xd8\x4a\x84\xeb\xcf\x68\xc2\xe8\x5b\x2e\xae\x3f\xa3\x09\xa3\x6f\xb9\xb8\xfe\x8c\x26\x8c\xb1\xe5\xe2\xfa\x33\x9a\x30\xc6\x96\x8b\xeb\xcf\x68\xc2\x18\x5b\x2e\xae\x3f\xa3\x09\x63\x7c\x72\x71\x9a\x50\x8c\x26\x8c\xf1\xc9\xc5\x69\x42\x31\x9a\x30\xc6\x27\x17\xa7\x09\xc5\x68\xc2\x18\x9f\x5c\x9c\x26\x14\xa3\x09\x63\x7c\x72\x71\x9a\x50\x8c\x26\x8c\xf1\xc9\xc5\x69\x42\x31\x9a\xa0\xeb\xc7\x89\x70\xfd\x89\x26\xa4\xe3\xf8\xe4\xe2\x34\xa1\x88\x26\xa4\xe3\xf8\xe4\xe2\x34\xa1\x88\x26\xa4\xe3\xf8\xe4\xe2\x34\xa1\x88\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\x63\xc3\x61\xa7\x09\x45\x34\x21\x1d\x1f\x1c\xae\x4e\x13\xaa\x68\x42\x3a\x3e\x38\x5c\x9d\x26\x54\xd1\x84\x74\x7c\x70\xb8\x3a\x4d\xa8\xa2\x09\xe9\xf8\xe0\x70\x75\x9a\x50\x45\x13\xd2\xf1\xc1\xe1\xea\x34\xa1\x8a\x26\xa4\xe3\x83\xc3\xd5\x69\x42\xed\xa6\x87\x0f\x0e\x57\xa7\x09\xb5\x9b\x1e\x3e\x38\x5c\x7d\x36\xa8\x76\xd3\xc3\x07\x87\xab\xcf\x06\xd5\x6e\x7a\xf8\xe0\x70\xf5\xd9\xa0\xda\x4d\x0f\x61\xcb\xe5\xf2\x34\xd3\x43\xd8\x72\xb9\x3d\xcd\xf4\x10\xb7\x5c\x1e\x4f\x33\x3d\xc4\x2d\x97\xe9\x69\x33\x35\xd2\xb6\x5c\xde\x14\xbe\xb4\xd7\x9e\xe3\xf0\x4e\x4e\x12\xda\xcf\x69\x36\x28\x1d\x1c\x48\x4f\x84\xeb\x6f\x98\xfe\x62\xfe\xd2\x5c\x7f\xc3\xf4\x17\xcb\x97\xe6\xfa\x1b\xa6\x3f\x6e\x03\x26\xc2\xf5\x37\x72\x2a\xa4\xb5\xfe\x57\xc0\x61\x9d\x47\xca\x35\xf7\xe1\x2b\xaa\x70\x66\x6d\xac\x81\xb8\xd6\x56\x5c\x15\xab\x6b\x89\x38\x89\xb5\x15\xc5\x8d\x15\x97\x0e\x9e\x6d\x97\xe2\x38\xa3\x94\x8b\x34\x3a\x97\xcb\xaf\x3f\x51\x71\x95\x38\x95\xd1\x5f\xc5\xf1\xec\x50\xbe\x33\x13\x27\x26\x7a\x72\xb6\x6e\xbc\x1b\x71\x62\x99\x37\xe7\xa5\xc6\x79\x10\xd7\x61\x97\x53\x75\xd1\xd9\xa8\x59\x75\xd1\xd9\xa8\xf1\xe5\x3b\xb2\xca\x7d\xf5\x1d\x6f\x25\x4e\x4c\xf8\xbd\x15\x37\x15\x57\xfe\xf0\x5b\xe7\x3e\xf9\xf5\x27\x2b\x6e\x10\x57\x15\x47\x5d\x72\x8a\xc4\x0d\xc5\x5d\x8a\xcb\xc4\x3d\xc4\x49\xa6\x39\x2d\xf9\x25\xc9\x34\x15\x95\x9b\x13\x71\x5d\x71\x8f\xe2\x2a\x71\x2f\x71\x55\xe5\x16\xca\xa8\x9c\xe7\xca\x8d\xf2\x2b\x6e\x7d\x1b\xb7\xc8\xaf\x3f\xaa\x0b\xe7\x29\x27\xc9\x39\xe9\xcc\x58\x2e\xf0\xef\x49\x67\xc6\xa6\xce\x79\xb3\x5c\xd9\xd0\xb9\x03\x7e\xfd\x91\xac\x90\x5f\xea\xc8\x8a\x3b\xdd\x83\xee\x03\xed\xdc\xe3\xbe\xfe\xa8\x7e\x83\x67\x87\xea\x77\x52\x86\xa0\x6e\x3a\x55\xc6\x79\x2a\x8e\xfa\x9d\xb7\xe2\x78\x96\x6b\xe5\x7b\xba\x54\xbf\x6b\x28\x8e\x72\x2f\xd5\xe5\xa6\x7e\xdc\xdf\xd5\x93\xf4\x9b\x74\xa6\x6d\x91\xfc\x74\xa6\x6d\x92\x8e\x04\x41\xb3\xda\x2e\x97\xb8\xaf\xb8\x25\x03\x2e\x6e\xff\xad\xe7\x46\xdb\xe0\x44\xfe\x9e\x5b\x54\x1c\xdf\xc6\x01\xf4\x3d\xab\xed\xe6\x56\x15\xc7\xb3\xad\x2b\x8e\x32\x04\x1f\xb3\xce\xe1\xe5\xd2\xf3\x15\xd7\x89\x4b\x8a\xe3\xdb\xe4\x59\xe5\xd2\xf2\xdf\x7a\x1e\xca\x87\x29\xe3\xd2\x98\xf5\xe7\x56\x5c\x26\x0e\x39\x73\x67\x79\x38\xb8\x80\xaf\x67\xc9\x2f\x9f\x5d\x71\xd4\xef\x44\x06\xf9\xce\x8a\xa3\x7e\x37\xed\x2f\x3f\xb4\xab\x76\x2c\x1d\xe5\xe7\x52\x1c\x65\xb4\x18\x89\x53\x19\x73\x28\x8e\x72\xa7\xf2\x4d\xea\xdc\x12\xcf\x4e\xd5\xf9\x3d\x14\x47\x19\xaf\x64\x25\x39\x0b\x2a\x16\xc9\x99\x1b\xd1\xc3\xc1\x39\xf0\x9d\x2b\x6a\xd6\x1f\xbd\x8f\x73\x8c\x8b\xda\x2e\x77\x96\x87\x43\xb0\xaf\xa8\xed\x16\xc9\x94\xcb\xbc\x7a\x91\x4c\xb9\x60\x26\xe8\xd6\xc6\x5e\x7a\x57\xdc\xa9\xb8\x41\x1c\x6d\xa8\x48\xa6\x5c\x3a\xd9\xcb\x48\x8a\x2b\x8a\xe3\x7d\x83\x3e\x58\x4e\xe5\xa3\x5f\x96\x53\xf9\x2e\xc5\xe9\x3b\x2e\xc5\xe9\xdb\x7a\x59\x32\xa8\xfa\x36\x6e\x06\x0f\xba\x04\xaf\x73\x83\xcc\x6f\xbd\x16\xda\xcb\xe0\x4c\xe5\xaa\xef\xad\x95\xfe\x26\xd8\xc3\x0d\xdf\xbf\xf5\xaa\x6f\x93\x87\xaf\xea\xdb\xaa\xea\x37\xe8\x33\xdc\xbc\xb2\xfe\x2c\xfd\x86\x83\x76\xcf\x45\x2b\xbf\x75\x2e\x49\x59\x71\xd4\xe5\x44\xf6\xf5\x1e\xc4\xd1\x17\xea\x8d\x4c\xeb\xa3\x7c\x75\xb5\xe7\xfa\x28\xdf\x52\xfd\x8a\x6b\xc4\xa1\xf3\x3a\x95\x8f\x36\x54\xa7\xf2\xcd\x46\x1c\x5e\xc6\x3a\x55\x67\xda\x41\x38\xe8\xe7\x55\xed\xa0\x2e\xd3\x18\x82\xa0\x44\x7d\xf5\xbd\xc8\x2a\x1c\x63\xe5\x6b\x99\xbe\xc5\xd5\xdc\x61\x15\x4c\x5c\x51\x5c\x57\xdc\x20\xee\x51\x1c\xcf\x72\x4b\x6b\xe7\x7e\xee\xf5\xa7\x2a\x8e\x67\x65\xff\xb8\xc7\x25\x84\xc0\xf7\x72\x0d\xcb\xfa\x53\x14\xd7\x88\x43\x7e\xad\x29\x1f\x3a\x6a\x1a\x67\xb8\x78\x25\x04\xc1\x8a\xa6\x7e\xc9\xcd\xd9\x2b\xae\x10\xa7\x7c\x5d\xf9\xf0\xd0\x36\xf5\x55\x6e\xc9\x5e\x71\xbc\x4f\x7d\xb5\x8d\xa6\x38\xea\xa7\x76\xd5\x86\x9e\x45\xbf\x4d\xfd\xb7\x9d\x7a\xb6\xf1\x6d\xa7\x9e\x3d\xf5\x6d\xf4\xd5\x76\xea\xdb\x2e\xe5\xc3\xee\xb6\xab\x2a\xee\x24\x6e\xf0\xec\x75\x2b\x4e\xb2\xe2\x0c\xfb\x76\xeb\x3b\xd4\x0e\xe2\x81\x5c\x6e\xc9\xf4\x26\x9f\x26\xaf\xdb\x23\x99\x3e\x41\x71\xf1\xf7\x87\xfb\xf6\xa8\x0a\x8f\x5e\x1d\x10\x91\x4c\x48\x63\x48\x0c\x5c\x2b\xd7\xdb\x6b\x71\x2a\x0e\xb3\xd7\x35\x24\x76\xa9\x3f\x32\x34\xf5\x8c\x6a\x7a\x53\x3e\x44\xde\xd5\x05\x3a\x66\x3e\xc8\x43\xd6\x65\xe6\xfb\x4d\x93\xe5\xb6\xf3\xde\xf5\x49\xfd\xe1\x7d\x89\xa6\xd8\x9f\xa2\x38\xea\x92\x46\x22\xae\x2b\x6e\x2a\x8e\x32\xa6\xca\x98\xcb\x3c\x86\x7c\x50\x97\xc9\xb7\x75\x86\xfb\xc0\xf5\xe2\xbd\xbf\x59\x71\x34\x09\x6e\x97\xea\x5d\x43\x49\xd7\xb7\xc9\x1b\x35\x64\x06\x46\x3e\x15\xb7\xf2\x0d\x0d\x25\x03\x33\xa0\x6b\xa0\xfa\x90\x19\x18\xe5\x56\xdc\xaa\x0b\xf7\x69\xaf\x3f\x8a\xc3\x3c\x8e\x4a\x33\x19\x0c\x43\x81\x8b\xba\xfb\xd0\x30\x34\x1a\x32\xd0\x44\x2c\xf7\x58\xaf\x3f\xaa\x0b\x5d\x74\x48\x7e\xa3\xab\x2e\x34\x9d\x21\x53\x38\x64\x42\x32\x72\x19\x32\x21\xdc\x1d\x1d\x02\xd7\xcc\xf7\xa1\xe1\x79\x30\x3c\x07\x4d\xbe\x8e\x73\x28\x6e\x2a\x6e\xe9\x72\x5c\x2a\x43\x3a\xe2\xa2\xb6\x3e\xa4\xa3\x71\xe9\x7d\x40\x99\x71\x4b\x06\x77\x52\x1c\xdf\x71\xeb\x7d\xb7\xf2\x61\x5a\x87\xcc\xd4\x90\x99\x2a\x40\x99\x21\x33\x35\x9e\xa6\x38\xca\x7d\xf4\xec\xc3\xb7\x15\xc9\xea\xd1\xb7\xc9\xfc\x14\xcc\xf2\x90\xf9\x19\xd2\x91\x26\x60\x4f\xb5\x3f\x6e\xb9\x09\x41\x9e\xa6\x53\x43\xce\xc9\x71\xfa\x81\xab\x5c\xfa\xa9\xe3\xf4\x4f\xc9\x94\x7b\x5f\xfa\x29\x99\x9e\x33\x29\x6e\x7d\xc7\x29\xc8\x78\xaa\x0c\x6e\x1c\xe9\x97\xda\xc1\xa5\x36\xce\xcd\x69\xfd\x92\x89\xbb\x64\xe2\xb8\xcb\xa9\x5f\x99\x32\x2e\x99\x24\x0d\x75\x97\x4c\xd2\xa5\x72\xb9\x5c\xae\x5f\x2a\xf7\xea\xe8\x9c\xeb\x54\xfa\xd5\xd1\xf9\x25\xbd\x71\x83\x4c\xbf\xa4\xb7\x4b\xe6\xa2\x63\x92\xae\x2b\x2b\x8e\x72\x7b\x57\x9c\xca\x95\x8e\x7a\xa7\x2e\x97\x9e\xbd\xd1\xb9\x3c\x07\x97\x20\xd4\xa5\xbe\xc5\x9d\xce\xfd\x52\xdf\xba\x34\x6c\x8c\x43\x71\xaa\x8b\xfa\x11\x37\xcb\xf6\x4b\xfd\xe8\x9a\xe8\x88\x7b\xa9\xfa\x35\x6f\xc5\xbd\x8a\xe3\xd9\x97\xb6\x71\x49\x7e\x5c\x13\xdb\x6f\xc9\xef\x96\xfc\x06\x32\xbd\x25\xbf\x5b\xc3\x81\x86\xce\x5b\xc3\xc1\xad\xe1\x40\x9e\x82\x5b\xc3\x01\xf7\x56\xaf\xb8\x4e\x1c\xf5\xbb\x25\xd3\x01\xcc\xb8\x25\x53\x6e\xa2\x09\x91\x9b\x4c\xfb\x2d\x58\x70\xd3\x3f\xe2\x41\x3f\xbf\x07\xfa\xb8\x81\x05\xf1\x00\xd6\xdf\x32\xcb\xf7\x12\xd9\xb2\xac\xd4\x59\x6d\xfc\x7e\x94\xaf\x50\x67\xd9\xc9\xfb\xd1\xfb\x1a\xcf\x3e\xc8\xf4\x7e\x2d\x8e\xfa\xbd\x16\xb7\xea\x17\x35\xfc\x3d\x92\x01\x57\xcb\x84\xa8\xe1\xef\x69\x55\x71\xd4\x59\xc3\xcb\xd3\x6e\xc5\xe9\x59\x18\xee\xa3\x6f\x7b\x16\x6a\x5f\x71\x3c\xdb\x87\xe2\x94\x8f\x76\xc0\x15\x33\xeb\xcf\xa3\xb8\x4e\x1c\xed\xe0\xa1\xbd\x44\x2e\x13\xef\x8f\xda\xcb\x33\xf9\x36\xae\x86\xec\x8f\xda\xfd\xb3\xd4\x1c\x22\xb7\xae\xf7\x67\x22\x97\xe7\x55\x9c\xea\xf2\x5a\x1c\x65\x44\xec\xf3\xd4\xb7\xcd\xa5\xd2\x10\x23\xf0\x66\x6a\x0c\xe0\xea\xe8\x15\xb7\xca\x98\x05\xd9\x4f\xe0\x52\x4c\x8c\x33\x53\x70\x89\x1b\xa0\x43\x4c\xd4\x65\x36\x64\x3f\x25\x83\x84\xcd\x99\xa2\x31\x73\x20\x2b\xee\x4b\xeb\x73\xdc\x8a\x53\x3e\xe4\x32\x4f\xd5\x65\x21\xbd\x15\xd7\x88\x2b\x8a\xe3\x3b\x34\xb3\x31\xa5\xf3\x79\x5e\x8a\x4b\xc4\x21\xab\xb9\x46\xdf\x15\x47\x19\xea\x47\xf3\x46\x6f\x1a\x53\xa6\x20\xf7\xbc\x6f\xc5\x51\x86\x6c\xdd\x7c\xf8\x5e\xae\x35\xec\x53\x63\xd4\x9c\x94\xa1\x31\x65\x4e\xda\xee\x54\xdb\xd0\xec\xc5\x2b\xf9\xbd\x05\x7d\xe8\x8a\x1c\x2e\x6c\x5e\x7f\x54\x06\xdf\xf1\x16\xc6\x8f\xb7\xf2\x6d\x5c\xa8\xd7\xdf\xca\xb7\xbd\x92\x55\xee\xe3\xf7\x87\xfb\x57\xcd\x89\x3b\x97\x43\x2c\xa8\xe1\x55\x73\x7a\x17\xe0\x59\xa3\xf8\xfa\xcc\x77\x74\xc5\x21\x72\xee\xcc\xef\xaf\x90\xce\x0b\x42\x8d\x05\x76\xf0\x0a\xa1\xbe\x12\x5b\xc1\xb4\xbe\x97\xf2\x31\x44\xc4\x42\x73\x7a\x6f\x7d\x92\xc4\x56\x5a\x25\x4e\xf9\x18\x0e\x62\xa1\x19\xbf\x1a\x0e\x5e\x89\xa8\xac\xe6\x34\xb8\x80\xf9\xb7\x71\xe8\x33\x59\xef\x32\xb8\x6b\xf8\xb7\x71\x80\xc4\x62\x5d\xc3\xdf\x38\x68\xee\xe3\x60\x08\x8b\x30\x9f\x71\x30\x84\x8d\x43\xdd\x9b\x6b\x9d\xc6\xf1\x7f\x31\x76\xee\xb8\xbb\xf4\x38\x7e\xce\x7b\x15\xbd\x03\xd7\x4d\x17\x02\x07\x93\x38\xb6\xf7\xa0\x2b\x30\xc1\xcc\x34\xda\x33\xfb\x37\xf4\x3c\x6f\x62\x3b\xf8\x1c\x1c\xbc\xf8\xf3\x54\x95\x24\x8a\x22\xf9\x23\x29\xe9\xcc\xe7\xf9\x61\xbc\xa0\x97\xb8\x98\xd6\xb8\x30\x43\x0f\x77\x0e\xc6\x85\x2a\x8c\x8b\x08\xc2\xc3\x9d\x89\x71\x11\x41\x88\x6b\xf9\xbd\xe0\x5d\xd4\x5e\x5c\x2e\x15\xae\x8d\x8c\x8b\xa5\x12\x97\xe3\xe0\x72\xc7\xf0\xa6\x97\xb8\xbf\x5b\x5a\x40\x7b\xa5\xd1\x2e\x41\xec\xb8\x3f\xda\xb8\x41\x57\xde\x12\x12\x5c\x71\x7c\x7e\x5e\x69\x2f\xb4\x2c\xad\x4a\x4b\xd0\xba\xb4\x21\xad\x42\xf3\x7b\xd9\xef\xc1\xbf\x3b\x7f\xd2\xa6\xb4\x0f\x1a\xfc\xbb\x0b\xb2\x51\x3f\x68\xa5\x48\x83\xa7\x04\xbd\xe3\xc6\x45\x09\x6f\xa7\x79\xb8\xd0\x3b\xbc\x9d\x26\xb8\xae\xf8\xd0\x32\xb4\x24\xcd\xbe\x64\xda\xad\xf6\x25\xec\x4b\xa6\x7f\x61\x5f\x02\xfe\x71\x07\x7b\x70\x29\xf1\xf9\x91\x2f\x85\xb1\xb1\xe4\xe3\x6e\x8e\x97\xf9\xb8\x9b\x34\xe7\x1c\x53\x17\x77\xff\xd1\xe8\x1f\x17\xc5\xc7\x3d\xec\x9f\x4b\x99\x9b\xb5\xe3\x1e\xb6\xab\x4c\x86\xbc\x1f\xf6\x6f\x30\xbf\x21\xef\x51\xf3\x71\x4f\xbf\x27\x9f\x97\xdf\x53\x8d\x86\x3c\x5d\xce\x25\x28\xfb\x01\x39\xc6\xbd\x9c\x0f\xe5\x25\x5e\xe6\x7c\xfb\x9c\xb2\x11\xc7\xdc\x87\x51\xb7\x78\xe4\x69\x20\x7f\x8f\x3c\x7d\xfa\x99\x0f\x6f\xff\x88\xa7\x33\x1f\x0f\xae\xd6\x7b\x1d\xb5\x17\xcf\x44\xfe\x1e\x4c\xfb\x7b\x1d\x75\x1b\x0f\xa6\x3d\x1e\xfa\xfc\x12\xf0\x8d\x67\xf9\x1c\xea\xfb\x25\xd0\x1b\xaf\xed\xbe\x44\x4c\xbc\x11\x23\x5e\xdc\xdc\x78\x91\xa1\xf7\x66\x2e\x5f\x65\xe8\xcd\x3e\xc7\xbc\x11\x7e\x3a\x3f\xf4\x8f\x9b\x88\xe3\x55\x5e\xde\x62\xbb\xcc\xc7\xeb\x38\x08\x32\x1d\x5a\x40\x43\x86\x5e\xd6\xef\xfb\xd8\x97\xb0\x0d\xa2\x7d\x2f\x17\x55\xc7\x8b\xaa\x8e\xb7\x33\x36\x2e\x66\x8e\xb7\x27\x69\x05\xda\xc7\x73\x47\x00\xce\x4f\x83\x96\x18\x47\xf7\x7b\xb8\x41\xef\x93\xce\x9a\x79\x87\xfd\x03\x35\xbd\xd4\x15\xc4\x3b\xed\x1f\x10\xe3\xc5\xfc\xc5\x3b\x6d\x77\xfa\xbd\xc2\xd8\xd4\x07\x2f\x88\xfa\x7d\x0a\xcf\x81\xa8\xe3\x5d\xf6\xaf\xd2\x06\xee\x52\xbc\xc7\x82\x1e\x1a\x7d\xde\x3e\xb7\x7d\x4e\xbe\x6c\x9f\xdb\x21\x8d\x77\x81\x59\xf1\x3a\x47\x4f\x9c\xb1\x19\xd5\x8a\x0f\x17\xca\x6b\x2d\x82\x3b\x94\xcf\xcf\x90\xf6\x41\x5b\xd2\x98\xa3\xf7\x3e\xf2\xf7\xa9\x23\xb8\x5a\xf9\xd0\x12\xb4\x90\xd6\xa4\xd1\x46\xb6\x8d\x6c\x1b\xc8\xda\x07\xca\x8e\x0f\x1d\xf1\xbe\xc8\xfd\xa7\x8e\xf8\x88\x3c\xbe\x2f\x32\xfe\xe1\xe6\x86\x51\xb2\xf7\x45\xc6\x8d\x88\xc5\x47\x44\xe7\xe5\x56\xfb\xf8\xaa\xed\x62\x3f\xde\x97\x79\xfb\xb0\x1f\xf1\xe1\xe6\xbe\x14\x25\xc4\xd7\xed\x73\xf7\x7b\x95\xef\xe1\x92\xc5\x07\x5c\x7c\xb9\x69\x2d\x3e\xe0\x62\x7c\xd8\x8f\xf7\x43\x9f\x7e\xd3\x36\x26\x3c\xf8\x1c\x87\x72\x6f\x04\xeb\xe5\x16\xc2\x30\x82\x15\xc9\x71\x7c\xac\xb7\x44\x04\x35\x8c\x4c\xbd\xe9\x82\xa6\xec\x26\x22\xd5\x2f\x37\xc3\x45\x22\x52\x1d\x09\x57\xeb\xc5\x5e\x06\x37\x17\xff\x89\xe4\x38\x80\x36\x91\xba\xcf\xa1\x9b\xde\x94\xf9\x9e\xf6\x28\x29\x7f\xe9\xc0\x89\x48\xae\xd5\xa4\x5c\x71\x01\x60\x24\xe5\x2a\xe1\x92\xbd\xd9\xbe\xe0\x92\x45\x22\x3a\xf7\xe6\xff\x0f\x74\x1f\x49\xb1\x4b\x1b\x16\x91\x37\x8f\xb4\x43\xda\x94\x76\x3e\x6d\xd0\x2b\x88\x69\xdd\x2f\x97\x84\x46\xc6\x0b\x89\x0c\x3a\x7d\x33\x6a\x3e\xab\xfa\x0d\x70\xbd\xe4\xb0\xc3\x00\x57\x18\x18\x7a\x35\xc5\xc5\xef\x95\x4c\xf7\x35\x61\x25\x57\x69\x7c\x8f\x9b\x27\xa3\x28\x4e\xc5\xef\x71\xc1\x66\x14\xbf\x57\x08\x98\x79\xda\x7e\x14\xcd\x81\x81\x97\x37\x30\xa7\x06\x5e\xc2\xc0\xcb\x1b\xb0\xc8\xc0\x4b\x18\x3c\x79\x83\x25\x50\x54\xfd\x85\x00\xd7\xab\x0a\x2e\xcb\x76\x31\xd9\x6f\xb0\x44\x8b\x26\xdb\x08\xc7\x1b\x8c\xa3\x3a\x8e\x4a\xd0\xdf\x93\xea\x83\x9b\x7a\xcf\x4f\x95\x96\xa0\x35\x69\x4b\xda\x99\x7e\x6e\xee\xfd\x13\x15\xc4\xff\x5d\x37\xdf\x2b\x9f\x34\x9f\x63\x09\xd4\xca\x1c\x55\xd0\xcb\x77\xc1\x97\xaa\x7a\xac\xc7\xa3\xb9\xbf\x0b\x75\x5b\x1b\x62\x5c\x0f\x78\xbf\xbf\xab\xf2\x6e\x43\x9c\x2a\x26\xe2\x23\x28\x17\xb5\x57\x69\x3c\x77\xc3\x17\xa3\x2d\x51\x8f\x97\x73\x68\xb4\x31\x7c\x6e\xd0\x2e\xb9\xbd\xa8\x63\x48\xdb\xd2\xce\x7c\x54\xcd\x4b\x25\xc8\xfc\x71\x75\x76\xd4\xe9\x38\x96\x34\xcc\x9f\xd1\x96\xa8\x8b\xb1\xdd\x98\xb5\xba\xe5\x01\x11\x98\x8f\x8b\xfb\xa3\x6a\xfe\x8c\xb6\x7c\x9a\x17\xa3\x2d\x11\x9f\xdf\x63\xbc\x21\x9f\x83\xc0\xdf\xc7\xb5\xfa\x11\xaa\xa4\x40\x25\x7d\xdc\x8f\x19\xa1\x0c\x45\x61\x8e\x34\x25\x51\x7c\x17\xb7\xe5\x7b\x50\x71\x01\xba\x0a\x23\x2b\x1f\x39\xbb\x30\xb2\x12\x51\x7d\x97\xf1\x72\x5d\xef\xf9\xa9\xd2\x02\x5a\x93\x66\xbb\xac\x8f\xa8\xb6\x8b\x2b\xf3\x3d\x2f\xe3\x88\x47\x9a\xef\xbe\x8c\x23\x7c\xb7\x49\x83\x2f\xd1\x7e\x34\xf8\xcc\x6e\x8f\x08\xd5\x5e\xe0\x4a\x7f\x0f\xea\x82\x30\xcb\xf9\xf1\x5d\xcc\x50\x0c\xdf\x1d\xf6\xa5\xd2\x97\x61\x5f\xa6\x7d\xc1\x14\x1b\x6d\x09\x02\x2c\x87\x46\x5f\x88\xec\x45\x4c\xdb\x45\x5e\x42\xf5\x18\x20\xfe\x8f\xda\xb6\x08\xe7\x32\x08\x14\x7f\x5c\x4b\x1b\x41\xa0\x38\x02\x44\xf3\xbd\xc8\x55\x80\x68\xc2\x48\x8d\xc7\xc8\x87\x91\x9a\x30\x52\xf3\x69\x5e\x9a\xf3\xdb\x08\xaa\x7f\xef\x23\x8d\xbe\x34\x10\xff\xf7\xbe\xd0\x40\xfc\xd1\xb2\x7d\xc1\x5d\x6f\xea\x8d\xe6\x3a\x7a\xf3\x59\x47\x8d\xc8\x59\x70\xe3\xf0\xfd\xbd\xc8\x06\x21\x9f\xf3\x63\xbb\xf0\xca\x28\x4f\xb4\xea\x38\x30\xcf\x4d\x33\xd4\xaa\xe3\x40\x87\x35\xd7\x5b\x73\x2e\x5f\xdc\xfa\xe6\x5c\x72\xe9\xf0\xa1\x55\x68\xb6\x11\x8c\xe3\xbb\xf8\x9e\x6e\x69\xc3\x1c\x7c\x1f\xbc\x6a\x42\x91\x46\xa4\xe1\x03\x25\x46\x53\x37\x35\xd7\x2f\xdb\x43\xa2\xb9\x7e\x9b\xeb\x8d\x84\x64\x34\xd7\x5b\x03\x4d\x7e\x5c\x1a\x1b\x6d\x16\x69\xbe\x9b\xe8\x8b\x73\xd9\x96\x6d\xe0\xca\x34\xe7\xcd\x08\xd6\x47\x12\x30\x8c\x60\x85\x51\xa8\xef\x63\x6c\x46\xa1\xa2\x2b\x2f\x09\xf3\xd7\x95\x17\xa3\x41\x1f\xb7\x2f\x87\xd1\xa0\x30\xa2\xf3\x91\xec\x0a\x23\x3a\x31\x48\x66\x7e\x19\xf9\x1b\x24\x33\x83\x80\xcd\xfd\x51\xbf\x14\x46\x6a\x62\xb8\x2e\x0b\x3c\x18\xae\xcb\x51\x7c\xee\xe5\x39\xa2\x73\x61\x44\xe7\x2b\x40\x11\x23\x3a\x31\x80\xa9\x1f\x89\xa8\x18\x24\x2e\x63\x60\x03\x3e\xee\x06\x8e\xa1\x0d\x18\x24\x1a\xbf\xc2\x9a\x19\x42\x82\x41\xb0\xdc\x63\xbb\x63\x8c\x2e\x8d\x36\x28\x9d\x8f\xa1\xdb\x37\x56\x92\x46\xbb\x9a\xd8\xa1\x8c\x57\xd6\xf4\xd0\x56\x10\xd8\xb9\x3f\x12\x47\x31\xb6\x6d\x60\x43\xbf\xca\x1c\x19\xe5\x89\x09\xbc\xfb\x6a\x4a\xd0\x5e\x69\xb6\x01\x9f\xe7\x57\xa5\x31\x0e\x61\xd1\xd4\x56\x4c\x20\xda\xc7\x85\xcb\xc1\xbd\xc7\xe7\x07\xd9\xad\xf5\xfd\x6b\x73\x3f\x73\xf3\x15\xbb\x85\xe7\x34\x55\x8f\xd3\xe5\x53\x31\x6b\xd3\xe5\x33\x9d\x9a\x8a\xc7\x61\x40\x2a\x0c\x48\x7d\x15\x71\x37\xf8\x14\xc4\x9b\xee\x4f\x24\xc5\x1d\xc7\xe7\x87\xee\xc7\x2d\x8d\x69\x98\x2e\x9f\x60\xc9\x4f\x97\xcf\x54\x15\x8a\xa4\xa6\xaa\x90\x1b\x8d\x0f\x8d\xe7\x9a\x2c\x22\x40\xf3\x05\xd3\x3f\xf5\xfa\x27\x01\x9a\x2f\x10\xc5\xd9\x6c\x83\xfc\xdd\x47\x0e\x2e\xa6\x1e\xd6\x24\xf8\xf9\xc5\x07\xdb\xba\xe3\xc5\xeb\xff\x02\xf3\x32\xf5\xfa\xa7\x6a\x34\x50\x21\x53\x35\x3a\x87\xe3\xc8\x8c\x43\xf4\x37\xa7\x6d\x60\x86\xe6\xb4\x7f\x13\x5e\x11\x70\x8c\x39\xe5\xd5\x72\x1c\xa0\xb0\x29\xfa\x9b\x5b\x1a\x2e\xc5\xd4\xfd\x9a\xaa\xc7\x00\xf9\x4c\xd5\xa3\x81\xb5\x44\x89\x52\x18\x58\x8b\x09\x12\x48\x17\x6a\x65\x8a\x04\xe6\x91\xb4\x43\x3b\xdf\x33\xd8\x16\x0b\x77\x24\xe9\x66\x2c\xcd\x24\x31\xb7\x3b\xe9\x66\x2c\xdd\x91\x45\x50\x29\x5d\xcc\xd1\xd2\x9d\x5b\xc9\xef\x3d\xd2\xe0\xd5\x42\xec\x12\xa5\x4d\xb1\x8c\x0c\xac\x6c\xff\x98\x8f\xa5\x0a\x5e\xb8\x6e\xe9\x42\x55\x13\xb5\x3b\x3f\x0b\x1a\xcb\x62\x15\xfb\x57\x6c\x17\xaf\x7f\x29\x57\x0b\xb9\x4a\x17\x73\xb4\x74\x23\x0d\xf2\x25\x4a\xa3\x62\x29\x6b\xab\x3a\x36\x96\xd4\xaa\xb6\x1b\xf6\x0f\xd7\x68\x29\x57\x0b\xf7\x30\xe9\x1a\x2d\xd5\xf2\x6a\xb6\xcb\x1c\x2d\xe5\x8a\xf8\xdf\x9d\xae\x2a\x4d\x1e\x60\x8a\xd3\xc5\x1c\x2d\x4d\xf1\xa2\x2e\x21\xe9\x56\x19\x0c\x8c\x85\x37\x9f\xc8\x7f\xc6\x12\x75\xae\x2e\x5f\x58\x33\x4b\x57\x6b\x6d\xfb\x0c\x5a\x5b\xa2\x3a\x83\x7c\xe9\x46\x55\x1b\xe4\x8b\xfd\xd1\xc6\x8d\x9a\xda\x1f\x6d\x6c\xf9\x47\xc9\x52\x6c\xf9\x67\x40\x2f\x3d\xcc\xa5\x11\xbb\xd8\xe4\xbc\x13\x01\xdb\xd8\x04\xb7\x63\x93\x9b\x4c\x0f\x3c\xdd\xe4\x26\x63\x3b\x5e\xaa\xe9\x63\x3b\xde\xed\x78\x1f\xdc\xeb\xed\x78\x37\x6b\x2b\x3d\xa8\x9a\xdd\x98\x8f\x3d\x7e\xcf\xd1\x86\xeb\xc3\x88\x5d\xd2\x55\x30\x62\x17\x1b\xb9\x4f\x0f\xf2\xbc\x45\x2a\x9b\xe4\x40\xa2\x6e\x27\x36\xc9\x81\xd8\xb8\xdc\x49\x73\xbf\x55\xa3\x9b\xb5\x90\x5e\xdc\xaa\xed\x5a\xd8\xca\x38\xc1\xde\x66\xb4\xaf\x5d\xb8\x82\x09\xe4\xd8\xae\x23\xf0\xe7\x27\x49\xcb\xd0\x8a\xb4\x2a\xad\x42\x6b\xd2\x6c\x37\x5d\xd0\x36\xb4\x64\xbb\x89\x36\x48\xda\xb5\x8b\x3c\x73\x7a\x8f\x5c\xb5\x8b\xc8\x59\xbb\x5c\x0b\x6f\xe6\xb9\x6c\xbb\x45\xda\x41\xa7\xed\x42\x77\xb6\xab\xf8\xbd\xca\x73\xc5\xef\x39\x6f\x24\x2e\xdb\x45\xd0\xba\x5d\xca\xee\x1b\xd0\xc2\x77\xa9\xa9\x49\xdf\x81\x27\xed\x0a\xc7\xe1\x1c\x7d\x67\xad\xb6\xab\x39\x0e\x60\x4c\xfa\x5e\x78\x30\xe4\x0b\x6e\x5f\xfa\x1c\xc7\x70\x6c\xd3\x77\x33\x3c\x98\xbe\x3b\x7d\xae\x48\xf3\x39\xe7\x83\x04\x62\x23\x84\xf9\xa7\x19\xa1\x4c\xdf\x91\xdd\x76\x03\x31\x1a\x91\x29\x3a\xfc\x48\x78\x1a\x77\xfc\xf3\xcc\xd3\x25\xe1\xfa\xc7\xe1\xb0\x95\x56\x8d\xe2\x2a\x36\x3c\x37\x0a\xac\xce\xcf\xe0\x54\xff\xbf\xfd\x69\xaf\x1f\xa2\x5a\xe7\xc9\xa7\xfd\x4f\xca\x77\xe4\xe1\x3d\x5a\xba\x25\x29\xe9\x2c\xa0\xef\x98\xfc\x96\xa5\xe4\xb3\xcc\xd2\xd1\x58\x2d\x0f\x29\x47\x70\xd2\x71\x0f\x5b\xf1\x99\x72\xfe\x23\x1f\x60\xd8\x48\x7f\xff\x69\xe5\x74\x22\xbf\xe7\x2d\x61\x5c\x03\x76\x05\x48\xb1\x99\x93\x6e\xf5\xa8\x91\xa0\x52\xa3\x09\xb0\x5a\x3d\x8c\xce\xf0\xb2\x0e\x46\x56\x8f\x6c\xb3\x47\xb1\x09\x54\x5a\x1c\x65\x1a\x14\x73\xb4\x20\x9c\xd2\x82\x70\xca\x45\xe1\x46\x33\x03\xdc\xc4\x1a\x17\xd9\xa7\x26\xd6\x68\x61\x21\xc8\x95\xfe\x7a\xa7\x76\x0b\x5c\xc6\x16\x67\xaa\xca\xb1\x82\x4d\x47\xba\x35\x9c\x87\x94\x8e\x86\x68\x4d\x09\xd7\x41\x4e\xe9\x39\x1d\x68\x00\xcd\xd6\xa8\x66\x4a\x14\xf6\x37\x1d\xe4\xd6\x00\x45\x29\x21\xe1\x0d\x50\xd4\x74\x9a\x53\xca\xbc\x6b\x47\x75\x72\x13\xf1\xfb\xd6\xe4\x0d\x8e\x25\xae\x52\xeb\xd4\x7e\xb4\xee\x3a\x4d\xc7\x5f\x68\x1d\x97\xbe\x75\x7b\xe7\x6c\x74\xa2\x52\x4d\xf7\x33\xe5\x8b\x77\x6d\xa1\xe3\x07\xa4\x7c\x74\x7d\xeb\xb6\xd0\x0f\xf7\x89\xcf\x36\x1d\xcd\x36\x5c\xf5\x99\x55\x35\x5c\xf5\xc3\xb1\x66\x26\x60\xb8\x22\x07\x81\x8a\x84\x03\xd9\x06\x16\xa6\xe9\x54\xa6\xf2\x41\xb3\xd5\x81\xe7\x92\x0a\x5a\x64\xe0\xb9\xb4\x41\xe5\x47\x2a\x68\x82\x41\x95\x5b\x1b\xf6\xae\xc0\x27\x9d\xbb\x36\xd5\x36\xe5\x80\x8b\x36\xd5\x36\x93\x8a\xa7\x54\x8e\x35\x69\x13\x8b\xda\x74\xe4\x52\xbd\xa0\xe1\xc8\x35\x1d\xb9\x54\x11\xbf\x49\xea\xab\x4d\xb5\x48\x65\x1e\xa7\x5a\xc4\xf4\x5f\xaa\x0f\xed\xda\xe7\x49\xb5\x59\x22\x4e\xdf\x26\xb1\xb5\x36\x89\xad\x25\x9c\xd4\x36\xb1\x94\x6d\x12\x44\xf0\xd0\xeb\x86\x8b\xf6\xa7\xe9\x95\xa5\x8a\x26\xd5\x2b\x6b\x7a\x60\xa9\xa2\x35\xf5\x2a\xda\x52\x43\xd6\xe3\x1d\xb5\xa5\x86\x5c\xd9\x76\x2b\x34\x2a\x3e\xdb\xcf\x6a\x57\x14\x84\xa9\xb9\xf6\xb3\xda\xa4\x86\xdb\x02\x40\xb7\x65\x5f\xe2\xa1\x0d\xfb\xb2\xd4\x7c\xa4\x86\xdb\x92\xcf\x8b\x20\x47\xa2\xa8\xbc\x69\x29\x9b\x69\xae\x14\xe9\xcc\xaf\x69\xae\xb6\xf5\x20\xe2\x00\xd9\xb6\x95\x5b\x2d\xa5\x07\x41\x37\x2d\x65\xdb\xf0\x2a\xe3\x09\xb5\x4d\xac\xae\x6d\x80\x7b\xc6\x13\x6a\x5b\x1e\xec\xe8\xd0\x58\x2f\x3b\xa6\x34\xbf\x77\x78\xda\x2f\x24\xbc\x63\x89\x82\x0a\x81\x8e\x05\x3a\x3f\x3e\x76\xba\xdc\x2f\x7c\xf7\xae\x81\xc9\x38\x33\x5d\x03\xd3\x2f\xb0\x6d\xbe\x0e\x16\xe8\x58\x96\xf3\x73\x9f\xcf\x9d\x91\xf5\x2b\xfb\x58\xb6\x27\x07\x0a\xf4\x0b\xbf\xaa\x5f\xd4\x31\x65\x6a\xb9\xba\xd9\xae\x7e\x85\x9f\x3b\x36\xa7\x5f\xf8\xd2\xfd\x62\x26\xf3\x7d\x56\x4c\xbf\x9a\x3d\x46\x7f\x1f\x19\xe8\xe6\x9c\xba\xf9\xa5\x7c\x9f\xf1\x77\x92\x48\x7f\xba\xf9\x9b\x7c\x1f\x4b\xdc\xcd\xdf\x74\x73\x30\xf9\x2e\xef\xa1\xe1\x55\xf5\xfb\xd7\xc2\x99\xef\xae\x85\xe8\xe6\x2e\x70\x0e\xfb\x43\x15\x46\x7f\x70\x18\xf3\x73\x9d\xc7\x1e\x1c\xc6\xfe\x50\x01\x93\x9f\x23\x7a\xfd\xa1\x02\xa6\x5b\x30\x9c\xa9\x20\xea\x16\x0c\x77\xd3\x1e\xf9\x49\x7c\x0f\x91\xea\x0f\xf1\x97\x8c\xd3\xd2\x1f\xe2\x2f\xfd\x41\x25\xe5\xe7\x38\x78\xfd\x21\x9b\xdf\x1f\xbb\x47\x7c\xa3\x6b\xaf\xfa\xf3\xab\x52\x3a\x24\x33\x1c\x9d\xf2\xdd\x3b\x3f\x07\xfe\x76\x8a\x78\xff\x74\xb3\x19\x99\x28\x7b\x37\x9b\xd1\xcd\x5c\x64\xb6\xdc\x75\x33\x17\x9d\x92\xd9\x3b\xbf\x4c\xe3\x4b\xf8\xa0\x9b\xcd\xc8\x84\x23\xfa\x4b\x28\xa8\xbf\x76\xe5\x65\xce\xb4\x78\xdd\xfa\xd4\xe7\x39\x3d\x36\x90\xdf\x3f\x25\xe5\x3d\x0a\xa3\x7f\x4a\x8a\x01\xfa\x4c\xf4\xa0\x1b\xa0\xef\x1f\x8a\x25\x53\xba\xdc\x3f\x94\x48\xff\x80\x6c\x99\x1c\x73\xa7\x56\xf5\xfc\xf8\xdc\x59\x54\xdd\xf2\xd4\xfe\x11\xb0\xce\xe4\x98\xfb\xc7\x22\xe8\x9f\x1c\xfd\x3e\xde\x95\xa3\x5f\xfc\x9e\x3b\x42\x60\x79\x6a\x37\x40\x9f\x89\x32\x74\xcd\x74\xff\x05\xcf\x8f\x71\xeb\xc9\x09\x4f\xca\xd4\xc7\x64\xa4\xa3\xf2\xff\x74\x8a\x40\xef\xcc\x46\xb9\x9e\x40\x1c\x3d\xe1\x65\x65\x36\xc8\x75\xca\x43\xff\xf4\x94\x6d\x82\xd9\x48\x0e\xcd\xb8\x7b\xfe\x8e\x25\xe9\xc6\xdd\x7b\x72\x8d\xa6\xe3\x41\xf6\x04\xd8\xef\xc9\xee\x25\x66\x43\x9f\xa1\xa7\x5f\x30\xf1\x88\xbc\xb1\xec\x9e\x01\x3f\x39\x31\x8a\xac\xc8\xe7\x04\xf7\x48\x3f\xf7\x4c\x6a\xa4\x67\x62\x16\x39\x15\x9f\xa3\x7b\xc6\xb7\x33\x29\xe9\x6e\x7c\xbb\x5b\x98\x99\xa9\x28\xea\x3a\x26\xdd\x98\x77\x3a\x36\xad\x1b\xf2\xee\x94\x3a\xde\x39\x7f\x7f\x9d\x8c\xef\x05\xc3\xdd\xa9\x84\xbc\x73\x46\x94\x0a\x89\xde\x5e\xec\x55\x3e\xb0\xb4\x97\xc4\x5c\x15\x94\x62\xce\x30\xdc\x12\xc8\x5e\x30\xf0\x99\x28\x4c\xa7\x1e\xf2\xfc\xd0\xfb\x0c\x23\x2d\x81\xec\xc5\xde\x17\xe4\x4b\x97\xa9\x1b\xe9\xc6\x72\x77\x3d\xa4\x5e\x5d\x25\xe5\x78\x4d\xdd\x52\xbe\x5e\xb1\xe6\x99\x20\x4c\x27\xc2\xfd\xa7\x57\xbb\x4c\x10\xa6\x57\xbb\x5c\x9d\xe7\xc2\xc2\xae\x54\x6d\xf6\x6a\xf7\x0a\x93\x50\xf1\x3f\xba\xc1\x6f\x4f\xcc\xed\xba\x61\xbd\xaa\xb3\xcb\x41\x5f\xbd\xda\xe5\xfa\xeb\x72\xa5\x5d\xbb\x6c\xd0\x18\xb3\xdf\x75\xc5\x7a\x90\xee\xca\x14\x08\x77\x2b\xf4\x7a\x28\x5e\x95\x61\x84\xe2\x15\x98\x8f\x4c\x0a\xbb\x1b\x0b\xee\xfa\x67\xb9\x22\x0f\xfa\x67\x3d\x88\x2f\xe5\x5a\xf8\x9e\x22\x47\x11\xdd\x9d\x71\x4b\x7a\xd8\x15\xe3\x9b\xe5\x78\x25\x5d\xaf\xac\x37\x42\x3f\x9e\x4f\xdb\x9b\xa6\xa2\xb9\x22\xe2\x58\xa3\xde\x5c\x11\x16\xac\x79\x1e\x6d\x6f\x4e\x2e\x75\x6b\x87\x76\x86\xd6\xe4\x5e\xcb\x21\xad\x42\x43\xdd\x35\xd5\x27\x85\x54\xbd\xa9\x3e\xf5\xde\x32\xb1\x8e\xae\xf7\xd6\x5b\xf5\xb9\x2c\x2d\xa4\x31\x34\x62\x18\xbd\xe1\xf9\x74\xc3\x96\x39\x60\x81\x5e\x5e\x37\x7c\x48\xe6\xa5\xeb\xe6\x75\x6b\xdd\x32\x59\x91\x6e\xad\x5b\xef\xe8\xac\x42\x08\xa3\x77\x75\x56\xc7\x0b\x2e\x18\xda\xde\x5d\x4d\x9d\xa1\x95\xeb\x3e\x5d\xee\x0e\xad\x13\xe1\xf5\x58\xda\xde\x1d\x5a\x27\x6c\x55\x30\xc8\xbd\x13\xb6\xea\xba\x8d\xe5\xc2\x48\xe9\x36\x76\xdd\xc6\x72\x21\x7c\xba\x8d\xdd\x08\x25\x91\x98\xae\xdf\xd8\x07\x0a\xa0\x50\x96\xd5\x0d\x50\xf6\x81\x8c\x16\x12\x25\x9d\xba\xb2\x3f\x7d\x20\x2c\xe5\x3e\xde\x6a\x1f\x44\xd0\xfa\xc0\x70\x95\xfb\x86\xa6\x9a\x1d\xe5\xf8\xfc\x80\xed\x3e\x94\x1f\xbc\xcc\xf3\xd8\xe9\x9d\xee\x65\x1f\x88\x72\x21\x9f\xd2\xf1\x35\xcf\xcf\x92\x76\x7a\x3c\xc2\xe7\xb0\x65\x45\x23\x65\x1c\xb3\xeb\x72\x96\x9b\x09\x1f\x8e\x8c\x4a\xb2\x87\x38\x47\xd7\x0b\xed\x86\x18\x0b\xdb\xaa\xfa\x24\xfe\xd3\x27\xf1\x9f\x72\xa3\xdc\x0d\x27\xf6\x89\xfb\x51\x6e\x94\xfb\x54\xce\x26\xe9\x94\x72\xa7\x33\x19\x53\x33\x8d\x33\x7a\x97\x3b\xf3\x5c\x1e\xd2\xec\x72\xa1\x0d\x3c\xec\x3e\x09\xdb\x96\xbb\x24\x68\x3e\xf7\x63\x01\x0a\x68\x56\x9f\xab\x3e\x87\x81\xd3\x0b\xed\xb3\xfa\x1c\x02\xa4\x17\xda\x67\xd8\x3f\x66\x63\xea\x6d\x10\x22\xbc\x0b\x5b\xb1\xfa\x0c\xdf\x95\x2d\xa4\x7b\xfa\x94\x2d\x13\xb6\x50\xaa\xdd\x75\x60\xfb\x42\x79\x95\xe7\x0a\x68\x59\x1a\x5d\x21\x94\xd2\x17\xf0\xa4\xaf\xe4\xe7\xd0\xe4\x4b\xb6\x18\x16\x2b\xcf\xc3\x73\xba\x65\x44\xbd\x0e\xad\x40\xf3\x39\x5c\xb5\xc2\x21\x07\xdd\x10\x58\x37\x04\x56\x1e\xec\xaf\xf5\x6b\x7d\x91\x99\x28\x14\x2c\x74\x62\x5f\xe7\xc7\x77\x99\x36\xc3\x5d\x7d\x55\xfb\x8c\x87\xb4\xb4\xc9\xab\xfe\x9e\x3b\x53\xbe\x94\x96\x45\xf8\xa7\x10\xd6\xe9\x78\xd1\xe7\xe7\x93\xc6\xbb\x61\x5f\xc2\xbe\xa0\x70\x97\xac\x22\x14\xf5\x3c\x68\x87\xed\x72\xde\x9f\xc3\x3d\xb8\xb0\x6f\x95\xe6\x4e\x7e\x0e\xdf\xcf\x12\xb4\xbe\x5d\xba\xec\xf8\xea\xfa\xe1\x7d\x83\x63\xca\x53\xa5\x85\x34\xbb\x1c\x17\xb4\x29\xcd\x77\x99\xf1\x0d\x1e\xed\xfb\xc7\x16\x3c\x2e\xfd\xf5\xae\xbf\x5e\x48\x3c\x75\xfd\xf5\xbe\x95\xa0\xf7\xe2\x5d\x22\xce\xdd\xfa\xb4\xc2\xae\xb2\x6e\xb4\xab\x6f\x94\x75\x79\x59\x80\xd6\xa7\x75\xeb\xd3\xca\xcb\x54\x6e\x59\x40\x3d\xd9\x43\x40\x68\xe8\xd6\x8f\x8b\x72\x8a\xf2\x1e\x6d\x33\xf4\xeb\x07\xf1\xa3\x43\x8b\x43\xc3\x67\x18\x97\x6c\x79\x5f\x9e\xc3\x67\x18\x97\x5a\xee\x7d\xff\x7a\x3f\xdd\xb8\x8e\x64\x9d\x1f\xe4\x9f\x78\xd6\x00\x03\x9c\x1f\x47\x79\x14\xd9\xb8\x8a\xb4\x62\xb7\x12\xcd\x21\x38\xe3\x52\x70\x38\xce\x61\x5c\x20\xdb\x61\xac\xa9\xe0\x7f\x0e\xf1\xc1\xb8\x5c\x3b\x6f\xe6\x7b\x70\x63\x5c\x3f\x6e\x04\xcf\x35\xdb\x80\x1b\xf8\x81\x43\x80\x30\x6e\xac\x68\x21\x4c\x35\x6e\x04\x62\x58\x6c\x56\x08\x53\x8d\x1b\x3f\x75\x50\x4b\x76\x68\xa7\x89\x1b\x40\x38\x6e\x7c\xd2\xf2\xc1\xc9\x1b\x65\x39\xa8\x1b\xbb\xcb\xaf\x0d\xfc\x92\x21\xe0\x28\x6c\x6b\x1b\x02\x8e\x71\x3b\xa9\x6c\x6b\x1b\xa0\x8f\x3f\x43\xc0\x51\xbe\x23\x88\x43\xc0\x31\x00\x1c\x4f\x3a\x8a\x71\x58\x2b\x35\x1e\x3c\xad\xc2\x6e\xb5\xf1\xe0\x4a\x8d\x47\xb3\x82\x0f\x39\x04\x21\xc3\x9d\x87\x85\xc3\x14\x86\x35\x55\xe3\xc1\x3a\x96\xc4\x6c\x3c\xd4\xa9\x8d\x07\x57\xb8\xa4\x63\x59\xc7\xc3\x72\x1a\x0f\x86\xbf\x24\xb8\x2c\xb8\x18\x8f\x31\xac\x63\xa8\xc7\xab\x2c\x09\x2e\x0a\xe1\x93\x21\xb8\x18\x2f\xfe\x46\x49\x47\x71\x8f\x17\x65\x39\x04\x17\x25\x1f\xd1\x1c\x82\x8b\xf1\xda\x95\x0c\xf7\x5e\xbb\xf2\x3a\x91\x94\x3a\x0e\x6a\xa4\xfe\x0c\xc1\x45\x01\x38\x0e\xc1\xc5\x30\x9c\x56\x78\x55\x70\x31\x3e\x15\x5e\x3e\xfa\x7d\x7c\x18\xea\xf1\xb1\x17\xb1\xe4\xec\x73\x8c\x4c\x10\x52\x88\x73\x0d\x41\xc8\x10\x84\x94\x7c\xf4\xfb\x10\x84\x0c\xab\x84\x4a\x2e\x3e\x47\x57\xc0\x22\xb7\x87\xdf\x8e\x8f\x18\xe9\x70\xdf\x5c\xc9\x95\x76\xf1\xf4\xc6\x47\xa4\xa9\xb0\x2f\x6d\x58\x25\x34\xac\x12\x2a\xe5\xe2\x7b\xd8\x8b\xf1\x11\xa1\x28\xe5\x28\xe9\x21\x08\x19\x1f\xb1\xed\x52\x1e\x9e\x73\x36\x04\x26\x85\x08\xcf\x10\x98\x0c\x80\x89\x45\x92\xc3\xa2\x9e\x91\x5c\xd9\x04\xcc\x46\xc2\x89\x1d\x82\x95\x52\x98\xf0\x24\x0b\x92\x0e\x02\x75\xfe\x23\xb9\xda\x93\xf2\x5d\xe0\x32\x28\xe5\xfc\x30\x5c\x02\x41\xc3\xed\x6b\x23\xfd\x86\x91\x79\xd7\x99\x4c\x0a\x10\x27\x18\x8c\xe4\x30\x04\x30\x9e\x5d\x3b\x12\x59\xe1\x21\x80\x29\x78\xac\x43\x00\x33\x00\x30\x4f\x1c\x58\x37\x32\xf8\x6a\x64\x87\xc1\x2e\xb7\x91\x55\x50\xf9\xcb\xd2\x7c\x0e\x2e\x67\xbb\x57\x91\x82\xec\x6c\x64\x32\x30\x85\xc4\xe4\xc8\xd4\x35\x0d\x41\x4d\xa9\x74\x59\x50\x33\xf2\xaf\x2b\xc7\xd9\x1d\x82\x9a\x01\xa8\x79\x49\x2e\x0d\x41\xcd\x70\xf3\x55\xa1\x9e\x66\x88\x3c\x46\xd1\xea\x71\xfc\xd5\x28\xc5\xe7\x54\xef\x91\x78\xb7\xf8\x9c\xeb\x20\xe0\x5e\x71\x1d\x88\x50\x0a\x09\xb6\x61\xbd\xcf\x10\xa1\x14\xce\x01\x18\x22\x94\x01\x42\x79\xf1\xcc\x86\x9b\x8d\x86\x25\x36\x95\x7c\xd8\xb0\xc4\x66\x54\x26\xb2\x5e\x77\x85\xc6\x68\x2b\x5d\xf6\xa0\xd7\x51\xed\x72\xc5\xc1\xac\xd7\x41\x32\xa3\xe2\x60\x8e\x5a\xa4\xa1\x94\x44\x23\xa3\x12\x59\xab\x6c\xcb\x1f\x95\xc8\xda\xa8\x61\x1b\x74\x99\xa8\xf1\xf9\xa9\xd0\xe0\x5e\x25\x1e\x33\x2a\x16\xa9\x5e\xf5\x85\x86\x0e\x16\xc9\x54\xf6\xd6\x0d\x91\xcc\xa8\x0e\x0d\x7d\x2b\x92\x19\xf1\x1b\xda\x01\x3c\x43\x24\x33\xac\x74\xa9\xf7\x71\x7d\x46\x68\x22\x28\x6e\xb9\xeb\xfd\x4a\xab\xd2\x78\x97\x02\xce\x21\x92\x19\x51\x7f\xb4\x33\xe1\x11\xbe\x8b\x3c\x56\xfc\xa6\x11\x2e\xab\xb0\x7b\x04\x7d\x86\xe8\x66\x80\x6e\x5e\xec\xf9\x10\xdd\x8c\xf6\xd9\x95\xe3\x0b\x0c\x63\xce\x43\x74\x53\xa9\xf3\x1c\xa2\x9b\x21\xba\xa9\x37\x3a\x58\x74\x33\x1a\x5b\x38\x3c\x7e\x75\x34\x60\xc1\x68\xf8\xdd\x95\x6d\x09\xa3\x01\xd2\x46\x73\xb8\x04\x91\x46\x73\x86\x1a\xb2\x5c\x1f\x66\xb7\x29\xcb\xc6\xb5\x2b\x45\x3c\xc3\xb8\xf6\x60\x97\xcf\xa1\x1d\xc9\x68\x6a\x96\x86\x1f\xe1\x11\xad\xa3\x55\xfb\x52\x6d\xe3\x65\x1c\xe1\xd8\x9c\x5d\x5c\xb3\xd1\xc2\x36\x70\xd0\xeb\x71\xcd\xfe\xd2\xc8\x37\x62\x51\xa3\xc9\x49\x52\x1e\x43\x30\x35\x00\x53\x2f\x79\xa2\x61\x29\xc6\x30\x66\x5e\xf1\xc8\x46\x77\x15\x83\xa9\xee\x8a\x47\x36\x08\xa0\x9f\x1f\x7b\x9a\x7d\x17\x6e\xf4\xe4\xc8\xd1\xe5\x3d\xf9\x2e\xce\x6b\x7d\x0a\xcf\xa9\xb4\x7a\xb6\xf7\xe8\x68\x01\xd6\xe8\x3f\x0e\x31\xab\x5d\x3f\x42\x80\x55\x5f\x38\x2e\xc0\x1a\x5d\xf9\xc7\xd3\x1a\x5d\xf9\xef\x72\x8d\x0a\xd2\xd1\xab\x7d\x91\x6b\x1c\x6b\x35\xba\x5c\xeb\x0a\xd8\x8b\x86\x72\x13\xd3\x10\xb0\x55\xf2\x7b\x43\xc0\x36\x00\x6c\x2f\xe9\xa9\x31\x5c\xda\x03\xd3\x55\xf5\xb4\x86\x2c\x70\x8f\x50\xd5\x6d\x72\x8f\xd0\x70\x3f\x50\x25\x0d\x38\xac\x32\x19\x03\x47\xb5\xbe\x68\x9e\xa1\x7b\x35\x88\x97\x54\xdd\xa6\x81\xf3\x3a\x04\x76\x95\xf4\xde\x18\x44\x24\x87\xd5\x28\x95\x2a\xa2\x61\x35\xca\x00\xe0\xdd\x95\x8a\xa1\x21\xb2\x1b\xe3\xc7\x02\x4c\xdc\x90\x05\x6c\x33\xba\x2b\x27\x5f\x8d\x41\x2a\x6f\x58\xa1\x52\xa9\xfa\x19\x22\xbb\x21\xb2\xab\x1f\x26\x4e\x64\x37\x40\x76\x6f\xa2\x59\x91\xdd\x30\xf6\x5f\x29\x04\x1a\xc6\xfe\xc7\xe4\x44\x84\xfa\xa1\x65\xa6\xcb\x78\x62\x1d\xeb\x17\x09\x1a\x96\x5a\x94\x54\x13\xeb\x49\x94\x34\x40\x49\xaf\x86\x5f\x94\x34\x4c\xec\x7b\x0c\xeb\x30\xb1\x3f\x4c\xd8\x57\x12\x6a\x63\xb9\xc4\x0c\xf3\xd7\x94\xa0\xb9\x9c\x96\x82\x61\x97\x4d\xce\x0f\x77\xe5\xd4\x84\x5a\x70\x57\xce\x00\x8c\xdc\x35\xa1\xdd\x96\x42\xb0\x7e\xdd\x43\x2d\x88\x4c\x06\xc8\xe4\xe5\x54\xcd\x61\xe4\x7f\x98\x23\xf7\xa4\xd4\x61\x8e\x7c\x88\x4c\x6a\xc6\x3a\x6e\x5d\x70\x00\xca\xed\xc9\xa8\x63\xeb\xab\x6c\x05\x23\x63\x31\xb7\x82\x21\x32\xa9\x19\xad\x20\x32\x19\x9b\x8d\x58\x9e\x8e\x3a\xb6\x0e\xeb\x2e\x7e\x0f\x65\xb9\x75\x58\x77\xf1\x5d\xd8\xb2\xcb\xef\x5d\xd8\xa2\x1b\xb6\x65\x8b\x68\xa5\xe6\x44\x1b\xa0\x95\x41\x92\xe1\xae\x19\x45\xbb\xb5\x17\x5b\xb6\x70\x82\xea\x10\x99\x0c\x90\xc9\xcb\x26\x8a\x69\xea\x7b\x5e\x80\x33\x0f\x53\x9d\xa4\x1a\xfe\x4c\x92\x0c\x77\xa5\xba\x76\x5e\x04\xdc\xe6\xf5\x63\xcb\xe1\xf2\x14\x99\xcc\xeb\xc7\x82\x08\x68\x53\x1a\x02\x44\xec\x6f\x0a\x3d\xe6\xa5\x14\xe0\x86\x4d\x70\xc8\xf9\xe1\xdd\x72\xd3\x17\x94\xef\x34\x0d\x51\xcb\xcd\xf7\xaa\xfd\x73\x26\x71\xc3\xa6\x90\x62\x02\x29\xde\x38\x90\x75\x0a\x29\xe6\x6d\xf7\x70\x91\xa6\x7b\x55\xa6\x7b\x55\x2a\xbb\xfe\xe7\x8d\x6d\x98\xee\x4b\xa9\xb8\x4d\x53\x48\x31\x85\x14\xb5\x04\xcf\x15\xdf\xb5\x2b\xf5\xac\x8d\x29\x7c\x98\xb7\x4b\x0d\x7f\x68\xde\x08\xda\x14\x3e\x54\x7c\x9f\x29\x7c\x98\xc0\x87\xef\xfa\x9e\xbf\xfd\x99\x0f\x3e\xfb\x7c\x54\xc2\xd4\x69\xcd\x07\x9f\x7d\x3e\x72\x9e\x3a\xad\xf9\xc8\xf9\x47\x8e\x52\x93\x35\x1f\x39\xfa\x64\xdf\x65\x86\x1e\x34\xcb\x7c\x80\xc5\xb5\x56\x9e\x03\x16\x4f\xf3\x1f\x95\x42\xac\xf9\xe0\x23\xcd\xc7\xb5\x56\xe3\x83\xf6\x4a\xfb\xa4\xf1\xae\xc3\x35\x27\x52\x29\xc4\x9a\xc2\x96\xf9\x50\x88\x55\xc9\x60\xcf\x07\x41\x9b\x8f\x5a\x89\xa2\xab\xc9\xe9\x29\x7f\xe6\xa3\x62\xa6\xe8\x6a\x3e\x61\x1b\x20\xad\x1a\x07\x7b\xcc\x87\x60\xcb\x14\xde\xd4\x78\x68\x57\x56\x01\x6f\xbe\xfb\x28\xe1\x69\xee\x64\xbe\x78\xa2\x95\xda\xac\xf9\xe2\x89\x4e\xcf\x3c\xa9\xc4\x26\x27\x87\x9d\x9c\x1f\x86\x4b\x6d\xd6\x7c\x65\x9f\x3b\x4b\x6a\x7c\xbc\x8b\x53\x33\x5f\x25\x83\x7a\xad\xf9\x2a\x19\xaf\xeb\x19\x77\x72\xbe\xac\xe7\xf9\x82\x3d\x2a\x59\xc0\xe9\x39\x28\xd3\xf3\x4d\x6a\x30\x6d\x2f\x6b\x72\x0a\xab\x6a\x54\x9e\x93\x55\x6f\xb5\x8d\x4a\xbb\xa8\xaa\xf9\x56\xbf\xc7\x74\xbc\x38\xe8\x93\x23\x4d\xee\x1a\x91\xff\xd2\xca\x4f\x91\xd8\xf4\xf8\x13\x0f\x5b\x9d\x22\xb1\x09\x12\xfb\xf0\x33\xe6\x87\x39\x9b\x1f\x55\x5a\x71\x1d\xd7\x6d\x02\xcb\xce\x4f\x97\x56\xa1\x4d\x69\x84\x2e\xaf\xe3\x5c\xcf\x0f\x13\x37\xbf\x64\x75\x05\x4b\xf1\x23\x76\x39\x01\x69\x87\x56\xa0\x85\x34\xbf\xc7\x44\x7f\x0a\xe7\x47\xce\x36\x38\x2d\x62\x7e\xae\xa7\x8f\xe5\x1e\xd7\x43\xbb\x2e\x77\xf7\x75\xc4\xf5\xd2\xae\x42\xf7\xc1\xdd\x20\xb1\x39\x81\x6f\xe7\xa7\x49\xe3\x7b\x38\xf0\xd3\x94\x53\x10\x82\x9d\xa6\x9c\xa6\x27\xa2\x04\x45\xed\xf3\x03\xc8\x4e\xf7\x7f\xc4\x75\x34\xe8\xfc\x9c\x05\xb6\x81\xdc\x41\xa2\x74\x02\xf3\xce\x8f\xe3\x38\x1e\xd1\x14\xed\x4d\x0e\x46\xb9\x03\x2f\x7c\x8a\xf6\x26\x68\xef\xc3\xb9\x98\xa2\xbd\x49\x36\xea\xf6\x48\xd9\x29\xda\x9b\xe9\xb3\x09\x54\x4f\x52\x38\x01\x7d\x77\x70\xdb\xc2\x4c\x0a\x67\x3a\xc2\x59\x03\x4d\x91\x54\xaa\xe0\xc0\xf3\x18\x9f\x4b\x7e\x2e\xf9\xb9\xc2\xe7\x5c\xee\xe0\xc0\x3b\xf0\xf3\x67\x72\xb9\xa7\xec\x28\x50\x01\x49\x05\xea\x0e\x93\xe0\xb2\x86\xe9\x0e\x93\x99\x8a\x92\x81\x32\x4f\x72\x3e\xfd\x38\x7f\x2c\xfa\x4c\x72\x3e\xfd\x38\x1f\xb4\x2b\xe7\xd3\x8f\xf3\x28\x78\xb6\xa5\x9c\x1f\xfa\x0c\x4e\x9a\x29\x64\x0b\xf6\x27\x28\xf5\x9f\x1c\x8e\x72\x7e\x68\x83\xa8\xf6\x4c\x0a\x73\x92\xcb\x9c\xbf\x31\x05\xa3\x13\x30\xfa\x7d\xc7\xe1\x9e\x59\xcd\x28\xf0\xf4\x40\xdc\xe9\x71\x28\x33\xb3\xdc\x83\xa8\xf6\xcc\x0a\xae\x59\xb7\x20\xaa\x3d\x41\xa6\xe7\x87\xe1\xde\x2f\xcf\xe5\x2c\xad\x4a\xf3\xb9\x21\xcd\xae\xa0\x3e\xb2\x2c\x70\xf7\x49\xdc\x18\x16\x77\x9f\x4c\x81\xac\x07\xe9\x4e\x81\xec\xcc\xd5\xe1\x32\x95\xb9\xda\x67\xaa\x87\x83\x1d\x06\x33\x57\xbf\x87\xb6\x0c\xca\xf2\x66\x56\x5b\xe6\x90\x7d\x99\x77\x65\x95\x47\xb3\x04\x3b\x11\xa6\x47\xb3\x4c\xc1\x72\xb0\x13\x61\x0a\x96\x27\x60\xf9\xe3\x34\xa3\x29\x58\x9e\x45\x81\xe4\xd4\x8f\x59\x64\x5f\xf9\xe4\x7c\xf5\xb9\x26\x6d\x4b\x3b\xdd\x2b\x4a\x9a\x29\xbe\xe0\x24\x90\x59\x94\x34\x37\xd1\xc4\x83\xd2\x2f\x4a\x9a\x9b\x68\x82\x50\xf7\x2c\x78\x35\x53\x40\x1e\x8f\x7d\xd1\xd8\x14\x25\xed\x41\x8f\x14\x25\xad\x28\x69\x1c\xeb\x31\x4d\x19\x4e\x01\xb9\xe7\xfa\x4e\x01\xf9\x2c\xb2\x94\xf0\xf7\x2c\xb2\xb4\xb8\x9e\xd5\x73\xc5\xf5\x5c\xd0\xaa\x41\xf8\x7b\x16\xa5\x8f\xc3\x53\x0e\x8d\x77\x35\x36\x02\xfc\x20\xd4\x3d\x05\xf8\xb3\xec\xf8\x97\xbf\x7f\xf9\x80\x8f\x69\x0a\x72\x9a\x6e\x0c\x4e\x13\x99\xa6\x1b\x67\x55\x1d\x3e\xf9\x48\x50\x55\x1d\xd6\x5f\x97\x59\xcf\x02\xf7\x59\x71\x95\x83\x43\xc6\x66\x25\x9a\x38\x2b\x30\x2e\x38\x3c\x6c\x0a\xbe\x27\xe0\xfb\xcb\xac\xb5\x50\x6b\x92\x25\xbc\xe3\x45\xf8\x42\x0d\x19\x72\x99\x6d\x08\x93\xfc\xe1\xf9\x91\x86\x8b\x10\x94\x2a\xcc\x90\x2b\xd4\x11\xce\x90\x2b\x9c\xcf\x71\x07\xb1\xd8\xe9\xb6\x90\x19\xe1\x73\x74\x39\xf0\xda\x27\xbb\x43\x0e\x8d\xe7\xec\x1e\xe0\xfb\x23\xf1\x39\x1b\x15\xe4\xb3\x29\x40\x5c\x54\x31\xd9\x46\x71\x7e\x6c\xa2\x26\x68\xc8\x32\x1b\x23\x0e\x8d\x77\x09\xba\x4f\xc1\x72\x70\x8c\xd9\x14\x2c\x4f\x53\x86\xf1\xb1\x4e\x4d\x19\xce\x86\xc9\x8c\x8f\x75\xda\x28\xe2\x99\x82\xe5\xe0\xe2\x89\xd9\x5c\x2f\xa2\xdc\xf8\x58\x93\xa2\xdc\x09\xca\xa5\x48\xfd\xcf\x14\xe5\x4e\xd3\x7e\xf1\xe1\x38\x99\xf6\x9b\x5d\xd9\x23\x3e\x3b\xbb\xb2\x27\x02\xf5\xb0\xdb\x29\x02\x9d\x5d\x8d\x46\xde\x7f\x76\x6d\x49\x57\xce\x38\xf8\x76\x76\xb2\x4a\xb3\xab\xd1\x38\x86\x64\x76\x39\x2a\xda\x0c\xc0\xcc\x14\x6d\x4e\xd0\xe6\x17\xa5\xfc\xb5\x91\x37\x7b\x38\x87\xd6\x9b\xad\x11\x73\x90\x4c\x9a\x82\xd1\x48\xc7\xa7\x9f\x1e\x4e\x31\x07\xd8\x3b\xd8\xc9\x37\x07\xbb\x64\xe7\xd0\x02\x53\x52\x30\x87\x16\x18\xfc\x79\x07\x25\x05\x73\x28\x5f\x24\x1b\x0f\x2d\x41\x63\x44\x56\xb1\x45\xc2\x43\xb6\x8a\x6d\x5a\xc5\x16\xd4\xce\x4d\xc1\xe8\x1c\xca\x9c\x4b\x67\xe8\x0a\x0a\x50\x23\x23\xfe\x03\xa4\x38\x87\x32\x97\xf1\x1a\x86\x2b\x71\x28\x73\x84\xa1\xe7\xd0\x0e\x0c\x5c\xc1\x20\x0c\x3d\x05\xa8\x13\x80\x9a\x38\x81\x72\x0a\x50\xa7\x3b\x19\x82\xc8\xf4\x9c\x5a\x5b\x77\x32\x44\xc6\x65\x9c\xae\xd8\xe9\x8a\xe5\xac\x95\x69\xea\x71\x5a\x28\x17\xec\x22\x99\x53\x3b\x40\xb6\xf1\x0e\xa0\xd3\x9c\xc4\xb7\x26\x75\x70\x77\x50\x0f\x31\xa7\x42\xc2\xb6\x84\x78\x8b\xa4\x2e\x49\xae\xa0\xa2\xad\x89\x9b\x53\x11\xce\x3e\x57\xed\x9e\x72\x43\x54\x7b\x9a\x8d\x9c\x1e\x9d\x11\x9c\xa2\x36\x3d\x3a\x63\x4e\xcd\x00\xa5\x14\x73\x6a\x06\xe6\x8f\x7b\xe8\x68\x33\x94\x73\xaa\x50\x32\x33\x64\x86\x72\x7a\xec\x46\x70\xc7\xc5\x14\x7b\x4f\xb0\x77\xba\x51\x00\x4b\x97\x70\x7d\x36\x81\xe1\x5f\x3a\xd2\x16\xee\x87\xca\xc8\xc2\xfd\xb9\x14\x34\x2a\x38\xe6\xd2\xb2\x2e\x9d\x90\x72\xf1\x6e\x96\xa6\x00\x95\x9b\x77\x15\x20\xb3\x91\x41\x52\x60\x8a\xe5\xa7\x58\x3e\xca\x73\x86\x6b\xe6\x71\x9a\x51\xf4\xec\xdf\x69\x46\x71\x9a\x3d\x0c\xca\x20\xa7\x18\x7d\x82\xd1\xd3\x03\x69\xab\x8c\xcc\x1e\x06\x87\xe1\xcc\xed\x84\x8b\xbd\xa3\xa0\x01\xb6\xab\xdd\x2a\xbe\x10\xc5\x99\x29\x9c\xdb\x09\xaf\x97\xcf\xf9\x2e\x39\xaf\xa0\x32\x72\x92\x22\x3c\x3f\x70\x9e\xca\xc8\xb9\xd5\xb3\x5b\x8b\x54\x71\x4c\xb6\x0a\x4a\xec\xed\x11\xbf\x53\xec\x3d\xcd\x00\x86\xa8\x50\x9c\x3d\xc1\xd9\xe9\x3d\xfe\xc1\x12\x67\xaf\x4b\x03\x5c\x0f\x0c\x59\x17\xd0\x64\x5d\x2e\x67\xce\xdb\x59\x17\xcb\x79\x99\xa6\x8b\x7a\x5c\xc2\x75\x91\x07\x5e\x62\xe5\xa8\x67\xe9\x2e\x4b\xf6\xd6\xa5\xb1\xe5\x0c\x9e\x65\xea\x6e\x99\xa6\xb3\x74\x7a\x89\x9f\xd7\xe5\xd2\x65\x17\xeb\xba\x30\x17\xeb\xd2\x5c\x70\x06\xcf\xba\x10\xbe\x65\xb9\x5f\x80\xec\xd6\x15\x3e\xe7\xd0\xe2\xe6\xb9\x66\x9f\x19\xda\x77\xfc\xee\x25\xf6\x5e\x9e\x31\x11\xd4\x5e\x2e\xcf\x98\x58\xb7\xb3\x41\xd5\xc9\xba\xf1\x2d\xd6\xad\x17\xcb\x8e\x98\x75\x33\x43\xeb\x76\x36\xa8\x1c\x59\x62\xef\x65\xea\x2e\x8e\x02\xfd\xb3\xc4\xde\xcb\xb3\x1e\x22\x2a\xcf\x11\x5b\x5d\x37\xa9\x6b\x0b\xa3\x97\x67\x3d\x2c\xce\x7a\x08\x4e\x36\x59\x66\xf8\xd6\xad\xda\x3e\xa0\xeb\xfc\x61\xb3\x2e\xa1\x08\xba\xec\xc8\x80\xed\x89\x03\xa5\x96\x10\x7d\x81\xca\x9f\x8b\x43\x7e\xd6\x43\xde\x6a\x3d\x67\x69\x3c\x96\x59\xaf\x87\x1c\xd5\x02\xa9\x3f\xd7\x75\x64\x60\x3d\x60\xc7\xc5\xf9\xa5\x87\xc6\xbb\xd9\xef\x1d\x3d\x74\x68\xbc\x9b\x7d\x37\xfb\xee\xf1\x68\x96\xb0\x7d\x3d\xc7\x72\x1d\x5a\x82\x16\xd2\x06\xb4\x8f\xe7\xd0\x40\x8b\xb2\xc5\x43\xab\xd0\xfc\x5e\xf5\x7b\x89\x77\xc3\xef\x85\x7d\x39\xf6\x65\x3d\xb2\xe5\x09\xdb\x80\x55\x4f\xf8\xee\xd1\xcb\x8f\x47\x04\x2f\x21\xfa\x02\xa2\x27\x4a\xdb\x97\x10\x7d\x91\x88\x3c\x8f\x49\xfb\xa4\x39\xb4\x83\x82\xd6\x0b\x00\x5d\xef\x51\x30\xcf\x05\x0a\x5a\xe0\xf5\xf3\x23\x4b\xcf\x72\x5e\x9c\x51\x7a\x7e\x5e\x69\xbc\x0b\x44\x5f\x40\xf4\x43\x0b\x68\x21\xad\x43\xab\x37\xb4\x29\xcd\x2e\x1f\xe8\xbd\x5e\x54\xc1\x7a\x8f\xbc\x1d\x1a\xdf\xcb\x7e\xef\x08\x5f\x7c\x95\xcf\x65\xbb\x77\x98\xfd\x5c\x17\xf2\xc3\xc1\x12\xe7\x87\x66\x41\x37\xeb\x75\x59\xbd\xa5\x4b\x63\xb8\xca\x23\x85\x99\x87\xf6\xd7\x49\xf9\xe5\xf1\x13\x8b\x33\x4e\x9f\x8b\xfa\x9d\xf5\x3a\x09\x6f\x30\x81\xec\x7d\x5e\x24\x62\xcf\x8f\xcd\x3d\xf4\xde\x49\x00\xf1\x27\x54\xea\xf2\x34\x86\xf5\x7d\xf6\xf4\x78\x28\xeb\xc3\x49\x5b\x80\xfc\x43\x3b\x9f\x13\xc9\xaf\x4f\x46\x52\xbf\xb3\x3e\x65\xf3\x53\x36\x01\x3a\x4b\xd4\xbe\x48\xad\x3e\x1e\x91\xbc\x3e\x99\xc6\xa1\x0c\x87\xf6\x42\xb3\x8d\xe3\xf4\x1d\xda\xe1\x86\x48\x7e\x91\x82\x7d\x2e\x0e\x96\x5a\xe6\x59\x17\x87\x32\x3c\x1e\x9d\xbc\x3c\x8d\x61\x7d\x75\x48\xe3\x7b\xca\x26\x45\xa1\x87\x46\x5f\xc2\x3e\x2b\x9b\xec\x53\x5a\x9f\x4b\x96\x73\x4c\x0f\x8d\x76\x09\x74\xaf\xef\xc8\xab\xb7\x0c\x2c\x41\xfb\x02\xb4\x27\xce\xac\x59\x82\xf6\x95\x3e\xc4\x81\xfd\x23\x2b\xc9\xa9\xa4\x68\xde\xa8\x4a\xeb\x49\x57\xfa\x71\xef\xa0\xdd\x25\x42\x5f\x29\xc1\x15\x2a\x84\x56\x52\x0c\x93\x62\xf8\x20\x0f\x9e\x3a\xba\xc8\xde\x1e\x1a\xef\x66\xdf\xcd\x70\x80\x4d\xe2\x2b\xc9\xd1\x24\x47\x29\x11\x5a\x49\xf5\x0e\x92\x3f\x34\xbe\x97\xfd\x5e\xb1\xdd\x63\x7d\x96\x08\x7d\x81\xd0\x9f\x8b\x9c\xd3\x02\x9a\x9f\x9f\x25\x8d\x71\x80\x9b\x56\x52\x36\x29\x1b\x5a\x09\x2b\xb5\x92\x5a\x01\x8c\xb4\x52\xb5\x8d\xb0\xcf\x1f\x7c\x09\xfb\x1c\xbe\x7b\x5c\xa9\x25\x6a\x5f\xa0\xf6\xe7\x22\xd1\xb4\x44\xed\x0b\xd4\x9e\xb4\x16\x99\x18\xe7\x22\x85\x7c\x1e\xfb\xa0\x25\x69\x55\x9a\xcf\x75\x69\x76\x05\x25\x93\x41\x12\x0b\x24\x7f\x68\xbc\x4b\x52\x75\x71\x3e\xc4\xa1\xf1\xae\xac\xcf\x49\x16\x20\x54\x59\xe5\x9b\x55\xbe\x94\x12\xad\xec\x74\x80\xf8\x0f\xed\xb0\x4a\xc4\xbf\xf2\x8f\xa5\x98\x90\x4c\xbe\x78\x65\x05\xf7\x09\x9e\xab\xf6\xb9\xa2\xc9\x28\x11\x5a\x59\x53\x93\x6b\x97\x46\xff\x5c\xcf\x59\xc1\x25\x99\xb5\xb2\x82\x9b\xc3\x77\x0f\x2c\x5e\x59\x2b\x0a\xa0\x3f\x34\xda\x88\xdf\xbb\x4b\xda\x99\x5e\xd1\xfd\x02\xdd\x67\x8e\x8a\x5f\xa2\xfb\x05\xba\x7f\x2e\x4e\x48\x59\xa2\xfb\x55\x5c\xf7\x54\x1c\x2d\xd1\xfd\x2a\xdf\x90\x56\xa0\x4d\x69\xeb\xac\x8d\x72\x7a\x57\xd4\xa9\xd4\xf9\x3e\x17\x07\xa9\x2c\xeb\x7c\x57\x51\x57\xbe\xe8\x77\x90\xfe\x9f\x55\x0a\x33\x09\x14\x5d\x45\xc5\x58\x54\x82\xe4\xbc\x56\x51\xf8\x8a\xc2\x07\xec\x5c\x02\xf9\x55\xea\x2d\x8d\xae\xe0\x14\xaf\xa2\x40\x02\x45\x57\xd1\x4c\x15\xb5\x21\x4e\xf6\x12\xc8\xaf\xa2\x99\x7a\xed\x33\x5e\xe2\x2a\xaa\x82\x17\xf5\x20\xb8\x5f\x9c\x8c\x2a\x0e\x5b\x25\xec\xb2\x96\x8b\x14\xda\x12\xef\x2f\x12\xfa\x59\xb5\x2d\xde\x5f\xf5\xc7\xd0\xe3\x4e\x2f\x4b\x8e\x57\x55\x46\x5f\xcc\x40\x55\x15\x54\xad\x14\xa7\x7d\x2e\x13\xff\xab\x6a\xa5\xd8\x9b\xbf\xaa\xce\x40\xd5\x19\xe0\xb4\xb6\x55\xb5\x48\x55\xe5\x4a\x25\xfd\xaa\xba\x3e\xe4\xff\x9f\x8b\x4a\xfa\x55\x41\x1e\xab\xaa\x48\x41\xca\xab\xaa\x48\xab\x5c\x06\x29\xaf\x2a\x97\xab\x5c\xe6\x70\xef\x65\xb9\xf2\xaa\xca\x28\x87\x7b\xaf\xaa\x8c\x56\x65\x94\x93\x42\x57\x95\xa3\x14\x03\x1c\x1a\xef\xca\x96\x2a\x5b\xd0\x72\x16\x03\xac\xf8\x7c\x95\x25\x19\xca\x4f\x38\x5c\x0a\xa3\x56\x80\x3f\x57\xfc\x86\x8b\x5e\x0e\x2a\x5a\x17\x87\x91\x1e\x1a\xcf\x69\x23\x42\x8d\xa6\xb5\x0d\x1d\xd6\x70\xf9\x71\x8e\xf7\x32\xbe\xb1\xc2\xe1\x72\x8e\xf7\x0a\x87\x16\x0e\x8d\x3a\xf7\x65\x7c\x63\x71\x22\xc6\xe3\xd9\xde\xcb\xc3\x48\x57\xa8\xd1\xb8\xd2\x66\x85\x4e\x6c\x28\x2c\x9c\xed\xbd\x8c\x79\xac\x70\xf9\x25\x54\x95\x31\x8f\x45\xcc\x23\x53\x2c\xb8\x9a\xda\xab\xa9\xbd\x08\x0c\x2c\xcb\xa9\x57\x73\xa9\xa5\xe7\xfb\x6b\x23\xef\x01\x13\x8b\xc8\xc8\x79\xe5\xb4\xd6\x54\x64\x4d\x1b\x92\xf0\xf0\xac\x5b\x58\xcd\xa5\xc8\x59\x77\xcb\xba\x85\xd5\x9c\x68\xe5\xba\x55\xbb\xa5\x15\x4d\xc0\x81\xa6\x82\x6a\x3f\x0e\x15\x9f\xab\xd2\xe4\x06\xee\x92\x87\x49\xac\x16\x2c\xed\x84\xc2\x6b\x61\xbb\xae\x13\xee\x8d\x5c\x86\x53\x16\xe1\x94\x4c\xa6\x79\x51\x2d\x70\x7e\xe8\x32\x89\xd1\xd5\x09\x48\xac\x2e\x37\xf2\x01\x53\xab\x6b\x46\x7b\x7a\xa4\x9d\x61\x74\xb5\x4c\x57\x47\xb3\x77\x61\x75\x51\x4d\xd7\x4b\x23\x59\xba\xba\x0e\x47\xcf\x43\x1a\xef\x66\x9f\x73\x9d\xe8\x6d\x76\x22\x4a\xab\xeb\x92\x71\x46\xc4\xea\x0a\x4e\x97\x55\x20\xfe\x65\x18\x67\xf5\x6a\x9f\x81\x26\x54\x15\x9c\x1f\x04\x96\x04\xea\xea\x9a\xc2\xee\x9a\xc8\x89\xfe\xc9\x02\x42\x36\xee\x24\x59\xc6\x64\xd6\xd0\x6b\xa0\x16\x6d\xb9\x13\x70\x0d\x4d\x52\xc6\xd9\x1c\xe9\x47\xb3\x09\xd6\x93\x05\x02\x6b\x38\x5c\xe0\xf3\xb2\x40\x60\x0d\xfd\x7c\xea\xd3\xd6\xd0\xca\x8f\xc2\xf7\x48\x78\xae\xa1\x49\x1a\x0e\x0d\x48\xbd\x8c\xbf\xac\xe1\x4c\x92\x04\x5d\x26\xfe\xd7\x70\x18\x85\x61\x18\x43\x59\xc4\x50\x72\xc2\xea\x19\x43\x59\xd3\x61\x14\x5c\x33\x63\x28\x6b\xea\x12\x72\x6c\xfa\x9a\x5a\xd6\xa9\x15\x25\x0e\xb8\xdc\x58\xb8\xa6\x4e\x0d\x07\x0f\x2e\x37\x16\xae\xa9\x53\xc3\xc1\x83\xcb\x92\xee\x35\x7f\x43\x83\x05\x1e\x01\xb1\xa6\x36\x84\x4d\x89\xcb\xcd\x86\x8b\x53\x1f\x9e\x8b\xfa\xb4\x35\x9d\xc9\xe9\x70\x81\xde\xcb\x22\x84\x35\x75\x4c\x80\xde\xcb\x00\xc7\x22\xc0\x91\x73\x3e\x4d\x18\xcc\x58\x4b\x81\x64\xff\xe1\x32\x98\xb1\x96\x96\x90\xfd\x87\x8b\xc8\xc6\x9f\xb5\x74\x2e\x84\xde\xcb\x35\xb9\x5c\x93\xdc\x33\xb9\x96\xda\x6d\xc9\x02\x72\xb9\xcb\xd3\x0a\xd6\x92\x05\x1c\x20\xb5\x96\x2c\x58\xfa\x70\x5c\xbc\xb3\x2c\xd5\x5e\x4b\x8d\x47\xbd\xdb\x5a\xb2\x60\xfd\x86\x8b\xd9\x5b\xc5\x36\x44\x71\x9c\x27\xb8\xdc\xcf\xb8\x96\x82\x4b\x3c\x73\x2d\x4d\xe6\x52\x70\x85\xf7\x4b\x6c\xbb\x2a\x52\xc5\xb9\x83\x8b\x88\xca\xf9\x91\xcd\xa8\x32\xf7\x38\xae\xa5\x13\x42\x82\x77\x2d\x41\xc5\xd2\x7b\xe6\x28\xde\x65\x91\xc4\x5a\x4a\x90\xa1\x01\x03\x30\x8b\x00\x4c\x2e\x40\xf4\xed\xba\xdf\x1a\x07\x0e\xe4\x58\x5b\xe3\xb0\x65\x29\xc7\x18\xae\xad\xab\xbc\x0f\x67\x83\x53\xd0\xd6\x96\xa3\xdb\xb5\x11\x4c\xe4\xd6\x5e\x6c\xd7\x46\xf8\x9c\x6b\x63\xcb\x51\x4e\x3b\x5c\xd6\x4d\xac\x2d\xf7\xc8\x03\xaf\x2d\xf7\x28\x95\x78\x2e\xf2\xbb\xcb\x1a\x89\xb5\x15\x20\xf6\xa8\x2c\xab\xbc\xd7\xd6\x09\x09\x1c\x98\xad\x5d\xa1\xd8\x3b\x44\x5f\x1e\x42\xba\xb6\x66\x85\x94\xdc\xda\x32\x99\xc2\xef\x43\x3b\xcc\xf3\x60\xd2\xb5\x45\x64\x06\x2e\xb6\xcc\xdb\x3f\xe6\x65\x86\x26\xf3\x08\xfb\x64\x12\xfa\xdb\x22\xef\x7d\x09\x8b\xd9\x05\xb3\x3d\x31\x60\x5f\x3a\xc0\xec\x1f\xd9\x9e\x18\xb0\x29\xb9\x38\xb4\x7a\x68\x30\x74\x5f\x5a\x60\xee\xe7\xdc\x6e\xf2\xdc\x54\x5e\x1c\x1a\xdf\x83\xcb\xfb\x52\x6e\xc9\x3e\x6f\xea\x2f\xfe\xec\xeb\xc7\xd1\xe0\x5d\xac\xf2\xbe\x94\x51\x4e\x06\xd9\x86\x91\x36\xa7\x0d\x3c\xf7\x75\xf1\xbd\x62\x1b\x28\xdc\xfb\xba\x18\x07\xf1\xcf\x4d\x69\xc6\x73\xe3\x9d\x6e\xab\xc2\x37\xe1\xa6\x60\x4b\xe7\xbe\x60\xf2\x26\xda\x74\x1e\x7b\xa1\xd9\x2c\x5c\xbe\x49\x25\x6f\x42\x4f\xe7\x67\x4b\xe3\xdd\xf0\x5d\x94\xdc\x4d\x10\x65\x7b\x50\xc1\x26\x02\x75\x68\xbc\x0b\x97\x37\x11\xa8\xcc\x41\xce\xdb\x08\xd4\xa6\x86\xfc\xb9\x39\x2b\x64\x5b\x3c\xbe\x29\x02\x79\x6e\xe2\x20\xdb\x93\x4a\xf7\x9d\x7f\xb4\xc3\xe5\x1b\xe5\xb5\x39\x81\xf4\xb9\xaf\xf2\xd7\x5b\xe4\x37\x55\x21\xe7\x67\xf2\x4a\xe5\xd3\x78\x5f\xfb\x66\x21\x7a\x7d\xc1\xbe\xc3\x2e\xe0\x8e\xdc\x1c\x88\xb9\x8d\x3c\xed\xdb\x11\x51\x63\xb9\x8d\x3c\x6d\x22\x4f\x6e\x31\xda\xd6\x9b\x6f\x02\x50\xcf\x4d\xf6\x74\x3f\x84\x53\xf6\x03\x66\xbd\xef\xb3\x9a\x36\xd5\x23\x7f\x36\x37\xe7\x3c\x37\xa9\xd2\xfd\x60\x80\x37\x45\x24\x8f\x3b\x52\xb7\x45\x24\xfb\x49\xec\x60\x21\x32\xb0\x9f\x6c\x1b\xce\x3d\xd5\x17\x9b\x90\xd3\xf9\xf1\x5d\xb8\x66\x21\xc8\xe6\xb2\x9c\xc7\xdb\x0b\xb6\x9b\x63\x37\xf5\x20\xc1\x99\x63\x9b\x88\xd3\x9f\x4d\xac\xe9\xf1\xf2\x82\x4d\x7d\xfb\xf9\x81\x2b\x5c\x5e\xb0\x1f\xe7\x94\xad\xb4\x87\xf6\x42\x43\x5c\x9f\x1f\x57\x8e\xfb\xb2\x0d\x3c\x6d\x02\x4f\xe5\x7e\x0f\xc9\xfb\x70\xf6\xfb\xe3\xca\xb1\xd3\xdb\xfb\x70\x36\xb5\x21\x87\xf6\x41\x1b\xd2\xb6\xb4\x23\x0f\xd6\x81\xec\x37\xdb\x04\x13\xf4\x66\xbf\x87\x91\xba\xc9\x76\x6e\xa3\x3d\x9b\xfa\x8e\xe7\x7e\x8e\xfd\xdd\x46\x7b\x36\xfb\x6f\x9f\x1b\x44\xbd\x0d\xe7\x6c\xae\xa2\x79\x6e\x32\x8c\xdb\x30\xcd\x26\x4c\xe3\xde\x9c\x6d\x89\xfc\xfe\xec\x32\xc7\x50\xec\xcf\x2e\x7f\x76\x0f\x64\xbb\xbd\x32\x66\x7f\x8a\x2b\x9b\x5f\xf6\x87\xd7\xb4\x0d\xd3\xdc\x20\xd6\xfd\x81\x24\x36\x7b\x72\x9f\x9b\x43\x3d\xb7\xe1\x97\xfd\x39\x69\x9c\x92\xb6\x2d\x90\xd8\x9f\x9c\x7f\x8f\x2b\xbc\x3f\xe5\xf1\x23\xda\x74\x53\x1a\xb9\x3f\x0c\xc3\xfe\x9c\x8d\x97\x99\xb4\x18\x62\x7f\xce\x06\x17\xe3\x6f\xe3\x2a\x9b\xb8\x4a\x01\x61\x6e\xe3\x2a\x3b\x39\xb4\xf7\x68\xe3\x9d\x94\xd1\xe4\x4a\x64\xf3\xcb\xb6\xa2\x61\xb3\x0d\xf7\xb9\x29\x8d\xdc\xc6\x4b\xb6\xf1\x92\xfb\x3d\xea\x73\x13\x28\x39\x3f\x3e\x87\xb0\x58\xbd\xb0\x8d\x6f\xdc\x2f\xfa\xce\xd2\xf7\x9d\x94\x47\x0e\x4e\xdb\xa9\xda\x86\x33\xf4\xa2\xdb\xac\x4a\xd8\xc9\xe1\xb2\xcd\x79\x1b\xcb\xd8\xc9\x59\x63\x4b\xc9\x36\x96\xb1\x89\x65\x14\x4e\xcd\xde\x96\xc3\xef\xec\xd0\x30\x66\x9b\xdb\x59\xce\x4f\x93\xf6\x41\x5b\xd2\xf6\xbf\xfc\x3d\xd8\x49\xba\x2d\x4a\xd8\x44\x2f\xce\x63\xd2\x92\x34\x64\x94\xeb\x45\xb7\xa1\x8c\x9d\xe5\x00\xb0\x6e\x5b\x49\xbf\x33\x1a\xfa\xe6\x7e\xa6\x4d\x85\xc2\x9f\x9d\x5d\xa5\x5c\x31\xba\x73\xb1\x7b\xca\x2d\xe7\xb2\x6c\x62\x18\xe7\x67\x49\xa3\x5d\x39\x95\xe5\xd4\x97\x79\x0e\x97\x78\xe7\x6a\x5f\x8e\x27\xb5\x89\x6b\x9c\x1f\xb4\x3b\xbb\xab\xb7\x85\x0a\x3b\x03\xc6\xef\x0f\x2b\x95\x55\xd1\x59\x15\xcd\x21\xe1\xdb\xb0\xc5\x26\x6c\x51\x38\xdc\x7b\x1b\xb6\xd8\xdc\xd4\xf2\xdc\x6c\x96\xd9\xdc\xd7\x72\x7e\x9c\x0c\x64\xd9\xb0\xc5\x2e\x9f\xc3\x3d\x90\x70\x17\x39\x5a\x92\x4d\x30\xb9\x45\xe5\x55\x64\x15\x90\x70\x17\x59\x55\x72\x93\x16\xd0\x98\xdc\x22\xab\xd2\x4d\x1b\xb2\xca\xb8\xc5\x0d\xae\xdb\xc6\x28\x76\x51\xbe\xd3\x4b\xbb\x0e\x83\x60\x41\xc9\x7c\xce\x60\xc1\xae\x0e\x23\xe5\x04\xed\x95\x96\xa4\x15\x68\x45\x1a\x43\xe3\x0e\xff\xed\xe1\x9c\xbb\xba\xc4\x29\x5e\xdd\x16\x11\xec\x9a\x1f\x69\xb4\x91\x7d\xb7\xd8\x46\xd0\x86\x32\x5f\xb5\xbf\x64\x5b\xb7\x41\x80\x6d\x10\xe0\x26\xdb\xba\x3d\xc4\x73\x13\x0b\x78\xbc\x76\x62\x57\xd7\x41\x75\x26\x33\x86\xb5\x3a\x93\xd5\x75\x00\xd0\xda\xee\x1c\xd8\xec\x1c\x78\x6e\x80\xd6\x76\xe7\xc0\xae\xae\x0d\x80\xd6\x36\x32\xb0\x09\x06\x3c\x37\xd5\xab\xdb\x6d\x02\x9b\x60\xc0\x73\x73\x48\xeb\x36\x0a\xb0\x8d\x02\xdc\x54\xa0\xee\x70\x8d\x87\xd6\x96\x9b\xa7\x76\xe0\x27\x6f\x23\x03\x37\x39\xd3\x6d\x64\x60\x73\x5b\xc9\xa1\x9d\xbe\x70\x67\xc9\xf9\xf9\xd1\x0e\x9f\xdd\x62\xb0\x43\x69\x66\x43\xf6\x36\x32\xb0\x43\xa3\x43\xf2\x72\x5b\xf9\xb0\x43\x29\xe5\x10\xc0\x6d\x14\x60\x87\x53\x5e\xfe\xef\x73\x6c\xd3\xfd\xff\x18\x79\x77\x20\xec\xe6\xec\x73\xeb\xff\xb6\x30\x62\x37\x67\x9f\xd3\xde\x77\x73\xf6\x9b\x42\x5c\xe0\x2e\xdb\x16\xfe\xec\x96\x6c\xed\xe5\x5d\xbd\xb9\xa6\x0e\x00\xc3\x6d\x11\xff\x6e\x72\xad\xc0\x5d\x77\x25\x6c\x36\x22\x1c\x1a\xdf\x23\x54\xb4\x9b\xeb\x9d\x54\xe9\xb6\xa8\x62\x1b\x2d\xb8\x71\xd5\xb7\x45\x15\x9b\x8d\x08\xcf\x5d\x90\x44\xa3\x05\xbb\x29\x11\xe4\x4f\xb7\xfb\xb0\x77\xd3\xfd\xe2\xe2\x90\x6d\xb4\x60\xb7\x1f\xd7\x2a\xcf\xc9\xb5\xf6\xe3\x1a\xfa\xcd\x4a\x8b\xdd\x95\xf6\x82\xc4\xba\x39\x7b\x77\xb5\x7e\x65\x81\x76\x10\xd6\xee\x1a\x34\xee\xd7\xda\x6c\x1a\xf8\xb3\xbb\xc6\xab\xe2\x0a\x76\x8d\x57\x27\x04\x7b\xd7\x8f\xe7\x1c\x47\xb7\x7f\xf5\xe3\x39\x90\xce\xee\x1a\x2a\x4e\x8c\xd9\x5d\x43\xd5\x09\xa3\xde\x24\x4b\xb7\xb8\x7d\x73\xf9\xc7\xa1\x15\x68\x49\x9a\x6d\x30\xde\x61\x9f\xc5\xed\x37\x49\xd5\xed\xee\xec\x3d\x5c\xa1\x5c\x71\xba\x87\x8a\x66\xe0\x49\x7b\x61\xc9\x1e\x7a\xd2\x43\x89\x65\x9f\xfd\xf6\x44\xa0\x3d\x9c\x23\x70\xcd\x1e\x7a\xd2\x6c\xe6\x3e\xb4\x07\x5a\x91\x56\x8f\xc9\x48\x92\xfc\x9c\x53\xc9\x81\x36\x5b\xc8\xbf\x87\x53\x49\x02\x75\x8f\x6a\x57\x00\x85\xde\x75\xb2\x2d\xc3\xd8\x86\x01\x6e\x4e\x1a\xde\x62\xfe\x3d\x9d\x0e\xee\x35\xd9\x53\xe5\x33\x9d\x8e\x40\xf9\x4c\x87\x3b\x75\x0a\x83\x29\x9f\x3a\x85\x53\x9f\x23\x98\xf2\xa9\x61\x9e\xa4\x86\x6e\x4a\x59\xb7\xc7\x3e\xee\xe9\x42\x26\xf9\xba\xa7\x0b\x79\x2a\xba\x81\xee\x9e\x2a\xb3\xa9\x32\x23\xd3\xba\xad\xaf\xd8\xec\xe6\x7e\x1e\x8e\x1e\xdc\x62\xfe\x4d\xfd\xc4\xa1\xf1\x9c\xc8\x81\x62\x8a\xe7\xe1\x94\xab\x6d\x31\xc5\xa6\x98\xe2\xd0\x78\x4e\xd1\xa0\x98\xe2\x79\xb8\x49\x75\x5b\x4c\xb1\xa9\x95\x38\xb4\xd3\x97\x45\x8c\x6f\x53\x99\xf0\x3c\x14\xa1\x6e\x2b\x13\xb6\x20\xf8\x60\xc5\xff\x53\x31\x9c\x3f\xfe\xad\xfd\xe3\x6f\xff\xfd\x7f\xb4\x7f\xfc\xcf\xf6\x6f\xeb\xef\xe3\xbf\xfe\xf9\xcf\xf5\xef\xff\x39\xff\x75\xfc\xe7\xdf\xff\xdb\xa1\xfe\x7d\xae\xfd\xaf\xff\xbe\xfe\xb9\xfe\xd7\x7f\xfc\xd7\x3f\xc7\xfa\xfb\x3f\xfe\xe3\x1f\xe7\x2d\xfe\xfd\xef\x00\x00\x00\xff\xff\x80\x7b\x94\x6c\x70\x5a\x01\x00"); -func _fdacc ()([]byte ,error ){return _dc (_gbf ,"Adobe-GB1-3")};func _geac ()(*asset ,error ){_ca ,_eedd :=_acf ();if _eedd !=nil {return nil ,_eedd ;};_begd :=bindataFileInfo {_ag :"Adobe-GB1-UCS2",_bc :229592,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490562,0)}; -_fab :=&asset {_cd :_ca ,_dce :_begd };return _fab ,nil ;};var _abgg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x4f\x6f\xdb\x30\x0c\xc5\xef\xfe\x14\x3c\x76\x87\xce\x92\x5d\x47\x09\x50\x14\x58\x93\xa1\x33\x86\x6e\xc3\xb2\x76\x03\x86\x1d\xf4\x87\x0a\x04\xcc\xb2\x20\xdb\x87\x7c\xfb\x41\xa4\xe7\x1e\x82\x97\xfc\xc4\x47\x3d\x85\xac\x8f\xfd\xa9\x8f\x61\x86\xfa\x5b\x1e\xed\x19\x67\xf0\x21\xba\x8c\xd3\xb8\x64\x8b\x60\xf0\x12\x62\x55\xc9\x06\x5c\xb0\xf3\xff\x9f\x24\x76\xd0\xa9\xaa\xea\xa7\xc7\xcf\xe9\xf6\xe3\xcb\xf1\xf6\x13\x2c\x13\xae\xf0\xd8\x9f\xce\xd7\x69\xc6\xa1\x8f\x7e\x84\x96\xcd\x6e\x49\x6b\x03\x80\xfa\x3b\x5e\xc2\x34\xe7\x2b\xdc\x7c\x70\xa3\xc1\x77\xe0\xd0\x17\xfe\x35\x3b\xcc\x21\x5e\xe0\xe6\xe9\x51\x6e\xf4\xbc\xa4\xf4\x17\x07\x8c\x33\x34\xc4\x30\x3a\xd2\xaa\x3e\x3e\xeb\xf4\x45\x0f\x08\x6f\x49\x5e\xe9\x88\x4e\x5e\x31\x4f\x61\x8c\x20\x9b\xf7\x42\x74\x6f\xfc\xc7\x35\x21\xc8\xb5\xc5\xaf\x97\xfe\x04\xbf\x25\x48\x01\x4d\x77\xd7\xed\xfe\xac\xfc\xe7\xf3\xe8\xb6\xaa\x46\x70\x78\x1b\x5c\xd6\xf1\x82\xd5\xbd\x96\xba\x79\x80\x55\xa0\x53\x1d\xa1\x96\x51\x4b\xe8\x8e\x90\x66\xa4\x0b\x3a\xec\x09\x19\x46\xf6\x01\x94\x12\x5c\xe5\x18\x39\xaa\x3a\x14\x64\xb8\xbd\xf1\x05\xed\x9b\x82\x3c\x12\x2a\xa2\x94\xd8\x55\xf7\xba\xd5\xb2\x20\x12\xe8\xd4\x9e\xd0\x9e\xd1\x81\x8c\x82\x90\x65\x64\xa9\xaa\x25\x84\x8c\xb8\x97\x2a\xc8\x50\xd4\xd6\x18\xaa\xa2\xf6\xc6\x31\x72\x54\x45\xed\x4b\xa0\x55\xa0\x53\x25\x6a\xeb\xe8\x41\x24\x4a\x09\x46\x6c\x74\x64\x94\x14\xc2\xb1\xb1\x08\xec\x04\x21\xcf\x46\x4f\x37\x1e\xe8\x46\xcf\x46\xcf\xff\x04\xe5\xe2\x67\xb7\xfc\x6c\x29\xcb\xf8\xb7\x39\x94\xef\x65\xeb\xb6\x45\xb0\x4b\xce\x18\x67\xda\x39\x1a\x76\x19\x60\x88\xb8\x2d\x75\x1a\x53\x71\xd1\xe7\x5f\x00\x00\x00\xff\xff\x2f\x4d\x97\xcf\x00\x03\x00\x00"); -func (_gdd bindataFileInfo )Name ()string {return _gdd ._ag };func _gcf ()(*asset ,error ){_ecfe ,_dbg :=_gab ();if _dbg !=nil {return nil ,_dbg ;};_cbe :=bindataFileInfo {_ag :"Add-RKSJ-V",_bc :1493,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491099,0)}; -_febd :=&asset {_cd :_ecfe ,_dce :_cbe };return _febd ,nil ;};var _fced =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xef\x25\x39\x72\xee\xb7\xef\x4f\xf1\x5f\x5e\x2f\xec\x39\x49\xc6\x0b\x09\x34\x0a\xf0\x95\x2e\xae\x67\x21\xc9\xb0\x24\xdb\x80\xe1\xc5\x79\xc9\x33\x68\xc0\xd3\xdd\xe8\xe9\x59\xe8\xdb\x1b\xf9\xfb\x9d\xb1\x21\xfb\x02\xa5\x45\xe1\xa9\x8a\xca\xcc\xc3\x64\x46\x04\x83\x8c\x87\xc1\x3f\xfc\xdd\x1f\xff\xfe\x8f\x3f\xff\xf4\xfb\xd7\x1f\xfe\xe7\xdf\x7e\x79\xfe\xf3\xf9\xfb\xd7\xfb\xa7\x9f\x5f\xbf\x9d\x7f\xf9\xe5\xaf\xbf\x3d\xcf\xaf\xc7\xf9\xa7\x9f\x7e\xfe\xe1\x87\x63\x7c\xbd\x7e\x7a\xfe\xfe\xb7\x7f\x02\xcf\x3f\xdf\x7f\xfd\xe1\x87\xeb\xfe\x7f\xfe\xb7\xbf\xfc\x7e\xfe\xf9\x8f\x3f\xbf\x7f\xf9\x9a\x5e\xf7\xfa\xeb\xaf\x9f\x6b\xbf\xbe\xfe\xf0\xbf\x9c\x7f\xfa\xe9\x2f\xbf\xff\xf6\x6f\x5f\xff\xe9\x7f\x7c\xfd\xf2\x38\xff\xbb\xaf\xd7\xf9\xbe\xe4\xff\xf4\xdb\xeb\xfc\xed\xa7\x9f\xff\xf4\xf5\x9f\xfe\xeb\x7f\x3e\xfe\x1f\xe9\x3f\xff\xf5\xd7\x5f\xff\xaf\xf3\xcf\xe7\xcf\xbf\x7f\x1d\xc8\xce\x9f\x5f\xe0\x0f\x7f\xf8\xbb\x7f\xb8\xff\xfa\x8f\xf7\x3f\x9f\x5f\x7f\xf8\xaf\xff\xf9\x5f\xfe\xfb\xff\x09\x29\xc2\xff\xf5\xfc\xed\x2f\x3f\xfd\xf2\xf3\xd7\x71\xfb\x1f\x6e\xb7\xfa\x7f\xe5\xff\xf2\x6f\xbf\x9e\x9f\xa7\xfc\xf0\x87\x7f\xfd\xe3\xdf\xff\xd3\xfb\xfd\x97\xf3\xf7\xaf\x5c\x37\xaf\xf9\xdf\xff\xf5\x8f\x7f\xff\xf5\x7f\x1c\x5f\xc7\xed\x6b\xe4\xec\xf1\x7f\x7e\x2e\xfd\xdf\xfe\xe1\x97\xd7\xf9\xe5\x45\x3f\x1c\xbe\xc9\xf3\x97\xd7\xf9\x97\x5f\xef\xcf\xf3\xb7\xfb\xcf\x7f\x3a\x7f\xf8\xfa\xfa\x71\x1c\xe3\xf8\xf6\xf5\x63\xff\x97\xfe\x2f\xdf\xae\x56\xfe\x7f\xae\xf8\xe1\xb8\xdd\x3e\xb7\xfe\xf4\x52\xf4\xb7\x5b\xc6\xd1\xe7\xb7\xaf\x5d\x3f\xfc\x38\xc6\x44\x30\x6a\x7c\xfb\x3a\xf6\xed\x92\x54\x2a\x39\xbf\x7d\x8d\x40\xd2\x5e\xd3\xcf\x6f\x5f\x23\x2f\xc9\xf4\x31\xf3\x7a\xcc\xa8\xf1\xc3\x8f\x23\x94\x44\xcf\x6f\x5f\x33\xaf\x27\xa7\x92\xec\xfa\xf6\x15\x73\xff\xf0\xe3\x28\x25\x35\xd7\xb7\xaf\x1c\x79\x49\x42\x49\xe7\xb7\xaf\x8c\xeb\x9a\xf6\x9a\xbe\xfe\xa3\x6e\xd7\x93\x3b\x95\x5c\x8d\xa8\x79\xdd\xb5\xbc\x66\xc5\xed\xdb\x57\xd5\xba\x24\x41\x9b\x57\xdd\xbf\x7d\xf5\xed\x6a\xe1\x1e\x71\x49\x76\xbd\xbf\x7d\xf5\xbc\xae\xb9\x7b\xd7\xfd\x6a\xf3\x3a\xe2\x87\x1f\xc7\x43\xc9\xe3\x7a\xce\xbe\xad\x1f\x7e\x9c\x37\x24\xf3\x36\xfa\xdb\xd7\xbe\xde\x7d\xde\xc6\x52\xb2\xbe\x7d\x75\x1f\x8d\x68\x2b\xda\xd7\x45\xde\x76\x57\x72\xe7\x22\x45\x0f\x45\xcf\x6f\x5f\x3b\x7d\xd2\x4b\xc9\xc9\x45\x1b\xd1\x1b\xd1\xd5\x21\x3b\xe3\x92\x4c\x9f\x7d\x41\xf7\x38\x10\xf9\xf0\xf9\xbe\x3e\x59\x5e\x92\xab\xc1\x1f\xe8\x1e\x03\x91\x0d\xcf\xf1\xed\x6b\x37\x92\x9c\x4a\x26\x17\x4d\x44\xa1\x28\xbe\x7d\xed\xcd\xb3\x33\x95\x24\x17\xd1\x82\x2c\x45\xd7\xdb\x6d\x6f\xb3\x01\xc9\xdb\x0d\x5a\x90\xbe\xdd\x05\x7b\xf3\xbe\xf9\x54\xf2\xe4\xa2\x42\xe4\x0b\xd7\xfc\xf6\x75\xdc\x6e\xf4\x41\xd9\x82\x0b\xba\x07\xbd\x59\x36\xa1\x1e\x5c\xc5\xb3\xca\x67\xd5\x8b\xab\x14\x9d\x8a\xce\xeb\x2a\x3f\x43\xd9\x79\x7c\xe1\x9e\x3c\xbe\xed\x98\x1e\x5c\x45\x17\xb7\xdd\xd0\x74\xc3\xe4\xa5\xdb\x46\x5c\x8a\x79\xdc\xec\x99\x6e\x45\xcd\x55\xf4\x5f\xfb\xe1\x2f\x38\x6e\x36\xb5\xfd\x38\xcd\xc7\x99\xde\x68\xdf\x34\xed\x1a\xd7\x2f\x6a\x62\xf3\xb8\x14\xf0\xb8\xcd\x40\x94\x8a\x8a\x1b\x15\xb5\xa2\xbe\xae\x42\xd5\x0e\x55\xed\x50\xd5\x66\x21\xda\x8a\xee\x5c\x35\x10\x3d\x14\x3d\xb8\xaa\x11\xd1\x5f\xc7\x65\xca\xc7\x2d\xae\x0f\x74\xcc\xa1\x68\x70\xd5\x42\x34\x15\xf1\x39\x92\x67\xcd\x50\xc4\xe7\x9f\xb4\x7e\x96\x22\x3a\x27\x7d\x96\x4d\x55\x27\xe3\x40\xc4\x6b\x1f\x97\x06\x1e\xb7\xe4\x46\x35\x10\xe8\x0e\xde\x31\x6c\x44\xec\xeb\xaa\xa2\xa9\xf1\xb9\x11\x5d\xb2\xa9\xe1\x0b\x05\x5d\xd8\xbc\x76\xf0\x69\x8f\x44\xc1\x03\x51\xfa\xf8\xe4\x1d\x17\xad\x4f\x1f\x9f\xbc\x23\x86\x78\xa8\xf4\x47\xd2\xf7\x8b\x46\xa8\xe2\x87\x2a\x1e\x34\x55\x15\x3f\x92\x5f\x5c\xb4\x2b\xfd\xc5\xa2\xf5\xd8\xeb\x51\x3e\x5e\xf5\xdd\xdc\xa8\xfa\x1e\xaa\x6f\x4e\x44\x3e\xbe\xae\xfe\x3a\x6e\xb4\xab\xec\xaf\xe2\x3b\x62\xd6\x47\xf9\x1d\x2f\x38\x8e\x1b\x2f\x54\xf6\x04\x2e\xab\x53\x91\x3d\x71\xe9\xfd\x71\x60\x0a\x87\x7a\x0f\x74\x27\x4d\x55\xef\x8f\x4b\xd7\x8f\xe3\xe0\x17\xdb\xce\x69\x5b\xcf\x8d\x6d\xeb\x2f\xbd\x3f\x8e\x83\x8e\x56\xef\x0f\x95\xdc\x8f\xa6\x92\x1f\x97\x67\x3f\x0e\xdc\xcd\xd1\x2f\x45\x18\x5f\xf1\x8e\x6d\x23\x50\xf2\x03\x53\x18\x2a\xf9\xb8\x14\xfb\x38\x30\xd1\x31\x4a\x11\x8f\xaf\x40\xb4\x14\x5d\xb6\x7d\x5c\xbe\x7b\x0e\x75\x15\xe8\xae\x42\xc4\x2f\x8e\x4b\x19\x8f\x03\x53\x18\x33\x15\xf1\xd1\xd0\x9c\xa1\x62\x8e\xcb\x57\x1e\x07\xdf\x71\xe8\x2c\x87\x8a\x59\x34\x42\xc5\x1c\x41\xbb\xf8\x42\x23\xbc\x31\x30\xbe\xe2\xc6\x68\x45\x74\xb4\x8d\x08\xde\x71\x24\xad\x6f\x1a\x91\xb6\x3e\xb9\x6a\xf1\xac\xfc\x5c\xc5\xe7\x58\x37\x86\xdd\xbf\x8d\xae\xff\xad\x01\x77\x0e\x15\x0b\x38\x18\x60\xe7\x28\xbc\x14\xd0\xbd\x0e\x44\x76\xe7\x05\xc7\xb1\x07\xa2\xa1\x08\xc7\xb5\x14\x85\x22\xbe\xc3\xa6\x3b\x55\x86\xa1\x13\x44\xe1\x87\x4e\x70\xe0\x04\xc7\x8d\xbe\xd3\x09\x32\x80\x77\x2f\x6e\xf4\x33\x0f\xbe\xe9\x18\x57\xbb\x1c\xd4\xe7\x1c\xd8\x13\x8f\x9f\x63\x2a\x9a\x5c\x15\x88\x42\x11\x1d\xb5\x1b\xd1\x52\xb4\xb8\x6a\x23\xda\x8a\xae\x4f\xb3\x6e\x07\xa2\xbb\xa2\xab\x3b\xc7\x54\x74\x2a\x3a\xb9\x6a\x20\xe2\x85\x26\xca\x30\x70\x82\x53\x65\x00\x7a\xdd\x26\xa2\x52\xc4\x2f\x86\x22\x7f\x71\xfa\x8b\x34\x55\x65\x98\x93\x5f\x0c\x9a\x3a\xfd\xc5\xe9\x2f\xf2\x8e\xd3\x5f\xbc\x1c\xd7\x31\xf0\x8b\x53\xc7\x05\xf4\xc2\x5c\x67\xd8\x13\x41\x4f\xa4\x22\x7b\xe2\x82\x5e\x74\xf4\x0c\x9b\x8a\xfa\x0d\x0c\x71\xaa\x7e\x40\xaf\x9b\xa2\x56\x74\x59\xdd\x28\xfa\x3e\x5e\x8a\x5e\x5c\x45\x17\xaa\x91\xc0\x31\xca\xc7\x7f\x9a\x7a\x7d\xed\x75\x70\x63\xf2\xb5\x27\x7e\x71\xa0\xdd\x53\xbf\x08\xf4\x3a\xe8\x68\xfd\xe2\x4c\xfa\x8b\xf8\x60\xa6\xfd\x95\xf4\xd7\xa1\xc8\xfe\xba\xe0\x18\xed\xb3\x1e\x8a\x1e\x5c\x45\x47\x3b\xd2\x03\xc7\x58\x3e\xde\xd6\x27\xad\x3f\xe8\x7b\x2d\x65\x12\x57\x0e\x8c\x67\x96\x8d\x40\xa3\x17\x2e\x69\xaa\xd1\xc0\x31\x16\xbf\xa8\x43\x9d\x45\x7f\x1d\x74\xb4\x0e\x15\x38\x06\xd6\x31\x4b\x95\xc3\xc7\x2e\x22\xae\xa9\x8f\x9d\x45\xeb\x37\x8d\xd0\xa1\xce\x2b\x9e\xe8\x75\xf8\x78\x9b\x8a\x0d\x8d\xed\x8d\xf6\x2a\x36\xb4\x70\x82\x53\x1b\x02\x8e\xa9\xfa\xea\x63\x81\x5e\x04\x5d\x53\x1f\x0b\x1c\x53\xc5\xd4\xd2\x80\x5e\x43\x91\xef\x78\x45\x0d\xc7\x54\xe5\x8c\x1a\x66\xd3\xab\x9a\x55\xdb\xab\xd8\xe3\xa4\xa3\x0d\xa9\x67\x60\x8f\x8b\x90\x2a\xb4\xc7\x20\xb6\x98\xbc\x76\x18\x5b\x04\xb1\xc5\x1a\x8a\x5a\xd1\xd5\x13\x93\xa6\x86\x51\x03\xd0\x8b\x60\x29\xf4\xc4\x31\xf8\x45\xbc\x7a\x68\x7c\x40\x2f\x4c\x34\x26\x3d\x11\x93\x77\xfc\x88\x6c\xc4\x44\xef\x09\x96\x42\x13\x8d\x2b\x52\x38\x26\x56\x1b\x73\x29\xe2\x0b\x11\xf3\x84\x26\x1a\x93\x5f\xc4\xd1\x87\xc6\x07\xf4\x62\x84\x08\xa3\xdb\xc0\x1e\x27\x56\x1b\xda\x63\x68\x8f\x3e\x5e\x7b\x8c\xcb\xac\x8e\xc9\x80\x1d\x9a\x15\xd0\x6b\x7a\xa3\x8d\x20\x02\x99\xe9\xe3\xef\x8a\xee\x5c\x45\x7f\x19\x81\x04\xf6\x38\x53\xd1\x4b\x11\x1a\x4d\x64\x14\xda\x23\x70\xcc\xa2\x27\xb4\xc7\xd0\x1e\x7d\x21\xed\x31\x92\xfe\x62\xf8\x0c\x8d\x2f\x92\xfe\x22\x7e\x0a\x83\x92\x48\xda\xc5\xc8\x15\x1a\x1f\xd0\x2b\xbc\xd1\x76\x5d\x70\xcc\xa6\x0b\x35\x3e\xa0\x57\x28\xb2\xa9\x45\xeb\x89\x9f\xa2\x3e\x22\x5a\x4f\x94\x15\x06\x12\xc0\x31\x89\xeb\x43\xbd\x0f\xf5\x9e\x28\x2b\xd4\xfb\x68\xbe\x23\x43\x40\x18\x22\x00\xbd\xfc\x1c\xc6\xc1\x71\x69\xf1\x11\xb8\xda\x68\x9b\xaa\x46\x13\x8b\x85\x1a\x1d\x68\x74\xe0\x1e\x9d\x12\xce\xbc\x34\xfa\x08\xfc\x57\xaa\xd1\x40\x2f\x86\xf5\x74\x84\x01\x8e\xc0\x14\x52\x25\x4f\x42\xe3\x95\xde\xb8\x15\x3d\xb8\x6a\x7d\x7f\x28\x4e\x15\x1e\xe8\x45\x5c\x96\x86\x1e\xc0\x11\x58\x4a\x3a\x26\xa5\x36\x80\xca\xa4\x36\x00\x1c\x31\x14\xf9\x26\x8e\x49\xc4\x65\xe9\x98\x04\x1c\x81\xa5\xa4\x91\x33\xd0\xab\x78\xbc\x66\x91\x97\x29\x1c\xc1\x1c\x22\x1d\xa6\x72\xd2\xae\x52\x64\xbb\x18\x47\x02\x25\x4d\xc7\x91\x74\x1c\x21\x66\x49\x15\x3e\x83\xef\x10\x5e\xf5\x50\xc4\x77\x60\xd0\xc8\xf0\xb5\x2f\x25\x3d\x82\x90\x28\x55\x52\xa0\x17\xea\x97\xc6\xd7\x89\xde\x46\x2a\xf2\xd3\x30\x83\x5c\x0c\x2d\xe9\x0c\x32\xf1\xfd\x81\x0d\xa4\xea\x97\x49\x7f\x11\x38\xa5\x01\x4e\xe2\xfb\xa3\xf9\x45\x7d\x7f\xea\xfb\x3f\x22\x9f\x55\xbc\x63\xd3\xd4\xf2\x1d\x8b\xfe\x42\xe1\x53\x47\x9f\x68\x77\x30\xda\xa4\xda\x9d\x6a\x37\x0a\x9f\x6a\x77\x36\xcf\x22\xa2\x67\xdd\xe1\x02\x9f\xa5\xc8\x67\x11\xed\xc6\x56\xe4\xb3\xda\x67\xf1\x8e\xfd\x79\xd6\xa5\xb7\x89\x57\x77\xe1\x62\x16\x61\x50\xa2\xf0\xa5\x92\xd6\x40\x01\xd6\x0d\x51\x29\x2a\xae\xda\x88\x5a\x11\x8d\x20\x88\x2b\x83\x25\xe0\x48\x46\xe7\x52\x95\xcb\x60\x69\xf9\x8b\x77\x45\x77\xae\x52\xf4\x50\xc4\xa7\x5d\x36\xe2\xa9\x88\xa6\x32\xa2\x96\x2e\xbc\x26\x9f\x96\x50\xaf\xd4\xd5\xc2\x85\x27\xa1\x5e\xe9\xc2\x81\x5e\xf4\x57\x39\x17\x2c\xd4\x37\x19\xb9\x4a\xf5\x2d\xd5\x77\x2d\x44\xb6\x1e\x17\x9e\xc3\x1b\xfd\x45\x26\x7e\x8b\x31\xbc\xf4\xd7\x45\xb0\x94\x78\xe2\x32\x58\x2a\x83\x25\xc6\xf0\x32\x58\x02\x8e\xc4\x7b\x96\x4a\x5e\x2a\x39\x5e\xaa\x54\xf2\xc2\x39\x67\x78\xe3\x4b\x11\x1f\x8d\x91\xbe\x74\xce\xc0\xc1\x4a\xd2\x2c\x9d\x73\xa9\xe4\xf8\xb2\x52\xc9\x0b\x25\x4f\x42\xbd\x52\xc9\x4b\xe7\x8c\x4e\x94\xce\x19\x38\x92\x50\xaf\x9c\x31\x02\xbd\x98\x0b\x56\xda\x2e\x42\xaa\xc4\x60\xca\x90\x0a\xe8\xcd\x82\x47\xe9\xd5\x81\x23\x31\x98\xd2\xab\x03\xbd\x6f\x8a\xfc\x8e\x97\xdd\x1c\x89\x07\x28\x67\x04\x40\x6f\x42\xe3\x72\x46\x50\xc5\x2f\x62\x8f\x65\xcc\x03\xf4\x56\x57\x9d\x57\x16\xeb\x29\x89\xde\x57\x7d\x1e\xff\xe4\x2a\xfa\x4b\x1b\x02\x8e\x54\x7d\xb5\xa1\x62\x38\xd8\xc4\x29\xe5\x70\x00\x1c\xa9\x62\x1a\x06\x01\xbd\xf1\xea\x65\x18\xc4\x22\xde\x91\xaa\x9c\xc6\x07\xb4\x4b\x6b\xe5\x12\x4b\xb1\x9e\x92\x4c\x84\xca\x71\x04\xe8\xad\xc1\x18\x19\x01\x47\xaa\x00\x0e\x2d\xc5\xe4\x65\x1f\xde\x68\xeb\x35\xd1\x7d\x7d\x21\xd7\x0d\x67\x33\x8e\x6c\xc2\xd9\xd6\x44\x1b\x7b\x2c\x3a\xba\xb5\x47\xa0\x37\x06\xd3\xda\x63\x63\x43\x75\x53\x84\xe6\x34\x36\xb4\x09\x41\x5b\x1b\x6a\x6c\xa8\x88\x70\x5b\x1b\x02\x7a\x13\x8b\xb5\x36\xd4\xd7\xa8\x70\x14\xab\x54\xed\xa8\xd0\xd3\x5f\xdc\x88\xfc\x45\x26\x2f\x45\xbc\xd9\x46\x46\x40\xef\x8f\x88\x9e\xe8\xe0\x17\xb1\xc7\x36\xe6\x69\x6c\x68\x33\x5a\xb5\x36\xd4\xc1\xb3\x88\xb2\x3a\x7c\x56\xf8\x2c\x45\x9f\x67\x3d\xb8\x8a\x46\x38\x2a\x00\xbd\x19\xd3\x5a\xb3\x6a\x6c\xa8\xc2\xc7\xdb\x13\x04\x38\x9b\x10\xb4\x1d\x3b\x80\xa3\x88\x2d\x5c\xa1\x15\x7a\x8f\xfe\xfe\x50\xdc\x4e\x51\x3a\xf9\x34\x04\x15\xad\x3d\xf5\x65\x4f\xbd\x89\x63\x5b\x7b\x6a\xe2\x9f\x62\xc0\x6e\x2d\x05\xe8\x4d\x1c\xdb\x0e\x40\xcd\x6a\x4e\xa5\x37\xda\x6c\x8d\x87\xa1\xb8\x35\x1e\xe0\x28\x4c\xac\x1d\x93\x80\xde\xf6\x9d\x63\x52\x33\x26\x15\x8b\xad\xed\x98\xd4\xcc\x34\xf6\x54\x64\xbb\x98\x69\x14\x43\x5e\x3b\xd3\x68\xc6\xa4\xcd\x80\xdd\xda\x13\x70\x54\x7b\xe3\xa7\x5d\x74\x27\x91\x60\x6b\x62\xcd\x3a\x4d\x61\xae\xed\x84\x01\xe8\xed\x77\x68\x3f\x33\x71\x59\x2d\x45\x6a\x11\x71\xd9\x26\x5e\x6c\xed\xa9\x31\x8b\x5a\xd7\xd7\x72\xa9\x7c\x2e\x6d\x00\xb7\xbb\xb4\x81\x35\xbc\x31\x10\x71\xe3\x42\xbb\x59\x3f\x9f\x4b\xed\x5e\xd3\x46\xf0\x2c\x83\xfc\x45\xe8\xd2\x98\xd8\x52\x49\x81\x76\x2d\x7c\xcd\x87\xa2\x07\x57\x29\x7a\x2a\xe2\xa3\xe1\x9c\x97\x01\x0e\x70\xf4\xf0\x17\x4f\x45\x74\x0e\x31\xde\x72\x2a\xb0\xb0\x01\xd7\xb0\x97\x36\x00\xf4\xc6\x85\x2f\x87\x16\x72\x00\x87\x8b\xca\xcb\x71\x64\x31\x15\xd8\xe9\x8d\x4b\xd1\x65\x29\x2e\x04\x2f\x2d\x65\x69\x29\x84\x7a\x4b\x4b\x59\xd8\x80\x4b\xbc\x4b\x1b\x58\xda\x00\xc3\xc1\xd2\x06\x16\xe3\x88\xeb\xa6\xcb\x71\x64\x31\x42\x6c\x02\xc2\xa5\x46\x2f\x46\x08\x57\x31\x97\x1a\xbd\x08\xf2\x37\xc3\xc1\x72\x38\x58\x2c\x33\xba\xf2\xb8\xd4\x42\xa0\x37\xba\xba\x9c\x15\x2f\x7c\x7f\x97\x57\xf9\x2c\x7d\x3f\xeb\x6d\x4b\xdf\x0f\x1c\x8d\xfa\xae\xfa\x3c\x9e\xd1\xe6\x23\xf2\x73\x30\x6d\x75\x71\x6d\x39\x6d\x05\x7a\x13\x5c\x2e\xb5\x10\x38\x1a\xf5\x5d\x6a\xe1\xd2\xab\x7f\x6e\xf4\x1d\x51\xcc\x6e\xbe\xb6\x8a\xb9\x54\x4c\x86\xa9\xa5\x62\x2e\x14\xb3\x19\x6d\xb6\x8a\xb9\x59\xff\x6e\x74\x75\xeb\x89\xb7\x8a\xd9\x5e\xb5\x15\xa1\x26\x8c\xf4\xdb\xf8\x1c\xe8\xdd\x07\x22\xbe\xd0\x26\x3e\x5f\xa8\xef\xd6\x5f\x03\x6d\x42\x64\xbb\x24\x0e\x1c\x2e\x23\x6d\x95\x7c\xeb\xc2\x5b\x51\x28\x0a\xae\x4a\x44\xa9\x28\xb9\x8a\x46\xe8\xd5\x37\x2e\xdc\xa5\x9f\xad\x0b\xdf\x9a\x42\x7b\x23\x7d\xbf\x51\x4c\x97\x58\xb6\x8a\x09\xf4\xc6\xdc\xb7\x01\xce\x26\x8a\x77\x31\x60\xc7\xe7\x46\x3e\x1a\xbd\xba\xf5\xd7\x9b\x28\x7e\xb1\xc6\xb6\xd5\x42\xa0\x77\x2b\xf2\xb5\x2f\xcd\x3b\x9c\x74\x6f\x57\x31\xb7\x7e\xd5\xbe\x57\x0b\x37\x41\xc9\xc2\xc1\x6c\xb5\x70\x1b\x94\x10\x66\x6f\x5d\x2d\x70\x38\x89\xdc\xba\x5a\xa0\xf7\xf2\x46\x3f\x07\xde\xd7\xe9\xe1\xd6\xfb\x02\xbd\x89\x1a\xb6\x33\x02\xe0\x70\x96\xb7\x0d\x70\xb6\x3e\x9a\x70\x76\xeb\xa3\x81\x63\x25\x8d\xd0\x47\x6f\x7d\x34\xb1\xc5\xd6\x3a\x36\x3e\x7a\xa5\x8f\xb7\x57\x59\x33\xda\x2a\x93\x6b\x46\x1b\x83\x59\xa9\xc8\xd7\x36\x0c\x22\xe8\xdd\x86\x41\xc0\xe1\x04\x6d\xeb\xb6\x81\x36\x4b\xb6\x75\xdb\x9b\x30\x68\x61\x69\xdb\x30\x68\x1b\x06\xe1\x57\xb7\x61\x10\x70\x38\xf5\xda\x9a\xd5\x6e\x34\x87\x68\x66\x1b\x19\x6d\x0c\x66\xa9\xbe\x1a\xcc\xd6\x60\x88\x66\xb6\x06\x03\x1c\x4e\x84\xb6\x91\x11\xd0\x7b\xfb\x78\x3f\x1a\xf3\x19\x27\x42\xdb\xc8\x08\xe8\xbd\xff\x03\xb3\xe2\xed\x74\x07\x38\x9c\x01\x99\x29\x9d\x77\x06\x0d\xe7\x36\x77\x07\x8d\xbb\x81\xd3\xf6\xaa\xa5\x08\x2d\xa2\x3b\xef\x4e\x51\x80\x65\xc6\xef\xee\x14\xe5\xce\xa0\xb1\xe8\xce\xbb\x83\x06\xb0\x6e\x37\x45\xde\x78\x79\xf2\x63\xb3\xe0\x7a\x37\xb2\x01\xd6\x8d\x00\xf8\xae\xf1\xdc\x59\xeb\xdc\x84\x57\x77\x03\x09\x60\xdd\x30\xea\xbb\x9e\xf8\x4e\x6c\x61\x88\x70\xd7\x13\xdf\x2f\x1b\x58\x37\x02\xe0\xbb\x36\x70\xc7\xed\x6e\x96\x94\xee\x2a\x16\xb0\x6e\x36\x42\xb7\x7b\x67\xe5\xd1\xf1\xed\xee\x84\x14\x58\x37\x4c\xff\x5e\x9f\x67\x5d\x43\x9e\x63\xd2\x5d\x1f\x0b\x2c\xb3\x9a\x77\x75\xed\x8e\x7e\x38\x8e\xdc\xd5\x0f\x20\x8d\x3d\xef\xba\xdd\x3b\xfa\xa1\xef\xbf\xab\x1f\xc0\xba\x11\x26\xdf\xd5\x0f\x72\xd9\xc7\x66\x02\x6f\x32\x7b\x3e\x98\xa3\xea\xa5\x1e\x06\xc0\xc0\xba\x11\x39\x3f\x5c\x48\x01\x0e\x3d\xcb\xc3\x69\x2b\xb0\x6e\x4c\x48\x1f\x7e\xed\x07\x73\x54\x7d\xc6\x43\x4f\xfc\x18\x7c\x34\x7c\xd9\xc3\xaf\xfd\xb8\xbe\xf0\xa1\x05\x3f\x5c\x4f\x79\x5c\xce\x79\xdd\x0e\x45\x6f\x45\x6f\xae\xe2\x17\x5d\x4f\x01\xd6\x8d\xf8\xfa\xa1\xbf\x7e\xe0\x9c\x37\xb3\x83\x87\xce\x19\x58\xa6\x7c\x1f\x3a\x67\xe0\xd0\x9e\x1e\x3a\xe7\xc7\x15\x5f\xaf\xdb\xe1\xe3\x97\x22\x5a\xbf\xbd\xd1\xd6\xab\x72\xc4\xd7\x0f\x55\xee\x71\x79\xcf\xa1\xae\x3e\xf4\x9e\xc0\x32\x31\xfc\x50\xbf\x80\xf1\x37\x91\xed\x4a\x7a\x15\x7f\xfd\x70\xc6\xf8\xb8\x9c\xe0\xb8\x11\x26\x3f\x74\x82\x8f\xa2\x5d\x8a\xd4\x9c\xc7\x35\x3a\x0f\xd3\xb4\x0f\x47\x67\x60\xdd\xa6\x22\x34\xe7\xd1\xb4\x0b\x57\xf9\xd0\xd9\x00\xeb\x86\xae\x3e\x74\x36\x8f\x4b\x5b\x86\x69\xda\x87\xa3\xf3\xa3\xf9\x45\x26\xdd\x0f\x35\xe7\x71\x69\xcb\xb8\x11\x6e\x3c\x74\x23\xc0\x32\xef\xfc\xd0\x8d\x3c\xa0\x77\xdc\x70\x6f\x0f\xdd\x08\xb0\x6e\xe1\x8d\xa7\x22\xde\x11\xf7\xf6\x54\xe5\x80\x71\x43\x0b\x9f\x63\x28\xc2\x1e\x19\x5a\x9e\xae\xf0\x3d\x07\x4d\x65\x58\x7f\xaa\x85\x4f\x55\x8e\xd8\xf5\xa9\xca\x01\xe3\x86\xfa\x3e\x75\x30\xcf\x4b\xf3\x96\xfd\xf5\x74\x59\x04\x18\xb7\xb6\x11\x0f\x45\x74\x61\x28\x7a\x2a\xe2\x85\x70\x69\x4f\x15\x13\x58\xb7\xb0\xa9\xbc\xd0\xf3\x52\xa0\x71\x63\xc8\x7b\x3a\xac\x3f\x27\x96\x46\xdf\x3f\xd5\x9c\xe7\xe4\x17\x71\xf4\x4f\x35\x07\x58\x26\xd2\x9f\x46\xb8\xcf\xe0\xa3\xb1\xd6\xf0\x34\x1f\x0e\xac\x1b\xc3\xd4\xd3\x65\x11\x60\x1c\x38\xbe\xa7\xe1\x2c\xb0\x6e\x4c\x71\x9e\x86\xb3\xcf\xcb\xf1\x8d\xe3\xe6\x8d\xb6\x2b\xf8\xb4\xe9\xe3\xed\x9c\x2b\x76\x1d\x07\x6e\xe8\x69\xec\x0a\xac\x5b\x2a\xb2\xa9\x17\x8c\x03\x0f\xf0\x8c\x4f\x53\xe9\x09\xa6\x4b\x4f\x17\x4f\x9e\x57\x6c\x31\x0e\x16\x9b\x9e\xc6\x16\xc0\xba\x11\x6f\x3e\xb5\x8e\xe7\xa5\xfe\xe3\xc0\x6a\x9f\x2e\x07\x3e\x93\xef\x88\x7e\x3d\x75\xb5\xc0\x38\x98\xa3\x3e\x8d\x40\x9e\x7a\x5f\xf4\xeb\xa9\xf7\x7d\x5e\x11\xc8\x38\x86\x22\x9b\x9a\xf4\x2a\x81\xea\xd3\x08\x04\x18\xe6\x9d\x9f\x46\x20\xc0\xba\x95\x8d\xb0\xf5\x18\xdf\x41\x64\xf4\xd4\xf8\x9e\x45\xdf\xab\xab\xc6\x16\xc0\x38\x08\xec\x9f\xc6\x16\x4f\xfd\xbd\x8a\xa9\xbf\x7f\x16\xad\xc7\xd2\x9e\x5a\xed\x53\x7f\x4f\x24\xf9\xd4\xdf\x03\xc3\x84\xf5\xd3\xc8\xfb\xa9\xbf\x6f\x1f\x6f\x53\xe1\x51\x1d\x11\xdf\x1f\x8a\x9f\xc6\x19\xcf\x46\x19\x18\xcf\x9f\x0e\x07\xcf\x46\x19\x08\x89\x9e\x46\x10\xcf\xe6\xa7\xd4\x5b\xcd\xf5\x89\x6d\x1e\x7c\xad\x97\xb6\x09\x8c\x83\xc8\xe6\xa5\x6d\xbe\x06\x5a\x84\x27\x7e\x69\x62\x2f\xec\xe9\x20\x56\x7f\x69\x4f\xaf\xc1\xe3\x09\xb9\x5f\x1a\xcf\x6b\xf0\xf8\x56\x44\x53\x5f\x13\x3b\x27\x66\x79\xe9\xaf\x81\x71\x30\x68\xbc\xf4\xd7\xc0\x3a\x6e\x8a\x52\x11\x7d\x47\x08\xf9\x32\x1e\x00\x96\x66\xf1\xd2\xc4\x5e\x93\x2f\x6f\x53\x9d\x31\xbe\xae\xe9\xe1\x92\x68\xf1\x72\x7a\x08\x8c\x83\xe1\xe0\xa5\xd5\xbd\xc2\x5f\x4c\x44\xfe\x62\xf0\x4d\xc9\xf8\xbd\x34\x9e\x57\xf8\x8b\xbc\xb6\x96\xf2\xba\xcc\x62\x0c\x42\x84\x97\x66\xf1\x0a\x7e\x91\x21\xef\xa5\x59\xbc\x2e\x85\x1f\xc3\x1b\x55\x78\x60\x1d\x0c\x79\x2f\x15\xfe\x75\x29\xf9\x18\x8c\x5c\x2f\xd7\x01\x81\x25\x1d\xe3\xa5\xc2\xbf\x2e\x5d\x1d\x66\xe0\x5f\x86\xc9\x2f\xf4\x56\x13\x7b\xa9\xb7\x2f\x06\x8d\x81\x0d\xbc\x1c\x34\x80\x75\x30\xe4\xbd\x1c\x34\x5e\x97\xe6\x8c\x81\xef\x7f\xa9\x39\x2f\xa2\x86\x83\x85\xa7\x97\x51\xc3\x0b\x47\x0f\x91\x6f\xbe\xd4\x1c\x60\x69\x88\x2f\x1d\x3d\x30\x06\xce\xe6\x54\x99\x4e\xbc\xfa\x31\x14\x4d\x45\xc1\x55\x0b\x51\x2a\x4a\xae\x6a\x44\xa5\xe8\xea\xfb\x81\x83\x38\x55\x39\x60\xc9\x1c\x39\x8d\x2d\x80\x31\x70\x10\xa7\x8e\x1e\x58\x1a\xf5\xa9\x62\x9e\x78\xf5\x81\xe9\x9f\x2a\x26\xb0\x0e\x42\xbd\x53\xaf\x7e\x5e\xb1\xc5\x30\x1f\x7e\x1a\x5b\x00\xeb\x60\xe6\x7f\x3a\x17\x3c\x27\xad\xc7\x5c\x4f\x15\xf3\x24\x90\x38\xc8\x6a\x9e\x06\x12\x27\xba\x6a\x3e\xfc\x54\x57\x4f\x75\x95\x01\xfb\x54\x57\xcf\xc9\x77\x44\xa3\x4f\x15\x13\x58\xba\x91\x53\xc5\x3c\x2f\xcd\x1b\x03\x8d\x3e\x5d\x7e\x00\xd6\xc1\x47\x3b\x75\xe1\x27\x3e\x76\x10\xba\x9c\xfa\x58\x60\x1d\xac\x2c\x9d\x86\x1b\xe7\xa5\x66\x63\xde\x14\xf9\xac\xf4\x59\x34\x35\x3f\xcf\xba\xfa\xcb\x8c\xf2\xa9\xf7\x04\x96\x8e\xeb\xd4\x7b\x9e\x97\xca\x8d\x89\xae\x9e\xaa\x1c\xb0\x0e\x06\xff\x53\x57\x79\x5e\xae\x72\x98\x51\x3e\x75\x95\xc0\x3a\x42\x91\x5f\xfb\x82\x31\x55\x13\xa7\x61\xc0\x3a\x18\xe9\x4f\x1d\x2a\x30\xcc\x3b\x9f\x3a\x54\x60\x1d\x2c\x49\x9d\x3a\xd4\xf3\x72\xa2\x63\xaa\x00\xf5\x69\xaa\x04\x4e\x1f\x8f\x1b\x3a\x09\x83\x26\xf3\xdd\xd3\x30\x08\x58\x07\xab\x2e\xa7\x1e\x13\x18\xd3\x17\x72\xdd\xe2\xd4\x3a\x88\x1a\x4e\xad\xe3\xbc\x22\xa3\x31\x6d\x84\x91\xd1\x89\xab\x95\x73\x74\x6a\x30\x27\xd6\x31\x09\x24\xde\x5a\xc7\x1b\x53\x30\x15\xfd\xd6\x14\xde\x9a\x02\x6e\xfb\xad\x29\xbc\x51\x72\x53\xd1\x6f\x95\xfc\xad\x92\x13\x48\xbc\x55\xf2\x37\x4a\x3e\xcb\x67\xbd\x14\xf1\xd1\x08\x24\xde\x2a\xf9\x3b\xf8\x45\x26\x09\x6f\xbd\x1c\xb0\x0e\x02\x89\xb7\x51\x03\x30\x26\x13\xb4\xb7\x6b\x0d\xc0\x3a\x6c\x84\xbe\xf0\x8d\xe3\x9b\xa4\x6f\xde\xf1\x79\x3c\x1d\xcd\x4c\xe5\xed\x22\xd8\x9b\x68\x79\xe2\xef\xdf\xc6\x03\x6f\xa6\x5e\x07\xe1\xc6\xdb\xd0\xf8\x8d\x62\x06\xfe\xfe\xad\x62\xbe\x55\x4c\x48\x67\x6f\x15\xf3\x8d\xca\x99\x18\x7e\xab\x72\x6f\x86\x62\x07\xb0\xb7\xfa\xf5\x46\x4d\x02\x2f\xf7\x56\x4d\xde\xaa\x89\xaf\x5d\x9f\x67\x5d\x1f\x2d\x86\x22\xbb\x50\xf7\x88\x37\x79\xeb\x1e\x81\x11\x23\xbf\x3f\x14\xbf\x1d\xbc\x81\x75\x10\x8d\xbc\x55\xbf\xf7\x15\x79\x8f\x40\x6f\xdf\xce\xdf\x80\x25\x8f\xec\xad\xdb\x05\x86\xf9\xdd\xb7\x1a\xf9\x56\x23\xcb\x1b\xfd\x34\x68\x64\xe0\x46\xde\x6a\x24\xb0\x0e\x82\xe9\xb7\xe1\x3b\x30\x62\x7a\xa3\x5d\x40\xf8\xee\x80\xfd\x56\x49\xdf\x68\x64\x5c\x46\x1d\xd2\x98\x85\x75\xf4\x81\x68\x28\xa2\xf5\x97\xf1\xc4\x0d\x17\x2e\xac\xe3\x8a\x6c\xe2\xc6\x8c\x31\x60\x3b\x8f\xb8\xcc\x22\x64\x3b\x0b\xeb\xb8\x5c\x65\x48\x77\x16\x06\x19\xe5\x90\xee\x2c\x2c\x42\x84\x80\xfa\x7c\x01\xed\x4a\x7f\xf1\x8d\x88\x89\xdf\xd1\x88\xa6\x4d\x9d\xb4\xab\x68\xfd\xb4\x5d\x57\x30\xbe\x8e\xa6\x11\x64\x22\x85\x11\x57\x47\x07\xa4\xe9\x1f\xe3\xe6\x48\xbf\x78\x47\x6c\x20\x6e\x44\xbb\xb1\x78\x56\xd8\x08\xa2\xdd\x63\xd3\x2e\xb4\x3b\x20\x46\x8f\xb8\x14\x3e\x24\x46\x0b\xeb\xd8\x3c\x3e\x7d\xd6\x05\x23\x3e\xa2\x52\x44\xbb\x36\xed\x4a\xdb\x45\xb4\x1b\x57\x6c\x11\xb7\xb4\x5d\x44\xbb\xc7\x47\x64\x17\xa6\xfc\x79\xda\x85\x27\x16\xd6\xb1\x6d\xc4\xa7\x5d\x6f\xae\xa2\x73\x88\x07\x84\x35\xbc\xb1\xec\x2f\xcc\x22\x6f\x3c\xbe\x7c\x3c\x66\x31\x6e\xf4\x44\xf9\x85\x30\x8b\x3c\x68\x6a\xf9\x85\x88\x50\xc7\x8d\xaf\x5d\x36\x82\x08\x95\xc4\x70\x48\xaa\x8e\x1b\x53\x4d\xc2\xa0\x80\x4d\x7d\x41\x72\x15\xed\x6a\x7b\x02\x2d\x84\x62\x18\xb7\xf6\xf1\x68\x61\x5e\x9e\x38\x24\x42\xc7\x71\xe9\xd7\xc8\x6b\xe4\x8a\x43\xfd\x82\x0f\xbd\xc6\x15\x52\x05\xa4\xe8\x0b\x78\xa1\x6b\x84\x08\x59\xcf\x71\xe0\xf1\xc6\xe1\xb3\x4e\x45\x3c\xfe\x72\xa8\x71\xa8\x4c\x07\x93\xb5\x71\x05\x38\x01\x45\xf9\x02\x3a\xba\x78\x3c\x61\x63\x1c\xf3\xf2\x65\x70\x13\xe3\x98\xde\x78\x8d\xc8\x23\x8b\x76\x31\x33\x13\x16\xdc\xc4\x38\x98\x99\xc5\xc1\x34\x2c\xb1\x8e\x23\x6c\xea\x05\x6b\x4c\x45\xad\x88\xd6\x5f\x21\x7b\x40\x77\xfe\xc0\x1a\x93\x17\x62\x58\x8f\x23\x68\x57\xd3\x88\xb0\x5d\x28\xe6\xb0\xbf\x54\x4c\x38\xcc\x83\x6c\x6b\x1c\x2a\x26\xb0\xc6\xe5\x27\x42\x3e\x73\x1c\xf8\x58\xf2\xa8\x71\xa8\x5f\x07\x53\x27\x38\x93\x71\x30\x75\x8a\xe3\xd2\xaf\x91\xe8\xea\x91\x9f\xc7\xd3\x13\x93\x46\xa4\x3d\x71\x8d\xee\xa3\xd0\x2f\x29\xce\x01\xad\x79\xb1\xfd\x23\xe0\x36\x5f\xb0\xb8\x8a\x67\xa9\x72\x87\x2a\x17\xf4\x84\x2a\x07\x8c\x3a\xe8\x42\x55\xee\x50\xe5\xfc\xb4\xaa\x1c\xec\xe4\x51\x7e\xda\xb6\xa3\x71\xa2\x03\xcf\x24\x53\x59\x18\x64\x48\xe3\x68\x5f\xbb\x6d\x17\xef\xa8\x16\x1e\xac\x6e\x90\x21\x8d\xa3\x6d\x04\xe1\x2c\x8c\xcf\x90\xbc\x2c\x8c\xe2\xd3\x4a\x5e\x16\x46\xf1\x1d\x87\xee\x11\xc2\xf2\x1a\xe9\x55\x5b\x11\x2f\x44\x4f\x0c\xbd\xdc\x60\x49\x8a\xa0\x37\x60\x2d\x5f\x70\x79\x80\xf2\x46\x3d\xd3\x50\x31\x2f\x7f\x1f\x32\x95\x63\x5c\xa1\xe2\xa8\x6b\x44\x8d\xc1\x92\x41\x8c\x49\x53\xcb\x67\x9d\x8a\x68\x6a\xf9\xac\xb7\xa2\x6b\x0e\x32\x9a\x46\x10\x5c\x0a\x83\x4c\x66\x8c\xf0\x85\x58\x6b\x18\xf8\xfb\xa1\x46\x0f\x42\x04\x32\x99\x31\x74\x8f\x90\x9f\x17\x24\xd0\x18\x61\x53\x83\x77\xfc\xdc\xe8\x3b\x32\xf3\x1f\xf8\xe8\x91\x3e\x3e\xe9\x2f\xfc\xea\x48\x1f\xcf\xe0\x0f\x09\x34\x06\x83\x7f\x8c\xe4\x17\x17\x8f\x57\x57\x47\xa2\x00\x1f\xd1\x4b\xd1\xa5\x98\xb5\xc7\x77\x87\xe2\x90\x73\x1d\xf0\xa1\xd7\x40\xe1\x21\x45\x5f\x90\x3c\x84\xbe\x53\x49\x07\xd3\xf4\xb1\x69\xb6\x4a\x0a\x8c\xc6\x97\x0d\x95\x14\x06\xf5\x1a\x9f\x1b\xed\xe1\x0b\x46\x1f\x3c\xbe\xed\xe1\x0b\x16\xbc\xce\x70\x0b\x94\x30\xc8\x7d\xc6\xd0\x2f\x0e\x34\x72\xfa\x78\x35\x12\x18\x6c\x16\x8a\xc1\xb0\x1e\x03\x57\x49\xac\x1e\x43\x57\x09\xf5\x7a\xb0\x7d\x27\xa4\x5e\x0b\x6b\x1e\x8a\x86\x22\x5a\x7f\x85\x1b\x21\x83\x5a\x58\x44\xf4\x31\xd5\xc8\x49\xbc\xc8\x9e\x91\x80\x60\xfd\x81\x35\x31\x31\x79\xd6\x31\x19\x64\xc9\x57\xc6\x74\x90\x05\xd6\xbc\x26\xa4\x31\x55\x65\xa0\x8b\x91\x5e\xea\x75\xc0\xa0\x1e\xa4\x30\x43\x06\xb5\xb0\xe6\xa1\x88\x2e\x84\x08\x3d\xd8\xca\x10\x12\xa1\x03\xa6\xf3\x62\x5a\x11\x53\x5d\x9b\x8c\xce\x24\x27\x63\x3a\x3a\x03\x6b\x32\x00\x49\x84\x16\x06\x3c\xfc\x90\x08\x2d\xac\x89\x37\x90\x08\x1d\x13\x5d\x6b\x54\x79\xaa\x6b\x93\xd1\x79\xda\xab\x8e\xce\xb0\x9e\x07\x69\xc7\x90\xf5\x2c\xac\x39\xe8\x9c\xb4\x57\x19\x77\x1b\xb7\x3b\x1d\x77\x81\xc5\x44\x26\xa6\xe3\x2e\x4c\xe5\xd1\x68\xa1\x4c\x65\x61\xcd\xc1\x6b\xab\x85\x10\x8e\x07\x14\xfa\x90\x70\x2c\xac\xe9\x77\x2c\x5f\x08\x95\x23\x13\x19\x12\x8e\x85\x35\xaf\x59\x71\x48\x38\x0e\xe8\xc3\x03\x12\x7a\x4c\x9d\xe0\x6c\xdf\x91\xef\xa8\x7e\x4d\x62\xc4\xa5\xe6\xb4\xef\xa8\xca\xe1\xf1\xa6\x2a\x07\xc9\x78\x2c\x3f\x5a\xdb\x2e\x5c\xe5\x9c\x36\xc2\x76\xa1\x98\xd0\xa5\x43\x0e\x72\xc0\x02\x1e\x8b\x2f\x14\xf3\x23\x42\x57\x19\xb9\x60\x07\x5f\x70\xd9\x23\xcc\xdb\x08\x96\x52\x85\x35\x19\xb9\xc2\x20\x2e\x18\x51\x49\x3b\x46\x38\xa2\x02\x0b\xde\x70\xc8\xe2\x0d\x98\xbb\x63\xe1\x63\xc3\x11\x15\x58\xd3\xc7\x3b\xa2\xc2\xb6\x1d\x0b\x57\x19\x7a\x29\x60\x4d\xc2\x8d\xd0\x4b\x01\x03\x06\x63\x48\xc6\x8d\x50\x4d\xa6\x22\x7f\x11\x35\x21\xd9\x16\xa1\x9a\x84\x6a\xc2\xc8\x25\x3f\x37\x82\x59\x0b\x7c\xc2\x88\xf2\xf1\x78\x26\x66\x8c\x11\x7a\xa6\x40\x4d\xd6\xe2\x85\x54\x93\x50\x4d\x18\xdf\x42\x35\x89\x6b\x7c\x1c\x50\xe6\x02\xfa\xee\x07\xd6\x0c\x6f\x7c\x29\x42\x4d\x08\x41\xe5\xe7\x46\x10\x9e\xc1\x8d\x8e\xd0\x0d\xb1\xf1\x72\x40\x27\x8b\x70\xf8\x04\xd6\x0c\x1e\xaf\xe6\x00\x03\x0a\x58\x84\xce\x0a\x62\xef\x62\xda\x1a\x12\x7b\x03\x62\xef\x80\xb6\x15\x12\x7b\x03\x32\xef\x9a\xc4\xfa\xa1\xe6\x00\x03\xaa\x55\x84\x9a\x03\x2c\x26\xb7\x21\xd7\x37\xe0\xfa\x2e\x76\x84\x86\x5c\xdf\x80\xd8\x3b\xe0\x55\x85\xc4\xde\x80\xcc\xbb\xa0\x5e\x47\xea\xe5\x60\xdb\x8e\xcd\xb0\x2e\xdb\x56\x58\xcc\x77\x23\x55\xb9\x64\x05\x07\x8a\x4f\xa4\xce\x0a\x58\xf3\x9a\xf8\x85\x9c\x5c\x61\x40\xde\x09\x39\xb9\x01\x01\x77\xcd\x52\xf4\xf9\x45\x5e\x1b\x9d\x48\x16\x75\x84\x05\x41\x3b\xd2\x01\x1b\x18\x90\x77\x42\x9a\xae\xb0\x66\x79\x23\x3d\x01\x01\x77\x40\xcb\x09\x09\xb8\xc2\x9a\xb8\xb4\xd4\xcb\xc1\xb6\x1d\xdb\xd7\x56\x31\x81\x35\x19\x8a\x65\xdb\x46\xa2\x72\xdb\xa6\xaa\x72\xa9\xca\xe1\xf8\xa4\xd6\x06\xdc\xd9\x41\xb2\x2e\x20\xd0\x7e\x60\x4d\x3c\xb9\x3c\xda\x48\xd5\x64\xf1\x2c\xd5\x24\x55\x93\xfe\xfe\x02\x75\xa4\x5a\x04\x35\x76\xb0\xef\x33\xa4\xc6\x06\x4c\xd4\x49\xa2\x33\xca\x01\x08\x56\xea\x9a\x44\x10\xb2\x52\x03\x8e\xe9\xbc\xe1\x9c\xcb\xaf\x55\x3a\x08\xec\x49\xbe\x69\xd4\xf5\x1d\xe6\x6d\xde\x10\x3d\x14\xf1\x1d\x88\x9c\xcb\xef\x50\x57\xa7\x4f\x72\x66\x51\x76\x7a\x39\x26\x2d\x6f\xfc\xfc\xe2\x9b\xab\x68\x97\x81\x13\xb0\x26\x31\x8b\xfb\x8f\x03\xbe\xea\x24\x1b\x16\x65\xdc\x0f\x51\x75\x4d\x62\x16\x89\xaa\x51\x41\xbb\xb0\xf3\x32\x4a\x82\x82\xba\xe6\x52\x64\x23\x92\x67\x61\x29\x92\x4b\x85\xc5\x0a\x4c\x94\xdf\x14\x26\xe9\x64\xe7\x64\xc8\x24\x15\xd6\x5c\x34\xd5\x49\x24\xbc\xce\x79\x43\xe1\xe5\x75\x06\xbc\xce\xc5\x3a\x4d\xc8\xeb\x0c\x88\x9b\xf3\xb6\xbc\xca\xd7\xbe\x60\xcd\xcd\x3b\xea\x33\x80\x79\xb3\x11\x0e\x2d\xa5\x1b\xd9\xbc\xa3\x6e\xa4\xd8\xbf\x7d\xf3\xf1\xea\x47\xa9\x1f\x9b\xc7\xab\x00\x70\x39\xe7\xed\x73\xa3\x4d\xd5\x8d\x30\xc3\x96\xd7\x19\x30\x36\x27\xc9\x81\x90\xb1\x29\x2c\x36\x16\x44\xe9\x33\x80\xc9\xb2\x7f\x48\xe2\x8c\xbe\x7c\xc6\x64\x8d\x3f\x5a\x9f\x01\x2c\x16\x9e\x42\x5e\xa7\x30\x59\xe3\x8f\xd6\x8d\x40\xf5\x5c\x93\xe9\x8e\x54\x4f\x61\xb2\x99\x32\xa4\x7a\x46\xeb\x6c\x98\x74\xb7\xce\x06\x98\xc7\x61\x23\x1e\x8a\xae\x8e\x8e\x4f\xbb\x9e\x8a\x5e\x5c\x35\x11\x9d\x8a\xde\x5c\x45\x53\x49\x6b\x07\x1c\xd1\x79\x10\xf3\xc8\x11\x0d\x08\xa1\x8b\x9d\x12\x21\x21\x34\x60\x7f\xce\x03\xf7\x26\xfb\x33\x60\x7c\x2e\x16\xc4\xa2\xd5\xfb\xbe\x74\x7d\xb2\x4a\x1e\xad\xb3\x69\x94\x3c\x6e\xb4\x5e\x25\x07\x26\x6b\xd6\xd1\x2a\x39\xb0\xc2\x17\x52\xc9\x81\x79\x30\x60\xb7\xb3\x03\x60\xc5\xe1\x8d\x36\x35\xe8\x55\x86\x62\xc9\xa5\xc2\x0a\x5f\xdb\x01\x1b\x98\xac\x33\x47\x3b\x60\x43\x41\x5d\x71\xf8\x78\x5f\xe8\x32\x92\xc9\xda\x70\xc8\x37\x15\x56\x1c\x3e\xde\x17\x0a\x14\x20\x14\xf9\x42\xa4\x5c\xc2\x2e\x4c\x5f\xe8\xb2\xa1\xc9\x1a\x6c\xb4\x36\xd4\x69\xbb\xe8\x1c\xd7\x66\x80\xc9\xc2\x66\x48\x28\x15\x56\x10\xba\xb4\x66\x05\x63\x74\xb2\x64\x19\xed\xec\x02\x58\x41\x70\x29\x7b\x34\xfa\x8a\xfe\x26\x0b\x88\xd1\x46\x7f\x50\x45\x17\xfb\x44\x42\xaa\x68\xc0\x05\x9d\xac\xc4\x45\x6b\xa2\x30\x3e\x17\xfb\x44\x42\xc6\x67\x74\xd3\x2e\x3c\x53\x1b\xb1\x41\xdc\x5c\x31\x15\xd9\x5f\x8d\x16\x6e\x45\x2a\x40\xa3\x85\x7e\xda\xb6\x0b\x31\x2b\xd2\x5d\xd1\x9a\x15\xb0\x58\x6d\x8c\xd6\xac\x5a\xb3\xc2\xd2\x24\x81\xc6\xd2\xac\xb0\xa1\xa5\x59\x01\x2b\xd0\x89\xa5\x59\x41\x15\x9d\x2e\x49\x49\x15\x0d\xa8\xa2\x8b\x65\xca\x90\x2a\x1a\xeb\xd2\xfb\xe9\x02\xd1\x52\xef\x81\xc5\x32\x65\x2c\x07\x6c\xd8\xa3\xd3\x75\x1e\xd9\xa3\xc2\x62\x4b\x4b\x2c\x4d\x01\x98\xe4\xc9\x62\x39\x04\x00\x8b\xaa\x11\xb1\x9c\x4e\x43\x02\x9d\xae\xf3\x48\x02\x0d\x58\x9e\xcb\x25\xcf\xa5\x16\x02\xd3\xf5\x14\x19\x9f\xc2\x8a\x50\x64\xeb\x2f\x2d\x9c\xae\x94\x2c\xb5\x10\x58\x2e\x8c\x2e\x3d\x39\x30\x07\x23\xbd\x24\x50\x61\x05\xba\x2a\x09\x34\xd6\x15\x6f\x4e\x57\x37\x96\xf1\x26\xb0\x5c\x3e\x95\x17\x1a\x90\x40\xe7\xf8\xdc\x68\x23\x08\x2e\xd9\xb6\x13\xcb\xe0\x72\xa1\x98\x23\xe7\xf7\x87\xe2\xa5\xde\x2e\xf5\x16\xb3\x58\xea\x2d\xf4\xce\xe9\xea\xc4\x32\x84\x04\x56\x10\xe3\x2d\x27\x1f\x8b\xe1\x80\xd4\x57\x2c\x87\x03\xd8\x9f\x2b\x58\xc3\x90\xfd\x19\x50\x3d\x27\xa9\xaf\x90\xea\x19\x4b\xbd\x4d\xba\x53\xbd\x05\xe6\x58\x8a\x7c\x13\x26\x1f\x41\xd8\xb7\x54\x65\x60\x8e\xa5\xe8\xa9\x08\x6f\x80\x21\x2e\x55\x19\x8e\xe8\x24\x41\x16\x72\x44\x85\xc5\x9e\xa4\xd8\xce\x8a\xa9\xee\x31\x07\xe3\xdb\xd6\xf7\x03\x2b\x18\x51\xb7\x6b\x8a\xc0\x74\x31\x60\xab\xca\x5b\x55\x66\x9d\x59\x72\x69\xec\x41\xbb\xb6\x8f\x7f\x2a\xa2\x5d\x2c\x20\x6e\xa3\x19\xc8\xa5\x73\xe2\xe8\x25\x97\x0a\x2b\x18\x9d\x25\x97\x06\x4c\xd2\x39\x71\xe1\x32\x49\x85\x15\xb8\x11\x99\xa4\xb1\x2f\xed\x9e\x93\xb5\x86\xad\x76\xc3\x1e\x5d\x41\x8c\xb7\x0d\x47\x77\xf0\x8b\x4c\xcd\xb7\x2e\x7c\xeb\xaf\x59\x52\xda\xda\x00\x30\x9d\xc9\xee\xf0\x17\xc3\x5f\xa4\x27\x74\xe1\xfb\xb2\x81\xe9\x1c\x75\x6b\x03\xc0\x0a\xc2\xd1\x1d\x9f\x5f\xbc\xfc\x8f\x33\x46\x29\xa8\xc2\x8a\x56\x64\xe7\x60\x3c\xce\x18\xb7\xc6\xb3\x35\x1e\xc2\xd1\xad\xf1\xec\xcb\x47\x4f\x27\x7e\xdb\xa9\xf9\xd6\x5f\xa3\x72\x5b\x7f\x0d\xdf\x74\x3a\xc1\x92\x6f\x2a\xac\x60\x1a\x26\xdf\x54\x98\x4e\x51\xe4\x9b\x0a\x2b\xda\xc7\xa3\xf7\x90\x4b\xe7\x4c\x1a\xa1\xbf\x06\x56\xb0\x2c\x2b\xb9\x54\x98\x4e\x51\x24\x97\x0a\x8b\x1d\x68\x21\xb9\x54\x98\x33\x15\xd9\xfa\xb2\xf5\xa8\x89\xf3\x37\x38\xa6\x73\xaa\x72\xc6\xd7\xc0\x8a\x56\x64\x47\x5f\x43\xc0\x9c\x2a\x93\xb1\x18\xb0\xcc\x50\xc8\x24\x0d\x68\xa3\xd3\xd9\x81\xb4\xd1\xd8\x04\x5e\xec\x79\x8b\x6d\xe0\x05\xcc\x69\xe7\x38\x7f\x03\x56\x10\xfd\x6d\x4d\x14\x98\xd3\xd7\x36\x3c\x83\x49\xba\x62\x79\xa3\x5f\xbb\xe9\x55\x9b\xea\xa0\x01\xac\xc0\x44\x25\x81\xc6\x7d\xa0\x5f\xdc\x78\x77\x84\x80\x17\xba\xd8\x65\x17\xf2\x42\x85\x39\x19\xb9\xe4\x85\x0a\x2b\x3e\xa2\xad\x68\x73\xd5\x40\x74\x57\x84\x7e\x61\xc8\x52\x45\xe3\xae\xa5\x61\xb5\x77\x2d\xed\xae\xa5\x31\xe4\xdd\xb5\xb4\x3b\x96\x66\x78\x76\xd7\xd2\xee\x4c\x25\x82\x10\xf4\xee\x38\x02\xc7\x74\x06\x8b\x27\x72\x4c\x85\xc5\xee\xbf\xb8\x3b\x95\x80\x63\x3a\x0d\x96\xe4\x98\x0a\xcb\x8c\xce\xdd\xa1\xe5\x7e\x19\xcc\x74\xf0\xbf\x6b\x30\xc0\x0a\xc6\xca\xbb\x06\x73\xc7\x3a\x02\x4b\xbb\x6b\x1d\x77\x16\xae\xcc\xfb\xdc\x1d\x47\xe0\xab\x4e\x07\x7f\xf9\xaa\x71\x67\x8d\x3f\x71\x30\x77\x0d\x06\xbe\xea\x0c\x86\x29\xf9\xaa\xc2\x62\x0b\x62\xdc\x1d\x34\xee\x58\x47\x30\x4c\xdd\xb5\x0e\x60\x99\x43\xba\xe7\xe7\x17\xdf\x5c\xc5\xb3\x5c\xde\x02\x56\xda\x39\x1a\x0c\x74\xd8\xe9\x98\x24\x1d\x56\x58\x89\x4b\x93\x0e\x1b\x70\x5f\x67\x60\x69\x72\x5f\xe3\x7e\x85\x3e\xcb\x7c\xd4\xdd\x65\x7f\x58\xad\x53\xb7\x2d\xab\x35\xee\xac\x95\x26\x8e\xef\xae\xfa\x02\x53\x67\x75\x57\x7d\x81\x95\x44\x0d\x72\x5f\x03\xbe\xeb\xd4\x0d\xdd\x55\x5f\x60\xb1\x35\x32\xee\xfd\xf9\x45\xfa\x1e\xeb\xb8\x3b\x9c\x00\x2b\x0f\x45\x76\x0e\x23\x8c\xe6\x2e\x69\x36\xe0\xbe\x4e\x6d\x5b\xee\xab\xb0\xf2\xf8\x7e\xae\x38\x1e\x2a\x3c\xd4\xd8\x19\x4c\xad\xa5\xc6\x0a\x2b\x89\x76\x1f\x6a\x37\x30\x4d\x3b\xca\x96\x15\x96\x59\xba\x87\xd3\x0a\x78\xb0\x53\xb3\x90\x07\x2b\xac\x24\xda\x95\x07\x2b\x4c\x55\x59\x1e\x6c\x3c\xb0\x81\x24\x4a\x7a\x68\x03\xc0\x54\xfd\xa4\xc6\x0a\x2b\x87\x8f\xdf\x8a\x4e\xae\x1a\x88\xde\x8a\xde\x5c\x85\xc8\x69\xc5\x83\xb8\x9f\xbd\xad\xf1\xd0\x2c\x80\xc5\x86\xd1\x78\x18\x71\x01\xf3\xf3\x42\x8e\x36\x0f\xe2\xfe\x64\x98\x7a\x68\x16\x0f\xc2\xab\xbf\x3d\xde\x5f\x24\xe9\x90\x4c\x77\x24\xe3\x06\xcc\xdb\x99\xd8\x93\xcc\x5b\x61\x25\xc6\xf3\x70\x2a\x00\xcc\x64\x45\x54\x32\xae\xb0\x92\xc1\xec\xe1\x68\x03\x3f\x77\xfe\x4d\xe4\x2f\x6a\x03\xc4\xd7\x0f\x6d\xe0\x81\x0d\xb0\xd3\x34\x1e\xda\xc0\x43\x1b\x20\xaa\x7c\x68\x03\xc0\x4c\xec\xe9\xe1\x70\x20\xd7\x37\x19\xf2\xe4\xfa\xc6\x83\xd9\x01\xfb\x51\xe3\xe1\xec\xe0\xa1\xa5\x10\x26\x4b\xff\x8d\x07\x13\x78\xf6\xa3\xc6\xc3\x09\x03\xf4\xdf\x65\xd2\x54\xfa\x6f\xc0\xf5\x9d\xec\x34\x0d\xb9\xbe\xf1\xc0\xf7\xb3\x75\x36\x1e\x1a\x0f\x30\x93\x70\x43\xfa\xaf\xb0\x3e\x2f\x64\xc4\x06\x8b\x77\x26\x89\x74\x59\xbc\x21\x65\xd7\x04\xac\x94\xdd\x80\x8c\x3b\x13\x7b\x92\x8c\x2b\xac\x24\x4c\x7e\xea\xd5\x61\xde\x4e\xf6\x90\x86\xcc\x5b\x61\xd9\x39\x32\x6f\x03\xb6\xed\xcc\xe5\xb3\x78\xc7\xa7\x1a\x4d\x98\xfc\x54\xa3\x21\xe0\xce\x44\xef\x9f\xaa\xaf\x64\x5c\x3b\x47\x32\x6e\x3c\x59\xfa\x61\xdf\x67\x3c\x5d\xfa\x01\x56\x12\x95\x3e\xe7\xe7\xf1\x97\xc7\xa3\x86\x5c\x3c\x55\x5f\x60\x25\x83\xbf\xfc\xdc\x80\x1a\x3b\x0b\x87\x2a\x35\x56\x58\x6c\xfc\x8d\xa7\xba\x0a\xcc\x3a\x14\xf9\x8b\x7a\x75\x42\x84\xa7\xea\x0b\xcc\xc2\x44\x25\xd0\x0a\xcb\x8f\x26\x81\x36\x9e\x97\x62\xce\x62\x42\xfa\x54\x31\x25\xd0\x26\x81\x84\x04\xda\x80\x21\x3b\x0b\xbd\x7f\xea\xe8\x81\x95\xe5\x8d\x0f\x45\xb4\x7e\x2a\xb2\xf5\xc4\x4f\x6c\x35\x0e\xd9\xb2\x01\x1d\x76\x9a\xe8\x7c\xea\xfb\x9f\xea\x7d\x29\xb2\x5d\x17\xcc\x62\xb4\x91\x2d\x2b\x2c\x36\x24\x87\x6c\xd9\x80\x2d\x3b\x0b\xc5\x94\x2d\x2b\x2c\x55\xee\xa9\x29\x40\x5b\x9d\xc5\x98\xf4\x54\x57\x9f\xfa\x7e\x22\x5c\x29\xac\xf1\xbc\x14\x73\x96\x5d\xa8\x62\x3e\xf5\xea\x2a\xa6\x5e\x1d\x98\x65\x53\x9d\x37\x40\x74\x5d\xa6\xee\x25\xba\x06\x7c\xd5\x59\xdc\x28\x5f\x55\x58\xc9\xa0\xf1\xd2\xaf\xc2\x57\x9d\x45\xcc\x23\x5f\x55\x58\x26\xf8\xe5\xab\xc6\x0b\x2d\x2c\x3c\xf9\x4b\x2d\x04\x56\x12\xbb\xbe\x74\xa2\x70\x54\x67\x2d\x9f\xf5\x54\x44\xdf\x63\x30\xf2\x55\xe3\x85\x5f\xad\xad\xe8\xad\x08\xbf\x4a\xec\x2a\x85\x35\xe0\xab\xce\xc2\x93\xcb\x57\x15\x96\x94\x82\x97\x41\x09\x30\x9b\x84\xd1\x4b\xef\xfb\xd2\xfb\xb6\x37\xda\x2e\x26\xa4\xcd\xe0\xff\x72\x42\x0a\xac\x64\x7c\x7b\xe9\x44\x81\xd9\x68\xf4\x4b\x27\xfa\x52\x0b\xed\x1c\xb5\xf0\x75\x29\xd3\x64\x7f\x66\xbc\x54\x26\x60\x25\x0b\xa3\x2f\xc3\x0d\x28\xac\xd3\x1c\xa5\x14\x56\x61\x49\x62\x78\xa9\x5f\x2f\xfc\x2a\x85\xfa\xe2\xa5\x5f\x7d\xa9\x39\x38\x85\x97\x9a\x03\xcc\xc6\x89\xbe\x5c\xc6\x7e\xe9\x57\x57\x7d\x7f\x28\x7e\xe9\x76\x5f\x4d\x17\xe0\x63\x5f\x2e\x6c\x02\x2b\x97\x22\xbb\x00\x57\x49\xe1\xb8\x78\xf5\xe7\x46\x9c\xcd\x52\xb4\x15\x5d\x1f\x90\x32\x6e\x21\x0f\x36\xe0\xbe\x4e\x76\x61\xc6\x69\x4c\x2c\xe9\x35\x51\x06\x49\xaf\xc2\x34\xd1\x79\x1a\x54\x9c\x06\x15\xb8\x37\x79\xb0\x01\xe9\x75\xb2\x0b\x33\x24\xbd\x86\x74\xd6\x24\x4c\x96\xce\x1a\x27\xcb\x2d\x8d\xfa\x9d\x2e\xb7\x48\x67\xd5\x09\x4a\x67\x15\x66\xa3\x0c\xa7\xda\x7d\xaa\xdd\xc4\xb1\xa7\xda\x7d\xb2\xa6\xd8\x7c\xe6\x53\x25\x05\x56\x6e\x45\xfe\x22\xde\xb3\x7d\x21\x95\x54\x3a\xab\x34\x11\xe9\xac\x71\xa2\xb7\x6d\x53\xd5\xdb\x93\xc8\x99\xed\xf6\x71\xaa\xa4\xc0\x6c\x1b\xa1\x92\x02\xab\x50\x65\x79\xb0\xc2\x5c\x9f\xc7\xdb\x13\xc4\xd7\x3a\xe7\xd3\xf8\xfa\xc4\x13\x53\x2b\x2c\x4e\x3d\xf1\x49\xc6\x8f\xed\x53\x71\xaa\xf0\xe7\xa5\xbe\x93\x3a\x5a\x71\xba\xe8\x07\x1d\x76\xd5\x47\xe4\xb3\xf0\x9e\x54\x8f\x8a\x53\xef\x09\xac\x22\xf6\x94\x2d\x2b\x4c\x73\x9f\xb2\x65\xe3\xbc\x14\x7e\x15\xb1\xe7\xa9\xc2\xc3\x57\x9d\x54\x7c\x8a\xd3\x61\x1d\x58\xc5\x04\xfe\x74\xa9\x1e\x98\xd4\x39\x8a\xd3\xb5\x19\x60\x39\xb4\xc8\x70\x8d\x93\xb5\x19\xf3\xa8\xa7\x83\x3f\xb0\x28\x29\x10\xa7\x1a\x0d\x4c\xea\x09\xc5\xa9\x46\x03\xcb\x01\xe8\x34\xe4\x86\xbb\x3a\xa9\x27\x14\x72\x57\x03\xee\xea\x2a\x62\x44\xb9\xab\x01\xb9\x74\x52\x13\x27\x24\x97\x0a\x4b\xf2\xcd\xdb\x01\x1b\x98\xd4\x8b\x89\xb7\x5a\x08\xac\x22\x88\x7b\x3b\x59\x7b\xa3\x85\x54\x82\x89\xb7\x5a\x08\x2c\x29\x3a\x6f\xb5\xf0\x8d\x8f\xa5\x12\x4c\xbc\xf5\xb1\x6f\x46\xfa\x22\x46\x7c\x3b\xd2\x03\x73\xb5\xbf\x78\x57\xc4\x77\x64\x60\x7c\x3b\xa5\x7b\xa3\xd1\x6c\x54\x8c\xb7\x1a\x0d\xac\xc2\x25\xbd\xd5\x68\x60\x52\x5e\x25\xde\x7a\xe2\x37\x84\x99\x22\xde\x7c\xbb\x24\x0e\xa7\x76\xb2\x9d\x31\xe4\xd4\x0a\x4b\xea\x90\x9c\x5a\x61\xb2\x9d\x31\xe4\xd4\x0a\xcb\x41\x56\x4e\x6d\xbc\xd5\x68\xa6\xad\x6f\x35\xfa\xcd\x7a\x4a\x4d\x45\x4f\x45\xb4\x7e\xfb\x8b\xb6\x9e\xd8\x82\x62\xb7\x21\xf3\x56\x98\x14\x15\x89\xb7\xb1\x05\xb0\x0a\x35\x91\x8c\x1b\x10\x70\x27\xe5\x42\xe2\xad\x57\x87\x8c\xbb\x1c\xb0\x25\xe3\x0a\x93\x52\x1a\x21\x19\x57\x58\x85\x9a\xbc\xb5\x0e\x60\x9a\xdf\x7d\x6b\x1d\x6f\xad\x83\xa5\xd4\xb7\xd6\xf1\x26\xa6\xde\x87\x22\x9b\xaa\x75\x10\x23\xbe\xb5\x0e\xb8\xbe\x93\x2d\x9b\x21\xd7\x57\x58\x45\x8c\xf8\x36\xb6\x78\xe3\xfb\x37\x96\xf6\xd6\xf7\x03\x8b\x0a\x11\xf1\xd6\xb9\x43\xff\x9d\x94\xac\x08\xe9\xbf\xc2\x2a\x3c\xb9\xf4\x5f\x61\x6e\x3f\xad\xc6\x07\xac\x22\x18\x97\xdf\x2b\x4c\x36\x89\x86\xfc\x5e\x61\x55\x2a\xf2\x85\x98\xc9\x6e\x3f\xad\x66\x05\x2c\xf9\x5e\xf2\x7b\x03\x9a\xee\xdc\x76\xb4\x63\x87\x34\xdd\x4a\x6f\xb4\x5d\xac\xba\x6c\xbb\xd0\x09\xe9\x5b\x7b\xbc\x8c\x2f\x65\xee\x26\x3c\xdc\xc9\x86\xd3\xbc\xb1\xbe\x29\xac\xba\x62\xd7\xbc\x31\xc2\x24\x0c\xdb\x49\x79\x83\xb4\xba\x70\xde\xb4\xda\x2b\x76\x4d\xd9\xb6\x09\xc3\x76\xee\x2b\x7e\x4a\x68\xb6\x17\xd8\x7a\x1e\x3f\x7d\x3c\x96\xc6\x56\xd2\xb4\xe2\x70\xde\x58\x29\x81\x87\x96\x37\x02\x9c\xbc\x61\x43\xbb\xbf\x3f\x2b\x4e\xea\x15\x7f\x60\x41\x53\x4b\xeb\x16\x27\x34\xdd\xc9\x86\xf5\xbc\x85\x6f\xe2\xa0\x51\x74\x01\xf6\x94\x37\x16\x23\xd9\xcc\x9d\x30\x7a\x3f\xb0\x20\xb3\xa5\xc4\xde\xbc\xa9\x58\x9b\x36\x96\x2f\xa7\x62\x15\x37\xa2\x58\x49\xbd\xe1\x60\x3f\x6a\x5a\x6f\x58\x58\x75\x8d\xbb\x79\x2b\x1b\x71\x69\x51\xb0\xd3\x34\x65\xcb\x0a\xab\xec\x95\xfa\xfc\xe2\xf3\xba\x6a\xf0\x42\x65\xa7\xeb\xc2\x8b\x17\x42\x8b\x12\x86\x6c\xdc\x06\x4d\x6d\x5f\x88\x25\x38\xca\x85\xa4\x65\x83\x13\xd2\x6c\xb0\x57\x33\x6f\xed\xe3\x59\x12\x87\x7d\x95\xb7\xf6\xf1\x97\x7e\x04\xd9\xe9\x94\x53\x9b\x07\x93\xb5\xba\x02\xcd\x84\x5f\xfb\x81\x20\x3b\x9d\xd2\x6c\x85\x55\x57\x08\x99\x96\x20\x4e\xd8\xb6\x71\x0b\x45\xad\x08\x13\xbb\xa2\x86\xb4\x04\x71\x52\x6f\x38\xd8\x00\x99\xd6\x1b\x16\x56\x5d\x9e\x38\xad\x37\x9c\x90\x71\x83\x4c\x77\x4a\xc6\x4d\x4a\x10\x2f\xe2\xeb\xb4\x04\x71\x52\x63\x38\xc8\x74\xe7\xa1\xae\x51\x50\x78\x41\x11\x4c\xe8\xbb\x1f\x08\xb6\xfd\xa5\x2c\x5e\x61\x11\x85\xa7\xf5\x86\x85\x60\x43\x5f\x1e\xd3\x76\x11\x72\x53\xec\x24\xe5\xfa\x26\x94\xdd\x60\x43\x5f\x4a\xd9\xcd\xc3\x70\x63\xd1\xfa\xf0\xf1\xc1\xb3\x6c\x84\xfa\x75\xa8\x5f\x28\xd3\xa1\x7e\xc1\xcf\x8d\x9b\x8d\x20\xdc\x48\x8a\x13\x2f\x6a\xa9\x24\x15\x8a\x2f\xe0\x1d\x17\xef\x98\xbe\x23\xc1\x34\x71\x7f\x1e\x69\x47\x27\xcf\xda\x34\x35\x7d\x16\x0b\x75\xf5\x11\xd9\x85\x97\xc7\x8c\xe3\xc6\x8d\xe5\xd7\x56\xa3\x37\xaf\xad\x46\x53\x63\x38\x48\x6b\x27\xc4\xdc\x0b\xe8\xaf\x4d\x23\xca\xfe\xba\xd4\x37\xd8\x6e\x96\x87\xea\x2b\x19\xb7\x6f\xbc\xa3\xea\x0b\x04\x1b\xc9\xd2\x7a\xc3\x49\x8d\xe1\xd5\x37\xde\xb1\x7d\xc7\xa6\x5d\x83\x1b\xdb\x76\x11\x94\xb4\x4d\x6d\xbf\xf6\xe5\x2a\x83\xb4\x76\xca\xe2\x15\x16\xf3\x91\x94\xc5\x9b\x30\x77\xe3\x18\xbc\xb6\xd6\x01\x8b\x77\xf5\x4d\x91\xad\x47\xef\xd9\xb0\x95\x52\x76\x85\x20\x3b\x9d\x52\x76\x85\xd5\x57\x5c\x97\x43\x53\x18\x97\xde\x07\x7b\xa5\x72\xa8\xf7\xc0\x82\xde\x99\x16\x2a\x4e\xb8\xbe\xc1\xfe\xa6\x94\xeb\x2b\xac\x3e\x14\xdd\x15\xd1\x88\x6b\x30\xcb\xa1\x92\x03\x0b\x12\x68\x0e\xc2\xa0\x1c\x97\xae\x07\x1b\x7d\x12\x76\xf0\x07\x56\x5f\x31\x62\x4a\x12\x16\x82\xec\x74\x5a\xe1\x38\xa9\x6a\xbc\x1a\xcf\x04\x87\xf8\x82\x27\x57\xd1\x7a\x35\x5a\x92\x30\x93\xb5\x94\x24\x2c\x04\x3b\x53\x52\x92\xb0\xb0\xa0\x9d\xa6\x24\xe1\x84\x05\x1c\xec\x39\xc9\x11\xb6\x2b\x6c\x17\x8f\x0f\xdb\x15\xb4\xab\x69\x7d\xd8\xae\xb0\xbf\xe8\x55\x6d\x08\x08\x76\x80\xa4\x05\x94\x85\xc5\xf4\x30\xa5\x12\x27\x75\x94\x83\xbd\x1d\x39\xc2\x76\x61\x30\x14\xb3\xcf\xa1\xc1\x40\x12\x0e\x6a\x2a\xa7\x24\x61\x61\x41\x87\xcd\x91\xfe\xe2\x15\xa7\xc4\x81\x59\x8d\xf4\x73\x10\xa7\x50\x0a\x28\x07\x71\x4a\x42\x06\x0e\xf6\x76\xa4\x15\x92\x13\x62\xf0\xa2\x9e\x7d\x4a\x0c\xce\x81\xc1\x0c\xb4\x70\x68\x30\x03\xe7\x4e\xad\xfa\x1c\x5a\x07\xc4\xe0\x18\x2a\x40\xd9\x7a\x4d\x61\xf2\x8e\x9a\x02\x10\x03\xb3\x92\x18\x2c\xac\x56\x57\x35\x85\x71\xe9\x7d\x0c\x3f\x87\x7a\x2f\x57\x98\xfa\xf2\x29\x57\x38\xe1\x07\xc7\xb0\x73\xda\x76\x31\x09\xa5\xf8\x50\x8e\x56\x31\x2f\x8b\x88\xe1\x0b\xb5\xaf\x0d\x33\xa0\xe7\xf7\x69\x5b\x39\x1c\x5a\x28\xf9\x1c\xec\x21\x4d\xc8\xc7\x1f\x58\xcc\xb6\x53\x0e\x72\xc2\x3b\x8e\xc1\xfb\x5a\xfe\x39\x61\x17\x2f\xd8\xc5\x29\xbb\x58\x08\x98\xff\x29\xbb\x58\x58\x90\x84\xd3\x2a\xce\x39\x27\x1d\xc5\x98\x34\xa7\x8f\x67\x84\xe8\x2b\xa0\xcb\xe9\x08\x01\x07\x39\xc6\x47\x14\x8a\x30\x0b\xe2\x9f\xa9\x59\x00\x41\x7d\xe6\x9c\x0e\x1a\xc0\x6a\xac\xce\xf2\xcf\x49\xc9\xe7\x18\xe9\x2f\x3e\x14\xd1\x51\x9f\x1b\xe9\x09\x98\xca\x31\x92\x5f\x54\xe1\xa7\x0a\xcf\x60\x66\xc9\x66\x21\x20\xf0\xa7\x25\x9b\x85\xd5\x3e\x5e\x85\x9f\xd7\x70\x12\xec\x34\xcd\x49\x90\x9f\xf2\x99\x1b\x3b\x97\xcf\x9c\x30\x95\x63\x30\x60\xcb\x54\x16\x16\xd5\xda\x73\xaa\xf0\x14\x4d\x0e\xaa\x25\xe7\x74\x38\x90\x83\x4c\xb5\xf6\x94\x83\x9c\xd4\x54\x0e\x2a\x1c\xa7\x35\x95\x85\xd5\x84\x6a\xd6\x54\x4e\x68\xc9\xc1\x1e\xd2\x94\x96\x2c\xac\x26\x12\xb4\xa6\x72\x52\x2d\x39\xe6\x8d\xaf\x6d\xcc\x33\x1d\x21\x88\xd8\x24\x2f\x27\x84\xe5\x98\x38\x67\xab\x25\x0b\x8b\xd5\x8d\x94\xbc\x9c\x14\x3d\x8e\x89\x27\xb6\xe8\xb1\xb0\x28\xf3\x9e\x92\x97\x13\x2a\x72\xc0\x4b\x4f\x8b\x1e\x0b\xab\xed\x68\x63\x1e\x20\xa0\x71\xa7\xb4\x64\x61\x51\xe6\x3d\xa5\x25\x27\xe5\x90\x83\xe4\x77\x86\x31\x0f\xb0\x28\xf3\x9e\x96\x46\x16\x02\x52\x75\x86\xbe\x3f\x58\xc6\x86\x5e\x9e\xa1\xef\xa7\x0e\x72\x4c\x6c\xd3\x3a\xc8\x09\xad\x79\xb1\xea\x92\x16\x3d\x4e\x8a\x1e\xc7\x44\xef\x2d\x7a\x9c\x52\x9c\x59\x75\x49\x29\xce\x42\xc0\xe2\x4d\xeb\x20\x0b\x8b\x55\x97\xb4\x0e\x72\xc6\xa4\x27\x50\xf2\x50\x31\x81\x05\x55\x3d\x43\xdf\x0f\x04\x69\xed\x0c\x7d\x7f\xe8\xe8\xd7\xf5\xb5\xad\x96\x9c\x94\x43\x0e\xd2\xda\x19\x7a\x75\x60\x41\x68\xcf\x50\xc9\x81\x60\x5b\x69\x4a\xbd\xce\x50\xa3\x17\x5d\xa8\x46\x03\x01\xcd\x36\xa5\x5e\x0b\x8b\x32\x5d\x29\xf5\x5a\x08\x08\xb4\x69\x01\xe5\xa4\x34\xf2\xea\x45\x4f\xe8\xfb\xa1\x5e\xc7\xb4\xa3\xd3\x2e\x24\x7d\xd3\x44\x59\xd4\x44\xbe\x80\xfe\x62\xd0\x80\x86\xfd\x81\xc5\xca\x52\xca\xc6\x4e\xea\x20\xc7\xb4\x73\xd2\xfe\xd2\x3a\x36\x4d\xd5\x3a\x60\x60\x07\x34\xca\x0c\x4d\x01\x58\xac\x3f\xa5\x6c\x6c\x21\xa6\x8f\xd7\x3a\x42\xeb\x20\x7e\x0a\xad\x03\x06\x76\x40\x6a\x4c\x0b\x28\x0b\x8b\x55\xaa\xb4\x80\xb2\x10\x70\x00\x53\x82\x76\x4a\xbd\xa6\xee\x7d\x4a\xbd\x4e\x78\xd6\x11\x44\x6c\xf2\xac\x85\x05\xb5\x3f\xc3\x98\x07\x52\x75\xc0\xb5\x4b\x49\xd5\xc2\xa2\xc8\x58\x4a\xaa\x4e\x49\xd5\x14\x93\x4f\x49\xd5\x49\x69\xe4\x80\xe6\x96\x96\x46\x16\x16\x65\xe2\x53\x52\xb5\x10\x6c\x5e\xcd\x34\xb0\x07\x16\x65\xe2\xd3\x0a\xc9\x49\x39\xe4\x88\xb1\x11\x9d\x8a\x68\x04\x31\x4f\x6a\x1d\x10\xb4\x03\x6a\x5a\x4a\xd0\x16\x16\x65\xe2\x53\x82\x76\x42\xd0\x0e\xb8\x63\x29\x41\x3b\x29\x81\xbc\x28\x13\x9f\xa9\x29\x40\xbd\x8e\x08\x9f\x65\xbb\xa6\xed\xe2\x1d\xb5\x0e\x20\xe0\x68\xa5\xd4\x6b\x61\xb1\x57\x21\xa5\x5e\x67\x4e\x3e\x07\xc3\x49\x6a\x1d\xc0\x5a\x76\x4e\xd8\x54\x86\x00\x28\x51\x99\x5a\x07\xb0\x28\x00\x9f\x56\x5b\x16\x82\xcd\xab\x69\xb5\x65\x61\x51\x00\x3e\x53\x83\x49\x86\x80\xc8\xef\x17\xbe\xcc\xd4\x78\xa0\x87\x2f\x56\x0b\x53\x7a\xb8\x10\xd4\x54\x4e\xe9\xe1\xc2\x5a\xc3\x5f\xf7\xe5\x2e\xe3\x09\x38\x47\x29\x3d\x5c\x58\xd4\x87\xcf\x74\x68\xa1\x3e\x73\xc0\xed\x49\xeb\x33\x67\x32\xd3\x58\x7e\x79\x87\x16\x20\x60\xa1\xa4\x25\x9b\x85\xb5\xfc\xf2\xda\x13\x10\xc1\x3c\x49\xf6\xb9\xb0\xa8\x22\x9f\xb2\xcf\x33\x8b\x2e\xc0\x8d\xa4\x93\x0f\x4a\x36\x2f\xaa\xc8\xa7\x25\x9b\x93\x32\xcd\x01\x43\x23\x53\xe3\x01\x16\xa5\xea\x32\x35\x9e\x6c\x7e\x91\x91\x2b\x8d\xa5\xa0\xad\xaf\xa5\x16\x39\xb4\x78\xae\x54\x62\x62\xe9\x1c\x02\xc8\x52\x95\x8d\xa5\xa0\xaa\x07\x4c\x88\x94\xaa\x9e\x54\x6e\x5e\xac\xae\x66\x39\x42\x40\x55\x0f\xf2\xf4\x29\x55\x3d\x29\xa0\xbc\x58\x5d\x4d\x0b\x28\x27\xd5\x92\x83\xec\x74\x5a\x2d\x59\x58\xac\xae\xa6\x84\xf6\x84\xbd\x1e\x64\x94\x53\xf6\xba\xb0\xa8\xd6\x9e\xb2\xd7\x85\xc8\xb9\x11\xbd\x14\xf1\xb5\xd1\x6e\x09\xed\x42\xe4\xa7\x11\xb6\x4b\x55\x66\x68\x91\xbd\x9e\x30\xd6\x23\x7d\xbc\xbe\x5f\xf6\x3a\x75\xd8\x53\xf6\x7a\x16\x4a\x9a\x1f\xd1\x5d\xd1\x9d\xab\x68\x84\x2e\x9c\x32\xcb\x41\x1e\x35\x2d\xb3\x2c\x2c\x8a\xae\xa7\x1c\xf7\x84\xe3\x1e\xe4\x3e\x53\x8e\xbb\xb0\x28\xda\x97\x72\xdc\x85\x20\x7b\x98\xd6\x54\x4e\x39\xee\x8b\xc1\x4c\x8e\x7b\x52\x2d\x39\xb2\x7c\x96\xed\x22\xc8\xa7\xf6\x7a\x5a\x2d\x39\x8b\xc8\x28\xd1\xe8\x52\x7d\x81\x45\x69\xbf\x2c\xd5\x17\x08\x32\x6b\x69\x01\x65\x61\x2d\x9b\xaa\xfa\x16\xab\x41\xe4\xcc\xb2\x1c\x0e\x80\xc5\x6e\xa3\x2c\x87\x03\x20\x92\x41\xb6\x1c\x0e\xa8\xbc\xbc\x16\xb1\x98\x95\x97\x93\x02\xca\x41\x06\x2b\x2d\xa0\x9c\x72\xef\xd9\x93\x94\x72\xef\x13\xa2\x7d\x90\xf7\x49\x89\xf6\xc2\x5a\x76\x4e\xdb\x85\x4c\x18\x12\xeb\x90\x68\x9f\x14\x50\x5e\x94\x1c\x4c\x0b\x28\x27\xe5\x90\x83\x8c\x4e\x96\xf1\x53\x39\x42\x10\x65\x49\xa1\x4f\xf8\xf2\x51\x37\x45\xa1\x08\x9d\x20\x32\x92\x2f\x9f\x90\xe3\xa3\x18\x21\x24\xc7\x27\x4c\xf8\xc5\xea\x7d\xca\x84\x17\x82\x0c\x45\xca\x84\x17\x16\xab\xf7\xd9\xce\x08\x80\x20\xf7\x90\x92\xe3\xb3\x1d\x0e\x08\x7a\xdb\xe1\x00\x08\x32\x01\x29\x39\x3e\x5b\x1b\x62\x65\xa9\xb5\x21\x20\x58\xe3\x4f\xf9\xf2\xc2\x62\x8d\x3f\xdb\x28\x0b\x08\x56\xef\xd3\x9a\xca\x09\x5f\x7e\x2d\x3e\x9a\x7c\xf9\x84\xaa\x1e\x94\x46\x4e\xa9\xea\xc2\x62\x77\x56\xb6\x2e\x1c\xc6\x7a\xb0\x66\x9d\x56\x4b\x16\x16\x99\x80\x6c\xad\x03\xe2\x79\xb0\xce\x9c\xad\x46\x4b\x42\xa7\x38\x7a\x4a\x42\xcf\xbe\xd4\x37\x0a\x35\xe9\xfc\xdc\xc8\x17\x5a\x8a\x50\x5f\xea\x0a\x87\x4b\x8b\xad\x7e\x01\x8b\x7c\x41\xb6\x73\x54\x20\x5c\x9c\xb3\xec\x70\xc2\x32\x5f\x94\x3d\x4f\xcb\x0e\x27\xfc\xf1\x60\x67\x6e\x4a\xf6\x4e\x28\xd2\x51\xfb\x7a\x21\x0b\xe4\x0a\x8b\x8d\x64\xe9\x81\x79\x09\x83\x3a\x9c\xb6\xca\xa0\x16\x16\xe9\x88\x94\x41\x2d\x04\xe7\x96\xa5\x0c\x6a\x61\x2d\xb4\xd0\x9a\xb9\xb9\xae\x3e\x0a\x67\x89\xcb\x31\x4d\x52\x35\xf5\xd2\x53\x52\x75\xc2\xa0\x8e\x66\x31\x53\x06\x75\xc2\xa0\x5e\x6c\x5d\x4b\x19\xd4\x42\x70\x8a\x58\xca\xa0\x16\x16\x35\xce\x73\xe9\x60\x20\x55\x87\x33\x4e\x49\xd5\xc2\xda\xb7\xff\xc0\xac\x58\xce\xb5\x10\x4e\x0f\xad\xc5\x9b\x8b\x34\x07\x25\xd0\x73\x39\x7c\x42\x97\x0e\xa7\x74\xd2\xa5\x85\x45\x09\xf4\x5c\x1a\x35\x05\x72\xa3\x59\x70\x5d\xce\xef\x61\x4d\x2f\xf6\xd2\xa5\x95\x71\x13\x8a\x73\x70\xa4\x53\x4a\x71\x4e\x08\xc7\x41\xb6\x35\x25\x1c\x0b\x8b\x24\x4d\x5a\xf3\x56\x08\x72\x9f\x69\xcd\x5b\x61\x6d\x86\xbc\xed\x5a\x14\x10\x9c\x80\x94\x32\x95\x13\x5a\xf2\x22\x95\x93\xd2\x92\x93\x0a\xb4\x61\x08\x69\x05\x5a\x61\x51\x15\x3d\xb7\x5f\x1e\xae\x6f\x70\xaa\x4c\xca\xf5\x4d\xca\xcd\x2e\x76\xef\xa5\xe5\x66\x13\xca\x6e\x38\xa2\x4a\xd9\x15\x16\xa9\x9c\x94\xb2\x9b\xf0\x73\xc3\x71\x44\x7e\xae\xb0\xa8\x77\x9e\xf2\x73\x13\x32\x6e\x90\x89\x4c\xc9\xb8\xc2\xa2\xde\x79\x4a\xc6\x15\x42\xaf\x2e\x19\x57\x58\xec\x17\x4c\x8b\xbf\xe6\x66\xf9\x53\x7f\xbd\x5d\xe0\x01\x16\x55\xd1\xd3\xe2\xaf\x09\xdb\x36\x16\x13\x99\x6d\x6c\x01\xcd\x76\x91\x62\x4a\x69\xb6\x09\x35\x36\xf4\x65\x52\x63\x13\x3a\x6c\x90\x50\xcc\xbb\x0e\x15\x96\xe5\xda\x44\x59\xb2\x2c\x13\x82\x64\x50\x41\x3b\xef\x46\x46\x92\x25\x4d\x6d\x48\x96\x4c\x68\x90\x41\xdd\xe8\x94\x06\x29\x2c\xea\xd4\xa6\x34\x48\x21\x28\x8d\x9c\x96\x00\x15\x16\x75\x35\x53\x66\x64\xc2\x79\x0c\x8a\x1e\xa7\x9c\x47\x61\x6d\xf4\x4b\xce\x63\x3e\x58\xe7\xa1\x04\x71\x3e\x9c\x43\x00\x8b\xea\x9b\x69\xed\xd0\xa4\x50\x68\xb0\xab\x30\x2d\x14\x2a\x2c\x53\x2e\x92\x25\x13\x06\x64\x50\xea\x37\x2d\x14\x9a\x16\x0a\xa5\x32\x6e\xca\x86\x4c\xaa\x6f\x86\x2f\x64\xf5\x4d\x61\x6d\x7c\xd9\xc3\xc8\x08\x48\x8a\xb4\xe6\x43\x17\x0e\xac\x8d\x2f\x7b\x18\x19\x41\x1e\x4c\x8a\xb4\xa6\xe4\x41\x61\x51\x3f\x37\x1f\x7a\x16\x20\xa9\xd1\x99\xf2\x09\x85\x45\x55\xd0\xb4\xb8\x67\x3e\x2e\x0f\x90\xd4\xe8\xcc\x87\x1e\x00\x58\xec\x70\xcc\x87\x53\xcd\xc7\xa5\xd1\x49\xf5\xcd\x7c\xa8\xd1\xc0\xa2\x1a\x6e\xca\x27\x4c\x38\x84\x79\x23\xae\x7b\xa8\xd1\xc0\xa6\xc2\x68\x3e\x8c\x96\x81\xa4\xf0\x65\x4a\x31\x14\x36\xd5\x70\x53\x8a\x61\xc2\x14\x4c\x0a\x5f\xa6\x4c\x41\x61\x53\x0d\x37\x2d\x14\x9a\x8f\xa2\x5d\xa9\xc8\x76\x5d\xb0\xa9\x86\x9b\xf2\x09\x13\x3e\x61\x52\x3a\x32\xe5\x13\x0a\xfb\xd3\xd1\xfa\x2f\x28\x86\x49\x51\xc8\x94\x62\x98\xf0\x09\xf7\xed\xe6\x8d\x4b\x11\x7d\x4f\x50\x22\x79\x30\xa9\x85\x99\x37\x56\x90\xad\x85\x29\x6c\x76\x84\xe6\xd3\xef\x08\x49\x2f\x39\x4a\x31\x25\xe9\x09\x9b\xa2\xb6\x29\x49\x2f\x21\xe6\x25\xbb\xff\xd2\x8a\x99\xc2\xa6\x82\x6d\x5a\x31\x33\xa9\x85\x99\xec\xfe\x4b\x6b\x61\x26\x85\x2f\x37\x15\x6c\xd3\xc2\x97\x09\xfd\x2e\xd9\xb1\x97\xd2\xef\x84\x6d\x2e\xf0\xa9\x02\x40\xbf\xcb\x03\x67\x25\xfd\x4e\xd8\x37\x7c\xa1\xf5\x2b\x13\x16\x5d\x9a\xb4\x90\x45\x27\x6c\x2a\xd8\xa6\x2c\xba\x84\x32\x97\x54\x86\x4b\x29\x73\xf9\xf4\xd3\xb2\x10\x2c\x65\x2e\xa9\x26\x99\xec\x9f\x4b\xab\x49\x26\x15\x24\x37\x87\x96\xe6\xd3\xaf\xfd\xe4\xa3\x99\x7b\x78\xfa\xd1\x9e\x7e\x34\x3c\xe6\xd3\x8f\x06\xb1\x2e\x29\x1f\x96\x12\xeb\x84\xcd\x3e\xdb\x7c\xea\x4d\xe0\xda\x25\x7b\xde\x52\xae\x9d\xb0\xcd\x64\x3e\x75\x1d\xf0\xeb\x92\x02\x5c\x69\x51\xc9\x84\x6b\xb7\xb5\x21\xb9\x76\xc2\xd6\x60\x2c\x2a\x29\x24\x25\xb0\xf2\xa5\x37\xa1\xce\xe4\xbe\xfd\x07\x8e\x83\x48\xcb\x50\xe6\xeb\x72\x1d\x49\x25\xaa\x7c\xb9\x60\x41\x35\xca\x7d\x9b\x8a\x50\xac\xd7\x44\x3f\x18\x64\x5f\x46\x95\xc0\xe6\xac\xd5\x94\xd6\x97\x50\xf9\xd2\x0c\x83\x35\x27\x85\xcd\x8e\xe1\x7c\x19\x55\x52\x86\x32\x8f\xe5\xb3\xfc\xc5\xe9\x2f\x2a\xf2\x17\x93\x97\xc3\x97\x49\x9f\x13\x36\xfb\x8a\x53\xfa\x5c\x52\xdb\x31\x07\xca\x60\x6d\x47\x61\xeb\x0d\x5e\xf9\x79\xd6\x65\xae\xae\xe4\x4b\x9f\x13\xb6\xf9\xdd\x97\x6e\x04\xae\x5c\xba\x54\x2f\x57\x4e\xd8\xd4\xe2\xcd\x97\x5a\x44\x51\xc8\xa4\xc4\x50\x5a\x14\x52\xd8\x14\xde\x4d\x8b\x42\xe6\x0b\x2d\x1a\x3e\x5e\x2d\x7a\xa9\x45\xf8\x1f\xf9\x71\xf9\x42\x8b\xd8\xa0\x96\x2f\xb5\xe8\xa5\xe9\x13\x84\xc9\x8f\xcb\xd7\x35\xf9\x48\x17\xe1\x5f\xfd\x79\x3c\x76\xfe\xb9\xf1\xa5\x88\x77\x44\xd7\xac\x26\x29\x6c\xca\xf3\xa6\x2c\xba\xa4\x90\x63\x0e\x46\x67\x0b\x39\x0a\x9b\xf2\xbc\x29\xf3\x2d\x21\xb0\x25\xd5\x6a\x52\x02\x9b\xb0\xcd\x4e\x5b\xb5\x31\x29\xd1\x98\xec\x53\x4b\x4b\x34\x0a\xfb\x46\xb8\x61\x89\xc6\x84\xa1\x96\x83\x64\xee\xe9\x02\x0f\xb0\x6f\x4c\x5b\x65\xab\x25\xac\xb2\x74\xe1\xfc\x74\x68\x01\xb6\x3e\xf6\x74\x68\x01\xd2\x25\xf1\x53\xcf\x02\xf7\x6c\x9b\x0f\x3f\x55\x13\x78\x68\xe9\x92\xb8\x3c\x34\x61\xeb\x89\xad\xda\x98\x14\x5f\x4c\x76\x7a\xa5\xc5\x17\x85\x7d\x63\x72\x6b\xf1\xc5\xa4\x86\x62\x52\x8d\x24\xad\xa1\x28\x6c\x4a\xfd\xa6\x35\x14\x13\xd2\x59\xb2\x87\x2b\x25\x9d\x09\x5b\xaf\x2e\xe9\x2c\xe1\x8e\x25\xbb\xb3\x52\xee\x98\xb0\xcd\xd3\xcb\x1d\x4b\xca\x1f\xa6\x8b\xdd\xa7\x5f\xfb\xf4\x6b\xe3\x20\xa4\x93\x25\x74\xb2\x9c\x74\xa1\x74\x32\x21\xa9\x16\x91\x6f\x1d\xc4\x7b\xf0\xf8\xf2\xaa\x50\x14\x5c\x55\x88\x52\x11\x26\x5a\xde\xc8\x17\x82\x3b\x96\x94\x86\x48\xb9\x63\xc2\x76\x00\x7a\xab\x00\x30\xc1\x92\x52\x07\xf9\xd6\x6a\xa1\x80\x6d\x29\x05\x52\xc0\x84\x64\x53\x7f\x4a\x01\x13\xb6\x94\x82\xb7\x03\x10\xac\xb0\x64\xcb\x53\xca\x0a\xcb\x77\xd8\x7a\x1a\xe1\x6c\x0a\x26\x57\xba\xce\x2c\x93\x4b\xd8\x12\x0f\x64\x72\x25\xb4\xad\x64\x47\x7a\x4a\xdb\x12\xb6\x63\xa5\xb4\xad\x84\xaa\x95\x6c\x66\xca\xb7\xf3\x4a\x60\x53\x6f\x38\xdf\xce\x2b\xdf\x28\x13\x9b\x99\xf2\xad\x32\xc1\xe4\xda\x37\x5f\xdb\xf9\x0c\xb4\xad\xe4\x70\xbd\x94\xb6\x25\xec\x1b\xcb\x22\xd2\xb6\x12\x8e\x56\xba\xce\x2c\x47\x4b\xd8\x94\x1d\xce\xb7\x83\x19\x90\xec\xc3\x4e\x69\x5b\xc2\xa6\xf4\x76\x4a\xdb\x4a\x2a\x35\x66\x30\x72\xbd\x0d\xc6\x81\x7d\x63\x4e\x2f\x93\x2b\x61\x6f\x25\x25\x1a\xd3\x42\x8e\xc2\xa6\x40\x77\xca\xe4\x12\x92\xed\x53\x29\x93\x4b\xd8\x37\x42\x50\x99\x5c\x09\x47\x2b\x63\xf8\x78\xbf\x63\xf1\x1d\x99\xf9\xbf\x5d\x75\x81\xa3\x95\x2e\x50\xcb\xd1\x12\xb6\xa4\x0f\x6b\x30\x26\xb4\xad\x64\x43\x72\x4a\xdb\x12\x36\x05\x15\xf2\xed\xc0\x08\x47\x2b\x59\xa0\x2e\x39\x5a\x05\x71\x2a\x59\x67\x2e\x6a\x15\x5e\x80\xc7\xbc\x34\xa7\xac\x4f\x58\x30\xa6\x92\xa5\xd8\x92\x12\x25\xec\xdb\x35\xe8\x94\x94\xa8\x82\xf3\x94\x6c\x40\xaa\x5b\x78\x63\x60\xdb\x8b\xc7\x33\xe9\x2e\xaa\x18\x66\x7c\x44\xa7\x22\xfc\xea\xf2\x46\x1f\xcf\x68\xc5\x66\xb9\xf2\x10\x78\x61\xdf\xd6\xfe\xee\x50\x5c\x96\x42\xac\x9b\xfa\xb1\x79\x6e\xd9\x46\xf5\x63\xf3\x26\x65\x17\x5c\x9d\x9e\x1c\x62\x57\x9e\xbd\x2e\xec\xdb\x56\xe4\x55\x2c\xcb\x72\x58\x5c\x79\xaa\xba\xb0\x29\x20\x51\x9e\xaa\x5e\x70\xa1\x92\xdd\x33\x25\x17\xaa\x6e\x0e\x1a\xbc\x89\xc4\xa7\x82\x99\x94\xac\x88\x96\xcc\x24\x61\x43\xab\x29\x99\x49\x42\xb2\x67\xa4\xa8\x22\xf8\x81\x7d\xbb\x0c\xb1\x2c\x26\x58\x70\x96\x92\xb5\xce\x3a\x98\x3b\x0b\xfb\xc6\x6b\xc3\x65\xba\x60\x72\x15\x37\xe2\x7f\x84\x4d\x1c\x5b\x52\x9a\x0a\x66\x52\xb2\xeb\xa2\x64\x26\x09\x9b\xaa\xd7\x05\x4b\xe9\x03\xc9\xbe\x85\x92\xac\x24\x6c\xca\x5f\x14\x45\x0a\x2f\xa0\x5d\xa8\xcc\xa1\x7e\x50\xab\x70\x13\x13\x97\xb5\x0a\x0b\x4a\x53\xb2\xd7\xa0\xa4\x34\x09\x1b\xea\x50\x59\x72\xb0\x20\x2b\x25\x6c\xfd\x92\xac\x24\x6c\x22\xe7\xf2\x54\xf5\x3a\x08\x5d\x60\xaf\x17\x55\x04\x3f\xb0\x39\xaa\xbc\x2c\x26\x58\x30\x93\xb2\x7c\x21\x15\x00\x38\xe0\x16\x96\xe7\xa5\x0b\x9b\x8a\xf4\x25\x59\xa9\x28\x20\x98\xf5\x11\xb5\xa2\x66\x5d\x9e\xa6\x32\x98\x15\x34\xa4\x84\x7a\x5d\xd2\x90\x0a\x1a\xd2\x86\xe5\x54\xd2\x90\x0a\x06\x51\xb2\x7b\xa6\x2c\x00\x28\x6c\xaa\xdb\x97\x6c\x22\x21\xa1\xff\x96\x67\x9c\x0b\x9b\x12\x1f\x75\xa8\x72\x1c\x7b\x9e\x35\x78\xed\xf6\x73\x34\x9f\xc3\x46\xb4\x8d\xc0\xf4\x59\x40\x2c\x69\x48\x05\xcf\x28\xe1\xe7\x16\x64\xa3\x0f\x6c\x66\x1a\x25\xe7\xa8\x38\x09\x3d\x39\x6e\xad\x3c\x09\x5d\xd8\x54\x09\x2f\x39\x47\xc5\x89\xe5\x09\xf3\xb6\x86\x9a\x03\x1f\x67\x43\xdb\x2a\xf9\x38\x42\x0c\x4c\x41\x3e\x4e\xc1\xb4\xd9\x54\xe3\x2e\x99\x36\x42\xd6\xe5\x04\x4b\xa6\x8d\xb0\x0f\x5b\xef\xd7\xe6\x5c\xf3\xac\xc5\xb3\xd2\x46\x30\x8e\x1c\xbe\x10\xe3\x48\x51\x6f\x2f\xa1\xb9\x95\xf5\xf6\x0a\x76\xcd\x86\x7d\x55\x50\x6c\x3e\x90\x6c\x49\x29\x99\x36\xc2\x86\x7d\x55\xc3\xaf\x0d\xe1\x26\xa1\x80\x95\x55\xf9\x0a\xf2\xcd\x3e\xec\x1c\xbc\x7a\x41\x85\x49\x38\x5a\x25\x15\x46\xd8\x54\x10\x29\xa9\x30\x42\xc2\x00\x2a\x68\x31\x17\xf0\xd1\xec\x42\x3f\x1a\x90\x7d\x8d\x10\x25\xb1\x45\xc8\xe6\x6b\x5b\x5c\x4f\xd8\x94\x7f\x2e\xb9\x2e\xc5\xf1\xe6\xc9\x8a\x68\x4d\xbf\x23\xb0\x8f\xf0\x59\xa5\xe8\xce\x55\x81\xe8\xa1\x88\x17\x0a\x1f\xcf\x0b\x41\x6c\x49\xd6\x3a\x4b\x62\x8b\xb0\x8f\x54\xe4\xe3\x83\x5f\xf4\x46\xbf\xf6\xd4\xf8\x92\x46\x68\x7c\x90\x3e\xb2\x71\xf4\x92\x3e\x84\x4d\xb1\xdd\x92\xf4\x51\x70\x37\xb2\xf1\x85\x72\x37\x84\x0d\x21\xab\x2c\x3c\x57\xf0\x35\x92\xbc\x73\x59\x65\xae\x38\xc3\x7a\x33\xa9\x2a\xcf\xb0\x2e\x2a\xcb\x25\x89\xe1\x9a\x7e\x8e\xe9\xe7\x60\x98\xb2\xca\x5c\x41\xd4\xc8\x75\xd0\x85\xfd\x79\x3c\x8a\x79\x0d\xeb\x25\x51\xa3\x20\x6a\x24\xf9\xce\x92\xa8\x51\x61\xaf\x5e\xc3\x7a\xc9\xca\x28\x0e\xac\x4e\x56\x1b\xcb\x03\xab\x85\xcd\x39\x01\xe5\x81\xd5\x05\x51\x23\xc9\x18\x96\x44\x8d\xa2\x16\xdd\x66\xb2\x57\xd6\xa2\x2b\x88\x1a\xc9\x99\xcc\x25\x51\xa3\x20\x6a\x6c\x26\x7b\x25\x51\xa3\x38\x64\x3a\xc9\xb9\x95\x87\x4c\x0b\x9b\x33\x07\xca\x43\xa6\x0b\x26\x45\xb2\xda\x58\x32\x29\x84\x0d\x35\xad\x64\x52\x14\xb4\x89\x5c\xc5\x2f\xea\x90\x43\x87\xbc\x15\xa1\xab\xf0\x1a\x72\xd5\xf7\x17\xa8\x4b\xda\x83\xb0\x0f\x46\x54\x8b\xd0\x15\x4c\x88\x5c\xf6\x9d\xfa\x01\x6c\xe6\xa8\xe5\x89\xd0\x42\x2e\x7b\x85\xa9\xa6\xb0\xa9\x1d\x53\x91\xf6\x1d\x53\x4d\x4e\x8a\x2d\xf9\x12\xc2\x86\x51\x57\xf2\x25\x2a\x88\xcb\x96\x8d\x28\x3f\x4d\xf9\x8b\xde\xe8\x2f\x36\xdd\xc9\xc0\x68\x5d\x3a\x61\x53\x2d\xb9\x42\xc5\x82\xe3\x90\x2c\xaf\x97\x1c\x07\x61\x53\x2d\xb9\xe4\x38\x14\x2c\x83\x64\xcb\x40\x79\x00\xb3\xb0\x29\x4d\x53\x32\x0e\x0a\x2e\x41\xee\x6b\x0a\x5c\x72\x09\x84\x4d\xb5\xe4\xb2\xb2\x5b\x91\xc6\x4f\x8e\x52\x2c\xd3\xf8\xc2\xa6\x5a\x72\x99\xc6\x17\x92\x93\x99\x2a\xfd\x80\xc0\xa6\x5a\x72\x99\xba\x2f\x92\xf2\x49\xcd\xb6\x32\x29\x2f\xec\x81\x13\x4c\x3d\x31\x69\xed\xe4\xfc\xa6\x32\xad\x2d\x6c\x4a\xe6\x54\x6a\x75\x40\xb2\x18\x59\x66\xba\x85\x0d\x4f\xb1\xd2\xfe\x4a\x22\xa3\xed\x6b\x1b\x19\x71\x5e\xf1\x1e\x58\xb0\xe7\x15\x0b\xc5\x1a\x59\x99\xe9\xae\xba\xdc\x5b\xb1\x20\x56\xa5\x7b\x03\xf6\x60\x44\xf5\x08\xe3\xe2\x8c\xe1\x62\x41\xac\x3c\x63\xb8\xa8\xe6\xb6\x39\xdf\xa2\xac\xe6\x26\x14\x8b\x45\x55\xc6\x4f\xc0\x1e\x9f\xc7\xf3\xda\xa4\xc8\x0b\xda\x7b\x99\x22\x2f\xd2\xe2\x9b\x1a\x40\x55\x86\xc9\xa4\xb5\x8b\x45\x9d\x32\xad\x2d\xec\x61\x23\x8c\x79\x38\xf8\xb7\x58\xca\xa8\xf2\x0b\x95\x9f\x83\x81\xd1\x1c\x76\x91\xb0\x2e\xa6\xe6\x65\xc2\x5a\xd8\x10\x2f\xcb\x84\x75\x91\x2b\x2e\xa6\xd3\x65\xae\xb8\x48\x9a\xee\x71\x5c\x3d\x61\xd2\xb4\x48\xdc\xed\x81\x27\x36\x71\x57\x14\x81\x2a\x6a\xcd\x97\x45\xa0\x8a\x23\x44\x37\x35\x5e\xca\x23\x44\x8b\x5c\x5e\x41\xa0\x2d\x73\x79\xc2\x66\xe6\x5f\xe6\xf2\x8a\xba\x50\xa5\x8f\xb5\x2e\x94\xb0\xa9\x04\x53\x9e\x04\x5a\x9c\x04\x5a\x07\x73\x08\x4f\x02\x2d\xaa\x47\xed\x49\x47\x5b\x3d\xaa\x28\xef\x54\x3a\x05\x33\x7e\x45\xb1\xa6\xd2\x3a\x96\xe1\x06\xb0\xe1\xda\x95\x85\x9b\x6a\x5d\x5f\xb8\xa8\xd9\x5d\x4b\x87\x0a\x6c\x96\x1f\x6a\xf9\xb5\xa9\xd2\x54\x7e\x5a\xab\x34\x09\x9b\x82\xaf\x65\x95\x26\xa1\xe0\xae\x96\x55\x9a\x8a\x93\x40\x37\x05\x5f\xcb\x93\x40\x8b\x73\x3d\xaf\x98\x08\x11\xaf\xcd\xb9\x9e\x9b\x82\xaf\xb5\xc2\xd6\x5f\x3e\xb6\x28\xbd\x5d\x26\x27\x85\x0d\x07\xb0\x3c\xd0\x53\x28\x0a\x37\x95\xf9\xca\x22\x13\xb9\x27\x8a\x69\x26\xb2\x48\x3b\x16\x2b\x5e\x65\xda\x51\xd8\x14\xc0\x29\x6b\x39\x09\x45\xc1\xe9\x32\x13\x29\x6c\x8a\xb4\xd6\x32\x58\x22\x13\x59\x90\x53\xcb\x4c\xa4\xb0\xe1\x13\x96\x99\xc8\x22\x63\x58\x1c\xa9\x52\x66\x0c\x85\x4d\x91\xd6\xb2\x58\x93\x50\xa3\xbc\xca\x46\x24\x0a\x30\x11\xa9\x98\xeb\x52\xb3\x2b\xfc\x42\x34\x14\xf1\x8b\x76\x8e\x3e\x1a\x28\x8e\x41\x29\x0f\x07\x15\x36\x85\x79\x6a\x19\x8b\x01\x45\x75\xe9\x5a\x2a\xe6\x52\x31\x19\x3e\x97\x8a\xc9\x79\xa1\x45\x75\xe9\xf2\xbc\x50\x61\xb3\x40\x54\x9e\x17\x2a\x14\x14\xd6\xb2\xae\x94\xb0\xa7\x9f\xc3\xd8\x02\xa8\xd1\x8a\x7c\x47\x95\x7c\xd2\x85\x2a\x39\x99\xd0\x2b\xba\x43\xa4\x62\x32\xe9\xa6\x6e\x6b\x59\x44\xaa\xa8\x18\x55\xd4\x82\x2a\x2b\x46\x15\x55\xa2\x36\x75\x5b\x6b\xe9\xf8\x80\x1a\x8c\x7c\xa6\x53\x85\xcd\x49\x1f\x65\xc5\xa8\x22\xc3\x5a\x90\x66\xcb\x0c\xab\xb0\x67\x7c\xbf\x06\x75\x99\x80\x2d\xf2\xa8\xc5\xa2\x5f\x99\x47\x2d\x4a\x3a\x6d\x2a\x18\x95\xa7\x82\x0a\xa5\xd5\x6d\x2d\x05\xd8\x14\x7f\x2d\x2b\x3e\x15\x85\x9b\x4a\x7b\xb2\x70\x93\xb0\xa1\x8d\x96\x85\x9b\x84\x52\x8b\x3c\x3b\x54\xd8\x14\x7f\x2d\x33\xb7\x45\xb6\xb6\xd4\x0f\xcb\x3b\x09\x1b\x72\x69\x59\xde\xa9\xa8\xbf\x54\x7e\x79\xeb\x2f\x09\x9b\x12\xb1\xc5\xa1\xa1\x17\xec\xeb\x2a\x1f\x9f\x9f\x1b\x31\x6a\xb4\xdb\x83\x42\x8b\x34\x6d\xb1\xe8\x57\xa6\x69\x85\xfd\x37\x91\xad\x2f\x7e\xb1\x14\xf9\x8b\xaa\x1f\xfe\xda\x9a\x49\x42\x51\xb0\xb5\xac\x99\x24\xec\x99\x8a\x6c\x04\x4a\x3a\x51\xf8\x5d\x9f\x46\xa0\xa4\x49\xaf\xaa\xa4\x40\x51\xb0\xb5\xcc\xef\x16\x99\xdb\xcd\x32\x63\x99\xb9\x2d\xb2\xb5\x9b\x32\x4a\x75\x37\xf6\x04\x0a\x42\x68\x59\xd4\xa8\xee\x7a\x4f\xe2\x58\x2b\x18\x15\xb5\x89\x8a\xda\x44\x65\x6d\x22\x61\x53\x4e\xb4\xac\x4d\x54\x94\x18\x2a\xca\x3d\x96\x25\x86\x84\xcd\xca\x63\xdd\x9d\xf9\x53\x4f\xa8\x02\xb7\x6b\x3d\x21\x61\x4f\x22\x36\xeb\x09\x15\xf5\x84\x0a\x2e\x66\x59\x4f\x48\xd8\xac\x4f\xd6\x5d\xf7\x46\x3d\xa1\x62\xa9\xab\xac\x27\x24\xec\x49\x5c\x77\xd7\x4b\x51\x3c\xa8\x58\xea\x2a\x8b\x07\xd5\x5d\xdb\x24\x26\xbe\x6b\x9b\xe4\x8a\x8b\x43\x36\xca\x5c\x71\x91\xf2\x2d\x2a\x51\x95\x29\x5f\x61\x43\x67\x2d\x0b\xe0\x14\x99\xdf\x8a\xa5\xe8\xae\xe8\xce\x55\x1b\x11\x2f\xc4\x49\x8f\x45\x69\x9b\x7a\xd8\x5f\xc0\x66\xc9\xb2\xac\x76\x53\x54\xa8\x29\x2a\x2b\x95\x15\x6a\x84\x4d\x95\xa6\x7a\x18\xd7\x51\x5c\xa6\xa8\x60\x54\x8f\xf8\x88\x1e\x5c\x35\x10\x3d\x15\x5d\x5d\x48\xed\x99\xb2\xf6\x8c\xb0\x29\x56\x59\x0f\xbb\x90\x7a\x31\x45\xa1\x99\xb2\x5e\x8c\xb0\xfd\x42\x0f\xad\xe3\x41\x17\xba\x4a\xf5\xb0\x0b\x81\x4d\x49\xcb\x32\x7d\x5c\x54\x95\x29\xd8\x7d\x65\x55\x19\x61\xb3\x94\x5a\x26\x86\x8b\xea\x2d\x45\x95\x94\xb2\x7a\x8b\xb0\x29\x69\x59\x66\x5b\x8b\x6c\x6b\xb9\x66\x64\xb6\xb5\x28\xd5\x52\xd0\xdc\xca\x52\x2d\xc2\x66\x0d\xb6\x9e\xc6\x75\x94\x6a\x29\x8a\x3e\x94\xa5\x5a\x8a\x22\x2c\x1b\x92\x70\x59\x84\xa5\x9e\x68\xb4\x4b\x3f\x4f\x35\x1a\xd8\xac\xc1\xd6\xd3\x2f\x44\xa9\x96\xa2\x24\x41\x59\xaa\xa5\x38\x37\x71\x43\x25\x2e\xcf\x4d\x2c\xd2\xbc\x45\x49\x82\xb2\x2e\x4b\x99\xdf\x55\x7d\xcd\xef\x0a\x05\x35\xad\x2c\xc2\x22\xec\xc0\x7f\x99\xf2\x2d\x8e\x3c\xac\x42\xbf\x9e\x7a\x39\x60\xab\xe4\xa6\x7c\x8b\x94\x6f\x71\x8e\x44\x99\xf2\x15\x36\xb5\x30\xcb\x82\x2e\x45\x6a\xb6\xa0\xa6\x95\x95\x4d\x84\x4d\xe1\xcb\x32\x4d\x5b\xa4\x56\x8b\x9a\x25\x65\x6a\x55\xd8\x90\x97\xeb\xd9\x9f\xab\xae\x71\x97\x9a\x25\x65\x65\x13\x61\x53\xa6\xab\x4c\xc0\x16\x49\xd7\x2b\xd2\x44\x64\x53\x99\x3b\x53\x1e\xb3\x4c\xc0\x16\xa9\xd5\x62\x6f\x6c\x99\x5a\x15\xb6\x26\x6a\x6a\xb5\xc8\xa3\x16\xfb\x46\xcb\x44\xa9\xb0\x29\x8f\x59\x2f\x3f\x2d\x05\x4e\x0a\xa2\x58\x79\x38\x5f\xbd\x98\x2e\x51\x1e\xb3\x5e\x7e\x5a\x92\xa3\xc5\x9e\xca\xb2\xd8\x89\xb0\x5d\xd9\x36\x51\x2a\x14\x95\x4d\xca\x44\xa9\xb0\x83\x61\xce\x92\x28\x42\xb1\x5b\xb2\x2c\x89\x22\x6c\x4a\x6d\xd6\x4b\xab\x05\xaa\xb6\x37\xde\x15\x61\x30\x61\x23\x1e\x8a\x68\xfd\xfe\xfe\xbe\xe2\xb2\x88\x8a\xb0\xa9\x67\x56\x16\x51\x29\xce\xfe\x2b\x8e\xaf\xaf\x97\x5a\xf4\x22\x6f\xe3\x1a\xfd\xcb\x41\x96\x83\xfe\x8a\x4d\x8b\xf5\x52\x3f\x5e\x7a\x03\x46\x41\x0f\xfd\x2b\x52\xbe\xc5\xbe\xbc\x32\xe5\x2b\x6c\xca\x63\x96\x29\xdf\xa2\x62\x4a\xb1\xff\xad\xac\x98\x22\x6c\x6a\xa3\x95\xe7\x00\x16\xf5\x4b\x8a\xdd\x68\x65\x81\x12\x61\x73\x74\x52\xbd\x1c\xf2\x5e\xd7\x68\x55\x8d\xfa\xbd\x8c\xa5\x80\x4d\xa9\xcd\x7a\x19\x4b\x91\x87\xad\xf6\x85\xd4\xa2\x57\xd3\x9d\x8c\x82\xe4\x67\x2f\xb8\xba\x93\x4d\x43\x65\xb6\xb5\x48\x81\x16\xbb\x7a\xea\x74\x4c\x02\x36\xd5\x37\xcb\x42\x20\x45\xf1\x8f\x62\x6f\x46\x9d\x76\xf4\x69\x47\x33\xdf\xb5\x10\x48\x9d\x84\x2e\x1c\xc7\x5e\xa7\xbd\x4a\x12\x70\x53\x7d\xb3\x4c\x02\xd6\x9b\x24\x33\x05\xcb\xea\xad\x3d\x91\x45\x29\xb6\xc8\xb7\x59\x94\xe6\x40\xaa\xda\x57\xaf\xb6\x07\x52\x09\x9b\x6a\x24\xed\x81\x54\xcd\xb6\xf6\xda\x57\x4f\xb4\xdb\xda\x9b\x43\x95\x36\xab\xd1\x7d\xc3\x13\xf7\x8d\xd3\xcb\xa1\x9c\x34\x87\x2d\x5d\x70\x7d\x5a\x56\x57\xdb\x03\x96\x84\xe6\x08\xe3\x26\xcd\xf1\x81\x0d\xfb\xb3\xcd\x76\x34\x07\x2c\x35\xb3\xe2\xf6\x80\x25\x61\x53\xb1\xa0\x3d\x60\xa9\xd9\x1f\xde\x90\x23\xda\xfd\xe1\xc2\xa6\x62\x41\xbb\x3f\xbc\xd9\x13\xde\xb7\xa1\xc8\x5f\x2c\x7f\x91\xa6\xb6\xbf\xc8\xb1\xfa\x94\x3d\x6f\xb7\x8c\x0b\x9b\x8a\x05\x6d\xe6\x44\xe8\x9b\x5d\xd8\xb6\x8b\xc8\x99\x8a\x05\xed\xc6\xf2\x26\x99\xd2\x50\x0a\xda\x64\x8a\xb0\xcb\x8e\x6e\xdb\xd5\xb4\x8b\xce\x31\xbf\xd2\x6c\x06\x6f\x38\x47\xed\x66\x70\x61\x53\xc4\xa0\x3d\x99\xa9\xc9\xc2\x34\x99\xee\x36\x0b\x23\xec\xfa\x88\x9e\x8a\x5e\x5c\x55\x88\x4e\x45\x27\x57\x05\x22\x7a\x82\x34\x4b\x93\x77\x6e\xb7\x8c\x0b\x9b\x52\x07\x4d\xfa\xe5\x02\x5e\xa8\x78\xfc\xf4\xf1\xd3\x17\xe2\xf1\xa8\x6f\x93\x39\x69\xd2\xa1\x6d\xe6\x44\xd8\xf8\xeb\x26\x8b\x72\x01\x5d\xd8\x8a\x7c\xa1\xb0\x0b\x17\xa2\xbb\xa2\xe7\x75\xd5\xe2\xf1\xe1\xe3\xf1\x13\x65\x53\xc3\x17\x0a\xba\x70\xdf\x10\xf9\x42\x4c\x22\xf1\xfd\x6d\x7e\xa5\x39\xa0\xa9\x49\x64\xf5\xa1\xae\x02\x9b\xaa\x56\x6d\xca\x45\x68\x4e\xfc\x6d\x53\x2e\xc2\x2e\x5f\x3b\x6d\x04\x47\xe1\x93\xbe\x69\x0f\x6b\x12\x36\xd5\x13\x9a\x83\x9b\x2e\xe0\x59\x07\x37\xaa\x98\x87\x8a\x59\xde\xf8\x79\xd6\xd5\x7a\xf6\x74\xf7\xa1\x62\x9a\x72\xa1\x7a\x42\x9b\x72\x69\xf2\x2b\xcd\xe1\xa0\x6d\x7e\x45\xd8\x54\x4f\x68\xf3\x2b\x42\x53\x84\xbc\xcd\xaf\x08\x1b\x8a\x73\xbb\xa7\xbb\x0f\x14\x93\x74\x44\x1f\x2a\x26\xf9\x95\x4d\xf5\x84\x36\xbf\xd2\x83\x99\x59\xf5\x40\x44\x47\xb3\xd1\xba\x61\x39\xf5\x98\x5e\xa5\x9a\x5c\x83\x59\xbb\xe9\xba\x39\x73\xa9\x61\x39\xb5\x67\x2e\x09\xbb\x96\x22\x1a\xc1\xae\xe8\xa6\xb2\x77\xbb\x2b\x5a\xd8\x14\x08\x68\x77\x45\x37\x1b\x9a\x9b\xe5\xf5\x1e\xaa\xc9\x50\x4d\x16\x4d\x8d\xcf\xb3\x78\xa1\x75\x43\xf4\x54\x44\xeb\xb7\x22\x5b\x8f\x9a\xb0\xa8\xd3\xe6\x6a\x84\x4d\x7e\xa5\xcd\xd5\x34\xa7\x29\x35\x0b\xd4\xed\x69\x4a\xc2\x66\xf8\x6c\x36\x4d\xff\xd8\x64\x61\xfa\xf0\xf1\x7e\x6d\x60\x53\x6c\xa0\xcd\xc2\xf4\xb8\xbe\x70\xb3\xd0\xd7\xec\x6a\xfe\xc0\x86\x12\xde\x6e\x6e\x6e\x36\x21\x37\x4b\x65\xed\x49\x45\xc2\xae\xfd\xfd\x6a\x5b\x6d\x92\xa6\xd9\x5e\xdc\x63\xd0\x6c\x3d\x8b\x19\x19\x2a\x16\xb4\x19\x19\xa1\x39\x35\xad\xcd\xc8\x34\x67\x08\x35\xfc\xa5\xf6\x0c\x21\x61\x73\xa4\x53\x4f\x2d\x98\x9c\x48\x73\x2c\x6c\xbb\x33\x57\xd8\x94\x3a\x68\x77\xe6\x0a\xcd\xd9\x57\xed\xce\x5c\x61\x13\x0f\xf4\xf4\x03\xb2\xe7\xb6\xa9\x7a\xdd\xee\xb9\x15\x36\x05\x11\xda\x03\x83\x9a\x03\x83\x7a\xa0\x32\x1e\x18\x24\x6c\x0a\x22\xb4\x07\x06\x35\x29\x97\xe6\x40\xaa\xf6\x28\xa0\x66\x83\xed\x26\x1b\xd6\x6e\xb0\xed\x79\x0d\x1a\x3d\x3f\xa2\xcf\x8d\x77\xae\x4a\x44\x0f\x45\x0f\xae\xe2\x17\x35\x57\x60\x53\x10\xa1\x4d\xe5\x34\xe9\x9b\x66\x4d\xb1\xdd\x86\x2b\xec\xf6\x46\xcd\x15\x68\x0e\x91\x6a\xb3\x3b\xc2\x6e\x94\x81\x4c\xcf\x05\x4f\xae\xa2\x57\xfd\x68\xc0\x6e\x1f\xef\x47\x03\x9a\x65\xb3\x36\x95\xd3\xa4\x6f\x9a\x35\xb2\x76\x83\xad\xb0\x49\xdc\xb5\xa9\x9c\x26\x49\xd3\xec\xa6\x6d\x93\x34\xc2\xa6\xb8\x42\x73\x9e\xd0\x05\x3c\x2b\xb8\x6a\xfa\xac\xe9\xb3\x14\xf9\xac\xe0\x85\x18\x2b\x43\x17\x0e\x6c\x8a\x2b\xb4\x79\x9b\x26\x0b\xd3\xec\x6d\x6d\xcf\x10\x12\x36\x41\x5c\xbb\xb7\xb5\xd9\xa2\xda\xac\x22\xb4\x5b\x54\x9b\x33\x84\x76\x5f\xb3\xbc\xf6\x0c\xa1\x0e\xd4\x84\xfd\xa8\x1d\xaa\x49\xa8\x26\x58\x8a\x07\x06\x75\xf8\x69\x17\x2f\xe4\xa7\x0d\x3f\xed\x41\x53\xfd\xb4\x6c\x18\x6d\xb8\x3d\xed\x86\x51\x61\x53\x5c\xa1\xdd\x30\xda\x6c\x18\x6d\xb8\x3d\xed\x86\x51\x61\x13\x5c\xb6\x67\xf5\x34\x69\x92\x66\x72\xdb\xa6\x49\x9a\x03\x74\x9a\x83\x0b\x3a\xed\xfb\x64\x6a\xde\x1f\x11\xaf\x4d\x4e\xa4\x21\xcc\xb4\x39\x91\x66\x7f\xe5\x26\x8f\xda\xee\xaf\xec\xbc\x9c\x60\x53\xfd\xb7\x53\x27\x08\xec\x1e\x89\x28\x15\x5d\x96\x46\xd8\xd8\x66\x4e\x84\x4d\x25\x85\x36\x73\xd2\xa4\x49\x9a\xed\x8c\x6d\x9a\xa4\x49\x8d\x6c\xca\x04\x76\xea\xf1\x80\x0e\x46\x88\xb4\xef\x39\x13\x67\x93\xa6\x6d\xcf\xc4\xe9\xc4\x1e\xa9\xfe\xdb\xa9\x3d\xa6\xf6\x38\x15\xf9\x42\x0c\x9f\x70\x68\x3a\x1d\x3e\x81\x4d\xbd\x85\x76\x1f\x64\x67\xd1\x5f\x7c\xb4\xd4\x55\x72\x4c\xce\xa6\xde\x42\x7b\x4c\x4e\xa7\x1f\x0d\xe7\xec\x46\x45\x61\x53\x2a\xa1\xcd\xe8\x34\xe9\x9b\xa6\xb2\x6e\x9b\xbe\x11\x36\x9b\x60\xda\xf4\x4d\x93\xbe\xe9\xc4\x03\x98\xbe\x11\x36\xf5\x09\x3b\x35\x3e\xd2\x37\x4d\x39\xe3\x36\x7d\xd3\xa4\x6f\x3a\x51\x4c\xd3\x37\xc2\x6e\xa2\x3f\xd3\x37\xcd\x16\xc6\x26\xcc\xee\x52\x01\x80\xcd\x39\x6f\x5d\x2c\xd7\x08\x4d\xc5\xdf\x2e\x75\x02\xd8\x64\xa7\xbb\x8c\xeb\x48\x05\x35\xb5\x7c\xdb\x54\x90\xb0\x99\x96\x74\x19\xd7\x91\xeb\x69\x56\x4a\xba\x34\x64\x60\x37\x86\xec\x6e\xc9\xae\x49\xeb\xf9\x42\xe5\xe8\x4c\xde\x67\x37\xf1\xa6\x79\x9f\x66\xa3\x62\x53\x4f\xb6\xdd\xa8\x28\x6c\xb6\xda\x74\xe9\xef\x81\x86\xcf\xd3\xa5\x6d\x97\xb6\x4d\xf4\x67\x76\x48\x68\xf8\x3c\x5d\x6a\xa1\x09\xa3\x46\x57\x4d\x18\x35\x19\xa1\xce\xcf\x8d\x36\x82\x08\x84\x4a\x0c\x6d\x2a\xa8\x39\xd7\x65\x93\x22\x6f\xcf\x75\x69\x76\xb3\x35\xe5\xe9\xda\xdd\x6c\xcd\x0e\xb6\xcd\x8e\xe1\x66\x1b\xdb\x07\x9a\x4d\x69\xed\x6e\x36\x61\x93\xfc\x6e\x77\xb3\x35\xfb\xd4\x9a\xba\xad\xed\x3e\x35\x61\xaf\xcf\xe3\x31\x18\x8e\x67\xe9\x9a\xeb\xdf\x0f\xc5\xeb\xf8\xff\x8d\xc4\x1e\xde\x22\x6c\x36\x0c\x77\x6b\xc0\x40\x53\xb2\xad\x3d\xcf\xa5\xd9\x11\xb7\xd9\x30\xdc\xee\x88\x6b\xb6\xbf\xb5\x93\x16\xb7\xbf\x35\x5b\xde\xf6\xf2\x45\x0c\x6c\x38\xa9\xa5\x9d\x09\x78\x52\x4b\x73\x3a\xcb\x5e\xbe\x88\x06\xcc\xe9\x2a\x6d\xc4\xed\xe9\x2a\xc2\x5e\xd8\xa1\xdb\xdf\x9a\xc4\x5a\x73\xe4\x64\x9b\x58\x13\x46\xa3\x0b\x24\xd9\x7e\xec\xc6\xc2\xa8\x73\xd5\xdd\x1f\xd1\xe0\x59\xf4\xa6\x16\x46\x9a\xac\x59\x89\xe8\xd6\x79\x02\x1b\x92\x40\xb7\xce\x93\x94\x59\x1b\x24\x99\x32\x6b\xce\x3a\xd9\x6c\x2b\x6e\xcf\x3a\x11\x8e\xc1\x6b\x9b\x45\x13\x0e\x07\x7a\xb3\x68\xc2\xc1\xa1\x8f\xbd\x58\xea\x6c\x12\x6b\x9b\x0d\xc3\x6d\x62\x4d\x38\xe2\xf3\xac\x97\xa2\xd7\x25\x22\xc4\x5b\x46\xb6\xc0\x66\x0f\x71\x2f\x87\x4a\xe0\xd0\xc2\x3c\x5d\xa5\x39\x51\x65\xb3\x87\xb8\x97\xda\x07\x1c\xd4\x71\xec\xa5\x85\x01\x87\xb3\x8a\xa5\x42\x02\x9b\x0d\xc3\xed\x19\x2c\xc2\xa1\x5b\x34\xbb\xd7\xa4\xf2\xf6\x42\x01\x4c\xe5\x09\x07\x7b\x75\x7b\x19\x4b\x9b\xdd\x63\xc3\x70\x9b\xdd\x13\x0e\x36\xf5\xf4\x72\x18\x21\xc9\xb7\xd9\x0a\xdc\xcb\x18\x0e\x18\xb0\x02\xdb\x84\x9f\xb0\xd9\xe4\xdb\xcb\x21\x1c\x18\x87\xaf\xad\x46\x03\x83\x53\xcf\xdb\x6d\x8c\x6d\x5a\x90\x7d\xbf\x6d\x5a\x50\x18\xe4\x52\xda\xb4\x60\xb3\x67\x71\xb3\xa3\xb7\xdd\xb3\x28\x0c\x96\x60\xdb\x4c\xa1\xb0\xe1\x6c\x34\xfb\x17\x2f\xe0\x90\xf0\xcf\x8d\x7e\x34\x02\x7a\x76\xf4\xb6\xf9\x44\x61\x50\xbc\xbc\xcd\x27\x0a\x7b\xd9\xf7\x0e\x6f\xc0\xd0\x23\x99\x4f\x6c\xb6\x18\x6e\xf6\xfd\xf6\x72\x94\x02\x26\xbb\x17\xda\xe4\xa1\x30\x29\x0c\xd7\x26\x0f\x85\x09\x9f\xbd\x4d\x1e\x0a\xf3\xe6\x17\x72\xd9\x02\x98\x37\x5b\xaf\x59\x99\x16\x64\xe7\x5a\x9b\x16\x14\x26\xb9\xef\x36\x2d\x28\xcc\x69\x53\x1d\x04\x97\x65\xfe\xcb\xab\xec\x42\xeb\x99\x7f\x6e\xb4\x0b\x09\x79\x56\xa3\x13\x86\x3c\xc0\xcc\x8f\xc8\x77\x64\xee\x01\x63\xa5\x4d\x0b\x0a\x93\xda\x67\x6d\x5a\x50\xd8\x30\x56\xda\x5d\x96\xc2\x6c\x15\x53\x0f\xc0\x96\xca\xbd\x98\x4c\xb9\xa5\x52\x08\xe7\x7d\xe6\x13\x85\xe0\x94\xd4\x36\x9f\xd8\xe4\x13\xf7\xd2\x90\x1d\x89\x81\x98\x9f\xc7\xdb\xf7\x96\x9e\xf1\x6b\x1b\x06\x03\x7b\x11\x0e\x98\x62\x14\xc2\xf1\xda\x14\xa3\xb0\xd9\xbe\xdb\xdb\xf1\x1a\x08\xca\xb8\xf7\x76\xbc\xe6\x9c\x9a\xcd\xf6\xdd\xf6\x9c\x1a\x21\x28\x8d\xdd\x9e\x53\x23\x6c\xf6\xea\xf6\xd6\x0d\x01\x41\x99\xdb\xf6\xe8\x1a\x21\x6a\xfe\xfb\xf3\x82\xae\xbf\xff\xf9\xfe\xeb\x0f\x7f\xf7\x0f\xf7\x5f\xff\xf1\xfe\xe7\xf3\xeb\xf9\xd7\xdf\x7e\x3b\x7f\xfe\xfd\xf5\xd3\xf3\xf7\xaf\x3f\x5c\xd2\xaf\xd7\xf9\xfe\xe9\xe7\xf3\xb7\xf3\x2f\xbf\xfc\xf5\xb7\xe7\xf9\xf5\xeb\x2f\xbf\x5e\x77\xf1\xe7\xff\x0e\x00\x00\xff\xff\x4a\x6a\xca\x5f\x91\xad\x00\x00"); -func _cfd ()([]byte ,error ){return _dc (_eggf ,"Adobe-GB1-2")};var _gfae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4d\x8b\xdb\x3c\x10\xc7\xef\xfa\x14\x3a\xee\x73\xd8\x27\x33\x7a\xb3\x0c\x26\x50\x76\x59\x48\x61\xdb\xd2\xed\x1b\x94\x1e\x1c\x7b\x1c\x0c\x8d\x6c\x1c\xe7\xb0\xdf\xbe\xcc\x8c\xb3\x85\x1e\x82\xa3\x9f\x35\xff\x28\xbf\x91\xb4\x7b\x38\x3c\x1e\xca\xb8\xda\xdd\xa7\x65\xea\x5e\x68\xb5\xc3\x58\xfa\x85\x2e\xd3\x75\xe9\xc8\x1e\xe9\x34\x16\x63\xd0\xd9\x7e\xec\xd6\xdb\x50\x1e\xdd\xb9\x9d\x8d\xe1\xfa\x97\xd7\xcb\x4a\xe7\x43\x19\x26\xeb\x75\x5e\x7f\x9d\xb7\xb9\xd6\xee\x3e\xd3\x69\xbc\xac\xcb\xab\xbd\x7b\xd7\x4f\x47\xfa\xcf\xf6\x34\x30\xff\xb8\xf4\xb4\x8c\xe5\x64\xef\xde\xb7\x73\x5b\xf0\xed\xc5\xcb\x75\x9e\x7f\xd3\x99\xca\xca\x79\x34\x18\x2a\xbd\x3c\xcd\xee\xe1\xb9\x9d\x3f\xb4\x67\xb2\x3b\xc9\xba\xd7\xca\x7b\x9d\x26\x6f\xbf\xd1\x72\x19\xa7\x62\xf1\x7f\x80\xf8\x17\x7f\x79\x9d\xc9\xe2\x96\xf2\xe3\xeb\xe1\xd1\xfe\x44\x8b\x60\x5d\x8c\x3e\xfc\xda\xf8\xf7\xe7\xa9\x27\x0b\xb7\xdf\x3a\x3c\x3e\x4c\xd7\xb2\xda\xda\xc7\xa0\x0c\xf5\x5f\x75\x53\x4f\x97\xb9\xed\x68\x69\xcb\x89\x8c\xb5\x0d\x00\xc0\xde\x36\x2e\x3c\x3d\xed\x79\xb9\xff\xcc\x30\xbe\xda\x2a\xc7\x5e\xc9\xad\x02\x60\x18\xf6\x16\x4c\x03\xa8\x63\xe4\xb1\x8b\xc9\x34\xe0\x94\x38\x26\x11\x9d\x69\xc0\x2b\xf1\x4c\xaa\x94\x4d\x03\x41\x49\x60\x82\xe0\x82\x69\x20\x2a\x8a\x82\x5c\xe6\xec\xa4\x28\x09\x8a\x9e\xc3\x2b\x45\x95\xa0\xaa\xe6\xf4\xac\x28\xcb\x0a\x20\x70\x7c\xad\xa8\x16\xe4\x81\xe3\x5b\x45\xed\xb6\x4e\x8e\x3f\x2a\x3a\x0a\xca\xc8\xf1\x9d\xa2\x8e\x91\x87\x8a\xe3\x7b\x45\xbd\x20\xef\x38\x9e\x14\x91\xa0\x98\x39\x7e\x50\x34\x08\xca\x01\x4c\x83\x6a\x0a\xc5\x54\x80\x3a\x99\x06\x55\x16\x8a\xac\xe0\xa3\x33\x0d\xaa\x2d\x14\x5b\x21\x41\x36\x0d\xaa\x2e\x14\x5d\x21\xa7\x60\x1a\x54\x5f\x18\x36\xa7\x1c\xaf\xbe\x50\x7c\x45\x5f\x71\xbc\xfa\x42\xf1\x15\x93\xe7\x78\xf5\x85\xe2\x2b\xe6\xcc\xf1\xea\x0b\xc5\x57\xc2\xc0\xf1\xea\x0b\xc5\x57\x0a\xc0\xf1\xea\x0b\xc5\x57\x4a\xdc\x58\x54\x5f\x28\xbe\x52\xcd\x9d\x45\xf5\x85\xe2\xab\x42\x6e\x2d\xaa\x2f\x14\x5f\x55\xe0\xd6\xa2\xfa\x42\xda\xfa\xcf\xf1\xea\x0b\xc5\x57\x55\x73\x6b\xdd\xb6\x17\xc5\x57\x46\x6e\xad\x53\x5f\x4e\x7c\xe5\xc0\xad\x75\xea\xcb\x89\xaf\x5c\x71\x6b\x9d\xfa\x72\xe2\x2b\xd7\xdc\x5a\x17\xb6\x7d\x9d\xeb\xbd\xad\x1d\x26\xd9\xdc\xb7\x4d\xcc\xdf\xf9\x16\x78\x3b\x95\xdd\x75\x59\xa8\xac\x72\x07\xc8\xb1\xe3\x63\x33\x16\x7a\xbb\x4f\xe6\x69\xe6\x2a\xf9\xfc\x09\x00\x00\xff\xff\xb3\x7e\x40\xe8\x7b\x04\x00\x00"); -var _cagcb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\x41\x0f\x93\x30\x14\x07\xf0\x3b\x9f\xe2\x1d\xe7\x61\x42\x81\x52\x4d\x8c\x89\xb2\xc3\x88\xd9\x34\xa2\xd3\xc4\x78\x80\xf6\x8d\x34\x19\xa5\x29\x70\xd8\xb7\x37\xef\x15\xd9\x61\x79\xe3\x57\xfa\xcf\xeb\x2b\x69\xdd\x9c\x1a\x67\x17\x48\xbf\x85\x49\xb7\xb8\xc0\xdd\x3a\x13\x70\x9e\xd6\xa0\x11\x7a\x1c\xac\x4b\x12\x91\x83\xb1\x7a\xf9\xff\xc8\x45\x8f\x9d\x4f\x92\xf4\xfc\xc5\x3c\xfa\xe3\x67\x79\x3c\xc3\x3a\xe3\x86\x75\x73\x6a\x9f\xf3\x82\x63\xe3\xee\x13\x14\x71\xb3\x59\xfd\x16\x00\x90\x7e\xc7\xc1\xce\x4b\x78\xc2\xe1\x93\x99\x7a\x7c\x03\x06\xef\xe4\x5f\x83\xc1\x60\xdd\x00\x87\xfa\xda\x8a\x9d\xdb\xd5\xfb\x07\x8e\xe8\x16\x10\x6c\xe8\x0c\xd7\x24\xad\x2f\x9d\xbf\x76\x23\xc2\xab\x95\x1b\x2f\xf1\xca\x0d\xc3\x6c\x27\x07\x22\x7f\x9b\x65\xf2\xe5\x3f\x9e\x1e\xb7\xa8\x24\xfd\xfd\xb3\x39\xc1\x1f\x01\x22\x83\x5c\xca\xbc\xfc\xbb\xf9\xaf\xcb\x64\xf6\xb7\x44\x1e\xbb\xd7\xd6\x84\xce\x0d\x98\x7c\xe8\x44\xd9\x7f\x84\xad\x88\xa2\x2a\x2b\x32\xd9\xb1\x51\x11\x85\x2a\x0b\x36\x1d\x4d\x47\x93\x6c\x26\x1a\x92\x65\x24\x95\x60\xa9\x72\x92\x92\x45\x46\xa9\x48\xde\xb1\xbc\x8f\x42\xe9\x65\xce\x12\x73\x2a\xca\x89\x1d\xa8\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\x32\x16\x2c\x54\xe8\x2c\x8a\x46\xbc\x9f\x95\xfe\xd3\xd5\xee\xc3\xd6\x6b\x08\xe8\x16\xbe\x58\x1e\x28\x0d\xc9\x3a\xdc\xbf\x1c\x3f\x79\xda\xc5\xbf\x7f\x01\x00\x00\xff\xff\x33\xf7\x40\xf6\x65\x02\x00\x00"); -func _bdef ()([]byte ,error ){return _dc (_cebg ,"ETenms-B5-H")};var _faa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xcb\x8e\x5c\xb7\x15\xdc\xf7\x57\xdc\xa5\xb3\x70\xc4\xf7\x03\x68\x34\xe0\xf8\x81\x68\x61\x3b\x88\xec\x24\x40\x90\xc5\x25\x79\x28\x0c\x10\xcd\x0c\x46\xa3\x85\xff\x3e\xa8\xaa\xb6\x12\x1b\x59\x18\x6d\xd5\xd4\xe1\x65\x1f\x56\xd5\xe1\xed\x37\x5f\xbf\xfd\xe6\xed\xe3\xc3\xeb\xf1\xe6\x2f\x2f\x4f\xf3\x9d\xbd\x1e\xfb\xe1\x71\xbd\xd8\xc7\xa7\x4f\x2f\xd3\x8e\x61\xef\x1f\x1e\x2f\x17\x1f\x8e\xf5\x30\x5f\x7f\xfd\x27\x3f\xe6\x87\xf3\xf9\x72\x41\xfd\xbb\x5f\x3e\xbe\xda\x87\xb7\x8f\xfb\xe9\x88\xe2\xad\x4f\xcf\x77\xee\x71\xbc\xf9\xab\xbd\x7f\xf8\xf8\xfa\xf2\xcb\xf1\xc5\x57\xeb\x69\xd8\x1f\x8e\x65\x1b\xf8\x8f\x2f\xcb\x5e\x1e\x1e\xdf\x1f\x5f\x7c\xfd\xc3\x3b\xff\x19\x7e\xf7\xe9\xf9\xf9\xdf\xf6\xc1\x1e\x5f\x0f\x47\xcc\x1e\x17\x3f\x2f\x6f\xbe\xfe\xfe\x7c\xfe\xe1\xfc\x60\xc7\x9b\x6f\x7f\xb2\xc7\x2f\xff\x94\xbf\xfc\x33\xff\xc2\x3f\xfc\xcd\x5e\x3e\x3e\x3c\x3d\x1e\xde\xfd\xd1\xb9\xf2\x5f\xfc\xa7\x5f\x9e\xed\xf0\xf7\x15\x7e\x7e\xfb\xcd\x8f\x7b\x7f\xb4\xd7\x23\x38\xad\xfe\xe6\x1f\x3f\xbf\xfd\xe6\xf8\xa7\x3f\xbc\x3b\x42\x8e\xdd\xfd\xeb\x4e\xfd\xfb\xf7\x4f\xcb\xee\x5b\xb8\x04\x7d\x9d\xf9\xb4\xec\xe3\xf3\x39\xed\xe5\x7c\x7c\x6f\x97\xe3\xb8\x3a\x77\x3b\x8e\xe3\xda\xdc\x0d\xff\xfa\xca\x27\x77\x3b\xae\xdf\x7d\xfb\xdd\xb7\x37\xec\xfb\x77\xfc\x8b\xd7\x32\x8f\x4f\xaf\xcb\xb6\x30\xae\x70\xf5\xfb\x76\xf8\x58\x52\x43\xd5\xff\xfe\xf9\xe2\x9d\xbb\x3f\xfb\x61\xdd\x2b\x02\x2a\xaa\xfd\x5a\x71\x3d\xf5\xd4\xd3\xe7\x76\x3b\x7a\x07\x90\xbb\x80\x09\x52\x4d\x91\xd8\x22\xc6\xc2\xc0\xb2\xd3\x13\xd9\xf9\x76\xf8\x12\x80\xec\x22\xa4\xdc\x8e\xa0\xa5\x77\x15\x52\x81\x54\x22\x4d\x88\x01\xc1\xd3\x82\x1e\x1f\xb0\x72\xc8\x05\x88\x56\x0e\xe0\x44\x0f\x4e\x14\x27\x82\x93\x3c\xf6\x13\xc5\x89\x63\xdc\x8e\x54\x51\x15\xc7\x12\xb2\x6f\x47\x76\xe0\x24\x55\x25\x54\xe5\x9e\x81\xa8\x2a\x61\xe5\x92\xb1\xc3\x2c\x4e\x06\xa7\x66\x7c\x8b\x2c\x4e\x06\xa7\x79\x54\x15\x71\x0a\x38\xdd\x61\x3f\x45\x9c\x02\x4e\xaf\xa8\xaa\xe2\x54\xf6\xc7\x15\x6c\xa8\x8a\x54\x41\xf2\x3e\xa0\xae\x89\xd5\xd4\xc5\x80\x4d\x36\xb1\xda\x56\x63\x51\xd8\xc5\xea\x3a\xa4\xe6\x00\x89\xd5\xc9\x4a\x3c\x91\x53\xac\x93\xac\x1c\xd1\xdc\x53\xac\x93\xac\xe2\x50\x38\xc4\x1a\x64\x95\x9e\x00\x89\x35\xc8\xaa\x19\x85\x53\xac\x49\x56\xcb\x1e\x90\x58\x73\xaf\xdb\xe1\xbb\x47\xe1\x44\xc5\xfd\x23\xa4\x08\xd6\x52\xe1\xe2\xe1\x39\x87\xb5\x96\x0a\x17\x59\xae\x62\x13\x26\x96\x91\xe5\x0b\xd6\x32\xb1\x8c\xac\x10\x50\xb8\xc5\xda\x64\xc5\x80\xe5\xb7\x58\x7b\x6e\x40\x0d\x85\x7b\x89\x75\xdf\x44\xb8\x5c\x87\x63\xe1\x70\x2c\x4c\xb5\x03\x62\xe1\x70\x64\xe5\x04\x96\x64\x3e\xa8\xe0\x50\x62\x01\x24\x96\xc4\x58\xa0\xfd\x21\x35\x0e\xa9\xb1\xf6\x08\x48\x2c\xca\x31\x34\x28\x74\x48\x8f\x83\x7a\x0c\x3d\x3b\x40\x62\x45\x8a\xd6\x41\xa3\x43\xfa\x1b\xd4\x5f\xf4\x68\xce\x90\x00\x47\x92\xb4\xd1\x9c\x21\x05\x0e\x2a\x30\x06\x34\x67\x48\x82\x83\x12\x8c\x11\xcd\x19\xd2\xe0\xa0\x06\x63\x42\x73\x86\x44\x38\x28\xc2\x98\xd0\x9c\x21\x15\x0e\xaa\x30\xe6\xda\x00\x89\x45\x15\xc6\x92\x50\x28\x15\x0e\xaa\x30\xd6\x98\x01\x89\x45\x15\xc6\xda\x51\x28\x15\x0e\xaa\x30\xb6\x8e\x16\x4a\x85\x83\x2a\x8c\x3d\xa3\x50\x2a\x1c\x54\x61\x72\x30\xf4\x90\x0a\x07\x55\x98\xbc\x47\xa1\x54\x38\xa8\xc2\x14\x1c\x5a\x28\x15\x8e\x31\x2b\xa0\x82\xc2\x31\x1b\x21\x16\x46\x18\x6d\x48\x98\x83\xc2\x4c\x91\xcd\x91\x30\x07\x55\x98\x12\x9b\x23\x15\x0e\xaa\x30\x65\x36\x47\x2a\x1c\x54\x61\xca\x6c\x8e\x54\x38\x2c\xfb\xdb\x91\x0a\x9b\x63\x39\x08\x0a\x7c\xa2\xa0\x48\x88\x6b\x95\x8e\xad\x4a\xab\x83\x5a\x4d\x35\xe1\xd0\xa4\xd5\x41\xad\xa6\x16\xb1\xbc\xb4\x3a\x28\xcc\xd4\x7a\xbd\x5c\xa7\x84\x39\x29\xcc\xd4\xbb\x07\x44\xd6\xa4\x30\xb3\xcb\xe9\x72\x9d\x12\xe6\xa4\x30\xb3\x47\x6e\x4e\x09\x73\xfa\xf3\xbc\x1d\x39\x78\x4f\x68\x10\x62\x61\x08\xe1\x72\x9d\xd2\xea\xa4\x56\x73\x44\x57\xa7\xb4\x3a\xc3\x44\x61\x44\x57\x67\x98\x43\xd0\x60\xa1\x27\x34\x09\x71\xad\xc4\xe5\xa5\xe8\x19\x8b\x03\x84\x38\x9f\xb1\x70\x2d\x8a\x3c\x27\x74\x62\x4a\xe4\x33\x8e\x76\x3b\x72\x0e\x84\x46\x17\xd4\x01\x65\xae\x35\x4e\x41\x27\x21\x47\x88\x9b\xa0\x3b\x72\x46\xce\x4e\xb9\x63\xa6\x9c\x6f\x47\x2e\x01\xac\x94\x8b\xa0\xc2\x27\x66\x42\x95\x10\x37\x51\x12\x0b\xb5\x09\x7a\x28\x97\x06\x48\x1e\x9a\xf4\x50\xae\x18\x07\x53\x1e\x9a\xf4\x50\x6e\x11\x9d\x90\x87\x66\xd1\x3c\x88\x11\x90\x58\x65\xf0\x38\x50\x57\x30\x3f\xae\xb3\xac\x8a\x0e\xe2\x14\xcb\x6a\x42\x4c\xe3\x50\xd8\x9d\xb5\x6f\x47\x71\xb1\x70\x5c\xff\x3a\x62\xff\xdf\xd4\x9d\xc5\xf4\xf0\xad\x55\x78\xf2\xb2\xeb\xd4\xd0\x88\xb5\xe1\x0b\xcb\xaf\x53\x53\x23\x36\xca\x41\x86\x9d\x1a\x1b\xb1\xb3\x0b\x72\xec\x6c\x2b\x62\x22\x38\x87\x5a\x59\x76\xf6\x84\xb3\xe8\x3c\xb1\x9e\x4e\x41\xe7\xed\x28\x98\xdb\xb3\x27\x1e\x45\x2f\x03\x5b\xe7\x77\xee\x85\x7a\xa0\xd5\x8b\x83\xc0\xa7\xac\x3e\x3b\x86\x6a\x71\x19\xed\xeb\x68\xd2\xfd\xa3\xb8\x28\x88\x6d\xe8\x36\x01\x35\x2e\x6f\x8b\x10\x47\xac\x47\xb8\x4c\x65\xc4\x64\x46\x14\x9f\xd1\x77\x65\xc4\x3c\x71\x55\x28\xc1\x63\x13\x27\xef\x0a\xfa\x28\x1e\x96\x9a\x27\x2f\x0b\x93\x49\x52\xa2\xc3\xd7\x56\x92\x4c\x26\x49\x61\x46\x4c\x25\xc9\x1c\x62\x61\x1a\x4f\xc5\xc6\x64\x6c\x94\x84\x69\x3c\x15\x1b\x73\x6a\xf4\x63\x1a\x4f\xc5\xc6\x64\x6c\x94\x82\x69\x3c\x15\x1b\x93\xb1\x51\x0a\xa6\xf1\x54\x6c\x4c\x06\x42\xa9\x98\xc6\x53\x81\x30\x19\x08\xa5\x61\x1a\x4f\x05\xc2\x64\x20\x94\x4e\xdd\x28\x10\x26\x03\xa1\x3a\x4c\xe3\xa5\x40\x58\x0c\x84\xea\x30\x8d\x97\x02\x61\x31\x10\xaa\xc7\x34\x5e\x0a\x84\xc5\x40\xa8\x01\x96\x5a\x0a\x84\x45\xf7\xd7\x88\x69\xbc\xe4\xfe\x45\xf7\xd7\x84\xec\x5a\x72\xff\xa2\xaf\x6b\xaa\x28\x94\xaf\x57\xd4\xfd\xa6\x64\x40\x62\xd1\x8b\x95\x9a\x58\xf2\xe2\xa2\xcb\x6a\x45\xb8\x2c\xb9\x6c\xd1\x65\x95\xd2\x5c\x72\xd9\xd2\x5d\xa9\x61\xce\x2e\xb9\x6c\xd1\x65\x95\xc2\x5c\x72\xd9\xa2\xcb\x1a\xac\x71\x5d\x72\xd9\x2a\x88\xa0\xe6\x30\x67\x57\x61\x04\xe9\xa3\x55\x28\x67\x95\xb9\x08\xe9\xe2\x85\xae\x2e\x19\x64\xd5\xda\x01\x75\x42\xf5\x14\x74\xde\x8e\xd6\x5a\x27\x34\x04\xa1\x50\xfd\x92\x8b\x16\x5d\xd4\x02\x26\xd5\x92\x89\x16\x4d\xd4\x22\x26\xd5\x92\x87\x16\xa7\x5e\x4b\x98\x54\x4b\x16\x5a\xb4\x42\x63\x22\x2c\x59\x61\x51\xd1\x2d\x23\x53\x97\x14\xbd\xa8\xe8\x56\x0a\xf6\x25\x45\xaf\x13\x29\xd1\x2a\xa2\x71\x9d\x0c\x09\x7d\x34\xcf\xe6\x9c\xa6\x42\xae\x55\xb9\x7b\x29\x7a\x51\xd1\xad\x21\x07\x97\x14\xbd\xc6\x59\xf8\x1d\x23\xa1\x4a\x88\x85\xad\x83\x25\x91\x2f\x8a\xbc\x75\xcc\xb3\x25\x91\x2f\x8a\xbc\x3b\x0c\xfb\x25\x91\x2f\x8a\xbc\xd3\x8f\x4b\x22\x5f\x6b\x0f\x40\x18\xf6\x6b\xed\x29\x68\xa2\x90\xfb\x5a\x7b\x09\x42\x61\x20\x24\x2b\x2c\x5a\xa1\x07\xcc\xb3\x25\x2b\x2c\x5a\xa1\x47\xa4\xda\x92\x15\x16\xad\xd0\x13\x02\x6c\xc9\x0a\x8b\x56\xe8\x19\x03\xc7\x64\x05\xa3\x15\x7a\x41\x7c\x99\xac\x60\xb4\x42\x2f\xa5\x5d\xae\x26\x2b\x18\xad\xd0\x2b\xc6\x92\xc9\x0a\x46\x2b\xf4\x16\x50\x28\x2b\x18\xad\xd0\x3b\xde\x18\x4c\x56\x30\x5a\xa1\x77\x0c\x09\x93\x15\x2c\xea\x8a\xee\x30\x25\x4c\x5e\x30\x7a\xc1\x3b\x8f\x50\x33\x99\xc1\x92\x78\x01\x73\xc2\xe4\x06\x4b\xe2\x05\x44\xab\xc9\x0e\x96\xc5\x8b\x38\x13\x93\x1f\x2c\x8b\x97\x90\x75\x26\x43\x58\x11\x2f\x63\x7e\x98\x1c\x61\x9a\x06\xae\x78\xd4\x4a\xec\x76\x7f\x85\xa8\x2e\x01\x13\x4f\xd3\xc0\xd5\x82\x5a\x09\xd9\x34\x0d\x5c\x2b\xe8\xa6\x94\x6c\xed\x0c\xc0\x7a\x48\xc4\x22\x31\xd5\x76\xdc\x94\x4c\xf2\xb6\x5e\xf1\xd2\xe6\x1d\x5b\xd5\x6b\x11\xc6\xf7\x14\x57\x51\x2b\xcd\x9b\xde\x37\xbc\x83\x04\x4d\xa2\x37\xbd\x70\x78\x5f\xb1\x9e\x54\x6f\xe7\xfd\x1d\x07\xa3\xc3\x24\x68\x1b\xf9\x04\x16\x91\xe4\x36\xf2\x20\xa6\xda\xc8\x83\x94\xca\x6d\x6c\x47\x0c\x3a\xb4\xb1\xef\x98\xd7\x9e\x0b\xb1\x20\x8c\xb5\x09\x42\x37\x69\xdf\xf4\xc2\xe2\x13\xa4\x68\x12\xbf\xcd\x85\x37\x16\x9f\xa1\x45\x9b\xb0\xe3\xfd\x03\xdf\x2d\xfe\x76\x50\xe7\xf4\xfb\x39\x6d\x93\xa6\xb5\xa9\xa7\x15\xbc\x00\x9a\x3c\x64\x4b\x4f\x2b\x3c\x41\x99\xc8\xd6\xd9\x81\x55\x9e\xe0\xc2\x7d\xed\x6a\x4b\xb5\x15\x5e\x36\x79\xc6\x4c\xb5\x8d\x42\x97\x69\xcc\x8c\x1d\x6a\x54\xba\xd9\x10\x36\xf0\x1e\xc8\xbb\xa8\x19\xe6\xea\xd5\x4c\xeb\x31\x5e\x4d\xee\xb2\xad\xf5\x3a\x4f\x5f\xf6\xb2\xad\x77\x48\x87\xd3\xdf\xf2\xd7\x76\xb8\x5e\xf9\xe0\x7d\x03\xc6\xfb\x95\x3e\xb0\xe7\x4e\xac\x12\xd3\x2b\xa9\xc7\x09\x6e\x19\x71\x3b\xdc\x22\x7d\xf0\x8d\x18\xaf\x91\xfa\xc0\x09\x7a\x62\x93\x98\x9e\xcb\x4b\xe9\x96\x63\xb7\x2f\x81\x58\x8d\xc0\x4a\x14\x76\xea\xbb\x75\x62\x43\x18\xbf\x6f\xe1\x73\x3d\xef\x21\xfb\xfe\x23\x43\xf4\x15\x98\xf6\xe2\xf5\x8c\x88\x79\xb2\xe5\xf7\x1d\x4a\x05\x96\x22\x6a\x43\x69\xc2\x1a\xb0\x0a\xc5\xee\x50\x3a\x31\xad\x97\x2a\x79\x5a\x2f\x4c\xee\x2f\xe1\xbd\x66\x87\xc9\xfd\x05\x3d\x23\xc3\x29\x5b\x69\xb1\x63\x4d\xc4\x1a\x31\xd8\x06\x1f\xa6\x3d\xa3\x07\x4a\x90\xad\x04\x09\x05\xd3\x67\x2b\x41\x76\x2a\xec\x7d\x4d\x19\x58\x61\xef\x95\x2a\xa1\xe2\x8d\x64\x2b\x55\x76\x1a\x7c\x46\x63\x5f\xd2\xc8\xc2\xb2\xf6\x52\x88\xa9\x16\xe9\xec\x43\x0b\xe4\x31\x9e\xb7\x12\x29\x74\x87\xe7\x2a\x91\xb6\x12\x29\x74\x87\x1e\x28\x91\x76\xbe\xf3\x70\x17\xda\x4a\xa4\x5d\x78\x46\xd1\x15\xf4\xa5\xe8\x8c\xf8\x81\x5a\x61\x89\x98\xee\x9d\x0e\x17\xf2\xad\xe4\xda\xf7\x7b\xac\xe7\x99\x2b\xb9\xf6\xfd\x1e\xcb\xeb\xdc\x56\x72\xed\xfb\x3d\x36\xe0\xb6\xb0\x95\x5c\xfb\x7e\x8f\x8d\xd4\x86\x92\x6b\x2b\xa5\x62\xe2\xf9\x2a\xa5\x36\x83\xc9\xc7\xcc\xf3\xed\xb5\x0a\x23\x2f\x37\xf2\x54\xdb\x71\x7c\x3e\x66\xdc\xa7\x76\x9f\x49\x58\x12\x2f\x13\xcb\xc2\x32\x7f\xf5\x62\xff\xfa\x2c\xc2\x8a\x7e\x09\xf3\xc4\xf4\x8c\xe5\x89\xe9\xb9\x2b\x08\x53\x2d\x3c\xb8\xfb\x52\xad\x7e\x8d\x71\xf9\xb7\xd7\x7f\xfc\xff\x87\xf3\xf9\xf2\xf9\xf7\xc6\xf9\xe9\xe5\xc5\x1e\x5f\xf9\xdb\x26\x7f\x54\x3c\x96\xed\x87\x47\xfb\xfc\x3b\xe9\xf3\xd3\x33\xaa\xf8\xdf\x7f\x02\x00\x00\xff\xff\xff\x1c\xad\x3d\x53\x15\x00\x00"); -var _ffb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x4f\xcb\x25\xc9\x71\xf5\xf7\xcf\xa7\xb8\x4b\xbd\x8b\xd7\x53\x95\xf1\x2f\x13\x1e\x1a\x84\x24\xf0\x18\x64\x19\xcb\xb2\x0d\xc6\x8b\x5b\xb7\xea\x0e\x0d\x9e\xee\xa6\xa7\x67\xa1\x6f\x6f\xe2\x77\xae\x64\x2c\x0c\xb3\x10\x47\x73\x3a\x2b\x2b\x32\x32\xf2\x44\x44\xd6\x7d\xbe\xfb\xcd\xf7\xbf\xfd\xfe\xd3\xc7\x6f\xb7\xef\xfe\xe9\xeb\xe7\xc7\x1f\xaf\x6f\xb7\xe7\xc7\x4f\xe7\xd7\xeb\xa7\xcf\x3f\x7f\x7d\x5c\xb7\xe3\xfa\xe1\xe3\xa7\xb7\xb7\x7d\xdc\xce\x8f\x8f\x6f\x7f\xf9\x4f\xe0\xf1\xe3\xfd\xcb\xdb\x5b\x3f\xff\xc7\x3f\xff\xf4\xed\xfa\xf1\xfb\x4f\xcf\xcf\x37\xd3\xb8\xf3\xe7\x2f\xaf\xb1\xb7\xdb\x77\xff\x7c\xfd\xf0\xf1\xa7\x6f\x5f\xff\x7c\xfb\xd5\xaf\xcf\xcf\xc7\xf5\xff\x6e\xe7\xf5\x6c\xfe\x0f\x5f\xcf\xeb\xeb\xc7\x4f\x3f\xdc\x7e\xf5\x0f\xf7\x2f\xf7\x4f\xfb\x5f\xff\xe1\x8f\x3f\x7f\xf9\xf2\x5f\xd7\x8f\xd7\xa7\x6f\xb7\x1d\xee\xfa\x74\x82\x6f\xdf\xfd\xe6\xf7\xf7\x2f\xff\x78\xff\xf1\xba\x7d\xf7\xeb\xf3\xfc\xff\x7f\x0f\x0b\xf9\xaf\xd7\xd7\x9f\x3e\x7e\xfe\x74\xdb\xb7\xbf\xdb\xb6\xfc\x1f\xfe\x5f\xfe\xfc\xe5\x7a\xcd\xf2\xf6\xdd\x9f\xbe\xff\xed\x1f\x9e\xcf\x9f\xae\x6f\xb7\x98\x9b\xc6\xfc\xfb\x9f\xbe\xff\xed\xed\x3f\xf6\xdb\xbe\xdd\x46\xd8\x88\xff\x7c\x0d\xfd\xb7\xdf\x7f\x3e\xaf\x9b\x06\xbd\xed\x5a\xcc\xe3\xf3\x79\xfd\xf4\xe5\xfe\xb8\xbe\xde\x3f\xfd\x70\xbd\xdd\x6e\xef\x63\x1f\xfb\x87\xdb\x7b\xfd\xae\x7e\xf7\xa1\xad\xfc\x9b\x11\x6f\xfb\xb6\xbd\x1e\xfd\x78\x8a\xfa\xcb\x23\x63\xaf\xeb\xc3\xed\x96\x66\x6f\xef\x63\x88\x1a\xa3\xa9\x1a\xd5\x94\xdd\xa1\x7c\x6f\xca\xf7\xa6\x5c\x54\x6c\x50\xab\xa9\x78\x40\xe5\xbd\xa9\xc8\xa6\x6a\x40\xd5\x6a\xaa\x78\xb0\x5f\xf5\x82\x5b\x55\x3f\x68\xb6\x35\x65\xc6\xa8\xb9\x35\xe5\x18\x61\xc1\x5c\x0b\x2a\x45\x55\x53\x73\xef\xe9\x5d\xa6\x7a\x59\x53\x3e\x9a\x2a\x17\x95\x1f\x6e\xb5\x62\xbe\xbd\x8f\xd0\xa8\x68\xea\xb6\x46\xbc\xbd\x8f\x14\x95\x36\x3f\xdc\xf6\x6d\x6f\xbb\x52\x6f\xcc\x80\xb2\x1e\x55\x1a\x55\xfd\x2f\xfb\x16\x6d\x6a\x85\xa8\x82\x5a\xfd\xc6\xa9\x51\x40\x39\x0b\x9a\x63\x88\x1a\x4d\xcd\x1d\xca\x44\x59\x53\x4b\x94\x8b\x72\xa8\x80\x0a\x51\xf1\xe1\x56\xb1\x19\x54\x8a\x4a\x46\x69\xfa\x12\x55\x8c\x2a\xa8\x29\x6a\x36\x35\xf4\xe0\x12\xb5\x9a\xda\x35\xfd\x5d\xd4\xbd\x29\x93\x11\x87\xa8\x03\x4a\xd3\x3f\x44\x3d\xb0\x7e\x83\x3a\x45\x9d\x50\x5a\xf6\x25\xea\xc2\x2e\x87\x7a\x8a\x7a\x42\xb5\xef\xa7\xb6\x16\xa8\xd8\x12\x4a\xfe\x6a\xa8\xd8\x98\xcb\xe4\xaf\x86\x8a\x9d\xb9\x4c\xfe\x6a\xa8\x30\x8c\x30\xf9\xab\xa1\x62\xe8\x41\xf9\xcb\xf0\x97\xe9\x8d\xf2\x57\x43\x45\x68\x2e\xf9\xcb\xf0\x17\xbb\x3d\x4d\xfe\x32\xf9\x4b\x76\xc9\x5f\x26\x7f\xe1\x09\xc5\x3d\x50\x61\x9a\x4b\xfe\x32\xfc\xe5\x32\x42\xfe\x6a\xa8\xd8\x64\x84\xfc\xd5\x50\xc1\x19\x9a\x26\x7f\x35\x54\xec\x7a\xa3\xfc\xd5\x50\x41\xc8\x4d\x97\xbf\x1c\x7f\x79\xbc\xbd\xdb\x46\x7c\x09\xf6\x7d\x88\x1a\xa2\xda\x5f\x9c\x5a\xdb\x88\x2f\xdb\x4c\xa3\xaa\x29\xd3\x28\xbc\xba\x72\x87\x7a\x8d\xba\xf7\x28\xe7\x41\x16\x24\xa8\xec\x35\xda\xc6\x82\x6c\xcb\xb3\x47\xc5\x68\x2a\x2f\x51\x17\xa3\x30\x22\x9f\x50\xb5\x7d\xb8\xed\x63\x63\xae\x92\xa9\x0d\xb5\x92\x07\x4b\x46\x34\xec\xa3\x03\xc0\xb6\x92\x11\x0d\x95\x26\xca\x45\x1d\x8c\x9a\x50\x32\xa2\xa1\xd2\x58\x50\x9d\xa2\xae\x1e\xb5\x37\x25\xfd\xb2\xbd\x83\x7c\x1f\xbd\x69\xb6\x13\xe4\x82\xca\x8e\x09\xdb\x09\x72\xdb\x0d\x23\x06\xa3\xe4\x09\xa0\x56\x1a\x94\x8b\xf2\x1e\xa5\x07\x89\x2f\x41\xa5\xe9\xc1\x14\xd5\x3a\x31\x7c\x83\x5a\xa2\x16\x73\x39\x94\x8c\x68\x4f\xee\xc3\x45\x9d\xa2\x3a\x26\xb2\x23\xc7\x76\x62\xc2\x76\x04\x66\x38\x6f\xf4\x21\x8a\xad\x65\x87\x76\x97\xa9\xad\xab\xfb\x08\xa8\xd4\x82\x92\x4d\xd3\xf4\x89\xbf\x76\x39\xa7\xcf\xa3\x49\xc9\x6d\xb4\x4e\xec\xb6\x1b\xd4\x14\x35\x79\x30\xa0\x96\xa8\x76\xa1\x8d\x1d\xea\x2e\x0a\x17\x7a\x42\xf1\xc6\x11\x4f\x46\x31\x57\x6e\x50\x0d\x95\x5e\x50\x7a\x63\x66\x8f\x2a\x51\x25\xaa\x70\x0e\x6f\x4c\x19\x51\xbc\x71\x62\x6a\xe9\x8d\xa5\x37\x4e\x28\xbd\x91\x05\x39\xf1\x65\x5a\x10\xb0\x7b\x0b\x9f\x99\x8e\x82\xe9\x28\xc4\x06\x85\xbf\x0c\x7f\xf9\xd6\x9b\x66\xf2\x97\xc9\x5f\x44\xb4\xc9\x5f\x46\x60\x22\x69\x66\x0a\x4c\x53\x60\xe2\x68\x53\x60\x1a\xa6\xfa\x62\x7a\x99\x6a\x32\xb5\x05\xc6\x4c\xa6\x9a\x4c\x5d\x6d\x97\x52\x93\x39\x5b\x1b\xdb\x4e\x42\xfe\x4b\xde\xfd\xbf\x52\xb1\xb9\x76\xde\xb5\xf3\x11\x50\x26\xaa\xa3\x08\x81\x30\xf7\x53\x14\x51\xd4\x49\xd6\xdc\x89\x22\xcf\x8e\xdb\x60\xb7\x3c\x43\x14\x71\x1b\x18\x94\xc4\xad\x63\x63\x54\xaf\x44\x89\xd1\xa2\xb7\x79\x8f\x4e\x40\x16\xda\x66\xa0\xb2\xd3\xa7\x05\xe9\xc0\xa2\x55\x6a\x4f\x4e\x70\xa0\x52\x82\xca\x4e\x8c\x16\xae\xb9\x3a\x00\xf6\x44\x7f\x22\x87\x28\xe9\x0f\x0f\xa6\x89\xea\x88\x4c\x24\x29\x14\x0c\x40\xad\xd4\x83\x44\x64\x60\x6a\x42\x29\x61\x0b\xf6\x9c\x0b\x6a\x88\xc2\x5f\xb9\x41\x99\xa8\xde\xad\xec\x24\x6b\xa9\x50\x4e\x85\x72\x8a\x62\x8d\x24\xfc\x3d\x17\x73\xc9\xf7\x40\xad\x9c\x50\x9a\xab\x9d\xbb\x17\x01\x9f\xfe\x14\xf5\x64\xae\x0e\x99\x0c\x3c\x91\x1d\x4c\x7b\xa1\x65\x99\xa7\x28\x76\x08\x65\x49\xa9\x67\x76\x60\xed\x85\x27\x52\x81\x05\x54\xa2\x19\x59\x21\xaa\xb7\xa3\x8a\x07\x15\x58\x40\x25\x87\x27\xa5\x8b\xc0\x4e\xb1\x64\x29\x5d\x04\x2a\x5f\xd3\xbf\xde\x88\xf5\x44\xb7\xaa\x19\xab\xd6\xaf\xbd\x66\x4f\x5f\x24\x46\x41\x25\xcb\x2e\x12\xa3\x51\xe7\xec\x93\xdd\xae\x18\xa2\x70\x74\x17\x71\x56\x81\x73\x0a\xed\x9f\x24\xa0\x92\xf6\x03\x95\xe5\x50\x7a\x10\x53\x67\x8a\x3a\x45\x9d\x38\x7a\x41\x5d\xa2\x48\x2d\xd5\x6f\x54\x49\x65\x24\xff\x7d\x22\x23\x4a\xfe\x82\xca\x17\x85\xbf\xc8\x95\xfb\xe4\xd4\x4d\x45\x21\x50\x59\x13\x0a\x23\x26\x9e\x58\x7b\xfb\x6b\x69\xfa\x45\xdc\x2f\x16\xb4\x14\x13\x4b\x71\xdf\x45\x9c\x2d\xc5\xfd\x62\x6b\x17\x2e\x5c\xda\xda\xa5\xad\x7d\x51\x58\xbf\x7a\x6b\xc7\x86\x70\x2d\x6d\xed\xd2\xd6\xe2\xe8\xa5\xad\x5d\x35\x7b\x14\x67\x7b\xd5\x12\xb5\x18\xe5\x50\x77\x51\x57\x8f\x22\xa2\xef\x32\xf5\xde\xbe\x1f\x1b\x01\x70\x97\xef\x81\xca\x29\x8a\x37\xde\xfb\x88\x8f\xbd\x6b\x0b\xbb\x4b\x76\x81\xca\x29\x8a\xad\xbd\x63\xea\x4e\xac\xde\x65\xea\xfd\x65\x6a\x41\x85\xa8\x36\x62\xef\xc2\xde\x0e\x19\x71\x0c\xa6\x0f\x51\x25\x4a\xd3\x4f\xa8\x29\x6a\xf5\x28\xa2\xf0\xd0\xe1\x3b\x74\xf8\xa6\x1e\x3c\x44\x1d\x8c\x12\xf5\x10\x45\xa6\x47\x63\x0f\xea\x4d\x3b\x3a\x18\xc7\xce\x0e\x1d\x4a\xb2\x40\xe9\x6c\x1f\x4a\xb2\x47\x07\xc0\xd8\x71\xe1\xa1\x00\x00\x6a\xa1\x72\x87\x02\xe0\xd0\x82\xba\x64\xb7\x87\x16\xf4\xf0\xfa\x70\x1b\xca\xa8\x0f\x9f\xa2\x48\x8c\x4b\x14\x6f\x7c\x74\x5b\x33\x86\xa8\x38\x45\x11\xab\x28\xe6\x23\x10\x85\x07\xd3\x5b\x97\xd9\x76\x6a\xfa\xb3\x97\x3d\x8c\xc4\x78\x6a\xd9\xa7\xe2\x6b\x89\x62\xd9\x67\x47\xf1\x30\xa4\xf6\x54\x6d\x01\x54\x2e\x51\x38\xfa\xec\xcc\x35\x0c\x7f\x9d\xca\x5c\x40\x49\xbf\x4e\x05\xe6\xd9\x87\x6f\x38\x62\x75\xea\xf0\x9d\x24\xb3\xda\x76\x28\x17\xd5\xa6\x7a\xd7\xd4\x76\xc9\xd4\xab\x7b\x90\xe1\xdd\xd9\xd9\x45\x0f\x22\xa8\x22\xef\x5e\xf4\x20\x76\x75\xfd\x34\x9c\x0c\x73\xa9\x7e\x02\xaa\x36\x87\x62\xfa\x2b\x98\x8b\xf0\xbd\x42\x73\x85\xe6\xe2\xc1\xd0\x5c\x81\x11\xd4\x29\x97\x5c\x08\x54\x91\xd6\x2f\xd5\x16\x57\xe7\x8b\x11\x9a\x3e\x35\x7d\x43\x15\x35\xe2\xa5\x34\x77\xb1\xa0\x20\xd3\x3f\xb5\xa0\x27\x51\xa8\x94\xf9\x54\x14\x02\x55\xdb\xfa\xe5\x54\xfc\xd4\x6e\x3d\xbb\x17\x1c\xaa\xc2\x9f\xb1\x44\x51\xe3\x11\x91\xcf\xd0\xbc\x6d\xf6\x08\x02\xeb\x29\xb3\x81\xaa\x9d\x51\x2a\x89\x9e\xb2\xb1\x77\xcb\x55\xd1\x0b\x46\x0e\x51\x43\xd4\xe0\x41\x83\x32\xa8\x5e\xe3\xc8\x6e\xd6\x7c\x23\x87\x0b\xaa\x3a\xd6\x7c\xe3\x9c\x3b\x55\xf8\x48\x4d\x5f\x9a\x1e\x25\xae\x56\x03\x57\x15\xee\x1b\xfa\x53\x2d\x82\xbe\xa1\x3f\x82\xaa\x7d\x42\xdd\x45\xdd\x59\xe3\x80\x3a\x44\x1d\x3c\xa8\xe9\x1f\xa2\x90\xf0\xc2\x54\x24\x5c\x30\xaa\x3b\x33\x57\x61\xee\x3b\x9a\x41\xfa\xf4\x1d\xcd\x10\x54\x8d\x0d\x6a\x42\x71\xce\xcb\xa0\x38\xe7\x82\xaa\x2e\x47\x5d\xc5\xb4\xef\x8e\x11\xad\xb1\xbe\xfb\x43\xd4\x83\x51\xbc\x91\xca\xc8\x77\xc7\x88\xae\x1a\x7c\x27\x61\x0b\xea\x65\x04\x09\xdb\x77\xc2\xaf\x8a\x37\x86\x46\x29\xfc\x86\x37\x95\x1a\x95\xd8\xd5\xea\xe9\x7b\xca\xae\x94\x5d\x01\x25\xbb\xb4\xec\xd5\xa3\x54\x72\xfb\xe8\x13\x3c\x66\xb7\x28\x3e\x38\xc1\x82\x5a\x15\x50\x53\x54\x2b\xcb\xec\x1e\xc2\x07\xdd\x81\xa0\x6a\x30\x17\xdd\x81\x0f\xd7\x28\x28\xad\x11\x28\xee\x66\x7c\xb8\x46\x45\x3b\x67\x76\x51\xe2\xba\x88\x11\x54\x8d\x09\xa5\x07\xbb\x16\x1b\x64\x54\x1f\xd4\x62\x82\x2a\xa2\x70\x70\xc4\x7c\x74\x4e\x1b\xb3\x05\xd5\x07\x5d\x9e\xa0\xb4\x43\xa3\x70\xce\x28\xec\xd2\xb2\x4b\xd3\x13\x13\xd5\xf5\x80\xeb\x9e\x47\x30\xc8\xbb\xae\xf2\xdd\x8d\x98\x58\x7d\x3a\xdc\x14\x13\xa6\x98\xe8\xee\xd3\x4d\x31\x01\x8c\x45\x60\x1a\x2d\x8a\xa0\xaa\x0f\xb5\x1b\x87\xda\xad\x45\x74\xac\xa1\xe9\x4f\x51\x17\xa3\x0a\x0a\xeb\xcd\x34\x8a\x07\xe5\x68\x93\xa3\xbb\xa5\x73\x93\xa3\xad\xd7\x38\x16\xdb\x61\x5a\x23\x50\xf5\xa2\x64\x7d\x8b\xe8\x58\x0b\xeb\xc9\x95\x82\xe2\x5e\xcc\xad\x52\xd4\xc1\xa8\x84\x7a\x88\x62\x3b\xba\xf1\x73\x93\xbf\x68\x18\x6c\x6b\x8d\x75\x35\x0c\xee\x6d\xaa\x6d\x5b\x9b\xea\x32\xd5\x65\xaa\x33\x4a\xa6\x7a\x67\x2e\xdb\xf0\x97\x93\xb9\x04\x55\x2e\x6a\x89\x5a\x3d\xca\x99\x8b\xfb\x3a\x41\xd5\x8b\x3a\x44\x61\x44\xa7\x29\x77\x1d\x18\xd7\x81\x11\xa5\x03\xe3\x32\xb5\x5b\x27\x57\xdf\x20\xb0\x0d\xcd\x09\xe9\x57\x48\xbf\x38\xa2\x21\xfd\x8a\xde\x6d\xdb\x3b\x01\x79\x68\xb7\x43\xbb\xed\x7a\x70\x8a\x3a\x19\x95\x50\x97\x28\xf6\xb1\x5b\x3a\x0f\xed\x63\x74\xae\xb4\x1d\x79\x0c\x72\xa5\xa0\x2a\x98\x5e\x27\x2d\xda\x47\xb6\x0f\x51\xaf\x07\x59\x90\xac\xa7\x79\xf1\xc0\x85\x3b\x11\x1d\x72\x61\xc8\x85\xc1\xf4\x72\x61\xb4\xbf\xba\xb3\x87\x3a\x44\x1d\x8c\x72\x28\xb6\x36\xda\x47\xdd\xb3\x37\x15\x72\x4e\xa8\x02\x61\x41\x21\xe7\x50\x40\x73\x31\xea\x11\x72\x4e\x1f\x3e\xdb\xe5\x09\x1d\xbe\x50\x7e\xeb\x9e\xcd\x83\xfc\xe6\x51\x98\x8a\xa4\x45\xc9\xd4\x92\xa9\x38\x5a\x4a\x4e\xbb\x64\x7b\x17\x71\xae\x76\xc9\x69\x71\x6c\xef\xd2\xc5\xd5\xe2\x08\xaa\x3a\x3b\xbb\x5a\x1c\xcf\xb6\xc5\x06\x6a\x92\x54\x92\x82\xaa\x6e\x97\x3c\xc9\xe1\x9e\x9d\xed\x6c\x10\x39\x19\x87\x28\x3c\x91\x4c\x2f\xcd\xc9\xb6\xd8\x06\x8e\x4e\x65\xab\xa4\x04\xa5\xeb\xf1\xa4\x04\xf5\x6c\x11\xb5\x91\xfe\x8b\xa9\xd8\x53\x1a\x0b\x54\x75\x8b\xe2\x99\x7a\x7b\xf1\x2a\xbc\x92\x3a\x75\x40\x4d\x32\x57\x56\x89\x6a\xaf\x8c\xae\xe8\x5d\x1d\x90\x57\x87\x9c\x0d\x1c\x55\x52\x96\x92\xb2\xa4\x46\xdd\x45\x29\x0b\x6a\x14\x6f\xa4\x37\xb2\xb1\xa0\x94\xa6\x4a\x69\x8a\x3c\x52\x4a\x53\xd5\x05\x8e\xd9\xde\x46\x54\x94\x28\x5c\xd0\x55\x83\x57\xe0\x82\x4a\x46\x11\x32\xa5\x1c\x5e\x72\x54\x89\x7a\x8d\xea\x37\x52\x1c\x7a\x29\x01\x95\x12\x10\x79\xb7\xe4\x9c\xea\x4a\xd0\x8c\x3d\x2d\x2a\x41\x41\x55\xb7\x61\x5e\xb4\x28\x4e\x83\x65\xd6\x6d\x98\xab\xc1\x72\x6e\xa3\xcd\xe6\x0e\xe5\xa2\xd8\x79\xd2\x94\x6e\xa3\x9d\x5b\x5f\xb3\x29\xea\x12\xc5\xd9\x24\xba\x75\xeb\x2b\x30\x5b\x8c\xe2\xd6\x57\x50\x85\x0b\x75\xeb\xeb\xdc\x75\x9a\xe1\x42\xdd\x75\x0a\x6a\x75\xb3\xe6\xea\xdf\x7c\x12\x91\xce\x39\x9f\x8a\xc8\xa9\x88\xd4\x28\x45\xe4\x6c\x25\x36\x27\xdb\xcc\x7a\x51\x28\x71\x77\xc5\x3e\x15\x13\x34\x7e\xe6\x84\x9f\x1a\x3f\x81\x39\x6b\x5c\x12\xae\xc5\xbd\x7c\xe1\x89\x25\x4f\xac\xc1\x83\xbc\x71\x69\x8d\x40\xd1\x3b\xfb\xd2\x1a\x97\x31\x57\x77\x2d\xbe\x4c\x73\x71\xe1\x5a\xa4\xcf\x45\x99\xec\xcb\x30\x75\xe9\xc1\x10\x25\x53\x31\x42\x5a\xb6\x70\x8e\x93\x34\x96\x9c\x03\x94\x2a\x90\x25\xe7\xac\x4e\xfe\xc6\xb5\xbf\x2f\x25\x7f\xa0\x6a\x8a\x92\xa9\x2c\x3b\x10\x41\x35\x91\x7e\xef\xa3\x6f\x41\x90\xdf\x75\xf4\x81\xaa\x29\xca\x45\x75\x30\x65\x97\xdc\x7e\x57\xb9\x71\x57\xb9\xc1\x1a\xef\x7a\x23\x0d\xa9\xe5\xce\x28\x69\x99\x1a\xd2\xc5\x49\x53\x43\xea\xf7\xae\x96\x2d\xc9\xce\x77\xaa\x65\x41\x15\xe9\xf3\x2e\x19\xb9\xb7\x96\x19\x77\x46\x7e\x97\x96\xdd\x55\x95\x76\x4d\xed\x77\x55\xa5\x34\xa4\xc6\x95\x94\xab\x21\x75\x3a\x4e\xe3\x8a\xc5\x0f\x1d\xe4\x43\x07\xb9\xdb\x0a\x57\xf7\xe9\x07\x12\x9e\x1c\xab\x43\x12\x7e\x48\xc2\x89\xd5\x43\x12\x7e\x74\xf2\x37\x5a\x14\x3f\x94\xfc\x0f\x25\xff\x25\x4a\x6f\x44\x89\x95\x8a\x0f\x29\x31\x50\x8b\x90\x3b\x64\x3d\xad\xa6\x29\x27\xa9\xd5\xf4\x07\x5e\x95\xaa\x3f\xe4\xd5\xc7\xcb\xab\xa2\xf0\xea\xa3\xb5\xc1\xe6\xd6\xa6\x3e\x68\x38\x04\x55\xdd\x0b\xfa\x43\x2e\xa4\xfb\xb4\x89\xef\xd5\x7d\x0a\xaa\x48\xc5\x0f\xd5\xae\x8f\xee\x3b\x6c\xe2\xfb\x07\x37\x71\x82\x9a\x9b\x28\x36\xed\xd1\x16\xdb\xa4\x34\x7e\xc8\xd1\x40\x4d\x12\xf6\x43\xe5\x3f\x60\x93\x7a\xe0\xa1\x6a\x06\xa8\x97\xa9\xaa\x66\x68\x81\x6d\x92\xcc\xd4\x02\xfb\xc9\xe9\x98\x78\xe2\xd4\xe9\x00\x6a\x12\x5f\xa7\x4e\xc7\xd9\x21\x6b\x93\xc0\x3c\x55\x6e\x00\x35\x29\x83\x4e\x65\xd4\x13\x51\x98\x4b\xa3\x5c\x94\x33\x2a\xa1\x38\x56\x27\x8a\xb9\x28\xa9\x4e\x29\x26\x50\x93\x03\x73\x4a\x31\x69\x81\x6d\x51\xeb\xab\x05\xf6\x0b\x4f\x2c\xf2\xdb\x25\x4f\x5c\x5c\xbb\xcd\xee\x2b\xfd\xd2\xb2\x81\x5a\xe8\xc4\xa5\x65\xd3\x7d\xfa\x46\xbd\xa9\xee\x53\x50\x93\x0a\xf7\x29\x81\x79\xb6\x5c\xf8\x46\x25\xf9\x94\x16\x02\x35\x49\x14\x4f\x7b\x8d\x9a\x3d\x8a\x12\xe1\xa9\x0c\x03\xd4\x44\x0b\x9f\xca\x30\xcf\xf6\x84\x6f\xad\xe4\xa1\x5e\x32\x36\x19\xd1\x47\x34\xd4\x7a\x09\x9c\x6b\x91\xd8\x31\x42\x50\xdc\x65\xc5\x4e\x79\x16\x7c\xa1\xf0\x7d\xe6\x2f\xa6\xe2\xd0\x07\x0c\x41\x11\x7e\xa1\x0f\x18\x41\x1b\xe6\xa3\x6d\x0c\xb5\x61\x82\xa2\x03\x0a\x5a\xb2\xf7\xa0\x4f\x72\x3e\xbf\x84\xfa\xa4\xa0\x29\xf2\xd1\x1a\x1b\x6a\x8a\x04\xb5\x5a\x63\x63\xe0\x82\xa0\x87\x70\xeb\x58\x0b\xf5\x10\x41\x61\xef\x56\x50\x28\xb1\xa0\x66\x37\x0c\x61\xa6\x51\xfd\xbc\xdb\x14\x75\x17\x45\x74\x77\x27\x1b\xc6\xa7\xaf\xb0\xae\x04\xdd\x16\xa3\xa8\x04\x05\xb5\xf0\x9d\x51\x09\x86\x75\x07\xe5\xbe\xf3\xc6\xb8\x44\xb5\xec\xce\xd6\xd8\x30\x0e\x62\xf0\xd1\xc1\xdd\x78\x30\x35\x3d\x1f\x1d\xe6\xe0\x41\xae\x6e\x04\xb5\x5a\xfb\xc3\x48\xd8\x41\x2b\xd0\x45\xfc\xdb\x7b\xa8\x15\x08\x6e\xff\x9d\xcc\x15\x8e\x38\x0b\x8a\xe3\x1a\xee\x21\x2a\x98\x4b\xa3\x12\xaa\xdf\xe8\x7c\x3e\x0e\xd7\x1b\xfd\xf5\xc6\x82\xe2\x8d\x54\xf4\xce\x27\xcc\x50\x45\x1f\x41\x30\x44\x17\x12\x11\xda\xed\xd0\x6e\xf7\x49\x89\xd0\x6e\x73\xa1\xef\xd1\x49\x23\x74\xa1\x2f\xa8\xd9\x0d\x56\xa8\x8e\x0d\x8a\x56\x47\xd5\x43\x45\xab\xa0\x16\xdb\xa1\xa2\x35\x28\x5a\x9d\x0f\x3e\xa1\xa2\x55\xe0\x7c\x58\x09\xdd\xf1\x0b\x6a\x76\x57\x1c\xba\xe3\x0f\xee\xbf\x9d\x0f\x20\xa1\xfb\xef\xa0\xd4\xab\x85\x5d\x2a\xf5\x82\x9a\xc7\xe9\x47\x42\x35\x4f\x50\xf3\x38\x3f\x16\x08\xd5\x3c\x82\x9a\x43\xa3\xf0\x2a\x55\x83\xd3\x74\x87\xaa\x86\x58\xdd\xb5\x74\xaa\x86\x9a\xa2\x58\x50\x27\xb3\x58\x24\xa0\x58\x1d\x07\xbe\xba\x0d\x8b\x85\x12\x0b\x6a\x12\xf7\x2b\x35\x57\xef\x50\x6c\xad\xc4\xb1\xb4\x43\x40\x4d\x13\xc5\x82\xc8\xe1\xb1\x11\x72\xca\xe1\x71\xef\xd3\x11\x1b\xa3\xee\x3a\x1d\x77\x09\x84\xed\x50\x04\x39\xe9\x33\xb8\x67\x0e\xa5\x4f\x41\xad\xc5\x5c\xa8\x7a\x90\x51\x63\xef\x0c\x11\xca\xa8\x71\x74\x7c\xc5\xce\x6e\x1f\x8a\x2f\xa0\xb8\xe3\x8f\x43\xf1\x75\x74\x90\xc7\xde\xdd\x41\x1c\x0a\xf2\x43\x41\xde\xad\x79\x1c\x5a\xd0\xa1\xe9\x5b\xaf\x43\x59\x30\xc8\x10\x31\x38\xa2\xca\x10\x71\xb6\x73\x82\x6a\x39\xce\x7c\x51\xb4\x4e\x5d\x2c\xc5\x49\xe6\x0a\xf4\x3a\xf8\xa0\x18\xd2\xeb\xb8\x3a\x69\x84\xb7\xf6\xc7\x45\xd2\x10\xd4\x34\x46\x85\x46\x75\x56\x08\x27\x98\x74\xf3\x28\xa8\xb5\x44\x15\x54\x31\x8a\xb8\xbf\x4a\xa3\xf4\x03\x92\x2e\x11\xe2\xaa\xd7\xa8\x36\xc2\x71\xa1\x84\x3e\x9e\x35\x3e\xdc\x22\xd8\xc7\x27\x5f\x0f\x05\x35\x6d\x42\xb9\xa8\x7e\x30\x5a\xd2\x52\x7a\x9d\x5b\x87\x59\x44\x1b\x91\x1b\xb7\xab\x82\x9a\xdd\x6a\xe6\x46\xa3\x9c\x5b\x0b\x4c\x64\x4f\x9f\x1b\x02\x23\x28\xee\x8c\x72\x23\xbe\x12\xed\x0f\xbe\xf2\xa5\xb4\x3f\xf9\xf8\x1d\xdc\xcb\xa7\x3e\x7e\x0b\x6a\xfa\x0e\xf5\x80\xd2\x83\xbd\x43\x29\x41\x4e\xae\x7e\x82\x0f\x46\xa9\xab\x1f\x41\xcd\x4e\x8c\xa9\xab\x9f\x44\x90\x63\x76\x00\xa4\x04\x39\x51\xc9\x98\xdd\x11\xa4\x71\xd7\x20\x28\xce\x50\x1a\x85\x57\x5a\x67\xae\xe0\x52\x27\x8d\x1c\x2e\x28\x6a\x8b\x34\x72\x78\x5a\x97\x41\x7d\xb8\xa0\x96\x28\xee\x5d\x17\x73\x85\xa6\xc7\x88\xd5\x81\x99\x52\xcc\x74\x4e\x07\xd7\xfe\xe9\x9c\x0e\x41\xcd\x56\x80\x74\x4e\x47\x7a\x97\xd9\xc1\xd6\xa6\x53\x66\x0b\x6a\x75\x2d\x96\x7c\xb2\x7d\x4f\x6f\x49\xcb\xad\x93\x4e\xf2\x69\xf5\x05\x45\x81\x93\xfa\xc2\x9a\x68\x69\x6e\xc6\xf4\xf4\x59\x82\x9a\x81\x11\x72\x21\x52\x9b\x7c\x1d\x4a\x49\x6d\x46\x9b\x9a\xe4\xf0\x0c\x99\x1a\x32\x35\x7e\xf9\x5b\x71\x86\x56\x02\xe4\xd6\x8a\x97\x41\x32\x13\xd4\xec\x06\x3c\x91\xf3\xf7\x8c\x3e\xc1\xb9\xb5\x4a\x65\x70\x82\x05\x35\xc3\xa0\x88\x35\x94\x38\x77\xd6\x2b\x25\xce\xec\x2c\x98\x7b\x97\xdc\x99\x64\x41\x41\xad\x25\x0a\x23\x52\x0f\x12\x45\x92\xdd\x2c\x7c\xc7\x2d\x40\x96\x7c\x57\xf2\x5d\x4b\x52\x96\x7c\x47\x73\x9b\xd6\xfa\x93\x6a\x6e\x05\x35\x5b\xd5\x53\xcd\x6d\xf2\x41\x31\x6d\xf0\x20\xd7\xd8\x82\x9a\x04\x7c\x71\xea\x12\xa1\x4f\xeb\xbc\x9b\x12\xfa\xe4\x57\x3b\x69\x84\x9f\x7e\xb5\x23\xa8\x19\x0b\x0a\xe7\xcc\x2e\x5d\xd2\xba\x9d\xce\x49\xe9\x22\xa8\xc5\x82\x26\xa5\x4b\x4e\x4d\x8f\x0b\x95\x0e\x72\x75\xd2\xe9\xc0\x69\x8a\xbb\x4e\xc1\x44\xd5\x53\x7a\x9d\xf7\x7e\x63\xf2\xd3\xa1\xbc\xeb\x8d\xf7\xce\xa8\x73\xeb\xfa\x3a\xef\x64\xd4\xbc\x77\xc8\x64\x74\x23\x93\x77\x85\xcc\x5d\xa7\x8e\xf8\xb8\xeb\xd4\xa1\xd7\x99\x5d\x65\xa5\xf4\x3a\x8f\xae\x73\x32\x39\x29\x07\x25\xa4\xa0\x66\x06\x14\xce\x39\xda\xdf\xc9\xef\x38\xf2\xe0\x52\x46\x50\x33\x45\x11\x00\x87\xa6\x67\x6b\xa5\xd7\xf9\x60\x87\xb8\x5e\xcf\x87\x76\xe8\xa1\x1d\x4a\x46\x69\x87\x50\xf5\xa4\x9b\x4a\xa9\x7a\x9e\xed\xc2\xe4\x47\x7a\x79\xca\x85\x40\x4d\xce\x26\x05\xff\x7b\xa2\xea\xc9\x9d\x75\x4a\xd5\xf3\xea\x8c\x9a\x5c\x17\xe7\x45\x46\x15\xd4\x64\x87\x2e\x5a\xba\xbc\xda\x93\xb9\xba\x88\xcb\x8b\x3a\x45\x50\xb3\x1c\x8a\x37\xa2\xd7\xb9\x10\x54\xe9\x75\xa2\xc4\xb5\x75\xf3\x51\x52\xe2\xda\x48\x1a\x5b\x2f\xbb\xb6\x78\x51\x14\xe6\xdd\xc9\xd6\xc6\xdd\x5d\xa1\xb1\xb5\xb7\x4a\xd5\xeb\x67\x96\x7b\xab\x54\xf1\x41\xb1\x76\x54\x4a\x30\xb9\xcf\xad\x1d\x95\x2a\x34\xb6\x46\x6b\x46\x49\x63\x6b\xf0\xa1\x73\x74\xc5\x56\x83\x3b\x6b\x41\xcd\x96\xdd\xe2\x87\x97\xef\x35\x88\xd5\xb1\x78\x90\xc8\x11\xd4\xec\x3c\x52\xfa\x5e\x50\xfa\x12\x60\x5d\x8c\x97\xbe\x04\x08\x8a\xdb\xfb\x1a\x38\xba\xd0\xeb\x32\xeb\xe9\xa5\xd7\x65\x2c\xdb\xba\x6d\x2d\x8b\x17\xc5\xb2\xbb\x2a\x2d\xd3\xb2\x81\x29\x7f\xa1\xdd\xef\xa5\x6b\x6c\xbe\x1e\x96\xae\xb1\x05\x35\x59\x10\xaa\xfc\x82\xf2\xde\xb4\x92\x38\x97\xeb\x77\x8e\xbd\x43\xe5\x54\x59\xe5\x9d\xf2\xe6\xc0\x54\x49\x47\x55\x97\x67\x93\xfb\xef\x2a\xb2\xa0\x60\x6e\xdb\x84\x9a\xa2\xe6\x87\xdb\x8d\xeb\xc0\xd2\x15\x9e\xe0\x56\x1d\x4c\xa5\x2b\x3c\xc1\x8d\x5b\xcc\x2a\x79\x95\x2b\xbc\xb9\x75\x4b\x57\x25\xaf\x16\xbf\xc8\xcb\x8d\x51\x5c\x17\x0b\xe6\xd6\xca\x54\x45\x86\x10\x54\x76\x13\x59\xfc\x20\xb4\x01\x53\x07\x0f\x52\x9f\x57\xa1\xab\x5c\x9e\x54\xb9\xac\x6f\x47\xcf\x6d\x40\xc9\xd1\x80\x7e\x0e\x5b\xfa\x71\x85\x60\x72\xa1\x5f\xfa\x71\x85\xe0\xc6\x75\x60\x55\x68\xfa\xce\x8f\x93\x1f\xa7\x96\xae\x16\x05\x93\xee\xb3\x4a\x51\x08\x54\x4c\x9c\xa3\x28\x04\x2a\xa6\x1e\x3c\x44\x1d\x3c\xa8\x51\xf2\x04\x1f\x8c\x82\x7d\x2c\x3e\x18\x55\x05\x9e\x30\xfc\x95\xf2\x04\xe5\x6c\x2c\x9c\x93\x5a\x50\xc3\xdc\x1c\x53\x53\x0b\xe2\xae\x81\xaf\xa2\x45\x3a\x78\x41\xc5\x62\xfa\xd4\x82\x1a\xe6\xe6\x06\x15\xa2\xf8\x2d\x27\xe7\x91\x4b\xd2\x17\x14\x3f\x50\x2a\xdd\x95\x16\xb9\x63\x6e\x8e\xbf\x52\xcb\x46\x99\xf8\xc2\x5a\xca\x1d\xc5\xef\x53\xe6\xe6\xbc\xb1\xf4\xc6\xe2\x88\x06\x6f\xac\xd7\x28\x7e\x9e\xb0\xb3\xa0\x92\x73\x0a\xe7\xc4\xdf\x7c\x2b\xb6\xfd\x6f\x33\x71\xe9\xd7\x2b\x82\xc9\x6f\x36\x4a\x3f\xbc\x2d\x7e\xcd\x3a\x37\xa2\x4f\xbf\x5e\xe9\x2a\xa7\x29\x36\x7e\xba\x46\xc9\xe7\x9d\x17\x6b\xca\xe7\xc0\x24\x5f\xd7\xa4\xd3\xac\xc9\xd5\x70\x14\xa3\xa8\xb8\x6b\xea\x8d\x38\x58\x29\xa9\x56\x67\xbc\xb9\xef\x50\x54\xef\x02\xfd\x0e\xba\x96\xde\xb8\x9c\x51\x26\xea\x10\xc5\xcf\x12\x88\xf7\xc5\x7d\x58\x71\xa5\x38\x77\x17\xf5\x14\xc5\xef\x9e\x5a\x75\x6b\x51\x71\xd7\xea\xb8\x9c\xfc\x90\xb4\x56\xe8\x8d\x7c\xeb\xcf\x9d\xe9\xa9\xb8\x6b\x21\x8b\xbb\x8b\x62\x8d\x2b\x31\x22\x30\x35\x35\x3d\x0b\xe2\x87\x23\xa5\x34\x52\xa7\xfa\xbe\xee\x5a\xeb\xa4\xef\x13\xcc\xc1\xc9\x3f\x69\xdf\x04\x73\x20\x2c\xa7\x84\xe5\x1c\xd2\xc0\x05\xf5\x14\xf5\x44\x6b\xfa\x8d\x27\x37\x06\x82\x39\xf0\x2a\x37\x55\x2f\x98\x03\x59\xd4\x85\x95\x60\x8e\xc2\x08\x93\x11\x6a\xc3\x09\xb5\x53\x8e\x3e\x39\x61\x54\xb6\x75\xea\x84\x9d\xbd\xb5\x73\x24\x76\xd1\xd1\xd5\x59\xfc\x5c\xde\x58\x63\xe9\x8d\x85\x0b\xe7\xf8\x5f\xa1\xd6\xff\xff\xc7\xfb\x97\xb7\xbf\xfe\x89\xc1\xe3\xe7\xaf\x5f\xaf\x4f\xdf\xf8\x83\x06\xfe\x96\xe0\x76\x5e\xcf\x8f\x9f\xae\xbf\xfe\x71\xc4\x97\xcf\x5f\xfa\x29\xfe\xf7\xdf\x01\x00\x00\xff\xff\x79\x60\xf9\x3b\x48\x31\x00\x00"); -var _bga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\xcd\x6a\xe4\x46\x14\x05\xe0\xbd\x9e\xa2\x96\x93\xc5\xc4\x75\x7f\x54\x2a\x81\x30\x04\x9b\x01\x2f\x66\x12\xe2\xfc\x41\xc8\xa2\x2d\x55\x9b\x86\x58\xdd\xc8\xed\x85\xdf\x3e\x9c\x7b\xba\x1d\x98\xc5\xd0\xd3\xc7\xd2\x95\xfc\x1d\x57\xd5\xcd\xdd\xc3\xfd\xc3\x7a\x38\xa7\x9b\x5f\xb6\xe3\xfc\xd8\xce\x69\x7f\x58\x97\xad\xbd\x1e\xdf\xb6\xb9\xa5\xa7\xf6\x7c\x58\xbb\x4e\x34\x2d\x87\xf9\x7c\xfd\x1a\x1f\xf3\xcb\xee\xd4\x75\xb8\xff\xf1\xfd\xf5\xdc\x5e\x1e\xd6\xfd\x31\x19\xaf\x5b\xde\x4e\x97\x6b\x53\xba\xf9\xb5\x3d\x1f\x5e\xcf\xdb\x7b\xfa\xf4\xd3\x72\x7c\x6a\x3f\xa4\xa5\xed\x91\xff\xbc\x2d\x6d\x3b\xac\xcf\xe9\xd3\xdd\xb7\x47\xf9\x88\x1f\xdf\x4e\xa7\x7f\xdb\x4b\x5b\xcf\x98\xd6\xf6\x5d\x5b\x97\xf8\xec\x6e\xee\xbe\xee\x4e\xdf\x76\x2f\x2d\xdd\xc4\xa4\xcf\xb8\xef\x33\x2f\x8a\x9f\xfd\xd1\xb6\xd7\xc3\x71\x4d\xf2\x63\xce\xfd\xff\xf1\x6f\xef\xa7\x96\xe4\x32\xe3\xaf\xdf\x1f\xee\xd3\xdf\x92\x24\x27\xed\xfb\x3a\xfc\x73\xc9\xff\xfc\x7a\x5c\x5a\xca\xd7\x27\x3d\xdc\xdf\x1d\xdf\xd6\x73\x92\x5a\xbd\x30\x14\xfe\x4a\xf3\x71\x69\xaf\xa7\xdd\xdc\xb6\xdd\xfa\xdc\xba\x94\xa6\x9c\x73\xbe\x4d\x93\x8f\x5f\xbe\xdc\xe2\x6d\xbf\xbb\xa2\x1b\xfc\x72\xe7\x61\x61\x72\xbd\x23\xe7\xfd\xfe\x36\xe5\x6e\xca\xc2\xef\x82\xef\xda\x97\x6e\xca\xca\x44\x91\xf4\xa2\xdd\x94\x8d\x89\x21\x19\x4a\xed\xa6\xec\x4c\x1c\x89\x64\xf5\x6e\xca\x3d\xa3\x3e\x22\xad\x98\x5d\x18\x95\x88\x7a\xc3\xf0\x81\xd1\x10\xd1\x30\x62\x7a\x65\x54\xe3\x0d\xb2\x63\xfc\xc8\x68\x8c\xc8\x32\xc6\xef\x18\xed\x2e\xef\x89\xf1\x4f\x8c\x9e\x22\xaa\x82\xf1\x33\xa3\x19\x91\xe5\x01\xe3\x17\x46\x4b\x44\xa6\x18\xdf\x18\xb5\x88\xfa\x8a\xf1\x7b\x46\xfb\x88\xaa\xe7\x6e\x12\x4a\x49\x48\x79\x1e\x4b\x37\x09\xb1\x24\xb0\xdc\x7a\xed\x26\xa1\x96\x84\x96\x97\x5c\xbb\x49\xc8\x25\xc1\xe5\xb5\x78\x37\x09\xbd\xc4\x2f\xa6\x18\x4f\x2f\x09\xaf\xde\x06\x8c\xa7\x97\x84\x57\x5f\x0c\xe3\xe9\x25\xe1\xd5\xd7\x8a\xf1\xf4\x92\xf0\x2a\xe2\x18\x4f\x2f\x09\xaf\xe2\x19\xe3\xe9\x25\xe1\x55\x0a\x8a\x15\x7a\x49\x78\x95\x11\xcd\x0a\xbd\x24\xbc\x06\x41\xb5\x42\x2f\x09\xaf\xc1\x51\xad\xd0\x4b\xda\xa5\x7f\x8c\xa7\x97\x84\xd7\x30\xa2\x5a\xa5\x97\x86\x57\x15\x54\xab\xf4\xd2\xf0\xaa\x8e\x6a\x95\x5e\x1a\x5e\x75\x40\xb5\x4a\x2f\x0d\xaf\x3a\xa2\x5a\xa5\x97\x86\xd7\xa8\xa8\x56\xe9\xa5\xe1\x35\x3a\xaa\x55\x7a\x69\x78\x8d\x03\xaa\x55\x7a\x69\x78\x8d\x23\xaa\x55\x7a\x69\xbd\xfe\xad\x62\x3e\xc1\x74\x64\xe6\x28\x57\x29\xa6\x3b\x66\x03\xda\x55\x92\x69\x90\xa1\x7d\x3c\x82\x66\x3a\x33\x53\xf4\xab\x44\xd3\x85\x59\x8f\x82\x95\x6a\xda\x98\x0d\x68\x58\xc9\xa6\x7b\x2e\x92\x8c\x8a\x8d\x6e\x96\x99\x29\x3a\x36\xc2\x99\x30\xeb\x51\xb2\x51\xce\xf4\xba\xc0\x72\x37\x19\xe9\x2c\xe8\xc4\x32\x6a\x36\xda\x19\xd7\xa6\x19\x7a\x36\xe2\x19\x17\xa7\xf5\x28\xda\xa8\x67\x5c\x9d\x56\xd1\xb4\x91\xcf\xb8\x3c\x3d\xa3\x6a\xa3\x9f\xd1\xcf\x0d\x5d\x1b\xfd\x8c\x7e\xde\xa3\x6c\xa3\x9f\xd1\xcf\x2b\xda\x36\xfa\x19\xfd\x7a\x41\xdd\x46\x3f\x9b\xaf\xbb\x02\x9e\x41\x3f\xa3\x5f\x5f\x50\xb8\xd1\xcf\xe8\xd7\x57\x34\x6e\xf4\x33\xfa\x15\x41\xe5\x7e\xd9\x03\xe9\x57\x0c\x9d\x3b\xfd\x9c\x7e\xa5\xa0\x73\xa7\x9f\xd3\xaf\x54\x74\xee\xf4\x73\xfa\x0d\x82\xce\x9d\x7e\x4e\xbf\xc1\xd1\xb9\xd3\xcf\xe9\x37\x14\x74\xee\xf4\xf3\x72\xdd\xca\xf0\x0c\xfa\x39\xfd\xaa\xa0\x73\xa7\x9f\xd3\xaf\x3a\x3a\xf7\xf1\xb2\x6f\x8f\x0b\xb2\x52\x6b\xec\xde\xd7\x5d\x1a\xff\xc7\x19\xf7\x71\xea\xcc\x6f\xdb\xd6\xd6\x73\x9c\x70\x71\xb0\xe0\x5c\x38\xac\xed\xe3\xb4\x3c\x1d\x4f\xb8\x2b\xfe\xfd\x17\x00\x00\xff\xff\x1f\x1a\xa1\x81\x59\x07\x00\x00"); -var _cebc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\x41\x8f\x95\x30\x10\x07\xf0\x3b\x9f\x62\x8e\xeb\x41\xa1\x40\xe9\x6e\x62\x4c\x14\x0e\x72\xd8\x5d\x23\xbe\xa7\x89\xf1\xc0\x6b\x07\xd2\x44\x4a\x53\xca\xe1\x7d\x7b\x33\x53\x64\x0f\x64\xe8\x2f\xcc\x3f\xed\x94\xbc\xed\xbb\xde\xd9\x08\xf9\xb7\xb0\xea\x01\x23\x4c\xd6\x99\x80\xdb\xba\x07\x8d\x70\xc3\xd9\xba\x2c\x13\x25\x18\xab\xe3\xff\x25\x17\xbd\x8c\x3e\xcb\xf2\x2f\xf2\xfd\x57\xd8\x37\x3c\x96\x6d\xdf\x0d\xf7\x2d\xe2\xd2\xbb\x69\x85\x2a\xb5\x99\xdd\x1f\xad\x00\xf9\x77\x9c\xed\x16\xc3\x1d\x1e\x3e\x9b\xf5\x86\xef\xc0\xe0\x44\xfe\x1a\x0c\x06\xeb\x66\x78\x68\x5f\x06\x71\xf2\xb0\x7b\xff\x17\x17\x74\x11\x0a\x36\x74\x86\x6b\x96\xb7\xcf\xa3\x7f\x19\x17\x04\xda\xc4\x95\x91\xed\x8a\x61\xb3\xab\x03\x51\x7c\x28\x8a\xe6\xcd\x7f\xdc\x3d\x82\x38\x9a\x2f\x7d\xf7\x3a\x4d\x1b\x46\x78\x12\x29\x38\xff\x75\xe9\x3b\xf8\x2d\x40\x14\x50\xca\xea\x51\xfc\x39\x3e\xfd\xf9\xbc\x9a\xb3\x51\x94\xe9\x28\xda\x9a\x30\xba\x19\xb3\x8f\xa3\xa8\x6f\x9f\xe0\x28\xa2\x6a\xea\x86\x4c\x8e\x6c\x54\x44\xa5\xea\x8a\x4d\x27\xd3\xc9\x24\x9b\x49\x86\x64\x05\x49\x23\x58\x9a\x92\xa4\x66\x91\x49\x1a\x92\x47\x96\xa7\x24\x94\x5e\x97\x2c\x29\xa7\xa1\x9c\xb4\x03\x95\x72\x14\xe5\x48\x4e\x56\x29\x47\x51\x8e\xe4\x64\x95\x72\x14\xe5\x48\x4e\xc6\x8a\x85\x0a\x9d\x45\xd1\xbc\xcf\xb3\xd2\x3b\xdd\xf3\x39\x79\xbd\x87\x80\x2e\xf2\x2d\xf3\x8c\x69\x48\xd6\xe1\xf9\x03\xf9\xd5\x53\x17\x3f\xff\x02\x00\x00\xff\xff\x86\xb8\x44\x50\x6c\x02\x00\x00"); -func _egeb ()(*asset ,error ){_dbc ,_bcaa :=_fgc ();if _bcaa !=nil {return nil ,_bcaa ;};_abbd :=bindataFileInfo {_ag :"Adobe-CNS1-UCS2",_bc :264249,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490554,0)};_cfg :=&asset {_cd :_dbc ,_dce :_abbd };return _cfg ,nil ; -};var _efbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x06\xe3\x41\x7c\x96\x2f\x38\x6f\x26\x37\xb3\x06\xf5\xef\x8d\xd6\xd2\xb3\x56\xdc\x02\xc3\x79\x27\xe7\x55\x3c\x11\xd2\xd6\xd6\xd6\xfe\xd6\xd6\x1f\xff\xd3\x9f\xff\xf3\x9f\x7f\xfd\xe5\x1f\x5f\x7f\xfc\x5f\x7f\xfb\xeb\xf9\x4f\xf7\x3f\xbe\x9e\x5f\x7e\xbd\x7e\xbb\xff\xfe\xd7\x7f\xfd\xed\xbc\xbf\x8e\xfb\x5f\x7e\xf9\xf5\x0f\x7f\x08\xf1\xeb\xfa\xe5\xfc\xc7\xa7\x89\x3f\xe7\x5f\xf6\xbf\xfd\xe1\x0f\xf3\xfb\x7f\xfa\xb7\xbf\xff\xe3\xfe\xcb\x9f\x7f\x7d\xfe\xfa\x95\xf8\xde\xf5\xaf\x7f\x5b\xef\x7e\x7d\xfd\xf1\x7f\xbb\xff\xe5\x97\xbf\xff\xe3\xb7\x7f\xfb\xfa\x0f\xff\xe3\xf5\xd7\xe3\xfe\xef\xbe\xae\xfb\x99\xcf\xff\x97\xdf\xae\xfb\xb7\x5f\x7e\xfd\x97\xaf\xff\xf0\x5f\xf6\xbf\xed\xbf\x06\xfd\xf0\x4f\xff\xfa\xb7\xbf\xfd\xbf\xf7\x5f\xee\x5f\xff\xf1\xd5\xf0\xec\xfe\xf5\xc2\xdf\x3f\xfc\xf1\x3f\xfd\xd7\xfd\x6f\xff\xf3\xfe\x97\xfb\xeb\x8f\xff\xfc\xeb\x2f\xff\xe5\xcf\xff\x14\xb7\x2d\xff\xc7\x7f\xfe\x6f\x7f\x4a\xf1\x3f\xfe\x4f\x78\x05\x6f\xfc\xef\xf7\x6f\x7f\xff\xe5\xaf\xbf\x7e\x85\xff\x7e\x8b\xc1\x8f\xff\xdb\xbf\xfd\xed\xfe\x0a\xab\xa7\xff\xf3\x9f\xff\xfc\x9f\xbf\xfe\xaf\xf0\x15\xb6\xaf\x58\x6a\x68\xff\xf7\x7a\xfe\x7f\xfc\xd7\xbf\x5e\xf7\xd7\xc6\x56\xe0\x2c\xce\xbf\x5e\xf7\xdf\xff\xb6\x9f\xf7\x6f\xfb\xaf\xff\x72\xff\xe1\xeb\xeb\x7f\xd8\xd6\xbf\xef\xf9\xdf\xb0\xfd\xe9\x4f\x7f\xfa\xd3\xf7\x04\xf3\xdf\xbd\xf9\xe9\xe0\xd7\xbf\xfe\xe3\xba\x1f\x3e\xfb\xfd\xb7\xf3\x5f\x78\xbe\xbf\xc2\xfc\xfa\xfd\xda\x1f\xc2\xb6\xad\xd1\x7f\xb9\xce\xff\x67\xff\xed\xf3\x61\x39\xbf\xbf\x46\xfb\xb4\xda\x6c\x0d\xb5\xae\xef\xaf\x91\xd5\xba\xbf\xbf\xc2\xb6\x7d\x9a\xfb\x36\x87\xf9\x34\xf2\xfc\x4d\xdd\xec\xe5\xfb\xab\xfa\xc7\xfa\xfd\x35\x92\x5a\xed\xfb\xab\x45\x77\xd3\xbf\xbf\x6a\xf6\x97\xe3\xfb\x2b\x94\xa8\xe6\xfe\xfd\x15\xb2\x5f\x3e\xe6\x30\x82\x6f\x3f\xe7\xcb\xee\xf9\x9a\x4d\x0f\x3b\xe1\x2d\x02\x7f\x9f\x68\x89\xfa\xf6\xd8\xbe\xbf\x9a\x21\x3e\xc2\xf7\x57\xf5\x5c\x8f\x3c\xa1\x2a\x6a\x96\xd9\x95\xbf\xad\xdf\x5f\xad\x75\x35\xdb\xf7\x57\x08\xee\xaa\x7f\x7f\x85\xe4\xae\xe6\x8c\xaa\xa6\x70\x60\x46\xfe\x75\xce\x28\x6a\x0a\x07\x80\xac\x9f\xe6\x59\x67\x57\x1a\xf7\x6a\x13\x48\x41\x75\xcd\x81\xb2\x70\x75\xcd\x6f\x8b\x06\xba\xe7\xb7\x9e\xc2\x83\x6f\xd5\xf3\x83\x6f\x3f\x53\x08\x93\x7c\x46\xaa\x55\xed\x80\x76\x50\x3b\xce\xbe\x5b\xf1\x0b\x09\x0f\xea\xd0\x83\x8c\x07\xa9\xe9\x01\x70\xd6\x04\x41\xd8\x2a\xfb\xf0\xa0\x0d\x0f\x9a\x47\xe9\x78\xd0\x93\x1e\x0c\x3e\xf0\x28\xfb\xf7\x57\xdc\x52\xf2\x1b\x07\x1e\x88\x62\xc2\x76\x72\x14\x7f\x72\x71\x14\xbf\x71\x13\x74\x0f\xfb\xf0\x8d\xcf\xa2\x84\xb0\xa1\xd3\xa8\x4f\x42\xe0\x1b\x9a\x4b\x88\xc0\x8f\x06\x09\x09\x6d\xf7\x50\x09\xa7\x1f\x34\xc2\x29\xc0\x03\xe7\x2a\xc2\x08\x81\x73\x6d\x7e\x63\x9f\x7d\x0e\x8f\x79\xcc\xdd\x28\x92\x0d\x81\x33\xed\x1e\x83\x33\x1d\xee\xf2\x26\x14\xee\xe2\x21\x14\x7a\x10\x39\x53\xaf\x5a\x0c\x7c\x43\x0b\x1d\x23\xdf\xf0\x03\x2e\x74\x77\x1f\x5c\xe8\x21\x7c\x46\x4e\x5e\x54\x1d\x22\x16\xba\x07\xf7\xd1\x31\x15\x01\x1a\xc7\x6c\x07\xe1\x3b\x62\xea\xd5\x50\x1d\x68\xfb\xf7\x35\x31\xe1\x3f\xae\x89\xe9\x8b\xb4\x26\x26\x62\x4b\x73\x09\xb3\x20\x48\x9c\x56\x14\xf2\x52\xe2\x03\x7f\xb0\xe6\xe9\x4f\xd6\x3c\x05\x45\xe2\x3c\xc5\x9e\x42\x5a\x8b\xec\x3e\x3a\x3b\x15\x9c\x89\x8b\xfc\x82\x73\xe7\xaa\xbb\x0f\x12\x74\xf6\x28\x27\x1e\x98\x50\x12\x97\xd9\x93\x4f\x24\xe8\xec\x4e\x89\x8d\xa8\x25\xca\x0b\x1b\xea\x23\x03\x1b\x5a\xb1\x3c\xb7\xb7\xbf\xcf\x6b\x73\x0b\x86\x4c\x5c\x34\xe1\x22\x17\x42\x99\x20\xa5\x96\x44\xf9\xff\x93\x31\x21\x13\x51\xde\x71\x99\x3b\xbf\x8a\x42\x32\x77\x43\x33\x08\x83\x10\xfb\x13\xee\xfc\x68\x10\xb0\x1d\x4c\x97\x79\x8a\xae\x64\x44\xe6\x0b\x34\x23\x1c\x94\x8d\x63\x6a\xc5\xcb\xda\xd4\x5a\xad\x02\x2c\x08\xa6\x32\xb1\x90\x85\xe5\x42\x1c\x78\xef\x14\xd2\x43\xf5\xf7\x8b\x1e\x3c\x02\xe9\xc1\x78\x2c\x6b\xd3\xbb\x8f\xb5\xe9\x3d\x0a\xe9\xc1\x34\x55\x0e\x3e\xf0\x28\x6b\xdb\x0b\x55\x65\x6d\x7b\x03\xbe\xe8\x41\xb8\x2b\x64\x70\x92\x0d\xa1\x4e\x7a\xf0\xfe\xac\x73\xd3\x47\x75\x58\xc9\xec\xbd\xfd\x2a\xe9\xa1\xab\xc3\x4a\x5c\x98\x48\x2b\x71\x51\xfc\xc6\xe2\x01\xee\x83\xb8\x48\xfe\x84\x3c\x40\xa8\xa8\xe4\x01\xfe\x80\x3c\x40\xf3\xae\xe4\x01\x06\x7a\xe1\xc1\x2f\x2c\x3c\x08\xfd\xf5\xc6\x08\x6e\x3f\x18\x41\x14\xd3\x16\x45\xf8\x01\x29\xa2\x0b\x4f\x8d\x5c\xc2\x32\xac\x91\x4b\x18\x8a\x96\xb9\xe5\xfd\x09\x77\x86\xc9\xac\x11\x13\x46\x4d\x5b\x54\xe1\x4e\x27\x97\x30\x27\x6a\xa4\x09\x13\x62\x23\x4d\x58\xc6\xb5\x45\x13\xfe\x64\x09\x3d\x3f\xb8\x66\x97\x1e\x61\xf2\x4b\x73\xa1\x31\x17\xd8\x98\x1f\x58\xde\xee\xad\x75\x46\x3e\x10\xc8\x27\xf6\x92\x31\x7b\x12\xb3\xfe\xe0\xc1\xef\x5a\x8a\x6b\x03\xa6\x85\x94\x2b\xe0\x7d\xf5\x77\x45\xfc\xae\x19\x5e\x09\xbf\xbb\x9d\xf1\xbb\x20\xbc\x16\xbb\xd1\x0c\x2e\xea\x12\xd6\x03\x2e\x22\xd5\x0c\xfe\xe2\x56\xb3\x04\xbe\xc8\x51\xbc\x91\x2e\xa2\xd5\xd2\xf1\x5a\xac\x57\x24\x78\x11\xad\xe6\x31\x0f\xe1\x30\x9e\x1f\x68\xc8\x42\x54\x9c\x12\x60\x64\x75\x19\xc9\x74\xba\xa8\x3e\x16\x60\x22\x74\xb5\x89\x6a\x0d\x11\xcb\x5a\x0c\x7f\x01\x5c\x68\xb3\x46\xb2\x9d\xae\xdd\x1d\x0b\x70\xd1\x37\x7f\x41\x71\xfb\xfa\xa4\xf3\xc1\xd0\x03\xec\xb5\xe8\x41\x77\xb4\xfd\x3b\x79\xab\x7b\x3c\x09\xe5\xa6\x07\x37\x1f\x18\x88\x87\x40\xa8\x8b\xca\x99\x8b\x06\x63\x0d\x54\x02\x04\x15\x99\x48\x37\xb2\xc8\x44\xba\x64\x76\xac\x9c\x59\x70\xa7\x9c\x99\x08\x3f\xd6\x35\xb3\xa6\x07\x58\xd4\xde\xcb\x4f\x04\x53\x5c\x3c\x64\x78\xc4\x8b\xd3\xf0\x03\xf2\xd2\x61\x10\x38\x51\x51\x5e\x24\x17\xe9\x41\x30\x2d\x2e\x22\xc5\x2d\x36\xae\xb1\xb6\x43\x6c\x5c\xe3\xcd\x7d\x10\x15\xd2\x35\xe2\xe4\x22\x23\x4b\x2d\x8b\x8d\x98\xe8\x7e\xc0\x89\x8b\xfb\x45\x72\x8d\xbe\x79\x10\x62\x22\x7b\x90\x83\x6f\xb8\x8f\x35\x59\x43\xbe\x26\xab\x37\x3a\xe7\x26\xfd\x3b\xf6\xb5\x88\x9a\x5b\xe7\xdc\x36\x3f\xc0\x56\x96\x64\x88\x9d\x53\x13\x7b\x8b\x9d\x90\x8b\x19\xc4\x4e\xc8\xa5\x79\xc5\x4e\xc8\x93\x3f\x21\xbf\x93\xf5\x12\xfb\x09\xf4\xf8\x0b\xce\xc4\xf8\xea\xa4\xcf\x60\x30\xb8\x6c\xd2\x8d\xe3\xe0\xd4\xc4\xc3\xe2\xe0\xd4\x0c\xf9\x00\x93\xf2\x3e\x1b\x9c\x89\xf7\xee\x20\xbd\x4a\x64\xc5\xb1\xa8\xd1\x83\x70\x6a\xc3\x7d\x70\x23\x0d\x0f\x42\xc8\x83\xdf\x58\x80\x6a\xd9\xf6\x05\x97\x3a\xdd\x17\xcb\xd0\xa2\x1c\x9c\x8a\xd8\x73\x3c\xf8\x86\x29\xf0\xe0\xbe\x31\x02\xa7\xd9\x69\xaa\x3f\x26\x3a\xf5\xdb\xc9\x01\x4d\x05\xb0\x42\xbd\x3c\x27\x95\x37\x31\xe3\x78\x72\xda\xd9\x3d\x8c\xb7\xa9\x1d\xcf\xb9\x9e\xde\xa2\xe7\xf1\xfd\x25\xe1\x17\x4f\x62\x44\x4c\x37\x52\x76\x98\x6c\xaf\x35\x7f\x8d\xff\xe1\xec\x7e\xb0\xac\x44\x21\x15\x9c\xdd\x3b\xf4\x5a\xe2\x52\xf0\x4d\xbe\x6e\xe4\x5c\xd4\x1b\x8a\xdf\x27\xf1\x48\xff\x49\xd3\x3a\x16\xc4\x69\x9a\xbe\xc3\xad\xfc\x9e\x6b\x9a\x56\x6f\x14\x63\x4d\xdb\xef\x20\x49\xd3\x5a\x0d\xc9\xdf\xce\xb9\x27\x0f\x73\xfd\x1e\x8f\x89\x86\x69\x97\x72\x91\x02\x77\x86\xd4\xc5\x44\x1b\xb0\x4b\xb3\x4e\xb4\xce\xba\xd4\xa6\x44\xeb\xac\x17\x3f\x68\x6f\xf7\x44\x8a\xf0\x56\x68\xc8\x48\x8a\xf5\x6c\xe3\x1a\xd2\x6f\x70\x48\x19\xd8\x29\x12\x4a\xa9\x51\x29\x91\x1e\x65\x1d\xa7\x69\x6c\x49\x21\x4a\x34\xac\xba\xcc\xfe\x94\xe0\xe5\x10\x80\x69\x81\xa0\x59\x27\x8e\xd8\xfc\x80\x88\x72\x97\x4b\xb6\x48\x4f\x4b\x1d\x4a\x57\x16\xd1\xa5\x0e\x2b\xca\x22\x2d\xf5\x9b\x0f\xb4\x36\xfd\xe1\x03\xf5\x31\x60\x34\x99\x01\xa4\x7d\xe7\x1b\x7e\x70\xf0\x81\xe0\x38\xd6\x27\xea\x03\x9a\x54\x8d\x31\xfe\x44\x1c\xa5\x93\x03\x68\xab\xa7\x93\x03\x48\xde\xa5\x93\x50\x9b\x44\xe6\x6e\x09\x71\x13\x5f\x4b\xd8\x2e\x71\x1b\x7e\xa3\xf0\x81\xfa\xc0\x76\x88\x9b\x48\x38\x6f\xf3\x93\x4d\x4b\x9e\x61\x18\x6d\x62\x0f\x0f\x94\xad\x18\x3e\xfb\x2b\xdc\xe0\x17\xe9\xc3\x20\xc2\x7d\x40\x0b\xfa\xc8\xfe\xf0\x34\x6c\xe1\x0f\x1b\x0c\x4f\xa3\xd2\xe3\xdf\xc1\x59\x3f\x68\x0b\x4f\x83\xcc\xf8\x2c\x45\xdc\xb6\xa9\x76\x7f\xd0\x1c\xb7\xb9\xe1\xaa\x7f\x0d\x73\x37\x7e\x6c\xaa\xb8\xc1\x37\x93\xd5\x9a\x08\x7f\x35\xd3\xef\x9b\xf9\x45\x69\x71\x0b\x65\xf6\xa4\x71\x42\x9d\xcd\xaa\x66\x37\x8f\x8c\x5b\x18\xe6\x91\x71\xc3\x46\xfc\x4c\x30\x6e\xd8\x86\x9b\xdf\x9d\xf4\x19\x0d\xe1\x0d\xfc\x7d\x9a\x11\x20\x0e\x35\x01\x84\x9b\x00\x42\x5d\xcd\xbd\x24\xdf\x55\xdc\xd2\xf1\xfd\x25\x9d\x36\x6e\xd8\x19\x31\x04\xf5\x9d\xee\x17\xfb\x89\x5b\xe2\xd6\xcc\xea\x3d\x93\x1e\xbb\x3a\x84\x65\xbf\xa9\xc3\x3c\xd8\xa1\x7e\x07\x2d\xd4\xd8\x35\xc2\x54\x15\x5b\x37\x5e\xa6\xf5\xd9\x24\x2c\xe2\x86\xb5\x4f\xcd\x6d\x80\x30\x8c\x9c\x1d\xc4\x53\x34\x24\xd8\x6f\x95\xe3\x25\x6e\x60\xbf\x61\xfb\x6c\xc4\x08\xe7\x64\x08\xbd\xf8\x41\xfa\xfe\x6a\x1f\x75\x2a\xd2\xd3\x18\xc4\x91\x22\xdc\x86\x3d\x6d\x7e\x7f\x47\x3b\xab\xfd\x70\x07\x7c\x66\x09\xf7\x5d\xdf\xa2\x3e\x98\x94\xd0\xaa\x47\x88\x61\xfe\x6e\x00\xe0\x14\x13\xc4\x70\x78\x8d\xf4\xfa\x19\x12\xb2\x04\x3f\x98\xcb\xf6\x61\x78\xf1\xe3\xbe\x12\xa9\xd1\xb5\x14\xb7\xae\x19\xcc\x75\xee\xe9\xa3\xaa\x45\x38\x2f\x86\x3c\x7b\x11\xbe\x8b\x21\x65\x2f\xc2\x75\x31\xa4\xcc\xc4\x8f\x6f\x22\xaa\x83\xb9\x0c\x3d\x7d\x34\xce\x18\xa6\xd2\x35\x64\xe9\x46\x98\x84\x32\x74\x22\x4c\x42\x79\x98\x62\x80\xea\x13\xe3\xa6\x19\x4c\x95\xa0\xa7\x4d\x2f\x9c\x07\x5f\xd0\x78\x10\xeb\x31\x1a\x22\x32\xaa\x68\x90\xa7\x0d\x28\x9b\x36\xc2\xe4\x93\x0c\x8e\xe1\x9e\x03\x6c\xc1\xed\x86\xb6\x5e\xbf\x3b\xda\x5a\xd2\x7b\xa0\x2d\x00\xa7\xa5\xd6\x93\xde\x8f\x93\x86\x64\x1f\xc7\xb8\x61\xf0\xa1\xe6\x9c\xae\xd6\x2f\x82\xa0\x62\xe8\x7e\x7d\x39\xb0\x9a\x1e\xb4\x49\x20\x9b\x9a\xfd\xfb\x4b\xfe\x96\x18\xe9\xb6\xce\x1f\x99\x19\xe3\x46\x76\x31\xfc\xc6\x24\x88\x6c\xe8\xe8\xb0\xd3\xb6\x8f\x93\xa9\xb5\x2a\x82\x8c\x93\xad\xd5\x8f\x4e\x18\x23\xd8\x5a\x0c\xa1\xff\x40\xac\xc4\x08\xcf\x72\x10\xec\x93\x77\xc9\x05\x15\xe3\x64\x56\xcd\x33\x9b\xcc\xaa\x6d\x1e\xe9\x01\x20\xc2\x54\x04\x1e\x35\xb1\xa9\x2e\xc8\x37\x15\xe3\x54\x16\xe4\x87\x8c\x31\x5e\xdf\x5f\x3d\x0c\x0d\x35\xe9\xbe\xd5\x28\xb4\x4e\x4d\xa0\x6d\x6e\x96\xf9\xb3\x3a\x03\x73\x13\xbd\xc4\x04\x38\x35\x72\x26\x0a\xc4\x83\x63\x06\xc9\x17\x91\x60\xa4\x4f\xb1\x88\xf3\xc0\xd6\x96\x53\x33\xc2\x42\xad\x62\x64\xb0\x4f\x15\x14\x88\x91\x4e\xb0\x22\x26\x42\x6d\x3f\x86\xae\x0f\xc6\x12\x8b\x02\x69\x34\x3e\x10\xb2\x60\x0f\xc4\xd0\x05\xd2\xb8\xc9\x0c\xf5\x09\x82\x68\x31\x74\x8d\xb2\x4f\x1c\x14\x7d\x70\x00\xfd\x49\x93\x3c\xb9\x11\x85\xf1\x84\x18\xca\x5c\xe2\xcf\x83\x00\xca\xd6\xef\x2b\xcc\x20\x5e\x95\x06\x76\xaa\xdc\x9c\x31\x0d\xca\x10\x51\x40\x82\x05\xf2\x7e\xb0\x80\xfc\x28\x1d\x31\xc1\x24\x89\x0a\xb5\xc5\x04\x93\xe4\x77\x9f\x94\x7f\xff\x80\xc8\xd2\x0e\x84\x32\xf5\xbb\x37\xa6\x6a\x13\x6a\xfc\xc4\x3f\x62\x8e\x89\x0f\x3e\x0b\x96\xef\xc9\xc6\xe5\x28\x8b\xf9\x79\xe0\xc6\x12\xb1\x96\xc9\x25\x7b\x14\x58\xa5\xdc\x68\x7f\x3a\x28\x73\x89\x7b\x14\x0c\xa5\xa2\x43\x31\x9d\x32\x6d\xfb\x1e\x3f\xea\x76\x2c\x0d\xfd\x49\x7a\x96\xc9\x34\x7b\xcc\xfa\xbe\xe3\x7b\xa1\xb2\x4c\x3b\xb5\x47\x6d\xeb\x32\x95\xce\x1e\xc5\x17\xca\x34\x53\x7b\xcc\xea\xbf\x03\xbe\xe4\xfe\x31\xbe\xf4\x93\x32\x11\xdf\xb4\xf7\xca\x44\xbb\x57\xb2\x4c\xa4\xf7\x4d\x42\xa6\x10\xa3\xaf\xee\x76\x32\xe5\x8f\x81\x11\xcb\x41\x61\x2e\xc9\x5a\x0e\x70\x7d\xc1\x77\x80\xeb\x0b\xbc\x83\x6b\x36\xfc\x3a\x99\xb0\x5f\x38\xe7\xfb\x9a\xfe\x54\x03\x5b\xd2\xec\x4f\x92\xcd\x10\xba\x4e\x48\x51\x09\x8d\x32\x85\x88\x45\x54\x39\x11\x18\xae\x6a\x02\xd9\x1e\x8c\xca\x71\x92\x14\x2d\x53\xe6\xb4\xa8\xd1\x21\x71\xb6\xb2\x79\xfc\xc9\x6d\xc4\x42\xcb\x39\xb7\x92\x88\xa7\xdc\x19\x6b\x2d\x6c\xde\x05\x6d\x41\x83\xf0\x69\x7c\x11\xcb\x3d\xbf\x6f\x02\xfe\x59\xc8\x15\xbc\x0f\x25\x9e\x56\xaf\x4e\x29\xd2\xa4\x05\xd6\x0d\xb3\x0d\x6a\xde\x50\x29\x3e\x9f\xd7\x00\x5a\xd0\x3e\xae\x01\xb4\xe0\xcf\x33\xe2\xd5\x7a\x7d\x2a\x72\x4d\xcc\xa9\x56\x50\xaa\xc4\x5f\x05\xa5\x6f\xe2\xf9\xb5\x92\x56\xd4\x7b\x4d\x78\x3f\xa9\x9d\xf1\xbb\x60\xaf\xc0\x46\xf8\x89\xd9\x12\x6b\xad\x78\x39\xab\x4d\x32\x11\xac\x73\x9b\x29\x76\x1a\x6b\x3d\x40\x85\xe2\xec\xb5\x92\x03\xbd\x1e\x4c\x42\x6a\xee\x0f\x9c\x21\x0c\x43\x8f\xa5\x10\xf0\x8b\x3f\x49\x9d\xab\x6b\x27\x14\xbf\xc1\xc5\x92\x84\xaf\x93\x54\xa7\x09\x24\x04\x1d\x37\x25\xb4\x1e\x2c\x8d\x46\xd4\xdd\x36\xf2\x38\x09\xf5\x16\x16\x7f\xda\xf4\x80\xc3\x6a\xbf\x37\xa8\xdf\x51\x8e\xf7\xd8\x32\x95\x20\xed\xe1\x56\x16\x95\xe9\x8d\x46\x9e\x26\x64\xb6\x1d\x3c\x4b\x0b\xdf\x8e\x87\x90\x7f\xba\x18\x48\x19\xa8\x51\x5c\x70\xc0\x1d\x13\xa3\x36\xe2\x01\xb8\xc2\x26\x52\x3d\xe0\x13\x88\x66\x6c\x47\x24\x18\x92\xdc\x07\xdc\x00\xd1\xac\xf0\xa8\x84\x3c\xf8\x41\xe0\x03\x8d\x02\x81\x19\x4d\x83\xc7\x28\xbf\x83\xfc\xf8\x88\xc7\x4f\x17\x37\xb0\x51\x8a\x08\xe5\xee\x88\xb8\x59\x71\xbf\x7b\x81\xbd\x56\xfc\x46\x43\xdc\xf2\xf5\xc6\xc0\x27\xaf\x37\x0e\xbc\x21\x40\xef\xc9\x64\x73\x14\xd7\xb9\xe1\x09\xcc\x56\xce\xee\x69\xe7\xe7\x9a\xdd\x8e\xdf\x5f\xc9\x7a\xc2\x3d\x75\xe1\x6c\x65\xf8\x9e\xca\x70\x36\x27\xb8\xe9\x06\x4c\x52\xee\xee\xc1\xcc\x0b\x31\xd2\x1b\x33\x4f\xbd\xb8\x4b\x64\x5f\x94\xea\x4f\xc6\xf7\x57\xd9\x8a\xfb\x3c\x66\xbb\xbb\x3d\xc9\xb3\xc9\x2b\x18\xef\x29\xa4\x53\x95\x28\xba\xe7\x1e\x48\xde\x13\xf7\x0e\x54\xca\x49\x17\x6f\x64\xe8\x14\xc5\x68\xe2\x0d\x89\x9c\x83\xb6\xc0\xbd\x03\x28\xdb\x04\x37\x72\x71\x92\x05\xd0\x8d\x7d\x95\x86\x04\xc2\x8d\x7d\x95\xc7\xf0\x1b\x73\x2b\x8f\xe0\xa9\x23\x27\x27\x0f\x2f\x18\xb2\x72\xd2\x10\x63\xbb\x21\x94\xca\xa6\xdd\x7f\xc3\x7b\xf9\xee\xf4\xc0\x5c\xac\x57\xdd\x70\x67\xe6\xad\x69\x2e\xc8\xb1\xc9\xdb\xeb\x13\x7a\xd6\x44\xd0\x70\x51\x84\xf4\x5a\x65\x78\x39\x87\x64\xdf\xcd\x98\x97\x7d\x05\xf7\x99\xb0\x68\xda\xde\xf7\xd4\xbd\x62\xd5\xc6\xbb\x99\x9c\x53\x65\x4b\xdf\xf0\x73\x26\xdb\xc6\x37\x7d\x9b\x8a\x6b\xc5\xfb\x64\x86\x52\xf7\x20\xb0\x8e\xa3\x89\xed\x0a\xdf\x5f\x69\x33\xca\x2f\x80\x65\xce\x75\x33\xf2\xf5\xfe\xa2\x71\x66\x7e\xa3\x4f\x38\xab\xc6\x80\x81\x9d\xba\x71\x01\x03\x3b\xd9\x2b\x70\x23\x73\x28\xc9\xc5\x1a\xef\x29\x1c\x43\x35\x2e\xa6\xb5\x95\x92\x29\xe3\x06\x65\x48\xf6\xde\xf7\x81\x21\x85\xdc\x1b\xe1\xc7\xec\xdf\x27\xb5\x0e\xd9\x1c\xf7\x03\x37\x84\x54\x97\x67\xa3\x17\x6b\x53\x7b\x32\x3d\x8b\xfa\x67\xf2\xde\x2c\x8f\x55\x7c\xa6\xbd\x96\x27\xb3\xfe\x81\x78\x7a\xe0\xa1\x55\xca\x50\x7c\xa6\x5c\xce\x41\x7a\xc2\x33\x05\x73\x8a\xcd\x9d\xb7\xf9\x7b\x30\x30\x13\x9f\x45\xfb\xfd\x99\xd6\x5d\x8e\x32\x2b\x9e\x69\xdc\xa5\x28\x33\xe0\x99\xb6\x5d\x4a\xc3\xfd\x9f\xf3\xfd\xe0\xef\xaf\xd9\x96\xde\xf3\x6c\x60\x50\x2f\xf8\x9e\xd9\x16\xf2\x9e\xb0\xa1\xad\xf1\xa6\x6d\x98\x42\xf5\xef\x93\x5f\x0d\xb1\x9f\x67\xca\xa5\x1c\xa5\x76\x3d\xa1\x7e\x7f\x65\xfb\x12\x1e\xa4\x22\x25\xcf\x77\x9a\x08\xa9\x79\x3e\xd3\x5c\xcc\x49\x5c\xf9\x99\xe2\x23\xa7\xe8\xfe\x0f\xb4\xfd\xfe\x39\xbf\xcf\x7e\x7f\xd2\xdb\x90\x47\xeb\x99\x9a\x4d\xce\xc5\xed\x49\x0c\x41\x1c\xfb\x41\x0e\x52\x94\x19\xf8\x4c\xbd\x3f\x75\x6d\xee\x27\xce\x7d\xa7\xd0\x57\x7c\xa6\xf4\x8a\xf6\x16\x3e\x48\x37\x7a\xad\x47\x9c\xeb\x57\xc5\x60\x9e\x88\xfd\xa0\x9d\xfe\x4c\xd9\x16\x73\xf1\x78\xfb\xef\xf8\xff\x13\x0f\xb4\xdd\xdf\x5c\x3f\xef\xfb\x67\x5a\xb5\x31\x34\xc3\x33\xe7\xd7\x8c\x2f\xf8\xc3\x87\xe9\x05\xee\xf0\x21\xdd\xea\x41\x26\x92\xc2\x17\xf1\x49\xe4\x3c\x7e\xff\xf7\xf2\xe6\x49\x90\x37\xd2\x2a\x9e\x69\x26\x67\x5b\xaa\x4f\xaa\x68\x0b\x1f\xa9\xa1\xed\xfe\x27\x5f\xaf\xe2\x20\x0f\xfc\xeb\xb9\x78\x41\xd3\x44\x80\xb2\xee\xe2\x93\x0e\xb4\xfd\xc1\x39\x37\x80\x11\x36\x2d\xf1\x3c\xc4\xe3\x1f\xe4\x1f\x8d\x57\x7f\x53\x45\x51\xa6\x4e\x7c\x90\x7d\x14\xbd\xdb\x73\x80\xb0\x13\x80\x53\x97\x4d\xc5\x1b\x66\x9a\xf6\xc9\x16\xea\x03\x1f\xa5\x52\x62\xe2\x33\x2d\xfd\x64\xbf\xed\x93\x2b\x84\xa5\xfb\x6b\xd8\x90\x82\x37\xf7\xef\xaf\x12\x92\xfb\x9f\x08\x50\x7c\x21\x3e\x79\x6e\x60\x05\x70\xe3\x93\xa7\x54\xeb\xc5\xe3\xcf\xf9\x47\xcf\x2f\x5f\xdf\x5f\x45\xc9\x08\xf1\xc9\xf7\x6c\x57\x7f\xff\xa0\x2d\x78\xa6\x59\x9a\xb2\x74\xa9\xa7\xcc\x0d\xdc\xbd\x21\x0b\xbc\x89\xe2\xa6\x4f\x49\xf3\x7b\x6f\x80\x02\xc1\xb3\xf9\x77\x68\x45\x86\x7f\x2a\x91\x69\x13\xf7\x7d\xca\x9c\x7f\x31\xc1\x94\x39\xff\xea\x0d\x56\x06\xda\x7e\x7f\xce\xbf\x9a\x40\xcb\x34\xac\xcc\xad\x1f\x44\xff\xab\xb9\x31\x12\x8e\x7a\xf7\xf8\x58\xff\x57\xff\x0f\x08\x5c\xf8\xa6\xee\x28\x01\xf5\x30\x5a\xe3\xf7\xe9\x6a\x91\x99\xfa\x4c\xe3\x24\xd6\xe2\xef\xf3\xc4\x97\x84\xfb\x33\x8d\x93\xa4\x10\x56\x7c\xa6\xfd\x91\xb2\x37\x1c\xb2\x04\xb2\xc5\xd9\x53\x27\x02\x5e\x04\x5e\xc7\xe4\xd0\x5e\xa0\x69\xa0\xa4\xec\x05\x9f\x16\x4a\x0c\xed\x47\xd6\xcf\x33\xad\x97\xd4\xbd\xfd\xa7\xf1\x92\xda\x0b\x9a\x7b\xfe\x9e\xfc\xfb\xdc\x1d\x55\xea\x27\x82\x25\x31\x7a\x35\x91\x3e\x90\x87\x6c\x33\x44\x4b\x42\xf2\xfe\x46\xf6\x80\x75\xe2\xa7\x4d\xf4\x0c\x43\x8f\x0c\xa4\xe1\xe5\x6a\x13\x3d\xaf\xe5\x46\xfe\xd1\x4b\xfe\x30\x95\x40\xaa\xe4\xd3\xc6\xf7\x57\x7d\xc9\x97\x36\xb1\x33\x36\xf7\x47\xcb\xc8\xdf\x4f\xfe\xb8\x79\x3b\x32\xf7\xe8\xd5\xbe\xbf\xbf\x6a\x94\x06\xf8\x4c\x13\x27\x5a\x81\x79\xfa\x36\x7f\x77\x7f\x3d\x60\xfb\xea\xfb\x3e\xb7\x47\xb1\x3c\x99\x56\x42\x8c\x86\xaf\x67\x24\xb3\xb9\x3f\x58\x37\x72\x72\x3c\x88\x05\xd6\xe1\xfe\xe7\xfc\xed\x68\x78\xfa\x94\x0f\xaf\xed\xd4\x91\x28\xf4\x1a\x7f\x9f\xe3\x7b\x3b\x4d\x0b\xa3\x26\xcb\x97\x7e\x22\x83\xdd\xf0\xcd\xf9\x0f\xb3\x23\xe4\x22\x74\xb3\x3b\x06\x1a\xfd\xfd\x60\x78\x43\xdf\x8f\xf0\xfd\x55\xab\xe1\x47\xb6\xd6\x4b\xfe\x21\x5d\x2b\x9b\x9f\xc3\x39\xef\x00\xcb\x33\xb0\xfe\x66\x57\xd3\x1c\x49\x61\xf8\xf7\xf6\xfd\x55\xed\x7c\x7e\xa6\x31\x52\x9b\xb7\x27\x92\x16\xb2\xe5\xd1\x98\xf3\xb7\x9a\xfb\x4c\xdb\x24\xf6\xd7\x78\x93\x3d\x2a\xb9\x28\x3e\xe3\x82\xbe\x24\x7a\x9a\xb6\x4b\x4c\xa6\xbf\x69\xba\xc4\x62\xfd\x63\x9a\x2e\x71\x98\xfd\x32\xe1\x21\x78\xbb\xee\x11\x0a\x81\x5f\x98\xf2\xe1\xa5\x20\x4d\xd3\x26\x65\x2b\x24\xfb\xe4\x0f\xc3\xdb\x1f\x96\x8e\x9d\xff\xcf\xde\x7e\xa7\x63\x3f\xd3\xf0\x49\xdd\x04\x38\xed\x9e\x54\xcc\xaf\xa7\xd9\xd3\x82\x37\xe4\xb4\x7a\x5a\xb0\x3c\xdb\xe9\xf9\x71\x7f\xd7\xf7\x57\xaf\xd6\x56\xa7\xc9\x93\xb2\x09\x76\x7f\xc0\xff\xd5\x3f\xf2\x37\xb2\x37\xcc\xb4\x88\x5a\xf0\x06\x86\x97\x2e\xc8\xb6\x7b\x60\x0f\x25\x2b\x08\x47\xc6\x06\x17\xfc\xc7\x9c\x7f\x79\xf5\x07\xfe\x68\xf9\x34\xcd\xa7\x58\x8c\xbf\x03\x1b\xc0\x04\x77\x30\x53\xce\xed\xc9\x00\x5e\x0a\xf4\x81\xa8\xb4\x37\xf0\xb1\x32\x94\xd5\xbe\xe0\xd7\x73\x1b\x8e\x38\xd9\xae\x0f\x4c\x2f\x5b\x17\x0f\x83\xe4\xd6\x37\xa6\xe5\x95\x36\x2b\x6c\xd3\xf0\x6a\xf9\xf5\x3e\x73\x2c\x34\x5f\xf8\x11\x73\xf4\xf7\x73\x7d\x6d\xb6\x3e\x70\x88\x24\x9b\x2b\x0f\xf2\x53\xaa\x77\x00\x5d\x8b\xde\x51\xf0\x2c\x66\x6b\x84\xd3\x8e\x6b\xd9\x02\x7f\x9a\x71\xe9\x65\x41\xc0\x75\x3d\x2c\xc0\xa6\x55\x17\x1d\x53\x79\x2e\x28\x00\xa6\xf8\x2b\xc1\x1c\xaa\x3f\x90\x2f\x89\xd1\xef\x0f\x6c\x69\x9b\xd6\x4c\x4f\x9f\xdd\x97\x10\xf0\x56\x0e\x63\x42\xc0\x5b\xaa\x52\x42\x60\xba\x56\xff\x8a\x18\xca\xeb\x63\x46\xa6\x9b\xdf\x47\xbc\xe1\xe3\x2c\x49\xdb\xd4\xcd\xbb\x54\xb5\x84\x70\x74\x88\x31\xf8\x01\xe2\x74\x1f\x27\x42\x42\x80\x3a\xc4\xf0\xd9\xed\x89\x21\xea\x2a\x2f\x70\xda\x90\xbc\x11\x43\xd3\x18\x2b\xde\xf0\x61\xb8\x89\x27\x8b\x2c\x31\xd2\xf6\x80\xe3\x6a\xcc\x07\x93\x12\xcc\x08\x03\x54\xb9\xa9\x53\x9c\x40\xf6\xf0\x61\xf8\x29\x4e\x85\xba\x4b\x9f\x4c\x08\x3b\x75\x65\xbf\x27\xc4\x9d\xba\x0e\xc3\xa4\x88\x39\x29\x1d\x3e\x21\xa9\xb3\xcb\x40\x49\x71\x2a\xd4\x5d\x07\x6f\x52\x9c\x0a\x75\xab\x9f\x48\x54\x8a\x53\x9f\xee\x8a\x8e\xa4\x88\x60\xae\x32\xc9\x13\x02\x5b\x5d\x67\x80\x12\x22\x5b\x5d\xc7\x7c\x52\x9c\xfa\x74\x57\xb8\x25\xc5\xa9\x4f\x77\x9d\x82\x4a\x31\x63\x7e\xc5\x6d\xba\x08\x35\xff\xa9\x4f\x77\x1d\xfd\x49\x08\x95\x75\xa5\x3d\xa4\xb8\x62\xfe\x43\x0f\x0a\xbc\xc5\x43\x00\x43\x22\x6d\xb9\xf9\xc1\x7c\x21\x54\xb7\x31\x82\x96\x20\x0e\x8c\x50\x85\x91\x01\x0c\x17\xcd\x00\x2e\xb2\x2d\x7b\x89\x06\x50\x5c\xdd\x6e\x7c\xc1\x3d\x00\xc7\x22\x3c\x64\xd2\x75\xe9\xc8\x29\x4e\xa1\x14\xb6\xdc\x85\x34\xc4\xb5\xb6\xdc\xfd\xc5\xc9\x2e\x85\xe6\x29\x97\x7a\x0a\xfe\x02\x68\x7e\xcd\xfa\xe1\xac\xf5\x02\xa2\x5a\x5b\xf6\x1b\x70\xaa\x6d\x79\x68\xde\x53\x52\x74\x05\xb5\x52\xdc\xb9\xf2\xa2\x9c\x1d\x2b\x5f\xdc\x23\x56\xbe\x6a\x16\x90\x14\x3a\xc1\x96\xe2\x0e\x90\xaa\xfb\xc3\xca\x6b\xf3\x23\xd3\xaf\xeb\x78\x5c\x8a\x0f\x2c\x2d\xef\x4f\x64\xaa\xf5\x2d\xbb\x8d\xc4\x06\x91\x2a\xb3\xd5\x82\xb2\xb9\x12\xf2\xd5\xba\x64\x6d\x4a\x38\xa4\x15\xfa\xc7\xba\x4d\x0c\x30\x86\xae\xdd\x99\x70\x48\x2b\x28\x07\x2d\x25\x44\xbb\x43\xff\xd8\x5b\x89\x49\x6f\xa1\x77\x8f\x7a\xf0\x81\x47\x3d\xf9\xc0\x70\x5e\x88\xc7\x7f\x26\x9a\x02\xb2\x01\xfc\x41\x28\x98\x87\x80\x08\x60\x3b\xda\x32\x29\x10\xca\xe1\x0f\x90\x1f\xa0\x3d\x93\x18\x03\x97\x6f\x2e\xa5\xc0\xf8\x8b\x7a\x8c\x88\x90\x68\x93\xa4\x48\xcc\x09\x31\x48\xac\x0b\x63\x13\x62\xe0\x44\x0f\x43\xbc\x32\xc5\x8a\x39\x08\x84\xd8\xd0\x16\x08\x71\xc7\x88\xc2\x0a\x92\x42\x8a\x21\x8a\x17\x3a\x0c\x42\x42\xc2\xb6\x14\xdf\x40\x1a\x5d\xb0\xa1\x3d\x45\xf2\xa4\xe8\x28\x90\x12\x21\xd0\x08\x09\x58\x91\xa5\x9e\x12\x5c\x01\x61\xa4\x9f\x58\x36\x09\x89\x78\x7d\x13\x1f\x4a\x38\xab\x14\x46\x12\x4e\xc0\xd8\xb6\xec\xf1\x4f\x02\xe8\x2f\x38\xa5\x24\xd2\xc0\xb9\xa3\x30\x24\xaf\x12\x78\xd5\x96\xdd\x46\xec\x48\xbc\x2d\x65\x42\xec\x75\x98\xc6\x7b\x2b\xdd\x1f\xec\x98\xb3\x90\x94\x41\x49\xa6\xac\x69\x9c\x77\x79\xab\x52\x9a\xbc\xae\x95\xa1\xfe\x0a\x91\xea\x11\x91\x80\x1f\x86\x36\x75\x2a\x5c\x79\x93\x4a\x01\x8c\xe2\xdf\x09\x16\x5b\x50\x12\x66\x4a\x0d\xd9\x3b\x62\x56\x69\x5a\x48\xad\xbe\xda\x10\xc3\x51\xeb\xd4\x98\x17\xe1\xef\x1f\x20\x41\x03\x20\xbd\x39\x28\xdf\x31\x21\x35\xb1\x6f\xc6\xe2\xe0\x76\xd0\x42\x0c\x40\x18\xfd\x3e\x76\x83\xd7\x65\x70\x43\x56\x77\x00\x46\xe3\xfd\xb6\x63\x00\x89\x34\x44\xfc\x5b\x35\xf1\x33\xf6\x6c\x88\x77\x08\x80\xee\xdf\xc1\xdf\xbd\x0a\x07\x01\x56\x7f\x07\x48\x3b\x6a\xd5\x0e\xf6\xe7\xf7\x99\x90\xa5\xfe\xa0\x22\xda\xe8\x4d\x09\x3a\xa1\x8c\xda\x94\x4e\xc8\x0b\x31\x7b\x64\x4e\xf6\xcd\x84\x77\x82\xf3\x9a\x25\x9d\x58\x82\xa0\x09\x5c\x08\x80\x26\xf5\x77\x91\x87\x69\xd1\xf3\x46\x2b\x5c\xdb\x35\xf3\x7c\x6b\xd2\x9c\x33\x58\x67\x53\xf8\x3f\x65\x66\xda\x8e\x8f\x27\x39\x65\xa4\xce\xb6\xa8\x1d\x95\xe3\x8d\x13\xbc\x41\x0f\x70\x9e\x21\x7b\x4b\x65\x9c\x67\x68\xf1\x63\xfd\xa6\xdc\x97\xb5\xae\x51\x60\x1e\x36\xf9\x7b\x53\xc6\x61\xe5\xaa\xf3\x60\x29\x23\x18\xd2\x94\xfc\x95\x32\x14\xf0\x9e\xc4\xb1\x33\x52\xba\x9b\x7c\xc4\x29\x33\x65\x5a\x3a\x75\x2a\x81\x21\x02\x51\x4c\x81\xd3\xcf\x6e\xf2\x54\x70\x48\xac\xe9\xf4\x5b\x2a\x08\xdb\x36\x1d\xb8\x49\x85\x76\x98\x4e\xcd\xa6\x82\x88\x53\x93\x9f\x3f\x95\xa9\xd9\xcf\x07\x1f\x38\x0a\x96\xa1\x25\x11\x66\xb9\x90\x3a\xb7\x55\xbd\xf1\xc0\x39\xa8\x63\xb2\x09\x61\xf7\xd0\xf2\x47\x3b\x4f\x15\x49\x9f\x23\x7c\xec\x89\x54\x33\x3a\x55\x62\x6f\xaa\x48\xfd\x6f\xf9\x63\x61\xa5\x8a\x08\x5e\xcb\x82\xa3\xc2\x26\x6e\x52\xe1\x53\x45\xe0\xa6\x59\xbb\x68\x88\x6a\xb7\x22\xe6\xd8\x10\xd5\x6e\xe5\xe3\x97\x48\xad\x15\x3e\xf8\xcc\xa5\x75\x06\x66\xc4\x7a\x1a\xd6\xa5\x15\x3f\xb8\x11\x0a\xd3\xf9\xf0\xd4\x6e\x60\xac\x48\x61\x6f\x9c\x7e\x11\xe8\xed\xb9\xf8\xe0\x33\x4a\x47\x6c\xa5\x95\x8f\x3b\x31\x75\xf8\xa7\x5f\x2c\xb2\x27\xda\xc7\xd2\xa5\x7a\xe6\x27\x12\x5d\xbd\x70\x2e\x9a\x6d\xaf\x84\x54\xc2\xae\xef\x38\x37\x2c\xa3\x35\x75\x04\xfe\x86\xbc\xae\xa9\x3f\xfb\xef\x82\xa0\x69\x40\x66\x3b\xc9\x2d\x0d\xc4\xa9\x5b\x8d\x3f\xc9\x6a\x4b\x03\x07\x71\x5a\x95\x64\x18\x3b\x8e\xe2\x29\xef\x36\x0d\xd8\xb5\x9b\xb1\xb7\x97\x93\x0f\x3e\xcb\xba\x93\x44\x5b\xd0\x1b\xf0\xad\x35\x39\xf3\xd3\xde\x71\xe2\xcb\xca\xfe\x7e\x72\x14\xf1\xde\x9d\x39\xda\x4a\xa1\x4f\x3b\x22\x74\x4d\x69\x35\x69\x47\x84\xae\x29\x29\x2b\xed\x37\x26\x2a\x97\x7e\xda\x9f\xc4\xed\xf6\xc1\xef\xb1\x11\x30\x21\x8b\x31\xfc\xa6\xcc\xbb\x74\x20\xe5\xb8\x29\x55\x2c\x1d\x48\x2b\x2e\x8a\x8b\xa4\x03\x67\x99\x9a\x8e\xf7\xa4\xa3\x11\x0e\x19\x46\x07\xa2\xe9\x4d\x07\xff\xd2\x01\xe6\xe2\x40\x5d\x3a\x3a\xfb\x10\x63\x3e\x10\x46\x6e\x3a\x9b\x93\x0e\x24\x09\x55\x33\xb9\x03\x71\xd3\x3a\xc4\x5a\x8f\x93\x7d\x88\x0f\x1c\x0f\xc8\xcb\xbc\xe4\x78\x70\xaa\xd2\x16\xd3\x89\x04\xdd\x3a\xa4\xab\x9f\x48\x50\x68\x72\x82\xa5\x13\xa3\xb4\xa1\x85\x3a\x11\x28\x6d\x56\x8e\x2e\xe4\x85\x37\xa5\x78\xa4\x0b\xc6\x6e\x1b\x1f\xb7\x6f\xba\x12\x69\x56\xeb\x72\x65\xc8\x61\xa9\xdb\x17\x4e\xa8\xb5\x21\xb2\xbf\x60\x75\xf4\x4d\x06\xf4\x85\x1c\xa7\x97\x64\xbd\xce\x15\x00\xff\xac\xc2\x35\x05\x4b\xe8\xf2\x66\xa4\x1b\xfc\xe9\xa5\x59\xde\x89\x93\x15\x5c\x37\x4f\x6b\xdb\x2a\xbf\x2b\x47\x91\x1d\x71\xe3\x60\x5c\x97\xcf\x35\xdd\x90\x1b\x5d\x3e\x99\xc4\x54\x8a\xbe\x89\xd7\xde\x3c\x54\xa5\x13\x11\x09\x69\x0c\xa1\x6f\x62\x69\x37\xcf\x43\xea\x88\x44\x42\x1c\x21\x74\xef\x1f\x7a\xa2\xeb\x90\xdc\x80\xab\x39\x74\x1d\x61\x49\xf0\x2d\x87\x97\x2d\x0b\xdf\x57\x78\x99\x44\x70\x6e\x85\x6c\x1b\x87\xce\x98\x1e\x34\xfd\xe7\x62\x1f\x62\x69\xcf\xb5\x70\xba\x3e\xc9\x5b\xe2\x27\x1f\xc3\x2c\x6f\x38\xe0\xd8\xe5\xe3\xcc\x1b\x8f\xb4\xea\x74\x78\x5e\xf5\x2a\xf2\x07\xb0\xcc\xa4\xf1\x2e\x37\x71\xe6\x11\xf4\xae\x1c\x98\x1c\xf2\x83\x07\x1f\x6e\x9c\x79\x0c\xda\xf9\x83\x39\x1c\x40\xa1\x84\x73\x0e\x07\x3f\xf9\xa4\x2c\x66\xa4\x31\x87\x1e\x3f\xf6\x55\x0e\xf7\xcd\x07\x1a\xe5\x61\xa7\x1f\x9c\x66\xa4\x16\x87\x2e\x79\x9e\xe3\xc6\x4f\x3e\xdb\x36\xf3\xe0\x64\x56\x26\x52\x8e\x6b\xb6\x1f\x6b\x27\xf3\xc4\x56\x97\x4b\x2f\xc7\x8b\x0f\xb2\x3e\x41\x52\x40\xd7\xb9\xe5\x9c\xa0\xdf\x74\x45\xb1\x32\xcc\x93\xd0\x25\x8b\x73\x42\xc6\x6d\x4f\x1f\xc3\x2f\x27\xce\x45\x47\x53\x73\xc2\xc6\xee\x3a\x57\x9a\x33\x6c\xc5\x2e\x92\xca\x99\xd5\x39\x5e\x6f\x40\x08\x74\x9d\x05\xc9\x19\x7c\xad\xeb\x18\x4e\xce\xe0\x6b\x5d\x67\x21\x73\xe6\xb9\x7c\xf9\x7b\x72\xc6\x11\xf9\xb6\x7d\xdc\x11\x39\xe3\xb4\x64\xcf\xaf\x07\x3b\x1f\x7c\x08\x26\x43\xe2\xf7\x5c\xd5\x29\x7c\xaa\x5d\xf2\x3c\xe7\x83\x93\x1b\x02\x9d\x1b\x39\x7f\xd4\xaa\x5c\x38\xb9\xf2\x61\xda\xb9\xe0\xfc\x56\x2f\x71\xfb\x81\xfc\xca\x05\xf6\x63\x56\x7e\x54\x2e\xc4\x6f\xd1\x2a\x96\xb6\x36\xe4\x67\xa2\x05\x87\x05\x9b\x0e\x9a\xe4\x72\x10\x04\x01\x59\x00\xf5\x08\xfe\xe4\x06\x99\x2b\xb8\x97\x0b\x65\x8f\xbc\xd9\xb9\x82\xd7\xf6\xaa\x15\xa8\x81\xf1\x6a\xed\x9d\x0a\xa3\xad\x2b\x22\x9e\x2b\x0f\xea\xea\xfc\x65\xae\x3b\xdf\xf8\x70\xf4\x5c\x57\xed\x9d\x8f\x84\xcb\x75\xe7\x28\xda\x2a\x0d\x94\xd0\xeb\x47\xc7\xc8\x8d\xb5\x49\x94\x27\x91\x1b\xc8\xbc\xb7\x4f\x86\x59\x6e\xac\x68\xa3\x04\xe0\x4c\x5d\xa7\x2b\xa9\x33\xf7\x80\x85\xd7\x01\x99\xdc\x59\x01\x45\x27\xe1\x73\x67\x2c\x59\xce\xbf\xdc\x33\xd6\x59\xe9\x0b\xb9\x43\x7d\xee\x0a\xe0\xe5\x01\xf7\x7c\x93\x8f\x24\x8f\x1b\x34\x2b\x5f\x42\x1e\x50\x6d\xfa\xf8\xa8\x9c\x79\x87\x9b\xa5\xcb\x59\x90\x77\xe4\xd3\x75\x49\xc9\xbc\x43\x27\xef\xb2\x8c\xf3\x01\xd3\x3c\xa9\x8a\x4a\x3e\xe0\x49\xed\x4a\xf4\xcb\x47\x5b\x6b\xfb\xe9\xf4\x80\x51\xd4\x95\x8e\x95\x8f\x93\x70\x88\x53\x1c\xd7\x7a\xe3\x33\x97\xe3\xa6\xf5\xf0\x31\xc4\xf2\x49\x25\x4c\xce\xcd\x7c\x46\xac\xbe\xb2\x37\xf3\x09\xc0\x86\xdc\x87\xf9\x3c\x19\x6f\x12\xfb\x39\x71\xe4\x6c\x6c\xc2\xd8\x79\x07\x7e\xf2\x79\x70\x81\xa7\x0d\xe5\x67\xe5\x0b\x72\x62\x28\x86\x92\xef\xdf\x67\x00\xe5\x7b\x43\x1e\xd4\xab\x4d\x2b\x47\xf8\xba\x37\x44\x01\x9b\x3b\x80\xd3\xbf\xf8\x77\x64\xed\x04\x77\x30\x10\xd3\xf5\xef\x88\xea\x7d\xbc\x37\xf9\xe6\xd1\xcc\xec\xf7\x29\x74\x5e\x0f\xae\xef\xaf\x54\xc4\xb9\xee\x0d\x71\xdd\x8f\x5f\x2c\xdf\xd8\x47\xcd\x02\xe5\x46\xde\x8e\xbc\xaa\xf9\x86\x42\xa2\x3c\x9f\x7c\x87\x35\x25\xf5\x08\x43\x25\x4b\x12\xdc\xa1\xa0\x83\xa8\x36\x02\x99\xc9\xed\x86\x44\x1d\x0f\x80\x44\x0f\x6d\xd3\x3b\x20\x8e\x35\xdc\xdf\x0d\x94\xf8\x7d\x64\x42\x46\xd1\xf1\x1d\x27\xd2\x87\x71\x14\x19\x39\xd6\x80\xb1\xbf\xd3\xb2\xf2\x0d\xaa\x6e\x4a\x30\xcf\x37\x52\x69\x36\xb1\xc8\x1b\x32\x24\x47\xad\xfb\x0d\x0b\xd8\x49\x87\xf9\x8e\x0c\x96\x0a\xcb\xb0\x88\x9b\xb2\xa8\xf3\x3d\x95\xb4\xbc\x79\x12\x70\x82\xa9\x68\x4b\xbe\xd3\x54\xd0\xc3\x66\x42\x40\x3a\x8c\x72\xc5\xf2\x9d\x68\x85\x7b\xa1\x40\xd0\x0a\x8f\xe5\x7b\x6a\x13\x71\x78\x61\x51\x81\x47\xde\x9b\x7c\x27\xc4\xb7\x87\x7f\x7f\x56\xf2\xd9\x6a\x67\x26\xa7\x09\x22\xa4\xaf\xc8\x96\xce\x37\x58\x4e\xd6\xf1\xb3\x7c\xe3\xa4\x4a\xcd\x42\x4a\xe6\x1e\x4c\x7e\xd0\x69\xf6\x69\xc8\x8c\x94\x32\x13\x6b\x9e\xb4\xa8\xac\xe1\x7c\x67\xb2\x06\x4d\x29\x23\x3b\xd4\x53\xc6\x29\xbe\x16\x73\xf8\x89\x64\xba\x4b\xf9\xfe\xaa\xd9\x6b\x52\x88\x51\x8d\x86\xb2\x36\x45\x7c\xf9\x9e\xda\x57\x0e\xde\xab\x28\x6a\x93\x4c\xe8\xa8\x69\xe3\xb4\xde\x7c\xc3\x0e\x0b\xe6\x20\x77\x59\x46\xab\xda\x98\x4f\xf1\xef\x88\x98\x46\x41\x50\x23\x52\xb2\xdc\x4e\xec\x50\x1d\x4c\x7d\x78\x3e\xd0\xa2\x54\x92\x6a\xd6\x22\x34\xd0\xba\x18\xe1\xdd\x10\x54\xee\x82\x11\xf5\x14\x86\xa2\x46\xf9\x66\x71\x04\x4f\x02\x99\xda\x59\x71\xed\x7c\xa3\x58\x42\x35\x4b\xeb\x11\x68\xd1\x22\xf4\xdf\xe5\x1d\xe6\xbb\x57\xec\x36\xff\x8e\x30\xb4\xb8\x28\x52\x9b\x63\x33\xe5\x4f\x0d\x3e\x07\x93\x51\x3f\x90\x64\xe9\xf6\xf9\xce\x63\xcc\x37\x6c\xb7\xfc\x22\x44\x64\x42\x07\xb7\xa1\x04\x45\xf3\x0b\x78\x92\x86\xc9\x90\x89\x05\xde\x8a\x83\x1e\x6f\x0d\xc8\x3c\x67\xc5\x22\x33\xf2\x9c\x63\xd8\x4c\x77\x63\x52\xc6\xbb\x3d\xd0\x16\xd2\x91\x4a\xb0\x49\xb2\xde\x88\xd9\x04\x49\xeb\x9b\x0a\x8f\x52\x87\xf2\x3d\x15\x0d\xa7\xdc\xe6\x7b\x07\x8e\x4d\xf8\x30\x4f\x2d\x33\xef\x9d\x20\xfb\xfb\x8a\x5c\x45\x4d\x01\x1e\xa8\xda\xb5\x86\xfb\xdc\x58\x5b\x13\x80\x08\xdd\x8f\xe6\xf1\x1e\xce\x50\x0f\xa6\x72\x90\x83\xf7\xc2\xd4\x23\xb3\xb5\xab\x7b\x9a\xc7\x59\x59\xc5\x79\x65\x2a\xbf\xb6\xf2\xb1\xbf\xb3\x4b\xf3\x8d\x82\x80\x4e\x79\xcf\x4c\x65\x6e\xb6\x4b\xee\x69\x73\xc6\x64\x98\xce\x69\xc6\x16\x23\xf5\x24\x4e\xd4\x23\x4d\xe5\xd7\x3a\x4f\x01\x9e\x75\x20\x30\x23\x91\x39\x87\xe0\xdf\x1b\x12\x06\xdd\x61\x67\x07\xee\x11\xf1\xf2\xea\x0e\x0e\xe6\x74\xab\x7d\xa1\x43\x4d\xe1\x04\xe1\x79\x67\x9c\x73\x3b\x17\xef\x56\x9c\x0d\xcd\xc9\xc2\x7a\xea\xda\x31\x98\xe5\xa2\xfe\xcf\x6b\x19\xa7\x39\x13\x55\x28\x21\x23\x07\x3a\xeb\x2c\x60\x46\x0a\x74\x2a\xd1\x03\x0c\xa4\x00\x69\x02\x74\x2b\xea\xa4\x58\xbe\x51\xfa\x27\xbc\x28\x71\xda\x47\xd5\x8b\x70\x61\x06\xd1\xef\x3f\x68\xeb\xf5\x7b\xcd\x40\x2f\xdc\xcc\x60\x16\x4a\xee\xc8\x01\x44\x08\x77\x42\x56\xab\xa6\x74\xcf\x45\xd9\x4c\x17\x50\xdc\x43\x15\x04\x37\x39\xda\xeb\x83\x83\x73\xd0\xa4\x6f\x60\x3d\x7a\x48\xa4\x79\x67\xb7\x17\xed\xaa\x4b\xfa\x61\xa4\x3d\xdf\x0f\xa5\x44\xd1\x17\x4f\x84\x70\xd6\xa4\x60\xab\x8e\xe0\xed\xf3\x14\x7e\x21\x3c\x3c\x95\xe6\x86\xda\x5c\x98\xfc\x23\xb9\xf3\x4c\x29\x17\x65\x11\xdc\xcf\x09\x1c\xba\x73\x32\x34\x6f\xb6\xe7\xe6\x8c\xb4\xce\x0f\x79\xb2\xb6\x1f\x12\xcb\x7b\x92\x46\x83\xc4\xf2\xa0\xdc\xa3\x8c\xc4\xf2\xd9\x43\xd7\x03\x84\xd4\x5e\x2f\x2c\xb4\x0f\x3d\x18\x98\x91\x5f\x40\xa0\x40\x7b\x01\xd9\xdf\x13\x04\x0f\xb9\x14\x49\x7f\x01\xcf\xa8\x14\xcb\xe7\x53\x8f\x52\x6d\xec\x0e\x19\xe2\xc8\xff\x4e\x3a\xb8\x91\x91\xff\x1d\xaa\x68\x17\xf9\xdf\x31\xa8\x04\x44\x7e\x42\x21\x08\x1a\x31\x30\x32\x51\xdc\x25\x19\xf5\x70\x1f\x4b\xda\x09\x88\xc0\xa3\x1e\x42\xe4\x34\xcb\xb3\x22\xfe\x19\x49\xde\x49\x3e\xf5\x8c\xa4\xe9\xd9\x81\xf0\x10\xa9\x92\x88\xeb\x20\x2d\x3a\xa9\x16\x5e\x46\x5a\x74\x96\x2f\x36\x33\x2d\x7a\x28\x4d\x22\x23\x0f\x7a\x02\xe9\x2f\x90\xe7\x25\x71\xf3\x2c\xd5\xcf\x40\x52\xf5\x13\x1b\x41\x26\xf4\x9c\xb7\x66\x85\x7a\x8c\xc5\x40\x22\xc2\x99\x8c\xfa\xb4\x83\xcf\xf8\xf7\xb5\x98\x7e\x80\x54\x60\xaf\x25\x02\x9c\x8a\x79\x64\xa6\x42\x37\x1d\x23\xcc\xcc\x7d\x0e\xd6\x5f\x91\xec\x3c\x1f\xa8\x0b\xa8\x8b\x9b\xb6\x10\xb2\x99\xe3\x10\x91\x23\x9b\x39\xbf\x30\x0d\xe5\xb0\xda\x3e\x65\x3a\x73\x4e\xe2\xdf\xc8\x4f\x0e\x72\xa8\x65\xe4\x27\xa7\xad\xb9\x07\x64\x0d\x68\x5f\x21\x3f\x39\x9a\x35\xad\xfc\x64\x53\x4b\x59\x20\xab\xc3\x02\xde\xe5\xa5\x2c\xd4\x70\x25\x72\x56\x86\x72\xf6\x08\x28\x17\x20\x86\x0f\xcf\x62\xd6\x29\xa1\x8c\x0c\xe5\x89\x36\x8f\x30\x60\x5c\xf9\x05\xe8\x3e\x52\x88\x91\xa2\x9c\x55\x93\x28\x3f\xd4\x28\xb3\x21\x22\x2f\x34\x40\x93\x7f\x97\x6a\x80\xe0\x73\x6d\x1e\xa0\x2e\x06\xae\x11\x96\x4a\x29\x99\xf1\xd0\x19\xac\x93\x38\x19\x59\xc4\xd9\xe6\x38\xb2\x88\x67\x9f\xc2\x73\x65\xde\xb4\x94\x05\xa4\x02\xc7\x60\x4d\x19\xb9\xc0\xd9\x36\x26\x72\x81\xb3\x4d\x6d\xe4\x02\xcf\x0f\xd4\x25\xe2\x13\x76\xe3\xc1\x01\x9b\x8a\x89\xa9\x41\x94\xcb\x44\x44\x2e\xef\xec\xc0\x0f\xa8\x8b\x47\x0f\x09\x4c\x26\xf7\x08\x76\x25\xd5\x9a\xd9\xba\xf6\xac\x22\x3b\x77\xf6\x28\x54\x76\x9a\xb1\xa6\x06\xb8\x9e\x8b\xf4\x62\xe4\xe7\x86\xa1\x7c\xa5\xcc\x04\xdd\x16\xbd\x1a\x1d\x50\xcb\x27\x83\x8c\xdc\x2c\x1f\x7a\x66\x46\x6e\xb0\xea\x8b\x94\xdc\x97\x27\x12\x29\xb9\x59\xd5\x1f\x32\x52\x72\xe7\x07\xc2\x4b\xe7\x81\xa4\x9f\x64\xdc\x65\x24\xec\xce\xaf\x3d\x03\x2c\x93\x7c\x0f\xc8\xd8\x9d\x2f\x68\xe9\xa7\x26\x9d\xed\xef\x40\xca\x6e\x57\x06\x7f\x46\xca\xee\xfc\xc0\x0f\x90\xc5\x67\x52\x19\xc4\x80\x70\x88\x7c\xa8\x6c\x23\x14\x49\xba\xd9\x7e\x3d\x24\xe9\xce\x1e\x3d\x24\x50\x62\x82\x46\x88\xbf\x5a\x6e\x0d\x32\x05\xb7\xc9\x9f\x2d\x46\x90\x96\x1b\x82\xb9\x27\xd3\xf0\x2c\x56\xe0\xe4\x4b\xe6\x7d\xfb\x81\x3d\x25\xac\x40\x77\x6e\xee\x10\xba\x73\x91\x36\x81\xb4\xd7\x30\x2c\x42\x8e\x45\x38\xea\xf0\x28\xe0\xce\x02\x11\x79\xab\xc3\xa2\xf5\xa0\xd3\xc8\x3d\x1e\x44\x82\xd7\x1d\xee\xcf\xac\xaa\xbe\xf9\x39\x60\x08\xbb\x4d\x97\x99\x57\xf6\x04\x27\x93\x5e\x87\x54\xd3\xf0\xc2\xe2\xb9\x48\xd5\x1f\x54\x0e\x29\xa0\xce\xce\x07\x5a\x5a\x9c\x5b\xb7\x1f\x9d\xc9\xa5\xc9\x32\xe5\xa4\xde\xe6\x69\x9d\x24\x56\x73\xcf\x13\x89\x6a\x66\x1b\x54\x9f\xbd\xe9\x4f\x6a\x39\xd6\x41\x2e\xb0\x0d\x63\xfe\x02\x39\x1a\x91\xd7\xc2\xb4\x60\xbc\x18\x30\x30\x01\x5f\x30\x09\x2c\xc7\x50\x4e\xb3\x5b\xe8\x5c\x20\x3f\x0b\xce\x0b\xfc\xd8\x5b\xfa\x02\x17\xb1\xb0\xbf\x38\x27\xb3\x99\xa9\x4f\xa7\x6a\x86\x4c\x05\xda\xc4\x34\x15\xe8\x56\x4d\x1c\x37\x8c\x1a\x77\x48\xfd\xd9\x1a\xf8\x33\xf5\xe7\xd4\x5e\x1d\x50\xc7\x31\xde\x6f\xa4\x9d\x1b\xc4\x1b\x23\x7a\x25\x1f\x6e\x62\xe9\xcb\x0f\xd4\xdf\xd4\x3c\xe9\x87\x68\x93\x35\xf8\x3c\xf0\xec\x98\x0f\x4c\xf5\x37\xe5\xe1\x2e\xb1\x8b\xab\x3b\xe8\x38\xa4\xab\x49\x30\x04\xfe\xfa\x7e\x61\x49\xbb\x7c\x69\xb8\x96\x73\x0f\x96\xde\x5b\xe4\x41\x19\x9f\x8f\x11\x50\x58\x29\x6b\x93\x83\xad\x20\x3d\x78\xee\x91\xa4\x07\xf0\x3a\x14\xbf\x40\x18\xbb\xda\x8d\x30\x64\x3d\x80\xdb\xe1\x63\xb9\x94\x0d\x8e\x52\x1b\xe5\x65\xdb\xa8\xea\xf9\x05\x2a\xb8\xc5\x3d\xcc\xb5\x96\x90\x2a\x1b\x14\xdc\xaa\xf3\x37\x65\x9b\x1a\x6e\x91\x23\xb3\xa0\xa2\xd7\x9c\xb6\x80\x0c\x20\xe0\xcf\x16\x29\x48\x72\x4e\xaf\x49\x04\x9a\xb4\x1f\x95\xa6\xa0\xb0\x57\x56\xc2\x69\x41\x29\xaf\x30\xaa\x47\x58\xb3\xf4\x0b\xd4\xa2\xba\x80\xa6\x06\x5c\xdd\x23\x29\xdc\xbf\x53\x15\xfc\xe8\x2c\x85\x35\xbf\x5a\x34\xa2\xc2\xc5\x31\x0c\x35\x52\xcf\xba\xc7\x84\xde\x15\x7e\x12\x1e\x2a\x5b\x24\x0a\xd4\x3b\xf2\x13\x93\xe1\xc5\x29\x49\x5d\x9c\x50\x36\x9c\x92\x1c\x45\xab\x14\xb9\xee\x5a\x67\x64\x27\xd6\xe6\xef\x29\x61\x92\x26\x1c\xb1\xc5\x5f\x1d\x40\xbd\xa9\x5a\xb4\x48\x84\x78\xc0\x03\xc7\x4e\xfd\x3b\x2d\x04\x0f\x30\x55\xb0\xcd\x4b\xc4\x5c\xa7\xe4\x55\x4f\x6b\x03\x0a\x44\xea\xf3\xc1\x20\x7d\x12\x53\xd4\xe6\xc1\x3d\xf7\xb0\xd6\x44\x18\x46\x66\x74\x32\xa1\x21\x72\x55\x9b\xf7\x4b\x26\x16\x45\x48\x19\xee\x9a\xea\xf6\x02\x41\x43\x64\x68\xae\x5d\xb3\xa6\x36\xde\x44\x05\x19\x58\x33\x5a\x33\x6b\x2d\xf9\x77\xee\x9e\x64\x90\xd6\x6e\x31\x48\x34\x19\x9a\xdf\x80\xcc\x0a\x9a\x54\x01\x77\xf7\xef\x65\x11\xbf\xc6\x2c\x58\x6a\x13\x22\xfc\xb5\x0a\x0f\x97\xad\xac\xa5\x76\x0f\x94\x9b\xc6\x1b\xd5\xeb\x26\x98\xa6\x3a\x9d\xb6\x57\x8f\x0f\x81\xd6\x07\x95\x6b\x97\x84\x17\x9c\xe1\x1b\x2f\xf2\xa8\x0b\x4a\xf5\x59\x19\x89\x14\xd4\x95\xde\xc3\xe4\x07\xdc\xa3\x49\xcb\x5d\xa9\xab\x26\x77\x01\x12\x6b\x1e\x83\x3b\x2e\x69\xf9\x1a\xd7\x5f\x3d\x2c\xfd\x39\x6b\x39\x1a\x0b\xb7\xf9\x03\x9c\x2d\x8e\x9a\x28\xf4\xe9\xcd\xb8\x6e\xcc\xe5\x11\x8c\x2b\x6e\x65\x92\x6c\x5c\x7f\xb7\x51\xcd\xce\x8b\xd7\xb9\x78\x1a\x70\xa9\xcf\x59\x34\x4e\xaf\x70\x77\x9b\x0a\x46\xd6\x90\x9d\xb6\x91\x67\xdd\x49\x52\x59\x68\xe9\x90\xad\xa6\xfa\xbe\x54\x3b\x0f\x4a\x85\xc1\xab\xb5\x14\x58\xb3\x68\xc6\xc3\x8b\xf0\x40\xfd\x74\x08\x6f\x83\x7a\x50\xf7\x83\xb5\x7a\x9a\xf8\x80\x1e\xe4\xe5\x9e\x0a\x6a\xca\x66\xe1\x03\x24\xf6\xea\xe0\x20\x08\x7e\xe1\x64\x8f\x82\x7a\x69\xa8\x55\x9f\xec\xa4\x31\xf3\xe8\x7d\xd1\x98\xa6\xb1\xd3\xaf\x67\x6c\xee\x8c\x34\xb8\x7d\xc1\xae\x14\x94\x07\x5d\x5e\xc6\xdd\x01\xe7\xe9\xab\x0d\x06\x61\x1e\x7e\x40\xd0\x74\x21\xea\xa0\x0f\x42\x30\xe2\x6c\x55\xf6\x24\x96\x8a\x6a\x79\x7c\x90\x66\x2d\x58\x98\x68\xb0\x09\x0f\x27\xd7\xc6\x0c\x82\xfe\x5c\xb3\xa0\x93\x5e\x38\xb3\xc1\x93\x96\xa9\x81\x3c\x51\x48\xed\xf5\x02\xfd\x20\xaf\x2e\x88\xeb\xfc\x33\x51\x84\xe3\x4e\xf1\x05\x21\x39\x96\xa9\x03\xe7\x9d\x74\x80\xba\x6c\xf0\xe7\xd6\xe6\xf1\x10\x21\xae\x43\xcb\x70\xd1\x1e\x32\x3f\xb9\x38\x85\x21\x90\xaf\x82\xa2\x04\xee\x01\x3c\xcd\x3b\xfb\x42\x28\xf2\xf5\x3e\x4b\xee\x6d\x7e\x01\xa7\x56\xbd\x93\xe9\xc1\xf5\xce\xbf\x68\xee\x78\x93\xdc\x24\x05\x0b\xb4\xa5\x72\x9a\xfe\x6e\xd0\x82\xc7\xbc\x33\x5f\xd0\xb4\x6e\xec\x65\xe3\x85\x09\x0b\xc9\x9b\xfd\xc6\xd1\x53\x2b\x5f\x37\x63\xeb\x16\xb2\x37\x7d\x39\xd9\x63\xc0\x91\x61\xcc\xdd\x98\xc6\x0b\x48\x6e\xed\xac\x07\x70\xea\x16\x15\x63\x2d\xdb\x43\xbf\x9a\x19\x2f\x8b\x6f\x34\x93\xcb\xc3\x6d\x64\xe4\x3e\xdc\xfd\x1a\xf4\xe1\xbc\x44\x91\x0f\x79\x94\x09\xec\x81\xae\x30\x3c\x04\x59\x94\xe7\x05\xd7\x6e\xf5\xea\x3c\x6b\x6f\x7f\xba\x64\x8d\xcf\xfa\x31\xab\x0a\xf3\xb5\xaa\x6e\xfe\x29\xbc\x5f\x48\x67\x1d\x0a\x6f\x13\xaa\xba\xfe\xa1\xf0\x36\xa1\x21\x05\xbf\xf0\x36\xa1\x2c\xe7\x5c\x09\x74\xdd\x0e\xbf\x40\xf5\x41\x8c\x34\x2c\x3d\x54\x6c\x11\xd7\xfc\x44\xeb\x17\x01\x6a\xa6\xca\x60\x96\x80\x08\xbd\xb2\x16\x0a\xea\x86\x66\x15\xaa\x2a\x61\x65\x57\x78\xc8\x40\x3b\x2a\xa9\x4d\xf6\x60\x3c\x40\xed\x8c\x1f\x7f\x4d\x09\x4b\xed\x14\x9b\xc4\x9d\x3e\xf3\x81\xe6\x0d\xad\x52\xb9\x5f\x05\xb5\x4a\xb3\xca\x41\x95\x10\xb9\xd7\x44\x74\xb8\x5c\x27\xa9\x9a\x6a\xe1\xdd\x39\xc1\x0a\x06\xae\xca\x99\x0f\x84\xb8\x14\x51\xfa\x4c\x3d\x24\x72\x20\x69\x39\xb8\x2b\x67\x7e\xa1\x3e\xd3\xca\x41\xf7\x1b\x0d\x50\xf9\x05\x52\xbe\xd4\x43\xdc\x8c\x33\xbb\x10\xaa\x12\x31\x61\x20\x0e\xb4\x85\x08\x84\xe5\x95\x3e\x55\x78\xa5\x8d\xca\x80\x94\x40\x47\xab\xb5\x05\xde\x6a\xa3\x4a\xb5\x85\x97\xda\xe8\xc6\x82\xc2\x3b\x6d\x92\x67\x9d\x51\x56\xc1\x8b\x8d\x30\x7d\xd5\xf6\x47\xc2\x60\x6c\x5e\xfc\x4c\x0b\x42\x68\xcc\xf0\xc8\x0c\xb7\x59\xcc\xd9\x00\xb2\x2e\x8c\xfb\x87\xff\xc4\xb4\x92\x59\x29\x29\x1b\xc0\xb5\x50\xea\x01\x8e\xdb\x68\xda\x28\x11\x3d\x0a\xa2\xc2\xa5\x97\xf6\x81\x3b\x6c\xb2\x6a\x76\x15\x96\x89\xad\x4a\x3a\x2a\xb8\xb1\x66\x3e\xf0\x1b\x74\x6f\x74\xf7\xb9\xa3\xfa\x8c\xdb\x27\xcb\x15\xa8\xbd\x18\x92\xc6\xac\x8c\x32\x99\x7a\x2a\xa1\x14\x5e\x2a\xb9\xcd\x4f\x62\x44\x05\x17\xcd\xb8\xd8\x4e\xe1\x3d\x33\xc1\xfa\x13\xee\x99\x09\x38\x5c\xfb\x79\x80\x65\x12\x47\xc5\x3d\x32\x2e\xcf\x53\x78\x8f\xcc\x10\x7b\xc4\x35\x32\x79\xf3\x8e\xac\x28\xcf\x63\xce\xd4\x28\xcb\xf4\x3e\x53\xc6\x93\xe9\xa0\xd1\x04\x97\xf6\x1c\x96\x93\x56\x10\xe1\x46\x18\x5d\x73\x51\x02\xf3\xb2\x65\x84\xe0\x3e\x98\x24\x7f\x50\xe1\x85\x30\x6f\xb6\xd3\x98\x9a\x69\xd2\x6a\x4c\xa6\x13\xcc\x8d\x1e\x4c\xa9\x29\x01\x6a\xa8\x8e\xed\x96\xd0\xe3\xbb\x26\x51\x09\x7d\x4d\x42\x43\x2c\xa7\xad\x99\x42\x07\xe2\x8b\x7b\xe0\xa5\x00\xfe\x00\x55\x91\xa2\x47\x84\x08\x90\x3d\x10\x50\x97\xad\x25\x73\xb6\x0e\xf2\x8f\xee\x00\x8a\xd1\xeb\xf7\x35\x07\x43\x80\xba\x48\x51\xed\x81\xba\x11\xb2\x0e\x02\x9c\xb0\xca\x0e\x2c\x28\x69\x9c\x74\x0c\xbf\xa0\xa6\x71\x56\x2a\x60\x09\x83\x69\x2c\xee\x8f\xa7\x51\xcc\x71\xe0\x63\x7d\x31\x6f\x1e\x20\x75\x87\x70\x90\x16\x73\x24\x38\x48\xb3\x5c\x4e\x25\x20\x3b\x21\x26\xb7\x17\x96\xdd\x43\xfe\xfe\x6a\xdd\xb4\x85\xca\x05\x36\x57\xc3\x5e\x01\xb2\x96\x09\x95\x0a\x74\xa4\xa4\x84\xa9\xde\x26\x2b\x20\x01\x87\x2e\x5a\x32\x53\x44\x7a\x82\x12\xb4\x4a\x80\x3a\xab\x2c\xba\x82\x0c\xe6\x68\x8b\x3b\x1c\x10\x68\x26\x4d\xb8\x60\xbb\x67\x30\xd5\xdb\xbc\x99\x81\x1c\x8b\x8d\xbb\xc3\x9d\x0f\x34\x85\x83\xaa\x66\xf1\x10\x28\x7f\x25\x0d\x39\x1c\xf0\x92\x18\xcb\x07\xb9\x9c\x3c\x1d\xb8\x8d\x68\x3e\x50\x97\x27\xbd\x97\xe6\x73\xac\xcc\x66\x31\x7d\x62\x16\x16\x89\x70\xda\x66\x2f\xec\xb9\xa0\xf6\x07\x20\x5e\xe9\x69\xe1\x64\x28\xc7\x9b\xfc\x3c\x20\x0b\x34\xef\xa9\x40\xa7\xe1\x59\xb2\x22\x40\xf5\xef\x34\x98\x2d\x7c\x98\x23\xf9\xe2\xdd\xd7\x9a\x95\x60\x60\x8e\x83\xf5\x7c\xdc\x71\xe4\x40\x72\xe1\x8d\x46\xe3\xc5\xea\xe0\x74\x8d\xe6\x6c\x17\xca\xcd\x1a\x71\x17\xb3\x67\x04\x24\xcf\x4e\xbd\x38\xd5\x45\x28\xcd\x26\xee\xed\x5d\x7a\xac\x84\xa9\x13\xa7\xe6\x2d\x75\x53\x75\xf4\x16\xb8\x17\xd0\x9a\xd6\x0d\x54\x9b\xd1\x40\xe3\x1d\x96\xca\x37\x31\xed\x0e\x50\x3c\xcd\xe2\xe4\x46\xcc\xdf\x42\x1a\xfa\x6f\xb4\x46\x76\x53\xfd\x91\x3d\x15\x1e\x82\xac\x0f\xa0\xee\xea\xee\x81\x12\x9e\x85\x67\xd1\xdb\xb3\x36\xa1\x1f\x30\x7a\x59\x7e\x26\x80\x9e\xf2\xae\xc6\x56\xc2\xc3\xf3\x2f\x9a\xd0\x43\x2f\x86\x35\x1f\x38\x81\xa3\x89\xf3\x41\x76\x9c\x31\xf2\x30\x3e\x20\x1c\x3f\xf0\x9e\x7a\x95\xe1\x02\x56\xf2\x4d\x41\x25\x73\x97\x7f\x2b\xa8\x5d\x1e\x8b\xde\x8f\x1b\x64\xbc\x98\x10\x8b\x99\x0f\xf3\x51\x14\x33\x4f\xca\x17\x2a\x38\x70\x10\x95\x03\x55\x22\x6f\xe1\x14\xad\xb3\x78\xb9\x32\x65\x0b\x6a\x97\x67\xe5\xce\x94\xc8\xfa\x75\x5a\x11\xd4\x2e\x0f\xaa\x0f\x53\x22\xf3\x5c\x95\xdd\x53\x58\xbd\x3c\xeb\xb2\xc6\x12\xa9\x56\xcb\xfb\x10\x71\xda\x5b\x19\x0f\x25\x32\x7f\x41\xd9\x35\x25\x22\xf3\x55\xc7\x43\x4b\x0c\xd4\x52\x86\x5f\xb8\x40\x86\x82\x39\x92\x0a\x24\xf5\x63\x64\x2e\x81\x5f\x40\x4d\xb1\xe0\xdf\x2b\xb1\x96\xf5\x00\x0a\x6c\x71\x7b\xed\xc6\xa2\x07\x03\x09\x85\x02\x1a\xfe\x52\x85\x8b\x4b\x5c\x19\x12\xc6\x73\x24\xde\xd4\x4e\x58\x58\x83\x88\x3a\x70\xd1\x58\x4a\x6b\x21\x05\x73\x62\x3e\xb0\x5f\x00\xe9\x49\x44\xa3\x4e\x45\xd0\xbd\x2c\x05\x75\x2a\x72\x7c\xfd\xce\x6c\x07\xf7\x47\x05\xd5\x6d\xba\x2a\x45\xca\x91\xa9\x0a\x62\xf6\x28\x24\x91\xbd\x79\xe3\xf2\x9e\x4a\x2f\x89\x19\x61\xa4\xe8\xf6\xaa\xd6\x2a\x10\xe8\x1e\xcd\x7e\x61\xae\x5b\x33\x12\x33\x64\xbe\x8c\xf4\x48\x05\x56\xca\x1a\x2f\x43\x6b\x4a\xf8\x29\xb8\x0c\x2d\x55\x2f\xdb\x47\xa1\x15\x12\x96\x42\x3b\xfc\x06\x25\x96\x69\xa7\xf0\x1a\x38\xc1\xc0\xc3\x8f\x66\xc4\x11\x57\x5e\xd8\x29\x88\xcb\xd0\x72\xf4\x8e\x2c\x94\x60\xe2\x09\xbc\x0b\x6d\xbc\x96\xb6\x2e\x4d\x41\xf3\xe2\xd1\x22\x79\xcb\x70\xc4\x27\x3a\x5c\x81\xab\xd1\x52\xf2\x10\xcb\x79\x6a\xd4\x23\x19\x21\xbe\x3a\x00\xf5\x55\x83\xb0\x26\xe1\x07\xb4\xc0\xbd\x56\x95\x69\x47\x7a\x01\x75\xc9\x8a\x67\xdd\xa0\x5e\x79\xd6\x8d\x77\x86\xba\x0d\x72\x95\x99\x89\x3b\xcd\x72\x34\xf5\xa1\x2c\x99\xb5\xdc\x48\xad\x57\x19\x17\x05\xd7\x91\x65\x45\xdb\x4a\x6c\x58\x7b\x7f\xd0\xe9\x18\xf3\x52\xf6\xc5\x58\x34\x24\xeb\x07\x4b\x20\xf2\xee\xb1\xa6\xf4\x9d\x12\xfb\x22\x50\x3f\xe0\xf1\x23\x77\xd9\x01\x83\x90\xd0\xb1\xa9\xbd\x07\xfb\x22\x16\x7f\xb0\xf6\x88\xdf\xe0\x2c\x44\x4d\xd4\x4a\xa5\x6a\xa0\x74\x4a\xb6\xb7\x9f\x67\xb7\x72\xaa\x3f\x49\xcd\x2e\x28\xac\x92\x1d\x73\x8a\x4b\x67\x95\xb8\x43\x5d\x94\x18\x6c\x2b\xa0\x2e\x8a\xab\x83\x16\x94\x45\xe9\xc9\x9b\x7e\x30\x2a\xaf\x19\x43\xa9\xb5\xbf\x01\x35\x4f\xb2\x4e\xe6\x97\xc8\x03\xa0\x2a\x7f\x56\x70\x63\xc1\x1c\xd1\x0f\xea\xf7\x57\xd7\xe5\xbe\x25\xee\x8d\x2f\x68\xca\x3b\x0a\x70\x4a\xe9\x44\xd5\x94\x64\x8f\x68\xe4\xb5\x4a\xd2\x10\x59\x05\xa5\x18\x65\xb8\x65\x29\xd8\x35\x10\x0f\x9c\x11\x30\x13\x80\x93\xf6\xc5\xc8\xa8\xd5\x4a\xcd\x89\x07\x2d\x75\xad\xc9\x01\x53\xc4\x22\x94\x3e\x5a\xfb\x12\xe2\xb1\xce\xe9\x7f\xda\xe7\x86\x29\xba\x8d\x45\xb6\x88\x45\x05\xab\x66\xd2\x3e\xb9\x9d\x2d\x6e\x4e\xc4\x19\xa4\xc8\x47\xa6\x15\xd8\x74\xc7\x25\x6b\xce\x02\x2e\xbc\x63\x2d\x2b\x7d\xae\xe0\x8e\xb5\xa4\xc3\xd3\x85\x97\xac\xb5\xf4\x7a\xc0\xec\x23\x53\x26\xb2\x72\xad\x1e\x46\x78\x6d\x83\x1d\x10\x91\x69\xb8\x9b\x07\xbd\x58\xa9\xd4\x6c\x08\x77\xb6\x04\xeb\x16\xcc\xd3\xb5\x43\x21\xc2\x6d\xfb\x42\xdc\x45\x2f\x9d\x45\x39\x32\x75\xa3\xa5\x26\x2f\x73\xf3\xbc\xaf\x81\xea\x89\xfe\xfd\x00\xa6\x3d\xc0\xc9\x11\x85\xea\x0b\x92\x3e\x7b\x12\x60\xc6\x96\xb2\x17\xa2\x69\x26\x26\xaa\xb8\x96\x69\xeb\xac\x92\x21\x84\xdb\xb7\x9a\xfd\xc3\xeb\x6b\xdf\x79\xbc\xb9\x01\x34\x00\x55\xe0\x68\x46\x79\xc3\x68\xeb\xee\xa0\xb1\xb2\xb4\xda\x9d\x1f\x68\x8e\x37\x93\x2f\xbd\x27\x6f\x6e\x62\xd3\xcf\xbd\x66\x2d\x20\x1e\x7a\x2a\x2d\x10\xe8\xe5\xb5\x2b\x32\x32\x79\xc1\x8c\xea\x61\x55\x60\x41\xf1\xac\xa5\x13\x98\x54\x6c\x2d\xa3\x9e\x45\x92\x82\xea\x21\xc3\x36\x2b\xa0\xe6\xea\x89\xe1\x4a\x84\xda\x3c\x0f\x7a\x79\x2d\x94\x1e\x1c\xe3\xd0\x90\xac\x56\xa4\xf2\xd8\x25\xe1\xd0\x97\x0e\x9b\x17\x9c\x49\x4d\x51\xee\x2b\x54\x33\x9a\x93\x0c\x7a\x00\xad\x2d\xfb\x05\xa0\x5e\x82\x17\xc5\x8b\xa6\xc5\xe3\x0f\xc0\xdf\x85\x15\x14\x22\x8a\x21\x8a\x7f\x26\x16\x67\x1e\x06\xe1\x41\xf1\x64\xfd\xce\x62\xcc\x9a\x62\x0a\x0b\xef\x51\x0f\x12\x7b\xd4\x90\xf0\x11\xbf\x40\x80\x32\xeb\x98\x00\x4a\x17\x25\xdd\xec\x50\x12\x75\x59\x7b\x52\x12\x7d\xc4\xc5\x2f\xa0\x1e\xf3\x6b\xc4\x83\x1f\x08\x8d\xc8\x4c\xa8\xfd\x05\x34\xb4\x2a\xe3\x11\x07\xc1\x82\x5d\x25\x09\x27\xc1\xc6\x64\xd1\x3f\x10\x42\x09\x05\x9b\x2d\x66\x53\xa4\x47\xac\xa9\x9d\x00\xa0\xe0\x99\xba\x76\xd7\x4d\xcf\x05\x95\x93\xe6\xf0\x7e\x80\xfa\xab\xda\xa3\xac\x84\x34\xcc\xe0\x71\xc5\xa0\x4f\x50\x95\xc4\xd4\x01\x5d\x11\x57\x50\x2a\xc9\x27\x8c\x0a\x4b\x25\x8d\xf8\x7a\x40\x98\x84\xc4\x44\xc5\x51\xae\x15\x94\x46\xf2\x61\x99\x82\xe2\x47\x29\xcb\x5e\x67\xf1\x23\x5d\xf9\x54\x50\xfb\xe8\xa5\xea\xa2\xf6\xd1\x04\x49\x58\x49\x6b\x12\x1e\x92\xa6\x6b\xf5\x83\xb9\x1d\x5e\xeb\x96\x37\x80\xa0\x21\x73\x78\x17\xea\x2e\xa8\x95\x14\x9a\x53\x50\x70\x22\x3b\x36\x93\x56\x06\xa9\x05\xff\xce\xca\xdf\x9a\x23\xd4\x71\x5d\xad\x59\x58\x5c\x69\x98\x14\x33\x2b\x7f\x6b\x0a\x28\x8c\x9c\x5f\xfd\x31\x18\x51\x0d\x21\x9d\x3b\xda\xe1\xa8\xbe\xe4\xfc\xfb\x82\x6a\x4b\xc9\xc1\x09\x54\x5b\x8a\x2a\x86\x5b\x12\x33\x89\xa5\x8c\xb3\xd6\x52\xf5\xfe\x44\x29\x63\xeb\x84\x09\xda\xfb\x90\xe1\x97\x98\xc9\xa0\x43\x95\x25\xc1\x3d\xad\xec\xbb\x92\x0a\x37\x47\xf2\x83\xf3\x5d\xed\xbc\x24\x28\xef\xd6\x8b\x13\x32\x1b\x9a\x77\xd7\x52\xd5\xa5\x86\x26\xa8\xea\xb5\x1b\xeb\x48\x6c\x18\x8e\x4c\xa4\x55\x9d\x41\x30\x55\x32\x4e\x03\x59\x7f\x57\x61\xbd\xa4\x4a\x34\x7a\x9a\x75\xd1\x8e\xa0\xac\x84\xd2\x43\xa0\x66\xa2\x29\xa1\xad\x6b\x20\xd5\x5e\x77\xdb\xab\x1d\xb1\x05\x35\x62\x63\xde\xa3\xb0\x02\x9f\x75\x35\x65\xc0\x65\x3d\xbc\xbf\x1a\x8e\x9a\x9a\x4d\x36\x96\xd4\x14\xd6\x78\x5a\xee\x0d\x00\xd5\x11\xe3\x1d\x79\xc6\x4a\x11\x2f\xa8\x81\x15\x92\x6e\x41\x2f\xa9\xad\x2a\xe2\x1e\x03\xb5\x28\xe5\xdc\x4c\xf0\x59\x27\x33\xd6\x4e\x4e\x6b\x62\xea\xa8\x13\x2d\x7b\x38\xf1\x6e\x10\x4b\x62\xde\xf9\x19\xec\x7b\x4c\xa8\x5b\x98\xbd\x72\x3c\xf1\x66\x95\x08\x85\xb5\xb2\x95\x5d\x14\xd2\x4a\xc3\xf4\x3a\x38\x6f\x6f\x19\x54\x08\x19\xde\x21\x48\xbb\xad\xdd\xf4\x04\x7d\xbb\x5b\xc0\xec\xd8\xf4\x66\x02\x28\xa4\x13\xec\xbc\x4c\x4b\xe1\x36\xae\x77\xec\x72\x73\xcf\x9d\x30\x0a\xa6\x1d\x87\x1c\xcc\x8e\xa1\x6e\x6f\x36\x49\x78\xf5\xd6\xb0\x0e\x95\x78\x8d\x47\x7a\xbd\x81\x1a\x9d\xdd\x30\x80\xfc\xa4\x07\x26\xa6\xf2\x5a\xe7\x41\x7d\xaf\xec\xe8\x2c\xeb\x79\x39\x1a\x9f\x58\x5e\xc1\x62\xf3\x58\x93\x52\x8f\xcc\xa3\xf8\xd9\x09\xd5\x92\x8e\xfa\xbe\x82\xa0\xa4\x63\xed\x30\x3f\xa0\x10\xb5\x8c\x3a\xd6\x9c\x85\xb5\x83\xca\x8a\x5f\xa0\xce\xef\x2d\x80\xd2\x2e\xcd\xf9\x28\x89\x37\x86\x58\x2b\x4b\x74\x4c\x37\xb7\x21\x63\x2c\x52\xce\xfe\xbe\x18\xa1\xa4\x93\x0b\x21\x3b\x23\xd1\xcd\x2c\xbf\x17\x8a\x96\xa5\x2e\x6b\x13\x45\xcb\x62\x33\x5b\x80\x97\x39\x9b\x3a\x71\x1b\xac\xe3\xd7\x69\x69\xf4\x8a\x78\xa3\xaa\x59\x74\xba\x28\xef\x82\x6d\xce\x16\x48\x38\x48\xf7\xa2\x1d\xe4\xfd\x3a\x51\x28\x5d\x34\xd5\x04\xe1\xc5\x94\x2c\xa3\xed\x42\xad\x78\x8b\xc9\xa9\x8e\x77\xfb\xd5\xd2\xc5\x2d\x97\xdd\xe3\xc3\xba\x61\x9a\x04\x8e\xce\x0d\xeb\x99\x09\x1a\xb9\xfd\x89\x09\x0a\x79\x33\x71\xde\xe9\x7d\xbf\x44\x49\xf7\xaa\xef\xa5\x36\xeb\x6c\xf9\x77\xfa\x4a\x9a\x5f\xa0\x41\x6a\xb5\xf1\x86\xec\x37\x31\xde\x38\x11\xfe\x02\x71\x47\x5b\xeb\x80\xa3\x77\xd5\xd4\x0c\xf5\x3c\x1b\xed\x70\x5a\xbf\xb0\x88\xa4\x8d\xd7\x0e\x46\xd2\x86\x43\xf8\xa8\x9b\x12\x55\x1e\xb3\xa4\xa9\xcc\x47\xfb\x0c\x12\x7c\xd8\x2f\xb5\x17\x2e\xec\x97\xfa\xb6\x6a\xa0\x99\x10\x1e\x9e\x00\x6b\x7e\x03\x38\x78\x8d\x00\xc5\xd8\x4c\xe6\xe9\x18\xc1\x6d\xe8\x98\xda\x4f\xb8\x22\xf8\x95\x9b\x95\x79\x6e\xce\x5e\xe6\xcc\x7c\x0d\x4d\x31\x23\x5d\xc3\x28\x41\x25\x98\xa8\x02\x9e\x25\xa3\x68\xa8\x8a\x8e\x94\x8c\x4b\x54\x74\xa4\xb4\xe4\x6d\x5d\xbf\xa5\x36\x0e\x37\x6f\x06\x00\xc1\x72\x4d\x28\x23\xc7\x58\x87\xa9\x4b\xc6\x21\xba\x61\x80\x71\x88\xce\xf9\x8a\x99\x7a\xbb\xb6\x56\x0e\xac\x41\x2d\xa1\x9d\x03\x6d\x8d\xe8\x37\x68\x94\xc9\xef\x9d\x91\x9a\x61\xfb\x3a\x07\xac\xba\x56\x35\x07\xc6\xef\xa5\x8b\xe4\xc0\xc2\x6b\xc2\x51\xc4\x9d\x4d\xd2\x6a\x73\x24\xeb\x17\x3f\xc8\x71\xad\xab\x66\x89\x82\x0c\x36\x76\xf3\x4a\xe2\x6d\xee\x92\xfe\x20\x6d\xb7\x8c\x2c\xde\x77\x9b\x7c\x30\xba\x0b\x54\xfa\xab\x1e\x13\xb4\x9a\xdd\x23\x79\x8a\xb6\x63\xe6\x39\x3d\xdb\x27\x19\xd9\x20\xc9\xaa\x71\xc6\x31\xbc\x17\xd4\xeb\x02\x12\xf7\x30\x20\xa0\xb4\x36\x53\x95\x4e\x8e\x60\x64\x64\x76\x38\x6f\x27\x27\x22\xd6\xfd\x63\xad\xb3\xfb\xc3\x76\xb2\xd3\x20\x53\x91\x36\x9a\x58\xa1\x41\xc2\x20\xe7\x55\xaa\x50\x10\x64\x1a\xc3\x3f\x0b\x01\x65\x24\x86\x54\xd3\x7e\x26\x3f\xf1\xc2\x4e\xbd\x3a\xa9\xbc\x41\xc9\xcc\x0c\x79\x8d\xcf\x7a\xe3\xee\xe0\x24\x4a\xdd\x01\xcf\x01\xbc\x7a\xe0\xaa\x18\xe0\xb5\x2a\x7a\x01\x8a\xf6\x6b\x95\xe0\x18\xf7\x99\xeb\x92\x0b\x19\xb1\x84\x4b\x2e\xb0\xa9\xfc\x45\xa5\x75\x61\xa8\x96\x0f\x5a\xce\xfa\xbc\x9c\xce\xd2\x2a\x73\x5d\x13\x17\x58\xc8\xb5\x78\xad\x7c\xa5\x7a\x6e\xd2\xa8\x70\x19\x98\xaf\xd4\xa5\x79\xf8\x01\xfd\xd4\xde\x65\x38\x12\x97\x3c\x51\xb8\xa1\x75\x7d\x74\xc9\xa8\xdb\x60\x6e\x9f\x1b\xa3\x79\xcd\x0f\xa0\x2e\xbd\x3a\x04\x75\x1a\x24\xaa\xb6\x5e\x3c\x2a\xaa\x9e\x75\x5b\xe7\x77\xd5\x26\xe7\x11\x12\x50\x07\xa2\x76\x6f\xe3\x4e\x88\x05\x00\x53\x7e\x1d\x1f\xc8\x4b\x71\x35\x63\x98\x8a\x2b\x5c\xc0\x9f\x36\x95\x21\xe9\xc6\xb9\x13\x66\xf7\xc0\xb2\x05\x9b\x5f\x58\x88\x16\x9a\x70\x42\x2e\x4b\x2f\xcd\x28\x16\xe1\xac\xe2\x8c\xec\x0b\x67\x78\xe7\x55\x2c\x42\x2a\x5f\x46\xb1\x88\x64\x5e\xd4\x49\x2e\xfa\x1d\xb7\xe6\xd9\x1f\x89\x8a\x5a\x13\x02\xe1\x05\x8e\x6e\x07\xf9\x32\x53\x88\x5f\x3d\xae\x14\x62\xef\x7b\xb8\xa6\xad\xde\x64\x9e\x48\x73\x48\x21\xef\x54\xc9\x4c\xb3\x2b\xe3\x42\x9e\xdd\x8c\x8c\x0b\x1b\x15\x79\x07\x66\x25\x07\x33\x75\x67\x03\xb9\x4a\x92\x9a\x9c\xf6\xc6\xad\x28\x44\xee\xd0\x0d\x2c\x58\x50\xf2\x3b\x07\x83\xb0\x18\xaa\xbb\x04\xfd\x18\xb3\x48\x41\xde\x9c\xbf\x9d\xf7\x85\x6a\x77\xc1\x42\xa9\x26\xc1\xa9\x5e\x67\xbb\x97\xf3\xb1\x58\xae\x10\x71\x40\xfc\x5a\x9a\xf1\x86\x3c\x4b\xcb\xa5\x0f\x7b\xd7\x1c\x98\x85\xc9\x63\x95\xa1\x90\x33\x38\x1f\xb4\xd7\xbc\x5c\xd0\x8f\x87\x73\x4f\x50\x45\xf6\xcd\x92\x0e\xd6\xf1\x17\x41\x1c\x20\x18\x33\xe1\x83\x89\x60\x52\x3e\x33\x14\xea\xe0\x0e\xa7\x3e\x9d\x74\xfb\x63\xc9\xc8\x73\xb6\x9a\x96\x59\xb7\xe2\xb5\x13\x4f\x6e\x13\x77\xb0\x08\xc8\x3d\x60\x2b\x7b\x5f\x9d\x5c\x3b\x81\x08\x05\x3c\x78\xa7\x9e\x14\xe9\xaf\x1e\xd7\xd2\x08\x0b\xbc\xd9\xc1\x86\x76\xbe\xd8\xa5\x5e\xb8\xe9\x89\xf2\x18\xd4\x5e\x4d\xc4\x37\x66\x65\x18\xa7\xae\xd9\x9a\xf5\x8c\x1b\x0e\x6f\x2b\x4e\x37\xe9\x29\xfd\xc8\x10\xca\x37\xd9\xa5\xb9\x19\x55\x4f\xaf\x2b\x55\x4f\xd3\xda\xcd\xbb\x99\xcc\x6b\x58\xf4\xe1\xb5\x91\x1f\x9c\xb5\x32\x81\xaf\x7c\x09\x33\x9f\xe5\x18\xf6\x96\xa0\xb2\xe8\x85\x7e\x28\xce\x92\xbb\x24\x50\x6e\x53\x16\x79\x8f\xe0\x58\x9b\x6e\xf8\x28\x05\xda\xa3\xd3\x90\x0a\x73\x18\xec\xe6\x29\xbc\x90\x5d\x58\x2d\x70\xf4\xaa\x70\x6e\x61\x6d\xbe\x61\xb7\x4f\x81\xbe\xd9\xbc\x03\xca\x46\x6f\x5c\xf7\x18\x60\x70\x62\x80\x85\x1a\xa3\x88\xa9\x20\x49\xc1\xdc\xaa\x84\x05\x53\xd1\x03\x94\xce\x17\xe7\x28\x91\xac\x24\xf9\xc1\x5a\xda\xa6\x07\x94\x7e\x8a\xe8\x17\x2a\x5f\x72\xd2\x17\xd4\x4c\xd0\x4d\x64\xa5\x20\x33\x37\x4b\x9b\x2b\x89\x6a\xb8\x36\x5d\xa1\x9b\x73\xf8\x05\x1a\x02\x0a\x77\x14\x1c\xa9\x1a\x2f\xd4\xd2\xef\x29\x8f\x5b\x41\x92\x80\x77\x40\x49\x74\xa0\x35\xbf\xb0\x48\xce\x6f\xd0\x72\x6e\x7e\x30\x97\x57\xa5\xb3\x4b\xa1\x3a\x66\x4c\xe7\x45\x72\x7e\x80\x53\x38\x72\xdb\x17\xfa\x31\xe5\x5b\x2d\x28\x89\xa0\xfb\x58\x4a\x61\xc1\x2c\x6f\xec\x92\x29\xfe\x9a\x7b\xa4\x9d\x6a\x4c\x22\xd9\xf6\x85\x87\xbc\x80\x16\xea\x33\x4b\x4c\x69\xb9\xcb\x46\x11\xab\x41\x0b\x99\xb0\x4c\x8a\x82\x73\x58\x5d\x0c\xb0\x30\xb3\xc0\x5e\x93\x52\x38\x66\x54\x1b\xdb\x40\xae\x1f\x5c\x4f\xde\xaa\x89\x7a\xd5\x20\xf0\x07\x35\x30\x7c\xa1\x2f\x2a\x96\xd7\xf4\xc2\x9a\x04\x16\x36\xa5\x72\x79\xa5\x2b\x17\x68\x33\x4e\x7d\x2b\xb8\xac\xcb\xf6\x79\x69\xcc\x18\x6c\x7e\x01\xb7\x35\x4a\xb3\x28\x3c\xff\xef\xd8\x66\x81\x7a\xe3\xf0\x6e\xe9\x81\x88\xd2\xf2\xaf\xb0\xbc\x89\x72\xea\x3b\xd9\x6e\xe4\x82\x0b\xbb\x9a\x11\xd9\x11\x30\x0e\x7e\xbf\xe1\x7d\x4d\xaa\x33\xf6\x29\xaf\x1b\xee\x61\x0f\xc3\xb3\x46\x65\x2c\x07\x09\x71\x0f\x7b\xda\x36\x83\xcc\xbd\x6e\x02\xeb\xf4\x5f\xc9\x42\x28\xac\x00\x6e\xe9\x56\x58\x0b\xcb\x0e\xa4\xc2\x23\xfc\x0e\x9f\x96\xe5\x2b\x94\x19\x52\x58\xfd\xca\xb1\xcd\x82\x33\xfb\x76\xba\x16\x54\xbf\x72\xe8\xbd\xc0\x57\xe8\x04\xd4\x82\x13\x50\xc5\x44\x0c\xdf\x61\x36\x1e\x07\x97\x46\x88\x1e\x54\x13\xf4\xfd\xbe\x40\xd4\x80\xfb\x02\x51\x30\x43\xbb\xe9\xde\x78\x50\x6e\xac\xcc\x94\xa9\xdc\x64\x6b\x60\xb8\x52\x3e\xb6\xf6\xa3\xb0\x10\xaf\x9b\x77\x16\x66\xc1\xb5\x58\xce\x8f\x2f\xfb\x72\x85\x7a\x74\xce\x47\xed\x83\x67\xc0\x05\xed\xb1\xd6\x40\x08\xe0\x85\xf4\xc5\x2f\x50\x98\x99\x27\x9f\x54\x42\xcd\xbd\x78\x56\xca\xf9\x83\x05\x3a\x44\x0e\x7e\xa1\xa0\xad\x21\xce\xb5\x81\xfc\x02\x88\xd1\xb4\x76\x52\x90\x74\x3f\x20\x83\x34\x7b\x3b\xc9\x20\xbd\x63\xa0\x44\x54\x9f\x34\x28\x2b\xae\x6e\x5a\xba\xd6\x96\x51\x1f\xd7\x82\xdb\x0f\x00\xb7\xbc\x11\x28\x8c\x9f\x5f\x12\xf3\xa2\xba\x96\x3d\x06\x36\x7a\x70\x07\xdc\xe8\xa6\xce\xe5\x99\x33\x8b\xc4\x91\xfc\x2c\x7d\xac\xdc\x04\xca\xc8\x44\xc9\x2a\x87\x3a\x71\x85\x7e\x76\x92\x5d\xb9\x17\x6a\xfc\x80\x8a\x80\xc5\xf2\x4d\x75\xca\xa2\x61\x85\xad\x65\x14\x94\x87\xf8\xb7\xc8\x43\x05\xa9\x1c\xfd\x02\x25\xbb\x89\x00\x67\x8f\x54\xd7\xba\x14\x28\x1b\xba\xb9\xa0\x14\xe4\x4f\x66\x33\xf6\x87\x0c\x4d\x5c\xb6\x2e\xe5\x42\xea\x37\x6e\xea\x8f\x43\xda\x76\xdd\x28\x6e\x5e\x5f\x2c\x86\x54\xf5\x00\x39\x9d\x42\x7e\xe5\x99\x79\xd5\x70\x2e\x95\x35\x9f\x6c\xaf\xb3\xc8\x6e\xb3\x8c\xc3\x2d\x05\xd9\x29\x26\x15\x47\x89\xac\xd2\xd7\xc0\xd8\x9d\x80\xc2\x01\x76\xeb\x12\x95\x51\x62\xc7\xbe\x2b\xae\xe9\x55\xa5\xe5\x52\x51\xd8\xb5\x78\x75\xea\xf2\x15\x49\x26\xd6\xc8\xfb\xbe\x05\x74\x5c\xcb\xe7\x2f\x40\x21\x1e\x33\xad\x49\xe8\x0b\xe8\x27\xce\x4f\xaf\x38\x38\xd4\x3d\x29\x96\x74\x72\xfc\xbd\xe2\x6e\x5b\xa7\x02\x55\xe6\x38\xda\x61\x50\xe1\x4b\xca\xaf\x1e\xe9\xf1\x12\x13\xad\xd0\x5f\x54\x3f\xba\xd4\xc4\x88\x4c\x75\x97\x2c\x84\x12\xdc\x25\x23\xb5\xc3\xd3\xe0\xd6\x78\x41\xc5\x2b\xe2\xc5\xba\x6a\x5e\x13\xd5\x27\x99\x8c\x46\xb2\xbc\xe6\x39\x53\x5d\x29\x57\x2a\x54\x96\xe0\xb0\x7f\x5d\x3a\xcb\xeb\x8b\xc1\x41\xfc\xc6\xc1\x07\xee\xe3\x9c\xa6\x82\xb1\x97\x49\x44\xd5\x2f\x90\xb4\xdd\xe5\x82\x5b\x44\x83\xa3\xe3\x59\x26\x57\x9d\x2a\x4b\xf3\x11\xa5\x5a\x28\x20\x5e\x0f\x78\xa1\xbb\x30\x51\x68\x9a\x1a\xdd\x3c\xcd\xf3\x42\x4d\xe5\x0a\xea\x0b\x3a\x89\xac\x71\x54\x94\xa6\x57\x81\xc3\x52\xeb\x9a\xb7\x08\x15\xa9\x8a\x8e\xfe\xd7\x0a\xc2\x4d\xfe\x1d\x9c\x4c\x1a\x6b\xe5\xbd\x06\x13\x71\x3f\x90\x4a\xb5\x2e\x9c\x08\x40\x5c\x97\x5a\xc4\xbf\x2b\xf2\x12\x83\x73\x07\x2a\xce\x7c\x17\x4b\xc1\x8a\xf3\x38\x16\x43\x15\x17\xa2\xbe\x66\x48\x8d\x48\xca\x44\xed\x3c\x54\xe1\x21\xfb\xa2\x6a\x7f\x01\xaa\x96\x96\x56\x91\x86\xe8\xc0\x7c\xe5\x99\xef\xd7\x42\x52\xc3\x31\x79\xd1\x9d\xe3\x74\x85\x8a\x3c\xc4\xf6\x06\x0a\x7b\xd5\x40\x23\x73\xd0\x0e\xf9\x0a\x77\xcc\x4b\x13\xc4\x15\x27\xad\x16\xbf\x00\x15\xda\x6a\x5b\x1d\x0b\xef\xee\x92\x72\xcd\x88\x62\x2e\xa1\xfd\x56\x75\x27\x66\x34\x0d\xdc\xe4\xe9\x8c\xa1\x0a\x77\x8c\x15\xfb\xba\x93\xfb\x57\x3f\x68\x9c\xa7\x16\x7f\x5f\x98\xf1\x1b\x83\x40\x08\x35\xfb\x42\x8d\x26\x46\x35\x43\x12\xbd\xf2\x06\x02\x6b\x3d\x95\x85\x88\xac\x58\xd5\x83\x21\xfe\xd7\x1b\x44\x9e\xba\x3c\xb8\x7e\x82\x8a\x95\x89\xec\xfc\xaa\x70\x96\x64\xc9\xb9\x7a\xdc\x3c\x67\x23\x64\xc2\x19\xe2\x1a\x99\xa5\x22\x85\x30\x4b\x10\x56\x78\x43\x74\x69\x74\xa9\x08\x2e\xea\x8e\xe2\x52\xcf\x75\xcd\x8d\x60\x80\xb3\x23\x5b\x8a\x9d\xdc\x67\x52\x11\xea\xb9\x23\x6d\xd9\x3d\x12\x51\x5e\x0d\xde\x5d\x61\x7f\x5b\x3d\xd7\x8a\x6b\xde\x27\xaf\x72\x37\xd0\x6b\xc1\xf5\xc2\xb5\xb1\x4f\x4d\xe3\xe2\xb4\x84\x98\x8b\xd3\xd0\x10\xc8\x07\xcc\x16\x31\xf0\xaf\x38\xea\x52\x2f\xb2\x73\x43\x7d\xc1\x83\x6c\x3a\x46\xe5\x4e\x27\x97\x56\x26\x08\x3a\x05\xa5\x42\xf1\x79\xa9\x78\xf5\x62\x5c\xc6\x6d\x5e\xe5\xe3\xb5\x41\x44\xd2\x31\xfd\xca\x14\x41\x3b\x3c\x2a\x14\xa1\x61\xb2\xbd\x19\xec\xf2\x62\xf2\x9a\x9e\x17\x0b\xb9\xa9\x9e\x35\xf7\x49\x5e\x2e\x6f\x57\x85\xa3\x26\x5b\xf0\x21\x26\xb8\x79\x2d\x96\xa6\x64\xe9\x8c\x04\x3f\x1f\xa0\xad\xb8\x44\xc5\xa7\x0c\x2b\xf5\x22\xcb\xc1\x87\xa9\xcb\x9a\xf6\xd4\x93\xe2\x66\x12\x7d\xc0\x30\x24\x0a\xda\x86\xbd\x2b\x61\xd3\x36\x14\x9c\x49\x6e\x63\x4f\x88\xa7\x35\x9e\xbf\xb6\x2f\xa2\x21\xd7\x2e\x6b\x2f\xb7\x8d\x00\xf9\xf7\xc5\x60\x9a\x1e\x80\xf1\x57\xb7\x49\x8f\xcd\x3d\x40\xb5\x13\x4e\xda\xba\xba\xe0\x43\x3c\x2d\x04\xae\xbd\x1f\x44\xe4\x31\x08\xe6\x00\xea\x7b\x7d\x40\x26\x28\x2d\xb9\x51\xeb\x12\x52\x1b\xce\x6b\x67\x51\x5f\x43\x19\x4c\x5d\x14\x55\x5a\x58\xcb\x38\x7e\x22\x8b\x70\xc5\x41\x72\x26\x5f\x8b\xdc\x2d\xa2\xf6\x86\x4c\xba\x34\xc4\x05\x1a\xcf\xad\x38\xe9\xa5\x45\xa6\xb8\x7b\x8a\x91\x10\x6b\x19\xe0\x75\x72\x71\x90\x16\xe9\x95\x10\x52\x59\xb3\xdd\xb4\xda\xe2\xce\x21\xdc\x03\xd1\xde\x0d\x15\xae\x59\x08\x86\x81\x5a\x7c\xf7\x03\xca\x58\xcf\x03\xf9\x79\x4e\x9b\x6f\x38\xbb\xed\x64\xba\x96\x1e\x8e\x29\x28\xe1\x22\xd2\xd5\x9b\xa5\xe5\x35\x6f\xb5\x97\xc7\x47\x6d\x5c\x59\xdf\xfd\xfd\x49\x08\xb4\x30\x99\xac\xcb\x20\x51\x57\x6a\xee\x01\xe4\xee\x49\xb2\x08\xa6\x34\xbc\x46\x77\x8f\x57\xba\x2c\x88\x84\xb7\xc2\x40\x80\xdb\xe4\x85\x32\xea\x5a\x05\xeb\x7b\xb5\x57\x0f\x1a\x02\x01\xb6\xcd\xd4\x58\x0b\x7a\xf4\xef\xb4\x43\xfc\x3b\x85\xa1\xf4\xbd\x56\xc9\x66\x64\x1c\x35\x24\x96\x65\x2f\x4c\x65\x54\xdd\xbf\x93\x0d\x19\x6f\x2b\xd1\x4c\x2e\x83\xc6\x12\x95\xe9\x35\x28\xb9\xa3\x31\x8b\x54\xb3\x97\x41\xd5\x58\x64\xc7\x69\x89\x0d\x27\x3b\xaa\xeb\x81\x34\x56\xa1\x74\xad\xa9\xd6\xe8\x09\x95\x69\xd9\x70\xa2\xb9\xd9\x8a\x6b\x8d\x39\xac\x62\x57\x8d\x47\x9a\x5d\x3e\xaa\x35\x2e\xa0\x5e\xe8\x0b\x0c\x01\x8a\x7b\xe3\xab\x34\xd5\xd6\x69\x53\xcb\x50\x6f\x38\xec\x91\xbb\x3f\x20\xf6\x84\x0b\x1c\x59\xb6\x16\xd0\xfa\x22\x32\x0d\x89\x13\xc5\xd9\xb3\x18\x54\xfc\x64\x8c\xb4\x41\xdd\x52\xba\x6b\x1b\x64\x92\x32\xc2\xda\x58\xa8\x71\x9f\xbc\x9c\xce\xd8\x1c\x6b\x54\x81\xc5\xb0\x98\xd3\x55\x1a\xb5\x2c\xcf\x6b\x5f\x98\x10\x5c\x2c\x9c\x63\x1e\xb1\xf3\xcc\x89\x3f\x00\x2b\x97\x21\xd8\x96\xd6\x25\x95\xbc\x2d\xad\xcb\xb8\xdd\x09\x76\xf6\x27\x50\x50\xe5\x4c\x68\x3b\x63\x79\x1e\x82\x3c\xc3\x63\x20\x63\x4c\xd7\xeb\x94\x76\x10\x97\x1a\x12\x27\x8b\x5f\x76\x7d\x63\x82\x96\xa3\xfa\xed\xe4\xb4\xd5\x03\x35\x24\x59\xd4\x0d\x65\xcd\x75\xa3\x4f\x69\x67\x9b\x20\x99\x23\xe0\xca\xc8\x17\x27\x45\xf6\x55\x33\xe2\xe9\xc7\xb1\x69\xd3\x4e\xde\x9f\xa1\xa5\x3a\x19\xf9\xf5\x86\xa5\x93\x46\x9a\x45\xbb\xa8\xf7\x1b\x2b\x17\x41\xd2\x90\xbc\x19\xce\xd6\x6b\x9b\xda\x4b\xb2\x9a\xd8\xae\x35\x69\x4d\x12\xca\x4b\xb3\xb5\xd4\xa0\xbd\xf8\x40\x52\x9b\xca\x4b\x2a\x3f\xba\x43\xaf\xb4\x9b\x94\x22\xdd\xb8\xe1\xb0\x43\xf1\x9e\x81\x66\x53\x9d\xb2\xbf\xee\xe0\xb1\xcd\xd9\x6e\x52\xb4\x17\xf2\x5e\xa4\xa1\x75\xb8\xa9\x80\x99\xa5\xb0\xee\xb8\xcd\x1f\x5c\x62\x18\x8b\xa9\x0b\xd9\x49\x0e\x28\xb4\x87\xe4\x67\x2c\x4c\xdd\x26\xbd\xc0\x86\x6e\xe3\x23\xad\xed\x21\x3b\x31\x0c\xac\xb4\x68\xac\xf1\x96\x44\x9b\x43\x8d\x21\xa9\xf4\x7a\x40\x99\x26\x7e\x83\x7b\x14\x53\x13\xb9\x74\x1e\x4e\xd0\x52\x75\x9c\xc3\x75\x7d\xd4\xd2\x11\xc4\x6a\xf9\xf5\x80\x37\x0b\xf9\x0b\xd4\x81\x90\xc6\xd5\x59\x6b\xdc\xe9\x13\x7d\xa3\x0a\x9f\xfc\x06\x77\x59\x57\x1b\x25\x58\xe5\x42\xe8\x3c\xce\xe0\x1c\xa4\xbe\xfc\x4e\xda\x14\x7d\x6a\x3c\xd1\x85\xbe\x7a\x18\xe8\xc1\x6d\x1a\x05\x32\x75\x3a\xb2\x9a\xca\xe6\x0e\x48\x80\x06\x32\x90\x1d\xc9\x52\xe9\x91\x02\x42\x44\xdd\x51\x91\x46\x37\x67\x94\x8e\xb3\xb7\xba\xac\xa3\x74\x9e\xb5\xb5\xb7\xac\x47\x6e\x8b\xec\x37\xe8\x29\xf7\x0b\xdc\x16\x52\x5e\x71\xa7\x65\xb3\x16\xd4\x79\x4f\xbd\x58\x7b\x4f\xb8\x37\xc2\xef\xe3\x7c\xc0\xcb\xc9\xd0\x51\xc1\xc6\xc1\xe8\x9e\xca\x34\x96\x8a\x3b\xa0\xda\x64\xcc\xf2\xf0\xac\x27\x89\x24\x25\x9f\xf2\xe9\x4b\xc5\x31\xa6\x33\x36\xa6\x14\x8c\x9e\x71\x68\xcd\x58\xc9\x1c\xc1\x78\xcc\x2c\xc1\x2e\x90\x32\x17\xdb\x1d\x90\x3f\x79\x52\xcb\x3f\x34\xdc\x25\x55\x12\x77\x51\xa8\x70\x7a\x5a\x53\xcb\x89\xcd\xb3\x42\x05\x19\x1f\xc7\xea\x25\x23\x08\xaa\x1e\x0b\x05\x9a\xbc\x04\x1d\x09\xfa\xde\x58\xbd\xa0\x76\x49\xf5\x88\x38\x46\xe1\x59\x22\x3f\xdf\x47\xf3\x3a\xd3\x92\x5e\xbf\x2f\x90\x35\xcb\xa9\x45\xb5\xe6\x49\xa2\x7a\x8c\xaa\x4b\x97\x5e\x17\x87\x52\x8f\xcc\xb6\xb7\x25\xdd\x79\x17\x8c\xd3\x2b\x7a\xe5\x09\x7c\xcd\x01\x15\x61\x54\xab\xb6\xf4\xa5\x14\x79\x9b\x21\x07\xa9\x6c\x6e\x13\x06\x75\x00\x17\x92\x5d\x4a\xbd\xad\x11\x05\x64\xc3\x2e\x0b\x7e\x81\x32\x3d\xf9\x05\x64\xf2\x0e\xbf\xb0\xd0\xa0\x59\xf5\xb5\xa9\x84\x17\x84\xdd\x86\x4f\x26\x75\x96\x70\x31\x2f\x40\x61\x41\x47\x97\x7a\xa7\xa3\xc4\xd3\x64\x91\x6c\x27\x2a\x75\x5e\xf6\x69\x17\x42\x1f\xac\x31\xaa\x2f\x06\x39\x9a\xac\xf7\x3e\xe8\xe5\xac\x7e\x03\x07\xbe\x83\x7b\xe8\x84\xf2\x47\xbe\xba\x3e\x50\x76\x52\x6c\xbe\x2f\x8f\x93\x21\xc4\x95\xfd\xd6\x45\x3b\x22\x60\x96\xc8\x7d\x5f\xf0\x68\x65\x50\x30\xa5\xc9\x81\xd1\xf7\xc5\x51\x35\x03\x56\x0c\xb4\xdd\xdd\x59\xd5\xda\x8c\x00\xde\xa3\x22\x03\xac\xb3\x62\xa0\xed\xea\xce\x54\x77\xa9\xc3\x7d\x2a\x32\xa9\x98\xf5\x20\xf5\xa6\x18\xed\x07\x69\xc1\xef\xef\x68\x6b\x61\x0f\x02\x20\x90\x51\x40\x65\xf8\xbc\x57\x87\x2f\x69\xb3\x18\x41\x1e\x4d\xf5\x1c\x99\x96\xee\x54\x87\xce\x44\x1a\x9b\xf6\x9d\xc7\x51\x9d\x26\xd5\x11\x05\x2b\xb2\x23\xfa\x89\xaa\x1d\xe6\xbf\x2c\x72\xed\x98\x7f\x3f\xc9\x9b\xdc\x3e\xc1\x3e\xdd\xe6\xca\x79\x21\x10\x03\x7b\x79\x79\x3b\x0f\x9b\x5a\x09\xe8\xf0\x14\x15\xe3\xf1\x62\x46\xae\x81\x82\xeb\xa8\x78\xf1\xaf\x95\x62\xac\x95\x40\x05\x95\x17\xf9\x5c\x8b\x1a\xb4\xd8\x70\x36\x15\xe9\xef\xfd\xe2\xd2\x08\xea\x0b\x4b\x23\x4d\xbb\x33\xdb\x3d\xbf\x7a\x3c\xf1\x82\x27\x41\x39\x54\xfd\x00\xd4\x12\x3c\x22\x08\x54\x86\x4f\xbf\x99\x55\xe0\x49\x2c\x0d\xcc\xab\xc9\xa8\x9b\xdd\x24\x1d\x51\xb6\x92\xfc\x02\xd7\x4a\x43\xb0\x64\xa0\x75\x9d\x7e\xd3\x23\x26\x44\x22\x3b\xfd\x45\x90\x28\x8c\xed\xf2\x05\xfd\x26\x8c\x9a\x24\x3c\x4f\xd5\xcc\xeb\x61\x61\x35\xcd\x01\x09\x42\x2f\x11\x30\xb5\xb5\xb4\x99\xba\xe0\x78\x2a\x96\x8c\x48\x0f\xb2\x76\x37\x36\x70\x4f\x6d\xc1\xb1\x2e\xec\xae\x7e\xc0\x75\x93\x17\x66\x6c\x38\xeb\x2c\xea\x1a\x1b\x7b\x1c\x6a\xe3\x90\xb0\xd6\x75\x6c\x64\xaf\x52\xe6\xc6\x46\x72\x14\x96\x07\x3c\x47\xd6\x59\x06\x8e\x75\xea\xea\xcd\x32\x02\x39\x9d\x41\x98\x7a\x53\xea\xf2\x60\x8c\xb0\xee\xa2\x54\x1b\x69\x34\xc1\xbf\x0f\x9c\xbc\xa8\x6a\xef\xb8\xb1\x48\x53\x40\x74\xae\x64\xf7\x7f\xe2\xec\x92\xdb\xa4\x2c\xad\xd2\xe0\x11\x4d\x9f\xaa\x1c\x71\x51\x8e\x66\x1d\x23\x8e\x4e\x6b\x48\xb8\x8a\x86\xe5\xdc\x88\x6b\xc3\xf8\x0b\x90\x52\x76\x97\xe0\xde\xb2\x67\x07\x7d\x47\xe9\xd5\xe5\x80\xa4\x14\x94\x91\xb3\xd2\xac\x51\x13\xda\xfb\x63\xc0\x53\x64\x57\xfc\x58\x8e\x22\x29\x8f\x83\x07\x39\x9d\x4f\x37\x12\x8f\x3e\xa8\xc7\x04\x62\x79\x7d\x40\x2d\xfb\xf5\x02\xfc\x5d\x72\xac\x0e\xc4\x03\x8b\x11\x0d\xc5\x0d\xb7\x5d\xfd\x40\x02\x8d\xb4\x08\x45\x38\x4b\xd8\xd0\x9e\xe1\x52\xeb\xe4\x62\x19\x99\x00\x49\xf8\x0f\x94\x15\xb4\x1b\x68\xe4\x75\x97\xbc\xa6\x00\x5f\x56\x79\xf5\x80\xf0\x52\xf1\xef\xa0\xf6\xe2\x0e\x01\xc2\xab\xfd\x60\xff\x6a\x15\x11\xe4\x2b\xd2\x90\x06\x3c\x57\xf6\xbe\x8c\xe5\xb9\x12\x03\x18\x05\xa7\xde\xc4\xe6\x06\x94\x3c\xc7\x19\x07\xea\x49\x3b\x99\x6e\x50\xc7\x13\xf3\x1f\xb8\xef\xaf\x14\x0f\x30\x48\x68\x86\x08\xfb\xb3\x78\x40\xee\x4f\x77\x80\x43\x42\x62\x61\x83\x4a\xa0\xf3\x21\x46\xa1\xd3\x49\xfe\xc0\x51\x39\x47\x81\xcc\x53\x99\xb6\x10\x06\xd5\x42\xa9\x2e\xa3\x72\x8e\xee\x00\x37\xd2\x48\xb1\x1d\x15\xa2\xa0\xf8\xfb\x8e\xf0\xba\xdf\x07\x13\x2b\x6e\xf3\x08\x90\xfb\xa7\x9d\xd4\xfd\x00\xa2\x41\xaa\xd1\xa8\xb4\x7a\x4d\x39\x15\xd7\x61\x78\x73\xd5\x45\x49\x9a\x53\x5b\xeb\xa4\x37\x70\x48\xd3\xd6\xdf\x40\xe4\xd2\x25\xf5\x06\x6a\x4f\x17\xa9\x2e\xa3\xad\x75\x70\x8f\x0b\x48\xc1\xd0\x68\x32\x98\x14\x90\xfe\xe5\x3a\x66\xa3\x43\x08\x4b\xb9\x19\x1d\x46\xae\x41\x9a\x4a\x66\xb2\x40\x1c\x3c\x72\xe9\x95\xef\x28\xe7\x35\xfc\x3d\x83\xef\x66\xcd\x4b\xe9\x94\x9f\x67\xa0\x5e\x4a\x31\x67\xe6\x19\x4d\x67\x25\x8c\xb1\xf4\x00\xcd\x0a\x15\x53\xaa\x59\xed\x72\xb2\x79\xd0\x81\xa2\x75\x06\x9a\x4e\x37\x07\x4b\xc7\x60\x91\x09\x7f\x30\x99\xb1\x6e\x2f\x2e\x63\x00\x26\xb9\x4d\xc7\x20\x39\x9a\x3e\x51\x14\xc5\xb5\x72\xc6\x8e\x13\xee\x92\xd1\x63\xa7\x95\x2d\x34\x2f\x87\x9a\xf4\xfb\x01\xbd\xd4\x35\xb7\x06\x0b\xf9\x59\xfe\xec\x64\xff\xc3\x3d\xd0\xec\x36\xbd\xed\x4b\x1e\x08\x0d\xac\x8a\xe2\x64\x8c\x81\x52\xd6\x45\x6a\xe0\x38\x96\x3c\x10\xea\x8f\x05\x95\xfa\x3c\x98\x8b\x2c\xbc\x1c\x38\x44\xf0\x6a\xf3\x96\x3c\xf7\xb8\xc8\xc9\x0f\xe6\xe2\xd9\x84\x1d\xcc\xc7\xb2\x0d\x3b\x4e\x46\x56\xcd\x0a\x96\x2a\x3a\xfc\xa0\x02\x6a\xb7\xe9\xfb\xf1\x6a\x22\x89\xdb\xc7\xea\xc7\xb9\x94\x34\x4d\xeb\xa4\xfe\xa3\x59\x2d\x5d\xd4\xbb\x00\xaa\x67\xf0\x07\xab\x36\x9f\x7a\xbc\xe8\x1c\xf0\x34\x50\xae\xda\x35\x44\x06\x34\x4f\xd7\xc6\x1c\x54\x0b\xab\x7f\xe7\xde\x37\x4b\x5e\x5e\xbb\xfe\xa3\x30\xd1\x60\x59\xbe\x17\xb3\xc2\x89\x46\xe7\x22\x0e\x38\xe1\x6c\xf6\xf0\x42\xea\x66\x07\xee\xb8\xc9\x19\x34\x63\x54\xd9\x6b\xa6\xa6\xa9\x22\x26\x7b\x6b\x07\x12\xb5\xd2\xf0\x2a\xdc\x04\xf8\xf5\x06\xb9\x95\x6c\xe2\xc1\x78\xa4\xa3\xc7\x83\x85\xf6\x9c\x2a\x32\x58\x61\xc4\xa9\x22\x03\xb9\x5d\x0e\xea\x0c\x96\xca\x73\x06\xcc\x60\x6e\x97\xa3\xc7\x03\x7e\x3c\x1f\x54\x1e\xc8\xdd\xf2\x49\xfb\x7d\xdb\xd8\x43\xd4\x83\x80\x95\xc9\x6a\x27\xe4\x64\xfb\x03\xaa\x40\xc5\x2f\x80\xcf\x37\xbf\x40\xd5\x51\x82\x64\x5f\xaa\xe3\xf0\x83\x9b\x63\x7e\x80\xda\x71\x59\x89\xee\x14\x2c\x3b\xef\xe3\x73\x2a\xc6\x1e\x16\xd1\x77\x3d\x58\xeb\x55\xf5\x00\x66\x6a\xf7\x17\x10\xa0\xcd\x1f\x1c\x3c\x62\x17\xf4\x00\x14\xd7\xdc\xc1\x02\xca\x40\x40\xa9\x37\x22\x10\x6a\xb4\x92\xb0\xaf\x38\xa2\x24\xea\x1e\xd7\x6a\xf9\x01\xb4\x00\x11\xf9\xbe\x9c\x72\xa2\x91\x9d\xda\xa1\xd3\x26\x70\xc9\x79\x73\x31\xe1\x9d\x91\x45\xa7\x28\xec\x71\xe1\xd2\x0f\x40\xe9\xd2\xd3\xf7\xb4\xd6\x73\xe8\x01\x4e\xd6\x1a\x6c\xc4\x09\x9d\x4c\xb4\xd3\x89\xa6\x9d\xba\xe3\x68\x9e\x43\x51\x7b\x66\x62\x8d\x64\xe6\x9e\x09\xb4\x48\x6c\x47\xcd\x0b\x6b\x63\x7b\xe6\x4d\x72\xa2\xb9\x9d\x3e\x33\xe7\x51\xec\x3c\x5a\x67\x2f\xc8\x5e\x70\x9c\x4f\xe2\x64\xa7\x3a\xe3\x8c\x83\x9d\xca\x89\x97\xb7\x2e\xe4\x6b\x1a\x95\x26\xd0\xf0\x03\xd4\x68\xf4\x3c\x2a\x43\x6a\xd1\x2f\x80\x42\xba\x87\x00\x41\x74\x7f\x40\x16\x24\xe5\x60\x5f\x41\x39\x77\xc9\x0a\x0d\xf6\xf5\xef\xd4\x16\x1c\xd1\xdc\x1b\x6d\x76\x53\x5d\x7b\x40\xa6\x42\x4d\xa7\xef\x4d\x02\x62\x67\x91\x5f\x3b\xa4\xf7\xb1\x90\x27\xfc\xa3\x28\xaf\x1d\xd4\x3b\xd3\xaa\x1d\x28\xda\xe9\x52\x72\x58\x66\x67\x84\xcc\x71\x9b\x7d\x70\xea\x02\x73\x90\x99\x69\x45\x11\x30\x6b\xf6\x69\xef\x63\xcd\x43\x0f\x10\x0f\x6b\xf6\x48\xef\x3b\xc9\x44\x36\xec\xbe\x93\x0d\xc8\x7f\xb1\xd3\xed\x63\xbf\xe3\xce\xe4\x64\xe7\x99\xec\x3c\x83\x65\xc3\x7d\x3f\x78\x0e\xdd\xfb\xe3\x58\xec\xcd\x9d\xae\x25\xd0\xe4\x29\x60\x9d\x05\xba\x1f\x5c\x56\x77\x01\xcd\xc4\x5b\x0c\x87\xae\x4a\x77\x07\x3c\x62\xec\x0d\x84\xa2\x05\x76\x94\xef\x48\x2b\x2a\x92\x14\xfb\xb9\x96\x30\xfe\x44\x32\xed\x2c\x53\x66\xb3\x77\xa7\x63\xc8\x1e\xb9\x9d\xd2\xd9\x1b\xf4\x84\x9d\xdb\xdd\x46\xa5\x6a\xef\x15\x96\x2c\xb0\xfb\x6c\xc7\x5d\x66\xd5\xdc\x15\x21\x33\xa7\xb5\xec\xf4\xe1\x0c\xff\x4e\x1c\x4a\x58\xee\x17\x97\x5f\x82\x69\xe7\xdd\xbc\x4e\x44\xd9\xe1\x73\x71\xcd\x82\x9d\x41\x2f\x13\xd0\x2a\x20\x60\x1e\x71\x13\x06\xc1\x88\x22\xb6\xc5\x22\x81\x67\xb6\x5c\x44\x66\xa7\xf8\xb4\x93\x6f\x67\xc8\xcb\xde\xd8\xfd\x59\x63\xe8\x13\x26\x3e\xbb\x28\xcc\x8e\xfc\x9c\x60\xaf\xc6\xb1\xad\x79\x34\x3d\x08\x7c\xa3\xea\x41\x67\xa7\x7e\x80\x5b\x31\x64\x9b\x1e\x88\x17\x39\x24\x7e\x6c\x20\x2f\xb1\x9d\x03\xe9\x2f\x55\xdb\xf7\xa0\xa0\xb2\x5f\xef\x08\x74\x36\x49\xb3\x38\x20\x99\x46\x7a\xbd\x71\xf1\x81\xde\x88\x4b\x51\xd0\x20\xc8\x69\x29\xaf\x17\xc8\x4f\xab\x5f\xd8\x01\x45\x56\x1b\x6e\xe1\xea\x36\x79\x9b\x6c\x86\x83\xd1\x1e\xc9\xec\x03\x4e\x83\x2a\x06\x70\xa4\xcc\x69\x68\xc8\xc4\x79\xfa\x03\xee\xcc\xe8\x1e\x6f\xbc\x20\x44\x66\x52\xa5\x40\xcc\xb4\x3f\x45\xc7\x07\x2e\x92\xaa\xda\xeb\x07\x8e\x30\xf9\xc2\x8b\x23\xaf\x9d\xed\x17\x16\x99\xaa\x4b\x16\xf3\xf7\x17\xd3\x8c\xcf\x55\x74\x7d\x14\x32\x2d\xc3\xc8\xe4\x5d\xe9\x00\x07\xcc\xf6\x2a\xba\x3f\x70\xe9\xaa\x03\x98\x07\xae\xed\xf7\x91\x82\x03\xe7\x95\x7a\x76\x7f\xb8\xdb\xd6\xc4\x53\x68\x1b\x0a\xe2\x25\xd6\xa2\x3b\xc0\x91\x29\x23\x89\x95\x91\x8c\xf6\xba\x6a\xc8\xab\x4d\x00\xb5\x8e\x4c\x15\xae\x7e\x9f\xe4\x2b\xee\x77\xc0\x08\xd7\x8d\xfa\xe5\x80\xd1\xdd\xb3\x7f\x5f\x10\x09\x87\x4c\x56\xb1\x23\xfb\x40\xe4\xc6\xd7\x31\x1d\x38\x3d\x6e\xdf\xe6\x81\xa2\xa5\xf6\x2c\x1e\x8d\x20\x6a\x8a\xc8\x05\xf6\xcd\xe2\xe5\x80\xcd\x5d\xbd\x6a\x0d\xb4\x6a\x90\x57\x64\xa7\x19\x02\x9e\x7a\x91\x3b\xf4\x40\xb6\x70\x35\x88\x9d\x92\x45\x2c\xf4\xc0\xf9\xa9\xf4\x5a\x18\x9c\x9f\xaa\xaf\x17\x48\xce\xd1\x5d\xc2\xdc\x14\x8f\x3c\x78\x87\x94\xed\xd1\x03\xf9\xc5\xae\x2f\x70\x74\x9c\xd3\x7f\xb5\x71\x6b\x99\x34\x9a\xa3\xd3\xa6\x6a\x7e\xe1\x80\xcf\x49\x78\x42\x2a\xcc\x8b\xd1\xf0\x7e\xd5\x66\x10\xb9\x32\xd2\x0c\x0e\x9e\xb8\x12\xcf\x3d\x68\xc4\x77\x05\x60\x0f\xe6\xce\xe4\xf4\xa3\x12\x0c\xc7\xb4\xf9\x93\xef\x34\x39\x06\x6f\x8a\x33\x2b\x44\x20\xca\x19\x02\xc7\x60\x9d\x49\xb7\x51\xe2\xc5\x9c\x71\x20\x2e\xf9\x82\x0f\xe5\xdd\xbc\x59\xa0\x54\xbc\xd6\x7d\xe0\xce\x2d\x59\xf8\x07\x92\x72\x9c\x47\x75\x40\xc5\xa8\xd2\x6c\x8f\x9d\xa5\xda\xf4\xfe\x9e\xf1\xbe\x56\x08\x95\xff\xbb\x57\x00\x45\x9d\xaa\x97\x98\x87\xa9\x1c\xab\x38\xe8\x21\x70\x40\xf0\x80\x87\xc0\xf9\xdb\xc7\x4e\xc9\x2a\x3f\xfb\x41\x07\x81\x59\xd4\x3a\x34\xae\x0f\x0e\x3a\x2e\xb5\x22\x28\xc9\xe4\x38\xea\x81\xd3\x57\xe9\xd5\xa6\x5b\xc5\xb4\x8f\x48\x97\x4b\x92\x1e\x07\x2f\x71\x36\x00\xb4\x07\xbc\x7f\x0f\xea\xda\xd9\x5d\xe2\x86\x44\xa9\x3b\x07\xeb\xac\xca\x03\x76\xd0\x9f\xe0\x58\xc7\x81\x58\xd7\x8b\x6f\x9f\xdc\x2a\x5a\x06\xa8\x37\x8e\x7d\x1c\xa8\xbb\x6a\x4b\xfa\x98\x0a\x4d\x6a\xd2\xd9\x0e\x9c\xf6\xaa\xc6\x32\x2e\x06\xa8\x66\x79\xa8\xfb\xef\x78\xce\x71\x72\x15\xbc\xce\xbc\x1b\xcb\x9a\xfb\xb1\x14\x1c\x39\xdd\x0f\x2a\x38\x7e\x01\xde\x06\xeb\x80\x07\x8e\x7e\xd9\xbd\x7b\x20\xa9\xa8\x9a\xc7\x5d\x24\x75\xc3\x70\xad\x75\xd0\xa4\x70\x37\x96\x73\x1b\x0e\x9c\x0d\x7b\x49\x3f\x44\xad\xec\x50\x3e\x10\xb4\x72\x2d\x9e\x83\x57\x63\xc9\x3a\x39\x58\xa1\xc9\x35\xca\x8e\x9b\x4a\xa5\xdb\x90\xb7\x5e\x26\x84\xac\xaa\x21\x44\xc8\xca\xc5\x81\x0e\xe8\x53\x4e\x25\x3e\x6e\x54\xf9\x93\x65\x79\xdc\xfd\xfb\xab\xf8\x9c\xcb\x81\x94\xa2\xf2\x1a\x0f\x6a\x8c\xa2\xe7\x07\x22\x5c\x9b\x43\xa4\xc7\xd4\xbf\xd2\x4b\x34\xde\x6b\x11\x84\x82\x87\x8b\xa0\x11\x79\x0a\xde\x41\xab\x03\xe5\x52\xed\xf2\x39\x96\x33\x23\xfb\x01\x2a\xf8\x5a\x49\x79\x38\x27\x8f\xd0\xe1\x33\x12\x0e\x50\x2c\x35\xbe\xbe\xbf\x38\xa2\x90\x82\x0c\x24\xdf\x8f\x78\xc0\xd7\xe1\x1c\xbc\x13\xc5\x51\xed\x91\x3e\x51\x82\xc9\xd5\x83\x4e\xb8\x3a\x5a\xd1\x9c\xce\x0d\x2c\x66\xb8\x8d\x55\x90\x58\x39\x11\x66\xf3\x89\x82\x73\xe3\xd5\x95\x45\x6d\x06\x77\xa2\xda\x07\xe2\x88\x1e\x90\xbb\xb7\xb8\xc3\x0b\x03\xb8\xc3\x1b\x19\x52\x41\x6d\xdc\x54\x25\x0e\x75\x22\x5d\xdb\xae\x96\x73\xd5\x60\xd2\xba\x9e\x48\xd7\x36\x13\x3d\x11\x95\xcb\xba\xb2\xb7\x9c\x53\x5f\x8d\x6d\x73\x0f\xf4\x28\xc9\xdc\x39\xa1\xaf\x26\x8b\x99\x13\x71\x38\xbb\x3d\x4e\xdc\xd1\x3a\xb9\xe8\x0f\xa4\xce\xb9\x62\x70\x62\x99\x67\x04\x19\x69\x6f\x9f\x11\x1b\x41\xd1\xaa\x73\x79\x59\x9a\x1f\xc0\x5f\x2e\x7e\x75\x46\x4a\x6a\xed\xc5\x13\xb7\xb0\xfa\x5a\xd7\x93\xe9\xda\x8e\x96\x9e\x2c\x22\x60\xd9\x7d\xb2\x88\x80\x33\x9b\x4f\xe6\x6f\x3b\x53\xf9\xa4\xdb\xe5\xd5\xa6\x70\xf6\xca\x27\x5a\x16\x92\x7e\x27\xa2\x70\xb6\xd2\x4f\xd6\x19\x78\x2d\x1d\xaf\x6a\x7d\xad\x1d\xeb\x0a\x38\xb9\xf9\x4c\x2c\x0e\xac\x89\xa1\x8e\x80\x03\x79\x67\x42\x41\x2f\x63\x06\x55\x04\x6c\xd5\x9f\x53\x03\x4f\x36\x34\x4e\x16\x4b\x95\x30\x39\xf3\xba\x56\x4a\x6d\x6a\x76\xc2\x6c\xe6\xd5\x56\x9a\x23\x6a\xa1\x3a\x03\xec\x44\xed\x53\xdd\xcd\x5f\x4e\x64\x94\xfb\x74\xff\x89\xd3\x78\xce\xb5\x3e\x51\x30\xc0\x05\xc8\x4e\x44\xe5\x1c\xa5\x3b\x91\x4f\x5e\x8d\x10\x44\xe5\x2c\x8e\xcf\xa9\xce\xb7\x2a\x23\xf4\x2c\xa0\x6d\xaf\x41\x81\x46\x63\xd2\x5e\x41\x35\x03\x50\x28\x3d\x4d\xba\xe5\xc0\xe1\x4a\xb7\xd7\xba\x0b\x44\x28\xec\x3d\xb9\x4b\x6a\xc7\xe6\x00\x75\x43\x6e\x95\x60\x44\xbd\x01\xa7\x72\x9e\x15\x87\x1a\x65\x6b\x9f\xcb\x6f\x25\xeb\xfe\x44\x06\x7b\x33\xdd\xe0\x9a\x82\xf1\x1a\x80\xe6\x62\xf7\x83\x13\xb3\x16\x95\x30\xd5\xca\x0e\xbb\xb3\x12\xad\xee\x11\xcb\x6e\xb2\x69\x34\xa4\xcd\x64\x98\x7d\x6e\xea\x47\x79\x27\x5d\x24\x5e\x4e\xa4\x5e\xb9\x8a\xe8\x09\xb7\x57\xed\x5e\xe8\xe5\xf6\x32\x63\x5d\x2a\x7c\xf7\x27\x14\xf2\xee\xb3\x93\xcd\xb8\x53\x9e\xd7\x73\x98\xf8\xec\xf4\x4a\x88\xdd\x9f\xa8\xb7\xe4\x2b\x39\xcf\xce\xdc\x61\xa3\x6a\xe0\x78\xae\xb9\x2b\xee\x0d\xa8\xf2\x48\x9d\x83\x5b\xd0\x3d\xe0\x40\x9f\x4f\xcb\x9f\x63\x41\xe9\x2f\xd6\x10\x82\x92\xe5\x93\x2c\x47\x4f\xde\xe8\x6f\x76\xb6\xfc\x62\x26\x88\x9d\x5a\xba\x65\x00\x6b\xfb\x9b\x1b\xed\x74\x10\x98\xec\x77\xde\xb6\xa6\x79\x23\xe1\xca\x91\x88\x73\x27\xfa\xbd\x7e\x3b\x63\x6f\x5a\x60\x44\xc2\x9a\xa7\xc5\x2b\xad\x1c\xa9\x3d\x8f\x00\x39\xa9\x0f\x8e\x85\x18\x7d\x41\xbd\xd6\x78\xe0\x1d\x57\x76\xcc\x9d\xcb\x31\x67\x22\x3b\x48\x33\x6e\x43\x0b\x94\x7f\xe1\x84\xe3\xae\xbc\x7a\x64\x5c\x4c\x93\x3c\x38\x07\x83\xc8\xc5\xf6\xef\x20\x6a\xd9\x84\x27\xd2\xad\xaa\x9c\x07\x27\xb5\xce\x9f\x95\x59\x38\x59\x80\xc0\x61\xdf\xf3\xa4\x00\x30\x2b\xe3\xf5\xab\xdd\x72\x73\x05\xb4\xa4\x06\x9f\xd7\x22\x60\x21\x11\x99\x4f\xbe\x1d\xfc\xbc\xd6\xbe\x14\x88\x48\x2b\x77\xd9\xc0\x93\xb7\xa5\x4a\xe3\x3a\xef\x65\x28\xab\x07\x1c\x81\x73\x9e\xc4\x79\x73\x04\x2d\xc2\x0d\xc3\xd9\x9c\x01\x85\x8b\xaa\x59\xc9\x4d\x21\x65\xa4\xde\x28\xe4\x6f\x4a\x9b\x2a\x5c\x7a\x31\x58\x5e\xe3\xe4\x20\xed\xf9\xe0\x38\x8d\x77\xd8\xd4\xd0\x92\xef\xfa\x3e\x91\x97\x54\xcd\x39\x9e\x03\x39\x98\x82\xe0\x21\x44\x1f\x1c\x5d\x1b\x1d\x59\xe2\xa7\xd7\x46\x4d\x5c\x74\x71\xf1\x26\xa5\xe0\x2f\x40\x17\xc2\xc1\xb5\xd1\x17\x90\xfd\xc2\x4a\x7c\xf8\xb4\x59\x15\xa0\x88\x96\x2f\xc4\x96\xaa\x0c\xa2\x6b\xc5\x96\x44\x9a\x17\xca\x06\xd4\xee\x1e\x40\x5a\xa2\x85\x6b\xe5\x29\x15\xb5\x41\x6a\xa2\x84\x0b\x79\x4b\xbe\xd4\xf2\x42\x3e\xb8\x6f\xea\xbd\x10\x89\xaa\xc3\xe3\x71\x4a\x9a\x41\xe0\xf6\xac\x7e\x00\x39\x28\x2b\xf2\x8a\x6b\x4a\x9a\x02\x75\x24\x79\x84\x2f\xde\x4f\x6a\x57\xda\xb5\xd2\x94\x5e\x5d\xf0\xcc\x81\x07\x8d\x38\xc9\x91\xfd\x05\x33\x66\xfc\x3b\xc3\x10\xda\xf1\x57\xa2\x7a\xaf\x1d\x7e\xc1\x23\x38\x7c\x58\xe8\x4a\x6b\x57\x09\xac\xb4\x76\x80\x96\x82\x99\x3f\xf6\xec\x5c\xb8\x4b\xde\xa6\xdf\x95\x29\x1d\xbd\x58\x79\xc1\xad\x51\x79\x83\xa8\xb3\xc0\xae\x15\x8d\x92\x96\x72\xb1\x6e\x91\x8f\xc1\x5c\x48\xfa\x76\x41\xf4\x0b\x75\x8c\x2c\x92\x2f\xaa\x21\x72\x45\x5f\x53\xed\x48\xc3\x34\x5a\x68\x31\x37\xbf\x00\xf4\xcb\x97\x7d\x31\x19\x28\xfb\x03\x6a\x76\xcd\x2f\x50\x11\x49\xee\x01\x20\x68\x9f\x5d\x95\xc8\xf5\x02\xd6\x45\xa4\x9a\x37\x2b\x49\x5a\x6f\xb8\x50\x17\xd2\x6e\xb7\xab\x52\x5c\x1a\xb7\xd4\x13\x86\x5f\x40\xc6\x90\x14\xed\x0b\xc9\x33\x9b\x51\xbd\xd4\x02\x43\x4d\xc7\x9e\x36\xf3\x45\xb5\x40\x9e\xee\x8b\xd5\xc6\x7d\x88\xea\x62\x9d\x23\x73\xd1\x6b\xd5\x35\x92\x4c\xbf\x50\x7f\xdc\x2c\xef\xe2\x79\x32\x1f\xb3\xba\x50\xc6\xd1\x19\xd8\x17\xea\x18\xb9\x00\xce\xb5\xb4\x84\xe6\x0f\xa8\xd2\x79\x37\xa2\x70\x91\xef\xd5\xbd\xa8\x35\x18\x6f\x28\xba\xe8\xe2\xf5\xd7\x20\x63\xf7\xf6\x5c\xe1\x34\x2f\xce\xe0\x66\xf2\x86\x66\xb6\xcc\x6b\x77\x0d\x8a\xf0\xd7\x20\x54\xda\xc6\x8f\x42\x42\x17\xef\x71\x7f\x6d\x4e\x24\xcf\xd8\x2e\xbd\xc6\x42\xac\x66\xbd\xd3\xda\x30\x0d\xef\x44\xac\xdb\x8c\x49\x49\x89\xb8\x76\xee\x1b\x29\xf7\xd7\xbe\x06\x15\x22\xa6\xd6\x90\x6d\x08\x5e\xc8\xda\xf6\xa5\x1a\xd7\x41\xfa\x90\xb8\xb9\x10\xbe\x2b\x0e\x98\x5f\xac\x48\xee\x40\xf0\x75\x70\xf5\x04\x04\xf2\xb4\x37\x79\xaf\x2f\x08\xf9\x16\xdc\x23\xe7\xad\x69\x9e\x6b\x29\xd4\xc1\x49\x3f\x8d\xb9\x3d\x9c\x4b\x4d\xf6\xf1\x75\x32\x59\xaa\xf8\x01\xbc\xac\x96\x06\xb8\xc1\xa7\xc9\xa6\xba\x4e\xca\x48\x2f\xff\x05\x7f\x99\x49\x96\x85\x86\xec\xff\xba\x2e\xa0\xda\x93\x40\x4e\x75\x0b\xfe\xbd\xa2\x2d\xac\xf0\x80\x9a\xd5\xd2\xeb\xe2\xb1\x3c\xf3\x8f\x8b\xe1\x59\x13\x18\x6e\xa5\xf4\xdd\x47\x17\xbc\x4d\xaf\xa5\xb8\x58\xb4\x5c\x68\x59\xe1\x39\xb3\x30\x84\xe7\x1c\x6f\xbf\x90\x11\x9d\x5c\xa1\xf0\xc2\xf1\x7b\x5f\x0d\x7e\xdd\x6b\xe9\x34\x04\x02\x78\xc3\x14\x7d\xb3\x5a\xa0\xd0\xc2\x33\x6b\x26\x06\xe8\x2a\xd6\x7e\x2e\x16\x32\x72\xd8\xf5\xba\x39\x27\xb7\x91\x82\x6f\x08\xd6\x1d\xeb\x1a\xe0\x21\x9a\xdd\x46\x91\x5a\xcf\x60\xea\x2a\xc9\x9e\xd3\x0b\x77\xef\xf8\x6c\xd9\xf5\xb4\x69\x78\x79\x02\xcf\xc2\xba\x66\xf8\x2c\xa6\xec\x37\xe8\xe3\xf3\x08\x17\xf2\x15\x05\xf1\xc3\x42\x2e\x86\x88\x35\x93\xb5\x8e\xf7\x8a\x2e\x8a\xe5\xde\xf0\x2f\xf9\x7c\xdb\x8d\xf3\xff\x4e\xe3\xbe\x71\x8d\xa4\xf3\x24\xee\x8d\x3a\xa5\x54\x89\x1b\xda\x4f\x8b\xee\x00\xd4\x2c\xc6\x73\x6f\x34\x58\xc4\x07\x6e\x28\x3b\x2d\xba\xbd\xb8\x5b\xd7\x03\xde\xc8\xad\x1e\x50\x03\xe9\x75\xfe\xed\x86\xf6\xd2\x64\x44\xdf\xd0\x5e\x9c\xd9\x7a\x07\x82\xa4\x49\x4f\xed\x25\x6d\xc2\xf3\xbd\x2a\x74\x8b\x98\x6f\x9e\xd0\x37\xb9\xdf\xb8\xbb\xc6\x11\xd2\x9b\xd7\x40\xfa\x20\xec\x1d\x91\x7d\x16\xfc\xc2\x9c\xa5\x6d\x89\x1b\x29\xd1\xaf\x13\x77\x37\x0a\x6c\xfb\xea\xbf\x1b\xce\x18\x07\xbc\x6f\x5e\x65\xe3\x73\xaf\x77\xc2\x2d\x8c\x9b\x5f\x28\x7c\x41\x3d\x26\x5c\x00\x21\x6a\xba\x13\x62\x15\xdd\x23\xd0\x47\xed\x95\x42\x74\xd3\xbe\x94\x1b\xc1\xcc\x26\xd7\xc3\x8d\x7b\x1e\x9b\x7c\x3b\x77\xc6\x85\xd6\x06\x39\x83\x55\x4a\x96\xde\x3c\xca\xe6\x20\xfd\xbd\xa2\x9f\xda\xe3\x77\x86\x95\x67\xda\x80\x1a\xe3\xb3\xb7\x37\xee\x79\x6c\x3f\xcb\x4a\xb8\xe1\x3a\x71\x71\x80\xbb\x50\x2f\xf7\x68\x85\xf0\x09\x83\x65\xd1\x8d\xe0\x2b\x8c\x62\x67\x3f\xa0\x6f\xd3\xa4\x57\x58\xeb\x46\xfe\x9e\x1b\xe5\xb3\x9b\xb7\xc3\xd4\x82\x92\x53\x6d\x6f\xe4\xfc\x34\xa9\x8f\x77\xc5\xf6\x71\x87\x95\x33\x14\x8c\x75\x11\x92\x3f\xa0\xa3\x4f\x3a\xcf\xdd\x16\x2d\x6a\x99\x70\x03\xe3\x6b\x9d\x1b\x87\x70\x1b\x5c\xc6\xb4\xda\x28\x80\x64\x7e\xdc\xb8\xc5\xc5\x41\xb0\x1b\x09\xc4\x8e\x30\xdf\x08\x6e\xba\x50\xe3\x8d\x53\xfa\x63\xf3\xef\x38\xb4\xd0\xdd\xdf\x85\x20\x96\xdf\xbf\xb1\xe3\xfd\x3b\x70\x66\x4a\xee\x0c\x2c\x48\x1f\xbe\xa7\xce\x95\xb6\xcd\x6d\xa8\x58\x12\x5f\x37\x2a\x2b\x39\x9b\xeb\x9e\x1a\x56\x72\x38\xe8\xee\xf4\xee\x0a\xc9\x7d\xad\xab\x1f\x40\x62\x3a\xe9\xe9\xee\xf0\x49\x7b\x99\x10\x58\xdc\x24\x1a\xee\x51\x91\xd3\x26\x14\x0d\xe4\xc2\x9b\x47\x51\x59\xda\xdc\x21\x2f\x80\xe9\xee\x90\x11\x23\xb5\x71\x58\xdf\xd7\xd1\xdf\x7b\x24\x44\x42\x0a\x22\x83\xaf\xfb\x77\xef\x1d\xee\x0a\x67\x6d\xdc\x3b\x0c\x59\x59\xc2\x37\xb2\x8b\x37\x93\xd6\xbe\xc8\x5b\x78\x87\xd3\xe5\x75\x74\xf4\xde\x79\x17\xad\x16\x8a\xd1\xc5\x17\x5b\xdb\xc1\x18\xa5\x0c\xdd\x70\xba\x84\xd7\x8e\x59\xc9\xc4\x12\xe3\x37\x9c\x2a\x0e\x1a\xdd\x07\xa2\x0b\x66\xb5\x8c\x16\x9a\xfb\x1f\x1d\xb4\xe3\xf7\x07\x41\xd0\xb4\x0f\x1a\x60\x52\xfa\x6e\x5c\xaa\x68\x3b\xe4\x46\xa9\xc6\xe6\x54\xa1\x1b\x15\x90\x9a\x37\x0c\xf4\xab\xcd\xdb\xfe\x84\x06\x57\xdc\x86\xcc\x74\xaa\xf9\x8d\x53\x6c\xc1\x07\x3b\xef\x73\x91\x8b\xbb\x24\x05\x0b\x91\x17\x57\x53\x98\x66\x2a\xb1\xf3\xad\x6e\xba\x5e\x9c\x8d\x74\x5f\x2b\xf7\x4f\x6d\x68\x5c\xa6\xd0\x6b\xe1\x41\x30\x5c\x0b\x28\x8f\x01\x2d\xd0\x78\xb9\x16\x90\x06\xea\x99\x34\xeb\x6d\x87\x1a\xd5\x76\x70\xde\x37\xe4\xac\x3c\x27\x37\xc2\x77\x3e\xeb\x7c\x23\x1f\xca\x3e\xbc\x9b\x37\x1c\x3a\x44\x79\xe3\x84\xd9\xeb\x4a\xe8\xfb\x86\x2e\xec\x7d\x89\xf0\x9a\x6f\x84\xb8\x1f\x8e\xa8\x0e\x10\x5d\x73\xd1\xfe\xfb\x01\x33\x94\x3f\xf5\x46\x32\x94\xa3\xe9\x37\x8f\x98\x99\x51\x3d\x58\xe9\xea\x36\xcf\xb6\x7a\x0a\x28\x08\xd0\x9b\x5f\x80\x37\xdf\xe1\x80\xfb\x41\xa1\x05\x4f\x89\xe1\x38\x67\xfc\xdc\x28\x1b\xd9\xea\x8f\x7c\x72\xf7\xc3\xe0\xc4\xa7\xf7\x67\xa3\x07\x4e\x28\x7e\x10\xbc\x73\x5c\xf9\xd9\x18\xea\xd2\x1e\x7e\x36\x60\xa4\xfa\x03\x5c\x61\x2a\x71\xf3\xf0\x4c\x9c\xd3\xdc\x1e\x94\x5b\x7a\x9d\x29\x7e\x98\xfc\xe5\x14\xa4\x07\xa9\xcd\x8e\x6d\x3f\xb8\x62\xc5\x6c\xe4\xa1\x7e\x26\x9f\xc8\x83\x64\xb0\x6d\xf8\xf7\x49\x67\xce\xf6\x7f\x58\x31\xdb\x39\x6c\x0f\xe2\x79\x2e\x17\xf6\xa0\x62\xb6\xcb\x36\x3c\xd4\xe7\xe4\x52\x79\x98\x07\xed\x39\x07\xd4\x01\xd8\xfc\x3d\xd2\xdc\xa5\xf8\x3f\xc8\x46\x73\xc1\xb2\x07\x37\x25\xda\xc6\x7f\x02\xc5\x97\x00\x5c\x17\x25\x6a\xaf\x3d\x28\x66\x30\x8a\x07\xb8\x89\x22\x43\xf4\x80\xae\x34\xa3\x18\x60\x3f\xe9\xf7\xb8\x76\xaf\x86\x88\x74\x88\x17\x3f\x20\xb7\xf6\x32\xe0\x22\x71\x07\x1c\x1f\x16\x37\x10\x67\x7d\x56\x55\x70\x4d\x2a\x92\x59\x4b\x53\x7f\x70\x63\x8b\x0f\xa7\x3c\x11\xdb\xbd\x79\x00\x6e\xf7\xe0\x11\xc0\x93\xe4\x6d\x79\x98\x44\xfd\x02\x9a\xd1\x3c\x69\xc1\x4f\xc2\x69\x15\x31\x90\x27\x31\x94\xad\x59\x23\x96\xf7\x3a\xc5\xfa\xe0\x8c\x9d\x0d\xf4\x07\x67\xec\x5a\x73\x1b\xa7\x81\xad\xce\x3d\xa8\xb9\xf9\x3a\xc4\xfc\x20\xda\x67\xa7\xc3\x93\xe8\x09\x15\xc7\x78\x50\x33\x7c\x64\x0f\xc9\x1c\x04\xa3\x05\xf1\xbe\xd7\x39\xea\x07\x01\x3f\x1f\x63\x7d\xf2\x5a\x09\x75\x91\x71\x8b\xbc\xc9\x87\x35\xa4\x9c\x51\xf7\x64\x4e\x43\x40\xc1\xf9\x66\xcf\xc5\x03\x5f\x9b\x0f\x54\x3e\x79\x49\x24\xbf\x00\x1e\x61\x82\x2f\x0b\x46\x61\xba\x10\x46\xa1\xa1\x4c\x11\xe6\x4b\xe5\x1f\x5e\x77\xe8\xb4\x9f\x67\x69\xa6\xb2\x60\x9e\x02\x6a\xe8\x6e\x93\xf5\x1a\xb3\xf0\xc6\xb5\x6a\x18\x40\x2e\xf2\xc7\x3e\x95\xd4\x60\xbc\xa1\x2c\x95\x93\xb8\x1f\xdc\xfb\xe2\x23\xfb\x0f\x82\x7c\xcd\x79\x84\x0f\xd2\xf8\x5e\x07\xaf\x1f\x9e\xa5\x1b\xc3\x63\xc0\x14\xec\xfe\x02\xfe\xd9\xe2\x36\xef\x5d\xd0\x2c\x51\x96\xca\xa6\xe6\x83\x02\x0c\x9b\x17\xa6\x42\x67\xf2\xda\x57\xcc\xc9\x68\xe3\xd1\xb9\x17\x9e\xa1\x1a\x3b\x40\xf7\x34\x5e\x21\x26\x00\xa1\x29\x37\x5f\xef\xff\xc0\x3d\xd8\x4c\x8f\xb8\x04\xc6\x22\xf3\x61\x05\x07\xa7\xd8\x3d\x0d\xb9\x4c\xb2\x9f\x9f\xb6\xf3\x05\xf7\x00\x0a\xcf\xfe\x60\x51\xb8\x16\xaa\x91\xf9\x98\x7d\x52\x1b\x96\x06\xf4\x40\x1b\xf6\x81\x9a\x07\x05\xad\x6a\xde\x7e\x22\x81\x1e\x3a\x27\x65\x7e\x3c\x9d\x13\x14\x0a\x91\x33\xd8\xcd\x13\x98\x32\x68\xde\x4d\x5f\xa5\x2c\xb6\x07\xb5\xb1\x7c\x96\xe3\xe1\x5d\x8a\x2f\x84\xa0\x22\x69\xb3\xb4\x80\xeb\x72\x78\xcd\x79\x31\xba\xf4\x9c\x07\x19\x82\xc1\x19\x7a\x0f\x22\xa0\xcd\xe9\xa0\x0f\xce\x0a\x38\x6d\xe9\x41\x04\xd4\xaa\xf7\x83\xa3\x03\x21\xbb\x9d\x70\x3d\xaa\x3a\xe4\xc9\x01\xa7\xc8\x3d\xd0\xd5\x7d\x4d\xda\x83\x1c\xc0\xe4\x5c\x8a\x07\x05\xd9\xdb\xf0\x88\x27\x27\xe9\x07\x0b\x68\x7f\x81\x1d\x2f\x77\xc0\x43\x6d\xde\x94\x8c\x88\xaa\x2b\x43\x3e\xfb\x22\x3c\xf5\xb8\xaf\xcd\xe4\x2f\x28\xc7\x8d\x97\x9d\x98\xd7\x90\xfb\x80\xb1\xed\xdf\x61\xe3\x6c\xee\x91\x1c\x41\xd6\xfb\xb3\x33\x0f\xc0\x72\x76\xc7\xf6\x19\x7e\x81\xa9\x15\x6e\x3f\x04\x41\x43\xa2\x84\x85\xd3\x45\x9f\x03\x82\xda\x94\x09\x5d\x3f\xb9\xb0\xc2\x73\x70\xc3\x6b\x69\x8e\xc5\xc6\x34\x04\x52\x01\x83\xd7\x1a\xce\x53\xdf\x50\xfc\x4c\x65\xbf\x39\xec\xff\xc0\x79\xea\x40\xf4\x73\x12\x6d\x72\x10\x3c\x48\xe4\xb3\xd7\xf9\x39\x17\x73\xf7\x03\xee\x60\x45\x42\x1e\xd6\x43\x75\xde\xdc\x03\xf5\xbf\x39\x0a\xf1\xd0\xdd\xea\x3d\x83\xeb\x16\x9d\x0e\xf1\x40\x55\xf7\xc5\xaf\x0f\xa2\xa8\xae\x13\xfa\xe0\xe4\x41\x7a\xb5\x2f\xbc\x2f\x90\x2e\xe4\x1a\x49\x49\x7d\xa0\x97\xdb\xba\x7d\x10\x53\x7d\x55\x62\x78\x58\x0b\xc2\xd9\xc5\x0f\x12\xeb\x7c\x49\xdd\x73\xaf\x49\x6a\xa5\xee\x35\x49\xbf\x41\x2f\x82\x59\x21\x2a\x91\xfa\x94\xde\xc3\xab\xc5\x4b\xf2\x0b\x17\xbb\x10\xee\xa1\xcc\xbf\x74\x59\x28\xf3\x3e\xf3\xfb\xf0\xe0\x9f\x13\xcf\x1e\xde\x18\xe3\xe4\xd5\x07\xb9\x72\x4e\xcf\x7b\x78\x83\xcc\x6b\x23\x42\x9f\xf7\x15\x5a\xcf\x43\xee\x2a\xcf\xc3\x33\xf5\xf7\xdc\x5f\x3d\x70\xa7\x7a\xe2\xac\x66\x6a\x09\x80\x6a\xa6\xba\x6b\xa0\x6e\xac\x4e\xaa\xfb\x8d\xea\xc6\x12\xed\x4a\x86\xa9\xdb\x0a\xce\x56\x3f\x98\x7b\x5d\xe7\xe8\xeb\x86\x0b\x62\x94\xbb\x55\x37\xd4\x8c\x50\xe1\xe1\xba\x05\xf0\xa7\xa2\x21\x79\x13\xb8\x6a\x3c\xd4\x2d\x50\xda\x57\x3f\x28\xe8\x41\x30\x05\x9e\xfa\x2a\x6a\x93\x37\x7c\xd6\xa6\x6e\x81\xf7\x7e\x55\x8f\x39\xd0\x83\x7b\xa4\xa5\x9f\xdc\x25\x10\x17\xdc\x03\x94\xfc\xe0\x21\x90\xd6\xf4\x11\x4a\x75\x63\x35\xaf\x92\x35\x02\x3c\xa0\xbd\xfe\xe4\xe4\x6a\xdd\x22\x49\x63\xa8\xbd\x08\x58\xc3\xf3\x46\x43\x19\x42\x75\xc3\xe1\x0f\x85\x6e\xeb\x86\x72\xa6\xaa\xe6\x54\x37\x94\xa4\xa8\xc6\x21\xd4\x65\x1d\x48\xaf\x5b\x24\x02\x04\x3f\xd2\xe3\x74\xe6\xb4\x6e\x91\xf3\xd7\xa2\xb0\x72\x98\xf2\x87\xea\x86\x23\x88\x8a\x1c\xd5\x0d\x37\x89\x77\x23\x08\xb7\x1b\xba\x5c\x49\xdd\xe0\x6e\xad\x2a\xdb\x56\xb7\xa9\xfd\x66\x15\xb9\xaf\x5b\xa6\xc6\x95\x45\x38\xd0\x54\x55\xf3\xa5\x6e\xb8\x8e\xb0\x27\xb7\x13\xda\xee\x00\x38\x88\x1a\x71\x85\x8d\xab\x3b\xe4\xb6\xcf\x02\x92\x17\x0c\x26\xd3\x5e\x26\x4c\x42\x13\xc2\xc8\x5b\xd2\xaa\xf2\xf4\x89\xb2\x8a\xeb\x86\x8b\xbb\xbb\xdb\x50\x65\x15\xb5\xa9\x1b\xe3\xc8\xca\xdf\xab\x1b\x8e\xa3\x0c\x2f\x04\x4f\xa3\xa8\x9a\x54\xdd\x10\x48\xce\xa6\x5d\x68\xb2\xfd\xd5\x26\x88\x02\x89\x45\x21\x8a\x26\x59\xb8\xdd\xf4\x7e\xe5\x76\xd3\xca\xd6\xc5\x2d\x35\x20\xc2\xce\x9b\x8a\x51\xd7\xad\x12\xaf\xfe\x02\xdc\xd3\x48\x98\x7a\x6c\x1c\x86\xb8\x92\x47\x98\x03\xa0\x28\x84\x2e\xc9\xab\x1b\x0b\x87\x79\x0a\x95\x53\x10\xc8\xa8\x5c\xdf\xbd\x7f\x11\xc5\xd6\xd1\x8f\xba\xb1\x72\xfd\x26\x9c\x41\x8f\x55\x71\x84\xba\xb1\xb4\x6a\x53\xff\x6d\x21\x5d\x10\x36\x54\x10\x34\xc3\x80\xda\xfa\xee\x80\xb6\x61\xd1\x0c\x1a\x45\xbb\xb9\x1c\x0a\x3c\x74\xf3\x87\x4e\xe6\x5d\x44\x7c\x50\x1c\xfb\xeb\x03\x20\xcd\xfc\xa0\x23\xab\xa6\x68\x48\x9e\x35\x51\x36\x79\xdd\x3a\x89\xb3\x88\xbc\x71\x37\xa1\xaa\x05\xd7\x8d\x57\x13\x7a\xcb\x77\x60\x2d\x8b\x76\x3b\x8e\x7b\x75\x61\x0d\x15\x22\xba\x37\xe0\xf2\xe1\x9a\x52\x78\xf5\x60\x31\x4c\xb8\x7a\xb0\x9b\x56\x19\x15\x2f\x1e\x92\x51\xf1\x4d\x20\xf1\x6e\xc2\x6a\x52\x19\x6b\x12\xc2\x13\x0e\x9d\x76\xf3\xa1\x41\xa0\x35\xc9\x75\xcf\x77\x35\x0c\x0b\x4a\x81\xcd\xe2\xf8\x59\x3d\x4e\xd5\x31\xbd\xc4\xcd\x72\x04\x9b\x1c\x91\x7c\x57\xcc\x57\x96\xea\xe8\xa5\xd8\xe9\x97\x7b\x75\x01\xb7\x59\x13\x0c\x3b\xc8\xe3\x35\x24\x5d\x44\xe6\x34\xd0\x2d\x93\x45\x18\x1c\xc5\xc1\xd4\x71\xd0\xa0\xf5\x34\x79\x0c\xb6\x9a\x77\x1d\x11\x66\x8f\x86\x44\x19\xd7\x6e\x12\x47\xe5\xfc\x6e\x62\x38\x20\xf2\x8c\xd7\x03\xb5\x3a\x4c\xc1\xac\x49\x51\x2c\x23\x71\xa8\xa4\x97\x9f\x58\x41\x75\xe3\xa5\x85\xe9\xf5\x35\xea\x6a\x34\xb7\x41\x4b\xa6\x94\x83\x46\x99\xb7\x28\x8b\xa7\x15\x4b\xd8\x93\x7c\xed\xf5\x00\xc5\xfe\xac\x06\xa0\x60\x45\x37\x6d\x9d\xb0\x3a\x8c\xf4\x73\x21\x5d\x63\x32\x5f\xef\x25\x1f\x50\xf9\x4c\xf5\x30\xeb\x86\xa0\x7c\xf7\x8e\xba\x96\xde\xa0\x21\x2e\xee\x41\x91\xd6\x45\x1c\xb9\x4d\x1f\xb2\x19\x15\x8a\xe6\x6f\x46\xcb\xb5\x40\x10\x4c\x70\x32\x57\xe3\xe9\x5a\xe4\x6c\x98\xa8\xbb\xba\x8d\xb2\xb3\x66\x55\x37\x95\x44\x75\x00\x1f\x73\x37\xe7\xba\x17\x5e\xd5\xc1\x0a\xe2\x0b\x8d\xcb\xc9\x5c\x35\x89\x1b\xc4\x6b\xf6\x4e\x5d\xb7\xf9\xf7\xb5\x74\xea\x91\xb7\x68\x9b\x2d\x50\x4f\x6d\x1a\xe1\x41\xbe\x96\x77\xcb\x43\x08\x04\x32\x9c\xd0\xaf\x1d\xfc\x2c\xa6\xa0\x11\x19\x85\x7f\xc9\xc0\x07\x45\xbe\x2c\xc2\x90\x51\xf8\x5a\x27\x6a\xad\x16\x48\xac\x42\x5b\x5e\x0f\xe8\x51\x92\x2e\x11\x50\x74\xdf\x92\x3e\xe0\x88\xaf\xc2\x09\x35\xf0\xde\x6d\x95\xcb\xa9\x01\x7e\x63\xaf\x53\xd8\x40\x8d\xd5\x1f\x70\x3f\x35\x3f\xe8\xdf\x5f\x4d\x9a\x74\x0d\xa8\xad\x66\x1e\x11\x36\x1a\x0c\x2f\x10\x08\x74\xf3\x17\x5c\x7a\x7d\xc1\xa4\x45\x9d\x95\xa9\x21\xc0\x8b\x6a\x18\xa8\xe6\x0a\xf1\x21\xf0\xac\x80\x30\x1d\xc2\x02\x52\x68\x08\x24\xe0\xec\x4f\xe0\x9a\xf3\xb4\x71\xec\x38\x24\xb7\x69\x0f\x14\x3f\x20\x75\x64\x03\xf1\x80\x9b\x6a\x16\x11\xa9\x32\xe2\xb6\x81\xaa\xab\xc8\x2f\xc4\x85\x69\xe1\x21\x82\x1e\x45\xf1\x01\x27\x35\xba\x98\x6d\x58\x07\x33\xaa\x5f\x60\x3a\xcf\xab\x4b\xa8\x03\x22\xf9\x90\x00\x82\x17\x3f\x51\x8e\xb9\x4b\xdc\x8e\xd4\x45\xa1\x81\xa7\x2e\x8a\x61\x58\xa7\x2e\xbc\xfc\x09\x86\xb8\x98\x55\x48\x74\x89\x7b\xb1\xe0\xaa\xf5\x45\x45\x35\xe0\xb2\xed\xde\x84\x07\xd4\xb1\xed\xdd\xbf\xc3\x0a\x32\x1a\x12\xd4\x32\x6d\xc3\xc0\xcb\x1c\x75\x48\xa7\x06\x6a\xb7\x5d\xb3\xca\x9c\x84\x7f\x5f\x93\x70\x0f\x8c\xe3\x89\x19\x85\x4c\x4c\xbb\x07\x5c\x4e\xef\xb5\xcd\x6b\x52\x82\x99\xda\xae\x27\x89\x74\x03\xef\xfc\xc0\xfb\xb5\xbb\x47\xa4\x14\xf0\xf7\x28\xec\x2d\xa9\x10\x70\x36\xa3\x0f\xf5\x87\x04\x83\x49\x4b\x3f\x90\x41\x01\x0e\x58\x1d\xc6\xad\xa1\x30\xd3\xd0\x64\x40\xc5\x76\x68\x34\x5e\xa9\xa4\x53\x43\x35\x54\x14\xf2\x33\x38\x95\x8a\x80\xf0\x51\x97\x48\x12\xfc\x38\x58\xdd\x87\x5f\xc0\x35\x7f\xc1\xbf\x83\x71\x45\x0f\x00\xbe\x34\x84\x9f\xca\x2d\x6e\xca\x44\xad\xb2\x61\x90\x2b\x41\x16\x51\x40\x51\x35\x2f\x0e\x38\x56\xdd\x87\xd6\x98\xa5\xcc\x8a\x29\x17\xfe\xd6\xde\x35\xa5\x06\xa2\x18\xfe\x9d\x33\x70\x87\x15\x33\x70\x1b\x24\xd1\x35\x83\xe5\x9f\x35\x99\x32\x35\x21\x79\xcd\xdb\xe2\x08\x1e\x82\xbc\xd6\x9c\xb0\x61\x92\xc1\x6d\x9e\xee\x32\xa3\x43\xf1\xb3\x17\x2f\x85\x8f\x54\xa1\x9c\x1a\xe0\x02\x1d\x32\x1d\x03\x2f\x65\x92\x03\xa9\x06\x5e\xaa\x6d\xdd\x38\x40\x75\xb5\x35\x1e\x90\xcf\xb9\x49\x9b\x0a\x70\x79\x8e\xcd\xbf\x67\xb4\xfd\x7b\x45\x5b\x93\x64\xee\x66\xf5\xd6\x18\x38\xfa\x69\xe6\x0d\x0f\x67\x1f\xa2\x84\x41\x90\xfd\xfb\x5a\x79\x21\x7a\x2c\x2c\x79\x48\x5a\x10\xd2\xe0\xc2\x4e\xf3\xb6\xab\xcf\x9d\x17\x6a\xa9\xcf\x95\xaf\x60\xcc\xef\xd0\x88\xa4\x65\x86\x95\x9f\x50\xfc\xc5\x64\xf7\xf6\xac\x84\x9d\xbe\x19\x13\x28\x0e\x89\x0c\x69\x95\x01\xe9\x9e\xc3\x42\x8c\x87\x44\xaa\x11\x8d\xfc\xcf\x21\xf7\x4f\x40\xba\xe7\x8b\xa5\xf0\x2c\xb3\xcc\xdd\xb0\x4a\xb3\x98\xcd\x1d\x8c\x28\x9b\x9e\x90\xfe\x39\xbc\x74\x07\x2f\xa8\xf0\x26\x84\x2a\x29\x07\x79\x0d\x27\x63\x87\xde\xc6\x38\x9b\xac\x8b\xe4\x6b\x80\xe2\xa8\x92\x82\x35\xa0\xe8\xee\x66\x18\x91\xce\x30\x82\xdb\x03\x6d\xa1\xf5\x24\x44\x82\x10\xa5\x56\x94\xf2\x57\xc3\x49\x24\x09\x40\x64\x8f\x0e\x73\x05\x56\xe0\x35\x71\x5d\x6b\xdd\x04\xe0\x45\x47\xb2\xe5\xd1\xb5\xd0\xec\x07\x34\x72\xcc\xcb\xae\x45\x2d\x42\x13\xeb\xdb\x16\xb3\xc3\x9b\xe9\x6c\x96\x61\xc8\x36\x18\x32\x73\x02\x93\x37\x93\xb9\x39\x4e\x0b\x0f\x53\xc7\x4d\x6d\xc1\xec\xf9\x5e\x8b\xa7\xd5\xe6\x15\x04\xc5\xec\x84\xe7\x7f\xab\xb7\x2e\x6a\xd8\x6e\x26\x49\xe8\x7e\xc3\x8b\xb7\x74\x3f\xcf\xe3\x21\x10\xfe\x00\xbc\xe0\xd5\x41\x07\x81\xb9\x03\x2c\x8e\x79\xf6\x83\xc5\x90\x43\x26\xe0\x70\xc9\x30\x4b\x46\xba\x81\xee\x9c\xac\x01\xfe\xcb\x21\xbb\x28\x42\x31\x1c\xf1\x47\x6e\xb8\xc8\xc2\x30\xca\xa5\xa9\x91\x77\x13\x28\x55\xa6\xc6\x8d\x22\x44\x22\x34\x2e\xff\xa8\x44\x40\x64\xb6\x40\x76\x17\x98\x40\x72\x0f\x98\x40\xf2\xef\x48\xeb\xd5\xaa\xc5\x80\x2a\xc2\xfe\x3e\xe0\xac\x59\x77\x1b\xdb\x43\x9c\x28\x06\x9c\x43\x90\x4e\x18\x71\xb0\x65\x24\xff\x5e\x48\x59\x1e\x00\xd5\xe4\x8a\x3f\xd8\x61\xc2\x78\x00\x6c\x87\xe4\xdf\x4f\xe2\xc0\x3d\x5e\xdf\x5f\xb5\x69\x89\x63\xc0\x12\x24\xb7\x71\xbb\x94\x34\xe3\xc8\x5c\x50\x55\x8d\xa9\x11\x2a\xe3\x48\x7e\x81\x49\x1d\x92\x30\x31\xd2\x11\x2e\xc3\x2c\x46\x9e\x57\xf6\x17\x8d\x5d\x6a\xcc\x48\xff\xfd\xeb\x0b\xd0\x51\x72\xfb\xe0\x17\xee\x82\x50\x6b\x21\xe1\xcf\xac\xda\x2d\x31\x81\x70\xb2\xdb\xcc\x50\x92\x68\x8e\xb8\xf9\xe0\x05\x34\x74\xca\xd4\x8c\x68\x16\xc7\x89\x7e\x81\xce\x46\x2f\x65\x3a\x60\xc3\xfb\x05\xca\x10\xa9\x80\x11\x09\xa7\x49\x89\x56\x35\xe2\x30\x6f\x75\x1b\x2e\xd3\x6c\xa0\xa7\x52\xd9\x86\xd4\x83\xc8\xeb\xa0\x54\x4e\xa7\x46\x9e\xb5\xb1\xb3\x24\x32\xfa\xaf\xd4\x8e\x1a\x79\xf8\xc6\xce\x91\x38\xb5\xca\xd8\x5e\x5d\xf4\xef\xaf\xfa\xc2\x2c\xca\xee\xaa\x34\x71\x8d\x50\x22\x75\x8a\xba\x46\x5e\x31\x65\xcf\x44\xe4\x15\xe2\xaf\x11\xb1\x12\x52\x84\x23\x0b\xc7\x29\xdf\xa0\xc6\x42\x8f\xa5\xb4\xf3\xc8\x92\x3e\xd5\xb3\x98\x8a\x67\xb4\x7b\x22\x16\xce\x4a\x3c\x3f\x42\x13\xb5\x85\x10\xcb\x9a\xa5\x50\xcd\xa2\x3e\xe2\x8d\xb1\xf0\xbc\xa5\xb7\x45\xc1\xb6\x30\x55\x33\xd3\x55\xa1\xf1\x1a\x0b\xa7\xa1\x21\x2a\x09\x48\x78\xe2\x71\x9f\x6a\xc4\xc2\xcd\x3a\x8c\x38\x5e\x4a\x5e\x8d\xa8\x0a\x41\x26\x5f\x40\xa4\x1b\xb4\x1a\xe8\x55\x1a\xd7\x43\xf2\xe4\xaa\x44\x61\x44\x3c\x3f\x18\xe8\xc6\x8d\x25\x3d\x27\x36\x46\x4e\x04\x43\xe3\x62\xfa\x03\x1a\x67\xdd\x1f\x30\xf8\xe7\xb5\xc0\xc5\xe8\x43\x9a\x54\xe4\xa1\x5f\x85\xeb\x6b\xc4\xc5\xe8\xa3\xb8\x8d\xcc\x51\xcf\x12\xe1\xfb\xea\x5d\x80\x88\xbc\x02\xe2\x35\xc2\xb1\x3a\xbc\xb3\x99\xcb\x6a\x00\x70\x49\xa8\x6b\x91\xd4\x88\xeb\xa8\x74\x17\x5c\x8d\xa8\xad\x6b\x6f\x43\x1c\xcc\x9e\x35\xda\xa6\xf6\x98\x2c\x93\x22\xb5\x47\x53\x17\x8b\xe6\x98\x14\xa8\x4d\x9a\x01\xb2\x4e\x6e\xf7\xfb\x28\x61\xe1\x5d\x3a\x68\x95\xd7\xf2\x23\x21\x04\x0f\xe9\xf0\x1a\x22\x11\xd6\x91\x99\x08\x07\xa9\x55\xfe\xc8\xa3\xc5\x32\x9f\xe3\x4e\xa9\xde\xfd\x00\x75\xfe\x4c\x88\x53\x09\x2c\x9b\x25\xcc\xc1\x3b\x5e\xf4\xfb\x41\xa1\x27\x85\x28\x1e\xcc\xed\x15\xbe\x58\xee\xd6\x44\xc2\xfa\x34\x2f\xde\x89\x73\xbd\xc3\x4b\x74\x30\xc0\xab\x29\xe1\x4a\xaa\x61\xa2\x42\x71\xbd\x61\x56\xba\xa2\xd6\x26\x53\xf8\x0e\x87\xdc\x16\x91\x2a\xa0\x97\x1c\x07\x81\x87\x57\x88\x2a\xa0\xcc\xfb\x48\x15\xb0\xb9\x3f\x48\x87\xe6\xfe\x40\xc4\xd2\x49\x23\x22\xd8\xe9\xd5\xff\xcd\x19\x6a\x06\xc8\x67\x1d\xde\x89\x4b\x27\xd4\x07\x70\x4d\x0e\x13\x39\x2f\x65\x30\xff\x41\x65\x5c\xdb\x17\xf1\x22\xc9\x09\xe0\xa5\x53\x7a\x55\x51\xbd\xa6\x5a\x51\x8a\xa8\xe7\x37\xcc\x4d\x70\xc0\x68\x98\xe8\x70\xbe\x48\x87\x17\x6a\xbc\xd6\x4e\xf6\x83\x03\xfb\xc8\x53\x20\x0e\x44\x06\x17\x70\x60\xd6\xc0\x2b\x18\x9a\xdb\x2c\xe5\xe6\xf6\xa2\x02\x41\x88\xe2\xb8\xd9\x9a\xcd\x8d\x4a\x15\x56\x2c\x70\x73\xe7\x78\x75\x08\x9c\x5a\xc0\xc2\x0f\x39\xfc\x3d\xe3\xe5\xd5\xba\x1d\xe2\xe5\xf6\x24\xc5\x87\xca\x99\x8c\xb2\x88\xe3\x41\xc3\x02\x97\xf1\x73\xe3\x0c\x85\x74\x37\x79\xe9\xe3\x8a\x8e\x7b\xdd\x57\x76\xab\x91\x82\x62\x33\xc9\xbc\x85\xea\xa6\x08\x35\x41\x83\xd4\x3d\xed\x35\x6d\xa4\xec\xa1\xf6\x62\xc0\x7e\x40\x49\x25\x71\x99\x36\x26\x47\xb8\x47\x90\xb2\xf4\xcb\xc4\x6a\x33\xd5\x6d\x46\xae\xab\x3b\xa0\xa6\x23\x95\x39\x51\x03\x15\x9a\xd2\x46\xeb\x5a\xbb\x23\x2d\x47\xa4\xb6\x43\x0a\x38\x4e\xa0\xfd\x9a\x18\x91\x57\x39\xa7\x9a\x96\x27\x52\x2c\x2f\xad\x13\x45\xd5\x6f\xc0\x0e\x6c\x1e\x03\x9e\xf3\xa0\xd5\x4f\x3c\x32\x24\xb5\x22\x45\x6e\x61\xb7\x3b\x3c\x95\xc2\x64\x1c\x84\x41\x43\x2e\xbf\xa1\x28\x3e\x41\xc5\xdb\x86\x5f\xa0\x24\x4a\x7e\xe1\x81\xbb\x4a\x98\x4a\x54\x23\xc4\x6a\x53\xe2\xae\xd3\x26\x4b\xcb\x4f\x28\x85\x2a\xf1\x56\x04\x7b\xa2\x13\xca\xb5\x6c\x4a\xb9\xae\x69\x2a\x71\xad\x79\x1e\xf0\x03\x9a\xd7\x25\x24\x68\x36\xb7\x97\x1f\xd0\x98\xca\x54\x03\xdc\x43\x5e\x40\x44\x3d\x18\x08\x7f\x6a\xc8\xcc\x9d\x67\x5c\x65\x3a\x75\xe4\xd8\x4a\x2c\xce\xfb\xb3\x64\x84\x04\x2f\x9f\x4e\x1c\xd4\x94\xe9\x12\x36\x11\x67\x6e\x54\x41\x8c\x92\x2d\xca\xc7\xa9\x89\x17\x27\xa8\x4e\x55\x4d\x85\x87\x1e\xe4\xe7\x4a\x4b\x3f\x4b\xfe\x04\x9e\xc2\x57\xbb\x4d\x2c\x66\xb7\x3b\x3f\x70\x0f\x94\xa9\xe2\x16\x89\x09\x9e\x0e\x17\x25\x28\x68\xca\x00\xad\xa9\xd2\x10\x6a\x7e\x40\x6e\x20\x0e\x97\x6a\x83\x20\xd4\x3c\x11\xc6\xd6\x75\x56\x35\xa1\xac\xe2\x30\x81\xc1\x1d\x38\x5e\xbf\x33\x39\xc0\x6b\x5b\x17\x05\x0a\x53\x28\xbc\xa8\x1a\x86\x35\x35\x1a\x15\xf2\x03\xa4\x86\xca\x31\xe2\x89\xa9\x51\x12\x9a\x44\x1b\xad\xfc\xe1\x37\x20\x0a\x4d\x1c\xad\x81\xad\xbb\xc7\x85\x39\x41\x89\x5b\xd8\xa3\x59\xd6\xd4\xe8\x92\xee\x47\xa9\x69\xdd\x20\x6a\x7e\xd1\xc8\x2f\xbc\x2b\x96\xc3\x4f\xca\x72\x42\x69\x46\xcb\x9e\xd4\xe9\xab\x30\x66\x3a\x43\x46\x1a\xa3\xaf\x69\x69\x0c\x5e\xe4\x6e\x0f\x7d\x62\xa5\xc5\xec\x2e\x89\x7b\x7f\xb0\x76\xbf\x16\x03\x17\x24\xd8\x83\x97\x3a\xf7\x9d\x7f\x07\xd1\x9a\x04\x07\x43\xb4\xde\x77\xac\xb0\xec\xb5\xe2\xa5\x5d\x96\xa0\x89\x27\xc0\x1d\xaf\x49\xd4\x03\x25\x6e\xd2\x60\x69\x24\xcd\x72\xe9\x7d\xde\x49\x83\x1b\xd5\xb3\x42\xb5\xc4\x6c\x4e\xcc\x8a\xcb\xf6\xf1\xa7\x41\xa8\x85\x16\x04\xbf\x87\x0c\x9d\xc4\x2b\x4b\x65\x2a\x25\x04\xc3\x87\x39\x01\x2e\x5c\x18\x66\x04\x3c\x24\xe5\xf0\x4e\x42\x2c\xbc\x7a\x0e\xbc\x09\xcc\xfe\x87\x84\x3c\x4b\x9b\x94\x09\x85\x6a\xec\x22\x49\xf0\x41\xc6\x57\x07\x73\x8e\x3a\x65\x53\x13\x5d\x90\xaf\xef\x41\x5e\x2f\x08\xb9\x47\xbc\xd5\xe9\x72\x94\x3d\x90\x98\x44\x69\x91\x8a\x48\xf8\x30\xf1\xa1\xf6\x73\x33\x92\x0f\xca\x6c\x43\x74\xdc\x53\xdf\x95\x02\x9d\xce\x0d\x6d\xcd\x80\xc5\x11\x1d\x89\x49\x67\x9a\x56\xb4\x89\x73\xaa\xa3\x65\xb3\xa8\x3a\x49\x08\xd9\x2f\x54\xbc\xa0\x29\x30\x87\xd2\x91\x89\x34\xf5\xcf\xa2\x03\xb8\x35\x2d\x7d\x52\x2a\x74\x9a\xfa\x64\xd2\x51\xa4\x9a\xa6\x3e\x99\x36\xd3\xde\x45\x13\xd8\x3c\x78\x2a\x94\x45\x87\x59\x6b\xba\x28\xa2\xa5\xe5\xa7\x0b\x09\x02\xd2\xc1\xd3\xd4\xff\x92\x63\x17\x89\xc5\x0d\xa5\x4c\xa5\x8b\xba\x8f\x15\x8d\x9b\x5a\x81\x57\x0e\x0a\x5f\x30\x23\xb9\x13\x40\x10\xda\x6e\x26\x78\x79\x0f\xdf\x9c\xb5\x3b\xc0\x9e\xcd\xdb\x4f\x4e\xa7\xd6\x84\x7c\xca\xf4\x62\x01\x37\x4f\x45\x6a\xfc\x87\xe2\xdb\x5b\xfa\x59\x38\x10\x92\x1e\x56\xe6\x74\x1b\xf1\x7f\x6f\xb7\x87\xeb\xe6\x76\x83\xaf\xcd\xcc\xf4\x21\xd2\x3e\x33\xc8\x1b\x3e\x08\x6e\x53\x1d\xe8\x7e\xc0\x1d\x2e\xf2\xcf\x38\xac\xed\x7c\x97\xbc\x3d\xe8\xe1\x33\x89\x1c\xc8\x86\x24\xa6\x32\xfc\x7b\xc3\xa6\x44\x0e\x40\x73\xf0\x0b\x79\x8a\x46\xa9\xd9\x39\x70\x12\x43\xed\x86\xf7\xab\xda\x9d\x1d\xfa\x01\xf4\xc1\xee\x36\xe5\xbb\x78\x6b\x46\xe9\x99\xa1\x0b\x0a\x6a\x5e\xc7\x79\xc4\xd9\x32\xd2\x11\x87\x6e\x28\xa8\x39\x52\x73\x12\xa3\xca\x91\x98\xf2\x17\x1d\x6d\x77\x49\xde\x38\xfc\x60\x11\x87\xe6\x81\xea\xd5\x2a\x67\x50\xf3\x54\xe7\x92\x2e\x0f\xa9\x99\x09\x88\x2a\x55\x52\x33\xcf\xef\x38\x7e\x92\x13\xf6\xad\x98\x63\xe6\x81\xef\xfc\x7a\x40\x20\x35\x04\x82\xbc\x4e\xad\xcb\x74\xc8\x65\xaf\x77\x5a\x15\x00\xd5\x66\x6e\x92\x17\x07\x0e\x37\x15\xe9\xa9\x99\x07\xb8\x1d\x60\xc9\x19\xcc\xc8\x43\x64\x7a\xd8\xe5\x1e\xc9\xa8\x77\x67\xe3\x3a\x33\x5f\x30\x1b\x93\x85\x54\xae\x70\x43\x2e\x14\xa6\xdd\x0f\x70\x97\xe8\xe6\x36\x63\xd7\x92\x95\xb9\x30\x8d\x45\x3c\x33\x2f\x67\x56\xf1\x83\x8b\x79\x03\x42\x55\x59\x33\x55\xa7\x95\x41\x78\x61\xbf\x92\x8b\x4a\xbb\xce\x75\xc1\xa9\x99\x54\x12\xa6\xa0\xa8\x70\x23\x44\x7f\x40\x3d\xc3\x84\xc9\x62\x35\x56\x55\x32\xdd\x57\xaa\x14\x53\x73\x23\x1d\x2a\x16\x94\x1b\x56\x34\xfa\x05\x9c\x96\x15\xaf\xcf\x6d\x85\xa7\x04\xd4\xd4\x86\x5a\x33\x76\xdb\x42\x8d\x5f\x58\x98\x50\x17\x38\x5b\xed\xb4\xbb\xdc\x29\x0d\x8a\x1f\x34\x7e\xa1\x3e\x3b\x68\x3f\xfa\x85\xb5\xe6\xc2\x04\x3d\x52\xd9\x7b\x76\x04\x76\xa1\x99\xb3\x8a\x5d\xf3\x17\x60\x0a\xe2\xde\x79\xea\x26\x65\x33\x53\x40\x59\xe6\xf4\xfa\x9e\x74\x28\xb3\x31\x0f\x64\x8d\x56\x77\xc8\x9a\xa3\x82\x99\x57\x37\x39\xbf\x37\x53\xd3\xb0\x77\x32\xef\x5c\x5f\x49\x98\x8c\x78\x66\xf0\x5a\xec\x84\x49\x93\x5a\xaa\x85\x3c\x0e\x79\xa7\x98\xf4\xfa\xee\x10\x18\xb2\x5c\x33\x3c\x57\x0e\xa1\x66\x9e\xd0\xc8\x26\x21\x1c\xb7\x56\x81\xdd\x9a\x77\xca\x55\xc1\x78\xa0\x50\xa3\xf1\x8a\xac\xbb\x66\x06\xc0\xd3\xd8\x39\xfe\x28\x4b\x2e\x1f\x2c\xf0\x23\xf0\xa6\xe6\x51\x36\xd9\x24\xf9\x80\x63\x4d\x16\x6a\xe6\xcd\xeb\xba\x1f\xab\x66\xdc\x38\x6a\xf1\x92\x4f\x08\x71\x19\x20\x79\x5d\x2a\x21\xf5\x2f\x9f\x40\x61\xf2\x07\xd8\x42\x32\x93\xf2\x49\xa3\xb8\xba\x87\x9d\x42\x53\x18\x40\xa1\xe5\xe6\x3d\x75\x22\x1f\x4d\xa6\x7e\x5e\x35\xef\x4c\x59\xd7\x5a\x67\xcd\x92\x9a\x86\x14\xb6\x4c\x57\x95\x87\xa4\xab\xca\x96\x7c\xbe\x16\xfd\xbb\x4b\xd0\xbf\x2c\xb3\x3c\x55\x91\xb2\xc9\x2e\xcf\x77\x04\xcb\xd3\xfb\x54\x2c\x2c\x33\x59\xa7\xa6\x99\x0d\xdf\x34\xe5\x86\x7b\x20\x69\x09\x4f\x37\xf1\x24\x90\xe0\x8a\xb2\xdd\x95\x6f\x32\x76\xf3\x89\x1b\x62\x59\x2a\x60\x7e\xb8\x23\xfd\xc5\x13\xd0\xa3\xb0\xf2\x00\x2b\xe6\x02\x0f\x64\x8d\x69\xe3\x21\x57\x30\xa2\xa9\x6b\x48\x25\xcc\x0f\x2d\x1e\xeb\x16\x0f\xb0\x62\x2c\x3c\xe4\x44\xa6\x96\xe7\x9a\x2f\x58\xbc\xc1\x17\xe5\x3c\xd7\xfc\x70\xcb\x4a\x18\x95\x0d\x8a\xae\x74\x91\xb2\xc2\x9b\xf2\xb3\x16\xde\xea\xa4\x7a\x23\xb5\x6c\xa0\x37\x89\x96\xb2\xad\x2e\xf5\x60\x79\x82\xa4\x1b\x97\xb0\xd6\xc6\x0f\x18\x59\x19\xfe\x04\xab\x2f\x09\x58\x78\x15\x86\x63\xdf\x85\x57\x61\xe8\x2e\x94\x5a\x02\xf6\x51\x71\x1b\x13\x7f\x0d\x71\x73\xcc\xa6\x07\x14\x4e\x62\x7f\x65\x2a\x2c\xcd\x27\x03\x4a\x04\x45\x49\x36\x95\x88\xd5\x92\xb8\x2b\x2c\x27\x6c\xbb\xbb\x44\xca\x09\x69\xc3\x25\x62\x75\x0c\x63\xc4\xde\x97\x70\x2b\x91\x4e\x75\xf7\x78\x13\x24\x3f\xc0\xa1\x6f\x4f\x22\xad\xc5\x50\x0f\xf4\x46\xa9\xf8\x51\x2d\xd4\x4e\xc4\xcc\x4a\x02\x51\x8b\x85\x97\x04\xc4\x8a\xe8\x0b\x7d\x53\xd2\xf3\x0a\x6f\x5a\xb7\x23\xa9\xe0\x74\xb1\x5d\x05\x05\xa5\x82\xeb\xab\xc3\x07\xa1\x67\xcd\x91\x57\x74\xda\xc7\x52\xf2\x5a\xec\xa1\x07\xd0\xa8\xb4\x4b\x4a\x5e\x44\x2d\x18\x32\x61\xd4\xc2\xf0\xc0\x85\x53\xaa\x4a\xc6\xda\x8a\xdb\x94\x4c\xfe\xe4\x21\x61\x18\x79\x65\x57\x70\x50\xfa\x72\x41\x70\xd0\x5a\x46\x59\xce\x27\xe9\xaa\xa5\x10\x68\x45\x27\x4a\x01\x91\x8b\x81\x95\x42\x3c\x6b\x65\x70\x6d\xa7\xca\x8d\xd5\x52\x38\x07\xb7\xa1\xba\x8a\xbd\x95\x82\x29\x34\xf7\x0f\x15\xaf\xfa\x77\x8a\x7b\xe9\x67\xa5\x2e\xe6\x22\x98\x71\x94\xb8\xc4\xfa\x13\x29\x54\xa8\x57\x99\x32\x71\x88\x58\xd7\x93\xd4\x52\xd7\x1a\xb8\xf7\x83\x08\x10\x4e\xe1\xa7\xf2\xb9\x9a\x82\x53\xc0\xd5\x84\xd7\xc0\xdb\xbc\x06\x53\xcb\x8a\xb6\x8f\x4b\x43\x3c\xcc\x84\xd6\x50\x5f\x40\xbc\xb1\x34\x20\x4c\x8e\xb6\xc2\x1b\xb3\x9a\xc9\x64\xc5\x08\xa5\x7f\x96\x4e\xf3\x56\xba\x7c\xe9\x6b\xd1\x04\x63\x5f\x2c\x5f\x58\x45\x09\x1b\x73\xc7\xd2\x79\x89\x82\xd0\x82\xd3\x13\x96\x8c\xa5\x2f\x20\x34\x8b\xce\xc3\xd2\x1e\x12\xba\x83\x3b\x98\x4a\x59\x52\x4d\x83\x5a\x10\x25\xb4\xaa\x59\x06\x15\x73\xa9\x75\x65\xd0\xbc\x88\xfe\x02\x35\x6f\xbc\x9f\x78\x38\x42\x45\x40\x6b\xc1\x7d\x9a\x8e\x70\x94\x01\xa6\x62\x2e\x84\x2c\x33\x5d\x55\x5f\xcb\x3a\x2c\xe1\x0d\x39\x20\xb6\xdc\xc1\xbe\x76\x87\x1f\x30\x00\xac\x1e\x97\xd2\x26\x23\xba\xec\xbc\xb0\x59\x43\xd0\x1f\x24\x2b\xab\x2c\xa5\x4d\x16\x4d\x61\xd1\x9c\xf8\x7a\x40\xa0\xdd\x23\x6c\x09\x2f\x0c\x1c\x3c\x8e\x62\x97\xa5\xa3\x0d\x0f\x49\xce\x28\x98\x0f\x5e\xb9\xe7\x36\x19\xa3\x59\xe9\x0a\x50\x4a\x74\x96\x83\x66\x80\x34\x8a\xc2\x4a\xc5\xb6\x2d\xca\x01\xde\x29\x2d\xa7\x20\x6f\xad\x35\x6f\x41\xc4\x34\xad\xdd\x16\x86\x2c\x37\x8f\xc9\xf3\x7e\x9a\xe5\x41\xfe\x6e\x11\xc3\x1b\xc4\x9a\xc9\xe1\x84\xc6\x60\x46\xc5\xbc\xb6\xea\xd5\x3c\x21\x94\xbc\x91\xe9\x66\x32\xe3\xc2\x51\x5d\x07\x25\x0b\xbd\x4c\x5e\xfc\x93\x86\x7d\xf2\x08\x83\x20\xf8\x0b\xb8\xc6\xcc\xae\x4f\x08\x29\x33\xa2\x73\x4d\xc2\x43\xe2\x60\x95\x34\xda\x72\x91\x53\xbd\x1e\x80\x35\x78\xe3\x5e\xdc\xa7\xc6\x3c\xef\x8e\xaf\x5e\x7e\x68\x83\x56\xd5\xca\xc5\x4d\x60\x9d\xe3\x82\xd2\x6f\x92\xbd\x40\x4f\xde\x24\xbc\xd5\x53\xe7\xdb\x6b\x41\x26\x9c\x15\xa7\x32\xd5\xc5\x90\x6c\x15\x96\x1b\x97\x95\x78\x9a\xd0\x0e\x9d\x72\x55\x50\xc6\xd0\xaa\x59\xc1\x09\x89\x68\x34\x21\x0d\xae\x19\x22\x1c\xf5\x7d\x09\x56\x68\x8f\xc1\x7b\x06\xca\xa2\xaf\xff\xaa\x85\xca\xa2\xe7\xfc\xac\xa5\x17\x04\x0f\x57\xca\x20\xa1\xee\x4e\xb2\x9e\xf5\x00\x09\x56\xa2\x10\x99\x6c\x2a\x9b\x56\xeb\x06\xf3\x5b\x3c\xb6\xa2\x30\x8e\x1d\xbd\x75\x03\x71\xbd\xda\x6b\xa1\xb2\x1e\xa0\xb6\xa3\x14\xb9\xba\x31\x6e\xf0\x23\x19\x54\x59\x33\x47\x55\xd8\x6a\xdd\x06\xc0\x71\xef\x50\x97\x86\xc1\xa3\x77\xbe\xa9\x4d\x09\x20\x76\x5e\x71\xe7\x85\xea\x30\xd4\x8a\x1a\x39\x9b\x3b\x44\x0d\x1c\x1b\xc0\x35\x40\x26\xbd\x7e\x87\x6b\x4f\x7c\xab\xe2\x86\x0b\x17\xda\xae\x95\x4a\xa5\x07\xe4\x45\xf1\xb6\xd2\xeb\xff\xc7\xd8\x95\x9c\x4d\x8c\xea\xc0\x54\x26\x84\x36\x9b\xe0\x32\xb9\x78\xcd\x3f\x84\xf7\xb9\x4a\x53\xe5\x77\xfb\x8f\xee\xb6\x41\x80\x10\x85\x56\x94\x02\xfd\xf9\xce\x3c\x36\xc2\x21\x8d\xb1\xb0\x5a\x9a\xc6\x50\x78\x49\xd7\xf5\x6d\xa4\x1f\x9b\x76\xf0\x60\x8a\x66\x5f\xe3\x47\x41\x06\x99\x70\x13\x1d\xa9\xb3\x45\x54\x49\xaa\xdd\x67\x20\x45\x9f\x46\x91\xb5\x43\xdd\xe5\xe2\x07\xfe\x81\xc7\x5c\x75\x17\x8c\xa6\x98\xa6\xe1\x24\x33\x9a\xca\x0b\x6b\xa3\xa9\x2f\x84\x60\xa6\x01\xf3\xe0\xb5\xae\xbc\x32\x4e\xff\xb0\xfd\xfb\xcf\x74\x00\xc7\xa8\x4c\xf6\x33\xfd\x03\x24\x9b\x4e\xf7\x51\x83\x54\xfb\x87\x1c\x86\xa8\xae\x74\xbf\x92\xf4\x1c\x2f\x76\x0d\xa5\x3d\x1f\x03\x05\x4e\xd7\x87\x86\xf7\x24\xdc\x24\xfa\x06\x83\x89\x8d\xd2\x46\x7b\xf7\xe4\xe6\x51\x43\x53\x57\x74\x2d\x19\xf0\x8c\xb3\x7d\x68\xbc\x58\xb7\x6f\xda\xd3\xa3\xf1\x48\x11\x2c\x1c\x8d\x6b\x25\x65\xc2\x68\x0c\x32\x97\xdc\x18\x2f\xd8\xed\x9b\x59\x90\x76\x5a\xdf\x63\x07\xb4\x83\x76\x5a\x1c\x2d\x97\xc6\x44\xf0\xa6\xd3\xdc\x07\x86\xa9\x33\x64\xf4\xe4\x41\x0d\x93\xf0\xd7\xfb\xa0\x23\xb0\xc5\xfb\x86\x86\x54\x5f\x12\x47\xc7\xce\xf5\xc4\x76\x6a\x10\xcc\xa3\x80\xb7\x9b\x59\x12\xf0\xd6\xda\xc5\xd1\x49\x92\x7a\x60\xe2\x1c\xab\xd4\x06\x03\x8e\xed\x7a\x39\x5e\xb8\xdb\x6d\xb4\x1a\x2c\x8f\x61\xcb\xc2\x18\x9c\x7b\xf1\xcf\xe0\xe6\xf6\xff\x03\x59\x2f\xdc\x00\xbc\xd6\x2c\x1c\x99\x16\x3b\xbc\x75\x07\xed\x6c\x66\x38\x7a\xce\x79\xda\xe0\x39\xe7\x88\xe4\xf1\x42\xe2\xbe\x79\xa5\x02\x5e\xb6\x66\xc7\x84\xc4\xa2\x30\x3a\x07\xed\x06\x90\xc6\x4f\x87\xf7\x08\x72\xf8\xe6\x2f\x50\x18\x5f\x97\xaf\x41\xc7\x3a\x25\xb4\x1b\x23\x4e\x7e\xa1\x69\x8b\x3c\xad\xdd\xc4\xc3\x37\x34\x4c\xb8\xd2\x7d\x34\x29\x83\x35\xf2\x84\x72\xc6\xac\x18\x96\x86\x31\x31\xd1\x26\x0a\xaa\x4b\x65\x40\x19\x03\x9a\xcb\xcd\x4b\x39\xc1\xd1\x9f\x0e\x09\x48\x75\x16\x8f\x09\xe6\xf0\x34\x2c\x52\xe4\xa5\x42\xcc\xb1\x15\x2f\x63\x11\xdc\x75\xff\x80\xc3\xfa\x6f\x71\xab\x03\x9e\x77\xd6\xf7\x8d\x45\x7a\x35\xde\x45\xe6\x16\xfd\x0b\xbc\x2c\x14\x37\x98\x63\xdb\x57\xa3\xb1\xe3\x58\xb5\xb0\xdc\xe9\xef\xee\x67\x68\x4c\xec\x9b\x3a\x50\x6f\xce\x8a\xd8\xc1\xac\x32\x3e\x77\x19\x61\xa1\x24\x81\x63\x20\x89\x8c\x2f\xd9\x83\x91\xc1\xca\x2a\x38\xc6\x81\x70\x4b\x4b\xb6\xd4\x51\x9a\x57\x61\x10\x35\xfa\x1d\x07\x79\x4f\xd7\xab\x71\x60\x16\x4c\xd3\x81\x55\xd3\xcd\x66\x1c\x3c\x12\x7c\x3a\x43\x71\xa9\xe4\x9c\x63\xc0\x62\xba\x7d\x1a\x7c\x40\x92\xd8\xe4\x24\x2c\xb4\x58\x02\xd6\xdd\x84\xa0\x06\xa0\xec\xe6\xed\x84\x94\x93\xd5\x1e\x03\x83\xc1\xbe\x1e\x34\xb0\xac\x8b\x70\x8e\x71\x92\x66\x3f\x73\x37\x78\x50\x34\xa1\x1a\xe2\x8f\x33\x6b\x62\xeb\x93\xab\xf1\x0d\x75\xfa\x62\xd3\xbe\xf9\x0b\xb8\xc8\x59\xc7\x37\xa0\x97\xdc\x3e\xef\xe7\x3c\x69\x5e\x2e\xe4\x6d\xfd\x3c\x43\xfd\x6c\x10\x72\x25\x3b\x89\xbf\x6e\x88\x91\xcf\x33\x28\x10\x5a\x1e\x4c\xa0\xed\x00\xb0\x01\x93\xa9\xbd\x9e\x06\x33\x46\x1a\xd2\x0f\x3a\xd5\xd9\xed\x78\xb0\xde\x87\x11\xf8\x78\xd0\xa7\x21\x03\xcd\xa4\x9f\xff\x2b\x60\x8c\x68\xa2\xd7\x9c\xd4\x71\xe3\xe9\xf8\x5e\x83\x7c\x02\xcf\x22\x11\x05\xda\xac\xbc\x18\x0f\xd1\xb2\xdb\x43\x9a\x02\x9f\x82\x2f\x94\x9d\x0e\xba\x1b\x88\xe8\xa8\x9f\xf6\xa1\xa1\xf6\x41\x0c\xb5\xe6\x47\x20\xa0\x9e\x9b\x1d\xb1\x83\xb5\xeb\x75\x90\xc7\x2f\x37\xd0\xd2\x0f\xf5\xdf\x7f\x9a\x63\xd7\xe3\xd7\x39\x65\xfe\x82\xf0\xa3\xfa\x0d\x04\xa1\x48\x16\x07\x63\x7b\x87\x3f\x38\x70\x39\x34\x09\x17\x52\x4b\x4d\x3d\x03\x31\x4d\x3f\xe3\x48\x14\x62\x8a\x8d\x42\xce\x1d\x6c\x2c\xb5\x23\xb9\x12\x5b\x56\x7a\xd0\x33\x5c\x6e\x3f\x2d\x90\x71\x86\x9e\x03\x69\x2e\x45\x21\x03\x7f\xc3\x24\x6e\x20\x79\xf9\x99\xfb\xa7\xfa\x07\x64\xaa\xdd\xdc\x03\xf6\x7c\x35\x05\x88\xfb\x75\x03\x8c\xe2\xf0\x0d\x24\x4a\x22\x0d\x8d\xa1\x50\xff\xd1\xfc\x09\x8c\x6f\x1e\xe4\x8b\x4d\xeb\x67\x16\x5e\x68\x5a\x7d\xe2\x45\x61\x72\x6b\x7f\x9f\xee\x53\x7a\x06\x89\xda\xe0\x91\xf9\x19\x45\x72\xcd\x59\xd5\x98\x5e\xdc\x59\x8d\xb7\x22\x0d\xc0\x12\xbe\x01\x15\xeb\xf6\x79\x06\xaf\xb7\x3f\x5d\x82\x02\xfa\x57\x1b\x83\x03\x98\xd5\xf1\x7d\xc1\x5c\x8d\xda\x68\x51\x73\xa7\xfa\x03\xb0\x89\xe7\x8b\x10\x55\x7a\xb6\x68\xbc\xd8\x6a\x2b\x04\x43\x80\x7d\xe3\x88\x46\xfa\x35\x03\x99\xf1\x46\x9b\x39\x5a\xca\x55\x7f\x01\xb5\x98\x44\x7d\x24\xe4\xdc\xdc\x04\x0f\xac\xe1\x26\x10\xee\xe9\x59\x6f\x08\x63\xf7\xff\xd4\xc8\x4a\xc6\x05\x32\xde\x4c\x8f\xa2\x57\x14\x43\xf3\xfb\xbc\x89\xea\xba\x10\x3d\x57\xc5\x5f\x0c\xaa\x98\x34\x31\x1d\x52\x51\x20\x22\x3a\xb2\x53\x7c\x3e\x48\x9a\x35\x08\x62\x54\x73\x56\x67\xc2\x18\xfd\x3f\x20\x23\x85\x93\x02\xc6\x6b\x07\xb9\x07\x22\x89\x9d\x2f\x26\x58\x9f\xed\xf3\x3f\x7c\xee\x75\xc1\x8f\x81\x93\xa3\xfb\xfd\xdc\x6d\xfe\x01\x06\x27\xe9\xc5\x63\x20\xb2\xc7\xaa\xf5\x40\xbd\x36\xd5\x25\x18\x41\x00\xaa\x03\x32\x62\x83\xf7\x83\x9f\xa1\x88\x11\x08\x88\xe0\x7d\x5f\xb3\x1c\x9c\x65\x4b\x41\x38\x0e\xda\xf1\x2b\x58\xa1\xd9\x5a\xdf\x80\x16\x57\xf5\x11\x47\xd0\x12\xae\xd2\xbd\x23\x02\x28\x41\x46\x94\x40\xd2\x1c\x9b\x12\xe3\x85\xa3\xd5\x46\xec\x98\x89\x12\xd4\x62\x56\x86\xf1\x2c\x4c\x9e\xd0\x02\xfe\x31\x71\xf6\x58\x8a\x31\x4f\xb9\xbb\x20\xfe\xb4\xd8\x9b\x07\x9e\x45\xe2\x24\x89\x6e\x2f\xb7\x9c\x5f\x48\x90\x20\x12\x90\x3c\xd1\xf6\xac\x58\x4c\x44\xe8\x2d\x95\x00\x55\x37\xaa\xc8\x0a\xcc\xcb\x6f\x30\x8d\xbe\xfa\x60\x3e\x45\x5f\xda\x02\x7a\x60\x9f\xb0\xb1\xf2\xd4\x17\x99\x8b\x97\x03\x2f\x0e\xcc\xf7\x1f\x59\xbb\x12\x89\xb8\x0f\xa8\x27\xbd\x16\x48\xb8\x58\x04\xf1\x02\xf9\x15\xad\x94\x8d\x1d\xa2\x45\x40\x39\xe0\x27\xf8\x59\xdb\x9d\x1a\x54\xef\x98\x1d\x92\xc5\xb2\x7a\xe7\xcc\x6b\x0c\xc8\x7d\xe8\x38\xcd\x60\xc6\x1b\xeb\xdf\xe3\xc8\x89\x54\x17\x07\x95\x60\x82\x74\x71\xe0\x32\xe2\x4d\x7b\x00\x34\x5a\xb0\x1c\x94\x0b\xde\xf6\x59\x48\xd9\x1f\x40\x5a\xfb\x7c\x20\xee\x1d\xee\x11\x34\x7b\x6d\x5f\xdc\x3b\x9b\xf7\x4c\xea\x70\x2d\x5f\x59\x36\x59\xf8\x2e\xe0\x19\xe8\x14\x35\xc1\x24\x37\x61\xc1\x73\xd2\x21\x45\x97\xe5\x38\x81\xcd\x7f\x6e\x91\x12\xdb\x7b\x00\x4a\xdc\xed\xf3\x01\x35\x69\x5e\xa9\x33\x79\xe1\x6f\x67\xd0\x89\x8c\xb0\x61\x0a\x21\xf8\x3e\xcf\x10\x2b\x96\xb5\xf0\x2b\xb4\xf2\x35\xe0\x57\xd8\x2d\x18\xaf\xe4\x76\xcd\x21\xfc\x0a\x7d\xc5\x0c\x80\x6a\x87\x0c\x07\xd4\xbb\xed\x73\xa0\x5c\x13\xee\x9a\xfe\x60\xf1\x05\xcd\x19\x1d\x11\x87\x9f\x79\xf1\x95\x06\x22\x98\xb8\xdd\x2e\x50\x71\xe1\xd6\x66\x04\x78\x71\x90\x9a\x64\xc6\x4a\x7f\x80\xc4\x0d\x05\x83\xb7\xec\x0d\xce\xb2\x18\xb9\x73\x87\x6a\x94\xf0\x17\x70\x5e\x86\x20\x0c\x37\xc0\xbb\x21\x57\x3c\x8d\x37\x29\xd0\x18\xe0\x3e\xb0\x79\x4c\xa9\x11\xb6\x30\x7d\x36\xa8\xab\xd4\x00\x63\x59\x7c\x2f\x0e\x54\xba\xf9\x9c\x9a\x0f\x8b\x10\xfb\xff\x2c\x3f\xa5\x67\x0e\xc1\xbc\xfb\xd0\xeb\xc2\x27\xca\x93\x13\xaf\x69\x7b\x81\x79\x58\xb9\x1f\x0f\xe3\x25\xdc\x05\x9c\x24\x9c\x25\x21\x1e\xe8\x64\x2d\x95\xe0\x60\xe0\x8b\xe8\x04\xf2\x6e\xb6\xa4\xce\x1f\x6e\xcb\x1a\xd4\x44\xe9\x9b\xa2\x1e\x27\x94\xd0\xa5\xbb\x81\x0e\xa5\xde\x7f\x0b\x3d\x19\x88\xa2\xcc\xd1\x63\x6e\xe4\x3e\x35\x48\x98\xec\xcb\xc2\x84\x9a\xd7\x5e\xaf\x13\x99\x1f\x95\xfb\x76\xcc\x8d\xdb\x4b\xb7\xe9\xc9\x5c\xe7\xbe\x8f\x4f\x14\xe2\x1b\xce\x4e\x31\x09\x84\xa7\xfb\xa4\x61\x47\x6b\x37\xa1\xf7\xb5\x03\xf2\xa4\x77\xa4\xa4\xf9\x64\x70\xb2\x6f\xf4\x93\xb5\x6e\x9a\xa9\x2e\x60\xaf\xe9\x67\xc4\xf0\x68\x25\x26\x9c\x0b\xb6\xe9\x16\x09\xd2\x8a\x49\x20\xe0\xf1\xcc\x15\xde\x3c\xb5\xed\x66\xc5\x16\xf0\xb8\x2b\x25\x95\xd0\xe9\x44\xf8\xb2\xb1\xf1\xac\x59\x2a\x49\xcf\x0b\x0a\x78\x75\x59\xb9\x4d\x4d\x64\xcd\x72\xaf\x7a\x06\x5a\xff\x34\x48\xdd\xe5\xf2\x0f\x49\xa3\x9a\x6c\xc0\x38\xd2\xce\x4c\x84\xc2\x38\x17\xd6\x6c\xf4\x04\xd7\x18\x1a\xb2\x80\x87\x9f\xa1\x4d\x5f\x7e\xa6\x8a\xd6\xab\x4f\x78\x3c\xdd\x20\x62\x8a\x86\xff\xe7\xad\x69\x99\x02\x6a\x68\x75\xc4\x4c\xe6\x7b\x54\xe2\xe2\x31\xe1\xaf\xa0\x4c\xe4\x63\x36\x72\x8b\xc6\xc4\xfc\x8f\x3a\xb9\x27\x15\xb4\xfe\xbe\x43\xbb\x63\x12\x3b\x73\xd4\x68\x16\x99\xd9\x5c\xc0\x71\xf6\x1c\x93\x06\xd9\xb9\xcf\x97\x7b\xa4\x46\xb7\xbb\x09\x72\x97\x56\x92\xde\x9e\x8e\x9c\x9a\x3d\x53\xd7\xea\xf9\xc2\x3e\xf7\x33\x16\x6a\xfe\x29\x6d\xcf\x1c\x38\xc5\xcd\x16\x08\xa2\xf9\xf0\x72\x7a\x1f\x78\x7b\x8c\xe4\x0b\x91\x13\x04\x06\xd2\x50\xcc\x17\xbb\xf6\x22\xbd\xf9\x0c\x5e\xe0\x75\x5f\x9f\x41\x75\x92\x9f\x21\xbe\xcd\x69\xa9\x6c\xf5\x42\xc3\x03\xc1\x95\xf3\xc7\x64\xf1\xe2\x10\x76\x98\x88\x7a\x09\x65\x56\x1e\xf3\x45\xb7\xbd\x48\x63\x3c\x03\x22\xde\x0b\x87\x92\x3b\x8e\x57\x9b\x88\x79\x89\x69\x39\x42\x5d\xab\x87\xc9\x98\x17\xc7\x38\xcd\x89\xec\xbe\xde\x71\x73\x50\x4c\xf8\x05\xae\xac\x8e\x95\x39\x2f\xd0\x24\xe6\x78\xe1\x6d\x38\x35\xe8\x9c\xa4\x51\xef\x53\xfb\x6a\xf7\xd7\x09\xec\xea\x8b\xd3\x5c\x38\x18\xcd\x4b\x6b\xf0\x03\x91\xb0\x68\xed\x17\x1e\x98\x70\x51\xd8\xbc\x9a\x2b\xe7\xcd\x3f\x60\x83\x58\x3a\x2e\xd2\xa4\x16\x5f\x64\xda\x8b\xcc\x07\x93\x7e\xa5\xbe\x6f\x4e\x40\x53\x7b\x00\x4d\xd6\x52\x76\xd2\x9a\xb9\x27\x3b\xb8\x89\xf1\xef\x3f\x9f\xfc\x8e\x93\x21\x2b\x96\x4c\xfb\xc4\x0d\xd6\xff\x27\x7b\x68\xd8\x3b\x69\x36\x09\xbc\x36\x08\x9a\xce\x9d\xf5\x2e\xd4\x22\xd1\xae\x6c\x1e\x13\x65\x7e\xec\x87\x31\x13\xeb\xea\xaa\x3f\x89\x75\x2d\xaf\x59\x35\xd1\x09\x88\xe7\x0b\x76\x7b\xf1\xc4\x03\xeb\x7e\x66\x01\x58\xb6\x98\xbb\x8e\x1d\xcf\xee\xe0\x60\x83\x1a\x64\x66\x70\xd4\x18\x09\x55\x9d\x43\x69\xc2\xd9\xd4\x7e\x7a\xf3\xec\x7c\x41\x34\x02\xaa\x16\x8f\xe1\x85\xaa\xd3\x39\xd3\xe6\x09\xff\x6d\xaf\xf4\x09\x92\x7c\x58\xb3\x4c\x90\x57\xfe\x24\xab\xe8\xc6\x39\x4f\xb0\xf3\xa7\x43\xa8\x99\xcd\x8d\x0c\xaa\x76\x80\xde\xbc\x92\x57\xd4\xc2\x0b\x57\xab\x23\x40\x26\xa3\x60\x54\x3a\x65\xcc\x0b\xa2\xc4\x5d\x5e\x98\x66\xdd\x52\xe6\xc5\x5b\xb0\xe5\xed\x8b\x67\xbb\x72\xdf\x8f\x09\xdf\x55\xe7\x60\x9a\x4c\x11\xe9\x1c\x61\x13\x29\x22\xd7\xa7\xc5\x07\xf3\xae\x06\xa1\x02\x2e\x16\xf0\x2f\x58\xed\xf6\x03\x9c\x70\x76\x2d\x3e\xe4\x00\x45\xed\x8c\x30\x6f\x6a\x70\xaa\x1b\xe0\x19\x25\x38\x3c\x6f\xfa\x4f\x1a\x6f\xdc\x9c\xe8\xe2\x37\x2e\xb6\xe1\x46\x99\xb8\xcd\xcf\x0f\x88\xd0\x33\xe0\xa9\xc3\x93\xe6\x93\x57\x31\x51\x99\xf0\x53\x10\x7b\x12\x7e\xda\xa9\x6c\x3e\x60\xd8\xe2\x26\xa0\x1d\xfb\x74\x91\x0c\xeb\x0f\x08\x72\xbc\x4d\x1f\x5a\xe8\xa3\xfd\xe5\x1c\x5a\x48\xf4\x63\xb7\x91\xf5\xc3\x3c\x6b\x8b\x2e\x46\x5e\xdb\xc4\xb7\x7e\x60\x0d\x11\xbc\xa0\x26\x36\xee\x5b\xbf\x1c\x62\xd7\x0f\x39\x44\xff\x40\xde\xd8\xf4\x4c\xb9\x12\xa6\x61\xa7\xe8\x72\x1f\xd0\x78\x0a\xf8\xad\xdf\x89\x16\xfc\x01\x43\xe4\xfd\xfc\x22\x70\x7b\x42\x2f\x28\x96\x8b\x0c\xa3\x6b\xa3\x52\x56\xdc\xb6\x36\xda\x5a\xfd\xc5\x56\x30\x4a\xf5\x98\x9a\x67\x1d\x01\x2b\x1d\x25\x74\x90\xad\x8d\xd2\xb3\xbb\x13\xaa\x0c\xfd\x05\xf6\x79\x75\x93\xc0\x17\xd3\x34\xc0\xbd\xd0\x34\x15\xac\x84\xc4\xf5\x2a\x20\x49\x0b\xbf\xe0\x9c\x5b\xaa\x9f\xb9\x47\xd5\x3f\x42\x89\x1c\x11\xbf\x10\x4a\x54\x04\x17\x56\x21\x3d\x5a\x86\x8a\x1d\x27\xf1\xbf\xe8\x69\xeb\x3b\xed\xaa\xb4\xa8\x09\xe5\x2d\xe8\x89\x4b\xf5\x17\x3c\x61\x74\x6b\x5f\xd0\x13\xab\x8a\xfb\x58\x35\x11\xbd\xbf\x00\xb7\x7b\x56\x59\xc8\xc7\x06\xe2\x55\x21\xeb\x3e\xcf\x38\x51\xa4\x5f\x59\xc0\xba\xc3\x29\xec\x56\xea\x7a\xcd\x8f\x4c\xf7\xe8\x54\xe3\x0b\xe8\x75\x38\x29\xdd\x6a\x8c\x56\xf3\x33\x8f\x31\xe1\xdf\x85\x32\x3a\x4e\xed\xb3\x3a\xb6\x40\xf3\xff\x28\x6e\xe2\x51\x75\x5e\xee\x25\x07\x56\xe7\x30\xfd\xcc\x60\x4f\x2d\x5d\x4f\x51\x24\x1a\x3b\x18\xdc\x33\x0b\x67\x02\xe7\x47\x58\x50\xd4\x3a\x45\xe5\x1a\x2c\x85\xa5\xff\x07\x78\x47\x18\x69\x0d\x84\x0a\xe8\x00\x58\x23\xd9\xd9\x3f\x34\x4e\x8a\x48\x1c\x14\x5d\x1e\x34\xc3\xbe\x3f\x9b\x70\x20\xf7\xdf\x72\x13\x14\xf1\x66\x30\x68\x77\x8b\x47\xf9\x42\xda\x5e\x9a\xff\xa7\xbc\x35\x07\x32\x51\x4f\x71\x8b\x18\xa5\x37\x25\xbc\x0d\xea\x87\xa6\x84\xc0\x1e\x27\x4a\x52\x56\xcf\x0b\x21\xb1\x19\x12\x90\xd8\x16\xac\x05\x04\x5c\x74\x8c\xad\xe0\x1e\x71\x7b\x58\x38\x0b\x16\xba\xe4\x3a\xa7\xfb\x4a\x40\x3c\xdd\x03\x0a\x1e\xe8\x50\x59\x8c\x02\x1f\x7e\xe6\x98\xd4\xc0\xc4\x4a\x75\x3f\x63\x48\x92\xff\x0b\xe8\xb6\x19\x7b\xae\xb9\xe3\xf2\x2f\x92\x58\xe8\x26\x3e\x3f\xdc\xc8\xca\xad\x31\x2c\xf4\x30\xfc\x4c\xc4\x6d\xc1\xf1\xa2\xd9\x0f\x04\x5a\x08\x8a\x2a\xe1\x67\xee\x20\x21\x9a\x85\xac\x8f\x2a\x6a\x39\x16\xa2\xa4\x3e\xfb\x63\x81\x7b\xe3\x4f\x17\xa1\x45\x60\x2b\x25\xd3\x4a\x60\x6b\xb9\x08\xdc\x3a\x9c\x5c\x71\xed\x04\x1f\x9e\xb3\x1d\xab\x38\xfc\x05\xc5\x8c\xd4\xb6\x8b\xf5\x27\x9d\xfc\x68\xed\x5c\x15\xf3\xe6\xce\x0d\xa5\x21\x52\x4f\xeb\x34\x2f\x8b\x15\xbd\x7d\x69\x58\x07\xa6\x55\x37\xda\x75\x40\x3c\x7b\xe1\xa1\x96\x2d\xe1\x06\x28\x14\x3e\x2f\x64\x82\x69\x8d\xeb\x48\xe6\xd2\x38\x10\x28\x55\x04\xf1\xd7\x91\x1b\xc6\x5f\x80\x6a\x4f\xfc\x81\x73\xce\x02\xfa\x4c\xa2\xb5\xf6\x27\xb9\x4d\x0d\xc0\x97\xb6\x08\xd1\xaf\xd4\xbb\x4e\x7f\x10\xff\xfe\x13\x76\x6a\x5b\x0c\xd1\xb6\x3a\x63\x11\xbd\x7a\x9e\x4e\x06\x4b\xb8\x81\x13\x41\x4a\x1a\x35\x03\xab\x3e\xdf\x73\x08\x5a\x2a\xb8\x23\x0c\xa7\x91\x5c\x17\xf8\xc3\xc7\x2a\x6b\x8c\xbb\x62\xc0\xba\x30\x06\xcb\x4e\x68\x52\x6d\xcb\x5b\x17\xf0\xb6\x17\x0e\x6a\x51\x47\x47\x2e\xa8\x45\x8b\x94\x92\xeb\x2e\xe0\x6e\x51\x74\x13\x01\x79\x08\x77\x8a\x46\xff\x00\xfe\xb3\x64\xbc\x21\x45\x3c\x69\x37\x4f\x1c\xef\xb0\x9b\xce\x62\x3e\x93\x6e\xac\xb4\x59\xe1\x06\x8d\xde\xd3\x4f\xd6\x79\x52\x93\x88\xa3\x72\x91\x83\xf5\x24\x91\x5a\xfa\x87\x37\x25\x8b\xc6\x87\xdb\xc8\xf8\xe1\x49\xc9\xe2\x1f\x20\xec\x7c\x72\x3e\x28\x93\xe6\x6d\x46\x8f\x83\xe5\x3e\xa1\x91\x98\x96\xb6\x0f\xd8\x4f\x90\x68\xa7\xcb\x81\x15\x4b\x3b\x35\x9f\x8e\x3a\xd9\x7f\x18\x86\x90\xdf\xce\xc4\x91\xd6\x2c\xed\x88\xac\x52\xa5\xcb\xb1\xc3\x41\xd6\x5e\xf4\xfb\x8b\x0c\x3f\x4a\xf0\x9d\xc8\x50\x8b\xbf\x23\x12\xab\xd9\x9a\xbc\x6f\x64\x1f\x1d\xa5\x3b\x91\x9e\x18\x72\x47\xdc\x78\x31\x05\x1b\xf6\xb1\xc4\xd1\xce\xc4\x90\x8e\x42\xdd\x91\x4d\xdc\x1e\x90\xfb\x06\xaf\xba\xe5\x1e\xb9\xad\x35\x8f\xfb\x86\xc5\x0e\xb7\x78\xf1\x05\x77\x09\x8e\xd4\x99\xb2\xc3\xa3\xd6\x4e\xcb\x7b\xfa\x14\xb8\xcb\x82\x00\x49\xe1\xe5\x1d\x50\xd1\x5e\xf8\x3b\xa1\xa2\xd7\x81\x55\x24\xad\x1d\xdb\x59\x15\xd2\x31\x4d\x3b\x02\xb9\x1c\x51\xb9\x17\x3a\x5a\xfb\x03\x02\x35\x4d\x42\xe1\x36\xd6\xfb\xc8\x35\xae\xa2\xc2\x63\xaf\xd4\xe2\x68\x9f\xef\xc8\x2d\x6e\xc7\xe3\x9d\x50\x51\xb7\xe2\x3d\x7d\x5d\x75\xab\xdd\xe1\x36\x60\x37\xe3\x1d\x8a\x56\x47\x6c\xee\x70\x23\xb0\x33\xc9\x0e\x28\x39\xd6\xf6\xa7\xec\x71\x3b\xd3\x0f\x55\x7f\x7d\x93\x5e\x0f\xe0\xe1\x22\x89\x40\x38\xba\x16\xaf\x41\x23\x5f\x48\x12\xee\x2f\xf0\x9c\xdd\x04\x37\x48\x09\x49\xc6\xbd\x71\x40\x7e\x9f\xf8\xc9\xac\xda\x18\xda\x2f\xe9\xbc\x23\x3f\x91\xd5\xfa\x3b\xdd\x5c\xed\x80\xb3\x33\xc1\xa3\x53\x48\xef\x50\x8b\x76\x07\xda\xef\xe9\x34\xa0\xb3\x72\x67\x46\x47\x07\xfc\xec\x28\x09\xe9\x7b\xf3\x0e\xec\xaa\xaa\xde\x63\x4f\xb5\xe8\xa7\x05\x7a\xbc\x88\x35\x50\x99\xdc\xfa\x8f\x7d\x90\x19\x45\x24\xf3\x35\x3a\xc5\xc6\xfe\x22\xcb\x5e\xcd\x2b\xac\x8b\x63\xcf\xea\x7d\xf0\xea\xee\x2d\xf5\x22\xc9\xd9\x3d\x75\x91\xe2\x51\x73\x1b\xdc\xd4\x1a\x14\xfc\x50\xbb\x37\x04\x71\x9e\x1b\x4c\x5c\xe7\x4d\xfd\xc2\xb4\xa9\x22\xc8\x63\x67\x61\x1b\xa1\x94\x7d\xa2\x96\x9a\xa5\xc8\x24\x6a\xf1\xea\x4e\x22\x6c\x0f\x02\x3e\xa3\xf5\xe7\x17\x68\x67\x32\xcd\x93\x37\x7b\x1d\x2b\x3b\xd4\x96\x55\x90\x7c\x9f\xb4\xbb\xea\x83\xf5\xc3\xff\xa2\x71\x51\xba\x9a\xc8\x45\x50\x2f\x4d\xd1\xbe\x5e\x16\x74\xfd\x95\x9d\xe1\xed\x56\x74\xee\x40\x6e\x0e\x17\xd8\x77\x76\xa1\x41\xec\x94\x9e\xe6\x96\x04\x67\x9b\xdf\x78\x05\xb4\x43\xcb\xf7\x3d\x47\xe5\x17\x4e\xd0\xe0\x2e\xa8\x30\x16\xd1\x89\xbc\x3c\x0a\xe8\x00\xab\x7b\x38\x1a\x89\xd6\x62\xc2\x7e\x5d\x3d\x4a\xc0\x26\x07\x85\xec\xcc\x6c\xe3\xd4\xd9\x3b\x51\x90\x0e\xb2\x1d\xf1\xe4\x55\xea\x84\xfd\x64\x8f\xea\x80\x95\xbf\x9d\x9c\x7b\xa7\x57\xa5\xb5\xb7\xfb\x45\xa0\x65\x11\xfd\xa2\x94\xae\x1a\xb8\x63\x47\x8d\x15\x07\x4a\xef\x0c\x00\x72\x1a\xdc\xfd\xe2\xbc\xf9\x05\x38\xee\xeb\xc0\xdf\x99\x67\xc6\x91\x1b\x3b\x93\x63\x3b\x69\xe9\x0e\x1c\x53\xa5\x51\xdb\xaf\x07\xcf\x22\x29\x71\x8d\xa6\xe9\x6e\x78\xd6\x18\x6e\x02\x54\xc1\x96\xfd\x85\x31\xd5\x99\x0f\xf7\x9b\x24\xfa\xff\x24\x49\xf3\x86\x8a\x28\x9b\xb5\xb3\x3b\x7c\x1e\x7f\x9b\x8f\xbe\x87\x4d\x68\x25\x10\xaf\xe3\xa4\xb7\x3b\x2b\x96\xf8\x2e\xb2\x3f\x39\xca\xff\xbe\x38\x58\x91\xc4\xfa\xaf\xe3\x47\xad\x44\xf8\x87\xf6\xef\x3f\xd5\x99\xa3\x0f\x40\x08\xbb\xbb\x1d\x54\x37\x59\xa3\x7b\x10\x53\x7c\xba\x20\xcb\x0a\x5c\x1d\x80\x08\x55\x17\xdb\x03\x5e\x85\xb6\xa3\x1c\xb4\x9e\x3a\x70\xe3\xd8\x78\xf6\x14\x7f\xf1\x0e\xe3\xbd\x57\xfe\xe1\x2c\x3a\x36\x9e\x3d\x02\x08\xc7\x86\x95\xf4\x88\x10\x51\x63\xbc\x70\x14\x66\x4f\xf4\x33\xc0\xa0\x8e\xc6\xa3\xf0\xf0\xd5\x69\x7e\xa0\x28\xb4\x19\xfe\x60\x78\x8c\x75\xd8\x07\xd3\x3e\x5b\xe7\x7c\x14\x1a\xb9\x8b\xdb\xe4\x79\xa8\xf3\xf6\xa8\x05\xd9\x60\x45\x44\x2a\x83\x3c\xad\x75\xb0\x4d\xff\x00\x69\xa4\x83\xe2\xe0\x09\x2f\x85\xd7\x01\xe5\x90\x33\x8b\x1d\x0c\x6e\x29\xee\x81\xb7\xba\xf0\x07\x60\x16\xdd\xad\x0f\x1c\xe2\xdd\xeb\x96\x69\x67\xc4\xe1\x47\xc3\x46\xd7\x55\xe2\x60\x12\x67\x87\xcb\x1c\x8d\x24\x8a\x64\x84\xa6\x18\x74\x1c\x2c\xe1\x3c\xa7\x5f\xa0\x83\x91\x66\x85\x49\x9b\x5d\x6b\xe0\xc0\x99\x5d\x9d\x86\xff\xe8\x10\xb1\x26\x9a\x91\x28\x4e\xe4\x75\xd0\xd4\x69\x6e\x83\xf6\xa9\x4a\x94\x1c\x79\x82\x9b\x5d\x3b\xf3\xa9\x09\xd2\x1e\x3c\xc2\x05\xf4\x8f\x8e\x5d\xd7\x4c\x42\x12\x69\x1a\xc0\x70\xd2\xba\x1d\x83\x16\x05\xdd\x70\x0e\xe8\x97\xaa\x6e\x1b\x07\x6a\xe1\x59\xd1\x77\x20\xd8\xda\x7a\x99\xe3\x3d\xf3\x8b\x63\xc5\x0f\x96\x74\x76\xb2\xdd\x03\xd1\xd8\x2e\xd1\x70\x00\x03\x0c\xbb\x0e\x1e\x88\x55\xb1\xf1\xea\x40\x2d\x3c\x07\xba\x1d\x83\x1c\x6b\xee\x48\xed\xd2\x32\x4d\x37\xdf\xf0\x27\x08\xa0\xf5\xb4\x04\xc5\x97\x04\xdc\x01\xf5\x52\xb5\x72\xe7\x08\x5c\x4f\x24\x9d\x0e\x94\x15\x71\xaa\x96\x83\xea\x25\x47\x08\x1c\x11\x74\xe0\x17\x3f\x24\xd0\x58\xee\xf4\xc0\xcc\xe9\x0b\x86\x9e\x58\x1b\x79\x50\x21\xe4\xc0\xfc\x03\x06\xd2\xea\xdd\x4e\x60\xd1\xdd\x42\xe7\x30\x44\xd5\x1c\x70\xe7\x15\x0d\x08\xf1\x76\x12\xaa\x63\xee\xf0\x07\xf6\x33\x63\x31\x4c\x01\x70\x88\xd7\x06\xfa\x21\x3b\xd1\x1d\x70\xdc\x73\x1c\xfb\x01\xe3\xe7\x66\xb7\xd1\x03\xe1\x25\x0e\x8f\x39\x16\x05\xec\xf2\x0f\x38\xba\x84\xad\x8f\x9d\x43\x12\x45\xcc\x78\x63\xb5\xdb\xb1\xf3\x46\xed\xd5\x66\xf4\xb4\x95\x5a\xc7\x4e\xff\x14\xaf\xf6\x4e\xb0\x2c\x4c\x78\xec\x60\x72\x61\xe5\xe3\xa0\xdf\xa5\xa5\x24\x34\x3c\x2e\x96\x75\x40\xc3\xe3\xca\x6c\x07\x81\x89\xf0\xda\x01\xe3\xa4\x71\xc8\x71\xb0\xde\xa3\xdf\x87\x30\xf1\x26\xc8\xfc\xcf\xfe\x9e\x99\x4b\xb4\x6d\x11\x5e\x62\x27\xb4\x23\x71\x8c\x99\xe9\xe0\x41\x31\xdd\x02\x8c\x68\x9e\xa6\xf3\xf7\xef\x3f\xad\x0b\x73\x1e\xb0\x55\xf6\x15\x7f\x3a\x86\x60\xc7\xb4\xdd\xf2\x38\x21\x35\x04\xe4\x0e\xd8\x25\x9b\x7d\xab\x0e\x64\x7f\xb6\x89\xe4\x38\xe1\x07\xe5\x2d\x0b\xd5\x4e\x75\x9e\xe1\x03\x66\x48\x5b\x20\x8e\x8b\x13\x2a\x72\x5f\x90\x54\x3f\x13\x72\xf1\x46\xe5\xff\x53\x48\x68\x46\xa1\xfa\xb1\xf5\xf7\x40\xf2\xe6\xb0\x0d\xfc\xb8\x50\x3a\x40\x18\xe8\x20\x46\x12\xb0\x3b\x98\x9c\xd9\x19\x16\x8e\x9b\x59\x23\x74\x1d\x3a\xa0\xa9\x71\xd1\x9e\x03\x2e\x6e\xae\xf2\x73\xb0\x4c\x9c\xab\xf4\x1c\x37\xbb\xd0\x2c\x3c\xd9\x85\x96\xf5\xc1\xa8\x8d\x5f\x1e\x5e\x7f\x7c\x70\x3e\x4c\xfe\xe1\x53\xe9\xa1\x8e\x4c\x3b\xfc\x44\x14\x73\xd8\x0a\x72\xb2\xde\x86\x4a\xe4\x8f\xf3\x47\x9c\xae\x3d\x79\xc2\x08\xe7\xb2\x28\xe7\x2f\x3b\x29\xfa\x21\xe7\xce\x5f\x30\xf9\x8f\x04\xd1\xf9\xcb\xa1\x4e\xfd\x00\x81\xaa\x4d\x79\x6e\x79\x6c\xa8\x09\x24\x48\xb6\xf5\xf3\xdc\x78\xd6\xe9\x7c\x3d\x37\x46\xbd\xab\x45\xba\x9d\x59\xd9\x77\x6e\x9c\x7e\x7f\x40\x9f\x1b\x9d\xc8\x27\x54\x1d\x2e\x37\x71\x22\x65\x8d\xeb\x8c\x9c\x85\xb9\xb0\xb4\x67\xce\xc2\x63\x41\xa7\xe1\x99\xe1\x10\x62\xd3\x13\x2e\x5f\x0e\xfc\x3d\x13\xd9\xe8\xd0\x3f\x91\xee\x38\xac\xb3\x3c\x2b\x9d\x79\xfc\x8c\x2a\xc2\xba\xa7\x9f\xcc\x7e\x5c\x3f\x1f\xf0\xf4\xd2\x89\x7b\x22\xc7\x4c\x93\x2c\x39\x5f\xe8\x32\xbb\xae\xfe\x67\x63\xa2\x4b\x35\xd0\x10\xd3\xe1\x79\xa1\x5d\xac\xfb\x99\xba\x04\x31\xf6\xd9\xb2\x47\xf5\xc0\x00\x06\xd7\xfb\x39\x1b\x49\xd0\x34\xb4\x9c\x6a\xfd\x80\x08\x06\x2b\x8f\xcf\x4c\xb9\x37\xfd\x43\x72\xa1\xfa\x40\x0a\x19\x17\xea\x38\x61\x28\x53\x01\xf2\x71\x76\xde\x89\x75\x66\x9f\x8c\xaa\x35\x5f\x43\xf9\x10\xd6\xa4\x9e\xfd\xc4\xbc\xf8\x03\xd4\x50\xd7\x6e\x3b\x61\x28\x73\xed\x90\x13\x3e\x5a\x4e\x6a\x7a\x22\xea\xd6\x09\xe7\x4f\x2a\x2b\xcc\x1d\x83\x8e\x91\xd5\x1f\x60\xdf\xe8\x84\x3f\x61\xe4\x72\x51\x84\x33\x71\x88\xa0\xcf\x39\x72\x5e\x35\xe8\xc1\xa5\xd4\x33\x60\xc7\xe7\x03\xe4\x32\x76\xa2\xb0\x13\x21\x0a\x4e\x4a\x7d\x06\x6f\xf5\x3a\xaf\xcf\x0c\x49\x30\x4d\xcc\x5d\x6c\xc5\xec\x19\xb9\xb9\xfd\x09\x32\x36\xea\x48\x3f\x33\x68\xe1\xd3\xc9\x85\x8d\x68\xa2\x30\x8f\x5e\x18\x98\xad\x9c\xc8\xfc\x9c\x9c\x37\x11\xfd\x82\x94\xea\xe2\x53\x27\x13\xd3\x7c\x7f\xe0\x26\x5a\x7f\xf2\x52\x38\x27\x24\xbf\x97\x7d\x12\x62\x74\xd3\x03\xf7\xe9\xea\xfe\x17\xfb\xd3\xba\x20\x6d\x8d\x2d\xa2\x27\x41\x8d\x59\x93\xca\x14\x41\x92\x73\x61\x40\x02\x41\xe7\xa2\x82\xdd\xff\xe7\x80\xdc\x40\x0e\xc8\x6f\xb0\xe6\x97\x9f\xc9\x4a\xde\x50\x8c\x67\x58\xba\x0d\x9f\x88\x67\x70\x70\xca\xb9\xc8\x5b\xfe\x00\xc2\x4f\xb8\xfe\x5c\xbc\x80\x0b\xd2\x9c\x8c\xcb\xb5\xaa\xf9\xdc\x21\x70\x4d\x24\xf3\x1c\x9b\xfd\x51\x80\xb7\xd9\xa7\xf1\xdc\x19\x5b\x26\x92\x32\x75\xa0\x17\x7a\x4f\x76\xf6\x0f\x2f\x67\xb8\xac\xd7\x79\x10\x45\xbb\x49\xc0\x28\x57\x5e\x3a\x0f\x0a\x7d\x33\x1f\x22\x75\x5d\xc9\xfb\xcc\xb4\x34\x1e\xe7\x31\x51\x85\x46\xc3\x3c\x58\x43\xd4\x1f\xec\xe8\xc1\xff\x03\x53\x0b\x6f\x9e\x07\xb2\x68\x58\x28\x1c\x58\x7b\x33\xf7\xc1\x21\xf8\xfd\xf7\x7c\xb5\x49\xe0\x3c\x81\xc9\x2d\x64\x4e\x1e\xb7\xc5\x2f\xe0\x90\xf1\x3a\x20\xff\xa0\xeb\x3d\x9f\x50\x20\x0d\xe7\x97\x3e\x11\xad\xe0\x6c\x02\x27\xe2\x11\x8c\xb5\xce\x13\x49\x5c\xcd\xde\x27\x6f\x68\x1e\xd2\x99\x2b\xad\x2e\xd3\xe9\x4b\x0a\xf4\x93\x4e\x5f\x56\x58\x9f\x17\xc5\xb3\xd9\x8b\x70\xcb\x87\xed\x45\x35\xc1\xe7\x07\x64\x97\x17\x00\x3e\xd3\xeb\xcb\x13\x07\xaf\x2f\xd7\x58\x39\x91\x93\xc6\xfe\x7d\xe7\x8b\xbf\x66\xf7\xa6\x47\x8e\x1a\x27\xc8\x3d\xa1\xd4\x0a\xdf\xf2\x4e\xd8\xe6\x9a\xf0\xda\x79\xb3\x42\xb9\x7b\xb8\x51\x74\x45\x98\xf9\xbc\x91\x7d\xdc\x48\x08\xc6\x3a\x9b\x19\xce\x9b\x39\xb7\x34\x84\x3b\x05\x87\xc6\x88\x24\x36\x4e\xca\x7f\xde\x14\x1c\x06\x31\xd0\x7a\x39\xf9\xed\x79\x73\x03\x14\x93\x70\x93\x46\x7f\xf1\x60\x10\xea\x82\x85\x82\x8d\x7a\x90\xe6\xc6\x41\xdd\xe7\x93\x1b\x42\xd3\xc6\x50\x63\x0f\xe2\xa1\xc6\xd3\xf8\xe1\xa1\x7e\x49\xa7\xd2\xf5\xfb\x91\xa8\xa1\x1f\x36\x2a\xfe\xab\x7e\x80\xb6\x4f\xf2\xf0\x62\x30\xaf\x4d\x05\x17\x0b\x62\x38\xe9\xca\x05\xa7\x2b\xdf\x97\x2e\x98\xd6\x9c\x82\xe0\xfa\xe5\xb8\xdd\x24\x79\x52\x17\xa4\x8b\x5e\x55\xce\xb2\x72\x41\x91\xe6\xba\x5b\x17\xd3\x22\x3a\x62\xf8\x82\x2d\xcd\xe9\x20\xae\x0d\x0c\x25\xf9\x75\xa1\xe8\xda\x66\x1d\xf9\x85\x78\xdd\xcf\xb8\x37\xe6\x63\xf5\xff\x58\x0b\x6d\xdd\xab\x50\x6c\x0b\x07\x5f\x05\x11\xc3\x7f\xab\xb5\x7a\xa5\x9e\x4c\x57\xb8\x0b\x66\xb2\xe2\x11\x17\x00\xbb\x9f\xbb\x03\xc3\x9b\x9c\x92\x73\xe6\xee\x1f\xe2\x0b\x7d\x81\x7a\x69\xc3\x59\x97\xae\x5a\x50\x3a\x45\x53\xf4\xc2\xd3\xee\x5c\xae\x57\xe5\x88\x74\xd8\x5f\x15\xc2\x47\xc7\xcc\x05\xcb\xda\x87\x13\xa0\x66\x73\xbc\xe1\x55\x79\x97\xae\x7e\x01\x60\x20\xdc\x00\x77\xe9\x87\x24\xec\x52\xf3\x12\xc0\xaa\x35\xac\x57\xe5\xfd\x44\x37\xbf\xab\xc1\xe9\x5b\x9b\xee\x42\xf5\x34\x67\x27\xbc\xe0\xb4\xe5\xd4\x27\x17\x1d\xa8\x9c\xe8\xe6\xa2\x51\xca\xd5\xf5\x2e\xa8\xb4\xec\x26\x73\x75\xec\xd2\xe2\xff\x09\x14\x3d\xa8\xce\xb4\x75\x9a\xb6\x9e\x2b\xe1\x1f\x92\x7b\x35\x2f\xac\x93\xfb\x19\xc5\xa0\x95\x49\x38\xeb\x82\x0f\xbf\x13\x21\x5c\xc8\xbf\xe2\x74\x9a\x17\x4b\x67\xd8\x60\x77\x0d\x14\xcc\x6f\x7e\x21\x37\xa1\x86\x31\x80\x00\x7e\x6e\x11\x5a\xae\x6e\x9a\x70\xe2\x7b\x1a\x98\x8f\xa5\xb9\x03\x62\x4b\xb5\x17\x39\x06\x7d\x10\x50\x8e\x7b\xe9\xa0\xa0\xb2\x74\xbb\x00\x1d\x5d\x74\xee\x0a\xce\xb3\x08\x08\xe2\x01\x01\xc5\x8b\xea\x29\x1f\x8e\x17\x62\x51\x9d\xe0\xed\x7a\xa1\xda\xec\x66\x37\x78\xe7\x5b\x07\x7b\x01\xa9\x55\xab\x97\x2e\x66\x1c\x74\xa5\xbc\x0b\xd0\xed\xb3\x30\x93\x12\x58\xb7\xc6\x0b\xd9\x53\x9c\x51\xf0\x5a\x19\x3c\xa2\x51\x31\x0d\xb4\x8d\x50\xd7\xe2\xca\x69\x14\x69\x29\x13\x7e\xbc\xa0\xe3\x72\x4e\xc2\x6b\x11\x80\xba\x81\x5c\x39\xbf\x30\xd9\xa7\xc6\x8d\x52\xb8\xae\x34\x70\xbd\xe0\xad\x3a\xa8\xe6\x42\x7d\x32\xbb\x6b\x5e\x3b\x9d\x5e\xa5\x46\xbb\x68\x39\x73\xa1\xbb\x6b\xe7\x5d\x47\x5d\x52\xa3\xe5\xda\x7a\x17\x4c\x67\x9f\x79\x80\x3b\xbd\xbd\x02\x2f\x7a\xcf\xdb\xc3\xff\x3a\xb8\x56\x5a\x8b\x83\xa3\x92\x3e\xe4\x82\x69\xad\x79\x29\x0e\x5e\x24\x04\x8b\x2f\xb8\xcb\xbb\x50\xd3\xc5\xdc\xcd\xf3\xd3\x27\x0d\xa7\x82\x3a\xd7\x89\x52\x1c\x9e\xc9\x04\x53\x42\x73\x17\xab\x98\x7d\xa4\x01\xd1\x94\x2e\xe8\x17\x14\x53\x8e\xa7\xbb\x90\xdd\xd9\xf9\x7d\x2e\xc6\x86\xda\x38\x7b\x9d\x3c\xda\x2c\x86\x4f\x9c\x1a\x3e\xda\x90\xe0\xcf\x19\x18\xae\x93\x33\xdb\xfd\x03\xf6\x95\x0f\x2e\xa0\xad\xaf\x60\x07\xda\x32\x54\xbf\x90\xf0\xcf\xb1\xf9\xd7\xc5\x31\x88\xe6\x2b\xe3\x14\x34\x28\xa8\xae\xb6\xf8\x93\x85\xe8\x22\xce\xf2\xc2\x5f\xf4\x27\x5a\x6e\x2d\x01\x82\xe9\xa1\x3a\xd4\x93\x06\x6b\xa1\xb3\xbe\x5c\x17\x0f\x22\x9f\x33\x37\x71\xbc\x34\x5d\x17\xc2\x45\x3f\xe2\xf0\xe6\xa6\x0a\x7f\x01\xf1\x67\xee\xba\xa9\x88\x0e\x7f\xc1\x85\x13\xd9\xf0\x93\x72\x5a\x89\x0b\xd8\xab\x39\xd9\xd3\x45\xec\xe5\xa3\xed\x86\x51\xf4\xd3\x00\xd7\xcd\xff\x63\x50\x5e\x78\xd6\xe1\x75\x4d\x9e\x2b\xf3\x53\x7b\xa2\x10\x60\xea\x12\x99\xd7\x03\x23\xa9\x45\x3a\x6a\x63\x18\xd1\x5e\x09\xc5\x74\x17\xb9\x1e\x56\xc8\xd4\x18\x1e\xea\x82\x2c\xce\x58\x2c\xcd\xa7\xe9\x03\xe7\x49\xc3\x28\x78\x5d\x39\x1b\xe5\x05\x13\xa9\x23\xed\x2f\x78\x61\x39\x27\xd0\xf5\x40\x0a\x48\x74\xdd\xbf\x5c\xa7\xd0\x0f\x49\xe2\xd4\x0f\xc8\x4d\xaa\x59\xbc\x7f\x3c\x5d\x97\x9e\x81\x6a\x36\xb7\x08\xfb\x80\x86\x78\xc3\x3e\xea\x64\x96\x37\x2a\xa5\x59\xa5\x76\xc3\x37\xde\xf6\x86\x7b\xa3\x54\x51\x7b\x1b\xcf\x18\x13\x40\x54\xa7\xcb\xcc\x0d\x54\x67\x69\x7c\x33\xb3\xb5\x4e\xc1\x1b\x89\xac\xed\x11\x70\x6f\xb9\x3d\xdd\x23\x50\x9e\x50\xe1\x5d\x58\x73\x4f\x33\x00\xff\x28\xa7\x1c\xb9\x4b\x1e\x5a\x9a\x33\x68\x0d\xed\x7f\x7d\x43\x6b\x68\x0f\x94\x1b\x39\x5a\xb6\xea\xff\x71\x90\x4b\xe4\xdc\x05\x87\x9c\xa7\xa0\xf0\x50\x73\xfb\xc0\x81\x3a\x56\xef\x72\x22\xb1\x86\xdb\xc7\x08\x25\x6f\xee\x42\x46\xf6\x80\xa8\xb6\xd2\x0c\x31\xe9\xb5\x11\xd5\x0d\x14\x58\x6d\xa3\xbe\x53\x27\xe9\x49\x26\xec\x93\x60\xbe\x5f\xd8\x37\x8d\xc1\xee\x8a\x55\xd6\x29\x7b\xa7\x4a\xd2\x6c\x52\xc9\x78\x1a\x53\x25\x8d\x22\x01\x2a\xc7\x0f\x2c\xbc\x61\x5d\xb5\xcf\xe2\xdd\x78\xc8\x6a\xbb\xde\x4c\x83\xed\xc8\xa5\xbb\x31\xd3\x8d\xba\x40\xd4\xa8\x9d\x70\x6f\x44\x8d\xb6\xcf\xff\x14\x5a\x7e\x81\x25\x6f\x6d\xeb\xba\xd3\x9a\x6a\x66\x85\xb5\xd4\xb7\xb7\x9b\x71\xa1\x56\xb7\xdd\x9d\xf8\x44\x7d\xa0\x40\x9a\x11\xd4\x4d\x8d\x63\xf1\x33\x4f\x3c\x1d\xec\x37\x90\xe5\x30\x12\xb8\x61\x4d\x75\xd8\xc4\x3d\x92\x26\xad\x36\xbc\xf1\xc3\x75\x37\x6f\x04\x83\xfa\x9a\x71\x0f\xde\x3b\xa4\x38\xbd\x07\xf9\x49\xa3\x1a\x5c\x0b\xff\x0f\x43\x90\x47\x0d\x7f\x28\xc7\xa6\xdc\x41\xa7\x09\xdd\x41\x6f\x14\x00\x69\xe3\x4f\x25\x86\xee\xa0\xe1\x5d\x8a\x82\x3b\x68\x1a\x90\x62\xe0\x46\xf1\x5a\x27\xa7\xbd\x91\x72\xcf\x1e\xb2\xf7\x7c\x41\x80\x43\x9a\x6f\xa8\x0f\xed\xe1\x78\x03\x14\x2e\xbb\x98\xdf\xc0\x80\x56\xc7\xdd\x33\x67\xdd\x3f\x60\x92\xfd\xcc\xda\x20\xde\x31\x2b\xe7\x58\x24\xc2\x6a\x69\xe4\x7b\x2f\xee\x0f\x37\x40\xd3\x83\x34\x7e\x37\x00\x9b\xcb\xdb\xde\xc8\x1d\xe2\x3a\x4e\xf7\x22\x05\x1a\x33\x93\x4a\xdb\x2b\xe4\xde\x51\xa4\xce\x9c\x84\x42\x1f\x56\xc9\xdf\x3b\x59\xd1\x72\x0e\xbe\x54\xf6\x6c\xb9\x81\x08\xab\x9d\x84\x6e\x98\x30\x3f\x92\xfc\xe0\xe5\x51\x40\xe6\x86\xc9\xd2\x66\xa0\x9b\x29\xa0\xed\xaf\x70\x27\x24\xb4\x58\x38\x50\xff\xca\x8c\x01\xa3\xe5\xe7\x30\x38\x50\xf8\xc5\xb2\xfc\xa0\x98\x58\xfe\xe1\xe4\xd2\xb9\x45\x4a\x6f\x31\xcb\x41\x2c\xa5\xe7\x93\xf3\x24\xbd\xd4\x7d\xe6\x28\x34\xee\x93\xa3\x10\x0d\x8c\xc9\x74\xdd\xda\x1b\xfa\x37\x1b\xc8\x6e\xa4\x80\xb6\x7b\xeb\x7d\xf2\xc4\x13\x74\xbe\xe9\xc6\x6e\x43\xfd\x8d\xbc\x79\xbe\x95\xdc\x09\x19\x8b\x9b\xa4\x4e\x51\x53\x4f\xc8\x68\x8e\x4f\x0d\xdd\x32\xd1\xbc\x60\x16\x0f\x8b\x60\xc4\x3c\xcc\xe2\x64\xa6\x1a\xfa\xb8\x8f\xe4\x41\xcc\xe4\xe7\xa6\x7e\x5f\x28\x8a\x65\xa2\x2f\x94\x34\x36\xcb\xbe\xf8\x6a\xfb\xe8\x21\xef\x9b\x57\x88\xcf\x1b\xa4\x5a\x34\x51\x55\xe5\xd5\x86\x5b\xb9\xe1\xd1\xfd\xa0\x36\xcd\xcf\xff\xbf\xdc\x60\xb7\xde\xfb\xc1\xa6\x31\x45\x4c\xd0\xec\x1a\x70\xf7\x93\x14\x88\x24\x38\x74\x35\x67\x2b\xbb\x1f\x88\x2e\xcf\xdb\xc3\xb3\xfc\xbf\x89\x7d\x7e\xcc\x7e\x54\xf5\x5c\x50\xf2\xed\xa7\x67\xc2\x1d\x8d\xe1\x41\x00\x62\xf9\x7c\x90\x6b\x3d\xf5\x03\x2e\xd9\xdd\x1f\xf0\xc2\x19\xfe\x81\x0a\x8f\xf0\x17\xb9\xb8\x26\xea\xc1\xbd\x5c\x5f\xc0\xd2\x39\x5c\x8c\xfd\xd9\xa0\xf4\xd6\x3e\x7b\xe0\x55\xee\x4d\xf1\xa0\xfe\x87\x5d\x10\x9f\x0d\x1a\x10\x4d\xe4\xc3\xf0\x42\x6b\xea\x1f\x66\xe4\xf0\x4d\xeb\xd9\x92\x43\x35\xce\x8d\x6e\x1b\xee\xe3\x45\x41\xb5\x6a\x2d\x1e\xa0\x9e\x2e\x5c\xf6\xbc\xa0\x27\xa6\xb0\xed\xc3\x62\x64\xae\x99\xfb\x00\xe5\x2c\xbb\x30\x3f\x25\xc5\xb2\x9b\x4c\x22\xfc\x06\xec\x07\x9e\x18\xe4\xa6\x73\x38\xd4\xc3\xdc\x74\x96\xcb\x4f\xe1\xfd\x50\xe7\xe9\x83\x34\xc9\xab\xff\xfe\x94\xc8\xe7\xa9\x98\x67\x71\xfc\x53\xc9\xc0\x5a\x39\x1a\x73\x9d\xee\xf2\x61\xad\x5a\xd7\x09\x7f\x12\x28\x49\x46\x3e\x2f\x50\x2a\x4e\x43\xf5\xd4\x9c\x57\xad\x4d\xea\xc3\xa6\x7f\xb8\xb1\xb8\xfe\x82\xbb\x4a\x83\x6e\x64\x06\x11\x05\xdc\xe3\x8a\xce\x0f\x2d\xab\x8e\x48\x7c\x58\xcc\x4c\x9b\xe6\xa1\x5f\xb7\xab\xe1\x3e\x2c\x66\x66\x2f\x83\x07\xa6\x56\xdb\x07\x9e\x84\x35\xd3\x3f\xbc\x3b\xd5\xaa\xf8\xa7\x53\xeb\xd7\xfc\x42\x2e\xa5\x96\x0e\x5e\x62\xf6\xb6\x78\x58\x18\x76\x33\x51\xb9\x94\xfe\x21\x25\x9e\xc6\xd9\xb9\xb6\x9a\xea\xd4\xa8\x49\x90\x3f\x23\x25\xbd\x7f\x20\x30\x97\xde\xe5\x81\xe3\x98\xf5\xb7\x0f\x7c\xc5\xad\x87\x79\x06\xb7\x85\x4e\xdd\x87\x29\xe4\xec\xb6\xf0\x8c\x0b\x5f\xb8\x05\xc4\x06\x7b\x18\x2f\x54\xea\x76\x83\x7d\x02\x96\x75\x41\xf5\x07\x21\x84\x5d\x87\xd1\x03\xd7\xf1\xcf\x16\x88\x1d\xcf\x9a\x58\xa4\x7b\xb3\x79\xf7\x61\x00\xa0\x13\x89\x3e\x91\xf8\x50\x14\xbe\x60\xa8\xdb\x31\xf7\x81\x6d\xd5\xbe\xe7\x0f\xc0\x91\x8d\x9f\xcf\xcc\xc5\x17\xc9\xc8\x07\xe7\x44\x25\xcf\xc4\x24\x79\x8f\x21\x3d\xf1\xfa\xf6\xc0\x3b\xa8\x3f\xa0\xc6\x57\x4a\xbb\x67\xd2\xdd\xb3\xb9\x8b\x1c\x85\x89\x00\xcf\x0b\xec\x3f\x2b\xd7\x56\x5f\x20\xec\xd0\x7a\xbf\x67\x71\x69\x2d\x7e\x56\x0e\x43\x54\x2c\x2a\x7e\x74\xd1\x7c\x56\x6e\x4d\xbf\x41\x7f\x01\xbf\x30\x51\x78\xd2\xfb\x62\x91\x89\xbd\xb5\x50\xfa\x63\x7d\x96\x97\x05\xda\x5c\x58\xf5\xd9\x53\x74\xab\x13\xe4\x7c\xf3\x05\xfd\xd9\x21\xba\x85\x04\x1e\x38\xa7\x59\x45\xf0\xec\x94\x28\x96\xdd\xac\xfd\xb1\x36\x7f\x01\x16\xb1\x88\x83\xe2\x6e\x7d\xb6\xd6\x9e\x44\x69\x6e\x68\x44\xb5\x33\xc6\x73\xe0\x06\xeb\xc9\x83\xef\x99\x75\x81\xcf\xd1\xdf\x15\x35\x93\x65\x1e\x0c\x29\x80\x9e\x83\x3c\x60\xa2\x90\x19\xc3\x7a\x84\xe7\xe0\x92\x77\xbf\xc0\x5b\xb6\x90\xdd\x83\x68\x42\x9b\x5d\x1f\xa4\x79\xfb\xc8\xa0\x93\x7c\x2a\x2e\x3b\x11\x8c\xeb\x9d\xc0\xe0\x42\x3b\x6f\x3c\x50\xe4\xf9\x0a\xfa\x9c\xf4\xe7\x92\xfe\xe6\x39\xa9\x13\xd5\xbd\xf8\xb9\x38\xf7\x22\x01\x6a\x35\xdf\x49\x1f\xa4\x9d\xf8\x4c\xc3\x95\xfc\xe0\x0f\x20\xd4\x3c\x8f\x17\x65\x96\xa5\x3d\x3c\xc2\x7c\x93\x7f\xa0\x06\xfb\xb5\x3f\xb9\x29\x3c\xb0\x4e\x3a\x26\xe8\xa1\x46\xcc\xe4\xc0\xd8\xb8\xd9\x17\xe4\x49\x6b\xa3\xc1\xcb\x0d\xcd\xa4\x39\x1c\x80\xcd\x60\xf9\x81\x86\xcb\x1e\x33\x0f\x34\x5c\x9f\x33\xff\x21\x37\xeb\x26\xf8\xc0\xd8\x68\xef\xe1\xe7\x21\xe3\x88\xa4\x87\x8c\xe3\xff\xc7\xbf\xff\x84\xf3\x57\x3d\x40\x74\x1f\xc7\x88\x07\xfa\x29\xe7\x5a\x78\x58\x62\xc3\x11\x9f\x0f\xf3\x4f\xd8\xd5\xe3\x01\xc2\x93\x91\x22\x7e\x30\x56\x4e\x39\xe1\xc4\xef\x47\x1a\xa7\x9e\x49\x53\xd1\xf3\x40\xf4\xba\xdf\x87\xb6\xe5\xbf\x45\x8c\xdf\x0f\xac\xfc\xdf\xa4\xc5\x0f\x80\x6e\xca\x0c\x17\xbf\x1f\x57\xbd\xeb\x99\x52\x61\xf3\x0b\x58\xf5\xff\xd8\x24\x7e\x1b\x29\x0a\x3d\x77\x84\x19\xfa\x39\x38\x46\xb5\x88\x6a\x6d\xbd\xf9\x19\xb3\xd4\x34\x04\xf8\xad\xf5\xa6\x0e\xa1\xd2\xea\x4d\x24\x6f\x37\x86\xe8\xff\x41\xd0\x7f\x07\x63\xfc\x58\x5b\x56\x87\x40\xfc\xe0\xe3\x3f\x65\x2a\x8a\x5f\xc1\x24\xb9\x07\xa4\x53\xd3\x7d\x24\x7e\x05\x32\xdf\x93\x04\x15\xd4\xf0\x24\x32\x15\xda\xda\xd4\x25\xf2\x41\xf4\xa6\x31\x03\x5a\xf5\xa6\x39\x82\x5b\xdc\x26\x0f\x98\xf8\xd5\x9c\x14\xad\x23\x2b\xab\x85\x67\xa1\xe6\xc2\x88\x08\x26\x43\x53\x0e\xad\xf8\x11\x4a\x35\x35\xd1\x72\x98\x9a\xd8\x96\xbd\x8a\x0c\xe4\xee\x9d\x32\xb4\xc4\xaf\x71\x93\x15\xb1\x0b\x8b\xa7\xe9\x48\x8e\x5f\x4b\xf7\x3b\x7f\x72\xb0\x0d\x0d\xa5\xf1\x9e\xe4\x26\x78\x66\x77\x11\xde\xc1\x20\x5d\x2f\xb0\x98\x6c\x98\x01\x3a\x85\x5d\xd1\x7a\xbc\x00\xcc\xb9\x76\xe3\x07\xe3\x61\xef\xfa\x7f\x64\x0b\x1a\x3a\xac\x87\x53\x15\x8a\xe3\x87\x04\x0b\x53\x85\x79\xe3\x87\x1c\x61\xd5\xfb\x62\xe4\x6c\xfa\x8b\x9b\x5f\xb8\x13\xea\x85\xb4\x20\xb0\x0f\x36\xff\xcf\x6c\xb7\xd2\x1a\xbe\x82\x80\x2d\xf8\x8b\xc9\xcc\x56\xea\xf4\xc5\x3b\xae\x60\x1c\x3f\x16\x29\xdb\x34\x53\x41\x09\xeb\xa9\x62\xd1\xb2\xf0\xc8\x27\xb7\xbb\xfa\x9c\xd9\xa7\xd6\x0b\x45\xec\x7f\x9e\x5b\x38\xac\x0f\x73\x11\x33\x1e\x2c\xd1\x08\xdf\x2d\xd5\x3f\x8d\xdf\x22\xcf\x14\xbf\x40\xc3\x6c\xf7\x0f\x3c\xb2\x8b\x3f\x21\x57\x79\x18\x80\x1a\xab\x7f\x7e\x80\xd0\xf9\x34\xc1\x6b\x42\xf1\x0b\x0f\x9b\xd0\xcc\xec\xd4\x7f\x76\xff\x80\x30\xc6\xea\x67\x08\xfb\xcf\xff\x28\x01\xf6\xf9\x1f\x9b\xa3\xff\xc5\x46\x14\x3f\xe8\x86\xba\x39\xf6\x48\x09\xa2\x59\x84\xb2\x68\xfe\xbc\x7f\x89\x29\xba\x18\xf0\xc8\x69\xf3\x17\x54\xa3\x78\x62\x61\x1e\x54\xc9\xb1\xf8\xc1\x31\x4b\x79\xfa\xe3\x87\x8c\x06\xb2\x79\xc6\xef\x60\x4e\x7b\x35\x78\x4e\xc4\x4f\x88\x5f\x4f\xca\x07\x6f\x5d\xf8\x9c\x77\x8b\x45\xb8\x90\xcb\x68\x1a\xbf\x8b\x63\xf0\x2e\xbb\x26\x49\xf4\x1b\x58\xa6\x21\x92\x19\x47\x17\xa6\x19\x2e\x47\xb2\x00\xc5\x8f\x00\xc0\x9b\xea\xce\x55\xd3\x07\x08\x7b\x9b\x3f\x4b\x20\x1e\xb1\xde\x33\x0f\x6b\xa2\xf9\x79\xe7\x3c\x8a\xa6\x87\x5d\xfe\xf7\xc2\xf6\xa3\x90\x13\x7f\x6e\x74\xd6\xd1\x81\xb8\xfd\x52\x98\x84\x7e\xe0\x16\x11\xbf\x6e\x69\xd3\xe9\xfe\x64\xf2\x8d\xa6\x1f\x38\x11\x7e\x4e\x7e\xf5\x17\x1c\x57\x31\x59\x50\xd4\xe9\x10\xdc\x52\x67\xa1\x3e\x37\xb6\xe8\xff\xf7\x7f\xff\xa9\xaa\x43\x1d\x1b\x4a\x47\xf5\xe1\xe7\x14\xa2\xff\x4d\xdc\x56\xe8\xdd\xf5\xf9\x81\xfe\xe1\x6a\x11\x75\x9d\xa4\xdf\x8c\x8d\x45\x99\x96\x47\x99\xea\x84\xe2\x37\xd8\x87\x96\x6f\x2b\xdc\x85\x9e\xba\xf7\x58\x0b\x45\x29\xc4\x56\x29\x8e\xfc\x05\xe2\xd4\x7c\x90\x6e\x95\xe7\x49\xf5\x0b\x74\x27\x14\x11\xf0\xbd\xde\xe4\xc3\x13\x1b\xed\x1a\xba\xa5\xc6\xf6\x9e\x40\x31\x25\xb8\xb7\x46\x58\x3a\xfc\x45\x96\x3f\x11\x07\xe0\x00\x92\x59\x31\xb6\x06\x7c\xe0\x16\x3b\x31\x94\x57\x8f\xf5\x3c\x97\x9b\xa4\xe5\x43\x1e\x30\xb1\xf5\xe4\x32\xcd\x15\xbc\xb1\xfb\xf0\x33\xe0\x78\x68\x66\x3a\xcf\xf3\xea\x1f\xe0\xed\xb4\xfc\x4c\xc6\x96\xe4\xde\x68\x1b\xa9\x6e\x91\xe7\x8f\xa7\x8e\x81\x64\xca\x1f\x19\x1b\xfc\xad\x7b\x68\xdc\xef\x29\x58\xab\xce\x86\x6d\x90\x46\x0d\x93\xf7\xff\xf0\xff\x28\xbf\x36\xdd\x01\x1d\x85\x86\x1b\x44\x36\x06\x0f\x7a\x70\x62\x45\x32\xa2\xc2\x14\xde\x1e\x5b\x10\xb3\x78\x9f\xbc\xe7\x99\x75\xcd\xb1\x4d\xce\xbc\xe7\x15\xf1\x57\xdd\xec\x30\x79\x86\x7a\x8c\x93\xd7\x1a\x37\x89\xf2\x40\x5d\x47\xe8\x36\x33\x28\x4c\xcf\xd4\x61\x48\xf0\x6f\x30\x6e\xc8\x01\x36\xb6\xbc\x4b\x5b\x82\xbc\x27\x5c\x95\x8a\x33\x36\xb8\xaf\x74\x6f\x9c\x45\x79\x61\xfe\x42\x85\x1f\xa5\x98\x88\x6d\xe5\x52\x6a\x9b\x2c\x42\x22\x2f\x3e\x7c\x8b\xab\x77\xff\x9e\xf3\xf0\x97\xfc\x0a\xb1\xed\x85\x6f\x6b\x08\x3b\xe6\xc0\x0b\xc7\xb3\x4f\x47\xc5\x96\x37\x60\xcb\x40\xdc\x80\x95\x46\x20\x36\x38\xb7\x2c\x5d\x81\x63\x3b\x18\x27\xb9\x34\x04\xde\x70\xa7\x28\x3e\x78\x9b\xf4\xac\xc1\xef\xb7\x4f\x0d\xf1\xbd\xd0\x4e\xa9\x7a\x62\xe3\x05\x56\xd8\x73\x63\x9d\xf1\x65\x89\x76\xc2\x69\xc3\x3d\x9c\xec\xd1\xff\x53\xaf\x62\x11\xc9\xc0\xf1\x65\xe1\x72\x92\x04\x8d\x12\x89\xc6\x97\xc7\x00\x3f\x92\xee\x75\xba\xa8\xcf\xf4\x86\xe0\x8d\x78\xfa\x83\x8e\x3d\xea\x0f\xa8\x08\xf0\x2e\x87\xcf\x6e\x17\x04\xdc\x2e\xa2\x4a\x5d\xcf\xb6\x8b\xac\xd0\xfc\x06\x0f\x06\x13\xfd\x1e\x91\xad\x79\x57\x23\x57\x63\x37\xff\xde\x54\x66\x6b\x5a\x98\x37\xdc\x5d\x22\x5f\x8e\x2a\x51\xc6\xc6\x4b\xee\x72\x7b\x4c\xe7\xa7\x31\xbe\x97\xde\x56\xcd\x8a\x2c\xbd\x23\x95\x4c\x6c\xa8\xbd\xa3\xa2\x2b\xb1\x3d\x14\xd9\x5e\x49\x38\x59\x74\x4b\x2e\xc4\x9d\x77\x1f\x34\x0f\x29\xf0\xfb\x48\xff\xe0\x43\x02\x46\x09\xe5\xb8\x88\xf2\xa3\x1c\xd3\x16\x2e\xef\x81\x5c\x15\x4e\x15\xe5\x47\xfc\xa8\x49\x2c\x3f\x9c\xf9\x82\xc9\x65\xc3\x9c\x69\xa1\x0b\x5d\x61\xa5\x0a\x8d\xb2\xa5\x18\xf1\x1b\xd4\xe0\x08\xeb\x94\x2d\x17\xca\x6f\x60\x54\x92\x02\x65\xa3\xd2\x2e\xfc\xc5\xc3\x26\x44\x15\x13\xc1\x48\xcf\x17\x05\x49\x02\x15\xf7\x11\x05\xb5\x67\x94\xaa\x3c\x0a\xf3\xbe\x28\x8b\x66\x14\x14\xf0\x56\xe6\xfe\x28\xf0\x64\x50\xb5\xd6\x28\x79\xad\xd4\x9d\xa4\xe0\x5a\xa9\x9a\x9e\x51\x70\xad\x54\x74\x55\x14\x78\x32\x4c\xa5\x4a\x88\x82\x4c\x31\xca\xc6\x10\xa5\x22\x54\x58\xdc\x58\x98\x81\x5b\x51\x65\x51\x6a\x72\xb4\xbf\xc0\x7d\xcf\x07\x57\x41\xce\xed\xf0\x6a\xa1\xc4\x8c\x72\x4c\x45\x69\xc4\x04\x3a\x0a\x0b\x53\x6a\xff\xbc\x3a\x2c\x7b\x28\xf5\x59\x14\xe6\x1d\x94\xfa\x2c\x0a\x92\x68\xab\x74\x5e\x94\xf7\x9e\x5a\x55\x37\x24\x4a\x43\xac\xa2\xc4\x57\x79\x21\x40\x1f\x3f\x3f\x23\x71\x96\xd7\x8e\x59\x09\xa5\x1c\x8b\xd2\x59\x63\x4d\xab\xdf\x29\x1a\x74\xb4\x95\x9e\x3c\xe8\x37\xde\xc5\x55\x11\xb6\x28\xef\x79\x1e\x96\x87\x05\x26\x80\x25\xe5\x57\x14\x78\xd1\x0e\xd3\xd0\x09\x9e\x75\xd6\x15\xa6\xc0\xf6\xc4\xf6\x24\x52\xab\xdb\x1f\x20\x3a\x7d\xc0\x1a\xde\xd2\xd8\x45\x81\x09\xa0\xea\x60\x2a\x2f\x20\x68\xbf\xee\x0f\x88\x5a\xcc\xa1\xf0\x8d\x90\x3f\x61\x94\xc1\x8b\x59\x99\x7f\x39\x87\x0a\xe0\x40\xff\xd0\x43\xe0\xa5\x2b\x4d\x09\x82\x39\xdd\x9b\x4a\x20\xa7\xab\xa7\x1d\xf6\x00\x55\x5c\x8b\x12\xb9\x2d\xb5\x70\x41\xe4\xed\x39\x78\x21\x45\x2d\x1e\x32\x2c\x02\x72\xac\x89\x82\xd8\xaa\xe1\x11\x05\x21\xab\x69\x42\xb2\x19\x95\x1b\x8c\x02\x03\x81\xaa\x60\x45\x81\x81\x40\x85\xba\xa2\x4c\xca\x47\x09\xe8\xf2\x22\x90\x3e\xbc\x85\x10\x01\xbe\xf9\x4e\x53\x52\xbd\x6f\x9a\x26\x91\x9b\xa7\x61\xb1\x0f\xd1\x90\xda\x7b\x2f\xd4\x02\xbf\x9b\x1d\x59\x7b\x45\x0e\x17\x51\xa8\x68\xd7\x85\xa4\xec\x6c\x51\x0d\xec\x24\xd2\xef\x53\x88\x77\xff\x80\x73\x48\x90\xa1\x30\x89\x5f\x7c\x7e\x48\xa2\x45\x24\xf2\x4f\x2b\xde\x20\xca\x41\xcc\xe2\x71\x1f\x3c\xf1\x35\x31\xf0\x97\x18\x16\xb1\x07\x95\x32\xd3\x3f\x20\xd6\xbd\xf8\x83\x85\x0f\xdc\x03\x0f\x0e\x51\x00\x9d\x79\x55\xec\x7b\x94\x93\x37\x56\xcf\x1b\xfd\x5f\xbd\xfa\x48\x3e\x33\x2c\xa2\xe1\xdb\xf0\x99\x36\x28\xcd\x87\x05\x4f\xfa\x36\x4c\x7f\x40\x75\x97\xae\x23\xe5\xe4\xf9\xad\x1b\x4e\x01\xe8\x18\x1e\x04\xcb\x55\x7f\x9e\x39\x0b\x1a\x04\xe2\xac\x7d\x5b\x29\xac\x45\x6d\x90\x5d\x50\x11\x30\xcc\x2c\x17\x4a\x64\x08\x01\x17\x16\xf8\x33\x24\x2e\x40\x0c\x43\xb7\x97\x02\xdf\xd2\x5f\xf1\xbe\xbc\x49\x82\x16\x8a\x39\xf7\xac\x13\x2e\x28\x36\x5d\xbd\xeb\x6e\xb8\x53\x7f\xfe\x87\x93\xb8\xf7\xc4\x43\x39\x62\x12\x12\x44\x54\xff\x00\xfe\xf3\xb4\x01\x44\x58\x69\x54\x80\x21\x86\x37\xd5\x43\x65\x85\x60\x7d\x79\x32\x6e\xc2\x2d\x32\x17\xa8\x68\x7c\x50\xf7\xd0\x82\xe1\xa1\xb4\x54\x0b\x95\xd5\xa8\xad\xa4\xad\x09\x23\x24\xa2\x2b\x7c\x31\xc7\xe7\x85\x83\x5f\xf8\x05\xde\x88\xfd\xc5\xc6\xa3\x4b\x47\x78\x4d\xa4\xf1\xf9\x01\x1c\x55\xfd\xcc\x89\xa8\x7a\x66\xd0\xfc\xd4\x33\x8e\x7c\x77\x09\x5d\xb6\xbc\x72\xa3\x6e\x34\x6f\x7d\x1a\x7c\xb7\xa1\xfc\x0a\xa2\x96\x1c\xa6\xbe\x40\x7d\x67\xab\x9a\x2b\x52\x19\xab\xe8\x56\xd4\xc2\x1b\x54\xf8\x07\x9e\xf9\x42\xda\x15\xa5\x41\x46\x73\x17\x48\x2f\xbe\xfc\xff\x01\xcb\xcc\xd2\x33\xf7\xc4\xa7\x45\xc8\x8e\xe9\xe7\x07\x83\xd2\x07\xa9\x26\x10\xd0\xae\x95\xf7\xeb\xe1\x1f\xc8\x61\xf1\x17\x1f\xba\xa8\xa8\xed\xac\x34\x6b\x51\x2b\xf1\xc3\xf0\x0f\x70\xc4\xfa\x34\x8f\x7d\xae\x8c\x27\x51\x13\xe6\x08\x83\x56\xa4\xbf\x99\x3f\x01\xa1\x0a\x65\xba\x32\x83\x47\xad\x8c\x6b\xd4\xa4\x34\x22\x06\xdd\x3e\x2a\x94\xeb\x96\x9f\x15\xa0\x46\x59\xdd\xa3\x36\xda\x4d\x3c\xcd\x9d\xe6\x26\xc1\xc1\xda\xc9\x6d\xa6\xb2\x53\xb3\xaa\x63\xa0\x76\x70\x97\x24\x64\xed\x3c\xbf\xbd\xd8\xc8\x1d\x53\xbd\x12\x83\xc1\x93\x1e\x16\xf3\xc3\xd9\xb8\x52\x11\x93\xad\x64\xc6\x51\x07\x8f\x37\x13\x81\x20\xed\x61\xfe\x1a\xbc\xdc\x0a\x00\xd6\xd4\x9c\xeb\x0a\x53\x51\x47\x4e\x09\x6c\xa2\x06\xc5\xb6\x79\x98\xa9\x87\x05\x0b\x6a\x80\x65\x3f\xcf\xb0\x51\x7d\x1a\x00\x8d\xdd\xdf\x27\x8d\xda\x45\xf0\x23\x50\x46\xda\xa8\x01\x3c\x28\x61\x51\x83\x24\xea\x96\x54\x89\x0a\x96\x07\x31\x93\x46\xd1\xc0\x1c\x74\xca\xd8\x19\x95\xc0\x40\x8a\xf3\x8a\x3a\x71\x46\x6b\x95\x51\xd3\xd5\xcf\x14\x71\xd3\x3f\xc0\xe2\xa0\x33\xbb\xb2\x50\x9c\x5c\xa7\xa2\xae\x24\x4a\x6f\x24\x4e\x10\xb2\xa8\x8b\xf8\x5e\x52\xb2\xa6\x32\x5e\x20\xb2\xd2\xec\xaf\xd3\xa5\x32\xd6\xe6\x23\x3f\x16\x11\xd6\xf4\x17\xdc\xcd\xba\x26\xd7\x9d\x69\xc1\xcd\x01\x3b\x8d\x29\x16\x18\x4c\x22\xac\x9c\x82\x51\x91\x34\xd8\x31\x41\x51\x91\x63\xc6\x5a\xda\xba\xf3\xba\xe5\xe9\xdd\x29\xef\x2d\x54\x76\xca\x5e\x4f\xd7\x01\x30\x2b\xd0\x54\xa1\x61\x1f\x02\x03\x15\xa5\xda\x9a\xaa\xa7\x44\xa5\x86\x5d\xd5\x50\xa2\x1e\xdc\xe4\x16\x3b\x50\x62\x54\xa5\xec\x8b\x7a\x90\x4f\xfc\xc2\xc9\x26\xfc\xc2\xf5\x72\xa2\x39\xef\x20\xbc\xf4\xae\x3f\xc1\xeb\xdd\xcf\x48\x7b\xa4\xe3\xbe\x9e\x39\x77\x1a\xe7\xc9\x3d\xed\x25\x3c\xc9\xdc\x9a\xed\x13\xbe\xe5\xde\x0c\x27\xc3\x36\xfd\x3e\xf7\x9f\x79\x39\xf5\x22\x5e\x51\xe4\x92\xf9\xf9\x84\x20\x64\xb1\x64\x82\x21\xa0\x29\xe5\x69\xd4\x0b\x81\x1b\x26\x81\x25\x2d\x96\x59\x82\xc9\x63\xcc\xeb\x2c\xb0\x36\xbd\x19\xae\x5c\x3d\xf5\x81\x10\x99\xe1\x79\x80\x2b\x80\x5c\xec\xa3\xde\xdc\x6f\xde\x5e\x37\xb2\x4c\x7a\x0b\xdf\x99\x7d\x53\xa3\xb8\x29\x24\x34\x91\x77\x4e\xa4\x5f\xe0\x79\x2f\x4d\x46\xbd\x93\x4a\x0d\x03\xa9\x83\x95\x20\x2f\xea\x8b\x73\xaa\xa2\x72\xa3\xde\x24\x5a\x44\xc2\x38\x31\xe6\x5f\x52\xfe\x44\x05\x26\x6a\x53\x86\xd1\x4a\xef\x00\x4f\xfb\x93\x5b\x51\xbc\x02\x07\xd0\x61\x2c\xf1\x90\x5f\xa5\x49\xa9\x89\x92\xa4\x3a\xa9\x0f\x6f\x5c\xe6\x26\x7a\x84\x2a\x29\x4f\x54\xe4\x15\x5e\x1e\xf2\x43\xf4\x28\x6e\x69\x0c\x79\x91\x0f\x4f\xb4\x5f\xae\xc4\xd0\x0f\x0c\x03\xaf\x7a\xce\x81\x4d\xfd\x80\x95\xf8\xbc\x30\x50\xeb\xc6\xcf\x10\xdf\xda\xa9\x0d\xa5\x8d\x6d\x56\x68\x8c\x96\x96\xf3\x64\xb4\x8d\xf7\x46\xad\x5c\x63\x54\xcc\x4f\x62\xad\x95\x0c\xc9\x16\x0d\x85\xc9\x18\xf4\x05\xd3\xf4\x79\x6d\x1b\x61\x90\x24\x50\x2b\x64\xe1\xd0\xf3\xe4\x07\xa2\xba\x70\xdf\x89\xa8\x82\xf8\xfb\xee\x1e\x79\x27\x0b\xb7\x48\x61\xb1\x99\x48\x6e\x82\xe5\x26\x71\xa1\xf1\xc0\xa9\xae\x11\x2c\x69\x15\x89\x3e\x24\x46\x1b\xc3\x91\x3d\x91\x2f\xae\xa9\xf2\xec\x8f\x06\x58\xa3\x64\x63\xd1\xe8\x23\x30\x3d\x2b\x88\x43\x51\xde\xd4\x68\x70\xa6\x54\x52\xd3\x68\x8d\x77\x38\xf7\x08\xef\xca\x21\x78\xd0\xd2\x65\x40\x62\xb9\xb5\x9c\x57\xff\x90\x88\x42\xec\xd2\x28\x76\x8b\x3b\x61\x6d\x0e\x6d\xab\xd6\xc8\xa4\xba\x0d\x34\x46\x9a\x28\xdf\x5c\x34\x22\x9f\x4d\xb2\xbc\xa5\xbd\x45\x2a\xbe\xd6\xb9\x9c\x22\xa3\x67\xaf\x9a\x7c\x04\x35\x0f\xcf\x55\xea\x63\xdc\xe2\x81\x68\x73\x77\x09\x20\x1e\xfe\xfe\x22\x09\xa2\x1a\xea\x18\x2b\x0a\x5a\xe7\x5c\xea\xff\x81\xe2\x2f\x12\x81\x6d\xe4\xb1\x29\x92\xe1\xa4\x30\x3e\xcf\x0d\xe9\xe0\xfd\x3c\x38\x04\x31\xd4\xe0\x10\xfc\x8c\xd5\x14\x1c\x68\x23\x27\x56\x53\x3f\x18\x98\xf8\x79\x83\x90\xc2\x7b\x19\x0e\x9a\x4a\xf9\x10\x8d\xd0\xcc\x8b\x17\xb9\x12\x22\x2a\x78\xbd\x30\x0f\x22\x6d\x9f\x85\x6a\x43\xb0\x8b\x32\x53\x46\xa3\x02\x46\xf8\xa2\xc1\xc4\xd3\xa6\x99\x94\xc8\x6a\xf3\x56\x65\x7a\x1b\xe9\x28\xdb\x9c\x7c\x41\x5d\x4e\xec\xc4\xe1\x0f\x70\x4a\x0b\x3b\xb4\x99\x32\x4d\x44\x2f\xf6\x29\xec\xd5\x56\x0a\x14\x11\xb1\x92\xc1\x34\xb7\xf4\x51\xd8\x24\xad\xdb\xa2\x3c\xd0\xcd\xad\xad\xc5\x37\xdc\x0b\x31\x8c\xf7\x06\x53\xc8\xa8\xba\x65\xb4\xc5\xb9\x30\x19\x30\x02\x9b\xe7\xf6\xa4\x53\x54\xec\x39\x37\xa2\x93\x7a\x1d\x0f\x1d\x85\xc8\x9a\x2a\x27\x44\x23\x16\xdb\x7e\x7f\xf2\x63\x68\x7b\x6e\x56\x91\x4c\x3d\xd1\x34\x45\x39\x6a\x0d\x32\x93\x03\x7a\x3d\x77\x9e\x99\x9b\x7f\x20\x17\x56\xd3\x0c\x05\xb0\x5d\xd2\x1a\xb3\x10\xdb\x02\xd0\xa0\x3a\xf2\x9d\xb6\x25\x74\xd3\x05\xb1\x11\xa9\xa9\x90\x63\xb4\x23\x7b\x15\xa1\xc8\xef\x37\x37\xcb\x77\x04\x4b\x17\xcb\x73\xc6\x4a\x2b\xdb\x59\xb4\x93\x43\xd3\xdd\xa8\x9d\x39\x34\xff\x80\xfd\x25\xdc\xd4\x00\xa4\x1c\x29\x18\xed\xc4\xee\x11\x0c\x6a\xd7\x8f\x2f\xe8\x0b\x00\xa5\x62\x0f\xab\x06\x8b\x92\xf2\xd3\x45\x83\x05\x69\xda\xa3\xa7\x5d\x64\xf6\xcd\x5f\xf0\x30\xd4\x85\xac\x41\xff\x53\xec\x4f\xd5\x60\x42\x52\x1d\x96\x68\x74\xbb\x9c\xde\xa2\x57\xce\xb7\xde\xa0\x86\x48\x40\xa3\xdd\x0c\xfb\xd0\xc0\x51\xff\x4b\x39\xd8\xa2\xdd\x54\xe7\xe8\x5e\xd9\x18\x0c\xe3\x71\xc2\xe8\x34\x0c\x22\xe0\x8b\x59\x7e\xe6\x5b\x14\xaf\x1d\x06\x15\x28\x18\x56\xec\x7f\xd5\xee\x5c\x3f\x77\x81\xbd\x62\xb9\x72\x63\xfd\x36\x1f\x96\x08\xa7\x19\x3e\x4c\x53\xe7\xa4\x8b\x68\x7b\x60\xcb\xb0\xf8\xa4\x0e\xca\x52\x81\xf0\xca\xb2\xf0\x49\x9e\x12\xd1\x0f\xf5\x3f\xcd\x3f\x90\x01\xcc\x86\x99\x2c\x50\x3b\xba\xff\xa0\xf3\x94\x3c\xed\x3f\xcc\xa4\x44\x42\x47\x81\x2f\x65\x01\x8a\x0e\xa8\xa4\x14\x3c\xd1\x19\x5f\x63\x97\xb0\x8e\xc4\x30\xa1\xa5\xe9\x30\x75\x29\x1f\x4e\xf4\xdf\x8d\x67\xbd\xbf\x51\xd9\x27\xa6\xed\x48\x03\x58\xec\xf0\xd5\x11\x2d\xa3\xcc\x32\xd1\x11\x1d\xf3\x53\x85\x97\xe8\x1b\x23\x53\x74\xbd\xee\x1b\x35\x44\xd3\x4d\xe0\x3a\x57\xfd\xc5\xbb\x9a\x36\xa4\xf6\x0d\x75\xfe\x74\x0e\xf5\x8d\x44\xfa\xf9\x81\xda\x5f\x44\x33\xe7\xf2\x26\x88\xd0\x59\xce\xd6\xf7\xaa\x5e\x98\x2d\x76\xf9\x07\x06\xdb\x69\x98\xc0\x77\x73\x13\xa8\xe8\x08\xb8\x51\x82\xf7\xe8\x25\x0b\xf8\x6b\x10\xf0\xe1\x2c\xf6\x42\xeb\x85\xb5\x4d\x34\xec\x17\xf0\xbd\x2f\x68\x58\x25\xaf\x07\xa6\xfb\x40\xde\x5c\xbf\xc0\xc5\xd2\xea\x16\x14\x0f\x94\xfc\xef\xf5\x07\x17\x2e\x3f\xa3\xb4\x84\x40\x4b\x87\xda\xcb\xd2\xa2\xbf\xf8\xaf\xf8\x7c\xe8\x35\xb9\x43\x13\x09\xaf\x50\x1b\x58\x7a\x9d\xff\xfe\xd3\x54\xe8\x21\x7a\xcd\x21\xf8\x07\x98\x1c\xc5\xe2\x1d\xe9\x68\xaa\xa7\xb1\x72\x04\xa6\x88\xa2\x43\xb7\xcd\xde\x72\xa9\xd4\x62\xa3\x88\x73\x93\xa8\xdd\xa0\xbc\x2c\xd1\x61\xab\x8b\x3f\x95\x8a\x88\xde\x72\x51\x44\x40\xa3\x3c\x2c\x6e\x7e\xa1\x39\x0d\xb9\xed\x78\xd6\x9a\xc0\xd4\x67\x55\x74\x6f\xcc\xa4\xea\xff\xb1\x81\x36\x0f\x28\xa5\xa5\xa6\x00\x71\xcf\x36\xa8\xf7\x9e\x23\x16\x49\x1d\xce\x12\x66\xc5\x04\xa7\xd5\x3f\x20\xb5\xaa\xd9\xa4\x73\x50\x66\xef\xce\x0b\x8f\x68\xe8\x1c\x83\x96\x15\xd1\x41\x61\xce\x44\x74\x90\x62\x57\xa3\x23\x3a\xc8\x8a\xea\xde\xa9\x14\xf6\x86\x42\xbe\x9d\x62\xd7\xbd\x8e\x1a\x66\x4a\x31\x18\x7d\x6c\x7c\x41\x5f\xbc\xe8\xb4\x2a\xc0\x36\xfa\xe0\x2a\x6a\xda\x47\x87\x36\x4b\x24\x02\x9c\x1a\x17\xf6\x11\x78\x5f\x93\x34\xb8\x4c\xfe\x1f\x45\xe1\x4d\x32\x82\xac\xc3\x53\x02\x25\xa1\x53\x2f\x45\x47\x68\x51\x7c\x46\x40\xac\xa4\xbd\x01\xef\x5a\xab\x3d\x3a\x95\x88\xca\xcf\x1b\x3d\x72\x59\xd4\x02\x90\xaa\x0d\xb0\x1d\xc6\xc6\xf8\x3c\x77\x9e\x30\xfe\x00\x9c\x5b\xdc\x45\xfc\xfb\x4f\x2d\xde\xae\x50\x3b\x86\xe7\x90\xee\x4d\xca\x76\x1a\x9d\x99\x20\x15\x59\x12\x1d\xd6\x47\x1b\xf0\x3b\xdd\x75\x95\x9a\x34\x3a\xac\x8d\x61\x5e\x43\xbe\xe9\x62\xbf\xc1\x3e\x31\xaf\xde\x0e\x13\xac\xe3\x75\x78\xb1\x70\xb5\x57\x5f\x47\xb0\xd1\xdc\xaa\x7b\xb8\x61\x4e\xf2\xf3\x83\x67\x75\x90\x58\x59\xc7\x68\x47\xc2\x1f\x1b\xb4\x3a\xea\xf3\x86\xb9\x7d\x25\x89\x6a\x71\xd1\x46\x66\xa9\x84\x54\x8b\xe1\x85\x58\x3c\x46\x4d\x34\xea\xf3\x5a\x35\xda\xf7\x5c\x3a\x8d\x12\x61\x42\x61\xee\xd9\x79\xd6\x77\xff\x80\x73\xd4\x13\x0d\x10\xaa\x32\x6b\xd1\x69\x9c\xdc\x84\xfe\x3a\x12\x27\xda\x7b\xbe\x1f\xe0\x7f\xef\xa0\x83\x3d\x6a\x50\x34\x56\x4e\x9f\x48\x07\x7b\x14\x89\x07\x2f\x0c\x82\x93\x1d\xfe\xbb\xf1\xe9\x71\x41\x98\x8b\xe4\x83\x10\xc8\x4b\x89\x4c\x8a\x3f\xd5\x12\x8f\x7e\x70\x5a\xb4\x96\x07\x80\xb4\x85\xf5\x99\xa7\xa4\x3e\x40\x90\x50\xf8\x3c\x3a\x39\x08\xcd\xf3\x99\xd3\xa6\x51\x21\x96\xbb\xfb\xc0\x3a\x09\x47\x2d\x0c\x4f\xba\x00\x6a\x50\x80\xc4\xf1\xf9\x9f\x01\xe9\xdd\x5d\x80\x66\x61\xcf\x7e\xd2\x67\xd4\xd8\x00\xca\xc5\xb9\x79\x93\xc0\x20\x1a\x9f\xe7\xca\x17\x44\xe4\x8b\x99\x8b\xea\xaa\x45\xbf\x00\x58\xcc\xe2\x17\x4d\x16\x9f\x17\xe8\x39\xe6\x16\xb1\x67\xda\x5f\x82\x5e\xa3\x23\x8b\xb5\xfd\x3a\xfa\x95\x23\x74\x77\x54\x04\x7c\xde\x00\xba\x11\x4a\xec\x37\x97\x45\x48\xb5\x03\x5e\x2f\x8f\x10\xf0\x3a\xdc\xc0\x9d\xbc\xa5\x59\xa6\xa6\x72\x33\xb3\xc1\x20\xab\x98\xfb\xe8\xac\x0e\xa2\xaa\xf1\xd1\x91\x27\x71\x6e\x9f\x26\x78\x70\x5b\x98\x3d\x2f\xe6\xb7\x7b\x79\x7f\x28\x2f\xcd\xf1\xc8\xbe\x63\xbb\x73\x7f\x28\xcd\x3e\x2f\x60\xed\xbd\xe7\xe0\xd7\xe5\x50\x83\x41\xbf\x2d\x25\x27\x8d\x81\xd0\x23\x07\x02\x8c\x1f\x35\x20\xba\xfd\x0c\xfa\x66\x6f\x9f\x2f\xc8\xa0\xc3\x9f\xe4\x4c\x74\xfd\x40\x1f\x54\x1d\x54\x03\xae\xd7\x76\x73\x1e\xa9\x3c\x14\x99\x03\xf1\x49\xf6\x49\x1f\x3f\x2e\xe8\x70\xa7\x60\x59\xb1\xcf\xf8\x91\x43\xb5\x4b\x46\x42\x68\x49\xe5\xb1\x25\xdd\xfe\x81\x28\xc5\x9d\x6e\x39\x79\xea\x75\xa3\x75\x6f\xf8\x0d\xe2\x0e\x77\x8b\xa8\x24\xbb\x4a\x8f\x42\x60\x55\xfd\x03\x04\xaf\x4e\xc0\x51\x78\xd5\xf7\x40\x10\x52\x5e\x1d\x96\x34\x0a\x0e\x65\xf1\xc0\x28\x24\xd3\x44\x24\xc4\xad\x7e\x83\xaa\x38\x8f\x0c\x1e\x65\x76\xb2\x1c\x95\xfa\x1f\x53\x41\xcb\xec\x26\x2d\xf5\xa8\x24\xd3\xcf\xbc\xcc\x7b\x60\x2c\x54\xdb\x3f\x6f\x60\x85\xa4\x95\x1c\x95\x67\x96\xfb\x68\xbc\x57\x4b\xfe\x8f\x46\xe6\xd5\x51\x3c\x1a\xb6\x98\xe4\xd4\xa0\xf5\x75\x7a\xe8\xb0\xbe\x96\x5f\x75\x9b\x74\x7a\xf0\xc8\x88\x53\xc3\x5f\x50\xe7\xf0\xf9\x81\x1a\x43\xd3\x99\x8a\x4c\x73\x2b\xb0\xe6\x67\x60\xc4\x96\x9f\x15\x82\x5b\x99\x0f\x91\xd1\xb9\x84\x3a\xa7\x46\x1f\x70\x64\xf3\x0b\x38\x44\xc2\x0d\xe4\x82\xa9\x0b\xa8\x29\xe3\xd3\x40\xee\x7b\xcd\x4c\x16\x9f\xd5\x65\x7f\x8c\x5c\x0f\xb5\x49\xe8\x16\xfe\x02\x4d\x4a\xc3\x33\x06\x79\xc2\x5c\xc3\xc8\xa7\x2d\xfc\x03\x75\x2b\x5e\x30\xa8\x11\xed\xd9\x33\x52\x8d\xe8\x99\x41\xce\x1c\xfb\xd5\x8c\xa0\x08\xf4\x6a\x10\x7b\x09\xde\x0d\x62\x2d\x9d\x7d\x23\x90\xd4\x77\xb9\x47\x64\xf2\x6a\xee\x80\x83\xf0\xff\x70\x0f\xf1\xda\x05\x12\xb0\xcb\x80\x30\x26\x29\xd6\xf7\x93\x2e\xff\xd2\x81\x8c\x09\x1b\x98\x47\x80\x4a\x21\x76\x59\x18\x93\xd9\x3c\xd4\x41\x22\xb7\xea\x17\x58\x12\x52\x23\x42\x9a\xed\xdf\x9f\x52\x31\xc4\x98\x1c\xbe\x5b\xc7\x96\xf9\x50\x87\x33\x48\x77\x92\x41\x53\xb1\xa7\x13\x39\x19\x95\x02\x23\xc6\x4a\xc6\xd3\xfc\xc0\xc3\xcc\xd6\xec\xb1\x10\x3e\x65\x36\x5a\x88\x3e\xf8\x34\x48\xd5\xf2\xa7\x47\xda\x32\x44\xe1\xe2\x15\x44\xf8\x67\xd0\xa7\x5d\x55\xe8\x63\xa4\x72\x53\xca\xe6\xb1\xc3\x04\x13\xfe\x82\x3e\xe5\x26\x6a\xa7\x10\xfd\xbc\x81\x55\xf4\xf9\xb1\x53\x74\x9b\x77\x0f\x2c\xab\xd9\x04\x85\x63\x55\xf8\x30\xc6\x41\x05\xa8\x27\xe6\x40\x4d\x56\x9f\x59\x47\x76\x29\x1a\x0e\x28\x97\xbd\xe1\x4e\xde\xa4\x84\x78\x06\x40\x98\xcd\xce\x83\x8e\xee\x9e\x87\x93\xfb\xcf\x83\x38\x51\x42\x46\x00\x7b\x9c\x2c\x68\x20\xd6\x3c\x29\x88\xbc\x59\x10\xc9\x55\x2c\x14\x98\x3e\xc7\x5e\xbd\x83\xd5\x43\xa6\x89\x06\x2a\xb3\xe5\x7b\x24\x2a\xf3\x49\x71\x91\x68\x3f\x53\x6a\x78\x7f\x5c\x03\x2f\x88\x86\x17\x74\xd5\x4d\x96\x85\x71\x11\xf4\x7b\x5e\xa0\xa6\xb4\xcb\xc5\xb8\x50\xcb\xc3\x82\x0b\xa8\xc9\x16\xe2\x71\xc1\x99\xd5\x1c\x7d\x53\xe6\x7b\x47\xbf\xb0\xaa\xdb\x58\x3b\x6e\x86\x24\x88\x82\x1b\xb7\x6e\x0b\x78\xd8\x83\x6d\x6e\x1d\x77\x2e\xb5\x5f\x08\xbc\x20\x7e\xbc\x79\x3a\x5a\xc6\x20\x43\xa2\xed\x9a\xe3\xa6\x3e\xd0\x13\x7f\xe7\x3c\x6b\xd0\x2f\x0c\xab\xaa\x7e\x16\x83\x29\x11\x1d\xf6\x33\x1e\x8a\x15\x33\xe0\x83\x13\x41\x0a\x97\x81\xa4\x40\x9f\x93\xee\xa1\xca\x47\x60\x71\xc0\x73\xee\xc3\xc1\x4f\x4e\xbc\x86\x05\xf7\x7b\xc7\x43\x8d\x27\x89\x14\xd5\xf0\x8c\xb3\x46\x24\x7e\x49\xe4\xd0\x0f\x1b\x40\xbf\x5f\x68\x68\xb1\xea\x39\x69\x9a\xfa\x01\x33\xf9\x69\x71\xe2\x79\xd3\x33\xe2\x84\xc2\x0d\xe4\xc6\x0e\xfd\x70\x30\xbc\x44\xcf\xf4\x46\xed\x7a\xa6\x82\x43\xb2\x23\x12\x92\x49\x47\x19\x1b\x81\xa2\x04\x78\x6c\xd4\xe6\x4b\xd5\x1a\x1b\x2f\xe3\xd3\x6d\x70\xa2\xdc\x04\xaf\xa5\xda\xfb\x01\xb5\xa5\x57\x33\xa0\xb6\x34\xf4\x09\xe4\x00\xb2\x23\x7b\xa4\xeb\x9d\x36\x45\x14\x4e\x9c\x3f\x20\xf2\xd1\x51\x1b\xf0\xac\xb3\x85\x38\x0a\xef\x16\xd3\x2d\xd0\x76\xa2\x6d\x14\x85\xe7\xbb\x24\x5c\xb0\xf8\xeb\x34\x15\x95\xa2\x5d\x3b\x29\x2a\xed\x88\xe2\x90\xa8\x64\x19\x1d\xcf\x91\x5a\xc1\x3f\xd9\x8c\xa2\x12\xe4\x68\x1a\xe1\xef\x5f\xec\xcd\x1c\x95\x8b\x65\xfe\x01\x7c\xb3\x91\x29\x1a\x17\x4f\xa0\x3e\x12\x8b\xe9\xb4\x0f\x96\x77\x0d\xb7\x00\x06\x2b\x7e\x26\x14\xd3\x56\x8d\x96\xd3\xa2\x26\x7b\xf6\xa1\xc5\xeb\xdc\xdd\x92\x68\x01\xa5\x9b\x6d\xcc\x01\xa5\x9b\x8d\xa7\xd1\x73\xdf\xf8\x87\x1c\x97\x7e\x80\x12\x6d\x48\x22\xc5\x28\xff\xfe\x13\xd3\x4c\x3a\x2a\x7c\xd3\xb5\x98\x83\xb7\x1b\x73\x20\x02\xf0\xac\x44\x8b\xc1\x62\x62\x22\x29\x9d\xf1\xcc\x0e\x70\xc6\xb3\x51\x3b\x06\x4b\x4c\x98\x25\x07\x07\xe1\x67\x5e\x76\xcc\x0c\x41\xb1\xda\xfd\x43\xe1\x30\xfd\x03\x78\x52\xd7\x8e\x60\x55\x35\x27\x7c\x88\x20\x3c\x97\x08\x0a\x66\xe1\xb1\xf3\x78\xc0\xe6\x3b\x8b\x9b\x7c\xf0\xac\x61\xc0\x06\x1c\xce\xaf\x10\xe9\x54\x2f\x34\x11\xc0\x37\x36\xd8\x06\xf0\xcd\xd4\x3d\x25\x90\x00\xc7\xc6\xd8\x60\xc5\x10\x9b\xe6\x82\x8e\x6f\xf6\x39\x8d\x45\xab\xc6\xf2\x1b\x94\x07\xd2\xf7\xc7\x62\x1f\x9a\x3b\xc6\x98\xab\x7a\x6a\x04\x0a\xb6\xda\x9c\x1b\x54\x53\x15\xcf\x0c\xd4\x52\xb3\x78\x5c\x3b\x52\x5b\x78\x58\x3b\x17\xd4\x4c\x08\x73\x6a\xf3\xed\x29\xf6\xac\xb4\xec\x26\x10\x10\xfb\x21\xe2\xc2\x4d\xc7\xff\x53\x42\x0c\x37\xc9\xad\xa0\x73\x2e\x0e\x92\xad\x2e\x0e\x22\x16\x33\xcd\x01\x3e\xb5\x98\x3a\x08\x5d\x4d\xd4\x81\xc3\x5f\x50\x36\x32\xdf\x8d\x39\xe0\x20\xcf\x68\x81\xe1\x37\x67\x9b\x65\x1c\xdc\x3a\x16\xf8\x28\xa6\x6f\x03\x6f\x9c\xbc\xec\x5a\xaa\x20\xef\xb4\x6d\x98\x91\x8e\xf7\x16\xe7\x84\x34\xc2\x3c\x71\x51\xeb\xe2\xe5\xbc\x28\x01\x84\x48\xe3\xca\x61\xf9\x0d\xf6\xa1\x71\x13\xc3\x58\x3d\x1b\xa8\x1b\x6b\xed\x6c\x40\x37\xe4\x9b\x52\x00\xd3\x58\x55\x1a\x77\xf2\xb5\x88\x82\xe6\xe7\x33\xf5\xd0\xfc\x4c\x1f\x9c\x77\x32\x8c\x48\xb8\x59\xd6\xce\x1f\x50\x76\x5b\x32\xbe\xa0\xa5\x3a\x2d\x45\x30\xc9\xcd\xf0\xff\x3b\x5b\x74\x0b\x27\x7f\x30\x91\x4c\x7c\xe0\x67\xb0\xbd\x4f\x52\x68\x8e\x6c\x7c\x88\x87\x6a\x1d\xcb\x5a\xd6\xcb\x77\x58\x5a\x20\x8f\xb3\x9d\x46\x22\x3d\xdd\x2c\x8c\x1f\x9a\x83\x05\x79\x03\x96\xd5\x59\x04\xad\x02\xba\x24\x5f\x8c\x27\x2a\xd1\xfe\x56\xfd\xcb\x89\x34\x51\x7f\x6d\x96\xcd\x5f\xe7\xac\x0d\xfd\xb0\xf8\xc6\xa6\x1f\xd8\x9f\x9f\x2f\xbe\x50\xf4\x03\xb7\x95\x20\xf4\xdc\xb8\x6b\x74\x26\x4d\xd4\xdb\xb0\x7a\x6c\x22\x82\xdf\x1b\x77\xc2\xae\xba\xc9\x02\x32\xb7\xa4\xa1\xea\x07\x1e\x9c\x82\x45\xb3\x60\xa3\xea\x20\x9d\x05\xc6\xe4\xf0\x33\x45\xb5\xce\x8f\x99\x2a\xa2\xcf\x1b\xa8\xc8\x62\x9a\x60\xf4\xb4\x45\x7b\xd2\xd7\x5f\x77\x91\x49\x4f\x7d\x95\xf4\x88\x59\xb9\xd8\x92\x58\x13\x95\x67\xed\x83\x38\x2b\x62\xc8\x25\xda\x67\x6a\x77\x74\x47\x9b\x70\xa5\x5f\x8e\x41\x9c\x00\x17\xd6\xf1\xcd\xfa\x30\x41\xcc\x7f\xcf\x50\xd5\x84\x73\xcc\xcc\x54\xd5\x08\xaf\xcc\x86\x63\xb2\xfb\x85\x20\xd5\x7e\x21\xf9\xcb\x6f\x10\xca\xe9\x28\x9e\x0d\xb7\xd3\x4f\x93\x2c\x97\x28\x09\x35\x3b\x1d\x08\x65\x90\x9a\x09\x20\x04\xe6\x26\xf0\xc0\x72\x30\xe5\x84\x15\x4e\x25\xfb\x62\xf6\x64\x19\xcd\xcd\xe0\xf2\x98\x25\x06\x42\x31\x4c\xe6\xa0\x0b\xca\xf2\x0b\xdc\xbd\x9b\xdf\x40\xca\xaa\xe1\x17\x60\x23\xd0\x66\x9e\x50\xc5\xc4\xf7\x07\x1c\x5a\x26\x2a\x50\xc3\xe7\xf3\x0c\x48\x2a\xad\xe3\x0c\x78\x31\x7a\xa2\xa0\x37\xb1\xb2\x6e\x22\xc3\xcc\x72\x3e\x98\x39\x29\x67\xb5\xde\xc8\x87\x67\x85\xe1\x84\xdb\xbb\xbd\x8f\xe7\xcc\x21\xa9\xc7\xc9\x1e\x34\x24\x86\xc7\x99\xa3\x78\xd4\x4b\x73\x3a\x27\x15\x09\x1e\xc2\x7b\xf6\xd7\xe6\x6d\x82\xec\xc3\xa5\xfa\x99\x42\x55\xc0\x7e\xc2\x42\x65\xdb\xcf\x5c\x81\x04\xca\xa2\x88\xe9\x67\x0c\xe4\x26\x0c\x56\x56\x1e\xce\x45\xe9\x50\xfc\x03\x95\xb7\xcb\x34\x11\x2b\x08\xa1\xce\x3d\x85\xa4\x56\x12\x26\x2c\x6b\xdd\x66\x62\x05\x33\xdc\xce\x18\x56\xf5\xb1\x93\xa9\x25\x77\xe7\x8b\x15\x8a\xbd\x8d\xe6\x4e\x2a\xfd\x4c\xa6\xff\xbc\x80\x30\x2d\xe7\x34\x9a\x48\x5b\x63\x2d\xdc\x3c\xf2\xbc\xd2\x4c\x1c\x49\xb5\x26\xff\xe0\x2e\xb0\x24\x45\x22\x80\x35\x3e\x9f\x60\x73\x0a\x7e\x4c\x78\x66\x59\x81\x32\xe9\x98\xa5\xc2\x95\x31\x51\x79\xd5\x77\xe6\x49\x47\x2d\x7b\xe1\x4f\x64\x0e\xb0\xf2\x62\x1e\xc9\x00\xea\x92\x2a\x17\xb3\x1c\x6a\x58\xf8\x82\x3b\x11\xc5\xa7\x82\x24\x31\x4f\xda\xdf\xa7\x3f\xc8\x7d\x27\xa2\xcf\x3c\xf9\xfd\x06\xe6\xd6\x82\x15\xb9\x72\xe6\xf8\xd3\x0d\x69\xa6\xfa\x45\x08\x6c\x9e\xc9\x2e\x9a\x45\x64\x22\x50\x55\x8d\x98\xa8\x68\x6f\xed\xe7\x4c\xec\xe2\x5d\x74\x71\xda\xbd\x94\x70\x24\xb3\x12\x69\x5e\x3c\x03\x75\x35\x98\x17\x2f\xe9\x16\xcc\x04\x33\xde\xe9\xe9\x47\x66\xe1\x73\x71\x9e\xcd\xd4\x69\x97\x12\x6a\x9b\x37\x8d\xfe\xba\x5e\x4c\xaa\x50\x2c\xd0\x50\xd5\xde\xd6\xe8\x99\x6e\x5e\x9e\xe8\x9b\x8b\xef\x06\xe0\x6c\x21\xd0\x36\x1f\x1c\x71\x4a\xcd\x1b\xf3\xa1\x0c\xf5\x5c\x3e\x1c\xb8\xbf\xc8\x71\x8a\x06\x94\x78\x6d\x4a\xdb\x17\x93\xa1\x83\xf6\x05\x9f\x48\x11\x34\x2d\xd9\xe1\x13\x3f\x7d\x51\x9b\x4f\xce\xc4\x7f\xe3\x58\x2c\x01\x66\xc7\xaf\x95\x2a\x92\xa6\xe7\xa4\x62\xea\x07\xcc\x8c\xae\x44\x8b\x56\xa7\xf1\x69\x81\x76\x78\x75\x81\x2c\xc7\xb3\xe8\x5c\x5c\x48\x93\x67\x3c\xb1\x88\x37\x74\xa1\x59\xc8\x10\x64\x49\xbf\xb6\x9c\xeb\xa5\x1f\xb8\xf3\xaa\xbf\x38\x39\x0a\x37\x89\x13\xcb\x6e\xd5\x8b\x39\x0c\x1c\x2e\xbd\xca\x8f\x6f\xa8\x0d\x1a\x9d\x1c\x0b\xba\x0a\xe5\xbf\xc8\xa0\x49\xc9\xee\xbc\xab\x80\xef\x74\xd9\x5f\x28\xd7\x60\x70\xb8\xe0\x34\x65\x78\xb9\xe0\x25\x5f\xec\xee\xbb\x0a\xcf\x38\x01\xa7\xf5\x82\x94\x69\x35\xcb\x62\xf8\xe0\xf2\x17\xf4\x93\xb7\x6b\xd7\x42\x00\x60\xd9\x7e\xfe\x01\x93\xa5\x63\x6e\xd5\xe4\x11\x51\x55\x11\x5e\x2a\xf4\xb6\x10\xff\xd7\x94\x90\x37\x56\x65\x6e\x1b\x0d\xb3\xe6\xd4\xa9\x85\x06\x34\x27\xc9\xb9\xda\xf6\xef\x3f\x61\xdf\xfb\x85\xb4\x07\xcb\x51\xdf\x8b\xb8\xc7\x3e\xc8\x0b\x6a\x91\xa6\x74\xbb\xb1\xe0\x5b\x1f\xbf\x4f\x1f\xf1\xb6\x29\x49\xb8\xe0\x2d\x65\x64\xbe\x1a\x16\xa3\xf8\x7d\x1e\xc6\xba\x37\x2f\xe4\x46\x2a\x76\x73\x5e\x48\x97\x5c\xec\xd5\xbc\xfa\x2b\xaa\x2c\x68\x56\xdf\xf8\x82\xc6\xd1\x71\xb0\x49\x8c\x2c\x16\xa6\x75\xb0\xfa\x82\x6b\xbe\x11\xe2\x42\xd4\xa2\xed\xad\xab\x73\xab\xf8\x79\x92\x48\x2d\x16\x35\x35\xcb\x24\x5c\x08\x62\xd4\xa8\x01\xbc\x6c\x9a\x59\xf0\xc4\x9f\xfe\x7f\x70\x25\x44\x10\x7c\x9d\x1c\xaa\xb9\x46\xc7\x66\xd6\x2c\x0d\xe2\xcb\xea\x17\x50\x23\xd3\x6b\x3d\x92\xc7\xdd\xc3\xc1\x31\x6b\x0c\x83\x89\xfa\xf4\x02\x9d\x91\x8a\x6e\x5d\x0b\xbe\x44\x56\x57\x2e\xf8\x0e\x85\x5d\xfb\x56\x70\xd0\x5a\x29\xd6\xb2\xb7\x9f\xf5\x8a\x94\x28\x7f\x3a\x93\x56\x70\xab\x5b\xfe\x50\x27\x23\xc9\xbc\x60\x00\x73\x86\xca\xc5\x5a\xf9\xcd\xff\xa3\x1c\xbf\x8e\xa8\x05\xfb\x96\x1d\x3d\xd6\x24\xbd\x9a\x44\xa6\x3d\x5e\xa6\x17\x89\x97\x5c\xe0\x3f\x16\x80\x9f\x4a\xbe\xc7\x9a\x48\x1e\x6d\x3e\x79\x81\x5f\xb5\x09\x6a\x2d\x72\x9e\xe5\x00\xc2\x1f\x3f\xe9\x10\xd7\x02\xbe\xb6\xc8\x5c\x29\xac\xb4\x2c\x50\x02\xb5\xe5\x59\xa0\x57\xff\x32\x51\xb4\x7b\x59\x1a\xad\xa4\x5a\xe3\x82\xaf\x92\x8f\xf2\x45\x2b\x56\x91\x2a\x63\xd1\xa7\xde\x2d\xc0\xa5\xde\x87\xe8\x22\xae\xb3\xa7\xf3\xda\x79\x31\x14\x3e\x5d\x04\x76\x16\xe4\x3b\xb9\xab\xf8\x85\x17\x21\xf9\x90\x5c\x3b\x37\xad\xb7\xdc\x0b\xec\xc2\x79\x89\xd6\x81\x9c\xe7\xde\x72\xf0\x6e\xf2\x11\xb9\x0e\x82\xd1\xe6\x1f\x72\x5e\x34\xd7\x47\x2e\xa7\x86\xc5\x82\xf9\x52\x9e\x2c\xa8\x78\x54\xd0\x3f\x16\xca\xe5\x17\xc1\xfa\x85\x4a\x14\xaa\x44\x17\x8b\x20\x4e\xea\xd6\x75\x72\x87\xe8\x46\xb6\xe8\xac\xe4\x7c\x11\xeb\xe4\xb6\x34\xcb\xb1\x16\xd9\x47\x48\x23\x45\x94\x43\x70\x17\x0b\x4d\x38\x93\xec\x82\xa5\xcc\x09\x23\xd6\x99\x13\xa7\x89\x81\x16\xe9\x43\xe5\x45\xcf\x78\x8d\xe2\xca\x93\xc5\x3f\x74\x74\xa9\x16\xe9\xd0\x5f\xa4\x33\x5a\x2c\x9b\xef\x2e\xaf\xa4\xc9\x2f\xf0\xbc\xfb\x34\xc9\xf3\xce\xcb\x7d\xd1\x45\x4f\x2f\xd0\x34\x66\x77\xe9\x05\xd3\xd8\xb2\x48\x46\xf5\xb0\x62\x67\xe8\x75\x73\xbd\xdd\x42\x43\xfe\x1b\xcd\xe4\xcd\xf3\x51\xd7\x97\x85\xe0\x49\x2b\xf9\x17\x80\xde\xe7\xf4\x83\x43\x92\x63\xdd\x16\xd4\x4e\x6b\x7c\x1a\x38\x38\x08\x93\x70\xa2\x05\xb7\xc8\xcb\x89\xbf\x40\x25\xd7\x66\x89\xf8\x70\xbb\xeb\xe2\xb0\xa8\x45\x52\xb5\xae\x58\x00\x76\xb6\xd7\x2d\xba\xe7\x6f\x3a\xee\x76\xc0\x36\xdf\xd8\x77\xa6\x80\x70\x7e\x8f\x1d\x0e\x48\xcd\x69\x76\x77\xa8\x92\xaa\x01\xea\x8e\x52\xae\xc5\xbe\xec\x3b\x6c\x5b\x16\x6b\x3b\x54\x4b\xcd\x89\x79\x77\x26\x48\x2e\xba\x21\xef\xa8\xf5\x6a\x9c\xbd\x27\x14\xd4\x38\x76\x38\x20\x59\x28\xed\x80\x86\x0e\x03\xdc\x59\xea\xd5\x69\x79\xf7\xad\xa1\x94\x93\x9f\x29\xe7\x74\xe9\xda\xb7\x40\x4a\x65\x3f\x23\x63\x83\x36\xe7\x9e\xd0\xb0\xfb\x07\xd4\xdf\x99\x7e\xc6\x8d\xc5\x79\x7e\x77\x78\x27\x79\x27\xed\x85\xc7\x85\xc6\x50\x72\xb5\xfe\x14\x0b\xbb\x97\x9c\x55\x4d\x5a\xe1\xe9\x26\x71\xb1\xd3\x11\xc9\x29\x7e\x77\x58\xc2\x6a\xf5\x33\xb7\xae\xf0\xf2\xce\xda\x16\x76\x54\xdd\x51\xbe\xe2\xb3\xb6\x70\x5d\x2a\x92\x0e\x7b\x05\x4f\x7b\x88\x95\xb8\xa3\xbb\x01\x2e\xad\x58\x74\xaf\xc9\xe5\x62\x06\x78\x2e\x7d\xd6\x1e\xb6\xb1\x3a\xdc\x05\x15\x07\xfe\x1f\x82\xdb\x0b\x49\x5d\x98\x36\xee\x0e\x4b\x99\x2d\x90\x3b\xdc\x9a\x9c\xc8\x62\x47\xd5\xaf\xcf\xa4\xb4\x94\x91\x1a\x63\x42\x46\x73\x78\xa3\x49\x49\x14\xa5\xee\x4c\xca\xb4\x9d\xba\x33\xfb\x28\xef\x70\xb0\xff\xb6\x70\xb2\x49\x37\x01\xef\xf3\x70\x9f\xc8\x10\x2c\x3d\xc4\x9e\xba\x35\x11\x0d\x07\x7a\x7b\x20\xef\x9d\xc2\x46\xf8\x6e\xef\x94\x99\xba\x0b\xed\x9d\x2b\xa3\x69\xe8\x3c\x21\xbb\x9b\xa4\xde\x52\x22\x71\xef\xc9\x2e\x22\xa2\x53\x21\x23\x84\xbf\x0f\x4c\x6d\xf5\xc6\x1d\x74\x07\x57\xa7\x23\xc9\x52\x13\x09\x03\xa5\x06\xda\x07\x67\x46\x03\x49\x6d\x9d\x10\xcc\xce\x00\x4c\xef\xaa\x91\x54\xa9\x0f\xf8\x45\x39\x2d\xec\x1e\xac\x2c\xa2\x16\x83\x1b\xd9\x1b\x15\x29\xa2\x1d\x9f\xb9\x07\xcf\xe5\x4f\x0b\xa4\x49\x13\x41\x6b\x5d\xb8\x01\xc8\x16\xef\x92\xc4\x81\x5e\x8d\x17\x07\xba\x64\x4b\xec\x33\xb7\x91\x7a\x98\xc8\xbb\x2f\xe4\xba\x4f\x1e\xd4\xa6\x09\x25\x33\x1c\xa9\xb5\xa3\x62\xc6\x26\x83\xc2\x8e\x9c\x9d\xe1\x7c\xba\x3b\x3c\xa1\xd6\x30\xd1\xf0\x6e\x72\x8e\xd7\x3d\x75\x86\x66\xa9\x49\xf1\x60\x22\x16\x6f\xcb\xc2\xfc\x7b\x82\x43\x73\x1d\xca\xd2\x3a\x0c\x79\x07\x58\x8c\xe5\x16\xb8\x75\x3c\x33\x48\xeb\xe9\x94\xae\x3b\x3c\xa2\x9c\x7f\x75\x5f\x60\x4a\x5d\x7c\xf7\x45\xa2\x35\x0d\x2b\x67\x56\xa3\x62\x35\x0c\x1d\x4f\x3b\xa3\x3b\x3f\x6b\xc5\xe0\xcd\xcf\xe2\xec\x58\x4c\xaf\xcd\xce\xdc\xa5\x1a\x13\x93\x74\x39\x54\x6b\x47\x52\x2e\x07\xb1\xef\xc8\xc9\x65\x60\xb8\xc3\xf4\xe7\x3c\x9f\xfb\x91\x3d\x6a\xa6\x11\x69\xb9\xc6\xe7\x07\x8e\x5a\x34\x32\xf2\xd2\x29\xc9\x77\xe8\xf7\x7c\xff\xdf\xe9\x20\x35\x3e\x3f\x50\x9b\x12\x6e\x12\x47\x87\x80\xdd\x7e\x92\x08\x3f\x37\xfc\xaf\xf7\xa1\xce\x53\x25\xc3\xd8\x4f\x82\x76\xcf\x34\x6c\x83\x0e\x10\xde\x4f\xa6\x4d\xd7\x05\x6e\x3f\x79\x3f\x6b\xbf\x3f\x1d\x46\xd0\xf5\xd9\x3d\x7b\x67\x01\x5b\xef\x62\xa6\xf8\xb2\xbf\xd5\x0e\xd3\xa3\xb3\x49\xee\x67\x02\x36\xb7\xc0\x11\x6b\x99\x2e\x18\x72\x4c\xdf\x8b\x2a\x9b\x03\xec\x76\x14\x27\x5b\x9f\x67\xce\x80\x96\x8d\xaa\x3a\xc7\x16\xec\x17\x8e\x6b\xaf\x3b\xf2\x6c\x3b\xd7\xcc\xfe\x22\xc6\xb0\x67\xdd\x7e\x13\x5b\x89\xa0\x9b\x95\x57\xd5\x1e\x2a\xf9\xdb\xec\xb0\xa3\x98\xac\x33\xd5\xef\x37\x32\x36\x4c\xff\xcf\xa3\x52\xfa\xd1\xfd\xce\x19\x17\x05\xd0\xfc\x7d\x4e\xc6\x9b\xf7\x2a\x3f\x13\xab\x09\xcc\xef\x37\x87\xe0\x2e\x50\x7c\xc3\xac\x0b\xff\x75\x67\xd5\xdb\x13\x1e\x9a\x0b\x1e\xde\x61\x0c\xdd\x1e\x3a\x7c\xa9\x87\x07\xc1\x71\x3e\x0a\x1f\x62\x58\x4d\x02\x52\x89\x7f\xf8\xf6\xc9\x59\x77\x83\x09\x59\x45\x23\x93\x69\x38\x9b\xd7\x8e\x78\x50\xa7\x70\x3a\x5e\xc0\xd9\x9d\xc7\xef\x80\x27\x95\xbb\x3c\x7e\x98\xe7\xe1\x67\xea\x2e\x25\x74\x8e\x1f\x59\x5b\x07\xc2\x81\x1c\x65\xce\x95\x71\xc0\xbb\xdd\xe2\xfb\x40\xb1\x0d\xe7\xf5\x3b\x36\x2a\x2a\x45\x01\x32\x96\x85\x63\x6f\x0e\x98\x2d\x9b\x85\xce\x81\x8c\x64\xd6\x6d\x1c\xf0\x82\x32\xaf\x1d\x1b\x81\x97\xd8\xff\x60\xa6\x71\x29\xb6\x0e\x5a\x25\x1d\x20\x71\x94\xf7\x64\x75\x06\xd9\xa3\x30\xc9\xa8\x9f\x73\xd4\xfe\x00\xa2\x75\xf8\x39\xb9\xcb\x5d\xf0\x80\x90\x7a\xf5\x28\xbc\x22\x4b\x46\x1c\x2c\x02\xeb\x71\x97\x5c\x3b\xfd\x50\x79\x89\xd2\xa6\x3b\x52\x8b\x58\xfd\x06\x76\xa5\x4e\xf7\xa3\x52\x3f\x27\x23\xf5\x51\xb1\x4d\x75\x06\x1d\x95\xab\xe9\x06\x90\x86\x4a\xbb\xe8\xa8\x79\x27\x72\x97\x84\x87\x52\x66\x1f\xf4\x6b\x2f\xda\x68\x07\x4c\x9f\xbe\x67\x1d\x80\x73\x9f\xe5\x6c\x39\x75\x6e\x61\xc2\xde\xe7\x06\x50\x35\x40\x3b\xff\x80\xcf\x7a\x78\xf1\x90\x0b\xdd\xb9\x9c\x0e\x84\x47\x3a\xe7\xd8\x41\x17\x76\x4b\xe3\xa3\x21\xed\xa3\x44\xc7\xd1\xb1\x2f\x75\x17\x39\xa0\x1f\xfc\x34\x00\x97\x77\x7b\xa3\x1d\xcc\xa4\xba\x99\x63\x11\x2d\x69\x97\xb7\x83\x3e\xf1\xe5\xf3\x03\x8c\xd8\x9e\xf6\x0e\x12\xb5\xaf\x0f\xe6\x3d\xf7\x01\x72\x0c\x4a\x02\x29\x0c\x8f\xc1\x59\xd4\x24\x64\xf0\xe2\xf2\x17\x38\x51\xbc\x0e\x83\xc8\xdf\x2c\x3a\x76\xae\xbd\x3b\xc5\xbc\x4d\xbf\x40\xa8\xd7\xfc\x02\xb6\xcd\xfc\x93\x07\xc3\x01\xab\x6d\xd8\x28\x7e\xd0\x2b\xcb\x67\xdc\x11\xac\x03\xed\x4d\x14\x14\x25\x9a\xa5\xc8\x30\x6e\xad\x2c\x73\xa7\x3a\x3a\xf9\x08\x1e\xe5\x5e\x0a\xa8\x18\x1d\x56\x7a\x30\x37\xaa\xcf\xd1\x63\x26\xc7\x8b\x8a\xc9\xf0\x04\xbf\x10\xb8\xef\xf8\x99\x1b\xd5\x2c\x0f\x3f\x2e\x7b\x89\x1f\x13\x6b\x67\x76\x9c\x04\x4d\x12\xfb\x07\xb2\xb1\xdb\x1f\xfb\x48\xa0\x27\xbd\xe2\xb1\xb8\x4d\x9b\x7f\x80\x8c\xf5\x5a\x22\x5d\x7b\x35\x43\x2e\xd4\x2b\xb5\x04\x45\x39\x92\xb2\xe9\x24\x39\x98\x02\xcd\xa3\x26\xb0\xfb\x3c\x03\x95\x49\x53\x7a\xc0\x3a\xec\xc8\x80\x83\xd9\xdc\xad\x4f\x3e\x16\x79\x43\x4b\xb3\x38\x68\x37\x00\x67\x84\x4f\x03\x18\xb3\xf7\xec\x4e\x08\x6e\x91\xbc\x67\x76\x23\x3d\xf3\xaa\xe2\x73\x05\xe9\xd3\x3e\x52\x60\xa7\x8a\xc1\x12\x75\x67\xa2\x7d\x91\x00\x27\xb1\x66\x0c\x73\x1c\xd9\xa7\x9a\x64\x4a\x78\x33\x38\x2d\xc1\x8e\x79\x3a\xe0\x4a\xef\x6c\x27\xc7\xc1\x7d\xbb\xdc\x02\x27\xda\x67\xd5\x81\x2a\x3d\x16\x66\x07\x81\xd5\xa7\x09\xaa\xc2\xbc\x56\x50\x1a\xfa\x08\x3f\x4e\x5c\xe9\x3d\xd3\x27\x89\xd2\x5d\xe4\x38\x19\x7a\xad\x71\x33\xbd\x9a\x33\xdb\x1f\x2f\x98\x1c\xbf\xcf\x73\x60\x62\x44\xc2\xc9\xeb\xb0\x59\x1a\x58\xf2\x23\xdf\x58\x46\xc5\x45\x0d\x8e\x93\x2c\xee\x0f\xb0\xfa\xcb\x24\x90\xa3\x35\x2d\x50\x21\xce\x2a\x3d\xc4\x41\x95\xa1\x53\xe1\x1f\x17\x85\xba\x0f\xd0\x2b\xc5\x91\xdb\x48\x22\x34\x11\x89\x10\xbd\xfb\x2f\x2c\xb8\xa9\xa0\xce\xd0\x3c\x09\x6f\x79\x5b\x1b\x8f\x17\x01\x0e\x3b\xe1\x1c\x37\xe7\x49\x34\xdd\xf4\x91\x30\x8b\xbd\x88\x6f\xd8\x85\xf3\xb8\x93\x24\xf7\x78\xc1\x60\xa0\x1e\xe0\x47\x36\xab\x94\x1d\xc7\x43\x6d\x9c\x8f\x96\xa7\xbe\x4d\x4a\x0f\x76\x3c\xa0\xc1\xd2\xe6\x09\x3c\xab\xcb\x87\x34\x79\x5f\x3c\x64\x7b\x8b\xed\x04\x68\x92\xca\xe7\xef\x07\xaa\xa7\x9e\x37\x0a\xde\x4d\x3f\x90\xa3\xc2\x3f\x54\x92\xbd\xf4\x03\x85\xa2\x4e\xb8\x93\xb6\x5f\x9f\x68\xe7\x0f\x74\x7e\xbe\xa0\x77\x81\x84\xf9\xf9\xa3\x32\xbd\xf9\x0d\xa2\xe1\xf0\x1b\x17\x86\xea\x67\x5c\xaa\xac\xbd\x38\x7f\xdc\xc0\x3a\x15\xcf\x17\xe8\x0d\x3b\xc0\x9e\x2f\xd0\x6b\x4e\xa8\x77\x6e\x9c\xdc\x3f\x5d\x89\xce\x17\x14\x0e\xfb\x31\x9e\x1b\x67\xde\x8d\x53\xce\x6b\x2b\x9f\x1b\xf9\x4f\x37\x8e\x93\x35\xd7\xc4\x2e\xe7\x8b\x1a\x87\xf5\xe6\x27\x41\xa3\xfd\x88\xce\xcc\xe0\xa6\x59\x2d\xa4\x57\x0d\x16\xca\x3c\x1d\xe2\x67\xe1\xb5\xb0\xfb\x0b\x12\xe9\x17\x92\x3d\x44\xe4\x8b\x1a\x87\x33\x55\x9c\x2f\x68\x1c\x56\x51\x9f\x25\x57\xc1\x2f\xd0\xa6\x2b\x29\x79\x26\x46\x14\x0c\x38\x2b\x9d\xd7\x74\xfb\x3d\x13\x24\x4a\xa0\x9c\x35\xc9\xd4\x5c\x56\x90\x29\xb5\xe3\x59\x61\x20\x18\xee\x03\x4b\x5f\xdc\xe2\xcd\x83\x5d\xc3\xa8\x2f\x02\xfb\x0c\xab\x81\xa7\x25\xf3\xce\x34\x2c\x37\xff\x80\xa9\x94\x02\xef\x6c\x14\x8a\xda\x68\x67\x23\x07\x4b\xd8\x9f\xb4\x13\xd7\xcd\x3f\x9c\x68\x42\xe3\x4e\x1d\xa0\x66\xaa\x61\x79\x75\x33\x3a\x3b\x69\xd2\xff\x3d\x27\x4e\x44\x77\x70\x58\xf1\x33\x97\x57\x1a\xe8\xb3\x63\xf3\x7b\x62\x99\x70\xbf\x9a\x07\xfb\x44\x0b\x9a\xe8\x4e\x21\xd9\x4d\x03\x31\x9b\xce\xdd\xb3\xe7\x26\xf2\x0f\xa0\xda\x7b\x64\x50\x3a\x68\xe2\x90\x3f\x7f\xba\x3c\xc2\x49\x8f\x3e\x63\x85\x73\x60\x18\x16\x1f\x03\x62\x54\x17\xc2\x73\x50\x94\x77\x37\xb9\xd8\xa4\xa8\x1c\x98\x59\x5d\x5c\xce\xc1\x8b\xca\xe7\x07\x22\x70\x1d\xf6\x27\x5d\xfc\xaa\x19\x3d\x72\x2f\x69\x2a\x98\xa4\xcd\xc1\x57\xe7\x8b\x1e\xab\x9d\xd1\xce\x20\x99\x1a\x46\x5a\x9f\x3f\x3f\x40\x42\xd9\x71\xe7\x0c\xee\x8d\xe9\x4e\xa9\xf7\x31\x5f\x07\xf9\x54\x87\xf5\x49\x0b\xb2\x07\x32\x0b\xf3\x90\x6b\x49\x27\xf8\x52\x30\xe7\x9c\xc9\x86\x1a\x29\x6b\xeb\x3a\xa7\xeb\x39\x51\x61\xe0\xf3\x02\x82\xcc\x3c\xae\x89\x92\x09\x9f\x1e\x12\x57\xeb\x85\x85\x15\x16\x2e\x3a\x17\xe2\x86\x05\x38\xce\x8c\x23\xf8\xbc\xd0\x51\x7b\x44\x2c\x02\xb0\xe8\x28\xed\x73\xe1\xbe\x65\x0a\x50\xa9\xce\x89\x56\xce\xc5\x13\xc8\x5c\x09\xad\xa0\x01\xef\xb9\xd3\xb5\x48\xc0\xeb\xdc\x21\xc8\x2d\x08\xf7\x82\x67\xf5\xb8\x93\xe5\xfc\x3e\x0a\x5e\x0b\x8f\x9c\x3b\xe1\x84\xc5\xda\xce\x1c\x0e\xe2\x8e\x1d\x1b\xc7\x67\xe2\x0e\x31\xd8\xfc\x3e\x04\x90\x45\xf7\x7e\xe3\x7f\x4d\xc9\xc1\x9b\xb3\x1b\x3c\x48\xb1\x86\x74\x90\x62\xad\xda\x81\x75\xf6\xf1\x77\x00\x3a\xb4\x3f\x15\x95\x38\x0f\xda\x5c\xbc\x83\x0e\x1e\x35\xba\x53\x9c\x4c\xca\x6b\x9d\xc8\x79\x60\x00\x3e\x5d\x91\x37\xe3\xc3\xa9\x4c\x05\x67\xb5\xcb\x79\x82\x2b\x7c\x96\x9e\x18\x80\x4f\x96\x93\x90\xcd\xe2\xed\xc4\xfe\xf1\xe1\x75\x26\xa3\x6a\x51\x80\x12\xd7\xe7\x83\x8b\x2d\xf8\x05\xb8\x7f\x79\xce\xd2\x12\x6d\xc6\xb9\x48\x83\x88\x4e\x0f\x40\x6f\x72\xa6\xc5\xd8\x74\x55\x3a\x2f\xea\xd9\xbd\x70\x2f\xb0\xac\x9f\x89\x4a\x5c\x39\xdc\x26\x38\xc1\x62\x22\x71\xa6\x8f\x9a\x8b\x93\xef\xa9\xbd\x20\xad\xbc\x21\x2f\x5e\x7b\x7d\x7a\x5d\x37\x76\xa8\x69\x80\xed\x5a\xe8\xf7\x64\xc9\x5f\x63\xa3\x9b\xc3\xd4\xf7\x74\x31\xb4\x9d\xef\x44\xc0\x83\x2f\x4f\x67\x6a\x1a\x2d\x66\x6e\x82\x29\x69\x8b\xce\x1b\x52\xdd\x6b\xf1\xb0\x0b\x75\xf9\x60\x03\x79\x4c\x0f\x8f\x43\x0b\x6d\xe2\x4e\xb3\x07\x0d\xcf\x3e\x60\x1f\xe0\x08\x29\x86\xce\x8c\x66\x70\x07\xd4\xca\xff\x47\xc0\x95\x66\xe8\xa6\x67\x10\x34\xfc\x4c\x88\x59\xfd\x03\x2a\x8e\x69\x21\x2f\x94\x28\xb4\x1f\xef\xf5\x23\x81\x55\xcf\x24\x28\xf4\x8c\xa2\x02\xe2\xbe\xeb\x87\xe0\xf7\xcd\xed\x27\xb3\xe9\x87\x0d\xfe\xa8\x9a\xd3\x8b\xc1\x0e\x9b\x2e\x35\x17\x0b\x1d\x38\x7c\xf7\xda\xa8\xc4\x17\x4e\xbe\x36\x16\x93\x77\x13\xd8\x22\xc3\x1f\x50\xb8\x2f\xff\x10\x70\xa0\xf3\x07\x50\x75\x6e\x6e\x90\xbe\x6b\x9a\x45\xc4\x6f\xda\x2a\x7e\x41\x4f\xe9\x90\xb1\x6b\x03\x6b\x0e\x93\x4c\xd6\xd4\x61\x70\x6d\x3c\xfe\x25\xdb\x2f\x38\x37\x3a\x3d\xc6\x85\x0a\x89\x4e\x08\x78\x21\x87\xb0\x73\xaa\x5c\x25\xc7\x2c\x92\x4b\x8e\xc9\x2d\x12\x72\x88\xdd\x2f\xda\xb5\xc5\x1a\xd7\x0b\x31\xeb\x87\xc8\x74\x76\x5c\x7e\x01\xc2\x56\xe7\xcd\xf5\x42\xd0\x66\x48\x72\x41\x6d\x69\xcf\x8e\xab\xf2\x02\xa3\xe3\xe1\xaa\x60\x2e\xaf\x4b\xe6\x90\x13\x45\x15\xeb\xe2\x31\x40\x49\xe9\x6a\xbc\x17\xeb\x39\x4d\x3f\xf3\x4e\xe5\x59\xaa\xd8\x5e\x9e\x56\x66\x84\x73\x28\xc5\xc5\x02\x4f\x56\x36\x5c\x88\xf7\xac\xda\xe3\x17\xeb\x3b\xfd\xfc\xdc\xb0\x0e\x6e\x80\xac\x23\x92\x1b\xd8\xfd\xd3\x1e\xa1\xa0\x4e\xb0\xab\xa1\xfc\xb2\x64\xe7\xd5\x70\xa2\xe9\xce\x7e\xc1\x84\xed\x90\xc6\x8b\xa5\x16\xc6\xf8\x53\x35\x89\xab\x71\x49\xb4\x04\xc4\xba\x72\xc4\xbd\x98\x20\x4e\x07\xd4\x45\x0f\x49\xc7\x0d\x5e\x3d\xf9\x46\xab\xde\xe9\x65\x22\xbc\x7d\x11\xec\xea\xf6\x74\x31\x63\x9c\x23\x0b\xaf\x04\xb7\x9f\x37\x88\xd0\x9b\x7b\xc5\x98\xa7\xfb\xa0\xb3\x6f\x73\x13\xb9\x1f\xfc\x05\x00\x9b\x30\xfe\xf5\xa2\xdd\x6a\x63\xf5\x85\x84\xc5\x0e\x26\xba\x06\x8e\x71\x13\x4d\x83\xb9\xa3\x1d\x2f\x16\x93\xf0\xb4\x8f\x1c\x85\xd6\x69\xe0\xbc\x09\xbf\x90\x83\xd0\x4a\x0f\x4c\xb5\x99\x2f\x92\xb7\xf4\x45\xa0\x54\xbf\x57\x3a\xc8\xed\x6a\x20\x40\xa3\x67\x3a\x73\xba\x89\x75\x62\x40\xa1\xa4\x69\x0c\x8a\x76\xcb\x66\x2a\x49\xa7\x9f\xe9\xae\xf5\xe9\x81\x3b\xfa\xe7\x2e\x80\x36\x04\x8c\x2f\x6a\x51\x5d\x66\xf3\x9a\xc9\x0f\xea\x74\x12\x9e\x5b\x7e\x4f\xde\x22\xbd\x85\x26\xcd\xb2\x3e\x22\x98\x3c\xc4\x7a\xaa\x8b\x49\x91\x6b\x77\x1b\x00\x55\x26\x7c\x26\x8f\x8b\xce\x49\xb6\x15\x15\x8b\xb1\x1e\x96\xd0\x8b\xeb\xab\x16\xa9\x28\x75\xe4\xe0\xc5\x9c\xc8\xf6\x8e\xbb\x56\x5e\x66\xf4\xfc\xca\x0e\x47\xd0\x5e\x8b\x3c\xa9\xb9\x83\x33\xa5\x53\x63\x5c\x8c\xab\xf9\x48\x86\x44\xcb\x16\xf2\x2f\x5a\x1e\x76\x3f\xbf\x76\xb8\x7e\xfb\xe0\x22\x38\xb6\x00\xde\x31\x06\xf3\xc7\x4e\x8f\x69\x8b\x8a\x3d\xc7\xe0\x2f\xc8\x83\x82\x0b\x17\xe1\xb0\x8f\x3e\x84\xd5\x7c\xc4\x1b\xa2\x6a\x7c\x05\xbc\x08\x8f\x2d\x40\x77\xcc\xb3\x8f\x80\x17\x2e\x0f\xfb\xc3\x5f\x08\xbf\xb5\x2e\xe5\x42\xe6\x39\xe7\x6b\xb8\x32\xc2\xc6\xe2\xef\x40\x4a\x08\x13\x78\x40\x3c\x2e\x37\x48\xc8\x24\x80\x73\x1d\xb0\xd6\xfa\x34\x3f\x26\x28\x70\x0f\xd4\x47\x79\xa3\x1e\xc0\x0f\xd3\xcf\x2f\x8f\xdb\xe6\x73\x11\x50\x7b\xd6\x61\xe2\xb7\x31\xe4\x82\xaf\xa7\x41\xde\x75\x72\xdb\x0a\x62\x5d\xac\xc3\xe5\x2b\xc0\x75\x42\x09\x62\x12\x81\x97\x9d\x12\xed\x82\x0d\xbe\x99\x31\x18\x52\x63\x7b\xcb\x75\x12\x57\x8a\x64\x96\xd9\x72\x2a\xfb\xeb\x82\x34\xf3\x2c\x21\xa4\xa6\x49\xe1\x70\xbd\x68\x79\xd8\xa4\x7e\xb1\x84\x85\x97\xfd\x22\xa3\xf8\xdc\xbb\x38\x8b\x22\x99\xb5\x3d\xed\xbf\x7c\xa1\xb6\xa7\xd3\x41\x5e\xc4\xca\x1f\x12\x2f\x34\xa0\x39\x78\xa1\xf2\xd8\xfe\x96\x00\xe8\x7a\x71\x73\xfd\x4c\xd8\xbd\xe1\x63\x35\x4e\x97\x4f\xc7\x44\x5e\x48\x8f\x52\xab\xc9\xb9\x1b\xbe\xf0\x0b\x94\x31\x46\x0a\x09\xbd\x2d\x96\x10\xcd\x63\xb7\xe3\x0b\xb1\xc6\x4e\xfd\x7e\x31\xba\xc7\x6e\x03\x57\x42\x71\x8b\x10\x14\x0e\xfb\xac\x12\x62\x8f\x4b\x91\xea\xe2\x62\xfc\x8f\x85\xd2\x43\xec\x60\x31\x06\xf0\xee\x68\x83\xeb\x81\x1b\xba\x31\x1c\xb3\xd4\xd9\x5a\x73\x3d\x49\x94\xbf\x38\xd0\xc2\x7f\x5f\xdc\x28\x70\x51\xec\x07\x70\x43\x07\xec\xa4\xb9\x37\xd0\x77\xd1\xfe\xbb\x7f\xe0\x14\x6d\xd0\xfb\x47\x1f\x2c\x11\x7d\xff\x16\x5e\x70\x03\x3b\x9e\x37\x3d\x83\x02\x51\x74\x6f\xb9\x3d\xf4\x41\x3a\x78\x4e\xff\x80\x51\x9b\xc4\x8d\x6e\x7d\xd3\x4d\x24\x77\xfa\x87\x03\x7a\x0a\xb7\x70\x72\x94\x4b\x3f\x50\xd6\x0e\xff\x00\xd3\xdb\x72\x1f\x10\xb5\x5a\xcc\x3b\x35\xb4\x92\x0a\x77\x01\xcb\x49\x70\xdd\x85\x44\xfa\xff\x8a\xe7\xa2\xe7\x81\x30\x0d\x3f\x93\x66\x6d\xd1\xbb\xd0\x7f\x5b\x8a\x82\x9b\xf9\x94\x3d\x2f\x0c\x4f\xae\x62\xd1\x9b\x70\xd9\x41\x93\x37\xbd\x42\x97\x9f\xa9\xb1\x15\x56\xbc\x2b\x89\x56\x17\x80\xc7\x4e\x5f\x7c\x03\x1e\x17\x87\x76\xde\xc0\xc7\xf6\x3a\xbe\x2b\x9d\xd5\xc2\x2d\x04\x5e\xd0\x3c\x55\xac\x7e\x71\x8f\x58\x7d\xdd\x5b\xee\x8a\xd5\xd7\x3e\xbc\xa9\xdf\x5d\xfe\x1e\xda\x09\x9d\xec\x37\x7c\x42\x8b\x43\x49\xef\x86\x78\x57\x53\x04\x75\xae\xbd\x9c\xef\x74\x02\x15\x36\xbc\x53\xbf\x1b\x6e\x61\xe0\x0b\xcd\x52\x7a\x0d\x78\xda\x10\x37\xd4\xac\x7d\xbd\x1b\x65\x99\x9f\x0f\xea\x2f\xf4\x8c\x10\x1c\x9d\xa2\x37\x0a\xa8\x16\x47\x79\xde\x9d\xbb\xcc\xd3\xd2\x91\x3f\xcd\xc3\xee\x0d\x75\x88\x35\xec\xce\x78\x12\xbf\x0f\x9a\x85\x2d\xee\x4e\xa4\xe6\x61\x77\x88\x53\x81\xfa\xbb\x43\x9c\x9a\xc4\x9e\xf3\xa8\x1e\x07\x02\xb0\xbc\xcf\x07\x6d\xec\x02\x0b\x77\x02\x5a\x33\xc7\xe0\xbc\xf9\x05\x2e\xbd\x68\x1e\x58\xfa\xea\xf7\xb1\xf4\xd5\x3d\x1e\x6f\x8f\x66\xdf\x01\xf5\xa4\x10\xf5\x9d\xaa\xdd\xe5\x1f\x92\x7d\xd5\x22\x00\xb0\xab\x3d\xdf\xc1\xab\xc4\xe7\x87\x5c\x6b\xff\x40\xab\x87\x00\xeb\x1d\x24\x52\xf3\x16\xe0\x47\x4f\x7c\x9c\x78\xfe\x93\x36\xee\x06\xd8\xb5\x9b\xd7\x1d\xbc\x53\x7b\xbf\x05\xa4\x88\x97\x91\xe1\xe2\x1f\xf6\x86\x16\xd8\x12\xff\x86\x12\xd8\xc1\xd9\xf7\xdc\xff\xfd\xe7\x03\x66\xee\x09\xf2\x84\x0c\x6e\x86\x8b\xdb\x1c\x7f\x4f\xac\xbb\xc0\xc8\x8d\xb0\xa1\xcf\xf6\x80\xca\xd7\x7e\x3e\x77\x3a\x10\x2c\xbf\x00\x91\xa0\x4b\xc8\xbd\x92\x0d\xfc\x03\xd8\xc0\xcb\x96\x41\x43\xe6\x65\xa6\x92\xa9\x9a\xf3\x07\x42\xc3\x05\x2e\x9e\x0a\xec\x20\x38\xf3\x50\x46\x68\xfb\x3c\x95\xdb\x4b\x77\xca\x87\x29\x30\xab\x6e\x42\x4f\x25\x9c\xff\xfc\xc0\x99\x97\x78\x7d\x52\x6e\x68\xc7\x3c\xac\xd5\xe3\xd8\xff\x87\xb5\x7a\x6c\x14\x7e\x70\xd1\xb6\x1b\xc1\xd3\x08\x1c\xfd\x3f\x15\xa5\x02\x76\x0f\xac\x36\x36\x8e\x3f\x1d\x0d\xe8\x9a\xf2\xc0\x26\x63\x2b\xf4\xd3\xe9\x96\xe5\x71\x75\x1e\x4b\xda\xa5\x4f\xcf\x71\xe9\x07\xd8\x5c\xba\xd3\x0d\x3d\x83\x38\xc5\xc3\x18\xbc\x97\x54\xff\x80\x6d\x19\xfe\x02\x85\x58\xb4\x4d\x1f\x56\x24\xfc\xbc\xcf\xa3\x70\xfa\x85\x1b\x36\x7e\x0d\x23\x98\x2d\x5d\xff\x07\x99\x78\xfa\x05\x82\x49\x8d\x33\x60\x25\xf0\xd4\x23\xba\xaf\x79\x7d\x03\xf3\x22\x81\xfc\xbc\x7b\xf2\x13\x33\xf2\x4c\xb0\xa0\x36\xf1\xc3\x4d\xa1\x33\xe7\x99\xc8\xbe\xae\xa3\xf6\x99\xe0\x48\xed\xba\x67\x72\x06\xd4\xdf\x64\x7f\xa2\xef\xdd\x54\xd5\xf1\x5e\xcf\xcc\x75\xf1\x07\xd8\x65\x66\xe0\xc9\x83\xb6\x9a\x02\x64\x5a\xfc\xf4\x98\xdc\xa6\x2e\xe8\xa8\x53\x25\xcb\x9e\x95\x0b\xe9\x1f\xc0\x3c\x92\x04\xcf\x22\xde\xd4\x46\x7c\x70\xbf\x0c\x1b\x12\x9e\x85\x6d\x62\xde\x60\x29\xc2\xba\xfc\x02\xc4\x91\xd9\x6b\x41\x16\x78\x93\xec\x70\xbc\x35\xff\xee\xbc\x79\x4f\xff\x80\x89\x36\x6f\x31\x2b\xc3\xcf\x0d\x24\xaf\x69\xa2\x10\xbd\x17\x3a\xd6\x1e\xd6\xc3\x29\xfe\x9f\xf0\xb3\xba\x07\x32\x9b\x37\xd5\x4e\x1a\xfd\x0c\x89\x69\xde\x82\xf5\xc4\xf7\xcb\xe7\x68\x6c\x51\xf3\x76\x60\xf1\x3d\x06\x5e\xef\xcc\xcd\x30\xaf\x58\xc2\x3e\x07\xf7\x9c\x44\xec\x03\x97\x6d\x1f\x73\x0f\xec\x21\xdd\xbe\x03\xcf\xc9\xc3\x5b\x97\xa3\x07\x99\xc6\xab\xf9\xef\xa4\x68\xf1\x0e\xa1\xdb\x8c\xa3\xf7\x9e\x13\x4b\xb7\xdc\x24\x3c\x96\x85\x2e\x1f\xf8\x4c\x77\xbb\x18\x3c\xcc\x0b\xde\x7e\x7f\x72\x50\x78\x2e\xaa\x14\x35\x07\x17\x78\xcb\xac\xc4\xdb\x9d\x0e\x89\xe7\xa2\xeb\xa5\x8e\x91\xe7\xca\x31\xeb\x0b\x18\x26\x9c\xf9\xe2\xe1\x05\xcb\xac\x86\xfb\xd4\xb4\xe3\xe3\x73\xd3\xee\xf6\xf3\x1b\x58\x17\x2f\xf4\x9d\x73\xa2\x39\x80\xcb\x8c\x95\xc3\xcf\x0d\x78\x60\x29\x81\x54\x4d\xdd\xca\xde\xe7\xf9\xe1\x05\xf5\x00\x8f\x99\xd9\xbc\xa5\xe0\x31\x63\xed\xf1\xf3\xde\x86\x86\x35\x8f\x0f\x4a\xda\x74\x5b\x0e\x9e\x07\x19\xac\x04\xd3\x9e\x87\xcb\x92\x3d\xce\xdf\x7b\x39\xaa\x4a\x95\x30\x7f\xef\xdd\xa8\xc9\x14\x32\x7f\x88\xa0\x6b\xba\xd4\xce\xdf\x0f\xe5\xbf\xfe\xc3\xd7\xf3\xf7\x5e\x9e\x86\x54\x7e\xf3\x07\xd3\x85\x9c\x9d\xe6\x0f\xa6\x8b\xf2\xe9\x80\x96\xb3\xe5\x1f\x26\xc7\xe8\x2f\x76\xfe\xe0\x26\x0f\x34\xe1\x17\xc0\xdf\x1f\x1a\x79\xa4\x2c\x7f\x40\x5e\xdb\xfc\x06\x85\x57\x53\x13\xef\x8d\xac\x28\x95\xca\xfc\x6d\x94\x5d\x9b\xa8\xc2\x85\x4c\x4a\xbf\xf9\xdb\x78\x6d\x68\xfe\xa1\xf1\x0b\x75\xca\xb2\x3a\x9b\xbb\x18\x1c\x86\xbf\x08\xe8\x7d\x44\x14\xec\x17\x4a\x89\x35\x7f\x4c\x0f\xa5\x48\xd2\xf9\x63\xe9\xe7\xb1\xd4\x24\x2e\x64\xe5\xa7\xb5\x28\x49\x83\x5f\x60\x99\x26\xaf\xce\x7b\xe3\x1a\x4a\x94\x35\x7f\xbc\x60\xb5\x9f\xfa\x60\xbe\xc9\xd2\xd4\x26\xa2\xea\x66\xfb\x89\x43\x78\x61\x1a\x9a\x19\x3a\xbc\x94\xae\x36\x2b\xcd\x90\x4d\x03\x61\xb1\xe5\xaa\x99\xa9\x29\xe6\xdd\x07\xf5\x51\x4b\x64\xd6\x64\x5b\x91\x85\x3b\x54\xf1\x72\x30\x07\xe5\xcf\x7c\x8b\x24\x94\x72\x01\x9e\xbf\xca\x71\x74\xff\xf0\xa0\x05\x3d\x33\xa5\xb8\x42\x26\xe7\xaf\xe5\xfe\x16\xd9\x2d\x07\x26\xba\x71\x8b\x2a\x9e\xdd\xf7\x8e\x34\x8a\x57\xbc\x83\x47\x3c\xd9\xf0\x5b\x96\xf3\xc2\xfc\x75\x4e\xbe\x06\xd5\xf9\xbd\xc6\xd0\x61\x3a\x35\xdb\x76\x92\x2c\x82\xe0\xe7\xdc\x7f\x9f\x1f\x36\xa8\x53\x35\xa6\x41\x02\x34\xaf\x23\x47\x20\x8a\x47\xf2\xa0\xdf\x00\x49\x45\x6b\x37\xc8\x73\xa6\x79\xc0\xfc\x54\xd5\xe5\x8b\x8c\x86\xae\x79\xf3\x17\xb9\x51\xd4\x22\x14\xf2\xba\xbc\xce\x1f\x14\xf2\xba\x5e\xcf\x5f\x40\x99\xe9\x1e\x83\x52\xf4\xf3\x03\x66\xb9\x88\xe6\x17\x4a\x15\x85\x54\xcc\x1f\xae\x33\xba\x06\xce\x1f\x3c\x55\x66\x33\x4f\xe3\x8a\xa2\x6b\xdf\xfc\xbd\x57\x94\xf6\x33\xc3\xe2\x86\xa2\xd3\x6f\xfe\x52\x3d\xdf\xf5\xc1\x84\x08\x2b\x7f\xb9\x10\xcd\xdf\x8b\xcc\x86\xfc\x28\xe7\x6f\x92\x7c\xcd\x07\xd2\x61\xd5\x29\x72\x27\xaf\x67\xcb\xbd\xad\x7f\xff\xa9\x65\x6a\x82\x5e\x68\xd6\x64\xfc\x9a\xbf\x17\x99\x55\x61\xd5\xf9\x9b\x29\x05\x44\x3f\xd4\xf6\x42\xd4\xf3\x07\xb5\x7d\x5b\x6a\x10\x1e\x2a\x4a\x55\x33\x7f\x54\xda\x37\x6f\x05\xa0\xac\xe2\xfd\x09\xad\xbd\xee\x11\xf3\x47\xd4\xd5\xbc\xfb\xa0\xb6\xef\x16\x4c\x8b\xf2\xd5\x8b\xcc\xe4\x57\x45\x63\xd8\xa1\x9c\xf4\x24\x11\x65\x35\x6f\x9d\x1d\x85\x4c\xbb\x3f\xa0\xe0\x32\x1b\x51\x6d\xdf\xbc\xf9\x98\x34\x61\x8a\x86\x17\x77\xd5\xcf\xac\x20\x67\x42\xff\x99\x53\x77\x88\xd7\xea\x0f\xc0\x26\xd5\x0d\x22\x14\xd7\xbb\x33\xd5\xf4\x6a\xf0\x80\x35\xcc\x1d\x00\x96\x6d\x6e\xef\xe0\xb9\xe5\xed\x7f\x64\xee\x15\x7f\x81\x94\xf5\x4d\x14\x01\x44\x09\x08\xce\xdf\x09\xbe\xb3\x0c\xa3\xef\x72\x33\x09\x28\x0d\xad\xa0\x84\xf9\x4b\xd0\xe5\x69\xa3\x16\xfd\x67\x59\x0c\xd4\x55\x3f\x5f\xe4\xfe\x16\x37\xc1\x0d\x45\xe1\xee\xf3\x77\x52\x01\xb1\xd4\x24\x33\x51\x29\x8e\x76\xfe\x2e\x6a\x9b\x8c\x00\xae\x24\xd3\x9f\x60\x0b\x78\x9c\x17\x76\x6c\xf5\x07\xe0\x37\x13\x75\x91\xdf\x34\x4c\xe8\xc9\x8b\x77\x3c\x5c\x4a\x86\x77\x44\x66\xd9\xb4\x6c\x67\xc1\x15\xef\x39\xe4\xad\xfa\x08\xd6\x9b\x7b\xd4\x0d\x50\x0c\x5a\x68\x21\x17\xc1\x52\x19\xbe\xf9\xbb\x79\x7c\x18\x53\xc0\xa7\xe4\x73\xdc\x33\xb1\x77\x58\xf6\x3e\x38\x8b\xbd\x27\x9e\x9c\x37\x8d\xf2\xa1\x8d\xcf\x07\x0e\x32\x7d\x7f\xa8\xa4\x1b\x4a\xf3\x2e\x62\x66\x2b\xc5\x7e\xcd\x1f\x32\x5b\xad\x30\x78\x82\x03\x74\x98\xe5\x1e\xb2\xdc\x10\x53\x03\xff\xad\x30\x76\xa2\xab\x4a\xf3\xc6\x7a\xb0\x2d\xcc\xa4\x0f\x5d\x45\xdc\xe4\xcd\x16\xfe\x6b\x72\xa3\x83\xb4\xa4\xc3\x06\xe7\x95\xa5\x7a\x82\x73\x43\x0a\x05\x15\x33\x9b\x1b\xdc\xa3\xbd\x7c\xdb\x0f\xd9\xf7\xc2\xff\x23\x67\xd8\x7f\x5a\xe1\xb9\x41\x9b\x6e\x6c\xb6\xbd\xf8\xaf\x48\xf1\x31\xb7\x1f\x0d\xb0\xc3\x1d\x5e\x1c\x93\xde\xd8\x52\x7a\xa8\x8b\x2d\x27\xce\x3f\x4c\xbe\x11\xfa\x01\xce\x25\x5a\xdf\x6d\x03\x4f\x36\xff\xcf\x3b\xd4\x70\x0b\x37\x3b\xd5\x17\xcc\x94\xa5\xd8\xdc\xb9\x41\x1d\x6e\x24\xb5\xb1\x42\x61\x73\x9f\xd4\x87\x37\x89\xc9\xad\x70\xe4\x7e\x46\x71\xbe\xb5\xfd\x25\x86\x68\x6e\x89\xe5\x8a\x3b\x04\xcf\x4a\x18\x6c\x35\x79\x56\x04\x54\x84\x6a\x79\xa5\x50\x6e\xba\x7e\x9e\x93\x23\xb5\x14\x2f\x50\xab\x96\xf3\x5b\xe2\x34\x8f\xa0\xe6\x34\xf9\x07\xae\x8d\xd9\xe5\x05\x66\xc3\x90\x64\xa3\xb3\x88\x6e\x6a\x73\x6b\xd4\xbe\x0d\x0d\x83\xb0\x4b\x30\x6c\x63\x89\xc0\x62\x86\x69\x49\x85\xbf\xc0\xe2\x49\x3e\x6c\x2c\xcb\x22\x3f\xdf\xb9\x41\x5b\xad\x3c\xdc\x73\x43\x8e\x2b\x19\xb6\xe6\xd6\xb1\x99\x85\x08\x36\xe6\x02\x55\x68\xe8\xdc\x3a\xd6\x56\x30\x69\x83\x32\xdb\xc8\x6c\xeb\x1d\x19\x26\x45\x51\x4f\x06\xf4\x0b\x58\x9b\xff\x14\x42\x73\x1b\x29\xd3\x44\x02\x0b\xf4\x7d\xdf\xe0\xb1\x5d\xfd\x06\x3c\x4d\xab\x5f\xa0\xe3\xb0\xa9\x1e\x9c\x6a\x11\x41\xe5\xb2\x8a\x3b\xce\x2d\x98\x6d\x42\x44\x05\x6b\x87\xea\x34\xd8\x82\x7b\x5b\xd8\x6a\x0b\x1c\x51\x12\x6a\x5b\xe4\x5a\x88\xa8\x98\xe0\x10\xbf\x00\x87\x5d\xaf\x55\xd0\xae\xe0\x1e\x9e\x7f\xff\x89\x30\x03\x4d\xe0\x4b\x6f\xb3\x49\x7c\x69\xfe\x81\xa6\xec\xb3\xcb\xa0\x29\xb3\x8c\xdc\x26\xef\x40\x9e\x96\x49\x26\xae\x6e\x92\x62\x35\xc4\x71\x50\x96\x59\x68\x6e\x13\xe7\x93\xe5\x0b\x95\x65\x2a\x19\x39\x37\x06\xad\x7d\xe6\x69\x12\x3b\x68\x62\x17\x77\x9a\x10\xd3\x46\x8c\xe6\x69\x5a\x38\x91\xcc\xe3\xe9\x6a\x61\xa1\xb8\x88\x26\x74\x66\x6d\x2f\x48\xab\xdd\x52\x71\x25\x51\x6e\x12\xa6\xd6\xcf\x07\x17\x60\x9f\x49\xa0\x20\x17\x82\xda\x76\x4e\xb5\x3e\xd8\x93\xc9\x35\xb5\x3b\x89\xd6\xb0\xe1\x78\xfc\xd9\x77\x3b\xcc\xc3\xcb\x0d\x40\x7c\x79\x5e\xf7\x9c\x26\xbd\x00\x4f\x88\xcf\xb4\x1d\x54\x67\x08\x19\x6c\x07\x72\x34\x58\x0a\x1f\xb9\x98\x1a\x24\x5c\x1f\x3e\xd3\x04\xd5\xd7\xb7\x07\x2c\x9d\x07\x7d\x50\xed\xa3\xe3\x6d\x83\x27\x83\x02\x6e\xe7\x76\x60\x8f\x78\xcc\xf0\x64\x90\x6b\xfd\xdc\xe0\x19\x5c\x7c\xf8\x40\x11\x36\x5b\xf3\x0f\xe0\x47\xc1\xf7\x8d\x9a\xb1\xd6\xfc\x03\xe5\x99\xbb\x44\x3a\x83\x6a\x61\x74\x62\x0c\x53\x63\x38\x31\x8d\x53\x63\xfe\x0f\xd4\xf9\x85\x5c\x7a\x4d\xd3\x89\x41\x09\xe1\x6f\x27\x27\xfe\x43\x35\x95\x5d\x02\xbb\xdb\x05\x01\xa7\x5b\xc9\x86\x3a\xd5\xd3\xc3\x06\xa6\x5b\x9f\x43\x9c\x31\x6a\xad\xfd\xc5\x63\x6e\x6e\x17\x6f\xf8\x16\x3d\x17\xc7\xe8\xf6\x39\x46\x37\xcf\x75\xf3\xfb\x84\x29\x96\xc8\x84\x78\xe1\x2d\x76\xd3\xad\xd1\xcf\x3c\x5d\xcd\x3b\x37\x7d\xec\xfc\x1c\x6f\x17\xd2\x33\x6d\x70\x6e\x50\xf8\xe2\xdc\xe8\xcc\x60\x41\x72\x13\x66\x78\x65\x99\x48\xbd\x19\x13\xdc\xb4\x81\xba\x05\xca\x57\xe3\x10\xe6\x2e\xb5\x28\xca\x0a\x7b\x22\xe9\x21\x6b\x98\x46\x64\x2c\x58\xe1\x03\x36\x3d\x8f\x3d\x51\x70\x77\xe8\x0a\xd4\x98\x1b\x42\xde\xca\xe7\x99\x07\xae\x41\xc4\x03\x0e\x5f\x7e\x81\x7a\x56\xe1\x92\xc2\xf2\x2f\xf2\x5b\x99\x05\x88\xae\x2b\x68\x62\x96\x1f\xe7\x56\x07\x6a\x81\x47\x84\x22\x3d\x67\xf9\x71\x6e\xdd\x24\x71\x69\xe8\x79\xfd\xfb\x4f\x97\x63\xfa\x2c\x70\x90\x50\x50\xe6\x2c\x3f\x72\xb4\x2e\x6b\x05\x2a\x3d\xdf\xe6\x0a\xc2\xe1\x14\x73\x39\x0b\xb3\xb3\x6b\x50\x25\x15\x7a\xda\x44\x65\xfb\xe1\x03\x8d\x09\xd1\x70\x72\x7e\x99\xe5\x85\x88\x43\xce\xc7\xb3\x40\x19\xa7\x64\x30\xb3\x10\x20\x0e\x3f\xf3\xf4\xed\xfe\x80\xc8\x5a\x18\xb3\x20\x02\xee\xfb\xcc\xba\x0d\xa6\x80\x57\x2f\xf1\x78\xd9\xa0\xee\xe9\x26\xe9\x1d\x43\x75\x97\x25\x8f\x3e\x4d\x42\xa1\xb8\x14\x76\x2a\x85\xdc\xb1\xfc\xc9\xc2\xa8\xfc\x02\x7c\x79\x8b\xff\x3f\xf0\xbf\xba\x84\x37\xb2\xf1\x5d\x81\xf3\xb1\xd4\xfc\xb3\x20\x63\x56\xb7\xfa\xa7\xbc\x08\x71\x28\xc6\x73\x96\x9a\x02\xda\x5f\xbc\x2c\x2d\x5f\xd8\x59\xa0\xfb\x93\x03\xc7\x2c\xcc\x0e\xff\x69\x60\xa2\x41\xcd\x1a\xbc\x91\x95\x40\x78\x96\x9a\xd3\xec\x1f\xb8\x0b\x85\x72\x4a\xe3\x4a\x8b\x44\xd6\xa3\x56\x6c\xff\x2c\x74\x8f\x30\xc6\x28\x74\x8f\xb0\xb6\xa1\xb4\xac\x66\xaf\x79\x6a\xcc\x61\xae\x79\x69\xb9\xfa\xa2\xa2\x51\xbb\xd0\xdc\x09\x45\xae\xc4\x4b\x69\x14\xb9\xba\xe5\x96\xf4\x0a\x96\x7a\xaf\x74\x9e\xf9\xee\x85\x11\x6e\x6d\xf8\x13\x7a\x65\x48\x57\x54\x3a\xd7\x57\xb3\x0d\x0d\xa2\xa2\xf4\x66\x61\x5a\xac\x36\xdc\x24\xf6\x8d\x90\x4b\x01\xec\x54\x0c\xdd\x2c\x09\x3b\x75\xcf\x2d\x50\x21\xfa\xfa\x57\x06\x8f\xb3\xe1\x1f\x1a\x5e\x50\x0f\x83\x96\x6e\xcd\x4c\xfa\xfc\x7a\x6b\x42\xc5\xe8\x4b\x45\x19\xbc\x6b\x0b\xad\x17\x18\x5f\xe5\x4e\x3d\xcb\x40\x0e\x23\x09\xc5\xf2\xa2\xd2\x51\xcd\xc4\xb0\xbd\xf6\xb6\xfd\xe5\x24\x2a\xc1\x78\x2e\xcf\x29\x12\x6a\x7d\x44\x17\x6b\x36\x5b\xaf\x53\xd2\xbf\xd7\x93\x1e\x94\xa8\xc3\x9f\x60\x97\x58\x58\xd1\xe1\xb7\xe9\x2c\x2a\x93\x93\x26\xa4\x54\x58\xde\x26\x2c\x5e\x66\xce\x92\x3f\x59\x7c\x43\xb3\xc0\x14\x58\xcd\x3b\x07\x28\xb4\x78\xa7\x4c\x2c\xad\xf7\xee\xa4\x12\x4e\x47\x66\xa1\x7f\xaf\xaa\x2a\xcf\xb2\x18\x7f\x67\x1e\x5d\x49\xa7\x7f\x68\xd4\xd3\x89\x4e\xe2\xd2\x8f\xe0\x5d\x93\x3f\xf8\x13\x00\x7c\x1d\xbb\x65\x41\xcc\x79\xf7\xc1\x81\xb7\x7a\xff\xee\x3f\x36\xa0\x0f\x76\x06\x30\x98\x67\x77\xba\x6c\xfb\x85\xf1\xef\x3f\xb1\xcc\xa2\x3b\x63\x15\x87\x9b\xa4\x8c\x10\x4a\x2c\xf0\xe0\xad\x16\xc5\x50\xfd\x55\x73\x1c\x4a\xe8\xf8\xe6\x54\xf6\x9c\x3a\x93\x80\x42\x5f\x5e\x3f\x26\x47\x50\x28\xe3\x2c\xc8\x93\x5f\x75\x4d\x29\x89\x64\x05\x6d\x0b\x4a\xea\x0c\xb3\x04\x13\xac\xb6\xf0\x17\xc1\x3e\xfd\x45\x22\x7e\x3d\x63\x98\x3a\xc7\xcb\x91\x0c\xa1\x61\x1f\x1c\xa5\x5f\xe0\xe6\x0f\xff\x80\xfc\xba\xd3\x5d\xe6\x30\xfd\x03\xa3\x23\xcd\xd9\x27\x95\xf1\xa2\xe1\x4c\xc1\xa8\x3e\xaf\x9c\x08\x51\x7d\xd1\x77\x52\xe3\x44\xd4\x5a\xf5\x52\xbc\xc0\xb2\xf9\x62\x5c\x10\xb4\x36\x3d\x88\x8c\x59\xf3\x44\xa1\xae\x60\xd7\x8d\xb3\x00\x29\x56\x4f\x13\x9c\x6c\xcb\xe7\xc4\x00\x54\xac\xe6\x06\x78\xdd\x5a\xcb\x5a\xe0\x65\x5b\x2d\xa9\x2f\x30\xa4\x17\xff\x4e\x86\x54\x03\x30\xfc\x1a\x9f\x97\x3b\xd7\x56\x24\xde\x38\x04\xbd\x55\xef\xdc\x35\x1a\x24\xb2\xa9\x7e\x8e\x51\xe8\x1b\xc3\x1c\xfe\x42\xd1\xb2\x2c\x72\x98\x4d\xab\x4d\x77\x99\x1c\xad\x41\xbe\x60\xb4\x5a\x35\x5c\xe8\x47\xfb\x39\x09\x12\x7b\x1a\x2c\xc0\x91\xd6\xf7\xe4\xf2\x90\x68\xcd\x23\x82\xe0\xaa\x39\x3a\xa1\xa7\x8f\xfa\x87\xa7\x91\xe5\xf2\xc3\x95\x10\x91\x88\x82\xab\xa6\x11\x7e\xb6\xd5\x50\x20\xb3\x65\x79\x17\x3d\xc9\x7f\xff\x75\x51\x33\xab\xbe\x64\x5c\xfd\x6d\xff\xfe\x33\x55\x7f\x69\xd6\x1f\x8b\x23\x36\x3d\x73\x10\x6e\xa0\x61\xed\xfd\x4c\x37\xd9\xa5\x67\xa0\x3c\x9d\xc1\xf5\xc7\x21\xb8\x3d\x6e\x99\xe9\x1f\xe8\x54\xa5\x67\xc2\x44\x53\xcc\xbc\xa9\x4a\x52\x3b\x2b\x52\xea\x6f\xb5\xff\xe5\x30\xaa\x74\xc1\x55\x1a\xb6\x59\x99\x34\xd5\xa7\x69\x2d\xf4\x93\x97\x44\xae\x50\x22\x2a\xc1\xce\xac\x2f\xe4\x0b\xe5\xa4\x9a\x95\x88\x4e\x68\xa8\x32\x85\x81\x0f\xf0\x9a\x79\xaf\xa4\x7a\xa8\xb4\xf0\xfa\x40\xae\x50\x13\x2a\x27\xf2\xac\x69\xf1\x15\x96\xae\x70\xa1\xad\xd2\x23\x56\xb8\xd0\x2a\x26\x67\x56\x5a\x84\x7d\x69\xae\x15\xbc\xd5\xfc\xdc\xf1\xac\x1e\x2b\xec\x18\xe1\xff\x83\x0d\xb8\xc7\xf7\x94\x31\x4a\xac\x70\xb1\xad\x52\x9d\xd7\xca\x2b\xb1\x54\x0d\x35\x51\xe1\x34\x4d\xdc\x20\xda\x83\x95\x30\x51\x57\x98\xca\x1a\x84\x86\x15\xb5\xf1\xd6\xe3\x61\x35\x8a\xec\xe5\x37\x30\x0c\xc1\xef\xfa\xc2\xc6\x18\x5e\xab\xc6\x5b\xaf\x0e\x81\x8a\xec\xfb\xaa\x99\x3a\x6b\x66\x55\xf0\xff\xef\xa6\xb5\x9e\xb2\x76\xd2\xa8\xa5\x62\x4d\x22\x9b\x73\x6a\xe7\x09\xee\x0f\x38\xf3\x12\x66\xb5\x93\x66\x81\xa7\xda\x29\xd1\x3f\x7d\xe4\x3e\xd7\x30\x13\x75\x2e\xbf\x31\x41\xb5\xa9\x40\x04\x94\x5d\x36\xea\x8b\x11\xa7\x8a\x0c\xcc\x0a\x8c\xe8\xbc\x3e\xb3\xb2\xc6\xa0\x11\x52\x85\x11\xd8\xb7\x80\x8a\xf4\x03\xd5\x33\x17\x4c\x23\x25\x9a\xe8\xc3\x1a\x92\x35\x15\x46\x5e\x9f\xe8\x15\x3e\xab\xdf\x0f\x92\xcb\xfd\xc2\x03\x1a\xd5\xc3\x4c\x92\xb4\x78\x33\xd7\x5f\x44\x33\xd7\xd5\xa7\x8f\xc9\xe5\x56\x1f\x93\x87\xa1\xb9\x10\x4e\x77\x3e\x79\x2a\x22\xb0\xaa\x99\x12\x7a\xc4\x8f\x74\x82\xe7\x6a\xb7\x8e\xb7\xc2\x73\xd5\x28\xa2\x2e\x5e\xb7\xcc\x61\x8b\xf2\x4e\x3d\xc0\x11\x55\xe9\x85\x67\x5d\x34\x63\x78\xef\xae\xc5\x41\xf8\x0b\xd2\xa0\x89\x64\xae\xaa\xb6\xfc\x02\x05\x86\x60\x44\x65\x4c\x56\x5b\xfe\x01\x62\xdb\x32\x90\x88\xce\x22\x08\x7a\xc4\x6a\x01\x83\x90\x2c\x45\x91\xcc\x4a\x17\x3a\xc3\xaf\xba\xe7\x3e\x11\x0d\x48\x48\x50\xcd\x3f\x3b\x95\x1c\x96\x6a\x3b\x47\x21\xfe\xd9\x19\xec\x20\x92\x58\xf9\xc8\x67\x76\xdd\xb9\xfd\xbd\xd5\x0e\xc6\x36\x8a\xa8\x83\x1c\xa8\x0f\xa0\x17\x94\xf3\xe2\xac\x07\xa5\xa4\x0e\xf9\x7a\x42\x08\xfa\xa4\x80\x5a\x6f\x98\x7d\xce\x00\xc3\xa9\x03\x16\x6d\xfe\x9c\x45\x50\xe3\x0d\x6f\x55\x44\x34\x85\xc5\xcd\x09\x66\x08\x3f\x13\x9c\x79\x90\x17\xc3\x4c\x7d\x3a\x5e\x44\xce\xfe\x04\x29\x02\xde\x6d\xf6\x97\xc3\x88\x69\xa8\xba\xb7\xf1\x45\xbf\x01\x11\x08\x9d\x9d\xfc\x8b\x67\x7d\x81\x95\x53\xc4\xcf\x8a\xd0\xff\xd9\xbd\xc7\x50\xc1\x79\xb3\xd8\xbf\xc1\x18\x3e\xed\x6e\xd2\x2b\x98\x53\xa1\xa2\x9b\xc6\x9b\x95\x1e\x73\x86\x8f\xf5\x5e\x48\x75\x23\x46\xb8\x69\xea\xf1\xa6\xbc\x71\xfe\x79\x92\x80\x83\x3e\xeb\x4a\x3b\xad\x19\xe3\x41\x2c\x85\x94\xab\x15\xe1\x45\xd5\x67\x1d\x61\x91\xe5\xc8\x0b\x8b\xe6\x30\x02\x41\x0a\x2a\x6b\x15\xeb\x93\x92\x4a\xb3\x08\x05\xdd\xec\x9f\x2f\x40\xe1\xf2\x17\x27\xbf\xd0\xb4\x3d\x60\x3d\xcd\x4a\xcb\x94\x54\x02\x5e\x8d\xa8\xe7\xf3\x4c\xc3\xf1\xd4\x33\x63\x1c\xb5\x52\xed\x47\x22\x87\x9e\xf7\x7f\xff\x09\x15\xba\x9e\x0d\x0e\x74\xf2\x0b\x9f\xed\x85\x41\x55\xa1\x73\xb3\x51\xdb\xa6\xc3\xb4\x01\x15\xc9\xe1\x74\xb6\x1f\x75\x1b\x92\x2a\x2d\xdd\xe5\xb4\x41\xdb\x46\x81\xaf\x1e\xb7\x5c\xe9\xae\x1f\x82\x3f\xf8\x0d\x4a\x2e\x41\xaf\x56\xc0\x3d\x3a\x96\x1a\xa2\x8d\x14\xe9\x33\x5b\x59\x48\xf3\xe7\xff\x21\x23\x24\xd8\xda\x8b\x84\x86\xdd\xb9\x1a\xf3\xc5\x1b\xaf\xb6\x9a\xfe\xc9\x7a\x7e\x45\x82\xdd\x62\x1a\x55\x53\xd2\xd7\xb4\x9a\x2b\xab\x16\x2b\x0e\xa1\xe5\x67\x54\x66\x95\x24\x6d\xb4\x64\x5a\x7c\x37\x58\x32\xed\x4a\xd7\x68\xc9\x34\x9e\x6d\x88\x63\x1f\x9e\x25\x24\xef\x54\x5d\xa3\xd9\xd2\xd2\x29\xd9\xdb\x5a\xca\x39\x2d\x55\xbb\x91\xbb\x58\xb3\x08\x88\x31\x55\xc0\x62\x36\x6a\x9d\x0c\xe3\x5b\xe7\x65\x44\x34\xf4\xe4\x68\x75\xda\xe9\xa5\xaa\x3e\xa9\x64\xea\x02\xad\xad\x53\x52\x99\x9f\x06\x0f\x5b\xb1\x78\x43\x64\x79\x97\x3c\x6f\xd0\x32\xd9\xfd\xa7\xa1\x50\xf2\xe6\xa9\xa6\xe3\x9a\x2f\x71\x6d\x90\x7f\x36\xb7\xf0\xf2\xbc\xa2\x37\x67\xa3\xda\xc9\xd0\xbe\x21\x34\xc7\x8e\x8d\x8d\x09\x3c\x7d\x91\x6c\xe3\xc0\x0b\xa6\x91\xb1\xc9\x6e\x80\x27\x82\x1b\xb8\xf1\xbe\xff\x7f\xf0\xac\x89\x65\xa4\x8e\x02\xb0\x67\x43\xa8\xba\x35\x4d\x2d\xe8\x00\x22\xd9\xd1\x22\x47\xa9\x2e\xe0\x0b\xb7\x79\x0b\x04\x11\x87\x8e\xd2\xf6\xe2\xa4\x21\x17\xe4\xf7\xae\xcf\x69\x11\x47\xc1\x39\xce\xbe\x70\x2d\x60\x35\x34\xbf\x44\xae\x9d\x89\x22\x03\x49\x68\x37\x18\x5c\x67\x17\x70\x6e\x30\xb8\xda\x6d\xb5\xc1\x3b\xae\x79\xdb\x64\x76\x77\x4b\x1b\xe4\x64\x6a\x7f\x2a\xdd\xfa\xa2\x6b\x28\xbd\x35\xa2\x45\x58\x26\xb4\xd1\x16\x4d\xd0\x5e\x58\xea\xa8\x86\x9f\xb9\xcb\x74\x90\x36\x46\xa9\xf7\xe2\x36\x17\x1c\x6d\x35\x09\xb0\x94\x76\x73\xdf\x62\xfa\x6e\x1d\x54\x0d\x08\xa7\x99\xd9\x90\x91\xc9\xae\x1e\x8d\x19\x96\xba\x8e\xc2\xb6\x13\x87\x99\x28\x38\x97\xd9\x65\xb9\xed\x29\x31\xd5\x04\x0b\x2d\xda\xd4\xd9\x0e\x06\xa3\xe9\x8b\xa3\x41\x14\x88\x86\x63\xa2\x5a\x81\xe6\xe5\xe0\x4a\xab\xc7\x83\x57\x22\x0b\x69\xa8\x87\xec\xe3\xd4\x0e\xf2\xb7\x3b\xa4\x1e\xd6\xdc\xc7\xbc\xed\xbd\x98\x04\x4e\x83\xbe\x38\xe9\x7f\x2a\xbc\xda\x4e\xce\x8b\xa6\xe1\x24\x7e\x15\x22\x6e\x27\x0c\x5e\x82\x86\x0d\xc9\x37\x9b\x7b\x38\x29\xdf\x34\x08\x04\x0d\xd8\xd1\xb0\xc1\xd2\xd9\x74\x7a\xb7\x93\x38\xcf\xe2\x0d\x96\x4f\xbb\x9e\xb5\x17\x23\x0d\xbb\x50\x35\x04\x81\xc7\xf0\xff\x95\x63\x14\x85\x17\x29\x52\x83\x17\xa7\xd5\xff\x83\x22\xdd\x12\xdb\x0b\x82\x1c\x22\x3d\xdb\x9d\xcc\xa6\x69\x66\x1a\xcc\x6e\x9a\xef\x13\x25\xc0\xd5\xc3\x0d\x77\x54\x4b\xec\x9b\x12\x5a\x48\xb3\x3d\x39\xcd\x22\xfa\xe1\x96\x14\x74\x6c\xf4\x2d\xf3\x95\xbd\x01\xb5\xd8\x91\xa8\x3d\x94\x86\x16\xb8\x4f\x52\x25\xba\x1f\x5a\xdc\xbc\xef\xe1\x07\xd6\xaa\x9b\xe4\x65\x45\x57\xac\xf6\x80\x1b\x34\x73\x9d\x61\xd4\xd3\xcf\xb8\x9b\x68\x9c\xfd\x97\x34\x2c\xfd\x40\x2f\x1c\xc1\x8c\x4e\x23\x9e\x2f\x27\x7d\xe3\xb9\x21\x69\xd0\x19\x17\x6d\xa7\xfa\xfe\xe2\x8a\xaa\x3a\x56\xef\x21\x04\xaa\xd5\x29\x92\x0e\xd9\x47\xa6\xc3\x4a\x67\x57\xc2\x4e\xfd\x4d\xff\x7c\x40\x8e\x92\x84\xec\x1b\x85\xc1\x32\x0d\x18\xb7\x26\xbf\x17\x32\xfd\xd0\x33\x17\x43\x2c\xd1\x4b\x7d\x17\xfc\xe7\x17\x06\xd2\x37\x68\xa2\x58\xfb\xc6\xb7\xb8\xce\xa4\x41\x56\xf2\xf4\x92\x54\xfa\x13\x2e\x8e\x68\x82\x52\xc7\x08\xb0\x17\x9e\xc0\xc2\xee\xbd\x52\x8f\x24\xb4\xd4\x53\x47\xa3\xbd\xdb\xd3\x72\xa7\x3b\x79\xa7\xe5\xce\x6d\x56\x02\x05\x6d\xe6\xfe\xc2\x9b\x08\xa1\xc2\x5e\xef\x17\x55\x7a\xb1\x18\x7f\xe8\xfb\x6e\x87\xca\xc5\x8e\x37\xbd\x61\xe6\xbc\x18\xad\xa2\x08\xaa\x3a\x68\x54\x4d\x34\x37\x30\xd1\x80\x7a\x6c\x4c\x55\xa4\x89\x43\x90\xb2\x2d\x6a\x1d\x7e\x5f\x4d\xb0\xa3\x23\x77\x79\x6c\x7f\x72\xe4\xee\x89\x94\x04\xc6\x7a\x4f\x6e\x54\xf7\x9d\xfb\x50\xa0\xa3\xd3\x2d\xcc\xb7\x8d\xde\x2b\x84\xb6\x46\x84\xf0\x48\x7b\x31\xf4\x54\xbe\x34\x37\x09\x6d\xb7\x79\xa7\x73\xc4\xa6\x61\xa1\x41\x3f\x13\xe4\xfa\x7b\xb2\xaf\x57\x91\xe1\x94\xd1\x4d\x12\x95\xae\xd2\xb5\x74\x64\xf1\xf9\xcc\xfa\xa0\x85\xcc\xb3\x38\x26\x7c\xd7\xc4\x8d\x03\x19\xe4\x3d\xeb\x03\x98\xc2\xfc\xfc\x02\xa9\xa9\xd2\xb9\xb3\x03\x38\x35\x53\x30\x72\x62\xf5\x02\x51\x8c\x84\x53\x0f\x42\x7f\xdd\xff\x3b\x6b\xd8\xd8\xfe\xda\xe9\xe3\x6f\x2b\x53\xa7\x4d\xce\x2e\xe8\x1d\x36\x39\x1b\x68\x3b\x6d\x72\xb6\x4b\x76\x38\x96\x35\xc1\x88\x9e\x38\xc7\xcc\x36\x91\x36\xdc\xf3\xc4\x14\x3c\x21\xcd\x59\x9f\x3c\xf5\xbd\x78\x93\xe3\x70\x93\x58\x3c\xd3\x34\x73\x5c\xfe\x01\x87\xc9\xa7\xcb\x83\x2f\x98\x48\xe6\x6c\xd2\x65\xb1\x4f\xe2\x06\x9d\xa0\x1d\xc1\xcc\x36\x5d\xf7\xc5\x3d\xa5\x16\x68\xd2\xeb\x9e\x7d\x04\x5d\xda\x75\xa3\x03\x1d\xd9\xc2\xd7\x59\xfb\x5a\x31\xe9\xb3\x03\x2d\xd9\xf3\xb9\x23\x1a\xa0\x7d\xfe\x87\x2c\xd2\xd9\xd3\xa9\x2f\xea\x9f\x1e\x38\xf5\xfe\x22\x4d\x7e\xba\xa4\xf7\x3d\xa5\x93\x26\x06\x9e\x65\xf6\xdd\xe9\xcc\x6f\x6e\x65\x48\x87\x0e\xc9\x26\xfc\xbe\x53\x86\xea\xd2\xdc\x77\xce\xbd\x3f\x58\xef\xa5\x65\xfa\x83\x1d\x16\x3d\x11\x89\xf0\x00\x65\xac\x99\x7d\x7f\x31\xe1\xb4\x6c\xda\x79\xfc\x79\xed\xf6\x1b\x2f\x98\x44\x38\x2e\x0a\x8a\xf7\xe3\xf7\xee\x82\xcd\xcf\x04\xf7\xd3\x3f\x50\x9e\xea\x96\xde\xd3\x02\x28\x7d\x61\x3f\xa8\xfd\xd0\x3d\xaa\x13\xe3\xf9\x6c\x82\x77\x5b\xf3\x79\x49\x8b\x9f\xef\x55\xfd\x44\xb4\x9e\xae\x20\x9d\xe9\xd1\xad\x82\xe9\x2c\xa1\xf8\xd9\xbc\x70\x36\x6b\x3e\xa4\x99\xdd\xbc\x9b\xc1\x4e\x7a\xd0\x2d\x7f\x81\x5b\xae\x80\x42\xcf\x40\x4e\xef\xde\x13\x07\xa6\x19\x88\x98\xcc\x32\x0e\xa1\x99\xf6\x51\xe8\x69\xd1\xf3\x5a\xc1\x82\xd7\x7c\xf0\x20\x1e\xc0\x2e\x08\xfd\x22\x83\xb9\x87\x34\xe1\xf9\x68\xba\xb9\xb9\x3d\x73\xc8\x76\xbe\x79\x5f\xdd\xa4\x41\x13\xc7\x88\x80\x8f\x20\x4e\x4d\x94\x0f\x50\x68\xa2\x7c\x07\xe8\x37\xd6\xa2\xfb\x03\x6a\xa0\xcd\x51\xe9\xfc\x65\x20\x81\xfa\x34\xad\xfc\xfe\x76\x1c\x3d\x49\x91\xa6\xe9\x41\x49\x3f\xdd\x57\xfb\x43\xe6\x70\x7f\x20\xc8\x92\x02\xd5\x6b\xa6\x61\x08\x8b\x23\x5a\xc5\xd9\xe1\x18\x66\xe3\x7f\x7f\x12\x44\xfc\x37\x8b\xe3\x47\x85\xa3\x26\x7e\x20\x6f\xa5\x5d\x1b\x07\x20\x9f\x62\xc2\xdf\x83\x0f\x79\xfc\xaa\x9e\xc9\xaf\x6e\x10\xa2\x44\x9b\x70\x20\x0f\x4e\x28\x35\xd6\xbb\x7d\xd8\xe3\xd0\x0f\xbc\x51\x48\x42\x0e\x28\x96\xec\x59\x31\xb6\xf1\xef\x3f\xdd\xda\xeb\xb1\xc5\xfb\x2c\xc0\x38\x36\x7a\xa2\xe9\x8a\x31\x52\xcf\x24\x56\x18\x1b\xe7\xcd\x5d\x52\x28\x2f\xff\xc0\x7b\x91\xf8\x71\x94\xa4\x52\x9d\x42\x35\x65\xe3\xff\x28\x59\xd5\x4d\x03\xa7\xa7\xbf\x1d\x0a\x46\xa1\x86\x3b\xdc\x04\x77\x95\x3a\x2d\xa8\xce\xab\x43\x75\x54\x6c\x22\xcf\x43\xa2\xb3\xe5\x1f\x72\xa0\x22\x22\xd5\x55\x5a\xdf\xc1\x92\xd7\xd6\x57\x0d\x1a\xcd\xba\x58\x66\xa4\xd1\xcc\x1c\x80\xa0\x49\x7b\x14\x8c\x96\x99\x0e\xd5\x09\xbc\xf7\xc7\xd4\xfd\x69\x30\xf7\x78\x68\x5f\x8c\x04\x75\xdd\x6f\x60\x37\x4b\xb4\x0f\x80\x34\x55\x24\x9b\x03\xd9\x14\xad\xf2\x1d\x3d\x59\x40\x1f\x74\x1e\x71\x5e\x31\x3a\xdf\xdb\xf1\x78\xc0\xfb\xde\x11\x24\x83\xf5\x05\xbb\x67\x0f\x36\xaf\x50\xd5\xeb\x39\x60\xe3\x1a\x9f\x3e\x60\x6f\xb2\xb2\x70\x74\xc4\x49\x7b\x01\x51\x82\xfa\xe3\xde\x37\x80\xb3\xc2\xbc\x0d\x4f\x2b\xbb\x5f\x0f\x24\x9b\x09\xa5\xa1\x9a\x63\xd0\xde\xa8\x23\x6c\x50\xe9\x65\x4d\xcb\x40\x5a\x0b\xeb\xaa\x07\xab\x4e\x5b\xa7\x35\x10\x01\xa0\xa4\x50\x73\x0c\xde\xb0\x74\xe6\x8c\x41\xf8\x60\x2a\xe0\x4b\x65\x7b\xf7\x08\xc6\xea\x98\xcf\x90\x1f\xb1\x58\x47\x39\x22\x59\x57\x9d\x04\xe3\x15\xdd\x24\x75\x92\x26\x13\x60\x4d\xe5\x7a\xe6\x00\x56\x73\xdd\xad\x39\x66\x36\xa9\x4e\x27\x84\xad\x85\xeb\x98\xe4\x5d\xcf\x0d\xbc\xa1\xea\xe7\x0b\x1e\xcf\x1e\x48\x26\x9b\x10\x6a\x1d\x30\x9d\xb5\xcf\x73\x47\xda\x19\x8d\x6b\xe5\x40\x35\xae\xb4\xa5\x49\x8f\x35\x90\xcc\xb0\x58\xc3\x37\x76\x58\xeb\xad\x5d\x1b\x3b\xfb\xd0\x17\x3b\x20\x64\xf1\xff\xec\x43\xa0\x60\xc0\x31\xc9\xa6\xb5\x41\x33\x95\x15\x1e\x03\xb9\x20\x6c\x83\x19\xf0\x98\x6f\x16\x56\x07\x45\x8f\x27\xfb\xe0\x66\xf0\x44\x20\x39\x84\xad\xb9\xe3\x08\x76\xe1\x26\x28\x28\x3c\x0a\xc6\x29\xb6\xed\x2f\x79\xe8\xe6\x38\x1e\xbe\xad\x89\x3c\xe9\x12\x24\x40\x38\xce\xa4\xd1\x3f\x24\x8d\x9a\x27\x04\x3a\x5a\xd7\x35\xe8\x22\x6f\x35\xce\xa0\x9e\x48\xf8\x7f\x9c\x4c\x15\xec\xff\x71\xf6\x59\x44\x9f\xcc\x57\xe8\x06\x33\xd7\x99\x9e\x91\x67\x49\xe8\x6e\x5c\x49\xa2\x06\xc1\x28\x47\x6b\xcb\xc6\x45\x12\xfd\x4c\x05\xb4\xf7\x1a\xd3\x03\x2a\xd1\xf5\x1c\xcc\x9d\x5d\xdd\x24\xd9\xc7\xdc\x80\x30\x47\x1b\x86\x06\xec\x69\xc5\xca\xaa\x01\x4f\x25\x1b\x24\x06\x3c\x95\x6c\x1d\x1b\x84\x39\xd6\xb7\x0d\xa6\xa4\x50\x0a\xe4\x39\x00\x73\x3e\x02\x82\x65\x9d\xad\x70\x1b\x89\x73\xcc\x1e\x37\xd9\xc3\x02\x1c\x39\x2a\x6c\x15\x1c\xf7\x89\x67\xf7\x79\x41\x79\xea\xf7\x91\x17\x46\x37\xd6\x71\x93\x68\x2d\xfe\x83\x9a\x3f\xd2\xc8\x0c\xc0\x96\x6e\x76\xcc\x0c\x15\x9e\x47\xd8\xcb\xba\xf7\x0c\xec\x65\xb1\x7d\x7e\xe0\xde\xf7\xa8\xe1\x57\x64\x90\x1b\xa8\xf1\x62\x93\x47\xc0\x8b\xc8\x7e\x1a\xc1\x94\x15\xf6\xf0\x0c\x56\x74\xb1\x4e\x27\x7e\x5c\x6d\x71\x68\x00\xe9\xd8\x5a\x15\x3f\xae\xbe\x38\x34\x7e\x13\x2f\x4c\x3d\x73\x98\x6e\x60\xc7\xb3\x7b\xa0\x03\xb1\x16\x22\x60\x73\xf3\xbc\x06\x3d\x91\x94\x8f\x72\x06\x5d\xdc\xad\x80\x0b\x66\x11\xec\x1e\x06\x2a\xc0\x74\x09\x93\x40\xce\x8a\xfe\xf3\xff\x3c\x71\x96\x5f\xa0\x5b\x6a\xf7\x1b\xf0\xbb\x19\x7e\x26\x4c\xf1\x3c\x00\x2c\x59\x45\x1c\x28\x1b\x1d\x9f\x0f\x78\x19\xf0\xbc\x6c\xc4\xea\xc2\x29\x91\xe0\x49\x32\x30\x4a\x22\x06\xbf\x91\x5c\xad\xf5\x2b\x1d\x9d\x6a\xaa\x0a\x25\xb5\xa7\x06\x6e\xef\x56\xc7\x47\x61\xa8\x53\x77\x1f\x39\x77\xfa\x01\xb6\xbf\x8f\xa7\x59\x54\x0a\x00\xe9\x71\x03\x3e\x4c\xb6\xac\x04\xb2\xfe\xd9\x2c\x12\xcc\x59\xa1\xa2\xec\x33\xe0\x93\xf4\x71\x8b\x09\xe4\xac\xe8\xc5\x5d\xe4\xdc\x68\xb2\x80\xae\x6c\x8b\x09\xa2\x2b\x3b\xad\x04\x53\x52\xd8\xa9\x20\x68\x51\xb4\x32\x32\xa0\x11\x73\x08\x56\x34\x26\x0f\xf0\x07\xd8\xbd\xe6\x19\xda\x0b\xad\x20\x0d\xe4\xb6\xb6\x59\x21\x7a\x4e\x8c\x16\x10\x91\x8e\x56\x98\xc6\x8b\xad\xc2\x31\x84\xd1\x31\x2f\x52\x77\x07\xcc\x87\x1f\x1b\x66\xc0\x67\xdd\x9a\xe7\x48\x0d\xd5\xf0\x17\x98\x06\x1d\xfe\x81\x22\x2c\xbd\xb4\xbf\x1c\x47\xc1\x30\x49\x6b\x80\x63\x90\x5e\xb7\x86\x68\x2b\x6f\x7e\xb8\xa3\x5b\xdb\x1e\x48\xd9\xd7\x75\x54\x04\xcc\x7c\xd6\xb5\xc7\x20\xeb\xb8\xc1\xcc\x78\x61\x8e\x46\xb1\x95\x8f\x92\x2e\x10\x24\x69\x93\x40\x04\x14\xc0\xde\x34\x48\x06\xd6\x2d\x6d\x82\xba\x78\xdd\x67\x83\x56\x3a\xab\xd4\x22\x10\x95\x66\x7e\x86\x4d\xce\x39\x31\x62\x12\xcf\x7a\xeb\xcf\xdc\x22\xfe\x02\x88\x6a\x58\x20\xc1\x9d\x7c\x0e\x0b\x9c\x49\xbf\x84\xe1\x36\x5e\x49\x6f\x57\xdd\x60\xe2\x09\x5f\xef\x62\xf1\x3c\x32\x19\x54\x3e\xa9\x3c\xe0\x0c\xda\xe6\x7c\x63\x8c\x95\x02\x45\x23\xcb\xa8\x44\x4b\x10\xd8\xde\xac\x2c\x8c\x9d\x9b\xc2\x92\x13\xee\x45\x56\xd3\xc6\x4e\x03\xa1\xae\x67\xc1\x54\x11\xc3\x93\x01\xd4\x65\x55\x60\xec\xd9\xa7\x9b\x40\x9f\xa6\xf2\x20\x53\x09\x4f\x04\x0a\x98\x58\xf3\x17\x28\x75\xd7\x7d\x71\x0d\xa4\x76\x58\xde\xeb\x30\xbe\x59\x05\x16\x70\x2f\xea\x9f\x06\x6f\xd2\xe8\x16\xe9\xbf\xab\x2b\x63\x20\xf0\xd0\xf1\x9e\x41\x54\x35\x2c\x05\x01\xa2\xac\xbf\x0c\x60\x26\xab\xe1\x02\x19\x96\xad\x08\x0c\x26\x8b\x68\x9f\x16\x29\xc1\xc2\x6f\x10\xb1\x48\xc7\x15\x27\x27\x4e\xa3\x38\x49\xb5\x05\xed\x45\x22\xf5\x01\xbc\xbf\xad\x76\x89\x2b\xd7\x5f\x8b\x87\x30\xc2\xbe\x59\xa2\x5d\x04\x9f\x5e\x1c\x56\x1c\xf1\x45\x2a\x12\x26\x79\xa0\x54\xff\x0c\xef\x27\xf8\x19\x39\x90\x2a\x98\x0a\xd9\xca\xc0\x20\x4e\xb2\xb3\x56\xd0\x63\xdb\x3a\xea\xa0\xd5\x6e\x58\x0e\x22\x93\x71\xb7\xde\x20\x68\xc6\x33\x6b\x43\xdf\xd3\x7d\xdf\x0e\x02\x1f\x5d\x7c\x83\xf5\x89\xad\x79\x0d\xb8\x1a\x75\x5d\x84\x83\x0a\x22\x6b\x56\x03\x09\x20\xba\x01\x61\x30\xfa\xaf\x7d\xda\x64\xb0\x8a\xa6\x93\xb9\x8e\xdb\xa7\xcd\x03\xd9\xe8\x34\x0c\xe8\x78\xac\xcd\x8b\x87\xd2\x4c\x73\x35\xe1\x6c\xd4\x7d\x13\x9e\x04\x47\x8e\x29\x9a\xac\x3d\xe2\x80\x9e\xf9\xcb\x35\x9c\xfa\x01\xae\x6f\x92\x24\xf3\xc7\x35\xed\x6e\x73\xa7\x78\xf2\x1b\x39\xbb\x4b\x3f\x60\x7f\x08\x03\xcc\x1f\xe8\x96\x44\x9c\x3f\x4e\xae\x5a\x4c\xcd\x91\x96\x63\x12\xfb\x48\x36\xcd\x8d\x3c\xa0\x91\xcf\x2d\x79\x40\x5d\x32\x61\x97\xef\x41\x13\xb6\x43\x6b\xbb\x26\x7c\xbf\xad\x80\x9b\x1b\x35\xe5\xf1\xa7\x10\xd8\xb9\xe5\x24\x68\x48\x5b\xae\x95\x09\xa0\xd8\x0f\xd3\x7c\x92\x22\x8d\x9a\x19\x9a\xad\xf0\x9d\x2f\x9a\x8a\x29\x21\x3e\x0b\x47\xad\x3e\x0a\xf7\x9f\xa6\x09\xde\xe3\x76\xf6\x9c\xa8\x90\x67\x2d\xf8\x2c\x3c\xac\x75\x7a\xcf\xc2\xc3\x59\xaa\x94\x59\xb8\xe5\x75\x5e\x4e\x96\x4d\xb6\x7a\x77\x56\xd2\xa0\x89\xae\x3c\x0e\x75\x82\xce\x4a\x21\x30\xfc\x03\x27\x56\x13\x01\xef\x6e\x2b\xc7\x66\xc6\xfc\x49\xcb\x34\x89\xa4\xc2\x0d\xf0\x7c\x14\xa6\x98\xa9\x97\x12\x0d\x8d\x7b\xcf\xec\xd0\x30\x31\x1e\x16\x83\x04\xad\x84\x9e\x0d\xd2\xd4\x6b\xd1\x68\xfd\x91\x92\x69\xa2\x44\x9e\xed\xc4\x93\xbe\xdc\xaa\xae\x3b\x67\xcb\xe5\xd4\x64\xbf\xd8\xab\x38\x15\xc2\x44\x65\x65\xdf\xf5\x27\x15\x5f\x21\xcd\xca\xec\x49\xb5\x7f\x20\xd5\xea\x02\xee\xde\x56\x5d\xce\x9e\x44\x6a\x26\x3b\xb7\xa6\xfb\x80\xa2\xcb\x86\xe3\x99\xe8\x4c\x70\x67\x12\x9d\x79\x98\x9d\x73\x2f\xcd\xcb\x84\x26\xac\x7c\x68\xa2\x38\xf6\xea\x41\x13\xd6\x3e\x44\x61\xeb\x7a\x1a\xe0\x1d\xd6\x37\x33\x2d\xbd\xc3\xac\xc3\x9d\x83\x69\x27\xfc\x02\x87\xad\x2e\x07\xf3\x24\xa9\xc7\x91\x3b\x57\x8b\xf7\x62\xba\xea\x8b\xf2\x64\xaa\x0c\xd5\x2a\x9d\x73\x90\x81\xfc\xcc\xa9\x97\xa2\x6c\xd2\x46\xa9\x4a\xa2\x73\x06\xb3\x41\x8a\x86\xe0\xda\x78\xeb\x20\xcf\x99\x75\x1a\x13\x2e\xed\x56\xcc\x4c\x64\xc6\x58\x26\x9a\x46\x4e\xab\xdb\x27\xe3\x0c\xad\xb0\x9f\xc8\x5b\x66\x4d\xce\x84\x49\xb3\x9b\x46\x98\x34\x6d\xd9\x9d\x33\xe7\x51\x1f\x4c\xec\x44\x2f\x1d\x51\xa2\xee\xc5\x93\x25\x43\x7e\x7e\x1f\x16\x02\xcf\x33\x22\x0a\x7d\xe9\x9d\x8b\xdf\x6b\x08\x50\x99\x4d\x69\x38\xe6\x82\x34\x91\x4a\x64\x52\x83\xf6\x11\xca\x0b\xcc\xa5\x3b\xee\x5c\x1c\x91\xa6\x60\xf1\x34\x32\x83\x27\xd8\x13\xe2\x98\x04\x7b\xcb\xcf\xd8\xa6\xba\x5e\xce\x9d\x27\xa4\xf9\x17\xb1\x80\x5d\x59\xec\xe7\xdc\x59\x48\x42\x83\x40\xf6\x55\xab\x4c\x26\x34\x6c\xbe\x66\x4f\xd4\xb2\xf3\x7d\x75\x22\x70\x4f\x45\x71\xe6\x3c\xb8\xce\x7e\x3f\xa0\xed\xf4\xff\x14\xf3\xe6\x7f\x1a\xe9\x54\x82\x76\x4e\xb8\x55\xf9\xda\x3e\xcf\x1c\xb4\x06\xf5\x42\xbd\xb2\x79\x3f\x9c\x05\x1e\x43\x22\x19\xea\xb2\xf9\x8b\x3f\x9d\x43\x08\xe1\x6b\x4e\x33\x35\xcf\x9c\x21\xcd\xc8\x49\x99\xef\x21\x9d\x74\x9b\xf0\x1c\x9e\x88\xc8\x15\x8a\x9b\x54\x9f\x8d\xcf\x0f\xd0\xd1\x2b\xc1\xfc\x9c\xf4\xb3\x52\x09\xd2\x39\xa1\x4f\xf3\x7d\x7b\xbe\xc8\xb0\x4e\x6f\xa7\x8b\x88\xa0\xf8\x07\xf8\x24\x5b\x50\xc1\x08\xe8\xab\xf0\xbc\x78\x36\x9a\xdb\x51\x68\xce\xb7\xeb\x79\x53\x2f\xe9\x1d\x7a\x23\x04\xc0\x24\xa5\xea\xcb\x1b\xec\x9e\xe8\x42\xfc\x9c\x31\x75\xde\x40\x40\x70\xbe\x96\x4d\x20\x38\xab\x21\xe7\xc3\x41\xfa\xfd\x0e\x60\xa4\x89\x7d\xb2\x47\xb1\xf3\x83\x1c\x14\x1e\x34\x94\x63\xbe\x7c\x4f\x38\x65\xd9\x09\x70\x3e\xa8\xba\x6a\x66\x7b\x50\x3a\x40\x70\x6f\xfd\x72\x61\x96\x7e\x20\xc5\x5d\xcf\xa0\x50\x98\x67\x25\x96\x93\xfa\x6f\xfd\xe0\x90\xa2\x75\x59\xd0\x5b\xf9\x2e\xb5\x7e\xa0\x68\xf3\xff\x54\x28\x48\xee\x2d\x20\x33\x0f\x71\x6d\x54\xbe\xf9\xff\x8a\x06\xfc\x4c\x87\x3a\x51\xb4\x61\x9d\x05\xd5\xd7\x8b\x81\x86\xe7\x70\x31\xcd\x96\x95\xee\x0b\xda\x21\xdf\x0f\x57\xa1\xc1\x49\x3b\x7c\xc1\xf8\xd6\x37\xcf\x12\xd3\x26\x38\x0c\x6f\x21\xe2\xad\x2b\x61\xf8\x5c\x95\xd2\x5e\xa2\x6d\xd1\x9f\x4a\x25\x3c\xe6\xaa\x3c\x7a\x25\xdb\x16\x40\x8d\xaf\x46\xab\xf2\x16\xda\xfd\x02\xb8\x4b\xbb\x7a\x41\x81\x14\xde\x87\x8b\xf6\x39\xc7\xb0\x2d\xc0\x1e\xdf\xf8\x16\x15\x48\xaa\x78\x30\x57\x23\x0a\x2e\xfe\x61\xc3\x5c\xa8\x85\x46\x2c\xa6\x0b\xc4\x6a\x9c\x7d\x2d\x37\x60\xcf\xf8\x34\xd0\xf9\x81\x5f\xa0\x09\xc3\xb3\xc9\x54\x08\xce\x6a\xba\xa0\x62\x1a\xe6\xa0\x17\xe6\xfc\x1f\x4d\x14\xf2\x9e\x29\x7a\x4d\xd9\xc8\xb1\x3a\xe2\xe8\x74\x8b\x5c\x2c\x7e\x66\xfb\xc0\x4a\x50\xf2\xf9\x82\x67\xa7\xce\x81\xd5\xa9\xbc\xf8\x7c\x02\xb6\x91\xd8\x5e\xf4\x51\xf7\x6a\x40\xc9\x34\xa4\x83\x59\xa9\x47\xd2\x39\xb0\x46\x4e\x9d\x5a\x60\xe9\x5f\xef\xf6\x35\x38\x77\x9a\xec\x41\x0e\x10\x8b\x40\xb3\x64\xe4\xbc\x06\x01\xa2\x89\x86\xa3\x94\xc1\xf7\x1a\x14\x69\xcb\x5d\x3e\x78\x41\xc3\x0e\x8a\x34\x13\x89\x54\x08\x76\x3d\x5c\x91\x34\x8a\x06\xa8\xa2\x0c\x94\x57\x10\x8b\x4b\xff\xb2\xe0\x8b\x35\xa4\x3e\x5b\xc8\xcf\x55\x6c\x84\x58\x41\xc1\xec\x61\x44\x4e\xb5\xe6\x81\x2e\xe4\xfd\xf7\xa7\xb0\xa3\x05\x54\x63\xd8\xbc\x5e\x54\x53\x54\x38\x75\xae\x17\xd5\x6c\x75\x0a\x1d\xae\x09\xb1\x6d\x11\x86\x84\x5f\x3e\x18\xd6\x1c\x90\x58\x9a\x24\x26\x5c\x35\x3f\xc2\x2b\x6b\x08\xb5\xac\xd4\x84\x7d\x7a\xe4\x3a\xf9\x19\x9a\x31\x4b\x87\x99\xe3\x73\x0f\x0f\xca\x79\x8a\x02\x66\xbe\x57\x65\xd6\xb9\x16\x49\xf4\x73\xe3\x3e\xd5\x1c\x52\x2f\x66\xc4\xba\x32\xcf\x82\x9f\x31\x08\x6f\xe4\x85\x41\x48\xd3\xb6\x50\x70\xc2\xf7\xfe\x45\x9f\xab\x61\x31\x4a\x9f\x2b\x2b\xff\x17\x7c\xd8\x0d\x70\xd7\x9e\x02\x4c\xc3\xdc\xc1\xbe\x82\x29\x6b\x47\xdd\x55\xcf\x1b\xb2\x7b\x19\x9a\xad\xf4\xa8\xf2\x33\xe4\x80\x50\xcc\x82\x52\xed\xb3\xab\x0f\xce\x92\x2e\x8e\x0b\x79\xee\x0d\x22\x16\x4c\x99\x56\xb2\x2d\x7a\x50\xd9\xe8\xb2\x8e\x24\x59\x2b\x45\x97\x2a\x5b\x5d\xd6\x41\xa1\xab\x5b\xda\x82\xc7\x94\x61\xc8\x3a\x92\x79\xdd\x09\xf6\xa0\x94\x4b\xff\x63\xec\x5f\x92\xb6\x69\x95\xe5\x40\xb4\x7f\x46\xf1\xcd\xe0\x24\x77\xe8\xfc\x9d\x6a\x57\xcd\x21\x6f\x94\xa9\xa1\xad\x6d\xab\xa4\xf9\x97\xa5\x3b\xb8\x3f\xcb\x4c\x2a\x7d\x8d\xd7\xec\x7d\x92\x4c\x08\x20\x88\x08\xe2\x3a\x20\xc9\x58\x3f\x32\x1e\xde\x35\x7c\x06\x99\x19\xab\xfb\x80\x2c\x95\x96\xf7\xee\x69\x84\x4a\x63\x3c\xbc\x74\xf9\x98\xc2\xa9\xfc\x87\x35\xb0\x54\x97\x09\x03\x33\xcb\x3b\x10\x64\xbc\x15\x29\x4f\x04\x04\x72\x59\xfd\x50\x69\xd6\xc4\x75\xd6\x84\xf1\x52\xbb\x5b\xfd\x06\x91\xd8\x8c\x7b\x52\xf1\xe3\x83\x38\x29\xb2\x49\x79\x30\x28\xcd\x78\x29\xe0\x91\xd4\x1c\x00\x38\x26\x90\xb2\xf8\x83\x05\x85\x5f\x78\xd8\xa5\x96\x7f\x2e\x34\xdd\xcb\x7d\x32\xf7\xd4\xe1\xdf\xc8\xab\x61\x8b\xd4\x09\xdb\x9d\x4d\x3d\x27\x62\xe1\x4c\x95\xcf\x83\xcc\x3d\xf9\x03\xd6\x45\xf4\x0b\x27\x93\x60\x1c\x7a\x00\x3c\xfd\xf9\xfd\xc2\x35\xcc\x1d\xf0\xbe\xea\x1e\x90\x4a\xca\xa7\xfb\xa4\x93\x92\xc3\xe5\xce\x80\x78\x68\x49\x20\x27\x54\x4d\xc6\xb1\x13\x9a\xa6\xae\x32\x40\xfd\x0c\x6b\x7f\x35\x6d\xa8\x9a\x4c\x92\x4e\x94\xc6\x75\xdc\xd7\x09\xd5\x93\x05\xcb\x13\xd9\x49\x7d\x94\x4e\xe4\x96\x3a\x7c\x4b\x3f\xa9\x39\xb2\x99\xf5\x44\x72\x29\xb3\x96\x93\x62\x94\x0d\x92\x67\x5c\xb3\xd2\x98\x91\x32\xbd\xa8\xd8\xb9\xed\x72\xfa\xcd\xf3\x19\xdc\x27\x24\xb1\xea\x1e\x78\x3c\x25\x34\x9d\x11\x39\x9a\x75\x61\x3d\x51\xcd\xab\x4a\x32\x38\x69\xa6\xb3\xa5\xef\x4c\x74\x2f\xd2\x4a\x23\x41\x69\xcf\x6e\x67\xe1\x58\x75\xc8\x84\xa5\xdf\x08\x7f\xc1\x8a\x4e\x8a\x6c\x3f\x5f\x53\x8f\xa9\xf9\x24\x52\x38\xcd\xe7\x93\xc7\x9a\x83\xd2\x4f\x24\x3b\x35\xb3\x3d\xe9\x3e\x65\x3b\xe4\xc9\x12\x3d\x2a\x1d\xd6\x4f\x26\x9d\xb7\xfd\xf4\xa4\xc0\x56\xfd\x42\xe2\x0b\x82\x69\x09\x64\xba\xe0\x9e\x99\x40\x6b\x50\x26\x1d\x08\x3f\x5d\xe2\x54\x4a\x3f\x73\x42\x60\x1b\xce\x12\x7f\x66\x9e\x4a\xdd\x50\xcf\x4c\xb9\xd2\x13\x83\xe7\xbb\x8d\xb8\x27\x14\x53\xbd\xb8\x1d\x94\x5b\xc7\xfa\x2c\x0b\x6a\x4d\x03\x1e\x59\x96\x32\xce\x52\xa0\xa0\x71\x87\xc4\x0c\x89\x5f\x27\xf3\xa3\x3a\x55\xc2\xb9\x14\x55\x52\x4e\x9c\x85\x28\xef\x2f\x6e\x76\x61\x20\x1e\x2e\x84\x07\x61\x78\x89\x7e\x23\xd7\x95\x73\x6e\x9e\x28\x34\xd4\x82\xa1\x86\xde\xe9\xe7\x04\xd4\x55\x3f\x49\xbf\xc9\xb5\xa3\x1f\xac\x10\x09\xfd\x5e\xb3\x70\x0f\x74\x36\xf4\x08\x30\xcf\x76\xb7\x83\x16\x89\x87\x9e\x94\x08\x4d\x28\x3e\x89\xb0\x39\xa1\xe0\x09\x01\xd0\x82\xc5\xd9\xe0\xef\x6b\x88\x61\x8a\xb4\x79\xf8\x84\x3c\x68\x61\xee\x5c\xee\x5e\x5e\xf7\x86\xf8\x02\x9f\xd0\x46\x80\xfc\xc1\xcb\x19\x69\x11\x1b\xa9\xa3\x8f\x20\xb5\x50\xb6\xef\x9e\x9d\xab\xa8\x39\x77\x22\x87\xf7\x01\x01\x84\x3f\x18\x8d\x3c\x0b\x3f\x54\x01\x7e\xf6\xc3\x91\x6a\x27\xac\x9b\xc3\xb3\x42\xc6\x7c\x15\x4f\xee\x27\xdd\xe8\x6d\xf3\x3d\xfb\x8a\x8a\xd0\xef\x07\x91\x98\x06\x91\x74\xc6\x1b\xb7\x24\x38\x13\x1a\xb8\xd5\xdb\x1f\xf0\x64\x58\xa2\x23\x72\xce\x4f\xc4\x8b\x3f\x5c\x04\x12\xdd\x90\xf4\x73\x8e\x35\x09\x0f\x41\xa9\xc0\xd8\x84\xb4\xfc\xdd\x7b\xcf\xd4\x0d\xb6\x7c\x9e\x48\xdd\x50\x3d\x4d\x9a\x4a\x8b\x7f\x73\x16\x3e\xb6\x90\xf9\x7e\x18\x15\x45\x3e\x1f\x21\xb8\xab\x55\x63\x1f\xb2\xf0\x8f\xe2\xdf\xa4\x7f\xfe\x1e\x94\xc4\x74\xe2\x24\x84\xde\xfb\x93\xbc\xd5\xcb\x76\x32\x6d\xa3\x56\x01\x89\xb6\x2c\xd6\x9e\xe7\x22\x88\x1e\x62\xcd\x41\x93\xfa\xa4\xc4\x38\x7c\x26\x11\x16\xe9\xe4\x12\xe7\x45\x6c\xca\x7e\xb0\x16\x5a\x50\x2e\x19\x50\x6a\x9d\x13\x89\xb4\x92\xaf\x76\xe7\x45\x7c\xf1\x66\x41\x2a\xf4\x4d\xee\xbc\xde\x6f\x21\x7c\xec\x90\x14\xf6\x30\x65\x41\xce\xd7\x2a\x15\xc4\x79\x2f\xa0\x34\x02\x6c\xb3\xb5\xff\x1d\x1b\xba\x49\x0c\xb3\xbb\x03\xf7\x2f\x1e\xae\xf3\x05\x4d\xf1\x5e\x24\x5d\x3b\x4b\xcb\xad\x8d\xc1\x27\x1c\xe2\x7e\x04\x04\x24\x9b\xb0\x31\xf8\x44\xdc\x64\xed\x06\x18\x09\xcf\x7c\x42\x9e\xa5\x59\xd0\x90\x50\xf9\x0d\x3b\x24\x9f\x9f\xa0\x9c\x86\xd7\xe0\x13\x83\xb3\x83\xfb\xce\x67\x6d\x83\x76\x96\x42\x6f\x77\x8f\x20\xe8\xe6\x9e\x50\xf8\x1d\xde\x79\xa4\x97\x18\xaa\x8b\xdc\x4f\xb8\xc7\x39\x27\xe8\xf9\x20\xc5\x8b\x85\x05\x98\x81\x7f\x90\x0f\x79\xbc\xec\x30\x7f\xbe\xd8\x35\xa3\x01\xea\xe1\xfe\x48\x1f\x2f\xdc\x34\x2c\x08\x52\xc8\x96\xe6\xe3\x44\xaa\x09\x87\x94\x9c\xc8\x07\x3b\x5c\xc0\xe7\x84\x6b\x5c\x2f\xfe\x4d\x06\xa4\x0f\x26\x49\xa5\x4f\x30\x6a\x06\xb8\xf4\xd1\x39\x79\x40\xb5\xc6\x93\x97\x0f\x9f\x8e\xc9\xcb\x47\xf0\x03\xa4\xa7\x30\xf3\x9f\x84\x59\x73\x80\x05\xd9\x01\xb4\xe7\x3c\x91\xb2\xc8\x20\x51\x39\x6d\x9a\x00\x8d\xe2\x30\xd9\xa2\xc1\xd8\x66\xed\x0b\x05\xa2\x5c\xfd\xe1\x62\xf1\x5c\x51\xf3\xeb\x60\x99\x8c\x43\xbf\x19\x79\xd1\xf4\x9b\x02\x4d\xf7\x07\x3c\xc0\xc1\x23\x34\xec\x9b\x7b\xa0\xa5\x4d\xc8\x7a\xb1\x00\x80\x2d\xe9\x17\x45\xfa\x1f\x98\x28\xe1\x74\x0f\x0a\x3e\x5a\x3d\xe6\xe4\x98\xea\x01\x32\xbe\x8b\x1c\x5c\x81\xe8\x2e\xf9\xf9\x0a\x44\x16\x01\x09\x89\xdd\x75\x15\xae\x40\xa0\xfd\x3e\xcb\x93\x74\xfd\x3e\xd1\x1e\xf4\xfb\x82\xc4\xee\x01\xd7\x46\xf8\x03\x24\x17\xfe\xe9\x90\x12\x7d\xf1\x83\xc5\x89\x05\x42\xe4\x1c\x34\xc9\x48\xc5\x89\x7f\x13\x64\xad\x12\x6a\x41\x39\x47\xf9\x85\x54\x62\xce\xf5\x7e\x45\x78\x3c\x78\xd9\xe3\x5a\x55\x75\x90\x16\x3e\x6b\x04\x64\x87\x75\x7d\x81\x2b\xf1\x72\x26\x42\x7b\x51\xe7\xa9\x03\x70\xb1\x5c\x80\xed\xfe\x17\xaa\x03\x38\xd3\xfa\x05\xf9\xd8\x49\xce\x2f\x66\xed\xb2\x43\xc3\x95\xd7\x89\x10\x0c\x79\xdd\x52\xfd\x06\xa9\xa7\xd8\xe2\xf5\x09\xc4\xd5\xc9\x89\x2f\x28\x30\x9d\x17\xfd\xa2\x8f\x9c\x73\xff\x5e\x99\x40\x79\x88\x89\xdf\x5a\x98\xe5\x33\x27\x4a\x72\x21\x64\x61\x38\x9d\xf6\xc5\xb8\x50\xef\x76\x59\x07\xdb\x2f\x60\x6f\x24\x87\x5d\x2c\x76\x2b\x59\xf5\x2a\x54\x16\x47\x3f\x00\x3e\x89\x45\x5d\x85\x9b\xe7\x76\xe4\x38\xc8\x7f\xe5\xd3\x7d\x15\xb2\x65\x11\xa2\x0b\x2e\x79\xce\x08\x7d\x51\xf7\x69\x7f\x8c\xab\xae\xd2\x8d\xfa\x4d\xf8\x44\x68\x2e\x58\x5c\x9d\xc8\xfa\x82\xa4\xeb\x04\xcf\x57\x5d\xd4\x5d\x33\xae\x1c\x52\x4b\xb4\x44\x5d\x75\xd8\x58\x8e\xcf\xbf\x91\x05\xd6\x0b\x02\x4d\xa7\x0b\x0b\x5c\xc8\x9d\xd1\x7f\x4e\x2c\x02\x19\xcc\x55\x2f\xe6\x18\xeb\x5e\x32\x5a\x68\xed\xbd\x74\x51\xd3\xd9\xbd\xc8\xb0\xd0\x3a\xc5\xf3\xb5\xa4\x63\xcf\x12\xca\xcc\xe0\x90\xbe\x0b\x51\xa7\xce\x5e\x7c\xf5\x85\x2a\x7e\x21\x21\x2c\x41\xcb\xc0\x2c\x64\x76\x64\xb9\x18\x86\xda\xbd\x17\xfd\xfc\xe7\xcf\x4f\xb8\xdd\xb5\x1c\xf9\x86\x1f\x70\xa9\xdd\xe5\xc2\x67\x8f\x09\x7c\xf6\xd2\x2d\x71\x58\xb7\xd0\x6b\x25\xe5\xd0\x07\x48\x3b\xe6\x44\xb2\xd7\xa0\xa3\x8a\xc4\x8d\x6b\xf0\xee\x25\x25\xf1\x35\xd6\x95\x52\x63\x0c\x52\x5c\x21\xc0\x8d\x9c\x7f\x36\x7d\xdd\x89\xc7\x54\x34\xfa\x66\xfc\x92\x05\x84\x1b\x35\x73\x9d\x7a\xf4\x66\x69\x11\x33\x8a\x9b\x35\xdf\xec\x0e\x73\xc3\xc1\xd6\x39\x31\x6f\x52\x13\x89\xfd\x37\x2f\xd7\xa6\xe2\xf7\x47\x3c\x52\xf0\x90\x99\x04\x4c\x72\xd3\x8d\xcb\xb5\x93\x64\xde\x79\xe1\x7d\xd4\x03\xaa\x38\x04\x24\xbd\x42\x1c\x20\x75\x93\xda\xe8\xe4\xdc\x24\x2e\xd9\x23\x4c\xc2\xa4\x0f\x90\x14\xd0\x09\xa6\x6e\x7a\x89\xd8\xe1\xe6\x46\x3c\xd4\xe8\x42\xfd\x7b\x51\x97\xe2\x4f\x0a\xba\x10\x90\x4c\xf9\x67\x6e\x75\x97\xb5\xf8\x82\xaa\xf0\x2c\x34\x7f\xf2\xcd\xcb\xb5\x64\x6e\x5a\x60\xec\xb4\x73\x33\x20\xca\x96\xc3\x1b\x16\x15\x07\x12\xdc\xb8\x5d\x3b\xad\xd0\xcd\xcb\xb3\xbd\x5b\xee\xca\xc0\x94\xe4\x37\x06\xc1\xd4\x7e\x21\x87\x8f\x53\xe6\xde\xb8\x4e\xdb\x99\xf0\x26\x91\x11\xbb\xb9\xeb\xc2\x10\x21\x00\x52\xf0\x14\x55\x72\xee\x37\x5c\x71\x9d\x85\xe5\x06\x0d\x38\x5c\xbe\xee\x6e\x40\x3a\xc9\xe6\x77\x5b\xfb\xe9\x07\x18\x53\x64\xe5\x6e\x44\x42\x89\x58\x77\xe7\xbc\x05\x43\xe7\x66\x68\xa9\x91\x35\xd0\x49\x0f\x6e\x98\x23\xec\xe6\x71\xaf\xdb\xad\xee\x33\x37\x0a\xc2\xfd\xa0\x3d\xdd\x70\xed\x56\x71\x23\x8d\x60\x37\x27\xbf\xe9\x97\x6b\xd6\x7f\x23\x28\xdc\x41\x7a\x37\xcc\x0b\x0e\xe1\xb9\x59\x22\xce\x7c\xf8\x66\xda\x40\x33\xe2\x9b\x69\x03\xed\xad\x72\x83\x04\x38\x80\xe6\xfe\x28\x40\x32\x99\xba\x41\x00\x52\xcd\x7f\x75\x27\xba\x4f\x16\xe4\xd1\xa2\x21\xf4\xca\xec\xe5\x3e\x99\x08\x53\xbd\x9f\x0b\xe5\x05\x1f\xac\x17\xd6\x24\xde\xc8\xd0\xe3\x14\x03\xf7\xc9\x70\x5e\x6d\xe3\xc9\x55\xd7\x2e\xb0\x7c\x9c\x8f\x10\x6f\xb6\xde\x04\x24\xf8\x71\xd0\xc2\x0d\xb7\x12\x3b\x4f\xdf\xb8\xd8\xba\xba\xc4\xfd\xdd\x6b\xd3\x0f\xf9\x83\x5b\x89\x7d\x0d\x6e\x84\x6d\xd9\xb7\xfa\xbe\x60\x00\xf2\x7c\x10\x1b\xde\x9b\xfb\xe3\x01\x95\x74\x76\x23\xff\xcf\xe8\x62\x35\xf7\x05\xc7\x17\xb1\xec\xfb\xbb\xe4\xa6\xf0\xd3\xce\x19\xb8\xc7\x09\xb4\xd2\xfb\x37\x0d\x71\x82\x10\xc9\x7e\x9a\x98\xc4\x4d\xaf\x14\x9f\x8c\xef\x12\x9c\x5c\x2a\xe0\xfe\xee\xc0\xf9\x07\x01\xee\xc5\xc8\xfc\x02\x09\x40\x77\x0f\x0c\xea\x17\x44\x28\x8c\x62\xed\xee\xbd\xae\xbd\xd1\x2f\x9c\x70\x48\xd2\x22\xdd\xeb\xa8\x68\x8e\xb8\xe6\xda\xcd\xeb\x46\x61\x14\xa7\x61\xbf\x6f\x72\x3e\x4f\x12\xf9\x82\x5c\x38\xe5\x7e\x28\xc9\xf9\x8b\x27\x01\xaf\xb4\xcf\x8c\x0b\xb3\x30\x78\xb3\x50\x8a\xc5\xc9\x1b\x71\x61\x25\x98\x42\xe0\x22\x6c\xef\xf3\xfb\xbb\x08\x47\xbb\xb7\xdd\xcb\xe1\xd9\x43\x92\xb2\xfe\xbc\x80\xea\x55\xba\xd8\xde\x2f\xaa\x95\xfb\xf4\xbe\x34\xed\xfc\x3c\x00\x41\x70\x07\x48\x60\x6d\x8f\xf9\x1b\x37\x61\x5f\x8f\x6e\xdc\x84\xad\x4d\xb8\x19\x0c\x6f\xa7\xa9\x9b\xb5\x52\x8c\x7c\xeb\x2a\x2c\xfe\x7f\xbf\xc8\x15\x53\xdc\x23\x17\x5a\x22\xf2\x3d\x91\x2e\xc1\xe7\x8f\x39\x8e\x2c\x95\xdf\xcc\x71\x64\xd7\xaf\x7b\x22\x21\x96\xf1\x77\xdd\x85\xcd\x7a\x59\x1d\xef\x07\x1d\x26\xfd\xd1\x0c\xc5\xa4\x47\xa6\x7f\x03\x3d\xcc\xf5\x98\xa0\xda\xce\x5c\xf7\xba\xfd\x4a\x88\x7c\x0e\xde\x0b\xa5\xcc\x7c\x58\xfd\xce\x39\x7d\x1f\xde\x5e\x9b\x7f\xe3\xe0\x8a\x2e\x3e\xc7\x22\xad\x7e\x00\x74\x68\xee\x11\x94\x47\x8c\xf5\x81\x6b\xb4\xdd\x4a\x1f\x06\x86\x59\xf4\x7f\xe0\x1b\x6d\x4f\xd5\x87\x77\x59\x31\xa0\x87\xe6\xa9\xe8\xdf\xd8\x7d\xe1\xf8\x83\xab\x6d\x13\xfb\x78\x78\xb5\x95\x4a\xe0\x09\x6b\x5d\x3d\x00\x5d\x02\x8a\x7b\x5c\xdb\x2f\x18\x11\xca\x6c\xdd\xcf\xb3\x34\xe7\x12\x7b\x1f\x32\x7f\x91\xc7\x07\xa1\xce\xad\xbb\x7d\x1d\x1a\xbf\x80\x4c\x60\xda\xca\x87\xa1\xce\x41\x97\xb4\xa7\xf2\xa8\x6b\xdd\xe9\xe2\x69\xed\xfd\x03\x8f\xce\xfe\x77\xd9\x17\x1e\xdc\x36\xec\x3b\xf6\x34\xae\x99\x26\x88\x2a\xb6\xb6\x55\x3f\x8d\x7a\x18\xff\x6e\x20\xef\xfe\xbd\x10\x49\xe0\x75\x0e\x20\xe8\xfa\x42\x77\x8d\xc8\x3a\x66\x41\xf4\xfb\xf9\xe4\x86\x64\xe4\x7d\xfa\x3a\x94\x82\x09\x31\xd2\x2e\x65\xf5\x30\x46\x3a\x88\x27\x3d\x4b\x50\x90\x78\xfb\x8c\x85\xcd\x02\x73\xd0\x30\x29\x36\xf4\xc0\x83\xd3\x39\x9f\x9e\x41\xe9\xc6\x1b\xb7\xe4\x7a\x51\xab\x87\x8e\x07\xf6\xf4\x7b\x4e\x38\x2d\xeb\x54\x3e\x2c\xed\x1a\x44\xd6\x1f\xf8\x70\x5a\xdb\xfa\x9c\x14\xb1\x24\xf1\x3e\xcc\xee\xeb\xc8\xba\x07\xd9\xf4\x9a\xed\xe3\xcf\x45\x32\x2d\x09\xf7\x81\x9a\xd8\x9c\xe2\xb9\x0a\xbb\xf0\x0b\x8d\x0f\x04\x16\x19\xaa\x7d\xef\x1e\xb8\x0e\xd8\xe7\xe8\xa1\xd6\xd8\xbe\x74\xcf\xb5\xca\x8e\xbb\x0b\xc8\x00\xa2\x71\xcf\xbd\x96\x42\x5b\x06\xbd\xb1\x3d\xd3\x9e\x7b\x41\xa5\x2d\xbb\xd7\xda\x68\x8c\x7b\x81\xa9\x2d\xbb\x3b\x4f\xbf\x07\x61\xd9\x2a\xa3\x1a\x82\x76\xec\x24\xf1\xdc\x10\x50\x8d\x58\xcc\xd7\x12\xaa\x1f\x80\x7e\x98\xc6\x31\xad\xb0\x3d\x03\x9e\x87\x19\x17\x25\x4f\x3e\xcb\x07\x22\xfb\x13\x90\x0c\x63\x37\xeb\x7f\xd9\x2a\xff\x3c\xa4\x7a\xe2\x9b\x0f\x99\xa0\x09\xc2\x43\xa8\xb5\x12\xd0\xfe\x5a\xde\x7a\x10\x0b\x6d\x23\xe6\xf3\xf1\xb8\x68\xbd\xe5\x03\x96\x66\xfb\xe1\xf3\xae\xe3\xa3\x0e\x19\x0a\x6d\xcf\xc5\xe7\x25\x59\xd3\x6d\xe1\x41\x15\x86\x61\x44\x7d\x17\x89\xd1\x4a\xbe\xa8\x85\x2d\xa1\xf4\xa1\x3e\xd7\xce\x91\xcf\x84\x08\x14\xfd\x42\xe6\x10\x7e\x50\x20\x7f\x08\x06\xf8\x77\xda\x5e\xf8\xd0\x61\xc2\x5a\x8c\x67\x72\xda\x7b\x1d\xdf\xc5\x7f\xc4\x9a\xdf\x83\xe2\x46\xf4\x1b\x88\x44\x13\x4a\xbd\xc7\x3a\x4d\x43\x0f\x6e\x7e\x91\xf4\x00\x69\x9b\x75\xa4\x5f\xf0\x0f\x6b\xfa\xdf\x10\x38\x4d\x0d\x41\x7f\x06\x6b\x18\xde\xb0\x80\xf0\x27\x00\x5b\x08\xf3\x46\x3a\x58\x8a\xd3\xbe\xf0\x25\x68\x76\xb2\x78\xe9\xb5\x69\x1b\xf3\xcb\x94\x29\x56\x3a\xbc\xc8\xef\xeb\x8b\xf4\x8b\x8c\x28\x56\x1b\xbf\x89\x4b\x23\x91\xfd\x5d\x85\xea\x25\x52\xbc\x08\xe9\xb5\xd2\xf7\x45\xc2\x5f\x2b\xd3\xdf\xc4\x69\x08\xf1\x5f\xaa\x20\xac\x30\x78\xd3\xd2\x73\x68\xe6\x88\x2b\xb1\x09\xe0\xcd\xa8\x6e\x2e\x34\x7e\x73\x43\xbb\x3a\x80\xfe\xc0\x1a\xa5\x17\xba\xc8\x1e\xfe\xca\x95\xfb\x45\xbd\x79\xeb\xa4\x5f\x16\xa1\x0a\xcd\xbd\x01\x9d\x82\xa1\xa3\x92\x4d\xa2\xe7\xcb\x2a\x55\xf5\x67\x7c\x92\x6f\x89\x8a\x6f\xe1\xaa\x6a\xa3\x58\x50\xc0\x3a\x94\x17\xba\x04\xdf\x7f\x5f\x04\x90\x58\x05\xf6\x52\x31\x50\x7f\x1e\x50\x38\x28\xfe\x02\x1e\x7f\xe2\xf5\x2f\x5c\x31\x7d\x35\x7a\xeb\xda\x48\x0d\x49\x57\x4c\x6b\x5d\x5e\xc4\xf8\x5a\xe1\xf1\xc2\x13\xd3\x2a\xb2\xb7\xf2\xa2\x50\xfc\x01\x8f\xb2\x94\x13\xef\xd2\x0c\x88\xf3\xbd\x0c\x00\xb1\x1e\xe6\x6d\x44\x59\x69\x40\xde\xb6\xc0\xd2\x27\x88\x00\xf1\x7d\xe6\x45\x3a\x5f\x67\x71\x7c\x1b\xa9\x64\x75\x97\x15\x1f\x68\x5e\xd4\x48\x3a\x83\xe2\x4b\x0d\xa4\xf5\xc4\x2f\x73\xab\x04\x99\x3f\x5f\xa8\x1f\x9a\x9d\x72\x5e\xa8\x1f\xcc\xe8\x5e\xc8\x15\xbe\xaf\xbc\x30\xb6\x5b\x26\x7e\xa1\x7d\xb0\xd0\xfc\x22\x87\x9d\x05\xf7\x97\x75\xa8\x7a\xf5\x0b\x40\x3a\x9f\x89\x7e\xe1\xb7\x40\x64\x94\xb0\x38\xef\xcb\xd2\xa7\x5d\x22\xc4\x3b\x08\x91\x66\xcd\x22\x07\x41\x02\xef\x0b\x6f\x49\x8b\x97\xef\x20\xc8\x5a\xd7\xb1\xd6\xd1\x1f\x90\x07\x4a\x40\x78\x21\xa5\x58\x8c\x79\x07\xef\xc2\xde\x8a\xb1\x90\xd2\x40\x3c\x7c\xe0\x41\x28\x55\x7b\x1e\x30\x9e\x5b\x08\x79\x59\x1d\xd5\x22\xde\x7b\xae\xdd\x13\xdc\xe7\x5a\x3a\x0d\x02\x9d\x82\x45\xa3\xf7\x13\x6c\xa2\x83\xd0\x5e\x78\x4c\xfe\x2c\xdd\xc9\xe3\x2a\x86\xf3\xb2\x2e\x55\xd0\x65\xe2\xa5\xe0\xe3\x79\x21\x78\xc5\x7c\xf8\xbd\x08\xb4\xdb\xa9\xef\xd2\xdd\xe0\xbd\x78\x5d\xfd\xf9\x02\xe1\x21\x76\x49\x79\xaf\x55\x06\x53\x50\x5f\x54\xfd\x88\x4f\xbe\x10\x73\xba\x2e\xfe\xef\x27\xe6\x34\xbb\x7d\xbd\x37\xf9\x85\x71\xea\x06\xce\x89\x0b\xbe\x88\x54\x36\xe3\x7d\x97\x90\x63\x9c\xc2\xc5\xff\x87\xc9\x41\xc6\x71\xc9\xa7\x17\x22\xce\x0f\x4b\x83\x75\xdb\xf2\xc9\xcb\xf4\x2f\x87\x01\x80\xa5\xd8\x00\x3d\xbc\x20\x4b\x54\x7e\x71\xcd\xef\x12\xcc\xde\xe5\xf5\xa9\x3b\xd4\x0b\xf1\xe4\x87\x3b\xf1\x8e\x6e\x37\xe6\x17\xb5\x0f\x5c\xad\xf9\xfd\xae\xdc\xc9\x56\xa8\x97\xf2\x89\x99\x13\x85\x8d\x6e\x8e\xf8\x72\x04\xad\x01\x1d\x36\xed\xeb\xf3\xd2\x9a\x6c\xc7\xe7\x97\xa5\x0d\xec\x29\xfd\xce\xb5\xf0\x9a\xd6\x5c\x0b\x2b\x28\x18\x50\x6c\x28\x59\x4d\x34\x48\xad\xf4\x4e\x46\xea\xfe\x5d\x99\xd7\x77\x12\x66\xed\x3c\xc5\x99\xe2\xee\x59\x4a\xc4\x00\x02\x73\xc4\x6c\x26\x13\xcc\x59\xf7\x39\x59\x5b\xde\x7e\xce\x13\xd7\x6b\x07\xd1\x4e\x14\x1e\xed\x3f\xbf\x79\x08\x45\xd8\xe7\xb1\x68\xc3\xd0\x83\x81\x60\xaa\xac\xdf\x38\x94\xe2\x46\x13\xb6\x63\x93\x8a\x89\xa4\x29\xa6\xf2\x13\xb7\x65\xd3\xe8\xf9\x09\x3f\xc9\x6b\x3c\x03\x21\xd2\x14\x42\xe5\x14\x92\x1e\xd0\x86\xa0\xfb\xf6\x64\x1c\xb1\x3d\x7f\x66\x00\xf9\xaa\x7e\x01\xcb\x2a\x7a\x37\x03\x41\xf4\xfb\x90\x8d\x83\x41\x62\xbc\xd6\xcf\x90\x10\xbf\x74\x22\x67\xa4\x24\xa4\x23\x3b\x23\x49\x6a\xf3\x1b\x38\x92\xd5\x2f\xac\x75\x15\x0c\x8c\x99\xb1\x27\xf5\x64\xf9\x85\xec\x17\xce\x4f\x38\xd6\xb5\x6f\x32\x87\xb1\xf5\xd8\x33\x52\x0e\x10\x31\x9b\xac\x4c\x15\x7e\xba\x20\x86\x1b\x1d\x22\x2b\xa2\x0a\xaa\xc4\xbd\x10\x0c\x69\xa5\x82\xd7\x66\xa5\x35\x2f\x7f\xc1\x0b\x95\xee\x11\x93\xa5\xa6\xaa\xc1\x4a\x70\xc3\x12\xce\xce\xc4\xcd\x70\x97\xe4\x25\xcd\x83\x72\x77\x04\x24\x4c\xd6\x3f\xbb\x99\x26\xbc\xd3\xb4\xb4\x8c\x4d\x76\xe8\xc9\x64\x70\x72\xfd\x79\x00\x94\x33\x0e\x67\xea\x94\x44\x7d\x26\x2a\x51\xe5\x9f\x2e\x81\x73\x3a\xf8\x13\x3e\xa1\x3f\x2b\x9b\xd7\xee\x69\x12\x14\x33\xbd\x9b\x0c\x5e\xb6\x21\x7e\x52\x72\x34\x3e\x7c\x92\x63\x72\x04\xe0\xcc\x9c\xa4\x7f\x4f\xce\x41\x1d\x14\x4a\x47\xc6\xf2\xc2\x98\x07\xf1\xa2\xc9\x60\xe5\xee\xad\x40\xe6\x98\x9f\x85\xa5\xcb\xa7\xad\x12\xb3\x10\x28\x2d\x03\x04\x47\x6b\x9c\x27\x1d\x38\xa5\x94\x99\xd4\x32\xd9\x39\x7c\x0e\x32\x5c\x81\x80\xd4\xb5\x76\x1c\x9c\x4b\x0a\xf0\xe1\xa5\x7a\xc3\xc4\x00\xc9\x48\x7e\xf6\x12\x1e\x74\x5d\xa2\xeb\x3c\x29\x1d\x9b\xa2\x9d\x6b\x92\x7e\xb0\x10\x50\x63\x7e\x62\x43\x76\xc5\xf2\x79\x76\xfc\x16\xcc\x30\x2c\xfc\x76\xf0\xad\xfc\xcf\xd9\x3e\x09\x92\x16\x81\x0e\x73\xba\xd4\x4c\xe4\x2e\xb1\x2b\xda\xbc\x22\x22\x49\x34\xde\xb5\x40\x76\x07\xd8\x06\xaf\x22\xb3\xd0\xda\x8d\x70\x22\xb7\x89\x05\xfa\xf9\x09\x04\xdd\x95\x05\x27\xf4\x20\xae\x7d\x30\x59\x3a\xc9\xbe\x91\xf3\x42\xaa\x5c\xf1\xca\xb9\xf4\x22\xa6\xa9\xcc\x6d\x62\xeb\xcb\xbc\xe3\x27\x52\xa4\xbf\xd2\xd5\xcd\x3b\xff\xf3\xa7\x0d\x63\x1e\xb4\x2a\x56\x97\xcf\x9b\xd7\x3a\x4f\x08\x3a\x94\x6c\xb7\xc4\xc9\xa4\xb7\xed\x07\x20\xca\x8b\x26\xb9\x94\x28\xda\xcf\x03\xc8\x8b\xa6\x5d\xcf\x9a\x93\xfa\xa4\x16\xc5\xc8\xcc\x0c\x73\xf6\x36\x9f\x0c\x91\x6d\x3f\x5f\x80\xb3\xe8\x16\x33\x97\x69\xe1\xe7\x0b\xb0\x2e\xe9\x0c\xe7\xcb\x2b\x8a\x71\x01\x1e\x6e\x16\x63\xe6\x4b\xba\x6f\x7c\x5e\x5a\x11\x6f\x36\xf2\xe0\xda\x32\x30\x5f\x86\xe2\xb9\x9d\x36\xd9\x9f\x07\xc8\xfe\x68\xf4\x45\x1a\xdc\x2e\x9d\xd7\x7c\x59\x99\x4b\x93\x7a\x49\x48\xfc\xfd\xe2\x55\xee\x00\xf8\x2c\x35\xdb\x84\x52\xc5\xd9\x57\xe7\x32\x0c\x78\x0e\x08\x4b\xe9\xd2\x1c\xcd\xb9\x96\xc9\x5f\xac\x23\xa7\x21\x3e\x31\x28\x59\xed\x36\x11\xb7\x32\xa4\xe0\x98\x93\xac\xca\x18\xfd\xc9\x2d\xc9\x76\xe6\x39\x17\x46\xaf\x21\xc6\x81\xda\x07\x22\x76\xe3\x38\xe0\x20\xbf\x7b\x1c\xc7\xc1\x3b\x4e\xf7\x83\xf4\x2d\xdb\xe1\x0f\xa8\x19\xea\xee\x11\x1b\xb1\x35\x68\xe3\x80\x5e\x47\x1b\x31\x8e\x55\x51\x3d\xbb\xc7\x0b\x93\xc8\xfa\x4d\xb5\xce\xe6\x4b\xe3\x80\xdd\x60\x6c\x21\x78\x1c\x48\xa9\x22\x42\x31\x0e\xa8\x7d\xa2\xdb\x51\x7c\x61\x34\xb5\x23\xa3\x4a\x1f\xea\x0f\xa5\x17\x8e\x9f\xdf\x70\xec\x33\x40\x14\x84\x86\x7f\x57\x8c\x9f\xf4\x1b\xf9\x8b\x83\xc7\x23\x9d\xa9\x9a\xe2\x27\x06\xb5\xb6\x19\xe9\x38\xc2\x89\x5d\xf0\x80\xd4\x64\x75\x7f\x80\xf0\x91\xea\x0f\x30\xc3\xc3\xbf\x27\xcc\x83\x5a\x74\xc4\xbc\x48\xf9\x32\x0e\x64\x4f\x19\xde\x94\x18\x41\xd8\xb4\x27\x11\xb5\x6b\xb3\xdb\x1b\xde\xd7\x1e\x45\x6a\x15\x86\x5f\xa0\x44\x53\xfc\xe0\x05\x9e\x68\xce\x91\xea\x96\xae\x39\x21\xd0\x38\x79\x0d\x90\x86\x4e\xe9\x38\xc6\x01\x15\x95\xb4\x79\xe3\x48\x5c\x54\xb7\x53\x4b\x56\xb5\xea\x48\x03\x1c\xbd\xea\x10\x67\x14\x60\x35\x8e\x44\xa7\x3e\xb7\x13\x2b\xdc\x21\x19\x7b\xd3\x0b\x99\xc9\x39\xbc\xea\x70\xc1\xab\xc6\x75\x26\xa9\x53\xc2\xa6\x71\x64\x12\x99\xe1\x07\xf0\x8d\xf7\x24\x19\xb2\xe2\x49\x42\x3a\x19\x41\xeb\x0a\x1f\x9a\xfe\x03\x02\x52\x90\x18\xd3\x32\x25\x49\x9f\x2e\x48\x2b\xf2\x82\x1d\x07\x02\x5a\x94\x56\x7f\x1c\x05\xa7\x2f\xe8\x7d\x84\xa7\x8c\xa0\xf7\x21\x9a\xfc\x00\x0c\x6f\xbc\xf1\x57\x5a\xb9\x71\xa0\x64\xc3\x08\x5a\xe1\xf2\xa1\x71\xf6\xec\x0a\xd1\xd6\x58\x52\xb0\x05\xd1\x2f\x90\xb7\x18\xf1\x0b\xf7\x44\xe0\x22\x70\x25\xf9\xa4\x7e\x72\x4f\x93\x2e\x7d\x1c\x95\xac\xc5\x47\x97\x81\x2b\x9e\xcf\x27\x18\xa5\x1f\x24\xa0\xf5\x4d\x5e\x4a\xe3\xa8\xf0\xfc\x4f\xee\x00\x73\xf2\x49\x61\x09\x88\xe0\xdf\xbc\xfe\x7a\x92\xf5\x81\x95\xd3\x2f\xbc\xb8\xb1\x6b\x07\xe0\xdd\x27\x6f\xaf\x71\x30\x92\xf9\x07\x44\x28\xd3\x46\x14\x04\x8d\x04\x72\x68\x92\x88\x5c\xce\x46\x12\x28\xd3\x86\x17\x01\xf9\x56\x94\x67\x74\x1c\xad\xe3\xb7\xdb\xa9\x9d\x19\x7e\xe1\xc4\xa6\xfb\x05\x64\x78\x36\x9e\xc3\xd9\x6f\x78\x9b\x90\x83\x2f\x9b\xda\xc0\xb5\x4f\xd5\xde\xc6\x01\xcd\x9b\x12\x85\x8c\xa3\x73\x46\x02\xb8\xa7\x7f\xfe\x14\xe5\xa8\x1d\x07\x0d\x7c\xc5\xfd\x91\x8f\x79\x53\xa8\x9a\x33\xc0\xcc\xe9\xf7\x03\x31\x3c\x87\x86\xe9\x1b\x54\x75\x23\x0a\x6f\xfa\xc2\x3c\x2d\x6a\x27\x8f\xf0\xb6\x75\x32\x36\x9f\x94\x8e\x7d\x4a\xda\x16\x06\xc6\x34\xbf\x30\x02\xce\xa6\xba\x5c\x16\x43\x43\x39\x68\xfa\x29\xee\x82\xd7\x5d\xb3\x36\xe6\x00\x0c\x06\x6b\x50\x8f\xed\x37\xce\x85\x1d\x82\xf3\xa4\x10\xd0\xb4\xd8\x27\x19\xec\xcf\x1b\x38\xe2\x45\x70\xb2\x82\x44\xfd\xf9\xa2\xc2\x31\xcf\x1f\x00\xc5\x8d\x1f\x27\x75\x4c\x5a\xbc\x93\x2b\xa1\x79\x31\x7c\xb9\x99\xe7\x43\xd7\x36\x7c\x66\x96\x0d\x72\x08\x84\x8b\x36\x0e\xef\xf0\xb5\x08\xa3\xdf\x00\x75\x4f\x9a\xf7\x45\x49\xd5\xfc\xe2\x93\xc5\xd3\x61\x9e\xca\x9a\x5d\x3f\x4c\xf9\xa2\x38\x55\x04\x26\x44\xe9\xe0\x17\x98\x7b\x59\xd6\xfd\x71\xdc\x6b\x7f\xb4\x10\xcb\xa2\x68\x96\xb0\xdc\x6c\x3c\x2a\xd4\x6f\x87\x31\xfb\x5e\xa7\xdf\x2f\xa0\xa4\x55\xd5\x52\x2c\x59\xb7\xfb\x01\x77\xc3\x8b\xf7\x50\x29\x62\x38\xa1\x60\x1b\x49\x5d\x3e\x44\xd5\xae\xb5\x79\x68\xcd\x36\x54\x0f\x82\x74\xbc\x78\x4c\x0b\xd8\x2c\x52\xb1\x08\x84\xc5\x01\x48\xc7\x4a\xb1\x3f\x0e\x78\xbd\x28\xc0\x7d\x1c\xcb\x42\xe8\x85\x78\x91\x56\xaa\x08\x46\x06\x55\x37\x13\x2d\xe4\x00\xcc\x3f\x2f\xd0\x2e\x6d\x2c\xa4\x8a\xee\x47\xc4\x98\x34\x65\x98\x75\x31\xc4\xe3\x47\x32\x9c\x4c\x8c\xa3\x69\xcd\x85\x13\x7f\x73\x17\x1a\xc7\xe4\xee\xba\x7b\x88\xdf\x12\x48\xc2\xd2\xb8\x0d\x3f\xc0\xa2\x64\xff\xe6\xf5\x50\x87\x33\x20\x5e\x63\x58\x8e\x0c\xcb\xe2\xa8\xd3\x1a\x0e\x0a\x72\xdd\x0f\x78\xad\xd6\x4e\x04\xd6\xf5\x52\x3c\xc6\x08\x81\xa3\xaa\xcf\x40\x65\x81\x56\x32\x04\x64\xce\x49\xfe\x80\x5e\xfd\xfb\x0e\x37\x02\xb5\x6a\x16\x5f\x43\x20\x1a\x0f\x0f\x0a\xea\xb8\xb5\xeb\x23\x30\xff\x9e\x22\x2c\x46\x60\xba\x3d\xd5\xb5\x1e\x81\x85\x1e\x64\x84\x1e\x21\x2e\xb8\x35\x6a\x5c\x8b\xa1\x4f\x22\x19\xa7\xfa\x8c\xb4\xe0\x78\x7d\x23\x1c\xa1\xb2\x5f\x20\xc5\x15\x0e\x05\x96\xee\x92\x97\xc6\x08\xb0\x6b\x2a\x92\x70\x04\x96\x29\xb5\x48\x17\x12\x17\xcf\xbf\xb9\x78\xd5\x0f\xc8\xde\x87\xbb\xa4\x94\xa8\xd3\x16\x96\x61\x53\x87\x29\x40\xcb\x55\xe2\xe1\x51\x79\xc6\x87\x3b\x7d\xf8\x86\x76\x99\xa1\xca\xd5\x98\x92\x3b\xdf\xd0\x0e\xa0\x7a\x69\x34\xa0\xb0\x5f\x8e\xec\x1e\x50\x58\xd4\x50\x21\x61\x9e\x0a\xd3\x8f\x00\xb1\x2e\xfd\xbc\x8f\xd8\x24\x2f\xdd\x52\x42\x19\x13\x91\x59\x46\x25\x64\x47\x28\x0b\x44\xf5\x08\xc1\x4f\x86\x82\x11\x28\xe8\x65\xb7\x63\xa1\x4c\x33\x02\x85\x3b\x5d\xc3\x42\x61\x58\x8f\x37\x83\xa9\x69\xc6\xcf\x83\x8b\xab\xa0\x4f\xea\xda\x3f\x4d\x13\xe2\x5a\x31\xd4\xb0\x66\x0e\xa3\x48\x5d\x24\x41\x9b\x53\xc1\x26\xb2\x7f\x37\x8e\xa9\x79\xa2\xd6\xe9\xf0\x29\xaf\xcc\x46\xeb\x0f\xb0\xb0\xd5\xbf\x79\x40\x8d\xe8\x94\xbe\xc4\xa9\x02\xdc\x9d\x86\x78\x78\x80\x34\xd6\xbb\x47\x6c\x4c\x0a\x2a\x98\x21\x7d\xa9\xb2\xf9\x08\x90\xbe\x7c\x33\x0a\x6d\xad\x9b\x26\xdd\xd6\xba\xf9\x01\x55\x2e\xc6\x86\x4e\x35\xa9\x71\x94\x02\x55\xd1\x17\x9d\xfc\x55\x6c\x27\x50\x82\xea\x46\xc0\x8e\x83\x20\x57\xe9\x11\x3e\x91\x2a\x66\x63\x18\x25\xa8\xe2\x1e\x16\x54\x7e\x01\x6c\xc9\xf3\x42\x2c\x85\x6f\x1e\x01\x39\x91\x4b\x34\x46\xd1\xfc\x69\x20\xe9\x62\xe5\x1b\x5c\x40\x24\x71\xf5\x61\x1d\x8b\xa4\x68\xde\x4c\xfd\x62\x9c\x1d\xb4\xd9\x18\xc3\xe0\x7a\xad\x92\x6f\x23\x8c\x05\x83\x1e\xb0\x4e\x45\xf3\x6e\x9d\x5c\x39\x75\x79\x66\x38\x90\xaa\xc7\x73\xad\x93\xa0\x66\x3d\xd3\x18\x84\x10\x30\x65\x0e\x93\xdf\x93\xeb\xf2\x57\x37\xa4\x70\xe2\xc2\xe3\x25\xa0\x68\x65\x62\x7f\x2d\x2e\xa9\xde\x2f\x5c\x70\x24\x74\x06\x88\x56\x25\x4a\xf8\x0f\xac\x7a\xd1\xdd\xe5\x05\x5e\x5e\xb5\x04\x94\xac\xaa\xb6\x85\x92\x55\xf7\x2a\xb3\x9c\x6a\xf2\x0b\x98\xa0\xa9\x30\xac\x9e\x63\x78\x63\x2f\x72\x0b\xe3\x0e\x65\xb1\xe1\x65\x67\x65\x8c\x66\xe4\x41\x39\xd4\x31\xbc\x8a\x74\x81\xf6\xc5\x33\xdc\x15\x5e\xe8\x82\x0a\x96\xd0\xe0\x79\x22\xf2\x37\x05\x4d\x13\x75\x2f\x46\x75\x3b\xb6\xa1\x7a\x44\xdc\x61\x4c\x4a\x6e\x04\x11\x76\x8f\x87\x22\x66\x26\x90\x4c\xec\x67\x96\x88\x7c\xce\xbe\xa9\x87\xa5\xc4\xd4\xfb\xf0\xf3\x1a\xd5\xef\x83\xfd\x59\x7a\x78\x3e\x89\x29\x98\x29\x33\xbb\x73\xf3\xce\x3e\x27\xf8\xa5\x7f\x63\x02\xc6\xe5\x87\x1e\xba\x26\x1c\x70\x7e\x2e\x46\x05\x4a\x7d\x96\x1c\xe0\x17\x36\x4c\xda\x10\xf4\xab\x3a\x3d\x23\xbc\xd0\x5a\x19\x62\xb8\x36\x37\xaf\x30\xbc\xc0\x2c\xd5\x07\x38\x7d\xf5\xee\x2d\xa2\xe7\x72\xf3\x26\xb2\x3c\x6b\xf4\xa6\x4c\xfa\xcb\x79\x57\x26\x65\x13\xa9\x04\x02\x13\xe3\x34\x77\x3a\xc9\x24\x24\xa7\x05\x58\x4e\x47\xf3\x20\x0f\xbf\xd0\xca\xc3\x11\x6c\xe8\xfa\x12\x99\x38\xc7\xea\xbc\xc8\xd4\x7f\xfd\xe7\x01\x5c\x52\xb3\xbf\x20\x54\xba\xd4\x47\x78\x22\x0f\xeb\x5d\xe2\x81\xcd\x11\xf6\xc4\xe3\x26\x10\x4d\x0f\x10\xce\x5f\xfc\x01\xcb\xaa\xec\xcd\x88\x01\x4e\xdd\xe2\x96\x11\x2a\x44\x69\xe6\x47\x84\xa7\xf1\x68\x6e\xc7\x29\xd5\x3d\x22\x86\x65\x9e\xf6\x07\xd0\x84\x48\x18\x8e\x70\x1b\x1b\x56\x57\x45\x96\x82\x88\x52\x2c\xc4\x4f\x00\x6b\x87\x58\x61\x8c\x5c\x58\xcd\x29\x25\x7e\x10\xf5\x00\x61\x0a\xda\x89\x98\x98\x6c\x42\xcb\x98\xd6\x08\x49\x0f\x90\x32\xc3\x8b\x90\xb8\x6a\xee\xe0\x46\xbb\x20\x62\x54\x9a\x9c\xfe\x46\x44\x54\x9a\x0f\x5d\xcc\x58\x35\x83\xcc\xa4\x7d\x72\xe3\x1a\x31\x2f\x98\x05\x13\xbc\xcc\xc2\xcf\x0b\x58\x47\x1d\xf3\xc8\xa4\x7d\x56\x7e\xc4\xbc\xf6\x5e\x40\xc3\x0f\x4d\xd1\xfb\x23\x52\x05\xd7\x3d\xc2\x49\x18\x34\x2b\x94\x56\x55\x3a\xdb\x11\x19\x24\x6b\x7d\x4b\xcc\x38\x98\xc5\x43\x4e\x0e\xa9\x21\xe0\x59\x36\x74\xb2\x63\x09\xf8\x40\x43\xb2\x48\x97\xd5\xb3\x11\xf6\xc1\xa1\x9b\x6b\x64\x90\x5a\xf3\xd6\xb0\x38\x6a\xf9\x9b\x42\xe3\x23\x22\x60\x76\x48\xea\x8a\xac\xf0\x75\xb8\x77\xa0\x9a\xae\xde\xb1\xf2\x98\xeb\xd6\x1b\x2b\x0f\x98\x51\xad\xc2\xb2\x26\x09\x39\xc2\x0b\x6d\xe8\x1a\x14\x59\xb3\xbe\x1b\xd5\xa0\x76\x53\x16\x9c\x11\xa9\x75\x13\x5b\x8e\x08\x80\xeb\xdd\xa8\xc6\xf4\x31\x72\xbe\x1b\xb1\x51\x19\xab\x5d\x60\x3a\xbf\xe6\x13\x88\xa8\xd7\x31\x7c\x64\xe9\x52\x26\xbf\xa6\x11\x29\x67\xc9\x03\x68\xc4\xf6\x22\xee\xc7\x2f\x4c\x42\xa1\x2e\x90\x91\xaf\x19\x4c\x84\xac\x26\xe3\x0a\x1c\xd3\x7f\xe8\x4a\xef\xc8\xe8\xa9\x0e\x99\x70\x4f\x8e\x72\x23\xf6\x93\x20\xb8\x87\x87\x6f\x68\x5e\x2c\x35\x61\xa5\x6a\xfc\xc4\xa8\x28\x13\xe2\x88\xcc\xc7\xa2\xc0\xbd\x11\xe1\x44\x36\xbc\x19\x83\x47\x42\x93\x40\x08\xeb\xd0\x95\x28\xb2\x48\xbc\x8d\x03\x11\xe9\x58\x7c\xb7\x8f\x0c\x81\xeb\x3e\xb6\x03\xe6\x08\xcf\x02\x75\x51\x87\xae\x3f\x11\xc6\xe5\xf1\xd3\x01\xd7\xd1\x87\x90\x9e\xf1\xcd\x14\x99\xf9\x56\xa4\x2d\x88\x4c\x66\xdc\x4c\x4a\x4e\x66\x22\xf4\x21\x43\xbd\xb0\x9f\x13\x00\x7f\xb0\x61\x55\x71\xbc\x48\x3b\xa4\xe4\x88\x90\x94\xd2\xcf\xb9\x64\xce\xbc\x66\x72\x03\xfb\xef\x90\xdc\x1d\x69\xff\x6d\x26\x60\xa8\x42\x3a\x74\x59\x88\xf4\x10\x6b\x3f\x5d\x92\x16\x48\x4a\x8e\x37\x85\x5e\x63\x3e\x0b\xc3\x47\x2f\xde\x4d\x42\x6e\x54\x5f\xa2\x91\x69\x1c\xad\xb6\x72\xea\x1b\x91\x5e\x62\x16\x46\x22\x14\x57\xc3\x1a\xd6\x78\x2f\x38\xfc\x00\x17\x7a\x39\x20\x8d\x08\x57\xf7\x21\xd9\x3a\x3e\x20\xbd\x12\xc6\xe3\xc3\x64\xb5\x9a\xea\x83\xb8\xfd\xea\xdf\x50\x4b\x88\xd3\x47\xca\x3f\x12\x3b\xe3\xb3\xd6\xce\x03\x80\x44\xf9\x2c\x3c\xa4\x8a\xc6\xaa\x97\x10\xe8\x83\x97\xb2\xbb\x24\xed\x48\x1b\xae\xca\xe5\x8c\x88\xda\x15\xd9\x34\xe1\x25\x99\x31\x0d\x78\x09\x94\x3f\x20\x50\x86\xf2\xe5\x86\x7a\x08\x18\xf8\x7f\x60\x22\xdf\x37\xd4\xd0\x73\xc5\xe6\x1e\xc9\xd2\xbc\x6e\xf4\x84\x97\xa9\x7a\xc4\x19\x51\x25\x4c\x3d\x20\x53\xf2\xcf\xf1\x9b\x3c\x7e\x3e\xbf\x88\xd5\xaa\x26\xf6\x9f\xc8\xd4\x55\x4b\x7c\x44\x24\x2e\x39\x24\x59\xc6\x89\xa2\xd3\x06\x89\xa1\x5d\x9e\xc3\x84\xcb\x9f\x6c\x48\xe9\x58\x10\x16\x3d\x40\x54\x54\xf3\xef\x8c\x2c\x41\xa2\x83\xe9\x80\x29\x5c\xfc\x2a\x1d\x6b\x19\xab\x1e\x50\x23\x92\xfc\xc5\x04\x8c\xc7\xdf\xf0\xa3\x04\x9d\x98\x9c\xb8\x46\x62\x56\x41\x79\x83\x8e\xc4\xe2\x5c\x36\x40\x24\x66\x0d\x94\xdb\xc2\x48\x10\x97\x14\x7e\x30\x12\x0c\xa8\x87\xf8\x4b\x0a\x5c\x33\x77\xb0\xf6\xb5\xe9\xc1\x83\x35\xf0\x07\xe0\xe1\xcd\x1d\x2e\x6c\xd5\x0b\x50\x88\xa9\x78\xd2\x48\x11\x3c\x5c\xd2\x77\x8a\x11\x23\x6a\x51\x51\x0a\xff\xd0\x35\x2d\x31\x65\xa0\x8d\xd4\x29\xf2\x40\xf9\x37\xf4\x7c\xc9\x1d\x52\x70\x49\xee\x11\x3a\x59\x2f\x5b\x24\x99\x16\x51\x4d\x2c\xa6\xdf\x7e\x60\xba\x70\x87\xf2\x10\x37\xac\xba\xee\xe1\x05\x8c\x5a\x55\x38\x9d\x59\x6b\x9f\x12\xe2\x5c\xdd\x5f\x5a\xa4\x4b\x93\xa2\x17\x9a\xea\xe8\x8c\x94\x0a\x7a\xf4\x17\x64\xca\xa2\x7e\x89\x4e\x68\x36\x99\xa6\xc4\x9d\xf2\x0b\xd7\xf7\x5b\x97\xcf\xf4\x09\x7c\xed\x30\x6e\x2e\x79\x4e\x64\x3e\x65\xf2\x5c\x75\xb8\xf2\x12\x18\x59\x21\xd0\xa5\x7c\xb8\xcb\x0b\x65\xbe\xb5\xb0\xf4\xf8\x12\xd5\x4f\xac\x7e\x6f\xab\x64\x2a\x0b\x41\x35\x2d\x16\x66\x55\x9a\xb5\x91\x0a\x82\x1f\x8a\x5f\xa0\x74\xe2\x43\x88\x44\xcf\x87\x2e\x1c\xa9\x80\x52\x35\x77\xb0\x28\xba\x7b\xa0\x18\x2a\x66\x95\x0a\x0b\x3d\xba\x87\x1b\x3d\x1a\x6a\x52\x26\xa3\xf4\x27\xc6\xb5\xc3\x67\xa4\xae\xa5\x57\x0f\x4b\xc6\xd2\xcd\x2a\x55\xaa\x42\x8d\x83\x95\x5c\xd8\x4b\x83\x68\x02\x2b\xc0\x53\x25\x21\x10\x9b\x49\x48\xdb\x77\x04\x03\xc1\x3b\xa4\x27\xda\x40\xf5\x3d\x66\xe3\xda\x1a\xe9\x1a\x15\x1c\x62\xa9\xa9\x2d\x24\x13\x8a\x2c\x0d\xdc\x4f\x1f\x64\xec\xba\x4d\x25\xa6\x72\xf6\xdd\x36\x35\x2e\x96\xfb\x24\xbf\x94\xcc\x9b\x1a\x03\x8b\x35\xb1\x46\xf1\x42\x42\x52\xea\xd4\x68\x98\x00\xb0\xa4\x84\x1c\x72\x47\x5a\x1a\x34\x13\xc5\x95\x4d\x59\xda\x9e\x04\x23\x64\xf6\xea\xf5\x05\x85\x56\xab\x53\x70\x32\x1e\x2d\x61\x4f\x92\x75\x1a\x38\x0e\xc1\x2f\x10\xd1\x74\x9d\x49\x48\xa7\x7c\x78\x0c\x24\xdf\xeb\x46\x93\xa5\x53\x93\x78\x98\x3e\xe1\xae\x59\x9c\x4c\x34\x49\x46\x53\x09\xc6\x07\xc8\x49\x77\xa4\x73\x6d\x99\xc0\x3e\x97\x3a\x52\x50\x9d\x08\x58\xf6\x8e\x2d\x2d\x5b\xf7\x0b\x2c\xce\xa2\xfd\x58\xf2\x9f\x59\x0e\x22\x0a\x8a\x35\xe8\xe9\xa4\xf0\x2e\x21\x33\xa1\x2a\xfd\x61\x5c\xbd\x88\xee\x5a\x88\x0b\x2c\x21\xfe\x1d\x4b\xba\x88\xf9\x66\x41\x4b\x09\x66\x08\x6f\xea\xb2\x25\xb9\xa7\x1b\x04\xde\x3c\xea\x86\xd2\xc1\x38\xc8\x7a\xf3\xdd\x64\xe6\x13\xda\x9a\x6f\x30\xe9\xe6\xf1\x93\x74\x99\xee\x05\x84\xbf\x58\x73\xd6\x3a\xc2\xdb\x7f\xf8\x8a\x9e\x96\xdc\x27\x81\x26\x3d\x58\x05\xd3\x5b\x44\xf5\x07\x6f\xff\x03\x99\xaa\x9b\x18\x3e\x84\x4a\x63\x52\x6f\xa5\x08\x82\x91\x68\x8e\xec\xa6\xa7\xcf\x83\x2f\x04\x36\xf5\x52\x3e\x6b\x0f\xcd\x3a\x66\x0a\xb0\x46\x5a\xb5\x91\x5e\x52\x4f\x33\xae\x17\x48\xed\xb3\xf6\x82\x8b\x48\x20\x4e\x2f\xb9\x88\x59\xe1\xbb\xd6\x56\x30\xbc\x9c\x85\x76\x8b\xae\x73\x72\x24\x1f\x89\xae\x72\xdd\x6c\x82\x01\x02\xb6\x77\xa4\x4f\x0c\x73\xee\xc4\x91\x26\x75\x44\x66\x34\x73\x6d\x8f\x06\x9d\x2b\x5b\xba\x3f\x59\xd4\x70\xaf\x7e\x86\x73\x5c\xb4\xcd\x24\x1f\x8b\x8a\x34\x3d\x00\x16\x69\x43\xf3\x41\x8b\x96\xfa\xcc\x47\xc3\x0b\x45\xbf\x3b\xbb\xf4\x17\x14\x03\xaa\x07\xa5\xe8\x22\x6e\x95\x03\x70\x42\x13\xc9\x81\x63\x0a\xa8\xc0\xe5\x8f\xfa\x5d\x38\x84\xc6\x84\xb4\xa5\x84\xea\x23\x07\x58\xb7\x0e\x7f\x00\x1e\x2e\xd2\x98\xe1\x7d\xe6\x02\xfc\x23\x7f\xc2\x52\xb3\x3b\x59\x8e\x60\xf2\xb2\x1d\x66\x56\x2d\x1d\x3f\x2f\xac\x1e\xb4\x4e\x09\xe2\x96\x84\xe4\xcc\x52\x5b\xf2\x3d\x1f\x39\x91\x06\xfd\x3c\xa0\x2d\x49\x0c\x34\x53\x36\x11\xc1\xc8\x09\x2c\xd9\x5b\x81\x34\x4c\x36\x2d\x65\x4a\x26\xa2\x83\x39\xad\xed\xd6\xba\x31\xe9\xb1\x35\xeb\x39\x71\xe5\xc5\x2e\x73\xe6\xbc\x05\x53\x5e\xa7\x4f\x30\x50\xba\x11\x51\xc9\x19\x42\xa1\xd4\x59\x39\x13\x29\xdd\xce\x20\x15\xc3\x40\x87\x30\xdb\x93\x33\x64\x15\x25\x2d\x1c\xb9\x40\x2e\xcd\xfe\xfd\x6d\xbe\x8f\x77\x2e\x14\xad\xc5\x7f\x33\xf3\x1f\xd9\xa1\x29\x17\xac\x83\xae\x96\xb9\x60\xf3\xb2\x7f\xdf\xfc\xc0\x5d\x42\x06\xf0\x29\x28\xdc\x4c\x49\x22\x99\x92\x89\xce\x7f\x66\x05\x0a\x6b\x9e\x73\x25\xd0\xda\x9a\xba\x36\x57\xeb\x50\x79\x0a\x82\x1f\x70\xb3\xb4\xb0\x95\x5c\xcc\xeb\xc0\xb0\x47\xf9\xf1\x8f\xcc\x92\x13\x8a\x29\x1d\x99\x71\x90\xf2\xca\x1f\xb9\x01\x4c\xef\x66\xa3\xb6\x5b\x02\x54\x6e\x24\x64\x62\x84\xb9\x01\xc5\xbc\x96\x0d\x87\xd7\x40\x50\x0c\x29\x7f\x93\x9a\x6e\xe4\x06\x3a\xfb\xd3\x39\x96\xb5\x18\x3c\xdc\xb9\x24\x2b\xe4\x0e\x64\x93\xb4\x91\x99\x7d\x58\xa9\xf8\x46\x66\x82\x35\x85\xe4\x8e\xf2\x81\x97\xcc\x91\x4a\xa3\xc2\x57\x5b\x5d\x96\xed\x52\x8c\xbc\xb4\xb5\x68\x7a\xd0\x99\xdc\xa7\xe9\x37\x76\x4e\xb2\x42\x01\x10\x0a\x23\x1e\x65\xc3\xa0\x31\x3b\x95\x1d\xcd\x0f\xb0\x66\x22\xd4\xa5\x53\x32\xd6\x21\x2a\xc8\x81\xac\x6c\x05\xa3\x74\x6c\x7d\x75\x3b\xf2\x65\x04\x83\x44\x47\xa1\x66\x18\x26\x9c\x2a\xf5\x9b\x05\xf4\x3d\xeb\x81\xfb\x71\xf7\x6f\x28\xa1\xb5\x11\x85\x32\x98\x54\x00\x65\x80\x90\x54\xb7\x2f\x06\x28\x08\x4e\x20\x52\xf5\x6f\x2a\x89\x74\x28\x0b\x7d\xba\xa4\x3b\x29\x27\x63\xbf\xb4\x26\xb0\x5a\x9a\x42\x97\xb3\xa0\xd8\xb9\x7f\x57\x6e\x9c\x3b\xe0\x22\xba\x03\xf0\x47\xf1\x88\xb2\xc4\xab\x62\x90\x2e\x2a\x11\x0c\x12\x6b\x8f\x7b\xeb\x4f\xa0\xa3\xb8\x7a\x41\x3d\xfe\xa4\x02\x3b\xa3\x40\x01\x17\xfd\xc1\xb5\x08\xb0\x80\xb8\xe8\xc9\xe2\xad\xa6\x88\xd6\xdc\x03\x73\xeb\x48\x79\x56\x2e\x90\x9a\xe6\xdf\x38\x3f\x62\x8e\xe5\x22\xc3\x35\xba\x5d\x38\x23\xa2\x13\x85\xb5\x65\xed\x52\x52\x28\xb5\x79\x6b\x6e\x8a\x16\xa2\x66\x05\x62\x9b\x3d\x4a\x0a\x7d\xc4\x14\xf8\x32\x0a\x7d\xc4\xec\x39\x51\x6e\xe0\x5f\x73\x0f\x0c\x54\x96\x40\x54\x6e\x42\xad\x69\xdf\x5c\x49\x2d\xd4\xca\x38\x2c\xd1\xa3\x3c\x24\x77\xe2\x76\xe5\x01\xc6\xfd\xbc\x00\x3a\xe3\x11\x1e\x60\xe0\xcf\xfb\x1d\x0c\x5a\x20\x2e\xa1\x4e\xf2\x51\x79\x28\xcb\xf8\x94\x3d\x80\xb1\xfb\x05\xf2\x36\xc9\x60\xe5\xe1\x29\xf2\x3a\x3c\xa4\xea\x92\x1c\x0b\xab\x8e\xd9\x59\xa3\xbc\x20\x48\xfe\xe2\x05\x6d\xd0\x55\xa5\xbc\x54\xf3\x88\x43\x17\xca\x7d\x3e\x78\x4b\xee\x13\x05\x2e\x88\xc9\xc8\x26\x0e\x15\x45\xd8\x95\xdc\x79\xd4\xb0\x10\x22\xea\x01\x09\x96\xc4\xf4\x4a\x51\x44\xd7\x9f\x1a\x23\x5f\xf0\x83\x05\x95\xba\x88\x38\x3b\x32\x5a\x55\xa8\x59\x94\xab\x6f\xd4\x48\x01\xd9\x5d\x32\x1d\x83\x5d\x27\xea\x27\xac\x24\xbb\x31\x54\x2a\x41\xac\x81\xaf\x89\x34\x4e\x24\xa6\x7e\xb2\xc6\x8f\xca\xae\xb2\xec\xa7\x9d\x86\x6b\xa2\x09\xbe\xf8\x8d\x0f\xd3\x15\x75\x3b\x2a\xea\x2d\xf8\x26\x59\x33\xef\x2f\x42\xec\x9a\xb1\x1b\xe3\x6f\x4a\x17\x8d\x0a\xb3\x9b\x72\xc2\x8d\x0a\xff\x25\x95\x49\x18\x35\x03\x7d\xa4\xe4\xac\xb0\x91\x59\xc4\xac\x19\xbc\x4a\x36\x8a\x5a\x80\x2b\x92\x31\x2a\x0b\x63\x59\xdd\x5f\xcb\xda\x05\xed\x5b\x21\x6f\x12\x95\xad\x9f\x18\x92\x94\x93\x66\x54\xea\x43\x86\x3f\xc0\x29\xd3\xdd\xa9\x52\x2a\xd1\x6d\xab\x16\x82\xa4\x05\x5a\x46\x2e\xcf\x01\xb9\x17\x6c\xa8\xae\xc8\x04\xab\x4c\x60\xa3\x56\x6a\xa3\x35\x00\x8c\x5e\x4a\xe8\x3b\x6a\xfd\x0e\x65\x38\xfc\xfe\x89\x5c\x65\x02\xb0\xde\x68\xf7\x78\x44\x55\xf1\xca\x0a\x4f\x71\x5b\x97\xea\x27\x6e\x34\xbb\x18\xd4\x06\x03\x7f\x76\xfb\x5a\x33\x41\xd0\xe0\xfc\xae\x5b\x77\x45\x35\x76\xbb\xd3\x55\x8a\x27\xd2\x15\xd4\x86\x9a\x7c\x3e\x4d\xf0\x54\xb2\x1b\x76\x65\x06\x48\xbb\xaf\xd4\x46\xd1\x2f\x79\xc4\x07\xee\xf6\x1e\x71\xcd\xc9\x5f\x90\x20\x1b\x2f\x3b\x0f\x8b\x48\x78\xed\x2b\x63\x9b\x36\xba\x53\xeb\xe8\x43\x4f\xf7\x71\x2b\xf0\x2a\xbc\x9f\xac\x63\xaa\xa8\x8b\x35\x8c\x2a\x10\x21\xac\x5c\xa8\xcc\xf4\x60\x97\x97\x0a\xb3\x9c\xa2\x23\x47\x85\xef\x93\x65\xe2\xda\x51\xd8\xcd\x0b\x07\x91\x22\x4b\x0a\xaa\x48\x23\xab\x74\x48\xa3\x0e\x0a\xb4\xba\x6b\x54\x94\xc1\xca\x9e\xe4\x28\xe8\x50\x33\x60\xcd\x84\xe1\xd3\x39\x1a\x5e\x10\x2e\x8c\x8e\xdf\x9a\xd2\x60\xb6\xce\xe6\x0f\xa8\x2f\x34\xfe\x23\x02\x54\x25\x3e\x46\x85\xef\x94\x4a\x4a\x8d\x3a\xa0\x01\x37\x59\x63\x4d\x05\x5b\x8c\xea\x49\xf4\xd3\xb2\x9f\x88\x09\x32\xfa\x9d\x6b\x1b\x34\xe2\xc9\x12\x1b\xa2\xdf\x95\x6a\x1f\xdb\x67\xea\xc9\x59\x69\x4c\x7a\xa2\x8b\x2d\xd5\x25\x96\x48\x52\xaa\xe7\x89\x0f\xfc\x9b\x17\x45\x6f\xed\x09\x63\x87\x51\x1c\x5a\x20\xeb\x3b\xea\x72\x97\xf2\x31\xff\xa4\x92\xa6\x32\xc1\xa3\x5e\x38\xa5\xde\xba\xab\x7d\xb3\xf4\xa1\xbb\x78\x06\x7c\x8c\x2f\xd6\x17\x70\x87\x37\x64\x31\x81\x08\x99\xa4\xdb\x6b\xb8\x22\xe6\xb3\x9a\xc1\x50\x93\xd4\xdc\x9e\xe1\xf6\xac\x65\x84\x3d\x30\x79\x4a\x48\x16\x99\x24\x78\xd5\x9b\x6e\x1a\x5a\xe5\x4f\x20\x71\x7d\xc6\x51\x99\x16\xcb\xe6\x94\xfa\x09\x24\x4d\x81\x88\xa3\xd2\x89\xdd\xbb\x02\x79\x24\x98\xd0\xdd\x2f\x7e\x0b\xa0\x07\x19\x48\xbd\xcf\x2c\x79\xaa\x92\x4b\xa3\x42\x1c\x09\xde\x46\xf8\x4a\xa9\xaa\xc3\xa8\xac\x02\xe6\xab\x75\xfd\xe4\x91\x9c\xd2\xdf\xf1\x9e\x67\xed\x80\x26\x8c\xac\x91\xd5\x88\x09\xd9\x25\xfc\xfc\x5e\x3b\xe0\xf1\xe9\x26\xe8\x25\x5c\xb2\x8b\xc4\xc2\x8a\x9c\x15\x16\x5d\x2a\x7c\xa7\x7e\x4e\x17\x04\x8f\x18\xdd\x4e\x44\xf5\x26\x22\x2d\xa4\xfd\x71\xeb\xbb\x7c\x0d\xf4\x9b\x77\x02\x09\x3f\x75\x22\xcd\xab\x19\x3a\x8b\x92\x29\x41\xc5\xa8\xf0\x97\xb7\xfa\xa2\x4e\x54\x99\xf0\x2c\x11\xda\x69\x13\x70\x9d\x40\x03\x09\x6c\x75\x2e\x34\xf0\x0b\x1f\xc3\x54\x6e\xb3\xd1\x60\x17\x4c\xba\x84\x34\x46\x6e\x7a\xd2\xed\x58\x84\xd7\x5f\xe0\xec\x44\xff\xa6\xa2\x48\x1b\xdd\x60\x38\x54\x8d\x9d\xd1\x8e\x06\x17\xb6\xae\xdf\xa0\x62\x3a\x0a\xed\x58\xcb\x98\xf5\x00\xa9\x14\x74\x01\x68\x07\x2b\x6a\xfa\x37\x50\x53\xfb\xd0\x60\x77\x54\xf2\xed\xd1\x42\xc0\xef\x43\xbf\x13\xde\x17\x00\xcc\xdf\x65\x97\xd3\x16\x00\xb1\x6e\x56\x0d\x86\x44\x0b\x77\x2d\xac\x55\x14\xc8\x0c\xc5\xb4\xe3\x61\x83\x69\xd1\xca\x8d\x16\x28\x39\x67\x0f\xc1\x90\x3c\xfd\x66\x31\x31\x33\xc9\x16\xb1\xac\xd2\x01\xb6\x88\xa0\x5d\x49\xf7\x2d\x52\x3a\xac\xfe\x00\x54\xd1\x3b\x99\x40\xf4\x24\x38\xb4\x25\x80\x0a\xdf\x1b\x0d\x79\x06\x29\xc1\xb8\x3f\xdc\x5e\x19\x35\xa7\x75\xfc\x04\x52\x97\xc5\x1a\x2d\x71\x59\xb4\x0a\x09\x36\x68\x61\x6f\x83\x74\xd9\xed\xef\xd9\x20\x5d\x06\x23\x57\xe6\x88\x6e\xc7\x9c\x3d\x40\xc6\x3e\x64\x77\xd8\xd8\xa1\x3b\x00\xea\x64\x77\x00\x88\x74\x82\x5b\x5e\x79\x59\xdd\x23\xf8\xdb\x70\x07\xeb\x02\xa3\x39\x64\xb0\x0e\xc9\x19\x8d\x5e\x59\x3a\xc2\xad\xd0\x5d\xd9\xed\x85\x57\x64\x3f\xa8\xc8\xff\xa4\x11\xca\x82\xd9\x2f\x50\x4b\x25\xb1\xb9\x41\xb7\x66\x27\x8a\x56\x78\x0d\x6b\x7e\x70\xb1\x0b\x3f\x00\x6d\xcb\xfe\xfd\x22\x14\x4f\x63\x42\x95\x16\x7c\x02\x11\x20\x99\x7d\x00\xe0\xa9\x65\x75\x7f\xab\x74\xa8\x6b\xfe\x80\x1b\xa1\x55\xa1\xd4\x6a\x54\x59\x1e\xf7\xa2\x74\xad\x72\x23\x84\x8c\xc8\x38\xa6\x64\xcb\xa3\x55\x92\xeb\xe0\x11\xc0\x7e\xbc\x08\x70\xc1\x37\xe5\x6b\x75\x51\x67\x81\xd0\xa8\x59\x10\x29\x6b\x6d\x01\x2d\xa0\x20\xe9\xda\xe8\xd5\x96\xef\x97\x88\x67\x6b\xc0\x0e\xdd\xc0\x5a\xc3\x89\x29\x1e\xe2\xe2\xce\xfc\x4d\x4a\xee\xd1\xa0\xb6\x53\x52\xe1\xd1\x1a\x2f\x5f\xa6\x94\x4b\xaa\x35\x1d\x63\x69\xb0\xee\x4f\xa0\x9c\x73\xe8\x59\xfb\x64\xd8\x66\xe5\x49\xeb\x60\xa1\xc5\x1d\x60\x1b\x24\x69\xb7\xce\x1b\xfc\x4f\x07\x5c\x55\x6d\x03\x1c\xc9\x1c\x11\xd0\xc6\x12\xc6\xd4\xc3\x58\x67\x5c\x5f\xb0\x2c\x97\x0d\x98\x0d\x32\x66\x33\x6d\x1c\x14\x93\x8d\x9d\x63\xa1\xab\xbb\xc0\xc2\x48\x8e\x6e\x34\x15\x3a\x7a\xb6\x8d\xb5\x30\x02\xfb\x64\x6d\x0b\xcd\x9b\x9a\xaf\x68\x62\x77\x82\x62\xfb\x88\x9c\x58\x08\xcf\x0b\x9a\x2c\xeb\x67\x1a\xdc\xf1\x7f\x80\x3e\xa9\x10\x37\x36\x9d\x2c\x10\x69\x7c\x3b\x17\x21\xd0\x2c\xae\x75\x4c\xd5\xc7\xb5\x26\xee\x07\x54\xbb\x9b\x60\x32\x01\xaa\xaf\xd7\xed\x5a\x33\x17\x5c\x74\x89\xb7\xd5\xb4\xdd\xd4\x1e\x1b\x8e\x9b\x33\xd5\x20\x37\x67\xaa\x2e\xe9\xf5\xd5\x3d\x55\x18\x10\x6d\x57\x6b\x37\x3d\x1d\x4c\x54\x97\xe4\xe7\xc5\xa2\xe4\xe7\xb3\x0b\xfb\x61\xb7\xab\x59\xbb\x17\x26\x7b\x50\x5e\xd8\xbc\xfe\xcc\xee\x61\xf3\x5f\x63\x05\x7c\x0b\x1e\xed\xa1\x7a\x54\xf3\x78\xc8\x63\x2d\x05\x3c\x6b\x22\xda\x92\x25\x0f\x5a\x0e\x60\xa2\xf0\x28\xf5\x53\x7b\xa8\x43\x33\xf5\xa6\x8c\xe7\x03\xbe\xf4\x53\x5e\xbd\x25\xe3\x49\xdb\xd4\x96\x3a\xca\x98\xf5\x2e\xc0\xf5\xc9\x4b\x5d\xb4\x57\x1c\xa9\xbb\x6d\x5c\x69\xef\x8b\x94\xe8\x6e\x27\x36\x4b\x0f\xd7\xe6\xea\x52\x6f\x4c\xb0\x3d\x9f\x18\x54\x96\x4d\xc9\xed\xbc\x33\x75\xbf\x80\x73\x6f\x4c\x9b\x40\x02\x63\xef\x92\xe2\x3c\x71\x18\x1d\xed\xc4\xdd\x50\x57\x56\x49\x71\x47\x3f\x02\xd4\x22\x4d\xbf\x51\x45\x56\x0c\xa1\x7f\x42\x5d\x3c\xb4\x9d\x9d\x51\x8f\xe3\xe7\x05\xb2\xb9\xac\xdf\x15\x81\x43\xee\x90\x0c\x41\x97\xe5\x0e\x8b\xa4\x12\x5c\x8f\x7e\x90\x4a\x74\x0f\x81\xbd\xeb\x1e\x81\xf2\x79\x32\xcc\x6b\xef\x3c\x06\xc4\x3a\x61\x65\x0f\xb0\x32\x68\x6f\x7b\xe0\x15\x4a\x20\xa0\xd2\xbe\xb9\x5e\x0f\x0c\x89\x76\xfb\x9a\xa4\x1f\x90\x18\x8a\x0e\x75\x94\x9d\x55\x52\xf6\xd1\x03\x54\x21\xc3\x3d\x92\xfe\x36\x7f\x00\x36\x27\x81\xa5\xd3\xc3\xcc\xe1\xe1\x3d\xac\x49\xed\xad\xed\x0c\xa9\x74\x7c\x6b\x87\x2a\x32\x08\xe9\x7b\x24\x9b\xeb\xe3\x6f\x98\x52\xa7\xd4\xe8\x6d\x40\x80\x66\x1f\xc9\xe3\x91\x29\xfe\xf4\x4f\x9b\x98\x27\x15\x59\x4e\xc3\x00\x21\xc8\x41\xd7\xb4\xbe\xcc\xb2\x5e\xf7\x65\x96\x15\x39\xef\x90\x3c\xed\x0f\xd4\x61\x74\xb5\x4a\xa0\x27\xde\x10\x84\xcf\x3d\x41\x03\xe0\x1e\x13\x68\x9a\x4e\x54\x47\x78\x66\xb6\xd1\xa0\x7f\x92\x66\x52\xd9\xd8\xd1\x13\xe2\x7c\xa2\x3b\xc0\x99\xed\x86\x80\xcb\x2e\x32\xdb\x33\x4f\xb9\x8e\x58\xa7\xa8\x69\xf4\x5c\xa2\xa6\x0e\x69\x5f\xa2\xa4\xd1\x0f\xda\x4e\xb3\xd2\x8e\x68\x4d\xa7\xb5\xe8\xd0\x6e\x5a\xb2\xec\xac\x53\xe3\x24\x39\x9d\x65\x69\x8c\x3c\x85\x7b\xa5\x49\x14\x5a\x46\x7e\x1e\xc0\x3d\x6c\xb8\x47\x68\x3f\x8d\x5c\x85\x04\xf3\xe7\x03\x78\xf1\x18\xe3\xa1\x1d\xf5\x45\xa9\x17\xc4\xa9\x8b\x4d\xf6\x0a\x43\xf3\xf0\x6f\x1e\x08\x09\xe4\x9d\x72\x9f\xee\x14\xbd\x72\x51\xbc\x53\x14\xeb\x44\x1c\x3b\x13\xcd\x46\xe3\x42\x03\x7f\x33\x88\x0d\x08\x2b\x92\xde\x4f\xf8\x33\x4a\x70\xec\xd4\xf5\xf8\x7b\xba\x80\xdb\xb4\xdd\x4f\xd2\x0d\xdd\x01\xfa\x49\x66\xe5\x33\x70\x62\x23\xa4\x03\xeb\xcc\x5c\x60\x43\x5b\x47\x78\x9d\xd3\x10\xf4\x8b\x2a\x53\x6f\x1d\xd5\x41\x5e\x17\x96\xd4\xb4\x7d\xa8\x5f\xd4\x43\xff\x8c\x41\x72\xf7\xd3\x27\xbd\x00\xdc\xc7\xcd\x14\x9b\xd9\x0f\xbe\x95\x71\xe0\x7b\xbf\xb9\x32\x5a\xca\xe5\x11\x6e\x84\x83\x68\xe0\x88\xef\x7e\x2f\xa8\xfc\xc5\x82\xca\x0f\xb8\x78\xc5\x63\x90\x3e\x99\x1a\x3c\x2c\x92\xa2\xed\xf9\x38\x6c\xfd\x19\x03\x3a\x92\xe2\xa5\x7b\x59\x14\xc5\xb3\x58\xfc\x54\x82\x7d\x87\x5f\x8f\x9d\x72\xfb\xcb\x8b\xae\x91\x92\xc5\xdd\x93\x27\xfe\x52\x41\x68\x72\xf0\xae\x20\x7e\x2d\xf7\x3b\x30\x73\x77\xc1\xdb\x45\x31\x58\x17\x5e\xf0\xef\xe7\x9f\x3f\xd9\x3c\xbb\x7f\x3c\xbc\x24\x53\xc5\x17\xb9\x4c\xcc\x7b\xa8\x66\xd1\x85\xab\xcf\x05\xb4\xf6\x77\x42\x52\x37\x3f\x9c\x0b\x66\x7f\x41\x75\x9a\x40\x44\xe2\x01\x3b\xbf\x75\xa4\xd0\x52\x11\xe0\x31\x96\x0f\x90\x40\x1c\x07\xd1\xc1\x2f\x14\x10\x55\xb7\x53\x7e\x12\xc5\x1a\xcc\xf4\x69\x45\xff\x38\xb8\x4a\x45\xbf\x11\x05\x2d\xf3\xca\x40\x86\xac\xe4\x40\xab\x01\x97\x20\x2b\x08\x06\x8b\x3e\x9a\xdf\x8d\x8f\xa3\xb6\x78\xfc\x95\xa7\xc2\x08\x2c\xe2\xef\x8f\x33\x3e\x16\x78\x81\xf8\x2c\x9a\x3c\x3e\xee\xda\x1c\x17\x3e\x96\xc3\x90\x8e\xe1\xf8\x78\x65\x8b\xba\xfd\x0f\xb0\x4a\xc7\x85\x8f\x65\xb5\xd3\x09\x19\xe0\x86\x8e\xda\x1d\x71\xed\x92\xbf\xf8\x28\xaa\x6a\xfc\x8c\xc1\xf0\xb9\xe2\x76\xde\x08\x3d\x09\xd4\x80\x8c\xba\xcc\x0f\x38\x4b\x1b\x51\x46\x22\xfa\x4b\xaa\x1d\x74\x86\xb6\x8d\x6e\xa4\x35\x6d\x01\x95\x28\x44\xf8\x01\x12\x64\x96\x24\xec\x1d\x4b\x8f\x22\x89\x7d\x40\x8f\xe2\x78\xca\x91\x3f\xdc\xb0\x4d\x68\x64\xd2\xed\xe6\x2e\x89\x2c\xc3\x5d\x52\x7b\xf4\xf3\x00\xc8\xa2\x7b\xe0\x00\x77\xb3\x44\x39\x60\xcb\x73\xc0\xdc\x40\x2a\xf5\x92\x8c\x9f\x99\x77\x1d\xb1\xb3\x51\xb0\x5b\x92\x41\xc7\x32\xde\x89\xf4\x8f\x42\xa8\x85\xc0\x1f\x7b\x6b\x0e\xa6\x1d\x85\x29\xde\x86\x5f\x58\x2b\xe5\x1e\xd6\xf6\x08\x2a\xe4\x56\x2f\xc9\x38\x5f\x28\xac\xfc\xbc\x31\xf9\x86\x3a\xad\xe4\x06\xe2\xa2\x03\xbe\xb2\x49\x7a\xb4\x41\xa3\xca\xcf\xef\x35\xa8\x7a\x60\xd6\x4c\x27\xba\x19\xdf\x85\xd7\x55\xf4\xc6\x58\x46\x14\xd1\xfe\x71\x92\x9c\x48\xe8\x1b\x27\x97\x42\xab\x7f\xae\x0d\xd4\x18\x08\x40\xcf\xc9\xbf\x3f\x81\x47\x45\x44\xc6\xb8\x28\x46\x9a\x3c\xc0\x11\xa3\x38\xe3\xd4\xb8\x70\x38\x6c\xb2\x18\x28\x09\xf2\xb3\xdc\x1f\xd7\x4b\xb6\xb2\x0c\x96\x08\xb1\xc9\x62\xc0\xcf\xc2\xe1\x1d\x63\xd9\x34\x9a\xbf\x98\x7c\xa0\x2e\xef\x95\x2b\xcd\x0f\xd6\xc4\x05\xe6\xc7\xe4\x7e\xee\xc3\x03\x4c\xce\xaa\xdf\x01\x4f\x0c\xc7\x98\x0c\xb0\x34\x47\x6c\x0c\xdc\x76\x4b\x32\x51\xc3\xcd\xf4\x07\xaf\x1f\xd0\x08\xe9\x28\x07\xcc\x14\x0e\xb8\x18\x74\x7d\x75\x06\x93\xb1\x2e\xaa\xdd\x3d\xc2\xf2\xe2\x03\x0c\xdf\x58\x87\x1a\x0c\x96\xf2\xf0\xfd\x6f\x3c\x27\xbb\x34\x0c\x38\x4b\xa6\xf5\x4c\x96\x6d\xcb\xc7\x80\xf3\xac\x83\x3a\xc6\xc3\xb3\xd4\x0d\xd4\xc4\x0b\xea\xf1\x5d\x94\x59\x40\xc0\x8b\xc2\x5e\xa8\xe3\x6d\x1c\x42\x5d\x4e\xa2\xb9\x98\xea\x98\x98\x86\x38\xf9\x98\x6b\x1a\xfe\x02\x50\x8b\x83\x0d\x96\x46\x76\x8c\xec\x40\x31\xa8\xac\x69\x9e\x07\x96\x5a\xca\xd7\x93\xa6\x83\x24\xfd\xf1\x79\xd0\x83\x45\x07\xe5\x3c\x40\x1c\xad\xcf\x3d\xc1\xe4\xec\x84\x75\x1e\xcc\x4c\x5a\xfd\x80\x9c\xbe\xbb\x8b\x8b\x5d\xfc\x95\xce\xee\x3c\xa8\x07\xfa\x81\xe0\x85\x74\x62\x00\xb0\xd0\x12\xec\xce\x40\x7d\x81\x8e\xee\xc9\xb0\x24\x4b\x61\xe7\xc7\x13\x7f\xbc\x14\xcf\xb0\x44\x05\xfd\xae\x5c\x85\xa8\x07\xe3\x9f\x3f\xdd\xf1\x35\x67\x58\x53\x1a\x7a\xf0\x72\x4a\xea\x22\x72\xef\xc4\x85\x4e\x32\x3a\x6b\x53\xcf\x15\x07\xae\xe3\x7f\xc2\x5f\xa5\xd8\x73\xeb\x64\xe0\x90\xf5\xd4\x27\x12\x58\xdb\xf5\xf9\x8c\xdc\x6e\xf5\xf0\x5d\xe2\x92\xa5\x87\x73\x71\x36\x9d\x83\x93\xe5\x44\x1c\x5a\x7b\xf2\x5a\xe7\x20\xd5\x33\xad\xa9\xfb\x8d\x8f\xc2\xdb\x7a\x75\x32\x96\x3c\xfd\x7c\x01\x76\x2a\x05\xe9\x99\xc1\x43\x24\xd7\x9d\x4c\xbe\xa8\xac\xda\xe3\x24\x27\x94\x30\x79\x66\x48\x4d\xd2\x98\x9e\x99\xa7\x79\xf8\x05\x60\x98\xc4\xd3\x93\x9c\xd1\x0a\xd0\x33\x13\xcd\x87\xc7\xc4\xe1\x94\x58\x75\x66\x52\x77\x0d\x51\x16\x4c\xea\x12\xce\xb5\xaa\x71\x3b\xce\x42\x2c\x17\x2f\x3d\xc9\xf8\x24\x4c\x9e\x85\xeb\x24\xfe\x7d\x16\xae\x93\x60\x62\x26\x68\xb3\xce\x13\x26\x02\x95\xac\x19\x27\xbc\x6f\xa3\xb4\x6d\x27\x8b\x8f\x8e\x9f\x17\x80\xd7\xa2\xb3\x27\x7c\x69\xed\xe9\x75\x42\xe1\x6f\x3f\xa0\xb3\x02\x44\xe9\x70\xcf\x0a\xf1\x40\xf7\x82\x13\x9e\xb5\x3f\xe7\x12\xf7\x3e\x3b\x5f\x9c\x08\xdd\xb0\xfb\xe5\x79\x92\x26\xea\x86\x7e\xb2\x86\x95\x15\x86\x27\x3c\x09\xcd\x7e\x4e\x5e\xe3\xac\x30\x3c\x4f\x72\x17\xd1\xbc\x13\x56\x7d\x1b\x9c\xcf\xc5\xe1\xbc\xf0\xd7\x5a\x78\xbf\xc1\x1b\x92\x4f\xf3\x45\xb6\x2a\xa8\xa8\xe3\xfd\xc1\x2f\x16\xb9\xb2\x2e\xef\x24\x13\xac\xfe\x0d\xde\x6e\x4d\xd9\x89\xea\x0f\xb6\x2a\x9f\x5b\xc3\xab\x31\xef\x45\x05\xd5\xc5\xcd\x24\x4c\x5a\x09\x7a\x1f\x3a\xba\xed\x44\xd6\x93\x68\xd5\xd8\x89\x38\xde\x9f\xbb\xe2\x79\x63\x7b\x25\x20\x9e\x70\x1e\x1c\x3f\x44\x86\x6c\x50\x02\xe1\xc9\x3a\x8e\x8e\x8d\x3c\x59\xc2\xca\xa1\x8a\x27\xea\x36\xfe\x5c\x2f\x4f\x2a\x6c\xad\x2e\x3b\x11\xdc\xeb\x08\x82\x13\xb1\xbd\xed\xa7\x07\xae\x5d\x32\x10\x37\x5e\xd0\x07\xef\x82\xd2\x0f\xb8\x61\xde\x8f\x77\x41\xa5\x2d\x45\x3e\x66\xdb\x1a\xce\xc5\xe7\xc4\x3a\xcf\x77\xed\xa0\x96\x1b\xc1\xbc\xc9\x14\x9f\x57\x43\x71\xeb\x93\xc1\xbd\xd6\x69\x9c\xc8\xd0\x9c\xc5\xff\xcf\x17\x34\x49\xbc\xf8\x7c\xb1\xd6\x6e\x9f\x58\x5a\x31\xd6\x13\x57\xc3\xd8\xff\x2a\x0b\xc3\x39\x49\x33\xa5\x66\x3a\x27\x8e\xbe\xb8\xf0\xc9\x8a\x14\xc9\x27\x99\xba\x5f\xeb\x64\x4e\xf2\x69\xb1\xe5\x93\xa9\x52\xac\x21\x39\x59\xb4\xd1\x1a\x92\x8b\xb1\xbf\x56\x80\x5c\xc7\x22\x61\x59\x0f\x22\x37\xdf\x9f\x24\x82\xe1\x37\xb0\x11\xe2\xc3\x17\xf3\x31\xfb\xca\x7d\xa1\xce\xc4\x61\x84\xba\xc0\xa9\x0f\xef\xf6\x45\x66\xec\xb8\xd0\x8b\xcc\xd6\x61\x9e\x57\x20\x96\x4a\x82\xb8\x02\x8f\x86\x98\xe9\xc5\x3b\xa3\xb8\xf1\x15\xd6\xa8\xee\x13\x84\xaa\xfb\x37\x91\x52\x22\xc6\xc5\x5a\x8d\x8e\x02\xbc\xc2\x32\x0d\x69\x6a\x01\x1b\x2e\xee\x7b\xb1\x78\x57\x12\xe9\xba\x22\x88\xa5\x38\xc6\xc5\x6b\xa6\xb3\xa4\x5d\xd0\xb1\x0e\x07\x40\x5e\x71\xa5\xf5\x11\xdc\xcc\x94\x6c\x76\x7b\x7d\xec\xb6\x24\x1d\xb6\x2b\x7d\x04\xdb\x4a\x92\x0b\xcc\xf6\xf8\x59\x2b\xba\x8f\x5a\xfb\x73\xa1\x2e\x83\x23\x03\xae\xc4\xa2\x30\x82\x81\xce\xa2\x8e\x3e\xbd\x70\xcd\xb4\xcf\xd2\x85\xc4\xc6\xf6\x1f\xbe\xc0\x5b\x9d\x21\xe4\x82\xb5\xde\x69\x78\xaf\x8f\xb5\x26\x87\xd5\x5f\xb9\x13\x44\x3f\x58\xcb\xe0\x11\x78\xf6\x8a\xbb\x9c\xe8\x52\x2b\xf9\xf1\xd6\xe6\xcb\xda\x85\x88\x5a\x15\x5a\x1b\x57\x59\xab\xa0\x0e\x3e\x4e\xd9\x7c\xeb\xb9\xc0\x28\xed\xb5\x7f\xf1\xc6\x68\x0f\x59\x96\xfa\x6f\xf6\x8a\xbe\x18\x76\x62\x55\x0f\x6a\xfd\x7f\x50\x6b\xd0\x4a\xa2\x24\x91\x81\xc5\xff\x7f\x54\x1b\x57\x5d\x33\xd7\x3c\xa8\x27\xb5\x6e\x06\xd5\xfd\xb3\x03\x70\x50\xbd\xbf\xdb\x60\x79\xb5\x75\xde\xfc\x80\x8b\xed\xdf\x05\x1f\xa8\xc3\x46\x1e\x21\x0e\x8f\xea\xfd\x5f\x0f\x82\x92\x25\x37\xed\x31\x89\x5a\xfc\x1f\x94\xc2\x88\x8e\x0d\x36\x4a\xc1\xa5\xf2\x47\x23\x83\xda\xfb\x5f\x17\x5a\x6e\x24\x94\x3b\x7e\x70\xa8\x13\x0b\x25\x48\x5c\x34\x51\xdb\x37\x0f\xe5\xfa\xc3\x8f\xd6\xe6\x62\x3d\x6f\x3b\x14\xad\xfa\xfc\x76\xa6\x41\x7d\xfe\x60\x33\x38\xea\xf3\xbb\x7a\xf7\x60\x79\xfe\xc3\x51\x9e\xd7\x00\xda\x18\xf1\x06\xb2\x2f\x34\x7f\x40\x4c\xf6\x6f\xf2\x1d\x09\x1f\xd7\xe0\x7e\x49\xb6\x40\x41\xff\x6f\x08\xbf\x41\xbc\xf1\x62\x9d\x24\x4d\xa6\x90\x27\x25\xee\xe4\x37\x80\x9b\x86\xf2\x5c\x4b\x23\x30\x3e\x21\x29\xa9\xe4\xda\xb8\x18\x7e\x61\x56\x73\xd1\x8c\xed\xb8\xcc\x0b\x66\xec\x9f\x95\x39\x59\xcf\x59\x50\x5e\x6b\x65\x34\x8f\x2b\x7c\x4b\x17\xfe\x2a\xfe\xf5\x62\x06\x5f\x07\x75\x5e\x70\x93\xb4\x3c\x7f\xb1\x68\xa8\x35\x86\x17\xe4\xa9\xe1\x48\xd3\x0b\xc1\x1c\x96\x6c\x2f\xd4\xca\x70\xd2\xfb\x8b\x26\x73\xab\xb6\x2e\x98\xcc\x87\xc3\x8f\x2e\x08\x58\xc7\xcf\x69\x83\x80\xe5\x3b\xc3\x45\xcf\xc9\x24\xe9\xe8\x82\x5e\x3c\x45\xff\x5e\x1b\x21\xac\xbd\x79\x3c\x0d\x15\xa3\x37\x7c\x3a\x11\xbc\x91\x7e\x86\x5c\x9b\xed\x2e\x41\xa7\x24\xd1\x5f\xb4\x87\x5b\xe1\x76\x21\x36\xe3\xe7\xf8\x22\x16\xc3\x1e\xa9\xd7\xb3\x60\xd2\x39\x79\xb8\x72\x9e\x05\xa4\x27\x2b\xc1\xaf\x87\xe4\xda\xb3\x40\x44\x6d\xb6\xd0\x77\x21\xb2\xe2\xe7\xc0\x43\x27\x90\x24\x40\x5f\x2f\xb0\xde\xc8\xf3\x12\x46\xcd\x1a\xc2\xd6\x8f\xba\xf4\x7a\x17\x90\x82\x01\x0e\x8f\x76\x1e\xbc\xa0\x77\x1f\xf6\xe8\xbf\x90\x11\xb8\x58\x79\x76\xbd\xdc\xce\x9f\x07\x93\x0f\xd4\xe7\xc4\x76\xba\x0b\x88\x53\x3f\x9b\x05\xe3\xf9\xcf\xee\x4e\x92\x63\x1f\x2b\x04\xf1\xda\xa9\xec\x9a\x0b\x6a\xcd\x7b\x52\x34\x31\x35\x66\xfa\x39\xab\x2a\x2f\x06\xf1\x26\x9f\x1b\xc6\xec\xda\x40\x70\x4d\x62\xa1\x90\xea\xfe\x64\xa8\xee\x2c\x78\x37\x2a\x75\x1d\x76\x52\xbc\xe1\x16\x69\x47\xca\x1b\x02\x93\x8d\xfe\x37\xbc\x1e\x93\x0e\xfb\x0d\x6d\xbd\xa1\xbe\x0f\xe0\x60\x76\x7f\x6b\x69\xdd\xc1\x8d\x0f\xba\x7e\x23\xf9\x72\xf3\x07\xa4\xf7\xd2\xa5\xdd\x9f\x78\x95\xcd\xcf\x6f\xd6\x31\xb5\x16\xf2\x86\x7a\x3f\x49\x70\xbc\xe1\x27\xe9\x55\xb9\xa1\xc1\xf7\xe6\xde\xa1\xe0\xb7\x07\x20\x09\x34\x88\x9f\xb0\xd5\x9c\xb0\xf6\x86\x39\xfc\x70\x44\xf6\x1d\x88\xd4\x5e\xa5\xa5\xfb\x90\xe2\xf3\x86\x8e\x3f\xc9\xbe\x74\x47\xd2\x24\x69\x99\x6e\x56\x4e\xb5\x4a\xfe\x8e\x5c\x78\x41\x0d\xe9\x2c\x65\xf7\x48\xe9\xac\xf9\x05\x22\x8c\xb7\x82\xb5\xbd\xac\xc7\xbc\x23\x2f\x15\x9e\x48\x24\xc2\x78\xa9\x60\x24\x2f\xc1\x2f\xbc\x18\xd4\x40\x4d\xd8\x8b\x04\x04\x4c\xe4\x49\xc2\xda\x4d\xe7\x4c\x07\xb7\xde\x94\xf7\xa4\xa7\xb8\x97\xbc\x27\xf6\x72\x2f\xe5\x8a\x11\x84\x89\xfa\xec\xcf\x79\xd3\x6a\x2e\xd9\xe7\x46\xe8\xb2\xf9\xd1\x9d\x58\x46\xc2\x43\x90\xef\x36\x03\x85\x49\x48\xfb\x72\x33\x5a\xe8\x07\xa7\x19\xb9\x6c\x5d\xe9\x0d\xb3\xfa\x61\x06\x75\x67\xca\x4a\x9e\x28\xec\xec\x49\x12\xdf\x9d\x1b\x7e\xff\x15\x43\xba\x21\x51\x5a\xab\x71\xb3\x7c\xab\x55\xaf\x37\x55\x2f\x52\x11\xdc\x85\x62\x94\xf7\x81\x46\x08\xc7\x2d\xdf\x85\x12\x4c\xf4\x27\x70\xf5\x97\x94\x7b\x33\x07\xcb\x51\xfc\x02\x96\xb1\xb8\x4b\x4a\xb5\xe2\x1e\x37\x0b\xbc\x3a\xe7\xe2\x5d\x88\xe5\x52\xcf\xdc\x65\xc1\xed\x41\x48\x15\xa5\xf1\xb9\xe1\xc1\x99\x0c\x66\xe5\x0d\x4d\xc4\xfa\xae\x6b\x66\x7e\x63\x51\x6f\xbf\xc1\x95\x15\xdc\x4b\x28\x15\x4f\xba\x59\xd1\xf5\xe7\x64\x34\x9e\x2d\x49\x62\x37\x2b\xb6\xda\x2f\xe8\x6e\xdc\x3d\x8d\xd1\xd6\xd1\xf1\x03\x50\x35\xcf\x94\x69\x8d\x1d\xe5\x7a\xd3\xc7\xd2\xfe\x27\xf7\x8b\x32\xee\xa2\xef\x37\xc3\xfb\x1c\x95\x7a\xbf\x9c\x87\x96\x06\x15\x97\xac\x76\xbe\x71\xa1\x4f\x12\x30\xef\x17\x74\x51\x82\xf0\x4d\x06\x23\xb1\xf7\x9e\x6b\x96\xea\x10\x55\xaa\x9d\xa3\xe3\x9e\xb8\x64\x48\x65\x78\x4f\x04\x48\x99\x3c\x30\x49\x84\x55\xe9\xf7\xe2\x27\x3a\x69\xcf\xd2\x7c\xeb\x28\x3e\x30\xe6\xaa\x14\xee\x78\xc8\x0c\xb4\xae\xcf\xd1\x90\x32\x30\xea\x37\x96\x51\x52\xf4\x73\xd0\x01\xa6\xf9\x05\x22\x9d\x24\xaf\x07\x8a\x6c\x4b\x24\x0f\x6d\xb7\x8e\x92\x7d\x48\xdc\xc5\x0d\x1e\x12\x6f\xf1\xc0\x27\x30\xff\xa3\x7f\x53\x32\x93\x5e\xe1\xc1\x35\xd8\x69\x96\x1f\xe4\xb2\x72\x04\xca\x13\x39\x27\xcd\x19\xb6\xd4\xac\x6b\xf4\x03\xff\x74\x97\xf6\x79\x68\x5b\xfd\xf9\x1e\xe6\xe8\xe8\xfe\xc9\xbf\xa4\x62\x78\x12\x85\x59\x09\x38\x4f\xe2\x4e\x8a\x4e\x3f\x89\x62\xbb\xae\xea\x4f\x62\x00\xb3\xbb\xe0\xa4\xa4\xc4\x7e\x12\xe5\xfa\xe4\x2f\x40\xf3\x9a\xbf\xe0\xac\xb5\x0a\x48\xde\x90\xc4\x33\x9f\xbc\xb6\x5a\x40\x65\xf2\x23\x09\x97\x0f\xaf\xc9\xde\x88\xcc\x4b\xd4\xf0\x03\x2c\x9c\x67\xc1\x64\x56\xa9\xb8\x07\x60\x43\xf3\x10\x3c\x54\x22\xbb\x0f\x4c\xad\xce\x40\xf9\xf0\xda\xac\x33\xf6\x14\xaa\x73\xbc\xb6\xa8\xc9\x93\x8c\xb0\x20\x59\xce\xc2\xf7\x2c\x7a\x24\xc2\xfa\x80\x1e\x39\x05\xc5\xf3\xd1\xa3\xd4\x7e\xda\xb9\x15\xa2\x68\xcf\xa2\x4f\xc5\x6f\x60\x19\x7e\x5e\x58\xcb\x20\x18\x2a\x2f\xac\xc5\x6f\x9c\xdc\x1b\x77\xc1\xcb\x83\xa6\x59\xef\xef\xe0\x7a\x19\x2a\xf6\xca\xbb\xdf\x28\xa3\x09\x68\x84\x4a\x26\x63\x74\xa3\x28\xe9\x65\x80\x43\x78\xfa\xbb\xe8\xd7\xa7\x51\x9f\x25\x49\xf5\x69\x34\x3e\x17\x8f\xf7\xf2\x81\x00\x66\xf2\x05\xab\xb0\x9f\x4e\x76\x24\xfd\xd5\xc3\x0c\xed\x36\x50\x3d\x48\x7c\x90\x7e\x5e\xe0\xce\xb9\x9d\xd7\x69\x1f\xfc\x4e\xd1\x55\xac\xe3\x61\x4d\x1b\x2b\xbd\x1f\xe6\x93\x92\xe0\xf0\x20\x5b\x54\xb2\x01\xe3\x19\xd4\x67\x88\xcf\x3e\xf4\xf9\x3e\x74\x7d\x79\x06\x17\x4a\x5d\x30\x77\xc1\xe1\xa5\x3f\xb1\xdb\x52\x89\x3d\x27\xc0\x96\x01\xe3\x59\xd5\x65\x0e\x3f\x00\x15\xf7\x08\xcc\x34\x60\x87\x83\xe7\x64\x05\xa5\xc3\x0f\xb0\xdb\x22\xe3\xcf\xb2\x78\x8b\xe1\x3d\x17\xb6\xdb\x08\x06\x03\xf7\xf1\xf3\x01\xb9\x9b\x67\x71\xe1\x9c\x0d\xbf\xc0\x69\x7b\x16\xd7\x37\x6d\xe7\x8c\x7b\x90\x89\x20\x79\x65\xaf\x05\xb4\x41\x20\xe7\xf7\xbc\x99\x7a\xe0\x30\x01\xba\x0f\x7e\xa2\x37\x6e\x9c\x5d\x23\x00\x4a\x3f\x9a\xdd\x3d\xf7\x3a\x58\x7e\x81\x4b\xad\x31\x71\xfd\xcd\xde\xcd\x75\xfd\x15\x4f\x7e\xee\x35\x2d\x2d\xcc\x2a\x27\x7d\xb8\xcb\x89\x2e\xb4\x30\x4f\xc2\x6f\x7d\xf0\x50\xf6\x14\x4f\x7e\xbe\xeb\x6c\x73\x6e\xed\xe7\x41\xcd\x2f\xef\xee\x43\x8a\x65\x20\x1f\xee\xa6\xd4\x27\x0f\x13\x81\x9a\x6d\x3f\xcb\x38\xe0\x85\x78\x79\x5a\xbd\xda\x2f\x45\x62\x5d\x1d\x9f\x97\x33\xf7\x17\x8d\x6b\xeb\x2f\xa8\x1d\xd6\x8d\xe5\x59\xf7\x55\x09\x07\x0f\x9c\xbd\xf3\xe1\x2f\x16\x9c\x7e\x81\x4b\xa3\x99\xb3\x3c\xa3\x35\x90\xcf\x44\x54\x95\x89\x35\x32\x7d\x1e\xbe\x01\x3f\xf4\xf6\x76\x3e\xe0\x07\x96\xf8\x2c\x0d\xe4\x03\x71\xc2\x1e\x43\x0f\x34\xfe\x8e\x82\x7a\x26\x60\xf4\xd2\xcd\x05\xe3\x5e\x87\x97\xbe\x64\x8e\x09\x7f\x8f\xb5\x10\x43\x0f\x4e\xbe\x71\xe8\xc1\xc3\x07\x51\x0f\x56\xa7\x7b\xa9\x5e\x66\xdb\xb4\x4c\xf2\xa2\xb0\x73\xb2\x6e\xe9\x85\x61\xbb\x49\xbf\xf5\x52\xb3\xee\x00\xe9\x97\x79\x18\x2c\xaa\xbd\xdf\x6d\xaf\x65\x03\x8e\x4c\x39\xd9\x63\x36\xda\x3d\xd5\x23\x02\x78\x5c\xf3\xec\x6d\x8b\x43\xf8\x85\x8b\x43\xba\x87\x4f\x18\x74\x46\xc5\xb7\x71\xed\xfc\xc1\x2a\xef\xb7\x7f\xf7\x95\x82\x40\x2f\x20\x44\xc7\x8e\xee\x2f\xa2\xca\x87\x83\x8f\x5f\x68\x3c\x93\xf5\x53\x6f\xc7\x76\x7a\x59\xa0\x8c\xcc\x22\xa6\xa8\xf7\xdf\xb2\x78\x31\xca\xfd\x67\xcb\xd8\x28\xef\xdf\xb2\x08\xfa\x4b\x7f\xa4\x23\xfe\x4d\x09\xf2\xf1\x0e\x46\x2a\x7b\xb4\xce\xaf\xfd\x60\x2d\x91\xe1\xc3\x92\x88\x00\xbd\x4b\xb3\x29\x91\xe8\x1d\xd0\x55\x7b\x1b\xcf\x85\xc0\xda\x86\x93\x10\xfb\xf7\x27\x30\x27\xf1\xe5\x97\xd5\x33\x2c\xee\xbe\xe0\x06\x39\xfa\x37\xe8\xaa\xce\xe9\x7b\x92\x93\x7a\x5b\x4e\xc2\xa8\x35\x5e\xcc\xc0\x40\x9f\x0c\x78\x90\xac\xf0\x2e\xcd\xa7\xa4\x76\x94\xfe\xff\x3e\x11\x94\x50\x66\x3a\x79\xd8\x7b\xd1\xc1\x52\x63\x82\x1b\xe4\xe8\xdf\x20\x1e\xd9\xbf\x51\x95\xd1\x87\xec\x63\x06\xa9\x19\xc6\x8f\x19\xe4\xf6\x03\x00\x8f\x58\xf0\x03\x38\xa1\x36\x03\x34\xbf\x0e\x24\x3e\xbc\x37\xc3\x44\xbc\x75\x37\x52\xf2\xfe\xfc\x5e\x98\xa1\x75\xbc\xd7\x66\x0b\x46\xe4\x0a\xfc\x49\xd2\xfd\x22\xeb\x8c\x1d\x5d\x5f\x84\xfa\x54\xc9\x02\xef\x43\xfd\xb0\x3a\x40\xe5\x32\x5f\x97\x5f\xe8\x35\x73\xf2\x6f\xca\x0e\x9e\xf5\xd3\xff\xf9\x53\x6a\xf6\x0b\xdf\x6d\xcd\xf9\xb4\xde\xa5\xd6\xd4\x1c\x1e\x02\xa4\x29\xc0\x15\xca\xf9\x33\xde\x07\x24\x22\x19\xa0\xc9\x55\x14\xc4\x1f\x9f\x68\x59\x3a\xa7\xf7\xa5\x0a\x42\xe4\xf2\x45\xfe\x98\xec\x7d\x58\x5a\x4d\x5d\x54\x5e\xa4\x09\xcc\x3f\x1f\x50\x6c\xab\xee\x12\x34\xdf\x8b\x34\x17\x6e\xf9\x01\xaa\x96\x5a\x14\x7c\x27\xb5\x81\xd2\x94\xbc\x30\x0a\xe7\x9f\xdf\x5c\xb7\xe4\x07\xdc\x3a\xb1\xa6\x17\x91\xdb\x59\x2c\xf5\x9d\x6b\xe2\xfb\x8b\xb9\xa8\xbc\xa8\xe5\x64\x64\xb6\x43\xf4\xe7\x32\xc1\x66\xbf\xf1\xa2\x1c\x49\xd4\x6f\x6a\x35\xb5\x5b\x33\x50\x25\xa0\x4b\xd9\x0c\x6b\x66\x7e\x83\xf7\x1d\x5d\x03\x27\xfc\x9d\x9c\xbb\x70\x86\xb5\xfe\x82\x02\x17\xcd\x2c\xb4\x9e\x8b\x6f\x24\xbf\xc0\x0d\xd1\x0d\x09\xf5\xff\xbf\x07\xfe\x84\x02\xca\xcf\x20\x94\xbd\xb3\x1f\x4c\xbe\xb1\x37\x75\x22\xae\xc6\x8e\x82\x13\x7a\xc4\x2c\x51\x7c\xc6\xb5\x43\xfe\x80\x8a\x20\x5d\xe4\x50\x9f\xbf\x65\xa1\x3e\x8a\xef\x7f\x50\xa9\x8b\xc4\x99\xea\xc2\x82\x5a\xfa\xe1\xe7\x44\xa3\x76\xfe\xf7\x40\x53\x65\xf1\x7c\x67\x5d\x40\xf1\xfc\x94\x7f\xbe\x40\x2d\x23\x63\xef\x4c\x8b\x6a\x08\x4e\x5c\x50\x73\x71\x97\x9c\xb9\x90\x71\x2e\x2d\x9d\x78\x1e\xaa\xe3\x7f\x0f\xd4\x05\xdc\x83\x87\x73\x3b\xa0\x3e\x7e\x4c\x3f\x78\x90\x41\x90\x8b\xbb\xb8\xfe\xf9\x53\xec\xc0\xca\xf2\xf7\xad\xfd\x55\x4c\xd2\x64\x20\x8c\xd7\x0d\x4a\x3a\x57\x09\x9c\x85\x78\xab\x1b\x33\x4a\xe5\x37\x27\x3a\x5b\x95\xf2\x9d\xcb\x61\x16\xa2\x90\x71\xac\xac\x95\xf7\x27\x9d\x9f\x68\x55\x0a\x45\x05\xa3\x21\x95\x72\x4e\x8d\x30\x0b\x79\x8a\x71\xaa\x42\x92\xf3\x0b\x15\x52\xb0\x24\xd4\x59\xc9\xd6\xba\x1f\x0c\x76\x29\xb0\xe0\x25\x95\x8d\x84\x48\xee\x93\xab\xdb\x17\x0c\x7e\x61\xc1\xa0\xb5\xa9\x3c\xa1\xc6\x5b\x16\x8a\x75\xf2\x82\xd9\xb8\xdd\xba\x8a\x4f\xdc\x72\xb3\xa8\xd7\x6c\x64\x7c\x46\xec\x46\x7c\x10\xe7\x9b\xd0\xea\x65\x1f\x7a\x64\x00\xca\xd5\x43\xf0\xf8\x15\xbf\xf0\xf0\x81\xc6\xec\xc8\xf0\xe3\x89\x75\x22\xa5\x8f\xc6\x20\x61\x11\xdd\x9f\x83\x42\x84\x74\x16\x93\x62\x8f\xe9\xca\x12\x7b\x7c\xfe\x58\x48\xd5\xfe\xc7\x13\x71\xc6\x36\x78\xcc\x4f\x90\x29\x76\xff\x9a\x9f\x20\xf3\xad\x9d\x7a\x40\xc6\xbd\x6c\xb2\x72\x92\xb8\xf9\x2c\x31\xee\xd8\x7a\x91\x79\x72\xed\x7c\x10\x4e\xde\x39\xfc\x09\x62\x85\x7e\xb2\x28\x4c\xd6\xc5\x32\x8b\x9d\x4c\x47\x67\xe1\x65\xc2\xc4\x59\xec\x75\x86\x82\xfd\x21\xfb\x7a\xcd\x0a\xfd\xd9\x51\xc0\x13\x71\x3a\x87\x22\xc5\xcf\x86\xbb\x6b\x51\xba\x88\xf3\xa2\xa6\x5b\xc9\x1a\x66\x87\xe6\xb5\xe4\x8d\xce\xb3\x23\x1c\xbd\xe4\x0d\xe9\x44\x7c\x48\x48\x4a\x2e\x3f\x07\xe4\xf3\xa4\x6b\xfd\x44\x04\xc6\x07\x58\xde\x0f\x22\x5d\xbe\xb6\x2c\x38\x47\xa4\x73\xfc\xbe\x1a\xce\x01\xb3\x44\xd2\x4d\x7f\xd2\xe1\x3e\xc9\xc2\x3b\x07\x30\x38\x49\x27\x3f\x07\x52\x39\x65\x29\x41\x26\x3c\xee\x9b\x52\x87\xce\x81\x08\xf3\xac\xab\xe0\x1c\xd8\xa7\xac\x1b\xec\x84\x5f\x79\x53\xce\xd5\x09\x2f\xf0\xe0\xa2\x71\x13\x2e\xd7\xc1\xc5\x69\xe6\x80\x96\x58\x55\x3f\x26\x7d\x93\x93\xdc\x3e\x26\x3c\x83\xbb\x6e\x59\x13\x9e\xc1\x5d\x62\xfb\x84\x67\x70\x53\xf1\x92\x49\xc7\xe0\x2c\x37\xa1\x09\xc7\xe0\x9e\xbb\x3f\x48\xdf\x6f\x4d\xe2\xfc\x18\x65\xcf\x5b\xdb\x30\xcf\xc0\x10\xdb\xc3\x2f\xd4\x7f\xfe\xf4\xa2\xfd\x3a\x3f\x3e\xd9\x95\x22\x68\x9e\x1f\x13\xec\x65\x1f\xa9\x79\x7e\xf7\xad\x5e\xba\xbf\x7f\xbe\xdf\x3f\x00\xbd\xf8\xed\x01\x91\xea\xc2\x33\x04\xcb\x0c\xca\xbc\x38\x4f\x56\x33\x08\xfe\x8d\x14\x98\x9b\xa6\x4e\x78\x1d\xf7\x9a\xdc\x01\x6b\xa5\x56\x3f\x60\xd5\x52\x77\x80\x6c\xd8\x49\x6b\xc6\x6a\xa1\xfb\x3e\x38\xe1\x93\xdc\xab\x67\x18\x51\x2d\xc4\x33\x8a\x74\x20\x34\x00\x0f\xa4\xd5\x8d\x06\xf0\x59\x0e\xe9\xa3\x6c\xff\x7b\xbe\x34\xe9\xd1\x9c\x92\xc1\x85\x3e\x39\x49\x09\x35\xe1\xe2\xfc\x3d\xf0\x00\x90\xc0\x65\x74\x9d\xf0\x79\x0e\x49\xbc\x75\xc2\xe7\xb9\xa9\xda\xd5\x84\xcb\xf3\x37\x88\xe6\x0c\x9f\x67\x87\x6e\xcc\x13\x42\x42\x12\x25\x9c\x27\x84\x84\x94\x3c\x6d\x18\xea\x92\xb4\x14\xf3\xa4\x2b\x97\x32\xac\xcd\x33\xf1\xe4\x46\x8f\xf2\xf2\x81\xe1\x9a\xec\x43\xc3\xe6\xb5\xdb\x5a\xcc\xcc\xe5\x30\xc2\x66\x2e\x47\x12\x60\x99\xcb\x51\xfc\x09\x97\xa3\x69\x7d\x32\x97\x23\x0a\x30\xe8\xb6\x55\x70\x72\xc2\xdd\xfa\xeb\xd3\x5d\x70\x39\xb2\xbf\xa0\xcc\x34\x04\x39\x64\x91\xf6\xf3\x05\x57\xa3\x69\x97\x32\xcf\xb6\x0f\x4a\xe6\x6a\x64\x83\xc5\xd5\x48\x7e\xc0\xd5\x18\x9a\x6b\x21\xe6\x14\x75\x5a\xb8\x1a\xde\xc8\xc2\xd5\x88\xea\xa3\x70\x35\x8c\xad\x85\xab\x91\xb5\xc4\x65\x21\x87\x1f\x90\x38\x16\x41\x5a\xb8\x1c\x3e\x93\xf4\xf4\xfe\x41\x97\x42\xec\x68\x7e\x40\xec\x28\xee\x14\x76\xff\xf0\xd3\x07\xf3\xd0\x79\x05\xcb\xda\x7b\xad\x31\x0b\xe8\xcb\xa9\x62\x9e\x95\xb3\x35\x35\xab\x6b\xb6\x7e\x83\xb3\x15\xb3\x80\xc7\x78\xf0\x2d\x7f\xc2\x65\xfc\x1b\x45\xe8\x02\xb7\xb8\x22\xd5\xe5\x3c\x2b\x67\x1b\xfd\x09\x37\xbf\xf9\x13\xce\xd6\x88\x0d\x09\xaa\x89\x35\xc0\xcf\x3c\xd8\x47\x6a\x9e\x08\x30\xce\xd1\x58\x0b\x99\x2a\x29\x63\xcf\x84\xb7\xeb\xf0\x9a\xbf\x28\xca\x27\xb7\xf1\x09\xb5\x55\x53\xf4\xd6\x7c\x61\x9a\x97\xac\x3b\xdf\x04\xde\x22\x32\x3a\x8f\xf0\xcf\x1f\xdd\x98\x27\xae\x61\x5d\xba\xd3\x89\x5b\x98\x94\x60\x73\xae\xec\x58\xfa\xc9\x8c\x2e\xfa\xc9\xc4\x0e\xfa\xd9\xd0\x97\x3f\x46\xf0\x73\xd7\x4f\x54\xd8\x72\x5f\xf7\x3f\x7f\x4c\x4c\xe7\x81\xfa\xfc\x49\x3f\x3f\x11\x3d\xb9\xeb\xf9\xcf\x1f\x15\x76\x9a\x33\xb0\x38\x97\x7e\xe2\x5b\xbd\x1c\x58\x02\x46\x3f\xbf\x6f\xf7\x95\x64\xe2\x6a\xa5\x92\xda\x13\x57\x18\x05\xb6\x4e\xdc\x60\x4c\xd2\x71\x7f\x91\x6d\x75\xe2\xf6\xa2\x8a\x8a\x13\x97\x17\x05\xa0\xce\xf9\xd1\x24\x69\x91\xe7\x2c\x5f\xcf\x42\xb0\x59\xd0\xb3\x80\xfc\xf0\x5e\x99\xf9\x27\xc4\x77\x25\x51\x9a\x13\xce\x4f\x3a\xbd\xf3\x4d\x5f\xcf\x02\xe3\xcd\x58\x68\xbf\x8d\x6d\xf1\xdb\xc8\x94\xcb\xc5\x0a\x13\x45\xc2\xfb\xce\x2f\x1b\x66\xc4\xcd\xfb\xd8\xf6\xde\x30\x59\x23\x31\x7c\x57\x85\xff\x2d\xdf\x09\x13\xf9\x71\x42\xdc\x81\x52\xf1\x38\x60\xcc\x4d\x3b\x31\x64\x3c\x0e\xa4\xa2\x54\xbc\xd7\xf7\x00\x12\xd0\x56\xda\xc5\x83\xf5\xfe\xdb\x36\x4a\x7f\x0f\xe8\xab\x99\xf5\x09\xa2\xdc\xf3\xf6\xb3\x8c\x07\x0a\xa9\x7f\xa2\x6b\x5b\x0f\x50\xcb\x39\x1e\x3b\x47\x71\x3c\x50\x16\x37\xa4\xae\x37\x62\xa0\x2d\xb3\xec\x3e\x50\x3b\x28\xc8\x19\x3e\x1e\x2c\xd4\xd2\x76\x62\x85\x78\xa4\xce\x07\x5d\x9f\x4c\xce\x65\xec\x51\x56\xb6\xfa\xed\x5f\x1d\x8f\x72\xac\x37\xf6\x27\x05\xbc\x2a\xef\xd4\x0a\xf1\x40\x56\xe9\x6f\x15\xf6\x6c\x0b\x83\x13\x92\xd6\xa3\x6e\xe9\x6b\xaf\x69\xa5\xf5\x79\x27\xd3\x8c\x47\x7d\xe9\x7b\xd4\xf7\x02\x21\xd3\x57\x68\x3b\x30\x2b\x1e\x8d\x6e\x81\xfb\x6a\x15\x0f\x26\x35\x91\x1f\x60\x3c\x3a\x38\xb3\x5c\x0b\xe3\xd1\x61\x21\x92\x0f\x5d\x3c\x06\xcd\xf0\x3b\x33\x45\x3c\x06\x8c\x82\xf2\x5f\x8b\xc7\x80\xc9\x2f\x07\xed\x0b\xc2\x47\x83\x3c\xde\xe2\xb1\x28\xeb\x2e\xdb\x16\x8f\x93\x99\x9f\x37\x55\x8c\x07\x5c\xd4\x83\x9c\xc7\xe2\x71\x21\xa3\x52\xda\x25\x25\xe2\x01\xcf\xcc\x90\x76\xac\x45\x3c\x60\x75\x0e\x72\xa3\x88\xc7\xb3\x76\x7f\xec\x3e\x1e\x16\xe4\xd8\xdc\x2a\x1e\x2f\xe0\x90\xed\xf1\x7b\xc0\x61\xb5\x0d\x2f\xd3\x49\x6d\x56\x1c\x8f\x59\xb8\xa6\x1b\x1d\x02\xab\xb0\x4a\xa5\x1f\x43\xa4\xa4\xb2\x43\xf5\x63\x88\x60\x92\x52\xea\xc7\x10\x99\xc6\x6b\x4b\xda\xdf\x83\x8b\x6f\xb4\xfd\x00\xce\x93\x52\x07\xc7\x80\x12\x70\x41\x0a\xe4\x18\x22\xfc\xf7\xa4\xa7\x8c\x21\xc1\xbb\xa1\xee\x2c\xf7\x31\xb0\x06\x95\x14\x8b\x31\xa0\xa4\x54\x90\xe6\x31\x86\x74\xf3\x41\xde\xa3\xb0\x58\x40\xcb\xcb\x70\xf3\x3d\x78\x59\xa3\x6d\x43\x5a\x16\x60\x6d\xbf\x51\x33\x1f\xec\x15\x0b\x48\x34\xfa\x49\x6e\x7b\x14\x24\x47\x0c\x2d\x8f\xfd\x09\x72\xe4\x7d\x0f\xf6\x02\x75\xdc\x1f\xeb\xce\x82\x1c\x03\x83\x68\x5b\x89\x7b\x72\x88\x20\x6c\x5d\xbf\x6f\x26\x0e\x29\x9b\x9e\x84\x87\xd1\x05\x65\x53\x9c\xb0\xb0\xa1\xe4\xfd\x09\xed\xf7\xad\xe4\xbd\x1c\x0f\x4c\x2f\x6d\xa7\xeb\x8c\xe1\x19\x7c\xa3\xf8\xc1\xcd\x07\x1b\x72\x1a\x81\xdb\xce\x07\x1d\xc3\x03\x24\x6c\x3b\x9c\x3e\x06\xda\xf4\xda\xce\xee\x11\xc3\xcb\xfa\x1c\x45\x4b\xfa\x26\xae\x8f\x00\x03\x2b\x0a\xad\x34\x3d\x68\x9c\xdc\x26\x41\x61\xc2\x79\xb3\x95\x45\x8d\x63\x0c\xc4\x97\x7d\xd1\x89\x11\x65\x74\xc3\x10\x2d\x88\x89\x9d\x56\x3f\x40\x12\x91\x56\x37\x3d\x89\x95\x39\x28\xb7\xc2\x36\xc6\x0a\xb7\xd3\x56\xf7\x29\x8d\xc8\xa5\x12\xda\x2e\xee\x1b\x23\x33\x93\x28\x7b\x5b\x8c\x03\x76\xf6\xb6\xeb\x59\xc6\xc8\x68\xb3\xb6\x59\x58\x8c\x57\x66\x74\xf3\x46\x8f\x48\x27\x72\xf9\x59\xc4\x48\x07\x49\x59\x29\x62\x84\x77\xe3\xf7\x60\x6d\x43\x5c\xc7\xb6\x85\xdd\xc7\xcb\xb0\x8d\xad\xd8\x8a\x71\x22\xeb\xe8\xb1\xf3\x5f\xc6\xc4\xe2\xdf\x6d\xd7\x1b\x8d\x29\x10\xa3\x5a\xfe\x8b\x7b\xd3\xf7\x36\xf7\x68\xd3\x85\x14\x26\x33\x2d\xef\xc5\x4a\x09\x8e\x64\x6d\x87\x82\xc4\xc4\x12\x45\x79\x67\x76\x8c\x29\x31\xbb\xfd\x8e\xc3\xfe\x1e\xac\x4f\xb2\x1e\x10\xa6\xaa\x4e\x9f\x95\xcf\xd9\x7d\x9c\x7c\x10\xf5\x60\xf2\x81\xfa\x20\x5d\xd8\xb5\xef\x62\x4a\x93\xaa\x97\xb8\x3f\x59\xcc\xa8\x75\x3f\xb8\xf8\x60\xf7\xc1\xd2\x29\xad\xed\x2d\x49\x99\x8e\x76\x4d\xd3\xcf\x1c\x65\x97\x1d\x89\xa9\x30\x3a\x73\x1b\x3d\x62\x42\x6d\x88\xd0\x76\x3a\xf9\x98\x0a\x97\x70\x87\x67\xc7\xc4\x5c\xef\xad\x6b\x09\x2b\x6e\x85\x6d\xa7\x92\xfa\x1e\xd0\xe5\x74\xe8\x0d\xd2\x96\xed\xc7\x11\x53\x43\x3c\x55\xeb\x5a\x31\x24\x21\x0d\x6d\x97\xe4\x8a\xa9\x81\xb1\xd6\x21\x48\x99\xf8\xb1\xee\x40\xe2\xef\xc1\xca\xa1\xb8\x21\x6d\xab\x1e\xf8\x3e\x7f\x09\xd9\xcd\x3e\xe1\x41\xc3\x32\xd7\x58\xd7\xaa\x77\xa2\xe8\x4e\x74\x14\x13\xb2\x31\x7d\x0f\x76\x1f\xe7\xe0\x6c\xb7\x08\x90\x6e\xe8\xa6\xda\xce\x4d\x12\xd3\x0d\x1d\x59\x8e\x9a\xed\x8d\x9d\x4b\x3b\x66\x3e\xa6\x07\x05\xbf\xdb\x0e\x20\xfd\x1e\x20\x68\x7e\x6b\x9e\x62\x7a\x32\xdf\xd0\x02\x3d\x44\xa9\x9d\xb6\x27\xa6\x87\xb2\xc9\xd0\x41\x78\x48\x4b\x86\xb6\x61\xc2\x85\xa7\x6d\x77\xc5\x98\x8f\xcc\xc3\xb4\x11\x37\x1f\x74\x96\xd9\xee\x35\x31\x07\x68\x92\x14\xe0\x1d\x73\x60\xe5\xd6\x1d\x24\x13\x73\xc0\x5c\xfa\xb6\x9c\xc7\x8c\xfa\xa1\xdf\x25\x66\x41\x9a\x13\x94\x88\x7d\x7b\x52\xc7\xcc\x0a\x5e\x62\x1b\xb9\xb2\xcc\xe3\x56\xea\xc6\xcc\x34\xdb\x7d\x2b\x3b\x63\x66\x16\x3a\x55\x7e\x8f\xb9\x33\xd5\xe3\xae\x72\x11\x33\xaf\xc9\x7d\x1b\xcb\x63\xbe\x58\x71\x7a\x5b\x27\x62\xbe\x58\xfc\x66\x1b\x0a\x62\xa6\x87\x77\x17\x6d\xc9\x0f\x72\xa8\xa5\xed\xc5\x15\xf3\x7b\x2c\xa3\x48\xd7\x03\x4c\x36\xf8\x01\x84\xe5\xbe\xf3\x43\xc6\xfc\x32\x37\x68\xd8\x38\x97\x5f\x96\xc8\x0b\x02\x7d\x2e\x73\xda\x66\x24\xe5\x60\x39\xee\x9d\x21\x2c\x96\x83\xb9\xb3\x76\xda\xb4\x58\x02\xfc\xc4\xfb\x4e\x01\x16\x4b\x40\x16\xf1\xbe\xb3\x35\xc6\x12\x6e\x4e\x7f\xe8\x13\x16\x8e\xdd\x99\x13\x63\x41\xb5\xf5\xef\xc1\xee\x23\x32\x36\x7c\x27\x30\x88\x85\x25\xaa\xba\x84\xec\x92\x59\x56\x66\xdf\x2c\x62\xc9\xcc\x0e\xb1\xdd\x72\x63\x29\xc7\x7a\x63\x7f\x82\xaa\x2c\xa1\x6f\xe7\x8c\x58\x98\x0d\x3f\x4b\x2e\x2f\x4c\x7d\xda\x84\x2f\xa5\x71\x2e\xbb\xa4\x58\x2c\x0d\x62\x45\xdf\xd1\xfb\xb1\x30\xad\xd6\x2e\x07\x1b\xcb\xa0\x30\xb3\x8d\x19\xdf\x03\x6a\x94\xb7\xf4\x5b\x56\xde\x8b\x7d\x2f\x8e\x05\xf1\xbe\x21\xed\xb0\xf5\x58\x4e\x66\x6e\xda\x29\x59\xbf\x07\xfc\x64\xe9\x26\x62\x39\x99\xf9\x70\xa7\x64\x8d\x85\x11\x44\x5d\xc7\xb8\xdc\x20\xaf\x7d\x07\x11\xc6\x72\x83\xe0\xf4\xad\x51\x8e\x65\x49\x11\xdb\x32\x1a\xcb\xcb\x35\x4e\x9a\xfd\x4b\x34\x95\x58\x5e\x5e\x08\x2f\x3d\xfd\x8d\x87\xc4\xf7\x76\xe1\xdb\x7b\x6d\xde\x7b\x7d\xbe\xe7\xf5\x32\x13\xe5\x56\xf5\xc4\xf2\xbe\xeb\xc1\x1e\x71\x32\x5b\xf3\xf6\xa5\x8f\x05\x77\xd3\xef\xc1\x9e\xd7\xe4\x72\x6e\x7d\x49\x2c\x13\xb2\x4f\xdf\xaa\xc3\x58\x26\x0b\xc5\x6d\x2d\x55\xac\xc7\xc1\x3e\x36\x35\xaa\x07\x0c\xa3\x7d\xeb\xdb\x62\x3d\x98\xab\x66\xfb\xf6\xc5\x7a\xa0\x10\x71\xdf\xae\x18\xb1\x46\xa0\x7d\xda\x39\x98\x63\x8d\x95\x37\xc7\x7d\x1f\xab\xb1\xb1\x8f\xae\x4f\x58\x6b\x69\xbb\x45\xc6\x9a\xf2\x2a\x1d\xbc\xfb\x60\x7d\xba\xbe\x55\x72\xb1\xa2\x80\x43\xe8\xdb\x8d\x26\xd6\xca\xcb\xe6\xf6\x27\x8a\x15\xf9\xae\x43\xdf\xc9\x17\x63\xed\x4c\xbf\x9e\x35\xb9\x95\xb3\x6b\x1b\xb8\x63\x1d\xd4\xb8\x55\x3f\x20\xf5\xc9\x65\xf7\x01\xbb\x40\xc8\x3b\x27\x76\xac\x63\x75\xaa\x05\x3a\x79\x62\xb3\x16\x68\xe9\xd3\xb6\x2d\x31\xd6\x13\xd5\x36\xfb\xce\x95\x1c\xeb\xca\x09\xb0\x8d\x72\xb1\x9e\xe4\x67\x87\xde\x60\xf4\x47\xcb\x1b\xab\xeb\xcd\x62\xa4\xbb\xf4\x5d\xac\x37\x2d\x4d\xd1\x0f\x08\xd8\x8e\x07\x89\xf5\x25\x2f\x3a\xb4\x0d\x0b\x0b\xcb\xbe\xb2\x54\x1a\xc4\xba\x64\xf4\x3a\x11\xb6\xd4\x77\xd1\xb6\xd8\x8e\xc9\x2a\x80\xfb\xa8\xb4\xc0\x94\x99\xdb\x22\x10\x5b\x80\xd0\xd0\x77\x46\xc0\xd8\x28\x22\xf5\x5d\x55\xf9\x7b\x70\xf1\xc1\xb1\x1f\x90\x17\xd5\x4d\x9f\x1a\xea\x02\x86\x5e\xf7\xf1\xf8\x2e\x40\x7c\xb0\x3b\xad\xcc\x9b\x59\x37\x26\xb7\x0a\xd7\xb0\xbe\x95\x4d\xb1\xb1\xd6\x4d\xaf\x5b\xdc\x6b\x2c\xce\xa1\x6a\x03\xb1\x55\x54\xcf\xea\xdb\x4f\x24\xb6\x46\x36\xb1\x75\x41\xb1\xad\x84\xe8\xbb\x50\x7b\x6c\xc8\xbc\xfd\x3d\x58\x8b\xdc\x46\xe7\xb0\x5b\xfe\x6b\xc8\x60\xf4\x09\xba\x7b\x81\xce\x4e\x48\xb7\x30\xd7\x2e\x16\x7e\xd8\x8a\xaf\xef\x01\x86\xdd\x19\xc0\x62\x63\xb0\xa0\x6c\x0c\xb1\xdd\x89\xa1\xda\x5a\x8f\x1b\x52\xbc\x62\x75\x63\x83\x1b\x71\x3c\x76\x79\xb3\xd8\x1e\xa4\x33\x96\x27\x5c\x6c\x6f\x58\x0f\xf6\x27\x93\xd7\xf3\xad\x64\x8c\x9d\x0a\x9e\xbe\x93\x86\xc4\x7e\xa0\xd4\x68\x6f\x7b\x2e\x1f\xd9\xc5\x12\xee\x35\xed\x91\x25\x51\x76\x8d\xd6\xd8\x23\x93\xd4\xb5\x7d\x23\xe9\xa8\x03\x1a\x94\x07\x3c\xf6\x4c\x0a\xb3\x4b\xc6\xc7\xce\x3a\x7f\xbd\xed\x2b\x4a\x2f\xac\xed\x2b\x21\xbb\xd7\x87\xeb\xb1\x97\xb0\xa3\x82\xc0\xf7\x60\x7f\xb2\x92\x8d\xed\x5c\xf7\xdf\x03\xd6\x87\xdb\x48\xd7\xc7\x2a\x18\x1c\xf4\x49\x6f\xcc\xe7\x99\xf4\x80\xf5\xb4\x36\x8e\xf5\x75\x90\x25\x0f\xf7\x73\xd7\xb5\xd6\x1b\x99\x35\x3c\x36\x0f\xec\xe7\xaa\x19\xac\xe9\x9f\x83\x9f\x6c\x62\xd0\x4f\x72\xfc\x9d\x2e\x3b\xf6\x93\xc7\x54\x12\x73\x5f\x1c\xad\x6f\xd9\xa4\x33\xb8\xb4\x4b\xb8\xed\x8c\x5f\xec\x92\x87\x3b\x8e\x7a\xdb\xda\xd1\xd8\x1f\xee\xf5\x4e\x3f\x19\xfb\xb3\xe0\xda\xa2\x49\x7f\x56\x85\xd0\x4d\x81\xfb\x1b\xd6\x72\xfc\x45\x5e\xbd\xef\x6d\x42\xb0\xe9\x75\x7f\x99\xa7\x7f\x6b\xa8\x63\x7f\x3b\x27\xbe\xb9\x6e\x7f\x5f\x8e\x38\x34\x22\x12\x0a\xef\x6a\xf0\xb1\xcf\x55\x38\x73\x0b\x36\x7d\x11\x9f\x9d\xc3\x2a\x8e\x48\x9c\xde\xd9\x7e\xe2\x88\xd7\x4a\xee\xbf\xd6\x7f\xe4\xc1\x37\xb6\xce\x65\x94\x9b\x09\x5b\xf6\x96\xad\x32\x3f\x69\x57\xcc\x8e\x2c\x77\x11\xfa\xae\xfb\x13\x59\x68\x21\xf4\x1d\x60\x1e\x47\x2b\x7c\x63\x53\x67\x26\xbd\x0c\x5d\x02\xf9\x38\x57\xd0\xd2\x3e\xc1\xe3\xa1\x7d\xa8\x09\xd2\xe7\x61\xac\x4c\xdc\x7d\xd0\x95\x75\x6c\x0f\xa4\x38\x5e\x46\x81\xa4\x4d\xae\xc7\x9b\xe9\x22\xbd\x49\xdc\x78\xfb\x8a\x74\xdd\x9d\xd2\x17\x6f\x6c\x17\x94\x48\xc7\xb6\x30\xb6\xa7\x46\x1c\xef\xca\x44\xb2\xd5\x21\x63\xde\x8c\x85\x6d\x7a\xf0\xb4\x7f\x7b\x70\x1e\x81\xa3\x6c\x09\xeb\x3c\x22\xdd\xc5\x37\xb6\x9d\x47\x5f\x71\x16\x79\x3f\x98\xcb\x35\x7f\xad\xc7\x19\xc6\x72\x28\xdf\x7d\xc4\x8b\xc2\xf3\x26\x93\x27\x0b\x4e\x0f\x69\x20\xcf\xcc\xc8\xc1\x5d\x1f\x27\x9e\x05\x72\xdc\xd8\xb5\x5b\xe2\x59\x97\xaf\xd9\x96\x88\xce\x0a\x8f\xac\x63\x07\xb3\xc7\xb3\x5e\xeb\x8d\xdd\xe9\x78\xe9\xc3\xb0\xc9\xd3\x85\x62\x0e\x41\x15\x2c\xe2\xd5\xc8\xf0\x77\x12\xf1\xef\x01\x09\xe9\xbe\x59\x5f\x6d\x39\xed\x0c\xbf\x41\x25\xee\xc6\xd3\xab\x55\x56\xfd\xce\x7a\x80\xaa\xdf\xc7\xf6\x8a\xfb\x1e\x50\x13\xba\xcf\xe3\x85\xbc\xfd\xf1\xd0\x5c\xae\xd6\xa9\x30\xd9\x47\xf8\x42\x5a\xfd\x90\x77\xed\xc6\xef\x01\x2f\x7d\x1b\x71\xaf\xd6\x59\xbd\x23\xea\x8d\x41\xd6\xb3\x29\xda\x85\x8c\xf3\xf1\xd8\xf5\x25\xbf\x07\xf0\xe4\x09\x9e\xfe\x45\xbb\x5d\x53\x1f\x28\xfd\x7c\xec\xdc\xb8\xdf\x83\x49\xb1\x42\x80\xd1\x1b\x73\x27\x05\xfd\x1e\x74\xa6\xf0\xd4\x1b\x74\x4d\x94\x5d\xe0\x42\x5a\xed\x78\xec\x64\x53\xf1\x62\x4e\xeb\x63\xa7\x82\xfa\x1e\x9c\x8c\x2d\x5b\xab\xfe\x14\x5a\x75\xfb\x16\xb3\xde\xd8\xa8\x4b\xdf\x24\xff\x2d\x34\xd3\x89\x6e\xbe\x28\x74\x13\xf2\x0e\x7c\x88\x93\x09\xc4\x8b\x74\xc7\x93\xc9\xbb\xa5\x23\x99\x9d\xde\x0e\xdb\xa8\xf2\x3d\xe8\x78\xa1\xe9\xf7\x49\x45\xb1\xbe\x58\xa2\x6d\xf7\x83\x4e\xa5\xb7\x3e\x89\xf7\xbf\xa9\xd6\x67\xa7\xfd\x7e\xdb\xaa\xbe\x07\xa4\x40\xfb\xa0\x4f\xa4\x7d\xfe\xc0\x88\xfb\x01\xcd\xbc\xd2\xbb\xcc\x4e\x4b\xa8\xee\xf7\xb3\x57\xee\x5b\xd4\x1b\x10\x07\x53\x4f\xea\x03\xfe\x53\xcd\x90\xa3\xac\x43\x4b\xfa\xcd\x8c\x92\x92\x30\x67\x1f\x9c\x6b\xd4\x18\xe7\x02\x4b\x9f\xc0\x23\x3a\x6d\x7f\x95\x38\xfb\x45\x38\xab\x26\x7f\xf1\xbc\x45\xcd\x15\x41\x1b\xd2\x78\x4f\xa4\xf6\xfd\xd1\xc1\x4d\xe4\xf6\x6d\xdb\x50\x1a\x27\x53\xf7\x66\xd9\x72\x66\x5f\x01\x16\xd5\x6f\x00\xce\x6d\xce\xfb\x1e\x80\xf9\xd5\xf2\xef\x8c\xab\xfc\x4f\xf8\xd6\x44\x46\xdc\x0f\x57\x37\x40\x83\x2e\x37\xd2\x01\xce\xb1\xec\x60\x1b\xdf\xe7\x38\xe8\x3b\xa4\x95\x1d\x0b\x29\x34\x29\xa6\x84\x95\xe5\x6c\x22\x25\xec\xd7\x85\x1e\x2c\x8f\x84\x2d\xe1\xcc\x41\x0f\x04\x29\xc5\xe6\xa0\x05\x59\x07\x73\x0e\x58\x35\x92\x2e\xcf\xcb\x9b\x28\x1f\x06\xf4\xa1\x67\x59\x15\x18\xcc\xc5\xb0\x63\x8b\xe2\x1c\x2b\xa5\x7f\xfd\x5f\x7b\x48\xfe\xeb\xfc\x8f\xff\xfb\xc5\xeb\xdf\x17\xc7\x3f\x7f\xd6\xbf\xd0\x2b\xef\xe7\xe5\xd1\xf3\x86\xea\x73\xbb\xe1\xbb\x25\xef\x7f\xbf\x65\x3c\xf4\xc9\x87\x18\xfb\x5f\xf8\x84\x35\xb5\xdc\x6e\x61\xda\xc3\xdd\x72\x7b\x78\x24\xe0\xdc\xe6\xdb\xe3\xf8\xc4\xe1\xf5\x2f\x6d\x6e\xc7\x6e\x79\x86\x5b\x28\x44\xef\x96\xd7\xbd\x31\x7f\x57\x52\x8b\x7b\x9b\xcc\x43\xbf\x5b\xa6\x7b\x43\xaa\x85\x6d\x40\x3f\xc2\x27\x89\xec\x7f\x07\x13\xa6\x6f\xb8\x63\xd5\x5c\x23\xe3\x0d\xe5\x58\x7e\x44\x43\x11\x81\xd8\x76\x5f\xfd\x28\x98\xdb\xd0\xa7\xaa\xf1\x1c\xe9\xd0\xca\xa6\x83\xb5\x6b\xd5\x52\xdd\x02\xd2\xb3\xd7\x22\x05\xc1\x98\xe8\xbb\xac\x8c\xff\x47\x0a\x8f\xdb\x5e\xb6\x45\xb5\x4d\xb5\x31\xa9\x54\xd7\x0e\xa7\x74\xaa\x0d\xfe\x3f\x45\xf9\xf2\x8f\xf4\x11\x94\xfd\xef\xaa\x3f\xe4\x36\xc3\x82\x02\x86\x87\xe2\x2a\x8e\x34\x3c\x37\xa8\x59\x14\xd7\x74\xa4\x0f\x8b\xf6\xbf\xdf\x14\x0e\x7f\x75\xde\x6e\x02\x47\x92\xbb\xfe\x91\x2e\xf7\x08\x51\x59\x9e\xe2\x47\xba\xdd\x23\x22\xce\xe4\x0d\x7a\xc0\x1c\xb0\xff\x05\x7f\x92\x73\xfd\x01\x65\xc3\xfe\xf7\x66\x5b\x53\xdb\xeb\x36\x42\xb2\xdd\x3a\x0e\xdc\x5b\xf7\xbf\x05\xc3\x0d\x35\x69\xe3\x50\xee\x3d\x28\xd8\xe6\x40\xb9\xf7\xf5\x2f\xec\xc1\x2a\xfd\x79\xa0\x46\xfa\xfe\x97\x80\x6c\x4f\xb1\x03\xc5\xcc\xf7\xbf\x04\x64\xbb\x01\x85\x37\xed\xb6\xf0\xb2\xf4\xbb\x62\x42\xa2\xcf\x79\x3c\xe0\x90\xbe\xdd\x7a\xe2\x91\xa2\x5a\xe0\x70\xb2\x7d\x19\xe3\x91\x86\x5b\x4e\xf8\x19\xec\x96\xdc\xd4\x02\x37\xaa\xaa\x62\x48\xf1\x68\x59\x6d\x6d\xfc\xf3\x67\x24\x37\x75\x03\xd1\xd1\xb4\x5d\xcf\x62\x28\x7b\xcf\x62\x28\x19\x5f\x15\x35\x55\x37\x9d\xff\xfc\x19\xad\xbb\xe9\x72\xd3\x8b\xaf\xc2\x6e\xaa\x1a\x2b\x20\x85\x64\x71\x87\xf5\x74\xd3\xf5\xcf\x9f\xae\x58\xcf\x18\x9a\xbf\x6a\xc8\x96\xba\x9d\x5e\x62\x68\xfe\xaa\xe1\xab\x7d\xaa\x23\x24\xdf\xfd\x2f\xa3\xb4\xd5\x62\xd8\xe1\x45\x1c\x95\x57\x3d\x86\xd1\xdd\x36\xd8\xa6\xc1\x6e\x2d\x62\xf8\xe8\x62\x57\x6e\xac\x18\xe3\x26\x21\x31\x46\xfa\x39\x6d\xb7\xc1\x18\x63\x73\x1b\x62\x4b\xdc\x72\xb9\x85\xdc\x77\xb7\x54\x0d\x15\x29\xd3\xa6\x9f\xb6\xea\x36\x14\x67\x0d\x6a\x39\xdd\x72\x21\xc3\xc8\x6e\x69\xc2\xa7\x08\xf9\x24\xca\x7d\x3e\xc6\xe6\xfe\x98\xc0\xa1\x1c\x1a\xab\xfb\x3b\xa4\x03\xdb\x4e\x74\x31\x76\x43\x08\xcd\x4b\x91\xeb\x75\x84\x0e\x71\xff\x0b\xe7\x71\xc1\xd1\x0d\x21\xd4\xfa\x25\x6f\xd2\x18\xe3\xe3\x36\x08\x27\xa5\x09\x05\xd2\xa1\xf5\x05\xdd\xfd\xbe\xdb\x1b\x9d\xa2\x4e\x44\x8a\xe7\x3f\x7f\x14\xc3\x15\xd3\x78\xd4\x82\x30\xb6\xa8\x5a\x70\xd1\x14\x2e\x26\x38\xcb\xc4\x6d\xc3\xfa\x1e\x34\xb7\x7d\x08\x17\x3c\xd8\x79\xb9\xe9\x41\x93\x7a\xbc\x84\x70\xa0\x83\xa1\x2a\xcb\x6f\x4c\xd7\xab\x36\x18\x3f\xab\xb2\xd8\xc6\xec\x43\x91\x51\x0e\x43\x55\xe6\x63\xf6\xb1\xcd\x1d\xce\x60\x3a\x4a\x59\x84\x3d\xe2\xaa\xdd\x95\x5d\x35\x66\xd1\xf5\x98\x07\x03\xb6\x36\x37\x8e\x79\xdc\x6a\xbb\x3e\x1c\x56\xe8\x54\xcc\x97\x76\x2d\xe3\xae\x7e\xc8\xbd\x2f\xe6\xc7\x30\x82\x45\xba\x0a\x7c\xcc\xaf\x96\x24\x43\xce\x39\x94\xf8\x26\xe6\x59\xdc\x06\x21\x43\x61\xe4\xb1\x1c\xea\xb3\x20\xbd\x7c\xde\x7e\x61\xb1\x54\x6d\x5c\xa9\xef\x77\xac\x37\xd1\x8f\xa5\x69\x72\xe5\x5b\xad\xae\xac\xb5\xb1\x74\x37\x7d\xab\xd3\x15\xb4\x18\x61\x72\xdd\xff\x16\x74\xb8\x41\x2c\x9e\x1a\x6b\xaa\x57\xe5\x1b\x8f\xa8\x46\xbe\xff\xc5\x60\xda\x9a\x6a\xe8\xeb\x81\x26\x4d\xba\x8a\xc1\xc4\x0a\x5d\x4e\x55\xaa\xee\x88\x62\xe4\xfb\xdf\x07\x64\x6e\xc3\x58\xab\x76\xb4\xe2\x46\x15\x15\xdc\x1c\xab\xcf\x2f\xca\x27\x7f\xb8\xb5\x81\x6c\x3e\xbf\xad\x61\xb1\x76\x4a\x83\x88\x72\x03\xfb\x5f\x48\x72\x4a\xe0\x1a\xc7\xd4\x71\x43\x6e\xef\xaf\x6d\x2f\xf2\xe5\xe3\x76\xc1\x09\xf1\x6b\xa2\xe4\x4a\x39\xf5\x7f\x25\xba\x46\xa4\x47\xdc\xff\x16\xd6\x06\xde\x73\xbf\x4c\x4c\x90\x5b\xf0\xa3\xad\x7b\x82\x6f\xd7\xba\xbc\x48\x59\x90\x54\xe7\x3b\xbe\x92\x6e\xe3\x4b\x57\x7f\x65\x4e\x8b\xaf\x0f\xd6\x7b\xd3\xea\xb0\xfd\x16\x23\x62\xcf\xf6\xbf\xe5\x9f\x3f\x59\xc9\x29\x23\xe2\xbf\xf6\xbf\xf1\x9f\x3f\xb9\x6c\x1f\xee\x38\xaf\xa9\x26\x26\xef\xdd\x32\x40\x9c\x8f\xbf\x7a\xe2\x6f\x48\x54\x84\x81\x67\xff\x5b\x7e\x03\x51\xd2\x21\x4c\x49\xc7\x27\xcd\xc8\x01\x3e\x1d\x5a\xe6\x74\x7c\xcb\xbc\x7d\x43\xbe\x9f\x5d\x2d\x21\xfc\xd0\xb4\x74\x68\x52\xe9\xf8\x26\x55\xb7\xcc\x90\x0e\xa1\x5d\xa2\xa9\xa8\x6a\x29\xd2\x11\x7e\xfa\x1b\xa4\xff\x63\xb7\xa5\xa4\x36\x20\x49\x54\x34\x70\x3a\x72\x50\xdb\x40\xc0\x82\xe0\x18\x86\xe3\xe3\xa7\x4d\x15\xbf\xd3\x31\x86\x9b\x90\x70\x53\x9e\xe8\xe9\x18\x97\xdb\xee\x7f\xfe\xd4\xac\xc5\x10\xb1\x4e\xc7\x47\xac\x55\xf7\x30\xf9\x76\x93\x70\x4f\x50\x96\xe8\x74\xcc\xe6\x96\x13\x1c\x59\x1f\x4d\x77\x37\xd1\xdd\xda\xfb\x64\xc1\x20\x05\x38\xca\x55\xd5\x94\x4b\x61\xba\x0d\xd7\x8b\xaa\xcc\xfe\x29\xe8\xc0\xa4\x30\xf9\xdd\xa6\x4a\x29\x4a\x92\x4b\x11\xaa\xe9\x43\x61\x5f\x29\xc6\xd3\x6d\xf3\x23\xb9\xfb\x58\xa7\x98\x34\xb3\x88\x0c\x5f\x35\xa8\x49\xf2\x66\x8a\x9f\x40\xd5\x15\xa7\x99\x62\xb9\xdd\x04\x42\xad\x2c\xfb\x29\x76\x03\x02\xbd\xd5\xa1\xaa\x9b\xc9\xcc\x37\x45\x38\x23\x1d\x46\x52\x28\x74\xf7\xbf\x90\xdc\x73\xd7\x04\xce\xec\xb6\x0e\x28\xf7\x7a\xc5\xcb\x13\xb8\x16\x28\x9a\xc1\xe3\x2e\x41\xfb\x0f\x85\xf6\x27\x5f\xab\x12\xaf\x55\x41\x57\xa4\x94\x24\xd6\xa7\x04\x8f\xd3\xa0\x0a\x2d\x29\x85\xd3\x6d\x28\x66\xa9\x0a\x16\xc9\xd7\xa7\x94\x70\xef\x0f\x2a\xa9\x90\x52\xec\x6e\x1b\x68\xdb\x7c\x2f\xa5\xe8\xf1\x10\x31\x12\x94\xb3\x3e\x25\x11\xd0\x94\x70\x36\x82\x72\x96\xa7\x94\xfc\x5d\xe6\x77\xc2\x95\x94\x93\xdb\x2a\xdb\x34\x87\x7c\xb9\xed\x46\x9b\xb6\x2f\x65\xcf\xa1\xb0\xcf\xac\x3e\x4b\x71\x1b\xfb\xdc\xdc\x28\xe1\xde\xb7\xff\x85\xa0\xb0\x6f\xc5\xc9\x37\xc0\x94\x3a\x84\x99\xa1\x99\x77\xcf\xa0\x23\x23\x9d\x17\x4c\x72\x42\x82\xe8\xd4\xea\xa1\x0e\x8d\x0e\xe9\xfc\x78\xa9\xb2\x1c\xa6\xf4\xe8\x3c\x26\xe8\x22\x83\x0a\x27\xa6\x22\xe5\x45\x2a\xcc\xb2\xab\x7c\x79\x09\x15\x69\xf7\xbf\x74\x2c\xdc\xf7\x4d\xba\x90\xec\x7f\x0b\x55\x52\x75\xb7\xc5\xa4\x36\xb8\x19\x0d\xe5\xc5\xc8\x6f\x9c\x6a\xc3\xb6\x66\xa5\x4b\xce\xb0\xbf\xee\x7f\x03\xdb\xe2\x6e\x6b\x1e\xaf\x15\x06\xc5\x8c\xdd\x36\x5e\xb5\x7d\x07\x46\x2e\xd8\xdf\xef\xcb\x4d\x8c\xc7\x59\xc4\x21\x4f\x6d\x78\x9e\x30\xa6\x07\x65\x3e\xc9\x08\xae\xdc\xff\x32\x31\xe5\xbe\x56\x66\xc4\x55\xee\x7f\xe1\x12\xa4\x00\x8c\x3c\x2f\xf7\x79\x21\xeb\xab\x04\xb9\x3c\xa5\xbf\xc9\x13\x25\x57\x42\xd8\xb2\x49\x86\xab\xfb\xfe\xf7\xe3\x89\x92\x7a\x8b\xf9\x54\x39\x0e\x2e\xca\x56\x76\x14\xdf\x47\x0b\xd8\x45\x0c\xe2\x1f\xe5\x28\x41\x6d\x28\x87\x1c\x54\xa6\xba\x1c\x3d\xa9\xed\xbb\x30\xc4\xa0\xea\xcc\xe5\x18\xee\x73\xd0\xb3\x7c\x8b\xd9\xe5\x18\x53\x6d\x27\xa7\x90\xd5\x76\xba\x0d\x69\x1d\x82\xea\x06\x97\xe3\x3a\xdd\xb6\x9c\xd3\x05\xcb\x3d\xd4\x76\x9f\xdf\xd4\xdd\xf4\xdc\x6a\x7a\xb8\x9a\x9b\x15\x97\x20\x52\x55\xc2\x47\xaa\x2c\x60\x94\x70\xdc\x6e\x82\x35\x67\x7b\x2d\x1d\x25\x04\xb7\x05\x76\xb9\xd5\x0c\x25\xe8\x46\x58\x02\x42\x28\x83\x2a\xba\x96\x10\xfd\x5d\xe4\x77\x5b\xe6\x2f\x21\x69\xe6\xe1\xc3\xe0\x2c\xf9\xa9\xe0\x3a\xbd\xff\xfd\x26\x27\x71\xb4\x84\x51\xd4\xf4\x71\x6a\xe9\xe5\x0f\x7a\x41\xed\x7f\xaf\xaf\x29\x69\xac\xcb\xd3\xbe\x22\x9a\xd4\xe1\xa3\x4d\x0d\x0f\x4f\xdd\x3e\x21\x25\x7a\xb5\x18\x17\x91\x95\x7a\xaa\x98\xdb\x95\xc8\x5c\x6d\xd2\x12\x96\xa8\x33\x42\xb7\xaa\x2c\xb1\xbe\xc0\xde\xb0\xff\x65\x48\xf5\x0e\x27\x2d\xd1\x73\x8b\x28\x55\x1c\xc4\x5c\x4b\x94\xa2\xaa\xc4\x13\x05\xdf\x0c\xa5\xae\x3a\x25\xa2\xb0\x6f\x88\x47\xf9\x2b\x01\xb7\x44\x63\x58\x24\x86\x29\x03\x47\x89\xd3\x90\x7e\xd2\x83\x1c\x16\x8f\x92\x0e\x7d\x96\xa0\xd7\xce\x8a\x8c\x2a\xc9\xe8\x00\xe6\x14\x83\x77\x28\x49\x45\x50\x12\xb2\xc4\x07\xa5\xed\x29\xa0\xf4\xfb\x5f\xce\x62\xeb\x38\x4a\x92\xae\xa2\x24\x56\x0a\x54\x2a\xc8\x02\xe7\xda\xfd\x2f\x0e\xb3\x6e\x43\x25\x1b\xfd\xf2\x87\x7e\x59\x19\x45\x4b\x16\x2f\x2c\xd4\x9b\x0d\xdd\xe5\x4a\xd6\x85\xad\xc0\x0d\x3e\x06\xef\x5f\x96\x7a\xb5\xe4\xf7\xc3\x3f\xe9\x9e\x8a\xaf\x80\xa5\x30\x34\xc0\xab\x52\x7c\xb8\x0a\xac\x56\x21\xee\xc8\xb9\x52\xa4\x7d\x2a\x05\x09\x3a\x15\x60\x5c\xe0\x6d\xbb\xff\xbd\xf0\xd9\x0e\x0a\x2a\x45\xec\xa9\x94\x87\x0b\xb6\x25\x8b\x52\x25\x75\x94\x0a\x3b\x43\x56\xd2\xad\x82\x70\x92\xfd\x2f\x10\x57\xf5\x5f\x4a\x15\xa7\x2f\x15\xe9\x4e\x83\xee\x0b\xa5\x56\x7f\x57\xb1\xd0\x62\x33\xa5\x36\xb7\xc1\x66\x9d\x95\xa9\xaa\x54\x63\x6e\x85\x2b\x7a\xce\x5b\x33\x5b\xaa\x57\xb3\xa2\xda\x45\xd0\x4d\xb0\xd4\xa9\x65\xa9\x93\xa1\x06\x9b\x29\x94\xe6\x83\xd9\x90\x9c\x38\x48\x49\x5c\x9a\xa4\xaa\xd2\x10\x19\x31\x54\x68\xbd\xb4\xa8\x5d\x6f\x11\xec\x50\x59\x25\x4b\xd3\xcd\xa1\x34\x78\xea\x67\x05\x44\x97\x96\x9a\xdb\xfa\x3f\x7f\xb2\xb2\x5a\x94\x96\x1e\x37\x81\x6c\xaa\x9c\x46\x69\x59\xd3\xa3\x85\xd8\xa9\x93\x0a\x4a\xbc\xef\x7f\x19\x26\xb2\x85\xb1\xd2\x86\xfb\x64\xc6\x22\x85\xdc\x97\x66\x7c\x47\x1d\xea\x9c\x37\xfb\x2d\x6d\x7a\x38\x98\x20\xb2\x0a\x04\x97\xee\xe3\xd5\x79\xbc\x94\x65\xad\x74\x89\xd2\xa5\x77\xc6\xa3\xec\xeb\x4a\xe9\x5d\x54\xba\xd3\xfa\xae\xf4\x1c\xa5\x4b\xcc\x2e\xfd\xe4\x2e\xe8\x9c\xa0\xaa\xe4\xfe\x97\xc1\x26\xe2\x18\x7d\x5e\x6e\x7b\x70\x5f\xdd\xab\x89\x2a\x8c\xfb\x5f\x22\xd9\x96\xea\xcb\xf0\x69\x1e\x38\xcd\xdb\x9f\xec\x28\xd0\x07\xec\x7f\x2b\x3f\xdb\x78\x3b\x9a\xdb\x18\x5f\xa1\xb8\xf5\x32\x64\xe8\x29\xa8\x6c\x96\x15\x81\x5e\xc6\xab\x09\x8c\x97\xe8\x20\xe1\xe2\xf4\x70\x88\x89\xce\x45\x5b\x8e\xb0\xe1\xfd\x6f\x61\x6e\xb3\xbd\x07\xa7\xe5\x80\xf3\x64\xb4\xc8\x8e\x1f\x2d\xa7\xee\x63\x05\x45\x4f\x72\xd1\x81\xbd\x4c\x04\x50\xe2\x21\xab\xe0\x68\xb9\x9a\xce\xf9\x45\xcf\x5a\x65\x80\x28\x97\x6e\x86\x05\x35\x03\xe2\x27\x02\xed\xb6\x53\xb4\x9d\x99\xfa\x83\xd2\x1e\x95\xcb\xbc\x12\x2e\xae\x5f\xdb\x5e\xcb\xcb\xeb\x75\x3d\xcc\xdc\xb6\x25\xfa\x72\x1f\xc2\x30\xe4\xff\xce\x8a\xaa\x2c\x77\xd2\x70\x48\xdc\x9c\x15\x25\x59\x90\xc9\x77\xff\xbb\xc2\x72\xf4\x99\x84\xd7\x72\x53\x78\x95\x8a\xa2\xdc\x53\x50\x22\xe9\x6d\x0c\xca\xe9\x51\x90\xe1\x73\xfd\x5b\x21\x53\xe5\xad\x57\x28\x4f\xd3\x0c\x90\x11\x33\x06\x55\xc3\x29\xc8\x91\xb8\xff\xfd\x2e\x17\x9e\xdc\x2b\x45\x45\xa1\x87\x4d\x56\x72\x83\xf2\xca\xce\x52\xe0\xff\x9d\xa5\xe9\x2d\x6f\xd1\x1e\xbc\x85\x7b\xa0\xd3\xfa\x56\x9d\x82\x97\x66\xda\xb2\x2f\x2c\xe5\x35\x07\x7a\x2b\x83\x84\x84\x0e\xaf\xf1\xf9\xfd\xf0\x39\xcb\x16\x50\xac\x3f\x2a\x48\xb8\xf5\x75\xb9\x17\xe5\xbd\xb5\x60\x70\x0a\xce\xd2\x63\x97\xf7\xf1\xe4\x58\x2a\x49\x61\xf0\xe5\x95\x1e\xbb\xc0\x0b\x28\x2b\xee\x94\x9e\xc3\xfb\xdf\x81\xa6\x3d\xef\x69\x79\x11\xe1\xb7\x21\x17\xd1\xf5\x69\x21\x60\x52\x08\x28\xfb\x26\x5d\xa6\x59\x21\xd2\xde\xe4\xa6\xcd\x99\x46\x86\x49\x64\x28\x22\xdd\x53\xca\xea\x32\x11\x4e\x19\x8a\x08\xdf\x7c\xdc\xf6\xac\x36\x0d\x67\x5a\x4a\x9f\x66\xab\x2c\xca\x7c\xba\xdb\x06\x72\xb1\xaa\xe9\xd5\x32\xcf\x97\x71\x50\x1b\x94\x7a\x68\x06\xf5\x28\x8d\x05\x2c\xda\x6e\x1b\x6e\x43\x2a\xbb\xed\xf1\x77\x54\x8b\xf3\x15\xe2\x7c\x0c\x65\x9b\x3b\xea\x71\xbf\x6e\x9b\x6c\x2b\xbb\x6d\xba\xcb\x89\x2e\xb7\xe2\xbc\xc2\x83\x76\xff\xfb\x7e\x4d\x9b\xb6\xd5\x20\x2a\x5b\x03\x1c\x5e\xb3\x81\x44\xe4\xec\xfe\xf7\x23\x89\xaa\x51\x5b\x83\xd4\x31\x35\x74\x2e\xe5\xd6\x35\xd5\xa0\xbb\x51\x0d\xbc\x1b\xed\xa0\xb5\xa3\x86\xe1\xe1\x78\x37\xd2\xf9\xaf\xe1\x76\x9f\xbc\xde\x95\x21\x30\x3d\xf1\xb0\x26\x3e\x34\xde\x7b\xab\xed\x65\xa1\x90\x31\xfe\x4a\xe8\xad\x51\xea\xc8\x1a\x8f\x0f\x6f\x55\xe0\xac\x46\xdd\x0c\x6b\xfc\xc4\x81\xac\x4a\x53\x35\x76\x2d\x27\xf4\x4d\xd1\xe5\x86\x6a\xf4\x04\x23\x32\x1e\x6e\xcf\x9e\xa3\x5a\x38\xaf\x11\x15\x45\x82\x50\xac\x46\x1d\xd7\x0a\x7d\x53\x0c\x75\x4b\x1c\x15\x76\xf1\xfd\x2f\x42\x9d\xea\x16\x39\x6a\xca\x1a\x0e\xaa\x99\x8f\x2c\xee\x19\xa4\x53\x7d\xc2\xa0\x1d\x86\x52\xba\xd6\xa4\x73\x5e\x57\xc0\x99\x54\xcf\x35\xbd\x1e\xef\xe5\x78\x5b\xb3\x52\x93\x6e\x02\x95\x11\xcf\x43\x79\x0f\x6a\x96\x89\xb1\x66\x66\xd2\x55\x3e\xc9\x9a\x3d\xbf\xbc\xc8\xd1\x3e\x43\x35\xdf\x1a\x2f\xc3\x86\xd4\x54\x3b\xad\x66\xb9\x37\xd4\xfc\x86\x7f\xfe\x14\x65\x3a\xac\xb0\xd7\xec\x7f\x71\x4e\xea\x26\xfb\xb5\x78\x5f\xcb\xc1\xb6\x2d\x3b\xd4\x22\x71\xbf\x96\x8f\x79\x17\x25\xac\xaf\x25\xdd\x6e\x7a\xf8\xd9\x5e\x95\x22\x25\x7f\x2d\x1f\x82\x17\x25\x90\xa9\xc5\x40\x16\x02\xa9\xb9\x95\xe9\xc1\x10\x98\x1e\x94\xb1\xa1\x96\xf9\xba\x8d\x7b\xbe\x29\x7b\xb5\x64\x5e\x21\x99\xc7\xa0\x3c\x05\xb5\x4a\xe4\xa8\xf5\xe3\x37\x45\x5a\x97\x5a\x65\xa2\xae\x15\xa1\x1a\x79\x07\x7f\x1e\xb5\x8a\xbd\x56\x58\x64\x8a\x92\x7b\xd6\x5a\x6f\x37\x3d\x0c\x72\x54\x97\xcd\x9f\x41\x91\x53\xa5\xb5\xac\xb5\x7b\x38\x7a\x5b\x2a\x83\x61\xad\xe3\x54\xdb\x00\x6d\x57\x86\x87\x5a\x6f\xad\x65\xbd\x21\xda\xa9\xc6\x63\x6d\x51\xa7\xa4\x7d\xf7\xc7\x12\xb6\x05\xa3\x36\xd9\x60\x2a\x02\xf8\x8a\xf4\x23\xb5\xc9\xe9\xa7\x36\xaa\x8d\xda\xbe\xdf\xd5\x9e\xb4\x3d\x1d\x1e\xfb\xb9\x6e\xfd\x4f\xed\x75\xaa\xad\x81\xe6\xb4\xed\x4f\x51\xbb\xf1\x99\x9e\x6b\xad\x6b\x31\x51\xaf\x7f\xff\x7b\xb1\x4d\xdf\x49\xe9\xc2\x70\x90\x18\x9a\xce\x64\x97\x9a\xaa\xb2\x20\x7c\xeb\x51\x6d\xd3\x70\x4e\xc2\x29\x64\x1f\x72\x15\xa8\x63\xc1\x29\x7a\x3b\x9a\xe6\x30\x90\xd7\x35\x2b\xd5\x44\x1d\x8f\x56\x73\xc0\x0d\x37\xd7\xcd\x99\xeb\x10\xef\xaa\x83\xbc\x4b\x25\x6f\xea\x69\xea\xc7\xec\x40\xad\xeb\xbb\x53\x92\x4c\x65\xfa\x98\xac\x3c\x18\xf5\x94\x85\xbc\x9e\xc8\x18\x1b\xba\xf0\xf6\xd4\x55\xa6\x42\xfc\x0d\x59\x29\x90\xea\x79\x7a\xbc\xf3\x3b\x5d\x72\x41\xa8\xe7\xe5\xe1\xc8\xd1\xbb\x48\xce\x69\xb2\xc2\x0a\x95\xa1\x8b\x74\xa0\x9c\xe4\xfe\x97\xe4\xc8\xc3\x3d\x3a\x42\x28\x00\xf9\x7d\xb7\xb7\xef\x94\x38\x59\x4f\x46\x43\xf7\x2d\x32\xd6\x4b\xbe\x51\x15\xf6\xc3\x18\xba\x28\xff\x75\x68\x1b\x2e\xa4\x69\x68\xdb\x39\xfe\xa8\x97\x54\x3d\x15\x05\xcb\x5c\x33\xa1\x5e\x52\x86\x56\x88\xf0\x1f\x98\x1a\xce\x3b\x8b\x2a\x66\x4e\x96\x5f\xaf\xe1\xa6\x13\x82\x6d\x8f\xea\xd2\x8b\x79\x21\xb3\x5b\xe8\x62\x6b\x97\x11\x17\x75\xb7\x9c\xdd\xba\x5e\x97\x81\x44\x12\xd8\xb0\x7d\x63\x8f\x7a\xc9\xcb\xa9\x5e\xa8\xe3\x19\x7a\x12\x94\x72\x9e\xab\xac\x30\xd5\x54\x9f\xbb\x5e\xaf\x17\x8c\x21\xb6\xaa\x17\x5d\x51\x77\x67\xff\x9b\x91\x23\x76\x1f\xcb\xdb\x44\x80\x55\x6a\x9c\xc7\xbd\xde\x66\x4f\xa8\x81\x11\xb2\x1c\x45\xea\xe3\xef\x9e\xc8\xe1\xb4\x2a\x8f\x45\x96\x87\xd9\x3b\x64\xd6\xa8\x6f\xd6\xd4\xe9\x13\xdf\x86\x96\xe5\x95\x06\xaf\xbe\x30\x6b\x34\xd5\x96\xab\xaf\x1c\x89\xea\x8b\xb4\x48\x4d\x15\xe0\x2a\x92\xf9\xee\x7f\xa1\x3a\xb2\xf8\x64\x31\xbb\x42\xcc\x2e\x59\xa8\x62\x29\xbb\x2e\x5f\xfb\x72\xa8\xed\x75\x97\x2f\xbb\x14\x37\x99\xf2\xed\xa8\x93\x55\xd4\x9b\xa6\x37\x7d\x14\x26\x77\x48\xf5\x08\x9a\x7d\x2f\xdb\xc1\x8c\x4a\xa2\xfd\xed\x90\x42\xb4\x1d\x10\x8a\xf3\xf6\xf6\xfd\x1e\x14\xb7\xc1\xc9\xb1\x6c\x67\xc6\x16\xf2\xde\x86\x16\x32\xb2\xb9\x6d\x42\xd6\x82\x84\x92\x16\x58\xe9\x56\xe9\x4e\x5b\x90\x85\xba\x41\x16\x8c\x36\x2e\x35\x4b\x6a\x0d\x92\x5a\xb4\x71\xa9\x45\x09\x48\x2d\x7e\x1c\xbc\xc8\xdc\xd3\xa2\x34\xcb\x2d\xe6\x03\x4d\x1b\xc8\x98\xdd\x04\x93\xd4\x28\x51\x9f\xc9\x24\xd5\x22\x4c\x52\x59\x2e\x6c\x2d\x56\xcd\x20\x32\x74\x4f\x19\x23\x1b\x72\x78\xec\x7f\xc1\xf4\x64\xca\x6a\xd1\x0b\x16\x49\x73\x54\xc5\xb0\x25\xd9\x82\x5a\xa2\x2d\x68\x47\x22\x1d\xcd\x5e\x97\x8d\x5e\x97\x5d\x65\x66\x9a\xbd\x27\x1b\xbd\x27\x47\x49\xfd\xaf\x44\xdf\x96\xb2\xa6\x01\xe3\x5c\x91\xc5\xba\x25\xa3\x44\xe2\xa5\x59\xa5\xef\x5a\xf2\xec\xd3\x9a\xfd\xd6\x7a\x36\x1b\xeb\x5a\xea\x5c\xb5\x2d\x38\xb6\x34\xfc\x1d\x14\x1e\xb9\x09\x05\xb3\xd4\x74\x2d\x43\x4d\x97\xfb\xa6\xfe\x2d\xcb\xda\xd5\x32\x99\xb7\x92\x2c\xb7\x2c\x89\xa6\x65\x54\xfd\x09\x2a\x1d\xdd\xb2\x61\xc9\x0c\xc3\xea\x5b\xbf\xdc\xb2\xd4\x1a\x2d\xb3\x98\xb2\x8a\x42\xb4\x2c\x26\xdc\xf2\xc7\x08\x4a\x55\x97\x45\xea\xbd\x56\x12\x43\xa6\xf7\xed\xbe\x15\x6f\x7c\xc1\xc6\x47\xa5\x22\x6f\xa5\xf9\x3b\x46\x94\xca\x8e\xd4\x8a\xf8\x65\x2b\x1f\x98\xa5\x09\x07\x8b\x6e\x12\xad\xe0\xaa\x94\x77\x10\xd8\xd1\x8a\x4f\x4a\x81\x77\x48\x97\xf9\xa9\x95\xc7\x6d\xef\x6a\xd3\x77\xd3\x7d\x7e\xbc\xad\xe8\x9e\xde\x2c\x8d\x36\x48\xa3\x45\xee\x7c\x0c\x7c\xdc\xff\x56\x16\xdb\x2a\x6a\xbb\xdc\xc6\xb0\x71\x61\x75\x95\xf3\xc0\x77\x2b\xfe\xba\xdc\x37\xd2\x56\xe5\xed\xd9\x2a\xab\xd9\x28\xab\x74\xab\xf2\xf7\xfc\x2e\x87\xf8\x4c\x90\x48\xf1\xdc\x6a\x45\x8f\xdb\xba\xde\xec\x65\xd4\x6a\x3d\xd1\xb4\x4f\x6c\x95\x0f\x4e\xab\x2c\xba\xa9\x04\xca\xad\x0e\x03\x32\xf0\xd9\xbe\x57\xb6\x2a\x36\xda\x2a\xd8\x68\x54\xbe\xe2\x56\x65\x2b\x6e\x4c\x49\x90\x7b\x55\x97\xa7\xe1\x07\x25\xb6\x9b\x5d\xab\x97\xa1\xbc\x38\xdc\x3e\xcb\x4d\x7a\xa5\xd6\x10\x35\x12\x4d\x57\x9a\xdc\x30\x1b\xe4\xe3\xb2\x03\x48\x8e\x66\x7d\x74\x83\x3e\xba\x48\xa0\x6c\x2d\x0b\xf1\x1a\x52\x03\x56\x55\xce\x6f\x4d\xca\x89\xd6\xa0\x9c\x88\xca\xfe\xda\x9a\x94\x66\xad\x21\x14\x3b\xcb\x27\xbb\x59\x57\xdd\x5a\x43\x39\xd1\x43\xfb\xdd\xbc\xce\x0d\xbe\x4e\x43\x17\xf8\x66\x01\xbd\x41\x40\x2f\x5d\x2c\xa1\x3d\xc2\xbc\x86\x00\x83\xae\xf2\xca\xad\x47\x4d\xa1\x23\x40\x3e\xef\x7c\x2c\x47\xeb\xf2\x2f\x6c\x9d\xd5\x6c\x55\x2a\xa8\xf5\xd7\x6d\x8c\xf7\x90\x5b\x7c\xeb\x72\xc2\x6f\x9d\x51\x9e\x32\x4b\xb5\x21\x93\x55\x43\x12\xd8\x30\xe4\x13\xd2\x86\x2e\x57\x6d\xf0\x72\x35\xb6\x4a\xad\x8d\x4b\x7d\x0e\xec\xeb\xd8\x4c\xbb\x0d\x79\x81\xb7\xc1\xc8\x4c\x79\xb5\xb4\xd3\xb4\xfd\xfc\x68\x7b\x91\xf7\x46\x3b\x75\x4d\x6d\xd0\x31\xc7\x18\xb6\xe2\xbf\x9d\x3e\x06\xc8\x60\x58\xe4\xbc\xd1\x4e\xd9\xcf\x1b\x6a\xb8\x87\xac\x4a\xe6\xed\x94\xca\xb6\x9d\x0f\x80\x14\x82\x9d\xaf\x7b\x7c\xd1\xe3\x56\xfb\xb7\xcb\x30\x5e\x84\xb1\xaa\x49\x1e\x26\xed\x8a\xdc\xb9\xad\x4f\x6f\x97\x39\xef\x85\x1c\x9c\x51\xb7\xb5\x76\xe9\x36\xd3\xae\xef\x36\x53\x54\x5a\xaf\x5d\x32\x43\xb6\x8b\x45\xe9\x15\xbf\xd1\x2e\x5d\xa6\xdb\xc5\x82\xe2\x32\x4b\xb7\xcb\x9b\x7a\xb1\x74\xb8\x4c\xcf\xed\x36\xb1\xb9\x49\x6c\x82\xc6\xbb\xe5\x8e\xd4\x58\x45\x6f\x48\x21\xd5\x6e\x6f\xf8\xaa\x6d\xa7\x8b\x55\xbb\xa5\xcc\x69\x37\x43\xeb\x65\x2e\x6d\xb7\xc4\xad\x76\x43\xdc\xca\x2a\x25\xdc\x1e\xa9\xc6\xdb\xaa\x76\xa6\xea\xbb\xed\x31\x83\x79\xc8\x60\x54\xac\xb1\x3d\xba\x6a\xb7\xa7\x73\x5f\x35\x87\x47\xc2\x79\x43\x55\x9c\x68\xff\xc3\xf6\xdc\xee\xf3\x46\x85\x24\x15\x3e\x6d\x8f\x8c\x44\xed\x61\x9c\x8a\xb4\x24\xed\x2d\x5a\xb3\xb7\x9c\xff\xfc\xa9\x3b\xdc\xfc\x68\xaf\x79\x16\xaa\x82\x84\x2e\xf7\xf9\xf6\xca\x29\xa7\x21\x3c\xb7\xee\xc0\xc8\xa3\xa1\x00\xc8\xfe\x37\x7f\x4d\x5a\xcc\x57\xce\x73\xed\x85\xf3\x9c\x4a\xfd\xb6\x57\x97\xc6\x06\x27\x95\x18\x65\x27\x6e\x70\x3a\xd9\xff\xbe\xf8\x4c\x4d\xba\xa3\xb6\xf9\xdd\x51\x6b\xd0\x0e\x4c\xef\x38\x53\xb2\x67\x53\xc5\x69\xca\x37\x3f\xea\x52\x8d\x60\x53\xca\x87\x36\x57\x32\x8f\xee\xb6\xee\x36\xcc\x5a\xb8\x67\x5f\x97\x46\x5f\x97\xae\xc2\x5d\x6d\x36\x8f\xc6\x82\x2c\xaa\xe0\xdd\xe6\xad\xbd\x41\x9a\xec\x1a\x44\x4a\xad\x73\x6e\xd4\x39\x97\x43\xdb\x3d\xa7\x87\x63\x25\x05\xe9\xf5\xba\x7d\x25\x3b\x7c\x25\xab\xaa\x81\xf7\x43\x2e\x66\x1d\xb1\x1b\x31\xca\x05\xb0\x1f\x32\x2e\xf7\x03\xbe\x4f\x45\xb9\xe2\x7b\xa8\x1b\xca\x1e\xea\x07\xa5\x9c\x7c\x7a\x90\x70\xd6\x03\xad\x39\xca\xee\xde\xc3\xf3\xa8\x0d\x41\x55\x43\xc9\x41\x7b\x90\xf8\xd2\xc3\x47\xc4\xab\x52\x4d\x77\x3b\x31\xf6\x00\x43\x4f\x8c\x4a\x81\xfc\xff\x2d\xed\x76\xfb\x38\xf6\x30\x11\x61\xb6\xd9\x7c\xb7\x67\x47\x87\x67\x47\x95\x1b\x56\x8f\xba\xa1\xf6\x08\xe5\xf8\x90\x78\xd6\x1d\x93\xd0\x11\x93\x50\x65\x76\x66\x0e\x83\xfd\x6f\xff\x9a\xb6\x2e\xb7\xdb\x8d\xf1\x23\x95\x98\xc2\xd0\x67\xc3\x3d\x0e\x90\x3e\x25\x20\xef\xf1\x34\x24\x4c\x81\xa9\xf2\x95\x3d\x9e\x1e\x8e\xf2\x86\x2c\x7f\x3d\x89\xdc\x74\x06\x73\x75\xdd\x34\xbb\x5d\x37\x3a\x5c\x37\x62\x94\xd2\xa5\xa7\xe0\xef\x02\xa6\xb0\xa5\x83\x8e\xf0\xae\xfd\xef\xe4\x67\xea\x52\x12\x47\x4f\x2c\x5a\xea\xa9\x27\x39\xd6\xf6\x84\xd0\xc3\x9e\xf7\x0d\xa0\x27\xc9\xb3\x3d\x41\x9e\x2d\x92\x46\x7a\x96\x1b\x56\xcf\xcc\x8d\x51\x04\x66\x16\x95\xea\x19\xd9\xc8\x7a\x11\x2c\xf9\x74\x1b\xca\xb0\x45\x69\x4f\x7a\x96\xca\xa2\x67\xa4\xc3\x8c\x32\x73\xf5\x2c\x53\x43\x67\xb8\x40\xdf\x29\x08\x8f\x5e\x14\xb5\xd5\xcb\x91\xf8\xdd\x86\xb3\x78\xc9\x0a\x96\x4c\xa9\xf0\x7b\x91\xaf\xc1\xd7\x17\xba\x4c\xea\x52\x24\xa7\x17\x5c\xb6\xa2\x12\x29\xf7\x22\x3e\xdf\x0b\x93\xff\x94\x2d\xe6\xf7\x72\x69\xa9\x71\x1b\x88\x51\xf1\x4d\xbd\xc8\x60\xd5\x0b\x13\x33\xed\xe4\x84\x47\xaf\xba\x6a\xf6\x8a\xab\x66\x53\x79\xac\x5e\x65\x27\xea\x70\x1b\x89\x51\x99\xe4\x7b\x95\x31\xa8\xd7\x82\x42\xa0\xd9\xdf\x49\x12\xeb\x95\x92\x98\xac\x02\xdd\x3a\xe2\x0e\x39\xbc\x2a\x80\xa8\x57\xf9\x62\xf6\x3a\x98\xe3\x65\x8b\x0f\xdd\x42\x74\xa7\x10\x5d\x8e\x4d\x6e\x7b\xf5\xce\xd6\x6f\x67\x6b\x76\xd3\xe5\xd9\x5d\x10\x11\xe4\x9b\xdb\x9b\xb4\xfb\xbd\xb1\x06\xb0\x7c\x22\x7a\x53\x5c\x52\x6f\x4c\x59\x23\x45\x41\x6f\xb2\x67\xf5\xc6\xba\x85\x0a\x0c\xec\x6d\x08\xcc\x86\x6c\x6f\x63\xa7\xf6\x3b\x7a\x3b\x3d\x1e\xbc\x5d\x8a\x57\xba\xc9\xdb\xa5\x37\x64\x10\xe8\x35\xaa\x4f\x19\xf2\x7a\x9b\xf0\x9e\xd7\xe6\x75\xe9\xa9\x7a\xcf\xdc\x04\x91\x81\x6e\xf2\xd1\x91\xb3\x72\x34\x1d\xf5\x6e\x64\xe9\x2c\xcb\xa0\xda\x2c\xbd\x4b\x7a\xe8\xfd\xfe\xf8\x72\xd9\x92\x72\xef\xb2\xcc\xf4\x8e\x44\x5a\x51\xd1\x49\xbd\x1b\xc7\xfa\x87\x63\x55\x8e\xb4\xdd\x8a\xec\x4e\x45\x76\x51\x81\x92\x3e\xe4\x8e\xd4\x19\xf6\x3c\x94\xf5\xba\x0f\xdd\x33\xfb\x08\x5c\x68\xa1\xf4\x30\xf3\x62\x74\x74\xd1\xe5\xbb\x0f\x39\xa2\xf7\x11\x3f\x52\x5c\x35\xb9\x21\xc9\xa2\x0f\x58\x21\xa2\x2c\xeb\x7d\x98\xe8\x8c\x8f\xe8\x54\x25\x4e\xee\x43\x2a\xfc\x8e\xe4\x4b\xb5\x8a\x3c\x9c\x3e\x3f\xe7\x01\x0c\x93\xcd\xba\x9f\xb2\x67\x77\xe4\xf0\xff\xda\x76\x97\xa7\xa2\x59\xfa\xd9\x70\xe1\x2a\xd1\x6d\xa7\xdb\x40\x89\xcb\x96\xf5\xfb\x79\x6a\x51\xce\xf3\x63\xb1\xca\x14\xdd\x4f\xa9\xe7\x3a\x14\xda\x31\x16\xcd\xe0\x92\xfb\x56\xbf\x90\xe8\xa0\x48\x12\xeb\x97\x34\x0b\xfd\xfa\x84\xb2\xda\x74\x0e\x2e\x13\xe9\x8b\x44\xba\x8a\x1b\x5e\xba\x2a\xf7\xeb\xc3\xb5\xba\xb3\xf6\x1c\xfd\x96\x70\xd4\x91\xe9\x2c\xc6\x22\x22\x76\xcb\x49\xa1\xa3\xae\xf2\xd7\xb6\xbb\xbc\x25\x4a\xf6\xbb\x73\x51\xb6\xc1\xad\xdf\xb2\xb2\xf6\xbb\xa3\x0e\xcf\xbe\x3f\xf4\x5b\xc1\xdf\xfd\xbe\x30\x01\x89\x1d\xb7\x19\xfd\x0d\x46\x2f\xdb\x4b\x7f\xbc\x73\xcf\x81\x08\x93\x2d\xed\xf6\xe7\xd5\x57\xa8\x95\x58\xdb\x16\x09\xfb\x23\x73\x40\x7f\x58\x52\x59\x56\x92\x6e\x17\xee\xfe\x12\x17\x64\x08\xee\xaf\x14\x96\xfd\xfd\x04\xfd\xda\x85\x78\xaf\x62\xa5\x3b\x4a\x03\xd6\x9d\xdb\xe1\xe8\xaf\xe2\x77\xfa\xcb\xd4\x7e\xde\x9b\x57\x37\xfd\xfe\xa6\xce\xd1\xf6\xd1\xb1\xe3\x77\xa7\xe3\xf7\xe8\xc2\xd8\xb7\x78\x38\x56\xe4\x96\x8f\x42\x7f\x65\xd5\xec\x2f\xab\xb6\x56\x1d\xab\xd7\x84\x01\x69\x60\x62\xdc\x69\x61\x8f\x3e\x65\xec\xe8\x28\xa6\x15\xa3\x5c\x7c\xfa\x94\xda\xa7\x23\x1c\xe9\x6b\xdb\x53\xb7\xf0\xdd\x21\x7c\xc7\xa8\x70\x98\x3e\x0d\xe7\x5c\x70\x6e\x35\x53\x9f\xd5\xdf\x7d\x08\x56\xbb\xf0\x64\x9e\x1e\xee\xe4\x06\x89\xee\xcd\x4b\xb8\x37\x91\x38\xa2\xec\xd4\x89\x47\x9f\xba\x31\x76\xe4\xd6\xad\x2e\xc0\x78\x28\xaa\x62\x1c\x11\xa2\x83\x4c\xcb\xc3\x51\x45\xe3\x48\x5c\x15\x15\xf3\x39\xa4\x52\x1e\xf0\x18\xaf\x43\x55\xf0\x0e\xf9\xad\x0e\xe6\x1e\x68\xba\xe3\x8c\xe3\xf1\x70\x0f\xa8\xba\xf2\xbd\x8f\x43\x6a\xb9\x81\x8c\x01\xa1\xb7\xf1\x77\x32\xef\x40\x6e\xc8\xfd\x2f\x0c\x59\x52\xcd\x0d\x6b\xe8\x07\x34\xf4\xa1\xcb\x4e\x37\x82\x2e\x6a\x23\x20\xdf\x4b\x94\x81\x65\x04\x19\x35\x06\x34\xf9\xa1\x28\x0c\x6e\xd8\x7f\x63\xc0\x7f\xa3\x4a\x51\x30\xc2\xed\x2e\x6f\xe6\x9e\x52\x69\x51\x7b\x5d\x0f\x78\x5d\x7f\xc3\xed\x3a\x44\x41\xe6\xd2\x81\xb4\x95\x5d\x98\x34\x82\xcc\xff\x23\xc0\xfc\x1f\x9b\x16\x3b\xbc\x86\xf2\xbb\x2c\x75\x57\xfe\x0b\xba\xf3\x8e\xf0\xf1\xd9\x3a\x54\x27\x29\xea\x34\x8f\xc8\xd3\xac\x0a\x06\x23\xca\x4d\x66\xe0\x52\xf0\xb5\x75\xb5\x55\xb7\x71\x2d\x7f\xbe\xbb\xdd\x06\x99\xa3\xa9\xbc\x57\x8c\x1e\x0f\x55\xd9\xa2\xac\xe0\x23\x4a\xb3\x32\x22\xea\x81\xc7\xa6\x72\x5b\x51\xf6\xff\x11\xd3\xfa\x6e\x2f\xa6\x43\xa8\x46\x2c\x1c\x4f\x35\xed\x6c\xb8\x18\xc8\x8e\xf8\xb5\x69\x0e\xba\xb2\x0c\x5c\x59\x3e\x71\x4f\x4d\xee\xb2\x31\x91\x98\x8a\x4b\x3a\x82\x6a\xc4\x93\x4b\xa6\xba\x62\x51\x9a\xa8\x11\xa1\x89\x1a\x43\xa5\xcf\xa2\x58\xef\x88\xd4\x5f\xab\xc8\xcb\x88\xb7\xbf\x83\x3b\x48\x71\x41\xd7\xf8\x18\x96\x87\xd3\x53\xcd\xaa\x24\x11\x6e\x24\xe6\x2e\xd6\xe5\x7d\x24\x5d\xbb\x46\xe2\xb5\x4b\xb2\xd1\x70\xde\x87\x81\xc8\xe7\x76\xa8\x6c\x5d\xba\xdc\xe5\xc5\x95\x56\x15\x65\x3b\xa2\x0f\x38\xa2\x7f\x6d\x7b\x59\x92\xac\xee\x03\x91\x43\xed\xd0\xa6\x67\x89\xd8\x23\x33\xb4\x62\x68\x13\x9c\xc0\x61\xe4\x85\x48\x2a\x6f\x56\xa4\x5b\x1d\xa5\x73\x17\x54\x90\xad\xc8\x51\x61\x14\xd4\x94\xd2\xdd\x70\x14\xa9\x4f\x46\xa1\xfa\x44\xea\xe1\x51\x14\xf5\x39\x0a\xd2\x52\x8f\xa1\xcd\xab\x52\x38\x8f\x4a\xdc\x94\x79\x79\x54\xe3\x66\x8d\x13\x39\x1c\x36\x94\xd5\xc4\xb1\x26\x9e\x73\x95\xf4\xb6\xca\x7f\x2c\x95\x7f\x57\xf1\xb0\x2a\x6d\xf4\xa8\xd4\x46\xcb\xf4\x3c\xaa\xac\x35\x03\xd9\xb7\x5a\x10\xe9\xb0\x36\x7d\xd4\x6b\xa0\xb4\xc5\xfe\xaa\x89\x91\x8e\x16\x39\x39\x61\x83\xfd\xb4\x07\xfc\xb4\x9b\x5c\x4c\x46\xf3\x39\x68\x0d\x3c\x56\x7c\x74\x34\xf9\x3f\x8f\x36\x50\x1b\x44\xe4\xb4\x19\xc6\xc6\x5c\xb0\x43\x3b\xde\xae\xe4\x36\x54\x49\x51\xfd\xb8\x26\xf6\x34\x1a\xd9\x93\xf4\xa7\xa3\x19\xbf\x1a\xf1\xab\xab\x7c\x73\x9b\x86\x72\x12\x4a\x55\xb5\xeb\xf2\xdc\x18\xcc\x0b\xd5\x65\xe6\x1e\x5d\xd7\xf3\xd1\x61\x10\xd0\xed\x61\xf4\xe2\xcf\x58\x63\x2d\x0a\xd5\x7b\x75\x1b\xf2\xcf\x8c\xa1\xd2\x71\x76\xa0\x19\x70\xa0\x69\x41\xc5\xd1\xbb\x09\x40\x67\xa2\x67\xc5\xfc\x0d\x5f\x11\x06\xaf\x08\x5d\x7e\x72\x63\xf8\x18\x0c\x1e\x03\x19\x4a\xc7\x90\xa9\x70\x0c\x9a\x9b\xcc\x64\x86\xc4\xaa\x31\x50\xd9\x25\x8a\x21\x0c\x2f\xca\x48\x2c\x2c\x2e\x96\x36\x92\xbb\x4c\xab\xcb\xae\x36\x77\x99\xd8\xe5\x9e\xc1\x90\x5a\x62\x0c\x54\x7a\x74\x1d\xf9\xa1\x4b\xe1\x18\xdf\xd1\x54\x96\xba\x63\x0c\xf3\xcf\x71\xa2\x43\xd5\x1f\xb6\x09\x61\xc0\x84\xf0\xc1\x28\x38\x5e\xc3\x88\x02\x1f\x71\xa8\x74\xf3\x30\xb3\x83\x47\x4f\x8b\xc2\xe6\x31\x0d\xe3\x04\x8c\x2a\x0f\x3b\xa4\x4b\x1f\x83\xba\x74\x15\xd9\x1b\x63\xba\xc7\xc9\xaa\xfa\x2a\x0c\x7e\xca\x20\x33\xce\xc8\x02\xb2\x62\x76\x28\x61\xb5\xff\xc5\x35\xc6\x14\xff\x34\xaa\x9f\x44\x75\x69\x86\xc6\x79\xb9\xcf\x8b\x29\xa7\x54\xbb\xd5\x77\x9c\x71\xa2\x28\xaf\x82\x65\xc6\x29\xbb\xd1\x38\x9f\x89\x26\x41\xa2\xfc\x06\x03\xe9\x9c\x9b\xe2\x3e\xc6\x39\xdd\x84\x9a\xe5\xd1\x45\x5d\x2f\x4b\x00\x17\x25\x00\x39\x19\x8c\xcb\x84\xfb\x3a\x16\x90\xfa\xce\x92\xd6\x15\x31\x9c\xaa\x9a\x5f\x32\x28\x8d\xeb\x13\x25\x5b\x54\x91\x7c\x5b\x4f\x06\xac\x27\x4d\x39\x5e\xc6\x65\x3a\x7a\x25\xa6\x98\x13\xfb\xbf\x4c\x47\x2f\xd2\x51\x99\x71\xc6\xe5\x03\x7e\x7d\x07\xbc\x25\x95\x08\xbf\x4c\x62\x2f\x92\x58\x99\x78\xc6\x25\xff\xf3\x71\xc1\xff\x7c\x1c\xda\xb8\xab\xba\xcb\x4a\x64\x90\x68\x70\x35\xf7\xd9\x98\xe4\x51\x95\x48\xaf\xe1\xb6\xef\x3c\xa8\x02\xcd\xf7\x5b\x34\x03\xbe\x4b\x4d\x91\x3e\xe3\x32\x4f\xba\x90\x89\x20\xc5\xf4\xef\xd2\x6e\xad\xff\x53\x61\xf7\x96\x7e\x60\xdc\x2b\xbd\xa4\x70\xfd\xce\x5a\xb1\x3b\xb3\x4d\x44\xfd\xb6\xc8\x7e\x17\xa6\x94\x14\x3e\xdf\xd5\xdf\x55\xa6\xbd\x14\x21\xba\xbd\x2c\x77\x65\xc2\x4b\x11\xa2\x47\x9a\xc0\xf1\xb0\x26\x87\x7c\x45\xc7\x63\x22\xf5\xb0\x3c\x47\x94\x20\xf9\x78\xd7\x1f\x5e\x2d\x86\xb8\xe7\x53\xdc\x56\xd8\x36\xd4\x67\x71\x9f\x05\xbb\x2e\xd1\xe0\xf1\x0e\x3d\x6b\x87\xba\x0a\xf0\x4b\x0d\x30\x9e\xc1\x93\xb0\x6f\xbd\xe3\x31\x09\x7b\x56\x69\x75\x1d\xc9\x47\xce\x4b\xe3\x59\x75\xb1\x5d\x65\x5d\xe9\xa9\xc6\x0b\xbf\xd5\x74\xb8\x26\xb6\x69\xf7\x1b\x90\x17\x45\x54\xc5\xd7\xd0\xf1\x76\x66\xd6\x77\x29\x6c\x29\x10\x07\x92\x69\xb4\xfc\x53\x83\xfe\x75\x13\x4b\xb1\x0a\x6f\xdf\xdb\x6d\x0f\x6b\x67\xef\x09\xbc\x72\x18\x1f\xf0\xa8\x8a\xe9\x70\x15\x78\x29\xdf\xc6\x3b\x91\xe2\x47\x14\xe0\x9d\x06\x64\xa2\x7c\xb7\x6b\xe8\x4a\xcd\x3e\xe6\x81\x54\x48\x2e\x22\x2b\xe5\xd4\x40\xb8\x43\x3c\x7e\x0a\xcc\x2a\x70\x74\x20\x35\xed\x07\x88\x8a\xa3\x4a\x81\x33\x26\xe2\xef\x92\xcb\x6c\xdb\x4c\x35\x66\x45\xc1\x67\x89\x06\x53\x49\x94\xc6\xac\xac\x6f\xeb\xd2\xb3\x1e\x6d\x70\x34\x97\x09\xb6\x40\x3e\x6f\x26\x52\x55\xe5\x38\xdb\xd9\x57\x96\xc8\x92\x5d\xd4\x54\x38\x34\xc7\x60\x71\x52\xd7\xdd\xdc\x27\x72\xa2\x72\x4f\x2f\x2e\x65\xa8\x35\x99\x50\x99\xf5\xfa\x53\xd5\xef\x52\x53\x59\x05\x0f\x77\xdb\x25\x4b\xcd\xbc\x98\x5c\x21\xaa\x25\xb9\x05\x09\xbd\x54\xe1\xf0\x95\x27\xf5\x04\x46\x36\x79\xe1\xcd\x57\xe7\x74\xbe\x38\xa7\x75\xa7\xbe\x3f\xe6\x9b\xfc\x19\x32\x58\x74\x15\xa4\x7b\x75\xff\x9a\x88\xf7\xb1\xbb\xe3\xb4\x8a\x66\x42\x45\xd3\x86\x6a\xaf\xbd\x22\xdb\xf3\xfd\xc8\x76\x1b\x5b\x02\x99\xaf\xfc\xd7\xe6\xfb\x49\x20\x6d\x04\x7f\xf5\xb8\xe9\xc5\x57\x1e\x6b\xaa\x29\x1f\x68\xd2\xc4\xb2\x81\xff\x70\xa7\xb9\x5e\xee\x9b\x0d\x3c\xe2\x10\x63\x55\xad\xc3\x37\x1b\xfa\x4c\xe8\x5d\x66\x4f\x9b\x89\x72\xeb\x55\xb5\x0c\xa7\x4e\xfc\x9c\x2c\x31\xe8\x7a\x7a\xa7\x5b\x60\x21\x53\x5d\x3a\x09\xe7\x73\xae\xb5\xd8\x2d\x86\x1c\xa5\xac\xbb\x2b\x0c\x0a\xe7\x27\x4c\xb3\xc1\xfe\x10\x73\x56\x7f\xf5\xf1\x16\x17\xe6\x9c\xaf\xa1\x7b\x21\x9e\xaa\xda\xdd\x86\x3b\xcc\xc0\xcc\x26\xc7\xe2\x95\x61\x86\xe4\x36\xb8\x83\x1e\x7b\xb3\xc2\x0c\xc5\x6d\xc8\x66\x74\xd4\xa4\xb6\xe6\x36\x24\x29\x09\x7b\xbc\x18\xaf\xcd\x68\x62\xbc\xc8\x68\xb6\xde\x28\xd6\xb9\x89\xce\xf7\x6f\xa3\xbd\x66\x67\xe2\x2e\xdb\x99\xe0\xfb\x77\x30\x6b\xb9\xf2\x89\x6f\x67\x89\xef\x5f\xe6\xbe\x4e\xf9\xdf\xd9\xe5\xf7\xe3\xbf\x9e\xff\xf9\xff\xfb\x3f\xfe\xcf\xf3\x3f\xff\xaf\xf3\xbf\xbe\x7f\xee\xff\xf1\xaf\x7f\xbd\xff\xf1\xdf\x9f\xff\x72\xff\xf7\x3f\xff\xff\xef\xe9\x9f\xe7\x9d\xff\xe5\x3f\xde\x7f\xbd\xff\xcf\x7f\xfb\x1f\xff\xba\xdf\x3f\xff\xf9\xdf\xfe\xf3\xfb\x0a\x7f\xff\x6f\x00\x00\x00\xff\xff\xf2\x2b\x7f\x90\x0a\xb6\x03\x00"); -func _ebbgb ()([]byte ,error ){return _dc (_bdca ,"GBT-EUC-V")};var _babd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\x4b\xcb\x27\xc9\xd1\xdd\xf7\xcf\xa7\xf8\x2f\xe5\x85\x3c\x15\x95\xb7\x4a\x68\x1e\x90\x75\x41\x83\x91\x6c\x3c\xbe\x81\xf1\xa2\x32\x32\x73\x68\xf0\x74\x37\x3d\x3d\x0b\x7d\x7b\x13\xe7\x57\x23\x5b\xf6\x0b\x7a\x17\x22\x34\xa7\x23\x2f\x75\x2a\x2e\x27\xb3\xfe\xcf\x77\xbf\xff\xfe\x0f\xdf\x7f\xfa\xf8\xed\xf5\xdd\x7f\xfc\xfa\xd9\x7f\x58\xdf\x5e\xfb\xe3\xa7\xf9\x75\xfd\xfc\xf9\x97\xaf\xbe\x5e\x63\xfd\xf8\xf1\xd3\xdb\x9b\x9d\xaf\xf9\xd1\xbf\xfd\xfa\x9f\x32\xfe\xd3\xfd\xe5\xed\x2d\xc6\xff\xf0\xb7\x9f\xbf\xad\x9f\xbe\xff\xb4\x3f\xbf\x12\x7e\xf3\x97\x2f\x8f\xef\xeb\xf5\xdd\x7f\x5a\x3f\x7e\xfc\xf9\xdb\xd7\xbf\xbd\x7e\xf3\xbb\xf9\x79\xac\x7f\xf3\x9a\x6b\x07\xfe\x1f\xbe\xce\xf5\xf5\xe3\xa7\x1f\x5f\xbf\xf9\xfd\x5f\x7f\xb0\xbf\xc3\x3f\xfc\xf2\xe5\xcb\xff\x5a\x3f\xad\x4f\xdf\x5e\x26\x6c\x7d\x9a\xb2\x6f\xdf\xfd\xfe\x2f\xf7\x97\xbf\xde\x3f\xad\xd7\x77\x7f\xfe\xf7\x3f\xe5\x66\xbf\xfd\x77\xe5\xb7\x7f\xd6\xbf\xe9\x9f\xfe\xeb\xfa\xfa\xf3\xc7\xcf\x9f\x5e\xf6\x6f\x8f\xa3\xfe\x1f\xf8\x3f\xff\xed\xcb\x7a\xa6\x7a\xfb\xee\xbf\xff\x97\xef\xff\xf0\xfa\x1f\xf6\xb2\xe3\x75\x96\x72\x96\xff\xf9\xe0\xff\xed\x2f\x9f\xe7\x7a\x1d\xfc\xd7\xc9\xe6\xfd\xf3\x5c\x3f\x7f\xb9\x7d\x7d\xbd\x3f\xfd\xb8\xde\x5e\xaf\x0f\xc7\xf1\xfe\x7a\xbd\x3e\x5c\xc7\x7b\xfc\xd7\xef\x2c\x1f\xef\xaf\x0f\x7f\xfa\xe3\x9f\xfe\xf8\x1e\xbb\xfc\x7f\xfc\xdf\x8c\x69\x3e\x7d\xfe\x36\xd7\x06\xd3\x0c\x1f\x6c\xbf\xbf\x2c\x46\xfc\xdf\xff\xf4\x66\xc7\xf1\xac\xfb\x71\x3e\xde\x67\x78\xb7\x15\xde\x1f\x6e\x56\xbb\xad\x5c\xef\xaf\xde\x03\x28\x1d\xc0\xdf\x5f\x96\x5a\x4e\xc2\xa6\x30\x0d\x3a\xaf\x40\x6e\x13\xb2\xcb\xfb\xcb\xea\x19\xc8\xae\x20\xf5\xfd\x75\x66\xf9\xec\x06\xd2\x02\x69\x42\x2e\x90\x15\x48\xac\x76\xb2\xfc\x19\x33\x9f\xa5\x06\xc2\xcc\x67\xf8\x24\x0b\x9f\x84\x4f\x0a\x9f\x6c\xb1\x9f\x84\x4f\x1a\xe3\xfd\x95\x5b\x8c\x4a\x63\x82\xec\xf7\x57\x39\xc2\x27\x33\x2a\xc7\xa8\xd2\x4b\x20\x8c\xca\x31\x73\x2d\xb1\xc3\x82\x4f\x09\x9f\x56\xe2\x29\x0a\x3e\x25\x7c\x2e\x8b\x51\x15\x9f\x1a\x3e\xfd\x88\xfd\x54\x7c\x6a\xf8\xf4\x16\xa3\x1a\x3e\x4d\xfc\x1c\x35\x36\xd4\x70\x6a\xe1\x64\x76\xc6\xb8\x0b\xaf\x0b\x16\xcf\xd8\xe4\x85\xd7\xb5\x21\x36\x06\x76\xbc\xba\xbc\xd2\x75\x04\x84\x57\x97\x57\xd6\x1b\xb9\xf1\xba\xe5\x55\x52\x90\x7b\xe3\x75\xcb\xab\x1e\x31\x70\xe0\x35\xe4\x55\x7b\x0e\x08\xaf\x21\xaf\x56\x62\xa0\xe3\xe5\xf2\xba\x4a\x44\x85\xe3\xe5\x7b\xbe\xbf\xac\x5b\x0c\xf4\x18\xf1\x98\x33\xa7\xf0\x9a\x0c\x9c\x7a\x79\xc7\x11\x73\x4d\x06\x4e\x79\x1d\x2d\x36\xb1\xf0\x5a\xf2\xb2\x1a\x73\x2d\xbc\x96\xbc\xce\x33\x06\x6e\xbc\xb6\xbc\xd2\x19\xd3\x6f\xbc\xb6\xef\x80\xae\x18\xb8\x27\x5e\xcf\x26\xce\xb7\x0f\xe3\xd0\xc0\x71\x68\x60\x6e\x3d\x20\x0d\x1c\x87\xbc\x4a\x0e\x2f\xc2\x7c\x28\x82\xcf\x9a\x6a\x40\x78\x11\x8c\x35\x62\x7f\x10\x8d\x83\x68\x6c\x3d\x05\x84\x97\xc2\xf1\xbc\x22\x42\x07\xf1\x38\x14\x8f\x67\x2f\x47\x40\x78\x25\x05\xed\x11\x31\x3a\x88\xbf\xa1\xf8\x4b\x16\xe4\x0c\x02\x70\x64\x42\x3b\xc8\x19\x44\xe0\x50\x04\xa6\x33\xc8\x19\x84\xe0\x50\x08\xa6\x14\xe4\x0c\x62\x70\x28\x06\x53\x0e\x72\x06\x41\x38\x14\x84\x29\x07\x39\x83\x28\x1c\x8a\xc2\x54\xda\x15\x10\x5e\x8a\xc2\x54\x73\x0c\x24\x0a\x87\xa2\x30\xb5\x54\x02\xc2\x4b\x51\x98\x5a\x8f\x81\x44\xe1\x50\x14\xa6\xab\x07\x85\x44\xe1\x50\x14\xa6\x5e\x62\x20\x51\x38\x14\x85\xf9\x88\x84\x1e\x44\xe1\x50\x14\x66\xb3\x18\x48\x14\x0e\x45\x61\x3e\x8f\xa0\x90\x28\x1c\xc3\x5b\x40\x35\x06\x0e\xbf\x04\x69\x60\x8a\x44\x1b\x04\xe6\x50\x60\xe6\x24\x72\x08\xcc\xa1\x28\xcc\x59\xe4\x10\x85\x43\x51\x98\x8b\xc8\x21\x0a\x87\xa2\x30\x17\x91\x43\x14\x8e\x55\xec\xfd\x95\xab\xc8\x59\xe5\x04\x3a\xb5\x22\x50\x12\xa4\xb9\x6a\x8f\xad\x12\xab\x43\xb1\x9a\x5b\x8e\x97\x46\xac\x0e\xc5\x6a\xbe\x52\x4c\x4f\xac\x0e\x05\x66\xbe\x7a\x7b\xfb\xe0\x04\xa6\x2b\x30\x73\xef\x16\x90\xbc\x5c\x81\x59\x8e\x92\xdf\x3e\x38\x81\xe9\x0a\xcc\x62\x51\x37\x9d\xc0\x74\xbb\xef\xf7\x57\x39\xcd\x04\x0d\x41\x1a\x78\x9e\xe7\xdb\x07\x27\x56\x5d\xb1\x5a\x52\xb0\xea\xc4\xaa\x9f\x1e\x03\x53\xb0\xea\xa7\x0f\xa0\xa1\x81\x26\xc8\x05\x69\xae\xac\xe9\x89\x68\x4f\xf5\x08\x28\xca\xb9\xa7\xaa\xb9\x14\xe4\x25\x07\x13\x4e\x90\x7b\x1a\xd7\xfb\xab\x94\x53\xd0\xe8\x40\x3d\xa0\xa2\xb9\xc6\x0d\x74\x0b\x3a\x04\x69\x13\xca\x8e\x52\xa2\xce\x3a\xd9\xe1\xb9\x94\xf7\x57\xa9\x67\x78\xe5\x52\x81\xaa\x56\x2c\x82\x9a\x20\x6d\xa2\x66\x0d\x64\x13\xca\xa1\x52\xaf\x80\xc8\x21\x57\x0e\x95\x16\xed\xc0\xc9\x21\x57\x0e\x95\x2b\x05\x13\xe4\x90\x57\xfa\x41\x4a\x6f\x1f\x9c\x20\xf7\x9e\x63\xf7\x5d\xcf\xd8\xf3\x0d\x74\xbf\xbf\x6a\x74\x3a\xef\x59\x9b\xef\x75\xbc\xbf\xea\x21\x9e\x7b\x15\x83\x4a\x8e\x7a\xe4\x43\x6d\xfa\xd7\xf6\xfa\x2f\x75\x5c\x27\x77\xbc\x47\x97\xaa\x47\x89\xfd\xf4\xb1\x80\x34\x49\x02\xda\x82\x96\x07\x74\x69\xf5\x35\x05\xa9\x67\x59\x64\xab\x93\x74\xae\xa4\xab\x56\xe2\x41\x48\x3a\xbf\xa3\xf7\xd6\xd3\x62\x8f\xb7\x9a\x2f\xa6\x5a\xc4\xa8\xdf\xea\xbe\xae\xd4\xac\xe9\x08\xea\x48\x4d\x57\x6a\x56\x25\x9d\x93\x9a\x3e\xf0\x8a\xf6\xe6\xe4\xa1\x2b\x0f\x6b\x8e\xf6\xe6\xe4\xa1\x3b\xbd\x34\xda\x9b\x93\x87\xae\x3c\xac\x35\xda\x9b\x93\x87\xae\x3c\xac\x35\xda\x9b\x93\x87\xae\x0c\xab\x2d\xda\x9b\x93\x61\xae\x0c\xab\x57\xb4\x37\x27\xc3\x5c\x19\x56\x7b\xb4\x37\x27\xc3\x5c\x19\xd6\x8e\x68\x6f\x93\x0c\x9b\xca\xb0\x76\x44\x7b\x9b\x64\xd8\x54\x86\x35\x8b\xf6\x36\xc9\xb0\xa9\x0c\x6b\x67\xc4\xe8\x24\xc3\xa6\xd2\xa9\xa5\x68\x6f\x93\x74\x9a\x4a\xa7\x96\xa3\x18\x4c\xd2\x69\x2a\x51\x5a\x6e\x31\x90\x44\x99\x09\xc1\x50\x4b\x40\x78\x29\xb8\x9b\x42\x66\x12\xdc\x53\x61\xdb\x5a\x64\xeb\x24\x6c\xa7\xc2\xb6\xb5\x2b\x06\x12\xb6\x13\xf1\x71\x45\xe3\x9a\x84\xed\x54\xd8\xb6\x1e\xf1\x3e\x09\xdb\xa9\xb0\xbd\x8e\x68\x5c\x93\xd2\x3f\x6b\xe4\xf4\x75\x44\xe3\x9a\x55\x39\x8d\xb9\x5a\x44\xce\xac\x3e\x05\xa1\x64\x82\xd5\x49\x83\x98\xad\xf5\x80\xba\xa0\x76\x03\xdd\xef\xaf\xeb\xba\xba\xa0\x01\x14\x03\xe1\x8b\x36\x32\xd5\x46\xae\x33\x4a\xff\xa4\x8d\x4c\xb5\x91\x2b\x45\xe9\x9f\xb4\x91\xa9\x36\x72\xe5\x28\xfd\x93\x0c\x9b\xca\x94\xab\x44\xf2\x4c\x52\x61\x2a\xa2\xaf\x12\x45\x6a\x12\xd1\x53\x11\x7d\xd5\x1a\xfb\x22\xa2\xe7\x3d\x03\x6a\x51\x6b\xe6\x3d\x37\xd0\xd6\x03\xc5\xf4\xf7\x62\xa0\xe6\x6a\xda\x3d\x11\x3d\x15\xd1\xd7\x15\x85\x65\x12\xd1\x73\xdc\x55\xcf\x98\x04\x35\x41\x1a\x78\xf5\xf0\x22\xc8\xa7\x82\xfc\xea\xd1\x20\x26\x41\x3e\x15\xe4\xfd\x88\xee\x39\x09\xf2\xa9\x20\xef\xca\xc7\x49\x90\xcf\xb9\x47\x40\xd1\x3d\xe7\xdc\x0e\xe4\x31\x50\xfb\x9a\x7b\x02\xc5\xc0\x53\x10\xa9\x30\x95\x0a\xfd\x8c\x06\x31\x49\x85\xa9\x54\xe8\x29\x1a\xc4\x24\x15\xa6\x52\xa1\xe7\x68\x10\x93\x54\x98\x4a\x85\x5e\xa2\x82\x2f\x52\x61\x29\x15\x7a\x3d\x4a\x40\xf2\x5a\x4a\x85\x5e\xeb\xf5\xf6\x61\x91\x0a\x4b\xa9\xd0\x5b\xd4\xf9\x45\x2a\x2c\xa5\x42\xbf\xce\x18\x48\x2a\x2c\xa5\x42\xef\x21\xc1\x17\xa9\xb0\x94\x0a\xbd\x47\xd5\x5d\xa4\xc2\x4a\x68\xde\x23\xca\xee\x22\x17\x96\x72\xc1\x0e\x8b\xa2\xb6\x48\x86\x95\xf1\x3b\xa3\xf0\x2e\xb2\x61\x65\xfc\xce\xa8\xbc\x8b\x74\x58\x05\xbf\x14\xef\x64\x91\x0f\xab\xe0\x97\xa3\xd6\x2d\x12\x62\x55\xfc\x4a\x9c\x2b\x16\x19\xb1\x2a\x7e\xd5\x62\x2c\xc1\xbe\x1e\x4d\xde\x8e\x1c\x18\x7e\x88\xf2\xa3\xd5\x18\x4b\x20\x2f\x54\xf9\x71\xd5\x60\x93\x48\x5e\xd7\x7d\x06\xd6\xcf\x2c\x2c\x09\x63\x6c\x0f\xe9\xb1\x08\xef\xd5\x5b\x9c\x82\xec\x10\x55\xbd\x55\x30\x09\xff\xa3\xc5\x58\x62\x7e\x21\xe0\xed\x88\x10\x5c\x04\xfd\x42\xc1\x9b\xb5\x98\x8f\xa8\x5f\xf7\x73\x68\x08\xb1\xb1\x08\xe8\x35\xca\x1d\x58\x8a\x4a\xbe\x46\x19\xc2\x18\x9b\xf4\x22\x89\xf2\x35\xf6\x21\x2c\xe2\x70\x8d\xfd\x60\xc6\x9e\xab\xb0\x13\x4c\x63\x73\x04\xfa\x22\xf6\x17\x27\x00\xcb\x11\x8a\x8b\xe0\x5f\x3e\xe3\x08\x60\x25\x62\x71\x79\xa4\xe3\x63\xe2\xd9\x92\xb0\x2d\x8c\xf9\x6a\x9c\x99\x16\x59\xb2\x26\xf3\x55\xbd\x23\xd2\x64\xcd\xbb\x07\xd6\xf4\x8e\x66\x48\x9c\x0f\x6b\x32\xb6\x45\xb6\x2e\xb2\x62\x2d\xc6\x5e\x0a\x65\xd2\x62\xad\x25\x0e\x2e\xc5\xf2\x5a\x03\x6c\xc4\xd1\x49\xf2\x6d\xad\xe8\x9c\x1f\xd6\x62\x3e\x15\xd0\x45\xfe\xac\xcd\x7c\xbd\xda\x3f\xed\xd6\x8b\xfc\x5a\x9b\x53\xd9\x11\xaf\x7f\x93\x60\xfb\x08\xc1\x62\xa7\xd9\x15\x98\x14\x0b\x26\x1e\xa9\x0b\x6b\xc2\x38\xe4\x59\xbc\xc2\x4d\x26\xee\x23\x74\x99\x9d\x76\x09\x93\x30\xc3\xc4\x2b\x34\x61\x2e\x8c\x75\x25\xf3\x36\x29\xbb\xad\x9e\xc2\x82\xf2\x6d\x35\x81\xdd\x3c\x7a\x17\x36\xc0\x44\x47\xd5\xba\x26\x9d\xb2\x9f\x63\x7b\xb2\x16\x18\x7b\x31\xd6\x48\xd1\x50\x36\x09\xbf\xcf\xda\x02\xcb\x29\xc6\x9e\xf5\x02\xbb\x02\x6b\x11\xb2\xfb\xac\x5d\x18\xf3\xe5\x26\x3f\xe6\x3b\x5d\xfb\xcb\x71\x52\xd8\xa7\x6b\x7f\x27\x6b\x94\x48\x95\x4d\xb9\xd8\xa9\x65\x61\x97\xb0\xc8\x9b\x30\x8b\x3d\x07\x07\x94\x90\x4d\x09\x39\x6b\xb4\x9f\x4d\x09\xd9\xb9\x8a\xfb\x96\x4b\x60\x55\xdc\x53\x56\xce\x16\x1a\x7f\x53\x56\x76\x1e\x5a\xe3\x12\x2f\x79\x14\xb0\xc2\x5e\xaa\x30\xc6\x46\x79\xb6\xf3\x3a\xe5\xa7\xfa\xbc\x29\x49\x67\x3f\x62\x5d\x4a\xd2\xa6\x24\x9d\xfd\x08\x0e\x28\x49\xbb\x3c\x7e\x21\x86\x36\x25\x69\x57\xbd\xa3\x74\xd4\xe0\xa5\xf2\x8e\x64\x62\x2c\x58\x16\xc6\xd1\xfe\x08\x89\xbb\x29\x5d\x9b\xd2\x95\x4c\xef\x9c\xd2\xb5\x29\x5d\x49\x7a\x6e\x53\xba\x36\xa5\x2b\x9d\x21\x17\x36\xa5\x6b\x53\xba\x52\x52\x6c\x50\xba\x36\x65\x2a\x65\xbd\x5f\xca\xd4\x56\x65\xb2\x54\xf4\x7e\x7b\x6b\x60\xf2\x2b\x97\xfc\x18\xdb\xe3\xf5\x59\x2a\x21\xa8\x76\xf7\x0c\x96\xf1\x2b\xc2\x0a\x58\x70\x9a\xaa\xf8\xeb\x5e\xc1\xb4\x06\xef\xb2\x3b\x6b\x4c\x13\xc6\xba\xf3\x04\x63\x6c\xa4\xe8\xa6\x14\x62\xac\xb4\x68\x42\xfb\xce\x06\x16\x63\xb3\x24\xcd\xbe\xf3\x09\x16\x3c\xb7\x74\xe0\x97\xc0\x92\x2e\xa2\xe2\x9c\xbd\xef\x9c\xc1\x62\xcf\xe5\x6a\x60\x05\xac\x30\xb6\x0a\xab\x60\xb1\xe7\x72\x66\xb0\x06\x16\xb9\x90\x8f\xc2\xba\x17\xd8\xa5\xbd\x74\xf6\xdc\xc1\xa2\x9c\xe5\x1a\xad\x69\xdf\x3a\x3c\x60\x62\x0d\xd6\x1d\x60\x91\x97\x35\x1b\xf3\x39\xd8\x64\x3e\xd6\x5d\x60\x8b\xb1\xf8\x6d\xb0\x0d\x07\xc1\xf3\x5d\xe0\x2a\x4c\xf8\x81\xc1\x55\x18\xab\xbc\xf3\xbb\xc0\x55\x1c\x68\xad\xa5\x28\xb7\xfb\x2e\xf0\x12\xc6\xea\x91\xc4\x5f\x81\x17\xd5\xb5\x7a\x24\xad\x4b\x5d\x93\x89\xb1\x7a\x5e\xea\x9a\x8c\xd5\x5c\x19\x0b\x2f\xa5\x0b\x2b\xac\x0b\x07\x6a\x57\x35\x17\xf6\x07\x07\x05\x0e\xaa\xb8\x2a\x70\xa0\x6b\xc6\x9a\x2b\xeb\x4e\xb0\xe0\xa5\xb6\xca\x9e\xe1\xa5\xe8\x0a\xcb\x9e\xfd\xc1\x4b\x85\x03\xd3\x7c\x15\x0e\x2a\x1c\x44\xdb\xdd\x77\x85\x03\xe5\x65\x3d\xe0\x85\xbc\x94\xb1\x72\x11\x43\xe4\xa5\x4c\xcc\x07\x06\x2f\xaa\x39\xe5\xe2\x5d\x52\x73\x64\x62\x0d\xe6\x83\x17\xd5\xc9\xaa\xfb\xa7\x7d\x53\x27\x65\xac\xe6\x8b\xfd\xc1\x4b\x25\x36\x8c\xb1\xf0\x52\xc5\x41\x21\x26\x2b\x1c\xd4\x09\xc6\x7c\x70\x50\xc5\x41\x31\x9e\xed\xe1\x60\x2b\xee\x93\xf6\xd7\x88\x8d\xf6\xf0\x02\x06\x2f\x4d\xbc\x94\x53\x7b\x69\xf0\xd2\xc8\x23\x62\xb2\xc1\x4b\x53\x1e\x99\xf2\xfc\x6e\xf0\xa2\x9a\x5d\x4b\x32\x61\xf0\x22\xc9\x53\x4b\xd2\x5e\x1a\xbc\xb4\x27\x5e\xb4\x67\xea\x8b\x4c\xf8\xe9\xd9\x1a\xf1\x12\xc6\x4a\xef\xf8\xc1\x55\x18\x2b\x0f\x7f\x0d\xae\xda\xcd\x7b\x03\x83\xab\xa6\x18\xba\x9e\xb1\xc4\x50\x13\x7f\xc7\xc5\xfe\xe0\xaf\x89\xbf\xc3\xfe\xf9\xe1\x7c\x4b\x82\x3d\xc6\x2a\xed\x1e\x25\x86\x89\x69\x94\x02\x37\xb4\x49\x15\xd6\xa2\x36\x74\xdf\xd0\x76\x2b\x9c\x5a\x16\xe5\x37\xb4\x85\xb1\x7c\x65\xd1\x7b\x43\x5b\x18\xcb\xad\x30\x16\xda\xee\xca\x1a\x7a\x35\x37\xb4\x85\xb1\x96\x4e\xa5\xc0\x0d\x6d\xb7\x42\x8c\x76\x70\xdf\xd0\x26\x35\x55\xae\x83\x3d\x43\xdb\x7d\xb3\x3f\xfc\xa0\x2d\x8c\x95\x52\xf1\x83\xb6\x1b\x8a\x32\x6b\xc0\xc1\xad\xfb\x64\x2b\x60\x84\x58\x18\x2b\xba\x30\xd8\xf7\x20\xc4\xc2\xc4\x9e\x45\xf9\x80\xab\x01\x57\x84\xc9\x80\xab\xa1\x10\x33\x4a\xdc\x80\xab\x41\x49\x3a\xf1\x83\x2b\xb5\xec\x6a\x84\x09\x2d\x5b\x26\xe6\x13\xa7\xb4\x6c\x19\xab\x07\x69\x31\xe0\x2a\x8c\x95\xeb\xd9\x0b\x5c\x8d\x0b\x3f\xf6\x0c\x57\xa3\x83\xe1\x07\x57\x83\x10\x83\xe7\x01\x57\x61\x62\x7f\x8c\x85\xab\x41\x88\x49\x02\xdc\x83\x10\x1b\xf0\x47\xa9\x1e\xf0\x37\x28\xdf\xa4\xd9\x80\xbf\xb1\xe1\x4a\xcf\xe1\xf0\xe7\xa4\x28\xb1\xe6\xf0\x17\xc6\xb8\x87\xda\xb7\xc3\x9f\x53\xba\x24\x1f\x6e\x64\x95\x4c\xcc\xa7\x18\xa2\x3d\xcb\x58\x33\x5a\x04\xed\x59\xc6\x4a\x6f\xf8\xc1\x9f\xda\x73\xe9\xb4\x30\xda\xb3\x4c\xf8\xb1\x2e\xfc\x85\x89\xfd\x31\x16\xfe\x5c\xad\xee\xec\xec\x05\xfe\x24\x69\xeb\x49\x19\x45\xd2\xca\xc4\x58\xe6\x83\xbf\x30\xb1\xae\xb8\x72\xf8\x73\x4a\x5c\x63\x2f\xf0\xe7\x8b\xbd\xe8\x1d\x39\xfc\xf9\xc6\x4f\x9c\x4e\xf8\x9b\x0f\x7f\xe2\x74\xc2\x9f\x64\x46\x3d\x89\x21\x64\x86\x8c\x55\x23\xd6\x26\xfc\x4d\xf1\x57\x2a\x63\xe1\x6f\xd2\x12\xc9\xcb\x09\x7f\x92\x28\xd5\x88\xb5\x09\x7f\xb3\xb2\x86\xde\xdb\x84\xbf\xd9\xc8\x69\x3d\xdb\x84\xbf\xf9\xf0\x07\x06\x7f\x93\xf8\x7b\xf6\x02\x7f\x61\x2c\x57\xf2\x72\xc2\xdf\x7c\x72\x55\x3c\x4f\xf8\x9b\x4f\x5c\xb1\x17\x78\x99\xf0\x82\x34\x5a\xf0\xb2\xc8\x4b\x5a\xc9\x82\x97\x45\xe9\x97\x44\xbe\x17\xbc\x84\xb1\x92\x2f\x71\xbf\xe0\x65\x25\x30\x71\xb0\xe0\x65\xd1\x12\x13\x7e\xf0\xb2\x28\xfd\x5d\xef\x63\xc1\xcb\x52\x5c\x35\x49\xbc\x7b\xc1\xcb\xa2\xf4\x13\xcf\x0b\x5e\x96\x4a\x7f\x22\x0e\x16\xbc\xac\x8e\xd4\xd2\xb3\x2d\x78\xd1\x49\xaf\x56\xf2\x77\xc1\x8b\x4e\x7a\xb5\x92\xbf\x0b\x5e\x16\xad\x93\x18\x5f\xc4\x55\x98\xa8\xc5\x60\xc4\xd5\x52\x6d\xaf\xc4\xf3\x82\xbf\x25\xfe\x38\x2a\xdd\x1b\xfe\x74\x7a\x2e\x99\x67\xdb\xf0\xa7\xd3\x73\x4b\x09\x0c\xfe\xc2\x58\x7e\xa4\xe5\x86\xbf\x30\x96\x9f\x9c\xd9\xf0\xb7\xd5\x03\x8e\xaa\xe7\xd8\xf0\xb7\xc9\x4b\xe2\x6f\xc3\xdf\x56\x5c\xd5\xc7\x0f\xfe\xb6\x7a\xc0\x81\x7c\xd8\xf0\xb7\x55\xd7\x2a\xf9\xb1\xe1\x2f\x4c\xec\x4f\xef\x77\xc3\xdf\x86\x3f\xe2\x6a\xc3\x9f\x8e\x3b\x2d\x21\xfb\x38\xee\xc8\xc4\x7c\x60\x70\xc5\x07\xc4\x2a\x09\xc5\xed\x03\x26\xb0\x2e\xcc\xc0\x1e\x5e\x9a\xb0\x13\x4c\xf9\x56\xd5\x8a\x07\xd2\x5c\x26\xfc\x2e\x61\x19\x0c\x69\x7e\x32\x5f\x01\x23\xdf\x8c\xb1\x15\x8c\xb8\x2a\xec\xa5\x81\xd1\x1b\x13\x63\x2f\x30\x49\xf3\xab\xff\xf3\xd3\xfd\x1e\x28\x77\x19\x6b\x49\xaf\x7f\xa0\xdc\x65\xac\xea\xc3\xcf\x1e\x28\x77\x99\xf0\x63\x5b\x0e\x46\x3b\x30\xb6\x35\xc1\x26\x5b\x60\xec\x02\xe3\x8b\x6d\x86\xa2\x0d\xa6\xb0\x6b\x52\x94\x03\x35\x2f\x63\x55\x97\x22\x7b\xa0\xe6\x07\x6a\xbe\xa9\xbd\x0c\xd4\xbc\x4c\xf8\x25\x61\xd0\x2b\x85\x5f\xf4\x11\x6d\x0f\x14\xfe\x40\xe1\xb7\x93\x35\xa0\xb7\x70\xf2\xd1\x89\x6b\xa0\xf0\x65\xac\x36\x5e\x21\x0a\x5f\x26\x42\x96\xbd\x40\x6f\x51\xd8\x35\x49\x8a\x51\xe0\x4f\xaa\xbf\xb4\xcc\xfe\xe0\x0f\xd5\x9f\x2e\xfc\xe0\x0f\xd5\xdf\x08\x27\x54\xff\x40\xf5\x27\xf8\x43\xf5\xcb\xc4\xfe\x78\x36\xf8\x43\xf5\x93\x52\x03\xd5\x2f\x13\x2d\x47\xeb\x56\xf8\xab\x94\x3d\xb5\xec\xc1\x49\x40\x26\xe6\xd3\x1a\x9c\x04\x06\x27\x81\xd6\x18\x0b\x7f\x3a\x09\x54\xe4\xc8\xe0\x24\x20\x13\x61\x27\x4e\x39\x09\xc8\xc4\x7c\xda\x0b\x27\x81\xc1\x49\xe0\x48\xac\x0b\x7f\xba\x45\xa9\x48\xa8\xc1\x2d\xca\xe0\x74\x70\x10\xee\x9c\x0e\x06\xa7\x83\x76\x31\x16\xfe\x74\x3a\xa8\x0d\xfe\x38\x1d\xc8\x58\xee\xcf\x7c\xf0\xc7\x89\xe1\x38\x79\x0e\xf8\xd3\x89\xa1\x9d\x9d\xfd\xc1\x1f\x27\x86\xc3\x98\x0f\xfe\x38\x31\xb4\xae\x77\xce\x89\x61\xb4\x87\x2b\xf9\x71\x3a\x18\x9c\x0e\x4e\xd2\x96\xd3\x81\x8c\xe5\x93\x77\xce\xe9\x60\x70\x3a\xd0\x67\xe3\x3d\x38\x1d\x0c\x4e\x07\xfa\x82\xbe\x07\xa7\x03\x99\xe0\x5e\xfb\xe3\x74\x30\x38\x1d\x1c\x2a\x5d\x83\xd3\x81\x4c\x8c\x15\x57\x9c\x0e\x64\xa2\xad\xb1\x67\xb8\x7a\x4e\x07\x07\x63\xe1\x8a\xd3\xc1\xf1\x3c\x07\x5c\xe9\x24\x50\x4e\x49\xbc\x81\xd4\xe7\xe2\x34\x9f\xe4\x02\x52\x5f\xc6\xca\xa9\xd3\xd0\x40\xea\xcb\x84\x6c\xd1\x73\x20\xf5\x07\x52\xbf\x53\xe2\x90\xfa\xe3\x7e\x62\x83\xb1\x3c\xef\x23\xeb\x79\x6f\xc8\xfa\xf1\xc8\xfa\x07\xe3\x79\x91\xf5\x07\x71\x8a\xac\x97\xb1\x7a\x3d\xfb\xe3\x79\x91\xf5\xd7\x85\x1f\xcf\x7b\x53\x9b\x0a\x7b\xe1\x79\x6f\x67\x2c\x7b\x21\x36\x24\xf5\xcb\xf1\x3c\x1b\x1c\x48\xea\xd7\xab\xb2\x06\xb1\x21\xa9\x5f\x2f\xe2\x1e\xa9\x3f\x90\xfa\x97\x64\xda\x40\xea\xcb\xc4\xba\x60\x70\x25\xa9\x5f\x13\x79\x8e\xd4\x97\x89\xf9\xf4\xde\x90\xfa\x32\xc6\xa7\xdb\x3d\x90\xfa\x03\xa9\x7f\x49\x7a\x0c\xa4\xfe\x40\xea\x5f\x92\x37\x03\xa9\x2f\x13\xa7\x3f\x3d\x2f\x52\x7f\x20\xf5\xb9\xb1\x1b\x48\x7d\x99\xc8\x5f\xc6\xc2\x1f\x52\xbf\x53\x63\x91\xfa\x32\x56\x9a\xb1\x2e\xfc\x21\xf5\x7b\xc2\x0f\xfe\x90\xfa\x9d\xfc\x45\xea\xcb\x84\x1f\xeb\xc2\x1f\x52\x3f\x4b\x86\x0f\xa4\xbe\x8c\xd5\x8c\x1f\x52\x5f\xc6\x6a\x87\x7b\xa4\xbe\x8c\xe5\xc2\x73\x20\xf5\x07\x52\x9f\x5b\xc6\x81\xd4\x97\xb1\xa2\x6f\x3c\x7b\x20\xf5\x07\x52\xbf\x51\xc3\x90\xfa\x03\xa9\x5f\xa9\xb1\x48\x7d\x19\xab\x5d\xb7\xaf\xfc\xe0\x02\x63\xe5\x20\x5e\x90\xfa\x32\x71\xac\x04\x83\x3f\x49\xfd\x7c\x9d\xec\x05\xfe\x24\xf5\x6b\x22\x26\x91\xfa\x32\x56\x39\xc6\x0c\xa4\xfe\x40\xea\xf7\x8e\x1f\xfc\x39\xb5\x5d\xf2\x66\x20\xf5\x07\x52\xff\x60\x0d\xa4\xfe\x40\xea\x73\xd4\x1c\x48\x7d\x19\xcb\xb5\xb7\x7f\x45\xbb\xe7\x24\x20\x13\xd3\xe8\x91\x38\x09\xc8\x58\x3b\x68\x93\x9c\x04\xc6\x24\x95\x75\xa1\x37\x50\xfd\xe3\x51\xfd\x84\x2c\xaa\x5f\x26\xd2\x1b\x3f\xa8\x9c\x48\x0a\x9d\x22\x06\x0a\x5f\xc6\x2a\x17\x8e\x03\x85\x3f\xa6\x94\xd8\x53\xf6\x26\x14\xe9\x3b\x4b\xb1\x67\x2f\x50\x84\xea\xe7\xe2\x6a\xa0\xfa\x65\xac\x71\x6a\x1f\xa8\x7e\x19\x2b\x87\x54\xe1\x40\xf5\xcb\xc4\x5e\x34\x1f\xaa\x5f\xc6\xda\x41\x39\x43\xf5\xcb\x04\xa6\x35\x50\xfd\x32\x51\x92\xf4\x1c\xa8\x7e\x99\x98\x4f\xfc\xa1\xfa\x65\xac\x9e\xcf\xba\xf0\xb2\x9e\x12\xa7\x14\x40\xf5\x0f\x54\x7f\xa7\xad\xa1\xfa\x65\x02\x13\x07\xa8\x7e\x19\x6b\x09\xe9\x81\xea\x1f\xeb\x29\xe9\xe2\x1e\xd5\x2f\x13\x7e\xac\x0b\x7f\x52\xfd\xf5\xa4\xad\xa1\xfa\xf9\x16\xd6\x12\x69\x86\x9a\xe7\x5b\x58\xd3\x2f\x93\x36\xdf\xc2\x30\x51\xba\x34\x1f\x6a\x5e\xc6\x9a\xd1\x36\x50\xf3\x32\x56\x8c\x96\x83\x9a\x97\xb1\x66\xb4\x35\xd4\xbc\x8c\xe5\x44\x8b\x40\xcd\xcb\xc4\xf3\x6a\x7f\xa8\xf9\x81\x9a\x7f\xa4\x25\x6a\x7e\xec\x87\x03\xe6\x83\x83\x3d\x88\x0d\xd6\x85\x03\xa9\xf9\x7c\xe8\xd2\x75\xa0\xe6\x65\xac\xf1\xd1\x69\xec\x87\x03\x6e\x74\x14\xf7\x7c\xe7\xc3\x58\x33\xc9\x16\x47\xcd\x3b\x6a\x9e\x1b\x18\x47\xcd\xcb\x44\xfb\x6b\xc2\x12\x18\x6a\xbe\x82\x65\x30\x6e\x1f\xd4\xd6\x1c\x35\xef\x5c\xb4\xeb\x27\x18\xdb\x51\xf3\x32\xf1\xbc\xac\xd1\xc0\xb8\xbd\x79\xfc\x2e\x30\xa9\x79\x53\xc9\x74\xe4\xba\x4c\xc8\x4d\xb0\x1b\xec\xe1\x8a\x67\x1b\x60\x83\xb1\x60\x0e\x26\xae\x4c\x2d\xd6\x91\xeb\x8e\x5c\xb7\x67\x2f\x0b\x4c\xb2\xe0\xd7\xe7\xd8\x60\xba\x7c\xd7\x6f\x5c\xb7\x23\xd7\x1d\xb9\x6e\x8a\x71\x47\xae\xcb\xc4\x5e\xc0\xe0\x4f\x72\x3d\x1f\x8a\x53\x47\xae\x3b\x72\xdd\x24\x41\x1d\xb9\x2e\x63\xd9\xd4\x3a\x1d\xb9\x2e\x13\x7e\x49\x18\xfc\x3d\x17\xf2\xfa\xf0\xe6\xc8\x75\xe7\x42\x5e\xbf\x7e\xd9\x8e\x5c\x97\xb1\xcc\x25\xae\x23\xd7\x65\x02\x63\x5d\xf8\x93\x5c\xcf\xa6\x98\x74\xe4\xba\x8c\x65\xeb\xac\x01\x7f\x92\xeb\x99\x8f\x2b\x8e\x5c\x97\x09\x8c\xfd\xc1\x5f\x41\x56\x19\x63\xe1\x4f\x72\xbd\x74\x9d\x94\x1d\xb9\x2e\x63\xc5\x54\xfa\x1d\xb9\x2e\x13\x63\xf5\x1c\xc8\x75\x99\x78\x5e\xf1\x87\x5c\x97\x09\x3f\xbd\x37\xe4\xba\x3f\x17\xf7\x92\x28\x8e\x5c\x97\xb1\x7a\x3c\xeb\xc2\x9f\xe4\x7a\x3e\x89\x2b\xe4\xba\x23\xd7\xf5\xcb\xde\xed\xc8\x75\x99\x98\x8f\xfd\xc1\x5f\xe5\xf6\x8b\x58\x43\xae\xfb\x73\x99\xcf\x7b\x43\xae\x3b\x72\x5d\xbf\x69\xd8\x8e\x5c\x97\x09\x69\xc9\x5e\xe0\x4f\x72\xbd\xd0\x12\x1d\xb9\x2e\x13\xf3\xe9\xbd\x21\xd7\x65\x2c\x17\xe5\xb9\x23\xd7\x65\x2c\x27\xd5\x21\xe7\x82\x5f\xc6\x32\x97\xf9\x8e\x84\x97\xb1\xcc\x2d\xa3\x23\xe1\x1d\x09\x4f\x8f\x72\x24\xbc\x37\x6a\x7b\x63\x0d\xb8\x42\xae\x23\x0b\x1c\xb9\x2e\x13\x7e\x60\x70\x85\x5c\xa7\x5e\x39\x72\x5d\xc6\xb2\x7e\x15\xb4\x1d\xb9\xee\x8f\x5c\xd7\x51\xd8\x91\xeb\x8e\x5c\x3f\xe1\x0f\xb9\x2e\x13\xfb\x63\x0d\xb8\x92\x84\xcf\xa9\xa6\x7f\x6c\xf7\x57\xff\xff\xba\xbd\x23\xf0\xf9\x25\x43\xe5\xae\x92\x5f\x32\x60\x8c\xdf\x91\x6e\x47\xe0\xfb\x0d\x1b\x12\x58\x8e\x98\x97\x89\x9d\x6a\xf7\xdc\xdb\xcb\xe4\x4e\x51\x41\xdf\xcb\x04\x19\xb8\x41\x90\xf4\x7d\xa5\x31\x39\xfa\x5e\xc6\x9a\x7e\xc9\xbd\x1d\x7d\xef\xe8\xfb\x44\x70\xa2\xef\x65\xac\x34\x7d\x1d\x73\xf4\xbd\x3f\xfa\xfe\x62\x3e\x08\xba\xb9\x4a\x7d\xd6\x80\xa0\x9b\xb3\xb3\x04\x8a\xa3\xef\x65\x2c\xa7\x8e\x1f\xc1\x84\xbe\x3f\x99\x0f\x7d\xef\xcf\x55\xbe\xce\xd8\x8e\xbe\x97\x89\x35\x44\x0b\xfa\x5e\xc6\xca\xa9\x86\xed\xe8\x7b\x47\xdf\x1f\x3a\xb3\x3b\xfa\xde\x07\xc1\x44\x72\xa3\xe5\x65\x2c\xf3\xcb\x02\x47\xcb\xcb\x84\x1f\xeb\xc2\x95\xb4\x7c\xb9\x0e\xd6\x85\xab\x5f\xaf\xed\xf1\x83\x2b\xe9\xf6\x9c\x13\x18\xbc\x48\xb7\x97\x46\xb0\xa3\xdb\x65\x2c\x67\x5e\x25\xba\xdd\xd1\xed\x08\x1e\x47\xb7\xcb\xc4\x5e\x84\xa1\xdb\x65\x2c\x67\x89\x11\x47\xb7\xcb\x84\x9f\xde\x1b\xba\xdd\x9f\x2b\x7a\x12\x14\xdd\x2e\x13\x63\xc1\xe0\xc5\x09\xab\x93\xb1\x84\x95\x3f\x5c\x29\xae\xd0\xed\x32\x96\x33\xc5\x0c\xdd\xee\x5c\xd1\x3f\x85\x06\xdd\x2e\x13\x22\x03\x3f\xb8\xe2\x8a\x3e\x13\xf6\xe8\x76\x47\xb7\x67\x8a\x0a\xba\x5d\xc6\xca\x93\x0a\xe8\x76\x99\x10\x14\xec\x0f\xfe\xa4\xdb\xdb\xc1\x3b\x42\xb7\x3b\x57\xf4\x7c\x79\x76\x74\xbb\x4c\xac\x2b\x3f\x74\xbb\x8c\x95\x8b\x9c\x41\xb7\x3b\xba\xfd\xe4\xbd\x21\xcc\x65\xac\xf0\xd5\xd5\x11\xe6\x32\x96\xf5\xd3\xb6\xed\x08\x73\x7f\xae\xe8\xf5\x69\xc5\xb9\xa2\x97\x89\xe2\xa8\xe7\x45\xac\x3b\x62\xdd\x88\x71\xc4\xba\x73\x45\xcf\x95\xba\x23\xd6\x65\xe2\x5c\xa6\xe7\xe5\x8a\x5e\xc6\x72\xa1\x10\x22\xe0\x7d\x3e\x39\xa8\xe7\xe5\x3a\x5e\xc6\x0a\xe2\xda\x11\xf0\xfc\x28\xaa\x3c\x39\x8d\x58\x77\xc4\xfa\x93\x83\x88\x75\x99\x68\x60\x7a\x0e\xc4\xba\x8c\x65\x7e\x71\xe1\x88\x75\xe7\x8a\xfe\x42\x90\x21\xd6\x1d\xb1\x9e\xf4\xf9\xc6\x11\xeb\x8e\x58\x3f\x75\xff\xe2\x88\x75\x19\xcb\x95\xe6\x8c\x58\x77\xc4\xba\x7e\x30\xbc\x1d\xb1\x2e\x13\x7e\xac\x01\x2f\x12\xeb\xb9\xd2\xac\x10\xeb\x32\xb1\x2e\x63\xe1\x45\x62\xbd\x64\x09\x64\x47\xac\xcb\xc4\x58\xf6\x02\x57\x12\xeb\x25\x3f\x18\x5c\x49\xac\xe7\xaa\x2f\xc5\x8e\x58\x97\x09\xa1\x00\x07\xf0\xc7\x15\xfd\x23\xbe\xb8\xa2\x77\xae\xe8\x5b\x06\x83\xbf\x4d\xbd\x22\x4e\x11\xf5\x32\xb1\xae\x9e\x03\x51\x2f\x63\xf5\xd0\x55\xbe\x23\xea\x1d\x01\x9f\xe0\x1e\x01\xef\x5c\xc7\x1b\x71\x80\x80\x97\xb1\x5c\x9f\xb1\x70\xf5\x08\x78\xc4\x08\x02\x5e\xc6\x72\x45\x58\x72\x1d\xef\x8f\xa8\xa7\xe6\x20\xea\x65\xc2\x8f\xfd\xc1\x95\x44\x7d\x3d\xc9\x7d\x44\x3d\x7f\x83\xd3\x12\x22\x1c\x51\xcf\x1f\xe1\xb4\x5c\xff\xa1\x1f\xc6\xff\xff\xe9\xfe\xf2\xf6\xf7\x3f\x68\xf3\x5f\xbe\x7e\x5d\x9f\xbe\xe9\x8f\xe7\xf4\x47\x6b\xaf\xb9\xf6\xc7\x4f\xeb\xef\x7f\x88\xf7\xe5\xf3\x97\x18\xa5\xff\xfd\xef\x00\x00\x00\xff\xff\xd6\xea\xb5\x3c\xb4\x37\x00\x00"); -func _ebee ()(*asset ,error ){_affg ,_ebeb :=_eabg ();if _ebeb !=nil {return nil ,_ebeb ;};_bfad :=bindataFileInfo {_ag :"UniJISX0213-UTF32-V",_bc :4404,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493008,0)};_cdfca :=&asset {_cd :_affg ,_dce :_bfad };return _cdfca ,nil ; -};func _afb ()([]byte ,error ){return _dc (_eagc ,"ETHK-B5-V")};var _cfae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xef\x2f\x3b\x92\xa7\xb5\xaf\x57\x71\x96\xc3\x62\xa8\x74\x66\xda\x8e\x90\xae\xae\xc4\xf4\xf4\x0c\x2d\x34\x80\x68\x1a\x90\x10\x8b\xb4\x9d\xd9\x2a\x89\xbe\x55\xaa\xaa\x5e\xf4\xbb\x47\xf9\x3c\x59\x80\x10\xd2\xbd\x9b\xf3\xd1\x89\x9f\xf3\xeb\xff\x11\xe1\x70\x44\xf8\xf7\x7f\xf7\x0f\xff\xf1\x1f\x7e\xf9\xc3\x5f\x7f\xfc\xfe\x7f\xfc\xf3\x1f\xe7\x3f\xde\x7f\xfd\xf1\xfc\xe1\x97\xf5\xe7\xfb\x2f\x7f\xfc\xd7\x3f\xcf\xfb\xc7\xb8\xff\xf9\x0f\xbf\xfc\xee\x77\x65\xff\xb1\xfe\x30\xff\xfa\xb7\xff\x02\xf3\x5f\xae\x3f\xfd\xee\x77\xef\xf7\xff\xf8\x6f\x7f\xf9\xeb\xfd\x2f\xff\xf0\xcb\xf3\xc7\x1f\x87\xe5\xd6\xbf\xfe\xe9\x2b\xfb\xe3\xc7\xef\xff\xa7\xfb\x9f\xff\xf0\x97\xbf\xfe\xf9\xdf\x7e\xfc\xbb\xff\x66\xfd\x71\xdc\xff\xd5\x8f\x75\x3f\x2f\xfd\x7f\xf8\xf3\xba\xff\xfc\x87\x5f\xfe\xf9\xc7\xbf\xfb\xcf\xff\xa1\xfc\xdf\xd4\x7f\xfc\xd7\x3f\xfd\xe9\xff\xbc\xff\xe5\xfe\xe5\xaf\x3f\x76\x68\xf7\x2f\x0b\xfc\xdd\xef\xff\xee\xbf\x5c\x7f\xfa\xef\xaf\x7f\xb9\x7f\xfc\xfe\x3f\xff\x87\xff\xee\xdf\xff\xfd\x3f\xfd\xdd\xbf\xff\x6f\xf9\x0b\x7f\xf8\x5f\xee\x3f\xff\xe5\x0f\x7f\xfc\xe5\x47\x29\xff\xf5\xb6\xb5\xff\x87\xfe\x3f\xff\xdb\x9f\xee\x1f\xe5\xfb\x85\xff\xed\x9f\xfe\xe1\x3f\xfe\xf8\xdf\xcb\x8f\xb2\xfd\xd8\xeb\xd1\xfb\xff\xf1\xd1\xff\xd7\xff\xf2\xc7\x75\xff\xd8\xfc\xdf\x6e\xd3\xe7\x1f\xd7\xfd\x97\x3f\x5d\xf3\xfe\xf3\xf5\xcb\x3f\xdf\xbf\xfb\xf1\xe3\xa7\x6d\xfb\xf9\xc7\x8f\x1f\x3f\xc5\xf6\xf3\xfb\xbf\x28\xe7\xf6\xf3\x8f\x9f\xfe\xd3\xdf\xff\xa7\xbf\xff\xf9\x6d\xe4\xff\xa7\xfc\xef\x8a\x3f\xf3\xcb\x1f\xff\xba\xee\x47\x1a\xbf\xf0\x53\x79\x7e\xfe\xd1\x7b\x69\xef\x47\xff\xef\xbf\xfe\xae\x6c\xdb\x57\xf5\x1f\xd6\xf7\xc1\xfe\x7e\xf0\xfe\xc3\x07\x3f\xed\xe5\xe7\x1f\x3f\xf5\xfb\xe7\x1f\x51\xce\xdf\xfd\xad\x05\x51\x7a\xfc\xfc\xa3\x6c\x5b\xdf\x5f\x5a\x4f\x69\xf9\xf3\x8f\xd8\xa3\x40\xba\x24\xdd\x6f\xb1\xb2\xe7\x4b\x0b\x3f\x8d\x0a\xed\xe0\xe7\xa2\x49\x6b\x3f\xff\x88\x16\x16\xeb\x90\xee\x49\xb1\x73\x7b\x69\xf7\x92\xb6\xde\x76\xf4\x80\x74\x43\x7a\xf8\xb5\xfd\xa4\x21\x8f\xbf\xf6\x42\xec\x51\x21\xf9\x6b\x0f\x0d\xd9\xeb\xfb\x6b\xbb\x7d\xd8\xeb\x2e\xed\xfd\xb9\xbd\x1e\xd2\x8e\x9f\x7f\x64\xc4\x09\xe9\x84\xd4\x0a\xc5\x7a\x7f\x69\x6d\x97\xb6\xbf\xed\xa5\x5b\x7b\xf3\xcb\x7e\x50\x2c\xdf\xee\xef\xdd\x4f\x5f\x88\xdc\xa8\xa0\x57\x49\xf9\x16\x3b\x3e\xda\x25\xed\x7a\xdb\xcb\xf8\xee\x7d\x48\xa2\xf7\x47\x39\xa0\x2d\x69\xeb\x9d\x94\xee\x97\xb7\xa4\xdb\x62\x6f\x57\x77\xc7\x17\xe8\xd9\x28\x16\x45\xd2\x6e\xb1\x06\xcd\xf6\xbe\x10\x47\xa1\x0b\x61\x73\xe3\xb1\x18\x9f\xa6\xbf\xf6\xc2\x5b\x00\x92\xbf\x76\x9d\x14\x3b\x18\xcb\xcb\x6e\xbd\x10\x35\xa9\xe0\x62\x16\xf6\xd9\x29\xe6\x90\xcf\x90\x16\x6f\x17\x58\x22\xfb\x4c\x49\xef\xaa\x89\x83\x8e\x4e\xc7\xe3\xde\xf8\xd2\x4a\x6f\x2b\x7d\x21\x72\xa3\xb9\xb7\x93\x70\xd3\xab\x73\x63\x62\x6e\x7b\xf5\x42\x9c\x4e\xe9\x6d\xaf\x5e\xe8\x9d\x05\xb2\xdf\xb6\xd6\xb5\x75\x3a\x09\xae\x2d\x20\xa3\x32\x92\xae\xad\xfd\x61\xe6\x4f\x87\xed\xb1\xd2\x17\xa2\xdb\xa9\xc7\x3a\xdf\xe5\x56\xb6\x73\x97\xd6\xa5\xf5\x9f\x7f\xf4\x70\x88\x1e\xfb\xfe\x42\xa4\xad\x7d\xec\xfb\x43\xdf\x0b\x4d\x7b\xec\xfb\x0b\xef\x8f\xd1\xf7\xc7\xc5\xf0\x42\x9c\x9d\x51\x7b\xa6\xa4\xdb\x62\x6f\x73\x0f\xd7\x33\xf0\xd2\x02\x5a\x91\xf6\x0e\x9b\xbf\x76\x9c\xbb\xa4\xd3\x62\x09\xad\x4a\x7b\xa7\x2f\xe9\xe8\x71\x36\x49\x4c\xdf\x79\xec\xd0\x42\xda\xdb\x85\xb2\x17\x48\x29\x69\x58\xcc\x1a\xa6\xb4\xf9\xfe\x1a\xe3\x71\x9c\x8c\xee\xe1\x5e\x3b\x8f\xb7\xf7\x87\x7b\x0d\x88\x93\xb5\x7b\xb8\xd7\x8e\xea\x50\x9e\x07\xb4\x2e\xad\xbf\x0b\x35\x68\x5b\xb5\x1d\x75\x59\x4c\xda\x2d\xed\x66\x05\x5a\xc1\x03\xa9\xd9\xd3\x4a\x17\x9a\x3d\x7d\x21\x0a\x33\x7f\x34\x7b\xfa\x42\xa4\xed\x68\xd6\xd9\x9d\x79\xd6\xd1\xd1\x1d\xb7\x17\x62\x6b\x14\xeb\xf6\xa0\x3b\x46\x8d\xa1\xec\xb6\xed\x85\xe8\x76\x5e\xc6\x78\xb8\xe7\xcf\xce\x18\xb9\xe7\x81\xc8\xc2\x50\xba\xe7\x81\xb7\x98\x35\x38\x94\x2f\x44\xdf\x19\x0f\xd9\x00\xf0\x16\xa3\xf3\xf2\x81\x43\x06\xdd\xa8\x40\x36\x00\xc4\x16\xb4\x43\x36\x70\xc8\x79\x4f\x38\xd9\x21\xe7\x05\x22\xd9\xf2\x87\x9c\xf7\x08\x78\xfb\x19\x0c\x5b\xd8\x85\x17\x22\x8b\x24\x7b\x10\xf6\xc0\x0a\xec\x41\xb8\xaf\xc2\x76\xd8\xdc\x70\x5f\x59\xa7\xad\xcd\xc3\x62\xf4\x20\x9d\xf9\x64\x97\x26\xed\x48\xa7\x2a\xed\x68\x52\x69\x7e\x9f\xde\x6c\x3f\xc6\x23\x9d\xe5\x8b\x5e\xd5\x8d\xa1\x94\xf7\x00\x3d\x76\x2a\xbd\xec\xd5\x75\x59\x8c\x1a\x2e\xdb\xfb\x42\x24\x8c\xf7\xb8\x1c\xf0\x8b\x4a\xab\x3d\xbd\xac\xf4\x85\x48\x58\xe5\x71\x7d\x95\x3e\x90\xa8\x60\x38\xe0\x2f\x44\xc2\xb1\x8f\xe1\x80\x8f\xf4\xc7\xa8\x60\x38\x6c\x2f\x74\x19\xd9\x31\x6c\xc6\x64\xc0\xab\xb3\x2c\x5b\x04\x62\xdf\x13\x39\xff\x37\xe1\xfc\xff\x27\xaf\xe3\x90\x6b\x1e\x4a\xc2\xea\x16\x53\x12\x02\x3d\x42\x92\xe3\x20\xe7\xa8\xf0\xe0\x53\xce\x71\x9e\x8f\xb4\xb7\x51\x67\x95\xf6\x42\x14\x46\xfa\xac\x74\xe7\xec\x30\x98\xb6\xbd\x0b\xf4\xec\x1f\x4d\xbe\x7c\x42\xda\x25\x31\xbd\x8d\x86\x9c\x4a\x42\x20\x62\xe3\xd7\x94\x84\x67\x6f\x16\xa3\xd2\xde\xa5\x75\x16\x8b\xa4\x90\x44\x7b\xdb\x49\x7b\x5d\xdb\x67\x14\x69\x01\xcd\x5a\x5f\xe8\xe9\xa7\x8a\xb8\x33\x98\xcb\x06\xb3\x3e\x5d\x7b\x40\xcf\x6e\x31\xe6\xf2\x4c\x7f\xad\x51\x43\xfa\x6b\x2f\x44\x6e\x0d\x92\xbf\xf6\x42\x57\x50\x9d\x2e\xda\x33\xa7\x5f\xd2\xfb\x5c\xd2\x5e\x1d\x65\x83\x9b\x9c\x2e\xda\xf3\x72\xdc\x3a\x9f\x5e\x8e\xdb\x0b\x51\x4e\x49\xd6\xf9\x42\xec\x30\xb5\xf3\xb2\xce\x17\x7a\x26\xbf\x7f\x59\xa7\xd2\xb7\x75\x8b\x39\x94\x48\xdf\x74\x5e\xdc\x01\x40\x6c\xce\xa8\x3b\xe0\xbc\xc2\x2f\x99\x97\x2b\xa5\xbd\xcb\x6c\x73\x96\x2f\xd6\xd1\x39\xbf\x0a\xf8\x74\x5a\xc1\x84\x6b\xee\xd4\x39\xad\x60\xc1\xd1\xbb\x43\xb4\x6c\xee\x62\x88\x50\xbc\xce\x65\x73\x17\xbf\xd6\xd9\x3c\xe7\xf2\xd7\x5e\x88\xc6\xe6\x39\xd7\xf7\x6b\x2c\x06\xd9\xe6\xb9\x6c\xef\x0b\xd1\xd0\x77\xce\xe5\x62\x58\x61\x31\xa6\x6a\xd9\x85\x17\xe2\x0c\x7f\xcd\x2e\xbc\x10\x25\x6d\xc7\x90\x34\xfd\x72\x87\xe6\x54\xbd\x10\x67\x5a\x81\x53\x75\xa7\xc5\x18\xf1\xdb\x5f\xbb\x61\x74\xfe\xda\xed\xaf\xdd\xac\xac\x7e\xd0\xf9\xfb\xfb\xf4\xe5\x12\x3b\x1b\xfb\xbc\x5d\x59\xcf\x66\x31\x68\x8f\x13\xff\x20\x91\xdd\x1c\xea\x14\xa7\x5b\xb2\xb3\xc4\xab\x5b\xb2\x56\x3f\xad\x6f\x43\xaa\xfb\x0f\x88\x84\xd1\xd5\xba\x4b\x42\x28\xa1\x67\x54\xc5\x2a\x50\xb6\xde\x2d\x76\x4a\x53\x11\xdd\x21\x55\x49\x76\xa1\x4b\xbb\xa5\xdd\xb4\xcd\x2f\xe9\x42\x6d\x70\x15\x55\xb6\xaa\xc0\x04\xa2\xd5\x06\x89\xb9\xaa\xee\xd2\x1e\xef\x58\x56\x77\x69\x0d\xe6\x54\xf5\xa6\x2a\x5b\x80\x08\xa4\x74\x8d\x90\x74\x59\x2c\xa1\x0d\x69\x03\x3d\x91\x6e\x05\x8c\xb9\xba\x4b\x83\x09\xac\xee\x52\x20\x9a\xbf\xe6\x2e\xad\x59\x2d\x46\x43\xd2\xf6\x26\xe7\x81\x4d\x92\xed\x48\x24\x77\xd8\xd5\xb4\x21\x2f\x44\xa4\xc5\x58\x5b\xf5\xb2\x52\x94\xa0\xea\x36\x05\x7a\xef\xb4\xcd\x6d\x5a\x87\xc5\x9c\xc0\x61\xb1\x17\x7a\xa0\x76\xd6\x61\x31\xe7\x39\x18\xb8\xe6\x3c\xb7\x93\x05\x97\xd4\xd0\xce\x4b\xda\xf5\xf3\x8f\xdc\xd0\x2a\xda\xc9\x80\x34\x27\x35\xf9\xb9\xe6\xa4\x02\xd1\x51\x17\x9a\x93\xda\x1a\xdd\xca\xfa\x36\xa4\xb5\x90\x16\xfc\x5a\x40\xa2\x5b\xcd\xd9\x4a\xfa\xd0\x9c\xad\xe6\xc0\x25\xd2\xb6\x39\x70\x40\x34\x98\x7b\x73\xe0\xda\x3b\x48\xe5\x3d\x97\x41\xf3\xe7\x5e\x78\xa5\x3a\x24\xbb\x00\xcb\x2b\x1b\x1a\x65\x93\xe5\x01\xd1\x58\x22\xcd\xb1\x6c\xaf\x94\x2b\x65\x43\xf2\x35\xe5\x18\x10\x27\x8c\xbc\x4d\x7b\xff\x42\x79\x65\x05\xb4\x29\x6d\xa2\x3d\xd2\x8e\xb9\x24\x2d\x8b\x49\xbb\xa5\xbd\xfc\x3e\x10\x01\x6d\xb2\xa4\xdb\xb2\x6d\x68\x72\x6d\xd9\xb6\x17\xa2\x23\x50\xda\xb2\x6d\xeb\xab\xb4\x43\xb3\xd2\x45\xa5\x9b\xc5\xac\x14\x26\x12\x9c\x7c\x9a\x4c\xa4\xdd\x56\xd0\xfb\xaf\x0b\xef\xe6\xf1\x06\x88\x03\xf9\xd8\x3c\xde\xb4\xbb\xf3\x2b\x6c\x82\x76\x3b\x97\x2f\x44\x83\xc7\xb4\xdb\xc1\xbf\xed\x34\xca\x54\xbb\xbf\x06\xdc\xef\x94\xb3\x67\x9b\xac\xa8\xbd\x67\x95\x52\x36\x8e\xa7\xed\x71\x01\xbd\x90\x1b\x6a\x69\x7b\x5c\x40\x2c\xd1\xb2\xd1\x9d\xee\x12\x05\x5e\x16\x02\xa9\x48\xe2\xd7\xca\x66\xb1\x53\x1a\xbf\x16\x16\xab\x92\xc2\x62\x09\x2d\xa5\xb1\x58\x58\x8e\xdd\xf5\x0e\x94\x52\x50\x9d\xba\x0b\x1e\xc8\x0d\x1d\xb4\x7b\xac\x00\x7a\xff\x9a\xb6\x24\xdd\x7e\x69\xa5\x8f\xb4\x87\x5e\x51\xa7\xba\x4c\xe7\x58\x51\x0a\xab\xb1\x7b\xac\x00\x62\x83\x39\x75\x8f\x15\xbd\xb2\x1a\x0b\xab\xb1\x57\xdb\x56\xd9\x8b\x4c\x42\xaf\x36\xed\x85\x77\xc7\x41\xb2\x69\x2f\xa4\x0b\xaf\x57\x9b\x06\x7f\x2d\x65\xb7\xd8\x2d\x8d\x79\xe9\xfe\xbe\xad\x7d\xe1\x2d\x46\xd3\x9a\xcd\x7d\x21\x5d\x9f\xbd\x39\xe0\xb0\xe1\x52\xd0\x68\xbb\x6c\x18\xc8\x38\xa9\x54\x36\xdc\xbb\x3d\x80\x9b\x74\x4f\x1a\x40\x6e\x88\x83\xee\x49\xa3\x63\x5d\x28\xa5\x4a\xb3\xbd\x2f\xa4\x06\x9d\xee\xa9\x02\x78\x8b\xd1\x5e\xd9\x04\xf0\xd2\xa8\xd5\x73\x05\x90\x1b\x82\xba\xab\x8d\x01\xb9\xc1\x9b\xba\xda\x58\x0f\xbb\xe0\xb8\x79\xfa\x00\x72\x43\x76\x77\x25\x04\xf0\x16\xf3\xd7\x9c\x98\x80\x85\xa1\xf2\x74\x0f\x24\xc0\x5b\x8c\x69\xf6\x44\x02\xbc\x67\x33\x48\xf6\x34\xec\x69\x63\xfe\x3c\x91\x00\x3d\xd2\x2f\xed\xe9\x0b\x29\xb3\xee\x6a\x85\xfd\x95\x2d\xef\x97\xd0\x14\x2e\x40\x6e\xb0\xcd\xae\x0a\xd8\xd3\xe6\x36\xda\xa6\x20\x01\xa2\x21\x5b\xba\x2c\xb2\xa7\xed\xf8\x3e\xb5\x1d\xe9\x88\xd3\x79\x35\xc5\x7e\x59\x29\x5b\xb2\x2b\x5c\x80\xdc\x92\x2f\xd5\x01\xfb\xe5\x7a\x76\x8d\xab\xdd\x01\xa1\xb5\xa5\x5f\xb6\x63\xf8\x6b\x6e\x22\x65\x10\x90\x32\xb5\x3e\xfc\xb5\x17\x4a\x29\xf0\xef\x3e\xdc\xb9\x2f\xc4\x7e\x52\xc1\x70\xae\x86\xbb\x14\x65\xb4\x7b\x72\x01\xd2\xf3\x45\x1f\x6e\x85\xe1\xa2\x71\x78\x87\x63\x39\xd8\x92\xe8\x85\x7d\xba\x8e\x5e\x88\x66\x9d\xd3\x65\xf4\x42\x29\x3b\x5a\x4a\x9f\xae\xa3\xc9\x3a\x42\x8d\xed\xd3\x1e\x28\x33\xf6\xcd\x4f\x9d\xf9\xe9\x2e\x95\x64\xd3\xa6\x0c\x84\x79\x51\x64\x00\xd1\xaa\xbf\xef\x1c\x4c\x5a\xbb\x73\x8a\xed\xca\x07\x20\x52\x2e\xb0\x6c\xed\xb2\x69\x72\x0b\xe5\x03\x90\x9b\x13\xaf\xfe\x0b\x64\xb8\x71\xd5\x7f\x81\xf7\x4b\x46\x4d\xfd\x17\xc8\x70\xf6\xd4\x7f\xfb\xb2\x53\xc5\x4f\xed\x14\x5a\xec\xdf\x7e\xcd\x4e\x61\x6a\x2a\x3b\xba\x52\xf7\x40\x07\xa4\x8c\xbd\x6b\x6a\x02\x7a\xa2\x17\x75\x4d\x4d\x40\x29\xfb\x29\xcd\x0a\x5e\x78\x15\x2b\x48\x5f\x05\x8e\x07\x82\x30\xe4\xff\x40\x74\xd6\x64\xc8\xff\x81\xe8\x6c\xc8\xd0\xac\x14\x8a\x84\x9d\xd1\x0d\x45\x02\x10\xf5\xfb\xb2\x4a\xaa\x16\x93\xd6\xa4\x35\x8a\xf9\x6b\x74\x2a\x64\x3d\x3b\xcc\x22\x64\x3d\xc1\x69\xba\x1c\xd8\x4c\xc2\xd3\x34\x90\x1b\x4b\x26\x5c\x93\xa1\xb2\x70\xa0\x3e\x85\x33\x0f\xbc\x4d\x84\xc4\xcc\xc7\xa2\xbd\xda\x95\xc2\xc9\x02\xe2\x55\xbc\x7e\x55\x6e\x87\x53\x19\x9c\x5b\x8a\xba\x4f\x78\x6e\x01\xc2\xd1\x0f\xcf\x2d\xb1\x6e\x8b\xd1\x9d\xf5\x48\x63\x53\xa0\x5c\xc5\x6d\x0f\x6f\x16\xcb\x69\x77\xb4\x55\x02\xb9\x21\x69\xe3\x76\xbc\xb0\x4b\x16\x0d\x9f\xe1\x19\x22\xb4\x4b\x22\x69\x43\xbb\x24\xd0\x3d\xa3\x84\x12\x3f\xb0\x11\x94\xb3\x58\xec\xfb\xb5\x86\x58\xa5\x69\x2e\xa9\x70\x15\x9c\x1c\xb3\xd2\x55\x90\x0a\x69\xcd\x86\xa9\x90\x06\xa2\xa0\x96\xa5\x42\x1a\xc8\x8d\xb3\x5d\x2a\xa4\x81\x52\x4e\x2c\xf9\x79\xde\xd2\x90\x84\x9b\x5f\x3e\x92\x1e\x8b\x51\xa9\x82\x1b\xc8\x8d\x83\x6d\x7a\x08\x4a\x34\xe1\x72\xc2\xab\x53\x4d\x18\x88\xda\x2d\x56\x25\x4d\x8b\x49\xb3\x21\x2f\x44\x2b\x92\x6c\x47\xb5\xa7\x88\xb8\x54\x24\x03\xb9\x31\xba\xa9\x44\xce\xe6\xaf\xb1\x6a\xb3\xf9\x6b\x0d\x31\x62\xdb\x9a\xbf\x86\x81\xa4\x9c\x70\xd7\xd4\x40\x02\xc4\xc9\xfc\xa5\x06\x92\xc4\xd0\x57\x4e\x84\x41\x6a\xe8\x03\x7a\xb0\x55\x52\x89\x9c\xee\x81\x13\xdd\x23\xdd\x03\x19\xce\x02\x2c\x3d\x95\x71\x40\xc4\x47\xf2\xd7\xd4\xd2\x4f\x96\x65\x2a\x82\x80\x9e\x0e\xb9\x5a\x7a\x62\x61\x2b\xd5\xc6\x29\x82\x80\x9e\x4e\xb3\x16\xb6\xc4\xc2\x56\x2a\x4c\x32\xb5\x2f\x00\x71\xb2\xde\x52\x09\x04\xbc\xc5\xe8\xbd\x22\x08\x88\x52\x25\xd9\x8e\xeb\xb6\x58\x40\xfb\x6a\x78\x50\x31\x99\x7a\xcd\x69\xe9\x6e\xaf\x9c\xc4\xd3\xdd\x0e\x44\x43\x8e\xa4\xbb\x3d\x87\x5d\x38\x2c\x66\x17\x06\xd6\x50\x24\x50\x2a\x81\x80\x77\x58\x5e\x92\x12\x08\xc8\x8d\xd3\x74\x2a\x81\x72\x1e\xfe\x18\xcd\x9d\xae\xad\x09\x4f\xb0\xb5\x5a\x43\x80\xd8\x6d\xad\xd6\x10\x20\xb7\x8d\x11\x9a\x0e\xc7\x74\x38\x5c\xf6\xde\x7f\x00\xef\x4c\x40\x72\x38\x3c\xb4\x54\x97\xbd\x87\x16\xa0\x6b\xf5\x4d\x85\x52\x7a\x68\xa9\x58\x87\xd2\x43\x0b\x10\x81\xde\x95\x0a\xa5\x5c\x5f\xa5\xd2\xac\xf4\x85\xd8\x9c\x2a\x6d\x26\xb9\x58\x46\xea\xf4\xa9\x6c\x01\xa2\x6e\x92\x5c\x46\x1e\x1a\x2a\x07\xd6\x94\x85\x00\x71\xc8\x1a\x3c\x34\xa4\xec\xa2\xb2\x50\x2f\xd9\x05\xf0\xaa\x67\xd2\x8a\xb4\x02\x7b\x95\x44\x7b\xaf\x1a\x16\x7b\x7f\xee\xaa\x29\x2d\xdf\xb1\xac\x92\x2e\x49\x1a\x4d\x77\x48\x43\x12\x9b\xa8\x21\x58\x2f\xd5\x70\x20\x36\x66\xf9\x72\xcf\x5f\xaa\xe1\x6e\xfa\xcb\x4d\x0f\xf4\xc4\x68\x72\xb9\xe7\x2f\xee\x33\x4b\xe3\x84\x70\x69\xb6\x07\x22\xd0\xcf\x2e\x75\xe9\xcb\x2d\xd9\x60\x3e\x97\x5b\xf2\xba\x0f\x69\x94\xf3\xce\x09\x08\xa5\xd7\x25\x1f\xbf\x1c\xa4\x4e\xb1\xe1\x20\x0d\x65\x66\x47\x63\x1d\xca\x4c\xa0\x27\x7a\xdc\x50\x66\x0e\x8f\x51\xbd\xfb\x69\x4a\x7b\x07\x49\x6b\xd3\xf0\x18\x35\x54\xfe\x35\xd5\x8c\xfe\xd1\x5e\xf9\xa8\xde\x32\x54\xfe\x87\x7d\x08\x76\xf8\xb0\x0f\x23\x18\x4c\x8d\x9b\x43\x1e\x02\xc4\x8e\x18\x1b\x6a\xce\x43\x7e\x11\x30\xd5\x21\xbf\x00\x72\x87\x5b\x0e\xf9\xc5\x50\xef\x0c\x54\xe7\xa1\xde\x09\xe4\x0e\xa7\x19\xea\x9d\x63\xd0\x2d\x19\xd7\x18\x76\x6b\xd0\x2d\x4e\x82\xc3\x4d\x3f\xdc\xe1\x2a\x99\xc3\x1d\x0e\xa4\x16\x9d\xe1\x0e\x1f\x13\x26\x15\x59\x7e\x5d\x78\x0f\x37\x2d\x90\xea\x7e\xc3\x4d\x3b\xdc\xb4\x1a\x81\x86\x9b\x16\x48\x35\xb8\xe1\xa6\x05\xa2\x6c\x92\x6c\xa6\xfa\x84\xc7\x8a\xa1\x3e\x01\xe4\x0e\x43\x1c\x2a\x0c\x43\xab\x82\xf6\xff\xe1\x36\x03\x52\xdd\x6f\x68\x55\x18\x6a\x02\xde\xc8\x0d\x57\x10\x90\xfb\x47\xb2\x07\x37\xfb\x38\x61\x92\x43\xdb\x24\x10\x1d\x1e\x36\x6e\x2b\xb8\x1f\x8b\x51\xe9\xe3\x94\xbf\x10\x0a\x92\xa1\x69\x72\xb8\x44\x93\x55\x30\x5d\xa2\xd3\x25\x9a\x2c\xdb\xe9\x12\x05\x72\x47\x0f\x9b\x2e\xd1\xe9\x41\x5c\xc3\xd3\x54\xa0\x03\x51\x8f\x77\x28\xa7\xf2\x7c\x7a\x10\x4f\x4c\xed\xd3\x83\x38\x10\x5a\xa5\xa7\x07\xf1\xe9\xde\xf6\x0e\x7b\xba\xb7\x81\xd8\x51\x9a\xa7\x7b\x7b\xba\x92\x93\x33\xeb\x74\x25\x4f\x04\xe4\xae\xbe\x34\x15\x90\x40\xa8\xcd\x4c\x17\x37\x50\x76\xf5\x94\xe9\xea\x06\xe2\x44\x11\x9a\x9e\x0b\x81\x38\xaa\x24\x7b\xf5\x42\x9c\x6c\xb2\xe9\x1d\x39\xf0\xfe\x18\xcd\xf5\x92\x1c\x88\x06\xaf\x9b\x5a\x2b\x81\x28\xe8\xf3\xd3\x03\xe5\x44\x4e\xef\x1b\xfa\xd8\x54\x4e\x03\x3d\xbe\x1f\xbb\x24\x5d\x68\x72\x7e\x69\x9f\xb0\x4c\xee\x1b\xe6\x85\xa9\x35\x0d\x88\x8d\x03\xda\xf4\xf0\x08\x44\xa0\x69\x4c\x0f\x8f\x40\xb4\x90\xe4\xec\x21\xe0\xf7\x0d\xb3\xc1\x54\xc0\x4f\xaf\xd0\xd8\x08\x53\x01\x0f\x74\x0f\x24\x53\xf9\x3e\xdf\xcd\xf7\x7e\xc9\x92\x51\xb0\x4e\x05\x2b\x07\x81\xa9\x60\x9d\xcb\xd6\xa2\x07\x4c\x45\x15\x10\xbb\x93\xe7\xf9\x09\xe8\x9d\x63\xdc\x74\x0b\x01\x65\xd7\x48\x35\xdd\x43\x40\xee\x9b\x24\x5b\xbb\x1c\x48\x54\xc0\xa9\x90\x03\x42\xad\x65\x7a\xa4\x9a\xcf\x57\x8c\x5e\x79\x32\x02\x7a\x56\x49\x5f\xb1\x77\x61\xed\xda\xad\x96\x1b\x61\xbd\xba\x5b\xd9\x35\x35\x2d\xef\x7f\x81\xdc\x60\x91\xcb\x8b\x2e\xa0\xec\xce\xf2\xf2\xa6\x0b\xe8\x81\x9a\xbc\x7a\x93\x74\x59\xac\x41\x1b\xd2\xb0\x2b\x61\xb9\x5e\x6a\x85\xab\xdb\x10\x8c\x37\xcb\x15\xbe\x30\x90\xec\xda\x08\x96\x06\x12\x20\x0b\xba\xdd\xd2\x40\xb2\xc2\x4f\xd9\xe0\xcb\xb5\x0b\xf4\x84\x2f\x2f\xd7\xee\x82\xa5\xef\x05\xab\xec\x92\xa5\x03\xb9\xc1\xc9\x96\x2c\x7d\xc1\xab\x77\xcf\xe6\x4b\x5e\x0d\xa4\xd2\x76\xc9\xab\xd7\xcd\x3c\xef\xf6\x41\x3b\x26\x90\x05\x3d\x79\xe9\xa5\x01\x94\x7d\x6f\x16\x73\xe0\x10\x99\xc1\x86\x5c\x32\xbc\xf5\x32\xb9\xb7\x18\x0d\xb9\xbb\x34\x4f\xbb\x8c\x9b\x46\xd1\xf5\x58\xcc\x41\xf2\x04\x03\x64\xb1\xb9\xcf\x57\x8c\x9e\xee\x1c\xf8\xd6\x63\x4f\x5f\xc8\x82\x0e\x78\x3b\xcf\x37\x07\xd4\x7d\xc7\x0e\x7e\x7b\x40\x05\xb2\xa0\xdd\xdd\x1e\x50\xef\xfa\x15\x7b\xbb\x70\x57\x8b\x55\x8b\x9d\x90\xbe\x62\x4c\x96\x7e\x3c\xb7\xdc\x0d\x88\xfd\x94\x94\x92\xd2\x62\x7e\x7a\x49\x7b\x95\xdd\xde\x24\xb1\x42\xee\xf6\xfd\xda\x3b\x96\xb7\xe6\x7d\x20\x0a\x63\x74\x6b\xde\xbf\x1b\x3d\x3d\x98\x85\xdb\xa3\x09\x10\x3a\x31\xdd\xed\x91\xc4\xde\x3d\xd8\xbb\x77\xb7\xf7\x2f\xa4\x76\xdd\xdb\x03\xcc\xed\x1a\x3c\xd0\xb0\x6f\xd7\x20\x10\xc9\x2c\xdc\x1a\x01\xef\x64\x45\x1f\x68\x9e\xb7\x4c\x0a\x88\x6a\x73\x73\x4a\xf2\xd7\x58\xbd\xb7\x8b\x0b\x88\x33\x7e\xc3\xb1\xfb\xbe\xac\xff\x3a\xfc\x15\xba\x23\x5f\x03\x22\x50\x9a\x6f\xf9\xda\x8d\x9d\x6c\x3f\x60\xd6\xb7\x4c\xec\x96\x89\x9d\x7e\xe9\x10\x5e\xc3\x62\x7e\x6a\x3b\x2f\x2c\x06\x87\xc5\x96\x24\x87\x35\xa4\x39\xac\x97\x5b\x85\xc5\xe2\x59\xe6\x1e\xd3\x62\x0c\xc4\xf0\xd3\x81\xa9\x0f\xd1\x72\xab\xc2\x00\x29\xb3\xbe\x55\x61\xee\x09\x8b\xf1\xf8\x7f\x6b\xed\x02\x22\x1c\x55\x4f\x24\xc0\x5b\x8c\xd1\xf7\x48\x02\xf4\xfe\x15\x73\x35\xce\x69\x31\x9a\xab\xd1\x03\xe8\x1d\xcd\xf7\xf6\xac\x01\xe4\xc6\x49\xf1\xf6\xac\x71\x2f\xd6\xb6\x77\x2b\xb7\x0c\x16\xe8\x89\x24\xbc\xb5\x73\x00\xa1\x9e\x7e\x7b\xd4\xb8\x6f\x46\x52\x51\x7b\xab\x7c\x00\xa1\x05\xf6\xd6\xd7\xea\x96\xbf\x7a\xd4\x7f\xdc\x77\x4f\x85\x75\x78\xef\xf3\x78\xbb\x09\xc4\x81\xd1\xfb\xf1\x76\x13\xe8\xc1\x56\x7c\x3c\xfd\x03\xa9\x3f\xe1\xe3\xe9\x1f\xe8\x89\x51\xfd\x71\x73\x02\x3d\x39\x3b\x3e\x6e\xce\xa7\x3a\x42\xdd\xdf\x5f\xd2\x5e\x25\x60\x47\x41\x79\x3c\x2e\x3c\x8d\xc5\x76\xb2\x3c\x9e\x66\x9d\x0d\x8b\x03\x0c\xec\xd1\xb3\xe8\x71\x9f\x9c\xd8\x2a\x1f\xf7\xc9\x83\xcd\x7b\x77\x07\x3c\xda\xbc\x81\xdc\x37\x49\x36\x44\x96\x5e\x19\xb6\x47\x96\x0e\x44\x7c\x24\xf6\xf5\x93\xa7\xc5\xde\xf5\xf1\xe8\x24\x03\x64\xa0\x64\x3d\xde\xda\x01\x65\xf7\x48\xfc\x78\x6d\x07\x74\x6f\x1e\x1f\xad\xd4\x8f\x1b\xb6\xa2\x55\x3c\x6e\x58\x20\x0e\xf6\xd0\xe3\x86\x05\xde\x62\xd6\xe0\x20\xe1\xe3\x50\xc3\x0a\x1c\x24\x2e\xfc\xf6\xca\x55\xf7\xe3\x85\x1f\x90\x81\x22\xf0\xa8\xa2\x3c\x6e\x8e\xca\x01\xea\x71\x73\x00\x51\x60\x43\x8f\x9b\xe3\xe1\x20\xbe\x57\xb8\xda\xe3\xb2\x07\xba\x77\xac\x8f\xab\x1e\x28\xbb\x86\x9f\xc7\x65\x0f\x64\x61\xd5\x3f\x2a\xf5\x8f\x3b\x41\x03\xe3\xe3\x4e\x00\xba\x6a\xed\xe3\x4e\x78\x96\xb3\x80\xc4\x7c\x5c\xd0\x40\x0f\x58\xfa\xa3\x5a\xf1\xb8\x78\xeb\xbb\xe7\x73\x63\xf1\xe6\xe6\xdc\xb7\x77\x63\xe5\x16\xd2\x1c\x38\x4c\xdc\xb9\x31\x70\x42\xe2\xd3\x9a\x1b\x03\x27\x04\x3e\x97\xb9\xc1\x0f\x73\xc3\xf4\xb1\xe3\xab\x90\x1b\x92\x55\xe8\x78\x0f\xe6\x86\xe9\x23\x37\x75\xaf\x7e\xe6\x4b\x9b\x56\x8a\x59\xfd\x78\x07\x29\x37\x74\x2f\x21\xcb\xc9\x97\x58\xd5\x73\x93\x83\xe0\x5c\x90\x1b\x63\x29\x64\x79\x8f\x76\xb9\x31\x94\xb9\x61\x25\xd8\x7b\xe5\xd3\x65\xa5\x8b\x9b\xf9\x9d\x1e\x70\x7c\x11\xb2\xd8\x8c\x65\x3f\x71\xb0\xdc\xf1\x55\xcd\xed\xfe\x68\xf6\x9d\xa6\xdd\xf6\xfd\xb6\x07\x49\x3b\x1e\x7b\xf0\x20\x81\xce\x06\xc9\x1e\x28\xe0\xb9\xf9\xcb\x0d\x01\x2f\x64\x39\xa8\x14\x01\x9f\x9b\x13\x13\x2f\xfb\x4c\xfd\x94\xdf\xea\xa4\x25\xb4\x5d\xda\xcb\x55\xb0\xa4\x64\x79\x8f\x37\x2f\xd0\xd3\x78\x8f\x34\x59\x30\x6e\x0a\x1d\xb3\x77\x16\x8c\x9b\xc2\x5b\xcc\x5f\x5b\xd2\xf4\xca\x3d\x20\xd1\xad\x82\xef\xc6\x1e\x0c\x52\xc1\x6c\x29\x24\xfe\x3e\x59\xaa\xed\xc0\x92\xb9\x23\xb1\xb2\xc0\xcb\x84\x9e\x21\xa9\x4a\x7a\x27\xe6\xa4\xa7\x05\x5e\x96\x05\xab\xc9\x1e\xaf\xf2\x9f\x05\x15\x42\xc8\xf2\x6e\xd3\x2c\x68\x10\x42\xd4\x9d\x8e\x56\x3b\x25\xcb\xc3\x3d\x22\x4b\xb5\x07\xb2\x3c\x3b\x5a\xed\x41\xb3\x07\xac\xe7\xd2\xec\x41\xb3\x07\x7c\xd9\xec\x41\xdb\x2d\x76\xfc\xaa\xe4\xce\xd2\x1c\xe9\x86\xd3\xe7\xcb\xd2\xb3\x34\xfb\xac\xba\x12\x07\x0d\x68\x5f\x03\xf4\xf3\x93\xc4\xae\x28\x9d\xcd\xce\x7d\x67\x96\xee\x40\x74\x6c\xd7\x8e\x2a\x2e\x64\x89\x17\x7a\xd9\xa3\x32\x95\xdd\x81\xf8\x1c\xac\x19\xc2\xee\x40\xa0\x6c\x1f\x41\x07\xbb\xb3\xdb\x59\xc7\x55\x92\x43\xe3\xbe\x0e\xdb\xe1\xbe\x2e\xe1\xb4\x55\x86\x35\xec\x42\xc0\x9b\xbe\x62\x4e\x9b\x27\xcc\x68\xfc\x5c\xf8\x73\xdc\x3c\xe6\x41\xd3\xc2\x8e\x7a\x76\x8c\xc6\xb0\xa6\x23\xcd\xd9\xf1\xd8\x69\x6e\x3a\xd2\xe9\x48\x77\x3e\x4d\x87\x92\xdb\xc8\x72\x30\x94\x69\x3b\x64\xfd\xd1\xd9\x02\xe9\x80\x24\xe7\x6b\x87\x0d\xd6\x9f\x45\xd6\x1f\x9d\xf5\x93\x0e\x08\xac\x1f\xc7\xa7\x2c\xe9\x80\x5c\x2e\x33\x76\x71\xb9\x5c\x66\x38\x8c\x71\x3b\x9b\xe5\x72\x74\x2f\x14\x55\x17\xe8\xe5\x8f\xbd\xf0\x6e\x34\x48\xfe\x98\x4c\x2d\x92\x1e\xc8\xd4\x80\xfc\xfa\x2e\x53\x03\xf2\x74\x19\x8f\xef\x4b\x26\x01\xf7\xb6\x2c\xc3\xc5\xc0\x8d\x22\x57\x0a\x59\x64\x7d\x45\xed\x09\x6f\xfb\x2c\xd3\x21\x9a\x0c\x91\x7d\x9f\x0e\x91\xc2\x20\xdd\xea\xd3\x79\x99\x9a\xf2\xe9\xc1\x74\x5e\x26\xac\x29\xdd\xc3\xcb\x1a\x16\x2e\x91\x29\xc9\xa9\xc2\x04\x8b\x19\x21\xcb\x72\xaa\x38\xd7\x36\x19\xc2\xb2\x19\xd8\x86\xf6\x84\xa1\x97\x65\x3b\x96\x5a\x0b\xab\x68\xb9\x64\xd4\xbb\x52\x86\xb0\x5c\xe1\x2f\xc4\x37\x92\xcb\x09\x55\x4e\xa5\x53\xb5\x9c\x51\x6c\xbc\xa7\x33\xb5\x9c\xa9\xa5\x07\x29\xa3\xb6\x1c\xef\xe5\x48\x7e\x34\x47\x72\x39\x92\x0c\xc7\x6d\x3f\x3d\xc5\xa5\xbb\xff\xb6\x57\x9c\xe2\x8e\xce\x10\xdd\xf6\x0a\x5f\xb9\x1d\xd7\xa5\x2c\xb7\x35\xbc\x90\xdf\xb6\xba\x9d\x51\x99\x7c\xba\x3e\x64\xf2\x40\x7c\x7c\x54\x26\x0f\x94\x3d\x9d\xab\xc7\x4a\x1f\xc3\x2c\x24\x59\xa9\x4c\x3e\x91\x53\x06\x72\xa4\x51\x10\x7b\x22\xa7\x8c\x82\xc8\x7d\xbc\x63\x79\x6c\xcc\xdf\xce\x0d\xb6\x10\xcd\x62\x83\xb1\xdc\xb1\xbe\x1f\x98\x17\x72\x77\xea\x81\xc0\xbf\x3a\x77\x34\x62\xa1\x1c\x9c\xf4\x73\x77\x35\x00\x89\xeb\x64\xee\xae\x86\x9d\x79\x3e\x38\x12\xe7\xee\x3c\x03\x19\x55\x52\x95\xf4\xb6\xf7\xe0\xd8\x99\xbb\xd3\x00\xc4\xd9\x20\x39\x0d\x40\xec\xaf\x3a\x92\x46\x41\xe4\xce\x19\xf6\x28\x2c\x5e\x62\x00\x3e\x08\xdc\x08\xd2\x48\x80\x3c\xb8\x4a\x3b\xd4\x33\x8e\x2a\x0d\x7f\xde\xbe\x1d\x90\x8a\xa4\x49\x31\x38\xd9\xa1\x30\x00\x62\x63\xc8\xf5\xac\xcf\xa3\xf9\x6b\x6c\xd3\xa3\xfb\x6b\x1d\x9f\x20\xe6\x14\x67\xf9\x17\x18\xf1\x12\xfc\x9a\xfc\x19\xe8\x18\x82\xf3\x90\x3f\xe3\xaa\x5e\x8e\x02\x1f\xd0\x57\x3d\x71\x1f\x7f\x69\xfc\x1c\x16\x3a\x21\xce\x62\x31\xdb\x86\x46\x75\xec\xd2\xf2\xa3\x71\xb2\xb2\x0b\x6a\x54\x07\x1e\xb2\xc7\x8e\x8c\xc1\x3b\xfc\x83\xc4\xfe\x94\xfa\x88\x0b\xe5\xd8\x11\x3b\x3a\x89\x0b\xb1\xfb\x6b\x1c\x0e\xf3\x18\x87\xc5\xde\x05\x77\x60\xb9\x16\x22\xd0\x20\x8e\x61\x05\xef\x7a\x2a\x07\xf7\xeb\x79\x8c\xef\x53\x2f\xbf\xe8\x15\x36\x93\xc4\xfb\xbb\x1c\xc4\x21\xa5\xee\xdf\x42\x6e\x08\x8f\x43\x96\x07\xbc\xc5\x18\xb8\x61\x4f\x07\x8a\x86\xc3\x3b\xec\x29\xfa\xef\xb1\xb3\x06\x0f\x95\x36\x20\xf0\xd2\xc8\x63\xda\x2b\x9c\x1c\x0e\x0e\x35\x79\xb8\xa2\x81\x38\x8e\x5f\x3f\x73\xe7\xe1\x7a\x3f\x96\xe3\xd5\xe8\x8e\xac\x08\xc8\xad\x32\x36\x72\xa2\x63\xd9\x43\xb6\xcf\xa1\xd2\x08\xf4\xb0\x37\x2a\x8d\x40\xc7\xba\x91\x87\x4a\xe3\x81\xdb\xdc\x81\x89\x37\x0f\x17\x3c\xd0\x65\x0a\x87\x9c\xe8\xb8\x9d\x10\x74\xa4\xe3\x76\x42\x30\x1e\x11\x30\x94\xc7\xed\x84\x78\x6f\xce\xbe\x3b\x6e\x87\xe6\x0e\xbf\xa4\xb9\xb7\x13\x72\x63\x24\xfc\x2a\xb8\x24\xd9\x83\xf0\x53\x7b\x80\x51\x1d\xcf\xf7\x3c\x6e\x7b\xc0\xb9\x16\x53\x62\x1e\xf7\xd7\x83\x85\x17\xa1\x1d\x70\x8a\x6e\xc7\x3e\xa4\x39\xf6\x2f\xc4\xde\xe8\x80\x0c\x11\x28\xc7\x8e\x6c\x39\xe4\x88\x40\xa8\xce\x1e\x32\xc4\xe3\xb1\xef\x6e\x9e\xc7\xbe\x73\x21\xb7\xb9\x15\x1f\xfb\xfe\x60\x70\xb4\xef\x8f\x7d\xc7\xff\xe3\xd8\xd3\x4a\xed\xe8\x0b\x3d\x6c\xee\x63\x3f\x65\x30\xdc\xfa\xe4\x21\x83\x01\x42\x66\x62\xc0\x40\x9e\xdc\x0a\x1c\xc7\x26\xed\x94\x46\x3b\xaa\xa4\x2a\x69\x5a\xec\x84\xb6\xa4\x2d\x4e\x28\x92\x6e\x49\x30\x98\xa3\xbc\x3d\x35\xfc\x40\xe8\xbd\x49\x2a\x92\x50\x8b\xd8\x9c\xa7\x2a\x34\xd0\x93\x55\x74\x62\x20\x10\x02\xfb\x4e\x9e\x2a\xd5\xc0\xfb\xfb\x16\xb3\x69\x15\x8f\x76\xa4\xf4\xa9\x56\x7d\x62\xab\x3b\xb0\xae\xe5\x89\xad\x4e\xc8\x8d\x9d\x73\xaa\x68\x9f\xf5\xb2\x98\x35\x0c\x69\x9e\x8a\xfc\x72\x4a\x9a\x70\x48\x86\x43\xde\x0a\xe4\xf6\xf5\xc9\xae\xe3\x7f\x70\x10\x86\x97\x27\x77\x91\x42\xe0\xe0\x90\x67\x73\x34\x9a\xe3\x8d\x34\x3b\x55\x9b\x81\xdc\xe0\x2e\x67\xb3\x53\x78\x09\x1e\x07\xdc\xfb\x6c\xf6\x0a\x67\xed\x03\x5e\x75\xe2\x25\x98\x27\x0a\xf7\x71\xd8\x5c\x15\xee\x53\xfb\x60\xb5\x52\xdb\x41\x10\xd4\x71\x20\xdf\x8d\xed\x10\x02\xa3\x72\x12\xe7\xf1\xc1\x5b\x8c\x5f\xeb\xb6\xad\xd3\x36\x74\x5f\xc3\x3d\x84\xb7\x18\x0d\x51\x3c\x9c\xaa\xef\xe1\x97\xb6\xad\x3b\x09\x68\xb5\x86\x80\x08\x89\xf7\x6f\x9e\xdd\x49\x40\xcb\x3f\x0e\xf4\xc4\x53\x2d\x1f\x08\xac\x39\x79\xaa\xe5\x1b\x3c\x72\x1c\x6c\x0e\x83\x47\x84\xe8\x6c\x04\x02\x49\x3e\x88\x9d\xad\x6c\x38\x89\x10\xd5\x65\x14\x76\x14\x7f\xf6\xe3\x38\xfd\xd2\xe6\xe2\xcf\x8e\x71\x3b\xcf\xb0\xb5\x18\x6e\x30\xa8\xe7\x19\xb6\x16\xe3\xc8\x71\xf8\x6b\x97\x75\xbe\xd0\x3b\x87\x33\x03\x40\xf2\xe4\xde\xf4\x38\x50\xf2\xcf\x61\xa5\x03\x7b\x17\xb2\xf7\x54\xfa\x00\xe5\x38\xac\x41\xf1\x03\x44\x75\x85\xab\xed\x9c\xc3\xbe\xc3\x79\x4e\xd5\x66\x20\x76\xf4\xd0\x53\xb5\x19\xe8\xdd\xa6\x69\x31\x38\xf1\xa0\x3a\x0e\xd4\x98\x73\xba\x9c\x5f\x48\x62\x0b\xf3\x54\x6b\x26\x3e\xa3\x1c\xf8\x80\xa4\x01\x1a\x42\x84\x5b\x48\x3d\xf4\x5c\xec\xee\xd3\xb5\xab\x6a\x03\xf4\x48\x8a\xc9\xe9\x0d\x82\x38\x3c\x19\x1a\x04\x91\xd5\x15\x78\x22\xb6\xab\x2b\x10\x08\x3c\x5b\xb2\xba\x02\x0d\x3e\x38\x2a\xc6\x11\x83\x0f\xb2\x12\xf2\x7a\x54\x36\x56\x75\x02\x81\x20\xba\x28\xab\x07\xb7\xca\xf5\xc7\x81\x49\x2d\xab\xfa\x43\x35\xc6\x0c\x56\x5c\xb5\xc8\x00\xa9\x7c\xa9\x97\x15\x38\x59\x78\x5a\xa4\x0e\xfe\x42\x0f\xf4\xba\xea\x64\x55\x8e\x3d\x47\x6d\xb4\xcd\x63\x0f\x10\x5a\x3d\xaa\x3a\x40\x55\x44\x57\xf8\x51\x55\x44\x03\x89\x55\x3a\xab\x32\x18\x28\x47\xcd\xdf\x70\xe0\xae\xea\xa4\x40\xaa\x82\x55\x4f\x28\x40\x1e\x21\xc9\x96\xab\xb9\x56\xdb\xa4\xe6\x0a\x44\xab\x92\x58\x66\xf5\xfe\xea\x7f\x27\xae\x3a\x71\x40\x1e\x21\xc9\x0a\xb8\xb8\x39\x9a\x13\xc2\xc5\x8d\x10\xc5\x71\xe0\xe2\x26\xab\x42\xaf\xc1\xf7\xab\x42\xaf\x1a\x1e\xd3\x1a\x24\x7f\xed\x61\x9d\xb5\x9d\x61\x7d\xbe\x4f\x03\x67\x15\x06\x9f\x7b\xbc\xac\x8a\xae\xe6\x02\x52\x74\x55\x75\x63\x56\xad\x01\x17\x49\xa4\x44\x39\x1a\x5c\xad\xc9\xf9\x81\x3c\x8b\x24\x9a\xdb\xf0\xd1\x3a\xec\x7d\xd3\x40\xd0\xf4\xd1\x0a\x49\x4b\x12\xf3\xd6\x10\xc8\x46\x52\xa4\x3e\xf4\x87\x86\x3f\x7d\xe8\x13\x5f\xed\x72\x68\x12\xd2\x59\x5b\xc8\x83\xa5\xd7\xb9\xcc\xc9\xde\xa8\xd5\x25\xda\xdb\x94\x86\x20\x69\x15\xd2\x92\x44\x57\xb9\x51\xcc\x2e\x03\x07\x52\x9e\xde\x65\xe0\xfa\x6f\x1f\x81\x78\xd4\x7f\x3b\x3b\x61\x1e\x47\x70\x42\xeb\x18\x8c\x85\xc4\xea\x9b\x5d\xa3\x01\x10\x1d\x85\x5c\xaf\xe6\xd4\x85\xf9\xc0\x09\x27\x75\x61\x16\x7a\xa0\x93\xea\xc2\x9c\xba\x30\x1f\x5a\x2a\x75\x61\x16\x82\x2b\xed\xd4\x85\x39\x75\x13\x3e\x88\x28\x4d\xdd\x84\x85\x3c\x30\x8f\xe8\x26\x9c\x9d\xe8\x86\xc3\xc3\x63\x57\xa5\x02\xa2\xdb\x0e\x35\x2a\xfd\x62\x0f\xac\xfb\xa9\x5f\xac\xd0\x13\xf5\x5e\xbf\xd8\xd4\xbb\xf5\x48\x66\x46\xef\xd6\xc4\x47\xb5\x9c\xb8\x6e\xa5\x4e\xaa\x42\x72\x31\x96\xfa\xa8\x66\xe0\x83\x73\xe2\x8a\x98\x81\x0f\x8e\x10\x1d\xa6\x1b\xf8\xe0\x64\xe0\x07\x71\x6e\x2c\xcc\xc0\x0f\x42\x88\x0d\x0e\x1b\x6a\x37\x81\xa3\xe0\xb9\x15\x6a\xf0\xfc\x04\xa4\x22\x3e\xe4\x75\x40\x39\x37\x84\x77\xc8\xec\x80\x38\x61\x3b\xa1\xb4\xd5\x59\xf6\xfc\x6a\x70\x9e\x81\x72\xaa\xff\x86\x62\x0e\x48\x2e\xf2\x32\x14\x73\x81\xbb\xc4\xa9\x16\x11\xb8\x4b\x08\x3d\x31\x0e\x85\x87\xb1\xf0\x30\xb6\x59\x01\x53\x1f\x2f\x4b\x2c\x27\x71\x45\x19\xf2\x44\xe0\x3d\x84\x42\xb2\xce\x2b\x29\x16\x7c\xaa\xc1\x08\x08\x0f\xd3\xa1\xc1\x28\x38\xae\x9f\xdc\xeb\x66\x28\xc0\x80\xc0\x25\x32\xc3\xe3\x3a\x10\xc5\x2f\x3d\x64\xe9\x15\x7c\x16\xdb\x26\x83\xd5\x2b\x58\x35\x48\xaf\xe0\x8c\xf7\x58\xf4\x16\xa3\xa3\x9e\x8b\x80\xc0\x15\x39\x63\xfa\x6b\x93\xf1\x20\xc4\x3d\xf1\x24\xfe\xa0\x77\xf4\x4e\xfd\x89\x33\xb0\x07\x9c\xc5\x1a\xe4\xcd\x40\xe0\x4b\x99\x21\xef\x0d\x62\x24\xcf\x02\xff\x09\x39\x2d\x10\xdd\x05\x22\xa3\x8d\xdb\x62\xe8\x8a\xa1\x71\x05\x88\xc3\x61\xbb\xbf\x62\xdc\x39\xb1\x63\x74\x0e\x16\x52\xd5\x4b\xe7\xe0\x0c\x0e\x1c\xa7\x86\xfc\x70\x7b\x00\xa9\x22\x17\x1e\x38\xf4\x21\x3e\x8b\x9d\x97\xd1\xea\x43\x7c\xba\x28\x35\xb7\xe8\x09\x7c\x6a\x22\xd0\x13\x38\xf3\xb4\xb9\xcc\x7c\x6a\x40\x07\x62\x63\xe6\xd3\xf3\x40\xba\xb1\xf0\x5d\xc8\x74\x63\x01\x41\xec\x71\xa6\x1b\x2b\xd1\x59\xcf\x82\xc9\x32\xdb\x47\x83\x21\x31\x1e\x29\xb3\xc4\xdb\xb6\x9c\x38\x7d\xa4\xee\xb6\x42\x0f\x94\xf3\x94\xe5\x25\xee\x17\xa7\x26\x82\x54\xf3\x04\x52\xc5\x33\x55\x3c\x13\xf5\xf1\xc4\x33\x2b\x53\xf5\x11\x08\x3c\x48\x32\x55\x1f\x81\xe4\x4a\x3b\xf5\xd3\x4d\x9d\x72\xcf\x9d\x05\xa2\x53\x6e\x66\x58\x29\xab\x21\x35\xff\x02\xef\x8e\x83\x64\xa5\xc4\xd5\x9f\xbf\x25\xa6\x3b\x53\xc5\x11\x48\x95\x77\x5c\x7f\x5f\x70\x20\x98\xcc\xd4\x88\x9c\x9f\x9b\xd2\x01\xc9\x81\xc0\xae\x7c\xee\xf6\x5a\xbb\x32\x10\xc4\x54\x65\x6a\x57\xd6\x51\xf8\xdc\xd1\xa3\x75\x14\xce\xcf\x51\x38\x2d\x66\xa5\x97\xc5\x58\x54\xfa\xf1\x0a\x79\x70\x7a\xcc\xeb\x2b\xc6\xb6\xd8\xd1\xfb\xf5\xe3\x15\xd2\xf3\x5e\x0e\xdb\x31\xe4\x74\x34\x6d\xd8\x0e\xb4\xa9\x73\x6f\xd2\x5c\x53\xb8\x0c\xaa\xbb\xa7\xda\x14\x90\x04\xb9\x64\xaa\xf9\x02\xa9\xb1\x3c\x65\x1c\x89\xf5\xe4\xdc\xd1\x35\x52\xeb\x09\x90\x6a\xe0\xba\x09\x0b\x89\x97\x44\xea\x26\x2c\x94\xd3\xbb\x10\xfd\x84\x85\x3c\x9c\x70\x15\x64\xe0\x2d\xc6\x70\x78\xa7\x06\xa4\x87\x83\xd4\xfa\x8c\xb7\xef\x5b\x8c\x4e\x4d\x47\x6d\x32\x6a\x28\x29\x39\x1d\xb5\xe9\x8c\x3a\x2f\xda\x20\x81\x3c\x1c\x6f\xd5\x41\x3d\x80\x4f\xfc\x57\x52\x0f\x60\x21\xba\x93\xac\x72\x87\x87\xef\x5b\x8c\x6e\x69\xf7\x4d\xe3\xa1\x5d\x8c\x9a\x64\x72\xd9\x53\x18\x6e\xaa\x95\x03\x71\xfa\x6b\x2a\x77\x89\x1f\xe2\x79\xa0\xd2\xa6\x4c\x27\x65\x3a\xa7\x24\x47\x9c\x58\xc5\xf3\x40\x3a\xa6\xda\x1d\x90\x1e\xe4\x52\x63\x4b\xe2\x1e\x70\x1e\x9b\x34\x37\xd4\x0b\x79\x70\xda\x4d\xcd\x28\xba\x1d\x9f\x47\x61\x9a\xb5\x72\x00\xe9\x79\x4f\xb7\xe3\xd4\xed\xf8\xf4\x20\xae\xdb\x71\x5e\x84\xd3\x9e\x8e\xef\xa5\x4c\x06\x82\x98\x87\xbc\xbc\xdb\xbb\xf0\x43\x3c\x6d\xdc\xa5\xc6\x77\x99\x67\x04\x3d\xeb\xf2\xf4\x7f\x35\x7b\xcf\x1a\xbf\x3c\x63\x03\xf9\xfd\x9a\xec\x0a\x28\xe7\x81\x8e\x7d\xc9\xaf\x80\xd8\xbe\x62\xfe\x9a\x42\xff\x40\x6b\xbb\x14\xfa\x40\x54\xdb\xa1\xd0\xbf\x38\x28\x9f\x07\x0c\xf1\x92\x5f\x01\x21\x57\xbb\x3c\x28\x03\x3d\xc3\x2f\xbf\x0a\x1c\x10\xd6\x9b\xde\xc9\x79\x85\x33\xc3\x29\xe2\xf2\x84\x0a\xf4\x6e\x05\x32\x9a\x2b\x9c\x19\xf4\xd8\x4b\xa1\x0f\xe4\x51\x2d\xc6\xcc\x5c\x72\x95\x83\x63\xc2\x25\x57\x01\xf2\xe0\xbe\xed\x92\xab\x5c\xe9\x80\x70\x80\xbc\xd4\x28\x81\x3c\xaa\x5f\xda\x8e\x64\xb2\x4e\x6c\xd2\x97\x9c\x06\x48\x59\xd9\xe5\xcd\x14\x90\x38\x61\xe6\xe5\xcd\xd4\xc5\xb1\xed\x3c\x37\x69\xb7\x34\x74\x7d\x36\xfd\xe5\xb1\xed\xc2\x49\xf2\x54\x6f\xb9\x3c\x64\x03\x71\x3a\x09\xaa\xa7\x40\x14\x2b\x50\x3d\xbd\x54\x5b\x4e\x96\xe0\x25\x77\x03\xe2\xb0\x02\xd5\x96\x4b\x3d\x80\x0c\x41\x79\xa9\x07\x00\x49\x8c\x70\x5e\x6e\xd3\x8b\x8b\x9d\xf3\xb4\x57\x5e\xec\x00\x11\x45\x92\x43\xe4\xd6\x25\xeb\x4c\x5e\x6e\x5d\x20\x3d\x63\x5f\x6e\xdd\xeb\xb6\x57\xc8\xbd\xcb\x13\x17\x10\xdf\xbc\xa8\x41\xe8\x97\x7e\x9e\x88\x69\xfd\xd2\x85\x38\xd1\xf4\xf5\x4b\x17\xf2\xeb\xa8\xbb\x59\x57\xf5\x93\xb4\x36\xa9\xab\x7a\xea\x35\x7e\x9e\xd4\xa0\xd7\x78\x0e\x39\x52\xe5\x78\x3e\xec\x2a\x90\x85\xe3\xc5\x90\x23\xe9\xf2\x7c\x36\xf6\xae\x2e\xcf\x42\x12\xc0\x98\xba\x3c\xa7\xde\xc7\x27\x49\x3d\x52\xef\xe3\x9c\xa4\x0d\x3a\x1b\xac\x71\x6a\xe0\x03\x42\x36\x38\x35\xf0\xe1\x36\x5c\xce\x0e\x97\x9a\x9a\xe9\x80\x70\x91\x4f\xef\xc3\x81\x2c\xdf\x97\x43\xd2\xf0\x4b\x69\x53\x9a\xca\xee\x09\x89\xb6\x4d\xd5\x8a\xbe\xfd\x7a\x44\x77\x4e\xb5\x0e\x20\x3c\x02\x4f\x77\xf1\xec\x36\x93\x03\xce\xd4\x90\x05\xf4\x6e\x07\x55\x44\x74\x6b\x3e\x3b\x7a\xba\x6e\xcd\x39\x71\x24\x3a\xbd\x64\x9d\xea\x13\x40\x6c\x28\x7f\x53\x73\xd4\xe4\x8c\x76\x76\xe4\xc6\xf4\x8c\x36\xf5\x39\x81\xf9\x4f\xb7\xca\x24\x17\xce\xd9\x59\xca\xd3\xa5\x0c\x44\x65\x13\x4c\xaf\x6c\x27\x91\x96\x27\x69\x18\x72\x2a\xac\x80\x20\xc5\x47\x4e\xf5\xe3\x89\xed\xe2\x8c\x62\xb1\x47\x1a\x9e\xa6\xc8\xd1\xe9\xbe\x98\x77\xb5\x18\x34\x57\x1a\xd0\x3b\xcb\x60\x6a\x27\x00\x42\xa9\x3c\x95\x24\x53\xb1\x11\x08\xa6\xa9\xd8\x00\x7a\x34\xbf\xb4\xa3\x9c\x15\xcf\x40\x09\x9d\x9e\x15\xa7\x91\xf0\x9c\x8a\xa7\xca\x30\x3e\xbe\x6f\x31\x06\x44\xb3\x37\x10\x5b\x91\x64\x05\x8f\xbf\xc6\x9e\x9d\x9a\x13\x80\x20\x99\x40\xea\x16\x9c\x0b\x07\x93\x93\xbc\x61\xb9\x74\x30\x01\x82\x2c\x48\xb9\xd4\x8f\xd7\x69\xe7\xd9\x2a\x4b\xcd\x17\x88\xbd\x59\xac\x4b\xc2\xab\xe5\xfb\x32\x24\x31\xa5\xfa\x11\x2c\x6d\xe8\x4b\x1b\x3a\xcd\x5d\xda\xd0\x97\x07\x4f\x9c\xb3\x73\x79\xf0\x04\x42\x1b\xfa\xf2\xe0\xb9\x70\xec\x38\x03\x3d\x6b\xe9\xd8\x01\x04\xf1\x92\xb9\x74\xec\x58\x38\x9a\x9e\x81\xd4\x58\x8a\x2f\x20\x88\x97\xca\x85\xa3\xa9\x10\x3b\x47\xd6\xd5\x2e\x49\x0e\x5b\xf8\x6b\xb6\x0d\xdb\x72\xa0\x91\x2c\xf5\xf4\xa5\x2c\x0c\x4e\xe2\x4b\x59\x08\x04\x09\x3e\x72\x29\x0b\xf5\xa6\x3e\x35\x14\xea\x4d\x2d\x04\xf1\xae\xa9\x37\x75\xea\x4d\x7d\xe2\xac\x9e\x7a\x53\x0b\xb1\x7d\x5f\x4e\x49\x0c\x25\x21\x70\xb9\x34\xe0\x00\xd9\x58\xa8\x78\x5b\x7f\xf0\x16\x83\xe6\xfe\xc3\xa9\xfa\xa5\xf1\x73\x6a\xe2\xcb\x70\x73\xb6\xee\xf2\xe8\xbc\xc2\x1a\x8a\xc5\xac\x81\xb0\x02\x72\x0f\xe4\x52\x5f\x5f\x8a\x51\xd2\x47\xe5\x52\x8c\x02\x59\x50\x29\x97\x62\x74\xa9\x9c\xeb\x83\xb0\x54\xce\x81\x50\x92\x2c\x45\xe6\xba\xfc\x35\x74\x9e\xe5\xb1\x1b\xc8\xc2\x36\x5d\x0a\x3e\x20\x3c\x67\x2d\x05\xdf\xe2\x0a\xf4\xd4\x46\xb2\xbc\x02\x05\xd2\xfb\xc3\xe5\x15\xe8\xc2\x3f\xf6\x4c\x18\xf8\x92\x37\x00\x59\xc2\x3a\xed\xe8\x45\xfc\x84\xcb\xed\xb2\xa3\x24\x46\x39\x49\x5b\x92\x4b\x55\x1f\x08\x5c\xb3\x73\xa9\xe9\x03\x51\xd0\x45\x97\x9a\xfe\x22\xea\xe7\xcc\x53\xda\xf7\x6b\x48\x78\xd7\x8c\x0a\xfb\xe2\x06\xf4\x4c\xce\xa7\xcb\x1b\xd0\xa5\x07\xa0\x2b\xd0\x93\xfe\x52\x13\x4f\xa4\xfe\x52\x13\x5f\x26\x1e\x74\x96\x65\x6e\x6b\x3a\x7d\x6e\x22\xad\xdc\x40\x7a\x1b\xb3\x54\xce\xd7\xb2\x57\x48\xd6\xa5\x90\x03\xd2\x8b\x91\xe5\x49\x7f\x11\xba\x70\xa6\x23\xae\x01\x15\xe8\x81\x86\xb6\x54\x04\xd6\xed\xf4\xb9\x04\x55\xbb\x81\xd0\xae\xa6\x1b\xbd\x10\x07\x42\x5f\x37\xfa\x5c\x8f\x5f\x3a\xcb\xda\x4f\x97\xf6\x53\x77\x87\xc7\xfa\xa5\x3a\x4d\xd4\x61\x2e\xd5\xe9\x65\x14\x9f\xec\x48\x75\x5a\x37\xfa\xfa\x6d\x70\x6d\x68\xba\xd1\x47\xb3\x98\x8b\x81\x8b\xc4\xba\xb9\x89\xbc\x48\x04\xc2\x1b\xec\x25\x47\x5d\x2f\x17\x7d\x8b\xd9\x36\x87\xf2\xc1\x6d\xf4\xab\xd4\xa1\x44\xe8\x57\x82\x6d\x53\x0f\xfc\xbc\x31\x1c\x54\x6d\x68\xb7\x86\x03\x20\x48\x51\x90\x3a\xe5\x27\x8e\xf8\xa5\x6a\x43\xbb\x65\x96\x40\xd4\xaf\x58\x4a\x42\xc0\xb6\xed\xd7\x25\xf7\xed\x79\xe1\xc6\x13\xb9\x92\xc2\x2b\x6f\x2f\x1a\x6f\xf3\x2c\x71\x26\xbe\xd5\x43\x80\x52\xc9\x5d\x93\xb7\x8a\xc8\xad\x2b\x32\x17\x49\xb7\x17\x8d\x06\x0a\x54\x3d\x2a\x0c\x14\x10\xc2\xe3\xa3\x81\x02\x79\x57\xc7\x6b\x97\xb6\xa4\x21\xb9\xed\x8d\xf7\x85\x40\x7a\xb9\x74\x7b\x5d\x78\xc3\xd2\xeb\x86\x56\x71\xcb\xd2\x81\x20\xa3\x59\xde\xb2\x74\xe0\x2d\xc6\xaf\xe9\x8c\x07\xa4\x0e\x4d\xb7\xb7\x8a\x77\x73\x15\xc0\x12\x6e\xcf\x32\x40\x96\xf0\x4b\x07\x1a\x43\x75\xdd\x38\xb8\xdc\x1a\xaa\x81\xde\x31\x25\xde\x1a\xaa\x89\x3a\x28\x75\x3b\x6d\xc8\xd7\xde\x87\x31\xe2\x4b\xbd\x49\x88\x34\x78\x8b\x51\x83\xac\x1f\x08\x22\x17\xf3\xd6\xf4\x09\xbc\xc5\x18\x23\x6d\x9f\x40\xca\x3a\x6e\x05\x04\x90\x64\xff\xca\x5b\x01\x71\x23\x20\xaa\x86\xd4\x5b\x01\x01\x64\xe9\x92\xec\x81\x1e\x80\x88\x91\x5b\xf9\x60\xf4\x43\xc5\xcb\x3d\x8d\x7e\xc8\x3b\x5c\xa0\x30\xe1\x5b\x7b\xcf\xad\xbd\xa7\x33\x94\xea\x67\xc0\x5b\x8c\x9f\x53\x41\x03\x52\x03\xe6\xed\x69\xec\x4e\xe7\xcf\x71\x53\x18\x00\xa1\xa6\x7a\x2b\x0c\xee\x74\x1d\xc1\x74\x6e\x0d\xf7\x40\x12\x09\x94\xb7\xc7\x2c\x20\x8b\x0b\xd5\x63\xd6\x7d\x39\xba\xf0\xa1\x5b\x61\x70\x7b\x0a\x62\xc7\xde\x0a\x03\x62\x26\x4a\xd5\x3c\x74\xeb\x23\x03\x04\xa9\x36\xd2\xf8\x89\x24\x66\xe2\x2d\xc6\xf0\x6a\x0a\x02\xa2\xa2\x17\xdd\x1e\x96\x0c\x96\xa8\xda\x7d\x0d\x96\x10\x52\x2f\x1f\x83\x25\xf2\x1e\xae\x4a\xf8\xd5\xad\x34\x00\xa2\x5a\x81\xd2\x00\x88\x1d\x45\xf4\xd6\xee\x73\x0f\x47\xd7\x69\xd6\x3c\x0c\x64\xf9\x7e\xcc\xce\x3f\xce\x95\x23\x2e\xa7\x03\xa2\xa1\x3e\xdd\xba\x47\x18\x91\x50\xf5\x6b\x34\x22\x21\x1f\xf2\x16\x54\xaf\xac\x1e\xd5\x2c\x20\x2a\xd3\xfc\xa8\x65\x3d\xae\x71\x15\xec\xa7\x7d\xb4\x87\x1a\xde\x71\x7b\x5c\xe3\x86\x07\xd4\x5d\x9a\x0b\xe9\x21\xa7\x59\x25\x5c\x2a\x1f\xe7\x19\x88\x1d\xe3\xd8\xa3\xa3\x27\xce\xfb\xa5\x92\x19\x30\xf5\xde\x17\xf2\xc4\x44\xfa\xa8\x1a\x3c\x4e\x20\x71\xe9\xf9\x38\x81\x40\x12\x99\x98\x8f\x13\xf8\x38\x81\xea\x9d\xcf\xf5\x7d\x8a\xc9\xef\x2b\x76\x49\x1a\x16\xa3\x52\x85\x3e\x90\xa4\x80\xc8\x47\xa1\xff\xcc\xef\xd7\xf8\x54\xc9\x0a\x44\xc7\xe4\xf7\x28\x59\x75\xc1\xaf\x9a\x9b\x74\xc1\x17\x92\x6c\x73\xa9\x0b\x7e\x3e\xc8\xc2\xba\xb3\x44\x1e\x65\x21\x10\xa7\xbf\xa6\x2c\x7c\xf0\xd0\xa9\x3a\xcd\x3f\x7a\xe8\x00\xdd\x9b\xe7\xc7\x33\xc2\xc3\x81\xa0\x6a\x0c\x7a\xee\xaf\x86\x9b\x4a\x77\x48\x4e\x16\xf2\xb1\x6a\x42\x7c\x94\x8f\x40\x57\x4d\x7e\x5c\x35\x8f\x12\xcd\xeb\x93\x47\x89\x06\xc4\xc9\xad\xed\xa3\x44\x33\x3c\xa0\x62\xd0\xba\x0c\x0f\xb8\x36\x2c\xe6\x15\xe3\xe0\xb5\x71\x22\x10\x82\xd0\xfa\x6b\xc3\x62\x7e\x6d\x1c\x12\x2a\xe6\xde\x6b\x43\xca\x09\x79\x1e\x7e\xd9\x25\x85\xc5\x02\x5a\x4a\x73\xc8\x2d\x76\x49\xb2\xf7\xef\xae\xbc\x36\x96\xaf\xd0\x49\x19\x77\x6d\x2c\xdf\x6b\x53\x8c\x61\x98\xb9\xb6\x6a\x43\xc8\xa7\xc1\xf5\xe2\xb5\x21\xc6\xae\x8d\x08\xb5\x7a\xbc\x5c\xea\xda\xaa\x35\xe0\x5f\xbe\xed\x92\x06\x24\x85\xd1\xd1\xf8\x35\x84\x91\x10\xdc\x95\x5c\x1b\xc2\x48\x28\xf5\xe8\xb4\xad\x39\x20\x08\x23\x12\x09\x5f\x5b\xb3\x1d\xdd\x5f\xeb\xbf\x1e\xd3\x7d\x6d\xdd\xca\x34\xa8\xed\x05\x92\x95\x29\x36\xb8\xbd\xbf\xb6\xfe\xfd\x32\x0c\xa5\x31\x49\xdd\x1e\xba\x41\x49\x08\x73\x19\xc3\x21\x04\xdc\xf4\xda\xc2\x0a\x64\xd7\x47\x52\x2c\x3f\x1a\x95\x5a\x2c\xad\x94\x1c\xb7\x95\x3b\xe5\x6b\x4b\x2b\x4d\x12\xf6\x7d\x24\x2b\x95\xab\x13\x6a\x75\x6d\xe9\x94\x27\x91\x4a\x85\xb1\x49\xa7\xdc\x3d\x4b\xae\xe4\x6b\xbb\x9c\x72\xec\xef\x38\x48\x5e\xdb\xe5\x84\x70\xa9\x5a\xbf\xd5\x32\x9c\x5f\x5c\x3e\xbe\xe6\x4e\x7b\x85\xc1\xb9\x9e\x4e\xf9\x74\x65\x18\x06\xe6\x24\x4d\xbf\x5c\x56\xda\x58\x67\xcb\x4a\x17\xc1\xc9\xc1\x94\x2f\x2b\x5d\xfe\x5a\xb7\x98\xbf\xf6\x42\xb4\x9d\x2e\x2c\x7f\xcd\xcd\x48\xc0\xf9\x65\xfc\x87\x10\x24\x42\xba\x88\x05\xf9\xe9\x32\x88\xa3\x9e\x2f\xbf\xbe\x0a\x87\x99\x0b\x9f\x5f\x3a\xb0\x4b\xd8\x2f\xfc\xc6\x29\xb3\x0f\x49\xdc\xa1\xbd\x9a\xcc\x65\x92\xef\x8b\x24\xde\xfb\x09\xe5\xb1\xcc\xbb\x83\x71\xbd\xbc\x0e\x7f\x08\xd7\x36\x57\x81\x6e\x39\xd7\xf9\x32\x03\x7c\xcc\xae\x2a\xa5\xbe\x12\x82\xf0\x8b\xcb\x44\x86\x57\x7b\x45\x4b\x7d\x35\xb5\xab\x4d\x29\x2f\x8b\xa8\xe7\x5b\xa6\x5b\x86\x64\x56\xed\x3d\xe4\x5c\x24\x8f\xfa\xe9\xea\x6f\x23\xda\xf1\x7e\xe5\xd5\xf3\xc5\xbd\x6d\x72\x53\x7e\x79\x6d\x7b\x05\xe1\x5c\x24\x66\xbc\xbc\x41\xbd\xe2\x9d\xb4\xc6\x24\x04\xa1\x3a\x57\xbc\xec\xaf\x6f\x6f\x19\xaf\xe4\xae\x7c\x95\xc8\xe4\xca\xe6\x4a\xec\x5f\x57\xe2\xa6\xb6\x91\x81\xf1\x22\x1b\xce\x07\x2f\xed\xfd\x31\x53\xdb\x5c\x5e\x68\x6d\x58\xaa\x2f\x2f\xb4\xae\x34\x17\x24\xbe\x7c\x57\xba\x2a\x81\x8e\xff\xf0\x95\x18\x49\xaf\x7c\xa7\xac\xbf\xa7\xc2\x4b\xf3\xfb\x75\x61\xac\xa8\xf5\x15\x72\xd7\x85\xb1\x42\x08\x42\xa3\xae\x4b\x36\x74\xc9\x86\x5e\xad\xf0\xba\x64\x43\x1a\xc7\x2b\xc1\x2a\x97\xc6\x71\x21\x08\x3f\xba\x34\x8e\x0b\xa5\xd6\xc6\xaf\xa1\x16\x0a\x89\x4f\xf4\x75\xb9\xbd\xb1\x97\xbf\xc5\xa4\x75\x69\x86\x04\x27\xa4\x90\x94\x16\x3b\xa1\x5d\xd2\x0c\xbb\xb5\xd2\x21\x89\xfc\x01\x69\x9d\x53\xd2\xed\x97\x34\xd7\x51\xd3\x9c\x5d\x09\x5a\xbb\x34\x67\x0b\x3d\xfc\x34\xfd\xb5\x44\xb0\xe2\x43\x73\x69\xcf\x16\xb2\x14\x8b\x39\x6c\x9a\xed\x60\x16\x5a\xb8\x85\xf7\x4b\x2a\x4d\xc7\x8d\xd8\x59\xb9\xf7\x75\xd9\x8e\xcb\xa1\x64\x7b\x5c\x2e\xa2\xeb\xf9\xdb\x0b\x0e\x97\x06\x5d\x21\xb6\xa3\x41\x2a\x92\x1c\xdc\x57\xff\xbd\x86\x62\x0a\x08\xbc\x9f\x2f\x33\x94\x08\xa5\x36\x16\xa0\x29\x4a\x84\x24\xad\xfa\x35\x94\x5c\xc3\xac\x5e\x9b\x5f\x76\x49\xdd\x2f\x0b\xb4\x90\xc6\x91\x0d\xc9\x65\x6e\x13\x21\xc8\xf8\x7c\x99\xdb\x44\xc8\xf2\x75\x60\x48\x9a\xfe\xd8\x0e\x6d\x49\x73\xd0\xfc\x31\x06\x4d\xc3\x75\x25\x89\xe9\xa5\xe1\xfa\x1a\x8e\x50\xab\x94\x73\x84\x86\x59\x0b\xde\x0e\x68\x7c\xbe\xa6\xe2\xb8\x21\x10\xa6\x9d\x02\xa2\xc1\x55\xa6\x9d\x9a\xae\xdc\xc6\xe6\x9b\xae\xdc\xa9\x2f\x47\x91\xb4\x4b\x62\xda\xb1\xea\x5e\xd3\x55\x04\xe4\x61\xa5\x9c\x37\x2e\x8d\xbf\x15\xe5\xe9\xd2\xf8\x7b\x99\xac\xa2\x76\xf4\x02\x93\x55\x08\x41\xd6\xa0\xcb\x64\x15\x17\xf9\x25\x4a\xe5\x00\x76\x99\x60\x42\x08\x77\xda\x54\x0a\x01\x41\xe0\xfa\x35\x95\x42\xd3\xf1\xc0\x1b\xfb\xd2\xb0\x79\x2d\xb5\x0c\x72\xbc\x5d\xcb\x89\x01\x92\x60\xf6\x6b\x39\x31\x8b\xfc\x3a\xb5\x47\xfd\x75\x11\xbd\x38\xc3\x0a\xc9\x25\xe0\xb5\x38\xc3\x5e\x9a\x25\x2b\xc9\xb4\x2e\xcd\x92\x42\xe2\xb4\x7b\x69\x96\xbc\x34\x4b\xd6\xf0\x53\x4e\xa2\xd7\x67\x96\x44\xd4\x68\x96\xbc\x96\x02\x3f\x6c\xa7\x1c\x01\x48\x4c\xa6\x97\x86\xc4\x4b\x3b\x5f\x0d\x64\x9e\x76\xbe\x6b\x91\x59\xbc\x12\x8b\x76\xad\xb0\x56\x5c\x41\x71\x7d\xbc\x16\x9e\x84\xd7\xf2\x68\x87\x45\xfa\x22\x21\xc3\x07\x79\xc0\x5f\x4c\xcb\x70\x61\x21\x2c\x15\x8b\xf4\xa5\x89\x50\x48\x9c\x8c\x2f\xcc\x85\x3f\x5d\x9a\x03\x2b\xe9\xe9\x2e\xcd\x81\x42\xf2\x62\xc7\xa5\x39\xf0\xd2\xce\x57\x89\x05\xbf\xb4\x95\x5c\x9f\x11\x42\x55\x4d\x23\x84\x90\x04\xbd\x5f\x1a\x21\x2e\xec\x01\xa5\x62\xcf\xbd\x34\x08\x08\xbd\xb3\x6c\xb5\x07\x5c\xdf\x61\x97\x64\xb6\x97\x87\x5d\x21\x70\x31\xb9\x0c\xf5\xbf\xbe\xf3\x2f\x01\x48\x97\xe7\x5f\xa1\xbb\x44\x3d\xff\x5e\xb7\xbd\x4f\x06\xee\xb6\xf7\x40\x90\x3d\xf8\xba\xed\xfd\xad\xa6\x44\xd6\x99\xeb\x76\x8d\x02\x1d\x6b\xf9\x75\xbb\x46\x49\x12\x50\x6a\xb2\x94\x4d\x03\x20\x74\xc2\x88\x2e\x0f\x6d\x97\xc1\xda\x35\xeb\xdb\x2d\x83\xb5\x85\x20\x40\xfc\x32\x58\xfb\x7a\x34\x08\x64\xbc\x6d\x7b\x64\xf3\x40\x36\xba\xf0\xb8\x41\x3d\xb4\xb5\x0d\xc6\xec\xa1\xed\x7a\x58\x22\x0d\xbb\xd3\xf5\xb8\x44\x1e\x93\xcf\x1f\x1d\xd2\x21\x49\x3f\x1f\x2a\x0d\xdb\x81\xeb\x46\xc3\xb0\x74\x3d\x6e\x5a\x20\x49\x51\x7f\x3d\xb8\x6e\x08\x9d\xd4\xd4\xd7\x93\xd6\xc9\x0a\x69\x58\x87\xae\xc7\x15\xf2\x18\x25\xc8\xcc\x7b\x76\xbc\x08\xdf\x7e\x8b\xd1\x05\x45\x0b\x90\xad\xfa\x6b\x4b\x92\xbd\x3a\x2c\x66\xa5\xc8\x11\xbc\x4a\xae\xc7\xd1\x35\xa4\xbb\x6d\xaf\x80\x1f\x9e\x64\x84\x97\x96\xd0\x8a\xb4\x9d\x71\xeb\x90\x0e\x49\x07\xc5\xde\x85\x3f\x3c\xdd\x08\xd9\x4e\xbf\xac\x92\x6c\xc8\x3b\xa7\xc3\xf3\x88\x90\x84\x2b\x8e\xad\x5a\x69\xf5\xd7\x2a\xc5\xaa\xbf\x46\xa0\x6c\xaf\xb4\xad\xfa\x6b\x5c\xea\x37\xa2\x51\xc6\x86\x59\x4d\x08\xae\xf7\xc6\xc6\xa5\xbe\x90\xed\xdd\x6c\x83\x53\xcd\x07\x11\x76\x94\xb3\x8d\xf0\xfe\x18\xbd\xe2\x70\x23\x64\x3b\xfd\xfd\x29\x69\x5a\xcc\x4f\x97\x34\xae\x14\xaa\x3d\xb8\x25\xd9\xd1\x4a\xe7\xab\x1d\xc5\xcd\xbf\x75\x7e\xad\xd9\x51\x58\x1e\x09\x4a\x87\x27\x25\x21\xba\x5d\x6f\x0e\x2e\x21\xb4\xd5\x81\x6c\x8e\x06\xb1\x00\xcd\x9e\x37\x47\xa3\xb9\x16\x1a\x53\xd0\x6c\x2d\x16\x3a\x9e\xa8\x18\x5b\xb3\xb1\xdd\x0e\x34\xfa\xd9\x3f\x1a\x91\x46\x45\x92\x1d\xf8\x36\x42\xf0\x69\xd8\xda\x74\xbc\x83\x8e\xa6\xe3\x8d\xf9\x89\x07\x11\xc6\x96\x8e\x37\xb7\x18\x0d\x07\xbd\xb1\xa5\x03\xce\x2d\x46\x38\x6a\xe9\x80\xbb\xda\x50\x21\xc6\x76\xb9\xb2\x50\xfc\x59\x44\xc6\x73\x0f\x03\xb5\x5b\x79\xb7\xd0\x30\x50\x5b\x08\x94\x9b\x61\xa0\xb6\x50\x1a\x59\x95\x87\x81\xda\x42\x90\x8f\x79\x18\xa8\x2d\xbc\xc5\x3a\xb4\x47\x1a\xde\x9a\xaf\xbe\x3d\x8a\xeb\x0f\x08\x0e\xab\xc3\x70\x6e\xe1\xfd\xd2\x62\xbb\x34\x2c\x37\xcc\x31\xb1\xdd\x3f\x0d\xe3\x87\x1b\xef\x5f\x0d\xe3\x87\x87\x31\xba\x8d\xd0\x93\x61\x8c\xae\x90\xdc\xf1\x0d\x63\x74\x47\xf9\xc6\x23\xe9\x82\xe3\xf1\xbd\x62\xf5\x32\xb2\x61\xec\xa3\x50\x1a\xe9\x24\xc6\xee\x86\x04\xf2\xac\x92\x68\xdb\x8e\x59\xb7\x91\x7f\x6d\xec\x98\x75\x85\x7c\x4f\x81\xbf\x26\xb9\xc7\x8e\xac\x1d\x3b\x69\x30\x1b\xa9\x6b\xc6\xee\x02\x02\x02\x1d\x66\xec\xdc\xf7\x0d\x9f\xc2\x6a\x24\x91\x1d\x3e\x85\x25\x24\x72\x6a\xf8\x14\xd6\x30\x6c\xb3\xe1\x7f\x39\x0c\xdb\x14\xf2\xac\x34\x33\xec\x0d\x6e\x73\x0d\x7b\xd5\xd8\x71\x57\x11\x92\xdb\xdf\xb1\x73\x1b\x37\x76\xb4\xef\x46\x3e\xa9\xb1\xe7\x47\x33\x83\x2e\x5f\xa2\x7d\x8f\xdd\x61\xc5\x3d\x6a\x78\x9c\x1c\xfb\x97\xf4\xf6\x25\x19\x41\x39\x78\x2b\xa9\xb4\x3d\x4f\x68\x87\x34\x6e\xa9\x58\xc7\x87\x3c\xcd\xd0\xc8\x46\xb8\xd4\x30\x34\x52\x48\x64\xe8\x30\x34\x72\x18\xf3\xd8\x70\x99\x1a\xc6\x3c\x0e\x1e\xdb\x29\x0d\xb7\x96\xc1\x93\x3b\x1f\xe4\xc9\xce\xf6\xe1\x9d\x61\x68\x64\x83\xcd\x0f\x43\x23\x85\x24\xb5\xe9\x30\x34\x52\x78\x8b\x51\x2b\xa2\x45\x88\x96\x74\x0b\xd1\x32\x0e\x7b\x8f\x0f\xcb\xf0\x0c\x3c\x7c\x10\x86\x98\x90\x61\x78\xd7\x38\x65\xb8\xf8\xf4\x0f\x83\xa8\x84\xa8\xaf\x9e\x35\x8c\xa1\x1a\x06\x4c\x35\xbc\x70\x86\x01\x53\x42\x62\xad\x1b\x06\x4c\x0d\xc2\x9e\xde\x62\x01\xed\x96\xc6\xce\x7e\x65\xed\x30\xec\x69\x7c\x61\x4f\x48\x16\xc3\x9e\x84\xd2\xf0\x48\x1d\x27\x6a\xa1\x10\x58\x08\xc7\x29\x8f\x24\xda\xe8\x2d\x46\xa5\x2e\x2e\x20\x88\x97\x1f\x46\x1b\x8d\xb3\xdb\x8e\x83\x5f\x93\xaf\x01\xc9\x0b\x51\xc3\xf8\xa0\x41\xe4\x4f\x69\x44\x44\x0f\x43\x7f\x84\x3c\xab\x24\xc7\xc3\x65\xf9\xf5\xd4\xc9\x02\x92\xd7\xab\xc6\xe9\xb2\xe4\x21\x99\xb7\x18\xed\x4d\x7f\x2d\xfd\x35\x86\x32\xfd\x35\x27\x06\xd7\x9f\xa1\x29\x62\x7c\x11\x31\xaf\x0a\x38\x0c\x88\x11\x4a\xe3\x29\xb0\x51\xdd\xed\x40\x8f\xdd\x62\xbb\xa4\xcb\x62\x3b\xb4\x21\x0d\x2f\xe6\x57\x57\x1a\x55\x2e\xc9\x4b\x20\xa5\x91\xcb\x6e\x54\xae\xa6\x84\x20\x2f\xd9\xa8\xca\xd0\x8a\xe9\xaf\x71\xa7\x38\xaa\xe2\x11\xc8\x13\x99\x5f\x95\x8e\x40\x90\x4d\x71\xd4\xfa\x55\xa0\xbc\xf1\xc7\x58\xa8\xf5\x9b\x52\x36\x56\x75\x4a\x81\xc4\xa5\x7d\x54\xa7\xd4\x90\x9e\xc6\xdb\x2c\xc3\x90\x9e\x51\xd5\x6e\x2a\xdc\xba\xa6\x35\x24\x41\x98\x48\x6e\x62\x79\x3e\x48\xbc\x18\x87\x11\x3d\xa3\x3a\xba\x38\xb7\x0c\xcd\x3a\xa3\x7e\x9e\xcd\x6f\x73\x0d\x0d\x19\x4d\xa6\x5e\x99\x84\x26\x53\x07\x92\x03\xfc\x68\x32\x75\xde\xdd\x28\x8d\x74\x32\xc3\x87\x37\x84\xe4\x55\x97\x61\x50\xc9\x68\x38\x25\xb5\xda\xfd\xb5\x94\x86\xc3\xc4\xe6\x97\x97\x24\xe6\x0a\x9f\xe8\xd1\x1c\x4a\x20\xcf\x57\xe7\x1e\xcd\xa1\x04\xba\xac\xac\x39\x94\xc6\x9e\x34\xf2\xd5\x0c\x63\x4f\x86\xef\x6e\x34\xf2\x98\x0e\xcd\x55\xa3\x7d\x77\xac\xef\xa7\x86\xa3\x0c\x9e\x4f\x28\x4d\x65\xac\x2b\x0c\x81\xc0\xdf\x65\xf8\x94\xc2\xe0\xf9\x84\xd2\x1a\xcc\xa7\x2b\xf9\x80\x1e\x6c\xe6\xee\x18\x75\x7b\xda\x5a\x85\x96\xd2\xe0\xd0\x2c\x10\x9f\x52\x18\x1d\xd5\xbc\x35\x56\x65\x57\x71\x01\x92\x83\xe7\xe8\x2a\x2e\x40\xa8\x13\xfa\xd2\x81\x10\xdd\x1f\x53\x78\x75\x2c\x3c\x0d\xcf\xb0\xd1\xfb\x47\x7b\x05\x5a\x85\x35\x74\x2c\x3c\x42\x6c\x2c\x19\x1e\x47\x78\x81\x61\x93\x2f\x1a\x15\x23\x44\xdb\xe8\xa7\x62\xa7\xab\xe6\x77\x87\x2d\xec\x28\xaf\x1a\x7c\x43\x24\x67\xe8\x0e\x78\x87\x07\x6a\xfb\x1b\x86\x99\x60\x46\x19\x9a\xfa\x46\x28\x4f\x48\xe1\x38\x42\x79\x02\x44\xdb\x2c\x76\x4a\x82\xc9\xd2\x29\x63\x51\x84\xf7\x4b\x8b\x35\x69\x24\x5f\xfe\x0d\x8e\xe4\xc3\x7c\xea\x23\x54\x88\xf0\x1f\x1b\xa1\x42\x04\x24\xe9\x10\x46\xb8\x06\xc2\x09\xc7\x7f\x6c\x84\x13\x0e\x04\x2f\x17\x8c\x70\xc2\x43\x8e\x40\xba\xb1\x11\xce\x2e\xd0\xc9\xce\x32\xc2\x65\x0c\xc4\x89\x1e\x19\x2e\xe3\x50\x5f\x26\x98\x62\x84\xeb\x38\x3e\x7d\x59\xd2\xd7\x0e\xd6\xe2\x66\x9d\x8f\xa4\xc7\x2f\xf9\x35\xe5\x03\x10\x67\xa1\x19\xf2\x92\x70\x5d\x78\x30\x08\xd7\x05\x10\x18\x25\x47\xb8\x2e\x0c\x99\x69\xb8\xb6\x0d\x6d\xaf\x23\xbe\x19\x0f\x6a\x70\xc6\x81\x28\x4e\x9b\x33\x1e\xdf\x8c\x07\x43\xe9\x8c\x1b\x26\x81\x09\x68\x68\x92\x1d\xa6\x33\x6f\x1c\x4e\x87\xe9\xcc\x85\xee\xe8\x9a\xce\x7c\xa4\xfc\x30\xa8\x21\xdb\x47\x7b\xf9\x21\x06\xde\x91\xf2\x43\x82\x13\x4a\x23\xab\xcd\x30\x3a\x41\x08\x5e\xa3\x18\x46\x27\x0c\x8d\xb9\x0d\xff\x92\xa1\x31\x77\x24\x3e\x81\x0d\x2b\xfb\x48\x79\x24\x10\x6a\xd1\xe6\xfd\x1e\xe4\xfa\x2e\x0d\x0b\xd8\xc8\xcb\x4f\x39\x5f\xa7\x5d\xb0\xa7\x3a\x5d\x93\x85\x60\x68\xf4\x1d\xa4\x75\x2e\x8d\x0b\x8b\x61\x5e\x67\x21\x08\x5b\x1d\x97\xcb\xfd\xf2\x4c\x48\xc4\xd7\xb8\x5c\xef\x40\xba\xc7\x2e\xd7\xfb\xa5\x50\xf2\x90\x72\xc9\x4a\x81\x6c\x6c\x6c\xbd\xb5\x87\x89\xa3\x1b\x39\x4a\x86\x89\xa3\x85\x38\x61\x43\x26\x8e\x1e\x97\xab\x86\x1c\x25\xe3\x72\xd5\x00\x49\xfc\xd8\xb8\x1c\xf1\xab\xa5\xc5\x68\x6f\xf3\xd3\x17\x12\x83\xf7\xb8\x1a\x23\x7e\xa9\xd8\x92\x35\x6c\x68\x6a\x16\x62\xaf\x92\xec\x82\xb3\x80\x53\xd2\xd0\x38\x3c\xae\xf0\xd3\x26\xcd\x4f\xc3\xde\x4b\xf2\xd3\xb0\xf7\x4c\xea\x15\xf6\x5e\x3f\x4f\xe6\x0f\x77\xee\x0f\xde\x62\x05\x5a\x48\x0b\x7e\x8d\x2e\xa8\x8f\xe0\xc1\xfd\x16\xa3\xab\x6a\x8a\x40\x76\xb4\xd8\x4b\x45\x51\x6f\xea\x96\xac\x1a\x6d\xcd\x42\x9c\xac\x41\x4d\xcd\x42\x10\xf9\x32\x34\x35\x0b\xa5\x71\xf1\x30\x34\x35\x0f\xbd\x87\x09\x30\x1c\xda\x9a\x85\xc0\x81\x64\x68\x6b\x1e\xe6\xb4\x6e\x84\xe2\x0d\xed\xbe\x42\x27\xe5\xdd\xd0\xee\x3b\x06\x2a\x66\xc7\x29\x69\x0c\x55\x4c\x20\xe5\xb8\xc3\x99\x1f\x08\xd1\x8e\x65\x65\x0c\xb9\x0f\x90\x9d\x55\x39\xe4\x3e\xc3\x1c\xc2\x55\xd2\x92\xf4\xf8\xe5\x3b\x1e\xc3\x05\x02\x24\xd9\x91\xc6\x70\x81\x0c\x22\x01\x3a\x66\xc6\x31\x14\x54\x40\x76\x9b\xa6\xa0\x02\x92\x57\x18\xc6\x50\x50\x01\xef\x97\x27\x34\x7b\x80\xcd\x72\xff\xbe\xb4\x07\xac\xc0\x8e\x85\x67\x0c\x57\x20\x10\xbb\x43\xe4\x0a\x1c\xb8\x57\x76\x2c\x3c\x63\x78\xdc\x02\x92\xc4\x4a\x63\xe0\x7f\x30\x34\x7a\x77\xae\x66\x87\x46\xef\xa1\xd1\xbb\xe3\x3d\x33\x34\x7a\x0f\x7d\xae\x71\x3d\x1b\x5a\xbd\xc7\x44\x09\xea\xe4\xb5\x18\x53\x7e\x0f\xa4\x06\x01\xbd\xb0\x85\xee\xbe\xd2\x0b\x7b\xe0\x71\x5d\x3a\x31\x7c\x43\x97\x6b\x21\x70\x70\x18\xba\x5c\x8f\x09\xc7\xeb\x38\x00\x8e\xe9\xf0\x02\x89\x79\x72\x4c\x39\x1e\xf0\x16\xe3\x53\x2d\x1f\x40\x76\x66\x79\xaa\x40\x4c\x27\x86\x6b\x9d\x31\x9d\x18\x20\x92\x75\x34\x9d\x18\xa0\x74\x6e\x58\xc6\x74\x66\x80\xe4\x91\xeb\x31\x9d\x18\xe0\x2d\xe6\xa7\x29\x8d\x94\xe4\xa7\x6d\xb3\x57\x9c\x83\x3b\x97\x33\x63\x7a\x0e\x06\x82\x7c\x4e\x63\x3a\x31\xc0\x5b\xcc\xf6\x3e\xd2\x30\x2f\xd4\xdf\x20\xba\xa7\xe7\x49\xef\x17\x7a\xb1\x9d\x1e\x28\xbd\x5f\x20\x1c\x6b\x78\xbf\x20\xbc\xc5\x98\xa4\xee\x78\x11\x2b\xaa\x90\x9b\xb2\x2b\x20\x36\x47\x55\x76\x05\xe4\x8e\xe4\xd6\x53\x7d\x4c\x34\x29\x1c\x4e\xc6\x54\x62\x02\xa1\xc6\xaf\xef\xba\x10\xcd\x89\xec\x8e\x0c\x72\xaa\x97\xe2\xef\x3b\xe1\xa6\x5a\x3b\xfc\x72\x4a\x5a\x16\x63\xd6\x3c\x8a\x01\x81\x83\xc1\xf0\xe2\x63\x4c\x24\x72\x2f\xce\xa4\x12\x19\x48\x9c\x5c\xc6\x54\x22\x03\x5d\x11\x3a\x65\xad\x40\xba\xd3\xa7\xac\x55\x17\xfa\xce\xeb\x5e\x43\x17\x7a\x21\x4e\xd4\x4f\x5d\xe8\x85\xb7\x98\x34\xfb\x6e\x2e\x4e\x87\x5b\xd6\x0a\xc4\x76\xda\x5a\xfb\x1e\xa4\x68\x74\xad\x87\x5d\xc7\xd8\xbf\x7f\xa5\xec\x7a\xb8\x28\x76\x7f\xcc\x45\x61\x5e\x66\x5b\x96\x76\x1d\x73\x46\xd7\x28\x61\x1a\x70\x21\x9a\x5f\x6a\xce\x00\x52\x13\xca\xf4\x48\x04\x24\x39\x81\x86\x21\x00\x42\x9c\xae\x03\xf9\xbb\x57\x3e\x9d\x7c\x81\x63\xca\x0d\x70\x6f\xdf\x35\x7d\x79\x0b\x34\x74\x6f\xef\x64\x6d\x1c\xba\xb7\x8f\xcf\xbd\x1d\xa6\xa1\x7b\xbb\x90\x64\x0f\x19\x4b\xd1\x0e\xbc\x5f\x1e\xd0\xaa\x34\x56\x1a\x72\x51\x27\xf8\x81\xc7\xfb\x5b\xcc\x5f\x0b\x69\x24\xdc\xaf\xb6\x23\x25\xb1\x09\x91\xb2\xde\x3c\x09\xef\x97\xfe\xda\x90\x86\x29\xf0\x6b\xc7\x94\xe4\x5e\x3d\xfd\x74\x49\xf3\xcd\x3e\xeb\xbc\x25\x39\x2d\xa7\x95\x3e\xd2\x78\x36\x1f\x26\xaa\xff\xfc\x58\x55\x3e\x72\x4a\xeb\xd2\xd8\x2c\x18\xef\x96\x22\x0a\x28\xbd\xd8\x53\x65\x14\x10\xee\xcf\x25\x77\x5c\xcd\x25\x69\xb7\xe4\x54\x40\x6a\x45\x5c\x32\x2a\x20\x64\x4a\xde\x7a\x8d\xa5\xb8\x20\xed\xf3\xd0\xf5\x5e\x08\x5c\xac\xc6\x52\x5c\x00\xc1\x5b\xb1\x63\x69\x03\x5e\x1f\x53\xea\xfe\x9a\x1d\x6d\xe6\x05\xe7\xc7\xe4\x3a\xeb\xe3\x3a\xce\xb2\x5c\x47\x07\x7d\x4d\x19\x3a\xe8\x8f\xd5\xed\x28\xb2\x72\xc9\x16\x80\xa8\x28\x1d\x4b\xb6\x00\x04\x59\x36\x86\xfe\xf9\x42\x92\x93\x6a\xe8\x9f\x3f\xd6\xc7\x15\xc2\x62\xce\x8b\x2f\x5b\x3b\x2d\x72\x05\xe0\x2d\x46\xd3\x3c\xad\x01\x41\xd0\xf3\xf0\xda\x6e\x70\x07\xf7\x16\x93\x66\xd3\x02\x67\xe0\x83\x4a\xdd\xb5\xde\xd1\x75\x7c\x7c\x86\x77\x74\x42\x92\xa0\x69\x78\x47\x37\xf0\xe2\x7f\x8b\x49\xb3\x6d\xdc\xdd\xe0\x3e\x32\xcc\xb0\x2e\xbc\xc5\xa8\xd4\xad\x0c\xa4\xf6\x4b\x6f\xf7\x84\x68\x98\xe1\xbc\xdd\x1b\x2b\x5d\x59\x4e\x9f\x66\x61\x20\xea\x21\xc9\x89\x27\x75\x63\x57\x77\x58\x32\x01\x20\x08\x1f\x1f\x4b\x26\xe0\x5d\x61\x27\x5c\x7a\x18\x13\x30\xf0\xb5\xde\x79\xd0\x6e\x78\x7d\x38\x6e\x8e\xa5\x9d\x67\x44\xc6\xed\x5e\x06\x02\x17\x9f\x71\xbb\x97\xf5\xc8\xee\x38\xe3\x0e\x3d\xb2\x85\xdc\x51\x54\xf5\xc8\x1e\x78\x5f\xbf\xc5\x0e\x68\x29\x4d\x9d\xce\x2f\x2f\x49\xbc\x49\xd2\x2d\x45\x0f\xee\x6a\x73\x91\x71\xb7\x27\x23\x20\xbc\x6d\xd1\x0b\x5b\x48\x12\xbd\x0f\xbd\xb0\x85\x20\x6f\xc9\xf0\xfe\x53\x28\x5d\x8b\xa6\x17\xa0\x42\x12\xd7\x3b\x74\xc2\x16\x3a\x4f\x51\x0c\x9d\xb0\x85\xa8\xd8\x86\x4d\xd6\x2e\xf4\x7e\xfe\x06\x23\xb9\xb9\xdc\x85\x50\x97\x31\x95\xfb\xd0\xb9\xbb\xef\xbb\xb4\x25\x8d\xac\xab\x1c\x36\x75\xee\x16\x52\x0b\xb6\xce\xdd\x42\xe2\x84\x39\x6e\xb5\x53\x20\xc8\x24\x32\x74\xf7\x16\xde\xdf\xb7\x98\x63\xc5\xf5\x2e\x37\xd4\xc3\xeb\x5d\x21\x77\xce\x47\xba\x7b\x0b\x41\xd6\x90\x71\xab\x3d\xdd\xea\x40\xa4\xcf\x1b\x66\x94\x17\x92\xd4\x6f\xe3\x96\xdb\xe8\x01\xde\x77\xf6\x92\x1e\xe0\x42\xe2\xd7\x3e\xf4\x00\x1f\x7a\x80\xf7\x1d\xa3\xab\x1e\xe0\x42\x28\xfc\xf5\x00\x17\x92\x88\xed\x61\xde\xf9\x81\x1b\xf7\xfb\x25\xbf\xa6\x5e\x72\x1b\x07\x0b\x3f\xbb\x3d\xdc\x03\xd1\x5c\x87\xaa\x2a\xb7\x4c\x09\xdf\xaf\x71\xcb\x94\x80\xc4\x4d\x75\xdc\x32\x25\x1c\xc0\xdf\x62\xf4\x40\x16\xa4\x07\x38\x69\xf2\x87\x1e\xe0\x42\x6c\x2e\x57\x99\x12\x90\x5f\x33\x64\x4a\x77\xb8\x93\x10\x77\xb7\x7a\x09\x10\x38\x9d\x8f\x5b\xbd\xe4\x36\x51\x6c\x4a\x72\xbc\xd5\x4b\xf6\xaf\x98\xfd\x0c\xf2\x26\xba\xd0\xd5\x4b\xf4\x1c\x27\x77\xdd\xd0\x73\x5c\x78\xbf\xa4\xb5\x72\x38\x20\xba\x1d\x90\xc3\x71\xe7\xfe\x16\xa3\xef\xb2\x33\x20\xf7\xb0\x02\xfb\x29\x87\x53\x67\xba\xe5\x70\x40\xf7\xf6\xf1\x96\xc3\x01\xb1\xb9\xb9\x64\x70\x78\xab\xbf\x5f\x52\x4c\x76\x06\xc4\xe1\x8a\xd4\xec\xcd\xa5\xfe\x5b\x8c\x21\x4a\x3b\x9f\x24\x84\xc0\x54\xa6\x53\xbb\xf0\x16\xa3\xa7\x32\x42\xbd\xda\x77\xf7\x94\x8c\x10\x48\x92\x05\x8e\xdb\x5b\xc5\x5b\x9d\x49\xfd\xe2\x56\x67\x02\xe2\x5b\xcc\xb2\x4b\xe0\x2d\x26\xcd\xf1\x50\x69\x0a\x7b\xe5\x78\xa4\x2b\xb7\xda\x36\x3b\x4f\x1e\x28\x12\x85\x0d\x7d\x10\x84\xd2\x15\xff\xb7\x9c\x16\x6f\xf2\xdd\x76\xe8\x97\x20\xa4\x2a\xc7\xe3\x11\xf8\x51\x33\x51\x04\x3e\x6a\x26\x40\x6a\xcf\xd6\xe5\x5c\x48\xe2\x5d\x87\x2e\xe7\x42\x92\x05\x70\x3c\x2a\x26\x40\xee\xc8\xc4\x47\x06\xfa\x7c\x7c\x90\x95\x6b\x62\x7c\x21\x1d\x5b\x13\xe3\x0b\xc9\x7b\x17\xc3\xc4\xf8\xe3\xf1\x50\xec\x36\x78\x64\x3b\x40\xe7\x81\x9f\xf1\xc8\x76\x9e\x8f\xed\xd8\x34\xd9\x0e\x90\xb2\xb5\x47\xb6\xf3\xc8\x76\x10\x28\x7a\x64\x08\xe9\x25\x9c\x1e\x19\xe3\xf1\x9c\xfc\xb7\x2f\x43\x1a\x0f\xa9\x9e\x34\x4d\x4e\xf4\x7c\x6c\x07\x83\xfc\x23\xdb\x79\xcc\x90\x54\xfd\x35\xc7\xb1\xd9\x03\xc4\xb5\x1e\xf8\x42\x27\x95\xd0\x78\xe4\x31\xc0\x5b\x8c\x1e\xa8\xd2\x00\xf9\x55\xe0\x39\x0a\x08\x5e\x72\x1b\x8f\xe7\xa8\xe7\xe3\x4e\xdc\xfc\x3d\x72\x27\x20\x3c\x88\x3f\x72\xa7\xc7\x83\xd4\xf7\xfb\x76\xea\xe3\x4e\x69\x3b\xec\x15\xdc\x49\xb3\xdd\x23\x77\x7a\x7c\xb9\x0b\x45\x42\x07\x15\x21\x3b\x67\x2b\x1d\x54\x84\xf8\xa6\x58\x7e\xf5\xa8\x45\x91\x9b\x71\x3c\x32\xac\x47\x86\xe5\xea\x93\x61\xe9\xc6\xd2\xc9\xec\x30\x74\x63\x11\xc2\xcb\x0e\xdd\x58\x84\xd0\x68\xa0\x1b\xcb\x78\x64\x3b\x3c\x56\x3d\x7c\x9a\x40\x48\x9c\xca\xc6\x23\xdb\x01\xf2\x1b\x20\xf5\x2a\x1f\x30\xe8\x5e\x16\xfb\x80\x81\x90\x5f\x33\xe4\x00\x3e\x60\xd0\x0f\x3b\x2a\x07\x00\x82\xa0\xdd\x61\x08\x84\x10\xbc\xa2\x38\x0c\x81\x18\x3e\x56\xd0\x8f\xf2\x1b\x8e\xd7\x3a\xc3\x08\xf9\x8d\x96\x67\x23\x1d\x5f\x3a\x09\xb1\x86\x6f\x19\x0c\xdc\xfa\x77\x9c\xe9\xa7\xbe\x30\x42\x70\xdb\x37\x75\x85\x99\xfa\xbd\x74\xd8\xde\xd4\xef\x45\x48\x62\x57\xa6\x7e\x2f\x73\xf3\xe8\x42\xc4\xc1\xdc\x50\x81\x84\x38\xc3\x2f\xa7\x24\x2f\xb7\xac\x60\x49\x5a\x18\x4a\x2a\xa4\x5b\x12\x7c\x0a\x0f\xad\xa9\x13\x8d\x10\x64\x35\x9e\x3a\xd1\x08\x79\xbc\x87\xf5\xb9\x55\x5b\x4b\x4e\x7a\x92\x76\xcc\x0d\x0d\x4b\x48\x12\x76\x4e\xdc\x6e\x5e\x70\xd2\x0e\x5a\x56\xed\x80\xd9\x33\x0b\x7d\x82\x8d\x4c\x1d\x66\x3a\x19\x3a\xa6\x0e\x33\x42\xf0\xdc\xc8\xd4\x61\x66\xe2\x1c\x53\xfa\xe1\xa8\x55\x7b\x80\xb5\x1f\x1f\x9a\xa9\x73\x8c\x90\x6c\xdf\xa9\x73\x8c\x90\xac\xba\x69\x64\xc1\xdc\x54\x55\x48\x93\x32\x37\x18\x84\x90\xec\xae\xb9\xa1\xaa\x08\xa5\x93\x54\x62\xe2\x17\xf3\x41\x22\x13\xa7\xde\x31\xc2\x5b\x8c\xce\x37\xc7\x1b\xab\x4e\x7b\x05\xf1\xdc\x9a\xad\xd5\xdc\xd6\x24\xd9\x5a\xb9\x0d\x77\xf9\x93\xa0\x85\x0f\x3a\x59\x04\xa7\xb1\x09\xd3\x40\x84\x8e\x77\xf9\x34\x10\x41\x88\x7e\x5a\xcc\xc1\xc5\x1e\x13\x1f\xc9\xc1\xed\xee\x88\x4a\xaf\x60\x2d\x42\xb4\x83\xd6\xc2\x5a\x84\xd2\x8f\xe6\xa7\x8e\x07\xac\xe5\xd8\xac\xd3\xf1\x50\xf1\x39\xec\x42\xb7\xf3\x30\x12\x42\xa7\xa6\x6e\x40\x53\x9f\x9f\x8e\xeb\xc1\xd4\xe7\x67\x6e\x1e\x3f\xc8\x92\x32\xb7\x74\x28\xb1\x41\x70\x9f\x36\x79\xf4\xe2\x83\xd2\x8f\x64\xb5\xa5\x3f\x97\x2e\x5d\x49\x0e\xe5\xb7\xd1\x9c\xe6\xcb\x41\x62\xa3\x71\xad\x3e\x75\xfa\x99\xb8\xe4\xbc\xc5\xde\x3e\xe8\x93\x23\xf4\x2c\x14\x73\x39\xfb\x9e\x42\x27\xe4\x62\xfa\x9e\x82\xd0\xc9\x6a\x3f\x7d\x4f\x61\xf2\xc4\xc1\x5b\xac\x42\x7b\xa4\x61\xda\x66\xb2\x8a\xcb\x0d\x48\x52\x4f\x4e\x5f\x40\x10\x4a\x3f\x77\xbe\x44\xde\x09\xc9\xbd\xfd\xf4\x89\x83\x59\x70\x47\xe8\x27\x4c\xa0\x38\xa7\x40\x76\x9b\xeb\x9c\xf2\x5e\x41\xe9\x5f\x4f\x9d\x40\x20\xba\x15\x38\x7f\xba\x10\x75\x5c\x25\xa6\x2e\x44\xb3\xc8\x47\x71\x5b\x98\x25\xad\x01\x4d\xaa\xed\x92\xac\xc1\xe1\x25\x3c\x69\xea\x42\x34\x71\x21\xf2\x35\x97\xa9\x0b\xd1\xdc\xb9\x0c\xee\xe4\x2b\x98\xbb\x4c\x05\x08\xf2\x9a\xcc\x5d\x9e\xb2\x6b\x69\xe5\x4a\x7e\xee\x08\x6d\x21\x5b\xa3\x18\xf6\x0b\xa1\x74\x1c\x45\xa6\x9e\x46\x42\x72\x3f\x3c\x75\x25\x9a\x3b\x7e\x67\x9d\x40\x9d\xb9\xbb\xe0\x80\x38\x83\x0a\xba\xed\xb0\xf7\xbc\x17\x33\xf5\x11\x9a\x3b\x57\x29\x1d\x97\xf1\xb9\x23\x93\x84\xc0\xb1\x7c\xee\x61\xdb\xf0\xbc\xe8\xa4\x70\x9d\x3b\x2a\xa8\x10\xbc\xb4\x38\xf7\xf4\x4b\x5d\x4d\xd9\x6d\x7b\x7e\x5f\x56\xda\x61\x29\x7b\x95\x38\xb3\xef\x92\xec\x14\x51\x79\x9d\x18\x83\xb9\xa7\xbd\x42\x29\x25\x58\x63\xe2\x90\xf4\x41\x90\x42\x68\xea\x96\x34\x3f\xb7\x24\xfb\xe4\x1e\xda\xd5\x49\x6b\x93\x36\xa5\xe1\xb9\xd9\x6c\xbf\x23\xc4\x25\x5d\xaf\x6c\x49\x5c\x99\x3e\x08\xa2\x0e\xa6\x0e\x4d\x73\x37\xac\xe5\x78\x7f\x4c\x87\x26\x21\xe4\x77\x87\xc2\x4a\x1f\xa7\x4e\x0c\xc3\xd4\xc7\x49\x88\x8a\xc8\xd1\xc7\x69\x1e\x9a\x74\x79\xeb\x68\x1e\x68\x22\x42\xb4\x2a\x69\x4a\x62\xa6\xda\xce\xa7\xce\xd4\xe1\x4c\x35\x76\xc2\xe1\x4c\x01\xe9\xee\x3b\x9c\xa9\x43\xa6\xd2\x8e\x5f\x8f\xd1\x9e\x87\xe3\x05\x04\x0f\xa0\xcc\xc3\xe1\xd2\xb7\xa9\xe3\x3d\x39\xf5\x6d\x9a\xc6\xf7\x90\x64\x77\xea\xdb\x34\x4f\x8d\x14\x5c\x7b\xcf\x13\x23\x85\x10\x3c\xf0\x34\x4f\x8c\x14\xf3\x3c\x99\x10\x97\xf6\xa9\x3c\x06\x12\x6f\xa4\x69\x36\xeb\xa9\xa7\x54\x77\xc6\xf5\x94\x12\x92\x6b\xef\xa9\xa7\xd4\xd4\x53\xaa\xe3\xec\x39\xf5\x94\x12\x82\x64\x89\x53\x4f\xa9\x69\x6a\xe9\xde\xba\xbf\x36\xa4\x69\xd2\x3c\x21\xd9\x0e\xaf\x46\x78\xc2\x71\x9e\x32\x1d\xa0\x93\xb0\x73\x9a\x20\x7a\x9e\x0a\x8d\x16\x34\x44\xa1\x71\x9a\x35\x8a\xa5\x67\x76\xe5\x69\x2a\xe5\xce\x35\xe4\x34\x95\xb2\x10\x3c\x50\x30\x4d\xa5\x3c\x4d\xa5\xdc\xb9\x5f\x9c\xba\x4a\x09\xa5\x13\xd1\x36\xcd\xa5\x2c\x84\x22\xd9\x5c\xca\xf3\xcc\xaf\x18\x03\x97\x16\x4b\xdc\x48\xaa\xa4\xaf\x18\xac\x14\x9e\xa3\xa7\x94\x10\xca\x33\x3d\xa5\xe6\xe9\xb6\xeb\x3b\xed\x70\xdb\x01\x81\x79\x65\x9e\x6e\xbb\xd3\xb3\x60\x67\x0f\x9c\xee\x3b\x20\x48\x88\x3c\x4f\xd7\xd1\xe9\xbe\xeb\x87\x9f\x3a\xbc\xe9\x34\x5b\x81\xd3\xec\xda\x22\x78\x63\xea\x9e\x35\x71\xcf\xf2\x91\x9f\xa9\x7b\xd6\xac\xaa\x7f\xf8\x6a\xcc\xea\xf6\x01\x82\x30\xf3\x59\x55\xff\x80\xd2\x3b\xb3\x50\xb1\x9d\x09\x89\x0b\xdb\xac\xf8\x6c\x4c\xbd\xb8\x7c\xdd\x66\xea\xc5\x25\x44\x7f\x95\xea\xa9\x17\x97\x10\xbc\x75\x36\xab\xab\xb2\x7a\x87\x87\xc3\xcc\xac\x6a\x76\x55\xef\x54\xb4\xb8\xaa\x66\x57\x95\x84\x9d\x1d\x53\x95\x84\x40\x54\xa6\xaf\x2a\x09\xab\xcb\x0d\x27\x9d\x59\x5d\x6e\x40\x74\xf8\x50\x75\xb9\x01\x21\x93\xaf\x8a\x07\x20\x78\xa4\x69\x56\xc5\x03\x10\x3c\x5a\x33\xab\xd2\xa1\x7e\x2b\x0b\x46\xa7\xaf\xd7\xac\x32\xef\x8e\x3e\x52\x5d\x0c\x40\xc7\xb4\x31\xab\x8b\x41\x97\xb0\x4e\xea\xa1\xa9\x4b\x98\x90\xbd\xf8\xa5\xe3\xc1\x05\xb7\x6f\xaa\x4e\x7d\xc2\x84\xd8\x42\x92\x7d\x77\x96\x71\xd9\x98\xba\x89\x4d\xdc\xc4\x76\xf5\x0c\xdd\xc4\x84\xe2\x3d\xf5\x6c\xf2\x52\x20\xdd\x08\x8d\x6b\x92\xd9\x5c\x0c\x98\x3e\x67\x73\x31\x34\x73\xe4\x77\x49\x55\x52\xb3\x98\x35\x74\x69\xa8\x76\xe8\x3b\x8d\x3b\x91\xd9\x9c\x04\xdc\xfc\x66\x73\x12\x80\xc8\xe4\x4b\x27\xa1\x79\xa0\x75\x5f\xb5\x6e\x43\x38\xd0\x6e\x76\xa1\xfb\x65\xff\xbc\x38\xde\xb1\xd4\x75\x6c\xb6\xaf\xf7\xfd\xed\xbd\xae\x63\x13\xd7\xb1\x83\xdb\xc2\xa9\xeb\xd8\xec\xde\x59\xe0\xc6\x31\xf5\xcf\x12\x82\x0b\xf3\xa9\x7f\xd6\xec\xda\xfd\x78\xc7\x7a\x9a\x8f\x58\x08\xbc\xad\x67\x57\x4b\xee\x1e\xa3\x79\x7d\x75\x76\x15\x23\x20\xc8\xb9\x3f\xf5\xec\x9a\x5d\x19\x44\xa2\xff\xd9\x65\x48\x40\x92\xb3\x69\x76\x65\x90\xae\x5d\x9d\xc4\x2c\x53\xd7\xae\xa9\x83\x56\xc7\x55\x62\xea\xa0\x35\x71\xd0\x3a\xb8\x81\x9e\x3a\x68\x09\x25\x36\x4e\x3e\xe1\xa4\x86\xef\x95\xc3\xb6\xc2\x49\x35\xbf\x6f\x90\xd6\x64\x9a\xdf\x57\xc8\x8d\x01\x31\xbf\xef\xc4\x67\xaa\xf8\x6a\xfc\xd4\x69\x4a\x08\xf2\x5e\xcc\x70\x03\x06\x63\x69\xf0\xd2\x0c\xc7\x12\x88\x0a\xd3\x0e\xc7\x32\xb8\xf4\xf7\x89\x87\x19\x9e\x42\x80\xf4\x6c\x18\x0e\x6f\x74\x8b\xa1\x29\x86\xfa\x13\x10\xdc\x98\x4f\xdd\x9c\x66\x10\xbb\xf4\x8d\x6f\x84\x35\x60\x5c\xdc\x38\xa8\x05\xc6\xc5\x19\x69\x17\x18\xcb\x90\x43\x03\x49\xa6\x91\x19\x6e\x4a\xa0\xf0\x0c\xc6\xaf\xca\xee\x70\xd3\x02\x41\xfc\xe3\x0c\x35\xae\x20\x46\x40\x1f\x97\x19\x72\x70\x20\xb9\x87\x98\x21\x03\x0f\x8e\x15\x41\x14\xc2\x0c\xf7\x36\x10\xf8\xc4\xcf\x70\x6b\xeb\xa1\x15\x1b\x67\x69\x3d\xb4\x66\x38\xe5\x6c\x29\x3d\xb4\x66\x7e\x73\x49\x0d\xe9\x5c\xa6\x73\x09\x7b\xd2\x69\x4b\x48\xde\x46\x9e\x3a\x6d\x4d\x93\xd1\xfa\xfe\xf7\x34\x19\xad\xd0\x09\x97\x9b\x26\xa3\x15\x8a\x2f\x1b\xce\x74\xc1\x03\x89\x63\xc6\x4c\x8f\x85\xe4\xa4\x2d\xc6\x27\xcd\x74\xc1\xa7\x72\xba\x4a\x0a\x49\x34\x97\x77\x38\xa6\xbe\x5d\x93\xc4\xaf\x2f\x8d\xf6\x86\xb5\x62\xa0\xe5\x2a\x65\x92\x05\xf6\x83\x74\x21\x9b\x0b\x76\x26\x9c\x33\xb8\x0d\x9a\x29\xe7\x04\xd2\xd5\xa8\xa3\xd8\x4c\x87\x92\x60\x85\xa9\x0b\xd8\xc4\x05\xcc\xa7\x4a\xa6\x2e\x60\x93\x18\xdf\xf2\x2d\x6e\x83\x7c\x85\x0c\x16\xad\x41\xbe\x53\xdf\xae\xef\x94\xa9\x6f\x97\x90\xb8\x7b\x4e\x7d\xbb\xa6\xbe\x5d\x41\x1e\x96\xa9\x6f\x97\x10\xf8\x96\x4c\x7d\xbb\xe6\x45\xee\xbe\xd8\x37\x1a\xa2\x6a\x04\x24\x41\xcf\x93\xa7\xff\x7f\x9a\xb8\x7b\xbd\xc5\xde\x9e\xea\xef\x25\x04\xf7\x80\xf3\xf2\x20\x77\x39\xa7\xf8\xe6\xce\xcb\x39\xbd\xdc\x64\xbb\x24\xbb\x00\x83\x8d\x9d\x9d\x6d\x50\xb2\x90\x6e\x4f\x63\x92\xa7\x01\xc8\x3a\x4b\x4d\x03\x90\x85\xdc\x3e\x52\x48\xba\x2c\x56\xa1\x0d\x69\xf0\xb5\xdd\x0a\xec\x15\xb7\x12\xdb\x66\x05\xf6\xca\xcd\xbe\x7f\xc5\x6c\x6e\x97\x27\xf0\x63\x2e\x10\xe0\x2d\xc6\xa7\x6a\x68\x40\x12\xf0\x3d\x2f\x35\x34\x7c\xc7\x4a\xec\x30\x00\x9d\xc7\x84\x24\x84\x6b\x5e\xe1\x88\x87\x95\xb2\x3d\x74\x1e\x13\x3a\xa1\x2b\xf3\x72\x05\x02\xd1\x10\x38\x97\x2b\xf0\x92\x9b\xec\x4e\xb3\xdc\x04\x08\x22\xd3\xe6\x25\x37\x31\x84\xda\xb7\x91\xa7\x21\xd4\x42\x62\x81\x9c\x86\x50\x4f\xdd\xce\x74\xe4\x9a\xba\x9d\x4d\xdc\xce\x0e\x92\x3c\x4c\xdd\xce\xa6\xf1\xcc\x3e\xe7\x34\x8d\x67\x16\x92\xeb\x8b\x69\x3c\xb3\x50\x0c\xdc\x99\xc6\x33\x0b\xc1\x1b\xe6\xd3\x78\x66\xa1\x04\x86\xfe\x69\x40\xb3\x90\xca\x47\xe3\x99\x27\x8e\x6b\xc5\x17\x64\xa7\xa1\xca\x42\xc6\xd7\x8e\x29\xc9\xa1\x6c\xb6\xf7\x96\xe6\xa1\xdb\x0a\x18\xca\x51\xbf\x4a\xf9\xd4\xed\x01\xa4\x1c\x4f\x97\xb8\x89\x63\x5b\xf1\x0d\xc7\xa9\x67\x9b\x10\x5b\xd0\x0e\x0d\x6d\x40\xf1\x11\xfd\x39\xea\x57\x03\x61\x17\x98\xae\xf4\x7f\x9b\xfa\xa2\x99\x6e\x67\xea\x8b\x26\x24\xc9\xae\xa6\xbe\x68\x73\x7c\x8b\x17\x46\x30\xfa\x47\xe3\x2a\xda\x2f\x5d\xbc\xc3\xc5\x8b\xd4\x1f\x2e\x5e\xdd\xd3\x42\xa3\x94\xee\x69\x73\x28\x96\x0e\xc7\x52\xb1\x04\x44\x77\xb2\x14\x4b\xc3\x25\x48\xfc\xec\x1c\x2e\x41\x20\xd4\xf8\x86\x4b\x70\xb8\xde\xc8\xda\x3c\x87\xeb\x6d\x28\xbd\x38\x89\x0f\xd7\xdb\x90\x0b\x92\x29\x7e\x0e\xb9\x20\x10\x1d\xc5\x70\xc8\x05\x81\x12\x3c\x08\x30\x87\x42\x66\xf8\x48\xba\x93\xa5\xfe\xa8\x87\x5d\x1c\xce\x8c\xcb\x12\x0f\xbb\x83\xe4\x18\x53\x0f\x3b\xa1\x63\xc6\x9f\x53\x4d\x03\x48\x12\xf8\xcf\xa9\xa6\x31\x39\xa7\x86\x66\xd7\xe9\x39\x15\xc8\xed\xf4\xcb\x4b\x12\xf7\x5b\x55\xd2\x90\x44\x26\x4f\x98\xdb\x74\xb5\x4d\x45\x9d\x56\xd7\xe9\xd2\x02\xe2\xe8\xbf\x6e\x2a\x9f\x53\x49\x68\xb2\x54\xdf\x12\x9a\x26\x4b\x15\x92\x4c\x11\xd3\x64\xa9\x73\x72\x7b\x14\x87\x6d\x72\x49\x01\xa9\x6a\xa2\xcf\xdf\xc4\x99\xaf\x98\xd1\x6e\xea\xcd\x27\x24\x6e\x9c\x53\x67\xbe\xa9\xaf\x5d\x90\x51\x66\xea\x6b\x37\x3f\x5f\xbb\xb0\x18\xd3\x61\x6e\xd5\x20\x6b\xf2\xd4\x3f\x4d\xc8\xcd\x4e\x7b\xb0\xc5\xff\xac\x04\xe9\x90\xa7\x21\xf7\x42\x70\x3f\x35\xf5\x45\x13\xde\x62\xb4\xd7\x05\x3a\xbf\x95\x87\x66\x66\xc8\xbd\xd0\x03\xee\xaa\x2f\xd7\x9c\x2a\x44\x27\x67\x67\x43\xee\xe7\x17\x72\xcf\xd1\xc8\x90\x7b\xe1\x2d\x46\x0d\x1a\x99\x80\xd8\x10\x54\x53\x23\x93\x09\x5d\x7d\x79\x61\xea\xcd\x25\x04\xe9\xf7\xa7\xde\x5c\x53\x6f\x2e\x53\xf7\x4f\xbd\xb9\x26\xde\x5c\x07\x6e\x38\x53\x6f\xae\x69\xc4\xfb\x67\xd6\xd3\x9b\x66\xea\xb1\x12\x27\x3c\x41\x8f\x15\x21\x1b\x1b\x5b\x8f\x95\x89\x2b\x4a\x89\x13\xad\x4d\x5f\x14\x21\xb5\x2f\x98\x9e\x72\xea\x77\x12\x95\x3e\xe8\x77\x32\xf1\x3b\x39\xb4\xa4\xe8\x77\x32\xcd\x32\x17\x95\xdd\x63\x96\x39\x21\x08\x0c\x9a\x66\x99\x9b\xe6\x85\x33\xd4\x75\x9a\x17\x4e\x08\x4d\x4a\xe6\x85\x9b\x86\xad\x47\x85\x81\x7b\x1f\x2f\x94\xa8\xa8\xfd\xc6\xad\x0b\xd1\x18\xf2\x5b\xc1\x67\x8e\x36\x9d\x95\xa6\x37\xed\x42\xe2\xcc\x3f\xbd\x69\x9f\x3e\x6e\x1f\x15\xfd\xc6\x6b\x64\x21\xb8\x38\x9a\xde\x22\xcf\x5b\x3e\x41\x82\x8e\x79\x3b\x35\xb7\xaf\x09\x71\xd6\xf7\x16\x79\xde\xdf\x20\xa1\xdf\x78\x65\x3c\xb9\x32\x3e\x3a\xc2\xc5\x2b\xe3\x69\xfe\xb1\x20\xcf\xc6\xf4\x32\x58\x48\x4f\x86\x5e\x06\x4f\xaf\x79\x3f\x71\xeb\x35\xaf\x10\x01\xcf\xf5\x9a\x77\x72\xb5\x5b\xcc\xc9\x33\x1f\xc5\xc6\x63\x28\x74\xfa\x65\x4a\x1a\x16\xdb\xa1\x4d\x69\x18\x22\xd3\x5f\x63\x0d\x7a\x0d\xab\x2f\xe2\xf4\x1a\x56\xc8\x16\x92\x2c\x86\x53\xaa\xf9\x32\xa6\x97\xa9\x42\x27\xca\x62\x7a\x99\x2a\xbc\xc5\xe8\x96\x16\x73\x20\x79\x58\x67\x7a\xbf\x3a\xb9\x4c\x7d\x8b\xf9\xa9\x5d\xe8\x3c\xd0\x5d\x24\xd9\x85\x6e\xdb\x58\x35\xde\x93\x0a\xd9\x42\xd2\xd7\x36\x56\x8d\xf6\x42\x2f\x45\x85\xe2\x9b\x47\xf3\x71\xd5\x00\xd1\x91\x24\xde\x93\x4e\x6f\x40\x83\x78\xeb\xe9\x0d\xa8\x10\xc4\x76\x4c\x6f\x40\x85\x24\x7f\xc8\xf4\x06\x74\x12\xa8\x5f\xa2\xa1\x76\x9b\xde\x4d\x48\x9e\x0b\x9a\x8f\x0c\x03\xc8\xc6\x66\xf3\x9e\x74\x3e\xae\x2d\x1c\x5d\xa6\x17\x95\x42\xe0\x7c\x37\x8d\xe3\x17\xde\x62\xf4\x54\x0b\x31\x90\x0d\x89\xe6\x75\xe6\xe4\x3a\xf3\xc0\xaa\xb8\xbc\xce\x5c\xdc\x36\x96\xc0\xaa\xb8\xbc\x6e\x14\x7a\xbe\xcb\x7e\x79\xdd\xb8\xb8\x47\x2c\x41\x73\x97\x17\x89\x42\xef\xef\x5e\x5b\x5e\x24\xae\xed\x5b\x95\xef\x4a\x5d\xde\x1a\x0a\x41\x5a\xff\xe5\xad\xe1\xda\xbe\xe5\x96\x09\x6d\x4a\x9b\x58\x3c\x2b\x24\xdb\xa1\x48\xc1\xe7\x7f\x79\x1f\x28\x24\x4f\x1d\x2f\xef\x03\xd7\x26\x5b\xc1\x46\xb9\x36\xd8\x8a\x10\xb5\xd0\x36\xd8\xca\x32\x34\xde\x87\x7b\x96\x97\x7f\x82\x7b\x6d\x79\xf7\x27\xbc\xc5\xfc\x35\x7b\xef\x93\x23\x85\x5e\x71\x22\x58\x46\xd0\x07\x91\x95\xcb\xab\x33\x21\x08\x86\x5a\x46\xd0\x0b\x25\xb0\x34\x2e\x6f\xd3\x96\xf7\x5f\x81\x59\x71\x79\xff\xb5\xb8\xff\x3a\xf2\x95\xf1\xcb\xfb\xaf\x55\x1c\x4b\x0c\x64\xcb\x5b\x2c\x21\x7b\xf9\xf5\x87\xc0\x96\x8f\x86\x2f\x1f\x0d\x57\xb1\x59\x3e\x1a\x2e\x04\x5e\x82\xcb\x47\xc3\x97\x4f\x7f\x07\x96\xb7\xe5\xc5\x97\xd0\x7b\xe3\x4b\x8e\x4b\x42\xe0\xb1\xb0\xbc\xf7\x5a\xde\x7b\x45\x4f\x8a\x75\x9b\xe9\x5d\xe6\xbb\x90\x97\xf7\x5e\xab\x38\x5e\x8e\xa1\xef\x6c\x0b\xc9\x83\xaa\xab\x38\x5e\xde\x7b\x05\xaf\xa3\x2f\xef\xbd\x56\x51\x1a\x62\x2b\x5b\x25\xfd\xf4\x93\x86\x34\x37\xfd\x34\xcd\xa9\x91\x90\x98\x24\xaf\xc2\x8c\x6e\x5c\x5e\x85\x2d\xae\xc2\xce\xed\xe5\xcc\xcb\xab\x30\x21\xd9\x9d\xcb\x60\xfa\xb5\x7b\x88\x70\x39\xee\x1c\x22\x84\xe0\x19\xe5\xb5\x73\x88\x58\xbb\xbb\x87\x94\x25\x6b\x77\xf7\xec\x06\xd8\xd1\x34\xef\xd5\xd6\xee\x7a\x27\xb1\xe0\xda\x5d\xef\x40\x47\xcb\x5d\xbb\xeb\x7d\x6f\x56\xca\x5e\xdc\x1d\x5e\x20\x5b\x93\x64\xa5\x5f\xda\x87\x80\x54\x25\x75\xbf\xa4\x02\xd7\x3b\x90\x44\x71\xae\x9d\x5b\xf2\x65\x24\xbf\x5e\x9e\xcb\x48\x7e\x21\x6a\x58\xcc\xe6\x36\x27\x21\xa5\x3d\xd2\x1e\xce\xf5\x74\xbe\x3b\x6c\xca\x69\xbc\x9b\xd6\x8e\x9c\x16\x3a\xa9\x7a\x16\x09\x01\x5e\x38\x2d\x46\xdb\x5c\x20\xbb\x69\xf2\x77\xc6\xc8\x05\xb2\x7f\x33\xcf\x3a\xf2\xce\x6f\x11\xf0\x5f\x22\xfd\x39\xd8\xab\xa0\x95\x67\xed\xb0\xd7\xb5\xab\xa3\x91\x58\x7b\xed\x61\x1f\xd0\xd1\xf2\x2b\x66\x17\x3c\x1d\x90\x58\x7b\x71\x4f\xf8\x81\x27\x81\xe5\x6d\xe1\xe2\x6a\xf0\x2d\x46\xef\xd3\xf6\xea\xb0\xb6\x31\x59\x69\x7b\x71\x57\xf9\xdb\x72\x40\x6f\x13\x92\xf0\xa9\xe5\xdd\xe0\xf2\xee\x4e\x43\xfd\xf2\xee\x4e\xc8\xd3\x5f\x73\x55\x72\x77\x77\x12\x47\xb2\xbc\xbb\x5b\x5c\xca\x95\x20\x4d\xf7\xf2\x56\x4e\x48\x1e\x29\x58\x07\x67\xd6\x75\xe0\x4a\x1f\x04\xb1\xad\x83\xd3\xa8\x10\xbc\xbd\xb8\x0e\x0e\x11\x42\x09\x12\xe9\xac\x83\x53\x84\x90\xe8\xac\xeb\xe0\x14\xb1\x0e\x17\x34\x57\x45\xeb\x70\x41\x03\x49\xbc\xff\x3a\x5c\xd0\x3e\x35\x1d\xbc\xd0\xbb\x7c\x6a\x5a\x48\x54\xdb\xe5\x53\xd3\xeb\x90\x85\x91\xce\x7b\x1d\xb2\xb0\xc3\x98\x69\xa6\xf4\x90\x47\x1d\x2a\x29\x58\x8d\xd7\x51\xed\x02\xf7\x64\xe5\xfb\xd2\x2e\x70\x4f\x16\x24\xf9\x59\x47\xb5\xbd\xd5\x93\x67\x42\x9a\x92\xec\x42\xb5\x6d\x76\xa1\xda\x85\x03\x92\x5d\xa8\x2e\x10\x3a\xcf\xa1\x78\x1d\xfd\x6b\x07\x3d\xed\xb6\x83\x57\x48\xfb\x41\x73\xbb\xed\xe8\x0e\x25\xdb\x94\x7b\xd2\x0f\xb2\x3b\x09\xdd\xa6\xa9\x90\x7c\x35\x74\xdb\xe6\x5b\x82\xbb\xc5\x6c\x9a\xeb\x3e\x83\x5e\xb9\xee\xb9\x2d\x7d\x69\x74\x21\x1c\xb7\x30\xbc\x89\x86\x84\xe3\xa6\xbf\x28\x5b\x97\xc4\x12\x1f\xf4\x3c\x19\x8f\xb0\x07\xe1\xb0\x39\x46\xee\x98\xc3\x84\x4c\x76\x34\x6c\x5a\x38\x6c\x69\x3b\x6c\x1b\xe9\xc6\xda\x57\x81\xc3\xa6\xed\x91\x08\xbe\x65\x7e\x09\x21\x72\xa7\x82\xb4\x07\x5c\xfe\x79\x4b\xb1\x8e\x74\x35\x98\x2f\xb3\x5a\x6c\x97\xb4\x5b\x8c\x86\xb8\xff\x80\x48\xc7\x28\x5d\xf6\x1e\x9b\x12\x16\x72\xb8\xff\x80\x68\x0e\x9b\xdb\xef\xf0\xb4\x92\xe9\xa7\xf6\x9e\x4b\x42\x02\x46\xd7\x91\xce\x9f\x77\xf3\x5f\x9d\x4e\x9f\x9a\x3e\xc9\xd2\x97\x97\xcd\x42\xf0\xc6\xf8\xf2\xb2\x79\xf1\xec\x78\x49\x5e\x0d\x5c\xbe\x3b\x2e\xf4\x74\xd9\x2b\x76\x80\xb7\x18\x6d\x73\xcf\x03\xf1\x1e\xae\x7e\x55\x72\x7b\x8b\xbd\xb8\xc5\x3e\x31\xce\x2d\x6f\xb1\x85\xf7\x87\x0f\x68\x45\x9a\xa9\x4f\x03\xd2\x2e\xe9\xb4\xd8\x09\xad\x4a\xe3\x52\xee\x55\xa2\xd7\x89\x69\x4b\x78\x8b\x49\xeb\xd2\x3a\xc3\x65\x05\x21\x69\x58\xcc\x1a\xa6\x34\x52\x3c\x20\xbc\xbc\x13\x5f\xbc\xea\x5c\xbc\x10\x59\xbc\xed\xfc\x81\x87\xcc\xe5\x0b\xcf\x8b\xb7\x9b\x8b\xf7\x52\xcb\xc7\x9b\x85\x68\xcd\x62\xa7\xa4\x6a\x31\xda\x26\x9b\x00\xa2\x1e\x54\x50\x6d\x2e\x9c\x43\xab\xe6\xf2\x86\x5d\x88\x44\x52\x79\xc3\xbe\xb8\x4d\x2f\xda\xb8\x97\xd7\xe9\x42\x90\xf2\x6d\xf9\x52\xf3\x22\xc9\x48\xd1\xdc\xb5\xcc\x32\x22\x7c\x4c\xd8\x4b\xf7\xc5\xdb\xca\x45\x5b\xed\xf2\x71\x65\x21\x12\xfe\x7d\x2a\x7f\x7d\x6f\xd9\x2b\x84\xe5\x7b\xcb\x42\xe4\x47\x72\x8c\x9a\x8b\x05\xd6\x71\x2a\x59\x81\xe0\x7e\x73\xf1\x1e\xf3\x07\x45\x73\xf3\xf2\x59\x66\x21\xf2\x23\xd9\x36\x9c\xcd\xb4\xdf\x2e\x9f\x65\x16\x82\x34\x65\xcb\x3c\x29\x42\x90\x2c\x6e\x99\x27\x65\xf9\x04\xb3\x26\xf9\xa5\x93\x80\xf0\x89\x16\x9f\x60\x5e\xf8\x08\x14\xcd\x2b\x4b\x27\x01\xe1\x53\x17\x4e\x19\x9d\x59\x57\xb4\xdf\x2e\xb3\xae\x08\x3d\xfc\x35\x19\x1d\x6e\x03\x45\x13\xd8\xd2\x6f\x40\xf8\x84\x81\x89\x58\x04\x4f\x37\xcb\x44\x2c\x42\xe0\xe3\xb1\x4e\x39\xa4\x2f\x35\x6b\xea\x5b\xbe\xd4\x2c\x44\x75\xc3\xc8\x0f\x49\xd7\x52\x92\xbc\x62\xcb\x7c\x2d\x42\x9c\xf0\xbe\x53\x16\x09\xbc\xc5\xfc\xd4\x5e\x05\x3a\x1b\x6c\xf9\x94\x45\x02\x9f\x84\x3b\x65\x91\xa7\xaa\x47\xfa\xfb\x4e\xb2\x1c\xd2\x6e\xca\x21\x75\x8f\x48\x9e\x4f\x58\xba\x47\x08\x91\x8e\xad\x1c\x12\x08\xae\x36\x96\xee\x11\x42\x57\x0c\xea\x1e\x21\x04\x8f\x28\xad\x53\x95\x05\x28\xbe\xd2\xbf\x4e\x79\x26\x10\xe9\xa4\xc8\x33\x75\x85\x48\xd9\x9c\xae\x10\xc2\x27\xdc\x75\x85\x58\x67\xba\xbb\xd1\x6a\x4f\xd9\x1c\xf0\xa9\x0a\xa7\x5c\x4e\x8f\x09\x1f\xed\x5e\x7a\x4c\x2c\x3c\x26\x4e\x55\x2c\x3d\x26\x16\x09\x6b\xde\x62\xd2\x0e\x69\xb0\x7d\x96\x9f\x4e\x14\x42\xf0\x88\xf1\xd2\x89\x42\x08\x92\x83\x2d\x7d\x28\x04\xaf\xb4\x96\x3e\x14\xab\x9e\x4e\x31\x47\xa7\xaa\xb2\x53\x7d\x0f\x8e\x89\xd2\xad\x62\xe1\x37\x51\x92\x5c\x0a\xab\xaa\xd9\x54\x58\x56\x32\xeb\x55\x96\x05\xbc\xc5\xa4\x15\x69\x3a\xb2\x54\x48\xbb\x24\xb7\x5e\xa7\x53\xb2\x31\x20\x48\x4b\xb1\xaa\xfa\x4f\xfd\x38\x1b\x67\x28\xd3\xef\x08\x81\x97\xfd\x32\xfd\xce\x32\xfd\x4e\x6e\x1c\xc2\x4d\xbf\x23\x44\x6f\x56\x6a\x17\x3e\xce\x86\x2e\x62\xfe\x1d\x41\xef\x88\x65\xfe\x1d\x21\x88\xcf\x5d\x55\xfd\x47\x37\x90\xe4\xa6\x60\xe9\x06\x22\x04\x2f\x33\x2f\xdd\x40\x84\x68\x7e\xe9\xb9\x10\xf8\xd4\x30\x13\xf7\x08\x51\xd1\x00\xf4\x15\x11\xde\xdf\xb7\x98\xc3\x81\xb3\x88\x1c\x51\x67\x91\x85\x37\xc8\x5b\x8c\xc1\x95\x73\x02\xc1\x23\xde\xab\x7a\x72\xa9\xed\xeb\x27\xa3\xe6\xe1\xbd\x1a\x00\x80\x88\xa8\x1e\x66\xea\xc7\x73\xc3\x4f\xed\x28\x3c\x97\xa0\xcc\x55\xe5\xb9\xf5\x63\xa6\xc9\x10\xc9\x4c\x7d\x61\x9c\xc0\xb0\xe5\x0b\xe3\xab\x76\xe5\xe8\x6f\x78\x77\x7b\x55\x19\x2b\xd0\x3d\x14\x54\x19\x6b\xfd\x18\x6b\x4a\xb3\x87\x9f\xc7\x27\xa3\x2a\x63\xad\x1f\x63\x4d\xba\x23\x63\x05\x7a\x74\x8b\xd9\xe9\x8f\xb1\xa2\xa9\x54\x19\x2b\x10\xc9\x19\x51\x4f\x1a\xa1\x24\xbe\x5c\xab\x86\xf3\x16\x3e\x2f\xc3\xfa\x94\xd7\xf2\x36\xfa\x5b\x8c\x19\x91\xb3\x02\x51\xdd\x01\x72\x56\xe0\x2d\xe6\xa7\x76\x2b\x5c\xb3\x34\x57\x66\x0b\xbc\xc5\xe8\xa9\xdc\x16\x08\xbc\x62\x57\x0d\x7b\x2a\x03\x2e\x9b\x34\x97\x36\x0c\x58\xfb\x47\x95\x01\x57\x19\x30\x99\xd7\x56\x95\x01\x03\x9f\x82\x5e\x65\xc0\x40\x31\x09\xf1\xaa\x72\x60\x20\xd2\x29\x97\x03\x57\xef\xc7\x0f\xc6\x43\x0e\xac\xb7\x91\xb9\xa1\x97\xde\x46\x42\x10\xa2\xb2\xf4\x36\x12\x22\xab\xa5\x1c\x8f\xb4\xa3\x6e\x14\x15\xcd\xaa\xa2\xe9\x56\x57\xd1\x04\x74\xad\x59\x55\x45\x13\x78\xbf\xa4\x07\x2a\x9a\x40\x90\xae\x63\xe9\xcd\xb4\xaa\xec\x96\xe8\xff\xa5\x9f\x92\x10\xaa\xf6\xbe\x46\x2f\xbc\xc5\xa4\x39\xcb\xb0\x5b\xfc\xd8\x96\xae\x4b\x42\x90\x84\x64\xe9\xb9\x24\x94\x2c\x68\x44\xba\x2e\x09\x41\x12\x92\xd5\x64\xca\xcd\x64\x45\xf4\x5d\x67\xa6\xa5\xe7\x52\x12\x9d\xbf\xf4\x5c\x12\x82\x77\x96\x96\x9e\x4b\xc2\x5b\xec\x84\x96\xd2\x92\x62\x1d\xd2\x25\x89\x79\xef\xfe\xd8\x90\x34\xfd\xb2\x42\x5b\xd2\x74\xf7\xb0\xd8\x2d\xc9\x21\xda\xfd\xb5\x47\x1a\x43\x84\x22\xd9\x64\xde\x66\xf7\x4a\x22\xea\x97\xd9\xbd\x84\x48\x24\x86\xd9\xbd\x84\xae\x5c\x69\xf2\xee\xf6\x3d\x87\x40\x9d\xf2\x6e\x5f\x91\x4f\x62\x6e\x97\x09\xbf\x84\xcf\x94\xe9\x2b\xf2\xc2\x5b\xcc\x4f\x1d\x0f\xb5\xd2\x66\x33\x1c\x0e\x59\x7c\x39\x6c\x87\xe3\x51\x7d\x6d\x92\x51\x93\xc5\x37\x59\x3c\xfe\x24\xcb\xbc\x60\x82\x57\x8e\xcb\xbc\x60\x42\xf0\x88\xd5\x6a\xb2\x78\x20\xea\xd7\x34\x47\x08\x93\x6a\x16\xbf\x94\xc5\x03\x51\xed\xa8\x2c\x1e\x08\xae\xae\x57\x93\xc5\xe3\x6a\xf6\x7e\x49\x05\x32\xef\x66\xd2\x2e\xf4\xe5\xd6\x1c\x8e\xe6\xbc\xa3\xe5\x35\x99\x37\x10\x3c\x79\xbf\x5a\xb3\x9f\xcd\x7d\x70\x5a\xa9\x1d\x6d\xee\x03\x26\x54\x16\xdf\x9a\x93\x7c\xfa\xa9\x5d\x68\x4e\x32\x3d\x50\x5f\x06\xde\x62\xb4\x4d\x85\x19\x08\xde\x33\x5f\xba\xc4\x09\x7a\x7d\x2e\x5d\xe2\x84\xf7\x4b\x7a\xaa\xbe\x0c\x78\x95\xb7\x9a\x6c\x1d\x08\x52\xe5\xac\x26\x5b\x6f\xfa\xab\x39\xb8\xdd\x79\x97\xd3\x7b\xc8\x6a\x72\x7a\x40\xcb\xff\x6a\x72\xfa\xd6\x9d\x50\x98\x5d\x93\xad\x03\x41\xda\x9a\xd5\x34\x0c\xe8\xad\x97\x05\xad\x40\x6f\xbd\xd5\x42\x96\x05\x73\x6e\x2a\xc7\x40\x64\x97\x64\x0f\x3e\x7e\xed\xfc\xc9\xaf\x9b\xfc\x1a\x59\xd2\xe4\xd7\x80\xf7\xdb\xab\xc9\xae\x81\x48\x58\x56\x93\x5d\xb7\x8f\xc1\x56\xbf\x74\x65\xc9\x60\x5d\xe0\x32\xd8\x96\x8e\xa4\x4c\x40\xd6\x09\x44\x71\xe2\x65\x9d\x2d\x5d\x1f\x6e\x04\xf9\x64\xf3\x40\x5e\x2c\xe6\xfa\xf8\x38\x1b\x4c\x51\xb7\xc4\x85\x5b\xe2\xc9\x4b\xe8\x4b\xb7\xc4\xd5\x55\x24\x79\x51\x74\x75\x79\x56\x37\x92\xfd\xfc\x0d\x27\xed\x2e\x4b\xeb\xa7\xf3\x16\xfe\x72\x48\x63\x20\x3e\x52\x4a\x32\xf9\xc7\x01\xe9\x92\xe4\x76\x42\x2d\xe9\x72\x1c\xe0\xb3\x0e\x99\x3d\x4f\x28\xbe\xcf\xb4\x4c\x9f\x27\xc4\x99\x7e\x69\xcb\x39\x07\x6b\x30\xea\x32\xa1\x6e\xfe\xcd\xea\x87\x55\x92\x93\xcb\x71\xab\xcb\x84\x80\x38\x10\x5b\x5d\x26\x64\xde\x3d\x9f\xf4\x5b\xe6\xdd\x13\x3e\xb3\x92\x79\xf7\x56\xf7\x30\xbb\x23\x65\xf5\xe2\x14\x82\x0c\x18\xab\xab\x92\x01\xd1\x77\x4b\x39\x1c\xaa\x64\x64\x11\x58\xdd\xfd\x0a\x84\xa6\xc2\xae\x4a\xa6\x4b\x68\xee\x4e\x9b\x5b\x58\x97\x50\xbc\x28\x96\x2e\xa1\xab\xab\x6b\xed\xd8\x05\xba\xbb\x0e\x08\x2f\x20\xf4\x12\x5d\xdd\x2d\xb6\x23\xf1\xcc\xf6\x27\x74\x02\x30\x97\xd9\xfe\x96\x2e\xa1\x89\x23\xd6\xd2\x25\x74\x75\xf7\xce\x6e\x1f\xdc\x3b\x40\xef\x6c\xa7\xee\xde\xe9\x9e\x22\xb5\xbb\x74\x37\x0a\x90\x1d\xb5\xa3\xbb\x51\x3a\x56\xb5\x24\xc2\x7d\x75\x35\x16\xa0\x93\x22\x6e\x75\x15\x16\x20\xce\xd3\x1f\x73\x40\xdc\x4f\xf8\x64\xaf\xee\x7e\x02\x82\x77\x15\x57\x77\x3f\x75\x8f\x8c\x41\x9d\x2a\x2c\x3d\x1d\x23\x4e\xf2\xdd\xfd\x04\x04\xb9\x9c\x56\xf7\x94\x07\x94\xdc\x61\x9a\xdd\x63\x1e\x10\x89\x96\xdd\x55\x58\x74\x91\x35\xc5\xd1\xd2\x45\x76\xf5\x27\x7f\xfe\x71\x72\x57\xbe\x74\x91\x5d\xe6\x10\x34\xcb\xcb\x32\x87\xa0\x10\xc4\x79\x2d\x73\x08\xae\xd0\xae\x83\xb7\xc3\xd2\xd1\x55\xe8\x1a\x93\xc2\xf5\x1c\xdf\xc4\xa0\x64\xe8\x9a\xba\x02\x5f\x04\x1f\x18\x58\x61\x57\x81\x4e\xe2\xc2\x15\x1e\x8e\x81\x20\x41\xfa\xd2\x33\x55\x28\x3e\x03\xbf\x74\x4d\x15\xba\x9a\xa4\xae\xa7\x42\xef\xcd\x52\x55\x12\x7a\x3a\xec\x25\x1c\x36\x3c\x4f\x4b\x1e\x4c\xbc\xae\xa7\x42\x1c\xdd\x1f\x1b\x92\x30\x0b\x32\x07\xa1\xb6\x06\x74\xef\x15\xf4\x4f\x15\xa2\x7e\xad\x70\x84\x34\x14\xb2\xf9\x42\x95\x0e\x88\x40\xd2\x84\x2a\x9d\x5e\xac\xa9\x68\xd7\x8b\x75\xe1\xc5\x7a\x72\x2f\xbc\xf4\x62\x15\xde\x62\xd2\x8a\x34\x06\x08\x35\x2f\x55\xe9\x80\xc4\x79\x65\xa5\xec\x11\x78\xbf\xb4\xd8\x29\x8d\xb7\x03\xd8\x41\xe9\x41\x1b\xd0\xdf\x7b\xa5\x07\x6d\xa0\x6b\xf9\x4d\x15\xbf\x94\x73\x92\xe5\x69\xa5\x9c\x13\x30\xbc\x60\xa5\x9c\x13\x08\xe2\x4b\x57\xca\x39\x81\xce\xab\x06\x2b\x55\xfc\x52\x43\x23\xb1\xa4\x2b\x35\x34\x02\x29\x63\x4b\x17\x5f\x7a\x3b\xbd\x5b\xe5\x2d\x09\x45\xe7\xeb\xf9\x23\xe9\xe1\xc3\x77\xce\x75\xe9\x15\xde\xdf\x97\xe6\x98\x91\x6e\x04\xbf\xb2\x95\x32\xe6\xf4\xd1\xc7\x4d\x92\x63\xf6\x42\xe2\x17\xb4\xd2\x85\x0c\x04\xa9\x2b\x56\xca\x98\x81\xd8\xbf\x9f\x77\xc8\xe0\xcb\xb8\x92\xae\x94\x2f\xfb\x68\x8f\x7b\x27\xd5\x0d\x81\x92\x04\x05\x2d\x1f\xf2\x11\x22\x9c\x39\x75\xc3\xf4\xe1\x2d\x04\x6c\xaa\x1b\xa6\xba\x21\x29\xa6\x97\xcf\xfd\x08\x11\x5f\xfb\x1d\xb2\xe6\x3e\x81\x23\xa4\xe7\x73\x20\x79\x3b\x7c\xa5\xe2\x01\x88\x13\x95\x29\x15\x0f\x40\xef\xe8\x86\xa9\x86\x97\x4a\x8c\xc3\xa9\x53\x62\x00\x49\xa8\xe6\x4a\x25\x46\xb6\xaf\x69\x0c\x87\xe2\x01\x48\x2d\xef\xd9\xbe\xa6\xc1\x0d\x8f\xfa\x1b\xce\xd8\xfa\x5c\x0b\x3d\x1c\x67\x05\x8a\x3e\xd7\xbe\x33\xbf\xf4\xb9\x16\x82\x6c\xc8\x4b\x9f\x6b\xa1\xf8\xa8\xfc\x4a\x95\x42\x40\x0f\xb2\x95\x2a\x85\xe9\xd3\x42\xee\x2d\x75\x42\x20\xda\x47\x72\x68\xb4\xa1\xc2\x2b\x53\xe9\x94\xea\x84\x61\x29\x47\x46\x81\x45\xf4\xef\xd2\xa7\x5b\xe8\xda\x0c\x53\x81\x95\xc6\xeb\x72\x73\x91\x5e\x29\xa5\x6a\x22\xaf\xb5\x2e\x33\x7d\x0a\x11\x8e\xa9\x6a\x22\x90\x47\x5a\xca\x01\xc2\x1e\xe0\x7d\xb9\x2e\xe3\x42\x0f\x57\x9d\xe6\x80\x54\xd0\x11\x5d\xbc\x52\x41\x07\x84\xea\x54\x2a\xe8\x92\x7b\xa1\x24\xf6\x77\xa5\x22\x0c\x88\x40\xe5\x4c\x25\x18\x90\x47\xfa\xa5\x93\x62\x7e\x33\x94\x66\x5d\xd2\x85\x38\xed\x92\x6c\x3d\xb5\x79\x62\xa1\x4d\xd9\x7a\x2a\xc0\x48\xbd\xbf\x52\x01\x06\xe4\x91\x92\x6c\x19\x27\xee\x40\x5d\x4a\x35\xc9\xf4\x78\x7d\xb8\x84\x65\xd8\x69\xd0\xa0\xf3\x24\xc3\x36\x39\x6a\x1e\xdd\x76\xd8\x27\x38\x76\x77\x6d\xca\xb1\x81\xc8\xcd\x3a\xed\x93\x57\x3b\x4a\x04\xf3\xa5\x0a\xc1\xbb\xf9\x4b\x67\xf9\x85\xb3\xfc\xa9\x26\xa0\xb3\xbc\xf0\x7e\x29\xad\x48\xc3\xc9\x88\x85\x60\x0a\x55\x21\x89\x8d\x5e\xa6\x50\x5d\xd7\xc7\x64\xd1\x28\x2f\x99\xec\xe5\xfb\x49\x9b\x3f\x96\x92\xec\x14\xab\xcf\x57\xb8\x84\xae\x91\x46\x07\x7d\x21\x7a\x5a\x27\x9d\xf2\x79\xad\x8f\x59\xea\xca\x2e\x74\x4d\x28\xe6\x3c\x5d\x7a\xb7\x27\x81\xd0\x4b\xef\x76\x21\x88\x4f\x5a\x7a\xb7\x2f\xf3\xa0\x26\x2f\xe7\x2c\x1d\xd2\x17\x39\x4f\x8b\xb9\xad\x97\x49\x4f\x85\xe0\x2d\xcb\x65\xce\xd3\xa5\xa7\x79\xaa\x2e\xe9\x69\x2e\x64\xdf\x25\xd9\x5e\x65\x24\xa9\xc3\x97\x8e\xe0\x0b\x47\x70\x9f\x2e\x5f\x3a\x82\x2f\x93\x7c\xe6\x89\x58\xd0\xc9\x59\x08\x1e\xaf\x58\x26\xf9\x5c\xc3\x1d\x4a\x84\xf3\x1a\xf6\x61\x68\x9f\x43\x86\x0d\x77\xa8\xde\xcb\x49\xe8\xf2\xd2\x7b\x79\x0d\xcd\x67\xe4\x26\x5f\x43\xfd\x71\x98\xde\x95\x41\x1a\xf6\x74\xa8\x2b\xe2\x9b\xbb\x86\xba\x22\x90\x5a\x00\x87\xba\xe2\xd0\xaa\x54\x11\xa6\xc3\x35\x0e\xa4\xae\x42\xc3\x35\xae\xbf\x71\xe2\x1e\xb9\xf4\x37\x5e\xf8\x1b\x9f\x1e\x9d\xf5\x37\x5e\xd3\x4b\x40\xde\x5d\x5e\x53\xa1\x0e\xa4\x5a\xbc\x4f\x5b\x2d\x7d\x84\x93\x10\xe4\xa5\x8f\xb0\x90\x84\xcf\x2f\x9d\x80\x85\x4e\xd8\xe3\x9a\x8a\x4e\x20\x49\xf3\xb0\xcc\x18\x2a\x94\xc4\xfd\x72\x99\x32\x54\x88\x1e\x92\x4e\x49\x36\x0d\x9e\x3b\x15\x9e\x53\xcf\xa6\x43\x92\x4d\x23\x46\xc4\x2b\x9e\xa9\xf0\x04\x92\x08\x8e\x35\x15\x9e\xb8\x22\xbf\x3f\x76\x40\x5b\xd2\xc8\x76\x8b\x5a\x38\xb5\x85\x4c\xef\xf6\xc8\xcb\xbe\x4c\x36\x2a\xa4\xf6\x00\x73\x8d\x2e\xdc\x8f\x4b\x92\x8b\x7b\x99\x45\x54\xe8\xbc\xd3\xb4\x4c\x22\xba\xbe\x24\xa2\xe8\x50\x26\x11\x5d\x53\x8b\x06\x0f\xd8\xae\xa9\x45\x03\x48\xd2\x7f\xaf\xa9\x08\xf4\x41\xb0\x24\xdb\xd8\x32\x2f\xa6\x10\xa7\x7d\x97\xab\xeb\x8a\x9c\xbc\x5f\xb6\x74\x45\x5e\x53\x86\xad\x76\x6e\xde\x4a\xa1\x07\xdc\xd3\xb4\x95\xeb\x4b\x5b\xc9\x81\xce\xb4\x95\x42\x4f\x98\xa7\x69\x2b\x85\x28\x55\x92\xad\x75\xf7\xf1\x7e\xed\xd2\xd5\x59\x88\xe6\x4c\xb9\xfb\xa6\xea\x7a\x2b\xed\xd7\x25\xb6\x69\x2d\x85\x4f\x06\x4e\xd9\xfe\x94\xc7\x37\xac\xf7\xba\x3d\x0b\x9f\xc0\x9b\xae\xff\x29\x43\x27\xbe\x7c\x99\xfd\x52\x88\xd3\xa6\xcb\xd0\xa7\x6c\xb9\xb9\x56\x64\xcb\x40\x6a\x4a\xd3\x39\x7a\xe1\x1c\x5d\x37\x96\xa7\xce\xd1\x8b\xe4\x94\x25\x79\xa8\x70\x99\x9d\x52\x48\x32\x60\xac\xa5\xa2\x6b\x3e\xc9\x6c\xcc\xb8\xf9\x24\x85\xc4\xe1\x7d\x99\x4f\x72\x2d\x37\x00\xb9\x8b\xd6\x72\x03\x00\x9f\x8b\xd8\x72\x03\x2c\xdf\xea\x42\xab\x5a\xae\x7f\x20\x79\xc9\x63\x2d\xd7\x3f\xf0\xc9\x67\x93\x4e\x0a\x79\x34\x7f\x3e\x24\x85\x55\xfa\xfb\x29\x0d\x6d\xa2\x49\xba\x24\x39\xb9\xf0\x4c\x9f\x64\x13\x82\x77\xf3\x96\x4f\xb2\x09\xc5\xc7\x88\xd6\x92\x67\x2e\x53\xb0\x20\x8d\x7d\xa5\x4d\x78\x8b\xf1\xa9\xbb\x09\xc8\x03\x31\xb8\xdc\x4d\x4b\x1b\x04\x8e\xb5\x6b\xa9\x64\x02\xc1\x03\x64\x6b\xa9\x64\x02\x79\x70\xce\x37\x1f\xe6\x22\x6d\x65\xf1\x6d\xa3\xb5\x54\x15\x81\x3c\x9c\x3d\x55\x41\xd3\x5a\x7e\xae\x7b\xa6\xb5\x5c\x5f\x5a\x4b\x6c\x81\xa6\xb5\x14\xe2\xc4\x0e\x65\x56\xcb\xc5\x6b\x70\xe5\x73\x8f\x5b\xaa\x6f\xcb\x3c\x73\x2e\x05\xe5\x1b\xf0\xe9\x13\x4b\xd9\xb0\xbe\xc7\x05\x24\x39\xde\x78\xff\x1c\xdd\xdf\x1a\x92\xbe\x96\xd1\x29\x37\xb0\x29\x2c\xd3\xdd\x64\x0a\x4b\xa1\xeb\x00\x63\x0a\x4b\x21\x8f\xaf\x94\x03\xa9\xfc\x6c\xd6\xa0\x54\x59\xbe\xbd\x76\x58\x81\x1d\xc0\xc6\x47\xc2\xb4\xe5\xfb\x74\xcb\x44\x97\xd9\xec\x81\x1b\x7d\xe9\xfd\xe3\x52\x50\xf6\x90\xd4\xf2\x2d\xc6\xec\xb9\xd1\x81\x3c\xd0\xdf\x0c\x11\x58\x4b\x23\x9f\x5e\x37\xcb\xd3\xf5\x32\xb0\x13\x7e\xb3\x3c\x5d\xaf\x6f\x73\x87\x9f\xda\x90\xd4\x33\x89\xb6\xb9\xb9\x97\x27\x6e\x5c\x94\xd7\xf2\xc4\xbd\xcc\x92\x51\xfc\xd2\xe6\xb2\xdf\xbb\xfb\xc0\xfd\xbe\x74\xc4\x21\x56\x61\x2d\xb5\x35\x20\xbd\x69\x5a\x6a\x6b\xeb\x63\x0b\x2e\x36\xd9\xc2\xd2\x11\x07\x19\x68\xa8\xc2\x22\x54\xa1\x16\x34\x5c\x43\x15\x84\xe8\x8c\xf7\xad\xb2\x06\x7c\x3a\xe3\xad\xb2\x76\x7b\x96\xd6\x2b\xda\xac\x99\x42\xe8\xa0\x6c\xd2\xcc\x75\xab\xc0\x79\x80\xbf\x55\xe0\x80\xd0\x13\xcc\xa4\x99\x42\x78\xa9\x64\xd2\xcc\x75\x2b\x9d\xc9\xb2\xb3\x6e\xa5\xf3\xed\xc9\x16\x41\x76\x2b\x9d\x6f\x6f\x12\xc8\x5a\xbf\xcc\x3e\x29\xc4\x86\xb0\xb8\x3d\x2d\xde\x9e\x16\xc9\xc8\xb0\x6e\x4f\x8b\xb7\x91\x3c\xe1\xaf\x2d\x49\xec\x33\x87\x43\x4e\x71\x7b\x59\xac\xef\xb4\x49\x2a\x85\x24\x4b\xc3\x32\x49\xe5\xba\x95\x81\x04\x1e\xaf\x5b\x19\x08\x98\xb8\x61\x99\x30\x72\x99\x1d\xf2\x93\xec\x66\x87\x14\x7a\xa0\xfb\x98\x1d\x52\xe8\x5a\xdd\xcc\x0e\x29\xf4\x0e\x3f\x31\x32\x44\x08\x59\xa2\x91\x21\xcb\xc8\x90\x4f\xfe\x1b\x19\xb2\xcc\x56\x98\xbc\x89\xb9\xcc\x56\x28\x24\xaf\x2b\x2c\xb3\x15\x2e\xd3\xff\xa5\x8b\xcd\xc0\x8d\xf5\xa5\xff\xe3\x8e\xd4\xf4\x7f\x42\x49\x7d\xdf\x8d\xe5\x58\xc4\x72\x54\xe2\x09\x97\xb1\x1c\x42\x04\x0c\xc5\xf4\x7f\xc2\xfb\xe5\x0e\x6d\x97\x46\x92\x06\x44\xe1\xa3\xce\x6f\x96\xc0\x74\x01\x9a\x25\x50\x08\x32\x59\x2f\x03\x43\xd6\xf3\xcd\x28\x3b\xde\xb8\x0d\x21\x88\xb4\x58\xc6\x6d\x08\x25\x7b\xf6\x5f\x17\xd9\x4f\xfd\x7e\x59\x27\x96\x80\xf4\x48\x62\x8a\x38\xad\x98\x1e\x50\x88\xca\x36\x34\x3d\xe0\xf2\x29\xc6\xd4\x1f\xdc\xc4\x7f\x42\x34\xb4\x6e\x13\xff\x09\x25\xb5\x7d\x3d\x32\xfd\x47\x45\xab\xfb\x6b\x5d\x52\xb7\x18\xc3\xa5\xa6\x65\x7e\xc0\xde\xad\x20\x25\x4d\x8b\x31\x0e\x8a\x0b\x20\x4e\x4e\xa4\x8f\xe2\xe2\xf1\xb6\x47\xdd\xc8\x28\x14\xa1\x07\xbb\xce\x20\x94\xf5\x78\xd0\xe1\x25\xd1\x65\x4a\x3f\x21\x3c\xdf\x1a\x84\x22\x44\xc3\xf4\x6a\x10\x8a\xf0\x7e\x59\xa1\x5d\xd2\xf0\xda\x28\x7e\x39\x24\x0d\x8b\x31\x94\x2a\x81\x5f\x4e\xbf\xc3\x3a\xed\x81\x77\xfd\xe1\xc2\xe8\x5f\x17\xc8\x97\x6e\x0f\x5c\xda\x40\x10\x61\xbc\x8c\x5e\x59\x8f\xb6\x6e\x52\x5f\x2c\x73\xfa\x09\xb9\x3b\xe0\x9e\x55\x1e\xc5\x8a\x6a\xfd\xa3\x58\x79\x14\x2b\x55\x92\xf3\x42\xe0\x4b\xc6\x57\x83\x3d\x25\xf0\x85\x64\x94\xcb\xc0\x97\xf5\xa5\xfe\x73\x0e\x94\x34\xe6\xd4\x4b\x4d\x11\x06\xa1\x2c\x82\x50\x2a\x69\xd9\x6e\x83\x50\xee\xcd\x6b\x14\x96\xd6\x6d\xe6\x3a\x21\xd0\x59\x6f\x03\x4e\x6e\x9f\x5d\x4c\x1c\x82\x6e\x63\x44\x84\x80\x49\xdc\x26\x96\xbb\xcd\x0f\x97\xf1\x4e\xcc\x6d\x7e\x38\x41\xe7\xd6\xdb\xfc\x70\xb7\xf1\x20\x66\xd5\xbb\x8d\x07\xb9\xbf\x78\x90\x57\x97\xba\x8d\x07\xb9\x37\x2f\x26\xb0\xc4\xdd\xe6\x6a\x13\x22\xfc\x35\x74\x07\xa1\x18\xf3\x70\x9b\xab\x4d\x08\x5e\x1b\xbd\xcd\xd5\x26\x14\xdf\x89\xbb\xcd\xd5\x26\x44\xb7\x1d\xdd\xb6\xc9\xc1\x78\xeb\xfc\x36\x6c\xe4\xde\x54\xff\x73\xa3\xd6\xb0\x06\xd5\xff\x66\x31\x6b\xd0\x5e\x93\x5b\x42\xb3\x0f\xda\x6b\x0e\x49\x0e\x92\x02\x9f\x14\x27\xf7\x86\xc0\x17\x8c\xf3\xbe\x79\xf0\xfe\x83\x0e\x8b\xbc\x7d\xf6\x5e\x78\xbf\xa4\xbd\x70\x52\x41\x17\xe3\x9b\x37\xf0\x3f\x78\x8b\xd1\x53\x54\x05\x21\xf0\x8c\xbb\x7d\x0a\xff\xf6\x39\xc9\xc4\x77\xff\xf6\x39\x49\x21\xd2\x11\x4f\x7b\xe5\x42\xe2\x51\x9a\xdb\x98\x99\x9b\x98\x99\xca\xdb\x04\xb7\x31\x33\x77\x91\xbb\xe2\x3c\x7c\x17\xb8\xab\xa0\xc3\xf2\x5d\xe0\xae\x77\x91\x47\xe1\x15\x7c\x17\x78\x94\x10\x98\x6c\xee\x02\x8f\xba\x8b\xcc\x07\xbf\x86\xbb\xc0\x7c\x84\x4e\x7c\xca\x5d\x5c\x5b\x45\xae\x82\x7f\xc5\x4d\x38\xcc\x07\xc1\x2b\x13\xb7\x41\x31\x42\x94\x8d\x3a\x5d\x34\x46\xbb\x24\xe7\xf6\xdb\x68\x97\xbb\x68\x53\x20\x72\xe1\x2e\xe1\xaf\xe1\x92\x73\xd8\xd3\xf0\xd7\xb0\x9e\xf0\xe4\xe6\x5d\xc2\x5f\xfb\x16\x08\x5b\xa6\xb8\x40\x8a\x37\x57\xaf\xe6\x7b\x17\x17\x48\x71\x37\x3b\x0b\x25\xec\x02\x51\xff\x44\xbb\xdd\x85\xdd\x7c\x17\xdd\x6f\xdc\x32\x05\x2d\x51\x88\x6a\x17\x5c\x5a\xc5\x43\x23\x8e\xde\x77\x71\x6d\x95\x34\x89\x1e\x43\xe9\xa2\x01\xf2\xb4\xb9\xae\x99\xe2\xe5\x0d\xaa\xef\x5d\x5c\x34\xc5\x37\xf2\x1c\x70\xd7\x4c\x31\x53\x5b\x50\xa7\x6b\x06\xc8\x13\x36\x60\xd2\xbb\xbb\x68\x3b\xc1\x43\xfc\xf6\x2d\x4d\x21\xe2\xb0\x98\xfd\xcc\xaf\xb5\xac\x8f\xfc\x5a\x8b\x39\xd9\x39\x40\xe2\x0b\x79\xb2\xad\x88\x21\xfa\x60\xdf\x70\xbd\xbe\x0d\x25\xba\x09\x25\xaa\xbc\xc6\x7d\x1b\x4a\x24\xbc\xc5\x4e\x68\x45\x9a\x7d\x6f\x90\x76\x49\xbb\xc5\x2a\xb4\x43\x1a\x16\x37\x36\x82\xe1\x45\x37\xe1\x43\x6f\xb1\x5f\x3f\x6a\xdf\xe6\xeb\x13\x12\x63\xe4\xbd\xcb\x49\x81\x7d\xdb\xfc\x65\x59\x29\x90\x3c\x9a\x74\xef\xd5\x36\x55\xdb\xf4\xca\x8c\x7b\xaf\xb6\x89\x8b\x0f\x92\xad\xde\x7b\xb5\x4d\x5c\x7c\x60\x6f\xbe\x77\xce\xae\xf7\xfe\xaa\x9f\xef\x97\x56\x7a\x49\x23\xb6\x24\xfc\x72\x48\xe2\x7d\xbb\xce\x38\xa0\xab\xdc\x04\x3e\xed\x1b\xcf\xe4\xdc\xbb\xec\x7b\xf7\x91\xc8\x6e\x33\xec\xd4\xab\x5a\xbc\xc5\xf8\xb4\xd9\x5c\x53\x30\x76\x06\xbf\xd9\x5a\x32\x23\x71\xb3\x75\x1b\x2b\x75\x93\x97\xf0\xfd\x92\xa6\xa1\x53\x08\x3d\x37\xbf\x0c\x49\x58\xe4\x5f\x6d\xeb\x36\x56\x4a\xd8\x37\x9c\x15\xef\x5d\x91\x01\x24\x17\x24\xf7\xde\xec\x54\xb3\x53\x74\x40\x21\x42\x44\xd5\xfb\xa5\xbf\x66\xa7\xbc\xb3\xd8\xfc\xb1\xaf\x53\xbe\xe1\x4f\x3f\xbb\x33\xf5\x0a\x8c\xf7\x4b\x2a\x50\x62\x00\xc1\xd3\x13\xf7\xae\xc0\x20\x8b\xe2\xbe\xe1\x89\x70\x9b\x45\x51\xe8\xf8\xad\xde\x66\x51\x14\xde\x62\x4c\x95\xdc\xe5\x7b\x69\xb5\xf3\x6b\xf1\x7f\x31\x76\x3f\x39\x13\xeb\x3a\x76\xc0\xe7\x59\xc5\xdb\x41\xca\xae\xb2\x25\x01\x99\x65\x9c\xec\xa1\xfe\x90\x40\x0f\xba\xfb\xe2\xa6\x7b\xff\x81\xcf\xcf\x77\x90\xf4\xe0\xbe\xc1\x87\xf3\x81\x90\xcb\x96\x2c\x51\x14\xcd\x43\x9a\x0a\x49\x0c\x92\xef\x24\xb5\x4f\x63\x3b\x8d\xad\x0b\x8d\xed\xa5\x35\xae\x1f\xcb\xe3\xd2\x1a\xea\xb1\xbe\x4c\x05\x5a\x23\xb0\x3f\x12\xd5\x5c\xe8\x59\x60\xbd\xa2\x80\x77\x8a\x24\x8c\xad\xab\x59\x3a\x4a\x6b\x04\x56\xf2\x51\x16\xc6\x16\x90\x3e\xa4\x76\x1b\x52\x48\x5c\xd7\x95\xb9\x29\x4d\xb2\x4b\x21\x37\x73\x03\x8a\x64\xa7\x48\xa6\x56\xa6\x42\xd8\xb5\x71\xf3\x16\x5a\x17\x58\xa9\x84\x59\x68\x5d\x15\x0a\xd7\xf5\xfb\x19\x21\x8a\x44\x7e\xc7\x24\xe9\x2d\xf9\x1d\xc1\x4c\x41\xbb\x92\xdf\x11\xac\xd4\xcb\x2c\xf9\x1d\xc1\x4c\x98\x73\x49\xef\x58\xe1\x83\xed\x8f\x04\x52\x17\x3e\x58\xdd\x7c\x30\xb3\x8f\x6a\x09\x1f\xec\xc8\xf7\xa6\xc2\x07\xab\xe4\x6f\xbc\xae\x24\xdb\xc9\xd2\xf3\x45\xf4\x24\x4a\xcf\xa3\x8f\xb1\xc6\xea\xf9\xb2\x08\xa2\xcf\xc2\x17\xbb\x61\x25\xfc\xa4\xb0\xc6\x2a\x74\xb0\xfd\x91\x70\xe8\xc2\x07\x03\x63\x9c\x9a\x7d\x89\x4c\xab\x3c\xee\x93\xd6\x79\xd2\x3a\x31\x61\xd0\xc1\xc0\xd5\x2c\x97\xd2\x3a\x81\x19\x1a\x56\x3d\x69\x9d\xe7\xa5\x61\xae\x66\x79\x36\x2a\xe6\x49\xc5\xc4\x34\xc1\x1a\x03\x33\xdf\xc7\x0a\x6b\xac\xc2\x1a\xbb\xae\x5c\x91\xe9\x82\x3a\xb4\x53\xb3\x45\xf4\x49\xb3\xbc\x64\x14\x31\x30\x86\x91\x64\x47\x86\x02\x76\x35\xcb\x4d\x4f\x5d\x90\x0c\x76\xee\x11\xe9\xc1\x65\x19\x5c\xcd\xf2\xb8\xa7\x07\x51\x51\x39\x96\xc3\x93\x3e\x49\x35\xe0\xfd\xf1\xc8\xe6\xa9\x1c\x30\x98\x89\x7a\xad\xe7\xd0\xf9\x11\x95\x9b\x28\xdd\x7a\x0e\xef\x2f\x1f\x1f\x43\x35\xac\x27\x63\x22\x30\x96\xd7\xc7\x98\x78\xd2\x14\xdb\xdd\xec\xbe\xe9\xd5\xf9\xc4\x43\x17\xaa\x1a\xc0\x3e\x2e\x4c\xb5\x0a\x2d\xed\xba\x32\x9d\x1f\xc6\x23\x3c\xf9\x14\x6a\x29\xb4\x34\x70\x35\xf3\x6b\x45\x96\xcf\xec\x51\xb9\x98\x6a\x95\x7a\xc5\x57\xb3\x8c\x38\x1d\x10\x98\x71\xd9\x16\xbe\x19\xd8\x1f\x09\x40\x2f\x84\x33\xb0\x8e\x98\x48\xf8\x66\x15\x72\xd9\xd5\x2c\x43\x49\x07\x04\x56\xa2\xbe\x0a\xb9\x0c\xec\x8f\x84\xa0\x16\x72\x19\x98\xcf\xa7\x66\x46\x77\x19\x5d\xdd\xa2\x17\x02\xeb\x70\x03\x7a\x21\x70\x35\xcb\xf3\x52\x0c\x4f\x69\x75\xb3\x93\xe0\x9b\x55\x88\x64\x57\xb3\x4c\x10\x5a\x20\xb0\x0e\xaf\x8f\x16\x08\x6b\xec\x6a\xf6\xf7\x47\xed\xc2\x2a\x03\x2b\x59\x66\x2b\x0c\xb3\x1b\xae\x5f\xf1\x9c\x46\x5f\x4a\x09\xaf\x97\x9d\x12\x58\xc9\xa7\x51\x78\x66\x60\x7f\x24\x44\xb5\x30\xc9\x2a\x4c\xb2\x23\xee\x90\xc2\x24\x03\xeb\x48\x67\x10\xc9\xc0\x3a\x36\xa2\x9d\x68\x4f\xff\x9e\x11\x3d\x89\x32\x80\x19\xfa\x17\xf5\x12\x58\xac\x42\x6c\xb3\x0a\x8d\xec\x7a\x0a\xcd\x26\x59\xa6\xe7\xc3\x53\x2c\x22\xdd\x7c\xba\x67\x91\xe5\x8b\xc3\xe1\x9e\x4d\xd4\x9a\xe5\x52\xea\x25\x30\x93\x5e\xa4\x5e\xb4\x4b\x60\x7f\x24\x55\x5a\xbd\xa8\x97\xc0\xcc\xd7\xad\xc2\x36\x03\xeb\x70\x4f\x0a\xe7\x45\x95\x24\x1a\xb5\xd0\xc8\xc0\x4c\xd5\x99\x42\x23\x03\x57\xb3\x23\xb2\x37\xd9\x3b\xbf\xe6\xd1\x3e\x44\xa6\xc0\xcb\xb3\x7d\xc9\x72\xb0\x8c\x61\x8b\x6d\x06\xae\x66\x23\x32\x9d\x8f\xd7\x65\xdc\x3d\xd0\xf9\xf3\xee\xd5\xb5\x74\x90\xd2\xc0\x4a\x69\xd3\x42\x4a\xab\x64\x7f\xdd\x1f\x89\x16\xad\x97\xf3\x4b\x60\x1d\x59\xe9\x2f\xba\x2a\x3c\xb5\xab\x99\x4b\xf5\x94\xf1\xf3\xd4\x4c\x4f\x6f\xc5\x94\xfd\x19\xb5\x0c\xac\x43\x33\x8a\x29\xb0\x3f\xe2\x39\x2d\xd4\x32\xb0\x0e\x5d\x70\xcc\x09\x8d\xec\x6a\x96\x01\x19\xf7\x1d\x2c\x9d\x74\x9e\x66\x0a\x48\x89\x59\x98\x65\x60\x1d\x4f\x3f\x66\x24\xe9\x2a\xaf\x8a\xae\x7a\xdd\xba\x2a\x46\x2f\xb2\x19\x58\x49\x69\x5c\xc8\x66\x60\x7f\xa4\xa6\x6d\xc9\x5b\x5b\x77\xde\xda\x6c\x5c\xf8\x67\x15\xb2\xd9\xd5\x2c\x77\x70\x00\xc3\x36\x7b\x19\x5c\x07\xb0\xc0\x4a\x7d\xe5\x7a\x39\x80\x05\x56\x08\x8a\x85\x7f\x06\x7c\xf9\x2d\xfc\x33\xb0\x42\xd8\x2c\x15\xc4\x2b\xbc\xb2\xeb\x96\x9e\x56\xa7\x52\xb1\x33\x55\xa0\x0a\xb1\x0c\x5c\xcd\x32\x68\xd4\x23\x66\xd9\x3d\x73\xa9\xc7\xd7\xad\xf7\x62\x41\xe3\x8c\xd5\xcd\x19\x3b\xd3\x75\x7a\xef\xc5\xd2\xd9\xa6\x4b\x3d\x5b\x2c\x9d\xc3\x94\xa4\xe3\x42\x06\xbb\x9a\x65\x88\xa8\xa7\xc0\x4a\x2a\xee\x7a\xd1\x4e\x2f\xaa\xc8\x08\x51\x45\xaf\x5b\x15\x65\x63\x44\x06\xab\x90\xc1\x0e\xc7\x67\x64\xb0\x0a\xa5\x6b\x7f\x6c\x39\xb6\xe2\x74\x01\x89\x10\x0a\xa7\x0b\x5c\xcd\xce\xc8\x26\x99\xc7\xdd\x23\x5a\x44\x6f\xcd\x46\x64\x1f\xb2\xcc\xa2\xac\x20\xe9\x73\xeb\xb8\x35\xcf\x5a\x91\x15\x99\xb8\xa2\x57\x44\x4d\xa4\x57\x11\x51\x3c\x81\x95\x44\xe7\x85\x0c\x06\x56\xb2\xe7\x16\x32\x58\x85\xf8\xb5\x3f\xe2\x6d\x2b\xcc\x2f\xb0\x42\xac\x29\xc4\x2f\x30\x92\x1d\xbf\x10\xbf\xc0\x75\xa5\x7b\xea\x67\x74\x51\x12\x06\xd4\x41\x17\x1d\x94\xcc\xfe\x70\x53\x9d\x8a\x92\xd9\xee\x47\xfb\x11\xfd\x34\x4b\xdf\x29\x99\xc0\x4c\xb8\x65\x21\x7e\x55\x58\x5e\x57\xb3\x0c\x07\x53\x07\xcd\xeb\xdc\x88\xf4\xea\xcc\xd2\xd8\xb7\xf4\xca\x09\x2b\x20\x1a\xa1\x70\xba\xc0\x98\xc6\x83\xde\x39\xe8\x9d\xdd\x4d\xe9\x1d\x34\xaf\x14\x67\x2a\x34\x2f\x30\x9f\x7a\xe0\xcc\x15\xe6\xd7\x75\xa5\x5f\xd3\xd1\xc4\x91\xe5\x63\x41\x61\x7e\x81\xab\x19\x99\x8e\x26\x91\x63\xa2\x33\x0a\xf3\xab\x0e\x1a\x2b\x89\x1c\x0b\x67\x0b\xac\xe3\xf5\x4f\x1c\xb2\x51\xba\xc0\x4c\xa6\xf5\x3a\xf8\xfa\x0e\x06\xd9\x1e\xed\x85\xe5\x05\xd6\x71\xa4\x37\xd4\x5e\x58\x5e\x57\xb3\xf4\x86\x92\x0b\xac\x97\x71\xa0\xe4\x0e\x4a\x2e\xc7\x8b\x83\x92\x3b\x9c\xe6\x76\xbd\xa1\xd1\x0e\x1a\x2d\x79\x1e\x0b\xcb\x0b\x0c\x8e\x10\x2c\x2f\xb0\x3f\xf2\x61\xb3\x0e\xe7\xb9\x43\xf5\xcc\x1c\xca\x10\xbf\xea\x60\xcb\x85\x23\x55\x78\x59\x60\xa5\xc8\x4e\xe1\x65\xd5\xe1\xec\xc6\x4d\x88\x70\x05\xe6\x34\xcb\x28\xa6\x83\x91\x96\x72\x5c\x75\x30\xd2\x0e\xe9\xbf\x73\x36\x39\x18\x69\xe1\x48\x5d\xcd\x32\x96\x6c\xa8\xc0\x4a\xa2\x80\xc2\x91\x02\x2b\xa5\xfc\x0b\x47\xaa\xc2\x91\xda\x1f\xbb\xe1\x5d\xf7\x4d\xb3\x5e\x5f\xb9\x01\x2d\x74\xd0\x42\xbb\x65\x47\x0b\x85\x23\x75\x70\xb5\xe0\x48\x81\x99\x2a\x12\x85\x23\x55\x21\x3f\x5d\x57\xbe\x22\x7b\x91\x65\xb6\xe7\xf4\x26\x95\x73\x85\xe9\x74\x35\xf3\x6b\x8b\x2c\x54\x81\x49\xf4\x26\xd2\x29\xa2\x0f\x91\x91\xbc\x7f\xad\xc8\xc4\xee\xad\x88\xd2\xa9\x93\x5d\x93\xa4\x91\x85\xc2\x04\x56\x72\x89\x15\x0a\x53\x85\x9c\x74\x35\xcb\x1d\xe8\x17\xe4\xa4\x67\x6c\x6c\xe4\x24\xb0\x3f\x12\x81\x5d\xc8\x49\x40\x0c\x50\x21\x27\x55\x88\x48\x57\xb3\x3c\x1b\xc3\x26\xb0\x12\x66\x5b\x88\x48\x75\xde\xfa\x25\x3b\x17\xda\x11\x90\x83\xbd\xd0\x8e\x2a\xac\xa0\xab\xd9\xf5\xfe\xb0\x82\xc0\xa4\xbc\xb1\x82\xc0\xfe\x48\xb9\xb3\xc2\x0a\x02\x2b\x75\x08\x0a\x2b\xa8\xce\x7b\x11\xe7\x40\x8e\xa1\x03\xe6\x19\x53\x18\x43\x07\xac\x47\x26\x03\x86\x4e\x9d\x2c\x91\xd4\x57\x2a\x74\x1c\x20\x66\xa9\x4e\x96\x48\x60\x25\x7b\x54\x9d\x16\xe9\xe9\xd8\x94\xc2\x46\x85\xb4\x03\xd6\x11\x5d\x82\xb4\x03\xd6\x71\x7a\x0c\xc3\x71\x2f\x5c\xef\xca\xc2\x0d\x0c\x8e\xe5\xd3\xba\x0d\x5c\xcd\xf2\xe6\x2d\xdc\x53\x65\xa6\x98\x5c\xd8\x3e\x60\x7f\x24\x01\x5d\xa1\xfb\x00\xe1\x54\x75\xb2\x4e\xc2\xf6\xb9\x9a\xa5\x0b\x6c\x91\x9b\xee\x73\x68\xe6\xc5\xf3\xea\xa4\xbc\x4e\xe1\xfb\x00\xf1\x54\x75\xd2\x02\xa7\xe3\x5b\x02\xb8\xeb\x74\x7c\x3b\x1d\xdf\x4e\x8f\xab\xf3\x0c\x8f\x84\xc4\xd6\xc9\xf0\x38\x1d\xb8\xcc\x36\x86\xc7\xb9\x3c\x9b\xb5\xc6\xe5\x1f\x58\xc7\xd4\xcc\xb3\xad\xb7\x66\xe9\x3d\x35\x70\x52\x03\x31\x59\x4e\x6a\x20\x30\xe9\xdd\x73\xdd\xcf\x51\xae\xcc\x88\xd3\x0c\x27\xcd\x60\x71\xd0\x0c\x01\x11\x61\x85\x62\x54\xa1\x18\x9d\xc9\x2e\x5e\x28\x46\x35\xb8\x6a\xed\x49\x28\x46\x40\x90\x58\xe1\x10\xd5\x60\x9e\xa4\x7a\x54\xe1\x10\x81\x15\x56\x74\xe1\x10\x81\x75\x64\x29\xe3\x10\xd5\x78\x7d\x5d\x39\x22\xfb\x91\x65\xe7\x8a\xef\x64\xd0\x02\x83\x29\x12\x6f\x07\xa6\x11\x90\x2d\xbf\x30\x8d\xc0\xfe\x08\x89\xa1\x30\x8d\xc0\x0c\xcd\xb0\x30\x8d\xc0\x3a\xb2\x1c\x31\x8d\xc0\x75\xa5\x5f\x3b\xc8\xb2\x33\x66\x9a\x62\x1a\xd5\x38\xcc\x98\xfb\xd7\x74\x2a\xe1\x46\x23\xaa\x6d\x38\x16\x0d\x7e\x92\xf0\x13\x4a\xbe\x78\xb0\x8e\x8d\x68\x10\x19\xb5\x18\x9c\xa8\x46\x40\x1c\x5d\xa1\x1a\x81\xab\xd9\x8c\xec\xbe\x43\xd6\xe8\xda\xfe\x7e\xd7\x1e\x34\xc9\x18\x96\x4e\x4c\x95\xe1\x04\x13\x58\x47\x66\x2c\xd6\x51\x0d\x2b\x9d\x63\x56\x8a\x79\xb0\x0e\x2f\xd7\x4a\x1f\x96\x75\xc2\x24\x0a\xc5\xa8\x86\x35\x9c\xc0\xab\x1a\xd6\x70\x60\xee\xb1\x2a\xb1\x8e\xc0\xd5\x2c\x0f\x62\x0d\x0f\x6b\x38\x1e\xee\x61\x0d\x0f\x27\x8c\xe9\xc7\x0c\xa1\x13\x46\x3c\x9d\xb8\x49\x35\xec\xda\x09\xcf\xaa\x61\xbd\x06\xa6\xaf\x76\xb8\x49\x60\x1d\x71\x48\xe1\x26\xd5\x70\x9c\x48\xd8\x52\x61\x1d\x81\x75\xc4\x0b\x86\x75\x54\x83\xc7\xf5\x69\x32\xda\xb5\x03\xeb\x88\x65\x3f\x2c\xf4\xe1\x38\x91\xb8\x94\x42\x31\xaa\xc1\x3f\x12\x4b\x61\xd8\xdb\x87\xbd\xdd\xa8\x59\xd4\x83\x4b\xf4\xa9\x57\xd6\x66\x40\xbe\xed\xc2\x4d\xaa\xa4\xef\x3f\xf9\xad\x70\x93\x6a\xde\x6b\x33\xfe\xbe\x69\x6d\x4e\x6b\x33\x36\xc6\xb4\x36\xa7\x62\x1c\x4b\xab\x83\xc8\xfc\xcc\xda\x99\x0e\x1d\x81\x49\x45\x4c\x87\x8e\x69\x6f\x0f\x5b\xa3\xa6\x25\x1c\x58\x89\x2b\xa8\x69\x09\x4f\x87\x8e\xe7\x7d\xd3\x0f\x59\x06\xfc\xe1\xa6\x5f\x22\x03\xbe\x74\xa1\xc9\x32\xe0\x44\x96\xf5\xe4\x12\xe5\xec\xc4\x9b\x02\xd3\x87\xde\x69\x71\x4e\xde\x08\xa7\x82\x69\xd9\x4d\xde\x88\x58\x75\xd3\xa6\x3d\x1d\x14\x92\x70\xab\xa6\x5d\x3b\xb0\x8e\x7c\xb4\x98\x0e\x0a\x93\x9b\xe1\xe5\x79\x99\xfb\x01\x79\xf7\x6b\x72\x33\x4c\x27\x80\xa4\x9c\xad\xe9\x04\x30\x9d\x00\x62\x71\x4e\x27\x80\xd4\x26\xb8\x9a\xe5\x0e\x3e\x6e\x04\xd6\xcb\x50\x72\x89\x4e\x6e\x86\x44\x94\xd7\xe4\x66\x98\xdc\x0c\xd9\x67\xa7\x45\x3a\xed\xf7\xaf\x9d\xcc\x1d\x18\xed\x31\x01\xa6\xfd\x7e\x5a\xb8\x09\x3c\xaf\x69\xe1\x4e\x0b\xd7\x04\xb1\x70\xa7\x85\xfb\xca\x8a\x44\x41\x03\x73\x44\xa1\x4f\xfb\xf1\xb4\x96\x5f\x39\x80\x4f\x6b\x39\x20\x61\x69\x4d\x6b\x79\xda\x68\x5f\x99\xe3\xea\x2a\x80\xf9\xcc\xf2\x53\x57\x01\xec\x8f\xd7\x8b\xcc\x44\xb2\xd1\xe6\xdc\x3b\x2d\xdc\x69\xa3\x7d\xbd\x3c\x88\x2e\xe4\xa3\xeb\x6e\xdc\x6c\xb4\xd3\xf7\x7c\x93\x86\x05\x3e\x85\xc9\x1f\x1e\xcd\xd4\x8a\x6b\x60\x98\x46\xd6\xf2\x64\x0c\xa7\xfa\x58\x61\x97\xd5\xb4\xae\x32\x9f\xb1\xcb\x2a\x4c\xac\xfd\xf1\x8a\x61\x8a\x89\x05\x46\x6a\xd0\x14\x26\x56\x2d\x13\xd5\x87\x0b\xbc\x28\x30\x9f\x31\xad\xf1\xa2\xc0\xfe\xf0\x2d\x10\x31\x0a\xe0\x36\x17\x62\x14\x98\x3e\xba\x22\x46\xd5\xba\xa7\xf8\xd4\xec\x4d\xf6\xce\x95\x7b\x44\x1f\xa2\xaf\x66\x9e\xe3\x7e\xb6\x5f\x3c\x69\xe9\x15\xbb\x34\x70\x35\x3b\x22\x6b\xb2\xb8\x4f\xfc\x1a\xaf\x7f\x00\x77\xba\x96\xa3\xf0\xba\x17\xc7\x24\xdb\xc9\xf6\x34\x7b\x45\xf4\x24\x7a\xc6\x4b\xe4\xc7\x0c\x07\xb7\x9c\x0f\x51\x38\x55\x60\x9e\x4f\x22\xc3\xe1\x33\xa5\x0f\x17\x38\x55\x60\x26\x58\xb9\x70\xaa\xc0\xe2\x95\x5b\xb6\xc6\xe5\x78\xec\xeb\x03\x9a\x15\x98\xf3\x41\x64\x38\xee\x25\x94\x59\x84\xc0\x04\xa6\x2f\xda\x08\x4c\x60\x7f\xf0\xe5\x62\x30\xd5\x5d\x94\x22\x56\x3f\x02\x13\x58\xd3\xe0\xb2\xa2\x03\x43\x50\x08\x02\x53\x2d\xeb\x91\x7b\x1c\x81\x09\x8c\x35\xff\x3e\xfd\x78\xe1\x37\x81\xc9\xa0\xc1\x6f\x02\xd7\x0f\xe7\xc9\xad\xe0\xc0\xda\x72\x66\x44\x70\x02\x6b\x33\x89\x2d\xe0\x00\x2a\x7b\x2d\x0b\x78\xcd\xbb\xcb\x79\x91\x16\x30\x1a\xd4\x30\x9f\x2c\xe0\xe5\xc3\x26\x7d\xbe\xec\xa9\x01\x8c\xf7\x5a\x16\xeb\x72\x38\x76\x74\x40\x8d\x02\x33\x39\x8d\x0b\x35\x0a\x5c\xcd\x72\xa9\xb5\x89\x1b\x95\x20\xd1\xc2\x8d\x02\x6b\xb3\x24\xec\xbc\x81\xc5\x95\xba\xec\xbc\x81\x95\x04\x48\xb5\x98\xd8\x81\xc5\x2f\xbb\x7c\xd2\x58\xf6\x67\xfe\x7d\x0c\x2a\x80\x8b\x5f\x18\x54\xb5\x58\xdd\xbe\x22\x61\x50\x81\x95\xa2\xe2\x85\x41\x05\xae\x66\x19\x6f\x66\x77\x40\x6e\x82\xc2\xa0\x02\xfb\x83\xb7\x0c\x85\x0a\xcc\x2d\x9b\x0f\x06\x15\x58\xfc\xb7\x18\x54\x15\x06\xd5\x99\x52\xa0\x85\x41\x05\xe6\x16\xdb\x04\x81\xaa\xde\x8e\xe8\x3e\x47\xbc\xed\xf6\x81\xc5\x7d\xfb\xb6\xdb\xbf\x19\xe7\x3e\x77\x60\x50\x81\xc5\x19\x8c\x41\x05\xe4\x1c\xa8\xb7\x9d\xfd\x8d\xa6\xfa\x24\xfa\x10\x79\x77\xd9\x8d\xde\xb6\xec\xb7\xba\x94\xd1\x70\x6f\x96\xf8\x9b\x25\xce\x1b\xfc\x66\x89\x07\x16\x37\xef\x9b\x25\xfe\x66\x76\x73\x54\xbf\x29\xcc\xc0\x18\xfa\x4e\x5f\xaa\x97\x32\xef\x2b\x07\xd1\x74\xe5\x11\x99\x1e\xc4\x12\xdf\x0e\x8f\xa6\x07\xf7\x62\x89\xba\x41\xc7\x02\x53\x88\x91\xf2\x20\xf5\x66\x93\xb2\x09\xde\x6c\xd2\x37\xaf\x77\xa6\x07\xd2\x56\xbd\xef\xd5\x32\xfc\x9a\x07\xc9\x6a\x31\x3d\xde\x56\xcb\xfb\x5e\x06\x39\xad\x20\x72\x81\xc9\x2d\x80\xc8\x05\xf6\x07\x5b\x5f\xcd\x10\x30\x42\xd7\xab\xb7\x65\x10\x98\xa9\x43\x5f\xaa\x88\xd4\x7b\x1d\xae\xd4\xcc\x18\x25\xbb\x59\xb2\x45\xd7\xdb\xb1\xf2\xcd\xb4\xb4\xc7\xbe\x4d\xb6\xc0\x10\x5a\x87\x3c\x56\x21\x8f\x9d\xa1\x49\x17\xf2\x18\xb8\xae\x5c\x91\x6d\x64\xf9\x82\x9b\x15\xf4\xf1\x85\x2c\x55\x44\xf6\x47\x32\x48\x97\x2a\x22\x60\x8e\x3c\x9a\x2a\x22\xf5\x31\x01\xcf\x68\x2c\x25\x43\xc0\x14\xc8\xf0\x31\x01\x3f\x42\x70\xce\x74\xe1\x63\x82\x04\xa6\xb7\xfc\xb1\xc7\x7e\xcc\x99\x73\x23\x73\xd3\xc3\xa6\x92\xc7\x35\x67\x3e\x5c\x38\x67\xbc\x3f\x1f\x5b\xe5\xe7\xae\xcd\xeb\xca\x2f\x51\x96\x72\x92\xf1\x96\x2a\x22\x60\xf2\x99\xa9\x22\x52\x1f\x1f\xc8\x93\x22\xbe\xb0\xe9\xc0\xe4\xd4\xc5\xa6\x03\x57\xb3\x0c\x92\xad\x32\xb0\xf8\x1a\x3f\xb6\xca\xcf\x79\xdf\x34\x0f\x62\x8f\xfa\xc8\x44\xfc\x74\xa5\x9b\xb2\x23\xc5\x41\x7c\xd8\x91\x81\xe9\xbb\xf1\x87\x1d\x19\xb8\x9a\x65\x2c\x7d\x5b\xff\xc8\x44\xec\x06\x4c\xcb\x80\x1c\xd7\xf5\x61\x5a\x7e\xb8\x6d\xcf\xe7\x8c\xcc\x8b\x49\xc4\x4d\xe2\xbd\x0b\xf9\x0f\xcc\xe7\xdd\xea\x4d\x94\x75\x15\xaa\x4f\xe1\x03\x56\xb8\x7f\x97\x2c\xcf\x61\xc5\x04\x66\x72\x06\xd6\xc7\x29\xee\xe3\xc8\x16\x92\x4d\x7d\x58\x7e\x81\x91\x62\x6a\x85\x22\x58\x1f\xc6\xda\x19\x4b\x04\xd1\xaf\x42\xf4\x3b\x19\x44\x88\x7e\xf5\x75\x94\x49\xf9\xc8\xc2\xea\x03\xd3\x9b\xff\x3a\xca\x7c\x59\x61\x09\xc2\x2e\x0c\xbb\xba\x19\x76\x31\x4a\x31\xec\xea\xcb\xe4\x4a\x3e\xa3\xfa\x52\x21\x81\x35\xfe\x89\x8c\x2a\xf5\x35\xcd\xbe\x0e\x1d\x23\x63\xa8\x66\x08\x58\x29\x89\x50\x78\x7a\xf5\x35\xa7\xc2\x5b\x28\x35\x43\xc0\xe4\x0f\x56\x33\xa4\xbe\x7c\xfb\xa9\x55\x59\x2a\x7f\x80\x95\x04\x11\xf5\xe5\xdb\xff\x8e\xf4\x30\x91\xd6\xf5\x65\xd0\x7c\xef\xe2\xec\x44\x7a\xe8\xc5\x85\x7d\x50\xa8\x75\xf5\xa5\x4e\xc2\xb3\x2c\x75\x39\x80\x0a\x72\x85\xa0\x56\x5f\x6f\x84\x95\x8d\x53\x56\xe1\x94\x9d\x5c\x29\x38\x65\xf5\xf3\x46\x44\xcd\xe0\x94\x81\x25\xca\x10\xa7\xac\x7e\x3c\xb1\xa1\x02\x14\x36\x17\x58\xa9\x1e\x58\xc8\x5c\xf5\xe3\x62\x15\x99\x8a\xb9\x05\x04\x64\x17\xe6\x56\xfd\x7c\xc2\x19\x39\x83\xa2\x69\x81\x3b\x10\x1a\x4b\xab\x7e\x0e\x70\xe1\xff\x16\x4a\x16\x58\x3e\xca\xa1\x64\x81\xab\xd9\x8c\x4c\x17\xee\x1a\x75\x79\x0e\x36\xea\x4f\xf5\x8e\x7c\xe9\xf9\xb1\x51\x7f\xf7\xcb\x5a\x9a\x79\xdc\xa4\xe0\x4b\xda\xdc\xc2\xd2\xaa\x1f\x67\x4c\xd2\x14\xd4\xcf\x62\x0c\x2c\x67\x87\x1f\x1b\xf5\xc7\x20\x4d\x32\xc3\xc2\xc9\xaa\x9b\x93\x95\xd7\x8c\x93\x05\xae\x66\x19\x37\x6b\xf6\x87\x52\x1f\x17\xc2\xcf\x9a\xfd\x79\xf5\x09\xec\x2f\xa4\xac\xfa\xf9\x4e\x31\xb5\xb3\xe1\x04\x94\x92\xa8\x9f\x0d\xe7\xc7\xb7\xc9\x17\xfb\x63\x78\x05\xe6\xf0\x6b\x0c\xaf\xdf\x1d\xad\x9a\x17\xc3\xf0\xfa\xa9\x2b\xbc\xbb\xd0\x48\xf2\x80\xda\x32\xf1\xa3\xc0\x3c\xf3\x35\x03\x3f\x0a\xcc\xe3\x7e\x32\x9d\x8a\x47\x25\xa9\x72\x0b\x63\x0a\xcc\x10\xcd\x0a\x63\x0a\x5c\xbf\x9f\x91\x64\xb1\x05\xd6\xd3\x40\x32\xd8\x7e\xa2\x4c\x92\x91\xb5\xb0\xa8\xc0\x64\xdc\x60\x51\x81\xab\x59\x6e\x6a\x13\xfd\x29\x2e\x11\xeb\x09\x8b\xaa\xc2\xa2\x3a\x3d\x1a\x16\x15\x58\xa9\xa3\x5e\x58\x54\x60\x8e\xbb\xd5\x4e\x94\x18\x8d\xec\x97\xc5\x89\x13\x18\x21\x2a\x17\x5e\x15\x18\x21\xe3\x17\x5e\x55\x95\x5d\x35\x55\x9c\x0b\xaf\x0a\xa8\xf4\x53\x78\x55\x60\xee\x39\xf3\xe2\x55\x55\xf1\xb9\x86\xd3\x5b\xe5\x34\x5b\xf2\xf6\x0f\xa2\x0c\x46\xb1\xe1\xf0\x12\x8a\x0d\x17\xc0\xe1\xab\xb2\x45\x97\xfd\x78\xe6\xdd\x95\xfd\x38\xa0\x8a\x44\x15\x6d\x1b\xb8\x9a\xb9\x74\x90\xa5\xea\x4c\xb4\x47\x51\x01\x65\xbd\xa7\x68\x41\xe1\x5f\x81\xc9\x27\x8f\x7e\x55\x65\xbd\xcf\x9c\x78\xca\x7a\x0f\xcc\x47\x4e\x02\x65\xbd\x17\x0f\x6b\xd2\xd8\x95\x02\x3b\x60\x9d\x71\xe8\x95\x63\x64\x60\x8a\xd7\x29\x0e\xd6\x72\xb2\xe4\x73\xc2\xdc\x02\x33\x1c\xb8\x2a\xbb\x76\x59\xef\xd3\x1b\xb5\xde\x03\xea\xe6\x14\x7e\x57\xd5\xbd\x90\x33\x63\xca\x42\x0e\x4c\x47\xe8\xb2\x90\x4b\x68\x6b\x52\x5e\x56\x39\x01\x06\x26\x2f\x74\x39\x01\x06\xc6\x8a\xf2\x40\xf0\x02\xeb\x74\x4f\x36\x6d\xd9\x8e\xa7\xc9\x60\x3b\x0e\x2c\x9b\x65\xd9\x8e\x03\x33\xf5\x70\x4a\x31\xa0\x2a\x3b\x34\xd2\x47\xd9\xa1\x03\x73\xc4\xa4\x2d\x3b\x74\x60\x9d\x59\xed\xe5\x00\x58\x42\x39\x66\x2c\xce\xe2\xae\x09\x8c\x69\xca\x30\x86\x8b\xe5\x9b\xa4\x55\x55\x2c\xdf\x80\xc2\x86\x55\x14\x51\x58\x69\x57\xb3\xf4\x80\x8a\x29\x55\x62\xa6\x66\x3a\x75\xeb\x93\x28\xf5\xa2\x4f\x02\x61\x6a\xfe\xed\xa6\x5d\xd4\x4d\x89\x70\x4b\x05\x86\x2a\xfa\x26\x30\x96\xe1\xa2\x6f\x6a\xdd\x3d\xcc\x40\xd0\x24\x81\x61\xef\x51\x01\x09\xac\xd3\xd8\x53\x24\x65\xfb\xc4\x60\xc1\x9a\xab\xb0\xe6\xce\x94\x14\x2e\xac\x39\x30\x99\x64\x58\x73\x60\xb1\x5d\x90\xe6\xea\x26\xcd\xe5\x4b\x1b\xd2\x1c\xb8\x7e\x5f\xb3\x17\x59\x46\x2b\x6f\xad\xa9\x8d\xc0\x4c\x2e\x8a\x6a\xbb\x73\x73\x78\x99\x50\xcd\xe1\xd5\x72\x9c\x47\x47\x63\xe0\x55\xd3\x07\x2b\xa7\xfb\xa6\x0f\x5a\x88\x7c\x4e\xb8\xcd\x3e\x6f\xfa\x00\xf5\x45\x6d\x26\xb0\x44\xb4\xa8\xcd\x04\xae\x66\x23\xb2\x41\x36\xe2\x59\x49\xdf\xe9\x83\x66\x91\xad\x8d\xec\x4d\x96\x58\xe3\x98\x09\xcd\xe4\x6a\xb6\xd4\xf2\x20\x6c\xa9\x16\xc0\x9a\x8d\x1d\x3d\xaf\x9a\x3e\x48\x86\xda\x42\xa8\x03\x93\x83\x1f\xa1\x0e\xec\x8f\x64\x2a\xaf\xa6\x10\x5a\xf4\x7b\x2c\xfb\xf6\x49\xa5\xe9\x88\xa4\xf8\x2a\x05\xa1\x80\x2c\x21\x85\x8a\x57\x6d\xf1\x27\x8b\x7a\x21\xd4\x81\xb1\xfc\x9a\xc5\x1f\xf6\xdc\xfe\x48\xe2\xe9\xc2\x9e\x03\xf2\xa5\x16\xf6\x1c\xb8\x9a\xe5\x79\xf9\x95\x54\x7a\x4a\x65\xa3\xc2\x9e\xab\xb6\xd9\x27\xe9\x76\xa1\xca\x55\x73\xea\x26\x89\x6a\x29\xeb\x04\xd6\xe6\x2d\xf0\x09\x85\x17\x27\xad\x6a\xa1\xc5\x81\xfd\x91\x1c\xcd\x85\x17\x07\x64\x42\xad\xa6\x38\x02\x57\xb3\x8c\x9b\xc3\x70\x60\xac\xbb\x99\xe1\xe5\x4d\x12\xae\x8f\x2b\x07\x54\x05\xaa\xa6\x4c\x9a\x32\x49\xbe\xdb\x6a\xca\x24\xb0\x04\xb5\x36\x65\xd2\x22\x58\x93\xac\xa5\x14\x8e\x02\xd3\x17\xab\x66\x75\x04\xc6\x7d\x03\x4a\x22\x30\x79\xe8\x9a\x16\x68\xb6\x83\x6f\xd3\xcd\x76\x08\xcc\x24\xca\xad\xb6\xe2\x9b\xed\x20\x28\x59\x61\x2a\x30\xee\xb5\x6c\xc9\xf7\xbd\xe4\x63\x9d\x20\x00\x56\x08\x80\x67\x12\x22\x34\x02\x20\xd8\x1f\xc9\x3d\xdb\x8f\xac\x79\xb0\x12\x96\xdb\x8f\xac\x79\x30\xc7\xc3\x95\x4f\x22\x6b\xfe\xb2\x31\xfa\x91\x35\x0f\x46\x56\x69\x3f\xb2\xe6\xfb\x21\x04\x3e\x09\xdf\xfa\x11\xfb\x1b\xc8\x50\xdb\x8f\x58\x0f\x40\xc1\xc4\x7e\xc4\x7a\x00\x63\x3d\x66\x44\x6f\x22\x7d\x1f\xae\x2c\xb2\x78\x37\x4e\x1d\xe8\x88\x8e\xbb\x53\xb9\xf4\xd0\xa9\x43\xa7\x8e\x88\x74\x8a\x17\x3d\xce\xa3\x4e\x01\xad\x1b\x66\xf2\x53\xb7\x32\x5a\xfd\xb8\xb5\xc5\x4c\x0f\x0e\x3d\x88\xcb\xfc\xf4\xb8\x87\x1e\xb0\x1e\x92\x66\xae\x11\x22\xc1\xf8\xeb\x4a\xcf\x76\xab\x01\x77\x38\x5d\xca\xbb\x7c\x69\xad\x46\x9b\xec\xc7\xbd\xbe\x2f\x5d\xdf\x38\x92\x60\x6d\xbb\x66\xbf\x88\x12\xee\xbe\xa5\xe0\x45\x3f\x86\x9e\x8e\xf4\x74\x4b\xe7\x87\x9e\xe6\x73\xcf\x16\x4e\x7a\x3f\x86\xf7\x97\x33\xf9\xfe\xca\x80\x0c\x9d\xcf\x31\x20\x89\x7d\x1b\xe1\xb2\xc3\xa4\xbc\xae\x24\xf3\xb8\x71\x42\x27\xb1\x6f\x63\x52\x82\x7d\x4b\x62\xc9\x46\xa5\x04\xf3\xf9\x48\x0f\xa2\x40\x3a\xb5\xbb\xae\x66\x99\x20\xe3\xee\x42\xe5\xd7\xd2\x6c\x9a\x94\x5c\xca\xcf\xb4\x9a\x3a\x95\x70\xd1\xcd\x64\x9b\x3a\x45\x7d\x3c\xd3\xf5\xa9\x4f\x71\x92\x6d\xa9\xbc\xdc\x98\x9a\x60\xa6\xec\x54\x63\x6a\x82\x99\x4f\x42\xfd\x98\x3a\x10\xbd\xb0\x3d\xb6\xbf\x8f\x1e\xef\xc7\xd4\x99\xc9\x39\x9b\x2e\x4f\x6f\x28\xc6\xc5\x16\x3e\x56\x23\x72\x82\x35\x75\x66\xe9\x4c\x3e\xec\x6e\x0f\x2b\x6c\xe9\xcd\x4a\x8a\xdc\x99\x41\x5d\x7a\x93\xb3\xf1\xf6\xb0\x4e\xa2\x4a\x80\x94\xc4\x8d\xb4\xd9\x61\x68\x5e\xcd\xf2\x8a\xde\xee\x90\x95\x1e\x9d\xd9\x18\x9a\xbd\x1d\x6e\x7a\x1d\x4d\x7a\xb3\x02\x02\x33\xb1\x2a\xbd\xc5\xa4\x06\x73\x44\x1f\x6c\xd6\x44\x60\xa4\x18\x45\x2b\x87\xd6\xa9\x71\xb6\x6f\xa1\x11\xf5\x66\x4d\x04\x66\x3c\x8f\xbd\x59\x13\x81\xab\x99\x7b\x2e\xb2\xe4\xe6\xce\x2b\x52\x03\x0d\xcc\x58\x73\xbd\x65\x53\xed\xed\xbc\x6f\x90\x9b\x9e\x6e\x10\xfa\x58\xca\xb2\x35\x52\x68\x87\xda\xb9\x6f\x0f\x8f\x1b\xcf\x03\x98\x31\x8b\x7b\x1b\xae\xcc\xc1\x75\xcf\x78\x6f\xe3\xbe\x32\xec\x2e\x9d\x32\x89\xb7\x7b\x12\x67\x05\x6f\x26\x71\x60\xe5\x73\x78\x6f\x26\x71\x60\x3e\xce\x33\xa2\x2f\xd1\xcf\x95\x19\x8e\x58\xca\x60\x25\x3c\xa6\x31\x4c\xc1\xda\xf7\x3c\xac\x79\x1d\xb8\xae\x4c\xa7\x4c\xec\xc0\x0c\xbb\xab\x37\x13\x3b\x70\x35\xcb\x73\x4c\xaf\x45\xba\xf8\xe9\xd7\xbc\x96\x69\x38\x66\xfa\x3e\x0d\x47\xf6\xca\xe4\x6d\x6d\xdc\x54\xb0\x6f\xb4\x1c\x72\x2a\x98\xcf\x28\x12\xdc\x54\x20\x6d\x6b\xe3\xa6\x76\x68\xa2\xd7\x95\x79\x55\xcb\x73\xe4\xe4\x4d\x53\xe1\x89\x76\x48\xa1\xfb\xb6\x99\x58\xcb\x0d\x72\xa6\x4e\x00\x58\x23\x85\x36\x6a\xe7\x96\xec\xf6\x8d\xda\xd9\xa1\x76\x8e\x94\x2f\x69\xd4\xce\x0e\x27\x73\xdf\x92\x9f\xa3\x77\xdb\xca\xae\xaa\x4e\x26\xf8\x1e\x53\x12\x5c\xcd\x46\x64\x83\x2c\x34\xed\x4d\xb3\x49\xf4\xd6\x6c\x46\xf6\x21\xbb\x96\x72\xe2\x2f\x3b\x95\xe5\xfe\x47\x23\x65\x6e\xb1\x31\x1a\x29\x13\x48\x50\xdb\x48\x99\xfd\x17\x29\x53\x2b\x8f\x16\x83\x33\xa1\xa1\xbd\x1f\x1e\x2d\x5e\xb9\x8d\xca\xc4\xc0\x04\x2b\xe1\x29\xad\x0c\x5d\x87\x80\xb9\x6f\xdb\x2d\x6b\x32\x65\x83\x33\x1e\xa7\xf1\xa0\xf4\x53\xb3\xac\x77\x4a\x3f\xb0\x72\x84\x69\x15\xe1\xc0\xbe\xe5\xb3\x50\x2b\x09\x07\xe4\xce\xed\x9d\xd2\x0f\x48\x8a\xdb\x8a\xc4\x81\xeb\xca\x3c\x87\x55\x15\x98\x89\xaf\xeb\xdd\xaa\xda\x87\x5e\x45\x09\xec\x56\x42\x40\xfa\xdf\x46\x90\x04\xf3\x75\x5f\x59\x44\x59\x1b\x51\x45\xf8\x91\xbd\x4f\x2f\x59\x33\xd3\x39\x30\xf7\x95\xc7\x30\x9b\x77\x1a\x3e\x1f\xd8\x7a\x37\x9d\x03\x8b\x86\xdf\xcd\xe6\xc0\xda\x9f\x5a\x2d\xa2\xcc\xe6\xa7\x56\x6f\x22\xaf\x3d\x6f\x85\x06\xdf\xa5\x0d\x36\x40\xd3\xf3\x2f\xc3\x9d\x05\xbf\xd3\xe0\x81\xb5\xef\x44\x86\xdb\xd2\xc8\x77\xad\xc6\x7c\x04\x2b\x31\xc7\x8d\xf9\x08\xae\x66\x79\x0e\x4a\x3d\xb0\x12\xb0\xdb\x0a\xda\x75\x08\x8c\x57\xb3\x3c\xc8\xf2\x6c\xb7\x31\x48\x74\x3f\xdb\x4f\xb3\x74\x61\x19\x5c\x74\x25\x53\x61\x99\x44\xf7\x42\x8b\x6e\x46\x74\xec\x10\x1d\x47\xa8\x3d\x8d\xe8\x08\xa6\xad\xf8\xc9\x16\x0c\xac\xfd\x32\x7a\x1b\xf5\xb1\x9f\xf7\x72\x8c\xba\x56\x0b\x0f\xcc\x54\xa5\xef\xa7\xe5\x18\x9e\xe3\xd5\xec\x15\xd9\x24\x43\xed\xd1\x6c\x11\x2d\xcd\xce\xc8\xde\x64\x51\xba\x2f\x37\xfd\x10\xe5\x55\xbd\xdc\xf3\x4b\xd4\xae\xfc\x27\xb6\x6c\xd4\x48\xb0\x52\xc4\xbf\x31\x23\x3b\x54\xc3\x7d\xdb\xb2\x82\x71\x0d\xc1\x08\x29\xbf\x9f\xa7\x4e\xc7\x6b\xba\x25\x5b\x77\x63\x07\x82\x95\x0f\x1d\x8d\x1d\x08\xf6\x6d\xbf\x65\x06\x22\xd1\xb0\xc9\x59\xd1\x4f\x2b\x27\x30\x13\x8c\xd8\x38\x84\x60\xa5\x84\x70\xe3\x10\x82\x95\x14\x8f\x8d\x43\xd8\x21\x02\x5e\xbf\x1f\x99\x95\x83\xe2\xb7\xd1\x5e\x28\x7e\x60\x85\x08\xd0\x28\x7e\x1d\xca\xda\xbe\x25\xeb\x74\xe3\xac\x81\x99\xaf\xb3\x8d\xb2\xd6\xa1\xac\x0d\x1a\x02\x65\xad\x5f\x5e\xf8\x7e\xee\x91\x1d\x64\x39\x55\x1f\x8f\x88\x4e\x22\x37\xc8\xfe\x8c\x2c\x06\xd6\xcc\xb6\x85\x2c\xd6\x2f\xa6\xc3\x3e\x34\x1b\x64\x39\x7c\x67\x6d\x62\x81\x81\x7d\x4b\x4a\xad\x46\x03\x03\xe3\xaf\x5f\x7b\x13\xbd\x35\x7b\x45\xf6\x21\x4b\xa5\xe8\x97\x5f\xfb\x12\x7d\x35\x3b\x22\xfb\x91\xe5\x3c\x77\xba\x32\x4b\x07\xe5\x6b\x4b\x7c\x73\xa3\x7c\x81\x45\x2f\xa1\x7c\x81\x7d\x4b\x25\xfe\x0e\xff\xeb\x86\x99\x2f\x0f\x8d\x05\xd6\x48\x5a\x5b\x52\xb5\x34\x92\x16\x58\x89\x32\x6f\x24\xad\x7e\x51\xa3\xc9\x2c\xd3\xb8\x56\x60\x25\x49\x55\xe3\x5a\x81\x7d\x0b\x7b\xa4\x71\xad\xc0\x4c\x92\xe0\xc6\xb5\xea\x17\x35\x14\x0e\x6f\x23\x1c\x81\xb9\x7b\x36\x6a\x28\x7c\xa3\x7d\x4b\xb6\xeb\x46\x38\x02\x32\x30\xf5\x6b\x19\x5e\x6a\x28\xdf\xdf\x5a\x91\x2a\xb0\x52\x5a\xa9\xd1\x92\x1a\xe1\x68\x4b\x1e\xe5\x46\x38\xea\x10\x8e\x46\x82\x6b\x1b\xe1\xa8\x0f\x13\xe9\xf9\x7a\x45\x76\x90\x25\xfd\x64\x86\x17\x07\x09\x5c\xcd\x56\x64\x83\x2c\xe9\x34\xd2\x53\x1c\xa4\x3e\x18\xb4\xcf\xcc\x41\xec\x1f\xb0\x46\x66\xea\x61\xd3\x0e\xec\xdb\xd3\x1d\xec\xda\x81\xc5\x92\xc4\x11\x02\x23\xe5\x26\x1b\x47\x08\xac\x90\x95\x1b\x47\xa8\xb1\x7a\xb6\xa7\xe7\x30\x69\x02\x2b\x8e\xf5\xc6\xea\x69\xac\x9e\x2d\x89\xf5\x1a\xab\x07\xac\x91\xa3\x2b\x56\x0f\x90\xcb\xaa\x15\x6f\x6a\x6c\x9a\x2d\x41\xa5\x8d\x4d\x03\xd6\xb8\x45\xf7\x0d\x92\x28\x34\xbb\xc3\x31\x0c\x2e\xab\x20\xa5\xe5\xfa\x60\x15\x04\xd6\xf0\x18\xac\x02\xd5\x96\xce\xa7\x2b\xdd\x93\x52\x79\xe6\x98\x8a\xe0\xd2\x87\xed\x38\x81\x95\xad\x18\x11\x58\xe3\x6e\x66\x88\x62\x5c\x8e\x71\x46\x64\x88\xa8\xa3\x24\x6c\x6a\xd5\x83\xc0\xca\xa7\xd8\x56\x3d\x08\xec\x5b\x2a\xaa\x36\x32\x0b\x98\x61\x56\x35\x32\x0b\x90\x66\xab\x55\x0f\xea\xc3\xd4\x7d\x69\x66\xea\x1e\xa6\x6e\x4c\x66\x5c\x16\xb0\x6f\x89\x84\x6c\x64\x16\xb0\x12\x20\xd0\xc8\x2c\x7d\x50\x8b\xaf\x2d\xbf\x46\x2d\x06\x56\x32\x12\x37\xe2\x4a\x87\xb8\x32\x5e\xd9\x12\x10\x57\xc0\x75\xe5\x8a\x6c\x23\xcb\x80\x47\xd7\x2b\xee\xd3\xa7\x49\x1f\x3f\x65\x63\xae\x80\x95\x0f\x8b\x7d\x9a\xf4\x81\x95\xd0\x93\x56\xdc\x07\x5c\x57\x92\x4d\xb2\xa4\xa5\x5d\x7e\x6c\x11\xe9\x68\xb4\x38\x82\x0b\x58\xf9\xe0\xde\xa7\xed\x32\x30\x99\xa0\x8a\xfb\x80\xeb\xca\x33\xb2\x22\x33\xe0\xd7\x48\xaa\xe4\xd3\xa7\x15\x94\x28\xd0\x56\xa3\x07\xac\xf8\x9d\x5b\x8d\x9e\xc6\x6f\xd9\x5e\xd9\x87\xf0\x5b\xc0\xca\x37\xcf\xc6\x6f\xe9\xd3\xda\x78\x3d\x5f\x7f\xbf\x6d\x2b\x8a\x03\x56\xf2\x34\xb5\xa2\x38\x60\xdf\x12\xaf\xd9\xa7\xb5\x13\x58\x33\x33\xea\xa4\x95\xc3\x61\xb9\x9a\x65\x08\xb9\x51\x02\x2b\x9f\x49\xfb\xe4\x46\x09\x48\x62\xd6\xa7\x45\x77\x5a\x4e\x61\x9e\xb6\xca\x36\x40\xe6\xb4\x56\xd9\xa6\x4f\x76\xc1\x2b\xa6\xb2\x32\x36\x60\xcd\x18\x60\x48\x32\xe0\x6a\x96\x81\xa0\xf7\xb1\x64\x92\x99\xa4\xb1\x64\xc0\xfc\xab\x95\x11\xb4\x38\x93\xb9\xbb\x91\x58\xfa\xb4\x38\x93\xd4\xa7\xf1\x4e\xc0\xca\x57\xdd\x56\x78\xa6\x4f\xc7\xbc\xa4\xa4\x69\xbc\x13\xb0\x46\x0e\x8d\x68\x27\x60\xdf\x92\xd0\xa5\xf1\x4e\xc0\x4a\x20\x63\x9f\xdc\x1d\xa1\x9d\x5c\xcd\xf2\xbc\x16\x71\x60\x85\x7d\xd6\x0a\xd4\x80\x95\xcf\xc6\xad\x40\x4d\x9f\xdc\x1d\x49\xd5\xd2\x27\x6b\xf9\x94\x01\x30\x7b\x1e\xc2\x4a\x9f\x2c\xe3\x24\x3f\xe9\x93\x65\x1c\x58\xc9\x38\xd7\x08\x2b\x60\x25\x4c\xa9\x11\x56\xc0\x72\xca\x53\xd9\x06\xec\xdb\x4b\x47\x69\x84\x80\x14\x71\x8d\xd6\x02\xae\x66\x2e\x35\x3f\xec\x6f\xb7\x48\x3f\x99\xd9\x49\x48\xd1\x27\x33\x3b\xb0\xf2\x55\xaa\x51\x5d\xc0\xd5\x2c\xf3\x88\x2e\xc1\x75\x99\xd1\x42\xb8\x2e\x1d\xae\xcb\x08\x1d\xa3\x71\x5d\x7a\xbc\x0c\x51\x34\xe4\xa0\x38\x02\x2b\x5f\xd6\x1b\xfd\xa5\xc3\x6b\xb9\x9a\x9d\x91\x2d\xb2\x58\x89\x1b\xd1\x9b\x48\xaf\x96\x4b\xbf\x64\xb1\x28\x62\x3d\xe0\xba\x80\x11\xf6\x48\x0f\xab\x3f\xbc\x93\xeb\xca\x3c\x87\x6d\x70\x88\x80\x8b\x9a\x53\xe2\x06\xec\x5b\x72\x65\xf4\xb0\xd4\x87\x00\x8a\x1c\xab\xd1\x53\xc0\xd5\x2c\x37\x65\xb0\x05\x64\xd6\xeb\xc1\x5e\x0b\x4c\xc7\xb0\xc1\x5e\x1b\x42\x56\x72\xea\x1d\xcc\xb5\x41\x6f\x24\x5c\xb4\x07\xc5\x30\x28\x86\x95\x2b\x29\x86\x41\x31\x24\x5c\xb4\x07\xc5\x10\x58\x6c\x33\x05\x79\x3a\x24\x96\xab\x59\x7a\x75\x7a\x8e\x10\xde\x92\x93\xaf\x95\xd5\xe9\x41\x0b\x1c\x46\x97\x16\x18\x36\xd5\xac\x83\x41\x0b\x60\xae\x6c\x89\x86\x6c\xcc\x15\xb0\xe2\x93\x6f\xcc\x15\xb0\x6f\x21\xa5\xf7\x60\xc2\x05\xd6\xc8\xa4\x47\x66\xe9\xc1\x9a\x4a\x00\x63\xe3\x60\x74\x38\x18\xe3\xcc\xe3\xe2\x60\xf4\x34\x67\xc2\xe8\xe8\x69\xce\x04\x66\xe8\x3a\x8d\x96\xd1\x08\x17\x5b\xd8\x15\x8d\x70\x01\x56\x62\xe7\x1a\xe1\xa2\x11\x2e\xb6\xf0\xc5\x1a\xe1\x02\xcc\x7c\x29\x6a\x84\x8b\x9e\x8c\xfc\x50\xde\x1a\x6d\x02\x8c\x14\x10\xed\xc9\xc8\x9f\xaa\x7b\x3c\x89\x3c\x1a\x87\x4a\x58\x5f\xad\x4e\x0d\x58\xe7\x43\xb3\xbc\x98\x79\xbf\xbf\xac\x2b\xdc\x07\xb0\x12\xc3\xd7\xa8\x0f\x60\x9d\x99\x80\xa8\x0f\x60\xdf\x42\x40\xe9\x79\xea\xe8\xa9\x56\xf5\x19\x91\x8e\x0e\xc3\x96\xdd\x7d\x7a\x7f\x81\x79\x3f\x1a\xa3\x68\x72\x7c\x27\xe7\x77\x4f\xba\x78\x4a\x4e\x1f\x45\x39\x9d\xd1\x26\x9f\xe1\xb9\x91\x19\xa3\xf8\x0c\xcf\xe8\xb6\xc9\x67\x88\x21\xb1\xa5\xc0\x67\x63\x48\x80\x75\x3e\xdc\xf4\x47\x54\x9a\xa5\xa7\x66\x43\xe0\x92\xe5\x79\x79\x0d\x03\x72\x94\x37\x86\x44\x4f\x1e\xc2\x44\x9e\xf5\xe4\x21\x9c\x4a\xf5\x1a\x5e\xdb\xc4\xe4\x21\x4c\x59\xd1\x9e\xf6\x89\xe9\x33\x7c\xb6\x7c\x44\x8a\x9e\x94\x7d\x38\xe8\x8d\xfb\x00\xd6\xb9\xfd\x7d\x30\x5a\xa3\x46\x80\x75\x77\xda\x5e\x30\x19\x6f\x09\x3f\xec\x49\x57\x07\xa6\x4f\x0c\xca\xff\x74\x0a\xfb\xec\x5b\xc2\x0f\x5b\x65\x1f\x30\x96\xe9\x4e\x07\x4f\x0a\x37\x5f\xac\x5b\x1d\x1f\x20\x97\x7a\x63\x55\xf4\x62\xe7\x9c\x39\x9e\xa8\x5c\x03\xe6\x96\xa3\x88\xca\x35\x60\x19\x1a\x95\x6b\xc0\x32\xf6\x0a\xd7\xf4\x72\x30\x4d\x6a\xed\x56\x33\x06\xac\x33\x9a\x03\x5b\x02\x8c\x7c\x11\x6f\x6c\x89\xc6\x96\xd8\x92\x33\xbb\xb1\x25\x80\x64\xec\x8d\x2d\x01\x56\xa2\x42\x1b\x59\xa2\xb1\x14\xb6\x24\x1d\x6c\x2c\x05\x20\x3f\x7b\x63\x29\x80\x7d\x4b\x88\x4c\xa3\x29\x80\xf9\x1c\xae\xf4\x68\x8c\xa2\x04\xdc\x34\xe6\x02\x58\x09\x1e\x6d\xcc\x85\x4e\xb5\x97\xab\x59\x3a\x7f\xde\x0f\x92\xba\xe2\x19\x6f\xd5\x5e\x7a\xdd\x73\x36\x1a\x0c\x27\xa0\x17\x03\x25\xe9\x9f\x7b\x99\x79\x4b\xfc\x47\x0c\x94\x65\xe2\x61\x00\x6c\xe7\x72\xa9\x6e\x4d\xdd\xd2\x4c\xb7\x38\xe0\x92\x8b\xb9\x05\xe8\x83\x95\x98\xd8\x16\xa0\xdf\x8b\xfd\xe0\x23\xe5\x62\x3f\x04\x64\xa7\x6f\xf5\x4c\xc0\xbe\x8d\xac\x58\xe1\xf8\x60\x25\x35\x75\x0b\xc7\xef\x45\x09\x8f\x4c\x5e\x71\xf0\xfd\xa6\x71\x53\x12\xa3\x95\x0d\x01\xeb\xcc\x81\x5e\xd9\x90\x7e\xd3\xb8\xc9\xfd\xd8\x6f\x1a\xf7\x4d\xe3\x3e\x5d\x39\x88\x3e\x9a\x1d\x91\x7d\xc9\x92\x14\x3a\xce\x58\x95\x44\x3a\x11\xee\xfb\x36\x5c\x6a\x0e\x06\x66\x72\x1d\xb6\x08\xf7\x7e\xdb\x92\xf3\x91\xb9\xdf\xb6\xe4\xf7\x1d\xd3\x48\xb4\x88\x32\x53\xb3\xb5\x88\x53\xef\xb7\x69\x99\xdc\x37\xfd\x3e\xee\x9b\x66\x5a\xe6\xb0\xf0\x36\x2d\xdf\x9c\xd3\x23\xa6\xf4\xdb\xbc\x0c\xac\x33\x6a\xfe\xcd\x39\xfd\xb6\x4d\x8f\x2c\xac\xb7\x6d\xfa\x2d\x3a\xea\x16\x79\xdc\xc4\x17\x6f\x23\x1e\xaa\xb7\x99\x14\x58\xa7\x1e\xd8\x6b\xdf\xcc\x6b\x3e\x09\xd5\x50\xc0\x4c\xc2\xfe\x7e\x33\xaf\xdf\xcc\x6b\xe7\xfe\x37\xf3\x3a\xb0\x28\x66\x35\x53\xc0\xa2\x54\xd4\x4c\x69\x41\xfa\x9b\x6d\x5a\x90\x7e\xbf\x93\xb5\x61\x73\xe0\x7e\xfb\x00\x13\x58\xf6\x5f\x41\xfa\x60\x25\xf4\xb9\x05\xe9\xf7\x9b\xda\x74\x2e\x7f\x53\x9b\x6f\x6a\xd3\x2b\xa5\x17\x45\xdf\x6f\x4c\x4c\xd1\xf7\x60\xd1\x64\xa2\xef\xc1\xa2\x83\x45\xdf\xf7\xfb\x9e\xe3\xb1\x30\x45\xdf\x83\x95\x00\xf4\x16\x7d\x0f\xe6\xb8\x7f\x4c\x47\x4d\xf1\x97\x5b\x9a\x0b\xf7\x14\x8f\xe2\x17\x7d\xdf\x1f\x66\x80\xb3\xaf\xe0\x78\xb0\x68\xcf\x0f\x33\xe0\xc3\xf7\xe2\xac\xf5\x31\x03\x3f\xe2\xf3\xb2\x61\x0a\xa1\xef\x0f\x5f\x1f\x1b\xf6\xc3\x76\xfc\x08\xbc\x8b\x03\xe2\x63\x9e\x06\xd4\x6e\xe8\x8f\x79\xfa\x61\x3a\x32\x6b\x3f\xc7\x7d\xd3\xec\xab\xb7\xe8\x43\x94\x38\xb0\xcd\x63\x64\x09\x7d\x78\xdd\x58\x98\x1f\xf3\xe3\xc3\xeb\x16\xf5\xf9\x31\x3d\x12\x6b\xbe\x6f\xd3\x4d\x6d\xe6\x1f\x0e\xd7\x58\x0b\x82\xcd\xc1\x1a\xd1\xb2\x1f\x7b\xf9\xc7\x5e\xce\xb9\xfa\x19\xf7\x4d\xbf\xa1\x8c\xb9\xf2\x47\xf4\x4b\x70\x9b\xdf\x2f\xa2\x72\x65\x9a\x99\x6c\x1f\x73\x61\xbe\xf2\xb8\xe6\xc2\xe7\x8e\x47\x23\xda\x88\xdc\x34\xf3\xf4\xe3\xa0\x12\x98\xcf\x68\xd4\x8f\x3d\xf2\xb3\xdc\x21\xea\xfe\xe3\x54\x12\x58\x63\xfb\xff\x98\x5f\x63\xfb\x2f\xdb\xf6\xc7\x0e\x2a\xfc\x7d\x9b\xe9\x8d\x58\xf7\xfe\x26\xda\x63\x4b\x18\x75\x7f\x45\x7b\x04\x56\x22\x06\x5b\x9d\x9b\xfe\x9a\x3e\x09\xc3\xed\xaf\xe9\xf3\x75\x40\x19\x44\x19\xd5\xef\xfd\x76\x73\xa2\x17\xeb\x0e\xe6\x8a\xd2\x14\xcc\xde\x5f\xb6\x60\x12\x86\xb6\x3a\x31\x60\x84\x8f\xd3\x5f\xb6\x60\x6a\xc2\x5c\xcd\x56\x64\x93\x2c\xd9\x82\x0f\x22\xcf\x61\x3f\x5b\x9b\x4b\x9b\xac\xe3\x78\xbe\x86\xeb\x4b\x0b\x7d\x99\xfc\x49\x78\xdc\x5f\x6a\xe8\xeb\xe0\x1f\x95\xf3\x65\x32\x7e\x69\xa6\x44\x7d\xf5\x97\x66\xfa\x3a\xf8\x67\x6a\x7f\xcd\xbc\x84\xc1\x5f\xcd\xd2\x2d\x6a\xe8\x1b\x57\x7f\x6a\x1c\xf5\xd7\xcc\x13\x1a\xbf\x31\xb5\x85\xc6\xf7\x97\x1a\x4a\xae\xe4\xfe\x52\x43\x81\x95\x34\xfc\xfd\xa5\x86\xbe\x8e\xef\xcb\x5d\x1d\xdf\xbf\x8e\xef\x2f\x22\x63\xe9\xa5\xae\xa8\x09\xe1\xf2\xfd\xb3\x8a\x53\x7a\xbd\x7f\x56\xf1\x4f\x48\x40\x1c\x4c\xea\xa8\xf4\x5d\x47\x65\xd3\xea\x45\xa4\x5b\xb1\xd2\x95\x48\x01\x8b\x97\x48\x50\x3d\x18\x0e\xbf\x82\xea\xc1\xbe\x89\x89\x51\x22\x05\x2c\x3b\xcb\xcf\xab\xff\xd9\x6d\x52\x37\xb3\x05\xda\x83\x65\xcb\x50\x21\xa5\x7f\x1c\xf6\xc9\x58\xdd\x02\xed\xc1\x1a\x2f\x22\x3d\x08\x19\x74\x4b\x9a\xec\x16\x68\x0f\x96\x7d\x4a\x9c\x3d\x58\xa9\x0a\xd6\xe2\xec\xc1\xf4\x69\x4e\x9c\x3d\xd8\xb7\xa4\x71\xee\x9f\xb9\x15\x58\xf3\x45\xa4\x53\xac\xac\xa4\x71\xee\x1f\x2b\xeb\xc7\xf5\x94\xe3\x99\xda\x2a\xfd\xb3\x11\x26\x8d\x73\xab\x9a\x02\x56\x32\xc1\xb7\xaa\x29\xe0\x6a\x96\x5e\x99\x82\x81\x15\xa6\x6d\xff\x9c\x5a\x7e\x4e\x2d\x49\xb3\xdc\x42\xf4\xc1\x0c\xeb\xba\x45\xe8\xf7\x2f\x71\x38\x7b\x18\xa8\xfd\xa3\xaf\x02\x6b\xc4\xdf\xf5\xa3\xaf\x44\xed\xef\x2c\x73\x51\xfb\x9d\xea\x26\x97\x2c\x77\x60\xa0\x05\xe6\x6e\xc4\x39\x95\x52\xfd\x64\xdf\x1f\x51\xd6\xaa\x9f\x80\x99\x32\x32\xad\xfa\x49\xa7\xfa\xc9\xd5\xcc\xaf\x79\xcd\x77\xf5\xba\xf4\x9e\x42\xfc\xdd\x79\xad\xf3\xb8\x14\x62\x28\x00\xfb\x9e\xe4\xfb\x8d\x03\x00\x46\xd2\xbe\x37\x0e\x40\x27\xf8\xfe\x6a\x96\xde\x53\x92\xa2\xef\x93\x74\xa7\x05\xdf\x83\xed\x74\x28\x14\x7d\x0f\x66\xd2\x81\xb5\xe0\x7b\xb0\x3f\x18\x15\x42\xed\xc1\x8b\x0d\x2b\xd4\xbe\xeb\x1e\xb7\x58\x59\xa2\xa4\x5b\x08\xee\xfe\x58\xff\xaf\xdb\xf3\xfa\xff\x5f\xdf\x7f\xfc\xb7\xff\xf9\xbf\xde\x7f\xfc\xef\xf7\xbf\xd6\x3f\xbe\xff\xf9\xe7\x9f\xf5\x6f\xff\xf1\xfb\x97\xef\x7f\xfc\xe3\xbf\x5f\xd2\x7f\xfc\xaa\xff\xe5\xdf\xea\xcf\xfa\x3f\xff\xfe\x9f\x7f\x7e\xeb\x1f\x7f\xfc\xfb\x1f\xd7\x55\xf9\xfb\xbf\x01\x00\x00\xff\xff\xb4\x3e\x0b\x15\xdb\x3b\x01\x00"); -func _af ()([]byte ,error ){return _dc (_gcd ,"90pv-RKSJ-V")};type asset struct{_cd []byte ;_dce _ce .FileInfo ;};func _ffde ()(*asset ,error ){_debd ,_ddcg :=_cdfc ();if _ddcg !=nil {return nil ,_ddcg ;};_egea :=bindataFileInfo {_ag :"EUC-V",_bc :913,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491862,0)}; -_bdd :=&asset {_cd :_debd ,_dce :_egea };return _bdd ,nil ;};func _dda ()(*asset ,error ){_aff ,_agc :=_af ();if _agc !=nil {return nil ,_agc ;};_fbb :=bindataFileInfo {_ag :"90pv-RKSJ-V",_bc :1381,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491056,0)}; -_ba :=&asset {_cd :_aff ,_dce :_fbb };return _ba ,nil ;};func _gab ()([]byte ,error ){return _dc (_aga ,"Add-RKSJ-V")};var _cffb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x51\x6b\xdb\x30\x14\x85\xdf\xf5\x2b\xf4\xd8\x3d\x74\xd1\xbd\x96\x25\x19\x4c\x61\xb4\x2b\x84\xd2\x6d\xb4\x63\x7b\x76\x6c\x39\x18\x16\xdb\x38\xce\x43\xff\xfd\xb8\xf7\x38\x19\xec\x21\x38\xfa\x22\x9d\x88\xef\x58\xda\x3d\xee\x9f\xf6\xe3\xb0\xda\xdd\x8f\x65\x6a\xdf\xf3\x6a\xfb\x61\xec\x96\x7c\x9e\x2e\x4b\x9b\xed\x21\x1f\x87\xd1\x18\x62\xdb\x0d\xed\x7a\x1d\xea\xa3\x3d\x35\xb3\x31\xb2\xfe\xfd\xe3\xbc\xe6\xd3\x7e\xec\x27\x5b\x60\x5e\x77\x99\xb7\xb9\xd6\xee\xde\xf2\x71\x38\xaf\xcb\x87\xbd\xfb\xd2\x4d\x87\xfc\xc9\x76\xb9\x17\xfe\x7d\xe9\xf2\x32\x8c\x47\x7b\xf7\xf2\x76\x83\xef\x97\x79\xfe\x93\x4f\x79\x5c\xad\x57\x96\xc7\x4e\x9f\x66\xf7\xf8\xda\xcc\xdf\x9a\x53\xb6\x3b\xcd\xb9\x7f\x79\xbb\xc7\x14\xfd\xe5\x57\x5e\xce\xc3\x34\x5a\xfa\xec\x1c\xff\xc3\x3f\x3f\xe6\x6c\x69\x4b\xf8\xfd\x3a\x75\xd9\xba\x6b\xde\xfe\xe9\x71\xba\x8c\xab\x25\x4a\x31\x01\x12\xb6\xdd\x4e\x5d\x3e\xcf\x4d\x9b\x97\x66\x3c\x66\x63\x6d\xed\x9c\x73\x0f\xb6\xe6\xaf\xcf\xcf\x0f\xb2\xa7\xff\x66\x18\x1f\xb7\x95\x43\x07\x72\x5d\xe1\x5c\xdf\x3f\x58\x67\x6a\x47\x18\x93\x8c\xb9\x0c\xa6\x76\x0c\xc2\x42\x4a\x62\x53\xbb\x02\xa4\x10\x12\x43\x32\xb5\xf3\x20\x5e\x08\x39\xf6\xa6\x76\x25\x50\xa9\x88\x93\x64\x07\xa0\xa0\xa8\x2c\x24\x3c\x02\x45\x45\xb1\x92\xf4\x04\x94\x74\x07\xce\x4b\x7c\x05\x54\x29\x2a\x9c\xc4\x37\x40\xcd\xb6\x4f\x89\x3f\x00\x1d\x14\x25\x92\xf8\x16\xa8\x15\x54\xb8\x28\xf1\x1d\x50\xa7\xa8\x60\x89\xcf\x40\x59\x51\x99\x24\xbe\x07\xea\x15\x25\xef\x4c\x4d\x30\x45\x6a\xca\xbb\x2a\x98\x9a\x20\x8b\x54\x96\x2f\x4a\x36\x35\xc1\x16\xa9\x2d\x1f\x5c\x32\x35\x41\x17\xa9\x2e\x9f\x82\x37\x35\xc1\x17\xf9\xcd\xa9\xc4\xc3\x17\xa9\xaf\xb2\x88\x12\x0f\x5f\xa4\xbe\xca\x50\x48\x3c\x7c\x91\xfa\x2a\x53\x92\x78\xf8\x22\xf5\x15\xc8\x4b\x3c\x7c\x91\xfa\x0a\xde\x49\x3c\x7c\x91\xfa\x0a\x41\x8a\x25\xf8\x22\xf5\x15\x2a\x69\x96\xe0\x8b\xd4\x57\x24\xa9\x96\xe0\x8b\xd4\x57\xf4\x52\x2d\xc1\x17\xe5\xad\x7f\x89\x87\x2f\x52\x5f\xb1\x92\x6a\x79\x7b\x17\xd5\x57\x22\xa9\x96\xe1\x8b\xd5\x57\xf2\x52\x2d\xc3\x17\xab\xaf\x14\xa5\x5a\x86\x2f\x56\x5f\xa9\x92\x6a\x19\xbe\x58\x7d\x55\x2c\xd5\x32\x7c\xb1\xfa\xaa\xbc\x54\xcb\xf0\xc5\xea\xab\x8a\x52\x2d\xc3\x17\xab\xaf\xaa\x92\x6a\x19\xbe\x38\x5d\xdf\x55\xc9\x87\x30\xae\xc0\xbc\x94\xcb\x30\xc6\x0d\x58\x94\x76\x19\xca\x58\x95\x49\xfb\xf2\x17\x70\xc6\x2d\x18\x4b\xbf\x0c\x69\xdc\x81\x95\x52\x30\xc3\x1a\xe7\x50\x0a\x8b\x31\xe8\x09\xbd\x9e\x44\xf9\x2e\x77\xd5\xed\xfe\x68\x2f\xcb\x92\xc7\x55\x6f\x2a\xbd\x24\xe4\xec\x0f\x63\xbe\xdd\x7a\xf3\x34\xcb\x2a\xfd\xfc\x0d\x00\x00\xff\xff\xf5\xca\x92\xc4\x21\x05\x00\x00"); -func _gccg ()([]byte ,error ){return _dc (_cgbg ,"KSC-Johab-H")};func _agcg ()([]byte ,error ){return _dc (_dffa ,"GB-EUC-H")};func _be ()([]byte ,error ){return _dc (_bgc ,"90ms-RKSJ-H")};func _fgb ()(*asset ,error ){_ffff ,_cecb :=_edcf ();if _cecb !=nil {return nil ,_cecb ; -};_bdag :=bindataFileInfo {_ag :"HKm314-B5-H",_bc :11290,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492384,0)};_cfeg :=&asset {_cd :_ffff ,_dce :_bdag };return _cfeg ,nil ;};var _afad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x39\x6e\x0f\x5b\x6c\x63\x6f\x12\xa9\x42\xaa\x88\xaa\x72\xd8\xb4\x2a\x9b\xb4\x52\xd5\x03\xb1\xc7\xd4\x52\x31\x96\x81\x43\xfe\x7d\x65\x03\x46\x7b\x40\xe6\xbd\xcf\x8c\xe7\xe1\xc9\xab\xfa\x5c\x5b\x33\x41\xfe\xdd\x0f\xb2\xc1\x09\xb4\xb1\xca\xe3\x38\xcc\x5e\x22\xdc\xb1\x33\x36\xcb\x28\x03\x65\xe4\xb4\xc9\xb8\xc8\xbe\x75\x59\x96\x5f\xad\xa9\x2e\xcd\xf3\xf5\xed\x4b\xc1\x9e\xbf\xc2\x3c\xe2\x0a\xaa\xfa\xdc\x3c\xc6\x09\xfb\xda\xea\x01\x8a\xa5\x80\x9a\xdd\x5a\x04\x20\xff\x81\x9d\x19\x27\xff\x80\xa7\xcf\x6a\xb8\xe3\x07\x50\xa8\x83\xff\xcd\x2b\xf4\xc6\x76\xf0\x54\x5d\x1a\x9a\xec\x66\x76\xee\x1f\xf6\x68\x27\x38\x44\x0f\xad\x8a\x6b\x96\x57\xaf\xad\xbb\xb4\x3d\xc2\xfb\x76\x6e\x11\x47\x7a\x43\x3f\x9a\xc1\x02\xfd\x48\xc8\x69\xb7\xdf\x1e\x0e\x81\xae\x55\x7e\x5d\xeb\x33\xfc\xa6\x40\x09\x30\x21\x4e\xfc\xcf\xea\xff\x7c\x1d\x54\xda\xf5\xb2\xf4\x2f\x8d\x92\x7f\x5b\x9f\x7d\x22\x84\x10\x46\x68\x51\x02\x65\x24\x49\x1e\x24\xdb\x24\x13\x25\x50\x72\x5a\xa4\x46\xae\x4b\xa0\xc5\x81\x8b\xd5\xd0\xe2\x1e\x0c\x9e\xa4\x0a\x52\x84\x7c\xdb\x31\xd9\x21\x1d\xeb\x5b\xdb\xe1\xb2\xb5\x20\xe4\x58\xc2\xf6\x7a\x2a\x81\x0a\x92\x48\xbb\x93\x50\x9e\xbf\x24\x22\x77\x12\x4e\x12\x3c\x11\xdc\x49\xe8\x51\x1c\x37\x42\x49\x22\x94\x86\x6a\x2c\x11\xbe\x93\x10\xb3\x38\x6e\x31\x52\x6f\x5a\xc7\xde\x0a\xb2\x26\x5a\x12\x44\x11\x46\x25\x5d\x9e\x9c\xbd\x47\x3b\xc5\x41\x89\xb7\x13\xfe\xb8\xb1\x98\xa6\xd1\x0d\x2e\x7c\x15\x9f\xff\x01\x00\x00\xff\xff\xad\xc7\x92\x12\xb9\x02\x00\x00"); -var _fgga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6b\xf3\x30\x0c\x86\xef\xfe\x15\x3a\xf6\xbb\x7c\xb1\x93\x35\xdb\x20\x04\x46\x4b\x21\x1b\x5d\xc7\xba\x6e\x83\xb1\x83\x6b\x2b\xc1\x6c\x91\x8d\xe3\x1c\xfa\xef\x87\x9d\xb4\x83\x1d\x8c\xac\x57\xcf\x6b\x24\x39\x5b\x35\xeb\x86\x4c\x80\xec\xc9\x5b\xb5\xc7\x00\xad\x21\xed\x71\xb0\xa3\x57\x08\x47\xec\x0c\x31\x26\x72\xd0\x46\x85\x73\x9a\x82\xea\xa5\x63\x2c\xfa\xf7\xa7\x21\x60\xdf\x50\x6b\xa1\x98\x38\x3d\xba\x99\x05\xc8\x9e\xb1\x33\x43\xf0\x27\x58\xdc\x69\x7b\xc4\x7f\xa0\xb1\x8d\xfa\xce\x6b\xf4\x86\x3a\x58\xdc\x4b\x27\x49\x5c\x0a\xfb\xd1\xb9\x6f\xec\x91\x02\xf0\xa4\x21\xe9\x14\x59\xb6\xda\x4a\xf7\x28\x7b\x84\xec\x41\x06\xf9\x25\x49\xa6\x42\xd2\x5f\xd1\x0f\xc6\x12\x08\xfe\x9f\xf3\xf2\x57\x7f\x39\x39\x04\x31\x3f\x70\x68\xd6\xbb\xb6\x1d\x30\xc0\x4d\x79\x35\x31\xef\x87\x66\x0d\x1f\x02\x04\x87\x7c\x59\x2c\xf9\xe7\x8c\xbe\x6d\xad\xc6\xb9\x03\x26\xa6\x79\x94\xd5\x38\x38\xa9\xd0\x4b\xea\x90\x01\x54\x9c\xd7\x50\x6d\x36\x75\x6c\xf2\x4f\x95\xe5\xb3\xc9\xe8\x49\xa8\xf2\x08\x2f\xdb\x1a\x8a\xbc\x64\x55\x19\xb3\x6b\xac\xa1\xb8\x15\xc9\x7e\xe6\xe2\x3d\x6e\xf7\x32\xad\x1a\xbd\x47\x0a\x69\xb7\x69\xa6\xd8\x94\x21\xbc\xfc\x93\xb3\x2e\xba\xd2\xf9\x09\x00\x00\xff\xff\xea\x27\xb0\xe9\xd3\x01\x00\x00"); -var _aef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xe4\x46\x10\x05\xf0\xbb\x3e\x45\x1f\x37\x87\x8d\xbb\xaa\xba\x5b\x2d\x10\x86\x60\xb3\xe0\xc3\x6e\x42\x9c\x7f\x10\x72\x18\x4b\x3d\x66\x20\xd6\x0c\x9a\x99\x83\xbf\x7d\x78\xf5\x34\x0e\xec\x61\x99\x9d\x67\x75\x49\xfe\x3d\x77\xeb\xee\xe1\xe9\xf1\x69\x39\x5c\xc2\xdd\x2f\xeb\x71\x7a\x6e\x97\xb0\x3f\x2c\xf3\xda\xce\xc7\xeb\x3a\xb5\xf0\xd2\x5e\x0f\x4b\xd7\x89\x86\xf9\x30\x5d\x6e\x5f\xfd\x63\x7a\xdb\x9d\xba\x0e\xeb\x9f\xdf\xcf\x97\xf6\xf6\xb4\xec\x8f\xc1\x78\xdd\x7c\x3d\x6d\xd7\x86\x70\xf7\x6b\x7b\x3d\x9c\x2f\xeb\x7b\xf8\xf4\xd3\x7c\x7c\x69\x3f\x84\xb9\xed\x91\xff\xbc\xce\x6d\x3d\x2c\xaf\xe1\xd3\xc3\xb7\x67\xf9\x88\x9f\xaf\xa7\xd3\xbf\xed\xad\x2d\x97\xa0\x9e\xb5\x65\xf6\xcf\xee\xee\xe1\xeb\xee\xf4\x6d\xf7\xd6\xc2\x9d\x4f\xfa\x8c\x75\x9f\x79\x91\xff\xec\x8f\xb6\x9e\x0f\xc7\x25\xc8\x8f\x31\xe6\xff\xe3\xdf\xde\x4f\x2d\xc8\x36\xe3\xaf\xdf\x9f\x1e\xc3\xdf\x12\x24\x06\xcd\xb9\x96\x7f\xb6\xfc\xcf\xaf\xc7\xb9\x85\x78\xbb\xd3\xd3\xe3\xc3\xf1\xba\x5c\x82\xf4\x25\x6e\x4b\x85\xbf\xd2\x74\x9c\xdb\xf9\xb4\x9b\xda\xba\x5b\x5e\x5b\x17\xc2\x18\x63\x8c\xf7\x61\x4c\xe9\xcb\x97\x7b\x3c\xed\x77\x57\x74\x65\xd8\x56\x1e\x66\x26\xb7\x15\x31\xee\xf7\xf7\x21\x76\x63\x14\x7e\x17\x7c\xd7\x5c\xba\x31\x2a\x13\x45\x92\x45\xbb\x31\x1a\x13\x43\xd2\x97\xda\x8d\x31\x31\x49\x48\x24\x6a\xea\xc6\x98\x19\x65\x8f\xb4\x62\x76\x61\x54\x3c\xca\x86\xe1\x3d\xa3\xde\xa3\x7e\xc0\xf4\xca\xa8\xfa\x13\xc4\x84\xf1\x03\xa3\xc1\x23\x8b\x18\xbf\x63\xb4\xdb\x9e\x13\xe3\x5f\x18\xbd\x78\x54\x05\xe3\x27\x46\x13\x22\x8b\x3d\xc6\xcf\x8c\x66\x8f\x4c\x31\xbe\x31\x6a\x1e\xe5\x8a\xf1\x7b\x46\x7b\x8f\x6a\x8a\xdd\x28\x94\x12\x97\x4a\x71\x28\xdd\x28\xc4\x12\xc7\x4a\x96\xb5\x1b\x85\x5a\xe2\x5a\xa9\xc4\xda\x8d\x42\x2e\x71\xae\x54\x4b\xea\x46\xa1\x97\xa4\xcd\x14\xe3\xe9\x25\xee\x95\xad\xc7\x78\x7a\x89\x7b\xe5\x62\x18\x4f\x2f\x71\xaf\x5c\x2b\xc6\xd3\x4b\xdc\xab\x48\xc2\x78\x7a\x89\x7b\x95\x14\x31\x9e\x5e\xe2\x5e\xa5\xa0\x58\xa1\x97\xb8\x57\x19\xd0\xac\xd0\x4b\xdc\xab\x17\x54\x2b\xf4\x12\xf7\xea\x13\xaa\x15\x7a\x49\xdb\xfa\xc7\x78\x7a\x89\x7b\xf5\x03\xaa\x55\x7a\xa9\x7b\x55\x41\xb5\x4a\x2f\x75\xaf\x9a\x50\xad\xd2\x4b\xdd\xab\xf6\xa8\x56\xe9\xa5\xee\x55\x07\x54\xab\xf4\x52\xf7\x1a\x14\xd5\x2a\xbd\xd4\xbd\x86\x84\x6a\x95\x5e\xea\x5e\x43\x8f\x6a\x95\x5e\xea\x5e\xc3\x80\x6a\x95\x5e\x5a\x6f\x7f\xab\x98\x4f\x30\x1d\x98\x25\x94\xab\x14\xd3\x1d\xb3\x1e\xed\x2a\xc9\xd4\xc9\xd0\x3e\x6e\x41\x33\x9d\x98\x29\xfa\x55\xa2\xe9\xcc\x2c\xa3\x60\xa5\x9a\x36\x66\x3d\x1a\x56\xb2\xe9\x9e\x9b\x24\xa2\x62\xa3\x9b\x45\x66\x8a\x8e\x8d\x70\x26\xcc\x32\x4a\x36\xca\x99\xde\x36\x58\xec\x46\x23\x9d\x39\x9d\x58\x44\xcd\x46\x3b\xe3\xde\x34\x43\xcf\x46\x3c\xe3\xe6\xb4\x8c\xa2\x8d\x7a\xc6\xdd\x69\x15\x4d\x1b\xf9\x8c\xdb\x33\x45\x54\x6d\xf4\x33\xfa\x25\x43\xd7\x46\x3f\xa3\x5f\xca\x28\xdb\xe8\x67\xf4\x4b\x15\x6d\x1b\xfd\x8c\x7e\x59\x50\xb7\xd1\xcf\xa6\xdb\xa9\x80\x7b\xd0\xcf\xe8\x97\x0b\x0a\x37\xfa\x19\xfd\x72\x45\xe3\x46\x3f\xa3\x5f\x11\x54\x9e\xb6\x33\x90\x7e\xc5\xd0\x79\xa2\x5f\xa2\x5f\x29\xe8\x3c\xd1\x2f\xd1\xaf\x54\x74\x9e\xe8\x97\xe8\xd7\x0b\x3a\x4f\x69\x3b\x53\xa7\x88\x2c\xc5\xea\x27\xeb\xed\x04\xc5\xff\xf1\xfe\xf9\x78\x23\x4c\xd7\x75\x6d\xcb\xc5\xdf\x3e\x7e\xe8\xe3\xcc\x3e\x2c\xed\xe3\x4d\x76\x3a\x9e\xb0\xca\xff\xfd\x17\x00\x00\xff\xff\x1b\x84\x37\x93\xf5\x06\x00\x00"); -func _cga ()([]byte ,error ){return _dc (_cea ,"Adobe-KR-5")};func (_geb bindataFileInfo )IsDir ()bool {return false };func _gceaf ()([]byte ,error ){return _dc (_bbad ,"GBK-EUC-V")};var _ddae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xcd\x6e\xd4\x30\x10\x00\xe0\x7b\x9e\x62\x8e\xe5\x50\x62\xe7\xc7\x71\xa4\x6a\x25\xb4\x7b\x20\x54\xa5\x88\xa5\x05\x09\x71\x70\xe2\xc9\x62\x89\xb5\x23\x27\x39\xec\xdb\x23\xcf\x84\xd0\xc3\x6a\x36\x9f\x67\x26\x8e\x3d\xf9\xb1\x3b\x75\xde\x2d\x90\x7f\x89\x61\x38\xe3\x02\xa3\xf3\x36\xe2\x1c\xd6\x38\x20\xf4\x78\x71\x3e\xcb\x64\x01\xd6\x0d\xcb\xbf\x47\x0a\xc3\xd5\x4c\x59\x96\x3f\x9e\x8f\xf7\x9f\xc2\x6f\xd3\xdf\x7f\x84\x75\xc6\x4d\x8f\xdd\xe9\x7c\x9b\x17\xbc\x76\x7e\x0c\x50\x72\xb5\x5d\xa7\xad\x03\x40\xfe\x15\x2f\x6e\x5e\xe2\x0d\xee\x3e\xd8\xd0\xe3\x3b\xb0\x38\x26\x7f\x8e\x16\xa3\xf3\x17\xb8\x7b\x0c\x11\x8d\xdc\x17\xce\xeb\x34\xfd\xc1\x2b\xfa\x05\x24\x19\x7a\x4b\x31\xcb\x8f\x4f\x66\xfa\x6c\xae\x08\x6f\x76\xf3\x4a\x6b\xb4\xf4\x8a\x71\x76\xc1\x83\x14\xef\x85\x50\xff\xfd\xdb\x6d\xc2\xad\x57\x96\xbf\x74\xa7\xe7\x71\x9c\x71\x01\xd5\x0a\xce\xf9\xf1\xd2\x9d\xe0\xa7\x04\x29\xa0\xa8\x2b\x59\xfc\xda\x52\xbf\x3f\x05\xbb\x17\x4a\xc5\xdf\x34\x38\x1b\x8d\xbf\x60\xf6\x60\xdb\xb2\x38\x40\x0a\xe5\x01\xb4\xa8\x15\x51\xcd\x54\x13\x69\x22\xc5\xa4\x0e\xa0\xcb\x42\x10\xb5\x4c\x3d\x65\xb5\x44\x96\xc9\x26\x52\x45\xa2\x8a\xdb\x57\x4c\x65\xa2\xa6\x27\x6a\xa8\xb0\xa9\xb3\x07\x6b\x4a\x99\x88\x82\x16\x8d\x22\xd2\x4c\x2d\x51\x43\x34\x30\x0d\x44\x2d\x11\x32\x61\x22\x9d\xf6\x65\x2a\x43\x54\x8d\x44\x32\x91\xa2\x37\x52\xd0\x42\x53\x2f\x65\x99\x68\x5f\x5a\x13\x8d\x4c\x5c\x48\xed\x5b\xce\x32\x22\x51\x2b\xd2\x35\xee\x67\x97\xfe\xa7\x01\xda\x2f\x74\x58\x63\x44\xbf\xd0\xf8\xd0\x9d\xa5\x43\x77\x1e\xf7\x01\x9d\xc2\x94\xaa\xe8\xf7\x37\x00\x00\xff\xff\xb0\xc5\x59\xa9\xcc\x02\x00\x00"); -func _eaad ()(*asset ,error ){_gagd ,_caeb :=_fdbd ();if _caeb !=nil {return nil ,_caeb ;};_dgea :=bindataFileInfo {_ag :"GBK-EUC-H",_bc :80859,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492080,0)};_cabe :=&asset {_cd :_gagd ,_dce :_dgea };return _cabe ,nil ; -};func _fbef ()(*asset ,error ){_gcba ,_fga :=_gcaad ();if _fga !=nil {return nil ,_fga ;};_bdacb :=bindataFileInfo {_ag :"UniJISX0213-UTF32-H",_bc :243117,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493003,0)};_efdg :=&asset {_cd :_gcba ,_dce :_bdacb }; -return _efdg ,nil ;};func _fag ()(*asset ,error ){_dcdc ,_ccb :=_ddf ();if _ccb !=nil {return nil ,_ccb ;};_fef :=bindataFileInfo {_ag :"90msp-RKSJ-H",_bc :3749,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490990,0)};_gc :=&asset {_cd :_dcdc ,_dce :_fef }; -return _gc ,nil ;};var _edgd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xc1\x6e\x9c\x30\x10\x86\xef\x3c\xc5\x1c\xd3\x43\x0a\x06\x6c\x6f\xa4\x28\x52\xcb\x1e\x82\xaa\x6c\xab\xd2\x6e\x2b\x55\x3d\xb0\xf6\x2c\xb2\x54\x8c\x65\xe0\xb0\x6f\x5f\xcd\x98\xb0\x07\xf4\xc3\x67\xfc\x69\x3c\xe3\xbc\x69\x8f\xad\x77\x0b\xe4\xdf\xe2\x64\x3a\x5c\xe0\xea\xbc\x8d\x38\x4f\x6b\x34\x08\x17\x1c\x9c\xcf\x32\x51\x82\x75\x66\x79\xff\xe4\x30\x63\x1f\xb2\x2c\x7f\xfd\x32\x9b\xf9\xf1\xb3\x7c\x7c\x85\x75\xc6\x0d\x36\xed\xb1\xbb\xcd\x0b\x8e\xad\xbf\x4e\x50\xa5\xcd\x76\x0d\x9b\x00\x20\xff\x8e\x83\x9b\x97\x78\x83\x87\x4f\x76\xba\xe0\x07\xb0\x78\x25\xfe\x35\x5a\x8c\xce\x0f\xf0\xd0\x9c\x3a\xb1\xe3\x6e\x0d\xe1\x1f\x8e\xe8\x17\x50\xcc\xd0\x5b\xce\x2c\x6f\xde\xfa\x70\xea\x47\x84\x7b\x29\x67\x5e\xe2\x95\x33\xc6\xd9\x4d\x1e\x44\xf5\xb1\x28\x0e\x77\xfe\xe3\x16\x10\xc4\xa6\xf8\xfd\xb3\x3d\xc2\x1f\x01\xa2\x80\x52\xca\x83\xf8\xbb\xf1\x5f\x6f\x93\xdd\xff\x12\x55\xaa\xde\x38\x1b\x7b\x3f\x60\xf6\xdc\x8b\xfa\xf2\x02\x5b\x88\x4a\xd5\x8a\x98\xec\x99\x51\x88\x4a\xd7\x15\x33\x93\x98\x49\x4c\x32\xb3\x89\x21\xb1\x82\x88\x12\x4c\x54\x49\xa4\x66\x22\x13\x51\x44\x0e\x4c\x9e\x12\x21\x7b\x5d\x32\x49\x1e\x45\x9e\x54\x81\x4e\x1e\x4d\x1e\xc9\x66\x9d\x3c\x9a\x3c\x92\xcd\x3a\x79\x34\x79\x24\x9b\xb1\x62\x42\x41\x67\xd1\xd9\xb3\x51\x58\xbf\x00\x85\x24\x77\xf1\xa4\xa9\xed\xfb\xf9\xe9\x9d\xc6\xbd\x0f\xc0\xac\x31\xa2\x5f\x78\xd8\xdc\x64\x6a\x9c\xf3\xb8\xdf\xa6\x30\x05\xda\xc5\xcf\xff\x00\x00\x00\xff\xff\xb8\x3f\xd2\xbb\x79\x02\x00\x00"); -func _fbd ()(*asset ,error ){_ceg ,_cbbg :=_gga ();if _cbbg !=nil {return nil ,_cbbg ;};_fcde :=bindataFileInfo {_ag :"GB-V",_bc :774,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492258,0)};_bgcc :=&asset {_cd :_ceg ,_dce :_fcde };return _bgcc ,nil ;};func _accdg ()([]byte ,error ){return _dc (_gdg ,"RKSJ-V")}; -func _abf ()([]byte ,error ){return _dc (_cdg ,"78-RKSJ-V")};var _fbdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\xcf\x6e\x1b\x37\x17\x05\xf0\x3d\x9f\x82\xcb\x7c\x8b\x7c\xe6\x7f\x72\x00\x62\x80\xc4\x8e\x53\x2f\xd2\x14\x4d\xd3\x16\x28\xba\x18\x92\x97\x86\x80\x7a\x24\xc8\xf2\x22\x6f\x5f\xdc\x7b\x14\xb7\xe8\xc2\x90\x75\x86\x3c\x20\x7f\x43\x68\xe6\xe6\xf6\xe1\xee\x61\x3f\x5c\xf4\xcd\x4f\xe7\x63\xff\x42\x17\x3d\x0f\xfb\x38\xd3\xf3\xf1\xe5\xdc\x49\x37\x7a\x3c\xec\x4a\x59\xa7\xc7\xa1\x5f\xbe\x7f\x95\x8f\xfe\xb4\x9d\x94\xe2\xf9\x5f\xbe\x3d\x5f\xe8\xe9\x61\x9f\x47\xed\x31\x6e\xbc\x9c\xae\x63\xb5\xbe\xf9\x99\x1e\x0f\xcf\x97\xf3\x37\xfd\xe6\xdd\x38\x36\xfa\x9f\x1e\x34\x39\xff\x7c\x1e\x74\x3e\xec\x8f\xfa\xcd\xc7\xf7\xf6\x35\xfd\xf2\x72\x3a\xfd\x45\x4f\xb4\x5f\xb4\x91\x8c\xf6\x21\x9f\xea\xe6\xf6\xd3\x76\xfa\x71\x7b\x22\x7d\xf3\xf1\xfd\xa9\xbf\xfd\xf0\xf5\xf6\xed\x0f\x72\x49\xae\xfc\x4a\xe7\xe7\xc3\x71\xd7\xcb\xff\x8d\x49\xff\xc4\xbf\x7c\x3b\x91\xb6\xd7\x86\xaf\x0f\x77\x9f\xe7\x7c\xa6\xef\xdd\x37\xbf\x7f\x7d\xb8\xd3\x7f\x58\x6d\x8d\x76\xd1\xa7\xf0\xe7\x75\xe0\x6f\x9f\x8e\x83\xae\x83\x94\xc7\x5e\xfa\x71\xd0\xf3\x69\xeb\x74\xde\xf6\x47\x52\x5a\x57\x63\x56\xad\x75\x2d\x66\xe5\x6f\xef\xec\x3b\xbb\xea\x7a\x7f\x7b\xff\x41\xbe\xdf\xdf\xc9\xd5\xfb\xfb\x95\xf7\xf0\x9f\xd9\xca\xa2\x74\x3f\x5e\x06\x4d\x64\xd2\x57\xed\x5c\xb5\xe5\x19\xff\xbe\xa4\x96\xeb\xf8\x7e\x18\xd7\xc1\x8e\x07\x67\xe2\xc1\xbc\x02\x59\x86\xce\xd9\x3a\x55\x37\xbb\xf1\x4a\x36\x3b\x69\xd5\x4b\x52\x75\x73\x4d\x02\x47\x6e\xd5\x76\x31\x9c\x50\x44\x42\xab\x76\x41\x92\x89\x31\xb3\xaf\xda\x45\x4e\x3c\x6a\x3c\xd7\xb8\xc4\xc5\x01\x49\x98\x7e\xd5\x3e\x72\x73\x44\x12\x67\x5a\x75\xf0\x8b\xaa\x5b\x42\x92\x5a\x59\x75\x74\x91\x93\x8e\x64\xc6\x55\xc7\xc0\x63\x32\xc6\x64\xbe\x90\x0c\x37\xe7\x81\x84\x17\x91\x3c\xcf\x2a\x18\x53\xba\x59\x75\x4a\x85\x93\x2e\x6b\x2e\xb4\xad\x3a\x1b\x5e\xe1\xb2\x05\x4e\x16\x9a\xab\xce\x9e\xc7\x6c\x98\xb5\xf1\x9a\x8b\x0d\xaa\x6e\x0d\x49\xe3\x9e\xc5\x14\x55\x9b\x91\xa4\x19\xe1\xe1\xbd\x37\x80\x35\x01\xb3\xc6\x07\x55\x9b\x43\xe4\x24\xb2\x8e\xe7\xc1\xa3\x89\x87\x75\xce\xa9\xda\x00\xd2\x82\x44\xde\x26\x55\x1b\x44\x5a\x94\x28\x58\xae\x07\x49\x4b\x12\x45\xc3\xf5\x10\x68\x19\xd1\xc2\xf5\xd8\x70\x2b\x12\xa5\x85\xeb\x17\x44\x8b\x44\xb9\x70\x3d\x36\xd8\x64\x83\xb6\x14\xae\xc7\x0e\x5b\x93\x68\xc9\x5c\xdf\x11\x75\xb9\x75\x86\xf5\xda\x40\x34\x24\xb2\x7c\x3b\x1b\x21\x22\x89\x1c\xdf\xcf\x36\x11\x4d\x89\x3c\x1f\x83\x0e\xae\x2e\x5c\x2e\x84\xa0\x6a\x87\x57\x17\x2f\x17\x19\xbe\xc3\xab\x3b\x1c\x16\xef\x54\xed\xf0\xea\x38\x3f\xd9\x25\x55\x3b\xbc\xba\x78\xb9\xe2\xb8\x1e\x5e\x5d\xbc\xdc\xc2\xb7\xac\xc3\xab\x8b\x97\x37\x7c\xcf\x3a\xbc\xba\x78\x79\xcb\x47\xa6\xc3\xab\x17\x44\x7c\xce\x3b\xbc\xba\x78\x79\xc7\x07\xbd\xc3\xab\x8b\x97\xf7\x85\xeb\xe1\xd5\xc5\xcb\x87\xcc\xf5\xf0\xea\xe2\xe5\x63\xe6\x7a\x78\x75\xf1\xf2\x29\x71\x3d\xbc\xba\x78\xf9\x9c\xb8\x1e\x5e\x5d\xbc\x7c\x89\x41\xd5\x01\xaf\x21\x5e\x7e\x09\x45\xd5\x01\xaf\x21\x5e\xc1\x04\xa7\xea\x80\xd7\x10\xaf\x60\x7d\x52\x75\xc0\x6b\x88\x57\x70\xde\xa8\x3a\xe0\x35\xc4\x2b\x78\xc7\xf5\xf0\x1a\xe2\x15\x82\xe5\x7a\x78\x0d\xf1\x0a\x91\x7f\x02\x06\xbc\x46\x9e\xcb\xaa\x43\x32\x5c\x0f\xaf\x21\x5e\x21\x2d\x51\xd5\x01\xaf\x21\x5e\x21\x97\x45\xd5\x01\xaf\x21\x5e\xa1\x14\xaf\xea\x80\xd7\x10\xaf\xb0\xe4\xac\xea\x80\xd7\x10\xaf\x68\xb2\x55\x75\xc0\x6b\x88\x57\xb4\x89\xeb\xe1\x35\xc4\x2b\xba\xc8\xf5\xf0\x1a\xe2\x15\x7d\xf4\xaa\x12\xbc\x48\xbc\x62\x08\x59\x55\x82\x17\x89\x57\x8c\xc1\xaa\x4a\xf0\x22\xf1\x8a\xf2\x0b\x41\xf0\x22\xf1\x8a\xd9\x2d\xaa\x12\xbc\x48\xbc\x62\x71\x5c\x0f\x2f\x12\xaf\xb8\x58\xae\x87\x17\x89\x57\x32\x96\xeb\xe1\x45\x72\xbe\x92\x35\x5c\x0f\x2f\x2a\x88\x16\xae\x87\x17\x89\x57\x72\x0b\xd7\xc3\x8b\xc4\x2b\xf9\xc2\xf5\xf0\x22\xf1\x4a\xa1\x70\x3d\xbc\x48\xbc\x52\xcc\x5c\x0f\x2f\x12\xaf\x94\x12\xd7\xc3\x8b\xc4\x2b\xe5\xc4\xf5\xf0\x22\xf1\x4a\x25\x66\x55\x27\xbc\xa6\x78\xa5\x25\x5a\x55\x27\xbc\xa6\x78\x65\x13\xa2\xaa\x13\x5e\x53\xbc\xb2\xe5\x5f\xe6\x09\xaf\x29\x5e\xd9\x79\xaf\xea\x84\xd7\x14\xaf\xec\x1d\xd7\xc3\x6b\x8a\x57\x0e\x8e\xeb\xe1\x35\xc5\x2b\x47\xcb\xf5\xf0\x9a\xe2\x95\x93\xe1\xfa\xc1\xc1\x94\x87\x90\x97\x47\xde\xf7\x67\x15\xff\xcf\x6f\x0b\xaf\x0f\xf0\xfe\x72\x3e\xd3\x7e\x91\x77\x05\x79\x4a\xf3\x83\xf6\xb0\xd3\xeb\x7b\xc7\xe9\x78\xe2\x59\xf2\xf7\x77\x00\x00\x00\xff\xff\x10\x63\xff\x07\xa3\x08\x00\x00"); -var _cef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x2c\xde\x6b\x69\xfa\x0f\x4a\x17\x8e\x35\x0e\x86\x46\x36\x8e\xb3\xc8\xb7\x2f\xe7\x1e\x3b\x85\x2e\x82\xa3\x13\xe9\x4a\xf9\x1d\x8f\xe6\xe6\xee\xe1\xfe\x61\xdd\x9f\xd3\xcd\xcf\xa7\xc3\xf6\xb1\x9f\xd3\x6e\xbf\x2e\xa7\xfe\x7a\x78\x3b\x6d\x7b\x7a\xea\xcf\xfb\x75\x18\x44\xd3\xb2\xdf\x9e\xaf\x87\xf1\xb1\x7d\xd9\x1c\x87\x01\xd7\x3f\xbe\xbf\x9e\xfb\xcb\xc3\xba\x3b\x24\xe3\x79\xcb\xdb\xf1\x72\x6e\x4a\x37\xbf\xf4\xe7\xfd\xeb\xf9\xf4\x9e\x3e\x7d\x59\x0e\x4f\xfd\x87\xb4\xf4\x1d\xf2\x9f\x4e\x4b\x3f\xed\xd7\xe7\xf4\xe9\xee\xfb\xa3\x7c\xc4\x8f\x6f\xc7\xe3\x3f\xfd\xa5\xaf\xe7\xe4\x91\xf5\x75\x89\xcf\xe1\xe6\xee\xdb\xe6\xf8\x7d\xf3\xd2\xd3\x4d\x4c\xfa\x8c\xeb\x3e\xf3\xa4\xf8\xdb\xef\xfd\xf4\xba\x3f\xac\x49\x7e\xcc\xb9\xfe\x17\xff\xfa\x7e\xec\x49\x2e\x33\xfe\xfc\xed\xe1\x3e\xfd\x25\x49\x72\xd2\x52\xa6\xf2\xf7\x25\xff\xe3\xdb\x61\xe9\x29\x5f\xef\xf4\x70\x7f\x77\x78\x5b\xcf\x49\xda\x54\x0b\x43\xe1\xbf\xb4\x3d\x2c\xfd\xf5\xb8\xd9\xf6\xd3\x66\x7d\xee\x43\x4a\x73\xce\x39\xdf\xa6\xd9\xbf\x7c\xfd\x7a\x8b\xa7\xfd\xdf\x19\xc3\x58\x2e\x57\xee\x17\x26\xd7\x2b\x72\xde\xed\x6e\x53\x1e\xe6\x2c\x3c\x16\x1c\x6b\xa9\xc3\x9c\x95\x89\x22\x29\xa2\xc3\x9c\x8d\x89\x21\x19\x6b\x1b\xe6\xec\x4c\x1c\x89\x64\xf5\x61\xce\x85\x51\x89\x48\x1b\x66\x57\x46\x35\xa2\x62\x18\x3e\x32\x1a\x23\x1a\x27\x4c\x6f\x8c\x5a\x3c\x41\x76\x8c\x9f\x18\x4d\x11\x59\xc6\xf8\x0d\xa3\xcd\xe5\x39\x31\xfe\x89\xd1\x53\x44\x4d\x30\x7e\xcb\x68\x8b\xc8\xf2\x88\xf1\x0b\xa3\x25\x22\x53\x8c\xef\x8c\x7a\x44\xa5\x61\xfc\x8e\xd1\x2e\xa2\xe6\x79\x98\x85\x52\x12\x52\x9e\xa7\x3a\xcc\x42\x2c\x09\x2c\xb7\xa2\xc3\x2c\xd4\x92\xd0\xf2\x9a\xdb\x30\x0b\xb9\x24\xb8\xbc\x55\x1f\x66\xa1\x97\xf8\xc5\x14\xe3\xe9\x25\xe1\x55\x6c\xc4\x78\x7a\x49\x78\x95\x6a\x18\x4f\x2f\x09\xaf\xd2\x1a\xc6\xd3\x4b\xc2\xab\x8a\x63\x3c\xbd\x24\xbc\xaa\x67\x8c\xa7\x97\x84\x57\xad\x28\x56\xe8\x25\xe1\x55\x27\x34\x2b\xf4\x92\xf0\x1a\x05\xd5\x0a\xbd\x24\xbc\x46\x47\xb5\x42\x2f\xe9\x97\xfe\x31\x9e\x5e\x12\x5e\xe3\x84\x6a\x95\x5e\x1a\x5e\x4d\x50\xad\xd2\x4b\xc3\xab\x39\xaa\x55\x7a\x69\x78\xb5\x11\xd5\x2a\xbd\x34\xbc\xda\x84\x6a\x95\x5e\x1a\x5e\x93\xa2\x5a\xa5\x97\x86\xd7\xe4\xa8\x56\xe9\xa5\xe1\x35\x8d\xa8\x56\xe9\xa5\xe1\x35\x4d\xa8\x56\xe9\xa5\xed\xfa\x5d\xc5\x7c\x82\xe9\xc4\xcc\x51\xae\x52\x4c\x37\xcc\x46\xb4\xab\x24\xd3\x20\x43\xfb\xb8\x05\xcd\x74\xcb\x4c\xd1\xaf\x12\x4d\x17\x66\x05\x05\x2b\xd5\xb4\x33\x1b\xd1\xb0\x92\x4d\x77\x5c\x24\x19\x15\x1b\xdd\x2c\x33\x53\x74\x6c\x84\x33\x61\x56\x50\xb2\x51\xce\xf4\xba\xc0\xf2\x30\x1b\xe9\x2c\xe8\xc4\x32\x6a\x36\xda\x19\xd7\xa6\x19\x7a\x36\xe2\x19\x17\xa7\x15\x14\x6d\xd4\x33\xae\x4e\x6b\x68\xda\xc8\x67\x5c\x9e\x9e\x51\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\x2f\x28\xdb\xe8\x67\xf4\xf3\x86\xb6\x8d\x7e\x46\xbf\x22\xa8\xdb\xe8\x67\xdb\xeb\x5b\x01\xf7\xa0\x9f\xd1\xaf\x54\x14\x6e\xf4\x33\xfa\x95\x86\xc6\x8d\x7e\x46\xbf\x2a\xa8\xdc\x2f\xef\x40\xfa\x55\x43\xe7\x4e\x3f\xa7\x5f\xad\xe8\xdc\xe9\xe7\xf4\xab\x0d\x9d\x3b\xfd\x9c\x7e\xa3\xa0\x73\xa7\x9f\xd3\x6f\x74\x74\xee\xf4\x73\xfa\x8d\x15\x9d\x3b\xfd\xbc\x5e\x5f\x65\xb8\x07\xfd\x9c\x7e\x4d\xd0\xb9\xd3\xcf\xe9\xd7\x1c\x9d\x3b\xfd\x9c\x7e\xad\xa2\x73\xa7\x9f\x6f\xc4\x91\x4d\xee\xf1\x46\xbf\xbe\xb9\xf1\x3b\xf6\xbd\x8f\x9d\x68\xfb\x76\x3a\xf5\xf5\x1c\xbb\x5e\x6c\x36\xd8\x2b\xf6\x6b\xff\xd8\x41\x8f\x87\x23\xae\x8a\x9f\x7f\x03\x00\x00\xff\xff\xcd\x63\xbe\x49\x6d\x07\x00\x00"); -func _feaa ()([]byte ,error ){return _dc (_fcba ,"Ext-RKSJ-V")};var _aga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\xcf\x6e\xe3\x46\x0c\x06\xf0\xbb\x9e\x62\x8e\xdb\xc3\xd6\x9a\x19\xcd\x3f\x60\x61\x60\x11\x1f\xea\x2d\xd2\x14\x71\x93\x16\x28\x7a\x90\x25\xca\x10\x50\xcb\x82\x2c\x1f\xf2\xf6\x05\xbf\xcf\x75\x0e\x01\x93\x9f\x86\x14\x49\x05\xb3\x79\xda\xef\xf6\xd3\xb8\x9a\xcd\xef\xcb\xa5\x3b\xc8\x6a\x86\x71\xea\x17\xb9\x5e\x6e\x4b\x27\xe6\x28\xa7\x71\xaa\x2a\xeb\x4c\x3f\x76\xeb\xff\x7f\x22\x74\xe7\x76\xae\xaa\xcd\xf7\xbe\xff\xfa\xfa\xeb\xe1\xc7\xd7\x5f\xcc\xed\x2a\x77\x7c\xda\xef\x0e\x1f\xd7\x55\xce\xfb\x69\xb8\x18\xcf\xe4\xfe\x36\xdf\x0b\x18\xb3\x79\x95\xd3\x78\x5d\x97\x0f\xf3\xe5\x7b\x7f\x39\xca\x4f\xa6\x97\x41\xfd\x65\xe9\x65\x19\xa7\x93\xf9\xf2\xa3\x9d\xdb\xc9\x3e\x1e\x1c\x6e\xf3\xfc\xaf\x9c\x65\x5a\x8d\x85\xc9\xd4\x23\x56\x9b\xa7\xe7\x76\xfe\xad\x3d\x8b\xf9\x6c\xe6\x1d\x8f\xf0\xe4\x5d\x96\xeb\x78\x99\x8c\xad\x7f\xae\xeb\xf8\xe9\x7f\x7c\xcc\x72\x2f\x55\x6d\xde\xf6\xbb\x97\x61\xb8\xca\x6a\x52\xae\x79\xe6\xaf\xb7\xfd\xce\xfc\x6d\x8d\xad\x8d\x0b\xde\xa5\x7f\xee\x47\xff\x7c\xbe\xf4\x8f\xc4\x90\x38\x52\x37\xf6\x4b\x3b\x9d\xa4\xfa\x96\x6d\x63\xb7\x46\x83\xdb\x9a\x94\x73\x02\x79\x92\xdf\x9a\xec\x62\x06\x35\xa4\x46\x29\x35\x4a\xa1\x06\x05\x8b\xc4\x02\x3a\x92\x7a\xa5\x62\x95\x22\x4f\xc5\x06\x84\xc4\x18\x48\x41\x6b\x65\x07\x8a\xa4\x88\xf2\x01\x94\x48\x09\xa7\x6a\x50\x26\x65\x9c\x42\xab\xb1\x80\x52\x8b\xf2\xda\x84\x2b\x83\x12\x42\x2a\x56\xbb\x77\x2d\x66\x44\x48\xc5\xe2\x54\xeb\x49\x5e\xc9\xd5\xa0\x40\x0a\x20\x0b\x4a\xa4\x04\xd2\x56\x5d\xc7\x5a\x1d\x6a\x39\xaf\x24\x24\x21\x35\x20\x96\x17\x96\x0f\x20\x96\x17\x96\x8f\xa0\x8e\xd4\x81\x74\x20\x37\x30\x71\xc0\xa2\xa3\xd6\xf2\x0d\x56\x88\x90\x8a\xcb\x20\x47\x72\xa0\x02\x6a\x48\xba\xe8\xe2\x6b\x50\x24\x45\x90\x05\x65\x52\x06\xe9\x40\x3e\xb2\x56\x44\x2d\xaf\x03\xf9\x8c\x26\x10\x52\xf1\x68\x22\x07\x12\xba\xf7\x01\x94\x48\x58\x8e\x8f\x20\x21\x09\x48\x07\xf2\x85\x89\x85\x4d\xe4\xea\x9b\x74\x49\x9b\x60\x48\xa5\xf1\xa0\x42\x2a\xa0\x1a\xd4\x92\xda\xad\xc9\x5e\x67\x94\x2e\x1d\x49\x47\x9c\xb2\xa0\x8e\xd4\xe9\x29\xcf\xc4\x9e\x24\x20\x24\xe6\x1a\x94\xb1\xc2\x26\x80\x2c\xc9\xe2\x14\xfa\xca\x8e\x84\x4d\x34\x09\xe4\x49\xd8\x44\xc0\x1b\x73\x43\xd2\x2f\xe4\x1b\x26\x06\x12\x96\x13\x30\x50\x8e\x24\x8c\x1d\xd0\x17\xf6\xc5\xa0\xdf\x09\xc4\x4d\x68\xc8\xfe\xfe\x46\x6e\x22\x63\x13\x81\xa7\xb8\x89\x8c\x4d\x70\x5f\x99\x9b\xc8\x18\xbb\xe1\x8c\x1c\x5b\x43\xf6\x81\x7d\x09\x09\x9b\x08\x2c\x3f\x90\x06\x10\x6a\x15\x2e\x47\x43\xf6\x21\x82\x38\x90\x86\xec\xf5\x3f\x5a\x86\x82\xe5\x20\x64\xef\xbd\x5e\x68\x8f\x6b\x44\x7f\xd7\xab\xf4\x71\xb5\x75\xb7\x65\x91\x69\xc5\x45\x8a\xeb\x4b\xef\x9f\x71\x92\xc7\x4d\x3d\x5f\x66\xcd\xc2\xcf\x7f\x01\x00\x00\xff\xff\x7e\x3d\x1d\x6d\xd5\x05\x00\x00"); -func _afg ()([]byte ,error ){return _dc (_eebb ,"Adobe-CNS1-6")};func _acaf ()(*asset ,error ){_dec ,_ageg :=_bbaf ();if _ageg !=nil {return nil ,_ageg ;};_gbg :=bindataFileInfo {_ag :"Adobe-KR-8",_bc :2133,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491451,0)}; -_abag :=&asset {_cd :_dec ,_dce :_gbg };return _abag ,nil ;};func _ffgg ()(*asset ,error ){_cbbb ,_acae :=_decb ();if _acae !=nil {return nil ,_acae ;};_cgg :=bindataFileInfo {_ag :"GB-EUC-V",_bc :782,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491964,0)}; -_fceg :=&asset {_cd :_cbbb ,_dce :_cgg };return _fceg ,nil ;};func _gfgdc ()([]byte ,error ){return _dc (_abda ,"UniGB-UTF8-V")};var _febc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x4f\x6f\x23\xb9\x11\xc5\xef\xfa\x14\x3c\x6e\x0e\x1b\xf3\x3f\x59\x80\x20\x60\x31\x93\x41\xbc\xc1\x26\xc1\x38\xff\x80\x20\x07\x76\x77\xd1\x10\x10\x4b\x82\x2c\x1f\xe6\xdb\x07\xf5\x9e\x3c\x4e\xb2\x07\x83\xd6\xaf\x1f\x4b\xc5\xe2\xeb\x22\xf5\xf0\xe9\xf1\xf3\xe3\xe9\x78\x73\x0f\x7f\xbe\x9e\xd7\x27\xbd\xb9\x79\x3c\x6d\x57\x7d\x3d\xbf\x5d\x57\x75\x8b\x3e\x1f\x4f\xbb\x5d\x88\x6e\x3b\xae\xb7\xf7\x8f\x18\xd6\x97\x71\xd9\xed\x6c\xfe\xd3\xb7\xd7\x9b\xbe\x3c\x9e\xe6\xd9\x25\xea\xb6\xb7\xcb\x5d\xeb\xdc\xc3\x57\x7d\x3e\xbe\xde\xae\xdf\xdc\x0f\x3f\x6d\xe7\x45\x7f\xe3\x36\x9d\xc6\xff\x74\xdd\xf4\x7a\x3c\x3d\xbb\x1f\x7e\x1e\x97\x71\x0a\xdf\x1f\x3c\xbd\x5d\x2e\xff\xd6\x17\x3d\xdd\x5c\x04\xd3\xd3\x86\x71\xf7\xf0\xe9\x97\x71\xf9\xe3\x78\x51\xf7\x20\xfe\xe5\xf5\xf2\xe3\xd7\x3f\x3c\xfd\xfc\xe3\xef\xf1\x10\xcf\xfe\xa6\xd7\xd7\xe3\xf9\xe4\x42\xf8\xad\xf7\xf5\x83\xff\xe5\xdb\x45\x5d\xb8\x07\xf9\xc7\x5f\x1f\x3f\xbb\x7f\x06\x17\xbc\x8b\x25\xe7\xf2\xaf\x3b\xff\xfb\x2f\xe7\x4d\x9d\xe7\xa7\xcc\x05\xac\xe7\x4d\x5f\x2f\x63\xd5\xeb\x38\x3d\xeb\xce\xb9\xbd\xf7\x07\xe7\xdc\xbe\xfb\x83\x7d\xea\x21\xfb\x83\xdb\xcb\x97\x2f\x9f\xf0\xf9\x27\x3e\xfd\xfc\x05\x9f\x7e\xe7\xf1\xf4\xcb\x27\x7b\xaa\xa7\xed\xff\xa2\xed\x02\xbf\xe4\x74\xbe\x6d\x3a\xc9\x10\x7f\x1f\xe6\xc1\x05\x9b\xf1\xdf\x8f\x76\xc1\xfb\x7b\x56\xc7\xed\xae\x8e\xa6\x6e\x6a\xea\xf7\x5c\x7a\xb0\xcf\x35\x25\x23\x9d\x64\xac\x07\x57\xa5\x1a\x59\x3a\xc8\x32\x0f\xae\x65\xcc\x5a\x49\x56\x35\x22\x46\xb6\x01\xa2\xfd\xe0\x5a\xc1\xac\xc9\x38\xb3\x1d\x5c\x6b\x98\x35\x57\x92\xd5\x88\xcd\x8a\x79\x1a\x89\xc5\x66\x75\x6f\xa4\x62\x56\x6c\x72\x70\x4d\x40\x7a\x00\x91\x71\x70\x3d\x58\xe4\x28\x9c\x35\xc3\xc1\xf5\x1c\x77\xfb\x9e\xb8\x8a\x64\xab\x90\x58\x8c\x70\x15\x49\xea\xc1\x49\xef\x46\x38\x2b\x2d\xf5\xe0\x82\x0f\x96\x50\x5a\x88\x36\xa0\x64\xf3\x32\x23\x65\x4b\x23\xf8\x62\x49\xe6\x46\x84\x92\x79\xb1\xef\xcb\x8c\x9e\x25\x1c\x5c\x08\xbe\x19\x62\x78\x0c\x2d\x63\x75\x79\x50\x65\x43\xcb\x3d\x00\x05\xa2\x80\xc2\x11\x45\xa2\x08\x84\x24\x46\x22\x4a\x56\x4c\x9f\x80\x32\x51\x86\x8a\xe1\x0b\x51\x81\x0a\x49\x8c\x4a\x54\x0d\x45\x4e\x6c\x44\xb6\x0d\x25\x30\x7c\x27\xc2\x5e\x25\x26\x21\x44\x02\xc4\xf0\x83\x68\x20\x7b\x0f\xb4\x10\x2d\x40\xa8\xc4\x58\x89\x56\xe4\x95\x81\x36\xa2\x0d\xa8\x03\x29\x91\x22\xd5\x0a\xc4\x7a\xd9\xd0\x8a\x47\xac\x85\xf5\xb2\xa1\x95\x80\x58\x0b\xeb\x65\x43\x2b\x09\x49\x2c\xac\x97\x0d\xad\x44\x4e\x64\xbd\x16\xd4\x2b\xe1\x1b\x17\xd6\xcb\x86\x56\x0a\x63\xb1\x5e\x0b\xea\x05\x03\xe4\x85\xf5\x5a\x58\x2f\xe4\xb5\xb0\x5e\x0b\xeb\x85\x4a\xd0\xff\x18\x5a\x49\x8c\xc5\x7a\x2d\xa8\x57\x66\x12\xac\x97\x0d\xad\x78\x26\xc1\x7a\xd9\xd0\x4a\xc4\x0e\x2d\xac\x97\x0d\xad\x04\x7e\x23\xeb\x65\x43\x2b\x74\xe1\xc2\x7a\x2d\xa8\x57\x36\xd4\x68\xcc\x56\xa0\x2a\x40\x05\x25\x6c\x15\xf5\xea\x40\x35\x10\xd9\xab\xe1\x51\x89\x56\x23\x11\xea\xd5\x89\x12\x51\x32\x55\xf6\x40\x99\x08\xf5\x12\xa2\x42\x54\xa0\x8a\x40\x95\x08\xc5\x11\xa2\x4e\xd4\xa1\xca\x40\x42\x84\x4a\x08\xf3\x5a\x88\x16\xa8\x12\xd0\x4a\x84\x05\x09\xf3\x52\x22\x85\xaa\x01\x71\x8d\xcd\x36\xad\x7a\xdb\xb4\xd6\xa8\xb2\xa1\x27\x98\xbc\xf1\x7d\x6c\x3d\x41\x85\x58\x9d\x0b\xb2\xa1\x7b\xd6\xab\x73\x41\xdd\x2c\x57\x03\x26\x0a\x27\xda\xd0\x2a\xd6\x23\xac\xa0\x0d\xad\xe2\xfb\x84\x05\xb4\xa1\x55\x01\x61\xfd\x44\x30\x0b\x6b\x96\x41\x64\x6b\xae\x48\x40\xb8\x64\xb1\x9d\xae\x78\xcb\x3a\x7b\x44\xb7\x06\x18\x02\xfa\x94\x70\x5b\x05\xcd\x25\xc2\x6e\xc2\xc5\x08\x54\x11\x6f\xd9\xa0\x6a\x40\x95\xf1\xaa\x0f\xaa\x06\x54\xb9\xd9\x86\x2d\x54\x2d\x50\xb1\xee\x0b\x55\x0b\x54\xb5\x58\x5e\x2b\x55\x2b\x54\xad\x5b\x15\x56\xaa\x56\xa8\x7a\x36\x53\x6e\x54\x6d\x50\x09\xda\xf7\x46\xd5\x66\xaa\xe8\xf1\x1a\x28\x55\x6a\xaa\x18\xd0\x2d\x95\x2a\x85\x2a\xe2\xf5\x9c\x54\x4d\xa8\x12\xb6\x75\x52\x35\xa1\xca\xc1\xef\xf6\xc2\x73\x4f\x3c\x54\x78\x0d\xc4\x77\x22\xa8\x60\x11\xb9\x9f\x9d\x38\xaf\x62\xb3\xcd\x17\x1e\x58\x82\x63\x25\xb6\x5e\x77\x7b\x89\x54\x45\xa8\xc4\x5e\x75\x89\x54\x45\xa8\xa4\xe5\xdd\x5e\x78\x6a\x08\x4e\x8d\xe4\xad\xa7\x0a\x8f\x0d\x49\xa6\x4a\xc1\x0c\x21\x3c\x11\x04\xed\x3f\xc5\xde\x0c\x51\x95\xa1\x4a\xc5\xe3\x9c\x7e\x3f\x5f\x77\xed\x57\x27\xae\x14\xc6\x28\x88\x91\x9b\xad\xad\x30\x46\x41\x0c\xf4\x2c\xa9\x54\x55\xa8\x6a\xb5\xb5\x55\xaa\x2a\x54\xcd\x1a\x94\xb0\x11\x08\xec\x9f\x7a\xb1\xb5\xd1\xfe\xd2\xa0\x12\x6b\x9c\xd2\xa9\xea\x2d\x1e\x5c\xf6\xd6\xd0\x85\xee\x13\xb8\x2f\x7b\x7b\xc5\x85\xee\x13\xb8\x2f\x87\x6e\x13\xe9\x3e\x81\xfb\x72\xb4\xcd\x12\xba\x4f\xe0\xbe\x9c\x9a\x15\x85\xee\x13\xb8\x2f\x67\x6c\x16\xdd\x27\x70\x5f\x2e\xd5\xc2\xd3\x7d\x02\xf7\xe5\x8a\xcd\xa2\xfb\x04\xee\xcb\x2d\xdb\xb2\xe9\x3e\x81\xfb\x72\xc7\x66\xd1\x7d\x02\xf7\x65\x49\xb6\x6c\xba\x4f\xe0\xbe\x2c\xd8\x2c\xba\x4f\xe0\xbe\x12\xec\x35\x14\xba\x4f\xe0\xbe\x12\xb0\x59\x74\x9f\xc0\x7d\x25\x05\xcb\x9e\xee\x13\xb8\xaf\x24\xdb\x0e\x9c\xd4\xdb\xb4\x1d\xae\xbb\xbd\xd2\x8b\x0a\x2f\x96\xe2\xbd\xa1\x4e\x84\x39\xc5\x36\x47\xe9\x45\x85\x17\x4b\xb5\xce\xaa\xf4\xa2\xc2\x8b\xa5\xd9\xe6\x28\xbd\xa8\xf0\x62\xe9\xcd\xc2\xd3\x8b\x0a\x2f\x16\xb1\xcd\x51\x7a\x51\xe1\xc5\xea\x6b\x36\x44\x15\xbc\x58\x83\x9d\x1e\x4a\x2f\x2a\xbc\x58\x63\x89\x86\xa8\x82\x17\x6b\xb2\xf3\x5d\xe9\x36\x85\xdb\x6a\xb6\xf6\xae\x74\x9b\xc2\x6d\x15\x37\x0a\xa5\xdb\x14\x6e\xab\x35\x5a\xf6\x74\x9b\xc2\x6d\xb5\xda\xed\x44\xe9\x36\x85\xdb\x2a\xae\x5f\x4a\xb7\x29\xdc\x56\xbb\xdd\x74\x94\x6e\xd3\x6e\xaa\xe6\xbd\x65\xdf\xa9\x82\xdb\x9a\xaf\x96\x3d\xdd\xa6\x70\x5b\x0b\x76\x7a\x28\xdd\xa6\x70\x5b\x8b\xd6\xa5\x95\x6e\x53\xb8\xad\x25\xbb\x77\x28\xdd\xa6\x83\x57\x24\x3b\x3d\x74\xe0\x8a\xa4\xc3\xee\x43\x3d\x9a\x73\x95\xa6\xd1\x8d\xe7\x82\x35\x23\xa5\x69\x74\xb3\x8b\x41\xcf\xd6\x8c\x74\xc3\xc5\x80\x43\x10\x49\x40\x05\xc8\x92\xe8\xd9\x5a\x83\xd2\x5a\x0a\x6b\xf5\x62\x1d\x51\x69\x2d\x55\x35\x55\xf5\x16\x5e\x75\x02\x4d\x9c\x7d\x58\x90\x4e\x21\xc2\xc5\x20\x80\x0c\x12\x9b\xe7\x7d\xd9\xed\x27\x97\x38\x47\x96\xf7\x79\x73\xe4\x01\x54\x70\x85\x69\x50\x95\x4c\x94\xef\xa1\xe6\x28\x85\xa4\x7d\x84\xb2\xab\xf3\x7d\x68\x35\x74\x20\x21\xc2\xe9\x64\xbd\x75\x8e\x72\x8f\x3e\xde\x0f\xc3\x39\xca\x42\xb4\xdc\x0f\xac\x39\xca\x0a\xf2\x51\xbf\xc9\xc2\xcf\xb1\x4e\x43\x76\xbb\x9b\x63\x23\xb2\x81\xf5\x9b\x63\x0b\x40\x1f\xf5\x9b\x6c\x06\x73\x61\xfd\x90\x16\x9b\xc1\x44\x33\xe8\xc5\x6e\xc3\x93\xcd\x60\xae\xd9\x6e\x05\xcd\xd7\xff\xe9\xa3\xf6\xbf\xfd\x5e\xfc\xfe\xfb\x6d\x7d\xbb\x5e\xf5\x74\xc3\xaf\x45\xfc\x42\xb3\x5f\x5d\xc7\x93\x7e\xff\xe5\x79\x39\x5f\x6c\x16\xfe\xfe\x13\x00\x00\xff\xff\xa9\x31\x44\x80\xa5\x0e\x00\x00"); -var _bace =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\xc1\xce\x94\x30\x10\x07\xf0\x3b\x4f\x31\xc7\xcf\xc3\x27\xb4\x50\xaa\x89\x31\x51\xf6\xb0\xc4\xec\x6a\x44\x57\x13\xe3\x81\x6d\x67\x49\x93\xa5\x34\x05\x0e\xfb\xf6\x66\xa6\xc8\x1e\x36\xb3\xfc\x4a\xff\x99\x4e\xc9\x9b\xf6\xd0\x7a\xb7\x40\xfe\x2d\x4e\xa6\xc3\x05\x6e\xce\xdb\x88\xf3\xb4\x46\x83\x70\xc5\xc1\xf9\x2c\x13\x12\xac\x33\xcb\xff\x47\x2e\x66\xec\x43\x96\xe5\xc7\x2f\xf6\xde\xbf\x7e\x56\xaf\x47\x58\x67\xdc\xb0\x69\x0f\xdd\x63\x5e\x70\x6c\xfd\x6d\x82\x32\x6d\xb6\x6b\xd8\x02\x00\xf2\xef\x38\xb8\x79\x89\x0f\x78\xf9\x64\xa7\x2b\xbe\x01\x8b\x37\xf2\xaf\xd1\x62\x74\x7e\x80\x97\xe6\xdc\x89\x9d\xbb\x35\x84\x3b\x8e\xe8\x17\x10\x6c\xe8\x2d\xd7\x2c\x6f\x4e\x7d\x38\xf7\x23\xc2\xb3\x95\x0b\x2f\xf1\xca\x05\xe3\xec\x26\x0f\x42\xbe\x2d\x0a\xf5\xf4\x1f\x8f\x80\x5b\x54\x96\xff\xfe\xd9\x1e\xe0\x8f\x00\x51\x80\x54\x4a\xca\xbf\x9b\xff\x3a\x4d\x76\x7f\x4b\xc8\xd4\xbd\x71\x36\xf6\x7e\xc0\xec\x43\x2f\xaa\xeb\x47\xd8\x8a\x28\xeb\xaa\x26\x53\x3d\x1b\x15\x51\xea\xaa\x64\x33\xc9\x4c\x32\xc5\x66\x93\x21\x59\x41\x52\x0b\x96\x5a\x92\x54\x2c\x2a\x49\x4d\xf2\x8e\xe5\x7d\x12\x4a\xaf\x24\x4b\xca\xa9\x29\x27\x75\xa0\x53\x8e\xa6\x1c\xc5\xc9\x3a\xe5\x68\xca\x51\x9c\xac\x53\x8e\xa6\x1c\xc5\xc9\x58\xb2\x50\xa1\xb3\x68\x1a\xf1\x7e\x56\xfa\x4f\x57\xbb\x0f\xdb\xac\x31\xa2\x5f\xf8\x62\x79\xa0\x34\x24\xe7\x71\xff\x72\xc2\x14\x68\x17\xff\xfe\x05\x00\x00\xff\xff\x33\xd3\x9f\xac\x65\x02\x00\x00"); -func _dcea ()(*asset ,error ){_bcfb ,_eaecg :=_ccgfd ();if _eaecg !=nil {return nil ,_eaecg ;};_bfec :=bindataFileInfo {_ag :"UniCNS-UCS2-V",_bc :631,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492690,0)};_gdbd :=&asset {_cd :_bcfb ,_dce :_bfec };return _gdbd ,nil ; -};func _ggca ()([]byte ,error ){return _dc (_addg ,"UniJISX02132004-UTF32-V")};func _dbdc ()(*asset ,error ){_fdce ,_bcfc :=_dgcf ();if _bcfc !=nil {return nil ,_bcfc ;};_efg :=bindataFileInfo {_ag :"Adobe-KR-1",_bc :773,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491408,0)}; -_bba :=&asset {_cd :_fdce ,_dce :_efg };return _bba ,nil ;};func _ccga ()([]byte ,error ){return _dc (_ffd ,"Adobe-CNS1-1")};func _ada ()([]byte ,error ){return _dc (_febdf ,"GBTpc-EUC-H")};func _ede ()([]byte ,error ){return _dc (_age ,"Adobe-Japan1-5")}; -var _agca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\xcd\xae\x3f\xcb\x92\xa6\x09\xcd\xcf\x55\xec\x21\x0c\x9a\x0c\x0f\xff\x96\x4a\x25\xd1\xd5\xaa\x56\x0d\x1a\x10\x45\x03\x12\x42\xad\x08\x0f\xf7\x22\x25\xf2\x64\xea\x64\xd6\xa0\xee\x1e\xed\xf5\x3c\xb6\x61\xa3\xd6\xf9\x8f\x96\x7c\xc5\x2f\x3c\xfc\xd3\xdc\x5e\xb3\xd7\xcc\xff\xe1\x3f\xfc\xa7\xff\xe1\x3f\xfd\xf5\x1f\xff\xed\xb7\x7f\xf8\x3f\xfd\xed\x9f\xd7\x7f\xde\xff\xf6\xdb\xf9\xc7\xbf\x7e\x7f\xdb\xff\xfa\xcf\xff\xf5\x6f\x6b\xff\xf6\xee\xff\xf2\x8f\x7f\xfd\xcb\x5f\xd2\xfd\xdb\xf7\x8f\xeb\xdf\xa2\xf8\xf3\x67\xfd\xd3\xf3\x2f\x7f\xf9\xcb\xef\xef\xff\xe7\xff\xf6\xaf\xff\xb6\xff\xe9\x3f\xfd\xf5\xfc\xf3\x6f\x99\xdf\x7d\xff\xf5\x5f\xfc\xed\x6f\xbf\xfd\xc3\xff\x79\xff\x97\x7f\xfc\xd7\x7f\xfb\xdb\x7f\xfb\xed\x7f\xf3\xbf\xff\xfe\xf9\xdd\xff\xdb\xdf\xbe\x7d\x7e\xff\xff\xff\xf1\x6f\xdf\xfe\xdb\x3f\xfe\xf5\xbf\xf8\xff\xff\xe5\x7f\xfc\xef\xd3\xff\xf2\x3f\xff\x87\xff\x7c\xff\xf1\x83\xff\xfc\x5f\xff\xe5\x5f\xfe\xdf\xfb\x9f\xf6\x5f\xff\xed\xb7\xfa\xf3\xbf\xfd\xd7\xef\xe7\xef\x5f\xfe\xe1\x3f\xfc\x4f\xcf\xbf\xfc\x1f\x9e\x7f\xda\xbf\xfd\xc3\xcf\xbb\xff\xdd\xff\xf8\xdf\xa7\xff\xee\xf7\x77\x7f\x1e\xff\x3c\xfd\xbf\xee\xbf\xfd\xeb\x3f\xfe\xf3\x5f\x7f\x1b\xff\xbb\xeb\x2a\xff\xdf\x7f\xff\x5f\xfe\xdb\xbf\xec\xdf\x6e\x6b\xf9\xbf\xff\xcf\xff\xe9\x7f\xf8\xed\xff\x91\x7e\x4b\xd7\x6f\x77\xcd\xb9\xfe\x96\xee\x74\xff\x3f\x7d\xf8\x7f\xfb\x9f\xfe\xf9\xdb\xbf\x5d\x94\x12\xdd\x59\xff\xfc\xed\x7f\xfd\x97\x67\xed\xbf\x3d\x7f\xfd\x2f\xfb\x2f\xbf\xfd\xf6\xef\xae\xeb\xba\xfe\xfd\x6f\xff\xee\x3f\xfe\xc7\xff\xf8\x1f\xff\xfd\xef\xed\xfb\xff\xfb\xc5\x5f\xd2\x75\xf1\xea\x7b\xd6\xff\xeb\xf9\xdb\x5f\x7c\xe1\xb7\x7f\x77\xce\xf9\xfe\xfd\xef\xc5\x96\xff\xfd\x4f\x3d\x6f\xa7\x58\x7e\x8a\xf7\x9a\x14\xab\x45\x9f\x36\x7e\xfc\x0c\x8a\xfd\xf7\x62\xbe\xae\x4c\x71\x58\xac\x14\xe7\xef\xc5\xfb\x4a\x85\xe2\xc3\x77\xeb\xa6\xf8\xfa\xb4\x51\x5c\x3f\xc5\x7b\x9f\x9f\x62\x3f\xb6\x2a\xfd\x14\xc7\x45\xf1\xa3\x19\x23\x51\x3c\x16\x6f\xde\xcd\x54\x35\x2a\xc5\xe4\xbb\x8d\xe2\x45\xcd\xa3\x53\xbc\x1f\x8a\xc3\x22\xfd\x1d\xd3\x1f\xd3\xc1\xf1\x58\xb3\x1f\x7a\xad\xd9\x77\x6d\xf3\x43\x7f\xc7\x67\x55\x16\xb7\xc5\x8b\xe2\x4f\x8f\xee\x9c\xee\x9f\xe2\xbc\x78\x3a\xf9\xee\x4c\xfe\xf8\xa5\x68\x8f\x6e\xc6\x6a\x66\x8a\x8d\x1e\xcd\x42\xb1\x2c\x8a\xf6\xb7\xd0\xe6\x69\x7f\x33\xf3\x3b\xed\x6f\xb2\x68\x7f\x1b\xad\x9a\xb6\x39\xf9\x21\xdb\x9c\xe9\xc2\x3c\x16\x99\xc1\x87\x36\xb7\x42\x17\x9e\x64\x91\xaa\x9e\xdb\x29\xb3\x48\xab\x92\x6b\xe3\x69\xcc\xfe\x65\x55\xdd\x85\x64\x91\x71\xbe\xb2\xef\xbe\x3e\x65\xd8\x1f\xc6\x39\xb9\x54\x1e\xda\xdc\x2e\x8b\xdb\x22\x6d\x7e\x68\x73\x5d\x8c\xe4\x7b\x59\x64\xf6\xdf\x64\x91\xfe\xbe\xb7\x45\x3e\xf4\x66\x8b\xd4\xfc\x32\xce\xf5\x61\xd8\xdf\x6a\x91\x46\xbe\x8c\x73\x7d\xe9\xe0\xdb\x2d\x32\x38\xef\xb0\x47\x36\x83\x75\x95\xa6\x4f\xed\xd1\xf4\xdd\x8f\x8d\x93\x7e\x8a\xe9\x9a\x8c\xd5\xfe\xe9\x51\x62\x87\x9e\xb3\x7f\x9e\xfe\x3e\xaf\x8c\xe4\xa2\xb8\xdd\x74\x37\xc5\x63\xf1\xa7\xcd\x77\xb9\xfd\xb1\x45\xab\x4a\x3f\xa3\x71\x57\x26\x65\x67\x9e\x56\xba\x70\xdd\x3f\xdd\xff\x7d\x89\xfc\x3e\x0b\xc5\x77\xdd\x74\xa5\x52\x9c\x3f\x5d\xb8\x92\x4f\x59\x48\xd7\xb5\x2d\x6e\x9e\x32\xce\xf7\x74\x3b\xef\x9f\xa1\xbb\x59\x48\x57\xa2\xbf\xf7\xe3\x76\xde\x93\xe2\xed\xd3\x97\xa2\x02\x6a\x0f\x8a\x08\xa8\x74\xfb\xb4\xfa\xf4\xa3\x88\x80\x4a\x9f\x1f\x72\x99\x6d\xc6\xea\x19\x3c\x2d\xfe\x78\x2a\x46\x6c\xc6\xe3\xbb\x8c\x64\x2c\xc2\x63\xd1\xfe\x36\xbf\x6b\x7f\xcf\x43\xd1\xfe\x7e\x85\xa2\xfd\x3d\xf4\xe8\xb5\xbf\x1f\x03\xcb\x22\xbc\xd2\x47\x8f\x5e\xfb\xfb\x51\x15\x8b\xf0\x4a\x1f\x6d\x66\x11\x5e\xd7\xb1\x18\xfd\xf5\xc7\xf4\xf7\xfe\x7d\x52\xf6\x5f\x3f\xa5\xfc\xff\x8a\xd8\xbf\x59\x9f\x69\x67\xa6\xfe\x8d\xa1\xa0\xc1\xac\xcf\x2b\x15\x9b\xe4\x50\x44\xfb\x19\x0a\xe5\xcf\xbd\x7f\xda\xbf\xfb\xfa\x19\xc6\x3c\xfe\xb4\x12\xf2\xf8\xd3\x4a\xc8\xe3\x4f\x2b\x21\x8f\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\xfc\xfc\x69\x25\xe4\xe7\x4f\x2b\x21\x3f\x7f\x5a\x09\xf9\xf9\xd3\x4a\xc8\xcf\x9f\x56\x42\x7e\xfe\xb4\x12\xf2\xf3\xff\xb3\x12\x7e\x2f\xfe\x69\xba\xf3\xf3\xa7\xe9\xce\xcf\x9f\xa6\x3b\x3f\x7f\x9a\xee\xfc\xfc\x69\xba\x33\x2b\xbf\xd6\xe2\x87\x7e\xfa\x3b\x5b\xd4\xfc\xd3\xdf\xda\x17\x43\xc7\xca\x6f\xf9\xa6\x66\x56\x7e\x2d\xce\x3e\x2b\xbf\xd6\x8b\x0f\xb1\xf2\x6b\x59\xcc\x11\x2b\xbf\xb7\xc9\x77\x59\xf9\xbd\x71\xcc\x65\x56\xfe\xa8\xd9\xe2\x4f\x7f\x7b\xdf\xd6\xfc\xd3\xdf\x71\x77\x8b\x3f\xfd\xed\x63\x30\xbf\x2c\xef\x7e\x67\x6b\x7e\xe8\xc2\xb4\x91\x3f\xfd\x9d\x3d\x7e\xfc\xd3\xdf\xb6\xa2\x0b\x3f\xfd\xad\xef\xb0\xcd\x3f\xfd\x2d\xc7\xe9\x7e\xed\xaf\x3d\x5a\x3f\xfd\x6d\x6d\x76\x8a\xf4\x77\xbd\x54\xb5\x7e\xfa\x3b\x62\xa9\xac\x9f\xfe\xb6\xe1\x2c\xac\xc2\xd3\x87\x2e\xac\x4a\x55\x08\xf6\xbc\xe8\x6f\x73\x24\xd7\x4f\x7f\x6b\x4c\xd9\xfa\xe9\x6f\xab\x95\x75\xb5\xe8\x6f\x7a\x18\xab\xf5\xd3\xdf\x7e\x0e\xdd\x5f\x3f\xfd\x1d\x63\xb0\x18\x16\xf3\x7b\xbd\x7e\x88\xfe\xce\x56\x29\xfe\xf4\xb7\xa5\x65\x9b\xe9\xef\xe1\xd4\xcb\xdf\xc5\xb0\x3f\x0c\xdd\x97\x18\x0d\xa7\xec\xfb\xe9\x6f\xbb\x2b\x35\x7f\x3f\xfd\xad\xd9\x1d\xfa\x15\x66\xff\x66\xac\xbe\x9f\xfe\xf6\x97\x63\x3d\x7f\x8d\x0e\xba\xcb\xbe\x9f\xfe\xf6\x8a\xc2\x90\xbf\x9f\xfe\xd6\xef\x58\x9c\x7c\xc8\x4d\xf7\xfd\xf4\x77\x7c\xcb\x77\x9d\xdf\x6e\xcd\xcc\xef\x3d\xe8\xd1\xf7\x31\xec\x89\x91\xfc\x5c\xcf\xd5\x46\x1e\xde\xcd\xcc\xd1\xbe\x18\xc9\x46\x8f\x90\x84\xfd\x8e\xa7\x37\x73\xd4\x79\x77\x33\xbf\x1d\xdd\x23\x6f\xd7\xb3\x4b\x74\x33\xbf\xa5\xd0\xaa\xdd\x58\x57\x9d\xbd\xb0\x59\xcf\x1f\xca\x64\xde\xc3\x0e\x32\xb0\x9b\xf9\x7d\x52\xff\x85\xd8\xcf\xfb\x61\x61\xb8\xa7\xf6\xcf\x50\xf4\x98\x82\xcd\x50\x94\xdb\x6a\x3f\xbe\xd2\x99\xdc\xbd\x99\xdc\x78\xca\x50\x8c\x41\x55\x87\xa5\xde\x3b\xbd\x3b\x0e\x85\x8b\xf9\x38\xf5\x8d\xce\x1e\x86\xe2\x5e\x54\x75\x0a\x9d\x45\xb1\xcc\x87\xa9\x2f\x68\x38\xf9\x30\xf5\x59\x81\x73\x58\xea\xbf\xeb\x14\x3f\x45\xb6\xf6\x76\x41\x9e\x9f\xa1\x98\xbf\x2b\x98\x3f\xc5\x9f\xfe\xd6\x7d\xfb\xe3\x97\x2d\x36\x7c\x4a\x7f\xe7\xb4\x19\x4c\x7d\x1a\x8c\xf9\xd9\xd4\xfc\xd9\x41\x96\xfa\xe0\x14\x28\xe0\xa6\x3e\x56\xa5\xf8\xd3\xdf\xd1\xc6\xa2\xf8\xd3\xdf\x59\x11\xbf\xe5\x62\xa9\x5f\x88\x94\x72\xb1\xb5\xd7\x5d\x28\x22\xca\xee\x6f\x53\x6c\xac\xc0\x28\xd2\xdf\x7c\xf9\xa1\x9f\xfe\x8e\x99\x6c\xc6\x64\x34\x9a\x4f\x59\xea\x75\x58\x33\x4b\xbd\x21\x16\xca\xb5\x18\xe7\xcf\x66\xb0\xb5\xc7\x6d\x23\x7f\xfa\x3b\x67\xb7\x78\x10\x74\x93\x1f\x27\xe6\xf7\x06\x82\x95\xc4\xd6\x16\xec\x94\xc4\xfc\xb6\x97\xef\xa6\x4c\x07\x3b\xdf\x4d\x3f\xfd\x9d\xcb\xee\x27\xe6\xf7\x66\x6b\x97\xd4\x58\x39\xed\x50\x64\x6b\x8f\xe9\x87\x58\xea\x8a\xa3\x92\xe8\x6f\x76\x60\x13\xf3\x9b\x53\xa7\x88\x28\x3b\x63\x50\x5c\x8c\x24\xcb\xac\x24\xe6\xf7\x4b\x36\x83\xfe\x96\xc7\xaa\xe8\xef\x75\xf1\xf4\x66\x7e\xef\x45\x55\x37\xa2\x7b\x5e\x7c\xe8\xa6\xbf\xd7\x7e\x29\x72\x54\x25\x84\x46\xb9\x99\xdf\xf1\xf8\xb4\xf2\x6e\x65\x70\x6e\xe6\x57\x6c\xfb\xbb\xbc\xfb\xe9\x3e\xdb\xaa\xdc\xac\xe7\xf7\xf6\xbb\xf4\xf7\xbb\xad\x19\xd1\xbd\x8f\xcd\x60\xff\xd6\xdb\x36\x7b\x54\x1d\x26\xe5\xa6\xbf\xbb\x31\xce\x37\xfb\xf7\x1c\x6b\x66\xff\x5e\x1c\xa0\x25\xff\xf4\x77\x1e\x10\x4a\xc9\xcc\xef\x8b\x08\x2d\x99\xf5\x1c\x1d\xcc\xf4\xf7\x4d\x3e\x45\x74\x9f\x6e\x55\xcc\xef\x00\xaf\x95\x4c\x7f\x0b\x4a\x4e\xc9\x88\xb2\x0a\x20\x2d\x79\xf8\x21\xda\x9c\xa7\x45\x3f\xf4\x58\xf4\xdd\x97\xed\x8c\x6e\x59\x32\x47\xd5\x1e\x7e\xe8\x63\x34\x5c\xed\x40\xa1\x59\xb7\x1f\x3a\x9e\x89\x14\x0b\xaa\xc8\xb9\x1e\x8a\xcc\xef\x71\x3b\x03\x94\xc6\x99\xcc\x11\x40\xa9\x8e\xc5\x77\x0b\xf3\x9b\x16\x6b\xb2\x54\x46\xb2\xfb\xe3\xc6\xa6\xab\x8c\x64\xe9\x1c\x19\x8f\xdf\x65\xff\x9e\x97\x46\x16\x44\xf7\x01\xcc\x96\xe2\x51\xe5\x62\x28\xc8\xab\xbb\xf8\x5d\xf7\xef\xeb\x87\xd8\xbf\xbf\x9f\x7e\x7f\x5f\xec\x97\xb2\xdd\x35\x88\x94\x8a\xb0\x3a\xae\xcf\xca\xe4\x5e\x68\xbf\xa5\xaa\x87\xb8\xd4\xab\x93\xdb\x18\xa8\x8a\xb0\x4a\x28\x4b\x05\xcc\x38\x46\xb3\x48\x67\x97\xf3\x55\x99\xdc\x34\xfc\x90\xc2\xea\xb6\xc8\x62\x6e\xb7\x35\xbf\x7e\x88\xbe\x57\x16\x73\x55\xa2\x56\x0e\xa3\xa3\xf8\xad\xe8\x21\x7b\xfb\x5d\x85\xd5\x4b\x07\xc1\xaa\xad\x70\xfa\x94\xc6\xe4\xa6\xce\xe4\x36\xf4\xcc\x84\x69\xa2\xb4\x38\x97\x59\xcc\x98\xbc\xca\x76\xa9\x63\xf2\xea\x73\x59\x6c\x0a\x49\x5a\x85\xc9\xab\x5f\xe8\x3f\x05\x93\x57\xaf\xae\x22\x4c\x5e\x75\xa3\x69\x14\x4c\x5e\xfd\x77\x05\xf3\xa7\x88\xb0\xca\xdb\x66\x78\xf8\xba\x4e\x9a\x87\xaf\x1d\x6c\x0a\xab\xd7\x9a\x59\xcc\x6b\x33\x1a\xfd\x72\x7e\x19\xc9\x4e\x7f\x6f\x94\xf0\xd2\x11\x56\x05\x93\x57\xe9\x99\xaa\x5c\xbd\x1d\x3d\xe4\x9d\x74\xbf\x57\xd6\xd8\xed\x8f\x39\x7c\x37\x98\xab\x74\xf5\x6a\x6c\x6b\xa5\xb3\x98\x35\xc5\x94\x3e\x3d\x40\x6d\x06\x9b\x77\x7b\xcc\x75\x16\xf3\x5a\x3e\xfd\xe9\xef\x7c\xba\x8d\xa4\xbf\xb9\xd2\xc1\x1e\x2b\x96\x71\xc6\x00\x58\x0b\xaa\x72\xc1\x00\x38\x86\xa7\x1e\xb6\x88\xda\x1d\x49\x0c\x80\x65\x2b\xc9\x47\x56\x68\xf0\xa1\x51\x10\x29\xf1\x2e\xf3\xbb\xc0\x2f\x05\xf3\xe0\x14\x54\x16\xcc\x83\x4d\xb3\x64\xc1\x3c\xd8\xca\xb6\xc8\xe6\xcd\x89\x46\x62\x1e\x1c\x21\x25\x30\x0f\xb6\x5e\x6d\x95\x7a\xa6\xbb\x6c\x78\x18\xdd\xcc\x02\xb8\xb8\x77\x17\x3f\xb8\x78\x6c\xc5\x3e\xb8\x78\x26\x0c\x53\x65\x2a\xac\x9a\x4f\x11\x56\x19\x6d\xb0\x80\x8b\x47\xf5\x58\x07\x17\xcf\x99\x68\x06\xb8\xb8\x66\x67\x1f\x5c\x3c\xda\x64\x34\xc0\xc5\xed\x75\xc3\x4e\x0f\x5f\x45\x28\xb8\xb8\xc5\xe0\x80\x8b\x7b\xc8\x3d\x70\xf1\xb8\x97\x3f\x5e\x2e\x15\x9b\xf1\x31\x29\x1f\xb3\x00\x2e\x6e\xcb\x33\x02\x5c\x3c\xb4\xcb\x95\xc7\xfd\x6b\x55\xe0\xe2\xbe\x3c\x14\xc0\xc5\x6d\x1e\x9f\xb2\x7f\x43\xc9\x01\x17\x8f\x5c\x2c\xda\x5f\x3b\x08\x2e\xee\x2f\xc8\xa8\x80\x8b\xcb\xb1\x19\xe0\xe2\x9a\x94\x39\xe0\xe2\xf6\x15\x46\x03\x5c\x5c\x17\x06\xcf\x02\x2e\x1e\xbb\xd9\x0c\xe6\x37\x2b\xa0\x1e\x85\xb3\x72\x03\x5c\x3c\xb2\x82\x1d\x5c\x3c\xb2\xfb\xe8\x55\x79\xc6\xc4\x57\xc0\xc5\x7d\xa8\x4d\xbd\xee\x5f\x4f\x4c\x70\x71\x7d\xbf\xf3\x2b\xb1\x0f\x64\xae\xcb\xad\x0d\x64\xae\x1f\x18\xb9\x00\x99\xc7\xbb\xe9\x3b\x90\xb9\xdd\xcb\x26\x31\xf5\xfd\xf8\x2e\x5b\x7b\x75\x36\x20\x90\xb9\xfd\xae\x05\xff\x14\x59\xea\xbf\x23\xe9\x9f\x22\x53\xdf\x9d\x02\x20\xf3\x9c\x2e\x2a\x20\xf3\x58\xea\x6c\x40\xe6\x7e\x30\x8c\x17\x20\xf3\x2c\x58\x57\x0a\x90\xb9\x6c\x27\x08\xc8\x3c\x9b\x8b\x19\xc8\x3c\x07\x30\xb0\x00\x99\x5b\xc3\x16\x5a\x80\xcc\x3d\xbb\x79\x81\xcc\xb5\x67\x1a\x29\x64\x5e\x6a\x83\x40\xe6\xba\xc1\x6e\x05\xc8\x3c\xab\x6b\x1b\xc8\x5c\x63\xa9\x0b\x99\xaf\xc7\x66\xa0\x87\xe4\x61\x9b\x11\x65\xd5\xd3\x16\xc8\xdc\x6b\x61\x72\x81\xcc\xb5\xba\x2f\x80\xcc\xf5\x72\xb7\x02\x99\xc7\x37\xf8\x71\x40\x66\xf5\xf9\x4f\xd1\x0d\xf6\x29\x40\xe6\xd6\xed\x02\x90\xb9\xb6\x4c\x33\x80\xcc\xed\x34\x7f\xdc\x9d\x7d\x9f\xd2\xdf\x92\xfd\x10\xa2\xec\x9a\x3e\x45\x94\x1d\x55\xc7\x4f\x3d\x44\x15\xfd\x8b\xa3\xca\x56\x29\xba\x1f\xb6\xb6\x90\xf9\x74\xa6\xfb\xd3\x44\xa0\x4e\x0e\x64\x9e\x97\xeb\x0a\xc8\x3c\x12\x58\xaf\x6c\xf5\x2e\x8f\x66\x20\x73\x5d\xc9\x77\x9d\x5f\x95\x0d\x20\x73\xd5\x8e\x51\x80\xcc\x6d\x61\x99\x29\x40\xe6\xd9\xd4\x01\x80\xcc\xe3\x1b\xfe\x78\x7a\x82\xb0\x54\xc4\xc5\x45\xd0\x21\x2e\x9e\xc7\x66\x30\xbf\x1d\x63\x4b\x11\x17\x3f\xd5\x0f\x21\xca\x6e\xd7\xe4\xf6\xa8\xf2\xbb\xe0\xe2\xb2\xab\x45\xb6\xf6\x73\x31\x38\x27\x70\x04\x55\x89\x8b\x8f\xd3\x0d\x2e\x1e\x2f\x06\xc0\x02\x2e\x6e\xb7\x8b\xf0\x78\x54\xe1\xac\x29\xe0\xe2\xf9\xb8\xcb\xc4\xc5\x73\x5b\x15\xaa\x48\xf1\x10\x04\x17\xf7\xea\x2c\x88\x8b\xb3\x7a\xf5\x71\x3d\xab\x02\x81\x8b\xdb\xc2\x49\x54\x8e\x38\xe2\xb3\x19\xf4\xf7\xa0\x21\x54\x70\xf1\x7c\x30\x5c\x54\x71\xb1\x8e\x8f\x2a\x2e\x3e\x74\xa1\x82\x8b\x8b\x6b\xa3\x5e\xca\x2b\x76\x68\x15\x17\x7f\xad\x50\x44\x74\xab\xa2\x57\x70\x71\xab\x8f\x45\xfa\x7b\xbd\x1f\x45\xfa\x9b\x8a\x4f\xd9\xbf\x09\x14\x59\xc1\xc5\xa3\x35\x5b\x45\x7f\x3f\x34\xde\x2a\x2e\x7e\x1f\xbb\xe0\xfc\x46\xcd\xe0\xa6\xc4\xca\xa9\xe0\xe2\x5e\x3b\x8d\x04\x17\x8f\x7d\xf9\x14\x13\xd0\x83\x70\xab\xe0\xe2\xa6\x6d\xbc\x26\x55\x2f\x60\x72\x05\x17\x97\xcd\x29\x5f\xc1\xc5\x7d\x83\xd7\xaa\xb8\xb8\xff\x2e\x19\xfe\xae\xd8\xaf\x40\xe6\xb2\x93\x5f\x51\x2b\xe3\x10\xaf\x42\x66\x3d\x80\x15\xc8\x5c\x13\x9a\x55\x05\x32\xb7\xa7\xfb\xae\xa7\xd8\x63\x1b\x98\x7a\x01\x57\x05\x32\xcf\x8a\x17\xaf\x02\x99\x67\xe3\x10\xaf\x40\xe6\xb6\x51\x87\xea\xad\xe8\x76\x36\x81\xcc\x6d\xa2\xb2\x56\x20\x73\x1f\x78\x0f\xab\x90\x59\xcf\x72\xbd\xb5\xee\xe2\xf0\xad\x42\xe6\x92\xfc\xb1\x26\x11\xb4\xb2\x2a\x64\x9e\xd1\x2a\xb6\x76\x46\xc2\x54\x20\x73\xfd\xb0\x81\x54\x20\x73\x7f\x5c\x90\x40\xe6\x36\xb3\x4f\xb5\xee\x3a\x7d\x40\xe6\x71\x67\xe6\x0b\xc8\x5c\x2b\x50\xa8\x66\x8f\x2a\xc4\x6f\x05\x32\xf7\x8a\xfd\xb6\x0a\x99\x1f\x4c\xc1\x55\xc8\xbc\x9b\x3f\xa6\xbf\x1b\xcd\xb9\x02\x99\x67\xc5\x44\x50\xb3\x26\x2f\xb7\x58\x0e\xd1\x6d\x33\x14\xdd\xf1\xae\xfd\x05\x74\x54\x20\xf3\xac\x28\xe1\x55\xc8\xdc\x87\xdf\xa5\xbf\x0d\xbb\x62\x05\x32\xb7\x99\xfd\xae\x4b\xdd\xe9\x16\x32\x57\xb7\x09\x90\xb9\x7d\x78\x49\x2a\x90\xb9\xef\x87\x77\x81\xcc\x63\xa0\xdf\x56\x20\x73\xbb\xb3\x3f\xae\xae\x6d\x06\x16\xc8\xdc\x2b\xe8\xa6\x02\x99\x87\x5e\x83\x5a\xb4\xde\xbb\x90\x80\xcc\xb3\x61\xd5\xa9\x42\xe6\xc3\x99\x58\x85\xcc\xfa\x32\x2a\x90\xb9\x97\x63\x9b\xd1\xba\x5f\x14\xcb\x0a\x2e\x6e\xaf\x6b\xb2\x20\xca\x6e\xe5\x4f\x05\x65\x7c\x28\xf0\xb5\x6a\x12\xe1\xa4\xae\x55\xeb\x7d\xf3\xc7\xf4\xb7\xb8\x71\x44\xcd\xed\x58\x54\x0b\xc5\xe4\x55\x41\xcd\x65\x73\xa0\x54\x50\x73\x11\x64\xd5\xaa\x16\xfa\xf9\x2e\xf3\xbb\x5c\x39\xa0\xe6\x29\xa6\xae\xa0\xe6\xbe\x9c\x94\xaa\x89\x00\xe8\x57\xab\x26\x20\x97\x37\xa8\xb9\xbf\xdb\x9a\x8f\x6b\x92\x91\x0c\xd4\xdc\xa8\x4a\xd4\xfc\x61\xe4\xa9\xa2\xe6\xeb\xf1\xc7\xf4\x37\xd9\xa3\xa6\x35\x5b\xc9\x26\x6a\x5e\x58\x39\x2a\xa8\xb9\x7d\xdb\x77\x11\x65\x07\xbc\x56\x9b\xaa\x66\xf5\x5d\xf6\xef\xcb\x89\x59\x41\xcd\xf5\x55\x0c\x82\x9a\xfb\xc0\x98\x5f\xff\x40\xcd\x8c\xa4\xa8\xb9\xe0\x40\xac\xa0\xe6\x96\x1f\xe6\xa8\x85\x37\x8a\x77\x41\xcd\xb3\x72\xcc\x55\x50\x73\x2b\x18\xd3\x6a\x0f\x55\x84\x9a\xbb\x26\x2f\x8c\x78\x55\xd4\xdc\x6e\xdf\xf5\x68\xae\x7c\x57\xd4\x3c\xf1\x65\x54\x50\x73\xd5\xb6\x5f\xbb\x26\x2f\xc5\x3e\xa8\xb9\x5e\x8f\xef\x3e\xee\x14\x3f\xa4\xc9\xeb\x6e\xbf\x12\xfb\x00\xea\xf6\x0e\xbf\x22\xe0\x52\xee\x01\xa8\xc7\x97\x6d\x12\xa2\x6c\xb8\x8a\x86\xd6\x30\xd4\xce\x0a\xa0\x9e\x17\x66\xf3\x3a\xd4\x52\x14\x83\x00\xea\x71\x29\x24\x05\xd4\xb7\xe7\xf2\xf0\x14\x53\x3a\x0d\xad\xf7\xd5\xa7\x68\x29\x97\xb3\x29\xa0\xce\xaf\x45\x8e\xaa\x0b\x0c\x52\x87\xde\x0a\x05\xbb\x80\x7a\x45\xab\x5c\xea\x8e\x2a\x80\xba\x5d\xdb\xa7\xdb\x25\xc7\xa2\x12\x50\xbf\x18\xd5\xeb\xb4\xbf\x36\x72\x6a\xbd\x77\x51\x01\xa8\xeb\x71\x36\x01\xd4\x2d\xbb\xf1\x01\xd4\x35\x79\x72\x01\xa8\x47\x6e\x3e\x65\xa9\x8f\xe6\xbb\x8a\x6e\x80\x52\x15\x50\xe7\x78\x4a\x7f\xb7\xc2\x6a\x8a\x32\xb0\xed\x57\x00\x75\x5d\xd3\x56\x21\xca\x66\x67\x06\xa7\x5a\x0a\xfe\xdf\x0a\xa0\xae\x77\xf6\x43\x6e\x6d\xf5\x2e\x01\xf5\xf5\xf2\xe3\xc7\xf9\xb5\x83\x8f\x8e\x2a\x8f\x57\x00\x75\x3d\xaf\x45\x0d\x80\xca\x1f\x00\x75\x6f\xe8\xa8\x15\x40\x3d\xb6\xea\xd0\xa3\x41\x0c\xa4\x50\x01\xd4\xbd\x75\x9b\x81\x28\x7b\x01\x86\x15\x40\xdd\xbb\xdb\xf3\x09\x55\xc4\x56\x61\x20\xba\xa6\xc5\xf0\x56\xf8\x5d\x8f\xe6\xc2\x84\xea\x68\xde\x28\xb4\x15\x40\x3d\x0e\xde\xf0\x0a\xa0\x6e\x15\x47\x64\x05\x50\xf7\x57\x79\xab\xa3\xf9\x5e\xbe\xcb\x7a\xfe\x1e\x8b\xf4\x57\x75\xb7\x82\x9a\xeb\xe3\xba\x0a\xd4\xec\xc9\xf5\x8a\x22\xa7\x45\xb6\x76\x77\x52\x40\xcd\xa3\x78\xf8\x82\x9a\xfb\x7b\xdb\x2a\xad\xd9\x2a\x66\x3a\x9a\x25\xe7\x54\x50\xf3\x8c\xb5\x11\xa8\x59\xe1\x2c\x6a\x1e\xaa\xac\x4b\xc7\xab\x1f\x02\x35\xb7\x50\x2c\x41\xcd\x7d\xa8\xb7\x80\x9a\xfb\xa5\xac\x06\x35\xd7\xd4\x7d\x8a\x2a\xd2\xb1\x66\x57\x51\x73\x7f\x2c\x6a\xf0\x04\x45\x56\x50\x73\x39\x85\x29\xd3\xd1\x5c\xb3\x55\x29\xca\x5c\x48\xa0\xe6\x76\xb9\xbb\xff\x70\x34\xdb\x05\xf7\xef\xb2\xc8\xfc\xbe\x98\xbe\xeb\xa7\xf7\x0d\xac\x57\x41\xcd\x35\xbb\x17\x3e\x55\x4d\x7c\x0a\x55\x47\x73\x72\x77\xeb\x68\xbe\x3d\xaa\x40\xcd\x2d\x47\x55\xcc\x6f\xc1\x2f\x50\x41\xcd\xb3\xb8\x08\x41\xcd\x63\x5d\x16\xd9\xbf\x9f\xaa\x08\xa8\xb9\x87\x7e\xf8\x79\x54\x4d\xdb\xac\x55\x44\xc5\x4c\x47\xf3\x51\x2d\xff\xb4\x8a\x5c\x16\x51\x45\x7e\x8c\xc3\x7f\x5f\xec\x6f\x01\xa6\xdd\xd1\x07\xdd\x54\x1d\x01\xd4\x35\x2b\x15\xb7\x06\x04\x3b\x0b\xa0\x9e\xc3\x26\x01\xa8\xe7\xb9\xfc\xb1\x5a\xa8\x07\x22\x80\xba\xbe\x93\x91\x11\x50\xbf\x0f\x6b\x0c\x40\x5d\xb6\xfa\x1e\x80\xba\x6c\x4c\xa3\x75\xbb\xb5\x55\x1e\x00\xd4\xa3\x28\x06\x05\xd4\xfa\x53\xea\x56\x94\xa9\xfc\x6f\x1d\xaf\x40\xe6\x2a\xa0\x0e\x71\x04\xa0\x6e\x97\x50\xee\x84\x6d\xdf\x22\xa2\xfb\x03\x23\xd7\x13\xa2\x9b\x66\x04\xa0\x9e\x74\x1f\x40\xdd\x6a\xd4\xac\x01\x41\xc1\x7e\x9c\x7a\x8f\x9b\x70\x34\x27\x7f\xec\x52\x87\xba\x53\x01\xd4\xf3\xc2\x44\x59\x01\xd4\xbd\xdb\x5f\x01\xf5\x8b\xa9\xb0\xea\x68\x96\x81\x50\x01\xd4\xfd\x46\x59\x6a\x00\xea\xf1\x9e\x97\x22\x4b\x7d\xb0\xe3\x1a\x80\xba\x77\x74\x89\x06\xa0\x1e\x5f\xf1\x5d\x0d\x44\xd5\x22\xf3\x5b\x01\x59\x2d\x1c\xcd\x4c\x68\xd3\xd1\xbc\x71\x9d\x37\x00\x75\xdb\x9c\x7a\x4d\x40\x3d\x31\x10\x35\x00\x75\x7f\x58\x66\x0d\x40\xdd\x3b\x8b\xb9\x01\xa8\x67\xcd\xb6\xd9\xfe\xbe\xb6\x99\xad\x5d\x1f\x7f\xac\x28\x63\xd5\x35\x00\x75\x1d\x28\x96\x2d\xe9\xbb\x41\x39\x6c\x29\x0c\x80\x7c\x37\x69\x0b\xc5\xf6\xdb\x00\xd4\x75\x3c\x16\x11\x65\x05\x1c\xd1\x92\x47\x55\xa7\x0b\x49\x03\x42\xf3\x43\xc3\xbd\x60\xcd\xf4\xb7\x61\x3f\x69\xa0\xe6\x59\xf0\x86\x37\x50\x73\x6f\xc7\x36\x7b\x54\x15\x1b\xa9\x41\x0c\xdc\xd4\x40\xcd\xb5\x2c\x3f\xc4\xd6\x9e\xd0\x86\x1b\xa8\xb9\xce\x6c\x51\x5f\x06\x87\x7e\x03\x35\x8f\x8d\xe1\xa2\x89\x9a\xbb\xb3\xaf\xa3\xf9\x3b\xbe\x2b\x91\x20\x9e\x22\xca\xf4\x1e\x36\x51\xf3\x05\xe6\x6a\xa0\xe6\x3a\x92\x3f\x46\x94\x45\x8f\x6e\x6d\xdd\x98\xfa\x1b\xa8\x79\xee\xe2\x8f\x03\x65\x30\x38\xa0\xe6\x39\x1c\x1c\x1d\xcd\x2f\x07\x4a\x03\x35\xd7\x07\x8c\xd9\xb2\xaa\x08\x32\xa7\x65\x45\x37\xea\x44\xcb\x1a\x3c\xf1\xaf\x35\x50\xf3\xbc\x0a\x93\x02\x6a\x9e\x09\x12\x54\x03\x35\xcf\xe9\x94\x81\x9a\xdb\x85\x5b\xa4\xe9\x68\xbe\x2e\xab\x12\x55\x65\x7f\xac\xaa\x09\x20\x6d\xd9\xfe\x26\x9b\xf1\x5a\xb3\x6d\xe6\xa8\xfa\xb0\xd9\xb6\xac\x6a\x3d\xac\x39\x54\x6b\x06\x36\x2b\xba\x81\x6f\xad\xc8\x11\x42\x5d\x6c\xa0\xe6\xfe\xda\x23\x50\x73\x39\x98\x32\x1a\xa8\xb9\xec\xf2\x2b\xdb\x7e\x03\x50\xcf\x76\xf9\x22\xa2\x6c\x71\xe4\x35\x01\x75\xfe\x7c\xaa\xcf\x1d\x33\x63\x2b\x6a\x29\x6e\x31\x7d\xd0\xb5\xd9\xc2\xa0\x87\xb1\x02\x05\xd4\xcf\xe5\x53\x45\x99\xeb\x04\x40\x3d\x8b\x62\xa1\xc8\x99\x71\xc9\x09\xa8\x13\xca\x52\x03\x50\x77\x4f\xfc\x56\x9d\x7a\xc0\x78\x13\x50\x1f\x28\x07\x4d\x40\x9d\x39\x6a\x5b\x75\xa9\x03\xb8\x5a\x95\x43\x82\xb5\xa1\x55\xdd\xb2\xcd\xaa\xba\xa3\x41\x17\x04\xd4\x1d\x06\x51\x03\x50\x8f\xfb\xb5\x66\x51\x86\xcb\xb5\x86\x6d\xdf\x1f\xeb\xb6\x73\xd9\xd4\xa0\x3b\xd2\x5f\x00\x75\x9d\x1c\x55\x0d\x40\x5d\xf6\xe1\xc7\x4d\xd1\xfd\x5a\x64\xea\x37\x5e\x92\x06\xa0\x6e\x35\x33\x92\x02\xea\x8c\xe3\xa3\x01\xa8\x67\xaf\x3e\x45\x94\x55\x0e\xa3\xa6\x1b\x7a\x7c\x3e\x75\xa9\x63\x0b\x6d\x00\xea\x9a\x6f\x3f\x34\x3d\x41\x18\x1c\x01\x75\x01\xcd\x35\xdd\xd0\x57\xb4\x4a\x2d\x74\xda\x66\x6d\xbf\x00\xb4\xd6\x62\xa9\x33\x56\x4d\x83\x18\xc7\x7a\x13\x50\x8b\x8c\x9a\x6e\xe8\xe2\x94\xe9\x86\x5e\x68\xdd\x0d\x40\x5d\x65\x01\x35\x01\xf5\x06\x74\x34\x00\x75\xed\x95\x66\x00\xa8\x7b\x52\x66\x76\xe7\x17\xee\x5c\x03\x50\x77\x2d\xff\x4d\x40\x3d\x8b\x1f\x52\x15\xb1\xfb\x02\xea\xe3\x1c\x89\x9a\x13\xb0\xa2\x81\x9a\xfb\x72\xf6\x41\xcd\x65\xbb\xb5\x75\x43\x2f\x74\xad\x36\x74\xdb\xa1\x0c\x37\x50\xf3\xe8\x4a\x27\x50\x73\x5d\xca\x5b\x50\xf3\xac\x97\x3f\x56\xf5\xc2\x04\xd4\x74\x43\x57\xd7\x33\xa8\xb9\xab\x3f\xb4\x40\xcd\xb7\x35\x2b\xca\xe2\xc7\xc1\x21\xf1\xc7\x8f\xab\xce\xe2\xeb\x68\x30\x38\xa0\xe6\x9a\x3c\xd7\x40\xcd\xe5\x54\x5b\xe5\x51\x05\xe7\xbf\x0d\x8f\x2a\x0c\x26\x0d\xd4\xdc\x2a\x08\xb4\x89\x9a\x8d\xda\x68\xa2\xe6\x57\x99\x29\x6a\xbe\x95\xf3\x33\xac\x04\x74\x41\xd4\x7c\x26\x83\x33\xa5\x19\x78\xbe\xe8\x86\x5e\x9e\xf2\x33\x38\x51\x56\x25\xca\xb8\x7c\xca\xfc\x1e\x54\xaf\x36\x75\xbb\xa3\x48\xb7\xa9\xe8\xc6\x0b\xd6\x40\xcd\xed\x73\x7e\x41\xcd\x7d\x0e\xab\xd2\x2a\x02\xc9\xad\x3d\x5a\x09\xd0\xf1\x9a\x6e\xe8\xea\x68\xe8\x86\xbe\x55\x9f\x40\xcd\x43\x13\x4a\x7b\xe4\x34\xaa\x20\x81\x9a\xa7\xe4\xed\xf6\xa8\x6a\x3e\xd6\xcc\xfe\x4d\xf7\x2f\xc5\xfe\x23\xe3\x42\x75\xe8\x91\x61\x32\xad\xf6\xf1\x29\xa3\xaa\x87\xfa\xc3\x37\xd1\x64\x6e\xeb\xc5\x6b\x00\xea\x31\xb1\x17\x35\x3d\xd4\x3a\xbb\xdb\xe3\xd4\x3b\x8c\x32\xb7\x2f\x7b\xf7\x6a\xeb\x76\xcc\xdf\xd0\xca\x68\x46\x00\x6a\xbc\xdb\xed\x95\x2e\xa5\x8e\x2a\x73\xfb\x73\x72\x05\xd4\xef\xf2\x5d\x86\xe2\xc5\x1a\xd6\x00\xd4\xb3\xc1\x54\x6f\x02\xea\xa9\x66\xf5\x7a\x54\x29\x16\x00\xd4\xb5\xb8\xa8\x04\xd4\xcd\x15\x28\xa0\x6e\xea\x99\xba\xa1\xdf\x6d\x8f\xa4\x87\x29\xd9\x64\x6e\x4f\x10\x74\x03\x50\xcf\x32\x7d\x1a\x06\x13\x6a\x96\xb9\xbd\x95\x3f\x4b\xdb\xbe\x7a\xa6\x6e\xe8\x8a\x13\xb3\x2d\xe9\x8e\xc5\x77\xa5\xff\xa9\x2d\x08\xa8\x1f\xa5\xd3\x52\x4b\x51\xb3\x5a\xd2\xc3\xec\xd1\xd2\xd6\xed\x48\x2e\x0d\x44\xea\x99\xe1\x86\x6e\x36\xc3\xf9\x05\x83\x34\xdd\xd0\x09\xd7\x5b\xd3\x0d\x6d\x2c\x5b\xfb\xec\x2f\xe0\xae\x01\xa8\xfb\xc9\xfe\x58\x03\xa0\x3a\xea\x17\xa2\xdb\x1f\x23\xba\xb5\x57\x37\xdd\xd0\x1b\x42\x51\xfb\xec\x2f\x30\xbf\x7d\x6e\x6d\xa8\x1d\x4d\x37\x74\x1b\xd6\x8c\xd6\xfd\xb8\xcc\x00\xd4\x23\xb9\x5b\x01\xd4\xfd\x40\x6f\x68\x9f\xa2\x5b\x15\x08\x40\xdd\x0a\xd0\xaf\xc9\xdc\xae\x6e\x0d\x99\xdb\x8f\xc7\xfa\xf6\xa8\x52\x43\x10\x35\x17\xd7\x86\xcc\xed\x57\x54\xa5\x1b\xda\x48\xa8\x26\x73\xdb\x20\xc1\x26\x6a\xde\x58\x47\x9b\xcc\x6d\x63\x49\xda\xd6\x60\xe2\x42\xda\x32\xe2\x5c\x2a\xa0\xe6\xd9\xd5\x60\x41\xcd\xa3\x28\x9c\xa5\x67\x8f\x6c\x33\xd8\xbf\x81\x50\x40\xcd\xb3\x45\xab\xe8\x6f\x73\x70\x8e\xb4\x0a\x41\xe5\x71\xff\xaa\x21\x88\x9a\xcb\xe5\x8f\xd9\xbf\xdb\x49\x01\x35\xb7\xe1\xd6\x38\xee\x5f\x0c\x62\xed\x88\x22\xc5\x11\xa0\xe6\xd6\x8e\x55\x85\x41\xcc\x0f\x79\x54\xa9\x6b\x49\xcf\xee\x1e\x0a\x47\x55\xc4\x49\x91\x9e\x3d\x5c\x48\xa0\xe6\xfa\x39\x29\x47\x14\x29\xc6\xd4\x0d\x7d\xa3\xb7\xf4\x4b\x94\x81\x42\xd8\x41\xcd\xf3\xd0\x8c\x7e\xa9\x75\xb3\x80\xbb\xa8\x79\xa3\xc6\x74\xdd\xd0\x7a\x78\x3b\xa8\xb9\xbe\x8f\x3f\x6e\x1e\x0a\x99\x62\xd0\x2a\x26\x45\x50\xf3\x42\x6d\xeb\x97\x91\x08\xb8\x81\xfa\x15\xf4\x4e\x8b\x5a\x45\xfa\xaf\xc2\xb5\xba\x80\xba\x3c\x7e\x85\xa1\xb8\x8f\x5f\x91\x4c\x15\x7d\x57\x2b\x63\x82\xba\x1e\xea\x1b\xeb\x6e\x17\x50\x77\xb6\x76\x97\xb9\xdd\xc1\x5f\x5d\xe6\xf6\x87\xcd\xa7\x0b\xa8\x67\xb2\xaa\x38\xb5\x19\x19\x01\x75\x5e\xd6\xac\x9b\x03\xe3\x67\x4f\x6e\xed\x61\x55\x9e\xda\xa8\x52\x1d\x40\xdd\xd6\xeb\x53\x86\x42\x4f\x5c\x07\x50\xd7\x89\x54\xec\x00\xea\x19\x63\x2e\xa0\xce\xdb\x1f\xd3\xdf\x06\xb1\xb0\xeb\x86\x7e\xd0\xc9\x3b\x80\x7a\x2c\x1c\x1f\x5d\x40\x7d\xc1\xfa\xee\x02\x6a\xc9\x39\xfd\x0e\x83\x18\x03\xab\x1b\xba\x1d\x6b\x96\xd9\x6b\x7f\x6f\x6d\xfb\xb7\x3f\xa6\xbf\x85\x23\xbe\xeb\x86\xbe\x11\x38\x5d\x40\xad\xeb\xad\xdf\xc1\xb8\x60\x16\x00\xd4\x63\x46\x51\x80\x09\x4b\xad\xdf\x32\x10\x3e\xab\xe2\xa8\xba\xd8\xbc\x5d\x40\x3d\x6c\x64\x0e\xb2\x2b\x63\x95\xd5\xca\x30\xf6\xf6\xac\x2d\x14\x43\x71\x07\x50\x8f\xc9\x06\xec\x32\xb7\x5f\x07\x47\x37\xb4\x1a\x42\xcf\xba\xed\xec\x51\x0e\x72\x20\x6b\x23\xdc\xd0\x08\xc9\x9e\x63\xa9\xfb\xd4\xa5\x8e\x16\xda\x83\xb9\xdd\x7d\xca\xfc\x5e\x40\x83\x0e\xa0\xee\xa5\xfb\xa1\x63\x23\x99\x6e\xdd\xd0\xdd\x25\x2a\xa0\x1e\xce\x60\x09\xdf\x0d\x3d\x02\x50\x4f\x89\xdc\x5d\xd4\x5c\x1d\xab\xe2\x7a\x86\x50\xd4\x65\x6e\xbf\x08\xd8\x2e\x6a\x8e\x29\x2b\xe1\xcb\xf0\xc7\x6c\xed\x51\xfc\x10\xeb\xb9\x3b\xfb\x45\xd5\x6b\xfb\x21\xe6\xf7\xcb\x36\xd2\xfd\x9b\xed\x82\x8c\x9a\xe1\x8f\xf5\x65\x40\xfb\xe9\xd5\xf9\x05\x26\x77\x50\xf3\xac\xc4\x83\xf4\x20\x6f\x6f\x9f\x66\x57\xac\x45\x0d\x80\x6e\x58\xc9\xdb\x03\x73\x59\x97\xbc\x7d\x5c\xcf\xd5\xfd\x4b\xc8\x43\x07\x35\xcf\xe7\xb5\xa8\x5b\xb6\xf9\x2e\xfd\xfd\xba\xef\x86\x6f\x8e\xa5\xa2\x1b\x7a\x3f\x36\x52\x5f\x15\x88\xbb\x83\x9a\xe7\x33\x7c\x37\x18\x35\x3c\xd5\x0d\x9d\xdc\xbf\x4d\x5f\x15\x60\xa7\x83\x9a\x67\x57\xde\x82\x9a\x6b\x41\x27\xef\x4d\xdf\x0d\x96\xc6\x2e\x6a\xd6\xd0\xda\x9b\x41\x64\x0e\x0e\xa8\xb9\x56\x87\x5d\xf2\xf6\xa9\xbe\xeb\x51\x05\x7c\xeb\x4d\x86\x18\x1e\xb4\xde\xdc\xbf\xc5\xaa\x24\xab\x2b\xe7\x45\xcd\x09\xdf\x71\xd7\x0d\x6d\xf8\x4f\x07\x35\xf7\x74\x3d\xbf\x12\xfb\x00\xea\xb6\x2a\x03\xa5\x87\x7a\xb9\x89\x00\xd4\x75\xba\xc5\xba\xb6\x41\x8f\x3c\x00\xf5\x30\xb3\x41\x17\x50\x0f\xb4\xa3\xae\x87\xfa\x77\xc0\xf7\x53\x64\xa9\xaf\xe6\x8f\xf5\x50\x13\xde\xd2\xbb\xb6\xee\xcf\x9a\x11\x65\xb3\x5b\xf4\xd4\x4e\x36\x52\xf2\xd8\xb1\x28\xe0\x72\xd9\xc8\xeb\x2e\xdd\x66\x48\x86\x44\xbf\xed\xf2\xba\xb3\x8b\x4a\x40\x9d\x21\x14\x75\xdd\xd0\x03\x2d\xb4\x03\xa8\xfb\x74\x90\x87\xf1\x83\x18\xe5\xba\x6e\xe8\x98\xcd\x11\x6e\x1d\xdf\x45\x94\x35\x17\xc6\xd0\xb6\x8f\x02\xdf\x87\x0c\x13\xa5\xf1\x88\xa3\x8a\xf5\xa9\x1b\xfa\x73\x5f\x0c\xb7\x36\x0e\x88\x2e\xaf\x5b\xba\x75\x07\x50\xcf\xed\xb9\xa6\x1b\xfa\xc3\xd8\xdb\x75\x43\x1b\x3c\xdb\x01\xd4\xd3\x88\xb3\x3e\x65\x10\x39\x65\x53\xb7\x2c\x1a\x7b\x07\x50\xf7\x1b\x12\x45\x07\x50\xb7\x4b\x51\x26\xa0\x2e\x78\xc4\xfa\x94\x61\xe2\x9e\xd2\x0d\xfd\xb8\x36\x66\x90\x21\xfd\x2e\xfd\xbd\x14\xa1\xf2\xba\x0d\x45\xec\x00\xea\x5a\x94\xc6\x00\xea\x7e\x7d\xd6\x8c\x28\x6b\x60\xbd\x0e\xa0\x9e\xc6\x1d\x77\xdd\xd0\x9f\xdf\x05\x50\xd7\x77\xf8\x54\xd1\x0d\x50\xea\x8f\x5a\xa8\x8a\x8a\x6e\xe8\xea\x1c\x3d\xce\xaf\x62\x41\x5e\x77\x86\x35\xd1\x1f\x45\x99\x92\x5c\x5e\x77\x56\xfd\x13\x35\x1b\xe3\xd9\xe5\x75\x17\x80\x61\xd7\x0d\x5d\xba\xef\x2a\xca\x8a\x4f\x75\xcb\x2a\x43\x1e\x8f\xaa\x6a\xcd\xac\xe7\x71\x10\x83\xba\xa1\x8b\x6b\xe3\xd5\x60\xe2\x81\x02\x6a\x1e\x1d\x78\xde\x03\x35\x7b\xca\x1b\xef\x6c\xb8\x44\x07\x35\xb7\x50\x09\x44\xcd\x07\x86\x49\x17\x35\x37\x1b\xa9\x1b\xba\xe2\x59\xee\xaf\x5a\xe8\xe3\x87\x34\x88\x61\xb3\xed\x92\xb7\x35\x79\xf5\x37\x0c\x9e\xd6\xcc\x7a\x36\xee\xaf\xbf\xee\x5f\x95\xc9\x57\x5b\xb7\xdf\x05\x35\xf7\x9c\x2d\xca\x00\x74\x3d\x8b\x9a\xd5\xd8\xfb\xd2\x00\x88\x47\xbb\x8b\x9a\x65\x6b\x77\x50\xf3\x78\x95\x39\xa2\xe6\xe9\xe0\xe8\x86\x8e\x13\xd3\x78\xe7\xeb\xf2\xa9\xbc\xfd\x6d\x33\x44\x19\x98\xdc\xbb\xa8\xf9\xbd\xfd\x2e\x28\x32\xbb\x90\x44\xcd\x03\x6a\x44\x5f\x41\x76\x65\x4d\xae\x70\xbb\xf3\x14\xd4\xdc\x32\x10\xbb\x1b\xef\x2c\x93\xa7\x83\x9a\xab\xd4\xbb\x0e\x6a\xee\x75\xff\x52\xec\x7f\xc6\x87\x46\xb5\x68\x65\x09\x84\xd5\x05\xd4\x5f\x7c\x45\xb7\x2c\x6e\xbb\x2e\xaf\x7b\xc3\xb8\xe8\x7a\xa8\xb3\x7b\x19\x40\xdd\x92\x4a\x9a\xa1\xd0\xdb\xbd\x2c\xa0\x0e\x4d\x52\x0f\x75\xf7\xf4\x01\x50\xf7\xe5\x92\x03\x50\xf7\xe6\x21\x0e\xa0\xae\xc9\xe3\x72\x3b\x14\x6e\x04\x43\xa1\xe3\xbb\x02\xea\x06\x4f\xa0\x6f\x0d\x26\xf1\x54\x51\xe6\xd9\x0a\xa0\x1e\xcb\xed\xb9\x65\x98\x28\x8e\x0c\x85\xce\x78\x97\xba\xbc\xee\xa3\x94\x00\x50\xd7\x23\xca\x00\x50\xb7\xcb\x81\xd5\x0d\xdd\xf0\x38\xf4\xad\x81\xe8\xf3\x43\x92\x03\xa1\x1d\x76\xdd\xd0\x17\x80\xba\x1b\xef\x9c\x20\xcb\xf5\xa3\x2f\xc3\xa3\xf9\x0f\x5e\x37\x8d\xd4\x0d\xdd\x70\x35\x76\x79\xdd\x9f\x52\xd1\x78\x67\xe3\x59\xfa\x31\xf4\x1b\x53\x4c\x3f\xf6\x57\x85\xe7\x08\x30\x8b\xdf\xd5\xb6\xef\xd9\x74\xb4\xfd\xe2\x44\xe8\x00\xea\xae\x99\xae\x03\xa8\x47\xf6\x30\xd2\x0d\xdd\x2e\x9b\xc1\xd6\x7e\x14\x65\x00\xea\xf9\xa2\xdf\x0e\x01\xf5\x87\xe1\x71\x5c\x41\xfe\xec\x14\x11\x65\xab\xf8\x54\xb7\x3b\x3b\x7d\x5c\xda\x42\x91\xb7\x03\x40\xdd\x75\xd9\x0f\xdd\xd0\xf9\xb5\x2a\x19\x35\xc8\x81\x21\xa0\xbe\x3e\x6b\xe6\x68\xd6\xba\x3b\xfe\x00\xd4\xbe\x2b\x6f\x1f\x15\x7d\xc8\xeb\x4e\xc7\x0f\x31\xbf\x1d\xe9\x34\x2e\x43\xfb\x59\xed\x03\xd4\xdc\x0c\x0f\x19\x7f\xf0\xba\xa9\x2a\xc9\xdb\x47\x63\x1f\xf2\xba\x27\xd8\x67\x24\xc9\x81\x20\xdf\x91\x4c\xdd\x80\x2a\x32\x92\x6e\xca\xe6\x53\xb5\x6e\x94\xf0\xa1\x1b\xfa\x40\x74\x19\x29\x68\x15\xfe\x98\xfe\xea\x85\x1f\x92\xb7\xe7\xb6\x66\xe7\x77\x5b\x95\x06\xb1\xcb\xe2\xe7\xb9\x66\x91\xf5\xdc\x87\x55\x45\x3c\x3b\x1d\xbc\x65\x4c\x11\x01\x31\x6e\x43\xae\xd8\x83\x23\xc8\xdb\x98\x16\xc7\x6d\xea\x06\xce\xa6\x01\x6a\x6e\x17\x7b\x70\xdc\x1a\x3c\x51\xcc\xc6\x6d\x5c\x06\x36\xae\x21\x6a\xce\xe0\xd3\xa1\x1b\xfa\x21\x4e\x6a\x80\x9a\xbb\xf1\x3e\x23\xc8\xdb\x88\xd0\x21\x79\x3b\xb1\xad\x86\xa8\x39\x5d\x36\x43\x03\xd1\xb1\x0b\x88\xee\x82\x19\x64\x88\x9a\x6f\xa2\xfb\x87\xe4\xed\x14\x45\x55\x11\x30\xc8\xc8\x1a\x88\x90\x39\x43\xf2\xb6\xee\xc5\x21\x79\xfb\x76\x6b\x64\xe5\x15\x0a\xe1\xd0\x0d\xfd\x15\xdf\x55\x3e\xff\x2e\x63\xff\xae\xd8\x1f\x7a\xa8\xdf\x65\xb5\x6e\x6d\xc0\xf8\xc8\xe1\xd6\xb1\xc1\x88\xb2\xba\xfd\x31\x4b\xfd\x60\x45\x1f\x02\xea\x06\x28\x1e\x59\x37\xe5\xb4\x77\xc7\x65\xc3\x20\xeb\xa1\xde\x28\x00\xc3\x50\xe8\xe6\xb2\x29\x1a\x88\xdc\x9e\x86\x42\xcf\xec\x53\xb7\xb6\xb3\x59\x04\x5c\x2f\xeb\xa4\xc8\x40\xc0\xda\x30\x82\xd7\x5d\xfd\x90\x8c\x8b\x61\x51\x32\x95\xdb\xb3\x04\x79\x8c\x0e\x02\xa8\x67\x71\x51\x15\xb3\x94\x14\x5b\xf5\xb9\x3d\xe9\x7e\xd1\x6d\xa7\x74\x12\x50\x77\x5b\x55\x23\x44\x85\xaa\x74\x43\x3f\xc8\xf9\x01\xa0\x6e\x2f\xea\xdf\xa8\x66\xa1\x51\xfe\xc8\xeb\xee\x76\x41\x5e\xf7\x52\x58\x55\xa3\x0b\x95\x21\x46\x43\x1b\x65\x33\x00\xd4\x3d\xb9\x30\x04\xd4\x29\x3e\xc4\xfc\x5e\x98\xf8\x86\x6e\xe8\x9b\x63\x6e\x54\x0d\x62\x8a\x23\x00\x75\x37\x7f\xda\xa8\x11\x5d\x48\x7f\xab\x5b\x5b\x91\xd2\x22\xba\x90\x0f\xb5\x88\x2e\xa4\x47\x00\xea\x3e\xc0\x5c\xc3\x68\xe8\x1b\xda\xf0\x10\x50\xcb\x6e\x1d\xf2\xba\x5f\x77\x4d\xf3\xa8\xc2\xf8\x30\x04\xd4\x37\x28\x72\xe8\x86\x4e\xc0\xb7\xd1\x42\x15\xf1\x5d\xb6\xf6\xc4\x47\x3f\x00\xd4\xf3\x46\x19\x1e\x4d\x54\x45\x2a\x83\xd1\x8c\x96\xcd\x36\x83\xfe\x4e\xa7\xac\x69\xdb\xc7\x10\x37\x40\xcd\xfd\x85\x5f\x34\xba\xb6\x6e\x54\x91\x21\x6a\xbe\x94\xc6\xa0\xe6\x21\x6f\x76\x74\xb7\xb6\xc7\x5c\x0f\xd1\x4d\x17\xba\xbe\x8c\xe4\x8f\x11\xdd\x7b\x58\x15\x47\xd5\xa7\xec\xd2\x0d\xbd\x3d\x5f\x44\xcd\x97\x3d\xd2\x0d\x3d\xb1\x17\x0d\x51\xf3\xba\x6c\xa4\xa8\xb9\x58\xd4\xc0\x5b\x6d\x06\xfb\xb7\x62\x97\x1b\xa2\xe6\x82\xd3\x64\x80\x9a\x9b\x21\xf9\x43\x37\xf4\xac\xfe\x38\x2b\x46\xd8\x56\xa2\xe6\x0c\x19\x60\x0c\xdd\x94\x44\x31\x0c\xa3\xa1\x9b\xa7\xc0\x90\x46\x82\x92\x33\x24\x6f\x9b\x8a\x64\xe8\x86\x9e\x97\xef\xb2\x7f\xd3\xed\x77\xb5\x12\x38\x0b\x23\x0c\x44\x4c\xf7\xd0\x00\xe8\x81\x12\xe4\x6d\x77\x37\xa8\x79\x3e\xd8\xa8\x87\xa8\xf9\x21\xe4\x61\x18\x0d\xdd\xb0\xcc\x8c\x19\xd1\xee\x8c\xf3\x94\xf1\x88\x5e\x3a\x44\xcd\x1d\xcb\xc6\x98\x81\x22\xfd\x31\x47\xb3\x34\x83\x01\x6a\xee\x37\x78\x6d\x4c\xe3\x8c\x30\x1a\x0c\x50\xf3\x9c\xdd\x1f\xeb\x8b\xcc\x36\x32\x54\xaf\xfd\x2b\xb1\x2f\xa0\x36\xac\x6f\xcc\x88\x1e\x65\x90\x01\xd4\xd3\xdc\x05\x43\x0f\xb5\x01\x74\xe3\xf1\xd4\x1e\xec\x56\x01\x75\xb6\x77\xf2\xba\x1f\xf8\x8d\xc3\x40\x69\xb3\xfd\x8c\xc7\xad\x6d\xdf\xff\xe0\x75\xfb\x63\x44\xd9\x84\xa8\x3f\xf4\x50\x0f\xb0\xc0\x78\x74\xcb\x66\x7f\x2c\xc0\x04\xd7\x0f\x01\xf5\xfd\xd8\x0c\x45\x19\xbe\xd4\x61\xa0\xf4\x20\x92\x62\x00\xa8\x5b\x57\xd0\x3d\x86\x6c\x28\x8e\x00\xd4\xbd\xab\x2b\xbe\xba\xed\xec\x82\xbc\xee\xcf\x25\x27\xaf\xdb\x18\xf3\x01\xa0\x1e\x53\x51\x66\x34\xb4\x10\x72\x08\xa8\x85\x9f\xc3\x68\xe8\xaa\x1e\x12\x09\xc4\x1c\x1c\x13\x88\x49\x20\x1f\x6f\x18\x10\x98\x85\x00\xd4\xcb\x46\x9a\x95\x25\xde\x45\x94\x69\x4c\x1b\xba\xa1\x17\xae\xc6\x21\xa0\xfe\x70\xe5\x0c\x79\xdd\x2f\x5e\xf8\xa1\x1b\xda\x3c\x57\x43\x37\xb4\x91\x41\x63\x99\xe8\xc0\x5d\xa3\x1b\xda\x24\x51\xc3\x04\x62\x53\xa1\xa1\x1b\x3a\x54\xe5\x15\xe4\x5e\x66\x70\x69\x20\x5a\xbe\xab\x41\x0c\xe6\xe4\xd0\x0d\x7d\x94\xd5\x4b\x37\xa5\x87\xbe\x80\xba\x45\x9b\x75\x43\xab\x67\x2e\x79\xce\xd1\x66\x50\xa4\x99\xf7\x86\xbc\xee\xcf\x73\x4d\x37\xf4\x52\xcd\x96\xd7\x7d\x2b\xac\x3e\x13\x1d\x28\x15\x83\xd7\xdd\x7c\x6a\xe0\xbf\x3a\x9b\xa8\x59\xe2\xfa\x10\x35\x4b\x06\x18\xf2\xba\xe5\x35\x8d\xcf\x90\x49\x3c\x80\xc3\x04\x62\x21\x8e\xe4\x75\x2f\x75\x0f\x79\xdd\xda\x03\x87\xa8\x79\x7b\xcc\x7d\xfa\x6e\xc4\x02\xf2\xba\xdf\xe6\x77\xe9\x6f\xf3\x40\x31\x1a\x7a\x60\xd3\x1b\xa0\xe6\xd9\xdd\xfb\xba\xa1\x87\xbb\x5b\xd4\x5c\xf1\x4b\x0e\xc9\xdb\xb5\x5a\x34\x1a\x5a\x21\xb9\x0d\xa9\x73\x3d\x1b\x0d\xdd\x3d\x05\x74\x43\x3f\xea\xc6\x91\x40\x0c\xe4\x3b\x44\xcd\x49\xfd\xc1\x68\x68\x2d\xf0\x63\x1b\x32\x39\x6d\xb3\x64\x57\x3c\x1d\x03\xd4\xdc\x1f\xc7\x79\xab\x6a\xaa\x01\x1e\x0d\x44\x4a\xa4\x63\x7f\xdd\xce\xc7\xf5\xac\xd6\xaa\x1b\xfa\x72\x6d\x98\x25\x6c\x57\x7f\xec\x51\x85\x65\x63\x44\x96\x30\xd5\x27\xdd\xd0\x26\xe0\x1a\xa2\xe6\xaa\xc6\x2b\x6a\x4e\x58\x47\x87\xa8\xf9\xf6\xc8\x38\x1a\x00\xb1\x8d\x0f\xa3\xa1\x97\xba\xc7\x31\xcb\x10\xb6\xc4\x01\x6a\x9e\x3d\x3a\x28\xca\xf8\x65\x4e\x9e\x79\x85\x5b\xf6\xa7\xc1\xf3\x92\x5c\x84\xa5\x62\x5e\x92\xc7\x18\x8a\x09\xa0\x9e\x4f\xf7\xc7\x2e\x75\xd6\xe7\xd4\x43\xbd\xe0\x75\x4f\x3d\xd4\x65\x58\x34\x70\x78\xfb\xae\x4b\x1d\x35\x7b\xea\xa1\x5e\x8f\x45\xb5\xd0\x6a\xcd\x06\xfe\x73\xe4\xcd\xcb\x1c\x17\xcd\x1f\x87\x47\x7e\x50\x44\x94\x25\x44\xf7\xd4\x0d\x6d\xa4\xed\x04\x50\x8f\x0d\x1f\x63\x26\xdd\x58\x38\x2f\x66\x12\x70\x81\xdd\x66\x8a\xdc\x80\x74\x3f\x09\x30\x99\xbe\x69\x02\x31\x43\x11\x67\x12\x65\x34\x9f\x32\xf5\xea\x99\x53\x5e\xf7\xc6\xd6\x34\xe5\x75\x3f\xc9\xef\xaa\x95\x21\x06\xa7\x80\xba\x67\xab\xd2\x97\x61\x8f\x00\xd4\x7d\x83\xb9\xa6\x80\xba\x0c\x1b\x29\x83\x08\x57\xd4\xbc\x4d\x98\x86\x25\x6a\x1a\x0d\x9d\xd9\x35\xf3\x56\x0b\x85\x6f\x3c\xef\x60\x4c\x51\xd5\x1d\x6e\x59\xdf\x35\x24\x07\x81\x33\x4d\x20\xf6\xb2\x3d\x27\x80\xba\x6f\xc7\xf9\x0e\xb2\x2b\x6d\x96\xd7\x9d\x01\x86\xf3\x96\xc7\xfe\xf8\x54\x40\x3d\x6d\xb3\xb6\xfd\x64\xd1\xa3\xea\x58\x34\xe4\xca\x55\x77\x1b\x62\xc6\xf1\x3a\x73\x18\x88\x78\x9a\x75\xdb\xa1\x3b\x4d\x13\x88\x3d\x98\xfa\xa7\x6e\xe8\xea\x12\x15\x50\x17\xc4\xc2\x34\x1a\x5a\xd0\x31\xb3\xeb\xf9\xf1\x5d\x6d\xbf\x97\xef\x6a\x00\x74\x79\x9b\x40\xcc\x28\xb9\x29\xaf\x3b\x6d\xdf\x95\x31\x85\x6e\x3c\x45\xcd\xf7\x65\x9b\x23\xc4\xcc\xa2\x71\x28\x9f\x3f\x3e\x0e\x2c\x0b\x58\xd4\x3c\xb0\x44\x4d\xdd\xd0\x1d\x7a\xe7\xd4\x0d\x2d\x9d\x75\x16\x03\xff\x6d\x55\xd1\xb6\x8f\x1d\x63\x96\x88\x1e\xf5\x5d\x8e\xaa\x7b\xfa\xe3\xf0\xdd\xb0\xea\x74\x43\x5f\x9c\x2f\x53\xd4\x6c\xd2\xf5\xa9\x1b\xfa\x3e\xbe\xab\xe8\x86\x29\x31\x41\xcd\x53\xf2\xd5\xd4\x0d\xdd\xa3\x55\x26\x78\xfc\x6c\x86\xa8\xd9\xa1\x0b\x37\x34\xf8\x65\x56\x51\xe4\x67\x91\xf9\x95\xab\x33\x45\xcd\xf2\x37\xa6\xa8\x79\x40\x82\x9a\xa2\xe6\xe2\x7a\xae\x8a\xee\xf8\x90\xa8\x0a\x45\x7a\x46\x34\x34\xda\xc5\x8c\x1c\x62\xd9\xa2\xb4\x0a\x07\x47\xd4\xfc\xa2\x4d\xcd\x6a\x02\x40\x57\x8e\x6e\xe8\xaa\x28\x90\xbc\xdd\xb1\x9c\x4f\x51\xf3\x85\x56\x33\x9b\x34\x03\x4e\x90\xd9\x82\xcc\xcc\x74\x8b\x9a\x1f\x94\xff\x29\x6a\xbe\xea\xaf\xc2\xb5\x26\x80\xba\x1a\x47\x3c\x9b\xd1\x67\xee\x47\x03\xa5\x35\x98\x4c\x01\xb5\xb9\x0b\xa6\x81\xd2\x77\xb3\xa8\x47\x7e\xf9\xae\x0c\x04\x3b\xdb\x3c\xc5\xb6\x0d\x8e\x53\xdb\xa7\xba\x75\xa0\xe2\xcf\x16\x28\xc3\xaa\x58\xea\x1b\x7b\xd1\xec\xa6\xdb\x72\x15\xc9\xeb\x9e\xf8\x61\xa7\x80\xba\x7b\x82\xe8\x86\x56\x0d\x9b\xba\xa1\xe3\x8c\x00\x50\x0f\x49\x23\x53\x37\xb4\x2e\x86\x09\xa0\xee\xaf\xcd\x00\x50\x97\xc3\x99\x3e\x05\xd4\x07\x45\x7a\x0a\xa8\xe5\x39\x4f\xd3\x8b\xbd\x9e\x6b\xe1\x86\xc6\x70\x3a\xe5\x75\xbf\x1e\x0a\xdd\x90\x2b\x4c\x6d\xb3\x6b\x30\x41\xb1\x9c\x00\xea\xde\x21\x61\xce\xe1\xd6\xce\x3e\x95\xb7\xef\x16\x33\xbd\x58\x82\x72\x30\x87\x5a\x8a\x82\x4e\x5e\xb7\x2e\x86\xa9\x1b\x7a\xbd\x3e\xa5\xbf\xcf\xe3\xbb\x68\xdd\x3a\xc7\xe7\x08\x1e\x3b\x3d\x02\x50\xcf\x17\x1b\xfb\x94\xd7\x7d\x29\x42\x01\xd4\x73\xa2\x49\x4e\xa3\xa1\xd3\x6d\x23\x4d\x97\x87\x26\x39\xe5\x75\x77\x1c\x01\x53\x5e\xb7\x29\xf4\xe7\x8c\xb4\xbd\x16\x99\xdf\x06\x82\x9e\xc1\xeb\x46\x81\x9f\xc1\xeb\xc6\xbf\x3f\x4d\x2f\x26\x04\x9b\x53\x03\x82\xc7\x9c\xd1\xd0\xdd\x66\xe8\x86\xf6\x76\x89\x09\xa0\xae\x15\x8f\xd2\x04\x50\x8f\xee\x0c\xea\x86\x4e\xe0\xa6\x69\x7a\xb1\xf3\x58\x95\x5b\xbb\xd9\x66\x0d\x62\xaf\xef\x2a\xca\xb0\xf9\xcc\x27\x12\x3b\xf0\x63\x50\xf3\x28\x1e\xa0\xba\xa1\x1f\xac\x58\xf3\x89\x74\x88\x4c\x99\xa8\x39\x36\x8e\xa8\xf9\xc5\xd5\x38\x9f\xe8\x2f\xdf\xd5\x0d\x9d\xc0\xb6\x13\xd4\xdc\xa4\xcf\xcd\xc7\x9c\x5a\xd9\xa7\xda\xba\x8f\xcd\xa0\xbf\x13\x36\xce\x14\x35\x9b\x84\x7c\x3e\x61\x00\xb4\x19\xa2\x2a\xd7\x73\x44\x43\xab\x3e\x89\x9a\x35\x89\x4c\x51\xf3\xc4\x93\x35\x45\xcd\x37\xca\xf0\x34\xbd\x98\xa0\x72\x82\x9a\xe7\x45\x9c\xc2\x14\x35\x77\xc8\x1e\xf3\xd5\xd6\xed\x58\xbd\xa1\x7a\xf9\x63\x44\xb7\x81\x36\x33\xd2\x6e\x83\xd7\xa6\xd1\xd0\xde\x4d\x30\x41\xcd\xc5\xf4\x8f\x53\xf2\xf6\x8c\x2e\x60\x20\x4a\xf1\x21\xfb\xab\xf2\x2c\x79\xfb\x83\x46\x32\x97\x64\x66\xc7\x2a\x72\x88\xb9\xf7\x23\x87\x98\xfb\xd7\x1c\x62\xb5\xf9\x2e\xf2\xaa\x62\x1c\x9e\xa2\xe6\xe1\x68\x98\x76\x5b\x56\xdb\x8c\xb4\xdb\xf7\xaf\x08\x9c\xd3\xf4\x62\x7d\xda\x24\xb4\x14\x73\x30\x4e\x79\xdd\x17\x16\xbc\xb9\x04\x98\xdd\xa2\x69\x5d\xb7\x6d\xd0\x43\xad\xaa\x6c\xa0\xf4\x74\xcc\x83\xd7\xad\xe2\x21\xa0\x0e\xb5\x53\x0f\xf5\x78\x2c\x3a\xf5\x40\xf5\x69\x7a\x31\xd3\x92\x4c\x79\xdd\xaf\x1f\x12\x50\xdf\xc7\x77\x35\x10\x11\x69\x3b\xe5\x75\xeb\x19\x9f\xf2\xba\x8b\xeb\x53\x40\x1d\xba\x93\xbc\xee\xa4\x52\xaa\x1b\x7a\x61\xe5\x98\x02\xea\x99\x7d\xca\x51\x65\x80\xf6\x14\x50\x67\x0f\x50\x03\xa5\x4d\x6e\x39\xb7\x5a\x8a\xeb\x73\x47\x4e\x1e\x26\x37\xa2\xa1\xad\xca\xf4\x62\x72\x1b\xa6\x19\xb9\x87\x27\x88\x80\x3a\x63\x10\x9b\x5b\x94\x71\xfb\x6e\x57\xfc\x32\x1a\xdb\xa3\xca\x19\x34\x1a\xfa\x60\x6b\x9a\x5b\x5f\x86\xc0\x41\x40\xfd\x2c\x7f\x4c\x7f\x97\x6b\x43\x40\xbd\x3c\x14\x82\xd7\xfd\xda\x8c\xe0\x39\xf3\xae\x80\xba\x28\x51\x75\x43\x17\x95\x61\x01\xf5\x89\xa2\xbc\x7d\x87\x4e\x37\x74\xc6\xba\x32\xe5\x75\x1f\x8c\x00\xd3\xf4\x62\x55\xd9\x65\xda\xed\xad\xac\x16\x50\x5f\x44\x7c\xcc\x23\xe3\x42\xed\x22\xd2\x6e\xc3\xe4\x99\xa6\x17\xab\xea\xb7\xba\xa1\x93\xfa\xc3\x31\x84\x50\x9d\x4d\x5e\xf7\xa5\xbe\x67\x34\xb4\x99\x2b\x1e\x51\xf3\x26\xbf\xcd\x23\x6a\x16\xbd\x3e\xa2\xe6\x44\x23\x1f\xdd\xd0\xa6\x28\x7f\x2e\xb5\xee\xd7\xa2\xd1\xb2\x98\x62\x9e\xcb\x9c\x3c\xb8\x1a\x1f\x50\xf3\x38\xcc\xfe\x03\x6a\x9e\xfa\x32\x1e\x51\xb3\xc9\xdb\x9f\x4b\x03\x60\x34\x03\xd1\xbd\x90\xb7\xcf\x15\x39\x6a\x6c\x95\x19\xe6\x39\xc8\x1e\x51\xf3\xf5\x59\xd4\xb6\x8f\x22\xfd\xe8\x86\xf6\xbe\x8c\x47\xf2\xb6\x41\x2b\x4f\x8a\x1c\x35\x1f\x45\xd3\xc7\x71\x08\x3e\x29\x54\x11\x8b\x66\x98\xc7\x0c\xfb\x24\xe7\x17\x65\xf2\x91\xbc\xbd\x3f\x7f\xac\xc1\x84\x38\x85\x47\xd4\x7c\x27\x5b\x15\x99\x4e\xad\x4a\x94\xc1\x51\xf5\x88\x9a\xef\xc7\x9a\x39\xaa\x54\x08\x9f\x24\x63\x2a\xfb\xd4\xa3\xd9\xfe\x9a\x76\x7b\x1c\x8b\x1a\x88\xf0\xaf\x3d\xb7\x06\x22\xa0\xc1\x73\x1b\x1d\x8c\x08\x7a\x24\x6f\x2f\x16\xf0\x03\x6a\x6e\xa6\xfd\x7f\x8c\x86\x4e\x9f\x45\x33\xea\xa3\x4d\x3d\xa2\xe6\x42\x0c\xdd\x73\x6b\xd0\x76\xd8\xef\xc8\xdc\x4b\x7f\x6f\x33\xf7\x9e\x5f\x89\xfd\x07\x40\x3d\xdb\xb1\xfd\xf2\xd8\x87\xed\x37\xa9\xaf\x8b\x19\x40\x5d\x0e\x7a\xe6\x93\x0d\x1c\xc6\xd0\xf4\x04\xaf\x1b\x99\xf9\x98\x5e\xec\x42\x57\x7c\x0c\x94\x6e\x51\x34\x93\x1e\x2e\xb0\xc7\x40\x69\xf3\xde\x3f\x39\x00\x97\x45\x01\x26\xea\xfd\x23\xa0\x36\xa6\xec\x91\xd7\x2d\x8b\xe0\x31\xbd\xd8\x7c\xfd\xb1\x39\x2e\xb0\xcf\x3f\x39\xb4\x50\xb6\x49\x64\xe4\xae\xbe\x2b\xa0\x46\x2c\x3c\xba\xa1\x9b\x3b\xae\x68\x40\x70\x46\x4c\x2f\xd6\xc1\x8c\x8f\x80\x3a\x71\x4c\x3f\x7f\xf0\xba\xa9\xd9\x8c\xdc\x0a\x8d\x47\x37\x74\x89\xa7\xe1\x96\xa5\x47\x45\xad\x1b\x25\xfc\xd1\x0d\xad\xe3\xe3\x29\xe6\x6c\x71\x8e\x02\x50\x23\xba\x1f\xdd\xd0\x0d\xeb\xca\x53\xbc\x41\xa0\x5b\x33\x5a\xe8\x73\xf9\xae\x06\xa2\xcb\x77\xb5\xed\xa3\x1b\x3f\x02\x6a\xc3\x18\x1f\x79\xdd\x5a\xd1\x1f\xa3\xa1\x6f\xc0\xe9\x23\xaf\x5b\xa6\xd9\x53\x8d\x53\xc0\xf4\xf4\x08\xa8\x37\x81\x6f\x8f\x6e\xe8\x8b\x63\xee\x11\x50\xe7\xd7\xef\x4a\x86\x44\xf9\x7f\x8c\x86\x6e\xc5\x66\x70\x34\x2f\x65\x66\x95\x21\x36\x7d\x57\x86\x18\xcc\x96\xc7\x68\xe8\x9e\x6d\x95\x21\x66\xdb\xaa\x34\x00\x42\x93\x78\x00\xd4\x53\xce\xff\x03\xa0\x6e\x5e\x00\xf7\x08\xa8\xa7\xc3\x2e\xaf\x5b\xfa\xee\x63\x34\x74\x03\x92\x3c\xa2\x66\x23\x2f\x1e\xa3\xa1\x9f\xee\xbb\x92\x3f\x93\xef\x32\xbf\xaa\xf7\x4f\xf3\x68\x56\x3a\x89\x9a\x4d\xd9\xfd\x88\x9a\x57\xb3\xa8\xed\x17\x4b\xd4\xd3\xd4\xba\xa3\x66\xc9\xae\xd5\xa7\x26\xe5\x46\x39\x7c\x7a\xe4\xd4\x62\x42\x41\xcd\xdd\xa4\x10\x8f\xd1\xd0\xb1\xe9\x4c\x2f\x66\xe4\xf8\xa3\x1b\x7a\xb9\x43\x4d\x2f\x96\x93\x55\x19\x32\x89\x32\xfc\x84\x1b\x3a\x7e\xec\xfc\x2a\x0a\xba\x89\x59\x70\xe9\x3e\xa6\x17\xcb\x58\x18\x9e\xae\xaf\xca\xfe\x1a\x0d\x7d\x3f\xfe\x58\xdf\x0d\xf6\xde\xa7\x47\x3a\x44\x3f\x64\xb4\x3b\x46\x9e\xc7\x68\xe8\xe5\x8a\x1d\x11\xed\x6e\x91\xf5\xfc\x12\x66\xfe\xe8\x86\x0e\x79\x0b\x6a\x1e\x3d\x9e\x9a\x73\x09\xb3\xc0\x13\x49\xb9\xb1\xf9\x3c\x46\x43\xd7\x9b\x19\x1c\xc6\x19\x79\xbc\x4a\xde\x7e\xec\x42\x24\xe5\x46\x6b\x7d\x74\x43\x9b\x4b\xf9\x31\x29\xf7\xe7\xc0\xea\x86\x7e\x14\x05\x23\x6e\x00\x61\xb5\x47\x34\xf4\xf8\x95\x6d\xff\x31\x5f\xf7\xf6\x60\x9a\x4e\xfd\xb4\x28\xe3\x02\xe0\xf3\x98\xaf\xbb\x79\x2e\x9b\xaf\xfb\x01\x07\x3d\x00\xea\xf9\xc4\x53\x79\xfb\x36\x78\xc6\x52\x67\xa0\xa6\x28\xc3\x23\x6f\xc6\xd4\x33\xd7\x00\xea\x69\x82\x97\xc7\xf4\x62\xb9\x5a\x14\x50\x7b\x88\x4f\x2f\x43\x51\xec\x1b\x28\x2d\x7e\x79\xe4\x75\x9b\x0d\xe6\x11\x50\x37\x50\xf0\xf3\xc8\xfb\xc5\xf6\xfb\x00\xa8\x47\x05\x1a\x3c\x7f\xe4\xeb\xa6\x83\x02\x6a\xbd\x78\x0f\x80\xba\x1d\xac\xe8\x8f\xe9\xc5\x16\x5a\xf7\xa3\x1b\xfa\x8e\xef\x62\x30\xc9\xf1\x63\xa3\x47\x8f\x4f\xe5\xed\xc7\x77\x0d\xfc\xff\xac\x4a\x32\xa4\xba\x93\x80\xfa\x8f\xaa\x44\x19\xaa\x70\x8f\x0c\x13\x88\x01\x8f\xf9\xba\x5f\x75\x09\xf3\x75\xf7\x28\x02\x30\xcd\xf7\xf2\xbc\x21\xba\xd9\xda\x6f\xb8\x29\x69\xa4\x49\xb9\xbd\x0a\xf0\x91\xd7\x2d\x60\x79\x74\x43\x2f\xe5\xed\x6b\x12\x63\x34\xe7\xe7\x75\x7e\x8b\x45\xb5\x94\xc7\x66\x18\x08\xaf\xfe\x20\xaf\x3b\x8e\x8c\x00\xd4\xdd\x46\xea\xc6\x72\xba\x75\x43\x27\xcf\x88\x15\x5b\x9b\x09\x5d\x61\xeb\xe6\xc7\x4b\x83\x89\x5d\x08\x40\xed\x39\x6e\x52\xee\x57\xcd\x59\x40\x7d\x70\xae\x3d\xf2\xba\x1b\x76\xaa\x47\x40\xfd\x82\x9b\x1e\x51\xf3\x7c\xfd\x90\xbe\x1b\x7b\xa4\x1b\xba\x62\x5a\x7c\x96\x99\x4e\x55\x1d\x97\x0c\x13\xec\x54\x8f\x6e\xe8\x72\x59\x94\x1c\xa8\x86\xa0\x1b\xfa\xc1\xa3\xf4\x98\x5e\xac\xe1\x1e\x7d\x8c\x86\xae\x18\x6a\x1e\x51\x73\x48\xe3\x4f\x94\xe1\xb6\xfa\xc2\xc0\xeb\xbb\xba\xa1\x3d\x14\x40\xcd\x33\xd9\x05\xdd\xd0\xdd\xf3\x45\xd4\xbc\x14\x38\x92\xb7\x8f\x3d\x32\x29\xf7\x4a\x3e\x75\x3d\xe3\xee\x7f\x44\xcd\x0b\xf3\xf5\x63\x34\xf4\xc4\x79\xf1\x7c\xc1\x98\xf2\xc7\x1e\x55\x2a\x93\xa0\xe6\xd1\xad\xd9\x68\xe8\xd7\x05\x2c\x6a\xde\x9e\xe3\xba\xa1\x87\x20\x4b\xd4\xdc\x61\x10\x3d\x3b\x32\xbb\xf2\x21\x51\x73\x9a\x16\x35\x98\x40\x28\x7a\xb6\x06\xa2\xa8\xca\xf9\x75\xb3\x8b\x9a\x8f\x7b\x70\x7b\x6f\x97\x82\x42\xf2\xb6\x61\xad\x4f\xb8\xa1\x5d\x66\xba\xa1\x43\x8b\xdb\xde\x2f\xe0\xba\x12\x35\xcb\xe4\x79\xcc\x21\xb6\xa1\xed\x3d\x46\x43\x6f\xd7\xc6\x91\xf1\xf8\x7b\xf1\xef\x8b\x7d\x01\x75\xc5\xfa\xf7\x9c\xe0\x39\xd3\x59\xd3\x8b\xad\x78\x1a\x99\x03\x69\xb0\xf9\xba\x5b\x14\x01\x20\x55\xad\xec\x18\x92\xf3\x58\x8c\xa5\x6e\xcd\x6c\x6d\x33\x1b\x3c\xde\x63\xd5\xa7\x3f\x36\x04\xc9\xe3\x52\x5e\xb7\x7e\x81\xf7\xf2\x4a\xbe\xcb\xa2\x06\x84\x6e\x51\x5e\x37\x81\x24\xaf\x90\x59\xf3\xe6\x0b\x64\x6e\xcf\x6d\xd1\x2c\x16\xd3\x1f\x9b\xb6\x97\xed\xf9\x0a\x99\x0b\x86\xe2\xf7\xd2\x9a\x8d\x2d\xe2\x0d\x47\xf3\xeb\x53\x7a\xd4\x91\xc6\xaf\x90\x59\xc9\xf6\x0a\x99\xb5\x62\xbd\x66\xe4\x96\xe5\xfe\xa6\x10\x56\xfc\xd8\x9b\xaa\xcc\xe1\xfc\x26\xe3\x61\x01\x89\x6f\x12\x37\x41\xec\x79\x65\x6e\xaf\xcb\x77\x35\x79\xb1\x97\xdf\xb8\xa9\xea\xb3\xaa\xb8\x31\xa1\x53\xa4\xbf\xde\x93\xf8\x1a\xef\xbc\x51\x4b\xde\x60\x6e\xb3\xa7\xde\xa4\xb7\x82\xa0\xce\x57\xc8\x3c\x50\xb3\x5f\x13\x88\xb5\xc7\x46\xd2\xdf\x8d\x32\xfc\x9a\x40\xcc\xf8\xee\x57\x47\x73\xf2\xa9\x8e\xe6\x0e\x75\xe7\xbd\x4d\x55\xc1\xd1\xfc\xea\x68\xee\x98\x08\x5e\xd3\x6e\xeb\x3a\x7f\x65\x6e\x3f\xc5\xa7\x7a\xa3\x8e\x1f\x52\xd9\xc0\x0e\xf9\x06\x64\xc6\xac\xfa\x02\x99\x67\x79\x2c\x32\xbf\xc6\xc2\xbc\x3a\x9a\x1f\x24\xcc\x6b\xda\xed\xfd\xfa\x54\x93\x57\xf2\xbb\xd2\x77\x8b\x4f\xd5\xbb\x38\xaa\x5e\x70\xf1\xb8\x20\x61\xbe\xe2\xe2\xc9\x21\xf8\x1a\xef\x9c\x51\x1d\x5f\x99\xdb\x35\x5b\x14\x47\xc0\xe4\x79\x75\x34\x1b\x39\xfe\xca\xdc\x96\x0c\xf9\x9a\x40\x2c\xb9\xda\x23\xde\x19\xac\xf7\x66\x6f\x88\x80\xc6\xff\x8a\x8b\xbf\xcf\x46\xea\x7d\x43\x58\xbd\x7f\xe0\x62\xab\x02\x27\x26\xce\xe2\x57\x5c\xfc\x6c\xab\x42\x58\x99\xfc\xe7\x35\xde\x79\xba\x18\x4a\x98\x44\x18\x1c\x71\xb1\xc1\xe0\xaf\x8e\xe6\x85\x81\xe8\x2d\x91\x51\x9f\x36\x87\xa3\xd9\x95\x53\xa4\xef\xe2\x0e\x7e\x8b\xde\xc6\xec\x53\x53\xcd\x60\x85\x7e\x4d\xbb\x7d\x61\xd1\x7d\xc5\xc5\x26\xb3\x7a\x8d\x77\x96\xfc\xf0\x8a\x8b\xbd\x3d\xed\x15\x17\x6f\x00\xda\x6b\x96\xb0\xe1\x2c\xe8\x68\xf6\x6e\xa3\x57\x5c\x9c\xfd\xae\xf4\xec\x73\x7c\xaa\xb2\x81\x0d\xe1\x05\x17\xcf\x04\xa8\x7c\xc5\xc5\x3b\x59\x94\x18\x63\x8f\xaa\xf3\x5b\x2c\x9a\x9a\x83\x73\xed\x15\x17\xbf\x8a\x3e\x1d\xcd\xb5\xfd\x8a\xc0\xf9\x0a\x99\xbd\x11\xf5\x15\x32\xd7\x62\x3d\x42\x0c\xe7\xda\x7b\xac\xcc\x6c\xff\x7a\x8f\x95\x57\x17\xbd\x66\xe4\xf6\x2a\xc0\x57\x1f\x74\x02\xba\xbe\x2d\xe2\x25\x59\x45\x26\x10\xbb\x61\xc5\xbc\xfa\xa0\x57\xbc\xeb\xd6\xc6\xe8\xfa\x06\x64\x6e\x56\xd5\xdc\xad\xfe\x58\x0e\xc9\xeb\xd3\xb8\xd7\x89\x35\xd6\xb4\xee\x56\x8b\x72\x2a\x94\xf3\x42\x66\xb9\xe8\x6f\x0b\xa6\xba\x45\x43\xdd\x09\x2e\x78\x23\x14\x1a\xd6\xe5\xdb\x62\x6b\x53\x73\x8f\xfb\x52\x59\x63\xdd\xb4\xcc\x4a\x98\x6e\xfc\x20\xe7\xda\x1b\x8e\x66\x57\x7e\x17\x47\x6c\xdf\x35\x03\xf9\xf6\xc7\x72\x66\x8e\x3f\x0e\x51\xe6\x8f\x8d\x77\x46\x0b\x7d\x7b\x04\xdd\x30\x65\x42\xe6\x17\x93\xd7\x6b\xbc\xb3\x61\xb9\xaf\x8e\xe6\xa2\xf8\x05\x32\x57\xd3\x1b\xbe\xc1\xdc\x7e\x7c\xd7\x78\x67\x90\xfb\x2b\x73\xfb\xb3\x66\x21\xb3\x37\x6c\xbe\x32\xb7\x37\xd6\x86\x77\xc8\x31\x88\x22\xf3\x5b\xb0\x16\xbe\xc3\xf9\xf5\x40\x19\x2e\x75\x74\xf2\x57\x47\xb3\x77\xc4\xbf\x26\x10\x3b\x78\x85\x5e\x20\x73\x0b\x79\x6b\xbc\xb3\x81\x18\xaf\xf1\xce\x15\xbe\xcd\x2b\x64\x3e\xd5\x77\xd1\x33\x9b\x87\xaf\x90\x79\x78\x44\x0e\x4d\x7c\x60\xbd\x77\x1a\x54\xe5\xa1\x2f\x73\xfb\xbe\x2d\x2a\xba\x81\x51\xef\x34\x17\xa2\xab\xce\xb4\xdb\x9b\x3c\xff\xaf\xf1\xce\x95\x10\x80\x57\xe6\x76\x88\xc1\xe9\xd6\x56\x1a\x87\xa3\x79\x5a\xb3\x97\xa1\x0c\x9f\x4a\x57\xf6\xc4\x9c\x41\x77\xf4\x43\xe8\x99\xde\x1d\xfc\x8a\x8b\xbf\xcf\xef\x3a\xbf\xdb\xa2\xde\x28\x28\x8b\xaf\xb8\x58\xdb\xfe\x2b\x3d\xbb\x7b\x64\x88\x8b\x07\xe1\x21\xaf\x09\xc4\x3e\x07\xe7\xf1\xa8\x72\xa9\x44\x02\x31\xa5\xca\x13\xa2\xdb\xaa\x4c\x98\x66\x07\x8d\x77\xae\x38\x01\xdf\xc0\xc5\xea\x1e\xa6\xdd\x1e\xc0\x99\xf7\x51\xf5\x52\x22\x81\x8b\xfb\x15\x8d\xf4\xde\x3d\xf0\xda\xeb\xfd\xce\x47\x31\xe2\x3d\x56\xa6\x15\x7a\xc5\xc5\xc3\xfe\xc6\x3d\x56\x9e\x98\x91\x76\x1b\x38\xf3\x4a\xcf\x36\xcf\xc3\x6b\xda\x6d\x09\x54\x2f\xb8\x78\x6e\x65\xb5\x8e\xe6\xac\xa2\xf2\x7a\x49\x28\xc1\x50\xaf\x8e\x66\xaf\x10\x7d\x75\x34\x0f\x85\x8c\xf7\x3b\x77\x42\x96\x5e\x71\xf1\xdd\x2d\x86\xc9\xcb\xef\x2a\xaf\x7e\x69\xe4\x79\xdf\x70\x64\xb0\x1f\xf5\x41\xbf\xe0\x91\x57\x1f\x74\x05\x41\xbf\xcb\x7b\x8e\xdc\x53\x11\x0a\x8d\x43\xe1\x35\x23\x77\xe8\x7b\x11\x0a\x6d\x83\x23\x81\x98\x82\xdd\x7b\xac\x2e\x58\x79\x6f\xdc\x63\x05\xdc\x7e\x65\x6e\xbf\x98\x8f\x5e\xaf\x7e\x96\x23\xf4\xc6\x3d\x56\x8e\xaa\x8e\xe6\xbb\xf8\xd4\x2b\xf9\xa6\x45\xd3\xba\xba\xb5\x75\x34\x9f\xcb\x36\xb3\xb5\x0b\x86\xf1\x57\xc8\x3c\x61\xd6\xbd\x3a\x9a\x0b\xd6\xce\x57\xc8\xdc\xf1\x69\xbe\x42\x66\x29\x07\xef\xa7\x35\x9b\xd8\xc3\xf7\x33\xc1\x94\xba\x44\x64\xe4\x76\xa7\x7f\x6e\x6d\xe5\x4f\x30\xb7\xab\xcd\xd0\x7a\xef\xae\x11\x32\xdf\x2e\x66\x13\x88\x05\xd8\xf9\x22\x0b\x0d\x12\xe6\x53\x2b\x13\x19\x19\xef\x5c\xf0\xdd\xbc\x9f\x37\x08\x10\x2b\xfd\x1a\xef\xbc\x1c\x49\x21\xb3\x40\xfe\xdd\xe6\xba\xb4\x83\xa6\xdd\x1e\x8e\x86\xf1\xce\xa1\x66\x0b\x99\x47\xb6\x66\xb3\xd0\x14\x8b\x3a\x22\x61\x3d\xbd\x32\xb7\x17\x80\xfa\x8d\x04\x62\xd5\xaa\xf4\x56\x54\x9b\x61\xd0\x9c\xa7\xde\xd6\x24\xa2\x1c\xd8\xe1\x58\xb7\xa8\x49\x24\xba\xe0\x15\x75\x2a\xa5\xc7\x20\x23\x57\xac\x8e\xe6\x0e\xaf\xe9\x35\xde\xb9\xdb\x05\x21\x73\x87\x94\xf8\x9e\xb8\xb7\x8b\x05\x6c\xda\xed\x4f\x0c\x62\x02\x31\xf9\xd5\x6f\x24\x10\x53\xe7\x11\x17\x5f\x2a\xe1\xe2\xe2\xae\x82\x27\x2e\x36\xe0\xee\x8d\xfb\x9d\xc5\x11\xe2\x62\x93\xda\xbd\x26\x10\x93\xb1\xf0\x1e\x51\x46\x34\x52\xe2\x04\xf3\xbb\xae\xf0\xce\x34\x8a\xa2\x2a\x2c\x06\xeb\x72\x7e\xf1\x73\x2d\xef\x77\xd6\x98\xb6\x4c\xbb\xed\x1d\x25\x4b\x7a\xf6\x64\x97\x2d\x51\xf3\xdb\x2c\x22\xca\x64\x2e\x2d\x50\x73\xfd\xc0\xf2\xeb\x92\xa9\x0e\xd8\x59\xa2\x66\x53\x30\x2d\x51\x73\xfd\xac\x4a\xe2\x04\x50\x68\x5d\x9a\x80\x90\x0c\xcb\xfb\x9d\x9f\x69\x51\xef\x0c\x5c\xbb\x65\xda\xed\x85\x9d\x79\xa5\xe0\xcc\xd0\x8c\xa0\x67\x63\xb2\x5e\x29\xb2\xee\xd0\xfd\xc8\x12\x56\x7d\xea\x7a\xc6\xd4\xb6\xa4\x67\x7b\x6b\xdb\x4a\x91\xdb\x93\x71\x36\xde\xd9\x54\xd2\x4b\x47\xf3\x61\x52\x56\x64\x09\x43\x27\x5f\xa2\xe6\xb5\x7d\x6a\x64\x0d\xa2\x7b\x45\xda\x6d\xbc\x60\x4b\x7a\xb6\x89\x02\x96\x8e\xe6\x0f\xcb\xea\x8a\xfb\x9d\xf1\x92\x2c\x51\xf3\xdd\x7e\x75\xcd\xca\x32\x14\xda\xe8\x80\x75\xc7\x6d\xaa\xd6\xa3\xe8\x46\x95\x5a\x66\xe4\x3e\xc8\xae\xe5\x3d\x56\x6f\xf7\x5d\x1d\xaf\xc0\xb1\x75\x47\xd0\x0d\x2b\xe1\x0e\xeb\xbd\x3f\xd6\x7a\xcf\x8e\x5b\x77\xc4\xc3\x5a\xb3\x09\xe2\x5e\xbf\xeb\x29\x56\xec\xac\xa2\x9b\x50\x91\x15\x57\x3f\xe3\xfa\x5f\xc1\xdc\x26\xd6\x60\xe5\x48\x98\xc6\x87\x04\xd4\x83\x0d\xb8\x64\x6e\x9b\x61\x7e\x65\xad\xbb\x40\xe6\x65\x28\xb4\x17\x7c\x2c\x01\xb5\x17\x7c\x2c\x99\xdb\xe6\x33\x5c\x39\x72\x99\xfa\x21\x13\x2e\x0d\x6b\xe6\xa8\x1a\xd3\xaa\xd4\xba\x01\xf2\x2b\xe2\x9d\xb3\x35\x7b\x5b\x2e\x34\xe0\xe5\x3d\x56\x8f\x3b\xce\x7b\xac\xcc\xed\xb9\x4a\xa4\xb1\xe5\xc7\x3a\x9a\x2f\x4c\x85\xcb\x78\x67\xef\x96\x5d\x45\x83\x09\x04\xdd\x55\x22\x08\xc5\x1f\x47\xfc\x20\x6b\xdb\x78\xe7\x6f\xfb\x63\xad\xbb\xd3\xa7\xde\x1e\x8b\x91\x79\xc5\xd5\xcf\x9f\x4f\x23\xe3\x3a\x53\x56\xa4\xc3\x61\xcf\x5c\xa6\xdd\x7e\x86\x4f\x9d\xdf\xcb\x0f\x85\xb7\xc2\x56\xe9\x98\x73\x8b\x09\xa8\x2f\x77\xab\xcc\xed\x07\xca\xd0\x92\xb9\x5d\x30\x5f\xaf\xea\x95\x7c\x80\xf1\x55\xed\x2f\x62\x7f\x99\x76\xdb\xab\xd6\x96\x8e\xe6\xe2\x52\x31\x81\xd8\xbd\x2d\x32\xbf\xda\xf4\x56\xd5\x00\xa8\x08\xf5\xf6\xe7\x09\xe4\x5c\xde\xfe\x6c\xbe\x97\x25\x6a\xd6\x0d\xbd\xc2\xd1\x5c\x7d\xd7\xac\x2c\x98\x08\x56\x0d\xc7\x2b\x4f\x45\xcd\x17\xba\xd6\x12\x35\x67\x4c\x04\x4b\xd4\xbc\xb1\x2a\x2f\x51\x73\x59\xfe\xd8\xa3\x0a\xf4\xba\x44\xcd\x52\x34\x97\xf4\xec\xcb\xcd\x0e\x6a\x9e\x86\x4e\x2f\x51\xb3\xfa\xed\x8a\xdb\x9f\x39\x5e\x97\xb7\x3f\x9b\x92\x68\x79\x8f\xd5\x13\xef\x46\xee\x56\x7a\xd4\x0c\x22\xc3\xca\xb1\xa4\x67\x5f\x6e\x76\x13\x88\x79\x99\xe3\x8a\x2c\x61\xd8\x31\x96\xf4\xec\x86\x12\xbe\x40\xcd\x53\xfe\xfc\x12\x35\x2f\xbb\x10\xf4\xec\xe1\x53\x39\x6f\x6e\x2b\x51\xb3\xc0\x61\xf5\xc8\xed\xe9\x87\xe8\xaf\x37\xbe\x2d\xe9\xd9\xcb\xd3\xa7\x9b\xbb\x15\xbf\xf3\x92\x9e\xbd\x15\x14\x41\xcf\xfe\xac\x59\xe2\x44\xb6\x48\x7f\x4f\xb4\xca\xa3\x0a\x5b\xe2\xf2\xb2\x2a\xef\xd1\x5e\x71\xfb\x33\xa9\xbd\xd6\x30\x12\xc1\x0d\x2b\x6a\xee\x0a\x64\xd3\x6e\x1b\xf0\xb2\x44\xcd\x6b\xfd\xca\xb6\xbf\x64\x6e\x1b\x39\xb2\x04\xd4\x15\xcb\xe1\x32\x14\xfa\x3e\x7e\x45\xa6\xab\x3b\x7d\x08\x30\xb3\xef\xb2\xd4\x6f\xd8\xaa\x6b\x98\xb5\xc3\x31\x17\x50\x9b\x67\x66\x09\xa8\x5b\xbc\x6b\xc2\x25\xd7\x67\x38\x9a\x31\x3d\x2d\x99\xdb\x13\xdc\xb7\xc2\xd1\x8c\xde\xb5\x0c\x85\x6e\xc4\x0d\x2d\x00\xf5\x18\xf8\x43\xd7\xd4\x31\xf7\x58\xb3\x19\xd7\x9d\x11\x43\xa1\x13\x54\xa5\x35\xe3\xa2\x64\xdf\x55\x2b\xfb\x7c\xea\x52\x57\x0e\xe8\x68\x1e\x51\x34\x57\x9e\x6b\x5b\xe6\x76\x8b\x36\x1b\x2f\xf9\x58\xb3\x8e\x66\x35\x2b\x13\x88\x99\x15\x61\x99\x91\x7b\x63\x8a\x59\x66\xe4\x16\xba\x2e\x13\x88\x99\x1a\x71\x99\x40\x6c\x80\x55\xd7\x13\xb7\x6d\xb2\x3e\x05\xd4\xda\x33\x97\xcc\xed\xb3\x7c\x17\x0e\x49\x57\xb0\x3f\x1e\xcd\x40\xb0\x65\xda\xed\xd7\xa1\xd3\xd1\x7c\xbb\x3d\x4d\xbb\x3d\x87\x35\x1b\x44\xa6\xd2\x62\xbc\xf3\xed\x81\xf2\x28\xba\xfd\xae\x80\xba\x62\xce\x5d\x32\xb7\x6f\x95\x43\x13\x88\x65\xd7\x86\x80\xba\xe0\x4d\x5b\xe1\x68\xf6\x94\x37\xed\x76\xf7\x04\x79\x9d\x5f\x97\x99\xcc\x6d\xd9\x1a\x4b\x40\xed\x15\x1e\x4b\x40\xbd\x15\xdd\x6f\x18\x00\x19\x8d\xb8\xfd\x39\xbe\xab\xef\x46\x45\xc5\x04\x62\x92\x91\x96\x69\xb7\xc5\xb6\xeb\x35\xe3\x3a\x46\xad\x25\x6a\x4e\x20\xf7\xb5\x34\x78\x12\x65\xb3\x74\x34\x9b\x94\x7b\x2d\x33\xae\x2b\x15\x97\x47\x15\x68\x6e\x2d\xb7\x36\xe1\xa2\x6b\xc5\xfe\xf5\x43\xa0\xaa\x79\x5b\x54\x0b\xc5\x80\xb0\xbc\xfd\xb9\xc1\x2f\x5a\xd2\xb3\x35\xf0\x2e\x51\x73\x51\x37\x16\x35\x57\x55\x74\x51\x73\x3d\x16\x4d\x65\xe0\xf1\xba\xcc\xcd\xeb\x84\x7e\x71\x0f\x1d\x5d\x08\xd4\x8c\xd5\x6e\x79\xfb\xf3\xe7\x68\x98\x76\xdb\xeb\x6c\x96\xf1\xce\xc9\xdd\x0d\x6a\x9e\xcb\x1d\x2a\x6a\x1e\x36\x52\xd4\xfc\xa9\x7a\x05\x6a\xc6\x83\xbf\x44\xcd\xd9\xbd\xf0\x99\x51\x3f\xf9\xae\x28\xc3\x85\xf4\x45\xfc\xbe\x3f\x36\xf2\xc2\xbd\xff\x89\xaa\x30\xa5\x2e\x1d\xcd\x45\x55\xc4\x78\x67\x3d\xf8\x6b\x87\xd6\x4d\xab\x74\x34\x3f\xd0\x4a\x17\xa8\xb9\x17\xbc\x6f\x6b\x9b\xd0\x52\xb5\xcd\x2c\x61\x9f\x82\xc2\xdb\x9f\x07\x7e\xae\x15\xf4\x6c\x37\xac\x97\x55\x65\x95\x76\xe3\x9d\xc7\x75\xff\x4a\xec\x0b\xa8\x3b\xa1\xb5\xcb\x7b\xac\xbc\xe1\x6b\x99\x91\x7b\xa9\xa3\x6e\xb7\xb6\x0b\xd2\x7b\xac\xa4\xa7\xae\x1d\xb6\x5f\xa6\x5e\x1f\x74\x72\x82\xbc\x18\xfa\x75\x82\x04\xd4\x4d\x85\xc7\x50\x68\x03\x7e\x97\x8e\xe6\x7b\xfb\x63\x83\x32\xd4\xba\x0d\x85\x5e\x9e\xbc\x27\xd2\x14\xd3\x05\x01\x75\x12\x52\x9d\xc8\xfd\x68\x55\xc1\xa9\xf0\x43\xd2\x1d\xab\x6d\x96\xc9\xac\xf2\xa0\xa3\xf9\x6b\x7e\x88\xad\x6d\x98\xea\x12\x50\x57\xf4\xea\xef\x8a\x5c\xa6\x95\xa2\x53\x8f\x8a\xfe\x79\x8f\xd5\x61\xc7\x7d\x02\xea\xc1\x46\xf8\x22\x81\xd8\x6d\x55\x5e\x86\x82\xfd\xe4\x33\x81\xd8\x87\x29\xe6\x33\x81\x98\x2e\xdd\x2f\xe2\x9d\x89\xf1\xfc\xbc\xc7\x6a\x25\x8b\x41\x0f\xcb\x14\x35\x20\x3c\x7e\xd7\x78\xe7\x62\xab\xcc\x32\x84\xf9\xe8\xbb\x22\x95\x81\x5d\x70\x6b\x23\x60\x3f\x01\xf5\x8d\xed\xe5\x33\xde\xb9\x63\x4d\xfa\x74\x43\x4b\x06\xf8\x02\x50\xe3\x2b\xff\x92\x41\x37\x28\xe1\x9f\x80\xda\x43\xe1\x13\x50\x4f\x7c\x8b\x5f\x0a\x26\xb3\x1f\x62\xa9\x9b\xa4\xfa\x4b\x26\x22\x6e\x7e\xd7\x19\xc4\xb8\xf4\x99\x22\x6c\x5d\x16\x11\x56\xde\x2e\xf1\x05\x64\x46\x74\x7f\x42\xe6\x89\x5e\xfd\x99\x58\xfb\x7d\x2d\xaa\x6c\x00\xd0\xbe\x3b\x1c\xaf\x0c\xac\xb8\xb8\xa0\xb1\x7f\xb7\xb8\x89\x93\xeb\x33\xa2\xd9\x33\xf1\xf3\xa6\x2a\x13\x79\x7d\x91\x22\x8c\x05\xfc\x45\x8a\x30\x16\xe1\x27\x37\xdb\xf8\x97\xcf\xc4\xda\x6b\x58\x33\x87\xaf\x49\xb4\x3e\x71\xb1\xd9\x09\x3e\x70\x71\x97\xd6\xf5\x79\xbf\xf3\x65\x8f\xc4\xc5\xe6\x6b\xfa\xb2\x2c\x11\xb8\x76\x5f\xe0\x62\xe4\xfc\x17\x8e\x66\x0c\x53\x1f\xb8\xb8\x57\xce\x97\xcf\xc4\xda\xca\xae\x2f\x08\xd8\x2e\x7e\x13\x6b\x6f\x17\x21\xb8\xb8\x77\x8c\x2d\x9f\xb8\xb8\xe1\x16\xf9\xc4\xc5\x06\xdc\x7d\xe2\xe2\x0b\xca\xd0\x17\xf7\x3b\xdf\x56\xa5\xe3\x15\xdd\xf8\x8b\x3c\x60\xd9\x9a\xe3\xa6\x39\x3a\x18\xb8\x18\x44\xf6\x89\x8b\xe5\xeb\x7e\x45\x02\x27\xb6\xa6\xcf\x3c\x60\xcb\x19\x94\x80\xdd\x90\x39\x9f\x04\xec\x5c\x2c\xa2\x6c\xc8\xe5\xfe\x8a\xc4\x89\xe3\x77\x8d\x35\x70\x6b\x14\x95\x2b\xd4\xd4\x0f\x5c\x3c\xc7\x67\x33\xe8\x6f\x1b\x3e\x75\x7e\xa7\x55\xc5\xfd\xce\x56\x65\xa2\x78\x00\xcb\x27\x01\xbb\xef\x5f\x89\xfd\xaf\x7a\xc9\xa0\x7d\xd7\x07\xbd\x5c\x09\x42\xe6\x58\x45\x72\xb3\xc5\x6e\x9f\xc1\xce\xf2\xba\xbf\x80\xcc\xa8\xf7\x9f\xc1\xce\x63\xfb\xe3\xb8\xfa\xd9\xaa\xbc\x0a\xf9\xf8\xae\x43\x31\xfc\x71\x70\xd1\x99\x20\x83\x9d\x1f\x48\x23\x5f\xf5\x12\xba\xe4\x53\x4d\x04\xaf\x55\xb1\xb5\xdb\x6d\x51\xe1\xec\xb2\x11\x32\xb7\x66\xd1\xe0\x7d\x4c\xfd\x5f\x33\xec\x02\x35\xfb\x6b\x9a\x08\x14\x74\x72\xb3\x13\x67\xd3\xd7\xe2\x52\x36\x26\x48\xc8\xbc\x1c\x0d\xb9\xd9\x3b\x6a\x96\x53\x01\x3a\xfb\x22\xa2\x19\x45\xfa\x03\x32\x0f\x39\x33\x9f\x37\x55\xbd\xd1\x0c\x71\x44\xf6\xa9\x26\x20\x70\xee\x27\x64\x9e\xd3\xa7\xf4\xf7\x55\x2c\xc8\xcd\x7e\x1d\xe7\x1e\xf7\xa5\xfa\x34\x12\xb7\x32\xdd\xde\x54\x95\x5d\xf9\x7f\x5c\xfd\x4c\xcd\x3d\xee\x4b\x65\x34\x84\xcc\xa6\xde\xfd\x84\xcc\xde\xb6\xf0\xe9\x68\x1e\x1c\x91\x1f\x90\xb9\xbd\x40\x83\x2f\xae\x7e\xf6\xd4\xd3\xd1\x7c\x9c\xdf\x3f\x20\x33\x83\x23\x37\xdb\xfc\x45\x9f\x8e\x66\xfd\x92\xdf\x1f\x29\xc2\xe8\xe0\xf0\x92\x50\x4f\x01\x13\x6b\x9b\xa2\xf0\x1b\x71\x73\x13\x53\x66\x62\xed\x34\x7d\x57\x56\xdb\x63\x11\x65\xa3\x61\x46\xfe\x74\x34\x37\x50\xe4\x27\x2e\x3e\x0a\x3a\x23\x9a\xfb\x65\xcd\x3a\xd6\x3d\xc8\x8c\x68\x96\x9a\xf5\x89\x8b\xbd\x3b\xe3\x1b\xc1\x01\xf3\xbb\x72\xd1\x95\xb7\x46\x34\x6b\x96\xfc\x86\x61\x44\xe8\x8a\x9f\x11\xcd\xb7\x27\xb5\x04\xec\x07\x6b\xc3\x37\x23\xaf\x0e\x0b\xc9\xc4\xda\x62\x9f\xcf\x88\x66\x03\xdf\x3e\x1d\xcd\xaa\xe8\x9f\xf7\x3b\x5f\xaa\x31\x71\xbf\xb3\xa7\x9e\x29\xc2\xae\xf8\xae\x26\x2f\xc0\xdd\x67\x44\xf3\x88\x9a\xe5\xde\x43\x77\xfc\xcc\x03\xa6\x61\xea\x33\x0f\xd8\x80\x83\xf1\xe9\x68\xbe\x8f\x55\x81\x8b\x65\x6c\x7e\xde\x54\x65\x96\x8f\x4f\x5c\xec\xfd\x02\x9f\x8e\x66\xaf\x2d\xfb\x24\x60\x6b\xe0\xfd\x1e\x09\x9c\xcd\xa7\x72\xc0\xc0\x98\xdf\xa3\xf7\xcd\xbd\xe0\xfd\xce\xfd\xf1\x43\x71\x69\x26\x0b\xd8\x88\xe6\x3b\x5a\x15\xd9\x68\xfd\x90\xb1\x42\x0e\x9d\x11\xcd\x3d\xf9\x54\xbb\xc7\xb2\x19\x71\x49\x28\x13\x6a\x44\xb3\x77\x8b\x7c\x6f\x24\x4e\x67\xca\xc4\xc5\x21\xfa\x74\x34\x9b\x1e\xf0\x0b\x02\xf6\xf9\x95\x4b\xf7\x7b\x85\x90\x51\x8f\xd6\x6c\x95\x16\x53\x84\x5d\xc3\x8f\xca\x55\x56\xc1\x8b\x9c\xdb\xf8\x26\x3e\x53\x84\xc5\xa9\x6d\x8a\x30\x8d\x3c\x5f\x04\x3b\x63\x0c\xfc\x5e\xe9\x61\xee\x9a\x37\x12\x99\x5a\x95\x1c\x21\x1c\x01\x9f\x90\xf9\xf2\xe4\x95\x9b\x1d\xb2\xda\x14\x61\x63\x58\xf4\x7a\x08\xa7\xde\x9c\xdb\xaf\x07\x8a\xc1\xce\x2f\xc1\x95\x5f\xe4\xdc\x86\x6a\xf5\xc9\xcd\x2e\xce\xa6\x90\xf9\xae\x7e\x57\x6b\x36\x5e\xe9\x4f\x6e\xb6\x94\xd4\x4f\xc8\x7c\x63\xbe\xfe\xe4\x66\x8b\xbe\x3f\xb9\xd9\x47\x89\x0a\x64\xee\x9f\x72\x60\x69\xed\x54\x95\xd2\xd1\xec\xed\x36\x9f\x90\xd9\x0b\x95\x3e\x53\x84\x89\x46\x3f\x21\xb3\x36\xc9\xcf\x14\x61\xde\xc0\xf8\x09\x99\x5f\x2c\x15\x9f\x8e\xe6\x6b\x58\x95\xdc\x6c\xc8\x1b\x9f\x90\xb9\x40\x73\xfa\xe2\xa6\x2a\x8c\x1e\x9f\xdc\xec\xa6\xd8\x37\xa2\xd9\x8b\xab\x3e\x23\x9a\x9b\xe2\x37\x52\x84\x81\xfa\xbf\xcf\x30\x93\xcf\xef\xca\x99\x01\x9c\x7e\x46\x34\x6b\xfa\xfe\xe2\xa6\x2a\x08\x8d\x9f\x29\xc2\x24\xad\x7d\xdb\x60\xf6\xc7\xa7\xe6\x5d\x51\x0c\xee\xe0\xa2\xd3\x5f\x21\x73\x8e\xa7\x7a\xa3\x60\x5c\x7c\x3a\x9a\x8b\x27\x88\x89\xb5\x07\x21\x84\x9f\x8e\xe6\x8a\x3f\xf4\x0b\x6e\xb6\xb2\xcb\x88\xe6\x82\x0d\xe4\x33\xa2\xf9\xbb\x6d\xa4\x26\x11\x17\xa1\x89\xb5\xef\xe2\x8f\xcd\x99\x2f\x5e\xf3\x7e\x67\x03\x51\xbf\x13\x9c\x37\xc6\x4a\x6e\xf6\x84\xbc\xf1\xe9\x68\x36\x97\xe0\x07\x2e\xee\x19\x76\xca\x77\x22\x6c\x8a\x81\xd5\xd1\xbc\xd5\x10\xc0\xc5\x63\xab\x99\x78\xbf\xb3\x89\x0e\x3e\x71\xf1\xed\x69\xab\xa3\x59\x8b\xee\x67\x8a\xb0\xec\x61\x24\x2e\x5e\x51\x34\xb6\xc2\x83\xcc\xc4\xda\x13\x6e\xd2\x67\x8a\x30\xb7\xe4\x0e\x5c\xcc\xa1\xb0\x25\x60\x77\x3c\x77\x5b\x47\xb3\x17\x93\xed\xb8\xdf\xf9\xb6\x18\xaa\xc8\x4b\xd1\x3b\x02\x70\xd9\xef\x2b\x92\xab\xf8\x14\x55\xe4\x19\x7e\xc8\x94\x86\xc7\x22\x47\x95\xc4\x9e\x2d\x2e\x5e\xb7\xc5\x88\x68\x1e\x14\x45\x19\xa8\x13\x3b\xee\x77\x86\x6b\xb7\xc1\xc5\x43\xf0\xbe\x8d\x68\x56\xe7\xd9\xd2\xb3\x33\x1a\xd1\x36\xa2\x39\x63\xb3\xdd\x26\xd6\xbe\x58\x75\xdb\x88\xe6\x05\x8b\x66\xc7\xfd\xce\x88\xa0\x1d\x11\xcd\x8e\x86\xb8\x78\x5c\xd6\x4c\x7f\xc7\x2f\xaf\x50\xdf\x42\x66\x9d\x02\x5b\x1f\xb4\x06\xbd\x9d\xcc\xfe\xc7\x82\xdc\xde\x54\x75\x25\xdb\x80\x0f\x5a\xbb\xf1\xd6\x07\xed\x8d\xf0\x3b\x19\x11\x89\xec\xda\xc9\x60\x76\x94\xff\x2d\x73\x3b\x23\x25\xb6\x3e\xe8\xcf\x66\xdc\x8a\x32\x56\xe0\x16\x50\x1b\xe5\xb7\x4d\x11\xe6\x95\x6d\xdb\x60\xe7\x81\x22\xbd\xbd\xa9\xca\xac\x50\x3b\x00\x35\xae\xc6\x7d\x1b\xf1\xda\xad\x2a\x12\x4d\xfb\x54\xa6\x3a\x02\x67\xdf\x72\x84\xd8\x71\xdb\x9c\xdb\x75\xfb\x5d\xc3\xc4\x38\x9b\x76\x00\x6a\x0e\x94\x2d\xa0\x7e\xd0\x6f\x77\xdc\x54\x85\x70\xde\x32\xb7\x35\x7d\x6f\x00\xf5\xf0\x06\xf9\x6d\x44\xb3\xc1\x14\x5b\x47\xb3\x37\x1a\xef\x88\x68\xc6\xb5\xba\x73\x6c\x6d\xab\xf2\x66\x1f\x88\x67\x3b\x9b\x9c\x01\x26\xe1\x36\x45\x58\x3b\x36\x83\xfe\x2a\xab\xb7\x29\xc2\x2e\x50\xc6\x8e\xab\x9f\xa7\xc5\x70\xac\x5b\x15\x5b\xdb\x1b\x79\x76\x8e\xfb\x52\x29\x46\x44\x33\x6e\x82\x6d\x62\x6d\x4d\x6d\xbb\xc4\x75\x18\xf4\xa8\x84\x01\x81\x36\x17\x53\xde\x35\x8b\x26\x2b\x40\x59\xda\xc5\x44\xb5\x58\xc0\xb6\x80\x3a\x3b\x56\x02\x6a\x35\xba\x6d\x8a\xb0\x03\x53\x6b\x9b\x58\xdb\x44\xf7\x3b\x6e\xaa\xe2\x3c\xdd\x7f\xdc\x54\xe5\x87\x4c\xce\xb0\xac\xca\x48\x84\xe4\x77\xf5\x46\xa1\x48\xef\x6a\x2c\x09\xd8\x67\xeb\x68\xbe\xb0\x48\x6f\x13\x6b\x9b\xa5\x70\x8b\x9a\xcd\xd1\xbd\x45\xcd\x57\xf5\x5d\xbd\x33\xca\x01\x51\xf3\x1f\x45\xfb\x6b\x17\xc2\xd1\x5c\xac\x4a\xa6\x7a\xf2\x29\xa2\x7b\x54\xbf\x1b\xaa\x08\x2b\xd6\x88\xe6\xae\x74\xaa\x91\x33\xdf\x66\x18\xa1\xff\x59\xa4\xbf\x47\x71\xd4\x22\x1b\x2d\xdd\x37\xa2\x79\xb8\xad\x74\x34\xe7\xe2\x53\xef\x08\xc0\xa2\xbb\xa5\x67\xcb\xfd\xd8\x2d\x38\x7e\xac\x0d\x6f\xaa\xba\xf0\x0e\xef\xa6\xc1\xc4\x45\x68\x62\xed\xe9\x1c\xb5\x60\xe6\x5b\x95\xde\x19\x22\x5e\xb7\x8e\xe6\xe9\x2c\x44\x1e\x30\xb4\x8b\x2d\x3d\xdb\x6b\xdf\x77\x93\xde\xa9\xe8\x36\xb1\xb6\x59\x0a\xb7\x8e\xe6\x0f\xdd\x72\xeb\x68\x5e\x84\x0f\xec\xc8\x03\x86\xda\xb6\x45\xcd\xaa\x04\xdb\x88\x66\xc9\x1e\xdb\x88\xe6\xed\x31\x17\xd7\x51\xb9\x44\x45\xcd\x59\x89\xd4\x45\x19\x00\xe1\xdd\xe5\x44\x75\x3f\x64\x9e\x28\x5c\x48\x5b\xd4\xfc\x73\xda\xfe\x7d\xb1\xdf\x35\x98\x5c\xb6\xd0\xa9\x47\x5b\xd8\xde\x54\xb5\x9a\x5f\x41\x94\x99\x13\x75\x1b\xec\x7c\x7b\x28\x98\x73\x5b\xdd\x78\x1b\xec\x9c\xc0\x8c\xdb\xab\x9f\x37\x4c\xd1\x3d\x22\x98\xdd\xaa\x8c\xf0\x75\x41\x8e\x08\x66\x67\xc9\x01\xa8\xdb\xf4\x20\x96\xb9\x3d\x1f\xab\x32\x4f\x05\x9a\xe4\xd6\xd1\xec\x95\xe2\x5b\xe6\xb6\x57\xea\xec\x11\x37\x37\xb1\xa8\x04\xd4\x22\xf7\x1d\x39\xb7\xb3\xdf\x65\xa9\x3f\x9e\x20\x32\xb7\x25\xcc\x6f\xaf\x7e\x1e\xe8\xc6\xdb\x9c\xdb\x06\xa4\x6f\x01\xf5\xf4\xbb\x3a\x9a\x57\xf1\xc7\x26\xaa\x05\xd7\x6f\x01\xb5\x34\xa7\xad\xa3\xd9\x3c\xae\x7b\x06\xc0\xa4\xfb\x11\xd1\x0c\xf6\xd9\x3a\x9a\x2f\x65\x88\x8e\xe6\x77\xf8\x21\x93\x15\x4c\x9f\x4a\x0f\xcb\x56\xa5\x41\xac\xda\x66\x99\xea\xd8\x8b\xb6\x8e\xe6\x0b\x9b\xde\x8e\x9b\xaa\x3c\x9a\x23\x45\x98\x62\xff\x91\xa9\x0e\x1b\x67\x3f\x3a\xe6\xc0\xb9\xdb\x88\x66\xef\x56\xdb\x71\x53\xd5\xb0\xaa\xc8\xee\xc8\x52\x31\x45\x58\x1f\xd6\x2c\x47\xa8\xfa\xd4\xeb\x6c\x54\xe1\x64\x6e\x7b\x9b\xe1\xfe\x03\x50\x5b\xb3\x37\x55\x79\xe8\xcb\xdc\x36\xc1\xc2\x7e\x62\x7e\xa9\x59\x40\xfd\x61\x99\xd9\xaf\x41\x37\x10\x92\xf7\x2b\x33\xbf\xfb\x63\xd6\x73\x77\x31\xe8\x68\x3e\x9f\xef\x86\x2a\x42\xf7\x8d\x68\xf6\x42\xd8\x2d\x6a\x36\xef\xeb\x7e\xe3\x7a\x17\x8b\x31\xbf\xf4\x08\xd4\xdc\x8e\x52\xc2\xc4\xda\x3b\xaa\x32\x02\xd4\xf5\xfc\x46\x84\xaf\x6d\xb6\xbf\xaa\x4f\xaf\xc9\x55\x94\x4e\x4b\x03\xaf\xaa\xa3\x8e\xe6\xe5\xc6\x91\x9e\x6d\x3a\xe8\x6d\x62\xed\x1e\x3f\x8e\x30\x4f\x8b\x26\x1b\xc1\xef\xbc\x4d\x11\x66\xe4\xe6\x16\x35\xc7\x21\x68\x44\x73\x55\x84\xea\x68\x7e\xe3\xc7\x5a\x09\xec\xef\x0a\xce\x8c\x45\xfa\x6b\x3c\xfb\x5e\xe1\xbb\x61\xa9\xe8\x68\x36\xd7\xdc\x36\x0f\x58\x56\xd9\x88\x88\x66\xbb\xaf\xa3\x79\xab\xa8\x98\x58\xbb\xa9\xa7\x49\xcf\x36\x11\xdf\xfe\xe2\xd2\x4c\xab\xd2\x1b\xf5\xfa\xae\x06\xa2\xec\x53\x93\xab\xe0\xf7\xd9\xa2\xe6\xef\xb2\x66\x83\xe6\xf0\x38\xec\x4f\x79\x45\xf4\xc4\x36\xb1\xb6\x6c\xc9\x2d\x6a\x2e\xf1\x63\xf7\x2f\xc6\x99\x6d\x44\xb3\x99\xe8\xb6\x8e\xe6\xef\xf9\x55\x4e\x9e\x1d\x80\x1a\xfa\xcd\x0e\x1f\xb4\xba\x93\xcc\xed\xea\x7e\xdc\x11\xbc\xcf\x57\xbc\xfa\x39\xdb\x60\x01\xf5\x02\x9c\xee\x1d\xf4\x3f\x86\x62\x07\xdd\x91\x55\xb4\xcd\x43\xe2\xa1\xb6\x23\x78\xdf\xa7\x32\x5d\xd5\xd9\xbc\xfa\xf9\xdd\x3e\x35\x0f\x49\xb1\x66\xef\x08\x20\x6a\x6c\xcb\xdc\xbe\x95\xc6\xde\x54\x25\x03\x6a\x1f\xb5\x32\xd7\x76\xa4\x08\x53\x79\xd0\xd1\xfc\x2a\xe8\xbc\xa9\xca\x74\xe5\x3b\x72\x6e\x4f\x7f\x2c\xa0\xc6\xf8\xb0\x23\xe7\x36\x8c\xaf\x2d\xa0\xbe\x3d\x40\x8f\x5a\x37\xb6\xd0\x7d\x22\xef\x8a\x4f\xbd\x94\xad\x5a\x34\x28\xc3\x75\x72\x22\x6f\x92\x4f\x8d\x87\x55\xef\x3a\x66\xef\xc4\x05\xb6\xe3\xea\x67\xf4\xf9\x63\x44\xb3\x39\x4c\x8e\x8e\xe6\x6b\xfa\x54\x37\xd6\xb6\x68\x32\x0a\x34\x9c\x23\xa0\x4e\x38\xf4\x8f\x80\xba\xc3\x28\x3e\x3a\x9a\x67\xf7\x5d\x83\x50\xd0\xe8\x8e\x80\xba\x63\x01\x3b\x7f\xa4\x08\xf3\x5d\x51\x06\xdb\xe4\x78\xf5\x73\xe1\x20\x3b\xde\xef\x5c\x6f\xdb\x8c\x41\xec\xc6\xac\x7a\x74\x34\x3f\x97\x55\x69\x40\x40\x33\x39\x3a\x9a\x37\x2a\xeb\x49\x41\x67\xa5\x0b\xa6\x08\x4b\xac\xf6\x93\xe2\x68\xae\x14\x45\x19\x9f\xef\x7a\xd3\x1c\x67\xc4\x49\xe6\x11\x72\xac\x04\xd4\xde\x13\x74\x4c\x11\xb6\xd0\xab\x4f\x92\xf3\x36\x2c\xb2\x9e\x9f\xa8\x8a\xf5\xac\x35\xe9\x18\xef\xac\x64\x3b\x49\xba\x63\xf3\x5d\xe3\x61\xd1\xc9\x4f\x8a\x4b\x42\x69\xa4\xf7\x3b\x17\x0c\xad\x27\x50\x33\x72\xe0\xe8\x86\x36\x67\xf5\x91\x9e\xdd\x9c\x50\x6f\xaa\xba\x51\x95\xcf\x1d\x8e\xf5\x46\x51\x37\x25\x86\xb8\x63\x8a\x30\x93\xbc\x1d\xdd\xd0\xf9\xf6\xbb\xde\x44\x96\x7c\x8a\x16\x7a\xa6\x55\x79\x27\xc2\xb0\x55\xee\x5f\xe4\xc6\xf1\x7e\xe7\x43\xac\xf4\x11\x35\xeb\xd7\x3b\xe6\x01\xdb\xd8\xe5\x8e\x37\x55\x65\x18\x44\x27\xe2\x9d\xed\x82\x6e\xe8\xc2\xa1\x70\xb2\x41\x91\xce\x82\xf1\xce\x15\xca\xd0\x31\xde\x39\x15\x8b\x72\xde\xd0\x00\x4f\xf6\x4e\x04\xc7\x59\x37\xb4\x57\xb4\x9c\x6c\xd0\xdc\xeb\xbb\x71\xf3\x9a\x4f\x9d\xdf\x6a\xd1\xa3\x19\xb7\xc8\xc9\xc1\x89\x62\xa7\x48\xcf\xfe\x1c\x67\x51\xb3\x69\x85\x8e\xf1\xce\x0f\x26\x94\xa3\x1b\xba\x21\xbe\x4e\xd1\xe0\xc9\xde\x3f\xa2\xe6\xfc\xfe\xca\xc8\x73\xcc\xb9\x9d\x6f\xeb\xd1\x43\x8d\x65\xf8\x04\xa0\x76\xc7\xc9\xdc\x9e\x00\xdb\x63\xce\xed\xa3\x48\x29\xe1\xa6\xf4\xc7\xda\x7e\x01\x6b\x27\x52\x84\xb9\x2f\x4a\x84\xba\xfb\x21\xe3\x25\x41\x67\x27\x3c\xd4\x58\xc3\x4e\x91\xa9\x0e\x84\x3c\xde\x54\x35\x5d\xbd\x02\xea\x17\x7e\xd1\x31\x45\xd8\xc4\xe8\x71\x00\xd4\x6d\x83\x41\x4e\x30\xb7\x9b\x3f\x96\xde\xf9\xf9\x63\xb3\x77\x62\x90\x3f\x86\x42\xbf\xdb\xef\xaa\x95\x61\x13\x38\x86\x42\x17\x94\xc3\x53\x23\xdb\x21\xeb\x53\x40\x3d\xba\x8d\x64\xa9\x7b\x33\xe0\x31\xde\xf9\x89\x66\xc8\x89\xc2\x2f\x70\x04\xd4\x85\xc3\xf7\x00\xa8\x87\x87\xe0\x69\x26\xe6\x85\x4b\x76\xe2\xa6\x2a\x18\x7d\xa7\xa9\x85\x62\x01\x3b\x2d\x2e\x65\x63\x52\xbc\xfa\x59\xe5\xe1\x08\xa8\x1b\x14\xe2\x23\x73\xdb\x98\xd6\xa3\x1b\xfa\xc3\xff\x7b\xc2\x0d\x0d\xfd\xe6\x98\x22\xec\x53\x4a\x78\xf5\x73\xab\x56\x15\x37\x37\xd1\x23\x01\xf5\x1b\x8d\xd4\x4d\xa9\x60\x6f\xfa\x6e\x94\x12\xba\xa1\xbd\x64\xf0\x98\x22\xec\x75\x34\x4c\x11\x56\xdd\xad\x32\xb7\xa7\x5b\xac\xc7\xd1\xcc\x2c\xf4\x88\xbc\x60\xac\x74\x43\x9b\x70\xf5\x74\x23\x11\x86\x3f\x56\x94\xa1\x76\x1e\xdd\xd0\x39\x59\xf4\xaa\x6b\x94\xf0\x03\xa0\x9e\x97\xab\xdd\x14\x61\x21\x8d\x75\x43\xeb\xb6\x3b\xa0\xe6\xb1\x40\xfd\xc7\x78\xe7\x38\x4f\x45\xcd\x86\x6d\x9e\x11\xcc\x7c\x3a\x28\x6a\x36\x3c\xf6\xc8\xdc\x4e\xcb\xa7\x88\xee\x45\xa0\xd0\x09\xe6\xb6\x72\x7e\x44\x9e\x28\xf6\xd1\x30\x28\x12\xdc\x74\x74\x43\x57\xbb\x30\xb4\xed\x63\x87\x3c\xba\xa1\xab\x07\xe8\x88\xfb\x61\x99\x5f\xef\x77\x3e\x8e\xb3\x89\xb5\x6b\x74\x41\x83\x49\x34\x43\x51\x86\xb6\x7f\xa6\x28\x43\xb1\x1f\xa8\x19\x64\x74\x44\xcd\xea\xe4\xc7\x3c\x60\xfa\xc8\xce\x0c\x79\xc5\x68\xc4\xfd\xce\x60\xbd\x63\x1e\xb0\x04\x0f\xfc\x84\x1b\xda\x95\x13\x79\xc0\x9c\x6e\xe3\x9d\x0f\x84\xb1\x33\x23\x35\x87\x45\x45\x37\x8a\xe8\x01\x35\x4f\x13\x52\x9d\x19\xa9\x1b\x98\x05\x51\xb3\x77\xe9\x1e\x13\x6b\x5f\xee\x50\xdd\xd0\x13\x73\xc4\x11\x35\x27\x05\x94\xa8\x39\xc1\xf3\x39\xc6\x3b\x5f\x4a\x42\xe9\xd9\xf9\xb2\xe8\xfc\x2a\x55\x22\xb1\xb6\xb3\xaf\x1b\x3a\x8d\x5f\x19\x79\xce\xa3\x16\xea\xc8\xc8\xdc\x3e\x8a\x05\x43\xa1\xcf\xb4\x68\xca\x2c\x4c\x04\x47\xe6\xb6\xb9\x01\xcf\x13\x6e\x2c\x5b\xc8\xa9\x3d\xb1\x08\x1d\x43\xa1\x87\x5b\xdb\x9c\xdb\x5b\x2d\x45\x40\x3d\xd4\x42\x5f\x53\x37\xb8\xe4\x02\x50\x2b\x8e\x04\xd4\x9a\x26\x8e\x29\xc2\x1a\x1e\x87\x03\xa0\x9e\x03\xaf\xf4\x11\x50\x1f\x75\x54\x53\x84\xbd\x1e\xd3\x00\xea\xe1\x6d\xdd\xc7\x50\xe8\x84\x6d\xff\xbc\xba\xb1\x54\x00\x64\x6e\x57\xf5\x10\xdd\xd0\xa6\xb2\x3f\xc6\x3b\x7b\xdf\xd0\x79\x43\x0b\xa5\x66\xaf\x7e\xfe\xb0\x62\x1d\x01\xf5\xa3\xaa\x1c\x80\x1a\x5a\xe9\x59\xe1\xcb\xe0\x43\x02\x6a\x83\xd9\x8f\x80\xba\x82\x5f\x8e\xcc\xed\x57\xd1\x0d\xa0\x6e\x5e\xfe\x72\x74\x43\x57\xf0\xcb\x31\xde\x39\xab\x76\x9a\x22\xec\xba\xac\x19\x80\xd9\x9a\x55\x69\xfb\x75\x8b\xe9\x86\xde\x9f\x8d\x34\x25\x9a\x5b\x4c\xe6\x76\x55\x0e\xe8\x86\x16\x28\x9d\x4f\x86\x89\x3f\xfe\xd4\x52\xec\xaf\xcc\xed\x81\xc5\xef\x98\x22\xec\xb6\xcd\x71\xbf\xb3\xe3\x2c\xa0\x3e\x0a\x2b\x13\x6b\x57\x90\xe0\xf9\x9c\x5f\x2c\xa5\x47\xe6\xf6\xab\xfc\xd1\x0d\xfd\x08\x0d\x4c\x11\xf6\x29\x7f\x64\x6e\xbf\x42\x03\x01\xf5\xaa\xbe\x1b\x91\x17\x4c\x4a\xc4\x3b\x2b\x24\x65\x6e\x5f\x00\xb4\x03\x6a\x1e\xc7\xad\xf1\x47\x62\x6d\xaa\x32\x45\xd8\x8d\x1b\xe8\x78\x53\xd5\x56\xc1\xdb\x86\xf6\xab\xfc\x8b\x9a\x8b\x83\xb3\x35\x88\xdd\x56\x15\x41\x64\xfe\x58\x94\x81\x47\xfb\x80\x9a\x47\xf3\x30\x92\x9e\xfd\x25\x3f\x64\xea\x86\xf8\xb1\xbe\xb9\xe8\x91\x89\xb5\xa3\x0b\xaa\x22\xb8\xbf\x4f\xb8\xa1\x61\xaa\x9f\x13\x64\x57\x6a\x06\x35\x77\xb3\x23\x1e\xdd\xd0\xc5\x46\x1e\x0d\xbc\xf1\xd4\x3c\x60\xd8\xb8\x8e\x79\xc0\x3e\x8f\x39\xef\x77\x6e\x38\xb6\x8e\xa8\xd9\xdc\x23\xe7\x44\x2a\x03\xd6\xd5\x09\x5b\x37\xb3\xaf\x1b\x7a\x3d\x56\x25\xaa\x52\xc0\x4a\xcf\x0e\xd8\x68\x1e\x30\x6d\xb6\xc7\x3c\x60\x24\x0d\x4b\x97\x89\xb5\xaf\x61\x11\xad\x9b\x8b\x2a\xd2\x65\x62\x6d\x54\xcd\x74\x89\x9a\x31\xd2\xa6\x4b\xd4\xdc\x7f\x4c\xc7\xe9\x32\x4b\xd8\xf8\xb1\x62\xa5\xcb\x78\xe7\x93\x7c\x57\x2b\xc1\x8f\xb9\x2c\x5d\xc6\x3b\x93\x8c\x22\x5d\xa0\xe6\x9e\x7e\xbc\x6f\xe9\x12\x35\xe7\x61\xcd\x32\x88\xd2\x2f\xc4\x7e\xba\x04\xd4\xed\x47\x2d\x49\x97\x37\x55\xc1\x40\x48\xd7\x15\x59\x2c\x1a\x45\xb3\x1d\xda\x06\x01\x35\xf9\x5e\xd2\x95\x8c\x87\xfd\x31\xf7\xa5\x2b\xc5\x4d\x46\x34\x49\x0f\x35\xfc\x84\x74\x45\x28\xf4\xcd\x30\xa6\x58\xea\x0c\xa3\x80\x7a\xfe\x30\xc6\xd3\x25\xa0\xee\x3f\x31\x65\xe9\x4a\x71\xbd\x8b\x35\x7b\x54\x35\xdf\x35\x87\xfc\x43\x17\xcc\xb9\xcd\x0d\xf8\xe9\x92\xd7\xfd\xfd\x60\xc6\x74\x25\xef\xff\xcd\xb6\xca\x2c\x25\xb7\xdf\x15\x60\x1e\xfa\x2b\xaf\xbb\xfe\x44\xf7\xa4\xeb\xf6\xd4\xee\x54\xa5\x1b\x1a\x5e\x77\xba\x6e\x73\x8c\x67\x3a\x68\xce\x6d\x6e\x21\x49\x97\xf1\xce\x18\x21\xd3\x65\xce\x6d\x48\x98\xe9\xf2\xa6\xaa\xd2\x2d\xca\x20\x2a\xd6\x2c\x33\xdf\x46\x46\x02\xb1\xc6\x4a\xd0\x0d\x4d\xf4\x7a\xba\x74\x43\xaf\x9b\x0e\xca\xeb\x9e\x1f\xa3\x01\xa0\xae\x44\xda\xa6\x4b\x37\xf4\x7d\xd1\x2a\x13\x88\x65\x07\xd6\x78\x67\x72\x73\xa5\x4b\x37\xf4\x15\x3f\x56\xeb\x76\x6d\x98\x58\xbb\x15\xba\x9f\x65\x10\x65\x7a\x04\xa0\xee\xb7\x63\x25\xa0\x26\x79\x7b\xba\xbc\xdf\x39\xbd\xfe\x58\x03\x60\xb5\x19\xf2\x9c\x3b\xfd\xd5\x0d\x9d\x1d\xba\x6c\xea\x06\x17\xa1\x6e\xe8\x7c\x7c\xaa\x2f\xe3\x30\x1a\x26\x10\x23\xe4\x33\x5d\x91\x40\x2c\x31\x1a\x02\xea\xef\x65\xba\x8b\xe4\x5e\xfb\x2b\xaf\x7b\x1c\xb6\x76\x89\x54\x24\x56\xa5\x01\xf0\xe3\xbb\xc5\x2c\x52\x87\xa1\xf3\xa6\xaa\x33\xd9\xf8\x25\x0c\x80\xb4\xb9\x44\xa4\x09\x8d\x0c\x5e\xf7\xf4\xbb\xde\x87\xeb\xd0\x79\x53\xd5\x55\x2d\x9a\xca\xe0\xd8\x0c\x83\x8c\xb6\x35\x47\xc2\x34\xaa\xaa\xae\x67\x97\x4a\x55\x94\x0d\xfa\x6b\x02\xb1\x77\x32\x1a\x41\xde\xde\xec\xc1\x20\x6f\x57\xba\x00\x6a\x6e\xf3\x62\x52\xaa\xf1\xb0\x2e\x15\xe3\x9d\x2f\x27\xc5\x04\x62\xdf\xf1\x43\x31\xbf\x8c\xa4\xf1\xce\x7d\xd3\x7d\x50\x73\x81\x12\x96\x2e\x6f\xaa\xc2\xe2\x97\x2e\x51\xf3\x1d\x5d\x70\x7e\x93\xef\xea\x96\xf5\xa9\xe4\x6d\x54\xe5\x74\x35\x53\x37\x28\xba\x41\xcd\xf5\xc4\x53\x51\xc6\x62\x06\x25\x6f\x43\x26\x4c\x57\x0b\x46\x1c\xa2\xaf\xe9\xcb\x78\x18\xf6\x16\xbe\x2a\xdf\xe5\x68\x1e\x9f\x3f\x06\x45\xa6\xcb\xef\x9a\x9a\x63\xd1\xc1\xc8\x12\x16\xdf\x75\x3d\x17\x5b\xa5\x55\x64\xd1\x7d\x51\x33\x57\x9e\xa5\x4b\xd4\xfc\xfe\x3e\x74\x7f\x5f\xec\x7b\x53\xd5\xfb\xb0\xe3\x4c\x20\xb6\x5c\x81\x3d\x42\x18\x18\x37\x3d\xd4\x24\xb4\x49\x97\xbc\xee\x73\x58\x18\x26\x10\xe3\x46\xf5\x74\x01\xa8\xfb\x76\x2f\x03\xa8\x47\xce\xf4\xce\x50\x68\xbc\x2d\xe9\x32\x14\xba\x6d\x16\xe4\x1f\x09\xc4\x58\xcc\x02\xea\xee\x6e\xd5\x0d\xdd\x32\xc3\xa8\x1b\x3a\x96\xba\x6e\xe8\x92\x18\xd5\x6e\xf6\x4e\x37\xbe\x80\x1a\x8f\x43\xba\x46\x24\x6e\xa5\x55\x86\x42\xcf\x46\x9b\x47\x84\x6c\x30\xe6\x5e\xfd\x4c\x32\xf3\x74\xe9\x86\x6e\xee\x47\xe3\x9d\xb3\x92\xdc\xab\x9f\x6f\x77\xba\xf1\xce\x4f\xb6\x68\xe2\xd6\x4e\x17\x04\xd4\x3b\xde\x65\xea\x71\x22\xa4\x2b\xe2\x9d\x6f\x96\x9c\x6e\xe8\xfc\xd2\xaa\x19\xc2\x99\xb1\x12\x32\x77\xcf\x88\xe9\x85\x17\xce\x82\x90\xf9\x6b\xcc\xa0\x90\xb9\x2d\x6a\x0e\x47\x73\xa7\x91\xde\x45\x35\x94\xa8\x3a\x9a\x87\xa7\xad\x29\xc2\xda\x4d\x9b\x23\x45\xd8\xc7\xb0\xcf\x88\xbc\x60\xac\x66\xdc\x55\xc4\x0c\x9a\x22\x8c\xe0\xe8\x74\x4d\x6f\x3d\x88\x66\xc8\x99\x79\x2d\xaa\x77\x2d\x24\x8c\x29\xc2\xb6\x4b\xd4\xbb\xa8\x9a\xe2\x57\xc8\x5c\x06\xcd\x08\xe6\xb6\x2b\xc7\xd4\xd9\x9f\xaa\x48\x40\x66\xf7\xf2\x23\x53\xbd\xfb\xae\x26\x82\xc5\x48\x3e\xd2\xff\x9c\x85\xc7\x64\x05\xdd\x56\x45\x04\xa8\x4f\xe5\x44\x3d\x0c\x8e\xb8\xf8\xa8\xc6\xe8\x68\x5e\x37\xf3\x2b\x2e\xae\xae\x0d\x53\x67\x5f\x6e\xc9\x57\xeb\xfd\xa2\x2a\x53\x84\xdd\xce\xbe\xb8\x78\x45\x51\x93\xa6\x3d\xf2\x2e\xaa\xa4\xd0\x88\xbb\xa8\x2e\x8b\xae\xd8\xc5\x5e\x10\x17\x67\xc7\xea\x0d\x0e\x18\xad\x02\x17\x4f\x6e\x8a\x49\xd7\x1b\x4c\x75\x9f\x8a\x8b\x9d\xc1\x37\xf2\x44\x31\xce\x3a\x9a\xcf\x62\xd5\x49\xcf\xfe\x36\xdd\xd7\xd1\xbc\x55\xa4\xc5\xc5\xcd\x1f\x2f\x23\xf4\x07\x8b\x70\xe9\x78\xad\xfe\x58\x93\x97\x07\x8a\xb8\xf8\xbe\xfc\xb1\x41\x73\x1e\x28\xcb\x14\x70\x9f\xef\x76\x25\xb9\x45\xbc\x8d\xcb\x36\xaf\x10\xce\xbe\x6b\xf6\xce\xc4\x74\x87\xa3\x59\x15\xdd\x88\xe6\x36\x58\xed\x4b\xef\xcc\x60\x34\x96\xde\x19\xe7\x77\xb9\x9e\x3d\x40\x3f\x71\x93\xb0\x42\x7a\xf6\x72\x11\x9a\x07\x6c\x3a\xbf\x41\xcf\x1e\x2c\xa4\xa0\x67\x6f\x5a\x25\x2e\xfe\xb9\xdd\xe6\xef\x8b\xfd\x2f\x38\x15\x56\xeb\x35\x73\x6e\x5e\x21\xf3\x3d\x58\x18\xfa\xa0\x2f\xa1\x81\x3e\xe8\x22\x34\x90\xb9\x7d\x29\x70\x4c\x11\x56\x5f\xdf\x75\xa9\xab\x78\x7c\xe2\x08\x75\x72\x7d\xd0\xe9\x62\x28\xbc\x8b\xea\xcd\x4c\xfd\x76\xa9\xbb\xc6\xb6\x7a\xa6\x6a\x18\x90\x79\x3c\x76\x41\x47\xf3\xa7\x44\xf5\x2e\x2a\xae\x0e\x49\x17\x90\x79\x0c\x51\x92\x97\x3b\x0f\x4f\x6d\x21\xf3\xf2\x30\xda\x5e\x88\xd0\x18\xd5\xad\x70\x16\x1a\x6c\xa7\x5e\xf9\xa3\xa3\x39\x3d\x56\x65\x4a\xb4\xe2\x8f\xe3\xc6\x4c\x8b\x9a\xbc\x54\x87\x4e\xdc\x35\xc6\xb0\x9b\x55\x3b\x1f\xaa\x3a\x8a\xee\x49\x9b\x85\xcc\xcd\xb9\x3e\xc6\x87\x56\x86\x0e\xc8\x5c\xbb\x2b\xff\x38\xbf\xd9\x9a\x75\x44\x7a\x54\x19\xd1\x1c\xc2\x4a\xe6\xf6\xf9\x58\xf9\x71\xb9\xb3\x87\xbe\x8e\xe6\x14\x55\x81\x9b\x2e\xc5\xa0\xcc\xed\xe6\x81\x72\x42\xaf\xf6\x43\x71\x99\xf5\x4f\xab\xd2\x65\xf6\x4e\x20\x58\xba\x0c\xaa\xe2\x14\x48\x57\xe4\xd5\xa9\x14\x3d\x7c\x5f\x9f\x7a\x17\x15\xe3\x9c\xc2\xd1\xcc\xca\x49\x42\xe6\x2b\x3e\xc4\xfc\xb6\xcb\xaa\x64\xaa\x27\x7f\xac\x9e\x89\x36\x98\x4c\x11\x46\x54\x72\x4a\x3a\x9a\x33\xea\x7d\x0a\x5c\xdc\x7c\x37\xe6\xd7\x77\xcd\xab\xf3\xf9\x63\x4d\x5e\x2c\xc2\x04\x2e\x9e\x09\xdd\x38\xe9\x68\x26\x36\x3c\x25\x71\x71\x3f\x16\xdd\xda\xf1\x54\x1c\x91\x7c\x37\x52\xde\xd1\x8c\x48\xac\xfd\xc3\x2b\x48\x29\x98\xdb\xd9\x1f\x9b\x68\x1a\x59\x9d\x74\x34\x5f\x3f\x6e\xd9\x94\x52\x5c\x03\x4a\x9b\x75\x34\x9f\xee\xbb\xae\xe7\x61\xd1\x1b\x6f\x6f\xbf\xab\x72\xf5\xd2\xfd\xb8\xc1\x39\xd1\x0c\xe9\xd9\x5c\xcc\x91\x92\xf1\xce\x1f\xb2\x3a\x81\x8b\xc7\xc7\xd6\x48\xb7\x7a\x35\xda\x6f\x0a\x7a\x36\xda\x45\x02\x17\x4f\x52\xc1\xa7\xa4\xa3\x79\x7d\xfe\xd8\xac\xf8\xc7\xa2\xde\x0a\x34\xc0\xe4\x5d\x54\x6e\xba\x74\x7b\x61\xcd\x66\x34\x74\x34\x2b\x82\x92\xb8\xb8\xb9\xae\xa4\x67\xef\xe1\x53\xfa\x4b\x4e\xd1\x94\x22\x0f\x18\x3a\x4f\xf2\xc2\xa9\xe8\x6f\x96\xbe\x0b\x5a\x4f\x5e\x38\x95\x50\x81\x52\x8e\x48\x04\x5a\x95\xe3\x5a\x4c\x5a\xa5\xa3\xf9\x4e\x16\x0d\x02\x3d\x74\xdf\xc4\xda\x50\x0d\x53\x8a\xc4\xda\x1c\x19\x49\x47\xf3\x98\xbf\x48\xbc\x9c\x92\x39\xb7\xd3\xf0\x45\x1d\x73\xc7\xa2\x4c\xe6\x66\xef\x22\x3e\xd4\xa7\x5b\xc1\x6e\xfb\xbd\x31\xd3\xee\xc8\xdc\xee\x37\x0d\x2e\x5a\x3b\x51\x4a\x93\x3e\xe8\xb2\x19\x55\xef\xa2\xaa\x87\x45\x55\xe2\x42\x04\x8b\xd2\xe1\xdc\xbc\x5e\xee\x3c\x1f\x9f\xca\x11\xe2\x6c\x4a\x42\x66\x68\xb1\x29\x99\x22\xec\x7a\xfd\xb1\x5a\xca\xb2\x48\x7f\x95\x99\xc9\x9c\xdb\x35\xaa\xd2\x11\x39\xfc\xae\x1c\x12\xce\x88\x24\x73\xfb\xca\xac\x04\x99\xdb\x2f\x87\x78\xd2\xd1\xdc\x39\xf5\x92\xcc\xed\xd7\xfe\x56\x8f\x2a\x10\x65\xaa\x8a\xb2\xe9\xbb\x6a\xa1\x2f\xe3\xac\xa3\xb9\x2d\xd6\xb6\xcc\xed\xfa\xf8\xae\x79\x57\x26\x03\xab\xa3\xf9\x73\xd8\xbd\xdc\x79\x29\x43\x8c\x77\x6e\x0a\x0d\x53\x84\x0d\x65\xa6\xcc\xed\xec\x74\x0b\x99\x6f\x85\xa4\x89\xb5\x9f\x8f\xef\x02\x99\xdb\xae\x74\xb0\x99\x47\xc8\xf5\x29\x73\x9b\x3b\xe2\x53\x92\xb9\xfd\x80\xe6\x92\x8e\xe6\xd3\x2d\x46\x7c\x28\x2b\x47\x47\xf3\x71\x4f\xc9\xdc\xd6\x80\x99\xc2\xd1\xec\xec\x0b\x99\x7b\x65\x8b\x35\x1d\xeb\xf6\x48\xc8\xbc\x93\x55\xb9\x9e\x6f\x7f\xac\x56\xf6\x31\x74\xde\x45\x75\x2d\x7f\x2c\x9d\x15\x50\x99\xc0\xc5\x13\x3b\x79\x4a\xc6\x3b\x73\xd3\x77\x4a\x3a\x9a\x9b\xc3\xae\xa3\xf9\x56\xc0\x9a\x58\x7b\xbd\xbe\x6b\x76\x56\xec\x54\x49\x5c\x9c\xdc\x1a\xde\xe0\x8c\x2b\x27\x25\x1d\xcd\xc4\x29\xa4\x24\x73\xfb\x1a\xfe\x58\xeb\xee\xb6\x66\x55\xaf\xe6\x77\xcd\xde\xe9\xba\x0a\x7a\x36\xd6\x95\xa4\xa3\xd9\xa3\x39\x49\xcf\xe6\x3e\xb8\x94\x4c\xac\x7d\xb9\xe9\x86\x17\xb8\x24\xbe\x3b\xe2\x42\x22\x8b\xe6\x11\x72\x6d\xe8\x68\xfe\xaa\x45\x8e\xaa\x0c\x5e\x4b\xc6\x3b\x93\x84\x3c\x25\xe3\x9d\xbb\x4b\xc5\xbb\xa8\xea\xc5\xb0\x9b\x07\x6c\xdc\x7e\x88\xfd\x9b\x14\xec\xde\x45\xf5\x25\xfa\xeb\x0d\xce\x05\x35\x3b\x8d\xe0\x08\x31\x74\xd2\xb3\xfb\xb4\x47\xc6\x77\xa3\x48\x27\x51\xf3\x8b\xfd\x24\x4d\x93\x8d\x5c\x7c\x57\x47\x73\xc6\x0a\x9d\x66\x5c\xd0\xe3\x53\xbd\x15\x98\x32\x12\xa8\x79\x14\x65\xce\x8c\x3b\x11\x58\xde\xa2\xe6\xae\xc2\xa0\xa3\xf9\x78\xbe\x4c\xbd\x33\x4e\xca\x74\x3d\x0f\x1b\x29\x8a\x04\x65\xa4\xc8\x03\xa6\x76\x21\x3d\xfb\xde\xe7\x57\x62\x5f\x1f\xf4\xdb\x6c\x92\xa7\x36\x1a\x5d\xd2\x07\xbd\x1d\x73\x43\xa1\xeb\xb2\x68\x3c\x2c\xda\x60\xd2\x07\xfd\x2e\x8b\x02\x2e\x0c\x98\xe9\x09\xfa\x9f\x45\xa7\xde\x61\x14\x50\x97\xec\xbb\x86\xba\x2b\x70\x64\x6e\x77\x8f\x4b\x43\xa1\xf1\xb9\xa7\xe4\xe5\xce\xe9\xb2\x68\xfc\xa0\xa3\xfa\xb8\xb5\xb1\xdf\x26\x01\xf5\x8e\x2e\x68\xed\x2c\xec\x1a\x1d\xcd\xf0\xab\x53\x8a\xcb\x9d\x2f\xda\x2c\xa0\x7e\x31\x7a\x24\x01\xf5\xed\x6e\x7d\x0d\xba\xf1\x20\x7e\x05\x98\x9e\x11\x02\x6a\x72\x1f\xa5\x14\x97\x3b\xbb\xa8\x64\x6e\xbf\xa8\xca\x49\x47\xf3\xa7\xd8\x7f\x63\x6b\xb3\x20\x4d\x11\x56\x3d\x5f\xde\xe0\x44\x59\x0c\xa6\xba\x35\x33\xbf\x39\xf9\x2e\xf3\x9b\xb1\x9e\x25\x5d\xc9\x47\x29\x61\x44\xf3\xc6\xb8\x9d\x4c\x9d\xbd\xdc\xcb\xba\x92\x6f\xec\xf3\x29\x6e\x9b\xc2\xca\x9a\x80\xcc\x7d\xaa\xb4\x00\x99\xfb\xe3\x77\x97\x3d\xf2\x1c\x5f\xc6\x1a\x28\x61\x74\x25\x57\x8c\x9f\xc9\x3b\x9a\xf7\x67\xab\x74\xad\x7a\x80\x2e\x0f\xdf\xc9\x58\x2d\x4d\x04\xca\xdb\xe0\x66\x63\xb5\x4b\x42\xe6\xe3\x71\xa3\x2b\xb9\x28\x70\xc2\x95\xdc\x19\x0d\xef\x68\xde\xaa\x04\x42\xe6\xa9\xb0\xfa\x8c\x58\x7f\x7d\x37\xfc\x11\x3e\x55\xd9\x50\xa2\x7e\xfa\x9b\x94\x8a\x91\x3a\x5b\xc9\xf6\xc5\x85\x26\x7e\x48\x96\x97\xfd\xd5\x95\xfc\x65\xab\xd2\x95\x8c\xed\x34\x7d\x46\x70\x0b\x85\xbc\x6d\xea\xb8\xf1\x75\x25\x5f\xca\xf9\xb8\x6d\xca\x59\x90\x80\x5d\x1c\x3a\x6f\x9b\x6a\x6a\xec\x81\x8b\x9d\x14\x93\x80\x35\xd7\xb3\xb8\xf8\x51\x19\x36\x75\x76\x76\x60\xc1\xc5\x6d\xdc\x7e\x48\x57\xb2\x67\xe2\x0e\x2a\x88\x1f\x62\xc5\xe6\xf8\xb1\x79\x66\x54\xf9\x24\x60\xbf\xf1\x6e\x84\x4d\xf1\x21\x33\x7d\x3d\xd8\xf4\x92\x99\xbe\x2e\x7f\x1c\xae\x64\xd7\xb3\x04\xec\x7b\xd1\x66\x23\x9a\xbb\xfa\x92\xb8\xb8\xd9\xaa\x23\x81\x33\x5b\x95\x11\xdc\x38\x4d\xd2\x89\x64\x32\xfe\xd8\x54\xe1\x51\x95\xfd\x55\x61\x38\x1e\x46\xb7\xcd\xf0\x30\xb2\x83\xe0\xe2\xfe\x56\xab\xf2\x22\xc8\xc2\xda\x30\xa2\x79\xb1\xbb\x6f\x5d\xc9\x13\x9c\x78\x83\x8b\xe7\x83\x3f\xf1\x36\xa2\xf9\xfe\x09\xe6\x4a\x37\xb8\xb8\xdf\xbf\x0a\xd7\x4a\xb7\x59\xb5\xef\x63\xb5\x46\x08\x26\xeb\x41\x0f\x21\xf5\x77\xba\xe3\xfa\x66\xf0\xd7\x7d\xe9\x6a\x04\x24\xde\x66\xd5\xfe\x7e\x08\x36\xe9\x06\x32\x77\xb2\x06\xa5\x3b\x92\x80\xa1\xc3\xdc\x06\x3b\x6f\xa4\xe2\xed\x5d\x54\x83\xdd\x7a\x5f\x11\x56\xe3\xbb\x91\xa7\xe2\x67\x18\x6f\x5d\xc9\x64\xa5\x4b\x77\x0a\x6b\x27\x3f\x06\x32\xb7\x79\xf9\xd4\x73\xf9\xa6\x66\xef\xa2\x3a\xf6\x37\xa9\x77\xa1\xed\xdf\x06\x3b\x77\xd4\xdd\x3b\xa9\x77\x5d\x16\x35\x01\x5d\x7e\x88\xa9\xd7\xe9\x73\xcb\xcd\xce\xd8\x51\x6f\xb3\x6a\xdf\x9f\x45\xf3\xcc\x54\x06\xd6\x88\x66\xe8\x61\xe9\x8e\xeb\x9b\x7f\x88\x76\xe9\x4e\x66\x89\xc7\x7a\x76\xcb\xcd\x4e\xfe\x58\x57\x72\x85\x36\x70\xcb\xcd\xf6\x40\xb9\x8d\x68\xe6\x42\xa5\x74\xcb\xcd\x26\x8f\x59\xba\xef\xc8\xab\x43\xab\x74\x25\x13\x3d\x91\xee\x3f\xae\x6f\xb6\x66\xc3\xe2\x40\xd0\xb7\x90\x79\x63\x0a\xbe\xef\x20\x70\xfa\x63\xc3\xc4\xaa\xdf\x8d\x64\x05\xfe\x38\xf4\x6a\x7f\x4c\x7f\xc9\x40\x9e\xee\x5b\x9c\x88\x21\xee\x96\x9b\xfd\x56\x7a\xa4\x2b\x39\x71\xea\xdd\x39\x52\x0d\xf3\x6e\x0e\x93\x48\xa7\x88\xde\xf5\x5e\x56\x25\x4e\xc4\xa6\x77\x47\x44\xf3\x6d\x55\x26\x1b\x99\xbe\x2b\x37\x1b\x5f\xd5\x6d\x44\x33\x17\xa4\xa6\x1b\x5c\xdc\xf7\x6b\x55\xea\xd5\xe8\x8a\x77\xe0\xe2\x6e\x9b\xf5\x37\xb1\x97\x6f\x5d\xc9\xaa\xbb\xb7\x29\xc2\x26\x96\x8a\xbb\xc4\x85\x35\xb4\xd9\x88\xe6\x5c\x59\x0c\xa6\xce\xae\xcb\x1f\x47\x32\x0a\x56\x5d\x89\xe4\x1b\xb4\xaa\xe8\x6f\xb2\xcd\x25\xfc\x6b\x0c\xbb\x04\xec\xf2\xfa\xd4\xfe\x0e\x3f\xa4\x7f\x2d\xfb\x63\x59\x6d\xe8\x99\xb7\xb8\xb8\xbb\x17\x24\x60\x1f\x8c\x1e\x77\x89\xb0\x29\x8b\x26\x1b\xe9\xb6\x8a\xf9\x6d\x1c\xfa\xb7\xb8\xf8\xdb\x74\x01\x5c\x5c\x8e\xd3\x2d\x2e\xee\x1c\x82\xb7\xae\xe4\x4b\xa9\x22\x01\xfb\xb8\xcc\xbc\x8b\xaa\xc7\xbb\x11\xd1\xcc\x84\x46\x1e\x30\xec\x54\x77\x8d\xa4\x85\xbe\xeb\xfe\x75\xe3\x04\x01\x3b\x59\x14\x27\xba\xf8\x25\x60\x13\x77\x9c\xee\x1a\xa9\xa4\x2d\xea\x3a\x9f\x76\x30\x52\x85\xd3\x05\xef\x68\xd6\x64\x7d\xc7\x85\x53\x4a\x51\x5d\xc9\x4d\xc1\x68\x1e\xb0\xed\x58\x19\xd1\x3c\x5f\xba\xdf\x94\xcf\xa8\xe5\xb7\xb8\x38\xdb\x8c\x70\x25\xff\x8e\x41\xfe\xbe\xd8\x8f\x60\x67\x94\xa5\xbb\x09\x31\x5c\x36\x06\x3b\xe7\x66\xfb\xcd\xfe\xe7\xc8\xc8\xcd\x6e\xae\xde\x26\x57\x19\x4f\xcd\xfd\x47\x8a\x30\xa6\xa0\xc5\x05\x2e\xac\x6d\x20\x73\x27\xeb\x4e\xba\x81\xcc\x53\xed\xe8\xee\xb2\x26\x50\x2c\xef\xee\x50\xa0\xa4\xdd\x40\xe6\x79\x6c\x46\x77\x28\x5c\x09\xdd\x53\xdb\x61\xec\x0e\x85\x07\x62\x0f\x6f\x05\xa3\xaa\x2b\x99\xbc\xa0\xe9\x16\x32\x57\x67\x04\xc8\x5c\xdb\xe5\x77\xe3\x82\x0f\x3a\x28\x64\xce\x2e\x2a\x5d\xc9\x79\x5a\x34\x42\x10\xbb\xe2\x1d\x59\xb5\x51\xd2\xee\xe0\x66\xe3\xb6\xbb\x75\x25\xf7\xe6\xd3\xb8\xab\x88\xaa\x46\x58\x77\x99\xfa\x61\x6c\xc5\xf1\xc7\x4e\x3d\x86\x8b\x5b\x6e\x36\x81\x18\xe9\x36\xa2\x39\x67\x8b\x71\x34\xd3\xc1\x11\xf3\xeb\xbb\x5a\xb3\x9b\x6d\x66\x7e\x6f\x60\xd4\x3d\x22\x2b\x3e\x43\x27\x37\xfb\xf6\x78\x95\x9b\x7d\xbb\x90\xa6\x61\x62\xd8\x6d\x6e\x63\x96\x6f\x4f\x2e\x6f\x9b\xba\x31\xf6\xde\xba\x92\xb9\xdb\x31\xdd\xb2\xaf\x6f\x1b\xe9\x6d\x53\xe5\x61\x16\x04\xc5\xb7\x47\x86\xae\xe4\x5b\xd9\x15\xb7\x4d\x0d\xab\x8a\x64\xe0\x2c\x15\x93\x80\x85\x76\x34\xe3\xa2\x40\xdf\xe5\x30\x3a\x95\xf9\x9d\x6e\x5e\x85\xe4\xa3\xeb\x0d\x07\xc4\xfd\xc8\x03\xc1\x6c\x7e\x3f\xae\x58\x1c\x91\x77\xc4\x2c\xab\xb3\x3d\x46\x13\x60\xe2\xbb\x23\x39\xf6\xb6\xe6\x08\x14\x62\x34\x8c\x59\x3e\xc9\xa7\x81\x23\xfc\xae\x38\x42\x0d\x21\x5c\xc9\x8d\x36\x3f\xf2\x5e\x5c\x1b\x8f\x99\xa0\xd4\x79\x44\xbe\x07\xf0\x7e\x3f\xea\x99\x97\x5d\x30\x86\xd7\x93\xfa\x95\x5d\xef\x1c\xbd\x0a\x67\xb0\xed\x2d\xf2\xad\x58\x0b\xef\xd7\xa4\x85\x0a\xe7\x37\x84\x33\x73\x14\xc8\x17\x2e\xd6\xfd\xea\x5a\xf5\xa4\x7e\xed\xaf\x52\x31\x5c\xc9\xd9\x77\xed\x2f\x76\xf2\x3b\x32\x7d\x81\x6e\xee\xc8\xf4\x85\x77\xe6\x7e\xed\xaf\x47\xd5\x6b\x7f\x61\x0f\xde\xaf\xfd\x1d\x36\xc3\xfe\x2a\x82\x22\x66\x59\x45\x7a\xd9\xdf\x87\x1e\x2d\xaf\x68\x51\x9b\x5a\xf6\xf7\xb1\x68\x7f\xe1\x60\xdc\xe1\x4a\xf6\x5c\x0b\x57\xb2\x8b\x61\xd9\x5f\xd5\x98\x65\x7f\x3d\xb8\x97\xfd\xfd\x7c\x6a\x7f\xe1\x35\xdd\xcb\xfe\x7e\x7e\x37\x32\x7d\xd1\x7d\x5d\xc9\xe7\xfb\x95\x91\xe7\x5e\x0e\xc5\xb1\x49\xda\xab\x6f\xc6\x2d\x92\x80\xb9\x5b\x3f\x87\xc2\x15\xf8\xc5\x9d\x98\x3e\xf5\x5c\x56\x48\xca\xbe\xbe\x94\x3f\x40\xe6\x7a\x29\x16\x3e\x87\xe2\xf8\x34\x28\x5e\x56\x35\xac\xca\xe2\xf4\x5d\x46\x46\x57\xb2\xce\xc4\x5b\xc8\xac\xa3\xea\x16\x32\x93\xeb\x32\xdd\xba\x92\x49\x24\x98\x6e\x5d\xc9\x57\xf1\x5d\xfb\x8b\xb7\xe2\xf6\xb6\xa9\x4b\xb1\xef\x6d\x53\x97\x2b\x41\xc8\x7c\x29\xba\x85\xcc\x97\xaa\x85\x49\xc0\x2e\x70\xdf\x2d\x64\xbe\x3c\xa6\x65\x5f\x73\x53\x5e\xba\xe3\x82\x66\x81\x83\x17\x34\x93\x42\x3f\xdd\x26\x01\xbb\xb6\xcd\xb0\xbf\xae\x22\xd9\xd7\x97\x60\x27\x5c\xc9\x97\xcd\x50\x94\x5d\xb6\x59\x3d\xe4\xb3\x66\x21\xa4\x7b\xea\xc4\xd6\x66\x34\x4e\x6c\x6d\x3a\x78\x5c\xea\xb0\x80\x6e\x20\xf3\x24\x9a\x32\xdd\xde\x36\xb5\xb0\x39\xdf\xb2\xaf\x97\xfb\xf1\x44\x1e\x78\xdf\xa5\xbf\x9f\x20\x0b\xc8\x3c\x43\x66\x02\x99\xe7\x54\x59\x32\x66\x39\x29\xba\x65\x5f\xcf\x64\xcd\x8a\xee\xe3\xbb\x1e\xbe\x2a\xff\x26\xc7\x7e\x1c\x0d\x63\x96\x33\x1a\x42\x36\x66\x39\x21\x6f\xb3\x49\xc0\x26\xee\xb3\x2c\xfb\x9a\x84\x12\x29\x5f\x8a\xee\xc7\x77\x23\xb3\x4a\xa3\xa8\xe8\x46\x45\xcf\xc6\x2c\x73\x07\x44\xca\xe2\xe2\x81\x49\x24\x47\x72\xec\xd7\x9a\xe3\xb6\x29\x9f\x9a\xaf\x12\x62\x70\x96\x7d\x3d\x87\xdf\x35\xf5\x6e\xf6\xc7\xe2\xe2\xcb\xef\x7a\x54\x61\xe2\xcb\x97\x81\x60\x30\x09\xb3\xb8\x38\x61\xc6\xc9\x26\x01\x4b\x3f\xfc\xf9\x94\x4d\x8e\x9d\xf0\x38\x64\x5d\xc9\x09\xfb\x67\xd6\x95\x9c\x30\x69\xe6\x24\x4e\xc4\xb2\x9a\xc5\xc5\x89\xbd\x90\x4d\x8e\xfd\x3a\x56\x29\x6e\x6a\x78\x28\x6a\xc6\xc1\xb4\x98\xef\xb0\xa2\xd3\xc8\x48\x70\x0d\x9c\xc9\x3a\x7c\x5f\x56\x5d\x36\x67\xf5\xcb\xc6\xc9\x91\x44\x0b\xb9\x97\xf5\xc3\xbe\xa8\x9a\xf9\x0e\x06\x23\xef\xca\x40\x7e\xb1\x93\x67\x61\xe3\x8b\xf8\xca\x32\x90\x5f\x38\x7e\x59\x4f\xeb\xcb\xba\xca\x59\x18\x05\xf4\xcb\xfa\x52\x17\x2a\x50\xce\x01\xfc\xf9\x2e\xc0\x70\x2c\x56\x5d\x36\x68\x77\x5d\xbe\x1b\x59\xdd\xe8\x60\x09\xa2\x3b\x1f\x32\xe1\xf3\xe2\x94\xcf\xa0\xb9\xb1\xb0\x6f\x67\xd1\xdc\xc2\xa1\x9f\x4b\xdc\x5d\xc5\xb0\xcb\xf5\x95\xcb\x9d\xe5\xdc\xe6\xf6\x8b\x6b\x56\x52\x16\x43\x65\x2c\xb4\xd9\xfb\x7c\x9b\x5f\xa9\x62\x46\x54\x8b\x5c\x0d\x0a\xbb\x59\x45\x55\x9a\x44\xb6\x68\x96\xb3\xdb\xaa\xbc\xd3\x21\x5b\x95\x41\xbb\x98\x0a\xb3\x41\xac\xad\x58\xb3\x34\x09\x2c\x24\xd9\xeb\x87\x1a\x7a\x57\x36\x2b\x54\x43\x5b\xc8\xd2\x71\x1b\x8a\x47\x16\x43\x91\x4b\x39\x65\x73\x29\xb7\x4e\xcd\xcd\xc8\x20\xc4\x51\x36\x88\xb5\xa1\xed\x67\xe9\xb8\x0d\x8d\x3d\xb7\xe0\x64\x5a\xb3\xfd\xc5\x8a\x95\x0d\x62\xbd\xe2\xe9\xb0\xc8\x7c\x45\x56\xa8\x69\x55\xd2\x42\xb0\x94\xe6\x16\x41\x9d\x36\x52\xba\x35\x2c\x82\x0c\x50\x9a\xd7\x6b\x23\xe3\xfa\x21\xd6\x67\x64\x85\xc2\x8a\x95\xf5\x2d\x7a\xa0\x64\x81\x92\x3e\xeb\xec\xf5\x43\x97\x6d\x06\x28\xcd\xcb\x3d\x25\x50\xe2\x42\xa5\x94\xbb\x34\x09\x9c\x08\xb9\x9b\xc5\xee\xf3\x5d\xfb\x0b\xba\xc9\x66\x85\xba\x14\x0b\x5e\xda\x7b\x01\xdf\x72\x0f\x1a\x8c\x8d\xb4\xbf\x9b\x59\x88\xd4\x4f\xee\xd6\x6e\x7f\x3f\xab\xb2\xbf\x58\x68\xb3\x9c\xdb\x4b\xe1\x3c\xec\xef\xa6\x0b\xfa\x16\x2f\x14\x86\x2c\x50\x4a\x6e\x40\x53\x3f\x25\x57\x6c\x5c\x3f\x94\xfc\xb1\x97\xba\xe2\x5c\xcb\xa6\x7e\x4a\x2e\xe0\xa1\xb9\xfe\xf6\x43\xc3\xa7\xcc\xa0\xb9\x94\xa5\x66\x65\x39\xb7\x7a\x5a\x73\xdc\x31\xc4\xe9\x93\x05\x4a\xd3\xe5\x1d\x40\x49\x99\x19\x50\xc8\x61\xf7\x5a\xde\x82\x3d\x21\x9b\x2d\xf9\x76\x16\x02\x28\x29\xf7\x02\x28\x29\xca\x04\x4a\xf9\xf3\x5d\xbd\xc3\xca\xbd\xf0\x1e\x62\x5c\xca\x02\x25\xf2\xf9\xa4\x2c\x50\x4a\x40\x83\x3c\x23\x8f\x19\x73\x04\x50\x9a\xaf\xa3\x21\x50\xca\x2e\x42\x81\x12\x17\x14\xa6\x3c\x23\x56\x91\x35\xe9\xb5\xbc\x9f\x53\xa6\x8b\xb0\xa3\x3d\xe6\xb8\x96\x17\x05\x29\xcb\xb9\xed\xee\x85\xc7\x80\x08\xb4\xb8\x1c\xb7\x08\x79\x36\x01\x94\xaa\xd6\xe0\x6c\xb6\xe4\xf1\xf9\xae\x44\xc4\xdb\x9a\x0d\xcb\xbd\x7d\xd7\xbb\x4a\x15\x50\x26\x77\xea\x00\xd2\xec\x2d\x42\xdd\xe9\x36\x7d\x53\xaf\xbe\x7b\x7c\xca\x9a\x7c\xa3\x47\x4c\xe8\x1b\xb7\x91\xf2\xae\xe9\x9b\x3a\x54\x90\x6c\x3e\xe4\xde\x7c\xb7\xf8\x94\x91\x34\xda\xb4\x83\x23\x72\x38\x01\xbb\x3f\xb6\x47\xb8\x81\xf2\x1f\x17\xef\x32\xa1\x26\x3d\xee\xdd\xaa\xec\x51\xff\x15\x6f\x3f\x4b\xb8\xed\x8f\xf5\x98\x5f\x54\x2d\x45\xff\x60\x1f\x36\xc9\xa1\x78\xed\xac\x43\xa1\x48\xf1\x0a\x21\x2e\xec\x4b\xd9\x40\xd4\xae\x28\xf3\x0a\xa1\x0e\xbe\xce\x7a\x0f\xbb\xea\x81\xde\xc3\x8e\x0d\x36\xeb\x3d\xec\x1f\x9d\x35\x10\xb5\x03\x7c\xf2\x0a\x96\x29\x83\x6c\x66\xa7\xae\xb2\x64\x3e\xe4\xae\x18\xf4\xe2\xdd\xee\x52\x5f\xf6\xd7\x05\xb9\xec\xef\xf1\xc7\xf6\x57\xe5\x41\xc2\x6d\x47\x55\xce\x42\xa1\x81\x22\x9d\x85\x42\xc3\x9d\xfe\xc5\x1d\xd3\x16\xed\xef\xb6\xe8\x62\xc6\x34\x9a\x85\x42\x43\x71\x24\x14\x1a\x2a\x00\x71\x85\x10\x36\xf6\x2c\x14\x1a\xb7\xef\x1a\xb8\x87\x4e\x9e\x85\x42\xd2\xe9\xb3\x50\x48\x6a\x68\x16\x0a\x8d\x61\xcd\xf4\x77\x4c\x46\x52\x28\x34\x54\x2c\x3f\xed\x72\x98\xfa\x33\x50\x68\x1e\x5b\x25\xab\x56\xb2\x5c\xd6\x7b\x48\x7a\xd2\x94\x65\xd5\x6a\x7b\xc9\xb2\x6a\xef\xee\x8f\xf5\xef\x0f\x8b\x26\xd5\x84\xc0\x99\x65\xd5\xde\x7e\xd7\x7c\xc8\x37\x7e\x9f\x1c\x81\xa8\x90\xcd\xf2\x36\x87\x00\xb8\x3e\xeb\x3d\xbc\x3d\x8b\x4d\xdf\x74\x7b\xda\x1a\x88\x7a\xab\xfd\xea\x3d\xbc\x5d\x1b\x91\xbe\x49\xf1\x2b\xab\xf6\xf6\xc4\xf4\xe2\xdd\x1b\x0f\x6f\x36\x10\xf5\x86\xe9\x91\x65\xd5\xde\xa0\xef\x7c\xec\xef\xf4\xc7\xf6\x57\xfd\xf6\xd8\x5f\x6c\x7a\xd9\x8c\xc7\x37\xe4\x87\x1c\x19\x8f\x15\x83\xc1\x9b\x75\xe3\xe8\x1f\xbc\x95\x8a\x27\x7a\x64\x33\xec\x11\xf6\xcf\x2c\xd8\xd1\x89\x99\x8f\x3d\x42\x73\x2e\xf2\x66\x6f\x76\x77\x91\x37\x7b\x63\x7a\x2a\x26\x68\xca\xd8\x7c\x8a\x19\x8f\xef\x9f\x74\x22\xa9\x5c\x71\xf3\x91\xef\x56\x7f\x7c\x28\x36\x8b\xfe\xd8\x19\xe4\x94\x2f\xf2\x66\x49\xa1\x9f\xca\x15\x19\x9e\x6f\x8a\xc1\x13\x1e\x14\x5f\xab\xf2\x5d\xfb\x0b\x75\xa7\x08\x76\xc8\xbb\x98\x8a\xbc\x59\xf2\xaf\xa6\x22\x6f\x56\x73\x68\x49\x86\xb4\x80\xa9\x4b\xb2\x47\xb8\xa1\x8b\x6e\xbe\x1b\x99\x53\x74\xf3\x65\x0c\x0e\x25\xd9\x23\x1c\xaf\x05\x47\xde\x20\x49\x42\x2a\xc2\x19\x6e\xf9\x4f\x45\xee\x6b\xce\xbe\xbb\x2c\xd2\x5f\xc1\x4e\xce\x56\x65\x9b\x51\x17\x4b\x38\xf2\x30\xa6\x15\xa1\x90\x94\xa1\x22\x14\x22\x61\x48\x2a\x42\x21\xee\xaf\x49\x45\xee\x2b\x97\xde\xa6\x22\xf7\xf5\x27\xcd\xf8\xdf\x15\xfb\xc5\x70\xd1\x8c\x5f\xa3\x08\xa9\x72\xb2\x5a\x63\xac\x9a\x4f\x8d\xb1\xc2\x50\x53\x04\x5c\xe4\x80\x4d\xc5\xfc\x4b\x39\xdb\x06\x87\x02\xbb\x71\x11\x8e\x65\x84\x55\x91\x16\x9b\x39\xc5\xca\x1d\xd3\xc7\x50\x08\xd6\x32\xa7\x67\xf9\x23\x5c\x94\x51\x15\xac\x65\xdc\x49\x45\x38\x96\xd9\xad\xc5\x80\x50\x52\x9a\xa4\x22\x1c\xcb\x8f\x4f\x6d\xf3\xe3\xbb\x31\x7d\xb4\x59\x38\x96\xa7\x1f\xb2\xcd\x9c\xda\x25\xdb\xe6\xee\x53\xdb\x8c\xfe\x53\x0c\xf9\x34\x22\xbb\xe8\xa7\xcb\x88\xc1\x22\xb2\xcb\x08\x9c\x22\xb2\xcb\x9c\xe9\x45\x64\x97\xa7\x4f\xed\x11\x2e\xec\x62\xe6\x61\x72\xb1\xa6\x62\xa2\xa4\x8c\xb6\x5f\x8a\x73\x84\x3a\x54\x84\x81\x5c\x24\x97\x8a\x30\xd0\xd8\x8a\x22\x7f\x35\xc3\x89\x2a\x66\x1e\xce\xee\x38\xaf\xf2\x19\x6e\x5e\xaf\xf2\x29\xc9\xa7\xde\x4e\x7e\xd9\x66\xfb\xcb\x99\x58\xaa\xfd\x3d\x16\xed\x2f\x3a\x6a\x31\x51\x52\x71\x4f\xc9\x5f\x25\xf7\x5a\x2a\x55\xaa\xb6\x9b\xb7\xca\x7f\x73\xb7\x1a\xf2\xc9\xad\x2b\xa9\x98\x28\x49\xfd\xb6\xc8\x5f\x2d\xca\x9f\x1a\xfd\x65\x42\x0d\xea\x94\x04\x55\xaa\x33\x88\xae\x58\xbc\xc4\x36\x43\xc0\x28\xa0\xc8\x51\xf0\x92\x94\x16\x3d\xe2\xa9\xa9\x90\xb2\x42\xb2\xd9\x23\xb4\xc1\x62\x50\x67\x51\x4a\x34\x7b\x84\xf6\x5b\x0c\xea\x2c\x10\x1a\x0b\x28\x72\x90\xaf\x32\x95\x66\x9b\xbb\x3f\x66\x8e\xca\xf0\xc7\xaf\x4f\x19\x2b\x39\xa8\x45\x09\xa3\x43\xad\x14\xdb\xec\x1c\xb9\x71\x0c\xdb\x34\xdc\xbb\x18\x9b\x59\xd0\xe2\x8a\xb1\x99\xdc\xa3\x9d\x8a\xb1\x99\xb2\xe9\x4a\xb7\x47\x28\x96\xc5\x6b\x6a\x8b\xeb\x4a\x0e\x2a\x09\xa9\x52\x31\xd9\x51\x01\xa1\x14\x63\x33\xc9\x55\x9b\x8a\x0e\x35\x92\x33\xa4\x22\x07\xb5\x28\xba\xcd\x1e\x5c\x38\x4f\x8b\xd9\x83\x0b\x8c\xa9\xd2\xed\xaf\xab\xdd\x64\x47\x45\xd1\x2d\x07\xb5\x3c\xb6\xca\xfe\xe2\x67\x2f\x72\x50\x0b\x07\x68\xf1\xce\x9d\x82\x86\x50\xe4\xa0\x16\xf7\x82\x0e\x35\x92\xda\xa5\x12\x77\xee\x78\xfa\xc8\x41\xad\xe8\x78\xc5\x64\x47\xba\x36\x8a\xb1\x99\xc5\xa5\x12\xc9\x8e\xb2\xcd\xa0\xbf\x5c\x4c\x96\x8a\x1c\xd4\xaa\xd8\x94\x83\x5a\x31\x1e\x16\x93\x1d\x55\x60\x45\x31\x36\x53\x24\x58\x86\xfd\x3d\xb6\xca\xf0\x10\xd7\x95\x1c\xd4\x9f\x74\x55\x7f\x5f\xec\x1b\xd4\x59\x15\xbf\x06\x75\x56\x3c\x44\xc5\xa0\xce\xea\x49\x64\xf6\xe0\xea\xfa\xf4\x9a\x5a\x2e\x54\x4a\x65\x3a\x14\x1e\x3d\x7a\xe2\xb8\xda\x3b\x15\xaf\xe3\xa9\x0a\xba\xe9\x50\xa8\x78\x78\x1d\x4f\x55\xb2\x99\x07\x89\xac\xa7\xa9\x18\xd4\xc9\x0d\x4a\xa9\x00\x30\x47\xed\x76\x76\xfb\xae\x8d\x8c\xe4\x30\x8c\x8c\x41\x9d\x55\xd1\x6d\x50\xa7\x64\xdd\xe2\x75\x3c\x15\xad\xac\xc8\x41\xad\x9e\x20\x72\x50\xab\xeb\x13\x80\x39\xaa\x2b\xff\xb1\xbf\xaa\x34\x8f\xfd\x75\x82\xe4\xa0\xb6\xdb\x9a\xbd\xa3\xe4\xb2\x19\x32\xbe\x6e\x9b\x21\x9d\x1e\xc6\x54\x79\x8c\x1c\x71\x6b\x1b\xd4\xb9\x31\x6b\x14\xe1\xe7\x51\xf1\x10\x7e\x4e\x7f\x2c\xfc\x9c\xf0\x57\xcb\x2b\xa3\x8f\x58\xfe\x22\xfc\x9c\x98\xaf\x8b\xf0\x73\x2a\x9d\x84\x9f\x13\x53\x7f\x11\x7e\x86\x46\x27\xfc\x24\xaf\x57\x2a\xc2\x4f\xcd\x8c\x45\xf8\xb9\x6e\x9b\x61\x06\x09\x15\x1e\xb3\x07\xeb\xd2\x2d\x72\x50\x6f\x0f\xee\x37\xe8\xe5\x7e\x48\xfa\x31\xbe\xd4\x22\x07\x55\x35\xbb\xc8\x41\xbd\x81\x7e\x65\x45\xf6\x6f\x3a\x68\x50\x27\xf7\xe8\xa5\xb2\x82\x6e\x4d\x9b\x0d\xea\xbc\x31\xe7\x96\x65\x0a\x59\xb7\xe7\x8a\x94\xaa\x7c\x57\x86\x6a\xa8\x52\x2b\x12\xa1\xb3\xf1\x4d\x76\x94\xa3\x2a\xf3\xb6\x11\xe0\x5c\x0c\xea\xd4\x76\x5a\x0c\xea\xcc\x0a\x58\x19\xaa\x59\x71\x24\x43\x35\x2b\x60\xcd\x1e\x9c\xb1\x07\x96\x25\xe7\x16\x64\x54\x3e\x2f\xaa\x50\xb0\x9b\x3d\x58\x6e\x40\xf1\xce\x9d\xd0\x01\xcc\x1e\xcc\xa5\x7b\xa9\x7c\xf6\x17\x6c\x5b\x3e\xfb\xab\x08\xfd\xec\xaf\x0b\xd8\x64\x47\x19\xe0\x50\x3e\xfb\xfb\xf9\x21\xfb\x2b\x8e\xf8\xcc\x53\x57\xfd\x50\x5c\x43\xcc\xe0\x7c\xd1\x5f\x7f\x4c\x7f\x0b\xac\x98\x02\xc6\x6c\xc5\x15\x1b\xd7\xd4\xaa\x5d\x88\x31\x8b\x0a\xa1\x29\x82\x0b\xc8\xb7\x98\x22\xb8\x28\x9c\x4d\x76\x14\x07\xb7\x91\x9b\x05\xa3\x74\x31\x45\x70\x51\x9a\xc9\x50\x2d\x80\xca\x02\xc6\x6c\x71\xcc\x79\xe7\x4e\x99\x56\xe5\xf5\x61\x4e\xa8\xb7\xcd\x16\x40\x65\x31\x9d\x51\x9c\x4d\xde\xaa\x63\x60\x75\xd1\xa1\x16\x67\xe2\xb1\x47\xae\x58\x63\x33\x8b\x30\xca\x24\xc0\x05\xeb\x68\x91\x83\x5a\x85\x60\x3a\xd4\xe4\x25\x16\x93\x00\x73\x3b\x5e\x2a\x3a\xd4\xce\xef\x43\xf7\xf7\xc5\xbe\xbe\xb6\x23\xe0\x32\x6c\xb3\x26\xbf\x62\x92\x3a\xd5\x30\x7d\x6d\xdc\x55\x94\xca\x1f\x17\xee\xf8\x54\xeb\x9f\xfa\x5e\xf8\xda\xb6\x55\x49\x74\xc1\x9d\x5d\xc2\xd7\x06\x76\xab\xfa\xda\x0a\x51\x7e\x55\x5f\x5b\x41\x0c\x56\x7d\x6d\xaa\x7f\xd5\xb0\xcd\x52\x7c\x37\x52\x3a\xfb\xd4\xc8\x44\x76\x6b\xf5\x6e\x59\xa7\xbe\x9a\xbc\x48\x3a\x6e\x8d\x94\xbf\x1c\x97\x55\xf7\x59\xb9\x7d\xd7\xf0\x96\x6c\xab\x8c\x4c\x1c\x16\x4d\x4e\x85\xfb\xbe\xea\x3e\x2b\x90\xc0\xab\xee\xb3\x82\x1c\xa8\xba\xcf\x4a\xf3\xc7\x66\xc2\x1c\x16\x25\x52\xa2\x95\xd5\x64\x8f\x9a\x45\x7b\x84\xd7\xa0\xa6\x48\x83\x70\x51\xb4\x47\x8f\x4f\xed\x11\x94\x92\x2a\x71\x54\x85\xa7\x1a\x6b\x59\x3e\x9f\x46\x4e\x1e\xdb\x6c\x8f\x08\x6f\xa9\xb7\x6d\xe6\xe0\xae\xb7\xc3\x0e\x37\xa9\xc6\xed\xb1\x60\xe4\x2a\x35\x54\x72\x60\x0d\x6a\x28\x3a\x5b\x35\x9a\xb2\x40\x3e\xaf\x5e\x67\xc3\x15\x1e\xa9\x9a\x29\xa8\xa0\x03\xd4\xc8\x14\x04\x8e\xa8\xb7\xad\xc2\x96\x58\xa5\x77\x72\xc7\x59\xaa\xa6\xde\xad\x88\x85\x1a\xa9\x77\x89\xb4\xad\xd2\x3b\x2b\x52\xa2\x9a\x29\xa8\xb0\x44\xab\x11\x91\x15\xd7\x6a\xf5\x06\xd8\x82\xcb\xaf\xe6\xb8\x5d\xcb\xef\xca\xf2\x62\x2f\x54\x80\x61\xad\xb7\x1f\x32\x26\x1d\xbb\x71\x95\xc0\x59\x9b\x4f\x0d\x6c\x1c\x56\x65\xf2\x64\x3c\xbc\xd5\x5c\x40\x15\xc7\x56\x95\xc0\x59\x91\x3f\xb5\x78\xf1\x25\x52\xb1\x9a\x0b\xa8\x56\xdf\xa5\x47\x06\xda\x54\x33\xe8\x56\x08\x8d\x15\x60\x58\x2b\x2a\x41\x35\xb0\xb1\xa2\x03\xd4\x62\xde\x7b\x37\x8e\x58\x8f\xdb\x81\x53\x95\x93\xc9\x55\x38\xa9\x9a\x14\x97\x4c\x83\xa9\x96\xb8\x48\x9a\x61\x97\x93\x69\xba\xaa\xea\xdd\xac\x15\x0a\x4d\xd5\xd5\x58\xf1\x2c\x57\xfd\x89\xaa\x5e\xd5\xf4\x3e\x15\x77\x5b\x95\x93\x59\x87\x3f\xb6\x0b\xa8\x04\xb5\xc6\x2d\x42\xcc\xbe\xe9\x7d\x2a\xa0\xb2\xca\xc9\x34\xcb\x50\x35\x56\x51\x55\xb3\xca\xc9\xac\x9f\x55\xd9\x23\xf7\x6f\xdc\xbe\x8a\x24\xaf\x26\xf0\xe1\xd2\xed\x54\x65\x5d\x56\x4c\x5e\x55\xd6\x65\x5d\xfe\xd8\xc0\x79\xf4\xf9\x6a\x34\x62\xc5\xe3\x50\xbd\x5f\xd5\xb0\x94\xda\xe2\x52\x42\xda\x6c\x62\xdb\xea\x6a\x97\x3c\x59\x97\x3f\xb6\xcd\xdb\x9a\x9d\x23\x10\x4a\xf5\xb6\x17\x43\x78\x6a\xdc\x91\x7a\xea\x2f\xc4\x7e\x35\xcd\x0e\x37\x46\xa5\x2a\x94\x93\x89\x54\x7b\x24\xb7\x64\x90\xe3\x22\x98\xcb\xaf\x74\x8b\xac\x04\xc3\x09\x1b\xf6\x84\x1a\x69\x76\x6e\xab\x32\xc5\xba\x12\x55\x6e\x64\x3d\xd6\x2c\x17\x14\xd3\x77\x95\x1b\xa9\xaa\x5c\xe5\x46\x1a\x02\x59\xe5\x46\x36\x94\xd2\x3a\xe2\xba\x49\xa6\x40\x6e\x64\x53\xb0\x7b\x7d\x6a\x43\x0b\xad\xa6\xd9\x69\xc4\xf0\x56\xb9\x91\xa6\x14\xa8\x72\x23\x9b\xa7\x80\xdc\xc8\xe6\x52\x97\x1b\xc9\xdd\xe5\xa9\xca\x8d\xd4\xef\x5c\x4d\xb3\xd3\xf0\xd4\x54\xb9\x91\x4d\x39\xaf\xcb\xaf\x79\x0a\xe8\xf2\x6b\x78\x79\xaa\xec\x47\x73\x7a\x54\x5d\x7e\x0d\xd3\x53\xd5\xe5\xd7\x60\x30\x56\x5d\x7e\xcd\x55\xa4\xcb\xaf\xa1\x3c\x54\x5d\x7e\xcd\x55\xa4\xcb\xaf\x61\x9a\xa8\x33\xee\xfb\xf0\x43\xf6\x08\xe7\x69\xd5\xe5\x67\x7e\x9b\xaa\xcb\x8f\xab\xb8\x52\xd5\xe5\x47\x4a\xe7\x54\xe5\x46\x76\xa8\xda\x55\x97\x9f\xf9\x5e\xaa\x2e\x3f\xae\x40\x4d\x35\xd2\xec\x28\x42\x75\xf9\x6d\xb4\x8b\x1a\x51\x81\x8a\x5f\x5d\x7e\x5b\x01\xab\xcb\x6f\x67\x8b\xd5\x22\xfd\xd5\xa9\xc7\xe5\x62\xa9\xea\xd4\xdb\x4e\x8a\x4e\x3d\x43\x89\x6b\x24\xd2\x41\xdf\xab\x3a\xf5\xc8\xc2\x9d\xaa\x4e\xbd\x85\x0d\xa4\x9a\x48\x67\xa1\xe0\xd5\x48\xa4\x83\xf7\xbf\x8a\xb9\x16\xd4\xd0\x2a\xe6\x5a\x28\x87\x55\xcc\xb5\x14\x65\xa2\xaa\xa5\x38\x12\x55\x2d\x3c\x2c\x55\x54\x45\x6a\xf7\x54\x03\x55\x79\x28\x04\xaa\x02\x53\xd7\x40\x55\x18\x4c\x6a\xa0\xaa\xc7\x77\x0d\xca\xc6\x97\x51\xf5\xdc\x2d\xe5\xad\x9e\xbb\xe5\xc1\xad\xe7\x6e\x2d\x9f\xda\x23\x90\x6f\xd5\x73\xb7\x94\x3f\x7a\xee\x96\x82\x3d\xee\x64\xf9\xff\x10\x76\x1e\x57\xdb\xb3\x3a\x14\x6d\xc9\x06\x93\xca\x21\xf6\x5f\xc2\x5d\xf7\xd9\x9b\x7f\xf8\xbd\x43\x96\x13\x18\x10\x3a\x0a\x47\xca\x0d\x3d\x77\x93\xe0\x9c\xa4\xe7\x6e\x2a\x9d\xf4\xcd\x2d\xb7\xb3\xbe\x39\x73\xa5\x93\xbe\x39\x93\x9b\xd2\xbc\x69\xe6\xbe\x99\x11\x99\x87\x9b\xf4\xcd\x2d\x35\x40\x7d\x73\xcb\x43\x5f\xdf\x9c\x69\x38\x49\xdf\xdc\x8a\x3e\xab\xa3\x19\x04\x9a\xf4\xcd\x2d\x62\x4e\x92\xbe\xb9\x85\x25\x39\xe9\x9b\x5b\xae\x1c\x7d\x73\x0b\x5a\xc2\xa4\x6f\xce\x10\xeb\xa4\x6f\x6e\xb9\x9d\xf5\xcd\x2d\xf5\x52\x7d\x73\xe6\xce\x24\x7d\x73\x0b\xbc\x96\xf4\xcd\x49\x26\x93\xf4\xcd\x2d\x75\xcb\x4b\x12\xeb\x61\x74\x33\xfb\xd4\x00\xc1\x4d\x75\x62\x2d\x4c\x86\x29\xae\xf1\x57\xdc\x7e\x32\x82\x71\x61\xed\x4c\x46\x30\x1e\xdf\x63\x04\xe3\x51\x83\x35\x82\xf1\xd8\x25\x23\x18\x4f\xf5\xaa\x19\xf7\xd8\x24\x93\x11\x8c\xc7\x4d\x64\x04\xa3\xc4\x32\x69\x5f\x3e\x64\x6f\x36\x43\xd9\x95\x6f\x04\xe3\xc1\xe6\x93\x8c\x60\x3c\x2a\xb4\x46\x30\x1e\xf7\x85\x11\x8c\x67\xf8\xac\x11\x6e\x4a\xf2\x7d\x49\x44\x59\xdb\x00\xae\x12\x7c\x95\x49\x7f\x7a\xf1\xd2\xb9\x99\x5f\x4c\x81\x69\x7d\x81\x50\xed\x64\x8c\xa2\x9e\xb8\x24\xdd\x8d\xfe\xb2\x24\x43\x6c\x98\xbe\x19\xdc\xa4\xdf\x2a\xc9\x10\x1b\x3c\x97\xc1\x4d\x25\x78\x88\x1f\xab\x37\x82\x8c\x12\xb8\xa9\x84\xe3\xb3\xd6\x19\x39\xf6\xca\x3a\x14\x2a\x1e\xd2\xdd\x98\xdb\x95\x4d\xeb\x0b\xa8\xac\x19\xdc\x54\xe2\x63\x53\xba\x72\x7c\x37\xf9\x31\x6b\xfe\xf5\xaa\x04\x3e\xc1\x57\x59\xe4\x0b\xc1\x9e\xad\x9c\x42\x9d\xd6\x37\xcb\x01\x2b\x57\x4c\x36\x3b\xcf\xcc\x91\x6c\x14\xa2\xd6\x95\xfc\x98\x98\xc9\xd1\x9c\xad\x9c\x12\x83\x37\x6f\x9b\x93\xa6\x23\xc2\x70\x9a\x81\x51\x45\x8f\x58\x36\x3b\x2f\xa2\xd0\x66\x4b\x91\x46\xce\xf1\xfc\x5a\x69\x82\x43\x3f\xbf\xb7\xd4\xac\x37\x3b\x5e\xb6\x76\x96\xe8\x55\x8a\xd1\x6c\x76\x5e\x44\x93\xcc\x66\xe7\x05\x44\x4a\x16\x64\x35\xfb\xfc\x4a\x8c\xb9\xfd\x90\x51\xa6\x08\xab\x2c\xc8\x6a\xc4\xfb\x65\x89\x5e\x1b\x09\x11\x59\x3a\xd6\xc6\x4e\xcf\xd2\xce\x34\x76\x59\xb6\x2a\x68\xc3\x2b\x94\xc3\x2d\x72\xc1\x10\xac\x0a\x4a\x81\xb0\x37\x5b\xdf\xa4\x55\x9f\xed\x36\x99\x32\xfc\x6b\xad\x71\x54\x65\x91\xd1\xf6\x55\x22\x23\x29\x89\xb2\xc8\x68\xa3\xc0\x67\x91\xd1\xe6\x20\xcb\x22\xa3\x4d\xc4\x66\x8e\x37\x31\xca\x57\x79\xda\xa2\xc0\x67\x39\x54\x0d\x58\xcd\xe2\xa6\x8d\x91\x27\x8b\x9b\x8c\x7d\xcd\x3a\xd4\x56\xb2\x69\x22\x27\x1b\x27\x8b\x9b\xf6\xb2\x93\xea\x0f\xcb\x4e\xaa\x3f\xb0\xad\xb2\xb8\x49\xc6\xd1\xac\x43\xed\x1d\x36\x15\x5f\x1c\x64\x59\xdc\x74\xd0\xd8\xb3\xb8\xe9\x00\x1c\xb2\xb8\xe9\x80\x31\xb3\x84\x30\x8f\xfb\x48\xdc\x04\x41\xfd\x9b\xbf\xcb\x8d\xe3\x9b\x15\x5f\xe8\x5a\xf9\x53\x7c\x6d\xaf\x2a\xbe\x8e\xcf\x2a\xa0\x6e\x9f\xad\x4d\x40\x28\x48\x16\x46\x19\x60\x9f\x65\x49\x7d\xd0\x97\xb2\xa9\x6d\x0f\xa4\x10\xd9\xda\x22\xcf\xff\xcf\xd3\x7f\x8a\xfd\x9c\xac\x28\xe4\xda\x96\x0d\xc6\xd8\xfb\x9c\xee\x60\xed\x83\x5c\xee\xc1\x8f\x3a\xd8\xe0\xb3\x66\x35\x2a\x25\xac\xe3\xf9\x44\x5f\x25\x9b\x84\x22\x45\xbe\x17\x43\xe2\x73\x92\x9d\x1e\xcd\x2a\xcb\xf7\x42\xd5\xec\x37\x5b\xa9\xf3\xc9\x5e\x75\xb0\xee\x8b\xec\x60\x5d\x9f\xd9\x11\x35\x6f\x76\x44\xdd\x9b\x1d\x51\xb3\xe9\x88\x40\xa3\x59\xbe\x97\xa7\xf9\x5d\x47\xc4\xc9\x95\xa5\x48\x35\x62\x33\x9b\xbc\x66\x74\x7d\xce\x52\x93\x0d\xaf\x2e\x9b\x8c\x57\x8a\xd4\x67\xf9\x5d\xc7\x8b\x2f\x35\x97\x5b\xbe\x90\x21\xc8\xf7\xf2\x60\xbe\xce\xf2\xbd\x18\xde\x99\xe5\x7b\x79\x31\x5c\x64\xf9\x5e\xde\xe0\xb3\x8c\xf7\x55\xfc\x02\xd0\xb2\x21\x8b\xd9\x4a\x9d\xcf\xf1\x55\x8c\xf7\x7d\x7c\xd5\x65\x1d\x64\x41\xca\x83\xfa\x3a\xbf\x45\x2a\xb6\xcf\x5e\x31\xde\xb7\xf8\x21\xc6\xfb\xa2\x76\xe6\x62\x79\xbb\xe6\x87\xa4\xda\xc3\x9a\x94\xe5\x41\x7d\x87\x4d\xc6\xfb\x82\x5f\x32\x00\x2d\x1b\x58\x98\x05\x68\xc7\x5f\x77\xcb\x71\x2a\x34\x8c\xc9\x94\x5f\x2b\x1b\x93\x99\xc0\x2f\xd9\x98\xcc\x84\x1d\x32\x1b\x93\x99\x3c\x13\x81\x60\x2d\xe1\x20\xcb\x32\xba\x88\x40\x73\xbd\x8c\xeb\xfc\xd8\x66\x9c\x30\x50\x37\x37\x63\x7d\xdd\x29\xb2\x95\x66\xac\x94\xb9\x99\xd9\xe7\x41\x26\xc5\x68\x70\x2f\xb4\x4b\x76\xc4\x00\xdb\x4d\xa6\xa0\x69\x2d\xcb\x09\x60\xc9\x5d\x3e\x64\x20\x67\xee\xb7\x2c\x2f\xb3\x70\x29\x46\x51\xe0\xb3\x14\xa3\xb3\xfa\x2a\xc9\x9d\x80\x24\x59\x46\x94\xe9\xa4\x80\x8c\xb2\xe8\x26\x77\x4b\xda\x79\x18\x49\x22\x3a\x31\x3c\xe6\xcb\x79\x52\x6d\xca\x98\x41\x00\x43\xee\x32\x96\x2f\x3f\xe4\x88\x9c\xd0\xe1\x88\xdc\x83\xe3\xd2\xa2\x32\x29\xc3\x3e\x03\x57\xf3\xb8\x84\x54\xfc\xc9\x61\x9f\x71\x40\x64\x59\x4d\xa6\xc2\x59\x56\x93\x79\xf8\x1b\x60\x9f\x3c\x9d\x7d\x3d\x4a\x53\xe1\xac\x47\x49\xec\x93\xf5\x28\x4d\x3c\x77\x59\x8f\xd2\x44\x13\xcb\x7a\x94\xa6\x8b\x41\x8f\xd2\x52\x6f\xd1\xa3\x24\x7e\xc9\x7a\x94\x16\x76\x8f\xac\x47\x49\xae\xb9\xac\x47\x69\x91\x2b\x94\xf5\x28\xad\xc7\x67\x93\x4d\xfe\x95\x1e\xa5\xa5\x60\xd7\xa3\xb4\xdc\x92\x7a\x94\x4c\x7e\xcf\x7a\x94\x96\x3a\x8f\x1e\xa5\x1f\x6e\xfa\xb7\xd8\xd7\xd9\xb4\x5c\x72\x3a\x9b\x16\x11\x50\x59\x67\xd3\x22\x7c\x28\xeb\x6c\x5a\x38\x6e\xb2\xce\xa6\xe5\xfa\xd4\xd9\xb4\xb0\x0d\x66\x9d\x4d\x4b\x5d\x42\x67\x93\x28\x29\xeb\x6c\x5a\x04\xab\x64\x9d\x4d\x4b\xe5\x41\x67\x93\x94\x7d\x59\x77\x92\xb9\xa5\x59\x77\x92\x04\x71\x59\x77\xd2\x2a\x5e\x75\x44\x6a\x56\xba\x93\xa4\x25\xc9\x97\xf0\x84\xe0\xf3\xac\x3b\x49\xb0\x93\x6f\x31\x4a\xec\xc6\x59\x77\x92\x9c\xa8\x79\x5f\x02\x76\x86\xa0\x3b\x69\xb9\x20\x75\x27\x69\x9a\xc8\x97\x08\x14\x0b\x5e\xd6\x9d\xb4\x94\x5d\xba\x93\x16\x31\xa8\x59\x77\x12\xe5\xb9\xdf\xbc\x2f\xdb\x18\x93\xab\x3b\xc9\xa4\xf2\x6c\xc5\xc9\xd5\xed\xd5\x2d\x36\xea\xcd\x8e\x37\x7b\x95\xf1\xee\xcf\xa6\x04\xdd\xd9\x9b\x65\x45\x70\x8b\x9d\xcb\xae\xc6\x00\x75\x36\x6d\x77\xba\xee\xa4\x1d\xbd\x39\xf9\x5d\x7e\x9d\xd5\x31\x34\xb6\xe4\x4b\xf5\xb9\x7c\x55\xf5\x43\xfc\x9c\xe3\x88\x88\x5c\xca\x47\x56\x5b\xff\xa4\x54\x9f\x07\x9b\x5e\x96\xea\x73\x6f\xbf\xeb\x88\x54\x3b\xcf\xa5\x1c\x67\x42\xcf\x1d\xd1\xef\xd9\xf2\x38\x22\xce\xe2\x62\x75\x8c\xcd\x71\x53\xa4\x34\x91\x8a\xad\x58\x1d\x63\x73\xbc\x16\x79\x4b\x36\xfa\x5e\x91\xea\x93\xaa\x3a\x6f\x91\xea\xd3\xb4\xdc\xf2\x5c\x6a\x53\xaf\x32\x5e\x2a\x37\xbd\xe5\xb9\x23\xf2\xcd\x8c\x48\x06\xef\xf2\x38\x22\x6c\x6b\x05\xec\x93\xa9\xb3\xfc\x16\x99\x49\x0e\x19\xeb\x05\xec\x93\x0f\x06\x84\x22\x99\xa7\x59\xab\x45\x66\x12\xca\xe3\xbe\xc5\x22\x17\xe6\xe1\x16\xab\x46\x9e\x60\x53\x06\xbc\x6a\xd3\x7a\x1f\x40\x83\x22\x99\xa7\x68\xbd\x58\xe4\xe2\x10\x50\x54\xc0\x3e\xf9\xe0\xf7\x29\x32\x93\x98\xc4\x5a\x64\x26\x39\xc5\x6e\x38\x5e\x34\xf6\x22\x33\x89\x6a\x76\xb1\xc8\xc5\x61\x06\x8b\x64\x9e\x07\xe0\x50\x24\xf3\x3c\xc4\xcb\x15\xab\x46\xca\xe1\x5c\x2c\x72\xa1\x5e\x5d\x6e\x91\x0b\xe4\x7c\x91\x99\x44\xa6\xe5\x12\x1c\x2f\xcb\xac\x04\xc7\x8b\x9c\x2f\x16\xb9\xb0\x28\x40\x01\x55\x95\x07\x7d\xa9\x04\x19\x1d\x51\x8f\x4b\x90\x54\x2a\xda\xc9\x61\x93\x09\x95\x99\xe4\xf9\x7c\x33\x87\xfe\x93\xec\x06\xea\xfd\xa8\x76\xe3\xd8\x64\x06\x2f\x33\x09\x56\x91\x12\x6f\x01\x6b\xba\x21\x40\x1b\xdd\xab\x32\x93\x10\x1f\x58\x00\x68\xe5\x47\x74\xf6\x4f\xb1\x5f\xc0\x6e\xad\x23\x7e\x8b\x3c\x9f\xd4\x96\x7d\xcb\x25\x2d\xd9\x36\xab\x4d\x6f\x26\x3a\xc5\xca\x1a\x45\xec\x66\x4e\x5c\x11\xbb\x6d\x42\x4c\x8b\xc1\x90\xe3\xb1\x29\x05\xb7\xb3\x19\x2f\x6f\xad\xa3\x93\x0c\x10\x77\x61\x31\x18\xf2\x6c\x9b\x92\x79\xda\x0d\x83\x21\xc5\x50\xc5\x60\xc8\x83\xfa\x57\x0c\x86\x34\x51\xba\x18\x0c\x69\xa2\x71\x31\x18\xd2\xbc\xe9\x22\x69\x89\xac\x83\xe5\x33\x41\xe9\xf1\xcd\x26\x28\x11\x63\x50\x24\x2d\x79\x82\x6f\x36\x41\x09\xb1\x5f\x6e\xfd\x0b\x80\x52\xf9\x4c\x50\x7a\xbd\xd9\x04\x25\xb0\x4f\x49\xa6\x20\x21\xe8\x4a\x32\xe5\xca\x8d\x9f\x4c\xb9\x42\xa2\x16\x93\xe6\x1e\xac\x1c\xc5\xa4\xb9\x87\x58\xac\x62\xd2\xdc\x93\x6c\xda\x67\xe5\x8f\x49\x73\x0f\x16\xcb\x22\x04\xcb\x6e\x31\x93\xe6\x1e\x65\x88\x49\x73\xa2\xaa\x62\xd2\xdc\x53\x7d\x95\x49\x55\x98\xaf\x8b\x49\x73\xe2\xa6\x62\xd2\xdc\x83\xc5\xa0\xdc\x1a\x16\xf6\x59\x17\x98\xe9\xf9\xe5\x12\x72\xe2\x5b\x2c\x56\x7e\x34\x77\xb8\x48\x3c\x32\xa3\xaf\xd2\x3b\xdc\x6d\x6a\xeb\xbe\x6f\xd6\xd6\x8d\x77\xa6\xe8\x20\x1b\xb8\x54\x8a\x0e\xb2\x99\xed\xa4\xb6\xee\xec\x77\xd9\x9e\x5a\x0b\x4b\x16\x7d\x2b\x42\xf3\x2d\x72\xca\x9b\xad\xfc\xe8\xd9\x54\xca\xcd\x62\xe0\xd7\xe9\x5c\x3b\xf8\x52\x8b\x49\x73\xc3\x21\x14\x6d\xfb\x1c\xcd\x45\x0f\x9a\xf5\x6b\x8a\x1e\xb4\xe6\x9f\xd4\x83\xa6\xa1\xa6\xe8\x23\x6b\xdd\xab\x1a\x97\x08\x4a\x2c\xfa\xc8\x1a\x51\x4f\xe5\x96\xa2\xf0\x5f\xe9\x23\x6b\x6e\x76\x7d\x64\x0d\x4f\x7a\xa9\xb7\xf6\x1f\xf3\xab\x8f\xac\x0d\x9b\xc6\x80\xe1\x60\x2a\x42\xb0\xe6\x89\xa9\x8f\xac\x61\xc6\x29\x7a\xc1\x1a\x4a\x4e\xd1\x0b\xd6\x01\x4a\x45\x2f\x58\x23\x54\xb2\xe8\x05\x6b\xcb\xab\x8e\xc8\x43\x50\x2f\x58\x47\xe7\x29\x26\xbe\x75\x0f\xb2\x7a\xa9\xec\xed\xe4\xb1\xc9\x88\xf4\x91\x75\xb7\xa4\x3e\xb2\xae\x24\xd7\x47\xd6\x5f\x9b\x8c\xa8\x13\xca\x5e\xf4\x91\x75\x9c\xf2\x45\x1f\x59\x07\x64\x15\x7d\x64\x1d\xc7\x7a\xd1\x47\xd6\x9d\x6e\x7d\x64\xdd\x4d\xd7\x6e\x71\x0d\x6f\x96\x49\x72\x7b\x33\xe3\xed\xdd\x37\x3b\x5e\x4c\x0a\x45\x1f\x59\x2f\x76\xc3\xf1\x7a\x9e\xea\x23\xeb\xfe\x76\x7d\x64\x7d\xff\x15\xc9\x53\x74\x9f\x75\x27\x57\xf7\x59\x77\xea\xcd\x98\xeb\x80\xb5\x62\xc6\x5c\xf7\x70\xd1\xb9\x26\x9b\x6e\xd1\xb9\xd6\x9d\x4d\x9d\x6b\x1d\x28\x57\x74\xae\x75\xd0\x59\xd1\xb9\xd6\x95\xc6\x3a\xd7\xba\x53\xaf\x73\xad\x13\xe9\x51\x74\xae\x0d\xe7\x5a\xe7\xda\xc0\x40\x5d\x74\xae\x0d\x25\xaa\xce\x35\x89\x8f\x8a\xce\xb5\x81\x07\xb0\x98\x4f\x37\x9c\x5c\x03\x1a\xa7\x7a\xd7\x75\xbd\xe1\x88\x2c\xba\xde\x06\xf1\x8d\x45\xd7\xdb\xc8\xde\x6c\x35\x43\xfc\x20\x45\xd7\x9b\xc4\x7a\x45\xd7\xdb\x48\x5e\x95\xfc\xc7\x95\x60\xf5\xc6\xbb\x12\x00\x98\xed\xce\x26\x00\xb3\x51\x72\xf1\x2d\x00\xcc\xd6\x15\xbf\xf3\x96\x2d\xe3\x59\x20\x64\xeb\x8a\x5f\x20\x64\xeb\x58\x77\xcb\xbc\xc7\x3a\xe3\xb5\x96\x44\xc7\x20\x56\xa6\x05\x05\xd0\xba\xcb\x92\xdf\x4f\x5d\x42\xbe\xca\xae\x1a\xb6\x2c\xf5\xa8\x42\x7b\xf9\x2a\x09\x99\x2e\xf2\x55\x6e\xc5\x91\x75\x1c\xf6\x7d\x55\xb3\xc9\x10\xd6\xa5\x35\xa3\x57\x00\xb4\xa2\xed\xb7\x48\x32\x29\x75\x43\xd9\x56\x9c\xc4\x80\x50\xb6\xdd\x70\x4d\x4a\x23\x79\x35\xf6\x6d\x37\xb0\xfd\x16\x89\x22\xb5\xfd\x16\x6b\x0e\x4a\x86\x53\xb6\xcc\x06\x1e\xcd\xfa\x7d\x28\xba\xf7\x16\xe9\x1c\x8d\x9b\x2d\xba\x63\x0e\x56\x9d\xa2\xc3\x45\x16\xa9\xa2\xc3\xc5\xd4\xb6\xa2\xc3\xe5\xb0\x90\xaa\x0e\x17\x69\x76\xaa\x0e\x97\x43\xe0\x47\xd5\x3d\x71\xd0\x15\xab\x24\x09\x9b\xc5\x50\x75\x4f\xa4\xe2\xcd\x7a\x0f\x19\x60\xd5\x3d\x91\xf0\x5a\xd6\xf7\x26\x92\xfb\x2a\xdd\x31\xd5\xab\xba\x63\x00\xe0\xd5\x3a\x74\x06\x7f\x56\xeb\xd0\x51\xc0\xfa\xad\xaf\xee\x98\xe6\x77\x75\xc7\x4c\x9b\xba\x63\xa6\x37\xeb\x8e\x41\x9f\xaf\xd6\xa1\x93\xe8\xb5\x06\xdd\x31\xd8\xe5\xaa\xe4\x81\xa6\x4b\x54\xc9\x03\x23\xd3\x5d\x83\xee\x18\xb2\xe4\xaa\x85\xdd\xcd\x34\xa9\xf2\xed\x53\xe7\xf4\xad\x3a\x3e\x2a\x28\xa3\xaa\xa2\x7f\xd8\x99\xab\x2a\xba\xc1\x84\x55\x15\x3d\x6e\x7b\xe5\x78\xc1\x02\x55\x15\xdd\x74\x98\xaa\x8a\x6e\xec\x6b\x95\x3c\xd0\xf4\x90\x8a\x8a\x5e\x3e\x54\x82\x2a\xdf\xfe\x87\x36\x55\xe5\xdb\x37\x8e\xb4\xca\xb7\xff\x81\x8b\x2b\x2a\x7a\xf9\xe0\x96\xa9\xaa\xe8\x1f\xca\x73\x45\x0f\x2f\x1f\x0e\xee\x6a\x1d\xba\x0f\x6b\x61\x8d\xd6\xdd\x73\x21\x49\x1e\xf8\xbd\x76\x83\xf1\xfe\x42\x61\xff\x29\xf6\xab\xbc\x82\x66\x9d\x54\x54\xf4\x62\x7c\x63\x45\x45\x2f\x5f\xb2\xc3\xcb\x26\xbf\x31\xfa\x2b\x8a\x37\xfb\x2b\x08\x3c\xab\x9f\xbf\x02\x07\x59\xfd\xfc\x15\x38\x6d\xeb\xe7\xaf\x70\x41\x7e\x0e\x16\xcf\x54\x95\x39\x50\x0a\xfd\xfa\x39\xd8\xe6\xcd\xf6\x19\x51\x56\x3f\xfb\xdc\x7d\xd6\x3e\x73\x72\x55\xcb\xcc\x19\x52\x5b\xf5\x89\x98\x27\x5e\x2f\xdd\x1f\xc2\xb9\xea\x13\x29\xc0\xb1\xaa\xe3\xa3\x60\x94\xab\x3a\x3e\x4c\xc1\xae\x3a\x3e\x0a\x92\xad\xea\xf8\x28\x0e\x41\xc7\x47\xc9\x7e\x57\x5a\xf8\xe2\x87\x00\xc5\xa5\xf9\x66\xe9\x0d\x1d\x82\x34\xf8\xa5\xf8\xe6\xe5\x55\x6f\xbe\xb4\xe1\x76\xf2\x78\x95\xdf\xae\x5b\xa4\xf8\xeb\x74\x8b\x14\xe7\x48\xb7\x88\x99\xe0\x55\xb7\x48\x01\xa0\x55\xdd\x22\x95\xe3\xb5\xea\x16\x31\x57\xba\xea\x16\xa9\xee\x29\xdd\x22\xc5\x3d\xa5\x5b\xa4\x0c\x5f\x25\x13\xef\xe3\x87\x1c\xaf\xbb\x55\xb7\x48\xc1\xe5\x57\x75\x8b\x98\x85\x5d\x75\x8b\x14\xa5\x84\x6e\x11\x73\xa5\xab\x6e\x11\xf3\x9d\xab\x6e\x91\x82\xdb\xbd\xea\x16\x31\x47\xbb\xea\x16\x29\x18\x88\xaa\x6e\x91\x8a\xd5\xae\xea\x16\x29\xf8\xe8\xab\x6e\x11\xf3\xac\xab\xae\x8d\xfa\x79\xf3\xa5\x90\xf5\x55\x96\x2a\x00\x82\x55\x5d\x1b\x35\xdb\xa4\xcf\xb5\xda\x2b\xfb\x8c\xfb\xbb\xde\x9a\xe9\x6e\x2b\x5d\x1b\x15\xd0\x51\x75\x6d\x54\x22\x36\xab\x35\xd3\x2b\x6a\x67\x95\xca\x9e\xba\xc3\x6f\xb5\x66\x7a\x55\xec\x4b\x65\x5f\x51\x4a\x6b\xb5\xea\x0a\xa1\xa1\xd5\x12\x6f\x35\xd8\x74\x8e\x9c\x85\xea\x78\xb1\x62\x55\x6b\xa6\x57\xf0\x4b\xad\x8e\xd7\x85\x64\xcd\xf4\x8a\xf1\xa1\x4a\x65\x5f\x31\x1e\xd6\xea\x78\x3d\x14\xd0\xba\xb3\x45\xeb\x6a\x73\xbc\xb8\x54\x6a\x73\x44\xa8\xf7\xd5\xaa\xe8\x3a\xc7\xab\x64\xf5\xd5\x25\x8a\x5e\x9d\x1b\x88\xbb\x5a\xe2\xad\x11\xcf\x50\xd1\xab\x73\x53\x7c\x59\xe2\xad\xa2\x88\x56\xc9\xea\xdb\xeb\xab\x18\x51\x2b\x3e\xcb\x88\x5a\xb4\x1b\xdb\x3e\x7b\x33\x23\x92\x6d\xa3\xea\x7f\x91\x0f\xb9\xf6\x5b\x02\x8c\x3e\xeb\x7f\x69\xfe\x0d\xfd\x2f\x3a\xe5\xab\xfe\x17\x19\xa8\xaa\xfe\x97\x56\x6c\x5a\x4c\x24\xfa\x2a\xc7\x4b\xe4\x73\xd5\xff\xd2\x08\x23\xa9\xfa\x5f\x1a\x66\xba\xaa\xff\xa5\xe5\xbf\x5c\xba\x55\xd7\x8c\x31\x06\x55\xd7\x4c\x2b\xbe\xc7\xc1\x82\x38\xaa\xae\x99\xa6\x74\xba\x74\xf4\xc3\xab\x0e\xb6\xdb\x74\xb0\x8a\x23\x1d\x37\x0d\x25\xad\xea\xb8\x69\x18\x7b\xab\x8e\x9b\xe6\x06\x1c\x77\xb0\xac\x5e\x1d\x37\x12\xd5\x56\x1d\x37\x4d\x95\x46\xc7\x4d\x03\x74\xd4\x71\x7f\x85\xdf\xf5\x57\x1c\x9f\x65\xbc\x3d\xd8\x74\xbc\xf8\xcd\xab\xae\x99\x8e\x3e\x5f\x75\xcd\x34\x4f\x7c\x5d\x33\xdd\x9d\xae\x6b\xa6\xbb\xe3\x74\xcd\x74\xdc\x13\x55\xd7\x4c\x4f\x36\x8b\x4d\x7e\xce\xbc\x35\x16\xfd\x10\x23\xea\x1e\x82\xba\x66\x2c\xc2\x52\xf5\xbf\xf4\x68\x27\xa7\x43\x60\x9d\xe8\x7f\xe9\xc9\xe6\xf6\x59\xd6\x89\xfe\x17\x4b\xeb\x56\xfd\x2f\x2a\xff\x55\xff\x4b\xc7\x31\x57\xf5\xbf\x74\x2c\x06\x55\xff\x4b\x77\x42\x55\xef\x63\xf4\xaa\x6a\x18\x8e\x9e\xaa\xff\xc5\x72\x6f\x55\xff\x8b\x16\xcb\xfa\x5f\x75\x72\x86\xa0\x0f\x65\x80\x14\xea\x2d\xa6\x06\xce\xad\xb7\xfe\xb8\xbb\x46\xda\x87\xa3\x3a\x21\x57\x83\x46\xe6\x2a\x57\x83\xc1\x66\x55\x36\x06\x8d\xcc\xd5\xb0\x2e\x59\x16\xab\x7c\x0b\x16\x41\xa8\xf2\x2d\x18\x8a\x56\x6f\x15\x33\x4f\xcc\xa3\x01\xd0\xed\x29\x01\xfb\x21\x54\xa0\x4a\xb0\x60\xcd\xd0\xaa\xb7\x22\x28\x8e\xf4\x56\x84\xd7\x37\x9b\x9e\xa6\x92\xa6\xb7\x42\xfa\xfd\xaa\xb7\x22\x10\xf5\x54\xf5\x56\x04\x0c\x80\x55\x6f\x45\x40\x57\x6c\x7a\x2b\x02\x52\xb1\xe9\xad\x08\x68\x83\x4d\x82\x85\x17\x85\xb6\x49\xc0\xfe\x61\xbe\x6e\xc6\x71\x7d\xc7\x67\xd5\xb5\x8e\x57\x05\x0e\x8f\x4d\x74\x2d\xf3\x14\xda\x73\x33\x7a\x22\x4d\xc6\x9b\xa2\xaf\x62\x08\x19\x95\xa0\x3d\xb7\xa6\x6d\xa3\xa9\x66\x82\x23\xa0\xe9\x9e\xc8\x44\xc5\xb4\x5b\x6b\x0c\xc4\xdd\x74\x4f\x18\xcb\xdd\x0c\xcd\x7a\xaa\x57\xd9\x74\x99\x30\xb6\xa6\x7b\x42\x0e\xb1\xf6\xde\x1a\x01\xf4\x4a\xf7\x84\xa4\x61\x4d\xf7\x44\xc6\x4b\xd2\x74\x4f\x58\x1b\xa5\xc9\xb7\xf0\x3c\x5e\xd5\xfe\x89\x9f\xab\xe9\x9e\x30\x5a\xbb\xe9\x9e\xc8\x9f\x6f\x76\xbc\x9f\x37\x4b\x34\x8d\xd1\xb2\xdd\x5a\x63\x04\x13\xb6\x70\x6b\xab\x31\x04\xdd\x13\xb9\xd8\x64\xd3\x65\x96\x68\xd3\x3d\x91\xf1\xb0\x34\xdd\x13\xb9\x7b\xb3\xe3\x25\x40\xa5\x05\xc7\x3b\xfe\x72\xe9\x36\x59\xd3\xf3\xb6\x87\x0e\x16\x15\xae\xc9\x99\xb0\xfc\x51\x72\x26\x2c\x4c\x94\x4d\xce\x04\x03\x5f\x9b\x9c\x09\x0b\x3d\xa4\xc9\x6d\xbe\xb0\xed\xb7\x5b\x0e\xec\xf3\x66\x76\xcd\x42\xe1\x69\xf1\x12\x02\xf3\x5d\x39\x13\x1a\x8e\xd7\x26\x34\x08\x68\x0b\x4d\xca\x71\x93\x3a\x9b\xa5\xb8\x02\x27\x6f\x13\x38\x04\x74\xa7\x26\x70\x08\xd9\x9b\x0d\xa4\xf4\xaf\x0a\x1c\xac\x1a\xd9\x04\x0e\xa1\xfa\x2a\x03\x29\xab\xcf\x1a\x8f\x41\x9c\x4f\xfb\xcc\xa6\xc4\x62\xd9\x24\x15\x8f\x18\x97\x5a\x32\x9b\x12\xed\xb7\x89\x32\x3e\x62\x39\x9a\x28\xe3\x43\x91\x6e\x92\x15\xe8\x44\x68\xa2\x8c\x41\x4c\x57\x13\x65\xc8\x1c\xd8\x44\x19\x03\xa5\xb4\x89\x32\x06\x71\x2f\x4d\x94\x21\x91\x60\x13\x65\xcc\xc7\xab\xc6\x36\xe0\x61\x69\xa2\x0c\x2b\x08\x34\x51\xc6\x7c\x7c\xb3\xb1\x0d\xee\x47\x81\xc3\x44\x1c\x35\x81\xc3\x44\x75\x6c\x02\x07\xeb\xc3\x36\x81\xc3\x04\x05\xb7\x7c\xab\xd6\xf2\x73\x04\x0e\xc9\x1d\x27\x70\x30\x05\xa9\x09\x1c\x12\x62\xbf\x5d\x32\x70\x57\x4e\x76\xca\x92\xaf\x72\xca\xdc\x62\xd9\x29\x03\x32\x37\xb9\x0b\xcc\xcb\x68\x9a\xeb\xc3\xeb\xcd\x16\xd9\x71\x21\xc9\x5d\xf0\x00\x48\x5b\xb9\x25\x4b\xf8\xed\xe5\x96\xf2\xf4\xaa\x40\x49\x41\x67\xc2\xcb\x83\x2b\xb9\xc9\x5d\x60\x1c\x57\x93\xbb\xe0\xe1\x00\x6d\x72\x17\x18\x5d\xd6\xe4\x2e\x30\x52\xab\xdd\xfa\x59\x58\x48\x9a\xfc\x03\xf2\xd4\x35\xf9\x07\x1e\x14\xe9\x76\x6b\x60\x11\x94\xd8\xe4\x1f\x78\x40\x55\x4d\xfe\x81\x87\xa0\xe2\x26\xff\x80\x0c\x78\x4d\xe0\x50\xd0\x7e\x5b\xb5\xcf\xcb\x9b\xed\x33\x06\xb1\x26\xff\xc0\x83\xcd\xb6\xc9\x3f\x60\x48\x58\x93\x7f\x40\x0a\xd9\x26\xc3\xc0\x73\xec\xa4\x94\xec\xa8\xf7\xed\x56\xb9\x72\x5d\xc9\x30\xf0\x12\x04\xd5\x64\x18\x98\x58\x56\x9b\x34\x02\xaf\x22\x48\x1a\x01\xb9\xf5\x9a\x34\x02\xaf\xa7\x9e\x34\x02\x2f\x74\x22\xcd\x2a\x57\xaf\xab\x4e\x1a\x81\xf7\xf3\x6a\xb1\xe9\xb3\x8c\xe8\x05\xf8\x37\x69\x04\x5e\xc0\x4e\xbb\xd5\x9f\x81\x06\x4d\xa2\x80\x17\x2c\xd0\x24\x0a\x78\xb1\x03\x34\xa9\x00\x5e\x14\x95\x26\x15\x80\xd5\xd3\xda\xe5\x9a\x73\x3d\xff\x67\x39\xe7\x6f\x48\x05\xf0\x62\xb3\x6d\x52\x01\xc8\x0d\xde\xa4\x02\x78\xd1\xe2\x5a\x37\x52\x62\xf9\xac\x7d\xee\x7f\x51\xb1\x35\x59\x02\x5e\x14\xad\x76\x2b\x55\x81\x29\x9a\xa8\xa1\x60\xa4\x6a\xdd\xc1\x4e\x6f\x76\xb0\x68\xfb\xcd\x4a\x55\x2f\x1a\x7b\x03\x1a\xd4\x97\x94\xcf\x26\x34\x18\x8a\x85\x5b\xa9\x0a\xd5\xb1\x09\x0d\x06\x08\xab\x09\x0d\x06\x11\x50\x4d\x68\x30\x3e\x5f\xa5\xdc\xf3\x8c\xd0\x4e\x6e\x29\x8d\xa6\x3e\x3f\x86\xcf\xea\x98\xf3\x30\x32\x10\x6b\xb8\x6b\x08\xc4\xaa\x4d\x89\xaa\xb6\x9f\x50\x86\x9b\x56\x74\xab\x48\x37\xb5\xfd\xa4\x1c\x50\xdb\x4f\xca\x01\xb5\xfd\x44\x10\x66\x53\xdb\x37\xdb\xae\xa9\xed\xa7\xe9\xb3\x4a\x36\xff\xb3\xda\x7e\x42\x75\x6c\x6a\xfb\xe6\x3c\x36\xb5\x7d\x53\x11\xdb\x34\x4e\xa0\xda\x49\xe3\x04\x14\x56\x16\x9f\x32\x9c\xb5\xa1\xed\x17\x03\x56\x9b\xc5\xa7\x8c\x32\x6d\xcb\xe2\x44\x58\x59\x9b\xf5\x9a\xaf\xc0\xd1\x98\x7f\x85\x95\xda\xfe\x15\x65\x6a\xfb\x0f\x66\xf3\xa6\x31\xff\x71\x6d\x90\xa2\x52\x5e\x45\x0a\x58\xa0\xbc\xea\x8a\x9a\xfa\x5f\xc5\xaf\xa6\x7e\xa9\x2f\x9b\xa6\x7e\x89\x31\x1b\x48\xa1\xbc\xc5\x67\x19\xef\x8b\x59\xb2\x11\x8b\x55\xde\x6c\x37\x18\xef\x4b\xe2\x7f\x03\x47\x94\x57\x3d\xd3\xa2\xcc\xc6\xa0\x36\xbd\x06\x2f\xc0\xa1\xe9\x35\x78\x8b\x57\x19\xef\xdb\xbc\xca\x78\x5f\xd7\xd5\x96\xeb\xd2\xdd\xba\x1d\x6f\xf7\x66\xc7\x0b\xf4\x6b\xfa\x14\xde\x6d\xd3\xf1\x82\x7c\xdb\x76\xbc\xaa\xe8\x16\x9f\x7a\x3d\xb8\xb7\xca\x86\x0a\xad\xfe\x88\x10\xfc\x90\xf3\x4b\x26\x42\x33\x0f\xe5\xca\x3d\xf3\x50\x5e\x55\xa0\x5b\x7c\x0a\x0f\x7e\xbb\xc5\xa7\x80\xab\xcd\x48\xad\xa0\x16\x67\xa4\x56\x70\x0f\x9a\x87\xd2\x54\xf9\xcc\x43\x69\x6e\x2b\x1d\x1f\xcd\x1d\x6a\x1e\x4a\xfb\xfc\x10\x7d\x6e\x4a\x54\x1d\x1f\x52\x82\xf4\x5b\x40\x8a\xa3\xb9\xeb\xf8\xd0\x50\xd3\xc1\x2f\x45\x63\x4b\x17\xbf\x34\xb4\xb8\x2e\x7e\x69\xd9\x9b\x2d\x88\x56\x7c\x33\x73\xd4\x40\x0a\x5d\xfc\x62\x52\x43\x17\xbf\xb4\x66\xd3\x11\x75\x5f\xe5\x88\x98\xee\x6e\x3a\xbf\xc1\x48\xdd\x74\x7e\x4b\x27\x77\xc1\x8e\x95\xf5\xba\x60\xe7\x41\x11\xed\x82\x1d\x2b\xc5\x74\xc1\xce\x63\x9f\x05\x3b\x0f\xc0\xa1\x0b\x76\x1e\x84\x5b\x37\x16\xeb\xc1\x1a\xd3\x05\x3b\x6e\xc9\x2e\xd8\x91\xbf\xbd\x0b\x76\xde\xe7\xaf\x12\xea\x5d\x1c\x64\x71\xe7\x2e\x0e\x7a\xbb\x1f\x35\x90\xbb\x79\xd5\x40\xee\xe9\x47\x0d\xe4\xf6\x57\x88\x83\xc2\xed\x83\x47\x3c\xd2\xa9\xcb\x3b\xf7\xe0\x99\xea\xe2\xa0\x89\x08\xed\xe2\xa0\x89\x37\xad\x8b\x83\x16\xea\x41\xbf\x05\xa4\xee\xd5\x68\xb3\xd2\x64\xea\x35\xf6\x76\x7d\x40\x1a\xa8\xbb\x5e\x9e\x0a\x56\xed\x96\x88\x4a\xfe\x37\xbd\x3c\x95\x78\x8c\xae\x6b\xa6\x82\xbe\xbb\xae\x99\xea\x6c\xea\x9a\xa9\xc0\xed\xae\x6b\xa6\x06\xaf\xda\x0d\xe2\x04\xba\xae\x19\xed\xa8\x5d\xd7\x8c\x86\xe2\xae\x6b\xa6\x66\xbf\x7b\xbb\xc1\x00\xf5\xb0\x54\x0c\x44\x5d\x0f\x4b\x05\x37\x75\x3d\x2c\x56\xe6\xea\x7a\x58\x2a\x4e\x84\xae\x87\xa5\x62\x97\xeb\x7a\x58\xb4\xc1\x76\x3d\x2c\x32\x70\x76\x61\x54\xc5\xca\xd1\x85\x51\x95\x13\xa4\x0b\xa3\x2a\xa6\x98\x2e\x8c\xaa\xdd\x57\x39\x22\x82\x01\xba\xfe\x97\x8a\x48\xe9\x56\x6e\xaa\x38\x3e\xba\x20\xab\x22\xe8\xba\x20\xab\x2e\x6f\x76\xbc\xd3\xa6\xe3\xdd\x76\xc3\xf1\x1e\x3f\xa4\x0c\x79\x7c\xb3\xe3\x45\xed\xec\x49\x19\xc2\xf9\xd2\xad\x68\xac\xa1\xb8\x27\x65\x08\xba\x62\x4f\xca\x90\xe8\x55\xcb\xf7\xf8\xeb\x64\x1d\x37\xae\xb2\x03\xa3\x4a\x46\xdd\xed\xc9\x42\x9f\x8f\xcf\x76\x9b\x4c\x28\x30\xaa\xe4\xfb\x2c\x7d\x2e\xb8\xde\xba\x55\x89\x0b\x56\x9d\x9e\x2d\x39\x84\x49\xa4\x5b\x95\xd8\x22\xd4\x3d\xbb\xf8\x5d\x1b\x56\x25\x2e\x00\xa5\x6e\xf5\xa5\x42\x6a\x5b\xcf\xb7\x4e\x2b\x13\x0a\x6e\x2a\x05\xd1\xdd\xc5\x4d\x45\xf9\x23\x6e\x92\xd4\xb7\x8b\x9b\x8a\xe2\x57\xdc\x64\xe9\x9f\x6e\x98\x53\x71\xff\x66\x47\x54\xed\xa4\x23\x22\xea\xa0\xdf\x22\x4a\xee\xfd\xe2\x88\xb0\x54\xf4\xe2\x88\x50\x59\x7b\x91\xda\x6b\x78\x73\xb6\xc9\x77\xad\x2c\x5c\x86\x6f\xd6\xd6\x04\x8f\x59\x07\x19\x95\xf4\xf9\x6c\xb7\xc9\xfc\x16\x8b\x75\x12\xec\xda\x71\xc7\x94\x84\xb6\xdf\x71\xc7\x94\x94\xbc\x2a\x77\x34\x1a\x42\x2f\x56\xda\xc5\xd0\xda\x41\x55\x45\xba\x89\x5e\x75\xca\x63\x59\xed\xf5\x16\x27\x65\x44\xa0\xaa\x62\x59\x99\x2e\xab\x5b\xf7\xbb\xb2\xba\x1d\x7f\x3b\xa8\xaa\x18\x82\xdb\xad\x2c\x7c\x8a\xaf\xaa\x36\xed\x06\xe3\xb5\xf0\x6e\xaf\x86\x19\x60\xc3\xec\xd5\x55\x37\xff\x14\xfb\xc0\xb1\x92\x71\x94\x77\xe1\x58\x05\x16\x75\xeb\x08\xeb\x5a\xed\xcd\x52\xa4\x1e\x97\xcd\x1a\x6d\x64\x7f\x74\x50\x52\x93\xe0\xae\x83\x92\xda\x87\x05\xbe\xe3\x13\x69\xc6\xdd\x75\x7c\x22\xed\x03\x65\xf4\xee\x87\x80\xbd\xdd\x2a\xbd\x1f\xb9\x3f\x1d\xe0\xd3\x3e\x25\x0c\xc0\xa7\xc9\x33\xd3\x01\x1d\x4d\xfa\x97\xde\xfd\x10\x6a\x76\x37\x48\xe6\x53\xc2\x18\x24\xa3\x75\xa5\x1b\x24\xf3\x81\xa0\xbb\x51\x31\xf2\x20\x75\xe3\x5e\x3e\x8c\x2d\xdd\xb8\x97\x0f\x0b\x58\x47\x27\x6f\x1f\x28\xb8\x2f\x47\x84\xd5\xb1\x1b\x15\xf3\xb9\xf1\x51\x95\x9b\x76\xd4\xbe\x4c\x32\xc2\xbc\xd9\x97\x49\x46\x24\x75\xf6\x6d\x21\x48\x74\xb6\x8e\xda\xd9\xa4\x9d\xe9\xdb\x9c\x23\x85\xc6\x36\xe7\xc8\xf3\x65\x9b\x73\xe4\x61\x64\x29\x52\x6d\xb0\xdd\x52\x29\x92\xb4\xf4\xe3\x77\x71\x54\xf5\x63\x72\x93\x22\xe5\xf8\x66\x74\xb6\x6e\x49\xd0\xe4\x71\x73\x7c\x33\xc6\x96\xf1\xf8\x2a\x36\xd1\x40\x77\x6a\x09\x75\x62\xbc\x8e\x17\x25\x6d\xbc\x5e\x65\xf3\x0e\x43\x4a\x0a\xea\xee\x30\xa4\xa4\x20\xf6\xc7\x6b\x2d\x06\x0e\x85\x61\x48\x49\x03\xdc\x0d\x43\x4a\xf4\xce\x0c\x43\x4a\x0c\x0e\x1c\x86\x94\x34\xe6\x68\x18\x52\xd2\xd1\x4c\x86\xa4\x43\xda\x21\x87\xea\x44\x7f\x7c\xf6\xb3\xc9\x00\x55\x27\x3a\x47\xc6\x30\xa4\xa4\x43\x28\x31\x8c\xfa\xee\xc0\xd5\xa1\xb2\xd1\xa3\x6f\x66\xb7\x76\x60\xe3\x30\x97\xd6\x8c\x80\x71\x73\x69\x39\x22\x87\x21\x25\x9d\xfa\x8c\xc3\x90\x12\x2b\x44\x0c\x43\x4a\x72\xb5\x1b\x8c\x57\x1e\x8f\xa1\xde\x92\x49\x7e\x1f\xea\x2d\x99\x10\xcd\x71\x43\x4a\x88\x5d\x19\x37\xa4\x04\x0c\x32\xfe\x8b\xfa\xe6\xb7\x1b\xda\xbd\x83\x57\xb3\x4d\xfe\x06\xaa\x48\x33\x89\x63\xa0\x8a\x34\x09\x34\x06\xaa\x48\xb3\x3a\xde\x40\x15\x69\x9b\xb3\x69\xa0\x8a\x34\xe9\x35\x06\xca\x46\xdb\x80\x8e\xf1\xf9\x21\x3c\x68\xc3\xc8\x67\x13\x4f\x86\x91\xcf\xdb\x3f\xf9\xf9\x66\xcc\x83\x23\xf9\x66\x90\xc2\xf0\x1c\x97\x8b\x63\xdc\x73\x1c\xcd\x79\x18\x9f\xbc\x11\xb0\xc3\xf8\xe4\x8d\x26\x36\x8c\x4f\xde\x60\xcc\xe1\xd1\x9c\x30\xf0\x0e\x8f\x66\xf9\x7c\x86\x47\x73\x02\x62\x0f\x8f\xe6\x04\xd6\x1b\x1e\xcd\x09\xe5\x79\x64\xc9\x3c\x11\x6e\x23\xeb\x52\xe9\x7e\xc8\x83\x8c\x98\x84\xe1\xd1\xac\xd1\x60\x78\x34\xcb\x6e\x34\x3c\x9a\xa5\x8e\x1c\x1e\xcd\x3f\x93\xc2\x3f\xc5\xfe\xf0\xd4\x4e\xd3\xe1\x78\xc6\x61\x4f\x18\x9e\xda\x09\xdb\xe0\xf0\xd4\x4e\xee\x29\x4f\x6d\x89\x80\x46\x71\xb0\xdb\x67\x1d\x2c\xe1\xf4\xc3\x33\xdd\xf4\xc9\xe1\x99\x9e\xdc\xe9\x9e\xe9\x7a\x79\xc6\x3d\xd3\xd1\xac\xc6\x3d\xd3\x51\xfe\xc7\x3d\xd3\x11\xa1\xc3\x33\x3d\x63\x4f\x18\x9e\xe9\xba\x84\x86\x67\xba\xd4\x97\xc3\x33\x5d\x1e\xa1\xe1\x99\x9e\x71\xbd\x0d\xcf\x74\x3d\x53\xc3\x33\x3d\xa3\xde\x0f\xcf\xf4\x8c\x34\x1e\x9e\xe9\xba\xa2\x06\x67\x7a\xd1\x8d\x35\x3c\xd3\x33\xb2\x7a\x78\xa6\x4b\xaa\x39\x3c\xd3\xad\x5f\x33\x3c\xd3\xb3\x5b\xcc\x33\x3d\x7f\x36\xbb\x57\x99\x85\x7b\xa6\x47\xaf\x3a\x5e\xbc\x06\xa3\x3a\xde\x68\xaf\x1c\x2f\xfa\xde\xa8\x8e\xd7\x2d\xd6\x1c\x2f\x19\x76\xa3\x39\x5e\xac\x8e\xa3\x39\x5e\x77\x4d\x73\xbc\x78\xb5\x46\x73\xbc\x18\x5b\x86\x74\xac\xba\xb1\x86\xf5\x3e\x24\x1d\x1a\xd6\xfb\xc8\x8a\xfd\xa6\x0e\x83\x45\x68\x34\xa5\xa2\x2b\xa7\x29\xf7\xd0\x15\x87\x29\xae\xbd\x7a\x75\xdb\x64\x16\x50\x27\x4a\x47\xbb\x18\xa8\x13\xa5\x63\x5a\x1c\x16\xfd\xd7\xcf\x3e\x50\x27\x4a\x77\xc7\x75\xe5\x3c\x96\x99\xd1\x95\xf3\xe8\x1e\xa3\x2b\xe7\x81\xf9\xa3\xdf\xfa\x59\x0c\x5f\x2b\xab\xb5\xa1\x87\x84\xab\x15\x5d\x71\x68\x65\xad\xc5\x57\x59\x3f\x0b\x55\x79\x68\x4a\xad\xd5\x9b\xb1\x1b\xd7\x6e\xf3\xd6\x95\x76\x08\xc0\xe4\x8a\xe5\x6d\x68\x4a\xb5\xec\xc8\xd0\x94\x2a\x50\x1a\x12\xae\x56\xf4\x96\x81\x29\xb5\x56\x8c\x87\x03\x53\x6a\x35\xb2\x65\x60\x4a\xad\x15\x95\x6f\x60\x4a\xad\xd5\x4d\x87\x29\xb5\x36\x10\xca\x18\x8e\xd7\x3d\x38\x1c\xaf\x7b\xdf\xa2\xff\xf5\xf8\x21\xc7\x4b\xf8\xcd\x20\xca\xa2\xb6\xe0\x9b\xa7\x6f\xb6\xcf\xcb\xa6\xbd\xda\x36\x59\x39\x28\x66\xb5\xb9\x25\xaf\x55\x16\x35\x66\x60\x95\xad\x8d\x5c\xc5\x81\x55\xb6\x36\x8f\x1b\xb4\xb8\x2a\x1b\xed\xc0\x2a\x5b\x5b\xf6\x2a\xe3\x6d\xc5\x67\x95\x48\xd5\xa6\xbe\x0c\x7f\xce\x74\x87\xa2\x79\x8e\xe9\x0e\x1d\x76\x43\xbd\x85\x80\xf3\x81\x55\xb6\x3e\xaf\x37\xeb\xe9\x50\x43\x98\x9a\x41\x5e\xbb\xa1\x19\xe4\xf5\x59\x7d\x37\x8a\x82\xa5\xef\x46\x41\xb1\x74\x21\xa1\xe3\x8d\xa5\x3b\x06\x8b\xdf\xb8\x55\xfe\xe3\x5f\x01\x9c\x63\x39\x3a\x22\x10\xc6\xd2\x53\xa3\xd0\x58\x7a\x6a\x14\x1a\x4b\x67\x37\x16\xbc\xb1\x1c\x9d\x52\x62\x39\x3a\xd5\x3f\x69\x82\x1e\xf7\xc5\xba\x46\x1e\xa6\x60\x39\x9b\x80\xa6\x81\x0d\xb6\x55\xac\xac\x03\x1b\x6c\xb3\xfc\xc7\xc0\x06\xdb\xea\xbd\x39\xda\xe4\xcd\x58\x59\x9b\x81\x67\xc3\x12\xff\xd5\x83\xd8\xe0\x8d\x2b\xca\x0c\xde\xb8\xb2\xcb\xe0\x0d\x2b\x73\x0d\x8b\x65\x64\x7c\xc7\xc3\x62\x19\xd9\xdd\x6a\xb1\x8c\x8c\xe5\x70\x18\xe9\x91\x8b\xcf\x16\x9b\xfc\x49\x23\x3d\xb2\x22\xc5\x52\x1a\x96\xf1\x1a\xb7\xd4\xbe\x6b\xcc\x52\x1a\x59\x71\x64\x29\x0d\x1d\xf4\xc3\x52\x1a\xba\xef\x87\xa5\x34\xb2\xea\x81\xa5\x34\x32\xb8\x69\x5a\x4a\x43\xf5\x6f\x5a\x4a\x23\x63\xb5\x9b\x46\x7a\x64\xb2\xe4\xa6\xa5\x34\x32\xba\xc4\xb4\x94\x46\x06\x5f\x4f\x4b\x69\x64\x84\xc6\xb4\x94\x86\xb5\xc6\xa6\xa5\x34\xf2\xf0\xbb\x8e\x17\x3d\x64\x5a\x4a\x43\xfa\xb8\x69\x29\x0d\x35\xf6\x69\x29\x8d\x3c\xbd\xea\x78\x87\xdd\x70\xbc\xa0\xaa\x69\xb1\x8c\x8c\x3e\x3f\x5f\x47\x84\x3b\x66\xbe\x8e\x08\x2b\xeb\xb4\x94\x46\x79\xbd\xea\x88\xd0\x6f\xa7\xa5\x34\x32\x16\xa1\x69\x29\x0d\x8b\x41\x4f\x2b\x03\x66\x90\xe0\x94\x93\x27\x63\xc3\x9c\x16\xda\x28\x8f\x6f\xee\x36\x0b\x4d\x47\x74\x7c\x76\x7a\xd5\xe6\xb2\xc9\xbf\xd2\xe0\xa9\x45\x68\x5a\x68\x43\x16\xbb\x69\xa1\x8d\x82\xb5\x70\x5a\x68\xc3\xba\x4e\xd3\x42\x1b\x05\xd0\x31\x2d\xb4\x51\xd0\x4c\xa6\x85\x36\x4a\xf0\x6a\xf2\x66\xbe\x6b\x35\x8d\x12\xbd\xca\x78\x8d\x4f\x9e\x56\xd3\x28\x48\xd4\x69\x35\x8d\x82\x02\x3f\xad\xa6\x61\xe1\xaa\x69\x35\x8d\x82\xc6\x3e\xad\xa6\x51\xd0\x3d\xa6\xd5\x34\x0a\xe7\xda\x34\x32\x44\xa3\xd6\x34\xf6\xc3\x02\x52\xd3\xe2\x86\x05\xeb\xfd\xb4\xb8\x61\x29\x36\x1d\x11\x18\x73\x5a\x4d\xa3\xb0\x43\xa7\x71\x23\x86\x2b\x4f\xe3\x46\x8c\xc7\x9e\xc6\x8d\x94\x6c\xd3\x11\x15\x5f\xe5\x88\x38\xc7\xa7\xe9\xa5\x05\xa3\xfa\x34\xbd\x54\x1b\xd7\x34\xbd\xd4\x2a\x51\xd3\xf4\xd2\xe2\xf2\x36\xbd\xd4\x10\xeb\x69\x7a\xa9\x85\x9f\xa6\xe9\xa5\x85\x73\x7c\x9a\x5e\x5a\xaa\x37\x3b\x5e\x1c\x10\xd3\xf4\x52\xe3\xb1\xa7\xe9\xa5\x05\x13\xca\xfc\xee\x78\xe9\x86\xb5\x36\x0a\x26\x94\x69\xad\x8d\xb2\xff\x62\xe0\x9c\x96\xe1\x28\x08\x9c\x69\x19\x0e\x0d\x6b\xd3\x32\x1c\x46\x50\xcf\xcf\x5f\x31\xfd\x8a\xbf\x62\x79\xd5\x5f\x31\xec\xb0\xbf\xc2\x5d\x63\x19\x8e\x82\xf7\x70\xa6\xfb\x2b\x58\x90\x96\xe1\x28\x18\x5b\xa6\x91\x2d\x65\x7b\xd5\x5f\xb1\x7d\xd6\x5f\x41\x96\xee\xb4\x0c\x47\xe5\xf4\x9c\x96\xe1\xa8\x6e\x7c\xcb\x70\x94\xe3\xcd\xaa\x25\x6e\xc0\xa4\x5a\xf2\xfa\x5d\xd5\xb0\x60\x9f\x55\xc3\x40\xee\x33\x5d\x0b\x18\xff\x4a\x83\xad\x59\xf3\x53\x83\xed\xc1\x60\x32\x2d\xc3\x11\xc0\x20\x53\xdc\xd7\x21\x0f\x99\xe2\xbe\x4e\x34\xce\x14\xf7\x0d\xa5\x84\x26\xd9\x01\x8e\x98\xe2\xbe\x61\x9f\xc5\x7d\x03\x0d\x67\x8a\xfb\x06\x71\x77\x53\xdc\x37\x30\x5c\x4c\x71\xdf\x88\xbe\x79\xfb\xac\xaf\x3a\x7e\x88\x01\x0a\xee\x86\x42\x43\x70\x37\xdc\xf8\x82\xbb\x81\x1e\x32\x05\x77\x43\x81\x23\xb8\xd3\x65\x3f\x05\x77\x03\x1c\x31\x05\x77\x43\x81\x23\xb8\x1b\xca\x2e\xc1\xdd\xc0\x52\x3a\x05\x77\x66\xc9\x4d\xc1\xdd\xf8\xfc\x90\xe3\x2d\x36\xef\x78\x99\x14\xc1\xdd\xc0\xb8\x34\x05\x77\x43\x91\x22\xb8\x1b\x0a\x0d\xc1\xdd\x50\xfe\x08\xee\x4c\xa9\x9b\x82\xbb\x51\x6c\x3a\x5e\xf4\x96\x29\xb8\x1b\x78\xff\xa7\xf0\xcd\x34\xf9\x29\x7c\x1b\x6e\x2b\xe1\xdb\xe0\x1c\x9f\xc2\xb7\xa1\x94\x10\xbe\x0d\x37\xbe\xf0\xcd\x70\xd6\x29\x7c\x1b\xcd\x57\x39\xa2\x6e\xaf\x1c\x91\x1b\x5f\xf8\x36\x3c\x40\x85\x6f\xc3\x3d\x28\x7c\x1b\xd3\xa6\x23\x22\xae\x60\x0a\xdf\x06\x91\x3c\x53\xf8\x36\x48\xa6\x98\x02\x34\xa3\xcb\xa6\x00\xcd\x72\xb1\xb3\x39\x22\x77\x59\x73\x44\xc7\xab\xd3\x9b\x59\xa2\xc2\xb7\xe9\x86\x15\xbe\xcd\xc7\x21\x1c\xaf\x72\xb3\xf0\xcd\x90\xb0\x29\x7c\x9b\x78\x3a\xa6\xf0\x6d\xba\xbc\x85\x6f\x13\xf5\x7e\x0a\xdf\x26\xa8\x79\xde\x20\x19\x3b\x29\x40\x0b\x78\x67\xe6\x0d\x83\xc1\xb4\x38\x2f\x40\xfb\xbc\x6a\xd9\x32\x10\xf7\x14\x73\x05\x82\x10\xa6\x98\x4b\x3f\xfb\x14\x73\x05\x77\xa8\x98\x2b\xd8\x49\x31\x57\xf0\x1c\x17\x55\xe9\x58\x9f\xa2\xaa\xe0\x77\x45\x55\x01\x43\xeb\x14\x55\x85\xcf\x67\x2d\x4c\xf6\xd9\x0d\x0b\xb1\xfd\x7f\xe3\xfc\x5b\xec\x0b\xb8\x42\xf2\x41\x6b\x96\x65\x7b\x28\xc0\x2c\x76\x49\x80\xe9\xfa\x14\x70\x55\x8f\x2d\x01\x57\x55\x59\x12\x70\x55\x55\xa9\x0b\xb8\xb0\x18\x4c\x00\x57\x39\x6e\x84\xa9\x9b\xa3\x79\xb3\x6e\x0e\xf4\xdb\x29\xa4\x3a\x20\xac\x29\xa4\x9a\x9e\xda\x37\xd0\xc5\x3f\x63\xa0\x8b\x24\xb7\xd3\x40\x97\x79\x3f\xe4\x1a\x73\x13\x19\xe8\x32\x49\x7d\x9a\x06\xba\x48\x72\x3b\x0d\x74\x91\x15\x6a\x1a\xca\x22\x51\xed\x34\x94\x65\x12\x65\x3a\x0d\x56\x99\x64\x17\x4e\x83\x55\x26\x6c\x3f\xd3\x60\x15\xf9\xa6\xa6\xc1\x2a\x73\x7b\xb3\xb3\xa0\x38\x92\x38\x48\xa4\x30\x0d\x56\x39\x38\x2f\xa6\xc1\x2a\x56\x36\x9f\x06\xab\x48\x64\x31\x0d\x56\x91\xc8\x62\x1a\xac\x22\x69\xc9\x34\x58\x45\xaa\x8a\x69\xb0\x8a\x44\x16\xd3\x60\x15\x59\x2f\xa6\xc1\x2a\x12\x59\x4c\x83\x55\xa6\x0a\xad\xc1\x2a\x8b\x78\xe3\x69\xb0\xca\xea\xbe\xb9\xdb\xf4\x55\xe6\xe1\x7a\x18\x19\xac\xb2\x71\x9e\xce\xad\x95\x55\x99\xb9\xb5\xb2\x2a\xbb\xac\x75\xb8\xb0\xb2\x4e\xe1\xdb\x22\x04\x77\x0a\xdf\x56\xb3\x19\x6c\x32\x5e\xe1\xdb\x12\x83\x08\xdf\x16\x41\x14\x53\xf8\xb6\x30\xe7\x4e\xe1\xdb\xb4\x93\xc2\xb7\xe9\xba\xb2\xec\xbb\x51\x40\xd3\xb2\xef\x2f\x6e\xf7\xa9\xe3\xe3\x55\x75\x04\xa0\xb5\xd7\x13\x04\x80\xd6\xde\x6c\x37\xb0\x1b\xbf\x28\xb4\x0b\x80\xd6\x0c\xff\x5b\x00\xb4\xf6\x62\x10\x5b\x40\xb0\x66\x30\xd2\x02\x82\x35\x03\x0b\x97\x2e\x95\xb7\xf8\xac\xe5\x80\x71\x9e\xae\xc7\x3e\xb3\x61\x97\x0e\x97\xb7\xf9\x5d\xcb\x01\x83\x40\x17\x10\xac\x19\x1c\xb8\x1e\xfb\xcc\xe9\xb3\x40\x55\xcd\xc8\xa5\xf5\x5a\xb3\x98\x39\x5a\xaf\x9d\x1c\xde\xcc\x8f\x9d\xc9\x9b\x35\xd7\x23\x46\x96\xa8\x6a\x31\xdd\x4b\x54\xb5\x30\xff\x2e\x51\xd5\x7e\x7c\x16\xc9\xb6\x51\xc2\x97\xa8\x6a\xfb\xaf\x44\x55\xeb\xf6\x6a\xd9\xe4\xd7\x89\xaa\x16\x06\xb1\x25\xaa\x5a\x76\x52\x54\xb5\x80\xba\x4b\xdc\xb4\x96\x57\x5d\x2a\xe0\xc4\x25\x32\x32\x39\x7a\x89\x8c\x16\x0a\xfc\x12\x19\x2d\x8e\x8c\x25\xf6\x59\x18\xd3\x96\xd8\x67\xe1\xe6\x5b\x37\x2a\xfe\xf8\x2a\x7b\x85\x31\x7c\x19\x15\xbf\x81\x7e\xeb\x46\xc5\xa3\x1f\x2e\x91\x91\x14\xe5\x4b\x64\xb4\x5f\xaf\x7e\x36\xff\xe2\xe4\x59\x82\x26\xa9\x02\x97\xa0\x69\xa3\xef\x2d\x41\xd3\x06\x6f\x2e\x41\xd3\xe6\x8c\x5b\x82\xa6\x8d\x63\x6e\x09\x9a\x36\x67\xeb\xba\x9c\x3c\xd1\xfe\x4f\x9b\x4c\x90\xa0\x69\x47\x3b\xbc\x6d\xb2\xe4\x04\x4d\x9b\x1d\xb7\x04\x3e\x9b\x1d\xb7\x04\x3e\xdb\x5d\x23\xf0\xd9\x50\x05\x2e\x81\xcf\xe6\x50\x58\x02\x9f\xed\x26\x12\xdd\x6c\x77\x8d\xe8\x66\xbb\x2f\x44\x37\xd2\x6d\x2d\xd1\xcd\x6e\xde\x6c\x9f\xdd\x35\xa2\x9b\xdd\xfc\x90\x7d\xe6\x04\x59\xa2\x9b\x89\xd9\x6a\x89\x6e\x26\xb0\x77\x89\x6e\x26\xce\xf1\x25\xba\x91\x38\x71\x89\x6e\x66\xf3\x59\x37\x91\xdd\x30\x6e\x3f\x21\x33\x97\xe8\xa6\xe1\x8e\x59\xa2\x9b\xe6\x72\x15\xdd\x34\x17\xb3\xe8\xa6\x61\x84\x5c\xa2\x9b\xb6\xfd\xae\x46\x57\x37\xa0\xe8\xa6\x91\xec\xb3\x2c\x41\x68\x7a\xda\xb2\x04\xe1\x40\xef\x5a\x72\xf2\x88\xaf\xd7\x2d\x64\xcf\x81\xb2\x6e\x21\xfb\xe3\xd5\xe8\x55\xde\x6c\x21\xfb\xf2\xf8\xaa\x64\x93\xc5\x60\x21\x7b\x0d\x26\xcb\x42\xf6\xe5\xf1\xd9\x6a\x93\x5e\x59\xc8\xde\x32\xd9\xcb\x42\xf6\x46\xc5\x2c\x0b\xd9\x17\xdc\x22\xcb\x42\xf6\x1a\x3d\x96\x85\xec\x4f\xf5\xea\xb6\x49\x9f\x2d\x37\x2f\x35\xd9\xb2\xdc\xbc\xd4\x0d\xcb\x72\xf3\x07\x95\x75\x59\x6e\x5e\xda\x87\x65\xb9\x79\xb9\x8f\x56\xb9\x4e\x6a\x9f\xe5\xbb\x19\x9b\xc0\x12\xa1\x14\x65\x97\x05\xe5\x33\x50\x77\x59\x50\xde\xca\xc2\xcb\x82\xf2\x56\xe9\x5d\x16\x94\xb7\xfe\xef\xb2\xa0\x7c\x74\x80\x92\x97\x5a\x8d\x74\x49\x5e\x1a\xa7\x4d\x46\x14\x5d\xfc\x92\x97\x7e\xf7\x59\xc3\x1b\x70\xd6\x2c\x0b\xca\xcf\xe2\xcd\xfc\xe7\xbb\xbc\xc5\x20\xb2\xdf\x2c\xc9\x4b\x27\xa6\x98\x65\xa0\xc8\x74\x08\xe8\xe4\xcd\x1a\x01\x0b\x95\xaf\x4d\xd4\xc5\x85\x8d\xbd\x4d\xbc\x15\xcb\x28\x0b\x0d\x35\xcb\x28\x0b\x2d\x24\x6b\x3a\xa1\xee\x14\x54\xbe\xa6\x29\x66\xa1\xf2\xb5\x72\x3f\x74\x6c\xd2\x49\x43\x32\x2c\x14\xbe\x0c\xc9\xb0\x14\xf8\xba\x44\x25\xe8\x0f\x6b\xc9\x88\x82\xc1\x73\x19\xb0\xd1\xf1\xbf\x2c\x03\x36\x36\xe8\x75\x19\xb0\xd1\xb1\xac\x2e\xec\xea\xad\x7b\xfa\x2c\xf9\x52\x3c\x9b\x96\x7c\x29\xd3\x0f\xc9\xe2\x32\xfd\xd0\xb0\xc9\x78\x51\x17\x5b\x9f\xf6\x59\x16\x97\xf5\x97\x6d\x7f\x69\x54\x17\x41\x2f\x8d\xea\x06\xcc\x2f\x8d\xea\x5a\x0c\x96\x46\xf5\xa1\x34\x36\xc2\x64\x60\x1b\x5c\xe8\x8a\x6d\x60\x45\x5f\x9a\xdc\xe5\xa8\x59\xd7\xe4\xbe\xbd\x59\xda\x70\xf7\xc5\x96\x36\xdc\xe3\x66\x4b\x1b\xae\xb6\x60\xb0\x4a\xc3\x20\xbf\x0c\x56\xe9\x2e\x0c\x75\xc5\xbe\xfd\x90\x84\x36\x28\xb4\xcb\x50\x96\xae\x84\x41\x57\x6c\x5d\xc9\x76\x64\xa1\xf1\xe4\x3d\x4e\x2e\x66\xe4\x65\xdc\x4b\xf7\x98\x3e\x8e\x57\xf9\x73\x1c\xaf\xf2\xc7\xa8\x98\x81\x71\x69\x19\x15\x33\x5e\xaf\x32\xde\xe1\x46\x30\xb0\x79\x47\xbf\x6b\x5c\x84\xbb\x46\x6d\x50\xe6\xf3\xad\x36\xb8\x89\x22\xd8\x6a\x83\x96\xa9\xdd\x98\xeb\xdb\x06\xce\xec\xc7\xb8\x08\x70\xd3\x56\xfd\x93\xdc\x72\xab\xfe\x49\x8c\xb9\x55\xff\x24\xb7\xdc\xaa\x7f\x1b\x59\xbd\x55\xff\x36\x6e\xf7\xfd\xd8\x49\xce\x88\xfd\xa8\xa2\x83\xfa\xb7\xca\xe1\xde\xbe\x99\x21\x1c\xcc\xb9\x1b\xfb\x7c\x3b\x68\x17\x1b\xfb\x7c\x93\x64\x72\xab\x49\x1e\x34\x84\xad\x26\x79\xb0\x1b\x6f\x75\xc5\x03\xec\xdd\xe8\x8a\xf1\x79\xbc\xfa\x1b\xd1\x39\xa0\xc8\x8d\xae\x18\xf4\x97\x6d\x74\xc5\xf8\x30\x29\x1b\x5d\xf1\x9c\xc7\x9b\x27\x4d\x94\xa5\x8d\xae\x78\x0e\x93\xb2\xd1\x15\xcf\x89\x5e\x3d\x34\x51\xe1\x36\xba\xe2\x63\x0a\xd2\xc6\x02\xff\x3c\xf8\x50\x36\x16\xf8\xf0\x3a\x7c\x34\xc9\x20\x6b\xdf\x46\x93\x7c\x74\xdb\x6d\x63\x84\x32\x51\xb5\x5b\x0b\x7c\x3a\xbe\xca\x68\xf3\xd7\xa6\x21\xd6\x98\x25\xb7\x7c\xfb\x1d\xc9\xb6\xb5\xc0\xb7\xe4\x87\x2c\xa0\xef\x84\x1a\x23\x64\x46\xf3\x0e\x96\x02\x3c\x7e\x97\x68\xf3\x94\xbc\xca\x0c\x56\xfc\x92\x5b\x2d\xf4\x80\xe6\xb6\x31\x42\xeb\xb3\x29\x75\x3f\x87\xc2\x36\x46\x68\x11\x67\xb8\xa3\xc7\x0d\x4a\xce\x56\xd5\x94\x53\x6b\x1b\x23\x54\x51\x68\xf7\xa5\x7f\x3c\xbe\x19\x6e\xab\x1a\x7d\x15\xe3\x1d\xcd\x26\xe3\x95\x1f\x6f\xab\x6a\x0a\xed\xb7\xe1\x46\x61\xfa\xa1\x5b\xb7\xc2\xab\x64\xf4\x3c\xcd\x67\xe5\x06\xb7\x93\x46\x3e\x2f\xec\xdb\xdb\xc8\x67\x53\x87\xb6\x91\xcf\x09\x34\xb7\x3f\x33\x7a\xaa\x37\x5b\xaa\x20\xdb\x34\x8c\x0d\x5f\xe4\x36\x54\xe9\xb9\x1f\x62\x7e\x17\x82\x71\xab\xa6\xce\xe1\x87\x50\xdb\xc6\xbd\xd9\xf1\x3a\xdd\xaa\xa9\x87\x43\x7f\x7f\xe6\xef\xff\x7f\xa9\xfc\x53\xec\x6f\xe3\xa3\x44\xb2\xdb\xa0\x68\x53\x92\xb7\x41\xd1\x0f\x46\xe6\x6d\xe6\xe9\xc1\xd7\xbf\xaf\x06\x8b\x6d\x7f\xdf\xcc\x53\x37\xbe\xbc\x91\xc6\x57\x6f\x33\x4f\xbf\x6e\x93\x5f\x11\xfc\x6f\xb2\x4a\x86\xe4\x9b\x2d\x2d\x31\x6d\x1a\x36\x80\x8e\xba\xd5\x60\x67\xf7\xaa\xa5\x1e\xa7\xdd\xd0\x3e\x8f\xc9\x7d\x9b\x79\x3a\xd0\x9c\xb7\x99\xa7\x2f\x76\xe3\x2d\xbf\xcd\x9b\xbc\x6a\xb2\x0f\x47\xc6\xce\xb7\x04\x33\xdf\xb5\x88\x76\x00\x6f\x6e\x59\x25\x9f\xc7\xa6\xb4\xbd\x60\xc6\x2d\xab\xa4\xa5\xdb\xb7\xac\x92\x92\x5b\x6e\xd3\x54\x05\x59\x5b\x56\xc9\x99\xbd\xca\x78\xbb\x9b\x48\x7e\x1b\x2b\x5d\x6e\xf9\x6d\xbe\xe2\x55\xfd\x2f\xdb\x57\x4d\x8f\x48\x56\x82\x69\xaa\xc3\x23\x43\xdb\xbe\x70\x66\x63\xdb\x6f\x96\x23\xdf\x37\x70\x8b\xb3\x69\x63\xdb\x6f\x89\xf3\x74\x17\x1d\xeb\xf6\xca\xba\x6c\x15\x0f\xe0\x96\x55\xd2\x98\xa8\xad\x6e\x9c\x94\x30\xb2\x4a\xbe\xaf\x1f\x32\xd9\x10\x28\xb4\xad\xcb\x76\xcf\x26\x69\xff\x33\xa6\xb6\x8d\x6d\xbf\x85\xd7\x0f\x89\xc8\xd0\x51\x77\xb9\x45\x76\xf8\x39\x72\x4e\x56\x2c\xff\x1b\xcd\xb9\xe5\xe2\x88\x0c\x24\x00\xfa\x6d\x6d\xfb\x5d\x91\x72\x69\xff\x49\x10\xd8\xa6\xb8\x1a\x05\xb4\xd5\x9c\xfb\xe3\xcd\x88\xb2\xa7\x78\xb3\xa5\x52\x94\x12\x6a\xce\x27\x79\xd5\x64\x2e\xb8\xe6\xb6\x29\xae\x15\x07\xc4\x36\xc5\xb5\xdc\xef\x5e\x26\x5b\x86\xa0\xe5\xdf\xba\xd2\xdb\x04\xd8\xad\x1c\xd0\xf2\x3f\x71\x6d\x6c\x2d\xff\xcb\x5f\x67\xc9\x80\x17\x40\xba\xd5\xba\x03\xf6\x84\xad\xd6\x9d\x31\x5c\x6c\x2d\xff\xcd\x33\x51\x46\x4a\x53\x5c\xb7\x09\xb0\x0d\x13\xdf\x36\x01\x36\xa3\x98\x6d\x19\x29\x1f\x87\x7f\x03\xb7\xf0\x91\x6d\x43\xbb\x8d\x0f\xdc\x32\x52\x06\xe7\x08\xbf\x40\x8b\xaf\x6f\x66\xbc\xcb\xe9\xd6\x2f\xb0\xf0\x18\x6e\xd3\x63\xad\xb8\xb4\x4d\x8f\xed\xae\x76\xeb\x68\x4f\x05\x85\x75\xb4\x1f\xcc\x02\x5b\xda\xc9\x03\x1e\xdf\xd2\x4e\x46\x75\x1e\xeb\x68\x4b\x1e\xb8\x6f\x58\x97\xdb\xd9\x18\xf2\xa8\xa2\xd2\x2f\x0b\xae\x57\xad\x32\xa3\xcc\xe9\x57\x74\x33\xa2\x6e\x1d\xde\xe5\xcd\x96\x4d\x54\x56\x77\x6d\x6b\xfe\x67\x33\x64\x2d\x5d\xba\x6f\x86\xac\xc3\xef\xb7\x8c\x05\xb3\xaf\x8b\xc1\x30\xb6\x2d\xed\xe4\xf9\xb3\x84\xfa\x1e\xc6\x64\x62\x21\xd9\x26\xcf\x7e\x38\x6d\xf7\x50\x75\xf4\x24\x32\xe2\x2b\x61\x58\xdb\x26\xcf\x76\x20\xd5\x36\x79\xf6\x73\xe3\xdf\x62\x70\x9e\xda\xc3\x9c\x38\x50\xd2\xbe\xc5\xe0\x5c\x63\xc3\xbc\xc5\xe9\x87\xfc\x15\xc1\x57\xf1\x2b\x92\xeb\xc4\x3c\xdc\x8d\x2b\x6a\x1b\x8a\x2f\x9d\xf5\xc6\x01\x51\xa4\xc1\xdf\xd3\x18\x21\xe2\xc9\x37\x0e\x88\xb6\xb1\x81\x6c\x8b\xc1\x55\x37\x91\x71\xfb\xf9\x78\xb3\x7c\xdd\xf6\x59\x36\xcb\x57\x7d\x0f\x34\x5a\x3b\x60\x7c\x1b\xf1\x25\x6b\xe8\x16\x8d\xbe\x78\x3a\xb6\x68\xb4\x12\x04\xbe\x8d\xf9\x8f\xea\x7b\x46\x7c\xf5\x7b\xf5\x52\xb1\xf9\x5d\x44\x59\xc0\x7a\xbf\x65\xdd\xd1\x69\xb2\x2d\x15\xf7\x12\x64\xbb\xc5\xaa\x7a\x5a\xb7\xee\x89\xa0\x1c\x30\x0f\x37\xe2\xbb\xd9\x60\xd5\x2a\xf5\xf7\x36\x3c\x6c\x6e\x5f\xe5\x52\xff\x6c\x6a\x04\xf0\x4f\x5a\x62\xdb\xea\xf3\x5b\xd7\x86\xb6\xd0\x2d\x56\xcd\xfe\x58\x4b\xc5\x49\xfb\xb0\xd7\x2d\x31\x69\x37\x38\xaa\xf4\xc2\x6f\x5c\x1b\x2d\xdc\x9b\xa5\x0b\xce\xbe\x8a\xf1\x56\x77\x8d\x70\xd5\xf2\x76\xfb\xc6\x80\xd9\x67\xf9\x7c\xba\xba\xb1\x35\x11\x1e\x0f\x32\xe1\xaa\xa1\x83\xdb\x7a\x70\xaf\xb2\x5a\xd7\x86\xbe\xb6\x2d\x5c\x6d\x38\x31\xf7\xbe\x5b\xdb\x67\x8d\xe8\x2b\x5e\xbd\x79\x34\xfc\xd8\x9b\x5b\xa1\x48\xd1\xb5\xd1\x3c\xf4\x85\xab\xaf\x3a\xf9\xbe\x79\xc7\x36\x75\xda\x2a\x7f\x74\x6d\x58\xdf\x64\x0b\x57\xab\xba\x96\xae\x8d\x8e\x8d\x6b\x1f\xb5\x6e\xc5\xaf\x70\xb5\x2a\xe7\x75\x6d\x74\x4f\x4c\x0b\x70\x5f\xe8\x77\x5d\x1b\xc3\x9b\x9d\x5f\xff\xa4\x55\xb6\xab\xc3\xb7\xca\xb6\x64\x6b\x5b\x0e\xa2\xb7\xdb\x67\xdd\x6d\xae\x0d\x23\xd3\xe4\xca\xde\x72\x10\x99\xc3\xbb\x85\xba\x96\xa5\x3b\x42\xdd\x8a\x9f\xeb\x98\xc3\x9b\x31\xa6\x1d\xa1\x6e\x63\x31\x1c\x73\x78\xad\x3d\x71\x8c\x4c\xeb\xa4\xd2\x1c\xdd\x22\x13\x4b\xe3\x31\x32\x4d\x11\x7a\x8c\x4c\x13\xeb\x1d\x2b\x26\x98\x67\x74\x8c\x4c\x3b\x1c\x46\xc7\xc8\xb4\x89\x7e\x78\x6e\x0e\x2f\x93\x72\x8c\x4c\x9b\x28\x0c\xc7\xc8\x34\xf3\x41\x8e\x25\xb9\x7b\xf6\x59\x79\x5f\xf9\xb1\xc7\xb8\xb5\x8e\x3a\x71\xc4\xc5\x01\x4d\xec\x18\xb7\xa6\x7c\x3e\xff\x91\xb5\xf2\x5d\xe3\xd6\x56\xfb\x2b\x92\xe7\xe8\x7c\x59\xf7\xa3\x72\x9b\xa3\x48\x1f\x6b\x79\x87\xe4\x55\x44\x59\x00\xd8\x1e\x79\x5c\xf5\x97\x9d\xf7\x56\xbd\xe4\x27\x03\xa8\x5b\xec\xde\xec\x29\x76\xbc\x99\xa5\xbe\x88\xf8\x3a\x00\xea\x66\xce\xc2\x79\x9d\x7a\x14\xda\x03\xa0\x4e\x46\x99\x1e\x93\x6e\x96\xff\x2d\x68\x22\xe0\xf4\x39\x00\xea\x56\x50\x68\x8f\xae\x19\xbd\xb4\xc7\x02\x76\x81\xe3\xe6\xc8\x65\xa4\x85\xe4\x84\x4b\x01\xe7\x87\xdc\xda\x8e\x57\xc7\x8d\x78\xf3\x98\x74\x23\x35\xe2\x11\x50\xeb\x96\x3d\xc1\xe4\xa6\xe5\xb3\xda\xc9\xb1\xd1\x1d\x00\x75\x6b\xb8\xfe\x4f\x10\x60\x82\x0a\x4f\xbc\x5b\x9b\x6e\xdc\x5a\x78\xdb\xab\x06\x27\x3b\xc0\x28\xaf\x05\x22\xf4\xc4\x9b\x6a\xca\x77\x4d\xba\x49\xee\x9a\xeb\xbb\x99\x5e\xf5\xa8\xc2\xa7\x79\xa2\x04\x71\xd3\x0f\x89\xaa\x30\x6f\x1e\xeb\x29\x04\x24\xf9\x11\x50\x1f\xce\x97\x23\xa0\x8e\x9f\x7d\xb6\x96\xae\x53\x66\xfe\xce\x43\xd2\xcd\x31\x7f\xc7\x1c\xab\x63\xfe\x8e\x21\x61\xe7\xb3\x94\x06\x16\x92\x63\xc0\x9b\x08\xf4\x98\xdd\x93\x5c\xa2\x00\xea\xb6\xec\xa4\x7e\x9f\xe9\x7f\xbe\xf5\x14\xee\xb3\xc5\x55\x47\xaf\x4c\x25\x5e\x00\xd2\x63\x2d\xbc\x8a\xd1\xe3\x08\xa8\x07\x80\xe5\x7c\x96\xb3\x01\x55\x1d\x0b\x8e\x67\xcc\x0b\x47\xbf\x4f\xdc\x7e\xc8\x74\x98\xec\x87\x8e\xbf\x8e\x01\xa6\xbb\xb5\x19\x42\xba\x28\x83\x0f\x59\x70\xbc\x22\x24\x8f\xac\xb0\x23\x7b\xb3\x74\x6a\x58\x95\x8f\xa8\xf9\xc1\xc1\x7d\x40\xcd\x65\x71\x82\x1c\xfd\x3e\xc6\x80\x1d\xf9\x9a\xe2\xf6\xcd\x57\x94\x31\x0b\xfa\x7d\x2c\x9e\x7b\x4c\x34\x96\x34\xfe\x5c\x56\x58\x65\x57\x92\x22\xe3\x78\x33\xa2\x4c\x65\xf8\xe8\xf7\x91\x74\xfd\x88\x9a\xcd\x8f\x38\xe6\x3a\x6d\xce\xf1\x63\xcc\x9b\x44\xbe\xe7\xa2\x66\x4e\xdb\x63\xcc\x5b\x54\x0c\x66\xe7\xf7\xbe\xea\xd2\x2f\x30\x04\xc9\x9d\xbe\xe9\x9b\x5d\xcf\xce\xbe\x11\x71\xfd\xf3\xe6\x6b\x49\xb6\x93\xac\xe7\xf1\x79\x33\xeb\x59\x87\xef\x31\x22\xee\xbf\x5e\x89\xaa\x96\xaf\x92\xb2\x12\xbd\xf4\x48\xee\xa4\x0d\xf3\x18\x11\x67\xed\xaa\x53\xae\x55\x84\x19\x2c\x57\x74\xf3\x66\xc9\x9d\x92\xbb\xcc\x5a\x0c\x01\xa3\xd6\xb1\x58\xde\x59\xbe\xd9\xfd\x8b\xd9\xf9\x48\xee\xd4\xdf\xbf\xb4\xfd\x73\x9d\x4d\xf8\x07\x8f\xc1\x72\xfa\x43\x8f\xc1\x72\xeb\xb1\x87\x16\x71\x70\xec\xc5\xa5\xae\x44\x15\x50\xd7\xe8\xcd\x02\x2e\x14\xf8\x73\x5d\x51\x38\x7c\x8f\x45\x1c\x1e\x0c\x98\x47\x57\x94\xa9\x97\x47\xb2\xd9\x81\x7b\xe5\xdc\x4c\x28\xe5\x9e\x85\xce\xab\xbb\xd5\x4c\xa8\x81\x25\xfc\xdc\x3a\x7a\xcd\x9b\x8d\x80\x72\x8b\x19\x4a\xb7\x96\xbd\x72\xbc\xca\x3d\xc9\x66\xbb\x23\xb2\xca\xde\xfd\x1b\x92\xcd\xca\x13\x7e\x64\x94\x32\x3b\xf8\xe8\xc6\x92\xa9\xec\x58\xe2\xe1\xc5\x04\x74\x64\x94\x4a\x98\x46\x4f\x93\xeb\x12\x55\xea\x34\xb3\x83\xd1\x33\x4f\xbb\x1e\x79\x3e\x24\xa0\xb6\x5c\xf5\x91\x51\xaa\x39\x5e\x73\xa5\xa3\x4b\x4e\x46\x29\x99\xe8\xce\x05\xd4\xee\x0b\x01\xb5\xec\x04\x47\x2a\xda\x43\x68\xd9\x91\x8a\xf6\x28\xf7\xa4\xa2\x3d\xc4\x0c\x1f\x4b\x3c\x48\xe3\x76\xda\xad\xfa\xc4\xf0\x05\xd4\x1a\x88\xce\xa5\xa2\x55\xb3\x12\x50\x37\xf2\x23\x8e\x80\x7a\xa8\x6c\xe8\xd4\xb3\x20\xe3\xb9\x81\x76\x2a\x4b\xfd\x56\x7d\x62\x44\x5d\x8f\x18\xe6\x85\x63\x1d\x87\xf1\xf8\xac\x06\x31\xd4\xdd\xd3\x35\x10\x79\x26\xf6\x9b\xff\x6b\x9f\x59\xcf\xa6\xe4\x9c\x6e\xc5\x5b\x25\x5b\xd7\x20\x56\x6c\x8a\x22\x01\x95\xc7\x98\xbd\xe3\x41\x66\xcc\xde\xf1\xd9\xa1\x0b\xbb\x7a\xf5\x86\x4a\x32\x22\x29\xa7\x0e\x26\x82\x03\x6a\x2e\x2b\x79\x55\x14\xe9\xb9\x36\xb4\xfd\x2a\xca\x40\xcd\x2d\xe2\x26\x38\xa2\xe6\x07\x1f\xdf\x31\xa2\x4f\x6e\xab\x23\x6a\x7e\x30\x20\x9c\x71\xd9\x7e\xf8\x57\xc3\xcc\xbe\xed\x87\xe4\xa9\x9b\x36\xd9\xbf\x91\xcc\xd3\x23\x6a\x1e\x00\xff\x23\x6a\xee\x18\x4b\x0f\xa8\xb9\x2c\x37\x9d\xa8\xb9\xba\xae\xac\x01\x11\xfd\xd0\xb4\x8c\x8e\xa2\xec\xe6\x49\x91\x47\x7f\xa6\xf9\xce\xc7\xef\x1a\x20\x87\xeb\xfc\x4c\x23\x18\x3d\xc8\x44\xcd\x96\x86\x39\xa2\xe6\xe0\xa6\x13\x35\x7f\xcb\x9b\x45\x91\xc7\x5e\x69\x30\xf1\x6f\xcc\x7b\x34\xb3\xbc\xd7\x45\x91\x74\x52\xd4\xbc\xd4\xab\x97\xaa\x17\x6e\xd9\x23\x6a\xd6\x85\x7d\x0c\xf9\x5b\x98\x50\x8e\xa8\x39\xb8\xe9\xd6\x55\xbd\xd8\x92\x7a\x78\xa5\x08\x3e\x7a\x78\xcd\x1a\x3b\x16\x58\x7f\x3d\x40\xf5\xf0\xd6\xcf\x37\x0f\xe5\xa4\x37\x83\x32\x7e\xc5\x53\xfe\x2d\xf6\x97\xb6\xd0\x61\x97\xfc\x15\xd3\xb1\xb3\xb5\x3f\x57\xbe\x05\xd6\xb7\x5a\xa8\x04\xb9\xcd\x45\x75\x01\xb5\xff\x6d\x5f\xa2\x39\xfe\x8c\x05\xd6\x5f\x0f\x26\x01\xf5\x50\x77\x12\x50\x37\x17\xb3\x45\x06\x8d\x5e\x38\x02\xea\xac\x5e\x6d\x81\xf5\xa5\x4e\x2e\xa0\xd6\x33\x7e\xae\xff\x57\xb5\xd3\x22\x83\xc2\xed\xb3\xaf\x1b\x8b\x1d\xa7\xff\x37\xb9\xa7\x8c\x15\x94\x93\xe7\x08\xa8\x35\xd4\x1c\x63\x05\x2d\xe2\x70\x00\xd4\xdf\x15\x47\xc6\x0a\x4e\xdf\x6c\xac\xa0\x09\xce\x47\x62\xab\xf1\x78\xd5\x68\x1c\x31\xa3\xe5\xd7\x27\x9e\xf4\xa3\xff\x57\xa2\xb6\x73\x53\xbd\x82\xaf\xba\x05\xdd\x98\x32\x53\xbd\xac\xc2\x76\x24\xf5\x35\xc5\xfe\x08\xa8\xdb\xf0\xd9\xbb\xd4\xed\xb3\x00\xf3\x07\x0d\xc2\x73\xcb\xaf\xff\xa4\x71\x78\x24\xf5\x3d\xdb\xa6\x5a\xca\x2f\x5e\x37\x3c\x00\xea\x14\x7e\x4a\x69\x78\x2c\x41\x08\x89\x71\x78\x2c\x41\x88\xd9\x2a\x3c\xc6\x19\x7e\xbf\x30\xfe\xf0\x00\xa8\x13\xb1\xbe\xe1\xd1\xd1\x5c\x93\xaf\x32\xf6\x35\xdb\x2b\x96\x7a\xde\xbe\xca\x02\x76\x3f\xb1\x1f\x1e\x01\x75\xfd\x65\x7e\x85\x47\x47\xf3\xf8\xe5\x85\x85\xc7\xe2\xec\x18\x01\xc2\xa3\xa3\x79\x37\x3a\x09\xa0\x4e\x71\xf0\x66\x00\x75\x0a\x87\x37\x5b\xfd\x84\x0c\xd0\xf0\xbc\x17\x55\xf9\xac\xc4\x74\x3f\x55\x39\x3c\xb2\x4f\xe4\xc1\x88\x44\xcd\xb0\xf8\x86\xc7\x90\xc5\x27\xd3\x49\x43\x16\xbf\x4d\xaf\xa4\xaa\xa0\x7e\x5f\x78\x2c\xce\x4e\xa1\x8d\xf0\x5c\xe6\xab\x5f\xfc\x58\x78\x6e\x81\xc2\x7b\xb3\xb6\xfd\xe8\xcd\xba\x65\xab\x23\xba\xec\x88\xfc\x0d\x50\x73\xa3\x82\x49\x78\x64\xbe\x0a\x0f\x6f\x96\xf9\xea\xfd\xbc\x59\x03\xd1\x6f\x3d\x87\x47\xaa\x8a\xb9\x19\x7e\xd0\x20\x96\xbd\x59\x54\xe5\xca\x09\xd7\xe0\x49\x37\xa4\xaa\xc8\x9f\x4d\xc7\x5b\x98\x5f\x51\xf3\xf7\xda\x0d\xab\x9f\x14\x66\xc1\x60\xc8\x77\xdb\x67\x0d\x62\xd1\x9b\xd9\xbf\x33\xd9\xab\xab\x6a\xf2\x73\xa2\x81\x04\x3f\xa0\x14\x9e\xa8\xc1\x24\x32\x22\x50\x73\x23\x5b\x2d\x3c\x16\x28\x24\xbc\x33\x3c\xa2\xe6\xfa\x7a\x55\xdf\x8d\xff\xd9\x0a\xf2\xa1\x32\xfc\x68\x1c\x57\x65\x31\x18\xf1\xf8\x14\x6f\x46\x5e\x11\x8f\x1d\x1e\x09\xb8\x66\x66\x08\x51\xb7\xfb\x62\x6d\x44\xf7\xef\x63\xd3\x28\xaf\x61\x9f\xa5\x55\x7f\x1d\xa0\xd5\xb5\x3e\x06\x08\x6a\xce\x5f\xfa\x23\x80\x33\x3c\x7a\xa8\x31\xba\x86\xe7\x02\x6a\x97\xab\xdc\x5c\xd9\xb9\x16\x50\xd7\xe2\x57\x98\x7a\x60\x6f\x78\x2e\xc5\xb1\xd3\xf7\x5d\xc0\x45\x87\x2d\x2e\xbf\x8f\xaf\x52\x94\x25\x9f\x65\xea\x87\xfb\x42\x0f\xf5\x9c\xac\x13\x0b\x14\xc2\x69\x1c\x1e\xdd\xd0\x58\x86\xc3\x23\x4d\x07\x68\x34\x3c\xd2\x74\xa0\xb4\x84\xc7\xd2\xf3\xd3\xab\x72\x73\xc1\x07\x12\x1e\xdd\xd0\x6f\x66\x82\x04\xd4\x14\xb5\x0f\x8f\x80\x7a\x2d\x5f\x75\x0b\x1b\xf9\x2a\x45\xb7\x1b\x30\x19\x81\x50\x18\x82\xcc\x5d\x4f\x66\xf8\x00\xea\x6f\xbb\x1f\x25\x40\x8e\xd5\xab\xd7\x60\xc2\x92\x4b\x6a\xa1\x0a\x1c\x00\xf5\x77\x1a\x93\xa2\x1b\x7a\x6d\x6f\x56\x0b\x55\xe0\x5c\x40\xbd\xb8\x59\x37\x34\xd4\x0d\xe1\x91\x3c\xe4\x54\xf6\x94\x81\x94\x4f\xf5\xaa\xc4\x41\xee\x47\x93\xc8\xa6\x3f\xc7\x40\xca\xee\xca\xcf\x57\x4b\xe1\xe7\x98\x62\xb6\xdc\x62\x16\x37\xec\x83\x75\x65\x8a\xd9\x97\xe9\xb3\x29\x66\x30\x0c\x84\x27\x9b\x06\xd8\x7c\xb3\x5a\x77\xf7\xaa\x06\xb1\xed\x9b\x59\xea\xb0\x95\x86\x47\x40\x3d\x07\x13\xaa\x1b\x1a\xc7\x5c\x78\x64\x4b\x9e\x9b\x39\x2a\x77\xbc\xbc\xca\x14\xb3\xfb\x5d\xdd\xd0\xed\xf3\x59\xd3\x00\x23\xb3\x60\xf5\xf9\x7d\xf8\x57\x02\xea\xe1\xdf\x10\x35\xc7\xc0\x2c\x5c\x37\x74\x62\xbc\xba\xa1\xe7\xf0\x59\xd7\xb3\x8b\xc1\x00\xce\x54\xd9\x38\x96\x68\x79\x06\x33\x68\xe9\x43\x8a\x75\x86\x47\xd4\x1c\x3d\x40\x6f\xe9\xc3\xc0\xab\x74\x43\x8f\x87\x5e\xdd\xea\xf3\x1f\x7f\x52\x4e\xb0\xd6\x7c\x56\x94\x61\xaf\xea\x35\x10\x79\xb3\x6e\x4a\xc5\x91\x25\x5a\xf6\xe4\xe7\x58\xa2\xe5\xed\xfc\x1c\x03\x38\x53\x47\x0c\x5a\x9b\x7e\x7a\x64\x88\x9a\x43\xe3\xe7\x48\xfc\x35\x82\x1f\xda\xf6\x99\xe1\x8b\x9a\x61\x73\x0a\xcf\x75\x43\x3f\xbc\xd9\x04\xb4\xa5\xbc\x92\x25\x2c\x3b\xbf\xa0\xe6\xfc\x39\xc0\xcb\xc3\x9c\xf9\x93\x16\x70\x79\x5c\xb1\x56\xbd\x1f\x81\x95\x23\x6a\x6e\x2f\x7f\xd2\x02\x2e\x9f\x7f\xe3\xf2\x30\x3b\x40\x0b\xb8\x24\xe5\x64\xd3\x17\x39\x19\x02\xa8\xb9\xcd\xcd\xbf\xd2\x0d\xfd\x14\x6f\x06\x55\xc1\x9b\x14\x9e\x4b\x56\xa6\x3a\x21\x59\x19\x95\xc8\xc2\x23\x6a\xee\xee\x6e\xd3\xd3\x62\xe1\x43\x72\x38\x0f\xe5\xb3\x05\x5c\xbe\xf3\xfc\x25\xf6\xad\xed\x72\xd4\xbb\xf4\x50\x53\xd3\x3f\x3c\x5d\x80\xa9\x24\xd7\x43\xfd\xba\x4e\x04\xd4\xc7\xb3\xd5\xbc\xb6\xa3\xee\x24\xa0\xce\xfe\x55\x89\x47\xba\x12\xd5\xf2\x2e\x23\xf9\x66\xb6\xf6\x5a\xde\x7c\xe9\x91\xf9\x51\x7a\xa8\xf3\xcb\x2a\x92\xc3\xf9\xbc\xec\xa9\x21\x75\xcc\xf6\xaa\xe1\x7f\x6a\x47\xe3\xba\x29\x6d\x22\xba\x73\xf1\x66\xc6\xbb\x54\x2c\x87\x06\x84\x97\x19\x11\x50\x57\x4f\xae\xa1\x5b\x56\x39\x20\xa0\x9e\x9d\x3e\x9b\x22\x87\xb3\x29\x3c\xba\xa1\x49\x7e\x09\x8f\x79\x70\x5d\x1d\xd5\xf2\x2e\x50\x3a\x87\x67\xdc\x60\x39\x5e\x65\x5d\xfe\xcf\x3f\x29\xa0\x0e\xca\x79\xdd\xd0\xcf\xe2\x55\xb7\xf8\x4b\x64\x06\x25\x1e\x19\x9e\xa7\x12\x8f\xe0\xf0\x0d\xcf\xbc\xc1\x90\xbe\xca\xf1\x2a\x25\xa6\xbe\x0c\xf5\x1f\x00\x75\x4a\x89\xf9\x95\x0e\x7a\x7a\xcc\x5d\x37\xf4\xcb\x1c\x99\x25\x17\x8a\x1f\x52\x2b\x3b\x7e\x68\x2b\x06\xf9\x39\x86\x4c\x3f\x2e\xf5\x9b\x25\x17\x79\x16\x40\x5d\x87\xb3\x60\xc8\x74\x54\xb2\x19\x32\x1d\x54\xf0\x6e\xf1\x7d\x3f\x24\x4b\xc9\x70\x7e\x01\xd4\xa9\x16\x5f\x75\x7d\x37\x7e\xa8\x7a\x82\x30\x84\x75\xdd\x94\x74\x52\x2a\x12\xe8\xb6\xc2\x23\xa0\xfe\xa2\x37\x2b\xba\x5d\x39\x66\xd8\xf5\xcf\x67\xd9\xda\xc9\x93\x4b\x37\xf4\xa3\xfe\x70\x33\xec\x0e\xbd\x32\xc3\xae\x2b\x51\xcd\xb0\xeb\x93\x11\xed\xcb\x49\x4e\x9f\xb7\xa2\xbb\x7b\xf5\xa2\x66\x7e\xce\xbe\x5a\xb7\xaf\x2a\x4e\x19\xbd\x02\x35\xa7\x67\x30\xdd\xfb\x86\x19\x30\xa1\xa0\xe6\xda\xa7\x37\x8b\x32\x14\x56\xba\xa1\xbf\xdb\x2b\x89\x92\x84\x51\xdb\x14\x24\x15\x5a\x50\x73\x8a\x1f\x9b\x4e\xd4\xbc\x95\x8a\x37\x6a\xda\xe3\xd5\xa8\x69\xaa\xb1\x87\xc7\xa8\xe9\xea\x0c\x4a\x07\x8d\x7b\x22\x3c\x47\x5b\xf7\xe1\x43\x46\x4d\xaf\xfb\xec\xa5\x81\xf5\x66\x8f\x66\x4f\x01\x33\xec\x5a\xf2\x66\x23\xe2\x94\x48\x37\xa6\x5a\xc8\xa9\x1b\xfa\x1d\x4c\x99\xf9\x77\x65\x32\xa1\x12\xa4\x74\xd5\x7b\x51\xf3\xe2\x6c\x7a\x9f\x5b\x8e\x6a\xd3\xbc\xbe\xc8\x4a\xd3\x94\x2b\xce\xd3\xd7\x88\xeb\xf0\xf3\x73\x85\xd7\xec\xbc\x54\xbd\xaa\x7c\x46\x7b\x7c\xa5\x92\x7e\x90\x1b\xaf\x6e\x68\x4f\xdb\x57\xd4\x3c\xdf\x3f\xa8\xd8\xc2\xab\x87\x7a\x1e\x3f\x8a\xdb\xee\x69\xf6\x70\xb8\x7a\x3b\x4d\x03\xe6\x51\x95\x5f\x59\xa6\xe3\xcf\x51\x15\xde\x5b\xf1\x1f\xa5\xe5\x95\x65\x7a\x30\x05\xef\x6b\x1c\x2c\x92\xed\x7d\x8d\x83\xdd\x74\xf8\x96\xd4\xe1\x6c\x7d\x8d\xdc\x4e\xbe\xd9\x1c\xc0\x8c\x02\xf0\x5e\x37\xf4\x63\xd3\xb2\xad\x48\xd4\x57\x37\x34\xa4\xf1\xe1\x15\x50\x13\x45\x10\x5e\xdd\xd0\x2f\x1a\xfb\x2b\xf7\xe3\x8a\x76\x43\xad\xec\x5e\x45\x74\x47\xe7\xcb\x92\x3a\xe9\xf5\xbb\xd7\x60\xe2\x9b\x75\x63\x05\xae\xca\xfd\xb8\xd0\xca\x5e\x00\x75\xba\xe3\x95\xfb\x11\xce\x84\xf0\x9a\x21\xf8\x7e\xbc\xca\x92\x3a\xfb\xd0\x0d\x99\x55\x88\x15\x0c\xaf\xdc\x8f\x24\x2a\x86\x37\xe8\x76\x5f\x7e\x57\x80\xf9\x8b\xdc\x0e\x2f\x80\x3a\x11\xdb\x10\xde\x5b\x4e\x94\x1d\xf7\x5a\x55\x87\x0c\xdf\xf0\x0a\xa8\xfb\x7d\xf3\x2d\x21\xe4\x77\x25\xdf\xf0\x3f\xdf\x8a\xff\x9b\x0f\xe9\x86\x86\x60\x21\xbc\x02\xea\xb6\xf8\xae\x71\xdd\x01\xe9\xf4\x46\xb5\x6e\x3f\x24\xa0\x86\xd0\x3b\xbc\x02\xea\xea\x8f\xd5\x0d\xdd\x9a\x1f\xba\x6e\x68\x9b\xc6\x75\xbb\x80\x2d\x27\x1a\x8b\xdd\xb0\x4e\xd9\xeb\xab\x44\x55\xfe\x76\x01\x35\x44\x3a\xe1\x35\x85\x70\xbd\xbe\x59\x5f\x06\x82\xfd\x35\x85\xb0\x72\x08\xbe\x02\xea\xee\xca\x11\x35\x77\x8e\xe6\x17\xd4\x9c\x93\xdd\xf8\x74\xdb\x05\x7e\x9d\xa8\x39\x2f\x9f\xbd\x11\x35\x6c\x1c\xe3\xba\x2b\x9a\xe4\x6b\xfa\x21\xf4\x71\xe1\xfd\x8f\xd1\xda\x67\xad\x41\xe3\x5e\x90\xd1\x5a\x31\xf8\x5a\xd6\x1f\xfe\xb4\xf0\x8a\x9a\xc7\x7d\xf3\xd5\x42\x1d\x91\xeb\x39\x33\x0b\xa2\x66\xca\x62\x86\xf7\xba\xa1\x5f\xc4\x91\xc1\xdb\x50\xde\x85\xf7\x06\x6f\x1f\x9e\x35\xfd\x30\x3f\xec\x41\xd3\x0f\xa9\x6c\x1e\x5e\xd3\x0f\x29\x98\x15\x5e\x83\xb7\xf3\xf2\x55\xa8\x22\x9a\x44\x5e\x51\xf3\x52\x0c\x5a\x36\x68\x38\x40\x83\xb7\x87\x7d\xb6\x6c\xd0\xe7\xdf\x48\x26\x83\x63\x2e\x7b\x75\x43\x7f\x99\xf1\x4a\xb9\x19\x5d\x57\xa2\xe6\x58\x98\xc1\x7c\x55\x2f\xde\x2c\x6a\x56\x8d\x79\xad\x31\xf4\x7e\x5e\x35\x6e\x3f\x30\xc0\x7c\xc3\x48\xbc\xd9\xbc\x0c\x8c\x24\x6f\xbe\xa2\x9b\x01\x1a\xbc\x5d\x27\xff\xca\xe0\x6d\x98\x49\xc2\x0b\x6a\xae\xfd\x5e\x65\xbc\x5a\x63\x5e\x8b\x93\x92\x8b\x1a\x5e\x89\x59\xde\xf5\x47\xdc\x7e\x78\xad\x5b\x7a\xb6\x1d\xd6\x8d\x15\xfc\x8a\xa2\x0c\x6d\xf0\x2d\xe6\x3a\x61\x58\x7b\x2d\x3f\x84\xbd\x3a\xbc\xc6\x75\x07\x7f\x94\x80\x1a\x5a\xf8\xf0\x16\x13\xd9\x96\x37\x5b\x03\xb4\x31\x41\x02\xea\x39\xbc\xf9\x66\x08\xb2\x30\x6e\x5c\xf7\x61\xbe\x6e\xf9\xa1\xe2\xb3\xda\xba\x8f\x6f\x66\xa9\x07\x17\x95\x9c\x2d\xcb\x7f\x2e\xa0\xae\x0a\x67\x00\x75\x2a\xee\x74\x01\x75\x45\x93\x7c\x01\xd4\xa9\x60\xdf\x7b\xcd\x88\xac\xe8\x5d\xaf\x6e\xe8\x85\x66\xf5\x1a\xd7\x4d\x84\x6a\x78\x8d\xeb\x6e\x4a\x63\x6b\x9e\x6a\x89\x7a\x05\xd4\xdd\x85\x61\xe9\x22\x62\x14\xc3\x0b\xa0\x4e\xc7\x53\x40\x37\xf4\xe3\x72\x15\x50\x53\x41\x20\xbc\x00\xea\x4a\x91\xe5\xf0\xd6\x1b\xe7\xec\x87\xae\x96\xc2\xa4\xd4\x1b\xec\x6a\x9f\x19\x6f\x71\x9b\xc8\xe8\x12\x30\xa6\xbd\xd6\x3c\x3d\x87\xe9\x36\xae\x7b\x75\x6f\x66\x6b\x7f\x8a\x5f\x00\x75\x7a\xb0\x0c\xbf\xcd\x3c\x05\x4f\xdb\x76\x0d\x08\xac\xcf\x76\x23\x4c\xfc\xd0\x8d\x63\xa7\x93\x02\x6a\x22\x72\xc3\x2b\xdf\xcb\x7a\xbc\x7a\x23\x4c\xfc\x10\x06\xb1\xf4\xf9\x66\x7d\x37\xc3\x67\x3d\xaa\x14\xbf\xba\xa1\x77\xa0\xcf\xff\xd1\x75\xf2\x2a\xe3\xba\xd3\x62\x16\x64\xff\x26\x62\x21\xbc\xf2\xbd\x3c\x38\x11\xde\xae\x28\xeb\x4c\x8a\x74\x9d\x6f\x60\x52\xa4\xeb\x4c\x4e\xa8\x71\xdd\xd5\xd9\xef\xa6\x9a\xba\xcb\xba\x6e\x77\x4f\x01\x51\x73\xef\xac\x67\xe3\xba\xa3\x07\x77\x17\x55\x75\x9f\xd5\x77\xa3\x18\xd4\x0d\x7d\xd4\x5b\x24\x21\x27\x0e\x24\xbc\x16\x45\xbd\xf3\x6b\xf0\xf6\x72\x3b\x8f\x4b\x89\xc6\xcf\x91\x3a\x86\x2c\xb9\xf0\x82\x9a\xd3\xd5\x0f\x41\xcd\xdf\xd9\x3e\xab\x81\x17\xfc\xf2\x1a\xbc\x9d\x71\xf4\xbc\xd7\x0d\xfd\xd9\x0d\x53\xae\x54\x86\x0d\xde\xde\x8a\x5f\x51\xf3\x54\x43\x18\xd7\x40\xc4\xf2\x96\x47\x3d\xdd\x11\x19\x46\xa2\xdc\x13\x35\x67\xb7\x15\xa8\xb9\x44\xf5\x07\x50\x73\x89\x85\x3f\xa9\x1b\x1a\x0a\x82\xf0\xea\x86\x6e\xce\xa0\xc1\xdb\xaf\xfb\x48\xf6\x98\xd5\x7d\x56\x5f\x95\xbf\x5d\xd4\xfc\xaa\xed\x8b\x9a\xbb\xe7\xe9\x4d\x25\xc6\x3c\xf8\xea\x86\x26\x22\x25\xbc\xa2\xe6\x94\xf9\xb1\xd3\x08\xb1\xe9\x9b\x75\x43\xab\xc4\xea\x86\x86\xd2\x30\xbc\xba\xa1\x73\xe0\xcd\x4b\x5f\x55\xfa\xfe\x12\xfb\x56\x53\x25\x7d\x3b\xbc\x7a\xa8\x5f\xbb\x74\x3d\xd4\xd8\x8e\x5e\x00\x75\x1a\xf8\xf8\xde\x5b\x5f\xc9\xc1\xea\xa1\x1e\x2a\xc3\x7a\xa8\xc3\xf4\x55\xc6\xb1\x63\x72\x7f\xd7\xf5\xc8\xb3\x1f\xf5\x50\x87\xe1\xab\x8c\x20\xaa\x36\x8d\xeb\xbe\x37\x6b\x30\x89\xbe\xea\x06\x53\xf1\xa3\xa4\xac\xd9\x95\x75\xb2\x05\x98\x5e\xdd\x37\x58\x8e\x57\x99\x86\xfc\x28\x16\xa4\xac\xc9\x2a\x78\x52\xd6\x2c\x77\xeb\x05\xd4\xf7\x66\xdd\x3a\x2a\xb4\xfb\x6a\xa1\xde\x8c\xe8\x9e\x0a\xab\x9b\x86\x8c\x6b\xe6\xbd\x80\x1a\xd7\xcc\xbb\x6f\xdc\x3e\xcb\xd5\x34\xe4\x27\xd9\x0d\xdd\xee\xcb\x9b\x35\x88\xf9\xdb\x4d\x43\x5e\x58\x95\x5f\x00\x75\x4a\xca\x4c\x00\xf5\x07\x65\x44\x78\x6f\x5c\xb7\x73\x74\xe9\xf7\xfd\xed\xc6\x75\x6f\xcf\x53\x01\xb5\xee\xa4\x57\x40\x5d\x93\x4d\x23\xa6\x3c\xe5\xcf\x8d\x98\x62\xa9\x18\xd7\x1d\x3d\x23\x74\x43\xdf\xed\xa9\x1b\xba\xab\x3b\x99\xa4\xdc\x3d\x6d\x05\xd4\x4b\xe1\x7c\xe3\xba\x3f\x6f\xb6\x78\x25\xc2\x39\x3c\x97\x2b\x7b\xd1\x34\x05\xa9\xd8\xd4\x00\xc8\xa4\x84\xe7\xa6\x10\xfa\xac\xd5\x90\xd9\xf8\xe1\x31\x42\x8c\x4d\x14\x8c\xeb\x1e\xc8\x81\x70\x01\x35\x06\xdb\x60\x6d\xa6\x10\x7d\xd5\x35\x98\x78\xb3\xf5\x9d\xb3\xdd\xf0\x68\xe6\x4c\x0c\xa2\x66\x0d\xe3\x41\x37\x74\xe8\xbe\x59\x51\x86\xea\x18\x9e\x6b\x10\xe3\x43\xef\x8d\x10\x7b\x68\x4a\x69\x88\x9a\x1d\x8c\xeb\x4e\x28\x1b\xc1\xb8\xee\x17\xc5\x2c\xbc\x57\x94\x65\x9a\x52\x30\x71\xea\x05\xf9\x48\x3b\xda\x45\xd0\x0d\x3d\x8a\x1f\x52\x94\xa1\x98\x05\x99\x73\x74\xc6\x85\xf7\x46\x00\xfa\x2a\x45\x59\xb0\x1b\x92\x51\xdc\x57\x39\xde\x6a\xd3\xf1\x82\x6d\x83\xc1\xdb\x50\xb9\x86\x60\x01\xa6\xee\x00\x2f\x6a\xe6\xa8\x0a\x06\x6f\x43\x77\x13\x82\x85\x68\x75\x61\x07\xdd\xd0\x1b\x23\x4f\x30\x1b\xfa\xcb\x5e\x95\xcd\x92\x63\x3d\x98\x0d\xfd\x62\x7b\x09\xba\xa1\xdf\xe6\xd5\x4b\xe1\xc8\x1c\x99\x0d\xbd\x1e\x6f\x56\x15\x41\x4f\x0b\x41\x55\x64\xf8\xac\xaa\xc8\x74\x44\x66\x07\xb3\x35\xc2\xad\x98\xe0\xcf\xb9\x9c\x3c\x20\xa3\x60\xf0\xf6\x8b\xd7\x2f\x44\x51\x06\x5e\xa1\x70\x51\x33\x41\x08\x41\xd4\xfc\xcb\x34\xf9\xa7\xd8\x0f\x16\x81\x8a\x58\x2c\x83\x80\xba\x63\xe4\x09\xf1\xa6\x30\x30\xba\x28\xa3\xc2\xeb\x55\x4f\xed\x64\x97\x58\xea\xc7\x95\x1f\x6f\x30\x55\xa1\xc9\xaf\x58\x2e\x1b\x01\x75\x47\x1c\x05\xe3\xba\x21\x7b\x0c\xc1\x12\x51\x11\x4d\x23\x48\x64\x3a\xdc\xcb\x9f\x5a\x37\x1e\x87\xf0\xdd\x94\x0d\xaf\xf2\x2b\xc8\x44\x08\xe1\xbb\xb6\x5f\xfe\x8c\x80\xfa\x7c\x36\x11\xdd\x05\x3f\x4e\x00\x50\xa7\x0f\xef\x61\x00\x50\x27\x58\x7c\x43\x10\x50\xc3\xb0\x14\x82\x6e\xe8\x27\xdb\x0d\x01\x35\xd8\x2d\x58\x22\x6a\xb9\xe3\x2e\x9f\x4f\xb5\x93\x56\x7b\x71\xae\x05\xd4\x77\x9d\x58\x2d\x22\xbb\x11\x92\xdc\x5c\x40\x92\x90\x74\x63\x35\x86\x60\x36\xf4\x03\xde\x0c\x02\xea\x04\xf6\x09\xc6\x75\xbf\xcd\x67\xad\xb9\x4c\x34\x4e\xb8\x80\x7a\x31\x29\x66\x43\x1f\x0e\x94\x90\x6e\x30\xa4\xdd\xb0\xec\xb2\xc2\x4a\x37\xf4\x52\x84\xca\xe7\xb3\x5e\x5f\x65\x76\xa1\x9b\x28\xdd\xf1\xda\x44\x74\x57\x5c\x39\xc1\x1a\x16\x9d\x08\x93\x20\xa0\x9e\x98\x35\x42\xbe\x29\x84\xde\x6c\x04\xd1\x67\xd3\x08\x22\x74\xe3\x70\xe3\xba\x31\x41\x87\x6c\x41\xe7\xc7\x37\xcb\xd7\x04\xf6\x09\xf2\xf9\x44\xa7\x4c\x3e\x9f\xe4\xe2\xcf\x1e\xcd\xb8\x9f\x82\x7c\x3e\xc7\xff\x9c\x75\xbb\x0f\x66\x41\xd4\x3c\xef\x87\xcc\x76\x07\xec\x04\xe3\xba\x35\xf5\x87\x1b\xd7\x8d\xae\x15\x40\xcd\x09\x72\xb9\x10\x8c\xeb\xae\xe8\x5a\xa1\xdc\xd2\x87\x74\x43\x37\xf4\xe2\xb4\x0d\xc6\x75\x1f\x70\x71\xb8\x71\xdd\xe8\xf3\xa1\xdc\xec\x51\x56\xac\x6e\xe8\xb9\xed\x86\x6e\x4a\xec\x54\xa1\x28\xca\x9a\x4d\xb3\xbf\xa7\xbd\x9a\x6e\x1c\x16\xb0\xa8\x59\x93\x48\x30\x78\xfb\x79\x7d\xd6\x88\x1a\x77\xb7\x6e\xe8\xd7\xc3\xe8\x06\x6f\x13\xab\x13\x6e\x36\xb4\x07\xe8\xe5\x11\xea\x3e\xab\x41\xcc\xc3\xc8\xe0\x6d\x88\xbf\x42\xb8\x65\x2c\xb2\xaf\x52\xeb\xf6\xb8\x31\x78\x7b\x78\xda\x8a\x9a\x37\x7a\x4b\xa8\xd2\xc8\xa3\xa8\x04\x50\x73\x2a\xc7\xa6\x11\x62\x1e\x64\x66\x43\x2f\x07\x78\x83\xb7\x3d\xf5\xaa\x11\x8f\x6e\x58\x83\xb7\x77\xe2\xaa\xc1\xdb\x13\x03\x60\x30\x78\x1b\x1a\x93\x10\x6e\xf0\xb6\x42\x55\x1e\xd4\xf5\xf9\x2a\x8b\x3e\x60\xa7\x0a\xb7\x1c\x30\x46\xad\x20\x6a\x26\x9e\x33\x04\x51\xf3\x78\xfe\x48\xd7\x0a\x41\x40\xbd\x8f\x1f\xb5\xa2\xc7\xb0\x87\xb7\x7c\x3c\xbf\xb1\x5d\xad\xcc\x0e\x2b\xba\xef\xb3\xd7\xcd\xc1\x14\xb4\x4b\x74\xc0\xb3\x02\xea\xa2\x92\x26\xa0\x86\xcc\x3c\x04\xab\x0c\xcf\xce\x9b\xbb\xbf\x42\xb1\x6f\xa2\xb4\x51\x79\xc1\x44\xe9\xb6\x98\xfa\x6e\x8a\x99\x3b\x4e\x37\x74\xbd\x1f\x52\x94\x39\xf5\xfd\xfa\x32\xbc\xaa\xed\xd7\xa3\xca\xfa\x17\x90\x87\x84\x70\xeb\x5f\xb8\x5c\x01\xd4\xa9\x35\x9b\x9c\xda\xd5\xe9\x33\xae\x3b\xe0\xb7\x0a\x43\x8f\xbc\x67\x93\x71\xdd\x4b\x6d\x61\x98\x92\x03\x74\x0d\xc6\x75\x93\x73\x14\x82\x6e\xe8\xee\x8e\x33\x1b\x5a\x14\x1c\xcc\x86\x3e\x2a\x0f\x32\xb5\x4e\xa5\x22\x80\x3a\xc3\x7e\x13\xc2\xf0\xa8\xba\x1f\x52\x2b\xc3\x4e\x15\xc6\xa5\x06\xf2\x55\x6a\xa1\x1e\x82\xff\xb9\xa1\x59\x63\x43\x54\xe5\xa4\xdc\xc2\x64\x9e\xc5\x53\x94\x61\x37\x00\xd4\x29\x2a\x43\x74\x43\x47\x07\x28\xa0\xa6\x9c\x5f\x08\xba\xa1\x35\xe3\x04\xe3\xba\xa3\x9b\x17\x40\x9d\xa2\x9d\x34\x1b\x9a\x40\xee\x10\x00\xd4\x29\xd8\xab\x79\xf3\x14\x18\xef\x34\xc5\xac\x78\x75\x28\xab\x6d\x2a\xba\xd5\x9c\xcd\x86\x7e\xfc\xcf\x00\xea\xf4\x62\xc4\x0b\x37\x1b\x1a\xc3\x54\x10\x50\xbf\x84\x19\x84\xa5\x56\x16\xf9\x2e\xa8\x39\xbd\x78\xc1\x02\xa8\x39\x51\x77\x38\x04\x51\x33\x65\xd0\x43\x58\x06\x43\x12\x2a\x10\xd6\x25\xb2\xa0\x57\xa0\xe6\xf4\x2a\x15\x75\x43\x3f\xee\x85\x4b\xf4\xea\x29\xbf\x6e\xdd\x2e\xbb\x61\x36\x34\x88\x3b\xac\x1b\x61\xe2\x55\x0d\x44\xf7\xbb\xec\x5f\x0a\xfe\x86\xb0\xae\x81\x97\xdf\xbe\xaf\x6d\x9f\xab\x06\x6f\x77\x2c\xff\xe1\xbf\x6c\x68\x3e\xb4\xcd\xcb\xf0\xb8\xd9\xb7\xaa\x20\x53\xb6\xf5\x65\x04\x6f\x56\xd5\xfc\xfc\x90\xa8\x59\x45\xd4\xe0\xed\xae\x64\xdb\xda\xba\x15\xdd\x17\x35\x7b\x70\x5f\xd4\x8c\xd3\x36\x6c\x7d\x55\xd5\x67\x5d\xcf\x1e\xaf\xba\xa1\xbb\xaa\x88\xc1\xdb\x5d\x4d\xec\xdc\x94\x3a\x06\x68\xf0\x76\xf7\xa8\xba\xa8\x39\x7b\x55\xab\x08\x31\x6f\xe1\xdc\xfd\xcb\x02\xbe\xd9\xd0\x98\xad\xc2\xb9\xa8\x8a\xf1\x9a\x0d\xdd\x1b\xf3\x2b\x6a\xee\x42\xbf\x8b\x8b\x31\x2d\x06\x2b\x71\x74\xc5\xa6\xe1\xd9\xdd\xc5\x70\x1d\xcd\x6b\xfc\x25\xf6\x2d\xd2\xd1\xd1\xbb\xa2\x45\x3a\xa0\x74\x0b\xd1\x22\x1d\x70\xc7\x85\xa8\x0f\x9a\x4c\x8a\x10\x9f\x6b\x02\x1a\x34\x8d\x21\x61\x23\x44\x8b\x74\x0c\x96\x4d\x14\x32\xf7\xed\x55\x07\xcb\xa1\x10\x2d\xd2\xd1\xf1\x3d\x45\x1d\xcd\x1d\x63\x7e\x34\x15\x1a\x76\xb5\x10\x85\xcc\x9d\xb0\xe7\xf8\xdc\x5f\x61\xf3\x86\x87\x55\x9a\x86\x87\x35\xdf\x2c\x6f\x24\x9a\x73\x34\x15\x7a\x10\x14\x14\xdf\x1b\x43\xf2\xd0\x34\x1c\x0e\xb3\x6a\xb4\x84\xc7\x40\x1c\xc5\xf7\xc6\xcc\xf8\x2a\xc7\xfb\x63\xec\x09\x51\xc8\x3c\x58\xea\xf1\x42\xe6\x66\xd3\x73\x39\xfb\x66\x21\x73\xf3\x55\x46\xaa\xb3\x98\xe3\x7b\x59\x3b\xec\xe4\x15\xce\xfc\xc9\xf7\x46\x32\xdb\x54\xef\x42\xcd\x8e\x42\xe6\x97\x4d\x14\x8d\xdc\xa6\xe6\x72\x88\x41\x1c\x41\xe8\x4e\xb4\x84\x87\xde\x99\x18\xd4\xab\x09\x78\x8b\x40\xe6\xb4\x30\xf5\xc7\x70\x93\xe6\xe8\x55\x30\x66\x06\x03\x75\xd4\xd1\x4c\x99\xa7\x10\x83\x8e\xd7\xed\xb3\xc6\xcc\x2c\x9f\x45\x38\x97\xed\x87\x8c\x64\xc6\x5c\x1f\x85\xcc\xd5\x29\x0b\x9a\xbc\x92\x6f\xf6\xf0\xc5\x6c\x15\x75\x34\x53\x03\x2b\x44\x21\x73\xe2\x14\x88\xd2\xd8\x1a\x9b\x14\xcd\x77\x4e\xae\x67\x69\x6c\x23\x66\xf3\x28\x8d\xed\xf7\xd8\x64\x7e\xa1\x9c\x0a\x51\x5c\x1c\xb6\x57\x2d\xd1\x02\x32\x8a\x46\x6e\xa7\xe0\x9b\x1d\x2f\x48\x21\x1a\xb9\x0d\x2d\x73\x88\xe2\xe2\xe4\x74\xcb\x55\xfb\x61\x45\x8f\xe2\xe2\xe4\x42\x92\xab\x36\x55\x6f\x66\x3d\x27\xf4\xb4\x28\x81\x58\x70\x21\x99\xef\xbc\x09\x76\x8d\x86\x67\x27\x04\x6c\xb4\xc0\x47\xba\x57\xc5\x89\xfe\x58\x71\xf1\x87\x1a\x13\xcd\x77\xfe\xee\x55\xc6\xfb\xf9\x9f\x25\x10\xa3\xbe\x6a\x88\x86\x67\xeb\x9b\x8b\xdf\x8d\x89\xe2\xd7\x7d\x77\xbc\x5e\x35\x1f\xb6\x7b\x75\xf9\x2a\xe6\xc8\x7c\xe7\x8d\x52\x17\xe5\xb9\x4d\x9c\x02\x51\x47\x73\xf2\x4f\xea\x68\x4e\x78\xf0\xa3\xb8\xb8\x03\x0d\xe2\x75\x34\xbb\x8f\x2c\xb9\x18\xf1\xce\x44\x1d\xcd\xb0\x48\x85\x68\x15\x8f\x7c\x5f\xa5\x89\xef\xf8\xac\x99\x44\x60\xf9\x68\xbe\x73\xda\x5e\xb5\xa8\x90\x52\x05\x5c\x9c\x1a\xc6\xa5\x68\x78\xf6\x8c\x7e\xc8\xc0\x18\x45\x81\xe1\xd9\x5f\x71\x80\xe2\x08\x7f\xdd\x75\x34\x13\xc9\x13\xc1\xc5\xf9\xc3\x1a\x1c\x2f\x2e\x1e\x7f\x45\xf2\xc4\xeb\x83\xb6\xff\x42\xe6\xe4\x16\x03\x32\x67\xea\xc3\x86\x28\x81\xd8\xa7\x70\x36\x15\x9a\x1a\xaf\x21\x02\x99\x13\xc5\xfe\x42\x34\x72\x3b\x13\x35\x11\xaf\x0f\x7a\xda\x54\x0f\xe9\x7e\x48\x6b\xd8\xed\x06\x5b\x1b\x0e\xb4\x10\xb3\x91\xae\xd5\x37\xeb\xc8\x00\x83\xc4\x62\x78\x27\xc6\x96\x28\x64\xce\x2e\x39\x20\x73\xba\x5b\xdb\x54\xe8\x9c\x6d\x4a\x20\x86\x6b\x26\x0a\x99\xb3\x52\x42\x02\x31\x21\x64\x14\x32\xe7\xd7\xab\x8e\x17\xfc\x15\x8b\xe1\x8e\xc4\xea\xc4\xe2\x78\xfd\x93\xe5\xea\x5d\x76\x52\xc7\xcd\xe3\x10\x18\x6f\x26\x58\x37\xea\x68\xce\xe8\xf3\x51\x47\x33\x15\x09\x43\xac\x9a\x08\xd0\x16\xa2\x90\x39\x7b\x34\x03\x99\x93\x26\xa0\x68\xe4\x76\x51\x76\x55\xb9\x01\x3f\x3e\x74\x21\x33\x4a\x4b\xac\xb2\xb2\x28\x7f\x6e\xe4\x76\xf2\x59\xc6\xbb\xaa\x4d\x59\x95\xd0\x33\xa3\x04\x62\xa4\x9a\x86\x28\x64\x5e\xc1\x37\x6b\xe2\x53\xa2\x02\x99\xd3\xea\xde\xcc\x78\x57\xf3\x2a\xe3\x35\x52\x2b\x0a\x99\x4d\x4c\x88\xed\x9a\x44\x18\x7e\xb3\x1e\x2e\xa1\x02\x51\x02\xb1\xe3\x9b\xdb\x4d\xed\xe7\xcd\x42\x66\x7d\x8b\x51\x47\x33\x44\xc4\x21\x4a\x20\x16\xd1\x7e\xa3\x85\x45\xee\x7e\xb4\xb0\x48\x74\x11\x8a\x8b\x23\xda\x60\x34\x72\xfb\x9e\x6b\xe2\xe2\x86\xba\x1b\x9b\x81\x04\xae\x8d\x66\x26\x02\xd0\x20\xf6\xcb\xab\xc3\x78\x75\x25\x57\x7f\x6c\xbf\xfe\x08\x9e\xed\x97\x47\x88\x21\x5c\xe4\xeb\x1e\x34\x00\xbb\x29\x52\xcc\x68\x6e\x18\x69\xa3\xae\xe4\xe6\xec\x77\x3b\xf9\xd9\x0d\xd3\x25\x14\xa1\x82\xd9\xed\x59\x2c\xeb\xd7\xb4\xa9\x77\xd8\xc8\x96\x68\x4c\xf5\x8b\x65\x26\x8e\x9b\x0e\xe3\x55\x4d\xee\xd1\xab\x08\x19\xed\x63\x51\x30\x7b\xf5\x16\xc1\xec\x0b\x60\x89\x80\xd9\xfc\x62\x61\x88\x82\x59\xb3\xb7\x22\x60\x36\x3f\x58\xfe\x23\x60\x36\x0b\xb2\x22\x60\x36\x3f\xd8\x5e\xe2\x8d\xa9\xc6\xd3\x1a\xa5\xf6\x7a\xdd\xce\xe3\xb2\x9c\x79\xb3\x76\x57\xac\xe8\xd1\x24\xe5\x04\x70\x88\xc6\x54\x27\xa5\x19\x60\xb6\xa5\xca\x00\x05\xb3\x86\xfe\xc6\x79\x63\x32\xf9\x90\xd4\x5e\x3a\x89\xa2\xde\xe1\x84\x8d\x3a\xea\x1d\x4e\x98\x52\xe3\xbc\xcc\xbd\xbe\x59\x3b\x64\xf7\x55\xa6\x4b\x0c\xaf\x4a\xfd\xf4\x7f\x51\xf0\x6f\xb1\x2f\x43\xf5\x08\x2c\x2a\x1d\xc7\x89\xc8\xfc\x68\xb8\x75\x1a\x76\xe9\x9a\xa0\xf9\xa8\xf9\xcb\x89\xb8\xfd\xb8\xee\xaf\xa0\xc3\x86\x5b\x27\xf7\xa3\xe1\xd6\x09\xcb\x4c\x94\xa1\x3a\x11\x3a\x18\x6f\x49\x71\x35\xf6\x65\x8c\x93\xeb\xd3\x70\xeb\xa3\x22\x2d\xeb\xd7\x43\x20\x44\x14\xe7\x3e\x18\xc7\xe2\xd2\xc5\xe0\xd9\x64\xb8\xf5\x15\x56\xe0\xdc\x4c\x92\x75\x88\x86\x5b\x1b\xac\x1b\x4d\x52\x3e\xae\x5e\xbd\xc3\x0f\x8e\x9b\x08\xce\xcd\x1a\xc4\xa2\xde\xe1\xa3\x34\x06\xe7\xe6\xe5\xf9\x62\xb8\xf5\x29\x5e\x35\xa9\x53\x35\x7b\x1b\x8e\xab\x74\x32\x49\x19\xd2\xa1\x10\x2d\x68\xf2\x64\xfa\x6c\x41\x93\x07\x3b\x46\x94\xf5\xeb\xc1\x5e\x14\xb7\xe3\x55\xb2\x59\xd0\x04\x52\xdf\x10\x0d\xb7\x7e\x5e\xbb\x81\x89\x92\x6c\xfd\x10\x65\xfd\x7a\x44\x46\xb2\x7e\x3d\x9e\xa7\x97\xa4\x5a\xb0\x63\xb8\xf5\xe3\x9f\x34\xdc\x1a\x76\xd6\x10\xf5\x0e\x3f\xa4\x4b\xc4\x63\xe0\x07\x66\x9c\x78\xae\x09\x9a\x09\x95\xf5\xab\x1f\x9f\xe5\x7c\xb9\x90\xf3\x5c\xbe\x05\x5f\x65\xe6\x57\xb6\x57\xc6\xec\xa9\xfe\x81\x82\xd3\x50\x76\x81\x82\x53\xf7\x7c\x01\x05\x27\x1d\x82\x11\x14\x9c\x86\xff\xf9\x18\x83\x8a\xd3\xf6\x03\xea\x26\x4a\x8f\x85\xef\xd1\x7b\x88\x39\xf7\xbb\xac\x5f\xac\xe7\xef\x7a\x87\x41\x55\xdf\x73\x03\xb7\xbc\x99\xf5\xac\xa5\xe2\x33\x49\x59\x73\xd9\x27\x1b\x76\x5b\x7e\x57\x69\x4c\xee\xcc\xa7\x77\x18\xea\x98\xf0\x99\xa4\xdc\x3f\x7b\x65\x12\x3a\x30\xea\xbb\x31\xd5\xd9\xab\x92\x90\x3f\xf6\xca\x4c\xc6\xc7\x57\x49\x42\xce\xca\xf9\x64\xc3\xee\x98\x91\x3f\x59\xbf\x8c\x40\xfe\x64\xc3\x36\x2f\xe3\x33\xa6\x5a\x53\xcc\x67\x4c\xb5\x36\xe7\xef\xbd\xe3\x65\x08\x92\x77\x75\xf0\xda\x67\x1a\x72\xcf\x7e\xd7\x11\x81\x14\x3e\x2b\xe6\x4f\xdc\xb2\xdf\x7b\x9d\x62\x7e\x57\xa3\x3a\xb6\xb5\xcf\xb8\x68\x08\x48\xc3\x77\xe9\xb9\x10\xdd\x9f\x89\xc6\x06\xd7\x7d\x37\xd1\x18\xdf\xdc\xa7\x87\x77\x45\x9f\x35\x38\x27\xfa\x66\x83\xcd\xb0\x25\x7e\x7a\x78\x21\x48\x09\x9f\x1e\xde\x15\xfd\x90\xb6\xd3\xcf\xab\x37\x0e\x9c\xf1\xea\xe1\x85\x1e\x30\x7c\xf2\x5d\x2f\xf0\xda\x67\x4d\x7c\xca\x06\x85\xcf\x9a\xf8\x8b\x03\xe5\xd3\xc3\xbb\x88\x5d\xff\xac\x89\xbf\x00\x77\xdf\xe5\xbb\x46\xce\x7f\xd6\xc4\x37\xb3\xf8\xbb\x7c\xd7\xf3\x2f\x23\xcf\x17\x6f\x22\x2a\x53\xa0\x87\x17\x02\xa2\xf0\x45\x7f\x45\xf3\x2b\x66\x6f\x71\xd6\x7c\xd1\x5f\x41\x1c\xc8\x17\x6f\x7d\x25\x3b\xec\xaf\x20\x1a\xf9\x8b\xfe\x0a\x6c\xbf\x5f\xf4\x57\xb8\x4d\xa4\xc2\x36\x5d\xeb\x8b\xfe\x0a\x57\x82\x1e\xde\xc5\xa9\xfd\x89\x64\x77\xb6\xe9\xaf\xc0\x04\xf4\x49\x85\xad\xf8\xfd\xbe\x9b\x63\xce\x6c\x7e\x3a\xf7\xd9\xf8\xdf\xe7\x78\xb7\x57\x0d\x89\x47\xb3\xfa\xbe\x3b\xf5\x4c\x9f\x21\xd3\x1b\x11\xfa\xe9\xe1\xdd\xc0\xc0\xcf\x90\xe9\xed\xae\xf9\x34\x9b\x63\x03\xf9\xf4\xf0\xee\xd7\x0f\xc9\xec\x54\xbc\x59\x24\x1b\xfd\xae\xc1\x48\x00\x96\x2f\x39\x5e\xd7\xe7\x4d\x34\x06\xe7\x7e\xc9\x38\xb4\xcf\x9b\x25\x21\x74\x9d\x98\x68\xbc\x71\xbb\x7f\x20\xd9\xb2\x93\xaf\xba\x29\x00\x0c\x21\x39\xde\x62\xd3\xf1\x62\xed\xfc\x92\xe3\xe5\x98\xfb\xd2\x8d\xbb\xf3\x43\x8c\xf7\x73\xf6\x0d\x99\xfe\x30\x6b\x7c\x37\x64\x7a\xfa\xac\xc1\x1b\xfe\x1c\x43\xa6\x3f\xb4\x8b\x4f\x0f\xef\xe7\x26\x92\xb9\xeb\x23\xac\xeb\x33\xd1\xf8\x03\x27\x7e\x56\xab\xfc\x5c\xc0\x32\x77\x41\xc3\x12\xbe\x5b\xb1\xc5\x65\x76\x2b\xb6\xa0\x5d\x7c\xb7\x62\x0b\x1e\xed\x4f\xe6\x2e\x33\xa1\x3e\xf9\xae\x0d\xc5\xff\xe4\xbb\xae\x8e\xd7\x90\xe9\xba\xec\x86\x54\xe7\x4a\x54\x3d\xbc\xb5\x39\x04\x73\xea\x09\xfa\xfa\xf4\xf0\x6a\xc3\xfc\x8a\xc1\x2a\x68\xb0\x5f\x31\x31\xd3\x03\x45\x0f\x6f\x77\xf8\x7a\x78\x9b\x82\xbd\x18\x8c\xf4\xf9\x2c\xea\x44\xcb\x36\xd1\x9c\xdb\xf0\x66\xd4\x27\x9d\xa7\x5f\x91\xa9\x0c\xfb\xe7\x27\xdf\xf5\xc0\xb3\xf3\x01\x57\xf3\x70\x79\x17\xe9\xaa\xf0\x73\x7d\xc0\xd5\xdc\xb0\x71\x7d\xc5\xec\xcb\xdb\xab\xed\xb3\xfc\x9c\xe2\x78\xf1\x29\x7c\xd5\xf1\x3a\x47\xf2\x5d\xeb\x22\xfc\xea\xa5\xab\xe2\xe7\x48\xcf\x65\x30\xe1\x57\x1d\xaf\xcb\xec\xc6\x45\x2f\x9b\xd9\x26\x7d\x06\xae\xe6\x81\xbb\xff\x33\xd1\x58\x43\xeb\x67\xa2\xb1\x71\xa4\x5f\x75\xbc\xa8\xd9\x9f\xf4\x5c\x03\xd3\xd3\x77\xf9\xae\x5d\x66\x26\x1a\x6f\x27\xd4\x44\x63\x13\x6d\xbe\x6a\xc5\x25\x94\x8d\xaf\x5d\x78\xce\xb3\x7a\x78\xb7\xc2\xad\x99\xbd\x85\x9a\xfa\x19\x17\xbd\xb7\xcf\x4a\xcf\xb5\x7d\xd6\x88\x14\x45\x9f\x1e\xde\x0d\xe6\xfa\xf4\xf0\xfe\x4a\xff\xfc\x5b\xec\xb7\x1b\xbc\xe1\x83\x92\xf2\x61\x13\xf8\x9a\x89\xb7\x2e\xe6\x66\xb6\x8b\x0b\xa3\xe9\xdc\xc7\x80\xf9\x49\x76\x7d\x3c\x79\xfb\x0d\x57\x60\x46\xba\x5c\x55\x0a\x2b\x7d\xb8\xb0\x51\x85\xaf\x1b\xae\xf0\xda\x64\x72\x03\xfa\xfc\x67\x50\x74\x7a\x7c\xb3\xe1\x28\x9e\x20\x5d\x02\x1f\x8f\x2a\x90\x6c\xce\x6e\x13\x53\x89\x4d\x06\xf9\xfa\xa5\x19\x44\xfc\xf6\x9b\x35\x8f\x64\xd3\x87\x3b\x3d\x3d\x0d\x8a\x9e\x8a\x23\xeb\x69\x1a\x9c\xf3\x5d\xd8\x4b\xf8\xcd\x27\x37\x17\x55\x14\xc3\x77\x7d\xb8\x6a\x0b\x06\x45\x4f\x15\x3c\x83\xa2\xa7\x2b\xff\xa6\x12\x2f\x9f\xbd\xdc\x6b\x4c\xbd\xdc\x5c\xd2\xa1\x7c\xd7\x87\xeb\xa2\xb2\xda\x66\x53\x1c\x59\x6d\x53\x66\x83\xcf\x54\xe2\xd6\xfd\xae\xe5\xb4\x94\x03\x96\xd4\x6c\x8a\x50\x7d\xb8\xcd\xa5\x6e\x49\xcd\x76\x07\x28\x59\x3d\x21\xc4\x9f\xa9\xc4\x83\x68\xe4\x0f\xd8\x9b\xa7\x73\x04\xec\xcd\x33\xd8\x44\x38\x07\xcc\x47\x9f\x41\xd1\x06\xae\x7f\x37\x95\x18\x2f\xc9\x27\xa3\xf5\xeb\xcf\xd1\x87\x4b\x61\x91\xf0\xcd\x9b\x2a\xce\x6e\x95\x9b\x8b\x7a\x85\xe1\x03\xf6\xd6\xd7\xf3\xc5\x82\x9b\x23\xd9\xf4\xb8\x19\x7e\xc8\x8c\x24\xd0\xeb\x27\x7a\xad\x24\xed\x7e\xa2\xd7\x0a\x90\xff\x8c\x6d\x3e\xea\xc6\xa2\xd7\xa3\x42\x6b\xb2\x70\xc2\xb6\xf6\x19\xdb\xfc\x66\xdf\xcc\xf1\xfa\x7a\xda\x2e\x63\x05\x31\x6a\x7d\xa2\x57\x63\x9b\xbf\x75\x33\x0a\x7d\x56\x47\x00\x2e\xec\xcf\xd8\xe6\xe6\x8a\x5d\x72\x38\x57\xaf\x72\xbc\xde\x93\xeb\x52\x6c\x79\x82\xac\x4b\xf4\xca\x02\x16\xbd\x42\x24\x1e\xbe\x7d\x29\x7a\xe8\x95\xe8\xd5\xf0\xce\xcf\xd8\x66\x03\x18\x3e\xd1\x6b\xc5\x34\xf1\x59\x8e\xb3\x7a\xdc\x88\x5e\xeb\xb0\x69\xa5\x18\x61\x94\xe8\xb5\xa9\x57\x8b\x5e\xeb\xed\x95\xb1\xbe\xc7\x37\xcb\xe3\xe1\xe2\x17\xbd\xd6\xdb\x67\x0b\xa2\xf9\xdb\x45\xaf\xc5\xbd\x20\x7a\x2d\x60\xf9\xef\x18\x55\xe2\x74\x1f\xcb\x8f\xaa\x66\x9f\xcb\x5b\xc2\xb3\x86\x2b\xbf\x2a\x0c\x86\x2b\xbf\xea\xa5\xb7\xc2\xa6\x1b\xf6\x56\xd8\x3c\x5e\xb5\x5a\xa5\x7d\x3e\xfa\xe6\x14\xdd\xe7\x72\xd5\xfa\xdd\x9b\xcf\xee\xab\xac\x65\xe9\xa1\x70\x69\xa8\xc1\xb6\x49\x1a\xea\x80\xc8\x4d\x86\x2b\x07\x54\xbe\x24\x20\x0d\xef\x1f\xd5\xb5\x42\xba\xa9\xc1\x48\xa7\x24\x56\x0d\xf8\x61\x93\x58\x55\xf1\x9b\xc4\xaa\x14\x1d\x0e\x49\xac\x1a\x82\x1f\x95\x96\xf9\xf1\x55\xfc\x0a\x03\x9b\x93\x58\x15\x66\xc8\x90\xc4\xaa\x21\xfa\x66\x93\x32\x38\x23\xd2\x8d\x64\x4e\xbe\xd9\xd4\x7e\xe2\x4f\x92\x58\x95\x92\xc4\x21\x89\x55\x03\x93\x9b\x44\xa3\x01\x5d\x31\x89\x46\x3f\x2c\xff\x49\x34\x6a\x38\x5c\xb2\x72\x13\x15\x8a\x43\x7a\x1d\xd1\xe7\x9b\x1d\x11\x70\x3b\x89\x55\x43\xf0\x43\x8e\x28\xfa\x2c\x23\xfa\x6e\xaf\x1c\x11\xe2\x37\xdd\x58\xe5\xee\x77\x1d\x11\xf1\x6f\xe9\x12\x4d\xb3\x5b\x53\xb8\xe5\x30\xf8\x90\x8e\xd7\x80\x28\x4b\xc6\x2a\x7f\xe4\xd4\xa7\x70\x93\xbb\x6d\x3a\x5e\x7f\xfb\x25\x9a\x26\x0a\x3a\x05\xc7\x8b\x9c\x4f\x41\xf6\x4e\x4c\x22\x29\x38\xde\xe6\x55\xc7\x8b\x95\x35\x49\x99\x15\x90\x03\x29\x98\x46\xc4\x72\x4d\xe1\xa6\xd5\xd8\x0d\xc7\x5b\xec\xb3\x19\x91\xf7\xd9\x9b\x46\x44\x27\xe3\x8d\x7a\xb2\x79\x0b\x05\x0e\x9a\x2e\x66\x60\x6f\x32\x56\xf9\x7b\xbc\xea\x8a\x25\xa9\x33\x99\xe1\x1b\xba\x37\x9b\x56\x83\xa2\x92\xa4\xcc\x8a\xce\x51\xbc\x44\xe2\xfc\x1c\x03\x92\x23\x5b\x3b\x45\xc7\x8b\x0d\x36\x45\x57\x2c\x1e\xed\x74\x2b\x37\x21\x06\x93\x94\x59\x61\xfb\x66\xe7\x17\x09\x93\xe2\xe5\x90\x67\x21\x49\x34\x1d\x00\xa4\xc9\x90\xe3\x80\xb1\x34\x99\xc3\x1b\x90\xd5\xc9\xda\x4c\x61\x7b\xb3\x55\x0f\x1c\x91\x54\xd2\xf1\xf1\xaa\x21\xa9\x78\x0f\xd3\xe7\x88\x38\x31\x93\x21\xc7\x72\x26\x24\x43\x8e\xa3\x9b\xfd\x32\x5f\x61\x21\x49\x32\x5f\x45\x57\xbb\x21\xc7\x11\xbb\x6b\x32\xa8\x38\x82\x7c\x93\xce\xd3\x88\x41\x2c\x19\x54\x1c\xb1\xea\xa4\xeb\x3c\x25\xe6\x36\x19\x54\x1c\xf1\x5a\xa6\x74\xeb\x38\x20\x55\x0c\x2a\x8e\xd9\xa6\x23\x72\x6b\x24\x47\x04\x02\x4d\xc9\x11\x55\x6f\x76\x44\xdb\xa6\x23\xc2\x7a\x96\x80\x9c\xed\x0b\x36\x1d\x51\xb5\x57\x96\x1c\x72\xb5\x5b\x24\x34\x72\x82\x24\x8b\x84\xc6\x61\xd3\xf1\xa2\x3e\xa5\x7c\x83\x4e\x19\x91\xdc\x56\x91\xa3\x39\x09\x39\x23\xbe\x8c\x24\xe4\xfc\x3e\x3f\xe4\x78\xb1\xda\x25\xe9\xa0\x23\x51\x40\xc9\xb0\xe1\x08\x7e\x49\xd2\x41\x47\x97\x8a\xec\x55\x11\x05\x38\xc9\x5e\x15\xff\x2a\xaa\x18\x92\xf5\x95\x3e\xd4\xec\x64\x1e\xee\x87\x59\x23\x49\x6c\x15\x39\xc5\x92\x79\xb8\x9f\xb3\x59\x6e\xc4\x29\x7d\x28\x57\xc0\xfa\x6c\xf2\x27\x33\xf6\x72\xf3\xda\x58\x18\xe6\xe1\xc6\x63\xd3\x4a\x9d\x2e\x1b\x89\xad\x3e\xec\x99\x49\x62\xab\x0f\x2b\x47\x2a\x57\xc0\xf2\xcf\x25\xb6\xfa\x5c\x36\x46\x14\x9b\x82\x9d\x8c\x28\x8e\x18\x2e\x52\xb1\xca\x27\xca\x61\x32\xa2\x78\xe2\x6b\x4b\xe6\xe1\x4e\xf7\xe3\xcd\xc3\x45\xff\x49\x46\x14\x6b\x75\x4c\x46\x14\x2f\x92\x7d\x92\xf5\x95\x74\x22\x24\xeb\x2b\x6d\x37\x91\x11\xc5\xcb\x1f\x6b\x65\xd2\xe5\xae\xb1\x32\xe9\x52\xc2\x98\x87\xbb\x82\x57\x19\xaf\x06\xb1\x24\xb1\x95\xc9\x95\xc9\x3c\x5c\x03\x7d\x93\x79\xb8\x9a\x9e\x92\xf5\x95\x16\xb1\x2b\x49\x62\x2b\xcd\x56\xc9\xfa\x4a\xcb\x33\x51\x62\xab\x85\x52\x9a\x8c\x28\x5e\xc7\x67\x1d\x2f\x61\x03\xa9\x39\x5e\xff\xa4\xc4\x56\x4b\xb1\x2f\xb1\xd5\xc2\xe6\x9c\xac\xaf\xb4\x30\x10\xa5\xe6\x78\x41\x64\x49\x3a\xe8\xe5\x16\xd3\x3d\xba\x3c\x14\xda\x65\x3e\xb7\x93\x8e\x97\x08\xb7\xa4\x7b\x74\x79\xa0\x48\x6c\xb5\x08\x45\x4b\x12\x5b\x99\x2d\x92\x74\x9e\x6e\xcf\x17\x9d\xa7\x0b\x13\x41\xd2\x79\x4a\x11\xed\x90\x74\x9e\x9a\x59\x9c\x74\x9e\x6a\x4b\x4c\x3a\x4f\x35\x3c\x26\x9d\xa7\x0b\x4b\x45\xd2\x79\xba\x1f\xbf\xeb\x78\x8f\x6f\x36\xcc\x52\x69\x7c\xd9\xab\x14\x74\xe6\xe1\x1a\xc7\x95\xba\xf4\xc8\x38\x7a\x92\x79\xb8\x19\x5b\x77\x32\xd3\x36\xab\xb7\x5c\x7e\x2a\x67\xdf\xc0\xe0\x8c\x93\x3a\x8d\x1b\xe5\xee\xcd\xd6\xc0\x2a\xbe\x0a\x25\x5c\x1e\x80\x64\xe8\xaf\x51\x7c\xe9\xc2\x46\x97\xca\x85\x8d\xea\x69\x17\x36\x62\xcd\x4e\x17\x36\x2a\xe7\x2f\x6c\xf4\xb4\xbd\xb0\xd1\xf1\x9a\x4b\x2b\x79\x69\x02\x36\xd6\xc7\xe3\x06\xd8\x58\x1f\x60\x63\x02\x36\xd6\x47\x31\x62\xe8\xaf\x29\x00\x49\x6f\x69\x75\xc3\xea\x0f\xad\xf8\x6e\xd2\x2d\x75\xf4\xfa\x2a\x9d\x62\x9f\x57\x75\xca\xab\x48\xeb\xf4\xac\xea\xa5\x3a\x3d\xeb\x67\xaf\x84\x8d\x6e\xab\x0b\x1b\x31\xd7\xa7\x0b\x1b\x31\xc5\xa4\x0b\x1b\x71\x4d\xa6\x75\xab\xd4\xd1\x67\x61\x63\x05\x18\xa6\x75\xe9\x2e\xf9\xcf\x72\x4c\x15\x95\x3a\x53\x62\x25\xee\x48\xc0\xc6\x5a\x6e\xd3\x6c\xf7\xf0\x57\x24\x4f\x5a\xb7\xa0\x9b\x0f\x1a\x7a\xe4\xfa\x5c\xb7\x60\x1f\x2b\x5f\x3e\xe7\xe2\xd9\x6a\xdc\xaf\x69\x53\xc9\xb8\xdf\x02\x28\x4e\xeb\x92\x18\xf3\x57\x8d\xfb\x2d\x04\x07\x26\xe3\x7e\x0b\xc1\x63\x49\xfa\x29\xa9\x02\x93\x88\x72\x78\x6a\x8b\x28\x87\x2b\x7f\x5f\x66\x48\x7e\xa3\x88\x72\x28\x9d\x44\x94\x53\xd0\x21\xa2\x1c\xd3\xef\x1a\xe7\xac\xec\x12\x51\x4e\xb7\x89\x88\x52\xea\xaa\x24\xa2\x94\x7c\x2c\xe9\x0f\x9d\x8a\x32\x11\xe5\xc4\x80\x90\x8c\xfb\x0d\x2e\x66\xe3\x7e\x03\x71\x20\xc9\xb8\xdf\x4a\x1a\x51\xba\x88\x52\xd9\x65\x15\xa4\xa9\x0c\x39\x92\xdc\x3a\x29\xc7\xf1\xaa\x2b\x1e\x0d\xf2\xd1\xab\x56\xcb\x55\xee\x19\xf7\x2b\x39\x43\xba\xf0\x73\xfa\x21\xe1\xa7\xda\x82\xf0\x73\x0b\x3a\xce\x2d\xd8\xe7\xab\x34\x60\x3a\x29\x46\x05\x53\xd2\x37\x24\x43\x7f\x7d\x36\x1b\xfa\x2b\x33\x52\x36\xf4\x77\x37\xaf\x6a\xc0\xfc\xb1\x88\x87\x6c\xe8\xaf\xe9\x93\xd9\xd0\xdf\x4d\xc6\x7d\x36\xf4\x77\x77\x9b\x1a\x30\xb3\x37\x6b\xc0\xec\xbe\xb9\xda\xcc\x34\xb5\x71\x11\x06\x93\x0d\xfd\x6d\xc7\xab\x8c\xb7\x24\x9f\x65\x6b\x17\x4e\xcc\x2c\xc6\x2c\x80\xca\x2c\xc6\x2c\x9f\xaf\xb2\x3a\x30\xda\x45\xbe\xd5\x81\x99\xfd\x7c\xab\x03\xb3\xb5\xf3\xad\x0e\x8c\x90\xcc\xb7\x3a\x30\xab\x2e\x8b\x40\x0f\xc8\x37\x8b\x40\x4f\xf6\xaa\x74\x79\x2c\xb3\x2c\x02\xd5\x65\x9f\x45\xa0\x1b\x1b\x48\x16\x81\xca\x0b\x9a\x45\xa0\x26\xdc\x65\xb3\x65\x07\x26\xa0\x2c\x02\xfd\x8a\x4d\x75\x45\x10\x4a\x16\x81\x8e\xfb\xa1\x63\x93\xf1\x8a\x40\x07\x01\x54\x59\x04\x3a\x80\x60\x59\x04\x7a\x3f\x24\x02\x9d\xe4\xb3\x67\x7d\xa9\x9d\x85\x94\x45\xa0\x14\xfa\x0c\x59\x04\xea\x3e\xca\x22\xd0\x41\x6c\x40\x16\x81\x0e\xac\x49\x39\xdc\x5a\xba\xfc\x1c\x11\xe8\x70\x31\x88\x40\xb5\xde\x67\x11\xe8\xcc\x3e\x2b\x29\x37\x28\x32\x8b\x40\x47\xf3\xea\xb1\x1b\xf4\x59\x04\x3a\xb0\xbc\x65\x11\xe8\x74\xb5\x8b\x40\x67\xf4\xaa\xe3\x05\xf8\x67\x11\xa8\x72\x23\x8b\x40\x8d\xd8\xcc\x22\x50\x8a\x2f\x84\x2c\x02\x1d\xd3\x37\x3b\xde\xe9\xcd\x8e\xd7\xe9\x16\x81\x0e\x4c\xd6\x59\x8c\x39\xb6\xdd\x70\x44\xfb\x2f\x72\x86\x2c\xfc\x94\xba\x33\x0b\x3f\x07\x12\x26\x9b\x0f\x2b\xbf\x5f\x36\x1f\x76\x80\x73\xb3\xe0\x74\xe0\xd7\xc8\x82\xd3\xe1\x8e\x13\x9c\x8e\x65\xf3\x4e\xae\x6f\x66\xb0\xe6\x58\xe5\xef\x72\xc7\xf9\xe6\xe6\x55\x6f\xee\x5e\xb5\x1b\xd2\xba\xba\xb6\x2f\xc1\x94\x2b\xff\x56\x07\x0e\xbe\x4a\x46\xee\xe8\xb3\x4e\x2e\x8e\xd7\x6c\x3e\xec\x04\xf7\x65\xa1\xeb\xc4\x6c\x95\x85\xae\x93\x30\xa7\x9c\xee\xe4\x32\x9b\x42\x57\xa9\xce\xb3\xd0\x55\xfa\xca\x2c\x74\x9d\x28\x5a\x59\xe8\x3a\xa3\x6f\x76\xbc\x9f\x4d\xc7\x8b\x71\x3b\x0b\x5d\xa7\x12\x46\xe8\x3a\x51\xc2\x73\xba\x8b\x99\x29\x4b\x97\x75\xc7\x5e\x29\xac\x86\x03\x3c\x5e\x65\x08\xf9\x6a\xbf\xf4\x4a\xe8\x6a\x32\x48\x16\xba\x4a\xda\x9c\x85\xae\x1d\x03\x66\x16\xba\x4a\xb6\x96\x85\xae\x26\x26\x64\xa1\x6b\x23\xda\x33\x5f\x5a\x66\x05\x5d\xbe\x71\x68\x0c\x21\x5f\x61\xe5\xcd\x6a\xbf\xc7\xab\x6a\x92\x8a\x41\x81\xad\x3c\x99\xf9\x02\xdb\x68\x93\xe0\x1c\x7d\x46\x59\x16\x29\x0a\x19\x84\x6c\x75\xe0\xdd\x6c\x2a\x9c\x3d\x41\x0c\xee\xcd\xa8\x8e\x59\xf4\x2a\x7d\x65\xbe\xc1\xbd\x68\x83\x59\xf4\x6a\xb6\x48\x96\x45\xaa\xa1\x58\xe6\x62\x71\x10\xec\x27\x59\xf4\x4a\xcd\xc1\x90\xcb\x8d\xbb\xb3\x1b\x6e\x5e\x97\xb7\xf9\xb0\xc7\x8d\x73\xab\x03\x7b\x82\x14\xb9\x2e\xd1\x1f\xf2\x2d\x66\xe4\x96\xbc\xb4\xcc\x30\x0c\x64\x83\x7b\xa5\xac\xc9\x06\xf7\xbe\x04\xb9\x65\xbd\xa5\x54\xaa\x0a\xb9\xde\x7c\x67\xde\x6c\x31\xa3\x82\xb7\x22\x4b\xcb\x6c\x5e\x79\xae\xd7\xa1\xc6\x7f\xb6\x3a\x70\x51\x1a\x8b\x5e\x37\x5a\x77\x36\xb8\x57\xea\x98\x5c\xef\xfc\x32\xc0\x7a\x09\x00\xfd\xae\x71\x95\xd8\x31\xb2\xf9\xb0\x45\xb9\x67\x75\xe0\x07\x6c\x9b\x45\xaf\x1b\x83\x49\xd6\x5b\x4a\x51\x8f\x90\xdb\xad\xfe\xcc\x00\x45\xaf\xc5\x3e\x37\x95\x2b\x14\xb3\x6c\x70\xaf\x34\x08\x59\xf4\x5a\xd4\x1f\x44\xaf\x1b\x3f\x57\x6e\x06\x6f\x63\x02\xca\xed\xce\x2f\xff\xb9\xe9\xfd\xbf\x37\x5b\x52\xd3\xad\xd1\x6e\xa8\x12\x43\x00\xbd\x7e\x67\xda\x49\xa3\x3b\x9c\x5f\xd1\xab\x34\x17\xb9\x19\xbc\x8d\xdf\x39\x8b\x5e\xcd\x33\xca\x3a\x4c\x4d\x16\xce\xd2\x32\xff\x5c\x75\xff\x16\xfb\x12\x4c\x4d\x57\x42\xbf\x84\x69\x36\x6f\xf1\x08\xba\xd4\x0d\xec\x39\x36\x4d\x0d\xf6\x24\xea\x72\x03\x62\xfd\xcb\xf8\x25\x1f\x09\xa6\x32\x00\xf3\x57\xad\xe2\xd7\x2c\x36\x99\x3e\x00\xe6\xaf\x7a\xc3\xaf\xd9\x68\x2a\x24\x01\x98\x41\xa6\xa0\x0c\xc0\x0c\x12\x1f\x65\x40\x62\x90\x2c\x3a\x03\x12\x7f\xdc\x1e\xbf\x66\xa0\xe9\xc9\x0b\x48\xfc\x31\x1c\xfc\x9a\xf4\x2a\x60\xa3\xcb\x68\xb0\xc1\x65\x53\x50\x4a\x7f\x2a\xe4\xaf\xf9\x71\x33\xfe\xa3\x82\x52\x1a\x1f\x0e\xa3\x82\xbe\x17\xb5\x2a\x17\x94\xb4\x18\x51\x59\x0b\x4a\x5a\x8c\xf8\x9d\x0b\x4a\x5a\x8c\x80\x9d\x82\x1a\x16\x23\x02\xb6\xa0\x86\x9d\xcd\x52\x2f\xa8\x61\xe7\xd8\x2b\xd4\xb0\x23\x7b\x5e\x41\x0d\x0b\x92\x80\x95\x60\x37\xa2\xcd\xe0\x7f\xe6\x55\xa8\x61\xf1\x21\x6c\xa0\xa0\x4a\x45\xc3\x4a\x0b\xe7\x69\xa4\x80\x4b\x28\x9c\x4d\xdf\xc6\x9e\x50\x38\x6e\xbe\x4d\xb4\x46\xb1\x0a\xc0\x76\xf8\x1c\x37\xdf\x86\x61\xb5\x70\x82\x7c\xf2\x5c\x15\x4e\x90\x4f\x0e\xb4\xc2\x09\xf2\x6d\xce\xd3\xc2\x19\xf1\x99\x2c\x5c\xb2\xdf\x8d\x3e\x6b\xa9\x02\x16\x43\xe1\x8c\xf8\xac\x98\x50\x38\x23\xbe\x4d\x64\x5d\x41\xec\x7f\x1b\x15\xbd\x20\xf6\x3f\xa3\x9e\x4a\x91\xa1\x08\x29\x51\x8a\x9d\x24\xf9\xa5\x14\x3b\x09\x60\x29\xc5\x4e\x72\x90\x95\xea\x55\x76\x4a\x69\x5e\xc5\xa6\x57\x10\x1a\x9f\x81\x85\x05\xa1\xf1\x6d\x54\xd6\xd2\x1c\x02\x39\xcb\xc5\x8d\xbf\x5d\x2a\xcd\x3f\x89\xca\x5a\xba\x9d\x24\x95\xb8\x74\x9f\x05\x44\x97\xee\xf0\x91\x3f\xa5\xfb\x2c\x1b\xb6\x0c\x9f\x25\x7d\xa0\x0c\x07\xe8\xca\x91\x3f\x6d\x63\xd2\x2c\xc3\x37\xe3\xda\x28\xc3\x37\x23\x9c\xcb\x70\x42\x5d\x2a\xc3\x1f\x8b\x67\xb9\xb0\xe9\xbe\x03\xa6\x2e\xd8\x31\xbe\xe3\x22\x5c\x56\x20\x72\xf6\x31\x3e\x7c\xc7\xf9\xc5\xc2\xf0\x19\xec\x51\xb0\x30\x7c\xf2\x4b\x14\x2c\x0c\xdf\x71\x7e\x97\x42\x12\x45\xba\x2c\x6b\x4f\xa0\x4d\x95\xed\xcd\x6c\xe7\xb2\xbd\x19\x7d\xa9\x6c\x6f\x46\x9b\x2a\xc7\x3e\x67\x9b\xf6\x19\x37\x74\x39\x76\x92\x93\xab\x1c\x9f\x25\xd6\xae\x3e\x3e\x4b\x18\x7f\x7d\x7c\x16\x46\x82\xfa\xdc\x8a\x4b\x85\x66\xb4\xd9\x69\x7e\x36\x27\x4d\x59\xec\x40\x46\x15\x30\xfb\x49\x14\x5f\x1f\x7f\x4e\xf3\xcd\xb7\xd6\x06\xcf\xbe\x7e\x08\xfd\xa1\xbe\x7e\x08\xfc\x52\x5f\x3f\xf4\xff\xb3\xf8\x9f\x62\xbf\x46\xfb\x8f\x70\xae\xd1\xd7\x72\x10\xd7\xe8\x6b\x59\x36\x35\xda\x43\xa0\x41\x8d\xf6\x90\x53\xac\x46\xa7\xef\x78\xf3\xb1\xc9\x9b\x3f\x5f\x85\x4e\x5e\x3f\xd3\xe4\x89\x20\xaa\xdf\x4d\x93\xe7\x57\x7c\xa6\xc9\x23\xac\xea\x27\x79\x11\x47\x46\xb5\xd8\xe8\x83\x69\xb4\x5a\xfd\xc4\x48\xf5\x9a\x2c\x33\x87\x1b\xba\x66\xaf\xb2\x4e\x6a\xb6\xec\x11\x40\xbe\x9a\xea\xf5\x7c\x36\xe5\x9d\x26\xbe\xba\x4a\x9c\xf8\x10\x71\x51\xa5\xfd\x7f\xfc\xe7\x43\x6a\x11\xd4\x83\x3a\x2e\x99\x39\x4d\x69\x01\x1e\xf2\x14\xea\xbe\x45\x24\x79\x56\x56\xb7\x07\x63\x5a\xc5\xd6\x94\x5e\x9c\x6b\x95\xc5\x9c\x5e\x9c\xb6\x95\xc5\x9c\x3c\xf5\xaa\xcc\x6c\xaf\xbf\xee\xc8\x03\x80\x31\xad\x1e\xd9\xb7\xfc\x57\xc6\xb1\xbf\xfc\x9c\xf6\x5a\xe3\x0c\xb3\x46\x7b\xa5\x05\xc0\x06\xdb\xac\x09\xf5\x22\x15\x9b\x14\xd6\x2f\xd8\xbc\xbd\xf6\x0a\x7b\x66\x7b\x25\x2b\xe0\x5f\x35\x13\x6f\xcd\xd0\x69\x26\xde\xbe\xe8\x21\xcd\xc4\xdb\x17\x99\xd9\x4c\xbc\x7d\x81\xcc\xcd\x02\x43\x2f\xb6\xfd\x26\x7d\x13\xb5\xad\x43\xfb\xa4\x41\xe0\x00\x6d\x9f\x1a\x2c\x32\xb3\x59\x00\xf7\x45\x48\x36\xd7\x86\x46\xad\x96\xfc\x1b\xc8\xcc\x96\x1c\x3e\x80\xba\xb9\x72\x5e\x0e\xdf\x96\x1c\x3e\x53\xd6\xb2\xdf\x25\xa2\xa6\x99\x60\xf8\x6e\x9b\x76\x12\xe5\xbf\x99\x60\xf8\xb2\xf8\x9b\x18\x84\x52\xb3\xa1\x99\x60\x68\xa4\x47\x73\xd5\x19\x9c\xd3\x4c\x21\xb4\x92\x48\x33\xb3\x2f\x60\x82\x6e\x66\xd8\x05\xc2\x60\x9a\x19\x76\x21\x78\x55\x3e\x40\xdc\x40\xcd\x2c\xb9\x10\xbd\x3a\x6d\xf2\x21\x69\x51\x8d\x94\x68\x4d\xe6\x0a\x00\x78\x43\x93\x4c\x06\x5d\x34\xe9\x53\x02\x52\xb1\xb9\x17\x02\xe6\xeb\xd6\x2d\x41\x88\xbd\xa8\xb9\x35\x64\x57\x6b\xd2\x75\x06\x6c\x7a\x4d\x42\xce\x80\x55\xa7\x0d\x9f\x45\x94\x35\x79\x2d\x64\x35\x69\xf2\x5a\x04\x94\xe1\x26\x55\x45\x70\x06\xa5\xaa\x08\xce\xe0\x72\x80\x04\xc8\x35\xeb\x1a\x04\x9c\xf2\xcd\x6a\x80\x01\x67\x4d\x73\x0f\x06\x27\xd4\x7a\x7f\xc6\x42\x34\x77\x4a\x04\xbe\x75\x93\x38\x22\xde\x99\x6e\x12\x47\x44\x40\xf5\x47\xc2\x10\x60\x54\x97\xa0\xde\x92\x10\x5d\x06\xbc\x88\xda\xd6\xd1\xe2\x52\xfc\xbc\x6a\xdd\x61\x34\x93\xfe\xde\xda\x04\xbf\xdf\xde\x4d\x8d\x8f\xa4\x3d\x76\x93\xdf\x23\xbb\xac\x9b\xfc\x1e\x99\xb2\x6e\xf2\xbb\xae\xf3\xee\x1e\xfc\x11\xc5\xff\x53\xec\x77\xb7\xa7\x89\x8a\xdd\xcc\x77\x61\x60\x37\xf3\x5d\x9f\x7b\x37\xf3\x3d\x02\x40\xba\x95\xc5\xe4\xdb\xef\x66\xa0\x4b\x68\xd3\xad\xbd\x15\xb1\xb3\x75\x49\xcf\xd4\x7e\xbb\xa4\x67\x11\x11\xda\x25\x3d\x33\xa4\xa4\x5b\x72\xda\x12\x33\x3d\xdd\xe2\x77\x8c\x2e\x79\x33\xeb\xa4\x67\xf9\x5e\x50\x95\xbb\x54\x5d\x32\x34\x76\xe9\xac\xa9\xe3\x19\xba\xa9\xc4\x91\x93\xab\x9b\x4a\x1c\xd9\x9e\xdd\x54\xe2\x78\x7c\x96\xe1\x7f\xa8\xbb\xdd\xcd\xfb\x21\x7e\xbb\x9b\xd7\xe4\xfd\x6e\x76\xb0\x11\x26\x5d\x03\x82\xbe\xf2\x6e\xc2\xef\xc7\x5e\xee\x26\xfc\x7e\xae\x13\x8f\x9b\x8f\xad\xdd\xdd\xf8\x9f\xcb\x46\xd4\x6f\x45\xc2\x2e\xae\x37\x56\xa7\xcb\x0e\xfd\x71\x90\x75\x71\xbd\xfe\xee\xae\x58\xf8\x10\xec\xdd\xc4\x5b\xa9\x20\xbb\x62\xc1\x5c\xef\x6e\xf2\xec\x87\xe9\xbb\x9b\xf1\xaa\x73\xbc\x4b\xad\xac\x43\xbf\x2b\x43\x3e\x6c\x4d\xdd\x9a\x41\x1f\xa6\xe0\x6e\xdd\x9f\x0f\x53\x70\xef\x3e\xeb\x52\xe9\x3e\x8b\xb2\xd4\xbb\xc3\xc7\x9e\xd0\xbb\xc3\x6f\x3e\x6b\x27\x9b\xcf\x3a\x7c\x84\x46\xb7\x6e\xce\x87\x97\xa4\x0f\xc7\x0b\x28\xee\x0a\x1c\x0a\x8e\x87\xee\xd1\x6c\xfd\x9a\x6e\xf5\x58\x59\x9a\xbb\xe2\xe8\xc3\x5c\xd6\x65\x19\xfa\x38\x41\xfa\x74\x44\x58\xc0\xfa\x74\x44\x44\x89\x74\x79\x84\x3e\xf4\xa5\x2e\x8f\x10\x65\xb2\x43\x97\x75\x47\x3a\xfa\xae\x28\xb3\xc0\x47\x57\x94\xa5\xc7\x9b\xbb\x4d\xbe\x2b\xaf\x4e\xc2\x1c\xda\x3d\xf4\x13\x7a\x75\xf7\xd0\x4f\x78\xa3\xba\x87\xbe\xd4\x97\xdd\xa4\xb9\x84\x85\xb3\x2b\xd9\x92\x4b\xc5\x5c\xb6\x84\x61\xaa\x9b\xcb\x96\x94\x4e\xe6\xb2\x25\xec\x90\xe3\xb1\x24\x0d\x8a\xf4\x78\xbc\x19\xf9\x33\xd4\x1f\x28\x19\x1f\x86\x92\x2d\x15\xaf\xfa\x2a\xc2\xba\x86\xb4\x1e\x09\xfd\x76\x28\x73\x12\x82\x62\x44\xff\x06\x1a\xec\xb0\x9e\x82\x49\xac\x43\x0d\x21\x71\xca\x8f\x78\xb9\x2e\x33\x4d\x5f\x85\x77\x78\x58\x31\x41\xe6\x8a\x61\x09\x42\xb3\x4d\x87\x02\xca\x4c\xdb\xf1\xf9\xdb\x11\x23\x43\x55\x33\x31\xa1\x43\x89\x64\x3e\xe9\x50\x22\x25\xe6\x77\x24\x29\xbb\x51\x8f\x87\xba\x47\x42\xc8\x0c\xeb\xee\xc9\x8e\x38\x92\x9d\x44\x01\x1e\x8a\x2f\x6b\x13\x8c\x4b\x6e\x80\xed\x62\xa8\x5d\x64\x62\x30\xc6\x35\x4b\x62\x94\x1e\x97\x55\x00\xc9\x30\x2e\xab\xc0\xff\x81\xd2\x3f\xc5\xfe\xb8\x84\x03\xc8\x90\x71\x39\x04\x58\x09\xc3\x44\xf8\x4c\xb4\xc6\x30\x11\x5e\x36\xbc\xd1\x2e\xd1\x01\x1d\x6e\x7e\xb4\xf8\xac\x6f\x2e\xde\x2c\x95\x01\x18\x6a\x58\xda\x3b\x17\x9f\x95\xca\x00\xf5\x6f\xc8\xae\x96\x91\x03\x43\xb1\x90\xb1\xd0\x8e\x71\x6b\x53\xf2\xac\x34\x5f\x99\x43\x61\xcc\xcb\x6c\xc0\x7c\x59\x32\x49\x92\xc9\xe1\x9e\xb2\x0a\xdb\x50\x01\xb0\xbc\xcb\xd8\xd2\xef\xb3\xe3\xc6\xbe\x74\xf4\x5c\x3d\x97\xae\x93\xef\xba\x2f\x0a\x04\xb9\xd3\xda\xb2\x85\x0d\x38\x41\x67\xa9\x20\x7e\xa7\xdb\xa4\x60\x28\x9e\x6e\x93\x82\x59\x75\xba\x2f\x0a\x12\x75\x06\x79\xfe\xf9\xb1\x53\xb2\xd9\x82\xad\x7b\x5a\xa2\xa5\x90\x63\x35\x71\xa9\xa4\x82\xdc\x9b\x2e\xe6\x42\x40\xe3\xbc\x14\xa3\x18\x10\xa6\xa7\x6d\x21\xac\x74\x8a\xb9\x0a\xc7\xeb\xf4\xc4\x2c\xcb\xa6\x04\xa4\x2c\xf5\xa9\x52\x5a\xb6\x4d\xc9\x70\x40\x28\x53\x43\xb1\x55\x39\xa6\x04\x0b\x54\x25\x0e\x53\x6d\xd0\x40\x88\x29\x50\xaa\xa8\x34\xf3\x12\xd3\x81\x23\xe6\x90\x75\x87\x65\x36\x55\xff\x2a\x42\x63\x4a\x6b\x56\x81\xdb\x53\x5a\xb3\x4a\x98\xc1\x54\x85\xab\x8d\x1f\x2b\xaa\xb2\xac\xc3\x3c\xb7\x72\xf4\xaf\xb9\x9c\x32\x03\xf5\xd7\x73\x09\xae\x03\x4d\x07\x88\x73\x6a\x09\x94\x2a\xfa\xc3\x72\x06\x0d\x20\x5f\xf8\x52\x53\x25\xb7\x6b\x89\x8c\xe4\x5b\x58\x6a\x65\x14\x67\x0f\x0b\x77\x61\x6a\xa8\x8e\x4b\x41\x27\xc1\xc2\x52\x94\xb5\xe0\xcd\x12\x00\x62\x1f\x5b\x8a\xb2\xc6\xc6\x5f\x8a\xb2\x86\xf2\xbf\x44\x46\x0d\x85\x61\xb9\x18\x24\x5b\x5b\x2e\x86\x86\xd8\x5f\x02\x25\xb9\x1a\x96\x88\x5b\x82\xeb\xa5\xa0\x6b\xcc\xd1\x52\x94\x35\x3c\x0e\x4b\xd5\xab\x21\x19\x56\xb2\x57\x88\xfd\x95\x7c\x16\x5f\xea\xc2\xa6\x97\x1a\x7b\x7f\x09\xc0\x1b\x7b\x7f\x29\xd9\x5a\xf5\xaa\xe3\x25\xae\x60\x29\xca\x4c\x4b\x59\x72\x80\x50\xbb\x3c\xac\xe6\xcd\x18\x2b\x96\xba\x87\xc5\x7d\x96\xca\x46\xc3\x1c\xba\x54\x09\x1a\x4a\xdd\xc2\xa8\x95\x3a\xa7\xed\xc2\x74\x9c\xac\xfe\xbc\x94\x2a\xfd\xb5\xc9\x9b\x3b\x9b\x7d\x29\x55\x3a\xf2\x76\x29\x55\x3a\x76\xaa\x2d\x52\x30\x2b\x79\x3b\x65\x9d\xa3\x6a\x0b\x39\x4d\x31\xdb\x42\x4e\x3d\x68\x5b\xc6\x1e\x79\xdb\x36\xde\xb7\x64\xce\xe0\x2e\x37\x45\x9d\xa6\x48\x70\x00\x3a\xb6\x42\xf5\xc7\x63\xfc\x4f\xb1\xbf\x95\xb7\x72\xe5\x6d\x37\xe0\xc0\x56\xb6\x87\xb5\x1a\x31\x8e\x6d\xb1\xdb\x20\x42\x7e\x13\xb5\x95\xac\x74\xb3\xdd\xad\xba\xfe\xb7\xca\xd2\x00\x1a\x6c\x95\xa5\x01\x2a\xdc\x2a\x4b\x83\xcd\xbb\x55\x96\x06\xa9\x13\x5b\x65\x69\x00\x1c\xb6\x4c\x89\xa3\xf9\x66\x3f\xd4\xbc\xd9\x8c\x7b\x32\x22\xb7\x14\x85\x83\xac\xa2\x6d\x79\xbb\x81\x0a\xb7\x25\xc9\x1f\xa0\xc2\x2d\x3b\xfd\xe0\xd4\xde\xe7\xd6\xc0\xe2\x66\x55\xa9\xe1\x3f\x3f\xb7\x72\xe5\xa2\x79\xab\x0f\xf0\x5d\x39\x04\x06\x40\x7e\xab\x59\x19\x50\xb4\x3d\x23\x26\x07\xca\x71\x61\x98\xdc\x74\x84\x90\x7a\xb4\xcf\x23\xb3\x01\xe7\xcb\x91\x07\x7e\x12\xdd\x7a\x04\x98\x13\x29\x71\x04\x98\x86\x0d\x9c\xc7\xef\x22\x25\x8e\xb8\xcf\x30\x89\x23\xb8\xd3\x1d\x7c\xc2\x2d\x20\xb5\x68\xda\x49\x0e\xee\xa3\x66\x35\x41\xee\x47\x44\x36\xb1\x3a\x1e\xe5\x80\x25\x84\x8e\x16\x12\x93\xd7\x8e\x1a\xce\x64\xa9\x1f\xa5\xc4\x44\x2b\x3b\x2a\x3c\x13\x35\xfb\x28\x34\x26\xf0\xed\x88\x6e\x4c\x4f\x3b\x12\x16\x19\x64\x7b\xb4\x72\x4c\xf2\x05\x8e\x72\x60\x62\x82\x3e\x4d\x2e\x20\x94\xa5\xa3\xfe\xb0\x82\xcd\x62\xf3\xb7\x4d\x8e\x0b\xc9\x90\xd4\xe3\x5e\x36\xe8\xd4\xe2\xfb\xc9\x34\x79\xab\xcf\x27\xa3\x4c\xad\x3e\x9f\x88\x32\x8d\x96\x41\x4f\x64\xac\x47\xcb\xa0\x27\x5c\xe7\xd1\x1a\xe2\x69\xfd\x0c\xf2\xd1\x3a\xe0\x89\xc0\xd1\x68\xb5\xee\xb4\x16\x57\x45\xcd\xd4\x4a\x8e\xff\x55\xac\xfe\x25\xcb\x44\x2b\x56\xa7\xfd\x53\x0e\xa3\x85\xa4\x13\x2e\x95\x68\xc9\xe6\xb4\x03\xaf\x52\x86\x90\xdf\x1d\x2d\x9d\x9c\xf6\x4f\xf7\x88\xd6\x1d\x4e\xfb\xb7\xbb\xa3\xb5\x83\xd3\xfe\x45\x1f\xc5\x5b\x87\x17\x2f\x6d\x7c\x2e\x9b\x53\xe1\x43\x12\x34\xed\xea\x55\xbb\xd1\xf8\x90\x87\x3e\x19\xdc\xf1\xb9\x44\xc4\x8d\xbf\xa1\x32\xb9\x7f\x67\x71\xb4\x4c\x6d\xda\x9d\x3e\xeb\xc4\xc4\xb5\x11\xad\x28\x9a\xf0\x47\xc4\x5b\x51\x94\x24\xd6\x78\xeb\x7e\xee\x43\x37\xd4\x10\x08\x64\x8a\xb7\xa4\xe6\x79\x19\x91\xa8\x8a\x6c\xd3\x78\x4b\x6a\x9e\x97\x0f\x39\xfb\xe7\xe5\x6f\x6c\xc9\x9d\x02\x43\x50\x6e\x9c\x5f\x58\x69\xb4\x5a\x65\x3a\x91\x37\x5b\x5c\xe3\xf8\x9f\xb7\xaf\x8a\xbc\x59\x80\x86\x3f\x22\x5a\x08\x32\x9d\x8f\x3f\x29\xd9\x08\x8c\xd6\xd1\xda\x8e\x89\x34\xc0\x68\x6d\xc7\x44\xf5\xd5\x68\x6d\xc7\x84\xf3\x22\x5a\xbd\x31\x11\x21\x16\x2d\xc8\x98\x7e\x11\x0b\xff\x12\xfb\xd1\x5a\x8d\xe9\xfc\x0e\xa6\x68\x35\xc6\x74\x7e\xa7\x76\xbc\x45\x15\x29\x73\x19\xad\x93\x98\xce\x2f\x2e\x2b\x5a\x27\x31\x9d\x9f\x8a\x1e\x2d\x7d\x98\xce\x6f\x9b\x44\x4b\x1f\x26\x92\xe0\xa2\xf5\x0a\x13\x75\xc0\xa3\x15\x09\xd3\x61\xea\xad\x48\x98\xce\x4f\x74\x47\xeb\xf7\xa5\x33\xb8\x59\x71\x74\x06\xdf\x55\x1c\x9d\x9f\x49\x36\x5a\x48\x2e\x9d\xcd\xd8\x3d\x4c\xe1\xe4\x89\x16\x56\xcb\xf8\x05\xa2\xa5\xd3\xf2\xf3\xd2\x67\x73\xdb\x9f\x1f\xba\x89\x96\xe2\xca\xcf\xc7\xb3\x26\x95\x53\xb9\x32\x5a\xa9\x2a\x3f\x99\xef\xca\x9b\x0d\x5f\x77\xb4\xda\x54\xa6\x5c\x7e\xb4\x54\x53\x7e\x1a\xdf\xed\xde\xdc\xf8\xcf\x26\x1a\x3f\x8d\x0f\x99\x68\xfc\x34\x9f\xb5\x1b\x9d\x37\x5b\x59\xf8\xe9\x5c\x95\x05\xeb\x19\xf4\x59\x16\xac\x67\xf0\x21\x59\xb0\xa8\x29\x19\x2d\xe5\x93\x9f\x9f\x3a\x14\x2d\xe5\x93\x9f\xc5\xfc\x4e\x3f\xb4\x78\xb3\x35\x77\x1e\x04\x8e\x35\x77\x32\x45\x1c\xa2\xd5\x6d\xf2\x8b\xc0\xb1\xda\x4b\x7e\x7f\x12\x35\xde\xc2\x22\xef\xcf\x7c\x14\x2d\x2c\x92\x5f\x16\xb3\xf5\x3e\xf2\x9b\xb8\xfa\x4a\xb7\xf5\xd3\x1f\xa2\x55\x39\xf2\x9b\xbd\x7a\xab\xfb\xfd\x16\x83\x95\x35\xf2\xfb\x53\x27\xa2\x15\x22\xf2\x5b\xb9\x1a\x7d\x15\xff\xd9\x02\x0a\xf9\xfd\x1d\x46\xd1\x02\x0a\xf9\xed\x74\xc3\xd9\x7f\x91\xb7\xb2\xe2\x67\xb2\x29\xa3\x84\xf3\x99\x04\xc9\x28\xe1\x7c\x7e\x7f\x96\x99\x28\xe1\x7c\x7e\x0f\xaf\x32\x2a\x06\x83\x7c\x94\x25\x3e\x07\x96\x99\x2c\xf1\x39\xbc\x5e\x25\x73\x3c\xfc\x3c\x2c\x51\xe2\xf7\x4c\x98\x41\x94\xf8\x3d\x93\x7a\x19\xa5\x76\xcf\x21\xf0\x5d\xa9\xdd\x43\xf0\xbb\xc7\x26\xc3\x6f\xb7\x60\xd6\x4b\xd3\x0f\xfd\x0c\x35\x51\xa6\xf4\x1c\x3e\xfe\x86\x05\xac\x31\xd7\xc7\xcb\xe0\x4d\xf9\xe3\x28\xfd\x75\x0e\x8d\xff\x8c\x26\x96\x43\x63\x08\xd3\x3e\x77\xfa\xbc\xfc\xd0\xe0\xcd\xcb\xab\x83\x09\x95\xf9\x8a\x04\xb4\x28\xc3\x73\x0e\x93\x11\x99\x3b\x4c\xfa\x61\x94\xe1\x39\x63\x9f\x8f\x32\x3c\xe7\xb0\x58\x57\xb2\x57\x85\x4d\xaf\xb6\xdf\x3d\xfc\xc9\xed\x77\x0f\xe3\x95\x9f\x2a\x1c\x9f\xb5\x22\xcf\x4f\xf5\x8a\xd2\x0b\x67\x72\xca\xa2\xf4\xc2\x39\xfe\xec\xae\x51\x02\xe1\x1c\x03\x57\x11\x5f\x19\x0b\x7c\x94\x32\x37\x47\xfe\xa4\xf4\xb3\x39\x72\x44\xca\x28\x9b\x31\x95\x47\x19\x65\x33\x75\x96\xa3\x64\xad\x39\xfe\x0c\x9e\x51\x3a\xd6\x1c\x7f\x8e\x8f\x28\x1d\x6b\x8e\x3f\xcb\x46\x94\x8e\x35\xc7\xe6\xcd\x0e\xe1\xe7\x5e\x8c\x12\x9f\x66\x4c\xe5\x51\xe2\xd3\x8c\xa9\x3c\x4a\x7c\x9a\xe3\x5f\x91\x3c\x51\x4e\xd4\x1c\x3b\x7d\xf8\xfc\xe8\x2f\x12\x29\xca\x6b\x9a\x23\x3a\x8c\xbc\xa6\x39\xa2\xc3\xc8\x6b\x9a\xe3\xa0\xc3\xb8\xcf\x32\x99\x6b\x51\xaa\xd2\x1c\x7f\xa6\xd1\xf8\x1f\xbf\x28\x93\x7b\xd9\x3b\xe3\xe2\x66\xe9\x50\x48\x55\x8b\xf2\x64\xe6\xf8\x0b\xc5\x8f\xf2\x64\x66\x12\x42\xa3\x3c\x99\x99\x24\xb2\x28\xd7\x65\xa6\x74\x5a\x94\x82\x32\x7f\x8f\x4d\xae\x92\x80\x16\x65\x86\xcc\xdf\xcb\x77\x6f\xa9\x7d\xb6\x98\xb4\x8a\x19\xc2\xd8\x18\xbb\x34\xa7\x91\x57\x29\xc9\x3f\xce\x88\x78\xeb\xd4\x23\xe8\x62\xf7\xcd\x89\x3e\x2b\x7e\xbf\xc4\x77\xe5\x06\xfc\xd8\x71\x97\xee\xef\xe3\x04\x91\xa3\x2f\x53\x3d\x3f\xca\xa4\x97\xb1\x84\x47\xe9\xf2\xf2\xc7\x01\x2a\x6d\x5d\x86\xe4\x36\x5e\x0a\xb8\x0f\x41\x77\x29\xe0\x3e\x67\x70\xfb\xe6\xc1\x6f\x77\x13\x7d\xc3\x67\xa5\x54\xe5\x78\x95\x02\x2e\x7f\x4e\xb7\x5b\xec\x73\x7e\xdd\x62\x98\xbe\xe3\xa5\x80\xfb\xa6\xcf\xde\x12\x42\x2c\x75\x0f\x05\x48\x78\xa2\x24\x6f\xf9\x73\xf6\x8f\x3f\x16\xf1\x2b\x8d\x5b\xfe\x38\x9b\x64\x66\xcb\x9f\x6b\xe3\xd8\x8d\xed\xb3\x76\x63\xfb\xac\xdd\xf8\x65\xba\x45\x09\xd3\xf2\xc7\xca\x91\xf4\x2c\x43\x62\x1c\x25\x3d\xcb\xdf\xcf\xac\x1a\xe5\x31\xcb\x58\xd1\xe3\xe7\x61\x94\x10\xdd\xdf\x7b\x09\x66\xbd\x5a\x6d\x16\x9a\xd6\xa0\x41\x7f\x90\x5e\x2c\x27\x64\x88\x24\x60\x19\x1b\x7b\x94\xc8\x2b\xa7\xc8\xb3\x4a\x89\x14\x79\x36\xfa\xa1\x9f\x39\x25\xca\x5e\x95\xe1\x61\x8e\xb2\x57\xe5\x94\xbc\xd9\x82\xce\x28\x78\x32\x41\xe5\xf4\xab\x19\x1a\x65\x82\xca\xa9\x30\x84\xcf\x67\x7f\xbe\xb9\x28\xf7\x51\x4e\xe8\xe4\x72\x1f\x65\x88\x22\xa3\xdc\x47\x39\xa1\x98\xc9\x7d\x94\x29\x3a\x13\xbf\x4b\xd5\x0b\xba\x91\xdd\x28\xa7\x4e\x9f\xe5\x2f\x4a\xdd\x67\xed\x55\xf7\x59\x7b\xd5\x7d\xd6\x5e\xa1\xc6\x5c\x96\x21\x0c\xf2\xf1\x52\x03\xa5\x49\x27\xa5\xf7\x49\x93\x3f\x69\xb4\x67\x62\x31\xc8\x0f\x93\xf3\x43\x53\xe5\x2a\xff\xfc\x6b\xf1\x52\xbe\xc0\x73\x1b\xe5\x5a\xc9\xe4\xb2\x45\xf9\x52\x72\xe6\xb4\x95\xf3\x24\x43\xa8\x1b\xe5\x3c\xc9\xf0\x09\xc7\x4b\x45\x92\x23\xaf\x52\x23\xca\xe8\x2d\x32\x75\x64\x48\x80\xa3\x5c\x1c\x19\xe6\xde\x28\x17\x47\xc6\x18\x1e\x2f\x27\x06\xe6\xee\x28\x37\x45\xce\x6c\x76\xd9\x18\x72\xe6\x78\x95\x19\x20\x53\x31\x21\xca\x0c\x90\xe1\x31\x8e\xe6\xd1\xe7\xfc\xf3\x63\x46\xb3\xce\x73\x3e\x7f\x18\x79\xa2\x49\xe5\x39\xb3\x2f\x4c\x0c\xcf\x58\xb3\xa3\xd9\xdc\x99\x52\xb3\xd1\x04\xed\x5c\x5e\xaf\x1e\x9b\xbf\xb1\x9b\x64\x9d\x0b\xc7\xa5\x49\xd6\xb9\x04\xaf\xd2\xa5\xc2\x6f\x34\x9d\x39\x63\xeb\x8e\x26\x2c\xe7\x02\xf0\x49\xae\xa2\x82\xae\x68\xc2\x72\x2e\x3f\xd3\x53\x34\x59\x38\x17\x24\xaa\x39\xbc\x19\x5b\x77\x34\x87\x37\x17\x94\x43\x73\x78\x73\x61\xe5\x9b\x87\x9b\x0b\x1a\x8e\x79\xb8\xb9\x54\x7a\x25\x77\x53\xa9\xfc\x55\x95\xb4\x52\xf9\xab\xd6\x96\x2d\xec\x0b\x73\x5a\x73\x41\x1d\x32\xa7\x35\x17\x90\xac\x69\xaa\xb9\x70\x10\x9b\xa6\x9a\x89\x0a\x8e\xa6\xa9\xe6\xd2\x7d\xd6\x21\x80\x73\x4d\x53\xcd\x85\x7d\x61\x22\x6a\x2e\xc8\x6a\x13\x42\x73\x61\x5f\x24\x79\x6b\x0b\x0a\xbc\x99\x98\xb9\x20\x33\xcd\xc4\xcc\x50\xd9\x47\x53\x20\x73\x41\x3b\xba\x89\x8a\x85\x13\xd3\x64\xc3\x4c\x0e\x60\x34\xd9\x30\x57\x76\x8d\xc9\x86\x99\xec\xbc\x68\xb2\x61\xae\x40\x66\xd3\xd3\x72\x8d\x7c\xf7\x78\xb3\x13\x7a\xbc\xf9\xa3\x93\xca\xf9\xea\xfc\x62\x2e\xcb\x10\xec\x47\xd3\xd3\x32\x8c\xfa\xd1\x44\xb0\x5c\x51\xa5\x4c\xc8\xca\x95\x5d\x63\x26\x54\xc6\xd4\x1f\xcd\x84\xca\x98\xfa\xa3\xb9\x3f\xb9\x02\xa3\x4c\xba\xc9\xb5\xdb\xf4\x66\x7e\xac\x39\x2c\xb9\xfe\x32\x74\xa2\x99\x26\x99\x0c\xbb\x68\xa6\x49\xae\x9c\x6b\xe6\x83\x64\xea\x0b\x44\xd3\x25\x32\x94\x35\xd1\xa4\x86\x5c\x41\x0a\x26\x08\xe4\xc6\xb6\xca\x97\x4e\xed\xe5\x43\x2e\x95\x86\x76\x91\x05\x77\x2d\xf1\x2a\x69\x8a\x1b\x42\xc3\xc8\xe7\x4c\x52\x43\xcc\xb2\x07\x37\x96\xb7\xf1\xc9\xb9\xa1\x58\x66\xd5\x89\x86\x48\xc9\x2a\xf0\x58\xd1\x63\x56\x09\x6f\x2c\xc2\xac\x12\x0e\x9b\x53\xcc\x84\x93\xe5\xf6\xb3\xbc\xc5\xec\x1c\x35\xce\xf1\xe2\xa4\x34\x70\xa2\x01\xc9\xb9\x1d\x9b\xb7\x7a\xd1\xef\xd9\x12\xe5\x5e\x0b\x36\xe5\x5e\xfb\xc5\x33\xc4\xa2\x32\xdc\x91\x1b\xc5\x53\x8f\x82\xdd\xb1\x28\x46\x3a\xa7\x5e\xb1\x48\x7a\x47\xc0\x96\xcb\xea\x06\xf4\x2b\x1e\x0a\x1d\x65\xb8\xb8\x43\xa9\x58\x1d\x8d\x50\xcd\x1d\x63\x5a\x91\x36\xaa\x63\x3e\x2a\xf3\x72\xbe\xfd\xa6\xcc\xe0\xcf\x3c\xd0\x0f\x8b\x95\x3d\xc7\x2f\xd1\x38\x16\x85\xf3\xc0\x6e\x63\x78\x67\x1e\xbf\x00\xaa\x58\x55\x36\xc6\x2f\x85\x27\x56\xff\xc6\xa0\xcf\x55\x1d\x60\x60\x24\xa9\x96\x5c\x1c\x4c\x4a\x0d\x7e\x08\x11\x54\x83\x1f\xaa\xbc\xd9\x7f\x35\x50\xfe\xab\x0a\xc3\x40\x04\x55\x97\xe8\xf8\x8b\x78\x39\x1a\x2a\x99\x49\x19\x8b\x15\x0b\x49\x1e\xac\x6d\x63\x23\xf3\xc0\x9c\x52\x15\xdd\x63\xd1\xa5\x5b\xc5\x9e\xb3\xa6\xca\x3a\x48\xba\x56\xac\xaa\xe8\x83\x95\x50\xcb\xad\x3a\x67\x93\xd1\x91\x81\x15\xab\xe6\x14\xac\xd9\xb1\x0a\x99\x49\xb9\x8a\x55\xc8\x4c\x16\x55\xac\xd2\xee\x91\x72\x15\xab\x89\x24\x64\xcc\xc5\xaa\xe8\x26\xa9\x2a\x56\xa5\xf1\x74\x0a\x54\x0f\x48\x8c\x8a\xd5\xea\x5a\x13\x65\xa9\xaa\xb1\x4f\x94\xa5\xaa\xb1\x65\x22\x61\xaa\x1b\x70\x22\x52\xaa\xf2\x76\x56\xfa\xac\x3e\x30\x51\x87\xaa\x3b\x6e\xa2\x0e\x55\x77\xdc\xec\x8c\x77\xda\x67\xd4\xa1\x3a\xed\x33\x3b\xae\x5a\x28\x19\x46\xb8\x58\x55\x1e\x26\x18\xd9\x58\xd0\x3c\x11\xec\x55\x6d\x7f\x82\x82\x0d\x0d\xcd\x58\xc2\x63\x55\x63\x27\xff\x37\x56\x55\x8b\xe9\x1c\xa9\xb1\xc3\x79\x1b\xab\x5b\x1b\xa2\xfb\x68\xf0\x67\x5e\x2f\x9d\x74\xa9\x43\x28\x11\x1b\xe6\xc1\x4c\xc5\xdb\xd8\xd4\x9c\x17\xf6\xcc\x86\x01\x30\x43\x72\x1b\x9b\xc2\x19\x06\x89\x68\x1c\x69\xa6\x50\x57\x34\x8e\x34\x2f\x70\x93\x71\xa4\x79\x61\x6a\x33\x8e\x34\xc3\xe4\x1f\xdb\xeb\x87\x7e\x21\x6d\xb1\x11\x1d\x97\x21\xb9\x8d\x4d\x03\xd1\x42\x66\x36\xf7\x05\xac\xb6\xb1\x09\xa8\x17\x80\xba\xa9\xf3\x2c\xb4\xdf\xf6\xd9\x49\x2c\x6f\xed\x96\xe3\xec\x5e\xb5\x93\x3f\xd7\x79\x6c\x2a\xc3\x70\xc6\xc6\xa6\xde\xb2\x98\x94\xa6\xde\x02\xdb\x46\x34\xbc\x33\xaf\xcd\x77\xa5\xdc\x84\xd8\x21\x36\x29\x37\x17\x93\xd2\xca\x65\xf0\xae\x34\xf9\xed\x70\xc6\xc6\xa6\xa0\x23\x7b\x22\x36\x77\x0a\x1c\x20\xb1\x89\x6d\x37\x12\xb5\x69\x2f\xda\x81\x59\xd0\x5e\xb4\xd1\xc4\x9a\x6a\x0c\xf9\x11\xd1\xf0\xce\x0c\x0d\x6c\x6c\x72\x18\x92\xc5\x10\x9b\x3b\x85\x2c\x86\xd8\xa6\x6f\x66\x2f\x34\xd9\xce\x37\xe2\xa8\x79\x82\x50\xc1\x39\x36\x11\x28\x99\xd4\xb1\xb9\xea\x36\x56\xca\xe6\xf9\xb2\xb1\x52\x36\x5c\x2a\x99\x84\xac\xd8\xc4\x89\x7b\x30\x29\x2a\x0c\xfb\x7f\x8c\xbd\x4b\xee\x04\xad\xb2\xe4\x39\xaf\x55\xf4\x12\x00\xe7\x29\xfd\x75\xf7\xc2\xb3\x67\x3d\xe8\xfd\x0f\x5a\xe1\x3f\xcb\x73\x6e\xb5\xae\xce\x57\xa3\x54\x92\x19\x04\x10\x60\x98\x3b\x1e\xe6\x98\x9c\x43\x33\xf6\x62\x72\x0e\x19\x86\x17\xd3\x60\xc8\x30\xbc\x87\x1b\xc9\x30\xe4\x1d\x07\x1b\x4f\xf7\xf5\xd0\x2c\x53\xc4\x66\xbd\xfe\xa6\xaa\x29\x62\xb3\x5e\x8c\xca\x19\x7e\x99\x10\x1b\x5f\x55\x33\x46\xe5\x8c\xd2\x60\x67\x9b\x53\x5c\x65\xe5\x2d\x06\x53\x78\x64\xd5\xb9\x80\xc2\x23\xab\xce\x05\xa6\x36\x41\xde\x53\xb0\xa9\x19\xfb\xb2\x7e\x7d\xfa\xea\xdd\x9f\xe2\xe1\x8f\xd9\x3e\xc5\x3d\x78\xfd\xd0\x14\x00\x59\xdd\x63\xff\x1f\x61\x7f\x8a\xa2\x3f\x70\x6f\x6a\x6f\x7d\xe0\xde\x2c\x3f\x2d\xf7\xc1\x57\xbd\x5e\xe7\xa9\xe7\x6d\xca\x2a\xe4\x9d\x05\x53\x50\x62\x7d\x40\xd9\x14\xb0\x3f\x3f\xe3\x33\xc5\xdd\xd5\x07\xff\x99\x72\x50\x3f\xac\x8c\xb9\x7e\x1a\xf2\x93\xaf\x92\x85\x87\x58\x2a\x76\xae\x91\xa9\xd3\x14\x3b\xd7\x02\x46\x87\x62\xe7\x5a\xc0\xe8\x98\xb0\xd0\x16\xd8\x05\xe6\x4f\x9d\x1e\xd0\x50\x0c\x5b\x93\x7f\x7e\x29\x01\x77\xc0\x34\x58\x3c\xeb\x26\x77\xfd\x0a\xaa\x19\xd3\x60\x45\x35\x03\x37\xb2\xe2\xd0\x9a\x7c\xec\x4b\x7a\xdd\x81\xfe\x2e\x49\x70\x07\xa0\x7b\x49\x28\x9b\x5c\x78\xa6\xd0\xb2\x16\xd8\x31\x97\x04\x9f\x03\x28\xb1\x24\xf8\x2c\x1f\xfb\x92\xe0\x73\xb8\xb4\x59\xb2\xcc\x01\x58\x58\x55\x62\x8f\x9c\x4c\xad\x2a\xb1\x47\x36\xd0\xa5\x97\x1c\x23\x34\x7b\x75\x65\xba\x84\x66\x2f\x36\xc1\x16\x99\x45\x4b\x89\x2f\x23\xb3\x68\xe1\xd4\x6a\x11\x5b\x75\x29\xb5\x65\xac\xfa\xb3\xae\x65\x6e\x2c\x29\xab\xc8\xc7\xbe\x7e\x9a\x93\x1a\x8d\x9f\xe6\x24\xbc\x5a\x01\x54\x2d\x62\xb0\x28\x80\xaa\xc9\xe5\xae\x10\xa9\x16\x61\xce\x3b\xfc\x24\x28\xfd\xbe\x5b\x6f\xfa\x13\xd6\x6e\x5b\xfa\xe4\x09\xae\xb8\xa5\x4f\x2e\xc7\xf8\x96\x72\x38\x71\xec\xb6\x35\x92\x09\xec\xda\x92\xce\x4e\x30\xc9\x2d\xe9\xec\x54\xf4\xe7\xa5\xaf\x97\xaf\xf4\x37\xc1\xd9\xb6\xd4\xb0\xe5\x27\xdf\x7a\x0a\x24\x73\xb4\xad\xa7\x90\x3a\xd7\xb2\x16\x5a\xc2\xca\xd8\xd8\x98\x2d\x81\x6c\x7b\xa8\x2a\x88\xf4\x06\x8d\x9b\x7c\xdd\x5b\xb9\x60\x12\x5c\x6b\xeb\x95\x4f\x84\xda\x6c\x4f\x25\x7f\xf1\xf8\x13\xdb\x92\xd9\x31\x26\xc3\x86\xd0\x36\xd2\x53\xda\xde\xbf\x3c\x32\xdc\x77\x2b\x8f\x0c\x5b\xf3\xc6\xb5\xd8\x10\x6a\xb3\xad\x47\x66\x1c\x6c\x6d\xe9\x96\x20\xf2\x66\x5b\xba\x25\xc6\x3a\xda\xd2\x2d\x31\x60\x64\x4b\xeb\x92\xc0\x6f\xdb\xd2\xba\x24\xf0\xdb\xb6\x94\x49\x8c\x65\xb5\xa5\x4c\x62\x8d\x1e\xbd\x5f\x3a\x1b\xfa\xab\xe4\xfb\x84\x85\xdb\xd6\xdc\x30\x76\xea\x13\x55\x15\x7c\x5e\xe1\x55\xcd\x70\x69\x9e\xa8\x3f\x63\xbe\x1d\x49\xe8\xf3\x8e\xa4\x1d\xa9\xd3\xcb\xcf\x7c\x24\x23\x6f\xae\xb9\x64\x47\x32\xf2\x28\x57\xd8\xd1\xe3\xce\x1c\xac\x1f\x9c\xd2\x2d\xfb\xcb\x41\x76\xd8\xe5\x5b\x66\x12\x1e\xbc\x13\x4d\xae\xe3\x53\xa5\x49\xce\x53\x50\xe4\x52\xcb\x9c\xce\x28\x54\xa9\xc9\x75\x7c\x94\xf0\x37\xc3\x4b\x15\xb9\xd4\x32\x1e\xbf\xd3\x55\x15\x0b\xf6\xe8\x65\x5b\x52\x54\x9b\x22\x97\x5a\xfe\x2c\xdf\xff\x08\xfb\x47\xaf\xd6\x66\x06\xf9\x68\x16\x65\x06\xf9\x68\x69\x67\x6c\xa8\x23\xb1\xa6\xcc\x39\xec\x91\x90\x8e\x3c\xb4\x47\xea\x37\x84\x2e\xdb\x11\xde\xe6\xa3\x3f\xab\xfd\x1a\x64\xcd\x22\x39\x6c\x8f\x66\x91\x3c\xb4\xe7\xa9\x2a\x9c\xf9\x97\xf3\xc1\x56\xb0\x14\x2e\xc4\xb2\x15\x36\x85\x4b\xdc\x5d\x2b\x18\x0e\x57\x33\x81\x9c\x5f\x76\x71\xc9\xb6\xe2\x91\x57\x76\x95\xd3\xa1\xc0\x7f\xae\x72\x3a\x14\x36\xe2\xab\x9c\x0e\xc5\xf4\xe7\xab\xaf\x95\xaf\x4f\x5f\xfd\xe1\x5e\xe5\x74\x28\xb8\x35\xae\x72\x2b\x14\x10\xf5\x4a\xe7\x5f\x5e\xd6\x2b\x9d\xff\x82\xe1\x70\xa5\xf3\x4f\x06\x37\xbb\xd2\xbd\x27\x92\xd9\xae\x74\xef\x0b\x10\x7a\xa5\x7b\x8f\xa8\xaf\x5d\xe9\xde\xcb\xe9\xaa\x88\xaf\x46\xd8\xb3\x5d\x29\xdb\x17\x38\xea\x95\x1c\x3d\x61\xcf\x76\x35\x03\x11\x3a\xb0\xdb\xd4\x05\x9e\xe0\x6d\xfa\x33\x0c\xf6\x2a\x5b\x77\x61\x6f\x52\xf0\x58\x23\x2b\x90\xdd\xa6\xaa\x30\x2b\xae\xe6\x27\x69\xe6\xec\x2a\x8f\x15\xc9\xc5\xec\x0a\xbb\x48\x33\x67\x8a\x34\x6b\x95\x33\xcd\xfb\xcb\xe0\x4c\xd4\xc4\x15\xb2\x55\xc2\x51\xae\x26\xb3\xdc\xaa\x57\x2a\xdc\x68\x26\xd8\xd5\x04\xae\x58\x73\xf7\x27\x4d\x06\x47\xbd\x3f\x69\x32\x70\xfe\xfe\xb4\xc8\x58\x35\x57\x64\x83\x54\x6b\x76\x95\x68\xb8\x56\x55\xf5\x53\x48\xa3\xcd\x5b\xd7\xe2\x30\xb9\x82\xd0\x0a\xe7\x51\x38\x59\xab\xc0\xd1\x95\x30\x14\xe9\xd2\xec\x6a\xb6\x57\x0e\x4d\x14\x03\xd6\x50\x0e\xb7\x2b\xcd\x25\xa4\x0c\xec\x6a\xf2\x57\x3d\x14\xc1\x60\xe5\x88\xf3\x3e\xdd\xe8\x32\x55\x04\x83\x95\x43\x31\x45\x88\xb5\x0a\x76\xbd\xa0\x66\x70\x00\xfa\x82\x6a\x86\xa3\xbe\xa0\xaa\xd8\x4f\x9f\x30\xb3\x41\xbd\x1e\x36\x57\x93\xbf\xf7\x89\xd5\x34\x18\xac\x42\xc2\x1a\xd2\xd9\xa6\x90\xb0\x26\x8f\xee\x53\x16\x8f\xc6\x4a\x79\xca\xe2\xd1\x70\x89\x3c\x21\x2a\x52\x48\xf6\x84\xa8\xcd\x35\x13\xec\x29\x9d\x04\xd1\xcb\xf6\x90\xb9\x68\x0d\xbf\xcd\xd3\xac\x93\xb3\x54\x41\x5f\x8d\x70\x65\x53\xd0\x57\x6b\x9c\x54\x3e\x6d\xaf\xf2\x8e\xbe\xae\xaa\x38\x77\x7e\x9a\x48\x0d\x33\x59\x41\x5f\xad\x69\xe8\x94\x92\xbb\x01\xfb\x4f\xd3\xac\xc1\xc4\x9e\x04\xf1\xc8\xb7\x6e\x4f\x69\xa6\x3b\xa7\x42\x8f\x17\x40\x5a\xc7\x04\x7b\x62\x44\x1d\xd6\xfa\x70\xb4\xb6\x0e\x40\x3d\x6d\xcd\x1d\xd6\xfa\x34\xcd\x3a\x78\xf5\x34\xcd\x3a\x4b\xe3\x1d\x5d\xcb\x5a\x78\xa2\xb8\xf2\xac\x3e\xc9\x7d\xf7\xfc\x0f\x9a\x3c\xf6\xc4\xca\xc8\xbd\x6e\x4f\x6a\xde\x72\xba\x3e\xa9\x79\xcb\xe9\xfa\xa4\xe6\xdd\x21\x00\x4f\x24\xad\x3b\x01\xc8\x21\x48\x82\xdb\x77\x90\x1c\x82\x64\xb4\x7d\x21\xe4\x20\x70\xee\x83\x3f\x47\x0d\x85\xfb\x40\x72\x88\xea\xce\xe4\xcf\x82\xee\xee\x8e\xf1\x1c\x44\xb3\xbb\x3f\xeb\x1c\xe2\x4f\xeb\x9b\x1b\x09\xab\xbb\x1f\x34\xe7\x20\xac\x26\x36\x3b\x07\xc1\x6f\xf7\xa9\x9e\x83\x36\xe2\xe1\xfe\xa2\x1c\x38\x3f\x6a\x44\x32\xe7\x20\x64\x23\x09\x5d\x0e\x92\xeb\x44\x48\x30\x07\xa9\x85\x10\xab\x9c\x15\x96\xd6\x46\xa5\x55\x02\xba\xe1\xfc\x27\x07\x49\x6d\x8c\x46\x7f\x65\x92\x20\x65\x9f\x83\x1e\x2e\x52\xf6\x39\x6c\xa9\xa6\xbb\x25\x9b\xc3\xd6\xb5\x4b\x7f\xa6\x47\x63\xf3\x67\xce\x8f\xda\x70\x9f\x73\x0e\x04\xae\xb7\xb1\xb9\x56\x3a\x75\xe3\xd2\x41\xe9\xd4\x8d\xcb\x58\xfd\x94\xcf\x2f\xd7\xfe\x94\xcf\xaf\xae\xd5\x68\x5c\xba\x20\x1a\x36\x1e\xbf\x4a\x02\x8e\x9c\xda\x59\xb1\x64\x8d\x24\xda\x39\x8a\x93\x4f\x77\x01\xe5\x18\xa5\xdf\xe8\x21\x6d\x39\xea\x19\x91\x7d\x29\x2b\x8e\xab\x91\xef\x23\x2b\x8e\xab\x4d\x77\x6e\xe7\xa8\x34\x3a\x64\x8c\xca\x51\x14\x9d\xec\xd5\x39\x2a\x43\xcd\xec\xd4\xac\x0c\x35\x24\xee\xcf\x51\xa6\xd0\x74\xcf\x5b\x56\x1c\x57\x9b\x83\x9a\x95\xb1\x85\xdc\x5b\x39\x2a\x63\xcb\x74\x94\xc8\x0a\xeb\x6a\xd3\xf7\xc4\x1c\x89\x1c\x68\xe4\xa7\xce\x51\xa0\x41\x32\xe8\x1c\x65\x46\x21\xd1\x93\xa3\x36\xb2\xf9\xf4\x95\x46\xae\x40\xab\x38\x9d\x69\x2b\x70\x5f\x62\x14\xdb\x0a\xd4\x2c\xce\x46\x06\xe7\x1c\x45\xbd\xd0\x5d\xc9\x0a\xeb\x6a\x4b\x03\x8b\x99\xdc\x56\xa2\x2a\x6d\x73\x64\xc7\xcb\x8a\xe3\x6a\xa4\x7b\xce\x11\x3f\x64\x5b\x7a\x0a\xda\xd7\x96\xe9\xcf\x4b\x5f\xe9\xfe\xd2\x8d\x58\x0b\x51\x26\x36\x0e\xea\x1c\x65\x62\xaf\x4c\xab\x04\x47\xcb\x03\x18\x72\x94\xe1\xb0\x0a\xfd\xdd\xea\x42\xa1\x91\x5b\xf7\x2d\xdc\x57\x66\xc5\x2a\xcc\x1c\x4d\xef\xc5\xb2\x52\xc0\x58\x5b\x8d\xa7\x70\xf4\x6b\xa3\x19\x4a\x78\x87\x63\x3c\x47\x31\xcf\xd5\x18\x1c\xb1\x47\x3c\xe1\x39\xca\xac\x20\xd2\x3b\x27\x6d\x73\xcb\x8f\x47\x73\x0a\xaa\xca\x8f\x47\x73\x12\x22\x21\x89\x96\x93\x36\xc1\xe5\x1e\xa1\x9c\x94\x4e\x6b\x3d\xbe\xca\x78\x47\x21\x2d\x27\x65\xb9\x42\x16\x2c\x27\xe5\x90\xc2\xa1\x9d\x93\xac\x48\x5c\xd6\x39\xe5\x9f\xde\x23\x55\x29\xa9\xd0\xce\x7c\xed\xfa\xea\xb1\x94\x39\x71\x16\xd9\x08\xb1\xce\x49\x33\x67\xab\x47\xda\xb9\xb6\x9f\xff\xe6\xa4\x07\xba\xf7\x3f\xf8\xf6\x73\xd2\xb3\xde\xcc\xed\x24\xef\x0a\x6e\xe4\xac\x20\xae\xb6\x0f\x23\x73\x7e\xca\x90\x91\xaf\xfa\x15\x44\x55\xc6\xff\x46\x40\x75\x56\xc6\xff\xb6\x7d\x43\xcc\x8a\xf8\x6a\xfb\x31\xaa\xe7\x27\x4f\xc4\x40\x9d\x5f\x26\x35\xd5\xfc\xcb\xa4\xa6\x9a\x95\x6c\x0b\x84\x51\x5e\xfe\x76\x22\x7d\x97\x3e\x27\x2e\xe8\xac\x4c\xf4\xed\x30\x99\x93\x8c\xc4\x93\xa9\xf9\x29\xc9\x57\xa6\xe6\xf7\xcb\x77\xe6\x6d\x56\x10\x57\x3b\xbe\xcd\x65\xa5\x41\x6f\xc7\x89\x47\x56\xfe\xf1\x76\x98\x81\xf6\xcb\xb3\x06\xfe\xd8\x2f\x93\x1a\x80\x63\xbf\xf4\x61\x6e\x19\x65\x65\xa0\x6e\xe4\x89\xce\x0a\xa0\x6a\x08\x02\x67\x65\x64\x6e\x04\x72\x67\xa5\x51\x6e\x38\x8a\xb3\xd2\x28\xb7\x73\xb9\x91\xc0\xea\x5c\x6e\x54\xd5\x5f\x67\x74\x59\x31\x51\x0d\xb5\xe4\xac\x8c\xc6\xed\xf0\x50\x94\xb3\xb8\xa1\x00\x9c\x95\x3c\xb7\xdd\x48\x33\xb4\x91\x11\xf5\x9d\x15\xe6\xd4\xf0\xfd\x66\xfb\x97\x74\x15\xdd\xd7\x36\x77\x81\xee\x5f\x5e\x5a\xb4\x71\xb2\x92\xba\xb6\x0b\x2c\x28\x23\x6a\x23\x69\x6f\x56\x4a\xd0\x86\xd4\x67\x56\x4a\xd0\x86\x3e\x67\x56\x20\x53\xbb\xee\x21\xc9\x4a\xe5\xd9\xee\xa0\x0b\xe7\xa7\xae\x46\xf7\x35\x09\xef\xe4\xcf\x9a\x84\x44\x7d\xe7\x5f\xc2\x4d\xfc\xb7\x59\x09\x37\x1b\xb9\x8a\xb2\x12\x6e\xb6\xcb\xae\xa7\x84\x9b\x8d\xb4\x47\x59\x09\x37\x1b\x19\x88\xb2\x12\x6e\x36\x82\xc0\xf3\x2f\xe1\xe6\x8b\xdc\x97\xf0\x8c\x86\x87\x36\x2b\xe1\x66\x43\x49\x26\xff\xf2\x60\x3e\x66\x9d\x02\x99\x1a\xa1\xda\xd9\x7e\xf9\x3e\x34\xeb\x64\x0b\xa0\x24\x93\x95\x8f\xb2\xa1\xcc\x96\x15\xb9\xd4\xd0\xf6\xcc\xca\xed\xd8\xc8\xec\x99\x95\xdb\xb1\xe1\xa4\xcd\x0a\x64\x6a\x44\x5c\x67\xa5\x4d\x6c\x48\xc7\x64\xa5\x4d\x6c\x8f\xa7\xa0\xb4\x89\xed\xf1\x14\x94\x36\xb1\x3d\x3f\x07\xc9\xbf\xf4\x85\xa4\x01\xcd\xbf\x04\x85\x0f\x26\xf6\x4b\x50\x88\x83\x37\xff\xb2\x0a\x3e\x77\xb6\xe4\x5f\xb2\xbf\xe7\x34\x3b\xff\x32\xfa\xbd\x4d\x55\x5a\x29\x0f\xcc\xf9\x25\xda\x7b\x9b\xfb\x2a\x77\xde\x63\x69\xfc\x92\xc7\xbd\x4b\x7f\x95\x3c\x0e\x41\x98\xfc\xcb\xf8\xf6\x98\xde\x4a\xe2\xd6\x43\xe0\x57\x1c\x71\x3d\x44\x5a\x85\x23\xae\x13\xda\x9d\x15\x5f\xd4\x43\xd2\xaf\x4f\x5f\x69\x15\xc7\x31\x3d\xb0\x9f\x2a\xfa\xa8\x93\x9c\x34\x2b\xc7\x59\x0f\xee\x25\xc8\xca\x62\xd6\x03\x6b\x41\x59\xcc\x3a\x52\x57\x59\x09\xc2\x7a\x60\x69\x28\x41\x58\x0f\xec\x98\x4a\x10\xd6\x03\x3b\xa6\x12\x84\xf5\xc0\xd3\xff\xa5\xc1\xc2\x29\x9d\x7f\x69\xb0\x82\x9e\xaf\x32\x5b\x85\xfe\x0f\xe2\x0c\xf9\x97\xf4\x2a\x74\x06\x4a\xc9\xa7\x50\xa1\xc9\xbf\xe4\x53\x01\x8a\xfe\x4b\x3e\x45\x78\x79\xfe\x25\x9f\x0a\xec\x35\xbf\x7c\x52\x61\xd2\x59\xe5\x93\xc2\xf5\x9d\x7f\xf9\xa4\x08\x2f\xcf\xbf\x9c\x50\x01\x8a\xfe\xcb\x09\x15\xd8\x88\x7f\xf9\x95\x02\xdb\x8d\x72\x24\xf5\x70\x99\x63\x5b\xcd\x80\x68\xe5\xad\x66\x3c\x5d\xab\x67\xcd\x76\xa3\x0c\x4a\x3d\xb0\x96\x95\x41\xa9\x93\x73\x39\x2b\x57\x51\x8f\x91\x6b\xa5\x2c\x8d\x63\x3c\x2b\x57\x51\x8f\x91\x6b\x25\xad\x1c\x8d\x1e\x41\x86\x3b\xf9\x9a\xb3\x22\xaf\x3a\xfa\x36\x59\x79\x70\x3a\x71\xec\x59\x79\x70\x3a\x4e\xf5\xac\x3c\x38\x3d\xb2\xd2\x95\xec\xa6\x93\x7d\x29\x2b\xad\x4c\x8f\xee\x6d\xc8\x4a\x2b\xd3\x91\xbb\xc9\x4a\x2b\xd3\xc9\xdc\x94\x4b\x54\xcd\x2c\x7c\x65\x8a\xe9\xd1\x63\x39\xb2\xd2\xbb\xf4\xc8\xd2\x56\x8a\x96\x1e\xdd\x9b\x94\x15\x00\xd6\x23\xcf\x57\xe9\x4e\x7a\x84\x0c\x2b\x39\x48\x8f\xec\x4d\x8a\xf2\xea\x91\xe5\xa9\xf4\x1f\x1d\x41\x9b\xac\x28\xaf\x4e\x36\xa2\xac\xc0\xad\x1e\xaf\xbe\xea\x46\x97\x6b\xab\xaa\x82\x2c\x29\x0f\x45\x8f\x70\x00\x85\x75\xf5\xc4\xa6\xaf\x3c\x14\x3d\x05\x5d\xcb\x14\x4d\x2c\x5e\xe5\xa1\xe8\x04\xcc\x67\x45\x79\xf5\x14\xa9\x59\xcb\x93\x80\xf9\xac\xb4\x0e\x9d\x83\x80\xac\xb4\x0e\x9d\xbc\x39\x59\x21\x61\x3d\xb1\x96\x15\x12\xd6\xc9\x13\x94\x95\x4f\xa1\x93\x82\x27\x2b\x9f\x42\x27\x24\x3e\x2b\x16\xab\x27\x3f\x07\xc9\x8a\xc5\xea\x09\xc2\x20\x61\xff\x9e\x58\x9e\x8a\xc5\xea\x24\x8e\xc9\xd2\xdb\xef\x49\xcf\x48\xab\x8c\x63\x82\x2c\xbd\xfd\x9e\xf4\xc8\x94\x88\x2d\xb1\x06\x15\xc7\xd5\x49\xdf\x93\xa5\x99\xdf\x93\x9e\xa0\x96\x55\xc2\xa8\xfc\xa9\xe2\x13\x6c\x9f\x7f\xaa\xf8\x49\xcf\x57\xda\xf5\x09\x06\x28\xed\xfa\x9e\x0e\x35\x6b\x49\x26\x36\x50\x69\xd7\x77\x12\xc7\x64\x85\x84\xf5\x04\x33\x51\xd0\x57\x27\xba\x3e\xff\x54\xe2\xd3\xa3\xfb\x52\x89\x4f\x80\xf3\x4f\xa1\xdd\x02\x55\x49\xa1\xdd\xd8\x5e\xa5\xc1\xde\x0d\x8e\xa7\x90\xb0\x6e\x7a\x64\x5a\x83\xa8\xdf\x64\x85\x84\x75\xd3\x13\x64\xc7\xec\xc6\x0a\x95\x62\x79\x27\x45\x7e\xfe\x09\x89\x9b\x1e\xa8\xd6\x2f\x91\xf9\xf9\x27\x06\x6e\x80\xf3\x4f\xc1\x1b\x31\x9c\x2c\x05\xef\x6e\xae\xa8\x9f\xa5\x1d\xdd\x89\xae\xcf\x52\x87\xee\x06\xe5\x93\x3a\x74\x37\x7f\x29\x29\x4b\x1d\xba\x13\x7b\x9f\x15\x4e\xd6\x51\x9e\xc9\x52\x69\xee\x04\xc9\xe7\x6a\xfa\x33\x16\xa8\xa4\x95\xbb\xb1\x06\xa5\x72\xdc\xd1\xa5\xc9\x8a\x3d\xeb\x9e\x27\xe8\x3f\xc2\xbe\x34\x8d\x3b\xd9\x5b\xb2\x84\x79\x3b\x2a\x34\x59\xc2\xbc\x1d\x15\x9a\x2c\xe9\xdd\x9e\x79\x22\x52\x1f\xed\x1c\x37\x64\x29\x88\xf6\xac\xa1\xc0\xb0\xed\x48\xb8\xe4\x7f\x6b\x84\x32\xaa\x5a\x08\x04\xae\x67\x09\x81\xf6\xdc\xa8\x79\xea\x46\x8d\xaa\xb0\x65\x3a\x7a\x2f\x59\x42\xa0\x9d\x8c\x2d\xb9\x6a\x7f\xe1\x3c\x22\x57\xed\x2f\x08\xbc\x64\xa9\x77\xf6\x3c\x68\xa4\x60\x3f\xb3\xfb\xd4\xa3\x1b\x69\x90\x95\xd4\x00\x91\x96\x5c\xb5\x0b\x10\x8b\x9e\xab\xe6\x67\xc6\xee\xab\x57\xdd\xd7\xd0\xe1\xbf\xed\x19\x26\x59\x25\xb0\x9f\x2f\xcd\x90\x76\x3d\x32\x2c\xb9\x09\xd8\x39\x8f\xc8\x0d\xb3\xa2\x17\xd0\x49\xea\x9d\xbd\x60\x06\x36\x4d\x1b\xc4\x52\x72\x23\x30\xa0\x17\xf6\x97\xa6\x69\x83\x58\x4a\x6e\x9a\x36\xa5\xe8\x57\xfd\xd9\x4f\x69\x73\xcb\xaa\xb9\xe9\xab\x6a\x06\x8e\x1a\x2f\x62\xf4\xe2\x71\x2f\xb9\xc1\xac\x7a\x01\x8e\x5a\xd1\x8d\x60\x83\x8a\xac\xeb\x9c\x47\xe4\x26\xac\x2e\x1e\xe8\x92\x25\xaa\xd9\x0b\xf8\x23\xe9\xcb\x4e\x6c\x76\x6e\x22\x3c\xa4\xd7\xcf\x92\xa0\xec\x85\x8d\x5b\xea\x8e\x1d\x57\x7f\x6e\xda\xc7\x2b\xcc\xb9\x69\x1f\x27\x75\x48\x6e\x38\xb5\x7a\x2d\xfa\x5a\xf5\xd5\x87\x5d\xa2\x8b\xbd\x62\x23\x2b\xd0\xae\x93\x70\x33\x4b\xfc\xb0\x23\xfa\x91\x25\x60\xd8\x2b\x3e\x9f\x9e\xf4\x15\x2a\xd2\x93\x6e\x84\x4f\x40\x71\x77\x9d\x90\xe9\xdc\xb5\x3c\x2b\x2c\xb4\x23\x51\xde\xeb\xd3\x57\x46\xb2\x61\xcc\x4a\x78\xb0\xb7\xc8\x7d\x71\x5b\x75\xc2\xa4\xb3\x84\x07\x7b\x83\x6c\x74\xdc\x56\xbd\x45\x5a\x55\x94\xb7\x82\x7d\xad\xeb\x19\xa1\x10\x92\xbb\x38\x2a\x91\xcf\x59\xd1\x74\xbd\x31\x37\x7a\x53\xce\x0e\xec\x88\x2e\xed\xe8\xc6\xfa\x55\x44\x5c\x6f\xf0\x87\xce\x61\x4d\x6f\xf8\xd6\x7a\x57\xea\x0d\x3f\x8d\xca\x5d\x49\x5d\x1b\x7b\x53\xd7\xde\x44\xc8\x71\x96\x4a\x61\xc7\xa9\x9e\xbb\xb2\x82\x92\xcd\x30\x77\xed\x3e\x4d\x03\xab\xdd\x07\xa5\xe5\xdc\xd7\x2f\x6d\x07\xdd\xd7\x82\xc5\x03\x9f\xfb\xbf\xd2\x8e\x30\x1a\xda\x50\x1a\xab\xac\xff\x52\x7e\xb0\xa1\x28\xaa\xad\xf7\xc0\xb5\x38\xa5\x3b\x21\xc7\xb9\xdf\x5f\x42\x10\x7e\x7d\xd2\x13\x66\x0d\x0e\xe1\x7c\x67\xd3\x57\xec\x59\x27\x02\x39\x2b\x9c\xac\x77\x86\x4e\xe1\x64\xbd\x17\xfd\x59\x37\xc2\x8b\x35\x34\x91\x88\x40\xce\x43\x13\xa9\x33\x27\x87\xb6\x8c\xce\xb0\x8f\xa4\x66\xf8\xe1\x78\x96\x68\x61\xef\xac\xd0\x21\x62\xd6\x3b\x8d\x34\x65\xf1\x80\x3f\x0c\x53\x55\xdf\x43\xf9\x8f\xb0\x3f\xb2\x12\xb2\xc0\xd8\x87\xe6\x58\x87\xb1\x2b\x0e\xad\x77\x2c\x2c\xe9\x0a\xf6\x0e\xd0\x0d\xb1\xa3\x8e\x85\xa5\xf0\xb0\x4e\x34\x72\x1e\x82\x6e\x32\x66\xe6\x21\xe8\x1e\x1e\x45\x90\x87\xa0\x7b\xb0\x11\x0f\x91\x87\xc1\x1e\xa1\xf0\xb0\x8e\xc4\x47\x1e\x62\xdd\x43\x9d\xd5\xc3\x1d\x78\x57\xc6\xd5\xaf\x6c\xb5\xe3\xfd\x12\xc2\xfa\xb5\xf3\x97\x68\x03\x24\x97\x56\x5e\x1f\x1e\x00\x96\x67\x50\x56\x20\x2c\x4a\x49\xe7\x75\x34\x3d\xf2\xd4\xb3\x1e\x47\xbf\xaa\x91\xcc\xc0\xa9\xa7\x39\x00\xab\xa9\xa7\x39\xb0\x32\xa6\x1e\xd0\xc4\x7f\xab\x30\xad\x3e\xa1\xac\x13\x67\x60\x9f\x30\x9c\x89\x15\xdc\xa7\x47\xe5\x65\x69\xdc\xf5\xc9\x84\x54\x4c\x57\x9f\x51\x35\x4f\x7d\xdd\x7c\x5d\xfa\x4a\x07\x45\xd1\x11\x0f\xc9\x33\xeb\x57\x86\x5d\x2a\x76\x7d\xb2\x65\x4c\x59\xc1\x13\xa3\x63\x16\x5d\xeb\x67\x37\x79\x8a\x03\x4c\x08\xcf\x24\x0a\xb1\xcb\xe5\x2e\x9d\xba\x3e\x99\xae\xd2\xa9\xeb\x93\xad\x59\x6a\x72\x7d\x72\xd0\x23\x81\xb8\x3e\x01\xd8\x29\xd8\x9f\x58\x19\xb3\xab\x55\xd0\xa1\x49\x30\x43\x9f\x1c\xf4\x4c\xe1\x8f\x1c\xf2\x53\x19\xa8\x27\x0e\x84\xa9\x2d\x63\xea\x81\xca\xce\x9d\x80\xf3\x14\xd9\x98\x38\x6c\xa7\xc8\xc6\x64\x1f\x97\x5e\x5c\x9f\x18\x2c\xd2\x8b\xeb\x13\x7e\x2b\x45\xb8\x3e\xf5\xf4\x95\x3a\x79\x5e\x6e\xa4\xd4\xc9\x93\x33\x94\x29\x12\x4e\x96\xf0\x2c\x09\xb8\x3e\x59\x1a\x53\xdc\x63\x62\x72\x4e\xa5\xa6\x9a\x98\x9c\x53\x30\x38\xb1\x7d\x14\xc6\xd6\x27\x5b\x86\xf4\xe2\xfa\x0a\xba\xef\xd3\x57\x87\x6e\x85\xb1\xf5\xa5\x99\xa3\x75\xb4\xb0\x5e\xa7\x48\x38\x9a\x2d\x79\xca\x6a\x5e\x9a\x39\x1c\x12\x75\x1d\x13\x4c\x25\xe8\x91\x43\x7e\x3e\x55\xc5\x7e\xba\x34\xdb\x11\x48\xc9\x0a\x54\xeb\xe4\x28\xc9\x4b\x0c\x16\x81\x94\xbc\x04\x56\x0b\x18\x91\xd8\x5a\x5f\x3c\xb2\x95\xd4\xa3\xa5\x9a\xd5\x23\x60\x7f\x69\xe1\x2c\x9e\x82\x42\xe0\x3a\x02\x29\x79\x69\xe1\x90\x6b\x23\x2f\x2d\x1c\xd2\x24\x65\x29\x95\xf5\x0d\x33\x59\x9a\x75\x5b\xad\xd2\x34\xdb\x6a\x86\xa6\xd9\x86\x66\x2f\x4d\xb3\xbd\xa8\x59\xdb\x1c\xfa\x21\x79\x29\x85\xfa\x86\x75\x2f\xa5\x50\x97\x6f\x7c\x29\xd1\xf9\x86\xc6\x48\x70\xac\x6f\x60\x44\x82\x63\x9d\x34\x49\x79\xc9\x12\x24\x00\x3b\x2b\x9a\xae\x6f\x26\xd2\xfa\xe5\xe0\x56\x07\xc5\x69\xe5\xdf\x5e\xe2\xb4\x87\x53\x83\xa5\xa9\x72\xd8\xaa\x14\x4d\xd7\x4f\xf9\x27\xb6\xbf\x94\xc2\x8c\x38\xe7\x2c\x59\xb3\x7e\x80\xdf\x25\xcb\xee\xe0\x4f\x58\xf8\x15\xfb\xd1\xc8\xe0\x27\xef\x47\x8f\x4f\xb9\x99\x0e\x67\xa9\x5b\xcc\xea\xb0\xa7\x6f\xa5\x4c\x3a\x5b\xbf\xaa\x66\x1e\xae\x84\xcb\x3a\xb2\x24\x79\x0b\x6f\x0f\x2e\x82\x1d\x75\x5f\x0f\x6c\xce\x5b\x39\x83\x8e\xa7\x4c\xca\x5b\x3b\xef\xe1\xe4\x71\x6b\xbb\x24\xce\x39\x6f\x53\xc6\xa8\xa4\xaf\xca\x18\x85\x8f\x6e\xcb\x68\x42\xd9\x3e\x2b\xc0\xaf\x5f\x7c\xb0\x92\x26\xeb\x17\x93\x64\xcb\xd8\xb9\x6c\xc4\x8a\xd9\xeb\xb7\xe9\xcf\x4a\x02\x05\x3b\xda\xf2\x45\xdc\xc6\x7d\x85\x99\x97\x9d\x6b\x8b\xfd\x5e\x78\xf5\x6e\xbf\xe4\x53\x9d\xaf\xba\x2f\x54\x6a\x8b\xb3\xc9\xd7\xbd\xb5\xdb\xa2\x70\x92\xb7\x00\x16\x85\x93\xbc\x85\x7b\x97\x9d\x7a\x0b\x25\x48\xc6\x94\xb7\x0c\xf9\x07\xff\xd9\x02\x8d\x07\x86\x6c\x3d\xee\x17\x68\x86\x68\xf6\xc3\x7f\xa2\x98\xbd\x2e\x07\xf5\xd1\xf3\x7d\x1e\xdf\x98\x8f\xbc\x58\xf2\x39\x1f\x79\xb1\x88\x28\xce\x12\x3d\xeb\x68\x80\xe4\x23\x0b\x9a\x04\x52\xf9\x68\x6e\xbc\xae\x6b\xd5\x0c\xba\x7f\x94\x4e\xeb\x11\x1b\x70\x94\x4e\x0b\x59\x8f\x2c\xc1\xb4\xfe\xd8\x14\x8e\x1c\x62\x6f\x52\xb3\x1c\x62\x0f\xfc\x91\x42\x5a\x7f\xec\x11\x47\x33\xe7\xb1\x96\x8f\x3c\x60\xcf\x03\x29\xf3\x49\x6a\x33\xc6\xdd\x11\x2b\x7b\xd0\xfb\x23\x43\xfe\xb1\x0b\x1c\xc1\x20\x9a\xe4\xf9\x08\x06\x11\x0c\xc9\x47\x30\x28\x8f\xb4\x62\x05\x47\x60\x2d\x2b\x56\x70\xa0\x3a\x9e\x8f\x32\x28\xc9\xe7\x7c\x94\xc3\x37\x00\xdd\x12\x6a\x1b\x44\x2f\x67\xc9\xa9\x8d\x00\x7d\x92\x9c\xda\x40\x57\x3c\x4b\x4e\x6d\x04\x3d\x32\x65\x02\x42\x7b\x24\x1f\x65\x02\x0a\x90\xff\xa3\x5c\x3f\x01\x43\xe9\x28\xd7\x4f\x00\x19\x8e\x72\xfd\x04\x0e\x5e\x8f\x72\xfd\x04\x0f\xbf\xc9\x52\x57\x1b\x81\xb5\x70\x94\x73\x27\x70\x2c\x7b\x94\x73\x87\x4c\x88\x59\xd1\x8f\x23\xb0\x34\x14\xfd\x38\x50\x35\xc9\x8a\x6f\x1c\x01\x8b\xec\x28\xcd\x6b\xd0\xd3\x57\xa2\x9c\xc0\xee\x73\x94\xe6\x35\x70\xc4\x79\x94\x28\x27\x60\xda\x1f\xa5\x79\x0d\x83\x47\xa6\x44\x39\x28\xa2\xe4\xa3\x84\x35\x01\x7e\x78\x9a\xc6\x6a\xd2\x7d\xa5\x5b\x25\x1e\x3b\x1f\xa5\x5b\x45\xf3\x24\x1f\xa5\x95\x09\x9a\x39\xca\x64\x1a\x34\x55\x94\xb1\x05\xcd\x93\x7c\x94\xb1\x25\x5c\xa6\xb7\x92\x84\x06\xcd\x0d\x25\x09\x95\xcb\xfa\x40\x36\x06\xa2\xeb\x59\xb1\x94\x03\xd1\xf5\x7c\x96\x32\xb9\x6b\x6e\x2c\x65\x72\x67\x97\x3f\xec\xf2\x23\xa6\xfb\x0f\xb0\x7f\x94\x41\x32\x72\x6c\x77\x94\x41\x32\x42\x0e\x25\x34\x37\xe4\xaf\x96\xd0\xdc\x88\xb0\x41\x45\x6c\x8e\x08\x27\x57\xc4\xe6\x20\xae\x3b\x2b\x62\x73\x44\xcd\x04\xbc\x70\x23\x02\x74\x07\x2f\xdc\x88\x00\xdd\xc1\x0b\x37\x22\x8e\x9a\xab\xbc\x72\xc4\x75\x7b\xea\x0e\xbe\x66\xbe\xea\xbe\x8c\xf9\x8d\xbf\xbc\x81\x9d\xaf\xba\x2f\x1b\x8a\x22\x36\x47\xc4\x27\x79\x95\xd0\x2d\x12\xd9\x72\x95\x2b\x2d\xb2\x83\x5c\xe5\x4a\x8b\x38\x21\xef\x2f\xd5\x35\x54\xea\x6a\x11\x25\x88\xb4\xa2\x2e\x07\xea\x28\xf9\x6a\xba\x26\x16\xd1\x55\x6a\xdd\xc4\x54\xbf\xca\x87\x9b\x3a\xd7\x6a\x26\xa0\x40\x9e\x15\xd0\x38\x12\x06\x8b\x02\x1a\x07\x72\x28\x59\x01\x8d\x23\x81\xf3\x77\xfe\x32\x8c\x53\x95\x12\xc2\xca\x9d\x7b\x95\x10\x36\x31\x7b\xaf\x66\x51\xc2\xbb\x72\x35\x8b\xe4\xdd\x55\xb8\xe3\x48\x1a\xe7\xa5\xaa\x34\xce\xeb\x97\xda\x9b\x1e\x29\x51\x69\x62\x32\x5f\x65\x26\x4d\x00\xdd\xd5\x94\x4b\xec\xd4\x57\xf9\x43\x13\xb6\xcf\xe5\xd8\x7d\x18\x96\xe0\x65\x07\x19\xc6\xf1\x99\x04\xf1\x86\x41\x3b\x15\xb2\x38\xe4\x92\x55\x8c\xe2\x30\xc2\xab\x14\xa3\x38\x50\x2f\xcf\x12\xa6\x1b\x06\x94\xbd\x5f\xa2\x40\xe6\xe4\xfb\xa5\x6e\xc7\x0a\x7e\x4a\x42\x27\x1f\xec\xfb\x65\x18\xe7\x20\xf2\xfd\x32\x8c\x83\x03\xef\x97\x61\x9c\x91\x7c\xbf\x0c\xe3\x1c\xca\x3f\x4d\x06\xc3\x8f\xf1\x7e\xf9\xb8\xa1\x7f\xef\x5f\xf9\xb8\xa9\xea\x97\x17\x9b\x85\xff\x7e\x79\xb1\xd9\x32\x14\x94\x38\x8c\x49\xa8\xa0\xc4\x61\x4c\xc2\xa7\x8c\x51\x99\xa1\x53\x60\xe1\xc8\x9c\x1e\x3e\xa5\xe5\xcd\x78\xc0\x9e\x60\x21\xe3\x8b\x78\xb0\xc1\x81\x60\x48\x7e\x5a\xec\x19\xac\x56\x34\xe0\xc8\x90\xba\xa7\x2c\xae\x19\x56\x23\x61\xba\x91\x71\x2f\xbc\xab\x3f\x0f\x7e\xbd\x4a\xab\x0d\xde\xbe\xab\xb4\xda\x43\x7f\x56\x55\x10\xf8\x87\xb3\x65\xa0\xd4\x91\x9f\x70\x23\xb3\x81\x3e\xe1\x46\xbe\xaa\x4a\x3d\xc2\x14\x7a\xf8\x4e\x07\xaa\x17\x59\xfa\x78\x43\xee\xd0\x87\xa5\x3f\x4a\xd2\x8d\x78\x0a\x05\x34\x7b\xb8\x71\x06\x42\xd3\x9e\x17\xc4\xbf\xb2\x09\xbe\xa7\x54\x5c\xf8\xf6\x1f\xa7\x06\xa3\x68\xe8\x84\x57\x85\x93\xd6\x27\xbc\x42\x22\x23\x3f\xe1\x55\x81\xe4\x3c\x4e\x0d\x46\x71\x7e\x58\x82\xa6\x68\xf1\xf3\xb5\x12\x82\xfe\xec\xe0\x56\x82\x66\x6c\x71\x2f\x74\x09\xb0\x9a\x81\xb3\xb4\x04\x58\xcd\x40\x40\xa3\x28\x6a\x71\x10\x8f\x5d\x82\x90\x10\x99\x8b\x12\x94\xda\x12\x65\x69\x4f\x31\xe2\x5f\xf7\x3f\xb0\xfd\x22\x6d\xc0\x51\x7c\xba\x16\x89\x01\x8e\x72\x68\x92\x98\x46\xf1\x8d\xa9\x04\x31\x0d\x94\xa2\x3d\x55\xc9\xf7\x15\xa5\xe8\x12\x94\xc9\xb1\xfa\x4e\x54\x82\xd2\x35\x56\x67\x29\x25\x08\x42\xab\xbb\x28\x4b\x50\xba\x46\xf4\x31\x4a\x50\xba\xc6\x9a\xe8\xbb\xd2\x17\x56\xe3\x57\xa5\x2f\x24\x54\xbb\x04\x91\x96\x9a\xb9\x91\xe0\xb7\x66\xfa\xae\xbc\x81\xb5\xd0\x66\xe5\x0d\x44\x3d\xa3\x04\xe5\x0d\x44\x3d\xa3\x04\xb1\x94\x5a\x69\x95\x88\x47\x6d\xdc\x48\xf4\xa0\x76\x3a\xa8\x2c\xf0\x78\x86\x4b\x50\x16\xf8\xda\xb9\x91\x16\x6f\xf5\x85\x50\x82\x16\x6f\x1d\xb4\x4a\x29\xd4\xeb\xe4\x5a\xe5\x3d\xaf\x8b\xa7\x29\xb6\x80\x76\x74\x91\x80\xe1\xa8\x8b\xfb\x2a\xef\x79\xd5\xc3\x15\x0e\xd4\xc5\x53\x50\x66\x73\x7c\xce\x45\x81\xa3\x03\x9f\x73\x09\xda\x23\xea\xa5\x47\x53\x37\x7a\xfc\x79\xea\x46\x8f\x3f\x0b\xf6\xab\x9e\xef\x52\x9a\xb9\x40\xab\x88\xe8\x1b\x78\x95\x8b\xd4\x0e\x47\x33\x6a\x3e\xbf\xcc\xb3\x3c\x14\xad\xa9\x56\xa8\x4a\xd0\x8d\xa3\xb8\x44\xa5\x9a\xc5\x33\xec\x29\x61\xf8\x7a\xf9\x4a\x8f\x1a\x0b\x41\x9a\x7e\xa3\xf9\x5b\x0c\x25\x6a\xc6\x22\x64\x51\xa2\x92\xab\xe2\x55\x2e\x51\xe9\x53\x91\x92\x2e\x51\x73\xb2\xb9\x93\xc7\x13\xc6\xf8\x57\xa6\xb7\x54\xfb\x06\xb1\xd9\x25\x8a\xdf\x36\x37\x2a\x4b\x54\x4e\xc9\x1e\x68\x86\x72\x4a\xe2\x28\x2e\x51\x33\xa7\xbb\x31\x5e\xa2\xf8\x6d\x77\x1b\xb3\x44\xf1\x5b\x74\x2d\x8a\x42\x43\x47\x4f\x74\x5f\x94\xa0\x1b\x5d\xd0\x2e\x8f\x67\xb8\x48\xb5\x6f\x74\x0f\x0c\x2e\x51\xd9\xd8\xbb\x9f\x73\x15\x85\x77\x8e\xde\xb9\x91\x60\xbf\x6b\xe8\xb4\xcb\x13\x35\x5d\x14\xfc\x39\xfa\xe0\xbe\x78\xe0\x07\x41\xd4\x25\x6a\x32\xe0\xe0\xf5\x44\x35\xfe\x75\xd1\x5f\x3d\xfd\xce\x14\x55\x00\xe7\xe8\x9b\xaa\x7e\xc9\xca\x1d\xd8\x4b\xfc\x65\x18\x3f\x0c\xce\x2f\x4b\x38\xb3\x2e\x1e\x8d\x06\x30\x12\x8f\x7a\x74\x69\xf3\x51\x9b\x1f\xcd\xb8\x4a\xc7\xa9\x71\x16\xec\x0f\x06\x56\x41\x98\x83\x88\xeb\x92\x34\x91\x86\xbf\xee\x5d\x92\x18\xe0\xf0\x6d\xae\x24\x31\xc0\xe1\x4c\xac\x24\x65\x07\x26\xcf\x7b\x49\x4a\xf8\x4b\x26\xf7\x92\xf0\x62\x0d\xe2\xb1\x4b\x12\x3f\x1c\x8d\xaa\x34\xeb\x46\xa3\x19\x9a\x75\xc3\x2d\x14\xcf\x79\xe3\x5f\x41\x86\xa4\xa4\xbd\x83\xe9\x9d\xc4\x3d\x06\xcf\x28\x09\xfa\x08\xde\x2e\x49\x76\xd3\x38\xdc\x48\x84\x61\xb0\x7e\x15\xde\x39\xc6\xa1\x2a\xa1\x19\x9a\x18\x25\x09\xcd\x86\xd3\x89\x92\x78\x6d\x61\xb8\x26\xc6\x7f\x84\xfd\x24\x58\x98\x89\x6a\x35\xe5\xa6\x33\xd8\x22\xc9\xbe\x31\x8d\xaf\x9a\x18\x33\x73\x53\x3c\x96\x63\x6a\x54\xb7\xae\xad\xb4\x9f\xc8\xde\x41\x0e\x50\xcf\x8e\xe3\x5f\x99\xbd\x12\xf4\x1b\xb3\xeb\xcf\xaa\x4a\xe3\xa6\x4c\xf4\xf8\x7e\x4b\x52\x26\xfa\x39\xb9\x91\xe6\xc9\x5c\xfa\x75\xeb\x2b\x37\x12\x79\xc0\x43\x5b\x24\xca\x37\xa6\xbf\x82\x54\x92\xe0\x68\x6a\xa0\x94\x52\x1c\x97\x6c\x51\x00\xe7\x98\xc0\xa0\x69\x8e\x11\x6e\x5d\x4c\xe8\xb4\xdc\x18\x2f\xa6\x69\xb3\x9c\xfc\x17\xd3\xb4\x59\x2e\x56\x50\xec\x97\x27\xda\xcf\x25\x8b\xfd\x72\x3d\xbb\x37\xa9\xd8\x2f\x6f\x72\xe6\xcf\xda\x5e\x57\xe1\xd7\x5f\x0a\x63\x8f\xda\xf2\xdc\x39\xfe\xd5\xcf\x32\x8a\xb5\x5f\x32\x6b\x7f\x28\x26\x0c\xc1\x8f\x5a\x4c\x26\x24\xd1\xc8\x45\x81\x94\x63\xf9\x59\x7f\x91\x5e\xdc\x58\xcc\x22\x9b\xbf\x4c\xca\xfe\x14\x24\x1f\x37\xd6\xe5\xbe\xfb\x97\x3a\x99\xfe\xea\x29\x6c\xa7\x9d\x45\x11\x8c\x63\xab\xfb\xa2\x70\xdb\xf4\x55\xd9\x81\x8d\x0e\xea\x29\x6c\xa3\x55\x5a\xcb\xdb\x18\xe7\xa7\x7c\xc7\xac\x56\x7b\xbf\x64\xd6\xde\x66\x05\x25\x8e\xcd\xc6\x9d\x65\xbe\x6d\x37\xa3\x3c\x6f\x0d\x5f\x17\x5f\x75\xad\xfb\x8b\x8a\xe2\x0c\xc7\x66\x01\x2a\xce\x70\x6c\x86\x2e\xff\x92\x77\xb3\xa1\x28\xec\x70\x6c\x77\x1f\x95\xfc\x4b\xc0\x0d\xb3\xca\x5a\xcb\x08\x68\x94\xac\xb5\xbc\xa7\xaa\xd2\x7d\x99\x93\xf9\x97\xfd\xf9\xd1\x05\x6d\x28\xc7\xbd\x67\x45\xd2\x64\xe3\x44\xaa\x92\x9d\x78\xa0\x40\x59\x8e\x8b\xe3\x0c\xb6\x64\xc1\xfe\x61\x1d\x65\xbc\xb2\xe3\x74\xaa\xd2\x4a\x39\xac\x14\x05\x9b\x8d\xe3\xef\xa5\x96\x2c\x7e\x7b\x36\x1d\xd4\xc0\x1e\xc0\x59\xe1\x64\xe3\x78\xbc\x5c\x91\x90\xd7\x20\x9a\xb7\x14\xb9\x9e\x2e\xcf\xb7\xc8\xf5\x74\x69\x55\xd1\x8c\x45\xe7\xa1\x14\x11\x42\x9c\xa5\x45\x4a\x5f\x83\x34\xb5\x9e\xc7\xc5\xbf\x66\x7e\xd5\xf4\xbe\x7e\xee\xec\x69\x5d\xfc\x6b\xd1\xaf\x55\x5f\x2b\x5f\x9b\xbe\x0e\xbe\xaa\x91\x45\xd7\xea\x46\xee\x3c\x2c\x45\xa9\xb1\x49\x7c\x59\x8a\x52\x63\xdf\x46\x33\x44\x17\xf1\xbb\x96\xa2\x61\x47\x41\xa2\x48\xad\x6b\xa0\x02\x51\x8a\x88\x19\xc2\x0e\xa5\xc8\x6f\x73\xd9\xc8\x24\xb1\x35\xee\xa5\x91\x43\x19\x7e\xd9\xb9\x14\xb8\x35\x2e\xe4\xaa\xc8\x00\xbf\xa0\x8a\x42\xb3\x06\x81\xc1\xa5\x68\xf3\x7d\x81\xfb\x6a\x49\x3e\xf7\x30\x94\xa2\x25\x89\x3a\x74\x29\xeb\x97\xee\x99\xfb\x0a\x90\x1f\xd4\xba\x70\x66\x34\x5c\x14\xe2\x3f\xc2\x7e\xd9\xba\x29\xeb\x51\x62\x5c\xe3\xb1\x1e\x25\xc6\x35\x1e\xb4\xa4\x88\xd1\x3d\x96\x67\xd1\xbe\xfc\x2a\x83\x2c\x83\x0b\xd1\xe6\x52\xf1\xb2\x3e\x12\x40\x14\x49\x66\xbd\x09\x68\x54\xdc\x38\x6f\xd2\x60\xa5\xe9\x4f\x17\xb3\x48\x69\xfa\x4f\xcf\xe1\x20\x79\x53\x94\xaa\x5f\x45\x83\xa2\xf4\xef\xa2\xcd\x5d\x80\xe2\x84\x54\x48\x51\xca\x7e\x17\xf9\xf3\xaf\x85\xaf\x59\x55\x56\xfd\x99\x36\x60\x22\x25\xa2\xc7\xcb\x2f\x65\xff\x5b\xaa\x8a\xec\xb7\xbc\x0c\x5b\x14\x94\x65\xbc\x76\x5a\x14\x94\x65\x35\xe8\xd7\xad\xaa\xd4\xaa\xc3\xd7\xa1\xfb\xfa\x30\x1a\x2f\x76\x15\xa5\xec\xb7\xa1\xa1\x50\xca\xfe\x07\xf3\x97\x7a\x98\x21\x81\x55\x94\xb2\xdf\xc6\xd1\x57\x72\xe3\x4e\x75\x10\x63\xcd\x06\x73\x55\x49\xf9\x8d\x2c\xe7\x45\x49\xf9\x6d\xeb\xbe\xac\x6b\xdb\x57\x7f\x9e\x34\x72\xd2\x48\xd6\xf5\xe9\xb9\x1c\x74\x67\x4a\xd5\xda\x46\xff\xba\x28\x6d\x7f\x22\x05\x6c\x51\x6c\x59\xc6\x53\x5c\xa4\x6b\x96\x23\x74\x5f\xb9\xf9\x13\xe1\xf5\x45\xb9\xf9\x33\x7e\x9c\xa2\xdc\xfc\x09\x59\x96\xa2\xb8\xb4\xd3\xf3\x3c\xa7\xeb\x7a\xf2\x79\xf2\xda\x7d\x91\x2e\x5a\x36\x30\x58\x19\xf8\xd3\x65\xe7\x57\x06\x7e\x8f\xbc\xf7\xaf\xde\xb3\x4c\x5e\xac\xa2\x0c\xfc\x99\xdc\x41\x45\x19\xf8\x73\xcd\xaa\x4a\xb3\x18\xfc\x96\xe2\x5a\x6e\x49\x2d\x7b\xfa\xca\xaf\xc0\x4c\x6e\x8d\x6b\x81\x99\xdc\x30\xdf\x95\x81\x3f\x5d\x4c\x0d\x65\xe0\xcf\x43\xb3\x0f\x53\xc3\x03\x23\xfc\x6b\xd1\x57\x5d\x4b\x9b\xc7\xa0\xfb\x78\xd6\xf3\x18\x74\x50\x69\x8d\xc7\x52\x55\x47\x5f\xe9\xa0\x1c\x4e\x6f\xa9\xe6\xc7\x68\x96\x70\x0e\x3b\xb8\x02\xf6\x32\xaf\xf9\x14\x45\xe8\xe5\xdd\xa8\x0e\x9a\x91\xd1\x8f\x2a\xca\x59\x9f\x8f\x1e\x5d\xfd\xd5\x4e\x53\x00\x90\x40\x76\xe6\x52\x01\x90\x10\xb0\x6a\x15\x38\x97\x62\xa2\x2a\xdc\x4a\x29\x40\x8d\x24\xd1\x16\xc8\x25\x5a\x24\xd1\x16\xc2\xd5\xd7\xc4\xaf\x7e\xe0\x5e\x1a\x53\x3d\xe0\x21\x2f\x0a\x60\x0b\x78\xb9\x8b\x02\xd8\x42\x80\xb1\x48\xde\x2d\x44\x7c\x0b\x8d\x85\x10\x02\x66\x5d\x63\x21\x84\x98\xf4\xeb\xd0\xaf\x87\xaf\x93\x5f\x8f\x6e\xb4\xf4\xeb\xe6\xeb\xe6\xd7\xac\x3f\x1f\x75\x5f\xcd\xb8\xba\x36\xf1\x55\xa3\xf1\xf8\x9a\xd5\x5f\x10\xb2\x65\xf5\x97\xed\xa0\x65\xf5\x97\x4d\xb9\x65\xf5\xf7\xd1\xa3\xac\xfe\x32\x89\x1b\x4b\x24\x44\xb6\xec\x96\xd5\xdf\xa3\xaa\x9a\xbe\xd2\x66\x96\x07\xcf\xe8\xbf\x6d\x07\xa5\xfe\xff\x76\x83\x96\x7f\x23\xa1\x6a\x18\x89\x54\x78\x20\x2c\x9c\x78\x31\x02\x5a\xfe\x8d\x84\xda\x7b\xf4\x55\x2d\xd2\x48\xfc\x9a\xcf\x48\x24\x16\x5d\x63\xe1\x04\x12\xe1\x96\x56\x34\x2f\x58\xce\x8a\x28\x0c\xc1\xa3\x02\x8b\x22\x0a\xff\xfd\x6b\xd6\xb5\xdc\x97\x85\x63\x41\xad\xc2\xf7\xf3\xef\x3f\x03\x81\x21\xeb\xbe\x4a\x1e\xce\x1a\x6c\x1c\x67\x19\x67\x5f\xa5\xb1\xe8\x2c\x64\x9e\x0f\x8b\xee\xdf\x5f\x37\x5f\x35\x1a\x2c\xba\x7f\x7f\xbd\xfa\xaa\xaa\xde\xff\xf6\x95\x05\x67\x21\x33\x1a\x18\x6d\xc6\xc9\x58\x51\xe2\x71\x4f\xad\xe1\x5f\x95\xf0\x1c\xeb\x50\x89\xc7\x3d\x01\xc6\xff\x22\x15\x17\x5f\xe9\x02\x6e\x06\x0b\x5d\xd7\xaa\xbf\x43\x35\xab\xbf\x93\x46\x56\xf5\x77\xea\x5a\xf5\x77\xaa\x66\xf5\x68\xe9\xeb\xfd\xdf\xbf\xaa\x47\xac\x6c\x65\x29\xb7\x00\xa3\x54\xa8\xa6\xfd\x1e\x59\x53\x8f\x30\xe8\x95\xa5\xdc\x93\x58\xf8\x57\xf5\xe8\xd2\x8c\xa6\x1e\x5d\x5d\xab\x1e\x3d\xfd\xaa\x1e\x69\x22\x35\xf5\x08\x4a\xd5\x9a\x7a\xa4\x35\xd4\xd4\x23\xd0\x48\x49\xcb\x13\x27\xea\x45\x81\x9c\x09\x76\x56\x75\x20\x99\x87\x93\x85\x16\xfb\x7f\x9f\x66\x2d\xf6\xfc\xdf\x26\x61\x93\x87\xe6\xdf\xbf\xd6\xff\x36\x09\x5b\xec\xed\xdf\x93\xf0\x7f\x26\x5c\xff\xef\xfc\x7f\xfe\xef\xfb\xbf\xfe\x42\x08\xf1\xbf\xbe\x0b\xbf\x09\xf2\x5b\x00\xc1\x5d\x94\xdf\x47\xfa\x2f\x4f\x6d\xaf\xc2\x43\xe1\xfd\x2f\xcf\x86\xdf\x29\xe4\xba\x6f\xf8\xbf\xc2\xed\x85\x8d\x3a\x1b\x97\x3b\x45\x0c\xe1\x1b\xf4\xef\x63\x52\x27\x97\xb7\x45\xe1\xe6\x9f\x95\x42\x6e\xd4\x2e\x85\xdc\xbd\x73\xf9\x37\x0c\x7f\x29\x39\xdb\x0f\x9e\x1b\xe5\xfb\x98\x5e\xe8\x44\x22\x84\x41\x9d\xdf\x60\x7f\x85\xdc\x7d\x72\xf9\xf4\xcb\x79\xbf\x29\x84\xcf\x84\x61\x73\xf8\xbf\xfe\xde\xbb\xdc\x68\x4d\x2f\xfc\x38\xeb\x5f\xe2\xd5\x92\x10\xd6\xf5\xc2\x6f\xc3\xf8\x4b\x68\xc8\x04\x77\x30\x7e\xe8\x54\xbc\xb0\x71\xa3\x5b\x29\x7c\x5e\x58\xb9\xfc\x31\x9e\xef\xbb\x91\x25\x0d\xf2\xe3\x46\xcf\xff\x19\xf9\xa7\xa7\x2c\xf9\x3e\x0a\x85\x95\xc2\x4a\x61\xf7\x76\xfa\xf6\x14\xfc\x85\xf4\x0f\xbc\x13\x85\xc5\x0b\xbf\xc5\xf9\x17\xe2\xaa\xff\xf5\x2f\x94\x09\x71\x35\x2f\xf4\x1b\x69\xed\x85\xc4\x8d\x52\x60\xe4\x1d\x61\x43\x0a\x3e\xf2\x29\xfa\x07\x62\xfb\xc1\x13\x4f\xfc\x05\x77\x3f\xfd\x05\xf3\xc5\x19\xdc\xfb\xf4\x17\x3c\xed\xc4\x5f\x80\x06\x05\xcf\x3a\xf1\x7d\x6c\x2f\xdc\xfc\x33\x73\xa3\x6f\x77\xf9\x7b\x2f\x72\xa3\x9c\x29\xfc\x2e\x7f\xd7\xcf\x70\x83\x67\xa9\xf8\x3e\x1a\x85\x83\xc2\x4e\xe1\xa0\xf0\x51\x38\x29\x5c\x14\x1e\x0a\x37\x85\xcf\x0b\xe9\x7b\x2a\xdc\xfd\x43\xf4\x7f\x4d\xb0\x54\x12\x85\xc6\xe5\x8b\x42\x9a\x54\xd4\xa4\x46\x21\x77\x2f\xba\x3b\x3d\x2a\xdc\x9d\x25\xc3\x7b\x04\xbe\x93\x7c\x85\x3d\x50\xc8\x8d\x3a\x37\x62\x46\x66\xa3\x70\xd1\xce\xfb\xfd\xd3\x38\x25\x0f\xe9\xf2\x4f\x26\x03\x89\x4d\x83\xf1\x8c\xec\xe3\xeb\x7f\xa9\xb8\x19\x1e\x2c\xf9\xe3\x70\xed\xfe\x6f\xc1\x7a\x37\x73\xa6\x2d\xde\xdb\xce\xeb\x8a\x61\x05\x9f\xf3\x2b\x7c\x1d\xab\x9c\x8e\x85\x13\x7d\xc9\x78\x1e\xbe\xbf\x9e\xdc\xb8\x8b\xee\xde\xff\x3e\xbe\x5a\x7a\x76\x10\x89\x71\x7f\x95\xc5\xf8\x19\xf6\x7f\x3d\x3a\x48\xc5\x34\xbe\x6f\x31\x8d\xaf\xb9\x25\xf9\xe3\x88\x9e\x06\xe2\xfb\xf8\xaa\xee\xcb\xbd\x61\xd1\xe2\xa2\x70\x7b\xa1\x9b\x2d\xd1\x7c\x2e\x45\x8b\x7e\xa3\xe5\x87\xb9\xd1\x1d\x56\xdf\x47\xf1\xc2\xa3\xc2\x46\x61\xa7\xb0\x53\x38\x29\x5c\x14\x72\x77\x1f\x9e\xc8\xb8\xf4\x75\xf9\xa7\x4f\xcc\xe8\x49\x26\xfe\x3a\xef\xad\x47\x7f\x79\xf9\xfb\xf8\x2e\xe8\xf8\x8b\xa2\x19\x4d\xf2\x69\xda\x77\xa4\x9d\x99\xcb\x7d\x2a\xf6\x1d\xb9\x3c\x73\x77\x9f\x75\x7d\xbb\xb0\x52\xb4\x4c\x9d\x99\x3a\xdd\xed\x10\x2d\xab\x4e\xef\xe6\x36\x7a\xe4\x0f\x27\x7a\xde\x88\xaf\xb0\x78\x21\x23\x6f\x3e\xf2\x25\x39\x9a\xc7\xcf\x8c\xf8\x0a\x3f\x83\xfc\xaf\x34\xd5\xf9\xaa\x17\x3e\x6f\x12\x49\x43\xa2\xbf\xfa\xfa\x7d\x7c\x8f\xa3\xa3\x81\x16\x5d\xab\xff\xfb\xf0\xa1\x23\xff\x75\xcc\x1f\x7d\xfd\x3e\xcc\x0b\x3d\xf2\x21\x66\x1f\x9e\xe8\x9a\xfb\x7f\x9d\xe4\xd1\xd1\x9d\x42\xdf\x87\x77\x93\xb3\xdd\x98\x2b\x75\x56\xaf\x33\xfb\x66\x1f\xf3\xe5\x9f\x77\xf9\x04\x73\xf6\x1f\x8b\x4f\xb7\x58\x1c\xb3\x4a\xf6\x77\x00\x63\x89\xfe\x88\x4b\xcc\x5e\xe8\x47\x4e\xb1\x24\x1f\x90\xf2\x99\xd2\x7f\x05\x71\xad\x58\xfc\x81\x47\x7f\x97\xef\x2b\x1c\x14\x2e\x0a\xb7\x17\x4e\x0a\xbd\xd5\xd1\xdd\x43\x7f\x85\xd7\x4c\x62\x71\x9c\x88\xc5\x9f\x51\x41\x84\x2a\x96\xe2\xe3\x59\x8a\x8f\x67\xf1\x60\xbf\xe8\xaf\xe9\x7d\x1f\xde\xce\xe2\xa1\xf8\xb1\xf8\x1e\x17\x8b\xef\x71\xa5\x3c\xea\xf4\x3d\x2e\x16\xdf\xe3\x4a\x71\xd3\x3e\xba\x1f\xe6\xfb\xf0\x7f\xd6\xc6\xe5\x93\x6e\xfa\x2e\x53\x00\x96\x58\x96\x3f\x23\xf7\x98\xfc\x95\xed\xe7\xce\xd1\x5f\x4f\xfb\x3e\xbe\x46\x94\x13\xb8\xd1\xf3\x67\xe4\xaf\x81\xfd\xb5\xc4\x78\xd6\xe0\x85\x35\x50\xe8\xc4\x22\x56\xd6\x91\xfb\x17\xfe\x06\xb2\xd8\xd1\xcd\xfc\xef\xe3\x78\xa1\xef\x5c\xd1\xad\xfb\xbf\xe8\x66\xfc\x57\xe8\x83\x5c\x99\xb4\x6e\x5c\xfe\xd5\xe0\x10\x14\x2b\xa3\xe4\xd6\xdb\x5f\xe5\xdd\xdb\x58\xbb\x8f\x67\xed\xdf\x93\x1e\xfe\x6e\x8b\xf3\x09\xe8\xc3\xff\x40\x28\x62\x65\x60\xaa\x0f\xcc\xa8\x81\x1b\x02\x1b\x75\x64\x0a\xe9\xc4\x68\x14\x0e\x2f\x8c\xb4\xc2\xf7\xf2\x58\x1d\x32\x47\xf5\xd7\x47\x62\xf5\x8d\x3a\x56\xdf\xa8\xeb\xae\x34\x8d\x71\xf5\x37\xa7\xfe\x2a\x7a\x0c\xb1\x1e\x9f\xd1\xf5\x7c\x55\xd7\xa3\xee\x32\xae\xd5\xc7\xb5\xf2\xee\x7e\x6c\xc1\x7b\xd6\x7c\x1b\xad\xcf\x1d\xde\xd1\xed\x82\xbf\xe8\xf6\xc0\xdf\x08\xac\x51\x67\xf8\xdf\x47\xf1\x42\x27\xd8\xd1\x89\xdf\xf7\xe1\xf3\x14\xf9\xf0\xd8\xba\xcf\xa9\xd6\x7d\x4e\x4d\xc6\xb5\x39\x93\x88\xcd\x61\x7f\x4c\x37\x6a\x63\x03\x5c\x9b\x83\xeb\x98\x4e\x08\x63\xdb\x95\xc2\xe6\x85\x7e\x44\x16\xdb\x9e\x14\x72\xb9\x5b\xdc\xb1\xed\x43\xe1\xa5\xf0\x51\x48\xe3\x8f\x37\x9e\x08\xf4\xd8\x7c\x24\x62\x3b\x5f\x73\xdb\xf5\x9d\x21\xb6\xb3\x29\xbc\x5e\xb8\xb9\xfb\xa5\x49\x37\x52\xc8\x8d\x2e\x4d\xba\xcd\x0b\xaf\xfe\x49\x93\x7c\xdd\xb7\xeb\xa4\x3a\xb6\x4b\x9d\xf7\x78\xe1\x63\x94\x1e\x75\x3e\xea\x64\xf2\x36\x7f\x0e\xb1\xbd\x6f\xb0\x1a\x74\x26\x36\xe0\xad\x39\xbc\xb5\x17\x18\xa5\xc7\x20\x3b\x6f\x6a\x2f\xd0\xa4\xc7\x78\xbe\xed\x85\xa0\x78\x67\x95\x74\xa7\x48\x0d\xf5\xd9\xd8\x79\xc4\x3d\xf0\x4f\x00\xbb\x3b\xc7\x89\xdd\x91\xb3\x3d\x3f\x50\x8a\xfe\x6e\xd3\xf7\xf1\x3d\xe9\x96\x79\x1c\xdd\xa9\x47\xec\x0e\x29\x2d\x33\x74\x1d\x68\xef\xcc\x10\x54\xb2\xa2\xbf\x84\xf4\x7d\xf8\xac\xeb\xe0\x7d\x67\x86\x74\x9f\x21\xb5\x57\xea\x1c\xb4\x73\xf8\x54\x1c\x6c\x2c\x9d\xe9\xdd\x99\xde\x03\x70\xed\xcb\x9f\xa6\x6b\x6b\xff\x55\xde\x9f\x88\x9d\xe9\xdd\x99\xde\xab\xd3\xcd\x33\x29\x74\x18\x5e\x4c\x9b\x7e\xe8\xa6\x3f\xe2\xba\x40\xdc\x7e\xe9\xa6\x33\xd6\x8e\x02\x6e\xec\x3c\xe2\xee\x8f\xb8\x3f\x20\xb3\xf3\x88\xbb\x3f\xe2\x8e\x1a\x6e\xf4\x77\x8f\xbe\x0f\xdf\xd6\x9e\xee\xce\xd3\xec\x8f\x3a\xdd\xd7\x14\xfd\xc5\xa3\xef\xe3\x1b\xf9\x5a\x98\x21\x03\x68\x1f\x0e\xed\xb5\x7a\x80\x79\x1c\x80\xd6\x70\xd0\xea\x87\xa1\x1b\x6c\x56\x83\xcd\x0a\x15\x93\x38\x2c\x53\x58\x28\xec\x14\x2e\x0a\xfd\x72\x24\xa3\xe2\x60\x4b\x1f\x4e\x39\xfb\xd8\xdc\xdd\xf7\xf2\xe8\x2f\x0d\xfd\xb5\xd4\x28\x2c\xfc\xd3\xed\x9d\xba\x23\x75\x36\x1a\xef\x66\x48\xc7\x2a\x8c\x2e\x2f\xfd\x7d\xf8\x80\xc4\x40\x37\x01\xab\x31\x28\xf4\xa3\x80\x38\x86\x3f\xb8\x31\x9d\x50\x44\xf7\xc5\xc5\xb1\xb8\xfb\x72\xac\xeb\x2e\x74\x1a\x07\xc8\x30\x40\x06\xb2\x28\xc4\xc1\x42\x18\xbe\x10\x6a\x52\x37\x1f\xa3\xf4\x7c\x71\x0d\xb6\xf4\x99\xfc\x9f\xd3\x99\x52\xeb\xcc\x90\xc9\x56\x39\x7d\x58\x5b\x77\x83\x2c\x4e\x28\xd2\x4c\xcf\x0b\x9d\x59\xc7\xe9\x1b\x67\x9c\xe6\xd3\xbb\xbb\x9f\x34\xba\x3a\xf2\xf7\xe1\x10\x74\x1f\x37\x62\x67\x98\xbe\x33\xb4\xc6\xda\x9c\xec\x9f\xd3\xf7\xcf\xd6\xfc\x90\x24\x4e\x37\xf2\xe2\x6c\xbe\x8e\x1a\xb8\x34\xe1\x38\x73\xf8\x92\xc9\xee\x19\x88\x73\xf0\x4f\x76\x84\xdc\x69\xe7\xa0\xce\x51\x29\xe4\x72\x06\x79\xba\x3d\x37\xc4\x1d\xfc\xd5\x99\xef\xc3\x01\x30\xbb\x51\x12\x27\xdb\xaf\xbf\x0b\xf3\x15\x72\xf9\x6c\x14\xfa\x86\x42\x72\xa7\x38\x61\x58\xd3\x19\xd6\xc8\x8b\xbb\x2f\x07\xab\xb9\xb8\xbb\x1f\x54\xc6\xc9\x83\x9b\x3c\xb8\x7c\xe8\xe6\xa2\x49\x3c\xb8\x7c\xe8\x11\x90\x3e\x77\xa2\xf0\x52\x98\x29\xf4\xbd\x83\xd7\x6a\xe3\x04\xe7\x27\x38\x9f\x99\x60\xfe\x82\xcb\xf7\x41\x9d\x57\x97\xd3\x4d\x47\xf6\x41\x1e\xa7\xe8\x7a\xcf\xdf\x87\x51\x48\xe3\xc1\xf9\xe9\x38\x3f\x4a\xa0\x9b\x67\x50\xc8\xee\x1d\x78\xee\x87\x1b\x39\x40\x8c\xc2\x4c\x9e\x87\x67\xe4\x66\xc8\xe0\x8d\xde\x38\x2f\x8f\xc3\x91\x61\x94\xc8\x3f\x2f\x75\x5e\xea\x04\x54\xe7\xa5\x9d\x0e\x10\xa3\x78\xc4\x4d\x9c\x80\xff\x7c\xd4\x69\x34\xe9\x31\x20\x0e\x17\xa3\xd8\xfd\x47\x42\x31\xd9\x04\xe6\xe3\x86\x99\x21\x7c\xdc\xf0\x71\x43\x3f\x51\x88\xae\x6d\xfd\x7d\xf8\xa6\x5a\xd8\xe7\x17\x3b\x83\x2b\x5b\x7f\x85\x95\xc2\x46\x21\xa3\x55\x74\xf9\xa4\xd0\x67\x4a\x71\xd7\x60\x5c\x0e\x61\x71\x39\x73\x1d\xc5\xbd\x09\x71\xc5\x4a\x21\x97\x83\xa3\x0b\x3e\xba\x1c\x91\xc6\xf5\xf3\xf5\xb8\x1c\x83\xe2\xca\x3e\x06\xd8\xb4\x71\xf9\x36\x13\x97\x1b\x19\x03\x4b\x35\x2e\xf0\x69\xb9\x91\x31\x2e\x7c\x64\x39\x8f\x8d\xcb\xf9\xda\xb8\xee\xf9\x8b\xab\x50\xa7\x9b\xaf\xe3\x7a\x50\x4e\x5c\x2c\xdc\x55\xf8\x67\xe5\x72\x58\xfb\x72\xd6\xde\x0a\xfc\x7e\xb1\x9e\xfc\x55\x9e\xbf\x36\xe1\x79\xeb\x50\xa7\xcf\xa9\x1e\x3c\x0c\x28\xae\x4b\x3b\x7d\x1a\x8c\xce\x1a\xfd\x0c\x2c\x2f\x04\xc9\x58\x8e\x8b\xed\x62\xf9\x76\x31\xc8\x34\x13\x17\x8c\x60\xf9\xdc\x18\x7d\xd2\x4d\xf6\x90\xe5\x7b\xc8\xe8\xee\xcd\x8a\x9e\xf5\xff\xfb\xf0\x8d\xa5\xc2\x1d\x5c\xe7\xfa\x2f\xba\xbe\xf5\x5f\x27\x59\x51\xdc\x8e\xd4\x71\x57\x76\x6f\x26\x83\xbf\xc7\xf2\x7d\x38\x10\xf2\xb2\x59\xdc\x70\xb1\xed\x5c\xac\xc9\x28\x75\x69\xe9\xef\x83\x7f\x5e\xee\x3e\x29\x9c\x58\x56\xf0\x91\xed\x78\x11\xb7\x23\x44\x4f\x10\x8a\xbd\x7c\x40\xf6\xf2\x2d\x28\x19\x37\xf2\x65\x1c\x5d\x5b\xfa\xaf\x3d\x50\x67\xb3\x46\x3d\x09\xff\x5f\xdb\x00\xcc\x66\xf7\x76\x9d\xe9\xbf\xc6\x19\x61\x74\xb9\xe7\xef\xc3\x87\x2e\x32\x93\x0f\x93\xd6\xdf\x41\xf9\x1b\x91\xbe\x1f\xa6\xa2\xa7\xdf\xff\x1b\x11\x7e\xe7\x6f\x8f\xfc\xc5\xe3\x74\x66\x90\xd1\x33\x1e\x37\xa9\xa2\xbf\x1d\xf2\xd7\x8f\xfb\xe8\xe3\x71\xfb\x3a\xfa\x4b\x21\x7f\xfd\xb0\x2b\x1e\x2c\xea\x83\x45\x7d\x20\xd1\x9e\x1d\xff\xfb\xf0\xfd\x53\xf3\xf3\x64\x9a\xe4\x4c\xa9\x5f\x58\xf0\xc1\x34\xf2\xb7\x16\xfe\x06\xb2\xf8\xf1\xb0\x7f\x9e\x06\x85\xa7\xef\xae\xe3\xfc\x7d\xf8\x82\xdd\xfa\x27\x6c\xe8\xb0\x09\x6c\x2c\x96\xc3\x26\x70\xd8\x04\xb6\x7b\x8e\xe3\xc1\x56\x38\xa3\x53\x38\x29\x1c\x14\x52\x27\xb3\xee\xb0\xfd\xba\x50\xf4\xdf\xd8\x4c\xb0\x33\xa9\x73\x52\xa7\x46\x89\x9d\xe1\x4c\x2e\x5f\xdc\x7d\x72\xb9\x5b\x15\x83\x34\x24\xf1\x2c\xa3\x90\xcb\x37\x4d\x62\x67\x38\xeb\x50\xa8\x7f\xfa\x4c\x3e\xbe\x17\x8c\x8d\x4d\x7b\x36\x8f\x63\xd3\xa4\xc3\x20\xb3\x33\x1c\x76\x86\x7d\x18\x25\xc8\xbe\xbf\xeb\xf0\x37\xda\x60\x90\xa1\x72\xe7\x40\xf6\x21\xe6\xe7\xd1\x77\x50\xf1\x62\xd3\x1e\x50\xf1\x80\x8a\x17\x22\x79\x31\xc8\xaf\x1b\xe4\xe3\x42\xbb\x6e\xa4\x30\xfa\xdd\x9f\x7b\xd0\x52\xf2\x3a\x93\x07\x1f\xfd\xf5\xe9\x77\x4f\xe6\xe3\x99\x3c\xfd\xe3\xdf\xe8\xe4\x7a\x37\xa7\xaa\xc9\xd8\x54\x87\x93\x94\xe4\x29\x03\xbf\x0f\xcc\x17\x3f\xc4\x48\xd9\x2d\xd5\xe4\xf1\x2f\x7f\xed\x38\x77\x48\xd9\x77\xef\x94\xfd\xc1\x75\xb4\xc6\x92\x0b\x21\x7d\x1f\x82\x0b\x0a\x9d\x5d\xa6\xcc\x76\xc1\x39\x56\x72\x91\xa0\xef\xc3\x9f\x51\xf2\xa0\xf0\xe4\xd1\x1b\xdf\x07\xdb\x2f\xf9\xdd\x3d\x3d\xdb\x5f\x2a\xb0\x75\xe3\xee\xc5\xe1\x30\x79\x82\xb5\xbf\x61\x87\xcb\x27\xff\x74\x0e\xd0\x6a\xe6\x72\x5f\xef\xc9\x65\x69\xfe\x1a\xfa\x0b\xc9\xb5\x63\xbe\x0f\xef\x66\xf7\x23\xf6\xe4\xe7\xd3\xdf\x87\xc3\xaf\x32\xe2\x63\xaf\x26\x2c\xd4\x14\x49\x1b\xef\xd2\x1e\xdf\x07\xee\xc6\xcd\x3f\x9d\x49\xa4\xba\xf0\x05\x93\xb9\xdf\x33\x57\x7d\x1f\x05\x47\xb6\x0a\x9b\x17\x3a\xe0\x26\xb2\x24\x26\x97\xed\xf8\x4b\x95\xe7\x47\x30\x77\xaa\xfe\x18\x53\x75\xea\x98\x90\xd8\x4e\x2e\xe1\xf1\x7d\x5c\x3a\xe6\x7d\xf7\x44\x56\xdf\x87\xb7\xb3\x90\xdd\xbf\xf9\x7c\x49\xcd\x77\x4a\x0b\xbe\xf9\xa7\xe6\x1b\x66\x6a\xd1\x7d\x97\x38\x1f\x53\xf3\xe7\x90\x9a\xfb\x78\xcc\xfc\x98\x28\x35\x9f\x60\xc9\x45\x41\xfe\xcc\x06\x37\x72\xaf\x63\x6a\xee\x1a\x34\xb2\x9f\xa6\x96\xf8\xa7\xc3\x93\x05\x37\x70\x53\x4b\xdc\x3d\x71\xf7\xc7\xdd\xdd\x72\x48\x2e\x25\xf2\xfd\x53\x85\xde\x77\x3f\x80\xfd\x7b\x37\x8f\x7f\x22\x14\xc9\x0f\x67\xbf\x0f\x77\xa7\x5f\x97\x95\x48\x7e\xea\xfa\x97\xfc\xe4\xf2\x2b\xf4\x64\xfa\x7e\x70\xf9\x7d\x4c\x2f\x74\xbf\x43\xf2\x83\xc6\xbf\xe4\x47\x79\x7f\xe9\xb9\x28\x50\xf2\xa3\xbb\xef\xe3\x6b\x4c\x26\x19\x7d\xf2\x53\xb7\xbf\xe4\xc7\x6b\x7f\xf9\xba\xb1\x97\xfc\xc0\xec\xfb\xa8\x5e\x98\x18\xad\x4a\x9d\xee\x77\xca\xc4\x23\x25\x3f\x88\xfa\x3e\xf8\xa7\xef\xf3\xc9\xcf\x9f\xbe\x8f\xe9\x85\x1e\xeb\x92\x5a\x63\x0c\xfc\x18\x25\x5f\x77\x07\xa5\xe6\xf6\x4b\x6a\xee\x83\xce\x97\xac\xfd\x8d\xf3\x93\xe6\x4e\x9a\x4c\x00\x52\x6a\x0e\xca\xa9\x39\x41\xcf\xb7\xd1\x4e\x77\xd9\xa4\xe6\x3c\x3d\x5f\xb2\xfc\xb7\xc1\xdd\x1d\x86\xfd\xdd\x20\x2f\xe4\xa9\x0e\xfa\xae\x47\x3d\xa8\x73\x52\xe7\xa4\xce\xc9\x4c\x71\x34\xce\x77\x71\xf9\xe4\x51\x4f\xea\xd4\x94\x9c\xf4\x68\xd2\xa3\xad\xcb\xa9\x73\x51\xe7\xa1\x47\xac\xa7\xe6\xeb\x29\x13\xf8\x94\xda\xa2\xce\x45\x9d\x97\x99\xc2\x91\x4e\x5b\xf4\xfd\xf1\x34\x37\xdd\xf4\x65\x95\x5f\x60\x3c\x37\xd3\x7c\x0f\x0a\x99\x92\x9b\x6e\xba\xcf\x25\x93\x25\x3f\xe1\x73\x49\xf8\x5c\xf2\x8b\x34\xfe\xd0\xa4\xe3\x4d\x22\x45\x7e\x6a\x87\xa7\x79\xb8\x51\xd2\x3f\xe9\x91\xd3\xee\xfc\x8c\xc9\x70\xb9\xfc\x72\x79\xe6\x19\x71\xca\x84\xeb\x25\x93\x1c\x3f\xb5\xab\xcb\x9f\x17\x56\xd6\xd3\x63\x90\x1d\x39\xf3\xd3\x73\x7f\x3c\x77\xc7\xd1\xfc\x40\x32\x7c\x2e\x09\x9f\x4b\xc6\x1d\x90\x70\xb6\x24\xdc\x2b\xf9\x35\x6e\x04\x5e\x78\xca\xb7\xbf\xcc\x4b\xaf\xc9\x53\xbc\x7d\x1f\x3e\xc8\xbc\xeb\x9a\xba\x93\xe8\x84\xcf\x25\x3f\xf7\x76\xa6\xee\xfc\x2e\xf5\xc0\xe5\xbe\x51\xa7\xee\x20\x92\x70\xc4\xe4\xe7\xf4\x30\x75\xdf\x90\x52\x8f\x8c\xfc\xe2\x46\xc0\x46\x4f\x8c\x12\xd3\xa6\xbb\xef\x33\xb9\xc0\xcd\x5f\x46\x74\x31\xb9\xbe\xcd\xf7\x41\x93\xb6\xfe\x39\x28\x5c\x14\x2e\x0a\x7d\xc5\x75\xe3\xc1\xb1\xb1\x74\x07\x91\xd4\x8d\x51\x72\x6b\x2d\x79\x82\xb9\xef\x83\x3a\x2f\x97\x83\xf7\xdd\x98\x0c\x8f\x7f\x66\x7a\x94\x69\xe7\xe3\x9f\x99\x3a\xdd\xef\x50\x42\xa0\x9b\x99\x26\x39\xb0\xf8\x8b\x35\x5e\xe8\x73\xa9\x3b\xbd\x2f\xc1\xfd\xa1\xc9\xb5\x71\xbe\x8f\x4c\xe1\xa1\xb0\x52\x48\x9d\x89\xc6\x17\x46\xa9\xf2\x4f\x77\x6c\xa5\x5e\x69\x7c\xe5\x46\xa6\x42\x1a\xef\xce\xee\x12\x98\x60\x9d\x73\x5d\x17\xdf\xf9\x0a\x7d\xda\x74\x3f\xc9\x4d\xae\xb9\xf3\x57\xc8\x28\x94\xf0\x76\x25\x1c\x5b\x85\x00\xab\xd4\x81\xa0\xee\x68\x53\x78\x21\x37\x79\x32\xbb\xef\x83\x76\xb2\x83\xf5\x4e\xdf\x39\xf2\x08\x4c\xc5\x3e\x18\x3a\xce\x95\x70\x3e\x27\xbc\x64\xa9\x0f\x7a\xe4\x9e\x94\xe4\xa2\x3d\xdf\x07\x75\xb2\xd7\xf5\x41\x9d\x83\x6e\x76\x6e\x34\x68\x92\x23\x51\xe1\xe5\xdc\xd4\xa1\x33\xdd\x41\xa7\x10\xd3\x90\x70\xc0\xa5\x3e\x69\xd2\xa0\xef\x6c\xdb\xdd\xf1\xa5\x84\xa9\x42\x9e\xa6\x73\x3f\x7f\x5b\xc5\x0b\xb9\xfb\xe2\xee\x8b\xc6\x83\x36\xae\x13\xf4\x15\xd2\x78\xc7\x9e\x84\x6f\xaf\x84\xc5\xe3\xd8\xf4\x7d\xf3\xdc\xfd\xd8\x34\xf5\xcd\xdd\x37\x7d\xd7\x4c\x86\x0a\xf4\xcd\xc8\xc3\x1d\xfa\xe6\x46\x9b\xa7\xa9\x99\xbc\x79\x9a\x8e\x4b\x25\x1c\x26\x18\xc7\xd7\xfd\xd0\xa3\xc3\xfc\x3c\xf4\xe8\x50\xe7\xa1\x49\x87\xb9\x74\x68\xfc\x65\xe8\x0e\x8d\xbf\xd4\x79\xf9\xe7\xa5\x9d\x97\x76\x3e\xda\x79\x99\x21\x97\x3a\x1f\x7d\x07\xac\xba\xfb\x82\x4b\x0c\x14\x82\x4b\x78\x0f\x4b\x8c\x5c\x0e\x2e\x75\x37\x89\x0a\x7a\x95\xa9\xc3\x5c\x3c\x15\xdf\x5f\x21\x82\x2b\x0d\x98\xcb\x70\x8a\x5b\xa2\x9b\xad\x69\x70\x78\x3e\x02\x97\x7b\x54\x55\xc2\x15\x99\x46\xe0\x72\x37\xdd\xd2\x00\x82\x46\xa4\x49\x1e\x74\x9a\x06\x74\xc6\xf3\xf6\x7d\x85\xe7\x1f\x09\xc5\x70\x3f\x40\x1a\x0e\x53\x05\x13\x2e\xb9\xba\xd2\xf7\xe1\xb3\x2f\xba\x30\x49\x1a\x89\x1b\x26\xda\xcb\x2a\x19\x80\x96\x6b\x28\xf1\x56\x8f\x17\x36\x0a\x3b\x85\x95\xc2\x43\x21\x75\x36\x6e\xe4\x76\x72\x72\x55\xa5\xbf\x12\xd9\xa8\x5d\x54\xe9\xfb\x48\x14\x72\xb9\xfb\x53\x13\x8e\xd4\xc2\x1b\xcc\x09\x7f\x6a\x1a\x1c\xa3\x45\x16\xc4\x80\x0d\x79\xd2\xc0\xbf\x42\x86\xab\x84\x93\x35\x0d\x63\x08\xa1\x5f\x23\x33\x5a\x99\xc6\x4f\x6e\x04\x6f\xc2\xd7\x5a\x30\x4a\xd3\x70\xb0\x4b\xc3\xe9\x53\x89\xac\x92\x91\xa9\x33\xd3\xa3\xc5\xdd\x01\xc2\x01\x10\x46\x8f\x19\x4f\x03\xbe\x35\x0a\x77\x67\x9a\x8f\x4a\x37\x2b\xdd\x3c\x5c\x5e\xe9\x26\x40\x18\xaf\xfe\x49\x37\x01\xc2\x78\x99\x29\xc0\x9b\xa7\x1d\xfc\x2b\x09\xd6\x36\xdc\x98\x4d\x03\xcc\x43\xa7\x33\x0d\x30\x6f\x38\xfb\x2a\xbc\x66\x9d\x46\xe3\xb9\x3b\x17\x2b\x68\x76\xa6\xd1\x78\xee\xce\xbe\x4a\xc2\xb6\x19\x1e\xcb\x92\x3c\x83\xe1\x5f\xc1\x9b\x90\x46\xe7\xee\x0e\x92\xfe\x3e\x8f\x17\xd2\x4d\x20\x33\x99\xfe\xc9\xe3\xe8\xdc\xc8\x68\x67\x67\xe8\x38\x81\x4c\x59\x97\x33\x74\x83\x1b\x61\x98\x0d\xa8\xdc\xd0\xa1\xbd\xe6\x27\xe0\x3a\x00\xd7\x54\x18\xa5\x41\x37\x1d\x4e\x4b\xd2\xa4\x05\x47\x87\x3b\x60\xfd\xfd\x1f\x2f\xe4\xee\x83\x83\x6b\x78\xe8\x80\xdf\x0d\xce\x3f\x53\x65\xe8\x26\x23\x0f\xe2\x26\xac\xa0\x01\xe2\x8e\x49\xe3\x1b\xd3\x66\xd1\x4e\x10\x97\x17\xd0\xd3\x58\x5c\xbe\xb8\x5c\xf3\x73\x71\xf9\xe2\xf2\xc1\x3f\xc1\xd1\xb1\xb9\x7c\xaa\x90\xa7\xb9\xb9\x1c\xc0\x1e\x18\x51\x03\x74\x4c\x8b\x7f\xc2\xda\xc6\xe1\xb9\x6f\x15\x72\x23\xf7\x99\x96\xe4\x2e\x9b\x34\x00\x42\xd7\xf2\xfa\x2b\xe9\xf0\xdc\x01\x42\x4f\xf8\xf8\x57\xd2\xa5\x9b\xb0\x36\xcf\xe4\xf8\x15\xf2\x8c\x1e\xed\x7c\x3c\x8e\xc7\xd0\x61\xe8\x7a\x56\xc7\xaf\x90\x01\x79\x5c\xfe\x98\x75\x10\x0a\xcf\xf4\xf8\x7d\x78\x93\x0c\x42\xc1\xc9\x40\x1a\xa0\xa3\xb9\xa7\x37\x4d\x0c\xba\xe9\x78\x58\x78\xa3\x3d\x4d\x58\xdb\x74\xd6\x56\xcc\x23\x52\x93\x27\x75\xfc\x3e\x26\x85\x97\xc2\x4d\xa1\xcf\x64\xf3\xa8\x90\x34\xa1\x72\xd3\x91\xb3\xf0\x1e\x7c\x9a\x18\xe4\xd3\x91\xb3\x18\x88\x3b\xb1\x00\x27\xa8\x88\x88\x69\x9a\x6e\xfa\xa5\xe9\xe0\x58\xcc\x03\xf9\xd3\x04\x15\x67\xe2\xf2\xcc\xe5\x98\x85\x2e\x4d\xf6\x57\xcc\x35\xea\x12\xa7\x1b\x89\xd3\x8d\x62\x58\xfe\x2e\x57\xf6\x7d\xf8\xc8\x5b\xe3\x72\xa8\xdc\x34\x2e\x87\xb1\x4e\xa8\x1c\x27\x1f\xc5\x3a\x8d\x77\x90\x4b\x33\xd3\x23\x26\xd8\xc4\x9b\x30\x33\x4d\xc2\xd0\x99\xee\xfb\x4a\xd3\x19\x5d\x31\x2c\xd5\x09\x95\x9b\x44\x1c\x90\x96\x2d\x4d\x6c\xc4\x09\xac\xf1\x22\x7e\x9a\x85\x3a\xa1\x72\xb6\xb8\xbb\x9f\x2a\x27\x0e\x5c\x8a\x41\x13\x26\xd6\x24\xe7\x2e\xc5\x98\x8a\x1c\xbf\xa4\x09\x00\x92\xd2\x2d\xb9\xce\xd9\xf7\xe1\x50\x69\xa0\xe2\xac\xf4\x9d\xd0\x06\x39\x38\x26\xa4\x6f\x42\xfa\xec\x71\x79\xa3\x47\x60\x5d\x8e\x0c\x32\xb0\x36\xe1\x77\x59\xcf\x1d\x6b\xd2\x73\x5c\xfe\x15\x42\x99\xd2\xec\x4c\x30\x10\x2c\x67\x26\x18\x26\xe6\xec\xd4\x09\xbb\x74\x99\xb4\xef\x63\x51\x48\x93\xb0\x3b\x27\xb8\x44\x86\xb7\xc4\xe1\x4f\xe2\x80\xa7\xe4\xca\x4c\x86\xb5\xb9\x42\xda\x5f\x41\x33\x35\xb9\x40\xda\xf7\xc1\xe5\xec\x86\x13\x6b\x72\x4e\x1a\xaf\x47\x3c\x69\x3c\x68\x93\x07\x85\x8b\xa1\x5b\x8a\x49\xe1\x72\xa8\x9c\xab\x9c\xfd\x95\xec\x2f\x3d\x24\xce\x79\x92\x8b\x9b\x7d\x85\xdc\x1d\xc3\x91\xe3\x9e\x92\xe1\x62\x1c\xe9\xa4\x09\x41\xcb\x6c\x3d\x13\xc3\x91\x03\x9e\x92\x3f\x03\xe2\x1f\x08\x05\x87\x40\x69\x6e\xda\x0b\xd3\xe2\x10\x28\xcd\x43\x7b\x31\x39\x38\xef\x49\x1c\xf4\xf8\x9b\x53\x5e\xc8\xe5\x10\xb5\x12\x68\xda\xa5\xbd\x0e\x53\x85\x13\x9e\x34\x31\x35\xe7\x25\x86\x06\x93\x83\x13\x9e\x34\xdd\x7d\x5f\x90\x33\x48\x1c\xed\xa4\x09\x92\x15\x36\x2b\x4e\x78\xd2\x84\xd2\x15\x0c\x5d\x8e\x76\xd2\x04\xb4\xc8\x30\x97\x38\xc4\x49\x13\xd0\x2a\x30\x2d\xce\x6b\x12\xe7\x35\x05\x29\xd8\xc4\x79\x4d\xe2\xbc\xa6\xa0\x71\x90\x16\xce\x28\x8e\x6d\xfc\xfd\x29\x2f\x1c\x14\x12\xd6\x53\x74\xb9\x8f\xd2\x02\x9f\x0a\x9b\xd5\x02\x9f\x16\xf8\x54\xd8\xac\x3c\xb9\xe9\xf7\x91\x29\xa4\x49\xf8\x30\x57\xa4\x9d\x55\x97\x6f\x0a\xb9\x11\xb3\x6f\x01\x5a\x8b\xe8\xa5\xe2\x0e\xed\xb4\x12\x8d\x87\xdf\x15\x3f\x31\x49\x0b\x5f\xd6\x4a\x34\x1e\x3b\x79\x39\xb1\x4b\xae\x45\xc7\x6b\x5c\x5e\xb8\x28\x64\xe4\xb1\x43\x5c\x72\xee\x2f\x2d\x58\x5b\x71\x69\xec\xb4\x60\x6d\xcb\x88\x5e\x9a\x34\x1e\xd6\xb6\x60\x6d\x05\xd4\x59\x18\xa5\x9c\x39\x95\xb2\x54\x48\x93\x32\x4d\x62\xf2\x7a\xd6\xd5\xef\x83\xb9\xb4\xf5\x4f\x9a\x94\xe9\x3b\x86\x04\x47\x4f\x69\x81\x64\x05\xf7\xca\x02\xc9\x38\x88\x2a\x05\xbf\xd8\x2a\xd4\x09\x92\x15\x7c\x2e\xab\xd0\x23\x40\xab\x32\x69\x17\xac\x6d\xc1\xda\x08\x11\x4a\x0b\xd6\xc6\x01\x56\xa9\x91\x3a\x9d\xc3\xa5\xe5\x80\x56\x08\x11\x4a\xcb\x71\x2d\x2d\xcc\x57\x64\x1a\xd2\x22\x2c\x79\x35\x6e\xc4\xa4\x5d\x60\xde\x6a\xdc\x28\x71\x23\x30\x6f\x41\xe5\x2a\xfb\xd2\x82\xca\x2d\x90\xac\x66\xda\xd9\x19\x3a\xb8\x58\xcd\x8c\x52\x67\x94\xba\x77\x93\x9c\x7c\x69\x41\xd0\x96\x42\xc4\xf0\xdf\x2d\x08\xda\x82\xa0\x21\xfa\x90\x5c\x83\xef\xfb\xe0\x46\x98\xc4\x1c\xd0\xa5\x05\x10\xd6\xa6\x42\x86\x6e\xd2\x23\xac\xdf\x05\xed\x5a\x93\xcb\x3b\x83\xec\xa7\x1b\x69\x01\x84\x75\x30\x20\xb8\xd5\x16\x91\x85\x28\x41\xa4\x85\x5b\x6d\xc1\xb0\xaa\x66\xdd\xe2\xf2\xc5\xc8\x43\xa6\xd6\x62\xe4\xa1\x5d\x48\x45\xa4\x85\xd3\x7a\x61\xbe\x56\x5c\x36\x6b\x33\xc8\xd0\xae\x0a\xd9\x5f\xa0\xe3\x02\x1d\xeb\xa2\x47\xa0\xe3\x02\x1d\x2b\xd6\xef\x02\x00\x17\x36\x6d\xc5\xfa\x5d\x00\xe0\xf2\xa3\xb5\x52\x37\x97\xc3\xda\x16\xa8\x58\xd9\x00\x17\xbe\x36\x4f\xc9\xfb\x15\xf2\x38\x0e\x77\x3f\xf4\xe8\xd0\xa4\xc3\x80\x00\x95\x15\x82\xb6\xa0\x72\x0b\x2a\x57\x2f\xcf\xe8\xf2\x8c\x2e\x83\x0c\x6b\x5b\x18\xba\x9c\x89\x96\x0a\x6b\xe3\x68\x34\x71\x26\x5a\x2a\xac\x8d\xa3\xd1\xc4\x61\x68\x69\x81\x51\x02\x3f\x97\x73\xbf\xd2\x38\x4a\x58\x98\xc4\x0b\x93\x18\x79\xe5\xb4\x1e\x8d\x77\xe7\x5c\x69\x9a\xf3\x78\xf8\x17\xa0\x8a\xec\x45\x5a\xf8\xfb\x97\x7b\xec\x4a\x63\x21\x6c\x90\x76\x3b\xb6\x96\xc6\x42\xd8\x6e\x35\xa7\x0d\xd2\x22\x93\x91\x36\x48\xbb\x61\x82\x0d\xf4\xde\x6e\x4a\xa7\xed\x84\xd0\xdf\x39\xf2\x42\x7f\x1c\x1b\x50\x45\x56\x23\x6d\x40\x75\x03\xaa\x0d\xfb\x63\x03\xaa\x1b\x26\xd8\x30\x35\x36\x4c\x70\xc3\x04\x91\x6f\x4e\xdb\x21\x36\x6d\x8c\xe6\x06\x50\x6f\x3c\x7d\x1b\x26\xd8\x30\x20\x36\xa0\xba\x01\xd5\x86\x23\x7b\x03\xaa\x1b\x50\x6d\x78\x91\x36\xa0\xca\x71\x72\xe1\x1c\x39\x71\xaa\x9c\x36\x9c\xb1\x41\x13\x36\x9c\x71\x43\x0f\x79\x6d\x2e\x6d\x40\x75\x63\xf5\x36\x4c\x8d\x0d\xa8\xee\xcc\xe5\xb8\xbc\x37\xf8\xb9\x71\xea\x35\xe0\x77\xc3\x04\x37\x4c\xb0\x41\x28\x36\x06\xee\x86\xf4\x35\x08\xc5\x06\x2a\x77\xe1\x9f\x90\xbe\xcd\x11\x02\xc7\xde\xa5\x61\x7f\x70\xfa\x9d\x36\x56\x6f\x3b\xe1\x1f\x09\xc5\x86\x11\xba\xfe\xe3\x77\x45\xa5\x1a\x86\xb0\xd2\x0a\xdc\x41\xbb\xd2\x5d\xec\xe4\x06\x83\xd9\x70\xc7\x8d\x9d\xdc\x58\x25\x1b\x3b\x79\x63\x12\x37\xf0\x7e\x83\xa3\x1b\xee\xd8\x9e\xfe\x39\x29\x64\x9e\xb2\x20\x36\xe0\xba\xb1\x93\x1b\x7c\x74\x37\xba\x8b\x9d\xdc\x03\x73\x0a\x3b\x79\xe3\x5a\xec\x81\xa7\x0a\xcb\xe4\x78\xbf\xe8\x14\x6e\x63\x3c\x6f\x37\x97\x0b\x12\xd9\x69\x77\xee\x0e\xf5\x24\x4c\x2a\xed\xce\xdd\xc1\xe6\xee\x6f\x25\xa4\x8d\x13\xd2\xd3\x51\xff\x95\x8e\x8b\x69\x3b\x3b\x4d\x44\x0e\x94\xae\xa5\xc3\x39\xc8\xc6\xdf\xd8\x31\x78\x36\x80\xbd\xb1\x93\x89\x02\x4c\x1b\x3b\x79\x4f\xfe\x09\x6f\x26\xb8\x20\x6d\xfc\x8d\x1d\xd3\x7d\x73\x90\x41\x8c\x41\xe9\x45\x85\x85\x42\x7a\xc4\xb1\xd4\x06\x86\x37\xae\xc5\x0e\xc7\xd9\x0e\xca\x69\xc3\x47\xd1\x66\x49\x1b\x18\xde\x9b\xbb\xb3\xb1\x6c\x1c\x86\x1b\x70\xed\x4d\xff\xe4\xf2\x43\xdf\x1b\x03\x02\x8e\x12\xb0\x50\x3a\x5e\xa4\x0d\xe5\xdc\x58\xbf\xc8\xbc\xa4\x7d\x78\x70\x40\x66\xd7\x2a\x01\x1d\x37\x98\x47\x2a\xcc\xb4\x21\x92\x1b\xce\xd8\xb1\x97\x36\x67\x16\x1b\xcc\xeb\x5a\x3a\xb8\x01\xf7\xa3\x9b\x58\xe9\xfb\xe9\x72\x86\x0e\x3a\x73\x80\x37\xa2\x26\x4a\xf7\xd7\x0a\xd2\x01\xde\x88\x9a\x28\xdd\xc3\xb9\x12\xe1\x12\xe9\x40\x0f\x3b\x0b\x81\xe0\x89\x74\xf0\xf8\x75\x16\xc2\x01\xb4\x78\x5f\xa2\x74\xe6\xfc\x81\x09\x1e\x98\x60\xf7\x40\x95\x74\x38\xe2\xf6\xdc\xdb\x5f\xa1\xb7\xf3\x40\x0f\x89\xc4\x28\xdd\x03\x2b\x12\x01\x19\xc9\x65\x3a\xbf\x42\x6e\x84\xa1\x7b\x40\xb2\xce\x42\x38\x9c\x59\x10\x9e\x51\x46\xe0\xee\x20\xd9\x01\xc9\x06\x0b\xe1\xe0\xe9\x3b\xd0\xc3\x01\x45\x3a\xd0\xc3\x03\x3d\x1c\xcc\x79\xd7\xf0\xfc\x3e\x08\x59\x66\xbb\x38\x58\xbf\x2e\xd9\xf9\x57\x06\xdb\x05\x91\x1f\x89\x90\x8f\x32\x98\xc9\x44\x7e\xa4\x03\x91\x44\x0b\x3d\x1d\x3c\x7d\x07\x4f\x1f\x79\x45\xd3\xc1\xd3\x77\x30\x89\x47\xd6\x3f\x0f\x85\x97\x42\x47\x32\x4f\x32\xfe\x7d\xf8\x28\x0d\x76\x86\x03\xbb\x3c\xa0\x23\xc1\x8e\xe9\x60\x12\xbb\xc4\xe7\x5f\x19\x38\x49\x5d\xe1\xf3\xfb\x38\x14\xf2\x34\x31\x89\x8f\xf3\xc9\x32\xa0\xf0\x07\xac\x3b\x10\x49\x5e\x72\x4e\x07\xac\x3b\x10\x49\xa4\x72\xd2\xe1\x1c\x84\xc8\x96\x32\x98\xde\x07\x22\xe9\x62\x9d\x5f\x21\xff\x04\x00\x0f\xc6\xf3\x60\xce\x1f\xce\x67\x8f\xe2\xc2\x21\x53\x44\xc4\xa4\x03\xd6\xf1\x12\x75\x3a\xf8\x04\x5d\xc4\xf3\xaf\x0c\x3c\xa7\xae\xe1\xf9\x7d\x30\x20\x93\x51\xc2\xcc\x3e\x98\xd9\x03\x86\x75\x00\xc0\x03\xd6\x8d\xc5\x80\xc0\x43\x0f\x3c\x94\x74\xab\xe9\xc0\x43\xcf\xd0\xe5\xdc\x1d\xca\x49\x94\x4d\x19\x9b\x19\x02\xac\x1d\x60\x8d\x8c\xab\xe9\x00\x6b\x07\x58\x1b\x90\x29\xa2\x6c\x12\x51\x36\x05\xb5\x9f\x44\x94\x4d\x22\xca\xa6\x0c\x8e\x62\x89\xb2\x49\x07\x1e\x3a\x38\x4a\x38\x93\x01\x59\x0c\x1d\x06\x04\x01\x35\xe9\x80\x75\x64\x65\x4d\x07\xdb\x9b\x28\x9b\x32\x31\x0b\x88\xb2\x49\xc4\xd5\x14\x84\xe8\x13\xe1\x35\xe9\x40\x39\xd1\x9f\x4f\x07\xca\x79\xa0\x9c\x13\xde\x44\x94\x4d\x22\xca\xa6\x4c\x2d\x04\x28\xe7\x01\x15\x27\x2e\xda\x03\xe5\x3c\xa0\xe2\x24\xa8\xe4\x1c\x1e\x07\x44\x72\x62\x40\x1c\x88\xe4\x71\x1c\x2c\xd3\x18\xcf\xcb\xd3\xc4\xe6\x9e\x44\xd9\x1c\x6c\xee\x73\x69\x27\x56\xc5\xb9\xb4\x13\x22\x89\xc4\x7d\x3a\x10\xc9\x83\xa3\x70\x62\x0a\x1f\x1c\x85\xe7\x71\x39\xa7\x6f\x07\x7a\x48\xfc\x4f\x99\x5a\x32\x40\xe5\x01\x2a\x91\x3f\x4a\xd7\x8d\xed\x74\x81\xca\x89\xd5\x7b\x3d\xce\x2c\x11\x29\x54\x5c\x19\xe9\x1f\x08\xc5\xe5\x8c\xe5\x42\x13\xa7\xbf\x79\x99\x2e\x34\xf1\x82\xb8\x44\x16\x26\xcf\x5a\xff\x97\x2e\x88\x3b\xf1\xce\x5d\x10\xf7\xe2\xf1\xe3\xf5\x87\x74\xe1\x79\x97\x57\x7f\x26\x87\x0e\xd7\x11\x30\x5d\xe0\x6d\xc2\xb4\x2e\xf0\x76\x81\xb7\x89\xf5\x7b\x71\xee\x5d\x63\x0c\x26\x37\x72\xda\x96\x2e\xce\xbd\xc9\xd1\xf1\x05\xde\x2e\x48\x86\x5c\x53\xf2\x4c\xf5\xdf\x07\x75\xb2\x4a\x2e\xf0\x76\x39\xb3\x40\xa7\x3f\x5d\x90\xec\x82\x64\xc8\xf3\xa7\x0b\xa5\xbb\x8e\x5d\x65\x62\x9c\x5c\xce\x69\x2f\xe7\xb4\xf3\x70\x23\x90\xec\x16\x66\xdf\xd1\x3f\xa9\x13\xf2\x47\x0e\xde\x74\x21\x7f\x17\xf2\x37\x3d\x4e\x38\x5d\x67\x7d\xe9\xe2\xdc\x43\x20\x2a\x5d\x8e\x79\x6f\x65\xe8\x30\x4e\x2e\x76\xf2\xe5\x65\xa6\x89\x71\x72\x2b\x75\x42\xe5\x26\x8b\xec\x62\x12\x5f\x40\x6b\xe1\x52\xbe\x9c\xe8\x5e\x50\x67\xb1\xc8\x5c\x2c\x16\x51\x92\xaf\x10\xde\x74\x21\x53\x17\x80\x59\xf0\xa6\x0b\xc0\x5c\xce\x69\x17\x14\xe9\x82\x25\x17\x2c\x59\xec\x21\x17\x8a\x74\xc1\x12\x92\xf7\xa6\xcb\x9b\xba\x17\x97\xdd\xc2\xb5\x78\x09\xd2\x72\x31\xd8\xaf\x90\x26\x41\x91\x2e\xe6\xeb\xaa\xcc\x25\xb0\xe4\x62\xbe\x2e\x22\x62\x2e\xce\xbd\x8b\x73\x6f\x55\x5d\x7e\x29\xf4\x55\x42\x56\xde\x74\x71\xee\x5d\xc8\xd4\xd2\xa4\x05\x4b\xee\xa6\x4e\xcc\x03\x17\x97\xfd\x3e\xa8\x13\x33\xfb\x02\x1b\x17\xd8\x58\x93\xbb\x03\x1b\x97\xf3\x05\x64\xb1\xd2\x3d\xcc\x10\x18\x16\x49\x06\xd2\x3d\xd4\xc9\xa1\xc3\x5a\x0c\x32\x4e\xbd\xeb\x67\x0f\x65\x11\xef\x70\xa1\x5d\x17\x80\x41\x5b\x2b\x5d\x00\xe6\x62\xa9\x2e\x4d\x45\x00\xe6\xe2\xbf\x5b\x87\x09\x86\xab\xce\x13\xf1\xff\x95\x05\x9d\xb9\x58\x95\x17\xab\x92\x0c\xc0\xe9\x72\xbe\x70\xb1\x2a\x37\x2e\x9b\x87\xab\xee\x39\x7a\x94\x1d\x55\x48\x5c\x14\xc8\x40\x72\x83\xf4\x00\x81\x07\x08\x6c\x1c\x85\x0f\x10\x78\xd8\x8a\xdb\xe5\xed\xd3\x23\x00\xc4\x93\xf2\xff\x15\x5e\x9d\x4c\x2f\x52\xa7\x9f\xb3\x16\x5e\x9d\x4c\xcf\x99\x59\x7a\x58\x95\x1b\xfb\xf3\x61\x55\x3e\xac\xca\x4d\x18\xdf\x8b\xba\x3b\x8d\x87\x7a\x3c\xa7\x6b\xe9\x41\xd0\x36\xd4\xe3\x41\xd0\x1e\xfe\xbb\x0d\xb8\x3e\xce\x67\x1f\x47\xb1\x1b\x3f\xce\x83\x8b\x3d\x3f\x91\x2d\x1b\x37\xf5\xc3\xaa\x7c\xe0\xd2\x6e\xd4\x09\x2e\x3d\xbc\x72\xe8\x81\xa5\xe7\x81\x82\xe9\x81\x4b\x9b\x43\xdb\x07\x2e\x3d\xac\x4a\x64\x85\xd2\x23\x7e\xe4\x39\x3c\x95\x0d\xf5\x78\xf8\xef\x1e\xfe\xbb\x8d\x4b\xf1\x71\x12\xf1\x00\x2b\xd4\xc2\xd2\x03\xac\x1e\x0c\x6b\xe3\xc7\x79\x30\xac\x57\xa8\x93\x43\xb1\x07\x2e\x3d\x5c\x75\x08\x86\xa5\x07\x04\x3d\x20\x68\xc3\xac\x1f\xf6\xe7\x03\x82\xf6\xe6\x71\x00\x41\xaf\x72\x39\xdc\xe1\xe1\x95\x7b\xa0\x0d\xe1\xb0\xe9\x81\x36\x0f\xb4\xd9\x84\x71\x3d\x28\xd2\xc3\x46\xdc\xd8\x9d\x0f\x8a\xf4\xa0\x48\x9b\xd0\x9b\x07\x45\x7a\x50\xa4\x8d\x77\xe6\x41\x91\x5e\xe7\xc1\x31\x93\x1f\xae\xba\x07\x45\xe2\x0d\xc1\xf4\xa0\x48\x0f\xcb\x6f\x3f\x5d\x4e\x37\xf1\xca\x1d\x0e\x82\x1f\xc7\xa6\x6f\xe8\x1d\x4d\x26\x2d\xc7\x13\x0f\x8a\x74\x38\x08\x7e\x68\x0d\x3c\x22\x4d\xc8\xd8\x9c\x1e\x14\xe9\x71\x66\x81\xa6\x5a\x7a\x9c\x59\x3c\x5c\x75\x87\x90\xc0\xc7\x61\xe8\x83\x22\x1d\x08\xc5\x83\x22\x3d\x00\xf0\x24\xfd\x93\x3a\xc1\xba\xa3\x85\x00\xd6\x3d\xbc\x72\x07\x0e\xfe\xf0\xca\xbd\xcd\xdd\x71\xc4\x3c\x60\xed\x71\x42\x7a\xc0\xcf\xc7\x09\xe9\xc3\x46\x3c\xf8\xd6\x1f\x36\xe2\x73\x52\x54\x0e\x76\xe7\xc3\x46\x7c\x10\x9f\x83\xef\xf2\x11\x2a\xf2\x00\xab\x03\xa8\x3e\xc0\xea\xc1\x86\x3e\xf6\xfc\x4f\x84\xe2\x41\x95\x5c\x44\xf9\xbb\x82\x9e\x5d\xa6\xcf\xa5\x67\x5d\x85\xf4\x0c\xae\x83\xde\x9c\x6b\x54\xb8\xac\x84\x4f\x8a\xe3\x47\x73\x16\x82\xf4\x2b\xe8\xae\x9f\xf0\x58\x70\x92\x63\x21\x30\xd8\x1e\x76\x66\x21\x10\x52\x0a\xc0\x9c\x49\x9d\x84\xa9\x06\x48\x0a\x39\x42\x2c\x38\x49\xb1\x80\xb5\x76\xdc\x33\x69\xc1\x29\x8b\x05\xfc\xf6\x84\xd6\x5b\x48\xe8\x57\xe0\x62\x3a\xce\x9b\x2d\x18\x51\xae\x20\x04\x99\xb0\x2d\x18\x51\xae\xf8\x9d\x8e\xc7\xdf\x5a\x30\x9a\x84\x61\x76\x7c\x9f\x37\x17\x38\xfe\x3e\xe8\xfb\x53\x9d\xdc\x08\x6b\xed\x3c\x1a\x9f\x69\x27\x1c\xe7\x3c\x6e\x94\xb9\x11\x1e\xfe\xeb\xa7\xc4\x16\x32\x37\xc2\x5a\xbb\x81\x6e\x66\x6e\x84\xdb\xff\x3a\xb4\x5b\xc8\x28\x48\x00\x1b\x37\xd2\xcd\x82\xd6\x04\x1c\x87\xd7\x5e\x2c\x14\xea\x84\xe3\xdc\xc4\xdd\x9d\xe3\x58\x80\xe3\xa0\xc1\x67\x08\x8f\x18\x8a\x23\x85\x17\x64\xcc\x35\x91\xbf\x8f\x44\x21\x37\xaa\x3c\x38\x38\x0e\x2f\xc8\x58\xa8\xdc\x88\x77\xb3\x51\xee\xb3\x9f\xf0\x08\xd6\x1a\xb1\xbc\x16\x1a\x97\x63\xad\xdd\xc2\x78\x36\x06\x04\xc3\xec\x56\x9a\x24\xe1\x11\xfc\x4d\xb7\x52\x67\xe7\xc1\xb9\x87\xa9\x20\x0c\x67\xa1\xf3\xdc\x39\x0b\xb8\x9a\x8a\x9d\x69\xd3\xa9\xb3\x73\xa3\x41\x93\xc0\x92\xab\x59\x37\x18\x3a\x28\xd2\xd5\xac\x1b\x8a\x6e\x66\x94\x26\x7d\x9f\x4c\x6f\x28\xd2\x75\x46\x60\x88\x99\x58\xc0\x99\x7f\x17\x83\x3c\x69\x3c\x31\x14\xbc\xc5\x6b\x61\xf1\x4f\xcc\xad\x7b\xe8\xa6\x44\x42\x30\xb7\xae\x9f\xec\x18\xea\x27\x16\x70\x2d\xdd\x43\xe3\x17\x0f\x0e\x2c\x21\xcb\xb8\x2b\xed\x78\x21\x8d\xbf\x8c\xd2\xe6\x72\xd8\xd0\xd5\x54\xdc\xcc\x25\x4e\x33\x79\xa7\xd0\xc2\xe6\xb9\x43\x91\x90\x2f\xb1\x70\xa8\x13\x8a\x84\xf2\xa0\x85\x43\x9d\x00\xcc\x8b\x3c\xcd\x43\x9d\x38\xa1\x88\xbb\xb5\x70\xa8\x13\x36\xc4\x4b\xc0\x16\x2e\x7d\x87\x0d\xbd\xc4\xdd\x2f\x75\x72\xc4\xf9\x8c\xb9\x74\x19\x3a\x77\xca\x17\xde\x89\x30\xd7\x89\xfe\x3e\xb8\x3c\x53\xe7\x53\x58\xfa\xa0\x90\x26\x3d\x5d\xee\x98\xf7\x9c\x26\x58\x74\x40\xb2\x08\x04\x91\x78\xc6\xd0\x73\xb1\xc8\x69\xe6\x73\x72\x6a\xd1\x01\xc9\x90\x75\x29\xaf\xea\x9f\x9b\x42\xba\xe9\x5e\x6e\x8b\x91\x3a\x71\x57\x3d\x77\x68\x5b\x24\xd0\x3e\x82\x60\xbc\x86\x6b\x31\x52\x27\x14\xe9\xb9\x45\x65\x31\x52\x27\x3e\xac\x37\x68\x67\x42\x8d\x04\x1f\xfb\xf3\x77\x8b\x2c\x26\xea\x04\xeb\x9e\x5b\x54\xe6\xf2\xd6\xdf\x07\x97\xbb\xab\xce\xa2\x71\xb9\xf1\x34\x99\x9f\xd1\x83\xcf\x2c\x82\x75\x64\x49\xb7\x08\xd6\x45\xb0\xee\x6d\xfa\x6e\xb4\x13\x8a\xf4\xb6\x2e\xa7\x9d\x46\xdf\x0f\x8d\x77\x7b\xce\x62\xe6\x46\x87\x7f\x66\x6e\x04\x6f\x7a\x87\x1b\x39\xf2\x59\x84\x37\xbd\x4b\x8f\x32\x3d\x82\x37\x3d\x77\xea\x59\xcc\xf4\x08\x54\x7c\x2e\x20\x62\xd1\xe1\xd0\x22\x64\x8a\x2c\x38\x16\x1d\x0e\x2d\x66\x1e\xf1\xa3\xce\x42\xdf\x61\x58\xcf\xcd\x2c\x8b\x85\x26\x61\x0e\x3e\x17\x8b\xb2\xe8\xc0\x69\xd1\x1d\x5b\x95\xa8\x5f\x8b\x85\xbb\x3b\xfb\xaa\x21\x30\xc8\xe0\x67\x74\xfc\xac\x48\x20\x59\x04\x3f\xa3\xe3\x67\x0d\x91\xcb\x2b\x77\x77\xc4\xac\x01\x4c\x46\x14\xc8\x50\x03\xaa\xc4\x07\x9b\x0b\x82\x7f\x1f\xdc\xdd\x03\xd0\x2d\x56\xee\xee\xac\xad\x06\xe3\x46\x95\x1b\x35\xea\x64\x75\x44\x40\x35\x3a\xa8\x56\xb2\xf5\x58\x6c\xd4\xd9\x68\x67\x66\x7e\x36\x5d\x4e\x3b\x33\x4d\xea\xb4\xb3\x53\x67\xe1\x69\x76\xea\xec\xb4\xb3\x70\x23\x90\xd6\x25\xad\xbe\x42\x06\xa4\x33\x6d\x1c\x69\xeb\xb7\x85\xfc\x03\xa1\xb0\x08\x0c\xc7\x4e\xcf\x2a\x8f\xda\x59\x9f\x45\xa7\x7b\x35\x78\xc4\xbb\xc5\x41\xd3\x06\x4d\xd3\x22\x1b\x4c\x9f\x41\x2b\x3a\x03\x33\x68\xc5\xa0\x15\x9d\x3a\x07\x37\x1a\xdc\xa8\x33\x25\x07\x63\xe0\xb8\x5d\x09\x33\xb6\xe8\xf0\x6d\xd1\xc9\x5f\x25\x2b\xbd\xb9\x7c\xfa\xf7\xc1\xf3\x67\x67\x70\xd5\xf4\xef\x83\x71\x9d\x34\x69\xaa\x4e\xc6\x75\x32\xa7\x16\x75\x2e\x86\x70\xa9\x90\x21\x5c\x34\x09\xe6\x12\x41\xf1\xb8\xe8\xbb\x56\xde\xa6\xef\x9b\xcb\x37\x93\x62\x73\xf9\x66\xa6\x1c\xa6\xcf\xa6\x9d\x9b\x76\x1e\x9e\xd5\xa6\xce\x43\x37\xb5\xc8\x40\xf1\x78\xa8\xf3\x71\xa3\x43\x9d\xce\x1d\x2b\x21\xc1\x16\x0f\xeb\xde\xc1\xbc\xc6\xa0\xcb\x79\x46\x4e\x08\x6b\x0c\x8c\xe7\x05\xf3\x1c\xc5\x6b\xd4\x82\xb8\xac\x66\x77\x93\x55\x82\x87\x2d\x02\xed\x11\x51\x9a\x18\xe9\xfb\x05\x4b\x9c\x4f\xd6\xc8\xce\x10\x2f\x58\xe2\x08\x5f\x23\xcc\x25\x3e\xa6\xe4\xa3\x4e\xad\x92\x47\x9d\x8f\x3a\x8d\xe7\xfe\xa8\xd3\xf1\xbe\x12\x3c\x6c\xc8\x6a\x59\x0a\xd4\xe9\x27\xa5\x96\xe0\xa1\x29\x50\xa7\xbf\xdd\x63\x52\xde\x42\x72\xab\x92\x3a\xdf\x5c\x3d\xfe\xcf\x52\xa4\xef\x6e\x94\x5a\x02\xef\x5d\x4a\xfe\x2b\xac\x14\x66\x0a\x19\x10\x56\x49\x72\x3b\xd9\x92\x6f\x02\x15\x49\x31\x4b\x6c\x02\xae\x35\xff\x15\x16\x0a\xb9\x7b\xe4\xee\x95\x76\xba\x49\xec\xfa\x64\x5f\x21\xab\x23\x25\x1a\x9f\xe8\x7b\xa3\x9b\x89\xcb\x8d\x26\xb9\xf9\x6a\xc9\x99\xae\x25\x77\xd5\xd5\x08\xf1\x49\xe0\x7d\x32\x2e\x1f\xdc\xdd\x74\x39\x77\x87\xad\x27\x68\x6c\x72\x14\xaf\x11\xb6\x8e\x50\x98\x21\x14\x56\xe3\xe4\x72\x00\x1b\x15\xb0\x1a\xd9\x82\x10\x03\xb3\x84\xa6\x4d\x5c\x34\x29\x53\x67\xa1\xce\x45\xe3\x0b\x75\x3a\x71\xad\x11\xde\x94\x0a\xed\x2c\xd4\xb9\xb9\xbc\x50\x27\x88\x1b\xdd\x93\x62\x09\xc4\x4d\x95\x41\x86\xd7\xa7\xca\x20\x57\xba\x79\x19\xf9\x4a\x37\x2b\x4d\x82\x37\xa5\xca\x20\xa3\x15\x12\xdd\x1f\x6e\xa9\xd1\x23\xb4\x42\xd0\xda\xb2\x04\x8e\x26\x20\x93\xf7\x92\x2d\x81\x8e\xa9\x23\x0f\x01\xf1\x49\x60\x5d\x02\xeb\x12\x33\x19\xa9\x2e\x43\xaa\xab\x26\x26\x6d\x1a\x3c\xa3\xc1\xe5\x9a\xb4\x83\xc6\x3b\x90\xd5\x04\x8a\x27\x10\x2c\x39\x0f\xad\x49\xf3\x73\xd0\xf8\x49\x93\x0a\x75\x4e\x66\x88\xa3\x5b\x4d\xd0\xed\x04\x39\x4d\x0e\x64\x35\x41\xb7\xd3\xa4\x9d\x93\x76\x42\xb7\x13\x8c\x35\xb9\x69\x5b\x93\x66\xdd\x62\x90\x17\x37\x02\x93\xd3\xe2\x46\x8b\x1b\xf9\xab\x49\x96\xe0\xb6\xc9\x21\xaf\x26\x3f\xd9\xb1\xb4\x78\x9a\xce\x6d\x6b\xea\xaa\x73\x52\x78\x28\xa4\xf1\x8b\xbb\x6f\xea\xec\x4c\x45\x3f\x43\x30\xcf\x0d\xf0\x57\xd3\xa0\xf1\x70\xdb\xb4\x19\xa5\xc9\x32\x84\xdb\xa6\x4d\x9d\x60\x72\xda\xd4\x79\x68\xfc\x64\xda\x1c\x1a\x0f\x2a\xa6\xc5\xd2\x06\x15\x13\x7a\x2e\x69\x51\x27\x84\x37\xa1\xe7\x92\x36\x73\x09\x00\x44\x27\xae\xa6\x43\x9d\x97\xa7\x79\xa9\x53\xb3\x0e\x54\x4c\x97\x3a\x2f\x03\x72\x19\xf9\xcb\xd3\x84\x98\xa7\xc7\x20\xa3\x8b\x64\x81\x59\xf7\x18\x4f\xf4\x47\x0c\xf8\x4d\x8f\xf9\x09\x2a\x5a\x60\x32\x80\x8a\xc9\x0d\xf1\x6a\xd8\x88\x09\x16\x8c\x90\x5d\x35\x48\x8a\x01\x80\x16\xb8\x91\x1f\xa3\x98\xf9\x11\x82\x59\xe0\x46\x20\xad\x79\x58\xb2\x19\x50\x69\xf0\x11\xc3\x3a\xb7\x40\x9d\xfe\xee\x86\x19\xef\xa0\x9a\x83\x63\x35\xd7\xda\x32\x8b\xdc\xc8\xc1\xb1\x92\x87\xcb\x4c\xef\xa0\x46\x6e\x94\x69\x12\xa8\x88\x3c\x5d\xb5\x12\xff\x91\x50\x98\x63\xa5\x79\x3e\x85\xef\x0a\x3a\x01\x45\x46\xa6\xae\x1a\x33\x1a\x7d\x3a\xb3\x44\xdd\x95\x56\x24\x5d\x4e\x27\x1a\x9d\x80\x37\x9b\xd1\x09\xc0\xd5\xe0\xcd\x48\xd8\x55\x6b\x0c\x0c\x38\x6a\xc6\x8d\x98\xbc\x08\xda\x19\x12\x76\xd5\xe0\xf7\x28\xd9\x99\x39\xd5\xad\xe6\x02\xfc\x86\x4c\x9d\x21\x53\x57\xd1\x6b\x34\x64\xea\x0c\x99\xba\x6a\x8b\x3a\x41\x47\x03\x1d\x6d\xf3\x4f\x48\xaa\x41\x52\x0d\xee\x60\x90\x54\x2b\x74\x13\xd6\x6e\x85\x3a\x51\xd4\x31\x58\xbb\x61\xcf\x5b\xe5\xf9\x63\x6a\x1a\xf6\xbc\x55\x6e\x74\x78\x80\xe0\xa8\x01\x99\x06\x64\x5a\x55\x9d\xb4\xf3\xf2\xcf\x46\x37\x9d\x96\x56\x83\xa0\x5b\xe3\x71\x80\xa3\x06\xed\xb6\xc6\xe3\xf0\x80\x93\x9a\x99\xe6\x06\xb8\x1a\xe0\x9a\x03\x4f\xb3\xeb\x15\x66\x14\x13\x23\x7d\x07\x71\x0d\x3e\x9a\x23\xa3\x04\x1f\x35\x77\x00\x54\x02\xa7\xcd\x3a\x83\x0c\xbb\xcc\xd0\x6e\x83\x5d\x1a\x30\x9c\x13\x7d\x87\x5d\xda\xe0\x72\x7f\x09\xd8\x0c\x22\x69\x0e\xbc\x35\x9b\xfe\x49\xdf\x07\x75\x6a\x9a\x83\xb8\x06\xe2\xe6\xcc\x8d\x26\xed\x04\x71\xc9\xab\x66\x48\x09\x9a\xc1\x19\x33\x80\xed\xe9\x35\xfe\xcc\x00\xd7\x0c\x60\x1b\x44\xd2\x80\x4c\x84\x4b\xcd\x16\x4d\x02\x32\x73\xe5\x11\x2f\x2e\xdf\x5c\xde\xf8\xe7\xa6\x49\xe0\x28\x62\xa8\x66\x10\x49\xdb\x34\x49\x33\x19\xce\x68\x00\x61\xee\xdc\xfd\xf0\xe0\x00\x42\x22\xb4\xcd\x0e\xb3\x0e\x20\x44\xf9\xc7\x0c\xcb\xdf\x10\xb6\xca\x93\xbb\x63\xf9\xdb\xa5\x49\x60\xb3\x81\x79\x76\x79\xee\x9b\x67\x84\x3d\x6f\x8f\xc7\xc1\xee\x6d\x60\x1e\x12\x8b\x35\x6b\x2a\x3e\x2e\x07\xc9\x50\xe9\xb1\x0c\xbf\xcb\xf0\xbb\x8c\xd7\x23\x3b\xae\x59\x96\xd0\x26\x5e\xb9\x0c\xbc\xe5\x40\x9d\x20\x6e\xc6\xc8\xcf\x7e\x50\x5a\x0b\x5b\x7a\x76\x0a\x68\xd9\xb9\x5f\x2d\x41\x37\xf2\x1e\x65\x37\xf2\x2b\x31\xdc\x96\x21\x7d\x19\xd2\x57\x60\xc1\x19\x37\x25\x42\x0b\x15\x95\x50\x43\x6f\xc1\xb2\x93\xb7\x5a\x40\x5c\xcf\x3a\xf2\x7d\xf8\x20\x17\xc0\x35\xf3\x36\x7d\x86\xdf\x15\x18\x6b\x86\xdf\x65\x87\xa7\x5a\x60\xac\xd9\x51\xca\x50\x92\xac\x05\x07\x1c\x82\x92\x96\x21\x7d\x25\xd3\x4e\xbc\x9c\xc8\x4b\xd6\x82\x57\x2e\x3b\x74\x59\x76\x23\xbf\x16\xb8\x6d\x86\xf4\xe5\xcc\x8d\x3c\x94\xc9\x72\xe6\x46\x99\x1b\x01\xaa\x19\x87\x66\x06\xd6\x0a\x4e\x93\x8c\x43\x33\xbb\xe9\x5e\x0b\xae\xba\x8c\x95\x9e\x0b\xa3\xe4\xe1\xda\x96\x71\x53\x66\x07\xb2\x5a\x3a\x75\x16\x1e\x07\x66\x76\xc1\x7f\x97\x0b\x7d\x87\xf4\x91\xfb\xce\x32\x60\x95\x2b\x75\x0e\x15\x72\x77\x98\x20\x89\xef\x2c\x63\x3c\x67\x70\xa9\x80\xb4\x19\xe7\x63\x6e\x5c\x8e\x7f\x24\x03\x56\xb9\x71\x39\xfe\x91\x8c\x3e\x72\x76\x78\xaa\x05\xa4\xcd\x8d\xa7\xd9\x19\xa5\xc3\xe3\xe8\x8c\x52\x67\x86\x80\xb4\xb9\x73\xa3\x4e\x8f\x0e\x3d\xea\x34\xa9\xd3\xa3\xab\x7f\x52\xe7\xa0\x4e\x68\x42\x86\x33\xe6\xc1\xd3\xc4\xc1\x91\x07\x4f\x13\x53\xb8\x68\x26\x63\x0a\x67\x38\x63\xc1\xa9\x87\xae\x87\xa1\xeb\x51\x6b\x60\x90\xe1\x8c\x19\xce\x58\x35\xbd\xa1\x87\xd9\x43\x45\x6a\xd5\x4c\x9e\xd4\x89\x29\x5c\xb1\xe7\x32\xa6\x70\x86\x33\x92\xe0\xc2\x32\x9c\x31\x83\x60\x15\x7b\x2e\x83\x60\x79\x51\x67\xe2\xb9\x2f\x1e\xb1\x73\xbf\x5a\x8d\x1e\x01\x6b\x19\x53\xb8\x82\xb4\x9e\xc1\xe6\xfb\x48\x14\x32\x15\xf1\x72\x66\xac\xde\x0a\x35\xce\x30\xc1\x0c\x13\xac\x9a\xde\x30\x41\xe4\x4b\x6a\x2d\xff\x78\xe4\x61\x19\x9a\xe8\xa9\x72\xbe\x2b\x18\xd7\x03\xc0\xc0\x1d\x2b\x76\x5d\x3e\x8c\x96\xb3\xc5\x5a\x2b\x9d\x00\x1d\x33\xc6\x73\xad\x74\xf7\xf0\x04\x0e\x75\x42\xa6\x33\xdc\x31\xc3\x1d\x2b\x2c\x23\xc3\x1d\x33\x16\x35\x02\xa6\x96\xe1\x8e\xd9\xc3\x50\x6a\x6d\x8c\x01\x16\xb5\x64\x5e\x2b\xd4\x23\x63\x51\x67\x2c\xea\x8a\xd7\x23\xe3\x41\xcd\x58\xd4\x55\x4b\x07\x8b\x1a\x09\x97\x5a\x07\x8d\x7f\xdc\xe8\xf1\x58\x06\x4d\x02\x71\xf3\x63\xfa\x60\x01\x16\x10\xd7\x93\x02\xfd\x55\x02\xd1\xad\x80\xb8\x68\xcd\x56\x02\xd1\xad\x80\xb8\x28\xcf\xd6\xea\x07\xec\x56\xd0\x2f\x29\x20\x6e\xc5\x56\x2c\xd8\xde\x05\x42\x49\x52\x43\x2b\x10\x4a\xa4\x6a\x2b\xb9\x0c\x0d\xc5\x5a\x2b\x58\xd4\x64\x34\xb4\x02\xe2\x96\xc4\x8d\x20\x3e\x05\xa9\x12\xf4\x6b\x6b\x85\xe3\x14\xc0\x15\xfd\xda\x5a\xf1\x4c\x22\x63\x6b\x05\x70\x25\xf1\xa1\x15\xc0\xb5\x00\xae\x95\xdd\xa6\x00\xae\x05\x70\xad\xac\xd1\x02\xb8\x22\x7f\x5b\x2b\x5b\x50\xc1\x83\x5a\x00\xd7\xca\x16\xe4\xc9\x90\xbe\x0f\x66\xc8\xd3\xe5\x97\x42\xef\x7b\x63\x0b\x2a\x70\xc6\x82\xed\xdd\x58\xb8\x25\x73\x23\x10\x97\xe8\x74\x2b\x20\x2e\x3a\xbb\xb5\x45\x5d\xce\x8d\x60\x97\x0d\x36\x84\xe8\x8e\x15\x60\x98\x40\x74\x2b\x20\x6e\xc1\xcc\x6e\x2c\xc7\x82\x99\x5d\x40\xdc\x86\xbf\xb1\x70\x30\x54\x20\x92\x0d\xe2\x53\x20\x92\xc5\xfd\x9b\xb5\x71\x30\x54\xc0\x66\x04\x7d\x6b\x63\x8d\x16\xb0\x19\xad\x9f\xda\xd8\x97\x4a\xe5\x46\x78\x3b\x5b\xd1\x3f\x7d\xc9\x14\xbc\x9d\xad\x30\xf2\x8d\x91\x07\xb0\x09\x44\xb7\x02\x60\x17\x4c\xf7\x56\x69\x27\xa6\x7b\x81\x72\xb6\x4a\x3b\x61\x97\x05\xc0\x26\x10\xdd\x0a\xec\xb2\xc0\x2e\x5b\xa7\x4e\xd8\x65\x81\x5d\x36\x16\x57\xe1\x5c\xa9\x60\xcf\x93\x84\xd2\x50\x1c\xb6\x02\x60\xa3\x0d\x65\x05\x22\x59\xc0\x66\x04\x17\xad\x0c\x26\x18\x44\xb2\x2d\xfd\x93\xf1\x04\x71\x89\x39\xb7\x82\xf3\x11\x89\xe2\xda\x36\x77\xc7\xcc\x46\xfc\xa8\xb6\xa3\x42\xfd\x93\x6e\xb2\x87\x14\x2c\xea\x82\x9f\xb1\x5d\x06\x04\x3f\x63\x59\x3c\x4d\x4d\x5a\x38\x63\x41\xcd\xb4\x69\xd2\xc2\x19\x0b\xe0\xda\x34\x69\x37\xcf\xc8\xc1\xb1\x76\xcd\x4f\x5c\x8a\x05\xce\xd8\x23\x0f\x0e\xe3\xb9\x1c\x04\x56\x35\xeb\x30\x9e\x0b\xa8\xd8\x61\x43\x05\x54\x2c\x0e\x79\x95\xc0\x6e\x2b\x1c\x0c\x15\x47\xb7\x4a\x0c\xb7\x15\x38\x63\x01\xd6\x3a\x67\x94\x05\x58\x2b\xee\x2f\xac\xdd\xe8\x11\x08\x56\xa0\x87\xc8\x67\x5a\xe5\xb8\xa7\xba\x15\x5b\x3b\x6e\xb5\x8a\xf9\x5a\xf1\xdf\x75\x26\x43\x75\x0e\x67\x15\xfb\xb3\xfb\x0b\x08\x56\x31\x31\x3d\xfd\xd4\x5f\xed\x1e\x4c\x64\x95\xa3\x99\x0a\x95\x23\xb4\xda\x50\x7e\xb6\x0a\x04\x91\x2f\xd3\x2a\x47\x33\x15\x81\x55\xe2\xad\xad\x02\x41\x88\x43\x57\x52\x69\x1a\x1a\xd1\x86\x2a\x74\xed\xe0\x67\xc5\xee\xf4\x24\x4e\x7f\xb5\x33\x6d\x2a\x68\x53\x31\x31\x3b\x1e\x8a\x0a\x5c\x54\xbc\x72\x1d\x67\x59\xc5\x2b\xe7\xf9\x8c\xbe\xc2\x4b\xe1\xa6\x90\xf1\x3c\xfa\xa7\x4f\x06\x4f\x48\xf4\x15\xfa\xc8\x7b\x3e\xa2\xef\x83\x47\x0c\x2a\x56\x4e\x4c\x2a\x27\x26\x1d\x73\xb0\x62\x8c\x4a\xa8\xba\x73\x5e\x53\x81\x8b\xca\x39\x48\x87\xb9\x54\xce\x41\x2a\xe7\x20\x9d\xa3\x99\xea\x06\xa7\xd5\xca\x28\x79\x7c\x93\x55\xce\x91\x2b\xc8\x30\x82\x2e\x67\x94\x40\x86\x81\x8d\x58\xa1\x72\xd5\x29\x59\x1d\x91\x1e\x71\xba\x51\xfd\x3c\xa3\x0e\xf8\x48\x65\xbd\xa3\x9d\x5d\x87\xbf\x39\x60\x15\x57\x5d\x65\x69\x0f\x2c\x3f\x34\xb3\xad\x62\x38\x0e\xe3\x72\x0c\xc7\x2a\xa9\x60\xfb\x47\xe9\x6d\x43\x5e\xdb\x2a\x60\x30\x98\xa7\x75\x30\x5a\x98\x9a\x03\x2a\x8f\xca\xb6\x55\x8e\x27\x46\xa6\x13\x93\xc9\xeb\x98\x50\x07\x06\x24\x1a\x66\x56\xb1\x2a\x07\x06\x64\xc5\x8f\x57\xe1\x64\x03\xe6\x52\x39\x9e\xa8\x98\x9a\x84\x6d\x5b\xc5\x8f\x87\x56\x77\x1d\x95\x9e\x01\x30\x28\xa1\x55\xd2\x9b\x5a\xe5\xcc\xa2\xc2\xde\x06\x74\xa6\x82\x3a\x15\xd4\x21\x96\xdb\x2a\xa8\x83\x66\x5a\x1d\x8d\x67\x85\x1f\x0f\x05\xb5\x4a\x80\xb7\x55\x4e\x37\x2a\x94\x8e\x5c\x56\x56\x71\xee\x55\x9c\x7b\xa3\xeb\x9f\x74\x13\xd4\x21\xc0\xdb\x2a\x67\xd4\x95\xd3\x8d\x31\x78\xfe\x87\x51\x3a\xd4\xa9\x95\x07\x3e\x55\x50\x67\x60\x1e\x54\x8c\xd2\xca\x41\xc6\x80\x7a\x54\xb8\x58\x85\x8b\x91\x62\xd5\x2a\x5c\xac\xe2\xc7\x1b\xf0\x91\x7a\x19\x10\xfc\x78\x03\xdf\x75\xbd\x0c\x08\xa0\x45\x80\xb7\x55\xb8\x98\xf4\xcd\xc7\xa6\xce\xc7\xe5\xf8\xf1\xc6\x61\xe4\xf1\xe3\xa1\x02\x57\x89\xe5\x36\xc4\xe0\xac\x82\x64\x24\x72\xb5\x06\x92\xa1\x02\x57\x07\xcb\x51\x62\x70\x0d\x32\x35\x58\x79\x0d\x32\xd5\x20\x53\xc3\xe3\xb1\x4c\x0a\x71\x0d\xde\x34\xfc\x9d\x08\x93\xee\x5b\x03\xf3\x26\x8e\x98\x06\xe6\x35\x0e\x1d\x26\x8b\xac\x25\xee\x0e\x99\x9a\x1c\x8a\x22\xff\x66\x08\xbe\x55\x02\xbc\xad\x41\xa6\x1a\x6e\xb5\x89\x79\xd0\x40\x32\x84\xde\xea\x4c\xfc\x13\x0f\x5a\x83\x22\x4d\xf0\xbe\xe1\x41\x6b\xc0\xdb\x84\x8f\x34\x0e\x99\x1b\x46\xe9\x84\x8f\x34\x8c\xd2\x86\x51\x3a\xe1\x23\x0d\xa3\x14\x9d\xb8\x4a\x3a\x5a\x6b\x00\x61\x83\x22\x4d\x7f\xfd\xc1\xd0\x90\xb3\x06\x3a\x4e\x42\x06\x90\x92\x33\x54\xe7\xeb\xcc\x8c\x3c\xbc\xa9\xe1\x80\x9b\x85\x91\x07\xf3\x1a\xbc\x69\x16\xfd\x93\xcb\x01\x42\x02\xbc\xad\xe1\x80\x6b\x10\x9f\x09\x49\x69\xb8\xd5\x1a\x1e\x34\x72\xdd\x5a\xc3\x83\xd6\x80\xb7\xc9\x92\x69\x1c\xf3\x7a\x4e\xa4\xaf\xf0\x50\x58\x28\xa4\x9b\xb8\xd3\x51\xc0\x37\xb4\xe7\xea\x84\xb9\x20\x41\x67\x0d\x74\x9c\x2c\xae\x86\xa5\x8a\x12\x5d\x45\xd7\xde\x1a\xe8\x88\x20\x5d\x9d\x1c\x0c\x21\xa0\x6f\xad\xd3\x78\xcc\x82\x06\x1b\x6a\xd8\xb4\x93\xc5\x85\x82\x9d\xa1\x52\x57\x27\x66\x01\x62\x75\xd6\x30\x5f\x27\x8e\xf7\x86\xf9\x8a\x74\x5d\x9d\xfe\xf6\x84\xa1\x60\x67\x68\xd6\xd5\xb9\x74\x39\x8d\x87\x37\x11\x17\x6e\x08\xd9\x59\x9b\xd4\xc9\x8a\x43\xc1\xce\xd0\x9e\xab\x73\x73\x39\x27\x11\x0d\xb0\x9a\x47\x85\xcc\x79\x9c\x65\xa4\xf7\xb5\xb6\xf9\x27\xc4\x67\xc2\x86\xd0\x97\x33\xa4\xfd\xeb\xd4\x92\xc1\x46\x44\x66\xae\x4e\x1c\x9a\xa8\xcd\x19\x52\x72\x95\x18\x6e\x43\xe1\xdf\x90\xf6\xaf\x8b\x80\x9a\x06\xf1\x41\xda\xbf\x2e\xad\x23\x20\x08\xd1\xb9\xba\xb0\xbd\x11\x9d\x33\x64\xe6\xea\x62\x5b\x43\xfd\xdf\x90\xf6\xaf\x0b\x67\x3e\xa2\x73\x86\xe8\x5c\x5d\x6c\x6b\x08\xfd\x1b\xe2\x71\x95\xe4\xc2\xd6\x38\x20\x68\xa0\xcd\xc2\x6f\xdf\x01\x96\x8e\xe9\xb6\x58\x32\x1d\xd3\xad\x83\x36\x0b\x0a\x8f\xb0\x9c\xa1\xe2\x5f\x17\x14\x1e\x7d\x39\x43\x5f\xae\x12\x02\x6e\x68\xfa\x5b\xc7\xed\xbf\x58\x32\x48\xc9\x19\x52\x72\x75\x11\x8f\xd3\x81\xa0\x0e\x04\x2d\x7f\xfd\xc1\x3a\x10\x84\xa2\x5c\x5d\x50\x78\x84\xe5\xac\xe3\x2c\x5b\xf8\xeb\x91\x92\x33\xc4\xe3\xea\x62\x75\xa0\x21\x67\x1d\xde\xb4\xd8\x3b\x90\x92\x33\xa4\xe4\xea\x82\xb5\xa1\x21\x67\xdd\x68\x12\xe7\x4a\x9d\x40\x3f\x14\xe5\xea\x82\xc2\x77\x70\xa9\x73\x42\xba\x70\x2d\xa1\x36\x67\xe8\xcb\xd5\xc5\x61\x28\xa9\x0b\x0c\x99\xb9\x4a\x58\xb9\x75\x4c\xb7\x8e\xe9\xb6\x98\xf3\x48\xd0\x19\xda\x73\x75\x7d\x1b\xca\x3f\x10\x0a\xf4\xe9\xac\x67\xba\xbb\x54\xb7\x5a\xc1\xf3\x87\xfc\x91\x0f\xc1\x50\xab\xab\x0b\xb7\x15\x32\x75\xd6\x61\x6f\x0b\xb7\x15\x32\x75\xd6\x31\xf6\x48\xf8\x6c\x1d\xf6\xd6\x39\x0b\x58\xc4\x11\xa0\x5d\x67\x1d\xa2\xb6\x88\x80\x44\xc9\xce\x3a\x44\x6d\x3d\xea\xe4\x80\xa0\x37\xa6\x39\x3c\x0f\xed\x3a\xeb\x04\xac\x2c\xac\x5f\x94\xec\x4c\x49\x19\x76\xe0\x72\x7c\x6e\x9d\x03\x82\x4d\x58\x64\x87\xd2\x21\x68\x57\x37\x07\xad\x28\xd9\x19\x12\x76\x95\x24\xd2\xd6\x3b\x97\x3b\x22\xd5\x6d\xba\x9c\x26\x41\xe9\x36\x96\x2a\x2a\x77\x86\xca\x5d\x25\x64\xdd\x90\xb7\x33\x04\xed\xea\x86\x76\x21\x68\x67\x48\xd8\xd5\xad\x19\x8d\x7b\x0d\x09\xbb\xba\xa1\x5d\x9d\xd0\xc0\x8e\x7b\x6d\x63\xa9\x76\x0e\x08\x3a\xa0\xb5\x39\xf3\xef\x80\x56\xff\x65\x51\xe1\x46\xb0\xb6\x0e\x6b\x23\xe5\xa6\x21\x84\x67\x1d\xd6\xb6\xd9\x19\xd0\xc3\x33\xf4\xf0\xea\xc6\x37\xd4\x09\x22\x44\x0f\xaf\xee\xae\x7f\x32\x4a\x00\xe1\xc6\x0d\x84\x3a\x9e\x21\x8b\x57\x37\xe6\x2b\xea\x78\x86\x1e\x5e\xdd\x6c\x02\x08\xe1\x59\xe7\x28\x61\x6b\x95\x10\x7e\x82\xf4\x5d\x25\xbb\xb5\x75\x20\x13\xe9\xbb\xba\x41\xf1\x0e\x6b\xeb\x10\xb4\xcd\xf1\x29\x9a\x77\xd6\xf1\xa0\x6d\xc2\x76\x49\xa3\x61\x48\xdf\xd5\xcd\xf1\x3e\xd2\x77\xa6\x6c\x1a\x1b\xde\x84\x10\x9e\x29\x9b\xc6\xc6\xad\xda\xe1\x77\xe8\xe1\xd5\xad\x99\x0c\x8e\xa2\x87\x57\x37\x26\x31\x7a\x78\x46\x8a\x8d\xba\x35\x93\x31\x35\x3b\xe0\xba\x89\xd0\xed\x97\xc7\xc1\x39\x2d\x79\x81\x8c\x84\x1b\xd6\x1d\x63\xeb\x01\xda\xd1\xd1\x33\xd2\x6f\x54\xa2\xd3\x0d\x1d\x3d\xeb\x90\x3e\xa2\xd3\xad\x43\xfa\x90\xd3\xab\x07\x68\x47\x4e\xcf\x3a\xbe\x36\xa2\xd3\x0d\x39\x3d\x43\x4e\xaf\x1e\x5c\x36\x83\x68\xc5\xc1\x39\xed\x01\xda\x07\xd8\x3c\xc0\xe6\x93\x74\xf9\xa4\x90\x1b\x11\xf5\x3b\xc0\x66\x84\xf7\xea\x61\xc9\xa0\xb8\x67\x48\xed\x55\x42\xd6\x0d\x19\x3d\x1b\x91\xcb\x31\x35\x06\x07\x19\x08\xe7\xd5\x83\x01\x31\xa0\x87\x03\x93\xf8\x60\x40\x0c\x4c\x62\xb4\xf5\xea\xe1\x80\x00\x6d\x3d\x43\x4d\xaf\x92\xab\xdc\x10\xd5\xb3\x01\x91\x3c\x1c\x60\x91\x88\xc4\x90\xd8\xab\x04\xa0\x1b\x4a\x7b\x86\xc4\x5e\x3d\x2c\x04\x94\xf6\x0c\x19\xbd\x7a\xd8\x04\x90\xd1\xb3\xc1\x91\xc7\x21\x22\x06\x51\x3d\x43\x4d\xaf\x9e\xae\xcb\x17\x85\x9b\x42\xfa\x0e\xb4\xa3\xa6\x57\x0f\xa6\x06\xa2\x7a\x86\x9a\x5e\x3d\x40\x3b\xa2\x7a\x36\x40\xf1\x03\xb4\xa3\xad\x67\x03\x76\x79\x08\x7e\x41\x69\xcf\x90\xd8\xab\x67\xa9\x4e\x6e\x04\x50\x1f\x38\xce\xe0\xcc\x77\x40\x39\x49\xd2\x6e\x08\xee\xd9\xe0\xcc\xf7\x70\x7c\x36\x40\xef\x01\xe5\x3c\x2c\x19\xb2\xa8\x18\x62\x7c\xf5\x10\x2f\x86\x0a\x9f\xa1\xbb\x57\x0f\x91\x9a\x03\x48\x1f\x90\xd3\x73\xf5\x4f\xea\x04\xd2\x0f\xae\xcf\x51\x55\x27\x23\xcf\xf1\xee\xc0\x2b\x87\xe0\x5e\x3d\x98\xee\x83\xe3\x5d\x24\xf6\xea\xc5\x80\x40\x5b\xcf\x06\xe8\xad\xf8\xf5\xc1\xe1\xc8\x70\x92\x59\x2f\x0e\xa3\xd1\x19\x64\x02\x6a\x6e\x64\x86\x80\xf3\xe8\xee\x55\x45\xba\x93\xfb\xc5\x06\xa6\x3b\x09\xe7\x0d\xc1\x3d\x43\x70\xaf\x92\x67\xde\x50\xda\x33\xb4\xf5\x2a\xe9\x0d\x0d\x6d\x3d\x1b\xe0\x3c\xc9\xc1\x0c\xa5\x3d\x43\x5b\xaf\x5e\x2d\x04\x70\x1e\x19\xbd\x7a\x31\x20\x90\xd1\x33\x84\xf3\xea\x25\x1e\x67\x60\x88\x0f\x0c\x71\x45\xba\x8f\xa9\xcb\x19\x10\x6c\x85\x01\xa4\x93\x80\xa6\x5e\x8e\x77\x07\x98\x4c\x1e\x9a\x7a\x71\x57\x91\x8e\xc6\x06\x48\x7b\xb5\x3a\x40\xda\xb1\xb9\x51\x57\x21\xcf\x08\x72\xea\x72\xf3\xff\x40\x28\x50\xdc\xb3\x81\x1f\xef\x6a\x41\xe0\xc7\x1b\xc0\xf0\x65\x67\x40\x71\xcf\x90\xda\xab\x17\x33\x7b\x80\xb8\x03\xc4\xbd\x38\xb8\x06\x74\x16\xfd\xbd\x7a\x71\x70\x0d\x9c\x7b\xe8\xef\x55\x85\xd6\x0f\x60\x78\x10\x2f\x78\x89\x67\x1e\x20\xee\x00\x71\x2f\x66\x36\x12\x7d\x86\x44\x5f\xbd\x1c\xcd\xa1\xc6\x67\xca\xcc\x73\xb5\x20\x88\x02\x44\x7f\xaf\xde\xa3\x42\x06\x06\x8b\x1a\xc9\x7d\x9b\x9c\x59\x4c\xc0\xf5\xe2\x17\x45\x9b\xcf\x26\xc4\x57\x51\xf4\x48\xf4\x19\x12\x7d\xf5\xc2\x71\xd0\xe6\xb3\x09\xb8\x5e\x9c\xa5\x48\xf4\x19\x6a\x7c\x95\xfc\x5a\x86\x0c\x9f\xa1\xbf\x57\x1f\x66\xf6\x84\x0d\x4f\x8f\x85\xa9\xe4\xd7\xb2\x49\xbc\x20\xa2\x7c\x95\xc4\xff\x86\x36\x9f\x4d\xce\x93\x1f\xe6\xc1\x04\x86\x91\xe8\xab\xa4\xf9\xb7\x09\xe2\x92\x80\xa8\x3e\x96\xce\x84\x22\x23\xd1\x57\x1f\xe6\x01\x99\x87\x0c\xa5\xbe\xfa\x70\xab\x4e\xac\xf4\x09\x64\x3e\x78\x13\xda\x7c\x36\x61\xc3\x8f\xd0\x86\x09\x1b\x9e\x58\xe9\xcf\x5f\x66\x32\x04\xfb\x0c\x89\xbe\xfa\x08\x33\x46\xa2\xcf\x90\xe8\xab\x8f\x43\xe6\x09\x1b\x9e\xe0\xe8\x63\x63\x99\xe0\x28\xf2\x7d\x55\xe1\xfa\xa8\xf8\xd9\x04\x32\x1f\xc7\xd1\x13\x6e\x8b\x52\x5f\x55\xb8\xfe\xc4\x20\x47\xa9\xaf\x92\x35\xcb\x10\xec\x33\x94\xfa\xaa\x22\xf3\x27\xe8\x88\x52\x5f\x25\x6b\x96\x4d\x3c\x93\x93\x88\x98\xc7\x42\x40\xb7\xcf\x50\xea\xab\x8f\x9d\x61\x12\x44\x38\x01\x42\x04\xb5\x6d\x62\xba\x4f\x0e\x99\x1f\x26\x31\x62\x7e\x46\xf2\xa5\xaa\x18\x7e\xa4\xfd\x6c\x36\x06\x19\x9b\x01\x85\x3f\x9b\x98\xee\x6f\x72\x77\x4c\x77\x84\xfe\xaa\x02\xfb\x27\x27\xcf\x93\x83\x8c\x07\xc3\x9a\x80\x2b\xea\x7f\xf5\x2d\x06\x04\x7b\x1e\xa1\xbf\xaa\x57\x00\x26\xa6\xfb\x84\x1a\xbf\xad\xcb\x19\x10\xd0\x51\xd1\xfe\xa4\x7e\x32\xd4\xff\xaa\xa2\xfd\x27\x87\xcc\x13\xc8\x7c\xc4\x1c\x4f\x20\x93\xb4\x50\xf5\x1d\xa6\x0d\xb1\x33\x24\x89\xaa\x0f\x2e\x86\x86\xa0\x91\x24\xaa\xea\x15\x00\xa4\x04\x8d\x24\x51\x55\xaf\x00\x4c\xc0\x15\xf1\xc0\xfa\x20\x68\x64\x8e\x32\x54\x03\xab\xa2\xfd\xe7\xa2\xef\xb8\x29\x1f\xac\x8d\x24\x51\x36\x9d\xf7\x36\x05\xf6\x93\x24\xca\x10\x0f\x6c\x81\x97\x59\x26\x6e\x4a\x72\x45\xb5\xc0\xbe\x84\x94\xa0\x21\x25\xd8\x82\x16\x17\x6e\x4a\x14\x05\x1b\xa9\x16\x6c\xc2\x82\x51\x14\x6c\x64\x7b\x36\x84\x05\x6d\xba\x63\xb2\x05\xce\xbd\xc9\x0e\x65\xa8\x05\xb6\x80\xed\x3d\x41\x5a\x72\x45\x35\x05\xf6\x23\x21\x68\xa4\x85\x6a\x01\xaf\x31\x12\x82\x36\x1d\x70\x1b\xba\xe1\x86\xa0\xa0\x4d\x87\xd1\x46\x7a\x70\x23\x3b\x94\x21\x21\xd8\x02\x06\x39\xd9\xa1\x0c\x09\xc1\x16\xb4\x0c\x41\x5a\x94\x04\x9b\xa2\xfd\x11\x14\x34\x92\x44\xb5\xc0\x0e\x36\x1f\x8d\x7f\xdc\x48\xcb\x90\x97\x6e\x50\x12\x6c\x0a\xe8\x9f\xa4\x54\x46\x57\xb0\x05\xec\x79\x92\x43\xd9\x7c\x34\x9e\x43\x70\x74\x05\x8d\x6c\xb8\x2d\x10\x15\x82\xae\xa0\xa1\x24\xd8\x10\x13\x37\xf2\x40\x19\x99\x9f\x1a\x62\xe2\x86\xca\xa0\x21\x2f\xd8\x02\x71\xa2\xa8\x0c\x1a\xba\x82\x2d\xb0\x60\x11\x14\xb4\xe5\x80\xdb\x14\xe5\x8f\xae\xa0\xad\xc8\xc8\x13\xca\x44\xfe\x28\x43\x2d\xb0\x05\xce\xbb\x91\x09\xb4\x95\x68\x12\x2b\x0e\x61\x40\x43\x18\xb0\x85\xa5\x7f\xd2\x24\x63\x2e\xb1\xb8\x16\xa0\x8a\x3e\x60\x0b\xbc\xff\x85\x4c\xa0\x2d\xf7\x26\xb4\x80\x21\xbe\xf0\x72\x92\xa1\xaa\x05\x96\x0c\x89\xaa\x8c\xd4\x54\x2d\xe0\xae\x42\x11\xd0\xc8\x42\xd5\xc2\x53\x21\x77\xcf\x3c\x4d\xf6\xa3\x05\x54\xae\xc2\x80\xb0\x1f\xa1\x16\x68\x8b\xf4\x71\xe1\xd1\x78\x50\x71\x39\x0e\xb6\x88\x67\x0a\x0d\x40\x43\x03\xb0\xc5\xf8\xcf\x41\x99\x64\xb8\xb2\xe5\x20\xd9\x62\x54\x35\x34\xcd\x41\xb2\x21\x15\x6e\x88\x00\x1a\x42\x7f\x2d\xc2\xde\x56\xa3\x67\x8d\xcb\x4d\xff\xe4\x72\x37\xeb\x5b\x24\x3a\x04\x85\x3f\x43\xd3\xaf\x45\x82\x9f\x50\xf1\xb3\x35\xe8\x04\x9c\x6c\xe1\x84\x54\x7e\xad\xc8\x9b\x2e\xa8\xf8\xd9\x72\xf0\x69\x91\x19\x8d\x6e\x9f\x2d\x0f\xe3\x6b\x91\xe8\x3a\x54\xfc\x0c\xf9\xbe\x16\xab\xfe\xc9\x4c\x99\xd4\x49\x74\x1d\x2a\x7e\x86\x7c\x5f\x8b\x44\x70\x2c\x78\xde\x5a\x0c\x61\x63\xb0\x39\x5b\x59\x4e\xfe\x3c\x77\xbc\x17\x32\xcd\x17\x3d\xd2\x8c\x06\x9f\xd0\xf4\x6b\x64\x3f\x37\xa4\xfd\x6c\x81\x4f\x8a\xe1\x47\xe1\xcf\xd0\xf4\x6b\x51\x33\x1a\x7c\x5a\x9b\x26\xf1\x32\x0b\xba\x7d\x46\x8a\xb1\x16\x39\x6c\x44\xc5\xcf\x50\xea\x6b\x48\x84\x1b\xda\x7c\xb6\x0e\x23\x8f\xc5\x82\x44\x9f\x2d\x92\x95\x46\x36\x96\x05\x13\x44\xb7\xaf\x29\x86\x1f\xdd\x3e\x43\xa2\xaf\x45\x2d\x08\x48\x1f\x6a\x7c\x2d\x6e\xee\x8e\xed\x8d\x1a\x5f\x8b\x5b\x97\x53\x27\xc9\x4a\x23\xbb\xcd\x22\x7a\x05\x89\xbe\x16\x31\x63\x90\xe8\x33\x24\xfa\x5a\x24\x18\x7b\x71\x20\x8c\x44\x5f\x8b\x9c\x98\x20\xd1\x67\xa8\xf1\xb5\xc8\x89\x09\x6a\x7c\xb6\x49\xe9\x1b\x59\x4f\xa8\xf1\xd9\x0e\x8c\x27\xeb\x69\x63\x66\x6f\xf0\x29\xb2\x9e\x50\xe3\xb3\x4d\x06\xd3\xc8\x16\x84\x0c\x9f\x6d\x00\x26\xb1\x05\x6d\x00\x66\xbb\x0b\xb4\x25\x22\x38\x90\xe1\x33\x54\xf5\x5a\x22\x82\x03\x71\x3d\xdb\x6e\xef\x36\x54\xcb\x6d\x13\x93\x82\x48\x5e\x4b\x2e\xd0\x60\x88\xe4\xd9\x06\x60\xc8\x81\x66\x9b\xb3\x95\x0d\xc0\x24\x0e\x19\x37\x36\x2d\x5a\x79\x2d\x71\xe4\xb1\x39\x46\xd9\x64\x5a\x45\x8b\xdc\x36\x04\x6d\x67\x1a\xcf\x92\xd9\x00\x0c\x5a\x79\x2d\x71\xba\xb1\x49\xe4\xbe\x0b\x97\xb3\x64\x36\xa7\xc4\xdb\xcd\xd7\x86\xc2\xb8\x21\xae\x67\xa8\xea\xb5\xd4\x74\xf9\xa0\x70\x51\x58\x29\xdc\x14\xd2\x78\xd6\x11\x32\x7c\x86\xfe\x5e\x4b\x04\x6b\x20\xc3\x67\xa8\xe9\x35\xbd\x41\x80\x7e\x9e\x6d\x92\xec\x25\x96\x0c\x32\x7a\x86\x70\x5e\x4b\x44\x66\x6f\xa8\xdc\x6e\x8c\x27\x3b\x03\x32\x7a\xb6\x1b\xe3\x89\x4d\xb3\x89\x34\x41\x46\xaf\x25\x6c\x1a\x64\xf4\x0c\xc5\xbc\x96\xb0\x69\x50\xcc\x33\x34\xf2\x5a\xe2\xd0\x7e\xc3\xc5\x76\xa7\x49\x2c\x19\x54\xf1\x0c\x1d\xbc\x96\x88\xf5\x40\x07\xcf\x76\xa7\x9b\xac\x0e\x24\xef\x6c\x0f\x9a\x04\x17\x43\xf2\xce\x90\xbc\x6b\x89\x85\x80\xd6\x9d\xed\xc9\xdd\x61\x58\x1b\x58\xdb\xc0\x9a\x5e\x40\xd8\x04\xfc\xed\x49\x9d\x9a\xde\x93\x6e\x4e\xda\xc9\xce\x80\x54\x9e\x21\x8e\xd7\x8c\x58\xa4\xcd\x39\xf2\x76\x1f\x64\x33\xb6\x0b\x14\xf3\x6c\x3b\x17\x6b\x7a\x2b\x61\xe3\x7c\x44\x23\xaf\x19\x46\xfe\xe6\x14\x06\xc5\xbc\x66\x51\xff\x64\x82\x39\xe4\x35\x4b\x74\x93\x40\x95\xed\x90\xd7\xf4\xaa\x02\x32\x7a\xb6\xfd\xd8\xa6\x19\x8e\xad\x4d\x70\xf3\xde\xdc\x9d\xbd\x63\x73\x8e\x8c\xe0\x5e\x43\xdf\xdc\x36\xa1\x81\x08\xee\x35\xcb\xfa\x27\x13\x0c\x82\x66\x6c\x28\x08\xee\x19\x89\x02\x9b\x69\x75\x80\x8a\x1b\x82\x66\x5a\x1d\x10\x34\x04\xf7\x1a\xf2\xe8\xb6\xb1\x7a\x37\x58\x67\x38\xcb\x10\xdc\xb3\x7d\x19\x4f\x2d\x04\x10\x0c\x89\xbd\x66\x10\x9f\x0d\xc3\xda\x30\x2c\xbd\x63\x40\x62\x42\x43\x85\xaf\x19\xb1\x48\x1b\x86\x85\x18\x5f\x33\x88\x0f\x2a\x7c\x86\x0a\x5f\xd3\xdb\x08\xa4\x30\xb4\x13\xb8\x11\x73\xfe\x60\xe0\x1e\x60\x8d\xe4\x60\x76\xa0\x5d\x27\xd0\x4d\x16\x02\xea\x7d\x86\x42\x5f\x33\x16\x02\x42\x7d\x76\x22\x43\x87\x5f\x0c\xbd\x3e\x3b\x91\xc6\xc3\x9b\x50\xef\xb3\x13\x19\x90\xff\x83\x23\x8f\xc3\x01\x11\x9a\x7e\x0d\x3d\x76\x43\xcc\xcf\x50\xea\x6b\xc6\x91\x07\xf9\x14\x8d\x7c\x8a\xcd\x60\x5a\x07\xd7\xe2\x01\x47\xd1\x63\x37\x04\xfb\xec\x18\x03\xc3\xd2\x41\xb0\xcf\x8e\x23\x67\x33\xb6\x0b\xd4\xf8\xec\x18\x83\x7d\xf5\x4f\x1f\x6c\xb2\x32\x36\xe3\x80\x1d\x89\x3e\x43\x63\xaf\x19\x6f\x8c\x1d\x3c\x7e\x07\xc8\x34\x76\x06\xc4\xf5\xec\xc0\xc9\x32\x3b\x03\x1a\x7b\x76\x80\xcc\xcc\x7a\x42\x71\xcf\x0e\x98\xa7\xd7\x1f\x90\xd3\xb3\xe3\x7e\xbc\x96\x71\x14\x23\xa7\x67\x87\x8c\x9b\x99\xa5\x73\xa0\x5d\x08\xe8\xb5\x6c\xba\x9c\xbe\x83\x79\x7a\xa9\x01\xe5\x3c\x43\x39\xaf\x65\xde\x25\x46\x39\xcf\xd0\xc3\x6b\x7a\xa9\x01\x3d\x3c\x3b\x20\x19\xba\xf1\x86\xbc\x9d\x91\x4b\xb2\xe9\x55\x85\x83\x23\x0e\x95\xbb\x96\xf1\x09\xa3\x72\x67\xa4\x94\x6c\x19\xf7\x2f\x9a\x77\x86\xd8\x5d\xcb\xbc\x69\x4f\x66\x49\x43\xe5\xae\x65\x6c\x86\x03\x6b\x3b\x93\xa1\x23\x72\x0b\x95\x3b\x43\xd7\xae\x65\x22\xc9\x11\xb4\xb3\x03\x41\x23\x9d\xb1\x1d\x08\x1a\xba\x76\x2d\xe3\xd8\x42\xde\xce\xd0\xb5\x6b\x99\xe3\x3e\xe4\xed\x0c\x5d\xbb\x96\x39\xcd\x3e\x40\x11\x89\x22\x5b\xc6\x4a\x27\x5f\xa4\x21\x53\xd7\x32\x78\x7f\xc0\x12\xd4\xea\x5a\x5e\x74\x13\x5f\x1b\xc2\x74\x2d\x63\x33\x1c\x60\x03\x99\xba\x96\x35\x69\xb1\xeb\x0e\x99\xdf\xc9\x71\x6c\xc8\xd4\x19\xc2\x74\x4d\x2f\x4a\x1c\x4c\x38\x34\xe8\x9a\xde\x89\x38\x60\x09\x1a\x74\x2d\x43\x67\xc8\x4f\x69\x88\xcf\x35\xbd\xfe\x70\x41\x08\xe4\xe6\x5a\xe1\xf4\x0d\xd5\x39\x43\x4a\xae\x15\x4e\x37\x2e\x2f\xc2\xa2\x13\xd7\x0a\xb1\x1e\x97\x75\x4f\xee\xca\x46\x3e\x62\x23\x85\xa5\x5d\x88\x4f\xe1\xcc\xe2\xb2\xee\x2f\xeb\x5e\xaf\x3f\x5c\x56\xf1\x4d\xd4\x09\x36\x23\x3a\x67\x97\x55\x5c\xd0\x77\xb8\xd8\x60\xd7\x17\x73\xd3\x9b\x0e\xe8\xd2\x19\x82\x74\xad\x40\x67\x2e\xa7\x06\x97\xcc\xda\xa4\x63\xb4\xcb\x01\xc1\x85\x37\x15\xfc\x4d\x28\xd8\x19\x2a\x75\x8d\x94\xc3\x76\xf1\x76\x5d\x72\x70\x17\x38\xce\x05\x04\x2e\x20\xa0\x37\x1d\x90\xb5\xb3\xeb\xf6\x59\x2b\xb8\x6a\x11\xab\xb3\x9b\x69\x12\xc7\x13\x17\x1f\x16\x2a\x75\xad\xe0\xaa\x45\xac\xce\x50\xa9\x6b\x7a\xfd\xe1\x62\xad\x5d\x90\x41\xaf\x3f\xa0\x60\x67\xd7\x39\x55\x43\xc2\xde\x2e\x6e\x7f\x34\xeb\x5a\xe1\x85\x5d\xc4\xea\x0c\x41\xba\x56\x78\xe9\xe6\xe2\xc3\xba\xc0\x45\x59\x2a\xa4\x9d\xc0\x85\x5e\x7f\xb8\x48\x0f\xa0\x52\xd7\x10\xa6\xb7\x0b\x45\xba\x95\xc6\x33\x3f\x51\xb0\xb3\xdb\x78\x70\x44\x16\x5e\x1c\x5b\xb7\xf1\xe0\x30\x5f\x2f\x18\x82\x90\x5d\x2b\xc8\xeb\x5c\x1c\x5b\x17\x60\x29\x38\x77\x2e\xc0\x72\xe1\x4d\x7a\xd3\xe1\xa2\x47\x80\xc8\x5d\x2b\x90\x94\xcb\x01\xc1\xed\x34\x1e\x0e\x7e\x39\x20\xb8\x9d\x1b\x71\x12\x81\x2a\x9e\x5d\x70\xa9\x72\x12\x71\xc1\xa5\xeb\xa6\x62\xab\x70\xf0\xcb\x7b\x16\x68\xe4\xb5\x0a\xd2\x5e\x18\x16\x8a\x79\xad\x82\xb4\x48\xe5\x19\x1a\x79\xad\x26\x5d\xce\x80\x60\x4d\x56\x90\xf6\x72\x10\x7c\xe1\x62\x15\xe7\xce\x85\x8b\xa1\xad\xd7\x2a\x3e\xd6\x0b\xed\xba\x20\x98\x5e\x6a\xb8\x04\xfa\x5d\x07\xb2\x56\x89\xb6\xb8\x9c\x2f\xdc\x5f\x56\x54\xee\x0e\xed\xba\xca\x8a\x8a\xcb\x06\xc1\x3d\x43\x70\xaf\x55\x30\xf9\x72\x94\x70\xf1\x76\x55\xa8\x07\xda\x7a\x86\xb6\x5e\xab\x38\x62\x2e\x0c\xeb\x6e\xea\xe4\x70\x19\xa5\x3d\x43\x62\xaf\xd5\xae\x7f\x32\x15\xdd\xe9\xd5\xaa\xe6\xe7\xd6\x8d\x18\xa5\xae\xcb\x19\xf9\xc3\xdd\x09\xc1\x40\x93\xcf\x10\xe3\x6b\x15\x3e\x72\x71\x96\x21\xb8\xd7\xaa\xa6\x37\x50\x79\x2f\xcf\x08\xcf\x29\xa2\x7a\x76\x71\x81\xf9\xeb\x04\xff\x40\x28\x2e\x11\x7b\x17\x4e\xa6\x77\x0d\xee\x55\xdd\x3c\x40\x00\xfb\x72\xe8\x70\xb1\x3f\x2b\x07\xd7\x17\xfb\xf3\x82\xb8\xc8\xe3\xdb\xc5\xd4\xbc\x20\x6e\xd5\x2a\xc1\xd4\x44\xb7\xaf\x55\xfc\xa2\x97\xe3\x09\xe4\xfb\x5a\x65\x95\x3c\x42\x70\x1e\x9c\xac\x62\x94\x3e\x5e\x4d\x7b\xd0\x2f\xbd\x41\xf0\xa0\x5f\xc8\xf7\x35\xbd\x41\xf0\x78\x35\x0d\x31\xbf\x56\x61\x19\x88\xf9\xd9\xc3\x15\xd6\x38\xb8\x7e\x00\x36\x0a\x7f\xad\x01\xed\x88\xf9\x19\xc2\x7b\x4d\xaf\x15\x20\xbc\x67\x48\xed\xb5\x86\x1f\xe7\x25\xfd\xd3\x9f\x7f\x83\x65\x20\xbc\x67\x08\xef\xb5\x96\x68\x12\x0c\xeb\x81\xb8\x8d\x53\x38\x64\xf8\xec\x39\xc6\xb6\x06\xcb\x40\x86\xcf\xd0\xdf\x6b\x7a\x59\xe0\x01\xae\x08\xef\x35\x54\xeb\x0d\xe1\x3d\x7b\x30\x2c\x54\xeb\x0d\x71\x3d\x43\x55\xaf\x35\xce\xd6\x1e\xe0\xfa\x00\xd7\x86\x73\xe7\xa1\x00\x83\xd4\x5e\x6b\xc4\xb3\x3e\x0e\x5a\x51\xd5\x6b\x8d\xf7\xd5\x10\xd7\xb3\x07\x8e\x36\x50\xfc\xe1\x0a\x7b\xe0\x68\x83\xa0\xa3\xb8\x67\x0f\xab\xb2\xe1\x99\x44\x71\xcf\x90\xda\x6b\x8d\xb9\xff\x80\x4c\x84\xf7\x5a\x83\x8b\x23\xbc\x67\xcf\x41\xb2\x35\xce\xd4\x90\xe1\x33\xf4\xf7\x5a\x9b\xfa\xa7\x2e\xa7\x9d\x88\x50\x21\xbc\x67\x08\xef\x35\xbd\x56\xf0\x30\x35\x1f\xe8\xd8\xc0\x7b\x14\xf7\x0c\x55\xbd\xd6\x98\xc9\x88\xeb\xd9\x03\xf3\x1a\xc7\x67\x88\xeb\xd9\x03\xde\x1a\xd0\x8e\x8e\x9e\x21\xa0\xd7\x1a\x67\x6a\xe8\xe8\xd9\x9b\x5c\x8e\xcf\x05\xc9\x3c\x7b\xd0\x2e\x34\xe8\xed\xf1\xce\xeb\x9b\xd4\x49\x20\x1d\xca\x79\xf6\x30\x20\x1b\x81\x74\x0f\x24\x7b\x80\x16\x72\xf3\xf6\x20\x68\x0f\x03\xb2\x73\x28\xf6\x30\x20\x1f\xce\xb2\xae\x49\x0b\x68\x3d\x40\xab\x43\x3d\x1e\xa0\xf5\x00\xad\xae\xf9\x09\x68\xa1\xaa\xd7\x7a\xd2\xe5\xb4\x13\x67\x59\x07\xc5\x1f\xa0\xf5\x00\xad\xce\xd1\xf1\x03\x9f\x1e\xb6\x62\x87\xa4\x3c\xa2\x57\xd0\xdf\x6b\x5d\x93\x16\xf1\x14\x84\xf7\x5a\xc7\x56\x44\x5b\xcf\x1e\x48\xd6\xb1\x15\x1f\x48\xf6\xc0\xa5\x0e\x1f\x41\x7e\xcf\xd0\xdd\x6b\x1d\x1f\x3b\x82\x7b\xf6\xf0\x76\x75\xdc\x2b\x0f\x08\x7a\x78\xbb\xf4\x52\xc3\x03\x82\x1e\xa4\xaf\xfb\xf9\x57\x46\x9a\x2f\xa3\xc2\xd7\xba\x47\x46\xe4\xe0\xe7\x9e\x39\x00\x41\xdd\xcf\xbf\x72\x70\xb3\x30\x87\xc0\xe3\xf0\x99\x9c\x91\xe6\xcb\x01\x6f\x3c\xaf\x3f\xe4\xe0\xf4\x30\x07\xbc\xf1\x7d\x70\xa3\x48\x9d\x30\x41\x94\xe5\x33\x92\x7e\x39\xe0\x02\x23\xab\x78\x0e\x91\x3a\x23\x75\x3a\x26\xe7\xe0\x47\x9c\x39\x24\x46\x7e\x71\x77\x47\xa9\x8c\xea\x5f\x43\x59\x3e\x07\x72\xce\x06\x38\x63\xf7\x60\xa2\x8c\x22\x60\x0e\xd0\xc3\xee\x4a\x3a\x39\x90\x73\x36\x00\x56\xdd\x83\x89\x32\xc2\x80\x39\xe0\xb7\x47\x83\x3e\x07\xe3\x46\x80\x15\xef\x44\xe4\xe0\xbc\x30\xa3\x01\xd8\x78\xfd\x21\xa3\x01\x98\x51\xfd\x6b\xdd\x05\x44\x72\x30\x1a\x8f\x8d\xd8\x2f\x03\x92\xa9\x13\xce\xd8\x7d\x75\x64\x14\x01\x73\xc0\xc3\xdf\x1f\x7d\x77\x22\x99\xd1\x07\x6c\xdd\xd9\x7a\x0e\x99\xa1\xcb\x0c\xdd\xa3\x49\x99\xa1\xe3\x2c\x00\xb5\xfa\x8c\x4c\x60\x46\x1f\xb0\xf1\xf6\x44\x0e\x85\xe7\xee\x46\x65\xe3\xed\x89\x8c\x4c\x60\x46\x18\xb0\x8d\xc0\x20\x17\x7a\xe4\x38\xd8\x46\xa4\x9b\x64\xcd\x46\xf5\xaf\x8d\xc8\xd3\xac\x3c\x62\xf7\xae\xb5\x11\xb9\xbc\x32\xc8\x00\xe0\x70\xcf\x7e\x0e\xa4\xd2\x0e\x70\xc6\x91\x18\x10\x87\xc3\x8c\x30\x60\x43\xd7\x3e\x23\x0c\x98\x03\x07\x03\xe8\xda\xe7\xd0\xa8\xd3\x71\xb0\x8d\xcc\x3f\x3b\x3d\xc2\x18\x1d\x99\x26\x75\x9e\x11\xa7\x05\xa3\xd0\xf8\xce\xe5\x6e\xa8\x36\x5e\x90\xc8\xa1\xd3\x24\x50\x11\x09\xfb\x1c\x06\xdd\x04\x15\xfd\xb5\x87\xff\x4c\x28\x32\xaa\x81\x39\x60\xa9\x8e\xc6\x53\x1d\xd4\x8d\xa5\x3a\x1a\xcf\xca\x59\x5f\x46\x27\xb0\x8d\x4e\x27\x48\xbe\x1d\xf0\xb9\x8d\xce\x63\x99\x74\x02\xf2\x87\xe8\x7d\x0e\x93\x4e\x70\x94\x30\x06\x37\x5a\x5c\xce\x01\xc1\x18\xfc\x73\x33\x30\x38\xcd\xc6\xa4\xbb\x9b\xc1\xc6\x7c\x1d\x53\xff\x64\x95\x00\x84\x63\x31\x5a\x9b\xc9\x0b\xe6\x8d\x4d\xe1\x61\x60\x20\x6a\x08\xd4\x67\x94\x01\x73\xe0\x00\x73\x6c\x66\xdf\x61\x4e\x1d\x26\xc5\x61\x5c\x0f\xf3\x14\x4a\x37\xb4\xc8\x0e\x13\x0d\x43\x77\x1c\x96\x0e\xc9\xb7\xd1\x09\x6c\xe3\xd2\x4d\xf2\x6c\xa3\x05\xd8\xc6\x63\xe1\x3e\x9a\xc4\x59\xe5\x78\x5c\xfe\x98\x3e\xa0\xe3\xd0\x82\x20\xa5\x76\xc0\x93\x36\x03\x3d\x7a\x0c\x32\x9e\xb4\x19\xe8\xd1\xe3\xc1\x01\x99\x93\x05\x11\x81\xcc\x88\x27\x6d\xba\x79\x90\xd1\x10\xcc\x91\x03\xcc\xe9\x3a\x14\x39\x82\xa3\x28\x0a\xb6\xe9\xde\xce\x8c\xb0\x60\x46\x51\xb0\x4d\x27\x53\x39\x3a\xb1\xcb\x28\x0a\x36\xf4\xed\x73\x74\x62\x97\x11\x0f\x6c\xbc\x28\x91\x63\xe4\x72\x3c\x69\x33\xd1\x24\x20\x13\xf1\xc0\x36\x8d\x7f\x26\xda\x89\x5f\x6c\x66\xea\x4c\x34\x09\xd6\x86\x94\x7d\x8e\x89\xcb\x1d\x0f\xdb\xcc\xd4\xe9\xc6\x73\x46\x3c\xb0\x4d\x67\x58\x19\x0d\xc1\x8c\x24\x60\x9b\x2c\x1d\x94\x01\x33\xea\x7f\x8d\x37\x1d\x32\x22\x80\x19\xa1\xbf\x36\xdd\x24\xce\xe8\xfd\x65\x14\xfe\xda\x6c\x34\xc9\x21\x2c\x23\xe6\xd7\xd0\xa0\xcf\xe8\xf6\x65\x24\xfa\xda\x74\xeb\x22\x47\x27\x68\x39\xe2\x17\x9b\x1e\xcb\x9d\x11\xec\xcb\x28\xf5\x35\x84\xe9\xff\x3f\xc2\xee\x27\x87\x42\x5c\xc9\xf3\xfd\x3c\x57\x71\x77\xf0\x0e\x10\x61\x87\xa5\x9c\xbd\x71\xf7\x1e\x00\x83\x54\x83\xaa\xba\xba\x5d\xb5\xff\x56\xfa\x83\xd4\x52\x4d\x72\x70\x26\x08\xb0\x31\xf6\xcf\xf1\x8f\xef\x09\xc0\xbe\x80\xe8\xeb\xe7\xf8\x2e\x37\x9e\x94\xec\x3c\xb5\xde\xbc\xb8\xe6\x9e\xa7\x67\x6f\xee\x29\x6b\xe0\x03\x84\xd8\x9a\x7b\xb2\xef\xce\xcb\xd0\x35\xa3\xd4\x3c\xfb\xa5\xf3\x5d\xe7\x29\xd9\xb9\x2c\xac\xd8\x96\x2f\x1c\x1b\xab\xed\xb4\x05\x01\xef\x05\xf0\x5e\x3f\xa7\x7b\x2e\x47\x37\xa0\xf6\xfa\xb9\x22\x92\x81\xb8\x17\x50\x7b\xfd\x7c\x74\x9e\xbc\xa1\xe9\x75\x0c\xfa\x00\xd5\x8b\x4d\x32\xf4\x7c\x74\x69\xe9\x5a\x00\xe7\xf5\xd3\x6e\xb3\x0d\xaf\x63\x78\xf6\xd7\xe5\xc3\xb3\x73\x74\x4f\x1b\x0b\xa8\x5e\xc0\xe8\xf5\xeb\xe7\xf2\x53\xe7\xc9\xda\xf5\xf3\x44\xa7\x77\x24\x95\x70\x6d\xa6\xcd\xa9\xf3\x64\xed\x5a\x35\x14\x01\xa3\x17\x30\x7a\xfd\xda\xbe\xcb\xbd\x23\xf9\x85\xeb\x5b\x08\x97\x77\x44\xeb\xae\x6f\xce\x5f\xee\x29\x6d\x7a\x7d\x73\xfe\x72\x39\xf7\xd5\xf7\x0b\x81\x98\x17\x9b\x5c\x80\xaf\x12\x62\xbb\x8d\x12\xa7\xf4\x4a\x73\x89\xd6\x6d\x64\xed\xfa\x66\xf2\xd4\xfa\xd4\xf9\x66\xce\x4f\x23\xcf\xbe\xbb\x9a\x86\xa6\x55\x3c\x8d\x52\x77\xf9\x63\x94\xc8\xda\xd5\x3d\xe6\xe3\x9e\x3c\xd5\xab\x3c\xe6\x63\xe4\x1f\x03\x42\xfc\x51\xf1\x62\x53\x97\x71\x7d\x73\xfe\xd1\x4f\xce\xe8\x35\x5c\xfe\xba\xa7\xac\xc1\x35\xf4\x93\xd6\x21\xe6\xf5\x6b\xb8\xfc\x35\xf2\xb4\xee\x3a\xf5\xf3\xd5\x10\xad\xbb\xd8\x62\x88\x79\x81\x98\xd7\xaf\xf5\x41\x5c\x20\xe6\xc5\x4e\xeb\x2e\x06\xda\x4e\xeb\x76\x1e\xea\xb5\x4a\x57\x03\x46\x2f\x60\xf4\xfa\xc5\x40\x43\xcc\x0b\x8c\xbc\x8e\x80\x1f\xfb\x12\xb9\xc0\xc1\xeb\x08\xf8\xb1\xaf\x70\x7f\xc0\xe1\xf5\x8b\xd9\x85\x8a\x17\x70\x78\xfd\x9a\xfa\x49\xeb\x76\x6e\xab\x4f\x14\x02\x1c\x2f\x76\xe6\xe1\x65\x75\xec\xcc\xc3\x9d\x79\x78\x59\x1d\x3b\xf3\x70\x17\x52\xbc\x56\x3d\x6b\xec\x54\x11\x4d\xaf\x5f\xaf\x2e\xed\x5a\xa7\x8a\x17\x5b\x0c\x5b\x2f\x76\xe6\xe1\xbd\xbe\x8a\x8e\x9d\x79\x88\xad\xd7\xef\xdf\x77\xa6\xcb\x19\x7d\xf7\xf6\xb7\x1c\x8a\x40\xdc\x8b\x9d\x9d\x77\x6f\x1e\x22\x8c\x2b\x47\xf7\xb6\x33\xc0\xe9\xc5\xce\xce\x83\xf1\x8f\x9d\x8e\x62\xe5\xf5\x7b\x95\x82\xc7\xce\xa4\xdb\x39\xba\xbe\x89\x88\x9d\x49\x87\x9c\xd7\xef\x70\x4f\x9a\xb7\x8b\xe3\xdd\x61\xb0\xbb\xd1\x62\x93\xdd\xe9\x05\xf6\xef\x4c\x0d\x35\x63\xd0\x35\x44\xf3\x7c\xe9\x10\x3b\x79\xdb\x57\xbd\x6f\xbf\x2d\x1d\xe4\xbc\xd8\x19\x6a\x77\xff\xce\xf4\xfe\x25\x08\xee\xae\x75\x16\xd6\x4e\x8a\x7c\xd4\x10\x78\x78\x81\x87\xd7\x6f\x9b\xc0\x4e\x9f\x10\xf0\xfa\x6d\x13\x00\xc2\x0b\x04\xbc\x7e\xaf\x44\x56\xec\xf4\x69\x3f\x0d\xf2\x0a\x96\x06\x3a\x5e\xe0\xe1\xf5\x9b\x89\xb4\xd3\x27\x58\xbc\xee\x4b\x87\x40\xc7\x0b\xe8\xbb\xee\x4b\x87\x80\xbe\x0b\xe8\xbb\x7e\x5f\xfa\x49\xb4\x10\xf0\xfa\xcd\x8d\xd9\x97\x87\x1b\x08\x78\xfd\xfe\x56\xc9\xe5\x6d\x32\xd0\x6e\xc6\x14\xf4\x5d\xec\xca\x3a\xc0\xf9\x03\x08\x2f\x50\xee\xfa\x6d\x67\x40\xb9\x8b\x7d\xea\x12\x3f\x64\x27\x5a\x10\x76\xfd\x7e\x4d\x86\xa9\xf3\x8a\x35\xe6\x4f\x43\x8f\xc9\xb0\xac\xaf\x3e\xd9\x38\xfb\xe3\x1d\x49\x3a\xcc\xcd\x7b\x7f\xb4\x4e\xb4\xe6\x6e\xe4\x1f\xef\x9d\x68\xcd\x6f\x2a\x12\xad\x9d\x68\xcd\x6f\x2a\xbe\x26\x03\xd1\x9a\x54\x1c\xd0\x2e\x00\xed\xfa\x3c\x34\x44\x9f\xb0\xeb\xfa\x64\xb9\x1c\xf4\x09\xbb\xae\x4f\x46\x3f\x76\x5d\x60\xd0\x75\xcc\xfc\x80\xa2\x0b\x0c\xba\x3e\x57\x18\x28\x8e\x15\x02\x8b\x43\x35\xd8\xa4\xf7\x50\x74\x71\x6c\x9e\x68\xc5\x86\x02\x8a\x2e\x60\xe6\xfa\x6c\xdf\xe5\x8f\x83\xba\xb4\x0a\x7f\xe2\xe0\x94\x1e\xbb\x51\xea\xba\xb4\xec\xad\x38\xf8\x9f\xb3\xbe\x33\xdd\x93\x96\xf8\x00\x21\xd0\xe6\xe2\x10\x2c\x9b\xec\xfa\x63\xa5\x27\xe2\xa0\x25\x93\x9b\x7d\xd0\x92\x83\xd9\x35\x87\x2e\x85\x01\x51\x37\x36\x4f\x67\x2e\xb9\x89\x83\x57\x39\x4f\x43\x17\x1e\x93\xb0\x4c\x2a\x7e\xac\x78\x5a\x60\xcf\xf5\xc9\x72\x81\xa0\x8b\x23\xf5\xf3\x76\x66\xea\xa7\xf4\x84\x0f\x10\xe2\x48\xe3\xc9\xab\x9c\x6c\x1c\x5c\xba\x00\xa4\xeb\x50\xfb\x71\xa4\x86\x94\x75\xf8\x00\x21\x70\xe9\x02\x90\xae\x4f\x1e\x35\x2e\x5d\x00\xd2\xf5\xf9\x7c\x67\x7a\xc5\xac\xb6\xc9\xa3\x3e\x56\xb2\x22\x0e\x06\xda\x64\xce\x80\xd5\xc5\x41\xac\xa6\x39\x0f\x41\x17\xa0\x73\xfd\xf9\x7d\x07\x9d\xc9\xec\xf2\x55\x42\x40\xc9\x05\x94\x5c\x7f\x76\x03\x52\x1a\xe2\x40\x3e\xe4\xf7\xa8\xef\xf2\xd7\x41\x03\xc2\x81\xc4\x97\xeb\x50\xfb\x71\xb0\xb0\x0e\x16\x96\xcf\x0a\x02\x6d\x2e\x60\xe6\xfa\xc3\xa7\x3d\x86\x19\xc2\x98\x7a\xc2\x3d\x4f\x97\x73\x07\x9f\x55\xa9\x19\x07\x77\xf0\x10\x56\x7b\xd6\xf7\xfd\x01\x2c\x17\x87\x04\xc1\xf3\xcd\xf9\x4b\x97\xd4\x65\x3c\xdf\x9c\x27\x41\xf8\x72\xfd\x61\x98\x1f\x97\xc7\x94\xf7\x7c\xbe\xe9\x7d\x99\x0c\xb2\x06\xcf\x37\xbd\x6f\xf7\x5c\x21\xb7\xfe\x74\x0d\xdd\x26\xed\xed\x31\x85\x96\x0e\x66\xd7\x21\xac\xf6\x7c\xd3\x9b\x37\x79\x30\xbb\x7c\x4e\x10\x07\xb3\x0b\x89\xae\x3f\xa2\x48\x10\x74\x81\x3d\xd7\x1f\xe6\xf6\xc1\x47\x3c\x14\xb9\xbe\xc7\x77\x50\xe7\x05\xf1\xdf\x30\x4a\xd4\xe6\x10\xaf\x57\x80\x1e\xc0\x72\x71\x50\x9b\xf7\x1b\xba\xd7\x78\x52\x9b\xd7\x28\xe1\xcb\x45\xf0\xfc\xde\x95\xb0\x0e\x28\xb9\x80\x92\xeb\x6a\xcd\x23\x56\x94\x2c\xa0\xe4\xfa\x6b\x94\x82\x35\x84\x28\xd7\x5f\xa3\x04\x2c\x17\x41\xac\x5e\x61\x00\x0c\xb9\x08\x71\x31\xb5\xe6\x11\x9c\x3c\x28\xb9\xfe\x0e\x0d\x89\x8b\x85\xb8\xd8\x3b\xfe\xf6\xcf\xc1\x02\x75\x2e\x82\x55\xa4\x10\x3d\x62\x99\x43\x01\x37\xd7\xd5\x9c\x07\xce\x5c\xe0\xcc\xf5\xf7\x32\x06\xf4\x09\x67\xae\xab\x24\x0f\x48\xb9\x08\xe9\xd3\xd7\x0e\x06\x29\x17\x41\xb4\x5e\x81\x38\x48\xb9\x80\x94\xeb\xef\xed\xc9\xe8\x13\x88\x5c\x57\x49\x1e\x21\x14\x86\x1e\xd7\x55\x92\x47\x08\x70\x05\x5f\x51\xd1\x78\x40\xca\x45\x10\xad\x97\x9d\x17\x44\x2b\xe8\xd3\x4b\x36\x50\xe7\x02\x59\xae\xbf\x4c\x3a\x80\xb9\x08\x52\xf4\xae\x6c\x61\x44\xba\x7c\x85\xfd\x4b\xd1\x78\x04\x29\x82\x9b\xab\x9f\xad\x12\x67\x2e\x70\xe6\xea\x27\x14\x16\xec\xa6\x58\x52\x54\x3f\x5b\x25\xf8\x5c\xc4\x0a\x7e\xd5\xcf\x56\x19\xdd\x78\x76\x0d\x51\x08\x28\xba\xc0\xa0\xab\x1f\x03\x2d\x88\x16\x06\x5d\xfd\x56\x19\x5f\x84\x50\x58\x2c\x25\x2b\x8c\xf7\xc0\xa7\x0b\x60\xba\xfa\xd9\x2a\xf1\xe9\x02\x91\xae\x80\xdf\x23\xca\x3b\x2a\xf7\x34\xf7\xf1\xe9\x02\x67\xae\x14\x78\x07\xce\x5c\xc4\xf0\x98\xdf\xdc\x1f\xdf\x99\x73\x1d\xfc\xa6\xb9\x68\x17\xb2\x5c\x29\xdb\x8e\x38\xbd\xe2\xa5\x5d\xf5\x2b\x03\x72\x6a\x7d\x99\x5d\xf5\xb3\xad\xa1\xc7\x45\x2c\xd1\xaa\x1f\x5b\x2c\x18\x53\xb1\x8c\xa9\xfa\xd9\xac\xb0\xe4\x22\x2e\xf7\x5c\x1f\x07\x05\x96\x5c\xc4\x65\x90\x45\xa6\xb0\xe4\x22\x6e\x97\x7f\xb3\x4e\xb4\x2b\x6e\x4f\x34\xbf\x83\x06\xf9\x36\x20\xdf\x04\xa3\x4f\x40\x6f\xa5\x46\x3a\xf0\xde\x22\x56\x35\x58\x6d\x3f\x6f\x93\x3e\xa1\xbf\xd5\xf6\x4d\x1b\x66\x57\x2c\xb3\xab\x54\x53\x47\x4c\x8f\xb9\xac\xaf\xda\x78\xbf\xc1\x57\x84\x6f\xab\x4d\x04\x15\xc5\x2d\xe0\xdb\x6a\x13\x2c\x8d\xd7\x99\x4b\xd0\x6a\x3b\xb4\x2e\xda\x15\xcb\xe7\xab\xed\xf0\x3a\x18\x53\xb8\x6d\xb5\xd9\x6d\xb0\xd9\x02\x94\xad\xb6\x85\xd5\x0a\x6c\xb6\xc8\x9f\x7e\x9a\x0c\xd8\x6c\x91\x4b\xb4\x6a\x5b\x5f\x30\x47\x2e\x2b\x2a\xd0\xd8\x6a\xeb\xdf\x41\xf7\xdc\x0c\x08\x21\xc4\x66\x8b\xdc\x3c\x91\x4d\x20\xd9\x4d\xb9\x2c\xa5\x52\xdc\x1c\xb9\x04\x29\x20\xda\x6a\x1b\xee\xc9\x07\x83\x68\x2b\xd8\xf1\x80\x68\x8b\xdc\x75\x49\x1c\x27\xf7\xef\x9e\xc6\x93\xe1\x83\xdb\x16\x79\xb8\x27\x13\x1e\x8d\x2d\xa0\xd6\x6a\x63\xad\x63\xac\x45\x86\x2e\xdd\xdf\x41\x8f\x19\x1e\xd3\x5c\x42\x5c\x0b\x38\xb5\xda\x56\x3d\x4e\x24\xb5\xc9\xf4\x3a\x78\xaa\xc9\x1a\xca\x15\xb5\x2a\x35\xc7\x81\xb8\x16\x99\xde\x11\x1b\x07\x71\x2d\x30\xd6\x6a\x7b\x3c\x26\x09\xca\xa6\x75\xb9\x00\xc8\xb4\xc8\xa5\x2f\xa5\x68\x38\x20\xd3\x02\x24\xad\x76\xc1\xc7\x14\x39\xc7\x43\xab\x9d\x91\x92\xfd\x3b\x73\x75\x7e\x5f\x55\x36\x91\xdd\xd0\x2d\xbf\xac\xf6\x6f\x86\x94\xce\x2f\x2f\xad\xf6\x70\x4f\xd6\x10\x02\x5a\xed\xe1\x72\xd6\x50\x0e\xad\xa7\x01\x19\x86\x6e\xa9\x46\xed\xdf\x5c\xe2\xba\xe5\x70\x79\xfb\xce\xd4\x25\x1a\xb2\x33\xb7\x93\x86\xc0\xa2\xd5\x2e\x7a\x98\xfc\xb9\x3c\x35\xf4\x4d\x30\xfe\x5c\x9e\xfa\x29\x7a\x98\xc2\xe8\x70\x6a\xb5\x97\x86\xa8\x4d\x2e\xbb\xa9\xd4\x07\x47\x52\x1b\x8c\xb5\x52\x0a\x1c\x18\x6b\x91\xcb\x9f\xab\x7d\x55\xcf\x47\x52\x9b\xa4\x36\xbb\x7d\x13\x63\x2d\x72\x25\x20\x6b\xa7\x4b\xe0\x6a\x81\xaa\x56\x3b\x27\x0f\x5c\x2d\xf2\xd6\x90\x2d\x12\x63\x2d\xf2\xd6\x10\xcb\x3a\xe9\x52\xd2\xa5\xdd\xc6\x07\xbc\x16\x79\x1b\xa5\x55\x15\x10\x30\x6c\x91\x2b\x34\x5f\xfb\x63\x94\xa6\x7b\x4e\xf7\x7c\x35\x34\x4d\x86\xe9\x75\x7c\x73\x49\x68\x1e\x8d\xad\xf6\xf7\xbb\x7c\x3a\xb8\xa6\xe2\x22\x8c\xff\x8d\x41\x91\x7c\xc5\x5c\x56\x58\x21\x8d\x07\x7e\x5b\xe4\x72\x19\x4b\xa1\x6f\xe4\x63\x08\x97\x4d\x56\x87\x5d\x31\x29\x59\x2e\xb7\xb0\x8e\xdd\xe3\x0a\x5b\xe5\xb2\xc9\xea\x38\xbe\x33\x0d\xf6\x32\xcd\xea\x10\xd0\xce\xd7\xf4\x59\xde\x61\x1d\x36\xc0\xc6\x50\x6b\xcb\x2d\xac\x63\x51\x1b\xa2\x31\xd4\xda\xcf\x3d\x57\xe1\x57\x34\x36\x19\xfc\x5b\x1d\xf2\x35\x8d\x5b\xd8\x96\xa0\xd5\xb1\x8a\x60\x02\x13\x2e\xda\xa6\x75\xc1\x08\x84\xb8\x80\x86\xab\x63\x81\xe2\xa2\x91\x37\x68\xb8\x3a\xc8\x5b\xe3\x16\x42\xc3\x95\xa2\xdc\x68\x82\x51\x6d\x37\x4a\x36\xc0\x26\x18\x85\x17\x57\x10\xe1\x81\x10\x17\x8d\xbc\x29\xb5\x0d\x84\xb8\xc0\x84\x2b\xa5\xb6\xd1\x56\x61\x45\xb4\x65\x8b\xd5\x71\xe9\x27\x5b\xac\xad\x48\x7d\x1d\x66\x5f\x93\xab\x6c\x87\xce\x73\xe1\x9a\x5c\x25\x88\x5c\x1d\xa2\x73\x4d\x30\xbf\x85\x01\xa1\x79\x8d\x03\xd9\xc2\x78\x9a\xa7\x00\x73\x01\x29\x57\x87\xfd\xb3\x89\x4c\xb5\x74\xcf\x85\x5d\x88\xc6\x81\x84\x94\x2b\xdc\xf0\x80\x94\x8b\x96\xee\xf9\x7a\x4c\xea\xd8\x56\xd4\xaa\x8e\x55\xe7\x12\x00\x73\x81\x2c\x57\x87\x3d\x19\x52\x2e\x1a\xc9\x0c\x31\xb7\xc6\x57\x04\x91\xab\x30\x3f\x9b\xb4\x24\x88\x5c\xc5\xa6\xf3\xd2\x92\xad\xbb\x7c\x73\x4f\x3a\xda\xd8\x62\x61\x7e\x36\x21\xb0\xc6\x16\x0b\x7b\x72\x63\x8b\x35\xe2\x1a\x12\x98\xad\x7f\xf7\x7c\x1d\xf4\xec\x6c\x31\x44\xba\x0a\xf6\x1d\x22\x5d\x20\xd2\x55\x1c\x5a\x67\x8b\x21\xd2\x55\x30\xe5\x10\xe9\x02\x7c\xae\x42\xd4\x03\x5f\x2e\xda\x72\x2e\x2b\xd2\xd0\xf1\x2a\xdb\x70\xb9\x50\x5d\x1b\x5e\xf1\x92\xd3\x8a\xe6\x9e\xbc\x4a\x9c\xb8\x0a\x3a\x0a\x17\x17\x00\x71\x15\x76\xef\xc6\x16\x6b\x84\x30\xbe\x99\xcc\x81\xc4\x82\xab\xe0\x9c\xb4\x4b\xe7\x2f\xad\xd3\xd1\x26\x44\x8f\xfe\x56\xc1\xaf\x6b\x1c\xc8\x46\xde\x82\xb8\xe2\xbd\x05\xd0\x5b\xc5\x65\xd6\xb1\xc5\x30\xdd\x2a\x28\x6e\x9b\xe6\xfc\xd4\xa5\x6f\x7a\x93\xb7\xb6\x82\xf2\x15\xf7\x77\xa6\xd6\xc9\x5b\x08\xab\x81\xc0\x05\xfa\x5b\x85\xe0\x33\x08\x5c\x20\xbc\x55\x48\xcd\xb4\xc7\x78\x3e\xde\x91\x2d\x1d\xe1\x2d\xda\xeb\x89\xf8\x1f\x8d\xab\xd9\x5e\xcf\x2e\x47\x09\xe6\x16\x60\x6e\xa5\xc4\x36\x3a\xb1\xea\x74\x29\xe5\xe7\xbb\xc2\x8a\xce\xec\xca\xf5\xbf\x7f\x81\xe2\x16\xf0\x6d\x95\xf6\xf9\x2e\xb0\xd5\x29\x58\x52\xda\x4e\xc1\xfa\xd2\xac\x4a\x49\x46\xbc\xb7\xe8\x9b\x86\x58\x04\x9d\x57\x09\xf4\x56\x29\x3f\xdf\x29\x58\x5f\x5e\x61\xe5\xaa\x88\x89\x4e\x97\x80\xde\x2a\x8f\xef\xe0\xe5\xe0\x7a\xcc\x24\xbf\x9d\x2d\xd6\x0f\xfd\x24\xbf\x9d\x2d\xd6\x89\x55\x4a\x32\x76\x62\xd5\x0f\xf7\x5c\xdf\x79\x07\x08\x5c\xa0\xbf\x15\xec\x78\x80\xc0\x05\xec\x5b\xa5\x50\x32\xec\x5b\xc0\xbe\x55\x72\x4a\x60\xdf\xa2\x87\xce\x37\xfd\x54\x2e\x01\xfb\x56\xd9\xbf\xcb\x75\x3e\x34\x24\x35\xd3\x79\x93\x7d\xc9\x53\x25\x2f\xbd\xd3\x25\xd8\xb7\x82\x1d\x0f\xd8\xb7\xe8\xc4\x2a\x59\xac\x20\x70\xd1\xe9\x52\x5a\x08\x5d\x60\xab\x37\xf7\x34\xe7\x3b\xb1\xea\xcd\x3b\x12\x89\x46\x86\x8b\x4e\xac\x92\xc5\xda\x89\x15\x24\x5c\xa1\x96\x07\x16\x5c\xc0\xbe\x55\x0a\x85\xc0\xbe\x45\x5f\xa2\x53\x69\x21\xe0\xbd\x05\xd0\x5b\xe5\x6d\x90\x45\xe1\x81\xde\x2a\x15\xbf\x20\xbc\x45\x27\x41\xc9\x11\x87\x76\x8b\x3e\xb4\x2e\xe1\x02\xed\x16\x98\x6e\x95\x24\x1d\xda\x2d\x90\xda\x2a\x49\x3a\x44\x5b\x74\xa6\xdc\x5f\x1b\xfb\xdf\x19\x14\x9d\x9d\xd7\x4f\x6f\x95\x5d\xd2\xd9\x79\x9d\x49\xd7\xbe\xa5\x43\xb4\x3a\x07\xb2\xd1\xfb\x2e\x6e\xdf\x97\x76\x55\xfb\x7d\x97\x1b\x83\x65\xd9\x55\xb3\x09\x20\xc4\x45\xe7\x55\x36\xb9\x95\xce\xce\xeb\x4b\xd0\xaa\x7d\x4b\x67\xe9\x5a\xe0\xc5\x55\xe3\x98\xf5\xa5\x6b\xd1\xd9\x79\x8d\x3f\x8f\x25\x17\x9d\x49\xd7\x76\x83\x2d\x14\x86\x1e\x57\xed\x5b\x4f\xd3\x63\x2e\x41\xab\xc6\xc6\xe9\xac\xb7\x4e\x9f\x1a\x27\xbf\x0b\xd1\x03\xc5\x55\x13\xb6\x02\x8a\x8b\xbe\x0c\xad\x6a\xc2\x80\x5d\x0a\xb1\x3f\x3a\xcf\xc2\xee\x44\x0b\x28\xae\x9a\x58\x56\xe7\x55\x02\xc5\x55\x93\xd5\xec\x6a\x28\x3a\xaf\xb2\x89\x72\x77\x79\x45\xf4\xb8\x6a\x9c\x3d\xf4\xb8\xe8\x94\xac\xd9\x19\xd0\xe3\x02\x2f\xae\x9a\x5c\x65\xa9\x77\xc0\x84\xab\xb6\xe0\x39\x81\x09\x17\xb5\x79\x76\x7e\x5d\xf1\x2a\x8b\x57\xa9\xa6\x37\x80\xe2\xa2\x78\x95\x6d\x7d\x8a\x1a\x25\x44\x5f\x9b\xc7\x94\x96\xc4\x92\x0b\x10\xb9\x6a\xf2\xf3\x58\x72\x51\x6c\x31\xb5\xbc\x51\x6c\x31\x48\xb9\x6a\x8b\xa8\x13\x25\x04\x06\x29\x57\x4d\xec\xba\x96\x11\x16\xc8\x72\xd5\xa6\x86\x38\xa5\x38\x73\xd5\x04\xb4\x8b\xe6\x15\x03\x4d\x2d\x6f\x80\xcf\x05\xf8\x5c\x35\xd5\x2b\xe0\x73\x51\x0c\xb4\xf6\xb8\x9c\x81\x06\x37\x57\x60\xe2\x81\x33\x17\xc8\x72\xa5\xea\x37\x8a\x81\x56\x3c\xd5\x26\x3f\x0f\x30\x17\xc8\x72\x05\x11\x1e\x00\x73\x51\xcb\x4e\xab\xfe\xfb\xce\xd4\xd0\x92\xbe\x52\xe0\x1b\xc5\x16\x2b\xee\x6b\x37\xbd\x4b\xb5\x05\x4e\x5c\xf5\xdd\x8b\x53\x6d\x81\x13\x57\x0a\x7c\xa3\x44\xd0\x8a\x81\xd6\xf7\xef\x72\xaf\x98\x4f\x0b\x26\x1e\x50\x72\x51\x4b\x0f\xab\x2b\xe7\x2a\x99\xc7\x62\xb5\xf5\xf5\xb7\x57\x51\x4d\xeb\xd4\xb1\xf3\x54\x21\xe8\x02\x5f\xae\xba\xd5\x51\xc2\x6a\x30\x73\x05\x26\x1e\x68\x73\x81\x2f\x57\xdd\x6e\x53\xac\x36\x28\xb9\xea\xf9\x9d\xe9\x72\x92\xd9\x25\x2e\x8b\x64\x56\x69\x9d\x89\x54\xbc\x5f\x7c\xb9\xea\x82\xe4\xa5\xda\x02\x5f\xae\x3a\x5f\x01\x5f\x2e\x10\xe5\xaa\xdb\x43\x8a\x64\xe2\xcb\x95\xfa\xe0\xa8\x25\xa0\x01\x33\x57\x5d\x9d\x4b\xf1\x93\x6b\x18\xe4\x6f\x1d\x89\xb5\xc1\xcc\x55\xe7\x2b\x14\x71\xad\xd3\x63\xca\xf9\x03\xcb\x05\xa2\x5c\x75\x1b\x4b\x49\x71\x16\xef\x57\x25\x71\x94\xac\x41\x9d\x06\xe4\xd4\x3a\xa3\xaf\x04\xe0\x3a\xb3\x0b\x5f\x2e\x8a\x54\xaa\x24\x0e\x60\xb9\x40\x94\xab\xce\xd5\x00\x96\x0b\x28\xb9\xea\xdf\xe2\x12\x80\x2b\x46\x5f\xff\x16\x17\xa9\xac\xdb\x80\x88\xca\x01\xcb\x05\x94\x5c\x75\xb6\x18\x94\x5c\x40\xc9\x55\xff\x16\x17\xf3\x10\x51\xae\x3a\x5b\xac\x98\x87\x25\x54\x07\x7a\x1e\x50\x72\x51\xa2\x72\x0a\x91\x03\x58\x2e\xa0\xe4\xaa\x73\x35\xa0\xe4\xa2\xa6\x86\xa4\x90\xa0\xe4\x02\x4a\xae\xba\xfd\xa8\xc8\x2f\x94\x5c\xf5\x57\xe7\x39\xb8\x45\x7e\x4b\xf8\xaf\xc8\x2f\x78\x5c\xd5\xb7\x0c\x79\xbd\x00\x71\x55\xb6\x9e\x12\xbf\xab\x95\x90\xa8\x12\x13\x04\x88\x8b\xa2\xb4\xc5\x6a\xc3\x82\x0b\x2c\xb8\x2a\xb9\xd4\xc1\xc1\xc5\x82\xab\x12\x13\xc4\x82\x0b\x2c\xb8\xaa\xf5\x89\x5f\x80\xc0\x05\xfa\x5b\x95\xad\x67\xc8\x44\x0c\xd6\xa5\x3a\xe6\xc0\x82\x8b\x41\x93\x8b\xff\x31\x68\xf2\x60\x48\x96\x50\xf2\x60\x48\x02\xc4\x55\x71\xaf\x01\xe2\x02\x12\xae\xd4\x31\x07\x32\x5c\x40\xc2\x55\x2d\x08\x6e\xc0\xbe\x05\xec\x5b\x95\xda\x19\xbc\xb7\x40\x78\xab\x12\x5f\x1e\x87\xcb\x89\x6a\xfd\xb5\x8e\xfe\xc6\xa0\x00\x83\x0b\x14\xb8\x2a\x8b\x6c\x2c\xfd\x8d\x41\x71\xcb\x22\x83\x7f\x8b\xc1\x25\x2e\xe1\x20\xf8\xb7\x80\x7f\xab\x1a\xc6\x80\x95\x09\xff\x56\x5f\x91\x33\xee\x5b\xc0\xb8\x55\xd9\xc1\x86\x12\x8c\x41\x5c\xbf\x22\x67\x88\xb7\x80\x71\xab\xb2\x83\x0d\x06\xe5\x48\x63\x20\xa0\x3d\x14\x6b\x0c\x06\x65\x5d\x1a\x62\x50\x82\xba\x15\xc6\x7b\x0c\x06\x25\xb6\x5b\x95\x70\xe5\xa0\xa3\xa3\x99\x53\xeb\x6b\x94\x40\x7a\x0b\xa4\xb7\x2a\xfe\x3c\xd2\x5b\x0c\x39\x8b\xaf\xf2\x19\xf7\x2d\x06\x3f\xb9\xe4\x69\x71\xdf\x62\xb0\x47\xcb\xb6\x36\x24\x32\x86\x44\x46\x59\x79\x98\x70\x31\xba\x99\xa2\x0c\x01\x13\x2e\x06\x3f\xf9\x2b\x72\x46\x88\x8b\xc1\x4f\x2e\x4e\xfe\xe0\x27\x03\xc5\x55\x59\x64\x83\x9f\x0c\x0d\x57\x43\xe0\x1d\x21\x2e\xa0\xe1\x6a\xb0\x04\x11\xe2\x62\xd0\xe6\x61\xe5\x61\xc2\xc5\x60\xb9\x7e\xf5\xcc\x60\x70\x01\xff\x56\xc3\xca\x83\x7f\x8b\xb1\x84\xb7\xc6\xee\x1d\x09\x57\x0e\xe6\xec\xb0\x2b\x0e\x16\xeb\x20\xc3\xe3\x5b\x8e\x8c\x53\x4c\xb8\x1a\x9c\xfc\xa1\x96\x17\x05\xae\xc6\xf1\x9d\xe9\xd9\x4f\xf7\x94\xfb\x1d\x97\x7b\xf2\xbd\x87\x00\xec\x20\xc3\xe3\xfa\xce\xf4\x98\x42\x8b\x43\x76\x63\x08\xe6\x0f\xa5\x22\x43\x14\x11\xdb\x3d\x80\xe2\x02\x28\xae\x46\xfb\xce\xd4\x3a\x1d\x1d\xcd\x04\x63\x9c\x0e\xc6\xe9\x57\xc7\x3c\x18\xa7\x58\x70\x35\xbe\x35\xaa\x96\x77\x88\x22\x0e\x4e\x14\x16\x5c\x60\xc1\xd5\x50\xef\x80\x05\x17\xe8\x6f\x35\x04\xcb\x40\xe0\x62\x70\xb3\x47\xb9\x5c\x51\xc9\xe0\x66\x7f\xc5\xcd\xe3\x31\x6d\x98\xb1\x63\x7c\xf7\xd4\xf9\xd7\xb3\x0b\x96\x0d\x19\xdd\xc1\x62\x1d\xa2\x09\x83\xc5\x0a\x09\x57\x43\x11\x04\x16\x5c\x60\xc1\xd5\x60\x5d\x9e\xc4\xf5\xfc\x79\x76\x1b\xe0\xa9\xe8\x0d\x12\xae\x86\x64\x28\x32\x5c\x40\xc2\x15\x0a\x7c\x20\xc3\xc5\x49\x71\x07\x93\xf3\x64\xf0\x9e\x3f\x0d\x29\x83\x46\x86\x0b\x48\xb8\x1a\x42\x0c\x58\x70\x71\xb2\x6d\x87\xb4\xd4\x49\x5c\x4f\x5e\xfa\x78\xbe\x33\x57\xe7\x4f\xb6\xed\x10\xfe\x3d\xd9\xb6\xe8\x6f\x35\xec\x75\x27\xdb\x16\xf6\xad\xbe\xda\xe8\x93\xb8\xa2\xbf\xd5\x57\x06\x7d\x92\xca\x93\x54\x7e\xc5\xcd\xb0\x6f\x71\xf2\xd2\x4f\xc1\x32\xd8\xb7\x80\x7d\xab\x53\x65\x04\xec\x5b\x00\xbd\xd5\x69\x75\xe0\xbd\x05\xd0\x5b\x61\xbb\xc7\xc9\x38\x05\x7a\xab\x93\x4b\x84\xf7\x16\xe7\xca\xf2\x16\xe0\x7b\x9c\x8a\xdd\x4e\xa2\x7a\xda\xc1\x4e\x09\x97\x93\x97\x0e\xf8\x1e\x67\x7a\x47\xa9\x75\x89\x8c\x93\x19\x7b\x52\xda\xd3\xe2\x42\x86\x0b\x2c\xb8\x02\x7c\x8f\x93\x1d\x8a\xfe\x56\x27\x8f\x0a\x04\x2e\xd0\xdf\xea\xcc\xef\x4c\xef\x88\xa8\x02\xbe\xc7\x49\x54\x4f\xa2\x7a\x0a\x5b\x9c\x12\xc1\x27\x7f\xfe\x6c\x06\x99\x3f\x0f\x1e\x57\xa7\x65\x88\x1a\x17\xa8\x71\x75\x76\xad\xd3\x4f\xd4\xb8\x42\x81\x0f\xd4\xb8\x40\x8d\x2b\x14\xf8\x38\xd9\xb6\xa7\x88\xe4\x29\xe5\x81\x1a\x17\xa8\x71\x75\x8a\x44\x9f\x94\x16\x35\xae\xbe\x2a\x6a\xb8\xb8\xc0\x89\xab\x93\x97\x76\x0a\x07\x9c\x65\xe8\x7c\x4e\x70\x0a\x07\xa0\xc6\xd5\xc9\x66\x44\x8d\x8b\x93\xc1\x7b\x7e\xeb\x48\x0e\x08\x4a\xae\xce\x6f\xc9\xc8\x23\x43\xc9\xd5\x57\x45\x0d\x25\x17\x50\x72\x75\x2a\x2a\x80\x92\x0b\x28\xb9\x3a\xaf\xef\x9e\x5a\x17\x62\xf8\x4a\xab\x31\xe4\x02\x3c\xae\x4e\x91\x3e\xd4\xb8\xc0\x89\xab\xf3\x5b\x71\x72\x40\x27\x2b\xf8\x9c\x16\xec\x69\x94\x04\x0c\xce\xf9\xb7\x9f\x8d\x06\xce\x5c\x9c\x12\x44\xa7\x6c\xcc\xe9\xe3\x0b\xf0\xb9\x3a\x15\x91\xa2\xce\xc5\x29\x2e\x8a\x1b\x1f\x00\x73\x81\x2c\x57\x97\xcd\x0a\x60\x2e\xce\x15\x2a\x28\x34\xf8\xc0\x99\x0b\x64\xb9\xba\xbe\xe5\xa8\x86\xe6\x5c\xba\x5d\x97\x30\xf5\xa9\x74\xf9\x5c\x12\x5d\x97\xcd\x0a\x60\x2e\x90\xe5\xea\x12\xbb\x3e\x05\x4b\x4f\xe9\xe8\xeb\x5b\x79\x4a\x97\x21\xe5\xea\xab\xa6\x86\x94\x8b\x73\x15\x2b\xd7\x25\x9f\x7c\xca\xec\xe0\xc5\xd5\x57\x62\x0d\x1b\x17\xa7\x24\x0e\x1a\x7c\xc0\xc6\x05\x34\x5c\x5d\x12\x83\x27\x19\x86\x7f\xab\x4b\x44\xfa\xa2\xb8\x28\x70\xf5\xd5\x5d\x5f\x3e\xa9\x40\x81\xab\xcb\x2a\xb9\x44\x13\xae\x9f\x01\x69\xdf\xe5\xc3\xc1\xb5\x51\x5f\x1c\x33\x84\xb8\x80\x86\xab\x4b\xc4\xef\x62\xe3\x62\xc2\xd5\xb5\x3e\x8c\x8b\x4b\xb0\x14\x1a\xae\x2e\x99\x1d\x84\xb8\xb8\x28\xee\x57\xa1\x7d\x51\xdc\x8b\xe2\x5e\xd6\xd3\x45\x71\x2f\x8a\x7b\x89\x87\x5f\xbe\xb3\x00\x8a\xab\x8b\xcd\x78\x11\xd7\x4b\x60\xf3\xe6\xe8\xe2\xbe\xc5\x25\xb0\x79\xd3\x27\xdc\xb7\x00\x7c\xab\xdb\x78\x5e\x4c\x4e\xf8\xb7\xba\xd5\xb1\x5f\x74\x14\x05\xae\xb0\xc8\xe3\x52\x26\x83\x02\x57\x37\x25\x03\x83\x0b\xc0\xb7\xba\xa5\x64\x2f\xea\x78\xf1\xe7\xef\x6f\xe4\xf9\xf3\x17\xeb\xf2\x96\x7d\x05\x83\x8b\x8b\x43\x7e\xab\x06\xbb\x38\xe4\x08\x6f\x75\xcb\x1a\x20\xbc\xc5\xc5\x21\xbf\xc5\x86\x2e\x36\x23\xd0\x5b\xdd\xbc\xdf\x8b\xbc\x01\xbd\x15\x16\x79\x5c\x5d\xe7\x79\xe9\xb0\xe3\x01\xfb\x16\x17\xd1\xfa\x6a\x79\x2f\xa2\x75\xf1\xd2\x6f\x3e\xed\xe5\x43\x89\x8b\x68\xdd\xa4\xe8\xa2\x4f\xe8\x6f\x75\xb3\x82\x2f\x52\x74\x51\x9d\x9b\xc1\x8b\x05\x17\xd7\xd0\x79\x4b\x1b\x19\x2e\x2e\x49\xe6\x5b\x7e\x1e\x0b\x2e\x2e\xc1\xc7\x9b\x19\x7b\x09\x3e\xc2\xbe\x15\x6e\x78\xc0\xbe\xc5\xc5\xa3\x9e\x3e\xb6\x03\x81\x8b\x8b\xf3\xfc\x95\xd8\x82\xc0\xc5\x25\x63\x32\xb9\x85\xb0\x6f\x01\xfb\x56\x5f\x3d\x2b\xc2\x5b\x5c\x8c\xbe\x29\x7e\x87\xf7\x16\x40\x6f\x35\x85\xbe\x2f\x25\x2d\x97\x92\x96\xf9\xad\x0e\xf9\xe4\x4b\x1a\x65\x7e\x0b\x81\x5c\xc0\xbe\xd5\x54\x8b\x76\x91\x8b\x8b\xd1\x37\xbf\x17\xc7\xe8\x83\x7d\xab\xc9\x6a\x83\x7d\x0b\xd8\xb7\x9a\xe2\xe1\x17\xa3\xef\xa2\x21\xd8\xd9\x71\xd1\x90\x8b\x9f\x3c\x25\x86\x2e\x7e\x32\xfa\x5b\x4d\x61\x8b\x4b\x6e\x05\xfd\xad\xbe\x7a\xd6\x8b\xf3\x7c\x11\x96\x69\x0b\xba\xf8\xc9\x08\x6f\x05\xa8\x1d\x97\xa2\xe1\x8b\xda\x7c\xf5\xac\xb7\x30\x25\xa6\x5b\x4d\x7e\x12\xb4\x5b\xdc\x8a\x5f\x60\xb2\x03\xcc\x2d\x6e\xb1\xcb\x69\xbb\xb8\x69\xc8\xcd\x4f\x9e\xbc\x1f\xbc\xb7\xb8\xf9\xc9\x53\x50\xef\xa6\x21\xb7\xd8\xe5\x57\xa5\x0a\x02\x17\xb0\x6f\x35\xdf\xef\xf2\xd5\x4f\xd8\xb7\x9a\xb2\x99\xb7\xec\xf0\x2d\x0b\x83\x9d\x1d\x37\x3f\xf9\x26\x2c\x8f\xc4\xd0\x2d\x22\x79\xb3\xef\x1e\x73\xe9\x66\xdf\x41\xc2\xd5\x23\x5b\x84\x0c\x17\xf7\xe1\x9e\xac\x36\x80\xb8\xb8\x97\xf3\x5b\x5f\x3d\xeb\x2d\xce\x08\x10\x57\x0f\x5b\x0c\x20\x2e\x6e\xf6\xdd\x23\x9b\x09\x17\x17\x38\x71\x85\x9d\x1d\x37\x5d\x42\x8d\xab\x47\xb6\xe8\x66\xdf\xdd\xec\x3b\xec\xec\xb8\x65\x61\x6e\xf6\xdd\x43\xd6\x80\xe5\xe2\x96\x32\x7e\x64\x33\xf1\xe5\xe2\xa6\x60\x5f\xe5\x2b\xda\x5c\xe0\xc4\xd5\x23\xa8\x07\x17\x17\x38\x71\xf5\x30\xbb\xe0\xe2\x02\x27\xae\x1e\x1b\xca\xcd\xe8\xbb\x19\x7d\x4f\x73\x39\x53\x0e\x27\xae\x9e\xfe\x9d\xa9\x9f\xb4\xee\x61\x76\xdd\x52\xc6\x37\x57\xf8\xb1\x64\xe0\xe2\x02\x20\xae\x9e\xf1\xb7\x7f\x0e\x16\x37\x43\x0d\x3d\xae\x1e\xb5\xdc\x37\x43\xed\xa6\x79\x0f\x37\x06\x4b\x2e\x40\xe4\xea\xe1\xc6\xdc\x65\x0c\x08\xe1\x43\xf3\x6e\x42\x78\x13\xc2\x87\x1b\x83\x3a\x17\x77\x19\x18\x36\x19\xc0\x5c\xdc\xd4\xf1\xab\xaa\xbd\xb9\xc4\x20\x72\xf5\x88\xe3\xdd\xd4\xf1\x66\x69\x3d\x42\x76\x00\x73\x81\x17\x57\x8f\x78\xf8\xcd\xfb\xbd\xa9\xe3\x23\x64\x87\x1e\x17\x37\xef\xf7\xf9\x96\x0e\xef\x17\x2f\xae\x9e\x6f\xe9\x50\xc7\x9b\xdd\xf4\xf0\x6d\x60\xe3\x02\x13\xae\x1e\x21\xbb\x9b\x31\x85\x02\x57\x0f\xc5\xbd\x09\x21\xa8\x5b\xbd\x8c\xa9\x9b\x89\x74\xd3\x3c\x98\xec\x80\x78\x0b\x18\xb7\x7a\xbf\x05\x21\x36\x78\x33\x91\x5e\x49\x51\x88\xb7\xb8\x69\xde\xcb\x8d\xb9\x69\xde\x2d\x75\xfc\x1e\x2e\x97\x3a\xbe\x15\xbf\x00\x6a\xc7\x2d\x36\x78\x73\x74\x01\xb5\xe3\xe6\xe8\xde\x4b\xfa\xea\x15\x0e\x40\x88\x8b\x9b\x10\xbe\xf1\xdd\xd3\xc8\xab\x02\x7c\x05\xe2\x60\xe3\xe2\x66\x76\xbd\xcc\x84\x9b\xd9\x85\x1e\x57\xaf\xd0\x37\x7a\x5c\xdc\x84\x10\x65\x3b\x20\xde\x02\xd4\xad\x5e\x8a\x0b\xea\x16\x93\xdd\xf4\x52\x5c\x88\xb7\xc0\x76\xab\xaf\x14\x18\xe2\x2d\xa6\x24\x33\xd2\x74\x20\xbd\x05\xd2\x5b\x7d\xf5\xc1\x48\x6f\x81\xf4\x56\xaf\x8a\xa8\x49\xf3\xa6\xd8\xe0\xbb\xe8\x86\x81\xe2\x16\xf0\x6d\xf5\x95\x02\x4f\x99\x67\xf8\xb6\x7a\x4d\x9b\xb9\x7f\x97\x1b\x10\x09\x76\x30\xb7\x98\x32\xcf\xaf\x3d\x79\xca\x3c\x4f\x01\xc3\x57\x68\x09\xe1\x2d\x26\x47\xf7\xa5\xb8\x53\x3a\x1a\xf6\x6d\x7c\x55\xbf\x08\x6f\x31\x97\xa3\x3b\x60\x9d\x63\x52\xc7\xb9\xa4\x6f\xfc\xcc\x90\xe9\xf3\xd6\xb9\xa4\x6f\xfc\x4c\x86\xa9\x4c\x66\x2e\x47\x77\x60\x3d\xc7\x64\xa0\x01\xc4\x8d\xaf\xc0\x77\xca\x3c\xcf\xd0\x10\xcb\x7a\x8a\x1e\xe2\xc4\x0d\x58\xe7\x80\x8b\x8b\x99\x5a\x17\x06\x02\x88\x8b\x99\x1a\xe2\xa9\x4e\x42\x38\xd3\x3d\xc5\x5a\x31\xe4\x62\x36\xf7\xa4\x79\x93\x7d\x37\x9b\x7b\xca\xfd\x4d\x31\xc1\xd9\xf4\x53\xcd\x1c\x94\x5c\x80\xc7\x8d\x9f\xcd\x7f\xfa\xbc\x75\x76\xad\xcb\xe8\x4d\x25\xcb\x73\x59\x74\xe3\xf7\xcd\x25\xe1\xbf\xb9\xb4\x6e\xfc\x28\xd8\x64\xca\xcd\x25\x6b\xe3\x77\xb9\x27\x59\x9b\x4b\xd6\xc6\xef\x9b\x36\x64\x6d\x96\x77\x24\xc5\x3d\x45\xfa\x66\x69\x48\x29\xd3\xe4\xa9\xce\xd2\x10\xa3\x0f\x89\x2e\xe6\xf0\xec\xf2\x0b\x93\xa7\x0a\x48\x37\x7e\xf6\x79\x08\xba\x98\xcb\x0d\x1d\xbf\xc7\x8b\xf3\x21\xec\x1c\x06\x44\x40\x73\xf2\x3f\xe7\xe9\x9e\xb6\x74\x5c\xba\x98\xa7\x27\x7a\x8d\xbc\xd4\x0c\x3c\xdd\xf8\x09\xc4\x4c\x4e\x29\x4a\xdd\xf8\x51\x30\x78\xba\x98\x4b\x1c\xc7\x57\x49\x3c\x19\x92\x73\xb9\x98\x63\xfb\x79\x71\x6c\xc6\xb9\xc4\x71\x6c\x6c\xc6\xa9\xf4\x06\xb3\x6e\x6c\xdb\x77\xa6\xcb\x97\xdf\x39\xbe\xf2\xe2\xc9\xef\x04\xb2\x1b\xdb\x37\xbd\x7d\x32\x3b\x97\xe9\x38\x36\x1f\xb3\xc0\xda\x05\x9e\xdd\x80\x5e\x0e\x58\xbb\x98\x53\x97\x6c\xfe\x53\xc2\x65\x2e\x51\x1d\x9b\xaa\x10\xac\xbb\x98\xd3\xe5\xb6\x74\xac\xbb\x00\xb9\x1b\x9b\x0f\xca\xb1\xee\x62\x2e\x19\x1d\x5f\x21\x32\xe4\x5d\xcc\x47\x3f\x85\x57\xa6\xe8\x21\x0e\xde\xd8\xbe\xe9\x2d\x50\x08\x87\x37\x36\x41\x93\xc9\x43\x9d\xaf\x7b\x8a\x8f\x4c\x81\x42\x70\xbc\xb1\x09\x85\x4c\x86\xe4\x7c\x8d\xa7\x1c\xc0\xf4\x3d\xc8\x7c\xdd\x93\x3f\x37\xdf\xef\x9e\xaf\x83\x6b\xdb\x85\xd1\x8b\xe7\xa7\x21\x5b\x39\xa8\x5e\x3c\x3f\x03\x62\x21\x3c\xe4\xf7\x59\x82\x3b\x36\x1b\xf4\x23\x50\xf8\x6c\x06\x84\x19\x8b\xb4\x17\x68\x7a\x63\xbb\xfe\xfe\x2b\x8f\x47\xde\xfb\xd9\xf4\x57\xdc\xfe\xe1\xbe\x3e\xbb\xae\xa9\xe4\xc0\xd8\x8b\x67\x37\xae\xb6\x5f\xc4\xbd\xc0\xca\x1b\x9b\x74\x34\x64\x5e\x80\xe4\x8d\x4d\xe6\x19\x24\x2f\x40\xf2\xc6\xae\x7a\x09\x24\x2f\x40\xf2\xc6\xfe\x73\x4f\x3a\xfa\x2c\xe5\x1c\xbb\xc9\xfb\x30\x28\x91\xf3\xc6\xae\x2e\xe3\xe1\xe8\x22\xe7\x8d\xdd\x46\x8d\x9c\x17\x58\x79\x63\x37\x79\x41\xf2\x02\x0f\x6f\xec\xe6\xe9\x43\x08\x1f\x42\xb8\x2f\x74\x4f\x3c\x22\x7e\x58\x79\x63\x97\x79\x86\xcc\x8b\x27\xf5\xd3\xe4\x7d\x48\xe6\xb3\xcc\xc4\xb1\xcb\x83\x3d\xcc\x44\x38\xbd\xb1\xfb\x9c\xe8\x11\x1b\x84\xd3\x1b\xbb\xed\x17\x4e\x2f\x00\xf4\x06\x86\x72\x3c\xc2\x80\x0f\x1d\xdd\x55\x70\xe0\xe8\x05\x80\xde\xd8\xcd\xfd\x87\x9f\xfc\x74\xad\x0b\x2d\x82\xeb\xc5\xb3\xdc\xe5\xb1\x9b\xfb\x8f\xc2\x44\x8c\xbd\x01\xc1\x1c\x18\x7b\xf1\x74\x0d\xb1\x71\x31\xf6\x02\x4e\x6f\xec\xdc\x42\x38\xbd\x78\x96\xc6\x8e\xaf\x9a\x1a\x4e\x2f\x00\xf4\xc6\x2e\x98\x8f\xa3\x17\x0f\x71\xdd\x85\x42\x1e\x79\xef\x67\xe8\x12\xb7\x10\x32\x2f\x9e\x61\x40\x84\x42\x90\xf3\x02\x39\x6f\xec\xe2\xf6\xc8\x79\x81\x95\x37\xf6\x6f\xe9\x70\xb3\xb1\xf2\xc6\xae\xb0\xff\x21\x99\xcf\xe9\x9e\xbe\xb8\x05\xc9\x0b\x3c\xbc\xb1\x4b\x9f\x3d\x24\x13\x0f\x6f\xec\x02\x86\x0f\x43\xf2\x21\x99\x18\xca\x81\x87\x17\x78\x78\x63\xbf\xbf\x33\x3d\x26\x1d\xdd\x25\xc5\x1e\x3a\xfa\x50\x47\xb4\xe5\x78\x44\xe5\x10\xf0\xc6\xce\x1e\xc1\xbc\x0b\xb0\xbb\xb1\x2b\x7e\xc2\xbc\x0b\x94\xbb\xf1\x15\x63\xc3\xdb\xc5\x33\xdd\xd3\x26\xf0\xf8\x9c\xe4\x21\x99\xbb\xaf\x90\x1e\x76\x28\xd8\xdd\x38\xbe\xc5\xa5\x84\xf1\x59\x7a\x38\x8e\x9f\xcb\x09\x21\xf4\xdd\x38\x36\xfd\x54\x0d\x04\x72\x37\x8e\x6f\x1d\x71\xb3\x9f\x25\x92\xe3\x90\xea\x7a\x9e\xef\x9e\x6b\x6d\xa2\x2d\x07\xd6\x5d\x80\xdc\x8d\xaf\x32\x1b\xeb\x2e\x9e\x95\xaa\x1e\x87\x54\xd7\xf3\x6a\xfd\xd5\x3a\xc3\x07\x00\x2f\x9e\x57\xeb\xac\x60\x1c\xbc\x78\x96\x72\x8e\x83\xe1\x03\x79\x17\x2f\xc9\xfc\x6a\xb8\x5f\x92\xf9\xae\x84\xcb\x38\xd8\x38\x2f\x2f\x1d\xf9\x6e\x40\x30\x07\x00\x5e\x20\xdf\x8d\xaf\xb0\x1b\x00\x2f\x90\xef\xc6\xc1\x1a\x02\xc0\x8b\x77\x99\xa3\xe3\xb0\xb8\x5e\xb9\x95\x77\x73\x4f\x7b\xc8\x4b\x2a\xdf\x15\xe9\x1b\x87\x38\x23\x2a\x5e\xbc\xa4\xf2\x10\x49\x41\xc5\x0b\x38\xbc\x71\xf0\x15\x5f\x5e\xfa\xbb\xfc\xf2\x71\x88\x8b\x81\xe3\x05\x38\xde\x38\x54\x85\x80\xe3\xc5\x4b\x69\x61\x9d\xe3\x65\xb1\xbe\x87\x01\x29\xcf\x4e\x7e\x81\xf3\xc6\x57\x56\xfe\x72\xdd\x11\xf3\xc6\x21\x53\xf6\x4a\x58\xbf\xec\xd0\xaf\x82\xfc\x65\x87\xbe\xec\xd0\xc3\x16\x04\x95\x17\x18\x79\xe3\x50\x59\xf8\x12\xd5\x97\xc9\x79\xd8\x82\x10\xf3\xe2\x4d\x8f\x89\xef\xf0\x4a\x58\xbf\x44\xf5\x10\x5e\x79\x89\xea\x9b\x1e\xd3\xa7\x34\x30\x7a\x01\xa3\x37\x0e\x75\xb7\x30\x7a\x01\x9c\x37\xf0\x98\xe3\xe5\x7b\xbf\xcd\x3b\x52\x56\x0e\xa3\x17\xc0\x79\xe3\xb0\x49\xbd\xa4\x12\x1c\x6f\x1c\x6c\xb1\x57\xa0\xf0\x65\x33\x7e\xc5\xe2\x2f\x59\x7b\x97\x66\x8d\x90\xea\x7a\x55\x51\x23\xdf\x8d\x50\x27\xf8\xb2\x04\x71\xf0\x46\x08\x9a\xe0\xe0\xc5\xbb\x84\x6c\x04\x63\xea\x1d\x9e\x9d\x79\xf8\x15\x8b\xbf\xcc\x43\x8c\xbc\x11\xf0\x25\x50\x79\xf1\xb2\x04\xbf\x0a\x72\xa8\xbc\x78\x97\x90\x8d\x50\x33\xf5\xb2\x04\x81\xf3\xc6\x57\x2c\x8e\x9f\x17\x88\x79\x23\x6c\x52\x2f\xa7\xf9\x5d\x89\x88\x11\x7c\x44\xfc\xbc\x78\x69\x5d\xf0\x15\xf0\xf3\xe2\xbd\x3c\xbb\xf0\xca\x2b\xa4\x08\x87\x37\x22\xff\x3e\x42\x01\x99\x17\x58\x79\x23\xe4\x93\x41\xf2\x02\x0f\x6f\xc4\xb7\x74\xc8\x1b\x2c\xde\x40\x70\x8e\x97\xbc\xbd\xe4\x2d\xa4\x8e\xd1\xf1\xe2\x5d\x86\xe1\x08\x86\xda\xab\x04\x07\x16\x6f\x04\x43\xed\xe5\x3c\xbf\xec\xbc\x20\xc3\x2f\x81\x79\x09\x4c\x8a\x48\x63\xde\x05\xca\xdd\xc8\x15\xd8\xcc\xdf\x12\x98\xfc\x11\x18\x80\xdd\xc4\xbc\xcb\xdf\x0a\x03\x8e\x5c\xe9\xe8\xfc\x2d\x9b\x2c\x7f\xcb\x25\x1e\xca\x77\x13\xde\x2e\x7f\xcb\xfb\x1d\xb9\xd6\x53\x02\xda\xe5\x6f\xf9\xbb\x03\x60\x37\x01\xed\xf2\xb7\xb9\x7c\xd5\x7a\x24\x92\x5d\xfe\x96\xa4\x8c\x5c\xce\x73\x02\xda\x25\xa0\xdd\xc8\x4b\xeb\xcb\x32\x4b\x08\xbb\x91\x6b\x3d\xe5\x6f\xd7\xd0\xae\xa1\x5b\xe7\x77\xfd\xdc\x35\xb4\x76\xb0\xfc\xed\x1a\xda\x35\xb4\x6a\x7a\xf3\xb7\x6b\xe8\xd0\xf9\xa9\xa1\xc3\x3d\x69\x09\x14\x6f\xfe\x96\x96\x24\xca\xdd\xc8\x47\x3f\x0f\x0d\x2d\x8b\x6e\x28\xf4\xcd\x5f\x18\xba\x15\xce\x1b\x2a\x5f\x13\x7c\x2e\xc1\xe7\x46\x5b\xf1\x91\x04\x9f\xcb\x1f\x81\x69\xbb\x86\x42\x97\x96\xa4\x8c\x76\xe8\x52\x6a\x9d\xd5\x86\x66\x9b\xbf\xd4\xfa\x92\x94\xd1\xd2\x13\xa5\xc7\x24\x30\x2a\x5f\xf3\xb7\x3c\xdc\xfc\x2d\xd7\x76\xe0\xde\xe6\xaf\xe9\x27\x9f\xb6\x35\x6f\x73\xc9\x4d\xfe\x18\x68\xad\x19\xba\xa6\xf3\xcd\x3d\xfb\x77\xb9\x7b\x76\x97\x77\x5d\xea\x5e\x31\xd5\x69\x43\x97\xba\xc7\x5c\x3a\x33\xda\x70\xcf\x72\x26\xd5\x69\xa7\x01\x19\x5e\x31\xbb\xa9\x2d\xf7\x35\x7f\xc3\xeb\x18\x2e\x5f\x15\xda\xf9\x1b\x06\x84\xdd\xd4\xa6\xc9\x30\x0c\xc8\xd0\xfa\x34\xf2\xcb\x1b\x4d\xd0\xb9\xd1\xbe\x57\x3c\x74\x9e\x31\xd5\xa6\x2e\x9d\x5a\x67\x4c\xb5\xc7\x5c\x3a\x0d\x08\xd5\x69\x8f\x7e\x9e\x06\xe4\x34\xf2\xaf\xd6\x4f\x23\x4f\x8a\xda\xeb\xf2\x65\x6f\xe5\x8f\x14\xb5\x55\x1e\x97\xbf\xcb\xc8\x2f\xeb\x6b\x20\xce\xe6\xef\xd2\x10\xb3\xab\xff\x3c\xe6\xe5\x89\x96\xa1\x35\xfa\xa6\xa1\x4b\x43\xeb\x5b\x91\xd1\xb7\xaf\x21\x4f\xb4\x1c\xd6\xd1\x37\x8f\xb9\x2c\xb3\xc4\xac\x1b\x4a\x57\xf3\x77\xbb\xfc\x76\xf9\x4e\x04\xee\xef\xf2\xd7\x41\x8f\x39\x75\x7e\xd5\xb9\x8c\xbe\x7b\xc5\x53\xe7\x97\x17\x3b\xfa\x61\x90\xa7\xb7\xb9\x34\x6b\xf4\x43\xe7\xa7\x91\x9f\x1a\x3a\xb4\x3e\x4d\xef\xc7\x3d\xc3\xac\x7b\x8c\xfc\xe3\xf2\x30\xc1\x1e\x97\xaf\x24\xc7\xe8\xe9\x31\x1f\x73\x69\x39\xac\xa3\xa7\xc7\x7c\xdc\x73\x65\x3e\x06\xb4\x6d\x62\xdd\xe5\x6f\x99\x64\xa3\x37\xfd\x7c\x0d\xc8\x32\xc9\x46\x6f\x56\xc7\x6b\xe4\x99\x5d\x7d\x45\x7c\x12\xc8\x2e\x31\xeb\x46\x5f\x96\x4b\x62\xd6\x25\x12\xdd\xe8\x2b\xca\x9d\x48\x74\xb9\x31\xa6\x94\xae\x26\x2e\x5d\x22\xd1\x8d\x4e\x2a\xb7\x65\x5a\xe5\xb6\x19\x64\x52\x89\x44\x97\xdb\xee\xf2\x65\xd7\xe7\x46\xeb\xb6\x5d\xe7\x97\x3d\x92\x60\x75\xb9\x31\xa6\xfa\xa9\x4b\xcb\x8a\x4a\x78\xba\xa1\x20\x35\xb7\x5d\x97\x0e\x9d\xbf\xb4\x4e\xd6\xe0\xe9\x86\x82\xd4\x84\xa7\xcb\xed\x70\x39\xfd\xdc\x96\xc1\x94\xdb\xe1\xc5\xdd\x1a\x5a\xae\x69\x62\xd6\x8d\x4e\x54\x31\xeb\x12\xa5\x6e\x28\x48\xcd\x8d\xd6\x6d\xe2\x77\x7d\x1a\x4f\x5a\x87\x59\x37\x3a\x51\xdd\xd2\xe5\xe9\xf2\x47\x97\x96\x9e\xe5\xc6\x1a\x52\x66\x9a\x68\x73\xb9\x2d\x25\x1a\x65\xce\xa3\xcd\xe5\x46\x97\x6a\x33\x9e\x74\x69\x5b\x5e\xe1\xa8\x4d\x3f\xbb\xf1\xe4\x23\xd6\x2a\x00\xc8\xad\x6b\x9d\x58\xd5\xae\xa1\xee\x9e\xcb\x2b\x1c\x78\xb7\xb9\x51\x30\xec\xb9\x81\x77\x9b\xdb\x0a\xc7\xe5\xc6\x47\xac\x43\xeb\xe5\xbd\x0b\xab\xd5\xe1\xf2\xd2\xa5\xe1\xf2\xf8\xdb\xaf\x3c\x72\x1b\xee\x4d\xf3\x2a\x8c\x16\xcd\xdb\x18\x55\x8a\x48\x73\x23\x6f\xe0\x73\xa3\xcc\xfd\x6d\xe8\xef\xb2\xad\x46\xa5\xcb\x4f\x13\x4d\x20\xae\x2c\x88\xed\xd4\x10\xcd\xab\x95\x29\x4d\x44\xba\xdc\x04\xe2\xca\x26\x80\x3a\x97\x70\x73\xa3\x4e\x8f\x4b\xb4\xb6\xcb\x99\x97\xd7\x72\x79\x57\x8c\xaa\xb2\x7b\x83\xcf\xe5\x76\xbb\xfc\x72\xcf\xdb\xe5\xec\xa6\xba\xdd\xf3\xf6\x44\x7c\xc5\xba\x75\x9e\x3e\x61\xd0\x0d\xf5\x97\xb9\xd1\xa7\x8d\x3e\xd5\xf4\xec\xf4\x69\x13\x73\x2b\x1b\x35\x22\x5d\x22\xd2\x0d\x3c\xd9\x84\xa2\xcb\x4d\x24\x4d\xa9\x65\x82\xcf\x25\xf8\xdc\x50\x55\x99\xdb\xe3\x89\xe8\x13\x20\x6c\x6e\xcf\x77\xf9\x74\xd0\xab\x7e\xf4\x73\x79\x87\x63\x7c\xf3\x94\x14\x61\xd0\x8d\xf1\xcd\x53\x52\xb4\x91\x22\x55\x95\x89\x4f\x97\xc0\x74\x03\x25\x36\xb7\x57\xeb\xc2\x6b\xe3\x9b\xbc\xef\xd7\xd0\xeb\xe0\xba\x27\x22\x5d\x62\xd0\x8d\x41\xc5\x77\xa6\xdc\xbe\x4a\x45\xc6\x60\x65\xec\xcb\x57\xcc\x7d\x59\x74\x63\x2c\xff\x33\xf7\x95\xdf\x4d\x44\xba\x31\x56\x09\x46\xee\xcb\x73\x4c\x60\xba\x31\x96\x31\x9d\xfb\xe6\x9e\x2b\xc9\x31\xc6\x8a\xf8\xe4\xce\xe8\xdb\x69\xde\x58\xc6\x74\xc2\xd4\xe5\xce\xbe\xc3\x93\x4d\x44\xba\xc4\xa0\x1b\xc3\xfc\x44\x9d\x4b\xb8\xb9\x31\xfa\x77\xa6\x2e\x91\x37\x20\xd8\xdc\x59\x6d\x20\x72\x63\xac\x0c\x79\xee\x94\x0c\x52\x6e\x0c\x26\xe7\x4e\xc9\x76\xe9\x89\x61\xd2\xee\x94\x6c\x5f\xc9\xdb\x31\x4e\xad\xaf\x20\x5b\xa2\xc6\x8d\x41\x32\x51\xe3\x12\x20\x6e\x0c\xf6\xc8\xbe\x4c\xab\xdc\x65\x0d\xf0\x59\x73\x67\x4c\xed\xcb\x15\x1b\xc3\xac\xdb\x9b\x33\xe5\x02\x06\x79\xdb\xbb\x67\x27\x30\xe3\x75\xcf\xae\xa1\x95\xcd\x1c\x27\x8b\x60\x5f\x21\xa9\xdc\x05\xf3\x4f\xb3\x6e\x67\x37\xed\x04\xe6\x64\x11\xec\xf5\x5d\xfe\x3a\xb8\x56\xdc\x3e\x34\xc4\xc6\x39\x37\xa3\x64\xbd\xef\x96\xf6\x49\xc9\xf6\xd3\x3d\x97\x01\x33\x4e\x4a\x86\xe2\x96\x3b\xcb\xe5\xfc\x5e\xf1\x65\x94\x88\xc0\x19\x26\xd8\xe5\xbd\x2f\x5b\x65\x9c\xa9\x4b\x97\xf7\x4e\x04\xce\xef\xbd\x13\x81\xfd\xd2\x4f\x62\xb5\xdf\xfa\x29\xf0\x7e\x36\x97\xdf\xfa\xb9\x04\x62\x9c\x36\xea\x9d\x32\xec\x94\xe1\x2c\x13\xec\x76\x4f\x81\xf7\x73\x98\xc9\xd3\xd0\x11\x81\xf3\x7b\xef\xd3\x9c\x27\x02\xe7\x65\x90\xa7\xcb\xa7\x2e\xd1\x25\xbc\xb7\x04\x7a\x1b\xe7\xed\x6d\x32\x52\x76\xca\x70\xde\xba\xf4\xb8\xa7\x28\xd2\x79\x7f\x97\xeb\x27\x7b\xe4\x9c\x5a\x27\x02\xbb\xf5\x7e\x3e\x5a\xb7\xde\xc1\xdc\x06\x46\x69\xee\xef\x77\xb9\x2e\x11\x2b\x30\xb7\x04\x73\x1b\x27\xb1\x02\x73\xcb\x83\x43\x76\xb2\x2e\x0f\x0e\xd9\x61\x15\x5f\xcb\x9f\xcf\xc3\x2a\x46\x78\x1b\xd7\x8a\x8b\xe5\xb1\x96\x6f\x1e\xbc\xb4\xcb\x5c\x42\x78\x4b\x4c\xb7\x71\x51\x30\x68\xb7\x3c\x38\x64\xd7\xfa\xee\x2f\xc1\xdc\xf2\xb0\x8a\xaf\xdd\xe5\x56\x31\xa6\xdb\xb8\xd6\x37\x50\x79\xac\xe5\x9b\x87\x90\xcd\xc5\x66\x44\x71\xcb\x83\x9b\x75\xad\xef\x2c\xf2\x58\xfe\x55\x1e\x3c\x2a\xb5\x72\x79\x58\xc5\x98\x6e\xe3\x5a\x01\xe2\x3c\xd6\x9a\x4e\x4c\xb7\x71\xd9\x0d\xc1\xdc\xf2\x10\xf2\xbe\x52\x3f\x53\x97\x58\x19\x57\xd7\xcf\x15\x96\x49\xa8\xb5\xa1\x02\x2e\x0f\xce\x13\x9c\xda\x50\x01\x97\x38\x6a\x79\x58\xc5\x17\xff\xf8\xe8\x9e\x7d\x45\x94\xc7\x35\x3c\x11\xef\x07\x40\x6d\x5c\x43\xeb\x5d\x43\xcc\x84\x6b\xa5\x3c\xf2\x60\x26\x1c\xf6\xf7\x8b\x04\x41\x9f\x25\xca\xd9\x00\x04\xcd\xc3\x56\x8e\x72\x36\xae\xdb\x3d\x4f\x67\x8a\xf0\x5e\xf3\xef\x0d\x8a\x83\x73\x02\x7a\x36\x80\x41\x13\xfb\x2c\x41\xcf\xc6\xf5\x18\x03\xce\x09\x04\xda\xb8\x1e\x73\xea\xd2\xa0\x25\x7e\xad\x7c\x72\x42\xa0\x25\xbe\xd9\xb8\xbe\x29\x69\xe1\x1e\xb6\xf4\xfb\x67\xb0\x2d\xdc\x83\xcb\x71\xf3\x6d\x60\xce\xf2\xb0\xa5\xdf\xf6\x4f\xb4\xb3\x3c\x04\x75\xef\x6f\xf6\x59\xa3\x87\xe4\xd8\xbd\x6b\xdd\x1a\x3d\xac\xd1\x7b\x55\x53\x27\xda\x59\x1e\xf2\x60\xf7\x37\xfb\x1e\xab\x44\x7c\xe4\x66\xd2\x1d\x76\xef\xc3\xee\x7d\x1f\x1e\xd3\xee\x0d\x81\x36\x6e\x1e\xcb\x61\xa3\x3e\x2c\xdc\x9b\x10\xe2\xa2\xe5\x61\x4f\x56\x83\x98\x10\x68\x19\xd6\xe8\xcd\xcd\x86\x40\x4b\xb4\xb3\x71\x93\x37\xb4\xb3\x04\x36\x1b\x37\xb3\x2b\xd6\x16\x9b\x50\x66\xe3\x5e\xb1\xa1\x0c\x2b\x0f\xd8\x6c\xdc\x5c\x0e\x44\xb3\x0c\x3e\x83\x22\xc2\xc4\x2e\x4b\xec\xb2\x71\x97\xd6\xd7\x6e\x9a\xd8\x65\xe3\x5e\x15\x66\x09\x5a\x96\xc1\x3d\xb8\x79\x02\x30\x65\x19\x96\xe3\x7d\xeb\x92\xa8\x07\x5a\xd9\xb8\x05\x4d\x42\xd4\x23\xac\x51\xa0\xcd\x44\x32\xcb\x10\x6b\xbd\x1f\x8f\x79\xe8\xbc\xed\xf7\xb6\x2b\x86\xed\x37\x42\xe7\x05\x4d\x50\xce\x12\xe5\x6c\xdc\x8f\x7b\x2e\x5f\x23\x51\xce\xc6\xfd\x78\xf6\xd0\x90\xd5\x7c\x73\x0f\x60\xca\x32\x24\x9b\xa6\x09\x16\x16\x6e\xf0\x19\xe6\xa6\x21\x7b\x72\x58\xcd\x93\x68\x85\x3d\x19\x6e\x6c\xcc\x95\xe6\xcd\x58\xce\x42\x86\xa4\xfd\x64\x61\xe1\x8c\x65\xf0\x04\xa6\xfd\x13\x36\x2c\x43\x58\x75\x9a\x4b\x61\x89\x87\xdd\x7b\xb2\x9b\x20\xc5\x12\x2f\x6c\xcc\x30\x20\xc3\x99\x6b\xa5\x8f\xc9\xd1\x05\x0a\x4b\xa0\xb0\x31\xd3\x3b\x62\xc2\x03\x85\x8d\xb9\x78\x53\x89\x10\x96\x41\x0c\x26\x6b\x3d\x4e\x03\x62\x4b\x9f\x34\x2f\x4e\xcf\xbe\x36\xdc\x31\xbb\xd6\x6f\x23\x6f\xc1\x02\x6d\x66\x58\xb0\x61\x53\xc5\xd4\xcc\x60\x6e\x23\x76\x8d\x49\xde\x80\xbb\x32\x2c\xd8\xc9\xec\x0a\x0b\x36\xac\xcd\x79\xba\xa7\xb5\x19\x8f\x67\xe7\xa9\xc6\xe3\xd9\x25\x5c\x80\x36\x13\xe2\x2b\x41\xbd\xc6\xb4\x27\xc7\x6b\x75\xf0\xd2\x81\x36\x33\xad\xb8\xfc\x69\x68\x7e\x07\x0f\x07\x75\x69\xf1\xa6\x12\xa3\x2b\x71\xb8\xc6\xb4\xd3\x26\x8b\x15\x95\x6b\x28\x37\xcc\xb4\x01\xa6\x65\x38\xc5\x71\x92\x19\x8b\xb5\x35\xe6\xeb\x9e\x42\x8a\x29\x7a\xa8\xdc\x30\x73\xad\xaa\x4c\x89\xe0\xc7\xac\xc3\xd3\xca\x94\xde\x55\x05\x98\xd0\x59\x99\xcb\x87\x1e\x8f\x6d\x2d\xd7\x64\xcf\x14\x28\x84\xa5\xcc\x64\x87\x02\x69\x8d\x87\x32\xe0\x69\x25\x82\xd6\x78\xba\x86\xec\x75\x08\x5a\xe3\x29\x4f\xb4\xc2\x86\x99\xf6\x3a\xb0\xc9\x4c\x7b\x5d\x0a\x14\x3e\xe4\x02\x64\x2b\x61\xb5\xc6\xb3\xaa\x57\x32\x9b\x27\x92\x89\x78\x4c\x86\x6c\x46\x49\xd2\xf6\x59\x1f\xd7\x66\x5a\x5c\x58\x5b\xe3\x39\xb5\xce\xf7\x4e\xbe\xb7\xa2\xbc\x04\xe0\xca\xb4\xb8\x1e\x33\x24\x2d\x2e\x1c\xae\xa1\x28\x2f\xe1\xb8\x12\x87\x6b\x3c\x97\xc7\x5c\x5f\xc2\x65\xb2\x97\x9f\x4b\xe7\x4b\x43\xe2\x8c\xcf\x65\xe8\x4a\x3f\xe5\x67\x9f\x6f\xda\x94\xb7\x29\xf8\xf8\x08\x29\x26\x23\x3a\x19\xd1\xcf\xf4\x3a\x18\xd1\x88\x5d\xe3\xf9\x26\x18\xef\x3c\xe5\x41\x1e\xf6\x1d\x7e\x57\xa6\x3c\xc8\x43\xeb\xd0\xbc\x12\xc6\x6b\x3c\xa2\x87\x68\x5e\x09\xe3\x35\x9e\x6f\xd6\x59\xda\xf8\x5d\xe3\xb1\x99\x02\x77\x65\x5a\xc5\xaf\xcd\x34\xed\xda\xa8\x5c\xe3\x5d\xf5\xac\x99\x6c\x70\xc8\xad\xf1\x32\xf6\x53\xa0\x30\xe5\x67\x5f\x91\xe8\xbc\x9d\xc9\xb2\x7e\x77\x93\xf6\x36\x4a\x36\xe8\x55\xa9\xf7\x37\x06\x45\xda\xa8\x41\xb3\xc6\x6b\xab\xcc\x69\x0c\x58\xd8\xaf\xe0\x5e\x0a\x03\x62\x67\x8d\x37\xcc\x29\x61\x40\x5c\xac\xa1\xe4\x2e\x93\xef\x0d\x8f\x35\xde\xf4\x10\x76\x6f\x78\xac\xf1\xa6\xfe\x72\xc8\x73\xa5\x6b\xc7\xdb\x4c\xc9\xe5\x9e\x67\x0a\x18\xbe\xcd\x44\xb3\xa5\xa7\x3c\xed\x4b\x1d\xf3\xd5\x90\x94\xec\x4b\x08\x61\xb5\x12\x2c\x6b\xbc\x8c\xbf\x7c\xbf\xcb\xd7\xa4\x78\x57\x7a\x3f\x11\xb4\xb2\x51\x9d\x77\x55\xc6\x64\x5b\x4e\x77\x36\x01\xc3\x77\x7c\x67\xa6\x83\xdd\xc1\xe6\x60\x39\xa8\xf3\xe2\xe1\x8d\xef\xdd\x56\xfd\xf4\x78\x85\x01\xdb\xa6\xa1\x65\xb5\xbf\x27\x81\x41\xde\x4a\xc8\xad\xf7\x5c\xd9\xec\x6c\x44\xab\xad\x08\xe3\x7b\x0a\x1c\xb4\xcd\x3d\x97\x76\xbd\xe7\xfe\x9d\x79\x3b\xf8\x38\xb8\x46\xa9\xd9\xfc\xe1\xb1\xc6\x6b\x91\x35\xfa\x04\x6c\xb5\x7f\x2b\xaf\x11\x98\x96\xdf\x27\xa5\xbb\x83\x9e\x28\xbf\x4f\x4a\xd7\xdb\x6c\xab\x2a\x24\xf1\xa6\x56\x55\xec\x3a\xe8\x72\x29\xcb\xf9\x75\x7e\x6d\xc6\x09\x70\xf4\xfb\xd9\x93\xdb\x34\x9e\x6b\xe4\x7f\x3f\x46\x1f\x1c\x50\xf6\xdd\x41\x71\x31\x04\x98\xec\xfe\x4d\xcc\xff\xf9\x67\x17\xc7\xeb\xfe\x11\x5f\x65\x61\x42\xbf\x64\xf7\x77\x60\x3f\x01\x0e\xe8\x97\x04\x7b\x39\x36\x36\x63\x5f\xe6\x7a\xf6\x65\x8b\x1f\x1b\x25\xeb\x16\x2e\x68\xcb\xae\x9e\x39\xb1\x5b\xb2\xaf\x85\xbb\x3f\x9e\x1d\x9e\x25\x71\x59\xf6\x4f\x5c\xbb\xd5\xdc\xd7\x2e\xbc\x3f\xdc\x57\x24\x96\x84\x60\xd9\x3f\x1d\xed\x96\x38\xa2\xca\xfe\xd8\x69\x11\x55\xb2\x5f\x2e\x3f\xbf\x33\x5d\xbe\xb6\xf4\xfd\x91\x46\x81\x59\x49\x60\x95\xfd\xe1\x5d\x74\xeb\xbe\xaf\x75\xbf\x3f\x42\x75\xdd\xba\xef\x2b\x7f\xb9\x3f\x97\x7b\x2e\x53\x20\xfb\x72\x97\xf7\x67\x95\x1b\x66\x17\xe1\xc7\x34\xd9\x1f\x7e\x08\xa6\x49\x82\x68\x1c\x41\x9f\x40\x34\xb2\x96\xec\x1f\xb1\x6a\x13\x12\x6b\x22\x7d\xa8\x7f\xc4\x4a\x47\xa6\x0f\xf5\xd3\x57\xc3\x47\xae\xbf\x06\xc8\x61\x90\x7d\x75\x7a\xa4\x69\xe3\xab\xd3\x3c\xfd\x7f\x7c\x13\x1f\x39\x19\xd1\xa7\xbf\x4f\x6e\x3f\x67\x5a\x08\x3e\xa1\x3a\x10\x6a\xd2\x27\x54\xe9\x4b\x87\x03\x01\x24\xfd\x97\x7d\xaa\xfa\x3d\xca\x41\xff\x04\x9d\xdf\xff\x34\x8f\xef\xa0\x15\x37\xfd\xed\xe7\x17\xbf\x9b\x2b\x07\x9f\xd3\x9f\xa6\x8d\x55\x12\x9a\x6a\x02\x53\xc1\xdf\x31\xd8\xcb\x0a\xfe\x52\x25\xdc\xe1\x6f\x7a\x52\x25\x5c\xaa\x7d\x3a\x4e\x0e\xb9\x7f\x14\xcd\xc7\x99\xa7\x51\x7a\x9d\xe9\x2f\xfe\x8e\x8b\x6d\xeb\x2f\xfe\x52\x26\xf7\xb8\xd6\x42\x68\xfe\xaf\xac\xfd\x56\xe4\x7c\xfd\xd9\xfe\x5f\x07\xd7\xfa\x6b\xd2\x36\x87\x7f\x14\x68\xbf\x55\x5e\xd3\xfc\x77\xcf\x01\x8b\xdf\xa4\x3c\x9a\x90\xe2\x31\x97\xda\x34\x21\xc5\x26\x18\x71\xb0\x71\x9a\x60\x44\x03\x80\x5e\xff\xb1\xf8\xc7\x9f\x8d\xf7\xd3\xe2\xfb\xef\xad\xef\xe0\x32\x67\x5a\xac\x33\xd7\x3f\x6a\xfd\xf1\x67\x63\xb5\xb5\xfc\xfe\xc6\x66\x79\x7e\x2d\x57\x45\x45\xa3\xb4\xeb\x7f\x68\xfe\xf8\xb3\x51\xda\x46\x04\x62\x5f\xaf\xb8\x11\x81\xf6\x21\xb7\x8e\xef\xe0\x2a\x2a\x69\x16\x6c\x1c\x6b\x69\x37\xb0\xa5\x66\x89\x2e\xfe\xf7\x5f\x07\x4f\x97\xfb\xdc\xfb\x58\x61\xa0\xd6\x97\xc1\xdb\x4c\xef\x38\x96\x7f\xdc\x4a\x43\x18\x1c\x11\x4b\xac\x1a\x06\x47\x33\x93\x03\xfa\xac\x99\xc9\xcd\xa4\x0d\x7f\xfa\xdb\x4c\xda\x76\xaa\x42\x69\xdf\xc1\xe5\x4a\xb5\xf3\xff\xa1\x00\xff\x3a\xb8\xac\xbd\x66\xd2\x2e\x50\xdf\x1f\x7f\x36\x93\xb6\x7d\x9f\xea\xf5\x65\x48\x36\x5f\xec\xb5\xeb\xe3\x9a\x2d\x4f\xa5\xf9\x62\xaf\x5d\x94\x16\x77\xa6\x5d\xcb\x6a\x6b\xdf\x57\x64\x72\x55\xed\xea\x0e\xbe\x1f\xf4\x6a\x3d\xa6\x85\xd0\x2c\x84\xa8\x65\x3b\x34\x0b\xa1\x4d\x68\xc5\xf1\x1d\x5c\x79\xa5\xa6\x60\x3a\x7c\x61\xdf\x14\x4c\xb7\xf9\x51\x17\x56\x39\x4f\x53\x3e\xdd\xe6\x07\x58\xe8\xcf\xff\x30\x28\xc6\xff\xb0\x27\x9a\xff\xe5\x6e\x5f\x51\xb4\xef\xdf\x9b\xda\xe8\x36\xfb\x87\x15\xb8\x1d\xd4\x09\xc5\x28\x63\x49\x73\xf3\xe7\xd9\xcd\x1a\x0b\x1f\x9b\x37\x6b\xac\x59\x4e\x71\xee\x7f\x49\x73\xb3\x9c\x9a\x95\xb3\x3e\x45\xfc\xe3\xcf\x6e\xe5\xf4\xdf\xf7\x0d\xcd\x77\x10\x1e\x5b\x4e\x3b\xee\x65\x10\xf4\x9f\x3f\xe8\xfd\x3d\xdf\x17\x1c\xb1\x0e\xa2\xab\x5b\x4e\xab\x92\xff\x8f\x3f\xbb\xe5\xd4\xb7\xaf\xa2\x7b\x7d\x23\xd4\xe5\x95\xfa\xf7\x2f\x46\x73\x49\x73\xdf\xfc\x2d\x9b\x85\x77\xfe\x96\x8c\x76\x0b\xaf\xef\xdf\x41\xad\x5b\x78\xdd\xc2\x3b\x37\x07\x2d\xbc\x6e\x8d\x9d\xbb\x83\xd6\x58\xb7\x9c\xce\xc3\x41\xcb\xa9\xb3\x20\xce\xf8\x0e\xfa\x83\x07\x70\xca\x33\xc6\xff\xb0\xfd\x9e\xff\x98\xf7\xbf\x9f\xff\xfc\xe3\xff\xff\x5f\xe7\x3f\xff\xf7\xf9\xef\xcf\x3f\xee\xff\xfe\xd7\xbf\x9e\xff\xf8\xaf\xf9\x6f\xf7\x7f\xfd\xe3\xff\xfb\xeb\xe8\x3f\xe6\xf3\xfe\xdb\x7f\x3c\xff\x7a\xfe\xcf\x7f\xfe\xf7\xbf\xee\xe7\x1f\xff\xfc\xcf\x7f\xfe\x75\xd5\xfa\xfd\xdf\x00\x00\x00\xff\xff\xe7\xdc\x37\x17\xd8\x80\x03\x00"); -var _bbad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x4f\x6f\xd4\x30\x10\xc5\xef\xf9\x14\x73\x2c\x87\x12\x3b\x26\x75\x56\xaa\x2a\xd1\x5d\x54\x22\x54\x40\x2c\x2d\x48\x88\x83\xff\x8c\x57\x96\x88\x13\x39\xc9\x61\xbf\x3d\xf2\x4c\x08\x87\xd5\xdb\xfd\x79\xde\xf8\x79\x67\xea\x63\x7f\xea\x53\x5c\xa0\xfe\x9a\x47\x77\xc6\x05\x42\x4c\x3e\xe3\x3c\xae\xd9\x21\x58\xbc\xc4\x54\x55\xb2\x01\x1f\xdd\xf2\xef\x27\x89\x1b\xcc\x54\x55\xf5\xd3\xe3\xa7\xdb\x0f\x2f\xc7\xdb\x8f\xb0\xce\xb8\xb1\x63\x7f\x3a\x5f\xe7\x05\x87\x3e\x85\x11\x14\x7b\xfd\x3a\x6d\x7e\x80\xfa\x1b\x5e\xe2\xbc\xe4\x2b\xdc\xbc\xf7\xa3\xc5\x37\xe0\x31\x14\xfe\x25\x7b\xcc\x31\x5d\xe0\xe6\xe9\x51\xee\xf4\xbc\x4e\xd3\x1f\x1c\x30\x2d\xd0\x10\xc3\xe4\x49\xab\xfa\xf8\x6c\xa6\xcf\x66\x40\xd8\x83\xbc\xd2\x09\x1d\xbc\x62\x9e\xe3\x98\x40\x36\x6f\x85\x68\xff\xf3\xef\xd7\x09\x41\x6e\x1d\x7e\xbe\xf4\x27\xf8\x25\x41\x0a\x68\x5a\xa5\xbb\xdf\x1b\xff\xf1\x3c\xfa\xbd\xaa\x11\x9c\xdd\x45\x9f\x4d\xba\x60\x75\x6f\xa4\x69\x1e\x60\x13\x68\x75\x4b\x48\x31\x52\x84\xde\x11\x32\x8c\x4c\x41\x87\x8e\x90\x65\xe4\x1e\x40\x6b\xc1\x55\x9e\x91\xa7\xaa\x43\x41\x96\xdb\xdb\x50\x50\xd7\x14\x14\x90\x50\x11\xad\xc5\x5d\x75\x6f\x94\x91\x05\x91\x40\xab\x3b\x42\x1d\xa3\x03\x19\x05\x21\xc7\xc8\x51\x95\x22\x84\x8c\xb8\x97\x2e\xc8\x52\x54\x65\x2d\x55\x51\x7b\xeb\x19\x79\xaa\xa2\xf6\x25\xd0\x26\xd0\xea\x12\x55\x79\x7a\x10\x89\xd6\x82\x11\x1b\x3d\x19\x25\x85\xf0\x6c\x2c\x02\x77\x82\x50\x60\x63\xa0\x1b\x0f\x74\x63\x60\x63\xe0\x7f\x82\x72\xf1\xb3\x15\x3f\x5b\xca\x32\xfd\x7d\x0e\xe5\x7b\x59\xba\x7d\x0f\xdc\x9a\x33\xa6\x85\x56\x8e\x86\x5d\x06\x18\x13\xee\x2b\x3d\x8d\x53\x71\xd1\xe7\x6f\x00\x00\x00\xff\xff\xbd\xdd\xac\xdd\xfe\x02\x00\x00"); -var _cccb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x73\xdc\x1e\xb6\xb6\xe2\xd8\x91\x20\x2c\x94\x84\x52\xb3\x6c\x5b\x9a\xcd\xb6\x50\x7a\x90\xa5\x71\x2a\x68\x64\x23\xdb\x87\xfc\xfb\xa2\xd1\xc4\xed\x21\x48\xdf\x93\x46\x79\xcf\x33\xc5\xa1\x3d\xb6\xc1\xcf\x50\x7c\x8d\x83\x3d\xe1\x0c\xbd\x0f\x2e\xe2\x34\x2c\xd1\x22\x74\x78\xf1\x41\x08\xb9\x01\xe7\xed\x7c\x47\x5a\xec\xd5\x8c\x42\x14\xe7\xe0\x9f\x4f\x8f\xe7\xd7\x8f\xea\xf1\x13\x2c\x13\xb2\x7c\x68\x8f\xa7\xdb\x34\xe3\xb5\x0d\xfd\x00\x55\x2e\x77\xcb\xc8\x4f\x00\x14\xdf\xf0\xe2\xa7\x39\xde\xe0\xe1\x83\x1b\x3a\x7c\x07\x0e\xfb\xa4\x7f\x89\x0e\xa3\x0f\x17\x78\x78\x1e\x22\x1a\xb9\x1e\x9c\x96\x71\xfc\x83\x57\x0c\x33\x48\xd2\x30\x38\x5a\x45\x71\x78\x31\xe3\x67\x73\x45\xf8\xdf\xce\x1b\x1d\xd2\xd9\x1b\xc6\xc9\x0f\x01\xa4\x7c\x5f\x96\xf5\x3f\xfd\xf5\x36\x22\x3f\x26\x8a\x1f\xe7\xf6\x08\x3f\x25\xc8\x12\x36\xf5\x56\xd6\xbf\x58\xff\xfe\x32\xb8\xf5\x96\x94\x39\x81\xf5\xce\xfe\x36\x51\xec\x71\xa3\x4a\xdd\x3c\x81\x2a\x1b\x99\xc9\xd4\x89\x6a\x25\xf6\x58\xa9\x52\x57\x89\x76\xb5\xd8\x63\xdf\x59\x25\x89\x1a\x26\x4b\xa4\x99\x30\x91\x2a\x33\x75\x1d\xd1\x8e\xc9\x11\x29\xa6\x9e\x28\xd7\x39\x4d\x75\xcd\x86\xa8\x37\xf4\x7f\xba\x4a\x5f\xe7\x6e\x52\xec\x56\xd3\xd1\x84\x0b\xb2\xeb\xea\x09\xf2\x66\x4b\x86\x75\x36\x9c\x2c\xe6\xcd\x86\xe4\x86\x65\xc5\xb2\xa6\x08\x4d\xcd\xf1\xb6\x77\x99\x52\x37\x15\x67\xa1\xdb\x69\xa3\x29\x22\xc7\xd0\x86\x65\x9d\x13\x48\x4e\xd0\x65\xd9\x69\x8a\xa9\x4b\x36\x9f\xcd\x12\xa4\xa9\x5a\xbb\x6c\x97\x18\x31\xcc\x34\x53\xd4\xc7\xd4\x1b\x1f\x70\x1d\xdb\x71\x18\x53\x15\xfd\xfe\x06\x00\x00\xff\xff\x62\x85\x62\x69\xe2\x02\x00\x00"); -var _bcaef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4b\xaf\x6e\xcd\x91\xa0\x35\xf7\xaf\xd8\xc3\x66\xd0\xd4\xca\x7b\xa6\x64\x1d\x09\xca\x58\xb8\xa5\x06\x44\x75\x01\x12\x62\xf0\xae\x5b\x61\x89\xfa\x6c\xd9\xae\x41\xfd\x7b\x94\xcf\x13\xe7\x73\x0b\x21\xed\x33\x39\x6b\xed\x77\xe5\x2d\x32\x32\xee\x19\xf1\x0f\xff\xf8\x87\xdf\xfd\xe1\x97\x3f\xfe\xed\xeb\x1f\xfe\x97\xbf\xfc\xe9\xfa\xa7\xe7\x6f\x5f\xef\x1f\x7f\xb9\xff\xf2\xfc\xf5\x4f\xff\xf6\x97\xeb\xf9\x3a\x9f\x7f\xf9\xe3\x2f\xbf\xf9\x4d\xca\x5f\xf7\x1f\xaf\xbf\xfd\x7c\xe5\xbf\xeb\x5f\x3f\x7f\xfe\xcd\x6f\x76\xfb\x7f\xfa\xf7\xbf\xfe\xed\xf9\xd7\x3f\xfc\xf2\xfe\xe9\xab\xf8\xdd\xfd\x6f\x7f\x8e\x6f\xbf\xbe\xfe\xe1\x7f\x7d\xfe\xe5\x8f\x7f\xfd\xdb\x5f\xfe\xfd\xeb\x3f\xfc\x77\xf7\x9f\xce\xe7\xbf\xf9\xba\x9f\x77\xff\xfd\x7f\xfe\xcb\xfd\xfc\xe5\x8f\xbf\xfc\xcb\xd7\x7f\xf8\x4f\x9f\x3f\x7f\x7e\x49\xbf\xfe\xf0\x4f\xff\xf6\xe7\x3f\xff\x3f\xcf\xbf\x3e\xbf\xfc\xed\x6b\xf0\xb7\xe7\x97\x9b\xff\x7f\xf3\x0f\xff\xf8\x9f\x3f\x7f\xfe\x9f\x3e\xff\xfa\x7c\xfd\xc3\x3f\xff\xf2\xc7\xff\xf4\x87\x7f\xca\xc7\x51\xff\xe3\x3f\xff\x97\xdf\xa7\xfe\x1f\xff\x47\x3e\xe1\x8b\xff\xed\xf9\xcb\x5f\xff\xf8\xa7\x5f\xbe\xd2\x7f\x7b\xe4\xf4\xf7\x3f\xff\x97\x7f\xff\xf3\xf3\x95\xa2\xa7\xff\xe3\x9f\xff\xf0\xbb\xaf\xff\x33\x7d\xa5\xe3\x2b\xb7\x9e\xd6\xff\x15\x7f\xff\xdf\xff\xf3\x9f\xee\xe7\xeb\xf0\xad\xb8\x8a\xeb\x4f\xf7\xf3\xd7\x3f\x7f\xae\xe7\x2f\x9f\x5f\xfe\xe5\xf9\xcd\xd7\xd7\x6f\x8f\xe3\x38\x7e\x7c\xed\x7f\xbf\xfd\xdd\xf8\xfd\xef\x7f\xec\xbf\xfd\x6e\x1e\xc7\xef\xfe\x71\xff\xfd\xb7\xbf\xfb\xef\x7f\xff\xfb\xdf\xfd\x3e\xfe\xfe\x3f\xfc\xfd\xdb\xdf\xf3\xb7\xe7\x97\xfb\xff\xd3\xe3\x6f\x92\x03\xfd\xf2\xa7\xbf\xdd\xcf\xeb\xdf\x62\x8c\xdf\x1e\x47\x7a\x7f\x7c\xa5\xdd\xea\xbf\xfe\xf9\x37\xe9\x38\x62\x76\x7f\xbc\xaf\xff\xfb\xf3\x97\xdd\xa0\x5d\x3f\xbe\xd6\xd8\x4f\x63\x3f\x2d\x9e\xee\x1f\x5f\xab\xf2\xf4\xfc\xf8\x4a\xc7\xb1\x1f\x3f\xc7\xee\x72\x3f\xd4\xfd\x37\x9a\x7c\xda\x8f\xaf\xee\x1f\xfb\x8f\xaf\x55\x78\x1a\x3f\xbe\x46\xb6\xc9\xfc\xf1\xd5\xab\x5f\xae\x1f\x5f\xa9\x65\x1e\x3f\x3f\xbe\x52\xf5\x83\x73\x77\xc5\x98\x9f\x6b\x7f\x60\x0f\xf7\x7e\xb4\xdb\x3d\x7e\x63\x2a\x9f\xbd\xa4\xcc\xb7\xe7\xf1\xe3\x6b\x38\x83\x33\xfd\xf8\xea\xce\xf5\xac\x7b\xb4\xc6\x63\xdb\xcd\xfc\xb6\xff\xf8\x1a\x63\xf2\x38\x7e\x7c\xa5\x64\xb3\xf9\xe3\x2b\x15\x9b\xed\x99\x75\xa6\x73\x32\x33\xff\xba\x67\x96\x99\xce\xc9\xc0\x7d\x3f\x5e\x7d\x37\xa3\xdf\x7b\xec\x81\x19\xed\xde\x9d\x55\xd6\x76\xef\x6f\x1b\x9d\x3d\xfb\x5b\xa7\xf3\xf2\x2d\x3d\xbc\x7c\xbb\xa7\x93\xf6\x56\xad\xd2\x3b\xcf\x89\xe7\xc4\x73\xde\x7d\x8c\xe6\x0f\x85\x97\xbe\x78\xa9\xbc\x94\xc1\x0b\x6b\x1c\x8c\x90\x8e\x6e\x1b\x3b\x1e\xbc\x0c\x7b\x9b\xbc\xcc\xc2\xcb\xf2\xc5\xde\x3e\x3f\xbe\xf2\x51\x8a\xbf\x9c\xbc\xb0\x43\xe9\xb8\xec\xcd\xcf\x6e\x7b\xf3\x97\xc7\xe9\xd8\xf5\xeb\x2f\x1b\x60\x29\x1d\x74\x90\xf9\x2c\x25\x7f\x61\x6e\x29\xb3\x36\x3a\x4b\x85\x67\x5b\x74\xc7\xf7\x65\x38\x3e\x93\x49\xce\x99\x4d\x49\xc9\x39\x0f\x7f\xf9\xec\xf6\xcb\x7e\xcf\x8d\xa5\xa0\x41\x4a\xce\x78\xda\x97\x33\x5e\x36\x7f\x1c\xc5\x26\xaf\xa3\xf0\x92\x9d\xb1\xd0\xcc\xc9\x5f\x00\x7a\xce\xfe\xe2\x8b\x40\x9f\xb6\x11\xe8\x8b\xf5\x67\x17\x00\x96\xa4\x0c\xd0\x67\xb2\xcd\x64\x6a\x4c\x20\xaf\xfd\x9c\x80\x4b\x66\xfa\xdd\x11\x4f\x9e\xfd\x7b\x4c\x12\x18\xe5\x98\x24\x5f\x95\x98\x24\x1b\x5b\x36\x58\x2b\x23\x14\xa7\x98\x59\x70\x29\xbe\xf8\x51\xcc\xd7\xcf\x62\xbe\x8c\x52\x9c\x2f\x47\x2f\x95\x00\xb8\x6d\xa6\x1d\x30\x7e\x11\xe0\x31\xfe\x47\xe8\xdb\x46\x24\xa9\xf6\x76\xf1\xe2\x26\x15\x41\xee\x02\x8a\x48\x52\xed\xc0\xd5\x64\xc0\x57\x63\x35\xb4\xa9\xac\x06\x48\xd6\x8d\xf2\x7e\x5f\x03\xe1\x19\xa3\xba\x96\xc1\x5a\x6a\x73\xf4\x02\x35\x0c\x0a\xf6\xff\x47\xd3\x52\x75\xa1\x62\x69\xf5\x34\x74\x76\xa9\x8a\x59\xc3\xa1\x96\xb3\xf1\x33\x4f\x43\x76\x28\x50\xcb\xfd\xaf\x9b\x2c\x16\x01\x50\x6f\xf6\x8c\xb5\xb4\xc3\x7e\xd9\x81\x16\x08\x0f\x34\x1b\xab\x61\xbc\xb6\x57\x53\x81\x4a\x73\x2d\xe2\x5e\x73\x5f\xba\xdf\xc7\xbe\xd8\x93\xfb\xe2\xfa\x5b\x1c\x04\xdb\xc4\x41\xb0\x37\xf7\xc5\xbd\x6c\xa7\x2f\xf6\x16\x47\x81\x25\xb6\x38\x0a\x4e\x26\xf6\x85\xf5\x36\x0f\x2f\xb4\x2a\xf5\xbd\x2f\xe2\x71\xdf\x07\x21\xd3\xb8\x4b\x88\x44\xd7\xee\xbe\x4c\x1a\x77\xd7\x22\x22\x74\xd7\xd2\xfc\x25\xce\x84\x6d\x5c\x4b\xf1\x33\xcf\x04\x4b\xe9\x9e\x09\x3f\xf2\x4c\x30\xf7\xee\x99\x70\x22\xb1\x0e\x7f\x88\x75\x00\xa2\xfe\xd0\x93\xcf\x2f\x3d\xb1\x53\x23\x76\xc4\x17\x77\x64\xb2\xbe\xe1\x69\x91\x56\x0e\x4f\x8b\xa3\x8c\xea\x31\xf0\x33\x31\xcc\x2d\x1d\xae\xc4\x65\x8d\xd8\x15\x3b\xd8\xa7\xc5\x93\x37\xdc\x13\x37\x7b\xb8\x27\xd2\xd0\x11\x7b\xe2\x67\x41\x50\x7d\xb9\x77\x73\x7b\xda\xe7\xde\x53\xb7\x36\xb0\x85\xce\x02\xd4\x53\x54\xbc\xb2\x2f\x4c\xe3\x02\xff\x84\xc2\x25\x14\xfc\xe8\xe5\xef\x80\xea\x3e\x80\x08\x0b\xba\x13\xdf\xd0\xf6\xce\xfc\x9d\x99\xde\x85\xbf\xfb\x5c\xf9\x3b\x23\xdf\x71\xc4\x98\xd1\x2d\x4f\x91\x3f\xdc\x02\x40\xe2\x73\x8b\x96\x52\xee\xdb\x53\x24\xf2\xdd\x82\x40\x6a\x7b\x07\xb9\x60\x9b\x6f\x41\xe0\x99\x7a\x1d\x47\x78\xbc\x48\x1b\x2c\x30\x6f\xaa\xb4\x2a\xcd\xb3\x07\x6c\x82\x3d\xb9\xb1\x92\x34\x79\x16\x24\x74\x95\x5b\x00\xcb\xaf\x58\x0b\x88\x9c\x3d\x62\x13\x6c\xcf\x8d\xb5\xcc\xc3\xaf\x24\xd5\xf1\xd9\xf4\x65\xf1\x02\x5e\x66\x3b\xfe\xf0\xec\xdf\xa5\x07\xb6\xbe\x1c\xfd\xe0\xe5\xf1\xc5\x41\x5e\x07\xa1\x49\x77\xf6\xec\x73\xee\x49\xe6\xc0\x88\x1e\x9e\xe9\x22\x3d\x3c\x13\xfa\x9e\xbb\xb3\x4c\x76\xe0\x2c\x41\xa0\xdc\x63\x96\x83\x17\x80\x3c\x67\xfb\x8e\x10\xe6\x38\x43\xcb\xde\x6f\xa7\xe7\x8b\xb4\x60\x39\x94\x13\x67\xa7\xb3\xa7\x68\x26\xc6\x8d\x53\x04\xc3\xcd\x43\xb8\x83\x5a\x79\x08\xf7\xc3\x36\x2e\x09\x9e\x93\xf7\x29\x5a\x15\xb6\x9a\x87\x2b\x9a\xbe\xb8\x08\x4e\x74\xf6\xe4\xcc\xc3\xce\x5c\x51\xb5\xb3\xd3\x5f\x6c\x13\x93\x76\x36\x31\x69\x7e\x99\xce\x13\x59\x26\xcf\x00\x30\xf3\x9c\xce\xf3\xf0\x05\x54\x87\x52\xe5\xe9\x34\x39\xba\x79\x3a\x1b\x0e\x47\x9e\xce\x06\x0e\x9a\xa7\xb3\x29\x7e\xe6\x39\x46\x7a\xcb\xf3\x62\x69\x7e\xe5\xcc\x5c\xe7\x14\x0f\x92\xc3\x08\x4e\xe4\x8f\xbc\x9c\x26\xe7\x34\x2f\xa7\xe9\x6c\x16\x07\x52\xfc\x5c\xce\x4c\xfc\x5e\xe2\x04\xe4\x31\xaf\xd8\x79\x3b\x73\x9a\xcb\x36\x22\xe2\xb2\x33\x67\x93\xfc\x25\x26\x00\x38\x3f\x31\x26\x1d\x7c\xe2\xe8\x00\xb4\xd3\xa9\x41\x4e\xf2\xe9\x2f\xee\xf4\x29\xee\xb9\xe8\x2d\x0a\x8b\x41\xe7\x5e\x3e\x7f\xbb\xec\xd4\x9d\x40\x2a\x16\x74\x97\xcc\x16\x02\x92\x2f\xa7\x5e\x6d\xb1\x7e\x8a\xef\xf9\xda\xf0\x15\x95\xaf\xf3\xc7\x17\x44\x35\x5f\xae\x06\x62\x91\xa5\x61\xa2\xc3\x1d\xf3\xa7\xff\x9f\x94\xc7\x97\x90\x66\x01\x00\x94\x47\x0c\xbe\x83\xf4\x32\xee\xa6\x3b\x2e\xea\x96\x87\x34\xbf\x71\xc3\xe0\x6d\x65\x4b\xe2\xcc\xa2\x6c\x71\x7b\xf9\x54\x7f\xce\xb7\x6c\x49\x3b\x43\x14\xca\xf1\xeb\x28\x65\x4b\xcc\xa9\xf8\xed\x9e\x7b\xb1\xab\xfb\xef\x6b\x2e\x0a\xc8\x13\xe6\x52\x92\x58\x05\xfb\x2e\xca\xab\x13\x09\xa5\x28\x61\x4e\x58\x60\x51\xc2\x9c\xcd\x97\xf1\x53\x4d\x29\x19\x8d\x85\x6e\xb3\x58\xe0\x8c\x73\x74\xeb\x2f\x76\x8b\xe0\x5e\xb2\xa3\xc3\x0e\x4b\x71\xaf\x91\xc2\xcb\x16\x1e\x61\x72\x45\x61\x71\xa2\x2a\x94\x82\x76\xc3\xc0\x25\x86\x60\xe6\xc5\x5e\x87\x2f\x2e\xd0\xe6\x41\xd7\xe0\xab\x65\xc2\x30\x2b\x1b\x5b\x26\xd2\xa1\x24\xb3\xcc\xc7\x17\xe0\x36\x5f\x5f\x68\xb3\x10\x08\x3d\x04\xe5\xf3\xf1\x17\x5f\x4e\x5f\x18\xe7\x8c\xcf\x68\x03\x47\xec\x39\xe7\xef\xc8\x5f\xb9\xec\x10\xd4\x2f\x97\x1d\x42\x4f\xcb\xe5\x8c\xdc\xa6\x8d\x6d\x29\x1f\x9c\xd7\x02\xba\xe5\x63\xf9\x4b\xf3\x85\x36\xa0\x55\x3e\x40\x8f\xba\x15\xb6\x74\xb0\x05\x15\xe1\xef\xe0\x88\xbc\x30\xcd\x9c\x36\x4e\xa6\x87\xf3\x52\xf6\x21\x49\xcf\x09\x97\xdb\xbc\x21\xbd\x03\xf4\xde\x47\x3a\xbd\x43\xc6\xe6\xdf\xa1\x08\x7b\xc9\xe9\x1d\xd0\xad\x0d\xb2\x7c\x6c\x8d\x30\x6f\xb0\xe4\x63\x23\x68\xf7\xaf\x5b\xe3\xea\x5b\x4e\xcc\x07\xfa\x56\xe5\x69\x03\x27\x1e\xcb\xdf\x1f\x6b\xec\x6c\x3e\xd2\x56\xd9\x3b\x7d\x6d\x05\xac\x6f\xf4\xc8\xc7\xd6\xb8\x96\xbf\x2f\xcf\x78\x3e\x40\xd8\x3d\xc9\x7c\x80\xae\x87\xbf\xef\xfd\xcf\x8e\xfa\xb0\xd6\xfd\x98\x19\x76\xf1\xc8\x00\x3e\x32\x00\xcd\x36\xfe\xa1\x43\xe6\x63\x6b\x11\xc8\x0e\xf9\x00\xb3\x72\x4a\xf4\x51\x9e\x38\x66\xf9\x28\xa2\x6e\xa5\x97\xea\x7e\x4f\x1a\xa3\x11\x1c\x34\xae\xcb\xc6\xfc\x9d\x3d\xe8\x79\xd2\xd3\x66\xdd\x63\xba\x9e\x2d\x01\x0f\x08\x55\x3e\x80\x7b\x19\x3e\x33\xc4\x72\x51\x1f\x36\xaa\xd1\x2d\x64\xa2\xa3\x4c\xe5\x03\x32\x91\x8e\x8d\xac\x19\x85\x3d\xa5\xd9\x7c\x29\x3f\xbe\xc6\x66\x85\x59\x4d\x3c\x71\xea\x32\x2a\xf6\x2c\x87\xdf\x7c\x78\xae\x3c\xbf\x62\xcf\x9e\x2d\x6a\xf0\x3c\x32\x1f\xed\x5d\x18\xdd\x9e\xb6\x16\x3a\x0f\x07\x40\x09\x65\x16\x28\x9a\xab\xc4\x9f\xa1\xb0\x2d\xf9\xb2\x41\xb9\x0f\x6f\xfe\xa9\x42\xb2\x9d\xaa\x7d\xf9\x98\xcc\x68\xc3\x7b\x96\xcd\x4e\x33\x4a\xcb\x42\x33\xce\xe8\x2c\x0b\x06\x9c\x51\x59\x16\x4c\x2a\xff\xd4\x4d\x32\x0d\x36\x98\x66\xd9\x5c\x3e\xa7\xcd\x24\x17\x12\x75\x46\x5c\x45\x98\xcb\x88\xab\x68\x7e\x39\xc1\xc6\x72\x3e\x98\xd1\x66\x0b\xb3\x1c\xfc\x70\x9d\xfe\x40\x9f\x90\xfa\x9c\x1d\xcd\xc3\x97\x9d\xc6\x96\x51\x91\x9f\x33\x62\x29\xb4\x3a\xa7\x67\x77\x74\x24\x9f\x07\xcf\x7c\xf2\x4c\x9e\x01\xef\xb3\x78\x66\xe0\x2d\x5d\xce\xc2\x37\x79\xef\x19\x72\x77\xce\x07\x9d\x2f\x1e\xf7\x94\x81\x67\x66\xf3\x72\x9a\x7e\x12\x8a\xe3\xe0\x65\xec\x8d\x39\x78\x9c\x3f\xbe\xd0\x9b\x72\xd6\x84\x52\x37\xbd\xcd\xf9\xf0\x88\x2c\x7f\xd9\x9b\x51\x1d\x55\xa5\x17\xd4\xcf\xfb\x70\x8e\xce\x66\xe7\x7d\x3c\xfb\xe6\xcb\x39\x73\x3c\x73\x4a\xf3\x1b\x32\x96\x33\x16\x90\xc4\x9c\xf6\x99\x44\x1d\xcc\x79\x1f\xc4\xe1\x4c\xf7\x41\x1c\x87\xbd\xbe\x0c\xc6\x2a\x33\x6b\x67\xa2\x9b\x65\xa0\x1f\xe6\xbc\x19\x06\xba\x79\xce\xf9\xfe\xf1\x35\xd3\xa2\xbb\x8d\x3f\xa3\x67\xc0\xb0\xb9\xc2\x38\x7c\x6c\xfb\xcf\x34\xe4\xb0\xb2\x4f\xb9\x30\x36\x3d\x57\x97\x01\x9d\xc8\x15\xd4\x69\x6c\x73\x56\xd7\x6e\x9c\x30\x64\x76\x94\xfa\x8c\x64\xdc\x39\x9c\xc8\xc5\x18\x93\x72\x56\xd9\x6c\x1c\x1c\x25\xa0\x9c\x26\x1f\xad\x20\xa9\x0c\xb7\x86\x2f\x2c\x10\xd9\x28\xa7\xc9\x70\xeb\xf1\x40\xf3\x19\xc6\xca\x9c\x26\xbd\x7d\xf6\x1a\x1a\x1f\x9d\x80\xa7\x30\xd9\x4b\x64\x05\x2a\x05\x9b\xd9\x06\xf5\x7e\x49\x60\x0a\x7f\x0f\x53\x14\xe7\xb0\x2c\xb0\x18\xd5\x3e\x97\x25\xed\x62\x07\x0a\x12\xd7\xcf\x97\x18\x7c\x33\x97\x5c\x10\xbf\x32\xe6\xcc\x5c\x10\xbf\x7e\xfd\xac\xfd\xd7\x2f\x2e\x12\x4c\x85\x11\xfe\xfa\xcb\x66\x55\xa9\xe7\xb1\x07\xad\xb9\xf8\xb2\x01\x59\x9f\x4d\x5e\x50\x44\x73\x7d\x5f\xd4\x47\x90\xa0\xed\x53\x3e\x33\x43\xb6\xad\xa1\xcc\xcc\x99\x6a\x1b\xdc\x33\x33\x46\xeb\x34\xe6\x80\xb5\x2d\xff\xcf\xbc\xc5\x94\xdc\x06\x6d\xa1\xbc\x6d\x1f\xf8\x99\x2b\xdf\x4f\xbe\x67\xe9\x6d\xcb\xc4\x33\x83\xea\x6d\x33\xfa\x99\x39\x1b\x6d\x8b\xc4\x33\x57\xfa\x99\x8c\x5b\xec\x87\xfe\xe1\x3f\x6d\x03\x67\x80\x9f\x6d\x83\x46\xc8\xb6\x0d\x98\x79\x40\xd4\x9a\xab\x8f\xa6\x1f\x09\xc7\x16\xae\x72\x3b\x25\xf2\x50\xe3\x76\x42\x81\x18\xf7\x84\x02\x31\xec\x29\x1c\x97\x9f\x48\x2c\xfc\xe1\xda\xdf\x30\xfd\xcd\x8a\x47\x61\xf6\x97\x5b\xb5\x58\xe2\x05\xf5\x85\x60\xb5\x4d\xbc\x24\x81\xed\xc2\xa0\xdd\x79\x04\x20\x76\xa8\x70\x51\xa0\xbe\x6d\xd3\xb7\x91\xe9\x1d\xea\x76\xb4\xc3\xfe\xf7\xa9\xe2\xe8\xb7\xad\xa3\x0f\x36\xab\x3d\x15\x78\xb3\xf2\xa7\xf1\xcc\x48\x98\x8c\x73\x6c\xd0\xb3\xbf\x1f\x4c\xe6\x0d\x20\x30\x87\x57\xea\x09\x34\xfb\xa6\x5e\x03\x6e\xdc\x0f\x66\x9c\x78\x7c\x60\x23\xfb\xf3\x9e\xd8\x07\xf0\xba\x27\xf6\xc1\xcf\x2b\x36\x74\x3e\xd9\x0c\x76\x70\xf0\x7a\x67\xf7\x21\xa3\x1d\x6c\x39\xa0\x3b\xbd\xbb\x3f\xf4\xd2\x0b\xdf\x14\x9e\x2b\x7f\x67\x2e\x9d\x95\xa4\xef\xc4\xb2\xdc\xb7\x9a\x3b\x33\x74\xbb\x77\xb7\x88\x79\x6c\x94\xc4\x66\x9c\x7b\x3f\xd9\x69\xa8\x4d\xef\x9e\xb4\x78\xd9\x9b\x37\x6c\xcb\xc9\x48\xcb\x59\x01\x2e\x26\x15\xe7\x0f\x56\xdb\x03\x9b\x9a\xbf\x08\x48\x28\x7f\xdf\x68\xb0\xc5\x39\x16\x78\x3e\x52\x72\x5e\x82\x5b\x81\x2d\xe3\xf0\xcc\x42\xf0\x47\x8a\xf3\x77\xf0\x62\xd7\xe0\xfe\x40\x64\xc9\x18\x73\xf2\xa8\x32\x35\x70\x7b\xb4\xd8\x55\x7e\x19\x9e\x53\x16\x3f\x3e\x9c\x47\x36\x61\x9c\xaf\xb3\xd9\x4d\x16\x2e\x87\x9e\x39\xcd\x0b\x35\x2a\x67\x10\xf6\x64\xcc\x74\x80\x0a\x27\xba\x42\xf6\xb0\x9e\xd9\x61\xa0\xec\x27\x2a\x42\xf6\x48\x9f\xdd\xd9\x24\x5f\x92\x2f\xf4\x06\xd1\xcd\xee\xf7\xb9\xda\xaf\xb3\x39\x7f\x92\xd9\xdd\xe4\x61\x35\xad\xb1\x49\xcf\xc4\xa2\xa9\x80\xf3\xcc\x86\x5c\xd9\xfc\x65\x60\xcf\x8d\x5f\x16\x9f\xc5\x2f\x27\xbf\x30\x81\x67\x13\x86\x9a\x39\x65\x0f\x9a\x72\x95\x99\x3e\x5b\x17\xa8\xbd\xfa\x9c\x7f\x7c\x15\xf9\xc5\xb3\xe5\x8b\xaa\x80\xf1\x6c\x01\xa3\x7a\x2a\x1e\xd5\xe4\x02\xf3\x7d\x96\xde\x16\x88\xc0\xc3\xec\xcb\x6c\x36\xc7\xe3\xd2\xba\x9f\xad\x1f\x5f\xed\x68\xb6\x3f\xf7\xf3\xf4\x79\x6f\xff\x40\x63\xce\xcf\x26\xe6\xa5\x43\xf6\x9e\x8d\x4b\x45\xbc\x7a\x3e\x2c\x1d\xe5\x36\x3f\x78\xc1\x1a\x36\xb7\xfc\x40\xbd\x6b\x02\x95\x9e\x0f\x03\x2a\x27\x3d\xf8\xbd\x8a\x04\xef\x01\x17\xcb\x82\x38\x3d\xe0\x62\x5d\xcb\x5f\x36\x8a\xaf\xe4\xf4\xf1\x7f\xd5\x25\x20\xf1\x80\x95\xc5\xa1\x7d\x20\x80\xed\xe0\x24\x3c\x68\xec\x3f\x3b\x38\x99\x9b\x7c\xf1\x41\x7d\xaf\xc7\x60\x6e\xf8\xb7\xea\x11\x9f\xa9\xa9\x82\x24\xa8\x24\xa9\x04\xc4\xd1\xe8\x17\xf4\xf4\xd1\xe6\xa8\xee\xf0\x5c\x05\x60\x82\xf2\xcf\xe6\x99\xb9\x83\xa4\x8f\xce\xb0\x8e\x5c\xfe\xa0\xd3\x17\x65\xee\x47\x5d\x1e\xfb\x62\x7e\x2e\xbd\x79\xd3\xce\x90\xba\xb3\x1b\xbb\x55\xad\x72\x08\x9a\x9b\x21\x3d\x99\x8f\x96\xc7\x9f\x5f\x0d\x67\xe9\x2f\x73\x8f\xdf\xe9\x0b\x41\xbd\x4c\xd7\x82\xa0\x5e\xd4\x18\x1e\xbc\x70\x05\x93\x41\x7e\x36\xb1\x4d\xdd\xb5\x6c\x89\xb1\x14\x77\xe6\x61\x67\xa0\xd9\xcf\x73\xd2\x2d\x80\x78\x30\xcf\x56\xff\xbe\x31\x61\x21\x6f\x3d\x2f\x6a\x08\x2c\xea\x3d\xd4\x18\x0f\x9e\xf7\x21\x96\x0d\xbc\x9b\x56\x54\x34\xc4\xfc\x6e\x19\xb3\x6e\x82\xf2\x0d\x39\x7c\xb1\x34\xe0\x86\xcb\xef\xa6\xe7\x35\xc1\x3b\xde\x4d\xd0\x4b\x1e\x76\x36\xf6\xdf\x93\x03\x6e\x18\x34\xce\xc0\xbb\xa5\xd1\x9a\x11\xb1\xde\x2d\x8c\x96\x8c\x98\xf4\x6e\x59\xb4\x94\x65\x3f\xd7\xfe\x26\xf9\xfd\xbd\x9f\xe1\x6b\xef\xc1\x41\x8c\x71\xdf\xfd\xcc\xa2\xdf\xad\x57\x56\xc5\xa2\x77\xcb\xae\x25\x75\xff\xbe\xcf\xe4\xe2\xb8\xbd\x9b\x0e\xd6\x0c\xdb\x7c\xb7\x02\x53\xd5\x2f\x5e\xdc\x78\xc5\x39\x6f\xd1\xa9\x0c\xe7\xb6\x45\xd8\x5a\xa0\x20\xef\x26\x61\xb5\x64\xfb\x39\x79\xf6\x9b\x6b\x7f\x5f\xfd\x66\xef\xed\x42\x8b\x7c\x37\x07\xab\xb5\xf9\xbc\x37\x24\x41\x55\x5e\xfc\x77\x19\x31\xf5\xdd\x72\x51\x99\x20\xfc\x9b\x37\x8e\x62\x72\xcc\xef\xa6\x90\x59\x2d\xfa\xc5\x5d\x17\xb0\xda\x5a\x54\xed\x1c\xaa\x37\x83\x53\x60\xfe\xbb\xe9\x66\xae\xcd\x3e\x3f\xbf\xd2\xa3\x77\x2b\x5a\xb5\x0b\x93\xbc\xe1\xe9\x19\x78\xb7\x04\x9d\xd3\x70\xac\x3d\xcf\xe1\x1a\xb1\xbd\x2c\xf7\x08\xd3\xcb\x82\x47\xbe\x78\xf0\x30\x5f\xe5\xb7\x78\xca\xfc\xe6\xef\x34\xee\x2d\xd0\x38\xb8\xca\xbb\xc5\xef\xaa\x84\xfc\x96\xce\x33\x6b\x29\x83\x67\xfb\xd9\xf4\xa6\x73\x72\x5e\xec\x36\xb5\x09\xdc\xb2\x17\x80\xe7\x37\xbf\x5b\x09\xac\x38\x31\xf3\x8b\xe7\xae\xb9\xc8\x2d\xc9\xd7\x05\xdd\x79\xf1\xdb\xad\x68\xbb\xd9\x11\xde\xb0\xfc\xe2\xb5\xcb\x62\x7e\x4d\x10\x50\x06\xde\x72\x43\x69\x22\xd9\x56\x03\x8a\x92\xf1\x8b\x8e\x8e\x6b\x2a\xbf\x5b\x23\x28\xda\x1b\xde\xda\x21\xb8\xb6\x1d\x20\x2b\x73\xd8\x8a\x42\x4b\xc5\x7e\xf6\x02\xb0\x3b\xe5\xb7\x6e\x84\xc6\x10\x9d\xdf\xba\xa9\xe5\x6c\xf6\xbf\xe7\x9f\x9d\x67\xbd\x7f\x7c\x35\x1c\x16\xf9\xad\xcf\x7e\xee\x7e\xff\xf2\xcc\x58\x5b\x1c\x2e\x15\x5e\xf8\x6e\xa5\xb7\x4c\x91\xb5\xa1\x61\x43\x01\xde\x56\xf6\xf7\x22\x50\x83\xc8\x1d\xfe\x1d\x0e\xe7\x7c\x36\x23\x2f\x07\x54\xe2\x6d\x7b\xfe\xcd\x4d\x6a\x7b\xfe\x5d\x44\x6c\x8b\x67\xbf\xd9\xf3\xef\x6e\x7c\xdb\x02\xa2\x94\xe4\xc5\x83\xd0\xa5\x18\x38\xe8\xe6\xb4\x7f\xe0\x1f\xfd\xbc\x20\x0a\x30\x91\x7f\x43\x00\x5f\x2d\x6e\x7e\xa3\xca\x84\x68\xfc\x6e\xa1\x2c\xf7\xe6\xf7\x75\xaf\x11\x82\xff\x6e\xa1\xac\x60\x42\xcc\xef\x96\xbb\x4a\x15\x29\xf1\x2e\x54\x49\xe4\xdb\xf7\x02\x02\x51\xfa\xda\x94\x43\xc0\x6d\x81\xac\x54\x81\xbe\x25\xb2\x9c\xc6\xb7\xd2\xdd\xbb\xa5\xb5\x32\x3d\x06\x5b\x58\x2b\x23\x46\x7c\xf6\xdf\x8b\x7f\xdf\xd8\xd5\x61\xfb\x18\xc3\xb6\x52\xc8\x33\x76\xac\x85\x6c\x89\x35\x2c\x15\xf1\x1d\x6f\x83\x72\xc6\x3b\xf6\xf2\x96\xb3\xc2\x63\xb7\x04\xe5\xd8\xcb\x0b\xd0\xe3\xaf\x0b\x3a\xa7\xdb\x01\x76\xfe\x8e\xf5\xe3\xab\x07\x3d\x1b\x7b\x75\xeb\xb0\xad\x12\x9f\xdf\xef\xf3\x7d\x88\xb2\xfa\xea\xe2\xf9\xf9\xf1\xd5\x33\x5c\xf9\xdd\x62\x5c\x96\x41\xbd\x73\xeb\xb3\xd1\x76\x26\xd0\x9a\xef\xe7\x46\xaf\x26\x0d\xdb\x52\x53\xce\x8e\x3b\x2b\xce\x56\xdb\x22\xc1\xa1\xd0\xbc\xd8\x4f\xfb\xb2\x9f\x3d\x7f\x95\x8e\x77\x6e\xfa\x14\x28\x38\x71\xb6\x45\xff\x5b\x01\x09\x14\xdc\x12\x56\x2f\xd2\xb3\xad\x91\xf5\xd8\xe6\xad\x91\xe5\xe5\x91\xc3\x47\x31\x3d\xba\x1a\x61\xfd\x7e\x69\xd6\xe2\xfb\x95\x7e\x7c\xf5\xee\x7c\xf0\x48\x06\x1d\xc5\x25\x59\xa5\x31\x18\x79\x34\x9c\xbd\x0b\xf8\x7b\x14\xb7\x08\x56\xd2\xf2\xef\xe3\xc7\x57\xd7\x18\xf2\x6e\x01\xac\x0f\xd1\x17\x07\x46\x95\xe6\xad\x3d\x7f\xc5\x87\x77\xcb\x62\x79\x46\x9f\xfb\x78\xe3\x90\xcb\xef\xba\xe1\x75\xec\xdd\x96\xd1\x72\x71\x7f\xb7\x88\x96\x9b\x7c\x66\x8b\x68\x79\x49\x26\x74\x76\x24\x51\x79\x2b\x95\x65\xda\x78\xcb\x6e\x25\x18\xdc\x16\xdd\x4a\x95\xe9\x6c\x25\xbc\x2c\x8f\x01\x52\x9c\xc6\xa2\xf7\x33\x7e\x95\x4d\xde\x2d\xd0\x95\xe9\x06\x6f\x79\xae\x34\x69\xc9\x16\xe7\x46\x12\x59\xb7\x34\x37\x92\x34\xf2\xa3\x86\x66\xdb\xad\x12\x77\x25\x82\x2d\xca\x95\x2a\x12\x7c\x5e\xe8\x10\xfd\xe0\x87\xa9\x22\xd9\x96\xf0\x46\x12\xa1\xd1\x70\x13\xb2\xe7\x8b\x7c\x57\x64\x10\x67\x05\xd1\x99\xcf\xb9\xe7\xdf\xa2\x2d\xe7\x5b\xfa\xb7\x45\xc0\xdc\x5c\xef\x09\x02\xb9\xa9\xa7\xde\x5a\x9f\xf7\x01\x08\xc1\xe3\xc4\x3a\x2e\x42\x9f\x11\xd9\xc1\xf3\x8d\x1e\xec\x33\xca\x2c\x32\xf2\x8b\xb8\xa8\x54\xf5\x6a\x90\x97\xb7\x6c\x69\xb1\x1c\x32\xd3\x2d\x2c\x8e\x1a\xdf\xe8\x43\x61\xce\xe8\xd6\x35\xfb\xfd\x86\xb3\xe2\xf1\x8b\xa2\x53\x14\xc9\x5e\xfc\x45\x5d\x0c\x52\xd5\x16\xfb\xd0\xb4\xab\x5c\x79\xcb\x99\xa3\x4a\xfc\xb7\x98\x59\x42\x72\xc2\x64\xb2\x24\x8c\x5b\xe2\xcc\xda\xc9\xde\x1b\x46\x20\xd6\xdc\x05\xd1\xae\x7f\x43\xcf\x8a\x16\xf7\x3d\x76\x39\xb6\xa4\x36\xcb\xc6\xd2\x82\xa1\x1d\x3f\x77\xc1\xd0\x0e\xbb\x2b\x18\xca\x7b\xf7\xaf\xd8\xc8\xe2\x63\x2d\xe5\xc3\x6f\xb0\x41\x6d\x05\xa8\x1c\x5b\x86\x99\xb0\xd3\x82\x89\x7c\x2b\x63\xbe\x60\xf3\xdc\x0a\x45\xc1\x60\xbe\xf5\xdf\xce\xcb\xa5\xd2\x5b\x79\xb9\xed\x97\xbe\xc2\x06\xb5\x89\x43\x31\x5a\x4f\x6a\x55\x8e\x17\xea\x40\xbf\x2f\x13\x64\x1e\x98\x8c\x3a\xa6\x92\x92\xf7\xe0\x33\x6d\xe2\x53\xf2\x16\x46\x26\xbc\xbc\x60\x0a\x9c\x44\xe9\x14\x6c\x81\x93\xe0\xb5\x92\x99\x1f\x21\x3b\x05\xa7\xfd\x44\x10\x2b\x79\x0b\x23\x93\x60\xb8\x92\xb7\x30\x32\x7a\x3e\x78\xfe\xec\xbf\x37\xfb\x39\xf9\x66\xf1\x7c\xf1\x6c\x5b\xcc\x91\xc5\xbf\x3f\xfc\xbd\xf3\xfc\xf2\x4c\x3f\x95\x79\x36\x9f\x55\x9f\x99\xff\x96\x45\x26\xe1\x76\x05\x93\xe4\xc4\xdd\x51\x72\xf8\x0b\x16\x2f\x0d\x8b\xc6\x62\x12\x50\xbd\xa3\x0e\x5f\xf6\x0f\xa9\xfb\x4c\x4f\x80\x28\x2f\x7a\xea\xac\x66\x01\x89\xc6\x8c\x50\x3d\x8f\x2a\xe8\x16\xa0\xe8\x3e\x0f\x7f\xb0\x05\xb0\x60\x73\xf1\xdc\x4e\x64\x8d\x92\x37\xe1\x4b\x47\x9d\x2c\x14\x9b\xe2\x51\xa7\x5f\x5d\x36\x07\x1c\x9b\xf6\xcd\x92\xfc\x0a\x70\xc4\xcc\x5f\x67\xce\x0f\x58\x14\x8f\xea\x2f\x28\xa8\x47\x5d\xcc\x7d\x53\xaa\x89\x41\xb1\xe4\x8f\xd0\x67\xb7\x3e\x40\xbf\xd9\x1a\xe8\x77\x66\x05\xa5\x22\x02\xb3\xe4\x0f\xc3\x75\xdb\x02\x7d\x0e\x00\x1e\xe3\x49\x18\x67\xc9\x2f\x12\xa2\xb8\x8b\x07\x75\x1e\xd5\x67\x9c\x1b\xa0\x80\x5e\xd4\x84\x77\xb2\xe0\x47\x9d\xd0\xe6\x52\x08\x58\x4c\x73\x4b\xce\x45\xe3\x6b\x9a\x60\x6e\x21\x60\x31\xe1\x27\x2d\x05\x6b\x7b\x9a\x5b\x4e\x2c\x3a\x5f\xd3\x9c\xf6\x7c\xfa\x62\xcf\x97\x2f\x8e\x7f\x63\xe7\xdf\x13\x2e\x09\x2f\x82\x1f\xa5\xc6\xbc\x18\x24\x71\xbc\x40\xb5\x92\x1c\x7d\xf9\x11\x3e\x05\x70\xad\x68\x77\x47\xa7\x2d\x25\x69\x53\xa3\x75\xc6\x1a\x06\x82\x95\xec\x6a\x59\x14\x8e\xdc\xb4\x0e\x16\x85\x71\x26\x2d\xce\x79\xd9\xba\xc7\x68\x0e\xb1\x75\x8f\xd1\xd8\x24\xbc\xb7\xf3\x00\xa0\x05\x67\x4e\x73\xb4\xad\x57\xa4\xb4\x12\x8b\x28\xa0\x2d\xe7\x05\xd7\x6d\x52\x48\xdf\xa4\x7b\x63\x48\x66\xb8\xe2\x08\xf4\x54\x58\x11\x52\x7d\x29\xa8\x07\x69\x95\xef\x24\xb7\x82\xd3\x77\x1e\x9c\xb9\x42\xdc\x5f\x5a\x85\x75\x71\x60\x8f\xea\x38\x97\x13\xf0\x2b\xa7\x59\xd8\x1e\xe2\xf9\xd2\x82\x26\x16\xce\xe3\x51\x7d\xc6\xc6\xc7\x99\x2d\xd5\xd9\x08\xaf\x2d\xec\x8f\x36\xfd\xe8\xc3\xfc\x59\x64\x65\x07\xdd\xcd\x2d\xd4\x4f\x34\xc4\x52\xf6\xf9\x1d\x6d\xd1\xb6\x09\x08\x7b\x25\x08\x28\x2d\x90\xbd\x34\x77\xc1\xad\x6a\x8c\x0d\x7d\x29\x48\x97\x09\xa7\x7b\x29\x03\xaf\x18\x07\xb2\x6c\x89\x6f\xf4\x78\x86\x6c\x67\xe0\x38\xf4\x89\xf8\xfd\xcb\x22\xe8\x88\xd0\x8f\x84\x0f\xbc\xe0\xc2\x9e\x87\xab\x5e\xa2\x15\x80\x5a\x8c\x9c\xfd\x06\xac\x12\x66\x4b\xc4\xed\x36\xe0\x70\x89\x9f\x1f\x3a\x82\x5c\xe2\x35\x18\x5d\x44\xd2\x36\xee\x2c\x3e\x10\xa4\xe9\xdf\xa1\x3b\x42\xe9\x74\x12\xb4\x3d\x41\x97\x0c\x24\x4f\xdb\xfa\x8d\x4e\x47\xda\xc2\xb2\x15\xa8\x4b\x81\x4f\x23\x38\x97\x72\x41\xb3\x20\x40\x78\xcc\xe7\xe1\xe6\x5e\x50\x0a\x8f\xde\x05\x88\x12\x13\xba\x31\x00\x17\xda\xde\x9e\x4f\x00\x5f\x0f\xa5\x77\xd0\xb9\x1a\xab\x5c\x98\x77\xe5\xe8\x0f\xdc\x07\xa5\x1a\xe1\xb0\xd2\xc1\xcb\xe5\x2f\x9d\x97\x87\xa8\xea\xc4\x0b\xf1\x4f\x55\x14\xac\xc4\x3f\x8d\xbc\x25\xeb\x52\x67\x48\xf7\xf4\x86\xc8\x3a\xb0\x4b\x94\x4a\x10\x78\x27\xf6\xb1\x54\x0c\x5f\x03\x47\x66\xa9\x08\x2f\xb3\x40\x55\x2a\x21\x2b\x03\xfb\x45\xa9\x86\x8e\x20\x9b\x94\x96\x34\x23\xb1\x53\x0d\xe5\x58\x13\x4c\x69\x04\x43\x0e\x22\x36\x4b\xc3\x0c\x3d\x08\x80\x2b\x4d\x19\x92\x68\xe7\xd2\xb0\x04\x0e\x6c\x43\xa5\x6d\x09\x68\xbf\xec\x71\x1a\xa0\x1a\x85\x8d\x6f\x37\xae\xdb\xa3\xf3\xcb\x8b\xf2\x4c\x88\x73\xc1\xbc\xbf\x35\xe9\xbd\xb8\x8e\x13\x7f\xa5\x2d\x5b\x95\x5e\xe9\x80\xc0\x89\xd2\x09\x2b\x1a\x75\x4b\x8a\xa5\x63\x09\x1d\x95\x71\x3a\xf2\xf6\x40\xe4\x29\x1d\xe3\xdb\x90\xbb\x0c\x2c\xec\xa3\x71\xc0\x07\x16\xf6\xd1\xb6\x4e\x52\xc6\x68\xbe\xec\xb9\x8d\xa9\x91\x8d\x63\x36\x80\xdb\x68\xbe\x3c\x98\x1f\x89\x91\x2f\xe3\x61\xa5\x0d\x01\x67\xb8\x84\xc6\x74\xc6\x7b\xfb\xb2\x7b\x9b\xd8\xcd\x46\xdb\x6a\x76\x99\xd8\x48\xe2\x98\xcf\xa2\xec\x0d\x4f\x9c\xd5\xcf\x20\x91\xb3\x39\x37\x66\x3d\xbb\x33\x80\x90\xce\x0f\x31\xdb\x08\xcb\x65\x62\x34\x5d\x58\x11\xca\x7c\x3f\xbf\x1a\x80\xcb\x82\xbe\xeb\x80\x2d\x0b\xfb\xf9\xe8\xf9\x3b\xaf\x6b\x59\x04\xc5\x8d\x0e\xa5\x5a\x1f\xc2\x44\x89\x7b\x28\x0b\x79\xfa\x70\xe5\x9f\x76\xf9\xb2\xc1\xfd\x11\x15\x46\xe2\x17\x74\xd6\x81\x41\xa8\x7c\x26\x11\x8f\x0a\x46\x9f\xcb\xde\xa0\x19\x1f\xe3\x52\x08\xed\x29\x1f\x2c\x9f\x03\xb7\x56\xf9\x60\xf9\x1c\x38\x22\xcb\xe7\x61\xe2\x98\x85\xca\xe7\x2d\xa2\xe9\x86\xc9\x79\x38\x28\x8b\xd5\x3f\x30\xf0\xfa\x96\x93\xb0\x8d\x81\xeb\xb3\x9c\x84\x68\x34\x6c\x61\xe5\x24\x16\x70\x10\x56\x57\xce\xe1\x38\x08\x7f\x27\x56\xfc\x41\xf0\x69\x39\x39\x5c\x1a\x40\xcb\x39\x6d\x03\x31\x39\x31\x7f\x0f\x62\xe4\xca\x89\xd3\xad\x7b\x88\x4f\xec\xc5\x7d\x41\x1e\xce\xcb\x36\x9c\x8d\xf3\x65\x5b\x3d\x4f\xe7\x4b\x14\xae\x12\xe1\x45\x70\x44\x5f\xc8\x3a\x17\x8e\x8c\x81\xe2\x59\x2e\x7a\x1b\x0b\x20\x5e\x18\x89\x87\xcc\xef\x26\xe6\x65\xe0\xbe\x29\x37\x02\xf6\x58\x7d\x8f\x73\x17\xf1\x02\xb8\xdd\x15\x1a\x8e\xf8\x72\x13\x79\x39\x16\xa8\x74\x23\x85\xcd\x03\x01\xfd\xc6\x0f\x18\x14\xfa\xbe\xc2\x18\xbf\x21\x75\x6f\x02\x97\x26\x1a\x4d\x79\x38\x8f\xc1\xed\x9f\xe2\xa4\x19\xf3\x31\xb2\x5d\x09\xff\xe9\xf6\x86\x8c\xf5\x10\xd4\x39\xb1\x27\x94\x07\x3a\x36\xd1\xb3\x8a\xae\x94\x79\x40\x2b\x1e\x83\x0e\x89\x9e\x2a\xb8\x39\xd2\x3c\x38\xb6\x8f\x31\xb5\x84\x52\x15\xec\x4e\x69\x8a\x7b\x5a\x48\xfa\x82\x8e\x61\x0a\x49\x93\x30\xb4\x82\xfd\x23\x85\x2c\x8d\xde\x99\x42\xfc\x43\xc1\x4c\x55\xd9\x4e\x25\x6b\x26\x96\xf0\xde\xb6\xe1\xd8\xbe\x77\xc0\xa0\xfe\xe6\xb7\xf5\x28\x7e\xb6\x85\xcc\x7a\x10\x30\x3b\xd1\xf3\xeb\x61\xa8\x32\x91\xf2\x35\xee\xaa\xd4\x3d\x68\x35\x28\x66\x62\xda\xa8\x86\xdd\x4f\x7c\x53\x35\xd5\x97\x97\x4d\x45\xaa\x61\xe5\xfa\xa4\x6b\x3a\x59\x36\x84\xbd\xa6\xd3\xcf\x46\xde\x2f\x78\x46\x67\xde\xb2\x63\x4d\xcf\xe3\x0b\xbd\xbd\x76\xb0\x61\x50\x09\xd9\x48\x13\xfa\x5f\xf3\xe1\x67\x1b\xad\xab\x41\xb7\x15\x2f\x5e\xcd\x31\xeb\x2d\xe5\x55\xa3\x17\x27\xea\x71\xcd\xb7\x2f\x95\xcf\x70\x30\x4c\x62\xc3\x6b\x81\x9f\x4d\xac\x8b\x15\x51\x2d\x4d\x68\x79\x2d\x44\x40\xcc\xb2\x05\xd6\x5a\x9c\x1b\x21\xc8\xb5\x80\xf0\x93\x78\xe2\x5a\x91\x6b\x27\xdb\x58\xab\x37\x6c\xe2\x17\x08\xd4\x24\xee\xab\x56\xce\xec\x24\x3c\xae\x56\xce\xec\x24\x96\xb6\x56\xef\x12\xa0\xaf\xd5\x4a\xc8\xff\x38\xb6\x9a\x52\x2b\x51\xb6\xb3\xc6\xcb\xc7\x97\xbd\x59\x15\xce\x30\x6b\xa7\x03\x6c\x08\x13\xfa\x5f\xeb\xe9\x44\x17\xd3\x11\xc9\xeb\x66\x95\xb5\x39\xd1\xb6\x89\x4b\x6d\xc4\x33\xce\x96\x8f\x6f\xe8\x65\x6d\xc8\xbb\x15\xff\x61\x6d\xc2\xa4\x01\xe1\x36\x02\x81\xf7\xc4\x1b\x81\xaa\x83\x60\xb2\xda\x4e\x87\x62\x12\x8d\x19\xad\xe4\x67\x0f\xe8\x83\xf1\xb4\x36\x69\x1f\x96\x96\xda\xa1\x15\xb3\x03\xad\x9e\xb4\xad\x83\x7f\x1d\x01\x74\x62\xa5\xaf\xdd\xc0\x6a\x62\x75\x6b\xff\xf8\xcb\xa6\x3c\xb5\xc7\x9d\xb2\x4d\x49\x6b\xff\xd8\x1b\x28\x37\xd8\x95\xd9\x37\xdf\xa9\xc3\xbb\x42\xf8\x4d\xea\x00\x7d\xe6\x48\x7b\xa2\xc3\x9b\x5d\x04\x5e\x54\xf9\xdb\xc4\xb1\x5f\x67\x62\x23\x08\x6e\xab\xd3\x9b\x47\x44\xfa\xd7\xa9\x4d\x1c\x45\xba\xce\x0a\xec\x71\x75\xd4\x89\x98\x32\x31\x92\xd6\x85\x29\x68\xa0\x23\xd5\xf5\x80\x17\xe8\x1f\x75\xc1\xd2\xe6\xda\xa2\x40\xfd\xa0\x56\x4d\x14\x8d\xfa\xc1\xd7\x3b\xa1\xbe\xf5\x83\x9c\x33\x91\xc8\xeb\x89\xe8\x5f\xb8\xad\x54\x4f\xac\x08\x13\x07\x73\x3d\x47\xc0\x7a\x77\x70\x22\x0c\x4e\xdc\x92\xf5\xbc\x1c\x87\x53\x73\xde\xf1\xcb\x9e\xdb\xf9\x28\x69\x6d\x21\xb3\x5e\x32\x55\x94\xfe\x7a\x65\x76\x01\x2f\x7e\xbd\x18\x74\xa1\x7e\xd7\xeb\xd2\x56\xc8\xb1\xbb\x08\xad\x5c\x07\x2b\xbd\x9e\xe4\x67\xfb\xe5\xe6\xdc\x2e\x7c\x94\xf5\x86\x76\x2d\x6c\x69\xf5\xf9\xbb\xa7\xad\x3e\x07\xfe\xc2\x78\x56\xd2\x63\x9d\xcf\x81\x75\x75\xd8\x00\x83\x52\xf3\xef\x78\xca\x92\x0d\x16\xf6\x6b\xff\x8e\xe5\x74\x6b\x66\xf5\x31\x8c\xb7\xfa\x8d\x44\x2f\x5e\xee\x1f\x5f\xa5\x71\x42\x9f\x03\xdb\xf5\xd6\x4f\xeb\x03\xfe\x0d\x09\xdb\x83\xaf\x0c\x8b\x42\x7d\x60\x48\xf8\xd3\xea\x93\x62\x7a\xb4\x46\x70\xab\x50\xa8\x67\x2b\xa1\x95\x28\xc0\xfa\x70\x01\xae\x17\x9f\x07\x0e\x32\x3b\xc2\xa1\x03\x1a\x3f\x09\x7b\xe3\xb2\xed\xc3\x72\xfc\x06\xcf\x79\x06\x37\x9e\xbc\x01\xb3\x5c\x5b\xd6\x0a\x4e\xa7\x79\xfe\x74\x4d\xd6\x07\x2c\x19\x04\xd2\xd4\x07\xd7\xd6\xc1\x71\x7f\xa0\x65\x35\x03\xfb\x07\x09\x5c\x47\x76\x7d\xb2\xc6\x63\xa0\x81\x34\x3e\x88\x3a\xa9\xcf\x66\xb0\xf5\x70\x52\x28\xa4\x5c\x7c\xaa\x4f\xd9\x42\x4e\x3a\xdc\x08\xdc\x55\xf8\x42\xeb\x53\x94\xf2\x05\x20\x08\x82\xc9\xb2\x3e\x9b\xb3\xe4\x25\x90\xb9\x5d\x86\x46\x56\x9f\x82\x0d\x7e\xf9\xf7\x37\x1c\xa9\xbf\xad\x4f\xd5\xc1\xca\x68\xb8\x9c\x90\xdb\xeb\xc3\xf1\xaa\x84\x5a\xd6\x87\x28\xb4\x5e\x59\x50\x15\x4f\x8b\x2f\x53\x91\x95\x6e\x2b\x2e\x52\x91\x60\x2b\x9c\x85\x08\x8d\xfa\x54\x8f\x06\xd3\xab\x44\x02\x38\x6d\x22\x4c\x47\xae\xe9\x3b\x4a\xf8\xb4\xf6\xe3\xab\x57\xe1\xd6\x84\x02\x3d\x73\xb5\xab\x41\x43\x9e\xcd\x45\x6b\x12\x97\xb9\xd8\x55\x44\x1c\xee\x75\x19\x5e\x51\x1f\x64\xcb\xe4\xe9\x79\x5a\x08\xd2\x3c\x33\xc7\xe6\xdf\xb1\x24\x67\x46\xe8\x19\xd7\xa4\xcf\xc5\xc6\x34\xd8\x72\xc7\x7e\x01\x70\x5d\x54\xa8\x00\x6b\x80\x3b\x1c\xea\x67\x60\x24\x9f\x8c\xcd\xfd\x8c\x85\x15\xb0\x3e\x5e\xbc\x70\x52\x44\xb0\x54\xec\xf0\xf5\xe1\x12\x46\xf7\xa8\xce\xcc\x92\x00\xd6\xfc\xd5\x8f\x5d\x9f\xd9\xc1\x4e\xff\x8e\x29\x1d\x0a\x40\x88\x48\x1e\x62\xd1\x96\x7e\x6a\x72\xfb\xe6\x89\x03\xde\xe7\xeb\xa7\x0f\xbc\x3e\xc8\x9f\x35\x36\x9c\x28\x92\xe4\x33\x4c\x2e\x7b\x5e\xd0\x00\x97\xdb\xad\xa3\x42\x94\x5d\x5a\x63\xe8\xd4\x58\x11\xec\xb8\x95\x58\x91\x9c\x0e\xf7\x78\xeb\xe9\xf5\xe7\xf3\xe2\x19\xc0\xe0\x9e\x38\xa0\xca\x0f\x36\xba\x04\x55\x7f\x64\x66\xb8\xe6\xea\xb3\x99\x8c\xe1\x10\xf5\xf9\x00\x0b\x91\x08\x51\x59\xba\xfb\x7c\x9c\x86\xdf\x77\xfc\xdd\x4c\x09\x4d\xb1\x4f\x60\xba\x35\x99\x72\x0c\x06\xc6\x65\xb0\x86\x7d\xbe\xce\x94\x97\xcd\x28\x6a\x12\x97\x36\x5f\xaf\x72\xc7\x67\x8b\xe2\x95\xc8\x8d\x1a\x91\x1f\x81\xe2\xe7\xe7\x67\xd4\x40\x7d\xb8\xdc\x6c\xd8\x4e\x35\x24\x64\x28\x9b\x3d\x5b\x0e\xce\xc5\xf1\xb6\xb6\x97\x9b\x00\xb8\x5c\x0f\xad\x15\xc9\x03\xde\x9b\xc0\x57\x82\x53\x2b\x01\x21\x35\x25\xff\x3e\x70\x4a\xdb\x78\xda\xc0\xd6\xd8\xf2\xbb\x0d\x4e\x63\x5b\x78\xbe\x69\xcc\x94\x2e\x36\x57\xac\xda\x4a\x6b\x69\x62\x31\xb1\xc2\xb5\x48\xd0\xb7\xcc\x92\x93\x24\x82\x7b\x6b\x01\xd6\x2d\xc2\x65\x2e\x60\x54\x62\x47\x2a\xb1\xa9\x95\xd0\x91\xd2\xb2\x1d\x2d\x5c\x6d\x4c\x48\x55\x9c\x68\xc9\xfa\x70\x65\x2d\xc5\x4e\x6f\xf9\xaf\x0b\xa4\x9b\x19\x65\xbf\x79\x79\xe6\x93\x27\x66\xc4\x0f\x8f\x91\x20\x2c\x67\x6b\xc7\xbb\x23\x36\xe2\x29\x44\x24\x30\xbd\x67\x03\xec\x70\x4f\x10\x72\x52\x67\x84\xc7\x13\x1a\x1f\x9d\xce\x89\x89\x3f\x40\x26\xdb\x2d\x61\x2e\xd5\xe7\xc0\x07\x9a\xab\x5b\x21\x85\x3c\xaf\x94\xaa\xf1\xd5\x9b\x21\xe2\x4c\x10\x59\x79\x25\x51\xee\x6d\x7e\xc5\x3a\xde\xae\xb8\xc5\xb3\x40\xab\xdf\xd2\xb9\x77\x53\xd0\x8c\xb4\xf4\xbc\x17\x6b\xb7\x33\x0f\xaa\xc8\xf9\x3e\xce\x12\xb8\xbf\xd2\x0e\x50\x95\x20\x9a\x59\xe0\x5a\x04\xd1\x24\xfc\x79\x95\x20\x9a\xdd\x62\xf2\x82\x89\x33\x7e\x08\x10\x2d\x5e\x16\xb3\xf4\x07\x0c\x4f\xe0\x14\x91\x2f\x7b\x08\xbb\x0d\x86\xee\x57\x58\x08\x60\xee\xef\xcf\x7b\xec\x3c\x83\x61\x08\xf6\xc4\xbe\x14\x82\xba\x2a\xb1\x2f\xa9\x83\x17\xc4\xbe\xe4\xc4\x15\x91\xfa\xa6\xe6\x10\xf4\x9a\xb4\x66\x35\x9b\x4b\x4c\x96\x6d\x82\x82\x32\x48\x32\xf4\x8b\x85\x6f\x11\xbf\xe2\x61\xa8\x04\xba\x14\x6c\x3a\x95\x20\x93\xdd\x80\x75\x64\xd9\x10\xa7\x8c\x70\x92\xc2\x9d\xe0\x4a\x38\x49\xc5\xde\x50\x0d\x27\x59\xb8\x52\x2a\x31\x24\x7b\x70\xbf\xc2\xc7\x09\x89\x7b\x83\x2d\x3b\xb8\x6c\x99\x23\x44\x14\xc9\x9e\x3b\x33\xe4\x0e\x78\x73\x70\x2c\xc1\x45\xf0\x94\x0f\x67\xcb\xbf\x07\x70\x7d\x21\x0c\x43\xd8\x62\x08\xc6\x1e\x56\x0d\x23\x19\x84\xb4\x56\x63\x47\x92\xb2\x02\x01\x23\xfb\x85\x26\xb0\xef\x03\xf4\x23\x32\x24\x2f\x10\x86\xc8\x90\x1a\x10\x81\x61\x77\x65\x63\x43\x43\x6a\x81\xbe\x10\xf7\x91\x50\x5c\x2b\x71\x1f\xe5\x18\xb6\xc0\x2b\x01\x1e\x12\xf7\x91\x3d\x82\x11\xf7\xe1\x2e\xb5\x98\x06\x8d\x1b\x67\x53\xd0\x36\xa5\x08\xc8\x5c\x44\x7e\x54\x7b\xe2\x2a\x03\x44\x08\x0d\xbc\x12\xa9\x57\x89\xfc\xd8\x4b\xb5\xa7\x85\x90\xe8\x0f\xf0\x33\x04\x0d\x42\x3f\x2a\xf7\xe3\xea\x2b\x47\xaf\x8e\xe6\xb9\x76\xb0\x4d\x5f\x5a\x77\x30\xec\x0a\xc3\x8e\x7a\x10\x18\x7a\x0a\x96\x0e\xdd\x7a\x35\x66\x10\x31\x57\x89\xda\xa8\x8a\xf3\x44\x6d\xec\xf6\xc0\xa3\x1b\x6b\x02\xd3\x20\x04\x23\x27\xa5\x0e\x62\x30\xaa\xb2\x2e\x31\x18\x55\x91\x9d\x18\x8c\xfd\x11\xcd\xb1\x61\xa9\x0e\x63\x60\x28\xcd\xcd\x1b\x90\x7a\x44\x57\x62\x2a\x76\x03\x5f\x94\x5f\xb2\xdd\xb2\xf2\x62\x6b\x8e\x22\xa2\x89\xd1\x13\x5a\x10\x88\x98\xd8\xad\x59\xfa\x54\x6c\x76\x37\x30\x8f\x34\xe4\x0c\x62\x26\xd2\xc2\xef\x57\x0d\x9a\x18\x59\x68\x4d\x66\x82\x5e\x45\xa4\x44\xc5\x6e\x53\x8d\x94\x48\x8a\x14\x84\x4a\x84\x86\x4e\xa8\x44\xe5\xa6\x48\x25\x54\x62\x7f\xc4\x9a\xa6\x81\x7f\xdf\x79\x84\x2b\x81\x14\xbb\x95\x33\x03\x8c\xe8\x21\x44\x52\xec\x1f\xd8\x86\x2d\x95\x54\xf5\x1b\x42\x29\x26\xd1\x45\x95\x50\x8a\xfd\x91\x2f\x78\x94\xdd\xaa\xe5\x4a\x58\x3b\x7e\xc4\xaa\x30\x4c\x00\x45\x55\x2f\x26\x80\x62\xb7\xb6\x5b\x96\x25\xa2\xe0\x56\xe8\xd2\xc6\xe5\xe1\xf0\x59\x3a\x22\x19\x23\x6c\x22\x25\x4f\xbf\x2e\x62\x49\x1a\x0a\x72\xf1\x2c\x7f\x4e\x70\x91\x15\x21\x8b\x0c\x1b\x23\x8b\x34\xb8\x0a\xe1\x0b\x69\x49\xc2\xce\xd8\x34\x1a\x6f\x6d\x36\x37\x09\x12\xf1\x08\x4b\xb2\x7c\xaa\xd4\xd9\xfa\x74\x11\xee\x01\x6a\x7f\x25\x93\x45\x7d\x4f\x04\x6e\x9f\x55\x4b\x85\xf2\xc5\x29\x85\xff\x12\x56\x90\x62\xd5\x57\xa0\x82\x1f\x75\xbb\x65\xc0\x6b\xfa\x02\x98\x89\xdb\xd7\x76\x63\x30\x41\x91\x9e\x5d\xf2\x59\xa7\x78\x89\x0c\x9e\xfe\x0b\xe7\xab\xc7\x46\x71\xc4\x43\x70\xc9\xc1\xe4\x3b\x37\xc7\x46\xe8\xdc\x6c\xb7\x0b\xbf\x03\x22\x8c\x7d\x6b\x6c\x12\x29\x6e\xc4\x25\xe9\x24\x57\xea\xa7\x84\xee\x66\x8b\x25\xbe\x37\xb4\x43\x54\xbf\x39\x41\x32\x81\xdb\xf9\x79\xb4\xb6\x6c\x52\xba\xc4\x43\x81\xc4\xcd\xdb\x02\xc9\xe8\x6e\xcc\x83\x00\x67\x63\xe5\x11\x25\x98\x77\xcb\x23\x65\x44\x03\xf9\x97\xb0\x79\x08\xb1\x71\xe8\x87\x5e\x85\xec\x2b\x62\x23\x83\xbc\x88\x17\x65\x38\xf1\xd7\xa5\x22\xad\xbe\x2f\x1a\x99\x67\x61\x8b\x17\xa5\x2e\x9b\x83\xd9\xdd\x06\x93\xe0\x6a\x26\xa5\x99\x3e\xbe\x8f\xd5\x81\xf1\x21\x41\x48\x3f\x5f\xc0\x2f\x7a\xbd\x5c\x47\xdb\x42\x52\xf3\x56\xe4\x81\xe2\xda\x08\xcd\xd8\xf8\x55\x78\x41\xfb\x68\xfe\xe0\xd8\x93\xe7\xe1\x18\x95\x17\xd4\x8f\x2d\xad\xb5\x03\x83\x80\x42\x7d\x3b\x0e\xd9\xb0\x3f\x28\x40\x34\x5b\x6c\x98\x43\x0c\xdb\x81\x00\xd1\x89\x99\x6b\xc7\x96\x20\x1a\x8a\x7c\xe3\x56\xe6\x9e\x3a\x83\x27\x90\x62\xa3\x57\x23\x60\xa4\xc4\xa4\x92\x22\xf4\x66\x59\x8d\xcb\x99\x95\xc0\x82\xc6\x95\xcc\xb4\xba\x3d\xc5\x6c\xfd\x41\x4e\x38\x99\x88\x92\x45\xb7\xb5\xd8\xe2\xdf\x65\xcf\x9b\x37\x35\xef\x6c\x8e\xec\x02\xd3\x6d\x5f\xce\x04\x97\xea\xb4\x5f\xf8\x65\xfa\xce\xbc\xd7\x8e\xec\x52\xe8\x0d\xff\x77\x71\x2e\x44\xde\x92\xe4\xa9\x1d\x44\xde\xae\x06\x14\xb3\x7b\x00\xdc\xf1\x7e\xf7\xe1\xf7\x52\xb6\xc2\xe4\x33\x68\x1f\x0d\x60\x61\x1d\x80\x66\x17\x65\xa7\x27\x61\xc7\xfe\x5d\xc9\xc9\x8e\x36\xfb\x3c\x04\xa1\xbe\xc2\xe2\x0e\x94\x40\x56\x86\x56\xf6\x49\x0e\xf7\xd3\xc9\xc4\xb3\x81\xa6\xb6\x08\xb8\x01\x11\x22\x4c\x8a\x1b\x8b\x45\xb1\x0f\xf1\xad\xba\x6a\x36\xb0\xa2\x72\x75\x9f\x63\x08\xba\xaa\x48\x0a\x93\x99\x2b\xc9\x0c\x76\xa3\xb2\x52\x41\x50\xbd\xcf\xe7\xdf\xc5\xbc\xe2\x70\x81\x6d\x0e\xa7\x18\x35\xfc\x05\xba\x98\x98\x60\x83\xea\xf8\xf7\x16\x88\x44\xbf\x0d\x90\xbb\xe1\xd8\x1d\x30\x77\xb7\xa3\x05\xc8\x6d\x21\xed\x75\xad\x8a\x29\x83\xf1\xb6\x68\x52\x8e\x68\xfd\x3a\x11\x3e\xea\xc2\xb3\xb0\x26\x62\x4e\x57\x6c\x4d\x8f\xd1\x69\xdf\xb5\xd8\x32\x93\xae\x86\x5d\x7c\x11\x8f\x0b\x60\xef\xca\x07\xc5\x26\x6c\xe7\xb0\x2f\x31\xb4\x00\xd2\xe1\x1e\xd0\x22\xe4\x91\x0a\xb8\x86\x97\x62\xfd\x88\x38\xef\xcc\x84\x91\x4d\x0e\x61\x32\xf4\xa1\x31\x76\xd8\x12\xdd\xf2\xe1\x1e\xf8\xcc\x2d\x5f\x01\x3a\x05\x28\x9d\x86\x38\x52\xc1\x17\xad\x18\xd3\x67\x99\x4b\xa5\xdb\xa9\xdc\xe7\xcc\xa7\x5b\x58\x59\xd2\x84\x2e\x8b\x3d\x33\x58\xaf\x1d\xcb\x38\x84\x62\x08\x0a\x92\x12\x6d\xf4\x8d\x75\x28\x0f\x2c\xd6\xba\xe4\x6d\xd3\x97\x80\x28\x93\x5f\xf0\x36\xc1\xbe\x05\x82\x52\x25\x31\x8b\xed\x8c\x06\xa7\x43\xf8\xc3\x65\x6b\x66\x12\x12\x41\xe7\xb3\x8f\xfb\x29\x2d\xf9\xc4\x7e\x32\xad\x8f\x7a\xb1\xab\xff\x68\x89\xf2\xf9\x46\xce\x65\xf4\x53\x55\xd3\xf5\x9e\x18\x09\xe2\x99\x03\x22\x8d\x39\x21\x70\x93\x05\x9e\xea\x22\x8c\x4d\x8c\x62\x75\x52\x21\x12\x48\xbf\x4f\x71\x41\xa2\xa6\xa3\xe2\x60\x1d\x97\x70\xf3\x80\x68\x93\xf0\xa8\x5d\x6a\xb6\x1e\xe7\x4b\xc9\xd8\xc1\x2f\x2e\xb0\xc6\x0f\xea\x3b\xd1\x44\x98\xd4\xef\x49\x1f\xa1\x85\x39\x66\xe0\xa9\x74\x87\x88\x2d\x24\x40\xbd\x1d\xd8\x26\xfa\xb0\x6f\x2c\xdd\x7d\x01\xae\x5b\x79\xcf\xb3\x74\x3b\xb5\xc5\x74\xee\xc6\x05\x09\x5b\x70\x5e\xc5\xf8\x1b\xb3\x6d\x7c\xe3\x75\xe3\xc3\x1f\x88\x58\x16\xcb\xb5\x48\x78\x12\x6e\xc5\x3a\x11\xed\x71\x4b\x24\x98\xc1\xf6\xdd\xeb\x87\x3d\xb1\xdf\xa7\xfa\x03\x53\x7c\xc0\x73\xd7\xa4\x73\xa3\x78\x00\x1e\xc2\x90\x65\x9e\x8f\x76\x7d\x09\xf4\xa3\x2e\x56\xed\x0b\x45\xc6\xd5\x3e\x4c\x2b\x06\x17\xe5\x2b\x2f\x18\x28\x1a\x09\x10\xda\xf1\xaa\xb7\x4a\x2c\xbc\x58\x33\xdc\xae\x57\x14\x14\x10\xaf\xa7\x81\x8e\x5f\xe7\xc8\xce\xbf\x9e\x45\x37\xf5\x85\x6f\x2c\xbb\xf2\x28\x3a\x47\xcc\x13\x5d\xc8\xbd\x81\xf3\xbb\xb9\xf7\xf8\xfb\x16\x13\x9b\x3e\xcb\x4e\x46\xbc\x66\x7e\x3d\xe2\xa9\x9a\x19\xf5\x3a\xe9\xa7\x9a\x19\xf5\x16\xc2\x50\x33\xa3\x5e\x45\xd9\x6d\x49\x33\xc4\xf2\x07\xd9\x08\x84\x20\x85\x1c\xc0\x11\x27\x05\x5e\x96\xbf\x24\xd8\x3d\x57\xe4\x5b\xc2\x1b\x80\x77\xa3\x91\x07\xa0\x72\x99\xb1\xa5\xf0\xae\xd8\x6d\x52\x36\x2c\x3c\x7b\x4c\x5c\x07\xac\x3f\x6f\xbd\xab\xa5\x60\xfd\x1c\x77\x72\xde\xed\x17\xe6\x0e\x87\xc7\xd7\xd9\xc8\x2f\x50\xb9\x56\xd8\x52\x16\x2f\xd9\x5c\x12\xd3\x15\x32\x1b\x34\xf3\xcf\x25\x19\x0c\x29\xe7\xf6\x0b\x8b\x2d\x99\x2b\xa9\xb4\x28\x9e\x38\xb8\x18\x39\xe7\xf6\x57\xb4\x2f\x11\x77\xe3\x2f\x83\x11\xfd\x41\x0c\x82\x65\x93\x65\x6e\x37\x61\x89\xc5\x95\x38\xc8\xc9\x33\x0b\xc1\x0d\x80\x4b\xb1\x99\x2e\x8e\xeb\x3b\x2d\x69\x48\x90\x73\x98\x31\x8e\x0c\x0f\xcd\x84\x71\x64\x60\x6a\xe6\x8b\x2b\xce\xbc\x72\x75\x43\xa0\xe3\x12\xe8\x1c\x03\x1c\xd3\x79\xb8\x01\x55\xa9\x8a\x65\x57\x34\xab\xe5\xb3\x89\x43\x1c\xd8\xbb\x54\xf6\x83\x6e\xe4\x1e\x55\x6f\xe9\x55\x07\x0e\x00\xd2\x02\x23\x44\x76\x5f\x5a\xa6\x35\xa3\x35\xc1\x0f\xd7\x21\x37\x5c\xe5\x4e\x66\x33\xfd\x42\xc7\x69\xd7\xc8\x06\xb7\x5f\xfc\x45\x95\x66\xda\xfe\xc3\xcd\x2c\x9f\x2f\xaf\x4d\xf0\x1c\x87\x8e\x7e\xbb\x56\x41\x77\xac\x3b\x3a\x6b\xea\x9e\xac\xef\x6c\x7c\x8d\xe4\x6e\x5e\x2a\x6b\xe6\x76\x4b\xf2\x43\x72\xbb\x25\x02\xa8\xf7\x0b\x60\x84\x1a\x90\xc3\xcd\xab\x67\xcd\x1c\x6e\x8b\x63\x4e\x0a\xb7\x7a\x88\xb9\x9d\xab\x67\x9e\xc0\x21\xad\xe4\x1b\x43\x66\x8a\xfb\x31\x14\xe9\x91\x48\x52\x18\x1f\x18\x8d\xcc\x6c\xa4\xcc\x6a\xc9\xd8\x15\x04\x31\xf2\xb2\x15\xf4\xb7\x66\x62\xb6\x9f\xc7\x6c\xe8\xae\x77\x3b\x87\x4e\x5e\xe6\x31\xd4\xe4\x61\x4d\x09\x31\x80\xf0\xeb\x96\x66\xfe\x79\x67\xae\xa5\x19\x93\xa2\xab\x30\x44\x78\x38\x26\xc0\x69\xb6\x30\x09\x92\x1f\x71\x2b\x2f\xdb\x2b\x24\x09\x79\x29\x71\x0f\x76\x14\x4f\xec\x04\x95\xb2\x0d\x60\x78\xf1\xf7\x98\x93\x23\x70\x2f\x2f\xf3\xbc\xb8\x67\x82\xe4\x94\x30\x2e\xe0\x81\x6e\xa4\xe2\x28\x5c\x31\x68\xe4\xe2\xa8\xb8\x9c\x5b\x5a\xba\x9b\x6c\x6b\x24\x9a\x27\x0c\x1b\x42\x10\x17\x83\x8c\x6d\x8c\x41\xa0\x79\xf2\x30\x08\x54\x54\xc1\x96\xf0\x66\xe4\xe2\x73\x40\xc3\x16\xf5\xc7\xd7\x98\xee\x23\x37\x29\x14\x95\xd3\xa7\x33\x0d\xc0\xc7\xed\x09\x42\xcb\x5a\xda\x62\x44\x91\xe9\x24\x02\xb6\x46\xf1\x70\xe3\xce\xc0\x39\xd9\x12\xa2\x03\x9e\xdd\x46\x44\x48\x56\x7a\x4f\x27\xc4\xd2\x6d\xc7\xb4\x30\x9d\xd1\x16\x23\xea\xe1\xe1\x39\x83\xc4\xd8\xf8\xe3\x0b\x53\x3a\x65\xf7\xcd\xae\xb8\x06\x89\xe4\x91\x4e\xb4\x21\xa1\x71\x7a\x72\xd1\x6c\xc8\xbc\xb7\x5f\x68\x7e\xa9\xc5\x7b\x76\xbd\x05\x2b\x39\xbf\x98\x95\xe4\x15\x03\x44\x15\xc8\x57\xcc\xc4\x8f\x40\x08\x78\x6a\xba\x34\xcf\x89\xf0\xd7\x09\x5d\x62\xee\x5b\x20\x29\xcb\xd9\x7a\x9b\xa1\xfb\x77\x85\x71\x89\x9d\x3e\xf4\xa0\x2d\x77\xcc\x90\x31\xf4\x81\x28\x0f\x91\xbb\x4f\x23\x78\x33\x5b\xdf\x8a\x63\x8b\x41\x21\x7b\x52\x6f\x52\x37\xb8\xd8\x5b\x4f\x16\x83\x1b\x8f\x18\xa7\xf0\x76\x74\x8f\xc8\x73\xfc\xbc\x26\xda\xd2\x96\x33\xca\x10\x05\x1f\x59\xb8\x68\xf4\xc4\x44\x98\xe2\x03\x48\x3c\x54\x48\x13\x4b\x0a\xfe\x08\x11\x1b\x70\x71\x55\x52\xf6\xe0\x47\x90\x98\x23\x57\x64\x39\xe8\x23\x4b\x43\x3e\x4c\xaf\xd3\xe0\x23\x44\x09\x72\x29\xb5\xf4\x06\x3c\xd8\xd7\x37\x10\xd5\x17\x2d\xbb\xed\x7b\x82\xf7\xb6\x9f\xb7\x5f\x5b\x7a\x8d\x6b\x63\x92\xaf\x5a\x8c\x5c\x0d\x23\x46\x16\x01\x5e\xbc\xb7\xae\xea\xd5\xb6\x04\x4c\x5e\xac\x05\x42\x1d\x13\x06\x0e\xb0\x46\x46\x1a\xaf\xd4\x36\xf2\xd0\xe4\xc6\x37\xf9\x80\x07\x70\xe0\x4c\x4a\xb3\xa4\x01\x24\xa5\x29\xf8\xe1\x1a\x01\x4e\x19\x3f\x61\xcb\x66\xf6\x05\x77\x4c\x44\x43\x44\x43\x23\x0f\x4d\xc5\x9f\xd5\xb2\x77\x7c\x81\x1a\x79\x68\x12\x77\xac\x5a\x36\x3e\x01\x4f\x5a\x33\x13\x4d\x25\xe1\x6c\xcb\x8a\x27\x68\x23\x99\x88\x79\xbc\x21\x2d\xeb\xe7\xc0\xd3\xd5\x32\xd1\x0a\x84\x12\xb7\x9c\xe4\x4a\xcb\x1f\x6e\xb6\x9b\x79\x64\x77\x03\x4e\x90\xb3\xfe\x08\x7f\xe0\x4e\x68\xf2\xef\xdd\x95\x56\x5e\x10\x16\x9a\xcf\x81\xb5\x8d\x97\x85\x93\x9a\x89\x60\x1b\xc0\xec\xdd\x72\x78\x4c\x84\x47\x76\xad\x3c\x17\x80\xec\xd0\xdc\xad\xcd\xae\xae\x04\x60\x99\x47\x31\xfe\xc2\x1f\xd8\x5e\x48\x39\x77\x58\x12\x79\xd3\x1a\x77\x58\x6a\x8e\xbf\xeb\x09\xb1\xad\x42\x81\xcf\xaa\xed\xa0\x46\xd6\xad\x01\x01\xe2\xf2\x49\x15\xb1\x73\x58\x09\xe0\x41\xb9\x62\xfa\xcb\x3e\x47\xa6\x04\x86\xd0\x1c\x50\xfd\x61\xc3\x72\xb8\xe8\x0a\x1f\x40\xc0\xcf\x0a\x0b\x30\x55\x93\x5c\x0e\x1c\x6a\x8d\x24\x97\xa5\x0b\xca\x9f\x82\x03\x8b\x08\xc1\x61\xf9\x8b\x54\xd1\xfd\x6a\xa6\xe8\x64\x0c\x03\x6d\x25\x1a\x99\xb4\x59\x2a\xd1\x24\xb9\xac\x59\x8c\x6d\x52\x48\xce\x84\x39\x2e\x57\x80\xb9\x07\xc7\x60\x8e\x86\xf5\xa1\x95\x12\x7a\x97\x35\x63\x91\xee\xb2\x14\xbb\x0a\x23\x81\xe0\xc1\x81\x91\xa3\x01\x3b\xdc\x1d\x22\x26\xe5\x8b\x52\xbc\x30\xec\xba\xed\xf8\x81\x3b\xa4\xcd\x99\x0f\x58\xa3\x33\x1f\xe6\x15\xf6\x19\x34\x40\xdc\x25\x5f\x65\xcd\xee\x30\x57\x48\x95\x20\xb2\xd2\x04\xde\x96\x46\xea\xc9\x8a\x65\xb3\xe5\x01\xfc\xfd\x68\xaa\x84\x0a\xda\x19\x07\x89\x6e\xcd\x8d\x01\x71\x35\xd7\xe4\xc0\x55\xd6\xf2\x8c\xcd\xf7\xc5\x70\x3f\x9b\x4f\xc6\x60\x11\x13\x24\x17\x4f\x67\x6c\x92\x1f\x05\x7e\xf9\x8b\xb3\x62\xf7\x94\x02\x60\x31\x5c\x5b\xaa\x5a\x8b\x8c\x6f\xac\xa5\x7f\x17\xaa\xd2\xb8\xd4\x54\xb5\x11\xe6\x90\x11\x20\xa5\xdc\x51\xca\x49\xf9\x89\x3b\x4a\xde\xfc\x6f\x5c\x51\x9a\xc5\x43\xb0\xf4\x02\x30\x7b\x84\x07\xf5\x0f\xee\x21\x55\x6e\x1d\xb4\x6c\xa0\x30\x57\x53\x1b\x99\x98\x76\xaf\xbe\xf4\x1f\x5f\x93\x24\xd9\x2d\x7f\x86\x3f\x30\xfd\x0f\x97\xf0\x61\xfa\xdc\x5c\x2a\x5a\x02\xb2\x29\x01\xe1\xda\xde\x4a\x6a\x2e\x97\xec\x80\x49\xf5\x21\x9f\xc4\x26\x79\x20\x30\x3c\xc4\x21\x55\x7a\x80\x8d\xe5\x53\x49\x1f\xb8\x9d\x88\x61\x92\x60\xed\x0e\xea\x18\xf9\x8c\xfb\x07\xfb\xf9\x3a\x98\xaa\xcf\x00\x5d\xd2\xcc\x6d\xc7\x21\xba\x5c\xa2\xb9\x24\xee\xc2\x1e\x85\xd0\x93\x75\x4b\x28\xf6\x93\x20\xd3\xc8\x8b\x66\x7e\xcc\x8a\x5b\xb7\x91\x1f\xb3\x10\xa4\xde\x4c\x90\x39\x4a\xbc\xe8\xc1\x73\xf7\x89\x92\x90\x65\x67\xac\x0f\x49\x65\x24\x1b\x1a\x71\xd8\xf1\x6d\x96\x01\x8f\x1c\x39\xd5\x92\x7c\xc5\x98\x09\x15\x8d\x8c\xf9\x21\x16\x7b\xab\xed\x4a\xea\x89\x9a\xc8\x52\x5e\x13\x6e\x3a\xf7\x7b\x71\x9b\xdb\xbf\x9f\x40\xc4\x8e\x2e\x7b\x05\x24\x37\x1c\xa0\x3a\x29\x08\x87\xd4\xf9\xc6\x82\xe9\xe6\x29\x46\x48\x2f\x23\x0e\xd0\x91\x31\x57\x74\xc9\x11\xd6\x0a\x6d\x35\xf9\x11\x89\xe8\x48\xf1\x22\x7b\xd8\x1f\x04\xcd\x69\x83\x61\xd6\x12\x9e\xa7\x1f\x31\xd7\x47\x47\xbc\x38\xfb\x88\xd8\xee\xd9\x13\x33\x67\x90\x57\x8d\x5d\xe2\xa4\x85\x42\xd5\x3c\xeb\xe4\xf0\x30\xbe\x66\xbe\x60\x94\x37\xc0\xc9\xf0\x0a\x0e\xd2\xc2\x37\xb6\x9c\x11\x5f\x89\x8a\xc7\x41\x09\xc1\x49\x92\xd6\xa9\x0f\xe7\xa5\x85\x42\x02\xf8\x12\xd2\x45\xb7\xde\xac\x23\x95\x4a\x2b\x04\x40\x12\x80\xdf\x88\x47\x2e\x19\xf5\x91\x1b\x77\x7b\xb2\x89\x17\xb8\x6b\xf5\x07\xc0\x03\xb1\xe6\x92\xdd\x96\xea\xfc\x08\xba\xc3\x8a\xb8\x3c\x97\x53\xe6\xdc\x17\x13\x84\x2c\x87\x78\x49\xec\xc1\xdf\x4d\x0a\xc2\x54\x4b\x0a\xd8\x64\x5e\x8a\xad\xe9\x16\x7b\x46\x0c\x81\xc0\xa0\x1d\x89\x2b\x76\x85\x6c\x53\xad\x28\x2f\xa8\x1d\x15\xed\x19\xcd\x1f\xc8\x0b\x12\xbd\x9e\x7e\xc4\xb2\xf1\x64\xf4\x19\x13\x81\x2b\xba\x6e\x02\x22\x93\x6a\x50\x21\x22\x72\x6d\x12\xf2\x0d\xd1\x2b\x24\x0e\x91\x4c\x97\xac\xf6\x39\x78\x2e\x4c\x80\x31\xb7\xbc\x32\xc9\x56\xde\xb8\xc9\xb7\x87\xf1\x85\x9c\x08\xe0\xb1\xb7\xf4\x96\x84\x87\x74\xab\x46\x20\xb6\xa2\x0b\x82\x94\x9d\x8d\xeb\x7b\x46\xf4\x35\xaf\xef\xad\x1c\x2f\x8e\xc7\xe2\x8b\x8c\x1c\x95\x89\x2b\x7b\x06\xba\x35\x2e\xe5\x95\x8a\xbc\xef\xa5\x3c\x52\x12\x36\xee\xe4\x85\x38\xc1\x9d\xbc\x3d\x1c\x2b\x2a\x31\x29\xbb\x55\x6c\xee\xbe\x6c\xb4\x0a\x98\xd6\x83\x21\xe8\xb6\xa6\x9f\x49\x5b\x1a\xf7\xf6\xd2\xd0\x85\x44\x64\x7b\x1e\x6e\x67\x65\x6b\x93\x7f\x37\xe3\x0b\x73\x45\x94\x21\x55\x6f\xf3\x72\xdf\x72\xcb\xab\x19\x5f\x98\x12\x89\x3c\x6a\xb4\xd5\x50\xd5\x1d\x59\xa5\x0c\xac\xe7\xd6\x9f\xb1\x41\x8d\x9b\x7e\x45\xa3\x15\x37\xfd\x32\x89\x23\x5a\x31\x5a\x03\x41\xc6\x7b\x7e\x5d\x1c\x26\x1d\x87\xbc\xba\x20\xed\x2c\x84\xd3\xa2\xb7\x83\xa0\xdc\x56\x30\x99\xe0\x05\x6e\xa5\x89\x60\xc5\x97\xeb\x67\xa6\x9a\x56\x10\x76\x94\x37\x0a\x9e\x8f\x21\x46\x86\x78\x83\x08\x50\x10\x6f\xfa\x14\x32\x38\x3e\x96\x16\xab\x12\xb7\x3d\x18\xaf\x7b\xf0\x1d\xbc\xff\x9a\x01\xa7\x95\xee\xb2\x9d\x6e\x8f\xfd\x62\xf4\xee\xe8\x76\xc5\x7d\x6e\x77\x62\x44\x8a\x5a\x9e\xa3\xd6\x00\xcf\x19\x34\xa5\xd7\xa1\x8f\x9c\x15\x61\x3b\xe9\xee\x0a\xa6\x93\x25\x2e\x0e\xc2\x8c\x3d\xea\xc3\xeb\xf6\xac\xd4\x68\xcf\x9f\x03\xc8\x7e\x84\x0d\x31\x1c\x84\xc4\x34\xee\x46\xa6\x42\x16\xfc\x56\x46\x64\x8b\xb1\x2f\xee\xb4\xa3\xd8\x17\x6c\x27\x45\x82\x30\xa5\x0e\x6e\xde\x24\x2f\x09\xf2\x76\x31\x3f\x98\x94\xdb\xfc\xc0\x49\x7d\xbc\x70\xe7\xba\x0a\x4d\x23\x38\x65\x71\x5c\xae\xac\x0a\x12\x5c\xa8\x2c\x4b\x3c\x58\xce\x5d\x54\xe3\x56\xcf\x12\xbb\x08\x83\xe8\xd3\xfd\x43\x56\x99\x12\xb6\x0f\xc8\xef\x41\xe0\x12\x59\x52\x81\x2f\x21\xac\x08\x93\x0f\x18\xef\xa9\xff\x38\x36\xe3\x7d\x08\x94\x92\x64\x20\xaa\x1c\x8a\x63\xa6\x6d\x5c\xf2\xc1\x62\x7a\xaf\x12\xbf\x70\x4f\x7f\x3a\x06\x5b\x0c\x6f\x2e\x86\x51\xc8\xcb\xb8\xc3\x59\xb5\x3e\x7b\x6f\x53\xab\x7f\xf1\xda\x86\xa4\xf7\x8c\x09\xd2\x5a\x5f\xca\xf7\x11\xc9\xad\x9c\xfd\x67\x9a\xa5\x56\xce\xc0\x4a\x5f\x24\xc6\xd2\xc2\x33\xe6\xcf\x8a\x4f\x99\x93\x3f\x28\x17\x89\x4e\x5c\x95\x1a\xfa\x92\x8a\x59\xc3\xe4\xa6\x45\x83\xc9\xf0\x19\xda\x26\x39\xbb\xe6\xcf\xc4\x4e\xad\x5c\x02\x0c\x79\xab\x68\x0a\x41\xd7\xe4\xb2\x69\x99\x48\xbf\x5c\x36\xcd\xc3\xe3\x81\x25\xa4\x8a\x01\x64\x6d\xd6\xbe\x5e\x42\xfa\xc1\x0a\xcf\x2d\xd4\x6c\x58\x80\x39\x9b\x87\x5e\x87\x42\x30\x68\xec\x1b\xf1\x16\x3a\xe0\xca\xad\x88\xc9\xc8\xb7\x2e\x49\x97\x7a\x93\xa7\x47\x72\xbb\x45\x99\xa9\xce\x5a\x6e\x51\xb4\xda\xfa\xf5\x2e\x28\x93\x22\x04\x74\xc9\xeb\x0b\xd2\x8c\xfa\x76\x41\x98\x19\x22\xc0\x53\x7e\xe6\xb3\x6a\xe5\x89\x7b\x9c\x3c\x7b\xd7\xd2\xbf\xab\x0f\x0d\x7f\x50\x20\x96\x8d\x3f\xf0\x03\x37\xfd\x21\x62\x3e\x86\xfe\xf0\x0c\x9c\x08\x19\xed\x62\x09\x62\x4d\x15\x34\x18\x51\x62\xd5\x38\x67\x02\xbb\x71\xce\xe8\x22\xe0\x9e\x52\xe6\x2a\x7d\x2b\xaf\xf5\x3f\x7c\xc6\xdb\x2a\x95\xc3\x9c\x12\xac\x36\xee\xa8\xba\x11\xaf\xd1\x90\xc3\x5f\x58\x43\xf4\x84\xc0\xe1\xc1\x7a\x29\x99\x21\x07\x7f\xe1\xf3\xe0\x1f\x69\xb4\xc3\x2f\x59\x8d\xfb\xd4\x02\x52\xf5\xcb\x30\xd5\x8a\x5b\xc6\xe5\x70\x8b\x2a\x73\x89\xbf\x55\x92\x03\x70\x11\xa8\x55\x92\x9f\x11\x56\xdc\xea\x11\xe9\x1b\x79\x26\x80\xfc\x70\x00\x0c\xf6\x4c\xae\x12\xbf\x41\x50\x7a\xab\x04\x80\x2e\x27\x41\x00\xa8\xbe\xee\xaa\x9c\x03\x1a\xd6\x64\x8e\x13\x08\x7b\x4d\xca\x5b\xd9\x5f\x14\x28\xb1\xb7\x54\xdc\x30\xca\xea\x35\x01\x79\x20\x5c\x93\xfe\x01\x78\x4f\x4d\x5e\x7c\x65\x6d\x99\xfc\x82\x48\x0d\x35\x4b\x8a\x38\x0f\x35\x07\x8c\x99\x2d\x97\x3a\x14\xaa\x6b\x04\x50\x0c\x9b\xab\xb3\x81\x96\x95\x08\x8a\x9f\xcf\x9e\xe5\x6c\x13\x6e\x35\x77\xfb\x05\x07\xaa\xad\x3d\x43\xa0\x6b\x35\x96\x54\xb9\xac\xe2\xdd\x29\x8a\x1a\x95\x90\xd1\x98\x49\x24\x1b\xb3\xc5\x82\x10\x02\xb7\x2d\x8e\x14\x2d\x59\x15\xaf\x8d\xfe\xb1\x5a\x04\x82\xfd\x00\xf3\x6a\x5b\xd0\x4f\x65\xa2\x2a\x8c\xb8\x3c\x6f\x78\x40\x90\x6a\x8d\x6b\xd6\x8c\x50\x15\xb6\xbf\x37\xe1\x55\x9c\x3d\x5d\x3c\xaa\x9e\x23\x81\xbd\xe5\x93\xc2\x75\x8a\x56\xf5\xf6\xc4\x38\xe6\x97\xb1\xc1\x25\x18\x6c\x60\x1c\x52\xb4\x10\x72\x4e\x26\x20\xc7\x0f\x08\x2b\x01\x45\x0c\x32\xc6\xae\xb7\xda\x24\x1a\x10\xb5\xda\x90\x0f\xfd\xaa\x2b\x65\x39\x62\xd8\x47\x30\x00\xd5\x30\x8a\xc0\xdd\x6b\x8f\xc9\x33\x24\x3e\x96\xd8\x85\xae\x58\xe3\xf6\x74\x54\x0a\xcf\x53\x0f\xae\xe3\x8b\xb6\x13\x31\x93\x10\xcf\xe2\x84\x31\x91\x90\xee\xbc\x55\xee\x7c\x48\x81\xea\xd0\x4a\x3a\x7c\x81\xfd\x45\x63\x30\xc0\xe1\x14\x21\x04\xa8\xc2\x81\x33\x1f\x11\x6b\xcd\xb3\x27\x8d\x45\x70\x5f\xa4\x4f\x51\x7c\x3a\x0b\x06\x30\xd4\x42\xbb\x52\x0d\x41\xc1\x03\xb2\x05\x05\xcc\x17\xfb\x59\x26\x87\xcc\x51\xa7\xf3\xb0\x85\x57\x26\x0e\x7f\x08\x80\xb0\x3c\xa2\x3d\xa9\xb8\xd5\x2a\x97\x49\x8c\xda\xa8\x78\x5c\x8c\x70\xa9\x71\x99\x04\x96\x5c\xb9\x4c\x52\x3c\x77\xd3\x6d\xe2\xef\x64\x24\x55\x3f\xe7\x26\xe5\x1e\x81\x35\x61\x6c\xd1\x60\x5a\x0d\xd3\x88\xd6\x11\xa6\xe1\x39\xc0\x54\x22\xeb\xaa\x46\x5e\x6a\x7e\xaa\x1f\x59\xa8\xb8\x10\x9e\x16\x2c\x13\x15\x4f\x8b\x02\x56\xfd\x00\x05\xe8\x6a\x55\x16\x71\xf0\x48\x31\xe0\xf6\x7d\x86\xe8\xca\xc2\x3f\xf0\x09\x89\x1a\xe9\x5f\x28\xf7\xd3\x6a\x08\x26\xd9\xe6\xec\x99\x50\x20\xac\xe3\x30\x8e\xa5\x7e\x02\x24\x36\x31\xa9\x81\xdb\xbc\xc5\x94\xaa\xf9\xa3\x9e\x41\x26\x58\xc8\x09\xc9\x96\x5a\x9a\x81\x54\xaa\x1b\x32\x86\xd8\x76\x32\x2b\xb7\x26\xae\xa4\x60\xc0\xa8\xa7\x72\xa6\x60\x44\xde\x58\xfa\x8c\xc8\xd6\xf0\xf3\xd8\x9d\xe6\x38\x62\x43\x4e\x36\x4a\xa2\x71\xea\xe8\x84\xe9\x57\x84\x92\x64\xe3\x2d\x93\x14\xb2\xd5\xb6\x4a\x8c\x88\x2c\xb5\x7a\x6f\x25\xb0\xf5\x12\xc5\x6c\x10\x9b\x66\x0b\xd0\x5b\x3c\xbc\x84\x27\x43\x23\xb8\x24\xb1\xf8\x92\xe4\x47\xeb\x00\x1b\xab\x30\xf3\x94\x42\x7b\xbd\x6d\xce\x0f\x8f\x1a\xa1\x7d\x29\x25\x88\x18\x0f\x33\x74\xec\xcd\xe7\xc7\x90\xc7\x3c\x18\x5b\x64\x80\x8f\xfb\x57\xbe\x15\xf4\xea\xe3\x91\xf7\xa4\xca\xfa\x85\xb5\xac\xdf\xbd\x7d\xcc\x2d\xe8\xf9\xf2\xb2\x48\x20\xf9\x4b\x8c\xa2\x48\x13\xfe\x13\x0f\x5b\x18\x34\x44\x2d\x19\xb8\x80\x7f\x25\x97\xc5\xe6\x0e\xe8\xb3\xb4\x4f\x3c\x23\x6c\x93\x4c\x60\xad\x59\x58\x05\x72\xd5\xf4\x73\xa8\x9e\x35\x93\xef\x03\x89\x86\xb1\x82\x44\x13\xcd\xfb\xc8\x4b\x55\xad\xc1\xf3\x87\xd8\xd4\x0e\xb5\xdb\x69\x5f\x1c\x5c\x0e\x74\x93\x8b\xb3\x89\x0d\x87\x86\x27\xb2\xa5\x18\xaf\xf1\x42\x0a\x22\x4e\x4e\xcb\x1e\xa3\xe2\x4b\x80\x7b\xf0\x22\x45\xc5\x63\xd0\x64\x9e\x18\x7f\x1a\x77\x32\xc8\x48\xd9\x1a\x51\x12\x15\xce\xdb\x8a\x62\x0c\x48\xda\x54\xf1\x97\x3f\x28\x28\x61\xf6\x6a\x84\x22\xae\x00\x83\xfa\x3e\x9a\x6c\xc3\xe1\x20\x36\xb5\xa2\x92\x3a\xfc\x21\xb6\xd6\x5f\x94\xc8\x87\x2f\x1b\xd4\xa4\x5d\x69\x4d\x56\x2a\x44\x6a\x6c\xad\x2f\x44\xcb\x61\x0a\x6a\xea\xf2\xd8\x0e\x1a\x57\x2f\xc8\xa7\xd6\x9a\x97\x25\x45\xf8\x56\x25\xa9\xc3\xd6\xca\xc8\xae\x9c\x20\x88\x58\x47\x8d\x89\x00\x9e\xea\x55\x44\xc0\x4e\xf5\xae\x4e\xf8\x76\x6b\x4d\xa2\x81\x88\xd5\x88\x59\xa4\x8a\x54\x6b\x7a\x26\xd4\x8c\x5a\xb3\xdf\xcc\x33\xa8\x84\xba\x46\x0a\xfb\xd1\x45\x92\xb8\x0f\xe1\x47\xdd\xa2\x8d\xa8\x49\xe4\x64\xf9\xb9\x4f\xde\x8d\x90\xc8\xb5\x2e\xa8\x91\x41\x1a\x1c\x4b\x17\x6d\x23\xd1\xa3\xf2\x7d\x1b\x7a\xa3\x87\x3f\x90\x71\x16\xce\xd2\xbc\xab\xa0\xbd\xb7\xc1\xbe\x34\x59\x37\x4a\x4e\x75\x03\xd3\x5a\xb8\x01\xdc\xf4\xcd\xcb\xaa\xe6\x8e\x46\xb2\xc7\xe1\xc2\x27\x06\xef\xe4\x37\x83\x6f\x98\xe0\xd4\x0e\x8c\x36\x4b\xce\xfd\xb4\x9c\x39\xb7\x22\x35\xb2\x92\x73\xbf\x1c\x87\xd3\x10\xef\xdd\xcc\xa9\x0e\x89\xf4\xd4\xcc\x04\x23\xe5\x6c\xde\x85\x54\xb9\x6b\x5e\x3b\xd0\x74\xdc\x42\xaf\x46\x14\x6b\xde\x80\xd4\xde\xdb\xb8\x6b\xa0\x41\xa1\x71\x03\x52\x53\x7f\x43\xaf\x36\x98\xa0\xad\xa8\xcc\xc7\x33\xd4\xcf\x75\x2f\xc1\x06\x40\x96\x2c\x83\xef\x3f\x31\x34\x9d\x7e\x62\x68\xe6\x01\xf7\x9a\x22\x28\xcc\x4b\x86\xd5\x36\xf3\xaa\x72\x4e\xca\x01\xe4\x31\xbe\x35\xeb\x59\x2a\x40\xaf\x7c\x23\x05\xa3\x71\x3d\xed\x13\x66\x00\x47\x71\x8e\x3c\x9f\xc6\xca\x33\x93\x33\x60\xc5\x42\x2c\x22\xd0\xfc\x41\x62\x29\xfd\xb8\x14\x02\x3c\x9d\xc6\x1c\xea\x9f\x6e\xf0\x13\x2a\x1a\x36\x32\xfd\xd4\xd8\xe7\x2b\x90\xcf\x1f\xd8\x74\xf7\xf6\x92\x90\x4d\x5f\x3c\xe8\x1e\xdb\xcb\x83\x2e\xc6\x59\xfd\xc1\x88\xa6\x16\x76\x7d\xf7\xf0\x0e\x94\xa3\xcd\x1d\x73\xf1\x85\xb9\xa0\x9d\x90\x68\xa8\x06\xe5\xbd\x65\xb1\xd5\xbe\x40\xfe\x64\x03\x91\x5f\x0c\x08\x4d\xd7\xa3\xce\xd5\x02\xca\x2b\xb6\xf6\x38\xa0\x8b\xe7\x4a\xa3\x26\x60\xca\x19\x54\x9d\xbe\xed\x89\x65\xf9\x22\x73\x90\x8c\x3f\xb2\x46\xc9\x54\x98\xd7\x11\x9a\xda\x2b\x8c\x24\xa5\xdc\x3e\xac\xd9\x1f\xa4\xfc\x6e\x04\x71\x7e\xe4\x47\x69\x0d\x46\x43\x96\xa6\xd6\xf0\xad\x57\x89\xce\xeb\x61\x85\x3a\xf4\x60\x2e\x88\x30\x54\x47\xc8\x0b\xa9\xa5\x1f\x92\xb9\xf8\x2a\x0e\x5f\xe7\x05\x5f\x3e\x00\xea\xde\x09\x20\x97\x48\xeb\xde\x1d\x54\xde\x37\xe9\xc4\x90\x7e\x92\x95\xa9\xea\x26\xea\x84\xf0\x29\x02\xf5\xa4\x5d\x94\x01\x09\xde\x97\x9f\x74\x2d\xde\xda\xe4\x3b\xe9\xaf\xc9\x02\xd2\x3a\x49\x14\x9a\x90\xeb\xa1\xd7\x41\x63\x7b\x36\x87\x3c\x13\xc9\x01\x52\xbf\x62\x77\xec\xb7\xc4\xa4\xf8\x0a\x7e\x64\xcc\x4d\x27\x68\x6f\x3a\x41\xaf\x08\x6a\xf7\xef\xe4\x99\xd6\xcd\xd6\xf5\x8b\xab\x50\x74\xf4\xbd\x1a\xad\xd5\x36\x21\x02\x1d\x3e\x45\x9e\x92\xd6\x8b\x56\xb7\x6e\x73\x2f\x1f\x25\x9b\x6b\x8d\x5e\x4e\x4b\xd4\x8a\x11\x4d\xf7\xcf\xb1\xec\x35\x26\xcc\x67\xd5\x83\x05\xbd\xb7\x1e\x05\xa9\x3f\x5b\x87\x3d\x25\x5d\x0a\x3d\xf8\x53\x7c\xb5\xec\xcc\x5f\x4e\x5f\x6c\x73\x51\x6b\xca\x1f\xdc\xb8\xee\x0f\xa2\x8a\xcd\x63\x2e\x6c\x16\x21\xf5\xd4\x7a\x6c\x7d\xb3\xa7\x61\x18\x60\x6f\x12\xab\x78\x31\x61\x3f\x2b\x69\x8a\xc7\x82\xc5\x28\xbb\x58\x56\x17\xaa\x7c\xa5\x32\x27\xb7\xe9\x96\x70\x1c\xb6\x88\xb9\x83\x04\xb8\xbb\xf5\x28\x50\xf7\xa2\x92\x29\xa5\x51\xf6\xa2\x92\xc0\xa4\x75\xf3\x35\xed\xc5\x7e\x43\x05\xa9\x83\x91\x82\x82\x77\x52\x25\x37\x68\x4c\xc7\xcf\x9d\xf4\x43\x74\xeb\x32\x4a\x61\x3b\x71\x73\x92\xbe\x4e\x52\xe4\x98\xb1\xdc\x0e\xc6\xd2\xa7\x81\x58\x76\x3b\x03\x5b\xfc\x0a\x6c\x81\xbb\x76\x4b\x40\xc0\x56\xba\x31\xf2\x01\x60\x39\x99\x5b\xaa\x4a\xa6\x7b\xa3\xe3\xdb\x1e\x3f\x07\x04\x9f\x9d\x08\x9e\x69\x8d\x3e\x1d\x15\x2b\x38\x35\x29\xcd\x46\x6f\xfe\x60\xc1\x6e\xf1\x6e\x05\x8c\x6c\x2e\xdd\x74\x81\xfa\xa9\xd5\x21\xa9\x0e\x52\x63\x8e\x64\x08\xd6\x1b\xd7\x51\xb1\x14\x84\xfa\x47\x8a\xd4\x7d\x19\xce\x97\x8d\xf8\xc4\xaa\xfc\x65\x39\x08\xcb\xfa\xc4\xb2\x98\xa4\x6c\x06\xaa\xdf\xcd\xb8\x24\x67\xeb\x5e\x96\x93\x49\xf6\x53\x37\x42\xfc\xe2\x82\x69\x7e\x0a\x53\x46\xf4\xe6\x9c\x8a\x67\x47\x31\xaa\xd0\x50\x4a\x96\xe4\xa4\x4b\xa6\xa3\x00\x79\x7f\xbe\x75\x5c\xd4\x15\xe2\xda\xd1\x80\x48\x7e\xde\x3a\x46\x59\xf2\x79\xb7\x7e\x45\x6a\x39\xc6\x40\xd1\xa9\x52\xca\x4b\xdc\x84\x65\xf4\x8b\x92\x2c\xc3\xd6\x2e\x50\x68\x99\x23\x4b\x7d\xb6\x5f\x01\x79\xe6\x7e\x99\xae\xdf\x89\x04\xe0\xf9\xe1\x3e\x6c\xcf\xb4\x6e\xa7\xc8\xa2\x6e\xa7\x45\x57\xf8\x9e\xab\xe4\x0d\xfd\x49\x2b\x5b\xbf\x25\x37\xce\xe4\xc6\xe2\x21\x6e\x70\x63\xdf\xc0\x81\xae\x23\x5a\x17\x52\x87\xa9\x05\x1b\xee\x96\x87\x90\xe8\xde\xa6\xc1\x13\x6e\x8f\xb5\x62\x98\x93\xae\x68\x95\x9c\x0e\x83\x5b\xa2\xc3\xa3\x01\x52\xe0\x9a\xea\x2e\x8e\xce\x23\x4b\x1d\xb6\x97\xd6\xa0\x6d\x76\x14\xae\x2a\x41\xc5\xbe\x7a\x08\xab\xe0\x7c\x52\x73\x1c\xcb\x06\x44\x77\x12\xa2\x19\xe1\xda\xe5\x75\xd2\xd6\xd7\x50\x10\xa6\xfe\x52\xb2\xc6\xed\x7f\x39\x2c\x90\xa6\x71\x80\xd3\x10\xb9\x71\x70\x21\xab\xf8\x0c\x4e\x71\x4e\x87\x31\xec\xea\x25\x03\xff\x6f\x05\xbf\xc7\xe1\x60\xfe\x3d\x0e\xd4\xe0\x05\x62\xd4\x7d\x76\xbf\x87\x2d\x60\xbf\xac\x67\x44\x3a\xa6\xbd\x61\x23\x25\xe1\xef\x0b\xb5\x65\xa0\x3d\x94\xcd\xa9\x35\x3e\xf2\x30\x23\x79\x0c\x39\x26\x00\x18\xc4\xb9\x57\x76\x78\x70\x45\x9e\x84\x86\x6d\xa4\x00\xeb\xfa\x8e\xf6\x8d\xbf\x57\x87\x68\x23\x8b\x6d\x60\xcf\xc0\xcb\x5b\x16\x27\x62\x18\x97\xa6\x83\x6a\x64\x43\x76\x9c\x72\x76\x36\x80\x0b\x8d\xd0\x4b\x3d\x23\xab\xa5\x00\x08\xf3\xe8\x88\x0b\x23\x7f\xec\xca\x16\x82\x68\x3a\x22\x69\xa1\x92\x63\x28\xf9\x4c\x5f\xa4\xcf\xce\x0b\x3f\xb1\x21\x3f\x83\xb8\x77\x1d\xbd\x14\x13\xda\xfd\x32\x3a\x2a\x1d\xe9\x7e\xdb\xa8\x31\x77\x9e\x43\x5b\xe3\x99\x52\x03\xd3\xef\x2f\x47\x00\x78\xd5\xa3\xe9\x70\xf2\xbf\x61\x0b\xd0\xc7\xc9\x7a\x51\x1e\x4e\x3c\x54\xd5\x84\x7c\x8b\xd1\x58\x6b\xd3\xa0\xe4\xb3\xe7\x1a\x41\x74\x74\x8e\x72\x3c\x47\x0b\xba\xc2\xb0\x79\xb8\xeb\x14\x87\x0a\xbc\xea\xca\x62\xfe\x5d\xe2\x0a\x4f\x1e\xdd\xa3\x85\xf0\x37\x70\x98\x56\x81\xd6\xb5\xee\xfb\x77\x8f\x9c\x6b\x0d\xe7\x29\xaa\xc5\xf0\x7a\x7b\x89\x8e\x3d\xe5\x42\x01\xf7\x69\x08\x89\xc3\x0b\x65\xba\xb8\x07\x11\x5f\xdd\x3b\x3c\xc3\x9b\xec\xde\x4d\x1c\x43\x2b\x00\xe2\xee\x20\x82\x7c\x28\x7d\x8e\x61\x3c\x02\x47\x72\x18\x42\xee\xd5\x43\xaa\x3b\xd5\xea\xd4\x66\x0c\xc3\x04\xa8\x05\xd0\x91\x10\xc6\x54\x56\x47\xd8\x1f\x04\x80\xd5\xe9\x47\xae\x98\xb5\x10\x2a\x2e\x67\x18\x33\x36\x94\x6e\x89\xf0\xae\xce\x6a\xc9\x94\x11\xc8\xc6\x92\xbf\x23\x2f\x8c\xe5\x61\x47\x98\x1c\x2b\x96\x65\x7b\x13\x87\xba\xfa\x15\x3d\x33\xa4\x26\x4a\xdd\x4c\x43\x2e\xe9\x1c\x3f\xb1\x12\xc6\xf4\xc2\x98\x67\xc4\x82\x48\x8e\x88\xb5\x92\xd4\xd3\x6d\x04\xc7\x44\xa4\x19\xc1\x31\x85\xc3\xc7\xa9\x54\x3f\x43\x28\x40\xd1\x18\x1f\x6d\xa5\x76\xe5\x79\xb1\x2f\xbc\xa2\xa4\xa9\x6b\xe3\x74\xed\x74\x4b\xa4\x77\xe8\x03\x43\x07\xa5\x1e\x84\x71\x39\x75\x5a\xc8\xf1\x90\xd4\x07\xe9\x69\xc8\x7e\xd7\xc6\xd6\xc4\x66\x9c\x0a\x52\xde\x06\x05\xc0\x0b\x39\x04\x8e\x7a\x98\xa2\xdc\xb8\xcc\xbd\x05\x08\x2f\x2d\xda\x22\xb3\xca\x16\x9c\x65\xdc\xca\x45\xae\xe8\x76\x38\xba\x35\x93\xa7\x92\xf3\xd8\x5c\xaa\xc8\xb6\xc7\x1d\x13\x67\xb2\x30\xa9\xa1\x24\x38\xe0\x52\x06\x00\x8e\xcd\xa4\x4a\xfb\x36\x67\x69\x1b\x8f\x3b\x85\xdc\x31\x08\xa0\x6a\xe2\x9c\x45\x90\x0c\x29\x8a\xfc\x75\xca\xc1\xe3\x11\x53\x04\xf0\x13\xdb\x03\xbc\x1e\x19\xa8\xc7\xc9\xfc\x32\x8a\x79\x24\x78\xcd\xcd\x1d\xc5\xcb\xa7\x21\x6a\xbc\x6e\xb5\xab\x79\x29\x24\xe2\x54\x5e\x8b\x14\xdb\xd8\xa3\xe4\x18\xde\xfa\x76\xc5\x66\x8a\x55\xe4\x1b\x9a\x0f\x4b\xbc\x48\x33\x39\x63\xe4\x90\x2d\x83\xed\x9a\x06\x41\x01\xca\x49\x2c\xb5\x39\x0c\xda\x3c\x2c\x41\x13\x2f\x66\xd8\xf3\x2b\xee\x8e\xc0\x35\xa7\xf9\x64\x74\xa9\xcc\x43\xb1\xa7\xf8\x8b\x98\x39\x79\x26\x1d\x02\x6a\xc6\x34\x54\x4a\x9f\xde\x0c\x9d\x10\xe4\x9a\x9b\xab\x65\x2f\x71\x4e\x8a\x1d\x19\x98\x3d\x0d\x64\x52\xa5\x9c\x78\x04\xa9\xd1\xd8\xa6\x19\x4b\x95\x37\x67\xf2\xe8\x21\xa5\xcd\x2c\xb1\x02\x59\x26\x37\xb6\xc8\xbc\xd5\x26\x31\xd4\x24\xf4\x6a\xd3\xb8\x69\xb5\xd3\x99\x45\xaf\xea\x2f\x5a\x6a\xfc\x41\xf4\x42\x60\x20\xdf\xee\x90\xbb\x4d\x6b\x0d\x40\x76\x66\x21\x6f\x95\xdf\x10\x9f\x14\x0a\xc8\xe4\x56\x97\x86\xf4\x49\x1d\x50\xea\xb1\xb6\x59\x64\x81\x42\xc1\xa0\x68\x27\x8b\xb3\xcf\x08\xbc\x19\x2c\x4c\x88\x54\x10\x18\x06\x33\x2b\x01\x9a\xae\xa8\xda\x93\xeb\xae\xa6\xc8\x61\xb8\x2a\xd0\x6d\xe0\x39\x74\x82\xa1\xcf\x2d\x9b\xcb\x86\x6c\xd2\x64\xf8\x4e\x71\x73\xb1\x3c\x9c\x21\xb7\xae\x0c\x61\x9c\x5b\xa1\x2b\x5e\x9f\x9b\x4d\x82\x89\x26\x31\x09\x20\x12\x11\x67\xe3\x1e\x51\xb7\x57\xc2\xaf\x9c\x2d\xf1\x43\x86\x93\x4e\x5d\x7b\xf1\xf7\x98\x06\xb3\xa5\xa4\xe9\x70\xb2\xdc\xb8\x22\x83\x49\x9b\x3d\x4e\x20\xad\x8d\x0c\x52\x42\x9f\xe6\x66\xd3\xd5\x32\xbb\xb7\x09\x98\x13\x37\xa9\xc8\xf7\xd0\x66\x30\x3a\x51\x12\x5f\x1e\x85\x55\xdb\x1c\x8e\x41\x03\x54\x3c\xd5\xbd\x39\xa2\x57\x06\x1f\x60\x64\xf2\x07\x69\x7e\xf1\x07\x22\x2a\x96\x3f\xc4\x32\x98\xe1\x0c\x24\x64\x4d\xd3\xda\x70\x90\x92\xe9\x75\x28\xcf\x03\x17\xa4\xb5\x0a\xce\xa9\x32\xe4\x74\x4d\xac\xa2\xa3\x6f\x9a\x38\x58\xf5\x62\x2e\xf3\x05\xf0\xd5\xf2\x94\x22\xf9\xcf\xa5\xa6\xdf\xfd\x85\x00\xf9\x64\x8b\xe9\xe8\xdf\xea\xbe\x73\x71\x85\x1d\xf2\x33\x43\x1b\x74\x06\x94\x4f\x50\x16\x98\x58\x26\xa5\xe4\xf3\x13\x63\x02\xbd\x8f\xf5\xca\x68\xf0\x09\x6a\xc0\xcc\xbc\x09\xad\x2c\x3f\xcd\x8e\xe2\xa1\x40\xcb\xa3\xd8\x56\x9b\xde\x84\x56\x66\x9f\x86\xef\x20\x6e\xcc\xcd\xb4\x4a\xf3\xa8\xe1\x0a\x6b\x82\xe8\x74\x4f\xfc\xe6\xc3\x33\xc0\x3e\x1d\x80\x69\x70\x69\x69\x19\x13\x39\xd1\xf7\x0e\xc9\x18\x3e\xae\xee\x5c\x0d\xbb\xd1\x25\x32\x75\x72\xa9\x16\x4c\x43\x92\x75\x27\x4e\xac\x92\x0d\xd9\x6a\x5e\xdc\xc4\x91\x5e\x98\x28\x45\xbf\xc2\xb4\x8c\x9f\x98\x4c\x14\x4e\x4c\x2a\x34\x3c\x01\x85\x4d\x32\x2c\x16\xd3\xc0\x63\x19\xc3\x44\xab\x6b\xae\xfb\x36\x62\xc2\x01\x51\xf1\x9a\x1b\x70\x47\x38\x07\x90\xe2\xd6\x52\x6c\xd9\x1d\xbb\x01\xd0\x51\x04\x1b\x32\xcf\xbc\x05\x1b\x33\xb9\x01\x1b\x12\xcb\x34\x72\xa7\x46\xeb\x8b\x1f\x9c\x94\x74\xaf\xfb\xc2\x2e\x25\x7b\x65\xf3\x11\xf0\xe6\xa3\x87\xc2\x49\x05\xe7\x14\xba\x5a\x3a\x55\x89\x26\xd6\x4d\x0a\x4b\xb6\xf9\x08\x43\xba\xf2\x0a\xb4\x7c\x6c\x3e\xe7\xcf\x5a\x74\x6d\x12\x7d\x13\x1b\x4e\x42\x15\xaf\x51\xcc\xc7\xb1\x99\x2c\x1a\x61\xf7\x70\xbe\x5e\x6c\x65\x4e\x38\xe0\x82\x24\xbd\x94\x20\x72\x27\x51\x08\x9b\x54\x16\xf7\x9b\xdc\x77\x51\x70\xb0\x81\xa6\x2b\x92\xc5\x77\x5f\x84\x25\x9a\xd5\x3a\x88\x2d\x67\x27\xd7\x61\xeb\xc5\x33\x41\xdc\xc0\x78\x1d\x92\x05\x18\xee\x3a\xdc\x6e\xa0\xb1\xd0\xf0\xe4\x4d\x8b\x30\x60\xd2\xfa\xb6\x95\x3c\xbd\x0e\xb1\xf9\x9f\x05\xf8\xda\x4a\x91\x1f\x97\x67\x5c\x5b\xc9\xbf\x2f\xa2\xb4\x3a\xcf\x1f\xb2\xf4\x31\x25\xac\xa0\x14\xb2\x6a\x8b\x22\x80\x24\xc5\x69\xcb\xa4\x25\x1a\x3e\x97\xe1\xbd\x46\xe7\xae\x1c\xbb\xc5\xcc\x33\xb5\x42\xd1\x4c\x17\xea\xdc\x92\x7e\xae\x1c\x88\xe6\x57\x6c\x5d\xb5\xf9\xf8\x59\x21\xb0\x2d\x75\xbb\x12\xcd\x17\x14\x97\xd1\xb3\x33\x64\xe6\xe4\x20\x11\xb7\x16\xda\x9c\x66\x9e\x15\xca\x1c\x4c\x7c\x19\xf4\xab\xbf\x77\x15\xc3\xa8\x68\x5d\xd8\xa4\xf8\x48\x29\x25\x7e\x40\xc7\xc4\x78\xb0\xb0\xad\x36\x01\x62\x15\xbf\x94\xbe\xab\x1d\xd9\x56\x89\x8d\x62\xbd\x05\x44\x77\xc6\xc1\x7e\x51\x9f\x56\x75\x50\x18\xc3\xe2\x8a\xb4\xaa\xdb\xaa\x51\x2b\x80\xa9\xa1\x4f\xb6\x68\x81\x49\xb0\xf9\x77\xb0\xa7\xd9\x98\x21\xe2\x99\xca\x4a\xee\x01\x06\xd4\x06\xd7\x5b\x68\x90\x6a\x54\x2b\x34\x48\x0e\xc3\x6a\x44\x76\x72\x74\x17\x8c\x58\x1b\xed\x22\x6f\x89\xce\xde\x25\x1f\x86\x18\x2d\x72\xa4\x52\xa7\xb0\x2d\x72\xa4\x2e\xad\x97\x8b\xb4\x25\xad\xd9\xa9\x38\x6c\x03\x02\xf6\x38\x9e\x4b\x06\xad\xaf\x64\x59\x4d\x4f\x1d\x7a\x75\xe7\xca\x34\x8c\xea\x55\x72\x5a\xb2\x6b\xd8\xd4\xea\xce\xd5\x06\x64\x82\x43\x80\x58\x1d\xb2\xd4\xfc\x7e\x62\xe2\xf7\x1b\x0e\x68\xf3\xd9\xb0\x3c\xfb\x51\xfe\x9b\xbe\x40\xa2\x60\x77\xab\x2b\x5d\xbb\x5b\xd4\xc6\x6b\x22\x64\x8f\x9d\x63\x7e\x23\xe0\xc7\x2f\x04\xf8\x2a\xa1\x2e\x2c\xbb\x5e\x2b\x5e\xe4\x35\x69\xb0\xa7\x35\x02\x4e\xb6\x8e\xc1\x19\x63\x28\x46\xb9\x15\xb8\x3b\xbd\x6b\xba\x26\x44\x1b\xc6\xb5\x26\x02\xb5\xc3\x6d\x46\x5f\x24\xae\xcb\xd0\x5d\xa1\x3f\xb9\xae\xb9\xfc\x5e\xc3\xbf\x24\x24\x98\x3e\xfa\xd9\xe2\x9e\x52\x93\x82\x18\xdf\xab\x37\x63\xad\xe0\x0b\xcc\x90\x9b\x4a\x5d\xf2\x10\x0a\xac\x1d\x53\x4c\x2e\x8e\xa8\xca\xac\x06\xe3\xb5\xbc\x84\xe2\x47\x54\xe5\x84\x4c\xaf\xc5\x78\x98\x08\xd6\x72\xbb\xdd\x7b\x2e\x23\x79\x4f\x8c\x32\x0e\x53\xdd\x77\x7d\x94\xd8\x01\x47\x28\xac\xc8\x41\x0b\x39\xc0\x3b\x96\xcb\x0b\xcb\xd2\xbb\x8f\xe4\x68\xd9\x42\xf1\xdd\x7d\xfd\x04\x6d\x62\x19\xde\x46\xd2\x11\xb3\x48\x89\xd2\x60\xcd\xeb\x0c\xda\x04\x78\xce\x18\x91\xf6\xa7\xb1\x1e\xac\xe9\x24\x78\x29\x9e\xcd\x46\x6a\xeb\xd8\x3e\x5f\x1e\xca\x94\x32\x2d\x7d\x92\xca\xcd\xcb\xe2\x0b\xd3\xe3\x10\xec\x7f\xf9\xd2\x99\x89\xcf\xea\x69\x42\x97\xc0\x16\xaf\x0b\xac\x2b\x18\x2a\x53\xbc\xe4\x69\xcc\x30\xf8\xbf\x98\x04\xcb\x4f\x7e\x14\xf7\x91\x69\x7d\xab\x3c\x38\x2d\xd2\x9e\x78\xdf\x67\xc1\xf1\xbd\x33\xbf\x64\xd3\xdd\xbf\x7b\x06\x24\x1b\xa1\xfd\xce\x6f\xcd\x7c\xcb\x2b\xc9\x71\x20\x89\xa0\xd5\xc7\xbd\x50\x6c\x15\xed\x4c\x9e\x3e\x34\x48\xac\xc7\x13\xc2\xec\xb9\x6d\x3c\xdc\xc5\xcd\xb6\x8b\x16\x88\x85\xb3\xb2\x2c\xa1\xf5\x38\x99\xf8\xc5\x13\x89\xec\xbd\xde\xa8\x93\xcc\x2f\x5e\x38\xd6\x0d\xb4\xbc\x0d\xa4\x1b\x68\xe1\xd3\xd4\x50\xb7\xbc\x3a\xac\xa7\x6a\xe9\xd3\xd4\x0a\xbe\x2c\xec\x8e\xfc\xbc\xf0\x5d\x7a\x8b\xe0\x73\x1c\xb6\xc8\xbc\x50\xb6\x08\x12\xff\x21\x2c\x56\x4b\xe4\x27\xc2\x62\x9b\x3f\x40\x7f\x86\x3f\xc8\xca\x21\x64\x9f\x60\xe5\xcb\x97\xc7\x7e\xf7\x80\x1f\x92\x93\x91\x73\xb5\x7d\xcc\x6f\xaa\x1b\xe6\x93\x02\x89\x26\x2f\x01\xc7\xce\x0b\x22\xf2\xf4\x2b\x88\xf0\xf0\xa3\xd3\x70\xd1\xc4\x0b\x3b\x3c\x6c\x10\x03\x3a\x08\x02\x90\x0b\xc1\x3c\x2b\xc3\xf8\x84\x0d\x16\x8a\xfc\xc9\x01\x45\x5f\xe0\x0c\x20\xce\x27\x94\x5c\xf6\xe7\x23\xd7\xd6\x8d\x42\x02\xfc\x61\xc2\x8c\x8f\x16\x59\xdd\x1a\x9f\x1c\x6b\xf7\x05\xac\x41\xbe\xf9\x94\x80\xef\xe2\x85\x68\x69\xa7\x82\xad\x55\x27\xdd\x47\x45\x15\x6c\xfe\x10\x52\xaa\xc9\xf0\x53\x75\x72\x41\x7b\x3f\xd5\x89\xb0\x9d\x1f\xee\xbc\xc8\x41\x3f\xd5\x4c\x9f\xec\xed\x47\xdd\x54\x9f\xca\xc7\x10\x51\xb5\x9e\x4f\x23\xf4\x14\x72\xf6\x91\x65\xe9\xb1\xf8\xc8\x8c\x04\x75\x0f\x00\x31\xad\xae\x98\xb7\x7c\xe1\x6e\xb8\xf3\xea\x9a\x32\xb3\x3f\xb0\x3b\xd3\xae\xd8\x90\xe9\x47\x1e\x39\x98\xc5\x27\x8c\x9f\x36\xf7\xd6\x87\xf6\xa2\x8f\x9c\x43\x6b\xef\x67\x28\xef\xbb\xbb\x5b\x4b\x2c\xe6\xbd\xfb\x4c\x75\x5a\x88\xd5\xc7\xe4\x16\x1a\x4a\x3e\x2b\x16\x0c\x8c\x48\x50\xa1\xd1\xe4\x63\x18\x8a\x86\xbe\x8f\x2a\x9f\xa6\xb7\x8f\x56\x4a\x6d\x72\x9f\xe5\xf4\x19\x7e\x79\x48\x81\xf0\xb2\x18\x90\x07\x63\xc5\xbc\x78\xc1\x2e\x39\xb4\x94\x7c\x3e\x6e\x11\xb2\xf3\xe7\xe3\x71\x40\x77\xf9\xa8\xa6\xa9\x93\x7f\x0c\xfa\xd0\x5f\xf4\x31\x7e\x51\xa1\xff\x73\x1a\x97\x2f\x7e\x9d\x71\x64\xed\x20\xc0\xc4\x02\x24\xd0\x7a\xff\x29\xbd\x50\x65\xe2\x1f\x12\x4c\x34\x51\x92\xa0\x45\xca\x1c\xb5\x8f\xd1\x24\x5e\xd4\xff\x70\x79\x42\xe3\xcc\x07\x37\x1d\x15\x8f\x1a\xe5\x81\x36\x58\xbf\xab\xd8\xd6\x3e\x5e\x2d\x55\xd4\xfe\xa8\xc8\xa9\xe5\x7e\xa4\xea\x22\xf2\x85\x7c\x3d\x7d\xbe\x2c\x64\xc1\xf3\x6b\x03\xd6\x45\x2e\xcb\x2e\x65\xc0\x74\xa9\x2b\xea\xa3\x1e\xb6\xfc\xbb\x6b\x87\xf0\x7e\x6e\xb7\x02\x42\xf8\x31\x0f\xb6\x0e\xa5\x0f\xba\x94\x77\x28\x3e\x1a\x21\xdd\xbc\xb8\xec\xe0\x59\x79\x1c\x83\xb1\x49\x06\xd1\x24\x51\xc6\x3a\x7a\x01\xeb\x23\x19\x56\x49\xfe\x68\x82\xd4\xda\xf0\x79\xa3\x2f\x3e\x33\x80\xc4\xcb\x55\x1f\x7c\x64\x49\xad\xe6\x3c\x62\x5e\x83\x97\xe4\x2f\x9d\x17\x2b\x56\x25\x5f\xc8\xb2\x85\x7c\x7c\x62\xef\xd3\x54\x7f\x52\x3a\xdd\x08\xf7\x13\x57\x55\x07\xbd\x4f\x89\xa2\xba\xf1\x99\x54\x04\xe1\x2e\x27\x94\x70\x95\xf8\xe5\xf6\x85\x5f\x72\x30\x0e\x3a\xc3\x07\xd5\xe2\x07\xe9\x41\xf7\x07\x8a\x8e\x43\x87\xcf\x8c\x39\xa3\xfb\xec\xb9\x45\x9e\x3a\xb5\xde\x41\xdf\x4f\x94\x0b\xea\x3d\xb4\xb3\x58\x78\xcb\x6e\x8b\xf3\xf5\x23\x31\x38\xdb\xfa\xe1\x07\x16\x5e\xdd\x75\x86\xae\xca\xc2\xe0\xc6\x49\x82\x43\x0a\xd0\xb5\x93\x70\x41\x13\x69\x9d\x35\x30\xde\x1f\x02\x05\x68\x6e\xa2\x23\xbf\xda\x2a\x40\xed\xe0\xc9\xd9\x3c\x98\x8e\x6d\x40\x05\xbc\xe1\x44\xec\xa7\x8c\x5c\x3b\x49\xb0\xac\x81\xf7\xa4\x4c\x82\xa1\x4c\x27\xf1\x81\xb3\xda\x96\x7c\xd3\x6e\x58\x53\x7e\x65\x16\x41\x36\xb3\x0d\xac\xab\xcb\x47\xde\xd2\x13\x34\x3d\xf2\xf6\xf0\xec\xc0\xc0\xd5\x10\x8d\xee\x37\xa2\x04\xa7\xf9\x44\xa0\xa7\xb2\x41\x3b\x11\xe2\x67\xf5\xef\x31\x1a\x6b\xd6\xc9\xa4\x51\xe5\xc4\x2a\x67\x4a\xc1\x93\x08\x7b\xf5\xfb\x93\xc4\x03\x6a\xdf\xe7\x70\x68\xa6\x4a\x0c\x86\xd9\xe9\xdb\x89\x0c\xdf\x85\xe4\x00\x07\x9c\x46\x58\xeb\x86\x23\x18\xc9\x86\x19\xe0\x24\x3a\xa3\x3b\xf4\x94\xaa\x71\xf4\x4f\x62\x11\x4b\x00\x8d\x58\xc4\x1e\x3f\x88\x1e\xd9\xe6\x88\xbf\x9c\xf1\xd3\xdc\x86\xca\xc5\x16\x00\xf3\xfe\xc3\x69\xe9\xe9\x78\x26\x6b\x25\x5c\xeb\x9c\xca\x89\xc3\x1f\x4e\xf4\x40\xd6\x87\xab\x2a\x0e\x95\xf9\x94\x87\x43\x0b\x35\x38\xc5\x69\xc4\x22\xf4\xe1\x54\x01\x98\x18\x9c\x4f\xfd\x59\xb5\x7c\x7b\xc5\xe3\x5c\x94\x35\xf7\xc8\x59\xf0\x4e\x93\xd0\x89\xe1\x50\xaf\xc3\xb9\xbc\xbb\xee\x33\xd7\xa6\x3c\xe1\x0b\x3b\x6e\x8c\xcf\x35\x5a\x91\x6d\x45\x69\x5d\x9e\xc9\xe3\x88\x76\x70\xe2\x18\xd3\xc7\x78\xc2\x66\x3a\x52\xc4\xf9\xf1\x7a\x2c\xdf\x50\x20\x4e\xdf\xef\x49\x26\xa4\x29\xa4\xb8\x38\xd8\x05\xb9\x41\x89\xda\xb1\x4e\xb5\x09\x0d\xac\x27\xda\x84\x31\x2d\xa7\x65\x1e\x34\x3d\x9e\x2a\x13\x1e\xc3\x08\xb0\xe7\xa3\x53\x25\x1e\xa8\x71\x0d\x50\x5b\xb2\x95\xd8\x4a\x3c\xab\x36\x89\x47\x58\x1e\x4d\x2f\x70\x9e\x26\x2a\x77\x00\xe5\x25\x71\xfb\x54\x66\xa9\x36\x27\x33\x2c\xec\xec\x34\xff\x01\x9a\xe7\xa9\xbe\xa1\xdd\x8b\xd2\x41\x39\xe8\xca\x25\xaa\x01\x26\x58\x98\x36\xb0\x93\x5c\x08\x4a\xe8\xe7\x45\xcd\x0b\x78\xec\x49\x34\x64\x17\x1a\x24\x48\xea\x1e\x61\xf2\x20\x69\xa3\xa3\x7e\x5c\x8e\xbb\x5f\xa7\xb9\x17\x95\x76\xce\x60\x5e\x18\x77\x4e\x99\x97\x3f\xa0\x85\xc8\x9f\xcf\xdb\x12\x7c\x7e\x53\x19\x82\xdd\xb5\xcc\x5e\x8c\x71\x07\x9c\x98\x20\xb9\x17\xf5\x7f\x9c\x16\x83\xf4\xb0\x62\x51\xd4\xf0\x71\x62\x50\xf4\xde\xd9\x69\xea\x45\x24\xb3\xd3\x9b\x80\xde\x2b\x3d\x1f\x99\xbb\xcf\xd0\x68\xc1\x87\x39\xb1\x3b\x32\xe6\x44\x2f\xb9\x9d\xf0\x43\xc3\x36\xce\x87\xdb\xcc\x48\xba\x54\x5d\x6a\xc6\xaf\x9d\xb8\xe7\x5a\xf4\x09\x9b\xc2\x8a\x7f\x3e\x16\xec\x96\xd2\x3d\x96\x0c\xf1\x87\x00\x12\x4b\x78\x05\x12\xbd\x1a\xf5\xaf\x41\x91\x52\x7c\x55\x55\xed\x0c\x25\xa6\xfa\x42\x16\x0b\x99\xd1\xeb\xfc\xec\x69\xa2\xdb\xb1\x06\x12\x1a\xe4\xf8\xde\x12\x35\x2e\x08\x0f\x9e\xf9\x60\x4f\x6b\x05\x33\xc2\x45\x12\x03\x2d\x25\x17\x57\xfe\xbc\xfd\x76\xa1\xda\x8c\xc6\xfc\xae\x83\xe3\xb4\x7c\x06\x4a\x90\xb3\x0b\xb3\xa6\x11\x4c\x97\xb5\x81\xd9\xdc\xeb\xd0\x58\x97\x79\x3e\xb1\xbf\xda\xa9\x18\xdd\x6c\x7c\xd3\x91\x8d\x1f\x3c\x87\x89\x67\x32\x24\x72\xfa\x2e\x42\x58\x54\x9d\xae\xb8\xf3\x07\x8c\x2f\x42\x58\x3c\xf8\x97\x05\x9d\x48\x87\xdd\x2e\xaa\x38\x8d\xc3\x16\x6a\x7a\x88\x74\x17\x72\x41\x91\xb4\x5d\xd8\x3b\x55\x71\x2e\xf2\x2f\xef\x93\xff\x0d\x95\xbb\xc2\xe6\xc9\x91\xa7\xc8\x56\xed\xe0\xfb\x95\x41\x28\x2c\x8a\x57\x68\x4f\xc3\x17\xec\x34\x9c\x47\xea\x28\xee\xc9\x30\x4b\x32\x2d\x9b\xa6\xf9\x32\x84\x45\xab\xf1\xe5\x65\x07\x69\xfc\xe5\x65\x07\x23\x44\x2e\xe3\x59\x8c\xfe\xb8\x54\xa5\xe2\x59\x62\xee\x2e\x14\x25\x2c\xa8\xe9\x85\xd5\x53\x49\xff\xf2\x1e\x44\x80\xd5\x34\xcc\x01\x57\xef\x3e\x18\x24\x72\x15\x13\x62\x30\x49\xee\x3b\x68\x28\xbd\x8a\x95\x7f\x7c\xe6\xf0\x4d\x9f\x2d\xa2\xef\x10\x24\x34\x80\x90\x5d\x35\x52\x1d\xf2\x2c\xf7\x05\x0a\x16\x83\x82\x0b\x5d\xe4\x2d\xd0\xd3\x79\x91\xab\x80\xba\x08\xed\x22\x7a\xc6\xdb\x09\x17\x91\xa4\xc6\xa3\x5c\x5c\x6e\xf0\xf2\xe8\x85\xe5\x53\x2b\xe8\x45\xec\x4c\x77\x31\x58\x3e\x25\xdd\x17\xf5\x89\x3b\x42\xf0\xd5\xc0\x17\x61\xd4\xe0\x56\xa2\x4b\x18\x32\x1d\xa0\x49\x7d\x45\x8b\x76\x12\xa8\xeb\x73\xc0\x9e\xa1\x11\x70\x66\xb1\xb9\x12\x87\xa7\xa1\x1f\xf8\x1a\x19\x9b\xbb\x10\xba\xf1\xaf\x4e\x00\x2d\x32\xfb\x15\xba\x23\x9a\xc0\x45\x44\xce\x70\xaf\x48\xc5\xb4\xa2\x23\x45\xd8\xe9\xcb\xc5\xcc\xd9\x1d\xdd\x8e\x2a\xbe\x57\x17\x04\xb6\x06\xf4\x6e\xd5\x50\x30\xf7\x60\x19\x5d\x23\x06\x71\x6d\x90\x64\xf4\xed\xc2\x05\x69\x86\x80\x0b\x55\xb3\x4f\x01\x1e\xaa\xa6\x04\x21\xc4\x9d\xe9\x67\x12\x7f\xdb\x4f\x8f\x96\x1d\x18\x5b\xaa\xa9\xfb\x9a\x6a\x25\x90\xa0\x8b\x3b\x7e\xa6\xfb\xbd\xa6\x71\x1a\x2e\x91\x7a\xef\x41\x15\xc8\x9b\xd4\xd1\x0e\xaf\x25\x9a\xda\x82\xa0\x53\x6f\x04\x5c\x2b\x46\xf7\xab\xe8\x8a\xd1\xbd\xbe\x27\x1d\xbe\xac\x9c\xe0\x11\x0d\x1d\xd4\x0d\xf9\x28\xd9\x48\x93\xcc\x75\xe4\x89\xfb\xa8\x3c\x88\x3e\x1f\x33\x67\x32\x77\x9c\x8e\x5a\xa9\xae\x8f\x20\x12\xa6\x1f\xed\x9c\x00\x1b\x8b\xe4\x70\x8a\xa6\x50\xd4\x1a\x7d\x6d\xcd\x36\x9b\xb5\xec\x3a\x63\x51\x7c\xa5\xdc\xe0\x3a\xcc\xa7\xa8\x92\x7b\x85\x92\xeb\x86\x9e\xee\x95\xcf\x70\x66\x74\x8d\xeb\xb4\x5a\x9b\xad\xb5\x4d\x32\xd9\xd3\x39\x39\xb4\x40\xf7\xef\x20\x09\xf2\xea\x85\xcb\xb1\xa3\x50\x5c\x72\xfb\xef\xaf\x71\x5c\x5e\x8c\xd0\x9c\x7d\x5d\x12\x24\x8f\xa9\x29\x96\xa7\x34\x38\x8c\x8d\x88\x18\xd7\x1d\xc8\xc1\xe2\xf1\x10\x9a\x6d\xfe\xba\x03\x7f\x99\x02\x61\x34\x5e\x89\xb6\xfc\xa0\xa9\x3d\xae\x27\x04\x71\x5a\x10\xde\xa9\xdf\xe4\x7a\xec\x09\x60\x3d\x08\xe5\x9e\x10\x2e\xd6\x75\x8f\xd1\x23\x31\x14\x10\x0f\x49\x8e\xdc\xd9\xcd\x6e\x4b\x10\x06\xd3\x0f\x6a\x90\xbe\x5e\x42\xe1\xc4\xca\xcd\x55\x8b\x79\xe4\x2f\xfc\x7a\xdd\x93\xf3\x52\x0b\x0f\xc3\xd5\xf5\x3a\xda\x5e\xdb\x7d\xa8\x44\x42\x0b\x6e\x0b\x69\xbb\x37\xb7\x99\x01\x93\x5f\xb1\x37\xac\xe1\x3e\xd4\x19\xaa\x3f\x84\x53\x64\x3f\x7b\x8b\x81\x3a\x1f\x8d\x62\xba\xb5\x23\xec\xdd\x61\x0b\x64\xfb\x6f\xae\x37\xf4\x69\x0b\xb6\x93\xbd\xb8\xc3\xc7\xd7\x78\x66\x6b\xd9\x89\x1b\x7f\x9f\xc9\x75\x6f\xe2\x60\xcc\x82\x7d\x63\x2d\xa4\xd8\x48\xbb\x93\xd3\x63\x46\x49\x14\xee\xbe\x40\x57\x91\x6a\xef\x1c\xd3\x63\x4a\xf2\x3b\x2c\x18\xb7\x79\x8b\x55\x53\xef\x70\xf1\x45\x13\xe3\x9a\xec\x38\x13\xe1\x55\xfd\x4a\x0f\x96\x7f\xd7\x4c\xc5\x09\xa0\x52\xf0\x7e\x61\x79\xc5\x72\x71\x88\x69\x77\x09\x2c\x64\xc8\x12\x58\x04\xa8\xf4\xac\xa9\x91\xdd\xd4\x04\x50\x3c\xbd\xab\x94\x56\x20\xd6\x98\x0b\x3d\x9b\x71\x58\x6f\xe7\x1d\x16\x43\x38\xd2\xed\xbd\x3a\x43\xda\x6e\x82\x5e\x4c\x68\x73\x73\xc7\x4e\x12\x7e\xcb\x7a\x30\x8f\xdc\x9b\xdd\x94\xe5\xfe\x37\x25\xf1\xe1\x0f\x80\x08\x7b\xca\xad\xa3\xad\xfa\x91\x9c\x77\xf8\x83\xcc\xa7\xd8\x82\x21\xc0\xc9\x3b\xea\x6a\x0b\xd4\x1e\x08\xc0\xdc\xbd\x9d\x2e\xff\xb8\xb9\x77\xae\x2a\x7b\x5b\x85\xbd\x09\x07\x79\xc6\xf2\x07\xbc\x70\x08\x2a\x37\xce\xac\x43\x90\x04\x9b\x70\x26\x2a\xc5\x20\xf8\x2d\x9b\xc0\xca\x72\x9b\x55\xc6\x20\xc4\xdb\xbb\x77\x9e\xfe\x3b\xee\xdb\x41\xf3\x6f\x72\xcc\x78\x7c\x6f\xe3\x29\x0d\x4f\xbc\xb9\x3a\x6e\x74\xca\xcd\x1d\x3b\x2f\x81\xdd\xc1\x31\x86\x1f\xc9\x76\xc5\x58\x2e\xd6\x99\xc7\xfa\x96\x7b\xb8\x56\x2e\x7f\x9b\x14\xe8\x5e\x12\x1b\xd1\x37\x4c\x98\x02\x6e\x89\x80\x22\xb9\x1e\xac\xc0\xc6\x25\x99\x8f\xce\x64\xb0\xeb\x5b\x93\xde\x6d\xde\xfe\x40\x62\x9c\x5a\xca\xc7\xf7\x0a\x60\xb0\x82\x8f\x52\x97\xf8\xf1\x11\x18\x3e\x6b\x3b\x84\xa1\xdc\x1f\xf1\x0e\x41\xe8\xfe\x44\xc7\x2c\x68\x73\x91\xaa\xd0\x7a\x13\xc5\x62\x72\xae\xdb\xfa\xb3\xda\x8a\xef\xd3\x8a\xe1\x7e\x65\xe6\x19\x8d\xdb\xf7\x29\x64\x19\x84\xd8\x95\x03\x6b\xca\x0d\x23\x18\xc9\xd6\xce\x9d\xe9\x5e\x01\x32\x1a\x5c\xea\x5b\x52\x21\x14\xbf\x81\x1c\x7e\x5f\x3a\x13\x9b\x2f\x58\x12\xa4\x4e\x64\xbd\xa3\xf8\x6e\xbb\x2f\xe9\xad\x5b\x71\xa3\x97\x8a\x12\x5e\x8e\x53\xe7\xbc\x6f\x40\xe2\xa4\x88\x3d\xa1\x26\x7b\xbb\xb1\x6c\x0e\xac\x3a\xb7\x41\x99\x8a\x04\xf7\x6d\x38\xa9\xe7\xe7\xd6\x14\xed\xa6\x92\x31\xd7\x1c\x7f\x37\x5a\x60\x80\xea\x36\x19\x0d\x4b\x0a\xf3\xa7\x47\x14\xf3\xa7\xb6\xfe\x9b\x48\x12\x2b\xb7\xb5\x9b\x2b\x05\xa6\x9a\xbf\x9f\x00\x27\x5d\x61\x18\x5d\x62\xca\xe3\x2d\x68\x96\x64\x6c\xa6\x9b\xf1\x58\x00\xc6\x5e\x25\x4e\xa2\xc2\xe3\xfc\x7c\x26\x44\xc8\x11\x22\xc7\x3e\x1d\xbd\x82\xc3\x67\x12\x3e\x38\xa3\xcd\x97\x8a\x16\x82\x9b\xfc\x75\xc6\x55\xde\xef\xa0\x60\x8b\xcf\x01\x19\x66\xfa\x06\x01\xf1\x17\xf5\x63\x7b\xa2\x56\xac\xb3\x78\xbd\x1c\xe5\x68\xe6\xf9\x00\xae\x4f\x58\x63\x21\x13\x54\xf0\xcd\xc6\x6e\x52\xc0\xb7\x18\xd2\xf2\x90\xee\x56\xbf\xc9\x63\xc1\x1e\x6d\xff\x54\xea\xad\x23\xdb\x00\xec\xe0\xa0\x51\xa8\x77\x7f\x44\x0b\x18\xd9\xc8\x3e\xc7\xa9\x9d\xbc\x98\x01\x9e\x16\xdc\xc7\x8b\x98\x4e\x2a\xec\xd6\x81\x70\xfe\xc0\xa5\x8c\x4a\x78\x92\xc3\x31\xf1\x64\x49\xce\xc5\xb3\x12\x38\xc8\xf1\x78\xcb\x40\xb4\x79\xc8\x13\xa7\x85\xf8\x31\x7d\xad\x81\xce\x94\xd8\xcd\x2a\x9b\x16\xd5\x55\xb6\xb2\xa8\x6e\x44\x8a\x3e\x24\x63\x31\x65\xea\x83\x52\xa5\x01\xde\x02\xbb\xcb\xd8\xe6\xa7\x90\x5d\xf6\xf0\x87\xe6\x0f\xb4\xb6\x7a\x1f\xbb\xf7\x14\x6b\x90\xd8\x93\x36\x13\x21\x88\xb5\x57\x1d\x89\xea\xb9\x75\xa0\x86\x50\x3d\xb7\x0e\xf4\x31\x8a\xe7\x16\xd9\x2e\xc5\x73\xab\x69\x17\x1f\x43\x35\x75\x04\x3c\x61\x05\x06\xdf\x9f\x8a\x44\xea\xbe\xc0\xaa\x8c\x9f\x7e\xc8\x53\x3b\xbe\xf7\x62\x50\x2f\xb7\x78\x91\x81\x7a\xb9\x7b\x18\x7a\x6e\x8e\xcf\xca\x5b\xec\x19\xe3\x37\xad\xec\xd5\x17\x75\x7c\xb7\xb9\x79\xef\x0b\x3d\x8d\xd2\xb8\x75\x88\x56\x9b\xc3\x15\x43\x21\x2c\x93\x4b\x95\xee\x46\x99\xdc\xd2\x6c\xdc\x9d\x31\x63\xf7\xd8\x40\x3f\x52\x49\x86\xa7\x3d\x23\xf6\x1c\x30\x92\x61\x36\xe0\x3e\xec\xca\x67\x4e\x96\xb8\x60\x11\x1a\xe3\x8c\x1f\xb2\xae\x69\x88\xb4\xc6\xae\x96\xf1\x07\xa3\xaf\x17\xc5\x1f\x6e\x1b\xac\xc3\xbf\x13\x10\x35\x6d\x4b\xe5\x95\xe6\x37\x54\xb0\x8c\xbf\xb3\x4e\x31\x64\x6a\x84\x42\xd6\x78\xa6\x15\xb3\x7d\x86\x4d\x42\x1e\x1f\x6e\xf3\xe9\xc1\x7c\x36\x97\x2c\x9a\xf3\x28\xc3\x9b\xf5\x4c\x52\x86\x77\x77\xe4\x0b\x54\x57\xe7\xe0\x33\xb1\x97\x08\x3e\x0c\xb1\x54\xc9\x6d\xd4\xd5\x1d\xd6\x2a\xa0\xac\x6e\x49\x9e\x43\x99\xdf\x61\x63\x13\xb4\x4d\x1b\x6b\xe9\xe3\x99\x0b\x07\x96\x10\xa0\x7a\xee\x1e\x8d\x05\x61\x59\x8d\x3c\xd7\xd6\xcf\x1d\x7a\x67\x2c\xa0\x6b\x31\x98\x87\x08\x8e\xc3\x6d\xfc\x04\xaa\x00\x1b\x14\xa9\x08\x25\x7e\x3e\xe6\x8b\x06\x80\x5a\x63\xe3\xb8\x5a\x73\x17\xe6\xf6\xa0\x48\xa5\xc0\xb4\x08\xda\x80\xcc\x3f\x28\x4c\x1a\xfb\x28\xb4\x9b\xb5\xc6\x3e\x5a\x5a\xa5\x46\x27\x15\x8e\xa7\xdf\x2c\x87\x60\xea\xa7\x42\x24\xcc\x98\x1a\xba\x45\x39\x8c\xb2\xb9\xfb\x2b\xc6\xe3\x26\xde\x10\xd1\xe0\x8d\x87\xe8\x7f\xc1\x65\x9b\xcf\xd0\x5d\xc3\x69\x1e\xab\xd6\x19\x00\xfc\x5c\xb1\x4d\x36\x17\x2b\x58\xf8\x2d\x74\x81\x88\x21\x1b\xfa\x1d\x1f\xd5\x28\xbd\x78\xcf\x1d\x7e\x66\x9e\xe1\x94\xee\xfe\x1d\xeb\x60\x8c\x3b\x06\xb4\x2f\x38\xb3\x6b\xba\x63\x70\x07\x7c\x37\x2e\x88\x9e\xe4\x3e\x51\xc1\xa7\x46\x6e\xd5\x64\x41\x8d\xdc\x6a\x4c\x39\x25\x72\xab\x7a\xf0\x63\x86\x57\x4d\xb8\x94\xc2\xcd\x91\xda\xfc\x79\x90\x2f\xc4\x5b\xcc\x99\x66\xa8\xa2\xe2\x6d\xb5\xb0\x17\x45\x6e\xab\x09\x8d\x9e\x97\x03\x8d\xcd\xc0\x12\xb7\x5a\xf1\x1f\x43\x2b\x3d\x84\x2f\x10\xef\x3e\x1b\xc3\xec\x94\xac\xb8\x3f\xfc\x01\xab\x90\x66\x24\x6a\xdd\x16\xa3\x7d\xac\x75\x3b\xf4\xa6\x51\xeb\xb6\x8e\xfe\xad\x8e\x4b\x1d\xdc\x62\xf8\xfd\x6b\x35\x1a\x4a\x93\x36\xea\xe0\x16\x6d\xe2\xd4\xc1\xdd\x3f\x34\x5e\x58\x55\xf7\x23\xd2\x1a\x43\xe2\x5e\xe3\x3c\x75\xc9\xbe\x5c\xf1\x8b\x38\xef\x57\x07\xa7\x2e\x3c\xab\xe5\x6a\x77\xa7\x5a\x6e\xf1\x08\xbd\xf2\x54\xf4\x1f\x8a\xe5\x56\x4a\xdc\x36\x6a\xe5\x56\x23\x8f\xac\x95\x1b\x51\xde\x14\xcb\xcd\x5e\xfb\xb4\x58\xae\x57\x3f\x5e\xf9\x2e\xea\xd2\x6b\xfc\x88\xf3\x4e\xdc\x59\x38\xfc\x9e\x50\x1d\x04\x23\xca\xe6\x56\x2f\x96\x52\x35\xb7\xa8\x17\xbc\x49\xf2\xc8\xc0\x91\x1c\x16\xdc\x7c\xb9\x48\x41\x15\xed\xf6\x7a\x77\x42\xb7\xe5\xcb\xa5\xbf\x43\x58\xe6\x84\x3c\xc8\xdf\x73\x60\x36\x5d\x65\x8d\x31\xcd\x17\x29\x8a\x60\x22\x19\xbd\x46\xda\xd7\x4b\x15\x50\x84\x37\x32\xc2\x30\xc1\x2c\x41\x41\xba\x79\xc9\xb2\x66\x00\xda\x4b\x0d\x3a\x6b\x08\xbe\x5a\x45\xf5\x48\x53\xb0\xb7\x6a\x68\x7b\x0d\x36\x89\x89\x68\x21\x45\xc2\xa0\x46\xef\xd4\x36\x4d\x8d\xde\x72\xb8\x22\xec\xa3\x11\xb1\x1c\x35\x7a\x21\x0e\x94\xe8\xad\x63\xf8\x4c\xa4\xb6\x6c\x37\xea\xf2\xca\x86\xa8\xcb\x5b\x54\x42\xac\xcb\xdb\x4d\xab\x48\x61\xde\xbc\xaa\xdd\xea\xb7\x70\x49\xd8\x4e\x23\x2e\xfd\xc5\x78\x6a\xc8\xf2\x5b\x03\x52\x34\xa9\x54\x03\x70\xcb\xbc\x7b\xa8\x87\x97\x2a\xbd\x55\x2f\xcb\x8b\x42\xab\xc6\xf2\xa2\xc3\x1a\x98\x6b\xbd\xde\x65\x64\xf3\xab\x94\x20\xe2\xb4\x18\x1b\x88\x34\xc7\x66\x19\x5b\x89\x2d\x16\x06\xb0\x30\x6f\xd7\xa5\xf6\x86\x24\x80\xc4\x46\xd1\xdd\xaa\x19\xf7\x35\xa7\x6b\x40\x01\xed\x76\x74\xc7\x60\x9b\xb0\x31\xbc\x56\xb3\x8b\xb5\x72\x75\xd1\x60\x96\x97\x9c\x6c\x5e\x39\x78\x2d\x6c\xa7\x6f\xda\x42\xbb\x11\xbc\xfe\x1a\x0b\xba\x96\x7d\x21\xaa\x4e\xbf\xc2\xde\xd0\x7c\x36\x57\x14\xb3\xe5\xea\xa2\x22\xef\xcb\x85\x8e\x43\xa0\x75\x78\x9f\xf0\xa7\x34\x8e\x61\x55\xaf\xe1\x9f\x01\x0f\x44\x0d\x0d\xa0\xd4\xe5\x8d\x8c\x73\x2f\x52\xc7\xb0\x84\x02\x35\x7a\xab\x85\x57\x5e\x92\xb3\x49\x76\x5f\x6f\x80\xe8\xee\xa5\x48\x6f\xb1\x66\x0e\x35\x7a\xf7\x0f\xb6\x00\x5b\xaa\x1f\x05\xb6\x00\xc0\xe1\x21\xf3\xd8\x2b\x61\xc0\xd5\x5e\x24\x0c\x03\xe0\xac\xde\xdb\xbf\xaf\xa1\xf6\xaa\xb0\x23\x7e\x51\xd8\xb7\x9a\x1d\xce\xc2\xbe\xd3\xb3\xa1\x4b\x5a\xda\xa2\xee\x8e\xb4\x69\x59\x5f\xe3\xbb\x5e\xf3\xc6\xc6\xa2\xc8\x2a\x60\xa1\x29\xca\xfa\x96\x25\xfc\x4d\x98\x0f\x1f\xb3\xaa\x6f\xd2\x3b\x4c\xb1\xde\xbd\x26\x5a\x13\xa3\xa4\xab\xcf\x62\xbd\x8a\x2e\x14\xeb\x2d\xd4\xe1\x6d\x16\xeb\x35\x38\xfc\x35\x5a\x49\xf7\x2d\x05\x7a\x8b\xe9\x30\xa9\xcf\x9b\x8a\xfe\x14\x0a\xf4\x56\x2b\xa1\xbc\x5e\xaf\x0c\x40\xaf\x98\x88\x5f\x71\x02\x50\x1b\x5e\x25\x1f\x31\x04\x6b\xb2\xb7\xce\xdf\x4f\x6c\x32\xad\x3f\x81\x84\x7e\x25\x9d\x77\x4d\x1f\xa1\x43\xb7\x9f\x85\xf0\xee\xdf\x91\xe5\x0e\x5b\x7b\x32\x90\xfc\xdf\x8f\xbe\x05\xe9\xf3\x07\xd4\x5b\xfe\xa0\x6b\xc5\xe7\xd7\x21\xe8\x96\x2b\x2c\x86\x04\xbc\x27\x04\xdd\xdd\x47\x1e\x2a\x5e\xd8\xa0\xc2\xef\xd4\xdb\xf4\x9e\x71\x44\xe9\x0a\x77\x73\x12\xe6\x18\x08\xcc\xe4\xfd\x6e\x81\x68\xe8\x4e\xb0\xbe\xaf\x86\x73\xeb\xfb\xc6\x8d\x0b\x0a\xfc\x16\xad\x21\xef\x15\x44\xc7\x17\xb1\x1b\x4b\xd8\x6b\xce\x02\xfd\xb9\x51\xd4\x57\x2b\xd5\xab\x19\x41\x5c\xb3\x8e\x9f\x9b\x8c\x78\x63\x02\x67\x0b\xf1\x9a\x03\x80\x22\xbb\x91\xa3\x80\x1a\xbb\xd5\x58\x92\xf7\xc6\x67\x87\x60\x40\x8d\xdd\xac\x24\x4d\x8d\xdd\x14\xb7\x3a\x5e\xef\x8d\x18\xb9\xf1\xe2\xe8\x35\x61\xe8\xfb\xc4\x64\x81\xe0\x13\x93\xf5\x17\x35\x0b\x8f\x35\xd9\x04\x8c\x26\x7d\x4d\x4d\xdf\x8a\x3f\xdc\x36\x01\x3e\x08\x3e\x21\x2f\x20\xf8\x18\x97\xfd\x1a\x8c\xaa\x03\xf5\x35\x7b\x9b\x81\x07\xd6\xe2\xd5\x3d\xfc\x9a\xc9\x2d\x90\x15\xd9\xc7\xd4\x8c\xaf\xb5\xf3\xbc\x19\xf2\x6e\x79\xa7\xce\x68\x21\x16\x3b\x79\x33\x10\x48\x91\xc8\x40\x40\x5e\xa5\x7e\x98\x5d\x80\x5c\x7e\x3d\xca\xe9\xe2\xa4\xea\x47\x18\xa0\xbb\x2f\x1b\xef\xb9\x1b\xd0\xa9\x9a\x5b\xf1\x55\x76\xaa\xe6\x56\x12\x69\xf4\x9f\x85\x72\xe9\xd6\xec\xf2\xdc\x0d\xe9\x14\xca\xdd\x3d\xf9\xd2\x68\xc1\x78\xc9\x28\xc8\xc6\xb3\x67\x63\xc3\xad\x47\xd5\x5c\xaa\xbc\x76\xaa\xe6\x56\xae\xe4\x77\xaa\xe6\xee\xaf\x6c\xce\x62\x93\x2d\x10\x82\x92\x5d\xe1\xfe\xdb\x04\xb0\x5b\x27\x37\xb5\x4a\x4f\x68\xfd\xb3\x7f\x17\xa9\xdc\x2d\x9a\x4b\xf2\xa6\x4e\xd1\xdc\xbd\x23\x0c\x63\x76\x57\x04\xbd\x4e\xa9\xdc\x84\x79\xba\x53\x2a\xb7\x72\x4b\xb0\x53\x2a\x37\x77\xd7\x8e\x08\x42\x60\x7e\xb7\x52\xee\x74\x5e\xb8\x6f\x89\x39\xee\x54\xca\xad\xdc\xf1\xed\x87\x37\x3f\xf1\xc9\xf5\x83\xd0\x57\xac\x7d\xfd\x20\x1b\xfd\x74\x81\x64\x79\xf5\xfa\x50\x3f\x2c\xdb\xc7\xd5\xd8\x7e\x50\x90\x8f\xa4\x41\xfd\xb0\x84\x7f\xab\x6c\x1a\xd2\x01\x77\xa6\x3a\x05\x71\xeb\x2c\x3e\x17\x9e\x6d\xc0\x1a\x32\xbd\x86\xe9\xbb\xdb\xd8\x63\x50\x19\xdc\x04\xac\xc5\x7d\xae\x8e\xc7\xf2\x30\x83\x53\x3b\xa3\x5b\x11\x77\x10\xb5\xd1\x0f\x12\xc4\x4f\x9f\x11\x1b\xb0\xc4\xf5\x43\x3b\x38\x7e\xe3\x7e\x10\x6e\xb6\x04\x94\xd1\x66\xdc\x42\xec\x54\xc7\xcd\x55\xbc\x40\x6a\x98\xf1\xec\xd0\x0c\xe7\x05\x92\xc6\x64\x9b\xe8\xc9\x37\x5d\xf4\x04\xca\x3d\x4e\x3c\x9d\x76\x6b\x50\x77\x5f\x84\x81\x5f\x71\xfa\x5d\xc4\x96\x19\xf2\x72\x16\xdd\x73\xe2\x69\xe0\x02\x09\x09\x49\xfb\xe1\xc5\x4f\xa7\xd4\x9d\x12\xd3\x20\x23\xd0\x14\xb7\xb1\xb2\x13\xfe\xd5\x0f\x33\x02\x1d\xac\x13\x99\x81\x4b\x18\xfd\x30\xd5\xc1\xa0\x9f\x11\x80\x61\xe4\xc1\x2d\x68\x0f\x0c\x62\xc2\xcf\x06\xca\xad\x8d\x19\x0d\xc9\xbe\x27\x97\x8b\x21\xd3\x33\x32\x25\x2e\x8d\x0d\x86\x81\xcf\xf8\x88\x85\x7a\x2e\x26\x9e\xad\x46\xb7\xc6\x94\x11\x31\xd3\xa9\x97\xbb\x5f\x40\x15\x72\xb5\x92\x0d\xa3\x1f\xa6\x6a\x15\xf5\x29\xcc\x8f\x7d\xbf\x1f\x93\xd0\xc7\xc9\x4a\xb9\x49\x32\x45\xd2\xb0\x43\xb8\x43\xa6\x64\x6d\x8e\x47\x4a\xd6\x29\x0e\x68\xa1\x6f\x76\xab\x85\xfe\x60\x38\x73\xb5\x76\xb7\x68\xc5\xa4\x58\x1f\x01\xc7\xd3\xb3\xb6\x9c\x08\x93\x8d\x1c\xf2\xdd\x31\x62\x74\xa6\x62\x52\xa1\x4a\xeb\xcd\xc2\x4b\x90\xb8\x30\x5e\xb8\xdd\x38\x81\x9b\xe7\x28\x58\xb8\xa0\xb2\x12\x4e\x8b\x26\xa8\xa6\x83\x31\x3e\x6c\x4d\x74\xab\x0a\xe7\xa9\x82\xb7\x17\x49\x24\x46\x8d\xe4\xce\x9c\x0a\xd0\x4e\xd7\xf0\xe6\xee\x99\x3c\x33\xa2\x1d\xdd\x92\x3a\x61\x8a\x2e\x64\x1a\x9a\x6e\x06\x65\x71\xa6\x30\xb0\xa8\x9e\x58\xe1\xfd\x94\x26\xad\x25\x78\x6c\xb6\xef\xa4\xbc\x7e\x98\xc4\xb5\x44\x2b\xee\xce\x0c\x9f\xd9\x43\x77\xea\x54\xb0\x14\x8d\xbd\xbc\xda\xa4\xd0\x97\xe7\x35\x5e\xb8\xcc\x2c\x7b\xe0\xf2\xca\x74\x3f\xa9\xa0\x93\x05\xd0\x15\x00\xa2\x5f\x7d\xc5\x41\xa7\xb8\x89\xca\x5d\xf9\x4e\x05\xde\x3a\xc5\xc4\x3b\x78\x08\x5d\xdd\xe2\x2b\xdb\x79\xbb\x46\x9f\xb5\x77\x78\x18\x49\x36\x74\xb8\xa4\x3b\x86\x60\x3c\x0c\x21\xdd\xf5\xdd\x81\x26\x8e\xa7\xac\xe0\x33\x69\x1c\x3c\x8e\x8f\x8c\x9b\x06\xd8\x41\xa6\x27\xf3\x09\x18\xd0\x20\x9c\x04\x2c\x3b\x0c\x21\x9d\x49\x3d\x20\x86\x64\x47\x79\x62\xf8\xf7\x00\x27\xad\xcd\xe4\xee\xf1\x50\x36\x18\xf4\xf4\xe2\xa7\x14\xdb\x5e\x47\x60\x1a\x18\x48\x02\xbb\xdf\x38\x1c\xf4\xaa\xd5\x3f\x68\xea\xcb\xc5\x4d\x49\x24\x5e\xea\x80\x9f\x52\x82\xc4\xcf\x4c\x0e\x2d\x5e\xd4\xf6\xe0\x25\x94\xdb\xad\x72\x80\x44\x08\x36\xa6\xa7\x9e\xcc\xf7\xce\x15\xb1\x4e\x1d\xde\x2a\xfc\x28\xbd\x5b\x65\xf3\x49\x0f\x00\x8e\xc9\x4e\xe5\xdd\x81\x54\xd2\x29\xbc\x5b\x3c\x27\xe9\x50\x88\x8a\x21\x9c\xc8\xf0\x2b\xc1\xcf\x57\x3a\xbc\x89\x73\xeb\x29\x61\x29\x70\x0c\x45\x09\x80\x93\x2c\xc0\xcf\x95\xe9\x9e\x52\x0c\xce\x32\x92\x48\x51\xfd\x0c\x35\xd7\xa9\x13\xf2\x9d\x8a\xcf\xca\x4a\xcd\x17\x77\xa6\x3a\xc8\x0b\x25\x60\x56\x19\xb7\x15\x14\xc2\x92\xbc\x28\x3d\x3d\xe5\x80\x08\xeb\xa0\x18\xde\x04\x73\x12\xd1\x5b\x13\x02\x91\x22\x60\xab\xfb\x83\x2e\xb3\x68\x0e\x7b\x00\x75\x52\x61\x08\x37\xc0\x1a\xbe\xcd\xe6\x64\xfd\x9b\xec\x7e\x32\x2a\xab\x39\x46\x44\x65\xb9\x05\x05\x61\x9e\x83\x18\x95\x7a\x9b\x40\x8c\x12\x34\xd5\x5f\x18\x70\xb0\x0e\x72\x3f\xcc\xe9\xdf\x91\xf2\x5c\x46\x81\x8d\x82\xaa\x96\xf0\x1d\x04\xd1\xf5\xa4\xf4\x30\x99\x61\x75\x52\xfe\x3d\x26\x65\x0b\x6d\xa3\x1c\x38\x0a\xf7\xd6\xe9\x6e\x20\x4a\x64\xe1\x5c\x63\x82\xcc\x43\x49\xc2\xc9\xe2\xa6\xf0\x04\x24\xf3\xba\x4f\x7b\x95\x1a\xf9\x3d\x89\x5d\xa0\x4c\xd4\xe4\xad\x54\x12\xee\x94\xe1\x2d\xfd\xdb\xda\x1a\x3d\x61\x5c\x20\x90\xba\xa7\xa6\xf7\xda\xed\x50\x80\x58\xf4\x6c\x8a\x40\x22\xf6\x3a\x85\x78\xcb\x70\xc8\x2e\x83\x60\x4d\x3d\xc8\x1f\xf3\x22\x48\x7d\x2e\x7f\x20\x4d\x6a\xf2\xef\x1c\xcc\x6c\x47\x9c\xbf\xc5\xfa\xba\x68\xef\xee\x73\x9f\x74\x39\x8d\xee\x34\xd8\x18\x84\x03\xe9\x06\x75\x77\x2b\xa5\x74\x7a\xf2\x9a\x69\x13\x2b\xb0\x27\x50\xdf\xbd\x53\x83\xb7\xce\xe5\xdf\x9d\x91\x8d\x29\x73\x93\x7c\x66\x5b\x26\x33\x0a\x9b\x83\x68\xa0\x1b\xa3\x08\xff\x11\x27\xc3\xae\xa4\x0f\x9e\xea\xc1\x64\x93\xcf\x46\x3c\x7a\x78\xb9\x8c\x1a\x74\x00\x7b\x00\xa6\xb9\x4e\x49\xdd\xba\x10\x67\x93\xc9\x04\x51\xf0\x7a\x32\xa9\xbb\x32\x87\x75\x74\x95\xea\x29\x9d\x5b\x0f\xb8\xa2\xa5\x73\xd7\xe1\xdf\x2b\xcf\xfe\xbd\xf3\xcc\x64\xf5\xdd\x77\xd1\x6b\x11\x12\x2c\x71\x41\xbb\xa7\x16\x4b\x4f\xcb\x69\xf8\xf7\x80\x3e\x00\x59\xb1\x3a\xbb\x55\xa2\x82\xdb\x52\x61\x77\x7f\x46\xfb\x8f\xc9\x19\x69\x1f\x7e\x0d\xa1\xf3\x81\xc3\xc1\xe9\x53\xf8\x32\x9a\x5f\x6d\x12\xa4\xc6\x94\x3e\xea\x58\x6e\x3e\x01\x62\x0b\xee\x4e\x8d\xdd\xba\x24\x92\x06\x88\x75\x01\x82\x9f\x9f\xf2\xab\x3d\xe1\xda\x8f\xa3\x64\xcc\x38\x62\x75\xd4\xcf\x2d\x1e\xdd\x53\x6b\xb8\xfb\x87\x9b\x7f\x09\xce\xd3\x04\x58\x22\x2a\xec\x1c\x83\x4c\xa7\x64\x6e\xaa\x71\x9a\x88\x07\xa7\x20\x40\xa7\x32\x6e\xe5\x4a\x74\x4f\x24\x9f\x38\x1c\x1b\x77\x07\xb5\x50\xba\x45\x72\x03\x0f\x2e\x47\x63\x64\xae\x2f\xe1\x5a\xee\xd4\xc8\xad\x0b\x85\x8a\x1a\xb9\x75\x79\x2a\xa2\xfc\x1d\xfd\xdc\x01\x4b\x06\xbe\x35\x76\x48\xfb\xee\x00\x87\x2f\x0a\x73\x9e\xcf\x3b\x76\x89\xe5\x99\x0b\xa2\x79\xa4\x1f\xdd\xaf\xd2\x48\xbc\x14\x0b\x71\x2e\xe9\xb4\x2f\x52\x1a\xa2\xb7\x97\x3b\x63\xe9\x96\x26\x19\x79\x02\xa0\x40\xdd\xf4\x4a\xcd\x23\x64\x6c\x76\x17\xa5\xc9\xfb\x70\xb8\xe5\xf0\xe4\x25\x40\x83\x27\x3b\xaf\xd7\x41\xfc\x88\xf3\x10\x0d\xa8\x57\xea\x9e\xc1\x9e\x97\xf4\xe4\x05\x58\x28\x55\x54\xa3\xad\x4b\xb2\x81\x9b\x82\x5c\xb8\x3d\xa1\xc3\x2f\x64\x3e\x2a\xd3\xd6\x95\xbf\x55\x6b\xb3\x17\xa9\xf0\x6b\x75\x6b\xd8\x26\xdc\x57\x9d\x22\xb6\x7b\xb9\x8b\x17\x75\x1d\x48\x52\xd6\xeb\x50\x6d\xc2\xc4\x8a\x2d\x98\x58\xf1\xef\x84\x54\x00\xd1\x9c\xc8\x90\xe1\xf7\x14\x62\x21\x7d\x41\xb7\x72\x2d\x17\x55\x3b\x85\x6b\x27\xc1\x8c\xdd\xba\xb5\xab\xf8\xf7\xe6\x6e\xda\x11\x37\x71\x9b\x1f\x7d\x10\xd9\xec\x08\xb4\x2a\xfe\xfd\x72\x0d\xb6\xbe\x7f\x7c\xf5\x01\xc8\x73\x02\x54\xc5\x67\x32\x1d\x22\x71\x64\xfd\xfe\xdc\xae\xea\x19\x16\xbe\x8a\x3f\xe8\xb4\x81\xb2\xe5\xac\x11\x06\xa1\x92\x4a\xb7\x59\x85\x8d\x42\xb7\xbb\x39\xfd\x66\xed\x41\xf1\x15\xfb\x57\x7c\x3e\xfd\xca\x26\xce\x04\xc0\xa2\xcf\x77\xb0\x8d\x4a\xb7\x95\x30\xde\x9e\x2d\xe1\x42\xf0\x62\xcf\x64\x6f\x8a\x89\xc0\xdb\xcb\x10\x20\x5e\x06\xcb\xfe\xa0\x12\x2e\x68\xa9\xe1\x32\xe3\x07\x69\x18\xec\x39\x13\x44\x50\x70\x38\xf6\x4c\xd0\x75\xf7\x19\xd3\x40\x75\x22\x9b\xb9\x0f\x8a\x84\xf6\x6c\x9a\x42\xae\x8c\xf5\x6c\x5c\x9c\x0a\x51\xd6\xa3\x80\xeb\xa6\x67\x83\xe4\x54\x82\xac\x89\x3b\xa2\xc9\xfc\xf1\xd5\x03\x0a\xa4\x9f\x20\xc5\x46\xcf\x30\x74\x22\xd2\x7b\x36\xcd\xa1\x1a\x8a\xb5\x72\x53\xf4\x0a\xa4\x10\x32\xb2\x17\x6f\xf1\x53\xf4\xdc\xd4\xdc\x91\x6a\xb2\xd7\xd2\xba\xb3\xb2\xac\x9c\x38\xd2\x9c\x21\x74\x88\xfa\xba\x45\xc9\x89\xf2\xba\xbb\x39\x20\xf1\x62\x1a\x67\xdc\x8a\xba\x7d\x8a\x56\x0d\xb4\x12\x4b\x8c\x4c\xc0\x4c\xdf\xad\xa2\x8b\x51\xba\x53\x38\xb7\xe2\x89\xe9\xd6\xcd\x1d\x5d\x20\x60\x42\x58\x2e\xd6\x24\xf6\xdd\x05\x76\x08\x25\xfa\x42\x56\xf5\xef\x4e\x24\x52\x47\xd8\xad\x51\xca\x90\x56\xea\xe0\xa6\xe4\x44\xac\xab\x4f\x60\x73\xcf\x43\x6b\x19\x63\x0c\x81\xeb\x47\x0a\x96\xd3\x8f\x34\xa2\x0a\x2b\x12\xe5\x2f\xb8\x61\x36\x28\x1b\xb7\x40\xcf\x24\xca\x5f\xcd\x67\xa2\x02\x9c\x2d\x2e\x82\x2e\x26\x61\xf9\xc7\x30\xdf\x29\x90\x5b\x97\x98\x6e\x0c\x82\x03\x90\x50\xd8\x7b\x41\x9d\x3a\xb8\x95\x5c\x9d\x9d\x3a\xb8\x45\xcd\x23\x2f\x23\x1b\x5c\xea\xe6\xe2\x45\xfa\x67\x11\x5b\xed\x2b\xd9\x8b\x61\x6e\x85\x1c\xdd\x83\x6c\x0e\x89\xe9\x37\x5c\x5f\x11\x83\x97\x52\x7d\x6f\xdf\x12\x3d\xac\x02\x4b\xd8\x12\xb8\xa0\xd5\x2d\x63\x14\x50\x2c\x8a\x92\xb6\x88\xe6\xf9\x23\xe5\x9f\xbe\x70\x87\xd9\x0d\xdf\x0c\xba\x1d\x52\xb6\xd3\xdc\x6b\xfc\xfd\x94\x90\xc2\xe8\x28\x57\x5b\x0e\xd7\x6a\x7a\x08\x37\xc9\xfb\x5a\x71\xf6\x89\xc1\x5e\x82\xf0\xd4\x70\xcd\xf4\x48\x87\xb8\xdc\x48\x2e\x16\x2f\xc9\x40\x58\xd6\x45\x03\xf4\xeb\x85\xda\x92\x65\xcf\x82\x9f\x40\xed\x25\x04\x65\xcf\xa8\x04\x59\xf6\x3c\x6c\x0b\x95\x1a\xb6\x05\x39\x90\x05\x28\x4f\x6b\x7d\xc0\x9e\x8d\x45\xe0\xea\x61\xa7\x56\x6d\x5d\x62\xec\xcf\x52\xb5\x3c\x43\x3a\x45\x1a\x13\x46\x79\xd6\x6e\xeb\x3c\xd2\xe9\xed\xf6\x32\x89\xe0\xed\x42\xd8\xa2\xb5\x32\x3e\x8b\xd6\x2e\x4f\x91\x15\xef\xdd\x60\x62\xf9\x08\x86\xea\xf9\x0e\x0c\xf7\xe5\x04\xff\x9c\x92\x6b\x60\x1b\x6e\xd6\xe0\xf1\x30\x45\xd4\xf0\xd9\xeb\xb1\x3e\xc7\x2e\x30\x32\x89\x23\xaa\x5c\xeb\xe1\xa6\x8a\x4c\x85\x0c\xc0\x2b\x1a\xb3\x7e\x09\x33\x7a\xf9\xf2\x7b\x6d\xf6\x5d\xfe\x8b\xcd\x5e\x2d\x8f\xd2\xb2\x7b\xaa\x4c\x89\xd0\xbc\x25\x91\xd6\x7e\xef\x3a\xa3\xc2\x1a\x4b\x08\x2b\xbd\xb0\x8f\xa8\x04\x17\xc4\x45\xac\xe2\x79\x92\xdd\x83\x00\x54\x93\xcd\xe4\xe3\xef\x54\x93\xad\x44\x20\x76\xab\xc9\x0e\xc2\xf9\x7b\x39\xa4\x86\x90\x5c\x4b\xc8\xe2\xc0\xef\x56\x90\x25\x36\xb1\x17\x6f\x62\x75\x9f\xb5\xac\x77\x1b\xc8\xc1\x10\x41\x8a\x5c\x9f\xe5\x51\x66\x36\x99\x8e\xa4\x97\x50\xcc\x41\x27\x8a\xcb\x16\xea\x37\xf7\xa8\x2d\xcb\xb5\xc0\x5e\x42\x33\xe7\x08\x97\x88\xe0\xeb\xfe\x82\x9c\x3a\xec\x0b\x0b\x4d\x62\x07\x2c\x09\x2b\x4b\x29\x59\xb4\xf6\x79\xa2\xb1\xb3\xf2\xbc\x1c\x83\x6e\x43\xb7\x06\x73\x0a\xec\xf7\x58\xfe\x20\xd5\x2b\xfe\xf0\xa2\x32\xb2\xc2\x22\x1b\x81\x2c\x44\x11\x57\x82\x34\x7b\x09\x7d\x1a\x86\x58\xcc\xe8\xa4\x75\x84\x32\xae\xf9\x20\x14\xa5\x53\xae\x75\x0c\xe7\x85\xde\xec\xb9\xa5\x58\x6b\x1e\x3e\x87\xde\xec\x0a\xab\x6c\xc1\x16\x35\x06\xc9\xbc\x2c\xcc\xc0\x74\x6b\x21\x79\x4d\x87\xd6\x5c\x5d\x64\xae\xe9\xc5\xc4\x14\xdf\x3b\x2f\xac\xc7\x4a\x54\x53\x2f\x55\x53\x86\x08\x52\x45\x66\x66\xc3\xf5\x27\x7c\x61\xdd\x42\xad\x89\x3b\x8c\x9d\x4a\xad\x7b\x4c\x16\x10\x3c\xb5\xf8\x19\x9a\x75\x3c\x8f\xbd\xfa\xea\xf3\xf4\x23\x5b\x48\x97\x39\x31\x51\xac\x55\x33\x1f\xc5\x5a\x33\x1e\xff\x6e\xe9\xd5\xaa\xad\x87\xd2\xab\xd9\x02\x20\x9d\xda\xab\x45\xee\x5e\x30\xb3\x93\x3a\xb1\x5b\x86\x75\xb9\xa9\xa8\xcf\x2b\xfe\xae\xa3\x41\x78\xf7\xd8\x6d\x56\xc8\x85\x6f\xee\x59\x77\x4b\xaf\x2e\xb2\xf6\x74\x6a\xaf\x0e\x89\x83\xf5\x56\xcd\x54\xd2\x29\xb8\xba\xbf\xf2\x17\x48\xab\x1b\x34\xa8\x09\xd1\x6d\x1d\xab\x65\x74\xb2\xee\x67\x8f\xe5\xe6\xbc\x85\x3c\x67\xbd\x44\xa6\x61\xcf\xcc\xf0\xcc\x88\x5d\xa1\x28\x23\x80\x14\xae\x82\x4b\xef\xa8\xbe\xba\x7f\xa0\xdf\xa9\xa9\x8f\xbe\x66\x4c\x91\xbe\x4c\xd4\xaf\xe5\xa7\x78\xcb\xbb\xda\x5c\xf8\xf8\x51\x9c\x06\x80\x45\x72\x27\xb5\x60\xea\xb5\x56\x99\x69\x21\x67\xff\x72\x9b\x97\xa6\x68\xf1\xd4\xac\x1f\xc2\xd0\x44\x8f\x52\xe1\x62\x94\xbc\x76\x38\x8b\xba\x6a\x96\x29\x16\xa0\x77\xb6\xc1\x97\xc5\x3e\x8b\xd1\x6b\x7a\x2b\xdc\xd8\xae\x52\x0e\x33\x80\x68\x2b\xa2\xc2\x6b\x5d\x42\x1d\x83\xfc\x42\xa0\x8b\x0a\xaf\x88\x80\x05\xe3\xfc\xf2\x54\x90\x18\x6a\x79\x28\x0c\x32\xd4\x54\x47\xe1\xd7\xdc\x9d\x93\x19\x22\xd5\x43\x8a\xc5\xd6\x3c\xd1\x5c\xdc\x52\x05\xa2\x0a\xac\xd5\x5b\x7a\xb1\x5c\x4d\x73\x34\x11\xcc\xef\xd9\xca\x18\x59\xfc\x12\xed\x55\xc5\x91\x95\x8a\xce\x75\x49\x32\x96\xf9\xe5\x06\x93\x67\x64\x08\x8c\x53\xda\xee\x68\x5b\xf9\x6e\x44\x56\x76\x0a\xb3\xb6\xc3\x19\x79\x49\x5b\x4b\x1b\xb5\x58\x47\x10\xde\x2d\x02\xb4\x43\x92\x78\xb9\x11\xd5\x1f\x3a\x3f\x30\x25\x7d\xeb\x5a\xab\xa8\xd8\xda\x08\x9c\xee\x25\x78\x3a\xa2\x08\x15\x58\x0b\xe1\x7e\xbd\x6c\x9e\x5e\x0e\xf7\xf7\x56\xcc\x96\x56\x6c\xa6\xde\x08\x58\xee\xe5\x96\x9c\x23\x05\x51\x99\xb5\xe8\x99\xa5\x02\x6b\xd1\x8e\x55\xbc\x74\x0d\x43\x2c\xb7\x3c\x4d\x26\xf3\xc8\x25\x84\x26\xcc\x38\x79\x78\xb6\x52\xde\xb8\xa5\xdc\xad\xa7\xda\xb5\x9a\x52\x2a\xb5\x1d\x87\x0d\xc0\xe5\x7a\x7c\x17\x8d\xdc\x29\x98\x9a\x4a\x1c\x87\xc7\x28\x5b\xc6\xb1\x0a\x7c\x17\xd5\xdf\x58\x0b\x8b\x7c\xbd\x8d\xef\x33\x3e\x05\xd1\xf3\x15\xa6\x3e\x0f\x74\x58\x09\xc1\xeb\x82\xf7\xcc\xea\xc1\x47\xc9\x67\xd9\xc4\xf4\x45\xac\x07\x95\xa8\x5d\x9a\xf5\x49\x51\xaf\xb4\x1d\x18\xdf\xa8\x57\xba\x5b\x64\x5e\xb2\x8b\x6c\xbc\x00\x96\xe4\x0f\x95\x8a\x28\x95\x67\x27\xb5\x78\x1e\x7c\xd3\x79\xb6\x78\xf7\xe1\x0b\xbc\x7a\xfa\x2c\xed\x87\x26\x50\xaf\x74\x7f\x35\x78\xd1\xdc\xc3\x89\xb5\x60\xe9\x22\xf3\x52\xaf\x59\x4e\xc8\x61\xa4\x7a\x69\x93\xa5\x53\xb0\xb4\x1d\xc9\xe6\x9e\xf1\xe5\x4b\x6c\x10\xf3\x22\xf3\x09\x57\x28\x7a\xdd\xac\xb7\x90\x3c\xac\x57\x1d\xd9\x5c\x1b\xea\xd5\xb8\x3a\x6d\x66\xb5\x80\xd7\x1c\xf2\x6a\x60\x7c\x8d\x17\x07\xa7\x2b\x8c\xd7\xba\x7a\xab\x0a\x6e\x15\xee\x25\x6e\x34\xf3\xac\x5f\x4f\xc0\xa1\xc8\x72\xf1\xac\x57\x83\xde\x35\xa6\x51\x0c\xb4\x1d\x76\x65\x31\x50\xee\xfa\x76\x8a\x81\x0e\x85\xf5\xaa\x2f\xba\xba\xf2\x26\xc6\x60\x96\xaa\x4d\x62\x3c\x7d\x21\xdf\xf0\xe1\xb3\xf6\x75\x68\x6e\xb5\xe2\x8c\xca\x5d\x0d\x65\xb2\xf9\x72\xeb\x7f\x60\x89\x2d\x66\x4c\x07\x5d\xc3\x3f\x10\xea\x52\x01\x24\x95\xda\x63\x7c\x66\xd6\xdd\x78\x46\xe9\xa8\x17\xd9\x8f\xe4\x31\x6e\xbc\x97\xb7\x64\x4b\x55\x15\x92\x9b\x55\xdd\x42\xa1\x8b\x4c\x55\x9d\xe2\xa0\xed\xc8\xfe\x40\xf4\x33\x34\xa8\x8e\x30\x1f\x32\xe0\xa0\x90\x88\x90\x18\xb1\x2c\x7f\x88\x95\xd0\x84\x18\x75\x5d\xc0\x51\xf8\x53\xdd\xa8\xc2\xaf\x2c\x8d\xd8\xa9\xfc\xd9\x8e\xec\x0f\x01\x7b\x56\xa2\x86\x58\xc5\x67\x4b\xa1\x0d\xc1\xea\x2d\xdf\xe1\x57\x1c\x0c\x28\x0c\xc5\x3b\xdb\xe1\xc1\x20\x2d\x48\x89\xef\xdd\x6b\x44\xda\xba\x88\x0a\xe8\x36\x36\x6f\x00\xf3\x30\xcd\xa0\x71\x15\x55\x2e\xa3\xb6\x5e\xad\x78\xa6\xf6\x4c\x1d\xcf\x92\x84\xd5\xc7\xf1\x98\x60\xb0\x16\x34\x10\x4a\x77\xee\x17\x46\xff\x40\xb8\x90\x9a\x29\xd7\x59\x34\x1f\x57\x23\xb7\xaa\xdb\x46\xc8\x3a\xc9\x26\x3a\xd5\x3a\xb7\xea\xb8\x9f\xa9\x6a\x36\x84\x01\x1e\xe0\xe1\x41\x30\x92\xbd\xe6\x6f\xbd\xb8\x51\xa4\x53\x14\xde\x9c\xa7\x1d\xc8\x64\x54\xe5\x6c\x07\x92\x72\x35\xe3\x3e\xb9\x17\xbb\x15\x37\x25\x6d\x54\xdc\x6c\x07\x42\x58\x8d\x44\x56\xb0\xe7\x7a\xb1\xf4\xe2\x47\xa0\x1f\x22\x60\x14\xd6\x54\xa5\xab\xe6\x1f\xe6\xb2\x4b\xa7\xb2\x66\x1e\xe2\xe2\x85\x4f\x15\x15\xa1\xc6\x3d\x60\x77\xf3\x0e\xb8\x33\x5b\xb9\x0d\x4c\xb6\xaa\x36\xda\xad\x6a\xa3\x9a\x40\xbd\x03\x97\x6c\x0e\x2e\x21\x59\xd6\xcd\x86\xda\x81\x8c\x4f\x59\xce\x41\x3c\x7a\xaf\x32\x18\x69\xaf\xf7\xb6\x86\x64\xe3\x51\xfc\x5c\xb6\x70\x3b\x59\xdf\xe3\xfa\x18\x0e\xf5\x50\xf9\xb1\x5a\x21\xa6\x7a\x56\x1e\xc8\x38\x2c\xba\xbe\x62\xae\x5f\x6d\x05\xb1\x1d\x48\x4e\x54\xe4\x6c\x87\x27\xe2\x85\xc6\xb9\x2f\xaf\xa7\x43\x80\xc8\x67\x60\xd7\xf5\x55\xb2\x93\xb7\xbc\xac\xc8\x55\xbc\x9e\x3a\x77\x69\x2b\x88\x4d\x41\xc3\x4a\x9d\xc6\x28\x50\xa8\x73\x2f\x6f\x7f\xd4\x0e\x04\x0a\xf8\x4f\x0b\x93\x2f\x76\x04\x4b\x78\x9a\x14\xac\x53\xc3\xb3\x1d\x90\x35\x6a\x70\xee\xe6\xbc\x84\xf6\x86\xdc\xd1\x52\xc0\xcd\x17\x2d\x69\xcb\xcf\xd8\x01\xa8\x6a\x33\x95\x96\x36\xf9\x66\x2a\x2d\xf2\x99\xf5\x96\xc0\xbd\xe6\x33\x93\x8f\xae\x1e\xfb\x1d\xbc\x48\x08\x39\xce\x2d\x53\xf7\x0c\x5c\x68\x99\x1d\x84\x0e\xb6\x0c\x14\x21\xa3\xcd\x14\x19\xca\xf0\x2d\x4b\xaf\x90\x36\xa8\x01\xda\x0e\xc7\xce\x9c\x01\x08\x67\xcb\x1a\x6f\x6c\x6d\x3d\xeb\xec\x0b\x81\xf1\x4e\xaa\x04\xb0\x68\xa1\x86\xc8\xe5\xbb\xde\xe4\x46\x1c\xd4\x56\x40\x12\x48\x0c\x15\x40\x1b\x05\x4e\x7a\x53\x57\x84\x0f\x37\xb3\xeb\xab\xec\x51\x0e\x34\xa9\x4a\x50\xf3\xb3\xf4\x68\xfc\x62\x2a\x67\xae\xa6\xfa\x55\x6f\x6a\x35\x80\xbe\x78\xb1\x38\x05\xad\x6b\x20\x09\x63\x54\xc7\x06\x68\x3f\xab\x62\xfb\x03\x70\xe6\x64\xb5\xea\xf9\xb3\x5b\x04\x3f\xa1\x1c\x06\x56\xe4\x0f\xcb\x7c\xca\x61\x5a\x28\x83\xc8\x06\xad\x39\x11\xac\x56\xad\x81\x30\x1c\xcc\xd6\x84\x07\x50\x23\xf5\x2f\xd7\x42\x3b\x75\x41\x1b\x15\x93\x7a\x53\x15\xe4\xb8\x52\x16\xb4\x91\x03\xbd\x53\x16\xb4\x51\x5e\xa6\xb7\x26\x1b\x80\x9f\x5a\x23\x74\x91\xa3\xac\x37\xc2\xba\x5b\xee\xdf\x51\xbd\x26\x7f\x74\xf7\x09\xec\x26\x05\x59\x6f\x3d\x60\x65\x6f\xa7\x0b\x01\x0e\xe8\x8c\xc6\xc2\x35\x22\xb5\xbb\x9b\x3c\x38\xb3\xc2\x6a\x73\xca\xac\x1c\xde\x06\xb6\x49\x37\x76\x70\xe7\x81\x33\xde\x06\x8b\x45\x89\x6d\x66\x61\x1c\x6e\x53\xd8\x5a\xe1\xff\xd6\x1b\xad\x3a\x8f\xda\x0c\x80\x32\xf6\x0c\x32\x04\x24\xb8\xce\xe5\x29\xa7\xb0\x68\xd5\x56\x48\x5d\xd1\x2c\x95\x6d\x33\x06\x61\x56\xd3\x40\x74\xbb\xb5\xf6\x23\x0d\x36\x33\x2d\xdc\xa5\xe8\x94\x15\x2d\xb2\xfb\xa8\x2a\x4a\xba\xb5\xde\x96\xa2\x56\xf6\x2b\xee\x7c\x89\x87\x06\x57\x71\xc9\xbf\x53\x48\xb4\x68\xf1\x6a\x8b\xc3\xe4\x89\xc3\x6b\x4a\x59\x81\xde\x22\xd0\x4a\xc4\x5d\x90\x46\x1b\x7c\x02\xc3\x7c\xd1\xa8\x4d\xeb\x60\xb2\x08\xe7\x96\x15\x1d\x08\xed\x4d\xfd\x0d\x89\xb1\x05\x93\x45\x82\x6b\x5e\x12\xcb\xf1\xe2\x44\x6c\x8d\x6c\x25\xd0\x50\xce\xb4\xb4\xb7\xe0\xab\xcb\x6e\x3d\xe1\xcc\xe3\x34\x7d\xa9\xcf\x1e\x70\xc9\x40\x18\x71\x21\xbf\xed\x54\x4c\x82\xa3\x34\xb3\x6d\x28\x67\xb5\x93\xb3\x0f\x07\x6b\xf8\x5c\xc7\x10\x5d\xb1\xf5\x2a\x45\x34\x4d\xba\x87\xfd\x1a\x8b\xca\x6c\xcf\xa8\xa3\xef\x47\x92\x5c\xb7\xe3\x82\x73\x78\x18\xf5\xc5\x76\xa1\x7b\x41\x00\x45\x6e\x55\x40\x0f\x26\xe1\xd5\x1a\x6f\x9b\x1a\xa0\x1b\x70\xa9\x0c\x14\x7b\x5a\x0e\xe1\x57\xa8\xa2\x92\x94\x0b\x62\xe8\xa1\xbb\x62\x52\x76\x4b\x40\x22\x52\x43\xbb\x3d\x8d\xf1\xc2\xd1\x10\xa1\x6f\x71\x58\xe8\x98\xfb\xbf\xbb\x05\x70\x68\xd9\x6a\xbb\x45\x24\x79\xcd\x8d\x60\x24\x2a\xdc\xec\x9f\x08\x66\x46\x60\x62\xf9\xbb\x75\x4a\x65\x80\x94\x29\x4d\x45\xa9\xb5\x3d\x24\x22\x73\xba\x70\x6b\xdd\x8e\x8d\x6b\xd6\xb2\xd2\x46\x64\x55\x76\x79\xb8\x6b\x87\xa3\x11\x8e\x1d\x44\x19\x2e\x9e\xc4\x35\x18\xb7\x69\x21\x7b\x93\x71\x3b\xef\x37\xc0\xcf\x08\xaf\x10\x74\x38\xee\x95\x15\x79\xe4\xcb\x22\x64\x84\x58\x70\x07\xd7\x55\x7b\x3f\x10\xe3\xa1\x09\x9d\x8b\x60\x1a\x2a\xfa\xc1\x46\xc6\x73\x00\xb0\xf2\xc2\xbd\x71\x98\x2d\x05\x4e\x73\xed\xdf\xd2\x3c\x8b\x9f\x0e\x6e\xbc\x76\x8a\x9f\x4e\x12\x45\x74\x8a\x9f\xb6\x63\x39\xbc\x96\x9f\xc1\xb3\x14\x09\x52\xd3\xc9\xa1\xc5\x9d\x8e\xde\xb9\x17\x76\xd8\x98\xfb\x5f\x0a\xdb\x94\x47\xcd\x3d\xfe\x8e\x6a\xcc\xb9\xa4\x54\x6a\x36\x01\x4b\xef\x32\x77\x3b\x35\xe9\xbf\x92\x7e\x27\x7d\xf0\xa1\x4c\xde\x93\x6c\x8e\xb9\x66\x33\x60\x32\xa7\xac\xa0\x8f\xc8\xd9\xc3\xff\x0a\x76\x77\x53\x85\xa8\x02\xf4\xcc\x6d\xab\x61\x93\x46\x7a\x15\x06\xcc\x31\x13\xfb\x1d\x5c\x45\x66\x56\x91\x63\xd8\x6e\x97\x1f\xf9\x22\xf9\x2c\x76\x65\x04\xd6\x74\x8c\xcb\x4d\x77\xf4\x1b\xb8\x01\x9e\x2c\xfb\x74\x0c\xd6\x21\xcc\x8b\xa2\xec\xf4\x25\xfd\xf8\x9a\x06\x76\x51\xa9\x75\xff\xe0\x0b\x27\x16\xca\x4f\x41\xd6\x1c\x46\xed\x5e\x62\x5a\xcc\xa4\xe8\x86\xe4\xf4\x53\x91\x75\x90\xae\xa6\x5b\x90\x75\xc5\x18\x9b\xb2\x52\x28\xbf\x77\x03\xbb\xe5\xac\x54\x60\x6d\xc9\x99\xa3\xf5\x52\x9c\xb7\x77\xbc\xb7\xda\xf7\xfa\x96\x27\x5a\x02\xd7\x7b\x95\x9c\xc1\xae\xa3\x4a\xab\x8a\x46\xaf\x06\xdd\x73\x6e\xa8\xd2\xda\x92\xdb\xac\x4d\x5a\xd9\x99\x8a\xad\x59\xa7\x77\xaf\x01\x36\x07\x51\xa2\xab\xf6\xc5\x74\xa1\x61\xbd\xc5\x3e\x33\x5d\xc5\x0b\x71\xa9\x11\xac\x26\xbe\x69\x44\x56\x80\xed\x96\xac\x13\x08\x4d\xcd\xc2\xfd\x47\x8c\x48\x6e\x39\x62\x84\xda\x77\x6f\x0e\x47\x4f\x5e\x14\x53\x65\xed\x06\x7d\xeb\x8a\xef\x5b\xa4\x68\x1a\x14\xbb\xe9\xb5\xb4\x44\x51\xfb\xb5\xc9\xe0\xbb\x05\xef\x86\x7f\xef\xdc\x74\xb1\x01\x1e\x57\x0f\xb9\x29\x54\x86\x28\xdd\xb5\x6b\xba\xb1\x7a\x75\x5d\x2a\x5e\x5d\xa3\xc1\xfb\x16\x33\x5a\x12\x82\x83\xe8\x07\xb7\x3b\xc4\x0c\x46\xb6\xd0\xab\x42\x38\x85\x5e\xf3\xff\x4b\xd8\x99\x9c\x4d\xcf\xf2\x68\x34\x95\x3f\x84\x32\x93\x60\xf3\xe5\xe2\x31\xff\x10\xfa\xe2\x1c\xbd\xbd\x7d\x76\x76\x95\x99\x41\x13\x92\x6e\x75\xd7\x21\xbc\x9d\xaa\x21\x40\xaf\xc5\xfb\xb2\xe1\x65\x2f\xc1\xbe\x63\xc4\xed\x57\x0c\x35\x92\xaa\x5b\xe4\xf3\x1f\xba\xcb\x15\x6f\x6a\x48\xc3\xfc\xa3\x70\xb0\xb1\x75\xf8\x7e\xb8\x00\x93\x09\xb1\x41\x54\x78\xa2\x8e\x06\xd8\xb0\xfd\x70\x6a\x27\x3b\x24\x2b\x55\x08\x80\x76\x8f\xc9\xc2\x38\x8c\x65\x6b\x4e\x21\x7e\xdf\x2a\x51\x63\xc9\x7c\xbb\x2f\x10\xf5\xbf\xfd\x94\x07\xb7\xc1\xea\xcb\x63\xd9\x17\xfa\xbe\xdc\x30\xf4\x6b\xb1\x47\xe0\xb8\xc3\xdc\x2b\x8a\x7d\x00\xc8\xce\xe6\x81\x3f\xf5\xdb\xf1\x19\xad\x48\x5f\x03\x10\x64\x9b\x46\x86\x44\x86\x95\x66\xeb\x91\x45\xd0\xf3\x00\x25\xb6\x2a\xb8\x8b\x12\x6b\x32\xb7\x31\xc4\x0f\xf2\xc4\xa6\xde\xee\x5e\xc0\x40\xac\x74\x31\x2e\xd7\x19\x51\x71\x5c\x8c\xc2\xf6\x2e\x66\x14\x29\x6e\x5c\x92\x27\x29\x39\x0a\x3c\x41\xf9\x03\xf4\xd8\x7e\x64\xe1\x8f\xe6\x58\xa6\x5b\x76\xed\xf1\x43\x9e\x38\xe0\x86\x03\xb1\xe1\x70\x1b\x12\xb2\x5e\xbd\x7d\x18\x3a\x64\xdb\x71\xe4\x06\x93\xfa\x0e\x90\x64\xfb\xe1\xa4\x19\xa6\xae\x90\x34\x34\x23\x2b\x0a\x25\x46\x2c\x99\x9a\xc6\x78\x9a\xff\x50\xf1\x96\x09\xfa\xe1\x57\x5c\xe3\xaa\x1f\x03\xff\xda\x8f\xfc\x26\xc7\xc7\x98\x40\xd6\xfb\xf7\x8c\x79\x44\xc6\xf3\xe4\xf2\xb1\x96\x2f\x47\x28\x9f\x69\x01\x09\x44\x5c\xd7\xa1\x43\xe4\xc0\x74\xec\x0d\xe1\x30\x02\x5d\xf1\x67\x78\xd9\xab\x4b\xc7\x30\xf7\x97\x12\x0c\x20\xaf\xfd\x90\x75\x68\x2a\xce\xdf\x2b\xac\x8a\xf6\xbc\xd5\x45\xbd\x1d\x5b\x83\xef\x87\x84\x60\x2b\xed\xfd\x90\x91\x93\x5c\x53\xe5\x05\x1c\xd8\x92\x1c\xf6\x23\x54\x42\xaa\xba\xc5\x86\xa9\xa3\xe8\xc0\xcb\xab\x66\x3d\x58\x4c\x24\xdc\xa8\xf5\x79\x30\xc8\xbf\xa9\x83\x4a\x88\x2d\x00\xa1\x8f\x5f\x6e\xba\xc5\x4b\xfd\xef\x7f\x4d\x7f\xfd\x00\x4b\xa8\xe9\xe5\x11\xfa\x60\x93\x87\x63\x80\x1c\x7b\xe8\x2c\x1d\xfa\x60\x0f\x3f\xba\x10\x5c\x6d\xe2\x21\x0c\x71\xf2\x0c\xe7\x9b\x3e\x43\x5e\xe1\x7c\xc2\xc3\x46\x58\xd1\x61\x8a\x3a\xce\x51\x1c\x99\x71\x8a\x67\xdc\x20\xb2\x84\x8b\x35\x78\x0e\x42\xe0\x69\x59\xc7\xec\xb0\xe9\x83\x6e\x2c\x9f\xdd\x73\xd5\x17\x32\x3c\x1c\xd6\xc4\xde\xaf\xb6\x80\x5f\xb6\x05\xf4\xea\x52\x02\x4b\x98\x58\xa5\xab\x28\xea\x39\xcd\xcf\x30\x72\xda\xd9\x02\x9a\x84\xa3\x00\x25\x48\x2a\x0a\x18\x6c\xf5\x6c\xc6\xbf\xcb\x63\x9e\x69\x9a\xcd\x1e\x19\x0b\x4e\x37\x6a\xce\x00\xfd\xab\x80\xe3\x1c\x7e\x94\x2d\x53\x1a\xf3\xc1\x91\xcf\xec\x99\xf6\xa7\x90\x17\xd8\x16\x34\x6e\x47\x15\x88\x91\xf5\x36\x36\x9c\x8d\x19\x35\x77\xb2\x1f\xb1\x4c\x8e\x55\xb1\x00\xfd\x35\x9a\xc2\x34\x5b\x2a\x74\xd3\x56\xea\x8a\x66\xbf\x18\x49\x46\x7c\xb1\xc9\xa3\x25\x3d\xf0\x2b\x54\x50\xc8\x4f\x82\xd4\xea\xec\x92\x20\xb5\xba\xff\x00\x52\x5b\x97\x33\x04\xc0\xdf\xe1\xef\x5a\x1a\x38\xb7\x80\xd4\x96\x69\xaf\xc0\x6b\xf7\x76\x22\xd2\xce\x80\x08\x15\x3d\x67\xce\xaf\x86\xaa\x1f\x83\xea\x9c\x6e\x98\x49\x74\x11\x5e\xfc\x28\xfb\x41\xa7\x94\x0b\x5c\xcd\x6e\x80\x15\xbf\x0f\xce\x39\x7c\x0f\xe8\xdb\xa2\x53\x3f\xd0\xb7\xd5\xf8\xaa\x30\xb7\x66\xfe\x8e\x4f\x10\x4a\x01\x38\xb6\x1d\xd4\x9e\x11\x23\x77\xa7\x2f\x18\x06\xb1\xc7\x00\x63\x7b\x54\x4d\x38\xc0\xd8\x56\xf2\x2d\x8d\x90\xf9\x43\x68\x01\xb1\xad\x80\x82\x8c\xd0\xde\x00\x53\x88\x50\x3f\x60\x36\xc2\xd9\xf0\x44\x73\x29\xed\x05\x67\x98\x79\x5c\x6b\x05\x08\xb8\x95\xfc\xaf\x43\x98\x5b\xd3\x90\x0f\x60\x6e\x3b\x68\xca\x43\x94\x5b\xcd\xaf\x80\xdc\x56\x8d\xec\x31\x93\x5b\x50\x3a\x33\xb4\x39\x0a\x01\xe3\x95\x0f\x63\x42\xeb\x3c\xa1\xe6\x9b\xb1\x2a\x79\xbf\xc7\x78\x5e\x3c\xd3\xf4\xb4\x69\xcb\xe6\xd6\xf4\x8f\x64\x16\x34\x41\x00\xb7\xf6\xc5\x58\x06\x4e\xbb\x05\x53\x28\x40\x3a\x8c\xcc\x30\xbe\xfc\xc7\x54\x43\xd4\x65\x3c\xb7\x82\x26\x80\xb9\x55\xca\x1c\x2b\x39\x01\xcd\x0b\x4b\x11\x4e\x1c\x57\x04\x49\x1f\x56\x72\x1e\xeb\x42\x55\x77\xae\x08\xf4\x06\xb6\x7c\x08\xa3\xab\x91\x01\x18\xdd\xae\xd0\x01\x8a\x6e\xc9\x79\x3e\xb5\x12\xb8\xd3\x4e\x4e\x92\xf4\xe4\x74\x76\xe8\x93\x10\x43\x9e\x1d\x23\xbe\xb4\xeb\xc4\x95\x03\xa7\xaa\x4b\xa5\x13\x96\x0b\x5a\x6e\x3f\xdc\xcc\x17\xcc\xdb\x83\x74\x79\x2e\xdc\xfe\x99\x30\xdc\x8f\xa0\x28\xd2\x29\xe5\x89\x61\xad\xf4\xc3\x79\xbe\x80\xdb\x72\xaf\xa5\x1d\x42\x7a\x60\x8a\x70\x78\x6f\x70\xfb\x6c\xb8\x56\x18\xe0\x15\x1e\x30\xd1\x09\xc9\xfc\x30\xe2\x46\x96\xf9\x59\x5a\x6a\xe2\x3e\xc2\x10\x71\xe4\x47\x6a\xa8\xce\xe0\x9d\x6b\xf1\x37\xcd\xbb\xc9\xba\x10\xf6\x80\x83\x9c\xcf\x1c\x27\xe9\x03\x77\xd6\x1a\x16\x82\x3b\xeb\xee\x01\x7f\x72\xf7\x30\x76\xee\xac\x15\x79\x81\xfa\x2d\xba\x72\x8b\xe8\xdb\x92\x98\x3d\x93\x6b\x7b\x3f\x5a\xfe\xc1\x78\xbd\xd8\x1e\x3e\x2b\x64\xa3\x8d\x84\x49\x74\xbc\x26\x04\x04\xb8\xeb\xb3\x08\x06\x70\x4f\x26\xac\x1f\x7a\x32\x94\x17\xa5\xc3\x2d\xfd\xb2\x9a\x1e\xa1\x37\x77\x31\xbd\xe5\xde\xc1\xf8\x8e\x50\x84\x91\x09\xbf\x9c\x27\x87\xfd\xda\x02\x7d\xe2\x0a\xe2\xb0\x7f\x69\xc9\x90\x10\x7c\x40\x78\x20\x11\x86\x3e\x6a\xca\xde\x41\xf6\xb8\xa4\xbc\x9f\x49\xba\xfd\x3d\x53\x1f\xf2\x6c\x97\xdc\x17\x9f\xb7\x2d\x52\xb3\x2f\x27\x87\xa1\x6e\x81\x26\x34\x12\x01\x0a\x5c\x7e\x59\x15\x17\x26\x46\x62\x80\x03\x5c\xf3\xf4\x09\x03\xcc\xe1\x9d\x48\x2e\x4d\x2b\xb2\x30\xc0\x5e\x54\x00\x03\x5c\x0b\xb5\x8a\x02\x5c\xba\x05\x3a\x0a\xf1\x9e\xf0\xa9\xc3\x19\x99\x49\xc6\x3c\x5c\x61\x0a\x2b\x7a\x28\x40\x4d\x4c\x14\x7a\x2b\x4c\x01\x3f\x96\xbf\xbb\x25\x91\xce\xa7\x39\x6a\x94\xe7\xc1\xf7\xdd\x3d\x3f\x78\x61\x9e\xa7\xf5\x6a\xa4\x63\x3e\xa7\x40\x20\xd0\xa3\xe9\x0d\x3a\x94\x66\xea\x14\xae\x06\x30\xcd\x1f\xd7\xec\x49\x61\x29\xa7\xcf\xf8\xd7\x31\x53\x93\x8b\x89\x63\x5a\x5a\x86\x5a\x6c\x42\x46\xe6\x68\x8b\xd2\x2f\xdb\x13\x80\xdf\x7e\xd8\xf7\xea\x69\x44\x1a\x10\xec\x57\x99\x63\xd6\x4c\xf9\xc7\xf3\xc2\xb0\x43\xb5\xd5\x2d\x6c\xe3\x35\x53\x35\xf3\x8c\x84\x93\x85\xd5\xdf\x97\x2f\xd9\x36\xc5\x1b\xfc\x0b\xed\x0a\x14\xe0\xc3\x58\xc8\xd9\xf4\x80\xa1\x4f\x8d\xac\x2f\xe1\x33\x16\x9b\xe5\xb3\xe6\x06\x57\x40\x71\x63\x5a\x18\x5f\xbe\xe1\xef\x4a\x82\xcb\x16\xb4\x36\x40\xda\x12\x43\x98\x84\x1b\x03\x0c\xe1\x4e\x66\x99\x31\x9b\xab\x44\xff\x8c\x29\x87\xba\x4f\x8d\x0d\x7e\xdf\xd1\xc6\x6c\xba\x1b\xaf\xc5\xa8\xcd\x4a\x03\x03\x07\x4c\x78\x37\x40\x67\xbb\x7b\x7e\x59\xab\x16\x89\x6e\x11\x57\x92\x99\xf5\x76\x5f\xcf\xc3\xd9\x33\xdd\x03\xcf\x0f\x7b\xde\x67\x26\x70\xfe\x19\x86\x36\x07\xd4\xde\xa5\xc1\xf9\x2d\xf7\x48\xde\x58\xb8\xc5\x46\xae\x0d\x4d\x86\xcc\x02\x2d\x65\x6e\x59\xa1\x17\xec\x34\xc0\x08\x1f\x62\x14\x8c\x19\xaa\x7a\x3e\x43\x5e\x5c\xd9\x34\x26\x38\xf1\xdc\x5a\x88\x5e\x30\xa6\x09\xbd\x03\x3e\x22\xda\x70\x90\xf1\x63\x80\x36\xdc\x81\x88\x19\xa0\x0d\x77\x4d\xee\xe0\x0b\x57\x7d\x33\x27\xfe\x6b\x31\x3d\x43\xda\x12\xec\xae\xfe\x6b\xfa\x0d\x02\x3c\x5c\xab\x3b\x74\x0e\x8f\x8a\x7f\x38\xdb\x90\x34\x80\x87\x3b\x90\x6a\x63\x6e\x31\x22\x0c\xf9\x9f\xd3\xb6\xf9\x46\xcb\x82\x2e\x0b\x80\x13\x1f\x0a\x83\x80\x13\xf7\xc3\x35\x14\x62\x84\x64\x1e\x43\x6c\xe2\x1f\xd8\x4a\x63\x72\x9d\x71\x38\xbb\x2b\xc7\xea\x0b\x9b\xcc\x53\xbe\x6c\x8f\xd2\x5b\x22\xe8\x20\xc5\x8e\xa9\xcf\x80\x72\xef\x44\x24\xf0\x86\x6d\x9a\x3b\xdc\x20\xae\x79\xe6\x72\x58\x04\xd8\xa4\xe6\x1f\xb8\xa3\x79\x02\x01\x2d\x5c\xf9\x7b\x2e\x0d\x5d\x3f\xed\x87\x4d\x28\x4a\x21\x12\xcc\xd3\xbc\x59\x94\x56\xa2\xc0\xee\x05\x90\x71\xf1\xee\x65\xa6\x3c\x81\x5a\x30\x95\x27\xa4\x29\x66\x83\x35\x99\xc6\xdc\x02\x45\x2f\x4e\x0e\xf2\x44\x8e\x02\xb9\xa1\xb8\x92\xd7\xc9\xb3\x15\x5d\x16\xa6\xb3\x19\x25\x4e\x5f\x15\x0f\x8c\xd9\x9b\x42\x88\xb8\x48\x77\xf7\x0f\xda\x46\x3c\x28\xf6\x09\xec\x7e\x63\x56\xe7\x8d\x1f\x8b\x33\x7e\xd3\x9c\x44\xdd\x74\x79\xce\xbe\x98\xfe\x06\x2e\x02\x6a\xdc\x4b\x56\x8a\x09\xc4\xd5\xd6\x41\x5d\x47\xd2\xf9\xe4\x1a\x51\x62\x8b\x06\x55\x0f\xb0\xa9\x37\x1b\x29\xcf\x06\x98\xc6\xdd\xeb\x19\x20\x8d\xbb\xf2\x1f\x90\xc6\x47\x4b\x1a\xb1\x65\x86\x4e\xce\xa0\x01\xa4\x71\x37\xc6\x6f\x1a\x6e\x6e\x7c\x27\x98\xc6\x65\x65\xe9\x8f\xb9\xa1\x30\x66\x8b\x22\xe1\xd9\x82\x41\xf7\xae\x79\xe2\x9c\x50\x24\x9e\xb0\x7f\x2f\x2f\xe6\xab\xe6\x55\x2d\x20\x2d\x44\xc4\x00\xab\x78\x9f\x17\xfa\xf1\x3a\x21\xc5\x7f\x1e\xcb\x58\x81\x81\xb1\x3e\x7f\x34\xc2\x33\xe2\x80\x2e\x80\xf3\x4b\x51\x92\xd6\x93\xed\x23\xa2\x4c\xd9\xbe\x97\xa3\xa0\x17\xf7\x52\x2c\x82\x06\x9a\x55\xe5\x46\xf0\x23\x19\x98\x5b\x58\x10\xaf\x88\xbf\x90\x80\xb6\x98\xb0\x25\x6c\x08\xf8\xfa\x31\x2f\x6c\xe3\xa5\x17\xbb\x66\xd3\xf5\x63\x79\xe8\x8c\x30\xc9\xf2\xe5\x44\x49\x26\x75\xd9\x58\xbf\xec\xb2\x2f\xae\xcf\xc1\xb3\xe7\x29\x6c\xe3\xf4\x68\x5a\x17\x1a\x3f\x8c\x19\x00\xe5\x0e\x3c\xd5\x00\x3f\xb9\x18\x62\xb3\xb8\x25\xd1\x7b\x04\x28\xe5\x0e\xd6\xe6\x00\x4a\x79\xd7\x1a\xbc\x68\x5f\xf6\xab\xa3\xd0\x5b\x6a\x4d\xcb\x08\x24\x69\xe5\xa5\x09\x84\x72\x1d\x9e\xfe\x6e\x65\xaa\xd6\x7e\xc5\xde\xaf\x16\x87\xc7\x4c\xdb\x10\xfa\x8d\xe7\xc2\x4c\x41\x52\xc0\x4f\xee\xba\x34\x81\x9f\xdc\x4b\xf5\xd9\x7d\x4c\xfd\xb8\xf0\xe9\xf9\x0f\x62\x72\x2f\xb0\x0d\x40\x92\x7b\x81\x3b\x80\x7f\xdc\xbd\x34\x17\xfe\xf8\x50\x86\x06\xf3\x78\xf7\x94\x96\xb1\x6d\x94\xea\x57\x52\x36\xa4\xfe\x85\x6d\x83\xec\xfc\x63\xd5\x94\x7e\xfc\x8a\xdd\xe3\x0c\x98\xe8\x4e\x43\x37\xe0\xc7\xbd\xe4\x33\xd4\x0c\xbd\x69\x21\x4f\x0c\x43\x7c\x57\xda\x29\x5c\x6f\xc3\xc9\x4d\x21\x03\xae\xf1\xfe\x8c\x8a\x9b\x1e\x99\x3e\x4b\x26\x91\x2f\x00\x2d\xae\x86\xa8\x01\x5a\xdc\x4b\xf3\x77\xe1\x63\xe9\x61\x57\x19\xe0\x4c\x80\x54\xdc\x4b\x3e\xeb\x0c\xcc\x74\xf6\x3c\x76\xb4\xdd\xd9\x2c\xce\x02\x97\x11\xc6\x61\x80\x5a\xdc\x0d\x6b\x07\xa7\xb8\x16\x48\x29\x38\xc5\x1d\x94\x9d\x01\x4c\x71\x48\x90\xd6\xc8\xed\xe1\x4b\x73\x40\x34\x3d\x3c\x9a\x76\x5c\xd7\xf8\xdc\xa8\x83\x78\xe6\x65\x11\x49\x8f\x8b\x89\x75\xa2\xd8\xdb\x2d\x36\xf4\xd2\xfc\x5d\x1a\xe1\x2a\x1b\x7c\x56\x2c\x4d\x6f\xdd\xb4\xdc\x52\xd4\x6c\x2f\x45\x0b\xfb\x4b\x5a\xdc\xea\x98\x14\x33\x5c\x70\xc4\x0c\xad\x8a\x0b\xc9\xa2\x40\x26\x81\x33\xee\xa0\xb1\x0c\xe0\x8c\x7b\xf1\x20\xe9\x1a\x61\x4e\x9d\x84\x36\x56\x08\x07\xda\xb8\xe9\x82\x24\xb2\xb1\x7e\xea\x4b\x79\x03\x8a\x02\xca\x71\xf7\x4e\x0b\x94\x63\x31\xec\xc6\x9a\x82\x3f\xb8\xbd\xe6\x89\x92\x40\x73\x26\x8e\x8b\x7c\x79\xc9\xd0\x42\x9f\x16\x35\x0d\x9f\x95\x56\x3c\x30\x5b\x62\x48\xb6\x06\x98\x71\x2f\xe1\xb3\xbb\x0e\x8e\xb5\x88\x26\x27\x91\xee\x00\xbf\xb8\xe4\xde\x5a\xec\x88\xf8\x53\xd0\x5b\x0a\x10\x28\x7f\x2b\x05\x08\xcf\x37\x72\xc2\x30\xc0\x7b\x9d\x32\x1e\xc7\x7b\x32\xbb\xc3\xaf\x3c\x5a\x98\x21\x96\xf9\x70\x0d\xc2\x03\xdf\xf8\x10\xb2\x66\x80\x6f\xdc\x81\x18\x1c\x09\x6f\x6c\xa8\xd4\x32\x43\xbc\x82\xd4\xba\x98\x0a\x24\x69\xa0\x8e\xbb\xd7\x00\x0b\x73\x03\xd0\x6f\x03\xa4\xe3\x43\x84\x9c\xb1\xae\x4c\x5c\x42\x1f\xaf\x5c\x50\xfa\x85\xa3\x61\x41\x14\x4a\xac\x63\x53\xfe\x80\x75\xdc\x8b\x93\x74\x41\x3f\x25\x24\x77\x76\x84\x75\xb8\x5d\x5d\x0a\xe0\xeb\x50\x90\x7e\x56\xda\x15\xa6\x1f\xc5\x7f\xff\x0b\x2f\x61\x97\x2e\xee\xaa\x32\x4b\x69\xc1\xf1\xdd\x3a\x59\x59\xe0\xc6\x09\x90\x9e\xeb\x8c\x98\xdf\xdb\x25\xa6\x90\xeb\x8b\x61\x48\x3a\xc8\xc8\xbd\x48\x92\xcd\x47\x6f\x96\x24\xd0\x90\xbb\x9a\xe8\xc2\x5a\xa0\x7d\x74\x3d\x22\x3f\x5b\x00\x3a\xe0\xce\xc5\x0c\x50\x50\xd2\xd7\xd6\xfc\x27\xc9\x90\xc7\x7a\xe5\x6a\x76\xe9\xcd\x23\xee\x0b\x6b\xec\x09\x17\x33\xcc\x81\xbe\x52\x39\x77\xe5\xeb\x25\xa8\xf4\xef\x65\xc6\x5d\x8a\x97\xb6\xdd\xeb\x5f\xe6\x20\xa4\x38\xfe\x87\x26\x6b\x5a\x5f\x36\xce\xf4\x7f\x4a\x80\x1e\xf1\xcf\xad\x27\x0f\xf9\xf2\x44\xf9\xc2\x01\x96\xfa\x7e\xa4\xbf\x74\x4b\x7a\x53\xb1\xac\x17\xad\x64\x4a\x21\x3e\x96\x18\x16\x97\x30\xc8\x2a\x7d\xc2\x20\x8b\x4b\x34\xce\x1f\xdd\x82\x23\x9f\x06\xa0\xab\xf5\x9d\x78\x23\x92\x59\x77\x9c\x38\x31\xe8\xed\x73\x6e\x4e\x9d\xc6\x97\x53\x4e\xcd\x02\x9c\x78\x2c\x0a\x6a\x34\x40\x44\xde\x1d\x39\x78\xa1\x09\x16\x1c\x44\xe4\x5e\x6c\xe1\x60\x6f\x73\xe4\x4e\x03\xcd\xf5\x3e\x06\x29\xb9\x78\x53\x7e\x1e\xdc\xf2\x2e\x6b\x75\x9b\x33\x6e\x90\x92\x3b\x39\x73\xc7\x29\xf6\x89\x89\x98\x40\x4a\xee\x20\xfa\x0d\x80\x92\x8b\xce\x1f\x67\xde\x49\x58\x6d\xc1\xd1\x16\xd9\xe3\x84\x6d\xeb\x1d\x74\xca\xb6\x9d\x27\xb3\xdb\xaa\x89\x9e\x66\xae\xd5\x4f\x10\x9c\xe4\x43\x6f\x5c\x70\x92\x0f\x50\x56\xc7\x29\xea\x17\x04\xed\x2c\x6e\x6d\xbe\x21\x87\x0c\x89\xb7\xc7\x59\xd5\xbe\xd8\xf3\x27\x79\x63\x74\xe4\x38\x65\xdb\x48\xdd\x67\xfa\x26\x20\x45\x9f\x5c\x3b\xe8\xba\x71\x62\x44\xd0\xab\xf7\xe4\x0a\xc2\x0b\xa1\x13\x76\x3e\xd6\xf1\x67\xf4\xed\x69\x98\x5c\xb5\xd4\x6b\x5f\xec\xd8\xe7\x24\xd2\x01\x1c\x14\x8a\x73\xd5\x5c\x1b\x4e\x35\xf8\xcd\xb3\xdb\x99\xc6\x49\xe1\x84\x03\xdf\xdc\x0d\xb6\x3a\xb5\x1e\xc8\xd2\xcf\x66\x38\x02\x54\xe4\x24\x7e\x4e\x13\xd1\xa9\x7b\x82\x17\x60\xa7\x41\xe4\xa6\x28\x39\x31\x07\x74\x03\x07\xce\xbc\x7c\x80\xe6\x9e\x46\x8e\xeb\x7c\x77\x92\xbe\x56\xb9\xfc\x44\x56\x20\x4b\xfc\x38\xd3\x1c\x90\x25\xbc\x95\x62\x79\xc8\x5c\xaf\xbe\x03\x2a\x74\xd7\x63\xee\x34\x3e\xdc\x10\x1a\x80\xa0\x7b\x75\xad\xcc\x31\xa7\xe7\x09\x40\xd0\x7b\x4d\x7c\xb9\x98\x06\x86\x1b\x79\xcc\x99\x87\x70\xb3\xd3\x41\xfc\x0a\xba\x1b\x4b\x5e\x6c\xe1\xe4\xbf\x6e\xf6\xcd\x5a\x27\x49\xc0\xc7\x69\xd2\x38\x38\xd2\x39\xc9\x8d\xe9\x09\x9a\x72\x27\x67\x7a\x2a\xa9\xd8\x29\xfc\x02\x40\xc2\x1f\xa7\x19\x5d\x0d\x37\x4d\x10\x69\x2d\xa6\x27\xea\x3b\xb0\xff\xe3\x9c\xda\x9a\xf9\x68\xab\xec\xbd\xda\xf6\x92\x2a\xd8\xf8\x52\x00\x42\xa3\x3b\xb7\x9a\xde\xcd\x97\x76\xea\xce\xaf\x92\x0f\x86\x74\xd7\x3d\xe9\x3c\xad\x8a\x4e\x9d\x9e\x7e\x57\x29\x99\xe9\xe1\x3f\x9b\x90\xe8\x6a\x7f\x9e\xd9\x43\xff\xb8\x69\xc3\xaa\x34\x6e\xd0\x91\xe4\x98\xf6\x0a\xbd\xb9\x5a\x93\xf8\x5b\xd3\xc9\xc5\xc6\x5e\xed\x2d\xec\x4f\xa7\xb0\xd3\x08\x2f\xd3\xab\x9c\x72\x36\x08\x25\x20\xd1\x1d\x98\xe3\x71\xde\xd6\x4a\x45\x66\x90\x37\x51\xcb\xe9\x4d\xbb\x56\x08\x50\x9d\xf7\x3f\x0c\x7c\x73\xa4\x4e\xee\xe9\x71\x92\x13\x4d\xe7\xf3\x53\x47\x3c\x53\x45\x80\xf1\xdc\xc1\x33\x1b\xe7\x83\x13\x11\x8c\x40\xb8\x67\x61\xb5\xc6\x69\x22\x15\x13\x0d\x9c\xf0\x2a\x30\x40\xc7\xb9\x35\xd6\x6e\xbc\xfe\x99\x7c\x8b\xe1\xbd\x8d\x67\xfa\xf4\x2a\x10\xc0\x9e\xce\xcd\xaa\xaa\x11\xd9\x40\x3f\x77\x6f\xa2\xce\xbc\x67\x97\xc2\x93\xd5\xec\xd0\xda\x70\x72\x3f\xfe\x3b\x24\xa7\x9f\x45\x98\x29\x7c\xe9\x4c\x0e\x71\x9a\x8d\x4c\x59\xec\xfc\xb2\xb7\xfb\xab\xcb\xac\x63\xea\x9c\xd7\x4f\xcd\x24\x7c\x69\x40\x2b\xf9\xdc\xa9\x2b\x78\x5e\x96\x18\xbc\xc0\x53\xb2\x2a\xb7\x02\xcc\xf1\x82\x5d\x00\x94\x37\x80\x8a\xee\xda\xcc\x12\x2a\x5a\x47\x2e\xd1\xa1\x87\xda\xbd\xe8\xd0\x5b\xce\xfd\x83\xf6\x5d\x87\xf4\x0e\xa6\x71\x1d\xcc\xb0\xbd\xc4\x0b\x4e\xfe\x01\xbc\x74\x29\xf9\x0c\xa3\x86\xdc\x5e\x22\x64\xe9\x41\x7e\x91\xd4\xdc\x0d\x74\xe9\xde\xa6\x4d\xe5\x32\xd5\x88\x76\x11\x70\xa7\x77\x2f\x2d\x2f\x7d\x85\x5e\x03\x36\x5d\x65\xf3\x57\x2a\x6f\x4e\x45\x1d\x96\xf7\x85\x93\x07\xc1\xba\xe4\x02\x28\x9a\x17\x8a\x9c\x11\xa1\x97\xce\x6a\xc5\x9a\x94\x42\xc3\x8f\xc4\xec\x2f\x3c\x13\x7d\xe7\x9c\x66\x58\x16\xbb\x06\x74\xea\x6e\x88\xde\x65\x12\x11\x5d\xdd\xae\x66\xd3\x74\x03\xd7\x33\x99\xce\x65\x5a\x72\x60\x19\x86\xb0\xd5\x26\x1e\xbd\x4c\x1c\x62\x4e\xa5\x0b\xda\x5e\x4d\x53\x04\x9e\x75\xaf\x76\x44\x6f\x33\x83\x34\x2f\x4d\xc0\xae\x2e\x1a\x21\x20\x21\xe3\x4a\x2a\xef\x76\xe8\xc6\xb2\x22\x3e\x5c\x92\x79\x04\xa2\xab\xb3\x4b\x9b\x4d\x64\xe3\xb6\xc1\xc2\xa2\xcd\x5e\x43\x0b\x14\xd2\xdc\x85\xee\x07\xa0\xc7\xb8\xc8\x37\xaa\x92\x0c\xbc\x75\x51\xc7\x02\xde\xba\xe8\x47\x7f\x99\xa2\xdc\xc4\x13\xe0\x5b\x57\xd3\x47\x5d\xf0\x85\xe1\xb5\x34\xf8\xd6\x55\xa3\xe2\x45\xbe\x51\x9d\x37\xc5\xba\x4e\xaf\xf6\x2b\x35\xbf\x65\x7b\xaf\xff\xf8\x19\xce\xd0\x0e\x49\x40\x14\x0d\x27\x17\xaa\x5f\x55\x31\x03\xfa\xba\xe8\x0b\x76\x91\x4a\xcc\xd0\xa7\x4b\xd5\x4f\xaf\xa4\x0b\x78\x94\x6a\xc4\xf2\x95\x4c\x66\x59\x31\xb8\x39\xf6\x57\x17\x33\x35\x74\x21\xae\x85\x9c\x1b\x40\x5c\xf7\xea\xce\x97\xb1\x74\x4b\x74\xbb\x45\x8b\x13\xe0\x61\xf7\x37\xae\xf0\x06\x2a\x82\x64\x5d\x40\xe3\x1c\x02\x59\x1f\xd9\x02\xbc\xc7\x79\x43\x97\xf3\x72\x17\xb0\xe9\xa2\xdf\xbe\x58\xd3\x87\x6e\x01\x80\x4d\x77\xdd\xdb\x04\x95\x0e\x45\xfc\x6b\x41\x1e\x91\x4f\x40\x89\xee\xb9\xf3\x8c\xf8\x52\x9d\xbd\x4e\xa5\x74\x67\x5d\x6f\x74\x95\x4a\x70\xa2\xf7\x3f\xf4\xe4\x54\xf8\x80\x4f\x03\x14\xdd\xcd\xb5\x09\x4e\xf4\x3e\x1d\xd4\x8c\x56\x66\xf2\xc5\x0b\xad\xcc\x8c\x9a\x97\x8c\x08\xde\x2a\x80\xb4\xbc\x47\x00\x69\x13\xae\x00\x1a\xdd\xcd\xe0\x91\xd8\xd0\xf9\xbd\xd1\x43\x6c\x67\xdc\xc8\xbc\x44\xbd\x92\x57\xb9\x78\x97\x84\x6a\x5a\x02\xe3\xa5\xc3\xdb\xba\x5a\x03\xc3\x63\x00\x07\x4d\x76\xac\xbf\xc8\x1e\x76\x5e\x6d\xbb\xd7\xcd\xa9\x81\xe9\x82\x0f\xbd\xf5\x0b\x5f\xc0\x3a\xf2\x00\xde\xdc\x15\xba\xa5\x51\xcb\xc4\xfb\x19\x40\x42\x57\xad\x54\x40\x42\x77\x5d\xa7\x80\x84\xae\x39\xa8\x47\x09\xd1\xdf\xf3\xa0\x30\x0b\xa8\x6b\x5a\xb4\x2f\x12\x88\x84\x76\x79\xe0\xa1\xab\x29\x55\x2f\xf9\x1e\x0c\x58\xe4\x67\x61\x0c\xc7\xf5\x1a\x55\x82\xb8\x07\x66\x73\x37\xb9\x1d\x98\xcd\xdd\x0c\x78\x97\x29\x3c\xcd\x68\x07\x66\x73\xd7\x71\x4d\x98\x66\xa1\x12\x07\x30\xcd\xdd\xac\x72\xd7\xa7\x88\x27\xf1\x15\x94\x4b\x3f\x57\xa0\x96\x77\xdf\x77\x11\xf0\x95\x77\xc5\xbe\xe8\x67\x00\x7d\x02\x54\x79\x7f\x16\xbc\xb0\x77\xc3\xaf\xb2\xb2\xc2\x4b\x8e\xd7\xaf\x0c\x5e\xe3\xd0\x81\x9f\xbc\xff\x99\xbc\x40\x0c\xd8\xbc\xf7\x91\xa4\x8b\x22\x24\xf3\xd0\x22\x7c\x0b\x2b\xa9\xbe\x0e\x50\x72\x26\x42\xbb\xbd\x42\x55\x51\xbe\x0f\xa7\xc8\x8f\xbc\xfb\x82\x82\x03\x73\xdc\x4d\x6d\x05\xca\x71\x37\xaf\x58\xa2\x14\xeb\x8e\x99\xc8\xc4\x13\xea\x7a\xa7\x4b\x15\x5b\xe0\xe6\x7a\x53\xc7\xec\x3b\x39\x17\xcc\x40\x30\xe2\x50\x7f\xbf\xab\x17\x67\x3e\x93\x71\x1b\x39\x5f\x90\xe2\x5f\xcd\x8f\xa4\x90\x50\xea\x84\x23\xe6\x1c\x01\x47\x3c\x81\x62\x19\xc0\x11\xd7\x9f\x4d\x34\xfc\xbc\x1c\x93\xb6\xc9\xee\xb3\x3a\x06\x1b\xe5\x6e\x59\x2b\x35\xe9\x10\x65\x2e\x3c\x90\x87\x6b\x83\x74\xdd\x2d\xa7\x84\x17\x3c\xa2\x34\x74\xdc\x19\x6a\x3c\x7d\xc9\x95\xa6\x2e\xc2\xad\x4c\xe4\x75\x63\xa8\x24\x59\xfd\x10\x88\x58\x78\xce\x71\xeb\x1d\xed\x3e\x41\x11\x09\x2d\x06\x00\x11\xcf\x6e\x47\xb8\x97\xd4\x28\x01\x26\x71\x37\x6f\x18\x98\xc4\xc5\x24\x04\x40\x12\x17\x13\xfa\xdc\x2a\x2b\xae\xcc\xf0\x02\xbd\xfa\x11\xfb\x0d\xea\x7f\x63\x74\x34\xa9\xd3\x9d\xbc\x07\x96\x26\xf4\x70\x28\x6c\x00\x37\x3c\xbb\xcf\xb0\x9b\xfc\x88\x1c\x1c\x06\x79\xde\xb8\x3e\x99\xe4\xe4\x0e\x35\x01\xe8\xfa\x9d\xee\x4e\xb6\x67\xde\x0d\x8d\x0d\x80\x12\xef\x89\xf2\x33\xa2\xc3\x21\xf9\x77\x3a\x42\x65\x65\x0f\x9b\xd5\x06\x19\xb7\x93\x86\x49\xd1\x84\x34\xf7\x74\xac\x74\x64\x33\xa4\x6a\xe2\xc3\xdb\x40\xad\x7f\x2f\x6e\xbc\xf5\xe7\xad\xc6\x3d\xa1\x46\x2e\x81\xc8\xc7\x5a\x25\x40\x3e\xae\x86\xd7\xde\x68\x4e\xa1\xb8\x02\xf0\x71\xd5\x42\x7c\xcb\xbc\x5c\x7e\x95\x25\x58\x11\x58\xc7\xdd\x94\x2c\xf7\xd2\x98\xe3\xef\xd9\x49\x0b\x64\x27\xfd\xc7\xdc\x90\x3e\xbb\x84\x6e\x44\x7d\xa4\x16\x92\xf7\x8d\x8f\x94\x0e\x68\xf7\x72\x3d\xfd\x88\xc3\x8c\x0c\x74\x8b\x85\x61\x46\x80\x5b\x7f\x6a\x4d\x22\x20\x28\x57\xfd\xcd\x6f\xf3\x73\xb8\x95\x44\xee\xf2\x4e\x1c\x08\xe4\xaa\x97\xcb\x9d\x61\xd0\x4e\xfc\x99\xdb\xc4\x97\xbd\x3a\xa6\x81\xbc\x2f\xa5\x12\x8b\xc3\x12\xcd\x1a\x98\xe0\xc8\xb9\xd0\x78\x57\x9b\x21\xfe\xce\x70\x2d\xfb\x0b\x8e\x97\x09\x52\xee\xcb\x5c\xc3\x7e\x74\x52\x93\xbf\x23\x9f\xc0\xf3\xc1\x40\x2e\xca\xb0\xf7\xc5\xfc\xbb\x61\x2e\xbb\xe4\x37\x9b\x36\x6b\x52\xba\x6f\xe4\x19\x0f\xd6\x2d\x99\x2e\xfe\x01\x71\x73\x9e\x88\x99\x36\x77\xf9\x8d\x92\x37\xcc\x5d\x02\x48\x72\x31\xca\xe1\xc6\xd7\x49\x3e\x79\xdf\x24\x4e\x70\xab\xdc\x4a\x97\x76\xef\xce\x19\xa7\xda\xbc\xe0\xc4\x68\x73\x7b\xc1\xa9\x01\x45\x54\xe5\xa5\x7f\xd7\x2d\xab\x94\x48\x3f\xaa\x11\xf9\x42\x06\x1f\x04\x8c\x3b\x6f\x38\x1d\x2c\x37\x9c\xe6\x45\x03\x86\xb9\x7b\xa7\x7c\x6f\xbe\x39\xbb\x87\x80\xb8\x2d\x13\x48\xdc\x28\x95\xa1\x44\x0a\x56\x73\x6f\xf0\xd6\x5b\x40\x4d\xf3\x1b\x80\xd5\x5c\x0d\x8d\xbf\x5f\xb2\xca\xc8\xdd\x30\x86\x6a\x92\xba\x5f\x63\x2b\xe9\xd2\x9b\x07\x86\xbe\x12\xd0\x65\xb2\xa2\x5b\xdc\x4c\xa5\x2c\x00\x9d\xbb\x49\x22\x00\x74\xde\x7f\xd8\xc4\x6b\xdb\x7e\xf5\xd1\x29\xaa\x32\xb9\xb6\xdc\x8c\x50\x2f\x1d\xe0\xef\x2f\x37\x14\x43\xd5\xdd\xdb\x4e\x7d\x6a\xfb\xf2\x90\x4f\xdd\x0f\x0a\xf8\x00\xfa\x15\x72\x69\x41\x9d\xbb\x69\x22\x9e\x1f\x9a\x32\x67\x5a\x4c\xe7\x43\xf3\xd2\x63\x62\x2d\x83\x99\x40\x78\xae\xca\x81\x0f\xe6\x4c\xc3\x21\x9e\x5f\xf6\xdd\xe2\xae\x39\xc2\xdf\xe3\x0d\xa3\x11\x4c\x40\x3c\x77\xf3\x36\x3e\x86\x69\xeb\xc5\x0d\x94\x73\x31\x74\x04\xf8\xe6\x2e\x6b\x03\xbe\x79\x7f\xe4\x1f\x40\xed\xd8\xf7\xc3\x7c\x08\xfe\xce\x5c\xb1\xa5\x05\x66\x0e\xe5\x8b\x07\x8c\xad\xdf\xdf\xb9\x94\x9f\xd4\x49\x11\x3f\x41\x6d\x3e\x8a\xbd\x2f\x30\xe0\x9f\x55\xb3\x81\x6c\xb2\xe4\x78\x6d\xe6\x93\xc7\xf0\x15\xb9\x30\x87\x11\x7e\xcf\xd6\x5b\x8b\x2a\xc2\xb3\xc5\x82\x6e\x0e\x05\x21\x9f\xc3\xcc\x86\x4f\xe5\xb0\x41\xde\x1e\xac\x9a\xb9\x22\xa8\xb0\xfa\xbb\x0a\x0b\x3d\x34\x12\x3c\x5e\x46\x86\x05\xdc\xc9\xd9\x1c\x3b\xd9\x35\x44\x40\xd0\x92\x00\x74\xf4\x2e\x4d\xd7\x1b\x4e\x2f\x6c\xd2\x87\xac\x98\x46\x54\x3f\x5c\x58\x1a\x76\xf4\x78\xb1\x68\xb0\xd7\xa3\xe1\xd0\x8c\xa5\x20\x39\x77\xaf\xb0\x9e\xce\x4e\x2e\xfe\x2e\xf3\xb6\x83\xdd\xd0\x5e\x86\xda\x73\xa6\x7c\xc9\x9d\xc1\x98\xcc\x4d\x9d\xbd\x1a\x5a\x05\xe1\x95\x0f\x3e\x45\x06\x5d\x80\x03\xdd\x0d\xad\x7f\x4c\xbb\xa5\x41\xf4\x19\x80\x17\x34\xff\xc8\x0d\x4b\xb7\x40\xc1\x32\x1f\xd1\xa3\x86\xd9\x6d\x0f\x4e\xe0\x30\x8c\x73\x6a\x56\x24\x8f\xa7\x6c\x64\x9f\xf8\x08\x2c\x4d\xd9\xdc\x83\xb2\xe8\xa9\x7d\x60\xe5\x26\x00\x7d\xc2\xf9\xa0\x81\x90\x3f\xc0\xbc\x1f\x55\x45\x09\xed\x83\x1f\xb2\x81\xb3\xa0\x43\xcf\xee\xb2\xe2\x35\xa4\x6d\xe1\x99\x02\x71\xc0\x1e\x1e\x23\xa5\xcd\x44\x0a\x3a\x74\xcd\x49\x9b\x52\x0c\xa4\xd9\x87\x48\x25\x23\xa2\x9f\x95\x8e\x63\xf4\xd0\xb4\x23\x1a\x0b\xc1\x8d\xee\xa6\x33\x78\xd2\x52\x09\x1f\x07\x36\xba\x1b\x43\xfd\x2c\x19\xbf\x05\x72\x36\xfd\x63\x5a\x2f\x7d\x27\x0d\xb5\x59\x95\x00\x8c\xae\x3a\xc3\x3d\xe4\xa5\xf4\xca\xfe\x39\x75\x54\x40\x55\x7d\xb4\x5a\x9a\x58\x14\xf0\xe7\x99\xdb\x42\x8d\xd2\x7c\xa5\x8f\xa0\x4f\x8e\x03\xd7\x1f\x6f\x9f\x13\xfb\x59\x4f\xa3\xe7\x72\x0e\x99\x2b\x51\x22\x34\x3c\x3e\x98\x33\x9b\x53\x75\x29\x58\x21\x6a\x80\x0a\x5d\x4d\x2e\xf8\x98\x37\x64\x66\xbd\x1a\x8e\x61\x63\xcf\x4d\xca\x2e\x47\x9e\x0c\x11\x8e\xfb\x98\xb5\x32\x4f\x84\x1c\x11\x01\xff\x41\x41\xd4\x1f\x14\x50\xe9\x6e\x9c\xda\xa3\xcf\xb0\x46\xe8\xe7\x96\x6c\x4a\x2e\x6e\x28\x97\x64\x93\xe0\x65\x23\x3a\x00\x95\xde\x25\x7c\x61\x1f\x4a\x1c\xe1\x94\xff\x88\x0d\x9c\x52\xd1\x06\x80\xe9\x6e\x6c\xc1\xf3\xd8\x27\xfa\xf1\xa4\xff\x13\x1d\x44\x75\x3c\xe2\x4f\x0b\xdf\x23\xaf\x74\x11\x1e\xef\xe8\x96\x35\x24\xd3\xb0\x4d\x4d\x01\x0e\x18\xab\xab\x51\x53\xcf\x23\xe1\x93\xbe\xbd\xca\x3d\x68\x99\x62\x51\xe7\xd1\x16\x66\x42\xfe\x05\xfe\x74\xd7\x7b\xf3\x11\x66\xc2\x3c\x9a\xe0\x4f\xf7\xe6\xae\xe1\x1e\xd1\xd0\x13\x31\xa7\xc5\xc1\x1e\x8f\xbc\x53\xb2\xf9\x62\x24\xce\x02\xce\xa9\xbf\xd3\x41\x17\xc1\x5c\xd7\xe6\xb1\x7b\x32\xd7\x89\x03\xc4\xd1\xd8\x94\xbc\xa0\x54\x4f\xa3\x29\x40\xa9\x2e\x4a\x0f\x4f\xb2\x51\x64\x31\x60\xaa\xab\x89\xf6\x9e\x4f\xdd\xcd\xa3\x6a\x32\x4c\xa9\xf1\xc7\x25\xbb\x2c\x91\x1b\x48\x23\xd9\x1f\xcc\xc5\x46\x0f\x80\x5e\x5d\x8d\x67\x7b\x3e\x4e\x04\x47\xf3\xfd\xe5\xfc\x05\x2f\xd9\xf4\xe4\x85\xbc\x02\x8c\xfa\x15\x6a\x93\x3d\xfd\xfe\xe0\x5a\x87\xa5\xb1\x2d\xd1\xd5\x17\x5b\xb1\x81\xef\x80\x57\x17\x55\xd6\x17\x9f\x1e\xed\x52\xef\xe1\x69\xa2\xac\xd0\x55\xc6\xa5\xbc\x72\x5f\x84\x37\x60\xa9\x8b\x94\xe3\x35\x2b\x0a\x54\x15\x58\xea\xee\x2d\xc3\x7b\xe4\x16\xb6\x56\x38\x31\xdc\x1a\x88\xea\xcc\x20\xf2\x72\x7f\x68\x28\xd0\x5b\x92\x30\x32\x4e\xb4\x6b\x7d\x53\x5e\xb4\x6b\x6f\x8f\x80\xb4\x3e\x8e\xea\xef\x10\x7a\x8e\xd8\x5b\x20\x9e\x0e\xa1\x48\x30\xad\x07\xde\x0c\x49\x7e\xb7\x66\x5e\x84\x81\x02\xf5\xba\xeb\xcd\x0c\xea\x75\xd7\xfd\x4c\xd0\x6b\xb3\xce\x09\x74\x1d\x72\xc4\x17\xce\x5c\xb5\xa7\xbf\xa9\xa3\x3b\x19\xb2\x63\x08\xc8\xbb\xd9\xf1\x94\x6f\xbe\x95\xd9\x86\x3a\xbf\xa9\xa2\xbb\x3c\xd5\xc5\xa5\x7f\xd5\xb6\x69\xa2\x09\x6f\xcf\x51\x05\x0e\xbb\x7b\xe7\x0d\x1c\xf6\x31\x24\xe1\xaf\x69\x53\xf4\x0c\x7c\x9b\xd1\x5e\x54\x85\x17\xb1\x4e\x11\xc0\x5e\xf7\x96\xbf\x7b\x18\xfd\xc3\x94\xd3\xda\x1d\xdf\xb4\x22\xbb\x09\xb0\x16\x2b\x71\xbe\xfa\x0b\xab\xc6\x02\x74\x5d\x8c\x53\x07\xe7\xba\xc8\x05\x5f\x35\xf1\xe2\xb3\x54\x14\xa2\x9f\x90\xd7\x72\x06\x20\xaf\xbb\xae\x56\xc0\x5c\xef\xaf\x98\x75\x21\x2d\xcd\xe5\xfb\xe2\x20\xac\x98\x05\xd0\xf5\xfe\x8a\xfe\x0e\xd7\x8f\x1e\x0e\xe7\xca\xdf\x31\xe6\xd9\x73\xee\x0a\xf5\x3b\x03\xf2\x7a\xcf\x0e\xb5\x92\x08\xac\x8d\x3f\x53\xec\x25\xbe\xb5\xd7\xe3\xaf\x58\x10\x1a\x5d\x40\xb5\x6e\x26\x78\x00\xd5\xba\xe8\xd1\x00\xaa\x75\xd5\x8d\xfc\x45\xd5\xf6\x76\xfc\x85\x59\x2f\xdd\x69\x5e\xf8\xb3\xea\xed\x3b\x73\x86\x7c\x61\x52\x7c\x36\x47\x98\x3b\x6e\xe5\x9c\xd0\x34\x96\x5d\x25\x8b\x77\xb9\xc7\x2c\xa0\x79\x0a\x4d\x59\xc4\x6a\x53\x4d\xbf\xc4\xf9\x98\x77\xf0\x5d\xb6\x40\xbf\x4d\x58\xe2\x8d\x0f\x50\xd6\x09\x50\x04\x78\x75\xd7\xdc\x03\x5e\xf5\x11\xa6\x50\x06\xa3\xba\x7b\x0b\x25\x44\x75\xf5\x02\xee\xc5\xc4\x9b\x54\xe6\x52\xa0\x85\x61\xbd\x98\x75\x35\xe5\xbd\xa6\x1c\xf1\x6e\xe3\x4d\x56\xed\xf1\x10\xd0\xc9\xc5\xc1\xb0\x9b\x84\xe9\x22\x19\x9b\x74\xe6\xf2\xa8\x2c\x5f\x6e\xa7\xd3\xd2\x52\x17\x16\xe9\x92\x27\xf2\x7c\x3b\x3e\x74\xc4\xf7\xce\x5e\xd1\xf7\xdb\x5e\xd1\x86\xbe\xbc\xe6\x91\x7e\xd1\x69\x35\x50\xbe\xa4\x1c\xd1\x3d\xe1\xbd\xa5\xa2\x88\x22\xaf\x2e\x39\x5e\x0a\x80\x7d\xdd\x95\xc8\xde\x64\xe1\xc5\xe2\xea\xdc\x4c\x8f\x2c\xdc\x9d\x93\xda\xee\xb2\x23\x0a\xbb\xc5\x2e\xca\x7c\xdc\x17\x26\xa7\xb4\x27\xe8\xb7\x79\xd2\xf0\xc1\x4d\x29\x1f\x54\xeb\x92\x1d\x01\x26\x42\xde\xf8\x6e\xde\x78\xa4\x6e\x0e\x30\xf5\x1e\xa0\xff\xd8\x13\xda\x53\x65\x74\xd6\x71\x9f\x91\xd5\x01\x46\x5d\x8f\x9f\xbf\xef\xd5\xd0\xb5\x02\x00\xea\xae\xc4\x2d\x00\x75\xe6\xea\x14\x74\x3a\xcc\x20\x2d\xd0\x74\x33\xa2\x14\xa0\xe9\xae\x80\x0b\x96\x74\xf7\x1a\x1f\xf8\xe8\xcc\xb9\x04\x7c\x74\xf5\x64\x7c\xc9\xc6\xe8\x93\x90\xd1\x25\x3f\xca\x39\x9f\xbc\x20\xb0\x77\x3f\x52\xf0\x0d\x5f\x54\x6e\xc2\xaf\x72\xa2\x6d\xf0\x43\xae\xe7\x2b\x2c\xbf\xc3\xc4\xfb\xe0\x41\x77\x4d\x34\xe0\x41\x77\x37\x15\x78\xd0\x87\xd7\xd9\xe0\x41\x17\xbd\x7b\x3e\x5d\x5b\xb5\xfc\x08\x02\x1d\x4a\x8c\xdf\x91\xab\x4f\x7f\x0f\xaf\x68\xac\x6b\x73\xb6\x2a\xb4\x87\x68\xcf\x60\x6a\x0e\xc0\x9e\x43\xd4\xc5\xcf\x44\x94\xe6\xa9\x4e\x7c\x67\xdd\x40\xc0\x71\xde\x2f\x16\xcf\x46\xfc\x07\x5b\x93\x83\x22\x8e\x57\xd7\xc2\xcf\x38\x5e\x69\x07\x08\xcf\xbb\x04\xc5\x49\xe3\xb1\xfa\xef\xcf\xc0\x34\xf0\x9f\xbb\xdc\xe4\xab\x6e\x0e\x66\x55\x63\xb5\x21\xf1\x9f\x79\xa4\xcd\x35\xff\x25\xf3\xe3\xac\x83\x00\x5d\x0c\x59\xfc\x6a\xce\x05\xf3\x97\xfa\xe7\xf4\xe5\x65\xc2\xfd\xca\xdd\xc8\x00\x9a\x8b\x42\x83\xf0\x35\x33\x95\x7f\x5a\x95\xf5\x84\xfd\x4c\x60\xc9\xa6\xfb\xf4\x6f\x31\x23\xf5\x67\x02\x4b\x6f\x29\x44\x64\xd6\xb6\xf4\x25\xfb\x9a\xbe\xec\xdd\xac\xa9\x07\x70\xe6\xbd\x23\xfc\x23\xa7\x98\x69\xe5\x16\xd4\xdb\x96\xcf\x84\xce\x87\x0d\xe6\x14\xfb\x92\xa7\x98\xfe\x76\xe7\x9b\x29\x49\x8d\x15\x42\x03\x86\xf3\x6e\xc4\x17\x85\x1a\x74\x29\x80\x9b\x8b\xf6\x08\xa0\x9a\xbb\x7a\xd5\x37\xdc\x5e\x50\xeb\xcf\x30\x5c\xaf\x38\x00\x62\xee\x3d\x4b\xe0\xb7\x6d\xb7\x36\xfb\xeb\xba\x2f\x80\xc9\x5c\x4d\xe1\xf6\xe1\xce\x2a\xf4\x1e\x70\xcb\x3d\xb7\x53\x9c\x3c\x33\x09\x84\xd1\x6a\xba\x16\x60\xb9\x99\x18\x40\x80\xe5\xa1\xea\x05\xa8\x72\xd7\x59\x02\x50\xe5\xae\x6f\x0d\xb8\xc9\x5d\x43\x30\xb8\xc9\xbb\xab\x74\x83\xf8\x5a\x83\x87\xbe\xc9\xe0\xdc\x97\xa4\xd9\x58\xff\x6a\x52\x0e\xf6\x23\xad\x15\x28\xbf\x22\x24\x0f\x35\xba\x6f\x66\xaf\x6c\x84\xbd\x83\x50\xf4\xad\x9c\x67\xbe\xc2\xed\x55\x7d\x19\x88\xe4\x5d\x82\x16\x57\x76\x8b\x56\x44\x5b\xf4\x12\xee\x5b\xb9\x75\xfd\xc7\xbb\x07\xff\x00\x31\x59\xee\xfc\x2d\x37\x86\x5b\x51\xec\xa4\x9c\x6a\x13\x6c\x9a\x40\x19\x98\xe4\xdd\x65\x2a\x23\x96\x56\x01\xff\x3b\x21\x2f\x70\x07\x60\x92\xbb\x2a\xc4\x27\xa6\x92\xf9\xf2\x3e\xf3\x80\x89\x28\x04\x34\x72\x57\x94\x02\xf4\x78\x37\x68\xb5\xd9\x20\xe3\xd2\x80\xec\x25\xcc\x07\x50\x83\xd9\x1a\x80\x43\xee\xea\xcf\x40\x20\x4f\x5d\x14\xbe\x8c\x7d\x41\x59\x03\x0e\xf9\x58\xde\x06\x01\x81\xdc\xd5\x2f\x3e\xc1\x93\xb4\x39\x7d\x62\x21\x9a\xba\xfb\xc3\xa3\x55\x33\xf3\x47\x08\x6d\x9e\xb5\xdb\x3d\xc0\x8a\xde\x38\x53\xbb\x9b\x74\x6e\xf5\xa2\xe6\x43\x19\x56\x14\x16\x28\x79\xa8\x00\x7f\xb7\x76\x00\x64\xef\xef\x71\x7e\x68\x02\xb5\x55\xb9\xf8\x23\x1c\x25\x87\xf1\xe4\x7a\xf8\x11\x07\xd5\x71\x3f\x9e\x47\xa9\x0f\x37\x9e\x6a\x00\x02\x22\xff\xda\x9f\xd7\x1a\xa0\x25\x57\xfd\xf3\x3e\x35\x50\x9b\x14\xcf\xd0\xbb\x9e\x2f\xad\xb4\x32\xab\x17\x8d\xdd\x5d\x03\x93\x55\x08\xf9\xd0\x2e\xbd\xc9\xfa\xd0\x2e\x93\x27\x7c\xee\x12\xa4\x56\xd0\x91\xbb\x9e\x1a\x00\x22\xf7\x5c\x8e\xcf\x45\xf3\xf7\xf1\xdf\xff\xc2\xf8\xc6\x0f\xee\x9b\x97\x25\xe0\x21\x77\x63\x38\x84\x40\x0e\xbd\x82\x85\x40\x3e\xbc\xd2\xf9\xe0\xc4\x18\xb0\xe2\x87\x51\x77\x72\x11\x16\xbf\x9f\x6d\x4f\x9e\x6d\xaf\xf0\x3c\xf0\xde\xf7\x1b\xb4\xa8\x3d\xb9\xf1\xfb\xb1\x45\xf6\x40\x03\xfc\xe4\x5d\xd1\xc1\x8b\x2b\xd0\x79\xf6\x74\x1c\xfe\xc1\x0a\xec\x65\x8a\xdf\x61\x6b\xc1\x73\xc7\xd5\xd5\xe7\xb0\xaf\x94\x26\xd3\x26\xe0\x95\x01\x00\x72\x27\x8e\x2c\xc0\x3f\xee\x60\x2c\x07\x98\xc7\x1d\x0c\xcd\xf8\x6d\x95\x32\x62\xf8\x3b\x8d\x6d\x22\x1b\x3f\x73\x40\x43\x94\xe2\x87\xaf\xd1\xc4\xcc\x17\xa0\x17\x47\x58\x13\xe1\xac\xc8\x63\x01\x7a\xf1\xcc\xc1\xa1\x16\x0e\x07\x6d\x68\x2a\xa8\x62\xf1\x23\x7e\xa4\x37\xfa\x0d\x6b\x04\xb8\x36\x7e\x5c\xdd\x1e\xdc\x4e\xc5\xaf\xe6\x80\x98\x57\x33\x65\x86\xa3\xa8\x39\x69\x34\x62\x70\x2a\x31\x94\xf1\x93\x1d\x36\x8a\xb4\xec\x2e\x93\xd0\xb2\x66\x9a\x21\x6f\xc5\xc4\xa8\x16\x89\x54\xcc\x8d\x4c\x24\x52\x31\x24\x3c\x40\x2a\x2e\xbf\x9a\x9f\x5d\x96\xa1\x6b\x4d\x19\xd0\x22\xd2\xf6\x4e\x67\x3a\x8b\xd3\xf9\xc3\xc4\xcf\xe1\x22\x74\x0f\x70\x61\xbe\x36\xe3\x34\xf7\x44\x80\x24\xdc\xc1\xca\x0b\x90\x84\x77\x09\xba\x8f\xe5\x75\x92\xbd\x3b\x84\x0c\x9e\x24\xbd\x0e\x70\x82\x8f\xea\xbe\x1a\x39\x7a\xbf\x7a\xfd\xca\xca\xd4\xe3\x98\x30\x91\x82\xfd\xdd\xec\x10\x68\xd8\xfb\x30\x58\xc2\xaf\xa6\xd1\x8e\x54\xbc\x79\x99\x59\xbd\xe3\x67\x72\xca\x83\x11\x86\x94\xc1\x21\x9a\xa8\x32\xec\xfd\x74\xeb\x53\xef\xcc\x7a\x99\x47\x80\x06\x7e\xce\x03\x4e\x38\xc3\x95\x33\xd2\x62\xd1\x36\xf7\x95\xe4\x3e\x0e\x60\x7c\x8b\xf9\x4b\x43\x1c\xdf\x46\x9c\x76\xfc\xcc\xe3\xc0\xad\x4e\xfc\x96\xab\x68\xb7\x60\x33\xab\xe7\x0b\x07\x2c\x8b\x28\x3a\x15\xff\xf8\x2c\xc2\xa8\x4e\x75\xff\xee\x0b\xee\xb2\xd5\x67\x88\x4f\xfe\x4e\x8a\xc8\xfc\x9d\xcd\xd5\xff\xb2\xf1\xc5\x0f\x5d\xae\xbb\x23\xae\x3c\x41\x8c\x1e\xc5\x6e\xfe\xdc\xdf\xf2\x96\xce\x62\x5f\x39\x64\xbf\x52\x55\x72\x32\x30\xb5\x92\x7e\x32\x7e\xc2\xeb\x57\xa6\x9e\x88\x0a\x6c\xc1\x01\x16\xef\xc4\x93\x27\xc0\xc9\x6d\x64\x6e\x8e\xdf\xed\x39\x71\x6b\xe3\x57\xd3\x3d\xe2\xb8\xcc\x60\x3c\x0e\xe0\x73\xf7\x47\xfc\x01\x9c\x4e\x0b\xc7\x8e\xa9\x12\x10\xac\xf8\xe9\x13\x1a\xf6\x83\xeb\x3b\x2c\x79\xf1\x93\x39\xb8\x19\xdf\x9c\x51\x3e\xc2\xad\x73\xfe\x3c\x71\x92\x67\xf7\xdc\x67\xde\x4b\x9f\x4f\xc7\x4d\x7b\x9f\xd5\xee\x3f\x00\x89\xdd\xbd\x2a\xbc\x70\x51\x06\x81\x3d\x7e\x79\x90\x82\x17\xb7\x19\xfb\xe1\x48\x3b\x5d\xf7\xb3\xe9\x3f\x8d\x17\x07\xe2\x73\xee\x07\xbf\xb2\x8f\xc5\x26\x51\x7c\x21\xac\x47\xea\x2e\xd4\x7b\x58\xda\xdf\x4f\x20\xb8\x06\xcf\x6c\x93\xe1\x73\x12\x81\x3d\x58\x30\x5f\x77\x47\x7c\xd1\x2f\x86\xd2\xe4\x1f\x44\xc7\x8f\x84\x73\x5d\xf6\x36\xd5\x8d\xe2\x3f\xd6\xc5\x94\x1e\xc5\x1d\xeb\x70\x37\xd9\x14\x53\x35\x40\x7a\x3d\x9a\xdc\x05\x40\xd7\x22\x31\x3e\xaa\xf4\xac\xfa\x87\x57\xd5\x34\x82\x6f\xca\xc1\x9d\x59\x1c\xda\xba\x90\x92\x03\x54\xd5\x00\xf3\x3c\x00\x55\xdd\xf5\xfa\x55\xa6\x33\x63\x15\x20\x7a\x98\x63\x03\x28\x55\x13\x1d\xc7\xd1\xe5\x85\xce\xa8\x79\x81\x97\xc5\xb5\x82\x71\x43\x15\x20\xae\xee\xcf\x18\x23\x9e\x2a\x60\xe4\xc4\x41\x62\x60\xb0\x4e\xe2\xe8\xd2\xfc\xea\x0b\xb7\x82\xcb\x67\x37\x0a\xd4\xe5\xd0\x3e\x56\x2d\x2d\xcd\x73\xb8\x23\x11\xd1\x69\x10\x9f\x14\x00\x63\x02\xbc\xd5\x0a\x18\x71\x00\xb7\xda\x49\x59\x15\x87\xba\x42\xf8\x3b\xa9\x34\xa7\x15\x79\x01\x37\x2c\x4c\x84\x87\x1d\x1f\x4e\x02\xdd\xc0\x4b\x12\x97\xfe\x38\x42\xfe\xe4\x1e\xdb\xf4\x52\x7b\x48\x1c\xd3\xd9\x71\x0e\xf0\x59\xec\x2e\xc7\x94\x0e\xdb\xd7\xa9\x18\x67\x71\x52\xe6\x01\x96\x1c\xc7\x4c\x27\x49\x9e\xd5\x5f\x20\x46\x07\x86\x2e\x9c\x16\xe2\x48\x19\xdd\x93\xb3\xa9\x67\x45\xcd\x8f\x83\xeb\xa6\xee\x86\x5b\x9e\x15\xd7\x92\xec\x77\x84\xa0\xc4\xb1\x72\x6a\xd9\x62\x4b\x36\xe7\x02\xe0\xbb\x51\x3d\x05\x67\x8e\xe3\xaf\xf8\x8d\x38\xce\xe2\x97\x74\xed\x64\x2c\x4e\xaa\x74\x15\x92\x75\xa4\xc4\xed\x99\x46\xe2\x26\xd4\x21\x84\x2b\x5d\x88\xdc\x71\x5c\xfa\xdf\x2e\xba\xa6\x64\x3d\xe9\xcd\xa5\xa4\xeb\x88\xf1\xbb\x00\x60\x21\x8e\x2d\x4c\x4f\xd4\xb4\x38\x14\xa0\xe1\xff\x87\xf9\xe9\x97\xa7\xf5\xe6\xb2\xc6\x9a\x6e\x6b\xf5\x77\xf5\x26\x8f\xba\xce\xf5\xcb\x43\x75\xdb\x04\xbd\x25\x99\xcc\xb2\x4f\xdc\x0d\x75\xe7\xf1\x51\xaf\x77\x63\x29\x7d\x4f\x3f\xea\xec\x63\x3f\x52\x71\x70\xe7\xe3\x43\x01\xa0\x47\x1c\x8f\x1c\x1e\xf1\xf2\x78\x5c\x92\xe6\x3f\x12\x29\x3b\xb2\xc9\x6d\x6b\xee\x76\xe2\xc4\xbb\x7b\xe3\xd5\xc0\xc2\x90\xcc\x13\x63\xb5\xc4\x8a\x91\x21\x37\x0e\x85\xea\x65\x59\xc3\x96\xe9\x2b\xe8\x65\xd5\x25\x37\x6d\x1d\x2a\x56\x00\x49\xda\x49\x98\x16\x20\x8f\xee\x2e\xd1\x02\x17\x2d\xdd\x93\x89\x2f\x7e\x97\xc0\x7d\xb6\xe0\x37\x84\x8d\x48\xac\x30\x5c\x11\xe3\x12\x40\x8f\x1e\x0d\x40\xed\x28\x9b\x80\x57\xdc\x11\x43\x0c\xd1\x09\x5a\x5e\x80\x15\xda\xc9\x5a\x1e\xe0\x83\x76\xb2\x72\x47\xd1\x85\x01\x13\x40\x08\xfe\x39\x30\x74\x47\x31\x48\x1a\x45\x31\x44\xff\x14\xb2\x3f\x8a\x42\x2f\x27\x02\xc4\xcf\xdd\xba\x5f\x7d\x16\xa1\x45\x83\xa9\xd0\x93\xa3\x10\xf8\x8c\x1f\x58\x80\xd3\x59\x49\x3f\x13\xc5\xf8\x29\xa2\xeb\xa3\x90\x20\x9e\xac\x46\x51\xb8\xf5\x20\x03\x73\x94\x14\x75\x91\xc9\x00\xed\xec\xe4\x06\x8e\x82\xa8\x8b\x67\x62\x80\xd9\xb9\x47\xdb\x78\x21\x49\x2d\x32\x02\x00\x9e\x55\x11\x5d\xfc\xce\x86\x57\x65\x08\xe0\x39\x95\xa3\x4a\x02\x8b\x2d\x8b\x13\x61\xe7\x2c\x92\xde\x8d\xb8\xc4\x00\xa7\x73\x17\xe7\x23\x53\xaf\xfc\x9c\x39\x53\xbd\xa2\xa6\x46\x31\x6e\x1a\x35\x35\x00\xea\xec\xa4\x26\x0d\x70\x3a\x2b\xb9\xc3\x02\x9c\xce\x8a\x2f\x45\x80\xcd\xd9\x01\xf6\x0c\xb0\x39\x23\xe7\xd3\x68\x6a\x94\xd1\x00\x75\xb3\x2a\xea\x00\xba\xb9\x3b\x42\xd7\x7b\xae\xb3\xff\xec\x89\x26\x91\x66\x94\x4d\xef\xc3\x33\x2d\xd0\xe6\x42\xe9\x0c\x80\x36\x05\x24\x08\x80\x36\x77\x55\x74\xca\xf4\x29\x4e\x42\xcf\xc6\x99\xe9\xfe\xc1\x75\xf9\xc8\x1c\xf1\x68\xbf\x21\x04\x67\x85\x08\x96\xcd\x20\xda\xaf\xfb\x91\xdc\xc9\xd5\xe7\xce\x84\xbb\xea\x00\x8d\x73\x97\x9e\x7f\xd1\xbd\x02\x9b\xe8\xd9\xa6\x8c\x13\x11\x0e\x78\xce\xfd\x42\x37\xc1\xdf\x1e\x4e\x11\x36\x25\x32\x68\x46\x89\xdc\xbe\x4c\x6a\x28\xbd\x38\x16\x80\x3b\x8b\xdd\xc7\xaa\xc4\x65\x57\x80\xc8\xd9\x87\xbd\x0c\xc5\x04\xdb\x23\x30\x8b\x54\xac\x51\x30\x30\x91\x6d\x31\x80\xe7\xec\x24\x7a\x0c\x20\x39\x77\xff\x98\xf8\xcd\x7d\xfa\x70\xfb\xe1\x31\x7f\x28\xc3\x95\x34\x17\xd9\xde\x94\xd3\x3a\x8c\x65\x5d\xb4\x91\x56\x21\x27\x72\xb1\x7f\x5c\x76\xf3\xa6\x71\xe9\x12\x45\xa3\x0e\x02\x59\x39\x2d\x4d\x81\xd3\xc6\xfd\x46\x22\xd3\x7d\x81\xee\xc1\x3a\x8a\x01\xcb\x91\x2f\xd9\x11\x1a\x27\xb7\x09\xfe\x4d\x51\x2e\x79\x94\x7d\xbf\xe4\x04\x0c\x8a\x3b\x94\x21\x69\xb8\x54\xb2\xa6\x2f\xf8\xf8\x17\x3f\x5a\x7c\x64\x4d\x12\x2f\x5a\xc0\x56\x53\xf1\xf7\x8f\x72\x2b\x2d\x3b\x56\x7d\x17\x5c\x01\x82\xb4\x86\xa4\x84\x3b\x90\x1c\x2a\xc6\x9a\xe1\x41\xcb\x3b\x90\xe9\x47\xaa\x9a\x88\x63\x20\x6b\x1e\x93\xa4\x06\x01\x9c\x66\x1f\x76\xca\x94\xea\xf9\xec\x28\xe8\x94\xc8\x26\x88\x59\xc5\xbc\xe9\x0a\x2b\x82\x60\x86\x8b\x04\xee\xe5\x0f\x09\xa3\x98\x18\x55\x71\x03\xb0\xcb\x0e\xd8\x62\x00\x76\xb9\xb5\x3e\x5f\x6c\x82\x09\x34\xe6\x58\x5b\x46\x21\x41\x7a\x75\x77\xbe\xb8\x9e\xe4\xef\x38\xc7\xb8\xa7\x04\xb5\xcc\xf6\x92\x91\x54\x5f\x58\x63\x87\x0a\x23\x51\xb9\x2b\xf0\x91\xe1\x26\xfc\x54\x56\x10\x81\xca\x97\xfe\x56\x96\x36\xe6\x9f\xb6\x3f\x72\xbd\x7a\x30\x3e\x4f\x3c\x25\xaa\x99\xd3\x35\x3c\xd4\x64\x25\x90\x12\x60\x2a\xfb\xc8\x3f\x2e\xbf\xf2\x0f\xa5\x6e\xbf\x3a\x24\x8f\x90\xf9\x44\xa3\x5c\xf9\xc2\x0a\x56\x9f\x1d\x48\xe5\xd9\xa0\x80\xc9\x33\xac\xc0\x6a\xb1\xab\xe0\x25\x11\xf5\xd0\xe4\x98\x85\xf7\x56\xe5\x7e\x22\x6a\xc9\xee\xf2\x15\xf9\xca\x35\x87\x54\x52\x71\x90\xbc\x31\x00\xb2\x3c\x06\x37\x7c\x21\x92\x65\x23\x49\x41\x00\x65\xd9\x41\xc9\x0b\x90\x2c\x0b\x9e\x2e\x01\x90\x65\x25\xe0\x35\x6a\x71\x4f\x65\x69\xce\xcc\xf4\xf9\xa3\x83\x7c\x94\x6a\x04\x82\x0a\x08\x97\x7b\xd8\xbe\xb8\x9a\xf1\xd7\x1d\x6f\x54\x72\x96\x13\xe6\x1a\xe0\x62\xee\x2a\x7c\x11\xf8\xcd\xea\xd8\xfb\x44\x1e\x45\x4d\x56\x86\x0c\x00\x2c\xe6\x7e\x61\x52\x31\xe0\x90\x19\x26\xc0\xc5\x3c\x8a\x03\x13\x59\x9a\x6c\x02\x01\x2e\x66\xf1\xfc\x57\x98\x17\x99\x76\x02\x18\xcb\x4d\x67\xa9\xb6\x6b\x1e\x84\x55\x83\x57\xb9\xdb\xe0\xb3\xae\x15\x01\xb2\x04\x2c\x65\x27\xcb\x48\x00\x4b\xb9\xcb\x33\x4b\xc4\x5c\x55\x67\x6c\xe8\x90\x6b\x17\x8d\xb9\xd5\xa0\x06\xe0\x64\x27\x29\x47\x00\x38\x59\x8e\x65\x23\x38\xbb\x0f\xd7\x74\x28\x54\xc3\xa0\x6b\x5a\x6c\x10\xdb\x2a\x79\x3e\x09\xec\x0a\x11\x27\xe7\xcf\xfd\x61\x5a\x0d\xd8\x04\x20\x93\x7d\xe4\x33\x76\xc4\x2c\x40\xdb\xdd\xef\xb3\x6d\x76\x20\x77\x12\x64\x77\x08\x30\x26\x3b\xc9\x21\x42\x8c\xc9\x46\x66\x83\xa8\x72\x89\x65\xa7\x66\xb6\x4d\x1b\xc6\xef\x12\xb1\x1f\x62\x49\x72\x5f\x14\x40\x49\x56\x39\x6c\xd5\x23\xbd\xfa\xec\xd1\x9d\xbe\x60\x9d\x82\xb6\x57\x13\x7a\x72\xb5\x18\x40\x46\xee\x17\xfe\x49\x9e\x01\x67\x11\x33\x72\x82\x53\x11\x35\x0d\x3e\x30\xf5\xea\xb5\x02\x94\xad\xea\x23\x97\xe7\x67\xc9\x21\xa7\x5f\xb9\xd3\x11\xc3\xc1\x7d\xdc\x6b\xc5\x3f\xa7\x46\x34\x0f\x8d\x89\x32\x88\x8f\x0e\x40\x1d\x0f\x7d\xf4\x42\x54\x47\x2d\x0f\xa2\x3a\x1e\xcb\xa9\x38\xa5\x43\x1e\x28\xb1\x1c\x97\xc3\xbc\x10\x1e\x60\x80\x15\x4b\x0e\x70\x6d\x01\x96\xe3\xd1\xc8\x82\x16\x55\x4b\x0e\x19\xce\xa2\x5e\x6e\x7a\x8f\x1a\x0a\x8c\xf0\x69\x01\xe6\x63\x27\xdd\x41\x54\xee\x0c\xda\xbf\x3f\x9e\xbd\xda\xae\xf0\x25\x8b\xf7\x04\x00\x00\x49\x2a\x83\xa8\x70\x21\x82\xc3\x02\x9c\xc7\xfd\x11\xfd\xbd\xdd\xe7\x4e\xeb\xed\x66\x61\x56\x6e\x7c\x69\xdc\x50\xb7\xee\xbe\x7e\xe3\x3e\x75\x7f\xa4\xfe\xe3\x0c\x13\x7b\xf5\x93\x5a\xc9\x9e\x3c\x7d\x18\x92\x1a\x69\x0a\x02\x00\xc8\xa9\xd9\x2b\x01\x20\x97\x4b\x62\xc0\x95\xfb\xc6\xa4\x99\xd3\x0d\xf5\xe4\x8c\x52\x17\x6e\x6e\xc3\x71\x70\xcd\x80\x4b\x50\x08\x00\x39\x7f\x6e\xc7\x97\x88\x75\xb7\xf6\x9b\x51\xf8\xf4\xea\xf5\x90\x30\xf0\x37\x07\xee\x1f\xf2\x02\xb4\x98\xfa\x66\xeb\x74\x8b\x14\x19\x04\x0e\x07\x50\x90\x15\xcf\xea\x00\x09\xb2\x93\x48\x21\x2a\x86\xab\x31\xff\x0a\x61\x0b\x81\x21\xdb\xc4\x58\x2c\x32\xa4\x16\x44\xd0\x20\x77\x67\x58\x2b\x1c\x00\x86\x7c\xe5\x73\x3f\xa0\x2d\xd5\xe4\x7e\xa8\x48\xf5\x53\x7a\x74\x15\xf5\x06\x20\xf8\x2c\x2a\xf9\x33\x96\xdd\xff\xe4\xe8\xac\x56\xd3\x95\x8d\xfb\xb3\x68\xbf\x9c\xb1\xc1\x8b\xae\xf3\x95\xe7\xec\xe4\xe4\x85\x19\xcb\x3f\x06\x39\xe5\x7c\x86\xc4\xb0\x9b\x41\xa9\xac\x9a\xa2\x9a\x5e\xe9\x5c\xb6\x47\x3b\x94\x69\x99\xd5\xa6\x97\x1b\xd8\x26\xd1\x4a\xba\xb8\xd3\x46\x31\xc8\x83\xaf\x0c\x4f\x76\xbe\x9b\x6c\x8e\x13\x07\x68\xe4\xd4\xc4\xd9\xe4\x72\xc4\x6c\x07\xa8\x91\x93\xbc\x64\x01\x68\xe4\xd4\x5a\xda\xd2\x76\x16\x96\xf6\xc0\x1c\x36\xee\x86\x5a\x16\x47\x88\xb3\xf3\xaa\x5e\xb0\xa2\x56\x09\xda\x81\x0c\x34\xdd\xc2\x1d\xf8\xe6\x5d\x15\x6f\xa3\x00\x4b\xb2\x12\x2c\x1a\xcd\xbb\x87\xe9\x88\xf0\x3d\x23\xb7\x41\x80\x1f\xd9\x49\x48\x10\xad\x29\x7b\x5a\x2b\xb7\xef\xc0\x12\x45\xcb\x6b\x08\x48\x48\x6b\x39\x07\xbe\x24\x57\x61\x99\xc4\xe9\x22\x3a\x39\xc0\x9f\xdc\x2f\xac\x66\x73\x03\x20\x31\x35\xbd\xcc\x88\xd9\x0d\x41\x27\x27\x98\x19\xd1\xd2\xbe\x86\x9a\xdc\xba\xd3\x4b\x33\x3d\x6b\x66\x82\x70\x26\x1f\x8e\x31\x75\x2c\x4b\x5f\x78\xe0\x5b\x2d\xc2\x4c\xf8\xfd\x63\x13\xf4\x04\x15\x4b\x65\x02\x24\xca\xae\x4e\x06\x10\x65\xf3\x3a\xa6\x8d\x24\xbf\x74\x83\xcb\x8d\x91\xcf\x8d\x94\x3c\x3e\x0f\xbb\xc4\x02\x0e\xbb\xe4\x33\xb3\x0b\x8b\x68\x23\x27\x81\xe9\x19\x3a\xc4\xe6\x3f\xb2\x15\xf7\x37\x17\xf6\x84\x8c\x44\x93\x9d\x3a\xa1\x91\x33\x45\x83\xa1\xb8\xe5\x3a\x13\xaa\x2c\x41\x10\xd1\x92\xc8\xf6\x68\x2a\x54\xf0\x97\x86\xd9\xae\x4d\x37\x80\xdc\xf1\x70\x1b\x1b\xf2\x85\xde\x0e\x3c\xe5\xfe\x83\x6a\x27\xbb\x75\xf8\x11\x14\x1d\x1e\x92\xb8\x95\x1a\x8c\xc4\xad\x6c\x84\x02\x07\xb8\x95\xfb\x1f\x1a\x59\xb9\x98\xcc\x83\x77\x1b\xe0\x8b\x44\x5b\x9e\x09\xa4\xce\x06\x5a\xf2\xc4\xb7\x28\x5a\x9a\xee\xdc\x5b\x86\x5d\x91\x65\x37\x00\xaf\xec\x44\x95\x07\xe0\x95\x53\x3b\x7e\x3b\xb3\x7d\x5a\x39\x73\x5c\xb4\xaf\x4e\x66\xf7\x49\x4a\xd9\xc8\xfc\x14\x4d\x1e\x7a\xfc\xfe\xbc\xf7\x00\xe6\x72\x2f\x12\xdd\x51\xaf\x9b\xb6\x9a\x23\xa0\xd3\x19\x00\xed\x3c\x9f\xd2\xe0\xc3\x17\x57\xbc\xda\x1f\x0c\x19\x5e\xb1\x36\xb3\x6c\x68\x4d\x02\xf6\xf2\x50\xa6\x6e\xc9\x6e\x11\x66\x45\xb3\x9c\x24\xa7\x8d\x76\x65\xcd\x74\x80\x98\xe6\x79\x48\x7b\x04\xd8\x92\xde\xe8\x97\x4e\x44\x6a\x34\x21\x2d\x88\x42\x0d\xc0\x2a\x77\x37\x7d\x61\x5f\xc2\x0b\x1b\x8c\x51\x4f\xd6\x68\x37\xbb\x0f\x36\x07\x58\x65\x29\x79\x0e\x60\x80\xc5\xdb\x47\x00\x2a\x3b\xb1\xbd\xd1\xb0\x00\x4e\x6f\xd3\xc0\xa4\xdc\x2f\x7e\x25\x81\x45\xb0\x6c\xe8\x6e\xc5\xfb\xc6\x86\x09\x90\x5c\x6a\xd1\xbc\x9a\x9f\x6e\xe5\x27\xe7\x85\x7f\xd4\xea\x60\x34\x80\x5a\xd6\xee\xb1\x25\x6f\x24\x31\xb0\x21\xa8\xe5\x52\xb3\x6d\x3a\xb9\xd9\x5f\x0c\x85\x43\x66\x22\x32\xd6\xcf\x7d\x41\x72\xe9\x21\x63\x21\xb9\x64\xf1\x4e\xb2\xbd\x39\xa7\x56\xc5\x7e\xf3\x4c\xbd\xcc\xe9\x21\xe1\xc5\x2d\x6e\x48\x90\x53\x27\x44\x28\x06\xc9\xb2\xaa\x7a\x37\xf5\x43\x4f\x88\x2c\xd2\xb3\xfd\xe5\x1a\xd2\x91\x4f\xdd\xad\xf9\xe2\x22\xb8\xd4\x19\x08\xcd\x6e\x07\xbe\x72\x7a\xd9\xd3\x81\xd0\x22\x60\x2d\x40\xb2\xec\x44\xb5\x85\x40\x96\x84\x9c\x45\xd7\x47\xce\x2b\xd0\x4e\x80\x15\x18\x62\xd1\x31\x41\x12\x1b\x16\xfd\xf7\xf2\xcc\x37\x87\x0a\x33\x9b\xa1\x13\xea\x5c\xbc\xe8\x04\x06\xb3\x13\x91\x15\x1d\x8f\xb7\x1f\x99\xd8\x42\x14\xcc\xa5\xd8\xde\x0f\xb5\xba\x69\x11\xc4\xd0\xea\x57\x7b\x76\x35\x26\x03\x82\x59\x01\x44\x09\x80\x2f\x3b\xe1\x5c\xd1\x45\xc6\x42\x94\xea\xe6\x04\x01\xfd\x25\xba\xa9\xa6\x95\x15\x01\xc4\x3c\xaa\x82\x7e\x17\x1a\xcb\xee\xc2\x83\x27\x40\x2d\xd1\x71\x98\x23\xe9\x4e\x08\x8f\xf9\x2b\x76\x8a\xfb\xfc\xe2\xcd\x6a\x17\x02\xc3\x39\x04\x1b\xab\x00\xad\x11\xe0\x66\xee\xba\xec\x0b\x60\x1c\xd5\x3f\x9c\x44\x66\xba\x90\x6c\x15\x9a\xd4\xeb\x8f\xeb\x4b\x9f\x49\x6f\x05\x83\x02\x36\x33\x4f\x4a\xdf\xbc\xb9\x48\xab\x40\xd0\xdc\xad\x31\x70\xbc\x01\x34\xa8\x01\xa1\xd9\x48\x44\x15\x40\x68\xee\x8f\x7c\xc1\x54\xcb\x76\x11\x42\xb3\x3a\xec\x6a\x8f\x6c\xcd\x23\x83\xf4\xdb\x5b\x4e\x21\xa5\x9b\x47\xd6\xe2\xe4\x97\x22\xee\x29\x3a\x36\xd1\xf8\x33\x75\x55\x00\xb6\xb9\x6b\xa0\xa1\xe6\xd9\x2e\x56\xb7\xa8\x82\xee\xb7\x93\x67\xe6\x0d\x53\xaa\x26\x93\x2e\x50\x46\xfe\xce\xe6\x3b\xec\x64\x9e\x78\x86\x22\x4e\x86\x5b\xbd\x67\xef\x69\xae\x73\x89\xe2\x92\xa7\x60\x50\x7d\x21\xf5\x81\xcb\xd4\xed\xa0\x5b\xa6\x2b\xdc\xd1\x46\xb7\x4f\x4c\x35\x1e\x7b\xe1\xea\xe3\xb1\x87\xef\x72\x80\xc8\x59\x34\xa4\x80\xc8\xb9\x67\xd1\x5a\x3f\x6b\xa5\x26\x72\x59\x12\x36\x1d\x1d\xd0\x8c\xe2\x2d\x2e\xf0\x9c\x15\xc7\xe9\xe8\xc3\xd9\x65\x6a\x44\xd0\x40\x58\x06\x8d\xd3\x34\x1b\x01\x1a\x67\x0f\xe7\x72\x38\x7d\xfe\x4e\xc2\x7f\xbb\x81\x13\x7b\x38\x1c\x14\x6b\xc3\xfd\xa2\xe3\xde\x17\xd9\x23\xf9\x1f\xfb\x0b\x4f\x08\xd5\x9d\xae\xc2\x4d\xde\x8a\x00\xc9\x73\xbf\x50\x02\x09\x41\xe3\x33\xb0\x9e\x3d\xf2\xb9\x4b\xd9\xfc\x88\x5d\x51\xac\x0a\x60\x24\xb7\x33\x6a\x79\x38\x66\xaf\x05\xc9\x52\x10\x02\x7e\x4e\x3c\xcb\xa2\x63\xb1\xf5\xc2\x20\xf1\x3e\x49\x33\x10\x1d\x2b\x6d\xb8\xa6\xe4\x35\x29\xde\x4f\x03\xeb\xd9\xc3\xed\x34\x59\x2e\xe7\x69\xcb\x1a\xd5\x5b\x65\x10\x3e\x77\x13\xd6\x24\x2c\x90\xcf\x1f\xcf\x54\x94\x32\x08\x64\x18\xbc\xcf\x43\x63\x63\x27\x0f\x76\xb8\x6b\x56\x36\x4d\xe9\xa5\xad\xd2\xd3\x47\xd8\x77\x38\x51\x4b\x32\x6c\x47\xc8\x83\xad\x49\xa0\x9f\x39\x9d\xf4\x16\xb7\xbd\x70\xc5\x84\xc0\x50\x4b\x04\xbe\xb3\x87\x13\x02\xf3\x27\x8d\x66\x74\x0d\xb9\xe0\x2e\x46\x27\xa0\x5b\xcf\x1f\x00\x38\x6b\x73\xd7\x5d\xd6\x4a\x07\x35\xea\x4e\xa9\xdf\x65\xad\x34\x7d\x29\x48\xc1\xd2\x81\xdf\xec\x91\xb5\x2e\x08\x0d\xdd\xb8\x64\x6b\x4e\x2d\xd1\xdd\x3f\xf2\xd2\x07\x58\x9c\x1d\xff\xb8\x00\x8b\xb3\x24\xd9\xbf\x93\xda\xf2\x11\x4e\x7b\x21\xed\xbb\xed\x14\xf3\x71\xe7\x50\xe9\x21\xbe\xf0\x5d\xa2\x78\x2b\x02\x78\xa0\x6f\xaf\x9d\xe9\x20\x62\x46\xe4\xef\x3a\xe8\x77\xab\xa2\x1f\xf0\x7c\xe1\x37\x87\xaa\x35\xf0\x9b\xbb\x2a\x5e\x30\x10\x47\x3e\x57\xff\xa0\x71\xe0\x2c\xc8\x99\x19\xfd\x81\x31\xb9\x5d\x1e\x4d\x59\xf9\x87\xb7\xa2\x96\x66\xaf\xfd\x89\xbe\x11\x40\x73\x56\xef\x72\xfa\x93\x3d\xb6\x6a\x15\x87\xfc\x07\x0e\x06\xe7\xee\xaf\x53\x87\x74\x00\x80\x67\x5d\xf6\x18\x31\x25\x2c\xf0\xe6\x7a\x32\x2b\x6a\xf0\x87\x8b\x2b\x52\xe7\xb2\x84\x04\x13\x99\xb5\x13\xcb\x3d\x8f\x2c\x22\x91\xf7\xa0\x02\xd7\xa5\x3b\x0d\xb8\x9d\xfb\x2b\x8a\x10\x6d\xa6\xdd\x5c\xdc\xce\x36\xf3\x0f\xd6\xc1\x3d\xca\x9d\xa6\x2e\x4e\xc3\xbb\x4b\x12\x0d\xc4\xc0\xed\x4f\xc7\x24\x71\x3b\x87\x86\x8c\xa1\xef\xca\x91\x5f\xb9\x09\x86\x9f\xe5\x48\x3a\x2f\xfa\x18\x40\x10\x41\xe4\xec\xba\x8c\x8c\x54\xb4\x69\x7e\xe0\x13\xa8\xdf\x0d\xf0\x9c\xbb\x2e\x2b\x66\x4b\xb0\x74\x40\x72\xee\x7a\x69\x3e\x45\x12\x28\x88\x00\x9d\xf3\xb0\xe2\x43\x8e\x64\xc5\x47\x0e\x98\x9a\x0f\x2d\xa7\xc3\x7f\xe4\x37\x56\x8d\x37\xa0\x6e\x26\x82\x6c\x16\x7d\x2d\x00\xd9\xec\xfa\x1c\x00\xb2\x79\xcc\xc3\x8e\xe1\x7a\x2f\x36\x5b\x80\xb2\xd9\xbd\xa7\x00\x65\x73\x7f\x45\x23\x29\x4a\x54\xff\x51\xc5\xb5\x97\xdc\x98\x7a\x09\x3f\xaa\x7a\x9b\xad\x68\x91\x06\xdb\x24\x04\xca\x8c\x7c\x56\x09\xb0\x93\x26\x94\xee\xf9\x0f\xb3\x87\xb6\x0e\x36\xe6\x2e\x4e\x5d\x4d\x59\x1d\x9a\x34\x44\xa8\x00\x02\x27\x40\xc4\xac\x8a\xfd\x22\x62\xb6\x69\xf7\xb1\x3a\x17\x10\xca\x62\xa4\xff\x8c\xbd\x54\x3e\x08\xbf\x52\x07\xc9\x17\x35\x6c\xdb\x4f\xa5\xde\x9d\x00\xaf\xcf\x4e\xca\xdf\x73\xf6\xb8\x36\x95\x90\x8d\xee\xb4\x42\x13\x47\x1f\x5c\xc6\xfa\x07\x84\x2c\x2c\x90\x13\x49\x55\xa8\xee\x91\x05\xf2\x0c\x30\xaa\x4c\x18\x8d\x72\x30\x46\xce\x17\xe5\x65\xb3\xe1\x57\x14\x47\x33\x1b\xc3\x35\x71\xb5\xf4\x2c\x04\x4a\x26\x44\xa9\x6c\xd3\x89\x44\xe5\xf6\x36\x6d\xa4\xca\xed\xa8\x88\x1d\xf3\xae\x0b\xcc\xca\xfd\x07\xb3\x25\xdf\x84\x05\x0f\x79\x25\x34\x15\x98\x4a\x83\x61\x03\x98\xca\x2a\xf1\x02\xa5\xb2\x93\xbe\x24\x46\x70\xfd\xe3\x7c\x06\xc9\x72\x30\x3a\x01\x51\xd9\xbd\x1b\x11\xa1\x72\x68\x3d\x1b\x13\x9b\xa4\x3d\x22\x7b\x98\x57\x1d\xc0\x55\x56\x35\xdf\x91\x5c\xb6\xfa\x87\x29\x6d\xe9\x1d\xe9\x58\x7e\x7f\x86\x7a\x84\x20\x97\x5e\x4e\x0c\x54\xff\xc8\xd6\xa1\x7b\xc8\x64\x43\xf3\xb7\x53\x40\x7c\x38\xe1\x30\x31\x56\x2e\x32\xe3\xe3\xf6\x54\xcb\xfb\x58\xb8\x24\xba\x7c\x0b\x8f\xa7\x2c\xac\x29\x24\x6b\xd5\xc6\x45\xcb\x4b\x31\x0c\xfe\x36\xf4\xd7\x01\x51\x20\x46\x2a\xfa\x18\x46\xc0\xab\x9c\xba\x17\x8d\x8c\x1c\xb7\xc1\x53\x22\x90\xff\x30\xbb\xd2\xb0\x53\xf2\xe2\xbe\xb8\x98\x6a\x97\x89\xe4\xcf\x24\x81\x8d\x71\xa9\xfc\x3b\xa8\x8b\xfc\xcb\xd2\xc6\x2b\xab\xa5\x8d\x2b\xf1\x19\xf7\xf3\xad\x74\x08\x57\x1b\x30\x51\xcd\xe6\x43\xc7\x1d\xc7\x71\xbb\x57\xed\xd4\x4d\x6a\x37\x84\x15\xf1\x27\x8b\xdb\xf3\xf6\xd0\xb9\xd9\xf0\x7a\x2c\x1e\x0e\x43\xc8\xf4\xb2\x18\x66\x13\x9b\x76\x04\x8e\xaa\x65\x7e\x24\x47\x95\x62\x3d\x76\xc4\x67\x4f\x8d\x7b\x0c\x8c\x4a\x0d\xf3\xe3\x01\xff\x1c\x6b\x14\x78\x95\x7b\x7c\xfe\x71\xa1\x9f\x59\x9a\xbc\x5f\x1e\x4c\x38\xa0\x56\x6f\x30\x2a\x6b\xee\x90\x57\x3a\xe4\x4e\x07\xec\x41\xe3\xf4\x78\x75\x7d\xa2\x85\x17\x09\x5e\xc2\x83\x9d\x5b\x33\x33\x98\x96\xbb\x7b\xfe\x11\xfc\xc1\x7a\xbf\x52\x5a\xcf\x15\x11\xdc\xda\x7c\x87\x80\x10\x3a\xf1\x25\xc0\xe5\xb4\xe3\x9b\x7d\x56\x32\x5f\xc6\x30\x6c\x5b\x97\xbc\xf1\x79\x9c\x5c\xe4\x0f\xea\x84\x22\x05\xc2\x65\x4d\x0a\xfa\xa9\xaa\xc1\xbc\x85\xb5\xcc\x5d\xf1\xe5\xe4\xd0\x45\x5c\x85\xf4\x33\x1c\x5f\x36\x4e\x4f\xb8\xc9\x55\xf3\x01\xb4\x72\x97\x18\xbc\x80\xff\x3a\xfd\xa3\x51\xba\xf2\x9c\xed\x4d\x5e\x18\x79\x96\x9e\x3c\x1f\x3c\xe3\xb7\x17\x16\xc8\x8d\x1e\xbc\x5c\xba\x95\xf1\xac\x97\x41\xe7\x59\xa5\x86\x33\x13\xc9\x46\xd1\xd9\x01\xa1\xdc\x13\x4a\xa7\x0e\x2d\x43\x98\x12\xe2\x50\xa8\x9f\x96\x71\x80\x16\x51\x34\xe6\x0c\x08\x43\xe9\xec\x02\x43\x59\x64\x69\xc0\x50\x56\x1d\x74\x22\xaf\x84\xd9\x54\x51\x1c\xac\x1f\xc9\xd1\x20\xd1\xc1\xcd\xaf\xd6\x6e\xd0\x26\x77\xdb\x96\xd0\x5e\xc6\xd6\x8b\x22\xed\xe7\xc4\x86\x09\x9d\xa7\xad\x54\xc9\x0d\xbb\x0f\x90\xc9\xfd\x0f\xcd\x54\x97\x0a\x52\x1e\xa9\x49\xff\x69\xf3\x8b\x2a\x23\x63\xf8\xf8\x21\x15\x3d\x44\xc0\x99\xdc\xd5\x31\x7e\xd8\xad\x86\xc1\x10\x72\x1a\x0c\xb5\x88\xe4\xa3\x70\x83\x30\x75\x73\x58\x82\x45\x2d\x3e\xcb\x46\xd9\xce\x02\x45\x2e\xcd\x24\xd1\xb3\x2e\x26\xb6\xbb\xeb\x39\xad\x81\x42\xab\x9d\x3c\x50\x68\x35\x24\x47\xcf\x7d\xe7\x4b\xf6\x91\x17\x94\xd5\xc1\xe9\x03\xe1\x31\xa6\x1b\x61\x00\x33\x86\x72\x10\x43\x69\xce\xd5\xc6\x91\x54\x65\x15\xe8\xc7\xaa\x7e\x1f\x79\x41\xec\xb2\x70\x41\xac\xf1\x1d\x4c\xc8\xcd\xe8\x6d\xc2\x4e\xf9\xac\x60\xe7\xa2\x84\x24\xa1\xfb\x52\xec\xae\x2f\xac\x3d\xe2\x57\x98\x3d\xd3\xc0\x11\xf0\x1b\xf7\xc8\x19\x87\x91\x67\x3a\xce\x80\xe6\xd8\x41\xc1\x08\xd0\x1c\xbb\x26\x6d\xd1\x1c\xc3\x58\x8e\x48\x67\x20\x38\x8a\xe0\x8c\x1a\xa8\x01\x64\xec\xa0\x41\x04\xb0\x8b\x5d\x23\x74\x98\x45\x4c\x13\x68\x78\x61\xab\x6f\x01\x48\x8b\xbb\x2a\xff\xf1\x6c\x60\x3b\x8a\x65\x5d\x8c\x57\x3f\x7c\x32\x28\x07\xc0\x89\x5d\xb3\x75\xa8\x36\x16\x47\x85\xaa\x38\x8b\x7d\x3c\x09\x75\xb1\x8b\xa2\x21\xe9\x7f\x08\x74\xe2\x9e\x54\xc6\x7e\x66\xc6\x71\x8b\x08\xe4\x6f\x91\x07\xa9\xce\xdf\x3d\x29\xc3\xe2\x6e\x27\x68\x28\x70\x8b\x5d\xb3\x37\x68\x8b\xc5\x44\xab\x01\xc0\x62\x2d\x1e\xc7\x4b\x71\xc1\x06\x2f\x98\x02\xa2\x43\x64\x1c\x98\xab\x70\xb9\x56\x4c\x36\xf7\xbb\xda\x75\x13\x49\x51\x6f\xc6\x00\xe4\x40\xe3\x35\x80\x89\xbb\x5a\xfe\x20\xc7\x89\x36\xde\x48\x47\x21\xc9\x8d\x6c\x0b\x7e\x26\x92\xe1\xd2\x4b\x11\x28\xc3\x5d\x9c\xaf\x9e\xec\xa2\xff\x58\x17\x7d\x97\x57\x69\x76\x00\xb2\xb0\x6b\x75\x00\xb2\xb0\x2a\x05\x82\x58\xd8\x35\x0f\xc4\x9b\xfb\x84\x06\xd1\xd6\x72\x7a\xd0\xd6\xa6\x04\xf8\xcd\x85\xa2\x89\xd7\x14\xa3\x7e\x24\x7d\xf1\x74\xbf\xa0\x8f\x22\xa4\x87\x81\x5f\xc3\xdf\x4f\x4b\x5b\xe2\xf6\xc5\xc6\x0d\xbe\xf0\x99\xed\x23\x35\x46\xbb\xd3\x40\x95\x58\x86\x53\xda\x20\x9e\x81\x2e\x99\xe0\x17\x16\x2f\x83\x22\x6f\x67\x25\x1a\x9f\xe6\x6d\x44\x0a\xe0\x08\x77\x83\x0c\x04\x5d\x4f\xe1\x1b\xa4\xc1\xf2\x5b\xf5\x2f\x0a\x08\xdc\xe0\x31\x41\xa0\x8a\xf9\xcb\x11\x0f\x5e\x96\xff\x1c\xbc\x58\xb7\xcf\x8f\x7f\x14\x5e\xdc\x8e\x88\x25\xf3\x70\xd7\x41\x03\x27\xb9\xbb\x54\x49\xc1\x2b\x34\xc1\x43\x4c\x6c\xcb\xe0\x98\x07\xa8\x84\xbb\xaa\xca\x8b\x04\x18\x96\x37\x0b\x9b\x19\x62\x0c\x10\xe1\x94\xa1\x27\x10\x21\xa0\xfd\x31\x53\xa5\xcb\x7f\xc8\xac\x66\x7b\x18\x84\xb5\xbc\x4f\xfd\x90\x90\xc7\x04\x1f\x9c\xa4\x01\x8b\x59\x9d\x7c\x4e\x25\x78\x83\xd5\xbb\x6d\x20\x06\x05\x9f\x88\x99\xda\x19\x32\xe6\xc4\x0d\x68\xe9\x0f\x3b\x61\x32\xea\xc9\xc2\x07\xaa\x5a\x82\x0c\xb8\x37\x1d\x55\xa5\xda\x05\x8f\x02\x1b\xb0\x93\xda\x2e\xa6\x51\x5c\x1e\x4a\xb0\x01\x8b\xe0\x85\x01\x04\x60\x11\xd8\x2c\x80\xfd\x9b\x3d\x8b\x9b\x2a\x96\x93\x28\xee\x9f\xa9\xd1\x62\x26\x23\x81\xf9\x82\xd0\xb7\x3b\x49\xc7\xb0\x7a\x92\x0a\x35\x66\xcf\xa5\x62\x5c\xc3\xa9\x73\x49\x06\x2e\x5c\x36\x3f\xbc\x46\x5a\xfe\xe1\xee\x3e\xfc\x87\x10\xc7\xe1\x1f\xd8\x99\xd8\xe8\x09\xd6\xf7\xef\x05\xe2\x68\x83\x41\x0e\xbc\x7c\x46\x24\x40\x2b\x07\x85\x6f\x2a\xa8\x80\xbb\xd7\x55\x7e\xa7\x20\xfe\xc6\x57\x81\xb5\x97\xde\xb8\x20\xe7\x75\x15\xec\x89\x1b\x8f\x5e\x1e\x73\x66\xf7\xa8\x75\x5a\x13\xdd\xd3\xf5\xd3\x15\x94\x0d\x60\x29\x00\x50\x6f\x8f\x9a\x2e\x6d\x9e\x50\x9b\x5b\x8c\x0c\x1b\xe0\x4c\xc5\xd4\xa1\x07\x78\xb2\x98\x4b\xbc\x50\x9a\x5b\x80\x79\xc3\x19\xa7\x21\x5b\x32\xdc\x89\x51\x51\x45\x1b\x3c\xbd\x63\x92\xfa\x3a\xe6\xd2\x18\xb1\x6c\x4f\xbe\x81\x54\x00\xa4\xde\x2e\xcf\xcc\x62\x62\x54\xa3\x9d\xc9\x37\x5c\xd8\x53\x1f\x66\xea\x3a\xdd\x24\xd0\x0a\xa1\xf3\xbc\xb9\x9b\xa7\xad\xfb\xec\xe6\xc9\x3f\x70\x6f\x34\xee\x0e\x18\xbd\xae\x76\x2b\x8c\x5e\x78\x45\x36\xaf\xec\x09\x13\x74\xb9\x93\xa4\x00\x22\xfa\x8f\xfc\x8c\xcd\x0b\xdb\x01\x24\xef\x50\x41\x12\x24\x6f\x92\x54\x37\x00\xc9\xeb\xca\xe4\xd3\x8b\x4a\x3d\x86\x26\x51\x0e\x2a\x2f\xf3\xca\x45\xa0\x5a\xd5\x28\x97\x96\x9c\x59\x0a\xd5\x82\xe7\x91\x90\x2c\xe6\xad\xdd\x7f\xfa\x51\xee\x4f\x3a\x72\x27\x47\xf0\x1f\xe6\x41\x62\x40\xbc\xd8\x1c\x7f\x4a\x80\x33\xd5\x2a\x38\xe8\xbc\x73\xb9\x18\x3d\x91\x12\x64\xea\x0a\xc0\xf5\xba\x16\x80\x99\xbc\xca\x1d\xf8\x38\x45\x4e\x31\x17\xa5\x2a\x7b\x80\xeb\xed\x69\xa1\x37\x8f\x02\xbf\x44\x44\xc6\xe5\xee\xcf\x7b\x52\x0f\xdb\xe3\xbc\xb8\x59\xd2\x86\x08\xa7\x9d\xaf\x17\x0b\x88\x5b\x82\xe7\x29\x02\x02\x9e\x57\xb5\xa4\xcf\xbc\xde\x74\x62\x5e\x17\xc2\x02\x5c\xba\xc0\x68\x01\xc5\x3b\x1a\xe9\x2b\x62\x7e\xd2\x00\xc7\xfe\xd9\x79\xbf\xca\xfe\xd2\x06\x29\x9c\x1b\x61\xcb\x21\x12\x5e\xd3\x27\x06\xf0\xbb\x3e\xa5\x3a\xf8\xf6\x4c\x05\xcd\xf9\xe5\x48\x76\xbf\x96\x29\x24\xbd\xec\x5c\xa9\x12\x35\x9e\xb3\x95\xc9\x0b\xa3\x42\xec\x5b\x5a\x0a\x47\x96\xf0\x1e\x80\xaa\xc8\xdc\x31\x81\x74\x0b\xa0\xe8\xba\x3c\x45\x24\x3a\x85\x38\x20\xe6\xba\x14\x08\x88\xb9\xdd\xc4\xe2\xc5\x9d\x5a\xfd\xea\xb6\x57\x16\x87\x32\xea\x8a\xb2\x8c\xab\xd0\x35\x7d\x81\x6a\x53\xf4\x20\x59\x1a\x0a\xf5\x1d\x16\x69\x4e\x63\xea\xd2\x1c\xa8\x8b\x85\x50\x73\x64\x9c\x88\x45\x9a\x29\x19\xf7\xe2\x62\x51\x56\xbf\xf0\xf4\x29\xba\x5e\xac\x22\xfd\x84\x09\x2e\xb1\x6c\x98\xd3\xa5\x7b\xeb\xf2\x2b\x7d\x7d\xbc\xd6\x04\x90\x6e\x97\xf7\x85\x41\x42\x42\x13\x77\x4e\x1f\xab\x55\x71\x3d\x86\xd3\x82\x41\xb7\xff\x18\xbc\x18\xfb\x45\x77\x6b\x0e\x97\x12\x20\xdf\xca\xff\x57\x3b\x00\xd5\xa0\x27\x84\x5f\x2c\x3d\xe6\x97\x3c\x4d\x5f\x8f\x25\x7a\x0d\x69\x29\x22\x61\xeb\x7e\x59\x57\xec\xf2\x9c\xec\xc5\x6d\xa2\x92\x0d\x70\x76\xc5\xbd\x0c\x9a\xdd\x9e\x51\x46\x48\xbc\x5e\xd1\x6d\x64\x91\xea\xa3\xe8\x29\xb2\xfa\x3e\x8a\x1e\xac\x05\xa4\x7e\xd1\xf8\x05\xe8\x5d\x97\x57\x2d\x93\x49\xeb\xbc\x0f\xea\x5d\x97\x6b\x2f\x3c\x66\xb5\x35\x83\x80\xd7\x01\x89\x88\xa5\xc6\x25\xd1\x5f\x6a\x5c\xcb\x26\x1e\x9c\x67\xe9\x39\x4c\x53\x13\xdc\xc2\x6b\x68\xfa\xfb\x70\xa6\x68\x8c\xbb\x41\x5d\x7d\x81\xb3\x2b\xcd\x15\x1f\xf2\xf8\xea\x1f\xe4\xe9\x75\xce\x47\xee\x17\x6b\xba\xec\x37\x7d\x1a\x06\x2b\xf3\x87\x97\x7a\x80\xcd\x05\xc0\x73\x55\x15\x1e\xb0\xb9\x3d\xcd\xbe\xd8\x71\x66\x50\x1c\x02\xfd\x51\x56\xe4\x29\xfa\x93\x06\x02\x3f\x57\x84\x45\x8e\xa5\x9e\x05\x15\x59\x18\x26\x8d\x7a\x5f\xe2\x1a\x34\x7f\x07\x22\x01\x72\xb8\xb0\x3f\x7a\xb9\x03\x2c\x5d\x97\x96\x2e\xd3\x78\x2c\xfb\x42\xf0\x9f\x00\x0b\x01\x60\xdd\x41\xaa\xff\x00\xaf\xae\x4a\x18\xd7\x66\xce\x55\x93\x21\xd8\x75\xc5\x5c\x75\xb1\x70\xb7\xcd\x10\x6e\xc0\xeb\xa6\x8a\xf9\x5a\x79\x20\x99\x3a\x94\xb7\xb6\x1c\x85\x5e\x47\xcb\x06\xb5\x45\x7a\xf2\x56\xf6\x84\x3e\x72\xe7\x27\xb9\x5f\x5a\x19\x81\xf3\x0b\x51\xe9\xf4\x98\x11\x94\x4e\x42\xbc\xe4\xc1\x7a\x8d\xac\x53\xe1\x15\xd9\x60\xc9\x84\x25\x34\xa2\xd5\x19\x8c\x21\x40\x9d\x04\x17\x80\xba\x92\xb2\x2f\x00\x75\x61\x2c\x1d\xf8\x74\x91\x5b\x94\x9b\x41\xc9\x2d\xf8\x74\xbb\x09\x5f\x72\x4c\xcc\xc9\x95\xd3\x4b\x17\x05\x37\x40\x49\x02\x86\xee\x00\x54\x21\x80\xa1\xab\xc0\xa1\x06\x30\x74\x85\x6c\xa1\xb1\x64\xba\x98\x14\xd6\xed\x2e\x43\xaa\x5c\x5e\xfa\x19\x6b\x02\x0c\xdd\xfe\x87\xaa\xcc\x55\x99\xc4\x84\xb0\x43\xdd\xaa\x97\x49\xaf\xcc\xdc\x00\x28\x5d\x31\xd8\x04\xc0\xb9\x92\x42\xb8\x20\x73\xd9\xfa\xa3\x77\x0f\xbd\x7a\x92\xaa\xf9\xd2\xa9\x96\xd2\x3a\x1a\x01\x9a\x19\x22\xd1\x35\xab\x7d\xb2\x3d\xff\x90\x8e\x66\x71\xe9\xa8\xd3\xfe\x78\x65\xcc\x1f\x9a\x29\x75\x35\x59\x98\x29\x97\xe4\x83\x4c\x93\x45\x87\x12\x20\xeb\xfa\xb2\x5b\x9b\xfb\x86\x57\x14\xa0\xd7\xed\x8f\x98\x20\x9c\x73\x35\x18\x89\x64\x97\x14\x95\x8b\x3d\x7d\x3a\x05\xaf\x5b\x23\x0b\x5c\x76\xca\x26\x6e\x4a\x58\x5a\xe1\xcc\xaf\xc8\xd8\xdc\x3c\xdd\x9f\x5b\x1f\x81\x6a\xa9\xed\x91\xfd\x31\xc0\xa5\x3b\xb4\x8b\x2e\x5d\x88\x0e\xc8\x28\xf8\x73\x87\x12\xff\x69\x28\x89\x31\x3b\x40\xce\xed\xc9\x0a\x5e\xf0\x98\x51\x28\x38\x49\xd9\x5c\xf4\xd1\x39\xb1\x3b\x7a\x54\x4f\xd4\xbe\x66\xe2\x8a\xd3\x04\x1f\x60\x7e\x06\xd0\x74\x55\x59\xe5\x4c\x16\x4d\xbf\x4e\x2e\xf3\x3c\x78\x27\xec\x5a\x57\x55\x61\xea\x9a\x69\x2b\x80\xa3\xab\x6e\x77\xe1\xe8\x26\x20\x97\x01\x1c\x5d\x78\xd5\x02\x04\x5d\x31\xcc\xe7\x4c\x76\xdd\x7d\x21\x9f\xdd\xf4\x19\x29\xcd\x9c\x17\x40\xd0\x75\x77\x1f\x10\x74\xdd\x23\x71\x96\x9c\xc5\x3f\x7d\x9f\xcf\x92\x33\xc1\x80\x8b\x14\x94\x23\x73\x7a\xb1\x67\xda\x0b\x00\xe7\x0a\x58\x49\x71\x16\xb7\x36\x72\xc8\x69\x4e\x2d\x9d\x10\x4e\xd2\x66\xe5\x7c\x73\xfd\x07\x82\x76\x80\x38\xd7\xb3\xcb\x55\xbe\xd3\x2d\xe0\x74\xb3\x0d\x84\x9c\x5b\x06\x49\x81\x39\xd7\x73\x1d\xb0\x53\x82\x88\x12\xa7\x11\x27\x76\x97\x80\x93\x9c\x60\x75\x50\x36\xf6\x89\xc5\x52\xeb\xed\xc9\x95\xa0\x01\x2e\x27\xd9\x23\x73\x40\x2d\xcf\x3a\x7d\x4d\x36\xee\xae\x69\x9a\x03\x69\x2d\xf5\x54\x94\xd6\x53\x3d\x55\x1f\x10\x60\xe8\xfa\xbf\x12\xb7\xc5\x2d\x82\xa7\x4d\x58\x2f\x59\x32\xd0\x4d\xce\xd4\x5f\xe9\x08\xce\x3f\x7a\x7a\x00\x41\xb7\x6b\xa5\x70\xf7\xdc\x23\xef\x9d\xdd\x59\x63\x18\x5d\x6a\xdb\x2d\xae\x1e\xcf\xf1\x3e\x7b\x2e\x13\x8d\x74\x95\x2c\xa4\xa1\x13\x90\x87\x5f\x75\x63\x0f\xdd\x62\xa8\x78\x64\x93\x14\x49\x36\x8d\xfa\x76\x0e\x47\x45\xc7\x52\xfb\x85\x53\x9d\x3a\xf4\xba\x1b\x47\xb6\x48\x5d\xdc\x21\x9a\x92\xe1\x0c\xb3\x8d\x51\x3a\xdc\xe4\x6e\x66\x52\x95\xe8\xe7\x0b\x56\xdd\x2e\x6d\x09\xdb\x63\x20\x5a\x45\xc3\x02\x9c\x29\x77\x58\xf2\x67\x67\x6b\xf3\x67\x53\xae\x05\x20\x76\x7b\x09\xa9\x69\x0a\xbf\x47\x9f\xa6\x44\xdd\xf6\x48\xc7\xa5\x77\x23\x80\x76\xe5\xc0\x10\x75\x12\xc3\x1f\xe6\x9f\x38\x05\xa7\x1f\x76\x84\x1b\x41\x73\x2d\x9c\xa9\x63\xbb\x84\xd3\xe3\x61\x23\x4b\x69\x1c\xd9\xe8\x4c\x86\xed\xea\x92\x4e\x5a\xd7\xf0\x13\xe6\x0d\xda\x79\x88\x7b\xb7\x0c\x99\x3b\x09\xef\x37\xbd\xc2\xc9\xcd\xa1\xf9\x11\xc4\xc3\x33\x6b\xc3\xb9\xec\x08\xc3\x58\x39\x0b\xf4\xd0\x8c\x5b\x90\xc2\x53\xaf\xe0\x9c\x43\x9d\x7f\x73\xe2\x4e\x26\xd7\x79\x3b\x13\x59\x8b\x67\xb7\x8f\x54\x8a\x80\x4c\x9d\xf9\xc1\xc3\xab\x32\xeb\x13\x73\xaa\x31\xfe\x40\xe3\xed\x5a\x99\x11\xbc\x76\xd7\xc8\x17\x7b\x4e\xdb\x7a\xf0\x9a\x82\xe6\x44\x47\x56\x57\x10\x28\x6f\x8d\x7c\x51\x53\x0a\x8b\x43\xbe\x60\xbe\x20\xe5\x1d\xcd\x75\x22\x08\xd3\xf0\xfd\x13\xb5\x98\x2c\xaf\x21\x82\x5e\xcb\x19\xc1\xce\xaa\x33\xf7\x79\x9b\xfe\x06\xc1\xf3\xbc\x95\x2f\xdb\xef\x4f\xe2\x87\xce\xac\x0b\xcb\x69\xd2\x69\x77\xb8\x21\x9d\xde\x43\x9e\x98\x6d\x8d\x5a\x3f\xef\x64\xb2\x96\xb0\xf7\x4c\xe3\x83\x91\xce\xf6\x37\x87\x6f\x3a\x8c\x02\xe0\xd7\x57\x3e\x3b\x12\xa6\x54\xd5\x57\xdf\x26\x40\xfb\xaa\xb1\x8c\x60\xf6\x75\xe3\xb4\x80\xe9\x0b\x6f\x7e\xcf\x57\x1e\x49\x63\xaf\x59\x97\x29\x0b\xa2\x82\x26\xaa\x93\xa4\xd0\x66\x07\x02\xbe\x6f\x7a\x3b\x72\x7a\xa5\x08\x24\x4c\x9c\x6f\xce\x0e\x2d\xa0\x35\x27\x95\x7d\x95\x13\x7d\x96\xbf\x22\xfc\x9c\xaf\x5d\xb2\x2a\x92\x78\xb9\x2d\xf0\xcd\x31\xda\xf8\x4c\xb6\xed\x6a\x7c\xca\x6d\xb2\xda\x2f\x01\x31\x78\xc6\xf9\x53\xd2\xfa\x29\x33\x30\x08\x52\xc9\xe4\x9e\xf8\x72\x66\x2c\x9c\x62\x02\x6d\x1b\x40\x63\x04\xe7\x89\xdf\xb0\xe1\x82\x80\x05\x76\x63\x98\x81\x07\xec\x56\x7b\xfd\x98\x8f\xe1\xb3\x7a\x3c\x87\xec\xfa\xb9\x5d\x20\x4e\x62\x05\x1a\x27\x03\x56\x60\x97\xbc\x5c\x24\xee\x32\x9e\xf9\x3a\x54\xdc\x69\x81\x68\xd3\xd0\x6f\xee\xc2\xb4\xdb\x3c\x64\xe0\x06\x56\xf5\x1a\xd0\x00\xbb\x6b\x0a\x18\xe0\x1e\x12\x1f\x95\x44\x5e\xe2\x59\xd1\x9e\x2d\x74\x6d\xfd\xba\x98\xb1\xe1\x2a\x26\x12\xf0\x39\x7b\xee\x47\x90\x84\xe1\x73\xae\xa4\x55\x49\xa8\x30\x21\x80\x13\xb8\x67\xaa\xf1\x42\x82\x67\xfb\x5e\x72\x3e\x79\xa9\x0a\x86\x6c\xce\x2b\xb5\xed\xea\x3f\xec\x5a\x28\xff\x55\xd5\x77\x31\xac\x83\x26\xd8\x8d\xad\x05\x4c\xb0\x1b\x2d\x0a\x66\x60\xd1\x37\x4a\x9c\xc0\xd0\x87\xe9\x4a\x76\x8d\x61\xe5\xd2\x57\x07\xfc\xe2\xb8\x30\x07\x2b\x33\x02\x0e\x58\x73\x7a\x5b\x0e\xd7\x12\xe2\x4e\x5a\x80\x0c\x4a\x9c\x80\x4b\xa8\x57\x27\x94\xdc\x36\xc6\x0c\x82\x13\xd8\x8d\x1b\x15\x26\xb0\x49\x39\xae\x46\xa8\x39\x47\x46\xc8\x40\x43\x48\x2f\xf4\xe9\x2c\x80\xfb\x8e\xb7\xab\xa2\x07\xb6\xc3\x9d\x80\x17\xae\x57\xb5\x97\x7e\x3d\x25\x5f\x30\xb4\x3b\x35\xe0\xc3\xeb\x87\x90\xc0\x80\x12\x30\x40\xff\x8e\x09\x9e\x4c\x80\xfa\xd7\x8d\xb0\xb9\xd2\x61\x76\xf9\x15\xd4\xcc\x79\x1a\x4a\x45\x2e\x3f\xc8\xb0\x45\x4b\x3b\x48\x7f\xdd\xab\xb0\x2b\xd9\x70\xf3\x0f\xb6\xdb\xfc\xf3\xc6\x03\x44\xc0\x23\x34\xd6\x8b\x02\xd8\xa4\xa1\xa0\x00\xee\xee\x50\x79\x78\x8c\x18\x65\xa4\x3b\x3c\xb3\x6d\xae\x03\xbd\xc5\xaf\x90\xe4\x3b\x65\xa8\xe2\xba\x1b\x5f\xe6\x34\x90\x1e\x83\xf6\xb7\x47\x40\x2b\x53\x57\x28\xff\x00\x52\xd0\x33\x32\xdd\xcc\x6e\x21\xee\x31\xf5\x92\x11\xe2\x4f\x4f\xbb\x6b\xca\x04\x21\x45\x17\x59\x74\xf4\x59\xb9\x92\x19\xa3\x7b\x5f\x82\xcd\x4a\xd6\x2f\x92\x1d\xe8\x24\x73\x91\x5e\xa7\xba\xf0\x8b\xfc\xc6\x52\x00\x52\x93\x95\x03\x4a\xf6\x0f\x2e\xd0\xc2\x9c\xb6\x7c\x86\x9b\x62\x19\xb8\xb0\x78\xeb\xa5\x24\x8a\xe0\xd4\xfe\x71\x2d\xd7\x87\x69\x5b\x76\xdc\x02\x5c\x64\x64\x01\xfa\xed\x9e\x3e\x15\x61\x24\x1f\x67\x46\xdf\xf1\xac\x88\x26\x4d\x23\xac\x35\x4f\x84\xa8\x4a\x86\xa8\x83\x3a\x18\xb9\xf5\x45\x85\x90\x4f\x25\xd0\xa0\x62\xef\x65\x8a\x1e\x37\x8d\x16\x6e\x7d\x0a\x41\x17\xec\x46\x20\x81\x2e\xb8\x87\x61\x09\x27\x44\x9a\x78\x91\xf1\xce\x83\x7a\xc9\x18\xb3\x88\xea\xa7\x73\x88\x82\x2d\x99\xbf\x00\xc3\xd5\xeb\xe4\xba\x6d\x10\x59\xec\xba\x75\x67\xa7\xef\x86\xbb\x9a\x39\x08\x10\xc1\xf1\xcb\xe7\x60\x50\x34\x71\x2b\x72\xbb\x45\xe0\xeb\x79\x6e\x4d\x8f\x66\x02\x27\x61\x07\x75\xa5\x01\x76\xb0\xeb\x2b\x72\xc9\xa0\x1d\x12\xaa\xf6\x04\xe8\x3a\x2e\xd5\x6b\xd3\x0b\x09\x23\xd8\xe4\xe3\xd7\x93\x47\xcf\x32\xd9\x08\x03\x49\x8e\xed\x29\x78\x98\x78\x5b\x51\xbf\x76\xcd\xf1\xf6\xd1\x42\x7b\x6d\xce\x3c\xbc\x08\xbb\x5e\xc7\x47\x7b\xaf\x77\x27\x2e\xe7\xe6\xc6\xc3\xab\xfc\xeb\xcd\xe6\xac\xf5\xc1\xc8\x44\x4d\xdc\x93\x4e\xf0\x8f\xe3\xfa\xd4\x70\x25\x6b\x5f\xdd\xc5\xd1\x3d\xaf\x8f\x36\x3c\x59\x5f\xf0\x4c\xb5\x9f\xed\xb9\xaf\x3e\xb7\x8f\xa4\x25\x19\x2a\x14\xe4\xde\x5a\xf4\x50\x81\xba\x09\x42\x0d\x1d\x3c\x41\x27\x2c\x45\xaf\xc8\x5b\xff\x58\x20\xf6\x02\xa8\xc2\x92\x1e\x61\xb7\xf6\x6c\x29\xe6\xfd\xa3\xfd\xfc\xca\x5b\x0a\x88\xcc\xfd\xd3\x70\xd3\xfc\x47\x29\x23\xfc\xe7\xa1\xcb\x3e\x23\x24\xaa\xb9\xdc\x62\xbf\x1b\xeb\x08\x54\xe1\xd0\x79\x01\xa8\xc2\x66\xa0\xf1\x7d\x38\x11\x7f\x8a\x7c\xf7\x66\xd8\xc3\x3b\x71\xe0\x0d\x87\x96\x67\xe1\x0d\x8b\xae\x7c\xc0\x1b\xee\x97\xc1\x0b\xf9\xd2\x58\x2e\xb0\x0e\x87\xf6\x9a\x5b\x46\xee\x1d\xdd\x9d\x91\xb3\xcc\x44\xb1\x2f\x14\x2e\x9e\x63\x08\xfe\x5d\x14\x5f\xbb\x5f\xd9\xb8\x7f\xe4\x12\xd1\xf8\xe6\xe4\xc3\x48\x96\x7b\x33\xf2\xa1\xf9\x04\x08\xc5\x5d\x95\x7f\x68\xb7\xe6\xb4\xdf\xc9\xbb\x61\x11\xe2\x29\x86\xb9\xc2\xee\x64\xde\x1c\x26\x31\x14\x9b\xb9\x6c\xc0\x50\x1c\x5a\x8b\xc0\x50\xac\x60\x32\xc4\x5d\x59\x86\x62\xe9\x57\xc2\x4f\xb7\xb6\x82\x5d\xb3\x8b\x8d\xbd\xc2\x39\xbe\xd3\x38\xde\x7c\x61\xe8\x28\xc2\x77\xf3\x80\xb3\x39\xef\xe6\xee\x80\x08\x89\xa8\x38\x01\xfd\x8e\x7b\xb3\xef\xa1\x1a\x76\xa7\xee\xcc\x08\x1b\x53\x8d\xe4\x07\x84\xe2\x50\x6a\xb9\x7b\x0e\x96\x8e\x74\x56\xb3\xf8\xec\x54\x63\x25\xb9\x3b\x87\xc1\x49\x30\x69\x51\x75\x9d\xfb\xa4\x04\x13\x22\xb6\xa2\x92\x2d\xd8\x8a\x25\x63\xad\xee\x9e\x1b\xd0\x17\x7a\xe2\x3e\x1b\x9e\x12\x06\x4b\x3e\xa2\x69\xea\xa7\xdb\x1b\x65\xf9\xc6\x3d\xe8\x96\xc7\x67\x40\x06\x10\x5a\x85\x57\x6c\x8a\xcc\xb7\x79\x41\xab\xfb\x64\x30\x0b\x08\x6c\x09\xa9\xf8\xef\x45\x29\x06\x46\x70\x7b\xbd\x5c\xdd\x34\x91\xfb\x8f\xa1\x18\x24\xab\xf3\x22\x10\x8b\xd5\xcb\xd5\x3b\x6c\x9e\x6e\xa5\xe5\x3c\x5f\x38\x89\x5e\x98\xdd\xe1\xde\x9a\x56\xac\xbe\xe6\x3e\x09\xf7\x00\x84\xfd\xd6\x0a\x6e\xc7\x66\x31\xf7\x0c\x53\x3c\x59\x77\xd8\x18\xa0\x88\xbb\x2e\x7a\x6c\x9e\x6b\xf3\x2b\x80\x84\x58\x7b\xfe\x81\xb3\xa5\x7d\x9c\xa4\x82\xca\x9a\x52\x3e\xe1\x8f\xc5\x6c\xc3\xeb\x40\x45\xac\x1a\xc7\x12\x09\xf1\xdf\x1f\x9d\x3c\x64\x2c\x0f\xcc\x5b\x8f\x77\xb0\x0f\xab\xc4\x1b\x88\xc3\x62\x60\xd3\xbd\xa4\x7a\xae\x3a\x9a\xb4\x02\xc5\x7d\x7a\x55\x07\xd3\x04\xee\x70\x98\xd0\x0c\xb8\xc3\xa1\x6f\xee\x7d\xba\xb4\x7e\x43\x72\x76\x78\xd0\x7d\xca\x52\x3c\xaa\xa7\x71\x21\xac\xcc\xc9\x86\x93\xc6\x9e\x1c\xe7\xe6\x37\x1c\x34\xc9\xca\x56\xc2\x87\x1e\x98\x02\x22\x16\xc5\x50\x00\x11\x87\x1e\xa6\x00\x22\x0e\x53\x88\x81\x87\x38\x74\x8d\x05\xf6\x70\xfc\xda\x9f\x49\xae\xc0\x44\xdc\x03\xb7\x19\x49\x1c\x32\xd6\x6d\xe2\x0a\x75\x20\x60\x11\x87\xbe\x93\xc0\x22\x96\xdc\x09\x86\xdb\xaa\x4e\xdd\x37\x2b\x23\x4d\xbe\xe9\x98\x54\xed\x96\xcd\x7a\x6c\x6f\xf6\x9e\x04\xf2\xce\x8d\xc0\xc4\xc1\xbd\x57\x7e\xf4\x58\xc2\x3f\xb8\xee\x74\xbc\x69\x41\x77\xd1\x1e\xdb\xa0\x23\x79\xeb\xec\xc6\x37\x3c\xe6\x40\x0c\x04\xf1\x70\xaf\xa0\xff\x6c\x49\x33\x07\x98\x3c\x7e\x58\x9e\x15\xf1\xa8\x24\xbf\x97\xc4\x3d\x4e\x90\xd3\xf0\x70\x22\xdd\xb8\x8f\xa2\xb6\x14\xf2\x01\x0c\xcd\xf5\xd1\xce\x8e\x84\x71\x9b\x5e\x5b\x9e\xf7\xda\x5d\xbe\xf7\xfa\x5a\xdb\x29\xa0\x87\x55\xa1\xf0\x4e\x4d\xdc\xa3\xf5\xca\x18\xd1\xec\x80\x33\x1c\x26\xaa\x02\xb6\x70\xe8\x51\x08\x52\xe1\x50\x28\xb8\x3f\xc9\xab\x84\x45\xde\xef\xd2\x68\x34\x97\x38\x7f\xf0\x12\x14\xb9\x3b\xbd\xa5\xac\x48\xab\xcf\x6e\xe0\x49\xf3\x79\xe3\x99\xc6\x86\xcf\xb2\xfa\xea\x0b\x99\x29\x99\xd8\x87\x34\xae\xfa\x55\x3c\x3f\x1b\xae\x3c\xdb\x58\xf0\x4c\x82\x25\x56\xf8\xf9\xe1\xf8\x7f\x58\x4f\x2e\x2a\x2f\x07\x3e\x06\x8c\xff\xd1\x79\xea\x40\x88\x7b\x4c\xe8\xa4\xfb\x35\xc8\x87\x47\x53\xa5\x7f\x0e\xc1\x02\x2c\xc2\xf6\x1a\x7e\x24\xd1\x59\xbe\x04\x17\xbc\x7e\x84\xaa\x7f\x58\xd8\xbb\x57\x46\x8d\xef\xaf\x96\x7a\x91\x12\x75\xa1\x7c\x0e\x96\x7d\xd8\x0d\x97\x1d\xc2\x04\x84\xe2\xee\x13\x25\xb8\x18\x37\x34\xe6\x21\x4b\xac\x41\xcf\x0f\x39\x33\x8c\x63\x7a\x4a\xf6\x9b\x6e\x94\xec\x9f\xa5\x65\x35\x6c\x9b\x47\x9b\x3b\xcb\xf2\x08\x63\x61\xe3\x79\x49\xbe\xfc\x03\x02\x01\x8d\x03\x3f\xb1\xc9\x82\x1e\x54\x78\x6f\x70\x84\x52\x0c\xc9\x14\x50\x8a\x43\xbf\xb4\x27\xe3\x72\x69\xad\x32\x67\xf6\x09\xa5\xdd\x4c\xd8\x8f\x39\x09\xa7\xcf\xca\x88\x8e\xae\xb2\x15\x9d\x02\x23\x6e\x75\xc1\x7a\x4c\x50\xa8\xf2\xf1\x34\x91\x1b\x99\x03\xf3\x13\xfe\x7c\x6e\xcc\x93\x05\x5c\x2e\xba\xd1\xd8\x36\x59\x56\xf6\x0c\x85\x7c\x1a\x29\xc8\x39\xf3\x4f\x83\x5a\x22\xef\x3f\x98\xd8\x75\x9f\x7d\x4c\x15\x35\xfe\x44\x30\x8a\xa7\x39\x6d\x4c\x95\xf2\x04\x4e\x12\x8f\xc1\xb7\x10\xc2\xc7\x1b\x75\xfd\x59\x9f\x9e\x6b\xc6\x0a\x74\x6f\x8c\x90\x59\x1e\x05\x0a\x24\xc2\xc7\x48\x5c\x3d\x5d\x9f\x14\x22\xf2\x1f\x25\x9b\x66\xcd\xf4\x7f\x5a\x97\x0e\x17\xcd\x22\xb9\xaf\xfc\x0a\x06\x8b\x2c\x04\xac\x63\xd5\xb0\xfe\x90\x8c\x43\x87\x3e\x10\x1e\x87\xde\x6a\x8f\xc6\x7b\x3d\x6b\x45\x75\x34\x57\x88\xa8\x8e\xa5\xb8\xed\x07\x34\x2e\xfc\x23\x3b\xc5\xcc\x0f\xa6\xc4\x85\x8e\x5c\x4f\xbe\x0a\xa0\x13\x9c\xf9\x70\xf7\x50\x20\x68\xdb\x19\xc9\x18\x5a\x96\x2d\x06\x0a\x1f\xc3\x0e\x49\x8e\x34\x44\xa3\xc0\xf4\xd9\xeb\xca\xac\xc9\x9d\xfe\xb3\x2a\xb8\x0c\x02\xc7\xa3\xb5\xc0\x14\xbf\xcf\xcc\xf5\xa0\xe2\xa9\x58\x23\x7d\x99\x4a\xb6\x6e\xbf\xa9\x19\x5a\x52\x65\xe0\x8f\x3a\xe3\x63\x62\x0f\x60\x44\x03\x98\xc8\xa1\xd7\x98\x60\x90\x4b\x5b\xf7\x33\xdd\x0e\xb4\xb2\xf4\x01\x93\x92\x2c\xe7\x9a\xd2\x1a\x06\xf4\x68\x7d\xcc\xeb\xe1\x2d\xee\xb3\x52\x78\xe3\x79\x9f\x1d\xbd\xa3\x81\x79\x1c\x3a\x77\x01\xf3\x58\x0c\x8b\x79\xf4\x8b\xcb\x13\x92\x12\x88\xc4\x67\x4b\x20\x43\x17\x9b\xe7\xc4\xfd\x45\xe2\xa8\xd0\x21\xc1\x38\xe9\x93\x6b\x73\xea\x65\xe2\x71\x39\xb3\x4f\x7e\xe5\x3a\xc3\x36\x1e\x45\x0d\xc9\x29\x6e\x71\x79\x6c\xf1\x8a\x53\x4c\x7d\x14\x3b\x24\x00\x27\xf3\x21\x49\xda\x22\xc8\xd0\x9f\xe7\xc1\x95\x5a\x1d\x09\xb0\xc9\x6a\x0c\xc8\x93\xde\x71\x1e\xe7\x8b\x70\x12\x1b\xbe\x38\xe6\xcb\xc2\xb2\x3e\x98\x17\x28\x94\x53\xef\x72\x40\x28\x87\x1e\x47\x09\x42\x99\x9b\xf8\x82\x87\x4c\x9f\x81\x55\x93\x9e\x29\x94\x38\x33\x5c\x21\x68\x10\x03\x9b\xb2\xca\x80\x1f\x81\x39\xf4\x52\x4e\x6c\x4a\x45\x24\x60\x27\x87\xae\x65\x22\x4d\x1a\xaa\x2a\xd0\x64\x73\x51\x74\x85\xd3\xb6\x06\xb8\x64\x31\x75\x98\xe0\x92\xcb\x54\x41\x80\x4b\x56\x8d\x4e\x80\x4b\x16\x00\x5d\x03\x70\xc9\xa1\x39\xff\x31\x65\x96\x53\xff\xb8\x40\xd2\xd2\xc7\x51\xd3\x0d\x73\x06\xeb\x07\x02\x98\x64\x31\xec\xfc\x51\xee\xc8\xa6\x1f\x0a\x30\x86\x2d\x76\x8c\xe3\xef\x80\x36\x90\x25\x6b\x0e\xf6\x3d\x28\x44\x65\x5e\xf7\xeb\x73\xfb\x10\xa2\x54\xab\x4d\xbe\x8d\xaf\xfc\xc3\x73\x25\xe7\x48\xd1\xc5\xe3\x87\xb7\x9d\x6e\x1d\xc2\x4c\x9a\x92\xe7\xd1\xf3\xce\x2b\x88\x27\xc5\x18\x8f\x0f\xc9\x26\x73\x16\xf1\x07\xdf\xaa\x28\x2f\x26\x42\xa0\xc4\x27\x1f\xf1\x88\x22\xec\xe8\xdd\x04\x9e\x64\x53\xc6\x7f\x8c\xf0\xd5\x12\xf7\x7c\xd9\xa0\x5f\x5d\x94\xd8\x5f\x89\x09\x59\xbc\x5f\x78\xb1\x61\x98\x68\x02\x7c\xc8\x5a\xd8\xab\xc0\x43\x0e\x9d\x84\x80\x84\xdc\xd5\x0e\x5e\x16\x7f\x58\xe0\xe4\xf9\xe0\x99\x16\x68\xed\x3d\x72\x8b\xf1\x51\x5e\xf0\x4f\x5f\xe8\xb9\x4d\x1f\x5e\x27\x4f\x8b\xe4\x0e\xf0\xe5\x42\x57\xb1\xc4\x6d\x6f\x17\x2f\xd2\x87\xe1\x0b\x66\xce\x65\x5d\x90\x07\x26\xf7\x4d\x8b\x03\xa7\x03\x90\xc8\xa1\x8b\x10\x20\x91\x43\x3f\x10\x30\x22\x87\xbe\x46\x60\x41\x16\x2d\x7f\x60\x41\x1e\x53\x3d\xe9\x2d\xfa\xb3\xa0\x4c\xbc\xe6\xff\x70\x4c\xba\x88\x57\x96\xff\x55\x04\xd1\x19\xf7\xd5\x03\x60\xf9\xac\xf5\x01\xfe\xfd\x56\x3b\x42\x55\x88\x1d\xa6\xe4\x78\x11\x3b\x8a\xae\xc0\x2f\x72\x87\x5e\x1d\xe2\x44\x2e\xb3\x46\xbd\xd8\x21\x74\xc4\x00\x27\x72\xe8\xed\x01\x4e\xe4\xd0\x2d\x01\x9c\xc8\xa1\x0b\xca\xab\x7d\x62\xf9\x3d\xda\x09\x54\xff\xe5\xfe\xbf\xe8\x5e\xfc\x02\xda\x6c\x7e\x40\x20\x23\x87\x9e\x22\x6f\x5e\xfa\xc3\xab\xdf\xb4\x4f\x84\x25\x06\x5f\x31\xba\xbc\x81\x70\xa8\xf8\xee\x35\xad\x0a\x00\x4b\x96\xc8\x7a\x2f\xf5\x16\x9e\x71\x99\x83\x0a\x03\x32\xb9\xfb\xc1\x47\xdd\x1d\xe9\x90\x3a\xf1\xac\x76\xbd\x03\x25\x8d\x3c\xfd\x76\x7d\xc8\xfc\x86\x7e\xc0\x57\x84\x98\x4c\x5f\x41\xb0\x24\x87\x3e\x17\x40\x49\x0e\x73\x5f\xbc\x3d\xc7\x4d\xad\x03\xa7\x45\xf7\xbc\x18\x5b\x5a\xbe\xdf\x14\x1a\x5c\x98\xe1\x58\xfd\xc3\xe9\xa7\x1f\x83\xe9\xaf\x7e\xc3\xf4\x57\x6b\x05\x3a\xd6\x2d\x31\x50\xd5\x91\x4a\xde\x34\x4d\x2c\x5f\x72\x4b\x50\xfa\x1f\x2e\x34\xcf\x8a\x54\xf9\x92\x73\xee\x8b\x56\x2f\x84\x83\x37\x6c\x9c\xb1\x06\xeb\xed\xe4\xc4\xcd\xf3\x9f\xda\x2d\x00\x95\xc3\x6b\x4d\xf0\x29\x77\x33\x4c\x69\x70\x82\x9c\x5e\xdd\xea\x73\xcb\xcc\x84\x7d\xe6\x99\x5d\x02\xaf\x79\xe7\xf9\xdf\xff\x92\x69\x01\x56\x39\xbc\xa0\x7b\x75\xab\xf7\x0a\xe0\x9d\xac\x01\x4c\x08\xe0\xca\x9a\x5b\x0c\x93\x85\x77\x6a\x6f\x5e\x44\x2c\xff\xe0\x68\x20\x84\xbd\x2b\x97\xc3\x17\x96\xc3\x29\x4d\xc7\x3d\xf7\x88\x21\x58\x95\xf9\x11\x5f\xce\x24\x5a\xc0\xcb\x0d\x8d\x16\x9f\xe7\x84\xad\x07\xd4\xdc\x31\xcd\x7b\x2a\xd4\xdc\x04\xcb\x36\xbe\xaa\xe8\x93\x2f\xce\x0e\x64\xe1\xcb\x73\xc3\x8e\xfb\xcc\x77\x67\xcc\xc2\x67\xbe\x3b\x8d\xdc\xe0\xd0\x0d\xaf\x23\xbe\x26\x23\xf7\x77\x8d\x02\x30\x60\xd0\xe6\x86\xc6\xfa\xaf\x53\x00\xf1\x0c\xb0\xb9\xa1\xe5\x1c\x48\xb9\xdd\x13\xda\xeb\x92\x40\x76\x32\xa0\x72\xfb\x1f\x5e\xb0\xad\x75\x43\xe4\xbe\x21\x4f\xb2\x5b\x43\x99\xac\xfa\xc2\xf6\x0d\xbf\x22\xa1\x1a\x5b\xf9\x33\x6b\x6b\x7e\x23\x69\x9d\xfe\xf1\x72\x87\x40\xb7\xc2\x6c\x37\xfc\x1e\x6e\x8c\xe9\x1f\x32\x76\xfa\x1b\x58\x97\x9c\x1e\xbc\x50\x9b\x73\x1d\x8c\x09\xe2\xf1\xed\xbd\x9b\x3e\x63\x20\xc1\x0d\xad\xe0\x9f\x9b\x0a\x3a\xf7\x4d\x32\xe5\x40\xa2\x01\x82\x1b\x9a\xbd\x01\x82\x1b\xda\x87\xc1\x81\x1b\x5a\x9d\xbf\xbd\x09\xab\x7e\x90\x62\xc2\xad\x31\xfd\x88\x1d\xe9\xa6\x98\x12\xe8\x6a\x0b\x44\x7d\x67\xad\xb9\xaa\x54\xe5\xe5\x58\xe5\x9c\x82\x0f\xb7\x27\xd6\x17\x16\x8c\xd3\x20\x0a\xdc\x34\x86\x5f\x14\xb8\xd0\xf0\x04\xf2\xdb\xd0\x74\xfb\x99\xae\x15\x6c\xcd\x00\x05\x6e\x88\x63\xf3\x2d\xce\x83\x1b\xec\xc4\x19\xc2\x3d\x71\x2a\xc1\x4f\x5f\x98\x10\xd7\xd1\x48\x8f\x9f\x05\x72\x4d\x19\x20\x5e\xa6\x60\x3c\xc6\x67\xbe\xb9\xe2\xef\xb2\xfd\x6a\x4d\x2e\xaa\x9b\xf0\xb4\x6d\x9f\x39\xed\xae\x23\x16\x33\x65\xdd\x0f\x94\x9e\xa2\x83\x2b\x10\x70\x43\x0b\xe5\xa7\x28\xea\xee\xc0\x94\x26\x45\x00\x00\x6e\x53\x6e\x3a\x88\x0b\x8b\xe4\xf3\xc3\x0e\xd6\xbd\x83\x00\x0c\x6e\x7f\xc5\x1c\x90\x59\xa6\xba\xc6\xb7\x47\xc9\xdd\xe5\x35\x96\x5e\xa6\x20\xbd\x0d\xad\x3e\xdf\x8d\xe7\x07\xdc\xfd\xc3\xb7\xa4\x7b\x35\xf1\x99\x1b\xa6\xfd\xfe\xbc\xd0\xf8\x1e\x55\x6f\xc6\xf2\xb0\x9e\x2e\xa1\x12\x29\xc4\x0a\x78\xb8\xbd\x9c\xf4\xff\xc9\xfe\xf3\x15\x46\x2b\xa3\x5f\x3e\x85\x45\x97\x16\xf9\x70\x7a\x61\xfe\xbd\xda\x39\x7f\xfe\xc3\xdc\x39\xf1\x6f\x8e\x8b\xb1\x70\x95\xa5\x51\xe3\x13\x6d\xdc\x93\x42\x58\x60\xd7\x60\x01\xf0\x5b\x68\x7b\xfd\xb8\xc9\x9a\xcd\xad\xc8\x4d\x96\xd6\x0e\x00\xde\x86\x1a\x39\xf8\x6e\x47\xd7\xda\xf4\x01\x06\x2e\xff\x05\xec\xad\xe2\x6b\x38\x81\x74\xab\x84\x65\x4c\x10\xdd\x1a\xa6\xb0\xf9\xc3\x1b\xb4\x21\x4c\xcf\xdf\x8f\xd4\x91\x5b\x4e\x99\xbf\x2d\x10\x0e\x54\xe5\x09\xec\x5b\xe1\x62\x70\x02\xfb\x36\x4a\x56\xa4\xc5\x72\xf9\x32\xed\xab\x5f\x9d\xbe\x58\xfc\xa2\x88\x7f\xb0\x67\xb2\x6d\xc9\xd9\xf2\x23\xd7\xf6\xf0\x1f\x0f\x67\xa3\xc8\x96\x28\x0b\xe1\x4b\x13\x78\xb8\xfd\x15\x2d\x22\x50\xa2\x2c\xcf\xdf\xa1\x28\xd5\x7c\x69\x7e\x45\xc5\xa6\xaa\x3b\xac\x6a\xd8\x2d\xbf\x02\x3b\xda\x06\xb1\x69\x11\x26\x39\x7f\x86\x19\xe2\x59\x3c\x7f\xa6\x38\x1f\x8b\xe2\x08\x94\xe5\xc7\x5c\x95\x6c\xc3\x3f\x4c\x35\xe8\xcc\x6d\xc9\x71\x10\x30\x39\x7f\x0a\x8b\xed\x47\x5d\xc6\xb0\x97\x46\xf9\x2a\x46\xe2\x8f\xd5\x51\x10\x1c\x8c\xca\x0b\xa9\xd2\x29\x2f\x80\x2a\x99\x00\xe6\xcf\x84\xe3\x95\x51\xd5\x24\x3f\xd6\xa5\x7e\xb8\x68\xbe\xe6\x76\xa0\x49\xe4\xc2\xe2\x74\x19\xcb\xfe\x73\x3f\x10\xcc\x8e\xfb\xc5\xfc\x09\xaa\x81\x13\xef\xfc\x61\xcd\x2a\xce\x8a\x69\x64\x70\xc3\x9d\x09\x38\xd7\x9c\xa3\x96\x9d\xa4\x2f\x48\x86\xc5\x99\xd8\xf2\xdf\x28\xce\x7c\x67\x7d\x9c\x14\xfc\x40\xb8\xe4\x98\x00\xc4\x8d\x62\x07\xbb\xdf\xd3\xa7\x8e\xd9\xd8\xed\xd0\xed\x06\x8d\xe1\x2b\xd2\x7f\xf9\x72\x60\x32\xa0\x7f\xc3\x06\x98\x83\x91\x3d\xa2\x17\x23\xd7\xd9\x7f\x68\xae\x30\x9f\xc3\xb5\xb5\x1f\x03\x33\x61\xa5\xda\xcd\xe9\x06\x22\xe9\xfc\x45\x6e\x32\x4a\x63\xe8\x41\x68\x9e\x3f\x0c\x3d\x88\xeb\xf3\x17\x28\xf4\xd6\x1a\x9e\xfe\x7c\x61\x36\x0a\xfd\xd8\xec\xb0\xe0\x82\x35\x7f\x88\x6f\x88\xaa\xf3\xc7\xcd\xd2\x6c\xee\x11\xc4\x32\xc4\xd3\xf9\x13\x36\xdc\x8d\x80\x54\x06\x45\x9d\xbf\x34\xf9\x74\x3e\x9a\x1c\xcd\x3f\x31\x3b\x26\x98\x75\x83\xbb\xf6\x09\x66\xdd\xc0\x88\x3a\x7f\x84\x48\xd6\x49\x57\xa6\x22\xe6\xb2\x66\xc0\x38\x26\x03\xdc\x2c\xb5\x61\x8c\x9c\x3f\x01\xc9\xa7\x85\xf3\x44\xd0\x2f\x4c\x41\x48\x27\x53\xf8\x3a\xa0\xa3\x27\x80\x75\x95\x30\xae\xf9\xd3\x10\xd4\xdc\x52\x70\xca\xe2\x1e\xc6\x12\x84\x5c\x35\x7f\x72\xcd\xe6\x4e\xc5\x14\xd4\x3d\x80\x4b\xba\xe0\xa4\x1b\x14\x59\xe8\xd3\x89\xb2\xee\xe0\xe4\x94\xcd\x6d\x77\x92\xe8\xb8\xfb\x91\x07\xd3\xe5\xd3\x14\xd4\xdc\xa8\x06\x67\x4c\xda\xd8\x7c\xb3\xe6\x88\x88\xcd\xe8\x3f\x77\xc2\x09\x59\xa8\x7e\xc4\x32\x55\x0b\xe3\x4a\xed\x0e\x4e\xf3\x0f\x85\x81\x77\x3a\xac\x48\xd0\x3b\xcb\x5e\xd2\x46\x8f\xc2\x95\xf1\x4d\x7e\x45\x5a\xa0\x46\x6b\x30\x44\x98\xf4\xfc\xdd\xac\xb1\xe7\x53\x3f\x90\x66\x13\xa4\x3d\xc7\xf1\x69\xfe\x92\x69\x3a\x54\xad\x36\x3f\xe9\x06\x5c\xb3\xe6\x57\xb9\xe7\x59\xbd\x5b\x14\x70\x3a\x72\xab\x90\x2c\x8a\x1b\xb5\x88\x5f\xf4\xfc\x3d\x6a\x81\x72\x85\x27\x9b\xf7\x33\xb6\x91\xfd\x7d\xd8\xd1\xd5\x8f\x58\x57\x1b\x7c\x5c\x57\xba\x8b\x7d\xa6\x78\x02\xb8\x16\x1a\xee\xa8\x8c\xbc\x97\xe6\x98\x34\xcd\xbd\x49\x5c\x63\x12\x84\xd7\xfd\x6b\x01\x8f\xb4\x87\x92\xd8\x88\x45\x8a\xd3\xf9\x7b\x25\x5f\xf2\x14\xee\x85\x92\x0d\x98\xe8\x25\xa4\x15\x1f\xb4\xdb\x3d\xf5\xe5\x58\xe9\xed\xa7\xcd\x54\x22\x47\xd6\x97\x6c\xdd\xeb\xa3\xe6\xce\x33\xe2\x11\x7f\xc8\xf9\x23\xe2\x71\x85\x4c\x10\xe7\x91\x70\x69\x3f\x97\x76\xb0\x49\xe0\xcb\x2b\xe4\x81\x5e\x2d\x35\x37\xe2\xc7\xb6\x72\x03\x08\xf9\x91\xc5\x5f\x4b\xec\xe2\x87\x4e\x25\x9c\x0e\xf1\x02\x17\xb9\x57\x27\x18\x81\x07\xc9\x2c\x27\x10\x81\xc5\x29\x05\x21\xb0\x61\x7f\x9f\x00\x04\x56\x50\xa8\x26\xf8\x80\x43\x5e\x7a\xfc\x00\xa8\x9c\xfe\xae\xb1\x79\x58\xe9\x63\xff\xf8\xe7\xc8\x53\x43\x55\x47\x0e\xd6\x97\xe9\x3f\xc1\x0b\x17\x44\xcc\xf5\x71\xb0\xe6\xcd\xdf\x95\x0b\x87\x25\x5e\x2b\xe6\x2b\xa3\x25\xf1\xab\x9e\x07\x66\x18\xb9\xe1\x61\xe6\xd6\x66\xbd\xda\x61\x1a\xc7\xfc\x28\xf6\xde\x67\x92\x9e\xae\xe3\x2f\x1f\xbe\x79\x24\xdf\x2d\x56\xce\x9e\xe0\x60\x1c\x35\xf7\x04\x0d\x55\x5c\x1b\x9d\xc9\x2a\x1e\xb1\xcf\xb9\xf2\x4c\xd9\x66\xae\x55\xfa\x73\x24\x6f\xb5\x67\x35\x87\xe9\x8b\xf3\xe7\x72\x6d\x86\x3a\x64\x45\x87\x97\x40\x48\x99\xf3\x48\x38\x8f\x41\xb7\x64\x9b\xb0\xd0\xc3\xd4\xaa\xc5\x05\x6b\xd9\x8a\x5f\x31\xb1\x9c\x93\xc3\xb4\x6a\xf8\x59\x4c\x40\x0a\x0b\xb9\x5a\x26\x20\x85\x15\x63\xe3\x04\xa3\x70\xc8\x29\x84\x28\xd4\x6d\x78\x02\x51\x38\x64\x7d\x07\xc6\x15\x39\x2a\x68\x85\x0d\x83\xf2\x04\xa1\x70\x4f\x8f\x7f\x30\x6f\x5b\x81\x9b\x62\x0f\xc6\xcf\xde\x9a\xf8\xf4\xdf\x3f\x92\xf7\xea\x3f\x78\x11\x54\xff\xd0\x49\xc3\x9e\x0c\xa7\x84\x46\x34\x84\x90\xb0\x76\x1e\x61\x24\x0a\x0d\x46\x82\xf5\xd0\xc5\x70\xcf\xc3\x23\x8f\x80\x1c\x72\x60\x8f\xc8\xb9\xa2\xc1\xad\x64\x56\xe9\x3b\x28\x85\xb5\x3b\x87\xa1\x1d\xca\x9a\xbe\xff\xfe\x17\xe1\xa2\x4d\xf8\xbc\x5b\x73\xca\xe7\x5d\x33\xb4\xd2\xdc\x99\x68\xa5\x9e\x75\x40\x0d\xf7\x47\xb4\x30\xdd\x18\xd5\xe2\x92\x84\x60\x65\x51\x4c\x3d\xf8\xa0\x1a\x8e\x3c\x57\x2a\xa6\xa4\xba\x9d\x87\xce\x99\x39\xbe\x29\x0f\x61\x12\x96\xbb\x12\xee\x77\xc8\x53\x1d\xde\x82\x02\xba\x5f\xf2\xaa\xc5\x03\x2e\x42\x48\x83\x36\x82\x71\x58\xbb\x27\x7c\x65\x83\x16\xc7\xbc\x9c\x1f\x81\x01\x31\x6d\x42\x42\x03\x27\x04\xfb\x70\xe4\x36\x3e\x73\xc3\x30\x0d\xa7\x1d\xa1\xeb\x38\x75\xe4\xfe\x3c\x31\x73\x2f\x0b\x70\x3c\x9d\x83\x33\x87\xc7\x1f\xdc\x90\xe4\x50\x2f\xd5\x18\x38\x05\xa8\x87\x25\xa4\x1a\x57\x4e\x2e\x9d\xe5\x5a\x24\x87\x87\xca\xf9\xaf\x26\xa6\xd3\x8e\x5f\xaa\x69\x90\xce\x83\x1b\x0f\x1c\xa7\x27\x28\x89\x23\xfb\xcd\x8d\x07\x2e\x40\xf3\xc0\x0b\xa3\x48\xf0\x44\xb7\x6a\xcd\x17\xd6\x1b\x51\xe7\x50\x13\x6d\xcd\x17\xcf\xa8\xd5\x12\x4e\x51\x3d\x70\x37\x7d\x9a\xf4\xe9\x66\xd8\x93\x7e\xff\x63\xbc\xfe\x91\xd3\xcf\xf0\x6e\x3a\x88\x14\x04\xc6\x62\x29\xff\x7a\xa2\x82\x89\x30\x71\x3c\x1c\x58\xa4\x31\x50\x16\xcb\xb4\xeb\xf0\xdd\x95\x84\x5e\x7f\xcc\xd6\xfe\xba\xd1\x9d\x87\xd8\x59\x3f\x8f\xda\x63\x9f\xad\xcf\x3e\x5b\x9d\x73\xea\x37\xb2\x26\xa9\x87\xac\x38\xdc\x96\xaf\xd7\xe2\x3e\x4b\xa1\x5d\xb7\xd7\x7b\x5f\x9f\x63\x57\x85\x0e\x78\x70\x01\x82\xbb\xec\x3c\xbc\xf4\xf0\x10\xbd\xb2\x1a\x67\xdb\x24\x38\x4d\x5e\xf1\x6a\x17\xb6\x84\x74\x41\x1e\x64\xee\x01\x8f\x5d\x66\x32\xa5\xb9\xcf\xe5\xb1\x6d\x22\x27\x56\x48\x9c\xd3\xab\xc3\x01\x8a\x80\x8e\x23\xd7\x04\xb8\xf1\x28\xf9\x2c\xa1\x96\xa1\x7c\xec\x9a\xe5\x1f\xda\x13\xe0\x47\xc2\x38\x2e\xee\x9b\x66\x81\xfb\x76\x1c\xae\x66\xf9\x39\x0f\x10\xe4\xc2\x4d\x09\x1e\xc1\x13\x80\xc7\x81\xdf\xef\x2c\x3f\x65\x82\xe0\x79\xfd\xf7\xbf\x8e\xc3\xcd\x2c\x5c\x9a\xe0\xd0\x3b\x8b\x60\x5d\xa8\xea\xb3\xa0\x16\x2b\x81\x02\x0e\x39\xf0\xdb\x9d\xc5\xec\x39\x74\xb0\xa4\x52\xcc\x06\x04\x35\x72\x10\xa1\x3f\x0b\x5e\x9e\x5c\x4e\xcd\xb2\x59\xf7\xc0\xb1\x63\x82\x19\x59\x09\xa6\x9a\x45\xc6\x3d\x7c\x96\x62\x77\x3f\x52\x4a\x81\xd7\x83\x25\x59\xfe\x3d\x9b\x5f\xca\x16\x14\x21\xd9\x2f\xe5\x40\x4d\xeb\x36\x07\x86\xaa\xd5\x96\x24\xa7\x0c\xa2\x78\xe4\xe1\x81\xe0\x4d\x96\x82\x7f\xff\x2c\x30\x74\x8d\x09\x80\x4f\x9a\xaf\x7b\x02\x3e\x39\xaa\xa3\xc0\xcb\x43\xfe\x5b\x70\xec\xc0\x64\x34\x81\x98\xdc\x4d\x30\x05\x9b\x63\x0f\x7c\x81\xa7\x78\x93\xff\x66\x99\xe4\x07\xf8\x2e\x4c\xf1\x26\xb9\xac\x99\xc5\xec\x3c\x59\x60\x52\x98\x91\xe2\xe5\x41\x92\x8c\x59\x6a\x4e\x87\x2f\xee\x54\x38\x58\x69\xce\x38\x4d\x9b\x4b\x9d\xb8\x84\x59\xbc\x32\x91\xbf\x14\xaf\x4c\xd4\x3e\x40\x9b\x3c\x3a\xfe\x26\x53\xb8\x49\xee\x67\x67\x69\xb9\x02\xb4\xd2\xd4\x38\x9a\x95\x49\x26\x38\x4e\xa5\x49\x26\x90\xaa\x4b\x7a\x61\xa0\x1e\x97\x2e\x2f\xb0\x36\xbd\x37\xdb\xf0\x33\x6f\x63\xd0\xe7\xc0\x9c\x1c\xb8\x22\x4f\x30\x27\x07\x1e\xa5\x53\x98\xc9\xd9\x86\xc5\xd9\x6f\x70\x28\x90\x25\x07\x7e\xa0\xb3\x24\xcb\x47\xae\x06\x4d\x72\x28\xa6\x26\x9a\x64\x1b\xbe\x34\xfe\xa0\xa6\xa1\x05\x9e\x51\xa5\xaf\x85\x5b\x17\x15\x5c\xe1\xaa\x0c\x65\x77\xa4\x9b\x82\xb1\x19\x97\x93\x59\x86\x00\x72\x14\xd8\x92\xc0\xa8\x6e\x0c\x6c\xcd\xbd\x1d\x7f\x51\x3e\x00\x27\x77\x87\x19\x22\x01\x95\x79\x34\xcd\x53\xae\x5e\x56\xd2\xc7\xc2\x09\x12\x71\x92\x58\xa3\x09\xe4\xe4\xa8\x1e\x48\x1d\x2e\x1a\xb4\xaf\x4c\x07\x0c\xf7\x4b\x6c\xc9\xf0\x58\xcd\x1c\xa5\x9f\x2d\xff\x61\x34\x86\x45\x36\x77\x1e\x52\x40\x71\xb7\x4d\xa6\xdb\xbd\x3d\x55\x6e\x21\xbd\x45\x1f\x0b\x32\x8c\x4f\x10\x28\xcb\x2f\xf7\xc1\xca\xf6\x7d\x69\xea\xbd\xb4\xaf\x4c\x90\xc4\x62\x4d\x5f\xfc\x0c\x61\x08\x72\x5d\x16\xc7\xd7\xdd\x8a\x33\x45\x75\x7f\x9f\x3f\x0b\xf0\xd1\xa9\x73\x94\x7b\xe2\xd4\x8d\xc5\x3f\x06\xc0\xa5\x94\x3e\xf5\x8f\x1d\x16\xf7\xac\xc0\xbd\x0b\xde\x14\x55\xd2\x81\xda\x5c\x5d\x61\x52\xd3\x29\x11\x0a\x6d\xd9\xf1\x38\x98\x40\x5b\x16\xa5\x35\xa1\x2d\x17\x6e\xb3\x13\x68\xcb\xa3\x22\xa2\x95\x94\x1c\x10\x23\x0a\x69\xea\x86\x4b\x62\xe2\x83\x16\x7e\x15\xd6\xeb\x57\x29\x19\xf1\x4c\x77\xa1\xf5\xe5\xca\x05\xa1\xeb\x97\xbd\xf5\x0f\x0f\x43\xf8\x42\xee\x89\x69\xb5\xd9\x5d\x5f\xf4\xba\x75\xa7\xdc\x1a\x7c\x68\xe3\xce\x43\x4e\xbd\x4f\x0e\x84\x9e\x3c\xde\xaf\xd3\x5f\xbc\x33\xab\x53\xb5\x99\x7c\x53\xf8\x2e\x38\x67\x4e\x3b\x95\xbe\x99\x0e\x90\x1c\xac\x1d\xe9\x17\xd4\xcb\x51\x1d\x1e\x8e\x10\x25\x29\x17\xac\xbb\xba\x1a\x78\x45\x68\x49\x28\x78\x42\x54\x29\xca\xc3\x82\xbb\x00\x6f\x2e\x38\x05\x30\x66\x2b\xdb\x80\x8c\xb9\xe7\x80\xa6\x5f\x08\xab\xdb\xf8\xcd\xdd\x46\x67\x5f\x81\x7c\xfd\x48\xec\x3a\x56\xec\x05\xbd\xc2\xe3\x65\x24\x25\x40\xe3\xb3\xbc\xb9\x43\xe8\xec\x0b\x7a\xa3\x9d\xd2\xd7\x21\x29\x53\xf2\x7d\x19\x07\xce\x0e\xca\xe1\x40\x6e\x8e\xea\x64\xe2\xd8\x59\xdd\x21\xc9\xf6\x65\x03\x9f\xd4\x4f\x1a\xf2\x39\x53\x34\x8e\x67\x67\xb5\x6d\x7c\x20\xaa\xec\x21\x23\x26\xdd\x79\x5f\xae\xf1\xae\xaa\x66\x26\x22\xce\x6c\x05\x69\x85\x5c\x82\x13\xf8\xcd\x4a\x7e\xdb\x59\x7f\x76\xca\x02\x8d\xf9\xf7\x59\x97\x86\xc5\x33\x5c\x18\xba\x5d\x7f\x76\xc9\xb2\x6e\xb5\xe9\x8b\x97\x8c\x3c\xcb\xb6\xed\x85\x79\x0d\x48\xf6\x30\x81\xde\x3c\x8e\x3f\x71\xc9\x67\xd5\x3d\x82\xf0\xd7\x59\x4d\x6e\x20\x55\x16\x8c\x33\x70\x50\x9c\x15\xa5\x9b\x80\xb2\x09\xe6\x66\x10\xc3\x38\xab\xdc\x17\x4e\x57\x0d\xa3\x90\xd8\xd7\x8c\x87\x44\x1d\xa9\x5a\xb0\x25\xe4\x00\x6d\x0e\x72\x79\xcc\x9a\xd6\x6c\x64\x13\x50\x37\x47\x45\xdf\x06\x74\x73\xe0\x3f\x37\xab\x56\x6e\x05\x73\x60\x35\x07\x6e\x80\x13\x58\xcd\x51\x39\x67\xa0\x6a\x16\x1c\xff\x26\xa8\x9a\xbb\x80\xb5\x82\xac\xfa\xf3\x0f\xe6\x14\x93\x4d\xad\x8a\xdf\xa8\x20\x35\x39\xf6\xb4\x3d\x37\x19\xfb\xb5\xca\xbe\x11\xdb\xaa\x39\x5a\x65\x2f\x62\x6f\x76\x2d\xe9\x60\x6f\x1e\x13\x8f\xcf\x09\xf8\xe6\xc0\x9b\x6d\xd6\xcd\xca\x63\x38\x87\x4d\x09\x1b\xa2\x54\xc9\x56\x44\xde\xe4\x59\x33\x6a\xc3\xdf\x81\xf7\xb4\xbd\x6e\xdb\x4c\xa1\x79\xf9\x34\xd3\x01\xdc\x29\xb2\xc8\xac\xdd\xd9\xe1\xa0\xd6\x6e\x3f\x60\x86\xb5\x4b\x6d\xb2\xae\xdc\xfb\x74\x37\x39\xff\xf2\x9f\x49\x4f\x6c\x05\xaf\x42\xaf\x69\xea\xe6\xdd\x93\xe4\x4a\x13\xdc\xcf\xc3\x58\xb5\x59\xcd\xc5\x2a\xc7\xab\x18\xb7\x95\x94\xc0\xe4\x1c\xd5\xd1\x86\x21\x88\xb4\xa7\x3f\x02\x18\x13\x13\xec\xcd\x43\x8a\x0f\xf6\xe6\xf8\xf7\x51\xee\x18\xff\xf8\x68\x9b\x9a\x66\x36\xc7\x84\xce\x5c\x03\x3a\x62\xfc\x63\xd6\x35\x9d\x76\xea\x9a\x12\x57\x57\x9a\x8b\x60\xa9\x1d\x00\x9d\xa3\xba\xe8\xe8\xdb\x79\x0a\xf1\x40\xe8\xda\x29\x00\xe8\x1c\x72\x92\xba\x14\x1d\x5d\xcd\xe5\x19\xa6\x26\x9c\x0b\x48\x9d\x31\xc5\xdd\xec\x3f\xf7\xf4\x5a\x76\xca\xaf\x6c\x83\x81\x1b\xcf\xd8\x96\x7f\x78\x58\x60\x25\x55\x1f\xc6\xb6\x7c\x81\xb4\x78\xa6\xe5\xba\x1e\x35\xf4\xed\xea\x81\xc2\x85\x11\xef\xb1\x59\xbd\xe2\x95\x6d\xd6\x33\xf7\x18\x6d\x10\x20\x51\x5d\x33\xc1\x3c\xb5\xaa\x80\xe6\x39\x70\x9d\x9b\x80\x79\x56\x5c\x21\x66\x35\xcb\x9f\xb4\x5d\x60\xcf\x22\x19\xad\x97\xfe\xb3\x34\x78\xb9\xca\x7c\x84\x2e\xcd\x05\xf8\xac\x42\x81\xc8\x00\xea\xcd\x61\x96\x62\xa1\x1a\x0f\x97\xec\x0e\x16\x96\x8a\x4c\x50\x9e\xb4\x0f\x75\x78\xb8\x8d\xf1\x18\x0c\x8f\xd6\xcd\x62\x84\xcf\x32\x53\x3b\xfb\xe8\x6a\x2c\xa5\x7d\x94\x42\xfc\x8c\x30\x86\xbd\x25\xff\x22\x7e\x86\x2e\x76\xb7\xf8\xe3\x3d\x04\x1d\x40\xff\xc5\x8f\x63\xd6\x07\xc8\xcf\xe2\xf3\x63\x01\x5f\x70\x4e\x91\x14\xbd\x2c\x8e\x54\xf4\xb5\x2f\xb0\x32\x10\x38\x77\x09\x06\xec\xad\xae\xec\x1c\xd4\xcd\x3a\xa4\x5e\xaf\xa6\x3b\x37\xef\x0b\x4d\x75\x90\xf0\xb8\x9c\x6b\xed\xd2\x2e\xce\x87\x1f\x16\x86\x84\x8a\x6b\x5f\x95\x86\xca\xee\x3c\x43\x9b\xdd\xcd\x21\xf7\x21\x6c\x51\xcd\xbb\x7e\x79\x1a\x19\xb5\x78\x9b\x3d\xbf\xa2\xe5\xe5\x57\xb7\x5f\x31\xd4\x8f\x65\x66\x44\x2d\x43\x18\x61\x9c\x4d\xae\x96\xcf\x1a\xc1\x27\xcf\xfa\xd2\x32\x83\x60\x67\x0e\x85\x23\xf0\x32\x83\x84\xec\xb3\x71\xc1\x8b\x4f\xcc\x6c\x9b\xc5\x55\x5c\x41\x67\x53\x93\x85\x18\x37\xb8\x1d\x0e\x05\xb3\xfd\xd4\x6b\x38\x4d\x2d\xaf\x74\xd9\xc4\x60\x6d\x0e\xbc\xff\x66\x3b\x72\xc6\x3b\x2f\xe1\x8b\xff\x78\x32\x61\x9d\xad\xb0\x62\x90\x40\x00\x39\x07\x1e\x78\x13\x78\xcd\xea\xd9\x00\x5e\x73\xe0\x0a\x31\x41\xd4\x1c\x5e\x63\x36\xf3\xf4\x28\x23\xb4\x9a\x7e\x1f\x3c\xef\xa3\xe1\x95\x55\x53\x55\x44\xef\x12\x2c\x73\x76\x4b\x57\x88\xde\xf2\x99\x0c\xcc\x50\x81\xa6\x95\x57\xf2\x02\x0c\xe6\xf0\x9a\xb7\x69\xe5\x55\x76\x68\xf8\xf1\x0f\x47\x47\xe0\x3e\x79\xfc\x66\x4b\xeb\x2f\xb4\x02\x74\xcc\x5d\x82\x29\xdc\xba\x61\x25\x38\x71\x36\xd8\xcb\x24\x49\xd6\x56\x50\xf9\x0a\xb2\x0c\x20\x66\x59\xf6\xaa\xe7\x0e\xa1\xe2\xae\xc7\x01\xf5\xaa\x00\x76\x04\x04\xc0\x2e\xf7\x1a\xf3\xd5\x90\x48\xb3\x5d\x1a\xde\xf6\x40\xfc\x4c\xa0\x2f\x87\x57\x6c\x20\x5f\xd6\xc3\x29\xf1\xe2\x55\xc1\xb3\x0d\xd7\xec\xb0\xc4\xde\x3b\x78\xfc\xce\xa6\x3a\xa8\x18\x04\x26\xe6\xf0\x52\xbc\x19\xbc\xaf\x70\x0b\x28\xe6\xd0\xe6\xd0\x86\xbe\xe1\x16\x90\x3a\x59\xe0\xe5\x1b\x7f\xff\x78\x66\x12\xf4\xa8\xc3\x91\x7d\x02\x8f\x59\xd5\xfe\x00\xc4\xdc\x7f\xd0\x42\x64\x6f\xa9\x8a\x7b\xdb\xc3\x6d\x14\x72\x1a\x48\x71\xdb\x3c\x6f\xe0\xda\xb1\xf5\x02\x87\xc4\x0a\x72\x89\xeb\xbd\x6d\x03\xd1\xa3\xbb\x4e\x91\xf3\x69\x83\x2e\x1a\x04\x25\xd1\x35\x3b\x42\x48\xc3\xc8\xac\xfb\x41\xe3\x16\xb7\xb9\xdd\x32\xd3\x8e\x27\x8b\xb8\xbf\xf6\x67\x6a\xe6\x09\xda\x66\xc9\x1d\xbe\x64\xa7\x70\x9b\xb6\x34\x9d\x3b\xd9\xea\x8b\xc3\x67\x77\x26\x04\x39\x51\x38\x7b\xb1\xfc\xc2\x19\x82\xc1\x60\x35\xee\xae\xf4\x32\x9d\x0b\x04\x11\xa8\xcd\xd1\x5c\x5c\xa2\xff\xbc\xd6\x11\x19\x73\x76\x48\xab\x68\x98\x5d\x3d\xb2\x71\x69\xaa\x1b\x88\x28\x97\x9d\xd8\x9d\xd9\x4c\x2a\xab\x19\xb8\x5d\x3a\x62\xf2\xd5\x56\xec\xe6\x70\x6f\x6c\x55\xae\x74\x0f\xd5\xe5\xcc\x53\xeb\xa5\xc8\x27\x31\x41\x95\xf3\x5e\xb0\x5d\xee\x19\x2b\xd5\xce\xe0\x4a\x9b\x53\xa7\x17\x9b\x70\x18\x7c\x75\xeb\x5b\x80\x8c\xd0\x6e\xc7\xc4\x30\x6e\xe5\x05\xa4\x8d\x76\x63\x80\x84\x65\x37\x02\xf1\x9b\x35\xdd\x9e\x5b\x3a\x85\xd3\x92\x17\xd8\x0d\x2b\x70\x83\xc2\x27\xa0\xa6\x62\x64\xc3\x22\xec\x55\x2a\x80\x9a\xc3\xeb\xc5\x86\xd3\x3c\x48\x3e\xb3\x89\x6d\x45\x22\xaa\x09\x9e\xe6\xd0\x12\xd6\x1e\xa7\xc0\xdf\x69\x0d\x09\x16\xfc\x4c\x5d\xd0\x67\x7b\x73\x51\x99\x0e\xc3\xe5\xbb\xfd\x78\x6f\x52\xcc\x53\xd3\x8b\x9b\x81\x54\xe5\x95\x92\xc0\xed\xdb\x97\xd3\x41\x47\x44\x93\xea\xb0\xf2\xe6\x9d\xa9\xe2\x3e\x50\x97\xc3\x0b\x3a\xd0\x2d\x8b\x91\x4d\x33\x21\x2d\x3b\x8c\x31\x21\x2d\xc3\x73\xc0\x9d\x27\x28\x1f\xb3\x7d\x0a\x69\x88\x8b\xc0\x5b\x0e\x6f\xfe\xba\xee\xe9\xd3\x67\xe4\x32\xfa\xdb\x7f\xd9\xc6\xe2\xc5\x5b\x30\x58\x4c\xd7\x40\xaa\x60\xd6\x0f\x69\x17\x27\xa2\xeb\x7b\xae\x13\x10\xd8\x95\x95\xfc\x89\x9b\xe8\xd1\x13\x2a\x26\x40\xce\xbb\x2b\x00\x2a\x0f\xaf\xaa\xbb\x3a\x58\xcf\x8f\x5c\x41\x4e\x3a\x70\x95\x47\x10\x69\x32\xc1\xab\x1c\x8d\x09\x02\xa2\x72\xe0\x12\x39\x41\xa8\xdc\x25\xa8\x77\xab\x5c\xe1\xfd\x29\x40\x94\xd5\xeb\x8b\xc4\xa1\x54\xf2\xec\x06\xbc\xa9\x98\x01\x37\xb9\x5b\xf7\x33\x27\x8e\xf6\x50\xc6\xe4\xcc\x60\x4f\xee\x8e\xd0\x78\x55\xc7\x83\xf3\xf5\xd4\xb3\xd8\xd3\x3d\x2d\xa3\xc8\xf5\x5d\xcb\xa8\xe5\xc5\x9f\x54\x9c\xee\x9b\x7d\x05\xa0\x2d\xb3\xd7\x77\x73\x76\x27\x51\xdf\x57\x65\x6b\xe0\x24\x87\x97\x5f\xbd\x31\x5a\x27\x6b\x6b\x50\xb5\xd9\xdb\xa6\x7a\xd2\x2c\x30\x29\x40\xad\xcd\x50\x3a\x06\x8b\x93\xb8\x96\x4c\x20\x22\x47\x83\xdd\x08\x05\x19\xc7\x9f\x8e\x2d\x3d\xb9\x1f\x8c\xb4\xf7\x5c\x75\x9a\xe9\xee\x59\x98\x4e\xf7\xfa\x53\xa9\xab\x6f\xfd\x6a\xe2\xc7\x37\x3b\xae\xb7\xde\x78\xf4\x54\xa8\x9a\xc5\xb1\xba\xb8\x6e\xdd\xde\xdb\xc6\xa2\xb0\xcf\x0a\x13\x7e\xef\xd6\x70\x76\x75\xcf\x8d\x6e\x73\x1a\x16\xd0\xa1\x3a\xd1\x69\x39\x43\x43\x2b\xa5\xa3\x1f\x93\xbb\x57\x56\x7d\x90\xbd\xc7\x19\x02\x05\xb2\xbb\x4f\x36\x53\x9c\xa4\xb0\x9e\x00\x3f\x8e\x66\x0b\x23\x27\x81\x3f\xe4\x58\x1c\x42\x60\x19\x77\xa7\xa8\x35\x91\x34\xac\x56\xbf\x23\xad\x82\x5d\xdb\xa7\x6e\x36\x1d\xdb\xa7\x06\x69\xc1\x1b\xa7\x76\xdc\xce\x85\x69\x83\x95\xf4\xe4\x65\x2e\x2e\x18\x53\xea\x88\xdd\x50\x33\x60\xe4\x66\x9f\x72\x03\x27\x74\xda\x2f\x8b\x33\xa1\xb6\x37\xb3\x8f\xbe\x40\xcc\xb2\xda\xcb\x3f\x6c\xdc\x98\x40\x04\x59\x40\x1e\xf7\x8c\x32\x71\x38\x91\x6b\x66\x07\xe4\x71\x78\x9f\xd4\x35\x95\x76\x67\x08\xe7\x5d\xaf\x6a\x3a\xdc\x4e\xab\x69\x37\x37\x3b\x3e\xfa\x13\xf4\xc7\xaa\xf7\x48\xc7\x23\xa9\xe5\xef\x9c\x3b\xe8\x5d\x57\xaf\xeb\x59\x93\xd3\xe3\x57\x69\x42\x45\xc8\x17\x16\x32\x08\xbd\x98\x40\x41\x0e\xef\xcb\xba\xb9\x6a\x54\x7e\x3a\x7a\x9e\xd7\x05\xfd\x94\x06\x20\x90\xf7\xd3\xf9\xf1\xa3\xb5\x85\xb5\xe9\x47\x20\xe7\xba\xc7\x70\x4f\x22\x9a\x6b\xf6\xad\xe5\xd5\xe9\x19\x3c\x25\xa9\xce\x27\xe8\x56\x33\x9b\xe6\xf2\x1b\x51\x06\xe0\xc9\x49\xda\xec\xd9\xf5\xf6\x55\xe2\xef\x66\xb3\x51\x4f\xea\x69\x4d\x45\xb7\x06\x54\x72\xff\xc3\xa4\xcb\x83\xa5\x83\xdc\xca\x36\xe9\xae\x16\x54\xe5\x44\xc0\x23\x9b\x62\x58\x37\xb5\x8d\xea\x54\x37\x5d\x6c\x6e\x6a\x2e\x50\x9b\x04\xdd\x4c\x35\xdd\xc5\xbc\xbd\xe1\x5d\x7e\x85\x54\x0d\xd3\xe8\xe9\xfc\xeb\xae\xbe\x21\xbc\x2e\x9a\x7c\xd4\x33\x8b\x4b\xaf\xf7\x1a\x3d\x2d\xa5\xce\x21\xd6\xd1\x26\xb1\xc3\x27\xc9\xeb\x8b\xfe\xb8\x98\xd6\x94\xe6\x51\xc9\xe0\xeb\x66\x77\xb4\x64\xad\x39\xdc\x87\xaf\x6d\x30\x58\xbd\x92\x92\x60\xa4\x56\x28\x11\x46\x2b\x54\x3e\xea\x2f\x73\xd5\xfd\x48\xeb\x88\x2b\x98\x97\x9c\x32\x13\x51\x3c\xca\xef\x6f\xf2\xf7\x65\xab\x0c\xf3\x23\x3d\x2a\x32\x33\x30\x8f\xc3\xdb\x0c\x50\x1e\x47\xf3\xb4\x90\x31\x6e\xca\x82\x4c\x0c\xab\xaa\xdf\xb9\x00\xf5\x62\xa1\x7f\xc9\x50\xf6\xe8\xc5\x82\x14\x56\x76\x82\xff\x38\xbc\x1e\x1f\xb0\x65\x7c\xe8\x27\x80\x8f\x85\x0c\x51\x13\x58\xc7\xe1\x7d\x09\xa8\x8e\xc3\xab\x8f\x41\x3c\x58\x10\x2a\xb9\xb7\x9e\xb5\x0e\x5e\x94\xb0\x38\xe9\x20\x39\x0e\x6f\x58\xc6\x31\xfe\xfb\x5f\xd7\xa2\x32\xb6\xde\xd7\xbd\x90\x12\xe0\x31\x08\xf6\x9b\x23\x75\x40\x96\x64\x1c\x8e\xd5\x6a\x25\x20\xcb\x17\xe5\x3e\xd6\x7d\x94\x6c\x9d\x8a\x51\x15\xbd\x58\x18\x25\xb3\x72\xd2\x79\xbd\x8f\xbc\x98\x00\xc7\x71\xf7\xd1\x22\xee\x46\x2a\x2e\x64\xc1\x86\x28\x03\xe9\x38\xbc\x58\x18\xc9\x55\x97\x2f\xd9\x61\x1a\x49\xd5\x91\xb9\x1e\xa6\x64\x57\x77\x4c\xe8\x46\x60\xcb\xe6\x48\xa3\xa5\xab\x80\x33\xae\x37\x13\xa3\x65\x44\x36\x95\xe1\x55\x34\x00\x5e\x9a\xc3\xfc\x32\x40\x80\xce\x91\x0c\xb8\xfb\x0f\x3b\x1d\xb2\x23\x0e\x23\x19\x2a\xe7\x20\xba\x5b\x93\x05\x90\x8c\x7b\x88\x7c\xd4\x25\x9f\xce\xa4\x4e\x42\x3a\x77\x80\xd6\xd8\xf4\x22\x1b\xe6\x60\xed\x8e\x18\x1b\x64\x90\x95\x7d\x0e\xec\x8e\x23\xeb\xc2\x3e\xa8\x72\x0d\x74\x63\x5d\x4e\x2a\xe9\xd3\xf3\x6a\x79\xc0\x27\xc3\xbd\xc2\xed\xa3\x2e\x2a\x83\xe0\xac\x20\x6c\x71\x8e\xa1\x8d\x16\x32\x39\x54\x38\xd5\xa2\xc0\x77\x1c\xda\x4f\x86\x59\xd3\xd5\x2b\x07\x9e\x48\x04\x18\xce\x21\x76\xb2\x96\x0e\xf1\x1d\xbb\x16\x0d\x30\x1d\x87\xf6\xf8\x11\xfa\xd5\xb9\xa6\xc4\x6e\x17\xf5\xf6\x11\xb9\x25\xa8\x2c\xf4\x91\xb5\xb8\xba\xba\xcd\xc3\x5c\x49\x75\x37\x87\x28\x55\xfa\x44\x03\xb4\xb8\x8b\x53\xf1\x84\x48\x48\x18\xc6\x74\x4f\x38\x2e\x6e\x0c\x6b\x7e\x25\x39\xb7\x63\x19\x90\x82\x94\x00\xb8\xe2\x68\xf9\x0c\xf6\x08\xd4\x75\xac\xec\x30\x7d\x4c\x3b\x26\xfa\xe4\x20\xf8\xba\xa8\x25\x83\x95\x58\x8a\x1a\xec\x38\xad\x8b\xaf\x4e\x31\x6d\xfc\xdd\xba\x60\x14\x83\x8b\x3d\x4d\x9a\x43\x53\xa2\x4a\x0e\xb8\x89\x43\x3b\x1b\xb0\x89\xa3\x79\x18\x2f\x8f\x99\x93\x72\xb9\xa1\x1c\x08\x41\x25\x5a\xab\xc1\x50\xdc\x55\x59\xc4\x83\x62\xaf\xf4\x8f\xdd\x6a\xe6\x1f\x74\x50\xb8\xc5\xa2\x46\x34\x6e\xaf\xde\x60\xd8\xe3\xce\x3e\xf8\x92\x7d\x60\x9c\x38\xd6\xaa\x6b\x0e\x5d\x7d\x54\xc7\x86\x7a\x1d\x72\xd2\xb8\x4d\x8f\xe1\xef\xd0\x54\xc9\xc9\x6d\xbc\xb5\x85\x33\x1e\x95\x67\xe2\xfc\xe0\xc4\xe3\xc9\xa6\xe9\x94\x5e\xb5\x6a\xa7\xe0\x2d\x0e\xad\xa4\x43\xa7\xda\xee\xfe\x34\x04\x9a\x84\x29\x53\xc0\x45\x65\xc5\x21\x0b\x53\xcd\x03\x7c\x71\x68\xe0\x03\x7c\x71\xff\xc1\x54\x72\xdb\xa7\xe1\x0a\xf4\xc5\xa1\x95\x32\xd1\x17\xd5\x67\x45\x5c\x9c\xa4\xf0\x98\x09\xb9\xe8\x41\x31\x7d\xb9\x0a\xed\x48\x7e\xe6\x12\xbd\x2e\x91\x44\x86\xd8\x15\x2d\xac\x40\x2b\x0e\x8d\xa7\x63\xf3\xb3\xaa\x21\x49\x94\x45\x25\xe6\xf1\xda\x11\x16\xe0\x23\x3f\x1e\x5a\x16\x90\x89\xa3\xbb\xec\x19\xb9\xe2\xb8\xb1\x59\x76\xf7\x1c\x36\xcb\x38\xf2\xc5\xb3\x60\xcf\xb9\xaf\x53\xa0\x00\x4b\x71\x68\x02\x0b\x6e\xe8\xbc\x9f\x09\xc3\x58\xbc\xe1\x0f\x33\xb0\xa9\x97\x85\x60\x56\x86\x18\x80\xb2\x38\xb4\x28\x86\xd0\xc5\xe4\x15\x98\xa0\x2c\x0e\x6d\x7c\xa0\x2c\x0e\x6d\x21\xa0\x2c\x0e\x6d\x5b\x09\xb2\xa8\x1a\x18\xd8\x39\x9d\x03\x51\x16\x8d\x6d\x9f\xa1\xcb\x8e\xca\x6d\x18\x19\xdd\xed\x16\x59\xda\x3a\x07\x09\x2c\xc6\xd1\x7f\xfe\x2e\xa5\x5b\xfe\xa1\xab\x41\xf7\x1f\xee\xbf\x86\xcf\xb2\x25\xc7\x01\xf3\xd3\xb4\x01\x2c\x63\x8d\xfc\x48\x81\xc9\x31\x1d\xca\x39\xf0\xa5\x48\x46\xc8\x99\x4e\x60\x46\x00\x54\x66\x94\xdc\x25\xcc\x69\xe9\x54\xcc\x10\x8b\x14\xc5\x61\xe1\xc2\xa3\xb9\x07\x60\xc6\x5d\xdc\xba\x72\xbc\xbc\x60\x4f\xcd\x1b\xd4\xa8\x1e\x04\xec\x12\x40\x36\x0e\x2d\x6a\x41\x74\xb3\xe6\xb1\xc4\x68\x24\x29\xff\x04\xa3\xf1\xc8\x6b\xab\x20\x8e\xa5\x17\xab\xca\x71\x31\x48\x38\xa4\x76\xb7\x90\x43\x7a\xd9\x14\x86\xab\x78\x41\x11\x5a\x64\x55\xd4\x03\x4d\x54\xf7\xc5\x68\x06\x39\xf8\x11\xbb\xda\xb5\xd2\xee\xaa\x61\x20\xc8\x91\xa2\x19\x2a\x7a\x0e\x8a\x49\xc5\xa3\x56\x23\x41\x74\x10\xfc\xdc\x8c\x9d\x31\x61\x76\x49\xd8\x46\xed\xbc\x81\x3f\x8e\xd6\x91\x48\x6d\x71\xf8\x15\xc3\x80\x29\x04\x09\xd4\x7a\x69\x7f\x91\x3f\x21\x1d\x8b\x96\x0c\x70\x1c\x47\xaf\xd6\x80\xd7\xa2\x87\x01\xd7\x1b\xad\x3b\x20\x34\x8e\x0e\xc9\x0a\xcc\xa8\xda\x76\x62\xb8\x6c\x16\xce\xe8\x17\x77\x8a\x10\x23\x2a\xbe\x81\x13\xae\xa6\xa5\x08\x0c\x19\x6e\x3a\x02\x3d\xbb\x27\x2c\xb4\xf9\x20\x4f\x27\x70\xa3\xaa\x2b\xf8\x8c\xb5\xba\x4f\xb0\x83\x1a\x17\x13\x53\xf9\xc1\xa3\x30\x73\x9b\xf9\x15\xdc\x71\x78\xf8\x70\xa1\x99\xc3\x43\x36\xbd\xd3\x18\x96\x79\x00\x7f\xa1\xbf\x06\xa7\x28\x92\xc6\x92\xfe\xd9\x8c\x8a\x21\x69\x55\x67\x68\x07\x55\xa2\x8d\x95\x87\x89\x5e\xa6\x67\xac\x27\x08\x7b\xa7\x0a\x76\x88\x38\x3c\x3c\xfd\x5c\xdb\x69\x7e\x88\x53\x63\x2b\x22\xa6\xd8\x8d\x73\x38\x18\x38\xa7\x6a\x34\xa8\x8c\xfb\x2b\x8b\x50\xaf\xad\x0b\xc4\xa8\x2d\x02\x20\xc6\xa1\xe6\x0c\x10\xe3\xd1\x15\x9c\x83\x30\x91\xe5\xfe\xc7\xe0\xa9\xfa\x19\x5c\xdb\xf5\x2c\xfc\xda\xb6\xa5\xf5\xa9\x40\xa4\x0d\x9c\x60\xf5\x0f\x0e\x39\xe3\xf0\x54\xc3\x0c\xd5\xe7\x03\xfe\xa7\x8a\x0b\x40\xe3\x50\x89\x0e\x83\x4c\x5a\x96\xf6\x84\x86\xff\xc8\x9d\xd0\x33\xe3\x76\xb0\xf4\xea\xb6\x27\x12\x88\xc7\xc6\xf9\x08\x2f\x18\x55\xaa\x44\x71\xd4\x1c\x10\xb8\xb7\xf6\xc3\xd3\xfa\x28\x00\x38\x71\x66\x1c\x53\x40\x8c\x64\x7b\x76\x58\xd5\x6d\xb8\x07\xb9\xb7\xd3\x29\x31\x4c\xe3\xa1\x22\x1d\xf2\x3d\x2f\x2d\x43\x6f\x16\xed\x27\x89\xcc\x38\x3c\xd7\x64\xe5\xe8\xea\x16\xa1\xa9\xd4\xad\x82\xbe\xd6\x95\xe1\x43\xa6\x86\xa0\x1d\xe6\xf3\xd6\xba\x10\x5c\xdd\x75\x84\x6e\x91\x19\x8b\x56\x84\x20\x88\xa4\xcb\xa8\x13\x9a\xb1\x65\xf9\x44\xf6\xe4\xd9\x99\xcc\xf2\x17\x11\xbd\x74\x0b\xfd\x4c\xcd\x38\x04\xcd\xd2\x22\x31\xb9\xbc\xeb\x4a\xdd\x53\x86\xa7\x6f\xdf\x34\xf7\x98\x8e\x77\x02\x36\x76\xd2\x85\xcc\xf9\xe3\xca\x96\x13\x04\x78\xe3\xae\xcc\xf2\xa7\x47\xd0\x7f\x72\x26\x16\x2f\xec\x2f\x78\x03\x48\x8e\x43\x4d\x79\xfe\x9c\x08\x4a\xa7\x86\xc7\x74\x4d\xf9\x1a\xe7\x6f\x8a\x31\xac\x91\x66\x1e\xb9\x0e\x54\x6b\x80\xa6\xf2\x1e\x78\x8f\x43\x4d\x73\xe2\x07\xa3\x62\x3b\x0f\xad\x34\xf1\xa7\xcb\xf3\x3c\x72\x30\x74\xf3\xc8\xb9\xb4\x21\xc9\x51\xd8\x9f\xdb\x56\x19\x81\x19\x44\x34\x60\xcc\xcd\x1d\x03\xf0\xe5\x09\x98\xe4\x50\x63\x04\x4c\x72\xa8\xae\x82\x25\x39\xbc\xf4\x07\x32\x72\x68\x91\x99\xe2\xfe\xeb\x66\x3b\x8b\x44\x1d\x95\x69\x16\x8f\x01\xb4\x77\x9a\x4a\x5c\x93\xc5\xac\xb6\xc1\xc4\x54\x49\x2c\x94\x78\x8a\xdb\xa5\x89\x65\x56\x27\x83\x81\xe0\xf1\xa2\x52\x3a\xd3\x47\x15\x4d\x70\xca\x19\xc3\x02\xd2\x5b\xf8\xcb\x4c\x7d\x91\x36\x9a\x7b\xd5\x65\x69\x0c\xca\x2e\xea\xc8\xaa\xc1\x04\x2c\xca\xa1\x1a\x3a\x45\x2e\x0e\x14\xc1\x49\x6a\x52\xed\xdf\x53\x1f\x17\xb2\x5b\xcf\xd9\x72\x7a\x99\x14\x70\x29\x0d\xc5\x98\x64\x19\x57\x4f\x98\x2a\x9e\x81\xf6\x34\x7b\xf6\xc4\x17\x7b\x42\x55\xb8\xbf\xa8\xce\xcf\x9e\x8d\x33\xf2\xee\x16\xb6\x2e\x94\x4d\x8d\xe1\x33\x39\x2b\xec\x6c\xca\x59\xed\x6e\x77\x7e\xd0\xaa\x26\x5a\x68\xc9\xf6\x24\x1f\xce\xa8\xc8\x97\xd9\x20\x5b\xdb\x61\x70\x1b\xda\x0f\x37\x83\xb7\xa1\xda\x25\xe6\x30\x3c\xc5\x3f\xec\x3a\xd5\x0e\xe3\xf6\xa8\x75\xe4\xce\x66\x42\x13\xd2\xcb\x02\x32\xb3\xea\x57\x2e\x9a\xcf\x4e\x0f\xca\x69\xa2\x63\x92\x89\x78\xce\x30\xf2\x9c\x36\xc2\x79\x73\xcb\x11\x93\xaa\x3e\x33\x71\xd5\x51\xd9\x9a\x44\xc6\x2c\x3b\xa2\x11\x58\xd3\xce\xd4\xe7\x55\x63\xd0\x24\xde\x54\x8d\x0c\x44\xcd\xd1\x6d\x1b\xb3\xaf\xd6\xeb\x39\x73\xdc\x7c\x34\xd9\xad\x4e\xa7\x9c\x1b\xf9\x7b\x9a\x46\xec\xe7\x37\x58\x98\x9c\x0f\x3c\x5c\x15\xb2\xe7\xf2\x7b\xba\x84\x8a\x0a\x9a\xf0\x04\x2a\x73\xa8\xfe\x08\x95\xd9\x93\x80\x2c\x16\x12\xb9\x1a\x74\xcc\x01\x94\xd7\x9c\xc2\xff\x6b\xb0\x99\xc9\x8c\xe1\x36\x53\x66\xbc\x7c\x66\x0b\x23\xf2\x26\x1e\xa6\x56\x21\x30\x30\x77\x1b\xbe\x98\xd4\x8a\x4e\x91\x19\x41\xb5\x08\xd8\xcb\xa1\xe8\x0e\xea\xe5\x50\x5e\x9e\x38\x9b\x92\x74\x6e\x02\x73\x39\x54\x2c\x27\x96\xd2\x43\xb2\x73\x49\x76\xdc\x43\x1a\x44\x49\x1b\x3d\x81\xb3\x1c\x8a\xfd\xf3\xce\x8e\xd3\x41\x50\xb6\x0e\xf7\xd3\x5d\xb8\x91\xa3\x1b\xa8\xa5\xf3\xf7\x17\x32\xd1\x9c\x82\x7d\x18\xae\x08\xba\xe5\x1e\x21\xa3\xba\xa5\x43\x76\x53\x48\x8e\x1c\xfb\x8d\x97\x35\x5c\x77\xaa\xaa\x8e\x7c\xc1\x0e\x44\x82\x9f\x29\x6c\xe5\x24\x65\xf1\x04\xb6\x72\x28\xc7\x03\x5b\x59\xa7\xdb\xf0\x91\x53\x14\x5f\xf0\xfb\xf0\x30\x62\x60\x55\xf4\x9e\x8f\x74\xd6\xdd\x43\x32\x50\x25\xf7\xf9\xaa\xaf\xbb\x8b\x5f\xdc\x92\x6c\x2e\xd5\x4e\x37\xe5\x3b\xa9\x8a\x7d\x92\x7e\xa2\x6e\x3e\x38\xae\xa2\xa5\x38\x95\xaa\xe8\xc0\x54\x0e\xaf\x79\xe6\x66\xbe\x29\xf2\xcd\x2f\x6b\x65\x9b\x7c\xc4\xa9\xd8\x71\x14\x52\x05\xfa\xc9\x25\xa5\x97\xcf\x80\x57\x96\xe1\xe2\x82\xe0\x2f\x4b\x06\xa1\x72\x4f\xcd\xe2\xc5\x5e\x74\x9e\x69\x19\x9e\xb6\x92\xef\xa2\x3a\x03\x5d\x59\xe5\x16\x0b\x1d\x52\xf9\x10\x18\xcb\xa1\x39\x7e\xfd\x54\x38\x38\xc7\xc2\x58\xda\x55\x90\x2b\xeb\x08\x7f\xaf\x14\xf0\xd9\x4b\x5f\x5a\x3b\x98\x6f\x44\x1c\xa0\x2a\x87\x63\x4e\x70\x4a\x0d\x3c\x80\x53\x0e\xe5\x57\xb0\x29\x8f\x05\xde\xf8\x5c\x18\x3c\xfb\xe1\xe8\x0c\xd5\xd0\x8d\x14\xac\xc9\xfd\x0f\x43\xad\x52\x20\x8e\xec\xf2\xbe\x91\x94\x5f\x13\xb0\xc9\x5d\x1b\x03\x81\x69\x29\xfa\xad\xaa\x34\xdc\xfd\x83\x95\x64\xb7\x2f\x14\xbd\x70\xaf\x26\x3c\xa5\x3e\x9b\xe0\x53\x0e\xa5\xd3\xa5\xa2\x47\x46\xa7\x09\xf2\xe4\x11\x6e\x4f\xa0\x27\x87\x92\xae\xd0\x93\x93\xbc\xce\x73\x35\x67\x88\x69\x87\x9d\x8d\x2c\xd0\xfd\xc8\x3f\x34\x6f\x39\x7a\x43\x31\xcc\x4c\xb0\x50\x01\x87\xab\xb6\x59\xd8\xff\xb7\x27\xf1\x71\x84\xde\x2a\x6a\xf8\x02\x3b\x32\x8c\x81\x5d\x26\xbd\xd4\xb6\xb4\x92\x09\xe5\x57\xd2\x5f\xe8\xd2\x12\x7f\x39\xf2\x33\x96\x0b\xd2\xb2\xf4\xc3\x71\xb6\x50\x02\x01\xfa\x9a\x2b\xf5\x3c\xe8\x12\x58\x92\xbb\xbf\x94\x30\xa5\xb6\x3b\x7f\x0d\xc7\xcb\xa4\x0c\x57\x81\xe5\x41\xeb\x53\x0a\x49\x2c\x49\xbd\x00\xc0\x92\x1c\x0a\x2e\x6b\x78\x4c\x97\xd5\x7e\xfc\x41\xd7\xc3\x63\x6a\xe3\x84\x62\x78\xad\xbd\x22\xdb\xa6\x0d\x54\x43\x05\x8f\x15\xca\x30\xe8\x53\xc0\x52\x0e\x60\x56\x26\x48\x94\xa5\x68\xa8\x02\x8a\x72\x2f\x2e\xdd\x8a\x9c\x12\xc6\xa1\xfb\x4c\xff\xfd\xe9\xf6\x07\x2e\xe5\x50\x14\x01\x96\xb2\x90\x3c\x79\x02\x4b\x79\x88\x07\x3a\xc1\xa5\xac\xcb\x23\x4a\x60\xa7\x44\x6a\x01\xb3\xa1\xe0\xb4\x4c\x88\xe0\xba\x73\x4b\x09\x7a\xc4\x5c\xa9\x81\x66\xad\xce\xa3\xcf\x68\xa3\x9e\x92\x99\xfd\xb5\xa6\x8f\x54\xc1\xb4\x60\x56\x21\xb2\x30\x4f\x30\x2a\x87\xec\x7f\x99\x9c\x5b\xc2\xb9\xd4\x45\x95\x12\x56\xc6\x73\xf8\x4c\xa7\xdc\xe4\x8b\x4e\xa1\xc9\xae\x25\xb8\x32\x9d\xf5\x2e\x72\x48\x06\xbc\x8b\xd4\x90\x04\x5c\xe5\x50\x90\x58\x67\x1e\x50\xba\x7b\xb2\x35\x60\x4d\x40\x57\xd6\xe5\x58\x89\xe4\x94\xa5\xae\xbc\x71\xf4\x99\x33\x01\xc7\x02\x9f\x72\xe4\x6e\xbf\x1c\x1d\x02\xed\x22\x8f\x90\x8c\x04\x7c\xca\x43\x25\x76\x79\xcb\xa8\x91\x6d\x5d\xd9\x0d\x66\xd0\x2b\x47\xad\x6c\xeb\x92\x50\x20\x61\x2e\x6e\x16\x65\x3d\xeb\xca\x8d\x61\x65\xec\x57\x94\x3f\x30\x22\x0f\x75\x21\x31\x22\xfb\xe1\x7e\x35\x6a\x72\xba\xc9\x52\xad\x74\x3e\x9f\xb0\x45\xea\x7a\x14\x1e\xdd\xca\x38\xd3\x24\x99\x32\xed\xa3\x07\xc4\xac\x3e\x3a\x88\x25\xb2\xa3\xf3\x43\xcc\x63\x52\x13\x73\x54\x1b\xa9\x21\x9a\xe3\x24\xe7\xea\x5c\x06\x39\x68\xd2\x04\xb5\x71\xd7\x45\x8f\x3f\xd9\x2b\x8a\xc5\x92\x63\x39\x14\x6e\xf6\x42\x27\x55\xb0\x1d\x07\x99\x80\xe6\xfa\xb2\x15\xff\x78\x2c\xce\x14\x7d\xb9\x05\xf6\xb4\x08\xf4\x08\x78\xe5\x3c\x61\x54\x55\xeb\x21\xa8\x8f\x55\xf3\x1d\xa0\x8f\x43\x0a\x02\xcc\xe3\xee\x96\x1f\x99\x17\xd6\x3f\x4e\x03\x61\x7e\xbc\xb0\x07\xf2\xf9\xe5\x2a\xd4\x02\xca\xca\x96\x20\x24\xd1\xdd\x2e\xb2\xe3\xd4\x0d\xf4\x3c\xf0\x3f\x87\xf3\x9c\xa8\x81\xae\xe7\x29\xe8\x3f\x69\xf3\xa6\x90\x8f\x1d\x7c\xb8\x79\xa2\x06\x7a\xec\x80\x7f\x2c\xfa\x46\x9e\x87\x30\xc1\x36\x07\xa7\x18\x16\x7e\x84\x61\xb0\xc0\xeb\x54\x31\x56\x02\x14\x25\x6b\xa7\xec\x50\x03\xee\x59\xb2\x87\xd4\x5b\x94\x7d\x38\x9d\xe7\x3f\x1b\x28\xcf\xee\xdf\xc3\xf2\x70\xd0\x61\x09\xb7\x2f\x0c\xf0\x2c\xe4\x0f\x41\x58\x06\x13\xb2\x0c\x38\x45\xc2\x40\x6a\x41\x05\xf9\xf1\x30\xf5\xc2\x49\xb2\x81\xd9\xfc\xdd\x04\xd0\x14\x36\xf1\xc0\xae\xe9\x0f\xd2\x77\xca\x66\xb3\x94\x7a\x3d\x7d\xac\x9e\x5c\xfa\xb8\x79\x69\xe8\xac\x0f\x40\x64\x12\xeb\xd3\x2b\x46\xed\xb7\xa7\xa9\xee\x48\x35\x39\x85\x85\x2c\xda\x92\x4f\x99\xec\xf0\x8f\xea\x1f\xb4\x97\xcc\x14\xc1\x1a\x2c\xc8\x91\xbb\xcf\xc0\x88\x23\x8b\xb3\x7b\xd1\xb5\x80\x82\xdc\x87\x92\x01\x37\x77\x2f\x92\xb2\xf8\x8f\xfd\xb0\x93\x78\xf2\x68\xb0\x3e\x51\x14\x67\xf7\x77\xa8\x0b\xdb\xfd\xec\xd9\x13\xba\xc5\x0d\xa5\x9c\x06\x94\xc8\xea\xf5\xc8\xa9\x43\xac\x26\xc9\xd3\x9c\x06\x86\x68\x9c\xa9\x34\xa2\xa8\x9c\xdd\x2d\xe4\x57\xb7\x45\x6c\xe4\x71\x20\x56\xa6\x8b\x19\xcf\xc4\x44\x1a\x8f\x7f\x92\x80\x2f\x0e\x7b\x82\x3e\x98\xbb\x69\x64\x8e\x40\x9e\xa5\xee\xc5\x97\x74\xb9\xe2\x39\x7b\x65\x09\x2f\xb3\xad\x09\x93\xf4\xf4\x77\xce\x1d\x74\xf8\x94\x5b\x7b\x58\x06\x80\x2b\xc8\x26\xc0\x4b\x1e\x32\x96\x33\xf0\xbd\xb0\x17\x22\x57\x41\x14\x4f\x78\xb5\x8c\xf7\xcc\x6b\x4e\xe7\x26\xf0\x6b\x72\x17\x87\x8d\xf9\xd1\x6b\xef\x18\x74\x78\xca\xdd\xae\x6a\x86\xda\xb0\x81\x91\x1c\xb9\x77\xa6\x0b\xe3\x3c\xe1\xdc\x9a\x3b\x84\x78\x8e\x3c\x1d\xa2\x48\xea\xa1\x79\x8a\x7c\x61\x0f\xc9\x3c\x44\x22\xf1\x99\x20\x92\xda\xb2\xcf\x99\x1e\x56\x3c\x3f\x78\xf5\xda\xb4\x67\xcb\xc9\x4c\x4e\xeb\xe1\xc2\x1d\xc8\x3b\x68\x81\x26\x8b\x9e\x74\x22\x4d\x26\x15\x83\xeb\x02\xeb\x35\x01\x97\xdc\x9d\xb2\x2a\xb9\x84\xab\x47\x1a\xa3\xe9\xfc\x1b\x0e\xa2\x35\xf8\x24\x1c\x64\xd8\x5d\x4d\xc6\xdd\x67\x7b\xe5\x76\x86\x1f\x27\x41\x94\x1d\xbb\xed\xb8\x76\x1d\xae\x30\x99\x8b\xc0\xa5\x99\xe7\xe9\x39\xf6\x7b\x4e\x8f\x67\xe4\xb4\x65\xe7\xff\x94\x2e\x3b\xd4\xd3\xb0\x71\x46\x41\xa0\xa5\xa2\x83\x90\x95\x33\xe7\xe0\xcc\x3e\xd1\x41\xb0\x33\x96\x7b\x16\xb7\x5b\x03\x51\x00\xb0\xdc\x1f\xf9\x92\x13\x42\xeb\xc9\x9b\x51\xc7\x44\xb0\xac\x8a\xa2\xa7\x00\x19\xda\x95\x4f\x38\xb5\xd2\x27\x08\x96\x53\xc9\x1b\x00\xcb\xfa\xf3\x24\x91\x73\x61\xa0\x8e\x00\x66\xb9\x0b\x53\x13\x76\xe8\x31\xff\x26\x7b\xb7\x07\xbb\x59\x05\x9c\xa1\x5b\xf5\xf4\x0f\xba\x7c\x27\xb9\x61\xb6\xb5\x52\x6b\xe4\x06\xc2\xb2\x24\xd3\x20\x38\x45\x23\x37\x08\x96\x63\x4c\x3b\x43\x60\xaa\xbb\xec\x49\xad\x83\x6a\x51\x97\x97\x4e\x1f\x40\x58\xd6\xe5\x58\xb6\x98\xd1\x74\x48\x3d\x9f\x9c\x2e\x66\x5b\xc1\x62\x5a\x1a\x62\x23\x05\x46\x59\xfe\xb9\x0a\x84\xa2\x2c\x72\x86\xcf\x93\xab\x5c\xf3\x00\x80\x6d\x99\x86\x7a\xb0\x2d\x47\x2e\x34\x71\x9b\x3a\xfc\x9c\xa0\x68\x98\xf8\xed\x24\x47\x75\x72\x9e\x97\xeb\x19\x99\xb4\xc2\x0a\xda\x0e\x08\x96\x43\xb7\x32\x10\x2c\x77\xc3\x16\xe0\x12\xa5\xfb\x2c\xc1\xe3\xa3\xcf\xe3\xee\xee\x26\x87\x92\xe9\xfe\xce\xcf\x4d\xcc\x5c\x7c\x0a\x60\xee\xb0\x4f\x01\xec\xf0\x85\xd0\x15\x19\xc2\x67\x3f\xe8\x13\x96\x70\x1d\xa4\x81\xb6\x8c\x3c\x1a\x9f\x86\x13\xcf\x06\x5a\xf7\xf2\x58\x6a\xfc\xd6\xf4\x7e\x91\xcc\xd0\xec\x54\x97\x49\xac\xa1\x34\xa0\x5c\x1e\xe0\x99\x4c\x50\x2e\xab\x21\xdf\x97\xd7\xbe\x6e\x3c\x20\x2f\x77\xff\xac\x29\x98\x4b\x4b\x68\xd9\x64\x13\x5c\x26\x47\xd2\xa2\x7f\x29\xfe\x64\x7b\x72\xaf\x69\xc5\xd0\xe1\x61\xbd\x9f\xf5\x52\x02\x59\xc8\x44\x4e\x20\x63\xee\x3f\xa8\xf7\x70\x91\x68\x1c\x29\xc7\xfc\x50\xd7\x61\x47\xfc\xc6\xd4\x64\x93\xe7\x93\xdf\x0f\x9e\x2f\xa4\x1c\x2b\xcd\x89\xf2\x23\x92\x68\x64\x61\xa5\x9f\xee\x4b\x52\x6e\x9a\x28\xf6\x89\xce\x16\x95\x22\x9f\xed\x06\xa3\x23\x77\xa1\x79\x68\x80\xc8\x1c\xe6\xdf\x01\x21\x33\x34\x27\x89\x90\x39\x5d\xfa\x44\xc8\xf4\x26\x00\x50\xcc\x61\x6e\xa5\xab\x2a\x58\x42\x1c\x2e\xf5\x7d\x36\xd1\x65\xda\x24\xef\x14\x2e\x32\x25\x99\x1d\x07\xec\xcb\x61\xe2\x9a\xcb\x08\x4d\x2f\x3e\xae\x96\x3b\x8a\x36\x5a\x4a\xc8\xfe\xe3\xa9\x87\xc4\x82\x7e\x39\x4c\xba\x01\xe2\xe5\x30\xbf\xcd\xe5\x5d\xae\xb9\x2f\x80\xbc\x1c\x91\x55\x7d\x3c\x33\xa8\xbc\xd7\xe5\xf4\x00\x73\xb9\x1b\xa4\x2a\xfd\x86\x9d\xf5\x9e\x1b\xdd\x3f\x98\x37\x78\xe7\x65\x22\x6a\xe4\x82\xab\x6b\xdc\x28\xbe\xb0\x7e\x90\xc2\xab\x3b\xa1\xfe\x4e\x8c\x45\xfb\xd3\xc7\xe5\x12\x67\xcb\x43\x77\x71\x4d\x6c\x56\x92\x4b\xdd\xdf\xfb\x98\x04\xca\x84\x37\x89\x8d\x19\x9a\x4d\x2e\x2c\xcd\x26\x48\x01\x1a\x73\x98\x70\x44\x68\xcc\xa5\x2b\x38\x88\x97\x23\x1c\x62\x8a\x13\x14\x0e\xd3\x9d\xfa\x4c\x16\x06\x07\x85\xb6\x6f\x72\xa5\x8b\xb8\x99\x99\x3b\x5a\xe8\x4b\x0f\x8d\xb1\xa2\xd3\xe1\x6a\x8d\xf6\xe6\xef\x52\xdb\x9f\x4e\x0a\xd6\x68\x53\x8e\x5c\x29\x75\xd8\x5b\x14\xfa\x43\x37\xd4\x0b\x2f\x64\xb3\x72\x5c\x33\x97\xca\x3f\x2a\x2e\x50\x0c\xc3\x28\x52\x2f\x9f\x2e\x5d\x92\xa7\x73\xb5\x55\xf7\x74\x1d\xbd\xf2\x22\x79\xf9\xe2\x94\x58\x3c\xf7\x89\xf5\xb2\x4f\x1c\x6e\x8a\x1a\x48\xc2\x57\x06\xdd\xf0\x11\xa1\xa3\x26\x6c\x00\xd7\x72\x6f\x0d\xaa\x5a\xca\x8f\x18\x37\xae\x95\x22\x2e\x75\x2d\xa9\x04\x8b\x00\xc2\x5c\xd1\x0c\x09\xc2\xdc\x6e\xe4\xff\x18\xfb\x93\x24\x7f\x76\x5f\xbf\x12\x9c\xbf\x55\xdc\x1d\x94\x3b\x7b\x9a\x5d\xfb\x4f\x6a\x5c\xb5\x07\xef\x98\xa6\x81\xa4\x67\x2f\xa5\xfd\xa7\xe1\x1c\x46\x5c\x49\xd9\xfc\x72\x10\xe6\xe1\xf8\x92\xce\x1e\x04\x41\x00\x9f\xc6\x8b\x7a\x07\x36\x8b\x87\xf8\xd5\x86\x14\x78\x0c\x33\x26\xc3\x12\x7c\x2e\x79\x55\x05\xf8\x5c\xd3\x87\xfe\x71\x25\x21\x1a\x6d\x8c\x39\xb9\x0c\x18\x73\xf9\xf4\xb3\xc5\x05\xca\xfe\xf7\x20\xac\xeb\x50\xff\x94\x3d\x7f\x12\x2f\x1e\x6d\x28\xdc\xdb\x1e\x8d\x0e\x05\xa5\xd3\x0d\xf9\x71\x51\x15\xbf\xb4\x2c\x8f\x44\x38\x3e\xeb\xa0\xf8\x78\xf3\xe3\xa5\xd7\x83\x9d\xe1\x1c\x4c\xa1\x67\xaf\xaa\x6a\xb2\x4a\x16\x0a\xd7\xbd\x59\xae\xf8\xd4\xdd\x41\x94\x58\x9d\x4f\xdd\x64\x51\x47\xe3\xbb\x3d\x6a\xda\xbc\x28\x7b\x34\x34\x54\xf3\x0a\x16\x5d\xd2\x80\xe9\x41\x5a\xd7\x2d\xee\x51\x28\xf7\x16\xea\x69\x1a\xa2\x65\x7f\x99\x16\x4f\x3f\xe2\xa7\x66\x88\x89\x07\x11\xdd\xcb\x6a\x61\xe9\x74\xb5\x12\x96\x6e\xc8\x00\x81\x98\x8b\x56\x51\x45\x4c\x24\xf4\x76\x02\x63\x2e\x1d\x86\x14\x7d\x3a\x83\x8b\x3c\x23\xde\xdc\x04\x12\x6a\x80\x37\xd7\x34\xe3\x14\x61\x2e\x79\xdb\x04\xaa\x5c\xd3\xa9\xe6\x19\x76\x16\x5d\x82\x47\xb4\x8e\x17\x0f\xaa\x2a\xaf\x72\x9e\x2d\x4d\x23\xbf\x3d\x04\xf2\xdc\xd3\x47\xf3\x08\xaf\x57\xc0\x8e\x3b\x87\xdc\xfe\xd1\x56\xc2\x2d\x01\x24\xb9\xa6\x71\x29\x80\x71\x4d\x13\xbb\xc7\xb0\x9e\xf2\xee\x47\x97\x68\x99\xf7\xa3\x4b\xb4\x37\x4c\x0f\x4b\x41\x03\x38\x70\xe5\xb2\xcb\x50\x58\xb9\xdc\xca\x1f\x65\x3e\x40\xe7\xb2\x92\x1d\x98\x73\x49\xd6\x06\xe6\x5c\x52\x88\x02\x73\x2e\x3a\x9b\xf2\xd1\x6a\x79\xea\x06\x5b\xee\xd4\x15\xe2\xb9\x34\xc9\xa6\x7b\x2f\x7b\x88\xde\x32\xe4\xa7\xd3\x4f\x89\xda\xce\xc2\x79\x4d\xc3\x28\xf1\xe7\x34\x38\x79\x10\xa8\x8d\x72\x05\x16\x5d\xde\xcb\x99\x6b\x22\xef\x2a\x1e\x4c\x1d\xb5\x43\x79\x6e\x14\x79\xd6\x0d\x7b\xfa\xd1\xcd\xeb\x24\x66\x57\xdd\xd0\x73\x03\x16\x07\xf4\x5c\xf6\xae\x18\xe4\xb9\x7c\x6e\xba\x35\x32\x37\xb8\x2e\xce\xe7\x47\x85\x27\x25\xe3\xc4\xd6\x61\x56\x8f\xb7\x4a\xce\xae\x10\xb8\xb3\xa1\x93\xc0\xa0\x2b\x7b\x20\x9e\xcd\x28\xfd\xc1\xc5\x30\xcc\xa1\x73\x02\xa5\x11\xfc\x4c\x2d\xc5\xb3\xc5\xeb\xe4\x0f\x42\xfb\xd0\xb8\x67\x4f\x35\xea\x8a\x48\xed\xb5\xe6\x06\xad\x73\xd8\x04\xad\xf3\xea\xef\xc1\xef\xcd\xa0\x68\x00\xd8\x9d\x73\x98\xea\xcd\x8c\x21\xfd\xad\xad\xa4\x1b\xf5\x63\x20\x34\xb7\x76\xb1\xe9\xea\xe9\x2a\x41\xd8\xd6\xc2\xe6\x01\x8a\xd6\x2b\xd9\x67\x1b\x8d\xf8\x59\x39\xc2\xfe\x81\x08\x8a\x08\xd2\x40\xd3\x65\xbd\xdb\x9e\x4f\x55\xdd\x7e\x61\x61\x98\x81\xc0\x28\x5a\xfa\x3c\x48\xdb\x8a\x7e\xe0\xd7\x65\x4f\x18\x8f\x4e\x00\x5e\x28\x3e\xc6\x40\x73\x80\xb7\xb8\xcd\x9e\xf0\x7c\xf8\x5b\x55\x73\xdb\x21\x88\x1e\xcf\xc2\x45\xc3\x39\xaa\xff\x9d\x12\xcd\xa3\xff\x9d\xd7\x9c\xa0\xdc\x0d\x6f\x0d\x9e\x2d\x6f\xcb\xae\x8d\x4c\xba\x87\x63\x79\xaf\x6a\x29\xcb\xdb\x79\xff\x67\x68\xe4\xa4\x06\x40\xf1\x12\xf3\xd9\x52\x36\x9b\xf9\x7b\x28\xb7\x72\xa0\x17\xea\x6e\x1a\xdb\xe2\x55\x6a\xee\xfe\xcf\x84\x66\x7d\xbf\xc7\x66\x09\xbe\x30\x1c\xdd\xdc\xac\x30\x98\x32\x58\x77\x4d\x93\x81\x57\x63\x49\xc5\x23\x80\xef\x9a\x16\x07\xaf\xf2\x33\x0c\xef\x55\x7d\x98\xfc\x9f\x11\x60\xbe\x00\x74\xd7\x3a\xec\xeb\x55\x94\xe6\xd8\xf0\x9e\xbb\x0f\xfc\x90\xd7\x0c\xd5\xdc\x7b\x08\x28\x1b\x33\x72\xcf\x69\x1b\x31\xcc\x7b\xe3\xd7\x0d\x81\xe5\x0d\x62\x58\xeb\x43\xfa\x9e\x6c\xfe\x80\x87\x27\x5d\xfb\x6a\x5e\x0e\x16\xf4\x78\x9b\xd3\x9e\xbe\xf1\x6a\x5f\x4d\x10\x50\x62\x69\xfc\xd9\xbb\x03\x98\xb1\xe6\xbd\xa8\xd0\x62\xde\x78\xbe\x44\x9c\x56\xaf\x0e\xb4\xd8\x36\xa6\x79\x11\xba\xbc\x09\x05\x27\x2c\x1a\x42\xf1\xc3\x0f\x51\xfa\xd8\xd3\x87\xaf\x1a\xd3\xf2\x84\xbf\x00\x13\x96\x9d\x18\xef\xd8\x93\x97\xf2\xb0\x47\x37\xa4\xa2\xc0\x60\xf5\x84\xff\xbd\x7b\xe3\x40\x8c\xd8\xc8\x60\x8a\x9e\xef\x54\x89\x0b\xdb\x03\x00\xac\xe9\x53\x08\x9e\x57\x64\xf1\x45\x19\x88\x15\xf9\x7a\x69\xe1\xed\x32\x28\x5e\x3b\xac\x82\x28\x5e\x15\x7c\x8c\xf1\x72\x97\xaf\x46\x01\xdc\xae\xc8\x4e\xed\x8d\x74\xa1\x95\x28\x08\x5d\xb1\x7b\x93\xe5\x96\x9d\x20\x49\x80\xc5\x95\xe4\x58\xc0\x6f\x45\x16\x7f\xe8\xbe\x50\xa4\x0c\xd9\xbb\x60\x71\xb6\xbc\xbf\x13\x67\x2b\x79\xcf\xfb\xde\x3b\x84\xbd\x59\xd8\x17\x58\xbb\xef\xb3\x9b\x42\x57\xa2\xeb\xf0\x86\xf5\x7d\x76\x89\x74\xe5\xb3\xdb\xc5\xb7\x9e\x5d\x3c\x5d\xf9\x0c\x57\x83\x1f\x33\x7c\xa2\xc3\x8a\x71\x9d\x17\x27\xa0\x70\x35\xaf\xca\x5e\x7d\xa2\xc0\x0d\x19\x20\x72\x35\xaf\x15\x5f\xc3\x68\x78\xdb\xf0\x0a\x00\xea\xcd\xf4\xbb\xef\x47\x8a\xc9\x58\x36\xce\x16\xe3\x46\x7a\x13\xb0\xb1\xb7\x3c\x69\xbc\x32\x56\x17\xc7\x6b\x4d\x68\x09\x9a\x0b\xf7\xca\x17\xbb\x73\x15\xbc\x40\x6a\x25\xcf\xf0\xa0\x68\x35\x75\xaf\x80\x68\x45\x6d\xc9\xac\xd9\xb9\xb7\xdf\xef\xe7\x92\x45\x8a\x7a\x45\xff\x76\x12\x7c\x7b\x69\xd1\xf2\x8f\x78\xed\x08\x02\xaf\x7a\x09\x2f\xd2\xdf\xc5\xd6\x96\xfc\xa1\xf8\x29\x5f\xc0\x0d\x82\xe5\xbe\xdc\xed\xab\x6f\x7d\xbd\x40\xf1\x04\xf3\x2e\xab\x1e\xed\xfe\x36\xcf\x83\x95\x7f\x87\x5b\x4d\xf2\x17\xd1\x46\x3a\xff\xef\x19\x38\x79\x79\x4c\x95\x79\x21\x94\x08\xd3\x1c\x24\xac\xa6\xb6\xe8\x13\xbb\xd3\x3b\x90\xcf\x7b\x0f\x4f\x1d\xdf\xb9\x0b\x31\x19\x55\x61\xa0\x84\xb2\xaa\x27\x5c\x1a\xc8\xaa\x18\x1c\x8a\xf7\xf6\x5e\xdd\xf8\x06\xad\xf2\x10\xf2\x11\xe7\x42\x01\xfd\xc3\x2b\x49\x35\x07\x00\x54\x91\xe3\xe4\x45\xb0\x01\xb6\x95\x0f\x53\x6c\x95\x16\x22\x50\xa9\xb8\x11\x81\x6a\x78\xea\xf8\x3c\x8e\x78\xa0\x00\x5e\x2a\xaa\x42\xed\xb1\x25\x53\x85\x04\x74\x54\xd6\x6e\x18\x80\xa8\xe6\x89\x1d\x7c\xa8\xe6\x69\xef\xe3\x8c\x1e\x07\xeb\x3f\x30\x41\x70\xa4\x9a\x3a\x13\x71\xa4\xea\xd9\xfd\x02\xc3\x78\x5a\xba\x87\x58\xb6\xff\x8d\x2a\xd5\x76\x39\xb2\x18\xb6\x70\x20\xa6\x9a\x5b\xd4\x67\x60\x25\xcf\x49\xc0\x4a\x35\xe5\xed\x0f\x03\x32\x8f\x9e\x9f\x87\x88\xb6\x5f\xdc\x34\xaa\xa9\xb8\x65\x66\x3f\xf8\xb8\xa2\x57\xf4\x03\x56\x2a\x12\xf1\x59\xaf\xe8\x3d\x4d\x7d\xd8\x65\x7b\xd0\xf9\xb8\xa1\xf7\x48\x0a\x94\x54\xe4\x30\x91\xd3\x9c\x83\xca\xb7\x4f\x11\x70\x54\x41\xa3\x86\x67\x2b\x41\xa3\x2a\x90\x3a\xe3\xeb\xbb\x48\x92\x61\x11\xa6\x0c\xf7\x11\xe2\x42\x4f\x72\xd1\xa4\xa6\xb7\x78\x1f\xc8\x04\x4a\x98\x9f\x27\x75\xbd\xbc\x3f\x4f\xe7\xea\x38\x3e\x7d\x9a\xc0\xe7\x19\xe0\x4c\xc5\x60\x5b\x08\x5d\xef\x4c\x65\x6f\x51\x56\xfb\x50\xf6\x2b\x73\x7c\x9c\x48\x14\x46\x3e\x7c\x7f\x15\x78\x3e\x63\x23\x8e\xe6\x0f\x0c\xae\x73\x2b\x8e\x27\x4d\x21\xe3\xd3\x92\x1b\x8e\xfd\x19\x12\x79\xb0\x95\x00\x13\xd5\xdc\xb7\x3f\x03\x39\x81\x0d\x34\x3e\x6e\xd5\xdd\xea\xbf\x69\x35\xe8\x83\xb9\xdb\x6d\x22\xf9\x2a\x1b\xc6\xc7\xae\xe4\x76\x25\x7c\xd4\x14\x5a\xe4\x9b\x7b\xd0\x2d\xe4\xf5\xc5\x8f\x29\xa5\x58\x2f\x14\xf9\x6e\x3e\x9f\xd1\x92\xdd\x86\xbf\x6b\xf7\x28\x75\xb9\x76\x73\xf9\x18\x67\x0d\xb7\xbb\x2f\x36\xaf\xa4\xf1\xe5\xc7\xcd\xfa\x6e\xee\xe5\x54\x86\xd1\x7d\xc6\x49\x04\x16\x69\x7c\x6e\x6a\xd6\x11\x03\x35\x79\xf7\x77\x5b\x11\xe9\x9e\x35\x91\x9d\xbe\x5b\x71\x79\xa7\xc2\x44\xcc\xeb\xa4\xef\xde\x21\x79\xa9\xc9\xed\x91\x0d\x9e\xfb\xb1\x8d\x0d\x0e\x0a\xdf\x03\x00\x8d\x1d\xff\xc8\xb7\x1c\x43\xc0\xaa\xe5\xac\x1f\xd6\xe2\x32\xec\x6f\x6f\x62\x8e\x21\x07\x85\xcd\x40\xd9\xc3\x0c\x55\xf8\xb1\x85\x6d\x96\x89\xe6\xdd\xfd\xe8\xd3\x8d\xea\xb0\x00\x34\xde\x16\xf6\x2a\x84\x23\x7e\x7c\x1c\x0d\x06\x9b\xe9\xb7\x6f\xfb\x91\x0d\x3f\xb6\xa3\xcd\x09\x95\xf3\x35\x07\xf9\x88\xe9\x64\x84\xf2\x2f\x44\xf8\xac\xc6\xf0\x73\x3f\x92\x11\xba\xd1\x0c\x39\xec\xe7\x97\x68\x83\x17\xf7\xde\xa9\x7d\x6a\xc3\x35\x1a\xf9\x0c\xdd\xa4\x65\xc9\xb7\x76\xe7\x50\xc5\xb5\x3b\x81\x52\x34\xf4\xb6\x74\x23\x11\x03\x21\x35\xbe\xa5\xa5\xf5\x9f\xc3\x38\x7f\xcb\xfa\x30\x0a\x6e\x5d\xd5\xcf\x19\x62\xcc\x0a\x30\x6a\x30\xb9\xa5\xc3\xae\xe7\xff\x25\x76\x80\xf6\x22\x0b\xd1\x5d\xe3\xe8\x45\xc0\xe2\xb1\xff\x77\xc2\xc2\x74\xd6\xb1\xd7\xc8\xe4\x65\x62\x98\x58\xf8\x9f\xc9\x0b\xf7\x5b\xe8\xc1\x5d\x2e\x0b\xa7\x25\xb9\xcf\x42\x2a\x97\x97\xac\xd8\xdc\xb2\x7d\xb2\x4e\x4b\xa3\x4a\xc2\x4f\x6b\x77\xb2\x4e\x75\x4f\xc8\xf1\x4b\x3b\x6f\x6f\xd9\xd6\xc9\xf2\x6c\xfe\x40\x17\xb0\x86\xd7\x69\xd1\xa6\x41\xee\x38\x2d\x4e\xdb\xc6\xfd\x59\xb6\x4f\x66\xee\x4a\xee\x72\x4c\xe9\x95\x64\x07\xdd\x5f\x98\xba\xcd\x1f\x76\x1f\x50\x86\xb6\x6f\x5a\x9e\x2c\xc3\x47\x15\x7f\xb8\xc0\x93\xa6\x52\xc6\xe6\x50\xb7\xb2\x92\x7b\x03\x0b\x75\x19\x29\xf1\xdc\x59\x9c\x35\x0e\x47\x32\x4a\x32\x25\x66\xfb\x8a\x32\xf2\x0e\xcd\x43\x27\xe6\x5d\x47\x53\x29\x24\x22\x5b\x2d\xc3\x20\x36\x8b\xcc\x5c\x49\x32\x17\x56\xb6\xb3\xcc\x2e\x2f\xeb\x7e\xd8\x9e\xa3\x70\x54\xec\xbb\x77\xf3\xe2\x96\x95\x6e\xd0\x3e\x5c\x73\xb3\xa5\x81\x78\xdb\x2f\x0c\xad\xf3\x42\xa8\x6a\x0d\x7b\x37\xde\xdd\xce\xce\xd8\xb2\x10\x16\x36\x00\xbb\x17\xca\xee\x51\x2a\xe5\x76\x6f\xef\x6a\x38\xee\x25\xc0\x72\x17\x77\x3c\x62\x17\xcf\x5a\xa7\xae\x62\x65\xfd\x7f\x59\x27\x32\x54\x77\x3b\x67\x4c\xd5\x7e\x0a\xde\xb7\x34\x16\x1f\x76\x15\x9e\x57\xbb\x13\xbc\xea\x57\x73\x05\x8e\x5e\xdb\xcd\x60\x13\x57\x2b\x22\x8a\x9e\x07\xac\xe5\x29\x50\xc3\x98\x35\x65\xd4\x14\x41\x28\x08\x2f\xa7\xd7\xde\x19\x9c\xd4\x1e\x6b\x5c\x10\x38\x0b\xed\xbe\xe5\x86\x17\x80\xe7\xb1\x51\xdc\x54\x9a\xad\x6b\x57\xd6\x97\x3d\xc8\x7c\x37\xb6\x8f\x62\xc4\x7b\xf0\xdd\x8a\x27\x2f\x60\xdc\xda\x4f\x06\x50\xdc\x9c\xeb\x97\xc5\xd1\x08\x2f\x75\x11\xe2\x16\xfe\x44\x5e\xab\x82\xee\x96\x0d\x9f\xb9\xee\x5d\x0d\x33\xd0\x4d\xb6\xda\x08\x0f\x5e\x53\x2f\xfc\x8c\x14\x7c\x56\x6c\x10\xc3\x48\xac\x42\xbd\x19\xd3\x69\x19\x1e\xd0\x7b\x74\xa0\xde\xba\x62\xe2\x46\x7a\xf3\x76\x55\xa4\xb7\xa1\x86\x6d\xc5\x61\xa8\xb7\x3f\x42\x54\x8e\xf5\x94\x7f\xfd\xd5\xa7\xa3\xcc\xa9\x49\x55\xcd\x7a\x14\x47\xad\x24\xe7\xa4\xe2\x55\xf7\x32\x78\x44\xdf\x85\xba\x87\xcb\x26\xdc\x59\xfa\x7e\x11\x86\x84\x06\xbc\xbb\x9e\xe4\xf7\xa4\xe4\x24\xd1\x5b\x57\xab\x9a\xa5\x09\x74\xdf\xa9\xe0\x6a\x48\x6e\x6b\xab\xa3\x76\x2a\xd8\x23\x67\x6c\x90\xe2\x62\x3c\xe9\x62\x6e\x66\xdd\xb2\x80\x8a\x8b\xef\xd2\x4b\xfb\x14\x64\xe7\x13\x4b\x42\xed\x12\xb0\x71\x7d\x73\x9f\x4f\x3d\xf4\x7e\xc1\xe3\xdc\xa9\x41\x28\x89\xc1\x79\x13\x08\xb9\xec\xfd\xfd\xfa\x5c\x44\xa6\xdf\x3c\xd1\x0c\xcc\x13\x8e\xb1\x40\xcb\xed\xc8\x08\x6b\x2b\x97\xac\x13\x26\x68\x83\x13\xde\x5a\xbb\x79\xa6\xda\x53\x94\x4f\xc5\x16\x97\x3d\xd2\x2e\x6c\xd3\x26\x87\x9b\x25\xb6\x8d\x7a\xb1\x05\x9e\x8d\x7a\xf2\xb5\xf6\x4c\x69\xff\xf6\xf7\x04\x81\x2e\xb1\x80\x27\x08\x74\x89\xa3\xd1\x14\x81\xae\xa2\xab\x9b\x20\xd0\x65\x70\xed\x26\x08\x74\xb1\x56\xcc\x4d\x47\xc5\x49\x75\x02\x41\x77\xd2\x51\xf3\xd8\x91\xf6\x8b\xb9\x6f\x2a\x55\xf8\xdf\x63\x59\xf0\xc0\x09\xd2\x5c\x03\x2a\x72\x02\x34\xd7\x58\x2c\x13\x9c\xb9\x9c\xa4\x13\x3c\x0a\xb0\xfe\x09\xcc\x5c\x1b\x93\xbc\x84\x8e\x3a\xf6\xff\x5c\x2a\x5b\x98\x9b\xdb\xf4\xff\xc6\xf7\x33\xff\x13\x8f\xe3\xf4\x9b\xae\xad\x46\x55\x63\x6b\xeb\x3d\x18\xf1\x3c\xce\x8b\x5e\xf2\xa3\x9e\x26\x87\x89\x30\x1f\x6b\x26\xa2\xa6\x87\xff\x2f\xd4\xac\x74\x0c\x76\x6c\x1c\xa8\xa6\x90\x74\xd3\x0e\x4b\x89\x05\x4b\x7f\x25\x62\x4c\x17\xe9\x9d\x34\xf4\x5d\xf2\xa4\x31\xfd\xc1\x1d\xab\xfa\x02\x32\xd4\xa0\xde\xa2\x17\x33\xad\xe7\x81\xe1\x77\xb6\x0d\xb8\xf1\xe2\x66\x33\xc1\xa6\x6b\x9c\x88\x27\xd0\x74\x8d\xfb\xe4\x29\x34\xdd\x40\xbd\x38\x0f\x42\x60\x24\x7b\x86\xed\x0a\xe3\xc4\x09\x18\x5d\x47\x61\x37\xc1\x9f\x6b\xc0\xf0\xcc\xc3\x80\x53\x18\x52\xcd\xa3\xe8\x70\x63\xcf\x70\x25\xdc\x9c\x33\x3a\xf7\xe2\x14\x38\xc1\xa2\x8b\x26\xf9\x82\x5d\x8f\x95\xd5\x1c\xcd\xca\xb2\x13\xcd\x93\x3e\xe0\x4e\x6b\xec\x22\x70\x0f\x72\x44\x8b\xbb\xb9\x33\x91\x5d\x09\xcb\x85\x79\x60\xa4\x46\x48\xa2\x79\x54\x66\xe8\x49\x1a\xcc\xcf\xe6\x49\x1a\xb6\xa1\x5d\x09\x6e\x86\xe7\x1f\x4f\xb9\x53\x24\x3c\x60\x51\xe7\x11\x07\xd0\x5e\xac\xad\x10\xb0\xc3\x51\xaa\x74\x55\xf2\x07\x79\x9a\x93\xa8\xda\x6f\x54\x05\xc3\xb4\xec\x4c\x06\xe3\x18\xdd\xcd\x04\x22\x2f\xfa\x93\x69\xad\x61\x9a\x75\x6c\xa0\xad\x3a\x18\x6a\x3c\xb9\xe5\x9b\x47\xc3\x0a\x29\x9b\x81\xfa\x39\xd3\x0c\x4f\x75\xfa\xbf\xa2\xb6\x95\x05\x53\x6f\xec\x1f\x80\xc0\x76\x4e\x70\xab\xcc\xed\xe6\x3c\xb4\x22\xdf\x45\x73\x58\x9d\x89\x12\xba\x8b\x7c\x52\x59\x2c\xc7\x8b\x83\xc4\x61\x75\xda\x08\xfc\x9a\x88\x1f\x30\x8f\x0e\xf6\x69\x96\xee\x29\x6b\xfa\xc3\xc5\x00\xf8\x03\xd1\x46\x9c\x37\x5c\x30\x4f\xbb\x0f\x1f\xe4\xe2\xea\xe2\x4a\x99\x88\x9d\x13\x78\xbd\x86\x83\xcf\x3c\x86\xb5\xa3\x12\x23\xff\xeb\xaf\x4a\xbc\x87\x79\xa8\x34\xad\xe6\x95\x47\xda\x61\x1e\x73\xad\x84\xfe\xcb\xbb\x16\xdc\xc8\x4d\xd7\x2c\x47\x5e\x20\xce\xe6\x31\xf6\xe8\xd2\x01\x43\x3e\x65\x57\x0a\x10\xd4\x9c\x69\x83\xfe\xcb\x74\x99\x06\x6e\xdd\x1f\xe2\x34\x9c\x87\x43\xba\x35\xae\x96\x2e\x26\x2d\x17\xa9\xf3\x30\xc8\xd5\x66\x99\xfa\x38\x9f\x16\x39\xd5\xa7\xf8\xcb\xb5\x47\x86\xf2\x2f\x37\x85\x4e\xa7\x5c\x32\xe6\xfd\x0b\xd3\xbe\x52\xbe\xd1\xac\xda\x4e\xd5\xb8\x20\x36\x11\xd3\xc5\xb1\xb9\x3c\xfb\xd1\xe0\xcb\x96\x50\x47\xcd\xc6\xbb\xfb\x00\x67\xd8\xe9\x5c\xdb\xfa\xda\x49\x11\xb7\xfa\x2e\x7b\xfb\xde\x0b\xdc\x5f\xe0\x3a\x99\xba\xdf\x4a\x05\xf2\xac\x1b\x24\x28\xf9\xb1\xb1\x1f\x37\x03\xbf\xdd\x0e\x2b\xc5\x23\x96\x9c\xfe\x60\x5c\x10\x6e\x10\xe6\xf1\xec\xbe\xa3\x21\x5b\x13\x2b\x7b\xda\xd7\x5d\x7e\xf9\x11\xb1\x84\xaa\x3c\x7b\x15\xf8\x83\xc8\x8d\x34\x65\xcb\x11\xc3\x17\x7b\xcb\x06\xbf\x1e\x7c\x2c\x9f\xc3\xeb\xcc\x64\x7f\x9d\x06\x83\x76\xbd\x6a\xdb\x2d\xf1\xc5\x98\xce\x06\xeb\xf2\xdc\xdd\x12\x0d\x50\xe5\xf6\x80\xb4\x41\x68\xa2\x09\x82\x5e\xc3\xa8\x7f\x1e\x5b\xcb\x6a\x43\x40\xe7\xc1\xa6\x66\x1e\x1a\xaa\x77\x17\x24\x3e\xce\x65\xff\xa0\x0e\xdd\x91\xf6\xb8\xbb\xb7\x17\xc1\x68\xbb\xec\x51\x93\xaf\xbd\x53\x2f\x9d\xc2\xa8\xe2\xda\x63\xf2\x27\x59\x6f\x8a\xa2\xd7\x65\x5f\x48\x0d\x6e\x44\xe7\x3e\xc9\x4e\x5f\x68\x58\xf1\x7f\x45\x58\x26\xb1\x28\x78\xd3\x3d\xfd\xdc\x9a\x5a\x66\x34\xd8\x77\xd1\x66\x5f\x14\xd7\xe9\xb1\xd3\xf8\x90\xd8\x6e\xcd\xf3\xf4\xcb\xe4\x3f\x3d\x50\xd0\x03\xe7\x89\xd7\x58\x36\x91\xd6\x46\x21\x77\x4e\x91\xf0\xaa\xe2\x82\x48\x78\x03\x3d\xfc\x3c\x39\xb5\x02\xca\x38\x4f\xfd\x8f\xb1\xcc\x9a\xa7\x2e\xc7\xc4\x61\x9f\x1b\x0a\x0f\xe5\xf9\xdc\x50\x78\x58\x51\xcd\x33\xed\xc6\x90\x2c\xc9\x80\xc9\x9f\xd4\xcc\xd9\x17\x89\x4b\xc3\xe2\x0f\x72\x0a\xc6\xef\x34\x14\x24\xb7\x33\x13\x84\xbb\x86\x65\xeb\x3c\x0d\x69\xec\xf6\x7b\x66\x1b\xec\xff\x36\xb8\xf9\x22\xfb\x9f\x66\x77\xf7\x66\x86\x9e\x5b\xf1\xcb\x44\xdc\xe0\x77\xe0\xf8\xce\x0d\x7e\x87\xd9\xcf\x14\xfc\xae\x82\xc4\x3b\x4f\x4d\xc5\x9b\xa3\x54\x86\xbf\xd0\x4b\x44\x39\x4e\x56\x00\xfd\xee\x2c\xe6\x20\x30\xb1\x25\xe2\x44\x0c\xc0\xc0\x3c\xd9\x82\xf3\x4e\x83\x2d\xa0\xcd\xdd\x07\x43\x47\x1b\x6f\x2c\x42\x41\xcf\xb3\xee\xa2\xc9\xcd\xe6\x8c\x92\x69\x9e\x6e\xc8\x45\x3a\x0d\x74\xdd\x9c\x6e\xc0\x88\x92\x67\xd5\xec\xce\xce\xd2\x7d\x6b\xee\x97\xdb\x56\x90\xac\xed\x3e\xa5\xba\x6c\xaf\xd5\x9a\xa0\xe9\x9d\x0e\x4f\xdb\xcb\x83\x8e\x6b\xb0\xac\xe2\xff\xdd\xef\x52\x5f\xe2\x20\x4f\x67\x7d\x33\xc2\x83\x89\xe8\x84\xe6\xff\x4e\x60\x27\x8d\x3b\x27\x5c\x11\x7c\xbc\x36\xe1\xf5\xc0\xe3\x45\xd5\xf9\x6a\x37\x00\x00\xf5\x60\xe7\x24\x1a\xfe\x04\x2a\x2f\x29\xf9\x01\x95\x17\x19\xa8\x78\xdf\x6d\xf5\xc5\x23\x94\xa3\x21\xec\x6c\x73\xfc\xdd\x18\x2b\xa9\x86\xfc\x19\x76\xb7\x51\xf1\x86\x83\x2c\x2a\x1e\x26\x26\xf3\x04\x1e\xa7\x38\x9a\xee\x86\xd5\x1c\xbb\x44\x7f\x80\x0d\x5a\x47\x6c\xb0\x94\xc0\x4e\xc1\x71\x92\x23\xa8\x3a\xd8\xc2\xbd\x72\x54\xf2\x3c\xb1\xf0\x6e\x4e\xe4\xb9\x97\x11\x75\xd7\x7d\xca\xb9\x20\x32\x4e\x77\x34\x31\x4f\x21\x64\xe7\x14\x08\xaf\x02\x77\x3c\x4f\x63\x63\x75\x7b\xf1\xb2\xb5\x64\x8f\x23\xbc\x1e\x5a\xf3\xbc\x76\xfb\xa8\x89\xb1\x8e\xc1\x57\x9e\x27\x6a\xde\x29\xab\xb8\x6c\xd3\x1f\x25\xc0\xf3\x42\xb8\xb3\x29\x6e\x93\x32\xa1\x7b\x73\x5e\xbe\x76\x23\xd0\xb1\xf9\x8b\xa5\x57\x41\x55\x9e\xa7\xd1\xb5\x86\xd9\x6f\xf8\x7e\xa3\x29\xee\x92\x8d\xae\x73\x97\x1c\xf6\x8a\x21\x95\xb3\x3f\x50\x61\xb9\x06\xda\xe0\x39\xed\xec\x5b\xae\xe5\xb8\xb9\x97\x4e\xbb\xc8\x88\x5b\xdd\x81\x23\x44\xf2\x9c\xb6\x5e\x33\x12\x85\x61\x60\xf3\x72\x71\x0a\xa2\x1d\x3e\xad\x2f\x56\xda\x00\x80\x4c\x21\xf4\x00\x75\x9b\xa0\xe6\x35\x62\x1b\xcd\x53\xc0\x77\x97\x11\xd0\xb5\x04\x9f\x9c\x00\xe8\xe5\xe1\x42\xd7\x89\x59\x16\x4b\x7c\x11\x25\xfe\x73\x1f\xe6\x49\xc3\xdd\xe6\x6c\xa6\x81\xa5\xba\x8b\xbc\xb1\x0b\x9e\x32\x71\x23\x8d\x74\x7b\x39\x8e\xf2\x3a\xe8\xcf\xd3\xad\xd9\x39\xf2\x6a\x39\xe1\xc2\xc1\x80\xa4\x3a\x14\xee\xcc\xee\x20\xdc\x7f\x4e\x97\x2c\x06\xda\xc4\xba\x9b\x40\xe8\xe5\xc3\x5a\x60\x26\xd2\xed\x09\x6e\x3c\x95\x82\x36\x20\xde\xb0\xeb\xb4\x06\xe9\x76\xaa\xe1\x98\x93\x1d\xb6\xbc\xd3\xb5\xc7\x96\x7b\x11\x47\x87\x53\xe7\xb0\xee\x07\x96\xcc\x8a\x7d\x15\xe4\xbb\x36\xbb\x1f\x7b\x4d\x45\xef\x70\xe9\x39\x11\xdb\x36\xd8\x9d\x47\xe2\xa4\x7b\xf3\xd8\x2f\x98\x19\x14\x53\x59\x22\x87\x01\x40\xed\x22\x4b\xe5\x85\x8e\x63\xc4\x04\xb2\x4b\xd8\xac\x4c\x90\xec\x32\x88\xa3\x13\x24\xbb\x93\x88\x3b\x13\xf0\x3a\x9d\xcb\x67\xe2\xa8\x8d\xc6\x67\x26\x2c\x3a\xc0\x7e\x99\x89\xe3\xf5\x44\xb6\x4a\xe7\x56\xa7\x9b\x88\x53\x0f\xc2\x46\xe2\x5a\x74\x7a\x74\x4c\x86\xa8\x02\x9e\x7b\x82\x32\x27\x18\xf2\x04\x4d\xae\x4d\xc4\x55\x40\xe3\x22\x51\xe2\x05\x33\x28\x7a\x6a\x83\xc3\x31\xbd\x00\x87\x8b\x44\x99\x17\x5c\x64\x6c\x44\xb6\xa5\x66\x78\xa0\x53\x9a\x96\x98\x5c\x34\xcf\x84\x25\xa6\x93\x13\xd0\xb8\xd1\xac\x86\x8e\xca\x5c\x5d\xce\x54\x76\x3d\x28\x8f\x9b\xd3\x73\xff\x40\xbb\x99\xf2\x49\x47\x65\x0f\x3b\xa9\xec\xfe\xa7\x22\xdc\xa9\xe2\x7d\x30\x93\x47\xdb\xe1\x97\x2e\xcb\xa0\x86\x84\x56\x26\x1c\xc4\x4c\x1a\x41\x7b\x86\x02\x64\x6e\xa0\x58\x9d\x1b\x63\x0e\xf8\xf1\x99\xb8\x29\x9d\xcc\x74\xf0\xe6\xf4\x98\x9e\xc9\x80\x8f\xaa\x1c\x80\x9b\x6b\x13\xa9\x39\x69\x94\xd9\xed\x36\x83\x24\xd7\x3f\x05\xae\x9f\x42\xd1\x4d\x76\xcd\x64\x94\xc8\xc3\xaf\x31\xb4\x88\xf3\xa2\xcf\x55\xe0\xcf\x67\x6a\x4e\x4a\x87\xb6\xa1\xd5\x44\xf2\x10\x7d\x0e\xcc\xb8\x99\xc4\x1e\x18\x0e\x2d\x47\x5a\xbc\xc1\x66\xf2\x44\x0b\x2b\x07\x89\x2e\x12\x99\xdb\x75\x83\xa8\x97\x36\xf8\x2c\xbd\xa5\x0b\x73\x77\xb6\x62\xe1\x3c\xa7\x53\xda\xab\x52\xee\x02\xe7\x86\x92\xe3\xa6\x6d\x82\x1e\x97\xbb\x0d\x31\x82\xf2\xb0\xf2\x78\x23\x77\x8b\xc7\x5c\x39\x3b\x56\x18\xde\xec\xf5\x14\xe7\xc6\x41\x84\x95\x29\x8c\xdc\xe0\x32\x77\x02\x23\x17\x45\x98\xe3\xf5\x17\xea\x68\xa8\x2b\x95\x07\x60\xc7\x25\xd4\xb0\x53\xe8\x38\x11\x56\x27\xd0\x71\x6d\xda\x59\xd3\xa9\x45\xa5\x30\x5d\x9e\x88\x7c\x49\x20\x00\x95\x4b\x80\xc8\x65\xcf\x05\x49\x13\xcf\xe1\xb4\x06\x64\x56\xb1\x22\x11\x27\x79\x22\xe2\x25\x94\xe3\x73\x67\xb0\xdd\x4e\x58\x2d\x7b\xba\xdc\x43\xdf\x26\x4e\x15\xc9\xc0\x1c\xdd\x65\x74\xe9\x49\xed\xc4\x24\xbe\xe4\x9e\x4d\xdc\x7b\x4e\xd5\x1b\x1b\x07\x8e\x8b\xde\x09\x0e\xdc\x99\xf7\xfc\xd5\x8f\xb8\xbb\xc4\xd0\x6b\x83\x7d\x31\x93\x7a\xed\xee\x02\x25\x72\x31\x08\x65\x33\x79\x0b\xda\x77\x76\xd7\x05\xd2\x47\x7a\x14\x2c\x9c\x41\x02\x00\x24\x1b\xfc\xc8\x68\x9c\x36\x7b\xab\x73\xed\xaa\x99\xe6\x42\x79\x26\x6f\x42\xdd\x80\x12\x87\xc8\xa9\x26\x21\x3d\xbb\x1c\x5f\x38\x08\x70\x89\x37\x13\x66\x3b\x13\x39\x05\xf8\x38\x9d\x92\x27\x88\x71\x59\x55\x00\x88\x71\xfa\xfb\x4e\x50\xe2\x06\xba\xe4\x99\xdc\xd7\xd8\xf2\xd3\xbb\xdb\xeb\x87\x58\x8a\xce\xa7\xd7\x15\xee\x28\x7e\x96\x40\xa2\x4f\x79\x07\x89\x25\xa9\xa3\x26\x1c\xdd\x14\xf5\xad\xb8\x2e\x04\xbe\x19\xae\x85\xcf\x02\x4d\x64\x81\x96\xfe\xd9\xc1\x7e\x8a\x4b\x84\x5d\x9e\xfb\x81\x35\xe1\x9c\x09\x88\xf0\x4c\x5e\xab\x76\xdb\xaa\x35\x0f\x2a\xf5\x99\xe2\x9c\x99\xf1\x74\x9e\x20\xc0\xa5\x3d\x4d\x05\x7a\x1b\xce\x6b\x6c\x1b\x9b\x4c\x28\xb6\xbf\x41\x8c\xfa\x09\xe8\x5b\x3f\xd8\xdd\x01\x7d\xd3\x07\x79\x26\xcd\x1f\xad\xd3\xe2\x9a\x19\xfd\x5f\x3e\x76\xc9\x95\x17\x2c\x0d\xbb\xff\x03\xed\x46\x90\xda\x09\x9e\x5b\xf7\x14\x96\x8f\xdd\xec\xc6\x8b\x27\x9f\x6c\xaa\x45\xd9\xc7\x9f\xf8\x5f\xe6\x1c\xca\x05\xe6\xcc\x7a\x4a\x63\x05\x30\xb3\x01\x1f\x55\x56\x65\x3d\xa2\xb9\xe6\x98\x99\x2d\x10\x73\xa7\x99\x51\x24\x1f\xf0\xb6\x7c\xda\x5e\x33\xec\xbe\xee\xbc\xbc\xb4\xc5\x44\xf0\xfb\x6e\xe6\x3d\x1b\xf8\x81\x43\x28\xc1\x01\x27\x98\x71\x03\x7f\xdd\x09\x64\x5c\x3f\x90\x71\x41\x8c\xeb\x07\x22\x66\xd6\x1d\x5a\xa5\x7a\x4e\x4e\x44\xff\xe7\x9c\x9c\xcd\xec\x46\x95\xcd\x8d\xce\xc1\xa6\x26\xd9\x09\x0c\x21\x0b\x78\xd0\x77\x79\xc0\x86\x9f\x7e\xea\x41\x73\x6d\x8e\x8f\xb2\xe9\x01\x2e\x51\xd5\x08\x81\x2a\x57\x0e\xf3\xe6\xbd\x34\xa9\xa0\x37\xaa\xc4\xa7\x9b\xc0\xca\xf5\xe3\x30\x95\x4c\x9c\xd5\xbc\x71\xe5\x54\x1f\x83\x1f\xd7\x8f\xc3\x1f\xe2\x24\x7a\x20\x04\x03\x05\xd7\x0f\xc7\x7f\xef\xbd\xb0\x9f\x5c\xe4\xd5\x64\xde\xbe\x12\x4e\x06\x36\xdf\x0c\xa4\xcb\xcc\x05\xb4\x43\xe7\x95\x37\x9c\x70\xa2\x2c\x5a\x81\x1a\x5c\xc1\xe0\x06\x56\x11\x33\x1b\x88\x19\x57\xd7\x09\x00\x5c\x06\x47\x6a\x82\xff\x16\x59\xe8\x06\x02\x8e\x1c\x08\x5e\xc0\xbf\xe9\x48\x3d\x73\xdd\xdc\xc6\x1c\x8a\x01\x30\xc5\x5c\x0d\x5a\x6b\x8e\x87\xdc\xd6\xc4\x15\xe8\x14\x89\xed\xb6\x1f\xce\xaf\xb6\xbb\x87\x1c\x7b\x8f\x44\x52\xcc\x4d\x15\x80\xe3\xdc\xe4\xdc\x36\x0b\x0b\x26\x15\x30\xb9\xb9\x28\x60\x6f\x19\x57\xe5\xe3\xb4\x10\x65\x5b\x2b\xdc\xe1\x44\x7e\xb7\xdb\x0f\x0e\x6e\xf7\x50\x03\x4b\xce\x7d\x0f\x28\xc3\xb3\x4f\xb6\x3b\x8f\x8c\x1f\x09\x31\x1b\x5a\x44\x79\x1a\x30\xba\x0e\xf0\xc7\xcc\x06\x13\x51\x45\x98\xbb\x06\xdf\x54\xb2\xbb\xbd\xb0\xe9\x01\x46\x17\x2f\xa4\x32\xac\x15\x46\x12\x33\xef\x93\xaa\x0b\x7c\x47\xfd\xe0\x84\x96\x51\xdc\x16\x5b\x3c\x76\x29\xb4\x72\xb8\x09\x3a\x76\x7b\x33\x46\x42\xc9\x93\x29\x75\xfa\x83\x83\x8a\x08\x07\x06\x5d\x3a\xfc\x16\x0e\xc8\xc3\x21\xda\xe7\x56\xb6\x6c\x20\xe8\xba\xdb\xba\x10\x74\x35\xb9\x4a\xb4\x4f\xc2\x68\x62\xe6\x6b\x77\x25\x55\xb9\xf6\x31\x9d\x12\x2f\x8c\xc6\xed\xc9\x7d\x8a\x1d\xfe\x60\x50\x35\xfa\x6b\xef\xcd\xb2\x3a\xb1\xe6\xd4\xd8\x80\x2f\x17\xbf\x50\x24\x08\x03\x87\xf3\xe0\x76\xea\xd0\x90\x1b\xd6\x94\xfe\xcc\x02\x6f\x67\x92\x6c\x6f\x1f\x3e\xad\xc1\xa3\x7e\x05\x89\x27\x3f\x30\x1f\xf9\xe1\xc3\x61\xc4\xf1\x16\x4b\x60\xb8\xbc\x62\xa3\xed\x4a\x6e\x40\xd1\x45\x2d\xe9\xb1\x67\x17\x62\xaa\x5d\x7f\xda\x8f\x05\xd2\x54\xdc\xcf\x7b\x6f\x66\xf3\x02\x8d\xae\x2b\xe6\x00\x46\x97\x4f\x87\x02\x64\xf6\x34\x5c\xdc\xaf\x25\xf2\x5d\xcf\x90\x58\x30\xcd\xac\x1a\x77\xc8\x0f\xe2\xac\xd8\xd5\x15\x67\xcf\x8a\xce\xcf\x57\x75\x9d\x4c\x4a\x90\xb9\xe4\xff\x72\x00\x19\xe4\xc7\x64\x71\x7e\x7e\x70\x32\x04\x8e\xfc\xc9\xc9\x64\xaf\xdf\xee\x07\xca\xf8\xac\x15\xbd\xe8\xf5\x2e\xc6\x33\x33\x7b\xa5\x3b\x64\x59\x1a\x2a\xa9\xff\x02\x42\x4e\xdf\xee\x29\x82\xdc\x54\x89\x9c\xd7\xee\x3a\x3e\xbc\x76\xb4\x1b\x93\xed\xd5\x1d\x3d\x04\x86\x5c\x12\x74\x72\x96\x63\xaf\xa2\xce\x0b\x23\x47\x07\x03\x28\x17\x0d\x3e\x79\xe9\xfc\x50\xf9\x7f\x98\xdd\x54\x6e\x0f\xcd\x0f\xbb\x4d\xc1\x19\xcb\xc9\x98\x50\x31\x10\xe2\xfa\xc1\x54\x29\xa7\x5d\x94\xf8\xbf\xfa\x29\xbe\xcb\x6e\x49\x20\x9c\x09\x58\x5c\x56\x03\x5b\xdc\x2d\x59\xe6\x85\x1b\x55\x41\x11\x66\x89\xcd\xaf\x7b\x5d\x5a\x12\x9b\x00\xfa\xd7\x62\x74\xe3\xb9\x7f\xd8\x39\x68\x5f\x66\xbb\x44\x00\x29\x86\x70\xc4\xc6\x66\x96\xec\x9a\xdb\x2f\xea\x01\x61\xc4\xc5\xfd\x88\x45\x53\x32\x6c\xdc\xae\xda\xc8\xa6\x74\x82\xbb\x11\xeb\xba\xe4\xdd\xed\xb4\xd5\xa0\x1d\x6a\x71\x4a\xb6\x77\x60\xbd\xa5\x58\x77\xca\x2b\x7b\x96\x52\x86\x3b\x18\x0b\x09\x4c\x3a\xfd\xaa\xe7\x46\x9e\x1b\xd2\x35\x48\xb3\x0c\x2f\x40\xd5\x89\x17\x81\x4a\xe1\xc2\xa5\x22\x0f\x14\xff\xcf\x00\xff\x99\x46\x11\x05\xbe\x5d\xf4\xc9\xf3\x22\xb0\x54\xda\x81\xb8\x2b\xf0\x1c\x26\x01\xb3\x18\x66\x43\xf6\x56\x2a\x7b\x83\x33\xa9\xda\xb9\xec\x40\xc5\xdd\x88\x75\x50\x8c\x7e\xa5\x76\x04\x10\xba\x8e\x09\xf8\x2c\x6d\x77\x34\xed\x68\xce\xa4\xd3\x17\x3b\x91\x4e\x68\x72\x4a\xdb\xa1\x69\x2d\xf6\x45\xb3\x18\xf2\x0a\x1b\xe3\x59\xb4\xb3\xc5\x72\x68\x02\x25\xd7\x0f\x7b\xb7\xab\x75\x61\x33\x2c\xdd\x05\x0a\x73\x05\x3d\xae\x1f\xb6\xbd\x33\xa9\x2d\xc4\xed\xa7\xfe\xc9\xb5\x77\x82\x13\xd7\x8f\xfd\x31\xba\xa2\x5a\x3c\x72\x24\xfb\x07\xf0\x71\xfd\x60\xc7\x29\x46\xd8\xc0\x2d\x79\x16\x9d\x5d\x31\xb1\x9e\xa0\xff\x64\x39\x60\xed\x2a\x2f\xe8\xfa\xba\xf5\xbc\x30\xfd\xda\x77\x83\x79\x19\x3a\xae\x75\xfe\xa7\x57\xd9\x3f\x2a\x85\x60\xea\x3d\xeb\x4f\x19\x7c\x57\x58\x1f\x0c\xbb\x26\xb0\x3e\x42\xc3\x4f\x60\x7d\x62\xd6\x24\x5e\x00\xc3\x64\x2e\x03\xeb\x23\x1c\xfb\x04\xd6\xe7\x24\x52\xff\xac\xc3\x0b\xb9\x6e\x19\xe0\xe4\x32\xd4\x55\xa0\x03\x6b\x3e\x91\xc5\x87\xff\xa3\x2c\xa1\xa3\xaa\x7b\x28\xc7\x86\x3a\x59\x44\x4d\xfa\x66\xaa\x94\x70\x31\x80\xcd\xff\x3d\xd4\x31\x79\x45\xe8\xc1\x5b\x7d\xd6\x4b\xbb\x48\xda\x83\x86\x57\x4e\x02\x58\xcf\x16\xfc\xab\x26\x5a\x69\x67\xb0\xd1\x66\x80\xd7\xc2\xab\xea\xde\x26\xab\xc5\xdd\x1e\x34\x2c\xce\x38\xf6\x76\xff\xc5\x70\xc3\xf5\xeb\xc6\x38\x67\xc2\x54\x0e\xb7\xc9\x44\xf7\x66\x18\x14\x72\x7b\xfb\x64\x97\xbb\xb5\x76\x73\xe8\x57\xc6\x41\xb5\xde\x2c\xaf\xee\xff\xcc\x3d\x18\x6d\xbd\x65\xd4\x0e\xeb\xcd\xfc\x62\xad\x54\x63\x43\x7b\x45\x54\xdd\x61\xed\xb6\xc7\xad\x85\x95\x2a\x5c\x8f\x37\x44\xd5\xfb\x50\x0c\xda\x66\xf5\x3e\xd4\xdb\x14\xb0\x7b\x84\x42\x9e\x1b\xba\x07\xab\xce\x59\x1f\x6b\x42\xd5\x1f\x5b\x4e\x03\x77\x44\x0d\xb6\x9c\xfa\xba\x84\xe1\xa2\xf5\x65\x64\xf7\x0f\xac\x2d\xbf\xf4\x32\xca\x3b\xcd\x80\x99\x53\xf4\xde\x78\xd9\xef\x00\xfb\x89\xc6\x9a\x9b\xb2\x87\x3f\xc8\x37\xd9\x3b\xeb\xbb\x01\xc6\x7c\x91\xe3\xb0\x8b\x57\xa3\x51\x7a\x49\x03\xf4\x8f\x48\x92\xb3\x7e\xac\x0d\xc4\x34\x50\x80\xce\xe9\x85\x4d\x75\x4f\x76\x82\xee\x3d\x19\x8e\x01\x0c\xd0\x59\x5c\x1c\x8d\x80\xfc\x04\x19\x99\xed\xdc\x03\x92\x78\x71\x31\x22\xda\x34\xb7\x1f\xc4\xbc\x26\x76\x9c\x2b\x53\x64\x9a\xe9\x8d\x4f\x03\xaf\x1b\xd4\xc3\xd9\x38\x3e\xe1\xa7\x3c\x5b\x52\xe8\x30\xbb\xae\x1e\x5e\xa7\xb4\xd8\x98\xb2\xd7\x1e\xcd\x43\x8f\x5a\x1e\x91\x69\xa6\xb7\x31\x2d\xf6\x99\x7d\x04\xde\x58\x34\x1a\x6a\x80\x45\x13\xa9\xfc\x25\x66\x0d\x56\xd4\x13\x2c\x9a\xa4\x84\x2b\x14\x4d\x4d\x4c\x14\xa0\x68\x00\xc7\xfb\x03\xef\x6b\xa8\x3c\xf1\xb9\x9d\x8d\xfb\x3f\xc2\x3e\xcd\x56\x18\x3a\x0e\xfc\xa0\xd7\x24\xb7\xfa\x56\xe0\x89\xe8\xb1\x44\xaf\xf1\xaa\xa2\x19\x8c\x51\xf5\x11\x80\x35\x51\x5f\xfa\xb4\xca\x07\xe1\x0e\x60\xd1\x64\xfc\xb7\x66\xf3\x0c\x34\x4d\xc4\xcc\x44\x26\x6c\xee\x46\x48\x8e\x20\xd1\x08\x85\x34\xdb\x56\x3e\x5a\x27\x7c\x3b\x54\xae\x83\x4a\xa3\xa7\xe7\x14\x94\x06\xe8\x8b\xd9\x50\x44\x12\xe0\x62\xb6\x16\x93\xf7\x3c\x4c\x73\xe1\x63\x4a\xc1\x71\x5e\x12\x15\x69\xb6\xbd\x11\xc1\x73\x1b\x96\x32\x6a\x05\x5b\x6c\x37\xdd\xab\x8a\xd6\xb9\x48\x28\xd2\x77\x3b\x29\xa1\x63\xc8\x83\x24\x0f\x6a\x4d\xf6\xba\xb7\xb9\x25\x71\xa6\x68\x9d\x78\xa7\xce\x42\x6e\xfb\x34\x57\x11\xb2\x66\x7a\xe5\xd4\xba\x5b\x73\xf6\xab\x60\x1d\x1d\x7e\x75\xd7\xcf\x54\x32\x0f\xc7\x7e\x38\xd9\x60\x31\x6d\x6c\x4f\x59\x3a\x7c\x78\x2a\x77\x11\x68\x3a\xe3\x61\xb8\x89\x75\x0a\xc3\x69\xc4\x60\x9c\x0e\x11\xdb\x88\x07\x0f\x71\x71\xa6\x57\x53\xe0\xe2\x24\xac\x6f\x67\xe3\xae\x50\x79\x03\x8c\x9c\x7e\xda\x58\xb6\x14\x80\x5c\x66\x23\x5c\x03\xee\x79\x13\xe8\x9c\xa8\x3a\xb5\x25\xec\x62\xb1\xb2\x71\xfc\x12\x99\x69\x36\xe3\x3f\x4d\x67\x70\x1c\xbf\x44\x33\x9a\xc0\xe8\x88\x37\x35\xdb\xd4\x6b\xbf\x9b\xc8\xf3\xb5\x73\x08\x4b\x61\xc2\x80\xcd\xc6\xdd\x22\xe1\x0e\x67\x9b\x68\x60\x5c\xae\xc6\x85\x52\xe3\xd7\x2e\x87\x98\xae\xb9\xb0\xd3\x73\x88\xaf\xdd\x4d\x7c\xf5\x32\x4c\x17\xfc\x65\x03\xf2\xa8\x83\x6b\x97\x35\xe4\xbb\x5a\xdc\xc0\x02\xdb\xde\x86\xd8\xf5\xda\x75\x91\xc8\xff\x15\x62\xed\xe6\x0b\xe5\x97\xd3\x85\x93\x9b\xe7\x9b\x0d\xd4\xa3\x95\x4b\x8b\x5d\x48\x48\x86\x09\x68\x4f\x3f\xed\xce\xbb\x47\x6d\x9d\x9c\xb7\xf3\xc8\xa9\x7d\x1b\x57\xc9\xcc\x0f\xfb\x27\x45\xb3\x07\x0d\xad\x34\x40\xe8\xd1\xc1\x66\x0a\xd0\x43\x64\x86\x09\x24\x4f\x56\x28\x03\x92\xe7\xcc\x56\x0f\x67\x74\xd0\x1b\x27\x88\x3c\xa7\x87\x1e\x10\x79\x8c\x3d\x3b\x9b\x6e\x92\xaa\xcf\x80\xe7\xe9\x18\xc1\xce\xa6\x71\x8e\x3d\xc6\xfe\x73\xba\x68\x9f\x8f\xff\x29\xec\x25\x9a\x80\xfd\x6d\xf8\x63\x42\x08\x4e\xd0\x79\x8c\x63\x37\x1b\xf7\x88\x44\x9c\x9a\xcd\xa8\x91\x8a\xea\x00\xf5\x94\x9c\xff\xcc\xeb\xde\xdd\x53\x54\x1e\xcf\xf4\xe6\xe0\xb3\x4f\x9d\xfb\xff\xdd\x53\x96\xe3\xb5\xb4\x4d\xdf\xfb\x14\xdb\x75\xc3\x97\xc5\x6d\x0a\x48\x9f\xbc\x67\x24\x9b\x4e\x4a\xd2\x9d\x08\x76\x2e\x2e\xe8\xda\x4a\xb4\x6f\xdf\x57\xf0\xbf\xf2\x12\x1b\x5b\x5b\x84\x58\x90\xe9\x1b\xa8\x12\xe7\x95\xd9\xb0\xf9\xf1\xf8\xd2\x16\x51\xae\xac\x2d\xa6\xc0\xaa\xb6\x41\xf4\x31\x56\xde\x6c\x6b\x0f\x87\x3f\x04\xd3\xc5\x07\x75\x82\xd5\x23\x48\xf4\xec\x5a\xfc\x5a\xf1\x7e\x6c\x46\x61\x2a\xe6\x5d\xf2\x7f\x0f\x74\x74\x3c\x58\x3d\xc6\xac\x9b\x60\xf5\x18\x0c\x63\x02\xd5\x63\x78\xae\x09\x54\x4f\x7c\xb6\xf0\x82\xcb\x06\x02\x12\xf0\x3c\xc6\xd4\x9c\xc0\xf3\x18\x9b\x67\x82\xce\x63\x90\x96\x09\x1e\x8f\x31\x73\x26\x18\x3c\x46\x18\x9a\x42\xf0\x0c\x4d\x0a\xfa\x49\x2d\x90\x12\x81\xe0\x31\x50\xc8\xec\xe7\x6e\x35\xd5\xd0\x9c\xd7\xcb\x6c\xf0\x78\xf6\xa1\xa6\x9f\x4a\x22\xc5\x4f\x69\x52\xca\xff\x06\x9c\x94\xd9\xf6\x44\x17\x70\x6e\xee\x09\x83\x6b\xa4\x20\x01\x78\xa6\x37\xcc\x3d\xb1\xba\xed\xd9\xcc\x22\x66\xf3\xe8\x7b\xf3\x67\xde\x74\x95\xa4\x16\x97\xb9\x40\x98\xd2\x9b\x56\xa0\xb4\x3b\x04\x01\xc3\x2f\x4e\xe0\x77\xf4\x31\x9d\x00\xee\x18\x0e\x69\x76\x76\xf8\xe1\x3d\x7f\x67\x87\x3f\x1d\xc8\xe2\x57\xa5\x53\x6f\x3f\x54\xe8\xa7\x62\xe6\x6e\x66\x33\x30\x5c\xc5\x0c\x94\xc6\xac\xee\x65\xc7\x49\x30\x37\x7c\x73\x9a\x61\x0b\x6c\xd4\xa9\xc0\xba\xd8\x5f\xba\xb7\x93\x4c\xeb\x5e\x35\x01\x91\x5e\x15\xbf\x7d\x69\xf8\x13\xf2\xa5\xba\xeb\xe1\x0f\x9e\x16\x11\x3f\x00\xe5\xd1\x38\x7f\xf6\xaa\x18\xd9\x7d\xb9\xcd\xe2\x0b\x6b\xb5\xf8\x3f\x38\x57\xec\x17\xa0\xf5\xf4\xd3\x59\x8a\xe1\x6d\x71\x12\x71\x4b\xa9\xba\xa8\x0b\x5f\xa7\xde\xb2\x37\x3b\x8a\x16\x29\x1d\x38\x44\xdb\x32\x88\x55\x0b\x6a\xcf\xb6\x6a\xef\x78\x8a\x12\x0c\x64\x82\xe0\x13\x55\xf2\x4b\xb0\x3b\x1b\x81\x99\x90\x2b\x18\x68\x9f\x28\x8e\x22\xba\x27\x0d\x96\x67\xef\xbb\x22\x14\x88\x14\xa1\x02\xb2\xef\x3b\x4e\x16\x7d\xef\x8c\x0c\x12\x64\xef\xcc\xb4\xea\xa7\x6e\x7b\xed\x4f\x21\x5b\x26\xc0\x3f\x9d\x00\x1a\xb3\x77\x85\x48\x57\xfb\x96\x1e\x5c\xa3\x86\x92\x1c\x26\xe3\xa0\xab\xf9\x65\x0f\x79\xa1\x7b\x38\xea\x03\x56\x5c\xcd\x40\x77\x21\xad\x74\x01\x64\xc7\xce\x60\x4f\xd0\x5d\x5c\x92\x6a\x99\x04\xce\x4f\x4c\x1f\x72\xcc\x3d\xef\x49\x65\x98\x47\x95\xbc\x9d\x7d\xbe\xbb\xc6\xa7\xa2\x87\x33\x60\xee\xe9\x60\x16\x1a\x85\x4c\x22\x4c\xd0\xd0\x32\xba\xcf\xdd\x28\xaa\x72\x19\x3f\x8b\xba\x7b\xda\x4c\x2e\xe0\x0b\xae\xe2\x34\xbb\x68\x88\x75\xe4\x24\xe9\x39\x4b\xc4\xa0\x5d\x91\x4b\x65\x8c\xa3\x78\x19\xe0\xd6\xf1\xbd\xf6\xa2\xa0\x56\xf7\x9e\xca\xe4\xb9\x77\xe5\x7d\x51\xb5\xe3\xa2\x37\x68\x81\x22\xfb\x46\x0a\x52\x6c\xe8\x9a\xf4\xa8\x3d\x16\x1d\xa8\x6b\xc6\xde\x1f\x6b\xcc\xc7\x1e\x6b\x4c\x76\x6f\x39\x87\x55\x46\xf9\xaa\x2e\x53\x74\xa0\xae\xf5\xf3\x46\x07\x52\x03\xd9\xdd\x99\x9d\xdb\xe8\x5e\x87\xd7\xa7\xfd\xd9\xb3\xc3\x0f\x2b\x68\xda\x47\x7a\xe9\xa8\x4a\xed\x22\x15\xb8\xe1\xf4\x57\x75\x00\xf5\x7a\xe5\xcf\xee\x0c\xef\xae\x18\x5d\xb6\xf7\x6a\xf7\x06\x03\xc5\x24\x8e\x84\xfd\xf5\x9c\x2a\x87\x71\x0f\x76\xe2\xef\xb3\xa2\x2d\xde\x7b\x30\xa7\xc0\xbe\x8f\x87\x8e\xe4\xb7\x2b\x43\x32\x21\x85\x86\x3d\x43\x58\x17\x95\x69\x1d\x30\xbc\xe4\x20\x89\x5c\xa0\x65\x43\x5f\x3b\x3b\xbf\x2c\xd8\xa9\xb3\x8d\xa8\xd0\x39\x4b\x57\x16\x1c\xfe\xc0\x1a\x70\x54\x17\x03\xe1\xac\xd8\xbb\xad\x95\x47\x49\xab\x61\x4b\x17\xca\x95\xad\x1a\xa4\xa0\x4c\xec\x89\x39\x8c\x02\x0d\x83\xda\xa0\x41\x74\xef\xd0\xb2\x76\xee\x1f\x64\xa1\x85\xff\x1b\x06\x7c\x66\x96\x41\x21\x88\x0f\x34\xb7\x04\x4c\x99\xc2\x07\xd5\x34\xfc\x14\xfd\x39\xfc\x92\x32\x4d\xb6\x1e\xbb\x3f\xfd\x16\x5b\x2f\xa3\x0e\x7e\x50\x56\xb7\x00\x7c\xd0\x49\x58\xaf\x09\x7c\x50\x96\x9b\x82\x1e\x94\x95\xfb\xc7\xde\x92\xb3\x2f\x2e\x6a\xd6\xdb\x20\x54\x34\xc1\x73\x26\xe8\x41\x59\x53\x96\x8d\x0f\xa4\x22\x15\x7c\xa0\x53\x51\x7a\x78\x63\xaa\x29\xfd\x38\x77\x05\xa3\x9b\x47\xda\x48\xf4\x95\x17\x78\x13\x93\x07\x18\xa0\x48\x35\xff\xc4\x04\x87\x3b\xb9\xdd\x85\x81\xef\x98\xd9\x6f\xcb\x6c\xf7\xf7\xd4\x4f\x5a\xd1\x64\x78\x2e\x0b\xc5\x78\x0a\x51\x73\x6c\x35\xb4\x7d\xb4\xd5\xd0\xb0\x1b\x60\x85\xba\xf7\x6e\x03\x65\xb3\xc7\x87\x0d\x24\xa4\x3e\x73\x64\x4e\x0c\xe6\xce\xac\x57\x66\x22\xa0\x42\x67\x51\xd9\x04\x90\x50\x26\xf4\xf3\x04\x48\x28\xbb\x42\x07\xd0\xf0\x9e\x43\x86\x88\x0c\xb2\x21\xe0\x82\x92\x98\x2f\x73\xb8\xe5\x3b\x05\xf6\x96\xcf\x44\x1e\x7b\x6b\x77\xa8\x39\xe9\xcb\x8e\x85\x0b\xd2\xc5\x65\x70\xba\x77\x97\xdf\x08\x41\x3a\x8a\x0d\x43\xc3\x39\x70\xd5\x3e\xa4\x52\x55\xcd\xd8\x7e\xe1\x1a\x74\x9a\x9b\x53\xbf\x03\x5a\x5d\xf4\x3b\x11\xb7\x67\xce\x20\xb4\x01\x0a\x81\x40\xff\x14\xaf\x7f\x47\x43\x49\x3e\xfd\xdf\x89\x85\x40\x33\xdc\x9b\x91\xb1\x46\xb3\x41\xf6\xa0\x5b\x30\x8b\x7c\x18\xc4\x21\x39\x16\x1d\xde\x69\xd1\x9d\x89\x00\xbb\x01\x94\x26\x13\xb4\x71\x0e\xcf\x68\xa6\xd7\x0c\x46\xd5\xfb\xb8\x5c\x37\xc8\x49\x00\xd4\xa4\x7d\xfe\x1d\xa0\x79\xeb\x92\x31\xf4\xa4\x50\xb1\x09\x5c\x4d\xd7\x45\x62\xc3\xd5\x68\xe8\x33\x3c\xbe\xd9\x26\x43\xf9\xaa\xdf\x1b\xb7\xfa\x91\xfd\x2d\x97\xf0\xce\xef\xed\x82\x79\x1e\x5d\xef\x8b\x2f\xd1\x2a\x8d\xfe\xc7\x63\xab\x68\xfa\xb6\x88\x71\x60\xd9\x2a\xb4\x92\x1f\xcf\x2e\xd1\x54\xbb\x44\x5f\x6c\x70\xf5\x5b\xae\x43\x57\xc4\x6b\xf0\x33\xba\x0e\xd8\xee\xfd\x2d\xce\x41\xd5\xe6\x7e\x06\x3c\xb3\x56\x9b\x1f\x23\x08\x0d\xee\xd0\x34\x94\x18\x62\xbf\xa9\x3d\x1b\x06\xf3\xcf\x56\xfe\xf3\x40\xed\x92\xf8\xb6\x23\x02\xdd\x12\x87\xa7\xee\x75\xd1\x10\x21\x4e\x5d\xda\x88\xc3\x53\x57\xb7\x32\x82\xcf\x17\x79\xfb\x08\x3e\x5f\xb3\x2b\xfb\xc3\xbf\x48\x7e\xe7\xd1\x09\xe1\x71\xac\x5d\x11\xfa\x7a\x21\xdd\xc8\x5f\xd7\xae\x87\xa9\x36\xa8\x2b\xff\xe3\x7e\xe6\xda\xc2\x8d\x92\xc0\xda\x73\xee\x3b\x36\x8a\x9e\x87\xc3\xe1\x0f\xe0\x4f\x4e\xe9\xee\x83\xac\xc6\xa9\x67\xbf\xca\xa2\x79\xd8\xba\xca\xff\x58\x9c\xa3\x46\x03\x8a\xe6\xcc\x1a\x2a\x02\x3f\xd3\x3d\x44\x4c\x83\xd7\xca\x47\xc1\xa2\xe9\xe9\xf8\xe3\xcd\x06\x40\x35\x67\xde\x99\x0a\x99\x28\xfe\x74\x9e\xc0\x3f\x66\x70\xe8\xae\x1d\xfd\xdc\x97\x71\x4c\x59\x60\x6b\x7a\xe2\xc4\x30\x61\xbd\xda\xd1\xcf\xad\x19\x65\x96\x4d\xb8\xab\x96\xd7\x33\xed\x5e\x34\x55\x70\x03\xe2\xe2\xcd\xa9\x49\x68\x95\xae\xf4\x6a\xa5\x88\x67\x0b\x3c\xf3\x9c\x18\x99\x38\x50\x53\xcc\x52\xad\x89\xa7\xc6\x24\xea\x42\x37\xc8\x8d\xa6\x48\xe0\xd7\xc4\x2f\xbc\xe0\x48\x5f\x33\x33\x63\xee\xb3\x12\x92\x0e\xd0\x34\x5d\x1b\x5d\x10\x68\xba\x7a\x3d\x00\x68\x22\x91\xd9\x1d\xac\x69\x76\x4f\x79\xfb\x85\xc1\x42\x5e\x9d\x70\x4e\x77\x77\x50\x6a\xba\x86\xa0\xa0\xd4\x44\xe1\xb4\xa4\x28\xd7\xc1\x2e\x67\xa5\x17\x91\x01\xe6\x56\x8c\xc2\x8e\x66\xb5\x26\x4c\x8e\x60\x9d\x5d\x23\xe9\x59\x75\xa5\x9d\xfe\xb0\x5b\x68\x8e\xdd\x75\x94\x48\x3c\x9c\x9a\x9d\x43\xd5\x8d\x69\xff\xb2\xfc\x85\x0f\x34\xb9\x13\x9c\x58\x58\x93\xcc\x79\x75\xaa\x48\xdb\xff\xef\x0f\x93\x43\xcf\x7a\x1d\xc0\x66\x08\xd8\x46\x2d\x9d\x73\x2b\xcf\xe0\x47\xf3\x72\x29\xb1\x31\x03\x6c\xd2\xd5\x7a\x80\x6b\x12\x3f\xf0\x2d\x0c\xf3\x4b\xf6\xff\xd8\xcc\x08\x2a\x36\x01\x2d\x89\x4f\x91\x83\x4b\x98\xaa\xb7\x22\x08\x26\x29\xa9\xce\x02\xc2\x24\xed\x6e\x09\x6e\x9a\xd5\xaa\x4d\x43\x87\xa9\xce\x02\x9b\xa4\x6b\xfa\x35\xb7\x9e\xab\x9b\x6a\xf9\x42\xf6\x67\xfb\xb0\xfa\xb2\x2b\x4f\xf1\xc1\x40\xb7\xdc\x3d\x61\xa0\xaa\x2e\x26\xb7\x30\xda\x97\x4d\x58\xa6\x16\x5d\x13\xe9\xba\x66\x17\x2c\xd2\xf1\x9e\x27\x2f\x6b\x84\x73\xbb\xb8\x28\x1a\x68\x4d\x4d\x16\xf4\x2a\x9a\x5b\x50\x1e\xe6\x46\xcb\xe6\xc4\xc6\x96\x41\xd3\xa6\x69\xd8\x2f\xe5\xd4\x29\xf8\xb4\x2e\x30\xf3\x65\xfe\xc9\x83\x0c\xb4\xa2\x16\x6c\x62\xe4\xa0\xb1\xd7\x7c\x9d\x7f\xc3\x02\x17\x3f\x90\xfb\xdb\x5c\x84\x42\xb8\x51\xd1\xb2\x60\x8a\xf5\xa5\x6a\x6c\x2e\xa7\x0c\x4c\x19\xf0\x93\xae\xe9\x09\xe0\x27\xf1\x83\xa9\xa8\x09\x5c\x72\x1a\x2e\x5c\x3b\x68\x80\x50\x52\xa1\xba\x60\x9f\x74\x6d\x48\x2e\xd5\x4d\x19\x7d\x07\xd8\x27\xe7\xde\x28\x2f\xb1\xa1\xd5\x4d\x5c\x30\x50\x2f\x22\x05\x42\x29\x8a\x52\x22\xa1\x0c\xb7\xd3\xcb\xb8\xe0\xf3\xfc\xe3\x19\x18\xcc\x94\x68\xb3\xd9\x3e\x76\x25\x0b\xa2\x63\xd8\x84\xc1\x4c\x89\x44\x83\x17\x79\xc7\xf0\x25\xa1\x39\x22\xc7\xb9\xb7\x0f\xfe\x6f\xb6\x26\xf1\x32\xff\xf5\xd7\xd0\x3e\xee\x3a\x77\x35\x27\x2f\x9f\xd5\x24\x4b\xb2\x5f\xe1\x7c\x97\x4c\x54\x0d\xc2\xb5\xed\xe7\x59\x0e\x60\x9d\xc4\x97\xf9\x9a\x46\x7c\xea\x51\x2e\x02\xa3\x68\x3e\x72\x25\xbb\x9f\x1c\x21\x7c\x66\x77\x93\x6b\x73\x4e\xe6\xd4\x65\x88\x31\x4d\xa6\x2f\x45\x51\x0d\x95\xaf\xbc\xab\xef\x2f\xc1\x7d\xd4\x2e\x5e\xda\xdc\xe7\x9d\x0a\x96\x8c\x62\x00\x4c\x92\xee\xfd\xfd\xa5\x43\x38\x91\x58\xe6\x25\x77\x65\x73\x07\x9f\xa4\x7b\x2f\x7f\x15\x67\xfa\xf4\x07\x46\x15\xd1\xe0\x92\xd3\xaa\x00\xb8\x8a\x53\x67\xfa\x5d\x26\x31\x5b\x24\x88\x24\xc6\x2f\x9e\x82\x90\x1c\xaa\xe7\x41\x21\xe9\xc4\xa0\x9e\x02\x8f\x24\x2d\x85\x2f\x19\x2a\x9b\xfb\x25\x5a\x25\x38\xfa\x13\xe4\x91\xae\x78\xbd\x81\x47\x64\xc1\x17\x6a\x26\x42\xc6\x4d\x40\x48\x7a\xe2\x34\x7b\x19\xb0\x78\xee\x1f\x98\x27\xf0\x07\xe0\x45\xba\xb7\x9b\x17\x0a\x24\xef\xdb\x80\x17\xe9\xde\x28\x02\x22\xd2\xbd\xef\xba\xb0\x80\xd8\xf3\x17\x19\xd5\xcb\x17\x60\x25\x92\x57\xf2\x20\x49\x44\x61\x64\x30\x8e\xa2\x07\x6c\xa0\x24\xba\x2c\xef\x52\xfc\xf4\x80\x0d\x94\x44\x34\x82\x17\x6e\x0f\x54\x98\x5f\x9b\x7b\xda\x39\xf7\xee\x1c\x7f\x51\x02\x74\x86\xdf\xb2\x65\x4a\x54\x57\xb1\xc7\xd2\x00\x8b\x9e\x89\x2f\x19\x6b\xf3\x7f\x78\xbf\x27\xd3\x8b\xc8\x54\x6a\xc5\xaf\x1f\x4d\x05\xdf\x7d\xf6\xaa\x26\xcb\xa3\xe3\x1f\x2d\xf1\x46\x5b\x2b\xce\x8d\x11\xe1\x71\xf4\x12\x14\x51\x59\x16\xc8\x87\xae\xc2\x5c\xc8\x87\xb9\x17\x95\xac\x95\x8d\xfa\x32\x3e\xad\x76\xb7\x97\x61\x14\x35\x91\x05\xff\xe1\xdc\x22\xef\xa5\x12\xc2\xe3\xe9\x85\x51\xb6\x96\x4b\x17\x36\xd9\x7d\xe7\xb0\xbd\xd9\x42\x1e\x7e\x20\xd1\xb7\x4b\xf7\xc5\x8e\xb4\xbf\xbe\x5d\x22\x5d\x4c\xac\x10\xf5\x52\xd7\xe6\xa1\xb0\xe0\xeb\xdb\xbd\x4a\xb7\x60\x88\x9d\xe5\x40\x8a\xaf\x70\xf6\x4b\xa3\x6c\xcf\x33\x22\x3f\x80\xcf\x38\x41\x7e\xe8\x09\xfe\x7d\x7d\xf4\x89\xf4\x45\x37\xc0\x98\x01\x7b\xe8\x69\xfc\xd1\xcb\x03\x20\x88\x28\x85\x4a\x2e\x96\x02\x1c\xfc\x32\x22\x56\x76\x96\xab\xc3\xf0\x9c\x75\xc9\xdb\x61\xe7\x97\xee\x4a\x9e\x88\x36\xfc\x83\x27\xa2\x5b\x9b\x6d\x0f\x3e\xe0\x3f\xc4\x12\x2d\xbc\x24\x07\xc2\x64\xd9\x62\xfc\x85\x0e\x83\x87\xdf\xc6\x0c\x51\x94\xbf\x89\x75\x75\x38\x90\xa2\x3e\x1c\xf6\xfe\x2d\x03\xd7\x7e\xf8\x96\x51\x6b\x1a\x7c\x9f\xce\x04\x76\x14\x50\x1c\xe2\x85\x32\x95\x69\xe1\xe0\xc0\x38\xc4\xc7\xcc\xcf\x82\x1c\xfe\xef\xe0\xb3\xd5\x08\xe4\x30\xb5\x56\xbd\x37\x8e\x15\x23\x06\x78\x43\x57\x31\x70\x1b\x0c\x32\xb3\x3c\xef\xc4\xa2\x87\x73\xdd\x8a\xbe\x7a\xb0\x82\xd8\x10\xdf\xa2\xc5\x69\xbb\xad\x51\x17\x23\x7d\xc8\xaa\xef\x60\xd5\x35\x33\x41\xef\x1c\x8c\xc5\x43\xd1\x0d\xa3\x3e\x76\x1b\x35\x17\xf0\xe4\x76\x13\x4f\x4a\xeb\x24\xf0\x1b\xce\x66\x19\x1a\x08\x68\x8d\x0c\x7e\xc3\xe9\xbd\x9f\xf8\x0d\xda\x6c\xdc\xf0\x66\x3d\x7c\x6e\x6e\x09\x0c\x53\x01\xac\x43\xd6\x7d\x40\x20\x87\x63\xf7\x68\xd9\xcd\xf0\x4b\xce\xd5\x6a\xf6\x45\x76\x5a\x1e\xbc\xb9\x2b\x6c\x82\xcb\x90\x09\xa8\x39\xef\xba\x5b\x41\x86\xe0\xba\x5d\x09\x0f\x28\x86\x53\x8b\xa2\x5b\x89\x56\xcb\x06\x21\x16\xba\x56\x25\xb7\xe6\x66\x1e\xd5\xc0\x58\x88\x9a\xf0\xe1\xe6\x02\x64\xfb\x10\x70\x61\x1f\x6b\xee\xb6\x6b\x4f\xbd\xd4\x0f\x78\xde\x02\x59\xa1\x68\x38\x07\x82\xc2\x50\xb9\x7b\xf7\x3d\x37\x7d\xb1\x53\xfc\xbf\x92\x88\xcc\x5d\x7e\xc5\x0e\x00\x82\x42\xe4\xa0\x74\xc3\xfc\x7a\xbb\x0e\x36\x42\x94\xce\x88\x0c\x3a\xdb\x21\xe4\xda\x7d\x9f\xb0\xc0\x43\x88\x2c\x74\x0b\x4e\xba\xc7\x1e\xb7\xe1\x48\xb3\xa1\xdc\xaa\xd5\xbd\x2b\x06\x36\xe1\xdc\xa7\xaf\xdb\x38\xf2\x5e\xd4\x6d\xac\x04\x2f\xb9\xc0\x4a\x38\x55\xd1\x83\x95\x60\xe4\xf8\x29\x54\xc2\xa1\x65\xf0\x3d\x19\x2e\x07\x78\xe2\xe1\xd1\x4d\xe4\xec\xf0\x7f\xf9\x1d\x1b\xcf\x3d\xed\x47\xf6\x17\x00\x15\xe2\x53\xfe\xe2\x78\xd9\xc8\xcb\xe5\xe7\x2a\xbf\x94\x5a\xb2\xbf\x30\xf6\x96\x7e\xed\x66\x51\x4c\x6c\x7c\x99\x90\x9a\xf3\xd6\x5c\x4b\x36\x77\xab\x72\xd7\xae\xf7\x46\xe5\xbe\x5b\x75\x19\xbf\x9c\xd2\xef\xdd\x2a\xea\x15\x47\x08\xa2\xe6\xff\x81\x19\xde\x46\xb7\xd0\x18\xf8\xe6\x7a\x5d\x19\xe8\x36\x00\xb1\xa7\xed\x9b\xfd\x71\x6a\x7d\x7c\x63\xf0\xa5\x24\x71\x13\x8b\xcb\xa0\x42\xb7\xaa\x7c\x8f\x98\x37\xaa\xfc\xa9\xe9\xdf\xcd\x66\x79\xec\x19\xca\x66\xa9\x3c\x75\x7b\xdb\x9e\xd9\xf9\x6e\xf4\x33\x39\xf9\xff\xee\x30\x66\xc5\xe3\x34\xb6\x44\xad\xbc\x9c\xc5\x18\x79\xe5\xfd\xd9\xdd\xf9\x66\x67\x3d\x22\x05\xdd\xea\xeb\x3d\xd4\xde\xd8\x72\xed\xe9\x8d\xfd\x96\x16\x07\xf7\xbb\xcb\x63\xae\xbd\xb6\xd6\x5a\xb1\x23\xaa\x90\xb9\x85\x44\xd2\x1c\xef\xc6\x5a\xba\xb8\x39\xdf\x58\x66\xed\x45\xc0\x39\x22\x23\x98\xdc\x1f\xb3\xc8\x81\xfb\x2c\x9b\x9a\xb3\x69\x6e\x35\xc1\xfd\xed\xc2\x29\x83\x0b\x73\x2f\xaa\x6f\xf4\x3c\x53\x4b\xa3\x9b\xc8\x18\xd5\xc3\xea\xfd\xd9\xbd\xfb\x65\xf9\x42\xfe\x45\xf7\x9a\x85\xed\x71\x77\x22\x0a\xfd\xdd\xd3\x4b\xf6\xe1\x74\xc4\x08\xdb\x8b\xd3\x7b\xed\x9a\x50\xf7\xe5\x76\x24\xf7\xd0\x95\xd7\x23\xfc\xad\x11\x76\x76\xde\x69\x77\xad\xa2\xe9\x5e\x8e\x34\x83\xf8\xc4\x7e\x38\xf4\x18\x7e\x88\xfc\x78\x78\xf1\xfd\x70\x9d\xee\xa5\xfb\xc3\x06\xe8\xe5\xc2\xc3\xad\x79\x66\x01\x3c\x68\x84\xac\xc9\x73\x30\xce\xc5\xbc\xbb\x1b\xcc\xf0\x90\x68\xf0\x3f\xc1\x42\xba\x89\xe4\x43\x9c\x5b\x9f\xd8\x22\x8b\x3c\xff\x31\xde\xb1\xa7\xf4\x07\xb5\x51\x66\x23\x7f\xb8\x5b\xb7\x45\x0f\x9a\x21\x3b\xfa\x39\x2b\xff\xfb\x21\x97\xb4\x45\xc7\x66\xd9\x0d\x02\xf1\xa0\xae\x3f\xb4\x70\x7f\x4e\x27\x89\xad\xdb\xe7\x1d\x0e\xff\x0f\x3a\xa3\x8c\x6e\xf0\x49\xae\x3b\x4e\x82\x8f\x51\x94\x55\xfb\x3c\xc9\xce\xa1\x26\xec\xa8\xb9\x98\xdb\x1d\xb5\xfb\x83\x03\x65\x57\x19\x1f\xd2\x73\xfd\x93\x14\xb4\xac\x58\x72\xa0\x6c\x22\x8a\x7b\xe0\x27\xe7\x83\x6e\x29\xef\xd2\x17\x7a\x3f\x0a\x41\x6d\x9f\xd9\x5c\x1f\x2f\xed\x35\x6a\x7e\xdc\x8f\x39\xaf\x3c\x7b\x3f\x86\xb5\x3d\xfb\xe0\xe4\xe0\xe8\xac\xec\xdd\xbe\x60\x31\x85\x7d\x0d\xac\x98\x2e\xff\x7b\xb2\xa1\xad\xfc\x94\xfc\xba\x5b\x20\x95\xe2\x44\xf5\x68\xbd\xb7\xe7\x88\xd6\xe3\xea\x08\x1e\xd4\xfb\x87\xcc\x50\x14\x99\xa9\x49\x35\x28\x32\x3d\xb3\x23\x83\x22\xd3\x73\xfd\x23\x03\x04\x61\x66\x9f\x6c\x1e\x43\x35\xab\x66\x78\x3c\x56\x71\xa4\x10\x16\xa6\xee\xfe\x52\x69\xa5\x0d\xf9\x53\xdd\xb1\x92\xc9\x30\x43\x42\xa2\x78\xf4\x7b\x3a\xaa\x3f\xd0\xfc\x6a\x76\xa5\x08\x38\xd8\x63\x10\x67\xfd\xc1\x81\x85\x89\x17\x7a\xaf\xee\xba\xf8\x31\x57\x38\x27\xb6\x87\x9b\xfd\x6c\xf1\x42\xff\xcb\xbe\x9f\xb6\x6b\xe9\x2f\x9b\xc3\xf8\x8b\xbd\x41\x5d\xb6\x50\x00\x0f\x7c\x8c\xdc\xbc\x67\x58\x77\x4e\xb2\x93\x3e\x46\x68\xf6\x1e\xee\xe9\xf6\x2c\xdf\xea\x7b\xea\xf9\xc2\x8a\xb5\xc6\x86\xeb\xd0\xba\xf9\xf1\x4e\xde\xbb\xa4\xe7\x23\x94\x3f\xbc\xe7\xd1\x24\x55\x0b\xe5\xe7\xb3\x5e\x34\x8b\x68\x82\xaa\x49\x1e\x0e\x05\x80\x19\x4d\xf0\x29\x3a\x80\xe2\xf3\x91\xb9\x21\x5e\x00\x3c\x11\x1f\x22\x33\x91\xd6\xf5\xc1\x01\x84\x22\x13\x20\x7f\x3e\x0b\xc3\x43\x97\x89\x0e\x26\xaa\x71\x9e\xcd\xcf\x98\x9d\xef\xd6\xc4\x30\x6d\x41\x94\xe8\x84\xa9\x9e\xaf\xcc\x89\x3e\x00\x5c\x22\xab\xe9\x7c\x65\x54\x48\x26\x82\x4b\x14\xcf\x62\x02\x4a\x4c\x8d\xa9\x45\x91\x70\x17\x7a\xd5\x57\x6b\x0d\xfd\xca\x78\xe0\x4e\xaf\x0c\x06\xbe\x2a\x28\x84\x62\xe4\xeb\x15\xa0\x2a\xa4\x17\x91\xdb\xd0\x20\x2f\x7e\x8f\x5a\x9f\xbd\xc9\xfa\x51\x6f\x74\xca\x20\xca\xce\x17\x3b\x1c\x43\xe3\xbd\xea\x97\x77\x7a\xd4\xe9\xc9\xef\xc8\x23\x39\x7a\xbc\x59\xe1\x81\x0d\xec\xcd\xf6\x2c\xfc\xe4\x15\x05\x5d\x25\xcd\x9b\x35\x22\x37\x8b\x15\x44\xb1\xf2\x66\xe5\xa0\x6c\x2a\xd6\x71\x37\x95\x35\xa7\x15\x38\x84\x80\x79\x33\xdf\xb2\xbb\x9c\x02\x8b\xfc\x8f\x0d\xfe\x55\x14\xb7\xa3\x8a\xc2\xe1\xf4\x85\xc6\x5a\x2b\x1d\x1f\x73\x35\x07\xa3\xd1\xfd\x94\x93\x10\x56\xf1\xa2\x6a\xd6\xab\xfd\x55\x2c\x67\x3e\xbe\xd5\xe3\x98\xfd\x40\x7c\xbb\xec\x44\x60\x39\xea\x91\xfc\xee\x35\x07\x33\x78\x59\x73\xba\xa9\xbc\xb1\xe6\x72\xdf\x74\xbb\x8a\x55\xfa\xee\xf5\x57\xfd\x85\x66\xec\x1f\x76\x33\x28\x43\xb8\x0e\xd9\xd4\x2b\x7a\x93\x4b\x03\xec\x0e\x11\x64\x26\xd8\x1d\x59\xbf\xac\xb7\xd1\x87\x8e\x40\x77\x4f\xa5\x22\x98\xe1\x66\x67\x48\x77\x4b\xb7\x19\x18\xc7\xe4\x3f\x5b\x3b\xbf\xdd\x73\x25\x12\xc2\xdb\x55\xa0\x57\xbf\xfd\xf9\x42\x65\x74\xf0\x50\xbd\x22\x48\xc7\xd4\xdc\xfb\x1d\x1b\x93\x84\xb1\xc6\xf9\x22\xef\x1f\xec\x55\xe9\x8a\xeb\x2e\x04\x11\x3b\x64\x5f\xaf\x71\xe5\x54\xc2\xbc\xfa\x27\xb2\x91\x00\xd8\x91\xb2\x0a\xae\x77\x7a\xa6\x81\x47\xbf\xda\xc1\x1c\x88\x6d\xef\xb4\xa1\x64\xd1\x9f\xe2\xb0\x9b\x2e\x7a\x9f\xa3\xe8\x7b\x51\x15\x14\x5c\xef\x8e\xfe\x76\xf8\x02\x97\xf1\x4b\x7a\x44\x78\x79\xf1\x5e\x46\x0b\x3c\x7c\xa1\xf7\x61\x33\xef\xd6\xcc\xc3\x48\x01\xf2\xe8\xd9\x41\x45\x19\x7f\xec\x44\x72\x4e\x6b\x75\x33\x37\xa7\x3f\x58\x75\x6b\x75\x47\xd5\xf5\xc9\x05\xc6\xa3\x67\x7b\xe1\xde\x15\xb1\x08\x77\x04\xeb\xae\x7b\xc4\xe1\x82\x03\x59\xa9\x1b\xa7\xe3\x7d\x98\xdb\x0e\x02\x21\x6d\x65\xa3\xef\xb3\x27\xa4\x3f\xd8\x25\x7c\x17\x51\xbb\xd8\xbb\x5b\xd4\x86\x87\xbf\xcf\xae\x22\x8d\xda\x61\xd2\x0f\xb3\x2f\xb2\xd0\xa8\x37\xf3\x3f\x89\x84\x32\x97\x87\x83\xd5\xd1\x8d\xcb\x02\x54\x47\x2f\xf6\xf4\xeb\xaa\xb4\xf0\xd7\xde\xe5\x98\xf4\x1a\x04\x40\xf6\xfe\x6e\x25\x93\x0d\xf9\x9c\xd1\xf6\xca\xa7\xc8\x81\x58\xfb\x7e\xd6\xde\x54\xdd\x7e\x30\x95\x9a\x0d\xa4\xb5\x77\xcb\xcb\x6c\x16\x2f\x06\x30\xe5\x30\xd5\x2e\xdf\x1f\x6c\x16\xb5\x37\x0c\xad\x27\xf4\x77\x61\xa5\x28\x53\xc1\xdb\xff\x50\xda\x16\xc8\xa3\x1a\x13\xe3\xe5\x36\xa0\x70\x42\x7f\xd9\x52\xbc\x95\x7b\xd1\x1e\x69\x69\x08\xa8\x47\x2f\x36\x77\xed\xb2\xa3\x1d\x9f\x77\xa6\xda\xd1\x7f\xc7\x6e\xc8\xe4\xe5\xf2\x97\x83\x97\xd7\x97\xc4\xcb\xfe\x40\x34\xf1\xd3\x13\xdf\x7d\x08\xc0\x8e\xf8\x65\xf0\x82\x4e\x8f\x33\xe6\xa7\x26\x47\x83\xf4\x4f\x5f\x0f\xb7\xd6\x2f\xa4\xd3\x5e\xac\x0c\x5e\x63\xc5\xef\x76\x75\xc2\xe4\xc6\xe8\xce\xd8\x97\x40\x30\x44\x3f\xf8\xc3\xed\x67\xcd\xf1\x80\x95\xda\xf9\xdf\xf6\x9a\x68\x87\x4d\x8d\xff\xc7\x76\x8f\xe0\x07\xcc\xea\x34\xe0\xf9\x84\x44\xd4\x28\x1c\x70\x86\x68\x06\xfd\x30\xe8\x5e\x9b\xc4\x41\xbd\xc0\x04\xc0\x5a\xe8\x05\xfe\x0d\xd4\x42\x51\x4e\x01\x5e\xa1\x17\x18\xcd\xe7\xdd\x5e\x9c\x38\xfe\xc0\x05\xbf\xa9\xf5\xb8\x5f\x1e\xe6\xf2\x65\x37\xd1\xf2\x69\x16\x0b\xee\xdb\x27\x7d\xb6\xbb\x6f\xa2\x4b\xb1\x7b\xaf\x3d\x39\xe8\xae\xcb\xda\xf8\x7f\x08\x22\x19\x7e\xfe\x19\x9d\x4b\xb1\x02\x44\x86\x0e\xf8\xdb\x04\x90\xa1\x1b\x9e\x0a\x10\x86\x48\x44\xa7\x5c\x96\x4d\x9f\x6c\xe6\x64\x45\x04\x61\x70\xc7\xfa\xb6\x06\x00\x69\x07\xe8\x85\x24\x96\xef\xfc\x38\xd8\xeb\x14\x0a\x0c\x43\xd7\x11\xf9\x83\x3b\x95\xe4\xff\x2c\x9e\xe2\xff\x44\xa2\x75\x62\x82\xf9\xd6\x2d\x3b\x98\x53\xe9\xbb\x00\xa7\xe5\xe9\x0b\xc6\x06\xdd\xc2\x00\x80\x63\x1b\xf9\x1e\x4d\xc7\xec\xce\x87\xd0\x15\xfb\xff\x3d\x3a\xb4\xfb\xd9\x9d\x4e\xd9\xf8\x43\xef\x80\x2e\x20\x32\x74\x0d\x17\x44\x64\x68\xec\x0f\xa0\x30\x88\x40\x36\x01\x61\x48\x8a\xe3\x80\x30\xf4\x92\xfd\xdf\x3d\xc4\x9a\xc7\x99\xbe\xb6\xe2\x0f\x60\x7a\x3b\xa5\xf7\xf1\x9e\x3a\xbd\x16\x46\x95\xb8\x3e\xd4\x6f\xe6\x7b\x59\x26\xd9\xc2\x96\xad\xa6\x16\xc1\xaf\x7a\xe1\x3c\xf8\x7d\x1e\x4b\x58\xf2\x1f\x3e\x58\xc5\x7e\xda\xa7\x7b\x84\x34\xa0\x1d\x7a\xd9\x89\xdc\x62\x9b\xd9\xe1\x43\x36\x6e\xed\x71\xf4\x85\x28\xc7\x6e\xd1\xdf\xf2\x14\xcd\xa9\xe8\x43\xe1\x5d\xf6\xff\xb6\x35\xfb\x62\x77\xc2\x06\x81\x79\xe8\x05\x96\xfc\xad\x5d\xf9\x48\xb5\x36\xf7\x61\xc5\x8b\xc5\x30\x75\x3f\x58\x5b\xf5\x5c\xfc\xe5\x23\x2c\x59\xe2\x7f\x4f\xf7\xf4\xe2\x3a\x3d\x3a\x20\x58\xae\x73\xd7\xd2\x5f\x94\xed\x10\x57\xc1\x60\x38\xf5\xbd\x06\x83\x21\xf2\x53\x0a\x82\x6f\x61\x9a\xac\xcd\xbb\xb2\x3f\xd8\x61\x48\x80\xe0\x2e\xc4\x8b\xc9\xdc\x90\xf6\xc7\x94\x5d\x8a\x2f\xcb\x5f\xa2\x93\x17\x36\x72\x5e\x4e\x2f\xce\xdc\x05\x31\x66\xa5\xdd\x7b\x26\xf2\xe0\x86\x00\x0a\x5e\x42\x2f\x4c\x21\x40\x11\xa2\x44\xb2\x64\x6b\x8c\xb0\xb6\xf2\xae\x18\xc9\xf2\xae\x18\x55\x16\xe4\x40\x0f\x0f\x40\x0e\x72\xd9\xa9\x88\xe9\xe7\xac\x58\x79\xaf\x18\xca\x47\x48\x06\xa8\x6d\x02\x7f\x10\xa9\x28\x65\x9f\x7c\xe1\xa5\xa0\x19\xc4\x0b\x59\x30\xcf\x98\xfa\x8b\x80\x67\x90\xf2\x1e\x8b\x02\xe3\xa8\x66\xb9\xff\xf5\x57\xd5\x28\x41\xd8\x82\xde\xff\x68\x13\xb8\x34\x74\xb3\xcd\x1c\x7c\x8d\xba\xba\xc4\x43\x3d\x91\xcc\x81\x37\xe8\x3a\xa6\x6e\x74\x03\x7d\x44\x56\x75\xf8\x1c\xd7\xba\x7b\xc9\x64\xc3\x64\xb4\xac\xba\x7d\x38\xe4\x1e\x76\x75\xcf\x58\x55\x9e\xe6\x58\x36\x76\x5e\x7f\x68\x48\x1a\x48\x07\xab\xc9\x36\x87\x2f\xd3\xec\x14\xc9\xad\x62\x71\xc0\x71\x60\x2b\x4d\xfa\x2e\xc3\x1f\x76\x19\xb4\xab\x39\x93\x9d\x17\x06\x81\xd6\xb1\x62\x75\xbb\x1f\xf1\x7e\x21\x61\x17\x56\xe8\xea\x32\x54\x27\x4c\x77\x5c\xe0\xa8\x8b\xd3\x71\x71\x21\xe0\xdd\x56\x9a\x9f\x72\xba\x56\x7f\xd8\x58\xd8\x7c\x17\x40\x21\xb5\xd4\x6b\x38\xf8\x4e\xb1\xe9\xa2\x82\x1f\xad\xe9\x66\xc2\xf9\x65\xb9\xb5\xb9\xa6\xf6\xd6\xe6\x7c\x35\xb8\xb2\xf6\x1e\x20\x42\x74\x95\x60\x20\x42\x54\xaf\x3e\x05\x84\x38\x76\x0e\xbc\x90\x8b\x4b\xea\x72\xe1\x3a\x0f\xb5\x0b\xf7\x2c\xb4\xc4\xbc\x53\x4f\x01\x3e\x44\xe4\x27\x19\x76\x7c\xdb\x83\x63\x19\x93\x51\x16\xbd\x74\xed\x75\xa3\x02\x8f\x21\x7e\xa1\xfa\x8f\x79\x10\xb6\x45\x4d\x28\x5a\x70\x2f\x6c\xec\x0e\x2c\xec\xaf\x8e\xec\x5c\x71\x39\xb9\x6e\xb5\x2e\x38\x84\xbc\x23\x3f\xef\x8b\x42\x11\x07\x56\xde\x15\xa0\x0e\x0e\xf1\x12\x58\xa1\x27\x73\xe7\x1d\xf9\x7d\xe9\x8f\x33\x61\x70\xf1\x8e\x72\xbc\xaa\x0f\x33\x8e\x77\x12\x70\xe9\xd3\x1e\x64\x13\x2e\x2a\x17\x9b\xbe\x84\xcb\xd3\x62\x70\xf3\x4d\xf0\xfe\xa2\xfc\x66\xc1\xe2\xb1\x70\x1f\x21\x61\xed\xee\xea\x9b\xf0\x56\x95\x2e\xbd\xfe\x10\xf8\x68\x1e\xbf\x29\xbe\xd3\x33\x70\xfd\xf9\x86\x80\x2e\x5e\x7a\x4a\xd0\xe3\x1f\x23\x57\x09\x43\xc2\xf8\xcd\xb2\x6c\xcb\xb4\x94\xf3\x7d\x8c\xa2\xc0\xbd\x1d\x04\x95\x15\x1d\x53\x47\x09\x78\xcf\x16\x4c\x5f\x25\xdc\x6a\x94\xc6\xf1\x43\xf0\x12\x39\x1f\x3f\x29\xc0\x8c\x3b\x0b\xe6\xab\x12\xd4\x3c\xe0\xb4\x28\xe1\x53\x1f\x3a\xf2\x26\xc0\x5e\xce\x8e\x71\x88\x04\x55\xfa\x2c\xb9\x77\x94\xf4\x3e\x8a\xbf\xe8\xf2\x25\xc0\x52\xbd\x0e\x90\xc0\xe9\x49\xfd\x39\x84\xad\x5e\xc1\x32\x58\x02\x07\x58\x75\xdc\x12\x38\xaa\x96\xf3\xf8\xf9\xe8\x2b\xfe\x35\x1a\x71\x08\x20\x9f\x9d\x99\xf0\x67\x12\xf4\xfc\x46\x11\x0c\x41\x50\x1f\x95\xd2\x12\x04\x08\x26\xb4\x88\x04\x2c\x09\x32\xf7\xe4\xef\x28\xf9\x45\x6b\x71\xaa\xd6\x92\xb0\x47\x7f\x1e\x3f\x04\x83\xab\xb0\xab\x41\xb0\x1e\x9e\x9d\x37\xc1\x62\xc7\x4f\x16\x91\xc3\xd4\x72\x40\x00\x2d\xe6\xfc\x7f\x71\xca\x7f\x47\x29\xaf\x00\x82\xca\xf7\x12\xd8\x8c\x32\x36\xa4\x12\xe0\xe8\x4a\xfa\x12\xf4\xc3\x29\x7b\x04\x82\x70\x9b\xa2\xff\x10\x84\x66\x64\xb9\x4b\xf8\x76\x96\xf1\x43\xe0\x72\x40\x81\x0c\x02\xbb\xf6\x29\x02\x9f\x04\xf4\xc7\x4a\x57\x12\x8a\xdf\xc8\x3f\xdf\x90\x75\xf4\x52\x2c\xa5\xbe\xc2\x59\x77\xc2\xe5\x6f\xc2\x67\xd0\xb5\x73\x13\x36\x66\x24\x7c\x10\xc2\x27\xe4\x42\xd9\xdd\x59\xdf\x4f\x4c\xe4\xb1\x4b\xa9\xef\x3a\xac\xc7\xfc\xc9\x02\xda\x50\x10\xec\xa0\xf6\x02\x72\x7c\x8a\x27\x07\xc1\xe3\x75\xaf\xa9\x6e\xc2\xc7\x65\xfa\xd8\xef\xfd\x7d\xb4\x06\xaf\x9b\xd9\xf4\xf7\xf5\xba\xbb\x6e\x76\xd4\x7f\xa6\x0a\xb0\x38\x12\x50\x28\x75\x50\xa5\x25\x70\x16\xeb\xf8\x79\x4a\x98\xa6\xa8\xff\x10\x1e\x09\xe9\x87\x70\x19\x6d\xb6\x9e\x3f\x04\x66\x68\xaf\xf5\xb7\x1e\xdf\x0e\xfd\xf8\x93\xe2\x33\x38\x4c\x6d\xe9\x97\x60\xff\xfc\x56\x6c\x03\x5a\xd5\xfe\x4b\xe8\x36\x6e\xfc\x64\x59\x62\x88\x55\xb9\x71\x19\xef\xeb\x7c\xa9\x9b\xd9\x8c\xf7\x13\x51\xeb\x87\x51\x8c\x9f\x8f\xb6\x7f\x08\x58\x98\xf7\xb6\x99\xcd\x7c\x3f\x9d\x27\xcb\xe6\xb5\x71\x5e\xa7\xa6\x6d\x2f\xe1\xeb\x55\x9f\x2e\x3e\x8d\x84\x4b\xc2\x9e\xd9\xd7\xab\x62\xa9\xb7\xfa\x93\x82\x63\xcf\xd9\x89\x5b\x08\x41\xc9\xaa\xb7\x3d\x3d\xae\x57\x08\x24\x15\x7e\xef\x28\xf7\xeb\xad\x8e\x47\x28\x09\x58\xa5\x75\x02\xb8\x43\xd8\x6b\x1a\xa4\x72\x08\x9f\xb6\x06\xa7\x9b\x51\xb9\x5f\x70\x71\xd2\x81\x33\xe7\x3b\xca\xf3\xbe\xc6\xd1\xe8\x7b\x3a\x3c\x3f\x33\x8a\x28\x9e\x9b\xe0\x30\x6c\xbe\xf0\xbc\x20\x87\x46\x8a\xbc\x09\x88\x28\x67\xef\x7b\x28\x9f\x97\xfd\xf4\x2c\x67\xf9\x29\x65\x19\xd9\x02\xdb\xcb\x4d\xd8\x59\xca\x2f\xc1\x62\xdb\xef\x47\xdf\xed\x0b\xff\xcf\x37\x2e\x09\xe9\x97\xb0\x24\xfc\x7e\xc3\xa5\x4f\xdc\x3c\x09\x02\x38\x73\x18\x7f\x47\x79\x7f\x36\xa3\x3e\xfe\x21\xdc\x12\xca\x0f\xa1\xda\x85\xbb\xd7\xdf\x77\x5f\x62\xf4\xdd\xfc\xf7\x7d\x2c\x65\x9c\x3f\x59\x5e\x2d\xd6\xc6\xe6\x5a\xef\xfb\x4e\x53\xec\x6d\xe2\xfd\xe9\xc2\x79\xfc\xa4\xf8\xb0\xe8\xeb\xa3\xe4\x5f\xc2\x94\x70\xfe\x12\xbc\x36\x9b\xbf\x29\x64\x1f\xa3\xfc\x54\x1d\xc4\xb9\xb3\x8f\xf6\x93\x02\x1c\xb8\xb3\x13\xde\x4c\x02\x1b\xab\x78\x3e\x12\xd0\x0e\x0b\x27\xb3\x09\xdb\xcf\xf1\xa7\xa6\x6b\xc7\x5e\xee\x3f\x35\x05\x0b\x29\x44\xa3\xdf\x62\xf5\x9f\x1a\xbb\xd7\xbf\x9f\x59\x38\xf6\xc4\xfd\xde\x47\x14\xd4\xb1\x17\xe1\xf7\x0a\x32\xd9\xc7\x16\x01\xd6\xfb\xe0\xea\xd8\xe7\x9e\xa7\xeb\x7d\x90\xd3\x4a\xda\xad\x5d\xaf\xd0\xdb\x19\x3b\x5a\x08\xc8\x5d\x67\x9f\x9b\xb1\xad\xbd\xf5\x8e\x3c\x7f\x53\x14\x53\xec\x0e\x5a\xef\xeb\x94\x9a\xe5\x37\x8b\xb2\xc9\x2c\xbf\x59\x64\x17\xb3\xfc\xc9\x60\x8b\xd4\x0b\x7d\x74\x9f\x4e\x8d\x7a\x38\x79\xd2\x71\x3a\xab\x83\xa0\x96\x18\x5d\x32\x04\xa1\xc1\xb5\x42\x95\x60\x48\xd4\xc3\xb9\x12\x04\x1a\x3a\x50\x99\x41\xf0\x48\x5e\xb6\xcc\x55\x8f\x57\xe9\x76\x1c\x72\xf0\x20\x10\x86\x6d\x6f\x1b\x35\x64\x1f\x4c\x80\x0f\x37\xa7\x20\x10\x1f\x61\x1c\x4a\x14\xf5\x74\x10\x4f\xc3\x6e\xbf\xa3\xa6\x5d\xd1\x41\x68\x1b\x08\xc2\xc5\x8e\xd3\xfe\xae\xe9\x5d\x86\x35\x3e\xcf\x9f\x14\xcb\x28\x50\xa7\xd2\x51\xcd\xaf\x57\xd1\x63\xf3\x96\x9a\x5f\x40\xc7\xcf\x3c\x15\xfd\x6a\x7e\xbf\x63\x9f\x5c\xc7\x2f\x81\xc6\x9e\xff\x10\x44\x54\x38\xe5\xf9\x41\xd0\x89\xf7\x74\x42\x06\xc1\xb8\x82\xe7\xae\x7a\x7e\xd7\xd6\x3f\xb8\x91\xd4\xb2\xd7\xf4\xc0\x6d\x4b\x82\xce\x50\xe7\x1e\xa7\xf2\xbe\x5c\x74\x8f\xd3\x09\x19\x04\xc2\x41\x8c\x53\x61\x28\x08\xe2\xa1\x9d\xf3\x37\x8b\x91\x5d\x4f\xb7\xe2\x5a\xde\x4f\x80\x8a\x73\xfe\x7c\xe3\xd3\x48\xf6\x74\x52\xd7\xfa\x72\x9f\x7d\x8e\x2d\x81\x07\xc1\x58\x4e\x87\xab\x3e\x08\x9a\x90\xa7\xf3\x27\x8b\x73\xd8\x30\x9c\x12\x30\xd2\x19\x29\xfd\x10\x50\x5e\x9e\x65\x0b\xed\xb5\xfe\x48\xe0\x3f\xf3\xa5\xbe\xcb\xb6\x10\x73\x4e\x82\x68\x76\x69\x4f\x87\xf6\x3e\xd8\x50\xb5\xdd\x83\x6d\x73\xa3\xbe\x4f\x28\x10\x3c\xfe\x28\x1a\x07\x41\x83\xf8\xb4\x27\x76\xdb\x52\x56\x9e\xe9\x27\xc5\xa7\xfb\x50\xda\x13\xa8\x6d\xb1\x6b\xe0\xc7\x2d\x41\x57\x4e\xfc\xa9\x21\x2c\xe3\x14\xef\x35\x5e\xfb\xe6\xbd\x03\xeb\x37\x09\x70\xa3\x91\x8f\x9f\x14\x5b\x8a\x38\xf2\x0f\xe1\xb3\x8f\xf3\x6e\x7d\x7f\x3f\xa7\xe9\x96\xd9\x83\x20\xc0\x70\x4e\xe9\x97\x50\x25\x1c\x3f\x84\x67\xa7\xe8\x3f\x04\xbd\x61\xb3\xac\x25\x08\xdf\x26\xfc\x7c\x74\x19\x85\x20\xe7\x9f\x6f\x00\x99\x18\x84\x9f\x52\x96\x3d\x96\xf3\x6f\x16\xc4\x9b\x91\xf3\x4f\x4d\x37\x12\x5c\x96\x1b\xd5\xf1\x3e\xa2\xb0\x65\xb9\x51\x10\x50\x3a\x8d\x2c\xab\x0d\x82\x7e\x22\xb9\xfe\x66\x21\x48\xf0\x40\xb5\x0b\xe1\x63\x66\xe7\xe6\x79\x2c\x08\xcd\x93\xa3\xe7\xb1\x20\x74\xbf\x31\x7e\xb3\x18\xab\x2c\x2b\x34\xd4\xf1\x82\x37\x99\x8e\xec\x11\xb7\xce\x17\x3b\x99\xe0\xac\x63\x13\xbe\x2e\x40\xa0\xdb\x46\x10\x3c\x6c\x72\x37\x00\xc1\x13\xca\x28\xbb\x83\xae\xf7\x31\x64\x47\xd9\x8d\xbb\xde\x47\x7f\xb1\xa2\x0c\x59\xaf\x97\xcb\xd0\x33\xb7\x7f\x08\x32\x98\x52\x7f\xbe\xe1\x35\x5b\x21\xde\x83\x84\xfd\xd1\xdd\x41\xd7\xcf\xa2\x2c\xbb\x83\xae\xf7\xab\xdb\x72\x69\xfe\x10\x84\x90\x2a\x6e\x92\x41\xd0\xe6\x1a\xe5\x8c\x04\xf7\xb3\x63\xa7\x08\xa9\x6a\x2a\xb8\x8f\x1f\x82\x41\x57\xab\x87\xab\x20\xa8\xc9\x48\xff\x10\xac\x58\xdd\x5c\x3d\xe4\x2e\xf6\xa2\x63\x0f\xc3\xfd\x33\x0b\x6b\xfa\xf9\xa8\x8a\x95\xb1\xc5\xf0\x20\x60\xea\x34\xaa\x22\x63\x7d\x5e\x6c\x08\x4e\x83\xf8\x40\x78\x75\x19\x26\x30\x8c\x04\x21\x68\x6a\xff\x93\xc3\x05\xa9\x95\x9f\x46\x3b\xcf\x5f\xc2\x2d\xe1\xf8\x21\xb8\x17\xb5\xcd\x9f\xde\x17\xb3\xa5\x73\xb4\xbd\x76\x82\x73\x4c\x09\x65\x13\x36\x5e\x7b\xdb\xd3\x3c\x08\x55\xc2\xcf\x37\xc4\x57\x17\x60\x42\x82\xa6\x97\xe7\x6f\x29\xdc\x9e\x44\x8a\xba\x09\xcb\x6d\xa2\xd5\x9f\x2c\x7b\xfd\xb5\x3d\xf0\x21\x81\x26\x09\x8e\xc0\xf7\xbe\xe2\xac\x34\x85\xc3\x20\x60\x68\x7f\x9c\x9b\x75\x7c\xbb\x58\x43\x3b\x42\x58\x46\xf5\x69\x1e\x0d\x20\x88\x41\x74\x9c\x3f\x04\x3d\x34\xfb\x66\x50\xeb\x7d\xb2\x76\xc3\xbb\x3f\x42\x6e\x11\xe9\xc8\xb3\x42\x5d\x2f\x77\xe0\xe9\x20\x5e\xa0\x84\x4b\xc4\xa6\xbd\x76\xd6\xfb\x9d\x9b\xf0\x93\x65\x9f\xdd\x87\xcb\xad\xfd\x68\x7f\x46\x97\x41\x05\x61\xc3\x51\xdb\x96\x76\xbc\x22\x94\xf7\x2d\x5f\x07\xc1\xf8\x52\xdd\x2e\x0c\x82\x5e\x95\xbd\xfc\x7c\x43\xc4\x4f\x83\x71\xbc\xa3\x9d\x3f\xec\xa7\x2b\x2d\x06\xc1\x6d\xb3\x7b\x44\x69\xe7\xfb\x1a\xc4\x78\x4b\xe0\xed\xdc\xbb\xc0\xd8\xc2\x72\x10\x96\x35\x1d\x66\x49\xef\xab\xf7\xde\x70\x27\x81\x60\x90\x45\x27\x5d\x10\x76\x64\xe4\xf3\x37\xcb\xe8\x3a\x5a\xe7\x5f\xc2\x86\x21\x28\x9b\xb0\x57\xf9\x16\x96\x83\xf0\x13\x2c\xfb\x37\x85\x98\x87\xc3\x3d\x30\x08\x3b\x68\x72\xf9\x29\xe5\xdb\xe1\xfa\xe5\x14\x41\x70\xc7\x1f\xce\xa0\x20\xb8\x86\xb7\x38\x1d\x04\x77\xb4\xd1\x7e\xda\xb2\x61\x5b\xb7\xe4\x1b\x84\x6f\x07\xc6\xf4\xa3\x59\x3e\xd0\x9b\x42\x7c\x0b\x89\x88\xb1\x1e\xca\x72\x41\xd8\xf5\x52\x34\x09\xc2\x0e\x1f\x3b\x7e\x3e\xf1\x9d\xbb\x3b\xda\x2f\xc1\x42\xc6\x2f\xc1\x18\x35\x43\xe1\x25\x08\x1b\x14\x61\xfe\x7c\xf4\x13\xc0\x6c\xcc\xdf\x8f\x12\x18\xa1\xf5\x9f\x04\x6b\x07\x65\x55\x76\x09\xc2\xda\xc1\x9b\x4c\x51\xde\xcf\x69\x3b\xf7\x30\x95\x17\x48\xf5\x20\xd8\xc5\xf5\x7d\x84\xdd\x9b\xaa\x55\x5a\x30\x07\x1d\x60\xf6\xa8\xfc\xc8\x2e\x79\x28\x88\x04\x61\x3b\xb1\xd5\x1f\x82\x37\x2b\x63\xee\x2e\xae\xef\xaa\xa6\x90\x3b\xb7\xf6\x3e\xca\xcb\x5b\xe6\x6e\xed\xfd\xb6\x81\x98\x8b\xb4\xf5\xf7\x45\x8a\xc8\x7d\xd7\xb4\xbf\xef\xab\xfd\x53\x6a\x9b\x20\x4b\x9a\xdc\xec\x48\xd0\x52\x28\xcb\xae\x83\x50\x34\x39\x90\x8b\x05\x61\x6c\xab\xd7\x9f\x8f\x7a\x6f\x38\x8f\xf2\xfb\x8d\x5d\xca\x5e\x3e\x21\x34\xf8\x8d\xfa\x53\x31\x61\x75\xe7\xd1\x7f\x09\x6f\xff\x1f\x09\xb1\xe1\x5b\x8a\x42\x54\x10\xc4\x16\xdd\xd2\x5e\x10\xc6\xb6\xed\x29\x3f\x84\xb5\x4d\x4f\xf2\x26\xbc\x73\x1b\x61\xfc\x7c\xe3\xbb\x95\x8f\xe5\x84\x6d\xbc\x6b\xec\xbb\x77\x7b\x7d\xbe\xdb\x42\xf2\xdc\x6b\x72\xc6\xc9\xd1\xcb\x87\xbc\x09\x3f\x56\x01\x4a\x44\x41\xe0\xd6\xeb\xc8\x72\xb1\x20\xdc\x3b\x85\x1f\xbd\x5e\x0c\x22\xe2\xc8\x6f\x96\x77\xeb\x33\x8c\xd0\x24\xc1\x0d\x7f\xec\xb1\x0d\x82\xbc\xf2\x8f\x70\x78\x3b\xb5\x37\x37\xf3\x9f\xec\x6a\x78\xf7\x24\x8e\xc3\xac\x21\xd0\xcb\x2f\x81\x30\xe8\xc7\xe9\xf9\x17\x82\x6a\xd2\xbd\x1e\x83\xa0\xe4\x9b\x7e\x6b\x3d\x54\x98\xec\x25\x1c\x84\x69\xc4\xca\xdf\x6f\x0c\x0f\x7d\x7b\x56\x07\xc1\x70\x55\xe9\x37\xc5\x74\xeb\xd9\x1c\x2d\x4e\x99\x96\xd2\x7f\xab\x7e\x71\xf5\x73\xfe\xd3\x37\xe8\xf5\xca\xd9\x7f\xbf\x41\xac\xee\xe3\x9c\xff\x10\x96\x32\xc7\x6f\xc5\xbc\x72\x4e\xc7\x6f\x0a\xc4\xd8\xdc\xea\x6f\x0a\xef\x70\xf7\xa5\x41\xfb\x5e\xcc\x93\xd3\xf1\xc3\x5b\x3e\x25\xce\x74\xa4\xf6\x9b\x82\x19\x59\xb6\xd0\xde\xeb\x8b\x25\xdc\x29\xb4\xd4\x3b\x7a\xc8\x93\x2a\xda\x65\xf9\x7d\xbe\xda\x92\xe5\xcd\x37\xfb\x7c\xbf\xcf\x6f\xb8\xfe\x7a\x14\xbb\xef\x90\xc6\x2f\x61\xc5\x01\xd6\x61\x89\xf7\xd3\xab\x0a\xf5\x47\x10\x06\x09\xfa\xef\xfb\xa5\xa2\xf8\x37\xc7\x96\x7b\xc7\x3f\x84\xa1\x46\xfc\x37\x4b\x7a\xfe\x07\xbd\x7b\x10\x50\x2f\xe6\x7e\xfe\x43\x90\x3d\xc9\x05\x82\x50\xbc\x8e\x95\x1b\x05\xa1\x7a\x41\x52\x7e\xeb\xc5\xe1\x22\xef\xf3\x3d\x04\xc7\x2d\xfd\xa6\x40\x56\xcc\x23\xff\x7e\x83\xcb\xb8\xfe\x4f\xcd\x89\xdf\xd4\xf3\xef\xbb\x2e\xdf\x5b\xfc\x84\x60\x5b\xd3\x6f\x19\xd7\xae\xd6\x6f\x16\xcc\x32\x72\x57\x3c\x0a\xc2\x6d\x3d\xdb\x6f\xe3\x6f\x17\x63\xfa\x6d\x2b\xd6\x52\x5b\xe3\xcd\xfb\xfd\x3f\x28\xe8\x20\x60\x3c\x33\x7f\xfb\xe2\xdb\x17\x2c\xbf\x0d\xdb\xd6\x4f\xed\x9f\x14\xd4\xb3\xf5\xdf\x32\xb0\x6f\x6a\xff\x24\x58\x3b\x6e\xc2\x4f\xa1\x2a\x43\xf2\x56\x02\x42\xf0\x22\xec\x38\x7f\x09\x0c\xc9\xfc\xed\xbd\x77\x0f\xfc\x6f\xc5\xdf\xa4\xee\x63\xfe\xbe\xcb\x54\x7e\x87\x59\x6d\x76\xce\xb5\xff\x12\x14\xaf\x7e\x47\x00\xb3\xc6\x98\xc1\x3f\x6d\xc7\xd0\x2f\x5a\xf2\x4b\x40\x5b\x59\x8e\x7f\x2a\xfa\x7a\x75\xd9\x7e\xab\xa1\xe3\xc5\xd1\x7e\x8b\xdd\x31\x89\x82\xb0\x06\x56\xc8\xb5\x04\x23\x5a\x83\x5d\xb0\x96\x90\x4d\x16\x31\x26\xce\x0c\x18\xc8\x9a\x1c\x9a\x32\xa6\x83\x8b\x28\x0f\x67\x81\xd3\x2f\x62\x33\xa4\x83\x83\xf0\x9a\xc9\xa0\x00\x47\x8d\x17\x36\xff\x8c\xd6\x6b\x19\x54\x20\xe3\xed\xb2\x26\x07\xbd\xcc\x71\x72\x4d\x42\x8c\x16\x0c\x24\x17\x51\x05\x3a\x22\xd8\x9a\xcc\xae\x02\xd3\x5c\x93\x0b\xc0\x82\xa5\xdd\xc2\xff\xbe\x13\x43\x7d\xe1\x41\x7f\x0a\x10\xb8\x70\x69\x3f\x05\x95\x5a\x13\x4b\x68\xa6\xde\xd2\x5f\x3c\xe3\x0e\xb6\xf0\xe2\x1e\x58\x98\x2d\xbc\xb8\x07\x97\x36\x0b\x2f\xee\x0e\xd0\xd1\xba\x7e\x6e\xed\x48\x74\xa6\x48\x34\x4c\x94\xe3\x7f\x2a\x75\xc5\x89\x62\x94\x90\xca\xd7\x25\x63\xc0\x47\x6d\xe1\xdd\x3d\x2a\xfd\x78\x05\xe3\xe2\x24\xf4\xff\xbc\x73\xac\xeb\xbc\x23\x61\x6c\x97\xeb\x3a\x1f\xfe\xf7\x63\x6f\xfc\xbf\x6b\xf2\xf1\xbf\x25\x12\x47\xcf\x66\x60\xc3\x71\x12\x56\x7a\x5d\x42\xc0\x9c\xfe\x4f\xfc\xed\x94\xf8\x9f\x38\x7f\xd9\x0c\x82\xb0\x36\x5f\x84\x4a\x35\x03\xf0\x0c\x99\x4e\x10\xc2\x34\x56\xf3\xc2\x79\x7c\x34\xc6\xef\x4a\xc0\x12\x59\xbb\xa4\xd7\xab\x05\xbc\x98\x19\xc5\x18\xe1\x54\x7e\x66\xae\xfc\x97\x5e\xe5\x39\x5b\x1a\x12\x5d\xc6\x90\x74\x5d\xb2\x3a\xce\xfc\xeb\xe2\x16\x25\xa3\x88\x58\xf8\x9b\x9f\x19\x5b\x8e\x85\xbf\x79\x67\xbf\x58\xb8\x9b\xc7\xc7\xa8\x22\xda\x69\xc3\x42\xac\x8b\x43\x66\xc6\x02\x60\x5d\x68\xa5\x73\xb6\x96\x38\x51\x64\xac\x1b\xd7\xa5\xeb\x23\x11\x72\xd7\xe5\xc5\x1e\xfe\x47\x0b\x87\xf5\x78\xb1\xcc\x65\x1e\x3e\x5d\x76\x07\xd3\x9c\x62\x73\x9c\x10\xc5\xe6\x64\x0a\x2d\x36\xa7\x9a\xcc\xe6\x74\xda\xb6\x17\x7b\xa2\x50\x6c\xb3\x01\xd7\x5c\x97\x8b\x1e\xfd\xcc\xba\x8a\xcd\x29\xa6\xd2\x66\x66\x52\x1b\x6c\x56\xfa\x4e\x65\x6b\x3a\x3d\x58\x9c\xf3\x4e\xb6\x62\x6b\x8a\x45\xda\x9a\xec\x8b\xad\x99\xd4\xb9\x3a\x38\x95\x0f\x28\xec\x64\x3b\xd7\x7d\x04\x05\xd3\xba\xaa\xad\x71\xd0\xab\xad\x29\x74\x47\xdd\x83\xe3\x8b\x0b\xbd\x52\x83\x6a\x73\x9c\xa2\xea\x38\xf6\x50\x55\x47\xa7\xfb\xe2\xe8\x54\x3f\xe0\xd6\xb4\xf3\x18\x03\xd8\x56\xd7\x3d\x06\xf4\x87\xe0\xe8\x5c\x58\xaf\xab\x59\x6b\x57\x6b\xdb\xb5\xf6\x17\x6b\x0d\xe3\xba\xbc\xb1\xe6\x62\x78\xe1\x66\x1f\x5f\x63\xa8\x70\xfd\xac\x98\xfe\xae\xab\x59\xeb\x64\x32\x07\xa1\x9b\xcc\x5a\x3b\x59\xb0\x9c\xe1\x7e\x65\xe1\x8f\x7f\xea\x7f\xb8\x2e\x19\x75\x72\x46\xb0\xd3\x66\x76\xa8\x85\x97\xf3\xb4\x6f\x38\x4f\xab\xaa\x5c\x98\x9c\x7a\xcf\xb0\x3e\xdc\x88\x38\x55\x2f\xae\x16\x3b\x27\xa6\xb5\x8e\xf3\x5f\x7f\x61\xc1\xb7\x30\x3f\x1b\xd8\x16\x2f\xac\xcf\x38\xa5\xaf\xb5\x23\xad\xf2\xaf\x11\x16\xf9\xd7\xe0\x72\xfc\xdb\xc9\x67\x62\x02\x55\x0d\xfe\x05\xf9\xcd\x7c\xcf\xbf\xfe\x72\xbd\xaf\x03\x8c\xf5\xcc\xbf\x5f\x50\xfd\xc4\xfa\xd7\x5f\x80\x99\x2d\xae\x6d\xd0\x42\x2c\xd4\x68\x04\xeb\x5a\x5c\x4b\x3a\x99\x31\x2c\xe3\x50\xb9\x30\x2b\x0b\x11\xe6\x7f\x62\x7b\xf5\x7f\xe5\x7a\x98\x7f\x11\x20\x69\x61\xfd\x25\xb7\xc1\xf6\x8b\xfd\x7a\x61\xf9\x05\x2a\xe5\xe2\x92\x08\x55\xcb\x5a\xb1\x1e\x51\xc8\xad\x55\xe3\x0b\x0c\x30\x72\x36\xf7\x94\x0b\x83\x29\x10\x51\x16\xe6\x52\x6c\xf6\x6b\xe1\x6c\xc8\x4c\x5f\x5f\x8e\x2f\x50\x44\x1c\x9f\x07\xca\xef\xb5\xb0\x45\x3c\x4d\x41\x94\xfa\xff\xfb\x0b\x97\xff\xb8\xfe\xcb\xff\xf6\xfd\xdb\xdf\xc7\x11\x4d\xfd\xfb\x10\xee\x3f\xde\xa3\xec\xbf\x8f\xa3\x13\xe5\x3a\x08\xd7\x09\x81\xa0\x37\x07\x49\x42\x0e\x8a\x07\x36\x3b\x1d\xca\x23\xc5\x10\x23\x41\x79\xfc\x2c\x41\x65\xa2\x5b\x0e\xd0\xcd\xff\x3e\x0e\x6d\x4c\x8e\xa0\xbc\x53\x8a\xfa\xa0\xa0\x7c\xe6\x32\xce\x40\x86\x62\xae\x65\xbc\xba\xa0\x2c\x73\xe1\x7e\x18\x13\xe9\x38\xe3\x54\x1d\x8f\x69\xa0\xb6\x28\x1f\x84\xc6\x78\x50\x47\x14\x01\x47\xf2\xeb\x60\xce\x9d\x9a\xcd\x1d\x40\xcb\xc5\x83\xbc\x44\x63\x3d\xf2\x41\x8b\x81\x62\xc3\xa0\xec\x00\x7c\x2d\x1e\x2c\xae\xa8\x3b\x60\x68\xf1\x30\x5f\x2c\xb7\x03\xbc\xb3\x78\x7c\xd2\x12\xb4\x05\x4d\xe7\x79\x94\x1c\x07\x70\x5f\xf1\xb8\x4d\x47\x09\x21\xaf\xc6\x63\xc7\x8e\x95\x66\x19\x04\x1f\x3f\xb0\xb4\x38\xf2\xb4\x6e\x68\xec\xb1\x6b\x3f\x40\x58\x8a\x47\x54\xe5\x30\xd5\xf5\x48\xe2\x30\x83\x99\xeb\x91\x6f\x73\xa2\x5d\xc1\x7a\xf3\x00\xda\x28\x1e\xe4\xac\xd4\xed\x31\x27\x78\x44\x07\x46\xaa\x07\xa0\x3a\xf1\x78\xa4\x75\x68\x9f\x34\x4b\x08\x16\x71\x80\x91\x13\x8f\xca\xe7\x26\x24\x3a\x0e\xd8\x99\x13\xb9\xee\x00\x76\xe6\xef\xa3\xc0\xd3\x09\x6f\x7f\x80\xed\x12\x0f\x0b\x88\x9d\xf6\x00\x98\x25\x1e\x16\x10\x6c\xfc\xfc\x62\x39\xc5\x63\x19\xa1\x71\xfe\xdb\xdf\xc9\xf9\x9b\x0e\x8c\x3f\x83\x3d\xa7\x23\xf6\xe8\x78\x80\x2a\x31\xa0\x4c\x29\x17\x26\x63\x41\x89\x8d\x2b\x1e\x40\xf8\x71\x0e\x4b\x47\x2f\xd0\xfa\x0c\xa6\x27\x69\xf8\xf1\x01\x29\xb6\xe6\x04\xc0\x77\x3c\x0a\xa9\x2a\xa4\x26\xe9\xfa\xd7\x5f\x13\x98\xad\x04\x5c\x77\x3c\x3e\x52\x9d\x41\x6a\x7c\x0b\xc0\x6d\x6d\x2b\x12\x80\xdb\xf1\x08\xe1\x09\x7f\x94\x74\x76\x53\x75\xa2\xea\x04\x93\x4b\x60\x63\xc7\x83\x54\x31\x6b\x13\x50\xd4\xf1\xd0\xcb\x0a\x8a\x75\xc0\x42\x30\x71\x5a\x4d\x40\x4e\xc7\x63\x4a\xe3\x63\x0f\x8d\x04\x2a\x79\xe0\xa3\x9f\x52\x48\x50\xf1\x70\x4f\x09\xd1\x26\xa5\xd4\xa5\x61\xc3\x2c\xe5\x96\xe2\x01\x26\x28\x8d\x4f\x25\xd5\x01\x79\xd3\x9a\x34\x02\xff\x9f\x50\x2e\x29\x00\xac\xe7\xa0\x74\xc6\x27\x71\x84\x4b\x9c\xe9\x12\x00\xa7\xf1\xc0\xa0\xb4\x1e\x7c\x6b\x98\x8e\x70\x02\x21\x14\xa4\x34\x2c\x11\x25\x74\xc5\xe4\x27\xa5\x61\x4e\x1c\x92\x0a\xdf\x1f\x96\xc8\x8d\x66\x2d\xb1\x34\x53\x7a\xa5\x71\x1e\xab\x9d\xae\xce\x07\xed\x66\x6d\x47\xba\xe8\x58\xf0\x01\xe3\x71\x05\x03\x8e\xef\xe7\xf9\x42\xc1\x0d\x20\x11\x2b\x3a\xb9\xe2\x12\x68\x66\xa7\x78\x80\x09\x04\xb3\x78\xc4\xc0\x9d\x7e\xec\xba\x25\xbd\x90\xc8\x79\x33\x70\xac\xc5\xb3\x61\x24\x97\x72\x70\xcd\xbf\x93\x78\x60\x0d\x05\x6d\x2a\x4e\x96\x42\x08\x47\xd0\x68\x52\x71\x7a\x96\xc1\xa6\xc8\x94\x2a\x30\x88\x54\xa6\xb6\x92\xf1\xb1\x02\x7f\x48\x65\x6a\x28\x1f\x5c\x35\x95\xf9\x40\xbb\x63\xcc\xb9\x7d\x4c\xe5\xa6\xd7\x0a\xba\xc4\x03\x71\x23\x95\xd7\x32\x61\x85\xa2\xc7\xa4\xf2\xd1\x84\xc2\xb1\xeb\xe0\xe2\x25\x95\x55\xa5\xc1\xec\x71\xd5\x4a\xf5\x20\x6f\x25\x44\x5c\x89\xbd\x2f\xd5\x46\xc7\xd5\x16\x52\x3f\xca\xa2\x54\x3b\x95\xab\xd1\xaa\x41\x24\xa1\x54\x87\x24\xc0\x67\x71\xb2\x48\xc0\xeb\xc4\xa3\x92\x31\x8a\xac\x56\x4d\xac\x96\x46\x8c\xb2\x04\x2a\x4a\x3c\xf8\x18\x5d\xd4\xac\x45\x3b\x20\x51\xd9\x06\x03\x4a\x0d\x75\x6f\xc3\xf4\x33\x01\x88\x12\x8f\x97\x65\x17\x65\xb6\x46\x4f\x36\x04\xa6\x84\x23\x52\x6a\xce\x53\x60\x28\x62\xac\xa2\xd0\xee\x3c\xed\x9d\x46\x8d\x60\x37\x84\xe8\x8b\x07\x3b\x1d\x8a\xa3\x34\x17\xd3\x8d\x38\x61\x41\x8b\xc6\xdf\x4e\xb7\x1b\xa1\x26\x48\xee\xcc\xee\xc3\xff\x57\x5b\x73\x22\xf4\x47\x3c\xaa\x58\x0d\x51\xf7\xdb\x45\x41\x8c\x8d\x58\xd3\x51\x51\x2e\xdf\xe2\xf1\xaa\x13\x89\x74\x1f\xbb\x76\xfa\x3c\x7a\x12\xf9\x20\x7d\x4e\xb4\xef\xf1\x56\x31\xe4\x9f\x84\x9d\x7e\x3c\xea\xbf\xfe\x2a\x04\x45\x49\xd8\xd1\xc7\x23\xfd\xeb\xaf\x52\xe3\x3c\x93\xd6\xbd\x20\x19\xfc\x28\x78\x76\x5a\xaf\xa9\xde\xf4\x63\x8e\x9e\xb8\x9c\x8d\x47\xfd\x31\x4c\xce\x07\x23\x92\x8f\xd8\x41\x38\xa3\xe5\x83\x6e\xc8\x47\x74\x03\x66\x5a\xf9\x88\x5d\xf5\xef\x7c\x80\xc2\x3d\xc8\x45\xa5\xf2\x01\xfe\x76\xf0\xf4\x7c\x30\x8c\xf9\x70\x18\xa9\x7a\x3e\xce\x9d\x6f\xca\x47\x66\xd0\x82\xe9\xc7\x83\x2e\xc3\xb0\x37\x1f\x71\xe2\xf9\x3b\x1f\x93\xc3\x2f\xdf\x9f\x7e\x1f\xec\x26\x90\x47\xf2\x11\x4c\x32\x1e\x04\x68\xe1\x44\x95\x8f\x79\x4b\x0b\xc1\xac\x50\x79\x98\x41\x3e\x82\x19\x60\x74\x96\x95\x8e\x32\xf2\x09\x46\x33\xf9\x58\x5d\xca\x05\x87\x25\xd1\x32\xdb\x22\xdb\xf9\x6f\x7f\x67\x19\x78\x3e\x31\x30\x6d\xc4\x84\xce\x20\xad\xc7\x63\x3a\x55\x1b\xb4\x4b\x9a\xe9\x62\x15\xe5\xc4\x8e\x97\x81\x17\x3f\x0f\xcc\xe2\x73\x4a\x97\xb4\x38\x56\x73\xfc\xc8\x29\x53\xb3\x84\x37\x7f\x3b\x21\xb1\xcf\x66\xf0\xae\x07\x7e\x1e\x39\xc5\x9e\x1b\x0f\x18\x01\xc6\xd3\x19\xb4\xe8\x78\x50\x00\x51\xdf\xb3\x4c\x35\x27\xec\xeb\x0e\x07\x17\x74\xe5\x78\x20\x51\x94\x41\x45\xae\x22\x6d\x50\x6a\xb4\x2b\xdd\x56\xe4\xde\x45\x50\x93\xd7\xac\xf0\x90\x03\xb7\xb4\xac\xd8\x95\x15\xbb\x4e\x44\xaa\x9c\x11\x33\x72\xc6\x62\xfa\x24\xba\x66\x06\x6f\x36\x1e\x04\x59\x27\x5a\x62\x56\xcc\xca\x00\xc8\x06\x8d\xbc\x69\x48\x9b\xd0\x82\xef\x65\xd0\x5c\xff\xce\x99\x03\xfe\xc9\x2d\x4b\x06\xb0\x35\x1e\x04\xc7\x20\x16\x59\xce\xd9\x74\xc5\x74\x8c\x45\x2e\x59\x5a\x93\x46\x5d\xca\x2d\xed\x81\x46\xf7\xe5\x62\x5d\xaa\x79\x0b\x79\x6b\x95\x66\xde\xe0\x56\x19\x59\x2f\x1e\x30\xf4\x90\x5a\xb3\x12\x5f\xce\x83\x4d\x64\x52\xe3\x61\x4d\x06\x91\x1b\x6c\x18\xfc\x3c\xb3\x25\xf5\x76\x90\xd1\x6e\xcf\x57\xf0\x4c\x22\x6f\xe4\xfc\x32\x0f\xc1\x89\x3c\x4f\x82\x83\xe7\x8a\x70\x9f\xab\xd1\x86\x88\x15\x91\x41\x0c\x88\x87\xb6\xa6\x21\x3f\x16\x2c\x8a\xe2\x51\x55\x24\xb5\xa0\xa5\x0c\x4d\x38\x28\x34\xf7\xe5\x8b\xf9\xf6\x77\xe1\x0c\x78\x16\x42\x38\x15\xee\xe4\xe3\x71\x4a\x4b\x41\xeb\x7e\x0f\xf0\xd4\x13\x4f\xcb\x82\x63\xdd\xdf\x85\x1b\x30\x4d\xf0\xcb\xc7\x86\x59\xf4\x87\x43\x45\x53\x70\x71\x89\xc7\x43\x4e\x6a\xc2\xf5\x42\x3c\x0c\x5a\x12\xe2\x62\xc1\xe7\x22\x1e\x1c\xc0\x39\x4c\x97\x75\x9b\x17\x7c\xed\x93\x8d\xaf\xc0\xc2\xe2\x71\x4a\xab\x41\xfb\xa8\x1d\xa7\xa7\xc2\x6e\x5e\xe5\x5b\xf5\x38\x6c\x44\x1c\x02\xaa\x72\x65\x85\xc5\xa4\x13\x7e\x53\x8f\x7a\x42\x03\xfe\xe1\xc4\x84\xa2\x1e\xc1\x9b\xe3\x51\xa0\x15\xbe\x37\xcd\x3b\xb5\xfc\x0f\xf1\xa0\x1e\xb1\xf8\xff\xae\x70\x90\x48\x07\xed\x92\x86\x7b\xdf\x09\xae\x42\x3d\xee\x4b\xda\x76\x12\xa0\x8c\x10\xd9\xe3\x71\x45\x95\x25\xbd\x0f\xa4\xd7\xd6\x06\x6b\xad\x27\x4b\xaa\x9e\xb1\xa4\x64\xf8\xf5\x3c\x1e\x49\xdc\x9a\x61\x00\x56\xcf\x53\xda\x69\xd6\x10\xd3\xeb\x89\x04\x58\x4f\x54\xa4\x27\x51\xf7\xeb\x99\x4c\x97\x4c\x17\x32\x48\x3d\x33\x35\x3e\x63\xd4\x0b\xfb\x51\x45\xc4\x8d\x47\x54\x8e\x6d\xb8\x9e\xb1\x99\xc7\xa3\x05\x29\x51\xc0\x65\xaa\x18\xf3\x82\x57\x63\x3d\x6f\xab\x1b\xe7\xcb\x42\x3c\xcf\x7a\xbe\x74\xe6\xf9\x3a\xeb\x62\xe6\xd4\x64\xab\x12\x8c\xa2\x60\xb6\x53\xe5\x76\x35\x19\xcf\x80\xd3\x64\x4d\xcc\x9d\x9a\x62\xee\x14\xc4\x8d\x9a\x62\xce\xc4\x43\x97\xa2\x19\x1d\x97\xac\x1b\x10\xf4\xe9\x84\x79\xd6\xc4\x01\xaa\x02\x06\x5f\x92\xa5\x22\x32\x55\x31\xdd\xcf\x74\xd4\x3f\x6e\xe0\x35\x39\x72\xc9\x91\xc3\x1b\xb2\x82\x1a\x1e\x8f\x19\x5f\x8e\x33\x6e\xcd\x07\xc9\x32\x6a\xfa\x82\x86\xa7\x66\xbb\x1f\xe6\x95\x4e\x7b\x0c\x88\xea\x78\x3c\xd2\xa2\x56\x70\x8f\x78\x58\xab\x38\x0b\xd4\x8c\x8c\x5f\xb3\x11\xb1\x31\x83\xab\xf9\x65\x02\x0a\x21\x7b\x22\x55\xd5\xe2\x70\x96\x18\xce\x42\x54\x97\x0a\x58\x68\x3c\xcc\x4a\x8d\x41\xac\x8c\xc7\x47\x56\xfa\xb1\x70\x6c\xae\xe5\x8b\xf1\xe4\xac\x54\x15\x01\x6b\xd5\xfb\xc0\x56\x54\x27\x5b\xe5\x42\xec\x04\x6d\xa7\x56\x4e\x4b\xb5\x12\x40\x05\x05\x7b\xad\xf5\x92\x24\x8a\xd5\x88\x12\x2a\xec\xab\x82\xb6\x17\xb4\x68\x6c\x63\x37\xa8\x8d\xeb\x8b\x82\x13\x7c\x6d\x27\x03\xdf\x8c\x87\x47\xfc\xcc\xda\xe0\xd4\x15\x80\xb7\x10\x0c\xc8\xdb\x4c\x07\x60\xda\x09\x5b\xaa\xad\x4b\xe3\xae\xbb\xe0\x65\x5e\x9b\x23\xdf\xb0\x4e\x2f\x25\x4e\xd8\xb5\xd9\xda\x46\x94\xc3\x13\x49\xb0\x02\x45\x14\x0f\xbd\x0d\x82\xb9\xd4\xee\xc4\x04\x5c\x28\xd2\xc5\xf7\x00\xe6\x89\x07\xf7\xd8\x18\xf2\x55\x00\x76\xe2\x01\x3b\xc4\x86\xae\x02\x8f\x13\x0f\xfc\x58\x50\xea\xd7\x9e\xbb\xb4\xf1\xaf\xbf\x0a\x5e\x86\xb5\xe7\x57\x12\xcb\x17\xeb\xd5\xda\x0b\xd5\xeb\x5a\xb6\xe3\x42\x5d\x81\x59\x89\x87\x9e\x1e\xb1\xa9\xd5\x3e\xcd\xab\x47\x33\x6e\x5c\xb5\x3b\x2f\xc0\xb3\x28\x25\xd8\x6b\x05\xea\x21\x1e\x5c\x6e\x61\x6b\x56\x87\xd3\x6c\x38\xcd\xb8\xf5\xa9\x03\x91\xa0\x8e\xa1\xab\x48\x88\x43\x75\x0c\xb8\xc1\xf0\xb6\x1c\x97\xc7\x3a\x10\x13\xea\xb8\xec\x15\xe6\x0f\xd1\xc8\xe3\xa1\xbf\x07\x1c\x67\xac\x5b\xda\x8b\xdc\x19\xad\x25\xda\x77\x3c\x1c\xb4\x90\x3a\xea\x74\xd6\x4e\x66\x2d\x76\x5d\x15\xd9\x3b\x1e\xcd\x64\x31\xde\xb3\x4b\xd3\x75\x81\xfb\x8f\x4a\x6c\xe1\x78\x04\x63\xc2\xbe\xab\xce\x8f\x8a\xcc\xcf\x6e\x87\xf9\x5f\x7e\x0e\xbd\x7d\xc1\xe9\xa1\xa2\x0e\x8f\x47\xd5\xd7\x3f\xfa\xe4\x92\x7f\x5f\x97\x0e\x16\x47\xb4\x9f\x50\x92\xf1\x08\xa6\x56\x99\xa0\xb7\x93\x9b\x70\x7f\x85\xa0\xf0\xf5\xee\xcc\xe3\x5b\xa3\x53\xbc\xf3\x2a\x91\xea\xe2\xc1\x6e\x50\x32\xe9\x2e\x78\x85\x91\xe3\x4e\x3c\x6b\xea\x2d\x8f\x24\x98\x5b\xd0\xa2\xad\xb7\xed\xba\x5f\x23\x11\x84\xc4\x51\xf1\xb2\x8a\x47\xcc\x1d\xb4\x9a\xf5\xc9\x7c\x8e\x60\x4d\x05\xad\x64\x25\x5a\x50\x3c\xb6\xe7\x09\xc9\xd8\xac\xeb\xe3\x66\x8d\x68\x5f\x9f\x45\xa9\x04\xe2\x49\x27\x3e\x8f\x95\xa8\x29\x7f\x57\xe2\xa5\xa4\xb3\x84\x9c\x5e\xdf\x4e\x4d\x88\x4a\x92\x4e\x7c\x70\x2a\x71\x31\xe2\x11\x42\x8d\x95\xc3\x9c\x2d\x1e\xc8\x17\x5c\x42\x55\xec\x6d\xe2\x11\x7c\x81\x13\x7a\xfd\x2a\x7d\xf2\x55\xfb\x84\xd9\xf9\x35\x66\xc9\xa7\xd2\xba\x86\x40\x54\x3f\x39\xd4\xd7\xf4\x5b\xa1\xdb\x3f\xc7\xff\x8b\xf1\x2f\xe8\x48\xaa\xe7\x9f\x8a\xd3\x7a\x64\x8d\x46\x7c\x0f\x0d\xc3\x58\xb5\xa0\x3f\xa8\x38\x96\xc7\x43\x25\x24\x53\xe2\x43\x7f\x50\xb1\x46\x29\xe8\x60\x2b\xd6\xab\xf1\x98\x90\xa2\xbe\xcb\x7d\x54\x2b\xcd\x52\xe1\x13\x4b\xa6\xbd\x64\xda\x35\x24\xdd\xba\x64\x81\xb8\xcf\x16\x2c\x37\xea\xb2\xd3\x97\x9d\x5e\x61\x09\x0b\x65\x41\x5d\xb8\xe9\x9d\x95\x85\x88\x51\x7a\x3c\x36\x8d\xcf\xb9\x86\xb5\x8d\x55\xd4\xaf\x58\x29\xc4\x03\x2c\xdc\x01\xe9\xa3\xf9\x5a\x53\x75\xae\xd5\xda\x41\x4d\xda\x51\xbb\x81\x06\x7b\xd0\xa6\x34\x42\x25\x60\xfc\xd5\x14\x37\x1a\xe2\x46\x3a\x6b\xcb\xd0\x3e\x69\x4b\x5a\x0d\xda\x32\xeb\x22\x6b\x8b\x12\xce\xe0\xfd\xf1\xf8\x82\x14\x6b\xae\x9d\xac\xea\x76\x62\xd3\x58\x2c\xf4\xac\x03\x5a\x2c\x96\x42\x0c\xfe\x76\x72\x0c\x69\xe7\xb0\xa9\x71\x46\x6a\x27\xb2\x55\x3b\x95\xad\xf0\x3f\x6a\xe7\xf4\x73\xca\x56\xcc\xeb\x76\x3e\xe6\x55\xcc\x03\x93\xaa\x9d\x56\xf8\xdc\x15\x9e\x7c\xef\x7b\xa0\x7d\x06\x5a\x9c\xf3\x8f\x9b\x7a\x4b\x1c\x57\x5b\x3a\x62\xdc\x09\x0a\xdc\x90\x3a\xe2\x11\x4c\x94\x68\xb1\x2d\x0d\x9a\xcd\x79\x29\x19\xaa\xb4\x25\x2b\x9a\x88\x62\x81\x91\x45\x53\xa8\x68\x89\x08\x8c\x27\x43\xd7\x12\xd3\xb4\x71\x5e\x4a\x27\x30\x7d\x0d\x5d\x71\x3c\x70\x3d\x69\xb1\x15\xb4\x5c\xf8\x1c\xc7\x92\x58\xa6\x51\x13\x40\xf1\xe3\x81\x81\x13\x21\x67\x5a\x66\x3e\xb7\xac\xa3\x0f\xaa\x80\x96\x3f\xbf\xf7\xf9\xbd\x38\x69\x34\x80\xd8\xe3\x31\xcd\x1b\xfd\x53\x50\x21\xb6\x62\x24\x1e\xdc\x01\x5b\xb1\x7e\x65\x2f\xa3\x98\x5b\xad\x3c\x7c\xaf\xa0\xc3\xea\xf8\x47\xb6\x82\xba\xbd\x95\xef\xfc\xd7\x5f\x95\x48\x15\x0d\xdd\x52\x3c\x2e\x41\x0f\x23\x6b\xb5\x3f\xeb\x21\x2d\x78\x7c\xab\x88\x21\xad\x06\x23\xae\xf8\x35\xb4\x9a\x1f\x49\xaf\xc9\xa2\x15\x80\x46\xc7\x23\x47\xb2\x60\xa3\xad\x5a\x68\xb5\x50\xea\x56\x97\x1f\xc3\x51\xf7\xe4\x66\xab\xd5\xf5\x49\xb3\x8f\x83\x63\x34\x25\x89\x86\x24\x91\x4e\xee\x84\x5a\x63\x2b\x68\x2d\x78\x53\xe5\xf4\xd1\xc0\x71\x8d\xc7\x23\x92\x67\x7c\xae\xc1\x46\x1b\x5a\xa4\x4a\x70\x93\x06\xba\x6a\x3c\x5e\x9d\xb8\xc8\xda\x4d\xc6\xc1\xa5\x71\x9a\x6d\xc0\x89\xc6\x03\xeb\x31\x7c\x23\x1b\xd8\x9e\xf1\x80\x67\x70\xeb\xd5\xda\x43\x5b\xdb\xc3\x56\x48\xdc\xee\xd6\x13\xb3\x07\x8c\xbe\x7a\xe6\x48\x06\xce\x5b\x3c\x4a\x90\x82\x51\x35\x70\xb7\xe2\x41\xcf\xe1\x70\xd6\xc0\xec\x89\x07\xe7\x1b\xf0\x30\xdb\x68\x0b\x5a\x67\xcd\xf4\x1a\xb5\x1b\x8e\xff\x98\xba\x5e\xd1\x58\x30\x63\xe2\x71\x4b\x23\x1d\x87\x8f\x36\x3c\x7c\x60\xca\xda\x06\xc7\xaa\x26\xe8\x49\x1f\x09\xda\xb2\xdc\x65\xb9\x4c\x0a\x2c\x2a\xe2\x61\xb9\xac\xf3\xd9\xa9\xcb\x24\x8e\x4c\xe1\xda\xac\xcd\x97\xd6\x4e\xcc\xfb\x4a\x0b\x8e\xdb\x26\x3c\xad\x4d\x79\x1a\x2e\x8c\xed\x72\x35\x7a\x3b\xdf\x31\x45\x6d\x5c\x1a\xc7\xc3\x72\x43\x38\x6d\x17\x9a\xe3\x76\x11\x85\xe6\x04\x26\xaf\x5d\x88\x48\x8d\xad\xfd\x2c\x58\x0c\xb4\xeb\xf2\x7b\x57\xcc\x32\x54\xe6\x8d\xb8\xe3\xf1\x38\xcd\x9a\xa1\x7d\xd2\x96\xb4\x18\x70\xc2\x7d\xc7\xc3\xe5\xe3\xe7\x5e\xa6\x14\x01\xbb\x23\x5d\x74\x1f\xc1\xad\xe3\x61\x95\x63\x2b\x6d\x84\x8b\x8e\x87\xd5\x83\x83\xdc\x07\xdd\x72\x63\xe0\xd1\xb1\x77\x6d\x84\xe8\x8d\xc7\x8c\xea\xc1\xfd\x6e\x0e\xc3\x0d\x31\x23\x8a\xe5\x73\xf6\x28\x91\x7a\x0d\xa6\xd6\xee\x29\xe9\x62\x03\x1f\x89\xac\x36\xf6\x26\x22\xc0\x09\x52\x73\xbb\x1d\x70\xe2\xd4\x1a\xfd\xa9\x11\x25\x36\x1e\xd3\x64\x54\x8e\xdb\xa4\x76\x13\xfb\xfc\x04\x4a\xb8\x11\xdc\x35\x1e\xba\xdd\x4d\xf2\x7e\x36\x4c\x17\x38\x6c\x61\x1b\x31\x39\xe3\x51\x88\x2d\x13\xd3\xf1\x71\x72\x1b\xf1\xd2\x58\x61\xed\x91\x6d\x11\x27\xf0\x2c\x5c\x30\xb4\xd7\x74\x6f\xf2\x73\xb4\xe2\x75\xeb\x78\xf5\x9a\x47\x7d\xd3\xbe\x42\x95\xb5\x41\xed\x18\xc7\xb6\x8f\x13\x62\xd3\xc7\xa8\x13\xcb\xb8\x7d\x5c\xf0\xb4\x0f\x93\x81\x4e\x14\xe2\x46\x50\x9e\x78\x70\x04\x72\x7b\x52\x4c\x68\x88\x09\xb5\x30\x14\x4a\x09\x6d\xdb\xac\xd6\x03\xda\x67\xd6\xcf\xac\x70\x9f\xc5\x5d\x41\x5b\x22\x84\x00\x74\xdf\x96\x53\x65\xd9\x53\x38\x77\x75\xef\x62\xfb\xa1\x55\x01\x3c\xa4\x1f\x1c\x88\xfb\xc1\x66\x5f\x30\x78\xeb\x07\x53\xaa\x7b\xb5\x3a\xeb\x19\xe9\xce\x38\x0d\xc4\x03\x0b\x9e\x58\x68\xfd\x64\x73\xe8\xa7\x11\xf4\x31\xba\xed\x27\x9a\xdd\xce\x7e\x99\x54\x6a\x75\x77\xb8\xce\x0e\x97\x54\x6a\xf5\xc4\x06\xd4\x53\x70\xe1\x8a\x1a\xaa\x27\x4e\xfe\x3d\xc5\xc9\xbf\xb6\x98\xef\x3d\x15\x49\xa2\x63\xd7\x44\x32\x54\x5f\x3d\xa1\xfa\x2a\x5c\xd1\xf5\xd4\xa8\x49\xd2\x15\x85\xa8\x19\x3d\x75\x4b\xc0\x54\x54\x15\x59\x4f\x36\x2c\xb9\x56\x88\x42\xdd\x33\xba\xa9\x9e\xd5\x4d\x61\x24\xdf\xbd\x8d\xed\xde\xc6\x0e\xc2\x52\x76\x6f\x59\xbb\xb7\xac\xb3\xe6\xf1\xc7\xad\xbd\xe7\x42\xb5\x50\xe0\x55\x34\xbe\x3d\x3b\x04\x59\x21\x17\xcf\xbe\x9e\xad\x7d\xde\xb5\x8f\xd3\x6f\x57\x99\xd7\xf3\xb0\x95\xb1\xa1\x76\x14\x74\x7f\xf7\xcc\x01\xa1\x00\x90\xd6\x0b\xc7\xc1\x5e\x38\x0e\x96\x11\xdc\xa4\x17\xb4\x68\x71\x20\x93\x46\x3a\x76\x94\x5e\x88\xe0\x79\x02\xd9\xd0\x8b\x65\x14\x2d\xf9\x47\x9c\xff\x7b\xe1\x38\xd0\x8b\xe0\x07\x98\x6b\xf7\x02\x93\xed\x25\x98\x4a\x05\xab\xb4\xb3\x6d\xc6\x43\xef\xba\x90\xae\x7b\xb5\xc3\xab\x98\xdb\x84\xc1\xea\xb5\x9b\x4e\x4f\x24\xf4\x59\xbd\xc2\x27\x7b\x8d\x62\x2b\xe6\xb7\xbd\x22\xc9\xf4\x8a\xc8\x55\xf0\x07\xe8\xd5\x99\x54\xb9\x5d\x18\xa8\xbd\x3a\xf8\xf6\x7f\x77\x91\xed\xc7\x69\xba\x65\xde\xe0\x75\x15\xb9\xb9\xbb\x1b\x77\x76\xe3\xca\x75\x63\x6f\x27\x6d\xe5\xfa\xe6\x2c\x30\xf1\xde\xce\x5b\x9a\x1e\x81\xcc\x86\x86\x32\xbc\x83\x58\x5f\x7b\x48\x9c\xbd\x71\xdb\xdb\x9b\xd1\x2c\x89\xa6\xd4\x1b\xf7\xbd\x21\x1c\x92\x8c\x12\x50\x08\x74\xd0\xd4\x2b\xce\xcd\xdd\x5b\xa0\x0e\x48\x7a\x75\xa6\xb2\x2f\xc7\xe3\xf5\x63\xd1\x02\x70\xb8\xe3\x41\xb2\x90\x23\x7b\x83\x6d\x76\xa0\xb4\x53\x22\x06\x50\x07\x4b\x3b\x1e\x4c\x54\x10\x1d\x3b\xc0\xd9\xf1\xc0\xb6\x88\x6b\xc2\xde\x6e\x4b\xbd\xfd\x5c\xcc\x5d\x20\x7f\xe3\x41\x30\x49\xd7\x07\xda\x82\x78\x84\x28\x82\xcd\x6e\x57\x3f\xd0\x05\xd0\x65\x83\xed\x20\xd7\xc6\x83\xcb\x39\x50\x55\x3a\x18\xb4\xf1\xe8\x7e\x8d\xac\x1c\xde\x3a\xd0\xb1\x67\xc1\x06\xa1\xab\x33\xe8\x80\xb2\xa6\x84\x6f\x4d\xef\xb6\x5f\x44\xd3\x89\x20\xdd\x15\x28\x3a\x02\x45\x05\x4f\xbc\x83\x54\x19\x8f\xa5\x6f\x66\xf4\x09\xe8\x81\xf1\x80\x7b\xe1\xd7\xde\x07\xf7\x9a\x7d\x18\xe1\x9e\xc8\x23\x1d\x20\xb5\x78\x38\xfd\x27\xe9\x30\xf2\xe8\x43\xc7\x17\xd4\x5f\x1d\x54\xad\x78\x10\x59\x80\xbb\x85\x0e\x2c\x54\x3c\xd8\x10\x80\x48\xee\xf3\x26\xef\xa4\x3f\x41\x1e\xea\x13\xab\x86\x3e\x75\x46\xe1\x96\xa3\x5f\xf2\x0c\xf0\x6b\x2a\xb7\x03\x1d\x1b\xbe\x78\xd0\xed\xa0\x32\xf7\xcb\x69\x82\x95\x56\xe5\x72\xa0\x83\x14\x12\x0f\x0b\x65\x82\x81\xac\x11\x0f\x0a\x65\xc0\xae\xcf\x9c\x1f\x39\x6b\x54\xf7\xb6\xcc\xdb\x32\x1b\x24\x6e\x24\xfa\x9d\xec\xb9\x11\x65\xde\x72\xd6\x1b\xbb\xbd\x84\x14\xd7\x6f\xa4\xa4\x7e\x87\x94\x54\x09\x8f\xdc\x6f\xd4\x8b\xfd\x16\xb8\x04\xbb\x9b\x7e\x23\xec\xf6\x5b\xe0\x0b\xd4\xbb\xfd\xb6\x33\x6f\x61\x2e\x50\xe5\xf6\xc7\x45\xf2\xb8\x48\x30\xd2\xed\xd8\x61\xc7\x83\x40\x50\x1c\xa4\xfa\x63\x07\xef\x78\xc5\x08\x62\x1d\xb3\xe7\x78\xe8\x47\x09\xe3\x78\xd8\xbe\xfa\xc3\xf6\x55\xf0\x34\xe9\x84\xd1\x8d\xc7\xa6\xc5\xf7\x5e\x19\xd1\x2b\x23\x22\xd4\x4a\x7f\x11\x81\xfb\x3b\xec\x4f\xea\x42\x78\x84\x78\x10\x74\x14\xbd\x72\xc7\x7b\x38\x1e\x44\x12\x25\xa0\x7a\x27\x48\x42\x3c\xd8\xfa\x38\x3d\xf4\xaf\xd2\xb6\x2f\xce\x92\x0d\xcf\xb4\xfe\xc9\xc3\x88\x38\x78\x0e\xcc\x36\x3a\x11\x07\xe3\x31\x23\x59\x81\x34\x29\xf5\x9b\x25\x48\x34\x96\xc0\x80\xf1\x78\x20\x15\x48\xaf\x24\xeb\x01\x1f\xe6\x82\x22\x1e\x1f\xc9\x20\x21\x73\x76\xfc\x31\x1a\xae\xd7\x7d\xd9\xc3\x86\xda\x2a\xae\xce\xe5\x4a\x5c\xb1\x32\x9a\x03\x46\xfc\x80\x78\xe8\xec\x3a\xa4\x0d\x69\xd4\x96\x31\xf4\xce\xa3\x7b\xe7\x31\x08\x1a\xdb\x57\xf7\x6b\x06\x60\x04\x69\xa2\xaf\x87\x3e\x22\x14\x53\x03\x57\xb7\xab\x0b\xe8\xea\x02\x2a\x50\x2d\x7d\x2d\x3f\x67\xe4\x38\xce\x89\xc3\x3b\xd6\xc1\x1d\x6b\xc3\x11\x73\x1c\x5c\xb5\x8d\x43\x74\x52\xae\x24\xc7\x81\xb2\x76\x1c\xdc\x35\x55\x3c\x9e\xc7\xd9\xa2\xd4\x71\xb6\x28\x95\x4b\x9a\x71\xb2\xa9\x8d\x53\x6d\x13\x3e\x3d\xe3\x8c\x23\x43\x3c\x90\x55\x31\xfc\x1b\x27\xdb\xc6\x38\x83\x31\x34\xcc\x98\x87\x97\xa3\xe3\x44\x01\x95\xd2\x48\x7f\xdc\xcd\x87\x77\xa7\xe3\x5c\x58\xb2\x05\x9b\x1e\xde\x1c\x0c\x6e\x0e\x1a\xd7\x5a\x23\x21\x79\x8e\x84\x32\x62\xb2\xbd\x0d\x6d\x56\x06\x36\x2b\x0d\x35\xee\xc0\x32\x25\x1e\x23\x48\x71\x26\x1f\x5e\x93\xc6\x92\xa5\x4a\x93\x64\xd3\x9c\x82\xca\x61\x58\x3e\xd2\x65\x09\x86\x92\xc2\xb2\x7f\xa4\xcb\xcf\xb9\x0f\xa0\x01\x1c\x99\xe5\x32\x34\x32\x1b\x48\x94\xc3\xab\x81\x91\x85\xfc\xe2\xf0\x31\xf2\x69\xba\x93\xaa\x04\x37\x1f\x98\x9c\xc5\x63\x99\x8c\xac\xec\x04\x23\x1b\xe8\xdc\x2a\x67\x2e\xbe\x47\xc6\x12\x7f\x94\x90\x48\x46\x66\xdf\x1e\x99\x7d\xbb\xb2\x3b\x8c\xc2\xb5\xd6\x28\xba\x7f\x56\x8a\x2d\xac\xaa\x51\x30\x7e\x1d\x95\x32\xca\x25\x4d\x18\x27\x4e\x15\xa3\x20\xf2\x8f\x22\xd2\x11\xea\xb3\x51\x50\xbd\x0c\xcd\x4d\x06\x51\x74\x46\xc5\xaa\x6c\x54\x30\x80\x93\xed\xa8\x36\xad\xd2\x34\x62\x0d\x8d\x8a\xae\x3c\xf2\x90\x35\x93\x95\x25\x33\x2a\x42\x59\xc2\x90\x77\x54\xf8\xf4\xa8\xfa\xa5\xd7\x10\x3f\x46\xbd\xe9\x82\x2a\x80\x13\xf6\x5b\x83\x0b\x85\x78\xe8\xd3\x1b\x2b\x75\x34\x44\xca\xd1\x0e\xa1\xba\xe3\x24\x38\x1a\x7a\xab\xc1\x95\x43\x4a\x58\xe5\x8f\x86\x92\x6a\x34\x81\x09\x8b\xe9\xd8\xd1\x46\x73\x47\x43\x6b\x32\x3c\xd3\x0f\x64\x87\x86\x41\xd5\xe0\x2c\x1f\x0f\x7d\x8b\x83\xcd\x0f\x85\x81\xa1\x30\x50\x8f\x58\xe6\xa3\xd9\xa3\x2d\x7a\xb4\x15\x49\xb7\xb5\x13\xf8\x8f\xbb\xf2\xd1\xd1\x86\x8c\x6e\x4c\x7d\x74\xf4\x83\x33\x7f\x3c\x74\xd1\x65\xb1\x76\xf4\x65\xa3\x1b\xbb\x19\x43\xc0\x01\xee\x78\x3c\xd8\x47\x09\x0d\x33\x40\xfa\x8e\x07\x41\xdd\xec\x81\xce\xad\xc7\xe8\x78\x9c\x0d\x20\x8d\x07\x97\x02\xf1\xc0\x7a\x83\xce\x1b\x9c\xab\xc6\x28\x76\x0a\xd3\x7b\xb8\x0c\x06\xe1\x8a\x26\x7e\x60\x63\x38\x18\xc3\x50\x71\xb8\x25\x0f\xc0\x5c\xe3\x11\xfc\xb6\xc6\xce\x3f\x00\x65\x8d\x87\x40\xa4\x1d\x9a\x63\x36\x62\xcc\x1a\x17\xde\x43\x45\xc2\x50\x91\x50\x09\x3a\x38\x26\xd7\x43\x63\x72\x3d\x34\xb1\x74\x1e\xc0\x7d\xc6\xc3\x0e\x60\x0a\x4c\x99\xda\xc4\xe9\xa5\x22\x0c\x8f\x89\x01\xc5\x00\xa1\xb3\xe1\x99\x3d\x40\x86\x8c\x07\x35\x41\xd3\x3c\xa6\x8b\x65\xc6\x62\x69\x18\xe0\x0e\xfc\x36\xe2\xf1\x62\xa8\x1b\x15\xb9\x9c\x4f\xc0\xf9\xa5\x84\xce\x77\x00\x5a\x17\x0f\xbf\x76\x46\xd6\x0b\x6b\xa2\x71\x75\x04\xb3\x9a\xa4\x5d\xd2\x58\xf1\x35\x64\x90\x71\x5d\x34\xe2\xba\x82\x95\x62\x2d\x3c\x2e\x8e\x81\x03\x65\x42\x4a\x95\x9a\x80\x72\x14\x0f\x7c\x64\xd8\xd1\x06\x38\x37\xf1\xc8\xff\xfa\xab\x75\xe6\xc9\x2d\x13\xb8\x65\x02\x0d\x2e\x78\x23\xd2\x0e\x00\x6f\x1a\x0e\xd0\x03\x88\x81\x78\x20\x0d\x82\x7f\x3c\xb8\x13\x88\x47\x93\x16\x59\x1f\xb6\xd6\xf1\x08\xe1\x03\xa2\xce\x78\xd0\x7e\x0e\x22\x73\x34\xd4\xe5\x03\xe7\xa9\x78\x50\x11\xb6\x83\x47\x06\xfd\xc0\xa0\xd1\x19\x8d\xd7\x9e\x7b\x0f\x2c\x7f\x62\x37\x1f\xef\x47\x2a\x62\x3c\x37\xc0\x65\x07\x8e\x94\xf1\xe0\xce\x0f\xad\xcf\xd0\x64\x61\x7c\xf6\x39\x0a\xd7\xf1\x71\x90\x1d\x04\x96\x6a\x83\x01\x24\x28\x72\x3c\x3e\x48\x31\xce\x1f\xf6\x4e\xc3\x18\x0f\xc3\x3e\xe2\x16\x22\x1e\xc3\xaf\xc5\x54\xd2\xb0\x61\x68\xd8\x30\x07\x23\xfd\x55\x3f\x27\x82\x03\x3a\xf5\x81\x93\x78\x3c\xb2\x34\x6a\xe7\x44\xc7\xbd\x35\x25\x22\x5a\x0d\x6c\xd3\xff\x1e\x04\x57\x4d\x89\x2b\x9a\x81\xe1\x79\x3c\x4e\x69\x51\x65\x85\x86\xa1\x1b\x67\xc2\xec\x68\x2c\xcb\x5d\xbb\xdc\x38\x1e\x0d\x82\x69\xc6\x23\x16\x13\x60\xd7\x83\xf0\x8f\xf1\xb0\xa3\x58\x87\xeb\x66\x0c\x17\xbe\x6b\x95\xe8\x2d\x83\x68\x82\xf1\xc0\xec\x91\x60\xd0\x07\xd6\x33\xf3\x48\xb0\x76\x54\xb5\x53\xeb\xaa\x79\x08\x4a\x8b\x76\x6c\x1e\x1c\xf9\x27\x16\x10\x4d\x24\xdf\x83\xfb\xe7\xa9\xed\x77\x17\xbe\x08\xd1\x20\x1e\x70\x09\x6c\xdb\x27\xf6\x50\xf1\x60\x57\x88\x33\xf3\x9f\xf6\xf4\x79\xc6\x20\xc5\x43\xb0\x3d\x82\x85\xaa\xe9\x98\xa7\x90\xdf\xe8\xf1\x26\x97\x01\xf1\x28\x02\x22\x44\x71\x27\x4a\x9c\x89\x16\xe4\xac\x62\xdd\x78\x4f\x30\xb9\x27\x68\xc2\x4f\x9d\x8f\x59\x1f\xdd\xd2\x09\x17\xae\x15\xc2\xc4\x0a\x21\x3e\xd7\x83\x86\x7a\x73\x9e\x1f\xfe\x47\x04\xd0\x3d\x51\x6f\xcf\x13\xf5\x76\x22\x3c\xd8\xe4\x6a\x21\x1e\x1f\xc9\x52\x90\x90\x59\xe7\x19\xbc\xb4\x09\xb3\x93\x98\xbd\x33\x39\x7b\xf1\x84\x98\x89\x6b\x92\x89\x80\x12\xb4\x01\xad\x49\xb3\xad\x3b\xdd\x23\x8d\xbd\x40\xc4\xfd\x94\xfc\x9e\x40\x32\xa2\x3c\x26\x4e\x1a\x33\x81\xff\x90\x3a\xe1\x54\x13\xfa\xed\x99\xf2\x4e\x17\x8d\xd5\x24\x6c\x26\x81\x20\x3b\x71\x7e\x55\xd8\xcc\xd4\xcd\x4b\xec\x5d\x45\xa2\x89\x48\x14\x5b\x23\x24\xb3\x76\x7d\xfc\x09\x48\xad\x45\xd8\x4c\x97\x4d\x23\xee\x2b\x16\x11\xf1\x10\x9f\x94\x90\xb3\xdc\x77\xfc\x3d\x93\xfa\x03\x1c\x9c\x66\x7a\x4c\xf7\x08\x6b\x6e\xf5\x5e\xcb\x78\xad\x1e\x31\x4b\x33\x5b\xdf\xcc\xc6\x10\x43\x88\x9e\x19\xf1\x6c\x66\xc5\x33\xf6\xa0\xa9\x5d\xfc\xc4\x22\xb7\x8b\xe4\x95\x6f\xb3\xde\xf6\x00\x91\xfc\x35\xa0\x98\x18\x50\x04\x2d\x9a\x91\xd1\x3e\x4f\xac\xaa\xba\xa0\x47\x05\x11\x61\x16\x4d\x69\x04\xd6\xd7\xe0\x7d\x96\x3d\x40\x84\x93\xad\x9c\xa1\x67\x1d\xf6\x0a\x41\x6d\x2b\x8a\xf5\x59\xf1\x19\x14\x86\xa5\x72\xac\x98\xd5\x63\x05\xc7\xf9\x59\xb1\xb2\x9c\x55\xdc\x47\x21\xf6\x1a\x8a\x80\xd9\x36\xe2\x34\xa1\x6c\x9b\x63\xdb\xc0\xf7\x31\xf2\x6a\x73\xb1\xb6\xec\x3c\x06\xaa\x41\xd5\xc8\xdc\xaa\x91\x41\x20\xd7\x86\x76\x60\x36\xb5\x03\xa8\x72\x67\x43\xab\x34\x1b\xb0\x07\xf8\xf6\x4e\xb5\x14\xb3\x81\x08\x66\x24\xe9\x0e\xe3\x9c\x5d\x7c\x23\x21\xd3\xb4\x4f\x98\xd8\x27\x74\xae\x24\x66\x77\x9e\x74\xa1\xe4\xe0\x9b\xb3\x63\x27\x30\xfb\xc4\xcf\x86\x65\xdc\x2d\xb3\x1b\xbe\x68\xd2\xc3\xfd\xce\xd2\xf0\x14\x22\x86\x2e\x61\x63\xe3\x01\xfb\x12\x4c\xb2\x3b\x5e\xdd\xf1\x12\x24\x16\x11\x25\x1e\x96\x4a\xc4\xde\xc1\xcd\xc0\x1c\x59\x2c\x5b\xb1\xf4\x11\x93\xe7\x40\x61\x82\xf4\x12\xac\x1d\x92\x31\x69\x13\x53\x62\x34\x69\xa2\xf1\x89\x25\xe3\x85\xc9\xe4\xc2\xa4\x13\xe4\x6a\x0e\x27\xf6\x30\x96\x98\xf0\x8a\x8a\x2a\x53\x51\x65\x70\xef\x37\xa7\xd3\x64\x3a\x4d\x84\xd7\x43\x1e\x89\x87\x79\x61\x46\xf8\xae\xc6\x43\x7c\x70\x92\xd9\x88\x99\x05\x7c\x10\x07\x3a\x9b\x35\xef\xac\x40\x2f\x3b\x12\x53\x1c\xdb\x53\x44\x6d\xba\x78\x12\xf5\x59\x8c\x8d\x89\x30\x38\xe7\x04\x34\x92\x00\xc2\x53\x3e\x39\x2f\x32\x66\xc1\xa8\x99\x37\x53\x88\x7e\x61\x02\xe7\x67\x99\x1b\xc8\x53\xc4\x6d\x99\xdd\x14\xc3\x93\xd1\x9f\xcb\x32\x97\x88\xcb\x7c\x0d\x1d\xc5\x9c\x1b\x9c\x53\x60\xf5\x65\xce\xb5\x41\x83\xc5\xf9\x85\x76\x25\x83\xa7\x8b\xa6\x5a\x28\x15\x2f\xc2\x94\xe4\x1c\x97\x53\xe2\xba\x37\xee\x2d\x79\x6f\xf3\xde\x7a\x14\x0b\xbe\x2a\x17\xbf\x08\x1c\x8f\x31\xd2\xbc\xd0\x5b\xcd\x4b\xa0\xe8\x2e\x7c\x29\xfd\x7b\x01\xe7\x86\xbd\xce\xbc\x96\xa4\x25\x36\x8a\x58\x68\x72\xec\x5b\x8e\x8d\x92\x7c\xde\x32\x84\xfb\xd8\x85\x0a\x88\x49\xde\x1b\x28\x1f\xfc\xbc\xe7\x8d\x22\x6b\xde\x20\xf7\x10\x5b\x77\xaa\x05\x9a\x68\x81\xfa\xc6\xcb\x74\xfd\xde\x59\xaf\x7e\x31\xe6\x5c\xbf\xf7\x06\xea\x21\xda\xf4\xed\x04\xbe\x0b\x48\x3c\x62\x90\xba\xa4\x6f\x97\x34\xaa\xa7\x79\x63\x37\x31\xef\xb6\xf1\x05\xc9\xda\xcc\xda\xec\xf4\x2a\xfa\xa3\x79\xbb\x41\x34\xc4\xd5\x9b\xd2\x26\xa0\x2f\x02\xd9\x71\x77\x34\xb9\x3b\xea\x42\x34\xdf\xf2\xaa\xfb\x15\x13\x2f\xff\xcf\xbb\x79\x6b\xff\xa7\xcd\x9c\xf0\x03\xf1\x30\x3c\x87\xc8\x4d\x85\x16\x3e\x1b\xdb\x67\x03\x7c\x51\xd6\x53\x0d\xc1\x21\xaa\x59\x33\x5d\x33\x3c\x88\x90\x51\x36\xc7\x10\xb1\xf3\x10\xb2\x89\x13\xe5\x7c\x0d\x47\x7a\x6c\xec\xa5\x57\xda\x86\x11\x14\xfb\x88\xde\x7e\x15\x6d\xc4\xbf\x7e\xab\xb4\x0d\xb4\x2c\x96\x4b\x35\x6f\xa5\xb7\xc5\xec\xb1\xc7\xde\xdd\x63\x62\xf4\x20\x76\xcf\x77\x6e\x34\x1d\x11\x6c\xac\xca\x86\x9d\xd8\xf0\x2a\xcc\xa2\x77\xe3\x17\x88\x3e\x81\x1b\xd5\xfc\xb8\x87\xce\x02\x64\x7e\xf2\x86\x0f\x24\x3a\x8c\xd2\xa6\x62\xe6\x24\xde\x52\x3a\x0c\x94\x4f\x14\xbf\x78\x10\x1a\x7c\xe3\x6a\x7c\x92\x0c\x3d\xce\xb8\x7f\x8f\xb4\x57\x4c\x03\xf1\x0d\xd8\xa3\xb8\xad\x4a\x59\x70\x27\xc2\xd9\xc4\x03\xd7\x9a\x22\xc4\x80\x05\x88\x73\x62\x0c\x77\xd4\x16\x73\x81\x93\x55\x0c\x80\xce\x61\x6a\x62\xfa\x92\x8e\x1d\x14\x1d\x03\xcd\x49\x48\x9c\x28\xc0\xc0\xf6\x74\x30\x61\x80\x53\x16\xea\x40\x75\xd8\x5c\x8d\x60\xfe\xb0\xf2\x85\x53\xd1\x5c\xcd\x78\xeb\x86\x48\xf7\x6b\xd3\xaf\x19\x66\x5e\x01\x62\x3d\x06\x66\x31\xaa\x40\x7e\x8c\x0e\xb4\xff\xd5\x66\xfe\x30\x98\x47\x10\xf2\x3f\xbf\x71\x31\x78\xcc\xe3\x37\x04\x79\xfd\xe7\x37\xfc\x42\x8e\x96\x7f\x7f\xeb\xff\xfc\x86\x99\xfc\x09\x4e\xd3\x8e\x30\xbb\xf8\x2d\xfe\x75\xca\xb6\x1d\x4a\xec\x7e\x17\x5d\xba\xff\xed\x6a\x20\x7e\xa2\x3c\xbd\xa8\x50\xf7\xbf\xd3\x90\x50\xbf\xc1\x9a\x50\xf5\xee\x7f\x8d\x3a\x84\xcf\xb6\xfa\xf4\xc5\xee\x74\xd6\x62\x50\x02\xe6\xde\x9a\xd3\x40\x03\xba\xdb\xc7\xa7\x17\xf8\xec\xa3\xea\x7a\xcd\x18\x2d\x8e\xa5\x06\xe7\x5a\xc0\x80\xc7\x63\x3b\x65\x4f\x5c\x80\xa3\xa3\x97\xa8\xc6\xf8\xea\x82\x69\x1c\x0f\x1c\xe0\xf0\xc2\x26\x4c\x78\x3c\x62\xe5\x73\x3b\xba\x88\xaf\x14\x8f\xa1\x3f\x05\xc9\xb2\xc9\xf0\x48\x18\x38\xf0\x7e\xc8\x9f\x0b\xdb\x2f\xaf\x87\x97\x47\xaf\xc5\xd1\xab\x13\xca\x75\x11\xb5\x35\x1e\x17\xa4\x13\xd2\x2d\x29\x66\x3a\x18\xf3\x8b\x70\x43\xf1\xf8\x48\xe5\xb7\x16\x24\xf0\xdb\x27\x0e\xc8\x1c\xdf\xe2\x51\xc8\xc8\xb7\x8a\x95\xc0\x7e\x32\x35\x7c\xaf\x09\x03\x1b\x0f\x6b\xa1\x5b\x31\x9d\x08\x64\x46\xc3\xbf\x9a\xa3\x5b\x3c\x70\x87\xd6\x87\xf8\x92\x82\xe6\x10\xff\x5c\x84\xa4\xb5\x76\xdd\x71\xff\x95\x52\x63\x30\xf4\x84\x66\xce\x2f\x54\xc0\xa7\xf7\x0e\x8b\x05\xf0\xf7\x22\x04\xb9\x8e\xf7\x84\x3a\x8c\x07\xe2\xc6\xff\xc2\x5e\xe3\xe5\x3f\x5f\xff\xfe\x6f\xff\xdf\xff\xdf\xf5\xef\xff\xff\xeb\x3f\x7f\x7f\x3d\xff\xfd\x3f\xfe\xe3\xfb\x2f\xff\xed\xfd\x4f\xcf\x7f\xfb\xeb\xff\x13\xd4\xbf\xde\x6f\xfd\xa7\xff\xf2\xfd\xc7\xf7\xbf\xff\xd7\xff\xfe\x1f\xcf\xf7\xd7\xbf\xff\xd7\x7f\x8f\x5c\xfc\xfd\x1f\x01\x00\x00\xff\xff\x39\x4b\x37\xd8\x86\xd6\x02\x00"); -func _daeg ()(*asset ,error ){_fdcg ,_bfbf :=_afb ();if _bfbf !=nil {return nil ,_bfbf ;};_dfce :=bindataFileInfo {_ag :"ETHK-B5-V",_bc :631,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491827,0)};_bfdf :=&asset {_cd :_fdcg ,_dce :_dfce };return _bfdf ,nil ; -};var _dace =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x4b\xcf\x6e\xbf\x91\xde\x07\xcf\xf5\x29\xf6\xd0\xef\xc0\x6f\x2f\x2e\x92\x55\x45\x20\x10\x60\x38\x68\xc4\x30\x9c\x04\x3e\x24\xe3\x75\xec\x08\x48\x4b\x82\xba\x3d\xe8\x6f\x1f\xdc\xfc\xf1\xbe\xea\x69\x03\x41\xb6\x26\xfa\x3f\xdc\x5c\x64\x15\x0f\x75\x62\xd5\x75\xff\xdd\xbf\xff\x0f\xff\xf3\x7f\xf8\xf3\x9f\xfe\xf9\xd7\xdf\xfd\xef\x7f\xfb\xcb\xf5\x5f\x9e\x7f\xfe\xf5\xfe\xe9\xcf\xf7\xdf\x9e\x7f\xfa\xcb\x7f\xff\xdb\xf5\xfc\x3a\x9f\x7f\xf8\xd3\x9f\xff\xf0\x87\xb2\xff\xba\xff\x74\xfd\xf3\xf7\xcf\xf9\x7f\xd7\x3f\x1e\x7f\xfd\xc3\x1f\x3e\xdf\xff\x97\x7f\xf9\xa7\x7f\x7e\xfe\xf1\x3f\xfc\xf9\xfd\xcb\xaf\x4a\xbf\xfb\xbf\xff\x75\xf5\xfd\xf5\xeb\xef\xfe\xf3\xf3\x0f\x7f\xfa\xa7\x7f\xfe\xdb\xbf\xfc\xfa\x37\xff\xee\xfe\xcb\xf9\xfc\xff\x7e\xdd\xcf\xfb\x69\xff\xdf\xfe\x76\x3f\x7f\xfb\xd3\x9f\xff\xe1\xd7\xbf\xf9\x8f\xff\x59\x8d\xff\xe5\xbf\xff\xf5\xaf\xff\xf7\xf3\x8f\xcf\x9f\xff\xf9\xd7\x98\x6d\xcf\x9f\xef\xf9\xff\x7f\xf8\xbb\x7f\xff\x9f\x8e\xbf\xfe\xaf\xc7\x3f\x3e\xbf\xfe\xee\xbf\xfd\xf9\x4f\xff\xee\x3f\xfe\xe7\x7f\xfb\xdf\xfe\xeb\xdf\xd7\xfd\xdf\xfe\x2f\xf3\x9f\xe7\xbf\xfe\x1f\xcf\xdf\xfe\xe9\x4f\x7f\xf9\xf3\xaf\xf2\xff\xdf\xb6\x3d\x9b\xff\xeb\xbf\xfc\xf5\xf9\x55\xd6\x28\xff\xe7\x7f\xfa\xcb\xfd\xfc\xda\xf8\xab\x40\xe5\xf5\x97\xfb\xf9\xa7\xbf\x1e\xd7\xf3\xb7\xe3\xcf\xff\xf0\xfc\xe1\xd7\xaf\xff\x69\x5b\xff\xfb\xe3\xe7\x3f\xcb\xf6\xf7\x7f\xff\xf7\x7f\xff\xc7\x0f\x29\xff\x43\xcf\x3f\x94\x6d\x5b\x43\xfc\xe9\xbe\xfe\xaf\xe3\x6f\x7f\x58\x5f\x1e\xdb\x1f\x7f\x15\xfd\x51\xfe\xf8\x6b\xdf\x5b\x6c\x6a\x18\x7f\xfc\x55\xb6\xfc\xf3\xe0\xdf\x9b\x1a\xee\x3f\xfe\x2a\xf9\xd7\xf3\xe9\x9d\xa3\xbd\xf4\xee\xdf\x86\x33\x68\x08\x35\x7c\x86\x2f\x11\xbb\x1a\xd6\x04\xe3\xdb\x70\xfb\x67\x48\xfb\xfe\xf9\xce\x3f\x7d\xfd\x59\xca\xa4\xb7\xf7\xfa\x6d\xa8\x41\xc3\xf7\xfb\xfd\x72\x66\xf8\x7e\xb2\xdf\x1b\x0d\x5f\x1a\xda\x36\xc7\xb0\xfd\xcb\x45\xeb\x34\x7c\x69\xd8\xb7\xb2\x25\x93\xfb\xf6\x99\xf3\xc7\x5f\x36\x87\x1b\xfd\xdb\x50\x19\x7f\x98\x1a\xce\x3f\xfe\x2a\x75\xd7\x9f\x17\xff\xee\x6a\x78\x68\x88\x6f\x43\x6b\x34\x68\x7e\x9f\x43\x8e\xad\x7e\x1b\xe6\xae\xd4\xfc\xf3\x33\x64\xfd\x92\x54\xb6\xfa\xf9\xb3\xeb\xcf\xd9\xf9\x4b\x4e\x29\x75\x0e\xb6\x17\x35\x18\x0d\x5f\x0a\xcb\x5e\x68\xa8\x6a\xd8\x3f\x23\xb8\xfe\x5c\x1f\x68\xc2\xfd\xa4\x41\x53\xde\xfb\x6c\xe8\x1a\xf2\x6e\x34\x7c\x87\xdc\x37\x58\xea\x4d\x0d\x8c\xf1\xdd\xb8\x7d\xdf\xde\xd9\x60\xdb\xb7\xa1\x40\x96\x15\x35\x7c\x66\x69\xa1\x3f\x0f\xfe\xfd\x3b\xe9\xbe\x33\x87\x75\x35\x74\x1a\x4c\x0d\x73\xe9\x87\x8b\xac\x0e\xe1\x2e\x2a\x6c\x6e\x7d\xfe\x09\x0d\x21\xa2\xc6\xa0\x41\x3d\x0e\xe6\x18\xea\xf1\xc0\xc7\xf8\x92\x5d\x0b\x73\x8c\x2f\x9d\xed\x9d\x3d\xec\x7b\xcb\xf6\x3e\x3e\x3d\xf6\x4d\x9c\xf6\x79\x47\xf7\x4d\xac\xf5\xcf\x3d\x2d\x5a\xde\x7e\x7d\x16\x4f\x8b\xdb\x9f\xcf\x06\x69\x69\xad\x5c\xf3\x6b\x91\x64\xe5\xa1\xe1\x3b\xbe\x35\xc6\x17\x49\xd6\xa0\x60\x7c\x87\xf4\xf6\x19\xa3\x7f\x57\xf2\x9d\xdb\xd7\xf6\x1a\x6a\x68\xb3\xc1\xb2\xc1\x66\xc3\xf7\x66\xef\xef\x16\x9f\x86\xaa\x43\xfc\xce\x73\x39\x4a\x31\x35\x7c\x36\xb0\x75\xad\xc3\x3b\xcf\x44\xeb\x5b\x4e\x7b\xcd\x4f\xf6\x6c\x78\x67\x43\xd3\x18\x5c\xce\xfe\xa3\x61\x1e\x92\x2e\x4e\xde\x32\x29\x35\x5d\xc8\x77\x9e\xff\x51\x46\x53\x83\xcf\x1e\x2d\x1b\x26\xe9\xd6\xc5\xdc\x5c\xd1\x66\xc9\x5c\x99\x62\xd0\x7e\xcc\xf2\xce\xb3\xa9\x93\xf3\xee\x1c\xa4\x2e\xe6\xf6\x4a\x43\xf6\x98\x84\xe5\x71\x7d\xe7\x71\x6d\x23\x09\x9b\x17\xaf\x6f\x9e\x63\x7c\x08\xeb\xe5\xc7\xa0\x63\x36\xe8\xe4\xbc\xf3\x6a\xf6\x92\xfb\xb2\xdf\xb3\x61\x64\x8f\x77\x1e\xa5\xa4\x74\x0a\xb0\xbe\xe7\x66\x57\x0e\x5b\x0e\x5a\xf7\xd9\x10\xf9\xc9\x67\xc5\x86\xe7\x9a\xd6\x49\x58\x6d\xf9\xc9\x3c\x3f\x6d\x2b\x53\x35\x2d\x0d\xf4\xff\xa2\x93\xf6\xb7\x4e\x22\xfb\x8f\x19\x9f\xd9\xe0\x62\xa3\x4e\xaa\x7b\x68\x9f\xe7\x11\xee\xae\x3b\xf1\xce\x23\xdc\x3d\xb4\x25\xad\xd2\xe0\x6a\x68\xb3\x21\x37\xad\x7d\x16\xbc\xc7\xa6\x69\xdb\x5c\xf0\x28\xd9\xe0\x34\xe4\x27\x93\xd1\x51\xb4\x03\x6d\xee\x40\x0a\xcf\xb7\x1d\xb3\xa1\x26\xa5\x9f\x2d\xb1\x92\xfb\x3c\xef\x96\x15\x09\x9d\xb7\x3d\x7f\xfc\xb5\x6f\x7b\x6e\x7c\xfb\x70\x6b\xfb\xa6\x1e\x7d\x9b\x0d\x52\x43\xef\x47\x67\x7d\x1a\xb4\x40\x53\x92\xd9\x2e\xa9\xfe\xf6\x46\x83\xe8\xe8\x1f\x6e\xad\xd7\x1c\xe3\xc3\xad\x59\x15\xb7\xdd\x69\xd0\x8a\xf5\xa0\x21\xe9\x38\x66\x43\x5e\x95\x7e\xcf\x06\xcb\x86\xcf\xce\x99\xe7\x1d\xee\x2f\x0d\xa2\x74\x8a\x58\x0b\x29\xa4\x77\x0a\x59\x8b\xbc\xe5\x36\x79\x89\x3c\x5e\x56\x69\xc8\x1e\x8d\x06\x11\x66\x93\xb9\x68\xf9\xc9\x64\x2e\x24\xea\x5f\xfb\x6c\x94\x8d\x3d\x3f\x99\xbc\x8c\xe4\xd6\x4e\x1a\xb2\xc7\xdc\xa8\x91\x37\xc3\x26\xb7\x63\x64\xc3\x43\x43\x8e\xf1\xe1\xd6\xb7\x4d\xeb\x31\x75\xb9\x6f\x79\x65\x7d\x9f\x0d\x91\x3d\x3e\xcc\x79\x5a\x0c\xaf\xb7\xd9\x90\xd3\x7a\x9f\x0d\xa6\x59\xfc\xc3\x9c\xef\xb9\x1e\xee\x7f\xfc\xb5\x97\xad\xe7\xa0\x9f\x9d\xf3\x9a\x12\xcb\x8f\xd9\x20\x23\xe3\xf5\x0f\xb7\xde\xf2\xac\xfb\x35\x1b\x72\x81\xfc\x9e\x0d\x79\x60\xfc\x73\x4e\x4b\x89\xfc\x64\x72\xdb\x9a\x98\x8b\xc9\x6d\x4b\xc9\x19\x65\x36\x98\xb6\x21\x26\xfb\xbd\x89\xf4\xa8\x34\x68\xda\x98\xec\xf7\xae\x59\xa2\xd3\x90\x9f\x4c\xf6\x7f\x88\x8b\x70\x1a\x44\x69\x04\x0d\x5a\xb1\x18\xb3\x21\xd7\x23\x0e\x1a\x72\xd0\x93\x86\xfc\xe4\xfe\x70\xdb\xf6\xe4\xe5\xb3\xd9\x1e\x3d\x79\x79\x69\xd0\x18\x63\xb2\x1f\x79\xd5\xa7\x66\xf7\xb4\xb5\xde\x31\xb9\x1d\xb2\xe5\xde\xd1\x68\xd0\xb4\xe3\xc3\x6d\x6c\xb9\x62\xc3\x68\xd0\x45\x1e\x3e\x1b\x52\x2d\x8c\x8f\x11\x5c\x2c\xa5\xef\xb4\x52\x62\x8b\xec\xf1\xe1\x36\xd2\x66\x7c\xc7\x49\x43\x4e\x7b\xcd\x86\x54\xa4\xe3\x9e\x0d\x29\x4f\xc7\x43\x43\xf6\xf8\xb0\x1f\xfb\xae\x31\xa6\xd9\x12\x7b\xce\x72\x7c\xd8\x8f\x9a\xec\x1f\x75\x36\xe4\x6d\x38\xda\x87\xf4\xa8\xd9\x30\xd9\xaf\x79\xc6\x0e\xa3\x41\xd3\x4e\x63\x38\x7a\xc9\x41\x3f\x3e\x44\xf9\xa1\x37\x8f\x93\x86\xfc\x64\x32\xd7\x53\xe2\x4e\x37\x26\x6c\xcb\x1e\x0f\x0d\xea\x71\x96\xd9\xb0\xf7\xdf\x52\x60\xe7\xfe\x71\x21\x7e\xdc\xbf\xb3\xf2\xb9\x0e\xcf\xd9\x66\x43\x6e\xfc\x39\x19\xfd\x21\x39\x4f\xa3\x21\x49\x98\xfb\x6c\xae\xa5\x38\xe7\x2e\xfe\x90\xad\xe7\xdc\x45\xcf\xcb\x74\x5e\x34\xe4\x18\x9f\x43\xbc\x97\x10\x1d\xd7\xe4\xcb\xbb\x38\xbf\xe6\x1e\x79\xd2\x71\x4d\xd2\x3d\x6f\xc6\x35\x49\xff\xa1\x04\xaf\x4e\x43\x8e\x31\x49\x8f\xdc\xe7\xe9\x85\xc5\x0f\x91\x7e\x4d\xd2\x7f\xec\xf3\x75\x7d\x08\xab\x79\xaa\xa7\x0f\x11\xd1\x74\x9a\xee\x49\x47\xe4\x9a\xde\xd0\xd1\xb3\x47\x9f\x63\x7c\x65\x5a\x9d\x5e\x71\xf9\xc8\x41\x35\x54\x1a\xec\xdb\x50\x56\xc3\x1a\xa3\xd6\x39\xcb\xc7\x55\x50\x83\xd1\x60\x6a\x08\x1a\xbe\x9f\x34\x2e\x53\x7c\x85\x5c\x6d\x37\xdc\x7e\x4d\xbb\xda\x0b\x0b\xf4\xf5\x65\x6a\x9f\x2e\x56\xc4\x57\x62\xd5\x3e\x7d\x80\x88\xaf\x85\x5f\xcd\x56\x43\xfd\x36\x3c\xac\xe9\x57\x84\x55\xdf\x59\x8f\xaf\x69\x57\x7d\x5f\x9f\x7c\xa7\xf5\x0a\x61\x5f\xc1\x50\x9d\xe3\x10\xdf\x13\x54\x63\x5b\x0d\xdf\x69\x63\x9a\xba\x21\x35\x59\x23\x98\xc5\xdb\xb7\xe1\x5c\x83\x7e\x17\x28\x1e\xb8\xf5\xef\x02\xc5\x7b\xd3\xf0\xa5\x74\x4c\x0d\x1f\xf1\xb5\xde\xea\x30\xd6\xe3\x7b\xff\xea\x58\xb3\x7c\x05\x54\x1d\x83\x4f\xbe\xd7\xbe\x0e\xe4\x80\x22\x05\x75\x70\x3d\xe2\x2b\x8f\xea\x51\x07\x0d\x5f\x4a\x8f\x83\xf3\xf1\x3d\xb8\xf5\xb8\xe1\xf6\x2b\x3a\xea\xf1\xae\x31\xbe\x94\x9e\xdb\xa2\xe3\x4b\xe9\xb9\x16\xf9\x6b\xea\xd6\xd3\x99\xe5\xeb\x4c\xd5\xf3\xa5\xc7\xd7\xa0\xae\x57\x61\xda\xaf\x33\x55\xaf\x7d\x35\x54\x35\xb0\x40\x5f\x01\x55\xaf\x17\xc2\xbe\x66\x43\xbd\x0b\x6b\xfa\x8d\x09\xd4\xbb\xb3\xb7\x3a\xda\x37\x5b\x39\xbe\xce\x52\xbd\xb9\xb7\xe3\x6b\xbc\xd6\x87\x6b\x3a\xb6\x2f\x1d\xcf\x8c\x7c\x84\xc2\x08\xf5\x79\x6e\x1a\xbe\x74\x3c\xef\x6a\xf8\xae\x18\x6e\x5d\x8c\xef\x7d\x69\x1b\x67\x6c\x7c\xef\x4b\xdb\xea\xea\x11\xdf\x06\x5b\x74\x8c\x6f\x03\xf2\x59\x26\x72\xdb\xae\xd5\xb0\x28\x6d\x65\xba\x0f\x31\xbe\x12\xbc\x15\xe4\xf3\xf8\x4a\x98\xb6\xf7\xf5\xc9\xa2\xb4\x55\x24\xdd\x28\xfd\xdb\x70\xad\x31\xbe\x94\xd6\x67\x35\xb8\x1a\x0e\x1a\xbe\x94\xb6\xce\x7a\x94\x2f\xa5\xbd\x40\xfa\xfe\xa5\xb4\xbf\xab\xe1\x4b\xa9\x71\x3d\xa4\xbf\x9b\x21\x93\x65\xee\x37\x3b\x1f\x1a\xbe\x94\x1a\x52\x4a\xc1\x91\x66\xf7\x1a\xc3\xd4\xc0\xaa\x7f\x05\x4a\xf3\x7d\x35\x7c\x29\x75\x63\x3d\xbe\xa6\x58\x73\xa7\xc7\x57\x7c\x36\x47\xf7\x8e\xaf\xed\xde\x62\x9a\xc8\x31\xbe\x56\x64\x5b\x17\xf9\x63\x69\xfc\x7f\x2b\xb0\x16\x18\x19\xe3\xab\xba\x5b\x1c\xab\xe1\xcb\xc6\x98\xde\x69\xc8\xaf\x69\x03\x7b\x40\x96\x4b\x5b\x57\x76\x7c\x83\x04\x6d\x5c\x6c\xda\xd7\xa0\x6e\xc7\x5a\xf0\xaf\xbd\xd8\x8e\xc5\xf9\xd7\x72\x69\xc7\xc9\x62\x7d\xed\xf8\x76\xdc\x30\xda\xbe\x0b\x7e\x3c\xab\xc7\x97\xd2\xe3\x65\x96\xaf\x12\x6c\x67\x87\xf3\xaf\x29\xd3\x4e\x2f\x34\x7c\x29\xbd\x0b\x9f\x7c\xcd\x90\xf6\x4c\x39\xd0\xf6\x96\x0d\xb0\xff\x35\x42\xdb\xb3\xdd\xf4\xf8\x0e\xfa\x10\x79\xd8\x35\xe8\x33\xa3\x2c\x6d\xff\x9a\x87\xed\x29\x90\xfe\x75\x51\xdb\xb3\xaf\x41\xd5\x63\x5f\x74\x34\x35\x30\x4b\x36\x4c\xd7\xbb\xc9\x39\x6f\xcf\xba\x3b\x5d\xd3\xce\x70\x63\xdb\xbf\xda\xa8\x3d\x0d\x6e\x7f\x34\x74\x62\x35\xe2\xa5\x71\x33\xbe\xfa\xaa\x3d\x8d\x31\x4c\x94\x76\xa2\x39\x26\x6e\x3b\x94\x9a\x16\xc8\xa0\xc3\xc4\x8b\x31\x86\x6b\x8c\x75\x88\x4d\xbc\x18\xcc\xb9\x3e\x71\x8e\x83\x89\x17\x67\x1b\x5c\x9f\x38\x6b\xea\xea\x11\xac\x87\x8b\xb9\x80\x52\x17\x2f\x01\x61\x49\xc7\xf4\x05\xda\x1e\x22\x3d\x18\x34\x44\x47\xb0\x51\x49\xd8\x58\x9f\x68\x50\x0c\xea\x91\x84\x0d\xb8\x1d\x1a\x14\xfb\x79\xb8\x36\x6a\x30\xcb\xd0\xaa\xaf\x2b\xeb\x5a\xd3\x83\x59\x86\x98\x3b\xd8\x97\xe4\xf6\x44\x62\x25\xb7\x53\x09\xb6\xba\x89\xb9\x13\xc2\x42\xb3\x4c\x75\x9d\x61\xb7\xf6\x9c\x5c\xb1\xd0\x27\x53\x4f\xb4\x2a\x19\xff\x60\xbd\x8d\x5c\x8f\x29\x5b\x5b\x95\xd0\x7f\xae\xb9\x73\x55\x22\xfd\xc1\x58\x1b\xa1\xf5\xb8\x57\x0f\x7d\x72\x23\x1d\x42\xeb\x31\x2f\x72\xab\x12\xc7\xcf\xc3\x39\x0d\xd1\xf1\xac\x4f\x34\xc6\x3b\x63\x68\x72\x1f\xda\x33\xe5\x73\xab\x92\xbe\x0f\xca\x78\x84\x06\x7d\x91\x41\xb9\x73\x53\x3a\xb4\x2a\xe9\xfb\xd5\x79\xb9\x73\x98\x62\x0a\xd8\x36\x82\x9d\xa1\x80\x6d\x7b\xb7\xc2\x18\x5f\xc2\xde\xc2\x46\x7d\x35\x7c\x23\xa8\xd6\xaa\x84\x23\x41\xb5\x90\x4f\xd2\xde\xca\xaa\x4b\x5a\xbe\x95\xad\x94\xb4\x24\x86\xd6\xaa\xa4\xe5\x5b\xd9\x4a\x09\x25\xa2\x62\xa1\xf0\x43\x23\xe6\x15\x72\x74\x1a\x31\xaf\x56\x25\x2d\x09\x4f\x85\x02\x14\x8d\x68\x54\x8c\xa1\x69\x67\x58\xa8\x55\x49\x29\x02\x25\xad\x4a\xc2\x10\x28\x19\x9b\x0e\x0c\x11\x8b\x56\x25\x0c\x88\x58\x8c\x4d\x07\x86\x00\x45\xab\x12\x39\x84\x1f\x5a\x95\x84\x21\x52\x30\x36\xa9\x7c\x22\x05\xad\x9a\x98\x8b\x35\x46\xfc\x8e\x02\xc3\xe3\x6f\xd5\xb4\x7a\xd3\xe3\x1f\x9b\x4c\x88\xe9\xcf\x97\x56\x3d\x49\x78\xe8\x91\x33\xb2\x8b\x92\x03\xf8\xf3\x63\x93\x91\xf1\x0e\x88\x94\x1c\xc0\xc1\x1f\x9b\xce\x3d\xfe\xfc\xd8\x74\xcc\x71\xdf\x5b\x95\x60\xc0\x7d\x1f\x9b\xcc\x90\x17\x69\x53\x3d\x67\x61\xc1\x65\x97\xe0\xad\xb7\xea\x39\xcb\x45\x0f\xad\xef\x58\xcc\x69\xda\x03\x3a\x74\x77\xa6\x8b\xfa\x69\x10\x73\x27\x0b\x24\xcb\x05\x6f\x72\x6c\xb2\x5c\xde\x93\xf5\x90\x60\xc0\x79\x1c\x9b\x2e\x13\x9e\xe0\xd8\xf2\x66\x5c\x0f\x9f\x88\xb9\x9b\x15\xd3\x75\xc3\xcf\x1b\x9b\x0c\x95\xf7\x46\xda\xe4\x65\xba\x39\x2b\x79\x77\x6e\x08\x93\x2d\xf2\x2e\x69\x93\x17\xe1\x66\x2b\xf3\xfe\x3d\x95\x06\x11\xf6\xb2\x95\x79\xdd\xde\x49\x58\xdb\xb4\x84\x53\x96\xb4\x26\xd9\xfa\xbe\x2c\x61\x5e\xc8\x29\x5c\x5a\x93\x6c\x7d\xa7\x3f\x31\xb6\xbc\xa1\x6f\xd0\x43\xa4\xbf\x07\x0d\xa2\xf4\x85\xd2\xaf\xc5\xd3\xf1\x59\xc7\xf6\xb5\x78\xfa\xb6\xed\x7c\x62\x6a\x60\x91\xbf\x97\xba\x6f\xbc\xb5\xb4\xef\x75\xeb\xdb\xc6\x91\xfa\xda\x44\x7d\x9b\x6f\x2d\xad\x7d\xad\xf4\xbe\xf1\xb4\xd2\xbe\x56\x7a\xdf\xb0\x67\xda\x57\xa4\xf7\x8d\xa7\x95\xed\x6b\x46\x75\x5e\x3a\x5b\x2b\x9a\x76\x1a\xc3\x63\x6b\x1a\x94\x67\x91\x56\x44\xe9\xce\x9a\x16\xcd\xb2\xb3\xd9\x2d\x1b\xe0\xa5\x6b\xda\x9d\x53\xd8\xb5\x1e\x3b\x0b\xd4\xb5\x1e\x95\x05\xea\xa2\x03\x8b\x47\x81\xca\xbe\x21\xf5\x5a\xd5\xa0\x8d\x9d\xeb\x5a\x8f\xc6\x8d\xea\x62\xae\xad\x59\x44\xfa\x0c\xb9\x37\x05\x3b\xfb\xd6\x39\x41\x5d\x8b\x8c\xa0\x6c\x55\x63\x74\x76\xbf\x6b\x3d\x3a\x9b\x5d\x35\x68\x67\x81\xaa\xc6\x30\x78\x31\x71\x6b\x2c\x90\x89\x5b\x5b\xb3\x68\x50\x63\x16\x13\xfb\x4b\x1c\x9b\x28\xf5\x35\xa8\x08\xf3\x35\xa8\xe8\x70\x8e\x65\x9e\xb1\x29\x7d\x5b\xcb\x23\x15\x70\x6b\xa2\x34\xa0\x23\x8f\x54\x70\x09\x4d\x84\x21\x4f\x5b\x1e\x18\x84\x63\x6b\x9a\x76\x09\x47\xd3\x46\x2d\xe1\xe8\xda\xa8\x01\x73\xae\xf5\x38\xf8\xc4\x35\xc6\xc1\x46\xb9\x08\x3b\xd7\x18\xa2\xe3\x84\xd2\x3c\x1f\xd3\x47\x6b\x2d\x77\x7f\x9a\x40\x63\x73\xd1\x31\x9d\xb6\xd6\xf2\x38\x9c\x1c\xfe\x10\x61\x17\x74\x84\x08\xbb\x98\x36\xb4\x84\xd7\x9a\x56\x94\x5e\x9c\xa0\xae\x59\x10\x7d\xcd\xb6\xdf\x50\x60\x7d\xbb\xd7\x04\x62\x03\x31\xd8\x72\xe3\x97\x18\x0c\xf1\x75\xc3\x46\x9e\x84\x67\x51\x2d\xbe\x1e\x88\xcc\xa3\xf1\xb0\xe0\x21\xaa\x1f\x16\x2b\xcf\xca\xc3\x85\x0c\x2d\xf8\x83\xae\x09\x2d\xf8\xc3\xc6\xe7\x59\x79\xd8\xa3\x10\xe7\x2f\xb7\x7c\x68\x39\x5f\xe4\x51\x1e\x1e\xcc\xb2\x96\x47\x63\xc9\xc5\xa1\x05\x7f\x59\x4e\x9d\x95\xc2\x93\x73\xfb\x6a\xe7\x5e\x96\x18\xfc\x2a\xe3\x5e\x96\x18\x1c\xd9\xc0\xb4\x5f\xdd\xdb\xcb\xc6\x12\x0e\x35\x14\xee\xce\xd7\x82\xea\x85\xf7\xe3\xe6\xd9\xb0\xe8\xf8\x72\x5b\x96\x90\xd3\x01\x24\x5d\x62\x28\xea\xd8\xcb\xee\x34\x64\x0f\xb6\x52\x07\x90\x0c\x8a\x51\x24\x8e\xcb\x7c\x73\x1d\x45\xe2\xb8\xe0\xf8\x29\x33\xa7\x97\x5a\xe9\x51\xd4\xd0\x69\xd8\xd5\xc0\x56\x46\xf6\x60\xda\xc8\x1e\x4c\x5b\x44\x69\x45\x40\xe9\xd0\x95\xfa\xfe\xab\x47\xfa\x5e\x66\xd0\x64\x94\x22\xf6\x3b\x84\x8d\x6c\x38\x78\xa4\xd7\x2c\x4b\xea\x0d\xb1\x6f\xeb\x13\x71\x8b\x90\xd3\xcb\x7f\x2f\xc6\xb4\xbb\xe8\x70\xde\xf5\x73\x81\x7c\xcd\xa2\xbd\x9d\xcf\x55\xad\x17\x35\x20\xd3\x7a\x32\x17\xfb\xbf\xca\x1e\xe8\x05\x8b\xb2\x27\x73\xd8\x88\x65\xcf\x06\x52\x12\x92\xdb\x58\x19\x08\xd9\x70\xd3\x43\xcc\xc5\x22\x5d\x0d\x83\xad\x94\x7a\x2a\x83\x94\x84\x92\x0d\x6c\xa5\xf4\x55\x19\xac\xc7\x9e\x0d\x4e\x83\xb6\x72\xda\x88\xa3\xd4\x6c\x78\x68\xd0\xaa\x1f\xb0\x9f\xdb\x70\xac\x41\xb5\xa6\x07\xcc\xe5\x12\x1e\x2c\x61\x2e\xd0\x09\x73\xc9\xcb\xb9\x66\x11\xe9\x38\x8f\x3d\x99\xc3\x02\x2c\x4d\xa4\x5f\x2c\x72\x32\x37\xc3\x7f\xad\x27\xe9\x17\x5b\x29\x13\x88\xf4\xa1\x51\xa4\x9e\x48\x1f\x1a\x45\xea\xa9\xdc\xe4\x6c\x48\x1b\x15\x64\x61\x91\xf2\x29\xcf\xf6\xaf\x32\x43\x7a\x79\x38\x41\x52\xa4\x05\xc1\x56\x9a\xb6\x72\xca\xb1\xa1\x8c\xa2\x5e\x5e\x48\x4f\xc2\x5e\xd6\x43\xb3\x90\xc6\x94\xe9\x26\x7d\xdf\xd8\x6c\x99\x2f\x3b\x91\xa4\xae\x59\xf6\x95\xe5\xf2\xa3\xc7\x43\xc3\x97\xdb\x7d\xe5\xb0\x48\x81\xed\x85\xf3\xf1\xa3\x07\xec\xff\xe8\xc1\xf9\x90\x8a\xdb\x49\x48\xd1\x1b\x69\x27\xd5\xa9\xf5\xaf\x8f\xd6\xf7\x0a\xe9\x32\x3d\x76\xac\xa6\x2e\x99\xbc\x63\x35\x15\x29\xb0\xbd\x31\xed\xef\x29\xb0\xbd\x41\x93\xe5\xe7\x2c\x78\xce\xd8\x39\x3c\x12\xd8\x7b\xe7\xf0\xc8\xfa\xd9\x89\x3b\x75\x09\xec\xbd\x23\x4a\xa5\x04\xf7\x25\x6d\x2c\xc7\x20\x69\x48\x02\x7b\xef\x2c\x85\x04\x36\x49\x5c\x4d\xc9\x24\x7d\x9f\xd2\xa6\x75\x09\xca\xdd\xb9\xa1\x12\x94\x3b\x0e\xad\x5e\xdc\xfb\xee\x5c\x26\x09\xca\xdd\x17\x61\x1a\x74\x09\xa8\x64\xdf\xa1\x43\xea\x7a\xf7\x35\xad\x98\x5b\x02\x4a\x2a\x6e\x0f\xb6\x44\xda\x79\x5f\xd2\x46\x8a\x74\x5f\xa2\x43\x06\xd3\x8e\x6b\xa8\x7c\xa7\xbe\x1f\x10\x96\x8b\x8c\x9f\x57\x92\x7d\xac\x1f\xdb\x34\xc6\x74\xeb\x9a\x6d\x62\x7f\x3e\x01\x36\xdb\x34\x28\xc6\x8e\x6d\x1a\x94\x10\x91\x49\xe7\xed\xdc\x72\xbd\xa8\xf6\xfd\x42\x72\x4a\xe7\xed\x04\x91\x4c\x5e\xcb\x3e\xaf\x7d\x33\xa9\xc9\x7d\x5e\xea\x66\xf2\x38\x76\xac\x95\x92\xfb\xb2\xae\x6c\x6e\xc3\xcb\x12\xe6\x22\xe3\xc5\x99\x44\xe9\x8e\xd3\x66\x12\xa5\x3b\x3e\x9a\x49\x50\xd6\x6d\xf5\x70\x35\xac\x1e\xa1\x06\xf6\x56\x06\x4e\x5d\x89\x69\xda\x97\x8a\x3b\x65\x92\x8b\xb5\xb0\x1e\xf2\x16\x2a\xf9\x5f\x26\x79\x54\x97\x95\x20\x8b\xa7\x62\x25\x28\xdb\xa6\x57\xa2\x4a\x26\xd9\x5a\x97\x95\x30\x44\x7a\x5d\xb9\x6c\x55\x0d\xf1\xaf\x92\xdb\x7a\xad\xd0\x21\x99\x56\x1b\x77\x4e\xfa\xbb\x36\x48\x97\x80\xaa\x9d\xbd\x95\x65\x5b\xf1\x6b\x4c\xae\x50\x45\xc3\x2b\x41\xae\xd7\xce\x91\x92\xe8\xa8\xe4\x51\x9a\xc4\x4f\xb5\x45\xba\x3e\x99\x7e\x4d\x33\x49\x87\x6a\xac\xba\x84\x41\xc5\xd1\x29\x23\x07\x9d\xab\xbe\x6f\x39\xe8\x43\x83\xc6\x70\x48\xd7\xad\xac\x5c\x42\x3d\xaa\xf7\xea\xeb\x93\xec\xc1\x22\xeb\x12\xd6\x19\x88\x1a\x4a\xbe\xea\x35\xc8\x20\xd4\x9d\xab\x04\x8e\x76\x19\x6b\x15\x95\xbf\xcb\x36\xab\x83\xcd\x76\xf1\x82\xa3\xb3\x97\x6c\x80\x5b\x59\xb3\x75\xb0\xc8\xba\xb7\x75\x86\x74\xc6\xae\xdb\x50\xa7\xfe\x1e\x4a\x02\xeb\x95\x64\x6c\xd3\x15\xab\xc7\x22\x4c\x87\x8e\xbb\xaf\x34\xb1\xce\x3b\x5a\x33\x99\x95\xf5\x64\x4d\x65\x9c\xd4\x75\xf7\x25\x1c\x2b\x1a\x7e\xd7\x8d\xaa\xdc\xec\x7d\xcf\x1e\xd0\x21\xb1\x55\x6f\x56\x4c\x3e\x44\xbd\xa1\x23\xef\xdc\xba\xea\x79\x81\x66\x78\x78\xec\xb2\x56\x2a\x77\x7f\x97\xb5\x52\xe7\xc3\xcf\xd0\x4b\x7d\xaf\xb8\x1d\x7a\xa9\xef\x95\x9b\xed\x92\x41\x0d\xed\xbc\xd7\xdf\xc9\x42\xec\x0d\xe7\x60\x97\x49\xd5\xe6\x33\x51\x73\xad\x5e\x43\xcb\xba\x16\xab\xcd\x17\x9d\xe6\xe2\xab\xcd\x70\x46\x73\xb1\xd1\x76\xc6\x10\x1b\x6d\x67\xf5\x6a\xf6\x80\x0d\x45\x1e\x5a\x5d\x54\x77\x35\x54\xc6\xc8\x06\xd6\x46\x81\x86\x56\x39\x2b\x0a\x34\xb4\x19\x2a\x6e\x2e\x2b\xac\xcd\x7c\xc9\xa1\x0c\xde\xde\x66\xec\xb8\xb9\xcc\xb2\xd6\xd6\xa0\x62\xae\xb1\x9c\xb9\x1e\x33\x8a\xd2\x3c\x49\x27\x8a\xa2\x67\xb3\x3e\x53\xe9\x3f\x3d\xc4\x4b\x87\x30\x89\x9f\xd6\xd9\x67\xd9\x7a\x8d\x08\xc8\x2e\x5b\xaf\xcd\xdc\xbe\xb1\xcb\xd6\x6b\x44\x40\x76\x59\x61\xcd\x16\x61\xd9\xb0\x08\xd3\x7a\x18\x5b\x29\x3b\xad\x11\x23\xd1\x6b\x5d\x6f\xbe\x28\xcd\x06\x16\x39\x17\x08\x95\xef\xb9\x1e\xbe\xe8\xc8\x1e\x8b\x17\xf5\xc0\x05\xf1\xe4\x25\xe0\x45\xe1\xae\x86\x0b\xe2\xc9\xdc\x7c\xae\x1a\xbb\xa4\x6f\x23\xce\xb2\xcb\xf8\x6b\xd3\x05\x69\x9e\xec\x07\x6b\xda\x73\x16\x36\x3b\xb9\xc5\x27\xd1\x33\x62\x6f\x63\x11\x26\x6e\x97\x3c\x92\xbd\xd8\x0e\x16\x48\x42\xbf\x11\x89\xd9\x25\xf4\xdb\x8c\x28\x37\x4f\xf6\x0f\x04\x43\xcf\x06\xf6\x25\xd7\xe3\x58\x74\xa8\x81\x20\xf4\x2e\xb5\xd0\x4e\x56\x3d\xb9\x3d\x19\x23\x99\xc3\x27\xf1\xe4\x85\x58\xcd\x2e\x93\xb0\xe1\x93\x78\x52\x8a\x73\xa0\xe4\xf4\xde\xf0\x05\x3c\xa7\x25\x2e\xe2\x52\x3e\x6d\x49\x1b\xe9\x89\xf6\x40\x87\xb4\x51\xc3\x7d\xd8\xa5\x27\xda\xcb\x35\x95\x5a\x68\xbc\x4e\xb9\x82\x2d\x8d\xe0\xaf\x2b\xb6\xd2\x5e\x76\x4e\x6a\x81\x52\x80\xa1\x27\xd1\xde\x09\x72\xb8\x0c\xcf\xbe\xad\x69\x9b\x1a\xd8\x6c\xd1\xd1\xb7\x35\xc6\x77\xda\x4e\xf9\x8a\x8b\xb0\x5e\x38\x85\x32\x91\x3b\x81\x5b\x17\x1d\xbd\xac\x31\x34\x2d\x01\x0a\xbd\xb3\xf6\xbe\xa4\x94\x74\x4d\xc7\x38\xf1\x24\xbd\xb2\xc8\x49\x29\x11\x0b\x3d\xbc\xf6\x5e\x59\xf5\xa4\xb4\xc2\x9c\x74\x4d\xaf\x08\x47\x19\x7c\x7d\xc9\xb1\x24\x7d\xc9\x31\x59\x80\xbd\x71\xa4\x64\x01\xf6\xc6\x12\x26\x2f\x8d\x3b\x97\xbc\x10\x0d\xde\x65\x88\xf7\xb6\x78\x11\x73\x9d\x63\x99\xa4\xe3\x98\x78\x52\x8a\x63\xb2\x4b\xe7\xf5\xbe\x48\xd7\xb4\xd8\x44\x9e\xbc\xd8\x1a\x54\xa4\x3b\x8b\xac\xc8\x5a\x27\xa6\xe1\xc9\xcb\x12\x28\xf1\x3b\x59\x88\xbd\x63\xa8\x78\xd2\xb4\x64\x89\xc2\x5d\x7d\x19\x2a\x0a\x77\xf5\xe9\x2d\x34\xff\xd1\x30\xb5\xac\xde\x8f\x7b\x9f\x36\x45\x53\x92\x7c\xef\xf3\x51\x7a\x54\xf9\x02\xfd\x5c\x9f\x68\x96\x69\x42\x0c\xbd\x30\xf7\x8e\xfb\x10\x72\x30\x3a\xee\x43\xe4\x2c\xd3\x7d\x18\x7a\x72\xee\x7d\x06\x4f\x47\x95\x9d\xd6\xb1\x29\x22\xa7\x25\x3e\x1a\x39\x2d\xd7\xbe\xca\x70\xeb\x33\xff\xab\x45\xd2\xc1\x1b\x74\xe4\x2c\x44\x0d\xf4\xb0\xdd\x3b\x11\xd4\x2a\x4b\xae\xe3\x71\x54\x19\x6e\x7d\x56\xa4\x8d\x2a\xb3\x8c\x54\xbe\x51\x65\x96\xd9\xbc\xc3\xa3\xca\x0a\x33\x02\x95\xa1\x31\x6c\x63\xc5\x14\x88\x32\x02\x95\x4a\xb1\xec\x56\xa0\x43\x86\x85\x51\xc6\x12\x39\x0b\x31\x01\xbd\x85\x77\x23\x26\x10\x39\x2d\x4f\x2b\x55\xa6\x87\x61\x7a\xd4\x3d\x7b\xb0\x1e\x49\x07\x51\xc7\x50\xfc\xcb\xea\x9a\x36\xd4\xb0\x78\x19\x6a\x60\xd5\xf7\x6c\x60\x3d\x64\x7a\x18\x71\x80\x2a\xb3\xc1\x1a\x9f\xc8\x4a\x30\xae\x5b\xc8\xc4\x34\x02\x03\x7a\x1c\xef\x86\xca\x57\xd1\x40\x37\xd2\x4d\x22\x17\x88\x10\x62\x95\x9a\x34\x5e\x41\xaa\xb4\xa2\x39\xbc\xe4\x8a\xa1\xd0\xab\xb4\xa2\x39\xfb\x22\x15\x67\x38\xf5\x55\x1a\xcd\x78\xb6\x56\x02\x73\x37\x34\x7c\x95\xfe\x36\x34\x7c\xe4\xaa\xa3\xe1\xf5\xc0\xde\x0d\xed\x5c\xa5\xe2\x8c\x48\x5d\xe4\xbe\x1c\xeb\x13\x91\x4e\xa4\x2e\xf6\x6c\xe0\x56\xca\x67\xb5\x93\x3b\xd7\xb3\x61\x71\x2b\x5e\x4e\xb8\xed\xd9\xb0\x06\x15\x73\x17\x37\x2a\x77\x0e\xc3\x3e\x64\x23\x1a\x4f\x1a\xaa\xcc\xe8\x76\xb3\x51\xd2\x79\xc6\x9b\x84\x4a\x35\xba\x61\xd8\x2b\xd1\xb7\xdb\xbc\x73\x2d\x6a\x36\x70\x1c\xa4\x7b\x0d\xc3\xbe\x4a\xc5\xd9\xbb\x3e\x11\x73\xeb\x12\x4a\xc5\x19\x9a\x55\x8f\xfb\xdd\xd6\xad\x94\x7a\xf2\x6d\x7d\x62\x6a\xe0\x48\xc9\x12\x75\xde\x48\xa3\xe5\x27\xb0\x2f\x63\xcd\x79\x12\x55\x8e\x72\xf7\xb2\xc6\x08\x35\x70\xc5\xa4\x49\xfc\x7f\x28\x0c\xeb\xce\x0b\x68\x95\x6a\xf1\x9d\x31\x7a\x36\x30\x86\xf4\x04\xf9\x81\x2d\x74\xc6\x1c\x65\x5c\xa5\x27\x9c\xe0\x5e\xe8\x8c\x39\x6f\xa4\xaa\x55\xe8\x5e\xd7\x27\xdf\x7d\xf1\xb6\x3e\xd1\x18\x0d\x89\x2b\xed\xe1\x78\x08\x2a\x6f\xe8\x4e\x84\x2f\x7a\xf6\xe0\xc0\xe8\xd0\x51\x36\x38\x6a\x64\x03\xdb\x10\xbf\x93\xc4\xd1\x9d\x48\x9d\xb2\xa2\xbb\x1b\x87\x58\xb6\x9e\x13\x35\x08\x85\xff\x1c\xd3\x5f\x25\x17\xdd\x8d\x03\xa8\xf3\xe6\x4b\x30\x28\x68\xe2\x0e\xe7\xb2\xb1\xdc\xe1\x5c\x51\x14\x77\x2e\x93\xa2\x28\x8e\x2f\xa0\xdc\xeb\xee\xa8\xee\x3a\x72\x0c\x2e\x93\x0e\xb1\x93\xa9\xa6\x64\xec\xee\x64\xa8\x28\x19\xbb\x7b\xb0\x47\x3a\xb3\xce\x63\x43\x55\x8c\xc4\x09\x23\x44\x1e\xe2\xc1\xe1\x51\x48\xc4\x79\x06\x68\x0a\x89\x38\xcf\x00\xca\xdf\xee\x4e\x22\x88\xf2\x1c\xba\xa3\xae\x95\xe7\xd0\x9d\xe7\x51\xa5\x35\x74\xbf\xd6\xb4\x62\x6e\xc6\xf4\x87\xd2\x1a\xba\xa3\xae\x95\xd6\xd0\xfd\x82\x97\x3c\xd5\x24\x82\x28\xa1\xbb\xfb\x7c\x1e\x1d\x99\xd6\xe0\x53\x3b\x8f\x4c\x49\xf0\x07\x4a\xa5\x8c\x1d\x93\x5b\x25\x4a\xdd\x97\x1c\xc8\x73\x3f\xa3\x7d\xa3\x95\x6c\xe0\xc0\xe4\x31\x27\x45\xa3\x95\x6c\xe0\x10\xe7\x31\x9f\x4f\x91\x23\xb3\x18\xfc\x65\x2b\x15\xed\x73\x84\x4b\x93\x56\x0c\x9e\x01\x94\x14\xde\x83\x9c\x0d\x25\x85\xf7\x20\x96\xd0\xa4\xd1\x62\x6a\xe7\xd1\xa4\xc0\xa2\xc0\x9c\x14\x58\x14\x66\x91\x7a\x0a\x12\x4a\x95\x25\xde\x63\xd6\x94\x8e\x26\xd5\x12\x3c\x45\x2a\x6d\xbc\xc7\xce\x7a\x48\x93\x04\x45\xa6\xca\x23\xef\xb1\xb3\x1e\xd2\x24\x31\xc3\x90\x4d\x89\xe5\x3d\x08\x43\x2a\xb1\xbc\xc7\xbe\x08\x13\x1d\x75\xf5\x50\x43\x5b\x84\x89\x8e\xb6\x98\xd3\xb4\x58\xd8\x4a\x0a\xef\xc1\xbb\x62\x93\x26\x09\x42\x07\xca\x12\xef\x31\x1f\x1a\x47\x93\xd9\x10\x3c\x1f\x28\x6d\xbc\x47\x67\x16\xd9\x11\x41\xa0\x52\x59\xe2\x3d\xb0\xc1\x95\x25\xde\xc3\xd6\x18\x22\xcc\xd6\x18\xfa\x84\xab\x3e\x72\xe7\x66\x05\x40\x1b\xb9\x73\x5c\xf5\x91\x3b\xe7\x2c\x90\x34\x5a\x90\xb6\x3a\x72\x2b\x09\xec\x8f\xdc\xb9\x58\xb3\x68\xda\x58\xb3\x68\x8c\xf9\x14\x39\x9a\xc2\x0f\x41\x32\x5a\x26\x71\xc4\x58\x83\x6a\x1b\xc6\x22\x4c\xdb\x40\x08\x31\xd3\x3c\x62\xd6\x91\x8f\xcc\xea\x88\x83\x03\x23\xab\x29\x0e\x0e\xae\xac\xa6\xc0\xd2\x18\xb9\x0d\xb8\xec\x23\x57\xfd\x5c\x3d\x44\x07\xef\x09\x4a\x04\xef\x71\xad\x59\xc4\x0b\x0e\xc1\x48\xe6\x70\x08\x94\x19\xde\x03\xf9\xa1\xcc\xf0\x1e\x98\x1e\x23\xd9\xbf\xa1\x23\x99\xe3\xd5\xb0\x49\x91\xc6\xcd\x2c\xc9\xed\xcd\x9a\x4a\x91\xc6\xc3\x7a\x48\x09\xc6\xc3\xf9\x48\x4a\x1f\x0e\x6e\xdf\x7f\x47\x81\x51\x0a\xd3\x86\x34\xe4\xd8\xb8\x6e\xd2\x90\x03\xd3\x5f\x15\x92\x7d\x6c\x6b\x02\xf5\x20\x25\x21\xf3\x48\x46\x61\x4b\x14\xbd\x18\xb8\xef\xca\xbd\xee\xa3\xa0\x05\x14\xce\x18\x33\x25\xa1\x29\xf7\xba\x8f\x75\xcb\xa5\x26\x07\x46\x46\xfb\xd1\x03\xf9\x9c\x3d\xf0\xe7\x87\xf4\xd5\xa8\x5c\x48\x69\xd6\x41\xc2\x81\x52\xad\xfb\xe0\xf5\x21\x33\x43\x46\x5d\xa4\x8b\x5b\x02\x95\x99\xf7\x31\x70\xf0\x95\x7b\xdd\x07\xee\xbb\x52\xad\xfb\xc0\xa6\xc8\x44\x90\x41\x66\x56\x4b\xc2\x78\xb0\x50\x36\x72\x1f\x1d\x3a\x92\xb0\x25\x18\xa4\x16\x46\x5f\x83\x6a\xda\x05\xfc\x20\xb5\x30\x48\x5a\x50\x36\x72\x1f\xb6\x66\x11\x2f\x4b\x74\x24\xa5\x78\x1c\x99\x6e\x32\x70\x30\x32\x99\x64\x90\x88\xa5\x84\xdd\x3e\x78\x9f\x50\x7e\x6e\x1f\xf3\xda\xf7\x4d\xd2\x77\xcc\x5b\xde\x37\xa9\xeb\x31\x73\xd1\xfb\x26\xdd\x3b\xd6\x2d\x97\xaa\xa5\x10\xa3\x2b\x61\xb7\x0f\xfc\x89\x96\x0b\x34\xbd\xfc\xae\x84\xdd\x3e\xa6\x83\xd1\x37\xb9\xdb\x83\xd0\x5d\xcb\x15\x23\x74\xd7\x72\x81\x96\x1d\x21\x35\x39\xce\x45\x58\x36\x4c\x30\x82\x4d\x42\x7f\x4c\x49\xd1\x37\xc9\xf8\x41\x2c\xaf\x49\x91\x0e\x32\x4c\x9b\x14\xe9\xb8\x60\x5f\x42\x7f\x5c\x80\x22\xc8\x55\x1e\x17\x74\x8c\xec\x01\x1d\x32\x0a\x06\x09\x07\x6d\xe4\x27\x8b\x30\x31\x77\xb1\x84\x32\xf8\x06\x29\x09\x4d\x91\x93\x41\x86\x69\xcb\x9d\x03\x74\x43\xe9\xb3\x7d\x3c\xac\xa9\x44\xfa\x78\xd8\xca\x3d\x3f\x99\xb7\xa1\xe7\xde\x3e\xac\xba\x24\xf8\x78\x58\x20\x49\xf0\x41\xda\x6a\xcf\xdd\xe7\xc1\xb3\xcb\x58\x1b\xb8\x42\x5d\xb6\xd9\x78\x17\x1d\xda\x86\x17\x6e\xe5\xd6\x8d\x69\xe0\x8c\x9e\xbb\x3f\x9d\xa5\xbe\xc9\xcf\x3b\xe6\xc3\x49\x57\x92\x6e\x3f\x36\xb6\x41\x5a\xe0\x98\xbe\xd1\xe8\xda\xdb\xa3\xac\x4f\x9a\x1a\x2a\x3d\x34\x68\x81\x30\xa9\xda\x63\x5f\x3d\xf4\xc9\xce\xc1\x95\x16\x38\x78\x23\xcd\x9c\x9e\x03\xc0\x8b\x4c\x9f\x3d\x08\x54\x66\x4e\x0f\x25\x45\x23\x53\x78\x0e\xf2\xa4\x32\x63\xe7\xa8\xec\x9c\x34\xc9\x01\x58\x45\x26\xd8\x1e\x0d\x5e\xa4\x38\x8e\xb6\x3e\x11\x1d\x0d\xc2\x64\x14\x1c\x6d\x11\x26\x3a\x3a\xbb\x2f\x5f\xf1\x20\xf7\xb3\xeb\x38\x1c\x53\xc2\xf4\xcc\xa7\x3d\x8c\xf5\xd8\xf3\x93\x35\xed\x50\xc3\x9a\x36\x3f\x81\xdb\xdc\x39\x64\x50\xcf\x9d\x23\x51\xa1\xff\x56\x1d\x58\x3f\x78\xd2\xe8\xb9\x8b\xc4\x37\x7a\x6e\x5a\xac\x19\xc5\x06\x76\x49\x97\xfa\x3f\x06\x7c\x49\x0f\x1f\x24\x2d\x64\x2a\xce\x81\x1b\xd3\xa5\xfe\x0f\x1e\x1b\x7a\x6e\xc9\xf4\x5a\x7a\x26\xfd\x1e\x88\xb0\x9e\x7b\xc4\x6b\x68\xcf\x3d\x22\x02\x92\xc9\x3a\xc7\xc9\x2c\xb9\x25\xd7\x1a\x34\x1b\xa6\xe8\xc8\xcc\x9b\x63\x89\x0e\x29\xe3\xe3\xe2\x78\xc9\x40\x38\x2e\xce\x8a\xf4\xf7\x71\xb3\x1e\xd2\xbd\x07\x31\xc5\x2e\x27\xf6\x78\x38\x4d\x52\xe8\xc7\x12\x1d\x52\xe8\xc7\xc3\xb4\x3f\xc6\x60\x5a\x29\x52\x2a\x57\x47\x97\xce\x3b\xf0\x49\x32\x97\xe6\x24\x8f\x3c\x53\x67\xce\x8d\xcb\x24\x3a\x4e\x4c\x8f\xcc\x94\x39\xb7\x35\xed\x97\xfd\xb3\x2c\xc2\xd4\x03\x27\x25\x73\x69\x4e\x6c\x91\xcc\xa5\x39\x09\x67\xa8\xb4\xbe\x9f\x3b\xb3\xc8\x13\x3c\x77\x2e\x82\x78\x39\xd7\x0d\x95\xbe\x3a\xc9\xf0\xce\xf4\x9b\x13\x4b\x23\xb3\x6d\xce\xca\x29\x94\x02\x3b\x81\x7f\xc9\x6c\xe4\x13\xb4\x97\xcc\x35\x3e\xc9\x73\x10\x9e\x43\x3f\xb1\x23\xba\xf4\xf7\x49\xfe\x76\x97\x02\x3b\xd7\x95\xcd\x05\xea\x70\x2b\xf5\x74\x76\x04\x65\x72\x4b\x5a\x43\x97\xbe\x3a\x8d\x35\x4d\x5e\x0c\xe9\x9b\xbc\x38\xfb\x22\x45\x7a\x62\x25\x74\x29\x9f\xd3\x11\x94\x49\xba\x43\x58\x92\xee\x9c\xc2\x24\x7d\xdd\x5b\xe9\xab\x33\x98\x25\x49\xc7\x9f\xe8\xf2\x15\xcf\x80\x17\x69\xb4\x73\x59\x1a\xb2\x45\x4e\x0c\x8b\x2e\xe7\xf1\x9c\x25\x6c\x43\xc8\x55\xfd\xc4\x6c\xc8\xa4\xd4\x73\x7a\x0b\x3d\x93\x52\xcf\xf9\x5a\xd0\x8b\xd4\xf5\xc9\x05\xca\x7c\xc9\xf3\xa6\x87\xf4\xd5\x49\xb2\x5f\xe6\x27\x9d\xb3\x42\xa4\x0b\x00\xad\x9f\xb3\xa4\x76\x64\xc2\xd2\x49\xe8\x3f\x13\x96\x4e\xc2\xf6\x99\xb0\x74\xa2\x48\x33\x61\xe9\x7c\xff\x35\x96\x52\x3f\xe7\x6b\x5d\xcf\x54\xbe\xf3\x5d\xdc\x7e\x17\xe8\x42\x2b\x66\x5e\xde\x35\x23\xfd\x3d\xf3\xf2\x2e\xf2\x82\x04\x23\xd1\x2f\xb4\x62\x66\xb8\x51\x2d\x3e\x4c\x7a\xf3\xe2\xce\x65\x86\xdb\x55\x16\xa6\xd3\x97\x74\xea\xc9\xbb\x00\x84\xfa\xb5\x60\xa0\x74\x4d\x2f\x94\x60\x26\x4e\x5d\x75\x4d\xeb\x6a\x60\x3d\xa4\x6a\x2f\xa2\x7d\x26\xcd\x7a\xa1\xd1\x4c\x8a\xf4\x02\xea\x28\xf3\xc6\xae\x06\xb6\x94\x0e\xff\x85\x0f\x6f\x52\xb5\x57\x67\x5a\x1d\xfe\x6b\xc6\xf1\x7b\xe6\x6b\x5d\x9d\x31\x74\x91\x2f\x63\xf7\x65\x67\x5e\x68\x45\xc1\x8c\xf4\xcb\xd8\xec\xf2\x5b\x21\xc4\xcb\x38\x5e\xba\x19\xd7\x0c\xff\xf5\x4c\xd5\xba\xbc\xfc\x2b\x44\xac\x7e\x11\xed\x33\xc5\x04\x2e\x67\x07\x64\x51\x5e\x3c\x03\x64\x52\xd9\x15\xd0\x24\xf5\x7f\xc5\xea\xa1\x4f\x88\xe5\x99\x42\x00\x17\x51\x7f\xc1\x0e\xf6\x8b\xea\x08\x93\xbd\x78\x51\x1d\x61\x32\x10\x2e\xee\x5f\x26\xa6\x5d\xc7\x22\x5d\x9f\xe0\xbe\x67\xa6\xda\x75\x2c\xd2\x35\x06\x6a\x52\xb8\x23\xfd\x3a\x18\x54\x1a\xfe\x3a\xd7\xa0\x62\x7f\x2a\xd2\x9e\x69\x56\xd7\x54\xa4\x3d\xd3\xac\xae\x59\x64\xda\xf7\x2d\xc7\x78\x68\x10\x61\x17\xa0\x62\x79\x77\x50\xa4\x99\x0f\x77\x61\x61\x9b\xec\x88\x6b\xe6\x08\xf5\x5d\x56\xe9\xf5\xac\x31\xc4\x1c\x16\x76\x66\x66\x5d\x04\x08\x05\x58\xd5\xaf\x75\xed\x65\x69\x5c\x3c\xd2\x67\x4e\xdd\x35\x03\x84\x3d\x13\xb1\xae\xa9\x59\x7b\xa6\x59\x5d\x98\xcb\x99\x66\x75\x4d\x55\xdb\x33\xab\xea\xc6\xa9\xcf\xbc\xbc\x7b\xbe\x2d\xf4\x5d\x77\xe7\xc6\x87\xcf\xac\xbb\x1b\x39\x90\x69\x56\x77\x81\x0e\x1d\xa9\x7b\x62\x86\x0c\x93\x09\x74\x53\x6e\x65\xb2\x78\x6e\x04\x43\xa6\x48\x51\xc6\x3e\x84\xc6\xd5\x6f\x9e\xf1\x4d\x26\xd0\x4d\x69\x82\xc9\x04\xba\x77\xce\x98\xac\xd2\x7b\x5f\xbc\x84\x1a\xe0\x45\xe7\xf4\xde\xd7\xb4\x1a\xb4\xae\x31\xc4\xcb\x12\x2e\x12\xa5\x37\x99\xc4\x26\xb9\x78\x93\x28\x64\x32\xa3\xee\xce\xde\xea\xe0\xde\xb6\x66\xd1\xa0\x5c\xe4\x5d\x5e\xcb\xcd\x45\xde\x65\xea\xde\x84\xed\x33\x2d\xf1\xc6\x56\xcd\xa4\xc3\x3b\x60\x4e\x76\xd5\x1d\x30\x27\xeb\xf8\x0e\x36\x5b\xd7\xe3\x5e\xb7\x52\x02\xfb\x1e\x9c\x31\x49\xdf\x7b\x70\x1c\x74\x81\xee\x03\x5e\x74\xb4\xef\x03\xbc\x3c\x1d\xed\x1b\xe3\xd5\x2c\x1b\xb8\x40\x3a\xb8\x37\x61\x37\xb3\x6c\x60\xc5\x64\xe0\xdc\x3c\xbb\x67\x26\xe3\x7d\x32\xa8\xe2\x22\xf7\xc9\xf5\xa8\xf9\xc9\x9a\x25\x3f\x61\x50\x59\x91\x37\x71\xfc\xcc\x53\xbc\xd7\x35\x55\x5c\xe4\xbe\xe0\x36\x8f\x25\x0f\xf3\x99\xa7\x78\xdf\x70\x9b\xe7\xf4\x46\x28\xc9\x12\xbd\x6f\xae\x58\x9e\x53\xe2\x70\x26\x43\xeb\xc6\x66\x36\xd9\x99\xf7\xb3\x7a\x88\x97\x87\x8d\xca\x23\x85\xab\x9c\x39\x4e\x37\x45\x47\x99\xb8\x78\xbf\x6c\xb6\xec\xee\x1b\xbf\xd7\xa4\x7c\x40\x79\xe8\xbb\x65\x03\xeb\x21\x6d\xf4\x6c\x9c\x42\xed\xfe\xb3\x2e\xb2\xb6\xf2\x59\xf7\x36\xb2\x61\x0d\xea\x6a\xe0\x68\xff\x56\x21\x73\x7f\x0a\x9c\x47\x7e\x0e\xe7\xda\xf8\xa7\xb0\x25\xda\xf8\x87\x77\x01\x93\x79\xf8\xe0\x47\x67\x6a\xd2\x83\x51\x2e\x88\xdb\x0e\xf2\x44\xcf\x4c\x24\x90\x27\x7a\x66\x22\x3d\x15\x2d\xa0\x7d\x7e\x70\x9b\x33\xcf\x08\x28\x8a\x91\x39\x9c\x0f\x28\x90\x99\x67\xf4\xd4\x35\xa8\x78\x69\x1c\x0d\xe9\xde\x07\x80\xc5\x4c\xf8\x79\x00\x1e\xcd\xfc\x9e\x67\x89\x0e\x29\xe3\xa7\x73\xcb\x15\xcd\x79\x30\x32\x32\x03\xe8\x21\xfc\x67\x23\x1b\xd6\x18\x22\x1d\x3b\x3e\x33\x80\x9e\x65\x64\x48\x6f\x3e\x18\xe5\x2e\x13\xf3\xc1\x06\x70\x99\x98\x0f\x25\x93\x99\x6d\xfa\x04\x22\x5d\x8a\x14\x28\x8a\x5e\xa5\x48\x1f\x82\x7b\x55\x8a\xf4\x21\x41\xc7\xa5\xf3\x80\xa2\xe8\x35\xa7\x9d\xae\x72\xcf\x7c\x9c\x67\x2c\xc2\xb4\xd9\x63\xcd\x22\x6e\xc7\x9a\x45\xcc\xcd\x77\x81\x9e\xf9\x38\x0f\x12\x2b\xb3\x6d\x1e\x52\xf9\x5c\x9a\x15\x6c\x8a\xe1\x32\x53\x9f\x03\xc8\xd9\x1f\x0d\x37\x0d\xe2\x05\xff\xdb\x7f\x34\xdc\x34\x88\x17\xac\x84\x4c\x7b\x79\x88\xf6\xb9\x74\xef\x33\xcb\x2e\xbb\x60\x24\xfa\x83\x3c\x72\x29\xe3\x87\x67\x44\x97\x32\x06\xe5\xa8\x57\x99\x62\xcf\xbd\x06\xd5\x2c\x53\x1e\xf5\xcc\xa5\x79\x48\x5a\xf0\x9c\x05\x01\x95\xb9\x34\x0f\xf9\xca\x99\xf9\x0b\x58\xc5\xf0\x9c\x85\xd0\x5d\x66\xb9\x3c\xef\xea\xa1\x41\x5f\xa6\x95\xbe\x02\x68\x62\xb8\x74\x1e\xb8\x12\x5d\xa8\x11\xfd\xdd\x58\x42\x29\x41\xf0\x98\xba\x50\x23\x3a\x98\xb9\x3d\x13\x63\xc0\xcc\x4d\x28\xd6\x0e\x44\x6e\x17\x8c\x44\x07\x22\xb7\x0b\x46\xa2\x03\x91\x3b\x32\x8d\xf7\x45\xc2\x64\xa6\x0c\x68\xb6\x3d\x13\x63\xde\x7d\x7d\xd2\xd4\xc0\x12\x4a\xe7\x2d\x24\xda\x4c\x8c\x01\x78\x76\x64\x4e\xee\x82\x95\xcd\x4c\x19\x20\x31\x46\xa6\xe0\xbe\x95\xb3\x2e\xff\x4a\x38\xb3\xe2\xb6\xc2\xbe\xb4\xc0\xc2\x99\xad\xd2\x02\xe0\xc2\x8e\xcc\xda\x05\xd3\x75\x78\xb2\x8f\x5f\x53\x95\xd6\xb0\x10\x5b\x33\xdb\x06\x80\xd6\x9e\xb9\x34\x13\xa0\xf5\xd3\x20\x3a\x90\x41\x2e\xfb\x0e\xa4\xd4\xe1\x52\x93\x6f\x67\x3d\x2c\x7b\xb0\xc8\x96\x3d\x58\x20\xe9\x4d\x60\x4f\x7b\x95\x27\x38\x51\x3d\x4b\xcf\x1c\x96\x17\xc7\x44\xf0\x13\x1d\xcc\xce\x2e\x70\x89\x0e\xbc\xe6\xc8\x54\x60\xc0\x33\x7b\x26\xa4\xbc\x4b\x28\x29\x3e\xb3\xb0\x24\x32\x6b\x17\xa0\xc7\x2e\xc8\x86\x0e\x6a\xe3\xf0\xfe\x5b\x75\x60\x2f\xc6\x8e\xe7\x3e\x1f\x6b\x3c\xd1\xc4\xdb\x42\xa6\xf4\xbe\x4b\x74\xe4\x96\xe0\x71\x64\x7a\x05\x58\x88\x3d\x53\x23\x40\xaf\xe8\x99\x09\x01\xf4\xe1\xf0\xdc\xc5\x29\x7e\x7a\xa6\x46\x00\x6c\xd8\x33\x13\x02\xf4\x8a\x9e\x99\x10\xa0\x57\x0c\x97\xc5\xf0\xde\x9c\x26\x59\x94\xef\x12\x1d\xb9\x47\x38\x29\x99\xc5\xf0\x2e\x49\x21\xf5\xff\x92\xd6\xe0\xb2\xe4\x5e\x0a\x19\xdc\xf2\x93\x79\x34\x32\xf1\xe1\x5d\xb2\x24\x37\xfe\x85\x52\xc9\x56\x80\x26\x46\x26\xdb\xbe\x38\x29\x4d\xc2\xf6\x25\xa6\x2f\xf8\x06\xdb\x28\x62\x52\x5e\xac\x01\x01\x31\x94\x17\x6b\x40\x40\x74\x65\x53\xd8\x36\x25\x45\x57\xf2\x84\x81\x09\xd1\x95\x2b\x61\x1b\x69\x0d\xca\x8b\xb5\x8d\x88\xa1\xb2\x5e\x6d\xc3\x49\x51\xd6\xab\x01\x01\xd1\x95\x09\x61\x1b\x2e\x88\xb2\x5e\x6d\x61\x42\x08\x81\xd2\x36\x42\x88\x4a\x7c\x30\x60\xe9\xba\xf2\x1c\x6c\x81\x44\x28\xf5\xd5\x36\x92\x8f\x85\xfe\x6c\xc0\xee\x0f\x0f\x71\x4b\x16\xb0\x0f\x51\xda\x58\xc2\xaf\xf4\xb5\x0d\x27\x45\xb8\x12\xb6\x75\xd6\xa3\x8a\x74\x4c\x0f\x65\x31\xd8\xc6\xb5\x57\xd2\x82\x81\x09\x31\x04\x3a\x6d\x5b\x67\x96\x2a\x5e\xa8\x55\x50\x0a\xae\x6d\xce\x19\x1b\x22\x9d\x8a\x24\x1f\x22\x9d\x4b\xad\x47\x7a\xdb\x70\x74\x94\xa4\x6b\x5b\x40\x47\xcb\x31\x5e\x7a\x68\x5a\x1c\x1d\xa5\xcf\x1a\xe0\x0c\x5d\xcf\xe7\xb6\x11\xa5\x57\xfa\xac\x81\xd6\xd0\xf5\x7c\x6e\x1b\x50\x36\xca\xa7\xb5\x05\xdf\x10\x9b\x28\x9d\xc2\xa0\xeb\xb9\xdb\x36\xe2\x81\x7a\xdd\xb6\x6d\x86\x1f\x46\x6c\xd9\xc0\xb4\x45\x74\x9c\x4c\x6b\x5a\x42\x1c\x1d\xbd\x5d\xdb\x06\x72\x8d\x70\xbb\x0d\x80\x87\xa1\x8c\x5b\x5b\xf0\x0d\x91\xb7\x61\xdd\x7d\x13\xe9\xe4\x38\x45\x1e\xfe\x0b\xd2\x4d\xa4\xe3\x2c\x45\xde\x86\x6b\x4d\xab\x05\xc2\x38\x51\xfa\xac\x01\x01\xd1\xf5\xdc\x6d\x1b\xbe\x91\xf2\x69\x6d\xbb\x17\xb7\xd9\x83\xb3\xee\x62\x9f\xd8\xa6\xd2\x56\x6d\xbb\xc1\x56\x77\x71\x4b\xd2\xb2\xb2\x43\x6d\x7b\x57\x83\xe8\xc0\x16\x69\x79\xf7\xc1\xb6\x51\x76\xa8\x6d\x84\x41\x5a\x0a\x03\x9c\x25\xe5\x7e\x5a\xe1\x81\x41\xb9\x9f\x56\x30\x5f\x04\x2f\x60\xfc\x10\xc5\x08\x1d\x7e\x10\x1a\xba\xe0\x05\xac\x10\xfd\x0c\x1d\xfe\x52\xd8\x86\xaf\x63\x62\xfc\x3a\xc5\x50\xfe\xa8\x95\xb2\xe8\x30\x35\xb0\xb7\x5f\xb3\xc1\x40\x68\xe8\x7a\x00\xb6\x05\xc8\x10\x5f\xb3\xc1\x00\x64\xe8\x6d\xfc\xce\x1b\x98\x15\x9c\x25\x81\x8b\x5b\x01\x21\x5f\xaf\xc3\x56\x2a\x57\x65\x88\xc8\xba\x26\x10\x91\x0b\xff\x5e\x77\xb8\x00\x4f\x2f\xc8\x03\x2b\xa0\xd1\xeb\x31\xd8\x0a\x86\x8a\xd2\x4f\xad\x4c\x79\x34\x94\x7e\x6a\x85\x64\xca\x68\x9a\x96\x14\xa9\x90\x1c\x28\x33\x35\xa2\xeb\x65\xd7\x0a\x86\x8a\x32\x56\xad\x20\xb1\xba\x6e\xe8\x82\x6f\x50\x0a\xab\x01\xdf\x30\x94\xb1\x6a\x05\x89\xa5\x87\x5c\x2b\x78\x4f\x42\x60\xb6\x42\xa5\xa6\xd2\x4f\xad\xf0\xe8\xa1\x37\x57\x2b\x06\xa0\xbf\x8e\x79\x99\x49\x98\x5d\x90\x07\x06\xe2\xc3\x50\xc6\xaa\x2d\xc4\x07\x25\x97\x1a\x88\x0f\x43\xb8\xbb\x56\xf0\xc0\x84\xbb\x6b\xc0\x37\x74\x3d\xa0\x1a\x68\x0d\x43\x40\xbc\x56\x02\x3a\x74\xee\x0b\x52\xaf\xe7\x31\xc7\xbf\x52\xca\xa9\x95\x63\xf5\xd0\xaa\x23\xd3\x7a\x9e\x48\x9c\x25\x25\xa5\x5a\x21\x0a\xdb\xf3\x88\x62\x02\xf5\x26\x3a\x30\x81\x94\xb6\x6a\xe5\xe4\x7c\x34\xd1\x81\xd4\xd3\x93\xa8\x95\x73\xcd\xa2\x69\x09\xef\xf4\x3c\x30\xe7\x9a\x45\x74\x60\xf1\xf4\x3c\x30\x4b\xc8\x49\xb8\x14\x6a\x39\x95\x94\x6a\x65\x89\x30\xd7\xb4\x4b\x40\xb9\x66\xb9\x11\xfa\xae\x59\xc0\xda\x52\xba\xa8\x15\xde\x37\x05\x79\x60\xe5\x85\xb9\x3c\x1f\xbc\xb5\xf4\x2e\x5e\x5e\x7e\x6f\x24\x37\x1b\xf3\xa5\x6b\xb3\x81\x5e\xe8\xfa\xa5\x1f\x03\x58\xa1\xeb\x9d\xd5\x40\x49\xe8\x02\x20\x30\x7e\x21\xa6\x77\x71\xbb\x2f\xd1\x11\xf9\x09\xb3\x88\xfd\x7d\x66\x54\xf6\x2e\xf6\xf7\x25\x4b\x24\xc2\x76\x52\x12\x94\x83\x6a\x3b\xd6\x8a\x52\x4e\x6d\xdf\xd7\xb4\xf9\x09\xa7\x50\xc6\x09\xe0\x0c\x5d\x8f\xb7\xb6\x23\x50\xf4\xce\x6a\x3b\x49\x0b\xca\x41\xb5\x9d\xe8\x8b\x1e\x5e\x6d\xa7\x76\x4a\x39\xa8\x06\x9e\xc3\x50\x0e\xaa\xed\x18\x38\x02\x26\xb6\x9d\x07\x9c\x9e\x74\x60\xf1\xe8\x8d\xd4\x76\x82\x2d\x82\x2e\xb6\x7d\x09\x14\x59\x4d\x0b\x90\x41\x3f\x77\x64\xfb\xf4\x7c\x7a\x4f\x4a\xfb\x1a\x43\x0d\xa4\x35\x28\xc3\xd4\x76\x82\x2d\xca\x30\xb5\x7d\x49\x87\xe4\x85\x37\x9a\x9e\xbc\xf8\x1a\x43\xbc\x38\xeb\x91\xcc\xe1\x1b\xf5\x24\x1d\xf9\x21\xf8\x63\xdb\x71\x96\xf4\xce\x6a\x3b\xb5\xe0\xc2\x43\x36\xf0\x17\x86\xf0\x90\x6d\x27\xa4\xd3\x25\xc6\x77\x0c\x2d\x01\x24\xdb\x8e\x5d\xa5\x5c\x58\xdb\x79\xc5\x11\x40\xb2\xed\x44\x70\x2c\x49\x1f\x6b\x0c\x2d\xd0\xc4\x70\xe8\x96\xd3\x1e\xf4\x90\x09\xb4\x23\x61\x46\xf9\x9d\x42\x66\xdb\x8f\x35\x9e\x88\x9c\xcf\xb4\x43\x99\xb3\xb6\x13\x5d\x16\xe0\xb2\xed\x3c\x02\x59\xb2\x41\xba\x97\x10\x98\x6d\x3f\x17\x1b\xe2\x0b\x0f\xcc\x92\x0d\x82\x37\x96\xb3\x10\x89\x51\x2a\xad\xed\xc8\x12\xa5\xd2\xda\xfe\x32\xad\x2c\x06\xe0\x1b\xba\x5e\xa7\x6c\x27\x88\xab\x77\x23\xdb\x49\x7c\x50\x2a\xad\xd5\x6d\x8d\x11\x6a\x80\x74\x39\x07\x75\x5b\x63\x0c\x35\x40\xba\xc4\xf1\xc2\x73\x50\xf6\xad\x55\x1e\x70\x94\x5b\x6b\x95\x28\x8a\x5e\x74\x8c\x9f\x75\x1a\x4a\xb6\xb5\x8a\xd9\x20\xd0\x66\x03\xcf\x61\x08\xb4\xd9\x2a\x41\x57\x3d\xf1\x18\x00\x0f\x5d\x4f\x3c\x06\x5a\xc3\x10\xac\xb3\x55\x8c\x02\xc1\x30\x5b\x6d\x8b\x74\x4d\x4b\xb0\x42\xaf\x31\x56\x49\x8f\x1c\xb9\x1e\xa8\x7c\x93\xf4\x05\xe0\x61\x8c\x5c\x0f\x6c\x80\x91\xeb\x41\x6a\xe3\x48\x6e\x71\x52\x46\x92\xce\x95\xb5\x2e\xc2\xd0\xdf\x23\x79\x71\x8e\x83\x64\x7c\x25\xa4\xaa\x74\x5c\x03\xad\xa1\xeb\x01\xc7\xc0\x62\xe8\x7a\xc0\xb1\x4a\xb9\x95\xb0\x9d\xad\x06\xe7\xc3\x44\x18\x6f\x3e\x02\x7b\xb6\x4a\xb9\x95\xc0\x9e\xad\xc6\x62\x4e\xeb\x11\xac\x98\xd4\x75\x25\x61\x49\x4f\x3c\x06\x5a\x43\xd7\x7b\x8d\x81\xd6\xd0\xf5\x3c\x63\x75\x5d\x59\x39\x07\x95\x28\x8a\x00\xa3\xad\x92\x2b\x31\x72\xd5\xc9\xca\xd4\x5b\x8b\xd5\x75\x2b\x65\xf1\x54\xbc\x16\xc1\x41\x5b\xe5\x15\x55\xcf\x22\x06\x38\xc3\x18\xb9\xea\xa4\x34\xe9\x9d\xc4\x2a\xe9\x91\xc2\x84\xb0\x8a\xd7\x32\x72\x1b\x78\x78\x1d\xb9\xea\x44\x3f\xf5\xeb\x56\x56\x49\x58\xd2\x2b\x88\x55\x34\xfc\xc8\x7d\xe1\xe1\x75\xe4\x36\x90\xb0\xa4\x1f\x63\xb3\x8a\x0b\xa2\x1c\x65\xab\x3c\xbc\xea\x91\xc2\x2a\xef\x35\xca\x51\xb6\xc6\xb3\xaa\x72\x94\xad\x6d\x6b\x16\x53\xc3\xd4\x57\x7a\x3e\xb0\x46\xc4\x42\x8f\x03\xd6\xd6\xad\xd4\x46\x35\xde\x59\xf5\x5a\x60\x8d\x67\xd5\xa1\x9d\x6b\x85\xe3\x20\x8d\xd6\x78\x4e\x19\xb2\x23\xda\xce\xf9\x90\x16\x68\xeb\xaa\x6b\x2b\x1b\xa1\x4c\x21\x37\xdb\x42\x68\x10\x72\xb3\x35\x22\x97\x2e\x25\x08\x42\x43\x77\x29\xc1\x86\x22\xd5\x8b\x83\x35\xb2\x8f\xf4\xe3\x74\xd6\xd0\xac\xfa\x35\x3a\x6b\x24\x4f\xe8\x4d\xc2\x1a\xf9\x81\x82\x83\xb6\xc6\xb3\xaa\x4b\xc5\x35\x12\x06\x05\x07\x6d\x8d\x67\x55\xfd\xa8\x88\xb5\xa5\x6a\x65\xf1\x34\x6a\x9d\x94\x5e\x6d\xcd\xd7\x18\xfa\x24\xd8\x4a\x19\x16\x2d\x16\x2f\x22\x9d\x24\xc1\x11\xfe\x3b\x0a\xac\x8d\x35\x9e\x56\x8f\x47\x58\xc1\x3a\x1b\xbf\xc1\xd1\xf5\x72\x60\x6d\x40\xa4\x4c\x88\x46\xf2\xc4\xc8\xb3\x42\x58\x53\x4f\x09\xd6\xd6\x0d\xcd\xc3\x73\x30\x4b\x9e\x15\x14\xa9\x1e\x0a\xac\x11\xbd\x70\x69\x34\x00\x0d\xba\xde\x05\xac\x91\xf3\x2c\x44\x10\x6b\xc4\x25\x85\x04\x6d\x6d\x3e\x7a\x74\x41\x84\x58\x23\xd0\xe0\x52\x3e\x6d\x5d\xd9\x3c\x6f\x17\xdc\x4a\x1b\x35\xe2\x92\x42\x71\xb6\xc6\x23\xac\xf0\x3e\xac\xdd\xfc\xd8\x99\x34\x49\x5b\xba\x57\x66\xd9\xfc\xd5\x92\xfd\xf3\x9f\x6a\x60\xd3\xe4\xe0\x37\x42\x11\x7a\x28\xb0\xf6\x6c\x7c\xa2\x41\x3f\x82\xe1\xd3\xa0\x4f\x78\x16\x51\xf8\xdd\xda\x73\xd3\x23\xc7\x78\x69\xd0\x7a\x7c\x6c\x80\x4f\x83\x4e\x13\xde\x82\x22\xf6\xd6\x10\x1d\x8a\xb6\x1b\xc0\x0a\x5d\xd1\x76\x6b\x2f\x7b\x2b\xe5\xd3\xf1\x16\x84\xb3\x61\xfd\x63\x14\x7c\x66\x31\x35\xac\x41\xbb\x1a\xd6\x7a\xb8\x1a\x0e\x1a\x42\x0d\x8b\xf4\x2f\x73\x13\x58\x61\xdf\x94\xe0\x6e\x9d\x14\x67\x85\xdf\xad\x97\x41\x8f\xa2\x86\x9b\x1e\x9a\x65\x87\x30\x59\x4d\x7d\xe7\x77\xeb\xa4\xaf\xfa\xbe\x66\x11\x73\x98\x0d\x02\xcd\xb0\x5e\xd7\x18\xe2\xb6\x72\x0a\x25\xe3\x7b\x65\x1b\x14\xbb\xea\x8d\x9d\x53\xec\xaa\xf3\x63\x78\x0a\x75\x5b\xe7\x9d\x44\x18\x19\xd6\xdb\xe2\x45\x83\x92\xee\x25\xc0\x0b\xeb\x7d\xd1\x21\xd2\x3b\xd3\xea\xac\x03\x8a\xd0\x15\x0c\xb7\x4e\x8a\xb3\xc0\x2a\xac\x63\x36\x28\xb2\x6d\xdd\xf9\x44\x62\xb0\x07\x07\x46\x16\x60\x27\x1c\x9a\x31\xe7\xce\x1b\x47\xc6\x9c\x3b\x2a\x3f\x43\xcc\x7d\xac\x1e\xe2\x85\xaa\x8a\x0c\x0f\xf7\xb1\x48\x17\x73\x83\x55\x97\x40\x59\x3f\xca\x99\x01\x64\xc0\x14\xba\x2b\x2c\xd4\x79\xb5\x08\x5d\xb1\x8e\xcd\x9c\x71\xda\x8e\x30\xc8\xb0\x2c\x50\x09\x3d\xc3\xb2\xfd\xa3\xd0\xf7\x4d\x99\xf7\xd6\x2f\x8e\x65\xcd\x4f\x5e\x3e\x11\xe9\x08\x83\x0c\xa9\xf6\xf9\x43\x49\x9b\x32\xef\xad\xdf\xeb\x77\x0d\x45\x18\xcf\x18\x19\x41\xed\x53\xe5\xf7\x8c\xa0\x76\x4c\xf5\x0c\x54\xce\x1f\x4b\xf9\x0c\xaa\x13\xc4\x35\x55\x15\xbf\x81\x8c\xd0\x55\xd7\x6e\xb6\x21\x3f\x14\x17\x31\xd2\x2b\x54\x71\x6e\xb6\xb1\xea\xba\xfb\xb6\xb3\xd9\xba\xd9\xc6\xf3\x41\x48\x18\xd8\xc7\xaa\xfe\xf4\x30\x35\xdc\xf4\xf8\x2e\x10\x20\x06\x3d\x43\x5c\x56\x59\x0f\x5d\x42\x50\x0d\x7a\xc6\xbc\xac\x22\x0c\xf2\x93\xcf\x6d\xf8\x34\x8c\xdf\x51\x60\x40\x1e\x74\x55\x4a\x1b\x90\x07\x3d\x83\x59\xf6\x31\xdb\xf7\x4d\x49\xf2\x66\xfc\x08\xa4\x80\xb0\xcd\x1a\xab\xa7\x08\x88\x75\x68\x92\x79\x68\x7d\xcd\x22\xaa\x3b\x47\x43\xe6\xa1\xf1\xe8\x98\xf1\x2f\x60\x13\x7a\x06\x80\xcc\xd9\x12\xdd\x72\x73\x6e\xb9\x2c\x39\x30\x10\xba\x7e\xcd\xc9\xcc\x59\x70\x99\x76\xe6\x6c\x9a\x2c\x39\x73\x04\xa5\x04\x03\x28\x09\x5d\x3f\x00\x65\x46\x1c\x2e\xc3\x2a\x36\x20\x5d\x82\xc1\x48\xb3\xca\x08\x88\x0d\x16\x48\x66\x99\x91\xc5\x90\x11\x10\x23\xef\x2a\x23\x20\x76\x20\xe4\x92\x5b\x14\x7a\x86\x44\x26\xb0\xc2\xa7\x47\x7e\x02\x61\xb2\x01\xec\xe4\x00\xca\xd6\xb3\x93\xc3\xe3\xd9\x83\xa3\x21\x89\x65\xeb\x96\x4b\x7f\xdb\x09\x73\xae\xf5\x38\x17\x1d\xe2\xf6\x5c\xd3\x8a\x39\x0c\xfb\x0c\x9a\xd8\xb5\xa6\xcd\x1e\x4c\x1b\xd9\x83\x9f\x22\x95\xaa\x35\x0c\xfb\x8c\x6f\xcc\x9f\x22\xfa\x7c\x92\x3d\xd6\x27\x22\xec\x66\x91\x65\xc9\x81\xd6\xd0\x33\x9c\x61\x4b\xe5\x4b\x72\xf2\x43\x65\x3d\xc3\x19\xf6\xb0\xa6\xb9\x0d\x2f\x63\x48\xda\x18\xd1\x3e\xfd\x34\x93\x39\xea\x3a\x03\x03\x4e\xbd\x91\x6a\x6c\xcd\x97\x32\x96\x95\x0e\x5a\x43\x4f\x2f\xdf\xb7\x35\xad\xab\xe1\xa6\x87\x3e\x99\x8f\x95\x3d\x3d\x74\x27\xf1\x21\x3d\x74\xdf\xb9\x0d\xda\x17\xdf\xe7\x6d\xd0\x6f\x9c\xdb\x44\x5a\xf8\x34\x88\x30\xd2\x1a\xd2\x33\xf6\x5a\xe9\x51\xd5\xc0\x56\xb6\x6c\x60\xc5\x24\xa0\xf8\xe1\xb6\x9e\x6e\xae\x93\x38\x95\x5e\xed\x84\x6f\xf8\x0c\xaa\x4f\x5a\xa7\x41\x9f\xb4\x35\xa8\xd8\x5f\xbf\x4c\x2b\x11\xe6\xc4\xf2\xd2\xdf\xf4\xce\x27\x12\x28\xde\xd9\x17\xc9\x0f\x47\x7f\x0b\xc9\xda\xdc\x16\xfb\x5a\x42\x83\x0e\xed\xed\x04\x64\xf8\x34\x68\xc5\xec\xa2\x41\x0b\x64\x30\xd7\x73\x50\x98\x93\x81\xe3\xbe\xd3\x20\xc2\x1c\xd2\x25\x94\x00\x64\xe8\xe9\x5e\x3a\xb1\x84\xf4\x26\x41\x68\xe8\xe9\x4d\x4e\x84\x86\xcf\xa0\x6a\x08\x36\x4a\x26\x90\xc7\x1a\x43\x84\xf1\x8a\x9a\x9e\x20\x90\x0d\x7d\x48\xa0\x4c\xc8\x86\xcf\x18\x5a\xf5\xb1\x48\xd7\x18\x54\x55\xa8\xc0\xd5\xc0\x70\xe8\x2a\x70\x35\xc7\x16\xd1\x4f\x07\x99\xe3\xdc\xe8\x97\x82\xcc\x4f\x06\xcd\xeb\x41\x8a\x76\xfa\x79\x8e\xfc\x48\x97\xcc\xaf\xc2\x27\x5a\xb1\x25\x50\xc2\x7e\x47\x81\x39\xd2\x46\x80\xdc\xe6\x58\x1d\xc2\xdf\x36\xc7\x39\x48\x67\xc9\x6f\xb6\x55\x8e\x8e\x3f\x50\x2d\x17\x04\x3c\x87\xae\xdf\xaf\x31\xc7\x5b\x18\x79\xa9\x5f\xae\x9b\x5c\x10\xc0\x19\x2c\xbd\x05\x9f\x96\xbe\xa5\xb7\xe0\xef\xcb\x27\x5f\x3a\x02\x13\x42\xbf\x80\x6f\x51\x38\xb3\xb2\x3a\x40\x38\xb0\x34\xb9\x63\xe7\x00\xca\xea\x88\x69\x61\x5b\x9a\xdc\x51\x1b\x3d\xb2\xe1\xa4\xe1\x4b\x58\xb4\xd5\xa3\xab\xc1\x68\x10\x1d\xd3\xa0\x36\xfd\x24\x8b\x05\x06\xb5\x10\xa9\x2d\x1a\xcc\x69\xd5\x83\x1f\x1c\x56\x3d\xa8\x85\xc1\xad\x2e\x75\xf8\x9a\x76\xa8\xc1\xf8\x24\x1b\xa6\xd9\xa0\x42\x17\x9b\xe8\x04\x9f\x86\xa2\x06\xb8\x95\x18\x8c\x99\x70\x60\xaa\x07\xb5\x58\x57\x45\x1e\x07\xf8\x05\xa6\x02\x51\x8b\x80\x5b\x09\x97\x88\x35\xa8\x1a\xe6\x31\xb7\xb4\x17\x63\xb0\x84\x12\x3f\xc0\x15\x58\x9a\x87\x31\xd6\x18\xe2\xf6\x60\x2b\x25\xa0\xe2\x58\x84\x69\xd0\x83\x31\x72\xa3\xe6\x55\xb1\xb4\xf5\x62\xaa\x49\xdb\x92\x97\x75\xb4\x7b\xf6\xe0\xd0\x25\x2f\x17\xb7\x5c\x12\x2b\x2e\x66\x49\xd2\xef\x45\x98\x56\x7d\xda\xe0\x96\xa6\x18\x60\x04\xb6\x25\xa5\x37\x2b\x26\xdb\x0c\x74\x02\xdb\x72\x0c\x54\xad\x00\xb4\x2d\xd0\xac\xaa\x26\xb2\x78\x38\x30\x92\x7a\xf1\x32\xad\xa4\xde\x98\x9a\xd5\xd2\xae\x1a\x1b\x82\x41\x41\xb5\xb1\x71\x82\x14\x32\x1b\x1b\x94\x4a\xea\x4d\x10\x83\x4f\x8f\x1c\x83\x9d\xfb\xd1\x83\x63\x29\xb9\x38\x0a\xb3\xc8\xae\x1a\x05\xc2\x64\x46\x0d\x3c\xe3\x92\x0d\x3b\xe7\x43\x82\x72\x54\x48\x97\xa0\x1c\xeb\x12\xfe\xe8\x01\x61\x3f\x7a\xb0\x2f\x12\xa5\xa3\x72\x82\x24\x4a\x47\x43\x28\x29\x52\x37\x1a\xab\xfe\xa3\x61\xf1\x22\x6e\xf9\x59\x74\xfd\x16\x88\x8d\xa5\x15\x65\x8a\x0d\x7e\xf4\x5c\xbf\xcc\x61\x63\x69\x45\xd9\x66\xc3\xb8\xfb\xb2\x66\xc7\x52\x93\x39\x28\xbf\x3e\xae\x82\x3d\x1b\x4b\x6f\xca\xab\x1d\xce\x71\x90\xf5\x36\x9c\x8d\x92\xc4\x1d\x58\xe6\x25\xe9\x08\xae\xba\x8c\xb5\x31\xd8\x17\xb9\xb9\x63\xb0\xa6\x49\xd8\x58\x83\x66\x8f\x69\x34\x96\x24\x6c\xb0\x40\xb2\xef\xc6\xc1\x18\xb2\xaa\x01\x20\xb0\xb4\x9a\xc6\xc1\x46\x49\x59\x80\x48\x60\x69\x46\x8d\x83\x35\x4d\x5e\xa6\x21\x6e\x69\x46\x8d\x09\x68\x66\x1f\x13\xe8\x37\x14\xd8\x38\x91\x7a\xc9\x06\x36\xb8\xca\x9c\x0c\x74\x02\x4b\x0b\x6a\x9c\x73\xc1\x55\xf7\x64\x80\x11\x98\x7e\x3d\xd8\x00\x23\x30\xfd\x7a\xb0\x8d\xcb\xf9\x44\x54\x23\x4b\xf6\x1c\x74\x46\xea\x2c\xcd\xa1\x71\x57\x7a\x88\x30\xe4\x80\xaa\x9a\x6c\xa0\x37\x05\x2f\x6d\x20\x0b\x58\x5a\x50\xe3\x19\xf4\xd0\xb4\xb3\x5c\xc2\xd2\x82\x1a\x84\xdd\x54\xb3\x64\xe3\x5d\x83\x8a\x97\x77\x8d\x21\x5e\x50\xb5\x69\x74\x8d\xf9\xd2\x66\xe5\xc7\x18\x2f\x0d\xdf\x31\x0e\xfc\x79\xc1\x4b\xdb\x31\x9f\xde\x2c\xcd\xa1\x63\xeb\xf4\x18\x6a\x58\x94\xe6\x27\xf3\xcc\xaa\x10\xca\x00\x12\xb0\x92\x9f\x14\x48\x97\xf5\x03\xb2\x80\x95\x1f\x9f\x34\x7a\xec\x6a\xe0\x78\xfd\xf8\x64\xd0\x90\x3d\xd6\xb4\xdf\x15\x3b\x76\xa6\x95\x3f\x01\x3a\x81\xe9\xc7\x41\xec\xc0\x17\x50\x65\x94\x1d\xfb\x1a\x43\x9f\x54\xce\xbd\xe2\xb4\x47\x5d\x3d\x34\x06\x02\x2a\x6d\xa2\x83\x38\xdc\x9e\x9f\x34\x8e\xb9\x34\xeb\x81\xa5\xaf\x52\x29\x9b\xd8\x03\x9f\x06\x2d\x10\x86\x45\x9a\x40\x47\x63\x2b\x15\x22\x3a\x3a\x1b\xf5\xa3\x81\x73\xaa\x88\xd0\xd1\xd9\x5b\x05\x6e\x0f\x63\x3d\x64\x13\x4d\xb8\x82\xcf\x27\xe2\xc5\x58\x75\xa9\xeb\x09\x57\xf0\x69\x10\xa5\xc8\x34\xfd\xd2\x87\x1d\xbe\xc6\xd0\x2c\x48\x2c\x95\x17\xd9\x41\x2c\x41\xd5\x44\x76\x10\x4b\x50\xf1\x90\x1d\xc1\x8d\xca\x4f\x30\x4e\x84\x0f\x6d\x60\x16\x58\x1a\x6b\x47\xb0\xfb\x39\xc6\x60\x3d\x64\x9b\x1d\x88\x41\xe1\x43\xdb\x81\xb5\x52\x7e\x34\x5c\x34\x88\xb9\xb1\x28\x55\xc3\x31\x85\xad\xa0\x9c\x0d\x44\x02\x2b\x3f\x1a\x58\x20\x99\x1e\xc7\x92\x41\x3f\x1a\x90\x41\x32\x3d\x8e\x13\xf6\x65\x69\x1c\xf7\x1a\x54\xdc\x3e\x41\x0f\xad\xe9\xc3\xde\xca\xb0\x38\x30\x1b\xf4\x03\xb0\x76\x10\x72\xd7\xef\xbd\x1a\xf0\x02\x96\x06\xce\xf1\x72\xc6\xe4\x5f\x1d\x4b\x3a\xe4\x2c\xef\x1a\xf4\x4b\xd8\xb9\xb1\xea\x9a\xf6\x5c\x57\x5d\xd3\x9e\x1b\x4b\xa8\x69\xcf\xb2\xe8\x70\x35\x20\x3f\x34\xed\x59\x38\xfc\x32\x3d\x80\x28\xb0\x92\xd3\x16\x56\x5d\xb6\xc8\xb9\xee\x6d\x0e\xba\x43\xa9\x8c\x13\xe0\x05\x2c\xed\x99\xb3\x2e\x4a\x35\xc6\xba\xb7\x32\x2c\xce\xca\x36\xc8\xb0\x38\xd7\xbd\x95\x61\x01\xbc\x80\xa5\x2d\x72\x62\xcc\x97\xfc\xa4\x73\x70\xfd\xb7\x3c\xb0\xb3\x73\x22\x65\x64\x9c\xeb\x86\xca\x50\x39\xf1\xc5\x55\x2a\x65\xa7\xb1\x69\x52\xff\x13\x8c\xe0\xd3\x20\x12\x0c\x46\xb3\x87\xb3\x14\xd9\xc3\xd9\x67\x19\x08\x20\x0b\x58\x1a\x08\x67\xac\x69\xc5\x79\x70\xa9\x65\x64\x9c\xc1\x1e\xc9\x1e\x38\x83\xab\x92\x83\x62\x86\xec\x39\xe8\x58\x9f\x88\x8e\x81\x4c\x93\x6b\x78\x0e\x96\x53\xe1\x9d\xf3\x60\x5a\xd9\x25\x27\x66\x88\x7e\x71\xd7\xce\x83\x5d\x4c\x3a\x30\x32\x76\x99\x21\xe7\x7c\xbe\xb3\x54\xf9\xe7\xc9\xb6\xca\x0c\x39\x67\xda\x8b\xa9\xf6\xd9\xce\x19\xd3\xb7\x5d\x96\xcb\x39\xd3\xf0\x6c\xdf\x72\xd0\x8b\x86\x1c\x63\x4d\x2b\xe6\x26\xec\x91\xa5\x95\x70\x5e\xac\x69\x72\x8b\xe9\xa1\xfa\x69\x3b\xaf\xc5\x9c\xd8\xc7\x49\x49\xb3\xe1\xc4\x27\x49\xb3\xe1\xbc\x98\x45\xa6\xc7\x79\x23\x18\x64\x13\x01\x9b\x60\xa9\xbf\x4f\x1e\xe7\x54\xc2\x66\xf3\xd7\xee\xf7\xad\xe6\x02\xbd\x41\x83\x06\xc5\xff\x56\xc5\x9a\x5d\xa8\x7c\x55\xac\xd9\x35\x71\x47\x2c\xf5\xf7\xb5\x41\x98\x94\xf1\x85\x87\xae\x12\x36\x03\x36\xc1\x52\x3b\x5f\xa8\xfc\xd4\xbd\x17\xfa\x5b\x45\x6e\x76\xed\xab\x47\x36\x34\x7a\x7c\x97\xf0\xaa\x8b\x17\x57\x43\xe3\x93\xec\x61\xf4\x08\x35\x3c\xf4\x18\x6a\x58\xdc\xaa\x01\x39\xa0\xba\x38\x9b\x28\x09\x9f\x06\x71\x8b\x1c\x50\x89\xb1\x5d\x38\x18\x82\x94\x36\x70\x14\x2c\xb5\x33\xb0\x09\x96\xda\xf9\xc2\x05\x49\xdd\x7b\xf5\xc1\x18\xd9\xc0\x29\x94\x32\xbe\x50\xc6\x55\x66\x14\x38\x0a\x96\xaa\xf6\x42\x3a\x54\x99\x51\x17\xd2\x21\x75\xef\x45\xf8\x21\x75\xef\xe5\x50\x2a\x55\x7b\x21\x3f\x52\x91\x5e\xc4\x23\x6a\x6e\x36\xf1\x88\xd4\xac\x80\x29\x58\xea\xcd\x2b\xd6\x27\x22\x2c\x16\x61\xa2\x23\xb8\x51\x3d\x3f\xb9\xe9\x21\xc2\x06\x84\x49\x3d\x5d\x78\x2d\x35\x8f\xc3\xc1\x59\x97\xd0\xbf\x08\xfd\xd7\xdc\x7d\x3c\x8e\xd4\x24\x00\x21\x58\x2a\x8e\x0b\xfd\x5d\xf3\x38\x5c\x9c\x20\xf9\x79\xd7\x05\xa5\x92\xc9\x17\xea\x3a\x65\xf2\x75\xc3\x6d\x6e\x36\x81\x81\x14\xd2\xd7\xcd\x66\x4b\xc0\x5e\xeb\x9a\x4a\xc0\x5e\xbc\xc3\xab\xc6\xcf\xae\x87\x31\x24\xfa\x80\x4a\xb0\x14\x7d\xd7\xc3\x18\x12\x7d\x17\x36\x80\xca\x02\xed\x7a\xa1\x54\x12\xe6\x5a\x37\x5b\xd6\xdb\x4d\xa4\xa0\xb6\xdf\xc1\x42\xb4\x9b\xf7\x74\xfd\x16\xb5\xdd\x84\xf0\xab\x4e\x13\xa0\x08\x96\xc2\xe5\xc6\xd2\x17\x86\xb7\xdd\x65\xcd\x68\x6a\x70\x3e\x11\x4d\x18\xf6\x29\x7e\x00\x45\xb0\x14\x3f\xf7\x4c\xfa\xb5\x14\x2e\x13\x25\xe1\x33\xe8\x97\xd1\x7b\xe7\x0e\xeb\x44\xde\xf3\x8d\xd1\x52\xb8\x00\x8a\x60\x29\x4b\xee\x9d\xe3\xa5\xb0\xdb\x4d\x08\x51\xb5\x8b\x76\x63\x64\xa4\xa4\xb8\x2b\xec\xcb\xb4\xbb\x2b\x94\xca\xe1\xba\x2b\x27\x52\xb6\xde\xdd\x58\x20\xb9\x53\x77\x5b\x3d\x44\xd8\x8c\xd8\x5b\xde\xe1\xdb\xd8\x56\x85\x99\xee\x99\x7d\x6b\x79\x21\xef\xf9\xe2\x6e\x79\xdd\x6e\xcc\x86\xaa\xbb\x03\xf4\x82\xe5\xdd\xb9\x8d\x25\xdc\x73\x50\x96\x50\xb6\xde\x8d\x61\xaf\x72\x47\xbb\x27\xd8\xba\xe9\x37\xd3\xed\xc6\x8e\x50\x39\xac\xdd\xb1\x3e\x11\x1d\xc4\x14\x6b\xcd\x86\x35\x8b\x56\x6c\xb0\x1e\x3a\xf7\xf7\x80\x39\x1d\xe2\x1b\x3b\xbe\xca\x3c\xbc\x09\x67\xfc\x38\xc4\x07\x74\x48\x0c\xde\xd8\x00\x3f\xce\xe9\xc9\x18\xba\xf6\xf7\xb9\xc6\xd0\xa0\x58\xe9\x2a\xcc\xb4\x1b\x2b\x5d\x85\x99\x76\xcf\xcc\x3d\xfb\x71\x92\x79\xad\x53\xa5\xa6\x81\xb4\x60\x2a\x87\xb5\xfb\x5a\x83\x6a\x91\xd1\xdf\x3f\x8e\x14\x41\x46\xfd\x0c\xb8\x81\xc5\x60\x3f\x8e\xd4\xcd\x9a\x2a\x76\x75\x13\x5c\x50\xf9\xa7\xdd\x37\x92\x53\x12\xeb\xbe\xd9\x5b\x45\x3f\xef\x25\x5c\x14\x99\xba\x9f\x35\x8b\x06\x45\xb8\xfc\x38\x30\x38\x18\x82\xfd\x36\xc0\x19\xec\xc7\xde\xbe\x8c\x91\x5b\x89\xb4\xf9\xb1\x51\x2f\x8b\xac\xc8\xe5\xfd\x42\xba\x8c\xc6\xfb\x5d\xb3\x7c\xa7\x7d\x96\xa5\x21\x0b\xf0\xd9\x58\x64\x89\xc1\x67\x89\x1c\x89\xc1\x67\xc9\x0f\xc5\x25\x27\x98\xc2\xa7\xc7\x97\xb0\x87\x7c\x1c\x61\x7f\xdb\xb3\xae\xba\xac\xb7\x87\xc7\x01\x41\xa9\xdb\xb3\xae\xba\x04\xf6\x83\x61\x91\xeb\x01\x76\x82\x25\x2f\x0f\xf9\x05\xaa\x89\x35\xb0\x13\xec\x07\x73\xf8\x24\x3f\x98\x6b\xec\x8b\xe4\xf3\xd3\x16\xfb\x1a\xb4\xad\x4f\x34\xe8\xcc\xef\xb7\x9f\x9f\x20\xa5\x64\xdf\x3d\x7d\x8a\x0b\x15\xc9\xda\xd3\xa1\x34\x07\xed\x10\x96\x9f\x58\xe5\x13\x2d\xd0\x4c\x3a\xb4\x9f\x0d\x27\x0d\x5a\x20\xef\x7c\x92\x0d\x93\x52\x55\xbc\xda\xc3\x55\x17\x3a\xb8\x3d\x28\x74\x55\xbc\xda\x04\x42\xf8\xf4\x10\x2f\xb8\x0c\xaa\x78\xb5\x07\x95\xaf\x1f\x3d\xb7\x87\xe7\x83\x2c\x5f\x7d\x66\x82\x80\xb5\xf2\x5b\x1e\x18\xa0\x08\x26\xd8\x6f\x7b\x10\x1d\x02\xf5\xb6\x67\x66\xcd\x5b\x96\xb2\x3e\x3c\xd4\xfd\xa0\x9a\x64\x81\x1f\x44\x9e\x50\xbd\x67\x83\xd3\x43\x07\x10\x7f\x42\x38\xe0\xf6\xe0\x3e\x64\x59\x2e\x28\x09\x96\xe5\xb0\xcf\xc5\x96\x24\xa3\x48\x9b\xac\xd3\x7d\x78\xf4\x10\x86\xb7\x3d\xb3\xd4\xd9\xb2\xb6\x15\xd8\x04\xcb\xda\xd6\xe7\x5e\xa4\xeb\x93\x7b\xd0\xa0\xf5\x7d\x58\x0f\x99\x32\x0f\x41\xc6\x1f\xeb\x31\x53\x82\x4c\xe8\xda\xf6\xbc\x0c\x9a\xec\x13\x68\xf8\xc1\xed\xac\x6c\x36\x81\x69\xdb\xc3\xb5\x4f\x6e\x5f\xcc\x90\x2c\xfe\x7d\x37\xd6\x54\x32\xfe\xdd\xa0\x54\xfa\xea\xdd\xd6\x18\xae\x06\x48\x97\x16\x00\x25\xc1\x04\x95\x6d\x6f\x61\x4d\x15\x76\x7b\x77\x4e\xa4\x6c\x91\x17\x07\x23\x57\xec\xdd\x0f\x1a\x44\xd8\xce\xce\x89\x97\x97\xec\x01\xfd\x20\xbc\xbd\xf8\x24\xfa\xb9\x77\x7b\x91\x03\xfa\x35\x73\x7b\x31\x0a\x84\x03\x6e\x2f\xa9\x00\x4d\x3a\xef\xe5\x8d\x43\x20\xd6\xf6\x62\x36\xe8\xe7\xcd\xed\xc5\xe3\xf8\xb1\x40\x7d\xf5\x10\x61\x64\xee\xfd\x58\x8f\xce\xce\x49\x2d\xbc\x78\x1c\x3f\x16\x08\x4b\xe3\xc7\x7a\x18\xc7\x52\x22\xfd\x5d\x92\x42\x86\xd6\x6b\x0c\x2a\x19\xff\xe2\xa4\x34\x59\x5e\xaf\x2d\x4a\xc5\x2d\x1e\x47\x56\xe1\xbe\xce\xb4\x7a\xce\x7c\xf1\x38\xb2\x2a\xf9\x75\x0e\xbf\xf4\xe6\xbb\xa4\x8d\x0c\xfb\x97\xf7\x4d\xa1\x3f\xdb\x8b\x2d\xf2\x63\xd5\x09\x21\x0a\xdb\xd9\xde\x60\x5f\xa4\xbf\x5f\x9c\x94\x1f\x4b\xb8\x24\x96\x74\xef\x3b\xd6\xa0\x9a\x76\xac\x41\xb3\x01\xc9\x29\x65\xfc\x2e\x11\x26\xbd\xf9\xf2\xd6\x92\xb5\xcf\xef\x01\xfb\xb9\xc8\x07\x37\x2a\xd7\xf4\x58\x83\xe6\x27\x6b\x50\x51\x7a\x70\x4e\x15\x21\x7b\x97\x1c\x93\x02\x03\x90\xc1\x5a\x64\x0f\x36\x2a\xb7\xe1\x44\xa0\x44\x36\x20\x50\xa4\xc0\xde\x8b\x05\x92\xaa\x7d\x2f\xb6\x41\x9a\xf5\xc5\x15\x12\x4c\xb7\x81\xae\x60\x59\x57\xfb\x92\xb0\xf4\x63\xa3\xee\x35\x86\x28\xbd\x4f\x7a\xe4\xa0\x5c\x8f\xdc\xa8\x89\xbf\x60\x59\x79\xfb\xce\x34\x04\xcb\xca\xdb\xf7\x59\x9f\x88\x17\x04\x9b\x30\x95\x0d\x40\x06\xeb\x52\x60\x2f\xc6\x89\x30\xb7\xed\x7d\x59\x53\xbd\xd6\xbd\x24\x2a\xf4\xaf\x46\xf3\x6d\x5b\x63\xb8\x1a\x10\x7d\xdf\x8d\xf2\x6d\x83\xb0\xaf\x56\xf4\x6d\xe6\x38\x99\x2a\x6f\x1d\x84\x06\xeb\xe5\x77\x3c\x30\xdf\x90\x69\xbd\x68\x82\x59\x6d\x6d\x02\x5c\xf6\x6d\xe6\x2b\x9b\xf0\x95\x7d\x23\x8a\xa2\x5f\x11\xf7\x09\xce\xf0\x21\x52\x6c\x60\xfd\xe8\x47\xc3\x7d\x5b\x32\x2d\xc4\x17\xd9\xc8\x3a\x1a\xbe\xcd\xea\x68\x13\xf2\xb1\x6f\x95\x6d\xfd\x9e\x15\xdf\x96\x90\x1b\xe2\x9c\xc0\x8b\x2a\x79\x7d\x23\xbd\x42\xc0\xe0\xbe\x91\x5e\xa1\xaa\x6f\xdf\x08\xc0\xaa\xb4\xd7\x37\x8c\x1d\xc1\x7e\xfb\xd6\x91\x47\x43\xec\x63\xdb\xa8\xf8\xd7\x01\x67\x30\xa1\x27\xfb\xd6\xd7\x18\xe2\x16\x77\xaa\x57\x0d\xba\x44\xd8\x10\x73\x84\x55\x54\xfa\xed\x00\x3c\x98\x30\x95\x7d\x5b\x42\x6e\x88\x52\x84\x9c\x4a\x8c\x7d\xf3\x45\x98\x06\xf5\x45\x87\x56\x8c\x24\x68\x9d\x6a\x07\x13\xc2\x84\xa9\xec\x1b\x19\x19\x3a\xe6\xbe\xcd\x42\x28\x53\x11\xb2\x6f\xc1\x22\x37\xf5\x98\x85\x50\xa6\x9a\x63\xdf\x30\xba\x04\x3f\xee\x1b\x39\x1b\x82\x1f\xf7\xed\xe0\x8c\x35\x51\x7a\x70\xdd\x9a\xd8\x3f\x16\x1d\x62\x9f\x77\x12\x5d\x26\xdf\xb0\xab\x54\x2f\xec\x13\x24\xe2\xd3\x43\x83\x22\x8f\x54\x40\xec\x1b\xaf\xb9\x3f\x2e\xd3\xc5\x8a\x75\x7d\x72\xad\x1e\x5a\x64\x1c\x2e\x95\x18\x3b\x68\x0d\xa6\x12\x63\x9f\xc0\x0a\xfb\xf6\xe3\xba\xdd\x1c\x07\xcb\x06\x3e\x31\xd1\x41\xc0\x54\xa5\xf0\xbe\x2d\x49\x61\x5a\xa0\x97\x4b\x6d\x62\x1f\x49\xf1\xe3\x56\xbe\x6b\x96\xef\x7a\x4c\x1c\x85\x4f\x8f\xa6\x06\xd6\xf4\x2b\xc1\xbd\x90\x91\x91\xf7\xb6\x2c\xd1\xf1\x15\xe9\x5e\x78\x6b\xd1\xaf\xbb\xfb\xc4\x51\xf8\x7c\xa2\x31\x88\x8b\xa8\xf6\xd9\x0b\xc9\x8f\x42\x4e\xf7\xc2\x93\xa8\x8a\xa1\xbd\x4c\xa4\x16\x53\x65\xb3\x83\x8c\x60\x2a\x64\xf6\x52\x39\x96\xbb\x06\xad\xeb\x13\x51\x4a\xc0\x34\x25\x4c\xe1\x22\xf7\x5d\x83\x36\xc4\x85\x8b\xd2\x75\xb3\xbf\x7a\xd3\x0b\x21\x55\x61\x4c\x7b\x21\x82\x2a\x48\x69\x9f\x30\x07\x9f\x41\x35\x06\x7e\x8d\x30\xa6\xbd\x90\x4d\x9d\x12\xa6\x74\x96\x50\xe2\x18\x20\x04\x13\xe8\xb4\x17\xf2\x3e\x52\xc2\x94\xbe\xe8\x10\x73\xbc\x91\xf6\x5d\x94\xda\x94\x74\xbd\x8a\x52\x63\x96\x91\x0d\xcc\x22\xc1\x06\x54\x82\xa9\xb2\xd9\x8b\x73\x3e\x24\xc7\x0a\x2f\x30\x29\xb6\x0a\xd6\x8a\x2a\x9b\xbd\x04\xec\x4b\x8e\x15\xb2\xb1\x54\xc8\xec\x65\x5d\x75\xc9\x20\x80\x10\x4c\x60\xcf\x5e\x66\x45\x84\x09\xec\xd9\xcb\xba\xfb\x92\x52\x05\xff\x4a\x40\xcd\x5e\xf0\xaf\x54\xea\xec\x85\x27\x19\x21\xbf\x7b\x99\x35\x8f\x66\xdb\xef\x20\x71\xf8\x44\x49\xd8\xb7\x14\x50\x05\x43\x45\xb0\xce\x5e\x70\xb8\x52\x62\x81\x81\x60\x2a\x64\xf6\x72\xad\x4f\x44\x02\x49\x1c\xaa\x5b\xf6\x72\xc1\x57\xd3\xfa\xe2\x1b\xa9\x90\xd9\x27\x28\xc2\xa7\x87\xa6\x25\xab\x43\x80\xcb\x5e\x48\xf7\xb2\xbc\xb2\x04\x5e\x04\xbd\xe0\x05\xef\x29\x05\x65\xb9\xd7\xb4\xa2\x14\xe1\x62\x79\xff\x88\xc4\xf4\x26\xd2\x89\xb3\xf4\x26\xd2\x49\xe2\xe8\x5d\x7b\xf4\x72\x44\x25\x4a\x81\x4d\x30\x61\x08\xfb\x4e\xfe\x57\x8a\xd2\x1d\xef\x49\x18\xc2\xbe\x63\x97\x08\x15\xdf\xf7\xb2\xc6\x18\x6a\x60\x5b\x25\x4a\xf7\xb2\x3e\xd1\x18\x05\x21\xd7\xf3\x93\x29\x7d\x4d\x17\x61\x27\x0a\xdb\x4d\x0d\x3b\x67\x56\xc2\x76\x27\xf0\x92\xc2\x16\x60\x05\x33\x9d\xfb\x1d\xf1\xa3\x6a\x71\xdf\x89\xc4\xa8\x5a\xdc\x77\xfc\xab\x14\xc7\x7b\xe3\x13\x1d\x98\x9d\x84\xb0\x94\xad\x3b\x0f\x38\x29\x4a\x77\xc4\x8f\x40\x74\x7d\xef\xcc\xa2\x9d\xdb\x3b\x9b\xed\xe2\x85\xf4\x8a\x94\xad\x7b\x87\xfd\x9e\x3d\x6e\x1a\xb2\x07\xbb\x9f\xfb\x82\xf7\x94\xd2\x77\x27\xce\xa2\x92\x6b\xdf\x91\x25\xaa\xb0\xf6\x1d\xc3\x22\xe5\xf3\xce\xf3\x8c\xe5\x46\xe1\x2c\xa5\xc0\xde\x71\x96\x52\x3e\x83\xa3\x60\x96\x5b\xe9\x8b\x52\x6d\x25\xce\x52\xca\xe7\x3d\xd8\x7d\xd7\x2c\x3c\xcf\x08\xac\xc2\xf7\xb1\x3e\xd1\x18\x83\x15\x93\x04\xdf\x07\x47\x5b\x12\x7c\x5f\xb2\x24\x77\x1f\xbf\xc6\x72\x2b\x97\x2c\x91\x66\xdd\xb1\x23\x54\xc7\xed\x3b\x51\x58\xcb\xbd\xbd\xd6\xa0\xa2\x94\x07\x1c\xd5\x71\xfb\x8e\xd7\x92\x22\x7d\x5f\xc2\xc0\x44\xfa\xba\xfb\xb9\xd9\x04\x5d\x05\xab\xe1\x3b\x0f\x38\x96\xbb\x7f\xb3\xa6\xb9\x95\x84\x54\x2d\x37\xea\x59\x63\x88\xb0\x87\xdb\x20\x23\x7a\x27\xcd\x43\x38\x1b\xbe\x3f\x6b\x50\xb1\xff\xb2\xb7\x52\x2d\x3b\xb1\x95\x54\x2d\x95\xb8\x48\xea\x89\x4a\x8a\x86\xaa\xc5\xbd\x12\xf5\xd0\xef\x08\x78\x25\xdf\xc2\xb4\x51\x75\x59\x09\xd2\x13\x95\x80\x69\xea\x89\xca\xeb\x89\x60\x76\xbd\x62\x14\x08\x9d\xdf\x2b\x89\x9c\x29\xc6\x2b\x46\x81\x10\x30\xbc\x62\xbb\x0b\xc2\xc2\x2b\x1a\xde\x92\xf4\x75\x09\x93\x52\xde\x48\x55\xc7\xed\xb5\x07\x63\xb8\x1a\x2e\x1a\xbe\x6b\x5a\xc9\xa0\x48\x55\x50\x49\x69\x12\x3a\xbf\x57\x1e\x4d\x55\xfa\xed\x15\xeb\xde\x7e\x0b\x89\xc3\x2b\x2f\xaa\x36\x72\xc6\x97\xcf\xc5\x86\x2f\xbe\x44\x02\x57\xd6\x73\x39\xc9\xf2\x54\xa1\xb8\x57\x12\xba\x05\xdd\xef\x15\x6f\x41\x95\xe3\x5e\x29\x75\x10\x96\xbf\x57\xbc\x85\x54\x2d\xc0\x26\x98\xe7\x82\x07\x8b\x55\x44\x29\x39\x53\x9e\x8b\x35\x6b\x1f\xcc\x73\xb1\x70\x1f\x3c\x17\x8b\x5b\x2e\x20\x7d\xaf\xd8\x14\x82\x84\xf5\x8a\x3f\x21\x20\x7d\xaf\x14\x75\x09\x48\xdf\x81\x4d\x30\x4f\xe6\x48\xf9\x16\xb2\xbe\x57\xfc\x09\x21\xeb\x7b\x45\x30\x78\x72\x7b\x40\x7a\x72\x4b\x52\xb8\x27\x73\x3c\xf1\x08\x6a\xdf\x2b\x51\xd8\x54\x93\x95\xf8\x86\x27\x61\x3c\xf1\xa4\xf2\x01\x9c\xc1\x3c\x09\x43\xb8\x78\x12\x46\xe9\xa6\xd5\xec\xc1\x22\xd7\xec\x01\xb7\xd2\xbd\x15\x59\x92\x1a\x0d\x70\x06\x13\x24\xac\x57\x64\x89\x2a\xbd\xbd\x3e\xd0\x91\x83\x3e\x6b\x0c\xf1\xf2\x9c\x34\x68\x96\x87\xf5\x68\x39\x06\xdb\x20\xe7\xb1\x12\xa7\xb5\xec\xf1\xb2\xc8\x32\xc5\x2a\x89\x20\xf6\xa3\x01\xc2\xa4\x59\x1b\x01\x0f\x55\x58\x7b\x9b\x45\x5d\xa6\xea\x68\x6f\x44\x72\xed\xc7\x27\x8c\x21\x35\xd9\xc8\xfb\x10\x98\xa8\x37\xec\x08\xd5\x3e\x7b\xe3\x01\xc7\x72\x16\x0c\x8b\x54\xd7\x6d\x5f\xb3\xb8\x1a\xb8\x2f\x52\x71\x8d\xa0\xab\x10\x39\x1d\xb4\x06\xd3\x8f\xec\x7b\xc3\x4a\x48\xfd\xdd\x48\xb1\xd4\x0f\xd3\x7b\xe3\x69\x36\xb5\x73\x5b\x22\x4c\xda\xb9\x91\xd5\x21\x00\x4e\x6f\x48\x2c\x01\x70\x7a\xc3\xc1\x48\x75\xdd\x08\xa9\x0a\xd6\xd2\x1b\x46\x41\x6a\x67\xe0\x1b\x4c\x45\xc8\xde\x48\xa0\x4c\x25\xd8\x9c\x6b\x2a\xf7\xa1\xe1\x3e\xa4\x56\x6c\x01\x1d\x23\x1b\xd8\x06\x49\xbd\x16\xd3\x9e\x49\x9d\xd7\x96\x30\x90\x60\x6b\x14\x42\xa5\xce\x6b\xa4\x58\xa6\xce\x6b\x64\x74\xb9\x24\x5d\x23\xa3\x52\xd5\xd1\xde\xc8\xa8\x4c\xad\xd8\x08\x2e\xe8\x67\xe2\xbd\x4d\x24\x5a\x53\xb9\xb4\x37\xde\x68\x54\x2e\xed\x6d\x22\xeb\x9b\x8a\xa1\xbd\x91\x04\x96\x6a\x12\x0c\x07\x53\x75\xb4\x37\x2a\x3c\x85\x57\xef\x80\x3a\x98\xaa\xa3\xbd\xf1\x00\xac\xea\x68\x6f\x84\x43\x2d\x77\x9f\x1a\x50\xcb\xbd\x45\x7e\xa8\x7e\xda\xdb\xb9\x16\x48\x84\x4d\x7c\x5a\x13\x24\xa5\x37\xb2\xc2\x84\x40\xe9\xed\x5a\x4b\x28\x4a\x27\xb8\x8b\x09\x81\xd2\x01\x86\x30\x21\x50\x7a\xbb\x58\x42\xa9\xeb\x76\xad\x41\x45\x18\x8f\xc8\x16\xbf\xa5\xc0\x1a\xd9\xea\xc2\x86\x71\x70\x25\x4c\x00\x96\x0e\x6a\x84\xa9\x2e\xdc\x41\x8d\x30\x95\x81\x7b\xc3\xd1\x31\x39\xd6\xed\x66\xe3\x25\x5b\x1b\x22\x4c\x3f\xe6\xee\xed\x81\x51\x05\x19\x1b\x19\xef\x69\x53\x34\x5e\x98\x85\x79\xe9\x0d\x01\x25\xcc\x4b\xef\x88\x1f\x41\x5c\x7a\xdf\x16\x2f\xd9\x03\x5e\x24\x5b\x3b\x01\x53\x95\xa3\x7b\xc7\x1c\x12\xe0\x8c\x77\x22\xa8\x42\xc5\x74\x10\x1f\x4c\xa8\x98\xde\x89\xb3\x08\x92\xc6\x3b\x09\xaa\x42\xa0\xf1\x5e\xd8\x12\x39\x29\x0b\x02\x22\x6d\x1b\x20\x20\x4c\x98\x97\xbe\x20\x20\xd2\xd8\xe9\xfb\x9a\x56\xa4\x23\xb1\x54\xe3\xee\x9d\x14\xd6\x34\x87\x3a\xa9\x6b\x69\xca\x2c\x08\x88\x34\x4e\x3a\x81\x17\x55\xc1\x7b\xc7\xf3\xd1\x4f\x93\x7b\x47\xa6\xa5\x2d\xd2\x1b\xbc\x48\x3e\x83\x09\x61\x82\x82\xf4\x4e\x58\x45\xbf\x22\xee\x1d\xdf\x28\xad\x95\x8e\x15\x26\x14\x1b\xef\x48\x3d\xd5\xb5\x7b\xc7\x2c\x13\x8a\x8d\x77\x52\x56\xd2\x7c\xe9\x18\x5a\xfa\xe5\x70\xef\x76\xd2\x43\xec\x63\x24\xe9\x57\xbf\xbd\xfb\xfa\x44\xec\x93\xa1\xa2\x9f\xf0\xf6\x8e\x4d\x24\x74\x7e\xef\xe4\x9f\x84\xae\x7d\x1f\x8b\x30\x8d\x41\x09\x9b\xb0\x10\xbd\x53\xa0\x96\x26\x50\x5f\x12\x4b\x72\xa0\x1f\x83\x1e\x22\x9d\x4c\x35\x15\xcb\x7b\xc7\x5a\x11\xd8\x8d\xf7\x25\x8f\x74\xa3\x3a\x92\x42\xd8\x36\xde\xb1\x45\x54\x3d\xef\xfd\x5a\x74\x68\xc5\x2e\xc6\x90\xb7\xd0\x2f\x76\x3f\xcf\x3a\x11\xd4\xb4\xab\x3a\x19\xa6\x91\x47\xfb\xe2\x38\x48\xb8\x80\x3c\x61\x91\x67\xfd\x5e\xd3\x8a\x5b\x72\xd9\x22\x0f\xdd\xbd\xc6\x10\xa5\xcf\x1a\x23\x1b\xd8\x6c\x49\x87\x3e\xeb\xc9\x4d\xb5\xf1\xde\xa9\x7a\x1b\x79\x2c\x49\x5b\x4d\x53\x0c\x6c\x0a\x1b\x79\xe8\x88\x9c\xf8\xae\x15\x9b\x98\x32\x36\xf2\x14\xce\x22\x75\x1b\x79\xe8\xc8\x87\x73\x09\x25\xdb\x16\x1d\xd9\x50\xe8\x61\x6a\xe0\x14\x4a\xa0\x4c\x7c\x8b\xcf\x27\xea\x41\xea\xab\x70\x7a\xdc\xc8\x78\x17\x0a\x8f\x1b\x19\x6e\x42\x18\x74\xdb\xe1\x45\x07\xc6\x08\xcb\x0a\xcd\xcf\x6d\x67\xc5\x64\x12\x1a\xa9\x66\x42\xf3\x73\x6b\xac\x98\x8e\x83\x21\x0c\x04\xdc\xe3\xc6\xdd\xd7\x4f\x67\xbb\x11\x74\x1d\xda\x6c\xeb\x6b\x8c\x50\x03\xa4\x2b\x4c\x66\x7d\x11\xa6\x41\x71\xc9\xd2\x24\x34\x5c\xb2\x34\x09\x8d\xb2\x13\x61\x06\xba\x11\x52\x15\x60\x8e\x1b\x8f\xc8\x63\xff\x2d\x05\x66\xb6\x68\x12\x91\x04\x4d\x84\x2c\xe0\x46\x00\x56\x3f\xd6\xed\x86\x4b\x26\x84\x41\x37\x9e\x9c\x85\x57\xef\x86\x8f\x36\xf2\x24\x20\x5c\x46\x6e\x3c\x35\x29\x02\xe0\x71\x10\x30\x6c\xe4\x3e\x07\x47\x43\x96\x1c\x90\x18\xa6\xdf\xd5\x76\xe3\x41\x59\xd8\x7f\x6e\xf8\x57\x82\xa7\x77\x23\xfd\x6d\x48\x4f\x2c\x8c\x0c\x21\xf2\xb8\x11\x80\x75\xd9\x7a\x0b\xf0\x42\xf0\xf4\x0e\xe0\x85\xe9\xd7\xbb\xdd\x96\xb4\x91\x5c\x34\x8c\x9d\xb4\x8e\x17\xe0\x45\x5a\xc7\x46\xca\x8a\x20\x07\xdd\x30\x65\x46\x9e\x26\x2c\x17\xa1\x24\xb8\xf1\x5e\x23\x50\x04\x37\x4c\x99\x91\x87\x07\x59\x32\xf2\xac\xdc\x6b\x0c\xf1\x42\x48\x35\x6d\x70\x23\xac\x22\x10\x3e\x37\xa2\x28\x69\x72\xdb\xe3\xf4\xd0\x2c\x14\xcb\xa4\x0d\xbe\xd0\x2b\x04\x37\xe4\x86\xa5\x21\x50\x04\x37\x32\x67\x5d\x36\x96\x2d\xf1\x23\x4b\xdf\x96\xb4\xc9\xdd\x27\xa9\x65\xe4\x66\x2f\xf1\xa3\x70\x97\xbd\x1c\x07\x19\x5a\xb6\xc4\x4f\x6e\x36\x0f\xca\x02\xe1\x73\x5b\xf2\x48\x5a\xc0\x29\xc7\x13\xca\x91\x3b\x26\x90\x60\xfa\xdc\x41\xc1\x12\xb2\xbe\x3b\x26\x90\x80\x15\xdc\x09\xfe\xa6\xc7\xb1\x80\x37\x84\x94\xe4\x00\x6f\x98\x80\x15\x7c\x01\x6f\x08\x3a\xc9\x7d\xc9\x34\x29\x1f\x2f\x8b\x74\x0d\x8a\x8f\x96\x5e\x8b\x93\x5c\x23\xdc\x3e\x77\x82\xbf\xc2\x52\xf2\x89\xc4\xf1\xe9\xa1\x59\x08\x22\xa5\xd7\xe2\x95\x35\x95\x81\x03\xac\x86\xe9\x17\xcc\xdd\xb1\x89\xd2\x6b\xf1\xca\x22\xcb\x49\x59\x38\x1b\xe9\xa4\x38\xf1\x62\xc1\x37\xb8\x23\x28\xd3\x6b\x71\x92\xec\x84\xe7\xe0\x4e\x2e\x4d\x7a\x2d\x8e\xc5\x93\x5e\x8b\x13\x0d\x16\xe2\x83\xfb\x92\x7a\x3a\xc9\x6e\x6b\x0c\xf1\xc2\xbb\xb3\x10\x06\x7d\x01\x6f\xa4\xa3\xe3\xe4\xf5\x0a\x72\xd0\x9d\xb7\xa7\x74\x74\xdc\xd6\xb4\xd9\x30\x77\x2e\x1d\x1d\x27\xb4\x94\x8e\x8e\x13\x0d\x16\xe4\xa0\x3b\xee\x65\xfa\x35\x40\x62\xd8\xc8\x53\x88\x91\x34\xf2\x14\x12\xeb\x4d\xaf\xc5\xc7\xa0\x41\xdc\x52\xdb\x33\xf2\x58\x12\xf4\x49\xaf\xc5\x29\xf6\x49\xb7\xc3\x31\xa3\x46\x9e\x53\x92\x5a\xd2\x0f\x71\x9e\x99\xd3\x0f\x71\x1c\xbf\x91\xc7\x92\x57\x65\x61\x06\xba\x9f\x10\x26\xc7\xc4\x49\xbd\x4b\xc7\xc4\x97\x60\x93\x81\xe3\x54\x00\x0b\x9d\xdf\xfd\x5a\x63\x88\xfd\x6b\x8d\x21\xe6\x08\x0f\x8f\xf1\x3b\x85\xcc\xee\xf7\x62\x43\x9c\x3f\x85\x06\xb1\x41\xf2\xff\xc8\x33\x8b\xc1\x94\x6e\x0c\xc0\x1b\xbe\xe5\x99\x7d\x59\x5f\x69\x23\x9f\xe9\xb8\xbe\xe5\x11\x25\xbc\x93\x7e\x4d\xcc\xd2\x5e\x17\xf0\x86\xc7\xb6\x66\x71\x35\x70\x9a\xa4\x05\x02\x54\x80\x74\x52\x82\x7a\xbf\x50\x54\x29\xca\x1a\xf4\xbb\x8b\x81\x2b\x24\x74\x2f\x8f\xfd\x9a\x3d\x74\x44\x83\x9c\xba\x90\x26\x09\xf2\x4f\x84\x9b\xef\x51\x19\x54\x87\x78\x82\x77\x7c\x1a\xf4\xc9\xba\xc3\xd2\x35\x31\xc1\xef\x5c\x78\x1f\x1e\xd3\xaf\x71\x21\xea\x79\xcc\xf7\x1a\x17\x80\x9e\x87\xad\x69\xc5\x3e\x15\xfd\xe9\x2c\x05\xb0\x36\xe9\x1b\x4d\xf0\x8e\xcf\x18\x5a\x20\x2a\xfa\xd3\x59\x0a\x5f\xdc\x6a\xc5\x66\xa6\x9a\x6f\x3a\xc4\x41\xb1\x8c\x60\xf2\x3d\x66\xf0\xc6\x37\x9d\xd9\x20\x95\x36\xa4\xe2\x62\xac\x31\x44\xfa\x58\xd3\x66\xc3\x1a\x43\xdb\x30\xd6\x18\x6a\x38\x38\x1f\xf2\xae\xe3\x58\x74\x64\xc3\x1a\x43\xcc\x91\x76\x26\xfc\x32\x8f\x83\x53\xa8\x83\x1b\x27\x0b\x24\xf5\x14\x17\x94\xca\x6e\x8d\x8b\x7d\x91\x4d\x14\x44\x50\xd3\xcf\x8b\xf9\x3c\xe3\x5b\x9e\x42\xde\x6a\x85\xdf\xef\x13\x9a\xe3\xd3\x43\x74\xdc\x9c\x42\xbd\x1b\x05\x48\x98\xe9\x1a\x06\x85\x72\xe9\x1a\x06\x2f\xb1\xe9\x1a\xc6\xba\x62\x32\x81\x62\xe6\xc4\xfb\x96\x67\x1d\xc3\x42\xc8\xfa\x3e\xc1\x3b\x8a\x6f\x79\xf8\x1f\x8e\x43\x9e\x75\x1e\x70\x84\xbd\xef\xf1\xc2\x7e\x9e\xf5\x77\x4d\x2b\xe6\xde\x35\x8b\x78\x99\x75\xba\x2e\xfc\x13\x9f\x78\x1f\x9f\x86\xa6\x06\xae\xa9\x34\xc9\xd8\x58\x42\x19\x5a\x0b\xcd\x23\x5d\xd4\x31\x1f\x81\x5c\x10\x7b\xbe\xc0\x3b\x42\xe6\xcb\xc0\xe3\x10\xb2\xbe\x8f\x75\x4d\xa5\x16\x06\x8f\x40\xc2\xcd\xf7\x31\xb5\xb3\x0b\x01\xcf\x07\x49\x60\x02\xd2\xf7\x51\x21\x4c\x17\x68\x62\x75\x7c\x7a\x7c\x17\x79\x74\xf6\x56\xa7\x70\xe0\x60\xa4\x03\x3a\x3a\xbc\x28\xb6\x32\x8c\x4f\x64\xbe\x8c\xa5\x6a\x47\x36\xb0\xea\xb2\x56\x06\xd1\x06\x61\xde\x3b\x68\x1e\xae\x9f\x34\xf7\x61\x48\x07\x1d\x98\x01\x8a\x9e\x20\xe0\x7c\x38\xdc\xea\x04\x0d\xde\x68\xd2\x11\x1e\xce\x71\xd0\x91\x1a\xc4\x69\xd3\x11\x1e\x4b\x18\xe8\x48\x8d\x75\xb3\x65\x47\x2c\x34\x8f\x74\x73\x07\x39\x1b\xe9\xd5\x0e\x62\xac\xe9\xd5\x0e\xae\x69\x3a\xb1\xe3\x80\xd2\xdc\xfd\x63\x8d\x21\xf6\x0f\xf6\xc5\x7f\x07\x0b\xd1\x07\xc9\x5c\xe9\xbf\x8e\x13\xaa\x65\x53\x8c\x13\xe1\x92\xa7\xe9\x5c\x6c\x88\x84\x13\xd1\x91\xc7\x8b\x72\xd8\xf4\x81\x07\x6f\x2d\xe9\x03\x8f\x9b\x5d\xcc\x93\x70\xb3\x69\x79\x12\xd0\xac\xe9\x14\x8f\x9b\x1d\xc8\x93\xf0\xa0\x38\x72\xe3\x97\x22\xcd\x2d\xe1\x9d\x24\xdd\xd5\x81\xde\x14\x92\x9d\x03\xab\xe1\x45\xba\x77\x82\x66\x7c\x1a\x8a\x1a\x3a\x0d\xbb\x1a\x82\x86\xaa\x86\x83\x41\x9b\x1a\xd6\xa0\xd9\x70\xd1\xa3\xab\xe1\xa6\x87\x1a\x26\x10\xb6\x0b\xcc\xc4\xc1\xc8\x70\x81\x99\xf8\x51\x16\xe9\xd9\x63\x4a\x2c\x61\xbb\xf9\x41\x28\x53\xa8\xf8\x7e\xa0\xae\x05\x82\xef\x07\x81\x4a\x41\xec\xf9\x81\x60\x10\xc4\x9e\x1f\xf3\xb7\x2f\x5c\x50\x25\x7e\xa0\xbf\xd3\x33\x3e\x26\xa2\x9e\x0b\x88\xc4\x0f\x92\x38\x86\x6c\x91\x03\x4b\x7f\x48\x4f\x1c\x3c\xcf\xa4\xef\xbc\x40\x33\xd2\x77\x3e\x26\x3c\x9e\x0b\x00\xc4\x8f\x09\x8f\xe7\x42\x38\xf3\x83\x07\x9c\x74\xa6\x8f\xbe\x06\x15\xb7\x9d\x15\xcb\x05\xb2\x45\xba\xd8\x27\x19\x34\xfd\xde\xc3\xd6\x2c\xd9\xc0\xce\xe5\x7a\x38\xc7\x21\xd9\x77\x36\x2a\xb9\xa5\x7a\x46\xe8\xfc\x7e\x38\xbc\x24\xfb\xce\x66\x27\xe9\xa4\x8b\x0a\xbf\xdf\x0f\x84\x4b\x49\x5e\x10\x2e\xe9\x90\x1f\x08\x97\x92\xbc\xc4\xa2\x43\xa4\x07\xc7\x32\xe9\xe0\x55\x48\x90\x83\x7e\x0c\x4e\xb2\x94\xcf\x31\xd6\x27\xda\x17\x4c\xff\x21\xa1\x7f\x2c\x01\x25\x19\x7f\x0c\x28\x95\x36\x3a\xf0\x05\x04\xa4\xef\x07\x21\x55\xe1\x18\xfa\x41\x4c\x23\x9d\xfa\xe3\x5c\x3d\x34\x06\x21\x8c\xf4\xd0\x8f\x73\xd1\x21\xd2\x67\x08\xc3\x4b\x12\x76\x2e\xc2\xb4\x1e\x17\xbb\x9f\xd3\x62\x8b\xa4\x77\x7d\xdc\xab\x87\x66\xb9\xd9\xfd\x9c\x85\x0c\xd3\x74\xb7\x8f\x9b\x9d\xcb\x59\x78\xbc\x15\xb0\xa1\x1f\x13\x88\xd7\x4b\xce\xf2\xb0\xc8\x39\xc6\x03\x73\xb2\x67\x26\x00\xc8\xa7\x47\x8e\xc1\x2c\x3f\x7a\xb0\xc8\x52\x82\x07\xa6\xc7\xf8\xd1\xc0\x19\x93\x12\x3c\x96\x60\xfb\xd1\x80\x26\x91\x12\x3c\xde\x35\xe8\xf7\xc0\x9c\xdb\x22\x2c\xd4\xb0\xc6\xc8\x1e\x9c\x20\xe9\xbc\x73\xc9\x31\xa9\xb8\x73\xe3\x24\xcb\x26\x3a\x37\x66\xc9\x4f\x0a\x07\x37\x3f\xa1\x8a\x38\x5d\xf6\x73\x09\x36\x19\x49\x67\x61\x5f\xfc\xb7\xd2\xe8\xcf\xc2\x95\xfd\x31\x1e\x22\x2c\xc7\xdb\xb9\xc3\xd2\xc3\x27\xb9\x6c\xe3\x47\x03\xcb\x29\x07\xff\xdc\x5f\x7a\x68\x6d\x96\x90\x93\x73\x7e\x02\x52\x9c\xae\xf7\x59\x17\xd5\xea\xb1\x84\x9c\xf4\xe6\xb9\x84\x5c\x7e\x02\x6a\xb1\xd0\xfe\xfd\x5c\x52\x2f\x3f\x21\x27\x3e\xdd\xf7\x89\x3b\xf2\xe9\xa1\x59\x3a\x83\xca\x4b\x3e\x31\xa9\xd2\xc1\x3f\x31\xa9\x04\x08\xe6\x0b\x77\x44\xf8\xfd\x7e\x1a\x9a\x44\xf1\x9e\xd3\x58\x42\x69\xe7\x93\x18\x6b\x3a\xe7\x27\xbe\x51\x3a\xe7\xa7\x73\xee\xa5\xbf\xcf\x25\xf5\xa4\xae\x4f\x5c\x21\x61\x86\xf8\x19\xec\x9c\xac\xb0\x33\x38\x3c\x32\xba\x4e\x42\xaa\xe9\xcf\x9f\xb8\x42\xc2\xfb\xf0\x73\x49\xac\x9c\x76\xa2\x73\xba\x00\x40\xfc\x24\x75\x6d\x24\x1d\xf3\x11\xc8\x85\x08\xe2\xe7\x12\x61\x49\xd8\x7c\xd8\x76\x41\x84\xf8\x44\x26\xf9\x34\x68\x8c\x73\xf5\xd0\x27\x13\xfe\xcc\x77\xa9\xeb\x73\xfe\x1e\x98\x0b\x48\xcc\x4f\xdc\xa9\x91\xdc\x5e\x7c\x22\x47\xf8\x9c\x55\x80\x2e\xdc\x30\x3f\x67\x8c\xd5\x05\x13\xe6\xe7\x2c\xc9\x29\x5b\xb2\x3f\x63\xac\x65\x4b\x6e\xe7\x6b\x6e\xd9\x92\xb9\x59\x51\x5c\x32\x74\x70\xce\xd7\x5c\x17\xd4\x98\x9f\x33\x62\x51\x32\x74\x70\x3e\x8b\x30\x51\x3a\x45\x58\xc9\x38\xc0\xf9\x2c\x4a\xc5\xdc\x74\xa7\xca\x96\xec\xcf\x27\x9e\xb2\x25\xfb\xd3\x37\x2a\x42\xe7\xf7\xf3\x7d\x66\x83\xcc\x97\x6b\xc6\x47\x4b\x06\x06\xae\x8d\xcd\x96\xbb\x7d\x6d\x70\x2b\xb3\xf2\xda\xe0\x56\xd6\xca\xc4\x2e\xf9\x34\x7c\xb9\xbd\x08\x61\x08\xbf\xcc\x2f\xa4\x83\xe0\x4e\xfc\xda\xd9\x4a\x99\x1e\xd7\xce\xb4\x32\x3d\x26\x88\xc8\xa7\x41\x74\xf4\x45\x69\x36\xec\xb3\x21\x67\xe9\x6c\x54\xce\xd2\x21\x4c\x36\xe2\xc5\xad\xdc\x65\x47\x5c\xc6\xaa\xcb\x6c\xb8\x66\x08\xb1\x64\x60\xe0\x32\x96\x50\x06\x0e\x10\x21\x25\xdd\xfe\x8b\x8b\x2c\xa8\x12\x9f\x00\x20\x9f\x1e\xa1\x06\x78\x91\xe5\x75\x39\xdb\x90\xcc\x05\xc7\x41\x26\xd0\x15\xeb\x13\x4d\x1b\xec\xbe\xac\x15\xf0\x3e\x8a\x00\x49\xfd\x1a\xac\xba\xac\x95\x0b\xd3\x43\xc8\x62\x7e\x61\x47\x08\xee\xc4\xaf\x03\x4a\x73\x3d\x0e\x96\x30\xd7\xe3\x60\x8c\x96\x0d\x1c\xcb\xe4\x96\x20\x87\x00\x51\xfc\x9a\xde\x53\xd9\x92\x5b\x7c\x23\x21\xa4\xf8\x85\xeb\xb2\xeb\x51\xfd\x3a\xe9\x21\x4b\xe3\xba\x10\x28\x32\x81\x26\x22\xc8\x5e\x32\x52\x70\xcd\x97\x0f\x17\x6e\x98\x4f\x88\x90\x4f\x8f\xdf\x7a\x03\xbb\x1e\x38\x97\xfb\x3e\xe1\x42\x3e\x0d\x5a\xdf\x07\xbe\x7a\xf6\xe0\x34\xe9\xd9\xec\x7a\x61\x54\x36\xd6\xf5\x72\x21\x65\x63\x5d\x38\x3a\xbb\x8c\x9d\xeb\x5d\x8c\x7e\xc7\xb8\xf1\x7c\x04\xd2\xe2\x37\x31\x45\x21\x95\xf9\xbd\x71\xa9\x45\xc7\x8d\x1b\x23\xd4\x16\xbf\x0b\x63\xc8\x84\xb8\xcb\xfa\xc4\xd5\xc0\x31\x97\x81\x70\x17\xb8\x4d\x3a\x66\x8a\x46\xd9\x92\x8e\xca\x01\x94\x46\xbb\x2b\x27\x41\xa1\x88\xbb\xc2\xbe\x8c\xae\x09\xcd\xf1\x69\xa8\x6a\xe0\xaa\xc8\xc6\xba\x1b\x67\x56\x26\xd5\x4d\xb0\x42\x10\x2c\x7e\xf7\x35\x86\xb8\xed\x6b\x0c\x11\xd6\x59\x42\x29\x9f\x89\xe6\xb1\x17\xc1\xa8\x3a\x68\x1e\x2e\xd4\x16\xbf\x89\x4d\x08\xe4\xc9\xef\x75\x87\x65\xbe\xdc\xc6\x79\x93\x13\x0b\xbc\x87\x0b\x87\xc5\x6f\x47\xfc\xc8\xc0\xb9\x9d\x25\x94\x3d\x73\xe3\x82\x08\x54\xc5\xef\xf9\x50\xe0\x82\x4c\xf1\xdb\x39\x1f\xb2\x78\x00\x00\x71\x61\xa8\xf8\x1d\x8b\x17\x91\x1e\x5c\x37\xd9\x44\xc0\x7b\xb8\x30\x54\xfc\x1e\x6c\x83\x67\xc3\x94\x47\x82\x5f\xf2\x7b\xfe\x28\x80\x0b\x7e\xc9\xef\x99\x47\xee\x42\x5b\xf2\xfb\x60\xda\xc8\x4f\x58\xa0\xdc\xfd\x03\xa1\x9f\xbb\x7f\x20\xc2\xf4\xd8\x70\x9f\x2c\x90\x1e\xc5\x6e\x94\xb1\xd0\x96\xfc\xbe\x10\x2e\x32\x81\x6e\xdc\x07\x81\xaa\xf8\x84\xf7\xd8\x8b\x60\xf2\xfd\xe6\x96\x57\x89\xd2\x7b\xdd\x72\x59\x4d\x37\x21\x0c\xe1\x0f\xf9\x3d\x73\xad\xbc\x4a\x94\xde\x37\x47\x3b\xcf\x18\xee\x43\x95\x80\xba\x97\xaa\xcd\x23\x45\x5c\xb2\x4a\x94\xde\x38\x07\x42\x59\xf1\x7b\x3e\x67\xba\x50\x56\x1c\x68\x8e\x92\x81\x92\xfb\x65\x09\x65\xe0\xdc\x08\x03\xc1\xae\xf8\xb3\x6e\xb6\xce\xe9\x83\x66\xcd\xb8\xc8\x33\x53\xab\x5c\x28\x2b\xfe\x94\x35\xc6\x77\x96\x67\xa6\x9e\x97\x8c\x69\x3c\x68\x56\xa1\xf0\x38\xe0\x1d\x25\x83\x1c\xcf\x0e\xfb\x12\xb6\xcf\xce\xa0\x12\xb6\x0f\xd1\x06\x81\xee\xf8\x33\xed\xee\x22\x88\x7b\x9f\x58\x1d\x9f\x1e\x9a\x76\x86\x1f\x4a\xc6\x45\x9e\x0a\x2f\x3a\x74\x4f\x5b\x83\x86\x1a\x16\x1d\x1a\x74\x5a\xe6\x25\x83\x1c\x0f\x2a\x5f\x68\xab\xfe\x74\x0e\xae\x44\xce\x83\x30\x10\x42\x8a\x3f\xc6\x2c\x92\x1f\x8f\xc1\xbe\xac\x84\x87\xb8\xa4\xa0\x6c\xfc\x99\xf9\xe7\x45\xc0\xa8\xfe\x10\x7e\x10\x20\x8a\x3f\x6e\xf4\xd0\xb4\xeb\x66\x7b\x36\x70\x60\x24\x50\x1e\x14\xba\xa0\x53\xfd\x09\x48\x97\xfc\x78\x66\xa4\xa0\x14\x1d\xed\x27\xd6\x18\xfd\x77\x14\xd8\x83\xfa\xcf\x28\xca\x83\x1d\x2f\xac\x1c\x7f\x96\xa4\x90\x2c\x79\x66\x24\xb4\x64\x9c\x05\xb8\x10\x17\x34\x8e\x3f\xc4\x26\x04\x8d\xe3\x6f\xa5\x87\x9c\xa5\x77\x82\xb4\x94\x0c\xcd\x00\xce\xe0\x55\xce\xd2\x4b\x0c\xbb\x4a\x74\xbc\x6d\x7d\xe2\x6a\xe0\x68\xe8\x76\xbd\x0d\xce\x25\x5c\x5e\xd4\x82\xd0\x63\xfc\xed\xec\x80\xee\xce\xdb\x39\x2b\x32\x65\xde\xce\x7a\xc8\x50\x01\x69\xa1\x08\xad\xd4\x01\x56\x28\x42\x2b\xf5\xd7\xd6\x18\xe2\x76\x09\x7d\x89\x9f\x77\x9d\x04\x49\x9b\xd7\xd9\x45\xc9\x92\x17\x0f\x4c\xd0\x38\xfe\x3a\x37\x43\x72\x00\xe8\x85\x92\x51\x94\x77\x1d\x1e\x09\x06\x90\x16\x8a\x40\xdf\xfd\x8d\x35\xa8\x48\x27\xcc\x24\x04\x1a\x7f\x83\x45\x96\xbe\x7a\x39\x3c\x02\xad\xf1\x77\xa6\xce\x78\x93\xd7\x02\xd2\x82\x37\x79\x2d\x2f\x4e\x5b\x93\xd7\xf2\x0e\x96\x50\xa6\xc7\x3b\xd6\x18\x22\xec\xe0\x54\x2b\xf0\xf2\x1e\x6b\x50\x71\x8b\x9e\xc8\x48\xcc\x7b\x70\xbb\x64\x14\xbc\x33\x93\xd8\x05\x49\xe3\xe0\x28\x94\x8c\xc4\xbc\x33\x0b\xd8\x85\x18\xe3\xef\xb9\xc6\xd0\x2c\x3c\x8a\x09\x42\xc6\x5f\x1e\xc5\x84\x18\xe3\x00\x2b\xb8\x00\x62\xfc\xbd\x58\xa0\x92\x63\xc0\x9c\x5c\xb2\x17\xc7\x4f\xe0\x2e\xfe\xde\x8b\xb0\xec\xb1\x98\x53\x0f\x14\x47\x06\x5e\xc0\x51\x70\x41\xb7\xf8\x3b\x31\xe6\x5c\x48\x2d\xfe\xce\x5c\x9a\x92\xa1\x19\x90\x16\x8a\x40\xdf\xfd\x9d\xa9\x7c\x2e\x2c\x17\x7f\x71\xeb\x32\xd8\xf2\xbe\x6b\x16\x11\xf6\xc2\x9c\x7c\x92\xf7\x5d\x83\xae\x1e\xb1\xcd\x3a\x03\x17\xb6\x4d\x6c\x1b\xc2\xe0\x2b\x1d\x02\xa4\x05\x6f\x5f\xd3\x3f\xb6\x8d\x41\xbf\x96\x7e\x6c\xd8\x99\xc2\x72\x89\xad\x30\xc6\x57\x3a\x04\x60\x0a\x2e\x70\x97\xd8\x0a\x0b\x14\x1a\xb4\xa0\x27\x22\x07\x85\xd2\xd0\xa0\x3b\x67\x2c\x34\xc6\xbe\xc6\x10\xa5\x3b\x37\xea\x6b\x47\xc4\xb6\xb3\xa6\xdf\x40\x49\x6c\x3b\x27\xa8\xaa\xa1\xa2\x49\x86\xd8\xc7\xbc\x15\x62\x4c\x6c\x48\x3a\xe1\xc1\xc4\x56\x19\xa3\x89\xb9\x89\x29\xe3\x42\x7b\x89\xad\xad\x31\xc4\x4b\x5b\x63\x88\x97\xa5\xd1\x86\x06\x6d\x1c\xcb\x26\xe6\x70\x62\x15\x05\x8a\xad\xa3\x6a\x87\x66\xe9\x6b\x50\xb1\x3f\x11\x1a\x5c\x00\x31\xb1\xf5\x35\xa8\xb8\x45\x2b\x0a\x0f\x26\x36\x63\x4d\x87\x28\xf5\xd5\x20\x4a\x11\x5b\xc2\xc7\x89\x0d\x7f\x53\x28\x2b\xb1\x0d\x4e\xe1\xd0\xb4\x68\x0f\x61\xa8\xc4\x36\x16\xb7\xbf\xf3\x06\x16\xdb\xfc\x75\xab\x22\x9c\xd9\x98\x38\x0a\x9f\xf1\xc4\x28\x31\x23\x01\xac\xc4\x86\x33\x2a\xf8\x94\x00\x47\xa1\x28\x32\x15\x1b\xe2\x47\x81\xa8\xd8\x26\xbc\x6d\x51\xdc\x29\x00\x56\x70\x81\xa3\xc4\x46\x10\xa9\xe5\x45\x98\xf8\x54\x45\x81\xa8\xd8\x88\x83\x0b\x0b\x25\xb6\x6b\x4d\xab\xc5\xba\x16\x2f\x5a\x8a\x25\x6d\x42\x84\x2d\x69\x93\x57\x85\x20\x92\xb0\x6a\x03\xa4\x85\x22\xac\xda\xd8\xee\xf5\x89\x66\x99\x2f\xee\x45\xb1\xab\xd8\x1e\xc4\x60\x5e\x15\x5c\xd4\xbd\x68\x96\x77\xf5\xd0\x2c\xd8\xad\x2d\x2f\x02\x21\xa2\xbd\x68\x81\x5e\x8e\x57\x9e\xd9\x97\x6d\xc8\x23\x8a\x70\x51\xc8\x2c\x0a\x3e\xab\x50\x45\xa2\x10\x33\x52\x0c\x2d\xca\xc6\x12\xea\xf0\x94\xb2\x66\xf9\x12\x56\xb0\x4a\x05\xab\x11\x65\x3e\x9b\x15\x85\xbb\xa2\xec\x8b\xd2\xfc\x64\xf0\x89\xa6\xc5\x90\x15\xac\x46\x94\x09\xcc\xe2\x82\xd5\x88\x82\x1c\x50\x64\x2a\x4a\x5d\x63\x98\x1a\xd8\xca\xaf\x35\x18\x85\x17\x77\xc1\x6a\x44\xc1\xcd\x55\xec\x2a\x40\x6b\x28\x8a\x5d\x45\x69\x6b\x0c\xd1\xd1\x16\x61\xe2\xa5\xad\x41\xc5\x8b\x2d\xc2\x34\x8b\xc1\xfe\xae\x4f\x78\x25\x13\x58\x45\x14\xe3\x68\xef\x1a\xc3\xf9\x44\x32\xbe\xe0\x3c\x2a\x88\x14\x05\x3b\xa2\x27\x61\xd8\x11\x42\xae\x89\x12\x5c\xa0\x2a\x3a\x30\x2b\x85\x1a\x11\x65\xac\x4f\xd4\x63\x70\x1c\xaa\x28\xc5\xdf\xec\x49\x07\x99\x32\x02\x67\x88\x72\x40\x47\xd5\x12\xe2\x6f\x2a\x54\x15\x05\x6f\x72\x97\x7c\x2e\xe7\x1a\x43\x8b\x7c\xc2\xad\x04\x76\x99\x15\x00\x2e\x4c\x99\x28\xdc\x5b\x81\x33\x44\x99\x15\x00\xde\x73\xd0\x99\x82\xeb\x3d\xc7\x58\x17\x59\x22\xbd\xcc\xfc\x7e\x17\x98\x42\x80\x7b\x50\x14\xcc\x8a\x72\x73\x1c\x24\xd2\x0b\x1e\xa9\xb0\x13\xa2\x10\x0d\x56\xb8\x2b\x40\x35\xf0\x9e\xb3\xac\x9b\x2d\x81\x5d\x70\x51\x7b\xce\xc2\x0b\x57\xcf\x59\x78\xd0\xea\x39\x28\x86\x85\x42\x66\x51\x78\xe1\xea\x39\x28\x2e\xaa\x42\x66\x51\x88\x46\x09\x20\x26\x76\x9e\xdd\x05\x62\x10\x3b\xf7\x56\x88\x04\x31\x71\x0f\x3e\x63\xe8\x13\x62\xbd\x42\x13\x88\xbd\xac\x59\x34\xc6\x7c\x6a\x2a\x8a\x79\xc5\x8e\x8b\x2a\x1c\x96\x00\x91\xa0\x28\x08\x16\x3b\xa1\xa5\x3d\xa7\x5d\xd7\xf4\x1b\x6c\x89\xbd\xb2\xa6\x5f\x4b\x34\x00\x31\x70\x55\xe0\xc7\x4e\xfe\x9a\x2a\xf0\x63\x9f\xa5\x3c\xae\x0a\xfc\xd8\xdb\x1a\xe3\xbb\x1e\x3b\xc1\xa7\xdd\x7e\x07\x89\x23\xf6\xbe\x88\x6c\x6a\x58\x44\x8a\x8d\xce\x69\x32\x51\x4d\x40\x7a\x97\xca\xdc\x89\x3f\xab\xe6\x3f\x76\x62\x57\xaa\xf9\x8f\xdd\xd6\x2c\x62\x63\xdd\x72\xd7\x27\xbe\x3e\xd1\xa0\x8e\xa0\x94\x9a\x9c\x80\x06\x9f\x1e\x39\x06\x1b\x2f\x0b\x6a\x27\xee\xb4\xbb\x96\x02\xef\x74\x77\x6d\x2b\xef\x46\xaa\xb5\x8f\x7d\x70\x12\xa4\x48\x77\xe2\xcf\x02\x69\x89\x7d\x2c\x4a\xc5\x3e\x06\xc2\x9e\x7b\x84\x86\x57\x69\x7d\xec\x44\xa8\xfb\x50\x0f\x12\xe4\x54\x5a\x1f\xfb\x12\x0c\x32\x20\x77\x5e\x85\x54\x38\x1f\x3b\x92\x42\x85\xf3\xb1\x9f\x08\xa8\xc8\x86\x39\x8b\xc0\x4c\x62\xbf\x50\xf9\xb9\x84\x37\xeb\x91\x2b\xc6\x3b\xb6\xaa\xc5\x63\x9f\x45\x3b\xae\xe2\xf0\xd8\x97\xfe\xce\x35\x5d\x97\x3a\x57\x0c\x75\xad\xc2\xee\xd8\x1f\x66\x91\x32\x9e\xf8\x05\x9f\x86\xec\x81\x38\xce\x35\x7d\xd7\x18\xe2\xe5\xe5\x48\x49\xb3\x56\x5e\x74\x14\xca\x8c\x3a\x5f\x98\x8b\x42\x99\x51\xb1\xf4\x55\x72\x1d\x95\xb4\x17\x55\x58\x47\x9d\xa5\x74\x2e\xcc\x90\xa8\x13\xc6\xb1\x08\x27\x3e\x2a\xaa\xd6\xa4\x5a\x2a\xaa\x56\x15\xd6\x51\x09\x22\xa9\xc2\x3a\xea\xcc\x65\x2b\x8a\x4b\x46\xe5\xca\x9a\xc4\x20\x90\x07\x45\x81\xca\xa8\x5c\x59\x15\x32\x47\x25\x07\xd5\x64\xfb\x56\x42\x44\x0a\x65\x46\xb5\x35\x86\x98\xe3\xf1\x45\xa8\x22\x51\x31\x75\x85\x2a\x12\x95\xb0\xac\x40\xa7\xa3\x3a\xcc\x75\x8d\x81\x87\x5e\x65\xcf\xd4\x09\x26\x54\x84\x35\x1f\x14\xfe\xbb\x2a\x9b\xa3\x62\x1d\xab\x6e\x39\x2a\xb1\x15\x95\x29\x47\xc5\xdd\x16\x0a\x75\xd4\xb1\xc6\xd0\xce\x11\xa7\x35\x89\xc1\xca\xd3\x8a\x30\xde\xa3\xce\x8c\x8c\xa2\x08\x6a\x54\x7c\x67\x01\x80\x44\xc5\x55\x56\xed\x73\xcc\x92\xfc\xcf\x27\x9a\x05\xdf\x59\xb5\xcf\x51\x31\x5e\x05\xef\x11\x15\x15\xa7\x90\x6a\xd4\x9b\x35\xf5\x6c\x68\xf4\x10\x2f\x04\x6e\x55\xfb\x1c\xf5\x86\x74\xa9\xfc\x7a\x33\x8b\x44\x4e\xc5\x77\x56\xa9\x73\x54\x7c\x67\x95\x29\x47\xc5\x78\x55\xf1\x6f\x54\x34\x5a\xcd\x53\x88\x67\xac\x5a\xdf\xa8\x2f\x0b\x94\xc7\x12\x6b\xd6\x24\x60\x1b\x2a\x4e\x65\xb4\xd1\x88\xc2\x2a\xb4\x1b\x6d\x5f\x83\x86\x1a\x20\x5d\x37\xbb\xad\xb3\xae\x8b\xdc\x08\x98\x2a\xd6\x1b\x94\xd3\xbb\xaa\x66\xa3\x11\x30\x15\xe6\x76\xb4\x75\x3d\x64\x36\x34\x1c\x50\x55\xcd\x46\xc3\xce\x54\x34\x38\x1a\x99\x0b\x2a\xa3\x8d\x86\xe1\x59\xdb\xef\x84\x10\xa3\xa1\xee\x84\x24\x1f\x14\xdf\xbb\x8a\x6e\xa3\xf5\x35\x9e\xab\x81\x2d\x91\xc0\x6e\xb6\x38\xd7\x18\xc6\xd1\x18\xfa\x04\x8d\xa6\x92\xda\x68\xd8\xad\x8a\x3f\x07\xf5\xfa\xae\x0a\xda\x68\xce\x1d\xd6\xfd\x6b\x44\xd9\x54\x1f\x1b\x0d\x15\xa7\x08\x75\x34\x72\x49\x55\x30\x1b\x6d\x5d\x59\x39\xb4\xd4\xeb\x17\xa1\xc0\xc7\xac\xc6\xff\x7c\xa2\x31\x06\xeb\xa1\x2b\xdb\x08\x99\xa9\xa4\x36\xda\xc4\xff\x72\x55\xd0\x06\xf5\xfa\xae\x72\xd8\x68\x33\x4b\xbc\x28\xca\x1d\xd4\xeb\xbb\xca\x61\xa3\xad\x3b\xac\x5b\xde\x70\x51\x05\x1c\x1f\x8d\x90\x99\x80\xe3\x83\xe2\x7b\x17\xcc\x48\x34\x6c\x5f\xc5\xc1\xa3\xf1\xd6\x22\xdc\x91\x98\x95\xf4\x9f\x1e\x22\xfd\x82\x39\xdd\xf2\x86\x31\xac\xea\xd7\x68\xa4\x46\xa8\xb6\x35\x28\xad\x77\x95\xb2\x46\x23\x57\x42\x95\xab\xd1\x30\x97\xab\x65\x8f\x93\x1e\xa2\x14\xfb\xd9\xe5\x70\xb5\x9b\xf5\x90\xd4\xa3\x9c\xbe\x28\x1e\x1f\x8d\xb0\x9b\xc2\xef\x41\xf5\xbc\xab\xd8\x35\x1a\xcf\x33\x2a\x65\x8d\xf6\xc0\xad\x67\x8f\x87\x1e\xda\x5b\x3c\x63\x05\xe8\xa3\xbd\xac\x87\x84\x4b\x43\xb8\xa8\x94\x35\x1a\xaf\xb9\x82\xa7\x8f\xf6\xae\x69\xb5\x40\xef\x9a\xf6\xdb\xd0\xd1\xbd\x0a\xb9\x47\xdf\x16\x2f\xa1\x86\x87\x86\xef\x02\x51\x5f\xef\x2e\x77\xaa\xf3\x34\x2b\x34\xfa\xe8\x05\xf6\x25\x39\x3b\xd9\x14\x2a\x65\x8d\x59\x3d\xff\xf9\xe4\xbb\x62\x1d\x0b\xdb\xa5\xd0\xa9\x9e\x77\x97\x42\xef\x3b\x37\x4a\x92\xb3\x13\x65\x53\xa4\x3f\xfa\x52\xf9\x0a\xdd\x75\x34\xbc\xca\x61\xa3\xe3\x4c\x2b\xd2\x1f\x1d\x89\x25\x0c\x95\xe8\x84\xcc\x84\x90\x12\x9d\x47\x20\x01\xa2\x44\x27\x86\xe6\x92\x7a\x7d\x09\x39\x19\x6b\x1d\x21\xa7\x0a\xda\xe8\xf8\xce\x2a\x98\x8d\xde\xd7\x18\xe2\xa5\xaf\x4f\xb4\xa6\x9d\x55\x97\x28\xed\x04\xc4\x14\xc7\x8f\x6e\x6b\x0c\x6d\x14\xfe\xb7\x02\xfb\x41\xf5\x7c\x51\x60\x3f\x3a\x0f\x49\x82\x5d\x89\x4e\xa4\x5f\x81\xfd\xe8\xcb\xb0\x90\x2c\xec\xbe\xe8\xd0\x2c\xc1\x12\xca\x58\xeb\x64\x98\xba\x44\x5f\xc7\x87\x57\x60\x3f\x3a\x19\x5d\xaa\xbc\x8d\x3e\x61\x46\x8a\xe2\xf8\xd1\x71\xd9\x5d\xa2\x8f\x1a\x7d\x77\x89\xbe\xbe\x04\x9b\x24\x5d\x1f\xce\x18\x1a\x74\xa6\x78\x15\x05\xf6\xa3\x13\x9d\x53\x6d\x6e\x74\xcc\x17\xc1\xd3\x47\x3f\x10\x17\x12\x6c\x9d\x60\x5c\x93\xd8\xea\x38\xe4\x2a\xc5\x8d\x8e\x71\xa2\x52\xdc\x98\x05\xf7\x7b\x69\x65\xfb\x1d\x05\xd6\x97\x3c\x92\xf8\xe9\x13\xc8\xa3\xe8\xe5\x20\x3a\x19\xef\x2e\x59\xd2\x5f\x56\x2f\x2f\x24\xcf\xb4\x7a\x4a\x88\xce\xa5\xd6\x53\x42\x74\x72\x38\x55\x97\x1a\xb6\xad\x59\x9a\x1a\x10\xa5\xba\x3b\x46\x70\x5d\x8f\x0d\x61\x18\x19\x2a\x32\x0d\xaa\xe0\x8b\x5e\x1f\xc2\xf0\x92\xf5\xfa\x10\xb6\xae\xbd\xac\x0e\xe3\x96\x0b\x6b\x3e\x8c\x97\xdd\x26\x61\x4b\x8d\x7b\x11\x18\x7f\x18\x71\x70\x55\x9d\x86\xed\x8c\x21\xc9\x69\x58\x1d\x7a\x9f\x08\x5b\x57\x56\xa6\x8c\x11\xee\xd2\x73\x44\x58\x83\x39\x89\x41\x5b\x17\x52\xb6\x8d\xf1\x7c\xa7\x52\xd6\xb0\x99\x51\x59\xf4\x3e\x11\x66\x6c\x83\xce\xbd\xf1\x08\x9b\xef\x13\x14\x98\x17\x21\xc9\x87\x71\xbb\x9a\xc4\xa0\xf1\x8e\xa6\xaa\xd3\x30\x82\x59\x21\x3b\x82\x7a\xf2\x92\x0f\x16\xc6\x2b\x59\xc8\x8e\x30\x5e\x51\xf3\xc1\x82\xf2\x71\x57\xa1\x6a\xd8\x84\xe7\x2a\x82\xa7\x0f\x3b\x16\x1d\xda\x86\x63\xd1\xa1\x31\x66\xd9\x65\xc9\xd7\x07\xca\xc7\x4b\xbe\x1c\xd8\xc5\x09\x92\x4c\x33\x32\x21\x54\xdb\x1a\x76\x71\x2c\x5b\x36\x9c\xf4\xd0\xb4\x13\x75\xc6\x55\xca\x1a\x46\x66\xb5\x2a\x57\xc3\x70\x51\x55\xb9\x1a\x36\xab\x3b\x4a\xbe\x1c\x18\x81\x28\x55\xae\x86\xe1\x91\xe6\x53\x82\x91\x96\x28\x44\x9e\x30\x5c\xd4\x7c\x5b\xa0\x38\xbc\x08\x6b\x3e\x8c\xb8\x53\xe4\xf5\xc0\x06\x17\x18\x7f\x50\xb6\xed\xaa\x7e\x0d\x27\x0b\x4a\xd5\xaf\xe1\xe8\xcd\x7c\x8e\x70\xea\x3f\x54\xca\x1a\x5e\x38\x1f\x3d\x1b\xe8\xa1\xc3\xef\x5c\x20\x55\xae\x86\x53\xbb\xa1\xca\xd5\xf0\xc2\xee\xcb\xf2\x72\xde\x9e\x9a\x2c\x2f\xdf\xd9\x7d\x19\x5a\xce\xfb\x77\x3e\x52\x78\x83\x7d\x99\x1e\xce\x6d\x50\xf5\x6b\xf8\xc4\xb8\x72\x55\xbf\x86\x63\x66\xab\xfa\x35\x9c\x1c\x27\x41\xba\x87\x77\xf6\x45\x57\xcc\x09\x0f\xe7\xab\x05\x95\xcd\x2e\x68\x9f\x70\x5b\xec\x87\x1a\xd8\x6c\xd9\x22\x4e\x11\x85\x8a\x64\xc3\x09\x1c\xa9\x26\x36\x9c\x38\x91\x4a\x60\xc3\x49\x5a\x50\xc5\x6b\x38\x71\xa2\x7c\x0a\xf1\xa5\x7c\x64\xcf\x78\xb0\xfb\x32\x4e\x9c\xa0\x8f\x00\xfd\xc3\x89\x17\xe7\xdb\x88\x13\xf4\x09\x59\x2b\x7e\xac\x69\xb5\x40\xe4\x27\xe5\xeb\x89\xf3\xf0\x23\x9c\xf8\x70\x8c\xe8\x26\x5b\x84\x42\x66\x17\x5e\x50\xf8\xba\x84\x12\xc1\x8e\x36\x52\xb1\x6e\x38\xce\x74\x3e\xa7\x50\xea\x5c\x04\xe3\x1e\xbe\xee\xad\x64\xb2\x63\x33\xab\xbe\x37\x7c\x29\xb0\xf8\xad\x37\x30\xbf\x91\xe0\x12\x94\x4e\x9e\xb0\xca\x83\xc3\xd7\x85\x94\xd5\xe1\xd8\xbe\xaa\x17\x0e\x27\x35\x49\xe5\xc1\xe1\x2f\xab\x27\x1b\xcb\x79\xe2\x11\x1c\x7b\x38\x5e\xb2\xca\x83\xc3\x49\x4d\x52\xf1\x6f\xf8\xba\xa1\xb2\xb1\x82\xc8\x70\xc8\xc6\x8a\x8d\xb5\x91\x6d\x13\xeb\x42\xca\xb6\x09\x0c\xd9\x7c\xe2\x89\xb2\x28\xd5\x27\x5c\x37\x01\xb6\x47\xe0\x47\xab\x5e\x38\x66\xdd\xf2\xa7\x47\x51\x03\x67\xb6\x67\xc3\xa0\xc7\xae\x06\x78\x91\x59\x16\x84\x99\x54\x1e\x1c\x81\x02\xcb\x77\xa3\x68\x6b\xd0\xa6\x86\x83\x1e\xd9\xf0\xd0\xa0\xf5\x58\x77\x58\xe2\x27\xb0\x39\x43\xb2\x24\x70\x95\x55\xc9\x1b\xab\x5c\x5a\x75\xba\x11\x7d\x0d\xaa\x35\x5d\x77\xd8\xb2\x61\x8d\xa1\x15\xb3\xf5\x89\x1a\xc8\x50\x51\x59\x6e\x04\x19\x2a\x2a\xcb\x8d\x20\xdc\xa5\xb2\xdc\x88\x09\x57\x50\xf2\x31\x2a\x78\x15\x0a\x39\x3a\x41\xac\x57\x98\x4e\x11\xeb\x52\x4b\x96\x04\xb1\x5e\x95\xc3\x46\xcc\x9a\xa5\x92\x0f\x5a\x81\x79\xa8\x1f\x6e\x88\x20\xba\xa5\xfa\xd8\x08\x92\x8f\x05\x2d\x1f\x81\xde\x14\x70\x7c\xc4\x01\x1d\xba\xf6\xc1\x5b\xad\x2a\x68\x23\xb8\x90\x02\x8e\x8f\x20\x92\x2b\x9c\xf8\x88\x6b\x0d\x2a\xe6\xae\x45\x98\x98\xbb\x38\x96\xba\xf6\x71\x2f\xc2\xc4\x2d\xb1\xab\x2e\xcb\x2b\x96\xaa\x95\x5d\x15\x4b\x91\xea\x22\x07\xb1\x5e\x15\xdd\xc6\x2a\x86\x56\xd1\x6d\x04\x1e\x69\x97\x46\x0b\x3c\xd2\x2e\x05\x16\xef\xfa\x44\xd3\x62\xab\x0a\x49\x3e\x82\x60\x56\xe4\x15\xe3\x69\x56\x48\xf2\x31\xb0\x44\x85\x24\x1f\x83\xfc\x7e\x01\x45\xc5\xd8\x58\x20\xa9\x27\x8a\xa1\x4b\xbe\x09\x0e\xf2\x3e\x04\x25\x15\xa3\x2c\x4a\x4d\x0d\xac\xba\xb4\xd1\x28\x6b\xd0\x2f\xe9\x03\x7f\x53\x05\xb3\x41\x75\x74\x11\x2c\x7c\x8c\x89\x64\xed\xaa\x89\x8d\xb1\x73\xa4\xa4\x9e\x06\x77\x5f\x25\xb0\x31\x08\xaa\x0d\x1d\xba\xc1\xe3\x6d\x3e\x12\x0e\x84\xc1\xd0\x29\x1c\x38\xa0\x43\x87\x6e\xcc\xdf\x16\x77\x55\xcd\xc6\xe0\x55\x28\x9f\x11\x07\x29\x1a\xf9\x8c\x38\x48\x46\xd3\x2f\x51\x04\x15\xd6\xa5\x4b\x93\x8c\xce\x12\x4a\x2d\x8c\x75\xd5\x25\xd7\x07\x1a\x5e\xb5\xb9\x31\xd0\xf0\xf9\x36\x39\x6c\x11\x26\x3a\x78\x09\xca\xc7\xca\x41\xd2\xb2\x00\xab\x62\x10\x59\xcb\xc7\xca\x81\x55\x9d\x4f\x91\x03\xe9\x20\x04\xab\x18\xbc\x26\xe5\x53\xe4\x2a\xb9\x1e\xc5\x7f\x47\x81\xad\xf2\x6b\xe1\x5d\xc5\xa0\x6e\x41\xf0\x56\x31\x90\x25\x23\x4f\x24\xde\xe9\xc8\x13\x89\xc9\x3d\xf2\x00\x12\x3a\x1f\x79\x00\x8f\xb5\x36\x1a\x94\xa0\xda\xc8\x03\x88\x51\x9e\x6f\x9d\xe3\x60\x07\xa4\x27\x06\x41\x35\x61\xbc\xc7\x20\xa8\x36\xf2\x00\x62\x0f\x8c\x3c\x6f\xc4\xd2\x55\x85\x1b\xe3\x5c\x63\x88\xb0\x8b\x9b\x21\xfb\x68\x90\x43\x36\xf2\x00\x12\x18\xcf\x27\xd6\x71\x73\x44\xa5\x38\x06\x4f\xbd\x23\xcf\x1b\x95\x08\xc2\x78\x8f\x41\xfe\x97\x7e\x0c\x23\x06\xa1\xaa\x91\x27\x12\x49\xa1\x3a\xdd\x58\x05\xd5\xaa\xd3\x8d\x63\xe3\xba\x59\xf6\xe0\x13\x9d\xb7\x83\x9c\x0d\x61\xbc\xc7\x81\xcf\xaa\x82\xd9\x38\x48\x08\x53\x7d\x6c\x1c\xa0\x24\x08\xb0\x2a\x8e\x02\x2f\x3a\x4d\x07\xf9\xca\x43\x1e\xc7\x51\x58\x53\x6d\xe5\x81\x51\xa0\xea\xd7\xa0\x7e\xba\x08\xe3\x3d\x0e\x62\x57\x2a\x87\x8d\x63\xc9\x92\x9e\x3d\xa0\x54\x1a\xfe\xc0\xef\x55\xf5\x6b\xac\xfa\x69\x55\xbf\xc6\x01\xfe\x89\xaa\x5f\xe3\x58\xc2\x45\x21\x91\x03\xcf\x58\xc0\xf1\x71\x54\xee\xb0\x6c\xf0\x03\xcf\x38\x1f\xa5\x0f\x62\x57\xf9\x06\x7d\x90\xe9\x9a\x6f\xd0\x07\x9e\xb1\x00\xab\xe2\xe8\x6b\x0c\x2d\x10\x66\x83\x8a\x5d\xe3\x20\x99\x4b\xa5\xac\x71\xd8\x1a\x43\xd3\x12\xcc\xd2\xef\x78\xc4\x81\x73\xa0\x22\xd3\x58\x25\xd7\x2a\x32\x8d\x83\x80\xfa\x48\x4a\x71\xa6\x47\x52\xea\xb0\x2f\x73\x79\x96\x4b\x7f\x1a\xf4\x09\x11\xf6\x7c\x55\x9e\xd5\xd1\x9f\x06\x4d\x1b\x6b\x96\x6c\x60\x81\xa4\x37\x0f\x82\x59\xaa\xf0\x8c\x83\x18\xbc\x00\xdb\xe3\x58\xd2\x21\x99\xa3\xaa\x49\xd5\x99\xb1\x0a\xaa\x55\x7b\x19\x07\x99\x65\xc2\x78\x8f\x03\xd3\x63\x24\x2f\xcb\xf4\x90\xba\x3e\x0e\xae\x87\xd4\xf5\x41\x86\xca\xf8\xd1\x83\x33\x96\x3d\x4e\xb6\x41\x0a\xfd\x58\x02\x45\xa6\xfa\x41\x99\x93\x4a\x1c\xe3\x38\xb9\x40\xb2\x99\x8f\x19\x83\x0f\x81\x10\xc5\x31\xfd\x89\x50\xad\x61\x50\x61\x1d\xaa\x35\x8c\x83\xc0\x40\xcf\x69\x67\x60\x20\x54\x7c\x18\xc7\x0c\xb9\x87\x8a\x0f\xe3\x98\x06\x4e\xa8\xd6\x30\x8e\x7b\x4d\x2b\xc2\xe6\x6b\x5d\xa8\x92\x30\x8e\x69\xbe\x84\xea\x04\xe3\x78\xd8\x5b\x59\x1a\xc7\x84\x4b\x2a\x96\xa4\xbf\xeb\x13\x8d\x31\xd1\x23\x43\xe5\x78\x71\xcc\x5f\x2d\x2c\xf9\x52\x7f\x4c\x2f\x23\x36\xe9\x86\x73\x83\x7d\xc9\xf5\x13\xb1\x95\x6f\xf9\x14\x43\x17\x81\xe0\xc7\x2c\x86\xfe\x7c\xf2\x9d\xf6\x9c\xd6\x4a\x6c\x7b\xfc\x8e\x02\x3b\x31\x65\x04\x88\x1f\x67\x59\x24\x0c\x35\xac\x19\x43\x0d\xac\xaf\xa4\x2f\xa5\xce\xb1\x49\xfa\x9e\xf3\xc7\x93\x8b\x30\xf4\xe3\x24\xb8\x2e\x0c\xfd\x38\xe7\x03\x7b\x08\xa2\x27\x66\xa9\x73\x09\xd5\xb7\xc5\x49\xa0\xc1\x64\xa8\x50\xea\x1c\x82\xc6\x89\x13\x01\x95\x59\x0c\x27\x02\x4a\xbf\xc0\x12\x67\x63\x4b\x24\xb0\x4f\x1e\xd8\x05\xb5\x1f\x67\x5b\x84\x89\x97\xb6\x66\xc9\x31\xd6\x2c\x62\xae\xaf\x4f\xc4\x5c\x87\x97\x96\x3d\xe6\x11\x15\xa2\x7d\x9c\x9d\x93\x20\xc7\xef\x9c\x3f\x23\x14\x2a\xa5\x8b\xd3\x38\x80\x52\x0b\x27\xd1\x76\x21\xda\x07\xe5\xd2\x21\x68\x9c\xa0\x3a\xba\x98\xcc\x86\xd3\xd9\x39\x69\x81\xd3\xb9\x3b\x3d\x7b\xb0\x73\xd2\x02\x27\x32\x2d\xb3\x29\xce\x60\x2b\xa5\x16\x4e\x02\x1e\x96\x27\x32\x16\x73\xe2\x25\x60\xae\x67\x03\x2b\x26\xdb\xf7\x0c\xf6\x25\x8f\xd4\x58\xb3\xa8\xc7\x80\x7d\xf9\x8a\x14\x54\x87\x6a\xeb\x82\x82\xea\xa2\xdf\x8a\x89\x93\x28\x8a\xb0\xf7\xe3\xaa\x70\x2b\xc5\x31\x7f\x97\xff\xd3\xf0\x65\xff\x5a\xc7\x41\x8a\xe3\x6a\x6b\x5a\x53\x03\x87\x4e\xf6\xcc\xd5\xd8\x5b\x19\x05\x17\x25\x7d\x99\x3b\x72\xb5\x45\x69\xa8\x81\x8d\x92\xae\xb9\xda\xa2\x54\x74\x90\xb3\x91\xd9\x25\xfc\xb6\x7f\x08\xe6\x27\xae\x75\xc6\x74\xa3\xae\x75\x82\x14\xc7\xbf\x0c\x5e\x64\x25\x5c\xd4\xf9\x64\xfe\xc9\x85\xb9\x9c\xf9\x27\xb3\x4e\xf7\xd3\x20\xc2\x78\x66\x16\xa0\x7f\x5c\x84\x98\x85\xdf\x1f\x57\x20\x28\xa5\x15\xaf\x75\x1c\x74\xa3\xae\xb5\xfb\x52\x71\xfc\x2e\x7f\xa8\x1c\x2f\x56\x9d\xae\xe9\x46\xf1\x33\xfc\x45\x60\xfc\x71\xf1\x66\x2c\x30\xfe\xb8\x4e\x78\xd1\xf5\xb8\x48\x38\xce\x1c\x16\xea\x63\x43\x05\x59\x71\xcd\x67\xd5\x50\xfd\x55\xf0\x23\xfb\xa1\xfa\xab\xb8\x48\x38\xce\xb4\x97\xeb\x66\x8c\x92\x0d\xdc\x39\x5d\xa0\x6b\xa6\x68\x84\x70\x69\xe2\x9a\x29\xc9\xa1\x0a\xad\x98\xbf\xba\xff\x69\xd0\x56\x52\xd7\x6e\x3d\x7b\x74\x1a\xb2\x87\xf1\x89\x48\x7f\xa0\x43\xe2\xe2\x22\xa2\x9c\xb9\x34\xd7\x8c\x28\x87\x2a\xb4\xe2\xc2\x22\xce\x4c\x99\x6b\x5a\xc4\xa1\x0a\xad\x98\x3f\xac\x5f\x42\xb5\x4e\x71\xf3\xe0\x92\xb9\x34\x94\xd1\x86\x2a\x99\x62\x56\xcd\x7e\x1a\x34\x06\xe5\x0d\xfa\x75\x9d\xb8\x0b\xa4\xd7\x6c\x58\x83\x7e\xb9\xbd\x0d\x3a\x6a\x36\xac\x4f\xba\x1a\xb8\x62\x96\x0d\x27\x3d\xbe\xdc\xce\x4a\xd3\x4f\xc3\x6f\x79\x60\x37\xb5\x69\xfa\xb5\x9e\xb8\x91\x7a\x82\xa4\x89\x9b\x52\xb4\x4c\xe7\xe1\x47\xe5\x43\xc5\x54\x71\x73\x88\x55\x4c\x15\xf7\x92\x58\xba\x90\x37\xc9\x7e\x99\xce\x73\xcf\x4c\x88\x50\xb9\x55\xdc\xc7\xea\xa1\x31\x0e\x96\x53\xbe\xc0\x3d\x4d\xaa\x10\x8a\x4d\xac\x9a\xd2\x4c\xf8\xb9\xd7\xb9\x97\x85\x7d\x9f\x6b\x0c\xad\xcd\xb9\x28\x75\x35\x70\x22\x75\x55\xee\x6b\x8d\xa1\x59\x2e\x76\x40\xaa\xe5\xbe\x16\x73\x1a\x14\xfb\xa8\xe8\x66\xdc\x37\x5b\xa2\x8b\x30\x7f\x21\xfe\xd3\x20\xc2\x6e\xae\xac\x82\xda\xfc\x20\x7c\x14\x1d\x73\x8a\x4c\x43\xc0\x37\xc1\x2f\xc4\x87\x80\x6f\x82\x9a\xd2\x10\xce\x4d\xdc\x04\x80\x4c\x66\x2a\x3f\x08\x1f\x45\xc7\xfc\x5e\x16\x94\x6c\xf0\x87\x77\x12\xe1\xf7\xc7\xb3\xce\xbd\x8e\xf9\xb3\x0e\xf1\xc8\x06\xe4\x91\xac\xe3\xa7\xb0\x84\x3a\xe6\x0f\x0f\x8d\x99\x78\xf4\xec\x6b\xd0\x2f\xfb\x4f\xe5\x88\xea\x10\xcf\x5f\x77\xff\x7c\xa2\x31\x2a\x67\x4c\xaa\x65\xfe\xdc\xfb\xa7\x47\x8e\x71\xd0\x90\x63\x2c\xc2\xf4\x49\xe3\x48\xc9\x5c\x7e\x26\x42\x77\xa8\xfe\x2a\x9e\xc6\x75\xd3\xe1\x7f\x96\xb5\x32\xb2\x61\xf1\xf2\x5d\xc2\x87\xfa\x1a\xfd\x96\x50\x3c\x9d\x93\xac\x53\xf8\x10\xbc\xc9\x74\xa4\x07\x3c\x87\x4c\x14\x7a\xb0\x34\xb2\xba\x6a\x16\x88\x7e\x1a\x44\x98\x9f\x7c\x22\xe6\x82\xf3\x21\x3d\xf1\xc4\xa2\x43\x63\x04\xf7\x56\x8a\xe3\xc1\xd2\xc8\xdc\xa2\x67\x5d\x53\x1d\xba\x27\xd6\x2c\x39\x28\xe7\x54\x31\xd6\x87\x67\x7c\xc1\xe4\xc7\x83\xd9\x20\x54\xfc\x78\x28\xe9\xcb\x34\xa0\xe7\x58\x9f\x88\xb0\x73\xf5\x10\x1d\x13\x4a\xaa\x64\x1a\xd0\x73\xae\x41\x45\xfa\xc5\xf9\xd0\x49\x7e\x50\x60\x99\x06\xf4\xe0\x82\x64\x41\xd6\xc3\xdb\x64\xe6\x05\x3d\x37\xd7\x23\xcf\xe9\xfc\xb5\xaf\x92\x69\x40\xcf\xc3\x35\xcd\x73\xfa\x72\xc5\xf2\x14\xbe\xab\x87\xb8\xe5\x02\x65\x92\xcf\x83\x0b\x92\x85\x50\xef\xc6\x9d\xd3\x29\x7c\x37\x4e\xb2\x4e\xe1\xfc\x25\xf5\x4f\xc3\x97\xfd\x77\x5f\x84\x65\xc3\x4d\xc3\x50\xc3\xe4\x25\xeb\x72\xf8\xd1\xf3\x22\x10\xfc\x78\xb1\xff\xb3\x0c\xe7\x9d\x91\xcb\x10\x62\x4c\xbc\x6d\x7d\x52\xd4\xc0\xb1\x94\xbe\x7a\x31\xe6\x33\x2f\xe8\xc5\x98\xcf\x5a\x16\x7e\xd2\xbc\x64\x5e\xd0\x0b\x64\x4a\xe6\x05\xcd\x32\xda\xcf\x27\xd9\x83\x7d\x91\x19\xf5\x76\x78\xd1\x12\xf2\xa3\xe7\x25\xf3\x82\xf8\xd1\xf3\xd8\x77\xfb\x1d\x05\xc6\xcf\x79\x97\x4c\x09\x7a\x71\xce\x33\x25\xe8\x45\x93\x64\xa1\xcb\x3b\x33\x4d\x22\x0b\x5d\x5e\x54\xcb\x9e\x6b\x73\xc0\x46\xae\x0d\x70\x05\x99\x45\xf4\xf2\xd8\x97\x59\x44\x2f\xbe\x78\x56\xbe\x50\x53\x1a\x59\xd7\xf2\xf2\x72\xa0\x5f\x62\x0a\x4a\x48\x23\xab\x56\x5e\xac\xb0\xac\x5a\x79\x49\x6e\xd3\x6f\x35\xc5\xfc\x7d\xef\x4f\x8f\x6c\x40\x0e\x48\xf9\xbc\x20\x93\x64\x06\xd0\x8b\xc1\xb4\xe7\x02\xad\x8b\x20\xd5\xb2\x6a\x4a\x33\x9d\xe7\xc5\x60\xca\x22\x15\x6a\x4a\x23\x8b\x54\xde\x17\x6e\xa5\x48\xdf\x97\x93\x20\x6d\xf4\xce\x4c\x99\xd8\x5b\x36\xac\x69\xc5\xed\xcb\xf1\x6a\xd9\x30\x45\xba\x4b\xf9\xbc\xeb\xba\xc9\xaf\x79\x5f\x08\xcb\x25\x24\x7d\xdd\xbf\x8e\xce\xe0\x17\xc0\x8b\x7f\xb5\xd1\xd8\x36\xf6\xf6\xcb\xdc\xe0\x17\xc0\x43\xf5\x24\x63\xdb\xd6\x2c\x4d\x0d\x6b\x96\xa1\x06\x76\xff\xab\xaf\xc6\xaa\x4b\x55\xe2\xd1\xd8\x0a\xdc\x66\x8f\x9d\xbd\x75\x35\xa0\xe2\x94\x6c\x34\x36\x54\xdc\xee\xa2\xa3\xae\x41\xb3\x01\xd2\x5d\x74\x4c\x6c\xf5\xd8\xbf\x12\x7c\xf0\x9b\xde\xb1\x7f\x05\xf6\xd8\x1a\x74\x84\x78\xc1\xe1\xd2\x2f\x0d\x8c\x0d\x8d\xa6\x5f\x1a\x18\xab\x84\x54\x39\x4e\x63\xe3\x39\xc2\x5d\x6b\x8a\x8a\x13\x64\xca\xd8\x3a\x87\xdf\xb5\xc8\x33\xfd\x2d\x54\x23\x30\x36\xd2\xdf\xdc\xf5\x89\xad\x41\xb5\x1e\x33\xa6\x18\x75\xd3\xb4\xf8\x57\xfa\xe9\x81\xb1\xcd\xc7\x86\x10\xfe\xc9\xd8\x66\xd4\x31\x04\x77\x32\x36\x8c\x57\xfd\x16\xc1\xd8\x66\x1a\x6f\x08\xdd\x64\xf0\x23\xdf\xc5\x73\x91\x97\xde\xcc\x35\x45\x2b\xd6\x5d\xa4\xcf\x07\x86\x50\x5e\xfd\xd8\x30\x5e\x95\x9e\x35\xb6\x99\x0f\x17\x75\xcf\x06\x08\xdb\xb5\x1e\x98\xb7\x4a\xb4\x1f\xdb\xb1\xc6\x10\x2f\xc8\xa0\xba\x8b\x74\x64\x90\xa0\x4a\xc6\x76\x2c\xc2\x44\xe9\xd2\x9b\x21\xf6\x4f\xa6\xad\x9a\xf6\x64\x8c\xaa\x69\x2f\x28\xad\x9a\x16\xc7\x4f\x19\xef\x63\xc3\x9a\x55\xae\xd5\xa0\x6c\x34\x94\xf1\x3e\xa8\x12\x0d\x81\x99\x8c\x6d\x49\x98\xa1\x41\x9f\x35\xad\x28\x45\x7e\x28\x05\x7e\xac\xc2\x52\xfd\x4a\xc0\xd8\x5e\x48\x6f\x5a\xe4\x77\x7d\xf2\xa5\x83\xa2\xd0\x50\x3e\xfb\x28\x65\x35\x34\x35\xac\x31\xba\x1a\x58\xf5\xaf\x94\x1a\x85\xe2\x70\x65\x63\x8d\x59\x03\xfa\xe9\xe1\x6a\x58\xd3\x7e\x09\x2b\x75\xcd\x32\xd4\xd0\x18\x23\x7b\xdc\x34\xa8\x07\x55\xda\x4a\x9c\x1a\xa5\x33\x46\xff\x1d\x05\x36\x8a\xad\xde\xa2\x89\x50\x95\x12\xba\x47\xc1\x80\x54\x7a\xd3\x58\x95\x9a\xc2\xf2\x1f\x65\xdd\x8c\xaf\xa0\x1c\x85\x9b\x21\x70\xff\x51\x26\x7a\x72\x51\x02\xd4\x28\x84\x22\x94\xef\x34\x0a\x06\x64\x95\x18\x2c\xc1\x72\x4a\xa6\xcd\xe2\xce\x4f\x83\xe8\xc0\x5e\x54\xfe\xf6\x28\x5c\x15\xe5\x4c\x0d\x7e\x13\x3b\xaa\x64\x5a\x19\x8b\x39\xd1\x81\x45\xa9\xac\xaa\x51\xd0\xdf\x4a\x80\x1a\x85\x77\x7d\x25\x40\x0d\x7e\xb2\x3a\x94\x7b\x3d\xf8\xc9\xea\xa2\x8c\xa8\x51\xe6\x2f\xc3\x15\x25\x40\x8d\x82\x45\xa9\xcc\xea\x51\xc8\x67\x57\x02\xd4\x98\xbf\x61\xfd\x69\x10\xa5\x84\xce\x95\x7b\x3d\xca\xc5\x7a\x48\x74\x50\x65\x19\xc2\xfb\x18\xe5\xe1\x13\x5d\xa6\x42\xb6\x9b\x52\x93\x06\x65\x97\xa1\xc4\xe1\x51\x48\x3d\x57\xae\xd2\x28\xeb\x66\x48\xd8\x16\x54\x9c\x32\x91\x06\x3f\x26\x5d\x94\x78\x34\x76\xf4\x95\x52\x8b\xc7\x5e\x16\x1d\x43\x0d\xac\x87\x2e\xe4\x8e\xd3\xa6\xb4\xe0\xc1\x6f\x47\x17\xa5\x01\x8d\x9d\x98\xb3\xd2\x80\xc6\x5e\x59\x31\x5d\xc8\x7d\xbe\x81\x85\x20\x42\xc6\x4e\xd5\x8a\xd2\x80\xc6\x3e\xb1\x5c\x42\x98\x21\x63\x6f\x6b\x0c\x91\x4e\x2e\x8d\x7e\x63\x6d\x50\x76\x19\x4a\x1c\x1e\x3b\x46\xa8\xf2\x84\x07\x3f\x26\x5d\xf4\x93\x6a\x63\x9f\xb9\x34\xd1\x36\x0d\x3a\xdf\xc0\x42\x10\x21\x63\xef\x8b\x5b\x7d\xc2\x9d\x6b\xba\xb2\x3b\xcf\x55\x42\xd6\x1f\x3b\x8a\x43\x09\x3a\x63\x27\xb4\xab\xac\xdd\x31\x6b\x1e\x3f\x0d\xa2\x94\xb8\x88\x72\x72\xc7\x8e\x7f\xa5\x9c\x9e\xb1\xa3\x38\x94\xa4\x3b\xf6\xb1\xc6\xd0\xb4\xa4\x8b\x2a\xeb\x67\xec\x84\x76\x95\xa4\x3b\x66\x11\xe4\x67\x5b\x72\xd0\x8b\x86\xff\x87\xb1\x37\xc7\x9a\x9e\x87\x95\xc6\xb6\xf2\x2d\x41\x9c\x89\xe4\xdd\x0b\x07\xc9\x99\x03\xef\x3f\xf0\x61\x41\xaa\xea\xff\xfa\xdc\xe3\x27\x6b\x35\x25\x8e\x20\x08\x62\x28\xf0\x13\xd7\x7a\x64\xee\xa8\xe8\xae\x6b\x9d\x1b\x39\x4e\x9f\x53\xee\x97\xe8\xf7\x2b\x7a\x0e\x59\x5c\x6f\xa5\xfa\xe3\xf1\x3f\xd8\x75\x0f\xea\xa2\x6f\x91\x45\xbf\x92\x65\x6e\xa0\xb8\xdf\xb1\xe8\x0f\x27\x5c\xee\xfd\xe8\x6a\x10\xfa\x16\x59\xbc\x9d\xa4\x78\xe6\x79\xce\xe6\x40\xc8\x7f\x8b\xbe\x81\xe8\xe8\x6b\xf1\xf1\xbd\x4f\x69\x25\xfa\x2d\x8e\x9e\xbf\x16\x1f\x1f\xcb\x27\xcc\xdb\x1b\xe2\x48\x77\x24\x4b\x6e\x37\x22\x76\x89\x25\xd7\x8b\xd0\x3f\xc9\xd2\xf5\xf6\xf4\xeb\x58\x72\x33\x11\xd1\x4d\x2c\xb9\x0f\x4b\xa7\x6c\x96\xc2\xdb\x8f\xc2\x3f\x9c\x19\x50\x58\x4b\xe1\x1d\xcb\x37\xc9\xc9\x0d\x3f\x74\x58\xb2\x14\xbd\x63\x59\x7f\x38\x39\x70\x13\x26\xf7\x83\xa1\x4b\x93\x79\xec\x65\xa7\x6f\xb0\xbd\xb1\x97\xcc\x12\x60\x1e\x7b\xd9\x09\x33\x62\xc9\xf1\x4f\x98\x25\xc0\x52\x7e\xeb\xf8\x8b\x0d\xcc\x52\x7e\xc7\xc5\x61\x20\x7d\x4f\xa7\x4b\xaf\x25\xb7\x52\xf7\xce\x09\x2f\x3e\xae\xc2\x71\x95\x77\x18\x9c\xf0\x77\x0f\x17\x8e\xab\xfa\x1e\x2e\x1c\x86\x23\xea\x31\xc9\x80\x79\x56\xe7\x4e\xa7\x5f\x43\xce\xe6\xf3\x07\x3b\xd6\xde\x3a\xd8\x0f\x0f\xea\x62\x1a\x02\x4b\xfd\xfd\x84\xfd\xb0\xb7\xa7\x5c\xf8\x77\x43\x72\x53\x27\x8f\x7d\x60\x5e\x02\x4b\x6e\x7c\xa1\x17\xb0\x25\x77\x6e\xa3\x23\x96\x25\xbf\x91\xd2\x2d\xd8\x92\xe3\x66\x32\xc9\x80\x79\x02\xe6\x4e\xf8\x14\x4b\xd3\xe9\x8d\x3b\xf4\x0d\xdd\x64\x1a\x02\x4b\xeb\xad\x94\xfd\xf0\xdb\x24\xf1\x4f\x2c\xb9\x68\x97\xb9\xff\x92\xef\x3f\xfa\x08\x59\x72\x59\x2f\x73\x43\x7a\xe2\xe3\x40\x1f\x21\x4b\xef\x0e\xe5\x86\x4c\x8e\x61\x44\x97\x20\x4b\x7e\xbd\x64\x52\x3b\x43\x94\xe5\xf9\x84\x83\x73\x87\x6e\x22\xfc\x5b\x76\x24\x3b\x22\xfc\x5b\x7e\x37\x24\x2f\x18\xf9\xdd\x4c\x3c\xf2\xb3\x6f\x26\xba\xf0\x58\x8e\xbe\xfa\xbc\x60\x64\xa7\x7b\x22\xeb\x5b\x7e\xe9\x9e\x17\x8c\x9c\xde\x4f\xf8\x86\xdf\xc0\x88\xbd\x6f\x1e\x76\xd9\xe9\xaf\x6c\x39\xbd\x95\x7e\x53\xe8\x59\x8c\x03\xbd\x7e\x2c\xe7\xb7\xeb\x7a\xc3\x3f\x21\x3f\xf2\xb4\xc6\x81\x5e\x3f\x96\x5d\xa7\x48\xaf\x1f\xcb\x2f\xf1\x77\xbd\x71\xfb\x1b\x1c\xbe\xbb\x7b\xd1\x85\xc7\xb2\xc3\x49\xd2\x97\xc6\xde\x10\x47\xfa\xd2\x58\xf6\x23\x8e\xc9\xdf\x2c\xbb\x39\x93\x4e\xd0\x96\xfd\xcc\x63\x36\x38\xcb\xcd\x99\x3e\x59\x47\x71\xe3\x00\x9d\xa0\xad\xbc\xa7\x22\xf7\x7e\x79\x4f\x45\x6e\x75\xcf\xf8\x19\x88\x68\x6f\xc5\xc5\x4a\x3a\x41\x5b\xf1\x4d\x48\x27\x1f\x2b\xfd\x1d\xbe\xf1\x8f\xb7\x63\xfa\xc3\x3b\xf6\xa9\xff\xac\xbc\xa7\x22\x99\x41\x71\x83\x27\xfd\x82\xac\x8c\xf7\x0d\xd6\xe1\x3a\x1e\x7a\x0f\x5b\x71\xb1\x92\xce\xc2\x56\x1c\x59\x8c\x3e\x3d\x56\xa6\x13\x1d\xb9\x83\xa7\x00\x0d\xc4\xab\x37\xcf\xf8\xd9\xe9\xf9\x6b\x65\xf9\xf0\xb9\xd5\x8b\xdf\xc0\xe8\x0a\x6c\xc5\x11\x41\x88\x02\x6f\x9e\xe0\x33\x10\x05\xde\x8a\xfb\x7c\xd1\x1f\xc7\x8a\x1b\xd6\xe8\x2d\x6b\x9e\xf1\x33\xd0\x41\xc7\x8a\x83\x07\x10\x05\xde\x8a\x1f\xa4\x44\x81\xb7\x1a\xbc\x8e\x4f\xa7\x68\x35\xfa\xf0\x3f\x15\xa2\x55\x47\xd0\x21\x4e\xbc\x55\xd7\xe3\xd3\x39\xd6\xaa\x2b\x2a\xe9\x06\x64\xd5\xb5\x1e\xf4\x96\xb5\x37\x60\x88\x7e\x41\x56\xfd\x7e\x45\xf7\x59\xf3\x3c\x9a\x9d\xde\xb2\xe6\x79\x34\x3b\xfd\x58\xad\xfa\x8e\xa2\xdb\xaa\x79\x7c\x50\xa7\x87\xa9\x55\xb7\xf7\xd2\x51\xc8\x3c\x29\x66\xb0\x3f\xa5\x53\xb1\xea\x1a\x48\xc2\xc2\x5b\xad\x3e\x50\x6e\xb7\xea\xba\x09\xc2\xc2\x9b\x27\xb4\xec\x74\xea\xb4\xea\x77\x34\xfa\x19\x59\x05\x6e\x40\xa7\x97\xa7\x55\xbf\xb4\xd1\xf1\xc8\xaa\x5f\xc9\xe8\x78\x64\xf5\xdd\xa1\x5d\x95\x3a\x89\x52\x28\xaf\xfd\xad\x83\x95\xda\xdb\x75\xce\x9e\x9f\x46\xc4\x89\xb7\xea\x67\x4d\xe1\xb9\x59\xdf\xb3\x86\xbb\xab\xba\xc6\x9e\xb0\xf0\x56\x5d\xf3\x40\x18\x17\xab\x0e\x9a\x61\xbc\xe8\xd4\x77\xab\x70\x23\xd4\x77\xab\xf0\xd6\x52\xa7\x6f\x04\x9e\x9b\x75\xfa\x3a\xf3\xdc\xac\x7e\x47\xa3\x37\x93\x55\xbf\x5f\xd1\x83\xd0\x3c\x22\xa9\xd3\x63\xce\xea\xbb\x11\x78\x90\x7a\x9a\xc8\x5e\x34\x85\xae\x53\x2c\x9a\x0f\xe8\x14\x23\x3d\xa2\xac\xba\x4e\x9f\x5e\x66\xe6\xc1\x43\x9d\x4e\x65\x86\xd0\xa0\x23\xf9\x47\xfe\xe1\x53\xc8\x4b\x5b\x83\x51\x2c\xd2\xbd\xc9\x9a\x5b\x76\xe9\x55\x65\xcd\x55\x11\x44\x26\xb1\xf6\x6e\x37\x4a\x1a\x9e\xc0\xb1\x17\x0e\xbf\x41\xf8\x8b\x84\x52\xb7\x86\x1b\x58\x24\x72\xba\x35\xd7\x5e\x14\x0e\xbf\x45\x1f\x1c\xb7\x6c\x73\xc3\x1a\xdd\xac\xac\xf9\x76\xa3\x9b\x95\x35\x40\xe3\x44\x82\xad\x5b\x73\xbf\xa0\xca\x09\x6a\x88\xc2\xed\x95\xb2\x48\xcb\x6f\x1d\x6c\xc5\x37\x24\x1d\xb1\xac\xe5\xb7\xa7\x1c\xad\x0b\x90\xf4\xbb\xb2\x06\x19\x31\x5e\xdc\xf6\x1e\xf7\x14\xe9\xee\x65\x0d\x59\xae\x3b\x3d\xb3\xcc\x73\x3e\x46\xa6\x76\x33\x04\x42\x9d\x3f\x38\x38\x40\xdb\x75\x3a\x5f\x59\x73\xbf\x20\xfa\x5a\x59\x03\xaa\x67\x24\x82\xbb\x35\xbf\x09\xd2\xb5\xca\x3c\x32\x2a\x12\xb0\xdd\x10\x19\x75\xfe\x60\x3f\xaa\xcf\x18\xe5\x88\xe6\x9a\xcb\xaa\x75\xa9\x3e\x63\x5a\x86\xe6\x4b\x49\x39\xc2\x63\xa7\x7a\xd5\xac\x37\x1f\x0b\xe5\x88\xe6\x27\x6b\xd5\x14\xba\x2a\xb3\x6a\xc6\x9a\xcf\x18\x25\x0d\x4f\x13\xd9\xab\xa6\xb0\xbf\xfd\x60\xb3\x7e\x4c\x56\xcd\x98\xf9\x58\xc8\xb6\x90\x15\x32\x74\xfa\x5a\x99\x87\x4a\x45\x3a\xa3\x99\x87\x4a\x45\xba\x9a\x59\xf3\x83\x94\x30\x34\xd6\x86\xf7\x83\xf7\xcd\x36\xde\x9e\xb2\x1f\x7e\xd4\xd2\x1b\xcb\x3c\x98\x2a\xd2\x19\xcd\x1a\xd4\x31\x91\x29\xd5\xac\x2d\xef\x07\xa5\x95\xe6\x76\xf8\xaa\xa5\x5c\x6f\xb3\x7c\x63\xfb\x52\x52\x8e\x68\xee\xc3\x52\xb5\x94\xdb\xa9\x90\x72\x44\xf3\x83\xb4\x6a\x6d\x9f\xf7\x13\xd6\xf1\xf8\x42\x15\xfd\xf1\xf6\x83\x75\xbc\x1c\xa6\xe8\x0f\xef\x98\x16\x0a\x51\x15\xf1\xaa\xfa\xc3\xd7\x85\x22\x61\x77\x23\x05\x9d\x8d\xac\xbb\x1d\xbe\xa6\x3f\x1d\x60\x48\x13\x19\x3a\x3d\x91\xac\x07\x5f\x34\xea\xf2\x7a\x78\xbb\xf0\x4d\x96\xc7\x4e\x45\xfa\x6e\x59\x7f\xb9\x0d\x45\x88\x8e\xf8\x89\x48\xaf\x2a\xeb\xae\x2b\xa5\x9f\x91\xf5\xe8\x95\x52\xa6\xe8\xce\x7e\xe8\x78\x64\x1e\x7f\x15\xe9\x66\x65\x1d\x6e\x89\x91\xc8\xe9\xe6\xe1\x56\x9d\xae\x49\xd6\x93\x13\x0f\x99\x7e\x47\x92\xfd\x48\xa0\x74\xeb\xf9\xad\x94\x5d\x77\x3f\x34\xba\x26\x59\xcf\x6f\xd7\x39\x16\xbf\x6f\xd2\x25\xc8\xfa\xcb\x4b\x78\x5c\x77\xf7\x42\x24\xde\x8e\x21\x20\xeb\xbc\xc1\x9e\xba\x0f\x19\x01\x78\xac\x17\xef\x29\x0f\x9f\xfe\x32\x17\x52\x42\x47\xda\xbb\x4e\xa7\x21\xeb\x2f\x73\xe1\x09\xdf\xab\x6f\x7b\x0a\x90\x1e\xb2\xd5\x2b\xe5\x45\xcf\x70\xd9\xe9\x45\x64\xfd\xdd\x7f\x5a\xdb\xe1\x4c\x8e\xe7\x77\x1f\xef\x27\x6c\xc5\x8f\xeb\xaa\xc5\x9e\x3e\x85\x3c\xd0\xfb\xf4\x8e\xf1\xcc\xeb\xd3\xa9\x9a\x67\x5e\x9f\x3e\x5a\x1e\x71\x7d\xfa\xba\xf0\x88\xeb\xeb\xad\x94\xad\xb8\x37\x72\xe5\x81\xde\xd7\xdb\x8a\xfe\x78\x87\xcf\x39\x5d\x3e\xeb\xa6\x3f\x7c\x29\x79\xa2\x79\xa8\x54\xaf\x22\x3a\xb8\xbd\x44\x26\x6e\xb3\xee\xce\x5c\x95\x32\x27\x12\x38\x9e\x37\xbe\x9e\x9a\x1b\xe9\x09\xe2\x63\xf6\x6e\x20\x2e\xa5\xc7\x2c\x75\xfa\xd2\x98\x21\x03\x52\x24\x0c\xba\x59\x78\xeb\xd0\x1f\xbe\x2e\x14\x3d\x3c\x88\x29\xd2\xc9\xce\xcc\x8f\x7c\x02\x01\x99\xc5\xb7\x15\xbe\xe1\xca\x1b\x7a\xdb\x98\xf9\x09\x4f\x27\x3b\x33\xe8\x6a\x22\x7d\xea\xcc\x7c\x13\xd2\xa7\xce\x0c\x68\x78\x31\xf0\x58\x30\x84\x38\xc6\xc0\x63\xc1\x7c\x03\xd1\x1f\xce\xcc\x95\xae\xf4\xe9\x31\x83\x49\x23\xd2\x1f\xce\xcc\xb5\xb0\xf4\xe9\x31\xa4\x89\x3c\x6f\xb0\x1f\xef\x16\xe3\xca\x99\x6f\xb1\x40\x86\x6d\xae\xa7\xa5\x2f\x8d\x79\x98\x53\x24\xc8\xb9\x79\x98\x53\x64\x36\x38\xf3\x50\x9e\x4e\x6f\x1b\x33\x37\xac\xd1\xb9\xc6\xcc\xde\x3a\x58\x29\x30\xe1\x3a\xb1\x7e\xcc\xe0\x20\x10\xe9\xca\x67\x88\xfe\x39\x7f\xb0\x0e\x3f\xf3\xe8\xb9\x67\x06\xa0\xd8\x4e\x34\x20\x33\xf8\xf7\x47\x7a\xee\x99\xf9\x26\xa4\x4f\x8f\x21\xc5\xe3\x79\x83\x7f\x4c\x9f\x20\x1e\xb5\x9e\xa3\xb1\xd3\xdb\xc6\xcc\xf7\x1c\x3d\xf7\xcc\x53\x32\xf6\x46\x09\xd0\xdc\x7c\xd7\xb4\xfa\x48\x81\x10\x89\x85\x6e\xb6\x7c\x70\xe4\xfc\x9e\xa3\xb1\xd3\xfd\xc6\x90\xa3\xf1\xbc\xc1\x4a\xf7\xdb\x0a\xeb\x70\xef\xb4\x26\xfa\xd8\xbe\x0c\x3c\x8c\x3d\x8b\x63\xa7\x83\x8e\xd9\xed\x14\xc4\xd3\xd9\xee\xb7\x15\x36\x7b\xfb\x7c\xe4\xbf\x78\x21\x9a\xb9\xc1\x90\xfe\x3d\x66\xf7\xdb\x05\xf6\xc9\xc3\x03\x9a\x68\xf6\x79\x5b\x64\x9f\x00\xbc\x11\xe9\x86\x67\xe6\xa7\x2c\x1d\x7e\x6c\x5c\x6f\x1d\x89\x7f\xf8\x2a\x92\x44\x91\x04\xf2\xd4\xd1\xf8\xc7\x5b\xe9\xd7\x8f\x11\x9c\x78\xc8\xe3\x87\x1f\xb5\xf4\x98\x33\xcf\xf9\x18\x09\x72\x6e\xc3\xef\x02\x84\xe8\x31\x44\x35\x9d\x37\xd8\x31\xd7\x4c\xd1\x03\xc8\x10\x80\x74\xde\x60\x4f\xfd\x64\xa5\x4b\x90\x8d\xe4\xbb\x8b\xa7\xc0\x48\x6f\xb3\x85\x7f\xf8\x14\x92\xe9\x8f\xec\x75\x90\xcc\x07\xc0\x73\x3a\x1d\x7e\x6c\x64\x27\x2f\xca\x00\xc3\x19\x03\x1d\x7e\x6c\x64\x5f\x56\x0a\x05\x9e\xe2\x31\x12\x8f\xdc\x86\x2b\x7f\xe9\x12\x64\x9e\xf3\x31\x32\xb5\x9b\x8d\xf2\x56\xca\x8e\x39\x63\x68\xa4\xea\x51\x7c\x2c\x4d\x75\xf8\x52\x92\xcc\x87\x1b\x70\x88\x0c\x64\xa3\x7a\xd7\x29\x14\x0c\x3f\x7b\xe9\x17\x64\xe3\xdd\xb2\xa4\xd9\xf1\x6e\x59\x9e\x13\xe3\xdd\xb2\x54\x23\x8c\xf9\x7e\xc2\x4a\xa7\xb3\x52\x0a\x16\xc3\x4f\x45\xfa\xd4\xd9\xf0\x23\x8e\x88\xe5\x36\xde\x1d\xca\xa3\x65\x6c\xa7\x20\x1e\x2d\x63\xbf\xad\xb0\xd2\xfd\x7e\xc2\x7e\xdc\xef\x27\x7c\xe3\x76\x8e\xc5\x73\xc2\x33\x18\x76\xfa\x16\x99\x67\x30\x8c\x74\x7f\xb3\x71\x3b\xd1\x91\x83\x23\x83\xe1\xf9\x83\x3d\x05\xe8\x55\xa7\xb3\x91\x79\x8c\x4e\xa4\xfb\x9b\x8d\xc7\x97\x92\x47\xbe\xe7\x38\x8c\xf4\x76\x33\xcf\x60\x18\x89\xca\x6d\xf3\x8a\xfe\x47\xe0\x1f\xef\x1b\xdf\x27\x08\xb8\x39\x7f\x34\xfe\xf1\x7e\xd2\xf9\x47\xf5\x3f\x8c\x7f\x0c\xef\x69\xe4\x1f\x98\x31\x3a\xc8\xd9\xf4\xab\x32\xbd\xa0\x6c\xc6\xf7\x93\x6f\x2c\x33\x39\x33\xa0\xb5\x60\xba\xac\x4a\x7c\x68\x9b\xd0\xf5\x46\x82\x3d\xdb\x74\xf7\x1b\x3a\x4e\x99\xe7\x02\x8c\x74\x90\xb3\xe9\x82\x27\xb1\x9d\x6d\x66\x27\x5c\x6e\xf5\x09\x53\x48\xa4\xfb\x9b\x79\x72\xc0\x2e\x87\xa5\x59\xde\x4a\xd9\x8a\x0b\x9e\xf2\x4f\x9a\x2e\x45\x12\xec\xd9\x66\x7d\x5b\x61\xa5\xd0\x35\x45\xa2\x3f\x1b\x02\x53\xce\x1f\x1c\x1c\xcc\xff\x91\x3e\x70\x86\x28\x93\x53\x07\x9b\x35\xff\x84\xc7\xe4\x74\xeb\xa5\x3c\x98\x90\xd8\xef\xbc\xc1\x8e\xd9\xdb\x0f\x36\xeb\x5b\x8c\x4e\x71\x36\xfd\xae\x28\x77\xa4\xe9\xc2\x2b\xbd\xe4\x6c\x0e\xef\x07\x39\xcc\xf4\x3d\x47\x2f\x39\x9b\x7e\x57\xa4\x97\x9c\x4d\xdf\x73\x74\x8a\x33\x4f\xca\xd7\xe5\xd2\x34\x97\xf7\x83\xcc\xc0\x93\xf2\x45\xe6\x25\xb3\xe9\x21\x6c\x72\x7a\xf2\xa4\x7c\x31\xe6\xfc\x97\x03\x6c\xfa\x81\x48\x8f\x39\xf3\x7c\x7c\x5d\x2e\x52\xd3\x9d\x64\xe4\x11\xe5\xc9\xf5\x22\x7d\xea\x6c\x5d\xbe\xf0\xbc\x5f\xad\xeb\xed\x75\xe7\x1f\xcb\xff\x30\xfe\xe1\xcc\x96\x8c\x72\xb9\xdc\x2a\x27\x2a\xcf\xa5\xd7\xe5\x22\xb5\x82\x2f\x3c\x39\xc5\x72\x37\x1a\xb9\x48\xad\xe8\x73\x43\x3e\xb0\xe2\xfb\x06\x9b\x4d\xbe\x02\xdc\x3b\xcb\xd5\x4c\x8d\x6c\x70\xf9\xf1\x44\x9c\x67\x5b\x7e\xcf\x23\x0a\x96\x2d\x3f\x9e\xe4\x64\xb7\xdc\x75\x4d\x6e\x56\xcb\x65\xce\x46\x56\xba\xb2\xef\x72\x1e\xb5\xeb\x3d\x38\xc8\x5b\x97\x6b\x73\x22\x37\xd3\xaa\x3e\xda\xaa\x37\x7c\xd6\xb9\x55\x3c\x68\x27\x12\x53\xd9\x56\xf3\x85\x27\x99\xaf\x97\xb7\x92\x61\x2f\xe7\xad\xcc\xa0\x66\x9e\xeb\xad\xcb\x33\x6b\xdd\x6f\xd7\x59\x87\x6b\x0d\x08\x8b\x65\x9e\x96\x2d\x32\xe9\x9a\x6d\x77\x0b\x26\x0a\x96\xed\x77\xb1\x49\x41\xfb\xe5\x8b\xa4\x20\xcf\xc2\x16\xe5\x63\x88\x78\x92\x53\x47\xe4\x1f\x3e\x63\x5c\xdb\xed\x4a\x46\xb9\x14\xee\xe8\x75\x70\xe5\x76\x7c\x7b\xca\x66\xfd\x4e\xd2\x78\x0a\xec\xe4\xc3\xe7\xba\xec\x77\x6d\x79\x2c\x6c\x97\x23\x88\x87\x6c\xdb\x95\x7b\xcd\xf4\x87\x13\x2e\x6f\x82\xdb\x45\x7f\xa2\x1d\xdb\x7e\x99\x9c\x66\xac\x3a\x1f\xd0\x04\xb9\x9f\x14\x01\xbc\x6c\xbb\xc3\x20\x01\xbc\x0c\xb1\x2c\xe7\x13\x76\xfd\x5d\x5b\xf5\xb4\x79\xb3\xea\x58\xf7\xae\xab\x63\x86\x7e\xc8\xb5\x71\x23\x3c\x38\xca\x71\x71\xfb\x7d\x22\xf1\xc6\xb1\xa1\x61\x8f\x89\xd7\x07\xa4\x43\x3b\x1d\xd3\x1b\xcb\xdf\x60\xc7\xfc\xca\x2e\x4f\xb5\x0d\xa8\x92\xde\xf5\x06\xd2\x4a\x44\x79\x43\x6e\x18\x80\x63\xe2\x31\xb9\xfd\x42\x2e\xe7\xc7\xbd\xde\x3a\xf8\x09\xd0\x85\x22\xd1\x8e\x6d\xc3\xd4\x14\x89\x76\x6c\x48\x98\x76\xfe\x60\xb3\x00\xae\xee\x44\x27\xb3\xed\x3a\x34\x62\x19\x9b\x67\x3f\x8b\xc4\x32\xb6\xfd\xbc\xcb\xc0\x29\x7c\xbc\x15\x9e\x8a\xdb\xa5\x04\xf9\x4b\xee\xc7\xbb\x4e\x41\xfc\xbe\xbc\xa7\x3c\x26\xef\xeb\x7d\xe3\x6b\xe5\x76\xe2\x97\x03\xe5\xed\x42\x01\xe1\xca\xec\x0d\x4c\x21\x3a\x99\xdd\xee\x20\x40\x30\x32\xbb\x9d\x3e\x08\x4c\x6c\x9e\x98\xab\x13\x7b\xcc\x6e\xb7\xc0\x10\x6a\xcc\x6e\x37\x89\xca\x17\xef\xf6\x93\x55\x4e\x98\xc8\xd4\x75\xfe\x60\x1d\x4e\x52\x72\xc2\x44\xaa\xad\xf3\xc7\xb7\x72\xb7\x39\x05\xf1\x88\xbb\xcd\x67\x3d\xe8\x0f\x70\x29\x79\x54\xde\x7e\xcd\x95\xfb\x9e\x47\x66\x44\x79\x54\xde\x7e\x18\xf7\xf8\x97\x84\x96\x76\xbf\x34\xcb\x13\xf2\xf6\x3b\xb0\xfc\xf2\xee\xe1\xbd\xe6\x11\x77\xbb\x45\x47\x5e\x77\xf7\xf4\x65\xe5\x89\x76\x7b\x74\x95\xdc\xf0\xee\x97\x44\x79\xc4\xdd\xee\xb4\x20\x37\xbc\x7b\xf9\xb2\xf2\xcc\xbb\x97\x6f\x15\x9e\x79\xb7\xbb\x35\x74\x2d\x9a\xfb\xc4\x13\x76\xcc\xee\x97\x88\x29\x1e\xde\x2e\x61\x13\x87\xcc\xee\xed\x7b\x98\xe2\xe1\xbd\xbd\xeb\x14\x0f\x6f\xf7\x95\x90\x5f\xde\x7d\xfb\x3a\x17\xfd\xe1\x3d\xe5\x11\x77\xdf\x6f\x2b\xfc\xc3\xc5\x65\x42\xf5\xda\xfd\xbc\x3d\xe5\x68\x5f\xba\xe7\x59\xf3\x5c\xde\x0a\x8f\x96\xc7\xe5\x67\xf9\x4b\x3e\x97\x2f\x14\xe5\xa3\xc7\x23\xd8\xe5\xdb\xf7\xb8\x40\x4d\xac\x5a\x7b\x5c\x55\x25\xdf\xbe\x27\xbc\x75\x64\xfe\xe1\x1b\x81\x27\xc9\x13\x7c\x97\x53\x8e\x78\x5c\x55\x25\x77\xc0\x27\x7a\xc7\x28\x58\x20\x48\xe5\x08\x72\xec\x47\xf2\x56\x78\xe4\xbf\x31\x29\xf2\x20\x7c\x5c\x06\x20\x02\xac\x3d\xf9\x1d\x0b\x9b\x75\x57\x5a\x39\x0c\x3e\xc5\x7b\xda\xf5\x87\x93\x39\x09\xe6\x71\x19\x20\x75\xfd\xe1\x04\x43\x0a\xf2\x4c\x6e\x31\x75\xfd\xe1\xdb\x8d\x32\xd1\xe3\x67\x4d\x32\xfd\xe1\xcc\x85\x32\xd1\x53\x9d\xfb\x9a\xfe\xf0\xd3\x88\x44\x87\x5c\x6f\xe7\x0d\xfd\xe1\xcd\xf2\x64\xf5\x5c\x6f\x9d\xc8\x62\xf6\xb8\x01\x87\x40\x62\x86\x2c\x6c\xe7\x13\xfe\xe1\xa1\xdf\x9d\x54\x88\xb4\x6c\xe7\x0d\xce\x87\xfb\xa2\x77\x92\xe5\x63\x6f\xc7\xf4\x86\xd3\x3a\x35\x75\xcf\xf0\x19\xa3\x62\xce\x43\x68\xa2\xbc\x43\x9f\x51\xfc\x8f\x77\xb4\x63\xbd\x54\xc8\xc7\xf5\xef\xbf\xc4\xf8\xf3\xb1\x42\xff\xf7\x5f\x66\x98\xf3\x58\x48\x33\xf9\xf3\x18\x50\x5c\xf8\x1c\xf1\xb9\xca\xef\x53\x5e\x58\x7d\xf2\x72\x3d\x37\x94\x57\x3e\x1f\x1e\x51\xf8\x79\x7a\xf0\x3a\x8b\x11\xfa\xa4\xda\x72\x40\x71\xe3\xf3\x38\xb5\xfd\xbc\x7e\x96\xf6\x5b\x83\x81\x80\xf4\x44\x23\xc7\x58\x00\x78\x2a\xec\x3b\x42\xa0\xd4\x15\xdc\xde\x0a\xeb\x86\x8a\xf3\xd3\x1e\x0d\xe4\x8b\x4e\x34\x87\x0c\x4f\x17\xfd\xf1\x87\x81\xcc\xcf\x99\x11\x8c\x03\x11\xe6\x89\xc6\x92\xb1\x70\xad\xd3\x34\x9d\xf3\x2c\xd1\x52\x32\xd6\x21\xb0\xcc\x78\xc7\xb1\xce\x69\x96\x68\x38\x19\x0b\x78\xc2\x95\x8f\xbd\xa1\x98\xad\xf5\xb3\x68\x54\x7a\x8e\x85\x0b\x60\x63\xdf\xcd\x3b\xc3\xda\x41\x79\x8d\x7d\x3f\xe7\x4f\x66\x1c\xe0\x40\xe6\xe7\x74\xe9\xf3\x51\x51\xfe\x17\x83\xd6\x40\x52\xe8\x74\xa9\xf2\x73\x6d\xcc\x54\x0f\x8e\x05\xf9\xa9\xb3\xee\x89\x15\xed\x2c\x9e\x98\xe6\xce\x25\x9b\x03\x9f\xb3\xeb\xe7\x5c\x4a\x34\xfe\x8c\x85\x63\x49\xf3\xb6\x2e\xbc\xce\xea\x71\xe1\x34\x3d\x82\x1a\x3b\xe7\xe9\x9c\x61\x99\xaa\xb9\xb1\xa0\xa4\x35\x3d\x62\x22\x3a\x57\x69\xf5\xf3\xcc\xbe\xae\x89\x62\xce\xdb\x02\xb9\xb1\xeb\xdb\x87\xc2\x45\xda\xa8\x8d\x3d\xdf\x98\xd5\xac\xd7\xb1\xe4\x9d\x43\xb9\x9d\xe0\xf8\xe8\xc5\x1c\xca\x3d\xfe\xfd\xc7\x8c\x1a\x63\xdd\xde\x17\x76\xfd\x3e\x7d\x09\xac\xfc\xde\xa7\x31\xed\xb3\x1b\xd3\x68\xfc\xfc\x9c\x77\xb9\x69\xa3\x1d\xb9\x2f\x89\x22\xce\xe9\x97\x9b\x36\xd6\x83\x45\x36\x56\xff\x80\xfe\xb4\xb3\x9e\xd3\xd9\x4f\x2b\x3d\x90\xea\x9a\x51\x39\x03\x17\xa8\x44\x73\xd4\xd8\x87\x23\x51\xc4\x1c\xfb\x2a\xa7\xb2\xef\xaa\x38\xf6\x55\x4f\x71\xe2\x23\xa8\x95\x7b\x7e\x1f\x86\x45\x39\x70\xec\x80\x79\xfa\xae\x09\x03\xe9\xad\x99\x9d\x62\xe0\x5a\x95\x68\xe8\x1a\xfb\xb0\x37\xa6\xa6\x18\x1b\xec\x8d\x77\xf0\xb1\xc1\xde\x12\xdb\x8e\x20\x00\x92\xdb\x8e\xa7\xb1\xc4\x81\x44\x10\x6b\x57\x6d\x58\x14\x92\x1f\xf2\x66\x53\x54\x1c\xb8\x7c\x25\xda\xc7\xc6\x3e\xbc\x90\x72\xe2\xd8\x09\x6b\x66\x6c\xfc\x1c\xb9\x89\x29\x82\xc7\xce\x20\x20\x7d\x7e\x6e\xe1\x0c\xba\x19\x3b\x77\xbc\xce\x91\x9f\x3b\x39\x43\x70\x06\xf2\x6f\x53\x22\x1c\xb8\xe6\xa5\x40\xea\xdc\x87\x37\x52\x1c\x1c\xfb\x9c\xdd\x29\x90\xc1\xec\xc3\x2b\x29\x0b\x8e\x5d\x0f\xf9\x30\xa8\x65\x20\x31\x37\xd3\x3c\x0c\x60\x23\xe4\x2e\x7a\x38\xbc\x93\x49\x87\x07\x60\x0f\x28\xbf\x0d\x5c\xfd\x32\xc1\x6a\xc7\x6e\x3e\x10\x95\x1f\x02\xe8\x5a\xb3\x23\xd7\x33\x21\xc2\xd8\x47\xaa\xcf\x5d\x6b\xd6\x2b\x3e\xe7\x48\x3b\xaa\x4f\x1c\x5a\x3f\xb3\x5e\xd9\xb7\x23\xe1\x27\x1a\x0b\x07\xf0\x0f\x28\xc3\x0d\x5c\x21\x33\x45\x96\xb1\x6d\xe2\x75\x96\x1f\x61\x9c\xd9\x08\xc6\x06\x2b\x25\x36\xc7\x00\x12\x42\x22\x34\xc7\xd8\xf3\xac\x61\x17\x31\x4f\x6c\x9c\xc0\xe7\x85\xea\x38\xaf\x0b\xcb\xa0\x79\x06\x43\x22\xa3\xde\xcb\x4e\x6d\x3f\xaf\x83\x47\x68\xde\x37\x96\x89\xec\x0f\x77\x48\x0a\x79\x63\x83\x61\x11\x9e\x63\x6c\x30\x2c\x51\xf3\x3e\x13\xf5\xf3\xf1\x3e\x6f\x93\xb1\xef\x23\x65\x53\x1e\x1c\x1b\xec\xab\xff\x25\x1d\xc9\x00\x40\x42\x0a\x62\x10\x87\x3b\x65\x13\xe9\xde\x58\x13\x71\x88\xe7\x42\xb9\x9e\x41\xbc\x62\x11\xcf\xe9\x29\x99\x1b\xee\xac\xd9\x34\xe9\x0f\x36\x52\x64\x57\x8f\x28\x4f\x71\x70\x00\x48\x21\xd3\xb3\x7a\x20\x37\x37\x45\xae\x71\x1f\x81\x29\xd3\xad\x7a\xdc\xd7\x99\x07\xee\xc2\xfb\xf2\xca\x1b\x9f\x9f\x7f\xff\x51\x1c\x1b\x77\x40\xd7\xb9\xc0\x77\x38\x0c\x87\x23\xbd\x43\xc4\xd7\x6c\x2c\x80\x7e\xb8\x17\x6e\x48\x67\xdc\x0a\x37\x98\x1b\xed\xa3\x03\x39\xc1\x13\xcd\xa3\xe3\x8e\x87\xbc\x4c\xd5\x45\xd0\x0f\x19\xd6\x7d\xf8\x59\x36\x55\x7f\xf8\x19\x03\x78\x06\xb0\x1d\x18\x8b\x33\x90\xe9\x3b\xd1\x2c\x3a\x80\xe3\x40\xc4\xfd\x81\xbc\xdf\x99\xb0\x82\xe3\x4e\xde\x39\x0e\x35\x47\x94\xb3\xf1\xec\x9d\xe1\x4c\x65\x74\x86\x2c\xe9\xce\xde\x1c\x9b\x87\xb0\x17\xf4\x88\x9d\x47\x6e\x0a\xbc\x87\x4c\x0f\xe8\x81\x14\xe2\x8c\xa4\x19\x77\xc1\x89\xa6\xde\x1d\x06\x47\x34\xfc\x01\x70\x88\x4c\x37\xe5\x71\x97\x33\x73\x24\x11\x64\x1b\xcf\x04\x11\x1c\x37\x38\x1a\x31\x04\xc7\x7d\x38\x5a\xd6\x3a\x54\x6c\x3c\xf2\xe2\xbb\x62\x6a\x28\x2d\xde\xe7\xc6\xc1\x98\x95\x71\x37\xef\x1b\x5b\x6b\x60\x59\x9a\x09\x70\x44\xba\x19\x8f\xbb\x81\x42\x29\x06\x03\x62\x22\x05\x0d\x1d\x2c\xce\x28\x7c\xde\x1d\xfb\x2b\xeb\x7d\x4c\x1d\x99\x18\x74\x16\x29\x68\xf0\x86\x95\xa0\x60\x03\x2c\x89\xc4\x3c\xd6\xe3\x3e\xb7\x8e\xac\xe6\x0e\xcf\xcb\xaa\x7d\x82\x66\xc9\xde\xa1\x39\x28\x74\x17\x1c\x80\x88\xc8\x2a\x3e\x22\x5a\xb9\xb4\xae\x87\xe5\x31\xbc\x64\xdc\xeb\x3e\xc5\x91\x8d\x6d\xec\x10\x9e\x16\xf7\xe1\x61\x0c\xfa\x18\xd0\x28\x94\x4b\xdb\xef\xf0\xb0\xac\x89\xdf\x58\x18\xad\xe3\x9e\xe7\x75\x2d\xdc\xe1\x71\x0c\xee\x18\xd0\x0b\x30\x92\x63\xdc\xb7\xcf\x03\x1b\x3b\x32\x58\xb9\x44\x53\x47\x08\xcb\x95\x5d\x73\x19\x4c\x8d\x43\x08\xa3\x10\x7f\x3b\xd7\xa2\x9c\x03\x15\x43\xd6\x22\x3f\x98\x46\x5e\xcc\x00\x71\x91\xb5\xe6\x0f\xd6\x50\x5d\x7d\xd0\xf3\xaf\x6b\xcf\x11\x9a\x0a\xa1\xc9\xc6\x73\x41\x98\xf8\xde\x86\xa2\x81\x31\x1a\x03\x4a\x84\x44\x03\xf4\x78\xa2\xb7\xfd\xf5\x05\xa0\x15\x8c\xbe\x18\x4f\xf2\x9e\xb3\xf2\x54\x4e\x63\x64\xb8\xc8\x1d\x9f\x82\x3a\x73\x2e\x7d\x45\xe2\x22\x32\xc7\x27\xda\xaa\x07\xb4\x0b\x89\x96\xe9\x01\xe5\x42\x39\x02\xe2\x1f\x0e\x8f\xe7\x5c\x19\x19\x6f\x31\x00\x96\x51\x24\xff\x3d\x19\x04\x41\x81\xef\xc9\x05\x27\x2e\x1f\x31\x4f\x94\xe8\x1e\x67\x4a\xbc\x32\x22\x41\x3d\xc3\x19\xc6\x93\x71\x12\x69\x1e\x8b\x9f\x44\x7c\x3c\x04\x21\x69\xe0\x29\x3e\x30\x76\xa6\x62\x63\xf1\x11\xa2\x0a\x4f\x96\xc7\xb7\x31\xef\x42\x4f\x07\x93\x61\x65\xb8\xf4\x11\xe1\x65\x20\x35\x3c\x63\x20\xc6\x63\xf1\xb4\xcd\x5d\x09\x6d\x02\x91\xce\x07\x74\x09\x0c\x6e\x18\x50\x1c\x24\x9a\xb6\x07\x72\xb3\xa7\xa0\x81\x4e\xbc\xce\x69\x99\x18\xb7\x06\xba\x30\xcb\xec\xf9\x42\xcf\xb5\xc0\x0b\xf3\x40\x59\xe1\x39\x37\x25\xc6\x2b\x0c\x64\x64\x2f\x3f\x8d\x63\xd3\xf2\x4c\x04\x30\x46\xa2\xb9\x7b\x3c\xfb\x0c\x94\xfc\x03\xb9\xd8\x13\x8d\xdf\xe3\xd9\x5e\xdb\xf7\x78\x9f\x15\x8d\x9a\x97\x1b\xd3\x26\x02\x38\xdb\x8c\xa8\xd8\x03\x60\x17\x29\x88\x00\xce\x36\x23\x24\xf6\xbc\xae\x33\xab\x4c\x45\x3c\x91\x4d\x3d\x11\x01\x66\x22\x99\x3a\xd1\xaf\xe7\x75\x79\xd7\x8d\xcf\xa7\x6f\x51\x6f\x1f\x59\x81\x7d\x9b\xc8\xab\x4e\x20\xec\x79\x85\x84\xe2\xc0\xe7\x53\x79\xd2\xdb\x37\x7a\x5e\xf9\xfc\xe0\xf5\xf8\x3d\x47\xd4\x96\xd8\x99\x73\x99\x49\x4c\x80\x3d\x91\x3d\x9d\x08\xd9\x13\xb9\xd3\x13\x93\x5d\x4f\x64\x4a\x67\xe0\xc4\x04\x62\x05\xa3\x24\x26\x12\x9a\x13\xd6\x7a\x02\x9c\xa2\xd0\x8e\x36\x91\xde\x9c\x20\xd7\xf3\xc2\xe1\x4c\xc7\x80\x79\x9d\x6d\x44\x84\xeb\x79\x65\x9f\x07\x7d\x7d\x46\x96\x39\xee\x82\x25\x6c\xec\xe9\xb9\x7d\x30\x23\xee\x04\xca\x45\xa1\x31\x6d\x02\xe4\x82\xf9\x71\x27\x92\xa2\x17\x9a\xd6\x26\x20\x2f\x12\x5d\x10\xe6\x55\xb0\x26\x4d\xef\xef\xf3\x39\xbb\x5a\x30\xcb\x4d\xcf\x98\xe5\xc0\xbe\xd7\x33\x4d\x99\x5d\xaf\x98\xe4\xc0\xbe\x1f\xc9\x80\x78\xd5\xf3\xaa\x68\x3c\xb0\xaf\x38\xea\x99\x1e\x7b\x5e\x0d\xf4\x63\xfc\x1c\x8a\x21\x62\xff\xcc\xeb\xb0\x08\x42\x57\xcf\xab\xfb\xe7\xec\xdc\x61\x11\xa5\x70\xa2\xba\xb7\xc6\xce\xf5\x1b\x04\xc4\x67\xf3\xda\xd9\x3b\xdc\x5e\xe8\x26\x31\x2f\x30\x89\xca\xd6\x46\x3a\x9f\xab\x33\xc3\x2f\xea\xec\xec\x18\x78\xe6\xfb\x13\xf7\xfc\xc8\xee\xcc\x73\xb4\x6b\x9d\xc0\x63\xa2\xf6\xd6\x3c\xeb\xd8\xd8\xb9\x55\x41\x9e\xac\xfd\x9c\xfc\x89\xee\x16\xf3\x5a\x0f\xca\xd9\x1b\x70\x8d\xce\xcf\xef\x08\xf2\xfd\x4b\xe0\xeb\xbc\xee\x33\x32\x63\x47\x6f\x6c\x34\xad\xda\x7d\x78\xa7\xb1\xa3\x37\x34\x10\x91\x2d\x43\x0e\x88\xda\xf5\xe7\xa0\x67\xc0\xc8\x0c\x17\x36\x12\xc9\x37\x5c\x20\x11\x72\x01\xa4\x44\x4f\x74\xe8\x98\x01\xa7\x2f\xfd\x39\x66\x08\xd8\x4b\x9d\xf5\x05\x4c\x04\x27\x26\x04\x4c\xc4\x77\x86\xcd\x70\xf6\x35\x03\x14\x66\x48\x98\x47\xb2\x28\xa4\x31\xa7\x8b\xff\x0c\x50\xb1\x8a\x8b\x84\x23\x96\x17\x5e\x41\x66\xc8\x20\x31\x72\x91\x70\x0e\x50\xba\xea\xcf\xe0\x3b\x9b\x8c\x00\x88\x19\x85\xe1\xf8\x33\x14\xff\x9c\x83\x3b\x9b\x95\xb0\xa2\x33\x9c\xcd\x47\x0c\xd1\x19\x0a\x18\x41\xe6\xf3\xd9\x5c\xc4\x0b\x9d\xa1\x82\x2f\x44\x3d\xa3\xef\xdc\x7c\xa1\x61\x2f\xaa\x73\x2d\x9c\xcf\xf5\x88\xc6\xf4\x36\x36\xba\xfa\xd2\x07\x9e\x59\x7e\x76\x0f\x73\xd2\xce\xd0\xc1\xb3\x34\x92\xbe\x4f\x31\x2b\xef\x58\x15\xee\x3d\xa4\x4b\x2f\x99\x3c\x0e\x80\x1a\x89\xca\xe8\x19\x7c\xef\x15\x7e\x7f\x84\xec\x5a\xf4\x3a\xe6\xb5\x70\x59\xce\x56\xa4\x6f\xfd\x0c\xbe\xf5\x0a\x57\x65\x94\x53\xcc\xa1\x8c\x0a\x0e\xa9\x67\x90\x54\xe1\xd0\x06\x1a\x63\x5f\x07\x08\xb8\x70\x68\x67\xe3\x56\x75\x15\x4a\x58\x3a\x6b\xcc\x70\x36\x6a\x62\xc6\xed\x19\x8e\x88\x5e\x35\x92\x8d\xaf\xd9\x16\xb4\x0a\xd4\x75\xcf\xb0\xf1\x36\xdb\xda\x58\x53\x6e\x2e\xa4\x44\xaf\x7a\x1b\x6a\x04\xba\x81\xcc\x70\x9f\x25\xfd\x79\xc4\x56\xac\xfc\xfa\xc6\xd1\xc0\x03\x17\xb9\xd0\x69\x10\x98\x01\x9a\x03\x2a\xce\x67\x78\x4e\x57\x2b\x67\xf1\x39\x14\xc0\x3c\x24\x33\x1c\xa1\x9a\xd8\x97\x33\x1c\x99\xba\x50\x6e\x99\xe1\x39\x14\xf0\xc9\x86\x33\x5e\x67\x52\xc9\xde\x90\x20\x3d\xd1\x1b\x65\x46\x3f\xcd\xd9\x18\xd2\xa3\x17\xc9\x0a\x80\xfa\x20\x8e\xe4\x44\xb2\xf4\x22\x59\x21\x06\x3b\xc5\x6c\x0c\x4c\x41\xb2\x42\x0c\xa0\x97\xaa\xd7\xd1\xd7\xa4\xea\x4e\x5f\x3f\xb1\x78\x46\xe7\x21\x55\x9f\x3f\x78\x9d\xd5\x1f\xd9\xa1\x7e\x02\xdb\x8c\x2e\x3a\x70\x26\x62\x04\x45\x68\xe8\xe9\xec\x7a\x66\x97\x98\xc8\xe3\x9e\x74\xa6\x02\x60\x84\x3e\xf9\x13\xf0\x22\x49\x67\x6a\x3c\xb2\x05\x3d\xf4\x27\x52\xba\x27\xda\x2b\x26\x32\xba\x27\x1a\x28\x66\x84\x78\x50\x48\x7f\xc8\xbf\x4e\xf7\xfd\x89\xec\xeb\x89\x19\xbb\x67\x04\x8f\xf9\x79\x04\x0d\xf0\xa0\x88\xe0\x31\x3f\x8f\x98\xd8\x3f\xc5\x9b\xce\xe8\xc7\x79\x67\xcf\x2a\x66\x5d\x8b\x58\x31\x12\xd3\x33\x7a\xae\x55\x74\x06\xc6\xe3\x1e\xf9\xd9\x13\x93\x7c\xcf\xd8\x41\x23\xc6\xbe\x43\xe6\x8f\x3c\xa8\x22\x64\x7e\x86\x11\xce\xd8\x0f\x91\xe8\x75\xcb\xff\xfe\xa3\xcb\xfd\x8c\x87\xa7\x14\x06\xd9\x4d\xe0\x8d\x24\x7a\xcc\xcc\x38\xce\x2a\x12\x68\x7c\xc6\x73\xde\x37\xbd\x7e\x78\x4e\x61\xb0\xdc\x8c\xc3\x07\xc7\xf2\xc3\x35\x88\x27\x39\x01\x5e\x92\xa2\xfa\x76\xb8\x08\xad\x4a\x33\x9e\x1b\x05\x9d\xdb\x67\x9c\x5e\x19\x67\x72\xde\x10\x3d\x54\xfe\x9c\xd7\xd9\xd6\x82\x9e\x5e\x43\x3b\x37\x0e\xfa\xbd\x4f\x80\x9e\xd0\xc3\x7c\x02\xe1\x24\xd1\x14\x33\x01\x70\x42\x5f\xf1\x19\xf7\x59\x72\xc6\x5c\x4d\x64\x74\x6f\xda\x98\xb8\x50\x10\x0b\x7a\x02\xeb\xa4\xd0\x24\x3a\x91\xde\xbd\x69\xa7\x1d\x0e\x55\xaa\xf6\xc2\x11\x44\x9a\x76\xd6\x11\x35\x12\xfd\x85\x66\x04\xc7\xd2\x31\x13\xef\x7e\x5e\xe7\x34\x3d\x3e\x50\x3d\x7b\xed\xec\xdc\x03\x8b\xc4\xc5\x79\x7a\x2a\x9e\x55\x0e\x7b\x07\x45\xbe\x78\x78\x16\x1d\x94\x67\x84\xee\x93\x8e\x46\x13\x49\xe4\xe9\x7b\x3c\x01\xa7\x42\x33\xd0\x4c\x57\x83\xf1\x44\xc5\xa7\xaf\x3c\x27\x52\x00\xfd\x90\xb5\x03\x26\x25\xd1\xea\x34\xd3\xe1\x49\x84\x00\x9c\xe9\xb0\xa4\x44\x17\xa6\x99\x0e\xcf\xa1\x7f\xed\x04\x62\x4a\xa2\x43\xd3\x04\x3e\x4a\xa2\x3f\xd3\x4c\x11\x14\x42\xb9\x1e\x79\xe7\x53\x22\x89\x24\xdc\x5f\x08\xee\x3b\x91\x86\x9e\xce\xb9\x33\xb9\xf1\x85\x24\x83\xa4\xf4\x29\x51\x16\x06\xf4\x49\x22\x98\xdc\x04\xae\x49\x61\xcc\xc7\x4c\x87\xe9\xd0\x83\x76\x26\x30\x1d\x1a\xb5\x66\xc2\xad\x83\x89\x9a\x67\xc2\xad\xa2\x69\xea\x2a\xd6\x89\x62\x58\xaa\xed\xdf\x7f\x74\x29\x9d\xa9\xa2\x77\x14\x9d\x53\xb5\x53\xcc\xb1\x42\xa1\x48\x27\xab\x99\x0e\x1f\x6a\x1a\x2a\xd8\x90\xf6\x5a\xaa\x3e\x16\x3e\x9f\x5b\x06\x1d\x38\x27\xf2\xe0\x27\x3a\x64\xcd\x74\xb8\x10\xcd\x56\x13\x39\xef\x8b\xf6\x43\xea\xde\x75\x3d\x7b\x67\x38\x33\x47\x6e\x2a\xa2\x78\x20\xb1\x30\x7b\xe9\x4c\xdd\x3b\xc3\x99\xc1\xa5\x84\xb1\x0c\x33\xc1\xe2\x42\x0b\xde\x4c\x47\x70\x62\xe2\xd2\x99\x60\xbc\xd6\xb5\x00\xb0\x2e\xf4\xc6\x9c\x48\xae\x9f\x92\x6a\x33\xd4\x9e\xf5\xba\xd7\xce\xa9\x38\x92\x10\x8d\x6a\x33\x41\x12\xd2\xa5\x22\x8d\xd3\x77\x0a\x27\xc0\x6e\x49\x44\xd4\x9b\x69\x62\x95\x29\x19\x01\xca\x25\xa5\xfc\x97\xa4\xb5\x33\x41\xa7\xf2\xb3\x1f\xc0\x02\x93\xba\xba\xd0\x35\xb6\xb5\x40\x41\x3c\x83\xd3\xb9\x0f\xd1\x65\x72\xa6\x85\x81\x91\x8f\xa4\x23\x85\xd1\x81\x72\x22\x51\x7f\xa2\x81\x6f\x22\x2d\x7f\xa1\x53\xf3\x4c\xbb\x9d\xd7\xf5\x35\xee\x62\xa2\xc7\x6d\xa7\x58\x5f\x63\xc9\x79\xc7\x4e\x87\x63\xd2\xb3\x70\x22\xa3\x7f\xa2\x3d\x70\xa6\xbd\x4f\x31\x1f\x6f\x74\x8d\x04\x71\x83\x3b\x8b\xe9\x9c\xdb\x57\xd7\xce\x39\x0c\xb1\x6b\xe3\x3c\xa0\x46\x1e\xe7\xe9\x30\x38\xba\x0a\xce\x0c\xdb\x32\x5d\xb9\x66\xbe\xce\xfa\xab\x6b\x80\x9f\xa1\x57\xe0\xcc\xce\xa2\xb8\x06\x39\xa0\xb6\xc2\x47\x4c\x2a\x79\x52\x3e\x2c\x8a\x1e\x83\x33\x3b\x8b\x22\x4f\x01\x50\x4d\x21\xbc\xdd\xcc\x47\xec\xa1\xdf\xdd\x04\x4a\x4d\x22\x2c\xdf\xcc\xce\x82\x28\x8d\x22\xad\x7f\xa1\x63\xd6\xcc\x50\x3e\xd2\x3f\x6c\x66\xe8\x5c\xe8\x74\x35\x91\xf5\x3f\x31\x3d\xfa\xcc\xd0\x46\xd2\xda\x38\x73\x41\xf3\xac\xde\x59\x14\x97\x1c\x39\xfd\x89\x92\x37\x01\x55\x93\xe8\x49\x36\x73\x3d\x13\x4d\x67\xa3\x89\x7c\xfe\x74\xcd\x9b\x19\x8a\x0d\xc2\xac\xcd\x5c\xcb\x29\x66\xdb\xce\xa1\xc8\xb1\xf2\xe1\x50\xa5\x6b\xaa\x0e\x8b\xa2\x55\x76\x66\xe7\x50\xe4\x60\x19\x36\x60\x5a\x3a\x27\x00\x6d\x4a\x57\x75\x30\xf2\xd2\x18\x39\x73\x3f\x0b\xc3\x8b\x62\x86\xea\x94\xc6\xc9\x99\x8f\x9c\x44\x0f\xc0\x99\x3b\x66\xa2\xeb\x75\xd0\x2b\x05\xd0\xec\x4c\x84\x2c\x0b\xd9\xfe\x69\x22\x9e\xd9\xb0\xcc\x64\x1a\xd9\x0e\x79\x93\x29\xe4\x23\x27\x31\x11\xe8\xcc\xb0\xf9\xd2\x9e\x38\x91\xf6\x9f\x79\x3d\x67\x1e\x98\x76\x8a\x7c\xf9\x70\x1c\xba\x00\x4e\x24\xf8\x4f\x49\x6d\xcd\x33\xcd\xe4\x11\x79\x1e\x92\x31\x91\xff\x91\x8b\x98\xac\x73\x22\xd7\x7f\xa2\xd3\xd9\x44\x66\x7f\xfa\xe4\xcd\x7c\x38\x0c\x3d\xf2\x66\x06\xcb\xe0\x6d\x3a\xbb\xd4\x44\x3d\x46\x3e\x52\x53\x21\x3e\xd2\xcc\xce\x52\x28\x3e\x66\x28\x60\x4c\x14\xb2\xd1\x55\x0e\x14\xbb\x9e\x57\xd2\x7c\xbb\xf3\x03\x1b\xbf\x6f\xe8\x58\xd8\xda\xb9\xaa\x11\x70\x6f\xe6\x23\x07\x15\x53\xd7\x8f\x1c\xd4\xb5\x6f\x9f\x33\x12\xed\x53\x38\x9c\x48\xe7\x81\x84\xfd\x3f\xc4\x07\x0b\x2f\x8d\xb4\x13\xd9\xfa\x3b\xf7\x65\xb9\xce\xfa\xda\xcf\xf3\x84\x23\x46\xe4\x33\xf4\x3b\xdc\xb7\x05\x6a\x5c\xa6\x5d\x9f\x05\x3c\x86\xa2\x01\x12\xea\x17\xa2\xc5\xcc\x12\xf1\x39\xa9\xaf\x44\xff\xfc\x2f\xe6\x8d\x59\x8e\xd4\x43\x93\xfe\x44\x2a\xfe\x44\x13\xed\x2c\x09\x8a\xac\xae\xe7\xb3\xe0\x3c\xe9\x91\x86\x3f\x11\x3d\x71\x16\x28\x7b\x88\x06\x33\x91\x51\x3f\x49\x7b\x53\x0e\x47\x29\x04\x76\x99\xa5\x9c\x89\x22\xad\x22\xdf\x7e\xa2\xc9\x77\x16\x30\x1c\xd2\x2a\x92\xed\x57\xe6\x92\x9a\xa5\xc2\xa1\x85\xdc\xb5\x60\x93\x13\x65\x71\x96\x86\x89\xa0\x04\x87\x14\xf8\x5d\xab\x74\x36\x31\xd3\x55\x4e\xa4\xae\xa7\x53\xc0\x44\x9e\x7a\xd3\x1a\x0d\x94\xb2\x29\x28\x40\x68\x2d\x9e\xc0\x90\x62\x0e\xca\x59\xce\xb1\x5f\x2f\xad\xf8\xc0\x3c\x51\x18\x2c\x33\xa2\x9c\x9f\x9f\x6d\x66\xea\xe8\xc2\x3c\x50\x56\x2c\x67\x9b\x99\x1a\x5b\x98\x07\x2d\xca\x39\x5c\x99\xe5\x70\x16\x78\x7a\x11\xf5\x71\x02\x13\x2a\xd1\x54\x3d\xcb\x46\x67\x28\x0b\x96\x7b\xfc\xfb\xaf\xd2\x01\x66\x16\xf8\x7a\x11\xe0\x71\x96\x7b\x9d\xea\xd9\xda\x8d\x59\xa5\xb8\x56\x1e\xb8\xf2\x90\xef\x97\x07\xbe\x3b\x94\xc7\x2a\x6c\x16\x34\x5e\xcf\x7a\xa1\x7b\xdc\xd6\x15\x3e\x09\x52\x9b\xd5\x90\x4e\x77\xc8\x5c\x6b\x38\x83\x67\xf5\x35\xb8\x1b\x52\xe2\x33\x06\xcf\xd6\x70\xc2\x12\x38\x71\x22\x95\x7d\x65\x02\x92\x59\x63\xfa\xf7\x9f\xa9\xb1\x73\xe2\x56\x5a\xd2\x67\x8d\xe5\x14\xf3\xf1\xc8\xfc\xa6\xca\x0e\xf5\x33\xf5\xe1\x44\x02\xfb\x94\x7f\x9e\x7d\x64\xec\x2a\xfc\x43\xa5\xe1\xab\x05\x13\xcd\x8d\x5b\x71\x42\x12\x8f\x71\xd6\x72\x26\x9a\xac\xba\x9e\x13\x91\x49\x12\x67\x85\x57\x13\xb1\x19\x67\x3d\x22\xbd\x69\x60\xad\xfe\xfb\xaf\xca\x5a\x53\xc7\xe9\xba\xde\x1e\x20\xa9\xa2\x67\x54\xce\x91\x41\xdf\x27\xb5\x6a\x1d\x15\xaf\xab\xbc\x9d\xd7\x39\x52\x5c\xd5\x89\x96\x38\xeb\x80\x0e\x58\xd3\x78\xe8\x9d\x08\x6b\x13\x28\x51\x35\x6a\xa0\x33\x9c\x62\x8e\x0c\x16\x7d\x1a\xd9\x67\x9d\x67\x64\xe4\xec\x80\x83\x4a\x34\xb2\xcf\x0a\x63\x21\x61\x16\x27\xf2\xd5\x33\x45\xe3\xac\x1b\xf4\x47\xe6\x5c\x0f\xa7\x67\xc2\xc6\x59\x1f\xbc\xcd\x79\x80\x7d\x8e\xb0\x86\xb3\x3e\x68\xfb\x1b\x77\xbb\x0e\xf9\xe8\xba\xdc\x60\x9f\x23\xc6\xe1\x6c\x87\x75\x13\xe4\x6d\x36\xe7\xdc\x94\x98\x00\x07\x95\x68\x08\x9f\xc0\x7a\x4a\xc4\x2a\x9c\x48\x0b\x9f\x88\x4c\x38\x5b\x44\x75\x2c\x4e\xd0\x37\x73\x55\x80\xd9\x94\x68\x28\x9f\xed\x70\x67\xfa\x69\x4c\xa4\x90\x4f\x04\x2d\x9c\x2d\x0d\x68\xbb\xd9\x7a\x9a\xff\xfe\x23\xf0\xdb\x6c\xd0\x92\x49\xc2\x6f\x19\xcb\xd0\xfe\x64\xe1\x00\x8e\x93\xa9\xe3\x87\xd4\x4d\x1d\x83\x68\x48\xa4\xc3\xd9\x40\xca\x3c\x36\x5a\x45\x47\xa9\xd6\x02\x90\x12\x01\xd2\x66\x6b\x98\x74\xbd\xde\xce\x30\xc9\xee\x00\x99\x54\xd3\xcf\xeb\x67\xcf\x52\x5d\xd7\x1a\x76\x95\xbe\x3e\xa2\x1c\x31\xcd\x66\x83\xb3\x4a\xd6\xd7\xe7\xba\x58\x75\xb4\x37\x38\xc5\x33\x2d\xe2\x6c\xe3\x4c\xa2\x8e\xb0\x06\xb8\xcd\xeb\xe7\x19\x4b\xa8\xe6\x91\xac\x91\x58\x5d\x13\xe9\xe2\x6b\xa6\xda\xa1\x21\x72\x9c\x28\x5b\x13\x89\xde\x53\x56\xff\x90\x1c\x82\x80\x59\x13\xe8\x46\x55\x36\x08\xe4\x81\x0f\x84\xcb\x9a\xed\xc8\x5c\x55\xdc\xba\x21\xc2\x95\xee\x30\x13\xd8\x47\x81\xfe\x2f\xb3\x21\x26\x86\x50\x59\x13\x79\xe0\x13\x7d\x0c\x66\x43\x42\x07\x66\x4e\x9c\xed\x08\x46\x55\xbb\x0d\x90\x45\x29\xf3\x88\x77\xc4\x22\x02\x5a\xcd\x7e\x81\x46\x79\xa6\xf7\x0b\xe3\xaf\x2a\xc7\x78\x79\xa8\x23\xff\x7b\x25\xf2\xe8\xec\x70\xc7\x95\xfe\xde\x11\x8c\xae\xa4\x67\xec\x7e\x4a\x91\x1d\x71\xad\xc4\xad\x9a\x3d\x60\xbd\xb8\xfc\x1d\x41\x8a\x4c\x3b\x38\x81\x44\x94\xa4\xd1\x47\xde\xf7\xfa\x53\x1f\xf4\x36\xf4\x7b\x98\x3d\xc1\x2c\x43\xfa\xe8\x70\x93\x25\x14\xe4\x04\x08\x51\xfd\xa9\x0f\x58\x0a\x17\x99\x5b\xc7\x21\xc1\x2c\xf2\x13\x39\xe2\xc3\x45\xee\xd6\xe1\x28\x4b\xd0\xc7\xd9\x11\x10\xc9\x5c\x83\xb3\x97\x08\x43\x0d\xeb\x3b\x32\x52\x60\xea\xc1\x09\x00\xa3\x2a\x23\x02\xf0\x8b\x12\x53\xbf\xcf\x5e\xbd\x3f\x8d\xcf\x1d\xe5\x7a\x9e\x78\xe6\xf8\xea\x0d\xcb\x8f\x9e\xb1\xbe\x14\x85\x91\x17\xbe\xca\x50\xd0\x1b\xfa\x4b\x76\xdb\xcf\xee\x4c\x04\xa0\x9c\xbd\xc1\x92\x94\xf4\x3d\xd6\x93\x66\x8c\xde\x31\x7e\xf5\xbf\x0f\xd8\x8a\x38\x1f\x88\x7c\x61\x4c\xc6\xec\x80\xdd\x95\xe8\xd4\x71\xb7\xa2\xfb\xc6\xec\x90\xcc\x88\x11\x39\x1d\x14\xe9\x12\x7d\xf9\xfe\x25\x17\x04\x02\x52\x22\x84\xe4\xf4\x4c\xf0\x0c\xea\x98\x1d\x87\x13\xf3\x9e\x4f\xe0\x21\x55\x66\xe2\x9d\x7d\x7a\x7b\x1c\xbf\xef\x6f\x1e\x01\xc0\x3e\xaa\xc4\x21\x9c\x1d\x71\x6d\x0c\xbd\x98\x80\x42\x4a\xf2\x08\xe9\xbe\xff\x55\x3f\xf0\xb6\x19\x5c\x31\x91\x65\x3e\x11\xe1\x72\x76\xdf\xdf\x34\x6e\x74\xdc\xa2\x98\x41\x7d\x76\xdf\xef\x64\xc5\x1d\xd2\xa0\xcc\x44\x1d\x18\x2f\x8c\x90\x98\x7d\x9f\xf5\xaf\xa2\x57\x20\xbc\x5c\xda\x4f\x37\x4c\x5c\xbc\x9c\x78\x3e\x7a\x46\x4c\xcc\x7e\xa3\xbf\xe4\xd6\xc8\x46\x9f\xca\x9f\x92\xa6\xce\xee\xcc\x87\xcc\xb4\x3f\x3e\x18\x76\xfe\x19\x30\xe6\xb1\xb3\x00\x54\x63\x58\xc2\xec\x0f\xcc\x73\x5a\x4c\xe4\x8e\xa0\xe7\xd8\x34\x68\x73\x64\xc5\xb2\x0b\xd6\x3f\x4e\xbe\x81\x79\xc9\x6c\x05\x38\xa8\x2a\xeb\x34\x92\xde\x07\x7a\x9a\x4d\x83\x6c\x2b\xe2\x36\xc0\xc6\x10\x2b\x6b\x5a\xa8\xb0\x2e\x36\x3e\x83\x58\x7e\x9e\xfd\xfd\xc4\x67\x43\xf9\xb7\x98\x0e\x03\xc5\x50\x86\x69\x90\x17\xe4\x07\x63\xd1\xfb\xc3\xfe\x21\x80\x40\x8e\x30\x76\x04\x86\xca\x70\xa8\x69\xce\x9c\xc8\xcc\x0c\xc6\x78\xf9\xb6\x78\xce\x7a\x86\x0c\x4c\x43\xca\x4d\xc6\x04\x4c\xa4\xb0\x4f\x72\x66\xb1\x0c\x62\xa1\x3c\x63\x00\xb5\x60\x50\xc0\x34\x67\x6e\x54\x01\x18\x98\x1b\xc3\x00\x26\x70\x9e\x02\x9d\xe7\x27\x92\xd7\x27\xb9\xb7\x20\x77\x7d\xa0\xb7\xfc\x44\x62\xfa\x5a\x35\xbf\xc0\x44\xa3\x43\xdc\xb4\x8a\xf5\xd7\x7c\x02\x7f\x91\xfe\xf1\xd3\x5a\xc7\x33\xcb\x21\x2b\x30\xb9\xfb\x34\x30\x27\x22\x66\x4d\xc3\x0d\x92\xb9\xde\xa7\x39\xb3\x22\xf3\xb6\x5e\x61\xd0\x65\xfb\xc8\x94\x41\x07\xfa\x69\x1d\x26\x5c\xb5\xdf\xbd\x3d\xb6\xdf\x17\xca\x59\xbf\x61\x7d\xc9\xdc\x0d\xcc\x2e\x88\x3e\x9d\xd9\x51\x7a\x35\xc3\x61\xa4\xf5\xb5\x73\x18\x11\xd7\x68\xda\x88\x78\x66\x7b\xb8\x05\x10\x7a\x75\xda\xb9\x05\x54\x59\xae\x00\x6f\x95\x88\xc4\x3a\x01\x55\x15\xe8\x6d\x3e\x0d\x36\x38\x59\x4a\x6d\x7a\xff\xb8\xbe\x08\x9f\x92\x87\x8f\x39\x73\xe3\xe1\x60\x87\xb9\x55\xe6\xca\x9a\x06\xe8\x46\x3a\x8c\x4f\x3b\xc2\x4d\x25\x10\xcf\x34\x44\x18\x94\xaa\x72\x18\xd0\x45\xaf\x60\x8e\x41\xfb\x69\xc1\x82\x2e\xfa\x3c\xcc\xb0\x36\xd1\x1f\x98\xa1\xae\x7b\xc8\x99\x5f\x9b\xd6\x13\xde\x01\xcc\x87\x3f\xed\xc6\xfa\x6a\xbd\xe0\xec\xc7\x5c\xf7\x13\xe0\x56\x21\x68\xfe\x71\x37\x26\x4e\xed\xb4\x07\xdf\x6b\x3e\xc0\x9f\x64\x34\x02\x32\x55\x08\xaa\xef\xf1\xf9\x63\x7f\x1f\xac\x27\xc7\x3f\xc0\x7f\xe8\xd9\x3a\x1d\xa6\x8a\x9e\xad\x73\x40\x18\xa2\x7b\xe9\x04\x26\x55\x2a\x7a\x3f\x80\x1e\x78\x98\x20\xad\x7e\x2a\x3f\xdf\x83\x1e\x78\x98\x0c\x20\x80\xd0\x1f\x75\x02\xc1\x2a\x95\x9f\xfa\x71\x98\xa8\x1c\x37\x0e\x69\xcf\x07\x3c\x6f\x99\xe9\x7e\x22\xf5\x7d\xa0\xc3\xea\x1c\xd0\x1f\xc9\x85\xcb\x81\xa8\x08\xd5\x34\x87\x0b\x4f\x7a\x1f\x80\xb3\x41\xfd\xcf\xde\xde\x9f\x8c\xeb\x23\x7b\x63\xac\x1c\xc0\x8e\x81\x9a\x7f\xa4\xbf\x4f\x45\x95\xd7\x0a\x9f\x05\x76\x1e\x2a\x68\x39\x94\x0d\x67\x3e\x64\xbe\x03\xcc\x47\x4a\xe3\x01\x1d\x74\xe1\xc9\x3b\x00\xf5\x2a\xdf\x4e\x64\xc6\xaf\xd2\xbd\x8e\x86\xfa\x79\x12\x23\x0d\x7e\x95\x3a\x15\x39\xee\xab\xf4\xa9\x9e\xe2\x5e\x0e\x96\x03\xcc\x46\x0a\xd2\x01\xad\x74\xa1\xba\x61\x20\x83\x41\x24\xb3\x1d\x30\x9c\x49\x32\x19\x88\x20\x26\xfc\xd2\x44\x72\xfb\x2a\x2d\xe7\x80\xa9\x8b\x68\xc8\x73\x0c\x38\x3a\x88\x38\x07\x16\x8b\x87\x2d\x72\xe1\x57\xe6\x16\x99\xc3\x99\x0f\x0f\xcf\x01\xe6\xc3\xe0\xa4\x89\x54\xf9\x55\x7a\x4e\xa0\x70\x55\x26\x09\x99\x03\x37\xa9\x2e\xe2\x83\x2a\x5b\x6e\x74\x63\xe2\x7d\x11\x0b\x50\x08\xe4\xcc\x08\x44\xae\xda\xb5\xfe\x73\xa3\x5c\xf5\x63\xbc\x5a\x7f\xe8\x19\xe4\x77\x37\x96\xf7\x9f\xdf\x03\x44\x43\xde\x8e\x03\xe1\x9c\x72\xae\x18\xe7\x66\x16\xe4\xfd\x88\x5c\xf8\x55\xda\xce\xb1\x0f\x33\x91\xa4\x35\x90\xf2\x58\xee\x8d\xc8\x8c\x9f\x24\x69\x0d\x68\xb8\xab\xd6\x1b\x0e\xfe\x55\xeb\x09\x0c\x01\xf9\x3f\x22\x2b\x7e\x90\x83\x23\x10\xb8\x12\x61\x94\xe7\xbc\xbc\x3d\x3d\x27\x94\x37\x3e\x7b\x7d\x7a\x3e\xf3\x23\xe5\xd8\x3c\x37\xb1\x20\xbf\x42\xc0\x75\x55\x66\x22\x98\xc8\x80\x1f\xe4\x57\x38\x21\xec\x30\x73\xe2\x9c\x10\x76\x08\xc9\x3c\x91\x0f\x3f\x44\xd5\x0f\x55\x1e\x01\x99\xa7\x67\xc3\x8f\xaa\x1f\xc2\x0e\x53\xdf\xcf\x19\x0d\xe5\x85\xcf\x87\x1e\xa4\x47\x9a\xc0\xd2\x93\x67\xe2\x8c\x0b\xe5\x6c\x0f\x7a\x73\xb9\xab\x20\x51\x7e\x35\x1e\x86\x13\x29\x1f\x08\x2e\x35\x91\x37\xbf\x4a\xf9\x03\x54\xb0\x24\x7f\x96\x89\x9b\x21\xf1\xfd\xe7\x84\xdb\x11\xb1\xa0\x27\x52\xe4\x57\x86\xdd\xcc\x09\x98\x23\x82\x3c\x4d\x60\x88\x55\xa9\x77\x3c\x83\xbe\xbc\x13\x27\x98\x1f\xb1\xff\x27\x20\xc6\x92\x1c\x35\x91\x60\xbf\x12\xf9\x7f\x4e\xe0\xef\x11\x22\x6a\x4e\x08\x6f\xd2\x07\x01\x80\x2c\x11\x67\x7a\x3a\xfe\x58\xd4\xfc\x21\x48\x93\xb0\xd3\xd3\xd3\xf3\xcb\x43\x71\x56\x1f\x1f\xfb\x0b\x74\x05\x79\x28\xce\x7a\xf8\x81\xd4\x3c\x9e\x78\x5f\x4e\x84\xb3\xfa\xfc\xf3\xb9\x79\x7d\xec\x2f\x6e\x96\x12\xfe\x67\xbb\xe1\x8d\xc4\xf9\xef\xde\x1f\xbe\x0f\xfe\x27\x97\x1f\xcf\xa7\x2f\xb7\xc3\x79\x84\xb1\x76\x89\xfe\x9c\x3f\x6a\x3d\x9d\x1f\xd6\xf8\x97\xc3\x65\x42\x32\xab\xda\x2c\x80\x23\x95\x9f\x21\xf2\xee\x37\xa9\x5d\xa6\x81\x18\xc9\x3c\xe7\xc0\x64\x93\x59\x4e\x48\x62\x55\x9b\x0b\xd7\x58\x79\xff\x01\x2e\x2d\x55\x6d\xae\xe1\x9d\x67\xfb\xd3\xeb\xe3\xe0\xa6\xd7\xc7\xc9\x3f\xd7\xd8\x46\xec\xee\x39\x81\xca\x2f\x07\xbe\x79\xae\xb1\x8d\x40\xdd\x13\x58\x6b\x41\x1e\x7b\xf3\x5c\x6b\x1b\x41\xb8\xe7\x04\x73\x94\xe7\xed\x74\xe6\xd8\xf4\x0c\xe2\xd1\xe6\x75\xe6\xd8\xf4\x8c\xc5\xd2\xe6\x45\xb0\x7b\xd5\x66\x85\x3b\x82\x6e\x52\x13\x2e\x57\x52\xa3\x4c\x20\x7a\xcb\x05\x10\x30\x6e\x4d\x6a\x94\x09\xf4\x53\xf9\x00\xce\xed\xed\xe9\x19\xf3\xc7\xc3\x7a\x22\xfc\x94\x29\xfd\xe7\x74\xe6\xcc\xc3\x79\x3a\x73\x16\x33\x40\x30\x96\x9c\xba\x26\x70\x4b\x99\x7e\x73\xce\x1b\xc4\xda\xf4\x8c\xf1\x50\x7d\x3f\xcf\xcd\xb7\x49\x6d\x30\x81\x6a\x1a\xb5\x59\xe0\x97\x25\x2f\xb0\xe9\xcc\x9d\xd7\xec\x09\x35\x1c\x71\xb5\xe6\x72\xe6\x4e\xe1\x66\xc1\x49\x5c\x6e\x61\x0b\x49\x14\xe5\xb5\xb8\x2e\xf8\xe6\xb1\x3d\xc0\x78\x24\xb9\x23\x03\x71\xae\x5d\x3f\xf5\xdf\x28\xd7\x33\xda\xe7\x61\x0c\xb8\xb9\x24\xbf\xb2\xe5\x87\x01\x0f\x53\xe0\x7e\x24\xe2\x81\xcf\x15\x41\x8f\xbc\xb9\xad\x88\xf6\x54\x1f\x98\xb7\x9c\xbb\x56\xf4\xf9\x36\x3e\x6f\x94\xeb\x7b\xcc\xf7\x4f\x7b\x98\x6f\xde\xf4\x56\xc2\x78\x79\x98\x2f\xa4\xac\x93\xb7\xd7\x3a\x92\x66\xd3\xcd\x73\x1d\x66\x9d\xe4\x30\xed\x10\x74\x72\x81\x5a\xc8\x3c\x22\xa7\x25\x80\x7f\x24\x79\x50\xaf\x72\xfa\xc3\x18\xe2\xb9\x00\x4e\x23\xb7\x23\xe0\xd3\x35\xdd\xf4\x16\x98\xa7\xfc\x8e\x96\x33\x43\xde\xfc\x16\x7c\xac\x74\xb3\x5f\xb8\xa9\x12\xa4\x7c\xae\xee\xfd\x65\x7f\x8e\xb0\xd8\x18\xd7\x38\x01\xe9\x11\xe4\xb7\xb4\xba\x7f\xcf\xf9\x04\xe8\x23\x81\xa8\xe6\xea\xf0\x97\x54\xfd\x1e\xb7\x4e\x66\xba\xac\xc2\xfd\x92\xe3\x39\xfc\xad\x31\x7e\x70\x2e\xf8\x86\xd6\x9f\x72\xac\x97\xe8\xcb\x30\x3f\xe4\x97\x6b\x80\xde\xf5\x3d\x7c\x47\x09\x6a\x3b\x17\xf8\xa5\x42\x2a\xd6\xc4\x7a\x91\x9f\x00\xa9\x23\x24\x8d\xc7\xf9\x13\xf9\x2b\xa0\x38\x42\x52\xff\x11\xea\x2e\xcf\xee\xb5\xd0\x1f\x0a\xbb\x6b\x7b\x7f\x38\x7e\xf0\x9b\xa4\xf7\x11\xdc\x4e\xb8\xf2\x09\x34\x8e\x90\x7e\xde\xc7\x7c\xff\x94\x83\xff\xd4\x3f\xdd\x5c\x16\x98\x13\x51\x02\xe6\xc2\x35\x55\x8e\xe4\x00\xeb\x68\xba\x09\x38\x5a\x47\x25\xf3\x05\x5a\x47\x93\xe4\x0f\xb8\x8e\x24\xb5\x8d\xe3\x6d\xc8\xf5\x11\x78\x1b\x41\x9e\x3d\x80\xc8\x68\x92\x94\xf7\x75\x0e\x0b\x19\x68\x36\xfc\x36\x25\x09\x3b\x62\xa1\x2c\x34\x00\x2c\x6c\x92\x84\xf7\xe5\xed\xab\xbe\x1b\xe5\xaa\x0f\x9b\x95\xcc\x78\xe3\x5a\x2b\xf7\x9b\x8d\x6b\xad\x7c\xdb\x77\xc0\x62\xf2\x26\x03\x58\x8d\x26\x49\x72\x47\xcc\x1f\x99\xdd\x86\x0d\x40\x0e\xe2\x3b\x7b\xfd\x6c\x2f\x43\x92\xd3\xfb\x19\x0e\xbc\x24\xce\x0d\xb5\x98\x7c\x6c\x36\x6e\x96\x55\xdf\x3b\x33\x20\x33\xdb\x05\xeb\xa3\xf9\x84\xe1\x97\x58\xee\x73\x17\xaf\xaf\xf2\x19\xf3\xc3\x9b\x12\x00\x2e\x82\x7c\x5b\x1c\xe0\x42\x6a\xb0\x5d\xb1\x5e\xbc\x59\x02\xff\x30\x49\x0d\xb6\x9b\x7f\xcf\xfe\x35\xff\x9e\xf3\xd5\xb0\xbe\xaa\xcf\x99\x0b\x99\x27\x20\x32\x5a\xfc\xa9\x0f\xc4\xab\xfe\x76\x6c\x0e\xf5\xaf\x27\x78\x30\x73\x7c\xfd\xb4\x2f\x87\x97\xdd\x7d\xfc\xec\x2f\x62\x5d\xaa\xfa\x07\x66\x23\xab\xeb\x36\xb8\x3c\x93\x19\x3b\x2a\x06\xf1\x88\xe6\x46\xae\x12\x39\x7e\x6c\xdc\x34\x09\xc1\x3e\x81\x9a\x11\xe4\x08\x02\x90\xc5\xd4\x54\x3f\xb2\x90\xc8\x9b\x63\x8f\x1b\x2e\xd6\x7a\x7e\xf0\x3e\xeb\x9f\xde\x1e\xfb\x0b\x1b\x82\x3c\xdb\x1d\xa2\x51\xfe\x1b\x1b\x36\x01\x79\x64\x38\x0c\x87\x7c\x7f\xf7\xf4\xfe\xb0\x3e\xa0\xbb\xcb\x63\x03\x40\x1b\x8d\x40\x30\x73\x6f\xaf\x8f\xfd\x47\xc8\xaa\xbc\xd9\x01\xa5\x11\x64\x13\x74\xb0\x0c\xb9\xb3\x6f\xe0\x96\xca\x85\x03\x40\x8d\x8d\xa8\x78\x73\x43\xcd\xd5\x34\xbe\xd7\x87\x9c\xf3\x0d\x10\x53\xb9\x7c\x00\x30\x23\xc8\xe5\xc3\x01\x33\x9a\xc6\x8f\x9b\xa9\x5c\x40\x36\xf8\x8d\xfc\xe9\x37\xf8\x8d\x5c\x42\xee\x0b\xeb\xdd\xf4\x9c\x50\x9e\xf9\x9c\x51\x1e\xf9\x8c\xf1\xf0\x30\x03\x0a\x46\x90\x23\xc6\x0d\x35\x97\xd4\xa2\x77\xc0\x78\xc9\x4f\x6e\x04\xbb\xb4\xa8\xef\xb1\xfe\x14\x76\xee\x73\x13\x0d\x4c\xad\x39\x81\x83\xd1\x88\x34\x37\x6f\x24\x48\x93\x23\xc7\x0d\xfe\x23\x7e\x73\x47\x6f\x9f\xf5\x45\xf4\x9f\xfc\xe2\x46\x3c\xbc\x3c\xa2\x81\xab\xd1\x88\x30\x32\x1d\x57\x83\xb0\x53\xf3\x86\xf0\x43\x5c\xa9\x79\x03\x03\x9e\x10\x09\x13\xc8\x19\x2d\x5f\xe9\x2f\x87\x0b\x70\x35\x92\xfc\xa5\x81\xab\xd1\x08\x02\x32\x6f\x64\x7d\xca\x94\xd4\x80\xa3\x11\x08\xb0\x30\xef\x8c\x08\x00\x5e\x1b\x6f\x20\xf5\x31\x1b\xe7\x04\xd4\x45\x13\xf1\x03\xeb\xa2\x89\xb8\x6f\xe8\xfc\x15\xa1\x70\x9f\x6b\x62\x22\x06\xfc\xbc\x6b\xc2\xfb\x9c\x7c\x30\x43\xc2\x20\xcc\xbb\x9d\xc9\xfe\x21\x1e\xa0\x5b\x10\x32\x7e\x02\xb9\x33\x35\x11\x43\xc3\xe4\x88\x98\xda\x83\x67\xb6\x8f\xc4\x85\x4c\xec\x38\x6f\xc4\xc4\x36\xde\x04\x6e\x67\x66\x4d\xcf\x18\x0f\x25\x99\x1b\x0e\x04\x59\xc4\x81\x9b\x5b\x16\x31\x40\x6d\x45\xc0\xfa\x79\x23\xfa\x4d\x1e\xe5\x0e\x5a\x29\x03\x3b\xe0\x25\x83\x0c\xd4\x37\xdc\x9b\x89\x5e\x3f\x6f\xc4\x83\xc8\x80\x7a\x23\x84\xad\x89\x58\x61\x90\x93\x81\x1a\x30\x11\x49\x3a\xf8\x1b\x9b\x57\x06\xef\xfb\x39\xe3\x91\xcd\x0d\x48\x94\x49\x21\x1e\x00\xa2\x6c\xb2\xa1\x3d\xc8\x9d\x20\x83\xf8\x03\x83\x3d\xa1\x00\xe6\x13\x06\x82\x3a\x3a\x9f\x51\xbf\xea\x83\x9a\x47\x3a\x78\xe0\x49\x36\xd9\x64\x1e\xd8\xbc\xa4\x83\x7f\xe0\x24\xad\x28\x11\x20\x30\x04\x8d\xdf\x21\x16\x1a\x25\xdf\x07\xf4\xca\xe4\x85\x13\xc0\x91\x4d\x81\xbd\x0f\x0c\xea\x84\x07\x98\x4f\x41\x8c\x0a\x37\xe7\x83\xa4\x04\x32\x30\x3f\xf0\x6d\x69\x45\xe5\x18\x1f\x0f\x47\xa0\x4c\x26\xe9\xfc\x1f\x80\x55\x49\xe7\xff\x20\x26\x4b\x3a\xfd\x07\xae\xc7\x44\x68\x9f\xc0\x6d\x0c\x04\x1c\x98\x8f\x1f\x56\x94\x1c\x1f\x18\x88\x65\xb0\x7e\x60\x00\x96\x01\xf9\x81\x01\x98\x08\xe7\xf3\xd9\x67\xbe\x99\xf5\x64\x3e\x30\xe8\x6a\x7d\x1f\x84\x1b\xe9\x30\x7d\x60\xd0\xfd\x59\xdf\x1b\xcc\x89\xcc\xf6\x81\x1a\x52\x9e\xfe\x0f\x6e\xb2\x74\xed\x5f\x80\x2c\x48\x8c\x2d\x59\x80\x0d\x08\xb4\xa9\x2e\x87\x0d\x60\x70\xc9\x02\x10\x40\xa0\x0d\x75\x5d\xc5\xdb\x4f\x7c\xc6\xfa\x25\xd6\xef\xf3\xff\xed\xbf\x85\x78\xfb\x40\x24\x81\xe5\x01\xf5\x04\x1c\x5f\x08\xa8\x0f\xcc\xb6\xb8\xae\x3a\x10\x8d\xc2\xfa\xe1\x00\xc1\xe8\x95\x75\x55\x84\x97\x44\xb6\x07\x1b\x22\x6d\xae\x0b\x21\xf5\x89\xe1\x2c\xeb\xf2\xf5\xca\x7a\x06\xfd\x75\xd6\x8f\x04\xa4\x8c\x65\x5c\xd7\xb9\xd9\x34\xa6\xba\x5e\x88\x82\x0f\xb4\xc1\x2e\x8f\x82\x27\x72\xf9\xba\x00\xb7\x4b\x9b\xeb\xba\x86\xf7\x57\xcf\x37\x9e\xfb\xf7\x7c\x84\x8b\xd6\x35\xff\xf3\xc6\x33\xeb\x87\x26\x86\x80\xdb\xeb\x82\x70\x41\xb5\xf7\xba\x00\x3b\xc8\x38\x91\x75\xc1\xc6\x46\x9b\xd8\xba\x36\xde\xef\x7f\x49\xdf\xb2\x10\x08\x9f\x9a\xb1\x73\x30\x98\x15\x75\xee\xf6\xc6\x38\x19\x60\x56\x45\x9d\x7d\x2a\xa2\x71\x38\x19\x47\x72\x08\x45\x8b\x0f\x67\x53\x46\xad\xac\x0b\x59\x1e\x8b\x16\xff\x19\xf8\x9e\xed\x01\xd6\x86\x61\x2c\xeb\x3a\xcc\x2e\x14\x2d\x3e\x98\x1d\xe1\xb8\x57\x80\x0e\x9c\x36\x92\x15\x60\x70\x2b\xdf\xcd\x61\x05\x48\x1a\xe5\x93\x14\x56\x80\xc1\x8c\x49\x26\x57\xc0\xc9\x4e\xf0\xee\x85\x58\xfa\xc4\xb8\x98\x15\xa2\x21\x5c\x88\xed\xc5\x81\x72\xd6\x1f\x27\xca\xf5\xfd\x8d\x67\x7e\x9f\x00\x83\x76\xb1\xfd\x54\x50\xce\xf6\x53\xfd\xf7\x5f\xa8\x1a\x4f\x6a\x28\xef\x7c\x5e\x28\x67\x7b\x19\xf3\xf5\x31\xdf\x15\xe0\xc0\xcd\x50\x9b\x15\xb0\x39\xa9\xc3\x5e\x08\xcf\x4f\x8c\xbd\x59\x08\xcf\x6f\xd4\xa9\xaf\x80\xc3\x9f\xde\x97\x2b\x40\x87\xcc\x60\x9c\x85\xf0\xfd\x40\x9d\xf2\x0a\xb8\x19\x31\x3a\x67\x21\x9e\x3f\x50\xa7\xbc\x42\x45\x7d\x95\xe3\xc1\xe1\x4f\x1d\xf7\x0a\xcd\x21\xe7\xd8\x3e\x6e\x3e\x74\xe0\x58\x01\x0e\x00\xd4\x09\xaf\xd0\xf1\x3d\xe9\x25\x20\x53\x3f\x53\xf8\x2d\x44\xdd\x37\xd3\x7a\x42\x27\x5c\xb5\x1e\x88\xba\xef\xea\x3f\xd2\x52\x51\x6d\xb9\x02\xd4\x1a\x66\x7a\xff\x41\x39\xeb\x3f\x37\x97\xc6\xe4\xa8\x2b\x0c\xcc\x6f\x66\x7f\xc0\x2c\xcc\xd8\xff\xe1\xe3\xd3\xf7\x88\x56\xe3\x66\x46\xdc\x7e\xa0\x1a\x72\x21\x70\x3f\x11\x0b\x7c\x21\x70\xbf\xd1\x01\x7f\x05\xa8\x8d\xa9\x16\x5c\x88\xd4\x0f\x54\xfb\xad\x30\x07\xa2\xbe\xf8\x3d\x6c\x66\x54\xfb\x2d\x84\xea\x07\xaa\xf9\x56\x58\x8e\xe9\xc7\xef\xa1\xe6\xa5\x9a\x6f\x05\x30\x97\xae\xf9\x5f\xde\x3e\xc7\x03\xe1\xa7\x8a\xfe\x5e\x8c\x40\xd6\xbf\xeb\xe9\x4f\x64\x7d\x50\xa3\x74\x3d\x43\x58\xaa\xa2\x3f\x08\x4b\x5d\xeb\x79\x7b\xfd\x1c\x2f\x6e\x3a\x44\x0c\x5f\x01\xfc\x89\x6a\xb6\x15\x9e\x88\x30\xb6\xaf\xbf\x11\x6a\x55\xe2\x05\xac\x08\x9b\x19\xa3\x98\x56\x04\xbf\x60\x06\xbe\x15\x2f\x04\xd5\xfd\x3c\x63\xfd\x3f\xb5\xd0\x42\x50\x7f\x67\xf2\xc5\x15\xa1\x26\xa5\x1a\x69\x21\xa8\x3f\x54\xd2\x37\x82\xfa\x3b\xbd\xd7\x16\xc2\xf2\x43\xfd\x0e\xe7\xe5\x81\xf5\x0c\x9b\x5a\x1e\x58\x4f\x1b\xf6\x8a\xd1\xc7\xcb\xfe\x44\xac\x2f\xf9\x69\x84\x9a\x95\x09\xf2\x56\x3c\x37\x8d\x4e\xef\xb0\x15\xa1\x66\xa5\xe6\x66\xc5\x08\xfe\xc0\xc3\x37\x46\x8c\x4f\xf5\x25\x0f\xcd\xe3\xfc\x24\x9f\x2f\xce\x27\xd4\xae\xc4\x11\x58\x1e\xc9\xdf\xd3\x9f\x0e\x97\x88\x78\x37\x46\x46\xad\x98\x41\x1c\xdc\x6c\x11\x92\x20\xe3\xdb\x56\x84\x24\x48\x14\x82\x15\xe1\xaf\xdf\x49\xfc\xb1\x78\x67\xd8\x39\x67\x56\xdc\x0c\xd1\x99\x15\x99\x01\x22\xfd\x03\xd5\x44\x2b\x02\xab\xa7\x8b\x58\xce\x4d\xa6\x13\x8d\x73\x45\x24\x9e\xa2\x9a\x68\x45\xa4\x8a\xa6\x1a\x67\x45\x67\x5e\x59\xe5\xe8\x8f\xc6\xd3\x0e\x31\x11\xad\x71\x45\x64\x1c\xa0\x1a\x66\x45\x04\xad\x11\xae\x71\xc5\x0e\x62\xe2\x66\x47\xf4\x7f\x22\x96\xf9\x42\xf4\x7f\x0f\x5a\x3c\x18\xc0\x18\xdf\xbf\x22\x22\x67\x89\x6c\xbe\x22\x98\x1f\x33\xec\xad\x08\xc9\x86\x92\xe5\x8a\xc0\xf1\x63\x48\xd6\x8a\x36\x10\x1b\xc9\xf6\x61\xf3\xa2\xa4\xb9\x80\x17\xd0\x89\x13\xb8\x22\x74\xc2\x54\xdb\xac\x38\xbc\x7e\x7e\x3f\x03\x82\x29\x39\x7e\xb8\x5a\x37\xcd\x2f\xbc\x93\x88\x6f\xbe\xe2\xac\x88\xae\xe4\x78\x60\xe3\x22\xa2\xc0\x8a\x13\xb1\x9b\x55\xdf\x1b\xca\x39\x1f\xf0\x66\xea\x3f\xed\x3d\x78\x9f\xdf\xc3\xbb\xa9\xab\x7e\xe8\x90\xbb\xea\xdb\x58\x7f\x6d\x26\xc7\x43\xd5\xf7\x87\xd9\xf5\xa0\xcd\xe4\xcc\x4e\xcc\x60\xa3\xfd\xca\xf1\x6c\xb4\x4f\xe1\x03\x40\x01\x81\x6a\x96\x05\xa4\x80\x1e\x44\xbf\x37\x0e\x67\x31\x1b\xdc\x0c\xbb\x98\xcb\x8d\xf5\x17\x3d\xdf\xde\x7f\x8e\xf7\x06\xbd\x19\xeb\x07\x33\x24\x0c\xdb\x8a\x48\x89\xdb\x44\x6f\x88\x04\xea\x62\x4e\x4f\xc1\xfb\xa4\x07\xa4\xba\x69\x62\x96\x0f\xda\x17\x7d\x3f\xa0\x17\x1e\x86\x00\x0f\x08\xd4\x04\xac\x04\xe6\xcb\x9b\xfd\x4a\x17\x02\x4e\x49\x7f\x09\x71\x75\xfd\xbb\x99\xac\x04\x1b\x55\xe7\xcd\x24\x41\x6d\x2c\xc9\x18\xf8\x02\x9d\x6a\xf1\x95\xe0\xa0\x40\xef\xb3\x95\x82\xd7\xc7\xf6\xc1\x6c\xe9\x7d\xb6\x52\x3c\xf4\x45\x07\x93\xe5\x88\x02\x92\xa4\x1d\x41\xa0\x73\x7d\x93\x0b\x6b\x64\x8e\x29\xa3\x7d\x32\xe3\x04\x6f\xcc\xde\xf5\x8c\x78\x5b\xee\xcf\x84\x9c\x7b\xbc\x09\xaf\x84\xf8\xa2\x4e\x7a\x48\xf0\xb6\xec\x5c\xff\x04\x1b\x54\xe7\xfa\xa6\xe2\xef\xb3\x3f\xce\xaf\xc8\x8f\x1c\x05\xa0\x73\xbd\x81\x02\xd0\x69\x93\x5e\x80\x01\x08\x4c\x72\xb6\x12\xd0\x46\x3a\xe9\x21\x81\x9f\xb5\xc2\xf6\x5a\xc0\xf7\x6c\x0f\x59\x78\x78\x33\x5f\xa9\x61\xfd\xb4\x3e\xf0\xc6\xa4\x83\xcc\x02\x50\x40\xe0\xcd\x79\xa5\x9e\xf0\x3e\xfb\x0b\x1b\x16\xa1\xba\x17\x80\x02\x12\xe3\x05\x57\x72\x7e\x46\xfa\x47\x68\x7f\x38\x37\xe9\x3f\x1c\x2e\xc9\x25\x3b\x12\x63\x32\x2c\xb6\x06\x7b\x98\x55\xea\xbc\xd9\x24\xe8\xa0\x99\xbe\x6c\x25\x78\x43\x31\xda\x70\x25\xe8\xa0\x19\x6e\xbf\xd2\x61\x5e\x9d\x40\x1a\x2b\x4d\x2c\x6e\x63\xfd\x13\x9d\xe7\xc9\xee\xd1\xfc\x0c\x31\x5c\x09\x06\xae\x26\x62\x47\xf8\x3e\x0d\x90\xcb\x43\xe8\x93\x88\x67\x7b\x7d\x9c\x0c\x30\x0b\x1a\xf8\x56\xba\x31\xd9\x3c\xe9\xd3\x3d\x10\x01\xcd\xf1\xe3\xa6\x66\x81\xfd\xb9\x11\x70\xad\xcd\x02\x83\xb7\xae\xbd\x09\x3a\x60\x0b\x7a\xc6\x62\x89\x38\x1f\xaf\x8f\xf5\xc3\xa0\xad\x6b\x6d\xbe\x2a\x62\xa4\x23\x9f\x1b\xde\x57\xb9\xd7\xd7\xf9\x6c\x28\xd7\x33\xfa\x4f\xe2\xc9\x17\x0e\x1f\x12\x7b\xc6\xcd\x8d\x40\x0f\x2b\x07\xef\xaf\xca\xcf\xe6\x31\x32\xd7\x0c\x1d\xae\x51\x6d\x80\x58\xfd\xc0\xa4\x5c\x2b\xc3\xc6\xc4\x04\x5b\x2b\xc3\x9b\x88\x51\x99\x2b\x27\x6f\x8f\xdf\x27\xaf\xaf\xf0\xd9\xeb\xd3\xfb\x37\xe2\xb6\xd9\x3e\x5c\x25\x8d\x92\x73\xce\x5e\x1f\xe7\x03\xae\x92\x16\xf5\x8c\xf9\x21\x7d\x7a\x70\x3f\xe3\x28\x57\x06\xf3\x60\xe0\xe4\xf2\xe8\xfd\xac\xf9\xc3\x4d\x4c\x37\xcd\x5c\x10\x47\xae\xf9\x41\x9e\x2e\xdd\xdc\x33\x6c\x50\xba\x39\x23\x40\x3f\x19\xe9\x2f\x7b\x16\x14\x1e\xfe\xb9\x9d\xf5\x65\xf0\xe4\xca\xb0\x39\x31\xd6\x72\xe5\x86\x58\x72\xd2\x67\xf6\x04\x4c\x97\xca\x6f\xbc\xaf\xef\xcf\xe1\x48\x1d\xfd\x42\x04\x7f\xd0\xcd\xd5\x43\xf8\x75\xf3\xcd\x1d\xeb\xcb\x9b\x58\xf6\xfc\x29\xdc\x8f\x19\xae\xd8\x8c\xaf\x5c\xd9\x22\x22\xe1\x39\x1e\xe0\x86\x98\xda\x03\x73\xd1\xcd\x36\x83\x7f\x10\x8e\x7a\x65\x4f\xb6\xc2\x9b\x14\x82\xfc\x13\x03\x34\x57\xf6\x7c\xfb\x14\x66\x10\xb7\x1f\x98\xa2\x6a\xe5\xe1\xef\xb3\x7f\x03\xf4\xc1\xfd\x9f\x3d\x23\x69\xd0\x33\xd6\x9b\xc2\x58\x9e\x5e\x1f\xfb\xb3\xb0\xde\xa2\x5f\xdc\xcc\x8c\xcc\x3b\x2f\xac\xb7\xe8\x19\x71\x27\x46\xe6\xed\xd1\xfa\xc4\x9c\x5e\xd9\x73\x2d\x51\x78\x42\xb4\x7e\xa2\xf7\xdc\xca\x08\xcb\xa4\xb7\xdc\xca\x47\x18\xe9\x45\xf3\x85\x9b\x18\xbd\xe1\x16\xe2\xf9\x7b\xd1\x7c\x79\xe2\x3c\xde\xb4\xb3\x67\x4c\x12\x3d\x3e\xfe\x3d\xfb\x0f\x7e\xa3\x9b\x2f\x42\xf8\x3b\xd5\xa6\x2b\x3f\xc8\xdb\xf3\xf3\x8c\x6c\x41\x9f\x59\x62\x95\x2b\xe2\xfd\xca\x67\xa4\x4a\xe2\x7e\x2d\xe7\xa6\xd7\x19\x47\xb3\xca\xe5\xe3\xfd\xd3\xe1\x52\x3c\xab\xf8\x4f\xe5\x98\x5c\x1e\x1e\xc5\x93\x35\xaa\x72\x18\xb8\x75\xcd\x2d\xc1\xbf\xd7\xfb\xf8\x9e\x87\x4b\x09\x87\x38\xa4\x53\x2c\xd0\xb1\x1b\x0f\x97\x02\xdc\x11\xe9\x14\x0b\xae\x8d\xc6\xc3\xa6\xe0\x5a\xc8\x38\x84\xe5\xb0\x00\x44\xfc\x5e\xc5\x93\x0e\x93\x39\x94\xe4\xdf\xeb\x19\xdf\x57\xbd\x8f\xfe\x54\x95\x63\xb2\xa9\xe6\x28\x70\x8d\x64\x38\xe9\x2a\x90\x84\x18\x4f\xba\x0a\xd4\x4c\xc6\xc3\xab\x94\x8a\x67\xce\x07\x74\xbe\x0c\x30\x5d\xa5\x7a\xca\x71\x8e\x07\x01\xa7\x74\x3d\x5c\xc5\x99\x95\xfa\xd7\xb0\xd8\x2a\x3f\x92\x48\x97\x5a\xaf\x38\xb3\xa1\xa4\x55\xc0\x6c\xa4\xe6\x2b\xce\x6c\x34\xbf\xb0\x19\x99\xbe\xef\x9e\xf3\x93\xf5\xf7\x37\xaf\x31\x9f\x31\x3f\xbc\xc9\x15\xc3\x78\x55\xff\x61\x36\x9d\xae\xc5\x0b\x58\x05\xc9\x78\xf8\x15\x4f\xed\x44\xc9\xa8\x40\x58\x21\x8e\xdb\x02\x98\x41\x62\x10\xec\x2a\x6f\xe6\x27\xf6\x07\xae\xdd\xc6\xc3\xb0\x38\x33\xe2\x61\x0e\x78\x83\x44\x5c\x87\x55\xde\xb4\x85\x5c\xcf\x31\x80\x9e\xa1\xef\xc1\x4c\xc8\x3c\xca\xc4\x7a\xf1\xf0\x2b\xe7\x26\xd6\xa5\xd6\x2b\xd3\xdb\x67\x7d\x87\x19\xf5\xaa\xcd\x08\x35\x91\xf1\xf0\x28\x87\x19\xf5\xca\xc3\xb8\x80\xf9\x18\x99\x77\x81\x6b\xb5\xd4\x66\x40\x48\x08\x46\x66\x53\x8e\xb0\xd3\xe9\x6d\xb8\x00\x79\xd0\xa5\x96\x2b\x0e\x16\x22\xfa\x84\x8d\x4c\xc2\x45\x71\xe1\x46\xf3\x8b\x9b\x91\xd4\x6e\x05\x71\x6b\xc6\xc3\x11\x18\x09\x41\xc2\x45\xc1\xcd\x88\xde\x7f\x0b\x98\x09\xf9\xe2\x61\x5f\x2f\x64\x46\xe0\x4d\x1b\x98\x09\x99\x41\xc9\xab\x82\x7f\x48\x6d\x5c\x03\xe6\x9f\xcc\xb8\x9e\xfd\x9d\x2f\xce\x57\x8d\x98\x6f\x4a\xf2\x15\x41\xb1\x3a\xbc\x6a\x34\x94\x57\x3e\x0f\x7c\xff\xad\x47\x4d\x40\x47\x21\x73\xad\x29\xa2\x9c\xf5\xa5\x8a\xf2\xce\xe7\x43\xdf\x52\x03\xd7\x04\x04\x13\xf2\xb7\x9a\x0c\xe5\xaa\xdf\xdb\x63\xfb\xc8\x07\xc7\x28\xfd\x55\x13\xf0\x56\xc8\xdf\x6a\xc2\xfa\x70\xbf\x55\xd8\x00\x75\x38\xd5\xdc\x50\x1f\xdb\x83\x30\xa4\xc3\xaa\xc2\x46\xad\xc3\xa9\x66\xd4\x47\xfe\x51\x0b\xd6\x93\xfb\xa3\x42\xf3\xa3\xc3\xa9\x16\xac\x07\xe9\xbd\x42\x13\x24\xfe\x5d\xeb\xd9\xcf\x74\x70\x59\x15\x71\x65\xe2\x5f\xb5\x21\x6b\x07\x0f\xeb\x0a\xfe\x21\x7e\x56\x8f\xb0\xd2\x9b\xfa\xdf\x31\xdf\xe1\x2f\x90\x2e\xab\xf6\x43\x0c\x52\x63\x54\xf3\x8f\xf5\x7c\x98\x89\xd4\x06\x15\x6a\x1c\x31\xab\x6a\x13\xef\xeb\x19\x9d\x27\x33\xaa\x47\x72\xc9\x8c\x30\x5f\xc0\x8a\xe8\xba\xd6\x03\x2b\x22\x88\x99\x54\x00\x14\x35\x11\x2b\x98\x87\x98\x49\x3d\x92\x4e\x66\x84\xfa\xaa\xf0\x9e\x11\x33\xa8\xf3\x6c\x4e\x1a\xbc\x17\xf0\x20\x32\x5d\xa9\x57\x05\x08\x91\xae\xe5\x15\x89\x22\x7f\x88\x7f\xd5\xf3\xbe\xc6\x8b\x5c\xa7\x3f\xc4\x0d\xd4\x22\x06\x8d\xad\x8a\x34\x37\x17\x25\x83\xba\x2f\xbc\xcf\xf2\x8d\xc5\xa1\x64\x05\xfc\x89\x48\x3f\xf2\x05\x00\x8a\x7c\x51\xf2\xaf\x1b\x10\x3b\x22\xbe\x73\x73\x8a\x3f\xf3\x7b\x83\x18\x78\xd8\x03\xb0\x22\xfe\xcc\x2f\xd4\x22\x32\xa8\xd6\x73\x73\x8a\x3f\xe3\x41\x6a\x06\xe9\xc4\x2b\x72\xa8\xaa\xff\x0d\x68\x44\x0c\xea\x5a\xed\x42\x4e\x18\x0a\x0f\x0d\xd9\xa5\xd5\xdf\x76\x61\xfd\xa9\xd6\x01\xc6\x45\xbc\x28\xf9\x00\xe4\x42\x49\x8f\x57\x43\xc6\xac\x8b\xeb\xdf\x42\xc2\x73\xe4\x33\xe8\x83\xf4\xd0\x90\x45\xfa\xa2\x4e\xba\x45\x6c\x56\x32\xe3\x16\xd1\x1f\x0a\x17\x40\xbd\x50\x9e\xd9\x05\xd4\x8b\x48\xd7\xf5\xd5\x1c\x93\xe8\xd2\x33\xd6\x9f\x92\x7e\x4b\x58\xff\xa4\xef\xb1\xfe\x64\xf6\x0d\xcc\x44\x92\x79\x43\x52\x40\x22\x06\xac\x96\xf1\x3e\xe9\xab\xe5\x81\x67\xb6\x97\x27\xbe\x67\xff\x01\x6a\x24\x49\xb5\x39\xb3\xe0\xe1\xd0\x90\xf9\xef\x22\xf3\x69\x05\xeb\x4f\xfa\x6e\x48\x53\xc9\x94\x89\xab\x55\xf4\x5f\xfd\x39\xc2\x8c\x52\xa7\xae\x56\x07\x9e\xd9\x1f\xe4\xad\x66\xc4\xfb\x6a\x10\x56\xa4\x26\x07\x20\x46\xbe\x78\x33\x69\x60\x36\x5d\xf3\xe1\xcc\x86\x37\x93\xd6\xbd\x7d\xb6\xd7\x41\x1f\x1a\x7f\xf7\xfe\xb3\x7e\xdc\x94\x24\xdc\x35\x03\x3d\x50\xad\xdd\x90\x1e\x90\xae\xe4\xab\x1d\xe1\x45\x39\x48\x57\x33\xcf\x12\xa4\xef\x31\xdf\xa2\x9f\xe1\xf5\xb3\xfd\x01\xfa\xa1\x9a\xba\x81\xdf\x74\xf5\x67\x62\x3e\x79\x18\x03\xb1\x43\x09\x3b\x57\x3b\xfc\x26\x32\xc8\x79\xb5\x79\xa3\x9c\xef\x2f\xcc\x07\x6f\x46\x0d\x79\x67\x03\xf7\x7b\x83\x30\x22\x35\x6b\x5b\x37\xca\xf5\x3d\xe6\x87\x87\x13\x10\x39\x62\x10\xbd\x1d\x7e\x11\x65\x26\x68\xdb\xc7\xcf\xef\x37\xd6\x97\xfb\xbf\x6d\xcc\xbf\xe8\x67\x2f\x94\x73\x3e\x91\xb1\x36\xf0\xe6\xd8\x6e\x8c\x8f\x87\x4d\xbb\xbd\x3d\xae\xff\xed\xf5\xfd\x25\x1b\xf0\x6a\x60\x5e\x41\xc4\x8e\xac\x32\x84\x87\x58\xed\x48\x36\x31\x88\xf8\x9f\xb3\xf9\xbb\xe9\x7d\x2c\x16\x25\xef\x06\xa0\xb5\x6e\x7a\x1f\x83\xe7\x4d\x01\xf0\x21\x5d\x92\x1f\xe0\x43\x22\xd3\x82\x2d\xc0\x87\x74\x39\x08\x00\x3e\x24\xcb\xa0\xd6\xa1\xe3\x95\xe4\xd7\x83\xd7\x5f\xf9\x7c\x26\x57\x6a\xad\x1e\x7c\x32\xbe\xc5\xec\xc8\x4f\xca\x08\xe5\xd5\x23\x88\x99\x92\x4e\x07\x33\x93\x0d\xa5\x03\x4f\x4d\x6a\x9f\x8e\xdc\xb7\xcc\x32\xb5\x00\x3f\x92\xb5\x39\x3b\x12\xe6\x33\xcd\xd4\xea\x2e\x59\x51\xd2\xe9\xce\xbc\x28\xe9\xf4\xc3\xbc\xba\xd4\x38\x80\x2b\x89\xc4\xb7\x5a\x80\x23\xc9\x8c\x23\x59\x80\x23\x89\x8c\x78\x5e\x80\x23\xc9\x4c\x1c\xba\x7a\x8e\x28\x67\x7f\x33\xc6\xd7\xf4\x8c\xf5\x22\xf1\xf5\x8c\xf9\x22\x33\xed\x19\xcc\x9f\xc4\x07\xf8\x92\x4c\xb8\x8a\x05\xf8\x92\x2e\x35\x0b\xe0\x4b\x32\xe1\x2a\x16\xe0\x4b\x22\x73\x3f\x2d\xc0\x97\x64\x19\x24\x7b\xc1\x61\xda\x55\x8e\xc3\x8e\x92\x5a\x3f\xcc\xb1\x4b\xcd\xd1\x2b\xfa\xcb\x9b\x09\xe0\x4e\xba\x24\xd1\x5e\xb1\xfe\x3c\xbc\x00\x57\x12\x83\xca\x9b\x7f\xcf\xf1\x80\x99\x32\x6e\x62\xf5\x76\x24\x65\x13\x7d\x22\x73\x2a\x33\x3e\xad\xde\x31\x5e\xad\xdf\xb9\x09\x46\xe6\x74\x5a\xdd\x31\xe8\xb4\x9e\x48\xa5\x1a\x44\xaf\x16\x50\xce\xf9\x03\xb3\x0c\xa2\x57\xc3\xfc\xf0\x26\xd7\x0d\xf3\x41\xe6\xd8\x91\xc2\x37\x88\x7e\x0d\xf4\xa8\xf9\x30\xd0\xa3\xe8\x17\xb9\xb6\x88\x68\xb1\x3a\x52\xd6\x07\xd1\xe7\x11\xee\x62\xd0\x78\x06\xe8\x4f\xed\x0f\xcc\x8f\xc6\x33\x30\xbf\xbc\xf9\x75\xe4\x63\x0d\xa2\xc7\x89\xf5\x24\x3f\xe8\x13\xfb\x8d\xfb\xbf\x2f\xaf\x8f\xfd\x5f\x5e\xae\x67\xaf\x8f\xfd\xdf\x15\x30\x7d\xec\xdf\xb9\xf9\xc5\x20\xfa\x70\x61\xcc\xf4\xbe\xa1\x9c\xfd\x71\xe6\x28\x7a\x38\x37\x39\x93\xf0\x00\x04\x92\x1c\xc4\x7f\x00\x1f\x26\xe1\xa1\x3b\xbf\x13\xbd\x1c\xe1\x2c\x13\x4c\x6f\x01\x71\x24\x32\x8e\x64\x01\x51\x24\x13\xf1\x62\xd9\xd5\x4e\x7d\x59\xe5\x1d\xe5\x95\xcf\x37\x70\x07\x13\x9f\xb1\x7e\x9c\x3f\x0b\x17\xca\xd9\x5e\xc0\xfa\x71\x3e\x81\x38\x92\x03\x85\x23\x20\x8e\x44\xe6\x23\x5a\x40\x1c\xc9\x3a\xcc\x2c\x2c\x3c\xb3\x3f\xe7\x26\x68\xe2\x3f\x16\x31\x3e\x1e\x1e\x16\xb1\x1e\x9c\x5f\x8b\x1b\xe5\xec\x1f\x52\x7d\x07\xfb\x4b\x9c\xcb\xb2\x23\xb9\x65\x1d\x1e\x96\x30\x19\x94\x84\x2d\x63\xb1\x35\x99\x60\x1e\x32\x00\x5a\xc1\x60\x29\xa9\x1a\x52\x2e\x33\x43\xd1\xb2\x7a\x16\xf7\x67\x32\x6a\x42\x39\xdb\x03\x4c\xd9\xcf\x64\x20\xed\x5e\xa0\xa4\x65\x0d\xe9\xb0\x35\x39\x60\x1e\xcc\xdd\xb3\x00\x1f\x12\x99\xac\x67\x01\x3e\x24\x13\x3e\x63\x59\x3b\x8b\xf9\xfb\xfc\xa0\x9c\xed\x01\xaa\xec\xf7\x19\xd9\xff\x79\x38\x01\x2e\x24\x46\x4d\x6e\xf7\xef\xd9\x1f\x30\x93\xa8\xf9\x3b\xcc\x24\xcb\x21\xc0\x0c\xd9\xbb\x35\x9f\x47\x32\x33\x1d\x3e\x80\x1b\xc9\xcc\xef\xb8\xec\x48\x5e\xa6\xc3\xc3\x0c\xa9\xcd\xa3\xea\x5b\x28\x27\x31\x78\xfe\xf0\xa8\xef\x6f\xd4\xc7\xfe\x0f\xcc\x57\xd4\x33\xe6\x97\x37\x01\x1b\x58\x6f\x1e\xb6\x86\x9b\xa1\x0e\x57\x9b\x67\xfd\x19\x54\xb6\x6c\x62\xbd\xb9\x59\x0d\xc0\x81\x0c\x22\x5b\x36\x41\xdc\x1a\xdf\xf2\xf6\x59\xdf\xb9\xe9\x19\x83\xc6\x16\xe0\x46\x62\xd4\xfc\x43\x72\x63\x52\xc7\x65\x48\x70\x1a\x28\xa9\x1a\x80\x37\x03\x0f\x2b\x83\x64\xa6\xc3\xd8\x36\xc6\xaf\xf9\xdb\x0f\x70\x3c\x59\xdf\x7d\x79\xf2\x74\x3e\x07\x94\xb3\xfe\x1b\x29\xed\x35\xbf\xc8\x17\xf8\x33\xdf\x37\xe8\x89\x37\x73\x83\x70\xc5\xc4\x8e\x0b\x70\x23\x31\x8a\x79\x3c\x3e\x9e\x8f\x3e\x06\x98\x13\x23\xb4\xd7\xb8\xce\x7a\x6b\xbf\x00\x0e\x24\x32\x62\x7a\x01\x0e\x24\xcb\xa1\x03\x70\x20\x91\x11\xd3\x6b\x1c\x66\x62\xa2\xd7\x11\x90\x52\x93\x92\xf8\x38\xc2\x95\xc5\xa0\xfa\xb1\xbe\x64\x7e\x23\x7a\x7b\xfc\x3e\xa2\x3d\x0a\x07\x23\x9e\xf5\x17\x7d\x0d\xdc\x1c\x99\x0a\x72\x8d\x08\x2c\xd0\xa8\xef\x91\xac\x9f\xf4\x30\x9c\x39\x51\x58\x18\x09\xe3\xe7\x61\x3e\x90\x90\x54\xc2\xc0\x28\x5e\xce\xf1\x42\x78\x91\x30\x30\x9c\xff\xf0\x30\x1d\x05\xeb\x5f\xf4\xfe\x59\x9f\x9f\xf1\x54\xef\x2f\xdf\xaf\x98\x3f\xd2\xdf\x80\x70\x22\x07\x17\x20\x8a\x64\x39\xb0\x8c\x8a\xf5\xd3\x7c\x3b\x3f\xa2\x70\x06\x04\x11\x93\x81\x7c\x34\xec\x47\x0a\x67\xa3\x83\x1f\x54\x3d\xa3\xff\x3c\x6c\x47\xc7\x7c\x6b\xbc\xc8\xfb\x2e\x61\x61\x18\xe6\x9f\x87\xcb\x30\x8c\x87\xc2\xe4\x30\x1f\x8f\xde\xc7\x78\x34\x3e\x64\xf2\xd4\xe1\x3e\x7c\xbf\xeb\xfd\x79\xf8\x33\xf3\x82\x2f\x20\x7e\x64\xed\x07\x20\x7e\x18\x13\x86\xad\x31\xd1\xdf\xfe\x97\x08\xfd\x05\x78\x8f\x4c\xf4\xd5\x05\x78\x0f\x63\x4a\x84\x35\x16\x26\x53\x8d\x2d\x40\xc1\x92\xf9\x0f\xa8\x91\x98\x55\x70\x8d\x73\xcd\x33\x46\xe8\xae\x71\x98\x45\x64\x04\xf6\x1a\x1b\xd8\xb1\x64\x6e\x80\xfb\xc8\x92\x34\xc6\xc6\xe6\xa4\xa4\x34\x36\x16\x57\xdf\x3b\x73\xa0\xce\x7c\xdc\x67\x71\x93\x36\x13\xae\x6d\x92\x2c\xc6\xed\xf5\xb1\x7f\x48\x07\x2a\xef\x1d\xc0\x83\x44\x46\x60\xaf\xf1\x60\xf2\x28\xf9\x0d\xe8\xa0\xe5\xad\x33\xa1\x16\xd2\x62\x03\xde\x23\x32\x3d\xcb\x02\xbc\x47\x96\x24\x32\x9d\x59\x50\x12\x98\x2e\x79\xfc\x7c\xef\xf5\x7d\xfd\x9d\x11\x8b\x4d\x1b\xc6\xc4\xe6\x66\x50\xd4\x9a\x67\x73\x47\x26\xb4\x5f\x13\x37\x27\x26\x37\x5c\xf3\xdc\x9c\x2c\xa9\xfe\x73\x73\x8a\x0c\x1a\x5c\x13\xe0\xa8\x49\xfd\xc5\xe6\x66\xf6\xc3\x35\xd3\x0d\xb4\x5d\xbd\xff\xa0\xfc\x9b\x3f\xc0\x75\x58\xa6\x70\x30\xcf\xcd\x29\xa6\x9f\xe7\x81\xf7\xf9\x7d\x9e\x80\xeb\x4d\x7c\x5e\x78\x9f\xe3\xc9\x5e\x3f\xbf\x07\x73\x61\xf2\x93\x05\xf8\x0d\x63\x10\xe3\x9a\xe7\xe6\x94\x99\xe3\x70\xcd\x32\x80\xf7\xcb\xf9\x38\xcc\x26\x26\xb5\xe7\xe8\xc1\x51\xcf\x1b\xe5\x1c\xcf\x11\x6e\xa2\x36\xd7\x84\x70\xc3\x24\x89\x6b\x22\x79\xa8\x84\x9b\xd9\xce\x7a\x64\x1e\x76\x13\x37\xa3\xa8\xfa\xba\xf7\x9f\xdf\x83\xb9\x48\x38\x99\x48\x2f\x2a\x61\x64\x1e\xe1\xc3\x08\xe3\xbb\xe6\x11\x3e\x22\x13\xa4\xac\x69\x98\x2f\x0a\x17\x13\x6a\xe6\xa8\xf1\x0c\x4f\xb8\xcc\xf6\x07\xd6\x8f\xcc\x64\x0e\xcc\x2f\x85\xa1\x39\xb1\x7e\x64\x2e\x73\xa2\x7f\x14\x86\x80\x70\x11\x99\x61\x65\x01\xe1\x22\x13\xae\x66\x4d\xa8\x99\x09\x57\xb3\x26\xf2\x0a\x33\xa8\x78\xcd\x85\xf5\x10\x7d\xe1\xa6\x42\x78\x99\x05\x04\x0b\xcb\xda\x0f\x0b\xeb\xa1\xf5\xc3\xcd\x84\x89\xf0\x16\x10\x25\x22\x11\x05\xd6\xbc\xb1\x3e\x14\x0e\xe6\x5d\x01\x9a\xcc\xfa\x21\x1c\x88\x3f\xcd\x1b\xc8\xc5\x41\xf5\x19\xca\xf5\x0c\x7a\xd5\x7a\x42\x73\x23\xe1\x62\x62\xff\x47\x0a\x0f\x40\x88\x30\xc5\xd5\x00\x21\x22\x13\x7e\x66\x01\x21\xc2\x14\x57\x03\xc4\x87\xc8\x3c\x2b\x6b\x85\x1b\x40\xcb\x89\xcf\x0f\xca\x59\x5f\x04\x2e\x33\x0f\x53\x20\x3a\xc4\x44\xe1\x09\x88\x0e\x46\x2c\xba\x05\x44\x87\x48\x34\xe3\x05\x44\x87\x1c\x79\xf8\x2f\x1c\xe6\x72\x58\x5a\x09\xeb\xcd\xc3\x7e\xa5\x81\xfa\xbe\xf9\x00\xc2\x43\x96\x70\xb4\xf2\xe1\x17\xc4\x42\x5b\x2b\x83\x3e\xca\x9f\x6c\x2e\x2b\x63\xf1\x35\x18\xdf\xfc\x54\x0b\xac\x82\xc5\xe3\xb5\x73\x61\x33\x13\x9b\x6b\xad\xe2\xdf\xeb\xfd\x1b\xcf\x9c\xdc\x02\x40\x6d\x1e\x0e\x80\x8b\x88\xcc\x33\xb2\x00\x17\x91\x99\xbf\x6f\x2d\xdf\xec\x94\x3c\xd6\xd9\xec\xc6\xa0\xb6\xb5\x6a\x45\x39\xdb\x3f\x92\x89\x11\xbb\x6b\x2d\x48\x26\x4c\x2d\xb2\x00\x3f\x11\x99\x5a\x64\xad\xe6\xed\x91\x18\x1a\x88\xc5\xf4\x0c\x62\xe1\x66\x5f\x0d\xc4\x62\x7a\x2e\xa8\x8f\xe3\x41\xca\x71\x49\x9a\xab\x1d\x66\x4a\xac\xab\xb5\x1a\x36\xa3\xc6\x8b\x9b\x8d\x24\xab\xe5\xcc\x83\x6a\x8b\x65\x20\x0e\x8d\x6f\xa0\xff\x5a\x5c\xe8\x8c\x25\xf9\xad\x31\x00\xbc\xcd\xfa\x07\xe6\x5f\xe3\x9d\x20\x16\xf5\x77\x02\x79\x5b\x9b\xc5\x99\x09\x99\xcd\x82\x5a\x43\x92\xe3\x9a\xe8\x1f\x25\x33\xc0\x51\x64\x49\x8e\xeb\x08\x17\x56\xb5\xde\xb0\x51\x25\xd1\xcb\xc2\xe6\xd4\xf8\xa0\x43\x66\x86\x91\xb5\x36\xe6\x43\xe3\x83\x4d\x2a\x89\x5e\x6e\x30\x2f\x4a\x6a\xeb\xc6\x61\xc6\x9b\xc3\xba\x23\x90\xc4\x55\x8e\xfe\x51\x72\x03\x82\x44\x4c\xa2\x0f\x08\x17\x92\x3c\x17\x6c\x56\x4c\x4a\xb2\x96\x33\x17\x4a\x9e\xeb\x39\xcc\x40\xae\xee\x0b\x37\x11\x49\xaa\xfb\xdc\x44\x4c\xae\xee\xfb\x42\xff\xf8\x3e\x10\x24\x22\x73\x87\x2c\x20\x44\x64\xc2\xf1\xac\xed\xcc\x87\xc2\xc0\x3e\x37\x0f\x93\x6b\xf8\x0e\x38\x2c\x49\x7f\x3b\x00\xaf\x9c\x37\x95\x1d\x0e\x73\x96\xb7\xdd\x86\x0d\x8a\x41\xd0\x6b\x43\xed\x21\xe1\x10\x88\x12\x51\xc2\xc3\x76\xe1\x82\xeb\xb5\x61\x83\x92\xf0\xb0\xd3\x59\x5f\x46\x6c\xaf\x9d\x40\x7f\xdc\xff\x3b\x01\x4e\x9d\xcc\x73\x27\xc3\xf7\xdf\xfa\x00\xa1\x22\x66\x1e\xd6\x3b\x7b\x7b\xec\x5f\xf1\xfe\xb0\xfe\x82\xf5\xe1\xfa\x6e\xf0\x0b\xa2\x98\xaf\x5d\xb1\xbe\x14\xbe\x80\x30\x11\xb3\xe6\xab\x9e\xf5\x92\xf7\xe9\x3e\x37\x8f\x98\x79\xf8\xef\x06\x7a\x22\x3f\xd9\x87\x1f\x44\x06\x81\x2f\x20\x46\x44\x09\x33\x40\x8c\xc8\x4c\x5c\xb8\xb6\xef\x67\xd2\xcb\x86\x4d\x4a\xc2\xf0\xee\xfe\x3d\xfb\xdf\xfd\x7b\xce\x57\xc7\xfa\xfe\x7c\x8f\xf5\xa1\xf0\xbb\x3b\xd6\xf7\xa7\x3e\xcc\x87\xe8\x07\x37\x15\x22\x34\x2c\x20\x4a\x64\x09\xbb\x1b\xfc\x84\x41\xeb\x6b\x8f\x0a\x00\x7b\xbe\x7f\xf8\x47\x64\xe6\xd8\xb5\x91\xff\x43\xde\x7b\x7b\x60\xfd\x78\x98\x03\x31\x22\x12\x91\x61\x6d\x17\x46\xec\x4f\x71\x2e\x80\x93\xc8\x92\xac\xf7\x8a\x80\xcb\xe7\xe4\x83\x99\x24\x5e\xdb\x37\xd4\x1c\x84\x77\x58\xfb\xdc\x64\x72\x12\x31\x83\x79\x64\x11\x1b\x98\x05\x23\xe8\xd7\xde\x67\xf1\x65\x40\x03\xfc\x43\x64\x86\x8e\x05\xf8\x87\x2c\xc9\x75\x83\x39\x30\x25\xc7\xda\x30\x68\x27\x4d\xc6\xe3\xed\xb1\xfd\x67\x00\xb0\x9f\x93\x01\x83\xb6\x5c\x41\xf7\xb3\x50\xae\x67\x6c\x4e\xaa\x79\x6e\xdc\x4c\x24\x99\xde\x60\x0e\x99\x92\xc3\x8d\x9b\x88\x5c\x41\x6f\xa8\x2d\x88\x1d\xb5\x00\xff\x60\xf2\x93\xbf\x71\x53\x91\x24\x7d\x23\xa5\x88\xfc\xe6\xef\x80\xc5\xa4\x64\x01\xf8\x86\x48\xb8\x85\x05\x78\x86\x2c\x49\x1b\xf0\x0c\x59\x92\xf6\x7d\x6e\x26\x26\x1b\xd6\x0d\x03\x36\xb3\xe9\xae\x1b\x69\x45\x64\xc3\xba\x9d\x79\x14\xbd\x8f\xf1\x15\x95\x6f\xd4\xcf\xfe\x1f\xe6\x90\x89\x5d\xb5\x6e\x30\x07\x49\xe6\x40\x64\x30\xb9\x2e\xdf\xb8\x89\x48\xf2\xbd\xcf\x4d\xc4\x64\xb3\xba\x61\xc3\x91\xa4\x7a\x3b\x73\xa1\x70\x71\xd7\xb3\x7e\x4c\x54\xb2\xee\xc3\x1c\xcc\xb4\x1e\x10\x16\x08\xf9\xbf\xee\xc3\x1c\x4c\xae\xb4\x40\x6c\xc8\xba\x79\xdf\xc8\xef\x20\x6f\xa4\xdb\x99\x07\x75\xce\x77\x3f\xeb\x25\x6f\xa0\xbb\x63\xf3\xf1\x70\xb9\xa1\xa6\x48\xea\x7f\xc7\x7a\xf1\x66\x70\x77\xf4\x8f\xc2\xc8\x0d\x9b\x0a\xd3\x4f\xac\x1b\x6a\x0c\x49\xca\xb7\x33\x07\x32\xfb\x7b\x60\xfd\xd4\x9f\xe1\xe5\x7c\x7f\x4c\x94\xb3\x7d\xdf\xec\x64\x76\x40\x7c\xc8\x92\x8c\xef\x89\xf5\xd0\xf7\x13\xeb\xc1\xfd\x73\x23\x1b\x90\xbc\xfb\xee\x05\xe6\x4a\x66\x77\xfb\xfe\x26\x73\xbb\x21\x1c\x10\x1e\x66\xdd\x0b\xf4\x47\x49\xfb\xf6\xfd\x4b\xe6\x77\x23\x0e\xe7\x92\xc7\xc6\x0d\x5f\xd8\x4b\x2e\x1b\x37\xac\x18\x4c\x5b\xb8\xee\xc7\x93\x62\xa8\x8b\xd8\x92\x45\x24\x7d\xce\xf7\xcc\x44\x86\xeb\xf6\xac\x10\x72\xe2\x78\x60\xb7\x65\x5a\x82\xf5\x5c\x98\x73\xee\xe9\x07\x7b\x9a\x69\x09\xd6\x13\x90\x46\x43\x5e\x07\x80\x91\xc8\xcc\x85\xb2\x9e\x30\xfd\x05\xfd\x71\xa8\xb4\x70\xd7\x3d\x01\xbb\x84\x54\x0a\x5c\x89\xa8\xfb\xd3\x03\x4b\x2e\xd3\x23\x2e\xe0\x4a\x44\xdd\x9f\x9e\x73\xdf\x08\x97\xfc\x30\x9e\x84\x2e\x92\x6c\x9f\x04\x36\x48\xb2\x7e\x12\xa6\x9d\x64\xfc\xf8\xb6\x24\xdb\x78\xb2\xcf\x32\xe9\xee\x29\x5e\x21\x7b\x54\x7d\x5d\xc8\xe8\x9f\x23\x95\x47\x41\x27\x3c\x70\x5b\xbd\xe4\xca\xf0\x54\xc3\x0b\xec\x42\xc5\x24\x51\x61\xfa\x54\x2c\x4b\xf9\x93\x69\xff\xf1\x4c\x0f\xb2\x75\x3d\x30\x6f\xe8\x06\x08\xe4\x8a\xa8\x1b\xdf\x03\x0d\x00\xd1\xec\xd7\x03\x0d\x00\x61\x84\xd6\xd3\xdf\x54\x28\xfa\x20\xe1\x03\x8e\xaf\x7b\x2e\x12\xcd\x79\x2f\x78\x81\xe3\x83\xc1\xa3\x68\x0d\x71\x8c\x13\x88\x68\x3d\x86\x29\x26\x67\x7c\x0c\x6b\x26\x8b\xc1\x83\x7b\x00\x61\xe0\xd6\x33\x3c\x1b\x8a\xc6\x00\x7b\x67\x11\x15\x60\x6f\x0b\xcd\xe1\x81\x3d\x93\x38\x71\x0b\x68\x1c\x59\x17\xaf\x07\x7b\x5d\xe8\x0e\xcf\x1c\x9e\xbe\x85\x3d\xc0\x4d\x40\x37\xa9\x07\x7e\xf8\x17\x31\xc3\xd7\x33\x31\x26\x5e\x35\x1e\xec\xee\x22\xb2\xf1\xd3\x9b\xa7\xe5\xb3\xbc\x87\x7a\xdf\x7b\xc4\x39\xdc\xd5\x13\xc0\xf0\x05\x28\x1e\x75\xf7\x79\xb6\x67\xa0\x21\xff\x7c\xe0\x70\x42\xb8\xa5\xf5\xdc\xde\x03\x2e\xd3\xed\x15\x70\x4e\x6e\xef\x01\x27\xf5\xf1\x75\xa6\xf4\xf5\x3c\x58\x67\x11\xc2\xf3\xe6\x9c\x61\x97\x60\x35\x95\x6e\xe0\x79\x40\xb7\x4d\xcf\xd8\xdc\x54\xf6\xed\x0b\x96\x0a\x02\xdd\xef\x0b\xca\x08\x26\x97\xdc\x97\xb3\x97\xef\x88\xda\x17\x44\x82\xf2\xdd\x4f\xf7\x75\x61\x92\xbf\x39\xd9\x57\x00\xe1\x34\xd6\x07\xb3\x29\x81\xf1\xf7\x05\x65\x25\x95\x0f\xfb\x0a\x3e\x45\xac\xdf\x99\xcd\x47\x06\xfb\x72\xe6\xf2\xdd\x47\xf7\x15\x41\x06\xd4\x1e\xed\x2b\x82\x61\x7e\x17\xd2\x7d\x39\x33\xa9\xec\x40\x02\x99\x74\xbe\x9f\xbc\x01\x36\x98\xb1\xaa\xb1\xb0\x47\xf0\x4a\xa3\xba\x62\x5f\x70\x71\xbd\xa8\x0f\xd9\x57\x06\x6f\x68\x7c\x86\xbe\x91\x58\xed\xfb\xf2\x53\xbe\xb3\x47\x30\x66\x10\xab\x7d\x5f\xce\x9d\x34\xc5\xd5\xbf\xe7\x14\x56\xff\x5e\xe5\xa0\x82\xa8\x1e\xe1\x8e\xc1\x3b\xea\xbe\xe0\x94\x7f\x45\xf5\x08\x1a\x48\x5e\x52\xf7\x05\x0d\x24\x2f\xa5\xfb\x6a\xde\x22\x17\xd1\x53\xcd\xf0\xd6\xb8\xaf\x23\x48\xc4\xf2\xf3\x9c\x3c\x17\x11\xbb\xe0\x1c\xec\xe7\xb9\xf8\x0b\xec\x42\xab\x68\x52\x4d\xdc\xfe\x82\xfa\x00\x06\xd2\xd9\x44\xf7\xf4\x48\xfa\x02\x36\xda\xa2\x69\xec\xde\x24\xa7\x05\x37\x99\xa2\x59\xc0\x4d\x86\x37\xe9\x7d\x75\x6c\x5f\x63\x8f\x9c\xa5\x19\x97\xc9\x40\x49\xd4\x3b\xef\x0b\x57\x15\x5e\x85\xf7\xe5\x09\xab\x98\xa2\x7b\x5f\x50\x9c\xf2\x2e\xbc\x2f\x67\x69\xea\xf1\xf0\x0a\xf8\x3e\x5c\x34\x8a\x86\x38\x41\x6a\xd4\x44\x6e\x20\xc8\x64\xc2\x0b\xee\x6b\xe2\xa0\xa0\x40\xb3\x2f\x67\x59\xaa\x71\x61\x3b\xff\xc9\xe8\xbf\x2f\x18\x59\xb3\xb6\xfa\x8e\x5e\x3b\xfb\xb3\x07\x5e\xe0\x0c\xed\xe9\x19\xa1\x38\xc5\xb0\x94\x10\x48\x7c\x5f\x9e\x92\x86\xf9\x82\xf7\x05\x86\x46\x24\xf1\x7d\x41\xb5\xca\xdb\xfd\xbe\xee\xdb\x73\x48\xf1\x8f\x23\x21\x65\x5e\xef\xb7\xc3\xce\x5c\x49\xfc\xe1\x39\x73\x4a\xac\xec\x0d\xdc\x99\x9c\xb5\x48\xf0\xc9\xe5\xfd\x7d\x87\xc3\xbf\x32\xef\xef\x3b\x5c\xbe\xaa\xdc\x8d\x01\x4e\xb7\xbc\x80\xef\xf0\xa6\xbd\xe2\x76\x0c\x87\x83\x45\x22\xa5\xec\x80\x4b\x0e\x43\x28\x76\x38\x1c\x2b\xe7\xc0\x0a\x03\xf2\x80\x69\x7f\x07\x08\x50\xb4\x4f\x6c\x40\xc7\x44\xc2\x69\x6f\x40\xc3\x64\x5e\xf1\x77\x00\x87\x62\x2e\x9d\x1d\x20\xee\xf0\x8a\xbf\x03\x72\x31\x5c\x3f\x15\x82\xc1\x10\x92\x7a\x03\x0b\x26\x67\xf5\x18\x0c\x86\x10\xd4\x3b\x94\xdb\x33\x73\xe9\x83\x07\x2f\xb0\x85\x8a\x49\xd3\x10\x0f\xc7\x89\x04\x57\xd9\x00\x83\x89\xc4\x84\xde\xa1\x36\xaf\x50\x2f\x60\x08\x89\xb3\x5e\x7d\x08\x7a\x5e\x28\x37\x3e\x83\x14\x03\x9f\xc1\x80\x18\x06\xb2\x43\xc3\xaa\x11\x0b\x6f\x07\x38\x78\xd0\x26\xb3\x03\x36\x3f\x51\x9a\x37\xe0\x64\x32\x6d\x32\x3b\x80\x19\x10\x6e\x65\x07\x6c\x7e\xaa\x11\x76\x80\x03\x06\xd5\x06\x3b\xe0\x66\x42\xb5\xc1\x0e\xe6\xc9\xcc\x2a\x7b\x08\x0b\x2b\xaf\xfa\x1b\x78\x30\x91\x78\x2c\x3b\x78\x36\x3a\xde\x55\x76\x98\xe7\x68\x26\x2e\xf1\x0e\x9e\xee\x8a\xf0\x74\x3b\xcc\x82\x17\xd8\x65\xe7\x06\x4c\x50\xb7\x01\x09\x13\x09\xa1\xb2\x03\xd2\x2c\x5c\xbc\xee\xec\x00\x5d\x27\x31\x54\x36\x30\x63\xf2\xcf\x32\xc3\xd0\x4a\x5d\xe7\x06\x86\x4c\xce\xa2\x8b\x05\xba\xe0\xe5\x62\x07\xe7\x10\xa2\x0b\x4f\x79\x45\x88\xb9\x1d\xa0\xfd\xfc\x59\x77\x78\xd4\x12\x0c\x79\x07\x98\x3e\x09\x86\xbc\x03\x4c\x9f\x59\xeb\xee\xbb\xb9\xe8\x79\x9e\x67\x9e\xfe\xc1\x77\x33\xe9\x20\x5e\xd5\x73\xb0\x35\xfe\xd1\xf0\x41\xe0\x33\x36\x23\xe9\x20\x5e\x86\xf2\x6f\x88\x80\x7d\x89\x84\x91\xd9\x80\x7d\xc9\xd4\x30\xec\x18\x30\x25\x9f\x8c\xb7\xa3\x6f\xee\xef\x32\xb4\x63\xc4\xb2\x4a\x7c\x88\xb8\xcc\xe4\x4f\x24\xdb\xd1\x13\x43\x49\x7e\x88\x11\xcb\x5a\xd9\x42\xf2\x1e\xb0\x3c\xa1\x02\x8a\x17\xd1\xb9\xc3\x77\x87\xdf\x00\x66\x09\x97\x0e\xe3\x98\xb0\xf9\x48\x89\x31\xf9\xaa\x75\xb5\x80\xdd\x4c\x0e\x17\xdf\xc4\x78\x3c\x09\x23\x0c\xaa\xd4\x39\x6f\xc0\xb3\x44\xa2\x12\x6f\xc0\xb3\x64\x02\x4d\xee\x98\xb1\x0a\x24\x5d\xc0\xb5\x64\x46\xe4\xee\x58\xb0\x3b\xeb\xf5\x17\x77\x80\x1d\x61\x71\x61\xd2\xd1\x1d\xa1\xe4\x20\x06\xf2\x8e\xd0\xa0\xd2\x5c\xb9\x23\x34\xa4\x95\x12\x23\xc0\x5c\x32\xf3\x22\xee\x08\xe1\x25\x8b\x04\x5a\xf5\xbc\x79\x7c\xa1\x81\x46\x28\x42\x46\xe7\x15\x94\x4d\x80\xc6\x92\xb3\x66\xdc\x79\x05\x45\x95\x68\xd1\x13\xed\xf1\x05\xf8\xd5\x8b\x17\xc4\x37\x33\x5e\xd2\x1f\x58\x73\xad\x08\x94\x9a\x55\x0b\x00\x41\x81\xb9\x4f\x77\x84\x91\x84\xf8\x37\x3b\x3a\x33\x21\xef\x88\xc3\xbf\x67\x07\x86\x7f\xcf\x1e\x0e\x90\x80\xf6\x59\x84\x49\x36\x8b\x04\x3c\xf7\x9e\x36\x1a\x10\x5d\x22\x11\x71\x76\xf4\xdb\x53\x15\x5d\xe3\xf6\x94\x45\x23\xce\x5b\x28\x1d\xc5\x85\x8d\x23\x9a\x59\x11\xe5\x1c\xa2\x67\xdb\xfb\x21\x53\x67\x36\x5a\xe6\xe5\x2d\xaa\x85\x85\xbd\x4f\x61\x27\x7a\xfe\xbd\x1f\xb2\x84\x1d\x97\x60\xc5\x3b\x1e\xe6\x13\x89\x9a\xb3\x81\xea\x12\x89\x92\xb3\x81\xea\x92\xb3\x08\x07\xcc\x89\xa8\x39\x3b\xc2\x0f\x84\xa8\x38\x1b\xa8\x2e\x39\x8b\x4e\x6e\x27\x24\x4a\x88\x80\x6d\xc9\x59\x3b\xf1\x7e\x33\x1c\xb2\x46\xe8\x67\x89\x50\xba\x81\xcb\x12\x09\x37\xbc\x81\xbb\x92\xb3\x28\xef\xf1\x1e\x7d\xef\x27\xe4\x06\xb8\x98\xb6\x6c\xa7\x73\xdb\x8a\xb4\x96\xec\x74\xbd\x39\x12\x03\xff\x28\x78\x21\xf1\x19\x9b\xa1\xab\xdc\xfc\x83\xcc\x3f\x20\x8c\x74\xd5\x38\xfd\x85\xc2\x3f\x1e\xff\xe3\x9b\xb6\x14\xde\x4e\x35\xfe\xe1\x89\x12\x79\x9a\xa7\x70\x38\x12\x51\x85\x77\x0a\xb7\x67\x62\x64\xa3\xce\x35\x89\xf3\xbb\x93\x73\x4d\x8a\x48\x00\x74\xc9\xb9\xeb\x83\xe6\x1f\xb0\x13\x30\xfb\x30\xd4\x6d\xa7\x04\xea\x21\xb8\xec\x4e\x70\xaf\xcf\xdc\x62\x29\xfb\x44\xb0\x02\xe7\x61\xdc\x52\xa9\x54\xcf\x06\xc9\x17\xe0\xc2\xaa\xc3\x34\x15\x4f\x27\x59\xf4\x05\x16\x97\xd4\x90\xe0\xe6\x41\xf8\xd8\x9d\x5c\x68\x22\x31\x24\x28\x69\x08\xf7\xba\x01\xa2\x92\x99\x7f\x75\x27\xb0\x21\x82\xde\xec\xd4\x6f\x94\xf3\x7d\x38\x9c\x53\x79\xb8\x81\x83\x12\x1b\xb9\x72\xb2\xe6\xf9\x23\xf5\x01\xe6\xa8\xe8\x19\x4c\x80\xd7\x11\x00\xa5\xc4\x46\xb6\x9d\xc6\xf0\x04\x93\x7a\x61\xe2\x05\xce\x29\x54\x2e\x74\xb4\xd8\x69\x60\xc4\x64\x22\x40\x52\xc9\x74\xb4\xd8\x69\x26\xcf\x48\xc9\x2e\xc2\x38\x4b\x44\xd6\x9d\xa6\x4f\xa1\x2a\xf0\x1e\x88\x50\xc0\x75\x08\x89\xbb\x81\xc5\x12\x09\x44\xb3\x13\xd2\xd6\x5d\x84\x59\xdb\x69\x35\x7c\xf0\x17\x3d\xdb\x4e\x30\xbf\x10\xd0\x75\x27\x48\x2f\xcc\x10\xbb\x93\x33\x10\xb2\xac\xb4\xbd\x72\xb6\xee\x0c\x84\x6c\x3b\x81\x61\x48\x1a\x02\xb2\x4b\x24\x92\xcc\x76\x64\x97\x8b\xb8\x5f\x3b\xdd\xd8\xce\x64\xcb\x09\xa0\x78\x57\xd7\x9a\xe2\x7e\xc4\x9c\xb4\x3b\x9d\xfb\x51\xa6\xf2\x76\xa7\xdb\x73\x82\x6a\x89\x60\xe1\x61\x88\xe2\x4e\xf0\x9a\xa7\x36\x77\x27\xe7\x40\xe4\x81\x09\xb0\x9b\x57\xd7\x1c\x3c\x0f\x5e\xf8\xc6\x9c\xaf\x37\x11\xa8\xfe\xc0\xa0\xc8\xb3\x32\x22\xa4\x99\xb6\x76\x67\xe7\x40\xe4\x38\x80\x8f\xc9\x84\x97\xd8\x80\x8f\x09\x17\x43\xf0\x77\x3e\x17\xac\x4c\x7c\x89\x0d\x3c\x98\xcc\x3c\xbb\x3b\x07\x27\x0a\x6e\xe5\x8c\xc8\xa0\x42\x16\x96\x83\x27\x3a\xe5\xde\xce\xb0\x21\x13\xb8\x75\x03\x21\x26\x53\x21\xbd\x81\xd8\x12\x9b\x2a\x04\xaf\xa0\x42\x7a\xe7\x8c\x49\x52\x7d\xe0\x1d\x54\x48\xef\x5c\xa2\x27\x0b\xe5\x10\x70\xc1\x62\xaa\xdb\x9d\x8b\x67\xef\xfc\xb4\xf4\x3b\x23\x98\x86\x98\x17\x1b\x18\x2e\x91\x18\x3b\x1b\x18\x2e\x99\xb9\x6d\x77\xae\xde\x43\x4e\x6a\xf5\x06\x58\x5f\xf5\x1e\x72\x52\xe1\x9f\x4a\xe8\xe1\x9d\x2b\x66\x80\xcc\x2b\xd7\xdb\xd3\x93\xb2\x03\x30\x23\xd3\x6c\xbb\x73\xf3\x7c\xa4\x94\xe9\x32\xfc\x4a\x98\xdd\x76\x67\x78\xd4\x13\x15\x67\x03\xc5\x25\x5c\xc6\xad\x98\x7b\xc4\x0b\x1c\x12\x92\x3c\x5d\x26\xc2\xe9\x87\x9b\x10\x21\x76\x67\x80\x42\x5d\x8c\xd0\xd9\xb9\x6f\xbc\xc0\x3e\xc1\x3a\x44\x20\x9b\x0d\x20\x97\x4c\x2d\xfd\xce\x86\x65\xe1\x95\x2b\x8f\xea\x39\x55\x39\x6b\xb0\xfd\x12\xe9\x66\x67\x98\x7f\xa8\x36\xdf\x40\x6a\xc9\x54\x9b\xef\xbc\xa2\x27\x59\xd5\x1f\x98\x76\x5e\x37\x32\x40\x36\xc3\x25\x62\x87\x4a\x98\x4a\xeb\x0d\xac\x96\x28\x16\x0c\xac\x96\x4c\x25\xf6\xce\xe0\x38\x44\x95\xdd\xc0\x6a\x89\x8c\xa8\xdd\x79\xfb\xf7\xec\xc0\xf6\xef\x39\x82\x7d\x7b\xda\x56\xbd\xf0\xe0\x03\x76\xe8\xf6\x3c\xad\x51\x7f\x60\x1d\x79\xea\x00\xcd\x25\x76\x6d\x47\x88\x28\x54\x62\xef\x0c\x13\x72\xd7\x6e\x84\x09\x99\x00\x26\x3b\x83\xc1\x74\xed\x4e\x88\x2c\x44\xc7\xd9\x40\x77\xc9\xba\x90\x39\xba\x4b\xb8\x7e\x2a\x00\x19\x50\x42\xc9\x8f\x67\x9e\xfd\xf9\x02\x64\xc0\xed\x0d\x7c\x97\xc8\xa8\xde\x0d\x7c\x97\x4c\xa5\xf8\x2e\x97\xf7\xa0\xf2\x19\xec\x81\x37\x30\x40\xbc\xc4\xce\xdd\x5b\x9c\xbf\x90\x09\x17\x20\x7b\x06\x46\x3a\xee\x12\xce\xfd\x80\x80\x35\xbb\x00\x8d\x2e\x30\x94\x71\x17\x98\xa1\x75\xac\x01\xc4\x25\xf6\xf8\xa7\xeb\x0e\x10\x5e\x32\x33\xd9\xee\xe2\xcc\x89\x1b\xaf\x44\x10\x25\xaf\xfd\x25\x39\x51\x92\x9b\x15\x5c\x10\xa5\x81\x2f\xc9\x89\x92\xec\xac\xc0\x6a\x4d\x5c\xed\x0d\x4c\x97\xc8\x30\xe5\x0d\x4c\x97\x2c\x15\x7d\x01\xbb\x63\xd8\xf2\x2e\xc0\x64\x08\x34\x3f\xed\x52\x3c\x99\x2e\xc9\xb2\x80\x7d\x11\x6c\x74\x03\xf5\x25\x4b\x49\x5f\xc0\xbe\x08\x2e\xba\x0b\x34\xd4\x52\xd2\x17\x68\xa8\x03\x23\x63\x77\x71\xfe\x56\xf5\x5c\xfd\x05\x76\x01\x0e\xfb\xd2\xda\x97\x3a\xfc\x05\xce\x4a\x05\x59\x65\x35\x01\x8e\xa8\x45\x05\x47\xec\x59\x2d\xe0\x24\xd5\x9a\xc2\xe6\x16\x82\xc8\x0c\x2a\x27\x62\x96\xee\xe2\x0c\x91\x17\x22\x20\xd5\x9c\x0f\xf4\x07\xe8\x90\x74\x5c\xba\x8f\x81\x5b\xb1\x74\xef\x73\x24\x65\x3a\x47\xa4\x00\x56\xba\x27\x3d\xa6\x3a\xb7\xc0\xca\x26\xdd\x01\xd0\x69\xce\x0b\x1c\xa5\x79\xa7\xd8\x84\xb3\xcc\xa2\x67\x10\x13\x79\x70\x19\xde\x69\xb2\x83\x32\x12\x3e\xd0\x0b\xd9\x5f\x60\x9f\x06\x88\x49\x4b\x0b\x9d\xb5\x8c\x17\x05\x57\xd1\xae\xa5\x85\x4e\xa9\x6b\x25\x9d\x23\x6a\x9e\xa1\x42\x92\x71\xa3\x38\x47\xd4\xb4\xba\x0c\xc6\x4b\x5e\xd9\x11\xe5\x9c\x02\x5c\xe2\x64\xfc\x28\xdb\x67\xb9\xab\x42\x9f\x65\xed\x97\x8d\x59\xa6\x14\x56\x36\x28\xa3\xa9\x45\x50\x86\x46\x74\xa4\xb4\xcc\xec\xb3\xbb\x38\xc7\xe4\x2d\x0f\x10\x35\xb9\xfc\x3c\x63\x84\x94\x98\xca\xe3\x3d\xa2\x18\x5c\x60\x92\x2f\x3f\x2f\x80\x67\x73\xbf\x56\x67\x70\x3c\xb6\x2a\x2c\xf2\xb2\x95\x54\x67\x70\x3c\xec\x2b\x2e\x60\x81\x0e\xe0\xbb\xc2\x06\xc6\xd0\xee\x5d\x61\x70\x27\x96\xfa\xae\xce\x9f\x28\xf8\x57\x18\xd8\x3b\x8f\xea\x0a\x37\x19\xfa\xc4\xee\x0a\x13\x19\x11\x15\x77\x85\x01\x5e\x09\x41\x37\x50\x62\x82\x32\x70\x6e\xc0\xc4\x64\x7a\xc5\x6e\xc0\xc4\x44\xe3\x51\x5e\x93\xf7\x88\x2d\x26\xaf\x31\xeb\x05\x90\x85\xe6\x00\x3c\xcb\x78\xf6\x57\x17\xd1\x34\x07\xf0\xac\xa1\x9b\xec\xae\xb9\xe0\x7d\xf6\x10\x56\xba\x40\xa7\xea\xed\x40\x34\xcc\x79\xbb\x6b\x7e\x87\xc0\x49\xcb\x13\x35\x70\x08\x9e\x71\x3d\x66\xfd\xb1\xf1\x02\xc7\x50\x02\x9e\xd9\x65\x98\xe9\x8c\x27\x63\x85\x5e\xab\xf0\xfe\x57\xc1\x34\x19\xe0\xbe\x01\x55\x93\x99\xae\x62\xd7\xea\x43\x62\x8f\x2b\x86\x14\x54\x0e\x41\x5a\xab\x0c\x93\x9a\xfd\x29\xe5\xf2\x06\x6e\x4d\x50\x5a\xc5\x5d\xe1\x01\x40\x54\xc5\x5d\x11\x24\x50\x2f\x3d\xa3\x75\x9e\x71\x15\x11\x8d\x74\x4d\xda\xc0\xae\xc9\x55\x2b\x0c\xce\x43\x14\xc5\x0d\xac\x9a\x5c\xb5\x80\x88\x48\x24\x6a\xe2\xae\xe6\x14\x20\x22\x44\x3c\x34\x61\x13\x77\x1d\x9e\xf1\x5c\x54\x08\x07\x01\x06\xdc\x6f\xa0\xd9\x44\xe2\x26\x6e\xa0\xd9\xe4\x2a\x12\x00\x67\x32\x32\xd3\x0a\x1d\x18\x3d\x99\x77\x85\xc3\x80\x91\x97\x56\x48\x83\x44\xe0\xdf\xf5\x5c\x4e\xa3\x84\xfc\x8a\xcb\x69\xa0\xb7\xd7\x06\x1c\x4e\x94\x90\x0f\x38\x9c\xa0\xd4\x85\xbb\x4e\x8c\x39\xb1\x45\x38\x0c\x10\x29\x71\x57\x04\x2a\x54\x91\xdc\xba\xf1\xac\x72\x9c\x49\x49\x43\x46\xd8\xa3\xec\x6b\xd5\x99\x5f\xd2\x1c\x20\xe8\xda\x44\xd4\xf0\x30\x08\x32\x10\x56\x44\x5d\x9b\x88\x1a\x16\x3b\xe3\xa1\x55\x21\x2e\x56\x11\x31\x0c\x76\x04\x3b\xdc\x15\xcc\xd0\x28\x5c\x39\x44\x0e\xd3\x14\xec\xfa\xf8\xf7\x9c\x34\x78\x24\x04\x59\x00\x2b\x1c\x0e\x74\x11\x01\x26\x4e\x24\x00\xd5\x6e\xf0\x27\x90\x3d\xaf\x81\x39\xd2\xe5\x6c\x03\xe3\x26\x04\x7a\x69\xec\x06\x87\x01\xa3\x38\xd4\xc0\x0c\xe9\x63\xb6\x5b\xc0\xb2\x93\xd0\x1b\x98\x21\x11\xa7\x76\x8b\xbe\xac\x3c\x40\x5a\xc4\xb2\x56\x3d\xfb\xb2\xf2\x40\x69\x60\x8f\x44\x1e\xd8\x0d\xf6\x39\x02\x1e\xee\x06\x4c\x2d\x65\x9d\xdb\xcd\xb9\x21\x4f\xe9\x06\x01\x8c\xa0\x69\xbb\x41\x00\xd3\x4d\xa9\x1d\x66\x96\x2b\xf7\x5a\x73\x66\x26\xcb\xac\x03\xe1\xe8\xe6\xd4\xe0\x72\x10\x64\x99\x6d\x70\x39\xa0\xa3\xdc\x6e\x87\x77\x65\x66\x5f\xd8\x0d\x16\x40\x3a\xca\xed\x56\xbc\x45\x4e\x22\x74\x59\x46\x6e\xd1\x60\x21\x0c\x32\x6a\x3a\x54\x0e\xb3\xec\xee\xe6\x12\x9d\x6c\x90\x0d\x11\xdd\x04\xfa\xdb\xad\x7a\xc2\x7f\x1e\x5a\xcd\xd9\x9b\xa6\x1d\x6a\xfb\x4a\x5a\x6f\xf0\xa8\x32\xcd\x3a\x4c\x84\x44\xfe\xdb\xad\x62\x48\xdc\xbe\x0d\xf2\x1a\xc1\xb3\x76\x43\xe0\x83\x8c\x9c\xcd\xd9\x25\x8f\xa0\xd6\x7c\x48\x6a\x10\x0e\x06\xcc\x28\xb1\x81\xce\x13\x94\x4c\x6d\x03\x9e\x27\x12\x4e\x6b\x37\xf8\x44\x99\x96\xb9\x7b\x05\xec\xb1\xb3\x4c\xd3\x73\x43\x39\x47\x00\x87\x82\x20\x63\x52\x43\x60\x95\xcc\xaa\x0d\x39\x26\x08\x46\xf7\x00\xc2\x20\x74\x62\xa2\x3c\xe6\x19\x9f\x78\x46\x3c\x06\x85\xb1\x90\xc7\x1f\x73\xb0\x4c\x46\xd2\x3f\xe6\x79\x11\x68\x04\x7c\xcc\x53\xb6\x31\xe2\xe5\x31\xd8\xd4\x32\x55\xf7\x0f\x90\x11\x42\xef\x45\xcd\xf6\xef\x8f\xff\xff\xa3\xe7\x31\xa8\x9c\x33\x31\x21\x1f\x83\xc9\xbd\xa7\x9f\x4e\x4e\x4f\xf4\xa5\x4e\x7a\xa6\xac\xa6\x37\x90\xfa\x87\xb7\xa2\x07\x68\x0c\xa1\xda\xa7\x31\x79\x00\xc7\x10\x1a\x9d\x29\x1e\x73\x58\x61\xea\x40\x1e\x00\x32\x84\xd6\x93\xde\x70\xa0\x65\x63\xb3\x01\x93\x45\x7f\xdc\xc7\x80\xf6\x59\xe9\x16\xf7\x18\x54\xdd\x95\x1e\xde\x8f\x79\x5a\x08\x5e\x7d\x1e\xc0\x3c\x84\x4a\x90\xb5\xc7\x1c\xcb\x9c\x46\x81\x07\x40\x0f\xa1\xd3\x85\xe1\x31\x28\xb8\x7a\xfb\x69\x76\x7a\x56\x40\x75\x0c\xf3\x51\xb5\xf0\x61\x7b\xb6\x16\x35\x7b\x7b\x3a\x0c\xfd\x81\xf9\xa0\x8a\xe8\xb1\xe8\x48\x92\x81\xfd\x40\xae\xbc\xc2\x20\xfb\xc7\xa0\x95\xaf\xd4\x7f\x3e\x16\x01\x2b\x4f\x05\xe9\x63\x1f\xd4\x72\xe6\x1f\xc8\xb2\x43\x76\xfd\x58\x04\xb2\x3c\x35\x16\x8f\x41\x73\xdf\x78\x2d\x7a\x2c\x7a\x16\xa9\xc8\x9e\x22\x5b\x7c\xe1\x41\xfe\x00\xe9\x22\x54\xba\x11\x3f\xe6\xb9\x30\x68\xb1\x7b\x5e\xac\x8b\xa6\x39\x45\x36\x8c\x9c\x7e\x7a\xea\xb9\xef\xa2\x3e\x41\xe6\xc0\x9f\x9e\x02\x39\xb5\x34\xb5\x92\x3c\xa3\x8e\x36\x02\x6e\xde\xb5\xaa\x63\xe7\xe6\x1d\x2a\x0f\xab\xc7\x1c\x2a\x3a\xff\xbc\xe1\xd8\xe1\x9d\xc3\x47\xda\x9f\xc6\x24\x4f\x8f\x01\x90\xb1\x33\xf4\xfc\x01\xb4\x46\xe8\x55\xbb\x1c\xc7\x47\x67\x1e\xb2\xc7\x20\x6d\x0b\x17\xed\xb1\xe4\xe9\x1b\x44\xfc\xc9\xf3\x45\x34\xbd\xb1\x1d\xe0\x9f\x24\x05\x81\xbb\xfd\x50\xd0\x0b\xfc\x9a\xd8\xd3\xfc\xd2\x07\x7b\x7a\x44\xee\xd0\xa9\x0d\x7b\x0c\x7e\x26\x99\xc2\xc0\x63\x39\x79\x82\x30\xbd\x81\xf9\x88\x22\x7e\x07\xca\xcf\x62\x1d\xd9\xd3\xa8\x68\x0a\x91\x6b\xbf\x11\x74\xee\xb1\xec\xf0\xc9\x97\xde\xc0\x7c\x14\xb1\x0b\x88\xee\x99\x52\xce\x63\x47\x74\x0f\xe5\x87\xeb\x65\x4f\x56\x24\x1a\x43\xc6\xfd\x9a\x8a\xde\xb8\x3d\xdd\x8e\x7a\x8a\xfd\xc2\xc0\xa1\xc7\x8a\xe7\x38\x10\x39\x20\xe3\x52\x2f\x9a\x75\xa8\x81\x25\x8e\x3d\x86\x04\x76\x8d\x19\x11\x1f\xc0\xa2\x84\x5c\x34\x38\xa4\xb0\xcb\x45\xb3\x0e\xb3\x53\x0b\x5a\x5b\xe8\x5a\x1a\x7d\xf2\x1f\x40\xa7\x84\xf6\x43\xfc\xc5\xe7\x43\xb3\x0e\x73\x7b\xbf\x34\xb8\x32\x7d\x57\xaa\x63\xeb\x7f\xf0\x31\x60\x86\xf7\x1f\x0a\xc2\x01\xaf\xb8\xc5\xc7\x90\x16\xbb\x10\x62\xe3\x31\xcf\xde\x96\xb5\x81\x90\x18\xbb\x36\xd1\x07\x64\x80\xda\x35\xfc\x8a\x6c\xa1\x3c\x11\x1f\xc0\xba\x84\x76\x89\x3b\x54\xcf\x17\xaa\xfd\x02\xc5\x4f\x49\xa6\x4f\x1a\x3a\x96\x39\xb8\xea\x89\xa3\x7e\x3e\x01\xff\x68\xe2\x96\xd0\x0d\xb5\x1f\xf6\x59\xc1\x4f\xab\x4e\xa0\xea\xe7\x4b\xa8\x7f\x3a\xc0\x90\x77\xae\x12\x31\xfb\xb1\xea\x9b\xc9\xd4\x85\xc7\x21\xd8\xf9\x87\x27\x94\x89\x3a\x27\xe0\x31\xa9\x14\x13\x8f\x41\x7d\x54\x7f\x26\x1c\x2e\x93\x85\xa7\xff\x03\x4c\x9b\xd0\xaa\xd6\xa8\x39\xb3\xad\xe4\x36\xf0\x6c\xa8\x5d\xa7\x40\x6b\x9e\xde\x95\x3d\x6d\x9e\x22\xf4\xa7\x1f\xe6\x04\xa8\x37\xc0\x6c\xaf\x9f\x3f\xc0\x5c\xa2\xa8\xa9\x79\xb2\x09\x4d\x78\x73\xe2\xb9\xf4\xc6\xed\x07\xba\x06\xe7\xcc\x56\x27\xda\x9b\xca\x53\xad\xc0\x7c\x90\x4d\xeb\x8c\x0b\x6a\x49\x3a\xc0\x7a\xf2\x04\x72\xa4\xb7\xfe\x66\xa4\x62\xb3\x48\x11\xd6\x2e\x1d\x2d\xd0\xb8\xf5\x22\x56\xfa\xa2\x3b\x67\xb5\xe2\x92\x4b\xe0\x14\x76\xc7\x4f\x16\x07\x87\x92\x4e\xd7\xf2\xc7\x3a\x36\x93\x69\x4e\xbb\x6f\x26\x71\x9b\xbe\x1d\xb0\x5c\x7f\xdc\x9e\xd8\x51\x9f\x60\x33\x15\xb5\x02\x8c\xfb\x52\x24\x03\x18\x0e\xe3\x26\x49\x0e\x4e\x26\x35\x8b\xd9\x1a\x0e\x9f\x22\x3e\x00\x2f\x93\xda\x24\xf1\x98\xcf\x87\x8e\x7c\xf3\x34\x2f\x99\xf3\x01\x13\x71\xa3\x27\xcf\x63\xf6\x62\xb3\xab\x15\xf3\x64\x17\x9c\x31\x73\x74\xf6\xa6\x3f\x26\x0e\x8e\xac\x56\xb0\x99\x8a\x58\x3a\xb2\x07\xe5\xa2\x33\x0f\x77\xfd\xdc\x7e\xde\x78\x3c\xb9\x17\xdf\xf0\x9c\x1d\xd4\x89\x3d\x86\xf4\x6b\xbf\x3b\x6a\x38\x7d\x68\xe5\xde\x6c\x8d\x3a\xe2\xa0\xba\x2c\x55\x73\xea\x29\xd8\x82\xe4\x3b\x18\x88\x5a\x94\x50\x30\x5c\x58\xd3\xda\x7a\x8a\xd8\x1f\xe1\x04\x10\xb9\x99\x98\x9d\x8f\xc1\x48\xfe\xcb\x17\x07\xe8\x23\x26\x35\xbb\xbc\x63\x6a\xc5\x53\x75\xfd\x74\xfd\xf6\x95\x53\x2b\xe0\x1f\x59\xdb\x14\xfe\x39\xca\x65\xfb\xd8\x0c\x8e\xd3\xce\x66\xe1\x4f\xd8\x8b\x66\x0c\xc6\xf6\x5e\xb5\x5f\xa6\x43\xaf\x8b\x73\x4e\x67\xb6\x4d\x75\x54\x17\x1b\xd8\x31\xe4\x65\xea\xf4\xce\x7f\x80\xe3\x14\x83\xe9\x2e\x80\xcc\x4c\x25\x8b\x1c\xa0\x15\x51\x00\xf1\x63\xf0\x42\xcc\xb9\x6a\x2c\xcb\x67\x4c\xfd\xd8\x9e\xc7\x55\x75\x60\xbf\xfc\xc8\xff\xf0\x6b\xfe\x3d\xaf\x96\x67\x7b\x93\xf0\xba\x3c\xa3\x96\x4e\x23\xd8\xee\x5a\xd3\x26\x5c\x2e\xcc\xeb\x64\x85\xf1\xae\x77\x51\xa1\xe7\x6f\xed\x3a\x16\x96\xf3\x8f\x9f\x4a\xc1\x4f\x8b\x76\x14\xb2\xe8\x15\x93\x6c\xb6\x0c\xec\x53\x2c\x67\xb9\xf0\xfa\xd3\xf5\xe9\x89\x00\x39\x1f\x9e\x69\xaf\x15\x7d\x02\xfa\xe8\x92\x34\xe0\x77\xd9\x2e\x89\x62\xcb\x85\x13\x71\x7e\x38\x5e\x02\x67\xfc\x2f\x07\xd8\x0e\x7e\x0a\xb0\x4f\xf0\xec\x2e\x45\x2b\xb0\x31\x59\x45\x9c\xc2\x73\x1f\x67\x4d\xe7\xf6\x64\xb7\x92\x4b\xf6\x9b\x60\x51\x9f\x34\xcf\xe3\xc0\xe9\xdc\x2e\xe9\x4b\xa4\xda\x20\x9e\x22\x22\xde\x7e\xf8\x5c\x1a\xd7\xfc\x1f\x32\x05\x92\xe5\xf4\x9f\xfb\xc4\x76\xe6\x22\xf9\x79\x3b\x73\xd1\xa2\x79\x5a\xdd\x20\x6a\xba\x3d\x35\xa8\xa4\x30\x4f\xac\x6b\x62\x61\x70\xcc\xa8\x97\xa4\xc1\x3b\x79\xf6\x49\xf6\xd4\xd3\x15\x36\xb1\xe3\xfb\x4d\x21\xa7\x3a\x9c\xd9\x8a\xeb\xdd\x7e\xf3\xd1\x39\x71\x7b\xa2\x1c\xf1\x34\xcf\xa4\x91\x44\x80\x37\x98\xed\x0f\x8f\xbf\x5d\x72\xf9\xe9\x98\xa7\x69\xd4\x32\x20\xdb\x4f\xfe\x61\x2e\xb7\xdf\x04\x45\x6f\xf7\x9b\x09\x90\x6f\x3c\x7e\x33\xd6\x96\x7d\x5c\xb2\xd5\xce\x80\xd6\xae\x37\x1d\xe8\x48\x30\xd6\xbb\x0e\x74\x04\x12\x15\x13\xa7\x78\xfc\x66\xac\xa3\xe5\x79\x6f\x82\x9c\xb1\xc7\x93\xbe\x89\xcc\x3d\x11\x51\xf8\xa9\xc3\xfc\xfa\xa0\x4f\x40\x1f\xf4\x42\x7c\x0c\xe1\x48\xb5\xe8\x40\x7f\x3c\x99\x8d\x98\xcb\xe3\x37\x41\x5d\x1f\x1e\x17\xd6\xc4\xb0\x11\x11\x29\x4b\xde\x03\xf0\xb5\x20\x8b\xf1\x33\xae\x37\xf1\x72\xe7\x1f\xd8\x2f\x92\x67\x06\xd4\x2a\x8d\x98\x26\xcf\xf0\xf4\xb4\x84\xff\x7c\xc6\xf5\x6a\x0a\x32\xff\x80\x64\x4b\x2b\xcc\x33\xae\x77\xbf\xe8\x0f\xa7\x0f\x4e\xd0\xb8\x5c\xd2\x8f\xaa\x63\x78\x6a\x23\x35\x3b\xfd\x32\xcd\x3f\xa2\x8b\x62\xbc\x1c\x0c\xdc\x7b\xbb\x24\x8d\xc7\x55\x79\x4c\xa3\xfe\x78\x24\x5e\xa4\x5f\xd8\xf3\x80\xf8\x03\x6d\x76\x0f\x12\x4f\x87\x28\xe1\xf5\x01\xad\x87\xcf\x6a\x17\x1e\x44\x55\x04\x66\x0c\x8c\xd7\xb5\x1d\x30\xef\xd5\x25\xc4\x2b\xe0\xca\x1e\xbf\x23\x2e\x5e\xc5\x21\xfe\x32\x3f\x31\xc7\x40\xfb\x62\x3d\x62\x08\xe7\xb2\x14\x89\xdd\x10\x43\x84\x83\x08\xc1\x18\x62\x70\x73\x27\xd1\x18\x62\x00\x82\x79\x24\xfc\x42\x0c\x4f\xf1\x66\xdf\x53\x20\xc6\x3c\x1d\xe9\xef\xe5\x52\x31\xe6\xdb\x2b\x7d\x8f\x96\x18\x71\x13\x3c\x7f\xbc\x3d\x8d\xab\xbe\x7f\xbc\x3d\x8d\xf7\x8b\x16\xf8\xb2\x9c\x98\xae\xe7\xad\xe3\xed\x69\x42\x02\xb9\x48\xd8\x84\x98\x60\x20\x3b\x7f\xbc\x3d\x4d\x03\x8a\xf8\xf8\x85\x38\xc4\x1c\x1f\x40\x4c\x7e\x48\x08\x31\x27\xc7\x70\xfc\xa0\x0f\x62\xee\x8f\x37\xfb\x2e\x76\xcc\xa0\xd3\xf3\x47\xfa\xfe\x08\xd1\xff\x78\x7b\x5a\xae\x77\x0a\x5f\xc5\x6f\x2c\x29\xdd\xfe\x47\xfd\xfe\x98\xef\x1b\xed\xfb\xe3\x79\xdf\x78\x7b\x5a\x00\x84\x7c\xfe\x30\xfe\xe1\x2b\xf7\x8a\xea\xb1\x38\x74\x2f\x71\x0b\x62\xc1\xb5\x23\x12\xa8\x20\x96\x69\xbe\x2e\xef\xbd\x37\x16\x44\xc6\x47\x40\x11\xfc\x1e\x60\xb1\xfe\x7f\xcf\xaf\x58\xaf\xf2\x7e\xfd\x8e\xa2\x96\xf1\x7e\xfd\x8e\xa2\x3a\x72\x37\x91\x0b\x62\x0b\x5f\xfd\xef\x28\x9a\x1b\x5d\xe3\x17\x6a\x10\x5b\x8d\x3e\xf0\xf7\xc8\x8b\x6d\x14\x9f\xcd\x97\x51\xc4\x36\x2f\x1f\xf8\xcb\x7c\x63\x5b\xb7\xd7\xf1\x1e\x46\xb1\xdd\x0e\xeb\xf7\x85\x0b\xc4\x86\x58\xe8\xf3\xc7\xdb\xd3\x9e\x0e\x17\x3c\x7f\xbc\x3d\xed\xee\xe1\x43\xcc\x82\xd8\x01\xa0\x71\xfe\xe8\xdf\x1f\xe3\xed\xc7\xdb\x53\x43\xea\xdd\x18\xbf\x90\x80\x68\xe1\x76\xea\x7a\x79\x6d\x34\xb8\x05\x45\x02\x19\x44\x2b\x97\x53\xd7\xab\x2f\x8d\xd6\x5f\xfa\x7b\x59\x7c\x1c\x70\x19\x3f\x7f\xbc\x3d\x1d\xee\x9a\x14\xf3\x2b\x93\xc7\x01\x7b\x64\x24\xda\x40\xf4\x94\xda\xe7\x8f\xb7\xa7\xab\xed\xb7\x1f\x6f\x4f\xef\x52\xbd\xd9\x7a\xfd\xaf\x62\xc9\xff\x33\xfe\xef\xff\xeb\x76\x36\x72\x21\x56\xf3\xfd\x89\x2b\xe4\xf7\xff\x91\xf5\xbf\x9f\xe5\xdf\x7f\x1f\x67\xba\xae\x23\xc0\x7f\x3f\x7d\xc5\xbb\x3e\x9a\x2a\x83\xc5\x86\x26\xfb\xeb\x9a\x6a\x68\x7a\xe8\x22\x4b\xd4\xd4\x74\xb6\xf7\xd9\xdd\xaf\xeb\x08\xd0\xdf\x4f\x1f\x7a\x67\x4f\xa6\x7a\x32\x3d\xd8\x89\x25\xea\x07\xe4\x5a\x65\xef\xb9\x10\xaf\xf7\xfe\xdc\x4e\x18\xc6\xd6\x0e\x09\xbf\x3f\x9d\x68\xe8\xe1\x78\x21\xc8\xed\xfb\xf9\x38\x52\xe8\xcb\x9c\xaf\x10\xd9\x93\xe0\xdc\x8f\xe7\xf8\x15\x52\x60\x19\xa0\x2e\x14\xb8\x7b\x85\xc4\xbe\x20\x80\x2c\x2a\xc8\xf6\x0a\xd9\x54\x36\xbd\x8c\x75\xe6\x5b\x65\xde\x97\x4f\xa9\x78\x21\x09\xf9\xf7\xd3\xdb\xfb\x44\xd6\x0b\x31\x62\xdf\x4f\xef\xe7\x77\x11\xb9\x10\xfe\xf5\xfd\xdc\x5e\xf6\xcd\x59\xd4\xbc\x44\xc8\x7e\x81\x9e\x10\x57\x32\x8e\x2f\xf9\xae\xa1\x63\xc8\x95\xce\xfd\xf0\xfb\x09\xb2\xa4\x29\xfe\x4a\x53\xdf\xad\xb7\xec\xab\x13\xee\xa7\xef\x4f\x1f\x1f\xcd\x66\x01\xc7\xdc\xfb\x13\x52\x84\x80\x8a\xe2\x75\x7d\x63\x8f\xd7\xeb\xe2\xca\x12\x53\x89\x9b\x7c\xbe\x92\xa0\x6f\x60\x59\xf8\x64\x81\x88\xb0\xe7\xef\xe7\x91\x02\x22\xdb\x09\x4b\x25\x1b\xe7\xf2\x57\xc2\xed\x14\x2f\x68\xee\x23\xdb\x39\xbc\xee\xfb\x79\x8e\xee\xc8\xbe\x25\xf5\x00\xda\xed\xc4\x76\x72\x63\x09\x34\xb0\xc1\x34\xd6\x96\x59\xd6\xde\x32\xb6\xd5\x1e\x96\x75\x2f\xfb\xae\x60\x11\x44\xf1\xfd\x84\x3d\x90\x0e\x01\x11\x09\xe7\xbf\x9f\xb7\x97\x7d\xbd\x44\xfc\xe1\xf7\xd3\xeb\xfc\x54\xcc\x11\xa1\x81\xdf\x4f\x2f\xcb\x2c\x33\x95\x41\xb1\xf1\x49\x96\x31\x6a\xb5\x90\x39\x3c\x28\xc7\x51\x44\x0c\xd9\xf7\xb3\x7b\x59\xfb\xca\xce\x94\x7f\x3f\xbd\x97\xdf\x45\x37\x22\xa5\xf7\xf7\x73\x79\x19\xbf\x4b\x9c\x31\xc4\x6b\x85\x40\xe3\x6b\x8c\x69\xa9\x6c\x7b\x19\xbf\xab\xfa\x0e\xba\xd2\xef\xd6\x18\x23\xf7\x53\x8c\xd0\x91\x06\x5a\xd8\x62\xac\x43\x65\xd3\xcb\xd8\xcb\xae\x91\x77\x1f\x79\xe7\xc8\xbb\xea\xec\x6f\x9d\x5f\x4f\x52\x24\x15\x27\x18\x68\xbe\x1b\x58\xcc\x5a\x1d\xcf\x05\x18\xa8\x60\x8a\x85\x3b\x26\x96\x77\x9e\xbf\xeb\x4f\x84\x63\xe6\xfb\x33\x7b\x2f\x3f\x5d\x56\x2c\xdc\xbd\xd1\x53\x9c\x45\x66\xaa\x88\x85\x3c\x3b\x16\xf0\xec\x48\xc3\x47\x2c\xe4\xcb\x11\xa9\xcd\x4e\x59\x64\x99\xda\x83\x0a\x22\x32\xbb\x42\x84\xdb\xda\xf7\x33\x78\x59\x65\x99\xea\x5c\xde\x97\xef\x64\x89\x65\xdd\x2c\xdb\xfe\xdd\x77\xdd\x3d\x72\xcb\x57\x56\x21\xfc\x2b\xd5\x4a\xac\xd7\xad\xb2\xc7\xcb\xbe\x3a\xab\xe6\xb3\x56\xaf\xf3\x53\x93\xc6\x5a\x93\xca\x8a\x97\xb1\xce\xda\x54\x36\xbc\xcc\x58\xb6\x54\x86\xb1\xd3\xbd\x33\xb6\xc6\xf1\xc1\x06\x1e\x02\xdd\x7a\xe2\x9d\x48\x49\x77\x72\xab\xc2\x5b\xf2\x24\xf6\xe4\x81\x19\xcc\x18\x39\x15\x1f\xed\xe5\xc7\x4d\x0f\xf5\xbb\x5c\xc5\x67\xb0\x97\x80\xf8\x08\x9d\x41\x3a\xf1\x19\xe4\x1d\x80\xf3\x08\x9d\x9e\x28\xf1\x99\x5d\x65\x6e\x21\x23\x3f\x7a\xa6\xbe\x73\xf0\xe0\xf8\xd9\x3e\x22\x50\x3a\xbe\x9f\xaf\xb2\xb7\xb1\x8c\xbb\xf9\xc1\xea\x29\x59\x4e\xba\xae\xef\x8c\x48\x60\xed\x41\xf9\xb2\xd3\x75\x75\x96\xc1\xaa\xfc\xed\x85\x74\x85\xac\x12\xd7\x10\xb0\xa4\xaa\x64\x79\x7d\xe9\x2b\x8b\x37\xcb\x70\x5f\x8b\xcc\x35\x9d\xae\xac\x7e\x20\xe2\x27\x56\x63\x1f\x6d\xab\xec\x76\x04\xe9\xfa\x95\x0d\x7d\xf7\xbc\x65\x5f\x5f\x24\x17\xa4\x00\x1b\xcd\xb7\x7f\x52\x20\xbf\x49\x01\x5a\x6c\xa5\xd7\x49\x91\x7b\x39\xbd\xbc\x8f\xab\x93\x62\x61\x8d\xf1\xa5\xa1\x8f\x0b\xa7\x38\x55\x36\xbd\xec\x3b\xc1\x13\x82\xa2\xbe\x9f\x19\xed\x7d\xbc\x23\x21\xab\xf4\xfb\x13\x5a\xb5\x48\xea\x4b\x69\x3d\x2c\x83\x2e\x2c\x52\x33\x95\x90\x70\xf9\xfb\xe9\x27\xe4\x77\x92\xa4\xba\x3e\xaa\x4d\xc8\x4e\x16\x3a\xcd\x55\x69\x4d\xce\xe6\x82\xe4\xa6\x6c\x39\x79\xed\xaf\xbd\x0c\x04\xc7\xd0\x2d\x7f\x09\x46\x5d\xa4\xfd\xdf\xa4\xdc\x7c\x73\xda\xf2\x0d\xc5\x42\xa6\x82\x23\xdf\x3c\x6a\xf2\xed\x4e\x10\x74\x89\xcc\x37\x49\x29\x03\x27\x2d\x08\xf2\x35\xdf\x14\x0f\x32\x30\xd1\x82\xe0\x57\xf3\x9d\xd4\x1e\x4c\xda\x9d\x47\x5b\xbe\x93\xbe\x4b\xef\x77\xf5\x2b\xcb\x91\x65\x30\xec\x0a\x35\x34\xdf\x79\xab\x0c\xea\x13\x22\x7a\xe6\xbb\xa8\xce\xe2\x75\x7e\xc7\x5e\xbe\x8b\xbe\x2b\xef\x77\xac\xb3\x6a\x7c\x60\x65\x9d\x16\xb6\x7c\xd7\x5b\x65\x8f\x97\x71\x0c\x64\x57\xf9\x76\x7b\x17\xd1\x2f\xf3\xdd\x86\xca\xb6\x7f\xc7\x39\xeb\x93\x65\x30\xe1\x08\x45\x32\xdf\xa6\x39\x83\xe1\x45\x88\x8e\x19\x20\x65\xdf\x4f\xf7\x95\xe9\x1c\x1f\x37\x59\x06\x36\x59\x10\x72\x62\xbe\x87\xbe\x1b\xbe\x7e\xc6\x3a\x87\xfa\x32\xdc\xf2\x6a\xec\xe7\x4c\x2c\x73\x15\x3e\xfd\xb0\xf2\xbd\xd4\x4f\x1c\x53\x52\x74\xe5\x7b\x69\xec\xd0\x39\x67\x2a\xb0\xf2\xbd\xd5\x17\x28\x61\x05\x0a\x98\xef\x5b\xed\xdd\x6e\x21\x08\x6c\xef\xd1\x5c\x3f\x6e\x5b\xfc\x84\xca\xfc\x50\xac\xcd\x8f\xd3\x2e\x1d\x15\xf3\x73\x71\xdd\x9f\xe0\xfd\xfc\x98\x67\x7e\x28\xee\xe4\x27\xb9\xb2\x8e\x34\xff\x64\xb6\xf7\x64\x37\xc5\x64\xb6\x27\x1a\x7c\x8a\xd7\xf9\x59\xfe\xf2\x43\xc1\x32\x3f\xc5\xe7\xec\x3b\xfa\xf2\x53\x54\x27\x8c\xeb\xc6\x74\x9e\xf9\x29\x1a\x03\x0e\x2a\x41\x5a\xe5\xa7\xfc\xb4\xf7\xf8\x77\x2c\xab\x64\x07\x0f\x4c\xbd\x39\x15\x8e\xbd\x75\x95\x99\x7f\xa7\xb2\xa9\xb2\x8d\xb2\x4f\x38\xce\x4f\xbb\x55\xf6\xb8\x3b\x0b\xdb\xeb\x1a\x1f\xd8\xa4\x60\xa8\xf2\xd3\x87\xca\x7c\x1d\x1a\xeb\x1c\xaa\x73\x78\x9d\xa4\xa5\x67\x16\x96\xc1\x10\x94\xa9\x88\xce\xcf\x22\x2f\x00\x0a\x56\x10\xbc\x50\xc6\x29\xfa\xfd\x1c\x5e\xc6\x75\x58\x5a\xdb\xe5\xe3\x13\x4d\x2c\xcd\x19\x58\xb6\x31\xb3\x61\x7e\xb6\xc6\xe7\x96\x07\xe2\xf0\xe4\x67\x6b\x3e\xb7\xcf\x67\xe2\xbc\x88\x2d\x3f\xb7\xd3\x84\x71\x5e\x6e\x8d\xfd\xf6\xb1\x7f\x34\x51\x70\x6a\x7f\x3f\xb1\x6f\x69\x47\x2c\x57\x48\x2a\xf3\x6c\xb6\x9f\x76\xb9\xe0\x2e\xf6\xfd\x1c\xfe\x5d\x66\xd9\xad\xb2\xc7\xcb\xda\x57\x16\x55\x67\x7c\x2d\x2b\x17\xcb\xaa\xca\xba\x97\x45\x96\x0d\x95\x6d\x2f\x2b\x5f\x19\x2f\x68\xc5\x2f\x68\x42\xf6\x28\x17\x79\x72\xb9\x8a\xcf\x59\xe1\xd8\x79\x79\x2b\x00\x5d\x0a\xc2\xdf\x28\x97\xe9\x3b\xf3\x3a\x33\xc7\x60\xea\x0b\x6c\xc0\x46\xd1\xba\x48\x10\x29\x10\x44\x4e\x19\xe7\x65\x2c\x96\x0d\x1f\x43\x66\x7b\x14\xe5\x8b\xab\x5f\x84\x32\x51\xae\xa5\xb9\x76\x3a\xa3\x1b\x51\xb9\x76\x61\xd9\xf6\x31\x7c\x67\x47\xd1\x25\xbd\x04\x3f\x6f\x09\x8c\x50\x02\xaf\x7d\x25\xe0\x3a\x62\x4c\x90\x55\x82\xd6\x1d\x9a\xae\x53\xd6\x58\xd6\x54\x86\x24\xad\xcc\x52\x58\x00\xe7\xf3\xfd\x5c\x5e\xc6\x3a\x23\xe7\x3a\xc0\x55\xce\x98\x50\xaa\x04\x9e\xc5\x25\x78\x16\x5e\x86\x3b\x95\x90\x35\x86\xec\x63\xf8\xf6\x5f\x09\x59\xfd\x7c\xd7\xbd\xb3\xce\x3c\x55\x86\x73\x85\xf1\xe5\x05\x37\xee\xef\x67\xf3\xf6\xfa\x57\x56\x35\xbe\xea\x9e\x73\x17\xe7\xac\x71\xae\xc3\xeb\x4e\x12\x38\xf6\xa1\xf9\x1c\x9e\x59\x39\xb1\xbd\xa9\x31\xc0\x58\x6d\x04\xfb\x2b\x81\xd7\xb4\x12\xa6\xdb\x58\x23\xcb\x96\xc6\xb0\xdc\xd8\x97\x38\x9f\x9b\xb4\x14\xdc\xee\x47\xdf\xaa\x12\x1e\xb5\xf7\xb8\xc1\x93\x74\x1d\x1e\xcd\xd9\x9b\x01\x3a\xab\x4c\xeb\xf0\xb8\xf3\xc7\x27\xba\x16\xe0\xcb\x7c\x3f\x7d\xec\x9f\x0c\x56\xa2\xd6\x16\x98\x2e\x41\x31\x79\x25\x6a\x4f\x43\x2b\x10\x8c\xb9\x6a\x4a\xe4\x45\xba\xc4\x38\xfe\x0f\x63\x66\x89\x14\xcc\x0b\x70\x60\xce\x77\xac\x33\xa9\x4e\x5c\xc5\x14\x2f\x57\x62\x26\x0d\xc6\xec\x73\xf6\x9d\x01\x25\x16\xf2\xa5\xe8\xe7\x18\x93\xdc\x95\x58\xd5\x97\xea\x7d\xf9\xce\x87\x02\x0d\xc0\xf7\xd3\xbd\x86\x3e\x3e\x5f\xa2\xa9\x9f\x2e\x2f\x15\x0b\x7f\x12\x87\x4b\x34\x55\xeb\xf9\x8e\x99\x93\xae\x44\x7b\x58\x36\xdc\x28\x67\x9c\x36\x6a\x04\x0a\xe0\x50\x7e\x1c\x4c\x4a\x1c\x1a\xc6\xf0\xa9\x31\x4e\xa9\xd8\x8f\xc3\xa2\x18\x0d\x8e\x25\x8a\x8d\x44\x67\x23\x84\x26\x2b\xd2\x3b\x96\xe8\x22\x13\x6f\x3b\x05\x8a\xc8\xef\xe7\xeb\x57\xca\x7e\xde\x24\xc3\x88\x23\x49\x69\xa6\x4a\xbc\xa3\xca\xb2\x7f\xc7\x29\x7d\xb4\x84\x8f\x5b\x7d\xbf\x1b\x4d\x89\x8f\x96\xf0\x79\x5d\xab\xbe\x31\x24\xb1\xbb\xe4\x2c\x8d\x99\x6d\x0a\xb0\x3b\xde\x9f\x70\x87\xce\x74\x10\x2e\x40\xed\xf8\x7e\x36\x2f\xfb\xd6\x21\x45\xd5\x09\x2f\x61\x39\xa5\x97\x94\x38\x76\x18\x93\x82\x11\x4d\xb2\xa4\xa4\xf6\x9c\x6d\xf1\x16\x58\x92\xd8\x56\xca\x3e\xf6\xcc\xef\x74\x94\x25\x77\xee\x24\x70\x56\x49\xbc\x59\x96\xe4\xee\x94\xc4\xcc\x2a\xa9\xaa\xbd\xe6\xed\x7d\x22\x53\x49\x2d\xaa\x0c\xf3\xc2\xf4\x74\x25\xe9\x08\x4c\x70\xaa\xcb\x34\x31\x97\x44\xf1\xad\x24\xb8\xc2\x19\x33\xd1\x94\x24\xfa\x4c\x4e\x9f\x84\x29\x2a\x69\x68\x3e\x5d\xdc\xa7\xcb\x66\x49\x3a\xe6\x1c\x13\xc3\x68\xf5\x2d\x69\xa9\xbd\xf5\xfa\x29\xb2\x9f\x9b\x5b\x1e\xd8\x13\xa7\xec\xa3\x6b\x80\x4b\x7c\x3f\x7d\x0c\x9f\xc8\x54\xd2\x6d\x2a\xdb\x5e\xc6\xf6\x6e\x8d\x01\x56\xfd\x4c\xf7\xa7\x02\x74\x88\xef\x27\xd8\x16\x7d\xa5\x4a\xbe\xb8\x7e\x80\x7c\x38\xdf\xa9\xac\xab\x6c\x78\x99\xb1\x8c\xfb\x2f\xfb\x55\x80\xf0\x35\x25\x07\xf6\x25\x47\xf7\x10\xa4\x58\x94\x75\x3c\x66\xbf\xaa\xd2\xb7\xa7\xe4\x34\x55\xb6\xbc\xec\x9b\x97\xdc\x54\xd6\xdc\x37\x22\xb3\xce\xa1\xb2\xe1\xdf\x15\x96\x4d\x95\xc1\x63\xc9\x98\xe4\xa2\x64\x5e\xbb\x4a\xf6\x6b\x17\x51\x53\x4a\xa6\xa8\x5c\x00\x17\x70\xbe\xcb\x2c\xab\x2a\xf3\xf9\x24\x9d\x65\xad\x7b\x5e\x3e\x3e\x1e\x03\xb0\x49\x7f\x3f\xdd\xbd\x85\x74\x5d\x74\x24\x15\xd8\x19\x32\xfd\xf3\x4b\x69\xfc\xae\xe0\x0a\x61\x4c\x0c\x50\x4a\x27\xbd\x94\xee\xfd\xa4\xe8\x53\xba\xea\xec\x5e\x27\x59\x7d\xe9\xa6\x32\x5f\x5b\xd5\x69\xa4\x09\x98\xe2\x4f\x9d\xfc\x4e\xa2\x64\x31\xff\x8e\xf4\x59\x6c\xa9\xcc\xd7\x88\x7c\xbe\xd8\xad\x32\x1f\x03\xc5\x76\x69\x85\x8b\x07\x2a\x1b\x5d\x5d\x4b\xd1\x19\x50\xde\xb5\x55\x5f\x6e\x7d\xe7\x7c\x97\x88\x09\xa5\x3c\x9a\x33\xb8\x8a\x64\x3a\xda\x97\x2a\xda\xad\xe0\x9f\x46\xbf\xae\x52\x13\x79\x56\x75\xf1\x8d\x19\x80\x4a\xa5\xce\xae\x54\x38\xcd\x1b\xaf\xbf\xa5\xf2\x1a\x5b\x2a\x54\x29\x46\x7c\xf0\x52\xa9\x12\x29\xae\xdd\x35\x82\x6f\x96\xaa\xa3\xda\xb5\xbb\xc6\x6b\x73\x91\x76\xb7\xb8\x76\xd7\x08\x7e\x5d\xaa\xe9\x3b\xf3\xef\x28\x8a\x54\xd1\x75\x75\xda\x65\x54\x4a\xa9\xa2\x4f\xe4\xe1\x0f\xc6\xeb\x68\xa9\x9b\x67\x55\x85\xc7\x56\xee\x14\xfb\xea\x4d\x5a\xaa\xf0\x80\x32\x22\x22\x97\xfa\xa8\x2f\x2e\x6a\xd1\xb1\xb2\x34\xea\x5b\x4b\xbb\x7c\xce\x78\x85\x68\xe2\x3d\xcd\x79\x0f\xf5\xb4\xa5\x51\x0d\x51\xda\xe5\xe3\x23\xdf\x6d\xb4\xaf\x15\xe4\xc2\x3f\xdf\x7d\x73\xdd\x24\x86\x79\x08\xa0\xf1\xfa\x5b\x9a\xd6\xa8\xb9\x18\xcd\x90\xfa\x82\xa4\xf2\xdf\x4f\xf0\x02\xfa\x5f\x97\x26\x31\x1a\xe1\x6b\x41\x59\xd4\x4a\x6b\x2a\x83\x18\x6d\x44\x8e\x2d\x4d\x62\x34\x62\xbe\x42\x66\x92\xf1\xd2\x96\xbe\x83\xf7\x61\xa6\x5d\xbb\xb4\xad\x39\x83\x4b\x9f\x11\xe8\xb4\x34\x5e\x8d\x4b\x83\xc6\x32\x77\x9e\x2b\x4d\xfc\xa5\x81\xbf\x18\x23\xfb\x4a\xd3\x1a\xb5\x77\x8d\xc8\x0b\xba\xd6\x01\xe9\xbf\xcf\x77\x9d\x65\x45\x65\x38\xff\x3a\xf9\x4b\xd7\xf9\xd0\xfd\x7c\xe8\xdc\xef\xc8\xcb\xfd\xfe\x4c\xee\x14\xce\x73\xba\xd3\x6a\x56\x3a\x22\x6b\xb2\x7d\xee\xad\xa5\x4b\xe4\xed\xb0\x1e\x65\x86\x62\x97\x9e\x97\xca\xb0\x1f\x98\x63\xa3\xf4\xc2\xf9\x44\x4a\xeb\x90\x19\x3e\x57\x7a\xe5\x7c\xf6\xea\xc1\x2e\xdc\xef\x9d\x9a\xea\xd2\xe1\xbc\x6e\xcc\x93\x51\x7a\x57\x7b\xdd\xdb\xcb\xd7\xdf\xc4\xe1\x2e\x76\x87\x8c\xd0\x21\x33\x10\xaa\x20\xa5\xf3\xf7\xd3\x83\xe8\xc8\x46\xba\x6e\x57\x7d\x7a\x77\x28\x32\xf5\xa9\xa9\x71\x6f\x5c\x23\x8b\xe9\x12\x6b\xbb\x8b\xb5\x8c\xa3\x29\x5d\xb7\xab\xbe\x7d\x18\x14\xb5\xfa\x56\x3f\x5d\xe4\x35\xb5\x77\xf3\xe8\xec\xb7\x47\x56\xf0\x58\xed\x22\xb5\xfe\x92\x1a\x8f\xce\x2e\x52\xeb\x2e\xf2\x32\x3d\x78\x31\x6a\xbf\x8b\xc7\xd8\x65\xe3\x16\x34\x69\x61\x3c\x76\x2e\x53\x73\x5c\x4c\xb7\x32\x0f\x4e\xb3\xcc\x5b\x92\x69\xcb\x7b\x48\x59\x36\x1e\xc7\x88\x20\xfb\x7e\xde\x5e\xf6\xad\x83\x49\x3c\xf5\x60\xa4\x4c\xbf\xc7\x62\x74\x87\x28\x1e\x20\x94\x8d\xdb\xd3\x74\xe3\x7e\x03\x7f\x18\x0f\x5b\x8c\x26\xda\xe2\xe1\x24\x99\xa9\xbc\x0b\x42\x41\xbe\x9f\x60\x77\x8c\x93\x28\x46\xf3\x6d\xf1\x80\x88\x6c\xbc\xea\x98\xc8\xd0\x5e\x32\x24\x2b\x34\xdd\xd8\x3c\xb4\xc0\x08\x4b\x58\x10\x27\xf0\xfd\x6c\x30\x32\x5f\x5c\x07\x1d\xb9\xee\x60\x6f\x59\x63\xa0\x06\xb1\xb8\x2b\xb9\x11\x4f\xaf\xc0\x43\xf9\xfb\x09\x13\x19\xdd\x99\x8b\x6d\xd5\xb9\xdd\x6f\x92\x6c\x04\x3e\xc2\xdf\x4f\x98\x99\x99\x52\xbc\x98\xe8\xd3\xdd\x80\x0b\x03\x98\x8a\xe9\x6a\xe5\xae\xb9\x4a\x08\x58\x4c\x74\xe6\x1e\xa5\x46\x44\xb5\x32\x74\x7c\xb8\x77\xa5\x11\xca\xac\x0c\xd1\x19\x12\xe8\x06\x2b\x64\x93\xc8\xa0\xfb\xfd\x84\x83\xfb\xc5\x2b\xd2\x90\x58\x3b\x20\xd6\x16\xa6\x31\x2f\x43\x57\xa4\x81\x88\x3b\x2b\x9f\xb6\xbd\x0c\x69\x6f\x06\x22\xd8\x8c\xc1\x66\x65\xe8\xd8\x81\xa3\xda\x29\xfb\x68\x62\x48\x34\x18\x2e\x1a\x30\xd2\xa4\x0c\x69\xed\x06\xb4\x76\xe5\xa2\x86\x6d\x88\xf7\x0c\x17\xb5\xe8\x00\x5e\x86\x78\x08\xf2\xb3\x9e\xb2\x6f\x3e\xc7\x22\x2d\x0d\xb8\xdd\x17\xa6\x3d\x2f\x43\x57\x6a\xe4\x59\x0d\x56\xb8\xdf\x87\xd6\x76\x40\x6c\x30\x69\x3e\x86\xd6\x6f\xf8\xfa\x11\xec\xa7\x0c\xf1\x90\x71\x7b\x5f\x28\xf2\x0e\x5d\x9b\xc7\xe3\x75\x52\x9d\x30\x2f\xce\xe7\xbc\x7c\x8d\x28\x9a\x23\xe9\xe8\xf7\xd3\xeb\xe4\xb5\x79\x6a\xae\x91\x0b\x34\x14\x3a\x18\x94\xa9\x3d\x3d\x8b\x3b\x64\xa8\x3d\x1d\x2d\x13\x47\x4b\x91\x16\x14\x49\x41\xbf\x9f\x4e\xbb\xdc\x9b\x93\x46\xfd\x82\xdc\xa0\xa1\x30\x35\x49\x41\x72\xd0\xef\x27\xf6\x18\xdd\x98\xca\x6c\xea\x67\xf3\x7e\x52\x4b\x38\x25\xee\x4f\x84\x56\x99\xd4\x25\x53\x9a\x9d\x09\xcd\x4e\xb9\x28\x9a\xcf\xae\x39\xeb\x3e\x67\xe4\x3d\xd3\xd4\x17\x7b\xcb\xbe\x75\x98\x12\x61\x26\xae\xbf\x45\x9a\xce\x39\x35\xbe\xe9\x65\x54\x97\x4c\x9a\xf5\xcb\xf4\xd8\x12\x69\x25\x27\xcd\xfa\x05\x39\x3f\x43\xa1\x1b\x54\x99\xba\x76\x4d\x5c\xad\x0a\x1d\xa1\xca\xdc\x2a\x73\xfe\x42\xb7\xa6\x32\x75\x8e\xcd\x37\x50\x20\xb1\x2f\xba\x52\x4f\x44\x04\x14\x69\x2c\x91\x14\xf4\xfb\xe9\xfd\xe4\x9e\x9e\x3a\xff\xe6\xfd\x06\xbb\xa8\x4e\xb5\x77\x3f\xff\x47\x20\x4c\x99\x8f\xe6\xf3\xf1\x79\xa1\x76\xf1\xff\x65\xec\x3b\x8e\xac\xe9\x79\x5e\x53\xf9\x43\x68\x39\x92\xda\x7c\xb9\xc8\x74\xe7\x1f\xc2\x2d\x41\x73\x80\xe7\xee\xde\xdd\xd4\xa8\x4e\xcb\xd3\x42\xe0\x92\x39\xb5\x60\x4e\x75\xf2\x82\xb4\xc5\xac\x71\x5b\x17\x00\xae\xe8\xe2\x62\xe6\xad\xad\xe7\xf6\x47\x93\x7e\x49\x2e\xa1\xe6\x67\xea\x0a\x69\x2d\xb9\xdb\xab\xdc\x39\xf0\x8e\x2d\xdd\x95\x55\xef\x3e\xfc\xe0\x79\x6d\x55\x8d\xb3\xde\x39\xfc\x20\x08\x6d\xc9\x8c\x5e\x30\xa3\x9b\x42\x61\x4b\xae\xce\xba\xc0\x26\x56\x4f\x6f\x8b\xd9\xd8\xb6\xee\xbb\xb8\xc4\x28\xf6\x52\x98\x65\x01\x3e\xd2\xf9\x3e\xbb\x2d\xb9\xf7\xeb\x3e\xc2\x4a\xd4\x01\x6b\x6a\xcd\x26\xee\xa6\xc2\x41\x4b\x21\x11\x94\x4f\x4c\x2d\xd3\x05\xdc\x5a\xcf\xfd\xdc\x67\x7d\x34\x09\x37\x21\x1d\x6d\x23\x84\xd6\x58\x11\xbd\x6d\xb9\x80\xfb\xba\x80\xd6\xd4\x36\xd5\xb6\xee\xef\x7e\x6b\xb6\x99\xc9\x6c\x1b\xe1\xae\x4e\xfe\xf6\xb6\x75\xa7\x77\xfc\x7d\xf3\xb7\x47\x9b\x59\xea\xb6\x91\xa5\xee\x0a\x85\x6d\x02\x9f\xda\xbe\x6f\xaf\xc8\xdc\xd4\xb6\x42\x99\xa8\x36\x77\xda\xd8\x9f\xee\xc3\xbe\xf7\x21\x53\x07\xec\xb7\xa9\xed\xae\x27\x23\xea\x28\x43\xf7\xfb\x13\x76\x88\x79\xff\x6f\xe6\xf0\xfe\xd4\xe5\x7d\x62\x92\x35\x7d\x05\xea\x37\x5e\x8a\x74\x45\xca\xb6\xbc\xf8\xfd\xdd\x69\xd0\x2b\x7b\x95\xf4\x79\x11\x21\x6d\x2c\x57\xda\x5e\xa9\xe3\xf7\x1e\x6d\x3e\x1b\xbe\x18\xf5\xdf\x9f\xf7\xf5\x13\x8f\xef\x2b\x4f\xe1\xb5\xfb\x4d\x26\x61\x5e\x99\x76\x2f\x1e\x1a\x77\xe3\x31\x7c\x25\xb2\x51\x8c\x2d\x75\xa2\x98\xda\xab\x88\xe5\xeb\x77\xee\x34\x09\x5f\x79\x8f\x2f\x92\xca\x4d\xd1\x9b\x57\x11\xaf\xd7\xff\x5e\x9e\x36\xb6\x69\x7e\x78\x83\xdb\x9d\xd1\xcc\x97\x68\xea\xf6\xe2\x21\xa4\x5e\xbc\xb4\x57\xa6\xdd\x7b\xaf\x0b\xab\xf6\xb5\x57\x91\x01\x60\x0e\x4e\x1b\x7f\xa7\xc8\xc0\xbb\xff\xde\xa6\xb0\x3f\x1d\xb5\x17\x47\xad\xf3\xd5\x52\x7b\xe5\xad\xbe\xf7\xb9\x96\xa2\x29\xaf\x4c\x03\x60\x15\x4e\x1b\xfb\x93\x58\xbe\xe0\x85\xee\x54\x03\xef\xab\x35\x83\xc8\xee\xae\xb1\x7c\x9a\xfb\x77\xe7\xce\xe8\xf7\x2b\x93\x02\xe5\xd7\x4e\xdb\xef\x77\x9f\x44\x2f\x0a\xa5\x25\x95\x0a\x6d\x9f\x12\x88\x1f\x12\x88\x4d\x11\x9a\x4f\x09\xc4\x2f\xdd\xf5\xa4\x8a\xf8\x94\x2c\xfa\xf2\x1d\x0b\xd5\x80\xc0\x0b\xed\x82\x17\x9a\x22\x34\x9f\x44\xe8\x77\xa3\x45\xae\x6f\x9a\x7e\x67\xf7\x77\xa6\xb6\xae\xb6\x7d\xdb\x7e\x6b\xfd\xe9\x7c\x7e\xd7\xa4\xe0\x73\xd1\xf6\xe9\x2c\xa1\xc0\xd8\x69\xe3\xef\x88\xd5\x6a\x5f\xdc\xb5\xa6\xa8\x10\x40\xa1\x7d\xd7\xa4\x50\xa4\xe5\x93\xa8\xff\xfa\x7d\xe1\x4b\x13\xe6\x53\xa6\xe8\x43\x32\xba\x11\x68\xd0\xf0\x68\xe9\xf7\xe7\x1d\x0b\x4d\x98\x4f\x6e\xf3\x77\x5f\xeb\x92\x8a\xa9\x7d\xca\x06\x7d\x48\x46\x77\xa7\x8b\x2b\xa4\x60\xbb\x48\xc1\x4e\xb2\xef\x26\x60\x43\xbb\xc0\x86\xc6\xc7\xba\xed\x93\xb9\x01\x1c\x43\xea\x4e\x77\xf4\x53\x04\xff\x82\x17\x1a\x6b\xd9\xb4\x4f\xf7\x01\x38\x86\xf3\x3b\xce\x5d\x26\xef\x05\x2f\x74\xd2\x4c\x37\xd4\xe4\xfa\xfd\xb9\x6e\xdb\xdf\x37\x4d\xf8\x43\xbb\xf8\xc3\xce\x67\x7e\x26\xe4\xb8\x5d\xe4\xb8\xde\x28\x9b\xb0\xe3\xf6\x5c\x5e\x18\x16\x5f\xb1\x87\xb8\x66\xbb\x00\x85\x46\x80\x82\x09\x9d\x68\xcf\x65\x03\xe1\x93\x51\x7b\x08\xe6\xb1\x5b\x13\xab\x33\x72\x6c\x4f\xfb\xd8\x66\x57\x2e\xfd\xcc\x4c\x43\xfd\xaa\xdf\x9f\xb8\x47\xac\x38\x62\xa8\x4c\xf5\xfb\x73\xdc\x36\x7e\xd3\x34\xbf\x7b\xae\x49\xef\x61\x8f\xa9\x3f\xbf\x44\x16\x95\xfd\x11\x5c\x63\xa8\x19\x75\xc6\xc2\x6f\xf2\xec\xda\x03\x70\x4d\x27\x1f\xb1\x3d\xa1\xfe\xe2\xaf\xbf\xf8\xb5\x75\xfd\xee\xba\x5d\x0c\xa5\xd8\xd3\x35\x96\x71\xc7\xd2\x38\x96\xa1\xb1\xdc\xf7\xec\xbf\x07\x39\x8f\x09\x2c\x61\x78\x9a\x92\x1a\x8b\x5e\xd8\x33\x35\x96\xab\xe2\xab\x71\xcd\xb6\xf6\xef\x02\x68\xc8\x6d\x6b\x0f\xcf\xa0\x3d\x57\x26\x93\x7c\xdd\x9e\xad\x71\xde\x17\xb3\x2c\x20\x61\xcf\xa7\xf3\xf2\xfd\xb5\xb1\xbf\x4f\xfd\xe1\x89\xa7\x2a\xe4\xda\x43\x57\xdc\x9e\x2b\x5b\x19\x86\xb0\xc4\x28\xa1\xa5\xe7\xde\x95\x9f\x2c\xb0\x44\x33\xcc\xd2\x35\x6b\x09\x7a\x30\x01\x30\x2c\xa5\xfb\xcd\x1f\x42\xd6\x52\x9e\x6c\x03\x80\xa6\x33\x72\x6c\x89\x66\xad\xe1\x31\xcc\xf9\xdd\x6f\xff\x12\x43\x3e\x96\x70\x76\x1b\x69\x91\x2c\x55\xf5\x77\xcd\x37\x52\xbe\x5b\x6a\x9a\x43\xfb\x7b\xed\xcc\xf9\x11\xd7\x6d\x28\xa0\x94\x3a\x99\xe0\x2d\xe9\xcc\xa7\xeb\x02\xb6\x5f\x54\xd2\x04\xce\x30\xd4\x51\x3a\x6d\x9c\x3b\x43\x45\x06\x9c\xc6\xf9\x26\xc7\x42\xa0\xa4\x25\x00\x25\x1b\x09\xc8\x2d\xb9\xd6\xf3\xda\x0c\x24\x17\xb7\x44\x33\xd3\xd2\x65\xe5\x20\x0d\xb8\xe9\x45\x85\xa5\x6b\x9a\x33\xd4\x60\xa9\x6b\x0e\x20\xab\xe8\xa4\x85\xb5\xd4\xb5\x2e\xc8\x42\x34\x82\x3a\x2c\x0d\xed\xd1\x35\xdb\x59\x98\xd2\xd2\x54\xdb\xbc\xfb\xf7\xcb\x26\x58\x5a\x5a\x17\x64\x4e\x1b\x69\xaa\x2d\x6d\xed\xed\x95\xad\x8c\xa8\x5b\xfa\xb4\x2e\xdf\x5d\xcf\xc6\xb9\x7f\x5a\x97\xef\xde\x87\x9f\x3d\x68\x7a\x17\x62\x17\x0c\xd2\xf8\x62\xca\x32\x33\x45\x96\xaf\x9b\xc0\xf0\x85\x65\xbe\x28\xb2\x9c\xee\x7a\x9a\xfd\x27\x73\xd8\xb2\xc4\x79\xbe\xe2\x9c\xcf\xd3\x2c\x17\x7d\xb6\xdc\xad\xe0\x14\x33\x9f\xf5\xd8\x1f\x8e\x84\x41\x7c\xcb\x3a\xf6\x28\xfc\x73\x7e\xf7\xdb\xc2\xac\x63\x8f\xa2\x3f\xa9\x91\xf6\xc5\x04\xf1\xb6\x0c\xe6\xa3\xce\x20\xbe\x65\x02\xfe\x0d\xe5\x7b\x4e\x1b\xfb\xa3\xd9\x60\x39\x2e\xed\x49\xe7\x38\x99\x5c\xb4\x1c\xf7\x58\xf0\x0a\x0a\x63\x62\x17\x63\xd2\xc8\x91\x65\x02\x91\xd8\x05\x91\x34\xf2\x7e\x5a\x96\x28\xcc\x57\x14\x5a\xe2\xef\x96\xd6\x13\x64\x0f\x9d\x0c\x12\x96\x75\x9c\x32\xd4\x7f\xe3\x1b\x7a\xcb\xc4\xd6\x1a\xca\xd2\x9c\xdf\x71\x9c\x4b\xfd\xad\xbf\xfe\x8c\x6d\x9a\x3b\x30\x8f\x22\x65\xb2\xbc\xb5\x47\x37\x4a\x41\x92\x4a\xcb\x34\x1b\xec\x82\x4f\x1a\xc1\x20\x96\xb7\xd6\x1a\xec\x08\x8d\x34\x8c\x96\x5f\x8d\xe5\x46\x1b\xe8\x1d\x5b\x66\xb4\xc1\xf2\x77\xe7\x4e\x35\x2e\x80\x89\x5d\x80\x89\x78\x88\xac\xf0\x09\x88\x95\xbf\x27\x20\x54\x9d\x02\x83\xd8\x05\x83\x34\xd2\x8d\x58\x21\x9e\xdc\x2e\xe0\xa3\xf3\xd1\x96\x95\xaa\xdf\x21\x32\xd0\xbb\xfa\xab\x5c\xb3\xd2\xee\x9a\x51\x4c\x16\x89\xc2\x72\x45\x21\xeb\xa3\x59\x71\x8d\xd3\xef\x38\x7f\xde\xb1\xe9\x29\x81\x95\x1b\xf1\x62\x09\x30\x43\x9d\x95\xdf\x9f\x10\x15\x24\x86\xb0\x42\x33\xd3\xca\x25\xa0\x21\xfb\x92\x95\xa1\xb1\x5c\x33\x93\xb5\x8b\x4c\xcf\x13\xac\xfc\xed\x3b\xef\x6d\xd9\x1a\xe7\x75\x91\x8c\x77\xac\x48\xe5\xa2\x98\x48\xea\x5d\x73\x78\xb5\x66\xef\x5d\x6b\xaa\xc0\x22\x91\x76\x81\x1b\x8d\x4f\x2c\xac\x32\x4a\x61\xf5\x46\x29\x8c\xf7\xb6\x32\x5b\x62\xf5\x66\x4b\x48\x2a\x6a\x95\xd8\x53\xab\xf9\x9e\x79\xce\xaf\xe6\xa5\xb6\x7b\xe6\x79\x6f\x2b\x13\x7a\x56\xcb\x9d\x03\xe5\x52\x25\xb8\xc6\x2a\x88\xa7\x9a\xff\xa2\x84\x56\x75\xdf\x2b\xd4\x47\x63\xdd\x23\xab\x43\xe3\x04\xab\x4f\x23\xdf\x87\xd5\xb1\xd5\x76\x89\x64\x78\xc7\xea\xe4\xde\xd6\x1b\xc5\x26\x95\x8d\x55\xc9\x82\x7a\x99\x60\xe8\x1e\x5a\x5d\xfa\xe6\xba\xdf\xcc\xfc\xe6\xab\x71\xde\xa8\x88\x17\xfe\x8e\x51\x11\xab\x48\x7e\x37\xe7\xb9\x6e\x5a\xcf\x86\xe7\x81\xcd\x79\xce\x1a\xb1\x7d\xd6\xca\xa5\x33\xe3\xb9\x6e\x92\xd7\xed\x9a\x29\x04\x8a\x58\xd3\x3d\x6a\xf5\xb6\xf1\x5c\x37\x46\xaa\xad\x81\x06\xe0\x79\x68\xd2\xb7\xa6\xfe\xae\x5b\xe9\xc6\x71\xca\x84\x69\xc7\x84\xc9\xcf\x43\xb3\xa1\xc9\x4c\x69\x37\xec\xc1\xea\x38\xd6\x64\x7e\xb7\x6b\x7e\xb3\xb0\x8d\x35\xd7\x58\x2e\x8b\x99\x5c\x96\xc6\xd0\x86\x81\x42\xff\xb4\xfd\xe4\x59\x0b\xf5\x77\xf9\xc0\x58\x78\xc6\x9a\x4c\x91\xf6\xc7\x9e\x15\xfc\x66\x9f\x6a\xbb\x6b\xcd\xfb\xd0\x74\x96\xda\xdf\x59\xea\x5c\x6b\x99\x22\x17\x44\xd2\xc8\xdc\x68\x8d\x8f\xd3\xac\xcd\xcb\x1d\xc9\x33\xdf\xf8\xc4\xc9\xf0\x3a\xf1\xac\x19\x7f\x27\x7d\x74\x9f\x1d\x36\xb9\x10\x6d\xea\x9b\x78\xb8\xf6\x10\x2f\x6f\x6d\x69\xee\x28\xeb\xfa\x10\x2f\x6f\x6d\x69\x9c\xa0\x13\x6a\xac\x21\x62\x4d\x67\xb0\xbd\x97\x73\x84\x7a\x0c\x5c\xf6\xbf\x3f\xfb\x6d\xe3\x9a\x49\x77\xb4\xf7\x8e\x93\xee\x61\xfb\x74\x76\xbf\xdb\xc6\x33\x61\x0c\xaf\x99\xa1\x3c\xd9\xc3\x6c\x97\x19\xc1\x4a\x06\x56\xfb\xf3\x3b\x63\x5b\x57\xdb\x7d\x50\x9a\xf5\x3b\x9e\x79\xfb\x7b\x60\x57\xd8\x1f\xc3\x2c\x66\x37\xcc\x42\x66\x1f\x33\x66\xe5\xec\x92\xe2\x3f\x4f\xd5\xef\xf4\xcd\xfc\xc7\x08\xc4\xfe\xb2\xbe\x99\xef\x5a\x53\xc7\x99\xdc\x5f\xbb\xee\x2f\xab\x48\x98\x49\xd6\xd9\xb5\xc1\x08\x30\x31\x93\xde\xb4\xab\x37\x65\xee\x0b\x20\x64\x60\xb2\x3f\x6d\xfc\x26\xb3\x4f\x76\x29\xe6\x9f\xe7\x9f\xb6\xad\x36\xdc\x77\x99\xd8\x7a\x36\x6a\x66\xf7\x0c\xd2\x75\x14\xb0\xc8\xec\xd2\x25\xf2\xd9\x9b\x09\x3c\x64\x00\x0f\x9d\xdf\x75\xb6\x69\xcd\xec\xf6\xe7\xec\x4f\xae\x87\xdd\x70\x65\x50\x3f\x98\x5c\x0f\xbb\x77\x5a\xe6\xb7\x85\xd6\xf3\xea\xe2\x63\xd3\xfe\x27\x73\xd8\x42\xdb\x1b\x77\x7b\x29\xb6\x4c\xe2\xc0\xae\x38\x08\x7a\x8f\xd6\x35\x9c\x6b\x2e\x92\x95\xc9\x4c\x5e\xb5\x5d\xaf\x5a\x66\xad\xe9\x7a\xda\xba\x5b\xe1\xfc\xdd\xd2\x37\x6f\x02\x8a\x14\x81\x66\x5b\x4b\xb3\xef\x71\x0a\xb5\xe9\x58\xa0\x32\xc5\xf3\x68\x9c\x5b\x5b\x71\x13\xdc\xac\x47\x60\xa6\xab\x6b\xef\xb8\xbf\xe3\xf1\x7d\xb5\x4d\xe0\x28\x79\xf8\xac\xc1\xc0\xc0\xfe\xfb\xf3\x92\x36\x25\x8e\x45\x9e\xfa\xc5\x63\x35\x52\xfb\x9a\xc9\x24\xb4\x6b\x12\x76\xaa\x0f\x80\xb0\x7e\x7f\x5e\xd5\xc2\x35\x73\x79\xf1\xfe\xfc\x31\xfb\xfe\x8e\x85\xcb\x9d\xf1\x7b\x75\xc9\xf7\x6f\xce\x97\xf5\x06\xca\xf6\xd4\x08\x76\x31\xcf\x9c\x83\xe7\x2b\x62\x18\xa1\x71\x46\x4f\xcd\xef\xf5\x24\xe1\xbe\xb9\x54\xae\x03\xd4\xd1\x48\xbe\x6f\xce\x24\x8c\x79\xc5\x59\x62\xc2\xd2\x9c\xa0\x0e\xbb\x18\x2f\x71\x85\x99\xb7\x7f\xda\xee\x38\x79\xcd\x5c\x51\x26\xbf\xd1\x53\xf2\xd0\x9b\xbb\x7e\xe7\xf7\x77\x3c\xbb\x60\x0e\xff\xfb\xf3\x32\x43\x92\xba\xdd\x5c\x9e\xb3\x77\xa8\xe3\xa4\x7d\x20\x8e\xd2\xbc\xdf\xf3\x42\xd5\xe9\x52\x57\x3e\xff\xbe\xc9\xdf\x4d\xad\xd9\x8d\xee\x13\x98\x62\x2e\xd3\xd5\xaf\x5b\x42\x0e\x00\x73\xb9\x25\xbe\xef\x58\x18\x19\x70\x79\xdc\x80\x9e\x9d\x36\xf6\xf7\xea\x9b\x37\x5a\xc4\x97\xfe\xe6\x7c\x9a\x61\x0e\xb7\x44\x64\x7a\x26\xbc\x99\x01\x6f\x96\x1f\x26\x6b\x2d\x88\xed\xb3\x00\xb6\xcf\x48\x48\x6a\x21\x93\x37\x2e\x1f\x37\x9f\xe0\x59\xe8\x9c\xc5\xd1\x08\xe7\x9b\x6c\xcb\x14\xcb\x71\xc9\xb0\xf9\x3c\xcf\xa2\xa8\x0d\x8c\x48\x0f\x39\x20\x2d\x98\x3c\xb5\x28\x97\x10\x90\xf7\x28\xf8\xdc\xd1\x02\xcf\x1d\x8d\x40\x18\x0b\x3e\xf3\xb1\xa8\x77\x0e\x34\x5d\x43\x6a\x20\x70\x06\xed\xa1\x79\x1a\x4d\xeb\x82\x24\xa1\xc9\xdc\x88\xae\xb6\xcb\x10\xfa\x68\xcd\x86\xe6\x30\xee\xfc\x18\x3d\x0d\xb9\x33\xc0\x9d\x25\x93\xea\x0c\x9d\xa5\x0b\x36\x33\xa9\xc7\x60\xa6\xc8\x62\xde\xfd\x63\x14\x34\x64\x62\x07\x4c\x6c\x7b\xa8\x02\x43\x51\x49\x60\xd2\x4e\x9b\xb3\x4d\xfd\xc1\x0d\xb2\x87\x91\x96\x78\xf5\xbb\xf7\xfe\x8e\x26\xaf\x00\x65\x16\x97\x3a\x4e\xfa\x21\x18\x35\xb7\x00\x5d\xd7\x93\x18\xa1\xe9\x8a\x2e\xfe\x11\xcb\x13\xf0\x61\xa0\xe3\xfe\xfd\x09\xb9\xcb\xf7\x23\xd6\xb5\x0f\x17\xe0\x65\x64\x86\xb0\xde\xf4\xbb\x76\xc7\xc2\x3b\xd6\xa5\xaa\x2f\x47\xb2\xb1\x7a\x97\x81\x6d\xf8\xf7\x27\x98\xfb\x08\xce\xb0\x2e\x53\xf9\x12\xf9\xda\x43\x77\xa6\x4b\x37\xf6\xab\x1b\x93\xbe\x29\x73\xf8\xb2\xb5\x9a\xe4\x67\x9f\x1a\xcb\x35\x5d\x93\xbe\x29\xf7\xa9\x5f\xf3\x34\x53\xc7\x75\x99\xa0\x7f\x04\x96\x64\x0a\xb0\xbe\xfe\xf9\xdd\x77\x7f\xf7\xdb\x87\x2e\xf3\x14\x0c\x89\xf9\x21\x63\xa4\x0d\x99\x68\xc0\x50\x25\x4b\xd4\x1d\x43\x77\x6c\x80\x10\xdd\xc8\x62\x63\x83\x7c\x45\x36\x2a\xf6\x28\xd3\x54\x1e\xc4\x82\xda\x40\x05\x9f\x87\xf4\xe4\x36\xc8\x57\x64\x03\xdc\xdd\x96\x68\x4a\x0e\xb9\x41\x03\x91\x5c\x4b\xd4\x1d\x43\xee\xcc\x70\xe8\x3f\x26\xd4\x6d\x04\xf7\x6f\x80\x41\xc1\x58\x4c\xcb\x86\x22\xff\x63\xdc\xf5\xa4\x5e\x19\x43\x63\x19\x77\x2c\x6a\x93\x2b\x30\xd6\x6d\xa3\x7b\x38\x64\x4f\x5c\x50\x95\xf1\xc9\x98\x0d\xd9\x13\xe3\xca\x64\x66\xd3\x6d\xca\x6c\x9f\xd7\x6c\xcf\xcc\x18\x4c\x65\x83\x66\xbe\xac\xf8\x6a\x23\xee\xdd\x66\x81\x0e\xc8\xd4\x55\x53\xe1\x20\xe0\xab\x92\x91\x59\xc2\xa6\xb2\x41\x13\x9c\xef\xc6\x77\x5f\x36\xb5\x7f\xf3\x6f\xff\xa8\xc7\xa6\xee\xd1\x6c\xb0\x97\x98\x85\xb7\xc9\x2c\xbc\x5d\x70\x94\x25\xde\xbf\xa9\xbb\x32\x61\x82\x8a\xb1\xd9\xa6\x32\x3e\xf3\xb2\x4a\x27\x66\x0c\xa6\x42\x92\x33\xee\x39\xa3\x7b\x38\xf9\x9c\xda\xe6\xf8\xfe\x3f\x72\x61\x9b\x8b\xe7\x7a\x22\xb4\x68\xf9\xe1\x1c\x14\xea\xbb\x80\x24\xcb\x89\x73\x97\x4e\x9d\x57\x0e\xe6\xd4\xfe\x9b\x39\x2c\xdc\x91\x5d\xdc\x91\x65\x9a\x06\x4b\xdb\x04\x68\x4f\x32\x3e\xe5\xb1\x25\xb5\xb3\xea\xa5\x21\xe7\x75\x59\xba\x12\x0b\x45\x62\x9e\x42\xef\x71\x29\xca\xbb\xc0\xab\xf8\xf0\x39\x84\x2d\x79\x26\xcb\x2e\xf9\x39\xd5\xea\x52\xb2\x61\x21\xd9\x60\x3a\xf6\x4b\xc9\x86\x15\x97\x74\xf5\x87\x93\xb1\x15\x4d\x6d\x77\x0e\x4c\x6e\x2c\x25\x1b\x56\xbf\xcb\x4d\x15\xb1\xf8\xe4\xc1\x16\x92\x6f\xa6\xa3\xbd\x24\xee\x16\x6a\x9e\x3f\x45\xeb\x42\x2c\x9a\x2d\x60\xd1\x4c\x47\x7b\x29\x11\xb1\x2e\x3b\x71\xa6\xb7\xb3\x96\xe6\xb0\xee\x7a\xf2\x18\x2e\x1d\x8b\x75\x8e\x45\x7e\x8a\xd6\x7a\x69\x9c\x97\x36\x98\x8c\x14\xb6\xb6\xc6\xb9\xef\x38\x29\xb6\xd6\xd6\xef\xf6\xb8\x6d\x9c\x9f\xae\xfc\x42\x61\xbb\x87\x5c\xa0\xb6\x14\xb9\x5a\x7f\x04\xb7\x74\x21\x96\x5c\x88\x8b\x81\x32\xb2\x55\xd8\x26\x8e\xd2\xf6\x73\xcf\x19\x8f\xfd\x26\xa6\xda\xf6\x5f\xdd\x0e\x1e\xfb\xad\xe4\xdb\xce\xf7\xbc\x50\xfd\xef\xc2\x75\xd9\xe5\x32\x09\x27\xb5\x85\xda\xfa\x6d\xcb\x6c\xdb\x6a\x7b\x6f\xdb\x6f\xee\x5b\xa2\x62\xb7\x3f\x1a\x66\x8e\x53\x1e\xf0\x46\xe5\xa1\xa7\xd0\xdc\xd8\xa6\xdf\xd9\x5f\xed\x91\xdf\xde\x6e\x89\x91\x7d\x55\x2e\xc1\x27\xb6\xe5\xc9\xee\xb8\x6d\x85\xbf\x53\x72\x78\x5f\x35\x50\x18\x09\xdc\x72\x47\x37\x88\x31\x1f\x96\xb3\xb2\x3d\x28\xce\xf7\xb8\x6b\xc6\x84\xd7\x9e\xea\x0f\xc4\xdc\x0f\xc1\x19\xb6\x49\x6c\x63\x1b\xee\xa8\x15\x46\xe2\xf7\xd6\x7a\x5e\xc6\x65\x3e\x01\xb2\x4d\x70\x8d\xed\xf7\x9e\x4f\x9a\x29\xfb\xd5\x58\x40\x44\x2c\xb6\x67\xdb\x72\x1d\xf7\xf7\xd7\xf6\xeb\xef\x25\x6e\xda\xde\x74\xdb\x28\xea\x5f\x62\x10\xed\xbd\xaa\x85\x6c\xe3\xf6\x2a\x0a\xf3\xe6\x7b\x26\x78\x8f\x5e\x9d\xa5\x37\xdf\x62\x1e\x1c\xe7\x2b\x13\xfb\xfd\x3b\x13\x34\x99\xde\xaa\x6f\x22\xd2\x62\xac\x2d\x61\xaf\xcc\xb7\xf7\x46\x48\xc9\xaf\x6e\xaf\x64\xdd\x7b\x29\xac\x48\xf5\x67\xaf\x5c\xc0\xcb\x6a\x63\x95\x11\x3d\x31\xd7\xd8\x65\xae\xb1\x4a\xd3\x47\x00\x2f\x7b\xf1\x24\xd5\x2a\x4d\xa6\x57\xae\xdc\x0b\x57\x4e\x8c\xe1\xf6\xca\x34\x7f\x41\x7b\xf9\x54\x26\x95\x5f\x9d\x17\x90\xca\x9c\xdf\xf1\x9b\x32\xbf\xdf\x6b\x7e\x93\x3d\xc2\x5e\x99\x6f\xef\xfa\xe3\x94\xe6\xef\x14\xbe\x78\xf7\x5f\xb9\x28\xce\x4f\x51\xc2\x17\xcc\xb9\x8f\x80\x22\xaf\x42\x06\xef\x77\xe7\x4e\xd9\xf3\xf1\x79\x97\x7d\xcf\x2d\x6d\x40\xd7\xe3\x53\x58\xe0\x02\xa7\x4c\xe0\x8c\x4f\x67\xe9\x4b\x90\x75\xac\xb6\x63\x9f\xc2\x02\x5f\xbe\xeb\x59\xd9\x9f\xc2\x02\x5f\xbe\x6b\xc6\x39\x7c\x3a\x4b\x5f\xbe\x73\xa7\x3e\xfa\xe4\xe6\x7d\xb7\xfe\x0f\x19\x29\xec\x23\xbe\xdb\x3e\xe0\xbb\xad\x32\x12\xff\xb5\xa1\xb6\xbb\x0f\xbc\x2b\x1f\xb1\xdf\x06\x52\x99\xfc\xfc\x33\x3f\x9d\xa5\xef\xef\x2c\xd1\x9d\xf9\xe4\x0a\x7c\x76\xeb\xd5\xf0\x8e\x7d\xae\x6f\x5e\x9d\x5a\x69\x6a\x7d\xa1\xb9\x07\xe4\x8b\x00\x26\x9f\xdc\x84\xef\xba\x09\x64\xd5\xb0\x4f\xa6\xeb\x17\x7f\xdf\x64\x7f\xc4\x7e\xdb\x07\x1a\xb2\xe7\x9f\xf9\x09\xb4\xf2\x8d\x7b\x5e\xa8\xc7\xc4\x40\x63\x97\x81\xc6\x04\xea\xf8\xf8\xfc\xd0\xbe\x6b\xd6\x0a\xb8\xf1\x29\xbc\xf6\xad\x3b\x07\x66\x1a\xc4\xfa\x62\x97\xf5\xc5\xf8\xd6\xc3\x3e\xb9\x17\xdf\x95\x67\xff\xcc\x41\xf6\xd2\x77\xed\x25\x81\x3a\x3e\x85\x21\x3e\xd4\xc8\x7f\x08\x4c\xf1\x87\x58\x6c\x7f\x9e\x5b\xef\xeb\x77\x6f\x5d\x14\x9e\x0e\xe2\x98\xfc\x70\x7e\xfe\x10\x98\xe2\x97\x11\xc6\x08\xdc\x70\x81\xaa\xfc\x82\xaa\x8c\x00\x0c\x7f\xe8\xfa\xfb\x73\x5d\x7f\x82\x2c\xfc\xe1\xbe\xfb\x83\xe7\xcd\xc6\x42\x40\x2e\xf6\x16\x07\xfe\x28\x19\x79\xf3\x5d\xf4\xb8\x7e\x59\x58\x8c\x4c\x16\xfe\x4c\x8d\xe5\xda\x3d\x04\x44\xf8\x43\x59\xe0\xcf\x0d\x65\x12\xd0\xe2\xa2\xac\xf5\x0b\x2c\x32\xd2\x8c\x7b\xe2\xbd\x75\xe0\x73\x92\x91\x0a\xd6\x13\xdf\x5a\x79\xca\x70\x4b\xda\x4f\x66\xb9\xa8\x67\x1d\x38\x9b\x5b\xf1\xe4\xbf\x98\xc3\x2e\xf6\x59\xbf\xec\xb3\x0f\x9f\xc8\xb8\x78\xed\x1c\x70\x9a\x64\xac\x27\xe5\x89\x6a\xdc\x53\x40\x54\xb0\x3e\x93\xa7\xd0\x70\xae\x37\x40\xf0\x82\x27\x26\x87\x3d\x81\x7d\xf6\x61\x69\x79\x4f\xc4\x20\x7a\x02\xfb\xec\x43\x32\x12\x4f\x53\xdf\x9c\x97\xe0\xfe\xe1\x37\x97\x7e\x77\x4b\x4b\x10\xbc\xe0\x69\x6b\x0e\xa8\xc6\x60\xac\x66\xe6\x89\xc7\xde\x13\x12\x8f\x66\x5a\xd2\x57\xcb\xfd\x57\x1c\xe0\x97\xbc\xf1\xc4\xa8\x88\xa7\xef\x32\x35\xf2\x18\x26\x8a\x73\xbf\x6c\xb7\x46\xd6\x09\xcf\x34\x09\x3d\x3f\x10\x69\x64\x1d\xf6\xcc\xe4\xb0\xe7\xab\xaa\xc9\x2c\xe1\x99\x66\x9f\x5f\x1e\x54\x23\xd0\xc0\x33\xcd\x3e\xcf\xd7\xb3\x24\xeb\xb0\x67\x26\x53\xfc\x92\x9f\x98\xfd\xdc\x0b\xcf\x34\x09\x3d\x5f\xf5\x6f\x3f\x6f\xdc\x33\xbd\x4e\xcf\xc0\x71\x99\xf1\x4a\x64\xaa\x7f\xcf\xd7\xd5\xe1\xb3\x22\xcf\x4d\x63\xb9\xde\xbf\xf1\xba\x64\x7a\x9d\x9e\x6f\xc9\x2b\x82\x10\x3c\xf3\x95\xa8\x67\x60\x64\xcd\x8c\x63\x99\xea\x0f\x7c\xd2\x0f\x4b\x2e\x7b\xfe\xd4\xdf\x77\xfb\x73\xae\xf5\xa7\xb9\xa3\x78\xfe\xc3\x27\x40\x9e\x3f\xad\xf5\x77\xd7\xfa\xe7\x39\x7b\x21\xe6\xd8\x4b\xba\xeb\xf9\x4b\x66\x7a\x61\xa2\xcc\xcb\xad\x25\xc8\xea\x58\x5e\x24\x9a\xca\x55\x9d\xe4\x03\x75\xb1\xc0\x7a\xf9\xab\xca\xf7\x8b\x32\x79\x61\x12\xdb\x4b\xb9\x67\xf0\xe7\x5e\x78\x61\x12\xdb\x41\x12\x92\x8c\x2c\x96\x5e\x88\xb3\xf7\x52\xef\xb9\xe6\xfc\x8a\x69\x9c\x28\x00\xfa\xb0\x06\x8c\x0b\xf0\xe1\x17\xf0\x61\x64\x20\xf5\x12\x1a\x4b\xfc\x15\xf9\xe1\xdc\xbb\xda\x90\x0d\x32\xd7\x37\x87\xbe\x39\xb0\xd6\x2c\xc3\xea\x62\xf1\xf0\xcb\xe2\xa1\x92\x3e\x5e\xa6\xc6\x89\xaa\xbf\x0f\x2b\x99\x7a\x59\x5a\xb3\xeb\xe6\xb9\xbe\x49\xf0\x90\x97\x1b\x45\x23\xcb\x85\x97\xad\x7d\xd8\x77\x1f\x0a\xd7\x9a\xb8\x4d\x2f\xfb\x56\x13\x2a\xdc\x23\xb2\x1d\x78\x41\x02\xd8\x08\x50\x70\x31\x83\x78\x79\xef\x58\x78\x8f\xca\xa7\x6f\x7e\xf7\x9b\xbc\x2b\x55\x2a\xb0\x3e\x77\x3d\x7f\xa6\x96\x57\x9d\xb3\x9a\xee\x38\xf5\x3b\x46\x92\xbc\xde\x88\x3a\x81\x0d\x5e\xb3\xbe\x79\xcd\x7d\xff\x45\xae\x5c\xe0\x13\xaf\xf9\xaf\x5e\x4e\x67\x1b\xcf\xd2\x05\x98\x18\x41\x0f\x5e\x69\xbe\x79\xbd\x51\x7a\xdd\xdb\x4a\xc6\x5a\xaf\x57\xf6\xb0\xc6\xa2\x57\xbe\x03\xf1\x5a\x6f\x5d\xbb\x9f\x6b\xe5\xb5\xea\x77\xd7\x85\xf0\xdf\xb3\x3e\xaf\x55\x73\xa8\x30\x37\xf8\xcc\xc7\x6b\x0d\xb5\xf5\xdb\xc6\xb9\xd3\x55\xf5\x7a\xdd\x0b\xe2\xb4\xbd\x36\xcd\xef\x86\x52\x58\x4f\xd2\xab\xf4\x58\x05\x36\xda\xc8\xd4\xe1\xd5\xd4\xdf\x75\x63\x09\x7a\xf0\x4a\x53\xd2\xab\xbd\x77\x2c\x6c\x73\xed\x91\x43\x6f\x9a\x71\x0e\x04\x60\x78\xbd\xe1\x19\xe2\xb4\xbd\x86\xc6\x12\x77\xee\xc6\xb1\x74\xcd\xe1\x16\xfb\x0a\xca\x90\x3a\x74\x5e\x6e\xa6\x81\xe0\x05\xaf\xaf\xfa\xbb\x21\x8a\xa0\x3e\xaa\x9f\xda\xbe\x3b\x4e\xca\x1e\x71\x49\x7b\x7b\xee\xfc\x28\x7b\x9a\xcc\xb0\x76\xdd\x51\xb2\x55\x78\xd3\x19\x6c\xf7\x0c\xb2\x3e\xac\x37\xba\x09\x7e\x01\x3b\x46\xec\xb0\x37\x82\x2f\xbd\xdd\xaa\xa0\x04\x05\x78\x63\xe8\xcd\xdb\x0d\xbd\xc5\xcf\x15\xf7\x56\x35\x96\x7a\xe5\xcb\x2f\x12\xef\x4d\xfa\xa8\xdd\xac\x4e\xf0\xbc\xb4\xa6\xb1\xb4\xbf\x72\x51\xfc\xa6\x69\x0e\xf6\xff\x57\x04\xf4\xc6\x8c\xa4\xb7\x5b\x93\x30\x8c\xdf\x74\xfd\xee\x57\x49\x90\xeb\x29\xf9\x79\x19\x61\x2c\x9c\xdf\x0c\xcd\x21\xee\x7a\x3a\xe7\x4e\x30\x9d\xb7\xb8\xfb\xce\xbb\xd2\x18\x96\x73\x30\xc2\xe4\x87\x2c\x41\x2e\x00\x8d\x5f\x4e\x6f\x23\xd0\xd5\x1b\xc3\x72\xde\xae\x79\xca\xcc\xbe\x0b\x5c\xe3\x0d\x9c\xbd\xc6\xcc\xbe\x37\xd9\x4b\x6d\xff\x55\x6b\xe2\xef\x64\xba\xb6\x6b\xba\xb2\x30\x8f\x8b\x2d\xc6\xc1\x16\x93\x1f\xb2\x12\xb9\x11\x03\xec\xc0\xaf\x9c\xb6\xdf\x79\x31\x86\x36\xdc\xae\xac\x23\x23\x85\x0b\x28\xe2\x00\x8a\xe4\x47\x32\xd9\x24\x97\xac\xdc\xfe\x78\x06\x4d\xf6\x8b\x5d\x19\xe2\xff\x91\x59\xc2\x45\x07\xee\x66\x71\x7f\xda\xd9\xb6\xd5\x06\x0b\xdc\x29\xb6\x8c\xcf\xc9\xdc\xfc\xaf\xca\x32\x87\x23\xf3\xc6\xe2\x4e\xe3\x97\x50\x70\xd3\x91\xb1\x7b\x64\x88\xf7\x74\x01\x30\xdc\x6e\xc4\xcb\x79\x44\x8d\x4f\x25\xdc\xfa\xba\x6d\xfc\x1d\x13\x1f\x7e\x09\x6a\xac\xf3\x0a\x9a\x54\x27\x0a\xe7\xe7\x47\x22\x5b\x00\x0c\xff\x03\x60\x48\x64\xdb\xd6\xfc\x80\x9f\x35\x32\x59\xb8\x31\x89\xed\x06\xd8\xb8\x75\xad\x99\x8e\x85\xdd\x6a\x60\xfd\x87\xcb\x71\x81\x1e\xfc\x82\x1e\x8c\x65\x01\xdc\x25\x7e\x1c\xe5\x61\x1e\x16\xfe\x73\x97\xf8\x01\x8e\xe1\xb4\xf1\x77\x12\x23\x7e\xc5\x08\x19\x29\xdc\x75\x2c\x6e\x2d\xf8\x47\xe2\xd5\xf9\xb4\xc6\xdd\x9e\xdb\xf6\xdb\x23\x81\x10\xfc\x82\x10\x8c\x45\x03\xdc\xe9\xfd\xbb\x07\xd6\x93\xb8\x31\x77\x3e\x9b\x72\xbf\xde\x23\x41\x01\xee\x32\x7d\x7c\xde\xf5\xec\xfc\x26\x23\xd5\xee\x37\x52\x4d\xfc\x97\xbb\xf6\xc1\xff\xf6\x81\xae\x95\x4b\x0d\xf8\x55\x03\x04\x0c\xb8\xc8\x6b\x1c\xb8\x82\xe4\x8f\xe6\x2e\x53\xd9\x6f\x92\x57\xa2\x3e\xb4\xd6\x71\x8b\x52\xb3\xb4\xb1\x87\xc4\x6b\xdc\xcc\x06\x71\x5c\x1e\xba\x47\x71\xef\x51\xd0\xa4\x08\x99\xa7\x61\xeb\xff\x2b\xda\xe7\x22\x85\xf1\x88\xf7\xff\x2b\xd8\xec\xa1\xf5\x8c\x71\xc7\x49\x75\x2c\xf6\x16\x8f\x79\xbf\xf9\xcb\x18\x78\x2c\xb5\xad\xf9\xff\x15\x4e\xf6\x90\xb8\x0b\x54\x0c\x7a\x24\xce\x43\x6e\xc2\x5f\xf2\x9b\x78\x2c\xef\xe4\xc2\x75\x54\x44\x3f\x6d\xbf\xb1\x74\x99\x61\xa8\xb9\xfd\x4f\xb5\x55\xef\xcc\x22\xf9\x2d\x15\xed\xc4\xa9\x79\x97\x49\xdf\xaf\x59\x24\xb1\x2c\x36\x15\xbf\x6c\x2a\x4e\xf6\x08\x57\x42\xdd\xfb\x8d\xc8\x06\xef\x4a\x27\x66\xd5\xff\x8a\x24\x3f\xbf\xe8\x9b\xf7\xa6\x71\xb6\xbb\xd6\x94\x2f\x5d\xea\x0a\x39\xf2\xfc\xb0\x90\x89\x77\x9d\xf9\x5b\xa3\xd5\xc9\xe6\xe0\x7d\xa8\xbf\x71\xfb\x73\xce\x41\x7b\x84\xf2\x96\xe7\x9b\x5c\xb3\xa9\x6f\xae\xbb\x2e\x34\xdf\xba\x5c\x81\xfe\xb7\x7f\x34\x53\xfa\xd6\x3e\x80\xcc\xc9\x99\xf8\x77\xb1\x9b\x38\x4a\x13\xe6\x87\xef\x16\xbc\xbf\x1a\xe7\x2d\x39\x48\xde\x5a\xef\xaf\xc6\xf9\xde\x71\xfe\x32\x76\x3e\x18\x91\x75\xd4\xb7\xcb\x0f\xdf\x03\xb8\x98\x4f\xfc\x32\x9f\x38\x93\xfb\x2e\x76\x13\xbf\xec\x26\x9e\x7e\x09\x7c\x1f\x72\x01\x47\xb9\xe5\xfe\x38\xce\x41\xd2\x3e\x1f\xb7\x3c\x79\xd2\x58\x64\x7e\x5f\x56\x14\x27\xd3\x83\x0f\x62\x9c\x7d\xe0\xad\x80\xb3\xb0\x8d\x0f\xb9\xe2\x03\xae\xb8\x27\xea\xaa\xe1\x9a\x83\xdf\x39\x50\xe5\x0e\x99\xb5\x23\xee\x7a\xd2\x65\x19\xcc\x3a\xfa\xb8\x66\x2d\x19\x92\x7c\x74\xfd\x0e\x18\x75\x27\x08\xc8\x87\x74\xdc\xb8\x3a\x8e\x95\xd2\x7d\x0c\x8d\x65\xdc\xb1\xd0\x24\x1c\x8c\x90\xfa\xb8\x75\x60\x93\x7e\x37\xd5\x36\xa1\xa7\x09\x28\xf3\xc1\xe8\xbe\x0f\x44\xf7\x9d\xa5\x13\x7c\x48\x4e\x8c\x7b\xce\xc8\x10\xe1\x63\x6b\xad\xdf\xbb\xd6\xfa\xe6\xa7\x71\x7e\x77\x9c\x34\xe9\xa7\xc2\x02\xf3\x86\x05\x3a\xef\xc3\x54\xc8\x67\xe6\xbb\xb7\x0c\x43\x4c\x02\xed\x7c\xd6\xdb\xc6\xb0\xc7\xe4\x5b\x0f\x9f\xed\xee\x1f\x4d\x7a\x31\x9f\xf8\xb4\xbb\x9e\x6a\xd3\xbd\x9d\x57\x57\x49\xe7\x4c\x32\x21\xf8\xbc\x15\x91\x13\x4d\xec\xc9\x88\xb3\xcf\x7b\x37\xf3\xa3\x36\x53\x1b\xce\x2e\x93\xf4\x3e\xb5\x9e\x73\xdd\x7b\xf4\xcb\x80\xba\x58\x35\x1c\xac\x1a\x39\x3d\x3c\xf3\x4b\xf2\x73\xe5\x5b\x57\x9b\x67\x57\x19\x7a\x47\x86\xfe\xfc\xce\xd9\xb6\xd5\x76\x6b\xbf\x52\x6f\x2e\x02\x5a\x7c\xdd\xf5\x64\xf6\xde\x95\xa1\xf7\x9b\xa1\x4f\xd2\x39\xab\xab\x3f\x84\x3d\x9c\xa0\x15\x5f\x32\xbf\xd7\xbc\xa5\x2d\x79\x3e\x97\x4c\x6c\x54\xc8\xc8\x89\x4c\x47\xae\xec\xb6\xdf\xec\x76\x22\xf6\xdb\x95\xa5\xf6\x9b\xa5\x4e\xac\xaf\xea\xca\x52\xfb\xcd\x52\x27\x02\xca\x7c\xc9\x06\xbb\xa5\x36\x3c\xd3\x0d\x5a\x9f\xc6\x79\xbc\xc1\xf3\xbb\xff\xc6\x2c\xe1\x8b\xdc\xa6\xbe\xbe\x3b\x54\x5e\x97\x4d\x3c\xab\xef\x5b\x84\x93\xdc\x9f\xbe\x9f\xa1\xb6\xbb\x85\xbf\x24\x8c\x6f\x45\x3e\x76\xba\x6d\x34\x41\xb7\x22\x1f\x1b\xde\x80\x67\x5e\x17\x25\xc6\x7d\x5f\xb5\xca\xfa\xc9\xbe\x15\xdd\xd8\xe5\x4e\x9f\x26\xda\x56\x74\x63\x97\x3b\x7d\xaa\xb9\x4d\x9c\x9a\xef\x72\x0b\xe0\x53\xe5\x6e\x3e\xc5\xf2\x5d\x6f\x0d\x6c\xaa\x9d\xdd\xb8\x85\xbb\xdd\x75\xe1\x95\xdf\x3a\x4e\xfb\xef\x38\xd1\x0b\xdc\x12\xbd\xfb\x8a\x5e\xb2\x4e\xf8\x76\xb5\x21\xd1\xe9\xe4\xe9\xf4\x2d\x0f\x71\x5f\x95\x4b\xc0\x80\xef\xa1\xb1\x1c\x95\x9b\xd3\xa3\xb9\xcb\x64\xda\x30\x41\x9d\xc0\x14\xdf\x3a\xbe\x1b\x54\xe3\x4e\x50\x80\xef\xa9\xbd\x45\x01\x6c\x27\x68\xc5\xb7\xd4\xf8\x06\x51\x9e\xb3\xf2\xb7\x6f\xa9\xf1\x3d\xef\x38\x79\x95\xb6\xc4\xc1\x5e\x7f\xbf\xe3\x5a\xcb\x2d\xd9\xeb\x1e\x6d\x46\x61\x44\xb6\xe2\x97\x6c\xc5\xc9\x0b\xea\xfb\xd5\x79\x41\x52\xcb\x09\x26\xf0\x4d\xec\xb7\x6f\x3c\xdb\x70\x82\x09\x5c\x25\x64\xfc\x7d\xae\x18\xa1\x68\x7a\xf9\xc4\xc2\xdf\x5b\x3a\xb6\xf0\x0a\xbe\x7c\x95\xea\xef\xb1\x00\x73\x4a\xdc\xa3\x57\xe7\x1a\x95\x66\x4e\x5b\x61\xdb\x56\xdb\x5d\x17\x8a\x8a\x57\x67\xf7\xcd\xb7\x8d\x26\xe1\xcb\x27\xa9\xfe\xa2\x16\x61\x4a\xdc\xf7\x57\xe2\xee\x26\xf0\xbd\x30\xba\x21\x16\x16\x07\x0b\x4b\x4e\x89\x62\xf9\x95\x1b\xf4\x02\x53\xe6\x04\x28\xf8\xdb\xf4\xbb\x76\xf7\x9d\x2e\xd9\x2b\x53\xf2\x45\x6d\xd1\xc4\xca\x7b\xfe\x2a\x32\xf7\xb6\x71\xdb\xb8\x9e\xa6\x36\xbb\xfb\xce\xbb\xf2\xba\xe6\x70\xbc\xac\x9c\x88\x5d\xf4\x57\x19\xa6\x37\xee\x7a\xf2\xbc\xbc\xc4\x66\x3a\x30\x00\xc9\x0b\x23\x1f\x9f\xa2\xe6\xdf\x51\x03\x39\x25\xba\xd4\x9f\xa2\x92\xdf\xdf\xba\xd0\xbc\x51\xa9\x14\xff\xea\x1d\x0b\xb3\x4f\x9f\xd6\xe5\xfb\x5b\x17\xba\x72\x9f\x5c\xc7\xcf\xee\x99\xa0\x58\xfe\xc8\x6a\xe3\xdf\xdf\xdc\x79\xae\x95\x8c\xf6\xef\x6f\xee\x94\xad\x4a\x46\xfb\x4d\x46\x27\x56\x80\xf6\x4f\x26\xd3\xd7\xef\xba\x34\x8e\x45\x19\xb4\x0f\xe4\x97\x4e\x20\x85\xab\x16\x98\xdf\x5a\x60\x4e\x40\x84\x7f\x72\x83\x3e\x44\x7d\x9c\x80\x08\x57\xe2\xd8\x6f\xe2\xd8\x59\x86\xc3\x3f\xb9\xf7\x1f\xa2\x3e\x89\x04\x58\xfe\xc9\xad\x04\xf9\x46\x4e\x2c\x5e\x1f\x0f\xf9\xd7\x03\x25\xc3\xce\x37\x83\x6d\x4d\x6d\x90\xbb\x2c\xd1\x11\x0f\xef\x6d\x3c\xf7\xde\x12\xbb\x18\x2a\x4f\x12\xc8\x2f\xe7\x44\xe2\xac\x78\x92\x7e\x07\x26\x19\x27\xc8\x22\xc4\x72\x11\x97\xe5\xc2\x09\x5e\x88\x87\xe0\x93\x78\xae\x4c\xfe\x55\x87\x3d\xff\xd0\x38\x1d\x3a\x20\xfd\xa2\x61\xf1\xf0\x5c\x07\x4a\x3b\x9e\xdf\xb1\x8d\x11\xe0\x78\x10\xf2\xf1\x5f\x2d\xd8\xf3\x8f\xa9\x36\x9c\xeb\x6a\x5c\xb3\xa1\xf9\x01\x87\xee\x4c\xee\xc7\x43\x53\x39\x9e\x6b\x2a\x93\x75\x22\x9e\xa9\xdf\x5d\x39\x4f\xd6\x89\x78\x08\x80\x8a\x07\x25\x6b\x9c\x09\xfc\x50\xb9\x90\xb8\x75\x57\x13\xb1\x99\xf1\x10\x3f\x1b\x0f\xf0\xb3\x5e\x83\xeb\xf2\x6a\x7e\xef\x3d\x4b\xbf\xbb\x12\x49\x7b\x9b\xae\xcd\x50\x7f\xd1\xc5\x48\x7c\x7f\x10\xa8\x1c\x92\x13\xf9\xde\x43\x6c\x15\x71\xd9\x2a\xbc\xfd\xdc\xd1\x48\x4c\xfc\x47\x42\xe2\xdf\x59\x6a\x23\x94\xdd\x8e\x9b\xdd\x4e\xf9\x97\x8d\x0d\x95\xf6\x88\x74\xef\x34\x89\x2a\x23\x99\xc6\x69\xb7\x24\x7b\xe2\x38\x5d\xfd\xf9\x5f\x7f\x9c\x9f\x6b\x0e\x7e\xe7\xc0\xb3\x9b\xf8\x8c\x37\xd2\x75\xad\x48\x62\x19\x89\xcf\xfd\x23\xe1\xb9\xbf\x93\xc4\x32\x52\x68\x0e\xa8\xf6\x9d\xf2\x4f\xc7\x45\x22\x00\x2a\x12\x00\x50\xde\x78\x8f\xd2\x54\x7f\xe7\xbe\xe7\x94\x2b\xbf\x49\x3d\x1d\x69\xdd\xfe\x0a\xd7\x9a\x26\x68\xa4\x6b\x82\x92\xc0\x2c\x12\xdf\x11\x44\xba\x85\xf9\x9b\xda\x08\x06\x89\x5b\x2e\xc4\x1b\xef\x51\xfa\xb4\x7f\xc8\x98\x3b\xc1\x12\x91\xe9\x52\x07\xaa\x8a\xe6\x94\xff\x69\x73\xb5\xdd\xfe\x7e\xe1\x8b\x10\x7b\x44\x20\x9b\x9e\xbc\xfd\xec\xcf\xc8\xcc\xd4\x46\x4e\xb7\x3f\xde\xa3\x4c\xbc\x7c\xe4\xab\x8b\xff\x2b\xb3\x44\x64\x7a\x26\x71\x8b\x95\x3a\xf1\x19\xa1\x24\x7d\xe4\xeb\xc5\x93\x53\x33\x54\x5a\x34\x50\x5a\x34\xa7\x6c\x9c\x86\x69\x38\x76\x87\x13\xfc\x9d\x6b\x69\x3c\xdf\x36\x4e\x83\xde\x5c\xe4\x1b\x29\x6b\xbf\xa8\x4f\x64\x26\x0d\x22\xf7\x7b\xd4\x3a\x97\x54\x62\x04\xd5\x41\x72\x22\x6c\x3c\xf2\xd0\x1c\xc6\x3d\xf6\x5d\x6d\xda\x0a\xe0\xe9\x12\x21\xe5\x91\x87\xe6\x37\xee\xfc\x34\x87\xa1\x6d\xba\x9e\x3a\x19\x29\x22\x4f\x7d\xf3\xaa\x24\xfb\xa9\xab\xc8\x53\x5b\x88\x17\xc0\xce\x32\x23\x91\xb7\xe6\x70\xa3\x3e\x64\x9d\x88\x4c\x55\x16\xf9\xaa\x32\x02\x3e\x22\x6f\xad\xf5\xbe\x63\xe1\x15\xcc\xaf\xe6\x7e\x23\x42\xc6\x2b\x98\x75\xb4\xf3\x77\xaf\xa0\xd6\xf3\xd3\x5a\x5f\x35\x47\x93\x3e\xf2\xa7\x3d\x42\x72\xd8\xed\x67\xc2\x44\xd1\xb1\x2f\xcf\x1d\x27\xaf\xae\x80\x06\x01\xa0\x41\x4e\x74\x05\xa2\x10\xef\x19\x05\xd5\xd8\x13\xab\xd9\x45\xa1\xb9\x18\xe5\x9a\x8b\x24\xa7\x8b\x42\x5a\xf0\x00\xe6\x20\xb9\xfd\xcc\x9b\x28\x04\x91\x44\x29\x77\x1f\x28\x2a\x0a\xb1\x45\x71\xcb\x8c\x38\xd9\x2a\x42\x65\x46\xa2\xdc\x48\x04\x4b\x96\x46\x09\xfd\x2e\xee\xef\x1a\xc7\xd9\x35\xce\x7e\xc7\x49\x11\x5a\x98\xd9\x88\xd2\xe7\x6d\xe3\x37\xf9\x14\x24\x40\x32\x91\x13\xdd\x8b\x28\x52\x81\x00\x21\x24\x67\x42\x36\x0a\x23\x42\x51\xd6\xdf\xef\x38\x87\xa5\xdf\xad\x3b\x4e\xe3\x58\xb6\xfa\x7b\x61\xda\xd1\xbd\x08\x95\x04\x89\xf2\xdd\xb9\x53\xad\xaa\xec\x47\xdc\xb2\x1f\x4e\xd2\xc5\xa8\x7c\xdd\x1d\x00\x05\x9c\x6f\x06\xdb\x96\xda\xee\x79\x09\x7e\x93\x66\x74\x20\x51\x9d\x13\x09\xef\xa2\x32\xa2\x1e\xf5\x46\xd4\x99\x20\x0d\x25\xaa\xa3\xfa\x9d\x03\xc5\x72\x9d\xfa\xe6\xbc\xdf\xfc\x99\xfb\xa1\xd2\x1e\x71\x4b\x7b\xb8\x27\xfd\x8e\x73\xaf\x57\x7d\x38\xef\x5f\x5d\x6a\xdb\x77\xad\x29\xeb\x1a\x5f\xa1\x47\x43\x95\x38\x27\x43\x44\x34\x99\x68\xed\x9a\x68\x24\x09\x8c\xc6\x48\x59\xb4\x1b\x29\x63\xb2\x2f\x94\x1c\x8e\x9b\x1c\x4e\xe5\xe7\xc2\x47\xa3\x9b\x1e\x20\x68\x38\x6d\xec\x8f\x89\xff\x68\x48\xfc\x3b\x33\x7d\xa1\xf2\x1d\x81\xbc\x6d\x4e\xc4\x38\x87\x98\x10\x02\x4c\x08\xa7\x8d\x63\x19\xfa\xe6\x35\xc3\x98\xb1\x0b\x31\x21\xc4\x65\x42\x70\x96\x27\x89\x46\xe6\x8c\x68\xeb\xbb\x6d\x1c\xe7\xd6\xdc\xf7\x9d\x3b\xf5\x4a\x93\xa9\xd5\xae\xa9\xc5\x8c\x5d\xb4\x57\x73\x78\xef\x58\x9c\xeb\x22\x75\xdc\x80\x43\x77\x02\x29\x42\xec\x03\x71\xd9\x07\x9c\x40\x8a\x30\x99\x68\x96\xfe\xda\x7e\xdf\x34\x82\x9c\xc2\xf2\x5d\xb3\x1f\x60\x2e\x4c\xa6\x96\x5d\x53\x8b\x19\xbb\x30\x86\x4b\xc2\xda\x3d\x67\x94\x9f\x46\x50\x47\xdc\x97\xfb\xce\xf2\x24\x61\x3a\xf3\x78\x8c\x7f\xfa\xfb\xad\x99\x11\xe4\x14\x48\xcc\xe6\x54\x79\x6f\x8d\xb8\xdb\x30\xe0\x6e\x3d\x28\x3f\x4d\x7b\x64\x78\xe7\x92\xea\x2f\xda\x17\xc6\xa8\x5d\xd8\x8d\xda\xd5\xca\x71\x12\x88\x16\xa8\xd6\x91\x13\x89\xeb\xc2\xf9\x64\x2c\x50\x91\x23\x39\x19\x22\x42\x65\x38\xc2\x9f\x3b\x4e\xba\x09\x78\x97\xfd\xfb\xf3\x7e\x93\xe7\xc5\x25\xcb\xbd\xdc\x33\xf8\xcb\x5a\x85\x13\xf4\x17\x5e\xee\x37\x79\x96\x9c\x19\x83\xf0\x8a\xbb\x49\xfc\x73\xb8\xe9\x9b\x76\xbf\x49\x79\xe6\x4b\xdf\x5c\xf7\x9b\xb4\x35\x5c\xae\x00\x92\x93\xa7\xed\x37\xce\x20\xd6\x3c\x22\xdf\xb9\x53\x66\xa9\xdc\x44\xdc\x72\x13\x1e\x3f\x17\x37\x42\x66\x3b\x5e\xed\x9e\xb6\xdf\x9a\xa9\xdc\x44\xc4\x2d\xc3\x4c\x70\x46\x04\x33\xb5\x11\xd7\xed\x22\xf3\x42\x44\xe8\x77\x20\x68\x73\x32\x2f\x44\xd0\xa5\x8e\x00\x97\xbf\x33\x9b\x17\xb1\xf4\xbb\x75\x7f\x47\x1b\x4c\xd9\xc3\x88\x6b\x6b\x90\x31\x2c\x54\x17\x22\x6e\x5d\x08\x67\x56\x2e\x42\xf6\x44\x7c\xf7\x77\x3c\xf3\x9d\xd8\xe8\xe8\x78\xa2\xed\x2c\xed\x11\x9d\x15\x8c\x03\xe5\x1c\x4e\xdb\x6f\x2c\x9d\x60\x89\xe8\x05\x7b\xdb\xe8\x7a\x74\x86\x13\xa2\x5f\x97\xb3\xff\x5c\xf8\xe8\xa1\x6f\x06\xce\x59\xab\xff\xed\x29\x5d\x74\x06\xc7\xa3\xdf\x48\x84\xbc\x81\x2e\x75\xdc\xaf\x28\x24\x20\x22\xfa\xd4\x70\x26\x54\xa0\xbc\x81\xbe\xd5\xb6\xff\xda\xf8\x3b\x2d\x69\xbf\x01\x70\x72\xc9\x45\x27\xb7\x62\xf4\x2f\xdd\xb6\xdf\x37\x87\xae\xe0\xb8\x57\xb0\x53\xe5\x0e\x46\xf4\x62\xa4\xbf\xdf\xa9\xad\xaa\x0d\x57\x82\x05\x02\x63\x48\x14\x8e\xab\xae\x98\xf0\x8a\xa1\x2b\x88\xfc\x5d\x72\x12\x52\xc5\x90\x28\x1c\x57\x14\xb2\x0c\x47\x8c\xa6\x6f\x5e\x75\x45\x92\xb9\x18\xa6\x39\xdc\x63\x4f\x26\x84\x18\x12\x85\xe3\x8a\x42\x12\xd0\xc5\x20\x68\x25\x06\x9e\x43\x78\xd7\x1c\x64\x1a\x8c\x1b\xdd\xe8\x54\x2d\x83\x89\xf8\xc0\xe3\xdc\xe4\x9d\xe6\xfe\x18\xfa\x1d\x78\x64\xbd\x53\x0d\x0c\x89\xd7\x71\x5d\x88\x4e\x95\xab\xc4\x5c\xdc\xf2\x08\xce\x84\x50\x8c\xad\x39\x00\xd8\x10\x64\x1f\x88\xb1\x35\x87\xf7\x1e\x6d\x5e\x97\xf1\x6a\xcd\x60\xb6\xc7\x43\x33\x65\xbc\xda\x07\x3c\xc5\x8a\x87\x66\x8a\xca\x23\xc4\x00\xbe\x3b\x98\x80\x8a\xf1\x69\xad\xaf\xb9\x4f\x2c\x6f\x8c\x4f\xfd\x81\x07\x31\xc8\x3e\x10\x53\x51\x2d\x3c\x14\x4e\xf1\xfc\xa2\x99\x31\x75\x5e\x66\xba\xe3\xa4\x79\x33\x99\x38\x8e\x99\xee\x38\x7f\x11\xcb\x98\xcc\x7a\x04\xf2\x85\xa7\x8d\xfd\x91\x71\x23\x90\x13\x4c\xc1\x84\x50\x4c\x82\x02\x02\xd5\x17\x72\x62\xd5\xc4\x98\x52\xab\xb3\x21\x42\x4a\x6c\x7b\x4c\x45\xc3\x50\x29\x21\x05\x33\x3e\x31\x65\xb6\x4f\x24\x72\x83\xa4\x37\xb1\xe4\xe2\x2e\xbb\x73\xa0\x78\x5d\x4c\x2a\xc7\x42\xe4\x23\x1e\xaa\x96\x45\xe6\x85\x58\xfd\x8e\x93\x73\x58\x2c\x90\x1b\xab\xdf\x3d\xe2\x19\x5c\x3a\x83\x6b\xdc\xb5\xa6\x89\xbd\xe4\xaa\x5e\x4a\xfb\x20\x53\x40\x2c\xa9\x78\xbc\x6a\x4d\x41\xc0\x40\xac\xa9\xb1\xdc\x22\xe2\x0f\x55\xd9\x92\xcc\xba\x54\xf8\x41\x16\x81\x58\x32\xa3\xd7\x35\xa3\xe5\x06\xe9\x09\x6c\x20\x11\x78\x7e\x17\x6c\xd3\x58\x10\x7d\x0b\x66\x13\x62\x2d\xcd\x01\x15\xac\x82\x91\xff\x58\x04\x36\xc4\x7a\xef\xef\x18\x29\x5b\x92\x83\xeb\xca\x41\xa3\xfc\x5c\x9f\xc6\x02\xdc\x7b\x30\xda\x1e\xca\xe6\xc5\x86\x3b\x1a\x8c\xb6\xc7\x56\x14\xe6\x66\xfa\x82\x2c\x02\xb1\x59\x2d\x33\x76\xc2\xdd\x94\xdb\xb5\x25\x7b\x36\xf0\xb3\x89\x15\x23\x63\x93\x08\x29\xb6\xdf\x39\xf0\x5c\x6f\x3e\xb3\x0b\x24\x86\x52\xa4\xdf\x13\xd8\xd8\x8a\x4a\xee\xab\x1f\x88\xdd\x0f\x3d\xbd\x0c\x50\xe8\xe7\x44\x7c\x7e\xbc\x04\x9b\x05\x12\x3c\xa7\x2d\xd8\xc6\x39\x20\xc1\x93\x22\x71\x0e\x2f\x81\x37\xf1\xc2\xfd\x8d\xc4\x90\xcf\xdb\xf4\x3b\xbb\xbf\xa3\xf9\xfd\xb2\x3c\x49\xa0\x66\x7f\x4e\x4e\x35\xae\xc2\xf9\xf1\xf6\x74\xdb\xf8\x4d\xdd\x87\xf7\xde\x07\xb9\x5d\x7a\xb6\x18\xef\x3d\xd7\x04\x05\x84\x0a\xd9\xc7\xbb\xee\xde\x52\x26\xbf\x0a\x51\x80\xa6\x3d\x27\xe7\xbe\x8b\x9b\x3d\xbe\x1b\x51\x27\x96\x3e\x3e\x99\x22\xf7\x89\x61\x10\x14\x10\x9f\x42\x14\x1f\xa2\x68\x91\x1f\x7e\x93\xcf\x08\xe3\x72\xb3\x47\xa6\x2c\xff\xe4\x26\x7c\x78\xfa\x1c\x2c\x1b\x11\x9f\xc2\x10\x1f\xc2\x10\x91\x19\x75\x55\x56\x27\x90\xd5\x39\x6d\xbf\x7d\xff\x98\xed\x0a\x64\x75\x4e\x1b\xc7\xc9\xac\x4e\x20\xab\x93\x22\x33\x64\xa0\xa7\x89\xf1\x5d\x7d\x4b\xe2\xc1\xf8\xb4\x7f\xdf\xdf\xfe\xd1\x15\xf8\xba\xe6\x8e\xec\x53\x90\x26\x20\x3e\xc9\x97\x0f\xd1\xf6\x50\xb4\xf6\xd3\x7d\xff\x6e\x18\xc2\x19\x4a\xf9\x14\x89\x47\xf1\xf8\xd3\xc6\x35\x93\x9b\x87\x97\x7a\x39\x39\x43\x29\x9f\xce\xfc\x77\x75\x5c\xfe\x81\x72\xba\xb2\x2c\xfd\x81\xdd\x13\xa4\x09\xe8\xca\xb2\xf4\x9b\x65\x09\xb2\x5c\xf4\x87\xf7\xa1\x23\xa9\x92\x82\x34\x01\x5d\x5c\xe9\xfd\x72\xa5\x47\x36\xf6\x47\x3d\xd6\x6f\xa1\xf7\x60\xd6\xbf\x3f\xcc\x80\x76\xd4\x75\x3f\x6d\xf1\x6b\x63\x86\xbe\x3f\xe5\xae\x99\xf3\x77\x55\x6d\xf5\xb6\xfd\xce\x7c\x7f\xe8\xfa\xf7\xa7\xde\xb9\x07\xe7\x50\xd5\xdf\xdf\xbe\xff\x4c\xf3\xae\xa7\x82\xfd\x3e\x15\x0c\xd6\x8c\xe8\x0f\xf5\x66\x7f\xda\x9d\xdf\x7f\x2c\xd2\xdc\x1f\xbe\x58\xed\x4f\xbb\x5d\x76\x0e\xc7\xd4\xa5\xdd\x2e\x3b\xa7\x6f\x1a\x2a\x22\xc0\x51\x1e\x4e\x91\x2f\xe9\xfb\x03\x42\x8e\x60\xe2\xbf\xeb\x55\x63\xbf\xaf\x1a\x83\x6c\x00\xfd\x71\x6d\x21\xc8\x3a\x82\x6c\x00\xfd\x09\x7d\x33\xee\x37\x13\xc7\x12\xfa\x66\x40\x84\x92\x3b\xb2\x3f\x5d\xbf\xbb\xe6\x3e\x23\x03\xfd\x21\x11\x4b\x07\x1b\x7b\x8a\x92\x39\xf7\xa1\xb1\x80\x08\x29\xc8\xe6\xd0\x9f\xa9\xb9\xcf\xf7\x7e\x93\xf3\x5b\xda\x8a\x75\x8f\xbd\xb6\x69\x6b\x9c\xd7\x15\x60\x44\xa1\x3f\xaf\x8e\xc5\x3b\x6f\x1b\x8f\xd3\xa7\x6f\x5e\xd3\x8e\xb4\xf5\x5d\x09\xa8\xfe\x97\x80\x22\x3e\xb8\x27\x7a\xb2\x3d\x81\x4c\x2d\x31\x6a\xd0\x13\x9f\x35\xf4\x04\x98\x7a\xe2\xd3\x8c\xae\x97\x99\xfd\xd6\x96\x0f\xb2\x39\xf4\xd4\xd4\xdf\x4d\xa8\x47\x62\x7f\x14\x3f\x3d\x5d\x6f\x9c\xb8\xe2\x9e\x4c\xdf\x44\xe4\x2a\xca\xcf\xbd\xe8\x49\xe7\x25\xfd\x9d\x97\x1f\x2e\xbc\x8b\x32\xbc\x5f\xca\xf0\x28\xce\xb1\x10\x4f\xd7\xd3\xb8\x67\xd0\xf9\x3b\x82\x41\x7a\x02\x18\x24\xc8\x3e\xd0\x13\xa3\x22\x3d\xdd\xa8\x08\x69\xeb\xbb\x6a\xd2\xf7\xb4\xef\xbe\xf3\x2c\xa5\xad\x71\xee\x3b\x4e\xee\xbb\xea\xd5\xf7\xb4\xef\xb9\xe6\xbe\xa7\x57\x63\x79\x6f\x7f\x3f\x2f\xb7\x8b\x32\xbc\x5f\xca\xf0\x28\xdc\x77\x71\x82\xf7\x7c\x5d\x39\xf2\x58\xf6\x4c\x4c\x59\xcf\x17\x53\x46\x1c\x73\xcf\x8c\x98\xf4\x0c\x8c\x65\xb0\x84\x45\xcf\x12\x31\xe0\xf6\xce\x89\x5c\x95\x3d\x9b\xfa\x43\x02\x31\x2a\xf7\x36\x6b\x8f\xb2\xdf\xfe\x1a\xc7\xc9\xcc\x4d\xcf\x37\xfa\x1d\xdc\xbf\x4c\x13\xb4\x23\x71\x92\xa2\x66\x8e\xe5\xd3\xef\xae\x8a\x67\x74\xa3\x2b\x0b\xd1\x91\x85\x38\x6d\xbf\xf9\x15\x26\xc3\x7a\x01\xe0\x2a\x98\x18\xef\x25\xff\xd3\x86\x33\x51\x7f\xea\xaa\x17\x89\xde\x72\x45\x2f\xd9\x00\x7a\x91\x1c\x2c\x78\xb9\x9f\x82\xfb\x57\xb4\x2e\xe5\xef\x5c\xff\xcc\xef\xae\x67\x8b\xfd\x3e\x5b\x4c\xc1\x3b\xad\xc8\x7f\x2f\xe3\xde\x31\xde\xdb\x32\xd4\x1f\x40\x4e\xc1\xa4\x79\x2f\x34\xa3\x3b\x6a\x86\xe7\xc4\x88\x49\x2f\x4b\x73\x00\x3e\x31\x91\x38\xb2\xab\x88\x78\xbf\xcf\x08\x13\xb1\xca\xbd\xe8\x7c\x96\x2b\x7b\x3a\x65\x6b\x61\x24\xb0\x97\x1b\x09\x24\xe7\x79\xaf\x52\xab\xf5\x9a\xca\xc4\x0e\xf7\xca\xc8\x78\xaf\xa9\xde\xb6\xdf\x38\x2b\xb3\x2c\xbd\xb6\xbb\x47\xbc\x47\x95\x61\x81\x5e\x0d\x72\x89\x9c\xe0\xbd\xd2\x25\xeb\xf5\x66\x1d\x19\xf6\xe8\xca\x0a\xf4\xea\x38\xbb\x7c\x23\xd2\x1b\x39\xa5\xfb\x2d\x50\x1d\x95\x7b\xd4\xb4\x0f\xed\x66\x60\x3a\x4d\x0a\x15\x9a\xee\x97\x23\x38\x2a\xef\x9f\x0a\x4d\x77\x70\x04\x9f\xdf\xfd\xf6\xb6\xd1\x45\xea\x78\x99\x74\xae\x51\x66\xdb\x56\xdb\x7b\x7f\xf7\xdb\x07\xf1\xf9\xf6\x76\x41\x63\x7c\x3f\xd2\xf5\x8c\xa9\xb7\x6d\xf7\x9b\x1c\xcb\xab\xf9\x81\x8b\x3a\x08\x18\xe8\xe2\xad\xed\x76\xa3\xae\xe4\xef\xee\x26\x59\x60\x57\x16\xf0\x05\x7e\x37\xe2\x75\x3b\x6a\x55\xa7\x60\x02\xbf\x2b\xc2\xdd\x6f\x14\x3b\xda\xcf\xc4\xee\xa6\xfd\x03\xdd\x6c\x0a\x46\xed\xba\x11\x60\xd2\x2f\x1f\x6c\x90\xb5\xa0\x5b\xa8\x2d\xee\xfc\x2a\xfb\x23\x76\xbf\x83\xfb\xf5\xb4\x55\xb6\x6d\xb5\xbd\xb7\x8d\x63\x21\x06\xb8\x1b\x30\xc0\x41\xb6\x83\x6e\x64\x49\xe8\xa8\x8d\x9d\xa2\x51\xd6\x59\xd7\xfc\xae\x39\xdc\x1a\xc7\x32\xb4\x9e\xe3\xce\x81\x66\xa6\xd1\xdd\xee\x20\x91\xcd\xa9\x77\xfe\x6e\xaa\xbf\x0b\x5e\xe0\x3b\x97\xae\x02\xdc\x1d\x04\xb3\x47\x7c\x72\xcd\x96\xe6\x00\x3c\x72\x30\x0c\xd8\x4d\xe7\x05\x6f\x9f\x4e\x1b\xe7\xb7\xb5\x9e\x7f\xe7\x85\xfa\x4f\x6f\x9f\xfa\x7d\xfb\x14\xac\x19\xd1\x6d\x6b\x3d\xf7\x3d\x9f\x94\x4b\xf6\x6a\x6f\xf1\x1e\x27\x9a\x73\xff\x5e\xcd\x0f\xd9\x99\x60\xa8\xaf\xdb\xab\x73\xf6\xdd\x73\x46\x93\xd7\x18\x7e\xea\xe0\xa1\x3d\x6d\xbf\xb1\x88\x60\xb6\x5f\x82\xd9\xfc\xf0\x1e\x39\xb3\x3a\xdd\x9f\xfb\xbb\x5f\x34\xba\xeb\x1d\x56\x47\x42\xe2\xfc\xae\xb2\x6d\xa9\xed\xbb\x6d\xff\x0d\x2c\xd1\xbd\xe9\xb3\xe0\xa0\xcb\x2c\x4a\xdb\x9d\x41\xfc\xee\xc0\xc1\x06\x19\x1b\xba\xf3\xb9\x5c\x77\x3c\x97\xcb\x0f\xaf\x84\x87\xa6\x18\x77\x8a\x3f\xef\xaa\xfb\xd4\xef\xe6\xdf\xef\x3a\xdb\x34\x96\x79\xa7\xc8\xeb\xe2\x4b\x53\x84\x18\xc9\x0f\xaf\x84\x6b\x7b\x41\xd5\x9a\x33\xb9\x38\xbb\xbf\xea\xef\xbd\xfd\xf1\xd8\xeb\xb9\x55\x47\xad\xf0\xd3\xc6\x25\xfd\x34\x77\xc0\xb1\x33\x29\xa7\x7b\xc8\x63\x8b\xeb\xb1\x91\x05\xa2\xab\x56\x78\xbf\xb5\xc2\x83\x2c\x10\x3d\xc8\xc5\xd9\xe3\x6f\x9b\x78\x25\x42\x66\xd1\xe5\x7c\x0d\xab\x6a\x73\xb5\xc5\x6d\xfb\x1d\xa7\x20\xd0\xa0\x07\xe8\xbd\x33\x31\xce\x5d\xdc\xad\xfd\x72\xb7\x06\x23\x5e\x3d\xaa\xbe\x59\x03\xbf\xe3\xb1\x57\xd2\xa7\xc7\x35\x87\xf9\xba\xbb\x2b\xe9\xd3\x91\xf4\xc9\x99\xd1\xbe\x1e\x52\x57\xe1\x77\xad\x83\x73\x77\x8d\xd3\xef\x38\x7f\x91\x9d\x1e\xba\xba\x71\xaf\x2e\x4b\x51\xf4\x90\x1a\x88\xab\x06\x8c\x57\x3e\x18\x55\xee\xa0\x4e\xcd\x39\x3d\x1c\x8b\xdc\x0b\xd4\xf0\x3e\x6d\xfa\x9d\xf6\x01\xcf\xec\xc2\x7e\x11\xa1\xae\xe7\x64\x3d\xbe\x3b\xf7\x1f\x76\xb1\x77\x26\x02\x7b\x07\xe6\x38\x08\x18\xe8\x2a\xea\xdd\x3b\x4c\xd7\xcc\x48\x60\xef\x8c\xb4\xf4\x9e\xef\x38\x79\x8f\xba\xdc\x92\x0e\xb7\x24\xf3\x59\x51\xef\x24\xff\xea\xbd\xec\xdb\xf6\x5b\x97\x2e\x55\xd6\xaf\x2a\x33\x9a\x61\x5d\xa6\x48\xbf\xa6\x88\x51\xc5\x2b\x1b\xd4\x6f\x36\x28\xf3\x59\x51\xef\x32\xd1\x3a\xca\x4d\x84\x3f\x1c\x8b\xd4\x40\xbf\x51\x57\x46\xc3\x7a\x27\xb3\x4b\xc7\x2b\xb0\x9c\x19\x25\xec\x2a\x96\xdd\xef\xd3\xaf\x20\x08\xa1\x77\xed\x3b\x92\x46\x39\x27\xde\xf7\xce\xe4\x77\xef\xdf\xdd\x3f\xde\x69\x65\x8a\xfa\xb8\x22\x94\x9c\xa1\x7d\x90\x5e\xbf\x0f\x54\xd3\x0a\xa7\x8b\xab\x27\x5c\xfd\x3e\xe1\x0a\x82\x17\xfa\x50\x04\x63\x54\xdc\x77\x3e\x0f\xea\xa3\xea\x9b\x15\xf7\x96\xfc\x9e\x7d\xf0\x79\x5e\x1f\x20\xc7\x0a\xb2\x4e\x74\x15\xaf\xee\xb7\x78\x75\x90\x75\xa2\x0f\x46\x99\xfa\x40\x94\xe9\xf8\x8e\xbf\x36\x3e\xf1\xed\x63\xdf\xb5\xae\x1c\x8b\x4c\x5e\x14\xa1\x3e\xbf\xfb\xed\xad\x9e\x38\xf5\xf1\xb7\x66\xbf\x44\x7c\x9f\x92\x4b\xf3\xc8\xa5\x9c\x59\x24\xb6\x4f\xbe\x03\xe9\xa8\x2b\x7d\xda\x7e\xf7\x61\x32\x99\xd9\x91\x00\xc9\x99\x91\xc0\x3e\xe5\x6e\x4f\xb8\xdb\x67\xe3\xd9\xa6\xdf\xe5\xbf\xdf\x35\xb6\xbd\x6a\xfb\x6e\x1b\xc7\xa9\x7d\x98\x37\x4a\xc8\x4a\x85\x7d\xca\x95\x43\x52\x25\xe7\x4c\xd7\x4a\x59\x8f\x8e\xac\xc7\x69\xe2\xfc\x64\xde\x4c\x80\xe2\x72\xfe\x3d\x2d\xed\x8b\x84\x4d\x7d\xfd\x8d\x85\xfa\x61\xf1\xdd\x49\x5f\xe0\x47\xce\x99\x63\x11\x99\x68\x5f\x57\x0e\xf2\x5d\x4d\x5f\x0a\x5f\xe0\x69\x4e\x0a\xa7\xac\xdb\x52\xf1\x88\xd2\xe7\x9c\xe9\xde\x6f\xad\xf5\xfe\x5b\x6b\x46\xd8\x36\x13\xc7\x1d\x6f\x67\x72\xe6\xdb\x99\xae\x82\xbc\x7d\xdf\xb3\x9b\x7f\xc9\xef\xae\xa2\xbb\x1d\x45\x77\x4f\xdb\x6f\x0e\x5b\xe1\xae\x7d\xc3\x5d\x2c\xfb\xd1\xb7\xa9\x3f\xbf\xfd\xd1\xec\xdb\x04\xde\xf4\x1d\x77\x5d\xf4\x3b\xe9\xf0\x7d\x75\x78\xa1\x49\xbf\x97\xc6\xb9\x30\x4e\x85\xc2\xf6\xab\x6f\x5e\x79\x4d\xb0\x59\xdf\x9f\xc6\x89\x6c\x49\xe6\x5b\x96\xae\xca\xb9\x7d\xe3\x59\x5f\xc4\x2f\x8a\xdd\x5f\x46\xbf\xfb\x8b\x92\x19\x99\x04\x97\xfd\x25\xf8\xa4\xa3\xc8\x6c\xce\x7c\xaf\xd2\xdf\xd0\xef\xe2\xfe\x8e\x3a\xfc\xd5\x39\x7b\x6f\x76\x8d\x40\x91\xfe\xca\x7d\x42\x12\x20\xe7\xc2\xfb\xfe\x2a\x3c\xf3\xde\xf0\x0c\xd9\x3f\xfa\x4b\x60\x51\x7f\xaf\xc9\x1b\x1a\x27\x81\x5a\xfd\x05\x50\x2b\x2b\x34\xf5\x4a\x7e\xbe\x57\x6f\xf2\x49\x78\x7f\x49\x7a\xda\x5f\xd4\x4d\xc8\x24\x05\xed\x2f\xcb\x65\x75\x54\x88\xcd\x99\x6f\x4b\xba\x2a\xc4\xf6\x17\xcf\xa9\x33\xc1\x66\x5d\x59\x88\x7e\x2b\xc4\x86\xc2\x33\x9f\x74\xe3\xf7\xdc\xb9\xff\x40\x1d\x5d\xa4\x84\x1d\xa4\x84\xa7\x8d\xbf\x93\x8d\x82\x6c\x42\xce\x24\xbf\xec\x9f\xc2\x17\xdf\x0d\x5f\x04\x5d\x24\xbd\xf5\xe8\x78\xeb\x71\x7e\xf7\xbb\xd3\x9f\x5c\x63\x54\x5e\xcd\xb9\xf4\xff\x06\x96\x18\xa2\x2f\x1f\xdd\xcf\x92\x66\xfb\x99\x7d\x63\xd1\xec\x1b\xeb\xb9\xaa\x9a\x2d\x59\x2d\xe5\x7f\xff\x57\x98\x71\x1d\x2a\x76\x3e\x50\xec\xbc\xda\xcf\x3b\x1c\xaa\x75\x3e\xd6\x15\xbb\x95\x2d\x5b\x2d\x1f\x7e\xc4\xef\x25\x0d\x02\xe1\xcf\xac\x96\xae\x96\xb3\x73\xea\x88\xe1\xa3\x81\x17\x9d\x95\x24\x46\x63\xd1\x7c\x1c\x0b\xe6\xe3\x3f\x2d\x1a\xf8\xd9\xbf\x4a\x40\xe9\x58\x04\xfa\x0d\x88\x4f\x96\xd5\x1e\x8b\x52\x6a\x2c\x58\x33\x95\x63\x28\xea\xa8\xd4\xf3\xb9\xc6\xd9\x16\xf5\x74\x34\x74\x79\x4c\x4d\xa1\xa6\x73\x3a\x7e\x67\x7f\x2c\xa2\x37\xc6\x2a\x18\x5e\x53\x57\x5a\xbd\xf2\xa2\x89\x6b\x54\xb5\x51\x15\xbb\x61\xdc\xc3\xaa\xdd\xa8\x1d\xa3\x08\x36\x69\xfd\x8e\x38\xad\xc4\x9e\x8e\xd5\x34\xf6\xe6\xa7\xc9\xb9\x80\x4d\xfb\xd1\x30\x42\xe7\x02\x36\x8d\xd0\xf0\x41\xe7\x08\x59\xdd\x78\x2c\xc3\x5e\x05\x7f\xe5\xda\x7a\x98\xd7\xc6\xc5\x70\x8d\x1d\xb1\x4a\xe3\x20\xc8\x78\x32\x96\xe3\x73\x9d\xb3\x0a\x7d\x0e\x8f\xc1\x8d\x1d\x85\x46\x8e\xf4\x82\xe6\x14\x5a\x89\x38\x9f\x63\xc9\xed\xb1\x78\xe9\x06\x08\xac\x2b\x59\xc9\xc6\xea\x5a\xa4\x3e\xd1\xc4\x41\x74\x1d\xa5\x7e\xba\x0a\xce\xa9\xeb\x28\x21\x96\xf8\x13\x0b\x63\x0d\x6d\xe2\x38\x47\xc9\x13\x7b\x1a\x3a\x2f\x90\xc0\xc1\x93\x39\xb4\xe4\xc7\xb6\xad\xae\xdb\x3b\xd4\xd3\xf1\x4e\x99\x66\x1a\x6b\xaa\xa7\x63\xff\x56\x66\x64\xc7\x9a\x9a\xd3\x34\x34\xb1\xab\xa9\xdd\x80\x0a\xec\xec\x69\x6a\x37\xf0\xde\xb8\x73\xf5\x96\xb6\x7d\x9d\x73\x44\xcb\x74\x88\x4a\x7b\x80\x4a\xbb\x7a\xe1\x4a\x2c\x4d\x6a\x63\x7c\x85\x1f\xdc\x1a\xc4\x8e\x73\x9c\x39\xf2\xad\x9b\xb3\xb1\x87\x95\xdf\x7b\x75\x24\x8e\xdf\x55\x1e\xce\xe9\xd5\x4a\xbc\xe8\xa9\x72\x0b\x5f\xad\xc4\x8b\x95\xd0\x25\x7d\x35\x88\x17\x83\xd0\x8f\xb4\xe6\x47\xa5\x33\xef\x35\xd6\xa7\xcf\x7d\x47\x1a\x68\x73\x3f\x0d\xfc\x98\xb7\x85\x95\x80\xc6\xfa\x74\x8c\x8e\xd6\x22\x18\x7d\xac\x4f\x27\xf6\xc3\x6c\x29\xcf\x37\xb1\xfd\x63\x3f\x38\xb1\xbf\x04\xcd\x10\x96\x62\xe0\x65\x74\x65\xd9\xeb\xb1\x19\x6b\x19\xfb\x88\x69\x16\x81\x1f\x02\x59\x8c\x9d\xf2\x69\x61\x4f\x8c\x1b\x0f\xbc\xab\xae\x4e\x01\xb2\xf9\x66\x6a\xe0\x9d\x75\x25\x6e\x78\x6c\x26\x63\xc7\x4e\x38\xb2\xce\xae\x24\xb6\x77\xc6\x07\x9d\x1f\x94\x70\xde\x47\x38\x93\x3f\x7d\xe8\xf9\xf5\xd8\x05\x7b\xf8\x4b\x0c\x8e\x4d\xa8\xea\x00\x7b\x39\x89\xd5\xc7\xa6\xcf\x34\x76\x41\x4f\xbc\x1d\x7a\x96\x3d\xf0\x2c\xbb\x3a\x0f\xfa\x2e\x5a\x8a\x8a\xae\x78\xd2\x77\x55\x57\xc7\xc0\x67\x21\xf9\xb1\xab\x96\xe2\xb8\x59\x35\x7e\xde\xfc\xd8\xb4\xb6\x07\x0c\xda\xca\xdc\xdd\xd0\x23\xef\x81\x47\xde\x95\xf6\xdf\x10\x69\xfa\xd8\x0d\x1f\x4c\xfc\xa0\xf4\x3c\x4c\x5f\xa2\xf4\xc7\x96\x00\xde\x36\xf1\x23\x4e\xd8\xb4\xb4\x76\x96\xb6\x71\xab\x4c\x4b\x0b\xa9\x1d\x94\x06\x7a\x30\x3e\xb6\x67\x34\x71\x6d\x5d\xbb\xe8\xe7\xa8\x37\xfd\x48\x23\x3f\x86\x6a\x0d\x8a\x83\x2d\x89\xbe\x1d\x83\xe0\xf0\x42\x3d\xc5\xb1\x42\xa8\x05\x76\x68\xcd\xa3\xe1\x73\xdc\x0e\x02\x4b\x07\xcc\x7a\x52\x9d\x8f\x1d\xda\x8e\xc0\x42\xe8\x50\x84\x4e\xe6\xd1\x08\x35\x68\x9f\x6c\xa9\x01\x10\xc0\xd7\xd0\xfe\x76\x75\xd5\x4f\x57\x8c\x90\x8c\x2d\x35\xb0\x8f\x1a\x60\xca\x73\xec\xae\x95\x1d\xd8\xf9\xca\xae\x86\x76\x6a\xa0\x2b\xad\xdf\xd0\xfa\x0d\xac\x1f\xad\x83\x3d\xb4\x7e\x63\x9d\x51\x50\xf4\x6c\xe9\x88\x0d\x71\x1f\x5a\xdb\xa9\x15\x3c\x92\xbf\xa4\xc4\x15\x94\xb8\x87\xf3\x53\xa8\x2d\xf5\x06\x7f\xe0\x9d\x7d\x0d\xfb\x6f\x7c\xbf\x63\x2f\x1d\xcf\xe3\x34\x31\x95\x3b\xf6\xd2\x4d\x58\x18\xa3\xba\x5b\xba\x09\x0b\x37\xe1\x9f\x5f\x69\xd2\x0b\x23\x71\x9e\xf7\xad\xae\x36\xba\xe2\x9c\xb7\xd6\x77\xe3\x00\x04\xe7\xbc\xb5\x2b\xd0\x21\x44\x4d\x8f\xfd\xea\x00\x40\x53\x04\xa5\xf4\x96\xa6\xd8\x2f\x36\xac\x73\x80\xaf\x36\xec\x45\x5f\xb4\x53\xf6\xab\xb3\xf1\x9e\xb3\x41\x83\x68\x7f\x5a\x8b\xe3\xc7\xd4\x4e\x25\x27\xb7\x70\xec\xef\x9c\xb5\xe0\xe7\xa4\x45\xc0\xee\x5f\x99\x32\x1c\xaf\x0c\xfc\xf7\x28\x84\xc2\x91\xbf\x7c\x2a\x34\xde\xa7\x42\x5d\x35\x36\x35\x35\x9d\x55\x67\x9a\x71\x88\xbf\x60\x00\xcd\x56\x38\xdd\x57\x0a\xe1\x4d\xc7\x84\x79\xf8\x1b\xc2\x1b\x06\xa8\x0a\x2a\x59\x8d\x86\x6a\x0f\x0c\x78\xb6\x95\x55\xeb\x86\x98\x0b\x06\x98\x0b\x2a\x73\x96\xe3\x65\xe1\xaf\x81\x22\x04\xb5\x6b\xe8\x2c\x91\x3b\xde\x8c\x43\x5d\xf4\xab\xa1\x26\x7c\x90\x02\xe8\x2d\x5a\xa5\x63\xe3\xf3\xed\xfa\x10\x0f\xc2\x00\x0f\x42\x65\x96\x73\xbc\xb2\xf1\xdf\x82\x55\xfa\x79\x8e\xe3\x2d\x5a\xa5\x63\xee\x57\xed\x87\x0c\xf9\xb7\x60\x10\x94\x25\x6f\xd5\x20\xea\x19\x84\x16\xbd\x6a\x69\x61\xe2\xf3\xa2\xbe\x0c\x6b\x8f\xf7\x58\xf4\x55\xcb\xd7\xb4\x46\x47\xd3\x54\xd2\xe6\x8d\xb7\x69\x74\xb0\xe2\x3b\xad\x9b\xb7\xe9\x7b\xc7\xa0\xaf\x5a\x58\x42\x0e\xc7\x7b\xb4\x4b\xa5\xc8\x7f\x4d\x4b\x74\x2c\xff\x92\x34\x25\x29\x9e\xd7\xb0\xf3\x4d\xbf\x0a\x35\xf5\xff\xfd\x1f\x9f\xda\x8f\xd7\xb4\x44\x47\x07\xd5\x4e\xa7\xe0\x35\x0d\xe2\x78\x0e\x95\x32\xff\x95\x4a\x42\xdd\x86\xda\x8d\xab\xe7\x3a\x12\xde\xd0\xa4\x5f\x69\x10\x8e\x41\x70\x73\xa5\x92\x40\x15\x51\xb5\xb7\x7c\xea\x31\xde\xe3\x6e\xd4\x4e\xa7\xea\x0d\xad\x44\xe0\xb0\x38\x27\x25\x75\xf5\x1e\xcf\xa4\x6a\x8d\xe4\x99\xbc\x47\x3d\xd5\x4e\x93\xe8\x0d\xed\xc6\x51\x4f\xac\x43\x30\x5e\x39\x2d\x6f\xc7\xd9\xa3\x23\xf6\x76\x1d\xf3\x8e\x13\x46\xe1\xf2\x0e\x2d\x12\x14\x4f\x97\x34\x18\x3a\xcc\x47\x2f\xd4\xae\x8b\x3d\xb5\x89\xc7\xd8\x6f\xc4\xb9\x8f\x77\x6a\x80\xf3\x6c\x15\x4d\x8e\x57\x32\xfd\x5d\x38\x14\x34\x2c\x5e\xc9\x74\x94\xb5\x68\x8f\x0e\xed\xd2\xf7\x8e\x1f\x40\xce\x83\xa1\x98\xd1\x78\x8f\x48\xaf\xd4\x8b\xaf\x44\xfa\x7b\x1c\x84\xc6\x9a\xbc\xe3\xdd\xda\xde\x7d\xb6\x57\x07\x69\xeb\x8c\x1d\xb9\xdf\x1e\x1d\xbf\xad\x9e\x8e\xef\x50\x58\xa0\x6b\xbc\xd2\x03\xef\x8b\xae\x0a\xc7\xf7\x6a\x43\xbe\xe7\x34\x69\x83\x25\xd2\xdf\xaf\xa0\x89\xdb\xf8\x69\xec\x1f\x3e\xc8\x80\x84\xa0\xb3\x03\xf1\xab\xf6\x68\x6d\x3f\x0d\xfe\xd8\xff\x8d\xa9\xc1\xf1\x49\xdc\x7f\x0f\xfa\xe2\x0a\x7e\x4c\xd2\x8e\xef\x81\x64\x34\x35\xb9\x9a\xb0\x4e\x9d\x2d\x43\x2d\x0b\xdf\x0b\x36\xbd\x6a\xc2\x28\xe8\x4f\x7c\x24\xc4\x18\xdf\x91\xfd\xed\x51\x57\x8c\x07\x8f\xef\x88\xea\xf6\xa8\x2f\xa6\x94\x06\xa2\x6b\x8d\xb8\xfa\xf1\xc9\x01\xf8\x8e\x03\x50\x79\x45\x3e\x39\x00\x5f\xc6\x28\xa8\x15\x3f\x89\xee\x0f\xe1\x19\xfa\x13\x9f\xac\xfc\xaf\x60\x6d\x79\x0f\xbe\xa2\x9e\x8e\xa8\x26\xe0\x65\x7c\x55\x93\x82\xfd\x4f\x4f\xe3\xab\x9a\x53\xed\xb0\x44\xd8\xa2\xe5\xab\x98\x12\x4d\x00\xc1\x83\x07\xe0\xc1\x8d\x79\xbe\xf1\x49\x74\x03\x28\xdc\x98\xe6\x1b\x5f\x53\x57\x0d\xf6\x26\x4d\x25\x95\x2d\x19\x28\x5b\x42\xe8\xcc\x50\xd1\x92\x01\x70\x71\x63\xaa\x6e\x7c\xa6\x43\x61\x90\x8d\xfc\x9c\x44\xf7\x67\x18\x04\x9d\xd6\xcf\xb4\x7c\x36\xd0\xc4\x59\x11\x49\x35\x3e\x83\x25\xea\xfa\x95\x26\xec\x18\x45\xe6\x28\x24\xa1\x3f\xc7\xd1\xa4\x29\xf7\xb9\x86\xe1\x18\x06\xf5\xce\x27\xe1\xfd\x41\x78\xf7\xff\x86\x0f\x18\x9f\x6b\x57\xfc\xc3\x37\x79\x06\x25\xc1\xbf\xc0\x20\xe9\x6a\x7e\x04\xbe\x0c\x90\xe4\x34\x16\x18\x1c\x9f\x44\xf8\x17\xf8\x20\x7d\x87\xaf\xeb\x42\x1e\x37\xa2\x3d\xdc\x15\xe2\xed\xc7\xd7\x61\x7f\xe9\xb8\x77\x4d\xba\x9f\x63\x93\xa8\xbb\xbf\xae\x55\xec\xe8\x4a\x17\x5c\xd2\xfd\x1b\x19\x4d\x5c\xfb\xa1\xbe\xc6\xed\x8b\xd3\x92\xe0\xff\x06\xfa\xd2\x0d\x1f\x3a\x51\x03\x11\x08\x1d\xec\xa1\x23\x35\xcf\xb4\x58\x71\x70\x7c\x53\x7d\x4d\xec\x98\x6e\xf8\xd4\x8e\xcd\x0e\x69\xc2\x16\x6d\x09\x74\x4c\xd2\x0d\x9f\x9a\xf1\xc4\x45\xd1\x91\x92\x92\x41\x01\x9a\xf6\xcf\xb9\x59\x12\x69\x0b\x5d\x71\x10\x0a\x30\x7d\xeb\x6e\xd6\xaf\x45\x6e\xc3\xb7\xb1\xf9\x5a\x25\x29\x99\x0f\x4a\x26\x31\x64\xf0\x6d\x6d\xfe\xc6\x6d\xd0\xc5\x93\x96\x01\x5f\x51\x4b\xba\x5e\xaf\x8e\xfc\x8b\x23\xcf\x68\xc2\xf7\x6a\x95\x8e\x0b\x41\xb2\x96\x21\xc8\xfd\xf8\xde\x33\xf4\xac\xd3\xf4\x69\xec\xdf\xd9\x90\xac\x16\x2d\x12\xd4\x0f\xc9\x74\xc6\xa7\xb8\xd4\x77\x34\x51\xcb\x5a\x25\xa9\x9f\x0f\x3a\x86\x65\x3f\xa7\xc0\xfd\x13\x14\x4a\xed\x67\x23\xce\x87\x89\xc0\xf9\x3c\x13\x3f\xea\x6c\x7a\xd5\x84\xef\xe9\x57\xd4\x16\x13\xf4\x49\x8d\x6f\x1a\x26\x80\xfe\xbf\x3f\xf1\xc1\xcc\x0f\xa6\xa5\xa6\xfd\xbf\xff\x23\x7a\x6d\x3e\x4c\xe1\x4e\x94\xed\x69\x2c\x6d\x38\x1f\xbe\x01\x99\x0f\x54\x4c\xfe\xa9\xe2\xf9\x30\x69\x3a\x1f\x28\x12\xc6\xf9\xa7\x5e\x09\xcc\xa7\xe0\x83\x3f\x7d\x3b\x1f\x06\xf3\xe7\x73\x94\x4a\xc9\x0f\xa7\xc5\x68\xfe\x7c\x0a\xfa\x6a\xfa\xa0\xfa\xaa\xd8\x92\xc6\x69\x31\x94\x34\x9f\xda\xce\xb4\x8c\x2d\x5a\xdc\x8a\x51\x98\x9a\x3e\x36\x35\xac\xa0\xf1\x7b\xcc\x95\x4e\xbc\x2a\x20\x58\x6f\x3e\xa6\x65\x82\x56\x60\x15\xc4\xf9\x98\x96\xdd\x70\x2e\x82\x13\x26\xbd\xf2\x7c\x8e\x05\x5f\xc8\xba\x39\x1f\xd3\xe2\x42\x2d\x30\xbc\x3d\x1f\xd3\x66\x39\x06\x18\x5c\x77\xd7\xb4\x1c\xcb\xd4\xf9\x2b\xff\xe7\x57\x67\x8b\xb5\xec\xae\xd3\x04\x09\xce\x64\xed\x7c\x42\x9b\x75\x84\x79\x2b\x0f\x7f\x15\x9a\xd6\xb1\xb4\x1b\x5f\x3b\x4c\xbd\x3e\x98\x78\x7d\xc0\xf2\x38\xf3\x09\xad\x2d\x04\x78\xe3\xaa\x77\x2d\xe0\x11\xe0\xad\x3c\x5c\xf5\xae\x49\x75\xc7\xe1\x64\x4f\x5d\x27\xe6\x58\xea\x4d\x5b\xdf\x75\x2a\xfa\x8b\x1f\x71\x10\x5d\x83\x80\x68\xff\xd9\x53\xf3\x19\x9a\xd3\xb8\x3d\xf1\x94\x0d\xf5\x34\x8e\x1c\x31\xb5\x4c\xb5\x9c\xe5\xd3\x71\x99\x3a\x2e\xf3\x1c\x17\xe7\x71\x9e\x9a\x12\xc4\x3a\xf3\xd5\xf3\x99\xda\xf8\x89\x75\xcd\x9c\xed\x54\x4f\xc7\x57\x20\xd6\x70\xea\xfd\xc5\xc4\x73\x8b\xc6\xa0\xf3\x7c\x96\xee\xc0\xf1\x15\x5a\xf0\x6a\x2f\x9d\x3e\x48\xf5\xe0\x3a\x2c\xdd\xb6\x05\x71\x50\x38\x86\x2d\x79\x75\x5c\x07\x96\x92\x9a\xcf\xd6\x0e\x42\xe0\x33\x46\x3c\xc5\x41\x36\xc1\x41\xd6\x4a\xe1\xc8\xb7\x06\x71\x1c\x8c\x16\x6a\xd1\x42\x1c\x2f\xa2\x31\x10\x3c\x9f\x57\x83\x38\x5e\x44\xeb\x6a\xd1\xe7\x8e\xe4\x6f\x45\xc7\xfc\xd5\xa4\xde\x89\x26\x4e\xea\xd5\xf2\x41\x3e\xb3\x46\xe4\x4c\xcc\xdc\xce\xf4\x60\xa7\x5c\x4d\xa1\xa6\xb3\x7e\x3f\x0c\xd5\x4c\xac\x10\x35\x13\x0c\x7d\x5e\xa8\xc4\xc4\xed\x4c\x0f\x8e\x25\x85\x41\x62\x76\x60\xa6\x54\xfe\xf7\x7f\xe4\x57\x9a\x89\xd0\xb1\x89\xc7\x2d\x8d\x19\xf0\x99\x92\xc6\x90\xfa\xf9\x51\x63\x8b\xc6\x70\x44\xba\xfd\x14\xd5\x4c\x64\x67\x9d\x29\xa7\x23\x75\xb8\xbb\x7a\x1f\x33\x53\x6e\xff\xfb\x3f\xc2\x39\x67\xa2\x3f\x31\x13\xf4\x00\x1f\x7a\xcc\x24\x3d\x90\x32\x4e\x2c\xf7\x30\x65\x0d\xe2\x78\x1d\xe4\x70\x9a\xaa\x83\x36\x53\xc1\x69\xe1\x1e\xa6\xa2\xe9\x16\x0c\xe2\xbf\x05\x45\x67\x62\xa0\x68\xa6\xa3\x3f\xc8\x0a\x35\x93\xd4\x47\x82\xfa\x28\x5d\x4d\x4b\x4d\x48\xd7\x14\x6e\x70\xd5\x42\x1d\x7f\x85\xe5\xc1\x66\x62\xe9\x9b\x99\x8e\x26\x69\x8c\xcf\xcd\x54\x35\x88\xe3\xca\x90\x2a\x6a\xea\x11\xd1\x44\x79\xb7\x56\x1f\xf5\xa4\x41\x1c\xf5\xd3\x18\x33\x9b\xe2\xc5\x9b\xe0\xc5\x23\xbd\xd4\x14\xf3\xdd\x04\xf3\x9d\x15\x6e\x56\xd3\x66\xc1\xe7\xe1\xab\x95\x99\x9a\x06\xd1\x26\xb2\x53\xfa\xd5\xab\x26\x0c\x22\x71\xbe\x04\xfa\xce\x74\x34\x5d\xab\xda\x48\x3e\x71\x9a\x28\x34\x57\x64\x05\x88\x7e\x6f\xa6\xe3\xca\xb4\x4a\x71\x9a\xa4\xc3\x92\xdd\x24\x19\x27\xec\x3a\x83\x70\x52\xaa\x56\xd0\x75\xda\x8f\x93\x42\xe4\xec\x4c\xae\x0d\xf6\x3b\x2d\x6e\xb0\xd4\x1b\xf8\xf9\x0a\x5f\x4f\xce\x14\x5a\xdb\xa3\xde\x88\xa2\x98\x29\x34\xab\xc0\x20\x0a\xd7\x22\x34\x88\xe3\xaa\x90\x63\x6b\xa6\xae\x55\x3a\x3a\xcc\x34\x27\xa9\xb0\x04\x15\xc6\x88\xd5\x4c\x5d\x1b\x02\x15\x56\x2b\x7b\x92\x0e\x4b\xc7\xe7\x68\xa4\xaa\x99\x69\x68\xbe\x50\x3a\x0c\xee\xcc\x34\x35\x8a\x89\x5f\x51\x29\xa6\xa9\x0d\x81\xda\x61\xbd\xcd\xa9\xc2\x7c\x33\x41\x83\x90\x8a\x66\xea\x71\xd8\xc4\x5b\xb0\xc6\xaa\x92\x33\x2d\x6d\xe3\x51\x14\xc4\xc2\xcc\xb4\xb4\xea\x70\x0c\xe8\xe1\xcf\xb4\x35\xc0\x8d\xc3\x14\xec\x4a\x8a\x22\x6d\x74\x25\x29\xb3\xd5\xd5\xf1\x04\x58\x5b\x6e\xa6\x57\x07\xe6\x85\x55\xd6\xf9\xbd\x57\x7b\x75\xac\x7f\x33\x9e\x4d\x69\x83\x04\x6d\xd0\x24\x6e\xa5\x0d\x50\x33\xb0\x35\x5d\xee\x4f\x43\x47\x88\xa9\xe9\x0a\x7f\xea\xea\x43\x57\xbc\xa7\x9f\x96\x02\xda\x85\x4e\xd2\xcc\xb2\xfe\x41\x9a\xd8\x1a\xef\x55\x66\x84\x69\xe6\xe7\xdc\xee\x5f\xda\x77\x66\x39\x06\x20\x56\x6c\xf4\x69\x66\x26\xc8\x6a\xe6\x07\xf6\xd0\xcf\x73\x99\xaa\x5a\x38\xc1\xb3\x48\x9a\xb3\x99\xe5\x4d\x64\x78\x13\xac\xc6\x39\xb3\xbc\x09\xbc\xc5\x6b\x72\x4f\xf4\x14\x6f\xe2\x29\x1e\x51\xd0\x33\x4b\x89\xe4\x8c\x49\x51\xbf\x64\x62\x86\x66\x3e\x0a\xa5\x35\x0a\xdb\xcc\x27\x3b\x33\x67\xd8\xc2\x9a\xb0\x14\x4c\x86\x37\x21\x3b\x3e\x17\x2d\x60\x81\x2e\xa3\x7a\xce\x45\xcb\x04\x99\xcf\xe7\x33\x33\x17\xcd\xb8\xe0\x83\xb4\x12\x72\xd5\x8c\x2b\x66\x4c\x2b\x21\x33\x71\x30\x73\x85\xa4\x0b\xfd\x4a\xf3\x42\x68\x4a\x26\x6f\x96\x68\xc7\x4b\xc3\x22\x43\x3e\xcb\xd3\xc8\x0d\x83\xa7\x21\x9f\x9b\xd6\x10\x12\xbc\xf1\xa6\x66\x02\x8a\x67\x6e\xe8\x8b\x27\x2d\x13\x36\x34\x73\xc3\xc9\x75\x8e\x50\x12\x3c\x23\x02\xd5\xb4\xbc\x4c\x1e\xcc\x7c\xbc\x0e\xa3\xfa\xce\xae\xd5\x45\x94\xa9\x69\xec\xae\xed\xf7\xb3\xfd\x54\xdf\x59\x3e\x08\x9e\x48\x36\x99\x88\xd9\xb5\x91\x8e\xe3\x19\x1c\xba\xeb\x78\x1e\x4f\x85\x60\xf5\x99\x5d\x93\x42\x14\x89\x4f\x5e\x66\x0e\x0d\x22\x30\x08\x9e\xce\xd0\x22\x05\xf4\x41\xe7\xd2\xca\x3b\xc9\x88\x2f\x35\xda\x02\xb9\x6b\xbe\x47\x96\x13\x0b\x35\xb3\xdc\x93\xdc\xcf\x20\xec\xe1\xf8\xba\xf6\xfe\x88\xf9\x26\x1b\x2c\x77\x9d\xe9\x23\xdb\xfd\xe1\x22\x49\xb4\x67\x44\x9e\xec\x61\x57\x43\x83\x18\xe9\xfc\x88\x9f\x93\x7b\x02\x1a\x4f\xff\xe7\x37\xda\xc2\xeb\x9d\x48\xc4\x48\x53\x80\xc3\x93\x3c\x14\x33\x0f\xdd\x82\xeb\xb8\x48\xf8\x48\x87\xe4\x09\x17\x89\x9a\x3b\x4b\x87\x80\xdb\xb3\xc9\xca\xca\x4b\x8b\x74\x7c\x8b\x66\x8c\x3d\xe4\xa5\x01\x1e\x5f\xc3\xff\xf9\x91\xc6\x07\xed\x62\xd4\xb4\x79\x69\x91\x8e\x3a\x69\xac\x01\x39\xf3\xd2\xd5\x39\x1e\x89\xd3\x49\xca\x5b\xb7\x74\x9f\x5b\x2a\xbf\x34\x4b\xbb\x64\xc4\x9d\x08\xb5\x9c\x79\x6b\x7c\xc7\xef\x70\xc9\xb9\xad\x41\xec\xf7\xb4\xc4\x7f\xb3\x46\xf3\xab\xc3\xf9\xda\xff\xfe\xcf\x25\x05\x5f\x5d\x83\xa3\x86\x1a\x5f\xeb\xcc\xfc\xea\x1a\xbc\xdf\xf9\x11\xef\xce\xa7\x79\x7d\xed\x7f\xff\xe7\xb4\x20\xf2\xa7\x53\xf6\xcd\xd3\xf2\x3b\xea\x45\xea\x05\x3c\xa5\x2c\x74\x36\x8b\xdc\x9a\x02\xc5\xc3\x52\x91\xb3\x30\x5f\x3d\xcb\x83\xf3\x4c\xe1\x58\xa4\x5e\x0a\x34\x85\x51\x38\x96\xa4\xae\x12\xba\x6a\x6c\x29\x6a\x39\xeb\xc0\xc8\x8d\x8a\xb4\xce\x72\xfc\x98\x26\x9d\x5e\x88\x7a\x9a\x60\x51\x6d\x66\xea\xe9\x55\x13\x06\x41\xa5\x5e\x98\xca\x9e\xe0\x57\x6d\x24\xaa\x99\x45\x9a\xa7\x40\xf3\xf0\x05\xd1\x2c\x7c\x89\x30\x51\xd7\xb5\x99\x73\x99\x98\x2a\x99\xe5\x62\xa5\x78\x45\x44\xd2\x3a\x51\xf1\xb5\x91\xc0\x66\x96\xa2\x65\x82\xe6\x31\xda\x3e\x45\xc1\xaa\x72\x14\x43\x23\x7a\x73\x96\xaa\x79\xb5\x33\x78\x32\xcd\xcc\x22\x4b\xbf\x1c\xd3\xde\x35\x63\x3e\x4a\x9d\x78\xaf\x4d\xc2\xc9\x59\xda\x3f\x9f\x3b\x27\x89\xaa\xa0\x98\xb6\x0a\xb1\x2a\x89\x04\xbd\xeb\x9e\x78\xd7\x4d\xac\xd9\x2c\xa6\xcf\xf9\xd9\x5f\xcd\x56\xf6\x7a\xf1\xfb\x39\x4e\xc9\xb5\xe8\x47\x2b\x34\x4f\x1c\x9e\x54\x41\x41\xd0\x89\x75\x06\x67\x91\x55\x5e\xe2\x74\xa5\xd5\x93\x55\x5e\x8e\xbc\x77\x1a\x8e\x25\x74\x94\x8e\x51\xde\xc8\x48\x3a\x8b\xac\x72\x10\xd6\x36\xa7\x80\x29\x12\xdd\x05\x66\xb9\x53\xc0\x14\x99\xe5\xe0\xaf\x6d\x7c\xb5\x33\x4b\xd7\xa1\x00\x16\xa9\xe8\x83\x92\xdd\x78\xdf\x4e\xc0\xdb\x2c\x43\xab\x84\xd0\x12\x41\x95\x53\x75\x77\x27\x28\x6f\x9b\xeb\x2e\x0e\x1d\x17\x88\x68\xd7\x5d\x94\x88\x2e\xb0\xe5\x59\x5c\x76\x96\xa9\x03\x7d\xcc\xfa\x52\x34\xf6\xa9\x6d\x84\x99\xef\xba\x57\x0a\x14\x95\x63\xf1\x93\xbf\x73\x16\x62\x4f\x27\x1e\xe2\x97\xa2\xb1\x2f\x2d\xd3\x11\xe4\xed\x9f\x03\xb8\x74\x34\x8f\x9b\xc0\xa7\x23\xb3\xc8\x01\x28\x70\x00\x5c\x17\x6e\x6b\x10\x47\x5a\x87\xee\xc0\xd6\xc8\xf7\x87\x41\xf0\x7b\x72\x00\x50\xff\xb7\x39\x6d\xdb\xf2\x6a\x87\x91\x64\xfe\xe7\xdc\x4a\x0a\x83\x04\xb8\x91\x22\x65\x96\x4f\xdb\x08\xf0\x69\x91\xe0\x94\x18\x2e\x1f\x80\x90\x5a\xf6\x4f\xcb\xf4\x61\x1f\x69\xdd\xa8\xbc\xf0\x2c\x70\x01\x08\x77\x9c\x95\x20\xd3\x59\x1f\x2c\xc6\xef\x49\xd6\x14\xff\xf0\x04\xff\x70\xe1\x0b\x8d\xa9\x9a\xc4\xb3\x22\x39\x40\xfe\x93\x29\xf6\xe1\x59\x9f\x8b\xef\x54\x13\xb5\x26\xa8\x0b\x82\x81\xd4\x2a\x43\x1f\x25\x8d\x5b\x30\x5c\x54\x25\x8a\x2b\x44\x71\x30\x92\x5a\x89\x2a\x9a\xf5\x48\xe5\x16\xbc\xfa\x55\xa2\xb8\x42\x14\x07\xaf\xbe\x6a\x1f\xcf\x8a\x50\x52\xd0\x49\xa9\x12\xc5\xf5\x18\xfd\x7c\x3a\x33\xab\x22\x49\xf5\x48\x62\x82\x2e\xa7\x4a\x22\x4f\x54\x39\x6e\x84\x56\xce\x2a\x17\xa0\x42\x46\x93\x65\x64\x56\xc9\xe8\x8a\xac\x35\x5f\xc6\xcc\x5a\xd4\x55\x59\x67\x01\xa9\x45\xaa\xc4\x37\x2a\x23\xb7\xa0\xc0\xa8\xca\x35\xa0\x30\x72\x21\x5f\xf2\xac\x55\x2b\x88\xec\x34\x5f\xa9\xcc\xaa\xe8\x0e\xf8\x21\xf8\xe6\x67\x56\x79\x00\x15\xea\x80\xb8\xc6\x59\x9b\x16\xf0\xa8\x83\x16\x3c\x9e\x95\x68\xa4\x59\x5b\x9c\xef\x71\xe8\x4d\xc7\x02\xd1\x1d\x16\xd8\x9d\x55\x0a\xa1\x1a\x06\xc1\x9e\x4c\x0b\x68\x08\x11\xeb\x2c\x49\x21\x54\xc3\xf7\xa8\x94\xaa\x6b\xef\x91\xa0\x08\x2d\xa0\xeb\x48\x3b\x8e\x34\xdd\xc6\x2a\x65\x51\x91\xbb\x08\x2d\xa0\x72\x17\x15\x90\x56\x45\x4d\x55\xa4\x79\x56\x04\x6a\x82\xc1\x89\x2a\x1f\xa0\x06\x3e\x48\xef\xa5\x86\xf6\x31\xb0\x23\xf4\xbc\xaa\x52\x14\xf5\xb8\x03\x85\x70\xc2\x59\xa5\x49\x2a\xd4\x45\xfc\xd3\xa4\x33\xd3\x71\x66\xe8\x44\xa9\x1c\xf4\xac\x88\xe2\x84\xee\xfe\xd0\xf2\x42\x29\xb0\x3a\xe3\xac\x43\xe7\xf3\xe8\x87\x46\xfa\xd8\x59\xa5\x14\x2a\x02\x3c\xfd\xa9\xff\xcd\x24\xad\x53\xa7\xe3\x28\x06\xd6\x6d\x9e\x75\x6a\xad\xe6\x87\x88\x3a\x9b\x64\xd5\x57\xa8\x8c\xae\x9b\xac\xc8\x50\x85\xc1\x4f\x3e\xda\x59\xa5\x18\x40\x25\xde\xba\x4e\xf6\xd6\xac\x11\xe4\x61\xad\xdc\x59\x15\xe4\xa9\xc7\xee\x26\x13\xcf\xac\x12\xff\x15\xd9\x00\xe2\x03\x67\x7d\xb5\x2d\x47\x13\x34\x72\xa0\xcc\xfa\xea\xb8\x1d\xf1\xff\xcf\x99\x97\xf4\xaf\x88\xff\x74\xad\xc5\xab\x41\xbc\x18\x04\x7b\xfa\xb4\x14\x08\xff\x10\x06\x38\xeb\xa7\x05\x84\xf0\xef\xea\x4a\xc2\xbf\x7e\x2f\x9a\x7e\x42\xa3\x49\xf8\x37\x84\x72\x08\xe9\x9b\x4d\xd9\x85\x06\x6c\x68\xe5\xd9\x68\x0a\xd8\x80\x8a\xbd\x91\x43\x76\x36\x45\x65\x5a\x3a\xfa\x93\x51\xbc\x46\xdc\xe8\x04\x47\x7b\x23\x49\xec\x6c\xc4\x8d\x4e\xd4\x0b\x6f\x04\xcd\xcd\xa6\x2c\x42\x4b\xeb\x7c\x2f\xd8\xc2\x59\x35\x08\x78\x82\xe6\x66\xcb\x1a\xc4\x91\xf5\x2c\x9f\x3d\x9b\x82\x3c\xa8\x30\x1e\x1a\x83\x02\x39\xed\x58\xd6\xc4\x1f\xcf\x46\x64\xe8\x6c\x47\x9e\x37\x42\xf0\xa6\xaa\x8d\x4f\x54\x1b\xd7\x05\x6f\x12\xef\xed\x88\xf3\xa2\x80\x7a\x53\xc0\xbf\x15\x6c\x07\xd5\x74\x53\xc0\xbf\xd5\x23\x08\x29\x15\x9a\x62\x3f\xed\x48\x77\xdd\xfc\xa6\x4c\x32\x38\xec\x1b\x61\x80\xb3\x55\x2d\x5e\x3d\x07\x89\x32\xa1\x35\xed\x3b\x72\xcc\x64\xd0\x9d\x22\xbb\x9f\x28\x7c\x6e\x8f\xf6\x5d\x22\x1c\x85\xd0\x25\x48\x1a\xf1\xa4\xb3\x41\x82\x33\x15\xd5\x94\x98\x46\x81\x74\x23\x1f\xef\x6c\xca\x3e\x37\xc3\x09\xe3\x9d\x6f\xe4\x1c\x9a\xcd\x30\x08\xc6\x13\x9a\x69\xdf\x8f\xdc\x37\x12\xee\xce\x26\xb9\xdf\x10\xc3\x21\xa7\xee\x6c\x0a\xc2\xb7\x40\x72\x8b\xc9\x8a\xa6\x44\x32\xca\xad\x1b\x4b\x2c\x4e\x11\xf8\xcf\xd6\xef\xaf\xb8\x82\x32\xdd\x5b\x0f\x24\xbe\xf8\xc1\xae\xc1\x77\x8c\x90\xc1\xb8\x26\xfb\xbc\x1d\xfb\x9c\x78\xf0\xd9\x64\x9f\x83\x00\xc9\x58\x5d\x70\x36\x85\x5d\xda\xc0\x12\xd2\x66\x6e\x32\xdd\xdb\x31\xdd\x3b\xad\xa6\x36\xb4\x57\xe3\xc5\x8f\xb8\x4c\x53\x83\x98\x18\x04\x27\xa5\x84\x71\x9b\xed\x7f\xff\xd7\xe9\x98\x35\x25\x8c\xdb\x11\xd5\x46\xa4\xdf\x14\xef\xd2\x04\xcd\x52\xa7\x79\xd6\x64\xec\xb7\x89\x85\xd0\xbd\x5e\xda\xaa\x23\xdf\xed\xd1\xed\x95\x50\x07\x35\x93\x3d\xba\x8a\x0a\xf7\x83\xaa\x89\xf8\xf2\xd9\x14\x8f\x69\xc7\xba\xef\x34\xe9\x9a\xd2\xc2\x6d\x63\x7b\x75\x75\xb6\x56\x6f\xa3\x27\x5d\x1d\x45\x5d\xda\xc6\xf2\xe9\xac\x2b\xf9\xdb\x5e\x7c\x50\x87\x5d\xe1\x7e\xd4\x4d\x28\x35\xeb\x57\x5a\x8b\x63\xc2\x5b\x62\x58\xad\x7d\x9a\xf0\x91\xea\x96\xb4\xec\x9f\x0e\xe0\xb1\xdb\x8d\xaf\x3a\xa6\x29\xb6\x62\xc7\x38\xb7\xc4\x29\xab\xf6\xc2\xb4\x23\xc5\x8d\x1c\xbc\xd3\x08\x01\x9d\xf6\xe0\x83\xb4\xb5\x4c\x11\x14\x4b\x58\x42\xfe\x48\xc0\x1d\x94\x6e\xb0\x54\xd4\xd4\xd5\x34\xce\x8c\x19\x50\x37\x89\x6e\x3b\xc6\xb9\x91\x73\x63\x9a\x32\xc0\x76\xec\x74\x62\xf7\xa7\x29\xcd\x6b\x47\x40\x1b\x8b\xe0\x4d\x53\x2c\xc4\x8e\x05\xde\xd5\x93\x2c\x70\xd4\xfa\x37\x32\x71\x4c\x13\xda\x07\xa5\xfe\x8d\xc8\xe5\x69\x92\xeb\xe0\xe1\x32\xd6\xc6\x9b\xc6\x57\xb8\xd3\x2a\x26\x4c\xb4\x85\x29\xbd\x6a\x35\xce\x28\x38\x29\x59\xd9\xa0\xf1\x32\x72\x70\x4c\x23\x3c\x74\x5a\xc5\x52\xf0\x22\x98\x62\xf0\x76\x6c\xf1\xc2\x52\x11\xd3\x24\xa4\xad\xe1\x5c\xf0\x8e\x18\x91\xa3\xd3\x80\x1c\xad\xb4\x1e\x4c\x31\x78\x33\xcc\x98\x4a\xc4\x64\x4d\x9b\xe1\x83\x0c\x0f\x98\xe0\x3e\x76\x64\xaf\x11\xdc\x36\x55\x21\x63\xa2\x42\x46\x21\x7d\xdf\x34\xc9\x62\x73\xf4\x45\x9f\xdd\x14\x9f\x07\x01\x59\x21\x9a\x7c\x9a\x6b\x09\x1d\x83\xd7\x76\x29\x8d\x6a\x7e\x76\x92\x6c\xc0\xd3\x14\x95\xb1\xc0\x83\xb8\xa6\x26\x6d\xd7\xb1\x83\x2d\x3f\xff\xad\x30\xed\x34\x85\x52\xac\x9f\x33\xc5\xdc\xa7\xc9\x6a\x36\x08\x71\x32\x72\x4c\x1b\xda\x97\x23\xb5\x8d\x0f\xd9\xa7\x29\x0e\x6e\x47\x34\x9b\xb2\xdb\x26\x98\x8e\x1d\xd9\xdc\xb5\x1e\x53\xc3\x9f\x15\x3f\x62\x57\x12\xbb\x76\x6c\x67\xcb\xff\xfc\x4a\x3b\x36\x31\x69\xad\xa2\xd0\x38\x76\x44\xb0\x65\x2d\xd5\xd2\x2a\x2e\x0c\x50\x87\x5e\xf1\x12\x5b\xd8\x67\xe3\xe9\x50\x20\xdc\x76\x01\xa6\x80\x47\x40\x31\x6d\x83\x78\xe5\x5b\xec\x69\x02\xd0\xd8\x46\x5f\x3a\xbf\x5b\x7d\xed\xdb\x17\x0f\xa9\x24\x2f\xe8\xce\x4c\x48\x36\x53\x44\xdb\x00\xb3\xac\x1a\xc6\xab\x85\x82\x50\xe6\xc3\xea\x29\x8e\xb4\x69\x57\x28\x9b\x3e\xa8\xe3\xf6\x62\x93\x99\xee\x35\x65\x5a\x0d\xf2\x3a\xeb\x42\x48\x5e\x83\x47\xcd\x32\x15\x80\x49\x5e\x1b\xe4\xb5\xa0\x6c\x2e\x79\xed\xc7\xea\x96\xa5\x2d\xc2\xb5\x09\xc2\x35\x52\x13\x4e\xd1\xad\x4d\x14\x76\x31\x52\x95\x4c\x97\x0d\xee\x40\xeb\x08\x94\xe6\x12\xd7\x9e\xf0\x2b\x9a\x41\x2e\xa3\xd9\x8f\x0c\x36\xd2\xeb\x4e\x57\xd6\xd4\x8f\x95\x6c\x85\x9a\x41\x35\x64\x26\x6a\xc8\xf0\x35\xce\x74\xbe\xc2\x9a\x0e\x71\xcd\xc7\xbc\xd3\xf3\x3f\x5d\xbd\x68\xe2\x84\x49\xc2\x30\xfd\x98\xdd\x9d\xa6\x89\x2a\xd2\x4c\x3f\xb6\xb6\x15\xde\x1f\x17\x38\xd3\x0b\x06\xc1\x49\x29\x28\xe2\xc7\xa0\xe6\x3b\x9d\xa9\x42\x35\xd3\x2b\xf0\x15\xbc\x59\x2e\x83\xda\x6b\x3d\x3f\x2a\x6c\xd1\xa2\x57\x2c\x04\x03\x1f\x2e\x04\x8d\x43\xc4\x2b\x2e\xe7\x12\xf1\xde\xb0\x1f\x34\xfa\x5c\xd1\x73\x3f\xc6\x75\x67\x08\xd0\x85\x93\x01\xcd\x9d\x15\x5e\x39\x57\x96\xd5\x8f\x71\x6d\x85\x37\xc4\x15\x2e\x01\x01\x5e\x27\x0c\xcf\x65\x6c\x3b\x64\x3f\x9f\xa9\x4e\x17\x16\xc6\x61\x87\x93\x98\x77\xba\x64\xbf\xc3\xa2\x16\xc4\xcc\x95\x80\xf5\x63\x5c\x77\x86\xc2\x5d\x59\x56\x3f\x42\xdb\xca\x3f\x4d\x4b\x4d\x47\xa8\xf2\x52\xb9\xac\x70\x87\x78\xe7\xab\xc7\xe9\x42\x7a\xfa\x1f\x14\x86\x43\x57\xd4\x1d\xc4\x7d\xfd\x9f\x16\x4d\x0a\xa6\x3b\x1f\x44\x4e\x97\xe9\xee\x81\xad\xa2\x6a\x72\x25\x60\x3d\xce\xf8\xfe\xf9\x91\xce\x4b\xcf\xa7\x85\x0b\xd1\x35\x86\x0e\xd1\xa3\xe9\x0a\x5b\xe3\xfd\x1c\x4c\x5d\x79\x39\x02\xde\xef\x18\xb8\x53\xca\xbf\xfa\xd1\x34\xc6\xca\x60\xd3\x05\x0f\xf5\xe3\x2e\xa4\x87\x3a\xd0\xa5\x79\x7c\x38\x7e\xa5\x26\x5d\x0f\x94\xec\x7d\x68\x5f\xba\x34\x8f\x83\xd8\xf6\xa1\x97\xe0\x4a\xc1\xfa\x38\x1b\x22\xa0\x96\x4f\x9d\x5a\xf0\x01\x3d\x12\x30\xd2\x4a\x0e\xad\xc4\x27\x8c\xd3\xa5\x95\x1c\x7e\x42\x65\x44\xd6\xe5\x27\xf8\x84\xcc\xd7\xb9\x90\xc2\xf2\x55\xf0\x2b\xae\xa1\xd2\xb3\xbe\x30\x42\xe6\x74\x5d\x61\x7c\x87\x56\x12\x46\xca\xa5\x95\xfc\xcd\x68\xe2\x30\xa4\x44\xfc\x3d\x9b\x22\xeb\xc3\x15\x78\x01\xf3\x62\x22\xd3\xe4\x74\x99\xef\x0e\x4d\x51\x19\x94\x71\x05\x65\x1c\x64\x5a\xac\xd6\x32\x5d\x9a\xc2\x3f\xf4\xa5\xfb\xfd\xa9\xaf\xef\xf6\xf5\x1b\xa1\xd8\x1b\x67\xa0\xaa\xf1\x43\x49\x1c\x7c\xdb\x35\xe3\xc1\x2e\x33\xa0\x1c\xb2\xec\x03\xba\x82\x35\xb9\xa6\x68\x1d\x67\x3c\x38\x6c\xbc\xfb\xa1\xb8\x3b\x48\x1c\x8d\x8f\xb1\x66\x08\xda\x19\xe9\xf6\xc5\x11\xca\xb4\x8f\x84\xc1\xd3\x0a\x0e\x65\x47\x03\x1a\xa6\x32\x26\x12\x0a\xc9\x83\x14\xb2\x90\xd7\x77\x86\x22\x36\x91\x71\xd8\x98\x5d\x0e\x79\x04\x01\xbd\x24\xb4\x56\x08\x97\x13\x19\x87\x8d\x27\x2a\x14\xae\x0f\xd4\xbb\xe1\x33\xbd\x19\x52\x4c\x01\x6f\xa1\x32\x2c\x12\xf2\x16\x02\xde\x42\xa5\x68\x08\x69\xa6\x28\x77\x84\x1c\xbc\xa2\x40\x97\xc5\x92\x8f\xfb\x66\x08\xf7\x19\x05\x9b\xf2\x1f\x9f\x35\xcd\x90\x0b\x12\x47\x55\x99\xf0\x61\x21\xb0\x4f\xc0\x3b\x11\x3e\x4c\xa4\x99\x13\xa4\x99\xa5\x51\x40\x84\x74\x57\x1c\x9f\xc3\x04\x1d\x0b\xa9\xa1\x40\xc8\x47\x00\xb1\x50\xc8\x27\x1a\x76\x9a\xf6\x62\x28\xc1\x1b\xd0\x50\x82\x81\xa9\xb8\xda\x8c\xa3\x92\x4c\x30\xb0\x10\x5c\x33\xc0\x54\xcc\x37\x88\x33\xa4\xa2\x02\xee\x89\x70\x60\x21\x15\x15\x70\x4f\x9a\x6e\x8b\x90\x9c\x61\x18\x21\x03\x27\xa1\xcc\x30\xd8\x3d\xad\x15\x35\x69\xca\xc7\x1d\x29\xe4\x6e\x9e\x21\x90\x67\x38\xb6\x93\x9a\x37\xe4\x9e\x84\x63\xa1\x28\x71\x42\x28\x21\xd4\x8c\xb3\x46\x4b\x48\x25\xe3\x66\x40\x4b\x35\xdd\x16\x61\x39\x03\xe4\x16\xff\xac\x7c\xe8\x04\x1f\x85\x55\x04\xcd\x8b\xd0\xca\x23\x2c\xd5\x74\x16\x15\x96\x42\x09\x3a\x13\x7c\x2c\x94\x51\x8e\x8e\x35\xd4\x56\x2a\x7b\x10\xfd\xf6\xc5\x11\x4a\x51\x05\x82\x4f\xac\xa3\x36\x43\x29\x82\x80\xf2\xd0\x9b\x84\x90\x4b\x13\x13\x23\x94\x58\x91\x86\x08\x04\x85\xc8\x66\x3c\x43\xce\x09\xca\xe5\x25\xd6\x7e\x9a\xa1\x14\x70\x20\x28\xd4\x24\x05\x84\xf4\x0c\x68\x08\xa1\xf1\x43\x1a\x22\x36\xce\x21\x8d\xf8\x90\x86\x00\xbb\xab\xb1\x16\xd8\x0c\xa5\x73\xc1\xda\x6a\xa6\x9b\x22\x5f\x22\x5e\x9c\x0d\x9a\x01\xe2\x73\x9d\xe0\x73\x35\x61\xd7\x45\xe7\x3a\xe3\xe8\x11\x33\xaa\xd2\x90\x9b\x11\x47\x8f\x98\x51\x95\xc6\x27\x89\x83\xb0\x90\x51\x95\x86\xb0\x9e\xf1\xdd\x61\x70\x0d\x05\xf6\x0c\x78\x20\x2c\x3f\x3c\xbb\xbc\x89\xfe\xe0\x83\xbc\x44\x22\x8e\x9d\x20\x8e\x35\xa1\xbc\xbb\x70\x9b\xfd\xc1\xd9\xe0\x99\xef\xd2\x2b\xa8\x31\x68\x42\x80\x8b\x6d\x76\x82\x6d\xb6\xe8\x3a\x74\xe5\x73\x7b\xc2\x08\x79\x1d\xba\x7c\x90\x9e\xf1\x41\x4a\xed\xae\xa4\x2d\x28\x6a\x4d\xe0\xe6\x2e\x35\x80\xea\x85\x46\x12\xe1\x29\xf2\xda\x09\xf2\xda\xd2\xa8\x57\x3a\xf9\xde\x66\x07\xa3\x50\xa3\xef\xdf\x95\xb6\xed\x90\xda\xa4\x6e\x9b\x62\xbc\x9d\x60\xbc\x4d\x0a\xfe\x75\x81\x3a\x7b\xc1\x30\xf8\xae\xa7\x0b\xd4\xd9\xe1\x87\x18\x3d\x9e\x2e\x61\x0e\xc6\x5c\x23\x75\xdb\xec\xca\xc0\x76\xc4\x7f\x04\x99\xed\x8a\xff\xf4\x76\x0e\x40\xa2\x9c\xef\x72\x1c\x3a\x84\x39\x8b\x57\xcd\xae\xd0\x50\x6f\x38\x87\x3c\xbd\x5d\x12\xbb\x43\xf6\xb2\x62\xf0\xec\x82\x67\x76\xbb\x7d\x71\x84\xca\xc1\x76\x08\x58\xa3\xc1\xdc\x15\xff\xe9\x7e\xf4\xa5\x82\x9a\x5d\xb2\xb7\x1f\xd9\x6b\x4e\xd5\xd6\x85\xca\xe9\xf0\x2a\x84\x41\xea\xfe\x4f\x5f\x1f\x9a\xd8\x97\x04\x6c\x47\x70\x9f\xcc\x6e\xb3\x0b\xa1\xd9\xe3\x0e\x83\xf3\x92\x87\xd0\x51\x59\x9a\x0f\x9f\x67\x57\x7a\xb6\xf7\x63\x82\xf3\x75\xf3\xec\x02\x62\x76\xc8\x5e\xe7\x5d\xee\x92\xbd\x20\x31\x36\xe7\x5d\xee\x92\xbd\xbd\x03\xfc\x4c\x60\x41\x57\x4a\xa0\x0f\x1c\x51\x1d\x36\xa5\x67\xfb\xb1\xe1\x4d\xa8\x40\x31\x21\xcf\x0e\x9b\x3e\xfd\xd3\xa4\x85\x82\x58\x76\xda\x88\x5d\x98\x9d\x7e\x24\xb4\x09\x8a\xd4\x05\xab\xec\x08\x27\x09\x8a\xd4\xa7\xfa\x9a\xb7\x2f\xde\x2f\x92\x04\xcf\x0e\x89\x9d\xd4\x97\xd2\xb6\x1d\x36\xbd\x00\x47\xa2\x63\x9e\xa0\x63\x4e\x49\x7d\x49\x98\x5f\x36\x66\x05\x8d\xbb\x24\x36\x4a\x7a\x9a\xeb\x9a\x0b\x3d\xd9\x37\x3e\x28\xb9\xa1\x48\x53\x47\xad\xf6\x24\xb9\xa1\xbc\x6d\x47\xd9\xe3\x44\x6f\xbe\x2b\x3b\xdb\x5f\x9c\x43\x7a\xf3\x5d\x08\xc9\x7e\xfc\x85\x94\xb4\x5f\x72\x12\x3a\x62\x46\xa4\x72\x9b\x5d\xc2\xbc\x7f\xb7\x2f\x0e\x5e\xf0\x49\x10\x49\x27\x56\x8d\x9b\x43\x9e\xc0\x80\x27\xa0\x38\xb4\x28\xa6\x27\x8a\x91\x9a\x53\xa4\x0c\x61\x73\x06\xe4\xbc\xff\xf3\xab\xae\x26\x9c\x0d\x3a\x09\xaa\x44\x3a\x07\x3c\x01\xf7\xff\x18\x44\x1d\xca\x01\x0c\xc4\x9b\x9c\x12\x67\x28\xde\x04\x42\x6b\x73\x06\xa3\x87\xe2\x39\x03\x56\x33\xc9\x0f\xe6\x28\xff\xfc\xea\xc8\x29\xe1\x84\x86\xc2\x36\x03\xc1\x19\x81\x81\x46\xd5\x07\xeb\xfd\x60\xb0\x69\xaa\xe9\x3d\x4d\xc4\x6f\x0c\x01\x60\xc6\x91\xb7\x16\x59\x4d\xea\x0b\x35\xbc\x14\x49\x57\x89\xd5\x39\x20\x9a\x85\x9b\x19\x7a\xe0\x04\xea\x6d\x13\x1c\x68\x08\x2c\x39\x50\xa3\x3a\x31\xfc\x31\x24\x9a\x07\x8c\x69\x92\xb0\xcd\x21\xd1\x8c\x92\xad\x46\xaa\xb5\x39\x04\x97\x1c\x86\x11\x76\x35\xb9\x9a\xb0\x1a\x74\x65\x86\xa4\xf6\x40\xbc\x47\x20\x22\x95\x72\x9d\xc3\x71\xe0\xa8\xde\x86\x8c\x69\x54\x79\x35\xb2\xad\xcd\x21\xe4\xcc\x38\xb2\xdd\xc8\xb6\x36\x87\x62\xfd\x03\xc5\x47\x58\xfa\x6f\x0e\x21\xee\x07\x04\xba\xd0\x20\x43\xb1\xfe\x81\x58\xbf\x1e\x8d\x0e\x05\x83\x06\x04\x3a\x5f\xcd\xcf\x21\xbc\xcd\x40\xc8\x47\xe8\x8d\x21\x8b\x79\x04\xfa\xa2\x59\x3c\x04\xaa\x19\x1d\x07\x80\x57\x7d\x28\xe8\x33\x40\xea\x20\xa3\x73\x48\xd6\x8f\x7e\xfb\xe2\x42\x29\xa7\x30\x00\xcf\x6c\x34\xce\x86\x32\xb9\xa8\x6a\x5b\x9a\x36\x45\xf1\x9b\x81\xf8\x0d\x1f\xf6\xcf\xa1\xf8\xcd\x40\xc1\x2d\x3e\xec\x9f\x43\x50\x9c\x81\x2c\x6f\x98\x9a\x28\x9a\x07\x2a\x08\xea\xcd\xff\x90\xac\x1f\x88\xdf\x08\x06\x31\x04\xdd\x1c\x13\xc3\xa0\xbe\x1c\xb2\xce\x07\x52\xb6\x82\x48\x0c\x59\xe7\x63\xe1\x83\xda\x2f\xe1\x70\x06\x12\x0e\x41\x9b\x63\x28\xe1\x30\x90\x70\xd0\x33\xd5\xa1\x84\x03\xb8\xe6\x2d\xb4\xf2\x42\x68\x8e\xa3\x11\x8a\xde\xa9\x0e\xa9\x81\x01\x35\x40\x02\xe4\x39\x94\xea\x1d\x1b\x07\x80\x9e\xc0\x90\x1a\x18\x48\x38\x84\x8e\xa8\xd0\x9b\xa8\x0a\x6c\x02\x41\x0d\x69\x88\xf1\x3d\x68\xe2\x08\x15\x10\x1a\x50\x03\x9d\x4e\xdd\x50\x40\x08\x04\xf8\xd6\xb5\xbc\x32\xdc\x07\x0c\x77\x32\xa4\xcd\x29\x94\x0e\x0a\x02\x1b\x8b\x3a\x4d\xb1\xe6\x4f\x30\xe3\x9b\xb2\xb6\x53\x38\xcc\x79\x0c\xf5\x94\x69\xd3\x4f\x56\xe4\x9c\xa8\x22\x6c\x9d\x12\x60\xca\x3a\x47\x11\x61\x23\xa5\xd9\x9c\x12\xe6\x13\x09\x5d\x65\xcb\xa6\x42\x3b\x13\xd6\x39\xab\x58\x4f\x71\xe9\xcf\x89\x98\x4a\xe7\xfd\x9a\x8a\xa9\xcc\x63\x72\x27\x25\xd2\xa6\x30\x90\xf3\xa8\x80\x94\x35\x0c\x19\xd3\x13\x91\x11\x96\x6b\x9a\x53\x18\xc8\xcb\xcd\xaf\x4c\xda\x54\x9e\x75\x1e\x91\x9f\x94\x2e\x9b\xb2\xb3\x51\xee\xd8\x94\x40\x98\x02\xc3\xcc\x23\xf2\x4d\x69\x82\x29\x39\x8f\xea\xc7\xd6\x69\x9d\x4f\xc5\x38\x26\xc4\xb2\x92\x6c\x53\x29\xd8\x09\x60\x8b\x22\xea\x53\x62\x19\xd5\x93\xad\x33\x2e\x35\x05\x6c\x99\x90\xbd\x9d\x2e\xee\x94\xec\x9d\x08\x49\x28\x66\x3d\x15\x87\x9f\x40\x2d\xb2\x3c\xf3\x9c\xae\xd5\x80\x80\xd5\xd3\xe2\xa9\x64\xea\x0c\x3c\xf2\xe1\x99\x9f\x32\x8b\xe7\x91\xa2\xfe\x50\x10\x4d\x49\xd1\xd9\xf1\x2b\xaa\xec\x29\x79\x38\xfb\x1d\x06\xcf\xa1\x92\xac\x73\x94\xf3\x2b\x2a\xdf\x29\xdb\x77\xde\xb7\x46\x3a\xd8\x8a\x3b\xcc\x81\x57\x4d\xfa\xa0\xe4\xe1\x9c\xf8\x20\x75\xe5\x14\xc2\x70\x4e\x0c\x9e\x4a\x6a\x4a\xb2\x4d\x58\xb1\x59\x07\x40\x60\x94\x79\x84\x9c\x2b\xec\x37\x15\x99\x9e\x47\x92\xb9\xc2\x7e\x53\xe2\x6b\x1e\x83\xd6\x05\x0e\x9a\xe2\x2f\x98\xfb\xf6\xc5\xb3\x21\x5c\xe2\x3c\x92\xcc\x85\x1b\x9a\x12\x5f\x73\xa3\x2f\x1a\x9d\x53\xc0\xc4\xb9\x31\x2f\x5a\x96\x53\x92\x6d\xbe\x58\x0d\x5a\x96\x53\x92\x6d\xbe\xf8\x20\x83\x5c\x53\x08\xf3\xf9\x61\xe5\x75\xe6\x15\x77\x98\x88\x3b\x64\x9d\x5e\xe1\x0f\x27\x1e\x01\x09\xb5\x33\x85\x3f\x9c\x1f\x56\x83\xd6\x97\xc8\xe7\x27\xc8\xe6\x5d\xf1\x94\x25\xfc\xe1\x7a\x6e\x5f\x9d\x4d\x53\x4d\x90\x6c\xff\xb1\xb6\xea\x5c\x12\x7c\x2b\x61\x45\xa8\x9b\x97\x22\x16\x0b\x35\x8c\x94\xd5\x15\x71\xfd\x5c\x09\x07\x4e\x43\x51\x24\x1c\xcc\xf5\xa9\xd0\x1c\x59\x92\x89\x2b\xe7\xf3\xab\xae\xa6\xa2\xa6\x86\x5f\xb1\x2f\x21\x14\x57\xee\x68\x62\x5f\x0a\x66\x2c\xd4\xb7\x15\xa5\x88\x18\xea\x27\x18\xea\xfd\x21\x88\x7f\x29\x3a\x0d\xb2\xfa\xa4\x6c\xb0\xca\x87\xcc\x55\x70\x74\xa8\xf9\x96\x90\x88\xeb\xc8\xdb\x24\x82\x90\x25\x13\x7c\x41\xc8\x8a\x20\x44\x14\xf5\x73\x1d\x6b\xdc\x15\x2a\x58\x42\xc7\xac\x63\x8d\x7b\xd2\xbc\xf4\x42\x75\xa1\x52\x10\x79\xa9\xa7\x88\xed\xe7\x3a\x02\xdc\x15\x45\x58\x42\xc7\x80\xf3\xde\x13\xb5\xac\x38\xef\x27\x88\xed\x9d\x6c\x67\x73\x29\x9e\x0d\x8e\xfb\xa4\x2c\xf7\x52\xf2\x14\x1c\xf7\x2e\x97\x7a\xc9\x98\x5e\xe0\xc9\x61\xb9\xa9\xb9\x14\x99\x06\x1d\xbe\x27\x4a\x9c\x25\xa9\xbd\x1c\x1f\xa4\x7a\x5b\x8a\x31\x2f\xc7\xa3\x48\xaa\xd2\xa5\x38\xc7\x0a\xcc\x8b\x62\x65\x29\x98\xb1\x60\xfb\xea\xe1\x8f\x18\xf1\xe7\x3a\x66\xb0\x0b\xcc\xb4\x14\x48\x5e\xb1\xf0\x2b\xae\x86\xa4\x36\x0a\xe8\x3b\xe9\xc2\xe6\xea\xea\xab\xdf\xbe\xb8\x50\x7a\x55\xba\xfa\x38\x4d\xd4\xcd\xe2\xc4\x9f\xe0\xc4\x4f\x85\xe2\x72\xc9\xf6\x5d\x03\xab\x41\x87\x55\x85\xf6\x27\xf8\xf1\x93\x48\x53\x96\x64\x3d\x58\xf0\x5d\x1e\xf0\x12\x8c\x71\xa1\x1e\xb0\xf8\x54\x54\x81\x7f\x82\x06\x3f\x29\x19\xaf\x02\xfc\x13\x34\xf8\x9e\x28\x7f\x97\x6c\x5f\xd0\xe2\x17\x05\xf0\x96\x94\x07\x28\xf2\x3d\xb9\x86\xa1\x13\x85\xe8\x88\x1e\xc9\x2c\xe1\x1f\x51\xa3\xdf\x13\x33\xf5\x4b\xf8\xc7\x75\x8c\x69\x67\x71\xa5\xb9\xa4\x72\xc0\xb4\xef\x49\x32\x51\xc6\xf4\x82\xca\x61\x69\xa5\xb9\x04\x8d\x04\xe9\x7e\x12\x94\x60\x09\x1b\xb9\xa0\x72\x8a\xe6\x25\x95\x03\x3e\x7e\x97\x03\x29\x16\xfe\xb9\xa0\x72\xe4\x40\x2e\x41\x74\x40\xd0\xef\xa4\x3b\x9b\x4b\x2a\x07\xdc\xfa\x9e\x24\x88\x14\x3b\x5f\xc0\xe1\xe8\x99\xe3\x52\xe0\x04\xa5\x89\x3c\x4b\x1e\x2a\x70\x02\xb6\xfd\x24\x48\xc3\x12\xd8\x06\xcc\xfb\x2e\xf6\x2a\xd0\xef\xff\xfe\x84\x58\x66\xfe\x61\x2b\xa6\xb2\x1f\xf4\x95\xd4\x54\xd5\x84\x63\xc3\xfd\xda\xca\xae\x82\x6f\xbf\xb0\x56\xc6\xdc\xd2\x29\xa0\xd1\x77\x56\x86\x9f\x5b\x48\x9c\x8d\xa7\xa7\xac\xa0\x32\xb7\xde\x9e\xa2\xaa\x52\x51\x98\x76\x4b\xdd\xec\xa3\x53\x3c\x53\x1e\x6e\x01\x27\x37\xa8\x73\x14\xc1\x15\xe3\xfe\xdc\x57\xa7\xd0\x65\xda\x4a\xa1\xee\x7c\xb6\x52\x14\x33\x5b\xc9\x50\x14\x70\x72\x01\xd6\xb6\x92\xa1\xfb\xa8\x1b\x67\xe9\x95\xb9\x15\x3b\x07\x31\x7f\xd1\x2b\xd2\x2d\x4d\x04\x8e\x7d\x97\x09\xae\x2a\x50\x73\x1f\x45\xe1\x99\x3e\xf3\x56\xec\x66\x23\x76\x23\xf4\xc7\x16\xb0\x66\x57\xbc\x7f\xa6\xa5\xb2\xa5\x02\x76\xc3\x07\x89\x07\xdb\x0a\x90\x83\x64\x3f\x95\xae\x5f\xf1\xb0\x6d\xc3\x7e\xe9\x6c\xc8\x3a\xdf\x86\x0f\xd2\x52\xd9\x92\xf3\x60\xdd\x77\xd1\x28\x6c\xa1\x20\x41\x98\xef\xc2\x9e\x6d\x25\x0c\xb7\x63\x35\x34\x0c\xc5\x38\xc0\x8b\x9f\xf4\xbe\x62\x0b\xd6\xb2\x03\x2f\xb7\x69\x54\x6c\xbd\x33\x05\xfd\x7d\x12\x02\x64\x0b\xd6\x02\xfa\x7b\x2f\x6a\x12\xaf\x00\xe8\xef\x53\xa5\x5e\xde\x8a\x71\x6c\xc8\x79\xb2\x5b\xcf\x2d\x60\x0b\x98\xf1\x8b\xe2\xf4\x5b\xf1\xec\x0d\x15\x20\xe8\xbe\x98\xf2\x27\x98\xf2\x93\xc0\x21\xa2\xca\x9f\xbb\xe3\x71\xb9\x86\x21\x64\xcb\x1e\x19\x4d\x1c\x86\x14\x07\xa8\xf1\xbd\xd0\x06\xd8\x4a\x33\x82\x0f\xdf\x59\x56\x63\x6e\xc5\x38\xc0\x7f\xef\x25\xeb\x57\xda\x14\x08\x73\x91\x95\x6d\x01\x51\xf6\x11\xde\x2e\x53\x64\x2b\xd4\x0d\xf2\xfb\xe2\xcc\xef\x89\xf2\x7e\xee\x75\xfb\x0a\x36\xe9\x1c\x1e\xe1\x5d\x3c\xe5\xff\x66\xaa\x8a\x11\x7f\xee\x85\x8a\x03\x5a\x47\x05\xc9\xf7\xc6\xb4\xe9\xbe\x6f\x45\x47\xf6\xc6\x76\xd2\xb1\x13\x5b\xfe\xdc\x90\xf5\x52\xdb\x5b\x48\xcd\x7d\xc4\xbe\x17\x5d\x75\xc9\x7a\xb0\xe5\xbb\x20\x74\x5b\x19\xcf\x7d\xb9\x02\xa8\x65\x45\x7c\x3f\x37\x04\x3a\xeb\x77\xcd\xad\x10\xc8\xfe\x70\xb8\x89\x26\xdc\x12\xe8\xfb\xbb\xe4\x03\xbf\x0f\x8a\xf9\x7e\xbe\x88\x84\x57\xbe\xd9\x7a\x95\xd6\x7c\x1f\x6c\x27\xfd\x95\x57\x21\x90\x17\x8e\x82\x60\x40\xaf\xf0\x93\xef\x83\xbe\x28\xeb\x5f\x61\x62\xde\x84\xb3\x48\xd1\xfc\xca\x49\x78\x13\x96\xb7\xe8\x57\xae\x26\xdc\x16\xae\xbc\x78\xf1\xe7\x0b\xff\xa1\x30\x90\xfc\x8a\xf8\x12\x14\xf9\x49\xc4\x4c\xaf\x50\x97\x2f\x3c\x01\xb1\x2f\x89\xfc\x7e\xbe\x10\xe8\x22\x2f\x7b\x25\xd0\xc1\x8b\xef\x85\x81\xae\x57\x02\x1d\x94\xf6\xce\xba\xf6\xf3\x55\x30\xfe\x05\xf3\x25\xab\xfb\xcc\x57\x69\x4d\x30\xd7\x7b\x65\xa0\xeb\x55\xb8\xe5\x85\x27\xc0\xe2\xed\xf3\x15\x88\xf2\x85\xac\x17\xb0\xec\x15\x10\xe5\x3d\x4e\x81\x8b\xe6\xeb\x55\x9c\x1e\x5c\xf8\xa9\xd2\xa4\x7b\x15\xbf\x79\x61\xee\x0b\x58\xf6\x0a\x5f\xf9\x22\x4e\x4f\x3a\xf1\x29\x72\xfc\x09\x72\xfc\x54\x69\x9c\x89\x1c\x7f\x82\x1c\xbf\x28\x17\xf6\x0a\x60\x09\x76\xfc\x24\x9a\xaa\x57\x18\x15\xd0\xe1\xbb\x5e\x78\xbc\x72\x12\x5e\x14\xd3\x14\x83\xd5\x2b\x08\x3d\x48\xef\x5d\x94\x62\xaf\x22\xee\x60\xbd\x4f\xa4\xeb\x9e\xaf\xde\xaa\x82\xea\x3e\x55\x1a\x4c\xaf\xc2\xea\x60\xbd\xf7\x7f\xae\x83\xc2\xea\x20\xb7\x4f\x42\x74\xbd\xca\x93\x82\xdc\xde\xff\xb9\x0e\x52\x39\x28\x2e\xe8\xa4\xc8\x9f\xe2\xad\x9f\xe0\xad\x4f\x64\xd1\x9e\xaf\xf0\x92\xef\xd5\x2b\x54\x8a\x2a\x43\x38\x5f\x04\x84\xf4\x6a\xe0\x15\x69\xe6\x8b\x22\xe0\x42\x74\x89\xee\x7e\xbe\x1d\xc3\xd0\x01\x10\x10\xe5\x45\x40\xa8\x52\xda\xa8\xac\xe1\x7c\xa1\x06\xfe\x59\x79\xa9\x81\x17\x6a\x40\xdc\x61\xaf\x80\x28\xe0\xa3\xf7\x2a\x09\xa0\x20\x0d\xf8\xe9\x93\x20\x62\xaf\x9e\x13\xbd\x90\xbd\x02\x5f\xbd\x4a\x50\x82\xc6\xde\x85\xb0\x7a\xc5\x32\x09\xee\xfa\x24\x60\xd9\x2b\x3b\x1b\x64\xf5\xce\x0a\xf3\xf3\xd5\xeb\xd1\x17\x09\x4a\x01\xe6\x5e\xf1\x4c\xbe\x88\xdf\x08\x38\x24\xf2\xfa\x89\xc2\x8a\x2e\x30\xcf\x2b\xb4\x09\x78\xec\xbd\xd1\xab\x7f\x15\xf5\x79\x8f\xc9\x5d\x5c\xd2\x46\x12\xfb\x45\x68\x87\x35\xe9\xe7\x2b\x14\x23\x78\xec\x0b\xeb\xc0\xce\x4f\x09\x4a\x30\xd2\xbb\x38\x7d\x3f\x85\x76\xc0\x50\x9f\xb4\x86\xa2\xa8\x9f\x1f\x84\x39\x6b\xd5\xcf\x4f\x68\x13\xb0\xd5\x7b\xa3\xec\xfd\xc4\x2b\xf0\x25\xe8\x66\x3a\x90\x62\xaf\x9f\x5f\xc2\x30\x28\x60\xc5\x5e\x3f\xbf\x74\x87\xd1\xd8\x34\xd5\xb4\xd1\xc4\x61\x08\xa3\xf2\x65\x1c\x00\x66\x8d\x3f\x61\x54\x3e\x44\x61\x1a\xc3\x04\x9f\xa2\x30\xdf\x15\xb0\x94\x51\x9f\x30\x82\x1f\x2c\xe6\xc6\x6b\xfe\x29\x0a\x03\xc2\xfa\x24\x94\xda\x27\x7c\x20\x08\xec\x5d\x30\xaa\x4f\x90\x92\xaf\x5e\xc2\x1b\x2e\x94\x64\xef\x87\x78\x8a\x12\x6b\x9f\x12\xa1\xa0\xac\x4f\x8d\xf6\xc6\xa7\x6c\x27\x28\xeb\x5d\x0c\x58\x9f\x52\x9a\xa0\xac\x2f\x6e\x6a\xd2\x7e\x81\x00\xa6\xd1\xf6\xfd\x94\xd2\xfc\x0c\xe7\x90\x5e\xa2\x38\xec\x27\x28\xe2\x5d\xec\x58\x9f\xc0\x21\xdf\x91\x6c\x2e\xe6\xa7\x4f\xc6\x34\x98\xd8\xdd\x18\xbb\xf9\x94\xa9\x03\x71\xba\x8b\xec\x08\xec\xe9\xbf\x3f\x1b\x06\x6f\x6c\xd2\x94\x61\x74\x8a\x1a\xe8\x53\x8c\xf9\x43\x48\x42\x24\x3f\x9f\x42\x12\x20\x52\x4f\x82\x44\x7e\x32\x55\xbf\x79\x7f\xc5\x26\x85\x9f\xbf\x5b\x4b\xe9\x9f\x26\xfd\x6a\x55\xd0\xeb\xf0\x44\x29\xe7\xf6\x21\x16\x20\x1f\xec\x53\x2c\x00\xfc\xe8\x49\x17\xf6\x93\xe9\x08\xbe\x74\x37\x0a\xa2\x4f\x60\xb9\xef\x08\x39\xb7\xfe\x1f\x9f\xf5\x7f\x32\x3a\x3f\x18\x9d\x62\xe9\x13\xd5\xfa\xfc\x10\x45\x60\xa1\xef\xf9\xe9\xad\x3d\xa8\xd5\x53\x63\xca\xfb\x13\x02\x0f\xd4\xea\x2e\xac\xcf\xa7\x87\x3e\x1f\x02\x0c\xae\x9b\xa9\x94\xdc\x77\x64\xa0\xb3\x00\xf8\x14\xa1\xfa\x04\x01\xba\xfb\x2f\xef\xb6\x44\x80\xbe\x1e\xc4\x03\x08\x97\x59\x0f\xa3\xd3\xeb\x81\x23\x4e\x4c\xcc\x12\x2d\xf9\x02\x1f\xb8\x93\xc7\x66\x89\x0f\x7c\x3d\xe7\x92\x3a\x69\x58\xd6\xc3\xd0\xe9\x02\x35\x78\x21\x1b\xcc\x7a\xaa\xfa\x3a\x37\xd1\xc9\xd0\xb2\x9e\xa6\xbe\xe0\xe6\xb2\xb6\xdc\x7a\x08\xf6\x5a\x0f\x22\x9d\x44\x4a\xac\xa7\x69\x18\xc7\xe3\x75\x22\x25\xd6\xc3\xeb\xb7\xc0\x00\xee\xa4\x4d\x59\x0f\xc1\x5e\x0b\x0c\xe0\x89\xf2\x77\x3d\xcc\x4f\xad\x07\x6e\x2e\x81\x0d\xeb\x71\x0d\x1e\x89\xa1\xd0\x1a\x76\x2d\x2f\x4c\x84\xf6\x0b\x30\x2c\x51\x6e\xaf\x07\x97\x96\x44\x07\xeb\xe9\xfa\xe0\xf1\x42\x3d\x4c\xbf\xea\x6a\x42\x5f\x5a\xf9\xa1\xbe\xc6\xed\x8b\x53\xe6\x7d\x5e\x60\xd6\x2e\xa4\x6e\x5a\x62\xd6\x5e\x0f\xd2\x49\xa4\x0b\x58\x0f\x51\x56\xeb\x01\xca\xaa\x55\x8e\x90\xe9\xf5\xf5\x9c\x5b\x9f\x48\xe1\xb8\x9e\xa9\xe5\x3d\xb7\xde\x59\x01\x6d\x89\x91\x7b\x81\x82\x3b\x11\x9e\xbb\x1e\x72\x63\xac\xe7\x56\x69\xfb\xd9\x1c\xeb\x99\xda\xe5\xe3\xb0\x16\xd2\x3a\xad\x67\x6a\x84\x88\x3e\x92\xd1\x7c\x3d\x53\x23\x44\x56\xab\x69\x79\x97\x56\x7e\xe1\x1c\x76\x8e\x70\x69\xe5\x17\x46\x68\xec\x6b\x69\xa1\x00\xdb\x22\x71\xf9\x7a\x96\x0e\x1b\x12\x5e\xc4\x06\xac\x67\x69\x18\x1b\x0b\x65\x1c\xe1\xd6\x42\xc1\x23\x8d\xe0\x1a\x6e\xf5\xb5\x6f\x5f\xfc\x20\x11\x5d\xeb\xb9\x72\x43\xfb\xb5\x75\x44\x5f\xac\xbc\xae\x1e\x9f\x7d\xac\x07\xb6\x54\xd3\xa6\xbc\x3a\x1b\x10\x29\xa1\xd5\x78\x75\xd8\x5e\x9c\x8d\xce\x63\xf3\x6a\xca\x70\x71\xa3\xf3\xa6\x7c\xea\xeb\xbb\x7d\xa9\x49\xfb\x75\x0c\x26\xef\xbc\xcb\x49\x82\x28\xc1\xc5\x25\xd9\xe5\x12\x09\xf8\x4a\x90\x51\xfd\x47\xa2\xb0\x92\x64\x14\xf8\xc1\xbd\xff\x4c\x84\x95\x08\xf6\x5a\xe0\xf6\x76\xe2\x10\x56\xa2\x55\xb4\x40\xee\xed\x24\x4e\x59\x89\x38\xb0\x05\x0a\x6f\x27\xd8\x60\x25\x3a\xab\x0b\x1c\xde\x89\xf4\x99\x2b\x65\x7d\x10\xc9\x2e\x3e\xe9\x5e\x89\x81\xc9\x95\x72\x3d\xbf\xe2\xf2\x8a\xd4\x7b\x81\xd4\x3b\x11\x84\xbd\x52\xfe\xa7\x2f\xec\x32\x97\x37\xf1\xf9\xe0\x4a\x05\x0b\xf5\x33\x11\x56\x2a\x5a\xa8\x82\x85\xa2\xc4\x4e\x74\x71\x17\xc8\xb9\x13\x19\x34\x97\xd8\xb9\x17\xd8\xb9\xbd\x17\x7d\x70\xab\xe9\x1c\x6c\xc2\x21\x56\x2a\x1a\xc6\xb1\xd3\x92\x69\x2b\xab\x56\x03\xde\x2f\x91\x12\x2b\x55\x0d\xa3\xde\x61\x70\x0d\xe9\xfd\xae\x84\x3c\x98\x69\x2b\xab\xfa\x82\x76\xe8\x8d\xc3\xa0\xf7\xbb\xc0\xc2\x9d\x88\x20\x5f\xe2\xda\x5e\xe9\x28\x0a\x27\xf1\xcb\x4a\xd2\x0e\xa0\xdd\x76\x3e\x47\x5d\xa9\xa9\xaf\xe3\x08\x97\x48\xec\x4b\x8a\x03\xb4\xdb\xce\xa7\xaa\x2b\x99\x86\x61\x77\x18\x9c\x17\x1d\xe3\x95\xa0\x53\x4c\x87\xcd\xb4\xf2\x70\x8c\x89\xe5\x58\xc9\x75\x1d\xe0\x18\x13\xa2\xb0\x92\xd4\x0d\x18\xba\xbd\x53\x02\x24\xd7\x94\x11\x70\x25\x60\x63\x89\x6c\x7b\xa5\xb8\x1f\xe4\x94\x43\x47\x34\x2a\xa6\xcc\x35\x0c\x1d\x51\x38\xc6\x3d\xb8\x1a\xa1\x23\x1a\xc7\xd3\x36\x9d\xf9\xae\x85\xea\xb8\x0e\xba\x29\x5d\x7d\xf5\x8a\x5f\xb1\xaf\xae\x85\x42\xc0\x95\xf4\x63\x4b\x2c\xdd\x2b\xc1\x31\xe6\x23\xc8\x95\xba\x86\x81\x80\x2b\x59\x45\x57\x92\x6a\x4b\x00\x95\x91\x2b\x7c\x89\xc0\x7b\xa5\x71\x3f\xc8\x11\x0e\x9d\x8d\xa3\xe5\x82\x0c\x30\x4b\xdc\xde\x0b\x04\xde\xf1\xe8\x12\x4d\xf5\x85\xec\x19\x59\xd5\x56\x9a\x3a\xd8\x78\xf9\x17\xda\x4a\xa6\xc8\x16\x68\xbf\xe3\xd1\x61\x5b\x5a\xf9\x85\xbe\xb4\x1a\x4b\xab\xb1\x06\x9a\xfe\x1b\x56\x75\x25\x29\xaa\xb4\xd1\x9f\x46\xb9\xb5\xfa\x47\xfb\x24\xd3\x1d\xdb\x5a\xac\x8d\x15\xc9\x3c\xf7\xaf\x24\xce\x8b\x0f\x4a\xe2\xbc\x3a\xa6\x47\xc5\xc4\xa3\x8d\x91\x5e\x49\x2f\x3e\x28\x89\xf3\xe9\x98\x7e\x38\xa6\xd4\xe8\xe9\xd3\xd1\x81\x5e\x31\x6a\xf4\xf4\x69\xb1\x8e\x8f\x1e\x4f\x65\x5f\x52\x39\x09\x2f\x0d\x59\x52\x7e\x89\x19\x7c\x81\x19\x3c\x58\x60\x6e\x65\x62\xce\x56\x3e\xda\x27\xf8\xf0\x6b\x65\xa9\x1c\x90\x7a\x07\xc1\x28\x2b\x33\xe0\xba\x40\xf2\x9d\xf8\xd0\x61\x65\xa6\xc9\x16\xf8\xba\xe3\xa1\x1d\x90\xe9\x88\xaf\x0c\x47\xdc\x78\x9f\x33\xe1\x68\x2b\x27\xf4\xf5\x73\x8e\x57\x26\x1c\x6d\xe5\xf4\xa2\x89\x83\x4f\x14\x61\x19\x8a\xca\xd4\x24\xc3\x1d\xe4\xe0\xf1\x38\x47\x98\x35\xaf\x8c\xfd\xa2\xda\xce\x59\x23\xcc\x77\x84\xfc\x55\xd1\x42\x01\x95\x61\x34\x62\xc4\x00\xbe\x72\xc1\x09\xa6\x46\xcf\x84\x5e\xac\x5c\x70\x82\x7f\x21\xe1\x95\x09\x7d\x5b\x19\xf4\x7f\x44\xd3\xae\x2c\x6d\x04\x32\xf0\x20\x97\xcd\xca\x8c\xc5\x2e\x90\x81\x17\x96\x35\x5e\xb9\x6a\x0d\x2b\x76\x99\xae\x45\xa6\xd3\xbf\xc0\x00\x9e\x4c\xc3\x90\xd7\x91\xdb\xe9\x8b\x25\xed\x56\x6e\x5a\xa8\x66\x68\xe2\xbc\xa4\x72\xf2\xd1\x23\x91\x1e\x7e\x90\xa8\xb8\x95\x51\xa8\x21\x78\x44\xb3\x69\xa1\xec\xec\x32\x4b\x1e\xaf\x6c\x3a\x51\x78\xde\x67\x14\x7c\x59\x0e\x49\x36\xf4\x45\x95\x93\x5d\x9b\xe2\x19\x44\x93\xfc\x95\x94\x07\x38\xbf\x23\x65\xf6\xe5\xea\xcb\x6f\x5f\x1c\x7c\x68\x35\xe2\x9c\x5e\x3e\x74\x58\x39\x74\x36\x02\x67\x83\x92\x54\x2c\xe0\x0b\x2c\xe0\x41\xe2\x9c\x95\x43\x5b\x79\x94\x47\xf0\xa1\xc3\xca\x52\x1e\x20\xf0\x8e\x44\x97\x29\x77\x4d\x79\x60\x53\x2a\xcf\xc6\xd0\x01\x18\x47\x38\x90\xb7\x7b\x65\x39\x3f\xe0\xed\x8e\xa4\xbb\x3c\xb4\x5f\x47\x23\x44\xd2\x5d\x1e\x3a\x87\x70\x7e\x48\xf7\xbd\xc4\xdc\xbd\xf2\x84\x89\x20\xb9\x31\x35\x0c\x40\x2f\x5c\x5b\x29\x37\x06\xcc\xdd\x25\xd4\x97\xdc\x98\x3c\xc1\xae\x49\xa7\x2e\x2f\x1d\x51\xb8\x31\xa4\xf7\x5d\xe2\xfb\x5e\x19\xca\x23\x49\xda\xc8\x8d\x01\x15\x78\x10\x37\xb2\xb2\x94\x07\x58\xbc\x23\x49\xda\x6c\xf5\x85\x52\xd3\xf2\x2d\xf3\xd6\x1a\x6e\x6c\xa5\x73\xe5\xb7\x06\x0f\x87\xc4\x75\x0e\x5f\x9d\x79\x78\x1d\x4e\x75\x23\x12\xee\x05\x12\xee\xe0\x63\x80\x25\x12\xee\x95\xf1\x0e\xdd\x69\x82\x83\x94\xfb\xef\x4f\x68\x07\xa7\x11\x93\x3f\x9d\x43\x80\xf3\x48\xf8\xbd\xf2\xa7\x0f\x1e\x6d\x90\x9c\x36\x47\xfe\x74\x0e\x3f\x9c\x43\x9a\xe0\x45\x2a\x00\x74\xdd\x25\x28\x7b\x0b\x99\x61\x57\x79\xb0\xbc\xb4\xce\x0b\x83\xbb\x0b\x74\xdd\x89\xc4\xc5\xab\x48\x3b\x14\x68\x07\xe7\xc1\x2e\x8c\xe0\x2e\x30\x79\x07\x89\x7f\x96\xf8\xbb\x57\x41\xce\x8d\x0f\x89\x56\x91\xaf\x02\x2e\xef\x20\x6e\x64\x15\xe6\xdc\x16\xb8\xbc\x23\xf3\xf4\x16\x29\x0e\xb0\x74\x47\xa6\x9d\x5d\xf8\x0e\x7d\x81\xb0\x3b\x31\x9e\xbd\xc4\xd2\xbd\x0a\x54\x00\x9f\x1f\xad\xc2\x74\xdc\x2a\xf9\xc5\x07\xd9\x17\x31\x7b\xab\xc0\x57\x21\x05\xfa\x12\x81\xf7\x2a\x05\xc3\xa0\x55\x54\x08\xa2\x58\xe5\xe8\x90\x60\x7d\xbd\x55\x18\x48\x5e\xa5\xc0\x46\xa4\xba\x11\xed\xf7\x2a\xc7\x37\x09\x96\xde\x5b\xa5\x6a\x18\x15\x07\x9b\x9a\xa8\x54\xad\xe1\x71\x40\x22\x53\x46\x95\xaa\x85\x82\xe2\xc8\x5a\xf9\xa6\xb3\x01\xed\x40\x98\xc7\x2a\xd2\x0e\x60\x07\x0f\x72\x16\xad\x22\xaf\x03\x24\xe0\x41\x60\xf4\x2a\xa6\xd5\x30\x6c\x25\x5d\x8b\xa2\x98\x54\x81\xff\xc0\xc7\x58\xab\xd8\x3f\x1f\xc4\xca\xd3\xa8\x28\xae\x63\xe3\xf8\xa0\xf1\x83\xae\x0f\xfa\xfd\xa0\x9a\x74\x44\xa1\x02\x9c\xc6\x52\x21\x30\x6f\x81\x16\x3c\x88\xdc\x5d\x25\x74\x6c\x00\xcc\x23\x41\xfa\x2a\xf2\x1f\xc0\x11\x1e\x39\x9e\xff\x66\xaa\x96\xd0\x76\x06\x4e\xb0\xf6\x4c\xca\xa3\x74\xac\x3e\xd5\x76\x91\x0f\x01\x0a\xf1\xa2\x88\x45\xe9\x3a\xa6\xc7\x67\x08\x16\xe7\x5b\x45\x7a\xa5\x74\xec\xb4\x7e\x35\xb4\x31\x50\x39\x59\x57\x7d\x68\xa7\x07\x8e\x29\x1d\xf1\x32\x34\x8c\xe3\x84\x14\x32\xcb\xae\x22\x95\x03\x4e\xf1\x20\xba\x65\x95\xa9\x63\x7a\x3c\x8d\xc2\xf7\x16\xab\x28\x72\x56\x8e\x8a\x29\x9d\x86\x45\x99\x5a\xe2\xa3\x57\x82\xd8\x91\x25\xba\xf1\x55\x26\xfa\x62\xdc\xb7\x2c\x9d\xe0\x85\x5f\xd1\xbd\x28\x4b\x87\x00\xd0\x0b\xd2\x2a\xae\xa2\x68\x16\x58\xc4\x4b\x57\x5f\x5b\x0b\x75\x5c\x89\x20\xb4\x74\x15\x45\xb3\xca\x71\x25\x92\x3b\x07\xbf\xb5\x95\xfb\x9c\xe0\xa2\xeb\xb7\xd5\xd7\xfb\xe0\x57\xbc\x48\xd2\x2b\xa0\x15\x0f\xa2\x33\x57\x79\xd5\x17\x9e\xa8\xf3\x35\xde\x2a\xaf\x56\xe3\x78\x19\x41\x74\xe6\x2a\x9f\x06\x7f\xbc\x8c\x28\x92\x6e\x8a\x66\x81\x71\x3c\xb9\x0e\x9b\xbc\x8e\xf2\x61\x18\x92\x6e\x9f\x76\xf9\x1b\x68\xa2\x74\x93\xca\x01\x19\x79\x14\x4a\x81\xaa\x18\x18\xc8\xc7\xa3\xd0\xc3\xa9\x04\xe7\x2d\x90\x8f\x17\x3e\x9d\x59\x62\x1c\x5f\x60\x18\x0f\xe2\x46\x56\x95\xd7\x51\x13\x3e\xc8\x38\x62\x25\x38\x6f\xd5\xa3\x47\x82\xc8\xc2\x55\x89\xe5\x58\x15\x58\x0e\xd2\x49\xae\x2a\xbd\x52\x8f\x2b\x11\xe4\x51\x5a\xe2\x15\x5f\x60\x0b\x0f\x96\xc9\x5b\xe2\x08\x5f\x35\x63\x84\x0c\xee\x56\xf9\x0f\x15\xc4\xb3\xc4\x72\xac\x2a\x35\x00\x4e\xf0\x20\x96\x63\xd5\xa2\x29\xe3\x1d\x3a\xd9\xf2\x57\xad\x9a\x72\x3d\x9b\x42\x6a\xa1\x25\x22\xf0\x55\x21\xeb\x89\x03\x5b\x55\xb2\x1e\x1c\xe1\x41\x1c\xd8\xaa\x0a\x3e\x81\x2e\xbc\x28\xb6\x57\xa5\x06\xc0\xfc\x1d\x84\x79\xac\x4a\x04\xde\xaa\xa0\x28\x24\xcb\xf2\xaa\x4d\xab\x71\x9c\x82\xa8\xb4\xce\xab\xc2\x48\x15\x61\xa4\x78\xd4\x64\x6a\x42\x5f\x3f\x10\xc5\xaa\xa6\x4d\xb1\x81\x26\xee\xb2\x34\x04\xb8\xbf\xa3\x6a\xf0\xae\xbe\xfc\xf6\xc5\x63\xe3\x5a\xa8\xa3\x06\x82\x38\x9f\x25\xc2\xef\x55\x03\x1f\x64\x92\xa1\x86\xf6\xeb\x88\xfd\x20\xe6\x61\xd5\xd0\x89\x0a\x9c\x28\x9a\x3e\x55\x72\x1e\xdc\xdf\x41\xa6\xc4\x55\xbb\xa6\xdc\xb1\x5f\x8c\x05\x88\xd5\x7b\x55\x48\x6c\x62\x54\x56\x1d\xda\x94\x23\xbc\xa3\xea\x3a\xb0\x74\xf4\xaa\x28\x1d\xdd\x35\x42\x09\xf3\x3a\xd0\x97\xa9\x49\x07\xe0\x8a\x65\x0a\x87\x3a\xb5\x1a\x08\x08\x11\x6d\xb2\x44\xe9\xbd\x2a\xc4\x32\x71\x23\xab\x4e\x6d\xca\xc4\x61\xd3\x4d\x51\xd6\xa2\x02\x66\x47\x1e\xeb\x55\x25\xb1\xc1\xf6\x1d\x95\x82\xa8\x2a\x35\x01\xe2\xef\xa2\x48\x67\x5d\x5a\xa8\x8d\xd5\xd0\x25\x92\x4d\x5f\x21\xb1\x2b\x3d\xb7\xba\xb5\x29\x47\x62\x47\xd3\x39\x54\xfe\x01\x74\xe1\xa5\x6b\xe5\x25\xcc\xc1\xfc\x1d\x04\x36\xac\xaa\xfc\x43\x05\x77\x61\xd7\xa6\xbc\x5a\x28\x04\x83\x9a\x2e\x91\x82\x41\x15\xe6\xbe\x22\x82\xe2\x02\x5f\x15\x12\xbb\xfd\xd3\xa4\xad\x3c\x12\x3a\x98\x86\x5e\x55\x9e\x00\xb8\xc0\x83\xa9\xe1\xd5\x24\x7b\x41\x0b\x9e\x14\xa5\x6b\x84\xd8\xad\x86\x88\x4f\xe3\xfd\x12\x17\xf8\x6a\x90\xbd\xac\xa8\xb6\x9a\x92\x0c\xa0\x09\x0f\x96\x4d\x5b\x4d\xb2\x17\x0c\xdf\x41\x2c\xc7\x6a\x0a\xd0\x80\xad\x3b\x94\x73\x6b\x32\xc1\x1b\x4c\x70\xbe\x84\x5e\x8d\x7c\x4f\xab\x81\xef\x29\x28\x6d\x1a\x11\x71\xab\xc1\x3a\x27\xef\xcd\x6a\x32\xc1\x41\xe5\x1d\xe4\x5e\x58\x4d\xe9\x02\x70\x79\x27\x3e\x92\x5e\x4d\x01\x9a\x06\xd9\xcb\x97\xd0\xab\x29\xf0\xdf\x8e\x18\x8e\x46\x8f\xb4\x29\x40\x03\x06\xef\xa4\x00\x8d\x28\xbc\x57\x83\xc4\x26\x91\xce\x6a\x4a\x17\xb4\x23\x86\x53\x30\x93\xd0\x14\xbb\x01\x9d\x77\xb0\xf0\xef\x6a\x7c\xb9\xbe\x40\xe7\x9d\x58\xa0\x61\x35\x22\xe2\x56\x03\x30\x9a\xcf\x9d\x57\x53\x32\x19\xcc\xdf\xa5\xff\x47\x06\x80\x25\x62\xf0\xd5\x8e\x6c\x4f\xf2\xec\x9b\x69\x94\xc0\xd2\x29\x93\x2b\x6a\xf0\xd5\xa0\x06\x08\x7c\x59\xcd\x74\x3e\x0c\x27\x98\x01\xbc\x26\x59\x0f\xfe\xef\x60\x55\xe3\xd5\x94\x32\x00\x15\x78\x62\x49\x88\xd5\xe4\x0d\xb4\x2b\xeb\x29\xdd\x9a\x6b\xf5\x8f\x63\x10\xac\x43\xbc\x9a\xb2\x09\xed\x68\x84\xd2\xff\x69\xd2\x94\xe1\x28\x84\x56\x3f\x74\x08\x02\x87\x80\x9e\xbd\xb8\xc6\x57\x83\x86\x20\x92\x66\x35\x85\x91\x1a\x62\x45\x7c\x1b\xbe\x9a\x12\x0d\x0d\x08\xbc\xa0\x90\x6d\x44\xe0\xad\x86\xf4\x3a\xcb\x4f\xac\x26\x4f\x00\x0c\xe5\x49\x9e\xa2\x18\xca\x57\xeb\xb7\x2f\x0e\xbe\xeb\xb6\x1c\x15\x13\x46\xeb\xa1\x49\xaf\x34\x84\x91\x94\x41\x13\xdb\xf8\x6a\x88\x15\xf1\xbd\xf6\x6a\x8a\x15\x81\x5e\x3c\x8c\xd2\xad\x29\x56\x04\xba\xf1\x14\xc1\x63\xa3\x6c\x02\x58\xc4\x13\xb9\xeb\x57\x53\x40\xa8\xad\xfb\x41\x2e\xef\xd2\x07\xd7\xb1\xb3\xc9\x43\xbf\x9a\xd4\x00\x08\xc2\x93\xfc\x07\x31\x84\xaf\x86\x9c\x80\x65\x35\x69\xbf\x8e\xb2\x08\x52\x26\xad\x26\x0d\xd1\x90\x13\x30\xc9\xc4\x57\x23\x7c\xd1\x17\x03\x0c\x4d\x86\x7b\x43\x40\x88\x75\x2e\x56\x53\x1a\x1a\x3c\xe2\x61\x12\x97\x8a\x15\xb5\x17\xe7\x50\xf3\x7a\xb5\xf2\xc7\xbc\x4f\x32\x8b\x9b\xac\x73\xf0\x8a\x27\x25\x79\xc5\x2b\xbe\x1a\xd2\x05\x26\xb1\xa2\x74\x01\x28\xc7\x13\xdf\xa1\x2f\x51\x8e\x2f\x83\x86\xe0\x63\xf3\x65\xca\x50\x1b\x0c\x77\xd2\x33\x2d\x53\xba\x00\x6c\xe4\xa9\x73\xa1\xc4\x46\xbe\xec\xb9\xc3\x50\xd3\x56\x13\xce\x21\xf1\x15\xa6\x58\x11\x38\xcb\x53\xff\x21\x77\x97\x49\xe5\x18\x02\x42\x2c\x10\xb7\x4c\x49\x06\x90\x96\x27\xa5\x86\xc5\x54\xbe\x0c\x68\xbf\x4e\x81\x6e\xa4\x33\x5c\x96\xb0\xcb\x14\x5f\xa6\x94\xb7\x21\x8c\xc4\x12\x71\xcb\x14\x46\x02\xa1\x79\x92\xb5\x67\x52\x54\x56\x30\x78\x9a\x8f\xc6\x57\x35\x0b\xdc\xe4\xa9\x6b\xca\x0a\xfc\x5b\x79\xff\xf7\x7f\x95\x14\x9e\xcb\x14\xda\x31\x60\x04\x3b\x6d\x44\xd1\x98\x2f\x43\xba\x80\x35\x5c\x97\x09\x6e\x04\x86\xf3\x30\x8a\x14\x23\x46\x70\x81\xb7\x3c\xf8\xd4\x69\x99\x54\x0e\xc8\xc9\x53\x67\x74\xc4\xa4\x72\x0c\x2a\x47\x99\x5c\x23\x7c\x70\x81\xc7\x3c\x08\x62\x5b\x26\x95\x63\x88\x15\x91\x76\x6a\x99\x74\x0a\x28\xcd\x53\xa7\x52\x34\xf9\x0f\x86\x24\x83\x51\x6e\x98\x32\xd4\x76\xd4\x4b\xb0\x98\xe8\x32\xe5\x1f\xec\x78\x19\x55\xa9\x46\x93\xba\x01\xdb\x79\xb0\x9a\xe8\x32\xe5\x1f\xc0\x76\x9e\x94\x6b\x36\xd3\x39\x84\xba\xe9\x5a\x5e\xd7\xca\x23\xf8\x64\x14\xb0\xa6\xe0\x13\xd8\xcf\x13\x79\x03\x96\xd8\xcf\x97\x21\x35\xa1\x10\xbe\xb9\x0e\x80\xbf\x68\xe2\x94\x95\xbc\x36\x44\x98\xf8\x30\x65\x99\x74\x8a\xc5\xed\x8b\xc3\x08\x9d\x43\xe8\x14\xe5\xb5\x2d\xb4\xbc\x47\xa7\x84\x22\xee\xd6\x75\xb0\xf1\x5a\xa8\xd3\x04\x37\xf9\x2a\x86\xac\x85\x42\xdd\xa6\xe4\xb5\x1d\xcd\x13\x7c\x1a\xb1\x44\xb3\xbe\x0c\xd1\x25\x52\x5c\x2d\x53\x42\xc3\xc6\xed\x8b\xc2\x41\xc9\x6b\xd0\xaa\x87\x4b\x02\x28\x79\x6d\x88\x2e\x09\xb3\x67\x8a\x2e\x19\xd0\x99\x24\xfe\x5d\xa2\x60\x5f\x06\x25\xa5\xa0\xb5\x4d\x9d\x8d\x79\x6e\x8a\x82\xd6\x26\xc8\x96\x1d\x67\x27\xf5\xae\xbe\x34\x0c\x04\x9e\x9c\x02\x56\x14\xec\xcb\x8e\xfe\x4a\x5d\x67\x63\x69\x5e\x88\x49\xb9\xe4\xa1\x62\x52\x60\x63\xcf\x8f\xce\x86\x54\x9b\x21\xa1\xe1\x92\x1b\x52\x6d\x20\x6e\xaf\x8f\x84\xb9\x54\x1b\x88\xdb\x83\xf5\xfb\x96\x88\xdb\x17\x88\xda\xc3\x25\x52\x94\xeb\x00\x51\x7b\x26\x05\xc4\x32\x85\xab\xec\x68\xbd\xfc\xcf\xfd\x52\x92\x1c\x9c\xee\xe1\x92\xa2\xf2\x8b\xc0\xe9\x5e\x1f\x1d\x00\x29\x44\x70\xba\x87\x30\x96\xe2\x74\x5f\xe0\x74\xcf\x4f\xfa\x6f\x58\xd5\x25\xca\xf7\x65\x2f\xe6\x46\x1b\xd1\x84\xe8\xb2\x17\x77\x8c\x36\xa2\xd8\xe0\x97\x7d\x77\x28\xdc\x18\xa5\x5d\xc0\xfe\x9e\x59\x74\x66\x99\xd2\xeb\x60\x83\x0f\xa7\x24\x75\xe9\x4b\x87\xbe\x74\xde\x4c\xd1\xc1\x2f\xd0\xc1\x67\xed\x99\xf8\xe0\x97\x23\xed\xa2\xd8\x9e\x0b\xec\xe5\x0f\xee\x18\x85\xac\x4b\x5f\x7a\xba\xa5\x8d\x38\x8c\xa4\xbe\xd2\xed\x4b\x4d\xae\x26\xcc\x8b\x6a\xdb\x95\x94\x07\xc1\x7c\x08\x8f\xe8\x82\x88\x81\x6b\xbe\x3e\xbc\x99\x2e\x55\xea\x50\xa5\x02\x1d\x3a\x9f\xb5\x2e\xcf\x38\x3a\xcc\xae\x8a\x96\x7e\x39\xb4\xac\x02\x5d\xae\x78\x9b\x23\x5f\xcf\xca\x85\xcb\xb3\x56\x23\xdf\xbe\xb8\xbc\xca\xc8\x78\xb9\x7d\xf1\x83\xf2\xf9\x40\x31\x5f\x05\xd8\x70\x41\xc4\x1c\xa1\xb8\x60\x3a\xc9\x15\x8a\x03\xfd\x7c\x7e\x28\x20\x5c\xee\x20\xf8\xe7\x43\x50\x2a\xf1\xcf\x2f\xf0\xcf\x67\x12\x14\x2f\x97\x6e\x06\x17\x7d\x15\x38\xc4\xe5\x0e\x82\x8b\x3e\x82\x90\x3e\xaf\x1a\xc6\xf1\x14\x33\xe9\x48\x96\x2b\x4a\x07\x9a\xf9\xfc\xd0\x2a\x12\xcd\xfc\x72\x28\x60\x05\x18\x5c\xc9\x1a\x3f\x0a\x37\x58\xf2\x70\xb9\xb4\x2c\x78\xe5\x43\x58\x1f\x57\xb2\x06\xbc\xf2\x99\xc5\x8a\x96\xf3\x15\xd4\x72\x83\xec\xe0\xd5\x73\xa5\xf2\x1d\x51\xba\xd0\x61\x53\x94\xce\x1d\x47\x94\x76\x80\x38\xe8\x97\x43\xcb\x06\x63\x0f\x2e\xcf\x0d\xf4\xf4\x11\x34\xa6\xdd\x35\x0c\xc7\x7e\x51\xa3\x8b\x69\x7e\x81\x5a\x3e\xb3\x60\xd1\x72\x05\xf0\x3c\x06\x9a\x38\x0c\xb9\x67\x1e\xf8\xa0\x6e\xa5\xd0\xcf\xde\x71\xd8\xa8\x2f\x45\x1b\xbf\xbc\x63\x53\x68\xc4\x78\xd7\x08\x11\xdb\x23\x33\xda\x72\x41\x9c\x41\x06\x9f\x1f\x5d\x3d\xc5\xf6\x7c\x18\x9a\x78\x36\x94\x72\x01\x19\x7c\xfd\xe7\x00\xc8\x73\x03\x39\x7c\x7e\x74\x89\xe4\xb9\x81\x1c\x3e\x58\x01\x72\xb9\xf4\xa5\x4f\xe8\x15\xc6\x54\x5c\xfa\x12\x8c\xef\x11\xea\x4b\x59\x7e\x30\xbe\xe7\x44\xdf\xd2\x15\xf6\xf3\x95\xd0\xc4\xc1\x2f\xcd\x0b\x61\x3f\x45\x10\x5c\x61\x3f\x5f\x1d\xbf\xe2\x2e\x4b\x95\x3a\x54\x29\x2b\xd1\x2d\xf1\xc6\x2f\xdf\xf7\x83\x3c\x6c\x02\x10\x3b\x14\x55\x68\x97\x85\xe6\x72\x68\xa3\x90\x80\x95\x7b\xe6\x48\xe5\x87\x04\xac\x74\x8a\x23\x4a\x27\x44\xb2\x7f\x1a\x21\xb4\x83\x00\xc4\x62\x80\x5f\x71\x14\x45\x4e\x49\x4d\xae\xa6\xf9\xff\x18\x3b\x7b\x64\xdf\x79\xe6\xb8\xe7\x5e\xc5\xb3\x03\x13\x20\x48\x02\x89\x13\xc7\xf6\x1e\x48\x0c\x58\xa5\x40\xd2\x5b\xaf\xa5\xfd\xbb\xd8\xf3\x9c\xfe\x1d\x55\x29\xb8\xc1\x0d\xee\x41\xfd\x89\xef\x99\x41\x4f\xa3\xf1\x15\x79\xeb\x75\xd2\x20\x5d\x50\x9c\x25\xc9\x66\x2f\x7c\xb0\x68\x78\x6d\xe7\x3b\xe9\xf5\x5e\x4e\x15\x75\x17\x51\xd7\x77\x7a\xea\x9c\x63\x3b\x76\x5e\x0a\xf0\xb5\x18\x6f\x43\x01\x7e\x76\xd9\x79\x68\xc7\x28\xc0\xcf\xae\xe4\x09\x87\xd5\x8e\x31\x97\x76\x7b\x1f\x74\x19\x2a\xb0\xb4\xdb\x2b\x2c\x9a\xce\x91\x49\xaa\xec\x7d\x38\x7a\xe8\x18\x73\xa9\xb2\x57\x58\x34\xa8\xb2\x4f\xa9\xb2\xf7\xe1\x4c\x5d\xe7\xa0\xd5\x3f\x63\xde\x87\x3d\x51\x07\xc0\x93\xec\x7a\xe7\xd8\xd9\x31\xcb\x92\x59\xaf\xc5\xd9\xf0\x0e\xa9\xb7\x37\x35\xde\x8c\x82\x4e\x5e\xa5\x7f\x07\xab\xce\xb1\x13\x45\xf6\xd9\x75\x64\xe2\x00\xd9\x61\x58\x49\xac\xbd\xfb\xe1\xc8\xd9\xb1\xd8\x92\x59\xef\x83\x66\x90\x57\x91\xcc\x7a\x83\x8a\xd6\xe1\xe0\x76\x01\x6a\x16\x68\x9b\x1d\x40\xad\x5f\x5a\x36\xc6\x11\xd1\x56\x9f\xd2\x56\xef\xc3\xbb\xb2\xc3\xb0\x92\xcc\x7a\x07\x20\xef\xd8\x5e\xa9\xa4\x77\x3f\xfd\x32\x3b\xf4\x5c\x09\xa6\xd7\xe2\xa0\xb3\x83\x9a\x49\x40\xbd\x5a\x3c\x75\x22\xa0\x3e\xbb\x92\xe4\x9c\xc1\x10\x50\x9f\xbd\x6b\xe4\x69\x06\x27\x9c\xae\x94\x0b\x67\xb0\xce\xa5\x14\x69\xab\x37\xcc\x72\xc7\x62\x4b\x30\xbd\x0f\xe7\x63\x3b\x49\xf2\x7e\x6b\x1d\xfa\x1c\xdb\x39\xab\x74\x9d\x55\xc6\xf8\x43\x02\x40\xe7\x28\xd3\x6f\xad\x45\x9f\x57\x3a\x19\x99\xfe\x9d\x6a\x1a\xb6\xbe\x43\xd1\xed\xca\xc8\x58\x10\x6e\x22\xbd\x3e\xfb\x77\x5e\x19\x9b\xed\x6f\xc7\x34\xf7\x34\xcd\x17\x1f\x64\xb0\x3e\x53\x3c\xe0\xfc\x76\xf0\xb6\x3e\x0f\xfd\xca\xdd\x86\xbd\xdb\x3f\xab\x3d\x38\x28\x74\x08\x58\x7d\xaa\x19\x8e\x8a\x3a\xf4\xdc\x1e\xaa\x0b\xdb\x11\xd4\x15\x59\x97\x3f\x08\x3d\xb7\x7f\x87\x90\x01\xa9\xb7\x03\xc5\x75\x1d\x4a\x2c\xa6\x33\x91\x79\x9f\x7d\xa9\x2e\xd3\x65\x3a\xb6\xbe\x7f\x87\x90\x01\xdf\xb7\x2f\x6c\xe2\x77\x08\x69\xd6\xcc\x9a\x1d\x37\xd0\x97\x9a\x81\xed\x20\x8f\x23\xc5\xf7\x86\xe7\xeb\xa0\x74\xfd\xd5\x68\xb0\xd5\x81\xe2\xfa\xab\x49\x61\x2d\x72\xb4\x90\xcc\xfb\xd8\xbc\xd5\x07\xb4\xad\xf1\x39\x8f\x01\x15\x78\x70\xb4\x90\x18\x7c\xb5\xdc\xcf\x44\x01\x7e\x4a\xf1\x7d\x58\xb2\x6e\x0e\xfc\x8a\x14\xdf\xab\xdf\x86\x9b\x83\xf4\xfa\x28\x1a\x28\xc7\x01\xc8\xbc\xcf\x51\xf4\x41\x1b\x88\x01\x01\x6b\x7c\xce\x62\x10\x23\x0e\x98\xbb\xe3\x3b\x14\xb4\x62\x97\x33\x70\x1e\x52\x80\x1f\x84\x8f\x83\xc4\x90\xc4\xe0\x1b\xfc\xd1\x41\xe6\x5d\x8a\xef\x63\xb3\x81\x40\xe6\x7d\x8e\x5d\x1f\xf4\x7e\x1e\x50\xa9\xc6\xae\x49\x31\x76\x3e\xc8\xfe\x48\x0c\xbe\xc1\x3a\x1d\x38\x8f\xd1\x54\x97\x8d\xec\xc0\x79\x48\xf1\xbd\x41\x48\x1d\x16\x4d\x9b\xa3\xa9\xf1\x95\x5f\x31\x86\x4d\xb3\xcc\x7c\x01\xc5\x8d\x2f\xbc\xaf\x75\xa3\x88\x49\x39\xd4\x0c\xa3\xc5\x03\x6e\xd6\x38\x34\x5f\xce\x78\x0e\xfc\xca\x38\xbe\xba\xe0\xfb\x0e\x72\x38\xd2\x89\xaf\xd5\xd8\xf9\x20\x29\x3f\xbe\xf0\x7e\x58\xd6\x6d\x0e\x90\xb3\xa1\x70\xdf\x8a\xb6\x13\xdd\xf8\x39\x4e\xd5\xe5\x38\x60\xc0\xdc\x95\xa4\xfc\x20\xf4\x19\xf8\x95\x71\xa9\x2e\xc6\x90\xa4\xfc\xf8\x3c\xc4\xb0\x44\xf9\x1c\x78\x08\x29\xbe\xd7\x6a\x93\x32\xa0\xe7\x8e\xae\x0f\xfa\x28\x88\x02\xfc\x1c\x9f\xb3\x18\xd6\x6e\x9b\xc8\xbc\x4f\xc9\xbc\x0f\x02\x8b\x31\xa8\x6b\x64\x5d\x1e\xde\xc1\xc2\xbe\xd5\x2f\x36\x2c\xf4\xdc\x71\xeb\x83\x6c\x3d\x02\x77\x29\xc0\x0f\x3f\x5f\x39\x07\xde\x61\x3c\xfa\x20\x5b\x8f\xbc\x8a\x64\xdd\x1b\x01\xd3\x20\x29\x2f\xed\xf6\x51\xd8\x44\xe0\x52\xd2\x72\xaf\xf0\x11\xd1\x72\x9f\xd2\x72\x1f\x50\x66\x07\x44\xdb\xf1\x99\xfc\x51\xd8\x5f\x93\x85\xfd\x05\xea\xd5\x3a\x56\x73\x4c\x36\xd1\xd4\xf0\xda\x71\x0c\x38\xb8\x23\xb2\x19\x9e\xca\xd8\x29\xfa\xe2\x80\x6a\x03\x3b\x80\xac\xc6\xe7\x0d\x2a\x2c\xc6\x01\x64\x35\x04\x59\x55\x63\x7b\x03\x17\x30\xd6\x77\x08\xb7\xca\xec\x1c\xb8\x80\x21\x17\x50\xd8\xcb\xd8\x79\x89\xc1\x0f\xeb\x82\xcf\x41\x36\x66\x2c\xd5\xc5\x2c\xc3\xdc\x1d\x6f\x55\x91\x57\x14\xf7\x3a\xc6\x9b\x75\xb9\x85\xa0\x4b\x43\xe8\x52\x75\x04\x36\x38\x3f\x48\x37\x7e\x58\xa0\x6d\x0e\x18\x56\xe3\xd5\xf0\x3a\x06\xb8\xf1\x0e\x12\x87\x1f\x56\xf8\x9e\x37\xcc\x5d\xe9\xc4\x57\xd8\x99\xb7\x15\x37\xe7\x2d\x17\x50\x9d\xe0\xbd\x21\x00\xdc\xdf\x51\x62\x60\x1c\x90\x94\x9f\x92\x94\x1f\x10\x6d\x11\x86\x9f\x77\xd5\xaf\x7c\xe3\xea\x86\x4d\x7b\x7f\x91\xff\x60\x1d\xde\x18\xf3\xbb\xbe\x2a\x72\xe3\xa1\x51\xdd\xb2\xf3\x56\x3b\x9e\x37\x34\x2a\x09\xc1\x0f\x96\xcd\x0d\x68\x72\x2b\x3a\xaf\x8e\x47\xef\x46\x5d\xb2\xbd\xd5\x61\xf1\x0d\x9e\x22\xcd\xf8\x61\x21\xb3\x79\x63\x60\xa5\x11\x3f\xaa\x09\x6c\x37\x99\xf7\xfb\xf8\x22\x07\x36\x2c\x9a\xf1\x53\x9a\xf1\xa3\xda\x57\xde\xa4\x41\xa4\x11\x5f\xa1\xb1\xde\x5c\xd4\xbb\xd3\x2c\x3b\x7f\x7e\x93\x5a\xbf\x4f\x35\xc3\xd9\x98\x9b\x70\xff\x96\xc5\xae\x3e\xfd\xde\x70\xa5\xa4\x11\x3f\xea\xf5\x87\xa1\xea\x8d\xd5\x96\xe2\xfb\xa8\xb6\x02\x37\xf9\x8e\xfb\x92\x7b\x3b\x29\x62\x55\x5d\x72\xa5\x36\x46\x37\x64\x5b\x89\xc1\x0f\x2b\xb1\xcd\x1b\x5b\x2f\x31\xf8\x61\x11\xda\x79\x43\xb6\xbd\xe5\x06\xac\xc4\x36\x6f\x58\x56\xd2\x89\x1f\x7e\xea\x73\xde\x1c\x14\xee\x9e\xcd\xf0\x10\xe3\x06\x24\x06\x3f\x2c\x42\x3b\x6f\x52\x21\x12\x83\x6f\x85\xd1\x27\xbd\x7e\x0f\x2d\x1d\x9f\xec\x6f\xf0\x9b\xfb\x56\x20\x68\xc3\x77\x73\x86\xb8\xe5\x21\xac\xdf\x36\xd1\x8d\x9f\xb7\x3c\xc4\xbe\xf1\x2b\xfa\xf5\x1d\x0a\xc6\x6e\x60\xf2\x26\xdf\x71\x3f\x59\x97\x1b\x0f\x65\xf6\x7e\xbe\x45\x00\xf9\xf5\xe6\x24\x70\xeb\x24\x50\xf9\x15\x04\x2c\x29\xc0\x0f\x0b\xa7\xcd\x1b\x90\xe6\x9e\xb2\xa4\x36\x97\x37\x6e\x40\x8a\xef\x63\x77\x9c\x7d\x93\xd4\x90\xe2\x7b\x85\xc7\x7c\x03\xd2\x48\x01\xbe\xfe\x9a\x2f\x4e\x02\x77\x7c\x8b\x7b\xdf\xf9\x15\x8b\x2d\x64\xc2\x1c\x30\xa1\x00\x3f\xef\x50\x33\x76\x3e\xc8\x2c\xc7\x52\x91\xbb\xbc\x68\xc6\xd2\xc8\xdb\x43\xdc\xe4\x20\x24\x06\xdf\x88\xce\x6f\x88\xb6\x52\x80\x1f\xb0\x69\x6f\xc2\xfd\xfb\xd5\x07\xb1\x02\x24\xe5\x6f\x9d\x04\x76\x8c\x2c\xb4\xad\xfb\xd5\x12\x75\x08\x7e\x63\xeb\xa5\x1b\x3f\x76\x1f\x8e\x1f\x60\xa4\x47\xb6\xde\x52\x6b\xf3\x21\xdc\x7f\x36\xfd\xca\x1e\x1d\x71\xf8\xf9\xc8\xa0\xef\xc6\xc0\x1e\x68\x5b\x8f\xc2\x7d\x8b\xa6\xcd\x07\x5e\xec\x53\xf4\x41\x83\xa0\x0f\xe8\xbe\x74\xe2\xeb\xee\xc8\xf2\xe1\x6e\xf8\x53\xb5\x89\xbc\x53\x1e\x62\xfa\xa7\x6a\xbe\x06\xbf\x9a\x14\x85\x3e\xb8\xbb\x68\x51\xa4\x66\xd8\xf3\x3d\xb8\x01\xa9\xcb\x8f\xdd\xb1\xef\x03\x84\xff\x7c\x31\x7c\xab\xe6\xed\x3d\xe4\xd0\x9f\x2f\x50\x1f\x50\x66\x1f\x50\x9f\x47\xa8\xcf\xfe\xab\x28\x28\xfa\x56\x94\x45\x10\xe7\x43\xa2\xfc\x39\xf4\x41\x6f\xbd\x07\xca\xac\xd4\xe5\xab\x95\x0e\xe7\x43\xca\x5b\xea\xf2\xc3\xba\x63\x13\x49\xf9\xf9\x9c\xfa\xa0\x59\x71\x0f\x5c\xa9\xe7\x33\xfb\xc3\x32\x61\xf3\x01\x8c\x7f\xbe\x40\xbd\xe1\x9b\x1f\xdc\x80\xd4\xe6\x87\xdf\x74\x9f\x0f\x60\xbc\x84\xe7\x9b\x25\x57\xe7\x83\x9d\x7f\xae\x6c\xfc\xe9\xa2\x9b\xa2\x6f\x52\xfc\x5a\xf9\x44\x6d\x7e\x3e\x32\xe6\x90\x5f\x1f\x50\x9f\xe7\xb3\xeb\xc3\x0f\x75\xce\x07\x30\xfe\xf9\xc2\xfb\x56\x19\x43\xec\xbc\x34\xea\x87\x15\xc4\xe6\x03\x18\x2f\xb9\xfa\x56\x9d\xd0\x78\x30\xe6\x8f\x8c\xb9\x5f\x8e\x98\x0f\xa8\xcf\x33\xbe\x65\xd3\xec\x9b\x91\xaf\x9f\x8f\xec\x3c\x94\xd9\x07\xae\xd4\xf3\xd9\xf5\xe1\x47\xa7\xe7\x03\x4e\xff\xdc\x4d\x75\x1d\x2e\xa2\xcb\x0a\xf7\x1b\xbb\x12\x9c\x5e\x22\xf7\x8d\xcb\x3d\x0f\x60\xfc\xf3\x68\x01\xb0\x2b\x09\xf7\x1f\xd9\x79\x4b\xad\xcd\x87\x0c\xb5\xf4\xf0\x87\x1f\xcf\x9c\x0f\x76\xfe\x11\x76\xd3\xd8\x7a\x20\xee\xcf\xfc\x8c\x5e\x65\x6d\x90\x86\x7e\x84\xdd\x34\x23\x23\x0f\x16\xfb\x11\x76\xb3\x3b\xa4\x43\xf4\x7e\x3e\x5f\x4c\x3f\x2c\xc2\x35\x1f\x62\x7a\xe9\xdf\x8f\x83\xfd\x05\x07\xf7\x09\xad\x5e\xc7\xf4\x0f\xc6\x5c\xa2\xf7\xe3\xf0\x89\xf4\xe1\x5e\xdd\x23\x80\xc6\xca\x68\xf3\x01\xa0\x79\x04\xd0\x70\xd5\xe9\x81\x68\x2b\x69\xfc\x71\xd0\x78\x88\xb6\x92\xca\x1f\x07\x53\x89\x31\x7f\x64\x96\xa1\xcc\x4e\xcc\xf2\xdc\xb2\xae\xd3\x45\x07\x45\xa7\x8a\x86\x8b\x2e\x8a\xbe\xa9\x44\x99\x67\x02\xd0\x48\x0f\xbf\xee\xbf\xea\x5a\x14\xa9\x19\xee\xd7\x84\x2b\x25\x59\xfc\x81\x5a\xce\x24\x27\x20\x59\xfc\xba\x3b\x62\x9e\xb8\x00\x69\xdf\x8f\x83\xc6\x93\x13\x98\xca\x09\x58\x9e\x7c\xa2\x85\x3f\xa5\x85\x5f\xb9\xe5\x82\x16\xfe\x94\x16\xfe\x80\x9e\x3b\x91\x07\x91\x16\x7e\xdd\x3d\xcb\x93\x43\xc2\x94\x77\x38\x8e\xfe\x67\xa1\xea\x84\xf3\x2b\x69\xfc\x81\xc0\xcd\x24\x65\x20\x69\xfc\x6a\xad\xd3\x39\x41\x7d\x24\x95\x5f\x77\x9f\xde\x90\xca\x9f\x92\xca\x1f\x48\xd5\x4c\x50\x1f\x49\xe5\x57\x4b\x94\xcf\x09\xe7\x57\xaa\xf9\x03\xf2\xeb\x84\x80\x25\xd5\xfc\x01\xf9\x75\xe2\x57\x24\x7a\x3f\x20\xbf\x4e\x74\x40\xa4\x7f\x5f\x77\x1f\x4a\x26\x27\x8f\x99\x7e\xc5\x87\x12\xf4\xf0\xa7\xf4\xf0\xc7\xe1\x08\x0c\x3d\xfc\x39\xe5\x72\xfc\x8e\xd1\x44\xf4\x7e\x4a\xf4\x7e\xf8\xc9\xcd\x39\xc9\xc9\xce\x4b\xcf\xb4\xdb\xd9\x4f\x38\x4c\x73\xe8\xd9\x77\x6f\xf5\x09\xea\x2e\x75\xf9\x61\xfd\xb6\x39\xc1\x54\xa6\x30\x95\xdd\xf9\xdf\x49\x9c\x3d\x65\x9a\x4f\x96\xe9\xf8\x55\xd7\x52\x91\xc7\x10\xd3\x2c\x21\xfa\x71\x1a\xf5\x99\xe8\x65\x48\x78\xbe\xee\x4c\x0a\xb7\xa1\xa7\xf2\xa4\x3b\x93\x02\x18\x2f\x21\xfa\x81\xca\xc6\x04\x89\x91\x10\x7d\xdd\xcd\x00\x41\x88\x7e\x4a\x88\x7e\xc0\x98\x9c\xe0\xf4\x12\x9e\x1f\xd0\x22\x27\x56\x5b\xba\xf1\x03\x5a\xe4\x04\x8c\x97\x84\x7c\xdd\x3b\x45\x7c\x70\xde\x2a\x72\xe3\x41\x62\xa4\x13\x3f\xfc\xd6\xe5\x9c\x90\x87\xa6\x0c\x3a\x04\xc7\x09\x79\x48\x12\xf2\xe3\xf4\xc9\x6d\x22\xa3\x31\x43\xbe\x99\x31\xc4\xa0\x4b\x37\x7e\x58\x39\x6f\x4e\x68\x40\x73\x65\xe3\xdd\x65\x68\x40\x53\x70\x0b\x54\x45\x74\xe3\xe7\x94\x41\x47\x7b\x61\xc2\xd8\x91\xa4\xfc\x38\x7d\x20\x99\x58\x6d\xe9\xc4\x0f\x48\x87\x13\xc4\x7d\xbe\xf2\xb2\x8e\x7d\x03\xc6\x4e\x28\x98\x46\x1c\x20\x00\x4e\x42\xc0\x09\xf7\xb4\xd0\x8d\x9f\xd2\x8d\x1f\xd6\xd0\x9e\x01\xc3\x35\x3e\x2b\x3d\xfc\xd6\xe5\x0c\x4c\xb3\x74\xe2\x87\xf5\xef\x66\x40\x63\x95\x4e\x7c\xdd\x1d\x31\x07\x89\xd7\xf8\x8c\xec\xb8\x8c\x74\x22\x0e\x3f\x25\x0e\x5f\xb9\x13\x86\x38\xfc\x0c\xc1\xea\xdc\x5e\x0f\x58\x34\xf1\xd9\xdb\x71\x19\x70\x45\x37\x7e\x4a\x0c\x7e\x5c\x06\xad\x83\xec\xaa\x14\xe0\x07\x82\x7a\x28\xc0\xcf\x10\x40\x7e\xd9\x87\x05\xa4\x97\x10\xa6\x02\xcd\x2e\x88\x98\xe3\x50\xc0\xe4\xf9\x8a\xe3\xd7\xaf\x34\xbc\x06\x69\x90\x79\x9f\x21\x3c\x9b\x9b\xbc\x01\x7d\x25\x4e\xd5\x65\x74\x24\x60\x82\x4a\xe6\x7d\xf8\x59\xc5\x19\xe0\xd9\x52\x7c\xaf\xd6\x3c\x9f\x41\x32\x34\x04\x7f\x5c\x36\x0e\x28\xc0\xcf\x10\x68\x0d\xd1\x2b\xb0\x87\x12\x87\x1f\xb0\xb9\x82\x2b\x04\x52\x7c\x1f\xdc\xb9\x0c\x72\x97\xd2\x6e\x1f\xd0\xa8\x82\x28\x56\x5a\xee\xb5\x31\x95\x44\xb1\x21\x03\x0b\x21\x0a\x2d\xf7\x29\x2d\xf7\xd1\x59\x1b\x58\xd1\x10\x24\xd1\x7d\xd0\x0a\xd8\x99\x12\x68\xaf\x8d\x05\x40\xc6\x33\x04\x49\x20\x4a\x88\x60\xfb\x94\x60\xfb\xe8\xb4\x10\xde\x48\x7c\xa6\x71\x74\x16\x1b\x3c\xcb\x78\x64\x52\x68\x3c\xa6\x52\x02\xed\xa3\xd3\x0c\xf0\xec\xf8\x02\xda\xc6\x3d\xe3\x20\x39\x29\x99\xf5\xc1\x45\xa2\x00\x92\x90\xec\x7a\xe5\x2a\x21\xb2\xeb\x33\x64\x2a\xe1\x14\x05\x68\x85\x14\xd9\x47\x77\xa4\x12\x98\xca\x10\xee\xc0\xbd\x9f\x00\x99\x96\xcc\x7a\x03\xd6\x09\xc8\x94\xb1\xb2\xf1\xde\x29\x80\xd6\x21\x48\x02\x5a\x0e\x8a\xec\x33\x64\x2a\xbb\x63\xa9\x80\x88\x12\x9f\xd5\x1c\x5c\xd1\x09\x4c\x65\x28\x8a\xed\x46\x10\x02\xf8\x59\xe2\xec\xb5\xd9\x57\x06\x19\x48\x89\xb5\x0f\x58\x34\x88\xb5\xcf\xb5\x69\x34\x7c\x8c\x59\x64\x20\x97\xc8\x8d\x5c\xac\x44\xc7\x7d\x2e\x19\x58\x6e\xb9\x2c\xd0\x0a\x49\xbc\x0f\x6e\xb9\x2c\xac\xe8\x2a\x59\x97\x3f\x48\x06\x72\x09\x92\x80\x7b\xb3\x80\x24\x96\x20\x09\x6b\xab\xcf\x05\xe1\x70\x09\x99\xee\xb6\xf3\x0b\x8e\xca\xaa\x5a\xa2\xc6\xce\x11\x6b\x9f\x12\x6b\xaf\x9c\x63\x11\x6b\x9f\x12\x6b\x1f\x7d\xfc\x61\xa8\x8a\x96\xfb\x94\x96\xfb\xe0\x12\xfd\x82\xc5\x28\x59\xf7\xca\xe1\x78\x91\xd6\x5c\xc2\x39\xa0\x01\xa1\xe5\x3e\x97\x4c\xf3\x30\xc0\xb0\x30\xcd\x92\x79\x1f\xb0\x76\x16\xa6\x59\x02\xed\x63\xf8\x64\xbf\xc0\xcf\x57\xd3\x0a\xf6\x91\x7a\x91\x85\x94\x0a\xfb\x80\x9a\xb3\xc0\x39\x96\xe2\x51\x0b\xb6\xcf\x05\x1f\x51\x82\xed\x03\xfe\xcd\x82\xdd\xb2\x3e\xdb\x3e\xe0\xdf\x2c\x90\xf0\xf5\x19\xf4\xda\x1c\xe0\x2e\x58\xff\x12\x68\x1f\x5c\xfb\x58\x50\x15\x97\xa8\x8a\x5c\xa1\x45\xb0\x7d\xae\x73\xa9\xc8\x8b\x00\x08\x44\xaa\xec\xd5\x82\xed\x73\x11\xfb\x4a\xa0\x7d\x70\xb7\x63\xc1\x47\x5c\x9f\x47\x18\x5c\xbc\x45\xb0\x7d\xae\x6b\x7e\x1f\x34\x76\xbe\xf0\x10\x4b\xe8\xc8\x60\x55\x21\x39\x21\xed\xf6\xca\xc5\xdb\x45\x5a\x53\xda\xed\x83\x1b\x21\xab\xff\xfa\xe0\xfa\xe6\x8b\x49\x01\x1d\x91\x96\x7b\x6d\xce\x86\xa3\xe5\x3e\x97\x5c\x0e\x5c\x9f\x45\x32\x74\x7d\x2e\x66\xc0\xf5\x59\xf8\x95\x25\x74\x84\x1b\xaf\x0b\x14\x7c\x89\xc5\xc8\xfd\xdf\x05\x3a\xb2\xd2\xaf\x74\x7e\xc5\xf0\x0a\x05\x87\xeb\x83\x02\xfc\x5c\x9f\xf7\x69\x9c\x80\x17\xc0\xc9\x52\xe0\xde\xb0\x02\x10\x1c\x97\x1c\x15\x34\xa0\x05\x8b\x46\x92\xf2\x63\x38\x10\x44\x52\x7e\x2e\x61\x2a\xc3\x41\xe7\x02\x3b\x5f\x8f\xb6\x03\xab\x97\x14\xea\x52\x0a\xd5\xaf\x3b\xce\x45\x0a\x75\x09\x6e\xf1\xeb\x8e\x73\x11\xb8\x2f\x39\x2a\xc8\x3c\x0b\xaa\x8c\x74\xe2\xc7\x70\x20\xb8\x08\xa6\xa5\x1b\x5f\xb9\xf2\xbc\x08\xa6\x25\x21\x5f\x36\x3f\xb9\x38\x17\x79\xcd\xf5\x39\x92\xaf\xcc\x03\x0c\x74\xb2\x96\x16\x29\xa6\x0f\xcf\x22\x11\xf9\xef\x67\x6e\x24\xda\x11\x52\x91\xaf\xdc\xb0\x5e\x7e\xf6\x7a\x2e\xb9\x16\x6e\x58\xbf\xf8\x8f\x77\x2b\x2a\x6a\x2e\xaa\x14\x65\x65\xde\xcf\x2f\xe0\xc9\xfb\xf9\x92\xaf\xec\x72\xd9\xa0\xec\xcd\xb2\x9f\xf1\x7f\x21\x47\x4a\x2d\xbe\x1e\x4e\xa1\xbc\x00\x21\xaf\xf8\xf1\x16\x60\x9f\x2f\xc9\x4d\x09\xcb\x97\x0d\x9e\x0d\xca\xf2\x53\xca\xf2\xd5\xea\xfc\xf3\x25\x48\x7f\x4b\x36\xc4\x96\xfb\x05\x25\x91\xca\xfc\x57\x56\x5d\x46\xe7\x3e\x2f\xf2\x95\x79\x50\xc0\xc3\x5f\xe1\xe1\xe0\x5a\x2f\x5a\xa9\xaf\xfc\x84\x15\xff\xe7\x0b\x10\x22\x75\xfa\xb2\x41\xc3\x41\x93\x7e\xbe\x7b\xd6\x66\xef\xfe\xc2\x72\x91\x5e\x7d\xd9\x20\x50\xbf\x78\x91\xb7\xe5\x37\x1d\x09\xbf\xc0\xe5\x92\xa1\x6f\xa0\x2b\x2f\x24\xc9\x37\xdd\x08\x43\x49\x1a\xf6\x3d\x72\xc2\x1d\x25\xbf\x40\x1e\xaf\x20\x8f\xc3\x0b\x0f\xc9\xfa\xf9\x1e\xd9\x10\xa3\x17\x2f\xd9\xd6\xf7\xc8\x75\xee\xbd\x88\x9e\xfd\x94\x9e\x7d\xb5\x28\xf9\x44\xcf\x7e\xbe\x67\xb6\xc4\xfb\x14\xd5\xfa\xf9\x9e\xd9\x12\x7f\x11\x57\xf2\xea\x02\xd9\x06\xb1\xe6\x85\x5f\xf9\x8a\x5f\x79\xd8\xa5\xbd\x1c\x29\xde\x6b\xcf\x9f\xb9\x73\x10\x61\xa4\x91\xff\x95\x9d\x2e\xa3\x73\xd7\x9b\x65\x6e\x0a\xe9\xd1\xb7\x6b\x56\xe1\x2e\xbd\x1c\x2b\xde\x9e\xbf\x63\x30\x11\xa4\x7b\x47\xcd\x32\xd7\x87\x9c\xe9\xfb\x1d\x3f\x1a\xf9\x2c\x94\xf7\xe7\x3b\xb2\x3a\x5b\xe5\x17\xd1\xd2\x77\x68\xc6\x1d\x8e\xbe\xe4\x41\xdf\x3b\x7b\xc7\x36\xe6\x68\x21\x59\xfe\xb2\xf9\xe1\xc4\x89\x2e\xff\x94\x2e\xff\x57\xe6\xa6\x60\xce\xdf\x27\xbf\x69\x4f\xfa\x72\xd5\xf8\x7d\xb4\x2e\xd9\x06\x50\x1f\xdf\x99\x93\x40\x33\x39\x43\xbc\x33\x3f\xe9\x53\xe4\x8b\xd9\x96\x36\xff\x57\xe6\xa6\x60\xb7\xdf\xc8\x6f\xb2\xb5\xc0\xc9\x25\xa4\xdf\xf6\x5f\x45\xf4\x3c\xb2\x77\xf6\x48\x2f\x24\xc7\x57\x24\x47\x30\x59\x94\xf4\xe7\xbb\xb2\x36\x43\x3f\x2f\x14\x17\xa9\xea\x7f\x65\x6e\x25\xbe\xe0\x5d\x59\x1d\xfb\x07\xac\xfc\x7d\x55\xdd\xf1\x87\x34\x81\x97\xe4\xe7\x2b\x89\xba\x0d\xf6\xc9\x0b\xf4\xf2\x8a\xec\x78\x60\xdf\x38\x6a\x48\xbd\xbf\x6c\x7e\xf4\x3d\x36\xf3\x59\x62\xdb\x6a\x96\xed\x2e\x3b\x28\x7b\xb2\xec\x70\xd9\xa2\x2c\xbf\xf9\x73\x4a\x8d\xcd\x19\xd0\xd8\xd2\xb4\x9b\x9d\x12\x9b\x0f\x15\xb1\x95\xfc\xe6\x8f\x45\x8d\xcd\xa4\x96\xd8\xd2\xb6\xfb\x29\xc0\xd8\x2a\xed\xac\xf9\xcd\xea\xb6\xf8\xf0\x10\x9b\xe8\x8b\xfb\x4f\xe8\x15\x9b\xaf\x0b\xc7\xf6\x59\xf9\x66\x50\x2f\xb6\x4a\x0f\x76\x4d\x6d\xdd\xdd\x73\xbf\xac\x1d\xdb\x2e\x7b\x74\xba\x03\x3e\x1e\xc4\x96\x66\xbf\xfe\x78\xc2\xd8\x4c\x7b\x8c\x6d\x97\x65\x34\x21\x2a\x78\xd6\x20\xf4\x8c\xc1\x57\xe6\xea\x1a\xd5\xb5\xac\xce\x1d\x68\x8c\x57\xcb\x31\x39\x3c\x26\x07\xe3\x9c\xb6\xdd\x6c\x99\xd8\x0e\xe6\x2e\x0d\xb8\x39\x31\xb1\x1d\x34\xf3\xc8\x6f\x9e\x6e\xca\x49\xf7\xce\xfc\xdd\xe5\xfa\x4e\x7e\x77\xe6\xdc\x5d\x1e\x16\xa3\x3b\xb1\x09\xdd\x39\x7e\x8e\x98\xc1\xc3\x07\xb1\x9d\x59\xdd\xcf\xd6\x8b\xcd\x0f\x31\xc5\x76\xe5\x27\xbb\xab\xbb\xf8\xe4\xa5\x4f\x76\x0f\x66\xa7\xe7\x3d\x7b\xde\x3d\x09\x9d\x9e\xf7\xec\xc1\xe0\x77\x8c\x66\x5a\x70\x3f\x28\x18\x5b\x67\x82\xd2\x82\xfb\x05\xe3\xd8\x06\xab\x6f\xfc\xfd\x4d\xd7\x37\x58\x7d\x43\xab\x6f\x78\x30\x07\x3d\xbf\xd5\x4c\xb3\x4b\x62\xbb\x99\x73\x05\xea\x47\x77\x6d\x37\x73\x90\x16\x7c\x67\xff\xdc\xcc\xc1\x7d\x67\x19\xbf\xa3\x07\x4f\x56\x57\x5c\xdd\x43\x75\x42\xd2\xad\x9c\x11\xbc\x9c\x10\xdb\xa3\x68\x6b\x78\x0a\x1e\xc6\x4b\xcf\x23\x6c\x7e\xd0\x2f\x36\xe3\x43\xa1\xf7\x11\xaa\xc5\xe7\x83\xf7\x11\x62\x4b\xbb\xef\x40\x3e\x78\x20\x21\xf2\x81\x84\x6d\x67\xdb\x4d\x5a\x32\xb3\x25\x6e\xff\x64\x23\xcf\x95\x3f\x73\x75\x41\x4b\x44\x79\x3c\x31\x6f\xa6\x3c\xc6\xa6\xcc\xe9\x89\x75\x0b\x46\x59\x4f\x24\x6c\x7b\xf3\x90\x04\x4b\x4f\x9c\x47\x6b\xd3\x07\x6f\x24\xc4\x96\x8e\xc4\x71\x58\x6c\x8b\x7e\x7f\xde\xa2\xb5\xcd\x23\xb9\xa8\x6d\x3d\xf9\x33\xf7\x6d\x51\x9b\x58\x8f\x16\xae\x8f\xcd\xac\xc7\xd8\xe4\x2b\x4e\xac\xec\x4b\x65\xd2\x95\xdb\x1c\x3a\xc4\xf6\x32\x6f\x6f\xd6\xc6\xee\x7f\x59\x25\xe9\x0d\xec\xb0\xa3\xe0\x0d\xf4\x1a\xc2\x57\x76\xb8\xac\x53\x36\xd4\xb9\xe1\x22\x8f\x49\x29\x39\xdf\x36\x0c\xc5\x09\xcf\x28\xe9\x0c\x30\xc1\xc5\xc2\x11\xa1\x47\x09\xbe\x32\xff\xce\x08\x4d\xe8\x95\x82\x6a\x99\x92\xe0\x95\x82\x28\x69\xb9\xfd\xa6\x5e\x94\x9d\xea\xf6\x33\xcb\x2e\x97\xdd\x94\x3d\xdf\x27\xed\x5e\x8a\x19\x2c\x51\x32\x28\xff\xd5\xbb\x46\x4b\x9a\x5a\x52\xdd\x48\xdf\x42\x8d\x22\xc3\x6d\x7d\x93\x28\x4e\x50\x86\x1e\x26\x28\x9b\x39\x2c\x51\x1a\xb5\x89\x36\x79\x56\x2a\x63\x28\xd3\xde\x5b\xdc\x2d\xca\xc1\xec\x1c\x35\xcb\xdc\x01\xec\x7d\x39\xb2\x3a\x5a\x79\x50\x9d\x38\x90\x4e\xe6\x45\x39\x19\x4a\xe9\xc5\x6d\xa6\xb8\x04\x8f\x0b\x44\x49\x73\xdf\x76\x0f\xa5\x39\x2e\x51\xce\x95\x65\xee\xc2\x45\x33\x33\xbc\xf6\xa3\x8c\x51\x2e\x16\x91\xd8\x8c\xbf\x7a\x77\xb1\x18\x84\xe3\x9c\xbf\x7e\xc5\xa0\xa4\xb9\xf7\x4b\x89\xc1\x03\x03\x51\xd2\xdc\x1b\x0d\x8b\x62\x32\x4b\x94\x34\xf7\x7e\xbf\x30\x0a\xe6\x5e\x4f\x0a\x94\xcd\xc4\x94\x28\x83\xc1\x1c\xb9\x88\x4e\xff\x6e\x30\x2a\x23\x27\xe8\xf2\xef\x6e\x56\x8a\x70\x19\xbf\x95\x15\xe5\x66\xa0\xd3\x15\xf8\x25\xbd\x28\x37\xd5\xdd\x59\x9d\x03\x98\x62\x21\xd0\xd0\x6b\x04\xd5\xb9\xcc\x28\xb8\x82\x92\x01\x7b\x63\x67\x3d\xb4\xe4\x51\x4b\x0e\x8a\xf8\xe2\x93\x53\xe0\x2f\x3e\x8c\xf3\x93\x5f\xb4\xeb\x2c\x93\x59\x4d\x9b\x6e\x54\x24\x0a\x36\xbd\x64\xbc\x6e\x78\x23\xca\x64\xf1\x7d\xa1\x7b\x6b\xfb\xfe\x47\xd1\x6e\x94\x60\xc8\x42\x33\x7b\xb0\xcd\x83\xbe\xa7\x39\xb5\xe8\x5b\x14\xcc\x69\x59\x59\xa3\x27\x6f\xd1\xc1\xc4\x5a\x8e\xdd\xe3\xf2\xb2\x90\xde\xac\x6e\x77\x27\x5e\xaa\x7b\xef\x2c\xf3\xa0\x61\x4f\x4b\xda\x53\x3f\xd1\x14\xd5\x48\x4c\xd4\x84\x5b\x0e\x07\x7d\xd5\x50\x7e\xe8\x45\x80\xc6\x2e\xa9\xce\x7a\x46\xdd\xfe\xfe\xe4\x4f\x75\xbc\x03\x10\x35\x6d\xad\x03\xfd\xa8\xd8\xda\x9a\xb6\xd6\xcf\x19\x45\x35\xc1\x30\x6a\x06\xd7\xc7\x4f\x9a\x22\x6a\xa5\x99\x5f\x9c\xdd\xda\x0f\x7e\x10\xd5\xe9\xcd\xa8\x89\x9b\x10\x9b\x56\xe3\x26\x51\x85\x9b\xf8\xb5\x82\xa8\x04\xd7\x35\x2d\xfb\x61\x8f\x80\xe2\x7f\xa4\xe2\xff\x46\xac\x58\x2d\xcf\x1c\x35\x81\x13\x3f\xbe\x17\x15\x1b\x2d\x21\xff\xea\x67\x0e\xa2\x36\x06\x25\x71\x13\xa2\x29\xe4\xfb\xa3\xa6\x21\x26\xbe\xa9\xe6\x83\x44\x6d\x2b\xcb\xdc\x4c\x5f\x2f\x0d\xc9\xfc\xb7\x76\x78\xea\x30\xc4\x35\x03\xef\xc3\xeb\x1d\x71\xff\xa8\x19\x78\x5b\x1c\x2c\xaa\x81\xfb\x90\xd0\x7f\x6b\x4c\xcf\xc1\x80\x25\x3a\x42\xa4\x82\xbc\x7f\xd4\x8c\xc9\x4f\x3b\xa7\x4a\x4c\x5e\xf5\x6a\xea\x66\x7d\xb0\xa8\x86\x4e\x42\xcf\x00\x34\x03\xf4\x51\xb1\xdf\x35\xe1\x91\xb3\xb8\xba\x8b\x85\x29\x92\xa2\xc1\xfb\xa8\x98\xef\x9a\xe6\xfb\x74\x07\x2e\x86\x39\x81\x93\xb3\xba\x21\x9d\xf5\xa5\xbb\xa9\xa7\xed\x1b\x0f\x03\x44\x4d\xd3\xee\x67\x65\xa2\x12\xc9\xd7\x7e\x66\x99\xfb\x8d\x69\xaf\x19\xad\x9b\xbc\x12\x75\x50\x9d\xa0\x78\x73\x17\xa2\x0e\x86\x32\x31\x95\x93\xcd\x4a\xb4\x5e\xd3\xb2\x9b\x52\x12\xf5\x66\xc6\xd3\x7c\x63\x87\x2b\xe6\xbb\x26\xa8\xe2\x97\x4f\xa2\x3e\x74\x2f\x81\x13\x0b\x60\x45\x7d\x18\x4c\xc5\xdd\x7e\x9a\x21\xea\xc3\xf4\x48\xbe\x6d\x3b\xed\x80\xea\xc3\xba\xfc\x42\xf0\x7a\xda\x0e\xa3\xda\x1f\x35\x31\x95\x5f\x5b\x64\x52\xdb\xcc\xda\xdc\xb9\x49\xc7\xf5\xc4\xd8\xe6\xe7\x39\xa2\x62\x84\x6b\xc2\x2d\xbf\xe6\x8e\x08\xba\xa6\x81\x36\x7f\x24\x2a\x06\x5a\x7a\xff\x5f\x99\x27\x21\xe8\x5d\x86\xd0\x66\x90\x44\x5d\x0c\x74\x02\x2e\x67\x77\x7d\x8b\x85\x29\x5c\xde\xb4\x8e\xa8\x8b\xd5\x97\x78\xcb\xaf\x51\x79\x59\x0e\x8a\xa1\x2f\x07\xf3\x95\x18\xba\xa6\x3f\x38\xd9\xac\x2f\x83\xf9\x6a\xf5\x5d\x3e\x56\x54\xfc\x41\x4d\x9b\x7f\x79\xb7\xee\xd8\x7c\xbd\x00\x50\xad\x27\x15\xbb\x53\xb4\xb1\x67\x78\xed\xd7\x1d\x02\x71\xff\xd8\xbf\x70\xba\xfa\xbd\xf2\xd8\x0b\x5f\x2c\xf9\xc5\xcb\x45\x3b\x45\x4d\x45\xc3\x45\x17\x45\x4f\x56\x46\x19\x95\x89\x6a\x68\xfa\x49\xec\xbe\x41\x1a\xbb\x52\xbb\x7e\x3c\x21\x50\xf7\x0f\xa9\xfb\x57\x3f\x9e\x10\xa8\xfb\x87\xd4\xfd\xeb\xe5\x9d\x8a\xba\x7f\xec\xe9\x41\x7e\xff\x2c\x28\x5b\x59\xc6\xef\x68\xc8\x77\x16\xa8\x7e\x8f\x21\x76\x3c\xc8\x9e\x18\x8c\x39\x32\xb1\xef\xb4\x44\x24\x44\xbf\xd5\x10\xbb\x49\x88\xb1\xcb\x81\x5c\x76\xf0\xbb\x33\xbb\x21\xad\xff\xef\x8b\x6e\x08\xce\x65\x4f\xe4\xc6\x2f\x28\xc4\x0e\x72\xb3\xeb\x00\xf0\xfb\x67\x4c\x76\xfa\xa4\xab\xb9\x25\xa6\x28\xc6\x9e\x3e\xe9\xb2\xa9\xe1\xd5\x80\xd8\x8f\xbf\xab\xf3\x37\x0f\xaa\x3b\x64\x9a\xbd\x39\xf6\x83\x61\xfe\xe2\xfd\xb2\x5d\x07\x65\xf4\x2e\x01\x1f\x93\x79\x62\x3f\x19\xcb\x44\x60\xcc\xe6\x09\xd4\xfc\x43\x6a\xfe\xf5\x57\xc7\x09\xc9\xf7\x34\xf7\x97\xad\xd7\xde\xf9\x64\xaf\x59\xe6\xdf\x61\xd3\xf7\x0c\xc9\xfd\x50\x67\xec\x9d\xea\x7a\x56\xe7\x41\xe9\x2c\x06\x99\x74\x2b\x7b\xc5\x3e\x98\x1e\x3d\x08\xb6\x99\x80\x13\x3b\xd8\x8c\xd4\xfc\xeb\x65\xf0\x0c\x35\xff\xd8\xd3\x13\x74\x47\x97\xfb\x60\x0a\xc6\xca\x32\x2f\x59\x3c\xc1\x9e\xe0\x4c\xb7\x33\xde\x6f\xaa\xbb\xb3\xba\xf3\xcf\x62\xdd\xfd\x66\x38\xa5\xad\xb6\x75\xf6\x38\xd0\xcd\x2e\xe8\xc6\xea\x5f\x81\x74\x7f\xec\xe9\x5e\x3a\x1b\x19\x1f\xb2\x67\xc0\xee\x07\x47\x63\x9f\x7c\x72\xe6\x27\x3d\x09\xf8\x89\x5d\x7e\xc2\x2a\x5e\xb1\x4f\x86\x6c\x6a\xce\xbb\x0f\x92\xa8\xf7\xc7\x9e\x7e\xa2\xb3\x13\x82\x39\x0f\x59\x52\x73\x78\x62\xc7\x4f\xec\xe9\x0b\xac\xd0\x1b\x3b\x98\xc9\x9e\x41\x7e\x67\xfa\x08\xf2\x77\x61\x26\xa6\x8c\xc5\xfe\x32\x43\x6f\xcd\x9f\xb9\x29\x18\xf5\x3d\x81\x91\xce\x4e\x78\xf9\xe4\x9b\x9f\xfc\x99\x82\xe6\xb4\x69\xb4\x8c\xe3\x4d\xc9\x89\x06\x2e\xd2\xc4\x5e\xbc\xec\xe8\x1a\x71\x7c\x4b\x00\xdd\x4f\x99\x46\x33\xf1\x26\x5a\xc6\xf8\xdd\x4e\xb7\x99\xbf\x18\x2d\xe3\x78\xbf\x07\x1a\xad\x50\xdd\x17\xd2\xb7\xc3\x2e\xa4\x39\x37\x1a\xad\x66\x2b\xbb\x7b\xe0\xfc\x67\xb4\x04\x38\xfc\x4a\x67\xa0\x78\x1f\x2d\x0d\x9c\x95\x4e\xa3\x35\x7e\x97\x56\xcc\x7a\xa6\xd1\xb0\x62\x2d\xb1\x0a\x73\x54\xa2\xf9\x7e\x7d\x48\xe4\xbe\x39\xa7\x1a\xcd\xb9\xc5\x68\x09\x55\x0c\x9b\x68\xa4\xed\xa3\xa5\xa5\xb2\x72\x4b\x34\x2c\x55\x3b\x6b\x96\xb9\x29\x27\xcd\x4c\xac\xc2\xdc\x91\x68\x17\xdd\x4b\x3c\xc2\x9a\xe8\xd1\x08\x68\x9b\x6e\xdd\x60\xa9\xd0\xb0\x8f\x96\x86\xd1\xaf\x35\x46\xbb\x98\xbc\x4b\x06\xc2\x4a\x9e\xd1\x2e\x9b\xaa\xd6\xe5\xb7\x8c\x8b\x36\xeb\x63\x45\x4b\xac\xc2\x9c\x8e\x68\x9d\x96\xf4\x6c\x89\x07\xac\x33\x28\x09\x55\x8c\xcb\xb5\x11\xd0\xb6\x44\xa6\x07\xab\x76\x30\x3f\xe3\xce\x32\xf7\xc0\x1a\x59\xd1\xc6\x77\x36\xf0\xfd\x8a\x68\x58\xbf\x96\xb1\xae\xb5\x2d\xa3\x81\x5a\x4b\xf0\xbe\x71\x7e\x6e\x20\x15\xed\xb3\x83\xed\xb0\xbf\x6e\x37\x43\x99\x48\x85\xd9\x1b\xd1\x40\x2a\x24\x8e\xdf\x0e\x16\x03\xc1\x73\x4b\x3c\x7b\x30\x94\x0f\x13\x9e\x96\xcf\xfc\x8d\x68\x0f\xfd\x16\x8c\x51\xfc\x02\x63\x34\x50\x6b\xe9\xe1\x37\x0e\xf2\x6d\x32\x94\x42\x31\x8a\x35\x57\x02\x15\xfc\x68\x33\x3f\x59\xdc\x94\x60\x5d\xca\xf4\x15\xbf\xb4\x18\x0d\xd3\x27\xdd\xfb\x52\x36\xb6\x16\x68\x71\x13\x97\xa4\x58\x26\x25\xd0\xb4\x8f\xb6\xf2\x77\x86\xbb\xdb\x62\x7e\x24\x59\x5c\xcc\xd3\x88\x86\xed\x6b\x6f\x7e\xd3\x66\xb8\xbd\xf4\xe1\xcd\x3e\xd8\x89\x22\x5e\x1f\xc7\x96\x7d\x30\x60\x84\x7a\x7d\x1c\x5b\x7e\xd3\x88\xc3\x61\x5e\x48\x1c\x9f\xb1\xfb\xca\x4e\x97\x05\x65\x59\x9f\x23\x12\xb4\xed\x43\xda\xf6\xe5\x3b\x80\xba\xac\x51\xf6\x39\x27\x93\x5c\xe3\x20\x7b\x78\x94\xfc\xa4\xbd\x13\xc2\xf7\x71\xd4\xfc\xa4\x33\x57\x07\xd6\x4f\xa2\xf8\x5f\x99\xbb\x50\xe9\x42\xcd\x6f\x7a\x07\x1d\x80\xd0\xc7\xae\xd5\x42\xcf\xc9\x03\x4a\xd0\xbe\x14\x3f\x26\x18\x07\x48\x85\x14\xee\x6b\xaf\xfc\x6c\x51\x94\xb5\xd9\xe2\xa0\x7e\x1f\x52\xbf\xff\xca\xfc\x3b\xec\xf0\xd1\xb2\x3a\x9f\xdf\x0e\xe0\xe4\xa3\x65\x75\x1e\x30\x40\x0c\x89\xdc\x57\x33\x75\xe3\x20\x7b\x78\x7c\x61\x65\x29\x66\x48\xc4\x01\x88\x71\x7c\xd6\xba\x1d\xcc\x1c\x18\x86\x04\xf0\x2b\x31\x00\x02\xf8\x21\x01\xfc\xef\x8b\xfc\x8c\xc5\x20\x89\xfb\x62\x65\x9a\x38\x4e\x26\x5c\xec\x0f\x3f\x08\x10\xc7\x49\x6d\x67\xd6\xf6\xb3\x9c\x91\xa4\x0f\x49\xd2\xd7\x6e\x8b\x8f\x24\x7d\x1c\xb2\xf8\xc5\x2a\x28\x81\x26\x7d\x48\x93\xfe\x2b\xe3\x93\x0f\x65\x53\x9f\x74\xfb\xb1\xf8\x87\x70\x8a\x62\xe1\xb8\x38\x3a\xed\x17\x97\xb0\xb3\x77\x7c\xd3\x32\x0e\x59\x75\x22\x18\xa4\xe7\xe3\x18\x9b\x8a\x3c\xa1\x84\xb4\xc7\xc8\xca\x6c\x4b\x0f\xb0\x69\x29\xd4\x7f\x65\xee\x37\x06\xff\x10\x82\x51\x0a\x23\x09\x36\x2d\x21\xfa\xe6\x67\xbf\xe3\x20\xdf\x78\xdc\x39\x24\x0e\xbc\x0f\x72\x8a\x47\xda\x52\x6b\x98\xc5\x01\x24\x7c\xcc\x6c\xca\x1f\x0a\x1e\xc4\x41\x94\x79\x28\xca\xec\x3e\x74\x1c\x44\x99\x47\x9a\xe1\xc2\x7e\x9c\xb4\x66\xe6\x2a\xb2\x47\x3b\x48\xf5\x1d\x91\xeb\xd9\x6e\xeb\x08\xa6\x21\xb2\x3a\x4f\x2c\xf9\x3c\xe9\xd0\x7f\x3f\xfb\xb1\xb4\x08\xd1\x87\x84\xe8\x2b\xe1\x1b\x42\xf4\x21\x21\xfa\x4a\xf4\x86\x10\x7d\x1c\x69\xd7\xcd\xfd\x08\x94\xe8\x43\x4a\xf4\x5f\x99\x3b\x80\x5d\x3f\xde\x9c\x75\xa3\xef\xc7\xcb\x12\x13\x11\xd0\x8f\x11\xc4\xf1\xd2\x37\x11\x01\xfd\x36\x5d\x1c\xa4\x01\x0f\x3d\x5d\x5b\x8a\xe1\x0d\xc4\xe8\x43\x62\xf4\xd5\xa2\x8b\x81\x18\x7d\x9c\xe9\x0c\xe0\x84\xa0\x46\x1f\xa7\x48\x82\x05\x4e\xc8\x89\x33\x38\xd3\xe0\x5b\xb2\x28\x4e\x30\x0c\x89\xcc\xd7\xee\xe3\xe2\x09\x86\x71\xa6\xbd\xb7\x45\x3c\x4d\x12\x0c\x89\xcc\x7f\x9b\xce\xb5\x11\xed\x9e\xe9\x0b\x7c\xe9\x38\xd0\x96\x8f\x33\x7d\x81\x45\x50\xe2\xc4\x17\x48\x4c\xfe\x2b\x73\xcf\xc1\x1c\xce\xb4\xf7\xdd\x3f\x23\xe9\x78\x0a\x73\x28\xbe\xba\x1b\x27\x98\xc3\x29\xcc\xa1\x33\xcc\xc4\xd6\xd2\x90\x2f\xc5\x37\x63\xe3\x6c\xfc\x4c\x17\xe0\xfd\xa6\x42\x9c\xa4\x01\x25\x1a\xff\xfd\xcc\x43\x89\xe1\x96\x6a\x7c\x29\xd5\xf6\xe6\x04\x20\x90\x8c\x7c\xf5\xfb\x6a\x81\x8c\x7c\x48\x46\xfe\xfb\x99\x5b\x02\x23\x44\x92\xf2\x5f\x99\x9b\x82\xe5\x96\x5a\xfc\x57\xe6\xf1\x22\x24\x97\x3c\xfc\x57\xe6\xfa\xfc\x6c\x79\x9c\x32\xdd\xc3\x80\xd6\x49\x66\x51\x22\xf0\xa5\x54\x23\xd3\xe7\xc5\x42\x11\xa7\xcf\x42\x96\x81\x2a\x7c\x9c\x57\xd6\xe6\x6d\x7c\x5e\xcc\xea\x95\xeb\xd2\xf6\xed\x84\x64\x22\xf5\xf8\x06\x5a\x7f\xe2\x0d\xce\x2b\x5b\xe2\xa0\xe1\x04\xb5\x3e\xbb\x16\x83\x23\xf2\x93\xa4\xa3\x84\xe0\x4b\xb1\xbe\x4a\x9c\xa0\x18\x52\x86\xaf\x1c\x98\x50\x86\x8f\xb3\x67\x6d\x6c\x3a\x28\x26\xa7\x48\x82\xa5\x1a\xdb\x39\xb1\xf9\xe7\xc8\xea\xd8\x3d\x24\x16\xcf\x3b\xa7\x95\xc5\x47\xdc\x2d\x9d\xf7\x52\x76\x36\x2b\x86\xfd\xbc\x57\x96\x79\xa0\x1f\xda\xa2\xe0\xba\xec\x2c\x23\x72\x84\x29\xbf\x5e\x20\x99\x9c\xc0\x0a\xa7\x60\x05\x5f\x16\x88\x93\xe0\xfa\x4c\x5f\x61\xf1\x93\x38\x27\x93\xa0\x67\x47\x0a\x2c\x13\x74\xdb\x23\x75\xdb\x87\xe3\xf5\x13\xda\xc7\x29\xda\x07\x47\xc5\x13\x5f\x20\x9d\xf6\xca\x49\xf1\x0c\xc6\x24\x23\x72\xb8\x29\xa8\xb3\x87\xd4\xd9\x1b\x79\x96\x13\x37\x71\xa6\x9b\x80\xb6\x82\x3c\x7b\x48\x9e\xfd\x2b\x73\xbf\x17\x53\x97\xce\xc0\xba\x29\x71\xe2\x0c\xce\x95\xdf\xa4\x07\x2f\x3d\xf8\x6c\x7f\x23\x3f\x73\x92\xa8\x3c\xdf\xec\x81\xc3\x94\x13\x0c\xe3\x14\x86\x31\xd8\xe3\x84\xff\x67\x86\xff\xbb\xf7\xf8\x05\xef\x43\xca\xea\x5f\xd9\xe9\xb2\x83\xb2\xac\xce\xc1\xe0\x05\x68\x7d\x6d\x1a\xb0\xc2\xcf\x6c\x4a\xaf\xcf\xf6\x37\xf8\x1b\x17\x29\x4c\xa9\xa4\x97\xb2\x3b\x8a\xbf\x80\x37\x52\x36\x7d\x38\x63\x8f\x6c\x7a\x5c\xe9\x0c\xfc\x76\x60\x5c\x50\x07\xa5\x93\xfe\x95\xb9\x73\x38\x83\x2b\x83\x7f\xdf\x22\x8e\x0b\xdc\x5a\x9a\xe7\x95\x73\xfc\x45\x0a\xf3\xda\x73\x56\x1d\x18\x5c\xf0\x03\x2f\xf1\x03\xad\xc3\x1a\x17\xe7\x82\x2b\xfd\x84\x1f\x24\x0c\x54\xd0\x43\x2a\xe8\x8d\x14\xd9\x05\x3d\xf0\xca\xd8\xdf\xca\x2b\x71\x91\xc1\x94\x4a\x79\x29\xf0\x8a\x2e\x1c\x85\x64\xcb\xbf\x32\x37\x05\x0c\x46\x12\xe6\x75\x30\x5e\xf8\x90\x2b\x7d\x08\x34\x99\x0b\x47\x71\x29\xc2\xf7\xb5\x8e\x40\xee\x3c\xae\xe3\xef\x96\xfc\xec\x90\xeb\xa4\x36\xc9\x69\xf9\x5e\x47\x5c\x24\x30\x2f\x25\x30\x4b\xb3\x1b\xbf\xf0\x05\x12\x38\x6f\xe4\xf8\x50\x35\x8f\x2b\xdd\x84\xb5\x5e\xe2\x82\x64\x72\x5d\x35\xcb\xfc\x3b\x7c\x81\xc4\xca\x4b\x69\x8c\x33\x90\xf6\x25\x48\xdb\xaf\x62\xc4\x45\x2a\x52\x6a\xe5\xa5\x58\x09\x26\x2e\xd0\x99\x4b\x71\xfc\x18\xe5\xbf\x46\xba\xb5\xfe\xb7\x81\xee\x05\xe3\xf0\x4a\x4f\xd1\x9c\x74\xb8\xa0\xa0\x48\xf8\xfc\x2b\x73\x63\x70\x07\x52\x3a\x2f\xa5\xd9\x36\x5c\xa0\xda\xd7\xc8\xc6\x78\x34\x81\x75\xae\xa1\xee\x19\x15\xb9\x48\x6f\x5e\x79\x38\x20\xcb\x7f\x01\x6a\x5f\x77\x8e\xa6\x73\x0e\x17\x00\xcd\x25\xc2\x5e\x25\x5b\x77\xc1\xca\xbb\x64\x8a\xaa\x1f\x39\x7f\x51\x4f\x7a\x9f\xad\xfd\xaf\xbf\x76\xab\xe5\xbe\xcb\xc1\xe0\xbb\xf4\x96\x10\x2f\x59\xbf\xdc\xcc\x7b\x57\x6e\x3b\x3f\xc7\xf1\x2e\x93\xbb\xde\xd5\x5a\x96\xb5\x9f\x32\xcb\x80\xbe\xeb\x8b\xab\xbe\x53\xc3\xcf\xef\x5e\x9b\xb7\x57\xb7\x10\xbe\xb2\xfa\x53\x76\x53\xa6\x54\x2b\xbf\x32\x8b\xf1\x15\x43\xdd\x0a\xa1\xef\xeb\x23\xca\xfb\x4e\xbd\x15\x70\xfe\x94\x04\xbf\x91\xc4\x62\x71\x3d\xc1\x6f\x3e\x37\x63\x69\xcb\x17\xfa\xf9\x2b\xba\x79\xb1\x2e\x63\x79\xcb\xcf\x48\x95\xb7\xd4\x1c\xa9\xed\xf8\xaf\x0b\xef\xfb\xcf\xbf\xde\xff\xf8\x1f\xff\xfb\xff\xdc\xff\xf8\xbf\xf7\xbf\xae\xbf\xe6\x7f\xfe\xf3\x9f\xeb\xdf\xfe\x23\xfe\x65\xfe\xc7\x5f\xff\xf3\xfb\xeb\x5f\xb1\xde\x7f\xf9\xb7\xf5\xcf\xf5\xff\xfe\xfd\x3f\xff\x39\xd7\x5f\xff\xf8\xf7\x7f\x7c\xbf\xd2\xbf\xff\x1f\x00\x00\xff\xff\xaa\xf1\x6a\x04\xb3\xc9\x03\x00"); -func _agcd ()(*asset ,error ){_ccba ,_edad :=_ccga ();if _edad !=nil {return nil ,_edad ;};_aba :=bindataFileInfo {_ag :"Adobe-CNS1-1",_bc :1761,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491172,0)};_bbe :=&asset {_cd :_ccba ,_dce :_aba };return _bbe ,nil ; -};func _ccg ()(*asset ,error ){_ggf ,_ccd :=_gfg ();if _ccd !=nil {return nil ,_ccd ;};_beg :=bindataFileInfo {_ag :"90msp-RKSJ-V",_bc :1874,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491002,0)};_fdc :=&asset {_cd :_ggf ,_dce :_beg };return _fdc ,nil ; -};func _gbef ()(*asset ,error ){_ebbg ,_bfa :=_cgc ();if _bfa !=nil {return nil ,_bfa ;};_abcb :=bindataFileInfo {_ag :"Adobe-Korea1-0",_bc :1190,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491374,0)};_cdac :=&asset {_cd :_ebbg ,_dce :_abcb };return _cdac ,nil ; -};var _daag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9c\x4b\x0f\x1e\xb7\x91\xae\xf7\xfa\x15\xdf\x32\x67\x91\xe3\x2e\x5e\x9b\x80\x20\xe0\x9c\x5c\x10\xe3\x20\x39\x83\xf1\xdc\x80\xc1\x2c\x9a\x37\x43\x40\x2c\x09\xb2\xbc\xc8\xbf\x1f\xd4\xfb\x50\x9e\x4c\x30\x80\xb3\x30\xca\x2a\xb1\xbb\xd9\x4f\x57\x91\x7c\x59\xfc\xf4\xcd\x6f\xbe\xfd\xed\xb7\x1f\xde\x7f\x79\x7d\xf3\x0f\x9f\x3f\x8e\xef\xd6\x97\xd7\x7e\xff\x61\x7e\x5e\x3f\x7e\xfc\xe9\xf3\x58\xaf\xbe\xbe\x7f\xff\xe1\xcd\x1b\x0b\xaf\xf9\x7e\x7c\xf9\xfa\x47\x99\xf1\xc3\xf3\xe9\xcd\x1b\xbf\xfe\xbb\xbf\xfc\xf8\x65\xfd\xf0\xed\x87\xfd\xf1\x15\x69\x37\x7f\xfa\x74\xda\xbe\x5e\xdf\xfc\xe3\xfa\xfe\xfd\x8f\x5f\x3e\xff\xe5\xf5\xab\xff\x33\x3f\xf6\xf5\xbf\x5e\x73\x6d\xf7\xff\xff\xcf\x73\x7d\x7e\xff\xe1\xfb\xd7\xaf\x7e\xf3\xa7\xef\xec\x67\xf7\x77\x3f\x7d\xfa\xf4\xe7\xf5\xc3\xfa\xf0\xe5\x65\xf2\xad\x0f\x53\xf6\xcd\x37\xbf\xf9\xe3\xf3\xe9\x4f\xcf\x0f\xeb\xf5\xcd\x1f\xfe\xdf\xfc\x73\xff\xf5\xff\xcd\xbf\xfe\x83\xfe\x4a\x7f\xf3\x2f\xeb\xf3\x8f\xef\x3f\x7e\x78\xd9\xff\xbe\xae\xf2\x5f\xee\x7f\xfa\xcb\xa7\x75\xee\xf4\xe6\x9b\x7f\xfb\xe7\x6f\x7f\xfb\xfa\x77\x7b\xd9\xf5\x0a\x39\x87\xf8\x1f\xc7\xff\xaf\x7f\xfc\x38\xd7\xeb\xe2\x4f\x81\xbe\x8f\x8f\x73\xfd\xf8\xe9\x19\xeb\xf3\xf3\xe1\xfb\xf5\xe6\xf5\x7a\x7b\x5d\xef\x5e\xaf\xd7\xdb\xfb\x7a\xe7\x7f\xba\x7f\x97\xae\x77\xaf\xb7\xbf\xff\xdd\xef\x7f\xf7\xce\x3b\xf9\x37\xed\xdf\x18\xb7\xf9\xf0\xf1\xcb\x5c\x1b\x9f\xee\xf0\xd6\xf6\xbb\x97\xf9\x15\x7f\xfd\x57\x6f\xec\xba\xce\x73\xdf\xcf\xd3\x3a\x78\xeb\xba\xbc\xf5\xdb\x7b\xe9\x69\x18\xcb\x35\x66\xf9\x0c\x9f\xc9\x17\x92\x7c\x01\x5f\x78\xf7\xb2\x12\xac\xca\x17\xf1\xc5\x77\x2f\x4b\xe5\xf8\x12\xbe\xe4\xd7\xb6\x9b\x6b\x33\xbe\xec\xed\xac\x04\xf9\x0a\xbe\xe2\xbe\x6c\xf4\xa5\xe2\xab\xee\x0b\xc6\xb5\x37\xbe\xdb\x9f\x6b\x99\xfe\x35\x7c\x4d\xfd\xbb\x6e\xf9\x1e\x7c\x8f\xfa\x77\x73\xbf\x8e\xaf\xbb\x2f\x96\x4b\xbe\x81\x6f\xf8\x33\x52\xe5\x7e\x13\xdf\x54\x5f\x72\x91\x6f\xe1\x5b\xba\x5f\xe3\x19\x1b\x9f\x93\xae\x57\x53\xbb\x0c\x3f\x37\x96\x2c\xe9\x7e\x19\x7e\x19\x7e\x29\xca\x07\x3f\x37\x56\x2d\x8a\x41\x86\x9f\x1b\x2b\x81\xbe\x64\xf8\xb9\xb1\x94\x9a\xfa\x9c\xe1\x97\xc5\x2f\x65\x71\xce\xf0\xcb\xe2\x67\x51\xfd\xcb\xf0\x73\x63\xd5\x2e\xf1\xcb\xf0\x73\xe3\xdf\x83\xbe\xc0\xcf\x8d\x33\xa5\x2f\xf0\x73\x63\xe9\x82\x41\x86\x9f\x1b\x7f\x06\xcf\x85\x9f\x1b\x2b\x57\xa0\xcf\xf0\x73\x63\xd9\x6e\xfa\x0c\x3f\x37\x96\xef\xc0\xfd\xe0\xe7\xc6\x99\xea\x7e\x05\x7e\x6e\xac\xc4\x4b\xd7\x16\xf8\xb9\xb1\x12\xa3\xbe\x65\x81\x9f\x1b\xef\x0b\x3e\xf8\x15\xf8\xdd\xdc\x0f\x7e\x6e\xac\x94\x4b\xef\x56\xe0\xe7\xc6\x8a\x95\x26\x1f\xfc\xdc\x58\x4e\xc4\x64\x81\x9f\x1b\x2b\x2d\xd2\x17\xf8\x15\xc5\x5f\xce\xe2\x5c\xe0\x57\x88\x3f\xd8\x17\xf8\x15\xe2\xef\x3c\x03\x7e\x45\xfc\xee\xf3\x6e\xf0\x2b\xe2\xd7\x88\xa1\x02\xbf\x32\x89\x17\x7c\xf0\x2b\x8a\xbf\xbb\x71\x3f\xf8\x15\xf1\xbb\xb3\x7c\x15\x7e\x15\x7e\x59\xcf\xa8\xf0\xab\xf0\xab\x7a\xb7\x0a\xbf\xaa\xfc\x8d\xb7\xfa\x5c\xe1\x57\xe1\xc7\xfb\x56\xf8\xd5\x04\x53\xc5\x4b\x85\x9f\x1b\xcb\xd5\xb8\x16\x7e\x6e\xac\xa4\xd3\x17\xf8\xd5\x4a\x5f\xf4\x8d\x2a\xfc\xaa\xf8\x15\xc6\x97\x0a\xbf\xaa\xf8\x4b\x7c\xa3\x0a\xbf\xfa\x70\x2d\xcf\x80\x9f\x1b\xcf\x19\xee\x07\xbf\x2a\x7e\xa5\x8a\x55\x85\x5f\x3d\xfc\x78\x0f\xf8\x69\x9c\xcb\x35\xe8\xda\x07\x2e\x0f\x5c\x6e\x3d\xf7\x81\x8b\x1b\xff\x96\xba\xf6\x81\xcb\x23\x2e\x91\xd8\x7d\xe0\xf2\x68\x5c\x2b\x8c\x4d\x0f\x5c\xdc\x58\x4d\x17\xcf\x80\xcb\xa3\xb8\x2a\xe7\x19\x70\x79\xc4\xc5\x92\x58\x3d\x70\x79\x6e\x62\x9c\xfb\xc1\xc5\x8d\xd5\x0b\x56\x0f\x5c\x1e\x71\xc9\x8d\x67\xc0\xe5\x11\x97\xc8\xd8\xf4\xc0\xe5\x19\xbc\x1b\xcf\x80\x8b\x1b\x2b\x56\xf5\x2d\x1f\xb8\x3c\x8a\xab\x4a\x4e\x3f\xc4\xd5\xb3\x69\xa7\x3e\x77\xe2\xaa\x6b\x5e\xb8\x88\xab\x0e\xbf\x7e\xe6\x05\xda\xc1\xaf\x2b\xae\x12\xf1\xd2\xe1\xd7\x0f\x3f\xbd\x47\x87\x5f\xd7\xb8\x76\x07\xda\xc1\xaf\x93\x97\x95\x67\xc0\xaf\x13\x57\x8c\x25\x1d\x7e\x5d\xe3\xda\xc5\x5c\xd1\xe1\xd7\xc5\xaf\x05\xbd\x6f\x87\x5f\x57\x5c\x65\xf2\xa8\xc3\xaf\x93\x97\x8c\xbb\x1d\x7e\xbd\xd3\x8e\xfe\xc1\xaf\x0f\xe6\x37\x7c\xf0\xeb\xe2\x17\x88\xab\x0e\xbf\x2e\x7e\xf1\xf4\x05\x7e\x6e\x2c\x19\xac\x06\xfc\xc6\xc5\x58\xa7\xfe\x0d\xf8\x8d\x93\x97\xb4\x83\xdf\x60\x5e\x2d\xfa\x96\x03\x7e\x83\xbc\x2c\x8a\x8d\x01\xbf\x21\x7e\xa1\x69\xa6\xff\x79\x4e\xff\x9f\xa6\xf9\x7b\x0d\xf0\x0e\x85\x62\x08\x3c\x0e\x94\x83\x29\x82\x57\x1a\xa0\x1c\x9a\x22\x52\x14\xb6\x01\xca\xd1\xb8\x16\x1f\x28\x87\xa6\x88\xc4\x10\x37\x40\x39\xce\x14\x21\x6c\x03\x94\x83\x50\x4c\x0a\xb1\x01\xca\x41\x28\x32\x85\x0d\x50\x0e\x50\x9e\xd7\x04\xe5\xd8\x0c\x03\x6a\x37\x41\x39\x99\x62\xab\xda\x4d\x50\xce\x83\x52\xcf\x9d\xa0\x9c\x9a\x22\x22\x4b\x85\x09\xca\x49\x28\x1e\x1f\x28\x67\xa2\x2f\xdc\x0f\x56\x53\x53\x6c\x2e\x7a\xdf\x49\x28\xce\xc2\x7b\xe8\xd3\x4c\xf8\x4d\x96\x28\x17\xfd\x83\xdf\x14\xbf\xca\xb0\x37\xe1\x37\xc5\x2f\x12\x4e\x13\x7e\x6e\x7c\xa8\xe1\x19\xf0\x73\xe3\xed\xf0\xc1\x6f\x12\x8a\x95\xe7\xc2\x6f\x12\x8a\x95\xe7\xc2\x6f\x32\xc4\x31\x65\x4f\xf8\x4d\x85\x62\x81\xfd\x82\xdf\xba\x78\x5f\xb5\x5b\xf0\x73\xe3\xed\x94\x16\x0b\x7e\x8b\xa1\x90\x14\x5d\xf0\x5b\x5a\xe2\x45\xfa\xbc\xe0\xb7\x12\xec\xf1\xc1\x6f\x69\x8a\x48\x4c\x11\x0b\x7e\x4b\xfc\xac\x89\xf3\x82\xdf\xaa\x0c\x99\xe2\xb2\xe0\xb7\x18\x0a\x8f\x0f\x7e\x6e\x2c\x9d\xf8\x5b\xf0\x5b\xa4\xf2\x79\x2e\xfc\x56\xe7\xdd\x78\x2e\xfc\x16\xf1\x77\x9e\x0b\xbf\x35\x89\x5d\xae\x85\xdf\x62\x89\xc7\x52\x75\xc1\xcf\x8d\x4f\x75\x62\xb0\xe1\xb7\xe1\xc7\x52\x61\xc3\x6f\x13\x7f\x45\xdf\x7c\xc3\x6f\xc3\xef\xb4\x83\xdf\x8e\x7f\x15\x2f\x1b\x7e\x5b\x53\x49\x60\xf9\xb5\xe1\xb7\x59\x22\xb3\xec\xdb\xf0\x73\x63\xd5\x32\x7d\x81\xdf\x66\x2a\xb9\xf5\x1e\x1b\x7e\x6e\x2c\x25\x72\x70\xc3\x6f\x37\xfa\xa7\x5c\xdd\xf0\x73\xe3\xf7\xe3\x19\xf0\xdb\xc4\x1f\xb1\xb1\xe1\xb7\x07\xdf\x8d\x3e\xc3\x6f\x8b\x5f\x88\xdc\x0f\x7e\x6e\x2c\x99\x96\x5f\x1b\x39\x21\xe3\x53\xdd\x2d\x9f\xe1\x33\xee\xd7\xe4\x0b\xf8\x02\x7d\x4e\xf2\x45\x7c\x91\xfb\x65\xf9\x12\x3e\xb1\x8a\x95\xfb\x65\x7c\x9a\x36\x82\xa6\xdd\x8d\x9c\xd8\xc8\x89\x58\xe8\x4b\xc5\xa7\x5c\x2d\x31\xca\x77\xe3\xbb\x19\xe6\x79\x6e\xc3\xc7\x72\x58\x53\xce\x46\x4e\x6c\xe4\x44\x4c\xf4\xb9\xe3\xd3\x58\x97\xc5\x7e\x23\x27\x64\xac\x84\x4c\x5f\x26\xbe\x49\x9f\xe9\xcb\xc2\x47\xac\xe9\x9b\x6f\xe4\xc4\x46\x4e\x24\xc5\xc6\x46\x4e\xc8\xf8\x72\x1d\x1f\xfc\x24\x27\x4a\x48\x7a\x06\x72\x42\xc6\x52\xd1\xf4\xb7\x91\x13\x32\x96\x93\xa6\xb5\x8d\x9c\xd8\xc8\x89\x6c\xdc\x0f\x7e\x19\x7e\xca\xd5\x8d\x9c\xd8\xc8\x09\x96\x5f\x1b\x39\x21\xe3\x7d\xe1\xb9\xf0\x93\x9c\x48\xc1\xc4\x0a\x39\xb1\x8f\x9c\x38\xcf\x85\x9f\xe4\x44\x0e\x92\x40\x1b\x39\xb1\x91\x13\x41\xcb\x8c\x8d\x9c\x90\xf1\xe7\xd2\x3f\xf8\x49\x4e\xa4\xd8\xb8\x1f\xfc\x90\x13\x35\xd2\x17\xf8\x65\x72\x55\x63\xc4\x46\x4e\x6c\xe4\x44\x28\xf8\xe0\x57\x4e\xfc\xa9\xcf\xc8\x09\x19\x2b\x8d\x38\x45\x4e\x6c\xe4\xc4\x4d\x0c\x21\x27\x36\x72\x22\x06\x7c\xf0\x43\x4e\xc4\xaa\xbe\x20\x27\x64\x7c\xf9\x45\x3b\xf8\x21\x27\x4e\x8c\x23\x27\x36\x72\x22\x44\x9e\x0b\x3f\xc9\x89\x72\x5f\x62\x85\x9c\xd8\xc8\x89\xd8\xae\x5f\x9e\xee\x37\x6a\x43\xc6\x57\x53\x74\x0b\xbc\xe5\x84\x27\xb7\x06\x2f\x6a\x03\x05\xbc\x51\x1b\x1b\xb5\xc1\xd0\xb0\x51\x1b\x1b\xb5\x11\x09\x77\xd4\xc6\x46\x6d\x24\xad\x60\x36\x6a\x63\x1f\xb5\x41\x4a\xa1\x36\x36\x6a\x23\x68\x48\xda\xa8\x8d\x7d\xd4\x86\x56\xa3\x1b\xb5\xb1\x51\x1b\x91\x50\x44\x6d\xc8\xf8\x33\xb8\x1f\x78\xa5\x36\xf2\xc5\xbb\xa1\x36\x64\x2c\x37\xad\x64\x37\x6a\x43\xc6\x87\x6f\xa5\x05\x6a\x63\xa3\x36\x42\xe0\x7e\xe0\x45\x6d\xdc\x84\x22\x6a\x43\xc6\x3f\x35\xef\x06\x3f\xa9\x8d\x5c\x13\xcf\x80\x9f\xd4\x46\xa9\x99\x77\x83\x5f\x25\xbd\xb9\x16\xb5\xb1\x51\x1b\xc6\xd0\x85\xda\x90\xf1\x50\xd4\x7b\xa0\x36\x64\xbc\xcf\xba\x1f\x6a\x43\xc6\x4a\x25\xcd\x50\x1b\x32\xae\x18\xc4\x0f\xb5\xb1\x51\x1b\xac\xe6\x37\x6a\x63\x1f\xb5\x51\x78\x2e\x5c\x8e\xda\x08\x3c\x17\x2e\x0f\xab\x65\x18\xa0\x36\x64\x3c\xa5\xc4\x0f\xb5\x21\xe3\xc3\x23\xcf\x85\x8b\xd4\x46\x35\xe3\x5a\xb8\xa0\x36\x62\xa1\x1d\x5c\x50\x1b\xad\xf0\x5c\xe2\x4a\x6a\x23\xdd\x52\xc0\x1b\xb5\x21\x63\xa9\x6a\xca\xd9\xa8\x0d\x19\xab\x17\x29\x85\xda\xd8\xa8\x8d\x06\x17\xd4\xc6\x46\x6d\xb0\x13\xb2\x51\x1b\x1b\xb5\x51\xcf\x33\xe0\x87\xda\x48\x0c\xc1\xa8\x8d\x8d\xda\xc8\x91\x76\xf0\x93\xda\x28\x95\xe9\x00\xb5\x21\xe3\xdf\x88\x76\xf0\x43\x6d\xd8\x79\x06\xfc\x50\x1b\x09\x06\xa8\x0d\x19\xab\x76\x89\x29\x6a\x43\xc6\xea\x95\x78\x06\xfc\x50\x1b\x51\xcb\x91\x8d\xda\x90\xb1\xd4\x98\x12\x51\x1b\x32\x56\x2a\x43\x17\x6a\x63\xa3\x36\x32\x7d\x46\x6d\x6c\xd4\x46\x82\x3d\x6a\x43\xc6\xf2\x7d\x71\x2d\xfc\x8e\xda\x38\x3e\xf8\x0d\xf2\xb2\xe9\x3d\x90\x13\x32\xbe\x4c\xc3\x07\x3f\x49\x8c\x12\xb4\xe4\xd9\x48\x0c\x19\x67\xca\x73\xe1\x87\xc4\xb8\x88\x3f\x24\x86\x8c\xc7\x95\xde\x17\x89\x21\xe3\xf1\xcc\x33\xe0\x37\x4e\xfc\x89\x01\x12\x43\xc6\x99\x72\x3f\xf8\x8d\xa3\xd6\x78\x0f\xf8\x8d\xb3\xc4\xe3\x5a\xf8\x21\x31\x72\x50\x3b\x24\x86\x8c\xe7\xb9\xfa\x82\xc4\xd8\xf3\xe4\x2f\x3e\xf8\x21\x31\x32\xe3\x15\x12\x63\x23\x31\x6e\xa9\xdd\x8d\xc4\x90\xf1\xa5\x39\xd7\xc2\x6f\x9e\x5d\x28\x7c\xf0\x9b\x8c\x6b\x97\x62\x08\x89\x21\x63\xf9\x22\x7f\x91\x18\xfb\x48\x0c\xa6\x71\x24\x86\x8c\x95\x33\xb5\x23\x31\x64\xfc\x5b\x2a\xd6\x90\x18\x32\xbe\xcc\xd0\x37\x42\x62\xec\x23\x31\x98\xd6\x90\x18\x1b\x89\x51\xb5\x5b\xba\x91\x18\x32\xfe\x6e\xfa\x1e\x48\x0c\x19\x5f\x16\xa8\xcf\x48\x8c\x8d\xc4\xb8\x99\xc6\x91\x18\x32\x9e\x47\x7a\x2e\x12\x63\x1f\x89\xc1\x94\x88\xc4\x90\xf1\x6f\xa9\xf7\x45\x62\xc8\x58\xbd\x58\x8e\x20\x31\x64\xac\xb0\x93\xb9\x91\x18\xfb\x48\x0c\xf2\x08\x89\x21\x63\xa9\x26\x9e\x0b\x3f\x24\xc6\x59\xca\x20\x31\x64\xac\x64\xa6\x7b\x24\xc6\x3e\x12\xe3\xf4\x19\x7e\x48\x8c\x18\x79\x06\xfc\xd6\xe1\x47\x3b\xf8\xad\xb3\x0b\x25\xf6\x48\x8c\x8d\xc4\x38\xcb\x57\x24\x86\x8c\xcf\x79\xba\x1f\x12\x43\xc6\xf2\x95\xe2\xdf\x31\xdd\xa3\x40\xf6\x51\x20\x84\x31\x0a\x44\xc6\x3f\xbf\x10\xa1\x40\x64\xac\x14\xc2\x13\x05\x22\xe3\x2b\x13\x7d\x42\x14\x88\x8c\xaf\x0a\xd5\x7d\x14\xc8\x46\x81\x5c\x0c\xcb\x28\x10\x19\x5f\x3e\xe0\x03\xef\x66\x55\xc3\xab\xa3\x40\x64\xfc\x5a\x7d\x6a\x14\x88\x8c\xa5\xcc\xaa\x10\x05\x22\x63\xe5\x66\x18\x40\x81\xec\xaf\x0a\x84\x76\xe0\x45\x81\x94\xf3\x6e\xe0\x45\x81\x64\x0f\xd9\x76\x49\x81\x60\xac\x6a\xa8\x69\x97\x14\x08\xc6\xaa\xf9\xfb\xb6\x4b\x0a\x04\xe3\xe9\x58\xe5\x8b\xf8\x50\xbb\x95\xfb\x25\x7c\x67\xe3\x85\x6b\x33\x3e\xa9\xb5\xe0\x21\xd6\x2e\x29\x10\x8c\x33\x88\xf2\x55\x7c\x6c\x5c\xdd\xdc\xef\xc6\x77\x0a\x1a\xb4\x6b\xf8\x60\x55\x9b\x7c\x0f\x3e\x86\x42\x5f\x66\xb4\x4b\x0a\x04\x63\xa5\xdc\xbc\xdb\xc0\x27\x56\xf9\xf4\x6f\xe2\xa3\xa0\x71\xda\x2d\x7c\x6c\xfc\x5d\xbc\xef\xc6\xa7\x50\x94\x6a\x6f\x57\x86\x5f\x26\x95\x13\x3e\xf8\xa1\x40\xee\x5b\x7d\xc9\xf0\xcb\x67\x29\x83\x0f\x7e\x14\x34\xb2\x7f\xcb\x76\x65\xf8\x49\x81\x94\x1c\xf1\xc1\x2f\x9f\x25\x9e\xfa\x92\xe1\x27\x05\x52\xb4\x9b\xd1\xae\x0c\xbf\xcc\x54\x7c\x89\x73\x86\x5f\x66\x43\xb9\x89\x55\x86\x9f\x14\x48\xaa\x37\x7d\x86\x5f\x3e\xfc\xc4\x39\xc3\x4f\x0a\xa4\xb4\x4b\x5c\x32\xfc\x50\x20\x57\xe6\x7e\xf0\x43\x81\xd4\x1b\x1f\xfc\x8e\x02\x39\x5c\xe0\x47\x41\x23\x15\xf9\x0a\xfc\xdc\xb0\x02\x68\x57\x01\x9f\x04\x48\x2e\x7a\x6a\x81\x9e\x9b\x60\xc7\x05\x3c\x37\x29\x25\x31\x29\xb0\x43\x7d\x04\xa3\x19\xec\x4e\x31\x83\xfe\x16\xd8\x49\x7d\xc4\x60\x3c\x14\x76\xa8\x8f\x68\x62\x57\x60\x27\xf5\x91\x4f\xcc\x17\xd8\xa1\x3e\xa4\xe8\xda\x55\x60\x27\xf5\x91\x8c\xef\x53\x60\x47\x31\x43\x9b\xc4\xed\x2a\xb0\x2b\x67\xa7\x4f\x31\x50\x60\x57\x58\xc6\x90\x07\x05\x76\xc8\x8b\x48\xbe\x14\xd8\x21\x2f\x2e\xd3\x7b\x54\xd8\x55\x76\xfa\x88\xe5\x0a\x3c\xc9\x8b\xa4\x31\xad\x5d\x15\x7a\x92\x17\x59\x4b\xd2\x76\x55\xf0\x21\x2f\x62\x13\xab\x0a\xbf\x23\x2f\xb2\x62\xaf\xc2\x8f\x62\x46\x6b\x5c\x0b\x3f\xe4\x45\x6b\x62\x50\xe1\xf7\xb5\x98\x41\xff\xe0\xe7\x26\x9e\xe1\xa1\x82\xaf\x9e\x8d\x16\xba\x0c\xbe\xaf\xb5\x0c\x1e\x01\x3e\xa9\x8b\xdc\x4e\xf7\xc0\x47\x2d\x23\x1c\x1f\xf8\x50\x17\x81\xcf\x56\xc1\x27\x75\x91\x02\x61\xf6\x80\x45\xea\x22\xb7\xa6\x57\x7b\xc0\x82\xba\x08\x84\xed\x03\x96\x87\x0d\xa8\xaa\xbe\x3c\x60\x79\xce\x06\x1e\x3e\xb0\xa0\x2e\xc2\xad\xf7\x78\xc0\x82\xba\x08\x51\xfd\x7b\xc0\x22\x75\x91\x22\x61\xfa\x80\xe5\xa8\x0b\xc2\xea\x81\x0b\xea\x22\x32\xf4\x3d\x70\x91\xba\x48\xda\x54\x69\xd7\x03\x97\xe7\xd4\x68\x15\x42\x0f\x5c\x4e\x2d\x83\xa1\xe0\x81\xcb\xc3\xa6\x00\x4c\x1f\xb8\x3c\x67\x53\x85\x67\x10\x56\xcf\xa9\x31\xca\xd7\x09\x2b\x6a\x19\x21\xe9\x7e\x1d\x7e\x52\x17\x49\x9b\xcf\xed\xea\xf0\xeb\x87\x9f\x38\x77\xf8\x9d\x5a\x46\xd6\xf7\xe8\xf0\xeb\xac\xee\xc8\xf1\x0e\x3f\xa9\x8b\xa4\x0d\xe9\x76\x75\xf8\xa1\x2e\x22\xdf\xad\xc3\x0f\x75\x11\xda\x2f\xcf\xf4\xed\xea\xe0\x95\xf8\x48\xf1\xbc\x12\x78\x3b\x25\xc8\x2c\xe4\x1d\xbc\x5f\x4b\x1d\x74\x0b\xbc\x94\x3a\x42\xa6\x0b\xe0\x3d\xa5\x0e\x06\x9f\x0e\xde\x53\xea\x20\xda\x3b\x78\x29\x75\x04\x3e\x4d\x07\x2f\xe2\x23\x30\x2b\x0d\xf0\x0e\xf0\x32\x3b\x0c\xf0\x22\x3e\x02\x88\x06\x78\x29\x75\x9c\x51\x65\x80\x77\x20\x7e\xf9\x0c\x03\xbc\x6e\xce\x9c\x3e\x80\x3b\x4e\xa1\x4d\x1f\x70\x00\x77\x9c\xa5\x1f\x57\x02\x57\xd2\x23\xa9\xa8\xdb\xae\x01\x3d\x49\x8f\xaa\x9d\x99\x76\x0d\xe8\x21\x3d\xb4\x9b\xd9\xae\x01\x3d\x49\x8f\x72\x05\xda\x41\x0f\xe9\x11\xce\x73\xa1\x27\xe9\x91\xe3\xc5\x73\xa1\xe7\xa6\x56\x96\x1c\x03\x78\x47\x79\x5c\xbc\x06\xf0\xa4\x3c\x92\xea\x8f\xed\x9a\xc0\x43\x79\x24\x62\x7d\x02\x4f\xca\xe3\x6a\x0c\xfb\x13\x78\x28\x8f\xc4\x90\x37\x81\x27\xe5\x51\x23\x53\xe1\x04\xde\x3c\xe7\x2f\xf4\xc1\x27\xf8\xa4\x3c\x72\xbc\x68\x07\xbe\xa3\x3c\xc8\xc5\x09\xbe\xc9\x90\x17\xe9\x1f\xf8\xe6\xa9\x53\x0a\xcb\x04\xdf\x3c\xca\x8d\x6b\xc1\xf7\x55\x79\x70\x2d\xf8\x26\x1b\xa6\xe7\xb9\xe0\x73\xe3\x8b\x2f\xb9\xa0\x87\xf0\xb0\x46\x97\xc1\x37\x59\xd9\x99\x28\x4f\xf0\x4d\x16\xce\xac\x60\x16\xf8\x4e\x6d\x23\x09\xd5\x02\x1f\xb5\x0d\x09\xbc\x76\x2d\xf0\x21\x3c\x1a\xb3\xcd\x02\x1f\xb5\x8d\x0c\x82\x05\x3e\x6a\x1b\xc6\xca\x69\x81\x6f\x51\x1b\xca\xf8\xc0\x77\x84\x07\xe9\xbe\xc0\xb7\xd8\x78\x61\x15\xb7\xc0\xb7\x10\x6e\xe4\xd0\x02\xdf\xa2\x36\x44\x94\x2e\xf0\x1d\xe1\x01\x97\x05\x3e\x09\x8f\x5c\x99\x5a\x16\xf8\x24\x3c\x52\x66\xa8\x5d\xf0\x93\xf0\x28\x89\x4f\xb4\xe0\x27\xe1\x91\xb5\x47\xd9\xae\x05\x3f\x09\x8f\x94\xab\xee\xb7\xe1\x27\xe1\x91\x32\x61\xb5\xe1\x77\x94\x05\xab\x89\x0d\xbf\x8d\xf0\x6d\xea\xdf\x86\x1f\xca\x22\x90\x81\x1b\x7e\x52\x16\xa9\xb0\xc2\xda\xf0\x43\x59\x18\xc3\xef\x86\xdf\x86\x1f\x4c\x37\xfc\x4e\x6d\x83\xcc\xdf\xf0\x43\x59\xa8\x8e\xd6\xae\x0d\xbf\x7d\xc2\x4f\xdf\x77\xc3\x6f\x33\xe5\x5e\xf8\xe0\x87\xb2\x88\xa7\x2f\xf0\x93\xb2\x48\x85\x15\xef\x86\xdf\x51\x16\x81\xe7\xc2\x0f\x65\x51\x14\x2f\x86\xb2\x30\x8e\x4a\x25\x17\xdc\xcd\x50\x16\xc6\x51\x29\x6d\xd0\x34\x43\x59\xc8\xf8\x4a\x31\xc8\x17\xf1\xb1\x49\x75\x73\x6d\xc2\x47\xac\xe9\x7b\x18\xca\xc2\x4e\x6d\x43\x0c\x0c\x65\x21\xe3\xa3\x1f\xbe\x8a\xef\x1c\x29\x88\xf2\xdd\xf8\x8e\x0a\xe3\x7e\x0d\x5f\xa3\xce\x47\xbb\x07\xdf\x89\x35\xfa\xdc\xf1\x29\x55\x4b\xe6\xda\x81\x0f\x15\xa6\x79\xc2\x50\x16\x32\x56\xb4\x87\xdf\x0c\x65\x21\x63\xa9\x14\xae\xdd\xf8\xce\x3c\x21\x1f\xca\xc2\xf2\xa9\xa3\xa9\x2f\x28\x0b\x19\x4b\x85\xfb\xa1\x2c\x64\x3c\xee\xc5\x0a\x65\x21\x63\x76\xd3\x67\x94\x85\x8c\xc5\xc6\xa5\xe0\x43\x58\x5c\xa7\x19\xf8\x24\x2c\xa2\x4e\x04\x35\x43\x58\xc8\xc4\x0b\x2a\xe8\x0a\x3b\x95\x0d\x7d\x70\x64\x85\x4c\xce\x5c\x07\x3a\x37\xa1\x5e\x34\x82\x9c\x9b\x54\x25\x79\x0c\x49\x21\x13\x62\xfc\xe5\xbd\xfb\x66\x08\x0e\x19\xff\xc4\xdc\x05\xac\x99\x19\xa4\xe2\x03\x6b\x3e\x43\xa0\xfa\x84\xe0\x90\x31\x6d\xc7\x34\x43\x70\xc8\x04\x9d\x05\x69\x86\xe0\x30\xce\x4f\x21\x11\x0c\xc5\x21\xe3\xc1\xcb\xdd\x80\x5a\x58\xdb\x04\x11\x44\x72\x18\x92\x43\xc5\xd8\x66\x48\x0e\x19\x4b\x15\xfa\x48\x0e\x43\x72\x04\x18\x22\x39\x64\x3c\xb0\x78\x2e\x5c\x91\x1c\x46\xc0\x20\x39\x8c\x82\x47\x6a\xb4\x03\x6d\x39\x3b\x2f\xb4\x83\x2d\x92\xc3\x4e\x9f\xa1\x87\xe4\xd0\xae\x5c\x33\x24\x87\x8c\x07\x96\xe8\x21\x39\xec\x54\x34\xa2\xda\x21\x39\x0c\xc9\x91\x82\xda\x21\x39\xec\xeb\xf9\x29\xbd\x07\x92\xc3\xbe\x56\x34\x94\x0c\x48\x0e\x43\x72\x5c\x17\x3e\xf8\x1d\xc9\x01\x03\x24\x87\xd5\xb3\x73\x8a\x0f\x7e\x5f\x25\x87\xde\x0d\xc9\x61\xa7\xa2\xc1\x77\x43\x72\x18\x15\x8d\x74\xfa\x02\x3f\x69\x8e\xac\x6a\x4d\x33\x34\x87\xd5\x33\xff\xea\xbb\xa1\x39\x8c\xf3\x53\x2a\x5e\x35\x43\x73\x18\x15\x8d\x56\x69\x07\x3f\x34\x47\x96\x1e\x30\x34\x87\x9d\x8a\x06\xec\xd1\x1c\x32\x96\xaa\x16\x93\x86\xe6\x90\xf1\xe4\x17\x3f\x34\x87\x9d\xf3\x53\x0c\x9e\x68\x0e\x43\x73\x84\xa0\x67\xa0\x39\x64\x2c\xdd\xc4\x06\x9a\x43\xc6\xaa\xe6\x5f\x43\x72\x18\x05\x8d\xa2\x65\x89\x21\x39\x0c\xc9\x71\x13\xce\x48\x0e\x7b\x4e\x1d\x92\x76\x60\xe1\xf8\xd4\x09\x03\x24\x87\x9d\x82\x86\x24\x8c\x21\x39\x0c\xc9\x61\x91\x2e\x83\x85\x82\x46\x21\x24\x91\x1c\x32\x96\xee\x46\xff\x08\x2b\x24\x47\xe1\x53\x22\x39\x64\x32\x1f\x08\xc1\x21\x63\xa5\xd2\x63\x04\x87\x8c\x65\x1d\x1a\x6c\x86\xe0\xb0\x23\x38\x98\x51\x10\x1c\x32\x0e\x54\x3d\x46\x70\x18\xe5\x8c\x70\x9e\x0a\x3c\x04\x47\xe5\x6d\x11\x1c\x32\x96\x1a\xf4\x50\x14\xd6\x4f\x39\x08\x1f\xf4\x28\x67\x54\xc6\x11\x14\x85\xa1\x28\x2a\xc1\x82\xa2\x90\xb1\xc8\xec\x6b\x28\x0a\x43\x51\x44\x92\x08\x45\x21\xe3\xa3\x38\xef\x06\x3d\x29\x8a\x7c\x91\xa8\x28\x0a\xa3\x74\x71\x6b\x35\x64\xa8\x07\xfb\x7a\x50\x4a\xf7\x43\x3d\xd8\x39\x28\xa5\x45\xb6\xa1\x1e\x8c\xd2\xc5\xcd\x57\x43\x3d\xc8\xf8\x73\x69\x07\xab\xc1\x01\x46\x18\xa0\x1f\xec\x94\x2e\x18\x72\xd1\x0f\x46\xe9\xe2\x66\x70\x41\x3f\xd8\x29\x5d\xf0\xdd\xd0\x0f\xc6\xe9\x28\x56\x7a\x86\x7e\xb0\x53\xba\xe0\x9b\xa3\x1f\x6c\x9c\xbd\x4d\xbd\x2f\xfa\xc1\x38\x1d\xd5\x98\xe1\xd1\x0f\x36\x4e\xe9\x87\x3e\xc3\xea\x08\x08\xed\xaf\xd9\x38\xac\x14\x69\x67\xb5\x81\x80\x90\x89\x45\x8b\x67\x43\x3f\x18\x95\x0b\xf6\x06\x0c\xfd\x20\x63\x39\xf1\x79\xd1\x0f\x32\xbe\x38\xe0\x5a\xf0\x71\x38\xaa\x91\x1c\xe8\x07\x19\xbb\xf2\xb9\x16\x54\x68\x85\x00\x02\xb4\x82\x1d\xad\x70\xd1\x0e\x54\xf3\x9c\x69\xa4\x2f\xa0\x3a\x5a\x41\x7b\x03\x86\x56\x90\xb9\x2f\xa6\x51\xa4\x82\xcd\xb3\x0b\xac\xaf\x81\x56\xb0\x73\x0e\xea\xa2\x7b\x90\x9a\x67\xa2\x14\x3d\xb4\x82\xcd\x73\x36\x40\xed\xd0\x0a\x32\x56\x8d\x61\x09\xad\x60\x14\x29\xce\xb4\x88\x56\x90\xf1\x69\x82\x76\xa0\x3a\x45\x0a\x5e\x03\xad\x60\xe7\x1c\x54\xcc\x7f\xc7\x3c\x8f\x94\x30\x6a\x18\x31\xe9\xcd\x91\x12\x32\x3e\x13\xd0\x55\xe8\x72\x4c\x8a\x4d\x3e\x43\x4a\xc8\xf8\x1a\x81\xae\x42\x97\x1a\x46\x64\xc9\x87\x94\x90\x89\x67\x92\x43\x49\x18\x25\x8c\xc0\x47\x45\x49\xc8\x58\xbe\x21\x89\x92\xb0\xa3\x24\x02\xd7\x42\xf7\x9c\x92\xe2\x2b\xa0\x24\x6c\xfd\x35\x5d\x94\x84\x51\xc2\xc8\x52\x3a\x86\x92\x30\x94\x44\xe0\x7e\x28\x09\x3b\x35\x0a\x56\x77\x28\x09\xe3\x94\x14\x7b\x9f\x86\x92\x90\x29\x99\x0f\x83\x90\x90\xa9\x91\x29\x04\x1d\x21\x63\x37\xc9\x8e\x8c\x90\xa9\x39\xe1\x02\xdd\x39\x21\xc5\x2a\x13\x15\x21\x63\x09\x55\x62\xa8\x08\x19\xb3\xeb\xb4\x83\x9d\x54\x44\xba\x32\x7d\x83\x1d\x2a\x82\x3d\x00\x43\x45\xc8\x58\xbe\x49\x3a\x54\x84\xa1\x22\x92\x72\x3d\xa0\x22\x64\x2c\xb1\x69\x15\x50\x11\x81\x13\x52\xa1\xe2\x0b\xf8\xc4\xa9\xe8\x19\x01\x15\x21\xe3\x49\x1c\xe4\x4b\xf8\x98\x58\x1b\xed\x32\xbe\xb3\xbf\xde\xe4\x2b\xf8\x14\x66\x3a\x34\xdc\x02\x2a\x22\x70\x42\x2a\x45\x9e\x7b\xe3\xa3\x3e\xa1\xef\x18\x50\x11\x81\x13\x52\x6c\x52\x04\x54\x44\x38\xf5\x89\x44\xbb\x8e\x0f\x15\x71\xd1\x6e\xe0\xa3\x3e\x61\xf8\x26\x3e\x66\xd6\x42\x9f\x17\x3e\xea\x13\x8a\xa9\x80\x8a\x90\x71\xd5\xa9\x76\xa8\x88\xc0\x0f\x2e\x92\xc6\xc5\x80\x8a\x08\xf9\xcc\x17\xba\x16\x15\x11\x38\x21\x85\x02\x0e\xa8\x08\x19\x8f\x33\x71\x41\x45\x04\x4e\x48\xa9\xd4\xd8\x02\x32\x22\xf0\x83\x0b\xe6\xb8\x80\x8c\x08\xe7\x07\x17\x89\xbe\xc0\x2f\xb3\x19\x1a\xf0\xc1\x4f\x3a\xa2\x9a\xd4\x64\x40\x48\x04\x4e\x48\xe9\x54\x57\x0b\x48\x89\x70\x7e\x70\x51\xe8\x1f\xfc\x54\x9f\xc8\x76\xee\x07\xbf\xcc\x51\x01\xad\x42\x02\x72\x41\xc6\x4a\x0e\xf8\xe0\x97\xd9\x31\xb9\xb8\x1f\xfc\xf2\x39\x2a\x20\xf6\xc8\x85\xc0\x09\x29\x1d\xb5\x68\x01\xbd\x10\x38\x21\xa5\x1f\xd4\xb4\x80\x60\x08\xe7\x84\x94\xe6\xfe\x80\x60\x08\xe7\x07\x17\x01\x1f\xfc\xce\x09\x29\xb8\x20\x18\x64\x2c\xfb\xe7\x7d\x10\xcf\x8f\xe4\x55\x6b\xee\x10\x93\x47\x22\xc9\xa2\x7e\x24\xf3\x20\x83\x1e\x16\x9d\x3e\x5a\x3c\x2c\x39\x1f\x3b\x55\x49\xf7\x28\xe3\x31\x2a\xf2\x3f\x24\x3c\x46\x63\xdb\x43\xbe\x3f\xca\x3b\x55\x23\x1f\xb2\xee\x09\x7e\x67\xa9\xd1\x27\x70\xe7\xe0\x6d\xb4\x44\x7d\x22\x6d\xa2\xb7\x49\x3e\xe0\x3c\x91\x36\xb1\x4b\xdb\xf9\x55\x51\xab\x9a\x27\xfa\xa2\x25\xfb\x10\xfc\x24\xae\x4a\x7e\x55\xf6\x68\x7c\x12\x57\x25\xbf\x73\xf1\x78\x7a\x32\x6d\xb2\xb7\xa9\x2e\x24\x9f\x4c\x9b\xec\x6d\x6e\xf3\xab\x0a\x6d\x8a\xb7\x69\x2e\x11\x9e\x42\x9b\xe2\x6d\x9a\x8f\x45\x4f\xa5\x4d\x15\x9f\xcb\x75\xd3\x53\x69\x54\x35\xc4\x98\xcb\x8d\xe7\xa6\xd5\x0d\x45\x0f\x8e\xe7\xa6\xd5\xbd\x01\xeb\x17\x36\x5a\x35\xb5\xd2\xfe\xfc\xd3\x68\xd5\xce\x70\xe5\x17\x3e\xb4\x7a\xea\xd9\x47\x72\x17\xad\x1e\xb5\x2a\x97\x5f\xd8\x69\xd5\x11\x0b\x9e\xa6\x4f\xa7\x55\x57\x2b\xed\x4f\x3f\x83\x56\x43\xad\xee\x6c\xee\xa2\xd5\xd0\xa0\xd9\xcc\x2f\x1c\x1a\x33\x31\x21\xb9\xce\x7a\x26\x17\x4e\x7d\xbc\xcb\x67\xaa\x67\x72\xe1\x54\xab\xcb\x07\xcc\x87\x5f\xb2\x3d\xfa\xc5\x47\xd0\xf1\x8a\x87\x1f\x7c\x3c\x3a\xa1\x1a\x74\xca\xe1\xe1\x80\xea\xa3\x93\x5a\x21\x86\x5f\x3e\x46\xff\x70\x8e\xeb\xd1\x79\x91\xa0\x63\x39\x0f\xc7\x45\x9e\x7d\xfa\x18\xde\xbc\xed\x94\x9d\xbb\x6a\x34\x41\x23\x6e\xa7\x44\xd3\xb5\x87\x14\xb2\xcb\x91\x4e\x16\x74\x05\x78\x28\x2e\xaa\x3a\x11\xde\x89\x55\x95\x33\x3b\xc1\xda\x09\xd6\xea\x19\xdf\x89\xd6\xae\x68\x0d\xb7\x07\x70\x27\x5c\xbb\xc2\x35\x34\x9f\x47\x3a\xf1\xda\xa3\x62\x5a\x4b\xd5\x4e\x78\x76\x85\x67\x34\x67\xd7\x89\xcf\x9e\x88\x7c\x67\xd7\x09\xd0\xae\x00\x8d\xfa\xc1\x41\x27\x42\xbb\x22\x34\x4a\x3b\x76\x42\xb4\x2b\x44\x63\xf2\x15\x78\x27\x46\xbb\x62\x34\x26\x87\xd3\x09\xd2\xae\x20\x8d\xb9\xde\xee\xa2\x95\x82\x34\x16\x9f\x92\x3b\x41\xda\x15\xa4\x51\x3f\x3b\xec\x04\x69\x57\x90\xc6\xea\x13\x54\x27\x48\xbb\x82\x34\xde\xbe\xf6\xe8\x04\x69\x57\x90\xc6\x96\xfd\x42\x82\xb4\x2b\x48\x93\xb6\xb2\x3b\x41\xda\x15\xa4\x49\xe7\xd3\x3a\x41\xda\x15\xa4\x49\x7b\xf9\x9d\x20\xed\xdd\xd7\xfb\x49\xf2\xab\x77\x2d\xf7\xbb\xe2\x36\x49\xaa\x77\xe2\xb6\x2b\x6e\xa9\x14\x75\xe2\xb6\x2b\x48\x53\x12\x1c\x82\xb4\x2b\x48\x53\x16\x1c\x82\xb4\x2b\x48\x93\xaa\xe1\x9d\x20\xed\xfa\x69\x60\x2a\x82\xc3\x2f\x03\x31\x49\x3b\x97\x9d\x1f\x06\x76\x85\x72\x92\xa0\xec\x84\x72\x57\x28\x27\xfd\xc4\xa9\x13\xca\x5d\xa1\x9c\x6e\x5f\x92\x76\x62\xb5\x2b\x30\xd3\xed\x63\xfb\x20\x30\x87\x02\x33\xa9\xee\x38\x08\xcc\xa1\xc0\xcc\x57\x4e\x6f\xde\x0e\x02\x73\x28\x30\xb3\x8e\x6d\x0f\x02\x73\x48\x3a\x67\xd5\x9e\x07\xca\x79\x28\x56\xb3\x4e\xbd\x0c\x62\x75\x28\x56\xb3\x96\xfc\x83\x58\x1d\xc1\x95\x50\xd6\xd1\xf3\x11\x24\x84\x30\x59\xda\x6d\x04\xe9\xa0\xa1\x88\xce\x49\xb7\x27\xa2\x47\xf4\xa9\x89\x9f\xe4\x8d\xa8\x99\x69\x28\xc8\x73\x72\x12\x83\x20\x1f\xd1\xc5\x6b\xce\x41\x2e\x69\x57\x4c\xd6\x06\xfd\x88\x92\xae\x98\x2c\x05\x3e\x34\x8c\xbf\x1d\xca\x8e\xac\xfd\xbc\x41\x76\x8c\xe4\x13\x7d\xd6\xce\xef\x48\x9a\xe7\x31\x59\xcb\x8b\x91\x34\xcd\x0f\x86\x78\xfd\x56\x62\x90\x43\x43\x39\xc4\xaf\xbc\x06\x39\x34\x94\x43\xb9\xfa\x6c\x31\xc8\xa1\xa1\x1c\xca\x92\xa7\x83\x1c\x1a\x85\xe9\x22\xc6\x37\x6f\x07\x41\x3e\x9a\xaf\xae\xd8\x09\x1a\x4d\x8b\x2b\x4c\xf1\x89\x70\x34\x2d\xad\x46\x2b\xfd\xdd\xab\xe8\xa0\xd8\x68\xda\x0a\x1b\x4a\x8e\xa2\x33\x84\x83\xe4\x18\xcd\x67\xa9\xa2\xb3\x0c\xa3\x49\x73\x63\xca\x15\x71\x6d\xb9\x7c\xe9\x5f\xae\x5b\xb7\xd7\xca\x7f\x28\xab\x8a\x7e\xc6\x33\xc8\xaa\xa1\xac\xe2\x9c\xca\x20\xab\xc6\xe3\x73\x6f\x09\xbe\x94\x1b\x8f\x26\x5f\x4c\x91\x2e\x1a\x8f\x66\xdf\xa1\xdc\x63\x8f\x72\x90\x7b\x43\xb9\xc7\x06\xd8\x20\xf7\x46\xa7\x95\x4f\x6f\x83\x44\x1b\x4a\xb4\xa2\xdf\x68\x0c\x12\x6d\x0c\xe6\x52\x9f\xde\x06\x89\x36\x94\x68\xa5\xf8\xf4\x36\x48\xb4\xa1\x44\x2b\xc5\xa7\xb7\x41\xa2\x0d\xa5\x10\x87\x38\x07\x29\x34\x94\x42\xe5\xf6\xe9\x6d\x90\x42\x43\x29\x54\x74\x84\x78\x90\x42\x43\x29\x54\x2f\x9f\xde\x26\x29\x34\x95\x42\x9c\x64\x9a\xa4\xd0\x54\x0a\x55\xfd\x9c\x69\x92\x42\x53\x29\x54\xf5\x4b\x80\x49\x0a\x4d\xe5\x4b\xd5\xc9\xe8\x49\xbe\x4c\xe5\x4b\x4d\x9e\xed\x93\x7c\x99\xca\x84\x9a\x7c\xa1\x3a\xc9\x84\x19\x59\x30\xf8\x1a\x7c\x12\xf6\x53\xd1\x5b\x15\x13\x93\xe8\x9d\x8a\xcb\xaa\x9f\xe3\x4d\xe2\x72\x2a\x2e\x6b\xbd\xfd\x42\xe2\x72\xb2\xf8\xb8\x7d\x66\x9a\xc4\xe5\x54\x5c\xd6\xe6\x01\x3d\x89\xcb\xa9\xb8\xbc\x2f\x9f\x99\x26\x63\xfb\x2c\x43\x92\xdc\x67\xa6\x59\x94\xb4\x98\x5b\xe7\x6c\x66\xd1\xde\xc5\x2c\xac\x64\x9c\xea\x64\x06\x98\xb5\x36\x77\x35\xb9\xb4\x3d\x89\xb9\xef\xbb\xc9\xd5\x71\xf9\x85\xce\xeb\x97\x66\xe2\xc9\x34\x32\x35\x8d\xdc\xaa\x3d\x4f\xa6\x91\xa9\x69\xe4\xd6\x89\x82\xc9\x34\x32\x35\x8d\xdc\xc9\x87\xfe\x49\x86\x4d\x65\xca\x9d\x3d\x79\x26\x99\x32\x15\xf0\x77\xf6\x41\x6a\x12\xf0\x53\x01\x7f\x97\xe2\xdd\x26\xe0\xe7\x33\xdd\xa5\x5f\x18\xcc\x47\x3b\x0b\x98\x5b\x9b\x8c\xf3\x59\x5c\xa8\x7b\xe9\xb4\xd0\x24\xe0\xa7\x02\xfe\xbe\x7d\x60\x99\x04\xfc\xec\x4f\x11\x82\x28\x57\x95\x4b\x17\xde\xcd\x5b\x91\x03\x53\x39\x70\x37\x9f\x20\x26\x39\x30\x95\x03\xed\xf2\xd9\x73\x92\x03\x53\x39\xd0\x94\xae\x93\x1c\x98\xd3\x75\x6a\x53\x11\x75\x4e\xc9\x54\x4c\xbb\xd4\xaf\x29\x95\x3a\x95\x29\x4d\x27\x44\x26\x99\x32\x95\x29\x4d\x87\x50\x26\x99\x32\x95\x29\x4d\xc7\x66\x26\x99\x32\x95\x29\x2d\xf9\x04\x31\xc9\x94\xa9\x4c\x69\xfa\x05\xff\x22\x53\x96\x32\xa5\x95\x2b\xbb\x4b\xad\x96\x32\xa5\x95\x72\xbf\x79\xbb\xc8\x94\xa5\x4c\x69\xfa\x9d\xd4\x22\x53\x96\x32\xa5\xe9\x0c\xed\x22\x53\x96\x32\xa5\xa9\x62\xbb\xc8\x94\xa5\x4c\x69\xaa\x57\x2c\x32\x65\x45\x96\xc4\x97\x0f\xbb\x8b\x54\x59\x4a\x15\xbb\xb4\x99\xbb\xc8\x95\x95\x68\xa7\xc3\x11\x8b\x64\x59\x89\x76\xda\x42\x5d\x64\xcb\xca\xb4\xd3\x61\x8b\x45\xba\xac\x4c\xbb\xe4\x43\xe1\x22\x5f\x56\xa1\x5d\x76\xd9\xb1\x48\x98\x55\x68\x57\xcc\xaf\x25\x17\xd6\x59\xb2\x57\x97\xf1\x8b\x38\x5e\xac\xd9\x2f\x15\xb8\x16\x81\xbc\x58\xb4\x5f\xda\xc9\x58\x44\xf2\xba\xb5\xb7\x7e\x35\x97\x83\xeb\xd6\xde\xfa\x62\x25\x7f\x35\x5f\x7a\x2c\xc2\x7b\x35\xd5\x17\x4c\x47\xa9\x56\x53\x7d\x61\xb1\xbc\xb7\xab\xfa\xb5\xc4\xfc\x62\x7d\x6f\x97\x87\xe0\x22\xe8\x17\x0b\x7c\xd3\xa1\x8c\x45\xd4\xaf\xe7\x68\x0a\x9f\x59\x16\x01\xbd\xba\xe4\xaa\xe9\xf7\xca\xab\x4b\xae\x2e\x96\xfd\xa6\x42\xf6\x22\xca\x57\xd7\x36\x90\x69\x9b\x61\xf5\x7d\x7c\x9c\x67\xf0\x34\x5a\x5d\xdb\x40\x0b\x7d\x60\xc9\x03\x7d\x11\xfb\x0b\x81\x60\xc9\x43\x71\x11\xfc\x6b\x68\xc3\xcf\xb2\xc7\xe2\x1a\xda\xf0\xc3\xf8\xbb\x45\xf9\xb6\x7c\xdc\xaf\xb8\xa4\x5a\x64\xc9\x9a\xdc\x4f\x3f\x86\x5c\xa4\xc9\x9a\x2a\x12\x98\x7e\x59\xb1\xa6\x8a\x04\x6b\x72\x6d\xf5\x6c\x5d\x64\xc5\xe2\xf7\xe3\x76\x2b\x94\x49\x8b\xc5\x0f\x10\xed\x56\x2c\xf3\x03\x44\x8c\x05\x2d\xdf\x16\x3f\x40\x5c\xfc\x30\xce\x34\xbe\x2e\xf2\x67\xf1\x0b\x11\xd3\x2f\x21\x16\x09\xb4\x38\xbe\x1a\x2e\xff\xbe\x9b\x0c\xda\x1c\x8d\x0c\x66\xb7\xfb\xb4\x24\xc1\x78\x9f\x9b\x7c\x55\x3e\x44\x9e\x4e\x3e\x6f\x52\x6d\x73\x84\x25\xe8\x87\x6c\x9b\x23\x2c\x18\xff\x46\x26\xdf\x90\x8f\xe7\x6a\x1d\xb7\xc9\xc9\x4d\x7d\x30\xe8\x9c\xd8\xa6\x3e\xb8\xa9\xc9\x05\x4d\xdb\x9b\x9a\x1c\xc6\x42\xd1\x73\xa9\xc9\xed\x23\xdb\x55\x9e\xd8\x24\xf4\x66\xeb\x2b\xa8\x76\xb7\xc9\xe8\x1d\x54\x1f\x0c\xda\x6e\xda\x41\xf5\x41\x8c\x85\xea\x31\xb9\x83\xea\x83\x3b\x70\x3f\xfd\xca\x68\x93\xfa\x3b\x68\xfb\x3f\x24\x97\x02\x3b\x68\xfb\x7f\x07\x9e\x91\x3d\x17\x36\xe3\xc1\x8e\xaa\xbf\x85\x7c\xcb\xa7\xfa\xdb\x66\x8c\x08\xd2\x1f\x9b\x31\x62\x33\x46\x84\xe2\xd3\xf5\x66\x8c\xd8\x49\xdb\x16\x41\x5b\x5a\x3b\xa9\xce\xb9\x19\x37\x82\xea\xbb\x9b\x71\x63\x27\x95\x63\xc2\x2d\x2e\x49\xe5\x18\x8c\xf7\xa5\xc8\xc7\xb5\xda\x26\x0c\x77\x50\x3b\x0d\xc0\x9b\x31\x27\xe8\x08\xea\x66\xcc\xd9\x8c\x39\xa1\x5d\xce\x80\x31\x67\xe7\xd3\xce\x17\x43\x9b\x31\x67\x17\x7d\xa3\x78\x15\xe7\x52\xf8\x46\x32\x7e\x2d\xbe\x24\x1f\xd2\xfe\xf2\x35\xec\x66\x6c\xda\x8c\x4d\xd1\xf4\xcd\x19\x9b\x36\x63\x53\xd4\x7a\x6e\x33\x36\x6d\xc6\xa6\xa8\x7d\xfd\xcd\xd8\xb4\x19\x9b\xa2\xce\x0b\x6e\xc6\xa6\xcd\x38\x14\x75\x84\x7c\x33\x0e\x6d\x0d\x3d\x16\xf3\xdf\x16\xbe\xeb\xdf\x4e\xe8\xbb\xa9\xe0\xb9\xcf\x1e\x84\x0a\x0b\x9b\x41\x6a\x37\xd5\x74\xa2\xf6\xfc\x76\x53\x4d\x07\xe3\xed\xb2\x7c\x19\x5f\x56\x59\x5f\x70\x9b\x6a\x3a\x18\x43\x68\xee\x36\x78\x86\x8a\x21\xb1\x28\xe8\x9a\x8a\x21\xbb\x4d\xae\x4d\xe1\xbf\x75\xd4\xff\xff\x87\xe7\xd3\x9b\x9f\xff\x5d\xa0\xf1\xd3\xe7\xcf\xeb\xc3\x17\xfd\x1b\x44\xfa\xc7\x7f\x5e\x73\xed\xf7\x1f\xd6\xcf\xff\x9e\xd1\xa7\x8f\x9f\xfc\x2a\xfd\xf7\x9f\x01\x00\x00\xff\xff\xa1\xe9\x79\xf8\xfb\x48\x00\x00"); -func _edc ()([]byte ,error ){return _dc (_bdf ,"Adobe-GB1-4")};var _gefc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9c\x4d\xaf\x26\xbb\x71\xdf\xf7\xe7\x53\x3c\x4b\x67\xe1\xdc\x26\x9b\x2f\xdd\xc0\xe0\x00\x8e\x6c\xc3\x42\x60\x27\x88\xf2\x06\x04\x59\x34\x59\x45\x61\x00\xdf\x99\xc1\xdc\xd1\x42\xdf\x3e\xa8\xff\x8f\x47\x4a\x14\x03\xba\x0b\xa1\x34\x75\xc9\x6e\xf6\xbf\xab\x48\xfe\xba\xf8\x9c\x9f\x7e\xf3\xdb\xbf\xff\xed\x97\xcf\x3f\x5e\x3f\xfd\xe7\xef\x5f\xe7\xef\xfc\xc7\x6b\x7d\xfe\x62\xdf\xfd\x97\xaf\x7f\xf8\x3e\xfd\x35\xfc\xf7\x9f\xbf\xbc\xbd\xa5\xfc\xb2\xcf\xf3\xc7\xc7\x3f\x65\xe6\xcf\xcf\xb7\xb7\xb7\xe8\xff\xbb\x3f\xfe\xf2\xc3\x7f\xfe\xed\x97\xf5\xf5\x75\xd2\xce\xfe\xf0\x6d\xb7\x7d\xbd\x7e\xfa\x2f\xfe\xfb\xcf\xbf\xfc\xf8\xfe\xc7\xd7\xdf\xfc\x9d\x7d\x1d\xfe\xef\x5e\xe6\x2b\xfc\xff\xe9\xbb\xf9\xf7\xcf\x5f\x7e\xff\xfa\x9b\xdf\xfc\xcb\xef\xd2\x9f\xdc\xbf\xfb\xc3\xb7\x6f\xff\xea\x3f\xfb\x97\x1f\xaf\x24\x9f\x7f\x31\xd9\xb7\x9f\x7e\xf3\xcf\xcf\xb7\x7f\x79\x7e\xf6\xd7\x4f\xff\xf4\x1f\xed\x5f\x9f\xbf\xfd\x0f\xf5\x6f\xff\x49\xff\x49\xff\xe5\xbf\xfb\xf7\x5f\x3e\x7f\xfd\xf2\x4a\xff\xfe\x38\xda\x9f\xdd\xff\xf5\x8f\xdf\x7c\x5f\xe9\xed\xa7\xff\xf9\xdf\x7e\xfb\xf7\xaf\xff\x95\x5e\xe9\x78\xe5\x5a\x73\xfa\xdf\xdb\xff\x3f\xfe\xf9\xab\xf9\xeb\xe0\x5f\x99\xb1\xcf\xaf\xe6\xbf\x7c\x7b\xa6\x7f\x7f\xbe\xfc\xde\xdf\x5e\xaf\x4f\xc7\xf1\xfe\x7a\xbd\x3e\x5d\xc7\x7b\xfc\xeb\xef\x52\x39\xde\x5f\x9f\xfe\xf1\x1f\xfe\xf1\x1f\xde\x63\x90\x7f\xd1\xfe\x2d\x71\x99\x2f\x5f\x7f\x98\x2f\x7c\xba\xc2\xa7\xb4\xde\x5f\x29\x7a\xfc\xdf\xff\xe9\x2d\x1d\xc7\xbe\xef\x67\xdb\xad\x73\xb4\xee\x1e\xad\x3f\x3d\xdc\xed\x49\xf5\x7a\x7f\xdd\x77\x38\xea\x8d\x63\xbe\xbf\xd2\xd9\xcb\x29\x9f\xc9\xa7\x4e\xf9\x0a\xcf\x93\xe4\x59\xf5\xfd\x95\x5a\x0e\xcf\x6a\x78\xda\xfb\x2b\x17\xb5\x59\x1d\x4f\x0f\x4f\x97\xe7\xc2\xe3\xe1\x89\xbb\x65\x6e\x9f\xe3\xca\xb9\xb6\xf0\x70\xe5\x1c\x6d\xce\x14\x6d\x4e\xda\x9c\xd1\xa6\xa4\x18\xcf\x49\x9b\x73\x8c\xf7\x57\xe9\xd1\xeb\x1c\x86\x67\xbd\xbf\xea\x11\x6d\x0a\xbd\x4a\xf4\xaa\x77\x0d\x0f\xbd\x4a\x5c\xb9\xd5\x18\x61\xa5\x4d\x8d\x36\xbd\xc6\x53\x54\xda\xd4\x68\x73\xa5\xe8\xd5\x68\xd3\xa2\xcd\x7d\xc4\x78\x1a\x6d\x5a\xb4\xb9\x7b\xf4\xea\xb4\xe9\xd2\xe7\x68\x31\xa0\x4e\xa3\x1e\x8d\x52\xca\xd1\xef\xa2\xd5\x85\x8a\x39\x06\x79\xd1\xea\x5a\x08\x1b\x1d\x6f\x5a\xdd\x6a\x75\x5e\x47\xb8\x68\x75\xab\x55\xd1\x1b\x79\x68\xf5\xa8\x55\x3d\x43\xdc\x87\x56\x8f\x5a\xb5\x23\x3a\x0e\x5a\x0d\xb5\x6a\x77\x09\x17\xad\x86\x5a\xf5\x1a\x1d\x27\xad\xa6\x5a\x5d\x35\xa2\x62\xd2\x6a\x2e\x7b\x7f\xa5\x3b\x45\xc7\x19\x3d\xb6\xc9\xe5\x8c\x56\x46\x47\xd3\xcb\x3b\x8e\xb8\x96\xd1\xd1\xd4\xea\xe8\x31\x08\xa7\x95\xab\x55\x6a\x71\x2d\xa7\x95\xab\x55\xce\xd1\x71\xd1\x6a\xa9\xd5\x99\xe3\xf2\x8b\x56\x6b\xae\x70\x5d\xd1\x71\x19\xad\xf6\x20\xf2\xdb\xa7\x71\xa8\xe3\x38\xd4\xb1\xf4\x3b\x5c\xea\x38\x0e\xb5\xaa\x25\x5a\x11\xe6\x43\x11\x9c\xdb\xd9\xc2\x45\x2b\x82\xb1\x45\xec\x0f\xa2\x71\x10\x8d\xfd\x3e\xc3\x45\x2b\x85\x63\xbe\x22\x42\x07\xf1\x38\x14\x8f\xf9\xae\x47\xb8\x68\x75\x2a\x68\x8f\x88\xd1\x41\xfc\x0d\xc5\xdf\x99\x42\x9c\x41\x00\x8e\x42\x68\x87\x38\x83\x08\x1c\x8a\xc0\x33\x87\x38\x83\x10\x1c\x0a\xc1\xf3\x0c\x71\x06\x31\x38\x14\x83\x67\x09\x71\x06\x41\x38\x14\x84\x67\x09\x71\x06\x51\x38\x14\x85\x67\xed\x57\xb8\x68\xa5\x28\x3c\x5b\x89\x8e\x44\xe1\x50\x14\x9e\xfd\xac\xe1\xa2\x95\xa2\xf0\xec\x77\x74\x24\x0a\x87\xa2\xf0\xbc\xee\x90\x90\x28\x1c\x8a\xc2\xf3\xae\xd1\x91\x28\x1c\x8a\xc2\x72\x44\x42\x0f\xa2\x70\x28\x0a\x4b\x4a\xd1\x91\x28\x1c\x8a\xc2\x92\x8f\x90\x90\x28\x1c\x63\xf6\x70\xb5\xe8\x38\xe6\x25\x97\x3a\x9e\x91\x68\x83\xc0\x1c\x0a\xcc\x72\x4a\x1c\x02\x73\x28\x0a\x4b\x91\x38\x44\xe1\x50\x14\x96\x2a\x71\x88\xc2\xa1\x28\x2c\x55\xe2\x10\x85\xc3\x6b\x7a\x7f\x95\x26\x71\xbc\x66\x5c\x59\x77\xc4\x75\xca\xa5\x6b\xb5\x3b\x86\x4a\xac\x0e\xc5\x6a\xe9\x25\x5e\x1a\xb1\x3a\x14\xab\xe5\x3a\xe3\xf2\xc4\xea\x50\x60\x96\xeb\xee\x6f\x9f\x26\x81\x39\x15\x98\xe5\xbe\x53\xb8\xd4\x6a\x2a\x30\xeb\x51\xcb\xdb\xa7\x49\x60\x4e\x05\x66\x4d\x31\x6f\x4e\x02\x73\xa6\xe7\x79\x7f\xd5\x9c\x92\x5c\x43\x2e\x75\xcc\x39\xbf\x7d\x9a\xc4\xea\x54\xac\xd6\x33\x54\x9d\xc4\xea\xcc\x33\x3a\x9e\xa1\xea\xcc\x73\xe0\x1a\xea\x98\xe4\x9a\x72\xe9\x5a\x45\x97\x27\xa2\xe7\xd9\x8e\x70\xc5\x74\x3e\xcf\xa6\x6b\x29\xc8\x6b\x09\x25\x26\x41\x3e\xcf\x71\xbd\xbf\x6a\xcd\x72\x8d\x1b\xd7\x1d\xae\xaa\x6b\x8d\x07\xd7\x23\xd7\x21\x97\x06\xa1\xec\xa8\x35\xe6\xd9\x49\x76\xcc\x52\xeb\xfb\xab\xb6\x1c\xad\x4a\x6d\xb8\x9a\xee\x58\xe5\xea\x72\x69\x10\xad\xa8\x23\x83\x50\x0e\xd5\x76\x85\x8b\x1c\x9a\xca\xa1\xda\x63\x39\x98\xe4\xd0\x54\x0e\xd5\xeb\x0c\x25\xc8\xa1\xd9\x58\x0f\xce\xf3\xed\xd3\x24\xc8\xe7\x5d\x62\xf4\xb7\x9e\xf1\x2e\x0f\xae\xe7\xfd\xd5\x62\xa5\x9b\x77\xd1\xe0\xef\x36\xde\x5f\xed\x90\xce\x77\x93\x82\x4a\x8e\x76\x94\x43\xcb\xf4\xc7\xf2\xfa\x6f\xad\xb8\x93\xdc\x99\x77\xac\x52\xed\xa8\x31\x9e\x7b\x38\x2e\x5d\xe4\xc4\xb5\xe4\xf2\x19\xae\x4b\x77\x77\x93\x4b\x6b\x56\x8a\x6c\x9d\x24\xdd\x54\xd2\xb5\x54\xe3\x41\x48\xba\xf9\xc4\xda\xdb\x72\x8a\x31\x3e\x5a\x7c\x31\x2d\x45\x8c\xce\x47\xab\xef\x54\x6a\xb6\xf3\x08\xe9\x48\xcd\xa9\xd4\x6c\x4a\xba\x49\x6a\xce\x41\xab\x58\xde\x26\x79\x38\x95\x87\xad\xc4\xf2\x36\xc9\xc3\x39\x59\x4b\x63\x79\x9b\xe4\xe1\x54\x1e\xb6\x16\xcb\xdb\x24\x0f\xa7\xf2\xb0\xb5\x58\xde\x26\x79\x38\x95\x61\xad\xc7\xf2\x36\xc9\xb0\xa9\x0c\x6b\x57\x2c\x6f\x93\x0c\x9b\xca\xb0\x76\xc7\xf2\x36\xc9\xb0\xa9\x0c\xeb\x47\x2c\x6f\x46\x86\x99\x32\xac\x1f\xb1\xbc\x19\x19\x66\xca\xb0\x9e\x62\x79\x33\x32\xcc\x94\x61\x3d\x47\x8c\x1a\x19\x66\x4a\xa7\x7e\xc6\xf2\x66\xa4\x93\x29\x9d\x7a\x89\xc9\xc0\x48\x27\x53\xa2\xf4\xd2\xa3\x23\x89\x62\x27\x1b\x86\x56\xc3\x45\x2b\x05\x77\x57\xc8\x18\xc1\x6d\x0a\xdb\xde\x23\x5b\x8d\xb0\x35\x85\x6d\xef\x57\x74\x24\x6c\x8d\xcd\xc7\x15\x0b\x97\x11\xb6\xa6\xb0\xed\x77\xc4\xbb\x11\xb6\xa6\xb0\xbd\x8e\x58\xb8\x8c\xa9\xdf\x5a\xe4\xf4\x75\xc4\xc2\x65\x4d\x39\x8d\xb9\x7a\x44\x8e\xb5\x69\x72\xb1\x93\x09\x55\x8d\x05\xc2\x7a\xbf\xc3\x75\xcb\xd5\x1f\x5c\xcf\xfb\xeb\xba\xae\x5b\xae\x81\x2b\x3a\xa2\x17\xcb\x88\x69\x19\xb9\x72\x4c\xfd\xc6\x32\x62\x5a\x46\xae\x33\xa6\x7e\x63\x19\x31\x2d\x23\x57\x89\xa9\xdf\xc8\x30\x53\xa6\x5c\x35\x92\xc7\x48\x05\x53\x44\x5f\x35\x26\x29\x23\xa2\x4d\x11\x7d\xb5\x16\xe3\x22\xa2\xed\xb1\x70\xf5\x98\x6b\xec\xb1\x85\x6b\xe9\x81\xe2\xf2\x8f\xd3\x51\xd7\xea\x1a\x3d\x11\x6d\x8a\xe8\xeb\x8a\x89\xc5\x88\x68\x1b\x4f\xd3\x33\x9e\x72\x75\xb9\xd4\xf1\xba\xa3\x15\x41\x6e\x0a\xf2\xeb\x8e\x05\xc2\x08\x72\x53\x90\xdf\x47\xac\x9e\x46\x90\x9b\x82\xfc\x56\x3e\x1a\x41\x6e\xb6\x46\xb8\x62\xf5\x34\x5b\x13\xd7\x8c\x8e\x1a\x97\x2d\xc3\x15\x1d\xb3\x5c\xa4\x82\x29\x15\xee\x1c\x0b\x84\x91\x0a\xa6\x54\xb8\xcf\x58\x20\x8c\x54\x30\xa5\xc2\x5d\x62\x81\x30\x52\xc1\x94\x0a\x77\x8d\x19\xdc\x49\x05\x57\x2a\xdc\xed\xa8\xe1\x52\x2b\x57\x2a\xdc\xad\x5d\x6f\x9f\x9c\x54\x70\xa5\xc2\xdd\x63\x9e\x77\x52\xc1\x95\x0a\xf7\x95\xa3\x23\xa9\xe0\x4a\x85\xfb\x8e\x2d\xb8\x93\x0a\xae\x54\xb8\xef\x98\x75\x9d\x54\xf0\x93\x3d\xef\x11\xd3\xae\x93\x0b\xae\x5c\x48\x47\x8a\x49\xcd\x49\x06\x2f\xb4\xcb\x31\xf1\x3a\xd9\xe0\x85\x76\x39\x66\x5e\x27\x1d\xbc\xd2\xee\x8c\x77\xe2\xe4\x83\x57\xda\x95\x98\xeb\x9c\x84\xf0\x46\xbb\x1a\x5c\xe1\x64\x84\x37\xda\xb5\x14\x7d\x09\x76\xdf\x7b\xf2\x7e\x94\xf0\xd1\x8e\x4d\xf9\xd1\x5b\xf4\x25\x90\x9d\x5d\xf9\x71\xb5\x50\x93\x48\xf6\xeb\xc9\xe1\xbb\x73\x91\xef\x94\x8f\xbe\x77\x6c\x3d\x9c\xf0\xf6\xbb\x07\x05\xa5\x43\x52\xdd\xbd\xe1\xd3\xc6\xff\xe8\xd1\x97\x98\x77\x36\xf0\xe9\x88\x10\x74\x82\xde\xd9\xc1\xa7\xd4\xe3\x7a\x44\xbd\x3f\x1b\x1a\x62\xb3\xe1\x04\xb4\x8f\xfa\x84\xef\x8c\x99\xdc\x47\x1d\xf2\xd1\xf7\xd4\x8b\x24\xca\x7d\xac\x43\xbe\x88\x43\x1f\x6b\xfb\x12\x63\x6e\xf2\x65\x7c\xea\x5b\x22\xd0\x9d\xd8\x77\x08\x20\x95\x08\x45\x27\xf8\x7d\x5a\x20\x40\xaa\x11\x8b\x3e\x23\x1d\xb7\x89\x67\x3b\xe5\x5b\xf2\x71\xbd\x16\xcc\xe4\x64\x89\x1b\xd7\x6b\x7a\x47\xa4\x89\xdb\x73\x87\xaf\xeb\x1d\x59\x6c\x71\x3e\xb9\xd1\xb7\x47\xb6\x3a\x59\xe1\x4e\xdf\x4b\xa1\x4c\x5a\xb8\xbb\x34\xb8\x14\xcb\xee\x03\xdf\x08\x74\xd2\xf6\xcd\x3d\x56\xce\x4f\xee\x5c\x4f\x13\xa8\x93\x3f\xbe\xb8\xde\xdd\xd2\x5f\x5d\xad\x9d\xfc\xf2\x05\x95\x1d\xf1\xfa\x17\x09\xb6\x8e\xd8\xb0\xa4\x9c\xd2\x15\x3e\xed\x58\x30\xf1\x48\xb7\x7c\x5d\x3e\x20\x2f\xc5\x2b\x5c\x64\xe2\x3a\x62\x5f\x96\x72\xba\xe4\xd3\xc6\x0c\x13\xaf\x30\xc9\x37\xe5\xe3\xbe\xda\xe6\x2d\x52\x76\xa5\x96\xe5\x0b\xc9\x57\x6a\x27\xbe\x87\x47\xbf\xe5\x1b\xf8\x24\x47\xd3\x7d\x93\xf6\x29\x6b\x63\xfb\x99\x7a\xf8\x18\x4b\xe2\x1e\x67\x2c\x28\x8b\x84\x5f\xb9\xf5\xf0\x95\x33\xfa\xe6\x76\xe1\xbb\xc2\xd7\x23\x64\x57\x6e\xb7\x7c\x5c\xaf\x74\xb5\xe3\x7a\x79\x6a\x7c\x25\x48\x61\xe5\xa9\xf1\x65\xee\x51\x23\x55\x16\xd3\xc5\x3a\x7b\x91\xef\x92\x2f\xf2\x26\x8c\x33\xe6\xd0\x80\x29\x64\x31\x85\xe4\x16\xcb\xcf\x62\x0a\x59\xa5\x49\xfb\x5e\x6a\xf8\x9a\xb4\x67\x5a\xc9\x3d\xf6\xf8\x8b\x69\x65\x95\xa1\x7b\x5c\xd2\xa5\x8c\x8a\xaf\x32\x96\x26\x1f\x7d\x63\x7a\x4e\xf9\xca\x6a\xa7\xf9\x79\x31\x25\xe5\xfb\x88\xfb\x32\x25\x2d\xa6\xa4\x7c\x1f\xa1\x01\x53\xd2\xaa\xbb\x5d\x6c\x86\x16\x53\xd2\x6a\x7a\x47\xe7\xd1\x42\x97\xc6\x3b\x92\x89\xbe\xf8\x8a\x7c\xa0\xfd\x11\x5b\xdc\xc5\xd4\xb5\x98\xba\xce\xa4\x77\xce\xd4\xb5\x98\xba\x4e\xed\xe7\x16\x53\xd7\x62\xea\x3a\x73\x6c\x17\x16\x53\xd7\x62\xea\x3a\x4f\xc5\x06\x53\xd7\x62\x9a\x3a\x8b\xde\x2f\xd3\xd4\xd2\xcc\x94\xce\xaa\xf7\x7b\xf7\x8e\x4f\xed\xea\xa5\x76\xf4\xbd\xe3\xf5\xa5\xb3\xc6\x86\x6a\xdd\xb3\xe0\x2b\xb4\xab\xf2\x55\x7c\xa1\xe9\xd9\xa4\xdf\x3d\x1b\x3e\xdd\x83\x77\x79\x4f\xee\x61\x49\x3e\xee\x6b\x19\x1f\x7d\x23\x45\xd7\x53\x74\x5f\x99\xd4\x7a\xe0\xf3\x7a\x4a\xc6\x97\xf5\x35\x23\x56\xda\xf5\x94\x13\xdf\xc9\x17\x8e\x22\x5f\xc1\x57\xf0\x75\xf9\x2a\xbe\xb8\x47\xbd\x3a\xbe\x86\x2f\xc6\xd7\xea\x49\xdf\x8e\x2f\xe2\xbe\x68\xdb\xb4\x9e\x72\xe1\x8b\xb8\xaf\x3d\x73\xdf\x1b\x5f\x4c\x5d\xf5\x8e\x1d\xd7\x7a\x04\x0a\x98\x54\xf5\xdd\x61\x3d\x42\x05\x4c\x82\x15\xd6\x53\x26\xbe\xa9\x6f\x37\x8a\x8d\xa7\x18\x3e\xe3\xd9\xe8\xeb\xf8\xf8\x54\x93\x68\xb7\xf0\x2d\xda\xe9\x7a\x55\xef\x52\x26\xb5\xde\x35\xe6\x8a\x7e\x55\xfa\xed\xb1\x54\xf4\xab\xd2\xaf\x35\xe9\x5c\xd1\xaf\x4a\xbf\x9a\xa5\x73\x45\xbf\x30\xa9\xde\x5d\xba\x54\xf4\xd3\x5c\x57\xef\x4e\x3b\xf4\xd3\x5c\x57\x7b\xe5\x1e\xe8\x17\x26\x35\x7d\x38\x58\x4f\x45\xbf\x30\xa9\xe8\xeb\xc8\x7a\x2a\xfa\x85\x49\xad\x9f\x7a\x1f\x15\xfd\xb4\xac\xb5\x83\xe7\xad\xe8\x17\x26\xee\xc1\xf5\xd0\x4f\x9f\x23\xdb\x41\x6c\x54\xf4\x0b\x93\xea\x45\x1c\x54\xf4\xab\x7c\xfd\x0a\xd2\x5d\x4f\x45\xbf\x30\xa9\xf4\xaa\x77\xd9\xd0\xaf\x49\xbf\x4b\xf3\xc6\xd3\xd0\xaf\x25\xee\xa1\xf1\x35\xf4\x53\x4e\x57\xd1\xd2\x7a\xc8\x69\x99\x54\xaf\xa4\x7b\x90\xd3\x32\xa9\x1d\x45\xef\xa8\xa1\x9f\xe6\xab\x92\xd0\x80\xf9\x4a\x26\x95\x52\xa4\x5f\x43\x3f\xcd\xbb\xe5\x2a\x7a\x5e\xe6\x5d\x99\xd4\xf7\x3b\x67\xde\x95\x49\xed\xbe\x18\x1f\xfa\x35\xf4\x2b\x3c\x1b\xfa\x69\x0d\x68\xad\xe3\x43\xbf\x86\x7e\x27\xf7\x40\xbf\xb6\xe3\x8f\x67\x43\xbf\xa6\x0f\x8a\x1f\x63\x46\xbf\x30\xa1\xb3\xae\xd7\xd1\x2f\x4c\x2a\xcc\x2f\x4f\x47\xbf\x30\xa9\x96\x8b\x76\xe8\xd7\xc9\x5f\xcd\x07\x4f\x47\xbf\xae\xf8\xd3\xc7\xd4\xf5\x74\xf4\xd3\xba\x00\xbb\xae\x87\x75\x41\x26\xde\xa5\xde\x51\x47\xbf\x4e\xfc\x65\x3d\x07\x73\x98\x4c\x12\x88\xc7\x3f\xd0\x2f\x4c\xf4\xfd\xeb\x70\xbe\x9e\x8e\xbc\xfd\xa6\x0b\xc3\x42\xde\xae\xf4\x3e\x12\xb7\x43\xde\x4e\x7a\x13\xc6\x1d\x79\xc3\xa4\x5a\x1b\x43\x45\xde\x6e\x4c\x35\x3c\x12\xf2\xf2\x25\xf6\x38\x25\x07\xd3\xad\x4c\x84\xa2\x64\x7b\x90\xed\x41\x36\x42\xec\x41\xb6\x47\x61\x97\x19\xcb\x83\x6c\x61\x52\x39\x49\x81\x07\xd9\x1e\xa5\xed\xd1\xe9\x8b\x6c\x61\x52\x4f\x59\x12\x3d\xc8\xf6\x20\x1b\xd3\xc0\x83\x6c\x8f\x64\xeb\x5a\x0e\x9e\x07\x5d\xb4\x63\x2b\xa5\x2b\x4c\x1e\x74\x09\x93\xfa\x71\xd3\x0e\x5d\x1e\x74\xe1\x15\x3e\xe8\xf2\x30\xed\x15\x69\xf5\xa0\xcb\x43\xd8\xf1\x0a\x1f\x74\x79\xa4\x4b\x3f\xf0\x11\x76\xcf\x62\x39\xd0\x98\x07\x61\x37\x0e\xf4\xc3\x87\x7e\x83\xb4\x25\x9c\x06\xfa\x8d\x8c\xf6\xd2\x60\xa0\xdf\xd8\x4b\x04\x3e\xb4\xd2\xb6\xa0\x9e\x4c\x7b\x6c\x0b\x64\xa2\x9d\xde\xc7\x40\xab\xa1\x14\xad\x55\xcf\x36\xd0\x6a\x48\xab\x72\x71\x5f\xb4\x1a\xd2\x2a\xa3\xcb\x40\xab\x41\x8a\xb2\x94\x0c\xb4\x1a\x7b\x89\x90\xf6\x03\xad\x06\x29\x8a\x06\x03\xad\x06\x5a\x1d\x3c\x2f\x5a\x0d\x62\x88\x29\x64\xa0\xd5\x40\x2b\xa6\x9f\x89\x56\x53\x29\x9a\x98\x2e\x26\x5a\xcd\xc4\x94\xae\xb1\x4c\xb4\xd2\xd6\xad\xde\xda\xba\x3d\x6c\xdd\x64\x52\xbb\xb5\x05\x78\xd8\x02\xc8\xa4\x72\xf2\x1c\x6c\x01\x64\xc2\x47\x3b\xf4\xd3\x16\xa0\x26\x96\x0d\xb6\x00\x32\xa9\xde\xda\xe6\x3e\x13\xfd\xc2\xa4\xe3\x26\x6d\x27\xfa\xcd\x9b\xa9\x86\x31\xa3\x9f\xb6\xcd\xad\xee\xeb\xa1\x9f\xb6\xcd\xf5\x66\xc9\x61\xdb\x2c\x93\xca\x79\x71\x0f\xf4\x9b\xe8\xc7\xd4\x3a\xd1\x6f\x6e\xfd\xb8\x1e\xfa\x4d\x96\x58\xa6\x3d\x43\x3f\x53\xac\xdd\xcc\x07\x86\x7e\xda\xca\xb4\xcc\xf6\x81\xad\x8c\x4c\x2a\x67\xd3\xf5\x0c\xfd\x8c\x2d\x8a\xb6\x9b\x8f\xa1\x9f\x29\xfe\x6e\x62\xd2\xd0\xcf\x98\xe2\x12\xd7\x43\x3f\x93\x7e\x67\x95\x06\x86\x7e\xd6\x59\xda\x69\x87\x7e\xc6\x14\x47\x6e\x19\xfa\xd9\xcd\x3c\xc4\x73\xa0\x5f\x98\x54\x1a\x73\x93\xa1\x5f\x98\xd4\x0f\xe6\x1c\x43\x3f\x53\xfc\x55\xb6\x41\x86\x7e\xa2\xbf\x7a\xef\xbe\xe8\x67\x5b\x3f\x7c\xe8\x67\x5a\x62\x1b\x73\x93\xa3\x9f\x93\xab\x6c\xf1\x1c\xfd\xc2\xa4\x7e\x92\x5b\x8e\x7e\x2e\xfd\xca\xad\x31\x3b\xfa\x39\xfa\x25\xfa\xa2\x9f\x17\xda\xd1\x17\xfd\x1c\xfd\x4e\x69\xef\xe8\xe7\x8d\xad\x11\xed\xd0\xcf\x99\xeb\x12\x3e\xf4\x73\xe9\x77\x32\xff\x39\xfa\x39\x6b\x00\xef\xd7\xd1\xcf\x77\xfe\x4a\x67\x47\x3f\xdf\xf1\x87\x0f\xfd\x5c\xfa\x95\xc6\x3d\xd0\xcf\x15\x7f\x27\x73\xa2\xa3\x9f\x4b\xbf\x93\x25\xd1\xd1\xcf\xb5\xc4\x26\xf2\x68\xa1\xdf\x22\xfe\x98\xeb\x16\xfa\x89\xe4\x4b\x66\x3b\xbc\xd0\x6f\x31\xd7\x91\x33\x0b\xfd\xc2\xa4\xb2\x97\xd3\x85\x7e\x4b\x5b\xbc\xcc\x96\x67\xa1\x1f\xf5\xdb\xbd\xf5\x58\xe8\xb7\x1a\xb9\x4f\x5f\xf4\x5b\x9d\xe5\x9e\xb1\xa0\xdf\xba\x98\x5f\xe8\x8b\x7e\x6b\xe7\x2f\x7d\xd1\x6f\x29\xfe\x4e\xb6\x5f\x0b\xfd\x96\xe6\xbf\x53\x58\xf9\x2c\xf4\x13\x8e\xd5\xce\x3b\x02\xc7\x64\xe2\x39\x18\x33\xfa\x2d\xb6\x28\xda\xfa\xf2\x75\x04\x93\x4a\x3a\xaf\xbf\xbe\xdc\x0f\x68\x43\x26\x75\x96\xf6\x01\x6d\xc8\xc4\x0e\x26\xcb\x77\xe2\xdb\xbb\x95\x24\x5f\xc1\x27\x29\xf5\x91\x65\x0d\x68\x43\x26\x15\x7d\x8e\x5b\x03\xda\x90\x49\xa5\x69\x5a\x1e\xd0\xc6\x80\x36\x54\x22\x5f\x03\xda\x18\xd0\x46\xd6\xf2\x3c\xa0\x0d\x99\x98\x6a\xba\x7c\x0f\xbe\x1d\x8a\x8c\x6f\xe0\x1b\xba\x5e\xe3\x7a\x13\xdf\x24\x3c\xab\x7c\x86\x8f\x50\x6c\xf4\x75\x7c\xce\xeb\xc7\xb7\xf0\x29\x95\x99\x82\x07\xb4\x31\xa0\x8d\x7a\x9f\xf2\xa1\x9f\x68\xa3\xe6\x44\x3b\xf4\x83\x36\x4e\x85\xe7\x80\x36\x64\xd2\xad\x1d\xc5\x00\x36\x64\x52\x67\x93\x39\x80\x8d\x01\x6c\xe8\x9b\xfa\x1a\xc0\xc6\x00\x36\x6e\x45\xec\x00\x36\x64\xc2\xc7\xf5\x90\x0f\xd8\x48\x15\x1f\xf2\x09\x36\x4a\xba\xb8\x1e\xf2\x09\x36\x6a\xba\x78\x0c\xe4\xab\xc8\x27\x08\x1b\xc0\x86\x4c\x4a\x57\xa1\x2f\xf2\x09\x36\x8a\xbe\x74\xaf\x01\x6c\x0c\x60\x23\xdf\x3c\x07\xf2\x01\x1b\xaa\x56\xae\x01\x6c\x0c\x60\x23\x57\xc9\x0c\x6c\x0c\x60\x63\xcb\x07\x6c\xc8\xa4\x96\x79\x36\x60\x63\x00\x1b\x5d\xab\xcb\x00\x36\x64\x22\xa3\xe8\x8b\x7e\xc0\x46\xd1\xac\x37\x80\x0d\x99\x54\x0b\xba\x00\x1b\x03\xd8\xa8\x1d\x1f\xfa\x09\x36\x4a\xe6\x7d\x00\x1b\x03\xd8\xe0\x63\xd5\x00\x36\x64\x62\xb7\xa4\x50\x03\x36\x64\x52\xa9\x37\xcf\x86\x7e\xc0\x46\x26\x3d\x80\x0d\x99\x54\xda\xc1\x73\xa0\x9f\x60\xa3\xb4\x13\x1f\xfa\x09\x36\x5a\x6a\x7a\x36\x60\x43\x26\xb5\xac\x1d\xe8\x00\x36\x64\x42\x3f\x3d\x2f\xb0\x31\x80\x8d\xac\x0f\x71\x03\xd8\x18\xc0\x46\xd6\x4a\x3c\x80\x0d\x99\x54\xbb\x66\xf9\x01\x6c\xc8\xa4\xd2\x79\x0e\x60\x63\x00\x16\x59\x3b\xd5\x01\x58\xc8\xa4\xd2\xaa\xc6\x0c\x39\xc8\x24\x0a\xa7\x6b\x40\x0e\x32\x91\x46\xd2\x0f\x72\x18\x90\x43\x61\xca\x81\x1c\x64\x52\x4b\xfb\xd9\xd0\x0a\x72\x48\xa4\x34\xe4\xc0\xb7\xde\xd2\x35\x2b\xf3\xad\x17\x13\xed\xf0\xa1\x81\xc8\xa1\x74\xad\x4c\x03\x72\x90\x49\x2d\xdd\x9a\x9a\x20\x87\x01\x39\xa8\x68\xb2\x06\xe4\x20\x13\xe9\x2b\x5d\x20\x07\x99\xd4\x00\x3d\xca\x26\x98\xd0\x45\x63\x86\x1c\x06\xe4\x50\x76\x5f\x74\x11\x39\xb4\xc2\x73\x40\x0e\x32\xa9\x75\xed\x50\x06\xe4\x30\x20\x87\x9c\xe9\x8b\x2e\x0f\xba\x34\xc6\x87\x2e\x90\x43\xe9\x3c\x1b\xba\x40\x0e\x89\xa9\x0e\x72\x18\x90\x43\x16\xd8\x0e\xc8\x61\x40\x0e\x85\x78\x86\x1c\x06\xe4\xa0\x93\x18\x6b\x40\x0e\x03\x72\x28\xcc\x11\x90\x83\x4c\x2a\x57\xc6\x87\x7e\xa2\x89\x52\x79\x97\xd0\x84\x4c\x6a\x95\x78\x81\x26\x06\x34\xb1\x73\x10\x9a\x90\x49\xad\x1c\x8c\x0f\xfd\x06\x1f\x9c\x0a\x63\x41\xbf\x81\x7e\xfa\xd8\x32\xa0\x89\x01\x4d\x14\xed\xa4\x07\x34\x31\xa0\x89\xc2\x1c\x01\x4d\x0c\x68\x82\x9d\xfe\x80\x26\x64\x22\xee\xa5\x1f\x34\x31\xc6\xd6\x8f\xb1\xa0\x1f\x34\x91\xf4\xb1\x60\x40\x13\x32\x11\x1b\x7a\x0e\x68\x42\x26\xe6\x08\xf5\x85\x26\x64\x52\x2b\x2c\x15\xd0\xc4\x80\x26\x2a\x73\x1d\x34\x21\x13\x3e\xae\x87\x7e\xa2\x89\xd6\xd1\x05\x9a\x90\x49\x4d\xe7\x73\xd6\x80\x26\x64\x62\xe7\xd6\x7e\xc5\x6a\x0f\x6c\xc8\xc4\xed\x78\x24\xe4\x15\x6c\x94\xa6\x4d\xf5\x00\x36\xc6\x86\x0d\xa6\x7e\x60\x43\x26\xc2\x84\xbe\xc8\x2b\xd8\x68\xd7\x1e\x16\xf2\x02\x1b\x59\x9b\xa4\x01\x6c\xc8\xc4\x6b\xe5\xd1\x91\x57\xb0\x51\x6f\x52\x0f\xd8\x18\xc0\x46\x65\xa7\x00\x6c\x0c\xbe\x9b\xf2\x66\x60\x0d\x99\x50\x5c\xc3\x83\x35\x64\x72\x22\x20\x40\x8d\x01\x6a\x24\x16\x21\x50\x63\x80\x1a\x55\x5f\xd5\x06\xa8\x21\x13\x2f\x9f\xbb\x22\xae\xb1\x40\x5c\x5c\x0f\xf5\x6c\x6f\x95\x19\x31\xea\x09\x35\xda\xc9\xe4\x0d\x6a\xc8\x24\x0e\x12\xac\x01\x6a\xc8\x24\x8e\x57\xac\x01\x6a\x0c\x50\xe3\x24\xc0\x40\x0d\x99\xd4\xf2\xc1\xa3\xa1\x1e\xa8\x51\x99\x1c\x41\x0d\x99\xd4\x2a\x0b\x04\xa8\x21\x93\x4a\x61\x02\x01\x35\xc6\x46\x8d\x4c\x3b\xe4\x73\x16\x08\x82\x18\xd4\x90\x89\x37\xa4\x31\x83\x1a\x32\x81\x29\xba\x2f\xa8\x21\x93\x0a\x5f\x25\x07\xa8\x31\x40\x8d\xcc\x62\x00\x6a\x0c\x50\xe3\x64\x11\x02\x35\x06\xa8\x51\xd9\xc8\x80\x1a\x03\xd4\xc8\x4c\x2a\xa0\xc6\x00\x35\x92\x3e\xdd\x0c\x50\x63\x80\x1a\x9d\xa8\x02\x35\x06\xa8\x51\x99\xd0\x41\x0d\x99\x54\xae\x3d\x16\xf4\xf3\x1d\x7d\x3c\x2f\xfa\x09\x35\x5a\xd3\x27\xa3\x01\x6a\x50\x34\xac\x9d\x04\x05\x35\x28\x1a\xb6\xca\x7b\x03\x35\x06\xa8\xd1\xd0\x05\xd4\x90\x89\x31\xeb\xbe\xa0\x86\x4c\x2a\x84\x0b\xa4\x21\x13\x43\xd1\xeb\x85\x34\x06\xa4\xd1\x32\x3e\xe4\x13\x69\x74\xa2\x0f\xd0\x90\x49\xad\x31\x9d\x03\x1a\x32\xe1\xa3\x2b\xea\x2d\xd4\x63\xea\x01\x34\x06\xa0\x01\xfc\x0e\x40\x63\x6c\xd0\x40\x29\x40\x43\x26\xde\x86\x54\x06\x34\x28\x91\x56\xea\x7a\x94\x48\x31\xa9\xe9\xf8\xc1\x9a\x90\xc4\xa4\x6e\x91\x94\xe3\x13\x92\x98\xd4\x2d\x98\x5b\x26\x24\x31\x21\x89\x53\x6f\x72\x42\x12\x93\xba\x45\xd3\xf3\x4e\x48\x42\x26\xae\x47\xbb\x86\x8f\x4c\x3d\x19\x4b\xc7\xb7\x97\xe1\x2a\xdf\x85\x8f\x65\xa4\x72\xdf\x1b\x1f\x5b\xb9\x3d\x96\x07\xdf\xf3\xfe\x6a\x55\x9f\xd3\x27\x20\x31\x29\x5b\xb4\x1b\xdf\xc4\xa7\x6f\x2a\xd7\xcd\xf0\x0c\xdf\x9e\xe6\xb8\xad\xe3\x93\x54\x3a\xc9\xb7\x26\x20\x31\x29\x5b\x14\xed\x7a\x27\x20\x31\x01\x89\x9b\xc7\x05\x24\x64\x82\xdd\x74\x3d\x40\x62\x02\x12\xa9\xe1\x43\x3e\x81\x44\x49\x5a\xbd\x26\x24\x21\x13\xe3\x6b\xf2\x21\x5f\xdd\xab\x08\xed\x90\xaf\x52\xf6\xd1\xea\x3f\x21\x89\x09\x49\xf4\x44\x5f\xe4\xab\x4c\x74\x5a\x26\x26\x24\x31\x29\x5b\x64\x7d\x0b\x9b\x90\xc4\xa4\x6c\x51\x32\xed\xd0\x4f\x24\xd1\x7a\xe6\xbe\xe8\x47\xd9\x22\x5f\xf8\xd0\x4f\x24\x91\x8e\x8e\x2e\xe8\xf7\x41\x12\x3c\x2f\xfa\x89\x24\xda\xa9\x65\x62\x42\x12\x13\x92\x38\x35\xff\x4f\x48\x42\xa6\xf3\x19\x63\x02\x12\x93\xaa\x45\x17\x63\x4e\x40\x42\x26\xf7\x83\xab\xa1\x1e\x45\x8b\x8f\x66\xa8\xd7\xd8\x03\x12\x05\x70\xc4\x84\x23\xfa\x89\x0f\xf5\xc4\x11\xf5\x68\xf4\x45\x3d\x71\x44\xe3\xeb\xe7\x84\x23\xe6\x07\x47\xd0\x17\xf5\x28\x5a\xf4\x4a\x3b\xd4\xa3\x68\xa1\x73\x1f\x6b\xc2\x11\x13\x8e\x38\xaf\x5f\xb1\xce\x4f\x30\x63\xb6\xfd\xc1\x45\x2f\x0b\xcc\x90\x89\xd5\x8b\x4b\x23\x6e\x98\x42\xd9\x78\x42\x19\x13\xca\xa0\x4c\x3e\xa1\x8c\x09\x65\x50\x3a\x9a\x50\xc6\x84\x32\x3a\xe9\x04\x65\xc8\xa4\x72\x6b\x8a\x9a\x50\xc6\xa4\xa4\xc1\xf7\xd2\x09\x65\x4c\x4a\x1a\x37\xef\x0f\xca\x90\x89\x76\xf4\x45\x5d\xc8\x23\x69\x51\x9a\x90\xc7\xa4\xa4\x91\xf5\x7d\x78\x42\x1e\x93\x9a\x45\x6e\xf4\x45\xdd\xce\x22\xac\x12\xd8\x84\x3c\x26\xe4\xd1\x89\x7f\xc8\x63\x42\x1e\x2c\x90\x13\xf2\x98\x9b\x3c\x2a\xed\x90\x8f\x9a\x45\xd7\x2e\x8f\x53\x21\x98\x18\x8b\xde\x2a\xe4\x31\xa9\x59\x40\x1e\x13\xf2\x90\xd9\x9f\xff\x27\xe0\x21\x13\xb7\x95\x7c\x80\x87\x4c\x3a\xf9\x94\x34\x01\x0f\x99\x00\x5f\x49\x00\x78\x4c\xc0\xe3\x42\x52\xc0\x43\x26\x95\x2d\x29\xe0\x31\x01\x0f\x36\xec\x13\xf0\x90\x89\x99\x91\x76\xc8\xf2\xb0\xb6\x92\xee\x80\x87\x0c\x1f\xbe\x27\xd8\x21\x93\x6a\xe7\x05\x81\x1d\x32\x91\x12\xf4\x24\xa6\xc0\x8e\x4b\x3b\x93\x09\x76\xc8\xa4\xaa\xcd\xd9\x84\x3a\x64\x52\xe9\x2c\x21\x50\xc7\x84\x3a\x4e\xe6\x13\xa8\x43\x26\x55\xca\xc8\x13\xea\x98\xd4\x30\x12\x71\x0b\x75\xcc\xb1\x57\x56\x7c\x88\x07\x61\x5c\xc4\x05\x84\x21\x93\x7a\x3a\x19\x0b\x42\x89\x30\x6a\xe7\x7d\x43\x18\x13\xc2\xb8\x44\x1d\x13\xc2\x98\x10\x46\x22\x3b\x21\x8c\x09\x61\x70\x0c\x64\x42\x18\x93\x7a\xc5\x55\x91\x00\xa9\x20\x0c\x6a\x2c\x13\xc2\x98\x10\x46\x26\x46\x21\x0c\x99\x90\x54\x63\x86\x30\x26\x84\x71\x31\x57\x42\x18\x13\xc2\xb8\x58\x0a\x21\x0c\x99\x08\x16\xae\x87\x56\x22\x8c\x9a\x3a\xed\xd0\x4a\x84\xc1\xb9\xe1\x35\x21\x8c\x49\xbd\xe2\xd8\x63\x21\xd0\xa8\x57\x50\x6e\x9e\x20\xc4\x04\x21\xae\xdd\x17\xfd\x26\xf9\xa7\xcd\xd4\x04\x21\x26\x08\x71\x11\xcc\x20\xc4\x04\x21\x32\xe1\x02\x42\x4c\x10\x22\x93\xe3\x20\xc4\xdc\x08\x41\xd0\x83\x10\x93\x7a\xc5\xc9\x1a\x02\x42\x4c\xea\x15\x1c\x07\x9a\x20\x84\x4c\xaa\xd4\x35\x26\x08\x21\x93\xf7\x8e\x03\x84\x98\x20\xc4\xcd\xa4\x0f\x42\x4c\xca\x15\x27\x52\xc1\x10\x13\x5e\xb8\x1b\x7d\x91\x0a\x5e\xa0\xc4\x32\xe1\x85\x49\x69\x22\xef\xeb\x21\x95\x78\xa1\x02\xea\x13\x5e\x98\x94\x26\xf8\x40\x35\xe1\x85\x49\x69\xa2\x1e\x5c\x0f\xa9\x28\x4d\x94\xed\x43\x2a\xf1\x42\x6d\xcc\xea\xf0\x02\x07\xd3\xda\xcd\xc2\x02\x2f\x70\x30\xad\xdd\xcc\x37\xf0\x82\x4c\x64\xaf\xae\x07\x2f\xc8\xa4\x5a\xf4\xa1\x6d\xc2\x0b\x32\xd1\x4e\x7d\xe1\x85\x09\x2f\x9c\xa4\x1b\xbc\x30\xe1\x85\x8b\x69\x18\x5e\x90\x89\x76\xf8\x08\xb5\x30\x67\xbb\x71\x21\x9f\xef\xcf\xc1\xf8\x90\x0f\x5c\xc8\xa2\xbc\x09\x2e\xc8\xa4\xa3\xee\xe1\x21\x9f\x70\xa1\x53\x11\x9e\xe0\x82\x4c\xbc\x71\xbd\x36\x70\x41\x26\xf5\x1d\xcd\xe0\x82\x4c\xaa\x54\xb7\x26\xb8\x30\x77\x65\x82\xd9\x05\x5c\x98\xbb\x32\x91\x68\x87\x7c\xbe\x23\x4d\xf7\x00\x17\x26\x95\x89\x4c\x26\x80\x0b\x32\xa9\x73\x50\x67\x82\x0b\x32\xf1\x2a\x69\x87\x7c\xc2\x85\x4e\x85\x65\x82\x0b\x32\x91\x45\xf7\xaf\x58\xe7\xc1\x89\xb9\x7f\x78\xc6\x82\x06\x4e\x4c\x70\xe2\x62\x51\x02\x27\x64\x52\xa5\xb0\x3c\xe1\x89\x09\x4f\x64\xde\x34\x3c\x21\x93\x3a\x67\x08\x26\x3c\x21\x73\x1d\xbc\x7c\x70\x42\x26\x71\xd6\x7c\x4d\x70\x42\x26\xf5\xa3\x72\x0b\xd4\x05\x27\xf8\x52\xca\x2f\xa7\x30\x31\xe4\x50\x88\x13\x92\x98\x08\x9c\x2c\x5f\xc2\xc7\xda\xaa\xc0\x36\x70\xc2\xc0\x89\x53\xc7\xe1\x0c\x9c\xb0\x8d\x13\xba\xaf\x81\x13\x06\x4e\x9c\x7a\xd3\x06\x4e\xc8\xa4\x7e\xe8\x0d\x1a\x38\x61\xe0\x84\x8e\xf7\x2f\x03\x27\x64\x52\x3f\x2e\xfa\x5e\xf8\xd8\x0f\x37\xc6\x72\xe3\x43\x2a\xcd\x47\x06\x4e\x18\xc7\xa0\x7a\xe6\x1e\x03\x1f\x73\xde\x41\xbb\x89\x0f\xad\x6e\xae\x67\xf8\x4c\xeb\xd2\x41\x5f\xc7\xe7\xf8\x8a\x7c\x0b\xdf\x92\x4f\x35\x41\x83\x27\x0c\x9e\xc8\x9a\xa7\x0d\x9e\x30\x8e\x41\x9d\x9a\xb8\x0c\x9e\xb0\x5d\x98\x10\x58\x1b\x3c\x21\x13\xd7\xd3\x7d\xe1\x09\x99\x40\x34\x7c\xe8\xb7\x8f\x41\xf1\xbc\xf0\x84\xc1\x13\xb9\xe3\x43\x3f\xf1\x44\xd7\x6f\x2d\x96\xc1\x13\x32\xa9\x83\x72\x06\x4f\xd8\xe6\x09\xed\x9c\x0d\x9e\x30\x78\x82\xc2\x89\xc1\x13\x32\x71\x3d\x9e\x17\xfd\xe0\x89\x73\x5f\x0f\xfd\x2a\xfa\xe9\xa3\x86\xc1\x13\x32\xbb\xe8\x62\xe0\x84\x4c\x86\x26\x0c\x9a\x90\xf9\xa8\xc3\x18\x34\x21\x13\x3e\x29\x0a\x4e\x18\x38\x41\x6d\xc6\xc0\x09\x99\x68\xc7\xf5\x50\x4f\x3c\xd1\xcb\x41\x5f\xd4\xdb\x3c\xa1\x4f\x10\x06\x4f\xc8\x84\x02\x52\x0f\x9e\x30\xea\x12\xec\x4e\x0c\x9e\xb0\xcd\x13\x8d\xbe\xa8\xd7\xa8\xeb\x14\xc6\x82\x7a\xe2\x89\x92\xb4\x03\x32\x78\xc2\xa8\x4b\xa4\x7d\x5f\xd4\xdb\x75\x89\x4e\x5f\xd4\x03\x18\x32\x91\x01\x30\x18\x87\xa0\xa8\x3b\x19\xc0\x20\x13\x91\xab\x31\x43\x0c\x32\x1f\xb5\x28\x83\x18\x6c\xd7\x25\x76\x3b\xf4\x13\x31\xf4\xa4\x25\xcd\x20\x06\x99\xd4\x29\xc7\x19\xc4\x60\xfb\x10\x94\x76\x54\x06\x31\x18\xc4\xa0\xdf\xcf\x2e\x83\x18\xec\xe3\x10\x14\xf7\x45\xbf\x30\x27\x5f\xd4\x0c\x60\x30\x80\x61\x4b\x05\x30\xc8\xa4\x92\xf6\x6d\x91\x0f\x60\xd0\x8f\xcf\x96\x01\x0c\x06\x30\xa4\x4a\x3b\xe4\x03\x18\xf4\x8b\xb4\x65\x00\x83\x7d\x00\x83\xc2\x00\x60\xe0\xd8\x77\xa3\x1c\xc7\xb1\x6f\x4c\x2c\x2d\xba\x1e\xc0\x20\x93\xce\x9d\xbc\x00\x83\x71\xc8\x89\xf2\x8f\x41\x0c\xf6\xec\xb3\x61\x92\x05\x62\x30\x4a\x15\x49\xdf\x39\x0c\x62\x30\x4a\x15\xfa\xd5\xcf\x32\x88\x41\x26\x15\xca\x2b\x06\x31\x18\xc4\x50\xb4\xc9\x32\x88\x81\x63\xe9\x25\x91\xd0\x10\x83\x51\xaa\x38\x0b\xe3\x43\x17\x4a\x15\x67\xe1\x7a\xe8\xf2\xec\xa4\x94\xce\x30\x83\x51\xaa\x38\x09\x49\x98\xc1\x9e\x5d\xf8\xe7\xbe\x84\x15\xcc\x70\x30\x09\xc1\x0c\x32\x1f\xa5\x4b\x03\x1a\x0c\x68\x60\x03\x6e\x40\x83\x4c\xaa\x94\xe8\x0c\x68\x30\x4a\x15\x7c\xd1\x35\xa0\xc1\x28\x55\xec\x89\x18\x68\x90\x09\x9f\x9e\x0d\x68\x90\x49\x65\xeb\x4c\xa9\x42\xe6\xa3\x64\x6a\x80\x84\x4c\x2a\x94\xd4\x0c\x90\x30\x4a\x15\x14\xf9\x0d\x90\xb0\xb1\xf5\x53\x5c\x01\x12\x36\xb6\x7e\xfd\xaf\x2f\xf5\x06\x67\x18\x9c\x41\xb5\xd3\xe0\x0c\xa3\x92\x01\x3f\x18\x9c\x21\x93\x4a\xe6\xd5\xc0\x19\x06\x67\x9c\x84\x09\x9c\x61\xbb\x92\x41\xc8\xc2\x19\xb6\xcf\x45\x69\x63\x6b\x70\x86\xcc\x79\x92\x8c\x60\x86\x81\x19\x37\xcb\x17\x98\x61\x60\xc6\xcd\x9b\x01\x33\x8c\x63\x51\x14\x95\x0d\xcc\x30\x0a\x19\x27\x93\x19\x98\x21\x13\x13\x83\x14\x02\x33\x64\x02\x65\x18\x32\xea\x72\x2c\x8a\x93\xd1\x06\x66\x18\x98\x71\x32\x51\x83\x19\x32\x11\xc5\xf4\x45\x3e\x61\x46\xdd\x6f\x0b\xcc\x90\x49\xe5\x64\x52\x01\x33\x6c\x63\xc6\xbe\x2f\xf2\x81\x19\x27\xd9\x08\x66\xc8\x7c\x14\xc7\x0d\xcc\x30\x8e\x45\x9d\x44\x22\x9c\x61\x70\xc6\xc9\xa2\x01\x67\xc8\x7c\x14\xd1\x0d\xce\x30\xdb\x5b\x16\x8d\x8f\x5a\x85\xc1\x1e\x99\xe7\x80\x3d\x6c\xb3\x87\x36\x93\x06\x7b\x18\xb5\x8a\xad\x01\xec\x61\xd4\x2a\x28\x66\x1b\xec\x61\xb0\x47\x26\x93\x61\x0f\xa3\x56\xc1\x71\x4a\x83\x3d\x64\xe2\x7a\xf8\xd0\xcf\x76\x31\x9b\xeb\xa1\x1f\xc7\xa2\x32\x8b\x0b\xec\x21\xf3\x51\xf8\x37\xd8\x43\xe6\xca\xaa\xb5\x1b\xe8\x61\x94\x2a\xb6\xa4\xa0\x87\x4c\xec\xf8\x74\x5b\xd0\x43\x26\xd6\x52\x5d\x0e\xf4\xb0\x8d\x1e\x37\x3e\xe4\x73\x4e\xf5\x30\x51\x83\x1e\xc6\xa9\xa8\x0f\x1f\xf2\x51\xaa\x38\xf5\x25\xd7\x60\x0f\xdb\xec\xc1\xae\x12\xf6\x90\x09\x0a\xc7\x87\x7c\xbe\x0f\xbe\xe3\x43\x3e\xd8\xa3\xb3\x90\xc0\x1e\x32\xf1\x1c\x7a\xbd\xb0\x87\x4c\x2a\x90\xaa\xc1\x1e\x46\xa9\x22\xef\xeb\x21\x1f\xa5\x8a\x7b\x3f\x1b\xf2\x6d\xf6\xd0\x17\x39\x83\x3d\x8c\x52\x45\x21\xfc\x60\x0f\xa3\x54\x71\xa2\x33\xec\x61\x6b\xef\xf8\x74\x5f\xd8\x43\x26\x55\x6a\xd9\x06\x7b\x18\xa7\xa2\xf8\x16\x69\xc0\x85\x6d\xb8\x60\x7c\xc0\x85\x4c\x3c\x87\x9e\x17\xb8\x90\x89\xf1\xe1\x43\x3f\x4e\x45\x9d\xfb\x1e\xe8\xc7\xa9\xa8\x8c\xa6\xc0\x85\x51\xac\xe0\xac\x87\x41\x17\x32\xa9\xec\x29\x07\xba\x90\x89\x34\xa2\x2f\xfa\x71\x2a\x6a\xef\x66\xa1\x0b\x7e\x43\xd5\x4e\xbd\x73\x7e\x43\x85\xf9\x38\x3b\xe2\xd0\x85\x97\xad\x55\x97\x2f\xe3\xe3\x04\xa3\xf6\x45\x0e\x5d\x38\x74\x91\x6f\xfa\x16\x7c\xa4\xaa\x76\xae\x0e\x5d\x38\xc7\x9e\xf8\x6e\xeb\xd0\x85\x43\x17\x59\xb3\xa9\x43\x17\x4e\xb1\x82\x67\x73\xe8\xc2\x3f\x8a\x15\x8c\xe5\xc6\x27\xba\x80\x88\x1c\xba\x90\x49\x27\x65\x27\x87\x2e\x1c\xba\xd0\xaf\xdc\x97\x43\x17\x32\x71\xdf\x22\x9f\xe1\xdb\x9c\xcb\xb3\x39\x3e\x48\xac\xf3\x1c\x0b\xdf\x2e\xca\xea\x79\xa1\x0b\xdf\x74\x71\xe2\x43\xbf\x4d\x17\x68\x05\x5d\x38\x74\x91\x35\x6d\xf0\x27\x04\x30\xb1\x77\xd5\x58\xa0\x0b\x87\x2e\xb2\xde\xa5\x43\x17\x5e\x77\xae\xea\x39\xa0\x0b\xdf\x74\x51\xb9\x07\xfa\xf1\x23\x8b\xdc\xf0\xa1\x5f\xe5\xd8\xd8\x85\x0f\xfd\x38\xf7\xc4\x39\x0c\x87\x2e\x1c\xba\xc8\xc4\x01\x74\xe1\x75\x17\xb5\xa5\x3d\x74\x21\xf3\x71\xae\xc8\xa1\x0b\xe7\xdc\x13\x67\x5b\x1c\xba\xf0\x5d\xad\x38\x78\x0e\xf4\xa3\x5a\x91\x75\xde\xc5\xe1\x0b\xa7\x5a\x91\xee\x5f\xc1\xf5\x0e\x7e\x38\xc7\xa2\x92\xb6\xcf\x0e\x7e\xc8\x44\x48\xe0\x43\x5e\xe1\x47\xd1\x8f\xd1\x97\x83\x1f\x4e\x39\x83\x55\xd7\xc1\x0f\x07\x3f\xf4\x57\x27\x96\x83\x1f\x4e\x39\x83\x43\xf3\x0e\x7e\xc8\xc4\x74\x2b\x29\xc1\x0f\x6f\xac\xba\xfa\x8a\xec\xa0\x86\x4c\xb4\xe3\x7a\x48\xb9\x4b\x17\x4a\x6f\x07\x35\x64\x52\xbd\x32\xed\x90\x92\x23\x50\x05\x79\x41\x0d\xa7\x36\x01\xba\x38\xa8\x21\x93\xca\x4e\x01\x50\xc3\xf7\xef\x2d\x08\x3b\x50\xc3\xf7\xef\x2d\x34\x75\x39\xa8\x21\x93\x8e\x5b\x7b\x74\x07\x35\x64\xa2\x9d\xee\x0b\x6a\xc8\xa4\xc2\x31\x17\x07\x35\x64\x22\x05\x14\xc6\xa0\x86\xef\xe2\x04\xaf\x15\xd4\xf0\x7d\x2c\x6a\x5f\x0f\xad\xc4\x1a\x95\xca\xbf\xc3\x1a\xce\xb1\x28\x0e\xbf\x3a\xac\xe1\xfc\xa0\xe2\x4c\x3c\x07\xfa\xf5\xad\x1f\xcf\x8b\x7e\xbb\x38\x71\x72\x0f\xf4\xdb\xac\x71\x71\x0f\xf4\xeb\x3b\x14\xd5\x17\xd6\x90\xb9\x39\x77\xec\xa0\x86\x73\x2a\xaa\x32\x3c\x50\xc3\x3f\x4e\x45\xe9\x71\x41\x0d\x7f\xf6\xa9\x1e\xdd\x16\xd4\xf0\x8d\x1a\x3a\xaf\xeb\xa0\x86\x3f\x5b\x16\xda\x21\x0b\xa8\xc1\xe9\x1f\x07\x35\x64\x52\xd5\x8f\xa8\x97\x83\x1a\x0e\x6a\x54\x6d\x46\x1c\xd4\x90\x09\x1f\xed\x90\xe5\xd9\x19\x8a\x0f\x59\x1e\x4a\xd7\xcc\x02\xa0\x86\x3f\x5b\x16\xc6\x87\x2c\x42\x8d\xa2\xbf\xc8\xb1\x1c\xd4\x70\x50\x23\x11\x42\xa0\x86\x83\x1a\x9c\x17\x77\x50\x43\x26\x55\xc8\xd4\x41\x0d\xa7\x3e\xc1\xde\xda\x41\x0d\x99\xf0\xd1\x17\xfd\x06\xab\x29\x69\x09\x6a\x38\x58\x51\xb7\x0f\xad\xf6\x09\x28\x5e\x2f\x58\xe1\xfc\x9e\x82\x4d\x9a\x83\x15\xce\xef\x29\x38\xad\xe8\x60\x85\x4c\xaa\xac\x7e\x0e\x56\xc8\xa4\x52\x09\x67\xb8\x41\xe6\xe3\x54\xa3\xc3\x0d\x32\x91\xbe\xdc\x17\xad\xe0\x06\xbe\xb6\x3a\xdc\x20\x13\xf7\x50\x3b\xb8\xc1\xe1\x06\x70\xcb\xe1\x06\x9f\x1b\x6b\x75\x5f\xb8\xc1\xf9\x3d\x05\xdf\xfe\x1c\x70\x70\x4e\x40\x9d\xda\xdd\x38\xe0\xe0\x73\x9f\x42\xd4\xfb\x00\x1c\x9c\x13\x50\x69\xb7\x23\xd6\x66\xfb\xf3\x09\x4b\x07\x1c\x64\xc2\x47\x3b\xf4\x9b\x5b\x3f\x7c\xe8\xb7\xc1\xa1\xf1\x1c\xe8\x07\x38\x70\x3a\xd3\x01\x07\xdf\x47\x9c\x2a\xcf\x81\x7e\xd4\x27\x12\xab\x10\xe0\xe0\x73\x9f\xe2\x94\x56\x80\x83\x4c\xf8\xf4\x3e\x00\x07\x99\x8f\xd3\x9e\x0e\x38\xb8\xed\xa3\x13\xea\x0b\x38\x38\xe0\x90\x88\x53\xc0\xc1\x37\x38\x30\x85\x01\x0e\x4e\x81\x22\x11\xa7\x80\x83\x6f\x70\x60\x2a\x01\x1c\x1c\x70\xa0\x90\xe8\x80\x83\x7f\x80\x03\xd7\x43\x3f\xc0\xa1\x91\xe7\x80\x83\x6f\x70\x50\x91\xc1\x01\x07\xe7\x90\x53\x26\xf7\x01\x07\xff\x38\xe4\xc4\x3d\xd0\x0f\x70\xd0\x1f\xb2\x59\x0e\x38\xb8\x6d\xfd\x68\x87\x7e\xb6\x73\x15\x0d\xd0\x0f\x70\x68\xcc\x11\x80\x83\xef\xa2\x05\xba\x40\x0e\xbe\x8b\x16\x02\x16\x87\x1c\xdc\xf7\x09\x50\xc5\x06\xe4\x20\x13\xd3\xb8\x74\x81\x1c\x1c\x72\x28\x3c\x2f\xe4\xe0\x90\x03\x75\x48\x87\x1c\x1c\x72\x68\xe4\x1b\xe4\xe0\x90\x03\xbf\x23\x72\xc8\x41\x26\xee\x41\x5f\xf4\xf3\x5d\xfd\xff\x8b\xd5\x3e\xe7\xff\x7f\xb1\x87\x2b\x64\x42\x35\x3d\x39\x5c\xe1\x1f\x47\xa0\x18\x01\xea\xfa\xf8\xf3\x39\x61\x7e\xe3\x8f\x89\x3d\x8d\x14\x87\x2b\x9c\x9a\x46\x62\x06\x81\x2b\x9c\x9a\x06\xa8\xe6\x70\x85\x7f\xd4\x34\xe4\x83\x2b\x64\x52\xe1\x07\xc9\x0e\x57\xf8\xda\xea\xea\xc9\xe1\x0a\x99\x68\xa7\x7b\xc0\x15\xbe\xf6\x4c\x28\xc5\xe1\x0a\xe7\x08\x94\xfe\xf6\xc1\x72\xb8\xc2\xf7\x19\xa8\x93\xfb\xa2\x2e\x45\x0b\x8e\xef\x39\x5c\xe1\x9b\x2b\x3a\x63\x41\xdd\xb5\xcf\x1d\xd3\x17\xfd\xe0\x8a\xbe\xc7\x82\x7e\x6b\xff\xda\x87\x76\xe8\xc7\x21\xa8\xbc\xfb\xa2\xdf\xda\xe7\x6b\xe9\x8b\x7e\x70\x45\xdb\xf7\x45\xbf\x5d\xb5\xa8\xe5\xff\x79\xab\xf1\xff\x7f\x7e\xbe\xbd\xfd\xe9\x6f\x27\xce\x3f\x7c\xff\xee\x5f\x7e\xe8\xef\x34\xea\x0f\x24\xbe\xcc\xd7\xe7\x2f\xfe\xa7\xbf\xf9\xf8\xed\xeb\xb7\xe8\xa5\xff\xfd\x9f\x00\x00\x00\xff\xff\xa6\xb9\x1e\x14\x1f\x52\x00\x00"); -func (_df bindataFileInfo )Mode ()_ce .FileMode {return _df ._bd };var _daeac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x98\x41\x8f\x23\xb7\x11\x85\xef\xf3\x2b\xfa\xe8\x1c\x9c\x21\xab\xc8\x26\x09\x18\x06\x82\xf5\x21\x63\xc0\x49\x90\xc9\x3a\x01\x82\x1c\x5a\x12\x7b\x21\x20\xab\x11\x34\x33\x87\xfd\xf7\x41\xbd\x4f\x99\xc0\x39\x2c\x6a\xf7\x13\x59\xfd\xde\x23\x9b\x94\xf6\xf1\xd3\xd3\x4f\x4f\x97\xf3\xdb\xf2\xf8\x97\xdb\xcb\xf1\x79\xbe\x2d\xfb\xf9\x72\xba\xcd\xd7\x97\xf7\xdb\x71\x2e\x87\xf9\xe5\x7c\x79\x78\xc8\xb6\x9c\xce\xc7\xb7\xff\xfe\x53\xe5\xf8\x75\xbb\x3e\x3c\x3c\x7e\xbe\x9c\x7f\x7e\x7a\xfe\xfe\xf3\xa7\x67\xfb\xfe\x8f\xcb\xfb\xeb\xbc\xf3\x4f\x4f\x3f\x3d\x7f\x7b\x7d\x9b\x5f\x9f\x2e\xfb\xcb\xe2\xcc\x3f\xbd\x5f\xef\x3d\x96\xe5\xf1\xaf\xf3\xcb\xf9\xf5\xed\xf6\x6d\xf9\xee\x0f\xa7\x97\xc3\xfc\xdd\x72\x9a\x7b\xf0\x3f\xdf\x4e\xf3\x76\xbe\x7c\x59\xbe\xfb\x79\xbb\x6e\x97\xfc\xf1\xc1\xf3\xfb\xf5\xfa\xef\xf9\x75\x5e\xde\x96\x22\x36\x2f\x27\xd5\x87\xc7\x4f\xbf\x6c\xd7\x3f\x6d\x5f\xe7\xf2\x1b\x3d\xbf\xea\x53\x7d\xf8\xeb\xbc\xbd\x9e\x5f\x2e\x4b\xb6\xdf\xa7\xb4\xfe\x8f\xff\xed\xdb\x75\x2e\xf9\xde\xe5\x1f\x9f\x9f\x7e\x5a\xfe\x99\x97\x9c\x16\xab\x5e\xdb\xbf\xee\xfc\xef\xbf\xbc\x9c\x3e\x46\xe5\x94\xf0\x70\x3c\x9f\x6e\xdb\xe5\xcb\x7c\xf8\x21\xa5\x43\xfa\x71\xb9\x97\x6e\xeb\x78\xf8\xc1\x52\x0e\x44\x69\x7d\xb8\x50\x05\x55\x21\x13\x5a\x41\xab\x50\x15\xea\xa0\x11\xbd\x7a\x16\x3a\x82\x4e\x81\x9a\xda\x1b\xbd\x8c\x5e\x5d\x88\x5e\x46\xaf\x16\xc8\x4d\x28\x4a\xb7\x26\x11\xee\x20\x57\xfb\x40\x79\x48\xaa\x4a\xf3\x2e\x92\x21\x39\xc8\x2a\x62\x10\x0b\x32\x44\x1c\xe2\x41\x9a\x48\x85\xd4\x1f\x97\x6c\x96\x4b\xb0\x63\x11\x8b\xd2\x3d\x67\x21\x86\x45\xe9\x9e\x93\xd0\x0a\x5a\x85\x22\x99\x3c\x41\x51\x7a\xba\xa3\x06\x6a\x42\x6a\x3f\x3b\xa8\x0b\xa9\xfd\x1c\xa0\x21\x14\x06\x8d\xb0\xec\x1e\x56\xa4\x6c\xae\x48\x55\x5a\x1f\xd1\xcb\xe6\x2e\x14\xe5\x9e\x5f\x4d\x4a\xa6\xa6\xc8\xa1\x68\x2d\x6a\x32\x50\xd8\x2e\x5a\x8b\x9a\x0a\xa8\x6a\x54\x15\x5a\x41\x4d\xc8\x85\x3a\x68\x08\x31\x71\x03\x1d\x84\x78\xe2\x11\x14\xba\xca\xa0\xd7\x09\x74\x12\x62\xd4\x04\x4d\xa1\x55\x68\x07\xed\x42\xb1\x8a\x95\x2d\xa8\xd2\x6a\x92\x88\x9c\x41\x59\x48\xed\x33\x86\xa2\xb4\x9a\x8a\x90\x83\x5c\x48\xed\x33\x1e\xa3\xb4\x32\x94\x04\xdb\x59\xa5\x95\x41\x7b\x6c\x6b\x3b\x17\xed\xf0\x9a\x1b\x48\x49\x0c\xda\x93\x44\x94\x56\x86\x92\xc8\x03\x34\xf4\x44\xda\x13\x4e\x94\x56\x53\x12\x3a\x80\x0e\x42\xb4\x27\xaf\x28\xad\x1a\x22\xc8\x2b\x4a\xab\xa6\xbc\x32\x79\x45\x69\xd5\xb0\x4d\x5e\x51\x5a\x35\xe9\x32\xf2\x32\xe5\x65\xb2\x6d\xe4\x65\xca\xcb\x24\xd5\xc8\xcb\x94\x97\x29\x68\x23\x2f\x8b\x70\xaa\x4b\x2a\x5b\x4e\xa5\x55\xd7\x13\x79\x3f\x55\x5a\x75\x49\x35\xc2\x89\xd2\xaa\xcb\x90\x11\x4e\x94\x56\x1d\x5d\x84\x63\x0a\x47\xaf\x5a\x35\xc2\x31\x85\xe3\x48\x25\x1c\x53\x38\x8e\x2e\xc2\x31\x85\x93\x11\x41\x38\x26\xdb\x59\xbd\x1c\xdb\x2e\xdb\x59\xbd\x1c\xdb\xae\x0d\x60\x32\xe4\x6c\x00\x97\xc7\xc4\x44\x3c\xba\xd4\x27\x85\xe3\xa8\x77\xa9\x4f\x12\xe1\xa8\x77\xe9\xd2\x8b\x5c\x1d\x11\x2e\x11\x45\x49\x14\x44\x14\x89\x28\xda\x00\x05\x11\x45\xd9\x17\x89\x28\x64\x5f\x94\x7d\x51\xaf\x42\xf6\x45\x52\x8b\x74\x15\xa4\x16\x49\x2d\xd2\x55\x90\x5a\xb4\x1c\x45\x1e\x0b\xcb\x51\xb4\x1c\x45\x52\x0b\xcb\x51\x64\xa8\xa2\x0b\x43\x45\x86\x2a\x4f\xc4\x50\x51\xf6\x35\x74\xad\xec\x42\x95\x6e\x96\x85\x4e\x20\x9d\xd9\x79\x08\x4d\xd0\xd4\x28\x13\xda\x41\xbb\x50\xf4\x6a\x1c\x30\x2a\xd9\x72\x0b\x61\x6d\x53\x14\x2a\xdd\x22\x69\x4f\x71\x26\x45\x89\x28\x7a\x9c\x1d\x9e\x74\xc2\x78\xd2\xcb\x3d\x92\x90\xde\x64\x4a\xb7\x96\x84\x0a\xa8\x6a\x54\x16\x3a\x82\x3e\x0e\x43\xd7\x5d\x73\x2f\x6d\xd4\x55\x68\x07\xed\x42\x6a\x5f\x10\xa1\x25\x1a\xb9\x0b\xf1\x44\xad\xc7\xc8\x92\xaa\xf0\x29\x6d\x98\x44\x28\x69\x4a\x1b\x26\x11\x8a\x95\xd2\x46\xa4\xe3\x69\xa5\xd7\xaa\x5e\xe6\x71\xe1\x7f\xdc\xba\x0f\xa3\xfe\xff\x3d\xec\xa9\x33\xa1\x33\x41\x46\x3a\x0f\xef\x3c\xbc\x0a\xf1\xf0\xce\xc3\xe5\xad\x4f\xd0\x14\x92\xb7\x71\x10\x8a\xd2\xad\x49\xcf\x20\xa7\xa1\x65\x6e\x52\xbd\x91\xc0\xa6\x04\x4c\x09\x6c\x88\xd8\x10\xa1\x04\x36\x44\x6c\x12\xe1\x4a\x60\x43\xc4\x26\x11\x4e\x2f\x12\xd8\x94\x80\xeb\x89\x47\x7a\x1d\xd5\x2b\xce\x0c\x4f\x13\x34\x41\xf2\x38\x69\x3f\x69\x2f\x8f\x93\xf6\x93\xf6\xf2\x38\xf1\x38\xe5\xd1\xe5\x71\x67\xe2\xbe\x0a\x49\xfd\x8e\xc7\x9d\xbd\x10\xba\x5c\xb7\x20\xa5\x7b\x6c\x78\x77\x76\x9f\x6b\x93\xe6\x51\xbb\x98\xc3\x62\xaf\xb9\x83\x0a\xa8\x68\xd8\xca\xd4\x0a\xd3\xf5\x2f\x4b\xae\xdb\x92\x12\xc3\x78\x68\x83\x35\x58\x15\xeb\xb0\x0e\x63\xee\x80\x0d\x18\x8f\xdd\x60\x1b\x6c\x15\x3b\xc0\x0e\x62\x0d\x29\x47\xd8\x11\x66\x62\x27\x18\x1b\x9f\x61\x0a\xce\xe3\x25\x8a\x61\x7a\x2c\x6f\x91\x4a\x1b\x45\x8a\x33\xc6\xb2\x8c\x15\xcd\xcc\x18\xcb\xfa\x5e\xe3\x20\x7c\x65\x7c\x75\x18\xbe\xa2\x74\x8f\x6f\x57\xee\x19\x5b\x19\x5b\x5d\xd2\x32\xb6\xe2\x9d\x0c\x56\xc4\xee\xda\xa6\xd6\x06\x69\x7a\x4f\x3d\xee\xac\x18\xa6\x44\x74\x69\x51\xba\x6b\x4f\xba\xb1\x5c\xa6\xe5\x2a\x8c\xc2\x94\xb1\x5c\x2c\xbe\xe1\x2a\x4a\x30\x3d\xc1\xb0\xa5\x9b\x6c\x54\x86\x61\x4b\x37\xd9\x28\x5a\x2d\xc3\x95\x61\x61\x68\x15\x0c\x0b\x51\xba\x57\x10\x0b\xa3\x7b\x6b\xe0\xc0\x58\x03\xc3\xe8\x40\x2e\x46\xe3\x96\xca\x96\x92\x02\x71\x76\x61\x94\xee\x6c\x42\xc7\xa8\x1b\xc3\x24\xc4\x71\xea\x6c\x4c\xc5\xe6\x38\xf5\xca\x30\xa6\xe2\xca\xe5\x2a\x6e\x12\x77\xc7\x55\x94\x6c\xfa\xca\xe9\xee\xd8\x8a\x12\x4c\x1e\x9c\xd5\x8a\xd2\xbd\xc8\x83\xe3\x34\x4a\x0c\xa3\x1d\x56\xa3\x74\x2f\xb2\xe5\x6c\xc1\x28\x31\x4c\xdb\xc1\xb1\x1f\x25\x18\xe2\xb0\x5f\xb0\xaf\x43\xd4\x39\x7d\x55\x62\x9c\xfa\x15\xfc\x17\x2d\x34\x26\x38\x91\x3d\x2e\xba\x98\x2a\x75\x9c\xbf\x2a\xdd\x2b\xc3\xf0\x55\xf0\x65\x30\x7c\x71\x26\xb3\xa5\x0b\xbe\x74\xfb\x8d\xaa\x44\x0a\xb6\x0a\x1e\x74\x08\x7a\xc1\x43\xd1\x6b\x44\x22\xe5\x6e\x41\x5b\xd5\xe9\xcf\x56\xad\xb8\xe2\x05\xa9\xb8\xaa\x3a\x51\xd9\x97\x15\x53\x95\x45\x65\x05\x2b\xae\xa2\x04\x63\x1c\xab\x1a\x25\x98\x16\xbf\xb2\x7f\x2b\xee\x79\xb9\x2a\xee\xab\xdc\x17\xb5\x6b\x28\x89\xd2\x3d\x6e\x8e\x7d\xd7\x69\xb3\xef\xfa\xc2\xde\x63\x13\xee\xbb\x0e\x0c\x4a\xb7\x38\x6b\xf6\x5d\x87\x03\xa5\x5b\xd3\x44\xdd\x9d\x94\x36\x62\xe5\xf7\x5d\x2b\x4f\x69\x23\xbe\x8a\xef\xbb\x33\xca\x35\x2a\x69\x62\x7c\x21\xba\x97\xd6\x47\x0a\x54\x99\x58\x99\x58\x85\x10\x51\x39\xa1\x57\x21\x7a\x55\x7a\x81\xd0\x15\x85\x3b\x7d\xdf\x75\x73\x50\x5a\xef\xe3\x37\xd7\x69\xfc\x3d\x7e\xb9\x7f\xfc\x92\x3e\xbe\xdf\x6e\xf3\xf2\xa6\xdf\xed\xfa\xa9\x1c\x3f\x7f\xcf\x97\xf9\xf1\x7f\x03\xd7\x97\x6b\xcc\xd2\x9f\xff\x04\x00\x00\xff\xff\x2f\x6a\xa0\x64\x47\x10\x00\x00"); -var _ae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x3e\x10\x05\xf0\xbb\x3f\xc5\x1c\xf7\x7f\xd8\x7f\x2c\x2b\x8a\x2d\x28\x0b\x25\x29\xd4\x85\x6d\x4b\xd3\xdd\x16\x4a\x0f\xb2\x34\x0e\x86\x46\x36\xb2\x7d\xc8\xb7\x2f\x7a\x93\x75\x0f\x61\x92\x9f\x3d\x8f\x77\x98\xec\x8e\xed\xa9\x8d\xc3\x42\xbb\xaf\x69\xf4\x67\x5e\xa8\x1f\x62\x48\x3c\x8f\x6b\xf2\x4c\x1d\x5f\x86\x58\x14\xaa\xa2\x30\xf8\xe5\xed\x27\x86\xbf\xba\xa9\x28\x76\x75\xf3\xf8\xe1\xe5\xf8\xf8\x91\xd6\x99\xef\x74\x6c\x4f\xe7\xdb\xbc\xf0\xb5\x8d\xfd\x48\x5a\x56\xc3\x3a\xdd\xd7\x89\x76\xdf\xf8\x32\xcc\x4b\xba\xd1\xc3\xfb\x30\x76\xfc\x1f\x05\xee\xb3\x7f\x49\x81\xd3\x10\x2f\xf4\xf0\xc9\x4d\x2e\xaa\xed\xc1\x79\x9d\xa6\x3f\x7c\xe5\xb8\x50\x09\xe3\x18\x30\x8b\xdd\xf1\xd9\x4d\x9f\xdd\x95\xe9\xad\xca\x2b\x1e\xc0\x5f\x39\xcd\xc3\x18\x49\x95\xff\x97\xe5\xe1\x9f\x7f\xbf\x4d\x4c\xea\x1e\xf0\xf3\xa5\x3d\xd1\x2f\x45\xaa\xa4\xca\x68\x63\x7e\xdf\xfd\xc7\xf3\x18\xb6\xb7\xaa\x5a\xda\xfb\x21\x24\x17\x2f\x5c\xbc\x73\xca\x55\x4f\x94\x87\x7e\xa2\xba\x69\xea\x4c\x9d\x02\x75\x15\xc8\x82\xbc\x10\x67\xb2\x2a\x93\x97\xb7\xbc\x01\xed\x41\x0e\x14\x3a\x10\x16\x59\xde\xca\xa3\xb6\x2a\xc7\xef\x1d\x08\xa3\xb6\xaa\x01\x69\x21\x0d\xb2\x20\x23\x94\xe3\x6d\x55\x82\x6a\xa1\x1a\xa4\x40\x56\xc8\x82\xaa\x4c\x5e\xb2\x3c\xb2\x2a\x9d\x89\x85\x58\x68\x0f\x92\x78\x96\x78\x03\x92\x78\x96\xf8\x03\x88\x85\x18\x94\xdb\x1b\x69\x6f\xa4\x7d\xd5\x80\xb4\x90\xc4\x5b\x90\x11\x42\xbc\x2e\x41\xb5\x10\xe2\xb5\x02\x59\x21\xb4\xd7\xb9\xbd\x91\xf6\x46\xda\xeb\xdc\xde\x48\x7b\x23\xed\xf5\x1e\x24\xf1\xd2\x5e\x1b\x90\xc4\x4b\x7b\x7d\x00\xb1\x10\xda\x6b\xb4\xef\x65\xb1\x3f\x80\x9a\x7c\x81\xdb\x31\xe4\xef\xf9\xf6\xb7\x5b\xf4\x6b\x4a\x1c\x17\x5c\x3e\x2e\x2e\x5f\xd1\x10\x79\xfb\x63\x4d\xe3\x94\xb7\xf0\xf9\x1b\x00\x00\xff\xff\x09\x64\x4a\x68\x84\x03\x00\x00"); -var _bfgc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xcb\x8e\x24\xb7\x11\xbc\xf7\x57\xd4\x51\x3e\xd8\xcb\xf7\x03\x68\x34\x20\xeb\x01\xef\x41\x92\xe1\xb5\x6c\x03\x86\x0f\x45\x32\xb9\x18\xc0\x3b\x33\x98\x99\x3d\xe8\xef\x8d\x88\x68\xc9\x96\xe0\x83\x50\x9a\xd8\x48\x92\x95\x8c\xc8\xcc\xea\x77\x5f\xbd\xff\xfa\xfd\xe3\xc3\xdb\xf1\xee\xcf\x2f\x4f\xf3\x83\xbd\x1d\xfb\xe1\x71\xbd\xd8\xeb\xd3\xe7\x97\x69\xc7\xb0\x8f\x0f\x8f\x97\x8b\x0f\xc7\x7a\x98\x6f\x3f\xff\xc9\xc7\xfc\x74\x3e\x5f\x2e\x88\xff\xf0\xd3\xeb\x9b\x7d\x7a\xff\xb8\x9f\x8e\x28\xde\xfa\xfc\x7c\xe7\x1e\xc7\xbb\xbf\xd8\xc7\x87\xd7\xb7\x97\x9f\x8e\x2f\xbe\x5c\x4f\xc3\x7e\x77\x2c\xdb\xc0\x7f\x78\x59\xf6\xf2\xf0\xf8\xf1\xf8\xe2\xab\xef\x3f\xf8\x5f\xe0\x0f\x9f\x9f\x9f\xff\x6d\x9f\xec\xf1\xed\x70\xc4\xec\x71\xf1\x79\x79\xf7\xd5\x77\xe7\xf3\xf7\xe7\x27\x3b\xde\xfd\x31\xff\xfe\x4f\x04\x89\xfd\xcd\x5e\x5e\x1f\x9e\x1e\x0f\xef\xfe\xe0\x5c\xf9\x2f\xfe\xd7\x9f\x9e\xed\xf0\xf7\xe0\x1f\xdf\x7f\xfd\xc3\xde\xaf\xf6\x76\x78\xa7\x85\xdf\xfd\xe3\xc7\xf7\x5f\x1f\xff\xf4\x87\x77\x47\xc8\xb1\xb9\x7f\xdd\xa9\x7f\xff\xee\x69\xd9\x7d\xf7\x4b\xd0\x9b\xcc\xa7\x65\xaf\xcf\xe7\xb4\x97\xf3\xf1\xa3\x5d\x8e\xe3\xea\xdc\xed\x38\x8e\x6b\x73\x37\xfc\xf5\xa5\x4f\xee\x76\x5c\xbf\xfd\xe6\xdb\x6f\x6e\x38\xf2\x6f\xf8\x17\xaf\x65\x1e\x9f\xde\x96\x6d\x61\x5c\xe1\xea\xf7\xed\xf0\xb1\xa4\x86\xa8\xff\xfd\xe7\x0b\xce\xa9\xbd\x1f\xd6\x3d\x22\x20\xa2\xda\xcf\x11\xd7\x53\xbb\x9e\x3e\xb7\xdb\xd1\x3b\x80\xdc\x05\x4c\x90\x6a\x8a\xc4\x16\x31\x06\x06\x86\x9d\x9e\xc8\xce\xb7\xc3\x97\x00\x64\x17\x21\xe5\x76\x04\x2d\xbd\xab\x90\x0a\xa4\x12\x69\x42\x0c\x08\x76\x0b\xda\x3e\x60\xe5\x90\x0b\x10\xad\x1c\xc0\x89\x1e\x9c\x28\x4e\x04\x27\x79\x9c\x27\x8a\x13\xc7\xb8\x1d\xa9\x22\x2a\x8e\x25\x64\xdf\x8e\xec\xc0\x49\x8a\x4a\x88\xca\x3d\x03\x51\x54\xc2\xca\x25\xe3\x84\x59\x9c\x0c\x4e\xcd\x78\x8b\x2c\x4e\x06\xa7\x79\x44\x15\x71\x0a\x38\xdd\xe1\x3c\x45\x9c\x02\x4e\xaf\x88\xaa\xe2\x54\xe6\xc7\x15\x1c\xa8\x8a\x54\x41\xf2\x3e\x20\xae\x89\xd5\x94\xc5\x80\x43\x36\xb1\xda\x56\x62\x11\xd8\xc5\xea\xba\xa4\xe6\x00\x89\xd5\xc9\x4a\xbc\x91\x53\xac\x93\xac\x1c\x91\xdc\x53\xac\x93\xac\xe2\x10\x38\xc4\x1a\x64\x95\x9e\x00\x89\x35\xc8\xaa\x19\x81\x53\xac\x49\x56\xcb\x1e\x90\x58\x73\xaf\xdb\xe1\xbb\x47\xe0\x44\xc4\xfd\x11\x52\x04\x6b\x29\x70\xf1\xf2\x9c\xc3\x5a\x4b\x81\x8b\x2c\x57\x71\x08\x13\xcb\xc8\xf2\x05\x6b\x99\x58\x46\x56\x08\x08\xdc\x62\x6d\xb2\x62\xc0\xf2\x5b\xac\x3d\x37\xa0\x86\xc0\xbd\xc4\xba\x1f\x22\x5c\xae\xc3\x31\x70\x38\x06\xa6\xda\x01\x31\x70\x38\xb2\x72\x02\x4b\x32\x1f\x54\x70\x28\xb1\x00\x12\x4b\x62\x2c\xd0\xfe\x90\x1a\x87\xd4\x58\x7b\x04\x24\x16\xe5\x18\x1a\x14\x3a\xa4\xc7\x41\x3d\x86\x9e\x1d\x20\xb1\x22\x45\xeb\xa0\xd1\x21\xfd\x0d\xea\x2f\x7a\x24\x67\x48\x80\x23\x49\xda\x48\xce\x90\x02\x07\x15\x18\x03\x92\x33\x24\xc1\x41\x09\xc6\x88\xe4\x0c\x69\x70\x50\x83\x31\x21\x39\x43\x22\x1c\x14\x61\x4c\x48\xce\x90\x0a\x07\x55\x18\x73\x6d\x80\xc4\xa2\x0a\x63\x49\x08\x94\x0a\x07\x55\x18\x6b\xcc\x80\xc4\xa2\x0a\x63\xed\x08\x94\x0a\x07\x55\x18\x5b\x47\x0a\xa5\xc2\x41\x15\xc6\x9e\x11\x28\x15\x0e\xaa\x30\x39\x18\x7a\x48\x85\x83\x2a\x4c\xde\x23\x50\x2a\x1c\x54\x61\x0a\x0e\x29\x94\x0a\xc7\x98\x15\x50\x41\xe0\x98\x8d\x10\x03\x23\x8c\x36\x24\xcc\x41\x61\xa6\xc8\xe4\x48\x98\x83\x2a\x4c\x89\xc9\x91\x0a\x07\x55\x98\x32\x93\x23\x15\x0e\xaa\x30\x65\x26\x47\x2a\x1c\x96\xfd\xed\x48\x85\xc9\xb1\x1c\x04\x05\xee\x28\x28\x12\xe2\x5a\xa5\xe3\xa8\xd2\xea\xa0\x56\x53\x4d\xb8\x34\x69\x75\x50\xab\xa9\x45\x2c\x2f\xad\x0e\x0a\x33\xb5\x5e\x2f\xd7\x29\x61\x4e\x0a\x33\xf5\xee\x01\x91\x35\x29\xcc\xec\x72\xba\x5c\xa7\x84\x39\x29\xcc\xec\x51\x37\xa7\x84\x39\xfd\x79\xde\x8e\x1c\xbc\x27\x34\x08\x31\x30\x84\x70\xb9\x4e\x69\x75\x52\xab\x39\x22\xab\x53\x5a\x9d\x61\x22\x30\x22\xab\x33\xcc\x21\x68\x30\xd0\x13\x9a\x84\xb8\x56\xe2\xf2\x52\xf4\x8c\xc5\x01\x42\x39\x9f\xb1\x70\x2d\x8a\x3c\x27\x64\x62\x4a\xe4\x33\x8e\x76\x3b\x72\x0e\x84\x46\x17\xd4\x01\x65\xae\x35\x4e\x41\x27\x21\x47\x88\x87\xa0\x3b\x72\x46\x9d\x9d\x72\xc7\x4c\x39\xdf\x8e\x5c\x02\x58\x29\x17\x41\x85\x3b\x66\x42\x95\x10\x0f\x51\x12\x03\x75\x08\x7a\x28\x97\x06\x48\x1e\x9a\xf4\x50\xae\x68\x07\x53\x1e\x9a\xf4\x50\x6e\x11\x99\x90\x87\x66\x51\x3f\x88\xf1\x72\x9d\x12\xf9\xec\x09\xa7\xef\x7c\xc7\x9e\x4e\x41\xe7\xed\x28\xe8\x74\xb3\x27\x1e\xbe\x97\x71\x3b\x8a\x63\x9e\x7b\x61\x06\x69\x8e\xe2\x92\x63\xbb\xfe\xb9\xc5\xfe\xbf\xae\x3b\xe5\x9d\xd9\xd1\xa5\x8a\xcb\x38\x4f\x1f\x26\x88\x8b\x44\x41\x9b\x90\x4d\x40\x8d\xbb\xdb\x22\xc4\x9e\xe5\xe1\xd6\x29\xd3\x4d\x9a\xae\xf8\x8c\x17\x91\xe9\xe6\x89\xde\x5b\x82\xc7\x19\x4f\x36\x5f\x3d\x8a\x87\x46\xe7\xc9\xee\x3b\x69\xcd\x12\x1d\x52\x27\x6b\x4e\x5a\xb3\xd0\x74\x53\xd6\x9c\x43\x2c\xb4\xb7\x29\x1f\x4e\xfa\xb0\x24\xb4\xb7\x29\x1f\xce\xa9\x5e\x8a\xf6\x36\xe5\xc3\x49\x1f\x96\x82\xf6\x36\xe5\xc3\x49\x1f\x96\x82\xf6\x36\xe5\xc3\x49\x87\x95\x8a\xf6\x36\xe5\xb0\x49\x87\x95\x86\xf6\x36\xe5\xb0\x49\x87\x95\x8e\xf6\x36\xe5\xb0\x49\x87\x55\x87\xf6\xb6\xe4\xb0\x45\x87\x55\x87\xf6\xb6\xe4\xb0\x45\x87\x55\x8f\xf6\xb6\xe4\xb0\x45\x87\xd5\x00\x8d\x2e\x39\x6c\xd1\x4e\x35\xa2\xbd\x2d\xd9\x69\xd1\x4e\x35\xa1\x18\x2c\xd9\x69\xd1\x28\x35\x55\x04\xca\x28\x2b\x6a\x60\x28\x19\x90\x58\x14\x77\xa5\x64\x96\xc4\xbd\x28\xdb\x5a\xe1\xd6\x25\xd9\x2e\xca\xb6\xd6\x86\x40\xc9\x76\x69\xf8\x68\x68\x5c\x4b\xb2\x5d\x94\x6d\xed\xd0\xfb\x92\x6c\x17\x65\xdb\x1c\x1a\xd7\x52\xe9\x5f\x05\x9e\x6e\x0e\x8d\x6b\x15\x7a\x5a\x8f\x56\xa1\x9c\x55\xe6\x22\xa4\x49\x06\x59\x5d\x6a\x10\xab\xd6\x0e\xa8\x13\xaa\xa7\xa0\xf3\x76\xb4\xd6\x3a\xa1\x21\x08\x81\xca\x97\xda\xc8\x62\x1b\x69\x01\xa5\x7f\xa9\x8d\x2c\xb6\x91\x16\x51\xfa\x97\xda\xc8\x62\x1b\x69\x09\xa5\x7f\xc9\x61\x8b\x4e\x69\x19\xe6\x59\xb2\xc2\xa2\xa2\x5b\x46\x91\x5a\x52\xf4\xa2\xa2\x5b\x29\x38\x97\x14\xbd\xce\x05\xa8\xa2\xd6\xac\x73\x6d\x41\x9b\x2f\x84\xe5\x4f\x53\x20\xd7\xaa\x3c\xbd\x14\xbd\xa8\xe8\xd6\x50\x58\x96\x14\xbd\xc6\x59\xf8\x8e\x91\x50\x25\xc4\xc0\xd6\xc1\x92\xc8\x17\x45\xde\x3a\x1a\xc4\x92\xc8\x17\x45\xde\x1d\xba\xe7\x92\xc8\x17\x45\xde\xe9\xc7\x25\x91\xaf\xb5\x07\x20\x74\xcf\xb5\xf6\x14\x34\x11\xc8\x73\xad\xbd\x04\x21\x30\x10\x92\x15\x16\xad\xd0\x03\x1a\xc4\x92\x15\x16\xad\xd0\x23\x1a\xc4\x92\x15\x16\xad\xd0\x13\x1a\xc4\x92\x15\x16\xad\xd0\x33\x2a\xb8\xc9\x0a\x46\x2b\xf4\xe2\x32\x20\xb2\x8c\x56\xe8\xa5\xb4\xcb\xd5\x64\x05\xa3\x15\x7a\x45\x9d\x37\x59\xc1\x68\x85\xde\x02\x02\x65\x05\xa3\x15\x7a\xc7\x08\x6e\xb2\x82\xd1\x0a\xbd\xa3\xea\x9a\xac\x60\x51\x33\xaf\x43\xd9\x35\x79\xc1\xe8\x05\xef\x3c\x8a\x9a\xc9\x0c\x96\xc4\x0b\x28\xbc\x26\x37\x58\x12\x2f\xa0\xf2\x9a\xec\x60\x59\xbc\x88\x3b\x31\xf9\xc1\xb2\x78\x09\xb5\xce\x64\x08\x2b\xe2\x65\x7c\x57\x98\x1c\x61\x45\xbc\xe2\x11\x2b\xb1\xdb\x7d\x26\xaf\x2e\x01\x13\x4f\x43\xb9\xab\x05\xb1\x12\xb2\x69\x2a\x77\xad\x20\x9b\x52\xb2\xb5\x33\x00\xeb\x21\x11\x8b\xc4\x14\xdb\x31\x7a\x98\xe4\x6d\xbd\xe2\x2b\xc8\x3b\xa6\xaa\xd7\x22\x8c\x83\xbf\xab\x88\x95\xe6\x4d\x03\xbc\x77\x90\xa0\x49\xf4\xa6\x09\xde\xfb\x8a\xf5\xa4\x7a\x3b\xef\x1f\x0d\x18\x36\x4c\x82\xb6\x91\x4f\x60\x11\x95\xdc\x46\x1e\xc4\x14\x1b\x79\x91\x52\xb9\x8d\xed\x88\x41\x87\x36\xf6\x1d\xf3\x3a\x73\x21\x16\x84\x31\x36\x41\xe8\x26\xed\x9b\xbe\x00\x7c\x82\x14\x4d\xe2\xb7\xb9\xf0\x09\xe0\x33\xb4\x68\x13\x76\xbc\x3f\xf0\x6e\x91\xd8\x26\xa6\xf5\x0a\xbe\x99\x4c\x2e\xb1\xa5\xf5\x0a\xef\x48\x36\xb1\x75\x76\x60\x95\x77\xb4\x30\xe2\x5c\x6d\x29\xb6\xc2\xad\x26\x57\x98\x29\xb6\x51\xca\xb2\x85\x99\x31\x07\x8d\x5a\x36\x1b\xc2\x06\x3e\x9d\x38\xbe\x99\xa1\x73\x5e\xcd\xb4\x1e\x0b\xa8\xc9\x3f\xb6\xb5\x5e\x2f\xfe\xd7\xdd\x3a\xa5\xdf\x36\x6b\x93\xbd\x6c\xeb\xa3\xcc\xe1\xf6\xb7\xfc\xb5\x1d\xe6\x15\x1f\xbc\x6f\xc0\x38\xb0\xe8\x81\x37\xea\xc4\x2a\x31\x7d\xe3\x79\xdc\xe0\x96\x11\xb7\xc3\x58\xe6\x83\x6f\xc4\x38\x97\xe9\x81\x1b\xf4\xc4\x26\x31\xed\xcb\x29\x6f\xcb\xb1\xdb\x97\x40\x0c\x19\xdf\xbe\x44\x61\xa7\xde\xbc\x13\x1b\xc2\x98\x8d\xc2\x7d\x3d\xc7\x94\x7d\xff\x6a\x8f\xbe\x02\xd3\x59\xbc\xf6\x88\xe8\x27\x5b\x7e\xdf\xa1\x54\x60\x29\x22\x36\x94\x26\xac\x01\xab\x50\xec\x0e\xa5\x13\xd3\x7a\xa9\x92\xa7\xf5\xc2\xe4\xf9\x12\x3e\x14\x76\x98\x3c\x5f\xd0\x1e\x19\x4e\xd9\xaa\x16\x3b\xd6\x44\xac\x11\x83\x6d\xf0\x30\x9d\x19\x39\x50\x05\xd9\xaa\x20\xa1\xa0\xfb\x6c\x55\x90\x9d\x0a\x73\x5f\x53\x06\x56\x98\x7b\x55\x95\x50\x31\xe2\x6f\x55\x95\x9d\x06\xf7\x68\xcc\x4b\x1a\x59\x58\xd6\x59\x0a\x31\xc5\xa2\x3a\xfb\xd0\x02\x79\x2c\xcf\x5b\x15\x29\x74\x87\x7d\x55\x91\xb6\x2a\x52\xe8\x0e\x39\x50\x45\xda\xf9\xce\xc3\x2c\xb4\x55\x91\x76\xe1\x1d\x45\x57\x90\x97\xa2\x3b\xe2\x03\xb1\xc2\x12\x31\x7d\xd9\x3b\x4c\xb8\x5b\x95\x6b\xab\x72\x45\xcf\x3b\x57\xe5\xda\xaa\x5c\x91\xe3\xdc\x56\xe5\xda\xaa\x5c\x31\x60\x5a\xd8\xaa\x5c\x5b\x95\x2b\x46\x6a\x43\x95\x6b\xab\x4a\xc5\xc4\xfb\x55\x95\xda\x2c\x4c\x3e\x66\xde\x6f\xaf\x55\x18\x79\xb9\x91\xa7\xd8\x8e\xeb\xf3\x31\x63\x9e\xda\x7d\x26\x61\x49\xbc\x4c\x2c\x0b\xcb\xfc\x19\x89\xf9\xeb\xb3\x08\x2b\xfa\x69\xc9\x13\xd3\x1e\xcb\x13\xd3\xbe\x2b\x08\x53\x6c\x0a\xbf\x72\x23\xfe\xff\xd3\xf9\x7c\xf9\xe5\x77\xba\xf9\xf9\xe5\xc5\x1e\xdf\xf8\x9b\x20\x7f\x91\x3b\x96\xed\x87\x47\xfb\xe5\xf7\xc5\xe7\xa7\x67\x44\xf1\xbf\xff\x04\x00\x00\xff\xff\xaf\x70\x6a\x2a\x8b\x14\x00\x00"); -func _fbcg ()([]byte ,error ){return _dc (_abee ,"CNS2-V")};func _gdcf ()(*asset ,error ){_bagd ,_gcdcb :=_afea ();if _gcdcb !=nil {return nil ,_gcdcb ;};_afde :=bindataFileInfo {_ag :"UniKS-UTF16-V",_bc :689,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493040,0)}; -_dged :=&asset {_cd :_bagd ,_dce :_afde };return _dged ,nil ;};var _bef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4f\x6b\xe3\x56\x14\x05\xf0\xbd\x3e\x85\x96\xd3\xc5\x34\xef\xfe\x79\x7f\x04\x62\x60\xc8\x30\x90\xc2\xb4\xa5\x29\xed\xda\x91\x9e\x83\xa1\x91\x8d\xe3\x2c\xf2\xed\xcb\xb9\xc7\x4e\xa1\x8b\xc1\xe3\x63\xe9\x4a\xfc\x4e\x9e\x9e\xee\xee\x1f\xbe\x3d\x6c\x87\xcb\x78\xf7\xfb\xf9\xb8\x3c\xf6\xcb\xb8\x3f\x6c\xeb\xb9\xbf\x1e\xdf\xce\x4b\x1f\x9f\xfa\xf3\x61\x1b\x06\xd1\x71\x3d\x2c\x97\xdb\xd7\xf8\x58\x5e\x76\xa7\x61\xc0\xf9\x8f\xef\xaf\x97\xfe\xf2\xb0\xed\x8f\xa3\xf1\xb8\xf5\xed\x74\x3d\x76\x1c\xef\xfe\xe8\xcf\x87\xd7\xcb\xf9\x7d\xfc\xf4\x75\x3d\x3e\xf5\x9f\xc6\xb5\xef\x91\xff\x76\x5e\xfb\xf9\xb0\x3d\x8f\x9f\x7e\xd9\x9d\x76\x9b\x7c\xfc\xf0\xf8\x76\x3a\xfd\xd3\x5f\xfa\x76\x19\x6b\x64\x7d\x5b\xe3\x73\xb8\xbb\xff\xb1\x3b\xfd\xba\x7b\xe9\xe3\x5d\xcc\xfa\xcc\x33\x3f\xf3\xb0\xf8\xf5\xaf\x7e\x7e\x3d\x1c\xb7\x51\x7e\x4e\x49\xfe\x8b\xff\x7c\x3f\xf5\x51\xae\x53\xfe\xfe\x71\x5c\xfb\x98\x6e\x33\x1f\xbe\xdd\x1f\xdf\xb6\xcb\xa8\x96\xca\x35\x14\xde\xfe\x72\x5c\xfb\xeb\x69\xb7\xf4\xf3\x6e\x7b\xee\xc3\x38\xce\x29\xa5\xf4\x65\x9c\xf3\xd7\xef\xdf\xbf\xe0\xbe\xfe\x77\xc4\x30\xdd\xce\x3c\xac\x4c\x6e\x67\xa4\xb4\xdf\x7f\x19\xd3\x30\x27\xe1\x77\xc1\x77\xcd\x65\x98\x93\x32\x51\x24\x59\x74\x98\x93\x31\x31\x24\xb5\xb4\x61\x4e\xce\xc4\x91\x48\x52\x1f\xe6\x94\x19\xe5\x88\xb4\x61\x76\x61\x54\x22\xca\x86\xe1\x95\x51\x8d\xa8\x4e\x98\xde\x18\xb5\xb8\x83\xe4\x18\x3f\x31\x9a\x22\xb2\x84\xf1\x3b\x46\xbb\xeb\x7d\x62\xfc\x13\xa3\xa7\x88\x9a\x60\xfc\xc2\x68\x41\x64\xa9\x62\xfc\xca\x68\x8d\xc8\x14\xe3\x3b\xa3\x1e\x51\x6e\x18\xbf\x67\xb4\x8f\xa8\x79\x1a\x66\xa1\x94\x84\x94\xa7\xa9\x0c\xb3\x10\x4b\x02\xcb\x2d\xeb\x30\x0b\xb5\x24\xb4\xbc\xa4\x36\xcc\x42\x2e\x09\x2e\x6f\xc5\x87\x59\xe8\x25\x7e\x35\xc5\x78\x7a\x49\x78\x65\xab\x18\x4f\x2f\x09\xaf\x5c\x0c\xe3\xe9\x25\xe1\x95\x5b\xc3\x78\x7a\x49\x78\x15\x71\x8c\xa7\x97\x84\x57\xf1\x84\xf1\xf4\x92\xf0\x2a\x05\xc5\x0a\xbd\x24\xbc\xca\x84\x66\x85\x5e\x12\x5e\x55\x50\xad\xd0\x4b\xc2\xab\x3a\xaa\x15\x7a\x49\xbf\xf6\x8f\xf1\xf4\x92\xf0\xaa\x13\xaa\x55\x7a\x69\x78\x35\x41\xb5\x4a\x2f\x0d\xaf\xe6\xa8\x56\xe9\xa5\xe1\xd5\x2a\xaa\x55\x7a\x69\x78\xb5\x09\xd5\x2a\xbd\x34\xbc\x26\x45\xb5\x4a\x2f\x0d\xaf\xc9\x51\xad\xd2\x4b\xc3\x6b\xaa\xa8\x56\xe9\xa5\xe1\x35\x4d\xa8\x56\xe9\xa5\xed\xf6\xb7\x8a\xf9\x04\xd3\x89\x99\xa3\x5c\xa5\x98\xee\x98\x55\xb4\xab\x24\xd3\x20\x43\xfb\xb8\x04\xcd\x74\x61\xa6\xe8\x57\x89\xa6\x2b\xb3\x8c\x82\x95\x6a\xda\x99\x55\x34\xac\x64\xd3\x3d\x17\x49\x42\xc5\x46\x37\x4b\xcc\x14\x1d\x1b\xe1\x4c\x98\x65\x94\x6c\x94\x33\xbd\x2d\xb0\x34\xcc\x46\x3a\x0b\x3a\xb1\x84\x9a\x8d\x76\xc6\xb5\x69\x86\x9e\x8d\x78\xc6\xc5\x69\x19\x45\x1b\xf5\x8c\xab\xd3\x1a\x9a\x36\xf2\x19\x97\xa7\x27\x54\x6d\xf4\x33\xfa\xb9\xa1\x6b\xa3\x9f\xd1\xcf\x33\xca\x36\xfa\x19\xfd\xbc\xa1\x6d\xa3\x9f\xd1\x2f\x0b\xea\x36\xfa\xd9\x72\x7b\x2a\xe0\x1a\xf4\x33\xfa\xe5\x82\xc2\x8d\x7e\x46\xbf\xdc\xd0\xb8\xd1\xcf\xe8\x57\x04\x95\x3b\xfd\x9c\x7e\xc5\xd0\xb9\xd3\xcf\xe9\x57\x0a\x3a\x77\xfa\x39\xfd\x4a\x43\xe7\x4e\x3f\xa7\x5f\x15\x74\xee\xf4\x73\xfa\x55\x47\xe7\x4e\x3f\xa7\x5f\x2d\xe8\xdc\xe9\xe7\xe5\xf6\x28\xc3\x35\xe8\xe7\xf4\x6b\x82\xce\x9d\x7e\x4e\xbf\xe6\xe8\xdc\xe9\xe7\xf4\x6b\x05\x9d\x3b\xfd\x9c\x7e\x6d\x42\xe7\x4e\x3f\xa7\xdf\xa4\xe8\xdc\xe9\xe7\xf4\x9b\x1c\x9d\x3b\xfd\x9c\x7e\x53\x45\xe7\x4e\x3f\xa7\xdf\x34\xa1\x73\xa7\x9f\xef\xf9\xac\x55\x74\x9e\xaf\x7b\x48\xba\x3d\x7f\xd3\x30\x67\xfa\x65\xee\x0a\xa9\xa2\xf3\x4c\xbf\xac\xcc\x26\x74\x9e\xe9\x97\xc3\x4f\x45\xd1\x79\xa6\x5f\x76\x66\x19\x9d\x67\xfa\xe5\xcc\xac\xa2\xf3\x4c\xbf\x1c\x7e\xaa\x09\x9d\x67\xfa\xe5\xca\x4c\xd1\x79\xa6\x5f\xe6\xfe\xa0\x19\x9d\x67\xfa\x65\x6e\x10\x5a\xd1\x79\xa6\x5f\xde\x89\x71\xd3\x48\xb1\x23\xde\x76\x3e\xfc\x1f\xef\x08\x1f\x7b\xf6\xf2\x76\x3e\xf7\xed\x12\x6f\x08\xb1\x29\x63\xaf\x3d\x6c\xfd\xe3\x6d\xe3\x74\x3c\xe1\xac\xf8\xf7\x6f\x00\x00\x00\xff\xff\xfa\x9e\x80\x79\x99\x08\x00\x00"); -func _ffcd ()(*asset ,error ){_ggba ,_deef :=_ebg ();if _deef !=nil {return nil ,_deef ;};_ecd :=bindataFileInfo {_ag :"Adobe-KR-9",_bc :2173,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491457,0)};_baf :=&asset {_cd :_ggba ,_dce :_ecd };return _baf ,nil ; -};func _adfb ()(*asset ,error ){_fcef ,_dedd :=_cfd ();if _dedd !=nil {return nil ,_dedd ;};_gcea :=bindataFileInfo {_ag :"Adobe-GB1-2",_bc :2159,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491257,0)};_fba :=&asset {_cd :_fcef ,_dce :_gcea };return _fba ,nil ; -};var _gcfc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xcf\x37\x3b\x92\xa7\xb5\xaf\x4f\xf1\x2c\x87\xc5\xd0\xe9\xcc\x74\x3a\x42\x3a\x3a\x12\x33\xd3\x33\xb4\xd0\x00\xa2\x19\x40\x42\x2c\xd2\x76\x66\xab\x24\xfa\x54\xa9\xaa\x7a\xd1\xdf\x1e\xf9\xba\xb2\x00\x21\xa4\xa7\x56\x3f\xdd\x71\x3b\xff\x7e\x8f\x08\x87\x23\xc2\x7f\xf7\xef\xff\xe1\x3f\xfc\xc3\x6f\xbf\xff\xcb\x8f\xbf\xfb\x1f\xff\xf4\x87\xf1\x8f\xcf\x5f\x7e\xbc\xbf\xff\x6d\xfe\xe9\xf9\xf3\x1f\xfe\xe5\x4f\xe3\xf9\xd1\x9f\x7f\xfa\xfd\x6f\xbf\xfb\x5d\xd9\x7f\xcc\xdf\x8f\xbf\xfc\xf5\x4f\x60\xfc\xf3\xfd\xc7\xdf\xfd\x6e\x7d\xff\x8f\xff\xfa\xe7\xbf\x3c\xff\xfc\x0f\xbf\xbd\x7f\xf8\x71\x58\x6e\xfe\xcb\x1f\xbf\xb2\x3f\x7e\xfc\xdd\xff\xf4\xfc\xd3\xef\xff\xfc\x97\x3f\xfd\xeb\x8f\x7f\xf3\xdf\xcc\x3f\xf4\xe7\xbf\xfa\x31\x9f\x77\xd1\xff\x87\x3f\xcd\xe7\x4f\xbf\xff\xed\x9f\x7e\xfc\x9b\xff\xf4\xef\xca\xff\x4d\xfd\xc7\x7f\xf9\xe3\x1f\xff\xcf\xe7\x9f\x9f\xdf\xfe\xf2\x63\x87\xf6\xfc\x36\xc1\xdf\xfd\xdd\xbf\xff\xcf\xf7\x1f\xff\xfb\xfb\x9f\x9f\x1f\x7f\xf7\x9f\xfe\xdd\x7f\xf7\xc7\x7f\xfb\xf7\xff\xe5\xdf\xff\xdb\xff\x96\x7f\xf1\x9f\xff\xe5\xf9\xd3\x9f\x7f\xff\x87\xdf\x7e\x94\xff\x7a\xdb\xea\xff\x43\xfe\x9f\xff\xf5\x8f\xcf\x8f\xf2\xfd\xc2\xff\xf6\x5f\xfe\xe1\x3f\xfc\xf8\xdf\xcb\x8f\xb2\xfd\xd8\xeb\x59\xeb\xff\xf1\xd1\xff\xd7\xff\xfc\x87\xf9\xfc\xd8\xfc\x6b\xb7\xe9\xe3\x0f\xf3\xf9\xf3\x1f\xef\xf1\xfc\xe9\xfe\xed\x9f\x9e\xdf\xfd\xf8\xf1\xcb\xb6\xfd\xfa\xe3\xc7\x8f\x5f\x62\xfb\x75\xfd\x15\xe5\xdc\x7e\xfd\xf1\xcb\x7f\xfc\xfb\xff\xf8\xf7\xbf\xae\x46\xfe\x7f\xca\xff\xae\xf8\x33\xbf\xfd\xe1\x2f\xf3\x79\xa5\xf1\x0b\xbf\x94\xf7\xd7\x1f\x65\x7d\xf1\xff\xfe\xd7\xef\xca\xb6\x7d\xf5\xfe\x7e\x7e\xa5\xf7\x55\xba\x3d\xab\xf4\x5f\x6b\x8b\xd2\xe2\xd7\x1f\x65\xdb\xda\xbe\x68\x2d\xa5\xe5\xaf\x3f\x62\x0f\x8a\xb5\x5b\xd2\xfa\x6c\x2b\x7b\x2e\x5a\xf8\x69\x54\x68\xc7\x09\xed\x92\x76\xfd\xfa\x23\xae\xb0\x58\x83\xf4\x0c\x8a\x9d\xdb\xa2\x3d\x53\xda\xfc\xf5\xc7\xaa\x1b\xd2\x03\xe9\xe5\xd7\xf6\x93\x86\xbc\xfe\xda\x82\xd8\xa3\x42\xf2\xd7\x5e\x1a\xb2\xd7\xf5\x6b\xbb\x7d\xd8\xeb\x2e\x6d\xfd\xdc\x5e\x0f\x69\xc7\xaf\x3f\x32\xe2\x84\x74\x42\xba\x0a\xc5\x5a\x5b\xb4\x6b\x97\xb6\xaf\xf6\xd2\xad\xfd\xf2\xcb\x76\x50\x2c\x57\xf7\xf7\xe6\xa7\x0b\x22\x37\x2a\x68\x55\x52\xae\x62\xc7\x47\xbb\xa5\xdd\xab\xbd\x85\x4a\x5b\x97\x44\xef\x8f\x72\x40\x9b\xd2\xe6\xaf\x3f\x5a\x6b\x7e\xf9\x48\x7a\x2c\xb6\xba\xba\x3b\xbe\x40\xcb\x8b\x62\x51\x24\xed\x16\xbb\xa0\xd9\xde\x05\x71\x14\xba\x10\x36\x37\x5e\x8b\xf1\x69\xfa\x6b\x0b\x56\x01\x48\xfe\xda\x7d\x52\xec\x60\x2c\x6f\xbb\xb5\x20\x6a\x52\xc1\xcd\x2c\xec\xa3\x51\xcc\x21\x1f\x21\x2d\x56\x17\x58\x22\xfb\x48\x49\x6b\xd5\xc4\x41\x47\x87\xe3\xf1\x6c\x7c\x69\xa5\x8f\x95\x2e\x88\xdc\x68\xee\xe3\x24\x3c\xf4\xea\xdc\x98\x98\xc7\x5e\x2d\x88\xd3\x29\x7d\xec\xd5\x82\xd6\x58\x20\xfb\x63\x6b\x5d\x5b\xa7\x93\xe0\xda\x02\x32\x2a\x23\xe9\xda\xda\x5f\x66\xfe\x74\xd8\x5e\x2b\x5d\x10\xcd\x4e\xbd\xd6\xb9\x96\x5b\xd9\xce\x5d\x5a\x93\xd6\x7e\xfd\xd1\xc2\x21\x7a\xed\xfb\x82\x48\x5b\xfb\xda\xf7\x97\xbe\x17\x9a\xf6\xda\xf7\x05\xeb\xc7\xe8\xfb\xeb\x62\x58\x10\x67\x63\xd4\xde\x21\xe9\xb1\xd8\x6a\xee\xe1\x7a\x06\x16\x2d\xa0\x15\x69\x6b\xd8\xfc\xb5\xe3\xdc\x25\x9d\x16\x4b\x68\x55\xda\x9a\xbe\xa4\xa3\xc7\x79\x49\x62\xfa\xce\x63\x87\x16\xd2\x56\x17\xca\x5e\x20\xa5\xa4\x6e\x31\x6b\x18\xd2\xc6\xfa\x35\xc6\xe3\x38\x19\xdd\xc3\xbd\x76\x1e\xab\xf7\x87\x7b\x0d\x88\x93\xb5\x7b\xb8\xd7\x8e\xea\x50\x9e\x07\xb4\x26\xad\xad\x85\x1a\xb4\xad\xda\x8e\x3a\x2d\x26\xed\x91\xf6\xb0\x02\xad\xe0\x85\x74\xd9\xd3\x4a\x17\x2e\x7b\xba\x20\x0a\x33\x7f\x5c\xf6\x74\x41\xa4\xed\xb8\xac\xb3\x39\xf3\xac\xa3\xa3\x39\x6e\x0b\x62\xbb\x28\xd6\xec\x41\x73\x8c\x2e\x86\xb2\xd9\xb6\x05\xd1\xec\xbc\x8c\xf1\x70\xcf\x9f\x8d\x31\x72\xcf\x03\x91\x85\xa1\x74\xcf\x03\xab\x98\x35\x38\x94\x0b\xa2\xed\x8c\x87\x6c\x00\x58\xc5\xe8\xbc\x7c\x00\x88\x72\x51\x81\x6c\x00\x88\x2d\x68\x87\x6c\xe0\x90\xf3\x9e\x70\xb2\x43\xce\x0b\x44\xb2\xe5\x0f\x39\xef\x11\xf0\xf6\x33\x18\xb6\xb0\x0b\x0b\x22\x8b\x24\x7b\x10\xf6\xc0\x0a\xec\x41\xb8\xaf\xc2\x76\xd8\xdc\x70\x5f\x59\xa7\xad\xcd\xc3\x62\xf4\x20\x9d\xf9\x64\x97\x26\xed\x48\xa7\x2a\xed\x68\x52\x69\x7e\x9f\x3e\x6c\x3f\xc6\x23\x9d\xe5\x9b\x5e\xd5\x8d\xa1\x94\xf7\x00\x2d\x76\x2a\xbd\xed\xd5\x7d\x5b\x8c\x1a\x6e\xdb\xbb\x20\x12\xc6\x7b\xdc\x0e\xf8\x4d\xa5\xd5\x9e\xde\x56\xba\x20\x12\x56\x79\xdc\x5f\xa5\x2f\x24\x2a\xe8\x0e\xf8\x82\x48\x38\xf6\xd1\x1d\xf0\x9e\xfe\x18\x15\x74\x87\x6d\x41\x93\x91\x1d\xdd\x66\x0c\x06\xbc\x3a\xcb\xb2\x45\x20\x76\x37\xa9\x6c\xf1\x50\xd4\xd5\xa3\x21\xe7\xff\x2a\x9f\xff\xff\x44\x76\x1c\x4a\x42\xa0\x45\xd0\x4c\x39\xd3\x21\xe7\xa8\xf0\xe0\x53\xce\x71\x9e\xaf\xb4\x55\xdb\x59\xa5\x2d\x88\xc2\x48\x9f\x95\xee\x9c\x0d\x06\x73\x6d\x6b\x81\x9e\xed\xa3\xc9\x97\x4f\x48\xbb\x24\xa6\xf7\x62\xaf\x9f\x4a\x42\x20\x62\xe3\xd7\x94\x84\x67\xbb\x2c\x46\xa5\xad\x49\x6b\x2c\x16\x49\x21\x89\xf6\x5e\x27\xed\x75\x6d\x9f\x51\xa4\x05\x34\x6b\x5d\xd0\xd2\x4f\x15\x71\x67\x30\x97\x17\xcc\xfa\x74\xed\x01\x2d\x9b\xc5\x98\xcb\x33\xfd\xb5\x8b\x1a\xd2\x5f\x5b\x10\xb9\x5d\x90\xfc\xb5\x05\x4d\x41\x75\xba\x68\xcf\x1c\x7e\x49\xef\x73\x4a\x5b\x3a\xca\x06\x37\x39\x5d\xb4\xe7\xed\xb8\x35\x3e\xbd\x1d\xb7\x05\x51\x4e\x49\xd6\xb9\x20\x76\x98\xda\x79\x5b\xe7\x82\x96\xc9\xef\xdf\xd6\xa9\xf4\xbd\x9a\xc5\x1c\x4a\xa4\x6f\x3a\x2f\xee\x00\x20\x36\x67\xd4\x1d\x70\xde\xe1\x97\xcc\xcb\x9d\xd2\xd6\x32\xdb\x9c\xe5\x9b\x65\x76\x8e\xaf\x02\x3e\x1d\x56\x30\xe0\x9a\x3b\x75\x0e\x2b\x98\x70\xf4\xe6\x10\x4d\x9b\x3b\x19\x22\x14\xaf\x73\xda\xdc\xc9\xaf\x35\x36\xcf\x39\xfd\xb5\x05\x71\xb1\x79\xce\xf9\xfd\x1a\x8b\x41\xb6\x79\x4e\xdb\xbb\x20\x2e\xf4\x9d\x73\xba\x18\x66\x58\x8c\xa9\x9a\x76\x61\x41\x9c\xe1\xaf\xd9\x85\x05\x51\xd2\x76\x74\x49\xc3\x2f\x77\x68\x4e\xd5\x82\x38\xd3\x0a\x9c\xaa\x27\x2d\xc6\x88\x3f\xfe\xda\x03\xa3\xf3\xd7\x1e\x7f\xed\x61\x65\xb5\x83\xce\x3f\xdf\xa7\x8b\x4b\xec\x6c\xec\xf3\x71\x65\xbd\x9b\xc5\xa0\xbd\x4e\xfc\x8b\x44\x76\x73\xa8\x53\x9c\x6e\xc9\xc6\x12\xaf\x6e\xc9\x5a\xfd\xb4\xae\x86\x54\xf7\x1f\x10\x09\xa3\xab\x75\x97\x84\x50\x42\xcf\xa8\x8a\x55\xa0\x6c\xad\x59\xec\x94\xa6\x22\xba\x43\xaa\x92\xec\x42\x93\xf6\x48\x7b\x68\x9b\x5f\xd2\x85\x7a\xc1\x74\x54\xd9\xaa\x02\x13\x88\xab\x5e\x90\x98\xab\xea\x2e\x6d\xb1\xc6\xb2\xba\x4b\x6b\x30\xa7\xaa\x37\x55\xd9\x02\x44\x20\xa5\x6b\x84\xa4\xdb\x62\x09\xad\x4b\xeb\xe8\x89\x74\x2b\x60\xcc\xd5\x5d\x1a\x4c\x60\x75\x97\x02\x71\xf9\x6b\xee\xd2\x9a\xd5\x62\x34\x24\x6d\x6f\x72\x1e\xd8\x24\xd9\x8e\x44\x72\x87\x5d\x4d\x1b\xb2\x20\x22\x2d\xc6\xda\xaa\xb7\x95\xa2\x04\x55\xb7\x29\xd0\x5a\xa3\x6d\x6e\xd3\xda\x2d\xe6\x04\x76\x8b\x2d\x68\x81\xda\x59\xbb\xc5\x9c\xe7\x60\xe0\x2e\xe7\xf9\x3a\x59\x70\x49\x0d\xd7\x79\x4b\xbb\x7f\xfd\x91\x1b\x5a\xc5\x75\x32\x20\x97\x93\x9a\xfc\xdc\xe5\xa4\x02\xd1\x50\x17\x2e\x27\xf5\xba\xe8\x56\xd6\xd5\x90\xeb\x0a\x69\xc1\xaf\x05\x24\xba\x75\x39\x5b\x49\x1f\x2e\x67\xeb\x72\xe0\x12\x69\x7b\x39\x70\x40\x5c\x30\xf7\xcb\x81\xbb\xd6\x20\x95\x75\x2e\x83\xe6\xcf\x2d\x58\x52\x1d\x92\x5d\x80\xe5\x95\x0d\x8d\xf2\x92\xe5\x01\x71\xb1\x44\x2e\xc7\xf2\x5a\x52\xae\x94\x0d\xc9\x77\x29\xe6\x80\x38\x61\xe4\xd7\xb0\xf7\x0b\xca\x92\x15\xd0\x86\xb4\x81\xf6\x48\x3b\xc6\x94\x34\x2d\x26\xed\x91\xb6\xf8\x7d\x20\x02\xae\xc1\x92\xbe\xa6\x6d\x43\x93\xbb\xa6\x6d\x5b\x10\x0d\x81\x72\x4d\xdb\x36\xbf\x4a\x1b\x34\x2b\x9d\x54\xba\x59\xcc\x4a\x61\x22\xc1\xc9\xe7\x92\x89\x5c\x8f\x15\xc0\x68\x2f\xcf\x2f\x40\x1c\xdb\xf1\x73\xd9\x7d\x79\xbc\xb9\x9e\xc6\xaf\xb0\x09\xae\xc7\xb9\x5c\x10\x17\x3c\xe6\x7a\x1c\xfc\xc7\x4e\xa3\x4c\x5d\xcf\xd7\x80\x67\x4d\x39\x7b\xf6\x92\x15\x5d\xeb\xac\x52\xca\xc6\xf1\xf4\x7a\x5d\x40\x0b\x72\x43\x2d\xbd\x5e\x17\x10\x4b\xb4\x6c\x74\xa7\xb9\x44\x81\xc5\x42\x20\x15\x49\xfc\x5a\xd9\x2c\x76\x4a\xe3\xd7\xc2\x62\x55\x52\x58\x2c\xa1\xa5\x34\x16\x0b\xcb\xb1\xb9\xde\x81\x52\x0a\xaa\x53\x73\xc1\x03\xb9\xa1\x83\x36\x8f\x15\x40\x6b\x5f\xd3\xa6\xa4\xc7\x2f\xad\xf4\x95\xf6\xd2\x2b\xea\x54\x97\x69\x1c\x2b\x4a\x61\x35\x36\x8f\x15\x40\x6c\x30\xa7\xe6\xb1\xa2\x55\x56\x63\x61\x35\xb6\x6a\xdb\x2a\x7b\x91\x49\x68\xd5\xa6\x2d\x58\x3b\x0e\x92\x4d\x5b\x90\x2e\xbc\x56\x6d\x1a\xfc\xb5\x94\xdd\x62\x8f\x34\xe6\xa5\xf9\xfb\xb6\x76\xc1\x2a\x46\xd3\x2e\x9b\xbb\x20\x5d\x9f\xed\x72\xc0\x61\xc3\xa5\xa0\xd1\x36\xd9\x30\x90\x71\x52\xa9\x6c\xb8\x35\x7b\x00\x37\x69\x9e\x34\x80\xdc\x10\x07\xcd\x93\x46\xc3\xba\x50\x4a\x95\x66\x7b\x17\xa4\x06\x9d\xe6\xa9\x02\x58\xc5\x68\xaf\x6c\x02\x58\x34\x6a\xf5\x5c\x01\xe4\x86\xa0\x6e\x6a\x63\x40\x6e\xf0\xa6\xa6\x36\xd6\xc2\x2e\x38\x6e\x9e\x3e\x80\xdc\x90\xdd\x4d\x09\x01\xac\x62\xfe\x9a\x13\x13\xb0\x30\x54\x9e\xe6\x81\x04\x58\xc5\x98\x66\x4f\x24\xc0\x3a\x9b\x41\xb2\xa7\x61\x4f\x2f\xe6\xcf\x13\x09\xd0\x22\xfd\xd2\x9e\x2e\x48\x99\x75\x53\x2b\x6c\x4b\xb6\xac\x2f\xa1\x29\x5c\x80\xdc\x60\x9b\x4d\x15\xb0\xa5\xcd\xbd\x68\x9b\x82\x04\x88\x0b\xd9\xd2\x64\x91\x2d\x6d\xc7\xf7\xa9\xed\x48\x47\x9c\xce\xab\x29\xb6\xdb\x4a\xd9\x92\x4d\xe1\x02\xe4\x96\x7c\xa9\x0e\xd8\x6e\xd7\xb3\x6b\x5c\xed\x0e\x08\xad\x2d\xed\xb6\x1d\xdd\x5f\x73\x13\x29\x83\x80\x94\xa9\xb5\xee\xaf\x2d\x28\xa5\xc0\xbf\x5b\x77\xe7\x2e\x88\xfd\xa4\x82\xee\x5c\x75\x77\x29\xca\x68\xf3\xe4\x02\xa4\xe7\x8b\xd6\xdd\x0a\xdd\x45\xe3\xf0\x76\xc7\xb2\xb3\x25\xd1\x0b\xdb\x70\x1d\x2d\x88\xcb\x3a\x87\xcb\x68\x41\x29\x3b\x5a\x4a\x1b\xae\xa3\xc1\x3a\x42\x8d\x6d\xc3\x1e\x28\x33\xf6\xcd\x4f\x9d\xf9\xe1\x2e\x95\x64\xd3\x86\x0c\x84\x79\x51\x64\x00\x71\x55\x7f\xdf\x39\x18\xb4\x76\xe7\x14\xdb\x94\x0f\x40\xa4\x5c\x60\xda\xda\x69\xd3\xe4\x16\xca\x07\x20\x37\x27\x5e\xfd\x17\xc8\x70\xe3\xaa\xff\x02\xeb\x4b\x46\x4d\xfd\x17\xc8\x70\xf6\xd4\x7f\xdb\xb4\x53\xc5\x4f\xed\x14\x5a\xec\x5f\x7f\xcd\x4e\x61\x6a\x2a\x3b\xba\x52\xf3\x40\x07\xa4\x8c\xbd\x69\x6a\x02\x5a\xa2\x17\x35\x4d\x4d\x40\x29\xfb\x29\xcd\x0a\x16\x2c\xc5\x0a\xd2\x57\x81\xe3\x81\x20\x0c\xf9\x3f\x10\x8d\x35\x19\xf2\x7f\x20\x1a\x1b\x32\x34\x2b\x85\x22\x61\x67\x74\x43\x91\x00\x44\xfd\xbe\xac\x92\xaa\xc5\xa4\x5d\xd2\x2e\x8a\xf9\x6b\x74\x2a\x64\x3d\x3b\xcc\x22\x64\x3d\xc1\x69\xba\x1c\xd8\x4c\xc2\xd3\x34\x90\x1b\x4b\x26\x5c\x93\xa1\xb2\x70\xa0\x3e\x85\x33\x0f\xac\x26\x42\x62\xe6\x63\xd2\x5e\xed\x4a\xe1\x64\x01\xa1\xe2\x15\xce\x55\x70\x30\x29\x4b\xb9\xf9\xa9\xe0\x0e\xcf\x2d\x40\x38\xfa\xe1\xb9\x25\xe6\xe3\xaf\xd0\x9d\xf9\x4a\x63\x53\xa0\x5c\xc5\x63\x0f\x1f\x16\xcb\x69\x77\xb4\x55\x02\xb9\x21\x69\xe3\x71\xbc\xb0\x4b\x16\x0d\x9f\xe1\x19\x22\xb4\x4b\x22\x69\x43\xbb\x24\xd0\x3c\xa3\x84\x12\x3f\x30\x21\x94\xb3\x58\xec\xfb\xb5\x0b\xb1\x4a\xd3\x5c\x52\xe1\x2a\x38\x39\x66\xa5\xab\x20\x15\xd2\x9a\x0d\x53\x21\x0d\x44\x41\x2d\x4b\x85\x34\x90\x1b\x67\xbb\x54\x48\x03\xa5\x9c\x58\xf2\xf3\x7c\xa4\x21\x09\x37\xbf\x7c\x25\xbd\x16\xa3\x52\x05\x37\x90\x1b\x07\xdb\xf4\x10\x94\x68\xc2\xe5\x84\x57\xa7\x9a\x30\x10\xb5\x59\xac\x4a\x1a\x16\x93\x66\x43\x16\xc4\x55\x24\xd9\x8e\x6a\x4f\x11\x71\xa9\x48\x06\x72\x63\x74\x53\x89\x9c\x97\xbf\xc6\xaa\xcd\xcb\x5f\xbb\x10\x23\xb6\xed\xf2\xd7\x30\x90\x94\x13\xee\x9a\x1a\x48\x80\x38\x99\xbf\xd4\x40\x92\x18\xfa\xca\x89\x30\x48\x0d\x7d\x40\x0b\xb6\x4a\x2a\x91\xd3\x3d\x70\xa2\x7b\xa4\x7b\x20\xc3\x59\x80\xa5\xa7\x32\x0e\x88\xf8\x48\xfe\x9a\x5a\xfa\x09\x7b\x4d\x45\x10\xd0\xd2\x21\x57\x4b\x4f\x2c\x6c\xa5\xda\x38\x45\x10\xd0\xd2\x69\xd6\xc2\x96\x58\xd8\x4a\x85\x49\xa6\xf6\x05\x20\x4e\xd6\x5b\x2a\x81\x80\x55\x8c\xde\x2b\x82\x80\x28\x55\x92\xed\xb8\x1f\x8b\x05\xb4\xaf\x86\x17\x15\x93\xa9\xd7\x9c\x96\xee\xf6\xca\x49\x3c\xdd\xed\x40\x5c\xc8\x91\x74\xb7\x67\xb7\x0b\x87\xc5\xec\x42\xc7\x1a\x8a\x04\x4a\x25\x10\xb0\x86\x65\x91\x94\x40\x40\x6e\x9c\xa6\x53\x09\x94\xe3\xf0\xc7\x68\xee\x70\x6d\x0d\x78\x82\xad\xd5\x1a\x02\xc4\x6e\x6b\xb5\x86\x00\xb9\x6d\x8c\xd0\x70\x38\x86\xc3\xe1\xb2\xf7\xfe\x03\x58\x33\x01\xc9\xe1\xf0\xd0\x52\x5d\xf6\x1e\x5a\x80\xa6\xd5\x37\x15\x4a\xe9\xa1\xa5\x62\x1d\x4a\x0f\x2d\x40\x04\x7a\x57\x2a\x94\x72\x7e\x95\x4a\xb3\xd2\x05\xb1\x39\x55\xda\x4c\x72\xb2\x8c\xd4\xe9\x53\xd9\x02\x44\xdd\x24\xb9\x8c\x3c\x34\x54\x0e\xac\x29\x0b\x01\xe2\x90\x35\x78\x68\x48\xd9\x45\x65\xa1\xde\xb2\x0b\x60\xa9\x67\xd2\x8a\xb4\x02\x7b\x95\x44\x7b\xef\x1a\x16\x5b\x3f\x77\xd7\x94\x96\x6b\x2c\xab\xa4\x5b\x92\x46\xd3\x1d\x52\x97\xc4\x26\xba\x10\xac\xb7\x6a\x38\x10\x1b\xb3\x7c\xbb\xe7\x6f\xd5\x70\x37\xfd\xed\xa6\x07\x5a\x62\x34\xb9\xdd\xf3\x37\xf7\x99\xe5\xe2\x84\x70\x6b\xb6\x07\x22\xd0\xcf\x6e\x75\xe9\xdb\x2d\x79\xc1\x7c\x6e\xb7\xe4\xfd\x1c\xd2\x28\xe7\x9d\x13\x10\x4a\xaf\x5b\x3e\x7e\x3b\x48\x8d\x62\xdd\x41\xea\xca\xcc\x86\xc6\xda\x95\x99\x40\x4b\xf4\xb8\xae\xcc\xec\x1e\xa3\x5a\xf3\xd3\x94\xb6\x06\x49\x6b\x53\xf7\x18\xd5\x55\xfe\x35\xd5\xf4\xf6\xd1\x96\x7c\x54\x6f\xe9\x2a\xff\xdd\x3e\x04\x3b\xbc\xdb\x87\x1e\x0c\xa6\xc6\xcd\x2e\x0f\x01\x62\x47\x8c\x75\x35\xe7\x2e\xbf\x08\x98\x6a\x97\x5f\x00\xb9\xc3\x2d\xbb\xfc\xa2\xab\x77\x06\xaa\x73\x57\xef\x04\x72\x87\xd3\x74\xf5\xce\xde\xe9\x96\x8c\xab\x77\xbb\xd5\xe9\x16\x27\xc1\xee\xa6\xef\xee\x70\x95\xcc\xee\x0e\x07\x52\x8b\x4e\x77\x87\xf7\x01\x93\x0a\x56\x52\x77\x57\x02\xb9\x94\xbb\x9f\xca\xee\xee\xa6\xed\x6e\x5a\x8d\x40\xdd\x4d\x0b\xa4\x1a\x5c\x77\xd3\x02\x51\x36\x49\x36\x53\x7d\xc2\x63\x45\x57\x9f\x00\x72\x87\x21\x76\xf5\x89\xae\x55\x41\xfb\x7f\x77\x9b\x01\xa9\xee\xd7\xb5\x2a\x74\x35\x01\x6f\xe4\xba\x2b\x08\xc8\xfd\x23\xd9\xc1\x87\x7d\x9c\x30\xc9\xae\x6d\x12\x88\x06\x0f\xeb\x8f\x15\x3c\xaf\xc5\xa8\xf4\x75\xca\x17\x84\x82\xa4\x6b\x9a\xec\x2e\xd1\x64\x15\x0c\x97\xe8\x70\x89\x26\xcb\x76\xb8\x44\x81\xdc\xd1\xc3\x86\x4b\x74\x78\x10\xd7\xf0\x34\x14\xe8\x40\xd4\x63\x0d\xe5\x50\x9e\x0f\x0f\xe2\x89\xa9\x7d\x78\x10\x07\x42\xab\xf4\xf0\x20\x3e\xdc\xdb\xde\x61\x0f\xf7\x36\x10\x3b\x4a\xf3\x70\x6f\x0f\x57\x72\x72\x66\x1d\xae\xe4\x81\x80\xdc\xd5\x97\x86\x02\x12\x08\xb5\x99\xe1\xe2\x06\xca\xae\x9e\x32\x5c\xdd\x40\x9c\x28\x42\xc3\x73\x21\x10\x47\x95\x64\xaf\x16\xc4\xc9\x26\x1b\xde\x91\x03\xeb\xc7\x68\xae\x97\xe4\x40\x5c\xf0\xba\xa1\xb5\x12\x88\x82\x3e\x3f\x3c\x50\x0e\xe4\xf4\xbe\xa1\x8f\x0d\xe5\x34\xd0\xe2\xfb\xb1\x5b\xd2\x8d\x26\xe7\x97\xf6\x09\xcb\xe4\xbe\x61\x5e\x18\x5a\xd3\x80\xd8\x38\xa0\x0d\x0f\x8f\x40\x04\x9a\xc6\xf0\xf0\x08\xc4\x15\x92\x9c\x3d\x04\xfc\xbe\x61\x36\x18\x0a\xf8\xe1\x15\x1a\x1b\x61\x28\xe0\x81\xe6\x81\x64\x28\xdf\xc7\xda\x7c\xeb\x4b\x96\x8c\x82\x75\x28\x58\x39\x08\x0c\x05\xeb\x98\xb6\x16\x3d\x60\x28\xaa\x80\xd8\x9d\x3c\xcf\x4f\x40\x6b\x1c\xe3\x86\x5b\x08\x28\xbb\x46\xaa\xe1\x1e\x02\x72\xdf\x24\xd9\xda\xe9\x40\xa2\x02\x0e\x85\x1c\x10\x6a\x2d\xc3\x23\xd5\x78\xbf\x62\xf4\xca\x93\x11\xd0\xb2\x4a\xfa\x8a\xad\x85\xb5\x6b\xb7\x9a\x6e\x84\xb9\x74\xb7\xb2\x6b\x6a\x9a\xde\xff\x02\xb9\xc1\x22\xa7\x17\x5d\x40\xd9\x9d\xe5\xe9\x4d\x17\xd0\x02\x35\x79\xb6\x4b\xd2\x6d\xb1\x0b\x5a\x97\x86\x5d\x09\xcb\xf5\x54\x2b\x9c\xcd\x86\x60\xbc\x99\xae\xf0\x89\x81\x64\xd7\x46\x30\x35\x90\x00\x59\xd0\xed\xa6\x06\x92\x19\x7e\xca\x06\x9f\xae\x5d\xa0\x25\x7c\x79\xba\x76\x27\x2c\x7d\x2f\x58\x65\xa7\x2c\x1d\xc8\x0d\x4e\x36\x65\xe9\x13\x5e\xbd\x7b\x36\x9f\xf2\x6a\x20\x95\xb6\x53\x5e\x3d\x1f\xe6\x79\xb7\x0f\xda\x31\x81\x2c\xe8\xc9\x53\x2f\x0d\xa0\xec\xfb\x65\x31\x07\x0e\x91\x19\x6c\xc8\x29\xc3\x9b\x8b\xc9\xad\x62\x34\xe4\x69\xd2\x3c\xed\x32\x6e\x1a\x45\xe7\x6b\x31\x07\xc9\x13\x0c\x90\xc5\xe6\xbe\x5f\x31\x7a\xba\x73\xe0\x9b\xaf\x3d\x5d\x90\x05\x1d\xf0\x71\x9e\x1f\x0e\xa8\xfb\x8e\x1d\xfc\xf1\x80\x0a\x64\x41\xbb\x7b\x3c\xa0\x3e\xf5\x2b\xb6\xba\xf0\x54\x8b\x55\x8b\x9d\x90\xbe\x62\x4c\x96\x7e\x3c\x8f\xdc\x0d\x88\xfd\x94\x94\x92\xd2\x62\x7e\x7a\x4b\x5b\xca\x6e\xbb\x24\xb1\x42\x9e\xeb\xfb\xb5\x35\x96\x8f\xe6\x7d\x20\x0a\x63\xf4\x68\xde\x7f\x2e\x7a\x7a\x30\x0b\x8f\x47\x13\x20\x74\x62\x7a\xae\x57\x12\x7b\xf7\x60\xef\x3e\xcd\xde\x2f\x48\xed\xba\x8f\x07\x98\xc7\x35\x78\xa0\x61\x3f\xae\x41\x20\x92\x59\x78\x34\x02\x3e\xc9\x8a\x3e\xd0\x3c\x1f\x99\x14\x10\xd5\xe6\xe6\x90\xe4\xaf\xb1\x7a\x1f\x17\x17\x10\x27\x46\x9e\xe7\xb6\x82\xfb\xb0\xd8\xdf\x70\xd7\xfd\xc8\xd7\x80\x08\x94\xe6\x47\xbe\xf6\x60\x27\xdb\x0f\x98\xf5\x23\x13\x7b\x64\x62\xc8\xb3\x47\x26\xf6\xdc\xdd\x62\x7e\x6a\x3b\x6f\x2c\x06\x87\xc5\xa6\x24\x87\x35\xa4\x39\xac\xb7\x5b\x85\xc5\xe2\x59\xe6\xe9\xc3\x62\x0c\x44\xf7\xd3\x8e\xa9\x0f\xd1\xf2\xa8\xc2\x00\x29\xb3\x7e\x54\x61\x9e\x01\x8b\xf1\xf8\xff\x68\xed\x02\x22\x1c\x55\x4f\x24\xc0\x2a\xc6\xe8\x7b\x24\x01\x5a\xfb\x8a\xb9\x1a\xc7\xb0\x18\xcd\xd5\xe8\x01\xb4\x86\xe6\xfb\x78\xd6\x00\x72\xe3\xa4\xf8\x78\xd6\x78\x26\x6b\xdb\xbb\x95\x47\x06\x0b\xb4\x44\x12\x3e\xda\x39\x80\x50\x4f\x7f\x3c\x6a\x3c\x0f\x23\xa9\xa8\x7d\x54\x3e\x80\xd0\x02\xfb\xe8\x6b\xf5\xc8\x5f\x3d\xea\xbf\xee\xbb\xb7\xc2\x3a\xbc\xf7\x79\xbd\xdd\x04\xe2\xc0\xe8\xfd\x7a\xbb\x09\xb4\x60\x2b\xbe\x9e\xfe\x81\xd4\x9f\xf0\xf5\xf4\x0f\xb4\xc4\xa8\xfe\xba\x39\x81\x96\x9c\x1d\x5f\x37\xe7\x5b\x1d\xa1\xe6\xef\x4f\x69\x4b\x09\xd8\x51\x50\x5e\x8f\x0b\xef\xc5\x5a\x3c\x59\x1e\xef\x65\x9d\x17\x16\x07\x18\xd8\xab\x67\xd1\xeb\x3e\x71\x19\xbf\xee\x93\x17\x9b\xf7\xee\x0e\x78\xb5\x79\x03\xb9\x6f\x92\x6c\x88\x2c\xbd\x32\x6c\xaf\x2c\x1d\x88\xf8\x48\xec\xeb\x37\x4f\x8b\xad\xf5\xf1\xea\x24\x03\x64\xa0\x64\xbd\xde\xda\x01\x65\xf7\x48\xfc\x7a\x6d\x07\x34\x6f\x1e\x5f\xad\xd4\xaf\x1b\xb6\xa2\x55\xbc\x6e\x58\x20\x0e\xf6\xd0\xeb\x86\x05\x56\x31\x6b\x70\x90\xf0\x71\xa8\x61\x05\x0e\x12\x17\x7e\x7b\xe5\xaa\xfb\xf5\xc2\x0f\xc8\x40\x11\x78\x55\x51\x5e\x37\x47\xe5\x00\xf5\xba\x39\x80\x28\xb0\xa1\xd7\xcd\xf1\x72\x10\xdf\x2b\x5c\xed\x75\xd9\x03\xcd\x3b\xd6\xd7\x55\x0f\x94\x5d\xc3\xcf\xeb\xb2\x07\xb2\xb0\xea\x5f\x95\xfa\xd7\x9d\xa0\x81\xf1\x75\x27\x00\x4d\xb5\xf6\x75\x27\xbc\xd3\x59\x40\x62\xbe\x2e\x68\xa0\x05\x2c\xfd\x55\xad\x78\x5d\xbc\x75\xed\xf9\xdc\x58\xbc\xb9\x39\xf7\xd7\xda\x58\xb9\x85\x34\x07\x0e\x13\x77\x6e\x0c\x9c\x90\xf8\xb4\xe6\xc6\xc0\x09\x81\xcf\x65\x6e\xf0\xc3\xdc\x30\x7d\xec\xf8\x2a\xe4\x86\x64\x15\x1a\xde\x83\xb9\x61\xfa\xc8\x4d\xdd\xab\x9d\xb9\x68\xc3\x4a\x31\xab\x1f\x6b\x90\x72\x43\xf7\x12\xb2\x9c\x7c\x89\x55\x3d\x37\x39\x08\xce\x05\xb9\x31\x96\x42\x96\x75\xb4\xcb\x8d\xa1\xcc\x0d\x2b\xc1\xde\x2a\x9f\x4e\x2b\x9d\xdc\xcc\xef\xf4\x80\xe3\x8b\x90\xc5\x66\x4c\xfb\x89\x83\xe5\x8e\xaf\x6a\x6e\xcf\x47\xb3\xef\x34\xed\xb1\xef\x8f\x3d\x48\xda\xf1\xda\x83\x17\x09\x74\x5e\x90\xec\x81\x02\x9e\x9b\xbf\xdc\x10\xf0\x42\x96\x83\x4a\x11\xf0\xb9\x39\x31\xb1\xd8\x67\xea\xa7\xbc\xaa\x93\x96\xd0\x76\x69\x8b\xab\x60\x49\xc9\xb2\x8e\x37\x0b\xe8\x69\xac\x23\x4d\x16\x8c\x9b\x42\xc3\xec\x9d\x05\xe3\xa6\xb0\x8a\xf9\x6b\x53\x9a\x5e\xb9\x07\x24\xba\x55\xf0\xdd\xd8\x83\x41\x2a\x98\x2d\x85\xc4\xdf\x27\x4b\xb5\x1d\x58\x32\x77\x24\x56\x16\x78\x99\xd0\x32\x24\x55\x49\x6b\x62\x4e\x7a\x5a\xe0\x65\x59\xb0\x9a\xec\xb1\x94\xff\x2c\xa8\x10\x42\x96\xb5\x4d\xb3\xa0\x41\x08\x51\x77\x3a\x5a\xed\x94\x2c\x0f\xf7\x88\x2c\xd5\x1e\xc8\xf2\xec\x68\xb5\x07\x97\x3d\x60\x3d\x97\xcb\x1e\x5c\xf6\x80\x2f\x2f\x7b\x70\xed\x16\xa3\xb9\x97\x43\x79\xe1\xd5\xb9\xff\x5c\x70\x67\xb9\xec\xb3\xea\x4a\x1c\x34\xe0\xfa\x1a\xa0\x9f\x9f\x24\x76\x45\x69\x6c\x76\xee\x3b\xb3\x34\x07\xa2\x61\xbb\x76\x54\x71\x21\x4b\xbc\xd0\xcb\x1e\x95\xa9\x6c\x0e\xc4\xe7\x60\xcd\x10\x36\x07\x02\x65\xfb\x08\x3a\xd8\x9c\xdd\xc6\x3a\xae\x92\x1c\x1a\xf7\x75\xd8\x0e\xf7\x75\x09\xa7\xad\x32\xac\x61\x17\x02\xde\xf4\x15\x73\xda\x3c\x61\xc6\xc5\xcf\x85\x3f\xc7\xcd\x63\x1e\x34\x2d\xec\xa8\x67\xc7\xb8\x18\xd6\x74\xa4\x39\x3b\x1e\x3b\xcd\x4d\x47\x3a\x1d\xe9\xc6\xa7\xe9\x48\x73\x1b\x59\x96\x8a\x92\x25\x6d\x87\xac\x3f\x1a\x5b\x20\x1d\x90\xe4\x7c\xed\xb0\xc1\xfa\xb3\xc8\xfa\xa3\xb1\x7e\xd2\x01\x81\xf5\xe3\xf8\x94\x25\x1d\x90\xdb\x65\xc6\x2e\x2e\xb7\xcb\x0c\x87\x31\x6e\x67\xb3\xdc\x8e\xee\x8d\xa2\xea\x02\xbd\xfd\xb1\x05\x6b\xa3\x41\xf2\xc7\x64\x6a\xd8\x67\xb2\xc8\xd4\x80\xfc\xfa\x2e\x53\x03\xf2\x74\x19\xf7\xef\x4b\x26\x01\xf7\xb6\x2c\xdd\xc5\xc0\x8d\x22\x57\x0a\x59\x64\x7d\x45\xed\x09\x6f\xfb\x2c\xc3\x21\x1a\x0c\x91\x7d\x1f\x0e\x91\xc2\x20\xdd\xea\xc3\x79\x19\x9a\xf2\xe9\xc1\x70\x5e\x06\xac\x29\xdd\xc3\xd3\x1a\x26\x2e\x91\x29\xc9\xa9\xc2\x04\x8b\x19\x21\xcb\x74\xaa\x38\xd7\x5e\x32\x84\x69\x33\xb0\x0d\xed\x09\x43\x2f\xd3\x76\x4c\xb5\x16\x56\xd1\x74\xc9\xa8\x77\xa5\x0c\x61\xba\xc2\x17\xc4\x37\x92\xd3\x09\x55\x4e\xa5\x53\x35\x9d\x51\x6c\xbc\xa7\x33\x35\x9d\xa9\xa9\x07\x29\xa3\x36\x1d\xef\xe9\x48\x7e\x34\x47\x72\x3a\x92\x0c\xc7\x63\x3f\x3d\xc5\xa5\xbb\xff\xb1\x57\x9c\xe2\x8e\xc6\x10\x3d\xf6\x0a\x5f\xb9\x1d\xd7\xa5\x2c\x8f\x35\x2c\xc8\x6f\x5b\x3d\xce\xa8\x4c\x3e\x5d\x1f\x32\x79\x20\x3e\x3e\x2a\x93\x07\xca\x9e\xce\xd5\x6b\xa5\xaf\x61\x16\x92\xac\x54\x26\x9f\xc8\x29\x03\x39\xd2\x28\x88\x3d\x91\x53\x46\x41\xe4\xde\xd7\x58\x1e\x1b\xf3\xb7\x73\x83\x2d\xc4\x65\xb1\xce\x58\xee\x58\xdf\x0f\xcc\x0b\xb9\x3b\xf5\x40\xe0\x5f\x9d\x3b\x1a\xb1\x50\x0e\x4e\xfa\xb9\xbb\x1a\x80\xc4\x75\x32\x77\x57\xc3\xce\x3c\x1f\x1c\x89\x73\x77\x9e\x81\x8c\x2a\xa9\x4a\x5a\xed\x3d\x38\x76\xe6\xee\x34\x00\x71\x5e\x90\x9c\x06\x20\xf6\xa5\x8e\xa4\x51\x10\xb9\x73\x86\x3d\x0a\x8b\x97\x18\x80\x0f\x02\x37\x82\x34\x12\x20\x0f\xae\xd2\x0e\xf5\x8c\xa3\x4a\xc3\x9f\xb7\x6d\x07\xa4\x22\x69\x50\x0c\x4e\x76\x28\x0c\x80\xd8\x18\x72\x3d\xeb\xf3\xb8\xfc\x35\xb6\xe9\xd1\xfc\xb5\x86\x4f\x10\x73\x8a\xb3\xfc\x02\x46\xbc\x04\xbf\x26\x7f\x06\x1a\x86\xe0\x3c\xe4\xcf\xb8\xaa\x97\xa3\xc0\x07\xf4\x55\x4f\xdc\xc7\x17\x8d\x9f\xc3\x42\x27\xc4\x59\x2c\x66\xdb\xd0\xa8\x8e\x5d\x5a\x7e\x34\x4e\x56\x76\x41\x8d\xea\xc0\x43\xf6\xd8\x77\x46\x84\x93\xa0\x90\xd8\x9f\x52\x1f\x71\xa1\x1c\x3b\x62\x47\x27\x71\x21\x76\x7f\x8d\xc3\x61\x1e\xfd\xb0\xd8\x5a\x70\x07\x96\x6b\x21\x02\x0d\xe2\xe8\x56\xb0\xd6\x53\x39\xb8\x5f\xcf\xa3\x7f\x9f\x7a\xf9\x45\xaf\xb0\x99\x24\xde\xdf\xe5\x20\x0e\x29\x75\xff\x16\x72\x43\x78\x1c\xb2\x3c\x60\x15\x63\xe0\xba\x3d\xed\x28\x1a\x0e\x6f\xb7\xa7\xe8\xbf\xc7\xce\x1a\x3c\x54\xda\x80\xc0\x4b\x23\x8f\x61\xaf\x70\x72\x38\x38\xd4\xe4\xe1\x8a\x06\xe2\x70\x02\x5d\xd0\xc7\x74\x40\xae\xfc\xb9\xe8\x3e\x64\x45\x40\x6e\x95\xb1\x91\x13\x1d\xd3\x1e\xb2\x7d\x0e\x95\x46\xa0\x85\xbd\x51\x69\x04\x1a\xd6\x8d\x3c\x54\x1a\x0f\xdc\xe6\x0e\x4c\xbc\x79\xb8\xe0\x81\x26\x53\x38\xe4\x44\xc7\xe3\x84\xa0\x23\x1d\x8f\x13\x82\xf1\x88\x80\xa1\x3c\x1e\x27\xc4\x7b\x73\xf6\xdd\xf1\x38\x34\x4f\xf8\x25\xcd\x7d\x9c\x90\x07\x23\xe1\x57\xc1\x2d\xc9\x1e\x84\x9f\xda\x03\x8c\xea\x78\xbe\xe7\xf1\xd8\x03\xce\xb5\x98\x12\xf3\x78\xbe\x1e\x4c\xbc\x08\xed\x80\x53\xf4\x38\xf6\x21\xcd\xb1\x5f\x10\xfb\x45\x07\x64\x88\x40\x39\x76\x64\xcb\x21\x47\x04\x42\x75\xf6\x90\x21\x1e\xaf\x7d\x77\xf3\xbc\xf6\x9d\x0b\xb9\xcd\x99\x7c\xed\xfb\x8b\xc1\xd1\xbe\xbf\xf6\x1d\xff\x8f\x63\x4f\x2b\xb5\xa3\x0b\x5a\xd8\xdc\xd7\x7e\xca\x60\xb8\xf5\xc9\x43\x06\x03\x84\xcc\xc4\x80\x81\x3c\xb9\x15\x38\x8e\x4d\xda\x29\x8d\x76\x54\x49\x55\xd2\xb0\xd8\x09\x6d\x4a\x9b\x9c\x50\x24\x3d\x92\x60\x30\x47\x59\x3d\x35\xfc\x40\x68\xed\x92\x54\x24\xa1\x16\xb1\x39\x4f\x55\x68\xa0\x25\xab\xe8\xc4\x40\x20\x04\xf6\x9d\x3c\x55\xaa\x81\xf5\xfb\x16\xb3\x69\x15\x8f\x76\xa4\xf4\xa9\x56\x7d\x62\xab\x3b\xb0\xae\xe5\x89\xad\x4e\xc8\x8d\x9d\x73\xaa\x68\x9f\xf5\xb6\x98\x35\x74\x69\x9e\x8a\xfc\x72\x48\x1a\x70\x48\x86\x43\xde\x0a\xe4\xf6\xf5\xc9\xae\xe3\x7f\x70\x10\x86\x97\x27\x77\x91\x42\xe0\xe0\x90\xe7\xe5\x68\x5c\x8e\x37\xd2\xec\x54\x6d\x06\x72\x83\xbb\x9c\x97\x9d\xc2\x4b\xf0\x38\xe0\xde\xe7\x65\xaf\x70\xd6\x3e\xe0\x55\x27\x5e\x82\x79\xa2\x70\x1f\x87\xcd\x55\xe1\x3e\xb5\x0f\x56\x2b\xb5\x1d\x04\x41\x1d\x07\xf2\xdd\xd8\x0e\x21\x30\x2a\x27\x71\x1e\x1f\xac\x62\xfc\x5a\xb3\x6d\x8d\xb6\xa1\xfb\x1a\xee\x21\xac\x62\x34\x44\xf1\x70\xaa\xbe\x87\x5f\xda\xb6\xe6\x24\xa0\xd5\x1a\x02\x22\x24\xde\xbf\x79\x36\x27\x01\x2d\xff\x38\xd0\x13\x4f\xb5\x7c\x20\xb0\xe6\xe4\xa9\x96\x6f\xf0\xc8\x21\x9b\x33\x78\x44\x88\xc6\x46\x20\x90\xe4\x83\xd8\xd9\xca\x86\x93\x08\x51\x5d\x46\x61\x47\xf1\x67\x3f\x8e\xd3\x2f\x6d\x2e\xfe\xec\x18\xb7\xf3\x0c\x5b\x8b\xe1\x06\x83\x7a\x9e\x61\x6b\x31\x8e\x1c\x87\xbf\x76\x5b\xe7\x82\xd6\x38\x9c\x19\x00\x92\x27\xf7\xa6\xc7\x81\x92\x7f\x76\x2b\xed\xd8\xbb\x90\xbd\xa7\xd2\x07\x28\xc7\x61\x0d\x8a\x1f\x20\xaa\x2b\x5c\x6d\xe7\xec\xf6\x1d\xce\x73\xaa\x36\x03\xb1\xa3\x87\x9e\xaa\xcd\x40\x6b\x36\x4d\x8b\xc1\x89\x07\xd5\x71\xa0\xc6\x9c\xc3\xe5\xbc\x20\x89\x2d\xcc\x53\xad\x99\xf8\x8c\x72\xe0\x03\x92\x06\x68\x08\x11\x6e\x21\xf5\xd0\x73\xb2\xbb\x4f\xd7\xae\xaa\x0d\xd0\x22\x29\x26\xa7\x37\x08\xe2\x38\x91\xda\x06\x41\x64\x75\x05\x9e\x88\xed\xea\x0a\x04\x02\xcf\x96\xac\xae\x40\x83\x0f\x8e\x8a\x71\xc4\xe0\x83\xac\x84\xbc\x1e\x95\x8d\x55\x9d\x40\x20\x88\x2e\xca\xea\xc1\xad\x72\xfd\x71\x60\x52\xcb\xaa\xfe\x50\x8d\x31\x83\x15\x57\x2d\x32\x40\x2a\x5f\xea\x6d\x05\x4e\x16\x9e\x16\xa9\x83\xbf\xd0\x02\xbd\xae\x3a\x59\x95\x63\xcf\x51\x2f\xda\xe6\xb1\x07\x08\xad\x1e\x55\x1d\xa0\x2a\xa2\x2b\xfc\xa8\x2a\xa2\x81\xc4\x2a\x9d\x55\x11\x0d\x94\xa3\xda\x7b\x95\x4e\x20\x97\x8e\xf5\x53\xa9\x5d\x3d\xa1\x00\x79\xb0\x89\xab\x27\x94\xaa\xe6\x5a\x6d\x93\x9a\x2b\x10\x57\x95\xc4\x32\xab\xcf\x57\xff\x9a\xb8\xea\xc4\x01\x79\x84\x24\x2b\xe0\xe2\xe6\xb8\x9c\x10\x2e\x6e\x84\x28\x8e\x03\x17\x37\x59\x15\x7a\x17\x7c\xbf\x2a\xf4\xaa\xe1\x31\xd7\x05\xc9\x5f\x7b\x59\x67\xd7\xce\xb0\xbe\xdf\xa7\x81\xb3\x0a\x83\xcf\x3d\x5e\x56\x45\xd7\xe5\x02\x52\x74\x55\x75\x63\x56\xad\x01\x17\x49\xa4\x44\x39\x2e\xb8\xda\x25\xe7\x07\xf2\x2c\x92\x68\xee\x85\x8f\xd6\x61\xef\x2f\x0d\x04\x97\x3e\x5a\x21\x69\x4a\x62\xde\x2e\x04\xb2\x91\x14\xa9\x0f\xfd\xa1\xe1\x4f\x1f\xfa\xc4\x57\xbb\x1c\x9a\x84\x74\xd6\x16\xf2\x60\xe9\x35\x2e\x73\xb2\x5d\xd4\xea\x12\x6d\xd7\x90\x86\x20\xb9\x2a\xa4\x29\x89\xae\x72\xa3\x98\x4d\x06\x0e\xa4\x3c\xbd\xc9\xc0\xf5\xdf\x3e\x02\xf1\xa8\xff\x76\x36\xc2\x3c\x8e\xe0\x84\xd6\x30\x18\x0b\x89\xd5\x37\x9b\x46\x03\x20\x1a\x0a\xb9\x5e\xcd\xa9\x0b\xf3\x81\x13\x4e\xea\xc2\x2c\xb4\x40\x27\xd5\x85\x39\x75\x61\x3e\xb4\x54\xea\xc2\x2c\x04\x57\xda\xa9\x0b\x73\xea\x26\x7c\x10\x51\x9a\xba\x09\x0b\x79\x60\x1e\xd1\x4d\x38\x1b\xd1\x0d\x87\x87\xc7\xa6\x4a\x05\x44\xb3\x1d\x6a\x54\xfa\xc5\x1e\x58\xf7\x53\xbf\x58\xa1\x25\xea\xbd\x7e\xb1\xa9\x77\xeb\x91\xcc\x8c\xde\xad\x89\x8f\x6a\x39\x71\xdd\x4a\x9d\x54\x85\xe4\x62\x2c\xf5\x51\xcd\xc0\x07\xe7\xc4\x15\x31\x03\x1f\x1c\x21\x1a\x4c\x37\xf0\xc1\xc9\xc0\x0f\xe2\xdc\x58\x98\x81\x1f\x84\x10\x1b\x1c\x36\xd4\x6e\x02\x47\xc1\x73\x2b\xd4\xe0\xf9\x09\x48\x45\x7c\xc8\xeb\x80\x72\x6e\x08\xef\x90\xd9\x01\x71\xc2\x76\x42\x69\xab\xb3\xec\xf9\xd5\xe0\x3c\x03\xe5\x54\xff\x0d\xc5\x1c\x90\x5c\xe4\x65\x28\xe6\x02\x77\x89\x53\x2d\x22\x70\x97\x10\x5a\x62\x1c\x0a\x0f\x63\xe1\x61\x6c\xb3\x02\xa6\x3e\x16\x4b\x2c\x27\x71\x45\x19\xf2\x44\x60\x1d\x42\x21\x59\xe7\x9d\x14\x0b\x3e\xd5\x60\x04\x84\x87\xe9\xd0\x60\x14\x1c\xd7\x4f\xee\x75\x33\x14\x60\x40\xe0\x12\x99\xe1\x71\x1d\x88\xe2\x97\x1e\xb2\xf4\x0a\x3e\x8b\x6d\x93\xc1\xea\x15\xac\x1a\xa4\x57\x70\xc6\x3a\x16\xad\x62\x74\xd4\x73\x11\x10\xb8\x22\x67\x0c\x7f\x6d\x30\x1e\x84\xb8\x27\x9e\xc4\x1f\xb4\x86\xde\xa9\x3f\x71\x06\xf6\x80\xb3\x58\x83\xbc\x19\x08\x7c\x29\x33\x64\xcd\x41\x8c\xe4\x59\xe0\x3f\x21\xa7\x05\xa2\xb9\x40\x64\xb4\xf1\x58\x0c\x5d\x31\x34\xae\x00\x71\x38\x6c\xcf\x57\x8c\x3b\x27\x76\x8c\xce\xc1\x42\xaa\x7a\xe9\x1c\x9c\xc1\x81\xe3\xd4\x90\x1f\x6e\x0f\x20\x55\xe4\xc2\x03\x87\x3e\xc4\x67\xb1\xf3\x32\x5a\x7d\x88\x4f\x17\xa5\xe6\x16\x3d\x81\x4f\x4d\x04\x7a\x02\x67\x9e\x36\x97\x99\x4f\x0d\xe8\x40\x6c\xcc\x7c\x7a\x1e\x48\x37\x16\xbe\x0b\x99\x6e\x2c\x20\x88\x3d\xce\x74\x63\x25\x3a\xeb\x59\x30\x59\xe6\xf5\xd1\x60\x48\x8c\x47\xca\x2c\xf1\xb6\x2d\x27\x4e\x1f\xa9\xbb\xad\xd0\x02\xe5\x3c\x65\x79\x89\xfb\xc5\xa9\x89\x20\xd5\x3c\x81\x54\xf1\x4c\x15\xcf\x44\x7d\x3c\xf1\xcc\xca\x54\x7d\x04\x02\x0f\x92\x4c\xd5\x47\x20\xb9\xd2\x4e\xfd\x74\x53\xa7\xdc\x73\x67\x81\xe8\x94\x9b\x19\x56\xca\x6a\x48\xcd\xbf\xc0\xda\x71\x90\xac\x94\xb8\xfa\x93\x98\xee\x4c\x35\x43\x20\x97\x76\xfe\x53\xe1\x8d\xeb\xef\x02\x07\x82\xc9\x4c\x8d\xc8\xf9\xb9\x29\x1d\x90\x1c\x08\xec\xca\xe7\x6e\xaf\xb5\x2b\x03\x41\x4c\x55\xa6\x76\x65\x1d\x85\xcf\x1d\x3d\x5a\x47\xe1\xfc\x1c\x85\xd3\x62\x56\x7a\x5b\x8c\x45\xa5\x1f\xaf\x90\x07\xa7\xc7\xbc\xbf\x62\x6c\x8b\x1d\xbd\x5f\x3f\x5e\x21\x3d\xef\x65\xb7\x1d\x5d\x4e\x47\xd3\xba\xed\x40\x9b\x3a\xf7\x4b\x9a\x6b\x0a\x97\x41\x75\xf7\x54\x9b\x02\x92\x20\x97\x4c\x35\x5f\x20\x35\x96\xa7\x8c\x23\xb1\x9e\x9c\x3b\xba\x46\x6a\x3d\x01\x52\x0d\x5c\x37\x61\x21\xf1\x92\x48\xdd\x84\x85\x72\x7a\x17\xa2\x9f\xb0\x90\x87\x13\xae\x82\x0c\xac\x62\x0c\x87\x77\x6a\x40\x7a\x38\x48\xad\xcf\x78\xfb\xae\x62\x74\x6a\x38\x6a\x83\x51\x43\x49\xc9\xe1\xa8\x0d\x67\xd4\x79\xd1\x06\x09\xe4\xe1\x78\xab\x0e\xea\x01\x7c\xe2\xbf\x92\x7a\x00\x0b\xd1\x9c\x64\x95\x3b\x3c\x7c\x57\x31\xba\xa5\xdd\x37\x8d\x87\x76\x31\x6a\x92\xc9\x69\x4f\x61\xb8\xa9\x56\x0e\xc4\xe9\xaf\xa9\xdc\x25\x7e\x88\xe7\x81\x4a\x9b\x32\x9d\x94\xe9\x9c\x92\x1c\x71\x62\x15\xcf\x03\xe9\x98\x6a\x77\x40\x7a\x90\x4b\x8d\x2d\x89\x7b\xc0\x79\x6c\xd2\xdc\x50\x0b\xf2\xe0\xb4\x9b\x9a\x51\x74\x3b\x3e\x8f\xc2\x34\x6b\xe5\x00\xd2\xf3\x9e\x6e\xc7\xa9\xdb\xf1\xe9\x41\x5c\xb7\xe3\xbc\x09\xa7\x3d\x1d\xdf\x5b\x99\x0c\x04\x31\x0f\x79\x7b\xb7\x77\xe3\x87\x78\xda\xb8\x5b\x8d\xef\x36\xcf\x08\x7a\xd6\xed\xe9\xff\xbe\xec\x3d\x6b\xfc\xf6\x8c\x0d\xe4\xf7\x6b\xb2\x2b\xa0\x9c\x07\x07\xfb\x5b\x7e\x05\xc4\xf6\x15\xf3\xd7\x14\xfa\x07\x5a\xdb\xad\xd0\x07\xa2\xda\x0e\x85\xfe\xcd\x41\xf9\x3c\x60\x88\xb7\xfc\x0a\x08\xb9\xda\xed\x41\x19\x68\x19\x7e\xf9\x55\xe0\x80\xb0\xde\xf4\x4e\xce\x3b\x9c\x19\x4e\x11\xb7\x27\x54\xa0\x35\x2b\x90\x0f\xdd\xe1\xcc\xa0\xc7\xde\x0a\x7d\x20\x8f\x6a\x31\x66\xe6\x96\xab\x1c\x1c\x13\x6e\xb9\x0a\x90\x07\xf7\x6d\xb7\x5c\xe5\x4e\x07\x84\x03\xe4\xad\x46\x09\xe4\x51\xfd\xd2\x76\x24\x93\x75\x62\x93\xbe\xe5\x34\x40\xca\xca\x6e\x6f\xa6\x80\xc4\x09\x33\x6f\x6f\xa6\x6e\x8e\x6d\xe7\xb9\x49\x7b\xa4\xa1\xeb\xb3\xe9\x6f\x8f\x6d\x37\x4e\x92\xa7\x7a\xcb\xed\x21\x1b\x88\xd3\x49\x50\x3d\x05\xa2\x58\x81\xea\xe9\xad\xda\x72\xb2\x04\x6f\xb9\x1b\x10\x87\x15\xa8\xb6\xdc\xea\x01\x64\x08\xca\x5b\x3d\x00\x48\x62\x84\xf3\x76\x9b\xde\x5c\xec\x9c\xa7\xbd\xf2\x62\x07\x88\x28\x92\x1c\x22\xb7\x2e\x59\x67\xf2\x76\xeb\x02\xe9\x19\xfb\x76\xeb\xde\x8f\xbd\x42\xee\xdd\x9e\xb8\x80\xf8\xe6\x45\x0d\x42\xbf\xf4\xf3\x44\x4c\xeb\x97\x2e\xc4\x89\xa6\xaf\x5f\xba\x90\x5f\x47\xdd\xcd\xba\xaa\x9f\xa4\xb5\x49\x5d\xd5\x53\xaf\xf1\xf3\xa4\x06\xbd\xc6\xb3\xcb\x91\x2a\xc7\xf3\x6e\x57\x81\x2c\x1c\x2f\xba\x1c\x49\x97\xe7\xf3\x62\xef\xea\xf2\x2c\x24\x01\x8c\xa9\xcb\x73\xea\x7d\x7c\x92\xd4\x23\xf5\x3e\xce\x41\xda\xa0\xf3\x82\x35\x0e\x0d\x7c\x40\xc8\x06\x87\x06\x3e\xdc\x86\xcb\xd9\xe0\x52\x43\x33\x1d\x10\x2e\xf2\xe1\x7d\x38\x90\xe5\xfb\xb2\x4b\xea\x7e\x29\x6d\x48\x53\xd9\x3d\x21\xd1\xb6\xa1\x5a\xd1\x58\x48\x43\xb5\x02\x88\x75\xc6\xfd\xa9\xe8\x1e\xee\xe2\xd1\x6c\x26\x07\x9c\xa1\x21\x0b\x68\xcd\x0e\xaa\x88\xe8\xd6\x7c\x36\xf4\x74\xdd\x9a\x73\xe0\x48\x74\x7a\xc9\x3a\xd4\x27\x80\xd8\x50\xfe\x86\xe6\xa8\xc1\x19\xed\x6c\xc8\x8d\xe1\x19\x6d\xe8\x73\x02\xf3\x1f\x6e\x95\x41\x2e\x9c\xb3\xb1\x94\x87\x4b\x19\x88\xca\x26\x18\x5e\xd9\x0e\x22\x2d\x4f\xd2\x30\xe4\x50\x58\x01\x41\x8a\x8f\x1c\xea\xc7\x03\xdb\xc5\x19\xc5\x62\xaf\x34\x3c\x4d\x91\xa3\xc3\x7d\x31\x9e\x6a\x31\x68\xae\x34\xa0\x35\x96\xc1\xd0\x4e\x00\x84\x52\x79\x28\x49\x86\x62\x23\x10\x4c\x43\xb1\x01\xb4\xb8\xfc\xd2\x8e\x72\x56\x3c\x03\x25\x74\x78\x56\x1c\x46\xc2\x73\x2a\x1e\x2a\xc3\xf8\xf8\xae\x62\x0c\x88\x66\x6f\x20\xb6\x22\xc9\x0a\x5e\x7f\x8d\x3d\x3b\x34\x27\x00\x41\x32\x81\xd4\x2d\x38\x27\x0e\x26\x27\x79\xc3\x72\xea\x60\x02\x04\x59\x90\x72\xaa\x1f\xcf\xd3\xce\xb3\x55\xa6\x9a\x2f\x10\xfb\x65\xb1\x26\x09\xaf\x96\xef\xcb\x90\xc4\x94\xea\x47\x30\xb5\xa1\x4f\x6d\xe8\x34\x77\x6a\x43\x9f\x1e\x3c\x71\xce\xce\xe9\xc1\x13\x08\x6d\xe8\xd3\x83\xe7\xc4\xb1\xe3\x0c\xf4\xac\xa9\x63\x07\x10\xc4\x4b\xe6\xd4\xb1\x63\xe2\x68\x7a\x06\x52\x63\x2a\xbe\x80\x20\x5e\x2a\x27\x8e\xa6\x42\xec\x1c\x59\xe7\x75\x4b\x72\xd8\xc2\x5f\xb3\x6d\xd8\x96\x03\x8d\x64\xaa\xa7\x4f\x65\x61\x70\x12\x9f\xca\x42\x20\x48\xf0\x91\x53\x59\xa8\x37\xf5\xa9\xa1\x50\x6f\x6a\x21\x88\x77\x4d\xbd\xa9\x53\x6f\xea\x13\x67\xf5\xd4\x9b\x5a\x88\xed\xfb\x72\x48\x62\x28\x09\x81\xcb\xa9\x01\x07\xc8\x8b\x85\x8a\xb7\xf5\x07\xab\x18\x34\xf7\x1f\x4e\xd5\x8b\xc6\xcf\xa9\x89\x4f\xc3\xcd\xd9\xba\xd3\xa3\xf3\x0c\x6b\x28\x16\xb3\x06\xc2\x0a\xc8\x3d\x90\x53\x7d\x7d\x2a\x46\x49\x1f\x95\x53\x31\x0a\x64\x41\xa5\x9c\x8a\xd1\xa9\x72\xae\x0f\xc2\x54\x39\x07\x42\x49\x32\x15\x99\xf3\xf6\xd7\xd0\x79\xa6\xc7\x6e\x20\x0b\xdb\x74\x2a\xf8\x80\xf0\x9c\x35\x15\x7c\x93\x2b\xd0\x53\x1b\xc9\xf4\x0a\x14\x48\xef\x0f\xa7\x57\xa0\x13\xff\xd8\x33\x61\xe0\x53\xde\x00\x64\x09\xeb\xb4\xa3\x37\xf1\x13\x2e\xb7\xdb\x8e\x92\x18\xe5\x24\x6d\x49\x4e\x55\x7d\x20\x70\xcd\xce\xa9\xa6\x0f\x44\x41\x17\x9d\x6a\xfa\x93\xa8\x9f\x33\x4f\x69\xdf\xaf\x21\xe1\x5d\x33\x2a\xec\x93\x1b\xd0\x33\x39\x9f\x4e\x6f\x40\xa7\x1e\x80\xae\x40\x4f\xfa\x53\x4d\x3c\x91\xfa\x53\x4d\x7c\x9a\x78\xd0\x59\x96\xb9\xcd\xe1\xf4\xb9\x89\xb4\x72\x03\xe9\x6d\xcc\x54\x39\x9f\xd3\x5e\x21\x59\xa7\x42\x0e\x48\x2f\x46\xa6\x27\xfd\x49\xe8\xc2\x99\x8e\xb8\x06\x54\xa0\x05\x1a\xda\x54\x11\x98\x8f\xd3\xe7\x12\x54\xed\x06\x42\xbb\x9a\x6e\xf4\x42\x1c\x08\x7d\xdd\xe8\x73\xbe\x7e\xe9\x2c\x6b\x3f\x9d\xda\x4f\xdd\x1d\x1e\xeb\xa7\xea\x34\x51\x87\x39\x55\xa7\xa7\x51\x7c\xb2\x23\xd5\x69\xdd\xe8\xeb\xb7\xc1\xb5\xa1\xe9\x46\x1f\x97\xc5\x5c\x0c\x5c\x24\xd6\xcd\x4d\xe4\x45\x22\x10\xde\x60\x4f\x39\xea\x5c\x5c\x74\x15\xb3\x6d\x0e\xe5\x8b\xdb\xe8\x57\xa9\x43\x89\xd0\xaf\x04\xdb\xa6\x1e\xf8\xf9\x60\x38\xa8\xda\xd0\x1e\x0d\x07\x40\x90\xa2\x20\x75\xca\x4f\x1c\xf1\x4b\xd5\x86\xf6\xc8\x2c\x81\xa8\x5f\xb1\x94\x84\x80\x85\x7d\x3e\x1e\x08\x1e\x5c\x8d\xeb\x56\xea\xcf\x45\xf7\xe3\x45\xe3\x63\x9e\x25\xce\xc4\x8f\x7a\x08\x50\x2a\xb9\x6b\xf2\x51\x11\x79\x74\x45\xe6\x22\xe9\xf1\xa2\xd1\x40\x81\xaa\x47\x85\x81\x02\x42\x78\x7c\x34\x50\x20\x9f\xea\x78\xed\xd2\xa6\x34\x24\xb7\xbd\xf1\xbe\x10\x48\x2f\x97\x1e\xaf\x0b\x1f\x58\x7a\xdd\xd0\x2a\x1e\x59\x3a\x10\x64\x34\xcb\x47\x96\x0e\xac\x62\xfc\x9a\xbe\x7a\x40\xea\xd0\xf4\x78\xab\xf8\x5c\xae\x02\x58\xc2\xe3\x59\x06\xc8\x12\x7e\xe9\x40\x63\xa8\xae\x1b\x07\x97\x47\x43\x35\xd0\x1a\xa6\xc4\x47\x43\x35\x51\x07\xa5\x6e\xa7\x0d\xf9\xda\xfb\x32\x46\x7c\xa9\x37\x09\x91\x06\xab\x18\x35\xc8\xfa\x81\x20\x72\x31\x1f\x4d\x9f\xc0\x2a\xc6\x18\x69\xfb\x04\x52\xd6\xf1\x28\x20\x80\x24\xfb\x57\x3e\x0a\x88\x07\x01\x51\x35\xa4\x3e\x0a\x08\x20\x4b\x93\x64\x0f\xf4\x00\x44\x8c\x3c\xca\x07\xa3\x1f\x2a\x5e\xee\x69\xf4\x43\x3e\xe1\x02\x85\x09\x3f\xda\x7b\x1e\xed\x3d\x8d\xa1\x54\x3f\x03\x56\x31\x7e\x4e\x05\x0d\x48\x0d\x98\x8f\xa7\xb1\x27\x9d\x3f\xc7\x4d\x61\x00\x84\x9a\xea\xa3\x30\x78\xd2\x75\x04\xd3\x79\x34\xdc\x03\x49\x24\x50\x3e\x1e\xb3\x80\x2c\x2e\x54\x8f\x59\xcf\xed\xe8\xc2\x87\x1e\x85\xc1\xe3\x29\x88\x1d\xfb\x28\x0c\x88\x99\x28\x55\xf3\xd0\xa3\x8f\x0c\x10\xa4\xda\x48\xe3\x27\x92\x98\x89\x55\x8c\xe1\xd5\x14\x04\x44\x45\x2f\x7a\x3c\x2c\x19\x2c\x51\xb5\xfb\x1a\x2c\x21\xa4\x5e\x3e\x06\x4b\xe4\xd3\x5d\x95\xf0\xab\x47\x69\x00\x44\xb5\x02\xa5\x01\x10\x3b\x8a\xe8\xa3\xdd\xe7\xe9\x8e\xae\xd3\xac\x79\x18\xc8\xf2\xfd\x98\x9d\x7f\x9d\x2b\x47\x5c\x4e\x07\xc4\x85\xfa\xf4\xe8\x1e\x61\x44\x42\xd5\xaf\xd1\x88\x84\x7c\xc9\x5b\x50\xbd\xb2\x7a\x55\xb3\x80\xa8\x4c\xf3\xab\x96\xf5\xba\xc6\x55\xb0\xdf\xeb\xa3\xbd\xd4\xb0\xc6\xed\x75\x8d\x1b\x1e\x50\x77\x69\x2e\xa4\x97\x9c\x66\x95\x70\xa9\x7c\x9d\x67\x20\x76\x8c\x63\xaf\x8e\x9e\x38\xef\x97\x4a\x66\xc0\xd4\x7b\x5f\xc8\x13\x13\xe9\xab\x6a\xf0\x3a\x81\xc4\xa5\xe7\xeb\x04\x02\x49\x64\x62\xbe\x4e\xe0\xeb\x04\xaa\x77\xbe\xf7\xf7\x29\x26\xbf\xaf\xd8\x2d\xa9\x5b\x8c\x4a\x15\xfa\x40\x92\x02\x22\x5f\x85\xfe\x3b\xbe\x5f\xe3\x53\x25\x2b\x10\x0d\x93\xdf\xab\x64\xd5\x05\xbf\x6a\x6e\xd2\x05\x5f\x48\xb2\xcd\xa5\x2e\xf8\xf9\x22\x0b\xeb\xce\x12\x79\x95\x85\x40\x9c\xfe\x9a\xb2\xf0\xc5\x43\xa7\xea\x34\xff\xea\xa1\x03\x34\x6f\x9e\x5f\xcf\x08\x2f\x07\x82\xaa\x31\xe8\x7d\xbe\x1a\x1e\x2a\xdd\x21\x39\x59\xc8\xc7\xaa\x09\xf1\x55\x3e\x02\x4d\x35\xf9\x75\xd5\xbc\x4a\x34\xaf\x4f\x5e\x25\x1a\x10\x27\xb7\xb6\xaf\x12\xcd\xf0\x80\x8a\x41\xeb\x36\x3c\xe0\xde\xb0\x98\x57\x8c\x83\xf7\xc6\x89\x40\x08\x42\xeb\xef\x0d\x8b\xf9\xbd\x71\x48\xa8\xf8\x6a\xdc\x1b\x52\x4e\xc8\xf3\xf0\xcb\x26\x29\x2c\x16\xd0\x52\x9a\x43\x6e\xb1\x5b\x92\xbd\x5f\xbb\xf2\xde\x58\xbe\x42\x23\x65\xdc\xbd\xb1\x7c\xef\x4d\x31\x86\x61\xe6\xde\xaa\x0d\x21\x9f\x06\xd7\x8b\xf7\x86\x18\xbb\x37\x22\xd4\xea\xb1\xb8\xd4\xbd\x55\x6b\xc0\xbf\x7c\xdb\x25\x75\x48\x0a\xa3\xe3\xe2\xd7\x10\x46\x42\x70\x57\x72\x6f\x08\x23\xa1\xd4\xa3\xd1\xb6\xcb\x01\x41\x18\x91\x48\xf8\xde\x2e\xdb\xd1\xfc\xb5\x56\x16\xad\xf9\x6b\x5a\xcc\xf6\xf2\x53\xd9\x7d\x6f\xcd\xca\x14\x1b\xdc\xde\xdf\x5b\xfb\x7e\x19\x86\x72\x31\x49\xcd\x1e\xba\x41\x49\x08\x73\x1b\xc3\x21\x04\xdc\xf4\xde\xc2\xfa\x65\xd7\x47\x52\x2c\x3f\x1a\x6d\xb2\x58\x5a\x29\x39\x6e\x2b\x77\xca\xf7\x96\x56\x9a\x24\xec\xfb\x48\x56\x2a\x57\x27\xd4\xea\xde\xd2\x29\x4f\x22\x95\x0a\x63\x93\x4e\xb9\x7b\x96\x5c\xc9\xf7\x76\x3b\xe5\xd8\xdf\x71\x90\xbc\xb7\xdb\x09\xe1\x52\xb5\x7e\xab\xa5\x3b\xbf\xb8\x7c\x7c\xcd\x1d\xf6\x0a\x83\x73\x3d\x9d\xf2\xe1\xca\x30\x0c\xcc\x49\x1a\x7e\x39\xad\xf4\x62\x9d\x4d\x2b\x9d\x04\x27\x07\x53\x3e\xad\x74\xfa\x6b\xcd\x62\xfe\xda\x82\xb8\x76\xba\x30\xfd\x35\x37\x23\x01\xe7\xb7\xf1\x1f\x42\x90\x08\xe9\x26\x16\xe4\x97\xdb\x20\x8e\x7a\x2e\x7e\x7d\x17\x0e\x33\x37\x3e\xbf\x74\x60\x97\xb0\xdf\xf8\x8d\x53\x66\xef\x92\xb8\x43\x5b\x9a\xcc\x6d\x92\xef\x9b\x24\xde\xfb\x09\xe5\xb5\xcc\xda\xc1\xb8\x5e\xde\x87\x3f\x84\x6b\x9b\xab\x40\xb7\x9c\xfb\x5c\xcc\x00\x1f\xb3\xbb\x4a\xa9\x4b\x42\x10\x7e\x71\x9b\xc8\xf0\xbe\x96\x68\xa9\x4b\x53\xbb\xaf\x21\x65\xb1\x88\x7a\xae\x32\xcd\x32\x24\xb3\xba\xd6\x21\xe7\x26\x79\xd4\x2f\x77\x5b\x8d\xb8\x8e\xf5\x95\x57\xcf\x37\xf7\xb6\xc9\x4d\xf9\xed\xb5\xed\x1d\x84\x73\x91\x98\xf1\xf6\x06\xf5\x8e\x35\x69\x17\x93\x10\x84\xea\xdc\xb1\xd8\x5f\xdb\x56\x19\xaf\xe4\xee\x5c\x4a\x64\x72\x65\x73\x27\xf6\xaf\x3b\x71\x53\xdb\xc8\xc0\x78\x93\x0d\xe7\x83\x45\x5b\x3f\x66\x6a\x9b\xdb\x0b\xad\x0d\x4b\xf5\xed\x85\xd6\x9d\xe6\x82\xc4\x97\xef\x4e\x57\x25\xd0\xf0\x1f\xbe\x13\x23\xe9\x9d\x6b\xca\xda\x3a\x15\xde\x9a\xdf\xef\x1b\x63\x45\xad\x4b\xc8\xdd\x37\xc6\x0a\x21\x08\x8d\xba\x6f\xd9\xd0\x2d\x1b\x5a\x5a\xe1\x7d\xcb\x86\x34\x8e\x57\x82\x55\x6e\x8d\xe3\x42\x10\x7e\x74\x6b\x1c\x17\x4a\xad\x17\xbf\x86\x5a\x28\x24\x3e\xd1\xf7\xed\xf6\xc6\x5e\xbe\x8a\x49\x6b\xd2\x0c\x09\x4e\x48\x21\x29\x2d\x76\x42\xbb\xa5\x19\x76\x6b\xa5\x5d\x12\xf9\x03\xd2\x3a\x87\xa4\xc7\x2f\x69\xae\xa3\xa6\x39\xbb\x12\xb4\x76\x6b\xce\x16\x5a\xf8\x69\xfa\x6b\x89\x60\xc5\x87\xe6\xd6\x9e\x2d\x64\x29\x16\x73\xd8\x34\xdb\xc1\x2c\xb4\x70\x0b\xeb\x4b\x2a\x4d\xc7\x8d\xd8\x59\xb9\xf7\x7d\xdb\x8e\xdb\xa1\x64\x7b\xdc\x2e\xa2\xfb\xf3\xe1\xfc\xdd\x2f\xb7\x06\x5d\x21\xb6\xe3\x82\x54\x24\x39\xb8\x4b\xff\xbd\xbb\x62\x0a\x08\xbc\x9f\x6f\x33\x94\x08\xa5\x5e\x2c\x40\x53\x94\x08\x49\x5a\xf5\xbb\x2b\xb9\xba\x59\xbd\x36\xbf\x6c\x92\x9a\x5f\x16\x68\x21\x8d\x23\x1b\x92\xcb\xdc\x26\x42\x90\xf1\xf9\x36\xb7\x89\x90\xe5\xeb\x40\x97\x34\xfc\xb1\x1d\xda\x94\xe6\xa0\xf9\x63\x0c\x9a\x86\xeb\x4a\x12\xd3\x5b\xc3\xf5\xdd\x1d\xa1\xab\x52\xce\x11\xea\x66\x2d\x58\x1d\xd0\xf8\x7c\x0f\xc5\xf1\x85\x40\x18\x76\x0a\x88\x0b\xae\x32\xec\xd4\x70\xe5\x5e\x6c\xbe\xe1\xca\x1d\xfa\x72\x14\x49\xbb\x24\xa6\x1d\xab\xee\x3d\x5c\x45\x40\x1e\x56\xca\x79\xe3\xd6\xf8\x5b\x51\x9e\x6e\x8d\xbf\xb7\xc9\x2a\x6a\x43\x2f\x30\x59\x85\x10\x64\x0d\xba\x4d\x56\x71\x93\x5f\xa2\x54\x0e\x60\xb7\x09\x26\x84\x70\xa7\x0d\xa5\x10\x10\x04\xae\xdf\x43\x29\x34\x1c\x0f\xbc\xb1\x6f\x0d\x9b\xf7\x54\xcb\x20\xc7\xdb\x3d\x9d\x18\x20\x09\x66\xbf\xa7\x13\x33\xc9\xaf\x53\xf1\xe1\xbc\x27\x87\x54\x21\x8f\xbf\xc1\x32\x7e\x4f\xce\xb0\xb7\x66\xc9\x4a\x32\xad\x5b\xb3\xa4\x90\x38\xed\xde\x9a\x25\x6f\xcd\x92\x35\xe0\x98\x9a\x25\xef\xcf\x2c\x89\xa8\xd1\x2c\x79\x4f\x05\x7e\xd8\x4e\x39\x02\x90\x98\x4c\x6f\x0d\x89\xb7\x76\xbe\x1a\xc8\x3c\xed\x7c\xf7\x24\xb3\x78\x25\x16\xed\x9e\x61\xad\xb8\x82\xe2\xfa\x78\x4f\x3c\x09\xef\xe9\xd1\x0e\x8b\xf4\x4d\x42\x86\x0f\xf2\x80\xbf\x98\x96\xe1\xc6\x42\x58\x2a\x16\xe9\x5b\x13\xa1\x90\x38\x19\xdf\x98\x0b\x7f\xb9\x35\x07\x56\xd2\xd3\xdd\x9a\x03\x85\xe4\xc5\x8e\x5b\x73\xe0\xad\x9d\xaf\x12\x0b\x7e\x6b\x2b\xb9\x3f\x23\x84\xaa\x9a\x46\x08\x21\x09\x7a\xbf\x35\x42\xdc\xd8\x03\x4a\xc5\x9e\x7b\x6b\x10\x10\x5a\x63\xd9\x6a\x0f\xb8\xbf\xc3\x2e\xc9\x6c\x6f\x0f\xbb\x42\xe0\x62\x72\x1b\xea\x7f\x7f\xe7\x5f\x02\x90\x6e\xcf\xbf\x42\x73\x89\x7a\xfe\xbd\x1f\x7b\x9f\x0c\xdc\x63\xef\x81\x20\x7b\xf0\xfd\xd8\xfb\x47\x4d\x89\xac\x33\xf7\xe3\x1a\x05\x1a\xd6\xf2\xfb\x71\x8d\x92\x24\xa0\xd4\x64\x29\x9b\x25\x40\x68\x84\x11\xdd\x1e\xda\x6e\x83\xb5\x6b\xd6\xd5\x2d\x83\xb5\x85\x20\x40\xfc\x36\x58\xfb\x7e\x35\x08\x64\xac\xb6\xbd\xb2\x79\x20\x2f\xba\xf0\xba\x41\x3d\xb4\x5d\x1b\x8c\xd9\x43\xdb\xfd\xb2\x44\x2e\xec\x4e\xf7\xeb\x12\x79\x4d\x3e\x7f\x34\x48\x87\x24\xfd\x7c\xa8\x34\x6c\x07\xae\x1b\x17\xb9\xe1\xef\xd7\x4d\x0b\x24\x29\xea\xef\x17\xd7\x0d\xa1\x91\x9a\xfa\x7e\xd3\x3a\x59\x21\x17\xd6\xa1\xfb\x75\x85\xbc\x46\x09\x32\xf3\x9e\x1d\x6f\xc2\xb7\x57\x31\xba\xa0\x68\x01\xf2\xaa\xfe\xda\x94\x64\xaf\x0e\x8b\x59\x29\x72\x04\xaf\x92\xfb\x75\x74\x0d\xe9\xbe\xb6\x25\xe0\xbb\x27\x19\x61\xd1\x12\x5a\x91\xb6\x33\x6e\x0d\xd2\x21\xe9\xa0\xd8\x5a\xf8\xdd\xd3\x8d\x90\xd7\xe9\x97\x55\x92\x0d\x59\x73\xda\x3d\x8f\x08\x49\xb8\x62\xdf\xaa\x95\x56\x7f\xad\x52\xac\xfa\x6b\x04\xca\xb6\x4a\xdb\xaa\xbf\xc6\xa5\xfe\x45\x34\x4a\xdf\x30\xab\x09\xc1\xf5\x5e\xdf\xb8\xd4\x17\xf2\x5a\x9b\xad\x73\xaa\xf9\x20\xc2\x8e\x72\xb6\x11\xd6\x8f\xd1\x2b\x0e\x37\x42\x5e\xa7\xbf\x3f\x24\x0d\x8b\xf9\xe9\x94\xc6\x95\x42\xb5\x07\x8f\x24\x3b\x5a\xe9\x7c\xb5\xa3\xb8\xf9\x5f\x8d\x5f\xbb\xec\x28\x2c\x8f\x04\xa5\xdd\x93\x92\x10\xcd\xae\x5f\x0e\x2e\x11\xb6\xd5\x81\xbc\x1c\x0d\x62\x01\x2e\x7b\x7e\x39\x1a\x97\x6b\xe1\x62\x0a\x2e\x5b\x8b\x85\x8e\x27\x2a\xfa\x76\xd9\xd8\x66\x07\x2e\xfa\xd9\x3e\x1a\x91\x46\x45\x92\x1d\xf8\x36\x42\xf0\x69\xd8\xda\x74\xbc\x83\x8e\xa6\xe3\x8d\xf9\x89\x07\x11\xfa\x96\x8e\x37\xb7\x18\x17\x0e\x7a\x7d\x4b\x07\x9c\x5b\x8c\x70\xd4\xd2\x01\x77\xb5\xa1\x42\xf4\xed\x76\x65\xa1\xf8\xb3\x88\x8c\xe7\xee\x06\x6a\x5f\x65\x6d\xa1\x6e\xa0\xb6\x10\x28\x37\xdd\x40\x6d\xa1\x5c\x64\x55\xee\x06\x6a\x0b\x41\x3e\xe6\x6e\xa0\xb6\xb0\x8a\x35\x68\xaf\x34\xbc\x35\x97\xbe\xdd\x8b\xeb\x0f\x08\x0e\xab\xdd\x70\x6e\x61\x7d\x69\xb1\x5d\x1a\x96\x1b\xe6\x98\xd8\xee\x5f\xba\xf1\xc3\x17\xef\x5f\x75\xe3\x87\xbb\x31\xba\x17\xa1\x27\xdd\x18\x5d\x21\xb9\xe3\xeb\xc6\xe8\xf6\xf2\x8d\x47\xd2\x05\xc7\xe3\x7b\xc5\x6a\x31\xb2\x6e\xec\xa3\x50\x2e\xd2\x49\xf4\xdd\x0d\x09\xe4\x59\x25\xd1\xb6\x1d\xb3\xee\x45\xfe\xb5\xbe\x63\xd6\x15\x92\x53\x60\xdf\x11\xa6\x7d\x27\xcf\xe5\xb5\x9f\x3f\xcf\x76\xda\x77\x17\x10\x10\xe8\x30\x7d\xe7\xbe\xaf\xfb\x14\xd6\x45\x12\xd9\xee\x53\x58\x42\x22\xa7\xba\x4f\x61\x75\xc3\x36\xaf\xdd\x06\x38\x38\x40\x9e\x95\x66\x86\xbd\xc1\x6d\xee\xc2\x5e\xd5\x77\xdc\x55\x84\xe4\xf6\xb7\xef\xdc\xc6\xf5\x1d\xed\xfb\x22\x9f\x54\xdf\xf3\xa3\x99\x41\x97\x2f\xd1\xbe\xfb\xee\xb0\xe2\x1e\xd5\x3d\x4e\xf6\xfd\x4b\x7a\xbb\x48\x46\x50\x76\xde\x4a\x2a\xd7\x9e\x27\xb4\x43\x1a\xb7\x54\xac\xe3\x43\x9e\x66\x68\xe4\x45\xb8\x54\x37\x34\x52\x48\x64\x68\x37\x34\xb2\x1b\xf3\x78\xe1\x32\xd5\x8d\x79\xec\x3c\xb6\x53\x2e\xdc\x5a\x3a\x4f\xee\x7c\x90\x27\x3b\xdb\x87\x77\xba\xa1\x91\x17\x6c\xbe\x1b\x1a\x29\x24\xa9\x4d\xbb\xa1\x91\xc2\x2a\x46\xad\x88\x16\x21\xae\xa4\x5b\x88\x96\x7e\xd8\x7b\x7c\x58\xba\x67\xe0\xee\x83\x30\xc4\x84\x74\xc3\xbb\xfa\x29\xc3\xc5\xa7\xbf\x1b\x44\x25\x44\x5d\x7a\x56\x37\x86\xaa\x1b\x30\x75\xe1\x85\xd3\x0d\x98\x12\x12\x6b\x5d\x37\x60\xaa\x13\xf6\xb4\x8a\x05\xb4\x47\x1a\x3b\x7b\xc9\xda\x6e\xd8\x53\xff\xc2\x9e\x90\x2c\x86\x3d\x09\xe5\xc2\x23\xb5\x9f\xa8\x85\x42\x60\x21\xec\xa7\x3c\x92\x68\xa3\x55\x8c\x4a\x5d\x5c\x40\x10\x2f\xdf\x8d\x36\xea\x67\xb3\x1d\x07\xbf\x26\x5f\x03\x92\x17\xa2\xba\xf1\x41\x9d\xc8\x9f\x72\x11\x11\xdd\x0d\xfd\x11\xf2\xac\x92\x1c\x0f\x97\xe5\xd7\x53\x27\x0b\x48\x5e\xaf\xea\xa7\xcb\x92\x87\x64\x56\x31\xda\x9b\xfe\x5a\xfa\x6b\x0c\x65\xfa\x6b\x4e\x0c\xae\x3f\x5d\x53\x44\xff\x22\x62\x96\x0a\xd8\x0d\x88\x11\xca\xc5\x53\x60\xbd\xba\xdb\x81\x16\xbb\xc5\x76\x49\xb7\xc5\x76\x68\x5d\x1a\x5e\xcc\x4b\x57\xea\x55\x2e\xc9\x4b\x20\xe5\x22\x97\x5d\xaf\x5c\x4d\x09\x41\x5e\xb2\x5e\x95\xa1\x15\xd3\xdf\xc5\x9d\x62\xaf\x8a\x47\x20\x4f\x64\x7e\x55\x3a\x02\x41\x26\xed\x5e\xeb\x57\x81\xf2\xc6\x1f\x63\xa1\xd6\x6f\x4a\xd9\x58\xd5\x29\x05\x12\x97\xf6\x5e\x9d\x52\x43\x7a\x2e\xde\x66\xe9\x86\xf4\xf4\xaa\x76\x53\xe1\xd6\x35\xad\x21\x09\xc2\x44\x72\x13\xcb\xf3\x41\xe2\xc5\xd8\x8d\xe8\xe9\xd5\xd1\xc5\xb9\xa5\x6b\xd6\xe9\xf5\xf3\x6c\x5e\xcd\x35\x34\xa4\x5f\x32\xf5\xca\x24\x5c\x32\x75\x20\x39\xc0\xf7\x4b\xa6\xce\xbb\x1b\xe5\x22\x9d\x4c\xf7\xe1\x0d\x21\x79\xd5\xa5\x1b\x54\xd2\x2f\x9c\x92\xae\xda\xfc\xb5\x94\x86\xc3\xc4\xe6\x97\xb7\x24\xe6\x0a\x9f\xe8\x7e\x39\x94\x40\x9e\x4b\xe7\xee\x97\x43\x09\x34\x59\xd9\xe5\x50\x1a\x7b\x72\x91\xaf\xa6\x1b\x7b\xd2\x7d\x77\xe3\x22\x8f\x69\xd7\x5c\xd5\xaf\xef\x8e\x75\x7d\x6a\x38\x4a\xe7\xf9\x84\x72\xa9\x8c\x35\x85\x21\x10\xf8\xbb\x74\x9f\x52\xe8\x3c\x9f\x50\xae\x0b\xe6\xd3\x94\x7c\x40\x0b\x36\x73\x73\x8c\x9a\x3d\xbd\xae\x0a\x2d\xa5\xc1\xa1\x59\x20\x3e\xa5\xd0\x1b\xaa\xf9\x75\xb1\x2a\x9b\x8a\x0b\x90\x1c\x3c\x7b\x53\x71\x01\x42\x9d\xd0\x97\x0e\x84\x68\xfe\x98\xc2\xab\x61\xe1\xb9\xf0\x0c\xeb\xad\x7d\xb4\x25\xd0\x2a\xac\xa1\x61\xe1\x11\x62\x63\xc9\xf0\x38\xc2\x02\x86\x4d\xbe\x68\x54\x8c\x10\xd7\x46\x3f\x15\x3b\x4d\x35\xbf\x39\x6c\x61\x47\x79\xd5\xe0\x1b\x22\x39\x43\x73\xc0\x1b\x3c\x50\xdb\x5f\x37\xcc\x04\x33\x4a\xd7\xd4\xd7\x43\x79\x42\x0a\xc7\x1e\xca\x13\x20\xae\xcd\x62\xa7\x24\x98\x2c\x9d\x32\x16\x45\x58\x5f\x5a\xec\x92\x46\xf2\x65\xb4\x0a\x13\xa6\xf7\x50\xe3\x69\xc7\xcf\x83\xb7\x7b\xa8\x10\x01\x49\x3a\x84\x1e\xae\x81\x70\xc2\xf1\x1f\xeb\xe1\x84\x03\xc1\xcb\x05\x3d\x9c\xf0\x90\x23\x90\x6e\xac\x87\xb3\x0b\x34\xb2\xb3\xf4\x70\x19\x03\x71\xa2\x47\x86\xcb\x38\xd4\x97\x09\xa6\xe8\xe1\x3a\x8e\x4f\x5f\x96\xf4\xb5\x83\xb5\xb8\x59\xe7\x2b\xe9\xf5\x4b\x7e\x4d\xf9\x00\xc4\x59\x68\x86\xbc\x24\x5c\x17\x1e\x0c\xc2\x75\x01\x04\x46\xc9\x1e\xae\x0b\x43\x66\x2e\x5c\xdb\xba\xb6\xd7\x1e\xdf\x8c\x07\x35\x38\xe3\x40\x14\xa7\xcd\x19\x8f\x6f\xc6\x83\xd1\x77\xc6\x0d\x93\xc0\x04\xd4\x35\xc9\x76\xd3\x99\x5f\x1c\x4e\xbb\xe9\xcc\x85\xe6\xe8\x9a\xce\xbc\xa7\xfc\x30\xa8\x21\xaf\x8f\xb6\xf8\x21\x06\xde\x9e\xf2\x43\x82\x13\xca\x45\x56\x9b\x6e\x74\x82\x10\xbc\x46\xd1\x8d\x4e\xe8\x1a\x73\x2f\xfc\x4b\xba\xc6\xdc\x9e\xf8\x04\x5e\x58\xd9\x7b\xca\x23\x81\x50\x8b\x36\xef\x77\x27\xd7\x77\xb9\xb0\x80\xf5\xbc\xfd\x94\xf3\x75\xda\x05\x7b\xaa\xd3\x35\x59\x08\xba\x46\xdf\x4e\x5a\xe7\x72\x71\x61\xd1\xcd\xeb\x2c\x04\x61\xab\xfd\x76\xb9\xdf\x9e\x09\x89\xf8\xea\xb7\xeb\x1d\x48\xf7\xd8\xed\x7a\xbf\x15\x4a\x1e\x52\x6e\x59\x29\x90\x17\x1b\x5b\x6f\xed\x6e\xe2\xe8\x8b\x1c\x25\xdd\xc4\xd1\x42\x9c\xb0\x21\x13\x47\xf7\xdb\x55\x43\x8e\x92\x7e\xbb\x6a\x80\x24\x7e\xac\xdf\x8e\xf8\x7d\xa5\xc5\x68\xef\xe5\xa7\x0b\x12\x83\x77\xbf\x2f\x46\xfc\x56\xb1\x25\x6b\x58\xd7\xd4\x2c\xc4\x5e\x25\xd9\x05\x67\x01\xa7\xa4\xae\x71\xb8\xdf\xe1\xa7\x97\x34\x3f\x0d\x7b\x2f\xc9\x4f\xc3\xde\x33\xa9\x77\xd8\x7b\xfd\x3c\x99\x3f\xdc\xb9\x3f\x58\xc5\x0a\xb4\x90\x16\xfc\x1a\x5d\x50\x1f\xc1\x83\x7b\x15\xa3\xab\x6a\x8a\x40\xe2\xc9\xda\x6f\x15\x45\xbd\xa9\xaf\x64\xd5\x68\x6b\x16\xe2\x64\x0d\x6a\x6a\x16\x82\xc8\x97\xae\xa9\x59\x28\x17\x17\x0f\x5d\x53\x73\xd7\x7b\x98\x00\xc3\xae\xad\x59\x08\x1c\x48\xba\xb6\xe6\x6e\x4e\xeb\x8b\x50\xbc\xae\xdd\x57\x68\xa4\xbc\xeb\xda\x7d\x7b\x47\xc5\x6c\x38\x25\xf5\xae\x8a\x09\xa4\x1c\xb7\x3b\xf3\x1d\x21\xda\xb0\xac\xf4\x2e\xf7\x01\xb2\xb1\x2a\xbb\xdc\xa7\x9b\x43\xb8\x4a\x9a\x92\x5e\xbf\x5c\xe3\xd1\x5d\x20\x40\x92\x1d\xa9\x77\x17\x48\x27\x12\xa0\x61\x66\xec\x5d\x41\x05\x64\xb3\x69\x0a\x2a\x20\x79\x85\xa1\x77\x05\x15\xb0\xbe\x3c\xa1\xd9\x03\x6c\x96\xfb\xf7\xa5\x3d\x60\x05\x36\x2c\x3c\xbd\xbb\x02\x81\xd8\x1d\x22\x57\x60\xc7\xbd\xb2\x61\xe1\xe9\xdd\xe3\x16\x90\x24\x56\xea\x1d\xff\x83\xae\xd1\xbb\x71\x35\xdb\x35\x7a\x77\x8d\xde\x0d\xef\x99\xae\xd1\xbb\xeb\x73\x8d\xeb\x59\xd7\xea\xdd\x07\x4a\x50\x23\xaf\x45\x1f\xf2\x7b\x20\x35\x08\xe8\x85\x2d\x34\xf7\x95\x5e\xd8\x1d\x8f\xeb\xd2\x88\xe1\xeb\xba\x5c\x0b\x81\x83\x43\xd7\xe5\xba\x0f\x38\x5e\xc3\x01\xb0\x0f\x87\x17\x48\xcc\x93\x7d\xc8\xf1\x80\x55\x8c\x4f\xb5\x7c\x00\xd9\x98\xe5\xa1\x02\x31\x9c\x18\xae\x75\xfa\x70\x62\x80\x48\xd6\xd1\x70\x62\x80\xd2\xb8\x61\xe9\xc3\x99\x01\xb2\xa1\x2a\x0d\x27\x06\x58\xc5\xfc\x34\xa5\x91\x92\xfc\xb4\x6d\xf6\x8a\x63\x72\xe3\x72\xa6\x0f\xcf\xc1\x40\x90\xcf\xa9\x0f\x27\x06\x58\xc5\x6c\xef\x2b\x0d\xf3\x02\x46\x82\xe1\x81\xd1\x0b\x84\x56\xca\xcf\x83\xc0\xba\xf7\x0b\x42\x12\x8e\xd5\xbd\x5f\x10\xd6\xaf\x30\x49\xcd\xf1\x22\x56\x54\x21\x37\x64\x57\x40\x6c\x8e\xaa\xec\x0a\xc8\x1d\xc9\xad\xa7\x7a\x1f\x68\x52\x38\x9c\xf4\xa1\xc4\x04\x42\x8d\x5f\xdf\x75\x21\x2e\x27\xb2\x39\x32\xc8\xa9\x56\x8a\xbf\xef\x84\x9b\x6a\xed\xf0\xcb\x21\x69\x5a\xcc\x61\x70\xb4\x9a\x41\x6c\x90\x5c\xb2\x03\x89\xdc\x8a\x33\xa9\x44\x06\x12\x27\x97\x3e\x94\xc8\x40\x53\x84\x0e\x59\x2b\x90\xee\xf4\x21\x6b\xd5\x85\xbe\xf1\xba\x57\xd7\x85\x5e\x88\x13\xf5\x53\x17\x7a\x61\x15\x93\x66\xdf\xcd\xc5\xe9\x70\xcb\x5a\x81\xd8\x4e\x5b\x6b\xdf\x83\x14\x8d\xae\xf5\xb0\xeb\x18\xfb\xf7\xaf\x94\x5d\x0f\x17\xc5\xee\x8f\xb9\x28\xcc\xcb\x6c\xcb\xd2\xae\x63\xce\x68\x1a\x25\x4c\x03\x2e\xc4\xe5\x97\x9a\x33\x80\xd4\x84\x32\x3c\x12\x01\x49\x4e\xa0\x6e\x08\x80\x10\xa7\xeb\x40\xfe\xee\x95\x4f\x23\x5f\x60\x1f\x72\x03\xdc\xdb\x77\x4d\x5f\xde\x02\x75\xdd\xdb\x1b\x59\x1b\xbb\xee\xed\xfd\x73\x6f\x87\x69\xe8\xde\x2e\x24\xd9\x43\xfa\x54\xb4\x03\xeb\xcb\x03\x5a\x95\xc6\x4a\x43\x2e\xea\x04\xdf\xf1\x78\x5f\xc5\xfc\xb5\x90\x46\xc2\xfd\x6a\x3b\x52\x12\x9b\x10\x29\xeb\xcd\x93\xb0\xbe\xf4\xd7\xba\x34\x4c\x81\x5f\x3b\x86\x24\xf7\xea\xe9\xa7\x53\x9a\x6f\xf6\x59\xe7\x23\xc9\x69\x39\xad\xf4\x95\xf6\x92\xa2\x63\xcd\x9e\xfe\xf3\x7d\x56\xf9\xc8\x29\xad\x49\x63\xb3\x60\xbc\x9b\x8a\x28\xa0\xb4\x62\x4f\x95\x51\x40\xb8\x3f\xa7\xdc\x71\x5e\x2e\x49\xbb\x25\xa7\x02\x52\x2b\xe2\x94\x51\x01\x21\x53\xf2\xd6\xab\x4f\xc5\x05\x69\x9f\xbb\xae\xf7\x42\xe0\x62\xd5\xa7\xe2\x02\x08\xde\x8a\xed\x53\x1b\xf0\xfc\x98\x52\xf3\xd7\xec\xe8\x65\x5e\x70\x7e\x4c\xa6\x34\x3f\xa6\xe4\x2c\xcb\x75\x74\xd0\xd7\x94\xa1\x83\x7e\x9f\xcd\x8e\x22\x2b\xa7\x6c\x01\x88\x8a\xd2\x31\x65\x0b\x40\x90\x65\xa3\xeb\x9f\x2f\x24\x39\xa9\xba\xfe\xf9\x7d\x7e\x5c\x21\x2c\xe6\xbc\xf8\xb2\xb5\xd3\x22\x57\x00\x56\x31\x9a\xe6\x69\x0d\x08\x82\x9e\xbb\xd7\x76\x9d\x3b\xb8\x55\x4c\x9a\x4d\x0b\x9c\x81\x0f\x2a\x75\xd7\x7a\x47\xd7\xf0\xf1\xe9\xde\xd1\x09\x49\x82\xa6\xee\x1d\x5d\xc7\x8b\x7f\x15\x93\x66\xdb\xb8\xbb\xc1\x7d\xa4\x9b\x61\x5d\x58\xc5\xa8\xd4\xad\x0c\xa4\xf6\x4b\x6f\xf7\x84\xb8\x30\xc3\x79\xbb\xd7\x67\xba\xb2\x9c\x3e\xcd\xc2\x40\xd4\x43\x92\x13\x4f\xea\xc6\xa6\xee\x30\x65\x02\x40\x10\x3e\xde\xa7\x4c\xc0\xbb\xc2\x46\xb8\x74\x37\x26\xa0\xe3\x6b\xbd\xf3\xa0\x5d\xf7\xfa\xb0\x3f\x1c\x4b\x1b\xcf\x88\xf4\xc7\xbd\x0c\x04\x2e\x3e\xfd\x71\x2f\xeb\x91\xdd\x70\xc6\xed\x7a\x64\x0b\xb9\xa3\xa8\xea\x91\xdd\xf1\xbe\x5e\xc5\x0e\x68\x29\x4d\x9d\xce\x2f\x6f\x49\xbc\x49\xd2\x2c\x45\x0f\x9e\x6a\x73\x91\xc5\x8f\x27\x23\x20\xbc\x6d\xd1\x0b\x5b\x48\x12\xbd\x77\xbd\xb0\x85\x20\x6f\x49\xf7\xfe\x53\x28\x4d\x8b\xa6\x17\xa0\x42\x12\xd7\xdb\x75\xc2\x16\x1a\x4f\x51\x74\x9d\xb0\x85\xa8\xd8\x86\x4d\xd6\x2e\x34\xae\xe3\xbb\xc9\xda\x85\x58\xca\xca\x4f\xc5\xb5\xa9\xdc\xbb\xce\xdd\x6d\x87\xc1\xeb\xdc\x2d\xc4\xce\x61\x53\xe7\x6e\x21\xb5\x60\xeb\xdc\x2d\x24\x4e\x98\xfd\x51\x3b\x05\x82\x4c\x22\x5d\x77\x6f\x61\xfd\xbe\xc5\x1c\x2b\xae\x77\xb9\xa1\xee\x5e\xef\x0a\xb9\x73\x3e\xd2\xdd\x5b\x08\xb2\x86\xf4\x47\xed\xe9\x51\x07\x22\x7d\x5e\x37\xa3\xbc\x90\x24\xe2\xef\x8f\xdc\x46\x0f\xf0\xb6\xb3\x97\xf4\x00\x17\x12\xbf\xf6\xae\x07\x78\xd7\x03\xbc\xed\x18\x5d\xf5\x00\x17\x42\xe1\xaf\x07\xb8\x90\x44\x6c\x77\xf3\xce\x77\xdc\xb8\xd7\x97\xfc\x9a\x7a\xc9\x63\x1c\x2c\xfc\xec\xf1\x70\x0f\xc4\xe5\x3a\x54\x55\x79\x64\x4a\xf8\x7e\xf5\x47\xa6\x04\x24\x6e\xaa\xfd\x91\x29\xe1\x00\xbe\x8a\xd1\x03\x59\x90\x1e\xe0\xa4\xc9\xef\x7a\x80\x0b\xb1\xb9\x5c\x65\x4a\x40\x7e\xcd\x90\x29\x3d\xe1\x4e\x42\xdc\x3d\xea\x25\x40\xe0\x74\xde\x1f\xf5\x92\xc7\x44\xb1\x29\xc9\xf1\x56\x2f\xd9\xbf\x62\xf6\x33\xc8\x9b\xe8\x42\x57\x2f\xd1\x73\x9c\xdc\x75\x5d\xcf\x71\x61\x7d\x49\x6b\xe5\x70\x40\x34\x3b\x20\x87\xe3\xce\x7d\x15\xa3\xef\xb2\x33\x20\xf7\xb0\x02\xfb\x29\x87\x53\x67\x7a\xe4\x70\x40\xf3\xf6\xf1\x91\xc3\x01\xb1\xb9\xb9\x64\x70\x78\xab\xaf\x2f\x29\x26\x3b\x03\xe2\x70\x45\x6a\xf6\xe6\x52\x7f\x15\x63\x88\xd2\xce\x27\x09\x21\x30\x95\xe9\xd4\x2e\xac\x62\xf4\x54\x46\xa8\x57\x3b\x29\xff\xba\x5e\xed\x42\x92\x2c\xb0\x3f\xde\x2a\x3e\xea\x4c\xea\x17\x8f\x3a\x13\x10\xdf\x62\x96\x5d\x02\xab\x98\x34\xc7\x43\xa5\x29\xec\x95\xe3\x91\xae\xdc\x6a\xdb\xec\x3c\x79\xa0\x48\x14\xd6\xf5\x41\x10\x4a\x53\xfc\x3f\x72\x5a\xbc\xc9\x77\xdb\xa1\x5f\x82\x90\xaa\x1c\xaf\x47\xe0\x57\xcd\x44\x11\xf8\xaa\x99\x00\xa9\x3d\x5b\x97\x73\x21\x89\x77\xed\xba\x9c\x0b\x49\x16\xc0\xfe\xaa\x98\x00\xb9\x23\x13\x5f\x19\xe8\xfb\xf1\x41\x56\xae\x89\xf1\x85\x74\x6c\x4d\x8c\x2f\x24\xef\x5d\x74\x13\xe3\xf7\xd7\x43\xb1\xdb\xe0\x95\xed\x00\x8d\x07\x7e\xfa\x2b\xdb\x79\x3f\xb6\x63\xd3\x64\x3b\x40\xca\xd6\x5e\xd9\xce\x2b\xdb\x41\xa0\xe8\x91\x21\xa4\x97\x70\x7a\x64\xf4\xd7\x73\xf2\x5f\xbf\x0c\x69\x3c\xa4\x7a\xd2\x34\x39\xd1\xfb\xb1\x1d\x0c\xf2\xaf\x6c\xe7\x35\x43\x52\xf5\xd7\x1c\xc7\xcb\x1e\x20\xae\xf5\xc0\x17\x1a\xa9\x84\xfa\x2b\x8f\x01\x56\x31\x7a\xa0\x4a\x03\xe4\x57\x81\xe7\x28\x20\x78\xc9\xad\xbf\x9e\xa3\xde\x8f\x3b\x71\xf3\xf7\xca\x9d\x80\xf0\x20\xfe\xca\x9d\x5e\x0f\x52\xdf\xef\xdb\xa9\x8f\x3b\xa5\xed\xb0\x57\x70\x27\xcd\x76\xaf\xdc\xe9\xf5\xe5\x2e\x14\x09\x1d\x54\x84\x6c\x9c\xad\x74\x50\x11\xe2\x9b\x62\xf9\xd5\xab\x16\x45\x6e\xc6\xfe\xca\xb0\x5e\x19\x96\xab\x4f\x86\xa5\x1b\x4b\x23\xb3\x43\xd7\x8d\x45\x08\x2f\x3b\x74\x63\x11\x42\xa3\x81\x6e\x2c\xfd\x95\xed\x1c\x58\xc6\x7c\x9a\x40\x48\x9c\xca\xfa\x2b\xdb\x01\xf2\x1b\x20\xf5\x2a\x1f\x30\x68\x5e\x16\xfb\x80\x81\x90\x5f\x33\xe4\x00\x3e\x60\xd0\x0e\x3b\x2a\x07\x00\x82\xa0\xdd\x6e\x08\x84\x10\xbc\xa2\xd8\x0d\x81\xe8\x3e\x56\xd0\x48\xa7\xd8\xf5\x76\x11\x72\x0d\xc7\x4f\xc5\xb5\x6f\x19\x74\x1d\x5f\x1a\x09\xb1\xba\x6f\x19\x74\xdc\xfa\x77\x9c\xe9\x87\xbe\x30\x42\x70\xdb\x37\x74\x85\x19\xfa\xbd\x34\xd8\xde\xd0\xef\x45\x48\x62\x57\x86\x7e\x2f\x63\xf3\xe8\x42\xc4\xc1\xd8\x50\x81\x84\x38\xc3\x2f\x87\x24\x2f\xb7\xac\x60\x4a\x9a\x18\x4a\x2a\xa4\x47\x12\x7c\x0a\x0f\xad\xa1\x13\x8d\x10\x64\x35\x1e\x3a\xd1\x08\x79\xac\xc3\xfa\xd8\xaa\xad\x25\x27\x3d\x49\x3b\xc6\x86\x86\x25\x24\x09\x3b\x07\x6e\x37\x0b\x9c\xb4\x83\x96\x55\x3b\x60\xf6\xcc\x42\x9f\x60\x23\x43\x87\x99\x46\x86\x8e\xa1\xc3\x8c\x10\x3c\x37\x32\x74\x98\x19\x38\xc7\x94\x76\x38\x6a\xd5\x1e\x60\xed\xc7\x87\x66\xe8\x1c\x23\x24\xdb\x77\xe8\x1c\x23\x24\xab\x6e\x18\x59\x30\x36\x55\x15\xd2\xa4\x8c\x0d\x06\x21\x24\xbb\x6b\x6c\xa8\x2a\x42\x69\x24\x95\x18\xf8\xc5\x7c\x90\xc8\xc4\xa1\x77\x8c\xb0\x8a\xd1\xf9\xcb\xf1\xc6\xaa\x73\x2d\x41\x3c\xb6\xcb\xd6\x6a\x6e\xbb\x24\xd9\x5a\xb9\x0d\x77\xf9\x83\xa0\x85\x0f\x1a\x59\x04\x87\xa1\x0b\xc3\x40\x84\x86\x77\xf9\x30\x10\x41\x88\x76\x5a\xcc\xc1\xc5\x1e\x13\x1f\xc9\xc1\x6d\xee\x88\x4a\xaf\x60\x2d\x42\x5c\x07\xad\x85\xb5\x08\xa5\x1d\x97\x9f\x3a\x1e\xb0\x96\x63\xb3\x4e\xc7\x43\xc5\xe7\xb0\x0b\xcd\xce\xc3\x48\x08\x9d\x1a\xba\x01\x0d\x7d\x7e\x1a\xae\x07\x43\x9f\x9f\xb1\x79\xfc\x20\x4b\xca\xd8\xd2\xa1\xc4\x06\xc1\x7d\xda\xe0\xd1\x8b\x0f\x4a\x3b\x92\xd5\x96\xfe\x5c\xba\x74\x25\x39\x94\xdf\x46\x73\x9a\x6f\x07\x89\x8d\xc6\xb5\xfa\xd0\xe9\x67\xe0\x92\xb3\x8a\xad\x3e\xe8\x93\x23\xb4\x2c\x14\x73\x39\xfb\x9e\x42\x23\xe4\x62\xf8\x9e\x82\xd0\xc8\x6a\x3f\x7c\x4f\x61\xf0\xc4\xc1\x2a\x56\xa1\xbd\xd2\x30\x6d\x33\x59\xc5\xe5\x06\x24\xa9\x27\x87\x2f\x20\x08\xa5\x9d\x3b\x5f\x22\xef\x84\xe4\xde\x7e\xf8\x02\xc2\x28\xb8\x23\xb4\x13\x26\x50\x9c\x53\x20\x9b\xcd\x75\x4e\x79\xaf\xa0\xb4\xaf\xa7\x4e\x20\x10\xcd\x0a\x9c\x3f\x5d\x88\x1a\xae\x12\x43\x17\xa2\x51\xe4\xa3\xb8\x2d\x8c\x92\xd6\x80\x26\x75\xed\x92\xac\xc1\xe1\x25\x3c\x69\xe8\x42\x34\x70\x21\xf2\x35\x97\xa1\x0b\xd1\xd8\xb9\x0c\x6e\xe4\x2b\x18\xbb\x4c\x05\x08\xf2\x9a\x8c\x5d\x9e\xb2\x6b\x69\xe5\x4a\x7e\xec\x08\x6d\x21\xaf\x8b\x62\xd8\x2f\x84\xd2\x70\x14\x19\x7a\x1a\x09\xc9\xfd\xf0\xd0\xd3\x68\xec\xf8\x9d\x35\x9e\xbc\x19\xbb\x0b\x0e\x88\x33\xa8\xa0\xd9\x0e\x7b\xcf\x7b\x31\x43\x1f\xa1\xb1\x73\x95\xd2\x70\x19\x1f\x3b\x32\x49\x08\x1c\xcb\xc7\x1e\xb6\x0d\xcf\x8b\x46\x0a\xd7\xb1\xa3\x82\x0a\xc1\x4b\x8b\x63\x4f\xbf\xd4\xd5\x94\xdd\xb6\xe7\xf7\x65\xa5\x1d\x96\xb2\x57\x89\x33\xfb\x2e\xc9\x4e\x11\x95\xd7\x88\x31\x18\x7b\xda\x2b\x94\x52\x82\x35\x06\x0e\x49\x1f\x04\x29\x84\x86\x6e\x49\xe3\x73\x4b\xb2\x4f\xee\xa1\x5d\x9d\xb4\x5e\xd2\x86\x34\x3c\x37\x2f\xdb\xef\x08\x71\x49\xd7\x2a\x5b\x12\x57\xa6\x0f\x82\xa8\x83\xa1\x43\xd3\xd8\x0d\x6b\x39\xd6\x8f\xe9\xd0\x24\x84\xfc\xee\x50\x58\xe9\xe3\xd4\x88\x61\x18\xfa\x38\x09\x51\x11\x39\xfa\x38\x8d\x43\x93\x2e\x6f\x1d\x8d\x03\x4d\x44\x88\xab\x4a\x1a\x92\x98\xa9\x6b\xe7\x53\x67\xea\x70\xa6\x2e\x76\xc2\xe1\x4c\x01\xe9\xee\x3b\x9c\xa9\x43\xa6\x42\x88\xc8\x38\x1c\x10\x20\x62\xff\x79\x88\xf6\x38\x1c\x2e\x7d\x9b\x1a\xde\x93\x43\xdf\xa6\x61\x7c\x0f\x49\x76\x87\xbe\x4d\xe3\xd4\x48\xc1\xb5\xf7\x38\x31\x52\x08\xc1\x03\x4f\xe3\xc4\x48\x31\xce\x93\x09\x71\x69\x9f\xca\x63\x20\xf1\x46\x1a\x66\xb3\x1e\x7a\x4a\x35\x67\x5c\x4f\x29\x21\xb9\xf6\x1e\x7a\x4a\x0d\x3d\xa5\x1a\xce\x9e\x43\x4f\x29\x21\x48\x96\x38\xf4\x94\x1a\xa6\x96\x6e\x57\xf3\xd7\xba\x34\x4d\x9a\x27\x24\xdb\xe1\xd5\x08\x4f\x38\x8e\x53\xa6\x03\x34\x12\x76\x0e\x13\x44\x8f\x53\xa1\x71\x05\x0d\x51\x68\x9c\x66\x8d\x62\xe9\x99\x5d\x79\x98\x4a\xb9\x71\x0d\x39\x4c\xa5\x2c\x04\x0f\x14\x0c\x53\x29\x0f\x53\x29\x37\xee\x17\x87\xae\x52\x42\x69\x44\xb4\x0d\x73\x29\x0b\xa1\x48\x36\x97\xf2\x38\xf3\x2b\xc6\xc0\xa5\xc5\x12\x37\x92\x2a\xe9\x2b\x06\x2b\x85\xe7\xe8\x29\x25\x84\xf2\x4c\x4f\xa9\x71\xba\xed\xda\x4e\x3b\xdc\x76\x40\x60\x5e\x19\xa7\xdb\xee\xf4\x2c\xd8\xd8\x03\xa7\xfb\x0e\x08\x12\x22\x8f\xd3\x65\x76\xba\xef\xda\xe1\xa7\x0e\x6f\x3a\xcd\x56\xe0\x34\xbb\xb6\x08\xde\x18\xba\x67\x0d\xdc\xb3\x7c\xe4\x67\xe8\x9e\x35\xaa\xea\x1f\xbe\x1a\xa3\xba\x7d\x80\x20\xcc\x7c\x54\xd5\x3f\xa0\xb4\xc6\x2c\x54\x6c\x67\x42\xe2\xc2\x36\x2a\x2e\x1d\x43\x2f\x2e\x5f\xb7\x19\x7a\x71\x09\xd1\x96\x52\x3d\xf4\xe2\x12\x82\xb7\xce\x46\x75\x55\x56\xef\xf0\x70\x98\x19\x55\xcd\xae\xea\x9d\x8a\x16\x57\xd5\xec\xaa\x92\xb0\xb1\x63\xaa\x92\x10\x88\xca\xf4\x55\x25\x61\x75\xb9\xe1\xa4\x33\xaa\xcb\x0d\x88\x06\x1f\xaa\x2e\x37\x20\x64\xf2\x55\xf1\x00\x04\x8f\x34\x8d\xaa\x78\x00\x82\x47\x6b\x46\x55\x3a\xd4\x6f\x65\xc1\xe8\xf4\xf5\x1a\x55\xe6\xdd\xd0\x47\xaa\x8b\x01\x68\x98\x36\x46\x75\x31\xe8\x12\xd6\x48\x3d\x34\x74\x09\x13\xb2\x15\xbf\x74\x3c\xb8\xe0\xf6\x4d\xd5\xa1\x4f\x98\x10\x5b\x48\xb2\xef\xce\x32\x2e\x1b\x43\x37\xb1\x81\x9b\xd8\xae\x9e\xa1\x9b\x98\x50\xbc\xa7\x1e\x97\xbc\x14\x48\x37\xc2\xc5\x35\xc9\xb8\x5c\x0c\x98\x3e\xc7\xe5\x62\xb8\xcc\x91\xdf\x24\x55\x49\x97\xc5\xac\xa1\x49\x43\xb5\x43\xdf\xb9\xb8\x13\x19\x97\x93\x80\x9b\xdf\xb8\x9c\x04\x20\x32\xf9\xd2\x49\xb8\x3c\xd0\xba\xaf\xae\x66\x43\x38\xd0\x6e\x76\xa1\xf9\x65\xfb\xbc\x38\xd6\x58\xea\x3a\x36\xae\xaf\xf7\x6d\xf5\x5e\xd7\xb1\x81\xeb\xd8\xc1\x6d\xe1\xd0\x75\x6c\x34\xef\x2c\x70\xe3\x18\xfa\x67\x09\xc1\x85\xf9\xd0\x3f\x6b\x34\xed\x7e\xbc\x63\x3d\xcc\x47\x2c\x04\xde\xd6\xa3\xa9\x25\x37\x8f\xd1\xbc\xbe\x3a\x9a\x8a\x11\x10\xe4\xdc\x1f\x7a\x76\x8d\xa6\x0c\x22\xd1\xff\x68\x32\x24\x20\xc9\xd9\x34\x9a\x32\x48\xd7\xae\x46\x62\x96\xa1\x6b\xd7\xd0\x41\xab\xe1\x2a\x31\x74\xd0\x1a\x38\x68\x1d\xdc\x40\x0f\x1d\xb4\x84\x12\x1b\x27\x9f\x70\x52\xc3\xf7\xca\x61\x5b\xe1\xa4\x9a\xdf\x37\x48\x6b\x32\xcc\xef\x2b\xe4\xc6\x80\x98\xdf\x77\xe0\x33\x55\x7c\x35\x7e\xe8\x34\x25\x04\x79\x2f\x46\xb8\x01\x83\xb1\x34\x78\x69\x84\x63\x09\x44\x85\x69\x87\x63\x19\x5c\xfa\xfb\xc4\xc3\x08\x4f\x21\x40\x7a\x36\x0c\x87\x37\x9a\xc5\xd0\x14\x43\xfd\x09\x08\x6e\xcc\x87\x6e\x4e\x23\x88\x5d\xfa\xc6\x37\xc2\x1a\x30\x2e\x6e\x08\xe0\xc0\xb8\x38\x22\xed\x02\x63\x19\x72\x68\x20\xc9\x34\x32\xc2\x4d\x09\x14\x9f\xc1\x18\xe1\xae\x04\xa2\xe6\xdf\x20\xbb\x43\x8d\x2b\x88\x11\xd0\xc7\x65\x84\x1c\x1c\x48\xee\x21\x46\xc8\xc0\x83\x63\x45\x10\x85\x30\xc2\xbd\x0d\x04\x3e\xf1\x23\xdc\xda\x7a\x68\xc5\xc6\x59\x5a\x0f\xad\x11\x4e\x39\x5b\x4a\x0f\xad\x91\xdf\x5c\x52\x43\x3a\x97\xe9\x5c\xc2\x9e\x74\xda\x12\x92\xb7\x91\x87\x4e\x5b\xc3\x64\xb4\xbe\xff\x3d\x4c\x46\x2b\x34\xc2\xe5\x86\xc9\x68\x85\xe2\xcb\x86\x23\x5d\xf0\x40\xe2\x98\x31\xd2\x63\x21\x39\x69\x8b\xf1\x49\x23\x5d\xf0\xa9\x9c\xae\x92\x42\x12\xcd\xe5\x1d\x8e\xa1\x6f\xd7\x20\xf1\xeb\xa2\xd1\xde\xb0\x56\x0c\xb4\x5c\xa5\x0c\xb2\xc0\x7e\x90\x2e\x64\x73\xc1\x8e\x84\x73\x06\xb7\x41\x23\xe5\x9c\x40\xba\x1a\x75\x14\x1b\xe9\x50\x12\xac\x30\x74\x01\x1b\xb8\x80\xf9\x54\xc9\xd0\x05\x6c\x10\xe3\x5b\xbe\xc5\x6d\x90\xaf\x90\xc1\xa2\x35\xc8\x77\xe8\xdb\xf5\x9d\x32\xf5\xed\x12\x12\x77\xcf\xa1\x6f\xd7\xd0\xb7\x2b\xc8\xc3\x32\xf4\xed\x12\x02\xdf\x92\xa1\x6f\xd7\xb8\xc9\xdd\x17\xfb\x46\x43\x54\x8d\x80\x24\xe8\x79\xf0\xf4\xff\x2f\x03\x77\xaf\x55\x6c\xf5\x54\x7f\x2f\x21\xb8\x07\x1c\xb7\x07\xb9\xdb\x39\xc5\x37\x77\xdc\xce\xe9\xed\x26\xdb\x25\xd9\x05\x18\x6c\xec\xec\x6c\x83\x92\x85\x74\x7b\x1a\x93\x3c\x0c\x40\xd6\x59\x6a\x18\x80\x2c\xe4\xf6\x91\x42\xd2\x6d\xb1\x0a\xad\x4b\x83\xaf\xed\x56\x60\xaf\xb8\x95\xd8\x36\x2b\xb0\x57\x6e\xf6\xfd\x2b\x66\x73\x9b\x3c\x81\x1f\x73\x81\x00\xab\x18\x9f\xaa\xa1\x01\x49\xc0\xf7\xb8\xd5\xd0\xf0\x1d\x2b\xb1\xc3\x00\x74\x1e\x13\x92\x10\xae\x71\x87\x23\x1e\x56\xca\xf6\xd0\x79\x4c\x68\x84\xae\x8c\xdb\x15\x08\xc4\x85\xc0\xb9\x5d\x81\xb7\xdc\x64\x77\x9a\xe5\x26\x40\x10\x99\x36\x6e\xb9\x89\x21\xd4\xbe\x8d\x3c\x0c\xa1\x16\x12\x0b\xe4\x30\x84\x7a\xe8\x76\xa6\x23\xd7\xd0\xed\x6c\xe0\x76\x76\x90\xe4\x61\xe8\x76\x36\x8c\x67\xf6\x39\xa7\x61\x3c\xb3\x90\x5c\x5f\x0c\xe3\x99\x85\x62\xe0\xce\x30\x9e\x59\x08\xde\x30\x1f\xc6\x33\x0b\x25\x30\xf4\x0f\x03\x9a\x85\x54\x3e\x1a\xcf\x3c\x70\x5c\x2b\xbe\x20\x3b\x0c\x55\x16\x32\xbe\x76\x0c\x49\x0e\xe5\x65\x7b\x1f\x69\x1e\xba\xad\x80\xa1\xec\xf5\xab\x94\x4f\xdd\x1e\x40\xca\xf1\x74\x89\x1b\x38\xb6\x15\xdf\x70\x1c\x7a\xb6\x09\xb1\x05\xed\xd0\xd0\x06\x14\x1f\xd1\x1f\xbd\x7e\x35\x10\x76\x81\xe9\x4a\xff\xb7\xa1\x2f\x9a\xe9\x76\x86\xbe\x68\x42\x92\xec\x6a\xe8\x8b\x36\xfa\xb7\x78\x61\x04\xbd\x7d\x34\xae\xa2\xfd\xd2\xc5\xdb\x5d\xbc\x48\xfd\xee\xe2\xd5\x3d\x2d\x34\x4a\xe9\x9e\x36\xba\x62\xe9\x70\x2c\x15\x4b\x40\x34\x27\x4b\xb1\xd4\x5d\x82\xc4\xcf\x8e\xee\x12\x04\x42\x8d\xaf\xbb\x04\xbb\xeb\x8d\xac\xcd\xa3\xbb\xde\xba\xd2\x8b\x93\x78\x77\xbd\x75\xb9\x20\x99\xe2\x47\x97\x0b\x02\xd1\x50\x0c\xbb\x5c\x10\x28\xc1\x83\x00\xa3\x2b\x64\xba\x8f\xa4\x3b\x59\xea\x8f\x7a\xd8\xc5\xe1\xcc\xb8\x2c\xf1\xb0\x3b\x48\x8e\x31\xf4\xb0\x13\x1a\x66\xfc\x31\xd4\x34\x80\x24\x81\xff\x18\x6a\x1a\x83\x73\x6a\x68\x76\x1d\x9e\x53\x81\xdc\x4e\xbf\xbc\x25\x71\xbf\x55\x25\x75\x49\x64\xf2\x84\xb9\x0d\x57\xdb\x50\xd4\x69\x75\x1d\x2e\x2d\x20\x78\xd1\x6f\x0c\x45\x9d\xd9\x50\xe3\x6f\x49\x47\x3e\x4c\x96\x2a\x24\x99\x22\x86\xc9\x52\xc7\xe0\xf6\x28\x0e\xdb\xe4\x92\x02\x52\xd5\x44\x9f\xbf\x81\x33\x5f\x31\xa3\xdd\xd0\x9b\x4f\x48\xdc\x38\x87\xce\x7c\x43\x5f\xbb\x20\xa3\xcc\xd0\xd7\x6e\x7c\xbe\x76\x61\x31\xa6\xc3\xdc\xaa\x41\xd6\xe4\xa1\x7f\x9a\x90\x9b\x9d\xf6\x60\x8b\xff\x59\x09\xd2\x21\x0f\x43\xee\x85\xe0\x7e\x6a\xe8\x8b\x26\xac\x62\xb4\xd7\x05\x3a\xbe\x95\x87\x66\x66\xc8\xbd\xd0\x02\xee\xaa\x2f\xd7\x18\x2a\x44\x27\x67\x67\x43\xee\xc7\x17\x72\xcf\xd1\xc8\x90\x7b\x61\x15\xa3\x06\x8d\x4c\x40\x6c\x08\xaa\xa1\x91\xc9\x84\xae\xbe\xbc\x30\xf4\xe6\x12\x82\xf4\xfb\x43\x6f\xae\xa1\x37\x97\xa9\xfb\x87\xde\x5c\x03\x6f\xae\x03\x37\x9c\xa1\x37\xd7\x30\xe2\xfd\x33\xeb\xe9\x4d\x33\xf4\x58\x89\x93\x75\xa0\xc7\x8a\x90\x17\x1b\x5b\x8f\x95\x81\x2b\x4a\x89\x33\x2b\xb4\x90\x86\xb5\x8b\x01\x31\x3d\xe5\xd0\xef\x24\x2a\x7d\xd0\xef\x64\xe0\x77\x72\x68\x49\xd1\xef\x64\x98\x65\x2e\x2a\xbb\xc7\x2c\x73\x42\x10\x18\x34\xcc\x32\x37\xcc\x0b\x67\xa8\xeb\x30\x2f\x9c\x10\x9a\x94\xcc\x0b\x37\x0c\x5b\x8f\x0a\x03\xf7\x3e\x5e\x28\x51\x51\xfb\x8d\x5b\x17\xe2\x62\xc8\x1f\x05\x9f\x39\xda\x74\x56\x1a\xde\xb4\x0b\x89\x33\xff\xf0\xa6\x7d\xf8\xb8\x7d\x54\xf4\x1b\xaf\x91\x85\xe0\x9a\x6d\x78\x8b\x3c\x1e\xf9\x04\x09\x3a\xc6\xe3\xd4\x3c\xbe\x26\xc4\x59\xdf\x5b\xe4\xf1\x7c\x83\x84\x7e\xe3\x95\xf1\xe0\xca\xf8\x20\x4d\xe1\xf0\xca\x78\x98\x7f\x2c\xc8\xb3\x31\xbc\x0c\x16\xd2\x93\xa1\x97\xc1\xc3\x6b\xde\x4f\xdc\x7a\xcd\x2b\x44\xc0\x73\xbd\xe6\x1d\x5c\xed\x16\x73\xf2\x8c\x57\xb1\xf1\x1a\x0a\x9d\x7e\x99\x92\xba\xc5\x76\x68\x43\x1a\x86\xc8\xf4\xd7\x58\x83\x5e\xc3\xea\x8b\x38\xbc\x86\x15\xf2\x0a\x49\x16\xc3\x29\xd5\x7c\x19\xc3\xcb\x54\xa1\x11\x65\x31\xbc\x4c\x15\x56\x31\xba\xa5\xc5\x1c\x48\x1e\xd6\x19\xde\xaf\x0e\x2e\x53\x57\x31\x3f\xb5\x0b\x8d\x07\xba\x8b\x24\xbb\xd0\x6c\x1b\xab\xc6\x7b\x52\x21\xaf\x90\xf4\xb5\x8d\x55\xa3\xbd\xd0\x4b\x51\xa1\xf8\xe6\xd1\x78\x5d\x35\x40\x34\x24\x89\xf7\xa4\xc3\x1b\xd0\x20\xde\x7a\x78\x03\x2a\x04\xb1\x1d\xc3\x1b\x50\x21\xc9\x1f\x32\xbc\x01\x1d\x04\xea\x97\xb8\x50\xbb\x4d\xef\x26\x24\xcf\x05\x8d\x57\x86\x01\xe4\xc5\x66\xf3\x9e\x74\xbc\xae\x2d\x1c\x5d\x86\x17\x95\x42\xe0\x7c\x37\x8c\xe3\x17\x56\x31\x7a\xaa\x85\x18\xc8\x0b\x89\xe6\x75\xe6\xe0\x3a\xf3\xc0\xaa\x38\xbd\xce\x9c\xdc\x36\x96\xc0\xaa\x38\xbd\x6e\x14\x5a\xae\x65\x3f\xbd\x6e\x9c\xdc\x23\x96\xa0\xb9\xd3\x8b\x44\xa1\xb5\xb5\xd7\xa6\x17\x89\x73\xfb\x56\xe5\x5a\xa9\xd3\x5b\x43\x21\x48\xeb\x3f\xbd\x35\x9c\xdb\xb7\xdc\x32\xa1\x0d\x69\x03\x8b\x67\x85\x64\x3b\x14\x29\xf8\xfc\x4f\xef\x03\x85\xe4\xa9\xe3\xe9\x7d\xe0\xdc\x64\x2b\xd8\x28\xe7\x06\x5b\x11\xa2\x16\xda\x06\x5b\x99\x86\xc6\xfb\x70\xcf\xf4\xf2\x4f\x70\xaf\x4d\xef\xfe\x84\x55\xcc\x5f\xb3\xf7\x3e\x39\x52\xe8\x15\x27\x82\x69\x04\x7d\x10\x59\x39\xbd\x3a\x13\x82\x60\xa8\x69\x04\xbd\x50\x02\x4b\xe3\xf4\x36\x6d\x7a\xff\x15\x98\x15\xa7\xf7\x5f\x93\xfb\xaf\x23\x97\x8c\x9f\xde\x7f\xcd\xe2\x58\x62\x20\x9b\xde\x62\x09\x89\x49\x75\xfa\x2a\xf8\xf4\x55\x70\x34\x97\x9f\x49\xef\xe9\xa3\xe1\x42\xe0\x25\x38\x7d\x34\x7c\xfa\xf4\x77\x60\x79\x9b\x5e\x7c\x09\xad\x5d\xb4\x89\xe3\x92\x10\x78\x2c\x4c\xef\xbd\xa6\xf7\x5e\xd1\x92\x62\xcd\x66\x7a\x97\xb9\x16\xf2\xf4\xde\x6b\x16\xc7\xcb\x31\xf4\x9d\x6d\x21\x79\x50\x75\x16\xc7\xcb\x7b\xaf\xe0\x75\xf4\xe9\xbd\xd7\x2c\x4a\x43\x6c\x65\xb3\xa4\x9f\x7e\xd2\x90\xe6\xa6\x9f\xa6\x39\x35\x12\x12\x93\xe4\x55\x98\xd1\x8d\xd3\xab\xb0\xc9\x55\xd8\xb9\x2d\xce\x3c\xbd\x0a\x13\x92\xdd\x39\x0d\xa6\x9f\xbb\x87\x08\x97\xe3\xce\x21\x42\x08\x9e\x51\x9e\x3b\x87\x88\xb9\xbb\x7b\x48\x59\x32\x77\x77\xcf\x6e\x80\x1d\x4d\xf3\x5e\x6d\xee\xae\x77\x12\x0b\xce\xdd\xf5\x0e\x34\xb4\xdc\xb9\xbb\xde\xf7\xcb\x4a\xd9\x8b\xbb\xc3\x0b\xe4\x75\x49\xb2\xd2\x2f\xed\x43\x40\xaa\x92\x9a\x5f\x52\x81\xeb\x1d\x48\xa2\x38\xe7\xce\x2d\xf9\x34\xd0\x5f\x2f\xcf\x69\x24\xbf\x10\x35\x2c\x66\x73\x2f\x27\x21\xa5\xbd\xd2\x5e\xce\xf5\x74\xbe\x39\x6c\xca\x69\xbc\x9b\xe6\x8e\x9c\x16\x1a\xa9\x7a\x26\x09\x01\x16\x9c\x16\xa3\x6d\x2e\x90\xdd\x2c\xfa\x3b\x63\xe4\x02\xd9\xbf\x99\x67\x1d\x79\xe7\x37\x09\xf8\x2f\x91\xfe\x1c\xec\x55\xd0\xca\x33\x77\xd8\xeb\xdc\xd5\xd1\x48\xac\x3d\xf7\xb0\x0f\xe8\x68\xf9\x15\xb3\x0b\x9e\x0e\x48\xac\x3d\xb9\x27\xfc\xc0\x93\xc0\xf4\xb6\x70\x72\x35\xb8\x8a\xd1\xfb\xb4\xbd\x3a\xac\x6d\x4c\x56\xda\x5e\xdc\x55\xfe\xba\x1c\xd0\xdb\x84\x24\x7c\x6a\x7a\x37\x38\xbd\xbb\xd3\x50\x3f\xbd\xbb\x13\xf2\xf4\xd7\x5c\x95\xdc\xdd\x9d\xc4\x91\x4c\xef\xee\x26\x97\x72\x25\x48\xd3\x3d\xbd\x95\x13\x92\x47\x0a\xe6\xc1\x99\x75\x1e\xb8\xd2\x07\x41\x6c\xf3\xe0\x34\x2a\x04\x6f\x2f\xce\x83\x43\x84\x50\x82\x44\x3a\xf3\xe0\x14\x21\x24\x3a\xeb\x3c\x38\x45\xcc\xc3\x05\xcd\x55\xd1\x3c\x5c\xd0\x40\x12\xef\x3f\x0f\x17\xb4\x4f\x4d\x07\x2f\xf4\x4e\x9f\x9a\x16\x12\xd5\x76\xfa\xd4\xf4\x3c\x64\x61\xa4\xf3\x9e\x87\x2c\xec\x30\x66\x9a\x29\x3d\x64\x61\x87\x4a\x0a\x56\xe3\x79\x54\xbb\xc0\x3d\x59\xf9\xbe\xb4\x0b\xdc\x93\x05\x49\x7e\xe6\x51\x6d\x6f\xf5\xe4\x99\x90\x86\x24\xbb\x50\x6d\x9b\x5d\xa8\x76\xe1\x80\x64\x17\xaa\x0b\x84\xce\x73\x28\x9e\x47\xfb\xda\x41\x4f\x9b\xed\xe0\x15\xd2\x76\xd0\xdc\x66\x3b\x9a\x43\xc9\x36\xe5\x9e\xf4\x83\x6c\x4e\x42\xb3\x69\x2a\x24\x5f\x0d\xcd\xb6\xf9\x96\xe0\x6e\x31\x9b\xe6\xba\xcf\xa0\x57\xae\x7b\x6e\x4b\x17\x8d\x2e\x84\xe3\x16\x86\x37\xd1\x90\x70\xdc\xf4\x17\x65\xeb\x92\x58\xe2\x83\x96\x27\xe3\x11\xf6\x20\x1c\x36\xc7\xc8\x1d\x73\x98\x90\xc9\x8e\x86\x4d\x0b\x87\x2d\x6d\x87\x6d\x23\xdd\xd8\xf5\x55\xe0\xb0\x69\x7b\x24\x82\x6f\x9a\x5f\x42\x88\xdc\xa9\x20\xed\x01\x97\x7f\xde\x52\xcc\x23\x5d\x0d\xe6\xcb\xac\x16\xdb\x25\xed\x16\xa3\x21\xee\x3f\x20\xd2\x31\x4a\x97\xbd\xc7\xa6\x84\x85\x1c\xee\x3f\x20\x2e\x87\xcd\xed\x77\x78\x5a\xc9\xf4\x53\x7b\xcf\x25\x21\x01\xa3\xf3\x48\xe7\xcf\xbb\xf9\xaf\x4e\xa7\x4f\x4d\x9f\x64\xe9\xd3\xbb\x68\x21\x78\x63\x7c\x7a\xd9\x3c\x79\x76\xbc\x24\xaf\x06\x4e\xdf\x1d\x17\x5a\xba\xec\x15\x3b\xc0\x2a\x46\xdb\xdc\xf3\x40\x70\xb8\x9a\x5e\x53\x4f\xae\xa9\xcf\xfd\xf8\xb9\x8b\xda\xf4\x16\x5b\x58\x3f\x7c\x40\x2b\xd2\xcc\x8c\x1a\x90\x76\x49\xa7\xc5\x4e\x68\x55\x1a\x97\x72\x4b\x89\x9e\x27\xa6\x2d\x61\x15\x93\xd6\xa4\x35\x86\xcb\x0a\x42\x52\xb7\x98\x35\x0c\x69\xa4\x78\x40\x78\x79\x27\x3e\x79\xd5\xb9\x78\x21\x32\x79\xdb\xf9\x03\x0f\x99\xd3\x17\x9e\x27\x6f\x37\x17\xef\xa5\xa6\x8f\x37\x0b\x71\x5d\x16\x3b\x25\x55\x8b\xd1\x36\xd9\x04\x10\xf5\xa0\x82\x6a\x73\xe1\x1c\x5a\x35\xa7\x37\xec\x42\x24\x92\xca\x1b\xf6\xc9\x6d\x7a\xd1\xc6\x3d\xbd\x4e\x17\x82\x94\x6f\xd3\x97\x9a\x27\x49\x46\x8a\xe6\xae\x69\x96\x11\xe1\x63\xc2\x5e\xba\x4f\xde\x56\x2e\xda\x6a\xa7\x8f\x2b\x0b\x91\xf0\xef\x53\xf9\xeb\x7b\xcb\x5e\x21\x4c\xdf\x5b\x16\x22\x3f\x92\x63\x74\xb9\x58\x60\x1d\xa7\x92\x15\x08\xee\x37\x27\xef\x31\x7f\x50\x34\x37\x4f\x9f\x65\x16\x22\x3f\x92\x6d\xc3\xd9\x4c\xfb\xed\xf4\x59\x66\x21\x48\x53\x36\xcd\x93\x22\x04\xc9\xe2\xa6\x79\x52\xa6\x4f\x30\x6b\x92\x9f\x3a\x09\x08\x9f\x68\xf1\x09\xe6\x89\x8f\x40\xd1\xbc\x32\x75\x12\x10\x3e\x75\xe1\x94\xd1\x99\x75\x45\xfb\xed\x34\xeb\x8a\xd0\xc2\x5f\x93\xd1\xe1\x36\x50\x34\x81\x4d\xfd\x06\x84\x4f\x18\x98\x88\x45\xf0\x74\x33\x4d\xc4\x22\x04\x3e\x1e\xf3\x94\x43\xfa\x52\xb3\xa6\xbe\xe9\x4b\xcd\x42\x54\x37\x8c\xfc\x90\x74\x2d\x25\xc9\x2b\x36\xcd\xd7\x22\xc4\x09\xef\x3b\x65\x91\xc0\x2a\xe6\xa7\xf6\x2a\xd0\xd9\x60\xcb\xa7\x2c\x12\xf8\x24\xdc\x29\x8b\x3c\x55\x3d\xd2\xdf\x77\x92\xe5\x90\x76\x53\x0e\xa9\x7b\x44\xf2\x7c\xc2\xd4\x3d\x42\x88\x74\x6c\xe5\x90\x40\x70\xb5\x31\x75\x8f\x10\x9a\x62\x50\xf7\x08\x21\x78\x44\x69\x9e\xaa\x2c\x40\xf1\x95\xfe\x79\xca\x33\x81\x48\x27\x45\x9e\xa9\x2b\x44\xca\xe6\x74\x85\x10\x3e\xe1\xae\x2b\xc4\x3c\xd3\xdd\x8d\x56\x7b\xca\xe6\x80\x4f\x55\x38\xe5\x72\x7a\x4c\xf8\x68\xf7\xd4\x63\x62\xe2\x31\x71\xaa\x62\xe9\x31\x31\x49\x58\xb3\x8a\x49\x3b\xa4\xc1\xf6\x59\x7e\x3a\x51\x08\x11\xe8\xe5\x3a\x51\x08\x41\x72\xb0\xa9\x0f\x85\xe0\x95\xd6\xd4\x87\x62\xd6\xd3\x29\xe6\xe8\x54\x55\x76\xaa\xef\xc1\x31\x51\xba\x55\x4c\xfc\x26\x4a\x92\x4b\x61\x56\x35\x9b\x0a\xcb\x4a\x66\xbd\xca\xb2\x80\x55\x4c\x5a\x91\xa6\x23\x4b\x85\xb4\x4b\x72\xeb\x35\x3a\x25\x1b\x03\x82\xb4\x14\xb3\xaa\xff\xd4\x8f\xb3\x71\x86\x32\xfd\x8e\x10\x78\xd9\x4f\xd3\xef\x4c\xd3\xef\xe4\xc6\x21\xdc\xf4\x3b\x42\xb4\xcb\x4a\xed\xc2\xc7\xd9\xd0\x45\xcc\xbf\x23\xe8\x1d\x31\xcd\xbf\x23\x04\xf1\xb9\xb3\xaa\xff\xe8\x06\x92\xdc\x14\x4c\xdd\x40\x84\xe0\x65\xe6\xa9\x1b\x88\x10\x97\x5f\x7a\x2e\x04\x3e\x35\xcc\xc4\x3d\x42\x54\x34\x00\x7d\x45\x84\xf5\xfb\x16\x73\x38\x70\x16\x91\x23\xea\x2c\x32\xf1\x06\x59\xc5\x18\x5c\x39\x27\x10\x3c\xe2\x3d\xab\x27\x97\x7a\x7d\xfd\x64\xd4\x3c\xbc\x57\x03\x00\x10\x11\xd5\xc3\x4c\xfd\x78\x6e\xf8\xa9\x1d\x85\xe7\x12\x94\x39\xab\x3c\xb7\x7e\xcc\x14\x69\xec\x0b\xe3\x42\x10\x18\x36\x7d\x61\x7c\xd6\xa6\x1c\x85\xb1\x55\x39\x27\xd0\xf2\x6f\xf0\x50\x9b\x55\xc6\x5a\x3f\xc6\x8a\xbe\x51\x65\xac\xf5\xf3\xf8\x64\x54\x65\xac\xf5\x63\xac\x49\x77\x64\xac\x40\x8b\x66\x31\x3b\xfd\x31\x56\x34\x95\x2a\x63\x05\x22\x39\x23\xea\x49\x23\x94\xc4\x97\x6b\xd6\x70\xde\xc2\xe7\x65\x58\x9f\xf2\x5a\xde\x46\x5f\xc5\x98\x11\x39\x2b\x10\xd5\x1d\x20\x67\x05\x56\x31\x3f\xb5\x5b\xe1\x9a\xa5\xb9\x32\x5b\x60\x15\xa3\xa7\x72\x5b\x20\xf0\x8a\x9d\x35\xec\xa9\x0c\xb8\x6c\xd2\x5c\xda\x30\x60\xed\x1f\x55\x06\x5c\x65\xc0\x64\x5e\x9b\x55\x06\x0c\x7c\x0a\x7a\x95\x01\x03\xc5\x24\xc4\xb3\xca\x81\x81\x48\xa7\x5c\x0e\x5c\xbd\x1f\x3f\x18\x0f\x39\xb0\xde\x46\xe6\x86\x9e\x7a\x1b\x09\x41\x88\xca\xd4\xdb\x48\x88\xac\x96\x72\x3c\xd2\x8e\xba\x51\x54\x34\xab\x8a\xa6\x5b\x5d\x45\x13\xd0\xb5\x66\x56\x15\x4d\x60\x7d\x49\x0f\x54\x34\x81\x20\x5d\xc7\xd4\x9b\x69\x56\xd9\x2d\xcf\x47\x4d\xfd\x94\x84\x50\xb5\xf7\x35\x7a\x61\x15\x93\xe6\x2c\xc3\x6e\xf1\x63\x9b\xba\x2e\x09\x41\x12\x92\xa9\xe7\x92\x50\xb2\xa0\x11\xe9\xba\x24\x04\x49\x48\xe6\x25\x53\xbe\x4c\x56\x44\xdf\x75\x66\x9a\x7a\x2e\x25\xd1\xf9\x53\xcf\x25\x21\x78\x67\x69\xea\xb9\x24\xac\x62\x27\xb4\x94\x96\x14\x6b\x90\x6e\x49\xcc\x7b\xf3\xc7\xba\xa4\xe1\x97\x15\xda\x94\xa6\xbb\x87\xc5\x1e\x49\x0e\xd1\xee\xaf\xbd\xd2\x18\x22\x14\xc9\x4b\xe6\x6d\x76\xaf\x24\xa2\x7e\x9a\xdd\x4b\x88\x44\x62\x98\xdd\x4b\x68\xca\x95\x4b\xde\x7d\x7d\xcf\x21\x50\xa7\xbc\xdb\x57\xe4\x93\x98\xdb\x69\xc2\x2f\xe1\x33\x65\xfa\x8a\xbc\xb0\x8a\xf9\xa9\xe3\xa1\x56\x7a\xd9\x0c\x87\x43\x16\x5f\x0e\xdb\xe1\x78\x54\x5f\x9b\x64\xd4\x64\xf1\x97\x2c\x1e\x7f\x92\x69\x5e\x30\xc1\x2b\xc7\x69\x5e\x30\x21\x78\xc4\x6a\x5e\xb2\x78\x20\xea\xd7\x34\x47\x08\x93\x6a\x16\xbf\x94\xc5\x03\x51\xed\xa8\x2c\x1e\x08\xae\xae\xe7\x25\x8b\xc7\xd5\x6c\x7d\x49\x05\x32\xef\xcb\xa4\x5d\xe8\xcb\xd7\xe5\x70\x5c\xce\x3b\x5a\xde\x25\xf3\x06\x82\x27\xef\xe7\x75\xd9\xcf\xcb\x7d\x70\x5a\xa9\x1d\xbd\xdc\x07\x4c\xa8\x2c\xfe\xba\x9c\xe4\xd3\x4f\xed\xc2\xe5\x24\xd3\x03\xf5\x65\x60\x15\xa3\x6d\x2a\xcc\x40\xf0\x9e\xf9\xd4\x25\x4e\xd0\xeb\x73\xea\x12\x27\xac\x2f\xe9\xa9\xfa\x32\xe0\x55\xde\xbc\xe4\xfa\x40\x90\x2a\x67\x5e\xb2\xf5\x4b\x7f\x35\x07\xb7\x39\xef\x72\x7a\x0f\x59\x97\x9c\x1e\xd0\xf2\x3f\x2f\x39\xfd\xd5\x9c\x50\x98\xdd\x25\x5b\x07\x82\xb4\x35\xf3\xd2\x30\xa0\xb7\x5e\x16\xb4\x02\xbd\xf5\xe6\x15\xb2\x2c\x98\xf3\xa5\x72\x0c\x44\x36\x49\xf6\xe0\xe3\xd7\xce\x9f\xfc\xfa\x92\x5f\x23\x4b\x2e\xf9\x35\xe0\xfd\xf6\xbc\x64\xd7\x40\x24\x2c\xeb\x92\x5d\x5f\x1f\x83\xad\x7e\xe9\xca\x92\xc1\xba\xc0\x65\xb0\x57\x3a\x92\x32\x01\x59\x27\x10\xc5\x89\x97\x75\x5e\xe9\xfa\x70\x23\xc8\x27\x2f\x0f\xe4\xc5\x62\xae\x8f\x8f\xb3\xc1\x14\x75\x4b\x9c\xb8\x25\x9e\xbc\x84\x3e\x75\x4b\x9c\x4d\x45\x92\x17\x45\x67\x93\x67\x35\x23\xd9\xd9\xca\x4d\x9e\xd5\x4e\x27\x26\xf6\x9f\x4b\xed\x26\xff\x02\x3e\xab\x4c\x93\x7d\x01\xe1\xc9\xa7\xc9\xbe\xc8\x98\x57\x7c\x5c\x74\x36\x39\x0e\xf0\x59\x87\xcc\x9e\x27\x14\xdf\x67\x9a\xa6\xcf\x13\xe2\x4c\xbf\xb4\xe5\x9c\x83\x35\x18\x35\x99\x50\x33\xff\x66\xf5\xc3\x2a\xc9\xc9\x45\x2b\x69\x32\x21\x20\x0e\xc4\x56\x93\x09\x99\x77\xcf\x27\xfd\xa6\x79\xf7\x84\xcf\xac\x64\xde\xbd\xd9\x3c\xcc\xee\x48\x59\xbd\x38\x85\x20\x03\xc6\x6c\xaa\x64\x40\xb4\xdd\x52\x0e\x87\x2a\x19\x59\x04\x66\x73\xbf\x02\xa1\xa9\xb0\xa9\x92\xe9\x12\x9a\xbb\xd3\xe6\x16\xd6\x25\x14\x2f\x8a\xa9\x4b\xe8\x6c\xea\x5a\x3b\x76\x81\xe6\xae\x03\xc2\x0b\x08\xbd\x44\x67\x73\x8b\xed\x48\x3c\xb3\xfd\x09\x8d\x00\xcc\x69\xb6\xbf\xa9\x4b\x68\xe2\x88\x35\x75\x09\x9d\xcd\xbd\xb3\xdb\x07\xf7\x0e\xd0\x1a\xdb\xa9\xb9\x77\x9a\xa7\x48\x9c\xa2\x66\x73\xa3\x00\xd9\x50\x3b\x9a\x1b\xa5\x61\x55\x4b\x22\xdc\x67\x53\x63\x01\x1a\x29\xe2\x66\x53\x61\x01\xe2\x74\x31\xaa\xb0\x34\xf7\x13\x3e\xd9\xb3\xb9\x9f\x80\xe0\x5d\xc5\xd9\xdc\x4f\xcd\x23\x63\x50\xa7\x0a\x4b\x4b\xc7\x88\x93\x7c\x73\x3f\x01\x41\x2e\xa7\xd9\x3c\xe5\x01\x25\x77\x98\x66\xf3\x98\x07\x44\xa2\x65\x37\x15\x16\x5d\x64\x4d\x71\x34\x75\x91\x9d\xed\xcd\x5f\x7f\x9c\xdc\x95\x4f\x5d\x64\xa7\x29\x06\xcd\xf2\x32\xcd\x21\x28\x04\x71\x5e\xd3\x1c\x82\x33\xb4\xeb\xe0\xed\x30\x75\x74\x15\x9a\xc6\xa4\x70\x3d\xc7\x37\x31\x28\x19\xba\xa6\xce\xc0\x17\xc1\x07\x06\x66\xd8\x55\xa0\xf1\xf0\xed\x0c\x0f\xc7\x40\x90\x20\x7d\xea\x99\x2a\x14\x9f\x81\x9f\xba\xa6\x0a\x4d\x4d\x52\xcf\x54\xa1\xb5\xcb\x52\x55\x12\x6a\x3c\xec\x25\x1c\x36\x3c\x4f\x4b\x1e\x4c\xbc\xae\xa7\x42\x1c\xcd\x1f\xeb\x92\x30\x0b\x32\x07\xa1\xb6\x06\x34\xef\x15\xf4\x4f\x15\xa2\x7e\xad\x70\x84\x34\x14\xb2\xf9\x42\x95\x0e\x88\x40\xd2\x84\x2a\x9d\x5e\xac\xa9\x68\xd7\x8b\x75\xe2\xc5\x7a\x72\x2f\x3c\xf5\x62\x15\x56\x31\x69\x45\x1a\x03\x84\x9a\x97\xaa\x74\x40\xe2\xbc\x32\x53\xf6\x08\xac\x2f\x2d\x76\x4a\xe3\xed\x00\x76\x50\x7a\xd0\x06\xf4\xf7\x9e\xe9\x41\x1b\x68\x5a\x7e\x53\xc5\x2f\x65\xac\x64\x79\x9a\x29\xe7\x04\x0c\x2f\x98\x29\xe7\x04\x82\xf8\xd2\x99\x72\x4e\xa0\xf1\xaa\xc1\x4c\x15\xbf\xd4\xd0\x48\x2c\xe9\x4c\x0d\x8d\x40\xca\xd8\xd2\xc5\x97\xde\x4e\xef\x56\xf9\x48\x42\xd1\xf9\x7a\xfe\x4a\x7a\xf9\x70\xcd\xb9\x2e\xbd\xc2\xfa\x7d\x69\x8e\x19\xe9\x46\xf0\x2b\x9b\x29\x63\x4e\x1f\x7d\xdc\x24\x39\x66\x0b\x12\xbf\xa0\x99\x2e\x64\x20\x48\x5d\x31\x53\xc6\x0c\xc4\xfe\xfd\xbc\x43\x06\x5f\xc6\x95\x74\xa6\x7c\xd9\x47\x7b\xdc\x3b\xa9\x6e\x08\x94\x24\x28\x68\xfa\x90\x8f\x10\xe1\xcc\xa9\x1b\xa6\x0f\x6f\x21\x60\x53\xdd\x30\xd5\x0d\x49\x31\x3d\x7d\xee\x47\x88\xf8\xda\xef\x90\x5d\xee\x13\x38\x42\x7a\x3e\x07\x92\xb7\xc3\x67\x2a\x1e\x80\x38\x51\x99\x52\xf1\x00\xb4\x86\x6e\x98\x6a\x78\xa9\xc4\x38\x9c\x3a\x25\x06\x90\x84\x6a\xce\x54\x62\xe4\xf5\x35\x8d\xe1\x50\x3c\x00\xa9\xe5\x3d\xaf\xaf\x69\x70\x43\xa2\x74\xa7\x4e\xd5\x42\x8b\xbf\x21\xa9\xe9\xd4\xe7\x5a\x28\xbe\x33\x3f\xf5\xb9\x16\x82\x6c\xc8\x53\x9f\x6b\xa1\xf8\xa8\xfc\x4c\x95\x42\x40\x0f\xb2\x99\x2a\x85\xe9\xd3\x42\xee\x2d\x75\x42\x20\xae\x8f\xe4\xd0\x68\x43\x85\x57\xa6\xd2\x29\xd5\x09\xc3\x52\x8e\x8c\x02\x8b\xe8\xdf\xa9\x4f\xb7\xd0\xb4\x19\xa6\x02\x2b\x8d\xd7\xe5\xe6\x22\xbd\x52\x4a\xd5\x44\x5e\x6b\x9d\x66\xfa\x14\x22\x1c\x53\xd5\x44\x20\x8f\xb4\x94\xe3\x87\x3d\xc0\xfb\x72\x5d\xc6\x85\x16\xae\x3a\xcd\x01\xa9\xa0\x23\xba\x78\xa6\x82\x0e\x08\xd5\xa9\x54\xd0\x25\xf7\x42\x49\xec\xef\x4c\x45\x18\x10\x81\xca\x99\x4a\x30\x20\x8f\xf4\x4b\x27\xc5\xfc\x66\x28\xcd\xba\xa4\x0b\x71\xda\x25\xd9\x7a\x6a\xf3\xc4\x42\x9b\xb2\xf5\x54\x80\x91\x7a\x7f\xa6\x02\x0c\xc8\x23\x25\xd9\x32\x4e\xdc\x81\xba\x94\x6a\x92\xe9\xf1\xfa\x70\x09\xcb\xb0\xd3\x98\x42\xe7\x49\x86\x6d\x72\xd4\x3c\x9a\xed\xb0\x4f\x70\xec\xe6\xda\x94\x63\x03\x91\x9b\x75\xda\x27\xaf\x76\x94\x08\xe6\x4b\x15\x82\x77\xf3\xa7\xce\xf2\x13\x67\xf9\x53\x4d\x40\x67\x79\x61\x7d\x29\xad\x48\xc3\xc9\x88\x85\x60\x0a\x55\x21\x89\x8d\x9e\xa6\x50\x9d\xf7\xc7\x64\xd1\x28\x6f\x99\xec\xed\xfb\x49\x9b\x3f\x96\x92\xec\x14\xab\xcf\x57\xb8\x84\xa6\x91\x46\x07\x7d\x21\x5a\x5a\x27\x9d\xf2\x79\xad\x8f\x59\xea\xca\x2e\x34\x4d\x28\xe6\x3c\x9d\x7a\xb7\x27\x81\xd0\x53\xef\x76\x21\x88\x4f\x9a\x7a\xb7\x4f\xf3\xa0\x26\x2f\xe7\x4c\x1d\xd2\x27\x39\x4f\x8b\xb9\xad\xa7\x49\x4f\x85\xe0\x2d\xcb\x69\xce\xd3\xa9\xa7\x79\xaa\x2e\xe9\x69\x2e\x64\xdb\x25\xd9\x5e\x65\x24\xa9\xc3\xa7\x8e\xe0\x13\x47\x70\x9f\x2e\x9f\x3a\x82\x4f\x93\x7c\xe6\x89\x58\xd0\xc9\x59\x08\x1e\xaf\x98\x26\xf9\x9c\xdd\x1d\x4a\x84\xf3\xec\xf6\xa1\x6b\x9f\x43\x86\x75\x77\xa8\xde\xcb\x49\xe8\xf2\xd4\x7b\x79\x76\xcd\x67\xe4\x26\x9f\x5d\xfd\xb1\x9b\xde\x95\x41\xea\xf6\xb4\xab\x2b\xe2\x9b\x3b\xbb\xba\x22\x90\x5a\x00\xbb\xba\x62\xd7\xaa\x54\x11\xa6\xdd\x35\x0e\xa4\xae\x42\xdd\x35\xae\xbf\x71\xe2\x1e\x39\xf5\x37\x9e\xf8\x1b\x9f\x1e\x9d\xf5\x37\x9e\xc3\x4b\x40\xde\x5d\x9e\x43\xa1\x0e\xa4\x5a\xbc\x4f\x5b\x4d\x7d\x84\x93\x10\xe4\xa9\x8f\xb0\x90\x84\xcf\x4f\x7d\x84\x85\x46\xd8\xe3\x1c\x8a\x4e\x20\x49\xf3\x30\xcd\x18\x2a\x94\xc4\xfd\x72\x9a\x32\x54\x88\x16\x92\x4e\x49\x36\x0d\x9e\x3b\x14\x9e\x43\xcf\xa6\x43\x92\x4d\x23\x46\xc4\x2b\x9e\xa1\xf0\x04\x92\x08\x8e\x39\x14\x9e\xb8\x22\xaf\x1f\x3b\xa0\x4d\x69\x64\xbb\x45\x2d\x1c\xda\x42\x86\x77\x7b\xe4\x65\x9f\x26\x1b\x15\x52\x7b\x80\xb9\x46\x27\xee\xc7\x25\xc9\xc5\x3d\xcd\x22\x2a\x34\xde\x69\x9a\x26\x11\x9d\x5f\x12\x51\x74\x28\x93\x88\xce\xa1\x45\x83\x07\x6c\xe7\xd0\xa2\x01\x24\xe9\xbf\xe7\x50\x04\xfa\x20\x58\x92\x6d\x6c\x9a\x17\x53\x88\xd3\xbe\xcb\xd5\x75\x45\x4e\xde\x2f\x9b\xba\x22\xcf\x21\xc3\x56\x3b\x37\x6f\xa5\xd0\x02\xee\x69\xda\xca\xf9\xa5\xad\xe4\x40\x67\xda\x4a\xa1\x25\xcc\xd3\xb4\x95\x42\x94\x2a\xc9\xd6\xba\xfb\x78\xbf\x76\xea\xea\x2c\xc4\xe5\x4c\xb9\xfb\x86\xea\x3a\xc9\xe6\xa7\x79\x2b\x05\x84\xdc\x4f\x25\xf6\x90\xed\x0f\x79\xfc\x85\xf5\x5e\xb7\x67\xe1\x13\x78\xc3\xf5\x3f\x64\xe8\xc4\x97\x4f\xb3\x5f\x0a\x71\xda\x74\x19\xfa\x90\x2d\x5f\xae\x15\xd9\x32\x90\x9a\xd2\x74\x8e\x9e\x38\x47\xd7\x8d\xe5\xa9\x73\xf4\x24\x39\x65\x49\xa2\xd0\xa7\xd9\x29\x85\x24\x03\xc6\x9c\x2a\xba\xe6\x93\xcc\x8b\x19\x37\x9f\xa4\x90\x38\xbc\x4f\xf3\x49\xce\xe9\x06\x20\x77\xd1\x9c\x6e\x00\xe0\x73\x11\x9b\x6e\x80\xe9\x5b\x5d\x68\x55\xd3\xf5\x0f\x24\x2f\x79\xcc\xe9\xfa\x07\x3e\xf9\x6c\xd2\x49\x21\x8f\xcb\x9f\x0f\x49\x61\x95\xfe\x7e\x4a\x43\x9b\xb8\x24\xdd\x92\x9c\x5c\x78\xa6\x2f\xb6\x09\xc1\xbb\x79\xd3\x27\xd9\x84\xe2\x63\x44\x73\xca\x33\xa7\x29\x58\x90\xc6\xbe\xd2\x26\xac\x62\x7c\xea\x6e\x02\xf2\x40\x0c\x4e\x77\xd3\xd4\x06\x81\x63\xed\x9c\x2a\x99\x40\xf0\x00\xd9\x9c\x2a\x99\x40\x1e\x9c\xf3\xcd\x87\x39\x49\x5b\x59\x7c\xdb\x68\x4e\x55\x45\x20\x0f\x67\x4f\x4d\xd1\xb4\x96\x9f\xeb\x9e\x69\x2d\xe7\x97\xd6\x12\x5b\xa0\x69\x2d\x85\x38\xb1\x43\x99\xd5\x72\xf2\x1a\x5c\xf9\xdc\xe3\xa6\xea\xdb\x34\xcf\x9c\x4b\x41\xf9\x06\x7c\xfa\xc4\x54\x36\xcc\xef\x71\x01\x49\x8e\x37\xde\x3f\x47\xf3\xb7\xba\xa4\xaf\x65\x74\xca\x0d\x6c\x0a\xcb\x74\x37\x99\xc2\x52\x68\x3a\xc0\x98\xc2\x52\xc8\xe3\x2b\xe5\x40\x2a\x3f\x2f\x6b\x50\xaa\x4c\xdf\x5e\x3b\xac\xc0\x0e\x60\xe3\x23\x61\xda\xf4\x7d\xba\x69\xa2\xcb\xbc\xec\x81\x1b\x7d\xea\xfd\xe3\x52\x50\xf6\x90\xd4\x72\x15\x63\xf6\xdc\xe8\x40\x1e\xe8\x6f\x86\x08\xcc\xa9\x91\x4f\xaf\x9b\xe9\xe9\x7a\x1a\xf7\x09\xbf\x99\x9e\xae\xe7\xb7\xb9\xc3\x4f\x6d\x48\xea\x99\x44\xdb\xdc\xdc\xd3\x13\x37\x2e\xca\x73\x7a\xe2\x9e\x66\xc9\x28\x7e\x69\x73\xd9\xef\xcd\x7d\xe0\x7e\x9f\x3a\xe2\xe8\x4e\x33\xd5\xd6\x80\xf4\xa6\x69\xaa\xad\xcd\x8f\x2d\xb8\xd8\x64\x0b\x53\x47\x1c\x64\xa0\xa1\x0a\x93\x50\x85\x5a\xd0\x70\x0d\x55\x10\xa2\x31\xde\x8f\xca\x1a\xf0\xe9\x8c\x8f\xca\xda\xe3\x59\x5a\xaf\x68\xb3\x66\x0a\xa1\x83\xb2\x49\x33\xe7\xa3\x02\xe7\x01\xfe\x51\x81\x03\x42\x4f\x30\x93\x66\x0a\xe1\xa5\x92\x49\x33\xe7\xa3\x74\x26\xcb\xce\x7c\x94\xce\x8f\x27\x5b\x04\xd9\xa3\x74\x7e\xbc\x49\x20\x6b\xfd\x34\xfb\xa4\x10\x1b\xc2\xe2\xf1\xb4\xf8\x78\x5a\xd4\x7d\xf8\xf1\xb4\xf8\x18\xc9\x13\xfe\xda\x94\xc4\x3e\x73\x38\xe4\x14\x8f\x97\xc5\xfa\x4e\x9b\xa4\x52\x48\xb2\x34\x4c\x93\x54\xce\x47\x19\x48\xe0\xf1\x7c\x94\x81\x80\x89\x1b\xa6\x09\x23\xa7\xd9\x21\x3f\xc9\x6e\x76\x48\xa1\x05\xba\x8f\xd9\x21\x85\xa6\xd5\xcd\xec\x90\x42\x6b\xf0\x13\x23\x43\x84\x90\x25\x1a\x19\x32\x8d\x0c\xf9\xe4\xbf\x91\x21\xd3\x6c\x85\xc9\x9b\x98\xd3\x6c\x85\x42\xf2\xba\xc2\x34\x5b\xe1\x34\xfd\x5f\xba\xd8\x0c\xdc\x98\x5f\xfa\x3f\xee\x48\x4d\xff\x27\x94\xd4\xf7\xdd\x58\x8e\x49\x2c\x47\x25\x9e\x70\x1a\xcb\x21\x44\xc0\x50\x4c\xff\x27\xac\x2f\x77\x68\xbb\x34\x92\x34\x20\x0a\x5f\x75\x7e\xb3\x04\xa6\x0b\xd0\x2c\x81\x42\x90\xc9\x7a\x1a\x18\x32\xdf\x6f\x46\xd9\xf1\xc6\x6d\x08\x41\xa4\xc5\x34\x6e\x43\x28\x49\x02\x89\xf9\xd6\xef\x53\xbd\x54\xfe\x06\xb7\xf1\xd7\x09\x07\x9a\xee\xda\xa6\x07\x14\xa2\xb2\x0d\x4d\x0f\x38\x7d\x8a\x31\xf5\x07\x37\xf1\x9f\x10\x17\x5a\xb7\x89\xff\x84\x92\xda\xbe\x5e\x99\xfe\xab\xa2\xd5\xfc\xb5\x26\xa9\x59\x8c\xe1\x52\xd3\x32\x3f\x60\x6b\x56\x90\x92\x86\xc5\x18\x07\xc5\x05\x10\x27\x27\xd2\x57\x71\xf1\x7a\xdb\xa3\x6e\x64\x14\x8a\xd0\x82\x5d\x67\x10\xca\x7c\x3d\xe8\xf0\x92\xe8\x34\xa5\x9f\x10\x9e\x6f\x0d\x42\x11\xe2\xc2\xf4\x6a\x10\x8a\xb0\xbe\xac\xd0\x6e\x69\x78\x6d\x14\xbf\xec\x92\xba\xc5\x18\x4a\x95\xc0\x2f\xa7\xdf\x61\x9d\xf6\xc0\xbb\xfe\x70\x61\xb4\xaf\x0b\xe4\x4b\xb7\x07\x2e\x6d\x20\x88\x30\x9e\x46\xaf\xcc\x57\x5b\x37\xa9\x2f\xa6\x39\xfd\x84\xdc\x1d\x70\xcf\x2a\xaf\x62\x45\xb5\xfe\x55\xac\xbc\x8a\x95\x2a\xc9\x79\x21\xf0\x25\xe3\xab\xc1\x9e\x12\xf8\x42\x32\xca\x69\xe0\xcb\xfc\x52\xff\x39\x07\x4a\x1a\x73\xea\xa5\xa6\x08\x83\x50\x26\x41\x28\x15\x83\xcf\x63\x10\xca\xb3\x79\x8d\xc2\xd2\x7a\xcc\x5c\x27\x04\x3a\xeb\x63\xc0\xc9\xe3\xb3\x8b\x89\x43\xd0\x63\x8c\x88\x10\x30\x89\xc7\xc4\x72\x8f\xf9\xe1\x32\xd6\xc4\x3c\xe6\x87\x13\x74\x6e\x7d\xcc\x0f\xf7\x18\x0f\x62\x56\xbd\xc7\x78\x90\xe7\x8b\x07\x59\xba\xd4\x63\x3c\xc8\xb3\x79\x31\x81\x25\xee\x31\x57\x9b\x10\xe1\xaf\xa1\x3b\x08\xc5\x98\x87\xc7\x5c\x6d\x42\xf0\xda\xe8\x63\xae\x36\xa1\xf8\x4e\xdc\x63\xae\x36\x21\x9a\xed\x68\xb6\x4d\x0e\xc6\x5b\xe7\x8f\x61\x23\xcf\xa6\xfa\x9f\x1b\xb5\x86\x35\xa8\xfe\x5f\x16\xb3\x06\xed\x35\xb9\x25\x34\xfb\xa0\xbd\xe6\x90\xe4\x20\x29\xf0\x49\x71\xf2\x6c\x08\x7c\xc1\x38\xef\x87\x07\xef\x3f\x68\xb0\xc8\xc7\x67\xef\x85\xf5\x25\xed\x85\x93\x0a\xba\x18\x3f\xbc\x81\xff\xc1\x2a\x46\x4f\x51\x15\x84\xc0\x33\xee\xf1\x29\xfc\xc7\xe7\x24\x13\xdf\xfd\xc7\xe7\x24\x85\x48\x47\x3c\xed\x95\x0b\x89\x47\x69\x1e\x63\x66\x1e\x62\x66\x2a\x6f\x13\x3c\xc6\xcc\x3c\x45\xee\x8a\xf3\xf0\x53\xe0\xae\x82\x0e\xcb\x4f\x81\xbb\x3e\x45\x1e\x85\x57\xf0\x53\xe0\x51\x42\x60\xb2\x79\x0a\x3c\xea\x29\x32\x1f\xfc\x1a\x9e\x02\xf3\x11\x1a\xf1\x29\x4f\x71\x6d\x15\xb9\x0a\xfe\x15\x0f\xe1\x30\x1f\x04\xaf\x4c\x3c\x06\xc5\x08\x51\x36\xea\x74\xd1\x18\xed\x92\x9c\xdb\x1f\xa3\x5d\x9e\xa2\x4d\x81\xc8\x85\xa7\x84\xbf\x86\x4b\xce\x61\x4f\xc3\x5f\xc3\x7a\xc2\x93\x9b\x4f\x09\x7f\xed\x5b\x20\x6c\x99\xe2\x02\x29\xde\x5c\x2d\xcd\xf7\x29\x2e\x90\xe2\x6e\x76\x16\x4a\xd8\x05\xa2\xfe\x89\x76\x7b\x0a\xbb\xf9\x29\xba\xdf\xb8\x65\x0a\x5a\xa2\x10\xd5\x2e\xb8\xb4\x8a\x87\x46\x1c\xbd\x9f\xe2\xda\x2a\x69\x12\x3d\x86\xd2\x45\x03\xe4\x69\x73\x5d\x33\xc5\xcb\x1b\x54\xdf\xa7\xb8\x68\x8a\x6f\xe4\x39\xe0\xae\x99\x62\xa6\xb6\xa0\x4e\xd7\x0c\x90\x27\x6c\xc0\xa4\x77\x4f\xd1\x76\x82\x87\xf8\xe3\x5b\x9a\x42\xc4\x61\x31\xfb\x99\x5f\x6b\x59\x1f\xf9\xb5\x16\x6b\xb3\x73\x80\xc4\x17\xf2\x64\x5b\x11\x43\xf4\xc1\xbe\xe1\x7a\xfd\x18\x4a\xf4\x10\x4a\x54\x79\x8d\xfb\x31\x94\x48\x58\xc5\x4e\x68\x45\x9a\x7d\xbf\x20\xed\x92\x76\x8b\x55\x68\x87\x34\x2c\x6e\x6c\x04\xc3\x8b\x1e\xc2\x87\x56\x31\x3f\x7d\xa5\xd9\xb6\x9f\x1b\xc7\x9f\x5d\x4e\x0a\xec\xdb\xe6\x2f\xcb\x4a\x81\xe4\xd1\xa4\x67\xaf\xb6\xa9\xda\xa6\x25\x33\x9e\xbd\xda\x26\x2e\x3e\x48\xb6\xfa\xec\xd5\x36\x71\xf1\x81\xbd\xf9\xd9\x39\xbb\x3e\xfb\x52\x3f\xd7\x97\x09\xed\x96\x46\x6c\x49\xf8\x65\x97\xc4\xfb\x76\x8d\xce\xa0\xab\x3c\x04\x3e\xed\x1b\xcf\xe4\x3c\xbb\xec\x7b\xf7\x91\xc8\x66\x33\xec\xf3\x52\x2d\x56\x31\x3e\xbd\x6c\xae\x29\x18\x1b\x83\x7f\xd9\x5a\x32\x23\x71\xb3\xf5\x18\x2b\xf5\x90\x97\x70\x7d\x49\xd3\xd0\x29\x84\x96\x9b\x5f\x86\x24\x2c\xf2\x4b\xdb\x7a\x8c\x95\x12\xf6\x0d\x67\xc5\x67\x57\x64\x00\xc9\x05\xc9\xb3\x5f\x76\xea\xb2\x53\x74\x40\x21\x42\x44\xd5\xfa\xd2\x5f\xb3\x53\x5e\x69\x6c\xfe\xd8\xd7\x29\xdf\xf0\xa7\x9f\xcd\x99\x5a\x02\x63\x7d\x49\x05\x4a\x0c\x20\x78\x7a\xe2\xd9\x15\x18\x64\x51\xdc\x37\x3c\x11\x1e\xb3\x28\x0a\x0d\xbf\xd5\xc7\x2c\x8a\xc2\x2a\xc6\x54\xc9\x5d\xbe\x97\x56\x1b\xbf\x16\x2e\x05\x12\x83\x70\x4f\xf2\x7f\x31\x76\x3f\x39\x13\xeb\x3a\x76\xc0\xe7\x59\xc5\xdb\x41\xca\xae\xb2\x25\x01\x99\x65\x9c\xec\xa1\xfe\x90\x40\x0f\xba\xfb\xe1\xa6\x7b\xff\x81\xcf\xcf\x77\x90\xf4\xe0\xde\xc1\x87\xf3\x81\x90\xcb\x96\x2c\x51\x14\xcd\x43\xd6\x3e\x8d\xed\x34\xb6\x2e\x34\xb6\x97\xd6\xb8\x7e\x2c\x8f\x4b\x6b\xa8\xc7\xfa\x32\x15\x68\x8d\xc0\xfe\x48\x54\x73\xa1\x67\x81\xf5\x8a\x02\xde\x29\x92\x30\xb6\xae\x66\xe9\x28\xad\x11\x58\xc9\x47\x59\x18\x5b\x40\xfa\x90\xda\x6d\x48\x21\x71\x5d\x57\xe6\xa6\x34\xc9\x2e\x85\xdc\xcc\x0d\x28\x92\x9d\x22\x99\x5a\x99\x0a\x61\xd7\xc6\xcd\x5b\x68\x5d\x60\xa5\x12\x66\xa1\x75\x55\x28\x5c\xd7\xef\x67\x84\x28\x12\xf9\x1d\x93\xa4\xb7\xe4\x77\x04\x33\x05\xed\x4a\x7e\x47\xb0\x52\x2f\xb3\xe4\x77\x04\x33\x61\xce\x25\xbd\x63\x85\x0f\xb6\x3f\x12\x48\x5d\xf8\x60\x75\xf3\xc1\xcc\x3e\xaa\x25\x7c\xb0\x23\xdf\x9b\x0a\x1f\xac\x92\xbf\xf1\xba\x92\x6c\x27\x4b\xcf\x17\xd1\x93\x28\x3d\x8f\x3e\xc6\x1a\xab\xe7\xcb\x22\x88\x3e\x0b\x5f\xec\x86\x95\xf0\x93\xc2\x1a\xab\xd0\xc1\xf6\x47\xc2\xa1\x0b\x1f\x0c\x8c\x71\x6a\xf6\x25\x32\xad\xf2\xb8\x4f\x4a\xe9\x49\x29\xc5\x84\x41\x07\x03\x57\xb3\x5c\x4a\xeb\x04\x66\x68\x58\xf5\xa4\x75\x9e\x97\x86\xb9\x9a\xe5\xd9\xa8\x98\x27\x15\x13\xd3\x04\x6b\x0c\xcc\x7c\x1f\x2b\xac\xb1\x0a\x6b\xec\xba\x72\x45\xa6\x0b\xea\xd0\x4e\xcd\x16\xd1\x27\xcd\xf2\x92\x51\xc4\xc0\x18\x46\x92\x1d\x19\x0a\xd8\xd5\x2c\x37\x3d\x75\x41\x32\xd8\xb9\x47\xa4\x07\x97\x65\x70\x35\xcb\xe3\x9e\x1e\x44\x45\xe5\x58\x0e\x4f\xfa\x24\xd5\x80\xf7\xc7\x23\x9b\xa7\x72\xc0\x60\x26\xea\xb5\x9e\x43\xe7\x47\x54\x6e\xa2\x74\xeb\x39\xbc\xbf\x7c\x7c\x0c\xd5\xb0\x9e\x8c\x89\xc0\x58\x5e\x1f\x63\xe2\x49\x53\x6c\x77\xb3\xfb\xa6\x57\xe7\x13\x0f\x5d\xa8\x6a\x00\xfb\xb8\x30\xd5\x2a\xb4\xb4\xeb\xca\x74\x7e\x18\x8f\xf0\xe4\x53\xa8\xa5\xd0\xd2\xc0\xd5\xcc\xaf\x15\x59\x3e\xb3\x47\xe5\x62\xaa\x55\xea\x15\x5f\xcd\x32\xe2\x74\x40\x60\xc6\x65\x5b\xf8\x66\x60\x7f\x24\x00\xbd\x10\xce\xc0\x3a\x62\x22\xe1\x9b\x55\xc8\x65\x57\xb3\x0c\x25\x1d\x10\x58\x89\xfa\x2a\xe4\x32\xb0\x3f\x12\x82\x5a\xc8\x65\x60\x3e\x9f\x9a\x19\xdd\x65\x74\x75\x8b\x5e\x08\xac\xc3\x0d\xe8\x85\xc0\xd5\x2c\xcf\x4b\x31\x3c\xa5\xd5\xcd\x4e\x82\x6f\x56\x21\x92\x5d\xcd\x32\x41\x68\x81\xc0\x3a\xbc\x3e\x5a\x20\xac\xb1\xab\x59\xc6\xcd\x9a\x0f\xac\xe3\x6f\xc4\x8c\x57\x18\x66\x37\x5c\xbf\xe2\x39\x8d\xbe\x94\x12\x5e\x2f\x3b\x25\xb0\x92\x4f\xa3\xf0\xcc\xc0\xfe\x48\x88\x6a\x21\x9a\x55\x88\x66\x47\xdc\x21\x85\x49\x06\xd6\x91\xce\x20\x92\x81\x75\x6c\x44\x3b\xd1\x9e\xfe\x3d\x23\x7a\x12\x65\x00\x33\xf4\x2f\xea\x25\xb0\x58\x85\xd8\x66\x15\x1a\xd9\xf5\x14\x9a\x4d\xb2\x4c\xcf\x87\xa7\x58\x44\xba\xf9\x74\xcf\x22\xcb\x17\x87\xc3\x3d\x9b\xa8\x35\xcb\xa5\xd4\x4b\x60\x26\xbd\x48\xbd\x68\x97\xc0\xfe\x48\xaa\xb4\x7a\x51\x2f\x81\x99\xaf\x5b\x85\x6d\x06\xd6\xe1\x9e\x14\xce\x8b\x2a\x49\x34\x6a\xa1\x91\x81\x99\xaa\x33\x85\x46\x06\xae\x66\x47\x64\x6f\xb2\x77\x7e\xcd\xa3\x7d\x88\x4c\x81\x97\x67\xfb\x92\xe5\x60\x19\xc3\x16\xdb\x0c\x5c\xcd\x46\x64\x3a\x1f\xa7\xcc\xb8\x7b\xa0\xf3\xe7\xdd\xab\x6b\xe9\x20\xa5\x81\x95\xd2\xa6\x85\x94\x56\xc9\xfe\xba\x3f\x12\x2d\x5a\x2f\xe7\x97\xc0\x3a\xb2\xd2\x5f\x74\x55\x78\x6a\x57\x33\x97\xea\x29\xe3\xe7\xa9\x99\x9e\xde\x8a\x29\xfb\x33\x6a\x19\x58\x87\x66\x14\x53\x60\x7f\xc4\x73\x5a\xa8\x65\x60\x1d\xba\xe0\x98\x13\x1a\xd9\xd5\x2c\x03\x32\xee\x3b\x58\x3a\xe9\x3c\xcd\x14\x90\x12\xb3\x30\xcb\xc0\x3a\x9e\x7e\xcc\x48\xd2\x55\x5e\x15\x5d\xf5\xba\x75\xd5\x99\x97\x40\x57\x29\xf1\x9d\x94\xc6\x85\x6c\x06\xf6\x47\x6a\xda\x96\xbc\xb5\x75\xe7\xad\xcd\xc6\x85\x7f\x56\x21\x9b\x5d\xcd\x72\x07\x07\x30\x6c\xb3\x97\xc1\x75\x00\x0b\xac\xd4\x57\xae\x97\x03\x58\x60\x85\xa0\x58\xf8\x67\xc0\x97\xdf\xc2\x3f\x03\x2b\x84\xcd\x52\x41\xbc\xc2\x2b\xbb\x6e\xe9\x69\x75\x2a\x15\x3b\x53\x05\xaa\x10\xcb\xc0\xd5\x2c\x83\x46\x3d\x62\x96\xdd\x33\x97\x7a\x7c\xdd\x7a\x2f\x16\x34\xce\x58\xdd\x9c\xb1\x33\x5d\xa7\xf7\x5e\x2c\x9d\x6d\xba\xd4\xb3\xc5\xd2\x39\x4c\x49\x3a\x2e\x64\xb0\xab\x59\x86\x88\x7a\x0a\xac\xa4\xe2\xae\x17\xed\xf4\xa2\x8a\x8c\x10\x55\xf4\xba\x55\x51\x36\x46\x64\xb0\x0a\x19\xec\x70\x7c\x46\x06\xab\x50\xba\xf6\xc7\x96\x63\x2b\x4e\x17\x90\x08\xa1\x70\xba\xc0\xd5\xec\x8c\x6c\x92\x79\xdc\x3d\xa2\x45\xf4\xd6\x6c\x44\xf6\x21\xcb\x2c\xca\x0a\x92\x3e\xb7\x8e\x5b\xf3\xac\x15\x59\x91\x09\x3b\x7a\x45\xd4\x44\x7a\x15\x11\xc5\x13\x58\x49\x74\x5e\xc8\x60\x60\x25\x7b\x6e\x21\x83\x55\x88\x5f\xfb\x23\xde\xb6\xc2\xfc\x02\x2b\xc4\x9a\x42\xfc\x02\x23\xd9\xf1\x0b\xf1\x0b\x5c\x57\xba\xa7\x7e\x46\x17\x25\x61\x40\x1d\x74\xd1\x41\xc9\xec\x0f\x37\xd5\xa9\x28\x99\xed\x7e\xb4\x1f\xd1\x4f\xb3\xf4\x9d\x92\x09\xcc\x84\x5b\x16\xe2\x57\x85\xe5\x75\x35\xcb\x70\x30\x75\xd0\xbc\xce\x8d\x48\xaf\xce\x2c\x8d\x7d\x4b\xaf\x9c\xb0\x02\xa2\x11\x0a\xa7\x0b\x8c\x69\x3c\xe8\x9d\x83\xde\xd9\xdd\x94\xde\x41\xf3\x4a\x71\xa6\x42\xf3\x02\xf3\xa9\x07\xce\x5c\x61\x7e\x5d\x57\xfa\x35\x1d\x4d\x1c\x59\x3e\x16\x14\xe6\x17\xb8\x9a\x91\xe9\x68\x12\x39\x26\x3a\xa3\x30\xbf\xea\xa0\xb1\x92\xc8\xb1\x50\xba\xc0\x3a\xa2\xae\x71\xb6\xc0\x3c\x9f\x7f\x1d\x2f\x5e\x07\x5f\xdf\xc1\x20\xdb\xa3\xbd\xb0\xbc\xc0\x3a\x8e\xf4\x86\xda\x0b\xcb\xeb\x6a\x96\xde\x50\x72\x81\xf5\x32\x0e\x94\xdc\x41\xc9\x1d\x1e\x49\x07\x9d\xe6\x76\xbd\xa1\xd1\x0e\x1a\x2d\x79\x1e\x0b\xcb\x0b\x0c\x8e\x10\x2c\x2f\xb0\x3f\xf2\x61\xb3\x0e\xe7\xb9\x43\xf5\xcc\x1c\xca\x10\xbf\xea\x60\xcb\x85\x23\x55\x78\x59\x60\xa5\xc8\x4e\xe1\x65\xd5\xe1\xec\xc6\x4d\x88\x70\x05\xe6\x34\xcb\x28\xa6\x83\x91\x96\x72\x5c\x75\x30\xd2\x0e\xe9\xbf\x73\x36\x39\x18\x69\xe1\x48\x5d\xcd\x32\xb7\xd9\x50\x81\x95\x44\x01\x85\x23\x05\x56\x4a\xf9\x17\x8e\x54\x85\x23\xb5\x3f\x76\xc3\xbb\xee\x9b\x66\xbd\xbe\x72\x03\x5a\xe8\xa0\x85\x76\xcb\x8e\x16\x0a\x47\xea\xe0\x6a\xc1\x91\x02\x33\x55\x24\x0a\x47\xaa\x42\x7e\xba\xae\x7c\x45\xf6\x22\xcb\x6c\xcf\xe9\x4d\x2a\xe7\x0a\xd3\xe9\x6a\xe6\xd7\x16\x59\xa8\x02\x93\xe8\x4d\xa4\x53\x44\x1f\x22\x23\x79\xff\x5a\x91\x89\xdd\x5b\x11\xa5\x53\x27\xbb\x26\x49\x23\x0b\x85\x09\xac\xe4\x12\x2b\x14\xa6\x0a\x39\xe9\x6a\x96\x3b\xd0\x2f\xc8\x49\xcf\xd8\xd8\xc8\x49\x60\x7f\x24\x02\xbb\x90\x93\x80\x18\xa0\x42\x4e\xaa\x10\x91\xae\x66\x79\x36\x86\x4d\x60\x25\xcc\xb6\x10\x91\xea\xbc\xf5\x4b\x76\x2e\xb4\x23\x20\x07\x7b\xa1\x1d\x55\x58\x41\x57\xb3\xeb\xfd\x61\x05\x81\x49\x79\x63\x05\x81\xfd\x91\x72\x67\x85\x15\x04\x56\xea\x10\x14\x56\x50\x9d\xf7\x22\xce\x81\x1c\x43\x07\xcc\x33\xa6\x30\x86\x0e\x58\x8f\x4c\x06\x0c\x9d\x3a\x59\x22\xa9\xaf\x54\xe8\x38\x40\xcc\x52\x9d\x2c\x91\xc0\x4a\xf6\xa8\x3a\x2d\xd2\xd3\xb1\x29\x85\x8d\x0a\x69\x07\xac\x23\xba\x04\x69\x07\xac\xe3\xf4\x18\x86\xe3\x5e\xb8\xde\x95\x85\x1b\x18\x1c\xcb\xa7\x75\x1b\xb8\x9a\xe5\xcd\x5b\xb8\xa7\xca\x4c\x31\xb9\xb0\x7d\xc0\xfe\x48\x02\xba\x42\xf7\x01\xc2\xa9\xea\x64\x9d\x84\xed\x73\x35\x4b\x17\xd8\x22\x37\xdd\xe7\xd0\xcc\x8b\xe7\xd5\x49\x79\x9d\xc2\xf7\x01\xe2\xa9\xea\xa4\x05\x4e\xc7\xb7\x04\x70\xd7\xe9\xf8\x76\x3a\xbe\x9d\x1e\x57\xe7\x19\x1e\x09\x89\xad\x93\xe1\x71\x3a\x70\x99\x6d\x0c\x8f\x73\x79\x36\x6b\x8d\xcb\x3f\xb0\x8e\xa9\x99\x67\x5b\x6f\xcd\xd2\x7b\x6a\xe0\xa4\x06\x62\xb2\x9c\xd4\x40\x60\xd2\xbb\xe7\xba\x9f\xa3\x5c\x99\x11\xa7\x19\x4e\x9a\xc1\xe2\xa0\x19\x02\x22\xc2\x0a\xc5\xa8\x42\x31\x3a\x93\x5d\xbc\x50\x8c\x6a\x70\xd5\xda\x93\x50\x8c\x80\x20\xb1\x42\x31\xaa\xc1\x3c\x49\xf5\xa8\xc2\x21\x02\x2b\xac\xe8\xc2\x21\x02\xeb\xc8\x52\xc6\x21\xaa\xf1\xfa\xba\x72\x44\xf6\x23\xcb\xce\x15\xdf\xc9\xa0\x05\x06\x53\x24\xde\x0e\x4c\x23\x20\x5b\x7e\x61\x1a\x81\xfd\x11\x12\x43\x61\x1a\x81\x19\x9a\x61\x61\x1a\x81\x75\x64\x39\x62\x1a\x81\xeb\x4a\xbf\x76\x90\x65\x67\xcc\x34\xc5\x34\xaa\x71\x98\x31\xf7\xaf\xe9\x54\xc2\x8d\x46\x54\xdb\x70\x2c\x1a\xfc\x24\xe1\x27\x94\x7c\xf1\x60\x1d\x1b\xd1\x20\x32\x6a\x31\x38\x51\x8d\x80\x38\xba\x42\x35\x02\x57\xb3\x19\xd9\x7d\x87\xac\x51\x9d\xa7\x2a\xc6\xb0\x36\x5e\x7f\xc3\x37\x3e\x9c\x60\x02\xeb\xc8\x8c\xc5\x3a\xaa\x61\xa5\x73\xcc\x4a\x31\x0f\xd6\xe1\xe5\x5a\xe9\xc3\xb2\x4e\x98\x44\xa1\x18\xd5\xb0\x86\x13\x78\x55\xc3\x1a\x0e\xcc\x3d\x56\x25\xd6\x11\xb8\x9a\xe5\x5d\x5a\xc3\xc3\x1a\x8e\x87\x7b\x58\xc3\xc3\x09\x63\xfa\x31\x43\xe8\x84\x11\x4f\x27\x6e\x52\x0d\xbb\x76\xc2\xb3\x6a\x58\xaf\x81\xe9\xab\x1d\x6e\x12\x58\x47\x1c\x52\xb8\x49\x35\x1c\x27\x12\xb6\x54\x58\x47\x60\x1d\xf1\x82\x61\x1d\xd5\xe0\x71\x7d\x9a\x8c\x76\xed\xc0\x3a\x62\xd9\x0f\x0b\x7d\x38\x4e\x24\x2e\xa5\x50\x8c\x6a\xf0\x8f\xc4\x52\x18\xf6\xf6\x61\x6f\x37\x6a\x16\xf5\xe0\x12\x7d\xea\x95\xb5\x19\x90\x6f\xbb\x70\x93\x2a\xe9\xfb\x4f\x7e\x2b\xdc\xa4\x9a\xf7\xda\x8c\xbf\x6f\x5a\x9b\xd3\xda\x8c\x8d\x31\xad\xcd\xa9\x18\xc7\xd2\xea\x20\x32\x3f\x33\x7d\xa6\x43\x47\x60\x52\x11\xd3\xa1\x63\xda\xdb\xc3\xd6\xa8\x69\x09\x07\x56\xe2\x0a\x6a\x5a\xc2\xd3\xa1\xe3\x79\xdf\xf4\x43\x96\x01\x7f\xb8\xe9\x97\xc8\x80\x2f\x5d\x68\xb2\x0c\x38\x91\x65\x3d\xb9\x44\x39\x3b\xf1\xa6\xc0\xf4\xa1\x77\x5a\x9c\x93\x37\xc2\xa9\x60\x5a\x76\x93\x37\x22\x56\xdd\xb4\x69\x4f\x07\x85\x24\xdc\xaa\x69\xd7\x0e\xac\x23\x1f\x2d\xa6\x83\xc2\xe4\x66\x78\x79\x5e\xe6\x7e\x40\xde\xfd\x9a\xdc\x0c\xd3\x09\x20\x29\x67\x6b\x3a\x01\x4c\x27\x80\x58\x9c\xd3\x09\x20\xb5\x09\xae\x66\xb9\x83\x8f\x1b\x81\xf5\x32\x94\x5c\xa2\x93\x9b\x21\x11\xe5\x35\xb9\x19\x26\x37\x43\xf6\xd9\x69\x91\x4e\xfb\xfd\x6b\x27\x73\x07\x46\x7b\x4c\x80\x69\xbf\x9f\x16\x6e\x02\xcf\x6b\x5a\xb8\xd3\xc2\x35\x41\x2c\xdc\x69\xe1\xbe\xb2\x22\x51\xd0\xc0\x1c\x51\xe8\xd3\x7e\x3c\xad\xe5\x57\x0e\xe0\xd3\x5a\x0e\x48\x58\x5a\xd3\x5a\x9e\x36\xda\x57\xe6\xb8\xba\x0a\x60\x3e\xb3\xfc\xd4\x55\x00\xfb\xe3\xf5\x22\x33\x91\x6c\xb4\x39\xf7\x4e\x0b\x77\xda\x68\x5f\x2f\x0f\xa2\x0b\xf9\xe8\xba\x1b\x37\x1b\xed\xf4\x3d\xdf\xa4\x61\x81\x4f\x61\xf2\x87\x47\x33\xb5\xe2\x1a\x18\xa6\x91\xb5\x3c\x19\xc3\xa9\x3e\x56\xd8\x65\x35\xad\xab\xcc\x67\xec\xb2\x0a\x13\x6b\x7f\xbc\x62\x98\x62\x62\x81\x91\x10\xa2\xc2\xc4\xaa\x65\xa2\xfa\x70\x81\x17\x05\xe6\x33\xa6\x35\x5e\x14\xd8\x1f\xbe\x05\x22\x46\x01\xdc\xe6\x42\x8c\x02\xd3\x47\x57\xc4\xa8\x5a\xf7\x14\x9f\x9a\xbd\xc9\xde\xb9\x72\x8f\xe8\x43\xf4\xd5\xcc\x73\xdc\xcf\xf6\x8b\x27\x2d\xbd\x62\x97\x06\xae\x66\x47\x64\x4d\x16\xf7\x89\x5f\xe3\xf5\x0f\xe0\x4e\xd7\x72\x14\x5e\xf7\xe2\x98\x64\x3b\xd9\x9e\x66\xaf\x88\x9e\x44\xcf\x78\x89\xfc\x98\xe1\xe0\x96\xf3\x21\x0a\xa7\x0a\xcc\xf3\x49\x64\x38\x7c\xa6\xf4\xe1\x02\xa7\x0a\xcc\x04\x2b\x17\x4e\x15\x58\xbc\x72\xcb\xd6\xb8\x1c\x8f\x7d\x7d\x40\xb3\x02\x73\x3e\x88\x0c\xc7\xbd\x84\x32\x8b\x10\x98\xc0\xf4\x45\x1b\x81\x09\xec\x0f\xbe\x5c\x0c\xa6\xba\x8b\x52\xc4\xea\x47\x60\x02\x6b\x1a\x5c\x56\x74\x60\x08\x0a\x41\x60\xaa\x65\x3d\x72\x8f\x23\x30\x81\x21\x50\x04\x81\x09\xcc\xe7\xdf\x48\x83\x56\xf8\x4d\xe0\xfa\xe1\x3c\xb9\x15\x1c\x58\x5b\xce\x8c\x08\x4e\x60\x6d\x26\xb1\x05\x1c\x40\x65\xaf\x65\x01\xaf\x79\x77\x39\x2f\xd2\x02\x46\x83\x1a\xe6\x93\x05\xbc\x7c\xd8\xa4\xcf\x97\x3d\x35\x80\xf1\x5e\xcb\x62\x5d\x0e\xc7\x8e\x0e\xa8\x51\x60\x26\xa7\x71\xa1\x46\x81\xab\x59\x2e\xb5\x36\x71\xa3\x12\x24\x5a\xb8\x51\x60\x6d\x96\x84\x9d\x37\xb0\xb8\x52\x97\x9d\x37\xb0\x92\x00\xa9\x16\x13\x3b\xb0\xf8\x65\x97\x4f\x1a\xcb\xfe\xcc\xbf\x8f\x41\x05\x70\xf1\x0b\x83\xaa\x16\xab\xdb\x57\x24\x0c\x2a\xb0\x52\x54\xbc\x30\xa8\xc0\xd5\x2c\xe3\xcd\xec\x0e\xc8\x4d\x50\x18\x54\x60\x7f\xf0\x96\xa1\x50\x81\xb9\x65\xf3\xc1\xa0\x02\x8b\xff\x16\x83\xaa\xc2\xa0\x3a\x53\x0a\xb4\x30\xa8\xc0\xdc\x62\x9b\x20\x50\xd5\xdb\x11\xdd\xe7\x88\xb7\xdd\x3e\xb0\xb8\x6f\xdf\x76\xfb\x37\xe3\xdc\xe7\x0e\x0c\x2a\xb0\x38\x83\x31\xa8\x80\x9c\x03\xf5\xb6\xb3\xbf\xd1\x54\x9f\x44\x1f\x22\xef\x2e\xbb\xd1\xdb\x96\xfd\x56\x97\x32\x1a\xee\xcd\x12\x7f\xb3\xc4\x79\x83\xdf\x2c\xf1\xc0\xe2\xe6\x7d\xb3\xc4\xdf\xcc\x6e\x8e\xea\x37\x85\x19\x18\x43\xdf\xe9\x4b\xf5\x52\xe6\x7d\xe5\x20\x9a\xae\x3c\x22\xd3\x83\x58\xe2\xdb\xe1\xd1\xf4\xe0\x5e\x2c\x51\x37\xe8\x58\x60\x0a\x31\x52\x1e\xa4\xde\x6c\x52\x36\xc1\x9b\x4d\xfa\xe6\xf5\xce\xf4\x40\xda\xaa\xf7\xbd\x5a\x86\x5f\xf3\x20\x59\x2d\xa6\xc7\xdb\x6a\x79\xdf\xcb\x20\xa7\x15\x44\x2e\x30\xb9\x05\x10\xb9\xc0\xfe\x60\xeb\xab\x19\x02\x46\xe8\x7a\xf5\xb6\x0c\x02\x33\x75\xe8\x4b\x15\x91\x7a\xaf\xc3\x95\x9a\x19\xa3\x64\x37\x4b\xb6\xe8\x7a\x3b\x56\xbe\x99\x96\xf6\xd8\xb7\xc9\x16\x18\x42\xeb\x90\xc7\x2a\xe4\xb1\x33\x34\xe9\x42\x1e\x03\xd7\x95\x2b\xb2\x8d\x2c\x5f\x70\xb3\x82\x3e\xbe\x90\xa5\x8a\xc8\xfe\x48\x06\xe9\x52\x45\x04\xcc\x91\x47\x53\x45\xa4\x3e\x26\xe0\x19\x8d\xa5\x64\x08\x98\x02\x19\x3e\x26\xe0\x47\x08\xce\x99\x2e\x7c\x4c\x90\xc0\xf4\x96\x3f\xf6\xd8\x8f\x39\x73\x6e\x64\x6e\x7a\xd8\x54\xf2\xb8\xe6\xcc\x87\x0b\x27\x44\x9d\xfa\xd8\x2a\x3f\x77\x6d\x5e\x57\x7e\x89\xb2\x94\x93\x8c\xb7\x54\x11\x01\x93\xcf\x4c\x15\x91\xfa\xf8\x40\x9e\x14\xf1\x85\x4d\x07\x26\xa7\x2e\x36\x1d\xb8\x9a\x65\x90\x6c\x95\x81\xc5\xd7\xf8\xb1\x55\x7e\xce\xfb\xa6\x79\x10\x7b\xd4\x47\x26\xe2\xa7\x2b\xdd\x94\x1d\x29\x0e\xe2\xc3\x8e\x0c\x4c\xdf\x8d\x3f\xec\xc8\xc0\xd5\x2c\x63\xe9\xdb\xfa\x47\x26\x62\x37\x60\x5a\x06\xe4\xb8\xae\x0f\xd3\xf2\xc3\x6d\x7b\x3e\x67\x64\x5e\x4c\x22\x6e\x12\xef\x5d\xc8\x7f\x60\x3e\xef\x56\x6f\xa2\xac\xab\x50\x7d\x0a\x1f\xb0\xc2\xfd\xbb\x64\x79\x0e\x2b\x26\x30\x93\x33\xb0\x3e\x4e\x71\x1f\x47\xb6\x90\x6c\xea\xc3\xf2\x0b\x8c\x14\x53\x2b\x14\xc1\xfa\x30\xd6\xce\x58\x22\x88\x7e\x15\xa2\xdf\xc9\x20\x42\xf4\xab\xaf\xa3\x4c\xca\x47\x16\x56\x1f\x98\xde\xfc\xd7\x51\xe6\xcb\x0a\x4b\x10\x76\x61\xd8\xd5\xcd\xb0\x8b\x51\x8a\x61\x57\x5f\x26\x57\xf2\x19\xd5\x97\x0a\x09\x2c\x5f\x25\xbf\xe6\xd1\xd7\xa9\x62\x3c\xfe\x86\x87\x5c\xcd\x10\xb0\x52\x12\xa1\xf0\xf4\xea\x6b\x4e\x85\xb7\x50\x6a\x86\x80\xc9\x1f\xac\x66\x48\x7d\xf9\xf6\x53\xab\xb2\x54\xfe\x00\x2b\x09\x22\xea\xcb\xb7\xff\x1d\xe9\x61\x22\xad\xeb\xcb\xa0\xf9\xde\xc5\xd9\x89\xf4\xd0\x8b\x0b\xfb\xa0\x50\xeb\xea\x4b\x9d\x84\x67\x59\xea\x72\x00\x15\xe4\x0a\x41\xad\xbe\xde\x08\x2b\x1b\xa7\xac\xc2\x29\x3b\xb9\x52\x70\xca\xea\xe7\x8d\x88\x9a\xc1\x29\x03\x4b\x94\x21\x4e\x59\xfd\x78\x62\x43\x05\x28\x6c\x2e\xb0\x52\x3d\xb0\x90\xb9\xea\xc7\xc5\x2a\x32\x15\x73\x0b\x08\xc8\x2e\xcc\xad\xfa\xf9\x84\x33\x72\x06\x45\xd3\x02\x77\x20\x34\x96\x56\xfd\x1c\xe0\xc2\xff\x2d\x94\x2c\xb0\x7c\x94\x43\xc9\x02\x57\xb3\x19\x99\x2e\xdc\x35\xea\xf2\x1c\x6c\xd4\x9f\xea\x1d\xf9\xd2\xf3\x63\xa3\xfe\xee\x97\xb5\x34\xf3\xb8\x49\xc1\x97\xb4\xb9\x85\xa5\x55\x3f\xbe\x9a\xa4\x29\xa8\x9f\xc5\x18\x58\xce\x0e\x3f\x36\xea\x8f\x41\x9a\x64\x86\x85\x93\x55\x37\x27\x2b\xaf\x19\x27\x0b\x5c\xcd\x32\x6e\xd6\xec\x0f\xa5\x3e\x2e\x84\x9f\x35\xfb\xf3\xea\x13\xd8\x5f\x48\x59\xf5\xf3\x9d\x62\x6a\x67\xc3\x09\x28\x25\x51\x3f\x1b\xce\x8f\x6f\x93\x2f\xf6\xc7\xf0\x0a\xcc\xe1\xd7\x18\x5e\xbf\x3b\x5a\x35\x2f\x86\xe1\xf5\x53\x57\x78\x77\xa1\x91\xe4\x01\xb5\x65\xe2\x47\x81\x79\xe6\x6b\x06\x7e\x14\x98\xc7\xfd\x64\x3a\x15\x8f\x4a\x52\xe5\x16\xc6\x14\x98\x21\x9a\x15\xc6\x14\xb8\x7e\x3f\x23\xc9\x62\x0b\xac\xa7\x81\x64\xb0\xfd\x44\x99\x24\x23\x6b\x61\x51\x81\xc9\xb8\xc1\xa2\x02\x57\xb3\xdc\xd4\x26\xfa\x53\x5c\x22\xd6\x13\x16\x55\x85\x45\x75\x7a\x34\x2c\x2a\xb0\x52\x47\xbd\xb0\xa8\xc0\x1c\x77\xab\x9d\x28\x31\x1a\xd9\x2f\x8b\x13\x27\x30\x42\x54\x2e\xbc\x2a\x30\x42\xc6\x2f\xbc\xaa\x2a\xbb\x6a\x52\x3d\x15\x5e\x15\x50\xe9\xa7\xf0\xaa\xc0\xdc\x73\xe6\xc5\xab\xaa\xe2\x73\x0d\xa7\xb7\xca\x69\xb6\xe4\xed\x1f\x44\x19\x8c\x62\xc3\xe1\x25\x14\x1b\x2e\x80\xc3\x57\x65\x8b\x2e\xfb\xf1\xcc\xbb\x2b\xfb\x71\x40\x15\x89\x2a\xda\x36\x70\x35\x73\xe9\x20\x4b\xd5\x99\x68\x8f\xa2\x02\xca\x7a\x4f\xd1\x82\xc2\xbf\x02\x93\x4f\x1e\xfd\xaa\xca\x7a\x9f\x39\xf1\x94\xf5\x1e\x98\x8f\x9c\x04\xca\x7a\x2f\x1e\xd6\xa4\xb1\x2b\x05\x76\xc0\x3a\xe3\xd0\x2b\xc7\xc8\xc0\x14\xaf\x53\x1c\xac\xe5\x64\xc9\xe7\x84\xb9\x05\x66\x38\x70\x55\x76\xed\xb2\xde\xa7\x37\x6a\xbd\x07\xd4\xcd\x29\xfc\xae\xaa\x7b\x21\x67\xc6\x94\x85\x1c\x98\x8e\xd0\x65\x21\x97\xd0\xd6\xa4\xbc\xac\x72\x40\x0c\x4c\x5e\xe8\x72\x02\x0c\x8c\x15\xe5\x81\xe0\x05\xd6\xe9\x9e\x6c\xda\xb2\x1d\x4f\x93\xc1\x76\x1c\x58\x36\xcb\xb2\x1d\x07\x66\xea\xe1\x94\x62\x40\x55\x76\x68\xa4\x8f\xb2\x43\x07\xe6\x88\x49\x5b\x76\xe8\xc0\x3a\xb3\xda\xcb\x01\xb0\x84\x72\xcc\x58\x9c\xc5\x5d\x13\x18\xd3\x94\x61\x0c\x17\xcb\x37\x49\xab\xaa\x58\xbe\x01\x85\x0d\xab\x28\xa2\xb0\xd2\xae\x66\xe9\x01\x15\x53\xaa\xc4\x4c\xcd\x74\xea\xd6\x27\x51\xea\x45\x9f\x04\x30\x35\xab\xe8\x93\x12\xc2\x36\xff\x06\xe7\xab\x8a\xbe\x09\x8c\x65\xb8\xe8\x9b\x5a\x77\x0f\x33\x10\x34\x49\x60\xd8\x7b\x54\x40\x02\xeb\x34\xf6\x14\x49\xd9\x3e\x31\x58\xb0\xe6\x2a\xac\xb9\x33\x25\x85\x0b\x6b\x0e\x4c\x26\x19\xd6\x1c\x58\x6c\x17\xa4\xb9\xba\x49\x73\xf9\xd2\x86\x34\x07\xae\xdf\xd7\xec\x45\x96\xd1\xca\x5b\x6b\x6a\x23\x30\x93\x8b\xa2\xda\xee\xdc\x1c\x5e\x26\x54\x73\x78\xb5\x1c\xe7\xd1\xd1\x18\x78\xd5\xf4\xc1\xca\xe9\xbe\xe9\x83\x16\x22\x9f\x13\x6e\xb3\xcf\x9b\x3e\x40\x7d\x51\x9b\x09\x2c\x11\x2d\x6a\x33\x81\xab\xd9\x88\x6c\x90\x8d\x78\x56\xd2\x77\xfa\xa0\x59\x64\x6b\x23\x7b\x93\x25\xd6\x38\x66\x42\xb3\xc8\x9a\x2d\xb5\x3c\x08\x5b\xaa\x05\xb0\x66\x63\x47\xcf\xab\xa6\x0f\x52\xb6\xa2\x10\xea\xc0\xe4\xe0\x47\xa8\x03\xfb\x23\x99\xca\xab\x29\x84\x16\xfd\x1e\xcb\xbe\x7d\x71\x69\x3a\x22\x29\xbe\x4a\x41\x28\x20\x4b\x48\xa1\xe2\x55\x5b\xfc\xc9\xa2\x5e\x08\x75\x60\x2c\xbf\x66\xf1\x87\x3d\xb7\x3f\x92\x78\xba\xb0\xe7\x80\x7c\xa9\x85\x3d\x07\xae\x66\x79\x5e\x7e\x25\x95\x9e\x52\xd9\xa8\xb0\xe7\xaa\x6d\xf6\x49\xba\x5d\xa8\x72\xd5\x9c\xba\x49\xa2\x5a\xca\x3a\x81\xb5\x79\x0b\x7c\x42\xe1\xc5\x49\xab\x5a\x68\x71\x60\x7f\x24\x47\x73\xe1\xc5\x01\x99\x50\xab\x29\x8e\xc0\xd5\x2c\xe3\xe6\x30\x1c\x18\xeb\x6e\x66\x78\x79\x93\x84\xeb\xe3\xca\x01\x55\x81\xaa\x29\x93\xa6\x4c\x92\xef\xb6\x9a\x32\x09\x2c\x41\xad\x4d\x99\xb4\x08\xd6\x24\x6b\x29\x85\xa3\xc0\xf4\xc5\xaa\x59\x1d\x81\x71\xdf\x80\x92\x08\x4c\x1e\xba\xa6\x24\x9a\xed\xe0\xdb\x74\xb3\x1d\x02\x33\x89\x72\xab\xad\xf8\x66\x3b\x08\x4a\x56\x98\x0a\x8c\x7b\x2d\x5b\xf2\x7d\x2f\xf9\x58\x27\x08\x80\x15\x02\xe0\x99\x84\x08\x8d\x00\x08\xf6\x47\x72\xcf\xf6\x23\x6b\x1e\xac\x84\xe5\xf6\x23\x6b\x1e\xcc\xf1\x70\xe5\x93\xc8\x9a\xbf\x6c\x8c\x7e\x64\xcd\x83\x91\x55\xda\x8f\xac\xf9\x7e\x08\x81\x4f\xc2\xb7\x7e\xc4\xfe\x06\x32\xd4\xf6\x23\xd6\x03\x50\x30\xb1\x1f\xb1\x1e\xc0\x58\x8f\x19\xd1\x9b\x48\xdf\x87\x2b\x8b\x2c\xde\x8d\x53\x07\x3a\xa2\xe3\xee\x54\x2e\x3d\x74\xea\xd0\xa9\x23\x22\x9d\xe2\x45\x8f\xf3\xa8\x53\x40\xeb\x86\x99\xfc\xd4\xad\x8c\x56\x3f\x6e\x6d\x31\xd3\x83\x43\x0f\xe2\x32\x3f\x3d\xee\xa1\x07\xac\x87\xa4\x99\x6b\x84\x48\x30\xfe\xbc\xd2\xb3\xdd\x6a\xc0\x1d\x4e\x97\xf2\x2e\x5f\x5a\xab\xd1\x26\xfb\x71\xaf\xef\x4b\xd7\x37\x8e\x24\x58\xdb\xae\xd9\x2f\xa2\x84\xbb\x6f\x29\x78\xd1\x8f\xa1\xa7\x23\x3d\xdd\xd2\xf9\xa1\xa7\xf9\xdc\xb3\x85\xce\xd4\x8f\xe1\xfd\xe5\x4c\xbe\xbf\x32\x20\x43\xe7\x73\x0c\x48\x04\x75\x23\x5c\x76\x98\x94\xd7\x95\x64\x1e\x37\x4e\xe8\x24\xf6\x6d\x4c\x4a\xb0\x6f\x49\x2c\xd9\xa8\x94\x60\x3e\x1f\xe9\x41\x14\x48\xa7\x76\xd7\xd5\x2c\x13\x64\xdc\x5d\xa8\xfc\x5a\x9a\x4d\x93\x92\x4b\xf9\x99\x56\x53\xa7\x12\x2e\xba\x99\x6c\x53\xa7\xa8\x8f\x67\xba\x3e\xf5\x29\x4e\xb2\x2d\x95\x97\x1b\x53\x13\xcc\x94\x9d\x6a\x4c\x4d\x30\xf3\x49\xa8\x1f\x53\x07\xa2\x17\xb6\x50\xb5\xfa\x31\x3d\xed\xe4\x7d\xfd\x6b\xff\x78\x87\xfb\x79\x41\xfb\x95\x74\x66\xe9\x4c\x38\x79\x53\x67\x96\xce\xe4\xc3\xee\xf6\xb0\xc2\x96\xde\xac\xa4\xc8\x9d\x19\xd4\xa5\x37\x39\x1b\x6f\x0f\xeb\x24\xaa\x04\x48\x49\xdc\x48\x9b\x1d\x86\xe6\xd5\x2c\x8f\xfe\x76\x87\xac\xf4\xe8\xcc\xc6\xd0\xec\xed\x70\xd3\xeb\x68\xd2\x9b\x15\x10\x98\x89\x55\xe9\x2d\x26\x35\x98\x23\xfa\x60\xb3\x26\x02\x23\xc5\x28\x5a\x39\xb4\x4e\x09\xb4\x7d\x0b\x8d\xa8\x37\x6b\x22\x30\xe3\x79\xec\xcd\x9a\x08\x5c\xcd\xdc\x73\x91\x25\x37\x77\x5e\x91\x1a\x68\x60\xc6\x9a\xeb\x2d\x9b\x6a\x6f\xe7\x7d\x83\xdc\xf4\x74\x83\xd0\xc7\x52\x96\xad\x91\x42\x3b\xd4\xce\x7d\x7b\x78\xdc\x78\x1e\xc0\x8c\x59\xdc\xdb\x70\x65\x0e\xae\x7b\xc6\x7b\x1b\xf7\x95\x61\x77\xe9\x94\x49\xbc\xdd\x93\x38\x2b\x78\x33\x89\x03\x2b\x9f\xc3\x7b\x33\x89\x03\xf3\x71\x9e\x11\x7d\x89\x7e\xae\xcc\x70\xc4\x52\x06\x2b\xe1\x31\x8d\x61\x0a\xd6\xbe\xe7\x61\xcd\xeb\xc0\x75\x65\x3a\x65\x62\x07\x66\xd8\x5d\xbd\x99\xd8\x81\xab\x59\x9e\x63\x7a\x2d\xd2\xc5\x4f\xbf\xe6\xb5\x4c\xc3\x31\xd3\xf7\x69\x38\xb2\x57\x26\x6f\x6b\xe3\xa6\x82\x7d\xa3\xe5\x90\x53\xc1\x7c\x46\x91\xe0\xa6\x02\x69\x5b\x1b\x37\xb5\x43\x13\xbd\xae\xcc\xab\x5a\x9e\x23\x27\x6f\x9a\x0a\x4f\xb4\x43\x0a\xdd\xb7\xcd\xc4\x5a\x6e\x90\x33\x75\x02\xc0\x1a\x29\xb4\x51\x3b\xb7\x64\xb7\x6f\xd4\xce\x0e\xb5\x73\xa4\x7c\x49\xa3\x76\x76\x38\x99\xfb\x96\xfc\x1c\xbd\xdb\x56\x76\x55\x75\x32\xc1\xf7\x98\x92\xe0\x6a\x36\x22\x1b\x64\xa1\x69\x6f\x9a\x4d\xa2\xb7\x66\x33\xb2\x0f\xd9\xb5\xd2\x13\x7f\xd9\xa9\x2c\xf7\x3f\x1a\x29\x73\x8b\x8d\xd1\x48\x99\x40\x82\xda\x46\xca\xec\x3f\x49\x99\x5a\x79\xb4\x18\x9c\x09\x0d\xed\xfd\xf0\x68\x71\xda\x6d\x54\x26\x06\x26\x58\x09\x4f\x69\x65\xe8\x3a\x04\xcc\x7d\xdb\x6e\x59\x93\x29\x1b\x9c\xf1\x38\x8d\x07\xa5\x9f\x9a\x65\xbd\x53\xfa\x81\x95\x23\x4c\xab\x08\x07\xf6\x2d\x9f\x85\x5a\x49\x38\x20\x77\x6e\xef\x94\x7e\x40\x52\xdc\x56\x24\x0e\x5c\x57\xe6\x39\xac\xaa\xc0\x4c\x7c\x5d\xef\x56\xd5\x3e\xf4\x2a\x4a\x60\xb7\x12\x02\xd2\xff\x36\x82\x24\x98\xaf\xfb\xca\x22\xca\xda\x88\x2a\xc2\x8f\xec\x7d\x7a\xc9\x9a\x99\xce\x81\xb9\xaf\x3c\x86\xd9\xbc\xd3\xf0\xf9\xc0\xd6\xbb\xe9\x1c\x58\x34\xfc\x6e\x36\x07\xd6\xfe\xd4\x6a\x11\x65\x36\x3f\xb5\x7a\x13\x79\xed\x79\x2b\x34\xf8\x2e\x6d\xb0\x01\x9a\x9e\x7f\x19\xee\x2c\xf8\x9d\x06\x0f\xac\x7d\x27\x32\xdc\x96\x46\xbe\x6b\x35\xe6\x23\x58\x89\x39\x6e\xcc\x47\x70\x35\xcb\x73\x50\xea\x81\x95\x80\xdd\x56\xd0\xae\x43\x60\xbc\x9a\xe5\x41\x96\x67\xbb\x8d\x41\xa2\xfb\xd9\x7e\x9a\xa5\x0b\xcb\xe0\xa2\x2b\x99\x0a\xcb\x24\xba\x17\x5a\x74\x33\xa2\x63\x87\xe8\x38\x42\xed\x69\x44\x47\x30\x6d\xc5\x4f\xb6\x60\x60\xed\x97\xd1\xdb\xa8\x8f\xfd\xbc\x97\x63\xd4\xb5\x5a\x78\x60\xa6\x2a\x7d\x3f\x2d\xc7\xf0\x1c\xaf\x66\xaf\xc8\x26\x19\x6a\x8f\x66\x8b\x68\x69\x76\x46\xf6\x26\x8b\xd2\x7d\xb9\xe9\x87\x28\xaf\xea\xe5\x9e\x5f\xa2\x76\xe5\x35\x8b\x70\x1f\xc1\xda\xf7\xbf\x3e\x67\x37\x66\x64\x87\x6a\xb8\x6f\x5b\x56\x30\xae\x21\x18\x21\xe5\xf7\xf3\xd4\xe9\x78\x4d\xb7\x64\xeb\x6e\xec\x40\xb0\xf2\xa1\xa3\xb1\x03\xc1\xbe\xed\xb7\xcc\x40\x24\x1a\x36\x39\x2b\xfa\x69\xe5\x04\x66\x82\x11\x1b\x87\x10\xac\x94\x10\x6e\x1c\x42\xb0\x92\xe2\xb1\x71\x08\x3b\x44\xc0\xeb\xf7\x23\xb3\x72\x50\xfc\x36\xda\x0b\xc5\x0f\xac\x10\x01\x1a\xc5\xaf\x43\x59\xdb\xb7\x64\x9d\x6e\x9c\x35\x30\xf3\x75\xb6\x51\xd6\x3a\x94\xb5\x41\x43\xa0\xac\xf5\xcb\x0b\xdf\xcf\x3d\xb2\x83\x2c\xa7\xea\xe3\x11\xd1\x49\xe4\x06\xd9\x9f\x91\xc5\xc0\x9a\xd9\xb6\x90\xc5\xfa\xc5\x74\xd8\x87\x66\x83\x2c\x87\xef\xac\x4d\x2c\x30\xb0\x6f\x49\xa9\xd5\x68\x60\x60\xfc\xf9\x6b\x6f\xa2\xb7\x66\xaf\xc8\x3e\x64\xa9\x14\xfd\xf2\x6b\x5f\xa2\xaf\x66\x47\x64\x3f\xb2\x9c\xe7\x4e\x57\x66\xe9\xa0\x7c\x6d\x89\x6f\x6e\x94\x2f\xb0\xe8\x25\x94\x2f\xb0\x6f\xa9\xc4\xdf\xe1\x7f\xdd\x30\xf3\xe5\xa1\xb1\xc0\x1a\x49\x6b\x4b\xaa\x96\x46\xd2\x02\x2b\x51\xe6\x8d\xa4\xd5\x2f\x6a\x34\x99\x65\x1a\xd7\x0a\xac\x24\xa9\x6a\x5c\x2b\xb0\x6f\x61\x8f\x34\xae\x15\x98\x49\x12\xdc\xb8\x56\xfd\xa2\x86\xc2\xe1\x6d\x84\x23\x30\x77\xcf\x46\x0d\x85\x6f\xb4\x6f\xc9\x76\xdd\x08\x47\x40\x06\xa6\x7e\x2d\xc3\x4b\x0d\xe5\xfb\x5b\x2b\x52\x05\x56\x4a\x2b\x35\x5a\x52\x23\x1c\x6d\xc9\xa3\xdc\x08\x47\x1d\xc2\xd1\x48\x70\x6d\x23\x1c\xf5\x61\x22\x3d\x5f\xaf\xc8\x0e\xb2\xa4\x9f\xcc\xf0\xe2\x20\x81\xab\xd9\x8a\x6c\x90\x25\x9d\x46\x7a\x8a\x83\xd4\x07\x83\xf6\x99\x39\x88\xfd\x03\xd6\xc8\x4c\x3d\x6c\xda\x81\x7d\x7b\xba\x83\x5d\x3b\xb0\x58\x92\x38\x42\x60\xa4\xdc\x64\xe3\x08\x81\x15\xb2\x72\xe3\x08\x35\x56\xcf\xf6\xf4\x1c\x26\x4d\x60\xc5\xb1\xde\x58\x3d\x8d\xd5\xb3\x25\xb1\x5e\x63\xf5\x80\x35\x72\x74\xc5\xea\x01\x72\x59\xb5\xe2\x4d\x8d\x4d\xb3\x25\xa8\xb4\xb1\x69\xc0\x1a\xb7\xe8\xbe\x41\x12\x85\x66\x77\x38\x86\xc1\x65\x15\xa4\xb4\x5c\x1f\xac\x82\xc0\x1a\x1e\x83\x55\xa0\xda\xd2\xf9\x74\xa5\x7b\x52\x2a\xcf\x1c\x53\x11\x5c\xfa\xb0\x1d\x27\xb0\xb2\x15\x23\x02\x6b\xdc\xcd\x0c\x51\x8c\xcb\x31\xce\x88\x0c\x11\x75\x94\x84\x4d\xad\x7a\x10\x58\xf9\x14\xdb\xaa\x07\x81\x7d\x4b\x45\xd5\x46\x66\x01\x33\xcc\xaa\x46\x66\x01\xd2\x6c\xb5\xea\x41\x7d\x98\xba\x2f\xcd\x4c\xdd\xc3\xd4\x8d\xc9\x8c\xcb\x02\xf6\x2d\x91\x90\x8d\xcc\x02\x56\x02\x04\x1a\x99\xa5\x0f\x6a\xf1\xb5\xe5\xd7\xa8\xc5\xc0\x4a\x46\xe2\x46\x5c\xe9\x10\x57\xc6\x2b\x5b\x02\xe2\x0a\xb8\xae\x5c\x91\x6d\x64\x19\xf0\xe8\x7a\xc5\x7d\xfa\x34\xe9\xe3\xa7\x6c\xcc\x15\xb0\xf2\x61\xb1\x4f\x93\x3e\xb0\x12\x7a\xd2\x8a\xfb\x80\xeb\x4a\xb2\x49\x96\xb4\xb4\xcb\x8f\x2d\x22\x1d\x8d\x16\x47\x70\x01\x2b\x1f\xdc\xfb\xb4\x5d\x06\x26\x13\x54\x71\x1f\x70\x5d\x79\x46\x56\x64\x06\xfc\x1a\x49\x95\x7c\xfa\xb4\x82\x12\x05\xda\x6a\xf4\x80\x15\xbf\x73\xab\xd1\xd3\xf8\x2d\xdb\x2b\xfb\x10\x7e\x0b\x58\xf9\xe6\xd9\xf8\x2d\x7d\x5a\x1b\x89\x02\x6d\x55\x6f\xc0\x1a\xf3\xaf\x79\xda\xad\x28\x0e\xd8\xb7\xc4\x6b\xf6\x69\xed\x04\xd6\x7c\xf8\x61\x8f\x19\x37\xca\xf6\xca\xa6\x87\xc4\x02\x56\x3e\x93\xf6\xc9\x8d\x12\x90\xc4\xac\x4f\x8b\xee\xb4\x9c\xc2\x3c\x6d\x95\x6d\x80\xcc\x69\xad\xb2\x4d\x9f\xec\x82\x57\x4c\x65\x65\x6c\xc0\x9a\x31\xc0\x90\x64\xc0\xd5\x2c\x03\x41\xef\x63\xc9\x24\x33\x49\x63\xc9\x80\xf9\x67\x2b\x23\x68\x71\x26\x73\x77\x23\xb1\xf4\x69\x71\x26\xa9\x4f\xe3\x9d\x80\x95\xaf\xba\xad\xf0\x4c\x9f\x8e\x79\xc9\x8f\xdd\x78\x27\x60\x8d\x1c\x1a\xd1\x4e\xc0\xbe\x25\xa1\x4b\xe3\x9d\x80\x95\x40\xc6\x3e\x79\x43\x42\x3b\xb9\x9a\xe5\x79\x2d\xe2\xc0\x0a\xfb\xac\x15\xa8\x01\x2b\x9f\x8d\x5b\x81\x9a\x3e\xb9\x3b\x92\xaa\xa5\x4f\xd6\xf2\x29\x03\x60\xf6\x3c\x84\x95\x3e\x59\xc6\x49\x7e\xd2\x27\xcb\x38\xb0\x92\x71\xae\x11\x56\xc0\x4a\x98\x52\x23\xac\x80\xe5\x94\xa7\xb2\x0d\xd8\xb7\x97\x8e\xd2\x08\x01\x29\xe2\x1a\xad\x05\x5c\xcd\x5c\x6a\x7e\xd8\xdf\x6e\x91\x7e\x32\xb3\x93\x90\xa2\x4f\x66\x76\x60\xe5\xab\x54\xa3\xba\x80\xab\x59\xe6\x11\x5d\x82\xeb\x32\xa3\x85\x70\x5d\x3a\x5c\x97\x11\x3a\x46\xe3\xba\xf4\x78\x19\xa2\x68\xc8\x41\x71\x04\x56\xbe\xac\x37\xfa\x4b\x87\xd7\x72\x35\x3b\x23\x5b\x64\xb1\x12\x37\xa2\x37\x91\x5e\x2d\x97\x7e\xc9\x62\x51\xc4\x7a\xc0\x75\x01\x23\xec\x91\x1e\x56\x7f\x78\x27\xd7\x95\x79\x0e\xdb\xe0\x10\x01\x17\x35\xa7\xc4\x0d\xd8\xb7\xe4\xca\xe8\x61\xa9\x0f\x01\x14\x39\x56\xa3\xa7\x80\xab\x59\x6e\xca\x60\x0b\xc8\xac\xd7\x83\xbd\x16\x98\x8e\x61\x83\xbd\x36\x84\xac\xe4\xd4\x3b\x98\x6b\x83\xde\x48\xb8\x68\x0f\x7a\x63\xd0\x1b\x2b\x57\x52\x0c\x83\x62\x48\xb8\x68\x0f\x8a\x21\xb0\xd8\x66\x0a\xf2\x74\x48\x2c\x57\xb3\xf4\xea\xf4\x1c\x21\xbc\x25\x27\x5f\x2b\xab\xd3\x83\x16\x38\x8c\x2e\x2d\x30\x6c\xaa\x59\x07\x83\x16\xc0\x5c\xd9\x12\x0d\xd9\x98\x2b\x60\xc5\x27\xdf\x98\x2b\x60\xdf\x42\x4a\xef\xc1\x84\x0b\xac\x91\x49\x8f\xcc\xd2\x83\x35\x95\x00\xc6\xc6\xc1\xe8\x70\x30\xc6\x99\xc7\xc5\xc1\xe8\x69\xce\x84\xd1\xd1\xd3\x9c\x09\xcc\xd0\x75\x1a\x2d\xa3\x11\x2e\xb6\xb0\x2b\x1a\xe1\x02\xac\xc4\xce\x35\xc2\x45\x23\x5c\x6c\xe1\x8b\x35\xc2\x05\x98\xf9\x52\xd4\x08\x17\x3d\x19\xf9\xa1\xbc\x35\xda\x04\x18\x29\x20\xda\x93\x91\x3f\x55\xf7\x78\x12\x79\x34\x0e\x95\xb0\xbe\x5a\x9d\x1a\xb0\xce\x87\x66\x79\x31\xf3\x7e\x7f\x59\x57\xb8\x0f\x60\x25\x86\xaf\x51\x1f\xc0\x3a\x33\x01\x51\x1f\xc0\xbe\x85\x80\xd2\xf3\xd4\xd1\x53\xad\xea\x33\x22\x1d\x1d\x86\x2d\xbb\xfb\xf4\xfe\x02\xf3\x7e\x34\x46\xd1\xe4\xf8\x4e\xce\xef\x9e\x74\xf1\x94\x9c\x3e\x8a\x72\x3a\xa3\x4d\x3e\xc3\x73\x23\x33\x46\xf1\x19\x9e\xd1\x6d\x93\xcf\x10\x43\x62\x4b\x81\xcf\xc6\x90\x00\xeb\x7c\xb8\xe9\x8f\xa8\x34\x4b\x4f\xcd\x86\xc0\x25\xcb\xf3\xf2\x1a\x06\xe4\x28\x6f\x0c\x89\x9e\x3c\x84\x89\x3c\xeb\xc9\x43\x38\x95\xea\x35\xbc\xb6\x89\xc9\x43\x98\xb2\xa2\x3d\xed\x13\xd3\x67\xf8\x6c\xf9\x88\x14\x3d\x29\xfb\x70\xd0\x1b\xf7\x01\xac\x10\x3d\x1b\xf7\x01\xac\xab\x57\x7f\xb9\x6f\xa3\x46\xf4\x64\xbc\x25\xfc\xb0\x27\x5d\x1d\x98\x3e\x31\x28\xff\xd3\x29\xec\xb3\x6f\x09\x3f\x6c\x95\x7d\xc0\x58\xa6\x3b\x1d\x3c\x29\xdc\x7c\xb1\x6e\x75\x7c\x80\x5c\xea\x8d\x55\xd1\x8b\x9d\x73\xe6\x78\xa2\x72\x0d\x98\x5b\x8e\x22\x2a\xd7\x80\x65\x68\x54\xae\x01\xcb\xd8\x2b\x5c\xd3\xcb\xc1\x34\xa9\xb5\x5b\xcd\x18\xb0\xce\x68\x0e\x6c\x09\x30\xf2\x45\xbc\xb1\x25\x1a\x5b\x62\x4b\xce\xec\xc6\x96\x00\x92\xb1\x37\xb6\x04\x58\x89\x0a\x6d\x64\x89\xc6\x52\xd8\x92\x74\xb0\xb1\x14\x80\xfc\xec\x8d\xa5\x00\xf6\x2d\x21\x32\x8d\xa6\x00\xe6\x73\xb8\xd2\xa3\x31\x8a\x12\x70\xd3\x98\x0b\x60\x25\x78\xb4\x31\x17\x3a\xc5\x60\xae\x66\xe9\xfc\x79\x3f\x48\xea\x8a\x67\xbc\x55\x7b\xe9\x75\xcf\xd9\x68\x30\x9c\x80\x5e\x0c\x94\xa4\x7f\xee\x65\xe6\x2d\xf1\x1f\x31\x50\x96\x89\x87\x01\xb0\x9d\xcb\xa5\xba\x35\x75\x4b\x33\xdd\xe2\x80\x4b\x2e\xe6\x16\xa0\x0f\x56\x62\x62\x5b\x80\x7e\x2f\xf6\x83\x8f\x94\x8b\xfd\x10\x90\x9d\xbe\xd5\x33\x01\xfb\x36\xb2\x62\x85\xe3\x83\x95\xd4\xd4\x2d\x1c\xbf\x17\x25\x3c\xb2\x62\xc5\xc1\xf7\x9b\xc6\x4d\x49\x8c\x56\x36\x04\xac\x33\x07\x7a\x65\x43\xfa\x4d\xe3\x26\xf7\x63\xbf\x69\xdc\x37\x8d\xfb\x74\xe5\x20\xfa\x68\x76\x44\xf6\x25\x4b\x52\xe8\x38\x63\x55\x12\xe9\x44\xb8\xef\xdb\x70\xa9\x39\x18\x98\xc9\x75\xd8\x22\xdc\xfb\x6d\x4b\xce\x47\xe6\x7e\xdb\x92\xdf\x77\x4c\x23\xd1\x22\xca\x4c\xcd\xd6\x22\x4e\xbd\xdf\xa6\x65\xa2\x4c\xfb\x7d\xdc\x37\xcd\xb4\xcc\x61\xe1\x6d\x5a\xbe\x39\xa7\x47\x4c\xe9\xb7\x79\x19\x58\x67\xd4\xfc\x9b\x73\xfa\x6d\x9b\x1e\x59\x58\x6f\xdb\xf4\x5b\x74\xd4\x2d\xf2\xb8\x89\x2f\xde\x46\x3c\x54\x6f\x33\x29\xb0\x4e\x3d\xb0\xd7\xbe\x99\xd7\x7c\x12\xaa\xa1\x80\x99\x84\xfd\xfd\x66\x5e\xbf\x99\xd7\xce\xfd\x6f\xe6\x75\x60\x51\xcc\x6a\xa6\x80\x45\xa9\xa8\x99\xd2\x82\xf4\x37\xdb\xb4\x20\xfd\x7e\x27\x6b\xc3\xe6\xc0\xfd\xf6\x01\x26\xb0\xec\xbf\x82\xf4\xc1\x4a\xe8\x73\x0b\xd2\xef\x37\xb5\xe9\x5c\xfe\xa6\x36\xdf\xd4\xa6\x57\x4a\x6d\x8a\xbe\xdf\x98\x98\xa2\xef\xc1\xa2\xc9\x44\xdf\x83\x45\x07\x8b\xbe\xef\xf7\x3d\xc7\x63\x61\x8a\xbe\x07\x2b\x01\xe8\x2d\xfa\x1e\xcc\x71\xff\x98\x8e\x9a\xe2\x2f\xb7\x34\x17\xee\x29\x1e\xc5\x2f\xfa\xbe\x3f\xcc\x00\x67\x5f\xc1\xf1\x60\xd1\x9e\x1f\x66\xc0\x87\xef\xc5\x59\xeb\x63\x06\x7e\xc4\xe7\x65\xc3\x14\x42\xdf\x1f\xbe\x3e\x36\xec\x87\xed\xf8\x11\x78\x17\x07\xc4\xc7\x3c\x0d\xa8\xdd\xd0\x1f\xf3\xf4\xc3\x74\x64\xd6\x7e\x8e\xfb\xa6\xd9\x57\x6f\xd1\x87\x28\x71\x60\x9b\xc7\xc8\x12\xfa\xf0\xba\xb1\x30\x3f\xe6\xc7\x87\xd7\x2d\xea\xf3\x63\x7a\x24\xd6\x7c\xdf\xa6\x9b\xda\xcc\x3f\x1c\xae\xb1\x16\x04\x9b\x83\x35\xa2\x65\x3f\xf6\xf2\x8f\xbd\x9c\x73\xf5\x33\xee\x9b\x7e\x43\x19\x73\xe5\x8f\xe8\x97\xe0\x36\xbf\x5f\x44\xe5\xca\x34\x33\xd9\x3e\xe6\xc2\x7c\xe5\x71\xcd\x85\xcf\x1d\x8f\x46\xb4\x11\xb9\x69\xe6\xe9\xc7\x41\x25\x30\x9f\xd1\xa8\x1f\x7b\xe4\x67\xb9\x43\xd4\xfd\xc7\xa9\x24\xb0\x12\x9c\xdd\x1f\x7b\xa4\x00\xf7\x6d\x8e\xff\xaf\x6c\xc8\xf8\xaf\xfb\xb6\x58\xf7\xfe\x26\xda\x63\x4b\x18\x75\x7f\x45\x7b\x04\x56\x22\x06\x5b\x9d\x9b\xfe\x9a\x3e\x09\xc3\xed\xaf\xe9\xf3\x75\x40\x19\x44\x19\xd5\xef\xfd\x76\xe3\x8e\x15\xeb\x0e\xe6\x8a\xd2\x14\xeb\xde\x5f\xb6\x60\x12\x86\xb6\x3a\x31\x60\x84\x8f\xd3\x5f\xb6\x60\x6a\xc2\x5c\xcd\x56\x64\x93\x2c\xd9\x82\x0f\x22\xcf\x61\x3f\x5b\x9b\x4b\x9b\xac\xe3\x78\xbe\x86\xeb\x4b\x0b\x7d\x99\xfc\x49\x78\xdc\x5f\x6a\xe8\xeb\xe0\x1f\x95\xf3\x65\x32\x7e\x69\xa6\x44\x7d\xf5\x97\x66\xfa\x3a\xf8\x67\x6a\x7f\xcd\xbc\x84\xc1\x5f\xcd\xd2\x2d\x6a\xe8\x1b\x57\x7f\x6a\x1c\xf5\xd7\xcc\x13\x1a\xbf\x31\xb5\x85\xc6\xf7\x97\x1a\x4a\xae\xe4\xfe\x52\x43\x81\x95\x34\xfc\xfd\xa5\x86\xbe\x8e\xef\xcb\x5d\x1d\xdf\xbf\x8e\xef\x2f\x22\x63\xe9\x95\xaf\xa8\x09\xe1\xf2\xfd\xb3\x8a\x53\x7a\xbd\x7f\x56\xf1\x4f\x48\x40\x1c\x4c\xea\xa8\xf4\x5d\x47\x65\xd3\xea\x45\xa4\x5b\xb1\xd2\x95\x48\x01\x8b\x97\x48\x50\x3d\x18\x0e\xbf\x82\xea\xc1\xbe\x89\x89\x51\x22\x05\x2c\x3b\xcb\xcf\xab\xff\xd9\x6d\x52\x37\xb3\x05\xda\x83\x65\xcb\x50\x21\xa5\x7f\x1c\xf6\xc9\x58\xdd\x02\xed\xc1\x1a\x2f\x22\x3d\x08\x19\x74\x0b\xfb\xb1\x05\xda\x83\x65\x9f\x12\x67\x0f\x56\xaa\x82\xb5\x38\x7b\x30\x7d\x9a\x13\x67\x0f\xf6\x2d\x69\x9c\xfb\x67\x6e\x05\xd6\x7c\x11\xe9\x14\x2b\x2b\x69\x9c\xfb\xc7\xca\xfa\x71\x3d\xe5\x78\xa6\xb6\x4a\xff\x6c\x84\x49\xe3\xdc\xaa\xa6\x80\x95\x4c\xf0\xad\x6a\x0a\xb8\x9a\xa5\x57\xa6\x60\x60\x85\x69\xdb\x3f\xa7\x96\x9f\x53\x4b\xd2\x2c\xb7\x10\x7d\x30\xf9\xdb\x44\xe8\xf7\x2f\x71\x38\x7b\x18\xa8\xfd\xa3\xaf\x02\x6b\xc4\xdf\xf5\xa3\xaf\x44\xed\xef\x2c\x73\x51\xfb\x9d\xea\x26\x97\x2c\x77\x60\xa0\x05\xe6\x6e\xc4\x39\x95\x52\xfd\x64\xdf\x1f\x51\xd6\xaa\x9f\x80\x99\x32\x32\xad\xfa\x49\xa7\xfa\xc9\xd5\xcc\xaf\x79\xcd\x77\xf5\xba\xf4\x9e\x42\xfc\xdd\x79\xad\xf3\xb8\x14\x62\x28\x00\xfb\x9e\xe4\xfb\x8d\x03\x00\x46\xd2\xbe\x37\x0e\x40\x27\xf8\xfe\x6a\x96\xde\x53\x92\xa2\xef\x93\x74\xa7\x05\xdf\x83\xed\x74\x28\x14\x7d\x0f\x66\xd2\x81\xb5\xe0\x7b\xb0\x3f\x18\x15\x42\xed\xc1\x8b\x0d\x2b\xd4\xbe\xeb\x1e\xb7\x58\x59\xa2\xa4\x5b\x08\xee\xfe\x58\xaf\xff\x47\xe5\x5e\xff\xff\xeb\xfb\x9f\xff\xed\x7f\xfe\xaf\xf7\x3f\xff\xf7\xfb\x5f\xeb\x1f\xdf\xff\xfc\xe3\x8f\xfa\xb7\xff\xf8\xfd\xcb\xf7\x3f\xfe\xf1\xdf\x2f\xe9\x3f\x7e\xd5\xff\xf2\x6f\xf5\x47\xfd\x9f\x7f\xff\xcf\x3f\xbe\xf5\x8f\x7f\xfe\xfb\x3f\xaf\xab\xf2\xf7\x7f\x03\x00\x00\xff\xff\x9a\x2a\xf8\x63\xc7\x3b\x01\x00"); -func _gagc ()(*asset ,error ){_affb ,_cbab :=_ggbag ();if _cbab !=nil {return nil ,_cbab ;};_gebge :=bindataFileInfo {_ag :"UniJIS-UCS2-H",_bc :166343,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492896,0)};_gdceg :=&asset {_cd :_affb ,_dce :_gebge };return _gdceg ,nil ; -};func _beb ()([]byte ,error ){return _dc (_gfee ,"Adobe-Japan1-6")};func _cca ()(*asset ,error ){_bbf ,_gff :=_afg ();if _gff !=nil {return nil ,_gff ;};_bfd :=bindataFileInfo {_ag :"Adobe-CNS1-6",_bc :1901,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491216,0)}; -_gac :=&asset {_cd :_bbf ,_dce :_bfd };return _gac ,nil ;};func (_ge bindataFileInfo )Size ()int64 {return _ge ._bc };func _abe ()([]byte ,error ){return _dc (_dfb ,"Adobe-GB1-5")};var _cgbg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xdd\x51\xcf\xfd\x3a\x96\xe7\xf5\xfb\xf3\x2a\xfe\x97\xc3\xc5\x50\xdb\x4e\xe2\xc4\x52\xe9\x48\xa8\xbb\x47\x34\xa3\x61\x10\xcd\x00\x12\xe2\xc2\xf6\xde\xbb\x29\x89\x3e\xa7\x54\x55\x7d\xd1\xef\x1e\xe5\xf7\x49\x01\x42\x48\xa7\xae\x7e\x7a\xfc\x64\x27\xb6\x63\x2f\x2f\xc7\xfe\x7a\xfd\xee\xef\xfe\xf1\xef\xff\xf1\x97\x3f\xfc\xe5\xc7\xef\xfe\x87\x3f\xfd\xba\xfe\xe9\xf3\x97\x1f\xdf\x3f\xfc\xf2\xfe\xd3\xe7\xcf\xbf\xfe\xeb\x9f\xd6\xe7\xc7\xfc\xfc\xf3\x1f\x7e\xf9\xe9\xa7\x52\x7f\xbc\xff\xb0\xfe\xf2\xd7\x3f\x23\xeb\x5f\xc6\x1f\x7f\xfa\xe9\xfe\xfd\x3f\xfd\xdb\x9f\xff\xf2\xf9\x97\x7f\xfc\xe5\xfb\xeb\x8f\xcd\x75\xef\x7f\xfd\xe3\x73\xed\x8f\x1f\xbf\xfb\x1f\x3f\xff\xfc\x87\x3f\xff\xe5\x4f\xff\xf6\xe3\xdf\xfd\x37\xef\x5f\xe7\xe7\xbf\xfa\xf1\xfe\x7c\xef\xf4\xff\xfc\xa7\xf7\xe7\x4f\x7f\xf8\xe5\x9f\x7f\xfc\xbb\xff\xf8\xeb\x9f\x3e\xa3\xfc\xdf\xff\xf8\xa7\x7f\xfd\xe3\x1f\xff\xcf\xcf\xbf\x7c\x7e\xf9\xcb\x8f\x92\xb4\xcf\x2f\xef\xe8\x4f\xbf\xfb\xbb\xff\x34\xfe\xf8\xdf\x8f\x7f\xf9\xfc\xf8\xdd\x7f\xfc\xa7\xbf\xfb\xf7\xff\xdd\xaf\xff\xc7\x98\xff\xfe\xbf\xcd\xff\xf2\xaf\xff\xf9\xf3\xa7\x3f\xff\xe1\xd7\x5f\x7e\x94\xd7\x7f\xfd\x7a\xb5\xff\x27\xfd\x7f\xfa\xb7\x3f\x7e\x9e\x7b\xfd\xf4\xbb\xff\xf2\x8f\x7f\xff\x9f\xbf\xdf\x3f\x7f\xfe\xf2\xe3\x68\x2f\xd7\xfc\xaf\xff\xe5\x1f\xff\xfe\xc7\xff\x56\x7e\x94\xd7\x8f\x7a\xec\xa5\xfc\xef\xcf\xa5\xff\xcb\x7f\xfa\xf5\xfd\xf9\xe1\xa2\x9f\x76\x45\x5a\xbf\xbe\x3f\x7f\xfe\xe3\x58\x9f\x3f\x8d\x5f\xfe\xf9\xf3\xd3\x8f\x1f\xbf\x7f\xbd\x7e\xfe\xf1\xe3\xc7\xef\xaf\xd7\xcf\xf7\x5f\xd7\xbe\x97\x9f\x7f\xfc\xfe\xef\xb7\xff\xf0\x0f\xf9\xfb\xef\xaf\x2d\x7f\xff\xc3\xf3\xf7\x3f\xbc\xf2\xf7\x7f\xe8\xf7\xdf\x9f\x5f\xde\xff\x9f\xfb\xfd\x54\x3c\xe6\x97\x5f\xff\xf2\xfe\x7c\xa5\xe5\x09\xbf\x2f\xdf\x9f\x7f\x94\xfb\x17\xff\xef\x7f\xfd\x54\x5e\xaf\x27\x5f\x7f\x78\x3f\x57\xd7\xfb\xea\xf3\x73\x5f\x7d\xe7\xa6\xfe\x9c\x4c\x5d\x3f\xff\xd8\x8e\x2b\x29\x3d\x29\x47\xf9\xf9\xc7\xd6\xda\x9d\x72\x6c\x52\xb6\x9f\x7f\x6c\xe7\x91\x94\x5d\xca\xfd\xab\xf3\x4c\xca\xf3\xab\xf7\xcf\x3f\xb6\x6b\xbb\x53\x5a\x49\xca\x2d\xdb\x95\x3b\x5f\x52\xae\xa4\xf4\x3b\x65\x48\xb9\x65\xeb\xaf\x3b\x65\x49\x59\x49\x49\x0e\x3f\x52\x3e\x49\xa9\x3f\xfd\xfe\x3a\x52\x83\x64\xeb\xf7\xb3\x0e\xcf\x8a\x6c\x7d\xbf\x53\x3c\x2b\xb2\xf5\x3b\xcf\x87\x67\x1d\x9e\x75\x97\xeb\xf0\xac\xc3\xb3\xee\x52\x1c\x9e\x75\x78\xd6\x9d\xe7\xe6\x59\xcd\xb3\xee\x3c\x37\xcf\x8a\xec\xaf\x3b\xcf\xcd\xb3\x22\xfb\xeb\xce\x73\xf3\xac\xc8\xfe\xba\xf3\xdc\x3c\x2b\xb2\xbf\xee\x3c\x37\xcf\x8a\xec\xaf\x3b\xcf\xa7\x67\x45\xf6\xd7\x9d\xe7\xd3\xb3\x4e\xcf\xba\xf3\x7c\x7a\xd6\xe9\x59\x77\x9e\x4f\xcf\x3a\x3d\xeb\xce\xf3\xe5\x3e\x11\xef\xf4\x72\x9f\xab\xd5\x9f\x7f\x94\xd7\xd5\x92\xb4\x49\xda\x7f\xfe\xd1\xb7\x6d\x4b\xd2\x21\xe9\xc8\x55\x7e\xd8\x24\x9d\xb9\xea\x48\xd2\x25\x69\xe6\xaa\x9e\xa4\x95\xa4\xf3\x95\xab\xee\x5c\x5d\xa7\x27\xde\x52\x5e\x79\x49\xd7\xe9\x89\x67\x4f\xd2\x9e\xa4\x21\x69\xdc\x3f\xdc\x6b\x92\xa6\xa4\xf7\xcf\x3f\x4a\x49\x6d\x5e\xca\x7c\x5d\x35\x49\xf9\xe1\xe5\x5e\x57\x72\xbf\xe7\xf6\x97\xdc\xdf\x52\x4a\x2a\xeb\xba\xe4\xfe\xba\x72\x55\x72\x7f\x75\x49\x3d\x57\x25\xab\x97\x4c\xf4\xe4\x7e\x4f\xb1\xbb\x27\xde\x52\x8a\x4a\xed\x9e\x78\x4b\x29\xaf\x14\xbb\xef\x92\x92\x89\x23\xb7\xef\x32\xd1\xcf\xfb\xaa\xf2\x4a\x92\xfa\xea\xef\x5c\x95\x7c\x79\x65\xd7\x48\x81\x4a\x72\x3f\xdc\x7e\xe4\x5e\x2d\x35\x31\xdc\x6b\xa4\x40\x25\xb7\x1f\x0a\x34\x52\xa0\x96\x9a\x18\x0a\x34\x52\xa0\xe2\xf6\x0a\x34\x4b\xae\x4a\x19\xa7\xdb\xcf\xdc\x3e\x7d\xf8\x9a\x6e\x3f\xdd\xde\x55\x6e\x7f\x4b\xd7\xaf\xaf\x79\x4a\x52\xa0\xd4\xc4\x54\xa0\x99\x02\x9d\x49\xd2\xba\x23\xa5\x94\x54\xce\xaa\x92\xf2\xc4\x2b\x59\x5d\x9e\xb8\xf2\xc4\x9a\xca\x59\x9e\xb8\x52\xa0\x2b\x4f\x5c\x0a\xb4\x52\xa0\x9a\x06\xb0\x14\xe8\x9d\x02\xc5\x4e\x5c\x6f\x05\x7a\x27\x13\xe9\xaa\x97\x0e\x75\x7d\x52\xab\x35\x55\xf8\x71\xd5\xe7\xce\xc4\xee\xa5\x7d\x64\xe2\x23\x13\xc9\xd7\x47\x26\x3e\x77\x23\xdf\x4b\x9e\xf8\x51\xc6\x8f\x4c\xa4\xbe\x3e\x32\x71\x4b\xdf\xbd\xb4\x8f\xb6\x7a\x4b\x29\x35\xb9\xff\xe8\x0a\xdf\x57\xae\xca\xed\xbf\xf2\xf5\x4d\xe5\xd4\x64\xf5\x2b\x5f\xdf\x34\xa6\x9a\x7c\x7d\x35\xa6\x6f\xb2\xaa\x0a\xbf\xb2\xfa\xbd\xee\xab\xb6\x14\xfb\xab\x72\xbe\xc9\x84\x2a\xfc\xca\xc4\x37\x1d\x66\xbb\x9f\xd8\x19\x80\x48\x29\xe9\x8f\x9d\x9d\xef\x7b\x6e\x9f\xca\xe9\xfb\x21\x29\x35\xb1\x5d\x49\x6a\x92\xae\x5c\x75\x24\xa9\x4b\x4a\x4d\x6c\x3d\x49\xa9\x89\x7e\xa4\x8c\x29\x50\x3f\x3c\xf1\xc8\x13\xf7\x57\x92\x36\x49\x29\xe3\x5e\x92\xb4\x4b\x4a\x26\x62\x4d\xfa\x21\x13\x47\xda\x57\x2c\x40\x3f\x2e\x49\xef\x5c\x75\xb7\xe8\xce\x7e\xf5\xe6\x5e\xf9\x61\x73\xaf\xd8\xaf\xdd\x0f\xd9\xaf\x48\x29\xe9\xc8\x9d\xfd\xea\xb1\x5f\x7b\xec\x44\x67\xbf\x7a\x4b\x81\xf6\x14\xa8\x29\x50\xec\xd7\xee\xf6\xec\x57\xa4\x94\x23\xb9\x67\xbf\x22\xa5\x1c\x35\xa3\xf3\x5f\x47\xd5\xff\xbf\x81\xf6\xea\xa7\x3c\x9e\xc9\xe3\x91\x3c\x9e\xf2\x78\xa6\xbc\x47\x32\x74\xca\x50\x8c\xe0\xfe\x24\x4d\x49\x69\x58\xb1\x19\xfd\x5c\x92\x52\x2b\x92\xd8\xc5\x48\x29\x47\x5e\xf3\xe5\x35\x5f\x9e\x98\x2a\x60\x17\x3b\xbb\xf8\x24\xa9\x95\xd8\xc5\xbd\xa5\x70\xec\x62\x67\x17\x8f\xd4\x0a\xbb\xd8\x6f\x23\xd8\xf7\x18\x9b\xce\x08\x76\x46\xb0\xe5\x35\x33\x82\x91\xbe\x9f\x29\x23\x23\x18\x29\xc5\xed\xbb\x27\xc6\x08\xee\x67\xca\xc8\x08\x76\x46\x30\x16\xaf\x33\x82\x3d\x46\x70\xbf\xf2\x43\x46\xb0\x33\x82\x32\xc1\x08\xf6\x91\x77\x7a\xb9\x97\x2a\x64\x04\x5b\x5e\x20\x23\x18\xe9\xfb\x25\x49\xad\x8e\xd4\x6a\xec\x62\x1f\x6a\xf5\x96\xbe\x67\x60\xec\xe3\x2d\x29\xfd\xa9\xa5\xbe\xc6\x47\xd2\x37\x57\xe5\x87\xf3\x95\xa4\x99\xba\x6f\xa9\x2f\x36\x36\x52\xca\x99\xdc\x4f\x95\x33\x15\xc8\x55\x0a\xc4\xec\xaa\x2f\x66\x37\xd2\xf7\x98\xb7\xce\xec\xf6\x99\xae\xaf\xbe\xa6\x37\x14\xb3\xbb\xc7\x35\xea\xcc\x6e\x5f\xa9\xc2\x58\xf5\xbe\x64\x22\x66\x77\x8f\x9b\xd3\x99\xdd\xce\xec\xc6\xaa\x77\x66\xb7\xc7\xec\xee\xb1\x9e\x9d\xd9\xed\xcc\xee\x29\x49\x15\xde\xd2\x8f\x97\x27\xaa\xc2\x95\x2a\x3c\x53\xa0\xa5\x0a\xdf\xaf\x5c\x95\x02\xbd\xe5\xeb\x9d\xca\xb9\x52\x20\xf6\x3a\x52\x8a\x57\xfb\x56\x39\xb7\xf4\x23\x43\x71\x7f\xcb\xea\x3b\x59\xbd\xdc\x4b\x56\x6f\xe9\x47\x86\xe2\xfe\x56\x39\xef\xf4\x21\x0d\xe0\xad\x01\x64\x38\x38\x62\xe8\xbb\xe1\x20\x52\x4a\x06\xa0\xfe\xd1\x3b\x32\x1c\x1c\x19\x51\xbb\xe1\xa0\x1b\x0e\x34\x13\xc3\x41\xbf\x87\x80\x7e\x64\xc8\xeb\x1f\x95\x63\x38\xd0\x4c\x0c\x07\xfd\xb6\xea\xfd\xc8\x30\xd5\x59\xf5\xce\xaa\x6b\x26\xac\x7a\xbf\x2d\x79\x3f\x62\xe8\xfb\xd7\xed\xbf\x72\x9f\xdb\x7f\xe5\xfe\x9b\xdc\x6f\xf7\xbd\x06\x13\x3e\xf6\xbc\xda\xb4\x89\xb1\x6f\x92\x92\xfb\x58\xf5\xc1\x84\x0f\x26\x3c\xce\xf1\x60\xc2\x47\x4c\xf8\x11\x7b\x3d\x98\xf0\xc1\x84\xc7\x17\x1b\x4c\xf8\x88\x09\x3f\x62\x3d\x07\x13\x3e\x98\xf0\xb8\x67\x83\x09\x1f\x4c\x78\xbc\xe8\xc1\x84\x47\xfa\x11\xeb\x39\x98\xf0\x48\x29\x69\x72\xe3\x90\x89\x23\x2f\xed\x48\xee\x8f\x53\x52\x8a\x1d\x6f\x7b\x30\xf4\x23\x86\xfe\x88\x8d\x1d\x0c\x7d\xa4\x94\x34\xcc\xd1\xaa\xa4\x3c\x31\x56\x6e\x30\xf4\x83\xa1\x8f\x57\x3e\x18\xfa\xd1\x52\xec\x58\xa6\xd1\x14\x3b\x86\xbe\xbe\x24\x29\xf6\x99\x97\xd6\x52\x13\xac\x7a\xa4\xd4\x34\xf2\xc1\x6c\x47\xfa\x71\x4a\xf2\xc4\x5b\x4a\x4d\x23\x1f\xa7\x27\xc6\x20\x1f\xe9\xc8\x83\x41\x1e\x71\x54\x6b\xbc\xfc\xc1\x51\x1d\x31\xc8\x47\xba\xc2\x60\x90\x23\xa5\xc6\xcf\x1f\x0c\xf2\xb8\xce\x5c\xe5\x5e\x2a\xe7\x9a\xb9\x2a\xb5\x7a\x2d\x49\xdf\x5c\x95\x37\xd4\x63\x86\x46\x1c\xd5\x1a\x7f\x73\xb0\xd1\x91\x52\x4b\xee\xc5\x46\x47\xfa\x91\x26\x37\xd8\xe8\x48\xa9\xf1\x66\x06\x1b\x1d\xe9\x47\x8c\xd5\xe8\x5e\xda\xed\xc2\x96\x5a\x3c\x51\xad\xc6\x92\x1f\x1a\x26\x4b\x3e\x62\xc9\x6b\x5c\xd0\xc1\x92\x8f\x58\xf2\x43\xcb\x61\xc9\x23\xa5\xa6\x5b\x0d\x96\x7c\xc4\x9d\x3d\xb4\x09\xee\x6c\xa4\xd4\xb8\x41\x83\x25\x1f\x71\x67\x9b\xf7\xc8\xd4\x8e\xdb\x88\xf6\xf6\xba\x7e\x7b\x28\x1e\x6c\xec\x88\x1f\x5b\xab\x9b\xa8\xe1\x18\xd4\x16\xb7\x6f\x30\xa8\x91\x52\xe3\x25\x0d\x7e\xec\x88\xef\xd9\xe2\x26\x0f\xb6\x6c\xc4\x70\xb5\x4c\x9d\x06\xc3\x15\x29\xb5\x4a\xf2\xc4\x98\xa4\x16\x67\x67\x30\x49\x23\x1e\x6a\x8d\xef\x39\x78\xa8\x23\x26\xa9\xc5\x41\x19\x4c\x52\xa4\xd4\x9a\xea\x64\x92\x46\x4c\x52\xdb\xdd\x4b\x45\xc5\x24\xd5\xf8\x9e\x83\x49\x1a\xf1\x3d\x5b\xfc\x9f\xc1\xf7\x8c\x94\x5a\x25\x79\x62\xac\x54\x8d\x49\x1a\xac\x54\xa4\xb7\x4c\x64\x06\xdf\x33\x52\x6a\x7c\xcf\xc1\x70\x8d\x58\xa9\x16\x0f\x64\xb2\x52\x91\x52\x63\xb8\x26\x47\x73\xc6\x4a\xb5\x0c\xd8\x93\x95\x8a\x94\xba\xd5\x24\x35\x49\x29\x50\x86\xe2\xc9\x4a\x45\x4a\x4d\xad\x4e\x56\x6a\x1e\xa9\xfb\xf3\xce\xc4\x64\x92\x66\x6c\x46\xcb\x30\x35\xd9\x8c\x99\xc9\x6d\x8d\x03\x3c\x4d\x6e\x67\x6c\x46\x4b\x53\x9e\x6c\x46\xa4\xd4\x78\x95\x93\xcd\x98\x71\x0e\x5b\x46\xd4\xc9\x39\x9c\xb7\x9d\x28\x35\x36\x76\xb6\x0c\x79\x33\xce\x61\x8b\xf5\x9c\x9c\xc3\x48\xa9\xf1\x76\x27\x33\x32\x99\x91\x78\xbb\x93\x19\x89\xf4\x16\x2b\x35\x99\x91\xc9\x8c\xc4\xec\x4e\x66\x24\xd2\xcf\x97\x7b\x9d\x92\xd2\x56\x77\x4f\x94\xaf\x18\x9b\x33\x56\x6a\x32\x36\x91\x52\xf7\x14\x9b\xf7\x37\xe3\xb1\x9d\x19\x51\x27\x6b\x30\xd3\x5d\xcf\x34\xcc\xa9\xbb\x4e\xdd\x35\x8d\x69\xea\xae\x33\xdd\xf5\x54\x85\xba\xeb\xd4\x5d\xf7\xdc\x4b\x77\x9d\x71\xbc\x4e\x55\xc8\xf1\x9a\xba\x6b\x9a\xdc\xd4\x5d\x23\xfd\xdc\x24\xa9\xc2\x38\x5e\x35\xc3\xc1\xe4\x78\xcd\xdb\x8d\xea\x67\x86\xa9\x39\xe5\x2b\x2e\x55\xcd\x70\x30\xf5\xf3\x48\xa9\x71\xa0\x27\x97\x2a\xd2\x4f\xc5\xe6\x52\x45\x4a\x8d\x03\x3d\x75\xf7\x48\x3f\x95\x91\x4b\x35\xe3\x52\xd5\xc3\x0f\x35\xb9\x39\x73\x55\x0a\x34\x9f\x7c\xad\x5c\x25\xe9\x2d\x29\x55\x98\x21\x6f\x69\xf7\xcb\x17\x96\xa4\x68\x84\xab\xc9\xe9\x99\xa4\x5d\x52\x72\x9a\x52\x2f\x8d\x70\x69\x84\x4d\x52\x93\x74\xe5\xaa\x92\xa4\x2e\x29\x95\xda\x24\x0d\x49\xa9\xd4\x64\x7e\x69\x97\x91\x52\xe3\x3f\x2f\xdf\x61\x56\x9a\xea\x99\x7e\xbc\x34\xd5\xa5\xa9\x66\xc4\x5b\x9a\xea\xd2\x54\xd3\x43\x97\xa6\x1a\xe9\xa7\x7c\x69\xaa\x4b\x23\x6c\xee\x75\x49\x4a\x26\xe4\xcb\x44\x25\x52\x6a\x9c\xe5\x75\x3e\x99\x48\x75\xb9\xbd\xa6\xba\x8c\x8b\x71\x96\x97\x71\x71\x5d\x9e\xd8\x92\xe4\x89\xc6\xc5\x0c\xbb\xcb\xb8\xb8\x32\x51\x39\xdd\xde\x44\x25\x52\x6a\x86\xdd\x65\xa2\xb2\xf2\x01\xe7\xf4\x43\x1f\x70\x96\x71\x31\xfe\xf3\xd2\x13\x96\x71\xf1\x4c\xbe\x8c\x8b\x91\x7e\xc6\x98\x2c\xe3\xe2\xca\x07\x9c\x1a\x97\x7a\xf9\x80\xb3\x74\xa1\xf8\xbc\x4b\x17\x5a\xba\x90\x1f\xea\x42\x2b\x63\xd9\x19\x47\x72\x19\xcb\x96\xce\x91\xb1\x7f\xe9\x1c\x2b\x63\xd9\x19\x93\xb3\xb4\xf1\xa5\x79\xc5\x4c\x2c\xc3\xd0\xca\x98\x73\x65\x54\x5f\xc6\x9c\x95\xd1\xe4\x8a\xb9\x5f\x46\x93\xf5\x49\x81\xe2\x52\xaf\x8f\x02\x65\x34\xb9\xd2\xf7\x96\xd1\x64\x19\x4d\xe2\x34\x2c\xa3\xc9\xca\x68\x72\xa5\xef\x2d\xa3\xc9\x32\x9a\xc8\xbd\xd1\x64\x65\x34\xb9\x62\xab\x96\xd1\x64\x19\x4d\xe2\x06\x2f\xa3\xc9\x32\x9a\x5c\xe7\x6f\x8f\xc4\xcb\x60\x13\xe9\x97\xee\x64\xb0\x59\x71\x89\x6b\xfc\x93\xc5\x25\x5e\x19\x6c\xae\x74\x9e\xb7\x4e\xf7\x8e\x4b\x5c\x53\x77\x6f\x2e\xf1\x3b\x83\xcd\x95\xde\xfa\x36\xd8\xbc\x0d\x36\x31\xd7\x6f\x83\xcd\x3b\xce\xee\x95\x19\xf0\x9b\xb3\x1b\x29\x35\xce\xee\xdb\xc8\xf2\x8e\x67\x7b\xa5\x91\xbe\x79\xb6\x91\x52\xe3\xc5\xbc\x8f\xe7\x5e\xb7\x61\xb9\xd2\xd6\xde\x3c\xdb\x48\xa9\xf1\x7f\xdf\x3c\xdb\x77\x46\xa9\x2b\x8d\xf4\xcd\x40\x44\x4a\x8d\xaf\xf3\xe6\xd9\xbe\x63\x20\xae\xb4\xa2\x37\x03\xf1\x66\x20\xba\x24\x4f\x8c\x81\xb8\xf2\x9a\xdf\x0c\xc4\x9b\x81\x48\x93\x79\x33\x10\xef\x78\xb6\x57\x5e\xf3\x5b\x3f\x7f\xa7\x53\x5f\x99\x1c\xbc\x75\xea\xf7\x3d\xd8\x94\x2d\x83\xcd\xdb\x60\xf3\x4e\xa7\xbe\xd4\x84\x4e\x1d\x29\xdb\xcb\x0f\x97\xa4\x14\x48\xbe\x74\xea\x48\xd9\xe2\xec\xbe\x8d\x3f\xef\x8c\x3f\xdd\xed\xf5\xba\x77\x3a\x4f\x8f\x6f\xf8\xd6\x79\xde\xe9\x3c\x5b\x3e\xe7\xbe\x75\x9e\x77\xc6\x9f\x9e\xd6\xfd\x36\xfe\x44\xca\xf6\xf2\x43\x35\x71\x4b\xef\xf1\x5c\xde\x43\xee\x6f\x29\xdb\xcb\x0f\xd5\x7d\x3a\x62\x8f\xe7\xf2\xd6\x11\x23\x65\xcb\x1c\xf2\xad\x23\xbe\x33\xfe\xf4\x78\x2e\x6f\xe3\x4f\xa4\x6c\x99\x43\xbe\xf5\xcd\x48\xd9\xd2\x11\xdf\xc6\x9f\x48\xef\xe9\x62\x6f\xe3\x4f\xa4\x6c\xc5\xbd\x64\x35\xe3\x4f\xdf\xdc\x4b\x56\x67\x32\x11\xbf\xfc\x3d\x9f\x4c\xa4\x72\xe2\x47\xbc\x75\xfd\x77\xa6\xf4\x5b\xa6\xa8\x6f\x53\xfa\x77\x26\xeb\x3d\x23\xde\xdb\x64\x3d\x52\xb6\x38\xa5\x6f\x93\xf5\x77\x6c\x46\xd7\x61\xd8\x8c\xf7\xed\x94\xf6\xae\xdd\x73\x4a\xdf\x99\x3a\x6f\x45\x92\xfa\x8a\x65\xe9\xb1\xea\x6f\x96\xe5\x1d\x3f\x75\x8b\xb3\xfc\xe6\xa7\xbe\x33\xdd\xed\x71\xd8\xde\xdf\x27\x29\x65\xcc\xa4\xe5\xfd\x55\xc6\x74\xe4\xad\x4a\x72\xfb\x74\xe4\x1e\x9b\xf1\xd1\x91\x23\x65\x8b\x4f\xf2\xe1\x35\x7e\xd2\x91\x7b\xda\xea\x47\x47\x8e\x94\x2d\xce\xf2\x47\x47\xfe\xc4\x6b\xec\xe9\x8f\x1f\x5e\x63\xa4\x6c\x55\x52\x6a\xe2\x93\xee\xde\xd3\x56\x3f\xba\x7b\xa4\x6c\x71\xa9\x3f\xba\x7b\xa4\x6c\x69\x72\x1f\x73\xdb\xcf\xdd\xb7\xcb\xeb\x95\x99\xd9\x47\xe7\x8e\x94\xad\xba\xd9\x25\xe9\xed\xb2\xa4\xe9\xdd\x91\xb2\xa5\x69\x7e\xf4\xee\x8f\x15\x90\x57\x26\x4f\x1f\x5d\xf2\x73\xfa\x69\x1a\xe7\x47\x3f\xfa\x64\x70\xdc\x9e\x24\x97\xdd\x83\x63\x79\xbd\xe2\x4d\x7e\x8c\x8e\x91\xb2\xc5\x89\xfe\x18\x1d\x3f\xf7\xe8\x78\x5f\x96\x8a\x34\x3c\x46\x8a\x65\x9d\x8f\xe1\xf1\x73\x4f\x1b\xef\xcb\x52\x7a\xf3\xc6\x4f\xc6\xc7\x2d\x0e\xdf\x47\x4f\x8d\x94\x6d\x73\x95\x0a\xe9\xf2\x11\xff\xeb\x63\x80\x8c\x14\x6b\x3d\x1f\x13\xc7\xc8\x7d\x59\x1e\x6a\xe6\xf8\xc9\xcc\x71\x4b\x37\xf9\x98\x39\x7e\xba\xc2\xc7\x89\xf9\xb0\x05\x91\xb2\xa5\x07\x7c\x86\x7a\x1b\x4a\x15\xef\xea\xa3\x03\x7f\x74\x60\xf5\xa1\x03\x7f\xa6\xea\x8d\x07\xf1\xd1\x5d\x3f\xe9\x88\xaf\x57\xc6\xf8\x8f\x9e\xf8\xc9\xc4\xcf\x12\xd3\xc7\xc4\xef\x33\x65\x24\x5f\xc4\x3e\xfa\xdd\x47\xbf\x4b\x27\xfb\xe8\x77\x9f\xa5\xf4\xf9\xce\xf4\xf1\x2d\x2d\x52\x36\x55\xe9\x5b\xda\x67\xc9\x6f\xc6\xce\x8f\xfe\xf9\xd1\x3f\x77\x0f\x90\xdf\xf7\xcb\x65\xa9\x11\xdf\xc9\x22\xc5\xca\xd3\x47\x9f\x8d\x94\x2d\xa3\xe3\xc7\x77\xb2\xcf\x5b\xa9\x34\x7b\xfd\x38\x52\xb6\xf4\xf6\x8f\xaf\x62\x9f\xb7\x52\x65\x84\xf9\xe8\xc8\x91\xb2\x1d\xe5\xb7\x47\xe7\x8f\x4f\x64\x9f\x4f\x0a\x6d\xb1\xed\xc3\x85\x88\x94\x4d\x2b\xe0\x42\x7c\x3e\x97\xcb\x3c\x4c\xa1\xe3\x43\x6c\x5a\x01\x1f\xe2\xf3\x4d\xa1\xad\x87\x7d\x38\x11\x91\xb2\x69\x05\x2c\x49\xa4\x58\x48\xfb\xf0\x12\x3e\x59\xd5\x78\x59\x9e\xfa\xb2\x1b\x5f\x76\x23\xa3\xfd\x97\xdd\xf8\xa6\x63\xbf\x2c\xc1\x7c\xf5\xec\xaf\xfe\x59\xd2\x2d\xbe\xfa\xe7\x37\x73\xc4\x2d\xee\xf9\xd7\x1c\xf1\xdb\x94\x34\x19\xf9\x1a\x7e\x23\x85\x63\xff\x35\xfc\x46\xee\xcb\xf2\xd4\x76\x4a\x4b\x9b\x8a\xbb\xfc\x35\x71\x8c\xdc\x97\x79\x42\x97\x96\x0a\x89\x65\xfd\x1a\xa6\x23\xf7\x65\x57\xd2\xa6\xb4\x0c\xb7\x71\xe4\xbf\x1c\xf9\x6f\xfb\xba\x2c\x19\x39\xd3\x65\xbf\xb1\x27\x5b\x3c\xf9\x2f\x73\x12\x29\x5b\x7c\xf4\x2f\x4f\x3e\x52\x5e\xe5\xb9\x4c\xa9\x32\xeb\xb4\xa4\xff\x35\xeb\x8c\xdc\x97\xa5\xf0\x3c\x81\x48\xb1\x6c\xf8\xe5\xf1\x7f\x4f\xd9\x7d\x9e\x20\xbb\xbc\x83\xf8\xe4\x5f\xde\xc1\x97\x59\xf3\xcd\xfc\xcb\xac\x7d\xbb\x37\x93\xc9\xfb\x97\x89\xf9\xb2\x00\xbe\x90\x7e\x59\x80\x2f\x6f\x20\x6e\xd7\x97\x37\xf0\x1d\xca\x10\x0b\xfe\xe5\x0e\x7c\xb9\x03\xf1\xbb\xbe\xdc\x81\x2f\x43\xe1\x03\xdf\x97\xa1\xf8\x32\x14\x71\xbc\xbe\x0c\xc5\x77\xbe\x5c\x96\x1a\x31\xd4\x7f\x0d\xf5\xa7\x24\x0f\x35\xd4\xc7\x74\x7c\x0d\xf5\x91\xf2\xf2\x75\xed\x6b\xac\xff\x1a\xeb\x33\x3f\xf8\xb2\x30\x91\xfb\xb2\xe4\xcd\x60\xff\x65\x75\xce\x54\x39\xab\xf3\x65\x75\xf2\x61\xae\xbf\xd2\xa2\x49\x1a\x48\x7f\x35\x29\x4d\x36\xce\x24\xed\x92\x9e\x6c\x5c\x49\x3b\xa4\x25\x1b\xf7\xd4\xa2\xbf\xd2\x50\xfb\x2b\x8d\xf2\x95\x4f\x67\xfd\x95\x56\xd9\x5f\x9a\xd6\xe5\x01\x2b\x49\xa7\xea\xa8\x49\x3b\x3d\x54\xd3\xba\x2d\x58\x7f\xa5\x69\x91\xb2\xdd\xc3\x76\x7f\x9d\xf2\xa1\x69\xe5\xc3\x54\x7f\x9d\xf2\x91\x35\xfd\xac\xdf\xf6\x57\xd6\xf4\xc9\x7d\x99\xb4\x29\x2d\xf9\xe8\x29\xfa\xf9\xe4\x63\xb9\x2c\xa5\xba\x1b\xd0\x23\x25\x3b\x3b\xfa\xeb\x92\x35\xa3\xe3\xed\x9e\xf6\xd7\x25\x6b\xd7\x93\x8f\x14\xf4\x92\x0f\xa3\x63\x4f\xd6\x2e\xf5\x61\x74\xcc\xc7\xa9\xfe\xca\xe8\x48\x4a\xb6\x7c\xf4\xd7\x25\xbb\x5d\x7d\x6c\x79\x42\xf7\x50\xa3\x63\x4f\xd6\xba\x87\x1a\x1d\x7b\x9e\xd9\xd5\x87\xd1\x31\xdf\x7c\xfa\xab\xcb\x47\xa6\x8f\xd9\x1d\xd2\x5f\xdd\x3b\xd0\xe8\xf3\xd1\xa7\xbf\x86\x07\xa4\xd1\x67\x3b\x48\x7f\x0d\x0f\x18\xcf\xdd\xf2\xd0\xe1\x6e\x69\xf4\xd9\x11\xd2\x5f\x43\xa9\x9e\x46\x7f\xe4\x09\x43\xa9\xd2\xe8\xb3\x4d\xa4\xbf\x86\x52\x3d\x8d\xfe\xc8\x13\xa6\x87\xa6\xd1\x67\xef\x48\x7f\x4d\x0f\x7d\x9a\x6e\xcb\xdd\xd2\x74\x49\xc9\x86\x92\xfe\x9a\x8a\xf0\x34\xdd\x96\x3a\x5a\xee\x96\xb1\xeb\x55\xcf\xfc\xf4\xed\x76\x86\xa0\xaa\x39\x7c\x5c\xf7\x51\xd4\x54\xdc\xc7\x65\x99\xb8\xbe\xaa\xfa\xfd\xa8\xcc\x8c\x31\x59\x83\xef\xaf\x8f\xa2\x1a\x63\xaa\x3a\xff\x28\x6a\xc6\x98\x2c\xc2\xf7\xd7\x47\x51\x3f\x69\x6f\x99\xae\xf4\xd7\x47\x7b\xfb\xac\x5c\x96\xfc\x7e\xb4\x2d\x43\xd1\xa6\xce\xbf\xf2\x96\xa1\x68\x2f\xa9\xb8\xaf\xbc\x65\x28\xda\x4b\x4a\xf0\x95\xb5\xef\xee\x97\xd2\xbc\x99\x38\xba\xbb\x2e\xf9\x55\x49\xdf\xe5\x32\x69\xcf\x43\xef\x0a\xd9\xd3\xd7\x8a\x2e\x5f\x32\x8b\xcd\x42\x7c\x2f\x99\xc5\xf6\xb2\x7b\x40\x4a\x55\xe2\xfd\x92\xb2\xd7\xfd\x37\x47\xee\x5e\xe2\x1c\xf7\xb2\x5f\xee\x72\x24\xad\x4b\x4b\x75\x55\x49\xa9\xae\x72\xa8\x87\x64\xbd\x1c\xf2\x94\x51\x74\x4f\xc7\x2e\x87\x3c\xc5\x3d\xde\xd3\x89\x4b\xdc\x63\x52\x5e\x9b\xbb\x1d\xb2\x19\xf7\x38\x5b\x01\x7a\x89\x7b\xdc\x8b\xe1\x77\x73\x37\x56\xad\x64\xf8\xdd\xd3\x15\x4b\xf3\x00\x56\x2d\x0e\x6d\x2f\xac\x5a\xa4\xec\x5b\xea\x81\x55\x2b\xc6\xd5\x78\xaa\xbd\x34\xa5\xca\xb8\xba\x3f\x49\x4a\xc5\xaa\xc5\x2d\xed\x85\x55\x8b\x94\xec\x36\xe8\x85\x55\x8b\x94\x6c\x2d\xe8\x85\x55\x2b\x19\x1c\x5f\xf1\xfc\x7a\x39\x3d\x34\x23\xe1\xfe\xdc\x4c\xa9\x6c\x5e\x8a\xe7\xd7\xcb\xf9\x3c\x74\xe4\xb2\x9e\xa4\x29\x49\xe1\xd3\x8b\x0b\x13\x16\x29\xfb\xed\xe3\xf6\x92\x89\x72\x2f\x4c\xd8\xed\x98\xdd\x7f\x28\x7c\x4c\xd8\xbe\x4b\x92\x0f\x63\x68\x7c\xa5\x5e\x18\xa2\xc2\x9c\x64\x34\xef\x85\x39\x29\xcc\x49\x2c\x4c\x61\x4e\x0a\x73\x62\x20\x29\xcc\x49\x61\x4e\x94\x94\x39\x29\xcc\xc9\x76\xa6\x0c\xcc\x49\x61\x4e\xf6\xd4\x1b\x73\x12\x29\xaf\xed\xf2\x04\x45\xcd\x47\xdd\x5d\x85\xe4\xa3\x6e\x2f\xac\x4e\xb6\x01\xf6\xc2\xea\x14\x56\x67\x4f\x3e\x58\x9d\x48\xd9\xd5\xd1\xf4\x16\x0c\xb5\xd9\x2e\xd8\xcb\x94\xdd\x29\xbb\xc9\xda\x94\x5d\xf6\x2a\x7b\x08\x7b\x61\xaf\x0a\x7b\x15\x83\x58\xd8\xab\x32\xb3\x45\x2d\x1b\x86\x7a\x99\x4f\xde\xd2\x15\xd5\x38\x13\x16\x29\xd9\x78\xd1\xcb\xf2\x62\xf8\xfc\xc6\x9b\xb2\xe4\x23\x3e\xff\xee\x25\x2c\xf9\xe0\xf3\x1b\x48\xca\x52\x6d\xf1\xf9\xf7\x23\xd5\xb6\x54\x1b\x1b\x69\x38\x28\x6c\x64\xe1\xcd\xb3\xaf\xe5\xed\x76\xf1\xe6\xb3\xb7\xa3\x97\xb7\x52\x31\xa5\x0c\x62\x61\x4a\xcb\xd7\xed\x74\x5d\xf6\xaa\xf0\x93\xb5\xf2\xca\xc4\x44\xca\x7e\xbb\xa2\xbd\xc6\x4f\xee\x95\x89\xf1\xb6\x2a\x13\x53\x99\x98\xdb\x15\xed\x95\x0d\xa9\x6c\x88\x3a\xaf\x6c\x48\x65\x43\x0e\x49\x29\x57\x65\x43\xb2\xb1\xa5\x57\x36\xa4\xb2\x21\x19\x49\x2a\x1b\x52\xd9\x90\xb8\x37\x95\x0d\xa9\x6c\xc8\x73\x37\x36\x24\x52\xf6\xe6\x66\xf2\xc1\x86\x3c\x77\x63\x43\x2a\x1b\x72\x3b\xb6\xbd\xb2\x21\x95\x0d\xd9\x5b\x8a\xc0\x86\x54\x36\xa4\xa5\x3e\xd8\x90\xca\x86\xec\xa7\xbb\x29\x15\x1b\x92\x5e\x54\xd9\x90\x6a\xc2\x9e\x4d\x2a\xbd\x32\x18\x95\xc1\x68\xa9\x4a\x06\xa3\x72\x83\xb2\x4b\xa5\x57\x6e\x50\xa4\x3c\xf9\x60\x43\x2a\x0f\x7b\x4f\x97\xa9\xf1\xb0\x49\xd9\x5b\x0a\xcf\xae\x54\x06\x23\xbb\x59\x7a\x65\x30\x6a\x7c\x9e\x27\xbb\x7c\x9e\x7a\x3d\x0f\xcd\x4f\x19\x8c\xca\x60\x9c\x79\x00\x83\x51\xaf\xf8\x80\xd9\x24\xd2\xeb\xe5\x09\xf1\x79\x9e\x52\xf1\x79\x2a\x9f\x67\x8f\xa3\x55\xf9\x3c\x91\xb2\x9f\xa9\x37\xa6\x26\x52\xf6\x33\x75\xc4\xe7\xa9\x7c\x9e\x23\x2d\xba\xf2\x79\x22\x65\x8f\xa5\xa9\x5d\x3e\x7c\x11\xc8\xd6\x91\x5e\xbb\xc2\x73\x8d\xce\xd4\x11\xd7\xa8\xb2\x65\xd9\x3b\xd2\x2b\x5b\x16\x29\x7b\x0c\x52\x1d\x1a\xaf\xa9\x7e\xf6\x80\xf4\xca\x86\x54\x53\xfd\xa3\xee\x49\xf3\xd4\x58\x87\x3d\x4e\x71\x65\x1c\x2a\xcf\xe5\xc8\x38\x56\x75\xfb\xaa\xdb\x7b\x7f\xba\x7d\xd5\x51\x8f\x0c\x29\x55\x47\xad\x7a\x60\x36\x31\xf4\xaa\x07\x46\xca\xf3\x4e\x3f\x7e\x6a\xc2\x7c\x68\xe5\x1f\x35\xc2\x99\xb9\xb6\xdf\x1e\xbc\x2b\x5f\xa7\xf2\x75\x8e\x78\x58\x95\xaf\x53\xf9\x3a\x97\x24\x2f\x8e\x13\x73\x68\x8f\x9c\x98\xca\x89\x89\xf3\x5e\x19\x85\xca\x89\x89\xf3\x5e\x39\x31\x95\x9d\x38\xee\xf9\x4d\xdf\xd8\x89\x8d\x2b\x12\x6f\x6d\xe3\x8a\x6c\x0c\x40\xf6\x18\xf4\x8d\x01\xd8\x18\x80\x34\xbd\x8d\x01\xd8\x18\x80\xec\x02\xe8\x1b\x03\xb0\x31\x00\x4f\x92\xbb\x31\x00\x69\x8d\x1b\x03\xb0\xf9\xc6\x96\x35\xff\xbe\xe5\x1b\x1b\x29\x7b\x66\x07\x1b\x27\x62\x63\x00\xb2\xe8\xdf\x37\x06\x60\x63\x00\xd2\x68\x37\x06\x60\x63\x00\x5a\x5c\xdf\x8d\x01\xd8\x18\x80\x7e\x24\xa9\x49\xba\x5c\x76\x25\x4d\xa9\x32\x35\xca\x46\xa9\xbe\x99\x1a\x6d\x9c\x88\xec\x08\xe8\x1b\x27\x62\xe3\x44\xc4\x07\xdd\xd8\x84\x48\xd1\x05\x36\x36\x61\x63\x13\x5a\x3c\xc9\x8d\x4d\x88\x14\x5d\x60\x63\x13\x36\x36\x21\x9b\x09\xfa\xc6\x26\x6c\xb7\x1d\x28\xba\xc0\x76\xca\x5a\x66\x4b\xaf\x16\x3b\xbf\x9d\x4f\xde\x56\x2e\xcb\x7b\x31\x5b\xda\x98\x8e\x16\xef\x72\x63\x3a\x22\xe5\xc8\x8c\x61\xe3\x6b\x6c\x4c\x47\x8b\xc7\xb9\x31\x1d\x91\x72\xa8\x36\xa6\x63\x33\x5d\x6a\xd5\x4f\x65\x24\xa6\x23\x3b\xb4\xfa\xc6\x74\x6c\x5c\x92\x16\x8f\x6f\x63\x27\x36\xdd\xb8\xc5\xad\xda\x74\xe3\x2d\x2e\x89\x2e\xbb\x71\x49\x36\x2e\x49\x8b\x2b\xb0\x71\x49\x22\xe5\x28\xa9\x4b\x2e\xc9\xc6\x25\x69\x19\x83\x36\x2e\x49\xa4\x1c\x5e\x0c\x97\x64\xe3\x92\xb4\x8c\x41\x1b\x97\x24\x52\x8e\x22\x49\xbd\x71\x49\x5a\x06\xf9\x8d\x4b\x12\x29\x47\x91\x24\x6f\x71\x49\x8e\x4c\x18\x36\x2e\xc9\xc6\x25\x69\x19\x1f\x37\x2e\x49\xa4\x64\x03\x59\xdf\x18\x9d\x8d\x4b\xd2\x32\xa2\x6d\xac\x4e\xa4\x1c\x5a\x03\x97\x64\xe3\x92\xb4\x8c\x68\xdb\x7c\xf2\x96\x77\xaa\x35\x4c\xef\x94\xbd\xca\xf6\x89\x0e\x18\x21\x9b\x14\x3d\x61\x6f\x72\x7b\x25\x69\x97\x24\xb7\x19\xf7\x76\x3d\x21\x52\xb2\x45\xad\xef\x7a\xc2\xee\x23\x41\xcb\xb8\xb7\xfb\x48\xb0\xb7\x64\x23\xed\x63\x6f\x6f\x49\x5f\x97\xe5\x09\xf9\xfe\xd4\xf7\xf4\x04\x96\x74\xd7\x13\x76\x3d\x21\x13\xf1\x5d\x4f\xd8\x9f\x9e\x70\xe6\xa1\x7a\xc2\x1e\xdf\xf9\xd8\x5e\x49\x1a\x92\x96\xcb\xf2\x50\xed\x39\x52\x8e\x78\x32\x88\x91\xbe\x67\x24\x3c\xd2\xb0\x76\x23\xe1\xfe\x34\xe7\xd3\x65\x1e\xa0\x39\x6f\xc9\xad\xe6\xbc\x3f\xcd\x39\xa3\xd2\xae\x39\xef\x9a\x73\xfc\xf5\x5d\x73\xde\x8d\x84\x2d\x63\xc6\x6e\x24\x8c\x94\x63\x97\xe4\xa1\x19\x09\x8f\xf8\xe6\xbb\x91\x70\x37\x12\xb6\x58\xcf\xdd\x48\xb8\x67\x88\xcb\xae\xba\xbe\x1b\xe2\xf6\xa7\x6f\xc4\xb1\x45\xbd\x90\x72\xc4\xc1\xde\x0d\x71\xbb\x21\xae\xc5\xef\xdc\xb5\xc9\x5d\x5b\x38\xd3\x39\xe0\x31\x7d\x37\x50\x9d\xde\xa9\x81\x6a\x37\x50\x9d\x8a\x6f\xa0\xda\x3f\x32\x9c\x8a\x33\xc3\xde\x0d\x54\xd9\xc7\xd0\x77\x03\x55\xa4\x1c\x4f\x92\x8a\xfb\xa4\x85\x64\xdb\x42\xdf\x3f\x0a\x91\x91\xe8\x78\x92\x54\x9c\x59\xf7\x99\xee\xb7\x9b\x75\xef\x99\x75\x1f\x4f\x92\x77\x6a\xc0\x3a\xd3\xfd\x76\x03\x56\xa4\x1c\xf1\xa7\x77\x03\x56\xa4\x1c\xf1\x9d\x77\x03\xd6\x6e\xd6\x7d\xc6\x8b\xdd\xcd\xba\x23\xe5\x88\x9f\xbc\x7f\x65\xf7\xdb\x5c\x96\xc2\x67\x15\x8a\x94\xe3\xf9\xa5\x12\x64\x2b\xfd\xeb\x4c\x2f\xdd\xbf\x9a\xc3\x57\xa9\xfc\x52\xa9\xbe\xe9\xa5\x67\x7b\xfd\xf6\xc8\xbd\x7f\x97\x9f\x28\xb4\x1b\x3f\x85\xf6\x42\xe2\xd1\x62\x96\xfa\x91\xb1\x36\xfb\x13\xfb\x61\xac\x3d\xf8\xe4\x67\x3c\xda\x83\x4f\x1e\x29\xc7\xf3\xcb\x26\x49\xd6\xd3\xb3\x0f\x43\x72\xa4\x1c\xcf\x2f\x93\xf5\xc3\x90\x9c\xbd\x12\xfd\x30\x24\x47\x0a\xa7\xe2\x30\x24\x47\xca\xe1\x66\x86\xe4\x83\x4f\x7e\x9e\xd2\xe4\x23\x43\xf2\x11\x33\x71\x18\x92\x0f\x43\xf2\x19\x77\x10\x77\x45\xca\x11\x87\xf6\xc8\xb2\x57\x3f\x18\xa2\x33\x3e\xd2\xc1\x10\x1d\x0c\x51\x1c\xda\x83\x21\x3a\x0c\xc9\xd9\x2f\xd1\x0f\x43\x72\xa4\x64\xdf\x65\x3f\xf8\xe4\x07\x9f\xfc\x4c\xf7\x39\x58\x9d\xc3\x8c\xfd\xcc\xd0\x7d\x18\x59\x8f\x78\xd6\xd9\x8c\xd9\x0f\x9e\xf5\x61\x78\xcc\xc6\x8a\x8e\x0a\x23\x85\x13\x74\x18\x1e\x0f\xf6\xe4\xca\x90\x79\xb0\x27\x07\x7b\xa2\x42\xd8\x93\xc3\xb8\x77\x65\x40\x3b\x58\x85\x43\xdf\xbe\x6a\xca\xa5\x6f\x1f\xc6\x3d\x95\x64\xdc\x3b\x8c\x7b\x57\xbe\x7e\x1c\xc6\xbd\xc3\xb8\x17\x67\xf8\x30\xee\x1d\x59\xca\x7e\x5d\xf9\xfa\x71\x0c\x65\x30\xee\xc5\x19\x3e\x8c\x7b\x87\x71\xef\x8a\x99\x3c\x8c\x7b\x87\x71\xef\xf2\x80\x25\x69\xb9\x4c\x46\xde\xd2\x62\x60\xbd\x99\xec\x6c\xef\x87\xe1\xf1\xca\xa7\x8e\xc3\xf0\x78\x18\x1e\x33\x23\x39\x98\xa2\xc3\xf0\x18\xaf\xf0\x30\x3c\x1e\x86\xc7\x2b\x66\xf2\x30\x3c\x1e\x86\x47\xef\xd4\xf0\x78\x18\x1e\xaf\x98\xce\xc3\xf0\x78\x18\x1e\xe3\x9e\x1e\x86\xc7\xc8\x7d\x59\xf2\x36\x35\x87\x2c\x98\x1f\x97\xac\x29\xfc\x54\xf8\x5d\xde\x14\x7e\x2a\x7c\xaa\xd2\xc0\x7a\xb0\x9c\x57\xbe\x74\x80\xfd\x48\xc9\xee\xd6\x7e\xf0\xfa\x8f\xf5\x14\x21\x19\x31\xd9\x8f\x14\x8e\xed\x61\xb2\x7f\xac\x27\x6f\x7e\x2a\x6f\x99\xec\x1f\xf1\x6c\x0f\x93\xfd\x83\x69\xbe\x62\xfe\x0e\xa6\xf9\x60\x9a\x2f\xdd\x9e\x69\x8e\x94\x23\xde\xee\x61\x0e\x71\x98\xd8\x5f\x5a\x3e\x93\x78\x7c\x1f\x18\x2f\xc5\x67\xec\x22\xe5\x88\x07\x7c\xb0\x75\x07\x5b\x73\x25\xc3\x98\x45\x52\x8e\x8c\x25\xcd\xfc\xbf\xb1\x35\x57\xdc\xee\xc6\xd6\x34\xb6\x26\x8e\x72\x63\x6b\x1a\x5b\x93\x1d\x1c\xbd\xb1\x35\x8d\xad\x49\x6f\x6b\x6c\x4d\x63\x6b\x7a\xbe\xa5\x36\xb6\xa6\xb1\x35\x1e\xc0\xd6\x34\xb6\x26\x9f\x79\x1b\x5b\xd3\xd8\x9a\x9e\x31\xad\xb1\x35\x91\x72\xa4\x9f\x36\xf3\xff\xc6\xd6\xf4\x38\x7c\xb8\x4b\x52\xcc\x08\x1a\x5b\xd3\x1e\xc8\x30\x4b\x1e\x8d\x75\x68\xba\x7d\x4f\xff\x00\x68\xf6\x16\x37\xa2\xc5\x15\x6f\xdc\x88\xa6\xdb\xf7\xbc\xfb\xa6\xdb\x47\x4a\x53\x2a\xdd\xbe\x71\x23\x7a\xbe\x55\x35\x6e\x44\xa4\xb4\xb8\xe2\x8d\x1b\xd1\xb8\x11\x3d\x5f\x97\x1a\x37\x22\x52\x5a\xec\x4a\x63\x30\x22\xc5\x6c\xa5\x71\x23\x1a\x37\x22\x9b\x34\x7a\xe3\x46\x44\x4a\x8b\xdb\xdd\x4c\xa8\x9b\x09\x75\xcf\x30\xd3\x4c\xa8\x23\xc5\xa4\xa6\xf1\x36\x1a\x8b\xd4\xd3\xde\xb0\xa8\xa4\xb4\x7c\x80\x6f\xbc\x8d\xc6\xdb\xe8\x31\xef\x4d\x17\x6f\x26\xd4\xd9\xce\xd1\x9b\xce\x1b\x29\xcd\xcb\xd2\x77\x9b\xae\xd5\xd3\xc7\xb1\xad\xa4\x98\x36\x35\x5d\xab\xe9\x0c\xd9\xd0\xd1\x9b\xce\xd0\xf2\x95\xab\xbc\x64\xd8\x67\xae\x48\x69\xc5\x65\xca\xf0\x7e\x00\xd0\xa4\xe9\x33\x91\xd2\xe2\xb1\x37\x7d\xa6\xc5\x9d\x29\xaf\x38\xc1\x8d\x3b\x13\x29\xad\xfc\x0d\x1f\xcd\x1b\x6f\xa7\x65\xde\x5d\x5e\xf1\xa7\x9a\x79\x77\xa4\xb4\x38\xf9\x8d\xb7\xd3\x20\x7c\xaf\x7c\x6d\x68\x3a\x68\xa4\x98\xf2\x35\x3e\x4b\xa4\x94\x57\xbe\x69\x37\x3e\x4b\xa4\x98\xf2\x35\xdd\x38\x72\x5f\x96\xe2\xe8\xc7\x91\x62\xca\xd7\xf8\x2c\x0d\xd8\xf7\xca\x47\x09\x88\x30\x29\x2d\x0d\xfe\xd4\xb5\xcf\xdd\x43\x63\x88\x4f\x5d\x3b\x52\x5a\x95\xd4\x24\x29\x69\x4c\xe7\xa9\x6b\x47\x8a\x09\xe4\xa9\x6b\x9f\xe9\xda\x25\x9b\x45\xfa\xa9\x6b\x47\x8a\x09\xe4\xa9\x6b\x9f\x87\x22\xc4\xaf\x3b\x4d\xe3\x23\xa5\x55\x49\x97\x24\x45\x88\x2b\x86\x69\xee\x67\xa6\xf1\x2d\x55\x79\x9a\xc6\x9f\x4d\x11\xe2\xcf\x9c\x7c\x86\x48\x69\x59\x45\x38\xf9\x0c\x67\x26\x2f\xf7\x5c\x2b\x69\x9e\xd0\x14\xc1\x03\x14\x21\x6b\xec\xb7\xef\x9f\xb4\x29\x6d\xe6\xb2\xd4\x9b\xd9\xfe\x79\x2a\x69\x1c\xa6\xd3\x6c\x3f\x52\x5a\x66\x2a\x27\x7b\x12\x29\x2d\x83\xf7\x69\x8e\x13\x29\xb7\xc7\x9d\x34\xd9\x8d\x53\xd2\xf2\xe6\x4f\x3e\x49\xe4\xbe\x2c\x25\x35\xdb\x8f\x94\xa0\x03\xfd\xe4\xa7\x9c\x0f\xf0\x1c\x6f\x03\xe5\x4d\x4a\xf3\xe6\xf9\x29\xe7\x5f\x91\xe4\x64\x84\x3d\x39\xbb\x9f\xc6\xe8\xc2\xc1\xfb\x19\x07\x24\xd8\x41\x3f\x39\x20\x67\x1c\x10\x38\x73\x3f\x39\x20\x91\xd2\x36\xbf\x94\xdf\x01\xf5\x4d\x77\x3f\x39\x20\x67\x1c\x90\xb6\xf9\xa5\xea\x8d\xcb\x50\x4a\xfa\xe7\xc9\x65\x88\x94\xa6\x09\xb2\x27\x91\xd2\x32\xee\x9f\x5c\x86\x48\x81\x09\xf7\x93\xcb\x70\x66\xe0\x6f\xbb\x9b\x69\x95\x31\x31\x38\xe1\x0e\x69\x27\xd9\xe8\xd0\x21\xed\x1d\xd2\xde\xd2\x4e\x21\xed\xfd\xd2\x8c\x42\xed\x76\x4c\x3b\x29\x61\x22\x3a\xa6\xbd\x87\x63\x2f\xb0\xdd\x7e\x71\x3d\x2f\xcd\x28\x43\xfc\xa5\x19\x5d\xda\x47\xf0\xdb\x8e\x6a\x27\xa5\x1d\x92\x3c\x54\xfb\x88\xe5\xbf\xb4\x8f\x4b\xfb\x08\x7f\xdb\x2f\xed\xe3\xf2\xe2\xe3\x1c\x5c\x5e\xfc\x95\x39\x30\x00\xb7\x5f\xe6\xc0\xe8\xf7\x90\x18\x1d\xfd\xde\xd1\xef\xc1\x2e\x3a\xfa\xbd\x87\x7e\x2f\x25\x3b\x5c\x3a\xfc\x9d\x14\x5f\x2b\xe0\xef\x3d\xf8\x7b\x81\xcd\x76\xfc\x3b\x29\xbe\x56\xe0\xdf\x7b\xf8\xf7\x82\x9b\xed\x00\x78\x52\x7c\xad\x00\xc0\x93\xd2\xf2\x9d\x13\x00\x4f\x4a\x29\xb2\x6b\xf0\x42\xc0\xb7\xcc\x60\x10\xf0\xfd\xd2\x4c\x8b\x22\x68\xa6\x17\x7e\xb2\xb8\x4e\x93\xb9\x9e\x17\x1f\x77\x17\x59\xde\xaf\xf7\x43\x96\x27\x27\x06\x92\xcb\x08\x51\x33\x40\x82\xbf\x3b\xf8\xdb\xe7\x0f\xf0\x77\xbf\x8c\x10\xf6\x4d\xa0\xbf\x49\x09\x77\xd2\xd1\xdf\xfd\x32\x04\x54\xcd\xcd\x10\x00\xff\xf6\xf9\x03\xfe\x4d\x0a\xc4\xa7\xe3\xbf\x7b\x98\xef\xd2\x32\xfd\xb9\x4c\x78\xc3\x7f\x17\x8c\x4f\x07\x80\x93\xe2\x93\x08\x00\x9c\x14\x9f\x3f\x00\xe0\xa4\x60\x75\x3a\x02\xbc\x5f\x46\x85\x18\x9a\xcb\xa8\x70\x65\xbe\x89\xdf\xe9\xd7\xf7\x79\x68\x5a\x4d\x26\x1d\x10\xf0\x1e\xec\xbb\xf8\xfc\xd1\xcd\x37\xbb\x81\xc2\x4e\x07\x0c\x38\x29\x2d\x35\x8e\x01\xef\xdd\x40\x11\x52\xa6\x83\xc0\x49\xf1\x95\x04\x04\xde\xbb\x81\xa2\xe6\x6b\x0a\x0a\x9c\x94\x16\x13\x85\x02\x27\xa5\xc5\xab\x40\x81\x93\x52\x6a\xba\x2e\x0c\xbc\xc3\xc0\xdb\xdf\xf2\xc5\x1c\x25\xde\xbb\xa1\x25\x80\x4a\x87\x89\x93\xd2\x32\xb1\xe8\x5c\xc4\x87\xe3\xb6\x11\x02\xc8\xdd\x83\x62\x17\x3c\x42\xef\x8c\x75\xa4\xf8\x9a\xd3\xd9\xea\xce\x30\x07\x35\xe8\x90\xeb\xde\x59\xe1\xaa\xc2\x74\x8c\xae\x79\x67\x03\x78\x07\x37\x77\x70\xb3\xaf\x3e\xe0\xe6\xde\x59\x61\xdb\x08\xd0\xcd\xa4\xb4\x34\x6e\x74\x73\x0f\xd1\x5c\x6c\x43\xee\xdd\xe7\x4f\x78\x73\x40\xa5\x0e\x6f\xee\x0f\x7f\x9c\xed\xc4\x1d\x80\xdc\xc3\x11\x17\xfb\x76\x3b\x90\x98\x94\xd6\x5d\xa6\xe6\x74\xb3\xec\xac\xed\x48\x62\x52\x02\x39\xf5\xce\x85\x0b\x23\x5c\x6c\x4c\xed\x20\x61\x52\x7c\xa5\x02\x09\xf7\x87\xf5\xb5\xf2\x0e\xf6\xed\xfd\xfd\x1c\x49\x70\xf7\x46\x38\x2e\x29\xad\x4b\xf2\x04\x5e\x55\x36\xf4\x75\x0c\x6d\xef\xcf\x69\x06\xa9\x74\x2c\x2c\x29\x2d\xf5\x3b\x38\x3d\x43\x5b\xb6\xd2\x0c\x86\x25\xa5\x65\x30\x04\xc3\xf6\x87\x69\xb5\x8d\x09\xd4\xda\x87\x86\x63\x77\x0f\xec\xb4\x8f\xf3\x39\xbe\xe0\xae\x74\x60\x68\x1f\x5e\xbf\x5d\x11\x00\xcf\x0e\xf0\x6c\x7e\xca\x16\x0f\xb6\xd8\x66\x01\x84\x27\x29\x61\xba\x3a\xc2\xb3\x0f\xb6\xd8\x66\x81\xc1\x16\x47\x4a\xa0\xae\x3e\xd8\xe2\x20\x9e\xe5\x59\xca\xc7\x78\x76\x8c\xe7\xf9\x92\xe4\xa1\x99\x0e\x3c\x4b\xe8\x58\x4d\x52\xce\x4c\x4b\x06\xc3\x3b\xb4\x4c\xeb\xb4\x60\xcd\x3e\x34\x1c\xcb\xbe\x70\xca\x3e\xb4\x08\x8b\x7f\x50\x48\x52\xce\x97\x24\x95\xee\x55\x5b\x57\xc2\x42\xf6\xe1\x55\x5b\xbf\x80\x39\x92\x72\x66\x9a\x33\xbc\xea\xc1\x16\xfb\xe6\x8e\x73\x24\x25\xb4\x5a\xc7\x39\xf6\xc1\x16\xfb\x72\x0e\x74\x24\xe5\x8c\xf3\x02\x74\xec\x83\x91\x3d\xe2\x48\x20\x1d\x49\x39\xbd\x41\x6d\x09\xe9\xe8\xfb\x29\xd2\xb1\x0f\xae\xf7\xe1\xa5\x72\xbd\x23\xe5\xcc\xf4\x65\x30\xb2\x43\x2b\xf4\x65\x1b\xeb\xd8\xa7\xb6\xe4\xfb\x34\x1a\xb1\x4f\x6d\xc9\x27\x4f\x38\x62\x87\x23\x9e\x45\x92\xcb\x38\x26\xbe\xd7\xe1\x11\x49\x39\xb3\xe2\x80\x47\xec\x93\x7f\xeb\xe3\x1c\x20\xb1\xcf\x38\x26\x67\x91\x94\xd2\x4f\x8e\x89\x45\x40\x44\x22\x29\x67\x91\xe4\xa1\xa7\xd2\x5f\x49\xda\x25\xc9\x47\x3c\x52\x48\x22\x29\x67\xaa\x12\x92\xd8\xa7\x96\xef\xfb\x17\xda\x90\x94\x33\xa6\x05\x6d\xd8\xa7\x96\xef\x43\xd1\xd4\xf2\xa7\x96\x9f\x19\xc5\xd4\xf2\xa7\x96\xef\x73\xcf\xd4\xf2\xa7\x96\x9f\x19\xc5\xd4\xf2\x27\x2f\xc4\x07\x9a\xc9\x0b\x99\x5a\x7e\x86\x5c\x3c\x23\x29\x67\x6c\xd7\xe4\x85\x4c\xad\xdc\x17\x0a\x8c\x23\x29\x67\x3c\xc1\x69\xd2\x3b\xd9\x5f\xb3\x6f\x90\x23\x29\x67\x95\x24\xbb\xec\xaf\xf9\xf2\x64\x7f\x51\x8e\x67\x1c\x46\x94\x63\x9f\xbc\x60\x33\x57\x00\x23\x29\x67\x06\x70\x00\x23\x29\xa7\x76\xc4\x0b\x9e\xbc\x60\x73\x38\x04\x23\x29\x67\x4c\x2d\x82\x91\x94\x67\x0e\x07\x61\x24\xe5\xcc\x5c\x64\x32\xe6\x53\xd7\x35\x87\x43\x27\x12\x1b\x84\xd0\x89\x7d\x69\x93\x99\x9d\x2c\x6d\x72\x69\x93\x66\x4e\xf0\x44\x52\x82\x81\x76\x78\x62\x5f\x9c\x65\x33\x27\x7c\x22\x29\x67\x3a\x02\x3e\xb1\x2f\x6d\xf2\x9e\xff\xfc\xe6\x00\x8e\x4c\x24\x25\x34\x69\x47\x26\x92\x72\xc6\x94\x22\x13\xc9\x7d\xe3\x3c\x5f\x93\x0d\x8e\x58\xac\x77\x2c\x4b\xa6\x38\xc4\x67\x06\x02\x44\xec\x01\x11\xcb\x19\x53\x0a\x44\xec\x40\xc4\xc0\xa3\x1d\x88\xd8\x97\x56\x1c\x02\xbb\x23\x11\x49\x09\x17\xda\x91\x88\x7d\x69\xc5\x41\xb0\x3b\x14\x91\x94\x33\x1e\x08\x14\xb1\x2f\xad\xd8\x7c\x03\x8b\x48\xca\xf9\x24\x79\xa8\x56\x9c\xe9\x06\x16\x91\x94\xc7\xf5\x07\x23\x76\x30\xa2\xa5\x18\x30\x62\x5f\x1a\xbb\xe9\x00\x1a\xb1\xa3\x11\xad\xb1\xa0\x11\xfb\x7a\x1a\x7b\xdc\xeb\xa5\xb1\x2f\x8d\xdd\x03\x34\xf6\xf5\x9c\x62\x92\x15\x02\x3c\x62\x5f\x4f\xfb\x8c\x37\xb9\xb4\xcf\xa5\x7d\x7a\xe8\x7c\x7e\xaa\x7d\xe6\x13\xf6\xd2\x3e\x97\xf6\x99\xd9\xfe\xd2\x3e\xd7\xd3\x3e\xe3\x30\xc1\x1b\xfb\x32\x8e\xb4\x7c\x43\xc2\x37\xf6\x65\x1c\x31\xca\x01\x1c\xfb\xfa\x28\x57\x9e\xc0\xa7\x5f\xc6\x91\x33\xe3\x08\xc2\x91\x94\xc0\xab\x1d\xe1\xd8\x97\x71\x84\xd9\x84\x38\x92\x12\x7a\xb5\x43\x1c\xfb\x32\x8e\xb0\x91\x18\x47\x52\xac\xdd\x60\x1c\x49\xb1\x4e\x03\x62\x24\xe5\x31\x30\x28\xc6\x8e\x62\x3c\xd5\xa5\x71\x64\x71\xd6\x19\x98\xc5\x59\x8f\x94\x33\xd6\x1b\xd9\xd8\x91\x8d\x96\x6e\x90\x8d\xfd\xcd\xc1\xd1\xd7\xa1\x8d\xa4\x9c\x59\x46\x81\x36\xf6\xf7\xfe\x9c\x13\xb3\x25\xad\x4b\x4b\x41\x4f\xbf\x4c\x41\xdf\x9c\x75\x9d\x0d\x02\x49\xca\x19\x47\x0b\x02\x49\xca\x99\xe9\xc6\x9b\xb3\xfe\xe6\xac\x9f\xbb\x34\xf9\x38\xe4\x63\x4f\x92\x7c\xf8\x1e\xa4\x67\xe1\x22\x49\xb1\xac\x84\x8b\xec\x6f\xe3\x65\xb8\xec\x0e\x8c\xec\x6f\xb6\x29\xcd\xed\xcd\x36\xbd\xd9\xa6\x40\xd1\x1d\x19\x49\x4a\x58\xdd\x8e\x8c\xec\x6f\xb6\x49\xc3\x87\x46\x92\x12\x58\xb7\x43\x23\xfb\x9b\x6d\xd2\x7a\xdf\x8c\xcf\x9b\xf1\xc9\x84\x06\x2e\x49\xca\x99\xc9\xcb\x9b\xf1\x79\x33\x3e\xde\x3c\x84\xb2\x07\x9b\x2c\x96\xb7\xde\x26\xf2\x6f\xe3\xa5\x37\x8f\x8e\x24\xc5\xf2\x16\x3a\xb2\xbf\x59\x9a\xe7\xfd\xb1\x34\x6f\x96\x26\x63\xe3\x9b\xa5\x79\x9b\x62\x3c\x6f\x81\xbd\x78\xb3\x17\x99\x9d\xbc\xd9\x8b\x37\x7b\xf1\x3c\x81\xbd\x88\x14\x8b\x65\xef\xfe\xdc\x4d\xde\x3c\x81\xbd\x00\x60\x9e\x19\x69\x01\x98\xfd\xcd\x5e\x9c\xf1\xec\x11\x98\xa4\x84\x55\xee\x08\xcc\xfe\x36\x38\x5a\x7a\x03\x57\x92\x72\x66\x86\x01\xae\xec\x6f\x83\xa3\xa5\x37\x74\x25\x29\x67\x66\x18\xe8\x4a\xf2\xd7\x67\x1a\x1c\xdf\x8c\xcf\x95\x41\x1a\x5e\x49\xca\x99\x99\x03\xbc\x92\xdc\x97\xa5\x42\x18\x9f\x37\xe3\x23\x6b\x8c\xcf\x9b\xf1\xb1\x68\x07\xb0\x24\xe5\xcc\x2c\xe1\xcd\xaf\x7d\x2f\x0f\x8d\x2f\xf6\xb6\x0e\x14\x29\x67\xf7\x4b\x0f\x7d\x4e\x35\x8a\x93\x05\xb1\xec\x6f\xdf\xb4\xaf\x0c\x8f\x6f\xdf\xb4\x31\x96\x4f\xe1\x7d\xd3\x7e\xb3\x6e\xd6\xf6\x40\x96\xfd\x6d\xf6\x13\x0c\xbb\x43\x2a\xfb\xfb\xfb\x9c\x46\x94\x42\xf8\x5a\x1c\x29\x57\x26\x13\x30\xcb\xfe\xe6\x9e\x5e\xf9\x8a\x03\xaa\x24\xe5\xca\x64\x02\x54\xd9\x3f\x6c\xc8\x15\x4f\x00\x55\x49\xca\x15\x33\x8b\xaa\xec\x1f\x36\xe4\x6a\xfd\xb7\xc7\x6e\xd4\x25\x29\x57\x56\x4a\x50\x97\xfd\xc3\xc4\x84\x79\xee\xb0\x4b\x52\xae\x4c\x49\x60\x97\xa4\x58\x6d\x85\x5d\x92\xfb\x97\x29\x0d\x13\x13\x79\x9a\xc1\x87\x89\x41\x67\x96\x2b\x7d\x16\x9d\x49\x9e\x66\x80\xce\xec\xe8\xcc\x12\x5e\xba\xa3\x33\xc9\xd3\x0c\xd0\x99\xfd\xc3\xc4\x58\x5e\xfb\x30\x31\x91\x72\xc5\xf3\xfb\x30\x31\x1f\x26\xc6\xf2\xda\x87\x89\x89\x94\xd0\xf9\xfd\xc3\xc4\x60\x3d\xcb\x95\xd6\x8d\xf5\x24\xe5\xca\xb4\xe2\xc3\x9e\x7c\xd8\x93\xee\x25\xb1\x27\x91\x72\xc5\x8f\xfc\xf0\xbf\x3f\x3e\x1c\x77\x2f\xc9\xc7\x88\x48\xb9\x8a\x07\x28\x29\xb3\x63\x15\x0e\x4c\xda\xc1\xa4\x5a\x32\x98\xb4\x83\x49\x4b\x57\x2c\x66\x07\x4c\x7a\x65\x9a\x05\x26\xed\x60\xd2\x62\xc9\x0d\x4c\x4a\x9e\x06\x0f\x26\xed\x1f\x0e\x4e\xf7\x04\x0e\x0e\x98\xf4\xca\x28\x0a\x26\x25\xe5\x8a\x8f\x0b\x26\x25\xa5\xf4\x78\xaa\x60\x52\x52\x2c\xa0\x83\x49\xc9\x7d\x59\x0a\x6f\x6a\x1b\x29\xd7\xf3\x4b\x85\x67\xd7\x7a\xe6\x06\x60\x52\x52\x2e\xbf\xe4\xf4\xa3\x44\x4b\x98\xf1\x8e\x12\xed\x28\xd1\xd2\x33\x08\xa1\x44\x49\xb9\xdc\x8d\x3d\x41\x89\x16\x4b\x7f\x28\x51\x52\xae\xcc\x3e\x3e\x8c\x07\x86\xb3\xf4\xb8\x55\x20\xce\x0e\xc5\x2c\x3d\x43\x30\x14\xb3\x87\xaf\x2c\x57\x1c\x86\x0f\x67\x06\x6b\x59\x2c\xb9\x61\x2d\x49\xc9\x39\x0f\x1d\x6b\xd9\xb1\x96\xa5\x67\xf5\x1d\x6b\x49\xca\x95\xa9\x06\xd6\xb2\x63\x2d\x4b\xd7\xa2\x39\x33\x58\x4b\xd6\x09\x6b\xd9\x3f\x3c\x97\x1e\xab\xfb\xe1\xb9\x44\xca\x95\xe9\xc7\x87\xd5\xf9\x98\x28\xf7\x98\xd3\x0f\xb3\x13\x29\xf6\x31\x7c\x38\x38\x30\xcd\xd2\x63\x4e\x61\x9a\x3d\x68\x66\xb9\x32\xd9\xf8\xf2\x66\xbe\xb1\x44\xf5\x95\xa6\xfa\x65\x89\xbe\x2c\x51\x26\x1b\x5f\x96\xe8\x1b\x4b\x54\x03\x60\xf7\x2f\x53\xf3\x65\x6a\x36\x49\x29\xe9\x37\xa6\xa6\x5a\x48\xfc\x32\x35\x40\x50\xdb\x1d\x70\xa0\xa4\xd8\xda\xf0\x65\x6a\x22\xa5\xbe\xe2\x17\x7e\x99\x9a\x2f\x53\xb3\xb9\x99\x7c\xc4\xd4\xd4\x57\x71\xb7\x53\x9a\xc2\xf7\x24\x5d\x92\xde\x2e\xcb\x13\x98\x1a\xa0\xa9\x5d\x11\x40\xd3\x0e\x34\xad\xaf\x34\x2e\xa0\x29\x29\xb6\x3b\x00\x4d\x3b\x82\xb4\xbe\xd2\x42\x10\xa4\xa4\xd8\xee\x80\x20\xed\xa1\x41\xef\xcb\x92\x5f\xde\x0c\x34\xd4\x76\x07\x68\x28\x29\x57\xda\x38\x34\x94\x94\xfa\x52\x95\xac\x0f\x34\xd4\x0e\x08\x68\x28\xb9\x2f\x93\xa6\xf0\x99\x71\x5d\x99\xe9\x7c\xcd\xb8\xa0\xa1\xf5\xa5\x7a\xd1\x2f\xc1\x41\x8b\x8d\x12\x5f\x0b\x1a\xd0\xd0\xfa\x52\x6f\x8c\x14\x34\xb4\x5a\xb1\x84\x86\x76\x68\x68\xb5\x52\x08\x0d\xed\xd0\xd0\x2b\x5e\x20\x34\xb4\x43\x43\xab\x45\x3b\x68\x28\x29\x57\xbc\x40\x68\x68\x87\x86\xd6\x57\x5c\x2d\x68\x28\x29\x57\xb6\x9d\x41\x43\x3b\x34\xb4\x5a\xc8\x83\x86\x92\x72\xa5\x3b\x43\x43\xc9\x33\x28\x43\x43\x49\xa9\xaf\x0c\x46\xd0\x50\x52\x2e\x25\x60\x56\xa0\xa1\xd5\xa2\x1d\x34\x94\x94\x9c\x46\xd2\xa1\xa1\x1d\x1a\x5a\x5f\xb7\x21\x18\xd0\x50\x12\x1c\x75\x40\x43\xc7\x4b\xd3\xba\x07\xfd\x11\x4c\xf4\x96\x27\x1b\xbf\x7d\x10\xda\x40\x8e\x92\x72\xdd\xd3\xa0\x81\x1c\x25\xa5\xbe\xee\x41\x6e\x04\x23\xbd\x65\xe6\xb2\xe4\x28\x0b\xa6\xe3\xf5\xb4\xbc\x9e\x9f\x9e\xf2\xa4\xe5\xdd\x93\x99\x81\x1c\x25\xe5\xba\xdf\xd0\x40\x8e\x92\xfb\x97\x2d\x69\xf2\xa1\xe5\xb5\x94\xe6\x94\x8f\xa7\xe5\x75\x77\x93\x0f\x2d\xef\x4c\xd6\xd2\xf2\xc6\xeb\x69\x79\xdd\x13\xa6\xb4\x64\xf7\x4c\x76\xcf\x27\xbb\xcb\xd1\x78\x7e\xfa\x96\xf6\xce\x65\xdb\x9d\x74\x29\x81\x11\x53\x45\x5f\x4a\x90\x11\xb3\xe6\x0c\xea\x01\x30\x25\xe5\x3a\x53\x82\x4b\x76\x2f\x87\xe3\xbd\xdc\x4d\xde\x8c\x98\x67\x4a\x90\x11\x73\x00\x4c\x6b\x0e\xa6\x1e\x00\x53\x52\x72\xf2\xcb\x00\x98\x12\x4e\xd0\x00\x98\x92\x52\x73\x4e\xf4\x00\x98\x8e\x40\xa5\x9c\xa0\xf1\xea\x9e\xa9\xeb\x94\x92\x22\x0c\x0f\xd0\x75\x2e\x49\x1e\xa0\x4f\x64\xf5\x75\x20\x47\x49\xb9\xae\x64\x6d\xc8\xae\x53\xb8\xb2\x88\x3a\x60\xa2\x03\x26\x5a\xcb\x96\x8c\x4c\x2f\x46\x33\xbe\x52\xd2\x34\xe3\x01\x13\xad\x59\xf7\x1c\x30\xd1\x01\x13\xad\x59\xaa\x1c\x30\xd1\x01\x13\xad\x39\x46\x76\xc0\x44\x07\x4c\xf4\xba\x52\x23\x1f\x97\x7d\x14\xff\xcc\x6b\xf8\x28\xbe\xe1\x51\x4b\xfd\x78\x0d\x1f\xe5\xf2\x52\x3f\xca\x65\x78\xd4\x52\x3f\xca\x95\xf5\xbb\x5a\xbc\xc1\x8f\x56\x93\xf3\x9b\x73\x42\xce\x08\x32\xfa\xfb\x01\x13\xad\xc5\x1b\xfc\xca\x9b\x51\xb4\xe7\x01\x5f\x79\xcb\x27\x81\x9c\x9a\x33\x60\xa2\xa4\xd4\xa2\x13\x7f\x65\xd7\xc0\xda\x53\x97\x5f\xd9\xfd\xaa\xcb\xcb\xdd\xd4\x65\x76\xa7\x5e\xba\xc7\x57\x09\xbe\x5a\xaf\x37\xf8\xd5\x7a\x33\xd8\xe6\x10\x9e\x81\x26\x1d\x68\xd2\xeb\x9e\x6b\x0c\x34\xe9\x40\x93\xd6\x1c\x30\x3a\xd0\xa4\x84\xdf\x39\xe0\xa2\x03\x2e\x5a\xb3\xb0\x3a\xe0\xa2\x84\xdf\x39\xe0\xa2\x03\x2e\x5a\x73\x78\xe8\x80\x8b\x12\x7e\xe7\x80\x8b\x92\xd2\x6f\x4f\x7f\xc0\x45\x49\xa9\xc1\xf3\x07\x5c\x74\xc0\x45\xfb\x3d\xbe\x0f\xb8\xe8\x80\x8b\xd6\x2a\x6f\x2c\x1d\x5c\xb4\xbf\x52\x02\x96\x0e\x2e\x5a\xb3\xe6\x3b\xe0\xa2\xa4\x64\x2f\xd9\x80\x8b\x0e\xb8\x68\xad\xaf\x54\x48\x53\xaa\x0c\xa2\x71\x6c\x07\x5c\x74\x40\x43\x6b\x58\xfc\x81\x0d\x1d\x85\x91\xca\x3a\xf0\x28\x8c\x14\x10\xb4\x3f\x97\xc9\xef\xe9\x09\x55\x9a\x27\x9c\x9e\x90\x62\x9d\xcf\x13\x14\xab\xa6\x92\x98\x1a\x20\x68\xce\x42\x1a\x40\xd0\x81\xf0\xac\x81\xe5\x07\xc2\x73\x20\x3c\x6b\xce\xff\x1b\x08\xcf\x81\xf0\xec\x25\x97\xe9\xcf\x91\x52\x73\xa0\xdd\x08\xee\x79\x8b\x1a\x49\xe9\x87\x1a\xd1\xed\xeb\x91\xcc\xe9\xf6\x08\xcf\x78\xe2\x03\xe1\x49\xee\xcb\x52\xe7\xd9\x56\x4a\x78\xe2\x03\xe1\x39\x10\x9e\xb5\x66\x10\x42\x78\x12\x9e\xf8\x40\x78\x92\xd2\x6b\xb2\x36\x65\xcd\x88\x19\x86\x7c\x20\x3c\x49\xe9\x31\x35\x08\x4f\x72\x5f\x26\xed\x94\x96\xb7\x50\x53\x6f\x4c\x0d\x9a\xb3\xd6\x96\x34\xa6\x06\xce\xd9\x55\xe5\x52\xbd\xcb\x43\x33\x2e\xc0\x39\x49\xe9\x35\x05\x5d\x1e\xca\x48\xe5\xd4\xb7\x81\xd3\x1c\xe5\x39\xd1\x33\x06\x0e\xa7\x39\xc2\x66\x9a\x4c\x8c\xf2\x96\x11\xb6\xac\xea\x46\x6c\x59\x79\x0e\xdd\x4c\x7f\xc6\x69\x0e\x9c\x66\x0d\xe3\x3d\x70\x9a\xa4\xf4\xed\xb7\x4f\x67\x19\x30\xce\x01\xe3\xac\x59\xba\x1d\x30\x4e\x52\xfa\xed\x6e\x0f\x18\xe7\x80\x71\xd6\x1c\x6e\x34\x60\x9c\xa4\xf4\xcd\xf3\xf3\xce\x21\x9b\x35\x2b\xbc\x03\xb3\x49\x4a\xdf\xf2\x00\x1d\x19\xb3\x59\x73\x96\xcf\xc0\x6c\x92\x92\x4d\x96\x03\xb3\x49\xee\xcb\x7a\xd2\x4e\x69\xa9\xb0\xdb\x95\x1c\x55\x7f\x87\x76\xd6\x1c\xf9\x33\xa0\x9d\xa4\xf4\x8c\x1b\xc1\x3c\x6f\xf1\xd0\x3d\x3f\xd5\xdf\xa1\x9d\x5d\x3e\xf4\x77\x68\x67\xcd\x79\x39\x03\xda\x49\x4a\x97\x0f\xfd\x1d\xda\x59\x73\x84\xcd\x80\x76\x92\xd2\xe5\x83\x9f\x02\xed\xac\x39\xd8\x65\x40\x3b\x49\xe9\x7b\x49\x92\x87\xea\xdb\x39\xb7\x63\x60\x36\x47\x38\xcd\xd2\xf7\x3c\xe0\x72\xb7\xeb\xb9\x5b\x32\xc2\x8d\xc0\x6c\x66\xea\x39\x30\x9b\x03\xb3\x59\xb7\xb8\x38\x98\xcd\x51\x73\xf8\x6f\x57\xf8\x1c\xfe\x3b\x30\x9b\x35\x0b\xe3\x03\xb3\x49\x4a\xce\xfc\x1a\x98\x4d\x52\xb2\x11\x75\x60\x36\xc9\xfd\xcb\x54\x2f\x37\x02\xb3\xd9\xd5\x47\x97\x8f\xee\xfd\xc5\x29\xc1\x6c\x92\xd2\x8f\x34\x9a\x2e\x6b\xfd\x39\x21\x35\xa5\xea\x53\x5a\xb2\x1b\x4b\x54\xfb\x93\xdd\x8c\x5f\x21\xc6\x47\x38\xcf\x47\xcc\x94\x07\xda\x93\x94\x7e\xa4\xa0\xc3\x9b\xe7\xe2\x67\x69\x7f\xd4\x21\xbb\xec\xda\x91\x12\xb0\x6b\x95\x5d\xcb\xd2\xfe\xa8\xec\x5a\x65\xd7\x62\xc3\x2a\xbb\x86\x1d\xad\x21\xc6\x07\x76\x94\x94\xec\xa5\x1d\x95\x75\xaa\xac\x53\x80\xee\x51\x59\x27\x88\x69\xd7\x18\x58\x27\x38\x69\xcd\xde\x81\x01\x27\x25\xa5\x6b\x0c\xcc\x0e\x9c\xb4\xe6\x44\x8e\x01\x27\x1d\x70\xd2\x9a\x83\x1f\x06\x9c\x94\x94\xde\x24\xf9\x29\xa7\x67\xd7\x4f\x39\x3d\x70\xd2\xde\x24\xc9\x08\xa7\x67\xd7\xb3\x38\x3d\x78\xd1\x1e\x03\x8b\x17\x1d\xd8\xd0\xba\xeb\x0b\x2c\x11\x12\xb4\x86\xc8\x1f\x48\x50\x52\x7a\x8c\xee\xc6\xd4\x6c\x4c\x4d\xf6\x09\x8c\x8d\xa9\xd9\x98\x9a\x18\xdd\x8d\xa9\x01\x8c\xd6\x40\xde\x03\x30\x4a\x4a\xce\x8a\x1b\x80\xd1\x01\x18\xad\x09\x26\x30\x00\xa3\xa4\xf4\x4c\x14\x00\xa3\x63\x63\x6a\xf6\xb8\x7c\x1b\x53\xb3\x31\x35\xe9\x45\x1b\x53\x83\x0e\xad\x61\x9a\x07\x3a\x94\x94\x9e\x5e\xb4\xb1\x21\xe8\xd0\x1a\xd2\x77\xa0\x43\x89\x2f\x33\x03\x1d\x3a\xd0\xa1\x35\xa0\xed\x40\x87\x92\xd2\xd3\xd9\x36\x36\x04\x1d\x5a\x83\xcb\x0e\x74\x28\x29\x5d\x3e\x98\x15\x28\x68\xdd\xe3\x1a\x42\x41\x49\xe9\xa7\x24\x0f\x65\x43\xc2\x9f\x0e\xf0\xe6\xc0\x56\xd6\x40\x9e\x03\x5b\x39\xb0\x95\x35\x10\xdf\xc0\x56\x0e\x6c\x65\xcf\x68\x85\xad\x1c\xd8\xca\x7a\x64\x14\xc0\x56\x92\xd2\xd3\xed\xb1\x95\x63\xcb\x16\xcf\x1a\xce\x79\x04\xb4\xbc\x45\x51\xf3\x1a\x74\x1a\x6c\x65\x0d\x77\x37\xb0\x95\xa4\xf4\x4c\x3c\xb0\x95\x03\x5b\x59\x73\x22\xfd\xc0\x56\x92\xd2\x55\xb9\xee\x86\xad\xcc\x57\xae\x81\xad\x24\xa5\x86\x94\x1b\xd8\xca\x01\x9a\xec\xe9\xf6\xa0\x49\x72\x5f\x26\xcd\x9b\x09\x15\x92\xf3\x04\xc7\x36\x65\x77\xca\xee\x9e\x52\x4d\xd9\x9d\xb2\x2b\x6b\x4f\x76\x55\x65\x8c\x2f\xb6\x92\xe4\x34\xa7\x81\xad\x1c\xa0\xc9\x1e\xef\x19\x34\x39\x40\x93\xf5\x48\x8f\x01\x4d\x0e\xd0\x64\xef\xbf\xbd\x61\x6d\x60\x2a\xc7\xae\xfd\x04\xb6\x1b\xbb\xf6\x83\xa9\xcc\x51\x85\x03\x53\x49\x4a\xef\xae\xda\x25\xa9\xad\x98\x61\x4c\x25\xa9\xaf\x38\xd7\xbb\x26\xb5\x9b\x3e\x07\xac\x1b\xbb\xe9\x73\xa4\xbe\xe2\x5c\xef\x1c\xd8\xdd\xf4\x39\xb0\xdd\xd8\x4d\x9f\x23\xf5\x15\xc7\x7f\x37\x7d\x46\x63\xd6\xe0\x71\x03\x8e\x39\x82\x63\xfa\x8a\x37\xe0\x98\x03\x8e\x59\x03\xb6\x0d\x38\x26\xf1\x15\x6f\xc0\x31\x07\x1c\xb3\x06\x6c\x1b\x70\x4c\x52\x5f\x31\x92\x70\xcc\x01\xc7\xac\xd9\x01\x33\xe0\x98\xa4\xbe\xe2\xf8\xc3\x31\x89\xef\x7f\x03\x8e\x49\x4a\x0d\x01\x36\xe0\x98\x23\x38\x66\x7d\x65\x2e\x00\xc7\x1c\xbb\xd1\xeb\x48\x8f\xdd\x8d\x5e\x91\x1a\xde\x60\xec\x46\xaf\xfd\xe9\x75\x99\x2c\xa2\x36\x47\x48\xcd\xfa\x8a\x03\xb7\xeb\x75\xfb\xd3\xeb\xd2\x77\x76\xbd\x2e\xe2\x0b\xe3\xd8\xf5\xba\xfd\x39\xd8\x3a\x7d\x07\xdc\x49\x7c\x61\x1c\xbb\x4e\xb1\x3f\xed\x33\xd3\x51\xbc\xe7\xc0\x7b\xd6\xe6\xcd\x18\x49\xf0\x9e\x35\x1b\x48\x06\xde\x73\xec\x1f\x99\x4b\x25\x99\x3e\xe3\x3d\x6b\x36\xb3\x0f\xbc\x27\xa9\xaf\xe7\x97\x32\xf7\x71\xce\x73\x2c\x07\xde\x73\x84\xf7\xac\xaf\xea\x97\xde\x8c\xe9\x73\xb6\xa4\x0f\xbc\x27\xa9\xaf\xea\x97\x2a\xce\xf4\x39\xdb\xcf\x07\xde\x93\xf8\xfc\x39\xf0\x9e\xa4\x06\xa7\x18\x78\x4f\x52\x6a\x76\x70\x0c\xbc\x27\xf1\x45\x74\xe0\x3d\xc9\x7d\x59\x5a\xb4\xe9\x73\xe0\xce\xfa\xca\xfc\x00\xdb\x39\x20\x98\x35\xfb\xca\x07\x04\x73\x04\xc1\xf4\xe1\x74\x40\x30\x07\x04\xb3\x06\x49\x1f\x10\x4c\x52\x73\x44\xe7\x80\x60\x8e\x63\x57\x47\xe9\xba\xe1\x31\x6f\x49\x1d\x6d\x25\x49\xa9\x23\x08\x66\xcd\x5e\xf0\x01\xc1\x24\x35\xa8\xc7\x80\x60\x92\x1a\xac\x63\x40\x30\xc9\xfd\xcb\xe4\xcd\xb8\x17\x04\xd3\xd7\xda\x01\xc1\x1c\x10\xcc\x9a\xdd\xdb\x03\x82\x39\x82\x5d\xd6\x57\x9c\xe2\xc3\x5c\x19\x82\x59\xb3\x19\x7a\x40\x30\x89\x4f\xae\x03\x82\x39\x20\x98\x35\x9b\xa1\x07\x04\x93\xd4\x1c\x3c\x3a\x20\x98\xe3\x78\x4e\x10\xcf\xc8\x0a\xc1\x24\xf5\xa5\x76\x19\xa9\x83\x91\xca\x7e\x90\x71\x30\x52\x07\xeb\x13\xf3\x8d\xca\x1c\x07\xeb\x93\xfd\x20\xe3\x60\x7d\x0e\xd6\x27\xde\xee\xc1\xfa\x80\x37\x6b\xf6\x0d\x0f\xf0\x26\xa9\x2f\xef\xca\xf4\x19\xbc\x59\x5b\x86\x6e\xf0\x26\xa9\xaf\x3d\xf9\x60\x7d\xc0\x9b\x35\xbb\x7b\x07\x78\x73\x80\x37\x6b\x8e\xe7\x1f\xe0\xcd\x11\x60\xb3\xbe\xbc\x66\x33\x6a\xf0\x66\xcd\x26\xc2\x01\xde\x24\x35\xa7\xa2\x0e\xf0\xe6\x38\x78\xa3\xd9\x44\x38\x0e\xde\x68\xa4\x06\x91\x19\xe0\xcd\x01\xb7\xac\xd9\xf5\x37\xe0\x96\xa4\xe6\x54\xd4\x01\xb7\x24\xf5\x15\x0b\x0d\xb7\x24\xa5\x66\x67\xdd\x80\x5b\x92\xfa\x8a\xf3\x0c\xb7\x24\xf7\x65\xc9\x9b\xe9\x73\xc4\x97\xf5\x01\xb7\x1c\x00\xc9\x9a\x9d\x75\x03\x20\x49\xea\x4b\x13\xe4\xc7\x02\x24\x6b\xb6\xaf\x0d\x80\x24\xa9\x2f\x4d\xd0\xf4\x19\xf9\x58\xb3\xbd\x6c\x20\x1f\xc7\x61\xfa\x9c\x0d\x21\xe3\x78\x3f\xd7\xb5\xfb\xa7\x19\x2a\x8e\xb7\xbc\xb1\x65\xa7\x97\xca\x96\x45\xea\x2b\x1e\x25\x40\x72\x00\x24\xeb\xa9\x92\xd8\x10\x80\x64\x3d\xb5\x4b\xd6\x21\x52\x5f\x19\x65\x00\x92\x03\x20\x59\xb3\x9d\x62\x00\x24\x47\x63\x09\xda\xdf\x30\x78\x37\x86\x02\x3f\x59\xb3\x61\x64\xe0\x27\x49\x0d\x8d\x34\xf0\x93\x03\x3f\x59\xb3\x3b\x64\xe0\x27\x49\xcd\x39\xb5\x03\x3f\x39\xf0\x93\x35\x7b\x37\x06\x7e\x92\xd4\x40\x4b\x03\x3f\x49\xac\x75\x0c\xfc\xe4\x00\x46\xd6\xec\xb6\x18\xc0\x48\x52\x5f\x71\x90\x81\x91\xa3\xb1\x00\x59\xe6\x1f\x8d\x05\x68\x2c\x40\xaa\xab\xb1\x00\xf8\xc9\x9a\xd5\xf8\x81\x9f\x1c\xf8\xc9\x9a\x45\xdf\x81\x9f\x1c\xcd\xb8\x1f\xa7\x19\x3f\x39\xf0\x93\x35\x2b\x90\x03\x3f\x49\xac\xa6\x0c\xfc\xe4\x68\x26\xb7\x59\x5a\x1c\xcd\xe4\xb6\x5d\xe9\xee\xf1\x86\x9b\xc9\x2d\x7e\xb2\x66\xcd\x70\xe0\x27\x49\x7d\xc5\x9e\xe0\x27\x49\x7d\xc5\x76\xe0\x27\xc9\xfd\xcb\x64\xd7\xb8\x1f\xb1\x36\x33\xf0\x93\xe4\xbe\xcc\xdd\x4e\x69\xe9\x17\x71\x55\xf1\x93\xa3\x71\x0f\xb2\xca\x37\x1a\xf7\xa0\xdd\x2e\xc1\xb3\x36\xd3\x4c\x64\x61\x96\x35\xcb\x77\x03\x66\x49\xea\x2b\x96\x08\x66\x39\x1a\xa3\x90\xe5\xbb\xd1\x18\x85\xc6\x28\x78\xf3\x8c\x02\x1a\xb3\xe6\xac\xfb\x81\xc6\x1c\x68\xcc\x9a\x55\xa2\x81\xc6\x24\x35\x41\x3c\x07\x1a\x73\xa0\x31\xab\xd5\x1c\x34\x26\xa9\xaf\xd8\x3a\x34\xe6\x40\x63\x56\x6b\x32\x68\xcc\x01\xb3\xac\x96\x08\x60\x96\xa3\xf1\x22\xe2\xfb\x36\x5e\x04\xcc\xb2\xfa\x84\x0d\xb3\x24\xcf\x72\x11\x8e\x72\xe0\x28\x6b\xf8\xe2\x81\xa3\x24\xcf\x72\x11\x8e\x72\xe0\x28\x6b\xf8\xe2\x81\xa3\x1c\x68\xc8\xea\x6b\x2f\x1a\x92\xd4\x97\x56\xfe\xf5\x6a\xf4\x63\xdf\x62\xd1\x90\xa4\x26\xc8\xe8\x40\x43\x0e\x34\x64\xed\xe5\x4a\xda\x21\x4d\x7e\xf7\x24\x35\x49\xc9\xaf\x4f\xa0\x68\x48\x52\x73\xcc\xf2\x40\x43\x0e\x34\x64\xf5\x21\x13\x0d\x49\x9e\xb5\x2c\x34\xe4\x38\x0d\xdf\x39\x4d\x7e\x9c\x86\xef\xc8\xb3\x96\x75\x9a\xb6\x82\x26\xab\x6f\x70\xa0\x49\xf2\xac\x65\x81\x26\x07\x68\xb2\xfa\x06\x07\x9a\x1c\xa7\x51\x3e\x83\x15\x68\x72\x80\x26\xab\x0f\x58\xa0\x49\xf2\x2c\x5c\x81\x26\xc7\x69\x94\xf7\x65\xea\x34\xca\x47\x6a\x79\x49\x52\x52\xb3\x13\x5f\xa6\xd0\x90\xe4\x59\xdf\x42\x43\x92\x9a\xd3\xa1\x07\x1a\x92\x94\xea\x5b\x12\x1a\x92\xd4\xf2\x72\x33\xf9\x60\x57\x7c\x4b\x82\x39\x0e\x4c\x63\xf5\xed\x04\xd3\x38\x30\x8d\xd5\x7c\x14\xd3\x38\xc2\x34\x3e\x2b\x68\x98\xc6\x81\x69\xac\x3d\xdf\x75\x30\x8d\xa4\x06\x73\x1c\x98\xc6\x71\xea\x82\x3d\x8d\xf0\xd4\x05\x23\x35\x91\x5c\x07\xa6\x91\xdc\x97\xa5\x5c\x26\xbc\x91\x1a\x1a\x72\x9c\x26\xbc\xd0\xc7\xda\x35\x11\xc3\x77\xa4\x96\x0c\xfc\xd0\x47\x52\x8b\x96\x6a\xf8\x86\x3e\x6e\xe6\x6b\xd0\x47\xf2\xac\xee\x9d\xba\x78\xe4\xbe\xcc\xdd\xb4\x90\x99\xec\xc6\x65\x38\x4d\x78\x11\x92\x9b\xf9\x1a\x42\x92\xe4\xc0\xe1\x81\x90\x1c\x21\x24\x6b\x4e\xd0\x1e\x08\xc9\x81\x90\xdc\xcc\xb9\x10\x92\xe4\x59\x16\x44\x48\x0e\x84\xe4\x66\x82\x85\x90\x24\x35\x50\xe6\x40\x48\x92\xb2\xbd\x52\xf6\x84\x05\x7e\xa4\x26\x7a\xeb\x10\x1d\x78\x00\x29\x37\x13\x2c\x20\x25\xa9\x89\xd5\x3a\x80\x94\xa4\x96\xb8\x24\x40\x4a\x72\xff\x32\x45\xd0\xb4\x02\x52\xd6\xf2\x37\x1c\x8c\x3a\x70\x96\x03\x67\xb9\x85\x14\x1f\x38\x4b\x52\x83\x80\x0e\x9c\xe5\x08\x67\x59\x13\xa6\x75\xe0\x2c\x07\xce\x72\x33\x75\xc1\x59\x92\x1a\x2a\x74\xe0\x2c\x07\xce\x72\x33\x4f\xc1\x59\x92\x5a\x62\x11\x70\x96\x03\x67\xb9\x99\x80\xe0\x2c\x49\x2d\x19\xf7\x70\x96\xe4\x59\x6b\xc5\x59\x92\xb2\x99\x0b\xe0\x2c\x47\x38\xcb\x9a\xb0\xaf\x03\x67\x39\x70\x96\x5b\x76\x6e\x0c\x9c\xe5\xb8\x74\x9d\x0c\x8f\x42\x0d\x8f\x6b\xca\x47\x2c\xc2\xa5\x15\x5f\x5a\x71\xc6\x3d\x34\xe6\xb8\x9e\x46\x16\xf7\x12\x8d\x39\xd0\x98\x1b\x2f\x05\x8d\x39\xd0\x98\x9b\x91\x0f\x8d\x39\x42\x63\xd6\x84\x83\x1d\x68\xcc\x81\xc6\xdc\x98\x57\x34\x26\xa9\x45\x46\x0c\x24\x89\xc5\x7b\x5f\x96\x27\x98\x8e\x86\xc6\x7c\x96\x90\xd1\x98\x03\x66\xb9\x31\x88\x30\x4b\x52\x43\xbb\x0e\x98\xe5\xc0\x54\x6e\x2c\x07\xa6\x72\x84\xa9\xac\x65\x97\xe4\x01\x19\x5b\x36\x96\x03\x40\x49\x6a\xc2\xc4\x0e\x31\x74\x07\xbc\x71\xd3\x15\xf1\x8d\xa3\xc7\xa6\x6f\xda\x43\x67\xd3\x23\xb5\x1c\x92\x2e\x49\x9e\x90\xd7\x85\x56\x1c\x5d\xff\xcc\x6c\xb1\xeb\x9f\x5d\x57\x51\x71\x22\xd1\x92\x9a\x88\xb1\x03\xc0\x48\x6a\x4e\xae\x1f\x42\xcd\x92\xb2\xfd\x35\xed\x90\x26\x1f\x47\x92\xe4\xc3\x09\xdb\x4f\x9a\x86\x8f\x69\xdc\x12\xaf\x75\x60\x1a\x07\xa6\x71\x4b\x38\xd0\x81\x69\x1c\x5d\x53\x3a\x24\xb9\x6c\x78\x6a\xac\x30\xa6\x91\x3c\x8b\xfb\x98\xc6\x81\x69\xdc\x4a\xac\x30\xa6\x91\xd4\xe7\xa1\xac\x70\xd7\x30\x13\x82\x72\x74\x0d\xb3\x6b\x98\xf1\xe8\x61\x8e\xa4\xe6\x84\xfb\x21\xce\xea\x40\x3e\x6e\x16\x91\x91\x8f\xa4\xe6\x84\xfb\x81\x7c\x1c\xc8\xc7\xad\x66\xf8\x42\x3e\x0e\xfc\xe2\x96\x43\xde\x07\x7e\x71\xe0\x17\x37\xab\xb2\xf8\xc5\x01\x56\xdc\x6a\x3c\x48\xb0\xe2\x00\x2b\x6e\xd6\x56\xc1\x8a\xa4\xe6\xc4\xfc\x01\x56\x1c\xe3\xaf\xd1\x47\xee\x26\x87\x42\x1c\x28\xc4\xad\xc6\xad\x44\x21\x92\x5a\x5c\xc6\x91\x07\x26\x6e\x09\x67\x34\x80\x89\x63\x08\xe2\x13\x42\x74\x0c\xdf\xf9\x86\x57\x9d\x7e\x39\xbc\x6a\xfc\xe2\x66\xc5\x11\xbf\x38\x06\x1b\x17\x3f\x10\xbf\x38\xf0\x8b\xdb\x16\xfb\x8f\x5f\x24\x35\x47\xf7\x0f\xfc\xe2\xc0\x2f\x6e\x5b\x0c\x3b\x7e\x91\x3c\xfb\x33\xf0\x8b\x63\xb0\x71\x16\x28\x07\x1b\x37\xd8\xb8\x7c\x99\xc3\x2f\x8e\xc1\xa0\x6d\x31\x8f\x22\x52\x92\x67\x1b\x87\x88\x94\xe4\xbe\x4c\x9a\x92\xb2\x7b\xa7\x07\x28\xa9\xc6\x9a\x33\xa2\x07\xcc\x71\xc0\x1c\x37\xcb\x8c\x30\xc7\x01\x73\xdc\x12\x05\x62\xc0\x1c\x07\xa6\x71\xdb\x54\x89\xd7\x8f\x69\xdc\x72\x1e\xfe\xc0\x34\x0e\x78\xe1\x96\x13\xe6\x07\xbe\x70\xa0\x04\xb7\x9c\x46\x3e\x50\x82\xa4\x26\x24\xef\x10\x11\x71\x00\x07\xb7\x3d\x75\x02\x1c\x1c\x93\xd9\xc8\xa1\xd0\x63\x32\x1b\x93\xd9\xc8\x10\x3e\x99\x0d\x7c\xe1\x96\x23\x9b\x07\xbe\x90\x3c\x1b\x54\xa6\x56\x82\x2f\xdc\x72\x06\xf2\xc0\x17\x92\xaa\x03\xe3\x0b\xc7\x34\xac\xe7\xc0\xe3\x31\x0d\xeb\xd3\xb0\x9e\x29\x15\xbe\x70\xe0\x0b\xb7\x1c\x47\x3c\xf0\x85\xa4\x26\xa2\xef\xc0\x17\x92\x9a\x88\xbe\x03\x5f\x38\x80\x83\x5b\xce\xe8\x1d\xc0\xc1\x81\xe1\xdb\xac\xd5\x80\xf8\x06\x62\x6f\xdb\xfb\x6f\x1f\xb3\x36\x00\x7d\x63\x32\x3e\xe9\x2e\x82\x16\x0e\x40\xdf\x96\x13\x36\x07\xa0\x8f\x3c\xbb\x66\x00\x7d\x03\xd0\xb7\x1d\x71\x63\x01\x7d\xa4\x26\xea\xef\x00\xf4\x0d\x40\xdf\x96\x33\x31\x07\xa0\x8f\xd4\x84\xfd\x1d\x80\x3e\x52\x13\xc1\x62\x00\xfa\x48\xd9\x0e\xcd\x80\x6f\x37\xf9\x76\x99\x49\x01\xfa\xc8\x7d\x59\xf2\xc6\x46\x4d\x36\x2a\xe6\x13\xd0\x37\x00\x7d\x5b\xce\x98\x1c\x80\x3e\x62\x61\x16\xd0\x37\x96\xb1\x23\x53\x30\x40\x1f\x29\x9b\x95\x22\x21\x08\xc7\xd2\x08\x32\x8f\x02\xf4\x8d\x25\x76\x49\x8e\x7b\x1c\xcb\x62\xc6\xe2\xb4\xc5\xee\x0a\x25\x38\x00\x7d\x5b\xce\xd7\x1d\x88\x3d\x52\x13\x96\x63\x20\xf6\x48\x4d\x24\xde\x81\xd8\x23\xf7\x2f\xa5\x1d\xd2\xee\x72\xda\x0a\x24\x98\xe0\x48\x30\xc1\xb2\xe5\x54\xc8\x21\x9a\x20\xa9\x89\xd4\x31\x40\x7c\x03\xc4\xb7\x1d\x31\x01\x28\xbe\x11\x8a\xaf\xb2\xe2\x28\xbe\x81\xe2\xdb\x02\xe7\x0e\x14\x1f\xa9\x89\xa0\x3b\x50\x7c\x03\xc5\xb7\x59\xb1\x42\xf1\x91\x67\x63\x11\x8a\x6f\xa0\xf8\xb6\x1c\x01\x39\x50\x7c\xa4\xd6\xb8\x08\x28\x3e\xf2\xec\x35\x42\xf1\x91\xfb\x97\xb9\x1b\xc3\x16\x8a\xaf\x1a\x60\x50\x7c\x03\xc5\xb7\x1d\xf9\x48\x89\xe2\x1b\xa1\xf8\x6a\x22\xf2\x0e\x14\xdf\x58\x4f\x0b\xcf\xa0\x8e\xe2\x23\xb5\x6a\x1e\x5a\xf8\x7a\x5a\x78\x3a\xac\xd8\x83\xa4\x26\x26\xef\x10\x7b\x70\xac\xa7\x85\xe7\xd3\xdd\xd2\xc2\x23\xb5\xc6\xc1\xc6\xff\x91\x9a\x53\x33\xc6\xd2\xc2\xd7\xd3\xc2\x33\x32\x41\x02\x49\x4d\xb4\x91\x01\x09\x24\xf7\x65\xee\x76\x4a\x4b\xe1\x33\x6d\x80\x04\x8e\xf5\xb4\xf0\x98\x5c\x48\x20\xa9\x55\xdb\xf5\xd1\x62\x2d\x0f\x8d\xa5\x5f\x3e\x3e\x46\x9e\xbd\x57\xcb\xc7\xc7\xb5\x14\x3e\xf6\x70\x2d\x85\x5f\x29\x7c\xdc\xf6\xb5\x14\xfe\xad\xf0\xb1\x60\x01\x10\x1f\xa9\x55\x13\x67\xfa\xd7\x13\x57\x29\xfd\x7b\xf9\x46\x19\xa9\x35\xde\xfd\xb2\xeb\x07\xad\xb8\xe5\xfc\xb7\x81\x56\x1c\xc1\x10\x6b\xa2\xa3\x0c\x18\xe2\x58\x9c\xd9\x1c\x8a\x36\x16\x67\x36\x18\x62\x4d\x54\x92\x01\x43\x24\xf7\x65\xa9\x4b\x6b\x2b\xeb\xb3\x72\x59\x8a\x90\xa3\x45\x06\x5a\x71\x6b\x7a\x11\x9f\x37\x52\xab\x66\x6f\x54\x8a\xd4\x1c\xdf\x31\xd0\x8a\xe4\xfe\x65\x4a\xca\x0d\x0e\xad\x58\xab\x9e\xc0\x0d\x5e\x5f\x91\x7d\x5e\xee\xa6\xff\x7d\x93\x0f\x3d\xe1\xfb\xe4\xe3\xed\xb2\x3b\xbb\x08\xc6\x11\x82\xb1\x26\x14\xca\x40\x30\x0e\x04\xe3\x96\xd3\xc3\x06\x82\x91\x3c\x3b\xdb\x10\x8c\x03\xc1\xb8\x05\xa4\x1e\x08\x46\x52\x13\xda\x76\x20\x18\x07\x82\x71\xcb\xa9\x5c\x03\xc1\x48\x6a\x02\xd9\x0e\x04\x23\xa9\x39\x5a\x64\x20\x18\x49\xd9\x72\x7c\xd5\x40\x30\x8e\xa0\x89\x35\x67\x87\x0c\x68\xe2\x80\x26\x6e\x39\xbe\x6a\x40\x13\x47\xd0\xc4\x9a\x58\x2b\x03\x9a\x38\xa0\x89\x5b\x78\xe8\x01\x4d\x24\x35\x51\x6a\x07\x34\x71\x40\x13\xb7\x1c\x1b\x35\xa0\x89\xa4\xe6\x24\x92\x01\x4d\x1c\xd0\xc4\xcd\xaa\x1a\x34\x91\x3c\xdb\xfa\xa0\x89\xe4\xd9\xc2\x07\x4d\x24\x65\xb3\x0e\x06\x4d\x1c\x6f\x56\x36\x66\x00\x9a\x38\xa0\x89\x9b\x75\x30\x68\x22\x79\xb6\xf0\x41\x13\x07\x34\x71\x0b\xb6\x3c\xa0\x89\xa4\x26\x34\xcc\x80\x26\x8e\x37\xf3\xd9\xfe\x86\x78\x62\xe3\xcd\xba\xbe\x59\xd7\xb8\xf9\x6f\xd6\x15\xe0\xb8\x35\x25\x64\x4a\xdf\x3c\xbd\xf0\xca\xe3\xcd\xd3\x7b\xb3\x9b\x4f\x92\xe2\xb0\x9b\x39\xbe\x78\xa0\x19\x47\x08\xc6\x9a\x08\xb7\xe3\x6d\xd1\x06\xcd\xb8\xe5\x78\x9d\x81\x66\x24\xcf\x86\x41\x34\xe3\x40\x33\x6e\x39\x5e\x67\xa0\x19\x49\xad\x31\x61\x68\x46\x72\x5f\xe6\xa7\x53\x5a\x46\xaa\x98\xb0\xb7\x8f\x43\xa0\xc7\x2d\x47\xee\x0c\xd0\x23\xa9\x39\x68\x66\x80\x1e\x49\x4d\xd8\x9c\x01\x7a\x24\x65\xb3\xd8\x05\x7a\x24\x35\xc1\x70\x07\xe8\x91\xdc\x97\x25\xbb\xcc\xeb\x9b\x79\x55\x50\xe6\x35\xb1\x25\xef\xcb\x52\xbd\x76\x43\x44\x6a\x55\xd0\xf9\x64\x57\x55\xc6\xd2\x61\x23\x47\x78\xc8\x9a\x10\xb9\x43\xf0\xc9\x81\x8d\xdc\x12\x4a\x7b\x60\x23\x49\xad\xea\x83\x15\x7e\xb3\xc2\x39\xa2\x66\x08\x52\x49\x6a\x55\x1f\xac\x30\x84\x72\xcb\x01\x32\x03\x42\x39\x20\x94\x5b\xc8\xef\x01\xa1\x24\x35\xf1\x75\x07\x84\x72\x40\x28\xb7\x9c\x2a\x32\x20\x94\xa4\xe6\x30\x9e\xf1\xb6\x52\xf4\xf6\x99\xe1\x64\x4e\x7c\x66\x78\xb3\xcc\x31\xfd\x6f\x96\xf9\x9d\xef\xd5\xdb\xc9\x9c\xf8\x5e\xfd\x66\x99\xe3\xd0\xbe\x59\xe6\x37\x93\x1b\x40\x7c\xbc\x99\xdc\x37\x93\xeb\x65\x31\xb9\x6f\xf6\x35\x34\xf8\x78\xb3\xaf\xc1\x36\x6b\xf5\xb2\x7c\xd5\x86\x6d\x6e\x39\x47\x62\xc0\x36\x49\x4d\xe0\xdd\x01\xdb\x1c\xb0\xcd\x2d\xc7\x30\x0c\xd8\x26\xa9\x89\xbc\x3b\x60\x9b\x03\xb6\xb9\xe5\xb4\x84\x81\xcb\x24\xcf\x9e\x55\x5c\xe6\xc0\x65\x6e\x67\x2c\x38\x2e\x93\xd4\xc4\xdb\x1d\xb8\x4c\x52\x6b\x5e\x33\x2e\x93\xdc\xbf\xcc\xdd\x18\xce\xc8\xb3\xdb\x15\x97\x39\x00\x97\x5b\xce\x37\x18\x80\xcb\xf1\x61\x38\xd3\x1a\x3e\x0c\x27\xe0\x72\x0b\x85\x3d\x00\x97\xa4\x9a\xdc\x02\x2e\x07\xe0\x72\x0b\xf4\x3f\x00\x97\xa4\x26\x58\xef\x00\x5c\x8e\x0f\xc3\x19\x9a\x7f\x7c\x18\xce\x0f\xc3\x99\x0f\x4c\x18\x4c\xf2\x6c\xc4\xc5\x60\x92\xfb\x97\x79\x00\xc3\x19\xa9\x89\xcd\x3b\x30\x98\xe4\xbe\x2c\x15\x62\x92\xfd\x61\x5f\xbb\x5f\x5e\x92\x14\x3e\xdd\x19\x83\x39\x3e\xdc\xd3\x8c\xe6\x18\xcc\x81\xc1\xdc\x02\xb9\x0f\x0c\x26\xa9\x5b\x66\x2f\x18\xcc\xf1\xb9\x44\x8d\x4b\xbb\xff\x58\x2d\x0b\x83\x59\x13\xdd\x6a\x60\x30\x07\x06\x73\xb3\x18\x89\xc1\x24\x35\x41\x75\x07\x06\x93\xd4\x2d\xa3\x39\x06\x93\xdc\xbf\x4c\x49\xb9\xa7\x91\x9a\x40\xbb\x03\x83\x49\xee\xcb\x92\x0f\xd6\x38\x52\x73\x7a\xd5\xc0\x60\x8e\x27\xc6\xe7\xa9\xd1\x80\x51\x22\x35\x41\xb0\xc6\xa7\x3f\xd9\x8d\x41\x3a\x35\x1a\x8b\x6a\x9f\x2c\xaa\xf9\x84\xf1\xb1\xa8\x86\xe8\xdc\x4e\x8d\x86\x6d\x8f\xd4\x44\xd6\x1d\x88\xce\xf1\x79\x42\xf7\x65\x4e\x83\xe8\x1c\x88\xce\xed\xf2\x54\xd6\x32\x52\x73\x3e\xd6\x40\x74\x0e\x44\xe7\x76\xb9\x1d\x93\x17\x8a\xf3\xd9\x96\x2d\xee\xe7\x10\xf7\x73\x0b\xcf\x3a\xc4\xfd\x24\x35\xb1\xb5\x86\xb8\x9f\x43\xdc\xcf\x2d\xf0\xea\x10\xf7\x93\xd4\x2d\x5e\xb7\xb8\x9f\x43\xdc\xcf\x2d\x68\xe9\x10\xf7\x93\xd4\x84\xef\x1d\x90\xd1\xf1\x04\xf4\xb4\x50\x2a\xa2\x27\xa9\x9b\x7c\xb0\x82\xc8\xd2\xed\x62\x1b\x58\xc1\x90\xa5\xd5\x07\x1c\x64\xe9\x40\x96\x6e\x97\x4e\xcf\x0a\x46\xea\x56\xff\x86\xb1\x1b\x78\x3a\x80\xa7\x9b\x65\x4e\xe0\x29\xa9\x89\xf0\x3b\x80\xa7\x03\x78\xba\x85\x35\x1c\xc0\x53\x52\x37\x85\x66\x24\x23\xcf\xd6\x75\x41\x3e\x49\xd9\x72\x64\xf2\xc0\xa2\x92\x9a\x20\x63\x03\x8b\x4a\xee\xcb\xdc\x4d\xdd\xc4\x7d\x4d\x90\xb1\x81\x45\x1d\x58\xd4\x2d\x84\xdf\xc0\xa2\x8e\xb0\xa8\xcf\x46\x78\x2c\xea\x00\x99\x6e\x39\x93\x79\x80\x4c\x49\x4d\xf8\xde\x01\x32\x1d\x20\xd3\x2d\xf0\xfc\x00\x99\x92\x67\xbf\x3c\xc8\x74\x20\x4a\x37\x48\x19\xa2\x94\x54\x1f\xb7\x10\xa5\xe4\xbe\xec\x48\xda\x29\x2d\x45\xc8\xb7\x7f\x44\xe9\x40\x94\x6e\x30\x33\x44\xe9\x08\x51\x5a\x7d\x03\x43\x94\x0e\x44\xe9\x76\x65\x0c\x42\x94\x92\xba\x65\x26\x80\x28\x1d\x88\xd2\xcd\x12\x2f\xa2\x74\x84\x22\xad\x89\xf2\x3b\xc4\x1f\x1d\x88\xd2\x0d\xca\x85\x28\x25\xcf\x96\x7f\x44\x29\x79\xb6\xf7\x23\x4a\x49\xd9\x90\x51\x88\x52\xf2\x6c\xef\x47\x94\x92\xfb\xb2\xe4\x83\x2d\x8d\xd4\x44\xf4\x1d\x82\x8d\x0e\xa8\xe8\x66\xa9\x19\x2a\x3a\xbe\x4f\x24\xc6\x58\x49\xa8\xe8\x80\x8a\x6e\x96\x78\xa1\xa2\x23\xa8\x68\x4d\x94\xdf\x01\x15\x1d\x50\xd1\x0d\xad\x01\x15\x25\x35\xb1\xde\x06\x54\x74\x7c\x45\x10\xb7\x76\xfb\xb5\x25\x36\xa8\x68\xcd\xf1\x75\x03\x2a\x3a\xbe\xe3\xeb\xb2\x14\xf5\x76\xf5\x6e\x49\x25\x65\x7c\x84\x8a\x92\x07\x47\x80\x8a\x92\xfb\x97\xd2\xe4\x23\xde\x5d\xc2\xf7\x0e\xa8\x28\x29\x9b\xe5\x5c\xa8\x28\xa9\x89\x12\x37\xa0\xa2\xe3\x3b\x45\xd2\x54\x71\x5c\xb9\xc8\x03\x37\x04\x25\x7d\xe4\xbe\xec\xf8\xe9\xf7\x13\x51\x3a\x1f\xa2\xb4\xdf\x29\x4d\x8a\xa6\x75\xf7\xab\x89\x28\x9d\x4f\xfc\xd1\xa0\x07\x53\x00\xd2\xf9\xd2\xb4\x8e\xdc\x2b\x4d\x6b\xbe\x34\xad\x7e\x97\x7d\xbe\xd2\xb4\x48\xcd\xd7\xd5\xf9\xca\x30\x3d\x21\xa3\x5b\x08\x85\x09\x19\x25\x75\xbb\x07\xf8\x09\x19\x25\x35\x61\x77\x27\x64\x74\xc2\x43\xb7\xee\x6e\xa7\x87\x6a\x33\xcd\xcd\x2e\x49\xcb\x65\x7e\xfa\x96\xf6\xce\x65\xf5\x4e\xba\x3c\x33\x43\x72\x62\xe7\x4e\x90\xe7\x04\x79\x6e\xd9\x2e\x3f\x41\x9e\xa4\xe6\x98\xd9\x09\xf2\x9c\x20\xcf\x2d\x7b\xde\x27\xc8\x93\xd4\xed\x49\x52\x50\x43\x72\x76\xa9\x4f\x90\x27\xa9\x89\xa7\x3b\x41\x9e\xa4\xe6\x63\xf3\x04\x79\xce\x97\x78\xda\xfd\xcc\xdd\xba\x87\x1a\x6b\x9f\x9b\x29\xe8\xd3\xe8\xcf\xfc\x74\x78\x80\xa1\x30\x07\x03\x4c\xa8\xe6\x84\x6a\xee\x59\x41\x9e\x50\x4d\x52\x13\x3b\x77\x42\x35\x27\x54\x73\xcf\x1e\xdd\x09\xd5\x9c\x50\xcd\x3d\xcb\xb9\x13\xaa\x39\xa1\x9a\x7b\xd6\x2c\x27\x54\x73\xbe\x8c\x37\x67\xea\xf7\xe3\xb2\x8c\x37\x7b\x28\xef\x09\xd5\x24\x35\x04\xf3\x84\x6a\x4e\xa8\xe6\x9e\xed\x85\x13\xaa\x49\x6a\xb6\x60\x4f\xa8\x26\xb9\x2f\xf3\xd3\x29\x6d\xe6\xb2\xd4\x52\xf6\x9a\x4e\xa8\xe6\xfe\xd2\xc6\xbf\xf2\x66\xdc\x39\x53\xe7\x5f\x79\x33\xee\xa8\xb8\xaf\x3a\xff\x3e\x71\x55\xd3\x92\xbe\xf2\x66\x40\xd1\x3d\xbe\x2a\x49\xf4\xce\x6c\xf4\x9b\x80\x4b\x52\x13\x51\x77\x06\xbe\xbc\x45\xe1\xd3\xa2\x01\x97\x04\xfd\x32\x01\x97\x13\x70\xb9\x67\x5f\xdb\x04\x5c\x12\xa8\xcb\x04\x5c\xce\x27\x16\xe7\x2b\xed\x12\x5d\x39\x31\x92\xfb\xeb\xfc\xed\xd3\xd5\x26\x84\x72\x3e\xc1\x2f\x5f\x6e\xad\x9b\x61\x12\xf7\x10\xd1\x13\x93\x38\x45\xa2\xdc\xb3\x7f\x61\x8a\x44\x49\xea\x96\x66\x25\x12\xe5\xc4\x29\xee\xe5\x76\x80\x26\x4e\x71\xe2\x14\xf7\x2c\xa2\x4f\x9c\xe2\x2c\xec\xf0\x95\xcb\x86\xcb\x86\x27\x6c\xa9\x9e\xe1\x09\xec\xf0\xe5\x97\x9e\x30\x44\x54\xdd\x93\xb9\xd8\xe1\x59\xd8\xe1\xcb\x2f\x55\x4f\x26\xe3\x7b\xd6\x8c\x27\x4e\x91\xd4\x44\x7b\x9c\x38\xc5\x89\x53\xdc\xb3\x66\x3c\x71\x8a\xa4\x6e\x3d\x25\xd5\x5b\x0a\x73\xdd\x73\xb3\x98\xeb\x09\x40\xdc\x73\x1a\xf2\x04\x20\x92\x9a\xb8\xc4\x13\x80\x38\x9f\x70\x92\x59\xbd\x9d\x00\xc4\x59\xf8\x92\x3d\xf5\xb6\x3c\x60\x29\x7c\xcc\x18\x00\x91\xd4\xac\x24\x4d\x00\xe2\x04\x20\xee\x89\xf7\x3d\x01\x88\x13\x80\xb8\x67\x79\x6d\x02\x10\x09\x4a\x69\x0a\x14\x39\x01\x88\x7b\x16\xc4\x26\x00\x91\xa0\x94\x66\xf9\x68\xa4\x4f\xa8\x5b\x0d\x57\xcf\x28\xba\x41\x71\x3b\xdd\x20\x52\x13\xe7\x78\x96\xaf\x27\x3c\x41\x6c\xd3\x6c\xa0\x8b\xa4\xee\x4f\x52\x95\xb4\xbb\xec\x4c\xda\x21\xed\xc8\x65\x25\x49\x4d\xd2\x25\x24\xae\x9f\x76\x69\x3d\x97\xd5\x24\xe5\x3d\x0b\x31\xb9\xe7\x73\xf8\x14\x62\x92\xd4\x44\x4d\x9e\x70\x45\x52\xf7\x7b\xda\x33\xe1\x8a\x13\x60\xb8\xe7\x93\xf3\x04\x18\x92\x9a\x40\xca\x13\x60\x38\x21\x81\x7b\xdd\x72\x99\x0e\x02\xec\xdb\xf3\xf9\x70\x02\xfb\x66\x82\x31\x42\xb9\xa6\x60\x8c\x13\xd8\xb7\xd7\xbc\x54\x60\x1f\xa9\x89\xea\x39\x81\x7d\x33\x2c\xdf\x7d\x59\x4f\x9a\x92\x5e\x4a\x2a\x49\x49\xbb\x92\x66\xbc\x02\xf6\x91\xba\xab\x23\xbd\x2d\x52\x13\x0f\x74\x02\xfb\x26\x62\x6f\xcf\xe7\xa5\x89\xd8\x23\x75\x2f\x6e\x76\x49\x52\xaa\x18\x6c\xdc\x1d\xa9\xbb\xda\x1d\x2a\x44\xa0\xd6\x7c\x74\x99\x48\xb9\x09\x81\xdb\x33\xf5\x9e\x18\x38\x52\x13\x5b\x79\x8a\xb2\x38\x61\x71\x7b\x26\xd0\x13\x16\x47\xea\x1e\x83\x01\x8b\x9b\xb0\xb8\x7d\xf3\xb6\xb4\x72\x58\xdc\xbe\x79\x5b\x9a\x6f\xa4\x26\x2c\xf3\x84\xc5\x4d\x58\xdc\x1e\x9f\x7a\xc2\xe2\x48\x4d\xa8\xe6\x09\x8b\x9b\x4f\x2c\xc4\xac\x04\x4f\xbc\xdb\xc4\xbb\xed\x21\x49\x27\xde\x6d\x3e\xb1\x0a\xf9\x2a\xd8\xb3\x29\x32\xe1\x6e\xc0\x12\x99\x90\xd4\x04\x5c\x9d\x22\x13\x4e\xec\xd9\x6e\x3c\xc1\x9e\xcd\xf0\x66\x75\xbf\x67\x60\x53\x64\xc2\x89\x3d\xdb\x19\x51\xec\x19\xa9\x89\x06\x3d\xb1\x67\x13\x7b\xb6\x87\x62\x9c\xd8\x33\x02\x14\x9c\xd8\x33\x72\x5f\xe6\x09\x53\xda\xcc\x65\x5b\x92\x96\xa4\xaf\x80\xc4\x77\x65\x86\x57\xbb\x25\x95\x59\x93\x0f\xcd\x3c\x52\x73\xb0\xf1\x14\xc0\x70\xc2\xd1\x76\xb6\x0b\x8e\x46\x6a\x42\x40\x4f\xb1\x04\xa7\x58\x82\xbb\xfe\x26\x96\x20\xa9\x09\x01\x3d\xc5\x12\x9c\x62\x09\xee\x09\x35\x3e\xc5\x12\x24\x75\xaf\x29\x81\x96\xbf\x69\xf9\x9a\xf9\xa6\xe5\x6f\x5a\xfe\x26\x49\x76\xb5\x5f\x2f\x1a\x02\x37\x83\xc0\xd5\x04\x94\x9e\x10\xb8\x09\x81\xdb\x9f\x8c\x18\x67\x22\x60\xca\x09\x81\x9b\xc2\x0b\xee\xcf\x13\x86\xbc\x65\x9c\x49\x40\xe9\x09\x81\x9b\xd8\xb6\xfd\xf9\xa9\x01\x24\x52\x13\x6a\x77\x62\xdb\x08\x0c\x73\x62\xdb\x48\xd9\xb3\xb4\x3f\xb1\x6d\xa4\xee\xdb\xf9\xdb\xe3\xb7\xb0\x82\xe4\xbe\x4b\x4a\xa8\x9b\x45\xea\x9e\x81\x14\x21\x37\x31\x6d\x7b\xce\x8b\x9e\x98\x36\xb2\x5d\xf7\xe3\x31\x6d\x73\xd7\x3e\xe3\x9d\xed\xda\xa7\x78\x81\x7b\x4e\x90\x9e\xe2\x05\xce\x70\x6e\xd5\x23\x61\x6e\xa4\xec\xd9\x59\x30\x77\xed\x73\xd7\xf0\xe2\x9d\xed\x1a\x9e\x78\x81\x7b\xa2\x2b\x4f\xf1\x02\xe7\xae\xe1\x65\x86\x80\x6d\x23\x35\xd1\x85\x27\xb6\x8d\xdc\xbf\x3c\x92\x26\x1f\xf1\xf3\x9f\x67\xf2\xf3\x41\x6b\x7b\xf6\x24\x4c\xd0\xda\x0c\xa8\x56\xb3\x9b\x61\x0a\x21\x48\xee\xcb\xf2\x04\xcd\x18\xb4\xf6\x3c\x80\x01\xdf\x9f\x66\x9c\x99\x04\x68\x8d\xd4\x04\x4d\x9e\xa0\xb5\xb9\x3f\xcd\x38\x96\x19\xb4\x46\x50\xb1\x13\xb4\x36\xf7\xa7\x19\x67\xda\x00\x5a\x23\xf5\xc9\x87\x66\x0c\x5a\x7b\x9e\xc9\x80\x83\xd6\xf6\x84\xf0\x9d\xa0\xb5\x09\x5a\x0b\x4f\x3b\x41\x6b\x73\x7f\x3a\xc0\x99\x92\xea\x00\x68\xb4\xf0\xb4\x13\x8d\x36\xf7\xa7\x03\xc4\x85\x45\xa3\x91\x9a\x30\xc7\x13\x8d\x36\xf7\xa7\x03\xc4\x13\xd8\x75\x80\x5d\x07\xc8\x54\x65\xd7\x01\xf6\x27\xbc\xf7\xe5\x09\x5e\xf3\x48\x8d\x67\xfa\xb2\x0f\x35\xfe\xf4\x93\x18\xb0\x5d\x3f\xd9\xf5\x93\x0c\x4b\x70\x37\x52\x13\xd2\x78\xc2\xdd\x48\xd9\x13\x30\x76\xee\xfa\xc9\xae\x9f\xc4\xe5\xd9\x75\x84\xfd\xe9\x08\x5d\xda\x29\x2d\x75\xa4\xda\x74\x84\x7d\x6a\x20\x5d\x9a\x06\x92\x55\x8f\xa7\xda\xa6\x12\x24\xe4\xe6\x9e\xe8\xb0\x33\xc0\xdd\x23\x75\x8f\xdd\x87\xdd\x91\x9a\xf3\xd0\xe7\x6e\xf0\xda\xd7\x93\xdd\x14\x94\x27\x17\xa9\x09\x90\x3c\x77\x9e\xdc\xbe\xd4\x6e\x1c\xa8\x7d\xa9\xdd\x7c\x15\x4c\x80\xe4\xb9\x2f\xb5\x6b\x28\xcc\xb1\xe9\x13\xd7\x47\x6a\x02\x24\xcf\xfd\xad\x8e\x8c\x8e\x89\x8f\x3a\xa1\x7e\x13\xea\xf7\xbc\x65\xd3\x2f\xa8\xdf\x7e\x54\x97\xc9\xdb\x27\xc3\xb4\xb7\xfc\x51\x6d\x1f\x91\xd2\x33\xb2\x40\xfd\x26\x86\x2f\xe1\xa7\x27\x86\x6f\x62\xf8\xf6\x23\x23\x0b\x86\x8f\x60\x9f\x27\x86\x6f\xa2\xee\xf6\x38\xe7\xa8\x3b\x72\xff\x52\x9a\x92\xde\x02\x87\x9e\x09\xaf\xf8\xc8\x7d\x59\x8a\xf0\x7d\x1e\x9a\xa6\xe5\xbd\x7c\xbd\x17\x03\x77\x76\x88\x4c\x0c\xdf\xc4\xf0\x79\x09\x18\xbe\x89\xe1\xdb\x8f\x8c\x05\x18\x3e\x52\xf7\x38\xc0\x18\xbe\x29\x8c\xe2\x9e\x8d\x24\x53\x18\x45\x52\xbd\x2b\x0c\xdf\xc4\xf0\xed\x41\x9f\x27\x86\x8f\xd4\x04\xfc\x9d\x18\x3e\x52\xb3\xf5\x68\x62\xf8\x48\xd9\x03\x2b\x4f\x0c\x1f\xa9\xde\xf2\x71\xc8\x07\x37\x23\xb0\xf2\x3c\xb8\x19\x50\xbf\xec\x50\x9a\x50\xbf\x09\xf5\xdb\x03\x2b\x4f\xa8\xdf\x0c\xde\x07\x0f\x9f\x87\x4f\x33\x50\xbf\xfd\x88\xe1\x85\xfa\x91\x9a\xa8\xbd\x13\xea\x37\xa1\x7e\x7b\xce\xa9\x9f\x50\x3f\x52\x13\xa1\x77\x42\xfd\xc8\x7d\x99\x87\x4e\x69\x2b\x97\xa5\x8e\x42\x32\xcf\xe3\x54\x47\x31\xc6\x87\xaf\x3a\x91\x9a\x08\xbd\x13\x24\x38\xd1\x7f\x89\xc6\x3b\xd1\x7f\x13\xfd\xb7\x87\x16\x9e\xe8\xbf\x19\xd4\xaf\x26\x0a\xee\x44\xfa\x91\xaa\x39\x23\xfd\x26\xd2\x6f\xcf\x11\xfa\x13\xe9\x47\xa0\xf1\x13\xe9\x37\x0f\x26\x3b\x3b\x55\xe6\xc1\x64\x47\xaa\x56\x7f\x30\xd9\x07\x93\x9d\xc0\x95\xf3\x60\xb2\x23\x55\xab\xc7\x08\x92\x7a\xfc\x0d\x7b\xcd\xe7\xc1\xa2\x1f\x2c\x7a\xc0\xe1\x79\xb0\xe8\xc7\xed\xa6\xd7\xa3\xa6\x52\x79\xe9\xe0\xc3\x3d\x9b\x56\x26\xf8\x70\x26\x72\x64\x4d\x7c\xdd\x29\x72\xe4\x04\x1f\xee\x89\xbb\x38\xc1\x87\xa4\xea\x3b\xe0\xc3\x09\x3e\xdc\x73\xc2\xfe\x04\x1f\xce\x84\x84\xac\x4f\xdf\x61\xbd\x85\x84\xdc\x73\xc2\xfe\x14\x12\x92\xd4\xa7\x53\x24\x24\xe4\x3c\xf2\xa5\x73\x4f\x08\xc4\x19\x60\xf1\x96\xd4\x4d\x1c\x24\x8c\x22\xa9\x4f\x3f\x61\xd1\x31\x8a\x7b\x00\xe6\x89\x51\x24\x8e\x08\x98\x18\x45\x72\x5f\x96\x87\xb2\xe8\x18\xc5\x44\xf0\x9d\x18\x45\x72\x5f\xe6\xa1\x4a\x15\x16\x22\x11\x7c\xa7\x90\x90\x13\xca\xb8\x27\x8c\xe1\x84\x32\xce\xe0\x8b\x35\xdb\xb7\xe6\x61\x22\x0e\x65\xdc\x0f\x7d\x9d\xf9\x86\x32\xe6\x10\x82\x09\x65\x9c\x62\x3d\xee\x4d\xc7\x66\xbe\x23\xf5\xe9\xd7\xcc\xf7\x91\x45\x9d\xbd\xe9\x8a\x6f\x0f\xcd\xa2\xce\xd3\xaf\x59\xf4\x48\x7d\xfa\x30\x8b\x1e\x29\x7b\xd3\x51\xde\xf2\x91\x75\x9e\x04\xeb\x9d\xc7\x5b\xe1\x19\xfe\xa6\xf3\x30\xfc\x61\x21\x9d\x1f\x30\x0f\x86\xff\xf8\x3c\x77\x4b\xbd\x31\xfc\x91\xfa\x58\x04\xd3\xa2\x83\x45\x6f\x3a\x14\x8b\x1e\xa9\x8f\x45\x60\xd1\x8f\xaf\xbb\xb1\xa4\x5f\x77\xfb\xba\x5b\x0a\xff\x7d\xee\xd6\x5c\x26\xcd\xfb\xcb\xd7\xb3\x6c\x54\x9b\x87\xaf\x67\xc0\xcb\x3d\x7b\x5b\x26\xf0\x72\x02\x2f\xd9\x17\x64\xe5\x44\x56\xee\xe1\xbe\x27\xb2\x92\xd4\x04\xf0\x9d\xc8\xca\x89\xac\xdc\xb3\x91\x65\x22\x2b\x89\x13\x0a\x26\xb2\x72\x22\x2b\xf7\x1c\xd3\x3f\x91\x95\xa4\x66\xdb\xdb\x44\x56\x12\x87\x16\x4c\x64\x25\x29\x7b\x22\x74\x4d\x91\x29\x49\x4d\x68\xff\x29\x32\x25\xb9\x2f\xdb\x92\x76\x4a\x4b\xe1\x9b\x5f\x5e\x92\x14\x3e\x15\x82\xd3\x9c\x61\x33\x2b\x0b\xd6\x78\xe1\x38\xcd\xbd\xc9\x08\xf3\x8d\xd3\xcc\x11\x08\x13\xa7\x39\x1b\xf3\xdd\x3c\x81\xf9\x6e\xcc\x77\x0c\x5d\x63\xbe\x1b\xbb\xdc\xfc\x94\x5d\x6e\xec\x72\x3c\x3b\x84\x27\xa9\xd9\x7e\x37\x1b\x2f\xbc\xf1\xc2\xb3\x61\x66\x36\x5e\x78\xa4\x32\x91\xcd\x07\xf8\xc8\x7d\x59\x8a\x70\x2a\x3c\x2b\x1f\xcf\xae\xb1\xf2\x10\xd2\xbd\xc5\xa3\x82\x90\x4e\x08\x69\x62\xfb\x4e\x08\xe9\x84\x90\xee\x89\x2a\x35\x21\xa4\xc4\xf1\x0c\x13\x42\x3a\x85\xe0\xdc\xb3\x3b\x66\x0a\xc1\x39\x21\xa4\xc7\xf3\x80\x58\x37\x08\xe9\x9e\xa0\x02\x13\x42\x4a\x2a\x2b\x0b\x21\x25\x4e\x6c\x98\x10\x52\x52\xf6\x44\x61\x9a\x10\x52\x52\x13\x78\x77\x42\x48\xc9\x7d\x59\x8a\xc0\x8e\x43\x48\x0f\x25\xe0\xac\x63\x43\xf7\x44\x5c\x9a\xd8\xd0\xd9\x98\xf6\xf8\x62\x8d\x69\x6f\xe3\x79\x68\x32\xc2\xb4\x37\xa6\x3d\xbe\x58\x63\xda\x21\xa4\x7b\x42\x09\x4d\x08\x29\xa9\x06\x05\x08\xe9\x6c\xbc\xf0\x33\x1e\x44\xe3\x85\x37\x36\x5b\x7d\xb0\xd9\x8d\xcd\xce\x38\xd1\xd8\x6c\xa0\xe9\x1e\xbe\x7d\x02\x4d\x67\x63\x8c\xe3\xec\x35\xc6\x18\x68\xba\x67\x5b\xcd\x04\x9a\xce\xc6\xca\x66\x38\x69\xac\x6c\x63\x65\xb3\x5f\x66\x36\x56\xb6\xb1\xb2\xaa\x8d\x95\x6d\xac\x6c\xa2\xc9\xcc\xc6\xca\x36\x56\x56\xb5\xb1\xb2\x8d\x95\x0d\xa5\x3e\x1b\x2b\xdb\x58\xd9\x2e\xc9\x43\x59\xd9\x8c\x13\x8d\x95\x15\x6a\x74\x3f\xb7\xdf\xde\x60\x3e\x45\x22\x25\xd5\x30\x22\x12\xe9\x84\xc8\xee\x09\xae\x30\x21\xb2\x13\x22\x9b\x58\x33\x13\x22\x3b\x21\xb2\xfb\x99\x51\x09\x22\x4b\xea\xe1\xed\x32\xc2\x10\xd9\xfd\xcc\xf4\x1a\x22\x4b\xaa\x41\x09\x22\x3b\x1b\x5b\x1d\x70\x7e\x36\xb6\x3a\x52\x9b\x46\xc0\x56\x47\xaa\x71\x4a\xf4\x51\x52\xf6\x44\x4d\x98\xa2\x8f\x12\xc7\x87\x4c\xd1\x47\xc9\x7d\x99\x34\x85\x8f\xf9\x6e\x9a\x0f\xf3\x8d\xb7\xdd\x13\x5c\x61\xe2\x6d\x67\x18\xdb\x6a\xd4\x3b\x99\x6f\xbc\xed\x9e\xc0\xea\x13\x6f\x4b\x6a\x02\xed\x4c\xbc\xed\xc4\xdb\xee\xd9\xaf\x33\xf1\xb6\xa4\x26\xcc\xed\xc4\xdb\x4e\xbc\xed\x9e\x48\x0a\x13\x6f\x4b\x6a\xc2\xdc\x4e\xbc\x2d\xa9\xd9\x80\x3a\x4f\xe6\x1b\x82\xbb\x27\xea\xc5\x84\xe0\x92\x9a\x0d\xa8\x13\x82\x4b\xee\xcb\x6a\xd2\x4e\x69\x29\x7c\xf1\xcb\x4b\x92\xec\xc6\x0e\x9d\x87\xec\x1e\xc9\x6e\xf1\xcb\x27\xbb\xea\x28\x76\x08\xa9\x3b\x91\xba\x09\x55\x3b\x91\xba\x13\xa9\xbb\x67\x5b\xcf\x44\xea\x92\x9a\xed\xac\x13\xa9\x3b\x91\xba\x7b\xb6\xf5\x4c\xa4\x2e\xa9\x09\x32\x3b\x91\xba\xf3\x6c\x1f\x97\x79\xc2\x57\xda\x37\x97\xa5\x2a\x7d\x7e\x01\xf4\xee\xd9\xc3\x33\x01\xbd\xa4\xf2\x16\x00\xbd\xc4\x59\x32\x13\xd0\x4b\xee\x5f\x4a\x93\xdd\x0c\x06\x1c\x08\x40\x2f\x29\x7b\xb6\xf5\x4c\xe1\x4d\x67\x20\xdf\x9a\x60\x44\x13\xe3\x4b\x6a\xcb\x94\x50\x28\xd3\x79\x32\xfc\xd9\xe9\x33\x4f\x86\x3f\x52\xb3\xad\x76\x9e\x0c\xff\xc9\xf0\x27\x3e\xc4\x3c\x19\xfe\x88\x33\x6d\xe6\xc9\x97\x3f\x19\xfe\x44\x74\x98\x27\xc3\x1f\xa9\x1c\x19\x5c\xf1\x3c\x59\xf9\x4b\xe3\x65\xe5\x23\x8e\xbe\x99\x27\x2b\x0f\x3f\xde\x2f\x8d\x97\xf9\x86\x1f\xf3\x77\xe0\xc7\x13\x7e\xbc\xe7\xa0\xfd\x09\x3f\x26\x8e\xbe\x99\xf0\xe3\x09\x3f\xde\x2f\xef\x8f\xf9\xc6\x15\xb7\x4d\xd2\x92\xf4\x75\x59\x4a\xcf\xe5\xc6\x15\x27\xee\xd1\xc4\x15\x13\x47\xdf\x4c\x5c\x31\x29\x7b\x76\x17\x4d\x5c\xf1\x4c\x48\x55\x47\xdf\x4c\x21\x55\xe7\x99\x5d\x03\x7b\x0e\xae\x9f\xa7\x4f\x21\x91\x9a\x00\xaa\xf3\xf4\x25\x04\x57\xbc\xe7\xf4\xf9\x89\x2b\x26\xd6\x3b\x71\xc5\x13\x57\x9c\x33\x73\x26\xae\x78\xe2\x8a\xf7\x9c\x06\x31\x71\xc5\xc4\x99\x39\x13\x57\x4c\xca\x9e\x4d\x4e\xf3\xca\x41\xd3\x13\x57\x9c\x90\xaa\x13\x57\x4c\xee\xcb\x3c\x74\x4a\x4b\xad\xc5\x1a\xe1\x8a\x27\xae\x78\xcf\xa1\x11\x13\x57\x4c\x2a\xb7\x0b\x57\x4c\x6a\xe2\x2a\x4d\x5c\x31\xb9\x7f\x99\x22\x68\xe1\x81\x85\x6b\xe2\x2a\xcd\x2b\xc7\xba\x4e\xc1\x58\xf7\x1c\x1a\x31\x51\xc2\x13\x25\xcc\x61\x43\x09\x4f\x94\xf0\x9e\x63\x1e\x26\x4a\x98\x54\x0e\x1b\x4a\x78\xa2\x84\xf7\x6c\x93\x9a\x28\x61\x52\x5b\xf3\x4b\x85\xd7\x9c\xaf\x7c\x98\x45\x09\x93\x9a\x28\x4d\x13\x25\x4c\x1c\xf1\x33\x51\xc2\xa4\xec\x97\x92\x6a\xe1\x28\xe1\xec\x97\x9e\x28\xe1\x79\x3d\x2d\x5c\x49\xb5\x70\x94\x70\x02\x99\x4e\x94\xf0\xbc\x9e\x16\xae\x08\x5a\xf8\xa5\x85\xc7\xc6\x5e\x5a\x78\xe4\xbe\x2c\x79\x1b\x5e\xe9\xc8\x43\x4f\xbf\xf4\xd0\xa7\x23\xc8\xaf\x8e\x10\xa9\x9c\xc9\x8b\x1f\x03\x4d\xde\xaf\xd6\x7e\x7b\xdc\x46\x2e\x93\xca\xd7\x44\x2e\xcf\xcb\x04\xf3\x72\x67\x13\xcc\x48\x6d\xf9\xa2\x77\xf1\x69\xae\xa7\xb5\xc7\x3d\x04\x38\x93\x9a\xad\xde\xf3\xf2\xe1\xef\xe2\xd3\x5c\xb1\xb7\x17\x9f\x26\x52\xdb\xf3\x4b\x15\xc1\xa7\xc9\x59\xda\xf3\xe2\xd3\x44\x1c\x89\x34\x2f\x3e\x0d\x82\x7a\xbf\x62\x5c\x11\xd4\x13\x41\xbd\xe7\xf0\x8c\x89\xa0\x9e\x08\xea\x1c\x93\x34\x11\xd4\x13\x41\xbd\xe7\xa0\x8c\x89\xa0\x26\xb5\xe9\x9e\xfc\x0c\xf1\x6c\xf7\x1c\x8b\x3c\xc5\xb3\x25\x4e\x53\x9a\x08\x6a\x72\x5f\x96\x62\xd9\x64\x11\xa9\x4d\x49\x7d\x0c\x04\x5a\xef\x89\xf7\x31\x81\xd6\xc4\xa1\x4b\x13\x68\x4d\x2a\xe7\x5b\x3c\x5b\x72\xff\x32\x45\xe0\x8e\x5c\xdc\x11\x75\xc4\x1d\xb9\xb8\x23\x3d\x43\xcb\xc5\x1d\x09\x96\xed\xb8\xa6\x79\xf9\xb4\x08\xd1\xde\x73\x60\xc7\x84\x68\xcf\xce\x1d\x49\x55\x8a\x71\x3b\xc5\xb8\xdd\x73\x56\xf0\x14\xe3\x96\x54\x7e\xbb\x18\xb7\x53\x8c\xdb\x3d\x87\x00\x4f\x31\x6e\x49\xe5\xb7\x8b\x71\x3b\xc5\xb8\xdd\xb3\x37\x6c\x8a\x71\x4b\x6a\x22\xa5\x4e\x0c\x38\xa9\xd9\xd4\x3e\xc5\xb8\x25\xf7\x2f\xf3\x00\xee\x48\xe7\x8e\xc4\xc3\xec\xdc\x11\xf4\xf8\x9e\xbd\x61\x13\x3d\x4e\x6a\xa2\x9d\x4e\xf4\xf8\x44\x8f\xef\xd9\x1b\x36\xd1\xe3\xa4\x26\xda\xe9\x14\xeb\x76\x76\x56\xd8\xde\xad\xce\x0a\x77\x56\x38\x8e\x68\x67\x85\x3b\x3f\xa3\xc7\x32\x77\x7e\x46\x67\x85\xbb\x24\x85\x67\x5e\x73\xae\xc7\xc4\xa2\x93\x6a\x36\x82\x45\x27\x35\x41\x4c\x27\x16\x7d\x8a\xaf\xbb\xdb\x94\x25\xbe\xee\xc4\xa2\x67\x93\xff\xc4\xa2\x4f\x2c\xfa\x9e\xd3\x3f\x26\x16\x9d\xd4\x04\x31\x9d\x9d\xb7\x00\x4f\xdf\x73\x9c\xe8\x84\xa7\x4f\x78\xfa\x9e\xc3\x22\x27\x3c\x7d\xc2\xd3\x13\xb0\x74\xc2\xd3\x27\x3c\x7d\xef\xde\x0c\x1b\x06\x4f\x4f\xd4\xd1\x09\x4f\x9f\xf0\xf4\xbd\xab\x72\xc6\x09\x9e\x9e\xa8\xa3\x13\x9e\x4e\xee\xcb\x52\x2c\x5b\x4f\x22\x35\x51\x47\x67\x37\x98\xa3\xd8\x8f\x97\x4a\x62\xa4\x50\xec\x26\x59\x28\x76\xe2\xc0\xb0\x89\x62\x27\xf7\x2f\x53\x04\x83\x79\xa4\x9a\x77\x75\xd3\x33\xb0\xfb\x91\x43\x3c\x26\xd8\x7d\xf6\x7c\x18\x4b\x58\xbc\xd9\x7d\x18\xeb\x59\xea\x38\x5e\x4a\x6a\x80\x8f\xd4\x33\xee\x08\xfe\x7d\x26\xda\x6f\x4d\xe4\xd0\xd9\xcd\xe2\x44\xfe\x3d\x5e\xb2\xcb\x94\x45\x6a\xc2\x84\x4e\x91\x7f\x27\x72\xfe\x78\xb9\x1b\x53\x16\xa9\x26\x76\xdd\x5c\x2c\x52\x8e\x1c\xf6\x37\xbb\x2f\x5e\x11\x87\x99\xcd\x6e\x6b\x4b\xe4\xbe\x2c\x85\x37\x27\x8b\x38\xcc\x6c\x76\x73\x32\x68\xfe\xf1\xd2\xc1\xd9\xca\x88\xc3\xcc\xa6\xd0\xc2\x13\xad\x7f\xbc\xe2\x1b\xa0\xf5\x67\xcf\x76\x97\x23\x27\xc3\xcd\xce\xfa\xf4\xaf\x27\x24\x6f\x26\x3e\xa0\xfe\xe3\x95\x69\x14\xa8\x9f\xd4\x84\xf1\x9b\xa0\xfe\x29\x02\xf1\x91\x63\xd5\xa6\x08\xc4\xa4\x86\xef\x98\x22\x10\xcf\xb1\xab\xcb\x38\x0c\x83\xa5\x89\xd4\xc4\x09\x9d\x83\xa5\x19\x87\x46\x13\x4f\x60\xb0\x34\x11\x87\xaf\x4d\xa7\x06\x90\x9a\x38\xa1\x73\xb0\x34\x91\x72\xe4\x5c\xaf\x39\x58\x9a\x48\x4d\xec\xc0\x39\x58\x9a\xc8\x7d\x99\xb4\x53\x5a\x0a\x9f\x3a\x1a\x2c\x8d\x63\x09\x8e\x57\xc6\x6e\xc7\x12\xcc\x1c\x45\x50\xcd\x82\x07\x7f\x6f\xb4\xe7\xa1\x29\x02\x4b\x13\xa9\xe7\x76\xfc\xf6\xd0\x3d\x18\x22\x87\x1b\x1c\x39\xa8\x6b\x3a\xdc\x60\x3a\xdc\xe0\xc8\xd1\x4f\xd3\xe1\x06\xa4\x26\x78\xe1\x74\xb8\xc1\x74\xb8\xc1\x91\x53\x98\xa6\xc3\x0d\xa6\xc3\x0d\xc2\xc3\x4c\x87\x1b\x4c\x87\x1b\x1c\x39\xe9\x68\x3a\xdc\x80\x54\xb3\x75\x87\x1b\x4c\x87\x1b\x1c\x39\xd6\x68\x3a\xdc\x60\x8e\x7c\x62\x0a\x36\x33\x87\x4f\x4c\x0e\x37\x38\x4a\x7a\x94\xc3\x0d\x48\x4d\x78\xc4\xe9\x70\x03\xe2\xe4\xbb\x39\xb8\x66\xce\x3b\x38\x72\x24\xd0\x74\xde\x01\xa9\x09\x85\x38\x9d\x77\x40\xee\xcb\xdc\x4d\xe1\xe3\xc1\x25\x16\xe9\x74\xde\xc1\x74\xde\xc1\x91\x73\x48\xa6\xf3\x0e\x88\x73\xf4\xe6\xb0\xa1\xc7\x11\x08\x47\x8e\xec\x99\x8e\x40\x98\x23\x9f\x7b\x8e\xa2\x2e\xd9\x93\x48\x0d\xbf\x33\x07\x73\xe2\xa4\x84\xa3\xa8\x24\x86\x22\x52\x13\xb3\x74\x0a\x08\x3d\x1d\x9e\x70\x14\x99\x63\x01\x1c\x9e\x70\xe4\xc4\x8e\xe9\xf0\x84\x99\x20\xd0\x35\x71\x4c\xe7\xe0\xcc\x08\x08\x7d\xe4\xb8\x87\x29\x20\x34\xa9\x3e\x4c\x08\x08\x3d\x05\x84\x3e\x72\x9e\xc2\x14\x10\x9a\x54\x1f\x26\x04\x84\x9e\x02\x42\x1f\x45\x7b\xe4\xa5\x44\x1c\x19\x38\x1d\xd8\x40\x6a\x22\xa0\x4e\x01\xa1\x49\x39\x72\x14\xc0\x1c\xbc\x94\x48\x0d\xa9\x34\x07\x3b\xe1\xa8\x87\x23\x47\x01\x4c\x47\x3d\x90\x9a\x68\xa7\xd3\x51\x0f\x73\x32\x0a\x21\xe9\xe7\x64\x14\x26\xa3\x90\xaf\xd4\x93\x51\x98\x8c\x82\x8d\x77\x93\x51\x98\x8c\x42\xc6\xcc\xc9\x28\x4c\x46\xc1\xc6\xbb\xc9\x28\x4c\x46\xa1\x49\xda\x24\xbd\x5d\x96\xbb\xe9\xb3\x53\x9f\xcd\xd0\x2a\x08\xf5\x74\x48\xc4\x11\xb0\x7b\x3a\x24\x82\xd4\xc4\xb7\x9c\x0e\x89\x98\x0e\x89\x38\x6c\x9f\x73\x48\x04\xa9\xbe\xca\x38\x24\x62\x3a\x24\xe2\x08\x63\x3d\x1d\x12\x41\xea\x19\x1f\xdf\x21\x11\xa4\x9e\x99\x7f\x38\x24\x82\x94\xc3\xc6\x3b\x41\xa8\x49\x4d\x4c\xd4\x29\x08\x35\xb9\x2f\x4b\x11\x18\x82\xc9\x10\xe4\xcb\xf5\x64\x08\x1c\x39\x71\xd4\x18\x31\x47\x4e\x4c\x47\x4e\x1c\x39\xaa\x65\x3a\x72\x62\x3a\x72\xe2\x08\x43\x3b\x9d\x29\x31\x9d\x29\x11\xc4\x6b\x3a\x53\x62\x3a\x53\xe2\xa8\x32\xcc\x63\x70\xa6\x84\x2f\x4b\xce\x94\x98\x33\x9b\x55\x8f\x2a\x27\xa6\x38\xce\x94\xf0\x65\xc9\x99\x12\xa4\x1c\x81\x3d\xe7\xe4\x31\x4c\x1e\x43\xe6\x2b\x93\xc7\xe0\xe8\x89\xa3\x7a\x02\x8f\xc1\xd1\x13\x09\x9e\x3a\x1d\x3d\x41\x6a\x18\xb2\xe9\xe8\x09\x72\xff\x52\x9a\xec\xf2\x18\x32\x37\x71\xf4\x04\xb9\x2f\x93\xa6\x2e\xf3\x95\xc0\x37\xa9\xe9\x2b\xc1\x9c\x4f\x76\xa5\xc9\x6e\xbe\x12\xf8\x26\x35\x39\x11\x4e\xa8\x38\xc2\x53\x4e\x27\x54\x10\xdb\x9d\x9d\x50\x31\x9d\x50\x71\x3e\x49\x9b\x24\xb9\xcd\x6c\x45\xc8\x69\x52\xcf\xcc\x25\x9c\x50\x41\xee\xcb\xb6\xa4\x9d\xd2\xf2\xe6\xd3\x4b\x1d\x5a\x41\xee\xcb\xfc\xb4\x4b\xcb\x3b\x48\x2f\x15\x99\x7a\xe6\x6c\x8b\xfb\x32\x3f\x5d\xd2\x14\xea\x4c\x52\x0a\xb5\x9e\xf6\x2c\x4d\x7b\x76\xde\x85\x2f\x68\xce\xbb\x20\xd5\xa7\x31\xe7\x5d\x90\x72\x04\x76\x9c\xce\xbb\x98\xce\xbb\xf0\x69\xcc\x79\x17\x73\x3d\x0d\x35\x03\x9b\x83\x2c\xa6\x83\x2c\x12\x13\x75\x3a\xc8\x62\x3a\xc8\xe2\x08\x64\x38\x1d\x64\x41\x6a\x02\xa0\x4e\x07\x59\x4c\x07\x59\x1c\x5b\x4c\x83\x83\x2c\x48\x4d\x00\xd4\xe9\x20\x8b\xe9\x20\x8b\x63\xcb\x87\x5d\x07\x59\x90\xea\x73\x99\x83\x2c\x48\x3d\xfb\x6f\x47\x11\x9b\xce\xb9\x20\xe5\xd8\xe2\x22\x3a\xe7\x62\x3a\xe7\x22\x71\x4f\xa7\x73\x2e\xa6\x73\x2e\x8e\x00\x7c\xd3\x39\x17\xc4\xd1\xa4\x73\x19\xa9\x9c\x73\x71\x04\x88\x9b\xce\xb9\x20\xf5\x92\x73\xbd\x4e\xb4\xea\xc3\x5e\x51\xa7\x55\x4c\x67\x4e\x1c\xa1\xa8\xa6\x33\x27\x48\xf5\xa5\xcf\x99\x13\xd3\x99\x13\x47\xb8\xa7\xe9\xcc\x89\x29\x0c\xf5\x11\x68\x68\x3a\xff\x61\x3a\xd8\xe1\x80\xa2\x38\xd8\x61\x26\x0c\xb5\x43\x52\xa7\x30\xd4\x53\x18\xea\x23\x31\x3b\xa6\x30\xd4\xa4\x26\x16\xe9\x74\xfe\xc3\x14\x86\xfa\x80\x4a\x08\x43\x4d\x6a\x50\xc5\xe9\xfc\x87\xe9\x60\x87\x03\x03\xe1\x60\x07\x52\x13\x8b\x74\x3a\xd8\x81\xd4\x4b\x95\x1b\xbd\x1c\xec\x70\x3c\x1d\xcf\xe8\xe5\x60\x87\x4b\x95\x73\x69\x9d\xd8\x70\xe0\x0c\x9c\xd8\x40\xaa\x0f\x98\x6f\xa3\x97\x88\xd0\x87\x5d\xa6\x0e\x54\x98\x02\x3b\x1f\xb6\x4e\x0b\xec\x4c\xea\x55\x24\x5d\x92\xde\x2e\xcb\x4f\x59\x80\x48\xf5\xed\xf3\x6d\x86\x2a\xec\xf2\x61\x57\xb0\xc3\x0d\x66\x0e\x2f\x28\x87\xbd\x9c\x6f\xc6\x3f\xe2\x0c\xda\xf9\x66\xfb\x9d\x64\x70\xd8\xa4\xe9\x24\x83\xe9\x24\x81\xc3\x8e\x45\x27\x09\x4c\x47\x04\x1c\x76\xe8\x39\x22\x60\x26\xe0\x71\x0d\xd0\x39\x05\x3c\x9e\x8e\x08\x38\x6c\x52\x73\x44\x00\xa9\x01\x3a\xa7\x23\x02\xa6\x23\x02\x0e\x3b\xd2\x1c\x11\x40\x6a\xa2\x91\x4e\x47\x04\x4c\xec\xff\x61\x0f\x19\xf6\x9f\xd4\x44\x23\x9d\xd8\x7f\x52\x7d\xac\xc5\xfe\x93\x72\xd8\xa7\x85\xfd\x27\xd5\xc7\x5a\xec\x3f\xb9\x2f\x73\x37\x35\xa2\x99\x67\xc2\x84\xfd\x27\xf7\x65\x9e\x20\xbb\x53\x76\xf3\x1a\xe6\x93\x5d\x75\x14\xd3\x89\xfd\x9f\xd8\x7f\x9f\x7e\xb1\xff\x13\xd4\x7f\xd8\xe2\x05\xea\x27\x35\x11\x45\x27\xa8\x7f\x82\xfa\x0f\x5b\xbc\x40\xfd\xf3\x1d\x78\xe1\xb0\xf3\xe9\x6d\x86\x17\x71\x14\xf0\xc4\xf9\x4f\x50\xff\x71\x68\x5d\xba\x1b\xa8\xdf\xc7\x5f\x50\xff\x14\x2a\xf9\xb0\x95\x08\x73\x3f\x85\x4a\x3e\xec\x35\x13\x2a\x99\x38\x45\x78\x62\xee\x27\xe6\xfe\xb0\x3b\x0c\x73\x4f\x6a\x82\x31\x4f\xcc\xfd\xc4\xdc\x1f\x36\xa0\x60\xee\x49\x0d\x6a\x3b\x31\xf7\x13\x73\x7f\x1c\xbb\xbb\x75\x69\xa9\x91\x7c\xf6\xc7\xdc\x4f\xcc\xfd\x61\x2f\x08\xe6\x9e\xd4\x04\x28\x9d\x98\x7b\xe2\xe8\xe2\x89\xb9\x9f\x60\xfa\xc3\xee\x0d\x30\xfd\x14\x5c\xf8\xb0\x0d\x01\xd8\x3e\xe1\xe9\x87\x75\x6c\x78\x3a\x71\xc4\xf1\x84\xa7\x4f\x78\xfa\x71\xa4\xd9\xc0\xd3\x27\x3c\x3d\x47\x1c\x4f\x78\xfa\x84\xa7\x1f\x47\x5e\x34\x3c\x9d\xd4\x4b\x49\x0d\x3a\x42\x04\x1f\x76\x06\x09\x11\x4c\x9c\x84\x3c\xe1\xe9\x13\x9e\x7e\x58\xa3\x85\xa7\x13\x27\x21\x4f\x78\x3a\xa9\x97\x3a\x32\xaa\xe0\xce\x0f\x0b\x9d\xb8\x73\x52\x7d\x35\xc7\x9d\x4f\xa4\xf8\x61\xb9\x12\x29\x4e\x6a\x02\x99\x4e\xa4\xf8\x44\x8a\x1f\x96\x09\x91\xe2\x13\x29\x7e\xb4\x74\x1a\xa4\xf8\xfc\xe8\x47\x99\x3a\x7d\xf4\x23\xa4\xf8\x61\xd5\x0a\x29\x3e\x05\xfa\x3d\xec\x67\x41\x6d\x4f\x38\xf6\xd1\xbc\x2e\xed\xf7\xa3\xfd\x66\x9e\xf4\xd1\x7e\x85\xe1\x3d\x2c\x07\xc0\xa1\x27\x5a\xf9\xf0\x71\x18\xad\x4c\x1c\x04\x3d\xbf\x1a\xa6\xb8\xb6\x87\x8f\x9c\x98\xe3\x89\x12\x3e\x7c\xea\x42\x09\x93\x7a\xfd\x0d\x27\xb3\xcc\x2f\x5b\x0c\xfb\x3d\x7c\x0c\x82\xfd\x92\x1a\x1e\x7b\xc2\x7e\x27\xc6\xf7\xf0\x31\x01\xe3\x4b\x6a\x78\xec\x89\xf1\x25\xf7\x65\xd2\x4e\x69\xa9\xd8\xcc\xc0\x30\xbe\x13\xe3\x7b\xe4\x6c\x8b\x89\xf1\x9d\x18\xdf\xc3\x54\x1b\xe3\x3b\x31\xbe\x87\xc9\x15\xc6\x77\x62\x7c\x2d\x6f\x60\x7c\x27\xc6\xf7\x30\x23\xc0\xf8\x92\x7a\x3d\xbf\x94\x39\x56\x3c\xa7\x34\x4c\xe1\x60\x89\x03\xb6\x27\xc6\x77\x0a\x07\x7b\x58\xf5\x15\x0e\x96\xd4\x04\x5d\x9d\x18\x5f\x52\xc3\x8f\x4f\x8c\xef\x04\xef\x1e\xdc\x64\xf0\xee\x0c\xb0\xeb\x68\xee\xf9\x65\x8a\xbf\x3e\xc9\x59\xba\x45\xea\x92\x7a\xdd\x53\xb0\x05\xd4\x25\x19\xac\x17\x50\x77\x01\x75\xb3\xc8\xb2\x80\xba\x4b\xe8\xd7\x23\x4e\xec\x12\xdb\x95\xd4\x20\xeb\x0b\xa8\x4b\xee\xcb\x7a\xd2\x4e\x69\x79\x2f\xcd\x2f\x2f\x49\x6a\xe8\xee\xda\x0b\xcf\x4b\x1c\x1a\xbe\xf0\xbc\xeb\xf5\xb4\x99\xdb\xd7\x5d\x78\x5e\x52\x13\xc8\x75\xe1\x79\x49\x4d\xd0\xd6\x85\xe7\x25\xf7\x2f\x73\xb7\x53\x76\xb3\xe4\x76\x9d\x6e\xe6\x99\x4f\xfb\xe8\xb9\xdb\xe5\x01\x0c\xd6\xed\x1d\x2d\xf0\xee\x02\xef\x1e\x71\xf1\x16\x78\x97\xd4\xac\xe6\x2c\xf0\xee\x02\xef\x1e\x59\xcc\x5d\xe0\x5d\x52\x13\x7a\x75\x81\x77\x17\x78\xf7\x88\xb3\xb5\xc0\xbb\xa4\x26\x1c\xeb\x02\xef\x92\x9a\xd0\xab\x0b\xbc\x4b\xca\x11\x1f\x67\x89\xd0\xba\xc0\xbb\x89\x3f\xbf\xc0\xbb\x0b\xbc\x7b\xc4\x9f\x59\xe0\x5d\xe2\xf8\xf5\x95\x68\xad\xb7\xb8\x5b\xcd\x9b\x1f\xee\xa6\x35\x5f\x29\xfc\x50\xaa\x2c\xb9\x1d\x19\xd1\xd7\x6b\x78\xa5\xc3\x43\x25\x79\xa8\x46\x9f\x11\x7d\x89\xf7\x4a\xea\xa5\xcd\x0c\x85\xd7\xe8\xb3\x74\xbb\x42\x14\x3f\x52\x13\x8c\x75\xe1\x8a\x17\xae\xf8\xc8\x30\xb7\x70\xc5\xa4\x5e\x9a\xd6\xf4\x50\x86\x33\xa3\xcb\xc2\x15\x2f\x5c\xf1\x11\x13\xbe\x70\xc5\x0b\x57\x7c\x64\x75\x71\xe1\x8a\x17\xae\xf8\xd2\x04\x3f\x2e\xe3\x67\x67\x25\x6f\xe1\x8a\x49\x4d\xd0\xd6\x85\x2b\x5e\xb8\xe2\xe3\x69\x22\x1f\x45\xe5\x67\x77\xbf\x54\x54\x7e\xf6\xf3\xee\xbf\x1e\xca\xcf\xee\x79\x0d\x5f\x0f\xe5\x67\xf7\xdc\xec\xeb\x3d\xf3\xb3\x9f\xd7\xf0\x95\x0f\x7e\x76\x4f\x95\x7f\x95\x9e\x4d\xf7\x1a\x00\xc3\x2b\x90\x70\x4d\x84\xd6\x25\x42\xeb\x02\x0c\x1f\x8a\x00\x18\x26\x35\xe7\x1c\x2c\xc0\xf0\x02\x0c\x1f\xf2\x06\x18\x26\x35\x11\x5a\x17\x60\x78\x89\xd0\x7a\x64\xf5\x70\x89\xd0\x4a\x6a\x22\xb4\x2e\x0c\x31\xa9\x89\xd0\xba\x44\x68\x25\xe5\xf8\x6b\x9a\x7c\x1c\xf2\x71\x24\x49\x3e\x4c\x01\xfe\x9a\x76\x4a\x3b\x73\x59\x0a\x9a\x29\xc0\x02\x29\x1f\x4f\x1a\xbb\x15\xa9\xfd\x95\xac\x65\xd8\x59\x02\xb9\x1e\x39\xc7\x7f\x09\xe4\x4a\x44\x00\x58\x02\xb9\x2e\xfc\xf2\x91\x98\xaa\x0b\xbf\xbc\x8a\x99\x42\x22\x7c\xae\x72\x3e\xd7\xb5\xfc\x34\xd5\x7b\xca\x1b\x1b\xd2\x6f\x47\x73\xc1\x9c\x49\xcd\x9a\xe8\x12\x7a\x75\x21\x9f\x8f\x44\x9d\x5c\xc8\x67\x52\x13\x2a\x76\x21\x9f\x17\xf2\xf9\xc8\xda\xdb\x42\x3e\xaf\xc2\x4f\xc9\xd2\xd8\x2a\xdd\x53\xd3\xed\x9f\x62\xe9\xf6\x00\xe9\x23\xd1\x0d\x17\x40\x7a\x01\xa4\xb3\xea\xba\x00\xd2\x0b\x20\x7d\xf4\xf6\xdb\x74\xf7\xc2\x4f\x93\xfa\x54\x0e\xab\x20\xce\xeb\x91\xf3\x0c\x96\x38\xaf\xa4\x26\xe0\xec\xc2\x4f\x2f\x60\xf4\x91\xd5\xb4\x05\x8c\x26\x35\xc1\x65\x17\x30\x9a\x88\xa2\xb0\x80\xd1\xa4\x1c\x89\x62\xb7\x04\x70\x25\x35\x4b\xbc\x4b\x00\x57\x72\x5f\x96\xbc\x31\x14\xf8\xe9\x2c\xf1\x2e\xfc\xf4\xc2\x4f\x1f\x39\xf6\x60\xe1\xa7\x89\x98\x0c\x4b\x00\xd7\x85\x9f\x3e\x12\x3c\x6e\xe1\xa7\x49\x4d\x58\xda\x85\x9f\x5e\xc5\x4c\xa5\xa7\x7f\x96\xa5\xf0\x99\xa9\x24\x2c\xed\x2a\x4b\xe1\x59\xa2\x04\x77\x5b\x30\xeb\x55\xac\x3b\x65\xf1\x6f\x61\xaa\x89\xa8\x0f\x4b\x9c\xd7\x05\xb3\x6e\x59\xd5\x5b\x30\xeb\x85\xa9\x6e\x2f\x2d\x9e\xf1\x00\x4b\xb7\x1c\x19\xbf\xc0\xd2\xa4\x26\xcc\xed\x02\x4b\x2f\xb0\x74\x4b\x10\xa8\x05\x96\x26\x35\x4b\xd7\x0b\x2c\xbd\xc0\xd2\x2d\x41\xf6\x17\x58\x9a\x54\x9d\x00\x2c\xbd\xc0\xd2\x2d\xd1\x9d\x16\x58\x9a\xd4\xac\x70\x2f\xb0\x34\xa9\x39\x10\x65\x81\xa5\xc9\xfd\xcb\xdc\x8d\x09\xa8\x4c\xc0\xe6\x66\xf2\x11\x13\xd0\xb2\x74\xb6\xc4\x76\x25\x62\x5e\x2c\xb1\x5d\x17\xf4\xba\x25\x80\xd2\x82\x5e\x93\x9a\xf0\xb4\x0b\x7a\xbd\xea\x29\xbb\x47\x2a\x84\x17\x11\x11\x1a\x63\xa1\xb1\x17\x1a\xbb\x65\x65\x6b\xa1\xb1\x17\x1a\xbb\xab\x36\xbe\x00\x1a\xbb\x25\x8e\xcb\x42\x63\x93\x9a\xb8\xb3\x0b\x8d\xbd\xd0\xd8\x2d\x07\x22\x2c\x34\x36\xa9\x2c\x00\x1a\x7b\xa1\xb1\x5b\xa2\xac\x2c\x34\x36\xa9\x59\xcb\x5f\x68\x6c\x52\xb3\x6e\xbf\xd0\xd8\xa4\xb4\x44\x23\x59\xc2\xac\x12\x21\x3a\x96\x30\xab\xe4\xbe\x2c\x45\x60\x3b\x40\xdb\x39\xd3\x65\x81\xb6\x17\x68\xbb\xe5\xb8\xfc\x05\xda\x26\x22\x79\x2c\xd0\xf6\x02\x6d\xb7\x44\xfc\x58\xa0\xed\x05\xda\x6e\x09\xfc\xb0\x40\xdb\xa4\xf6\x3d\x79\xd3\x29\x41\xdb\x2d\xcb\x43\x0b\xb4\x4d\x6a\xdf\x93\x37\x3d\xb0\xa6\x07\xb6\xa2\xbd\xe9\x81\x55\x0f\xcc\x80\x5e\xf5\x40\x6c\x77\x2b\x5a\x8d\xae\x85\xed\x6e\x45\x86\xf5\x19\x6c\x77\xb6\x28\x2c\x6c\xf7\xc2\x76\xb7\x9c\x70\xbf\xb0\xdd\xa4\x76\xcd\xd2\x20\x2f\xe4\x69\x2b\x87\x9f\x7a\x81\x19\xe4\xbb\x66\x69\x90\xaf\x19\xe4\x5b\x8e\x52\x58\xd5\x20\x1f\xa9\x5d\xb3\xd4\x4f\x23\x35\x07\xd3\xac\x6a\x90\x8f\x94\x96\xf3\xd7\x57\x35\xc8\x47\x6a\xc2\xe9\xae\xfa\x95\x8f\x6c\x58\x69\x39\x6b\x7d\xd5\xaf\xba\x8c\x2f\x60\x3c\xa8\x7c\x01\xd8\x79\xcb\x59\xeb\x0b\x76\x4e\x84\x40\x59\xc2\xac\x2e\x61\x56\x5b\x8e\x6f\x58\xc2\xac\x92\x9a\x70\xba\x4b\x98\xd5\x25\xcc\x6a\xcb\xa9\xdf\x4b\x98\x55\x52\x13\x4e\x77\x09\xb3\xba\x84\x59\x6d\x39\xa7\x7b\x09\xb3\x4a\xaa\x41\x08\xea\xbe\xa0\xee\x2d\xa7\x58\x2f\xa8\x3b\xa9\x39\x6f\x67\x41\xdd\x17\xd4\xbd\xe5\xd8\xfe\x05\x75\x5f\x50\xf7\x84\xd8\x5d\x50\xf7\x05\x75\x6f\x59\xcd\x5a\x50\x77\x52\x13\x3b\x77\x41\xdd\x17\xd4\xbd\xe5\xac\xe8\x05\x75\x27\xe2\xbf\x2c\xa8\xfb\x12\x66\xb5\xd5\xb8\x38\xc2\xac\x92\x9a\x38\xb9\x0b\xc3\x4e\x6a\x62\xe2\x2e\x0c\x3b\xb9\x7f\x99\x07\x98\x62\x44\xaa\x41\x51\xe4\x55\x52\x5a\x0e\xa0\x58\x1b\x97\x21\x52\x13\xff\x76\x6d\xa7\xc2\xb3\x3e\x35\xbe\x00\x22\x7e\x09\xd0\xda\x72\x5c\xf2\x42\xa7\x2f\x74\x7a\xab\xdb\x6f\x43\x62\x0b\xbc\xbe\xc0\xeb\x39\x52\x68\x81\xd7\x17\x78\xbd\xe5\x2c\xdb\x05\x5e\x27\xb5\x6b\x40\x06\x79\xf1\x5b\x5b\x0e\xae\x5d\xe2\xb7\xae\x00\xeb\x35\x27\x0f\x2d\xb1\x5a\x17\x78\xbd\xd5\x34\x78\xf0\x3a\xa9\x89\x68\xbb\xc0\xeb\xa4\x26\x7a\xed\x02\xaf\x93\xd2\xaa\x46\x65\x90\x07\xaf\x1b\xf7\xd1\xe9\xe4\xbe\x2c\x45\x60\x4f\xd0\xe9\xc6\x7d\x74\xfa\x42\xa7\xb7\x1c\x94\xb1\xd0\xe9\xeb\xa1\xd3\xef\x9b\xa1\xd3\x17\x3a\x9d\x27\x80\x4e\x5f\xe8\xf4\x96\x43\x5d\x17\x3a\x9d\x88\x0b\xb4\x04\x66\x5d\xe8\xf4\x96\x60\xf1\x0b\x9d\x4e\x6a\xcf\xc4\x6d\xd7\xa4\xf6\xa7\x49\xa5\x26\x45\x5e\x25\x35\xe1\x6c\x17\x3a\x9d\xd4\x84\xae\x5d\xe8\x74\x52\x5a\x02\xc3\x2f\x74\x3a\xa9\x3c\x12\x91\x57\xc9\x7d\x59\x8a\xa0\x49\x81\xd8\xb3\x43\x69\x81\xd8\xd7\xfe\x34\xa9\x74\x62\x74\xfa\x42\xa7\x77\xf5\x61\x40\x43\xa7\xb7\xea\xa7\x06\x34\x74\x7a\xa2\xde\x2e\x74\xfa\x42\xa7\xb7\x2c\x6c\x2d\x74\x3a\xa9\x89\x7a\xbb\xd0\xe9\x0b\x9d\xde\x72\xd8\xe7\x42\xa7\x93\xda\x9f\x24\x0f\x35\xa0\x65\x2e\x87\x4e\x27\xa5\xe5\x40\xcd\x85\x4e\x5f\xe8\xf4\x9e\x39\x1a\x3a\x7d\xed\x4f\x07\x88\x03\x85\x4e\x5f\xe8\xf4\x9e\xa1\x10\x9d\xbe\x04\x41\x6d\x39\xc8\x72\xa1\xc2\x17\xb6\xbb\x65\xdd\x67\x61\xbb\x89\x10\x4b\x0b\xdb\xbd\x04\x46\x6d\x89\x3d\xb1\x10\xda\x0b\x40\xdd\x72\xb2\xdf\x02\x50\x2f\xb4\x74\xcb\xf1\x6e\x0b\x2d\xbd\xd0\xd2\xbc\x3b\xb4\xf4\x42\x4b\xb7\x9c\x67\xb6\xd0\xd2\xa4\x26\x10\xef\x12\x18\x75\xa1\xa5\xdb\xa6\xf1\x7e\xe4\xc4\x78\x13\x13\x26\x30\xea\x42\x4b\xb7\xac\x18\x2d\xb4\x34\x11\xc5\x69\xa1\xa5\x89\x88\x4d\x4b\xc4\x53\x52\x5a\xce\x11\x5b\x22\x9e\xae\x44\x34\xdd\x12\x61\x77\xed\x06\x12\x18\x74\xcb\x39\x62\x0b\x06\xbd\x82\x41\x0b\xe3\xb4\x60\xd0\x0b\x06\xdd\xb6\xf4\x66\x18\x34\x11\xc6\x69\xc1\xa0\x17\x0c\xba\x65\xad\x69\xc1\xa0\xc9\x96\x38\xb9\x0b\x06\xbd\x60\xd0\x2d\xa7\x9c\x2c\x18\x34\xd9\xb2\x2b\x6c\xc1\xa0\x89\x00\x50\x0b\x06\x4d\x4a\xcb\x11\x50\x0b\x06\x4d\x04\x80\x5a\x30\x68\x72\x5f\x96\x22\x18\x82\x22\x5b\x22\xec\x2e\x18\xf4\x82\x41\xb7\x9c\x14\xb5\x60\xd0\x64\x7b\x95\x3d\x49\x55\x92\x87\xa6\xc1\xc1\xa0\xc9\x96\x40\xbc\x0b\x06\xbd\x60\xd0\x2d\x47\x2f\x2d\x18\x34\xd9\xb2\x89\x6d\xc1\xa0\x17\xbe\xb9\xe5\x10\xa4\x85\x6f\x26\x22\x51\x2d\x7c\x33\x11\x56\x6a\x09\x82\x4a\x4a\xdb\xbd\x18\xf6\x22\x18\xf4\x96\x98\xbb\x0b\x06\xbd\x44\x37\x6d\x39\x1f\x65\x61\x9e\xc9\x96\x60\xba\x0b\xf3\xbc\x84\x2d\x6d\xbb\x0a\xd1\x4f\x91\xc3\x2d\xe7\xa8\x2c\xe4\xf0\x0a\x39\x2c\x4a\xd5\x42\x0e\x2f\xe4\x70\xcb\x21\x24\x0b\x39\x4c\x44\xa9\x5a\xc8\xe1\x85\x1c\x6e\x39\x3e\x64\x21\x87\xc9\x96\x0d\x76\x4b\xd8\xd2\x25\x6c\x69\xdb\x33\x3a\x09\x5b\x4a\xb6\x57\xfa\x1f\x24\x98\x88\x6f\xb5\x20\xc1\xa4\xb4\x3d\x9e\x11\x24\x98\x6c\x2f\x25\x30\x9e\x40\x82\x5b\xce\xf2\x58\x90\x60\xb2\x25\x0e\xef\x82\x04\x2f\xac\x6f\xdb\xe3\x19\x61\x7d\x57\x58\xdf\x2d\x71\x78\x17\xd6\x77\x61\x7d\x5b\x8e\xda\x58\x58\x5f\xb2\x25\x0e\xef\xc2\xfa\x2e\xac\x6f\xdb\xff\x96\x79\x37\x14\x98\x6c\x66\x6d\x50\xe0\x05\x05\x6e\x39\xfd\x63\x41\x81\x89\x70\x5d\x0b\x0a\xbc\x12\xfb\xb4\xb4\x9c\x59\xb1\x04\x3f\x25\xc2\x75\x2d\xdc\xef\xc2\xfd\xb6\x1c\x29\xb1\x70\xbf\x64\x33\x07\x14\x0f\x75\x89\x87\xda\xb2\x1c\xb8\xd0\xbb\x0b\x96\xdb\x72\xe8\xc1\x82\xe5\x92\x2d\xc1\x81\x17\x2c\x77\xc1\x72\x5b\x56\xe6\x16\x2c\x97\x6c\x39\xbd\x6f\x35\x7e\x29\xde\xb6\xe5\x78\x80\x85\xb7\x25\x9b\x59\x26\xde\x76\x85\xad\x2d\x2d\xd1\x4a\x16\xb8\x76\x61\x5f\x5b\x48\xfa\x85\x7d\x25\x5b\x0e\xfe\x5b\x62\x94\x2e\xc1\x47\x5b\xa0\xf2\x05\x4d\x5d\xc8\xd1\x76\xc4\x2d\x47\x8e\xae\x90\xa3\xa2\x95\x2d\xe4\xe8\x42\x8e\xb6\xac\x88\x2d\xe4\x28\xd9\x72\x66\xe0\x42\x8e\x2e\xe4\x68\x0b\x71\xbb\x90\xa3\x64\xcb\x99\x81\xab\x19\x21\x91\xa3\x2d\x28\xed\x42\x8e\x92\x2d\x21\x89\x17\x72\x94\x6c\x66\xca\xc8\x51\x52\x5a\x70\xd5\x85\x1c\x25\x9b\x99\x32\x72\x94\xdc\x97\x25\x6f\xa6\x7c\x91\xcd\x4c\x19\x39\xba\x90\xa3\xed\x88\x69\x46\x8e\x92\xed\xa5\x3e\x4c\xf9\x90\xa3\x2d\x34\xe9\x42\x8e\x92\x2d\x5b\x56\x17\x72\x74\x21\x47\x5b\x30\xd1\x85\x1c\x25\x5b\xce\x33\x5c\xc8\xd1\x25\xf8\x68\x0b\xec\xb9\x60\xa2\xab\xe9\x8d\x61\x21\x97\x48\xa3\x64\x4b\x30\xe3\x85\x09\x5d\x98\xd0\x16\x7a\x71\x61\x42\xc9\x96\x60\xc6\x4b\xf0\xd1\x25\xf8\x68\x4b\x54\x89\x05\xd9\x5c\xf8\xcc\x16\x50\x6c\x01\x30\xc9\xe6\xa3\x00\x00\x73\x01\x30\x5b\x56\xeb\x16\x00\x73\x05\xc0\x14\x95\x6e\x01\x30\x17\x00\xb3\x05\xf7\x5a\x00\x4c\xb2\xe5\x4c\xc6\x05\xc0\x5c\x00\xcc\x16\x8e\x6b\x01\x30\xc9\x96\x68\xc6\x0b\x80\xb9\x00\x98\x2d\x80\xd6\x02\x60\x92\x2d\x9b\x78\x17\x00\x93\x6c\x2f\x4d\xd0\x80\x0e\xc0\x6c\x2d\xb3\x6c\x00\x26\xd9\x12\x91\x78\x01\x30\xc9\x7d\x59\x2a\x49\x47\x6d\x3a\xaa\x96\xaa\xa3\xfe\x5f\x8c\xbd\x4d\xee\xf4\x3a\x72\x67\x3d\x7f\x57\x71\x77\xf0\xa6\x14\x14\xa9\x04\x0a\x77\xd2\xe3\xee\x3d\x64\x46\x04\x01\x0f\x6c\x17\xaa\xed\xfd\x37\x74\x4e\xba\xd0\xf0\xe4\xf6\xe0\xc1\xef\x01\xa1\x7f\x8a\xa4\xc8\xe0\x57\x1c\x86\x00\xe6\x04\x65\x4f\x01\x4c\x25\xb8\x1b\x32\x0d\x78\x9a\x02\x98\x93\x23\xc8\x14\xc0\x54\x82\xc8\xc4\x29\x80\x99\x02\x98\x13\x32\x2a\x05\x30\x95\x20\x32\x71\x0a\x60\xa6\x00\xe6\x9c\x4c\x7a\x04\x30\x15\x63\xfe\xa5\x00\x66\x0a\x3e\xce\x69\x46\xec\xe2\x80\x8f\x41\xb4\xe2\x14\x7c\x4c\xc1\xc7\x09\x75\x93\x82\x8f\x4a\xb8\xa9\x23\xf8\x98\x82\x8f\x13\x9c\x26\x05\x1f\x95\xc0\x5d\x39\x05\x1f\x53\xa2\x71\xc2\x8b\xa7\x44\xa3\x12\xb8\x2b\xa7\x44\xa3\x12\x44\x21\x4e\x89\xc6\x14\x55\x9c\x00\x25\x29\xaa\xa8\x04\x51\x88\x73\x39\x2c\x1b\xa2\x74\x02\x82\xa7\xf8\x62\x1a\xa2\x74\x82\x63\xa4\x28\x61\xca\x08\x4e\xbc\xed\x53\x46\x30\x97\x63\xb0\x25\x75\x0c\x96\x11\x9c\x38\x97\xa7\x8c\xa0\x12\x2f\x4b\x6a\x47\x95\x11\x9c\x38\x97\xa7\x8c\xa0\x12\xb8\x57\xa7\x21\x4a\xd3\xd8\xa3\x13\x77\xf0\x34\xf6\xa8\x12\xc4\x43\x4e\x19\x41\x25\x5e\xd6\x91\x63\xb0\x8c\xe0\xc4\x7f\x3a\x65\x04\x95\x70\xcf\xcc\xd8\xa3\xca\xf3\x18\x79\xb3\xd7\x2f\x7b\x3d\xc3\xcc\xb2\xd7\xcb\x08\xce\xc5\x98\x22\x23\x98\x3f\x46\xf0\x29\xbb\x8c\x60\xde\x36\x06\x96\x30\x32\x82\x29\x23\x38\xf1\x8b\x4e\x19\x41\x25\x5e\xbf\xbf\x9c\x26\x59\x1d\x98\x5e\x63\x8f\x26\x40\x60\xb8\x27\x27\x0f\x98\xc2\x7f\x73\x8d\xf7\x5f\x0f\xde\xb2\x81\x4a\x10\xdd\x38\x65\x03\x95\x78\xb1\xea\x91\x0d\x54\x8e\x89\x93\x70\xca\x06\xe6\x6d\x5b\xa1\x5d\x18\x54\x34\x65\x03\x27\x4e\xc2\x29\x1b\x98\xb7\x23\x15\x93\x50\xd9\xc0\x94\x0d\x9c\x8b\xfe\x2f\x1b\xa8\x18\x08\x33\x65\x03\x53\x36\x70\xe2\x61\x9b\xb2\x81\x4a\xe0\xe1\x9e\xb2\x81\x29\x1b\x38\xf1\x93\x4d\xd9\x40\xc5\x78\x99\x29\x1b\xa8\x04\x31\x85\x53\x36\x50\x39\x26\x6e\xa7\x29\x1b\x98\xb7\x43\x10\xe6\x5b\x36\x30\xef\x5f\xcb\xa6\x19\xcb\x06\x2a\x81\x0b\x7d\xde\x0e\x41\xb7\x83\xc6\xa2\xf9\x08\xdd\xe5\xfd\x6b\x3e\x66\xc4\xe6\x83\x04\x01\x84\x53\xe8\x2e\x85\xee\xe6\xcd\xda\x48\xe8\x2e\x65\xe2\x26\xae\x73\x29\x13\x97\x32\x71\x13\x27\xa8\x94\x89\x4b\x98\xb8\xc0\x4b\x3f\x65\xe2\x52\x26\x6e\x7a\x2c\x29\x13\xa7\x18\xf3\x33\x65\xe2\x52\x26\x6e\xe2\x6a\x93\x32\x71\x4a\x1c\xbe\x54\xd3\x2f\x13\x37\xb9\x36\x3f\x65\xe2\x14\x43\x83\xa6\x4c\x5c\xca\xc4\x4d\x7c\x63\x52\x26\x4e\x09\x82\x0a\xa7\x4c\x9c\x12\x04\x10\x4e\x99\x38\xe5\xf9\x4b\xf2\xe6\x08\x01\xf3\x16\x5c\xc0\x9b\xc6\x23\x4d\x61\xb7\x89\x4b\x4a\x0a\xbb\x25\xb0\x9b\xb1\x47\x53\xd8\x2d\x85\xdd\x26\x7e\x18\x29\xec\xa6\xc4\xc1\x72\x46\xd8\x2d\x85\xdd\x26\x8e\x13\x29\xec\xa6\x84\x5b\xc4\xc2\x6e\x29\xec\x36\xf1\x88\x48\x61\x37\x25\x8e\xc3\x24\x5f\x7a\x59\xaa\x37\x49\xc3\x24\xf3\xc1\x78\x23\xec\xa6\x84\x9b\xcb\xc2\x6e\xca\xf3\x18\x79\x73\xc9\x87\x04\xe1\x82\x53\xd8\x2d\x85\xdd\xa6\xee\x09\xc2\x6e\x4a\x10\x2e\x38\x85\xdd\x52\xd8\x6d\x7a\x34\x2c\xec\xa6\x04\x21\x84\x53\xd8\x2d\xdf\xce\x32\xb9\x51\x3f\x45\xd6\x52\x3e\x6d\x7a\xbe\x2d\x9f\xa6\xc4\x41\x73\x7b\x3b\x42\xc8\xa7\xcd\x9b\xed\x4f\xf9\x34\x25\x0e\x26\x24\xf2\x69\xf9\xb6\x8b\xdf\x74\xb7\xb7\x5d\x1c\x89\x03\x93\xfe\xb6\x8b\x8b\xb1\x4d\x4f\x78\xc5\xd8\x52\x8c\x6d\x7a\x1a\x28\xc6\x96\x60\x6c\xe1\x76\xbb\x18\x5b\x8a\xb1\x4d\xcf\xa3\xc4\xd8\x94\x38\x18\x0d\xc4\xd8\x52\x8c\x6d\x7a\x80\x24\xc6\xa6\x18\x9d\x36\xc5\xd8\x52\x3e\x6d\x7a\x0c\x24\x9f\xa6\x04\xd1\x8a\x53\x3e\x4d\x09\x22\x13\xa7\x7c\x9a\x72\x4c\x8f\x55\xe4\xd3\x94\x20\x5a\x71\xca\xa7\x29\xcf\x63\x14\x41\x4b\xf0\xd6\x12\x30\xd7\x37\x18\x6b\xbe\x61\xd2\xa7\xc7\x2a\xc0\x6a\x3f\x89\x83\xde\x2c\xb2\xa6\x1c\xd3\x53\x0f\x99\x35\x25\x0e\xf3\xe1\x2c\xf3\xed\x9a\xcf\x13\x8e\xb7\x6b\x3e\x24\x0e\xf3\xe1\x9a\x4f\x66\x6d\x7a\xfe\x20\xb3\x96\x22\x65\xd3\x3d\x6d\x91\x32\x25\x0e\xf3\xe6\x9a\x4b\xa4\x6c\xba\xd1\x2a\x52\x96\xb2\x62\xd3\x73\x47\x59\x31\x25\x40\x67\x52\x56\x2c\x65\xc5\xa6\xbb\x50\xb2\x62\x8a\x91\x7e\x53\x56\x2c\x8d\x13\x3b\xdd\x5e\x92\xf8\x4a\xf1\xae\xe5\x16\x8b\x78\x97\x12\xc7\x30\xe9\xf7\xa7\xd3\xc7\x82\xb4\x65\x1a\x75\x4e\xc5\x89\x77\xa5\x78\xd7\x72\xef\x44\xbc\x4b\x09\x6e\xca\x4e\xa3\xce\xa6\x60\xd6\x7a\xd1\x7b\x05\xb3\x52\xe2\x6a\xb9\x5a\x95\xb8\x4a\x88\xab\x38\x18\xd1\x25\xae\x52\xe2\x6a\xb9\x4c\x92\xb8\x52\x02\x4a\x28\x25\xae\x52\xe2\x6a\xbd\xfe\x5f\x86\x6f\x81\x2c\x25\x8e\xdf\x0f\xd3\x94\x05\xb2\x96\x0b\x1a\x81\x2c\x25\xb8\xbe\x3b\x05\xb2\x94\x20\x94\x73\x0a\x64\x29\xcf\x5f\x9a\x66\x36\x59\xb9\x11\xb6\x39\x05\xb2\x94\x63\x39\xf1\x17\xc8\x52\x82\x8b\xbf\x53\x20\x2b\x05\xb2\x96\x8b\x01\x81\x2c\x25\x0e\xb3\xe6\xb0\x29\x90\xb5\x9c\x49\x0b\x64\xa5\x40\xd6\x72\xa6\x24\x90\xa5\x84\xe7\x61\x02\x59\x29\x90\xb5\x9c\x02\x09\x64\x29\x46\x7c\x4e\x81\xac\x14\xc8\x5a\x4e\x41\x04\xb2\x52\x20\x6b\x39\x34\x09\x64\xe5\xc7\x91\x94\x11\x41\x20\x2b\x05\xb2\x96\x16\x5b\x20\x4b\x09\x2e\x2f\x4f\x81\xac\x14\xc8\x5a\x9a\x62\x81\x2c\x25\x08\x0c\x9d\x02\x59\x29\x90\xb5\x34\x94\x02\x59\x4a\x78\x30\x27\x90\xa5\xc4\x61\xf5\x3a\x44\x02\x5c\x1d\x4b\xc3\xf3\x71\x75\xf4\x71\x88\xb4\x7a\x1d\x22\x05\xb2\x96\xa6\x42\x20\x4b\x09\xc8\xb3\x14\xc8\x4a\x81\xac\x65\x5f\x11\xc8\x52\x82\xf8\xd1\x29\x90\x95\x02\x59\xcb\x96\x2c\x90\xa5\x04\xf1\xa3\x53\x20\x2b\x05\xb2\x96\x6d\x50\x20\x4b\x09\xe2\x3d\xa7\x40\x56\x1a\xdc\x77\xf9\x65\x0c\xee\xab\x84\x67\x8b\x06\xf7\x4d\xb9\xad\x65\xbd\xc9\x6d\x25\xdc\x56\x78\xb6\x28\xb7\x95\x72\x5b\xeb\x97\x11\x07\xba\xaf\x03\x1d\xa6\x48\x6e\x2b\xbf\xc4\x75\x5d\xbf\x37\xe8\xd5\x07\xb7\x15\xc4\x71\x4e\xb9\x2d\xe5\x79\xcc\x97\x7e\x4d\x63\x8a\xc3\x22\xea\x0b\x21\x93\xe2\x5d\xeb\xf7\x06\xe7\xcf\x48\x40\xec\xa5\x78\x97\x12\x1e\x5e\x8a\x77\x29\xc7\xfa\xaf\x34\xb3\xbb\xc8\x2e\xb3\x4a\xf1\xae\x94\xdb\x5a\xbf\x34\xcd\xc9\xd7\xc1\x95\xa1\xfa\xeb\xe0\xfa\xd5\x9c\x1c\x74\x8f\xaf\xe6\xe4\xab\x39\x61\x0d\xf5\xd5\x9c\x7c\x35\x27\xe0\x79\xf9\xd5\x5e\x7c\xb5\x17\xac\xa1\xbe\xda\x8b\xaf\xf6\x82\x78\xbb\xf9\xd5\x5e\x7c\xb5\x17\xcb\x24\x4b\xa5\xbd\x60\x0d\xf5\xd5\x5e\x88\x8f\xad\x03\x0b\x2e\x3e\x96\x5f\x47\x6a\x26\xc1\xe2\x63\x29\x3e\xb6\x88\x39\x9b\xe2\x63\x4a\xfc\x4a\xe0\x48\x6d\x48\xe2\x45\x30\xd9\x34\x24\xb1\x12\x44\x2e\x4e\xf1\xb1\x94\x0b\x5b\x1e\x41\xca\x85\x29\x01\xae\x98\x72\x61\x4a\xfc\xca\xee\x48\x2d\x17\xb6\x60\xfd\x52\x2e\x4c\x09\xcf\x7c\xe5\xc2\x94\xe7\x31\x0a\xaf\xa5\xf9\x3a\x52\xdf\xfe\xa5\xcd\x48\xe3\x03\x12\x98\x02\x5f\xf9\x03\xbe\x9e\x77\x0a\x7c\x25\x90\x97\xa1\xe0\xd3\xf0\xc3\xca\xf3\x87\x3e\x76\x99\x46\x36\xf0\x7d\x13\xf8\x4a\x49\xae\x45\xb8\xf5\x94\xe4\x52\xe2\xc0\x90\x49\x72\x29\xc7\x02\x1c\xcc\xb4\xe9\xa6\x4d\x17\x67\x0a\xe1\xae\x94\xe4\x5a\x80\x83\x29\xc9\xa5\xc4\xc1\x92\x4b\x92\x4b\x09\x3f\xa8\x24\x97\xf2\xfc\xa5\x69\x66\x97\xa5\x9f\x67\xdb\x92\x5c\x69\xe4\xe2\x45\xe8\xd4\x34\x72\xb1\x12\x90\x9a\x69\xe4\xe2\x14\xf8\x5a\x84\x4e\x4d\x81\xaf\x04\xf8\x32\x4c\x7d\x0a\x7c\xa5\xc0\xd7\x3a\x19\xa6\x05\xbe\x94\x20\x0e\x72\x0a\x7c\xa5\xc0\xd7\x22\x26\x6a\x0a\x7c\x29\x46\xb3\x4f\x81\xaf\x14\xf8\x5a\x1e\x10\x0b\x7c\x29\x71\xb2\xff\x26\xf0\xa5\x84\xcd\x54\xa2\x4b\x39\x16\x71\x47\x53\xa2\x2b\x21\xba\x02\xb0\x34\x25\xba\x52\xa2\x6b\x9d\xd7\x5f\x63\xde\x29\xf0\x95\x40\x5e\x06\xd8\x4f\x03\x1b\xa7\x24\xd7\x22\x2c\x68\x4a\x72\x65\xfe\x5a\x19\xdd\x5f\x44\x2b\x45\xb4\x16\x54\x5e\x8a\x68\xa5\x88\xd6\x0a\x8b\xed\x78\x06\xa2\x15\x27\x07\x4c\x22\x5a\x29\xa2\xb5\x08\xd9\x96\x22\x5a\x4a\x9c\x87\x7f\x69\xbd\x3a\x9e\x79\x04\x29\xa2\xa5\xc4\xf9\xfb\x4b\xeb\xd5\xf1\x2c\xec\x02\x8e\x67\x48\x10\x62\x39\x45\xb4\x94\xd0\x3f\x40\x44\x4b\x79\xfe\xd2\x34\xf3\xc1\x78\x66\xef\x14\xd1\x4a\x11\xad\x15\x1c\x9e\x88\x68\x25\x58\x56\x10\x14\x39\x0d\xaa\x9b\x06\xd5\x5d\x04\x38\x48\x83\xea\x2a\x01\x89\x9b\x06\xd5\x4d\x83\xea\x2e\x70\xb7\x34\xa8\xae\x12\x44\x3b\x4e\x83\xea\xa6\x41\x75\x17\x31\xbd\xd2\xa0\xba\x4a\x10\xed\x38\x65\xc0\x94\xb0\x17\x1b\x54\x57\x39\x16\x41\x15\xd2\xa0\xba\x4a\xd8\x8b\xcb\x69\xa9\xf4\xd8\x22\x44\x56\x4a\x8f\x29\x71\x5a\x50\x47\x42\xe9\xb1\x15\x4c\xda\xa4\xc7\x94\x38\x59\xa5\x48\x8f\xa5\xb1\x77\x57\xd0\x44\x8d\xbd\xab\x84\x36\xc1\xd8\xbb\x69\xec\xdd\xe5\xc1\xad\xb1\x77\x95\xd0\x26\x18\x7b\x37\x8d\xbd\xbb\x08\x27\x95\xc6\xde\x55\x02\x98\x38\xc5\xd3\x94\x20\x10\x73\x1a\x7b\x37\x25\xd6\x96\x27\xb2\x12\x6b\x09\xa5\x16\xa7\xdf\x45\x3b\x21\xb1\xb6\x08\xe3\x94\x12\x6b\x4a\x68\x61\x8c\xbd\x9b\x06\xd5\x5d\x9e\xc8\x1a\x35\x57\x09\x2d\x8c\x51\x73\x53\xd6\x6d\x81\xfa\xa5\xac\x9b\x12\x70\xce\x59\x76\xe3\xb2\x1b\x13\x02\x22\xcb\x6e\x8c\xc4\xe9\x57\x76\x62\x2b\x25\xb7\x08\x86\x93\x52\x72\x59\xf6\x53\xec\x95\x94\x5c\x4a\xc9\x2d\x4f\x42\xa5\xe4\x94\xd0\x5e\x49\xc9\xa5\x94\xdc\x22\xce\x4b\x4a\xc9\x29\x41\xa8\xe7\x94\x92\x4b\x29\xb9\x45\xf4\x88\x94\x92\x53\x42\xb3\x26\x25\xa7\x84\xae\x30\x52\x72\xca\xb1\x88\x7e\x92\x52\x72\x4a\x9c\xb6\x40\xc7\x33\x29\xb9\x45\xf4\x93\x94\x92\x53\x42\x83\x28\x25\x97\xe2\x6f\xcb\x73\x55\xf1\x37\x25\x4e\x5b\xa0\x93\x69\xb9\xb6\x45\x58\x8f\x94\x6b\x4b\x83\xd5\x2e\x62\x40\xa4\x10\x9b\x12\x3a\xdb\x18\xac\x36\xe5\xda\xd6\xb0\xca\xb5\x51\x42\x6c\xcb\x43\x54\x21\xb6\x94\x4e\x5b\x44\x18\x48\xe9\x34\x25\x08\x3a\x9d\xd2\x69\x29\x9d\xb6\xb8\xc9\x3e\xa5\xd3\x94\x38\x59\x86\x48\xa7\x25\x88\xd9\xf3\xd8\x53\x25\x32\x66\x29\x50\xb6\x60\xf8\x52\xa0\x4c\x09\xe2\x55\x67\xdb\xb5\x8c\xce\xba\xb8\x0a\x3d\x8d\xce\xaa\x04\xf1\xaa\xd3\xe8\xac\x69\x74\xd6\xe5\xe1\xa1\xd1\x59\x95\x70\xdc\x30\x3a\x6b\x4a\xac\x2d\xb0\xbe\x94\x58\x53\x42\xc7\x22\x43\xb1\x2a\xc7\xba\xf8\x0e\x86\x62\x55\x42\xc7\x22\x43\xb1\xa6\x10\xdb\xba\x30\xdb\x42\x6c\xd9\x0e\xa4\x74\x71\x21\xb6\x14\x62\x5b\xdc\xf3\x9d\x42\x6c\x4a\x10\x81\x27\x85\xd8\xd2\x18\xab\xeb\x3a\xfd\xb5\xdb\x34\x8a\x80\x25\x10\x62\x53\x9e\xc7\xc8\xc8\xfd\x35\x8d\x41\xde\x8f\xc5\x95\x20\x29\xeb\xb6\xb8\xb5\x3b\x65\xdd\x94\xd0\x77\x49\xd6\x4d\x89\x93\x29\xbc\xac\x9b\x72\xac\x0b\x5b\x63\x28\x56\x25\x74\x67\x32\x14\xab\xf2\x3c\xe6\xaf\x2d\xd3\x68\x70\xcc\xf4\x45\xe2\x52\x24\x6e\x79\x98\x2a\x12\xa7\x04\xa1\xac\x53\x24\x2e\x45\xe2\xd6\x35\xfe\xfa\x5e\xd4\x94\x98\xcb\xb6\x4f\x5d\x7e\x11\xfb\x54\xdb\xa7\x58\x43\x48\xcc\xa5\xc4\xdc\xba\xac\x43\xfb\x94\xc4\xdc\xf2\x60\x55\x62\x2e\x25\xe6\x16\x97\xdc\xa6\xc4\x9c\x12\x84\x31\x4a\x89\xb9\x34\x80\xe9\xe2\x52\xd7\x34\x80\xa9\x12\x5c\xa6\x90\x46\x28\x4d\x23\x94\x2e\x02\xec\xa7\x11\x4a\x95\xe0\x32\x85\x34\x42\x69\x1a\xa1\x74\xc1\x15\xa6\x11\x4a\x95\x20\x28\x52\x8a\xe4\xa5\xe1\x48\x17\x37\x92\xa6\xe1\x48\x95\x38\xed\x79\x9e\xdf\x49\xee\x2d\xb8\xc2\x94\xdc\x53\x82\xc8\xd9\x29\xb9\x97\xdb\x4e\xcb\xa5\x9c\xb9\xed\xb4\xdb\x4e\x8b\xa9\xdf\x76\x5a\xc3\x91\x2e\xae\xd6\x4c\xc3\x91\x2a\xe1\x4c\xc8\x70\xa4\x69\x38\xd2\x45\x78\xfa\x34\x1c\xa9\x12\xba\x93\x89\x06\xa6\xe1\x48\x17\x17\x64\xa6\xe1\x48\x95\xe0\x56\x87\x34\x1c\xa9\xf2\x3c\x76\x92\xb6\x4c\xe3\xa3\xb2\x10\x32\x1c\x69\x0a\x1a\x2e\x4f\x4c\x05\x0d\x95\xe0\xf2\x87\x94\x24\x4c\xc3\x91\x2e\xee\xaa\x4c\xc3\x91\x2a\xc1\x55\x0f\x69\x38\xd2\x34\x1c\xe9\xe2\x62\xca\x34\x1c\xa9\x12\x04\xd3\xce\xad\xf1\x90\x4b\x5c\x9e\x7b\xca\x25\x2a\xa1\x47\x9c\x5c\xa2\x12\xdc\xfe\x90\x86\x23\x55\x8e\xc5\x15\xde\x29\xaa\xa8\x84\x4e\x72\xa2\x8a\x29\x83\xb8\xb8\x4b\x32\x65\x10\x53\x06\x71\x4d\x26\xa4\x32\x88\x29\x83\xb8\xa6\x15\x67\x9f\xda\x8e\x91\xac\x7b\x64\x10\x53\x06\x71\x41\x68\xa6\x0c\xa2\x12\xfa\xdc\xc9\x20\xa6\x0c\xe2\xe2\x1a\xba\x94\x41\x54\xe2\xfc\xfd\xa5\xa5\x77\x8c\xe4\x32\xb9\x94\x41\x54\x82\xa0\xdb\x29\x83\xa8\xc4\xe9\x8f\x39\x46\x1a\x67\x74\x71\x13\x5b\x1a\x67\x54\x09\xee\x9c\x48\xe3\x8c\x2a\xcf\x63\xa6\xf9\xe9\xed\xcf\x2c\xb6\x8c\x33\x9a\x06\x10\x5d\xdc\x28\x5d\x72\x89\xf5\xe3\x12\xd7\x93\x32\x4d\x61\xbb\x82\xf0\x60\x25\x97\x58\x72\x89\x8b\x2b\xd1\x4a\x2e\x51\x09\x3c\x04\x4b\x2e\xb1\x04\x0e\x17\xf7\x9f\x95\xc0\xa1\x12\x44\x11\x2b\x81\xc3\x7a\x4d\xb3\x71\xf8\x86\x36\xad\x79\xec\x26\x69\x93\x64\x9b\xe1\xde\xe9\x92\x4b\x54\x82\x30\xdc\x25\x97\xa8\x04\x97\x66\x94\x5c\xa2\x72\x2c\x6e\x2c\x2b\xb9\x44\x25\x88\xcc\x5d\x86\x1e\x55\x9e\xc7\x4c\x5b\xa6\x2d\x1e\x3b\x49\xba\x4d\x32\xbb\x27\x69\xb7\xf9\x60\xa8\x0a\x2b\xf2\x36\x1f\xf7\xef\xa5\x64\xf7\xf6\xa5\xb7\x2f\xbd\x48\xf2\xa5\xce\x0c\xb9\xee\xab\xc4\x17\x95\x20\x5a\x77\x89\x2f\x96\xf8\xe2\x02\xbd\x2d\xf1\x45\x25\x88\xd6\x5d\xe2\x8b\x4a\x10\x99\xbb\xc4\x17\x95\x63\x41\xde\x96\xf8\x62\x81\x2f\x46\xf8\xf9\xde\x96\xca\x8e\xc0\xcd\xd5\x25\xbe\xa8\x04\xe1\xb5\x4b\x7c\xb1\x0c\x47\xba\xb8\x83\xaa\xc4\x06\xeb\xf5\x6b\x6d\x93\xbc\x7d\xad\x37\x5a\x1b\x21\xb7\x4b\x6c\xb0\x5e\xbf\xd6\x36\xf9\xd3\xf4\x0d\x8e\x1e\xd0\xb8\x25\x36\x58\x62\x83\x0b\x4c\xb5\xc4\x06\x0b\x6c\x30\xc2\x16\xd2\x3e\xe6\xe8\x71\xfb\x05\xdb\x72\x31\x7a\x10\x9a\xbb\xc4\x06\x4b\x6c\x70\xdd\x7e\x9a\xb6\x7e\x19\x3d\x58\x0e\x96\xd8\xa0\xf2\x3c\xe6\x9f\x7e\x4d\xfb\xf2\x18\x95\xc9\xa9\x60\x49\x17\xae\xdb\x3a\xdf\xe6\x6d\x5b\x4b\x54\xe6\x36\x6f\x2c\x11\xc3\xf6\xb6\xfd\x0c\x8e\x3b\xb7\x95\xb9\xcd\x2e\xe3\x4e\xd8\xde\xb6\xd9\x75\x67\xf4\x3e\xe2\x2f\x07\xef\x02\x4e\xfc\x49\x84\xcd\x71\x5b\xd5\x8e\x5e\x5c\xfc\x51\x32\x8a\x05\xa3\x18\x44\xeb\x2e\x19\xc5\x92\x51\x5c\x5c\x86\x51\x32\x8a\x4a\x10\x9a\xbb\x64\x14\x4b\x46\x71\x71\xcb\x45\xc9\x28\x2a\x41\x68\xee\x92\x51\x2c\x19\xc5\x75\xfb\xa7\x97\x2f\x65\xf4\x62\x5d\x5c\x32\x8a\x4a\xb0\x06\x2e\x19\x45\xe5\x58\xdc\xe9\x50\x32\x8a\x4a\x10\xad\xbb\x64\x14\x95\xe7\x31\x8a\xc0\x80\xa6\x04\xd1\xba\x4b\x46\xb1\x64\x14\x17\x77\x3a\x94\x8c\x62\xc1\x25\x06\x91\x05\xeb\xd0\x86\xc9\x28\x2e\xce\x81\x4b\x46\x51\x89\xf0\x05\xda\xb0\x43\x1b\xc6\xe5\x07\x75\x68\xc3\x90\x88\xdf\x0b\x2c\xbc\xc6\x09\xfe\xb5\x0e\x8d\x13\x12\x44\xeb\x2e\xe9\x46\x25\x58\xb2\xd7\xa1\x71\x3a\x34\x4e\xf0\xf8\x75\x68\x9c\x0e\xad\x4e\x50\x6d\x5a\x1d\x81\xc7\xc5\x39\x70\x09\x3c\x2a\x11\x96\x80\x85\x66\x09\x3c\x2e\x58\xf6\x12\x78\x54\x82\x30\xdc\x25\xf0\x58\x87\x56\x07\x34\xb7\x0e\xad\xce\xa1\xd5\xb1\xa0\x5a\x1d\xb9\xc8\xc5\xa1\x6f\xc9\x45\x2a\x11\x83\x7c\x68\x62\x64\x20\x17\xc7\xb4\x25\x03\x59\x30\x90\x81\x9b\x76\xc9\x40\x96\x0c\xe4\xe2\x92\xdd\x12\x72\x54\x82\x2d\x86\x12\x72\x2c\x21\xc7\x05\x87\x5b\x42\x8e\x4a\xb0\xc5\x50\x42\x8e\x75\x7c\x7c\xe9\x4d\x43\x22\xac\x8d\x12\x6c\x31\xd4\xf1\x61\xd4\x90\x85\x5c\x70\xb8\x25\x0b\xa9\x04\x01\xbc\x4b\x16\x52\x09\x82\x75\x97\x2c\xa4\xf2\xfc\x25\x45\xf8\x9a\x5d\xc6\x5a\x82\x75\x97\x2c\xa4\xf2\x3c\x46\x76\xb5\x7e\x87\xd6\xcf\x4f\xaa\xf5\x3b\xbe\x1a\x18\xc6\xc7\x83\x7b\xb7\x94\x08\x3f\x29\x87\xa3\x25\x32\xb9\x40\x89\x4b\x64\xb2\xc0\x24\x83\x1d\x91\x32\xe4\x6c\x89\x4c\x2e\x0e\x9a\x4b\x64\x52\x89\xb8\x78\x41\x9a\x37\xbc\x5f\x17\x8c\x70\x89\x4c\x2a\xc1\xc6\x49\x89\x4c\x96\xc8\xe4\x82\xea\x2d\x91\xc9\x3a\xca\x37\x68\x42\xca\x37\x94\x6f\xa0\x7a\xcb\x37\xb8\x56\x06\x3f\x2d\xc9\x4a\x25\xc2\x26\x58\x96\x5e\x9b\x0e\x7e\x5a\x92\x95\x75\x68\xd3\x27\x55\xae\x4d\x3f\xb4\xe9\x6f\x8d\x94\x36\xfd\xd0\xa6\xdb\x52\xb5\xe9\x32\x99\xeb\xad\xa5\xd1\xe4\x1e\xda\xd7\xb7\x7d\x46\xfb\x7a\x68\x5f\x19\x97\x0c\x7d\xab\x3c\x8f\x91\x39\x0d\xe8\xa1\x01\x9d\x94\x54\x03\x2a\xe1\xb9\x80\xfa\x4a\xc2\xb3\x4e\x0d\x28\x7d\xe1\xd4\x80\x4a\x78\x2e\x4e\x9a\x4b\xc2\x53\x09\xf6\x8d\x4a\xc2\xb3\x24\x3c\x17\x08\x5b\x49\x78\x2a\x41\x94\xf0\x92\xf0\xac\xd3\xa5\x3d\x20\x5a\x89\x73\x2a\xc1\xf6\x52\x89\x73\x2a\xcf\x63\xa6\xf9\x52\xad\xe5\x22\xbb\x5a\x4b\x71\xce\x05\x9e\x55\xe2\x9c\x4a\x10\x24\xbc\xc4\x39\x4b\x9c\x73\x81\x67\x95\x38\xa7\x12\xdc\x68\x55\xe2\x9c\x75\x6a\x2d\xdf\x16\x4b\x6b\x79\x6a\x2d\xe9\xf5\xa7\xd6\xf2\xd4\x5a\xbe\xcd\x88\xd6\xf2\xd4\x5a\x3e\xcb\xa6\x3a\xb5\x96\xc6\xe5\x5d\x6f\xff\x54\xd3\x78\x6a\x1a\x17\xd5\xab\x69\x3c\x35\x8d\xd0\x3a\x75\x6a\x1a\x4f\xe7\x6d\x8b\x1a\x77\xde\x26\x43\xba\xa0\x75\x4a\x86\xb4\x4e\x27\x64\x8b\xec\x3a\x21\x93\x21\x5d\x70\x2d\x25\x43\xaa\x04\x01\xc1\x4b\x86\xb4\x64\x48\xd7\xfb\xed\xaf\x59\x04\x4d\xe3\xed\x5f\x5a\x84\xdb\x97\xd2\xed\xcf\xbb\x4d\xc3\xfc\xdc\x7f\x7d\x3f\x4b\x9d\x37\xd6\x49\x12\x75\xe1\x0d\x50\x92\xa8\x4a\x84\xa5\xd1\xe6\x8a\x9d\xde\xc0\x26\x25\x76\xaa\x04\x37\x88\x94\xd8\xa9\xf2\x3c\x66\x9a\x9f\xdc\xa9\xde\x4d\xed\x3b\xd5\x13\x3b\xbd\x5f\x2f\xd2\x34\xd7\xa7\x53\x3d\x6c\xae\xd8\x69\x9d\x1f\x5f\x7a\x50\x6a\xcd\xf5\xa9\xb9\xbe\xa9\x7d\xcd\xf5\x89\xb9\xbe\xf1\x4a\xa8\x53\x73\x7d\x6a\xae\x59\x45\x9c\x9a\xeb\x13\x3b\x7c\xc3\x60\xd4\xa9\x1d\x3e\xb5\xc3\x58\x70\xb9\xd6\x82\x61\x3d\x6e\x38\x87\x12\x62\x55\x82\x1b\xcb\xea\xd4\x9a\xca\xb5\xde\x90\x09\x25\xd7\x5a\xa7\x66\xd2\xcf\xab\x99\x94\x6b\xbd\x21\x02\x4a\xae\x55\x89\xf0\xf3\x6a\x26\xcf\xb4\x08\x8c\xd4\xa7\x66\xf2\xd4\x4c\xbe\xfd\x4b\x8b\x80\x99\xbc\xf1\xb4\x2f\xf1\xd7\x3a\xcb\xfc\x6a\x01\xb4\x7f\xa7\xf6\x8f\x71\xe3\xd4\xfe\x49\xc9\xde\xf8\x78\x97\x94\x6c\x9d\xda\x3f\x1b\x90\xf6\x4f\x4a\xf6\xc6\xf1\xb9\xa4\x64\x95\x20\x1c\x78\x49\xc9\x96\x94\xec\x8d\xe3\x73\x49\xc9\x2a\x41\x38\xf0\x92\x92\x2d\x29\xd9\xfb\x65\xd7\x76\xb2\x7a\x3a\x59\xb5\xbd\x69\x39\x91\x20\xcc\x77\x49\xc9\x2a\xcf\x5f\xf2\x6b\x1a\x53\x24\x86\x4d\x50\x63\x2a\x25\x7b\xbf\xb4\x4e\x1a\x53\x24\x08\xf3\x5d\x52\xb2\x25\x25\x7b\xe3\x0e\x5c\x52\xb2\x05\x19\x1b\x84\xf9\xae\xd0\x98\x4a\xc9\xde\x2f\xba\xb6\x94\xac\x12\x5c\x4c\x57\x52\xb2\x25\x25\x7b\xe3\x37\x5b\x52\xb2\x4a\x40\xe4\x94\x94\x6c\x49\xc9\xde\x78\xbf\x96\x94\xac\x12\x10\x39\x25\x25\x5b\x71\xf9\x52\xda\x60\x68\x4c\x91\x20\xcc\x77\x85\xc6\x54\x98\xf6\xc6\x3b\xb4\x84\x69\x95\xe0\x36\xbc\x12\xa6\x2d\x61\xda\xfb\xf5\xe6\xa5\x1a\x53\x60\xda\x20\xfe\x71\x09\xd3\x96\x30\xed\x8d\x3f\x67\x09\xd3\x2a\xc1\xae\x76\x09\xd3\x2a\xcf\x63\xbc\x61\xfa\x52\xbc\x64\xd9\xd5\x2e\x63\x44\x97\x30\xed\x4d\xc4\xff\x12\xa6\x55\x82\x68\xca\x25\x4c\xab\x04\x61\xae\x4b\x98\x56\x79\xfe\x92\x7a\xd3\xbe\x22\xc1\x7e\x78\x09\xd3\x2a\xcf\x63\xfe\x9a\xf9\x60\x86\x3a\x4e\xdf\x69\xe1\x39\x32\xbd\x0f\xeb\x6d\xfd\xf2\xf6\xe5\x31\xea\x83\x23\xd3\x92\xb9\xbd\xf1\x85\x2c\x99\x5b\x25\x88\x86\x5d\x46\xa1\x2e\xa3\x50\xdf\x87\x25\xd5\x5a\x23\x41\x34\xec\x32\x0a\x75\x19\x85\xfa\xc6\x17\xb2\x8c\x42\xad\x04\xd1\xb0\xcb\x28\xd4\x65\x14\xea\xfb\xb0\x58\xda\x59\x24\x06\x93\x08\x39\x5f\x25\x08\x9a\x5d\xe1\xdc\x36\xb4\xa9\xc7\x2f\xcd\xc2\xbf\x2d\x3c\xf5\xa1\x4d\x95\x10\xbe\xf1\xd5\x2b\x11\xe0\x02\x01\x0e\x62\x55\x97\x08\x70\x89\x00\xdf\x78\xb4\x94\x08\xb0\x12\xc4\xaa\x2e\x11\xe0\x32\x7e\xf5\x8d\x57\x5b\x19\xbf\x5a\x09\x6e\x50\x2c\xe3\x57\x97\x08\xf0\x8d\x7f\x59\x89\x00\x2b\x31\x58\x4a\x89\x00\x2b\x41\x94\xeb\x12\x01\x56\x9e\xbf\xe4\x05\xce\x6d\x91\xe0\xee\xc5\x12\x01\x56\x9e\xc7\x28\x82\xd6\x18\x89\x61\x09\xb4\xc6\x22\xc0\x37\xce\x57\xf5\x0e\xf2\xf1\x5e\xfd\xe7\x1f\x5c\x59\x50\x6f\xeb\xfb\xdd\x9c\xa8\x3d\xcf\x7c\x7c\xe6\xf3\x3c\xc3\x86\x79\xe9\xd8\x55\x9f\xcf\x8b\x2a\x7b\x52\x9c\x73\x7e\x76\xff\xf9\x87\x9d\xec\xeb\x5f\x7d\xe3\xf3\xe7\x1f\x44\xa1\xae\xef\x78\x91\xf2\x74\x7f\xa2\x29\x97\x0e\x3b\x85\x6f\x0c\x17\x3a\x96\x8e\x2d\xf5\x7d\xde\x45\xe8\xd9\xd2\x29\xa4\xbe\xef\xcf\x9f\x7f\x5c\xaf\xbf\x76\x4e\x2b\x7d\x41\xea\xfb\x58\xe7\x8b\x26\x94\x66\x25\x9f\x1f\x05\xab\x29\xcf\xe1\x15\x22\xb6\x94\x27\xe3\xc5\xbd\xa7\x04\x67\x29\xaf\x38\x55\x26\xd6\x30\xc1\xbb\x2b\x9f\xb5\x0a\x21\x57\x2a\xfd\x8c\xf9\x14\x9b\xc8\x20\x55\xbe\xab\x9e\x77\x71\x57\x5a\x95\xef\xe2\x7c\x09\xaf\xe8\x6a\x9f\xe9\xe7\x19\x2e\xce\x28\xcf\x29\x8a\xa3\x83\x03\x2a\xb3\x3c\x32\x28\x36\xee\x0f\xfc\xfe\x8a\xdd\xfb\xbf\x95\x77\xd7\x01\xfe\xf4\x8b\x9f\xea\xd7\xf3\x53\x41\xd0\xf3\x76\xbf\xa9\x5f\xb9\xff\xfc\x23\x38\xa2\xe9\x57\xbd\x48\x7a\x64\xd0\xfb\x9a\xbd\x9c\x47\x9e\x66\x44\x3c\xbe\x7e\xb1\x48\x50\x82\x3d\xd6\x7e\x31\x46\x36\xbb\x33\xc1\x9d\x85\xfd\xea\x5f\xd2\xfa\xf3\x8f\xf5\xcb\x04\x28\x6e\xbf\x9e\x5a\x08\x22\xac\xf5\x61\xbe\x0e\xf2\x05\x54\xd4\x87\xf9\x3a\x92\xa4\xc7\x4c\xf6\xf1\xe4\xf1\x27\x01\x1c\xd8\x87\x59\x3d\x9e\x9f\x0f\x6e\xcb\xee\xc3\x9f\x47\xd6\xfb\xc5\x53\x0c\xa3\x7d\xf0\x46\xee\x20\xee\xd3\x37\x9e\x91\x84\x5a\x5f\x24\x95\x49\x45\xd2\x49\x52\x93\x44\xbe\x88\xee\xd4\x4e\xe4\xfa\xdc\x8f\xad\xe6\xf6\xaf\x3e\x89\x8a\xac\xc4\xdb\x3f\x24\x28\x72\x9f\xbc\x91\x59\x69\x87\x6f\x44\x02\xb2\xba\x23\x4e\x93\x1e\x5b\xc2\x42\xa3\x23\x82\xa4\xb1\x78\xea\xf9\x79\x06\xc5\x9f\xfc\xd7\x53\x0c\x8d\x1d\xd7\x7e\xfa\xcf\xf1\x14\x28\x26\x35\x81\x04\x61\x2f\xda\x41\xaa\x63\xe6\xf3\x54\x98\x54\x26\xd5\xf3\x69\x1f\x7b\xd3\xc1\xa6\x6c\x07\x7d\x88\x49\x4c\x6b\x44\x3b\x9e\x69\xd0\xc0\xdb\xb1\x83\x58\x10\xca\x60\xbe\xdf\x41\x27\x56\x06\xb7\x7a\x74\xd8\x26\xe2\x69\x07\x03\x67\xe1\x8e\x32\xf7\x8f\x0c\x56\x00\x1d\x65\xee\xeb\xc3\x53\xfe\x21\x55\x18\xfd\xe2\x29\x92\xda\x4c\x3c\x32\x0e\x73\xdf\xd6\xd7\x23\xd7\xcd\xa7\x8d\xb6\xbe\x1e\xfb\x33\x98\x57\x77\xb4\x99\x78\x64\x30\x9d\xed\xb0\x15\x22\x03\xcf\xde\x0e\x9b\x49\xf4\x97\xa7\x28\x23\xfb\x80\xca\xc0\xf0\x76\xb4\xf5\xf5\xc8\xe0\xb0\xbd\xa3\xad\xaf\x47\x06\x7e\x89\x1d\x4d\xc3\x8c\x4d\xee\xfd\x68\xdb\xdc\x6f\x72\x3f\xc8\xd7\x36\xf7\x8f\x0c\x10\xe6\x8e\x6d\xee\x37\x55\x38\x68\x13\xdb\xdc\x6f\x72\x4f\xbb\x8f\x6d\xee\xf7\x9b\xa7\xfc\xc3\x8f\x49\x4f\x15\x32\xd3\xea\xb0\x15\x22\x03\x73\xdd\x61\x2b\x8c\x67\x8e\x36\x98\x41\x75\x6c\x73\x8f\xe5\xc5\xf4\xf6\xb0\x61\x22\x03\xef\xd9\x1e\x36\xcc\xf1\x34\xc6\xc1\xf4\xa6\x47\x0c\x93\x26\x4f\x1d\x24\x2d\x93\xc8\xc4\x63\x86\x7a\xc4\xd7\xa4\x2f\x49\xfe\x7c\x9a\x44\xad\x5e\x83\xa4\x32\x89\x7c\x9d\xfe\x3c\xf9\xe2\x72\x89\x81\x5f\x6b\x8f\x61\x26\x1e\x19\x8c\xf8\x3d\x98\x4d\xf6\x18\x34\xdf\x8b\x9f\x1f\xbf\x3f\x6c\x06\x0e\xf2\x35\xf8\x1c\xe3\xe2\xb7\x16\x3f\x7f\xf9\x5b\xcf\xc4\x70\x70\x5e\xdd\xe3\xb2\x40\x8f\x0c\xa2\x57\xf7\x60\x8e\xa8\x0c\xfc\x24\x7b\x30\x47\xec\x71\x39\x2e\xdd\x24\x59\xc6\x47\xc6\x65\xbe\x2e\xcb\x78\x51\xc6\x65\x92\x65\xbc\xc8\xd7\x49\x81\x2e\xf3\x35\x79\xe3\xc9\x6f\x4d\xdf\xf8\x4c\x00\xc7\x15\x3c\x85\xeb\xa7\x32\x70\xaf\x6c\x6f\xc6\x68\x6e\xc3\x18\xdc\x5d\xdb\x63\x9a\x09\x3b\x32\x1d\x66\xd8\x91\xc7\xdc\x3c\xc5\x1f\x12\x4a\x50\x19\x0c\xcf\xed\xf5\x19\xca\xb8\x06\xc5\x5e\x56\xce\x23\xe3\xb2\x01\x2c\x2b\xfa\x91\x81\x23\x65\x7b\xa3\x86\x32\xae\x49\x19\x97\xb9\x7f\xe6\x88\x86\xec\xee\xb1\xcc\xea\x22\xab\xeb\xaf\x57\xcb\x3d\x96\x25\x59\x54\xa7\x25\x59\x56\x27\x26\x09\xff\xcc\xf6\xe2\x0b\x65\xe0\x64\xd9\xe3\x6d\xb6\x9f\xb5\xb2\x91\x9c\x7b\xbc\xfd\x5a\xcf\x1c\x6e\x4c\x5b\xf7\xdb\xea\x7c\x53\x9d\xd8\xfe\xf1\x36\x8f\xcf\x1c\xc1\x40\xce\x3d\xde\x66\x62\xfb\xc6\x27\x13\x97\xdd\x82\x4b\x00\xc6\x69\x12\x73\x66\x65\x70\x76\xd0\x5c\x0e\xf0\xc8\xf3\x87\xdc\x48\xd1\x86\x23\x6f\x40\xff\xc1\x06\x55\x5f\xef\x36\xa9\xff\x69\xf1\xae\x37\x8d\x01\xce\xff\x67\xf1\xc4\xfc\x95\x9f\x79\x13\xf3\x6f\x30\xfe\x9f\x79\x23\x30\xf8\x4f\x7e\xb6\xcc\xf8\xe0\x4d\x2c\xf0\x9f\x2d\x33\x16\xb8\x32\x70\xd6\x6c\xe2\x82\xff\xad\x2f\xca\xc8\x8a\xbb\xa7\x65\x9c\xcf\x68\x33\xb8\x4a\xbb\xa7\xa3\x0d\x32\xf0\x63\x6e\xe9\xf1\x9e\xb4\xee\xc1\x6f\x4d\x5b\x37\x32\x70\x3c\xee\x79\xf1\xc6\xb9\xec\x88\x24\x59\x13\x44\x83\xfd\xb5\xc8\x99\x5f\x93\xbe\x7f\xfe\x71\x11\xbc\xba\x67\x92\x7b\x58\xe0\xc1\x9d\xc0\x0d\x10\xfc\x93\x69\xd7\x17\x0b\xee\x49\xee\xe7\x33\x3d\xef\x65\xee\x17\x6f\xe4\x34\xb8\x0d\x1f\xd9\x8b\xa7\xb8\xf2\xb6\x6f\x9f\xba\x79\x0a\xe4\xab\x25\xef\x9a\xc0\x70\xc6\x37\x6b\xe3\xc2\x29\x97\xe6\xcd\xb8\x70\x0d\xa8\x36\xde\x8b\x24\xf3\x85\x0c\x2e\xb0\x6b\x99\xb5\xbe\x9f\x37\x5e\x6c\xe2\xb4\xb3\xe4\x7e\x3f\x16\xf3\x62\x1b\xa3\xdf\x71\x99\x74\x3d\xf3\x3c\x5a\xce\x3b\xf8\x79\xe6\xd2\x17\xd7\x1f\xb4\x93\xe9\x06\x17\x32\x98\x4d\x4b\x0b\x29\x17\xa0\x68\x4b\x0b\x35\x61\x99\x2e\x80\xa7\x36\x2a\x93\x72\x01\x0a\xb4\x51\x99\x1a\xce\xe5\x3a\xc8\xfd\x9b\x0d\x00\x45\x27\x89\x26\xa4\xd2\x23\x4f\x26\x70\x6b\x6d\xe7\xef\xcd\xfc\xfd\xc2\x75\xb9\x9d\xc0\x37\x94\xc4\xc5\x69\x77\x7f\x6c\xd1\xc8\x05\xa3\xde\x1f\x5b\x34\x72\x71\xaa\xda\x4c\xf9\x7f\x72\xb1\x6d\xda\xd2\x15\xfd\xf9\x9e\x3c\xf5\x7c\x34\x49\x0a\x45\x90\xa2\x3f\x2c\x65\xfa\xd3\xfc\x21\x13\x42\xc9\x07\xe5\x62\xcb\xb8\x3f\xce\x07\x3e\xcf\xb0\x7e\x71\x0d\x4b\x7f\x1c\xd6\x91\x6b\xd0\xdd\x85\x1c\x9a\xc5\x86\x57\xf9\xb7\xab\x8d\x66\xdd\x70\x39\x60\xbb\x70\xe8\xef\x63\x54\xae\xe1\x53\x2c\x1c\x95\xe9\xa7\xd5\x9b\xbc\x89\xfb\xe1\x6d\xf1\xfd\x25\x10\xbf\x72\x39\x2b\xfd\xda\xf9\xbe\xcd\x53\x8c\xe1\x5f\x27\x12\x88\x71\x12\xfa\xeb\x44\xe2\x4b\xbe\x08\x3e\xde\x2e\x3d\xda\xa5\x07\xc1\xab\xdb\xb5\x47\xe3\x85\x7a\x81\x75\xb7\x4e\xa8\xca\xe2\xd6\x97\x4e\x67\x0d\xac\x2c\xbc\x74\xb9\x5d\x5a\x28\x8b\xdd\xe3\x2e\x87\xf5\x8a\xa7\x72\x88\xe9\xd2\x15\x6f\x93\xde\xcf\xcf\x33\x8b\xaf\x60\x6e\xc1\x9a\xc4\xbb\x94\xdb\x45\x49\x17\x65\xe4\xb8\xac\xcb\x32\x22\xd7\x4d\x4d\x94\x06\x06\x2f\xc1\x8b\x5b\x81\x5b\x27\xc1\xae\xaf\x63\xf8\x45\x52\x98\x74\xf3\x14\x3f\xff\x35\x13\x8f\x0c\x96\xde\xed\x45\xf7\xca\xc5\x2d\xbe\x5d\x1c\xac\x74\x7d\x31\x43\xa7\x49\xd4\x2a\xd7\xdd\x5f\x5c\xec\xdb\x95\xc3\xa4\xa7\x8b\xb2\xa2\xee\xb2\x6f\x57\x92\x7b\xcc\x63\xa5\xb9\x4f\xa6\x41\x8c\xbb\xe5\xea\x02\xb9\x38\xca\xe9\x72\x75\x81\x0c\x97\x4b\xe5\x42\x08\xf1\xca\xd6\xae\xb2\x56\x8b\x32\x86\x49\x96\x91\xfe\x08\x58\xd8\xde\xa1\xaf\x0c\xfc\x0a\x5b\xf7\xc3\xae\x67\x5e\x77\x71\xdc\xd3\xe5\xbc\xae\x98\xc4\x0d\x2b\xda\x49\x1c\xf2\x9b\xf3\xe0\x75\xf8\x93\xeb\x6d\xbe\x9c\xd7\x95\xf3\xba\xf1\x7c\x0e\xd7\x8d\xca\x18\x63\xfd\xf5\x50\xdc\xb6\x8f\x7e\xa6\x7d\xde\xab\xda\xed\xb4\x0f\x19\x83\x59\x65\x6b\xcb\xfa\xb1\x5f\x17\x87\x2d\xdd\xce\x04\x91\x31\x98\x41\x74\xdc\x26\x3d\x7d\x80\x9b\x11\xbb\x9d\xf6\xb5\xd3\x3e\xec\x75\x3b\xed\x43\x2e\xd7\x36\x1d\x7c\x07\xbc\x28\xc7\x60\x44\xd5\x8b\x52\xb9\xb8\x53\xb0\xdb\x99\x20\x32\x88\x15\xd1\x38\x59\x3e\x42\xbe\x86\x49\xe6\x8b\xc1\x6c\x50\x77\x5e\xfa\xdf\x3d\x9e\x01\x88\xe3\x98\xee\x91\x26\xd1\xb0\x18\xb0\x7b\x98\xd5\x8b\x9a\x60\xd2\xea\x05\xff\xca\x80\x78\xea\x76\xbe\x88\x5c\x9c\xb2\x74\x3b\x5f\xec\xcb\x11\x95\xdc\x5f\xd6\xc4\xc5\x67\xa6\x9f\x37\xe1\xa7\x95\x71\xfc\xfe\x90\xd6\x8d\x6b\xa7\x97\xc0\xb6\xae\x9d\xca\x18\x93\x02\x4d\x8b\x3d\x79\x23\x5d\x4c\xcf\x4e\xe5\x37\x86\xf7\xb4\xd8\xcf\x14\xd2\xfb\x5e\x5b\x5f\x4f\x65\x0c\xac\x81\xbe\x9e\xdd\x93\x9a\x60\x06\xd2\xd3\x9a\x60\xc5\x78\x98\x55\x57\x8c\x3d\xf9\x42\xcb\x4c\xf8\x85\x98\x68\x0e\x33\xe1\x44\x13\xb9\xb8\x94\xad\xdb\x89\x26\x32\x34\xa8\xed\x44\x13\x4f\xd2\x8b\x93\x9f\xd6\x93\x54\x19\x1a\x54\x1d\x49\x95\x81\xcb\x6c\xeb\x48\xaa\x8c\xc1\x9c\xd8\x98\x09\xca\xc5\x2d\x6d\x6d\xcc\x04\x65\x0c\x0b\xe4\x74\x14\xb9\xb8\xa4\xad\x7b\x59\x6c\xe6\x9b\xc3\x02\x39\xdf\x44\xe6\xb0\x7d\x2d\x8b\x8d\x11\x04\x0f\x6d\x77\x5d\x94\x31\xcc\xbd\x53\x50\xe4\xe2\xd6\xb6\xd6\x61\x54\x19\xdc\xef\xd3\x3a\x8c\x2a\xbf\x11\x42\x7f\xd1\xc6\x39\xd4\xeb\x6c\x5b\xdf\x50\x65\x0c\x0b\xe4\xdc\xb5\x9d\xbb\xda\x30\x9d\xbb\x22\x03\x56\xac\xfb\x6d\x81\xd8\xf2\x72\xaf\xa1\x9d\xce\x22\x63\xfc\x72\x6f\x19\x19\x8a\xdf\xac\x64\xdd\x33\x52\xc6\x30\xf7\x1f\x0b\xc4\x74\x03\xdc\xb5\xdb\xe9\x06\x32\x86\x59\xfd\x98\xd5\xcf\xcd\xc0\xc8\x1b\x3f\xe6\xeb\x43\xfb\x62\x8a\xd0\x1f\xf3\xc5\xdc\x75\xfc\xde\x68\xbe\x1e\x99\xdc\xa5\xd6\xfd\xf9\xe5\x2b\xff\x39\xdf\x6c\x47\x54\x64\x0c\x76\x4a\xda\xd1\xa6\xd9\x4b\xe3\x0c\xac\xfb\x6b\x93\xfb\x62\x9c\x19\xc3\xdb\xd1\xa6\xbf\xcd\x53\x14\xfb\x6b\x5b\xfd\xd2\x56\xdf\x24\xa5\x7f\xf8\xc8\xe4\x5a\xaf\xd6\xdf\x55\x59\xcb\xba\x4f\x6b\xe2\x19\x3b\x26\x1b\x6a\xdd\x4e\x08\x91\x31\xb0\xfd\x9d\xd6\x44\xf2\xd1\xde\xfe\x96\x1f\xed\x99\xf4\x4e\x82\x66\x76\x3b\xe9\x45\xc6\x85\xa1\x6f\x27\xbd\xc8\x74\x8e\xd8\x69\xb1\x1f\x19\x97\x95\xe3\x30\x85\x4c\xee\xe5\xea\x76\x98\x6a\xc6\xa4\xcb\x9a\x70\x4c\xea\x67\x00\x9a\x5c\xcb\xd5\x3a\xeb\x2a\xe3\x62\xe5\xdf\xee\xe0\x74\xf1\x5b\x0c\x8c\x5d\xbf\xdf\x62\xc5\xc8\x9e\x51\xb7\x95\xd3\xcc\x79\x18\x80\xda\x49\x2f\x32\x2e\xa6\x1b\x3a\xf4\x2a\xf3\xa5\xd9\x76\xd7\x05\x19\x17\x5b\x06\xed\xae\x0b\x5e\xb7\xde\x50\xdc\xbd\x7f\x49\x4f\xaf\x5d\x56\xe1\xb6\xbe\xd8\x14\xe5\x02\x9d\xde\x8e\x5c\xb8\x7b\x7a\x7d\x70\x1b\x91\xa2\xb7\x4b\x4d\xcc\xf6\xb6\x6f\xef\xa7\x8b\x4e\xb7\x6b\xb6\x5d\x14\x99\xee\x94\x6c\xbb\x28\x32\x2e\x06\x1d\xdd\x43\x95\xdf\xe2\x76\xdb\x45\xf7\xd3\xd3\x26\x3b\xe7\xbd\xed\x69\xc8\xb8\x18\x87\xb6\x3d\x0d\x99\x90\xc1\xbd\xed\x69\xc8\x6f\xcd\xb6\xed\x69\x88\x97\xe2\x36\x9e\xa8\x3f\x19\xd7\xf5\xd7\xc1\xb1\x7b\x3b\xbf\xde\xcf\x64\x7a\xba\x6b\xb2\x9d\x4c\x23\xe3\x62\x8e\xa7\x53\x6b\xe3\xa1\xea\xc5\xba\xbd\xed\x9b\xc8\xc0\x9b\xbb\xf1\x5c\x7d\xe4\xe9\x75\x5a\xf5\x6d\xaf\x43\x06\xd7\x70\xf5\xb6\xd7\xed\xf4\x29\x7e\xcb\x46\x8a\x8c\xcb\x4f\x63\x23\xdd\x7c\x53\xa8\xba\xde\x7e\x53\x64\x69\xcb\xb6\xdf\x74\xf3\x4d\xe1\x56\xb6\x5b\xcf\xfb\x75\x3d\xbd\x0e\xe8\x63\xbf\xae\x5f\x12\x5f\xeb\x0c\x92\x4e\x92\x9e\xe1\x60\xe2\xf1\xbc\xf5\xe9\x54\x06\x5b\xcf\x5b\x9f\xce\xcd\x36\xf6\xc4\x0f\x71\xbb\x8d\xbd\xf1\x81\x9c\xf8\xcb\xed\xd7\xdb\xa7\xde\xec\x58\xdd\x3e\xb5\x4c\xba\x79\x8a\xdf\xe2\x33\x2b\x83\x29\xf7\x7e\xf1\x99\x37\x5e\x93\x13\x2f\xb5\xfd\xe2\x73\x28\x83\x9b\xbb\xf6\x8b\xe5\x8e\x32\x71\x2b\xdb\x2f\xbe\x90\x32\xd8\xff\xde\x7a\x5b\xee\xd7\x27\x78\x6a\x90\x34\x4c\xa2\x3f\xdd\x26\x59\x46\xbe\x23\xae\x61\xdb\xb8\x10\xca\xb8\x6e\xea\x8b\xef\xa8\xcc\xb0\x56\x3f\xe6\x1e\xb3\x4b\xf8\x9f\x6d\x58\x08\xc5\x9d\x92\xfd\xc2\xec\xee\xd7\x33\xbf\x9e\xb8\x94\xed\xd7\xd7\xa7\xbe\x98\xa4\xb7\x49\x69\xd2\xd3\x6e\xd9\xca\xd8\xb8\x75\xfe\x64\x5c\x6f\x0a\xf4\xb5\x26\xb0\x9e\x38\x24\x6d\xfd\x3d\x95\x41\xd4\xa0\xfd\x4a\xbf\x63\xd2\xeb\xde\xfc\x16\xc7\xf6\xfb\x85\x41\xc5\x81\x68\xbf\xd2\x2f\x84\xf5\xbc\xde\xfe\x96\x65\xa4\x15\xb2\xca\xdb\xaf\x34\x5f\xb6\xc2\xb7\x7f\x68\xbe\xb0\x8b\x2c\xfc\x36\x07\x18\x7f\xdb\x1c\x54\x0c\x40\x81\xfd\x2a\x33\xf1\x88\x7b\x0d\x5b\x37\xd4\xcd\x41\xc5\xc4\x41\x67\xbf\xca\x37\xb2\x41\xcd\xf6\xc3\x7e\x95\xb5\x4a\xf3\xc5\x07\x66\x7b\x42\xb1\x8f\x67\xee\x3b\xc1\x98\xf6\xc1\x02\x5e\x19\xf3\x18\x24\x2d\x93\xd8\x7f\x3a\x26\x49\xb7\x49\x6f\xfe\xd0\xa4\x8f\x49\xee\x3f\xdd\x24\x7d\x4d\x6a\x9e\x32\x69\x9b\xb4\x99\x82\x3e\x05\x3a\x38\x12\xdb\x38\x7d\x0e\x80\x83\x8d\xe7\xe7\x4f\x06\x6c\xf0\xd6\x01\x74\xe3\x00\x3a\x39\x77\xdd\xfa\x7f\x2a\x83\xdb\xd8\xb6\xfe\x9f\xfb\x78\x66\xc8\x6e\xb1\x6c\x7c\x41\x7f\xe2\x16\xcb\xd6\x23\x54\x99\x9c\x9d\x6e\x3d\x42\x95\x31\xe9\x1d\xc7\x30\xf7\x63\xf3\x14\x7f\x78\x99\x55\xf6\x60\xc1\x14\xf6\x61\xdf\xc6\x21\x74\x8e\x5f\x92\xf9\x62\xc3\x95\xc0\x4c\x5b\x7f\x50\x65\x70\x87\xdb\xd6\x1d\x74\xe3\x02\x3a\x59\xac\xed\xe3\x32\x5f\x4e\xa0\x69\xf7\xc7\x65\x26\xa6\x3f\x4f\x26\xa6\x3f\x3f\xfd\x79\x9e\x9a\xfe\xfc\xfc\xe7\x54\x6f\x1f\xcc\x70\xf7\x31\xd9\x46\xa2\x77\x1c\xd3\xba\x7f\xa6\xb3\xde\x56\xb9\xf5\xfb\x54\x06\x08\xc4\x3e\x96\x05\x7a\xa6\xb3\x73\xd0\x15\xf4\xfb\x54\x06\x17\xc4\x6d\xdd\x3e\x37\x71\x2e\x26\x2b\x95\x6d\x9c\x8b\x8d\xf7\xe7\x80\x93\xd8\xc7\xb2\x40\x98\x34\xe6\x88\xdb\x13\xb0\x4d\x2c\x8a\x39\x68\xe4\x87\xc6\xea\x70\xe7\xd2\xdc\xbf\x2d\xf6\x23\x93\x09\xf4\x3e\x18\x80\x94\x31\x6d\x39\x6f\xcb\xf8\xa1\x40\x8b\x37\x6a\x99\xf0\xdf\x74\xf7\x6c\x1f\x5a\xa6\xa3\x8b\xa7\xf8\xb4\x6c\x52\x28\x17\xbe\x91\xfb\x68\x2b\x87\xde\xc1\x88\xba\x3d\x4d\xdb\x78\x80\xcd\xeb\x59\x83\xec\x93\x0d\x6a\x65\x32\x3d\xdb\x27\xab\x8b\xcd\x69\xda\xb4\x7d\x79\x9a\xb6\x39\x27\x9b\x93\x51\xc1\x73\xb2\xcd\x79\x94\xd7\x73\x6d\xcf\xa3\x36\x87\x16\x13\xdf\xdf\xed\xa1\xc5\x1e\xcf\x9a\x6d\x72\xdf\xfd\xe6\x54\xe0\x27\x86\xbb\xda\x1e\x0e\x6c\x36\x92\x27\x57\x67\x6f\x37\x92\x37\x1b\xbe\xeb\x75\xfe\xb7\x0d\xea\x58\xff\x7d\x24\xde\xc3\xda\x44\x2e\x82\xc8\xee\x61\x6d\x8e\x67\xea\xb9\x08\x51\xbe\xb9\x1d\xf9\x27\x83\x0b\xd7\xf7\xf8\xd2\x3c\xd8\x53\xf6\x8a\x93\xed\x9e\xf2\xbe\x1e\x93\xb1\xf0\x27\xd8\x97\x26\x03\x99\x04\xf4\xdb\x97\x26\x83\x4b\x66\xbd\x20\x63\xb3\xbf\xfc\x93\x39\x7d\xca\x82\xb0\x9d\xbb\x80\xc3\xb7\xdb\xb9\x9b\x2d\x58\xc1\xe9\xed\x16\xec\xe6\x52\xcb\x85\xc7\xd3\xf6\x52\x4b\x65\x80\x0b\x6d\xef\xb4\x54\x16\x7e\x46\xdb\x3b\x2d\x95\xc5\x36\xf3\x9e\xb6\x3e\x6e\x92\x14\x29\xdd\xde\x24\xa9\x0c\x18\xcd\x3d\xbf\x3e\xf5\x18\xf5\x85\xe7\xc3\x9e\x1a\x75\x64\x80\xbd\xed\x99\x3e\xf5\xd8\x66\x91\xca\xed\xd5\x92\xca\x70\x94\x9a\xcc\x59\x37\x9b\xbe\x8b\xbd\x80\xed\xa6\xef\xe6\x4a\xc1\xc5\x5d\xa9\x7b\xd9\xd4\x90\x75\xf1\x95\x97\x4d\x6d\x79\xae\x4e\x23\x72\x6b\x58\x59\xdc\xd1\xb9\x17\x73\x43\xe5\xc2\x4d\x68\x7b\x43\xe0\x66\x03\x79\x71\x1a\xb1\xdd\x40\x56\xc4\x62\xf6\xcd\x46\x89\x12\x17\x7d\xfa\xe6\xe0\x76\x73\xe1\xdc\xf2\x0b\xdd\x4e\x53\x90\xd0\x18\xdc\xf6\x7c\x36\xa3\xd7\xa2\x3b\xb9\x19\xbd\xd9\x40\x5e\x84\x8f\xde\x6e\x20\xef\xf7\xd3\x0e\x16\x81\xb9\xf6\x9b\x7d\x3a\x25\x88\xdc\xb9\xdf\x0e\x23\x6c\x20\x2f\xc2\x66\x6d\x37\x90\x37\xdb\xb9\x78\xae\xfe\xdf\x8d\xfb\xf9\xff\xbf\x7e\xfe\xfe\xff\xfd\x8f\xff\xf9\xf9\xfb\xff\xfa\xfc\x6b\xff\x91\xff\xf9\x8f\x7f\xf4\xbf\xfd\x47\xfd\x4b\xfe\xc7\x1f\xff\xff\x93\xfa\x47\xf5\xfe\x97\x7f\xeb\x7f\xf4\xff\xfe\xf7\xff\xfc\x47\xf6\x1f\x7f\xff\xf7\xbf\x3f\x7f\xc5\xbf\xff\x13\x00\x00\xff\xff\xe4\xfe\x34\x66\x50\x40\x01\x00"); -func _efee ()(*asset ,error ){_bea ,_aebg :=_edaa ();if _aebg !=nil {return nil ,_aebg ;};_efeg :=bindataFileInfo {_ag :"KSCms-UHC-HW-V",_bc :703,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492573,0)};_egb :=&asset {_cd :_bea ,_dce :_efeg };return _egb ,nil ; -};var _cea =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x51\x6b\xdb\x3c\x14\x86\xef\xf5\x2b\x74\xd9\xef\xa2\x5f\x74\x8e\x65\x4b\x02\x53\x18\x2d\x85\x50\xba\x8d\x76\x6c\xd7\x8e\x25\x07\xc3\x62\x1b\xc7\xb9\xe8\xbf\x1f\xe7\xbc\x49\x07\xbb\x08\x8e\x9f\x48\x6f\xc4\xf3\xda\x67\xf7\xb8\x7f\xda\x4f\xe3\x66\x77\xdf\xd7\xb9\x7f\x2f\x9b\x1d\xc6\x29\xaf\xe5\x3c\x5f\xd6\xbe\xd8\x43\x39\x8e\x93\x31\xc4\x36\x8f\xfd\x76\xbb\xd5\x4b\x7f\xea\x16\x63\x64\xff\xfb\xc7\x79\x2b\xa7\xfd\x34\xcc\xb6\xc2\xba\x7c\x59\xae\x6b\xad\xdd\xbd\x95\xe3\x78\xde\xd6\x0f\x7b\xf7\x25\xcf\x87\xf2\x9f\xcd\x65\x10\xfe\x6d\xcd\x65\x1d\xa7\xa3\xbd\x7b\x79\xfb\x84\xef\x97\x65\xf9\x5d\x4e\x65\xda\x6c\xad\xac\x4c\x59\xaf\x66\xf7\xf8\xda\x2d\x5f\xbb\x53\xb1\x3b\xcd\xb9\x7f\x79\xbb\xc7\x12\xfd\xe5\x67\x59\xcf\xe3\x3c\x59\xfa\xdf\x39\xfe\x8b\x7f\x7c\x2c\xc5\xd2\x35\xe1\xd7\xeb\x9c\x8b\x75\xb7\xbc\xfd\xd3\xe3\x7c\x99\x36\x4b\xcc\x15\x92\x0c\xe1\xd8\xfd\x9c\xcb\x79\xe9\xfa\xb2\x76\xd3\xb1\x18\x6b\x5b\xe7\x9c\x7b\xb0\x2d\x3f\x3f\x3f\x3f\xc8\x99\xfe\x59\x61\x7c\xbc\xee\x1c\x33\xc8\x6d\x87\x73\xc3\xf0\x60\x9d\x69\x1d\xe1\x9e\xe4\x9e\xeb\xc6\xb4\x8e\x41\x58\x48\x4d\x6c\x5a\x57\x81\x54\x42\x42\x13\x4d\xeb\x3c\x88\x17\x42\x8e\xbd\x69\x5d\x0d\x54\x2b\xe2\x28\xd9\x0d\x50\xa3\xa8\xae\x24\x3c\x00\x05\x45\x21\x49\x7a\x04\x8a\x7a\x02\xe7\x25\x3e\x01\x25\x45\x95\x93\xf8\x0e\xa8\xbb\x9e\x53\xe2\x0f\x40\x07\x45\x91\x24\xbe\x07\xea\x05\x55\x2e\x48\x7c\x06\xca\x8a\x2a\x96\xf8\x02\x54\x14\xd5\x51\xe2\x07\xa0\x41\x51\xf4\xce\xb4\x04\x53\xa4\xa6\xbc\x4b\x8d\x69\x09\xb2\x48\x65\xf9\xaa\x66\xd3\x12\x6c\x91\xda\xf2\x8d\x8b\xa6\x25\xe8\x22\xd5\xe5\x63\xe3\x4d\x4b\xf0\x45\xfe\xea\x54\xe2\xe1\x8b\xd4\x57\x5d\x05\x89\x87\x2f\x52\x5f\x75\x53\x49\x3c\x7c\x91\xfa\xaa\x63\x94\x78\xf8\x22\xf5\xd5\x90\x97\x78\xf8\x22\xf5\xd5\x78\x27\xf1\xf0\x45\xea\xab\x69\xa4\x58\x82\x2f\x52\x5f\x4d\x92\x66\x09\xbe\x48\x7d\x05\x92\x6a\x09\xbe\x48\x7d\x05\x2f\xd5\x12\x7c\x51\xb9\xf6\x2f\xf1\xf0\x45\xea\x2b\x24\xa9\x96\xaf\xcf\xa2\xfa\x8a\x24\xd5\x32\x7c\xb1\xfa\x8a\x5e\xaa\x65\xf8\x62\xf5\x15\x83\x54\xcb\xf0\xc5\xea\x2b\x26\xa9\x96\xe1\x8b\xd5\x57\x62\xa9\x96\xe1\x8b\xd5\x57\xf2\x52\x2d\xc3\x17\xab\xaf\x14\xa4\x5a\x86\x2f\x56\x5f\x29\x49\xb5\x0c\x5f\x1c\x6f\xcf\xaa\xe4\x43\x18\x27\x30\x2f\xe5\x32\x8c\x71\x07\x16\xa4\x5d\x86\x32\x56\x65\xd2\xbe\xfc\x05\x9c\x71\x0f\xc6\xd2\x2f\x43\x1a\x67\xb0\x5a\x0a\x66\x58\xe3\x02\x16\xa4\x61\x86\x36\x1e\xfa\x4e\x5e\x12\x57\xb1\xbe\xb5\xb7\xb7\x53\xbe\xcb\xfc\xfa\x9c\x29\xfd\x65\x5d\xcb\xb4\xe9\xf4\xd2\xc1\x21\xf3\x60\x9c\xca\xe7\x24\x5c\xe6\x45\x76\xe9\xe7\x4f\x00\x00\x00\xff\xff\xc3\x2d\x7b\xce\x35\x05\x00\x00"); -func _cce ()([]byte ,error ){return _dc (_dbdf ,"UniJIS2004-UTF32-V")};func _ccfb ()(*asset ,error ){_dgf ,_cbg :=_ded ();if _cbg !=nil {return nil ,_cbg ;};_adb :=bindataFileInfo {_ag :"90ms-RKSJ-V",_bc :1895,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491032,0)}; -_fda :=&asset {_cd :_dgf ,_dce :_adb };return _fda ,nil ;};func _fgf ()(*asset ,error ){_dddga ,_cacf :=_eged ();if _cacf !=nil {return nil ,_cacf ;};_dfbd :=bindataFileInfo {_ag :"GBKp-EUC-H",_bc :80839,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492102,0)}; -_fbee :=&asset {_cd :_dddga ,_dce :_dfbd };return _fbee ,nil ;};func _fbcb ()([]byte ,error ){return _dc (_fgg ,"Adobe-KR-7")};func _gcc ()(*asset ,error ){_ceda ,_gacb :=_ebbgb ();if _gacb !=nil {return nil ,_gacb ;};_gcbe :=bindataFileInfo {_ag :"GBT-EUC-V",_bc :785,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492205,0)}; -_eaed :=&asset {_cd :_ceda ,_dce :_gcbe };return _eaed ,nil ;};func _gfa ()(*asset ,error ){_edf ,_gec :=_cgb ();if _gec !=nil {return nil ,_gec ;};_ebd :=bindataFileInfo {_ag :"83pv-RKSJ-H",_bc :4830,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490975,0)}; -_fea :=&asset {_cd :_edf ,_dce :_ebd };return _fea ,nil ;};func _cgc ()([]byte ,error ){return _dc (_afca ,"Adobe-Korea1-0")};func _ddab ()(*asset ,error ){_fddb ,_egf :=_gce ();if _egf !=nil {return nil ,_egf ;};_aeff :=bindataFileInfo {_ag :"Adobe-CNS1-5",_bc :1901,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491198,0)}; -_fbc :=&asset {_cd :_fddb ,_dce :_aeff };return _fbc ,nil ;};var _deda =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xcb\x3d\x3b\x96\x67\x37\xbf\x9f\xe2\x3f\x6c\x0f\xda\x75\xb6\xa4\xad\x17\x48\x2e\x98\x6a\x17\xae\x41\xb7\x8d\xd3\x65\x1b\x8c\x07\x71\xce\x89\x28\x12\x5c\x37\x93\xac\xac\x41\x7d\x7b\xa3\xb5\x74\xdb\xc6\x18\xee\x1d\x2d\x9e\xfd\xc4\x89\xd0\x5b\x48\xfa\x69\x6f\x29\xfe\xee\xef\xff\xf1\x3f\xfd\xe3\x2f\x7f\xfa\xdb\x8f\xbf\xfb\x9f\xfe\xfa\xe7\xcf\x1f\xef\xbf\xfd\x78\xfe\xf4\xcb\xf7\xaf\xf7\xbf\xfe\xf9\xdf\xfe\xfa\xb9\x7f\xbc\xef\x7f\xfe\xd3\x2f\x3f\xfd\x14\xe5\xc7\xf7\x4f\x9f\xbf\xfd\xfa\x27\xf8\xfc\xcb\xf5\x97\x9f\x7e\xda\xbf\xff\xe3\xbf\xff\xeb\xdf\xee\x7f\xf9\xc7\x5f\x9e\x3f\xff\xa8\x5e\xf7\xfd\xb7\xbf\x9c\x6b\x7f\xfc\xf8\xbb\xff\xf9\xfe\xe7\x3f\xfd\xeb\xdf\xfe\xfa\xef\x3f\xfe\xc3\x7f\xf7\xfd\xf3\xfb\xfe\x6f\x7e\x7c\xef\x67\xdb\xff\xc7\xbf\x7e\xef\xbf\xfe\xe9\x97\x7f\xfe\xf1\x1f\xfe\xfe\xbf\xfc\x31\xfe\xab\xf9\x8f\xff\xf6\x97\xbf\xfc\x5f\xf7\xbf\xdc\xbf\xfc\x6d\xdf\xed\x7e\x7e\xba\x7f\xf9\xc2\x9f\xfe\xee\xef\xff\xf3\xf5\x97\xff\x72\xfd\xcb\xfd\xe3\xef\xfe\xe9\x97\x3f\xfd\xfd\x7f\xf9\xe3\x7f\xfc\xa7\xbf\xff\x63\xf9\x8f\xff\x03\xff\xe5\x9f\xff\xeb\xfd\xd7\x7f\xfd\xd3\x9f\x7f\xf9\x11\xe5\xbf\x7d\xbd\xfa\xff\x63\xff\x5f\xfe\xfd\x2f\xf7\x8f\x38\x77\xf9\xdf\xff\xe9\x1f\xff\xd3\x8f\xff\x23\x7e\xc4\xeb\x47\xc9\xba\xca\xff\x79\xec\xff\xdb\x7f\xfe\xf3\xf7\xfe\xf1\xf2\xaf\x62\xfa\x3f\x7f\xfe\xde\xff\xfa\x97\xeb\x73\xff\xf5\xfa\xe5\x9f\xef\x9f\x7e\xfc\xf8\xc3\xeb\xf5\x7a\xfd\xfc\xe3\x0f\xff\x69\xfc\xc3\x3f\xfc\xbc\xff\xfe\xef\xfd\xfb\x1f\xfe\x61\xff\x7d\xff\xf2\xfd\xff\xfc\xe2\xa7\xf0\x46\xbf\xfc\xf9\x6f\xdf\xfb\xd1\xf6\xeb\x3d\x5e\xaf\x78\x7e\xfe\x11\xfb\x57\xff\xef\x7f\xff\x14\xaf\xd7\x79\xfa\x9f\xbe\xff\xf5\x17\xc5\x5f\x8c\x7b\xff\xe2\x0f\xaf\xd7\x55\xf8\xfb\xaa\x3f\xff\x28\xbd\x60\x49\x2d\xb9\x2d\x2f\x2c\x43\xcb\xf8\xf9\x47\x8c\x89\x65\x6a\x99\x3f\xff\x88\x3a\xda\xc0\xf6\xd1\xf6\xf9\xf9\x47\xb4\x57\x5b\xdb\xf6\xf6\x69\x1b\x65\x72\xaf\x77\x68\x89\x9f\x7f\x94\xe0\x79\x6f\xef\xbe\x11\x91\xdb\xf2\xf1\x57\x1b\x31\xc7\xe4\x89\x1f\x7f\xb7\xb1\x6d\x1d\x9b\xa9\xd8\x88\x39\x16\x77\xfb\x2c\x6d\x4b\x1b\xcf\xfc\x5c\xda\xae\x6d\x9b\x2f\xf2\xfd\x35\xdf\x1b\xfb\x3a\xee\xf7\xad\xda\xaa\xb6\x86\xcd\xd4\x6d\x94\xe0\x6e\xb7\xa9\xbb\x5f\xde\x8d\x14\xdf\xa6\xee\x0e\x6d\x15\x9b\xa9\xbb\x49\xdd\x3c\xbf\x35\x75\xf7\xf2\x3a\x72\x76\x9b\xba\xdb\xd4\x55\x72\x71\x5b\x96\x1b\xfb\xb7\xa4\xe4\xfe\x6a\xfb\x6a\xe3\xba\xc7\x5c\x3c\x45\x1b\xf7\x7b\xcc\xc5\x53\xb5\x91\xb3\xc7\x5c\x3c\xe4\x82\xfc\x3f\xa6\xee\x31\x75\x8d\xd4\x3d\xa6\xee\x31\x75\xc5\x27\x98\xba\xc7\xd4\x15\xaf\x33\x75\x8f\xa9\x2b\xbb\xf6\xc3\x96\x08\x76\xfd\x24\xb6\xd0\x76\x4a\x65\xdf\x2f\x82\x14\x83\x7d\xdd\xc2\x56\xb5\x99\xe2\x17\xf7\x8b\x4b\xdb\x65\x5d\x04\xb6\xb7\xb6\xb7\xd7\xf1\xdb\xa2\xad\x68\x23\x6f\xd1\xb4\x35\x6d\x4d\xdb\x47\xdb\xc7\xfb\x55\x6c\x5f\x6d\xa7\x44\x49\x73\x9a\x96\x34\x2d\x95\x67\x74\xef\xd7\xcf\x33\xb0\x7d\xfc\xed\xe7\x6b\x3e\x48\xf3\xe7\xd6\x76\x9b\xbe\x5d\x6b\xf1\xb5\x5c\xbe\xb6\x96\xe0\xb9\x5f\xcb\xe5\x6b\x5b\x5e\x3c\xd7\xf6\x18\xdf\x53\x93\xdc\xef\xdb\xb4\x35\xcb\x99\x7c\x7c\xbb\xb6\xae\xcd\xfb\x4d\x6d\xd6\x65\xf1\xb9\x96\xdf\xf7\xd4\x9b\xcf\xb0\x0c\xbe\xa7\xde\x76\xcb\x28\x49\xfa\xc0\xce\x6f\x62\x0b\x6d\xa7\xde\xbc\xae\x69\x33\x2d\x75\x60\x7b\x6b\xb3\x5c\x2a\xd7\x75\x7f\xdb\xfd\x6d\xad\xd8\x2e\x6d\xa6\xa5\x61\x1b\xf4\x32\x60\x5f\xb7\x5b\x6e\x99\x94\x3d\xd8\xb6\x86\xcd\xdf\xce\xf3\xdb\xdd\x86\xca\x87\x32\x00\xbb\xf7\xe1\xb7\x9f\xa1\x6d\xfc\xfc\x23\x29\xf9\xe2\x5b\x0f\x92\x37\xb2\x7c\x4c\xef\x46\xf2\xde\x96\x2f\x2d\x1e\x24\xed\xb3\xbe\x28\x4b\xf0\x6b\xcf\x56\x17\x79\xaa\x57\xfc\xfc\xa3\x51\x33\xf5\xaa\x5a\xd6\xcf\x3f\x1a\xe9\xac\xf6\x6b\x75\xf7\x4f\x8d\x16\x57\x3f\x5e\xb3\x7b\xa2\x96\x3b\x8d\xcd\xf7\x01\x44\x5d\x94\x57\x0b\xca\xbf\x45\x6a\x7b\x61\x23\x7f\xad\x1e\xdb\x7e\x62\xab\xda\xda\x83\x6d\x70\x9d\xf5\x04\xa2\xae\xbe\x7e\xfa\x43\xdc\xef\xdd\x06\xc5\x6e\x5b\x13\xdb\xa3\xed\xb1\xde\xb9\x8e\x3e\x56\xec\x3a\x7e\x61\x0b\x6d\xa7\xee\xe2\xa7\x3f\x94\x17\xef\xa6\x88\xa2\xa5\x69\xd9\x2d\x61\xb7\xbf\xf2\x8a\xa9\x65\xf7\x1b\xbd\x63\xf9\x68\xd9\x6f\x47\x9f\xdb\x52\x0a\x96\x8d\xd8\xf5\x53\x5e\x25\xb5\xec\x5c\x06\x77\x2e\x5d\xcb\xae\xd7\xdd\x5f\x96\x57\xf5\x57\x1b\x31\x78\x56\xf5\x57\x94\xcd\x28\x58\xde\x5a\x76\x2b\x1c\x03\xcb\xad\x65\x97\xc1\x7e\xbb\x8a\x63\x93\x88\xd1\xf7\x08\x50\xe2\x45\xce\x40\x21\xd5\xf1\x4a\x2d\xfb\xde\xbb\xf7\x2f\xf1\x5a\x5a\xd6\xbe\x66\xdf\x3b\xa8\x1b\x11\xed\x95\x5c\x55\x02\xdb\xc6\xb6\xed\x27\x46\x7f\x61\xeb\xeb\xe7\x1f\x75\xb7\xf8\x12\x43\xcb\xd8\x6d\xad\x74\xc6\xf8\x5f\xc7\xe5\xff\xbf\xa1\xba\xc4\xf2\x07\x1b\x65\x37\xf2\x12\xcb\x07\x6d\x94\xc6\x63\x56\xd1\x52\xb6\x85\x04\x2e\xb3\xb5\x51\x1a\xd9\x5a\x26\x79\xed\xce\x7f\x0f\xcb\x25\xd6\xd4\x32\x7f\xfe\x51\xb2\x60\x31\xa3\x1b\x25\x29\x9e\xb7\xd7\xbc\x17\x8d\x6b\x71\xef\x7b\x60\xdb\xd8\xb6\x7d\xf7\x42\x47\x2d\xca\xee\xde\x4a\x89\x5b\xcb\xfd\xf3\x8f\xb2\x07\x8c\x52\xf6\xfc\xe4\xa0\x54\xae\x61\x1a\x22\xca\x1e\xf2\x4a\x29\x55\xcb\x4e\x37\xc5\x5a\x6c\x20\xa0\xa4\xbf\x5a\x5a\xf6\xb3\x76\x33\x2e\x85\xee\x5f\x94\xfd\xa2\x94\x52\x7c\xfa\x46\xd9\xdd\x4a\x29\x95\x06\x0b\x4a\x23\x3d\x36\x22\x50\x2a\xf7\xa9\x1f\x2d\x9f\x7d\x67\x7e\x95\x94\x2c\x28\x34\xfc\x62\x95\x82\x12\xfc\x8a\xce\x4e\x94\x42\x2e\x7a\xd7\xc2\x40\x4b\x7a\x2e\x9f\xc5\x74\x8a\x57\xaa\xbc\x2d\x8d\x37\xa5\xb1\x73\xda\x18\x3c\x4b\xdb\xe5\x93\x7b\x12\x56\x9a\x4d\x0a\x24\x4d\xb1\xf9\xf4\xd6\xe9\xaa\x76\xc9\xb7\x41\xbe\xda\xf8\xfe\xfc\x23\xf7\x30\x5f\xd2\xfb\x80\xca\x2b\x95\xaf\xa2\xa5\x6c\x4b\xc1\xf2\xd1\xf2\xd9\x96\x7d\xe7\x0c\x7f\x15\xfc\x2a\xb1\x34\x2d\x6d\x5b\xb8\xb3\xaf\x38\xa8\xe4\x2b\x7d\xc5\x41\xdd\x43\x71\xc9\xe2\xaf\x36\xea\x9e\xda\x94\x2c\x5e\x53\xb8\x86\x5f\x59\x17\xa0\x92\x8b\xb4\xe4\x41\x7d\xf1\xf4\x34\x3d\x1b\x95\x52\x4d\x3a\x3a\x11\xed\xb5\x27\x75\x25\xad\x1f\x10\xed\x35\xbc\xae\x6a\xab\xd8\x26\x25\x90\x3e\x91\x81\xab\xbd\x7a\xc5\x96\xda\xd2\xdf\x52\x0a\xd9\xb5\xf9\x62\x4f\xaf\x1b\xda\x86\xbf\x35\x75\x96\xc4\xc6\xfe\x2d\xf9\xcc\xa5\x6d\xf9\x5b\x72\x9a\x97\xb6\xcb\xdf\x52\x42\x0c\x98\x62\x5f\x67\x3e\xcc\x7f\x3a\x6d\x9e\x5e\xf7\xd5\xf6\xf5\x19\xe6\xe3\xd6\x76\xef\x52\x31\x75\x8f\x96\xc7\x5f\x92\x0b\x5b\x09\xd8\x4f\xa5\x84\x6d\xa5\xa0\x16\xf2\xd0\x2d\xbb\x6e\xd9\x4d\xaf\xb2\xec\xba\x65\x47\xa7\x9d\xdd\xb2\xeb\x96\x1d\x1d\x70\x76\xcb\xae\x5b\x76\x93\x72\xb7\xd5\x83\xfd\x5b\x53\x62\xd9\x75\xcb\x6e\x90\xaf\x6e\xd9\x75\xcb\x6e\xfa\x0c\xcb\xae\x5b\x76\x83\x32\xe9\x96\xdd\x46\x2d\xde\xcd\x92\xeb\xa7\xe4\xcc\x85\x25\xd7\x2d\x39\xba\xe7\xec\x96\x5c\xdf\xa5\x14\xde\xdf\x52\xda\xa8\xbc\xc7\x69\x47\x0c\x2a\xfd\x53\x0e\x4b\x68\xd4\x9f\x7f\xd4\x8a\x65\x6a\x99\xbb\x87\xb4\xbd\x4d\xd3\xb9\x51\x19\xc0\x72\x9a\xca\x8d\xfa\xa2\x6c\xa6\xa9\xdc\xa8\x2f\x4a\x66\x9a\xc6\x49\xeb\xe6\xe9\xd3\x14\x6e\xd4\x97\x77\xb6\x66\x37\xca\xa2\x9c\xa6\x69\xde\x28\x8b\x5c\xd8\xab\x83\xfd\x06\x50\x63\xcb\xda\x59\xbc\xa5\xdc\x69\x59\x37\x1b\x95\xbe\x38\x2f\xf3\xba\x11\xe6\xe3\x32\x67\x17\x83\x3c\x4f\x7b\xdb\x1a\xde\x4c\x3d\xf9\xd5\xdb\xa7\xbd\x99\x88\x91\x8f\xb7\xf9\xd8\x88\xa5\xc5\x7c\x6c\xc4\x22\x67\x1f\x5b\xc1\xc7\xa9\x29\x16\xdb\xc0\x46\xf8\x56\x7c\x2c\xa1\x0f\x53\x46\xd2\xf3\x31\xf7\x4e\x9a\x29\xd7\x8f\xb9\xff\x30\x5d\xe1\xce\xb7\x29\xbc\x77\xfd\x14\xf2\x7e\x9b\xf7\x8d\xca\x48\x90\xb7\x79\xdf\xa8\x65\xfe\xf6\xf0\xda\x1d\xed\x41\xf0\x0a\xf4\x57\xd7\x42\x06\x12\xcb\xd2\xb2\x87\xc5\xb6\x13\xd7\x1b\x05\x0a\xca\x9e\xe7\x95\xde\x42\x0b\x83\x72\xc5\x52\xb4\x30\x28\xef\xc2\x1a\x95\xc2\x02\x51\xc7\x56\xd5\xe5\x9e\xdc\x09\xec\x39\xc9\xc4\xd6\xb4\x35\x6c\x14\xf4\x3d\xbb\xb6\xa9\xad\x62\xbb\xb4\x5d\xda\x3a\xb6\x8f\xb6\xaf\xb6\x5d\xdc\xb7\x0d\x02\x6c\xdb\xc2\xe6\x75\x8b\xb9\xd0\xa0\x09\xde\xeb\xab\xed\xfb\xf3\x8f\xc1\x70\x7c\x3b\x6c\x81\x7d\x55\x60\x1b\xda\x86\x36\xaf\x33\x25\xd7\xa5\x8d\xd4\x39\xdb\xba\xaf\xf3\x84\x86\xed\xd6\x76\x6b\xdb\xa5\x7b\xbf\xcd\xd9\xc6\xb6\x91\x0b\x1b\x1a\xd8\x36\x72\xf1\xf6\xb7\xef\xf3\x5b\x4a\xca\xc6\x06\xa2\xd0\x8e\xef\x8f\x49\xf9\x9c\xa4\x68\xf3\x76\xc8\xb4\x31\x78\x4b\x6e\xdb\x17\xd8\x36\xb2\xf1\xf5\x76\x5f\xb3\xc6\xbb\x73\x7f\x7d\xec\xd7\xc7\x32\x32\xde\x37\x6f\x06\xd8\x23\xd4\x4f\x7f\x28\x4f\xc5\x04\x72\x4f\x9d\xaa\xab\x32\x62\x17\x79\x7d\x31\xf1\xaf\xaf\x17\x93\x5f\x2f\xa9\x5a\xf6\x1b\x36\xbc\x26\xb5\x30\xb7\x1a\x7b\x06\x54\x5f\x88\x91\xfa\x7a\xd1\x37\x4e\x2c\x97\x16\xfa\x41\xaf\xf9\x68\xd9\x39\xdc\x73\xb9\xfa\x7a\xdd\x5a\x76\xfe\xb2\x6f\x4b\x98\xa0\x70\xfc\xc4\x52\xb4\xec\x26\xda\x49\x11\x63\x7e\x7d\x29\x44\xfc\xd5\x57\x0b\xf9\xe7\x57\xc5\x7c\xec\x69\x58\xdd\x33\xb2\xfa\x6a\x5a\xe8\x97\xea\xf0\x4e\xeb\xad\xed\x4c\xb6\xb9\xd7\xf2\x5e\xeb\x36\x77\x5c\x77\xf9\xdb\x07\x19\x37\xcd\xcd\x63\x6e\x58\x5a\xa8\x23\x07\x36\x7f\xfb\xf8\xdb\x3d\x83\xad\x4e\xd5\x6b\xec\x94\xb4\x3d\x2e\xd7\x52\xb9\x1b\xd8\x93\xf0\x9d\xba\x82\x4c\x13\xb1\x5f\x9c\x5a\xe9\x6b\x6b\xa5\x67\xdd\x62\xa1\x56\x5e\x87\x5a\x77\xca\xca\x9e\x45\xd4\x6a\xba\x40\x19\x3b\xf5\xf5\x43\xd9\x80\x42\x6d\xd5\x8f\xf7\xf9\xf0\xab\xfd\xfc\xfa\xf5\x57\x1b\x85\xf2\xab\x48\x7a\x51\xaa\xd7\xa4\x96\x3d\x17\xdc\xa3\x7a\x45\xe3\x1d\x44\x1b\x13\x1b\x5d\x8c\x88\x6c\x7b\xc6\x52\x1b\xcb\x17\x22\x06\xcb\x1c\xb5\x31\x3a\x8b\x68\xcb\xdf\x0e\x72\x0c\x22\x59\x6e\xa8\x6d\x5c\xda\xf6\x7b\xd1\x1b\x29\x61\xd2\x78\xb0\xef\xa7\xed\xd6\x46\x4f\xcc\x0c\xa8\xb6\xe5\xfd\xa8\xdf\xc1\x28\x53\x1b\x7a\x42\x44\x63\x0c\xab\xed\x32\x1f\x76\x17\x2c\x3a\xd5\x76\x3d\xda\x68\x87\x6d\xf7\xff\xb5\xbd\xcd\x87\xaf\x37\x4b\x82\xb5\x21\x3b\x45\x8c\x9e\x0b\xdb\xd4\x36\x69\xc3\xde\xef\xeb\xfd\x36\xa2\xbf\x28\xe3\x76\x5b\x06\x1b\x91\x8b\xd6\xde\x1e\xda\x1f\xd8\x65\xb0\xdf\x9b\xa4\x6b\x17\x31\x0a\x6d\x32\x91\x89\x22\x46\xdf\x3a\xa0\x3a\xd3\x14\x31\x58\x36\xa9\xce\x2a\xc5\x2e\x83\x9d\x0f\xe7\x54\x22\x7a\xa7\x0c\x9c\x7b\x88\xfd\x5b\x9e\xcb\x5c\x43\x44\x06\xed\x3e\x47\xd1\x56\xbc\x8e\xe7\x8e\xa1\x6d\x90\x37\x5a\x54\x8e\xa9\x8d\x8e\xbf\xec\xd9\x57\x4d\x06\x08\x11\x8d\xa5\x94\x9a\xcb\xdf\x6e\x44\x06\xef\x47\x2e\x7f\xbb\xf8\x2d\xcb\x7b\xd5\x91\x5f\x44\xef\xa1\x2d\xb5\x59\x6f\x8d\xf4\x5d\xe6\xe3\x42\xbc\xc7\x9e\x7f\xd5\x44\xb3\x88\x7d\xdd\x7e\x4f\xd2\x7a\x4b\xeb\x8d\xe5\xd7\x9a\x1f\xef\xf7\x39\xf7\xe3\xb7\x1f\xd3\xf7\x71\xf9\xb8\x90\x66\xfa\x6a\x11\xb9\xea\xfa\xcd\xf1\xba\x3a\x51\x10\xd1\x5f\x74\xa3\xe9\x2b\x06\xa2\x57\x8b\xf2\x6b\x55\xb3\x42\xd6\x91\x26\x35\xbf\x6f\x6d\x4c\x3b\x98\xf6\xd4\xfc\x9a\xcd\x2f\xd5\x55\xcd\xe6\x63\x96\x1e\x26\x47\x4c\x46\x6b\x3e\x3e\x83\x35\xd6\xb1\x68\x9e\xf9\xd8\x24\x58\x63\xed\xbe\xee\x69\xb3\x03\x31\x66\xf7\x7e\xa6\x99\xae\xab\x23\xf6\xaa\x73\x0a\x11\x63\x91\xbe\x8e\xbc\x12\x31\x73\x4b\xfb\xda\x11\xd6\x22\xc6\xda\x52\xbe\x76\x44\xb2\x88\x9e\x7b\x6a\x56\x7b\xf9\x6a\xfb\x5a\x2e\x5c\x67\xb7\x02\x62\x0e\x9f\x5b\x7d\x6e\x65\x95\x66\x50\xd5\xdd\x57\x00\x44\x9b\xbc\x3e\xbd\x51\x5d\x20\x66\xdb\x12\xba\xf6\x66\xfa\x1a\x13\xf7\x4a\xf5\xf7\xe6\xfd\x1a\xf7\x6b\x7b\xe4\xaf\xbd\x79\xbf\x66\x17\x42\x77\xda\x91\x29\x22\x72\x52\x7e\xdd\x2e\xa9\xdb\x25\xbd\x18\x24\x3b\x53\x6e\x11\x63\xee\x69\x78\xed\xcb\xeb\x16\xcd\xa4\xf1\x0a\x74\x9b\x2c\x88\xd9\x17\xd7\x5d\x5e\xc7\x2c\x24\x1d\x06\x3b\xb3\x10\x11\xb3\x4f\xf2\x81\x3f\x42\x44\x26\x5d\x5c\x7f\xfb\xdc\x77\x58\xa6\xa4\xe5\xed\x33\x36\x22\x99\x82\xd7\xfe\x36\xbf\x2c\x88\xcc\xdc\x72\xa3\x76\xbb\x33\xb0\xbb\x29\xea\xcd\xd7\x02\x44\x73\x90\xe9\x1f\xeb\xed\x53\x7d\xf5\x78\xae\x83\x0a\x88\x96\xcb\xeb\x7c\xae\xaf\xcf\xcb\x3a\xf7\xf5\x01\x91\x7d\x50\x97\x76\x8f\x5d\xcf\x47\xa3\xad\xf5\xaf\xcf\xc0\x7b\xd1\xd6\x4b\x9b\xcf\x60\x05\x39\x8b\xf9\xf5\xfd\x00\x91\x9d\x6e\xaa\xfb\x2e\x80\xfd\x5b\xca\xef\x36\x1f\xf8\x34\xda\xa0\x0b\xee\x4c\xc4\xc5\x2e\x3f\xda\xd0\x6d\x9a\x37\xa2\x2f\xba\xdb\x7e\xfb\x8c\x9b\x77\xb0\xf3\x7e\xf4\xc7\xeb\x1e\x86\xba\x49\xdb\x18\x4e\x8c\xc0\x7e\xee\x0b\x5b\xd5\xe6\xd4\x88\xe1\x6a\x38\x11\x02\xfb\x7e\x0b\xdb\xa5\x8d\x3a\x4f\xda\xc6\x78\x7d\xb5\xf1\x2e\x2c\xda\xc1\x60\xa1\x42\x44\x4e\xde\xe9\xc1\x6a\xa4\xd8\x79\xe3\xb7\xbe\x5b\x20\xda\x28\x5e\x97\xda\x48\x73\xe3\x5d\x1d\xc5\xfb\x15\xee\x97\xa6\xd9\x77\x10\xec\x3a\xda\xe5\x32\x2a\x6d\x0d\xc4\x1c\x0c\x75\xa3\xfa\x5c\xd6\x33\x7b\xa7\x7e\x47\xf5\xb9\xd5\xe7\xd2\xa5\x8f\x6a\xde\xaa\xdd\x63\xee\x32\x1d\x4e\x0b\x40\xf4\xb9\xb4\xf9\xdb\x56\x1d\xda\xb1\x75\x9f\x81\xb8\xcf\xe1\x75\x88\x60\x11\xb3\x32\x85\x19\x0e\x1b\x60\xf7\x43\xa4\xf9\xf2\x19\xc8\xc5\x36\x79\x67\x86\xed\x1e\xc4\xa8\xd6\x07\x33\x72\x11\xad\x33\x59\x1d\xf6\x93\x20\xb2\x30\x29\x1b\x8f\xf5\x86\x97\x69\x04\x7d\xd3\xb0\x9f\x04\xd1\x83\xe1\x74\xbe\x48\x1f\x88\xb1\x68\xcf\x33\x78\x2e\x88\x36\x78\xdf\x26\xcb\x86\x62\x5f\xa7\xed\xab\x8d\x3a\xef\x5b\xc9\xd5\xc9\x6a\xb9\x88\xde\xb7\x3c\xad\xb3\x4e\x6d\xd3\x7c\xec\x32\x98\x2c\x7a\x88\x98\x78\x1f\xeb\xb4\x0c\x40\x74\x64\x44\x9d\xbe\xbf\x20\x9a\x43\xe7\x44\x5a\x88\xe8\x78\x0f\xea\x74\x12\x08\xa2\xb1\x68\x5a\x27\x1e\x34\x11\xa3\x53\xbf\xcb\xf6\x0c\x62\xb0\x9a\x5f\x97\x13\x70\x10\xc3\x3e\x76\x15\xea\x08\x44\xda\xfe\x96\x6d\x68\xd9\x86\x86\xbf\xad\x8f\x36\xcb\x8f\xf6\xb7\xf0\x6e\x89\x6d\xe3\x7e\xe6\x17\x44\x1f\x94\xc1\x42\x87\x8a\x68\x8d\x77\x66\xb1\xd8\x21\xf6\x6f\x3b\xb6\x4b\x9b\xef\x1b\xc3\xfd\x5a\xa6\x65\x15\xa7\x28\xa4\x65\xf9\xdb\x65\xbd\x8d\x89\xed\xad\xed\x6d\x9b\xcc\xdf\x1e\xee\x97\xb3\x15\x10\x39\x29\xca\x75\x59\x44\x17\xdd\xd9\x64\x46\xb9\xde\x16\xe5\xfb\x14\x25\x59\xc2\xd1\x25\xf6\x6c\x8a\x24\xd8\x75\x81\x98\xc1\xeb\xbd\xec\xba\xc0\x6e\xc6\x14\xdb\xed\x6f\x71\xbd\x0e\x9c\x17\x75\xd9\x8c\x97\xcd\x78\x31\xec\x2e\x9b\xf1\x72\xb8\x67\x85\xb8\x2e\x87\x7b\x10\xa3\x30\x9c\x5e\x76\x71\x20\xba\xd3\x82\xcb\x2e\xee\x3a\x5d\xdc\xd4\xd6\xb5\x39\x43\xa5\x0a\xaf\xa0\xfa\x41\xf4\xe1\x75\x4e\x15\x40\x8c\xb2\x76\x93\xbd\x58\x17\x17\xd1\x16\x4d\xe7\x2a\x97\xb6\x33\xc4\x72\x1d\xab\xaf\x22\x06\xce\x92\x7a\xe1\x2c\x15\x3b\x2d\x3b\xbf\x17\x6b\xab\x22\xba\x4a\xe0\x4a\xd3\x92\xa6\x65\x79\xdd\x47\xdb\xc7\xe9\x17\xe9\x63\x9d\x52\x44\xe2\xd8\xa9\x57\x37\x6f\xac\x0f\x76\x9c\xed\xf5\xea\xde\x8f\xf5\xc1\x51\x98\x3e\x5c\x76\x49\xd7\xe9\x92\x78\x6d\xaf\xcb\xf4\x5d\x74\x17\xc9\x14\xef\x62\xed\x49\xec\xeb\xf8\xed\xd7\xe7\xa2\xd6\xbb\xc3\xd5\x85\xab\x5e\x44\xf3\x35\xbb\x1e\x6d\x0f\xdd\xf2\xcb\x7c\xd8\x75\x5d\x67\x8a\x67\xfa\xac\xdf\x4b\x15\xc1\x9a\x73\x7d\xab\xac\x41\xb4\xa4\x6d\xbc\xed\xa6\xc0\xee\x42\x76\x99\xbe\x1d\x5e\xc0\xbe\x1f\xd7\xe1\xa9\x10\x31\x07\xc3\xf8\xdb\x29\x19\x88\x89\xdf\xa5\xbe\x9b\xbf\x6d\xb4\xd3\x17\xc3\xcb\x9b\x35\x67\xb1\x6d\xbb\x7e\xdf\xac\xf4\x8a\xdd\x76\xb9\x8e\x75\x4c\xb1\xaf\xeb\xd8\xbc\xdf\x38\xf7\x4b\x6c\xa6\x65\xb8\x0a\xf7\x22\xcd\xe3\xa3\x8d\xd5\xd4\x56\xf8\xad\x5d\x03\xd8\x6d\x17\x9b\xea\x0f\x44\xbe\x98\x66\xbc\x7d\xe5\xc1\xb6\x91\x16\xdf\xdf\xb7\x6a\x63\x32\x3c\xbf\x9d\x2e\xbd\x55\x7f\x95\xae\xe6\xed\x50\x02\x76\xd7\xc0\x75\x1f\xd3\xfc\x71\x98\xa4\xab\x79\x3b\x5d\x02\xfb\x19\x94\x29\xc1\x19\x22\xf2\xc5\x3b\xfd\x76\x2a\x03\x62\xbe\xe8\xd2\xdf\xbe\xd3\x6f\xc3\x29\xce\x75\xd6\xf9\xdb\xd0\x89\x57\xe1\x19\x4e\xeb\xdf\x4e\xeb\x27\xed\xfe\xfd\xf8\xdc\x47\x95\xcd\x50\xfc\x71\x9a\xf1\x71\x9a\x61\x3f\xf4\x09\xf2\x0b\xb6\xa2\xe9\xd8\x52\x9b\xea\x1e\x35\xf4\xc1\x1f\x21\xf6\x74\x64\x3f\xf7\xc3\xaa\xa8\x88\xf9\xaa\xda\x7c\x06\x2b\x57\xe9\xb4\xf4\xe3\xf0\x02\xa2\x57\x9f\xeb\x74\xee\x73\xa6\x73\x2f\x6d\x1f\x6d\xbc\x97\xad\x73\xbf\xdb\x67\xdc\x6f\xa7\x69\xdc\xef\x7e\xb4\x3d\x3e\x77\xff\xf6\x8b\xc3\x57\x44\xc3\x7d\x5a\xbf\xae\x04\x81\xdd\xd6\xf6\xfd\xbe\x0e\x43\x60\xb7\x67\xae\xc3\x15\x2b\xa2\x2f\xa6\x00\xdf\x46\xfa\x40\x4c\xd7\x65\xbe\xae\x66\x80\x3d\x94\x78\xdd\xad\xed\xf6\xb7\x3c\x43\x35\xfe\xd5\xef\x93\xbc\xbf\x5f\xe5\x04\x88\x3e\xe8\x0f\xbe\x4e\x79\xbe\x4e\x79\x1a\xd3\x91\x2f\x7e\x05\xb1\x9f\xa1\xed\xd2\x76\x99\x16\xf2\xeb\xd4\x08\xec\x29\x3c\xcf\x25\x38\x41\xec\xeb\x26\x36\xcb\x80\x15\x93\x6c\x94\xf3\x77\x7a\xdd\x54\x66\xb1\x52\xf3\x75\x98\xfc\x1a\xb0\xf0\x62\x45\xec\x3b\x7d\xc6\xe4\x19\xa7\x9c\x97\x79\x5b\xbe\xab\xfe\x56\x69\x03\x22\x59\x60\xad\x5f\xd5\x38\xd8\x92\x8a\xeb\xde\xb4\x21\x10\x9d\x65\xc8\xfa\x55\xa1\x83\x68\x85\x7e\xfc\xfb\xb1\xec\x5d\x91\x77\x9a\xf6\x55\x4e\x80\x2d\x03\xf9\xad\x53\x19\x10\x39\x0a\xe9\xb3\xfd\x7d\x6d\x7f\x2f\xfa\xe2\xaf\x12\xe3\xab\xc4\xc0\x5b\x57\xbf\x4a\x6b\xb0\xdb\x24\xe9\xbb\x7d\x06\x7e\xe2\x36\xda\xef\x18\xee\xbf\x44\x4b\x89\xe8\x8b\xe6\xfe\xb5\xc9\x82\xc8\xd3\x24\x7c\x45\xbf\x46\x37\x45\xd5\xe6\xe3\x1e\x14\x6b\x67\x28\xf9\xba\x90\x08\xf6\x4c\x51\x9b\x59\x7a\xc8\x52\x65\x46\x7e\x3b\xec\xde\xae\xf9\x0f\xba\xef\xdb\x99\xf6\xed\x4c\x7b\xa0\xc6\x6f\x67\xda\x20\x86\x4b\xa6\xb7\xaa\x18\xc4\x70\xb1\xed\xc6\xb5\x28\x62\xbc\x58\xec\xb8\x71\xd4\x8a\x3d\x14\xef\xaa\xb9\x2f\x7f\x7b\x39\x33\x66\xaa\x70\x5f\x4b\x9b\x43\x09\xcd\xd3\xf5\x75\xb1\x67\x99\x3c\xd7\x26\x01\xf6\x4c\x1b\x9b\x2a\x16\x44\xe2\x82\xab\xb7\x53\x23\x10\x6d\x99\x16\x9b\x89\xb1\x20\xe9\x8c\xf7\xb6\xbb\x05\x91\xb8\xc4\xea\x6d\x33\x01\xd1\x9c\x05\xbb\xc0\x2e\x62\x86\xcf\xb5\xe9\xdc\x36\x1d\x9c\x67\xf5\xfe\x5a\x7e\x5f\x67\x94\xde\xcf\xae\xeb\x36\xe6\x29\xa8\x4b\x17\xdd\x45\x64\x56\xd2\x67\x97\x7e\x16\xe2\x89\xa5\xa8\xf7\xd7\xe7\x12\xcb\x94\x1d\x85\xe9\xe2\xbc\x88\x46\xac\x50\xbd\x55\xac\x20\x32\x51\xb6\xb7\xd3\xbe\xfb\x4c\xfb\x18\xc2\x6e\x9b\x27\xd8\xf9\xf5\xb7\x96\xfd\x6d\x77\x71\x6c\x6f\x6d\x2c\xb6\x77\xeb\xcd\xe9\xc3\xed\xf4\x21\x50\x20\xb7\x6d\x12\xec\xb2\xa7\xac\x1c\x36\xc0\xbe\xce\xdf\x9a\x8f\xe7\x94\x9f\xd7\x59\x7e\xcf\x29\x3f\xd2\xf7\x58\x47\x8f\xdd\x05\x43\xe2\xa3\x4f\x01\x44\xd6\xa1\xad\x69\x63\x3a\xe7\x2b\xfa\xd8\x9e\xc1\x4e\x8b\xd7\xdd\xda\x58\x95\x09\xa6\x96\x8f\x8b\x9a\x8f\x71\x6e\x44\xd2\xd4\xc7\x69\x06\x88\xc4\x7d\x5e\x1f\x5c\xdb\x62\x4f\xbf\xb0\xa9\x22\x40\xa4\xd3\xeb\xc7\xe9\x03\xd8\xf7\xdb\xf9\x78\x5c\x3c\x7e\x5c\x3c\x9e\xe4\xf7\xf9\x98\x0f\xe2\x8e\x46\x65\x35\xe8\xb1\xce\x1f\xeb\xbc\xd2\xae\x1e\x87\xb0\xc7\x58\x35\x5c\x85\xf5\x71\xba\x0e\x62\x06\x4a\xea\x21\x2a\x52\xec\x69\xe4\x6e\x2f\xcf\x63\x9a\x89\x63\x1c\x13\x49\xf0\x58\xf6\x8f\x2a\x8c\x15\xbb\xf6\xa2\xfc\x44\x74\xba\xc7\xa6\xd3\x43\xec\xe7\xe6\xb6\x31\x4d\x13\xdb\x36\xb6\xad\x25\xb6\x66\x5a\x76\x77\xdb\x5e\x94\xa9\x88\x31\x1b\xcf\x60\xda\x2c\x76\x57\xb8\xb6\x8d\xe1\x4a\x44\x12\x18\xd1\x5e\xdd\xfb\xe1\x56\xef\xa8\xd3\xf6\x62\xb8\x12\x31\x71\xb2\xb6\x17\xc3\x95\xd8\xb6\xb2\x6d\xf4\x25\x62\x97\x1f\x69\x7e\xbf\xb1\xbd\x5d\x8d\x4c\xd2\xf2\xf6\xb7\xbc\xfb\x3d\x5e\xa4\xf9\xe3\x6f\x5d\x68\x8f\xc0\xf6\xd5\x46\x3c\x61\xc7\xd9\xd0\x5e\x5f\x7f\xfb\x75\x15\x6f\xf1\x8c\xc7\xf4\x3d\x4a\x8c\xfd\x4e\x37\xa3\xaa\xc4\x4e\xcb\xc0\xd6\xb4\x35\xfb\xf6\x89\x6d\x69\x73\xea\xbb\xa7\x91\x2d\x68\xa7\x22\x32\xea\x7e\x6e\x30\xcd\x10\x91\xd1\xb0\x21\x1d\xc4\xfe\x2d\xcf\x20\x18\x40\x44\xcb\xad\xd0\x5b\x74\xef\xd7\xcf\xfd\x76\x99\xc6\x20\x1f\x20\x92\x15\xd9\x66\xa0\x95\xd8\x53\x78\xf2\xf1\xf6\xb9\x3a\xc5\x0b\x65\x15\x1f\xf3\xc1\x14\x74\x12\x47\xdb\x82\x3e\x51\x44\xa3\x4d\xb6\xf8\xf8\x0c\x1d\xd8\x25\x78\x06\xc3\xa4\x88\x86\xbc\x6b\x71\x7b\x1d\xd3\xaf\x16\x8d\x7c\x3c\x96\x0b\x6d\x37\xe9\xaf\x5a\x61\x6a\x29\xb6\x6d\xe7\xa3\x30\x46\x89\x68\x04\x36\x34\x03\x94\xc4\x7e\x2e\xd7\xd9\x86\x8c\xbd\x4c\x56\xbe\x5b\x19\xda\x58\x7d\x9d\x84\x68\xb5\x82\xf7\x58\x6c\xdb\xce\x47\x21\xc0\x40\x6c\xdb\xae\xf3\xc2\xca\xa8\x88\xde\x5e\xfc\x96\x15\x22\x11\x2d\x5f\xe5\x37\x87\xfb\x56\xde\x3e\xce\x85\xd3\xb6\xbb\xd6\x56\x1e\x1f\xf7\x9c\xc5\x4a\x92\x8a\x0a\x13\x7b\x16\xe7\x75\xfe\x96\x2e\xb3\xb3\xa0\xd7\x2a\xea\x4a\x44\xa3\x1b\x68\xd5\xea\x07\x5b\xf1\xef\x6a\xad\x28\x4c\x11\x13\xaf\x5c\xab\x6f\x8a\x03\xc4\x20\x8a\xae\x11\xc7\x79\xb0\x67\x67\x3b\x2d\x95\x60\x51\x11\xc3\x6a\xad\xbe\x16\xd5\xd7\x62\x35\xee\x47\x97\x24\x62\x16\x6d\xa8\x0d\xb1\xaf\xdb\xbf\x35\x1c\x54\x6c\xf5\xf7\xc2\x56\xb4\xb9\x88\x46\x15\x36\x66\xe4\x62\x5f\xb7\xef\xd7\x58\x98\x14\xdb\x36\xb0\x7d\xb5\xf9\xdc\x3d\x6b\x6d\xfa\xfe\x44\xb4\xf3\x5b\x66\xa3\x22\x66\xe9\xa4\x65\x69\x5b\x0e\x39\x03\x1b\x0b\x61\x22\x1a\x7e\xaf\xd6\x2e\xd3\x77\x15\xa7\x23\xdc\xef\xed\x75\x6f\x9b\x5d\xe7\xb9\x04\xf5\x8b\xe8\xd6\x65\xfb\x78\xdd\xc7\x21\x8c\xae\xa1\x7d\xcc\xc7\xe7\x2c\x1e\x17\x6c\xb7\x36\x5e\x5b\x56\x65\x5a\xfb\x9a\x37\x17\xa8\x99\x6a\x35\xfd\x81\x62\x5f\x47\xf9\xe1\x0f\x14\x7b\x86\xda\xb1\x2d\x6d\x0c\x61\x93\xfa\x6d\xb7\xe5\x42\xd0\x7d\x16\xf3\xc6\x70\x2f\xb6\x92\x22\x2d\x28\x47\x11\xfd\x95\xd8\x6c\xa7\x4d\x45\x38\xea\xce\x6f\xda\xed\x81\x3d\x4b\x5f\xd8\x9a\x36\x5f\x9f\xad\x90\x5a\xda\xed\x81\x48\x16\xa8\x5b\xbe\xde\xda\x6c\xbb\x74\xe9\x49\x98\xa9\xd8\xaf\x37\xf7\x73\x68\x4a\x55\x18\x91\x3a\x2d\x59\x20\x14\xfb\xba\x81\xed\xd6\x76\xbb\x30\xbe\xcb\x2f\xab\xe9\x63\x91\x39\x09\x50\x6e\x59\x7d\x2e\x6a\x6d\x96\xc9\x73\xab\xcf\x20\x50\xa5\x65\xd5\xf6\x68\x3b\x5d\xff\x2e\xe7\x6c\xde\xaf\xa9\x04\xe8\x2e\xf4\x9d\x8a\xdd\x86\x3a\xb6\xa2\xcd\xf6\xd2\xbd\x2e\xb5\x59\xe7\xb4\x53\xa3\xe0\xda\x89\x82\xb3\xdd\x1b\xa5\x26\x62\x0e\xcb\xca\xee\x0c\x44\xab\x8d\xb4\x0c\xcb\x60\xf8\x4e\x4f\x9e\x3b\x7d\x06\xca\xac\x31\xb5\x6c\x69\x3b\x48\xdb\x41\xd0\x75\x19\xf2\xd3\x4e\xc8\x4f\x61\x88\xed\x2c\x46\x8b\x68\x95\x77\xab\xa3\xe4\x45\x34\x9c\x5d\xad\xb3\x3a\x27\xf6\x6f\x77\xfa\x3a\x11\x7e\x22\x9a\x43\xb1\xce\x2e\x11\x0d\x9f\x72\xeb\xac\xac\x88\x3d\xa5\xe5\x19\x0e\x1b\x60\x4f\xeb\xf7\x3b\xd8\xbf\x5e\xc7\x54\x3a\x59\x81\x69\x3a\x52\xc4\xbe\x6e\xa7\x65\xd8\x47\x0c\x55\x3b\x2b\x03\x6d\xb0\x52\x28\x22\xf1\xf1\xb7\x81\xca\x16\x7b\xc8\xde\x65\x30\x98\xba\x89\x48\xb6\x19\xb4\xb1\xfc\x2d\xfe\xe3\x89\xd2\x6b\xe3\xa2\xac\x40\xf4\xe4\x3d\x1a\x6f\x6d\x84\xf0\x74\x16\xf8\xdb\x20\xca\x41\xc4\x60\xc3\x50\x1b\xf6\x89\xc3\x3e\xd1\x29\xcf\xf0\x3d\x02\x31\x62\xed\x3a\x9f\x4c\x73\x45\x8c\xc5\x3b\x3d\x7d\x3f\xc0\x9e\xba\xed\x72\x99\x95\xb2\x07\x31\x89\x75\x6d\x93\xa8\x49\xb1\xa7\x73\x3b\xcd\x93\x15\x31\xb1\xcb\x99\x67\x2c\xef\xe7\x62\x74\xd9\xd3\xeb\x36\x2f\x7f\xab\xca\x76\x38\x9d\x84\x2c\x89\xad\xee\xb9\x9f\xf5\x31\xad\x8f\xc1\x3b\x38\xed\x9b\x40\xf4\xbe\xa7\xd2\x6d\x9a\xdf\xe9\xb4\x94\x15\x9d\x36\x91\x09\x62\x97\x3d\xf7\x73\x0a\xa5\x73\x20\x17\xed\x79\xd9\x26\x97\x53\x78\x22\x0b\xdb\x72\x0a\x00\x62\xb0\x82\xda\x16\x71\xd6\x62\xa7\x79\x97\xcb\x72\x5c\x00\x5b\x26\x24\xb6\x4b\x9b\x2b\x12\xcb\xeb\xbe\xda\x9c\xe6\xd2\x26\x57\xf5\xb7\x38\x8d\x33\x53\xdb\x47\x9b\xf2\x84\x77\x70\x55\x9f\x5b\xed\x9f\xcb\xef\x18\xee\x97\xb3\xe5\xe5\x6c\xd9\xd9\xed\xb2\xbb\x58\xee\x32\xf1\x55\x5e\xce\xa0\x97\x33\x68\x87\xdd\xe5\xcc\x78\x19\x70\xda\xa6\x36\xb3\xe4\xcc\xb8\x32\xc4\x2e\x16\x3a\x45\xb4\x39\xc9\x26\x7e\x0c\x11\xcd\xe1\x5e\xc7\x82\xd8\x33\x45\xee\x47\x64\x9b\x88\x59\x69\x76\xcb\xe1\x05\xec\x59\x0d\x45\x7e\x9b\x16\x15\x08\x21\x50\x6d\xdd\xfe\xf6\x76\xd1\x1a\xdb\x65\x17\x72\xd9\x85\x24\x33\xd9\xcb\xee\x1b\x44\x9a\xdf\x8b\x90\x69\xb1\xef\xb7\xd3\x7c\x59\x0d\x57\x3d\xcf\xd8\xcf\xbd\x58\x74\x15\x7b\x1a\xc4\xfd\xde\xfe\x96\x45\xa0\x41\x60\x7f\xbb\x50\xfc\x62\x37\x4f\xee\x87\xf2\x16\xd1\xec\x82\x2f\x87\x49\xb0\x9f\xc1\x6f\x1f\xd3\xfc\x98\x66\x5e\x5b\x17\xb7\xdb\x59\xdc\x46\x99\xb5\x37\xfe\x4f\xb1\xf3\x8b\xcd\xd7\x11\x44\x67\x67\x56\x7b\xab\x54\xde\x2e\xac\x55\x86\x97\x37\xe1\x30\x62\xdf\x8f\x67\x58\x6f\x2e\x50\xb7\x9c\xda\xde\xda\x9c\xf6\xbd\x78\x06\xe1\x49\x22\x7a\xa5\x19\xbf\xa7\xb6\x79\x56\x01\x78\xae\xb3\x79\x10\x59\xe9\x96\xdf\x28\x51\x11\x4d\x05\xe2\x42\xb6\x88\xd6\x53\x9b\xf9\x30\x94\xa6\xf2\x9a\xbd\x09\x5d\x13\x31\x2b\xd3\xcd\xf7\x5b\xdb\xdb\xba\x44\x0d\xb9\x90\x2d\xa2\x75\x86\xbf\xb7\x53\x9e\xb7\x53\x1e\x76\x48\xb5\x8f\xd3\x82\x8f\x6a\x88\x80\xfb\xf6\x79\x0d\x6d\x43\x5b\x60\xbb\xb5\x79\x3f\x14\xd2\xc7\x21\xfb\xe3\x02\xab\xaa\xf3\xe3\xeb\xf8\x31\x8c\x89\x9d\x68\xed\xe3\x30\x04\xa2\x13\x54\xde\x3e\x84\x27\x89\x9d\x0f\xae\x1b\xda\x5c\xd4\x5c\x4c\xfb\x3e\x97\xe9\xc3\xc9\x36\x3b\xd3\xe6\x8f\x5d\x21\x88\xc4\x39\xd0\x3e\x4e\xfb\x3e\xc6\x52\x34\xa6\x28\x1f\xa7\x7d\x20\x72\x31\x6c\xb8\x90\x2d\x76\xfa\x78\x06\x2b\x35\x22\x7a\x58\x06\x76\x99\x20\xba\xdd\xcf\xd7\xe9\x12\xd8\xf9\xd8\xcf\xfd\x12\xcc\x28\xa2\x77\xda\xf3\x17\xc7\x96\x88\xd6\xe9\x0f\x5c\x60\x15\x31\xea\x1a\xd8\x3e\xda\x8c\x09\x29\xbb\xfc\x6e\x87\x1c\xc0\x52\x74\xbb\x9d\x98\x03\xe2\x32\xda\xed\xf4\x0e\x28\x42\x6e\x6b\xf1\x76\x72\x87\xd7\xb9\xdd\xd6\x22\x30\x40\xa9\xdd\x38\x7a\x85\xa3\xfc\x6d\x96\x00\x01\x23\xed\x26\x90\x41\xb0\xb8\xd5\x6e\x47\x3c\x40\xec\x5b\xbb\x89\xf2\x14\x1d\x07\x50\xbb\x71\x42\x88\xce\x40\x7e\xdb\x62\x40\x7f\x85\xa6\x47\xd3\xc3\xef\xb8\xb9\xe5\x07\x08\xb6\x6b\xb7\x83\x0b\xf0\x3d\xb8\xc3\xdc\x6d\x10\x8a\xda\x6e\x27\x40\x60\xd0\xc7\xdd\x4e\x51\x81\x93\xb3\xdb\x09\x07\x18\xd4\xdf\x6d\xff\x01\x08\xfa\x6c\x77\x98\x59\xf7\x75\xf6\xe9\x55\x66\x2e\xac\x15\x7a\xbc\xdb\xc1\xed\x8e\xe7\xe7\x1f\x93\xbe\xe8\x2e\xa6\x92\x5d\x56\x39\x18\xb2\x6e\xfb\x4f\x10\x83\xbd\xb8\xed\x2e\xa6\x8b\x5d\x64\x2c\x66\xb6\xbb\x98\xb0\x8d\xe4\x25\xbc\x1d\x13\x6f\xbd\xa3\xc5\x7a\x50\x43\x02\x67\x0a\xb7\x5d\xdd\x6d\x57\xa7\x12\xb9\x1d\x39\x41\xef\x5a\x4c\x6a\xb1\xd8\x31\x55\xcb\x78\xa3\xb3\x2e\x72\x57\x53\xbf\xd1\x5f\x95\x54\xb9\xb4\x01\xe2\x45\x9b\xbd\x9d\xa6\x83\x5e\x79\xbd\xef\x6a\x76\x36\xb2\xd2\x82\xec\x6c\x41\x8c\x3e\xb5\x99\xc3\x8d\x6e\x9e\x5d\xb4\x02\xbe\x24\xb7\x9d\x07\x18\xf9\xdb\x1b\xd0\xda\xed\xe0\x0f\xfa\xab\x9a\x31\x73\x5f\x4f\x3c\x35\xa5\xa4\x3e\x00\x89\x1a\xba\x9b\x99\x6d\x6e\x4c\x64\x66\x77\x37\x73\xbb\x91\xb8\x58\x9b\x6b\xea\x22\xcf\x45\xb6\xb2\x0d\x7b\x9e\xbb\x99\xd9\xe6\x3b\x45\x3e\x9a\x79\x6d\xe4\x55\x8b\x79\x6d\x67\x91\xd2\x9b\x9b\xdb\x8d\xce\x5c\xfa\x6e\xa6\x7d\x83\xc8\xe2\x76\x3b\x1b\x06\xc3\x57\xa1\x99\x97\x8d\xe1\xab\xa0\x82\xb9\xf7\x94\x64\x4e\x4a\x36\xad\x91\xb4\x81\x51\x2c\x69\x92\x36\xca\xcb\x2e\x23\x4d\xd3\x46\x9a\xdd\xb4\xcd\x9d\x1d\x41\xf6\x0f\x76\xd4\x20\x46\xb7\x7e\xd5\x42\x20\xd7\xb9\x99\x49\xdf\x20\xd8\xb4\xdd\x69\xd2\x37\xba\xef\x42\x9a\xf4\x8d\xce\x64\xf0\xee\x26\x61\x63\x32\xfe\xde\xce\x9b\x6e\x57\x83\xa6\x6d\x6e\x58\x0b\x84\x0c\x57\x0b\x7d\x98\x9d\xe1\x34\xc2\x72\x70\xf8\x05\xc5\xde\xf9\x76\x2d\x0d\x8c\x81\xc6\x72\x53\x43\x3b\x9b\x1a\xd8\x3a\xdc\xee\x69\x6b\x30\xb0\xcf\x89\xcf\x3d\x2d\xd5\x8d\x9a\x76\x7a\xd3\x74\xcc\xf6\xf3\x8f\xf5\xb2\x7e\x54\x71\x20\x19\xdc\xdd\x0c\x21\xba\x25\x38\x6d\x20\xd3\xe8\xd2\x97\xbf\x33\xfd\x1b\xbd\x9b\x06\x8b\xc2\x80\x96\xe9\x1b\x32\x2d\xfb\x8d\x50\xc2\xba\x87\x42\xb8\x00\xc0\x76\x8a\x83\x8e\xb7\xbb\xdd\x4e\x3a\x40\xb7\xad\x39\xd4\x80\xce\xba\xc6\xbd\xcc\xdf\x46\x67\x1a\x7b\x3b\x05\x01\xfd\xc5\x42\xc7\xed\xfa\x1a\xe8\xcc\x2b\xdc\xaf\x21\x3a\xb3\xa3\x5b\x21\x06\xa2\x0d\xbb\x84\x65\x66\x16\xf5\x4a\xba\x97\xf5\xba\xec\x55\xad\x57\x65\x0e\x08\xd5\xc1\xbd\x4c\xb9\x51\xf8\xb6\x1a\x17\x7e\x40\x74\x5f\x42\xd7\x7d\x40\x5a\x5b\x4e\x99\x41\x67\x8d\xe1\x76\x1d\x08\x10\xee\xd6\x6e\xa7\x0d\xc0\xc9\xb7\x5b\x48\xc4\x74\x80\x54\x41\x82\x69\xd7\xef\xd2\xb5\x6e\x30\xe2\x1d\xdb\x7d\x99\x6e\xe2\x36\xab\xe5\xab\x3a\x3b\x9b\x47\x6c\xff\x6f\x8b\x73\xa3\xbc\x1c\x92\xd5\xa2\x60\xbd\x7c\x9d\x9d\x8f\xdc\x2e\x43\xfd\xfa\x4b\x4b\xcf\x8d\xad\x81\x44\xba\x5d\x02\x04\xdd\x4e\xc6\xf5\xf3\xfb\x7d\x5e\x4c\x1f\x60\xeb\x60\xd1\xb2\x0d\xab\xd5\x35\xf5\xfb\x04\x46\x3b\xc2\x3a\xeb\x03\x7d\x70\x37\x97\x13\x81\x02\x51\x9f\x9b\xe8\xaf\xf0\x22\xb3\xb4\x41\x98\x67\xbb\x5d\x70\x06\xdd\xbe\xe7\x63\x1e\x3f\xbb\x3b\x34\xe9\x2e\xe0\x83\xfe\x72\x20\xfb\x98\xc3\x8d\xfe\x0a\xef\x64\x06\x3f\xbb\x37\x74\x38\x75\x5a\x06\x3a\x93\xc1\xdb\x75\xb7\xdb\x00\xeb\x62\xc9\x7f\x4d\xc1\x77\xfc\xfc\x63\x38\x90\xe9\x1c\x00\xc3\xf1\xcf\x75\x51\x30\x6c\xb4\x5f\x9f\xf6\xb5\x38\xb9\xf9\xd7\xb2\xfb\x3a\x96\x90\x5f\x75\x33\x30\x9c\xbf\xe9\xd5\x13\xa7\x7c\x55\x61\x60\xd8\x64\x9c\x3b\x82\xfe\xaa\x9a\x2c\xb9\x2d\x67\x86\xef\xbb\x42\x0d\x0c\x27\x47\xb7\xe9\xbe\x29\x27\x04\xb9\x3e\x3f\xd1\x5f\xac\x2b\xdc\xae\x0b\xde\x1e\xc6\xd1\xcf\xdd\x6d\x0a\xb7\xae\x14\xc4\xcd\x7d\x9b\xd0\xdb\xa8\x15\x7f\xfb\x58\xed\x1b\xd3\x37\xe9\x31\xa9\x0f\x49\x1d\xed\x77\x0c\xb9\xae\x13\x83\xe9\xa8\xe1\xaa\x01\x58\x36\x60\xd7\x4d\x40\x7f\xf9\xaa\xb9\x24\x04\xfa\xcb\x06\xf6\xd8\x52\x36\xa6\x83\xc8\xe3\xcb\xf0\x30\x94\x0e\x6f\x6e\xa1\x3c\xf6\x2e\x2c\x49\xdc\x2e\xb9\x83\xe9\x8b\xf5\x58\x51\x1b\xcb\x4e\x57\xad\x08\x08\x7f\x69\xfa\x27\x85\xfb\x17\xda\xe3\x34\x1a\x10\x52\xdc\x1e\x57\xb7\x41\x77\x91\xf4\x71\x66\x0d\xa2\xb1\x89\xa0\xe9\xd7\x14\x46\x9f\xb5\x87\xfd\x3e\xa2\xb3\x71\xb6\x3d\x4e\xad\x41\x7f\x0d\x13\xb1\x34\xd1\x31\x4e\x2c\x97\x96\x6b\x67\xc6\x9f\xbd\xb5\xbc\x77\xaa\xbc\xf7\x57\xcb\x77\x5f\x63\x02\x6e\x2d\xcc\xe8\xba\xe9\x7c\x34\xed\x1c\xa3\x12\x1e\xe7\xd1\xcf\x9e\x35\x4f\x16\x91\x9e\x30\x7b\x41\xf6\xa6\x17\x99\xbd\xa0\xd7\x67\x0c\x7e\x9c\x5b\x83\x4e\x3c\x47\x7b\x9c\x5c\x83\x89\xb8\x7f\x9c\x4a\x83\xce\x3e\x84\xf6\x38\x97\x06\x13\x45\xf7\x38\x97\x7e\xdc\x21\x30\xe8\xe2\x1f\x57\x19\x80\x91\x8f\xed\x29\x26\xab\x98\x2c\x6e\xef\x84\x18\xec\x5f\x92\xd4\xe2\xfd\x0d\x22\x1c\xa6\xd5\x09\x30\xe8\xec\x43\x6e\x8f\xf3\x5f\xd0\xf5\x49\x3e\xc5\xb2\xd9\x08\x76\x0e\xb7\xc7\x09\x30\x08\xbc\xf8\xed\x71\xba\x0b\xb6\xde\x26\xe3\xce\x77\x41\xd7\x99\xf9\x28\xe5\x40\xb8\xe0\xfe\x38\x05\x06\x71\x0a\xc3\x39\xf0\xe3\x1c\x98\xc3\x75\xda\xe3\x1c\x18\x84\x4b\x9b\x8f\x93\xe0\xc7\x3d\x0f\x1c\x19\xd0\x9e\x6a\xa9\x11\x5b\xed\x30\xf1\x38\x33\x06\x3d\x6c\x5d\xce\x7d\x41\xe0\x46\x6f\x8f\x73\x5f\x10\x04\x05\xb5\x47\xed\x0d\xba\xce\xe2\xc7\xd9\x30\xe8\x61\xbb\x70\x3a\x0c\xba\x2e\xb8\xc7\xd9\x30\xd8\xcd\x9e\x5f\x3a\x1d\x06\x41\xe0\x50\x7b\x9c\x0f\x83\x48\x5d\x53\x4f\xb3\x34\x08\xa8\x22\xd0\xa3\x3d\x4e\x92\x41\x70\xf2\x52\x7b\x9c\x24\x83\x38\xad\xcc\x59\x32\xe8\x61\xfd\x3a\x49\x06\xd1\xc6\xd0\x66\xce\x37\x8e\x83\xef\x71\xe6\x0c\xe2\x75\x52\x61\xce\x59\x48\x3e\xaf\x88\x73\x67\x10\xaf\x46\xf9\xa4\xcd\x80\x35\xbe\x17\xc2\xee\x71\x3e\x0d\xba\xbe\x74\x63\x11\x44\xd7\xaf\xf1\xa4\xad\x80\x28\x39\x3d\xcb\x8f\x6e\x03\x10\x1c\xbc\xd1\x1e\x67\xe2\xa0\x87\xfd\x89\xfe\x76\x10\x2f\x16\xf2\x0c\x6b\x10\x3d\xec\x04\x9c\x9c\x1b\xd5\x70\xda\xb5\xb3\x73\x10\x3a\xc0\x1e\x27\xe7\x20\x5e\x36\x58\xe7\xe6\x20\xd8\x5e\xdf\x1e\xe7\xe6\x20\xec\x7b\x1f\x27\xe7\x20\x5e\xe9\xed\x2d\x1c\x66\xe7\x2e\xdc\x3c\xba\x6b\x41\xb0\x7d\xbd\x3d\xdd\x96\xd2\x69\x29\x2c\x71\x3d\x7a\x41\x40\x0f\xdf\xde\x6e\x79\x75\x1b\x0a\x6d\xa7\x5b\x5e\x1b\x9d\x6d\xd4\xed\xd1\x4b\x0e\x3a\x1b\x9c\xdb\xa3\x20\x00\x51\x9b\xf7\x32\xdb\x1b\xbd\xd9\x4b\x77\xb3\xbd\xd1\x5b\x78\x2f\xb3\x8d\x77\xbd\x32\x7a\x3f\x7a\x57\x41\x6f\x61\x22\xcc\x23\x2b\x7e\x95\xc5\x95\xc7\x05\x3f\x10\xb5\x6a\x32\x43\xc3\x60\x3d\x4b\x5a\x0d\xf2\xa8\x41\x50\x9a\xcf\x30\x47\x1b\xdd\x95\xb8\x67\xd8\x02\x08\xcb\x73\x11\xf9\x19\xb6\x80\x8d\xee\x3a\xdc\xa3\x3b\x08\xf4\xba\xbc\xca\x16\xb0\xd1\xdb\xeb\x77\x48\xdf\x67\x58\x52\x1b\xbd\xbd\x4c\xa3\x25\x85\x1b\xa7\xfa\x12\xb8\x4c\x09\x82\x88\xfd\x66\x1c\x8c\xe8\xd5\xc6\xe6\x22\x1b\xe8\xae\x47\x3e\x8a\x29\x10\xb5\x79\x7b\x0b\x8f\xc0\x84\xca\xfc\xe4\x51\x4c\x81\x5e\xed\x4a\xd4\x52\xa0\x37\xd6\x3b\x1e\xa5\x14\xe8\x2d\xfc\xa1\xc5\x39\x2d\x4e\x92\x3a\x2d\xce\x69\x71\x52\x11\xaa\x2b\xd0\xab\x3d\xb9\xf2\x0a\x04\xc1\x48\xed\x51\x5f\x81\xb3\xea\xfa\x28\xaf\x40\xa8\xe7\x1e\xf5\x15\xe8\xae\xb5\x3d\xd3\xf2\x22\x10\xb2\x0d\xbb\x20\x25\xd7\xa3\xe4\xaa\x26\xdf\xd2\x61\xdb\x3a\xf1\x63\xed\xd1\x41\x0d\xc2\xc5\xfd\xc7\x45\x5d\xd0\x09\xbe\x6c\x8f\xa2\x0b\x44\x45\x3a\x3c\xaa\x2e\xd0\x1b\x2b\x31\x8f\x1a\x0b\x74\x36\x50\xb4\x47\x91\x05\x7a\x63\xea\xfd\xb8\x16\x0c\x82\xe3\x7a\xda\xe3\x52\x30\xe8\xed\xe5\xbd\xcc\xf7\x46\xaf\xf6\xe3\x0a\x2f\xe0\x1e\xb8\xf6\xa8\xbb\x1e\x75\x17\x33\xc3\xc7\x65\x47\xd0\x1b\x1a\xe1\x71\x55\x19\x84\xfe\xdd\x47\x75\x06\x7a\x73\x48\x53\x66\x81\x3d\x4c\x90\x0a\x25\xd3\x73\x9d\xb1\x9b\x8c\xab\x99\x1e\x83\xe4\x1b\x7a\xfa\x71\xcd\xf6\x51\x34\x85\x97\x59\xb0\xec\xc8\x1d\xb6\x6a\x57\x71\x1f\x57\x71\xbb\x0d\xd6\xd8\x17\xd0\x0d\x59\x7a\x94\x5b\xa0\xbb\x78\xf2\x18\x09\x02\x62\x98\x75\x15\xd8\xe3\x86\x7e\xcb\x5f\x05\x06\x62\x14\xaf\xb2\xad\x6c\xf4\xe1\xd0\xaa\xfe\x02\x5d\x55\xf1\x28\xc0\x40\x1f\x0e\x1d\xae\xba\x3f\xef\xb3\x69\x99\xa6\xae\xfe\x7a\xd4\x5f\xbe\x10\xca\xaf\x47\xf9\xe5\xd8\xa1\xfe\x7a\xd4\x5f\x4e\x2a\x14\x60\x20\x5c\xc8\x7a\x14\x60\x20\x86\x15\xa0\x02\x03\x31\x2c\x57\x43\x16\x40\x1f\xf6\x03\x1f\x33\x79\x54\x99\xf7\xb2\x96\xdc\xa1\x17\xe7\x91\x66\x1c\x5d\x36\x1c\x9b\xd4\x65\x8f\x67\x16\xd8\xd7\x7e\xcc\xb8\x52\xcd\xc1\xe3\x63\xfb\xf9\x28\x3c\xed\xd3\xd4\x6f\x8f\xfa\xcd\xe6\xaf\x80\x03\x31\x8a\xbf\xb4\x78\x3c\xeb\xc0\x96\xa7\x0b\x13\x04\x01\xaf\xed\xd1\x45\x04\x62\xf8\x76\x7d\x2d\x8b\xaf\x62\xd4\x1f\x5a\x16\x5f\x96\x2b\x1c\x0e\xbf\x56\xf8\x46\x57\x67\x19\xcc\xd7\x4e\x30\x9f\xe3\x82\x92\x11\xc4\xb0\xda\xd4\x8c\xa0\xbb\x56\xfc\x28\x1a\x41\xb0\xfd\xae\x3d\x06\x4d\x81\xee\x32\x94\x71\x81\xa2\xbb\x34\xfd\xa8\x23\x1f\x37\xf2\xfa\x8a\xab\x23\x1f\x8f\x6e\x28\x3e\xd1\x92\xc0\x9d\x37\x7c\xeb\x6f\x4b\x82\xed\x21\x1c\x3f\xd1\x1e\xc5\x25\x88\xe1\x70\xa8\xaf\xec\x71\x8b\x79\xb3\x3d\x29\x2f\x8d\x44\x6c\xd3\x49\x92\xa1\x22\xa0\x0f\xe7\x65\xaa\x44\x50\xc2\xf9\xb9\x31\x5f\xa0\x84\x0f\x50\x25\x82\x62\x04\xde\xa3\x0c\x04\xd1\xc3\x29\xb5\x42\x10\x94\xf0\x4d\x52\x09\x82\x61\x0c\xdd\xa3\x12\x04\xee\xaa\x69\x8f\x4a\xf0\xd9\xba\x6f\x18\xc9\xf6\xa8\xfb\x40\x09\xdf\x1a\x03\xcf\x0c\x9a\x6c\xc5\x46\xac\x77\x1a\x94\xb0\x75\xaa\x05\xc1\x4e\x19\x85\xf6\x98\xcd\xc7\x6c\x8e\x9f\xfe\x90\x1e\x81\x21\x0a\xfe\x9d\xf4\xc8\x8b\x3c\x47\x5e\x70\xa6\x65\x7a\xe8\x85\x18\xb1\xc6\x6f\x0e\xcc\xf9\xc2\x39\x2e\x0a\x21\x8c\xc9\x91\x19\x07\x23\x96\xa6\xa9\x89\x08\x46\x22\x90\x93\x53\x34\x0e\x4a\xec\x1e\x37\x39\x46\xe3\xa0\xc4\xb9\xea\xa3\xe9\xcb\xba\x92\x57\xdd\x9a\xee\x5d\x7e\x61\xf6\x1e\x4d\xbb\x16\x73\xcf\xf9\x92\xc3\x35\x0e\x4a\xec\xf6\x95\x1e\xb2\x21\x0a\x61\x85\xe9\x71\x7a\xc2\x90\x87\xf4\xe0\x0d\x51\x62\xf7\xd3\xc9\x21\x1c\x07\x83\x0e\x38\x5f\x61\xbe\xc3\x7c\x93\x88\x30\xdf\x41\xbd\x06\xa9\x0f\xf3\x1d\xd4\x6b\xf1\x89\x66\x3b\xcc\x76\x60\xba\x34\x59\xad\x9a\x2c\x89\x8d\x51\x5e\xfe\xd0\x92\xd8\x18\xe5\x5c\x65\x49\x6c\x8c\x58\x26\xd5\x92\xe0\x68\xb7\x30\x11\xc5\xba\xdf\x18\xc5\x6c\x17\x0b\xa7\x58\x38\x64\xa8\x58\x38\x1b\xa3\xbc\xfc\xa1\x85\xc3\x11\x70\x9c\x93\x92\x1e\x12\x28\x0a\xe7\x06\xa6\xa7\x04\x8a\x12\x2f\x0a\xba\x58\x12\xc5\x92\xd0\x64\x49\x14\x4a\xc2\x4a\x2b\x96\x44\xa1\x24\x5e\xa4\xbe\x58\x12\x1c\x28\x17\x45\x93\x25\x51\x6c\x13\xb4\xa6\x62\x49\x14\x4a\xc2\xb2\x47\x05\x8b\x42\xf8\x44\xbe\x8a\x85\x43\xd8\x55\x1b\x96\x4e\xb1\x74\x36\x46\xf1\x35\xa8\x96\x4e\xa5\x74\xcc\x64\xb5\x74\x36\x46\xb1\x05\x54\x8b\x62\xc3\xa8\xe6\x7c\x55\xdb\xc9\xf1\x71\xda\xf4\xab\xc5\x53\x79\xdb\x7d\xa5\xaa\x65\x51\x7d\xdb\xbd\x99\xe9\xe7\x70\xbb\x78\x51\xfa\xcd\x54\x6c\x0c\xc6\xf3\xf4\x28\x17\x31\xd8\xf4\x90\xaf\x66\x2a\x1a\xa7\xdd\x74\xea\xa8\xf9\xc4\x46\xd3\x4c\x4d\x56\xc8\xc6\x60\xa4\xce\x57\x33\x11\x1b\x25\xd3\x27\x5a\x21\x1b\x83\x5d\xce\xf9\x6a\x56\x48\xe3\xd0\xc1\xae\xc9\x0a\xd9\x18\x0c\xae\xf9\x6a\x56\xc8\xc6\x60\xbf\x4a\xbe\x9a\x19\xda\x28\xd9\x29\xc3\x66\x85\xe0\xdc\x61\xa7\x55\xbe\x9a\x15\xd2\xf0\x58\x74\xd3\x65\x7d\x34\xdf\x5b\x7e\x98\x66\x3b\xc9\xb6\xf7\x4a\xb3\xbd\x31\xd8\x24\x9b\xaf\x34\xdb\xc9\x59\x84\x9d\x74\xa5\xd9\x4e\x43\x9f\xec\x04\xd2\x7c\x6f\x8c\x61\x81\xa5\xf9\xf6\xbc\xb8\x69\x85\xa7\xb9\xdc\x28\x1c\xf8\x97\xaf\x34\x97\x69\x2e\x49\x6c\x9a\xcb\x24\x97\x49\x7d\xa7\xb9\x4c\x73\xe9\xbd\xcc\xe5\xc6\x18\xd5\x94\x99\xcb\xc4\x2f\x93\x5c\xd5\xad\xef\x4e\x7d\x57\xee\xd5\xcd\x78\x27\xe3\x95\x27\x76\xdf\xc9\x8d\xc1\xa0\x9f\xaf\x6e\x59\x6c\x61\x39\x18\x6f\xd3\x50\x75\x51\xb2\x6b\xb2\x2c\xd8\xe0\x99\xd3\xd7\xad\x9b\xf1\x8d\x59\x87\xf7\xb7\xc2\x37\x06\xd3\xb0\x34\xc6\x5d\x8c\x51\x69\x75\xdd\xa2\xe8\x14\x45\xd2\x2c\xba\x45\xd1\xcf\x04\xc8\xfb\x5b\x16\x1b\x25\x87\xc9\xb0\x2c\x3a\x65\x61\x89\x75\xcb\xa2\x5b\xe3\xdc\x6c\x58\x16\xc3\xb2\xe0\x87\xc3\x8c\x0f\x33\x4e\xc2\x86\x19\x1f\x34\x02\x9b\xf0\xf0\x0d\xdc\x28\xd9\x35\x59\x16\xc3\xb2\xe0\x89\xc3\xb2\xd8\x28\xd9\xc9\xd1\xb0\x59\x0c\x5e\x87\x41\xb3\x18\xe6\x7b\xd0\x04\x7c\x69\x86\x19\x1a\x64\xc8\x77\x72\x9a\xd4\x8d\xfa\xb2\xc0\xa6\xd5\x36\x3d\x96\xc1\xe1\x6e\x9a\xfc\x0d\x77\xf7\xe7\x6b\x9a\xfc\x8d\x59\x6d\x9c\xd3\xb4\x6e\xd4\x97\xa3\xca\x34\x61\x1b\x93\x0d\x51\xf9\x9a\x56\x9b\xc7\x8d\xd5\xd7\x6f\x9f\xa4\x96\xaf\x69\x85\x6d\x18\x20\x93\xaf\x69\x85\x6d\xcc\x6a\xb1\x4f\xb3\xe7\xc1\x77\x36\xae\x69\x7d\x6d\xcc\x6a\x15\x2e\x73\xbc\xdc\x72\x6a\xb3\x59\x66\x79\xa3\xbe\x6c\xcf\xcb\x1c\x2f\x73\xcc\xcd\x96\xb5\xb3\x61\x68\x51\xbe\x96\x39\xde\x98\xd5\xb7\x76\x59\x3b\x1b\xf5\x65\xe3\x5a\xe6\x78\xa3\xbe\x6c\xe2\xcb\x86\xba\x38\xec\xcf\x5e\x6e\x59\x61\x8b\xd3\xfe\x92\x6a\x5d\xe6\x7b\x91\x6f\x3b\x98\x65\xbe\x97\xf9\xf6\x89\xe6\x7b\x63\x12\x91\x97\x1c\x83\x75\x30\xab\x0d\xe9\x32\x43\x1b\xf5\x65\xc7\x77\x59\x85\x97\x55\x48\xb6\x2f\x53\x6f\x08\x26\xab\xaf\xe9\xd9\xb6\xa2\xa6\x43\xd1\xe5\x23\x37\x6a\x3a\xdc\x5e\x3e\x72\x63\xbd\xec\x6b\x2f\x5f\x8d\x8d\x9a\x8e\x74\x6f\x4b\x7f\x63\xbd\x4c\xd8\xdb\xc2\x7f\xb3\x8a\x6f\x43\x7a\x9b\xd6\x2d\x06\x6b\x3a\xa5\x78\x5b\xf8\x6f\x9c\xb7\x16\xc5\xdb\xc2\xdf\xa8\xe9\xe4\xea\x6d\xf2\xf5\xd0\x59\x14\x6f\x5b\xe0\x46\x4d\x47\xe0\xb7\xf5\xb1\xb1\x5e\xb6\x80\xb7\x85\xbf\xb1\x5e\x16\xc5\xdb\xc2\xdf\xa8\xe9\xa4\xf3\x6d\xb6\xdf\xf8\x29\xec\x7d\xdf\x66\x7b\xa3\xb2\xab\x2b\xdd\x05\x23\xd6\xcb\x0e\xff\x63\x1e\x3f\xe6\x91\x1f\x7e\xcc\xe3\xc6\x7a\xd9\x9a\x3e\xe6\xf1\x63\x1e\xb9\xd7\xc7\x3c\x7e\xcc\x23\xa5\xfa\x31\x8f\x1f\xf2\x68\xdf\xfe\x31\x8f\x1f\xf3\x48\xa9\x7e\xcc\xe3\x87\x3c\xda\x32\x3f\xb6\xb9\x8d\xf5\xf2\x65\xf8\x98\xed\x0f\xd9\xb6\x2b\xf9\x98\xed\x0f\xee\x0b\x5f\xac\x8f\xd9\x26\xc0\xaa\x71\xa4\x7a\xbe\x3e\xe6\x7b\xa3\x2e\xcb\xf0\x63\xbe\x37\xea\xf2\x97\x5f\xab\xdb\x8d\x7a\xe9\x98\xff\xb5\x2c\x36\xea\x32\x19\x5f\x1b\xe2\xc6\x3a\x03\xfc\xd7\xb2\xd8\x58\x67\xa4\xf8\x5a\x16\x1b\x75\xd9\x50\xbe\x96\xc5\x86\xe7\x53\xa7\xe7\xe9\x8b\x75\xa6\xb6\x5f\x33\xce\xbe\x8a\x5e\xed\x90\xbf\xe6\x7c\xa3\x2e\x2b\xfc\x6b\xce\x37\xd6\x19\x3c\xbe\xe6\x7c\x63\x9d\xc1\xe9\x6b\xc6\x3d\x06\xa0\x55\xb3\x69\xce\xdd\x28\x70\x26\x96\xb7\x59\xdf\x58\x67\xd8\xbf\xcd\xb9\x41\x69\x67\xe0\xb9\xcd\xfa\x4d\xd6\x6d\x52\xb7\x59\xbf\xc9\xba\x1d\xc1\x6d\xd6\x39\x7b\x72\xd9\x58\x6e\xb3\xbe\xb1\xce\x44\xe6\x36\xeb\x1b\x75\xf9\x8e\xdc\x36\x83\x8d\x75\x66\x53\xb7\xa5\xb1\x51\x97\x3d\xc8\x6d\x61\x6c\xac\x5f\xd3\xe5\x4b\xbf\xb1\xce\xfc\xed\xb6\x30\x36\x3c\x20\x3c\x5f\xb7\x85\x71\xd3\x0a\x6c\x65\xb7\x65\xb1\xb1\xce\xb0\xf6\x58\x14\x0f\x45\xe1\xa8\xf9\x58\x14\x8f\x8d\x80\x3c\x3e\x96\xc4\x63\x23\xa0\xc0\x1e\x4b\xc2\x0d\x3b\xb9\x48\xd8\x63\x51\x6c\x18\x3b\x9f\x1c\xf0\x77\x10\xaf\xd3\x91\x3d\x66\x1c\xc7\xe3\xeb\xf4\xd6\x8f\x39\x7f\x38\x54\xfd\xa4\xc3\x3a\xdf\x68\xd5\x96\xf7\x98\x73\x76\xff\xb4\xa9\x54\x79\xcc\x3a\xa2\xf4\x75\xfa\xd8\xc7\xbc\x73\x16\xc7\xeb\x8c\x80\x8f\x99\x27\xc4\xf5\x45\x74\x7e\xfa\xe1\x02\xd1\x6a\x6a\x0a\x4d\x61\x1b\x6a\xd8\x8a\xb6\xc2\x65\x0b\x53\xd5\x54\xbd\x5b\xc7\xd6\xb4\x35\x2e\xf3\x97\xa9\x89\x12\xa1\x43\x08\x45\x6c\x10\xee\xf9\x72\x00\x08\x25\x2b\x1b\xe2\x5a\xa5\xa5\x05\xce\x4b\xb1\xb3\xe0\x03\xde\xda\x3e\xda\xea\x6f\x0f\xcf\x81\x7f\x53\xec\x19\x83\xb7\xbe\xb5\x9d\xd7\x84\x5b\x87\x25\xb1\xe1\x4e\xc5\x0c\x45\x2d\x88\x20\x6a\x25\xfd\x82\x83\x68\xce\x54\xfd\x80\x83\x88\x78\xbd\xfc\xa9\x25\xb1\xd1\xec\x21\x42\x59\x0b\x9a\xad\x3d\xd4\xb0\x60\x3f\x40\x9b\x25\xb1\xd1\x7c\x75\xfc\x1a\x84\xd8\x97\x05\xb6\x8f\xb6\x8f\x0f\xf5\x09\x8f\xb6\x87\xaf\x00\x50\x99\xaa\x51\x10\xc1\x91\x69\xe9\x81\xed\x22\x5f\x66\x41\x39\x0a\xf6\x65\x24\xa4\x98\x05\xa2\x0b\x83\xd3\xae\x32\x14\xa4\xe1\xa9\xf5\xc9\x5c\x2b\x54\xa4\xe1\xb9\xf5\x44\x4e\x67\x28\x36\xc1\xfe\x6d\xc5\x66\x2e\x0a\x5f\x24\x40\xa3\xf8\xf9\x0a\x11\x6d\xd8\x86\xd4\x96\x81\x90\x2c\xce\x05\x42\xd5\x18\xfa\x53\x9d\xca\x84\xb2\x11\xec\xeb\xf8\x6d\x35\x1b\x1b\xf9\xeb\x4f\xad\x1c\xce\x27\x6d\xbc\xa4\xa1\x94\x0c\x42\xcc\x4b\xb3\xd4\xd5\x8d\x51\xe7\xcf\x3f\x52\x39\x10\xd5\x3c\xe0\x3d\x2d\x1c\x63\x92\x51\xcd\x03\xde\xd3\x42\x74\x5a\x46\x35\x13\x1b\x49\x6c\x55\x86\x92\x13\x24\x5f\xcc\xc8\xa8\x66\xcb\x33\x70\x09\xec\xc9\xa8\xd6\x17\xce\x52\xd4\x7d\x28\x4c\x01\xf1\xb9\x19\xea\x52\xd0\xad\x3e\x65\x29\xe8\xd6\x4a\x33\x43\x0d\x95\xa2\xc5\x7a\x52\xa7\x92\x24\x65\x2a\x58\xe8\xe2\x50\xa5\x02\x62\x95\x33\x14\xa9\x60\x21\xf4\x43\x8d\x0a\xd6\x49\xa1\xb9\xc5\x67\xea\xf4\xc4\x8f\x8b\x88\x70\x5e\xe3\xb7\x45\x44\x10\x9d\x90\x91\xd6\x0d\x7b\xa1\xaa\xef\x57\x9a\x6e\xdc\x9c\xd5\x97\x44\xa5\x09\xa2\xfa\x92\xa8\x34\xc1\x9e\x92\xf3\x48\x95\x26\x08\x5c\xff\x19\x69\x52\x37\x8a\xc5\xa2\xce\x04\xa3\x84\xb7\x37\xf5\x1b\xc5\xd2\x54\x66\x86\x32\xd3\xc4\x2b\x33\x41\x99\xde\xdb\xfe\x62\xa3\xd8\x98\x15\x99\x60\x56\x1f\xa7\xc8\x04\xd1\x1b\x32\x2a\x54\x99\xa0\x4c\x6e\xae\xc8\x04\x75\xf9\xb2\x28\x32\x01\xfb\xb7\x32\xd4\x98\xa0\x5b\x35\xdd\x0c\xe3\xce\x34\x05\x0a\x4c\xb0\x7c\xfd\xd5\x97\xa1\x7f\x33\x4d\x93\x45\xd0\x3d\xfc\xd4\x97\x4e\x81\x09\xba\xa5\xa9\xbe\x04\xfd\x24\xc0\x22\xc0\xbd\x69\x11\x0c\x73\x32\x98\x24\x52\x7b\xea\x41\x10\x83\x63\x33\x32\x14\x84\x20\x5e\xe6\x4e\x41\x08\x82\x3d\x23\x19\x0a\x42\x10\xec\xaa\xc9\x18\xe6\x86\x98\xcb\x33\x72\x0c\xb3\x33\x3c\x56\xe7\xd8\x4c\xe9\x60\x2d\xa7\xd2\x3c\x14\x89\xa0\x39\x32\x87\x82\x10\x64\xd3\x62\x22\xa6\x6d\xc8\x1e\x54\xf5\x07\xfa\xe9\xb5\x55\x7f\x20\xda\xcb\xc2\x99\x26\x63\x22\xd1\x49\xab\x52\x0e\x2c\x7b\x8f\x69\x6b\x98\x46\x3d\x50\x61\xaa\xb6\x30\xfe\xde\xd7\x5d\xd5\x16\xe7\xb8\x30\xaf\xb2\xea\x17\x0b\x5d\xf6\x1d\x0a\x39\x30\x8a\x7d\x87\x42\x0e\x94\xf4\x9d\x53\xc8\x81\xb4\xa9\x2d\xb3\x83\xc7\x6e\x52\x19\x2a\x3b\xd0\x5f\xe1\xcf\x6c\x0f\xcb\x3d\xeb\xd5\x34\x58\xa6\xe7\x44\x6c\x7b\x1d\x25\x5a\x1c\x67\x1c\x3f\xbd\x2c\x67\xf6\xc3\x9e\xda\x56\xb5\x81\x12\xf5\xf7\x0c\xc6\x97\x99\xe3\x73\x10\x6c\x71\xcf\xb8\x4c\xf7\xe5\xd9\xaf\x2c\xce\xc4\x65\xca\x2f\x57\x8d\x2c\xe3\xcb\xa4\x6f\x34\x27\xc0\x71\xd9\x92\x37\x92\x35\xb5\x50\x0d\x02\x0e\x99\xca\x50\xd3\x81\x65\xbd\x2b\xe9\x80\x9b\x2a\xd2\xed\xee\x22\x7a\x4b\x6d\x56\xcd\xdb\xc3\x05\x9d\x2d\xa9\xf3\x40\xa4\xab\x71\xa1\xd0\x8b\x5f\xb7\x84\x93\x30\x95\x5e\xe0\xf6\x7b\x39\x4a\x2a\xeb\xc0\x7e\x04\xe5\xf7\xb6\x69\xe1\x0a\x74\x41\x39\xde\x66\xe0\x8d\xaf\x34\xbc\xca\xe6\x86\xdf\xef\x4c\xd1\xd4\x75\x40\x7f\x67\xc6\xc7\xe4\x7a\x46\xdf\x34\xa7\x4a\xb6\xf8\xb0\x3e\xca\x7a\x78\xa8\xcf\x40\x09\xc7\x39\xf5\x59\x78\x24\xce\xb2\x02\x14\x68\x60\x14\xfb\x57\x05\x1a\xd8\x19\x20\x53\x2a\x34\xe0\x21\x70\x19\x2a\x34\x50\x82\x05\xb9\xf8\x98\xa7\x8f\x2f\x2d\x19\x50\xb4\x81\x12\x4e\x31\xd5\x6c\x60\x14\xdf\x0e\x35\x9b\x27\x09\xf4\xe6\xac\x50\xd1\x06\xc6\x70\x3e\xa9\x66\xf3\x83\x52\xbd\xa1\x66\xfc\xa0\x94\xd8\x73\x12\x52\xab\x90\x03\xfb\x3a\x1a\x8c\x4a\x0e\xcc\xea\x88\xa0\x46\x03\xeb\x8c\x5d\x5f\x8b\xe3\x8b\x50\x39\x0f\x35\x9f\x5f\xc3\x22\xad\x83\xaf\x19\xdd\x68\xf5\xdc\xdf\x8c\x6e\x34\xc5\x4b\xa8\xd1\xc0\x9e\xcd\x69\x33\xa7\x1e\xee\xac\xe4\x08\x35\x1a\xe8\x8e\xc6\x4a\x34\xd0\x2d\xed\xdb\x6c\xde\x36\x5c\x27\x50\x2a\x34\xb0\xdf\x67\xb2\xae\x3a\x0a\x77\x17\x35\x04\x47\x28\x7c\x40\x49\xf3\xa9\xf0\x01\xf5\x65\x1b\x55\xf8\x80\xba\x6c\xca\x0a\x1f\x10\xfa\x3d\x33\x14\x3e\x20\xcf\x5c\x49\xe1\x03\x38\x7f\x36\x43\xd9\x03\xc6\x79\xa0\x8d\xea\xa1\x73\x25\xd7\x0a\x9c\x78\xce\x51\xdf\x3e\xd0\xd4\x3f\xbe\x01\x64\x52\x7d\x13\x1e\x2d\x1c\x34\xda\xa2\x96\x29\x2f\x5f\x6c\x2c\x45\x8b\x5f\xfa\xc0\x5b\x52\xd4\x2d\xa0\x53\x38\x45\x89\x02\xf6\xe0\xe0\x55\x5d\xdb\xee\x3b\xa7\x57\x2d\x2d\x86\xcb\x6a\xba\x34\x91\x7a\x1f\xf8\xd6\x62\x24\xc2\xf0\x56\x1f\x6d\xc6\xfe\x7a\xd9\xad\xe9\xde\x9d\xd2\xce\x76\x51\x7d\x80\xce\xa7\x41\xd2\x73\x2f\xb2\x6c\xa5\xb1\x4c\x94\x42\xa3\x9c\x70\xca\x81\xc9\x74\x6e\x2c\xfa\xe9\xa2\xa6\x00\x9c\x28\x90\x45\xa9\x00\x7a\x2c\x7f\xf6\xd5\xf4\x55\xec\x63\x32\x4d\x41\x30\xdf\x32\x05\x8f\xa6\xc7\xf8\xc1\xfd\x9a\xfa\xe9\x22\x11\xd3\x99\x72\x51\x50\x80\xae\x5b\xaf\x28\x1e\x40\x10\xf9\x99\x7e\xd0\x48\x04\x81\x98\x59\x94\x0e\x60\x17\x97\x0f\x30\xfd\xc5\xe3\x70\x42\xdb\xd4\x86\x5e\x66\x1e\xe5\xc7\x90\x92\x8f\x21\x05\x51\xb2\xe9\xb7\x8f\x44\x28\x35\x8b\xc2\x01\x04\x1b\x38\xd3\x93\xf2\x45\x6f\x2c\x5a\x15\x65\x43\x21\x0e\x53\x77\xa9\x5f\x4d\x12\xd1\xe3\x5c\x66\x06\xaa\x91\x33\x64\xb3\x9a\x01\x62\x33\x7d\xe3\x8b\x4a\x02\x84\x52\xb9\x54\x93\x5f\x9d\xdc\x50\xb4\x0a\x09\x10\xea\xdd\xa2\x8e\x00\xe1\xda\x81\xdf\x65\x12\xbb\x7c\xc8\xb8\x82\xa0\xb8\xbb\x88\x75\xb8\xa2\x22\x28\xe7\x74\x2e\x1e\xa9\x24\x00\x7d\xf4\xdf\x3e\x82\x2c\x8b\x02\x01\xf4\xc6\x60\x51\x54\x08\x20\x74\x15\x14\x05\x01\xe8\x0a\xb6\xa2\xd3\x0a\xec\xf9\x39\x26\xb3\xe2\xa9\x9a\xac\x42\x15\x45\x42\xf1\x08\xff\xea\xed\x6d\x84\x1e\xd1\xca\x64\xa0\xe8\xb4\x02\xe1\x54\xc4\x2f\x51\x89\x51\x8e\xc9\xcc\x25\x3e\x63\x46\xe1\xa2\x6e\x00\xa3\x78\x2f\x75\x03\x28\xa7\x87\x50\x36\x14\x4f\xf1\x6c\x74\x41\x45\xdd\x50\xfc\x7a\x91\xfa\xad\xa8\x1c\x8a\xca\xa1\x78\x99\x59\x42\x39\x70\x10\x4f\x16\xa5\x03\x28\x61\x8f\xa0\x74\x00\x25\x98\x97\x15\xb5\x43\xc1\x1d\x55\xac\x1c\x95\x82\x27\xd5\x74\x4e\xb4\x49\x3f\xa6\x25\x06\xbb\x0f\xb2\x28\x15\xc0\x28\x16\x99\x93\x7e\x10\x83\x03\x57\xb2\x38\xed\x07\xd5\x15\x5d\x8f\xbd\x11\x45\x45\x5e\x9c\xf5\x17\xdd\x4a\xb6\x54\xa7\xfd\x60\x10\xfd\x9e\xc5\x79\x3f\x18\xc3\xc6\xa5\x57\xa9\xe8\x55\xb2\xc6\xf5\x2a\x95\xe3\x55\x22\xf9\xba\x90\x40\x7d\xd9\xc4\x75\x21\x81\x38\xb3\xe2\xa2\x66\xe0\xbb\x87\xf5\xe5\xcb\xa1\x18\x00\x35\xad\x39\xc5\x00\x58\xaf\x73\x7f\x33\x39\x3c\x86\xd9\x3e\x53\x27\x12\x58\x8a\x8d\x32\xcc\xe5\xd6\x07\x8b\x40\xf9\x2c\xfa\x95\x40\x4d\x4b\x71\x98\xfe\xc1\xd2\xbf\x2d\x56\x15\x51\x66\x30\xc2\x53\x3c\xaa\x08\x50\x97\xfd\x95\x6e\x25\x50\x97\xb7\x9f\xe6\x88\x4f\x12\xbc\x08\x69\xc9\xa2\xb2\x28\xd3\xc5\x2c\x4a\x71\x9a\xd6\x8d\xe6\x82\x5f\xd1\x6f\xe4\x99\x43\x2f\xbd\x25\x45\x69\x01\x9a\xeb\x1c\x45\x6d\x51\x3c\x3d\x91\x1d\x5e\x59\x74\x13\x81\x18\x9c\x59\x91\x45\xc1\x01\x9a\xab\xc1\x45\x75\x01\x9a\x6b\xb5\x1e\x6a\x24\xf6\x1b\x40\x42\xd4\x12\x20\x4a\x73\xcc\x50\x4d\x80\xa8\x9c\x69\x9a\x45\x3d\x01\xa2\x2c\xfb\x79\x5d\x45\x20\x6a\xf5\x55\x51\x64\x14\x45\xc6\x69\xb8\x3a\x8b\x00\x07\x48\x67\x59\xe6\x6b\xb1\xb5\x05\x8b\x0a\x03\x0c\x6b\xfd\x32\x4f\x97\xe7\x3e\x58\x53\xfa\x85\xc0\x62\x82\x5c\x14\x15\x60\xbf\xc1\x94\x86\xae\x22\xe0\x0e\xf0\x2c\x8a\x8a\x72\x22\x07\x6d\x69\x97\xc9\xbf\x1c\x45\xbc\x9b\x29\x25\x98\x50\x79\x50\x54\x15\x20\x7e\xbd\x99\x15\x75\xb1\x0b\xce\xe2\x51\x08\xfc\x7a\x36\x14\x32\xcd\xb3\xa1\xc4\xb6\xf1\x53\x5d\x37\x20\x5c\x37\xf5\x3c\x28\xd1\x9b\xe3\xac\x53\x7c\x10\xae\xd5\x96\x8f\xe5\x73\x22\xfb\x48\xac\xae\x9b\xe2\x47\x28\xec\xe3\x74\xdd\x80\x3e\x6c\x69\x6a\x83\x62\x64\x5f\xf5\x87\x26\xd6\x93\x87\x9a\xe5\xaf\x10\x28\x7e\xa9\xa2\xfa\x48\xd3\xff\xf1\xb5\x23\xad\xce\xe6\x8b\x07\x7f\xbf\x9c\x4e\x38\x9d\x07\xa3\xd8\xdf\x3b\x4f\x07\xd1\x3b\xeb\x3d\xc5\x89\x7a\x71\xa2\xce\x47\x75\xb2\x38\x51\x07\xc5\x85\xc7\xe2\x3c\x1d\x8c\x93\x03\xbd\x2b\xa0\xb8\x9c\x58\xf4\xae\x80\x71\x4a\xc3\x99\x3b\x28\xbf\x9a\xac\xf4\x2f\xdf\x7a\x74\x1e\xa2\xc3\x05\x14\x97\x35\x8b\x93\x79\x50\xf5\x6d\x15\x27\xee\xa0\xea\x31\x2c\x4e\xdc\x41\xd5\xb7\x55\x9c\xb7\x83\x9a\x66\xdc\x69\x3b\xd8\x25\xab\xcd\x8c\xfb\x31\x81\xe9\x6c\xc2\xa9\x7b\xe1\xab\x5e\x59\x7f\x3b\x2a\x3b\x8b\x13\x7b\x50\xd3\xfa\xd1\xcf\x02\x6a\x3a\x42\xeb\x41\x01\xeb\xf4\xea\xb7\xd9\xbb\xf1\x1d\xd9\xe2\x74\x84\x80\x78\xe9\xfb\x2e\x0a\x02\xd0\x5c\x96\x2f\x0a\x02\xb0\xfb\x28\x6d\x56\xcf\x63\xaf\xc2\xdd\x54\x04\x9e\x5d\x16\xc9\x82\x51\x51\x11\x80\xd4\xe1\x5d\x1e\xeb\x87\x93\x4a\x4b\x73\x4e\xab\x26\x00\xd9\x1d\x57\x15\x05\x20\x9b\xf7\xb2\x47\xd9\xe8\xf6\x02\xba\x46\x00\x27\x24\xa7\xe7\xa2\x89\xfe\xb2\x63\x50\x24\x94\xe7\xd9\x17\xed\xa7\x55\x7d\x1b\x20\xd2\x57\xa1\x3a\xfd\xaf\x7b\xc6\xcf\x27\x88\xd2\xaf\xe0\x0a\xbe\xe8\x90\xd5\xc9\x3f\xe8\x06\x88\x55\x27\xff\x95\x53\x0a\x1a\x7a\xb5\xea\x6a\x00\x61\xe4\x4c\x75\xa6\x5f\x8d\x9e\xa3\x82\xaa\xd1\x73\xd5\xe8\x39\x26\xb3\xd5\xd9\x3f\x28\x16\x5f\x75\xf6\x0f\x66\x3d\xa6\xa2\x09\xaf\x3f\x0d\xab\xea\x53\x00\x1d\xcd\x5f\x15\x04\xa0\x2f\x6f\x3e\xb4\x8c\x9d\x3f\x7f\x65\x6e\xc2\x37\xa0\x63\x32\x37\x1b\x69\xd7\x5e\x95\x0d\xa0\xbf\x98\x65\x55\x65\x03\x18\x27\x4d\x66\x26\x58\xc2\xc6\x23\x5f\x55\x08\x60\x31\x9d\xaa\xea\x03\xc0\xd1\xcb\x59\xf5\x37\x54\x37\x65\x2d\x2f\xaa\x9a\xf0\x27\x1d\x93\x29\x2f\xe7\xd3\x39\x14\xbb\x5e\x84\x6a\xcc\x1a\x8b\x3e\xd5\x00\x35\x10\x6e\xed\xc9\xaa\x17\x01\x0c\xf6\x52\x66\x35\x1a\x0d\x54\x76\xea\x67\x55\x1e\x80\x65\x87\x51\x95\x07\xa0\x2e\xef\xa5\x3c\xa8\x7e\x72\x80\x7d\x01\x59\x75\x2b\x80\xe8\xfa\x15\xaa\x9a\x01\x6c\x61\x4f\xf9\xa8\x06\x40\x14\x03\xbf\xaa\x72\x00\xe8\x75\xae\xba\x1a\x00\x9f\xb3\xcb\xaa\x18\xa8\xe7\xb3\xbe\xd5\x74\x98\xcf\xea\x28\x61\x6a\xcd\x66\x25\x0c\xda\x6c\x56\x5b\x5c\x25\xee\x6b\x6a\x32\xe7\xcd\xe6\xc5\x0f\x55\x11\xd5\x4d\x59\xdc\xbd\x99\xcb\x76\xce\x1b\xe3\x87\x0a\x0b\xd0\x19\x30\xab\xba\x02\xa8\x77\xaa\xae\x06\xd0\x6d\x38\xca\x06\xc0\xb1\xb1\x59\x75\x2c\x00\x3e\xcd\x97\x55\x1d\x01\xc6\x49\x91\x15\x4b\xec\x9b\x6d\x52\xc9\x00\xfa\xab\xf9\x78\xf3\xdb\xd8\xdf\xb7\x4c\xb7\xf9\x55\x32\x28\x36\xaa\x51\x6d\xd5\x4f\x43\x33\xce\x54\x65\x44\xd5\xfd\x60\x55\x1b\xe8\x06\xc2\xfe\xae\xaa\x2c\xaa\x1e\x09\x86\x9e\xaa\x66\xa8\xba\x1a\x7c\x0d\x94\x07\xa0\x1a\x98\x50\xd5\x02\x80\x0f\xdc\x64\x55\x0a\x80\x18\xfd\x5c\x65\x5a\x89\x56\x7b\x79\x2b\xab\x86\xf3\xbc\x47\xf5\xe5\x50\x1e\x00\x57\xae\xaa\xe2\x00\xb0\x09\x3e\xab\x3e\x03\xd0\x09\x74\xce\xda\x4d\x3b\x1f\x44\x9b\xfa\x1f\xaa\x91\x69\x20\xf4\x3d\x57\x3d\x09\x20\xdc\x39\x9a\x55\x09\x01\x12\x4f\x5a\x55\x1b\x80\xfe\xb2\x0f\x54\x1b\x80\xe8\x9c\x08\x95\x1e\x32\x29\x86\x6f\xbf\xda\x00\xe8\x6c\xad\x06\x9c\x55\x3c\x07\x4c\xce\xaa\x62\x01\x74\x02\xb7\xb3\x2a\x16\x40\x9c\x7e\x44\xad\x50\x3d\x37\x3a\x99\xf8\x56\xfd\x0b\x55\xff\x82\xf5\xaf\x7e\xa8\x28\x03\x1d\xdd\x55\x15\x00\xc2\x38\xc1\xaa\xe3\x00\xf8\xd5\x90\xac\x0a\x03\x10\xb3\xcf\xdf\xfe\x08\x57\xd6\x61\x76\x3d\x84\x29\xf1\x19\x54\xc5\x04\x28\x7c\x94\x30\xab\xca\x01\x74\xe7\xce\x55\x99\x00\xf8\x9c\x64\x56\x15\x01\xe8\x2f\x3b\x10\x03\xc2\xf8\x3c\x5f\x37\xec\xb5\xea\x33\xa8\xee\xe9\x41\xfd\x56\x67\xf5\x20\x7a\xda\xcd\x38\xad\xaf\xee\xf3\x41\x64\x56\x67\xf5\xa0\xeb\xb8\xf0\xf8\x4f\xd1\x75\x14\x56\xe7\xf4\xa0\xbb\x62\x5e\x9d\xd2\x83\xce\xc6\xa5\xac\xce\xe8\x41\x18\x20\xe8\x87\x03\xc5\x38\x05\x6a\xa8\x17\x28\x61\x33\xd2\x8f\x00\x06\x07\x90\x65\x75\xde\x0f\x4a\xd8\xfd\x39\xf1\xaf\x7e\x73\x86\x8f\x39\x67\xd5\xb7\x00\x22\x5d\x24\xab\x4e\xf4\xc1\xac\x8e\x9c\x97\x0d\xe2\x42\x50\x76\x7f\x69\xc6\xaf\xf3\xf5\x1b\x0a\x43\x27\x03\x98\xd5\xde\x45\x39\x00\xa2\x0f\xc7\x74\xe5\x00\xd8\x03\x0e\xc5\xa1\xdf\xa1\x7a\x04\xb9\x8e\xdb\xaa\x46\xa8\xe7\xab\x1c\x4c\x36\xaa\x22\x01\x2c\x67\xad\x55\x91\x00\xea\x72\xe8\x35\x10\x0d\xec\x5f\x72\x99\x2e\x0a\xb0\x9f\xca\x13\xf4\x48\x80\x76\x7a\x30\x9d\x0f\x60\xcf\x9e\x48\x9c\x8e\x06\xc0\x91\x84\x59\x55\x1c\xa0\xbf\xec\x4f\x14\x1c\x60\xf8\xce\x28\x1b\x3c\xdf\xb5\x1b\xb9\x55\xd5\x0d\xd5\x1d\x41\xd5\x94\x29\x1c\x40\x49\xdf\x66\x85\x43\x55\x38\x18\x53\x56\xf5\x16\x80\x6e\xba\xd4\x0d\xa0\x3b\x78\xe9\x2a\x00\xc3\xfe\x4a\x4f\x01\x38\xc5\xaf\xb4\xa8\x9f\x73\x8a\xb1\x49\xb0\x0c\x91\x16\x76\x15\x2a\x8b\x6a\xd8\xd6\xb4\x35\xaa\x2c\xea\xf7\x08\x45\xaf\x33\x43\xba\x00\x96\x03\x83\xcb\xfd\x20\x0c\x29\xa9\xea\x08\x10\x06\xcf\x54\x75\x04\x08\x85\x79\x55\x47\xd4\xef\x11\x8f\x5e\x66\x26\xbf\xe7\xdc\x1d\x92\x6b\xe4\x16\x08\xf7\x44\x67\x55\x5d\x54\x5d\x05\x4e\x01\xd4\x0d\xa0\x84\x15\xa7\x6e\xa8\xea\x06\x17\x42\xaa\xba\x01\xec\x19\x05\x77\x53\x37\x80\xac\xf6\xa7\x86\x69\x81\x6e\x3e\x95\x0a\x60\x2c\x4a\xc3\x20\x2d\x30\xed\xb8\xd4\x0e\x60\x5a\xb2\xc6\x63\x81\xe1\x7b\xa3\x98\x00\x06\xdb\x56\xa3\xb1\xc0\xb4\x8b\x52\x5d\x80\x69\xcd\x1a\x9e\x05\xdc\x09\xe0\xa1\xc0\x42\x77\x5e\x35\x38\x0b\x18\xd1\x5c\x95\x24\x60\xd8\x1f\x2a\x48\x00\x67\x8b\x64\x55\x8f\x00\x97\x42\x3c\x5a\x58\x4c\xc7\x24\xf5\x09\x18\xce\x80\x95\x22\xc0\x90\xa9\xaa\x6f\x02\xec\xc2\x26\xf7\xaa\x13\x10\xad\xda\x93\xab\x4e\x80\xc1\xeb\x55\xe1\x01\xf4\xb2\x55\x85\x07\x98\x76\xf6\xea\x8e\xaa\x73\x42\xd7\x8a\xc7\x1d\x8b\x45\x53\x69\x3a\x22\xc0\x22\x05\xcd\xf0\x29\xb0\x90\x39\x4d\x37\x04\xe0\xa3\x2a\xd9\xdc\xee\xd3\x3c\x65\x6d\xf9\xb3\xa9\x69\xcb\x15\xaa\xbf\x29\x57\x00\x1f\x3e\xc8\xa6\x5a\x01\xab\x78\xa3\xb7\x96\x2d\x0a\x19\x31\x9a\x8e\x0a\xb0\x10\x34\x4d\x41\x03\x16\xaf\x71\x53\xcf\x00\x3e\x4e\x97\x4d\x39\x03\x16\xdd\x41\x53\xcd\x80\xc5\x34\xb5\x29\x66\xc0\xa2\x65\x37\xb5\x0c\x58\xf5\x77\xec\x7c\xf2\x18\x68\xb1\x6b\x8c\x2c\x18\x64\x05\x22\x5d\x5d\x69\xea\x1f\x10\x47\xc9\x34\x43\xaa\x80\xa7\x9d\x65\x53\x02\x81\xee\x2e\x9d\xa6\x04\x02\x91\x86\x70\x36\x37\x06\x81\x60\xa7\x58\x36\x65\x11\xe8\xee\xb6\x69\xca\x22\x10\x0e\xe5\x4d\x6f\x0a\x08\x3e\x3f\x95\x4d\xa9\x04\xc2\x5d\x40\x4d\xa9\xd4\x8c\xce\xa2\xe7\x6c\x6a\x25\x10\x7d\x9a\x7e\xa5\x11\xd8\x03\x04\x45\xaa\x83\x05\x74\x23\x07\x3c\x15\x5b\xf4\x72\xee\x66\x69\xe0\x60\x71\xad\xa6\x29\xaa\x40\xbc\xce\xfd\x2d\x9f\x62\xf9\x68\xb2\x7c\x0c\xe0\xe2\xbd\x6a\x2a\x2f\xd0\xcb\xcb\xab\x2c\x1e\xe2\xb7\xd8\xbb\x97\x4d\x31\x06\x22\x4e\xba\x2c\x9e\x62\xf1\x98\x2e\x8b\x07\x57\x8d\x7b\xb0\x9a\xf2\x0c\x44\x77\x4f\x40\x53\x9f\x81\xee\xd6\xa3\xa6\x3e\x03\xe1\xce\xa6\xa6\x3e\x6b\x1e\x92\xcf\xc7\x53\xb2\xa9\xcf\x40\xb8\x2a\xeb\xc7\x86\xb3\xe1\xab\x71\x3f\x5a\x53\x9d\x81\xce\xde\xc0\x6c\x8a\x33\x10\xee\xe8\x6a\xaa\x33\x10\x71\xae\x32\xe3\xd5\x76\xe1\x13\xcd\x38\xbe\x1a\xf7\xfc\x35\xd5\x19\xe8\xee\x6c\x6a\xaa\x33\x10\x7c\xc8\x3e\xfd\xe0\xb1\x08\x77\xc0\x35\xd5\x19\xe8\x46\x2e\x35\xe5\x19\x08\xb7\x82\x35\xd5\x19\x08\xe3\x7a\x9b\x62\xac\x79\x82\x9c\xe5\xaa\x5f\x07\x04\xc7\x3e\x67\x53\xa0\x81\xae\xdb\xbe\xa9\xd0\x40\xb8\xad\xac\x29\xc8\x40\xb8\xe7\xae\xe9\xd7\x01\xe1\x61\x2a\xd9\x94\x64\x20\x8e\x63\xb4\xa9\xc9\x9a\xc7\x63\x2c\xd3\x6f\xf5\x36\xe6\xb6\xd6\x9b\x62\x0b\x74\x77\xf0\x35\xa5\x0f\xe8\x8d\x29\x64\x53\xfb\x80\xde\x98\x2f\x36\x1d\x23\x20\xaa\x2f\x97\x7a\x08\xf4\xc6\x6a\x93\x1f\x88\x16\xbd\xa5\xb7\xb7\x78\x88\xab\x6a\x26\x55\x85\x04\x4e\xd0\x56\x53\x21\x81\xde\x9a\x57\x59\x3c\xf8\x5d\xaa\xd5\xa6\x66\x02\xd1\x39\xe7\x39\x9b\x7e\x97\xe6\x01\x73\x06\x6f\x36\x1d\x2f\xcd\xf3\x24\xec\xb7\x14\x57\xa0\xb7\x66\xca\x2c\xc5\x23\xae\xd0\x2c\x4d\x29\x05\x4e\xec\x56\x53\x4b\x81\xae\x36\x6c\x06\x66\x81\xe0\x1c\x83\x6c\xea\x2b\xd0\x1d\x4a\xfd\x32\xb6\x08\x77\x8c\x34\xf5\x15\xe8\xcd\x27\x2a\xaf\x9a\x47\x4c\xd8\x9f\x1a\xbe\xd5\x0c\xdf\x62\xf6\xd8\x54\x5c\xcd\xf0\x2d\xa6\x38\x4d\x8f\x4d\x33\x7c\xcb\x76\xa1\x77\x06\xf4\xc6\x4a\x5b\x53\x97\x35\x0f\x8c\x98\x66\xc8\xa2\xe0\xf4\xed\x7a\x32\x64\x51\xa0\xcb\xaa\x8d\x47\xdd\x05\xfc\xce\x67\x36\x65\x17\xe8\xcd\x31\x45\x1f\x0e\x08\xd7\xc7\x9a\xdb\x85\x9a\x07\x46\x38\x82\x29\xce\x9a\x07\x46\x38\xee\x2a\xce\x40\xa8\x0e\x9a\xbb\x85\x9a\xdf\xb6\x32\x8e\xa5\x19\x44\xd6\x3c\x1e\x02\x19\xde\xf4\xf4\x80\xde\x1c\xb2\x8d\x21\x03\x7e\x6e\x3c\x9b\x9e\x9e\xe6\xb9\x0f\xf6\xc2\xee\x10\x02\x51\xad\x22\x7d\x3f\xa0\xb7\xa6\xc9\x7c\x73\xc0\x6f\xb5\xaf\xd6\x1d\xe4\xe7\x0b\xba\xcb\x47\x4d\x77\x10\x08\x4e\xdd\xc8\xa6\x37\x08\x9c\x7d\x00\x4d\x29\x09\x82\x33\xd2\xd3\xef\x9b\xe7\xf9\xbe\xf9\xb4\x14\x95\x92\x4d\x0f\xd1\xab\xfc\xf6\xb1\x5d\xd9\x8c\x4f\x03\x61\x10\x8d\x5f\x49\x17\xe1\xf2\x72\x53\x7d\x82\xf0\x80\xd6\x6c\xca\x4f\xd0\x9b\xef\x8b\x5a\x13\x44\x75\xb4\x50\x6b\x82\xe8\xc5\x62\x56\x59\x82\x98\xae\x25\xfb\xc9\x06\xd1\x5d\x27\x69\x7a\x90\x40\x1f\x4c\xf8\xfd\x88\x83\xe8\x2e\x5a\x34\x7d\x4a\x60\x97\x03\x39\x50\x6c\x82\x5d\xd0\xfe\xd4\x8c\x5e\x1c\x7e\xe0\x5b\xa4\xda\x04\x61\x54\x77\x53\x6c\x82\xd0\x89\xda\x14\x9b\x4d\xdf\xd3\xb9\x97\xfd\x87\x5a\xb3\x9b\x7e\xb3\x8e\xd4\xd4\x5f\xd7\x54\x9a\x20\x0c\xb5\x69\x0a\x4d\x10\xee\xf5\x6c\x0a\x4d\xd0\x8d\xac\x69\x0a\x4d\xd0\x5d\xf6\xf5\x8b\xf4\x22\x5c\xe0\xf3\xe3\x15\xa2\x3b\x59\x6e\x86\xc7\x81\x70\x6b\x48\x53\x8c\x82\x68\x61\xef\x6a\x78\x1c\x08\xc3\x2e\x9b\x02\xb5\x79\x24\xf7\xb4\xd1\x29\x50\x41\x1f\xf6\x15\xee\x79\x02\x7d\xd8\x5a\x0c\x8e\x6b\x7e\xc5\xd4\x1e\x57\x1d\xdb\xfc\xee\xee\xf4\x3d\x75\x1f\x54\xf3\x9c\x8c\xe1\xcd\x2c\x9f\x73\x50\xa1\x37\xb3\x7c\x70\xa6\xb9\x04\xd5\x0c\xa1\x6b\x1e\x9d\x91\xde\xcb\xf2\x21\x84\x4e\x55\xdc\xdc\x1a\xd5\x3c\x4c\x83\x05\x3b\x3f\xda\x21\xc2\x5d\xc1\x7e\xaf\x3f\xcf\xf7\xfa\x9d\xa6\x28\x9d\x9b\xd2\x99\x20\xaf\xa6\x72\x6e\x9e\x66\x68\xfb\x37\x1a\xaf\x79\x98\x06\xf1\x1d\x7e\xff\x23\xdb\xc7\xd2\xf1\x5e\x96\x8e\x4e\x38\xc2\x1c\x9b\xf2\x1a\x84\x3b\x54\x9a\xfa\xba\xe9\x97\xb3\x42\x94\xd3\x20\x8e\xb7\xb7\x29\xa8\x41\x8c\xea\x6c\x4c\x41\xdd\xdc\x2f\x35\xcf\x6f\x2d\x0c\x8f\xce\xf0\x35\x34\xf6\x0e\x74\xbd\xb1\x4d\xe1\xdd\x3c\x3a\x63\xda\xb5\xa9\x9e\x9b\x47\x60\xd8\xa5\x2b\x81\x41\xcc\xa1\xfc\xd0\x75\x06\xba\x82\xb4\xa9\x77\xc1\x28\x26\x57\xb9\x0b\x4a\xd8\xd8\x55\xbb\x60\x14\xbb\x61\xd5\x2e\x88\x73\x22\x81\x1f\x3e\x11\xa3\x38\x8a\x2b\x78\x41\x09\x2b\x45\xc5\x0b\x4a\xf8\x62\xba\x2b\x09\x8c\xe2\x50\xac\x0a\x06\xe5\x34\x76\x65\x30\x28\x61\x0d\xa8\x83\x41\x09\x5f\x5f\x85\x30\xf0\x43\x3a\xd9\xd4\xbd\xa0\x84\xaf\x9c\xc2\xb7\x79\x2a\x86\x2d\x56\xe5\x0b\x76\xc1\xd2\x0e\x54\xba\x60\x14\xfb\x15\xa5\x2e\x28\x61\x2b\x56\xeb\x82\x51\x1c\xc3\x95\xb1\x8d\x20\xbb\x62\xbe\x75\x9f\x35\x0f\xb2\xb0\xc9\x2a\x63\xc1\x28\x36\x33\x75\x2c\x28\x71\x4c\x26\xff\x21\xf9\x2c\x9a\x37\x37\x11\x81\x51\xe8\x7d\x52\x69\x0b\x4a\x90\xd4\x34\xf0\x2e\xfd\x90\x8f\xbb\xa4\xfd\x48\x8c\x18\x7c\xb3\x27\xfd\x46\x8c\x18\x7c\x2a\x28\x53\x6f\x1c\xf0\x58\xff\x4c\x45\x70\x7a\xe8\x45\x7a\xd5\xd0\x34\x48\x58\xc7\x34\x35\x91\xef\xa6\x69\x69\xa2\xda\xe8\xca\x52\x1d\x0c\x06\x9f\x9c\x4d\x3f\x40\x23\x06\xdf\x0d\xca\x54\x09\x83\x61\xaf\x95\x4a\xe1\x74\x1b\x11\x5f\x54\xcc\x54\x0c\xa7\xce\xbd\xf4\x91\x8f\x26\x16\x76\x58\x05\x4c\xe5\x30\x28\x61\x8e\xd4\xc3\x60\x94\xe6\x55\x96\x58\xd8\xd0\xbd\xca\x02\x53\xf2\xea\x00\x49\x25\x6f\x7a\x5c\x46\xfe\x0e\xe1\x9c\xba\xff\xd2\x73\x32\xaa\xcf\xb2\xa8\xfc\x88\xf2\xe4\xad\x4a\xd5\x2f\x18\x85\xd9\x47\xaa\x61\x41\x1c\x0f\x60\x2a\x45\xf3\x48\x51\x6f\xa7\xee\x04\x31\x4e\x39\x2b\x3c\x81\xdf\x9b\x4b\x3f\xd6\x23\x4a\xd0\xbd\xa6\xc2\x33\xcb\x49\x08\xb9\x56\x66\x82\xe1\x58\x96\xca\x4c\xb0\xb5\xbf\x0f\xb5\x8a\x36\x4a\x7f\xf9\x4b\xab\x48\x9f\xdf\x32\x19\x66\x61\xa3\x18\x44\x9b\xea\x4c\x50\xdc\x75\x93\xca\x4c\x30\x1c\x91\x52\x99\x09\x0a\x67\x4e\x67\x2a\x33\xc1\xb0\xb3\xf6\xbb\x42\xa2\xe8\x7f\x4d\x9d\x80\x60\x38\xe1\x48\x85\x27\x18\x7a\x98\xd3\xb8\x41\x30\x1c\x1e\x52\x2d\x0a\x4a\xd8\x32\xd5\xa2\xa0\xb8\x55\x23\xd5\xa2\x60\x28\x00\xfc\x90\x91\x18\x8e\x64\xa9\x16\x05\xc3\x25\xfc\x54\x78\x82\xca\xb1\xa9\xe9\x97\x8d\xc4\x1e\x1d\x78\xa4\x62\x34\x3d\x19\x83\x79\x69\x2a\x46\x41\xd1\x57\xe8\xf7\x8f\x44\xe1\x8b\x00\x99\x3a\x06\x41\xe1\x43\x02\x99\x8a\xd1\x74\x13\x92\x8f\x54\x8c\x82\x92\xa6\x55\x31\x0a\xb6\xee\xf7\x32\x33\xee\x69\x19\x0c\xe1\xa9\xc3\x30\x3d\xe4\xbc\x4d\x9f\x69\x53\x69\x84\xb9\x31\x3d\x4e\x15\x6a\x7a\x5c\xc6\xf2\x66\x36\x0b\xcf\xc6\x18\x9a\x2c\x0c\x4e\x3e\x1f\xe7\x5e\x16\x46\xb3\x59\x90\xb2\xb4\x2c\x92\xb2\x60\xba\xe1\x47\x9e\xc4\x70\x02\xe8\x37\x9e\xc4\x70\xa2\x95\x3a\x16\xd3\xef\xb8\xe8\x32\xf0\xb3\x4f\xa2\x70\xc8\x72\xa6\x01\x8a\xa0\x70\x9c\x77\xa6\xce\x46\x50\xf4\x23\xfa\x6d\x28\x51\x0c\x6b\x4e\x5d\x8b\x99\x47\x2c\x92\x25\x5d\x8b\xa0\x70\xe2\x7a\xa6\xbe\x45\x50\x9c\x24\xa4\x62\x1a\x14\x3e\xee\x90\x7e\x67\x4a\x0c\x07\xfa\x54\x4c\x83\x62\xb4\x56\x2a\xa6\x41\x71\x4b\x52\x2a\xa6\x81\x1f\xde\xc8\x54\x4c\x83\x92\x96\xbe\x32\x39\x95\xc9\x1c\xa3\x9f\x7e\xc6\x4a\x14\x37\xce\xa6\x2a\x19\x44\x9e\x41\x44\x65\x9b\x7e\xbd\xa8\x5a\x27\x4a\x5b\x10\x7e\x6e\x20\x53\x6d\x9b\x27\xd0\xd0\xc1\x46\x25\x9b\x83\x17\x6c\x78\x99\x65\x3b\xf0\x01\xd9\x3d\x18\x55\x98\x46\x15\x9e\x01\x48\x91\x0a\xaa\x7b\xd3\x53\x91\x0a\xaa\x1b\xe4\x53\x91\x0a\x66\x3b\x49\xb3\x06\x06\x6f\x98\x8d\x56\x91\x0a\x66\xb3\xd4\x14\xa9\xe9\x99\x16\x0e\x10\x8a\x54\x30\x15\xbc\xa9\x48\x05\xd5\xdd\xf0\x69\xec\x21\xa8\x86\x36\xa6\xba\x15\x54\x77\x86\xa4\x1a\x15\xec\xb7\xc9\x9b\x99\xf1\x8d\x6a\x9c\x64\x2a\x52\xc1\x74\x05\x25\xdd\xe7\x04\xaa\x1e\xd8\xd4\x45\x09\xaa\xe7\x0e\xa4\x52\x16\x54\x43\x33\x53\x29\x0b\x66\xb3\x65\x2b\x65\xc1\x7a\x9d\xdb\x5b\x3a\x1c\x76\xd1\x6c\xc6\x4a\x59\x30\x5d\x54\x49\x95\x6c\x1a\xd8\x78\x06\x76\xa5\x2c\x98\xea\xd6\x54\xca\x82\xd9\xec\x9d\x95\xb2\x60\x2a\x1b\x53\x25\x0b\xaa\x8e\xee\x54\xa9\x82\xd9\xec\x51\x95\xa0\xe9\xf9\x17\xf6\x95\x7a\x40\xd3\xf3\x2f\x6c\x9f\xaa\xd2\xf4\xfc\x0b\x3b\x7f\x55\x29\xa8\x6e\x7b\x4c\x3d\xa0\xa0\xbe\xc6\x6f\x7f\x1a\x2a\x53\x6f\x28\xa8\x86\xb1\xa7\x92\x15\xcc\xe6\x98\xa5\x64\x05\xd3\xd5\x82\x54\xb2\xa6\xc7\x63\xd8\xf7\xa9\x58\xc1\x6c\xf6\x27\x0a\x56\x30\x5d\x5e\x49\x05\x2b\x98\xcd\xf1\x4f\xc1\x0a\xaa\xe7\x5e\xa4\x82\x15\x4c\xd7\x3a\x52\xc1\x0a\x76\xd3\xf2\x32\x8b\xe5\xb2\x85\x50\x2c\x2a\x56\x50\x75\xd1\xa7\x8a\x15\xd4\xd7\xb9\x99\x25\x75\x71\x2c\x88\x2f\x8b\x8a\x15\x54\xb7\x0c\xa4\xf2\x14\x44\x33\x56\x2f\xd5\xa7\xa0\x1a\x8c\x99\xea\x53\x50\xdd\x1e\x90\xca\x53\x50\x5f\xe7\x87\x16\xcf\xdb\x30\x51\x67\x88\xc6\x6c\x82\xe9\xca\x4c\x2a\x3c\x53\xe1\xc9\x17\x21\x32\x15\x9e\x20\xce\x5e\xc1\x54\x79\x82\x6a\xe8\x68\xaa\x3c\xd3\xcf\x7a\xea\x1d\x4a\x45\x65\x7a\xde\x86\x55\xa7\xa8\x04\xeb\xe4\x40\x51\x09\x22\x97\xa3\xbf\xaa\x12\x2c\x57\x7c\x53\x55\x09\xd6\x29\x22\x55\x65\x7a\x2c\x87\xaf\xad\xaa\x32\x3f\x04\x05\xa6\x57\x59\xc3\x9e\xc1\x61\x3f\xa7\xaa\x04\xcb\x75\xe1\x54\x55\x82\x9a\xf6\x27\xba\x6d\xd3\x33\x38\xcc\xa5\x42\x33\x3d\x83\xc3\x57\x41\x9d\x09\xd6\x99\x5c\x28\x33\xc1\x72\x01\x3e\x55\x99\xa0\xba\x5f\x2f\x55\x99\x60\xb9\x1c\x9e\xaa\x4c\xb0\x4e\x65\xea\xdd\x05\xd5\x95\x98\xd4\xb9\x0b\x96\x3e\x85\x34\x6c\x14\x54\x57\x50\x53\x77\x2f\x58\xa7\x4b\x36\x92\x14\x2c\x3d\x22\xa9\x86\x05\x4b\x8f\x48\xea\x01\x4e\x8f\x71\x9c\xa6\x55\x17\x70\xea\x02\xe6\x8b\x19\x99\xba\x80\xc1\x72\xd9\x3c\x95\xbf\xa0\xa6\x03\x99\x0e\x60\xb0\xce\x4b\xee\x56\x31\x50\xcf\x08\x6e\xc4\x29\x58\xe7\x2d\x51\x36\xa7\xc7\x79\xbc\x8a\x37\xb3\xc8\x4e\xc8\x29\xa9\x55\x37\x83\x9a\x36\x1e\x75\x33\x58\xae\xc0\xa7\xba\x39\x0d\x1f\x45\x9e\xa6\x1a\x19\xd4\x33\xf5\x52\x23\xa7\x11\xa5\x28\xe9\x54\x23\x83\x62\x13\x50\x22\x83\x9a\x0a\x03\x25\x32\x58\xe7\xb5\x57\x22\xa7\x5f\x19\x5d\xd6\xae\xae\x61\x10\xad\x58\x25\xca\x5f\x50\x53\x81\xa4\xe7\x17\x84\x5f\x6e\xca\x54\x11\x83\xf0\x63\x38\x99\x4a\x62\xb0\x74\x81\xa4\xce\x5e\x10\xb3\x3a\x7b\xd1\xdd\x0b\xfc\x20\x4f\xa6\x32\x19\xd4\x65\x03\x32\xee\x14\xac\x33\x93\x53\x39\x83\x75\x26\x47\x2a\x67\x10\x63\x39\xc2\x2a\x9d\xc1\x3a\xf3\x6d\xa5\x33\xa8\xcb\xda\xd4\x2d\x0c\xea\xf2\x2d\x51\x4d\x83\xa5\xf2\xe8\xee\x62\x03\x75\xd1\xfe\xbb\x02\x1b\x2c\x35\x45\x57\x60\x83\xe5\x44\xb4\x2b\xa6\xc1\x52\x66\x74\xc5\x34\x08\x3f\x9c\x95\x7e\xf3\x53\xd4\x45\x05\x74\xa5\x33\xa8\x1e\x6a\xd0\x95\xce\xa0\xae\xe5\xcd\x3e\x9a\xcc\xa4\xa6\xaf\x26\x72\xb4\xbc\xfd\xa3\x89\x1c\x31\x73\xe9\x0a\x60\x50\xdd\x1b\xd8\x15\xc0\x20\x4e\xa8\x53\x57\x01\x83\x65\xc0\x52\x57\x01\x83\xa5\x16\xec\x0a\x60\x50\xf5\xf5\xf9\x75\x52\xb1\x0c\x45\xea\x7a\x81\x41\x5d\xcb\xdb\x0f\x4d\x54\xf8\xfc\x1d\xca\xb9\xeb\xfc\x05\x75\xd1\xd1\x75\x9d\xbf\x60\x29\x09\xba\xce\x5f\xb0\x94\x72\x5d\xe1\x0c\x22\x3d\x7f\xa8\xeb\xfd\x05\xd5\x77\xa1\xeb\xfd\x05\xd1\x5d\xaa\xe9\xba\x7f\xc1\xee\x64\x78\x82\xc1\xb2\x60\xdf\x4e\x9b\x25\x53\xfc\x80\xfd\xf4\xb7\x96\x83\x5f\xbf\x3c\xd5\xa1\xe8\x06\xcb\x00\xd1\xae\x6b\x17\x34\xa3\x5b\xba\x9a\xbb\xbb\x99\xce\x71\xb0\x2b\xb0\xc1\xb6\x51\x93\x2a\x6c\xb0\x53\x42\x1b\x50\x62\x83\x56\x8f\xc9\xbc\x56\x02\xc9\x4d\x9b\xe2\x19\x34\xcf\x3a\xeb\x8a\x67\xb0\x1f\x40\x72\x55\xcf\xa0\x19\x9f\xd3\x55\xcf\x20\x5e\x7a\x8d\xba\xf2\x19\x34\x1d\x0e\x5d\xf9\xdc\xfd\x06\xa3\x67\x14\x76\xf5\x73\xf7\x93\x08\xce\x30\xbb\x02\x1a\x34\x8f\x66\xeb\xee\xc5\xeb\xf5\xe4\x9e\x06\xaa\xa8\x06\xcd\xa8\xc2\xae\x37\xb7\xfb\x01\x04\x67\x61\x5d\x55\xdd\x75\xe7\x3a\x91\xee\xf5\xe4\xfe\xe1\xa7\x98\x54\xd5\x60\x5f\x46\x21\x29\xab\xc1\xce\x97\xd7\x59\x4a\x38\x79\x5f\x27\x63\x6a\x6d\x10\x67\x6b\x6d\x57\x59\x83\x79\x4a\x4e\x65\xdd\xfd\x2e\x82\x33\xb6\xae\x8c\xee\x7e\x05\x41\xb7\x5c\x57\x47\x83\x6d\xa3\x9c\xd4\xd1\x60\xdb\x28\x27\x83\x6f\xbb\x87\x7a\x9c\x4a\x54\x49\x77\x5d\xbd\x1e\xfc\xda\x95\xd2\xa0\xe9\x32\xec\x4a\x69\xb0\x2f\xe3\xa7\x6a\x69\x10\x27\x78\xbd\xab\x9c\x41\x8c\x49\x4f\xda\x95\xce\xa0\xe9\xa7\xec\xba\x89\xc1\x7e\x25\x48\xb1\x3a\x19\x34\xdd\x4b\xdd\x93\x26\xc1\x4e\x30\x29\x71\x6f\x1f\x68\x2e\xb9\x77\x63\x77\x7b\x9e\xca\xf6\xa7\xe6\x4b\x3d\xed\x29\xb1\x5d\x3d\x0d\x22\x5e\x04\xb6\x74\xbd\xd3\x20\xc2\x3d\x06\x5d\x45\x0d\xe2\x9c\x79\xd4\x95\xd4\xa0\x9d\x97\x4e\x49\x0d\xf6\xed\x78\x84\x9a\x1a\x34\x3d\x2d\x5d\x4d\x0d\xfc\x20\x4d\x76\x35\x35\xd8\xbf\x24\xc1\xba\xa3\x41\xd3\xc3\xd4\xd5\xd9\xa0\xe9\x28\xea\xca\x6c\xd0\xf4\x30\x75\x65\x36\x68\xba\x12\xba\xce\x68\xd0\x8c\x5b\xec\x3a\xa3\xc1\x7e\x24\xf5\x6c\xa4\x2f\xd8\x79\xf7\x3a\x2b\x7a\xa3\x19\x3e\xdf\x75\x50\x83\x7d\x19\x4d\x49\x1d\x0f\xce\x21\x3f\x5d\x19\x0f\xf6\x13\x48\x9b\x32\x1e\xec\x9f\x52\x6c\xfa\xa8\x41\x3b\x0d\x58\x87\x34\x68\xa7\xb7\x57\xd9\x83\x7d\x37\x8a\x4d\x8f\x34\x68\x3a\x86\xba\x6a\x1f\x34\xfd\x5f\x7e\x9c\x5a\x44\xea\x79\xea\x2e\x00\x80\xe8\x9e\x75\xd8\x5d\x01\x00\xd1\x0d\xf8\xe8\xea\x7d\x10\x91\xbe\xd4\x0a\x7e\xb0\x6d\xe4\x4b\xc5\x0f\xd2\xd3\x14\xbb\x8a\x1f\xec\xcb\xa8\x40\x25\x3f\xd8\x36\x52\xac\xe6\x07\xdb\xe6\x6f\x2d\x92\x79\xf6\xda\x90\x14\xbd\xd5\x20\x3d\x28\xb3\xbb\x10\x00\xf6\x65\xd4\x97\x0b\x01\x20\x3d\xfd\xb1\xab\xfa\xbb\x5f\x86\x5b\xb6\x1b\x65\x7f\xf7\xd3\x05\x46\xae\x77\x75\x3f\xd8\x09\xf6\x76\x16\x0a\xdf\x2e\x08\xf7\x91\x74\x65\x3e\x48\x4f\xd9\xec\xca\x7c\x70\x8e\x71\xe9\xca\x7c\x90\x1e\x69\xd9\x95\xf4\x20\x7e\x6d\x9a\x6a\x7a\xb0\x1f\x40\x42\x54\xf0\x20\xeb\xef\xf8\xfa\x72\x76\xfd\xce\x20\xca\xaf\x4f\xb3\x75\xb8\x95\xf1\xa4\x53\xd5\x0f\xf6\x75\x26\xd4\xa2\xc0\x19\x5d\x4e\xc9\xaa\xfb\xc1\xb6\x51\x64\x0a\x7f\xb0\x6d\x14\xad\x1e\x6a\x10\x67\xa3\x54\x57\xee\x83\x5d\xb4\x3c\x43\xbd\xdf\xdd\xe4\x58\x6c\x97\x4a\x79\x10\xe9\xd9\xc3\x5d\x2d\x0f\xb2\xd9\x66\xd4\xf2\xfd\x3a\x1b\xaa\x78\x03\x55\xee\x20\x9b\x23\x92\x2a\x1d\xec\xcb\x7c\x82\x15\x8a\x63\xb9\xf0\x05\x93\xec\xea\x74\x10\xc5\x8d\xf0\x5d\xa1\x0e\xf6\x75\xe4\x42\xa5\x0e\x52\x21\xd4\xf5\x2d\x77\x7d\xcb\x1e\xb4\xd2\x55\xea\x5d\x4f\xb2\xf1\xcf\x5d\xa9\x0e\xa2\xe8\xbd\xee\x6a\x75\xb0\x6d\x3c\x42\xb1\x0e\xb2\x9f\xcb\xcc\x3f\xfb\x2b\x8b\xce\xd8\xae\x7b\x19\xec\x21\x12\x93\xd5\xbd\xb1\x47\x52\x4c\xd6\x2c\x92\x7e\xe6\xb9\xcc\xbc\x6e\x64\x3f\x37\x33\xab\x6e\xb9\x3c\xb3\x65\xe5\x3b\x88\x5c\xbe\x0b\xea\x77\x90\x6e\xf3\xea\xea\x77\x90\xee\xc3\xec\xca\x77\x70\x8e\x8a\xe9\xca\x77\xb0\x1f\x40\x21\x29\xd6\x41\xd4\x70\x3a\xe6\x21\x2d\x60\xdb\x28\x10\xe5\x3a\xf0\x2b\xf5\xd9\x95\xeb\x20\xdd\x54\xd8\x95\xeb\x20\xdd\x30\xd5\x95\xeb\x60\xdf\xcc\xb4\x99\xf9\x0f\xe7\x93\x1d\x93\x99\xc7\x2d\x5c\x0d\x07\xea\xea\x6e\x90\x6e\xdc\xea\x8a\x6c\xb0\x2f\x23\x5b\xaa\xec\x6e\x50\x75\xb2\x6a\xdd\xd5\xd4\x20\xa6\x87\xfe\x76\x45\x35\xe8\x2f\xe7\xfc\x8a\x65\x30\xcf\x0f\x4d\xee\x97\xf8\x5a\x32\xa0\x2e\x06\xeb\x3c\xd0\xf6\xf7\x25\x08\xd5\x64\x59\x4d\x5f\xb7\xa1\x51\x60\xfa\x97\x81\x87\xda\x74\x65\x72\xf7\xd3\x79\xbe\x19\xca\x64\x10\xe7\x18\xe8\xae\x2f\x19\x84\x27\x3f\x74\x75\x32\x38\xe7\x60\x74\x45\x31\xe8\xe5\x5c\x65\x66\xd0\xbb\x67\x16\xa1\x4b\x18\x44\x9c\x1f\x9a\x9d\xf3\xa1\x67\xe7\x2e\xfa\x84\x41\xf7\xa0\x9e\xae\x28\x06\x7b\x12\x45\x2e\x55\xc5\x20\x3c\xdf\xbe\x2b\x8a\xbb\xa2\xd8\xf3\xcb\xba\xd2\x16\xf4\x66\x7f\xa7\xb4\x05\xbd\xd9\x8d\x29\x6d\x41\xb8\x86\xda\xd5\xac\x20\x72\xf8\xae\xab\x50\x41\x38\x78\x0f\x15\x2a\xd8\xcf\x9c\xd8\x42\x1b\xee\x4b\xfa\xb0\xa1\xbf\x77\xbc\x70\x55\x76\x4d\x43\x13\x07\x84\x2f\x6f\x36\x35\xe1\xe3\x22\x68\x75\xa8\x3d\x41\xe1\x03\xd0\x39\x74\xdb\x0e\x4f\x5a\xa1\xea\x86\x6e\x5b\x50\xf8\x94\x74\x0e\x15\x2a\x98\x7c\xed\x26\x87\x0a\x15\x54\xd7\x89\x86\x3a\x73\x04\xeb\x44\x74\xcb\x43\x51\x09\x96\x61\xbe\x43\x51\x09\xf6\x68\xec\x65\x5d\xdb\x9e\x7a\xf8\xfa\x0e\x5d\xa9\xa0\xb9\xd5\x67\xe8\x49\x05\x7b\x86\x49\x32\x94\x92\xe3\xc4\x11\x33\x87\x1d\x6a\xc9\x71\x4e\x70\x3c\x4f\x30\xb9\x61\x70\x46\x7a\xbf\x5b\xdb\xed\xb9\x20\x15\xdb\xa3\x6d\xb7\x77\x62\x63\x86\x62\x12\x9c\x95\xa2\xa1\x6e\x1c\x85\xe3\x62\xe8\x09\x87\x0e\x57\xb0\xe8\x07\x87\x6a\x10\x2c\x16\x85\x86\x62\x10\x74\x97\x8e\x86\x5a\x10\x78\xe8\xc4\x50\x09\x82\xd5\x4c\x80\xc9\xf4\x3b\xd0\xcb\x3b\x99\xca\x8d\xd5\x7e\xc7\x0e\xe7\xa1\x23\x16\x2c\x13\xac\x6e\x1c\xc6\xf6\x9e\xdb\x2a\x1c\xc1\xa2\xa3\x1a\xca\x46\xd0\x5d\xc1\x1b\x0a\xb8\x61\x84\xae\x45\xa4\x58\x03\xe1\xe1\x63\x43\xad\x06\x62\xba\x91\x67\x28\xd6\x86\xf1\xb8\x56\x95\x5a\x6d\x18\x8f\xcb\xfc\x72\x28\xd5\xc0\x7e\x8d\x29\x26\xa5\x1a\x88\xae\xc3\x76\x28\xd5\xc6\xf9\xa6\xb3\x26\x9b\x51\xd3\x47\x83\xa2\x1d\x7a\x41\x41\xf8\x79\x8e\xa1\x52\x03\xdd\x83\x4f\x86\x42\x6d\x18\x92\x7b\xd2\x61\x3e\xf9\xd0\x73\x39\x3f\xb4\xb6\xd8\x37\x59\x4e\x06\xac\x2e\x94\x5b\x9c\x7b\x59\x1a\xcd\xd2\xa0\xc1\x28\xdc\x40\x04\xf1\x5b\x43\xdd\x06\x22\x08\x8c\x1b\xfa\x40\x41\xf8\xd5\x88\xa1\x92\x03\x27\x3e\x6f\xa8\xda\x40\xcc\xea\xcb\xa8\x6a\x03\x71\xdc\x2f\xc3\x73\x55\x40\x34\x3e\x56\x93\x43\xc7\x25\x88\xee\xa6\xc8\xa1\xce\x1a\xea\x2c\x5f\x51\x65\x16\x38\x07\xb4\x0d\x25\x15\x08\x7d\x27\x43\xfd\x04\xe2\x3c\xd3\x00\xdf\xe1\x16\xc8\x60\xcd\x62\x28\xa9\xc0\x39\x48\x6b\x28\xa9\x40\xe8\x29\x19\x4a\x2a\x10\xfa\xba\x86\x92\x6a\x18\xdf\x6b\x77\xa2\x7e\x02\xbd\xa5\x09\x33\x4b\xc6\xf2\x32\x3f\x1c\x4a\x25\xd0\x1b\x13\xde\xa1\x52\x02\xe7\x8c\xb8\xa1\x52\x02\xbd\x31\x29\x1d\x0a\xa5\x61\xe0\x6e\xf7\x5e\xb6\xb2\x41\x60\x33\x52\x72\xa8\x93\xc0\x39\xae\x6d\xa8\x93\x40\xe8\xb4\x1c\x0a\x20\x10\x67\x1c\x1b\x0a\x20\xd0\xf9\xe2\x4f\x0e\xf5\x0f\x08\xbd\x77\x43\x0f\x28\xe8\xad\x9b\x56\x9b\x14\x8a\x68\x7a\x30\xcf\x50\x11\x81\xdd\xa3\x51\x18\x2a\x22\x70\x8e\x75\x1b\xaa\x1f\x10\x4a\xc9\xa1\xf8\x01\xa1\x3b\x6b\xe8\xb6\x04\x31\xdd\x12\x3a\x54\x2b\x20\xd2\xf3\x16\x86\x6a\x05\x84\x9a\x76\x28\x56\x40\x77\x9b\xce\xd0\x4b\x09\x76\xd2\x28\x5b\xc5\x0a\xe8\xee\x27\x1a\x8a\x95\xe1\x99\xfc\xee\x7e\x1c\x2a\x93\x61\xe0\x2c\xcb\x59\x43\x6f\x23\xe8\xee\xa7\x1a\x6a\x15\xd0\xdd\xf6\x34\x14\x23\xc3\x53\x1a\xcd\x94\x5a\x04\x74\xb7\x54\x0d\xa5\x08\xe8\xee\x73\x1a\x2a\x11\xd0\xdd\xc0\x35\x3c\x53\x05\x74\x77\x5e\x0d\xb5\xc9\xf0\x2c\x47\xf7\x19\x0d\xb5\x09\xe8\x6e\x7f\x1a\x4a\x93\xb1\x08\xee\xb3\x53\x35\x76\x76\x78\xbc\xa3\xa3\xb5\xc2\x04\xc4\xf4\xe8\x9c\xa1\x27\x12\x84\x8b\xc0\x43\x4f\xe4\x30\x78\x96\x99\xde\x50\xbe\x80\xee\x4e\xb2\xa1\x7a\x01\xdd\xcd\x5c\x43\xb7\x23\x88\x39\x8e\xcd\x6c\x5e\x7e\x81\x18\x01\x3d\x94\x1b\xe3\x3a\x3b\xbc\xb7\x49\x79\x00\x62\x1a\xf8\x36\xd4\x07\xa0\x9f\xc9\x85\xf2\x00\x8c\x62\xd2\x0c\x35\x05\xa3\x98\x4f\xe5\x01\x18\xc5\xca\xd4\xe1\x07\x46\xb1\x6b\xd1\xdf\x07\x76\x3b\xf3\x91\x16\xf7\x9b\x4f\xe3\xd8\xce\x14\x11\x60\x14\x1b\xb2\xa1\xa6\x20\x9a\xb3\xc0\xa1\xae\x00\xa3\x58\x8e\x6a\x08\x30\x0a\x33\xb9\xa1\x86\x00\xe5\xf4\x53\x6a\x08\x50\xc2\xc4\xea\x02\x04\x91\x1e\xb4\x34\x94\x10\x60\x14\xbb\x33\x7d\x80\x60\x14\x16\xef\x86\xa2\x02\x44\xf6\xf2\x3b\x16\xc5\x87\x72\x62\x78\xbe\xa3\x95\xa1\x9a\x00\xa3\xd8\xf9\xe8\xea\x1b\x06\x94\x9e\x67\x99\xe3\x0f\xe7\xfd\xf8\x32\xe8\xea\x03\xa3\x78\x2f\xfd\x7a\x60\x14\xf4\xf1\x50\x5e\x80\xe2\x87\x66\x86\x4e\x3c\x30\x8a\x3d\xa0\xe2\x02\xec\xea\xa1\x10\x74\xb2\x81\x71\x5e\x36\xc5\x04\xd8\xef\xbc\x3f\x35\xb1\x7a\xd9\xce\xe0\xab\xa0\x00\xa5\x3b\x2f\x50\x50\x80\xe2\xf1\x8b\x43\x45\x01\xc6\x3c\x57\x99\x01\x02\x56\x4f\xd3\xd7\xf1\x06\x86\x2a\x67\xa8\x31\x40\xe9\x0e\x7a\x6a\x0c\x30\xa6\xf3\x59\x7d\x71\x20\xba\x2b\x4c\x43\xdd\x01\xce\xc9\x4f\x43\xd7\x1b\x18\xd3\x59\x81\x6e\x36\x30\xa6\x53\x68\x75\x07\x18\xa7\x7f\x52\x76\x00\x3f\x28\x98\x43\xd9\x01\x62\x16\xfb\x66\x65\x07\x38\xdb\x93\x87\xb2\x03\x9c\x7d\xd2\x43\x57\x1c\x38\xdf\x37\x1b\x46\xa7\x82\x71\xfa\x2c\x4f\x8a\x01\xe3\x74\x46\x3a\xec\xc0\x74\x0d\x63\xe8\xaf\x03\xe3\x74\xd6\x8a\x1a\x50\xfa\x49\x84\xad\x97\x48\xd7\xd3\x4b\xaa\x73\x40\xe9\x4e\x7d\xd4\x39\xa0\x74\x07\x38\x5d\x78\x60\x9c\xee\x4f\x0f\x1e\x38\xa7\x4e\x0e\xd5\x10\x18\xa7\x5f\xd6\x83\x37\xce\xc6\x4e\xee\x3f\x55\x43\x60\xd8\x0b\x4f\xc5\x10\x38\xc7\x96\x4c\xfd\x75\xa0\x74\x0a\x6c\xaa\x8f\xc0\xae\x5d\x7f\xd9\xb4\x51\x3c\x74\xdf\x53\x1f\x1e\x28\x3d\x34\x75\x4d\x04\x8e\x31\xd7\x9f\x2a\x2b\x30\x8c\x3c\x98\x2a\x2b\x30\x1c\xca\xa6\xca\x6a\x1a\x10\x4b\x17\x33\x55\x56\xa0\x74\x32\x3e\x55\x56\xc0\x6f\xfa\xe7\x54\x59\x81\xe1\x52\xc3\x54\x59\x81\xb3\x27\x71\x1a\x0f\x0b\xce\x91\xa8\x53\xdf\x1f\x18\x1e\xae\x37\xd5\x5f\x60\x77\x3a\x24\x4c\x01\x06\x86\x1b\x8d\xa7\x3b\x34\xc1\xf4\x50\xb2\xa9\x8a\x02\xb3\xd1\xf6\xa7\x22\x0a\xcc\x76\xee\x6f\xc2\x36\xaa\x91\x07\x53\x09\x05\xce\x5e\x91\xa9\x5e\x02\x55\xcf\xfd\xd4\xf7\x06\xaa\xce\xe4\xa9\x84\x9a\xba\xde\x54\xc9\x53\xd7\x1b\x98\x2e\x9c\x4d\x37\x63\x82\xaa\x64\x9a\x3a\xe3\xc0\x74\xc9\x6d\x1a\x13\x3b\xcb\x79\x9d\xc9\xb8\xfe\x39\x30\xdd\xd3\x3f\xd5\x68\x60\xba\xe0\x36\x15\x69\x60\x7a\x60\xfd\x54\xa5\x81\xfa\x3a\xf7\xb2\x2c\x8a\x65\xe1\x23\x2d\x8b\x42\x98\x9a\xed\x49\x9d\x06\xa6\xe7\x16\x4d\x75\x1a\xa8\x2e\x8c\x4c\x95\xd8\xe4\x18\x1c\x15\xd5\x54\x8a\x81\x51\x98\x16\x4e\x95\x18\x98\x9e\x19\x39\x95\x62\xa0\xaa\xd7\xa6\x1e\x3c\x50\xba\x4f\xd4\x81\x07\xa6\x07\x9e\x4d\x1d\x78\x60\x36\x5b\xb0\xfe\x3b\x30\x3d\xf0\x66\xea\xbe\x03\xb3\xd9\x76\x74\xdf\x81\x48\x0f\x89\x9b\xaa\x3f\x30\xdb\x31\x59\x14\x95\x80\x14\x2b\x44\xf5\x07\xa6\x47\x81\x4e\xc5\x1f\x88\x74\x2d\x72\x1a\xda\x0a\x62\x7a\xea\xcd\x54\xaf\x81\x48\xc5\xf5\xd4\xdd\x06\xa6\xa7\x32\x4f\x35\x1c\x58\xee\x73\x9d\x6a\x38\x50\xf5\x53\x4e\x35\x1c\xa8\xae\x95\x4d\x35\x1c\xa8\xf9\x7b\xce\xef\x9c\x4a\x3c\xb0\xdc\xb8\x3a\x95\x78\x60\xb9\xbd\x78\x2a\xf1\xc0\xd2\x8f\x31\xd5\x73\xa0\x1a\xd6\x35\xd5\x73\xa0\xfa\xa9\xaf\xa9\x63\x0e\x2c\x37\x04\x4f\x25\x1e\xa8\x7e\xc0\x6e\x1a\xe5\x0a\x96\x9f\x81\x9c\x8a\x3e\x50\xfd\x5a\xdd\xd4\x55\x07\xaa\x8b\xdb\x53\x4f\x1d\x58\x6e\x82\x9d\x7a\xea\x40\xf5\x33\x71\x53\xb1\x08\x96\xfb\x8d\xa7\xe1\xb1\x20\xe6\x38\xf7\xb7\x28\xd2\xa2\xa0\xc1\xe9\xce\x03\xd5\xb0\xc8\xa9\xca\x9c\xe7\xe8\x1d\x7b\x43\x25\x25\xa8\x7e\xd0\x6c\xea\xb9\x03\xcb\x0d\xcd\x53\x95\x09\x96\x1b\x82\xa7\x8e\x3b\xb0\xdc\x96\x3c\x55\x94\x60\xb9\x7f\x76\xaa\x28\x41\xe4\x38\x97\x99\xa7\x4e\xe5\x33\xe3\x99\xba\xe4\xe6\xf9\xde\x9b\x8d\x50\x4d\x09\xaa\x9f\xf3\x9b\x6a\x4a\xb0\xdc\xd0\x3c\x15\x90\x60\xb9\x04\x39\x15\x90\xd3\x0f\x8e\xeb\xdd\x9e\x2a\x48\x10\x67\x5b\xcd\xd4\xd5\x06\x96\xd1\xf3\x53\x55\x09\x9a\xeb\xe1\x53\x55\x09\x96\x43\xe7\xd4\xad\x06\xda\xcb\x7c\xaa\x2a\xc1\x32\x8a\x7c\x2a\x2a\xc1\x72\x48\x9f\x8a\x4a\xb0\xdc\x65\x31\x15\x95\xa0\x19\x67\x37\x15\x95\xe0\x1c\xe1\x3c\xd5\x94\x60\x19\x1e\x3e\x95\x94\xa0\xe9\x4c\x9f\x3a\xd9\xa6\x47\x7a\xe2\x27\x9b\xaa\x4c\xb0\xce\x30\xa3\xca\x04\xed\xc5\xb4\x68\xea\x4d\x03\xcd\xd8\xa3\xa9\x37\x0d\x2c\x03\xc6\xa7\xce\x34\xb0\x8c\x34\x9f\xca\x53\xb0\x9c\xfb\x4d\xfd\x6b\x60\x19\x03\x3f\x15\xac\xe0\x7c\x63\x60\xaa\x57\xc1\x32\x84\x7f\xea\x48\x03\x4b\x35\x33\xd5\xa6\x60\x39\x77\x9a\x6a\x53\xb0\xdc\x93\x30\x0d\x97\x05\xcb\xa5\xd2\xa9\x5a\x05\xcd\x85\xf7\xa9\x5a\x05\xcb\xa9\xf1\x54\x87\x82\x65\x3c\xf7\x54\x87\x82\x18\xae\xf3\x4d\x85\x28\xd8\x0a\xcd\x9f\x5a\x93\x8b\x83\xcf\x2d\x6a\x55\x27\x88\x57\x3b\x4f\x30\x4f\x8b\x58\x81\xf3\x04\xf3\xb4\x08\x96\x30\x03\x2a\x51\xb0\x7f\x49\x8d\x2b\x45\xc1\xb6\x51\x01\xea\x4e\xb0\x6d\x24\x4e\x95\x09\xb6\x8d\x47\xe8\x24\x03\xcd\x60\x89\xa9\xf2\x9c\x7e\x73\xe0\xbc\x9b\xfa\xcd\x40\xd3\x31\x35\x8d\x78\x05\xcd\xa8\x8d\xa9\x3e\x9d\x9e\x06\xe4\x9e\x83\xa9\x2b\x6d\x7a\x62\xe8\x99\x24\xe8\x4a\x9b\x1e\x19\xea\xb2\xd3\x54\xc7\x82\x66\xe4\xc1\xd4\x6d\x06\xf6\x65\x54\x8d\x41\xaf\xd3\xa0\x57\xb7\x58\x4d\x5d\x69\x60\x5f\x47\x26\x74\x9b\x81\x66\xc0\xc7\x54\x02\x83\x98\xcd\x56\xa3\x06\x06\xb1\xbb\x1e\x6c\xe6\xe2\xed\xd6\xfe\xea\xed\xcc\x05\xfa\xb6\x79\x36\xef\x54\xdf\x82\x7d\x9d\x49\xb1\x62\xdf\x27\x38\xc0\xeb\xcc\xd9\x46\x53\xee\x4d\x05\x2e\xd8\x3f\xa5\xf0\x54\xb8\xa0\xb9\x78\x30\x55\xb8\x60\x5f\x46\x65\xeb\x12\x03\xcd\xc5\x95\xa9\x9c\x05\xfb\x32\xca\x49\x3d\x0b\xfc\xc0\x7e\x4e\xf5\x2c\xd8\x69\xa3\x4c\xf4\x92\x81\xfd\x53\x8a\x5d\x11\x3b\xdd\x2b\x39\x59\x68\x9b\x4a\x56\x90\x9e\x60\x3c\x95\xac\x20\xc2\xed\x12\x53\x9f\x18\x48\x8f\xc8\x9f\x6a\x56\xb0\x2f\xfb\x1d\xdf\x8c\x9c\xba\xd1\x40\xbe\x58\x34\x9c\xca\x5c\xb0\xef\xa2\xcd\x92\xf8\xea\xd7\x27\xd7\x3a\xd6\xc0\xbe\x4c\x9b\xd9\xde\x48\x63\xc6\xa6\x81\xa9\x20\xab\x13\x2c\x7d\x6d\x20\xca\x99\x3e\xeb\x6d\x03\xdb\x46\x21\xaa\x9a\x41\x74\xb7\xc2\x4c\x65\x33\xd8\xd7\x69\xb3\xc0\xb6\x44\xce\xd3\xd6\x94\xc8\xd3\x33\x8c\xdc\xd2\x32\x15\xc4\x20\x9b\x7d\xae\x82\x18\x44\x71\xbf\xe9\x54\x11\x83\xec\x0e\x79\x4a\x5d\x10\xb5\xda\xd2\x8c\x3c\x05\xdb\xe6\xed\xcc\xeb\x46\x7a\xe2\xe4\xd4\xef\x06\xba\xad\x45\x45\x0c\x86\xef\x99\x52\x17\x84\x9f\xa5\x98\x2a\x5d\x10\xe7\x73\xb2\x53\x5d\x0b\x22\x87\xb7\x57\xd8\x82\xc8\x46\x9c\xd6\x54\xd9\x82\x7e\x14\x98\x6a\x74\x6e\xe9\x59\x8d\xe0\x9e\x4a\x4f\xb0\x4b\x48\x9b\x49\x23\x7a\x54\xb7\xde\x54\x7b\x82\xe6\x56\xf9\xa9\xf6\x04\xeb\xe8\x4c\x7d\x73\xf3\x39\xbd\xc7\x2e\xa0\xa5\xd0\x04\x49\x98\xc6\x52\x67\x82\x6e\xe4\xd1\x52\x66\x82\x38\x1f\xc4\x5d\xea\xcc\xe5\x57\x10\x5c\xcc\x58\x0a\x4d\xd0\x3d\x55\x7d\x29\x34\x41\x9c\xcf\x03\x2f\x35\x24\xf8\xf5\x99\x1f\x2d\x9c\x70\xd1\x35\x7d\x35\xb1\x0c\xc9\x6c\x65\xa9\x17\x97\xfb\x27\x71\x73\x2f\xc3\x47\x97\xfb\x27\x35\x19\x2b\x0a\x62\xf8\x15\xb6\xa5\x86\x04\xbb\x3d\x36\x6c\x66\x6a\x23\x3d\xf5\x6f\xe9\xc4\x03\xbd\x7a\x33\x73\xb4\xe1\x22\xc5\x32\x2e\x14\x74\x3f\x4b\xb6\x94\x9e\x2b\xf6\xf4\xc5\xfc\x28\x33\x41\x9c\x82\xd6\x05\xb7\xfc\x38\x82\x9b\xff\x96\xa2\x12\x14\xbf\xdf\xb5\x54\x90\xa0\x9d\xc4\xab\x16\x41\xf3\xfb\x1f\x4b\xb5\x08\xda\xeb\xdc\xcb\x74\x6d\x74\x5a\xe2\x52\x05\x02\xbe\xd7\x9f\x4b\x11\x08\x5c\x3f\x5d\x6e\x95\x04\xe3\xe5\xaf\x4c\x7a\xe1\x24\xc7\x62\x02\xac\x0a\x36\x4a\x9a\x19\x45\x21\x70\xed\x69\xa9\x09\x41\xf7\x5b\x72\xcb\x3d\x91\xc0\x35\xa5\xa5\x24\x04\x71\xbe\x4e\xbd\x14\x80\x20\xce\x57\x9a\x97\xda\x6e\x6d\x21\xb7\xd2\xab\x4c\x15\x67\x99\xba\xfb\x60\xe9\x9e\x5b\xc7\x3d\xc7\xfd\x55\x63\xcb\xcf\xa1\x31\x4c\x2d\xc5\x18\x08\xa5\xfc\xd2\xc5\x06\x7a\x63\x80\x5b\xca\xb3\x45\xe4\xa3\x62\x72\x29\xc5\x40\xa8\xa1\x97\x52\x0c\x8c\x42\xe8\xc5\x52\x32\xad\x73\x9a\x28\x45\xaa\x64\x02\x61\x10\xf2\xd2\x2b\x06\xc2\xb0\xf0\xa5\x8a\x02\x61\x8c\xf6\x52\x32\x81\xee\xba\xdf\x52\x32\x81\x50\xee\x2f\x25\x13\x08\x43\x8a\x97\x92\x69\x25\x3b\xd0\xcf\x13\x4d\x2a\xdf\xcc\x8e\xf3\x44\x8b\x30\x5d\x93\xc1\x64\x80\x22\xa8\x8a\xb4\xa5\xdf\x0c\x4c\xcf\x49\x59\x8a\x1c\x50\xfa\xf9\xa1\x89\xe8\xa9\x1f\x94\x84\xe9\x25\x03\xd5\xaf\x85\x2f\xf5\x0b\x68\x1e\x47\xb7\xf4\x88\x81\xf6\x3a\x3f\xb4\x0d\x76\xa7\xfa\x9a\x6c\x71\x9d\x73\xed\x11\x04\xcb\x80\x42\xd0\x4e\xbe\xf5\x88\x81\x28\x8e\x77\x4b\x45\xb3\x3c\xde\xe6\xe4\x5c\x49\x03\xa2\x56\x86\xf4\xa5\xa4\x01\xdd\x0e\x4d\x41\x03\x76\x77\xf6\x9b\x83\xf2\x52\xee\x80\x3d\xda\x7b\x13\xfb\x8b\x41\x7f\xa1\xc5\x62\xd9\xe8\xa7\x8c\x8d\x35\x04\x8b\x25\xe5\xa5\x26\x02\x2b\xbd\xc6\x42\x19\x1e\x80\x4f\xa1\xa8\x7f\x40\x77\xa1\x6a\xa9\x7f\xc0\x3a\xf9\xb7\x98\x38\xfa\xc6\xd0\x84\xa5\xfc\x01\x67\xf2\xba\x94\x3f\xa0\xbb\x74\xb5\x94\x3f\xc0\x5d\x0a\x4b\xf5\x03\x56\xfa\x33\x0b\x6d\x63\xe1\xff\x5a\x46\x17\x82\x45\x9c\xc8\x52\x0d\x81\xee\x42\xd9\x52\xd4\x80\x48\xa3\xd8\x96\xaa\x06\x84\x27\x1a\x2e\xfd\x6b\xcb\xf8\x40\x7b\x56\x55\x0d\xe8\xea\xce\xa5\xaa\x59\x1e\x7a\x6a\x17\xa2\xaa\x01\xdd\xbd\xf0\xcb\xf0\x40\x10\x7e\xcc\x63\xa9\x6a\x96\xd1\x81\xcc\x18\x96\xaa\x06\x44\x1a\x89\xb4\x3c\x89\x06\x84\x07\x46\x2f\x9d\x70\xa0\xbb\x39\x7d\x29\x7e\x40\xf7\x9c\xee\xa5\xf8\x01\xe1\xb7\x3c\x96\xda\x07\x44\x96\x69\x62\xcd\x25\x42\xc7\x83\x82\x96\x3a\x07\x44\x9c\x2c\x99\x4b\x02\xff\x52\x79\xbd\x14\x3a\xa0\x7b\x38\xea\x52\xe7\x80\xee\x39\x16\x4b\x8f\x1b\xe8\xee\xdf\x5f\x2a\x1f\x10\x7e\x8b\x64\xe9\x71\x03\xe1\xa9\xaa\x4b\x2d\x04\xc2\x73\x2c\x96\x52\x08\x74\xcf\xe9\x5f\x4a\x21\xd0\xcb\xb9\x97\x65\xc1\x61\x35\x7e\xd7\x64\x29\x67\x40\xe4\x38\xf7\x37\x97\x97\x6e\x2d\x2f\x33\x97\xc8\x19\x17\xec\x96\x6a\x06\x44\xfa\xf1\xba\xa5\x9a\x01\x5d\x4f\xda\x32\x2e\x10\x9c\x0f\x01\x2d\xf5\x0d\x08\xd7\x2e\x97\x6e\x3f\xd0\xf5\xf1\x2c\x25\x0f\xe8\x8d\xb5\xb3\xa5\xe2\x01\xe7\x23\x2f\xcb\xa0\x40\x10\x5d\xb7\xd5\xd2\x13\x08\xa2\x4d\x5b\xb1\xae\x40\x10\x2e\xe1\x2d\xb5\x12\xe8\xcd\x6e\x50\xa9\xb4\x94\x4a\x8e\x84\x2a\xa5\xe5\x17\x1c\xec\x3a\x14\x4a\xa0\x3b\x47\x5c\xea\xa4\x75\x3c\x81\xa4\xdf\x60\x42\x70\xbe\x16\xb0\x94\x49\xe0\x7c\x47\x62\xe9\xf5\x03\xe7\x33\x12\x4b\xaf\xdf\xd2\xeb\xa7\x17\x60\xa9\x9c\x40\xb8\xec\xb9\x54\x4e\x20\x9c\xf4\x2f\x85\x13\xe8\x6d\x7a\x7f\xcb\x82\x13\x5c\x1b\xcb\x14\x4b\xdd\xb4\xfc\xde\xdb\xaf\xf7\xb7\x2c\x3e\x84\x3f\x14\x7f\x69\x59\x28\xa5\x9c\x88\xe9\x0f\x04\xe7\xa3\x45\xcb\xe8\xc2\xe5\xa1\x33\xc5\x5c\x5a\x16\x1f\xce\xf4\xb2\x46\xd4\x5b\xa0\x37\x64\xe4\xd2\x45\xb8\x3c\xec\xd5\xd9\x8b\x0a\x0c\x84\x4b\xfe\x4b\x05\x06\xc2\x95\xef\xa5\xc2\x02\xe1\x32\xf7\x52\x61\x81\xd0\xd1\xb4\x54\x53\xe0\x7c\x05\x63\x29\xa6\x96\xdb\xfc\x6c\x9c\x8a\xa9\xf5\x3d\x45\xe1\xcd\x2c\x0a\xd4\x94\x2b\x42\x4b\x31\x05\xba\x1e\x91\xa5\x96\x02\x31\xce\xfd\x2d\x8a\xaf\xf3\x60\xd3\x6a\x51\x70\x3a\xce\x99\x7e\xa9\xa4\x40\xf7\x60\xae\xa5\xb3\x11\xf4\x33\x77\x55\x48\xad\xfb\x9c\xc6\x81\xc9\x4c\xde\xc8\x10\xeb\x43\xcf\x22\x08\x17\x89\x96\x9e\x45\x10\xae\x8d\x2d\x95\x15\x08\x57\xaa\x96\xc2\x0a\x74\xbd\x51\xcb\x18\x47\x10\x2e\x12\x2d\xb5\x16\x88\x54\x5b\x2d\xd5\x16\x28\x71\x1e\x69\xbe\x6f\xf2\x5d\x7f\xc7\xb1\x62\x4b\xf7\x24\xe8\x67\xc2\xa9\x66\x03\x91\xdd\x26\xa2\x68\x03\xbb\x53\xd6\x66\x59\x3d\x96\x15\x29\x57\xc7\x81\xae\x97\x74\x29\xe3\x40\x3f\x33\x28\x55\xdc\x52\xc5\xd9\x43\xea\x9f\x04\x7d\xfa\x52\xe9\x9f\x5c\x7e\xda\xce\xe6\xac\x7f\x12\x74\x9d\xa4\x4b\xff\x24\x88\x5c\x8e\x50\x4a\x42\x10\xdd\xa3\x91\x97\x1e\x4a\xd0\xf5\x91\x2d\x65\xe2\x3a\x9b\x0c\xa9\x7e\x55\x22\xe8\x3a\x15\x97\x2a\x11\x74\x7d\xc1\x4b\x95\x08\xfa\x3c\xb7\xb7\xcc\x8c\xe0\xa4\x78\x2e\x7d\x96\xa0\x2b\xf5\x2e\x7d\x96\x20\x5c\x53\xbd\x94\x92\x97\x87\xf8\x78\x3a\xc2\xa5\x98\x04\xe1\x9a\xed\xa5\x53\xf1\xd2\xa9\xb8\xbc\xff\xa5\x89\x89\xf5\xb9\xea\xad\xc9\xf0\x89\xe5\x33\x3f\xda\x68\x25\xe4\xf2\x52\x25\x82\x48\xcf\x80\xba\xd4\x84\x60\xf8\xf9\xdd\x4b\x4d\x08\x4a\xf0\x5e\x5d\x4a\x42\xb0\xbb\x73\x1e\xe0\xfe\x41\x50\x3c\x8c\xf9\x52\x12\x82\x61\x63\xb9\xd4\x84\x60\x14\x3a\xd7\x4b\x51\x78\x79\x68\x0e\x2f\xc3\x65\xa4\x27\x28\x41\xbf\x70\xa9\x13\xc1\x28\x74\xfa\x97\x2e\x4a\x50\xe2\xfc\xd0\x5c\x86\xef\x82\x4f\xbc\x35\x21\x7c\x79\x3d\x2e\xe5\x24\x28\xee\xe7\xbb\x54\x93\xa0\x04\xef\xda\xa5\x8b\x12\x44\x9b\xf4\xad\x97\xfe\x48\x50\x82\x9e\xe8\x52\x61\x82\xad\x4d\x79\x80\x12\x13\x94\xb0\x82\x95\x98\x20\x72\x32\xf8\x5f\x8a\x4c\x50\x82\x9e\xe1\x52\x65\x82\x5d\x27\xa6\xcd\x7c\x72\x24\x4f\x76\x6b\x40\xa5\x09\x76\x0d\x78\x9d\xf5\x59\xcc\x29\x97\xe9\x34\x04\xc3\xfd\xc4\x97\x1e\x42\x70\xce\xbf\xba\xf4\x10\x82\xe2\x37\x5f\x2e\x55\xe4\xa5\x87\xd0\xe6\xa8\x87\x10\x9c\x13\xc9\x2e\x3d\x84\x60\x18\xd4\x75\x29\x36\x41\xe9\xe7\xf6\xa6\x8b\xcd\x7c\xe9\xd9\x46\x97\x02\x14\x8c\xc9\xe4\xf7\x52\x80\x82\xe2\x42\xd2\x65\x2c\xe8\xe5\x71\x38\xf4\xcc\x97\xb1\xa0\x60\xcc\xae\xc9\x4c\x36\x42\x1f\x4c\xab\xca\x15\x0c\xcf\x5d\xbb\x54\xae\x20\x9a\x41\xcc\x97\xd1\xa1\xa0\x74\x66\x5f\x97\x6a\x16\x9c\x7d\x72\x97\xbe\x46\x30\x8c\x13\xbe\x14\xb8\xa0\xd8\xb3\x5c\x0a\x5c\x50\xba\x99\xd4\xb1\x08\x86\xe1\x78\x97\x9e\x43\x30\x0c\x89\xb9\x14\xb8\xe0\x9c\xf2\x74\x29\x70\xc1\x98\x2c\x0f\x5f\xba\x09\xc1\x98\xcc\xf9\x2f\x35\x2f\x18\x9e\xcd\x7e\xa9\x79\x2f\xf7\xef\x79\x1c\xf5\xa5\xe8\x05\xe7\xbc\xc5\xcb\xd3\x70\xc0\x98\xbe\xf8\xea\x60\x30\x26\x02\xe2\xd2\x75\x08\xce\x81\x95\x97\xae\x43\x10\xe9\xf1\x66\x97\x72\x19\x94\x7e\xd2\x6f\x8b\x4d\xa2\x1a\x9a\xe9\xb7\x2c\x54\xd0\xdd\x54\x58\x16\xe9\x17\x6e\xbc\x97\xcd\x82\x8f\x76\x78\x10\xe1\xa5\xeb\x10\x9c\x63\xab\x2e\xa5\xf7\xe5\x47\x3b\x6c\xaf\x4a\x6f\xb0\x65\x12\xe5\xa3\xf6\xbe\xd4\xde\x55\x93\x45\xd6\x8d\x1a\xb6\x91\xe9\x61\x04\xe7\xf8\x81\x4b\x89\x0e\xc6\xb4\x2e\x0d\x6d\x05\xc5\x83\xdf\x2f\x45\x3b\x38\x47\x30\x5e\xfa\x21\x41\x1c\xa5\x7d\x29\xe4\xc1\x70\xfd\xfb\x52\xc8\x83\xd2\x7f\xcf\xf8\x7c\xa9\xf3\x41\xb4\xc5\x8c\xe4\xd2\x75\x09\xc6\xe9\x51\xd4\xfe\xe0\x1c\x36\x76\xa9\xfd\xc1\x1e\xc6\x29\x40\xc5\x3f\x18\xd3\x5a\x54\xfb\x5f\xe3\x14\x20\xd5\xa8\xfc\x06\x55\xf1\x7b\x29\xbf\xc1\xf4\x74\xd8\x4b\xfd\x7d\xf9\xed\x70\x77\x8e\x5d\x3a\x25\xc1\xf4\x60\xd6\x4b\x51\x0e\xa6\xdb\x22\x2e\x45\x39\x98\xee\x6f\xb9\x14\xe5\x97\x67\xfd\xf8\x7e\xa8\xca\xc1\xee\xea\xbc\x99\x8d\x82\xaf\x0a\xea\x5a\xbf\xd4\xe0\x60\x77\xd7\xa4\x56\x15\x0e\x76\xa6\xf8\xa9\x3a\x1c\x4c\x4f\x1c\xbe\x14\xe2\x60\x7a\x12\xf2\xa5\x13\x12\x44\x2a\xdf\x2e\x5d\x8e\x20\xba\x3b\xdd\x2f\xa5\x38\x98\x1e\xaa\x7a\xe9\x60\x04\xd3\xb3\x90\x2f\x03\x62\x2f\x8f\xed\xb1\x9f\x54\x9d\x83\x31\xd9\x38\x72\xa9\xce\xc1\x34\xba\xf9\x52\x9d\x83\xa5\x2e\xbe\xf4\x39\x82\xe8\xcb\x0c\xa8\xd8\x41\x35\x1e\xe1\x52\xb1\x83\x69\x78\xf3\xa5\x62\x07\xd3\x73\x6a\x2f\xa3\x66\x2f\xcf\xe8\xb1\xed\xab\xe1\x41\xf4\xd3\x91\x29\xe2\xc1\xf4\xc4\xe7\x4b\xc5\x0e\xa2\x9d\x8e\x52\xc9\x0e\xaa\xbe\xfa\xcb\xb8\x59\x50\x0d\xca\xb8\x74\x60\x82\x69\xc4\xf6\xa5\xae\x07\xb3\x9d\x7b\x59\x3e\x8b\xd0\x19\x5b\xb2\xba\x1e\x4c\x4f\x13\xbe\x94\xf5\x97\x5f\x33\xf1\xb4\xd1\x4b\x5d\x0f\x76\x7b\x24\x03\x0a\x7b\x30\x3d\x18\xfa\x52\xb2\x83\xe9\x1e\xac\x4b\xc9\x7e\x79\x5c\x8f\x5d\x8d\x92\x1d\x54\xfd\xfe\x97\x9e\x4a\x30\xdd\xf2\x73\xe9\x95\xbc\xfc\x46\x49\x3f\x49\x33\x9b\x97\x8d\xdb\x5f\x9a\xa7\x8b\x3c\xd9\xc7\xaa\xe2\xc1\xf4\xd0\xe4\x4b\x15\x7f\xf9\x15\x75\x7b\x37\x45\x3c\x58\x6e\x29\xb8\x14\xf1\xa0\x9e\x4c\x2a\xe2\x41\x75\xab\xd0\xa5\x88\x07\xcb\xa5\x9c\x4b\x11\x0f\x96\x01\x98\x97\x22\x1e\x2c\x17\x21\x2e\x45\x3c\x58\x3a\x6c\x2e\x35\x3c\x58\xee\xd5\xb8\x94\xf0\x60\xb9\x38\x72\x29\xe1\xc1\x72\xc7\xc2\xa5\x84\x07\xcb\xad\x0e\x97\x12\x1e\x54\x3f\xda\x70\x29\xe1\x41\x75\xed\xe2\x52\xc2\x83\xea\x7e\xab\x4b\x57\x27\x58\xee\x2b\xb9\x54\xf5\x60\xb9\x96\x7d\xa9\xea\x41\x75\xef\xfc\xa5\xf3\x13\x54\xb7\x78\x5d\x0a\xfd\xcb\xcf\xb8\x2b\xce\x2f\x95\x3e\x58\x86\x0f\x5f\xaa\x7a\xb0\xdc\xdd\x72\xa9\xea\xc1\x72\xdb\xda\xa5\xaa\xbf\x3c\xe2\xc7\x8a\x54\xd5\x5f\x1e\xf1\x33\xbc\xca\xd2\xe1\x88\x1f\x17\xb0\x2e\x45\x3d\x58\xee\x33\xb9\x14\xf5\xa0\xe6\xf0\x89\x96\x8e\x47\xfc\xf8\x52\x2a\xea\x41\x1c\xa7\xe0\xa5\xaa\x07\x31\xaa\x65\xad\x3a\xbf\xfc\x14\xbb\xbb\x34\x2f\x9d\x9d\x60\x19\x76\x78\x29\xcf\x41\x73\x53\xd3\x65\x9c\x2f\x68\x6e\x12\xbf\x54\xec\xa0\xe9\xe0\xba\x54\xec\xe0\xff\x66\xec\xbc\x8e\xae\x57\x61\x00\xd8\xd2\x11\x41\x40\x39\x8e\xfd\x97\x70\x87\x5d\xff\xcf\xf7\x7b\xda\x19\xe6\x04\x83\xe3\x5a\x42\xac\xf9\x7d\xd1\x6e\x6e\x2c\xf3\x8f\x0f\x85\x1d\x2c\x05\xf3\x50\xd8\xc1\x32\xe9\xf3\x50\xd8\xc1\x9a\xdf\x3f\xda\x4d\x26\x20\xaa\x97\x87\x09\xc3\x60\xa9\x67\x87\x0e\x0f\x96\x5a\x7f\xe8\xf0\xa0\x39\x3b\xfe\x30\x3e\x0a\x96\x5a\x7f\xa8\xf5\xa0\xfd\xbe\xdf\xf2\x18\x60\x52\x62\x2f\xf5\x0f\x31\xe6\x43\xed\x07\xcb\xf4\xd8\x43\xed\x07\xcd\xfa\x05\x87\xda\x0f\x96\x0e\x79\xa8\xfd\xa0\x39\xd3\xff\x50\xfb\xc1\x32\x93\xf7\x50\xfb\xc1\x32\x9e\x77\x68\xfd\x60\x7d\x5a\xa9\xf5\x83\x65\x54\xf4\x50\xeb\xc1\x32\x2f\xf5\x50\xe1\x0f\xcb\xfd\xf8\x92\xf9\xd0\xd7\x41\x34\xa3\xda\x87\xc2\x0e\x96\x11\x95\x43\x61\x07\xf1\x33\xd4\x73\x68\xec\xa0\x59\xcd\xe4\xd0\xd8\xc1\xfe\x18\xc3\xac\xb2\x83\xdd\xe6\xcf\x39\x1c\x38\xfb\xcf\x77\x7b\x87\xce\x0e\x76\x1b\x03\xa2\xb3\x1f\xdf\xec\x49\x9f\x1d\x95\x76\xd0\xac\x05\x72\x68\xe8\x60\x7f\xd5\x8f\xd9\x7f\x92\x88\xbb\xd9\x32\x87\x8e\x7e\x7c\x91\x5c\x8e\xce\x53\x23\x07\xbb\x6d\xd1\x56\x6c\x2b\xb6\x0d\xda\xaa\x6d\xe6\xc1\x70\x9c\x9d\x06\x73\x41\xfc\x7c\xed\x77\x1a\xb9\x05\xbb\xcd\xff\x98\xb6\x4d\x36\xd9\xbf\x58\x36\x99\xf4\xd2\x68\x3a\x6d\xb2\x63\x49\xd3\x65\x13\x19\x3f\x44\xf5\x4f\xd5\x1d\xc4\xcc\xe9\xb6\xbd\xb6\xd9\x2f\x0e\xe5\xd3\x94\x60\x10\x61\xea\xe4\xa9\xcf\x83\xe8\x95\x07\x94\x53\x79\x07\xfb\x73\xf4\xc1\x18\x2f\xd8\x6d\x7e\x2e\x6d\x33\x37\x84\x07\x86\x53\x7f\x07\x11\x3f\x2e\xc0\xa7\xb6\x0e\x76\x1b\xdb\xe7\x5c\x4d\xb0\xbf\xcb\xd8\xa9\xf0\xe7\x37\x57\x93\x1b\xd4\x69\x4e\x31\x68\x46\xf7\x4e\x1d\x1e\xec\xaf\xfa\x73\x76\x97\x98\xf0\xb4\x12\xf8\xa9\xc5\x9f\xe5\xeb\x2e\xdf\x55\xe3\xc1\xfe\x0b\xc6\x5d\x8d\x07\x11\xa6\x5d\x9c\x7a\x3c\xe8\x2e\xed\x7d\xaa\xf1\x60\x7f\x8c\x11\x30\xb1\x18\xec\x36\x7a\xa1\xdb\x83\xdd\xc6\x7e\x34\xb3\x18\xec\x4d\xb1\xcd\x11\xd8\xe8\xbf\xf4\xe7\x1c\x00\xdd\xde\xf8\xc8\xa9\xdb\x9f\x2e\xeb\x62\xfd\xd2\x53\xb7\x07\x11\xe6\x42\x9d\x06\x92\x4f\x17\x76\xb1\xe2\xee\x69\x28\x19\xec\x36\x7e\xcf\xfc\x62\xd0\x4d\x36\x3a\x0d\x26\x83\xfd\x31\x7a\x6b\x30\x19\x34\x63\xaf\xa7\xca\x0f\xba\xb5\x55\x4f\xfd\x1e\x44\x31\x9d\xe6\x54\xf0\x4f\x66\x76\x16\x5f\x00\x9f\xda\x3c\xe8\xe9\x1e\xd3\xe6\x41\x34\x97\x15\x3a\x75\x77\xd0\x93\x27\xcb\x53\x77\x3f\x8d\x3a\xaf\xf0\x63\xee\x89\xf6\xd5\x23\xf0\x73\xee\x09\xa6\x76\x0e\x0b\x77\x9e\xda\x3b\x88\x6a\xfa\xdd\xa9\xbe\x83\xdd\xe6\xe7\xdc\x13\x4c\xee\x6c\x16\xb0\x3b\xcd\x0c\x3e\xa9\xc2\x53\x7d\xd1\x75\xaa\xeb\x20\x6a\xad\x7e\xce\x61\x27\x6c\x5d\x7d\xb2\x3b\x8d\x5b\x83\x68\x93\xcb\xe0\xa9\xd7\x9f\x5b\xe2\x7d\xb7\x70\x2a\xec\xc0\xe5\x77\x4f\x7d\x1d\x0c\xaf\x44\xda\x3a\xf0\x06\x78\x2a\xeb\x20\x7d\xaa\x3e\x95\xf5\xb3\x13\x04\xf5\x43\x76\x88\xa9\x9d\x56\x34\x3e\x35\x6e\x10\x56\x79\x3d\x35\x6e\x10\x96\xc7\x3e\xd5\x6b\x10\xc6\xac\x4f\xbd\xf9\x74\xae\xa7\xd7\x16\xbd\x19\x84\xea\x70\xaa\xcd\xa7\xd3\x3f\x79\xe0\x39\xd5\xe6\xd3\x25\x5f\x78\x3b\x76\xaa\xcd\x20\x86\x13\xfa\x4e\x25\xf9\xfc\xb7\xb0\x3e\x9b\xa1\x24\x83\x30\x2b\xf3\x54\x79\x41\x89\xe5\x7f\xda\x25\x8c\xb7\x7c\x7f\x60\x97\xd2\x32\x59\xe9\xd6\xba\x87\x58\x29\x73\xe6\x1f\xf4\xfa\x54\x88\x41\xf9\x76\x8d\x42\x0c\xaa\x09\xdd\xa7\xb1\x70\x30\x7c\xe7\x76\x1a\x0a\x07\xd5\x24\xec\xd3\x58\x38\x88\xe6\x03\xfc\x69\xb8\xfb\x34\xbb\xb7\xf8\x31\x47\x66\xe8\x59\xee\x1f\x85\x1b\xac\xf9\x7d\xcc\xc1\xb2\xb6\x0e\x0f\xf5\xa7\x72\x0d\xba\xb7\xc3\x53\xb9\x06\xfb\x7c\xf6\x63\x0e\x96\x75\x74\xb2\xfb\x39\x47\x6b\xa3\xbb\x50\xf8\xa9\x4a\x83\x6e\x10\xe3\x34\xc2\x0d\xac\x11\x78\x2a\xd7\x20\xbf\xeb\xaa\x6e\x0d\xe2\xab\x73\x70\xea\xd6\xc0\x27\xc1\x53\xb5\x06\xf9\x5d\xb8\x0d\x72\x03\x6b\xbb\x9f\xa6\xf7\x9e\xe4\xf2\x7a\xe5\x35\xea\x0d\x56\xba\x4d\xf6\x70\x7a\x80\xdb\x64\x07\xa7\x07\xb8\xbf\xe4\x9e\x37\xe6\xed\xed\x49\xab\x06\x61\x45\xfb\x53\xab\x06\x31\x7d\x2d\x70\xaa\xd0\x20\x4d\x04\x3d\x55\x68\x90\x8d\x67\x87\x53\x5f\x06\xd9\x78\xb1\x7b\xea\xc6\x20\xb4\xd2\xd3\x00\x37\x08\x6d\xf3\x54\x97\x4f\x75\xd9\xfb\x9c\xb6\x0c\xc2\x77\x24\xa7\xb6\x0c\x42\x01\x3d\xb5\x65\x10\x7a\xf0\xa9\x2d\x83\xc8\xf4\x00\x50\x97\xcf\x65\xe2\x8c\x3d\x57\x7a\x4f\xe7\x8f\xfa\x28\x61\x34\xfb\x74\xfe\xa8\xe7\x94\xd1\x6c\x10\xe6\x30\x9f\xaa\x31\x08\x13\xcf\x4f\xd5\xf8\x74\xe9\x15\x9f\x54\x54\x63\x30\x8a\xc3\x63\x34\x1b\xa4\xaf\x88\x4f\x93\x78\x4f\x93\x78\xad\x8c\x75\xaa\xc6\x60\x14\x62\x11\xa7\xa5\x6f\xc0\xb0\x54\xe5\xa9\x2d\x83\x12\xde\xf1\x54\x63\x50\x9c\x7c\x79\x2a\xbd\xa0\x84\x9d\x54\x7a\x41\x09\x9f\x97\x94\x5e\x50\x8a\x37\x72\xa5\x17\x94\xb0\x93\x1a\x2e\x28\xae\x3c\x7e\x6a\xb8\xa0\x14\xef\x93\x2a\x28\x28\x66\x4f\x9e\x2a\x28\x18\x33\x6d\xf2\x8c\x61\x86\xa9\x2f\xad\x4e\x15\x14\x14\xcb\xe0\x9c\x2a\x28\x88\x8c\xef\x63\x6e\xfe\xc5\x7c\x45\x8f\x44\x63\xcd\xa0\x58\x7a\xe7\xd4\x4a\x41\xf9\xee\xaf\x5a\x29\x28\x7a\xde\xa9\x6f\x82\xd9\x3c\x91\xf4\x4d\x30\x9d\xbe\x7e\xea\x9b\xa0\x3a\x21\xe4\xd4\x37\xc1\x74\xda\xf8\xa9\x6f\x82\x69\x09\x80\xd3\x88\x31\xa8\xce\x11\x39\x8d\x18\x83\xe9\x84\xf9\xd3\x88\x31\xa8\x4e\x11\x39\x75\x52\x50\x9d\xc2\x71\x1a\x31\x06\xd3\x99\xf0\xa7\x96\x0a\xf6\x15\xcc\x8f\xd9\x6f\x0a\xc8\x9a\x62\x72\xaa\xa9\xa7\x05\x64\xad\xf9\x7a\xea\xa9\xa7\xc5\x62\x1d\x44\x45\x12\x34\x8b\xcc\x9d\x8a\x24\x68\xa6\x66\x9f\x8a\xe4\xa9\x48\xfa\x29\x45\xf2\x54\x24\x7d\x0a\x52\x24\x41\x33\xcf\xf9\x54\x24\xc1\x32\xe6\x79\x2a\x92\xa0\x99\x96\x7d\x2a\x8a\xa7\x56\xc8\x4b\x94\xd3\xd4\x5b\xd0\x7e\xdf\x17\xdd\xfa\x47\xcb\xe6\xd0\x57\x14\x41\x33\x29\xfd\x54\x14\xc1\xb4\xea\xc0\xa9\x28\x82\x66\x3a\xff\xa9\x28\x82\xe6\xdc\x80\x53\x2b\x04\xcd\x1c\xfa\xd3\x60\xef\x69\x82\xee\xcf\x07\x2c\x4d\x11\x34\x33\xef\x4e\x63\xbd\xe7\xfb\x3d\x37\xda\x66\xc7\x5f\xdf\x2f\x78\x44\x69\x85\xa0\x37\xcf\x5d\xad\x10\xf4\x7d\xbb\xfb\xff\x9b\xb2\x7e\x08\xbe\xc3\x59\x13\x04\xd6\x87\x3a\x95\x39\x10\xe9\xe3\xf8\xa5\xcc\x5d\x5f\x78\x75\xd2\x54\x6d\x22\x0e\xc6\xe3\xc5\x65\x5e\x2e\x28\xae\xea\x7d\x69\x72\x97\x25\x5c\xcd\xb5\xba\x34\x39\x50\xbc\x4b\x5f\x8a\xdc\x65\x19\x1d\xee\x8f\x97\x22\x77\x59\x46\xa7\xf9\x97\x87\x4d\xbe\xf9\xf4\x53\x97\x4d\xbc\x12\xe4\x32\x71\x29\x72\xa0\x99\x92\x7f\x99\xa9\x0b\x9a\x79\x0c\x97\x6a\x07\x3c\xfd\x2f\xc5\x0e\xa4\x0f\x14\x97\x5e\x07\x06\x6e\x7e\x19\xa6\x05\xe9\x3e\xbd\x14\xbd\x2b\xbe\x9d\xc5\x36\x28\x7a\x60\xb7\xf9\x39\x87\x22\xcc\x44\x63\xeb\x75\x3f\xb0\xbe\x2f\xda\x45\x8c\xce\xf7\xf7\x97\x01\x58\x10\x63\x3a\xf8\xda\x1b\x88\x36\xa7\x3f\x66\x8f\x82\xf7\x78\x5c\x44\x2f\xe5\x0d\x44\x57\xe8\x2e\x33\x7a\x81\x97\xc2\x4b\x75\xbb\x5c\x14\xc5\xd7\xd3\x97\xea\x06\x06\xde\x7f\x69\x6e\x20\x7d\x21\x7e\x29\x64\x97\x0b\x6f\x72\xf5\xbd\xf4\xb1\xcb\x55\x36\xbf\x8d\x70\xfb\x75\x2f\xec\xe6\x52\x9f\xc0\xb4\xf8\xc6\x65\x76\x2e\xa8\x4e\xfd\xba\x8c\xb4\x82\x65\x4e\xde\x65\x0c\x15\xf4\x1f\x97\xc2\x4b\xa1\x02\xde\x01\x2e\x43\xa8\xc0\x27\x91\xcb\x39\x96\x60\x84\xdf\x3a\x6d\x39\xd9\x8f\x8c\x9f\x1a\x06\xe6\xb7\x01\x8e\x72\xfd\x6c\x90\x26\x07\xb9\x7e\x73\x2a\x76\x93\x5a\x76\x35\xab\x21\xb2\x99\xfa\x16\xc8\xc6\xdd\xf8\x52\xb7\x2e\xd4\x4a\xc3\xb9\x34\x2b\x90\xcd\x33\x48\xb1\xba\x4c\xfc\x6d\x7e\xd1\xde\xb8\x72\x48\x0e\xdb\xec\x4f\xfb\xca\x9e\xb0\x65\xba\x16\x08\xa7\x57\x5d\x06\x4b\x41\x1a\x97\xbe\xb4\x2f\x10\x4e\x9c\xba\x94\xaf\xcb\x04\x61\x2e\x2c\x97\x9e\x05\x4a\xc1\x78\x2f\xe3\xa7\xa0\xb8\xe8\xfd\xa5\x7b\x81\x48\x9f\xca\x2f\xed\x0b\x8c\xb2\xfc\x98\x3d\xef\x3e\x28\xb0\x3f\xf4\x2f\x30\x0a\xcf\x4c\x97\x91\xd1\xcb\xa4\xe1\xef\x8b\xf6\xbc\x13\xe5\xf3\x28\x51\xc0\xae\x6d\x5b\xc5\xe7\xef\xcb\xf8\x26\x88\x3e\xbc\x2a\x18\xcd\x04\x25\x51\xb7\x4b\x03\x03\xcd\xa9\x40\x97\x06\x06\x96\x39\x2f\x97\x06\x76\x51\xc0\xd4\x39\x59\x97\x21\x49\x10\x3f\x93\xbf\x2e\x75\x0b\xf4\x9f\x17\x35\x6d\xeb\xca\xaf\xd4\x22\x5b\xab\x5b\x81\xae\xa8\x5d\xba\x15\xd8\xa6\xeb\xaf\xd9\x83\xa4\xf4\x94\xa3\xed\xdc\x48\x30\x10\xa5\x4b\x77\xba\xac\xad\xc3\x67\xf4\x24\x90\xd6\x85\xbc\xf4\x24\x90\x96\x76\xbc\x0c\x25\x02\x55\xee\xd2\x75\x2e\x53\x79\x3d\xb7\xf5\x9a\xcb\x54\x5e\x2f\x74\x86\x08\x2f\x13\x77\xdd\x04\x2d\x03\xec\x23\x91\x6d\x37\xa8\x07\xb2\x74\x3f\xe6\xe0\x4c\xaf\x0a\xec\x0f\xdd\x03\xa4\xcb\x56\x5d\x46\xf9\xc0\x57\x3c\xfa\xd2\x47\x40\xba\x66\xd8\xa5\x8f\x5c\xfa\x88\x03\x6d\x5a\x2e\x48\x97\x29\xbb\xf4\x91\xeb\xcb\xc1\xe5\x02\xa9\x8f\x5c\x84\xf4\x5c\xd3\xe9\x52\x47\x2e\x75\xc4\x63\x47\x1d\x01\xe9\x22\x6e\x97\x11\x3d\x10\x26\x8b\x5c\x1a\x0a\x48\xd7\xc9\xba\x74\x0f\x10\xd3\xf7\x4e\x97\xf2\x01\xb6\x2f\xfc\x61\xd2\xf3\xa5\x89\x80\x98\xaa\xe8\xa5\x8a\x80\xec\x1e\x0d\x9a\xc8\x65\x29\xce\xb9\xfc\x37\xfb\x4c\x0d\x9c\xce\x03\xc7\x65\xe4\x0e\xa4\xa5\x33\x2f\x03\x77\x20\xcc\x39\xb9\x54\x18\x90\xdd\x9b\xb4\x0a\x03\xb2\x7b\x51\x50\x61\x40\x5a\xad\xf3\x52\x61\x40\x5a\xbc\xe8\x52\x61\x40\x76\xef\x09\x2a\x0c\xc8\xee\xd9\xae\xc2\x80\x74\x0a\xd5\x65\xc0\x0f\x84\x31\xde\x4b\xab\x01\xd9\x3d\xf5\x8c\x01\x82\x30\x46\x7a\xe9\x39\x20\x7d\x0a\xba\xf4\x1c\x90\xdd\x0b\x9f\x9e\x03\xb2\x79\x7d\x31\x2a\x08\xd2\xfc\xad\x4b\xf5\x01\xd9\xbd\x21\x1b\x15\x04\x61\x24\xfb\xd2\x86\x2e\xf3\x78\x3d\x2a\x55\x9f\xcb\xa4\x5d\x04\xe9\x52\x7d\x40\x76\x5e\x16\x5c\xc6\xfb\x40\x18\x9a\xbc\xb4\xa1\xcb\x9c\x5d\xcf\x62\x83\x7b\x97\x6b\x73\x24\x4f\xda\x97\xa2\x73\xb9\x46\x63\xf5\xc2\xad\xe9\x80\xe8\xe9\xdd\x42\x61\x01\x69\xe6\xcb\xa5\xb0\x80\x34\x01\xe4\x32\x8c\x06\xd2\xbc\xa0\xcb\x30\x1a\x48\xd3\x7b\x2e\xb5\x06\xa4\xc9\x30\x97\x5a\x03\xd2\x64\x88\x4b\xad\x01\x69\xe6\xc8\xa5\xc3\x80\x34\x61\xe9\x32\x64\x06\xd2\x40\xfc\xa5\xd6\x80\x34\x8b\xe2\x52\x6b\x40\xe4\x77\x7f\xd7\x6b\x40\x38\xf7\xe2\xd2\x6b\xae\x9b\x94\x46\x77\x89\xc2\x02\xd2\x54\xa4\x4b\x61\x01\x69\x7a\xc9\xa5\xaf\x80\x34\x09\xe8\x32\xae\x06\xc2\x49\x68\x97\x71\x35\x90\x26\xe9\x5c\xc6\xd5\x2e\x13\x61\xbd\x6c\x2b\x3a\x97\x29\xae\x5e\xb5\x15\x1d\x90\x66\x22\x5d\x9a\xc8\xf5\x7c\x92\x6f\x9b\x5b\xc1\x72\x8c\x2e\x69\x7d\xe9\x1d\x60\x5f\x47\xf9\x4f\xc5\x03\x14\x17\x93\xbe\xb4\x0c\x30\x8a\xa7\xb3\xe1\x28\x50\x5c\x50\xfc\x52\x3c\xc0\x28\x1e\xd7\x8a\xc7\x65\xed\xcd\x74\x33\x14\x0f\x50\x5c\x30\xfe\x52\x3c\x2e\x97\x68\xf4\xb4\x34\x1a\x05\x8a\x2b\xcd\x5f\x3a\x06\x28\xae\x17\x7f\x19\x78\x02\xa3\x78\x0e\xea\x15\x20\xcd\x7e\xb9\x0c\x3b\x81\x51\xbd\xa8\x18\x61\x02\xc5\x25\xd8\x2f\x23\x4c\xa0\xb8\x84\xf9\xa5\x7f\x5c\x2e\xd1\xc8\xd9\x75\x9b\xf0\x09\x46\xe5\x62\x77\x6b\x24\xa0\xb8\x5a\xfc\xed\x74\xbf\xdb\xba\x32\xec\x91\x5b\xd5\xb8\x3f\xd5\xf0\x53\xa7\x4d\x24\x52\x31\xdd\xea\x56\x22\x6e\xcb\xc3\x70\x5f\xbb\x95\x88\xdb\xf2\x30\xc3\xdf\x7a\x6c\x62\x31\xbe\xee\x76\xbd\x36\x91\x48\xc5\xe5\xfb\xd6\x22\xc0\x1e\x7c\x7e\x5f\x8d\x00\x25\xb9\x59\xdc\x7a\x04\x18\x73\xda\xd4\x6c\xe2\x25\x05\xb6\x7e\xab\x0c\x60\x5f\x08\x06\x6d\xf6\x32\xec\xa5\xff\x69\x2f\x83\x5e\xe2\x11\xb7\xe9\x9e\x60\x5f\x56\xfc\x83\x65\x1b\x46\xc5\xad\xed\x56\x37\xc0\x98\x3c\x5b\xde\xc6\x8f\x40\xf1\x05\xc1\x6d\xf8\x08\x8c\x39\xfc\x2d\x07\x23\x7c\x1f\xec\x56\x38\x18\xc1\x60\x90\x28\x7a\xeb\x1f\x60\xcc\x61\x93\x1d\x2f\xbc\xb1\xe1\x01\xfa\xd6\x3f\xc0\x98\xa4\xa6\xde\xea\x07\x28\x5a\xe3\xad\x7f\x80\x61\x2e\xd2\x6d\xe0\x08\x8c\x49\x58\xeb\x36\x6e\x04\x8a\x0f\xff\xb7\x96\x02\xc6\x1c\x7f\x78\x75\x7d\x9b\x44\x0a\x8a\xf6\x7d\x2b\x31\x20\xba\x2f\xaa\x6f\x83\x45\x60\xcc\x69\x93\x63\x40\xac\x68\x9a\x4c\x71\x2b\x3b\x60\x4c\x0f\x08\x65\x07\x4c\xe7\x56\xdc\x86\x8f\xc0\xf4\xcd\xe8\xad\xff\xdc\x96\xa7\xf1\xe8\x32\xa0\x04\xaa\xb9\x14\xb7\xc9\xa7\x60\x3a\xf5\xe4\x36\xf9\xf4\xb6\x3c\x0d\x8f\x0b\xb7\xe2\x74\x9b\x7c\xea\xfe\x52\x9c\x6e\xcb\xd3\x10\x93\xb8\x35\xa7\xdb\xf2\x34\xa4\x9d\xdd\xaa\x13\x98\xed\xdb\x7a\xc7\x02\x51\x32\x26\x71\x1b\xae\x02\xd3\x29\x31\xb7\xf2\x04\x62\xf8\x0e\xfa\xd6\x9e\x6e\x2b\xd6\x78\xa2\x69\x4f\x60\xaa\x4a\xb7\x41\x2d\x30\x9d\xb2\x72\x9b\xa2\x0a\xa6\x13\x3c\x6e\xc3\x5c\x60\x3a\x6d\xf2\xd6\xb1\xc0\x54\xa8\x6e\x23\x5a\xb7\xc5\x4a\xd3\x2d\xd3\xbb\x40\x35\x3d\xe4\xd6\xbb\xc0\xde\x58\xbf\xea\x60\x34\x07\x83\xa3\x4b\xef\x02\xcb\xf8\xcf\xad\x76\x81\xe9\xa4\x8f\x5b\xed\x02\xd5\x09\xd1\xb7\x8e\x05\xa6\x73\x62\x6e\x1d\x0b\x54\x13\x5e\x6e\x1d\x0b\x4c\x67\x9e\xdc\xe6\xa8\x82\xe9\x0c\x8f\x5b\x9f\x02\xd3\xf9\x41\xb7\x3e\x05\xf6\x75\x82\x5d\x62\x40\x0b\x44\x3a\xcb\xf0\xd6\xa8\xc0\x74\xb6\xce\x6d\x5e\x29\x88\xee\x2c\x82\x5b\xa5\x02\xcb\xc0\xc0\xad\x3e\x81\xa5\xe4\xde\xea\xd3\x6d\x65\x19\x6e\xcc\xb7\xd1\xaa\xdb\x32\x32\xdc\xf8\x6f\xf5\x09\x2c\xed\xff\xd6\x9e\x6e\x2b\xcb\x78\x9d\xd6\x9e\x40\x75\xa1\xb4\xdb\x58\x15\x98\xce\x8c\xba\xf5\x29\xb0\x8c\x4e\xdc\x8a\x12\xa8\xdd\x33\xc9\xc0\x13\x88\xe9\xcc\xb1\x5b\x7b\xba\x2d\x2c\xf3\x35\xd9\xa3\x61\x8f\xfc\xa6\x67\x17\x61\xa6\xcf\x83\x6e\xe3\x47\xb7\xf1\x23\xde\x26\xdd\x2a\x15\x58\x3e\x6b\xdc\x3a\x15\x58\xe6\xf5\xde\x3a\x15\x58\x3e\x7e\xdc\x86\x8a\xc0\xfa\x86\x5a\xcd\x02\xcb\xe7\xa2\xdb\xe8\x11\x58\x3e\x76\xdd\x46\x8f\xc0\x72\x26\xcb\x6d\xf8\x08\x2c\x53\x90\x6f\xc3\x47\x60\x39\x81\xe7\x36\x56\x04\x9a\x75\x27\x6e\x2d\x0e\x44\x5f\x5e\x43\xb4\x38\xb0\xcc\xfe\xbd\x0d\x20\x81\x66\x06\xc2\xad\xd8\x81\x35\xbf\x26\x87\x82\xa0\xd2\xfc\x7e\xdf\xa1\x98\x0e\x85\x3f\xef\xae\x9c\xe6\xf2\x79\xf8\xab\x71\x60\xf9\x24\x79\x1b\x69\x02\xfb\x81\x90\xcd\x50\xda\xc0\xb6\x6f\x3a\xa5\xb5\x81\xdd\xc6\x77\xd5\x36\xd0\x2c\x9c\x72\xab\x6d\x20\x7e\x4e\x27\xbb\x8d\x2c\x81\xfd\x55\x36\x58\x97\x03\xbb\x8d\x2d\xd6\xe5\xc0\xfe\xae\x6d\xee\xd0\x65\x4d\x14\x87\x5c\x59\x03\xcd\x32\x29\xb7\xb2\x06\xf6\xc7\xfc\x0b\x77\xe9\xfa\xf2\x48\xf8\x9c\xb6\x76\x7f\x75\x62\x3c\x66\xd4\xb5\xfb\xab\x13\xe3\xd1\xa6\xaf\x81\xfd\x5d\x76\xbe\x76\x76\x7f\x01\x26\x6f\x73\x8a\x17\x88\x70\xad\x87\x5b\xf3\xba\x9d\x0a\xe9\x4b\x89\x5b\xf5\x02\xbb\xcd\xff\xb5\xbb\x87\x79\x24\x9e\xa5\xca\x17\xd8\xc7\x09\xa3\xac\x7d\x81\x08\x5f\x9b\xdd\xea\x17\xd8\xdf\xb5\xcd\x31\x38\x4c\x2e\xf1\x14\x57\xc0\x40\x84\xca\x7c\x6b\x60\x60\x7f\x8e\x61\x56\xc1\xc0\x6e\xfb\xc3\x5b\xed\xdb\xc4\x4d\xb0\xbf\xc2\x10\x19\xb1\x02\xfb\xef\xe8\xa6\xde\x06\xf6\xe7\x18\x5e\xc5\x0d\x44\x0e\x87\x57\x73\x03\x11\xd6\x46\xb8\x55\x37\xd0\x5d\xf8\xf4\x36\x90\x75\x9f\xdf\xe2\x23\x8c\x9a\x3a\x07\xfa\xef\x6b\x72\xd0\x58\xaa\xe1\xe7\xbe\x32\x31\x13\x74\x17\x69\xbd\x8d\x77\x81\x28\xdf\x30\xea\x81\xf7\xf5\xa5\x15\xd9\x66\x5f\xf1\xc0\xe2\xea\x15\xb7\x21\x2f\x10\xe5\x3b\x44\x74\xc3\x9b\x85\xf8\x8b\x4b\xc3\xdc\x6a\x1f\xe8\xbe\x16\xbb\x75\xbc\xdb\xe5\x15\x7c\xf9\x74\x1b\xa8\x02\xdd\xb8\xe7\xad\xd1\x81\xfd\x31\xb6\x58\x7f\x03\x51\x9d\xf3\x73\xeb\x6f\xa0\xfb\x4a\xed\x36\x08\x05\xba\x41\x9c\xdb\x20\x14\xd8\xdf\xe4\x50\xd5\xe9\x40\xff\x9e\x92\x74\x3a\xb0\xef\xdd\x1c\x1d\x4a\x1d\x88\x5a\x3d\x09\xf5\x35\xe0\x8a\x85\xb7\x39\x8f\xc0\x40\xde\xad\xc0\x81\xe5\xde\xd3\xdf\x40\x1a\x42\xbb\x0d\x54\x81\x74\x89\xf7\xdb\x40\x15\x88\xea\xf0\x18\xa8\x02\xc5\x69\x11\xb7\xe2\x07\x0c\x55\xdc\xa6\x2a\x02\x43\x5e\xb7\x31\x29\x60\x1e\xc2\xad\x1a\x02\x53\x2e\x6f\x63\x4d\xb7\xeb\x2d\x78\xa8\xe8\x77\xa0\x14\x02\x89\xb7\x2e\x07\x96\xcb\xf9\xdf\xba\xdc\xcd\x54\x40\xf7\xb5\x2a\x07\x86\xbd\x33\x80\x04\xe2\x2b\x03\x7f\xab\x72\x20\xcc\x17\xbd\xf5\x36\x90\xce\xad\xb8\x95\x34\x50\x4d\x40\xbe\xcd\x02\x04\xbe\x87\xbd\xd5\x36\x90\xc6\x02\x1f\xd3\xfd\x9e\x1f\xb9\x0b\x9d\x96\x66\x8b\x2f\x28\x0b\x4d\x69\x13\x31\x90\x45\xcb\xb2\x05\x3f\x1e\x3f\x7f\xea\xb0\xcd\xd7\x85\x93\xa6\xd3\x26\x27\x6e\x76\x3f\x76\xd9\xe6\xfb\xc2\xa4\xe9\xb1\x89\xfc\x05\xce\xa1\x47\x1f\x03\xe1\xac\x80\x47\x1f\x03\x91\x16\x26\x7e\x14\x32\x90\x1d\x67\x7e\x14\x32\x10\xce\x3a\x78\xf4\x31\x10\x4e\xaf\x78\xf4\x31\x90\x9d\xcb\xc7\xa3\x8f\x81\x30\xc3\xfd\x51\xc7\x40\x3a\xd9\xff\x51\xc7\x1e\xa3\x3f\x0e\x8f\x3a\x06\xc2\xd4\xfe\x47\x1d\x03\x61\x06\xea\xa3\x7b\x3d\x66\xee\xa1\xd1\x8f\xee\x05\xd2\x59\x5d\x8f\x79\x7b\x0f\x2b\x2a\x38\xbf\xe0\x51\xb4\x40\x3a\x87\xe8\x51\xb4\x40\x98\x78\xfb\xa8\x50\x60\x54\xde\x9b\x3c\x3a\x12\x18\x2e\x6e\xfd\x98\x78\x07\x4a\x09\x7f\xde\x4d\x2d\xe8\x7d\xf8\x5b\xee\x0f\x52\xec\xd2\x12\xd9\x8f\xa6\xf3\xb8\x10\x3d\xcf\x7a\x8f\xa6\x03\xc6\x44\x45\x1e\xb5\xe6\x71\x4e\x9d\x87\x8a\x5a\x03\x8a\xb1\x91\x47\xad\x79\x5c\x75\x9e\x53\xfd\xd1\x4e\x40\x35\xd7\xff\xd1\x4e\x1e\x27\xcb\x71\x69\x79\x34\x11\x50\xcd\xe2\x7f\x34\x91\x47\x13\x59\x7e\xca\x03\x85\x85\x13\x46\xf5\xa8\x50\x45\x40\x35\x0e\xf2\x18\x01\x02\xd3\x37\x90\x8f\x76\x02\xaa\xc9\xfe\x8f\xda\xf1\x18\xee\x99\xcb\x1f\xf3\x18\xd0\x31\xdc\x6f\x3a\x06\x58\xbe\x93\x7e\x74\x8c\xc7\x02\x9b\xd3\x26\x7b\x69\x05\x4d\x77\xa5\xda\xf1\x58\x41\x33\xdd\x30\x8f\x14\x2b\x68\x7a\x3a\x18\xc7\x01\xcb\x57\x60\x8f\x61\x1c\xd0\xcc\x5d\x7d\xd4\x0e\xd0\x7e\x75\xfd\xff\x6d\xf9\xd1\x40\x40\x33\xd9\xf5\x31\xca\xf3\x74\x1f\x9d\xd9\x46\x05\x04\x34\xd3\x5a\x1f\xa3\x3c\x60\x3f\x06\xb9\x91\xf6\xae\x9b\x8a\xfc\x7d\xce\xee\xf5\xef\xbd\xb8\x9b\x69\xff\x36\x9a\xa5\x8e\x1e\xa3\x41\x60\x7f\x95\xfd\xef\xe4\x36\xd0\x4c\x58\x7e\x54\x1c\xd0\xac\xd1\xf7\xa8\x38\xa0\xfd\xbe\x2f\x7a\x10\x7e\xeb\xd9\xf1\x6a\xe2\xd1\x71\x9e\xf4\x31\xcb\xa1\xd7\x68\xc0\xfe\x53\xce\x52\xe7\xa8\x81\xfd\x5c\xc1\x5e\x53\x73\x40\x77\xf1\xea\x47\xcd\x01\xfb\x63\xfe\x9c\xdd\x67\xca\x59\xf1\xe9\xe9\xd1\x7d\xc0\xfe\x5b\xce\x11\xe5\xe7\xb1\x06\x8d\xcf\xc6\x8f\xa6\x03\xd2\x0b\x94\xa1\x23\xa0\x28\x3c\xaa\xcf\x63\xf9\x4c\x06\xd2\xfc\x3a\x90\x66\xb0\x3c\xe6\xd7\x3d\x56\xcf\x64\x13\x4c\xa5\x03\xe1\x94\xa8\x47\x3b\x02\xd5\xd5\x41\x1e\xed\x08\xb8\xbe\xef\x63\x72\x1d\x18\xdf\x6f\xdb\x69\x26\xae\x79\x8a\x6a\x4b\x20\x4c\xda\x7f\xb4\x25\x50\x7d\xbb\xf2\x68\x4b\xc0\xc5\xa2\x1f\x65\x09\xa4\x0f\x79\x8f\x66\x04\xd2\xc7\xcc\xc7\xbc\x3a\x10\xe9\x4d\xfb\xd1\x96\x40\x9a\x42\xf3\x68\x46\x20\x86\xb5\x4c\x1f\xd5\x08\x44\x78\x85\x51\x8d\x1e\x63\x5e\x9e\xa1\xaa\xd1\x63\xcc\xcb\xf3\x58\x35\x7a\x2c\x32\xe3\xbe\x56\x8d\x1e\x63\x5e\xee\x56\x63\x5e\x20\x2d\x54\xfc\x28\x4b\x8f\x31\x2f\x8f\x39\x63\x5e\x8f\x39\x78\x3c\x85\x3c\x0a\xcf\xc3\x34\x33\xd3\x90\x1e\x7d\xe7\x31\x93\xce\xb3\x5d\xb5\x79\xcc\x91\xf3\x26\x60\x8e\xdc\xe3\x4a\x0c\xde\x35\x95\x9d\xc7\x1c\x39\xb7\x4b\x61\x01\xe1\x0c\x94\x47\x37\x01\x69\x46\xd6\x63\x2c\x09\xa4\x41\xdb\x47\x5b\x01\x69\xa1\x92\xc7\x58\xd2\xe3\x72\x0a\x0e\xa1\xb1\x24\x10\x4e\xb5\x78\x54\x1a\x50\x4a\xb1\xc9\x81\x3e\xbc\x13\xf9\x5b\x76\x68\x63\xf8\x88\xf6\xe8\x2e\xa0\x14\x42\xc2\x8f\xea\x02\x46\xf5\xae\xa6\xb9\x80\x62\x10\xfd\x51\x5c\xc0\xa8\x3c\x0f\x3d\x3a\x0a\x48\x5f\xfc\x3d\x2a\x0a\x18\x93\x37\x43\x8f\x0a\xf2\x9c\xbe\xc3\xe4\x1f\x35\x10\x30\x26\xef\xd7\x1e\x05\x04\x14\x5f\xcc\x3f\xfa\x07\x28\xc6\x02\x1e\xf5\xe3\x21\x67\xce\x22\x11\x8f\xaa\x01\xc6\xe4\x95\xdb\xa3\x43\x80\x18\xd5\x6b\xb4\xb3\xbb\x40\xd1\xb3\x1f\x1d\xe2\x61\x92\x96\x33\xc5\x1e\xb3\xe1\x40\x75\x22\xda\x63\x36\x1c\x58\xc6\x59\x1f\x05\xe2\x71\x8e\x96\x07\x85\xc1\xa5\xc7\x39\x5a\xee\x35\x83\x4b\xa0\xba\x86\xe2\xa3\x65\x3c\xce\xd1\xf2\xce\x6d\x70\x09\x54\x67\x72\x3d\x8a\xc7\xe3\x1c\x2d\x8f\x13\x83\x4b\x60\xf9\xf4\xfb\xa8\x22\x8f\x85\x57\xe6\xf2\xf7\xed\xe4\xc5\x2b\x13\x4f\x5c\xa3\x4b\x60\x3f\x31\x32\x16\xea\x09\x58\x46\xc2\x1e\xed\x04\x2c\x23\x61\x8f\xd1\x25\xd0\x9c\xcc\xf1\x28\x2c\x60\x19\x55\x7b\x14\x96\xc7\xb9\x5d\x28\xc6\xa3\xaf\x3c\xce\xed\x6a\x7e\xca\xe1\xb9\x79\x55\x84\x76\x3c\xea\x0a\x58\x06\xda\x1e\x63\x50\x8f\x73\xbb\xbc\x1a\x1a\x83\x02\xcd\x59\x36\x8f\x4e\x03\xe2\x67\x26\xc8\xe3\xe4\xae\xc7\xc9\x5d\x3c\xe5\x3f\x8a\x0e\x68\x2d\xfe\xf0\x6e\xfb\x51\x84\xc0\xfe\x61\xff\xcc\x6b\x09\x39\x7b\x4e\x24\x7a\x54\x21\xd0\x9c\x47\xf4\xa8\x42\x60\x7f\xd3\x8f\x39\xa2\x24\xed\x39\x7b\xe9\x31\x69\x0f\x34\xa7\xf3\x3c\xea\x11\x88\xf8\x79\xe7\x50\x90\xc0\xbe\x79\xb1\x1b\x55\x24\xb0\xdb\x18\x41\x25\x09\xec\x36\x7a\x6d\x00\x0d\xec\x36\xb7\xce\xc1\xd9\xe8\xc6\xb0\x1f\xd5\xe9\x21\x0e\x56\x86\x43\xad\x28\x81\x2d\xb2\xfc\xad\x53\xb5\xc0\xd6\x51\x8e\x7e\x33\xf0\x40\xb7\xb6\xd8\xa3\x51\x81\xee\x61\x61\x6c\x0c\x84\x89\x99\x8f\x42\x05\x22\xec\xa9\xb1\x31\x10\xcd\x60\xf7\xa3\x64\x3d\xef\xa7\x38\xb6\x79\x14\x30\x27\xcb\x19\x69\x8f\x01\xb3\xc7\x72\x9b\xe3\xdb\x5a\x3b\xfa\x92\x83\xee\x0c\x87\x47\x1b\x7b\xb4\x31\x37\xd6\x5d\x4a\x10\x8d\x3b\xd9\x6b\xc0\x0c\xf8\xee\xf1\x55\xcf\x40\x9a\x6a\xfa\xea\x67\x20\x5c\xb1\xe5\x35\x83\x0f\xa4\x6b\xc9\xbc\x46\xd5\x40\x1a\x42\x7b\x4d\xe0\x03\xe1\xd4\xb6\x57\x65\x03\xcd\xd9\x3a\xaf\xca\x06\x0c\xd0\xbd\x0a\x1b\x88\xb6\xe8\xcd\x6b\xec\x0d\xec\x1e\xfa\x63\x8f\x6d\x8f\x9f\x73\xcb\x5e\xdb\xa8\xa3\xbd\xc7\xeb\xd5\xe2\x40\xed\x5c\x72\x5f\xb3\xf3\x80\x41\xbb\x57\xad\x7b\x29\xa1\x62\xaf\xf5\x35\xe0\xcb\xdb\x57\x5d\x03\xbe\x0f\x7d\x55\x33\x90\xe6\x1e\xbe\xaa\x19\x58\x04\x33\x5e\xcd\x0c\xa4\xcb\xd6\xbc\x9a\x19\x08\x97\x7f\x79\x0d\x81\xbd\x45\xaf\x64\x18\x74\x2e\x10\xc3\x17\x14\xaf\xd1\xad\x97\x29\x50\x26\x1a\xbf\x7a\x18\x48\xcb\x1c\xbe\x7a\x18\x08\x13\x20\x5f\xa5\x0b\xc4\xfc\x3e\xe5\xf0\xb1\xba\x9d\x11\xbc\xd7\xb0\x14\x18\x2e\x70\xf6\x1a\x96\x02\xc5\x75\x1c\x5f\xcd\x0c\x8c\xca\x01\xf8\x1a\x70\x7a\x5d\x0f\x81\xf8\xc3\xab\x99\x81\xe1\x73\xf8\xab\x99\xbd\x9f\x99\xf9\x45\xb7\xde\x6a\x27\xcb\x9f\x77\x54\xab\xa9\xec\xee\x0d\xc3\x4b\xa0\x3a\xf9\xf8\x55\xcd\xc0\xf2\xc1\xe9\xd5\xb9\xc0\x32\xfc\xfe\xea\x5c\x60\x99\x89\xf0\x1a\xfe\x01\xcd\xf9\x71\xaf\xce\x05\x9a\x53\x10\x5f\x23\x3d\xaf\x8b\x8a\x9b\xaa\xf1\xaa\x61\xa0\x59\x47\xeb\x55\xc3\xc0\xbe\x8c\xd9\xe6\xc6\x36\x5e\xee\x39\xb0\x7a\x18\x88\x5e\xbe\xad\x75\xfc\x37\xba\x4f\xdc\xaf\x22\x06\xa2\x56\x5e\x31\xbf\xc6\x84\x40\xb7\x03\x86\x84\x5e\xeb\x72\x3a\x8d\xe6\x55\xce\x40\x76\xc7\xcc\x00\x10\x48\xe3\xb8\xaf\xf6\x05\x8a\x71\xe8\x57\xfb\x02\xd3\x04\xa1\xd7\x88\x10\xa8\x2e\x03\xf8\x6a\x5f\x20\xba\x95\x5a\x5f\xed\x0b\x74\xd7\x30\x7f\x35\x28\xd0\x1d\x7f\x05\x0a\x84\xaf\x50\x5e\x05\xea\xb5\x38\x88\xcb\xe3\xbd\xe6\xd8\x81\xb0\x96\xdd\x6b\xdc\xe8\xb5\x7e\xa7\x67\x84\x4e\x05\x46\xf5\xba\xa0\x52\x81\x62\x28\xef\xd5\xa8\x40\xb1\x76\xe5\xab\x50\x81\x92\xd3\x7f\xb4\x47\x49\x01\x9d\xe9\x6f\xd9\x21\xd6\x23\x70\xd6\xf8\xab\x4e\x81\x65\x0e\xc3\xab\x4d\x81\xe6\x1c\x9d\xd7\x48\x12\x68\x4e\xa6\x7d\xf5\x2b\xb0\x3b\x49\xc7\x35\xac\xd7\xe4\xbc\xdf\x1f\xca\x77\xbe\x1a\x18\x48\x17\x6a\x78\xf5\x2d\x90\xae\xcf\xf5\x1a\x8e\x7a\x5d\x2b\x9c\x27\xc8\x57\x07\x03\xe9\x92\x5d\xaf\x0e\x06\xc2\x32\xc4\xaf\xc6\xf5\xba\x2c\xb8\x81\xca\x57\xe7\x7a\x5d\x16\xcf\x83\x57\xe9\x02\xd9\x79\xe4\x7e\x95\x2e\x90\xfd\xdb\x30\x87\xca\x55\xf1\x3c\xc2\xb5\xae\xd7\x5a\x21\x6e\x85\xd6\x05\xb2\x7b\xc9\xd4\xba\xc0\xbe\xce\xd9\xe6\xce\x9f\xee\x7c\xbf\x69\xc7\xa7\x87\x33\xdb\xaa\x74\x81\x70\x22\xd4\xab\x74\xbd\x2e\xa7\xc7\x33\xca\xab\x74\x81\xf0\x9d\xea\xab\x74\xbd\x04\x9f\x9c\xec\xfe\x6a\x58\x20\x4c\xf5\x7d\xcd\x17\x04\xc5\x77\xa3\xaf\x55\x41\x40\x71\xd5\xdc\xd7\x68\x14\x28\xae\x36\xf8\x5a\xdb\x03\x8c\xb9\xfc\x94\x9b\xba\x38\xf3\xa6\x9f\x72\x53\x17\x8f\xf4\x3c\x26\xbf\x86\x9d\x40\xf1\xe5\xf6\xab\x87\x81\x31\x97\x5f\x74\x53\x97\x87\x2e\xe3\x65\x80\x09\x94\x9c\x6e\xaa\xfb\x63\x91\x7a\xe1\x89\xad\xad\x81\x92\x9e\xd8\x46\x97\x40\x71\x82\xf3\xab\x9a\x81\x48\x23\x07\xaf\x6e\xf6\x5a\xc5\x63\xf9\x31\x3b\x69\x15\x0f\x9e\xc2\x5f\xdd\xec\x75\x0d\x82\xe1\x25\x41\x39\x03\xd5\xf8\xdd\x6b\xb4\xe9\x3d\x7c\xf2\xf7\xf7\xed\xe5\x41\x60\x77\xd9\x64\x2f\x0f\xdf\x66\xd1\x4b\xe5\x0c\xac\xef\x49\x44\x39\x03\xd5\xd5\xe4\x5f\x83\x4a\x60\xf9\xb8\xf5\x2a\x67\x20\xba\xab\x27\xbe\xda\x19\xd8\x17\x78\x06\x48\x17\x03\xcd\xe9\xe4\xaf\x2e\x06\x96\xaf\xbe\x5f\x5d\x0c\x34\x27\xb1\xbf\xba\x18\x68\xce\xbf\x7b\x8d\xfa\xbc\x26\xf1\x59\x14\xec\xb5\x44\x07\xd8\x77\x0b\xf6\xa6\xa1\xa0\xf7\x5b\x90\xc0\x03\x5b\x8f\x7b\x8d\x05\xd9\x51\x35\x0e\x44\xb8\xaa\xf0\xeb\x14\x29\x10\xc5\x68\xe6\x6b\xcc\xe8\x25\x3e\x54\x4c\xef\x7f\x8d\x05\x01\xab\xbd\xbf\xea\x1e\xd8\xb7\x10\xfe\x54\xdf\x03\x06\x8f\x5f\xad\x0d\xa4\x11\xbb\x57\x1f\x03\xe1\xca\xdb\xaf\x3e\x06\xc2\xf9\xbc\xaf\xa1\x21\x90\xe6\x31\xbc\xea\x18\x48\x57\x07\x7c\xb5\x31\x90\x2e\x65\xf8\x6a\x63\x20\xbf\xdb\xa4\xea\x05\xd2\xcc\x89\x57\xf5\x02\xe9\xbc\x80\x57\xf5\x02\x26\xd9\xbd\x9a\x17\x08\x8b\x2c\xbf\x9a\x17\x08\x8b\x50\xbf\x9a\x17\x58\xde\x9e\xb4\x2c\x10\x6d\x7d\x7f\x68\x17\x5d\x62\xef\xdb\x78\xf7\xc7\xed\x15\xd0\x4f\xd9\xeb\x9b\x1c\xbb\xef\x96\xa5\x33\x81\xf8\xae\xb0\x3a\x13\x48\x4b\xc4\xbf\xfa\x11\x48\xab\xee\xbd\x4e\x6a\x02\x69\x21\xef\x57\x65\x02\xd9\x1d\x55\x4d\x08\xa4\xcb\x0d\xbe\x66\x0d\xbe\x2e\xd9\xed\x35\xc4\x10\xd2\x6b\x08\xc9\xdb\x9f\x59\x83\x20\xcb\xb7\x5d\xf6\xc8\x15\xbb\x1d\x0b\xb3\x06\x41\x5a\xea\xee\x55\x96\x40\x58\x33\xf0\xd5\x8b\x40\xba\xca\xe3\xab\x17\x81\xb4\xd8\xe0\x6b\xa8\x09\x84\x39\x49\xaf\x62\x04\xb2\x7c\xbf\x65\x87\x10\x23\xe3\x87\xaf\x0e\x04\xd2\x5a\x86\xaf\x0e\x04\xd2\x8a\x87\xaf\xf1\x28\x10\xa6\x11\xbd\xfa\x0e\x08\x52\x67\xf2\x47\xd2\xa0\x48\xea\x2e\xe6\x8f\xc8\x92\xc8\xde\xea\xff\xde\x95\xf3\x87\xc4\x88\xec\xfb\xac\xcb\x1f\x12\x23\xb2\xef\x4b\x66\xfe\xb0\x18\x91\x7d\x9f\x61\xf9\x43\x62\x44\xf6\xfd\x80\x91\x3f\x1c\x46\x04\x0f\x81\xf9\x43\x61\x44\x90\x17\x94\xbf\x70\xb3\x99\x86\xd4\x2b\x3f\x4f\xbc\x4a\x24\x33\xeb\xf3\x87\xe9\x88\x20\x9c\x98\x3f\x4c\x47\x64\x6f\x6c\x2a\xaa\x23\x82\x54\xa1\xfc\x11\xc1\x12\x41\xea\x59\xfe\x88\x60\x89\x20\xc7\x28\x7f\x18\x91\xc8\x5e\xfd\x47\xc7\xce\x70\x55\x71\x53\x1d\x9c\x70\x70\xdc\x08\x07\xc7\x70\xd5\xf4\x1f\x1d\x9c\x70\x70\x1a\x4d\x0e\x8e\x11\xac\x62\x93\x83\x13\x9c\x63\x95\xa6\xe2\x48\x30\x7b\x89\xf8\x61\xfe\x8a\x23\xf1\x15\x90\xe4\x1f\x8b\x23\x51\x7c\xbb\xcd\x76\x15\x47\xa2\xf8\xd4\x39\xfc\x98\x43\x61\xa0\xcb\x0d\x2b\x0e\x85\x81\x2e\x7b\x54\x1c\x8a\x42\x1a\xf7\xf7\x97\x0e\x85\x1a\x36\xdd\xb0\x69\x13\x0f\x1e\x1e\x01\xc5\xd1\x29\x5f\xed\x2e\x9a\x1c\x1d\xea\x4e\x92\x13\x97\xbf\xe2\xe8\x14\x47\xc7\x7f\x74\x74\x58\xdf\xa0\x57\xbf\xe8\xe8\x14\x9f\xc1\xfc\x47\x47\xa7\x38\x3a\x8b\x26\x0f\x9d\xe2\xa1\xc3\x46\x54\x47\xa7\x92\x51\x3d\x3c\xe8\xaa\xc3\x53\x19\x1e\x0f\xba\xea\xf0\x54\x0e\x94\xca\x21\x50\x1d\x1d\x56\x20\xef\x85\xdf\xaf\x8e\x4e\xf5\x1c\xb6\xc9\xa1\xa8\x78\xbf\xc3\x5a\xed\x37\x73\xad\xe6\x60\x5b\xab\x9d\x64\xe9\xf2\xc1\xf2\x28\xf9\x6b\xee\x4a\x56\x42\x98\x0e\x62\x73\x63\x37\x46\x0d\x9b\xdc\xd6\xc6\xeb\x64\x07\xb1\xb9\xad\xac\x49\x3e\x3d\x2c\x9a\xdb\xda\xdc\x93\x74\xbc\xb9\xad\x2c\xa1\x30\x1d\x8b\xe6\x9e\x24\xf1\x6f\x7a\x6c\x36\x37\x9f\xf9\x56\xd3\xe3\xbc\xb9\xf9\x2c\x52\x3e\xdd\x47\xcd\xdd\xe6\xdc\x2a\x66\x56\xe4\xaf\xb9\x93\x9c\x48\xe5\x61\xd7\xdc\x49\x4e\xa4\x72\xc4\xba\x9d\x74\xd6\xd4\xd7\x64\x8f\x7a\xb1\xce\x0e\x3f\xd6\xed\x92\xeb\x2a\x38\xb0\xdd\x2e\x61\x74\xd3\xab\x57\xb7\x4b\xce\x9a\xf2\xc2\xd3\x3d\xec\x3a\x49\xd6\xd3\x2f\xba\xfd\x9d\xb9\xd4\x1e\xc2\xdd\xed\xef\xbc\x0e\x0f\xf6\x6e\x77\x8f\x74\xde\xef\x7b\xce\x77\x37\x9f\x42\x91\x35\xe8\x78\xf7\x18\xeb\xbe\x23\x60\xb7\x75\x8f\xb1\x4e\x8e\xbb\xc7\x6b\xda\x23\x24\x6f\x7a\xf0\xa4\x1d\xda\x28\xc5\x43\x2c\xed\x50\xba\xe6\x20\x3b\x24\xed\x50\xd2\x21\x4f\x9a\x74\x1f\x25\x8f\xf9\x8b\x3e\xa6\xfb\xe8\xd3\x3e\x46\x3a\xed\x36\xd1\xb5\xe9\xb5\x28\xed\x36\x26\x58\xbe\x8d\xb0\xdb\xc4\xd6\xa6\x87\x7e\xda\x6d\x0a\x3c\x4e\xaf\x0c\xe9\x8e\x24\xb4\x36\x3d\xdb\xd2\x91\x48\xa2\x00\xdf\xcf\x3b\x12\x4c\xc8\xe2\x75\x46\xfe\xd2\x91\xd8\x28\xc5\xc3\x69\xb8\xbb\xcd\x33\x74\x0f\x0d\x07\x87\x48\xdb\xf4\x72\x3e\xec\x36\xab\x32\xb4\xe5\x11\x3c\xec\xe4\x30\x35\xd3\x3d\x39\xfc\xcf\xf1\xbd\xe0\xb2\xcd\x3f\x1d\x4c\x8b\x77\x7c\xa6\x7f\x3a\x79\x6b\x13\x74\x73\x7a\x22\x4d\x4f\x24\xbe\x38\xdd\x23\x93\xb7\x36\x85\x0e\x4c\xf7\xc8\x24\xb5\xdf\xcd\x98\x6e\xda\x64\x8f\x78\xc3\x98\xee\x91\xa9\xcd\xb0\x93\xa6\x1b\x3b\xd9\x23\x5e\x12\xa7\x7b\x64\x12\x84\x09\xba\x39\xdd\x23\x13\x9b\x59\xec\x91\xe9\x1e\x99\xe4\x96\x2f\x3f\xe5\xf0\x6f\x94\xe2\x65\x6c\x3a\xfc\xd3\xe1\xff\x7f\x51\xce\xdf\x74\xa4\x28\xf3\x58\x3d\xdc\x96\xa3\xb2\x48\xb1\x5e\x36\xb9\x2b\x36\x46\x0d\x7a\xb2\x1c\x82\xe5\x10\xd8\xe4\x10\x6c\x8c\x5a\xd8\xec\xe5\x10\x2c\x26\x3c\x78\xb3\x5d\x0e\xc1\x72\x08\x18\xbb\x65\xe7\x16\xf3\x35\x3c\xb6\x96\x87\x1b\xf6\x56\xbd\x25\x2f\xfb\xbb\x08\x3a\x79\x7a\x2e\xfb\xbb\x38\xf1\x0a\x83\xbe\xec\x10\x19\x83\x49\x8c\x31\x7f\xcb\x5d\xbf\x3c\xde\x18\xf5\xc3\x4e\x6a\x74\x8b\xdf\x3f\xec\xe4\x61\x27\xfd\x94\xbb\xfe\x20\x95\xc2\x63\xf7\xb0\xdf\x4a\x5e\xf5\xba\x7a\xd8\xa5\xc3\x05\x40\x93\xc1\x38\xdc\xad\x07\x92\xba\xe8\xe6\xe9\x7f\x6e\x8c\xe5\xb5\xf0\xf4\x70\x23\xf8\xb5\x7e\xec\xc3\xd3\xcd\xa0\x70\x22\x05\x04\xf2\x77\xba\x19\xa7\xb7\xe0\xc6\xef\x9f\x6e\x07\x45\x24\xd2\x03\xe2\x74\xfc\x09\x88\x11\xb7\xc9\xdf\xe9\xf8\x6f\xd4\xf0\x71\xe1\x74\x63\x37\xc6\xf2\x62\x75\xba\xad\xc4\xc8\x78\x31\x9e\xbf\xd3\x43\x70\x63\x7e\xd7\xed\xd3\xbd\xc4\x3a\xe8\xeb\xfb\x79\xf7\xd2\x46\x19\xdf\xa7\xdc\x4b\x1b\x65\xfc\xdc\x7c\xf7\xd2\xc9\x3c\x53\xcf\x83\xd3\xbd\x74\x92\x31\xb2\xec\xb7\x3b\x89\x55\xd0\x97\x17\xab\xcb\x01\xa3\x6c\xc5\xf2\xd4\xb8\x1c\xb0\x8d\xd9\xdd\x49\x97\xa3\x83\xa4\x2d\xef\x7d\x97\x83\xb3\x31\x99\xfe\x96\xbf\xcb\xc1\xb1\x44\x85\xff\x78\x39\x38\x94\xa8\xe0\xd5\x5c\xfe\x2e\x07\x87\x12\x15\x84\x03\xf2\x77\x39\x38\x1b\x63\x39\x38\x97\x83\x73\x91\xf9\xfd\xfd\x96\x83\x73\x31\x38\xde\x28\x2e\x07\x87\xd5\xd1\x73\xb9\xa9\x0e\xce\xc6\xec\x0e\xe1\xe5\xe0\x6c\x8c\xf5\x75\xc8\xc1\xa1\x90\x45\x77\x08\x2f\x07\x87\x05\xd3\x97\x1d\xba\x1d\x89\x9b\x39\xde\x9e\x5a\xb7\x23\xb1\x8d\x6f\xac\x1f\x1b\x71\xdb\xed\xdb\x63\x82\x9f\xbf\xed\xa3\xe5\x28\x96\x4f\x1e\xb7\x9d\xbc\x3d\x02\xfc\x7d\x3b\xb9\x31\x96\xa3\x73\xdb\xc9\x8d\x32\x3c\x5a\x6f\x3b\xb9\x31\x96\x03\x76\xdb\xc9\xdb\x23\xc0\xad\xb0\x93\x37\x9d\xfc\x71\x49\xb9\xed\x24\xa1\xb3\x3e\x3d\x77\x6f\x7b\xc9\x42\xeb\xc3\x8f\x3d\x1e\x02\x0f\x79\x44\x8d\xed\x7f\xec\xf8\x63\xc7\xf9\xfd\xc7\x73\x66\x63\x76\xff\xf2\x71\x2c\x58\x0e\xa1\x0f\x6f\x32\x8f\x87\xc5\xe3\xf8\xf8\x63\x1e\x03\x0f\x11\x63\x2f\x76\x8f\xe3\x43\xe0\xac\x7f\x67\xdb\xe3\xf8\x10\x38\xeb\xc3\x8b\xed\xe3\x00\x39\xf3\xac\x7a\x0d\x79\xdd\xdc\x97\xcd\xed\x74\xea\x75\x73\x5f\x36\xb7\x33\xb4\xaf\x9b\xfb\xba\xb9\x0c\xed\xeb\xe6\xbe\xd4\x46\xf5\x60\x79\xdd\xda\x97\xc8\x72\xa7\x53\xaf\x7b\x93\xe5\xd1\xbb\xa3\xfd\xda\x81\x97\x33\xbc\xfb\x5b\x76\xe0\x25\xb2\x3c\xfc\xa2\xdb\xbf\x31\xbb\x87\xe7\xeb\xe6\xbf\xbc\xac\xb6\xe7\xaf\xfb\xd7\x35\xea\xec\xf8\xeb\xfe\x7d\xa9\x12\xd1\x39\xca\x5e\xf7\xef\xcb\x41\xec\x89\xfa\xba\x7f\x71\xc8\x2c\x5e\x8d\x5e\x77\xf0\xcb\x51\xec\x69\xf9\xba\x7f\x37\x26\x2f\x3f\x33\xf4\x4a\x50\x49\xbf\xcc\x20\xb6\x26\x6a\x5f\x36\x55\x9b\x2a\xbf\x95\x34\x35\x9b\x38\xc5\xb9\x2b\x07\xc1\x35\x31\x99\x82\x9a\x41\x3e\xa4\xa8\x94\x9d\xca\x20\xde\x26\xa2\x13\xa0\xcd\x20\xe0\x26\x2a\xc5\xeb\x32\xb4\x5b\x50\x99\xa3\x91\xa1\xbe\x82\xc9\x9c\xdd\x0c\xf5\x15\x4c\x5e\x66\x64\xa8\xaf\x20\x3a\x81\x81\x0c\xfd\x15\xd4\xfc\xc3\x0b\xec\x0c\xf5\x16\x54\xa6\x75\x64\xa8\xb7\xa0\x76\x9e\x0a\x42\xbd\x05\x93\x97\xc2\x19\xba\x2c\xa8\xa4\xa4\x65\xe8\xb2\x60\x92\x41\x99\xa1\xcb\x82\xc9\xc4\xe2\x0c\x5d\x16\x54\x66\xa0\x64\xe8\xb2\x60\x76\x47\x2f\x1c\xa9\xf0\x40\x62\x0c\x74\x59\x10\x86\x3e\x33\x94\x59\x50\xfb\xf2\x2f\x1d\xaa\x60\x6d\x63\x0e\x91\x50\x66\x41\xa5\xc8\x46\x86\x32\x0b\x66\xff\x7e\xcb\x7e\x87\xfd\xde\x07\x52\xe8\xa4\xa0\x32\xd9\x35\x43\xb3\x04\x95\xba\x82\x19\x9a\x25\x58\xd3\xa1\xd0\x2c\xc1\xe2\x2d\x49\x86\x1a\x09\x16\x41\x80\x0c\x35\x12\xac\xe9\x41\xa9\x33\x82\xc5\x4b\xb1\x0c\x9d\x11\x2c\x5e\xe8\x64\x54\xf7\x47\xb5\x76\xa9\xbf\xaf\x33\x82\xc5\x8b\xbf\x0c\x05\x11\xd4\x74\xf4\xab\x43\x5d\x49\x10\xc1\x17\x42\x41\x04\x35\x3d\x9c\xb5\x41\xb0\x14\xc4\xa8\x0e\x18\x8b\x17\x8c\xf5\xb5\xb9\xb1\x1b\x95\x72\x8f\x19\xd5\x8d\xad\x54\x12\x72\xef\xaa\x91\x61\x1c\x10\x8d\x0c\x35\x12\x2c\xea\xee\x67\xa8\x91\x20\x72\x70\x81\x09\xa5\x11\x54\xaa\x53\x66\x28\x8d\x60\x11\x24\xc9\x50\x1a\xc1\xe2\xf5\x66\x86\xd2\x08\x1a\x05\x5f\x32\x9a\x3b\xa9\x79\xea\x31\x62\x7a\x64\x98\xb4\x39\x6c\xb2\xe3\x8d\xbc\xc6\xee\x6f\xb9\x93\x48\xda\xa4\x42\x64\x86\x1a\x09\x2a\x75\x29\x33\x9a\x43\xd1\x1c\x0a\xbf\xe8\x50\x98\xb4\x89\xc0\x85\xb2\x09\xf6\x35\x81\x8f\x69\x9b\x61\x22\x67\x32\x3c\x9a\x25\x58\x04\x7e\x33\x34\x4b\xd0\x98\x02\x93\xd1\xed\x77\xe7\xc5\xb7\xbb\x52\xd9\x04\xed\xe7\x18\x2a\x9b\x20\x52\x65\x0f\x6d\x13\xb4\x9f\x27\xbd\xb6\x09\x16\xc1\x9b\x8c\x6e\xc7\xbb\x39\x0b\xee\x71\x0d\x14\x34\x66\xdd\x64\x68\xa0\x60\x91\xb2\x9c\xa1\x81\x82\x46\xe6\x5e\x46\xda\x73\xd2\x39\xe7\xb0\x9b\xe9\x51\x90\x1c\x05\xee\x4b\x45\x35\xcc\xdd\xe4\x5e\x14\x5a\x29\xd8\x07\x06\x5b\xab\x96\x82\xe5\x3b\x8d\x50\x4b\x41\xfc\xa8\x9b\x95\xa1\x97\x82\xd6\xbc\x6a\xea\xa5\xa0\x32\x1b\x2d\x43\x09\x05\x4b\x8f\x0f\x25\x14\x34\xf2\x31\x33\x94\x50\xb0\x48\x91\xcb\xd0\x38\x41\xa3\xc6\x48\x86\xc6\x09\x22\x35\x85\x50\x39\x41\x23\x5a\x93\x31\xec\xf9\xf0\xf8\x67\xc3\xb4\x50\xb0\x48\xe7\xcb\x18\x5e\x7d\x86\x47\x06\xbf\x3f\x1c\x0c\x32\x3e\x49\xe2\xc8\xd0\x55\xc3\x92\x8a\xde\x40\x86\x63\xb1\xd1\x9a\xf7\x2c\xed\x15\x34\xe6\x0f\x65\x0c\x8f\x8c\xf1\x05\xd0\xdd\x30\xc7\xc2\x29\x71\xc3\x8f\xd9\xf1\x41\xdd\xac\xe2\xef\x7b\x14\x90\xe4\x99\x0a\x6d\xa8\xc2\xa0\x11\xe9\xc8\x50\x7b\xc3\x09\x70\xd8\x4a\xa8\xbd\x60\xef\x4c\x3a\x30\xed\xf9\x24\x1d\x09\xdf\x0a\x55\x18\xec\x4d\xe3\x0f\x54\x5a\x10\x39\x1c\x34\x05\x16\xc4\xaf\x79\xbc\x68\xb0\xa0\xb1\x5a\x50\xc6\x74\x77\xce\x2f\x2f\xcb\xbf\xb0\x5b\x16\x29\xf9\x7d\x9f\xb3\x5f\xd3\x74\x65\x8f\x65\xc5\x15\x34\xe6\x94\x65\x28\xae\xa0\x31\xa5\x2c\x63\xd9\xaf\xc5\x2a\xd3\x5e\x8f\x75\xd9\xf8\x26\xc1\x79\x75\x5f\xf6\xeb\x9b\x04\xd7\xff\x3f\xf5\x2b\x43\xff\x0d\xe7\xc8\x55\x7f\xc5\x3d\xce\x1c\xb9\xce\x5c\xc6\x0c\x05\x38\x5c\x71\xf0\xe7\xc9\xb4\x3c\xd6\x2d\xbf\xb8\xaa\x5b\xe5\x88\x59\x7f\x71\x7d\x1b\xef\x88\x2d\x32\xd9\xaa\x5f\x75\xc4\x96\x23\xe6\x79\xa2\x17\x83\x6d\xa4\x7e\xce\x11\x73\x21\xc2\x9f\xd7\x08\x2d\x38\xbe\x79\x73\x1e\x91\x87\xe3\xf3\xcd\x91\xf3\x8a\xaf\x07\xc7\x37\x47\xce\x63\x52\xeb\x05\x8d\x7c\xf1\x0c\xa5\x17\x34\x66\xdc\x65\xe8\xbc\xf1\xcd\x90\xf3\x94\x3d\xec\x18\xeb\xa6\x0f\xef\x32\x87\xfd\x3a\x9c\x0f\xe8\xc1\x76\xd8\xb1\x83\x33\xdb\x21\x39\xec\xd7\xc1\x01\x5e\xfd\x31\xbb\x75\x78\x20\x78\x21\x3d\x3c\x10\x0e\x0f\x04\x7f\xcc\x9e\x7e\x2b\xa9\x7b\x69\x52\xbe\xc1\x6e\xa3\xa7\xda\x77\x7c\x2b\xa9\x7b\x57\x54\xbf\x41\x1b\xde\x1d\xd4\x6f\xb0\x07\x89\x8d\x53\xbf\xe3\x9b\x11\xe7\x6d\x5d\xff\x0e\x67\xc4\xa5\x8f\xa9\x0a\x38\x68\xac\x91\x96\xa1\x80\x83\x7d\xc7\xb6\xcd\x91\x3b\x1d\x39\x87\x49\x05\x0f\x67\xc4\xd5\xe6\xdf\x3a\x74\xdf\x62\xed\xdf\xe6\x39\x4e\xe7\x97\xe1\xee\xef\x39\x28\x2e\xc2\x3e\xdd\x3a\x07\xe5\x5b\x84\xdd\x73\x41\xc1\x06\xd1\x96\xd7\x40\x0d\x1b\xec\xcf\x31\x50\x97\x83\xb2\xd1\x7f\x5e\xd7\xb5\x6e\xb0\xff\x95\x31\xd6\xb1\xc1\x1e\x14\xb6\x44\xc9\x8e\x6f\xb5\x76\x9f\x9c\xb4\x6c\xd0\xbf\x83\x53\xcb\x06\x8d\x25\xc7\x32\xb4\x6c\xd0\x7f\xde\xfa\xb4\x6c\xd0\x58\xaa\x2e\x43\xcb\x06\xfd\x3b\xbf\xb4\xec\xb8\xbe\x4b\x08\x87\xa6\x9a\x0d\xda\xf0\x1c\xd1\xa9\xc3\xb5\x08\x96\xbb\xf0\x76\x40\xbe\xdc\x57\x2f\xe4\x5a\x75\xb8\x3e\xc1\xf0\x16\x70\xdb\x2b\x56\x5e\x2f\x3f\x1f\x05\x74\x68\x10\xe5\xe7\x85\x50\x63\x06\xd1\x94\xa5\xd0\x7c\x41\x44\x7a\x7f\xd2\x7c\xc1\xfe\x2e\x6d\xaa\x2f\xd8\x23\xcc\xb6\x28\xba\x60\xdf\xc7\x18\x75\x4d\x17\xf4\xea\x3e\x54\x74\xc1\xfe\x0b\x46\xe0\x71\xe7\x98\x37\x9a\xde\x02\xb5\x5f\xd0\xbf\xf3\x55\xfb\x8d\xe7\x9b\xae\xe9\xcf\xd9\x33\xd3\x46\xd3\x1b\xb6\xf6\x0b\xf6\x08\xf8\x17\xf6\xf6\xb1\x6c\x97\x37\xe3\xc7\xfd\x43\x08\xb5\xfc\x1c\xd1\xc7\x9d\xf1\x7c\xf3\x2f\x38\x00\x34\x67\xb0\xdb\xf8\x5f\xd5\x19\xec\x36\x46\x5e\x77\x06\x5d\xd5\x0f\xad\x18\xf4\x4f\x66\xb4\x62\xd0\x7d\x01\x14\x5a\x31\xe8\xbe\x55\x09\xad\x18\xf4\xf4\x2e\xa5\x15\x83\x28\xdf\x53\x8d\x5a\x0c\x7a\x7a\xcd\x55\x8b\x41\x94\xef\xea\xa7\x17\x83\x3e\x9a\xff\x69\x47\xf1\xe2\xfa\xf3\x19\x5e\x2f\x06\xae\x9e\x9a\xa1\x17\x83\x6e\x08\xac\xe8\xc5\xa0\x1b\x5e\x29\x7a\x31\x88\x5a\xb9\x20\x16\xc5\xb8\x90\x62\x5a\x29\x6e\x94\x45\xc1\x05\x51\x3d\x6e\x8a\x82\x0b\x06\x87\x43\xd1\x6f\x41\xfa\x48\x5a\xf4\x5b\x60\x90\xa7\xe8\xb2\x65\x7b\xab\x17\xaa\xa2\x97\x82\xc5\xd9\x56\x74\x50\xb0\x38\xbd\x8b\x11\x56\x10\x2c\xf8\x98\x45\x2b\x05\xc1\xe2\x7b\x59\x54\xd0\xe2\x84\xc0\x66\x53\xb7\xc9\x70\xaa\xbf\x95\x36\x19\x4e\x65\x68\xf4\x4d\x30\x3c\xde\x8b\xba\x59\x28\xb3\x32\x22\xfe\xff\xf6\x5d\x94\x4a\x50\x99\xcc\x95\xc5\x08\x29\x58\xdf\x36\x1a\x21\x2d\x65\xcb\x74\x86\x9f\x72\xc4\x0b\x85\x1a\xb8\xa0\x17\xa3\xa1\x60\x85\x9b\x6d\x34\x14\xac\x70\xb3\x15\x54\xb0\x8c\x54\x15\x6d\x14\x2c\x23\x6d\xc5\x38\x27\x68\x4c\xbe\xce\xa2\xa0\x82\xf5\x1d\x0a\x0a\x2a\x88\xb1\xbe\xb6\xdb\xb6\xef\x21\xa9\xd1\xe6\xde\x2a\xdc\x1b\x79\x20\x29\x2a\x2a\x68\xac\x26\x99\x45\x43\x05\xdd\xab\x76\x31\xaa\x09\x7a\xe5\x41\xbb\x28\xad\xa0\x7b\xc3\x2b\x4a\x2b\x20\x1d\x31\x8b\xce\x0a\x62\x18\x65\x29\x46\x35\xc1\xbe\x66\xf9\x39\xbb\x59\x49\x4d\x70\xac\x15\x59\x90\x9d\x67\xc1\xa2\xc7\x82\x68\xdf\xb6\xba\xdf\x28\x19\xd9\xfc\x7d\x3d\x16\x04\x85\x4a\xb2\xe8\xb1\x20\xa8\x87\x90\x45\x8f\x2d\x8d\x40\xe1\xf7\x29\x37\x7f\x63\x7c\x9d\x54\x50\x41\x61\xcd\xe5\x2c\x0a\x2a\x28\xe4\x4f\x67\x51\x50\x41\x65\x56\x61\x16\x03\x9d\x60\x92\x62\x92\x45\x67\x05\xe3\x6b\x71\xb7\x51\xc1\x7f\x50\x2f\x34\x8b\xce\x0a\x28\x10\x94\x45\x65\x05\xe4\x3f\x66\x51\x4f\x41\xaa\x12\xa5\xdb\x43\xaa\x9b\x54\x5b\xec\x20\xc5\x4d\xbc\x10\x18\x1b\x2d\x5b\x57\x8d\xf6\x16\x3d\x14\x2c\x1e\x1e\x8a\x1a\x0a\xac\x3a\x99\x45\x0b\x05\xc9\xfc\x92\x2c\x5a\x68\xd1\x42\xe9\xaf\x12\x0a\x32\xbe\xad\x74\xbb\x09\x79\x52\x09\x26\x8b\x76\x09\x92\x29\x66\x59\x94\x4b\x90\x4c\xdc\xcc\xa2\x5c\x82\x0c\xf7\x83\x51\xd0\x62\x35\x49\xb6\x4a\xdd\x04\xc9\xb4\xe9\x2c\xda\x26\xc8\xf0\x82\xa5\x6d\x82\x0c\xaf\x0d\x9a\x25\x88\xf4\xc5\x56\x31\x4c\x09\x82\xd2\xfd\x59\x94\xc6\xf2\xcd\x09\xa4\xd7\x4a\x23\x88\xc2\xbb\x83\xa2\x33\x82\xa4\x8c\x58\x16\x9d\x11\x64\xf1\xc0\xd2\x19\x41\xd6\xef\x8b\x76\x68\xf0\xb8\xc4\x4b\xcd\xa2\x33\x82\xa4\xa6\x57\x16\x05\x11\x44\x78\xc0\x2b\x88\x20\xcb\xf7\x45\xf7\x99\x09\xa9\xbc\xb9\x2d\xfa\x21\x48\x2a\x85\x66\x19\xee\x33\x2a\x53\x16\xfb\xa8\x32\x82\x88\x6f\xeb\x1d\x09\x52\x54\x29\x3f\x96\x45\x63\x04\x41\xc5\xf2\x2c\xc6\x4e\x8b\x29\xaa\xfe\x96\x12\x09\x22\x3c\x11\x95\x48\xf0\xbd\x04\x2e\x3a\x64\xb1\x08\x3f\xf3\xef\xb2\x28\x91\x20\x8b\xb7\x07\xe3\xa9\x20\xbe\x8b\xaa\xf1\xd4\x62\x7d\x4c\x8a\x99\xed\x0f\xdb\xe6\x53\x97\xdf\x74\x78\xa6\xc3\xc3\x88\x19\x50\x2d\x4e\x1f\x74\x78\xf4\x51\x10\xe1\x3e\x52\x47\x8b\xd3\x07\x1d\x31\xd5\xb3\x38\x57\xf0\xdb\x0a\xc7\xc2\x62\x98\x5e\xc7\xb5\x4c\xb0\x1f\xcb\xf9\xa6\x9a\x09\x82\xaa\xac\xfb\x48\xb0\x89\x3b\x9e\x03\xab\x65\x82\xa0\xea\xeb\xde\x55\x36\x91\xee\xe5\x28\x6a\x91\x20\xa8\xfb\xbc\xc7\xd2\x26\x0e\x0b\x6f\x30\x46\x51\x41\x7c\x37\x18\xb5\x12\x44\xf1\x78\x52\x03\x8b\x95\xf8\x7f\x5e\x7a\x55\x39\x10\x8d\x34\xef\x2c\x87\x7f\xc0\x74\xc1\x34\xc6\x5d\x94\x39\x10\xbe\xed\x2e\xba\x1c\xc8\xee\xcd\x49\x97\x2b\x16\x9a\xec\x7e\xd1\x03\xcf\x5a\x27\xbf\xf2\x87\x9b\xb1\xa6\x57\x5c\x51\xfe\xfb\x77\xb7\xdc\x3a\x94\xcd\x7f\x77\x5f\x50\x87\x92\x84\xfe\x2c\x8a\x1e\xc8\xee\x43\x8c\x9e\x57\xac\x43\x89\x5b\x16\x35\xaf\x98\xc4\x1a\x7e\xca\x5d\x71\x92\xb5\xc3\x53\x5e\xd1\xe8\x40\x76\xde\xba\x14\x85\x0e\x84\x21\x8c\xa2\xcf\x15\x4b\x53\xf2\xc8\x58\x74\x37\x90\xdd\x47\x09\xd5\xad\xb8\x74\xbc\x3b\xdf\x50\x29\xc8\xee\x35\x5c\x71\x03\x61\xbc\xa2\x18\x2a\x05\xe1\x1b\xf7\xa2\xca\x81\xa4\x22\x47\x16\x55\x0e\x44\xf3\x08\xd7\xd0\x40\x34\x2f\x13\x1a\x1a\x88\xee\x3b\x9d\x62\x60\x14\x44\xf3\x14\x55\xda\x40\xe4\xf0\xc6\xae\xb4\x81\x30\x50\x53\x74\x36\x10\x46\x90\x8a\xce\x06\xc2\x30\x56\xd1\xd9\x40\x34\xcf\x2a\x9d\x0d\x64\xf7\x70\xd3\xd9\x40\xf8\xc0\x5e\x74\x36\x10\x06\x4d\x8a\xca\x06\x42\x75\x2a\x46\x46\x8b\x4b\xca\x79\x38\x6b\x71\xc5\xf2\x98\xfe\xa3\x12\x07\xc2\x28\x59\x31\x58\x0a\xb2\x7b\x0f\xb8\x1d\x31\xaa\x63\x1a\xe1\x2e\x9a\x5e\x61\x51\x78\x15\xa1\x18\x3f\x2d\x96\xf8\x1f\xde\x8a\x94\xbf\x72\x3b\x14\x0c\x98\xee\x07\xc2\xb0\x48\x31\x7e\x0a\xc2\xa8\x4b\xd1\x06\x41\x18\xbc\x2e\xc6\x4f\x41\x18\x11\x2e\xc6\x4f\x41\xf8\x16\xa9\xa8\x87\xc5\x04\xd9\xe6\xe8\xeb\x73\xe5\xab\x8f\xe9\x5d\x59\xd9\x02\x69\x86\x41\x79\xfc\xb5\x87\x5f\xf3\x80\x55\xbf\x40\x4c\x2f\x60\x8f\x03\x8b\x91\x4d\x1f\xbe\x1e\xff\x93\x09\x7f\xd3\x33\x5b\x47\x03\x69\x90\xbb\xa8\x68\x20\xa6\x03\xab\xa1\x81\x51\x7d\xa4\x30\xba\x09\x0a\xcb\x9e\x64\x31\xba\x09\x62\x7a\x36\xeb\x71\xc5\xc5\xd5\x3d\xac\xf5\x38\x90\x46\x6c\x8b\x1e\x57\xac\xb2\xe2\xf9\xa0\xc7\x81\x34\x3a\x5e\xf4\x38\x90\x26\x2b\x14\x35\x0e\xa4\xb9\x16\x45\x8d\x03\x69\x2e\x44\xd1\xe2\x40\xcc\x6f\x53\x1d\xaf\xd7\xf1\x72\xbb\x1c\x2f\xd6\x6d\x9b\x1e\xd4\x4a\x1c\x28\xd4\x6f\xdf\xb7\xfe\xdd\x04\xd2\x10\x7a\x55\xe2\x40\xcc\xef\x53\xc5\x26\x92\xc0\xba\x9f\xaa\x36\xf9\xb0\xba\x68\x1a\x36\xd1\x6d\x2e\x4f\x55\xa9\x03\x85\x25\x61\xb2\x6a\x75\x20\x28\x09\x91\xd5\x10\x25\x48\x33\x87\xaa\x5a\x07\x72\x71\x9c\x57\x23\x94\x20\x99\xf4\x90\x55\xd5\x03\x69\xfa\x52\x35\x04\x09\xd2\x04\x83\xaa\xfe\x81\xc1\x02\x54\x59\xf5\x3f\x10\xcc\x26\xcb\x6a\x08\xb2\x22\x7b\x26\x00\x54\x65\x0f\xa4\x99\x03\x55\xd9\x03\x41\xb1\xb6\xac\xc6\x1b\xc1\xbe\xdb\xf2\x63\xc6\xf5\x40\xa1\x08\x4d\x56\x4d\xaa\x5a\x40\x85\xbd\x56\x35\xa9\x6a\x01\x15\x2e\xb8\x55\x6d\x02\x2e\x3e\x99\x55\x6b\x02\xa3\x36\x7f\xcb\x7e\x5b\x53\xe5\xb7\xfc\x98\x1d\x2f\xee\x5c\xc6\xc2\xfc\x50\xb0\x2f\x75\x7c\x55\x93\x02\x63\x71\x19\xa8\x9a\x54\x75\xce\x1f\xa7\x51\xd5\xa4\xc0\xbf\x2e\x99\x1f\x0a\x22\x4d\x1c\xa8\xda\x15\xb0\x6e\x71\x56\xf5\x0a\xec\xff\xf4\x0f\x1c\x0d\x26\x02\x56\x4e\xa4\xaa\x71\x81\x51\xab\x5b\xe6\x68\x54\x52\xac\xfe\xf2\x82\xbb\x1a\x6b\x04\x63\x35\xb7\xc8\xf1\xab\x8c\x9f\x47\x97\xd6\x06\x4a\xf1\xe0\xd5\xda\x40\x29\x6e\xa3\x8a\x06\x46\xf5\x53\x2a\x5a\x35\x63\xd5\x83\x57\x45\x03\xa5\x38\x06\x66\xac\x02\x4b\xb6\x66\x35\xf8\x58\x1b\x59\x66\xd5\x2f\x3a\x52\x2c\x93\x5e\x1c\x63\x45\x0e\x8c\xfa\xfd\x96\x03\xd5\x1c\x28\x7f\xcb\x81\x62\x99\x74\xea\xa6\x67\x55\xe4\x80\x85\x00\xb2\x2a\x72\x60\x54\x47\x42\x93\x03\x85\x7a\x14\x59\x15\x39\x50\x28\x3e\x91\x55\x93\x03\x85\xf5\x1b\xb2\x1a\x7c\x04\x85\xba\xe9\x59\xb5\xbb\x6a\xa6\xab\xa7\x8b\x76\x07\x46\x75\xbb\x8c\x3d\x82\x51\x1d\x55\x63\x8f\xd5\xac\x56\x0f\x40\x63\x8f\x60\x50\xd0\x2b\x6b\x77\x24\xba\x23\xe1\xcf\x3b\x12\x2c\x9c\x5e\xdd\x2e\x3d\x10\x8c\xea\x01\xae\x07\x56\x73\x5f\xdd\x54\x25\xac\x1a\xf3\x33\x5d\xb0\x6a\x61\x60\x2c\xee\x86\xd5\xf8\x1e\x28\xbe\x6e\xaa\x5a\x18\x28\xc3\x61\x35\xef\x14\x94\xe1\xb0\x1a\xdf\x03\x65\x60\x82\xd5\xf8\x1e\xd8\x37\x60\x37\xc3\xa1\x66\x15\xf1\xe5\x99\xa1\xbe\x81\x61\xf8\xa4\xaa\x6f\x60\x2c\x7f\x4c\x7d\x03\xe3\x3b\x7d\xd4\x37\x50\xd4\xed\xaa\xbe\x81\x42\x41\x95\xac\x06\xf3\xc0\x30\xef\xb4\xea\x6a\xa0\x1a\xb1\xaf\xba\x1a\x28\xcc\x17\xca\x3a\xec\xf7\x20\x7b\xcc\x53\x46\x7d\x03\x31\xbe\x1d\xae\xbf\x81\x32\xbe\x8f\x39\x16\x83\xb1\xf0\x24\xd6\xdf\xc0\x58\xc4\x9c\xaa\xfe\x06\xc6\x72\xa8\x95\x35\xb0\xcd\x89\xa3\x47\x5b\x03\x65\xf8\x4d\x6d\x0d\x8c\xe5\x09\xa8\xad\x81\xb1\xdc\x7e\x65\x0d\x94\xe1\x0e\x57\xd6\x40\x19\x5e\xf1\x95\x35\x30\x96\x97\x5f\xc5\x0c\x8c\x55\xfd\x2d\xc7\x62\x72\x0c\xb8\x8f\x14\x33\x50\x06\x56\x5f\x15\x33\x30\x4c\xdd\xad\xc6\x09\xab\x25\x2f\x59\x72\x33\xab\xb2\x06\x2a\x65\x9c\xb2\x1a\x26\x04\x63\x79\x58\xeb\x6f\x60\x18\xdf\xa8\xd3\xe1\x99\x24\x99\x79\x49\x51\xe9\xc0\x58\xf6\x48\xa3\x03\x63\x79\x8d\xd6\xe8\x40\x19\x1e\x75\xea\x1b\x98\x4e\x2e\xa8\xba\x1a\x28\xc3\x5b\x80\xae\x06\xc6\xb2\x93\xba\x1a\x28\xbe\x3a\xab\x46\x00\x41\x31\x5f\xad\x1a\xed\x03\x65\xb8\xf5\x06\xfb\xc0\x58\xd5\xed\xb2\xdb\xcb\x43\xc0\x26\xbb\xbd\xec\xb6\xbf\x65\xb7\x99\xd5\xb8\x3c\x01\xcd\x81\x05\x85\x85\x31\xb2\x1a\x0f\x04\x65\x78\x9c\x1b\x0e\x04\x65\x78\x7e\x9b\x16\x0b\x2a\xc5\xb1\xb2\x6a\x95\x60\x2c\x8f\xd6\xc3\x83\xe2\x20\xf5\xd0\x1d\x69\xcc\x10\x14\x0a\xe9\x65\x55\x33\x41\x19\x1e\x27\x6a\x26\x28\xc3\x0e\xa9\x99\xa0\xf8\x32\xad\xaa\x99\x60\x2c\x8f\x4c\x3d\x12\x94\xe1\xe0\xe8\x91\x60\x2c\xf7\x90\x1e\x09\xc6\xf2\x00\xd0\x23\xc1\x30\x20\x5b\xf5\x48\x30\x9d\xa1\x53\xf5\x48\x30\x9d\xcf\x52\x15\x3d\xb0\x05\x9b\x4e\xea\x70\x60\x2c\xf7\xad\x0e\x07\xa6\x53\x9a\xaa\xa1\x37\x50\x23\xff\x7f\x7d\x8b\xac\x06\xe6\x40\xcc\x1f\xce\x5f\xd5\x3e\x30\x95\xd6\xaa\xf6\x81\xe9\x6c\xa3\xaa\xf5\x55\xd3\x61\x3d\x98\xb5\xbe\x6a\x8d\x1a\x5e\x3c\x54\xa5\x0f\x54\x0a\xd2\x64\x55\xfa\xc0\x54\x9b\xaa\xd2\x07\xa6\x02\x5c\x95\x3e\x50\xa9\x3e\x93\x55\xe9\x03\xd3\x09\x48\x55\xe9\x03\xd3\x37\x05\x55\xe9\xab\xa6\xc3\x7a\x93\x56\xfa\x40\xa5\x38\x41\x56\xa5\xaf\x9a\x0e\xeb\x8e\x56\xfa\x40\xa5\xc2\x4e\x56\xa5\xaf\xba\xd4\x1b\xd1\xc2\xaa\xf4\x81\xed\x94\xfc\xbe\xd6\x57\x5d\xeb\x6d\xd8\xe4\x80\xdd\x0c\x98\x37\x05\xad\x0f\x4c\xe7\x9b\x55\xa5\x0f\x54\xe6\xe3\x67\x35\x91\x16\x4c\x5f\x48\x54\x3d\x10\x4c\x5f\x62\x57\x3d\x10\x4c\x5f\x35\x54\x3d\x10\x58\xb1\x33\xab\x1e\x08\x5c\xdb\x35\xab\x1e\x08\xa6\x53\xbd\xaa\x79\xb4\x60\x76\xaf\xb3\x46\x13\xab\x79\xb4\xcb\xdd\xa6\x2e\x82\xe9\x14\xb7\x6a\x30\x11\x4c\x67\x46\x55\xf3\x68\xab\x79\xb4\x04\x75\xab\xe1\x45\xb0\x9d\xd2\x8f\x39\x3c\x0f\x27\xfb\xf0\xc7\x3c\x9e\xc8\xa3\xad\xde\x4d\xb4\x51\x30\x9d\xc7\x57\x0d\x2e\x82\x98\x26\x01\x56\xa3\x8b\x60\x15\xef\x30\x06\x17\xc1\x74\xb6\x54\x35\xb6\x08\x2a\xd5\x92\xb2\x1a\x5a\x04\xd5\xfc\xbb\xaa\xec\x82\xe5\x4b\xbd\xaa\xd9\xd6\x87\xac\xc9\xe1\xe6\x3b\x16\x0f\x63\xe1\xf5\x45\x8d\x05\xd3\x37\x12\x55\x8d\x05\xcb\x17\xaf\x55\x8d\xad\x26\xe9\xda\x49\x35\x16\x4c\xa7\xe8\x55\x35\xb6\x9a\xa4\x3b\xfc\x94\x43\x61\x92\xae\x97\x42\x35\x16\x4c\xa7\xd5\x55\x9d\x15\xec\xe7\x1a\xdb\xec\x37\x29\xb9\x66\x0f\x56\x0d\x15\xec\x3d\xe2\xc7\x3c\x30\x2c\x5a\xf3\x73\xb0\x15\x52\x10\xc9\x8a\x7f\xd9\x4c\x7e\x6d\x26\xbf\x72\x09\x6b\x5a\x24\xd8\x3f\x37\x68\x5b\xb6\x91\x13\x89\xfa\x35\x23\x81\x60\xb1\x1e\x44\x36\x35\x12\x2c\xaa\x80\x65\x53\x23\xc1\x62\x01\x8d\x6c\x6a\x64\x33\xd1\x95\x6b\x5f\x53\x23\xc1\x62\xe6\x7f\x36\x35\x12\x7c\x01\xca\xa6\x46\x82\xe5\x1b\xf9\x66\xcc\x10\x2c\xdf\xd0\x36\x35\x12\x54\x6a\xf9\x65\x33\x8c\x08\xaa\x91\xee\xa6\x59\x82\xe5\x8b\xd0\xa6\x59\xb6\x20\x97\xd2\x8d\xd0\x2c\xc1\xf2\x85\x7f\x33\x8c\x08\x16\x2b\x76\x64\x33\x6b\x15\xac\xf2\xfd\xbc\xdd\x26\x6b\xd5\x38\x7a\x73\xbe\x25\xa8\xe9\x78\x19\x60\x04\xcb\xe0\x41\x33\xc0\xd8\x0c\x30\x62\xe2\xcd\x00\x23\x58\xd4\x40\xc8\xe6\x14\xcc\x46\x80\xd1\x77\xc9\xcd\x00\x63\x33\xc0\xc8\x8b\x91\x66\x80\x11\x2c\x6a\x81\x66\x73\xba\x25\x58\xbe\x30\x6f\xc6\x1c\xc1\xa2\x88\x68\x36\xe5\x19\x2c\xd6\x46\xc9\xa6\x29\x83\x6a\x26\x47\x33\xe6\xd8\xbe\x98\x23\xdd\x56\x9e\x41\xcd\xef\xb7\xdc\xdb\x85\xbd\x1d\x76\xc8\x91\x28\xee\x6d\x46\x55\x77\x06\x8b\x45\x4f\xb2\x19\x84\x04\x8b\xb5\x4b\xb2\xa9\xce\x20\xc6\xf7\x97\xba\x73\x73\xcd\x3a\xde\x40\x34\xdd\x19\x34\xb3\x04\x9a\xee\x0c\x56\xf1\xa0\x50\x9d\x41\x35\xc3\xa2\xa9\xce\x60\xf9\xf2\xbd\x69\xce\x60\x9f\x82\x74\x5c\x75\x06\x6b\x3f\x3b\xff\xef\x6d\xb9\x69\xd6\xed\xab\xba\xe3\xde\xd1\x9d\xc1\xbe\xf3\xf8\xcb\x0e\x56\x75\xb0\xfc\x98\x83\x65\x9e\xee\x37\x32\x0e\xd6\xc6\xf2\x0d\x4b\x53\x9e\xc1\x2a\x8e\xb2\xf2\x0c\x16\xeb\xe0\x64\xd3\x94\xc1\x32\xde\xd0\xf4\x56\xb0\x7c\x9f\xd6\x94\x54\xb0\x9c\xbc\xd8\x94\x54\xb0\xa6\x67\x9e\x46\x0a\x96\xaf\x11\x9b\x46\x0a\x9a\x99\x18\xcd\x80\x23\xa8\xe6\x3f\x37\x23\x8e\xcd\x9c\x59\x77\x98\xde\xda\x2c\x7e\x9a\x7e\xca\x71\x37\x1b\x36\xfd\x79\x87\x9d\x52\xa6\xbe\xe7\x6b\xea\x27\x88\xcf\x52\x9b\x71\xc8\x66\x1c\x72\xba\xad\x1e\x96\x9d\xfc\x4f\x4f\x2a\x93\x61\xc1\x72\x7e\x6c\x33\x36\xd9\x4c\x86\xf5\x1a\x67\x32\x6c\x33\x19\x96\x67\x88\x66\xb8\x12\x2c\x5f\xbb\x35\xc3\x95\x60\x3a\x0f\xbc\x29\xbc\x60\xf9\x56\xaf\x19\x76\x04\xcb\x39\x8e\x4d\x07\x06\xcd\x54\x98\xa6\x03\x83\xf8\x39\xcb\xb8\x29\xc1\xa0\x51\x99\x2e\x9b\x12\x0c\x96\x6f\x33\x9b\x12\x0c\x96\x2f\xec\x9a\x0e\x0c\x9a\x69\x35\x4d\x07\x06\xf1\x63\x05\xdc\x6c\x4a\x30\x68\x14\xa8\xcb\xa6\x04\x83\xfd\x31\x3a\xa0\x05\x83\x68\x3e\xbf\x37\x35\xb8\x99\xe6\xea\xad\xc2\x90\x65\x33\xcd\xd5\x13\x46\x33\x06\xcb\x69\xa7\x4d\x33\x06\xcb\x89\xae\x4d\x33\x06\xcb\xf7\x7f\x4d\x33\x06\xcd\x8c\xa7\xa6\x19\x83\x46\x4d\xbc\x6c\x8a\x31\x68\x3f\xbb\xa4\x18\x83\x66\xea\x55\x53\x8c\x41\x0c\x5f\xbe\x34\xcd\xb8\xb9\x3e\xc4\xb4\x47\x0e\xc6\xf0\xe4\x62\xb0\x55\xde\xe6\x32\x0f\xde\x64\x94\x59\xb0\xc7\x87\x6f\x6a\xb3\xcd\x05\x1c\xba\x4d\x6e\xff\xa4\xf4\x95\x87\xa7\x36\xdb\x0c\x33\xfe\x78\x24\x69\xea\x2c\xd8\x3b\xdd\x7f\xb0\x07\x5f\xde\x2b\x8f\x5e\x4d\x9f\x05\xbb\x8d\x9e\x2a\xb4\x20\x86\x71\xd1\xa6\xbe\x82\xfd\x39\xfe\x43\x7f\x6d\x26\xbe\xf2\x04\xdb\xf4\x57\x10\xdf\xfb\xa2\xa6\xc0\x82\x66\xee\x68\x33\x24\x09\x9a\x49\x91\xcd\xf8\x23\x68\x66\x7f\x36\x9d\x16\xec\x11\xf1\xc7\x1c\x91\x6f\xf1\x07\x77\x83\x56\x0b\xe2\x67\xf1\x83\xa6\xd6\x82\x66\xae\x67\x33\xaf\xb5\x99\xd7\xda\xfd\x35\x7b\xff\x2d\x07\x31\xfc\x57\x7b\xbf\x78\xd8\xad\x76\xd4\x23\x7c\x99\xcf\xc2\x58\xea\xb5\xed\xcb\x6a\xe5\x3d\x4c\x53\x6c\xdb\xb7\x1a\x84\x77\x09\x35\x16\x34\x13\x5d\x9b\x1a\x0b\xf6\x57\xd9\x85\x7a\x2c\x68\xe6\xf0\x35\x3d\x16\x34\x93\x44\x9b\xf1\x52\xb0\x4c\x26\x69\x4a\x2b\x68\x66\x3c\x37\x0d\xb5\x99\xd3\xda\xfd\x79\xfb\x69\x4e\x6b\x77\xc3\xec\xe6\x41\xea\xbe\xb7\x0a\x0d\xb5\x99\xd2\x8a\x58\x34\x0d\x15\xc4\x08\x1f\x44\x54\x54\xd0\xcc\x13\x6f\x2a\x6a\xfb\x32\x5a\x79\x4e\x6e\x66\xb4\x82\x46\xb9\x9e\x6c\x86\x3f\x41\x33\x9f\xba\x19\xfe\x04\x31\xbe\xdb\x8c\xc1\x4e\x10\x6d\x7d\xff\x60\xa7\xce\x8b\xfc\x21\x7f\xcd\x1e\x9c\x26\x1b\x7b\xf9\xd3\x78\x41\x9b\x5e\xd0\x8d\x5a\x82\x36\xbd\xb5\x29\xc1\x60\x3f\x8e\xb2\xb9\x6a\x2e\x68\xc3\xfb\x91\x96\x0b\xda\xf4\x7e\xa4\xe5\x36\xd3\x4f\x7f\xeb\x2f\x37\x6a\x2d\x18\xb4\xe1\xcd\x49\x0b\x06\x6d\xb8\x1f\x55\x5e\xd0\x86\xf7\x00\xfd\x16\xec\xff\xf2\xff\x3d\x86\x2f\x96\xa6\xf0\x48\x57\x70\x41\x1b\x5e\x4a\xb4\x59\xd0\xa6\x17\x1c\x6d\x16\x74\xd3\x61\x9b\x36\x0b\x22\x7e\x8e\x82\x3a\x0b\x76\x1b\x5b\xab\xbb\x82\x36\xbd\x0b\xe8\xae\xed\xfe\x56\x8d\xe5\x1f\x6e\xfb\xb9\xd1\xa6\xf7\x0f\xe5\x15\xec\x5f\xe3\x24\xd1\x5e\x9b\x65\x7e\x7e\x5e\xa6\xd5\x57\xd0\x4d\x9c\x6d\xea\x2b\xd8\x9d\xf7\x63\x76\x9e\x12\xab\xdf\x13\x8f\xfe\x0a\xf6\xc7\xfc\x57\x7b\x7f\x7f\x97\x2f\x86\x57\x0f\x05\xfd\xf7\x35\xb9\xc3\x1f\xe7\x1e\xb8\xc7\x15\x51\xd0\xbf\xed\xd5\x43\x41\xc4\xa7\x33\x8a\x68\xfb\x97\xe7\xca\x28\x69\xa2\x60\xff\x1c\x5b\xa2\x8a\x36\xf3\x5c\x7d\x22\xd0\x44\x41\x34\x43\x3a\x4d\x15\x6d\xff\xf2\x5c\xd9\x11\xba\x68\xb3\x3c\x6a\xf2\xd6\xa7\x29\xa3\x20\x46\xf9\x36\xc5\x01\xf8\x56\x9b\x28\x6e\xb2\x67\x3b\x65\x54\x9d\xca\xd0\x34\x54\xd0\xbf\xdd\xaa\xa1\x36\x97\x36\xff\xe4\x44\x45\x05\xdd\x5c\xed\xa6\xa2\x82\xfe\xed\x2e\x15\x15\x74\x63\x6f\x4d\x45\x05\x7b\x3f\xf0\x9f\x3a\x2a\xe8\x06\x64\x9b\x41\x54\xd0\x8d\x2d\x35\x85\x14\x44\x31\x19\xb8\x19\x32\x6d\xdb\x3e\xbb\xb1\x96\xa6\x7c\x82\xfd\x31\x7a\x60\x80\x14\xec\x36\x3f\xe7\x71\x4e\x9a\xab\x91\x88\x66\x84\x14\xec\x8f\xed\xb6\x6e\x88\x14\x74\x73\x08\xba\x21\x52\xb0\x3f\x66\x5b\xb5\xcd\xd4\x19\xae\xf2\xdd\x19\xa0\x60\xb7\x55\xda\xd2\xb6\xe4\x5f\x6d\x1a\x36\x0d\x53\x75\xfd\xd7\x65\xdb\xb2\xad\xd3\x76\xd8\xe6\x8a\xb3\x08\x4e\xd7\x70\xc1\xfe\x9c\x9b\x72\xdb\x76\xdb\xd6\x68\x7b\x6c\x7b\x6c\x73\xf3\x5e\xdb\xa8\xa5\xce\x23\x4f\x57\x72\xc1\xfe\x18\x9b\x67\xb0\x14\x44\xff\x85\x9f\xb3\xb7\x2c\x82\x5e\xcc\xdc\xe8\x7a\x2e\xe8\x94\x7b\xcd\xae\xe7\x82\xfd\x31\xb6\x58\xd1\x05\xbb\xcd\x9f\x73\x04\xc2\xd5\x6b\xb8\x11\x75\xed\x17\x74\xaa\xdc\x66\x37\xaf\x16\xf4\xfc\x3e\x75\xda\xe4\x82\x36\xd8\x62\x57\x7f\x41\xb7\x20\x4d\x77\xd2\x26\xe8\x96\x5c\xe8\x1a\x31\x88\x1c\xc3\xed\x75\x44\xa8\xde\x9a\x3e\x72\x77\x9d\x18\x44\x35\x59\xb8\x2b\xc5\x60\xb7\xf1\x5d\xad\x18\xec\x36\xfa\x6a\x2a\x2e\xe8\x1a\x63\xd7\x94\x81\xeb\xaf\x65\xd7\x94\x41\x54\xa3\xa1\x5d\x55\x06\xfb\xd7\xe8\x84\x21\x64\xb0\x3f\xe7\x3f\x78\x4c\x6c\x74\x7d\xa3\x6b\xc6\xa0\x6b\x50\x5d\x33\x06\xdd\x18\x4c\xd7\x8c\x41\x54\x9f\x54\xba\x6a\x0c\xa2\x9a\x4e\xd4\x75\x63\xe0\x9b\xee\xae\x1a\x83\xe8\x2c\x0c\x90\x5d\x37\x06\xd3\x34\xa7\xae\x1a\x83\x7d\x9e\xd3\x03\xdd\x18\xfc\xfb\x94\x7d\x27\xac\x3c\x58\xd0\x3d\xbb\x6e\x0c\x96\x5d\x52\x8d\x41\x86\x07\xb4\x6a\x0c\x42\x41\xef\x9a\x31\x08\xdf\xf6\x74\x35\x17\x84\x6f\x1c\xba\x96\xdb\xcd\xe2\xe5\xc9\xa2\x6b\xb9\x20\x4c\x8d\xed\x5a\x2e\x88\xd9\xff\x30\x1f\xba\x6b\xbc\x20\xad\x0e\xd1\x35\x5e\x90\xd6\x7d\xe8\xce\x42\x05\xe1\xc4\xdd\x6e\x6c\xb8\x9b\xe4\xeb\xa9\x64\x20\xb8\x1b\xf5\xe5\x19\xaf\x1b\xf5\xed\x46\x7d\xbf\x2f\xda\x93\x66\xe1\xe4\xe5\x37\xdd\x6e\xa2\xb7\x2c\x03\x95\x5d\x31\x06\xc5\x74\xfe\xae\x05\x83\xe1\x53\x53\xd7\x82\x41\x19\x3c\x1d\x76\xa3\xb7\xc0\x7a\xda\xd9\x8d\xde\x82\xe2\x0c\x82\x6e\xf4\x16\x94\xef\x6c\x53\x9f\x41\x19\x3c\xb3\x77\xf5\x19\x94\xef\x04\xd4\x8b\xc1\x34\x2b\xad\xeb\xc5\xa0\xb0\x14\x55\x76\xbd\x18\x58\xac\x3b\xbb\x5e\x0c\x22\x7d\x74\xeb\x66\xe8\xf6\xe4\x1d\xb0\x27\xa9\xa1\x60\x30\xcd\xb3\xeb\x8a\x31\x98\xdd\x71\x55\x8c\xc1\xbf\x33\x59\x31\x06\xd3\x44\xb8\xae\x18\x83\xf9\x1d\x34\x4e\xfe\x04\xd3\x54\xc3\xae\x17\x83\x68\xcb\x03\x5c\x31\x06\xd5\x9b\x6e\x57\x8c\xc1\xde\x7e\xfa\xa4\x05\x83\x55\x3c\xcf\xb4\x5b\xd0\x9c\xbe\xd2\xcd\xd1\x05\xcb\x4a\x1f\x5d\xe1\x05\x6d\x7a\x7b\x52\x78\x41\x73\x3e\x6b\x57\x78\xc1\xf6\x1e\x7f\xcc\x6e\xa2\xb7\xce\x19\xeb\xea\x6d\xff\x26\x76\x7a\xee\xe9\xb7\x60\xb7\xf9\x73\x76\x74\xa8\x87\xee\x15\x0d\xb7\x9b\xba\xfb\xf3\x68\x54\x67\xc1\x6e\x63\x83\x0d\xf4\x76\xd3\x72\x93\x67\x82\x6e\xa4\x17\xec\x36\x8e\x05\xbd\xb7\xcf\xca\xd3\x04\x3f\x67\x5c\x17\xec\xbb\x93\x3f\x67\x67\xcd\xc2\xf5\x99\xb3\x9b\x85\xdb\x5d\xc5\x63\xf1\xd4\xdc\xf5\x63\x60\x18\xb7\xab\xc7\x20\x32\x3d\xbe\xf5\x63\x10\xc3\xca\x1a\x5d\xef\x05\xb3\x3b\x4e\xea\x2c\xa8\xa6\xbb\x76\x75\x16\xfc\xbb\xfa\x6b\xb3\x60\xf9\x0c\xd6\x0d\xc7\x82\x7d\x89\xf2\x9b\xf6\x60\xe3\x2b\xe6\xd1\xd5\x59\x10\xd5\x84\x8e\xae\xce\x02\xc3\xdc\x5d\x71\x05\xa5\x78\xb3\x32\x1e\xdb\x8d\xc7\x7a\xd3\x54\x5c\x81\x45\x43\xb3\xeb\xad\x7d\x11\xaf\xfa\xbe\xe8\x9e\x5a\xbc\xf0\xe6\x31\xb5\xeb\xa8\x60\x99\x8d\xd6\x0d\xbe\x82\xf6\x3d\x1e\x69\xad\x20\x22\x50\x9f\xae\xa2\x82\xf1\xfd\x96\x7d\xa4\xc8\xac\xfb\xcd\x40\x6b\xb7\x22\x11\x8f\x94\xdd\x40\x2b\xc8\xef\xec\x34\xaa\x0a\xd2\xda\x33\x5d\x67\x05\x61\xcd\x84\xae\xb3\x76\xa3\xaa\x3e\x79\x28\xa8\x60\x76\xde\x20\x75\x05\x15\x54\x03\x8a\x5d\x3f\x05\xd5\xa7\xe9\xae\x8b\xf6\x6f\x2a\xa5\x17\x04\xb3\x6c\xc1\x3e\xc6\x18\x7c\xcd\x13\xec\x43\x96\xad\x75\xde\x24\xe8\xe6\x02\x75\x53\x6f\xc1\xbe\xa5\xfa\x73\xee\x37\x56\xf7\xf8\xfe\xd4\x3e\x99\x7a\xeb\x21\x66\xea\x6d\x37\xf5\xd6\x0b\x82\x16\x0b\xc2\xda\x07\x5d\x89\x05\xd1\x4d\x0c\xe8\x5a\x2c\x48\x6b\x12\x75\x8d\x15\x14\x8a\xfa\x67\xd7\x58\xc1\xa8\xfe\xa5\xc6\xda\x2f\x82\x66\x5e\xe4\xd4\x4f\x50\x8a\xc3\x68\x10\x16\x8c\xea\x56\xe8\x95\xfd\x72\xfc\xe9\xb7\x5e\xd9\x2d\x1a\xe4\x7d\x48\xaf\x04\xff\x1e\x19\xf5\x4a\xf0\xef\xb1\x4f\xad\x04\xb3\xf3\x22\xa7\x1b\x25\xed\xae\x1c\x3f\x7d\xc6\xd3\x34\xc1\xec\x39\xff\x70\x7f\x56\x44\xc1\xb2\x6c\x5d\xd7\x43\xbb\xd9\xb4\xc5\xe3\x59\x11\xed\x2e\xf4\x81\x28\x74\x3d\x14\xb4\xef\x29\x5e\xbf\x04\x7b\xef\xdb\xe6\x28\xdc\xdf\xb3\x86\x9b\xe9\x30\xdc\x3e\x8a\x7b\x22\x1b\x0f\x05\xfb\x2a\xc6\x40\x18\x0f\xed\xce\xae\x1c\x8e\xaa\x22\x0a\xbe\xbb\x90\x1e\x0a\xf2\xe7\x31\xa1\x86\x82\xb0\x86\x42\x57\x43\xc1\x1e\x2e\xba\xa0\x72\x02\x53\x18\xba\xc2\x09\x9c\x7f\xd4\x75\x4b\x60\x60\xb5\x6b\x96\x60\x79\x91\xd7\x17\xfb\xc3\x2b\x4b\xf6\x97\x79\xb9\x20\x43\xff\x50\x17\x41\x86\xea\xa2\x2d\x82\x64\xf9\xb8\xec\xda\x62\x77\xea\xa4\x3b\x55\x5b\x04\x59\xbd\xaf\x6b\x8b\x20\xab\xb7\x4a\x65\x11\x64\xf5\x82\x6f\x40\x13\x64\xf5\x26\xa8\x18\x82\x30\x3b\xa2\x1b\xa9\x04\xd9\x79\x6b\xda\x75\x45\xb0\x1f\x0b\x68\x72\x97\xbd\x4e\x77\xf2\x1f\xed\xd0\xeb\x3c\x5c\x84\x3d\xd5\x42\x10\x46\x5a\xd3\x34\x59\x10\xe6\x35\xa4\x56\x08\xb2\xf3\xa8\x9c\x4a\x21\x48\xaf\x4c\x69\x59\x20\xb0\x6f\xee\x34\xa5\x4d\xe4\xb7\x57\xbf\x38\x6c\xe2\x8a\xc9\xd5\x25\xcd\xaf\x05\xfb\xe1\x84\xa6\x65\x13\x33\x20\xd2\x4d\x3d\x6c\x62\x28\xaa\xff\x78\xda\xc4\x50\x0c\x37\xf5\xb2\xc9\x0b\xce\xa2\xe9\xb6\xc9\xa1\x28\x34\x3d\x36\x71\xc1\xa9\x36\xbd\x36\xbd\x34\xf1\x8f\x6a\x64\x5a\xd4\x16\x3f\x4e\x2d\x32\x2d\x6a\x8b\x6d\xa5\xe1\x53\x90\x9e\xea\xa9\x57\x82\x30\x48\x9f\x6a\x25\x08\x93\x2b\x52\xad\x04\x61\xaa\x40\x6a\x8b\xe9\x02\xf8\x94\x95\xcf\xd4\x03\x41\x6a\x3d\xa9\x07\x82\x5c\xdf\x8f\xd9\xa3\x70\x0a\xdf\xf2\xd7\xec\x92\xeb\x2b\xba\x65\x6a\x60\x5a\x9d\xd6\x71\xd5\x02\x41\x9a\x57\x98\x4a\x20\x48\xd3\x9a\x52\x07\x04\x31\x58\x94\x22\x53\x09\x04\x61\x99\x96\x54\x02\xd3\xea\xb4\xdc\xfc\x52\x07\x04\x69\x9a\x4e\x1a\x2e\x05\xc1\x0a\x5c\x99\x86\x4b\xd3\xea\xb4\x1e\x03\x1a\x20\x48\xf3\xad\x52\xdd\x4b\x17\x09\x49\x37\xcc\x8e\x53\x64\xd6\xfc\xb7\x54\xf6\xd2\xf5\xec\x3d\x36\xb5\x3d\x10\xcd\x17\xa0\x69\x62\x31\x08\x6b\x89\xa4\x02\x08\xd2\x9c\xb8\x54\x00\x41\x9a\xd8\x94\xfa\x1f\x48\x93\xdd\x52\x01\x04\x69\x46\x5f\xea\x7f\x20\xcd\x51\x4e\xd5\x0e\xa4\x99\x92\x69\x54\x13\xa4\x39\x6b\xa9\x82\x81\x42\x99\xeb\x4c\x33\x76\xd3\x8c\x5d\xf7\xa4\x56\x06\x4a\x71\xf0\xcd\xd8\x05\x91\x96\x7a\x4b\x4d\x0d\x94\xe2\x49\x69\xca\x6e\x9a\xb2\xeb\xf0\x68\x6a\x20\xba\xd3\xf1\xd3\x9c\xdd\xfc\xec\x8d\x5e\x6a\x6f\xa9\xbd\x79\xf4\x18\xfb\x04\xfb\x3f\xfd\x03\x8f\x58\x93\x76\x3d\xe1\x14\xba\x34\x1d\xd7\xdf\x57\xe8\xd2\xdc\x5b\xfb\x64\xa4\x13\x94\xe2\xf9\xac\xe3\x81\x7d\xd1\xe2\x28\xd0\xd5\xd2\x45\xe2\xcd\xfc\x48\xcd\x0c\x0c\x27\x5b\xa5\x81\x4d\x50\x46\xfa\x6b\x6e\x6d\x27\x97\x0d\x3d\x4c\xfd\x0d\x0c\xd6\x4c\xca\xd4\xdf\x52\x7f\xcb\xff\x5f\xcb\x39\x53\xbd\x03\x65\x78\x40\xab\x77\x60\x54\x9b\x8c\x71\x82\xb1\x78\x52\x4f\x85\x0f\x0c\xe3\xd7\xe9\x94\x4c\xb0\xcf\x64\x36\x52\x09\x04\xc5\xd2\x2f\xa9\x04\xa6\xe9\xc0\xd8\x69\x2a\x81\xa0\x58\x62\x28\x95\x40\xb0\x77\x8f\x7f\xe0\xce\x36\x45\xd8\x93\x48\x0b\x4c\x2d\xd0\xcb\x9a\x16\x98\x9f\x05\xf2\xea\x26\xb5\x40\x30\xbf\xfb\x80\xb1\x50\x50\x4d\xe8\x49\x25\x10\x54\xf3\x5c\xd2\x50\x28\xa8\xa6\x10\xa5\x91\x50\x30\xbf\xbb\x85\xaa\x08\xe6\x77\xbd\x55\x15\xc1\xde\x7e\xb6\x42\x57\x04\xd5\x14\x96\x54\x0c\xd3\x1c\x61\xef\x6c\x7a\x21\xa8\xc6\xe9\xd3\x48\x28\x58\x96\x3f\x4d\x55\x11\x4c\x6f\x93\xa9\x29\x82\x6a\x12\x48\x2a\x8a\x60\x7e\xf7\x19\x3d\x11\x4c\xef\xc2\x69\x20\x34\xbf\xa5\x1f\x1d\x45\xe7\x78\xa6\x6b\x3f\x62\x8e\xa9\x39\x82\xf9\xdd\x8e\x34\x42\x50\xd3\x3b\x81\x42\x98\x0a\xa1\x99\xc4\xa9\x10\x82\x65\x31\xe2\xd4\x07\x73\xdb\x5f\xf5\xf1\x3d\x95\x3f\x50\x15\xd3\x34\x36\x0a\x96\x75\x80\xd3\xd0\x28\x58\xe5\xfb\xa2\x5d\x9a\xa4\x19\x79\x75\x32\x30\x0a\x6a\x7a\xb3\x36\xd3\x17\xec\xe3\x82\x8d\x55\x24\xc1\xb2\x1a\x71\x2a\x92\xa9\x48\x12\xcd\x48\x45\x12\xec\x53\x99\x5f\xd3\x24\xc1\xb2\x62\x6c\x2a\x92\x60\x59\x43\x3a\x15\x49\x50\xd3\x7b\xb3\x1e\x09\x6a\x7e\x9f\x72\xf7\x2e\xc7\xc2\xbf\x74\x2c\x16\x59\x26\xdf\x17\x1d\x0b\x56\x92\xec\xac\x04\x95\xa9\x49\x82\xf6\xfb\x9a\x3c\x88\x17\x21\x6c\x92\x5d\x52\x93\x4c\x4d\x92\x64\x90\xd4\x24\xc1\x72\x6e\x4d\x6a\x92\xa0\x7d\x07\x81\x22\x99\x96\xb2\xfd\xce\x1b\x2d\x11\x34\xdf\xbd\xa7\x91\x4d\xb0\x9d\x8d\x1d\xa0\x39\xe6\x57\xc2\xc7\x33\x47\x75\x4c\xc3\x9d\x5e\xbf\x8d\x6d\x82\x98\x3e\x78\xa7\xee\x98\x06\x37\xbd\x00\xe9\x8e\xf9\xd5\xeb\xf1\xd4\x51\x1e\xf3\xab\xd7\x83\xf2\xa7\xd1\x4d\xd0\x0c\xeb\xa6\x42\x99\xdf\x62\x24\x78\x67\x1a\xdd\x4c\xcb\xe5\xfa\xdc\x99\x86\x37\x41\x33\x82\x9d\x7a\x27\xd8\xff\x60\x9b\x7b\x14\xef\xec\x66\x72\xa4\xde\x09\xf6\x5f\xd8\xe6\x30\x6d\xb4\xe9\x6e\xd0\x3b\x41\x63\x85\xd5\x4c\xab\xf5\xa4\xd5\x7a\xe2\x6b\x73\x94\x5c\xc9\x24\x7e\x76\xc2\x61\x32\x80\x1a\x3f\xb7\xc4\x61\x72\xd9\x92\xf8\xf9\x17\x8e\x13\xf3\x3e\xfb\x70\x87\x19\x42\x05\xfb\x73\x8c\x9d\x91\x4e\xd0\x34\xba\xd4\x2b\x41\xd3\xb1\xd3\x48\x27\x68\xd3\xe3\xc6\xe4\x5e\xb0\x7f\xcc\x36\xfb\x75\xd9\x2f\xb6\xd7\xe0\x67\x5e\x5f\x1f\x38\x7e\xcd\xe5\x4d\x8b\xee\xc4\xf7\xa7\xf6\x8b\x19\x9c\xff\x9e\xa0\xf5\x54\x10\x6d\xb9\x27\x14\xd5\x34\x00\x1a\x18\x46\xaa\xa0\x60\x3b\x20\xff\xa1\x3d\x82\x6e\x7a\x45\x1a\xb1\xcc\xaf\xe8\x0e\xef\xd4\xd2\x90\x25\xe8\x86\xa3\x53\xa3\xcc\x7f\xf6\x68\x9b\x5b\xbc\xd1\x7d\xdf\x9f\x0a\x25\xe8\xce\xc8\x4d\x7d\x32\x3f\x9f\x24\x43\x27\x75\xc7\xd4\x1d\x1d\x12\xb5\x30\x89\x44\xfe\xbb\x15\x2a\x81\xa0\xe7\x5f\xde\x72\xa7\x92\x08\xe2\xdf\xb3\x81\x9a\x08\xba\xef\x9c\xd3\x58\x23\x88\x5a\xbf\x6d\xb2\x37\xc4\x1a\x4d\x7a\x4a\x63\x8d\xc9\xa4\xce\x6a\xe4\x3f\x55\x45\xe0\xdc\x8d\xd4\x14\x41\xe4\xcf\x9d\xa9\x2a\xe6\x6b\xea\x0f\x2d\x1e\x52\x4c\xd7\x34\xe3\x2c\x4d\x6a\x05\xd9\xbd\x3a\x19\x56\x4c\xe7\x66\x7a\x43\x32\xac\x08\x4a\xf1\xba\x63\x9a\x2b\x28\xd6\x53\x4a\x4d\x11\x14\x53\x85\xd3\x00\x62\x6e\x2d\xac\x26\x50\x0e\xad\x10\x54\x6b\xd6\x0c\x83\x85\x60\xba\x11\x43\x51\x04\x91\x96\xc2\x18\x9a\x22\xa8\xc9\xbe\x1e\x9a\x22\x58\x86\x0f\x86\xa6\x08\x96\x41\x86\xa1\x03\x02\xa7\xac\x0c\x15\x10\xac\xe5\x66\x1d\xb6\x30\xc3\x79\xf8\xe3\xa7\x4d\x4c\xeb\xe5\x49\x70\x68\x80\x20\xd2\x89\x7a\x43\x05\x04\xd1\xbf\xcd\x7a\x6c\x7a\x3c\xc7\xed\x11\xe7\xc7\x40\xf8\x7c\x0d\x35\xb4\xbb\x11\x4c\x8c\xe3\xcc\x1a\xaa\xdc\x08\x1f\xa9\xe9\xb6\xd1\x40\xb0\x6f\x6d\x6c\x87\xd1\x40\x50\x8a\x5b\xab\xde\x81\xe1\x8b\xf5\x61\xe4\x6f\x58\x51\xe7\xfb\x7d\x37\x76\xa3\x3a\xad\x68\x68\x77\x20\xba\xef\x06\x47\x7c\x1b\xeb\x7e\x63\xc8\xb4\x3b\xb0\x0a\xb7\xeb\xa1\xdd\x81\x65\xdc\x77\x68\x77\x60\xf9\x36\x72\x68\x77\x60\x5f\x54\xe8\xb9\x2a\x07\xa2\x59\xf7\x7e\xe8\x72\xa0\xd7\xaf\xc9\x6e\x6e\xf4\x24\x80\x30\x74\xb9\xe1\xc2\xfb\x6c\xbf\xf1\xbd\x51\x58\x3d\xcb\x4d\x75\x2f\x6d\x38\x03\x75\xe8\x76\xc0\xc9\xd2\x43\xb5\x03\xce\xcf\x1e\x2a\x1b\x58\xdc\xbe\x86\x7a\x06\xd2\xc2\xeb\x43\x3d\x03\x3e\x3e\x0f\xed\x0c\xf8\xde\x63\x28\x67\x20\xba\x93\x53\x86\xb1\x38\x90\x61\xe7\x14\x36\x90\xe1\x71\xa3\xb0\x81\xb4\x1c\xf8\x30\x3c\x07\x32\xbe\x0d\xb5\x7b\x95\xb2\x2d\xcd\x2d\xb5\x7f\x1b\x6b\xf9\x3d\xfb\x57\x7d\xe9\xe4\x36\xb8\x53\x2b\x2f\x9d\x1c\x29\xad\x6e\x68\x75\xcd\x7d\xa3\xd5\x81\x64\x5d\xe8\x1c\xc6\xdf\x40\x98\x40\x3d\x14\x3d\x90\x2c\x83\x99\x43\xd1\x03\xe9\x3a\x1b\x43\xcf\x03\xe1\x54\x81\xa1\xd4\x81\x74\xa9\x84\xa1\xd3\x81\xac\xdf\x46\xd8\x21\x2a\xea\x58\x58\x75\x98\xe3\x3a\xba\x6f\xc3\xe8\xb6\x02\x07\xc2\xcc\xeb\x61\x44\x0e\x24\xab\x24\xe6\x30\x22\x07\xc2\x04\xea\xa1\xe5\x81\x30\x9f\x7d\x28\x79\x20\x59\xfd\x33\x87\x92\x07\xd2\xc5\x04\x86\x46\x07\xc2\x94\xed\xa1\xd1\x81\xac\xdf\x76\x7d\x9b\xca\xfd\x26\xfc\x2d\x07\x9f\x88\x9c\x09\xce\xc3\x4c\x55\x10\xa6\x59\x0f\x2d\x0e\x44\x37\x7f\x61\xa8\x71\x20\xd2\xd9\xec\x43\xf5\x1a\x9f\x7a\xb9\x2f\xf5\x2c\x10\x06\x0b\x87\x4e\x05\xb2\x4f\x9b\xdc\x5a\x22\x6b\xe6\xc2\x0e\x9d\x6a\x90\x4b\xea\x0c\x9e\xa1\x40\x81\x70\x8e\xca\x50\xa0\x40\x18\xdf\x1b\x0a\x14\x08\xa7\x24\x0d\xfd\x09\x24\xab\x67\xe6\x30\xd6\x06\xc2\x90\xf6\x50\xa9\x40\xf6\xe9\xcf\xdb\xa3\x61\x45\x6f\x3f\xe5\xf1\x34\x78\x4f\xb7\xfc\x2d\xfb\x48\x89\x9c\x7d\x8b\xf9\xdf\xbb\xf1\x50\xaf\x40\xb2\xf8\x7e\x0e\xf5\x0a\x84\x51\xcf\xa1\x5e\x0d\x17\x79\x5c\xfe\xbb\xfb\x90\x0a\x3a\x4e\x0c\x1a\xe3\x1b\x28\x1e\xdd\x30\xfc\x61\x58\x0e\xa4\x05\xd8\x87\xb3\x2d\x41\x5a\x05\x7e\xe8\x60\x20\x59\x85\x37\x87\x0e\x06\xb2\x13\xe5\x1a\x2a\x18\x48\x56\x0e\xcf\xa1\x82\x81\x70\x5a\xd3\x50\xc1\x40\x38\xf1\x65\xe8\x5b\x20\x9c\x2a\x34\xf4\x2d\x90\xdd\x3b\x9c\xbe\x05\x92\x25\x05\x73\xe8\x5b\x20\xfb\xf4\x8b\xf6\x91\xd4\xd4\x19\x1e\xce\x2a\x18\x08\x67\x3f\x0d\x15\x0c\xa4\x15\x9f\x87\x0a\x06\xb2\x13\x04\x1d\x66\xa6\x82\x30\x00\x3c\x94\x32\x90\xd6\x72\x1e\x4a\xd9\xb0\xe4\xaa\xc7\xb2\x06\x06\xc2\x39\x6b\x43\x03\x03\xc9\x22\xea\x39\x34\x30\x90\x16\x15\x1f\x1a\xd8\xd0\xc0\x08\x09\x0c\xa3\x7b\x20\x9c\x82\x35\x74\x32\x10\xce\xb8\x1b\x3a\x19\x48\x0b\xb3\x0f\x9d\x0c\x44\x57\x93\x87\xba\x05\x62\xfe\x78\xb8\x1e\xc6\xd6\x40\xb8\xc2\x7f\x0e\x05\x09\xe4\xe2\x75\xc9\x50\x90\x40\x58\x3b\x6e\xe8\x47\x20\x4c\x41\x1d\xea\x11\x88\x6f\x61\xa8\xa1\x1f\x81\x5c\x1e\xb0\xea\x11\x48\x83\x47\x43\x3b\x02\x61\x5e\xf7\xd0\x8e\x40\x3a\x55\x7a\x28\x47\x20\x2c\x57\x37\x74\x23\x90\x4e\x6f\x1e\xaa\x11\x08\x57\x94\x1a\xaa\x11\x48\xdf\x26\x0d\xd5\x08\xa4\x53\xb8\x87\x66\x04\xd2\xd9\xcd\x43\xe1\x19\x16\xba\x31\x75\x6d\x28\x3c\x20\x9d\xc8\x3a\x0c\xc0\x81\x74\xfa\xe6\x30\x00\x07\xd2\xd7\x67\xc3\x00\x1c\x48\x13\x6b\x86\xa2\x04\xc2\xfc\x9e\x61\x4c\x0e\xa4\x53\x99\x87\xee\x04\x72\x79\xf9\x52\x94\x40\x3a\x0d\x77\xe8\x49\x83\x3a\x37\xce\xc3\x1b\x46\xee\x40\xb2\xa8\x76\x0e\x35\x09\xe4\x4a\x7f\xde\x23\xea\xe2\xad\xb9\x47\x94\x92\x04\xf2\x7b\x20\xd3\x91\x40\x98\xce\x3e\x0c\xe6\x81\xb0\x4e\xf7\x30\x98\x07\xe2\x3b\x02\x14\x29\x10\x4e\x90\x18\x06\xeb\x40\x58\xa6\x7b\x18\xac\x03\x61\xb1\xed\xa1\x6d\x81\xe8\xbe\x1d\x1b\x06\xeb\xc0\xbe\x79\xf8\x6b\x8e\xc5\xcd\x58\x78\x5b\xd0\xc0\x40\x38\xa7\x64\x68\x60\x20\x9c\x14\x30\x0c\xe9\x81\x5c\x69\x93\xc3\x73\x33\x3c\x3e\x7a\xe8\x64\x20\x9c\xba\x31\x74\x32\x10\xce\x39\x18\x86\xf8\x40\x3a\xf7\x7b\x18\xbc\x1b\x06\xef\x3c\xc5\xb5\x34\x90\xbe\x8d\x1d\xa6\x90\x82\x74\xa2\xf7\x30\x9c\x07\xc2\x89\x0f\x43\x95\x03\xb9\xd2\x4f\x39\x14\x0f\x87\xbe\x97\x0b\x55\x0d\x84\x09\x69\xc3\x54\x51\x90\x6b\xd8\x64\xb7\x2d\xd2\xe3\x45\x45\x79\x1b\x16\xe9\xf1\x99\x5f\x79\x03\xb9\xf0\xc9\x61\x30\x10\xa4\x6f\x89\x87\xc1\xc0\x61\x91\x1e\x2f\x9c\x1a\xde\xb0\x48\x8f\x17\x4e\x15\x6f\x58\xa4\x87\xb7\x89\x43\xc3\x03\x69\x41\x83\x61\x30\x10\x84\xaf\x3e\x86\xd6\x07\x8a\x35\xe4\x86\xc1\x40\x10\x56\xa3\x1c\x8a\xe0\xb0\x48\x4f\xf7\x8b\x0e\xce\xeb\xe0\xf8\x29\x0f\x13\x8b\xf4\xf8\x18\xab\x08\x82\x68\xa3\xfd\xa1\x54\xd8\x30\xf0\x38\x2c\xe2\xe3\xf5\x52\x77\x04\xb9\x7c\x78\xd1\x1d\x41\x0c\xa5\x79\x18\x66\x04\x61\x25\xfd\xa9\x4f\x82\xf8\x8a\xb3\x4c\x85\x12\x44\xce\xaf\xad\xd8\xf6\x55\xdd\x9d\xb4\x55\xdb\xac\xae\x55\xfc\xbd\x66\x1b\x39\xf4\xa6\x66\x4d\x15\x0f\xc4\x30\xac\x3c\x0d\xe0\x81\xdd\x6f\x7e\x4f\xa1\x03\xc3\x55\xcc\xa6\xe1\x3a\x50\x2c\x23\x38\x75\x3c\x30\xea\xb2\x29\x6d\x22\x63\x60\xf8\x5b\xc3\x26\x14\xef\xfb\xad\x69\xd3\xe4\xb7\xe8\x95\xb3\x1d\xc1\xa8\xc3\xa6\xd3\x26\xd7\xb5\x5e\xfe\xd8\x65\x1b\x45\x5f\xa6\x7f\x69\x9f\x82\xa2\x39\xd3\x4f\x3d\x36\x3d\xde\xfb\x1b\x6d\xaf\x6d\x84\x1a\xb8\xe0\x4e\x4d\x10\x8c\xca\x33\xcf\xd4\x04\x41\x61\x95\xd2\x9c\x9a\x20\xd8\x57\x19\xfe\x40\xed\x03\xa3\x72\x19\x9b\x5a\x1f\x18\x95\x03\x76\xaa\x78\x53\xc5\xe3\x92\x35\xcd\xeb\x04\xc5\xaa\x7e\x53\xed\x03\xc5\x9a\x8a\xd3\xa0\x1e\x18\x75\xfa\x45\x7b\x69\x69\x20\x6e\x0e\x53\xf3\x03\xc3\x15\x7f\xa6\x41\x3d\x30\x2a\x57\xdc\xa9\x0d\x82\x51\xed\x91\x01\xbc\x69\x15\x20\xae\xb8\x53\x1d\x9c\x56\x01\x72\xbb\xf4\x41\x30\x2a\xd7\x8f\xa9\x10\xce\x4f\x08\x79\xaa\x9f\xe6\x6b\x82\xf8\x22\x90\x53\x49\x04\xa5\xb8\x97\x94\x44\x50\xca\xb7\x65\x76\xbc\xb2\xcb\x97\x5f\xb4\xe3\x94\xf9\xa9\xc3\x26\xf7\x78\x25\x4e\xe6\x50\x2b\x89\xd3\x32\x3f\x8e\xab\x96\x08\x22\x07\xea\x35\x9d\xaa\x08\x8a\xe5\x31\xa7\x51\x43\x50\xcc\x4d\x98\x46\x0d\xa7\x51\xc3\xe9\xa7\x3c\xd4\x8d\x1a\x7a\x5c\xe8\x97\x60\x58\xd5\x7e\xaa\x97\xd3\xa0\x21\x6f\x33\xa6\x7a\x39\x2d\xfd\xe3\x7e\x53\x2f\x41\x7c\x6f\x03\xa6\x7e\x09\x4a\x71\x64\xf5\x4b\x30\xaa\xd7\x03\xe3\x88\x60\x3f\xa1\xb1\x9b\x74\xce\x69\xf1\x9f\xe1\x66\x38\x3e\xc6\x11\x3d\x09\x75\x4e\x30\x2a\xf7\x9a\xa9\x73\x82\x51\xbf\x5e\x7a\xac\x34\x4f\x08\x7a\xe9\x54\xcb\x69\xf1\x1f\xbf\x68\x00\x12\x14\x4b\x5a\x4e\x65\x15\x14\x57\xdf\x9d\x66\x94\x82\x62\x15\xcd\xa9\xbf\x82\xe8\xbe\x6d\x9f\x0a\x2c\x88\x66\xe9\xa5\xa9\x75\x82\x7d\x89\xe3\x4f\x0d\xdb\x81\x7d\xe9\xe2\x5f\x0d\xb5\x81\xaf\x4e\xfd\x54\x01\xa7\x65\x76\xd2\x4f\xd9\x29\xcb\xec\x70\x17\x9f\x2a\x20\xf8\x2a\xd3\x4d\x15\x10\x7c\xb5\xd6\xa7\xbe\x07\x86\xb7\xc6\xa9\xef\x4d\xcb\xec\x78\xc5\xd0\xf7\x40\x31\x8f\x7c\xea\x7b\xe0\x5b\xf1\x66\xea\x7b\xd3\x32\x3b\x5e\xf1\x0c\xa1\x81\xe1\xfd\x79\x2a\x74\x60\xf8\xee\x6e\x2a\x74\xd3\x92\x3a\xee\x5e\x85\x6e\x5a\x52\xc7\x5d\xa2\xd0\x81\x61\xe1\xdc\xa9\xd0\x81\xe2\x22\x2c\xd3\x08\x1a\xf8\x8a\x32\x4f\x1d\x0f\x14\xe3\xd7\xd3\xcc\x4b\x50\xac\x74\x3f\xd5\xbe\x69\x91\x9d\xef\x8b\x0e\xce\xfc\x64\xc1\xdf\x77\x74\x58\x62\xd2\xa5\x14\xa6\xde\x07\x8a\xeb\x5b\x4c\xbd\x6f\x5a\x78\x87\xfb\xff\x34\x17\x73\x7e\x6b\xfb\x7b\x5c\xeb\x82\xe0\x2b\x04\x30\x0d\xc7\x4d\x2b\xef\x78\x75\x53\x0f\x01\xf5\x20\xfe\xf7\x06\x3d\xb5\x47\xf0\x25\x87\x4e\xbd\x10\x7c\xeb\xcd\x4d\xb5\x70\x5a\x71\x07\x2d\x99\x6a\xe1\xb4\xe2\x8e\x87\xbd\x5a\x08\xc6\x72\xdf\xab\x85\xa0\x0c\xcf\x5a\xb5\x10\x14\x67\x71\x4f\x03\x73\x60\x98\x5b\x35\xd5\x42\x50\xac\x72\x39\xd5\x42\x10\xfd\xe7\xb5\xd5\x14\x4f\x30\x4c\x8f\x9f\x4a\xe0\xb4\xe4\x8e\x67\x95\x12\x08\x8a\xb5\x1b\xa6\x12\x08\x8a\x2b\x2e\x4c\x25\x10\x7c\xa5\x1b\xa6\x81\xb9\x69\x7d\x1d\x8f\x53\x03\x73\xd3\xfa\x3a\x9e\x06\x4e\x4c\x04\xc3\x87\x9c\xa9\x3c\x4e\xeb\xeb\x7c\x3f\x6f\x27\x2d\xda\x6a\x35\x84\x69\xde\xe7\xb4\xc0\x8e\xa7\xac\x11\xbd\x69\x81\x1d\x77\xb4\x11\x3d\x30\x96\x47\xa5\x01\x3d\x30\x2c\xe3\x3e\x8d\xe7\x4d\x0b\xec\xe0\xa1\x53\x5d\x05\x43\xc7\x99\x86\xf8\x40\xb1\x3c\xd7\x54\x60\xa7\x05\x76\x70\x9c\xa9\xc0\x82\x62\xe0\x6a\x2a\xb0\xa0\x0c\xff\x51\x81\x05\xc5\x32\x4f\x53\x7f\x05\x43\x85\x9a\xfa\x2b\x28\xd6\xe4\x9d\xfa\x2b\x98\xbe\x19\x98\xfa\xeb\x74\x31\x4c\x0f\x3a\xfd\x75\x1a\xdc\xfb\xfd\xfc\x7d\x87\x82\x02\x3e\xdd\xe8\xec\x34\x1c\x07\xf6\x23\x1b\x3f\xa7\x3c\x82\x2d\xea\xb6\xf9\xaf\x97\x07\x1e\x7b\x4e\x7b\x04\xd1\x9b\x7f\xa1\x3e\x82\xe9\xaa\x54\xd3\xd0\x1b\x98\xce\x29\x9b\x1a\x25\x98\x96\x90\x98\x1a\x25\xa8\xbe\xa2\x9c\x46\xde\x40\x0c\xe7\xfb\x4d\x2d\x13\x54\xdf\x51\x4e\x2d\x73\x5a\x58\xc7\xdb\xa9\x96\x09\xaa\xef\x15\xa7\x96\x09\xa6\xe5\x07\xa6\x4a\x09\xa6\xab\xa8\x4d\x95\x12\x4c\x8b\x75\x4c\x95\x12\x54\xeb\x64\x4c\x95\x72\x5a\x44\xc7\xbd\xa9\x52\x82\x69\x65\x8e\x69\x5d\x1d\x50\xad\x6d\x31\xb5\x4c\x30\x7d\xbf\x35\x95\x4c\x50\x9d\x56\x32\x75\x4c\x50\x9d\x7c\x32\x15\x4a\x50\x7d\x0f\x3b\xb5\xc7\x69\xc5\x1c\x77\x88\xf6\x38\x6f\xfb\xe8\x3f\x7a\x2c\xde\x04\x28\x78\xcd\x3b\x0d\xe8\x81\x6a\x61\xe9\x69\x36\x28\x98\xbe\x8a\x9b\xda\x23\xa8\xbe\xc0\x9d\xda\x23\x98\xbe\x2b\x9b\xaa\x22\x98\xf9\x7d\xca\x0e\x3d\x74\xc8\x81\x36\xd2\x07\xa6\x8b\xbb\x4d\xed\x11\x4c\x6b\xa7\x4c\xed\x11\x4c\xdf\x40\x4e\xed\x11\x4c\x5f\xc5\x4d\xed\x11\x4c\x5f\x89\x4e\x55\x11\x54\x5f\x19\x4f\x55\x11\x4c\x17\x6d\x9b\xaa\x22\x58\x16\xd2\x9c\xaa\x22\x98\xbe\x2a\x9b\xaa\x22\xa8\x4e\x0c\x9e\xaa\xe2\xb4\x10\x8e\xb7\x48\x55\x11\x4c\xcb\x83\x4c\x55\x11\x54\x63\x86\x53\x55\x9c\x16\xc2\xf1\x22\xaf\x2a\x82\xe9\x6b\xdf\xa9\x2a\x82\xe9\xfa\x78\x53\x55\x04\xd5\x8a\x34\x53\x15\x04\xd5\x8a\x1e\xd3\x1c\x54\x50\x9d\x13\x30\xb5\x43\x30\x5d\x01\x72\x9a\x83\x0a\x66\x72\x30\x2d\x4d\x10\xec\xd3\xbb\xd2\x16\xb6\x69\x82\x28\xf8\xd2\x04\x41\x0c\x57\x1e\x5c\x9a\x20\x88\xe1\xe2\x68\x4b\x13\x5c\xae\x4e\xc9\x1d\x7d\x19\x5c\x04\xd5\x29\x55\xcb\x34\x54\x30\xad\x24\xb3\x4c\x43\x05\xd3\xb7\xc9\xcb\x10\x24\x98\xbe\xcb\x5e\xc6\x20\x97\x65\x5e\x7f\xbf\x3f\x24\x68\x2f\x83\x94\x60\x26\x3b\x63\x19\xa4\x04\xd3\xd5\x2d\x96\x41\x4a\x30\x0d\x65\x2e\x05\x16\xd4\xf2\x6d\xe4\x63\x13\x47\x57\xb1\xc3\xaf\x4d\x94\x59\xe2\x5e\xb7\xb4\xdc\xe5\xe2\x94\x3c\x4e\x2c\xd3\x54\xc1\x74\xcd\xbe\xa5\xf7\x82\x6a\x7c\x68\xe9\xbd\xcb\xf5\x2a\x79\x84\x58\x7a\x2f\x98\xae\x68\xb8\x4c\x53\x05\xd3\x1a\x2f\x4b\xef\x05\xd3\x1b\xe2\xd2\x7b\x41\x74\xef\xfb\x4b\xf1\x05\xf1\xad\xd4\xb2\x34\x5f\x10\xcd\x4c\xc0\xa5\x72\x82\xe9\xbc\xdc\xa5\x39\x82\xe9\x8b\xea\x65\xc4\x10\x44\x3a\x87\x6a\x29\x85\xcb\x92\x37\x5c\x0d\x97\x99\x9e\xa0\x26\x2f\xa8\x96\x52\x08\x56\xe1\x66\xbd\x0c\x1b\x82\x65\x39\xd5\xa5\x27\x82\x65\xa9\xd1\xa5\x27\x2e\x2b\xde\xf0\xfc\xbe\xf4\x44\x10\x69\xe8\x7d\xe9\x89\xcb\x92\x37\xdc\x02\x97\x9a\x08\x96\xab\x94\x2f\x35\x71\x59\xf1\xc6\x23\x5a\x27\x04\xab\x7c\xbf\x65\x2f\x2b\x49\x58\xd3\x26\x0f\x0c\x02\x87\x16\xd8\x5d\x3a\xe1\xd2\x09\x2d\x0a\xb1\x0c\x1d\x82\x65\x95\xe2\xa5\x26\x2e\x2b\xda\x78\xb2\xa9\x89\xcb\x8a\x36\x3c\x59\x2c\x35\x11\x2c\x27\x68\x2f\x35\x11\xec\xe3\x9e\x81\xd5\x13\xc1\x72\xf6\xc5\xd2\x13\xc1\xb2\x14\xf3\xd2\x13\x41\x0c\x3d\x62\x29\x85\xab\xd1\x73\xcf\x5b\x0d\x10\xd4\xfc\xfe\xd3\xc1\x68\x0e\x86\x9f\x72\x30\x1a\x83\x61\x2f\xb5\x3d\xb0\x5c\xe8\x7c\x69\x7b\x60\x99\xf9\xb0\x54\x3b\xb0\x0c\xd1\x2f\x73\x4b\xc1\x32\x1c\xbf\xb4\x3d\x50\x5d\x96\x68\x69\x7b\xa0\xba\x70\xc8\xd2\xf6\xd6\x67\x7b\xbc\x6c\x5a\xda\x1e\x18\xbe\xa6\x5c\x86\x2b\xc1\xb2\x48\xec\x72\x02\x21\x58\x66\xed\x2e\x23\x98\x60\x95\xef\xb7\x1c\x8a\xee\x50\xd0\x23\xd3\x54\x41\x75\xb1\x92\x65\x50\x13\x2c\x93\x82\x97\x7a\x09\xaa\x33\x95\x97\x41\x4d\x50\x9d\x0b\xb6\x0c\x6a\x82\x65\x14\x7f\x19\xd4\x04\x35\x79\xf5\xbe\x0c\x6a\x82\x7d\x0d\x66\x78\x0c\x6a\x82\xe5\x1a\x2d\xcb\xdc\x54\x50\x9d\xba\xbc\x4c\x4d\x05\x31\x7f\x5e\xf0\x94\x5c\xb0\x4a\xf7\xc7\x1c\x31\x2a\xf7\xb8\x8c\xfd\x32\x40\x0a\xf6\x23\x21\xdd\x34\x37\x15\xd4\x74\x14\xad\xdc\x03\x96\xb3\x48\x97\x61\x54\xb0\xac\xf7\xbb\x74\x68\x50\xd3\x81\x35\xb2\x0a\x96\xe5\x5f\x97\x5a\x0d\x6a\x7a\x5a\x9a\xc0\x0a\xaa\x53\x16\x97\xa6\xbd\x9c\xc5\xc8\x03\xf9\x32\x81\x15\x4c\x17\x2e\x5e\xca\x37\x58\xd6\x5a\x5f\xca\x37\x88\xa6\x0b\x2f\x03\xb0\xeb\xcb\x60\xed\x7e\xd5\x31\x1b\x9e\x4a\x36\x39\x64\x1b\xd5\x09\xc4\x4b\x23\x07\xcb\x59\x4b\x4b\x23\x07\x35\xdd\x25\x1a\xf9\x32\xa9\x95\xe7\xe5\xa5\x91\x83\xea\x3a\x5a\xcb\xa0\x2c\x58\x56\x6e\x5e\x4a\x3a\x58\xbe\xc9\x5a\x8a\x35\x88\x74\x72\xd9\x52\xa3\x41\x4d\x2f\x5b\x6a\x34\x58\xbe\x0f\x5c\x2a\x33\xd8\x47\x01\xff\xa9\x33\x83\xea\xd4\xf7\xa5\xf9\x82\xe8\xe6\xf9\x2c\x63\x9e\x60\x99\x14\xbf\x8c\x79\x82\xe5\xfc\x86\xa5\xc8\x82\x65\x30\x6d\x29\xb2\x60\xad\xf2\x07\x67\x5e\x4a\x2d\x58\xc6\x9c\x96\x52\x0b\x6a\x7a\x7a\x18\xeb\x04\xcd\x09\x50\x4b\xcf\x05\xcb\x39\x18\x4b\xcf\x05\xcb\x68\xd2\xd2\x73\xc1\xbe\x37\xd0\x3b\xe3\x9f\x60\x99\xdf\xbf\x8c\x7f\x82\x65\x1c\x67\x69\xc3\xa0\x59\xc0\x62\x69\xc3\xa0\x59\xfe\x61\x59\x95\x07\x2c\x63\x2f\x4b\x1b\x06\x7b\xdc\xf9\x4b\x75\x78\x7d\x79\xaa\x74\x49\x1d\x5e\xe6\xa9\x7a\x74\xa9\xc3\x20\x9a\x4b\xf8\x2c\x7d\x18\x34\x4b\x90\x2c\x7d\x18\x2c\xe3\x87\xcb\x59\x90\x60\x19\x1e\x59\x2a\x32\x68\x16\x25\x59\x1a\x32\x58\xeb\xfb\x79\xc7\xe7\xcb\x79\x75\xc3\x1c\x9e\x83\xe1\x21\xee\xb8\x34\x64\xb0\x0c\xdb\x2c\x0d\x19\x34\x8b\x79\x2c\x0d\x19\x2c\xa7\xa8\x2c\x0d\x19\x34\xb3\x16\x97\x86\x0c\x9a\x55\x50\x96\x86\x0c\x96\x05\xac\x97\x86\x0c\x96\x33\x54\x96\x86\x0c\x96\xb3\x0f\x97\x86\x0c\x22\xab\x97\x60\x15\x19\x2c\xc3\xb2\x4b\x45\x06\xcd\x09\xbf\x4b\x45\x06\xcb\xb8\xcd\x52\x91\xc1\x72\x72\xc8\x32\xc4\x0b\x9a\x75\x47\x96\xd2\x0c\x96\x91\xda\x65\xf0\x16\x34\x0b\xb6\x2c\xe7\x58\x82\xe5\x0c\x95\xa5\x59\x83\x65\xd8\x74\x99\xe7\x0a\x96\xb9\x6d\xcb\xa8\x2f\x58\x86\x73\x97\x41\x5f\x10\xf9\x3d\x26\x1a\xf5\x05\xcd\x94\xce\x65\xd4\x17\x2c\xc3\x4e\x4b\x71\x07\xcd\x7a\x28\x4b\x6f\x07\xcb\xd8\xd7\xd2\xd1\xc1\x32\x30\xb8\xb4\x6f\xb0\x7c\xf1\xbe\xb4\x6f\xb0\x0c\x61\x2d\xe5\x1b\x34\x2b\xcb\x2c\xe5\x1b\x34\x97\x0f\x58\xca\x37\x68\x66\xa4\x2e\xe5\x1b\x2c\x67\xe6\x2c\x43\xbc\x60\x19\xd9\x5e\xfa\x38\x68\x56\x1e\x5a\xfa\xf8\xb2\xaa\xed\x74\xc4\xb4\x6f\xd0\x4c\x82\x5d\xda\x37\x58\x46\x52\x97\xf6\x0d\xa2\x7f\xc7\x98\xfa\x0d\xf6\x89\x4a\x07\x8c\xde\x82\x65\xe8\x7f\x69\xc3\xeb\xf9\xa2\x62\x1c\x05\xc6\x57\x41\xfc\x5c\xc6\x65\xe9\xc3\x60\xb7\xb1\x71\x86\x53\x41\xfc\x5c\xae\x66\x29\xc9\x20\x7e\x2e\x98\xb2\xb4\x64\xb0\xdb\xd8\x14\x35\x19\x34\xcb\x82\x2d\x35\x19\x44\x37\x47\x76\x29\xc5\x20\x7e\xae\x20\xb4\xb4\x62\xb0\x37\xc5\x9f\x73\x3f\x3c\xd4\xda\xf2\xbc\xd3\x94\xc1\xfe\x57\xbe\xaa\x04\x83\xfd\x55\x86\x5d\x0b\x06\xfb\x73\xb6\x39\xec\x2f\x65\xb4\xbc\x70\xa8\xc1\x20\x7e\x4e\x2d\x5c\x4a\x2f\xd8\x5b\x47\x67\xb5\x5e\xb0\x7f\x8e\x5d\xa6\xf6\x82\x3d\x50\x1c\x72\x7a\x2f\xd8\xd7\x6e\xbf\xeb\x61\xc8\xe4\xcb\x74\x7a\xe9\xd2\x7c\xc1\xfe\x3d\xbf\xeb\x08\xbc\x8e\x80\xc7\x98\xee\x0b\x9a\x55\xe6\x96\xc1\x52\xb0\x7b\xeb\x57\x3d\x14\x09\x96\xfe\x5c\x0a\xe7\xd0\x91\xc1\xde\xbc\x46\x5b\xd8\x46\x46\x3e\x77\x96\x43\x45\x06\xcd\x1a\x70\x87\x86\x7c\x18\x2b\x35\xb1\xf6\xd0\x90\xc1\xde\x38\xdb\xba\x6d\x94\x56\xe0\x8c\x3e\x54\x64\xb0\xff\xb4\xd3\x36\x6c\x73\xec\xb8\x35\x1f\x4a\x32\xd8\xfd\x4f\xda\x96\x6d\xcb\xcf\xb9\x75\x87\x6d\xd4\x9e\xe3\xf6\x75\xa8\xc1\x60\x1f\xdb\x7f\xc8\xd3\x3e\xd4\xe4\xc3\xd9\x9c\xb9\xfc\xb7\xdb\xb6\xdb\x2d\x70\xab\x5e\xdb\x1c\x46\x6e\xb3\x87\x0e\x0c\x9a\x45\x20\x0e\x85\x17\x34\x4b\xd8\x1d\x0a\x2f\xd8\xbf\xc6\xb6\x6b\xbc\x60\x8f\x05\xff\x60\xf4\x17\xec\xe3\x8d\x31\x53\x83\xc1\xfe\x9c\xff\xea\xf8\x84\xe3\xc3\xd5\xf8\xb0\xe0\x0f\x68\x56\x26\x3c\x54\xe3\x43\x35\x56\x53\x0f\xd5\x18\xec\x63\xc1\x36\x07\x20\x9c\xce\xca\x31\x73\x18\x15\x06\xfb\x73\x76\xe3\xb1\x8d\xc9\x1e\xc3\xce\x3a\x26\x41\x45\x4a\xe4\xe9\x30\x2a\x0c\xf6\x37\xe9\xac\x61\x61\xd0\xac\xcd\x77\x98\x0d\x0c\x9a\x75\x19\x0f\x15\x1d\xec\x6e\x71\x78\x18\x16\x06\xbb\x8d\x6d\x33\x1b\x18\xec\x7f\xf0\xbb\x0e\x49\x71\xb2\x83\x43\x62\x18\x18\x44\xcf\xe9\x96\xd8\x57\x17\xdb\xb4\x94\xe7\x61\x6c\x18\x44\x77\x16\xf6\xa1\xce\x83\x88\xf0\x10\xd4\xe7\x41\x74\x9f\x83\x0e\x85\x1e\xec\xcf\xd9\x66\x3f\x36\x9a\xd3\xe1\x0e\x55\x1d\x34\xe7\x99\x1f\xaa\x3a\x68\xd3\x23\xcc\x88\x2e\x68\x33\xfc\xa2\x7d\xa8\xce\xce\xf0\xa0\x53\xdf\x41\x84\x39\xbd\x87\xfe\x0e\xda\xf4\xa4\xd4\xdf\xc1\xde\x34\x86\x4e\x7f\x07\xfb\xe7\xf8\xaa\x02\x0f\xf6\xd1\xc9\xdf\x6a\xf0\x60\x7f\x8e\xef\xea\xe6\xa0\x39\xf1\xf3\xd0\xcd\x41\xa4\x09\x24\x87\x72\x0e\x22\x4c\x4b\x3e\x8c\xe2\x82\x36\xdd\x39\xfa\x3a\x68\xf3\xdb\x10\x47\x84\x24\xe1\x30\xed\xe0\x50\xd8\x41\x73\xe6\xe7\xa1\xb0\x83\xbd\x1b\x18\x39\x43\xb6\x47\xb3\xaf\xdc\x6e\x0f\x95\x1d\xec\x61\x62\xd7\x18\xa1\x05\xbb\x8d\xcf\xe9\xf1\x60\xf7\x95\xff\x50\xe4\xc1\xfe\x0f\xdb\xdc\xfd\x24\x19\x37\x5f\x31\x1c\xaa\x3c\xd8\xbf\xe7\xe7\x1c\x14\x5c\x3e\x4c\xd5\x3e\x74\x79\xb0\x3f\xc7\x36\x2b\xf3\x20\x9a\x99\x0b\x87\x36\x0f\xda\x74\x97\x69\xf3\xa0\x4d\x0f\x44\x6d\x1e\xec\x2d\x66\x8f\xa9\xf3\x60\xb7\xb9\x75\x8e\x4a\x77\x2a\x92\x23\xa5\xbd\x83\xbd\x25\xfe\x85\x23\x45\xf5\xdc\xe9\x31\xa6\xbe\x83\xfd\x31\xdb\x1c\xa8\x8d\x36\xfd\x07\xf5\x1d\xb4\xc9\xad\xfa\xd0\xd5\xc1\xfe\x26\xdd\xd7\xd5\xc1\x7e\x30\xf1\xd7\x1c\x92\x74\x48\x1c\x62\x6d\x1d\xec\x36\x3a\xa6\xad\x83\xdd\xc6\x91\xa2\xae\x83\xfd\x55\x3f\xe7\xa0\xe4\x37\x28\x74\x56\x61\x07\x6d\x7e\x5f\x75\x4c\x5c\x2d\x34\x3c\x8c\x75\x71\xb0\x7f\x8e\x03\x4f\xf3\x06\x7b\x93\x19\x27\x95\x1a\xec\x36\x7e\x4f\x81\x3e\x5c\xe5\xd3\x5a\x9e\x87\x22\x0c\xa2\xff\xbe\x36\xc7\x7d\xa3\x5b\xfb\xe5\x30\xea\x7c\x58\xf2\xc7\x77\x43\x87\x76\x0c\xba\xcf\x9b\x87\x61\xe7\xe3\x5f\xc5\x1f\xfe\x55\x61\x06\x7b\x4b\xe8\xac\xc6\x0c\x22\x7c\xdf\x75\x18\x79\x06\xdd\x07\xe6\x43\x8b\x06\xfb\x5f\x6d\x73\xdc\xa7\xeb\x84\xe3\x43\x87\x31\xe5\xc3\xfa\xb7\x5a\xeb\xa1\x5a\x83\xc8\xf4\xa9\xc1\x18\x31\xd8\xbf\xc7\xbe\x55\xb7\xc1\xfe\xae\xff\xe1\x00\x4c\x57\x4a\xf7\x6e\x64\x30\x19\x44\x37\x6f\xe6\x50\xc2\x41\x77\xaa\xdc\xa1\x84\x83\xfd\x17\x7f\x48\xf7\x3e\x8c\x36\x1f\xae\xd8\xe9\xeb\xad\x43\x33\x07\x7b\x0b\xd8\x2a\xd5\x1c\x74\xa5\xf2\x50\xcd\xc1\xfe\x98\x5f\x75\x2f\xaf\xaf\x84\x0d\x1b\xaf\x9c\x83\xee\xf4\xba\x43\x11\x07\x31\xbf\x1d\xaf\x89\x83\xbd\x25\xfe\x85\xc7\xe5\xb2\xbe\xa4\x97\x2b\x5d\x1c\x74\x6b\xc0\x1d\x46\xa6\x0f\x57\xfc\x34\x23\xf0\xd0\xcf\xc1\xfe\x2a\x47\x88\x82\x0e\x76\x1b\x07\x97\x82\x0e\xba\x59\x02\x87\x82\x0e\xf6\xc7\xf8\x39\x0d\x1d\x74\x6d\xfc\x50\xd0\x41\xb7\x38\xd5\xa1\xa0\x83\xdd\x07\xff\xc0\x61\x3a\x1c\x26\x2f\x24\x2a\x3a\xd8\x9f\xf3\x5f\x1d\x26\xaa\x17\x35\xe7\x91\x1c\x4a\x3a\xd8\x5b\xe2\x7f\x38\x26\x16\x2b\xfa\x79\x19\x56\xc0\x41\x77\x6a\xdc\xa1\x80\x83\x28\xdf\x1e\xd3\xc0\x8f\xad\xdb\xdd\xe2\xe2\x87\x6e\x7d\xb8\x4c\xa8\x69\xca\x87\x72\x0d\xa2\xbb\xee\xc4\xa1\x5c\x83\x6e\xf5\xa8\x43\xb9\x06\xfb\x1f\xd8\x10\xed\x1a\xec\x8d\xe3\x5f\xd5\xeb\x83\xa9\xa4\x45\x9f\x3b\xcc\x97\x06\xdd\x85\xd0\x0e\xfd\x1a\x44\xf1\xbd\xcb\x61\xc2\x34\xd8\x6d\x6e\x89\xfd\x3f\x29\xcf\xe9\x7e\xd5\xb0\xc1\xfe\x98\x1d\xb3\xaf\x96\x31\xf2\xad\xf9\xa1\x29\x83\xee\x1a\x74\x87\xa6\x0c\xba\xab\xbb\x1d\x86\xb3\xc1\xfe\x35\x36\x4e\x55\x06\xbb\x8d\x9d\x68\x3c\x1b\xec\x7e\xf9\x5d\xfb\x75\xf9\xd6\xc9\x4e\xe8\xd4\x60\xdf\x23\xfd\x3d\x3b\x46\x48\x3b\x8d\xe3\x1d\x5a\x35\x88\x62\x45\xeb\x43\xad\x06\xbb\xcd\xcf\xd9\xdb\xcb\x02\x40\x1e\x3c\x5a\x34\xd8\x6d\x6c\x8b\x1a\x0d\x76\x1b\xe3\xae\x47\x83\xfd\x7b\x6c\x9f\x1e\x0d\xba\x52\x76\xe8\xd1\x87\x89\xd1\xe6\x6f\x1e\x46\xa3\x0f\x57\xfb\x54\xf2\x0e\xa5\x19\xec\x9f\x63\xe0\x0d\x51\x83\xfe\x3d\xc3\x9b\xf3\x0c\xba\x25\xdb\x0e\xa3\xd6\x60\x7f\x93\xdd\x63\xd8\xfa\x70\x22\x2a\x52\x7a\x98\xf4\x7c\x7c\x13\x51\xbd\x28\x18\xca\x3e\x2c\x6c\x64\x09\xe8\xc3\x58\x36\xd8\x6d\x74\x42\x7d\x07\x7b\x9f\x31\x9e\x6a\x39\xe8\xfa\xec\xa1\x81\x83\xfd\x55\x36\x58\x03\x3f\xfe\x4d\x49\xf5\xab\xf6\x8b\xfa\xb7\xdf\x0c\xce\x43\x05\x07\x7b\xf3\xd8\x64\x15\x1c\xf4\xe4\x15\xf3\xa1\x6e\x1f\x8f\xa5\x98\x7c\xfc\x37\x0c\x0d\xe2\x2b\x53\x71\xa8\xe0\x87\xf5\x8b\xcc\x9c\x3a\xd4\x6d\x10\x5f\x21\x89\x43\xb7\x06\x7b\xf7\xb0\x29\x7a\x34\x88\xfa\x1d\x65\x7a\x34\x88\x6f\x42\xe3\xa1\x47\x83\x6e\x51\xc6\x43\x8d\x06\x5f\x4c\xe5\xd0\xa2\xc1\xfe\xb5\xfd\xb1\x53\x15\x06\xbb\xad\xd3\x56\x6c\x2b\xb6\x05\x6d\xd5\xb6\x6a\x5b\xa5\xad\xd9\xd6\xf8\x0b\x3f\xd6\x6d\xea\x9e\x16\xfe\xdc\xb4\x8d\x72\xa4\xbe\xf3\x3e\x95\x57\xd0\x67\xb5\xe9\xb4\xe9\xb4\x92\xe9\xa2\xed\xb5\xed\x75\x7a\xf0\xee\xff\x69\x30\x16\x74\x4f\xc6\x53\x11\x3d\xa3\xf8\x31\x3a\xa6\x89\x82\xa8\x9e\x78\xa7\x8a\x09\xbe\xcb\xe2\xa9\x61\x82\xa8\xbe\x6d\x38\x35\xcc\x33\x96\x6d\x49\x9b\x1b\x8c\x4e\x56\x9d\xf8\x54\x13\xc1\xbe\x2e\xf8\xdd\xc7\x36\x66\x2a\x1b\x09\x3f\x95\xc2\xd3\x54\x61\xfa\xa0\x12\x82\xb5\xfe\xf0\x5e\xfd\x54\x18\x41\x58\xf2\xee\x54\x18\x41\x1a\x81\x3e\xf5\x40\x90\xa6\xa7\x9d\x2a\xdf\xe9\x42\xa1\x9c\xa5\xa7\xc6\x07\x46\xfb\xb9\x85\x8e\xb3\xa9\xbf\xdc\xf5\x4e\x53\x7f\xc1\x68\xfe\xbc\x5a\x08\xca\x58\x36\xb9\x5d\x64\x03\x2f\xee\xa0\xa7\x52\x08\x46\xe3\x11\xe6\xd4\x09\x4f\xd7\x04\x9d\xdf\x37\xdd\x17\xac\x09\x6a\xd5\x99\xd3\x28\xef\xc9\xfa\x9f\x56\xaf\x38\xf5\x44\x30\xad\x94\x7d\xea\x89\xa0\x5a\xa3\xe3\xd4\x13\xc1\xb4\x76\xe6\xa9\x26\x82\x69\xc5\xbe\x53\x4b\x04\xb5\x7c\x4d\xee\xad\x6a\x68\xca\x2f\x3a\x14\x95\xe4\x12\x7f\x5e\x1f\x3c\x8d\xe8\x72\xc9\x39\x8d\xe8\x9e\x46\x74\x3d\x08\x8d\xe8\x82\x65\x92\xf2\xa9\x21\x9e\x46\x6f\x79\x41\x72\x2a\x88\x60\x99\xe5\x7b\xea\x87\xa0\x3a\xbf\xf7\xd4\x0f\xc1\x32\x25\xf6\xd4\x0f\x41\xf3\x09\xe9\x34\xc4\x0b\x96\x33\x83\x4e\x8d\x11\x2c\xa7\xdb\x9c\x1a\x23\x68\x5e\xa7\x4f\x85\x11\xac\xef\x3c\x30\xea\x0b\x9a\xd5\x0c\x4f\x75\x11\x34\x6b\x77\x9e\xda\x22\x88\x9f\x65\xbd\x4e\x6d\x11\x44\x1a\x78\x3c\x35\xc3\xf3\x33\xc3\xe6\xcf\x39\x18\xff\xcc\xd0\xdf\x73\x34\x3e\x33\xe4\x56\x73\x6a\x86\x60\xfb\x83\xff\x61\xe7\xd5\x40\x77\x8a\xca\x77\xaa\x7c\xdf\xb0\x19\xc2\x05\xdd\x62\x0e\xa7\xc6\x77\x3a\x09\x55\x09\x38\x35\x3e\xd0\x5d\x21\xf4\xd4\xf8\xce\xfc\x6e\xab\x7c\x4c\xe3\x03\xdd\xb7\xd3\xa7\xc6\x07\x5c\x95\xef\x34\x5e\x0b\x5c\x04\xf9\x54\x01\xc1\x77\x46\x28\x80\x20\x0c\x80\x9e\xfa\xdf\xf9\x2f\x32\x4b\x93\x7b\x13\x85\x73\x8d\x9b\x53\x5d\x03\xa3\xfd\xfc\x94\xdb\x8e\xad\x8d\x74\x47\x19\x14\x05\xd5\x9b\xd3\xa9\xac\x81\x7d\xc6\x31\x88\xca\xda\x69\x6d\xd7\x6f\xc4\x0c\x77\x82\x66\x95\xe9\xd3\x70\x27\xe8\xae\x23\x7c\x1a\xee\x04\x2e\x17\x79\x2a\x79\x20\x86\x3e\x73\x1a\xee\x04\xdf\xd9\xab\xf6\x81\x34\x5f\xf0\x54\xfb\x4e\x67\x8f\x72\x83\x3c\xb5\x3e\x90\xa6\x73\x9d\x5a\x1f\xd8\xf7\x42\x7e\x4c\xeb\x03\x69\xae\xf4\xa9\xf4\x81\x70\x91\x9e\x53\xe7\x03\x69\xa2\xed\x69\x94\x14\x84\x6b\xe1\x9c\xa6\x11\x83\xd1\x7e\x7e\xca\x3e\xb2\x7e\xa7\x05\x04\x4f\x85\x0f\x14\x0b\x08\x9e\xfa\x1e\xf8\xd2\xea\x4f\x75\xef\xdc\x6a\xf7\xcd\x85\x3c\x35\x3b\x30\x7f\x5e\x61\xb5\xb8\xf3\xcb\x09\x66\x23\xb4\x2f\x30\x2d\xb0\x73\x6a\x5f\x60\x5a\x2d\xf2\x54\xbe\x40\xb5\xf2\xcf\xa9\x7b\x81\x99\x5f\x93\x1d\xa2\x32\x4f\xf9\x7e\xcb\x0e\x2d\x2e\x9d\x9e\xaa\x9a\x17\x58\xe6\x9b\x9e\x1a\xd5\x69\x28\x13\x53\x3c\xb5\x22\xb0\x4f\x72\x46\x47\x2d\x3a\x5d\x60\xc4\xe2\x7d\xa7\x5e\x04\x5a\xf3\x22\xa5\x16\x81\xfd\x31\x3a\xa0\x16\x81\xdd\xe6\xe7\xec\xc1\xe1\xab\x0e\x6f\xce\x46\x25\xcf\xc3\x77\x38\x9e\x96\xfa\x0e\xd8\x27\x39\xc3\x76\x7c\x5b\xec\xbb\x04\xb7\xce\xf1\x56\x81\x78\xd6\x39\x8d\x38\x82\x7d\x42\xf3\xaf\x2a\x10\xe8\x56\xb8\x3d\x35\x20\x90\x3e\x73\x9d\xda\x0e\x88\xf5\xfb\x43\x6d\xb2\x53\x17\x02\x69\xe6\xfd\x69\xa8\x11\x14\x2b\x54\x9e\x6a\x0f\x28\xae\xd0\x71\x1a\x57\x04\xd5\x12\x51\xa7\xd6\x03\xa6\xb5\x62\x4e\x83\x88\xa0\x26\x51\xa2\xd3\x20\x22\xa8\x49\x4a\xc2\x69\x0c\xf1\xfc\xd6\xd4\xf4\x1a\xa9\x07\x9d\x86\x07\xbf\x8f\xd9\x3b\xaa\xe7\x58\x29\xe8\x54\x79\x40\x44\xf8\x1c\xa7\xf2\x9c\x5f\xf9\x1c\x87\x54\xe5\x01\xfb\x52\x4a\x3f\x55\x1e\xb0\x9f\xbc\xe8\xa8\xca\x03\x5c\x95\xf6\x54\x78\x40\x7e\x67\xb3\xbe\x03\x9c\x7c\x79\x6a\x3b\xa7\xb6\xe3\xae\x50\x76\x40\x56\xde\x38\x9d\x26\xec\x82\x70\xe1\xa3\x53\xd5\x01\x35\x7d\x36\x52\x75\x80\x53\x96\x4f\xa3\x83\x20\x9d\x01\x72\x9a\x9c\x0b\xc2\x05\xca\x4e\x75\xe8\x74\x02\xe8\xf0\x8b\xf6\x10\xf3\xb1\xa0\xcf\xa9\xf9\x00\x97\x33\x3e\x15\x1f\x10\xdf\x3a\xf4\xa7\x96\x03\xd2\x44\xbf\x53\xa1\x01\x69\x6a\xfa\xa9\xcf\x9c\x86\x23\xbf\x0e\x19\x8e\x04\xa3\xe1\x33\xa7\x09\xbb\x60\xb4\x9f\xdf\xb4\x8f\x8f\xcf\x59\xf4\xc8\x58\x24\x18\xa6\x6c\x9f\x8a\x10\x18\x96\xb6\x38\xf5\x20\x30\x1a\x01\x8f\x53\x0d\x02\xfb\xe0\xf1\xf7\xed\xe5\x43\xb1\x5e\x5e\x04\x9c\x26\xde\x82\x6a\x95\xb3\x53\xe3\x01\xd3\x77\x5d\xa7\xf1\xc5\x93\x94\x5a\xdf\x16\x9d\xc6\x08\xcf\x97\xe7\x19\x8f\x7d\x35\x06\x2c\xe7\x06\x9d\x5a\xcc\x69\x34\xd0\x0c\xaf\x53\x8d\x39\x5f\xb3\xf5\x6c\xf2\xd0\x79\x49\x31\xf2\xde\x69\xe0\x0f\x2c\xa7\x98\x9e\xc6\xfd\xce\x2f\xee\xc7\x6e\xba\x94\x9d\xcb\xb8\x9f\x55\x6a\x2e\xe3\x7e\x60\xb7\x0d\xda\x8a\x6d\x5e\x01\x79\x31\x72\x29\x40\x60\x9f\x11\x95\xb6\x66\x9b\x8f\x39\x78\xd7\xa5\x01\x81\xa6\xd9\x5c\x46\xfe\xc0\xfe\x58\xa3\x6d\xda\x36\x39\xac\xfc\xd7\x65\x93\xef\x1c\xd3\xaf\x9e\xb6\x59\xed\x69\xf9\xb9\xcb\x36\x2d\xbb\xdb\x76\xdb\x76\xeb\x58\x6e\xc9\x6b\xdb\xcb\x7e\xde\x2d\xaa\x13\x70\x2e\xe2\xa5\x39\x81\xc9\x65\xf8\xd2\x9b\x2e\x2b\xab\x22\xc4\x97\x11\x3c\xf0\x2d\xd2\x79\x19\xc0\x03\xf9\xeb\x36\xd9\xcb\x20\xf1\xc0\x16\xfb\x18\x94\x7b\xe1\xda\x70\x19\xa8\xbb\xc2\x62\x22\x7e\xca\x2e\x86\x81\x2a\xb7\xc1\x1e\x12\x93\x6b\xc6\xdf\x2e\x65\x0b\xa4\x99\xd4\x97\xf1\x37\x10\x9e\x74\x97\xaa\x75\x59\x6a\x95\x90\xcc\xa5\x3a\x81\x62\xcd\xdf\xcb\xb2\xaa\xa0\x58\x1e\xe5\xd2\xa6\xc0\x68\xa8\xf1\x65\xf4\x0d\x14\x6b\xa1\x5c\x06\xdf\xae\xe2\xdc\x53\xb6\xcb\x3c\x5a\xf0\xcd\x6e\xba\x0c\xbd\x81\xe2\xc2\x52\x97\x1a\x06\xaa\x85\x11\x2f\x67\x60\x5e\xc5\x93\x89\x2f\x9a\x59\x0b\xa6\x2f\x15\x2f\x35\x0c\x44\xaa\x28\x97\xd2\x05\x9a\xef\x28\x2f\xa5\xeb\x52\xba\x82\x16\x3b\xf4\x6f\xc1\x0c\xbf\x68\x8f\x28\x98\xea\xda\x6f\x97\xce\x75\x7d\x33\x30\xdd\x7e\xe3\x75\x60\x36\x3f\xe5\x6e\x63\xc5\x8c\x6e\xec\xfe\xd2\xc3\xc0\xfe\x03\xb7\xd6\x9e\x53\xa7\xc7\x35\xc7\x2e\xad\x0b\xc4\x30\xdf\xf6\x52\xbb\xc0\xf4\xac\xd1\xba\x40\xba\xb6\xe2\x65\x64\x0e\x38\x79\xf9\xd2\xc3\xc0\xec\x7f\xb8\x31\x5f\x5a\x1a\x88\x6f\xec\xb4\x34\x90\xae\xd8\x78\xa9\x64\x20\x75\x90\x4b\xd9\x02\x91\x06\x63\x2f\x6d\x0b\xa4\x77\xc4\x4b\xdb\xba\x28\xd9\xf3\x9d\xfe\xaa\xd5\x45\x2c\xee\xc7\xc5\xf5\x32\x14\x07\x32\x1c\x4f\xd5\x0a\xc4\x77\xd0\xa8\x51\x20\x7d\x22\xba\xb4\x28\x90\xde\x97\x2f\x25\x0a\xc4\xcf\xb3\x40\x5f\x02\xe1\xc3\xe6\x65\x20\x0d\x44\x77\x5e\xe7\xa5\x42\x81\xf0\x31\xf5\x32\x92\x06\xf6\xbe\x67\x63\xd5\x2a\x10\x3f\x8f\x70\xad\x0a\xa4\xcf\x65\x97\xb1\x35\xe0\xc3\xec\xa5\x67\x5d\x7a\x96\xd7\x08\x35\xeb\x4a\x3b\xc9\xe8\xa8\x54\x20\x9c\xb6\x74\x29\x47\x20\x5d\xbf\xe9\x52\x8e\x40\xba\x56\xd3\x65\x6c\x0c\x64\x25\xb4\x70\x19\x1a\x03\x61\x02\xf8\x65\x64\x0c\x7c\x93\xdb\x2f\xad\x0a\x84\xe5\x2f\x2f\xe3\x62\x20\x6b\x71\xbb\xec\x4f\x52\xbd\xc8\x8b\xb6\x59\xab\x20\xbe\x42\x34\x57\x7e\x3d\x7a\xf9\x26\x83\x63\xda\x2a\x08\xe5\xf7\x32\x78\x06\xb2\xf2\x20\x73\x69\x68\x20\x4c\xe3\xbe\xcc\x5a\x05\x59\xdd\x30\xa5\x0d\x84\xf9\xeb\x97\x49\xab\x20\xa6\x8b\x21\x5f\x7a\x1c\x08\xef\x92\x97\xce\x06\xb2\x16\x3f\xe5\x58\xb0\x44\x47\x5a\x39\xf3\xd2\xda\x40\x7c\x57\x21\xa5\x0d\xa4\x4b\x11\x5c\xce\x1a\x05\x61\xda\xed\xa5\xc8\x81\x30\x1d\xf8\x52\xe4\x40\xb4\xaf\x4d\x93\xbb\x34\x39\xc7\x5f\x93\x03\xa1\x98\x5c\x8a\x1c\x88\xe2\x8d\x54\x91\x03\x61\x66\xfd\xa5\xc8\x81\xac\xc5\x4f\x39\x18\x04\xef\x7c\xfc\xb8\x74\x3b\x10\x66\xd6\x5f\x86\xf3\x40\xba\x94\xd8\xa5\xee\x5d\x44\xf3\xca\xd7\xe4\x50\x6c\xa4\x2f\x96\x2e\x67\x88\x82\xac\xc5\x8d\xf0\xd0\x27\xbc\x67\x6a\xf7\xa5\xee\x81\x30\xbf\xfc\x32\xb8\x07\xd2\xf2\x8b\x97\x06\x08\xb2\x7a\xfd\x30\xb4\x07\xc2\xd2\x71\x97\x71\x3a\x10\xe6\x7f\x5f\x86\xe9\x40\x3a\x6d\xed\xd2\x13\x2f\xd7\x02\xf1\x32\xa0\x27\x82\x74\x49\xb2\x4b\x4f\x04\x61\xda\xfe\xa5\x14\x82\x30\x64\x7f\x29\x85\x20\x7c\x07\x76\x19\xa2\x03\x59\xbf\x26\x47\x82\x08\xdd\x77\x6b\x32\x40\x07\xd2\xe5\xc8\x2e\x03\x74\x20\x7d\xeb\x76\x19\x8b\x03\xf1\x65\xc9\x5c\xea\x24\x88\x3e\x78\x25\x7c\xe9\x7a\x60\x1f\xd6\x6c\xad\x21\x30\x10\xce\xbb\xbb\x8c\x80\x81\x70\xe6\xda\xa5\x11\x82\x74\xa6\xdf\xa5\x10\x82\xf8\x4e\x54\x85\x10\x44\xff\x86\x51\x23\x04\xa9\x59\x5d\xc6\xc9\xae\xf3\x2b\x34\x46\x93\x5b\x6b\x0e\xaa\x65\x63\x2f\x25\x11\x84\x25\x8c\x2f\xc3\x64\x20\x9d\xf6\x78\x69\x81\x20\x9d\x96\x74\x69\x81\x20\x9d\xb2\x77\x19\x23\x03\xe1\xb4\x9b\xcb\x18\xd9\xe5\xc4\xcd\xe9\xcf\x3b\x3e\xd4\x14\x72\x0a\xda\x65\x84\x0c\x84\xf3\xcd\x2e\xf5\xf1\x72\xe9\x0f\x6f\xca\xea\xe3\x75\x7e\x65\x0c\x69\x72\x2c\x2c\xb5\xea\xbd\x40\x7d\x04\xe9\x9b\x87\x4b\x7d\x04\xe1\x6c\xb9\xcb\xc0\x1a\x48\xa7\xff\x5d\x0a\x25\x48\x67\x50\x5e\xa6\xa0\x82\xe8\xf3\x0f\xab\x57\x5e\x2a\xe8\xe5\xcc\x52\xde\x42\x5c\x46\xe2\x40\xfa\xd2\xfc\xd2\x4a\x41\xfa\x2a\xe4\x52\x40\x41\x7c\x8f\x2a\xfa\x27\x08\xa7\xef\x5d\xea\x27\x88\x34\x67\xec\x52\x40\x41\x58\x11\xfa\x52\x40\x41\xfa\x7a\xe4\x32\x91\x15\x44\x3a\xcd\xe8\xd2\x4a\x41\x2a\x33\x97\x56\x0a\xd2\xb5\xc2\x2f\x23\x70\x20\xbf\x07\x37\x45\x15\xa4\x93\xba\x2e\x45\x15\x84\x93\x3a\x2f\x45\x15\x7c\x13\x9f\x2f\x73\x5b\x2f\x73\x5b\x7d\x84\x55\x5e\x2f\xeb\x17\xf9\x6c\xad\xbc\x82\x70\xb2\xe9\x65\xdc\x0e\xfc\xc7\xd8\xb9\xe4\x58\xcf\x02\x0b\x72\xde\xab\xe8\x25\x9c\xe4\x8d\xd4\xea\xbd\xd8\xc6\xde\xff\x12\xae\x88\xe0\xbb\xd3\xbf\x46\xa1\x42\x75\x6c\x83\x9f\x41\x26\xd0\x1c\x04\xf7\x28\xaf\xa0\x39\x4d\xc0\xa3\xbc\x82\x70\x2c\xdb\xa3\xbd\x82\x70\x8c\xed\x63\xd4\x0e\x34\x07\x8c\x3d\xfa\xec\xa3\xcf\xfa\x9c\x30\x68\x07\xa2\x76\xbf\xc0\x75\x5c\x10\x8e\xe3\x78\x74\x5c\x10\x8e\x82\x7b\x54\x5c\x10\x8e\xce\x7b\x54\x5c\x10\xce\xb0\xfb\x18\xd8\x03\xe1\x0c\xe6\x8f\x3e\x0b\x9a\x83\x8b\x1f\x7d\x16\x84\x13\x85\x3f\x66\xd6\x82\x66\xd2\xc8\xa3\xe2\x82\x68\xe9\xfc\x9b\x6d\xc1\xfc\x45\x8e\xa8\x7c\x0c\xf4\x81\xe6\x88\xca\xc7\x54\x5b\xd0\x1c\xfd\xfb\x18\xfb\x03\xcd\x31\xaf\x8f\x6e\x0c\xc2\xe1\x8e\x8f\x6e\x0c\x92\x33\x3a\x3e\x06\x03\x41\x38\xe6\xf5\x51\x97\x41\x73\xb0\xec\x63\x78\x10\x84\xb3\x59\x3f\x8e\x40\x05\xe1\x90\x83\x47\x83\x06\x4d\xf5\x5e\x0a\x2e\x68\xf6\xc1\x2e\xfd\x16\x74\x3f\x0f\x97\x7a\x0b\xf6\xd3\x37\x53\x96\x2d\xcb\xfc\x9b\x45\xc5\x22\xba\x52\x39\x6d\x4b\xb9\x05\x51\x9c\x6f\x6b\x69\xb7\x60\x6f\xad\x50\xd6\x2d\xeb\x6c\xad\x51\x34\x2c\x1a\x14\x4d\x8a\xa6\x45\x73\x17\xd1\x3e\xcb\xb8\x20\x68\xce\x7e\xb1\x54\x60\x10\x2e\xa8\xbe\x34\x60\x10\x7e\xda\x2c\x05\x18\xf4\x12\xd6\xfc\xb5\x68\xdf\xce\x0e\x0c\x59\x2a\x31\xe8\x7e\x77\x2f\x9d\x18\x74\x63\xa2\x4b\x29\x06\xcd\x2e\xfc\xe5\xd8\x4e\xd0\x9c\xb4\x60\xe9\xbb\xa0\x1b\xc4\x5f\x06\x13\x41\x98\x1c\xbc\x74\x60\xd0\xfd\xec\x5e\x3a\x30\x68\x4e\x4e\xb1\x8c\x2e\x82\x66\x30\x6c\xa9\xc5\x20\x4c\xda\x5f\x2a\xf0\x72\x51\x92\x69\x91\x75\x24\xdc\x38\xcf\xd1\x5b\xc7\x60\xfe\x30\x9e\xe4\x4b\x2b\x06\xdd\x8f\xfa\xe5\xc4\x44\xa0\xbb\x1c\xe6\xd2\x8a\x41\xd4\x1f\x1f\x7e\x4b\x2d\x06\xe1\xda\x5e\x4b\x2d\x06\xfb\x7c\xbb\x03\x2b\x4e\x52\xaa\xa3\x77\x96\xb1\xc8\x65\x2c\x92\x17\xdd\x72\xfe\x22\x10\x8e\x28\x59\xda\x33\x88\x79\x8e\xcc\x8a\x93\xb8\xea\xd0\xa4\xa5\x3d\x83\xae\x54\x2d\x83\x98\xa0\x39\x2f\xc6\x52\xa8\x41\x38\x4a\x63\x19\xd7\x04\xdd\x75\xe0\x96\x8e\x0d\x9a\x9d\xe7\x4b\xc7\x06\xe1\xb4\xf3\xcb\x50\x27\x08\x57\xc6\x5f\x5a\xf7\x72\x99\x92\xe9\x7f\xd9\x62\x2e\x53\x42\x7c\x6f\xa9\xdd\x20\x9c\xd0\x68\x69\xdd\x20\x1c\x89\xb2\xb4\x6e\xd0\x55\xa3\xa5\x74\x83\x70\x88\xcc\xd2\xba\x41\x38\xb0\x62\x29\xdd\xcb\xc5\x4c\x78\xdf\x2d\x9d\x1b\x84\xb3\x3f\x2f\x83\x9f\xa0\xcd\xd1\xfe\xfb\x9d\xbc\xb4\xf4\x95\xbd\x8e\x3c\x6c\xdb\x2e\x7b\x1d\x71\xd8\x2a\x39\xe8\xda\xe7\xd2\xc9\x41\xa8\x90\x4b\xeb\x06\x4d\x3b\x5c\x46\x17\x41\x74\x13\x14\x96\xde\xba\x8c\xf3\x19\x1d\x5a\x8a\x2b\xe8\xc5\x1a\xeb\xad\x20\x65\x1e\x7c\x4b\x6f\x05\xc9\x0f\xf5\xa5\xb6\x82\x68\xf6\xd8\x2d\xbd\x15\xc4\x59\xb8\x66\xa9\xa9\xa0\x97\xe4\xd6\xac\x67\xf5\x1a\xa1\x52\x46\x03\x41\x2f\x5e\x23\x9a\x2b\xe8\xc5\xdb\xd1\x60\x20\xe8\xc5\x8b\xde\x68\xe0\x6a\x76\xc3\x70\x64\xfa\x2d\x48\xf9\x6c\xcb\x0b\x82\x55\x44\x9c\xfc\x77\xe9\xb7\xa0\x17\x0f\x55\xbf\x05\xdd\xd5\xbf\x96\x7e\x0b\x92\x66\xb9\xf4\x5b\x90\x9c\x6e\x78\x39\x2a\x13\xa4\x7c\x8e\xcb\xd3\x6b\x20\xd1\x8b\x4b\xbf\x05\x49\xbf\x5a\xea\x2d\xe8\xc5\x22\xf5\x16\x74\x97\xf9\x5d\xea\x2d\x88\xf3\x21\xb0\xf4\xdb\xe5\xb0\x4c\x27\xe5\x5f\xda\x2c\x48\x2a\xd0\xd2\x66\x41\x37\xc7\x67\x29\xb3\xa0\x17\xdb\xc2\x98\x24\x48\xf6\x11\x2e\xfd\x16\x24\x03\x01\x4b\xbf\x05\x29\x9f\xa3\xb0\x2d\x36\x7a\xf1\xf1\xab\xde\x82\x6e\x2a\xd3\x72\x9e\x24\xd0\x5d\xf4\x78\x69\xbc\xa0\x9b\x2a\xb2\x34\x5e\xd0\x9d\x2b\x7f\x69\xbc\xa0\x17\x1f\x4c\x0a\x2f\xe8\x66\x19\x2d\x85\x77\x9d\xd0\x25\x5f\x8c\x4b\xe3\x05\xbd\x9c\x22\xaf\x94\x41\x87\x3e\x3d\x02\x4b\xe3\x05\xdd\x6c\xa7\xa5\xf1\x82\x64\xbf\xc4\xd2\x78\x41\x2f\x38\xf6\xd2\x78\x41\x72\x86\xe6\xa5\xf1\x82\xe4\xcc\xd1\xcb\x00\xe7\x32\xc0\xe9\x35\xa0\x04\x2f\x03\x9c\x67\x5b\x36\xd8\xb0\xc1\xdc\xa3\x0d\x36\xbc\x9e\xac\xb7\x0d\x36\xbc\x9e\xdc\xa3\x0d\x36\x58\xa0\xc7\x97\xa6\x12\xbc\x4c\x70\xb5\xc3\x79\x69\xc1\xa0\x9b\x21\xb6\x0c\x8d\x82\x5e\xbc\x9d\x15\x63\xd0\x8b\x37\xbd\x62\x0c\x92\x5d\x1c\x4b\x31\x06\x49\x0b\x5e\x8a\x31\x48\x4e\x43\xbd\x14\x63\x10\x67\x4d\xa8\x65\x04\x15\xf4\x72\x7e\x69\x8b\x4d\x6f\x37\x6a\x69\x80\x73\x9d\x69\x6e\x7d\x7d\x18\xe1\x04\x51\xcf\xb7\x93\x36\x0b\x92\x5d\xfe\x4b\x99\x05\xe3\x7c\x00\x29\xb3\x60\x9c\x37\xae\xe6\x0a\x92\xeb\x56\x2c\xcd\x15\x24\xd7\xde\x58\x5a\x2a\xd8\x87\x61\x99\x0d\xb4\x91\x86\x5f\x75\x5a\x2a\x18\xe7\x25\xa9\xa5\x82\x71\xde\xfb\x46\x37\x41\x72\x1c\xc3\xd2\x52\xc1\x19\x58\xbc\xb4\x54\x90\x1c\xb1\xb1\xb4\x54\x10\xcd\xb9\x00\x97\x9a\x0a\x8e\xc5\x2f\x35\x15\x8c\xf3\x0d\xa1\xa6\x82\xe4\x1a\xfb\x4b\x4d\x05\x27\x56\xb9\x4c\xed\x04\x27\x79\x78\x69\xae\x20\x0d\xcf\x92\xe6\x0a\xc6\x79\x03\xa9\xa9\xe0\xdf\xc7\xac\x4e\x0a\x92\x59\x0d\x4b\xe9\x04\xc9\x64\xf8\xa5\x74\x82\x64\x52\xc9\x52\x3a\x41\x3a\x8f\x31\x23\xa1\xe0\x64\xbd\x2f\x3d\x14\xfc\xfb\x00\xd2\x43\xc1\xc9\x57\x58\x7a\x28\x48\xae\x36\xb2\xd4\x50\x90\xc6\xef\x0f\x93\x84\x2e\x2d\x15\x8c\x9f\x8f\x21\x8d\x14\xfc\xfb\xdc\xd6\x48\xc1\xbf\x47\x8e\x46\x0a\x92\x0b\xa7\x2c\x8d\x14\x24\x87\x57\x2c\x8d\x14\xfc\xbb\xc0\x35\x52\x30\x4c\xe0\x5b\x1a\x29\x18\x3f\xcf\x83\x46\x0a\x86\xf3\x4a\x2d\x8d\x14\x8c\x9f\x4f\x0e\xc3\xa9\x20\x39\x7e\x65\x29\xa9\x20\xb9\x14\xf5\x52\x52\x41\x72\x18\xc5\x52\x52\xc1\xc9\x54\x5d\x4a\xea\x5a\x5e\x32\x6e\xcb\x4b\x66\x79\xfb\x78\x5c\x36\xce\xa2\x71\x7c\x70\x28\xa4\xe0\x0c\x65\x58\x0a\x29\x48\xc3\x8f\x72\x85\x14\x9c\x51\xde\x4b\x21\x05\xe3\xe7\xc3\xdd\x98\x2b\x48\xae\x21\xbc\x74\x54\x30\xcc\x56\x5a\x86\x61\x41\x1a\x5e\x91\x3a\x2a\x48\x0e\xf8\x59\x3a\x2a\x38\xb3\x3a\x2c\x1d\x15\x24\x47\x0a\x2d\x15\x15\xa4\x71\x36\x6f\x4b\x10\x98\x35\x2f\x69\xa9\xa8\xe0\x84\x6f\x97\x8a\x0a\x92\xc3\x5a\x96\x8a\x0a\x7a\xb1\x48\x45\x05\xa7\x7b\x79\xa9\xa8\x20\x39\x80\x6b\xa9\xa8\x60\xfc\x7c\x36\xaa\xa8\x20\x75\x5d\xc4\x01\xa3\xe0\xe4\xaf\x2e\xad\x15\x24\x87\xef\x2c\xd3\x5c\xc1\x19\xa5\xbb\x8c\x0e\x83\xe4\xc8\xaf\xa5\xdb\x82\xe4\x88\xae\x65\x74\x18\x24\x17\xf3\x5e\x06\x87\x41\x72\x7d\xec\x65\x8e\xeb\x72\x92\x24\x9f\x95\xc6\x8b\xc1\x79\x7c\xbe\x7a\x32\x38\x23\x72\x5e\xa5\xf8\xfd\x9d\x99\xfd\x7f\x94\x65\xcb\x88\x64\x37\x8b\x8a\x45\x4a\x12\xb7\xcc\xab\x15\x83\xe4\xd2\xda\xaf\x1e\xfb\xba\x94\xa6\x37\xee\xab\x7c\xbe\xbf\xd3\x29\xc9\xe6\x8c\xa3\x82\x38\x77\xcd\xab\x32\x82\x38\x37\xfd\xab\x33\x82\xec\xd4\x30\xaf\xce\x08\x92\x43\xe8\x5e\x9d\x11\x64\x03\x08\xaf\xa1\x54\x30\x1c\x7f\xf1\xaa\x91\xaf\xab\x9f\x34\x37\xef\xa1\x05\x49\x8f\x5c\xea\xaf\xce\x08\xb2\x5d\xf2\xaf\x59\xab\x20\x1b\x71\x79\xd5\x48\x30\x5a\xf7\x87\x36\x5a\x62\x6e\x31\x3e\xb9\x5e\xcd\x12\x64\xfb\xcc\x5f\xc5\x12\x64\x23\x22\xaf\x62\x09\xb2\x73\x01\xbd\x7a\x25\x18\xad\xbb\x2d\x5b\x27\x31\xa3\x16\xe1\xe2\x57\xaf\x04\x71\xee\xd4\x57\xb1\x04\xd1\xe3\x6c\xcd\xe6\x61\x8d\x14\xc7\x5d\xbc\x9a\xe5\x6b\x5c\xb6\x5a\x64\xf3\x24\x9a\x87\xf0\xc4\xab\x59\x82\x61\x06\xce\xab\x59\xbe\x27\x7a\xcb\x61\x68\x96\xaf\xd1\x5b\xfa\x46\x5e\xcd\x12\x8c\x46\x30\xfd\xd5\x2c\x41\xb6\x9f\xfe\xd5\x2c\xc1\x70\x4c\xd2\xab\x59\x82\xec\xec\x49\xaf\x66\xf9\x66\xa6\xd8\xc2\x78\x5f\x9d\x11\x64\x83\x4f\xaf\xce\xf8\x9a\x30\xdb\xdd\xbc\x4d\x61\xc2\x6c\xf5\xbf\x6c\x09\x13\x66\xad\xb6\xce\xf8\x66\x12\x8f\x3c\x21\x86\x69\x5f\xb3\x63\x89\xe6\xbe\x4a\xe1\x6b\x76\xac\x67\x52\x29\x04\xc3\xb1\x46\xaf\x52\x08\x86\x93\xe4\xbc\xc6\x5d\x41\x76\x12\x95\xd7\x21\x95\x20\x3b\x51\xd2\x6b\xc2\x2c\x18\xc6\xac\x5f\xa3\xb3\x6f\xe1\x12\xf0\xa2\x33\x3a\x0b\x86\x83\x80\x5e\x83\xb3\x20\xa7\x53\x64\x1d\x8b\x75\xa4\x09\x0d\xce\x82\x9c\xce\xa1\x5a\xc7\x62\x1d\xff\xa0\xca\xaf\xe1\x5c\x10\x67\x96\xfb\xd7\x78\x2e\x88\x66\xcc\xfc\x35\x57\x16\x0c\xb3\x2d\x5f\x63\xbc\x60\x38\x24\xf7\x75\x5c\x25\x18\x8d\xd8\xc2\x6b\xd8\x17\x64\x83\x4e\xaf\x61\x5f\x30\x1a\x7d\xc2\xaf\xa9\xb3\x20\x1b\x15\x7a\xb5\x67\x90\xd3\x39\x08\x9b\x8a\xa8\xef\xe9\x2f\x7d\xd5\x67\x30\x1a\xf1\x92\x57\x7d\x06\x39\x9d\x2a\x79\x3d\x54\x1e\x1c\xcd\x1f\xda\x7c\x95\x4b\xa4\x7a\xf8\x36\x5f\xf5\xce\xb0\xc8\xf6\xa9\xdc\x19\x5e\x81\xfa\x34\x18\xcd\x33\xad\x4f\x83\xd1\x7c\xa0\xe9\xd3\x60\x98\x4f\xf0\xea\xd3\x20\x3b\xbf\xd3\x6b\x7a\x2d\x18\xad\xfb\x5f\xb6\x4e\xa3\x75\xba\xdb\xb2\x75\x9a\x37\x0b\xd7\x83\x8a\x0d\xb2\xc1\xb6\x57\xc5\x06\xc3\x4c\xa2\x57\xc5\x06\xd9\x09\xb1\x5e\xe3\xc5\x60\xb4\x53\x64\xb5\x9d\xd2\xc8\x96\x50\x9e\x41\x76\x2e\xa4\x57\x53\x06\xa3\xd1\xe3\xfc\x2a\xca\x20\xa7\x53\x64\x1d\xbb\x77\x3f\x07\xa1\x3a\x83\x33\x37\xd8\xab\x27\x83\x6d\xd8\xfe\x9b\x35\xea\x3e\x1d\xfd\x37\x6b\xd4\xa9\x11\x21\xa1\x57\x51\x06\xa3\x11\x75\x78\x55\x60\x10\x67\x19\xae\x57\xaf\x7c\xcd\x92\xf5\xcb\xfd\xd5\x22\xc1\x70\x60\xe4\xab\x45\x82\xec\xcc\x4d\xaf\xca\xf8\xba\xf0\x8a\x73\x65\xbf\x0a\x22\x98\x76\xd1\xbc\x0a\x22\x98\x76\x38\xbc\x0a\x22\x98\xce\x95\xfd\xea\x87\x20\x9f\x36\x53\x06\xc1\x54\x5c\x5f\x65\xf0\x65\x51\x4b\xe7\x93\x7f\xd5\xbc\xd7\x15\x2c\x6d\x0c\x2d\x0f\x4c\xbb\x5e\x5e\x2d\xef\x75\x05\x4b\x6f\x37\x43\xa2\x60\xda\x5d\xf2\x1a\x12\x05\xd1\xcd\x7d\x7b\x8d\x89\xbe\xe6\xce\x4e\x7f\x69\x33\x6e\xe4\x73\x57\x1a\x13\x05\xf9\x5c\x2b\x66\xd8\x82\x69\x1a\xd1\x6b\x98\x14\x4c\x67\xff\x7e\x1d\xb1\x08\xa6\x93\x8b\xbf\x8e\x58\x04\xd3\xde\x9e\xd7\x58\x2a\xc8\xe7\xa6\x34\x33\x17\x4c\x03\xb3\xaf\xde\x0a\xa6\x3d\x2f\xaf\xda\x0a\xf2\x79\x37\x99\x97\x0b\xa6\x5d\x04\xaf\x69\xb9\x20\x9f\x57\x8c\x6e\x0b\xf2\xb9\x91\x74\x5b\x90\xcf\x35\xa6\xc8\x82\xa9\x89\xbf\x8a\x2c\xc8\xe7\x06\x37\x02\x0b\xa6\x7d\x55\xaf\x6e\x0b\xa6\x29\xd6\xaf\x6a\x0b\xa6\xbd\x63\xaf\x6a\x0b\xa6\xfd\x14\xaf\x6a\x0b\xb2\x69\xf0\xaf\x6a\x0b\xa2\xb9\x4c\xc6\x6b\x50\x16\xe4\xf3\xb5\xa0\xee\x82\x69\x54\xe6\x55\x77\xdf\x13\x94\xb5\xe2\xfa\x2e\x98\xe6\x83\xbf\xea\x2e\xc8\xe7\x6b\x44\xdd\x05\xfb\xae\xf1\x38\xbc\x2c\xc8\xea\x3d\x8f\x23\x7d\x17\x4c\xf3\xc6\x5e\x7d\x17\x4c\xbb\xb4\x5e\x7d\x17\x4c\x3b\x5a\x5e\x7d\x17\x4c\x47\xc9\xbf\x46\x6a\xc1\x74\xcd\xb1\x57\x05\x06\xf9\x3c\x5f\x8d\xd4\x82\x69\x27\xda\xab\x15\x83\x7c\x1e\x04\x5a\x31\xc8\xe7\xf3\x4d\x2b\x06\xd3\xcc\xe5\x57\x2b\x06\xf9\x7c\x53\x68\xc5\x60\x3a\xb1\xfe\xab\x15\x83\x69\x52\xdd\xab\x15\x83\x69\xf7\xd5\xab\x15\xbf\x4e\xf1\xeb\x23\x57\x2b\x06\x25\x4e\xb5\x6d\xaf\x87\xf6\x8a\x3f\x04\x95\x5f\x63\xb7\xaf\x93\x10\x9d\xed\xda\x9c\x4c\x42\x64\xb7\xd8\xab\x28\x83\x69\xa7\xe1\xab\x28\x83\x7c\xde\x27\x8a\x32\x98\x66\x0c\xbe\x8a\xf2\x7b\x72\x8c\x2d\xb2\x39\x97\xcd\x49\xdb\x29\xca\xa0\xd4\xf3\x43\x9b\x73\x31\xde\xc7\x67\xa3\x56\x0c\xa6\x3d\x59\xaf\x56\x0c\xa2\xb9\x30\xed\xab\x16\xbf\x2e\x33\xf3\xf3\x63\x48\x2f\x06\xd1\xec\x99\x7e\x15\x63\x30\xed\x20\x7f\x8d\xde\x82\xe8\xdd\x5d\x28\xb8\xaf\x6b\xc8\xfc\xfc\x2e\xd7\x4a\xdf\xf7\x7c\x38\xf3\x5b\x85\x13\x4c\xc3\x1c\xaf\xc2\x09\x8a\xb3\x8b\xbc\x0a\x27\x98\xe6\x59\xbe\x0a\x27\x98\xc6\x9d\x5e\x85\x13\x14\x27\x39\x78\xb5\x4b\x30\x9d\xd7\xf1\xd5\x2e\x41\x71\x92\x8f\x57\x95\x04\xc5\x81\x3c\xaf\x2a\x09\xa6\x73\x78\xbf\xaa\x24\x98\x46\x3b\x5f\x55\x12\x9c\x29\xd7\x5e\xc7\x50\x82\xe9\x4c\xdf\xaf\x76\x09\xa6\xc1\xa3\x57\xbb\x7c\xcd\x3d\x76\x4c\xd4\xab\x5e\x82\xe9\x1c\xfe\xaf\x7a\xf9\x3a\x11\x91\xe1\xd4\x57\xbf\x04\xd3\x70\xe1\x6b\x3e\x32\x28\x0e\xe3\x7f\xcd\x47\x06\xc5\xa9\x52\x3e\x2d\xf4\x3b\xe9\xc8\x5c\x55\x9f\xe1\x5a\x50\x9c\xdc\xe2\xd3\x4c\x41\x71\x39\xda\x4f\x31\x05\x73\x9e\x1f\x16\x8b\x8a\xef\x74\x77\x50\x2d\xa3\xcd\xa6\x1b\x6b\x16\x35\x36\x56\x28\xea\x16\x31\x8f\xdc\xf4\x87\xc3\xa2\x61\x35\xfd\xe5\xb4\x8c\x46\xeb\xfe\xdb\x65\x11\x03\xd0\x78\xa2\x7c\x46\x6b\x3f\x97\x0b\xb5\x7b\xea\x33\x5c\xfb\x9d\x39\x86\xc2\xff\x5b\x96\x2d\xf7\x90\x29\x7b\x2d\xe3\x0a\x9a\x16\x7d\x16\xd1\x6a\xbc\x3c\x3f\x43\xb1\x60\x9a\x44\xff\x99\xb3\x0c\x8a\xc3\xfd\x3f\x73\x96\x41\x71\x7e\x82\x4f\xd7\x06\xc5\xf9\x40\x3e\x63\xb8\x20\x9a\xfd\xa8\x9f\x41\x5c\x10\xc3\xeb\xf1\x53\xc9\xc1\x74\xf4\xc0\xa7\x91\x7f\x41\xdd\xf9\x92\xf8\x74\x6d\x30\x0d\x7c\x7d\xc6\x67\xc1\xae\xa6\xff\x66\x9d\x48\x5b\xfe\x19\xfd\xfb\xb4\x6d\x50\x4c\x07\xff\xb4\x6d\xb0\xff\x8d\xe3\x50\xb7\x41\x71\x11\xd1\x4f\xdd\x06\xc5\x79\x6e\x3e\x75\x1b\xc4\xf8\x55\xff\xcd\xca\x27\x6f\x1f\x77\x60\xe5\xcf\xec\x42\xc5\xe3\xb0\xf2\x89\x6b\xa1\xbb\x4f\x2b\xba\x51\x1c\x6f\xf3\x29\xd7\xa0\x38\x67\xcc\xa7\x5b\x83\xe2\xc4\x22\x9f\x6e\x0d\x8a\xcb\x43\x7f\xba\x35\x98\xae\x23\xf0\xe9\xd6\x60\xba\x76\xc6\xa7\x5b\x83\xe2\xa4\x22\x9f\x6e\x0d\xa6\xf1\xf7\x4f\xb7\x06\xc5\xd9\x52\x3e\xdd\x1a\x14\x27\x4b\xf9\x74\x6b\x50\x9c\x79\xe4\xd3\xad\xc1\x6e\x1e\xea\xad\x5c\x7f\xae\x5f\x3a\xfd\x37\x9b\x27\x9b\xcf\xee\x7f\xd9\x3a\x4c\x43\xec\x6a\x03\x9f\x0a\x0e\x8a\x33\x25\x7d\x2a\x38\x98\x86\xe9\x3f\x15\x1c\xec\x73\x69\x95\x6c\xb1\xec\xd3\xc5\x7f\xb3\xc5\x98\x9a\xd8\xec\x87\xcf\xc0\xec\x97\xcf\x0c\xfe\xee\xc0\x26\xcb\x3e\x5d\x2c\xb2\xc9\x32\x53\x51\xf9\x4b\xbd\x1c\x4c\xe3\xb7\x9f\x5e\x0e\xf6\x19\xe7\x30\x14\x73\x30\x8d\x28\x7f\x8a\xf9\xe7\x7a\xa8\x8e\x1b\xfa\xf4\x64\x30\x1d\x5a\xfc\x29\xc2\x20\x7e\xf5\x2f\x13\x93\x7c\x7a\xf2\x57\xcf\x13\x8f\x03\xd0\x93\x41\x71\xfd\xf5\x4f\x4f\x06\xfb\xdf\x38\x00\x45\x19\xc4\xcf\x1c\xae\x4f\x53\x06\xc5\x69\xdc\x3e\x4d\xf9\x33\x41\xda\xd5\x16\x3f\x55\x19\x44\x75\xa0\xec\x67\xf4\xf9\x33\x6b\xda\x11\xd5\x9f\xfe\x0c\x8a\xb3\x00\x7e\xba\x32\xd8\x9b\xa3\xde\xca\x32\x28\x4e\x02\xf8\x29\xcb\xdf\x09\x35\x9f\x7a\x79\xe6\xaa\x93\x88\x35\x37\x67\x2b\x9e\xf9\x87\xce\x5e\x6d\x46\xe6\x1f\x72\x3e\xaf\x4f\x5f\x06\xc5\x69\xec\x3e\x7d\xf9\x33\x73\xda\x61\x12\x9f\xc2\x0c\xf6\xc1\xd1\x4c\x1a\x33\xd8\xcd\xe4\xff\xd9\x4c\x1b\xc5\x19\xf0\x3e\xfd\x18\x14\x97\xa9\xff\xf4\x63\xb0\x7f\xe9\xd6\xbc\x94\x9b\xf3\xce\xf9\x94\x33\xe2\x0c\x76\x99\x07\x6c\x93\x34\x27\x56\x6b\x1e\xb1\x6d\xd2\x9c\xb3\x8f\x0e\x98\xcf\x38\x34\x28\xa6\xe6\x7d\xaa\x34\x28\xce\x04\xf7\xa9\xd2\xe0\x8c\xfe\xf8\x8c\x43\x83\xe2\xb4\x6a\x9f\x2a\x0d\xf6\xf6\xf9\xa5\x2e\x0d\xa6\x09\x19\x9f\x2e\xfd\xf5\x73\x31\x5b\x66\xed\x1d\x09\xeb\x5a\x9e\x9f\x32\x0d\x76\xb5\xa8\x82\x36\x0d\x8a\xb3\x18\x7e\xda\x34\xd8\xb2\x4b\x8b\x18\x77\x06\xc5\x99\x22\x3f\xe3\xce\x20\x7e\x66\xf1\x7d\x5a\x37\x28\xae\xef\xff\x19\x78\x06\xbb\xdd\xac\x83\x0d\xd2\x9d\xc4\xb0\x78\xc0\xb6\x48\xf7\x56\xc3\x29\x3e\x63\xcf\xa0\x9e\x27\x8f\xb1\xe7\xef\xc4\x9e\xad\x97\xb1\x67\xb0\xeb\x4a\x6b\x1a\x69\x06\xa5\xf0\x8d\xf7\x19\x69\x06\xfb\xdf\x68\x61\xbb\x04\x40\x71\xc2\xc2\xcf\x50\x33\xd8\x07\x47\xf5\xed\x25\x00\xc5\xb9\xb7\x3e\x7b\x09\xc0\xfe\x37\x5a\xce\x60\xf3\xe7\xf4\x49\xae\x18\xf3\xd9\x75\x00\x76\xbd\xa8\xab\xe1\x66\xb0\x7f\xeb\xff\xd9\x4e\xc3\x76\x2a\x56\xc2\x76\xda\x28\xce\x6c\xf9\xd9\x79\x00\xf6\xe6\xa8\x98\xbd\x07\x60\xff\x94\x76\xb2\xfb\x00\xec\x66\xa7\x16\x06\x93\xc1\x2e\xe3\x50\x8c\x26\x83\xbd\x3d\x7f\x6b\xa3\xcc\x73\xed\xf8\x5b\x5b\x65\xa3\x38\x3f\xe7\x67\x47\xc0\xe7\xec\x45\xce\xc3\xfa\xd9\x13\xf0\xcd\x73\xf7\xd3\xa0\x76\x05\x80\x38\x4b\x47\x7e\xf6\x05\x80\xe2\x52\xc7\x9f\x7d\x01\xa0\x18\x52\xfa\xec\x0b\x00\x11\xe1\x9d\x6e\x67\x00\x88\x08\x4f\xb6\xbd\x01\xa0\x0c\xa2\x95\x9f\xbd\x01\x9f\xb3\x17\x85\x97\x9d\xdd\x01\xa0\xb8\x96\xf2\x67\x77\x00\x28\x23\xbb\x31\xcf\xb5\x73\x17\x85\x8f\x21\x67\x18\x06\x11\x76\x02\x7e\x76\x1b\x80\x7d\x70\x1e\xb0\x27\xfb\x0c\xf0\xf5\xc1\x61\x50\x1c\xec\x32\x7f\x6b\xd3\x39\xe8\x37\xbc\x8a\xed\x60\x00\xfb\xff\x38\xdb\xf6\x30\x80\x88\xf0\xf3\xd3\x2e\x06\xb0\xcb\xd8\xaf\x7d\x0c\xa0\x18\x46\xfe\xec\x63\x00\xfb\xdf\x2c\xb3\xed\x36\xca\xa0\x33\xfd\xb3\x93\x01\x14\x57\x4c\xff\xec\x64\x00\x51\x4d\x16\xfb\xec\x64\x00\xc5\xa5\xd6\x3f\x7b\x14\xc0\x3e\x5e\x4e\xab\x3d\x0a\xa0\xb8\xda\xfa\x67\x8f\x02\xd8\xff\xe6\x4f\x6d\xa6\xfb\x74\xa7\x59\x66\x33\xdd\x36\x93\xcf\x3a\xfb\x14\xc0\x3e\x15\x1e\x9d\xcd\x44\xfa\xf7\xf8\xf9\xcc\xb5\x57\x01\xec\x7d\xd0\x9c\x76\x2b\x80\xe2\xb4\xab\x9f\xdd\x0a\xa0\x8c\xfc\x87\x8e\xf0\xcf\x5e\x07\x70\x66\xef\xfd\xec\x75\x00\x65\xf8\xf1\x6f\xaf\x03\xd8\x87\xc9\x19\xb1\x8f\x01\xec\x7b\xd2\x43\xf2\x62\xfb\x37\x0a\x99\xf6\xb7\x97\xe1\x3b\xa3\x90\x7d\xad\xda\xcd\x00\x76\x75\xfc\x3f\x9b\xf1\xb1\x19\xbd\x89\xec\x68\x00\x7b\x7b\x96\xd9\x8c\x8f\xb3\xb5\x9d\xed\xd9\x8c\x8f\xcd\xe8\x93\xda\xce\x04\xb0\xb7\x67\x99\xcd\xf8\x9c\x66\xa4\x6e\xf6\x0a\x80\x38\x2b\xe5\x7e\x76\x0b\x80\xbd\x0f\xff\xcf\x8b\x66\xa3\x9e\x8f\x63\x3b\x01\x40\x3d\x1f\xc7\x76\x02\x80\xa8\x4e\x14\xfa\xd9\x09\x00\x76\x19\x2d\x65\x27\x00\xa8\xc7\x24\xed\x03\x00\x7b\xa7\xfe\xd4\x8a\x2d\xc7\xce\x7b\x6b\x19\x31\x07\xbb\xcc\x23\xb1\x62\xaf\xef\x11\x8a\x8c\x8f\x83\x7a\x9c\xc2\xee\x03\xb0\x7f\xc9\x69\x34\x40\x0e\xf6\x5e\x39\x38\x23\xe4\xa0\xaa\xfc\x9f\xe1\x70\xb0\xff\x8d\xab\xcd\x34\x6e\xb0\xcb\xdc\x85\x4d\xf2\x3a\x2f\x9a\x2d\x6c\x90\x1c\xd4\xe3\x6c\x76\x50\x80\x7a\x0c\xd6\x0e\x0a\x50\xcf\x77\xbf\x1d\x14\x60\xef\xc0\x32\x6b\xff\x32\x73\x80\x5e\xf1\x9e\xca\x7f\xfc\x92\x1a\x18\x12\x07\xf5\xbc\xce\xec\xb4\x00\xf5\x58\xa8\x9d\x16\x60\x1f\x2c\x1b\xb3\xd7\x02\xec\x7d\x52\x79\xfb\x28\x40\xfc\xfb\x38\xb0\x93\x02\x44\x3a\x4d\x6e\x2f\x05\x88\xb3\xf4\xec\x67\x9f\x04\xa8\xd9\xe7\xa0\x5d\x12\x20\xd2\x11\x45\xfb\x24\xc0\x2e\xf3\xf0\xac\xea\x46\xcd\xbe\x7d\xec\x80\x00\xfb\xdf\xea\xff\xf9\x7f\xfd\x47\x0f\x84\xd8\x65\x8d\xb2\xb0\x2c\x2c\x0b\xca\xb2\x65\x4c\xb4\xc1\x18\xc9\xfe\xa3\xc3\x41\xec\x9b\x64\x50\x56\x2d\xab\xfe\x36\x51\xd6\x2c\x6b\x1c\x4a\xa1\xa8\x5b\x74\x26\x59\xf3\xa7\xd3\xb2\xc9\xbf\xb9\xd7\xcb\xa2\xcb\x76\xb2\xec\xb6\x8c\x89\xe2\xaa\x3b\x78\x2c\x3a\x93\xe2\x4d\xca\x5e\xcb\x5e\x0f\xc4\xbd\x7e\x96\x39\x4b\x44\xdf\x45\x61\x5d\x37\x2a\x4b\x4a\xf6\x5f\x58\x2d\xa6\x2b\x4e\x74\x26\xf4\x5f\x58\xad\x70\x82\x31\x76\x10\xd6\x2a\x1c\x6e\xd5\x38\xb6\xb0\x5a\xe1\xa4\x63\xcd\x3d\x0c\xcb\xf6\x7d\xce\xc4\xd5\xfd\x17\xd6\x34\x9c\x5f\xad\x52\xfb\xb0\xaa\xe1\xfc\x6a\xfe\xd2\x9a\x6e\x54\xe6\x10\xef\xbf\xb0\xa6\xe1\xc8\xef\xe6\x81\x2c\xcb\x9c\x5f\xcd\x8d\x59\x79\x3a\x1d\x2a\x53\x43\xf7\x5f\x58\xf9\x8d\xca\x34\xb7\xfd\x97\x3c\xf9\xc9\x29\x32\x1a\xc7\x96\x6c\x90\xe4\x40\xbc\x46\xed\x93\x2d\x92\x1c\x96\xe8\x89\x4e\x56\x9f\xbe\x83\xc4\xf3\xab\xff\x92\xd5\x4f\x56\xbf\x72\x74\xc9\xea\x27\xaa\x1f\x34\x70\xb2\xfa\xc9\xea\x37\xcb\xac\x7e\x72\x1a\xb6\xe1\x6e\xad\x7f\x72\x1a\xb6\xc6\xa9\x4e\x36\x00\x13\x18\x8f\xdf\x29\xb3\x66\xe9\xcc\xc3\x46\x43\x65\xab\xb6\x51\x9b\x27\x27\x5b\xb3\xec\x34\x6c\x9d\x26\xa6\xbf\x40\xd4\xe6\xd6\xb2\x57\x7a\x76\x66\xb6\xc1\xd1\x65\x1b\x80\x0e\x03\x57\xf3\xeb\xbf\xec\x25\x41\x9e\xb7\xab\xf2\xf5\x5f\xb6\x01\x18\x4b\xed\x0a\x9f\xfd\x97\x6d\x80\xec\xa4\x73\x9d\x46\xc9\xb6\x40\x76\x06\xb7\xe1\x7e\x6d\x81\x7c\x5a\xc0\x43\xb6\x05\xc8\xec\x76\x3d\xc8\xfe\xcb\xb6\x00\xd3\x1f\xbb\x6c\x64\xff\x65\xcf\xf7\x46\x6d\x9e\xc7\x6c\xa3\x64\x1b\x65\xfc\xf7\x60\xe9\xfe\x2b\xb6\x59\x71\xee\xba\x41\x3b\x16\x1b\xad\xd8\x68\x83\x46\x2b\x36\x9a\x83\xaa\xbb\x57\x57\xb1\xd5\xe8\x31\xc8\x3f\xcf\x73\xb1\x85\x98\x0a\x39\x93\xd1\xd7\x7f\xc5\xd6\x60\x5c\x75\xfe\x79\x27\x15\x6b\xce\x52\xb5\xf9\xe7\x15\x5c\xac\x79\xa1\x9f\x9b\xfe\xe5\xfe\x2b\xd6\x7c\xa3\x76\x9f\x23\xd5\x43\xa6\x3b\x61\xfc\x9a\x65\x1e\x72\x75\xd6\x26\xda\xa7\x7a\xc4\x74\x27\xe4\x98\x1c\x5d\xf5\x9c\x56\x3b\x81\x1a\x6d\x5b\x3d\x62\xfa\x04\x72\x4c\xce\x69\xf5\x88\x37\x2a\x1f\xde\xfd\x57\x3d\xe0\x7a\xe6\x3c\xa1\x51\xaa\x07\x4c\xfe\x79\xce\x3e\x20\xab\x07\x4c\xa7\x40\x29\x56\xac\x7a\xb7\xd2\x29\x90\x99\xbe\xb1\xff\xaa\xa7\x6f\xa3\x92\xf9\xdf\x7f\xd5\xd3\x57\x3f\x27\xaf\xe3\xa7\xcd\xca\x32\x9c\x3a\x17\x9f\x90\xcd\xca\xd2\x2b\x90\x49\xa7\xed\xbf\x66\x6d\xe9\x15\xc8\xe7\x91\xd3\x3c\x3f\x1b\x75\xfa\x9c\x6b\x36\xc0\x46\xa5\x73\xbb\xff\x9a\xf5\x67\x9e\xaa\x5c\x6d\xa7\xe6\x8d\xce\x44\xc5\xb9\x7a\x77\x35\xaf\xf3\x33\x79\x95\x6f\x92\x66\x3b\x31\x1a\x3b\x33\x56\xb3\xff\x9a\xd7\x39\x3d\x05\x2e\xfd\xd2\x7f\xcd\x86\x62\x25\xde\x42\x5d\x9b\xcd\x44\x3f\x41\x6f\xa7\x0e\xd6\xbf\xb9\xe8\x8a\xcf\x88\x6e\xfd\x19\x69\x4d\xfe\x6c\xff\x75\xab\xcf\x48\xeb\xf0\x92\xe8\x56\xab\x33\x6c\xd8\x5d\x76\xab\xc5\x18\xea\xc2\x7c\x46\xfd\xd7\xad\x96\x63\xa8\xcf\x2f\xad\x41\x77\xb4\x2c\x67\xb5\x5b\x01\xc7\x50\x33\x37\x48\xff\x75\xcf\x7e\x67\xb8\x6c\xf1\x30\xac\x81\x03\xa6\xab\xdb\xf7\x9c\x22\xf1\x6d\x7a\x3b\x77\x2b\xd5\x4f\xa5\xd8\xda\xb0\x06\x1a\xfb\x79\x2a\x0d\x4f\x20\x13\x5d\x35\x2f\xaf\xe1\xf9\x1b\x8c\xbb\xb4\x89\x86\x15\x65\x7c\x34\xb1\xf9\xfe\x1b\x56\x74\x30\x23\x60\x61\x9f\xc3\x7a\x0e\x06\x56\x16\x2e\xdf\x61\xa5\x70\x73\x67\xf6\xeb\xbf\x61\xa5\x74\x73\xdf\x79\xc3\x13\x35\x1c\x51\xe1\xad\x3f\xac\x15\xb3\x18\xb7\xf3\x4b\x2b\x35\xac\x94\x2f\xdf\x69\xa5\x26\xa3\x21\x0b\xed\x31\xad\xd3\x74\x58\x2d\xe7\x7d\x5a\x27\x47\x3a\x7b\x29\x4c\xeb\x34\xa9\x93\x27\x6f\x5a\x27\x14\x9c\x9c\xb9\xfe\x9b\xd6\x69\x5a\x27\xae\x8d\xe9\xb9\xdb\x68\xcd\x93\x32\xad\x26\x23\x9d\x9b\x1f\x00\xd3\x5a\x32\xd2\xb9\x79\x53\x4d\x0f\x7f\x32\x20\xcc\x97\xec\xe5\x75\x76\xf1\x50\x49\x1e\xd8\x65\x8d\x2e\x06\xd1\x79\x27\x5f\x1e\x3e\xaa\x5d\xba\x9f\x4e\x97\xc7\x4f\xc2\x38\x4b\xf9\xf4\xdf\xe5\xf1\x9b\x2f\x5e\x3d\x03\x97\x15\x60\x46\xac\xda\x6c\xb3\xcb\x7b\xea\x72\x1e\x0e\xdf\x09\x97\x55\x60\x71\xdb\xf3\x00\xbd\x3c\x2b\x97\x83\xa3\x3c\x10\xaf\x3e\x14\x9a\x5c\x8e\xfe\xbb\x7c\xca\x60\xd0\xd3\x87\xd6\xe5\xa9\x43\xa0\xa7\xf7\xc0\x65\xdd\xf1\xe7\xe9\x93\xf2\xb6\xee\xb7\x83\xe1\x38\xe7\xb7\x55\xbf\xad\x3a\x75\xba\xad\x3a\xe3\xa1\x19\x57\xd3\x7f\xb7\x35\xdf\x5a\xdc\xcf\x73\xfd\xb6\x46\x37\x63\x9c\x82\x83\xb8\x3d\x4d\x58\x31\xcb\xd5\xf4\xdf\x6d\x1d\x1d\xfc\xdc\xad\xe4\xed\x79\xc2\x8a\x49\xd8\xef\xbf\xdb\x7a\x1b\x67\x3f\xcf\xcd\xdb\x8a\x23\xc5\x9d\xf9\xbc\xfa\xef\xb6\xe6\x67\xc1\x5b\xbf\x4b\x6e\xab\xbe\xd1\x7f\x7e\xfa\x3c\xd6\xf3\xf1\x1c\x27\x2a\xfa\x58\x05\x07\x32\x27\x9f\x74\x8f\x67\xef\x61\x9c\x80\x5f\x43\x8f\x75\x78\x18\x59\xe1\x23\xe1\xf1\x78\x1f\x86\x51\xd8\xdc\x8f\xc7\xcb\x1c\x58\xc5\xe7\xcb\xe3\xe1\x3e\xf6\x11\xfb\x7e\x7d\x3c\xdc\x87\x71\x14\x7e\x80\x3c\x1e\xed\xc3\xc0\x93\xf6\xdf\x4b\x78\xf4\xdf\xe3\x79\xdc\x48\x4c\x3f\xd0\x7f\xcb\xfa\x31\x4b\x70\xe9\xde\xa9\xcb\x13\xb9\x18\x66\xe1\x97\xf3\xf2\xae\x5c\x0c\xb3\xf0\x43\x74\x79\x6e\x17\xe3\x52\x7c\xc9\x2c\x1b\x86\xc9\xb4\xce\x97\xee\xb2\x5d\x96\x63\x2a\xfc\x32\x59\x9e\xef\x45\x5b\xf9\xfc\x5c\xb6\xd5\xb2\xad\xa8\xf1\xf2\x7c\x93\xff\x9d\xbd\x45\x96\xcd\xb7\x18\xb6\xe3\xb3\x7e\xd9\x56\x8b\x31\x3a\x9e\xed\x65\x53\x2d\x9a\xca\x93\xbd\x6c\xaa\x45\x53\xf9\xbd\xb9\x6c\x8b\x65\x77\x9a\x4f\xad\xd7\xc6\x78\x19\x72\xe2\xe7\xd1\x6b\x5b\xbc\xb4\x85\x5f\xb4\xaf\x6d\xe1\xa4\x5b\xbe\x22\x5f\x2b\xfe\x3a\xbe\x84\x4a\xbe\x6e\xff\x75\x48\x02\x3f\xfc\xdc\xbc\x29\xd4\x1e\xeb\xe7\xe6\x1d\xe5\xfb\xf3\x49\xf3\xd9\xb0\xcc\x8a\xf5\xb3\xf9\x3f\xb7\x6f\xc2\xf4\xf9\x2f\x1b\x96\x61\xbe\x23\xf9\x79\xf7\xf9\xb8\x30\x63\xda\xe3\xff\x6c\xeb\xcf\x5c\x7b\x0e\xf6\xb3\xad\x59\x69\xf6\x67\x63\x7c\xb6\xb5\x49\xd4\x36\xff\x67\x5b\x7f\x8c\x53\xf0\xad\xf1\x79\xa9\x7e\xa4\xb7\x4d\x37\x6f\xf3\x93\x44\xfd\xf3\xea\xfd\x6c\xfe\x8d\x34\xbc\xec\x3f\x9b\x9f\xd5\x76\x6a\xf3\x39\xf0\xd9\x3e\x1f\xf9\xf7\xbc\x0a\x43\xc7\x0c\x73\xad\xb9\xc8\x82\x88\xb6\x38\x5f\xf1\xa1\x4d\x02\x43\x96\x3d\x94\xc9\x38\x83\x8d\x91\x82\x50\x26\x81\xfd\x5b\x3d\x14\xc7\xf8\x39\xfa\xc6\x5d\xde\x16\x31\x7c\xa0\xb9\xb1\xc7\x22\xaa\xc4\x1b\x34\x08\x41\x0b\x53\x77\x7a\xa8\x8d\x60\xfc\xb8\xdf\x23\x3c\xfc\xf0\xf0\x2d\xca\x16\x79\x2a\x3b\x45\xdd\x22\x4f\x88\x45\x1e\x57\x90\x92\xca\x99\x0c\x95\x0e\x8c\xce\xcb\x2c\x54\x3a\x90\x59\x5f\xb5\x87\x46\x07\xa2\xb6\xe1\xc6\x3c\xb0\x20\xcf\x72\xd0\x88\x1a\x5d\x98\xb3\x3d\xf9\x2f\x8d\x0e\x8c\xf3\x43\x85\x2e\xcc\xd9\x46\x5d\x22\xd9\xfa\xe6\x6c\xf3\xa5\x16\xc9\x1a\x25\x72\x10\xf9\xf0\x8d\x64\xeb\xbb\x64\xec\x2c\x14\xd9\xf8\x26\x68\x77\x8b\x86\x45\x64\x08\x22\xf2\xa1\xdf\x81\xfd\x1c\x75\x63\x56\x3c\xf9\x3d\x7f\x76\x60\xcd\xcf\x62\x34\x7c\x13\x44\xb2\x9a\x26\x5a\x4f\x4e\x9c\x7a\x07\x46\x1b\x34\x90\x76\x07\x32\xcb\x91\xf6\xd0\xee\xc2\x44\xeb\xc9\xb6\x94\x3b\x30\x58\xd8\xa8\x87\x72\x17\xf9\x8c\xab\xe7\x04\x28\x77\x20\x2a\xd3\x58\xf6\x50\xee\x40\x94\x38\x3b\xb5\xf2\xd9\xca\xd3\xb6\x3a\x1b\x18\xbe\xc6\x43\x65\x03\xfb\xce\xf7\xd8\xac\x14\x63\x6b\x4d\x70\xe9\xa1\x6c\x81\xe8\xa4\x97\xf5\x50\xb6\xc0\xf4\xd3\x35\x74\x2d\x30\xb5\x8a\x50\xb5\xc0\x64\xf2\xda\x1e\xc5\x2a\xb0\x6e\xac\x3d\x2c\xa1\x7c\x85\x6b\xd3\x4c\x4f\x5f\xb1\x06\x85\x5c\x38\xcf\x55\xf1\xb2\x2d\x66\x48\xfa\x5f\x9e\xbe\xc2\xd2\x96\x3c\x0e\x42\x43\x03\xe1\x80\xf8\x1e\x1a\x1a\x98\xd9\xfb\x49\x41\x03\xf9\x5c\x57\xc5\x4b\x99\x89\x86\xb3\x8f\x83\x62\x6b\x90\x70\xdd\x6c\xee\xe2\x29\x3e\x19\xd5\x36\xa4\x6a\x07\xa6\xfd\x3c\xa1\xd9\x81\x18\x4c\x2e\xda\x43\xb5\x03\xd3\xd7\x49\x54\x1b\xa8\xd2\x40\xde\xb0\xca\x1e\x98\x3e\xc8\xa3\xda\x18\xa4\x4f\x9f\x2b\x41\xd5\x03\x53\xad\x8b\x6a\x63\x54\x1a\xc3\x1b\x4a\xfb\x03\x33\xd7\xff\xee\x27\xef\xa1\x07\x82\x7c\xae\x4d\x35\x10\x4c\x25\x22\xb4\xc0\x70\x61\x59\x6f\x67\x2d\x10\x4c\xbb\xc4\x42\x09\x04\xd3\x77\x7d\xe8\x80\x60\x66\xaf\x38\x15\x10\x4c\x56\x8e\xe8\xa1\x01\x82\xe9\x67\x4b\x68\x80\x20\x9f\x3b\x4b\x03\x04\xf9\xdc\x33\x0a\x20\xc8\xe7\x39\xa0\xff\x81\x7c\xee\x52\xf5\x2f\x5c\x55\xd6\x33\xa8\xfd\x81\x7c\x1e\x59\xcd\xb6\x63\x55\x59\x66\x73\xef\xa1\x0f\x82\xa8\xd5\x87\xa9\x46\x08\xf2\x79\x1a\x35\x5b\xc7\x84\x6b\xfa\x1c\x42\x1f\x04\x93\x49\x5f\x7b\xe8\x83\x20\x2a\x63\xee\x7a\x74\xdb\xa2\xdb\x16\xb4\x7e\xb7\x2d\x58\x30\x76\x30\x75\x66\x0f\x25\x11\x44\xad\xb6\xbf\x92\x08\xa2\x65\xbe\xd8\xa2\x5b\x77\xc2\xc4\xa5\xf9\xc0\xd6\x1c\xc1\x64\xf1\x8a\x1e\x5a\x22\x88\xd1\x93\x3f\xb5\xaa\xc6\x84\x95\x8d\x50\x1d\x41\x94\xec\x49\xe8\x5e\x1c\x1b\x85\x55\x9a\x7a\xa8\x93\x60\x7f\xcf\xf1\xd3\x61\xfd\x87\xd3\xab\x21\xc4\xa1\x4e\x82\x5d\xc6\x09\x54\x27\xc3\x00\x30\x43\xdb\x7a\x28\x8f\xa0\x84\x77\x92\xf2\x18\x06\x80\x19\x8f\xd6\x43\x7b\x04\xbb\x8c\x6b\x6b\xd8\x00\xe3\x4c\x37\x47\x43\x0d\x1b\x60\x30\x62\x89\x70\x5a\x0f\x35\x33\x0c\x01\x93\xc4\xde\x43\xcd\x04\x85\x35\xa9\x7a\x0c\x1b\x80\x68\xaf\xcb\x2f\xf5\x50\x33\x41\xd4\xe6\x03\x5e\xcf\x04\xfb\x50\x38\xe4\x69\x0b\x18\xee\xf5\x63\x3f\x14\x4d\x50\xc2\x27\x9a\x56\x09\x0a\x4b\x23\xf5\x50\x21\xe3\x8c\x09\xf6\x12\x9e\x56\x6c\x5a\x31\xe4\x27\xf4\x4a\x10\xc3\x6f\xdf\x50\x2c\x41\x61\x85\xa7\x1e\x8a\x25\x88\x5f\xf5\xa1\x36\x3d\xdb\xf3\x64\x00\x78\xc0\x56\x76\x1a\xda\xf6\x11\x39\x3d\xdb\xd3\xd0\xb6\x57\xc0\xb4\x01\xa6\x29\x00\xe7\xf0\x6c\x80\x49\x52\x84\x67\x5b\x53\x05\xfb\xa7\x6c\x4e\x53\x05\xfb\xa7\xec\xf6\xb2\x4d\x88\x14\x0f\x66\xab\xea\xa1\xbe\x82\x68\x3f\x3f\x4f\xd4\x57\xb0\x7f\x6b\x99\x97\xc5\x99\xd1\xd9\xf7\x81\xae\x0a\x76\x19\xd5\xbd\x6c\x29\x56\x9e\xad\x9e\x1e\xf5\x15\xec\xc3\xa3\x41\x2f\x5b\xea\xb2\xa5\x7c\x9c\x28\xb0\xa0\x54\x2f\x3c\x05\x16\x44\x65\x56\xdc\x1e\xea\x2a\xd8\x9b\xe3\xe8\xf4\x55\xb0\xcb\xd8\x9c\xc2\x0a\x4a\xf5\x72\xbf\x6d\x80\xdb\x1c\x00\x7a\x63\x42\x89\x05\xfb\x48\x38\x3a\x2d\x16\x84\xf3\x25\xf5\xb8\x6d\x80\xdb\x06\xf0\x39\xa6\xda\x82\x38\x1f\xdb\xa1\xdb\xc6\x89\xf8\x5a\x5b\xe5\x36\x8c\xf8\xfa\x00\xd7\x6d\x41\x38\x35\x4e\x0f\x45\x36\x4e\x74\xd7\x37\xb3\x22\x1b\x27\xba\x6b\x1b\x2b\xb2\xa0\x0c\x9f\xf4\xb7\x8d\x72\x82\xbb\x5e\x79\xca\x6d\x3c\x2e\xe9\xe6\x15\xf5\xd8\x02\xcf\x09\x78\xf3\xdb\xc7\x16\x78\x88\x6e\xfb\x72\xd6\x77\xc1\xfe\x37\xda\xf3\xf1\x5e\x79\x9c\xbd\xd6\x67\xfb\x63\x03\x9c\x60\xad\xa7\x51\x31\x06\x65\xf8\x45\xf0\x58\xff\xc7\x88\xb7\x07\x67\xfd\x4f\xa8\xd6\xeb\x53\x59\x8e\x13\xaa\xf5\x72\x57\x83\x41\x19\xbe\xff\xf5\xdc\x38\x11\x58\xef\x1e\x45\x17\x94\xe1\x3b\x5b\xcf\x0d\x57\x95\x0d\xdf\x7e\x8a\x2e\x28\xc3\x8f\x26\xad\x36\x8c\xd3\xc6\xfc\xef\xc1\xd8\x3d\xb4\x5e\x50\x86\x6f\x9c\x65\xe3\x2c\x1b\xc7\xab\x43\xeb\x05\x7b\xcb\x1e\x94\x2d\xb1\xbc\x12\xa8\xb5\xda\x1b\xe4\x72\x47\xf2\x13\x44\xef\x05\x65\xf8\x25\xa7\xf7\x82\x68\xd5\x47\xbf\x96\x0b\x6a\xf8\x72\x51\x72\xc3\x28\xae\x2f\x0d\x25\x17\x44\x9c\xc7\xa8\x96\x1b\x27\x8c\xeb\x9d\xa0\xe6\x82\xfd\x7f\x9c\xb9\xd7\xaa\xbe\x46\xac\xa9\xc2\x6b\x55\x37\xea\xf9\x8a\x7d\xbd\x0c\x5e\x16\x01\x4b\xd4\xea\xb5\xf2\xff\x82\xb8\xfe\xd2\xf3\xcb\x82\x3a\xb5\x78\x41\xbe\xd6\xd4\x90\xad\x0f\xe5\xd7\x9a\x6e\x54\x72\xb7\x7b\xbc\x5e\x05\x27\x62\x4b\x0d\xd4\x6d\xb0\x6b\x40\xb3\xe9\xdb\x60\xef\x94\x63\xfb\xac\xe9\xbf\x00\x2d\x9b\x53\xb8\x41\x3d\x8f\x6e\x85\x3b\x14\xee\x50\x4f\x15\x6e\x10\xce\x0a\xdf\x43\xbd\x06\x35\xfb\x22\x50\xaf\xc3\x85\x78\xc2\xf7\xb9\x32\x1d\x1f\x6b\x76\x9d\xad\x59\xad\x6f\xf9\x6f\x6e\xcd\x7a\x19\x9e\x6d\x1e\x88\xe7\xf4\x84\x67\x79\x82\x26\x43\xb1\xe9\x84\x62\x79\x96\x25\xdd\x19\x44\x62\x8a\xc5\x9e\x0c\xcf\x82\xfd\x7f\x95\xb2\x6a\x59\xf5\xff\x0a\x65\xcd\xb2\x46\x30\x32\x28\xea\x16\x19\xb4\xeb\xee\x62\x5a\xe6\x84\x84\x3f\x77\x71\x59\x76\xf9\x7f\xfe\xf6\xb1\xcc\x70\x24\x31\x84\xa4\x54\x83\xca\x42\xb5\x3d\x29\xd5\x20\x9c\xfa\xab\x27\x63\xb1\x20\x4c\xad\xe9\x49\xd3\x06\x95\xe8\x79\x4f\x9a\x76\x32\x18\xdb\xb9\xbd\x92\xc1\x58\x10\x4e\x1b\xd6\x93\xd1\x58\xb0\xbf\xca\x68\x00\x95\x1c\x44\xf1\x8b\x3a\xe9\xe4\xc9\x95\x7d\x98\x58\xa0\x27\x43\xaf\xc9\x95\x7d\x58\xdd\xac\x27\x45\x1d\xd4\x5e\xfd\x37\x2b\x86\x95\x67\x26\x20\xe8\x49\x2b\x4f\x64\x72\x67\xef\xf4\xa4\x5d\x83\xc8\x0a\x5a\x52\xaf\x41\x64\xfb\xde\x92\x51\x55\x10\xa7\xeb\x39\x29\xd8\x20\xf2\x39\x41\x46\x55\x41\xe4\x76\xca\x86\x65\xfb\x62\xf4\x35\x95\xb4\x6e\x10\xd9\xce\xff\x64\x54\x15\x74\x3e\x4b\x93\x1e\x0e\xa2\x33\x7e\xb7\x27\x3d\x3c\xb1\x00\xac\xc1\x9c\xa4\x86\x83\x38\xfd\xc0\x49\xe9\x06\xc1\x2a\xdc\x3d\xa9\xc9\xa0\xfa\x39\x97\xb4\x64\xd0\x3d\xab\x06\x40\x41\x30\xa1\x5e\x4f\xc6\x3f\x41\x52\x74\x93\x2a\x0d\xb2\xfd\x95\x49\x95\x06\x9d\x97\x5d\xca\x9e\x82\x6c\x1f\x94\xbf\xf3\x48\x4d\x85\xce\xfe\x97\x97\x96\x53\x49\xf3\x64\x49\xda\x76\xd2\xb6\xed\xbf\x4f\xda\x36\xe8\x3f\x2f\x54\x6d\x1b\x74\xa3\xeb\x49\xb5\x06\xfb\xa3\xd0\x5f\x5a\xc7\xc2\x83\x90\x8f\xe7\xa4\x47\x83\xce\x7b\x2e\x19\xe9\x04\xc1\xd4\x82\x3d\x69\xd6\x69\x6b\x74\x3f\x17\x90\x16\x0d\xc6\xa9\xb6\x16\x0d\x72\xe2\xf1\x96\xf4\x63\x30\x4d\x5c\x48\xea\x31\x88\x6a\x7f\x56\xd2\x85\x41\xee\xf4\xa7\x24\x5d\x38\x99\x34\x6d\xbf\x7c\x32\xca\x09\xe2\x84\x15\x92\x36\x0c\x8a\xb9\x06\xa9\x5a\x25\x82\xa1\xff\x1a\x48\x43\x06\xb5\x5a\x03\x0d\x19\xf4\xe2\xa1\x79\x2a\x19\x5e\xfc\xef\x30\xac\x66\xe5\x54\xd2\x16\x3a\x31\x08\x67\xc3\xe9\x49\x29\x4e\x26\x4c\xfb\xb0\x53\x8a\x41\x0b\xef\x43\xa5\x18\xc4\xbe\xfb\xff\xf3\xb5\x9d\x74\xe6\xe4\xda\x3e\x3c\x6c\x93\xce\x0c\x82\x61\xff\x3d\xe9\xcc\x20\x18\x25\xdf\x93\xce\x0c\x9a\x1a\x9d\xb4\x61\x10\x4e\xa1\xde\x93\x3a\x0c\xa2\xf9\x78\xd3\x7d\x41\x34\x6b\xa7\xfb\x82\x76\xee\x3c\x3d\x17\xf4\xf3\x30\xd2\x73\x41\x67\x62\x9c\x9e\x8c\x85\x82\x98\x5e\xf5\xaa\x2f\x70\x4c\x40\x4f\x6a\x2e\x88\x49\xc7\x40\x52\x73\x41\x67\x4e\x9a\x9e\x8c\x8e\x82\x98\xf4\x3b\x24\x25\x37\x39\x01\x97\xcf\x7f\x1d\x17\xf4\xf3\xa8\x57\x71\x41\x3f\x4f\x7a\x83\xa3\xc9\x09\xb8\xce\xb6\x3c\xcf\x9d\x4e\x56\x62\xea\x49\x99\x05\x69\x9c\xff\xb2\x8e\xdd\x4e\x56\x2e\x36\x43\xa3\xe0\x44\x46\x93\x7a\x0b\x32\x0b\x65\xf5\xa4\xdd\x82\x34\x3c\x1f\xca\x2d\x88\x7f\x95\x54\x6e\x41\x66\xc2\xf9\x9e\x94\x5b\x30\x8c\xd5\x25\xdd\x16\x8c\xee\x63\x4f\xb5\x05\x51\xed\xca\x4f\xaa\x6d\xda\x1a\x3b\xba\xaf\x42\x23\xa3\x60\x74\x9f\x68\x5a\x2c\x98\xd9\xab\x62\x58\x71\x47\x40\x7b\x3d\xe9\xb5\xc9\x11\xd0\xcd\x2a\x59\x71\xb4\xb6\xdb\x5b\x95\xd4\x5a\x30\xfd\xd4\x48\x46\x54\xc1\xf4\x7b\x21\x29\xba\xe9\x88\x2e\x55\x32\xa2\x9a\x4c\x6b\x3e\xb7\xac\xf2\x0b\x76\x9d\xdc\x9a\xad\x61\x5a\xf3\x79\x02\x68\xc4\xa0\x84\x8f\x77\x85\x38\x1d\x21\x4e\xee\xd5\xe6\x98\x2e\xbe\x8e\xaa\x24\xed\x37\x1d\xfb\x45\x10\x92\xf6\x0b\x8a\xe9\x46\x49\xd1\x4d\x66\x3f\x27\x1f\x0c\x4a\x2d\x88\xc1\x4c\xd3\x3d\x69\xb0\x60\x7f\x55\xb0\x39\x0d\x16\xd4\xea\x2b\x5a\x81\x05\xfb\xdf\x38\x12\x05\x16\xec\x32\x6a\xa1\xc0\xa6\xcb\x44\x2d\x3f\x0d\x14\x58\x50\x3b\x51\x84\xa4\xbf\x82\x48\xdd\x77\xaa\x02\x0b\xf6\xeb\xdd\x23\xb1\xb2\x97\xeb\x00\xda\xc6\x0a\x2c\xe8\x3e\x8a\xf5\x57\xb0\xdf\xb3\xfe\x97\x67\x7f\xa3\x19\x5b\x48\x2a\x2d\x50\x0a\x92\x42\x0b\xda\xb9\x37\x94\xd7\xe4\x8c\xd4\xd9\x87\x89\xa2\x9a\xb6\x94\xb6\xb0\x02\x8a\x25\x68\xf6\x5e\x26\x1d\x12\x34\xfb\xa5\x92\xbe\x08\x9a\xbd\x61\x49\x5d\x04\xd1\xfc\x9c\x7a\x3c\x05\x0f\x33\xd8\xfb\x3e\x53\x20\x41\x24\xaf\x5d\xfd\x11\x34\x7b\xf3\x92\x31\x54\x10\xc9\x4b\x57\xa5\x04\xed\x7c\x0e\x69\x94\xa0\xd9\x63\x99\x34\x45\xd0\x98\xa6\xa6\x27\x4d\x11\xf4\xf3\x1e\x57\x14\x41\x3b\xad\x6a\x54\x15\xb4\xe6\x9d\x67\x50\x15\xec\x7b\xca\x8d\xd9\xf8\x4e\xed\xec\xbb\x45\x75\x04\xd1\xbc\x44\x55\xc7\xe4\x34\xce\xde\x66\x9a\x63\x72\x1a\x67\x5b\x5a\x73\x4c\xce\xd9\xec\xeb\x58\x0d\x04\xad\x79\x93\x19\x0e\x05\xd1\x7c\xa5\x2a\x86\xa0\x35\xcf\xb7\x5e\x98\x1c\xf8\xeb\x47\xbf\x5e\x08\x5a\xf3\xc1\xa1\x16\x82\xd6\x7c\x0d\xaa\x80\xa0\xff\xfc\x08\x51\x01\x13\xbe\x37\x3d\xb7\xea\x1e\x88\x66\x78\x29\xbd\x9e\x36\x96\x12\xfa\xf9\xe0\xd0\x00\x41\x67\x16\xa8\x9e\xb4\x3d\xd0\x7f\x7e\x58\xa9\x76\xa0\x33\xdb\x5b\x4f\xaf\x87\xcf\x00\xe2\xe9\x13\xf9\xf5\xf0\x5f\x4e\x5b\x2e\x7f\x78\x3f\xab\x87\xa0\xff\xfc\x8c\x34\x58\x0a\xfa\xb9\xb7\x75\x37\xd0\xcf\x6d\xac\xa7\x81\x7e\xee\x76\x03\xa3\x20\x9d\x4b\x4b\x73\x03\xe9\x5c\xa6\x9a\x1b\x48\xe7\x2e\x30\x30\x0a\xfa\xb1\x25\x5d\x0e\xf4\xf3\x1c\x32\x30\x0a\xd2\xf9\x22\x50\xef\x40\x3a\x37\x99\x76\x07\x3a\x79\xdc\x3d\x69\x77\xc9\xb8\x28\x47\x9f\x8d\x8b\x82\xae\xc7\x65\x7d\x0f\xf4\xc2\xb7\x5f\x56\xf7\x40\x34\xdf\x83\xd9\x58\x69\x76\xa8\xaf\x31\xc9\xac\xc7\x81\xf1\xeb\xfe\x74\x58\x44\x44\x98\x2a\x65\x2d\x0e\x8c\xdf\xd9\xe7\x6d\x91\x6f\xb3\x49\xd1\x63\xd1\x7e\x8d\x33\x7a\xbc\x67\x7d\x0d\x0c\x66\xc5\xef\x59\x5d\x03\xdb\x9c\xd9\xbe\xf9\xb4\x60\xfc\xf8\x72\xc8\x61\x05\x36\x46\xe7\x43\x38\x6b\x75\x20\xd9\x8f\x95\x15\x38\x90\xd4\xc1\xac\xbf\x65\x43\xaa\x7c\x8d\x67\x93\x69\xc1\xb0\xcf\x32\x6b\x74\x20\xd9\xc5\x94\x95\x37\x90\x18\x3e\xd3\xb3\x51\x56\x90\x18\xdc\xd2\xb3\x3e\x07\xc6\xaf\x79\x5c\xaf\x45\x7c\x98\x70\x3d\x65\x6d\x0e\x8c\xce\xc3\x31\x2b\x73\x60\x74\x8c\x20\x1b\x2b\xcd\x4e\x66\x45\xaf\x59\x56\xe5\xc0\xe8\xe1\xb6\xac\x10\x93\x59\xf5\xf0\xbf\xac\xd0\x46\x70\xb7\xec\x3f\xac\x51\x62\x86\x15\x7a\xf4\xb2\x22\x07\xa2\xf6\xe4\x3e\xad\xa5\x2a\xe7\xf3\x31\xab\x72\x20\x1a\x33\x17\xf4\x9c\xac\xe7\xc6\xe8\x61\x91\xf5\x3c\x7a\xc7\xcd\x9d\xd5\x3b\x30\x3a\x2f\x99\x6c\x4c\x15\x8c\xce\x33\x33\x1b\x53\x05\x83\xa5\x1c\x7a\x36\xa6\x0a\x46\xe7\x09\x96\x0d\xa9\x66\x27\xaf\x1a\xfe\x97\x2d\x94\xf9\x00\xc3\x43\xb2\xaa\x98\x0d\xa8\x0e\x7f\x68\x0b\x6d\x64\x3f\xb6\xb2\xfa\x08\xf6\x55\xe6\xc6\x6c\x21\xf2\x67\xbb\x69\xdb\x59\x81\x04\x33\x37\x8b\x6c\x21\x06\xd8\xe6\xe6\x2f\x6d\x20\x06\xd8\xe6\xe6\x0e\x6c\x0c\x26\xb9\xf2\xd3\x30\x6b\x90\x20\xfb\x69\x98\x35\x48\x30\x33\x1f\xa8\x59\x81\x04\xfb\xc8\xf8\xa5\x06\x99\x8d\xd7\xf2\xfa\xce\xc6\x6b\xc1\xfe\x8a\x62\x9f\x5a\x25\x28\xc1\xc7\x7a\x36\x60\x0b\xb2\x01\x9e\xac\x42\x82\x70\x25\xdd\x9e\x75\x48\x30\xb3\x37\x85\xd1\x59\x30\xb3\x17\xb2\x0e\x09\xf6\x3e\x3d\x34\xaf\x83\xe2\x80\xfb\xe4\x1e\xac\x3b\x8b\xbe\x9a\x9d\x9d\x75\xcd\x6c\x2c\x36\xf9\x3c\x50\x36\x41\x89\x6c\x91\x95\x77\x21\x58\xdd\x25\xeb\x9f\xd9\x51\xbb\xa6\x07\x66\x2d\x12\x14\xf3\xda\xb3\x12\x09\xf6\xbf\x71\xa9\x69\x91\xd9\xc5\x89\xda\xd9\xab\xf5\x72\xe8\xad\x0a\x9d\x15\xc9\xec\xea\x44\xcd\xb3\xa5\x36\x66\xb5\xd1\x0e\x8c\xac\x37\x66\x97\x1e\x32\xdf\x30\xeb\x7c\xd9\x11\xb4\xf6\x44\x64\xa5\x2f\x3b\x82\x56\x51\xcb\xc6\x40\xc1\xfe\x4e\x65\xbf\x6a\x5f\x46\xf1\x22\xb9\x0f\x43\x9e\xa0\x8c\xea\xe6\xac\x06\xda\x17\xc9\xb3\xa8\xf7\x81\x88\x74\x76\x61\x35\xda\xe9\xfa\xa5\xba\xca\x20\xd8\x65\x6e\xef\x54\xe3\xb3\xaf\x93\x6b\x47\xf7\x03\xd5\x00\x57\x36\xec\x99\x9d\x91\xd9\x3e\x83\xac\x0f\x82\x6a\xc7\x48\xd6\x07\xc1\xde\x1a\x8d\xa2\x10\x66\x47\xc7\xfe\xc6\x1f\x5e\xd7\xd9\x48\x29\xa8\xe7\x1e\xd2\x21\xb3\xd9\xb4\xe1\x69\x56\x22\x41\x55\x76\xb2\x12\x09\x6a\xf5\x9a\x31\x4e\x0a\x6a\xf5\x42\x55\x22\x41\x6d\xde\x43\x46\x49\x41\xb8\x76\x66\xcf\x8a\x65\x36\xe9\x96\xd5\xa8\x7b\xd6\x2c\x41\xe4\x73\xdd\xab\x96\x20\xb2\xdd\xec\x59\xb7\x04\xd5\xc4\xa8\xac\x5b\x82\xc8\x86\x93\xb3\x72\x09\x22\x9b\xe4\x90\xcd\xc4\x05\xfb\xff\xd8\xad\xc2\x09\xec\xb4\xcf\xfa\x26\xe8\x4c\x98\xd9\xb3\xbe\x09\x92\xdf\xd4\x59\xdf\x04\xc9\xe0\x45\x56\x37\xc1\xf8\xf1\xe1\x93\x0d\xa4\x02\xa3\x34\xd9\x30\x2a\x68\x6a\x76\xd6\x49\x41\x3f\x07\x6f\x5b\x0c\xbb\x4e\xdc\x92\x4d\x61\xae\x6e\x58\x1f\x35\x12\x34\xfd\x33\xab\x91\x99\x2c\xdc\x53\x43\x8d\x31\xbb\xde\xd0\xf9\xa1\xf5\x71\xbd\x21\x2f\x03\x85\x11\xb4\xd3\x84\xfa\x22\x08\x47\x55\xf6\x6c\x14\x14\x44\x53\xa1\xb2\x72\x98\x5d\x4b\xc8\x87\x98\x41\x50\x10\xe5\x5c\xfc\xfa\x62\x76\xb4\xac\xef\x5e\x83\xa0\xa0\x35\x1f\xfc\x1a\x24\x68\x0e\xeb\xc8\x0a\x24\x68\xcd\x26\x53\x16\x41\x73\x8c\x48\xd6\x15\x41\x34\x3f\x7c\xcc\xd5\x05\xed\x5c\x8d\xda\x63\x36\x55\xd7\xe1\x40\x59\x7d\x04\xd1\xbc\x01\xb4\x47\x10\xcd\x87\xab\xf2\x08\xe2\xdf\x75\x61\x46\x2f\x88\x76\x36\x66\x03\x5d\x7c\xee\xfb\xb2\x51\x28\xb3\xcb\x1e\xd9\xda\x7a\x21\x88\xe9\xd5\x63\x4c\x33\x9b\x98\xeb\x09\xd0\x14\x41\x37\x1f\x29\x1b\xd1\xcc\xe6\xea\xfa\xad\x75\x5b\xcb\x9b\xaf\x7d\x3f\x99\x8c\x71\x82\x98\xe7\xbf\xac\xe4\x8d\x00\xa0\x5f\xd9\x08\x27\xe8\x3f\x3f\xac\x4c\xd5\x05\x31\xbd\xd0\x0d\x70\x82\x5e\xfc\x20\x30\x96\x99\x4d\xca\xf5\x8a\xd2\x4d\x41\x37\x87\x2e\xeb\xa6\x20\xa6\xff\xa5\x88\x82\xfe\xf3\x65\xa4\x88\x82\x6e\xb7\x4d\xd6\x3a\x41\x67\x0a\xd5\x9e\xb5\x4e\xd0\xed\x08\xc9\x86\x31\x41\x37\x01\x33\x1b\xc5\x04\x9d\xf9\x58\x7b\xd6\x4d\x41\xfc\x6f\x99\x67\x92\x30\xe6\xb4\x59\x95\x53\xd0\xcf\x47\xb9\x72\x0a\xfa\xcf\x8b\x5f\x39\x05\x31\xcf\x2e\x6d\x0a\xdd\xf4\x9c\x6f\x63\x9d\x20\x8e\xa5\x65\x85\x15\xc4\x09\xca\x65\xf5\x34\x9b\xc1\x4b\xaf\x45\x36\x83\x37\x9b\xc1\x4b\xf7\x57\xd6\x58\xb3\x19\xbc\x3e\x3e\x8d\x65\x82\x68\xcc\xbb\xd0\xb3\x16\x0b\x7a\xf1\x33\x56\x8b\xcd\x8b\x7e\x3f\x42\xae\x59\x65\x05\xbd\xf8\x16\x51\x59\xb3\x19\xbc\xd3\x1f\xda\x1a\xac\x91\x5b\x7c\x3a\x6b\xb1\xd9\xa4\xde\xe1\x1e\x6d\x0d\x93\x7a\x09\x06\x67\x93\x7a\x41\x32\xf1\x2b\x2b\xb6\x20\x9d\xe7\x8a\xb1\x4d\x10\x83\x11\xba\x3d\x2b\xbb\xd9\x35\x85\xec\x9e\xce\xca\x6e\x76\xdd\x5c\x82\xf2\x59\xd9\x05\xd1\xcd\x0e\xcd\x86\x3b\x41\x2f\x3e\x6a\x14\x60\x10\xb5\x7a\x1d\x1b\xef\xcc\x2e\xa6\xeb\xa7\xb9\x52\x9c\x5d\x4c\x77\xba\x03\x1b\xe8\xb5\x81\x38\xc5\x4a\x31\x48\xe7\x91\xaa\xf5\x66\xad\xf7\x6c\xde\xd6\x78\x55\x49\xb7\x65\x6b\x30\x8b\xf3\x7e\xf0\xfe\xf7\xeb\xd9\x0c\x65\x10\xcd\xe1\x1d\x59\x9d\xce\xae\x27\x54\xb3\x65\x36\x83\xc9\xc7\x5e\x13\xc6\x42\xc1\xf8\x79\xe5\xa8\xd8\xd9\xdc\x63\x1c\x38\xab\xd8\x20\xfe\xdd\x6e\x3a\x76\x36\xf9\xd8\x0f\x10\x1d\x1b\x44\x3d\x6f\x16\x25\x3b\x9b\x7d\xec\xd9\x50\xb2\xc1\x3e\x34\x8f\xc3\x0b\xc5\xf4\x63\x1b\x50\xcb\xce\xce\xe1\xec\xa5\xa9\x65\x83\x64\x86\x40\xd6\xb2\xb3\x96\xcd\x15\x56\xb4\xec\x62\xf6\x31\xa7\xac\x68\xd9\x60\xfc\x38\xd9\xc5\x00\x2a\x48\x46\xf6\x8b\x92\x5d\x4c\x48\xe6\x32\x2f\x86\x54\x8b\xf3\x3c\x73\xef\x16\x23\xaa\x20\x99\xe1\x51\x34\xf1\xa2\x89\xf3\xb0\x2b\x9a\x78\xd1\xc4\xa7\x7b\x9c\x16\xd9\x05\xe1\xb6\x2e\x8b\x48\x64\x2e\x1e\xfd\x6d\x11\x89\xcc\xd3\xcd\x3f\x16\xd1\x38\xd3\x43\x5d\x16\xd1\xc7\x4e\x4b\x17\x45\x1c\x44\x77\x98\x60\xd1\xc4\x41\x54\xb3\x3d\x8b\xa3\x5d\x41\x30\xec\x7f\xff\x61\x35\x4f\x80\xd5\x4a\xe9\xe7\x60\x74\x3e\xdd\x8a\x7e\x0e\xa2\x99\xb9\x57\xb4\x71\xb0\x6f\x4b\x0f\xc5\x6a\x05\xf1\xa0\xe4\x1e\xac\x96\xf3\x54\x4f\x8b\xac\xd6\x59\xf2\xf7\x6c\xcd\x7a\xa1\xe8\x3d\x5b\x87\xd7\x22\x3f\x61\x78\x1f\x17\xb3\x9e\xc1\xe8\x56\xcb\xac\x67\x30\x3a\x4f\xca\xa2\xc9\x83\x9c\x6c\x37\x4d\xbe\x68\xf2\xdc\x15\xc5\xa8\x2c\x18\x3d\xfb\x5f\x36\x87\x72\xef\x39\x50\xee\x8b\x89\xd0\xd3\xcd\x7b\x8a\x13\x73\xef\xd2\x2f\x5e\x14\x79\x30\x3a\x5d\x74\x45\x91\x07\x99\x05\xf8\x7b\xd1\xe3\xc1\x49\x14\x2c\x6a\x3c\x18\x9d\xef\xa3\xa2\xc5\x17\x2d\x3e\xf9\x43\x9b\x82\x5c\x69\x07\xce\x14\x73\xa5\x8b\x93\x52\xf3\xb4\x2e\x7a\x7d\xd1\xeb\x79\x26\x16\xbd\xbe\xe8\xf5\x74\x1c\x14\xbd\xbe\xe8\xf5\xd9\x1f\xda\x38\x99\xa9\x77\xbd\x97\xf4\xfa\xa2\xd7\xf3\x98\x2f\x7a\x7d\x51\xe2\x79\x8a\x14\x25\x1e\x44\xb5\x93\xa9\x68\xf1\x20\x9c\x16\xa0\x17\x2d\xbe\x68\xf1\x8e\x32\x28\x5a\x7c\x71\xaa\x6a\x1e\x10\x45\x65\x07\x7b\x73\xd4\x53\x41\x2f\x0a\xba\x5b\x53\xd0\x8b\x82\x4e\x07\x55\x51\xd0\x41\xb6\xff\xa2\xe8\xe7\x45\x3f\xe7\x39\x55\xf4\x73\x10\x65\xd0\x4d\x56\xf4\xf3\x62\x42\x75\xf7\xdf\xac\x28\x09\xd5\x95\x69\x16\x7b\x31\x10\x0c\x66\xe6\x79\x59\x0c\x04\x83\xfd\x72\xf1\xa7\x56\x1e\x8f\xaf\xcc\xba\xd5\x8b\x1e\x0f\xe2\x7c\xa0\x14\x45\xbe\x98\x52\x6d\x45\x95\xf6\x62\xfe\xb4\x0f\x21\x9d\x1d\x4c\x96\xe1\xe8\x45\x67\x2f\xe6\x4a\xd3\x6f\x55\xf4\x73\x30\xb3\x95\x52\xcf\x8b\xa9\xd2\x9e\x16\xc3\xc3\x20\x9a\x9f\x31\xc5\x5c\xe9\x62\xae\xb4\x4f\x47\x23\xc6\x20\xdb\x45\x58\x0c\x18\x83\x70\x6e\x98\x5e\x74\x7d\x30\x73\x77\x63\x56\x93\xfc\x69\xbb\xbc\x8a\x5a\x0f\xb2\xfd\x81\x45\xab\x2f\x24\x48\xdb\xab\x54\x94\x7a\x10\xfd\xe7\xb5\xa6\xd4\x83\x6c\x5f\x5c\xa9\xa7\xe6\x5e\x08\xb4\xb6\xd1\x5e\xb0\x2f\x2b\x76\xa0\xe6\x17\x35\xdf\x28\x61\x31\xb8\x0b\x4e\x96\x58\x31\x21\x1a\x94\x28\x6e\xcd\xaa\xd3\x19\x70\xc6\x54\x16\xe3\xbd\xc5\x89\xb2\xec\xb0\x2e\x76\x06\x80\xa8\xbf\x3f\x2c\xb9\xd5\x8b\x9d\x05\xa0\x38\x70\xbf\xd8\x57\x00\x4a\x14\x37\x6c\xdb\x98\x1f\x6d\xee\x7a\xb1\xab\xa0\x38\x62\xd6\x28\x51\x69\x36\x18\x33\x6b\x45\xb1\xc8\xf6\x6a\xce\x3d\xe8\x03\xc8\x60\x32\xc8\xc6\x2e\x8b\x1d\x0a\xa0\x04\xdf\xfe\xc5\x0e\x05\xb0\xdb\x8b\x33\x6e\x87\x42\x71\xba\x2d\xbb\xff\x8b\x3d\x0a\x60\xff\x1f\x75\xb0\x47\x01\xec\x83\xe3\x80\xed\x32\x00\xfb\xb7\xb4\xac\x7d\x06\x60\xff\x1f\x95\x35\xa4\x0c\xe2\xa7\x80\x15\x7b\x08\x40\x54\x47\xdb\x14\xfb\x03\x40\xfc\x94\xa6\x62\x7f\x40\x71\x2a\x2d\x7d\xab\xd8\x1f\x00\x8a\xe9\x34\xc5\xee\x00\x10\x91\xbc\x8a\xec\x0e\x00\x45\x1f\x2d\x76\x07\x14\x13\xa9\x8d\x0e\x15\xbb\x03\xca\x89\x35\x23\xa9\xc5\xee\x00\x50\x1c\x6b\x5d\x74\xff\x62\x22\xb5\x2e\x58\x94\xff\x62\x22\xb5\xd1\xa0\xa2\xfd\x17\x13\xa9\xdb\x39\x12\x2f\xa3\x61\xdf\x98\x17\x85\xfe\x5f\x86\xfd\x60\x3e\xc7\xd4\x7d\x50\x34\xd0\x62\x08\xba\x9c\x44\x6a\x9f\x46\xc6\xa0\x41\x9c\x1e\xed\x62\x74\x19\x44\x98\x97\x5f\xec\x04\x00\xbb\x51\xa8\xad\x81\x63\xb0\xcb\x38\x64\xbb\x01\xc0\x2e\xa3\x8d\x95\x7e\xb0\xb7\xe7\x6f\xad\xc6\xa4\x6b\xcc\x87\xa0\x59\xd3\x20\x9c\x86\xaa\x17\x03\xc7\x60\x6f\x8e\x9a\x19\x38\x06\xe1\xf4\x2e\xbd\xd8\x61\x00\xca\xf0\x8e\xb6\x73\x00\x94\xe1\xc5\x63\xdf\x00\x28\x83\xcf\xfa\x62\xdf\x00\xd8\x3b\xe0\xda\xb6\x73\x00\xec\x32\xda\xc4\x58\x32\x28\x83\x20\x62\xb1\x77\x00\x44\x63\xc5\xba\x5e\xec\x1e\x28\x4e\x9b\xe5\x48\x8e\x62\xff\x00\xa8\x76\xe5\x16\xfb\x07\x40\xb5\x13\xb8\xd8\x3d\x00\xaa\x3d\xa8\xc5\xee\x01\x50\x8d\xdf\x17\xbb\x07\x8a\x93\x66\x39\x22\xa3\xd8\x3d\x50\x9c\x34\xcb\x21\x28\xc5\xce\x80\xe2\x04\x59\x8e\xd1\x29\x86\x92\x8b\x93\x61\x39\x68\xa2\x18\x4c\x06\xd5\x98\x7e\x31\x39\x1a\xec\x7f\xa3\x95\xec\x48\x28\xf7\xc9\x09\xe5\x50\xec\x36\x00\x71\xfa\xea\x8a\xfd\x06\x60\x9f\x2d\x76\x6b\xc7\x01\xd8\x65\xee\xd6\xfa\xdf\xa6\x14\xfa\xd6\xb2\xeb\x00\xec\xbb\x8e\x76\x32\x62\x0d\x22\xf5\x73\xc8\x56\xf7\x76\x7e\x1b\x3f\x87\x0c\x63\x83\x5a\x7d\x78\xdb\x7b\x00\xf6\xbf\xb9\x0b\x5b\xe0\x66\x7a\x17\x9f\x3b\x76\x1f\x80\xbd\x57\x1a\xd4\xd8\x36\xd8\x3f\xa5\x05\xec\x53\x28\x06\xb7\xcd\x33\x2d\x76\x2a\x80\x5d\x0b\x8e\xce\x5e\x05\xb0\xcb\xfc\xad\x35\x7b\x0c\xe1\x78\x8f\xd9\x3b\x00\x6a\xf5\xb1\x68\xef\x00\xd8\x3f\xa5\xf1\xec\x1e\x28\xcf\xf9\xb4\xb1\xcc\x5a\x6c\x54\x3b\xaa\x8a\xde\x5f\xf4\x7e\xa6\xca\xed\x45\xc9\x07\x31\xc2\x9f\x6a\xf9\xa0\x76\x6f\x13\x2d\x1f\x44\x36\xe7\xa2\x68\xf9\xa0\x76\x9f\xa7\x5a\x3e\xd8\xff\x46\xab\x1b\xac\x06\xbb\x8c\xba\xaa\xfe\x60\x97\x79\x24\xd6\x75\xa3\x0e\x2f\x1e\xdd\x1f\x44\x76\xac\x6e\x51\xfe\xc1\xa8\xfe\x97\xa7\xd5\x25\x86\x09\x65\x14\xdd\xbf\x10\xd4\x2e\x7e\x44\xeb\xfe\x20\xd9\xb9\x5a\x74\x7f\x30\x1d\x95\x53\x54\x7f\x50\x86\xda\xa1\xf9\x83\x5a\x7d\x85\x69\xfe\xa0\x9e\x47\x90\xe2\x0f\xf6\xa1\xba\x31\x1b\x68\x63\xd4\x3f\x0c\xc0\x2e\x76\x0b\x80\x68\xe7\x33\xcd\x7e\x01\xd0\x9a\xe7\xc7\x7e\x01\x70\xbe\xfd\x4d\x82\x06\xff\xbe\x80\x15\x7e\xd0\x1d\x40\x5b\xcc\x78\x06\xd1\x4c\x25\x2a\x66\x3c\x83\x68\x46\xcf\x8a\x19\xcf\x20\x4e\xc7\x6d\xd1\xf2\xcb\x56\xfa\xce\x24\x89\xbd\xa8\xf4\xc5\xd5\x96\xce\x1e\x3c\x58\x27\x9f\xca\xda\xa2\x62\x0e\x46\xf7\xf9\xa4\x84\x83\x99\x7d\x14\x29\xe1\x60\x66\xcf\xbe\x12\x0e\x66\xe6\x7d\x50\x95\xf0\xea\x44\xd7\x86\x39\xab\x81\xed\xfa\xf3\xdb\x21\xfb\x7f\xc5\x32\x3f\xc0\x2c\xaa\x16\x55\x2b\xf5\xa3\xac\x5b\xe6\x9b\x93\xbb\xbf\xaa\xd8\xd5\x19\xab\x4d\x93\xad\xda\x33\xd8\x8f\xfa\x41\xd9\x63\xd9\xe2\x4a\xf1\x48\x5e\x8b\x0c\x87\xf2\x49\x5d\x8d\x77\x83\xfd\x9c\xdc\x75\xad\x06\xbc\x6b\xf8\x9c\xe4\x9b\xb4\x1a\xca\x06\xfb\xc9\xe1\xff\x59\x8b\x33\x83\x14\xc6\x5b\x75\x6a\x50\x0d\x4f\x56\x95\xba\x9e\x19\xa4\x86\x9b\xb3\x66\x38\x75\xfe\x9d\xcd\x59\x33\x82\xde\x9c\xfc\xaa\x65\x83\xe8\x1d\xcf\xab\x5a\x36\x08\xa6\x0f\xeb\x55\xa5\xae\x06\xbd\xab\xdb\x5a\x16\x79\x06\xdd\x98\xb5\x0f\x6b\xcf\x83\xa9\x3a\xb4\x18\xf8\x3a\xac\x0a\x35\xe8\xcc\xbf\xda\xab\x42\x0d\xd2\x39\x30\x55\xb9\x1e\x2f\xf6\x87\x1e\x3d\x12\xcc\x97\x40\xd5\x81\x41\x8b\xb3\x75\x4f\x94\x53\x3d\xf1\xd0\xab\x3a\x30\x88\xe4\x79\xd2\x81\x41\xcc\xea\x31\x78\xf0\xc9\xbb\x85\x66\xd5\x81\xc1\xe8\xbc\xf4\xaa\x0e\x5c\x5d\x5f\x89\xdf\x69\xb2\x20\x9a\x83\xd8\xaa\x2a\x0b\xa2\x3b\xc1\x50\xd5\x65\xab\xb3\x37\x79\xda\xd4\x56\xd0\x1c\xd2\x5a\xb5\x56\xd0\xf2\xf9\xa1\x35\x72\x1c\xf0\x68\xee\xc0\xe3\x67\x2a\xe7\x73\x85\x1a\x7c\x06\x8d\x49\xf5\x7a\xd5\x6d\x6b\x21\x9e\x81\x05\x56\xad\x15\x44\x37\x01\xb8\xea\x9e\x20\x5a\xf0\x2d\x52\x95\xcf\x5a\xec\x9f\xf7\xdf\x3c\xb4\x62\xc4\x61\x58\xe6\xb1\x31\xb9\x92\x93\x01\x55\x03\xc6\x20\xa6\x35\x50\x3d\xc1\xfe\xa5\xff\xe6\xe1\xb2\x8c\xef\xb4\xee\xe5\x1c\x2e\xd9\xa9\x3c\xea\xab\xee\x09\xa2\xfa\xb1\x5b\x35\xcd\xaa\x69\x1a\x35\xac\x9a\x26\x48\xf9\xfc\xd4\x73\x50\x5d\x5d\x93\x27\x69\xd5\x21\xab\x0b\x00\x5b\x2b\x1d\xb2\xba\x00\xb0\x35\xd0\x21\x41\x67\x8e\xe3\x5e\xcd\x31\x06\xe9\x9c\x29\xb5\x12\xa4\x73\xa6\x54\x48\xd0\x1d\x5e\x53\x55\x48\x10\xd5\x1e\x92\xaa\x42\x82\xe4\xd7\x65\xd5\x20\xc1\xf8\x79\x17\x6a\x90\x60\x68\xad\x55\x83\xac\xcd\x1e\x42\xb7\xe5\x79\x6a\x76\x12\x78\x1b\xaa\x7e\x20\x67\x6f\x30\xd5\x0f\xe4\xfc\x73\x97\x56\xa9\xd1\x33\x94\xdd\x98\x55\x6a\xcb\x2f\x01\x6a\xae\xf9\x81\xbd\x03\xff\xcf\x7a\x36\xef\x0b\xf6\xa9\xf9\x81\x74\x6e\x0c\x2d\x0f\xec\xad\x51\x03\x4d\x0d\x64\x53\x59\xaa\xc1\x5d\x30\x33\x1f\xa0\xd5\xe0\x2e\xc8\xa6\xc5\x54\x75\x0e\x4c\xc7\xb6\x56\x6d\x0e\x44\x33\xca\x5d\x35\xb7\xaa\xb9\x19\x15\xab\x9a\x5b\x75\x12\xe4\xc6\x77\x65\x55\xdd\x40\xb1\x7b\xbf\x6a\x6e\x60\x3f\xe1\xff\xd0\x3f\x5e\x35\x36\xb0\x3f\xba\xd8\x9b\x01\x5c\xb0\x9f\xec\x1c\xbc\xca\x06\x4e\x97\x79\xd5\xd8\x40\xad\x58\x6c\x35\x14\x0b\xaa\xdd\xa7\x55\x37\x03\xc3\x47\x86\x6a\x06\x5a\xb3\x4d\x35\xb3\x3a\xce\x59\xe3\xe2\x31\x62\x0b\xa2\xdb\x4d\x5c\x0d\xd9\x82\xe4\x87\x4d\x55\xe0\xea\x19\xf5\xea\x99\x34\x3f\x18\x14\xa7\x67\xac\x3a\x1d\xa8\x3e\x9d\x35\xba\x6a\x10\xd7\xbb\x46\x51\xab\xce\x9b\xe4\x51\x28\x6a\x75\x7a\x86\xdc\xa3\x07\xeb\x5c\xc6\xbe\x6e\xf5\x2f\xb0\x8f\x95\x5f\x1a\x63\xad\x64\xe4\x4e\x9f\xf5\x5a\x54\xc5\x98\xa6\x47\xa1\x1d\x81\x6e\x02\x7d\xd5\x7b\xc0\xe9\x33\xab\x6a\x4f\x75\x9e\x23\x6f\x7a\x6d\x06\x74\x66\x67\xef\x55\x9b\x01\xd1\x8c\x6e\x56\x6d\xa6\xde\xac\x13\xec\x8d\xaa\xcc\x80\x7d\xb0\xd4\x5c\x99\xa9\xae\x83\xeb\x69\xd2\x65\x40\x77\x1c\x6a\x55\x5b\x40\x32\xed\xa7\x1a\xf1\x04\x49\xcd\xa8\x8a\x0c\xe8\x8e\x38\xad\x7a\x0c\xe8\xd5\xcb\xdc\x20\x28\x48\x6a\x61\xd5\x6c\x40\x3a\x0f\x45\xcd\x06\x24\xbf\xf5\xaa\x62\x03\xba\x23\x7f\xab\x62\x03\x3a\x73\xc6\xf7\xaa\xd7\x80\xce\xda\x33\xbd\xaa\x35\x20\x9d\x8f\x0e\xad\x06\x44\x73\xee\x8c\x6a\xd2\x2e\xe8\xcc\x36\xdf\xab\xa2\x03\x92\xf9\xec\xd5\x58\x29\x48\xa6\xa0\x57\xd5\x07\xec\x8b\x98\x5a\xaa\x3e\x20\x9d\xf7\x9e\xea\x53\x1f\x23\x16\x6e\xcc\x8a\x3f\x44\x2c\x9a\xbb\xb4\xe2\x0f\xc9\x77\x9e\x23\x5d\xa8\xba\xd2\xad\x77\xa5\x2e\x04\x86\xf3\x8b\x56\x93\x76\xc1\x70\xba\xd2\x6a\x54\x14\x8c\x9f\x1f\x6f\xca\x51\x5d\x9e\x6f\x5a\x5f\xeb\x01\xc3\xb1\x2b\x55\xe9\x01\x39\x7b\xda\x74\x1e\x90\x4d\xa9\xab\x2a\x0f\x18\xbd\xb8\x47\xeb\xb8\x7c\x56\xbb\x79\xcf\x37\x73\xf2\xf6\x73\x2a\x75\x1e\x30\x1c\x1f\x55\x75\x1e\x90\xb3\xad\x6f\x6e\x2f\x18\x0e\x7d\xaa\x6a\x10\xc8\xd9\x13\xae\x06\x81\xe1\x54\x7a\x55\x0d\x02\x39\xfb\x12\x54\x83\x40\xce\xde\x35\x6a\x10\x18\x8e\x56\xaa\x2a\x0f\x18\x0e\x15\xab\x4a\x0d\x18\x9d\xce\xd0\x6a\x7c\x12\xcc\x72\x36\xef\xa1\xbe\x7c\xec\xfb\x15\xa2\xae\x80\x6c\xf6\x68\xd5\x56\x40\x36\x08\x51\x95\x15\x90\x8d\x71\x54\xa3\x94\x20\x1b\xb4\xa9\xea\x0b\xc8\xc6\x8e\xaa\x41\x4a\x30\x8b\x2d\xad\xd1\x80\x69\x9e\x5c\x35\x48\x09\x66\xf6\xf1\xa4\xe4\x80\x99\xbd\x0c\x8d\x51\x82\x99\xbd\xc0\x0c\x51\x82\x6c\x38\xa6\x6a\x42\x60\x1a\x50\xad\x46\x28\xc1\xcc\x5e\x60\xca\x11\x98\xc5\x86\x56\x8e\xaa\x72\xe4\x25\xad\x1c\x81\x6c\x1c\xad\x29\x47\x20\x9b\x1a\xd9\x8c\x50\x82\x6c\x68\xa7\xa9\x4b\x60\x3f\xc3\x3a\x65\xd9\x32\xe6\xf4\xe0\x6b\xa3\xa9\x46\x60\xdf\xdf\xfe\x74\x58\xe6\x62\x3e\x9c\xca\x66\xf8\x11\x94\xa8\x16\x5d\x16\xb9\x46\x49\x71\x73\xb7\x65\xac\xea\x52\x3c\xb6\xc7\x22\x73\x0b\x8b\x7b\x58\x96\xd9\xf9\x3c\x28\xfa\x2c\xf2\xc2\xf8\xef\x15\xbc\x7a\x53\xaf\xc0\x2c\xa8\x6a\x33\x8a\x09\xf6\xbe\x32\x65\x56\xda\xb5\x7e\x10\x9d\xa6\x70\x81\xfd\x6f\xb4\xaa\xc2\x05\x76\x59\xa2\xac\x59\xe6\x74\x16\x7c\x3e\x35\x5d\x0a\xec\x0f\x8d\x46\x99\x2d\x11\xf6\xb8\x66\x0f\xc5\x96\x08\x33\x0f\xb3\xdb\xb3\x29\xc2\x6e\x68\xfa\x79\x9a\x86\x05\x76\x19\xe7\x49\xc5\x6a\x71\x3e\x66\x3c\x3e\xdb\x27\xfc\x98\x61\xb7\xc6\x31\x41\x71\x90\x4b\x53\xbb\x1a\xeb\xfd\xd8\x89\xd1\x0c\x5a\x82\xbd\x31\xcb\x6c\x80\xc4\x02\x1f\xee\x53\x15\x03\xfb\xdf\xdc\x9a\xf5\x4f\x8c\xf2\xf3\x70\xcd\x49\x06\x25\x8a\xbf\xf4\x72\x49\x9a\x34\x5f\x3e\xcd\x50\x26\x28\xf6\x06\x36\x05\xad\x9d\xe9\x9b\xa6\x5b\xb3\xf2\x18\x5a\x24\x2f\x5c\x7d\x0c\xec\x32\x1a\x53\x21\x03\xbb\x8c\xdf\x1a\x95\x04\xbb\x8c\x06\x36\x2c\x09\x76\x19\x87\x67\x5c\x12\xec\x32\x2a\xa6\xce\x81\xe2\xcb\xbc\x69\x73\x60\xff\x9b\x65\xd6\x2c\xdb\x2d\xed\xd6\x3c\xd5\x1b\xc5\x17\x51\x53\xdd\x9a\xea\xe6\x3c\x7d\xcd\x20\x24\xd8\x5b\xa3\x01\xd4\x39\xb0\xcb\xb8\x38\x8d\x42\x82\x68\xbe\x9f\x9a\xf6\x06\xaa\x81\xa6\x66\xcc\x11\xec\xef\x4d\xce\xa1\x42\xd7\x1c\x55\xea\x4d\xaa\xcf\x81\x88\x7e\xb6\x66\x1d\x08\x1c\x86\x13\x17\x35\xed\x0d\x54\xc3\x46\x4d\x7b\x03\xfb\xd5\x4c\xc5\xb4\x37\xb0\x2b\x46\x93\xa8\x6f\x20\x7a\xb8\x39\xd3\x7d\x41\x24\xe7\x12\x68\x3a\x1d\xd8\x67\x9b\x23\x36\xa0\x08\xaa\xb9\xc8\x4d\xcd\x03\xfb\xa7\x1c\x8a\x9a\x07\xa2\x39\x88\xbd\x19\x3e\x04\xd5\xef\xaa\x66\xf4\x10\xec\x9f\xd2\x9c\xa6\x0a\x83\x6a\x6a\x73\xd3\x06\xc1\xfe\x37\x0f\xd8\x93\x58\x9d\x27\x9c\xee\xa5\xa6\xfc\x81\x48\xce\x26\xd0\x54\x3d\x70\x52\x4d\x9a\xaa\xd7\x1c\x1b\x6a\x6a\x5a\x33\x51\x18\x54\xa7\x99\x6a\xda\x1f\xa8\x26\x19\x36\x55\x0f\xec\x1d\x50\x7d\x5d\x0f\x54\x13\xb9\x9a\x99\xc3\xed\x0c\x18\xf5\xe4\xe8\x7f\xcd\x01\xa3\xe6\x0f\x34\xa3\x81\xa0\xf6\xea\xd6\xac\x56\x3b\x03\xd3\xa9\x82\x02\x08\xaa\xe9\x94\x4d\x01\x04\x91\xcd\x4d\x6e\x0a\x20\xa8\x46\x67\x9b\xfe\x07\xf6\x99\xe6\xac\x2a\x80\x20\xb2\xc9\x56\xcd\xd8\x5f\x23\x71\x78\x7a\x55\x1b\xe6\x03\xdb\xca\x2d\xb3\xfa\x84\xf9\x06\x8b\x79\xf4\x66\x98\x0f\x44\x6e\x74\xe9\x35\xe5\x11\x54\xab\xa5\x28\x82\x98\xcd\x7d\x5a\xf9\x4e\x16\x61\xf3\xd0\xac\xbc\x13\x28\xb1\xb8\x47\x6f\x66\x06\xb7\xfe\xec\x6f\x19\x3e\x84\x9b\xee\x08\xce\x1d\xad\x39\x36\xcd\x31\x3c\x56\xab\xbe\xd1\xcc\x15\x6b\x8a\x23\x88\xee\xa7\x77\x33\xe6\x07\x4e\x37\x6b\x33\xe4\x07\x22\x79\x01\xea\x8a\x20\xce\xb3\x5c\x55\x6c\xc3\x1a\xb9\x2d\x6b\x44\xd2\xae\xd3\xcf\x37\x55\x11\x74\x67\xc8\x69\xaa\x22\x48\xe7\xfa\xd6\x15\xc1\x3e\x30\x7f\x69\x95\x06\x99\x4e\xde\x68\x7a\x21\x18\x4e\x52\xdf\xf4\x42\xb0\x4f\x30\xbf\x54\x02\xc1\x70\x68\x62\x33\xbb\x17\xe4\xec\x61\x18\xd6\x03\xc3\xf1\xd9\xcd\xec\x5e\x90\x73\xfc\x61\x72\x94\xa6\x37\x82\x59\xf8\x4e\x6e\xc6\xf7\x40\x51\xa1\x9b\xe1\xbd\x36\xcf\x6b\xd4\x7f\xb3\xca\xce\x76\xd4\xbc\xe1\x8c\xd2\x81\x5d\x19\x8e\x5c\x99\x04\xfb\xd1\xe7\xff\x79\xe8\x08\x66\x0f\xaf\x09\x43\x72\xcd\x11\x9f\xe6\xbe\x37\x15\x13\x44\xb2\xcb\xb4\xe9\x98\x60\x97\xd1\x60\x86\xd6\xc0\xbe\x99\x38\x3e\x07\x6e\x82\xf3\x8a\x30\xd8\x06\x9a\xd3\x8d\x34\xed\x14\xa4\xf3\x30\x54\x3b\x41\x66\x81\xdd\xde\xb4\x4e\x30\x9d\x78\xac\x19\x2d\x03\xbb\x06\xb4\x92\xda\x09\xf6\xc7\x8b\x3b\xb0\x06\xb7\x8d\xc9\x6d\xa3\x64\x82\xfd\x06\x72\xa7\x56\xe0\x76\xb6\x11\x1b\x58\xa7\x6c\x46\xcb\xfa\xb4\xcc\x2a\xdc\xce\x1e\xb9\x4b\xb4\x45\x10\xe7\x43\x48\x5b\x04\x31\xad\xba\xb2\x08\x4e\xd4\xbe\x29\x8b\x20\xe6\xd9\x96\xa7\x80\x39\x83\xa6\xf7\xa5\xb2\x08\x62\xfa\x08\x35\xb1\x16\x74\x67\x1d\x68\xea\x63\x73\x2a\x5d\xc2\x26\xcd\x28\x19\xd8\x0d\xe4\x2e\xad\xe5\x83\x25\xfb\x95\xab\xf3\x81\x34\x4e\x91\x87\xbf\x31\x5c\xf0\xa2\xa9\x81\x20\x0d\xb7\x6f\x3c\xac\x39\x97\xad\x41\xe2\xa6\xe1\x35\x0d\xcf\xcf\x63\x0d\x0f\xa4\x41\x88\xa4\x69\x78\x20\xb3\xc0\x6c\x6f\x0a\x1e\x98\x05\x9b\x6b\x0a\x5e\x5b\x7e\xf2\x53\xa4\xba\x81\x12\x3e\x76\xf5\x34\x50\x82\xce\xd0\xa6\xa7\x81\x72\xde\x43\x86\xab\x40\x39\x87\xaf\xba\x35\x57\x57\x49\xbe\x10\x75\x37\x50\xce\xd9\x35\xf8\x04\xf6\xcd\x43\x63\x9b\x95\x0a\xaa\x99\x1f\xcd\x88\x14\xd8\x97\x0f\x67\x4e\xed\x03\xfb\xf2\xb1\xcc\x4a\xbd\x24\x9f\xb9\x4f\x2f\x28\xf2\x4e\x93\xfb\xd4\x04\x41\x73\x5e\xa1\xa6\x09\x82\xe6\xa4\x3c\x4d\x13\x6c\xdf\x19\xa3\x4a\x91\x8d\xf1\x31\x35\x78\xb7\xc8\xc6\xf8\x7c\xec\xfa\x43\x1b\xe3\x63\xba\x73\x02\x17\x4d\xed\x03\x27\x43\xa3\xa9\x7d\x20\xa6\xe7\x4d\xed\x03\x31\xbd\x54\xd4\x3e\xd0\x8d\xc4\x36\xb5\x0f\xf4\xdf\xa9\x90\xad\xc3\x4a\x2b\xd3\xfb\x5e\xc7\x03\x31\xe9\x4f\xe9\xda\x1b\x08\x67\xd6\xef\x9a\x5a\xff\x91\x8e\xce\x43\xbd\x6b\x6a\x20\x58\x52\xb4\x77\x45\x0d\x74\x47\x88\x77\x3d\x0d\x04\xcb\x2e\xf6\xae\xa7\x81\xee\x5c\x09\x5d\x4d\x03\xc1\x5a\xa4\xbd\xab\x69\xdd\x35\x57\x4d\xbd\xea\x06\xba\x3a\x41\xad\xea\x6a\x2f\x5d\xeb\x02\xdd\x01\x5a\x5d\xeb\x02\xdd\xac\x99\x6e\xea\x28\xe8\xe6\x9b\x74\x3d\x0c\x74\xd3\x97\xba\xce\x05\xba\x79\x34\x5d\xbd\xea\xc1\x4b\x8f\xaf\x89\xae\x49\x81\xee\xa0\xb3\xae\x34\x81\xee\x6c\x01\x5d\x67\xea\x86\xa5\xe2\x6c\x9f\x4b\xac\x27\x9e\xb1\x56\xd3\x20\x14\xe8\x8a\x49\x57\x90\x40\x37\x25\xa7\xeb\x47\x20\x9a\x9d\x57\x5d\x41\x02\xc3\x3c\x93\xae\x1f\x81\xbd\x4f\xaa\xa9\x20\x81\xae\xa7\x75\x05\x09\x24\x53\x0d\xbb\x7e\x04\x92\xb9\x75\xdd\x98\x56\x77\xca\x5b\x9f\x51\x5d\x3f\x02\xc3\x45\x53\x7a\x3a\x75\xf2\x45\x4e\xfb\x6b\x42\x9d\x64\x4c\x5f\x7d\x5d\xe9\x01\xc3\x47\x60\xd7\x79\xc0\x88\xbf\xcc\x83\xd2\x55\x22\x30\x9c\x87\xaa\x3b\x06\x13\xa4\x61\x55\x0c\x79\x81\x34\xac\x8a\xde\x04\xd2\xf0\x52\x35\x0a\x06\xc6\xb9\x92\x54\x29\x90\x06\xb7\x76\x57\xa5\xc0\x70\x5a\xaa\xae\x49\x81\x34\xbc\x5f\x14\x29\x30\xcc\x0d\xed\xc6\xc5\x40\x32\x27\xb3\xab\x56\xdd\x39\x7c\xcc\x3e\xe9\x7a\x14\xd8\x1f\x89\x1c\x86\xb9\x9b\x60\x38\x29\x7c\x37\x77\x13\x0c\x67\x73\xea\xda\x56\x2f\xf4\x6e\xd1\x8b\xd0\x0d\x95\x81\xe1\xa4\x10\xdd\x48\x59\x2f\x84\x5b\xf8\x22\xec\x8a\x15\x18\x06\x09\xbb\x5e\x05\x86\x09\x15\x5d\xad\x02\x39\xdb\xd4\xda\x12\x98\xc5\x53\xa8\x19\x81\x59\xbc\xf7\x0c\x80\x81\x59\x3c\xf7\xba\x12\x98\xc5\xe6\xd1\x8b\xc0\x6e\x0b\xcb\x3c\x23\x95\xef\x2f\xef\x17\xbd\x08\xcc\xe2\x25\x6e\x98\x0c\x64\xf3\x9b\xbb\xa6\xd4\xcd\xbe\xcc\xfe\xd0\x1a\x99\x69\x99\xdd\xbc\x35\x62\xe2\xd9\xc2\x77\x56\xd7\x93\x40\x09\xeb\xad\x27\x81\x6c\xcf\x68\x37\x4a\x06\xb2\xd9\xd9\x5d\x4d\x02\xd9\x28\x56\x57\x93\x40\x36\xd5\xbb\x6b\x49\x60\x16\xdb\xd0\x2c\x4b\x90\xed\x93\xec\x7a\x13\x98\xc5\x4b\x4c\x6f\x02\xd9\xcc\x85\x6e\x28\x0d\x64\x33\xbd\xbb\x26\x05\xb2\x71\xe2\xae\x49\x81\x59\xbc\xfd\x15\xa9\x7e\x72\x28\xbd\x50\xda\x69\x0a\xa7\x22\xf5\x12\x33\x6e\x06\xa2\x68\xf4\xdd\x20\x19\x88\x33\x1c\xa1\x2b\x3f\x60\x3f\x82\x69\x0e\xed\x07\x64\x93\xaf\xbb\xf6\x03\xa2\x1b\x1e\xea\xda\x0f\x88\x7a\x9e\x1e\x26\x42\xf6\x7e\x3a\xe3\x2c\xb3\x16\x4e\x1f\xeb\xd5\xae\x13\xf5\x7e\x6a\xe1\x5e\xad\x05\xd1\x34\x47\x2f\x77\xa5\xa8\x9f\x19\x65\xf9\x2e\xe9\x4a\x51\x3f\x33\xca\xd2\x43\xd4\xb5\xa2\x7e\x66\x94\xe5\xf3\xa8\x1b\x56\x03\xbb\x8c\xdd\xaa\x4a\xdd\x59\x66\xdd\xab\xc9\x91\xfd\xcc\x32\x8b\x91\x74\xc3\x6a\xe0\x2c\xcf\xd2\xcd\x83\xec\x27\x0f\xd2\x33\xad\x52\x75\x27\x94\x75\x75\x90\xae\x40\x75\xf3\x20\xbd\x76\x15\x28\x50\xaa\x67\xdf\x60\x5b\x77\xf5\xd0\xe6\xb9\xd6\xa9\xba\xab\x87\x7a\x59\xea\x54\xdd\x29\x66\x9b\x5b\x33\xb0\x06\x8a\x0b\xc0\x74\x05\x0a\x44\x31\xed\xbb\x6b\x50\xfd\x24\x46\x9e\x9f\x5a\x2d\x13\x23\x93\x75\x30\xde\xd6\x9d\x4f\x36\xa6\x65\xd6\x6b\x3a\x68\xd8\x7a\x69\x4e\xfd\x64\x46\x7a\xc1\xaa\x4e\x60\x97\xd1\x4e\xaa\x13\xd8\x65\x54\xc3\x68\x1d\xd8\x65\x9c\x45\xc3\x75\xdd\xdc\x48\x3e\x82\xba\xb9\x91\xdd\x45\x46\x7d\x3d\x29\x5d\xfd\xa4\x46\x7a\xdf\x1b\xd4\xeb\xae\x28\x9a\x6c\x4f\xa5\x0b\x9c\x8c\xf9\x6e\x54\x0f\x54\x7b\x80\xbb\x39\x8f\xdd\xa5\x42\xcd\xbf\xef\x6a\x18\xa8\x26\xf8\x74\x2d\xac\x9b\xe0\xe8\x00\xfc\xee\x00\x48\x50\xed\x95\xec\x8a\x19\xa8\xf6\x44\x77\x2d\x0c\xec\xed\xb3\x35\x35\xac\x9b\xf2\x88\x38\x75\x83\x84\xdd\x94\x47\xf3\xc6\xbb\x41\xc2\x6e\xca\xa3\x79\xd0\xdd\xc1\x93\xa0\x9a\x41\xdd\x35\x38\xb0\x7f\xca\xe9\x52\xe1\xc0\xfe\xa9\x7b\xf5\xe9\x45\x16\x64\x98\x21\xdf\xf5\x3a\xb0\xcb\x68\x12\x63\x87\xdd\xc5\x4e\xe6\xf8\x43\x6e\x59\x57\xfb\xfa\x7d\xfa\xb6\xdc\xb4\x4d\x76\x33\xc9\xa4\x67\x53\xed\x03\x55\x6f\xea\x5a\x5f\x77\x2d\x50\x67\x5a\xed\x5a\x5f\x37\x47\xd2\x93\xae\xf6\xf5\x93\xfb\xe8\xa5\xab\xf7\x81\xa8\x4e\xa1\xd5\x15\xbf\xee\xd4\x3e\x0e\x6b\xeb\x9a\x1f\x88\xe6\xea\x58\xdd\x38\x21\xa8\xe7\xc6\xd2\xf3\xfa\xe3\xdc\x91\xbe\xa6\x0d\x0a\x82\x7d\x74\xfe\x9f\xa7\xfd\x39\xc3\xbc\xdd\x85\x15\x63\xbc\x64\x1a\x3f\x0f\xc5\x9a\x3d\x2e\x6e\xe6\xc3\xd6\xc0\x20\x88\x6c\xca\x7a\xd7\xff\x40\xed\x7e\xf5\xe9\x7f\x20\xb2\x49\x27\xdd\x24\xc9\xbe\x4e\x0e\x20\x67\xd4\xd8\x20\xa8\xd3\x4b\xcb\xd8\x60\x37\xf9\xf1\x7c\xcb\xea\x89\xa0\x6a\x12\x5d\x4f\x04\xe7\xb6\x52\x13\x41\x4c\x3f\x8c\x74\x42\x30\xce\x91\x19\xe1\x03\xb3\xf8\x79\x63\x38\x0f\x9c\x9b\x56\x4b\x04\x91\x3c\xcd\x2a\x21\x08\xc3\x01\x5d\x25\x04\xd1\xec\x6a\xea\x2a\x61\x77\xf2\x1e\x8f\x4b\x25\x04\xc9\x61\x23\x5d\xfd\x03\xa3\x37\xff\xcb\x13\xb0\x91\xb3\x1f\x29\xca\x1f\xc8\x46\x1e\xbb\xf6\xd7\x5d\x47\xd3\x37\x82\xf6\xd7\x9d\xa8\xd5\x51\x3a\x5d\xfd\x03\xfb\x4a\xe0\x68\xf5\x3f\xb0\xcf\x30\x9b\x53\x00\xc1\xf9\x06\xd5\xff\xc0\xbe\xd9\xfd\xa5\x75\xda\x68\xe6\x2d\x77\x6d\x0f\x34\xa7\xb7\xed\xda\x1e\x68\x0e\x23\xef\xda\x1e\x68\xa6\xac\x77\x6d\x0f\xb4\x46\xa7\x7f\xd7\xf6\x40\x73\xba\x84\x6e\x90\x0f\x84\x81\xa1\xae\x00\x82\x38\xb3\x04\x0e\x83\x75\x20\x26\xe2\x3b\x34\x40\xd0\x1d\x5b\x39\x4c\x6d\x1c\x4a\x21\x1f\xdf\xc3\xe1\x84\xa0\x3b\x74\x6a\x28\x85\x20\xaa\xd3\x3a\x0d\xad\x10\x9c\x94\xbd\xa1\xef\x0d\x16\xc1\x9c\x67\xfb\xaf\x45\x24\xc7\x9d\xa3\xf8\x2c\x62\x88\x35\x97\xe2\x50\x00\xc1\x49\x5f\x1e\x0a\xe0\xc0\xf6\x9c\x38\x68\x68\x7b\xa0\x9b\x97\x35\x8c\xba\x81\x70\x89\xbe\x61\xaa\x22\xd8\x37\x75\xa5\xcc\x03\x23\x48\x36\x9c\xc8\x7a\xe8\x7b\x20\xf9\x06\x1d\xfa\xde\x70\xcd\x4a\x3f\x69\x87\xbe\x07\x92\xf9\xa6\xc3\x18\xd9\x50\x01\x39\xe5\xc3\x18\xd9\x30\x35\x91\xd7\xe2\xd0\x0a\xc7\xb1\x42\x6a\xae\x15\x8e\x63\x85\x6e\xcb\xf6\x4f\x24\x39\x70\xca\x87\x06\x08\xc6\x39\x08\x05\x10\x24\xc7\x5b\x0d\x05\x10\x74\xbb\xe2\x86\x02\x08\xba\x5f\x1d\xc3\x3c\x47\xd0\xfd\x36\x19\x3a\x21\xe8\x3e\x1b\x87\x61\x34\xd0\x8d\xc9\x0d\x2d\x11\x24\x13\x68\x87\x79\x8e\xa0\xdb\x15\x34\x14\x47\xd0\xed\x5c\x1d\x86\xd5\x40\xca\x9e\x5d\x5d\x12\xf4\xca\xdb\x63\x18\x54\x03\xc9\x1c\xd0\xa1\x5e\x82\xee\x57\xce\x50\x2f\x41\x32\xa5\x79\xe8\x8f\xa0\x9b\xfe\x34\x94\x45\x90\x1c\x2c\x36\x94\x45\x90\x1c\x62\x37\x94\xc5\x71\xe6\xeb\xa1\xef\x6f\xe8\x81\x20\x9a\x42\x31\x14\x41\x10\xd5\x95\xa0\x86\xd1\x33\x10\xd5\xa8\xf4\x50\xfb\x40\x1a\xee\x42\xeb\x03\x51\xcd\x4d\x18\x6a\x1f\x18\x0e\x25\x18\x46\xd4\xc0\xbe\x18\xa9\xa9\x11\x35\x30\x9c\xbb\x64\x38\x3a\x0f\x8c\xf8\x4b\x56\xd9\x50\x1e\xc1\x70\x50\xc1\x50\x1e\xc1\xae\x0d\x6d\x6f\xa4\x0e\x0c\x87\x2d\x0c\x85\x12\x0c\xb5\x76\x28\x94\x20\x39\x92\x67\x18\x93\x03\xc3\x4f\x9d\x61\x48\x6e\xb8\x1c\x8a\xb3\xc6\x0f\x25\x13\x0c\x3b\x4d\x86\x21\xb9\x51\x4f\xc6\x0f\xf5\x53\x3c\xc1\x3e\x34\xcb\x3c\xb4\xea\xa3\xdf\x3d\x78\x68\xd5\x47\xbf\x5b\xf3\xd0\x2a\x2f\x2e\x1f\x50\x86\xd0\xc0\xe8\xf4\x08\x0f\x35\x10\x0c\x57\x64\x1d\x86\xcb\x46\xc3\xc1\x9b\x3f\xf4\x66\x23\x34\x36\x9c\x5e\x71\x68\x78\x60\x38\x6c\x79\x68\x78\x60\x74\xde\x5c\x43\xc3\x03\xa3\xd3\xcd\x37\x34\x3c\x90\x86\xb7\xa9\x86\x07\xb2\x23\x36\x87\x86\x07\x46\xf7\x02\xd3\xf0\xc0\xe8\x9e\x25\x05\x0f\xe4\xec\x29\x31\x52\x06\x46\xef\x16\xd9\xfe\x9d\xfc\x1b\xdb\x50\x93\x03\xb3\x78\x4f\x6a\x72\xc3\x84\x47\x3b\xa1\x87\x26\x07\x66\xf1\x89\xa5\xc8\x81\x6c\xa0\x66\x28\x6d\xe3\x48\x5b\x73\x6b\x1e\x59\xa7\x2f\x19\x41\x1b\x4a\x1b\x98\xc5\x47\x83\xce\x06\xa2\x98\x16\x3d\xf4\x33\x30\x8b\x37\xaf\x7a\x06\x66\xf1\x9a\x52\xcf\xc6\xa0\xaf\xc1\xa7\xa4\x76\x06\x66\xf1\xca\xd6\xce\x40\x9c\x69\xd9\x87\x76\x06\xb2\x31\xa4\xa1\x89\x81\x6c\x7e\xd5\xd0\xc4\x40\x9c\x99\xeb\x87\x26\x06\xb2\xb9\x47\x43\x13\x03\xb3\xf8\x5f\x8a\x18\xc8\xf6\xc8\x0f\x45\x0c\x64\xfb\x70\x86\x29\x8e\x60\x16\x9f\xdf\xaa\x19\x98\x85\x0e\xbc\x61\x70\x0b\xcc\xe2\x63\x58\x59\x1b\xd3\x9e\x05\x6a\xa4\x97\x0d\x03\x5a\x3e\xe5\xd5\x32\x30\x8b\xb7\xaf\x66\x35\xe6\x39\x4b\xee\xd2\xc3\x9f\xaa\x35\x27\x53\xdb\x1a\x2e\xd5\xe1\xa8\xc8\xa1\x6e\x81\x59\x7c\x4b\x69\x5b\x60\xff\x1b\x6d\xe6\xe0\x34\x50\x1c\x52\x3f\x8c\x84\x0d\x17\xea\xb0\x9f\x7b\x28\x65\xc3\x85\x3a\xec\x63\x1e\x5a\x19\x28\x06\x3e\x87\x56\x06\xf6\xbf\x59\x66\x4d\x2f\x92\x81\xbc\x83\x15\xb5\xe1\x3a\x1d\xe6\x92\x0f\x4d\x0d\xec\x9f\xfa\x7f\x9e\xe3\xcb\x0e\x08\xef\x28\x55\x0d\xec\xdf\x5a\x31\x9b\xe4\xb8\x9a\xad\xa9\xab\x81\x6c\x32\xdc\xd0\xd5\x40\x74\xb3\x20\x86\xae\x36\xee\xd3\xdb\xc0\x2e\x74\x35\x50\xc2\x5b\x43\x57\x03\xfb\xdf\x68\x13\xbd\x0c\xec\xe7\x9c\x65\x36\x00\xb1\xb5\xee\x8a\xab\x43\x2f\x1b\x7a\x99\x2b\x09\x0e\xc5\x6b\x18\x6f\xf3\xb3\x4e\xef\x02\xf1\x73\xc9\xd2\x61\x56\x27\x28\xd5\x0b\x47\xf1\x02\xc5\x15\x3f\x87\xc9\x99\xa0\x38\x19\xd3\xd0\xb1\x06\x3e\xf5\x73\x4d\xd7\xa1\x4f\x81\x52\xad\xbd\x3a\x05\x76\xc3\xb9\x35\xab\xf0\x9c\xde\x11\x37\x67\x15\x1e\x7b\x47\xbc\x1b\x0c\xa6\x81\x52\x3d\x5c\xb5\x0b\x94\xf3\x3d\xa0\x75\x81\xbd\x35\xce\x83\xd6\x05\x76\x99\x5b\xb3\x5a\x8f\x61\x5a\xdc\x7a\x98\xa1\x09\x76\x19\x47\xa7\x89\x81\xe2\xbc\x29\xc3\x14\x4d\xb0\xff\x8d\x56\x32\x5e\x07\xe2\xac\x27\x31\x14\x36\xb0\x2b\xcb\xa1\x68\x6c\x60\xff\x96\xf3\xa5\xb1\x81\x52\x3d\x62\x85\x0d\xec\x9f\x8e\x3f\xbc\xb3\x15\x3a\x10\xcd\xe8\xfe\x50\xe8\x40\xb1\x43\x7c\x28\x74\xe3\xac\xd3\x71\x0e\xc0\xf6\x59\xf6\xb1\xd8\x3e\x3a\x1d\xd8\x65\x56\xd2\xf6\x79\x4d\x74\xf2\xac\x18\xfc\x1b\x2e\xc1\x91\x3c\x7b\x7a\x1d\xd8\x65\xec\x57\xb1\x03\xbb\x8c\xb6\xd5\xe2\x86\x81\x3d\xbf\xf0\x1c\x68\x06\x8a\x1d\xea\x43\xb1\x1b\xc6\xfa\x5c\xc1\x76\x18\xeb\x03\xbb\x8c\x36\xd3\xf6\x40\xb1\x5f\x7f\x68\x7b\x60\x1f\x30\x97\xa0\xba\x07\xa2\xcc\xf3\x7f\xa7\x62\xfa\x1e\x5b\xd3\xf7\x40\xd4\xf3\x18\xd1\xf7\x86\xc3\xd4\x5c\x3d\x7a\xe8\x7b\xc3\x85\x39\x4c\x10\x1d\xfa\x1e\xd8\xae\xe8\xff\x79\xe2\x5d\xac\x03\x53\x1f\x46\xfc\x40\x9c\x69\xa5\x87\x12\x08\xaa\xf9\x80\x43\xe3\x03\x7b\x0f\x1e\x89\xf5\xff\xe8\x79\xf2\xcd\xa9\xf2\x0d\xa2\x79\xe1\xc0\x86\xa1\xe0\x81\x5d\xe6\x1e\xac\x3f\x86\x17\xa6\xaf\x0e\xf3\x38\xc1\xfe\xbf\x7d\x23\x4d\xe3\x7e\xa0\xda\xf1\x3a\x15\x41\xb0\xff\xad\x51\x56\x2c\xb3\x53\x89\xb7\xdb\x54\x05\xc1\x2e\x0b\xca\x9a\x65\xae\x3e\x96\xdd\xde\xb4\xcc\xec\x27\xae\x89\xa9\xf9\x4d\x57\xe1\xf0\x99\x39\x55\x3f\x50\x8d\x94\x4d\x3d\x0f\xec\x7f\xb3\xcc\x23\x0e\xc7\xc2\x72\xd9\x4d\x43\x7d\x60\x97\xb1\x5b\xed\x6f\x9e\x11\x6d\x5c\xee\xd3\xa1\x6a\x20\x92\x93\x3e\x4d\xa3\x7d\xa0\xaa\x62\xd3\x68\x1f\xd8\xff\xe6\x4f\x3d\xe2\x70\xdd\x10\x7a\xa6\xa6\x4a\x08\x76\x19\xb5\xd0\x09\xc1\x2e\x63\x7b\xda\x1e\xd8\x65\x89\x32\x0f\x8f\x94\xc8\x34\xe8\x54\x9f\x86\xfc\xc0\x2e\xeb\x94\xd9\xca\xe4\x44\x26\xd7\x35\x99\x1a\x1f\xa8\x4e\x3c\x37\x35\xbe\x49\x02\x64\x1a\x3f\x77\x6b\xcd\x58\x5e\x23\xb9\xb2\xdc\x54\xf0\x40\x75\x00\xeb\x54\xf0\x40\x75\xf0\xd6\x54\xf0\x40\x75\x20\xe8\x54\xf0\x40\x64\xa7\x43\x98\x1a\xde\x74\x4e\x56\xf3\x36\xa6\x8a\x07\xf6\xff\x51\x57\x85\x0e\xec\x32\x76\xa1\xd1\x81\x18\x0e\xcb\x9d\x2a\x1d\xd8\x65\xfe\xd6\x36\xc9\xf6\xa1\xf0\xf4\x9f\x4a\x1d\x88\xec\x80\x9c\x69\x54\x10\x44\x71\x8e\x84\xa9\xd6\x81\xc8\xae\x8f\x3b\xf5\x3a\x10\xd9\xe8\xeb\x34\x0a\x08\xec\x1a\x9e\x06\x01\x41\x74\x67\xaf\x9e\xda\x1f\xd8\x77\x99\x47\x67\xab\x64\x66\x2b\xaf\x1e\x9c\x8d\x92\xed\x5b\xf1\x38\x6c\x13\x56\xf7\x70\xf6\x82\x69\x64\x70\x32\x11\xab\x99\xb9\x53\x6b\x04\xcd\x41\xf3\x53\x43\x04\x67\x20\xdc\x54\x10\xc1\x19\xe1\x36\x8d\x0b\x82\x98\x08\xed\xd4\x19\x41\xcc\xf3\x5f\x36\x06\x33\xba\xb8\xfa\xf1\x54\x19\x41\x98\x34\x3a\x75\xc2\xe9\x7a\x1f\x67\x5b\xb6\x45\x21\xa7\xe0\xfc\xd0\xa6\x28\x8c\x01\x3e\x3f\xb4\x8e\x05\xb5\xe7\xf1\x3d\xf5\x3f\x90\x1c\x70\x35\xf5\x3f\xd0\x7d\xcf\x4e\xf5\x0f\x74\x3f\x46\xa6\xfa\x07\xba\xaf\xca\xa9\xfd\x81\xee\x57\xc6\x34\xec\x08\x92\x23\xb5\xa6\x61\x47\x90\xb2\xf7\xa8\x29\x9a\x20\x99\xcf\x3e\x8d\x44\x82\x28\x0e\x4c\x98\x46\x22\x41\x9c\x85\x9c\xa6\xa1\xc8\xe9\x88\x3d\xbc\x7b\x1a\x8a\x9c\x8e\xd8\xf3\x99\xa2\x83\x82\xbe\xbf\x9c\xfe\xf3\x1d\x3e\x55\xd4\xe9\x80\x3e\x9f\x10\x2a\x2a\x48\x66\xc5\x4f\x83\x97\x20\x39\x4a\x61\x6a\xad\x20\x65\x1f\x4b\xc6\x33\xc1\xf0\x13\x75\x2a\xb2\x20\xea\xf4\xb8\x0d\x68\x82\x61\x02\xea\x54\x6e\xc1\xf0\x53\x66\x1a\xe3\x04\x69\x0c\x37\x66\xf3\x6d\x0c\x87\x0a\x4f\x75\x17\x24\x57\x38\x9e\xea\xee\x6c\xf6\x24\xd0\x78\xba\x2d\x18\xe6\xe3\x4e\x45\x16\xa4\xe1\x55\xa3\xa2\xce\xa3\xa8\xfc\x50\x45\x9d\x4e\x0c\xeb\x27\xf6\x34\x52\x09\x86\x9f\xbf\xd3\xfc\x4e\x30\x3a\x1f\x3d\xd3\xf4\x4e\x30\x3a\x5f\x15\x53\xb9\x9d\x47\x6e\x39\xd3\xca\x2d\xc8\xc6\xda\xa7\x22\x0b\x66\xf1\x31\x66\x40\x12\xcc\x92\x3d\x30\xcf\x51\x37\x15\x99\xde\x9f\xa9\xdb\xce\xe3\xb6\x1c\xab\x6e\x3b\xcd\xd2\x34\xac\x34\x95\x5b\x90\x0d\xe6\x4f\xe3\x91\x60\x16\xba\xaf\xa6\xba\x3b\x1d\xe5\xe7\xd8\xc6\x69\x9a\x26\xd8\x5b\xf3\xa7\x9e\x13\x26\x61\xe9\x83\xfc\xe7\xa9\xde\x4e\x83\x8f\x76\x89\x4e\x93\x37\xe7\xd0\x7d\x7c\x8c\x2b\xb3\xa0\x04\xea\x33\x75\xd9\x39\x30\x3f\x1c\x6c\x9a\x96\x39\xcf\x70\x3d\x7a\x26\xa6\x32\x0b\xf6\xc3\x99\x23\x31\x55\x13\xec\xff\xa3\xae\x1a\xee\x3c\x0b\x7a\x78\x1a\x54\x5c\xb0\xcb\xdc\x87\x17\xdb\x59\xd0\x83\x6e\x99\xa9\xe4\x82\x5d\x46\x0b\x68\xb9\xf3\xac\xe8\xe1\x99\x36\x24\x39\xe7\x11\x42\x8f\xcf\x53\x4d\x48\xb2\x3b\xc8\x66\xea\xbe\xd3\x55\x3e\x5c\x7c\x61\x1a\x92\x9c\x27\x9b\x13\x4b\x9c\x86\x24\xa7\x6b\x5c\x9e\xc7\xbd\x21\x49\xb0\x1f\xf7\xb4\x9e\x92\x0c\xa2\xd8\x7b\x3f\xb5\xe4\xa9\x25\xbb\x0c\xc4\xd4\x92\xa7\x0b\x5a\xba\x6a\xc2\x54\x93\xa7\x9a\xec\xaa\x0c\x53\x27\x9e\x66\x87\xa6\xf3\x7f\xb6\x0b\x4e\x7c\x26\x4b\x9e\x66\x87\x82\x62\x47\xd1\x54\x93\xa7\xc1\xcb\xb3\x35\x5b\xe5\x04\x2f\xbd\xa5\xd5\x64\xb0\x6b\xe1\x1e\x6c\x15\x03\x9a\x36\x80\x9a\x3c\x4f\x40\xd3\xb7\xa2\x9a\x0c\xf6\x07\x14\x27\x57\x4d\x06\xbb\xcc\xdf\x7a\xfd\x5c\x7e\xb7\xf1\x53\x2d\x19\xec\x0f\x1e\x8e\x44\x4d\x06\xd5\xde\xe6\xa9\x25\x83\xfd\x81\x42\xbd\xb4\x64\x50\x5d\x2f\x6b\x6a\xc9\x60\xbf\xee\x39\x10\x2d\x19\xec\x57\xbb\x65\x36\x09\xd1\xcb\xec\x6a\xfe\x53\x73\x06\x4d\xd5\x9f\x8a\xf3\x24\x3a\xe9\x6a\xfb\x53\x49\x06\x43\x5f\x9d\x06\x27\x41\xee\x67\x5b\x56\xf4\x36\x67\x86\x12\xaf\x87\xdb\xa0\x1e\xbf\x73\x94\xe3\x74\xfa\x16\xaf\x60\x45\x7a\x3a\x7b\x8b\x1f\x58\x06\x26\x41\xd4\x4a\xd7\xca\x54\xa4\x41\x73\x22\x9d\x69\x4a\x2a\xd8\x67\x8f\xa3\x50\xa4\x41\x98\xaf\x3e\xf5\x68\x10\xcd\x2b\x46\x67\x06\xe1\x5a\xb1\x53\x67\x06\xd1\x9c\x7c\x77\xea\xcc\xe0\x8c\xb9\x9e\x2a\x33\xe8\xce\xb1\x39\x35\x66\xd0\x9d\xbe\x71\x6a\xc7\x13\x13\x9e\xfe\x50\xe9\x05\xfb\x60\x2d\xb3\x4e\xcb\xaf\x15\xce\x92\xa9\xab\xa0\x3b\x3d\xe4\x54\x6a\x41\x3a\x77\xae\xf1\x47\xd0\xab\x97\xad\xfe\x0a\x7a\xf5\x1e\x55\x5f\x41\xaf\xde\x7a\xda\x2b\x48\x0e\x7c\x9b\x46\x29\x41\xaf\x74\x5a\x4c\xa3\x94\xd3\x69\x57\x4b\xfd\xfd\xe1\xad\xad\xee\x82\xe4\x50\xbc\x69\xb2\x2b\x48\x0e\xc5\x9b\x86\x31\x41\x72\x58\xdf\xd4\x7f\x41\x72\x8c\xd8\x54\x76\x41\xb2\xe3\x7f\xea\xba\xa0\x57\x9f\x54\xce\xb6\x3a\x5f\xbf\x2c\x38\x5f\xaa\x2e\xe8\xb5\x5a\x3b\xdb\xe0\xb5\x0d\xd8\xbc\x06\x0b\xe2\x24\xc9\x4e\xcd\x14\xc4\x99\xf4\x69\x3a\x06\x71\x7e\xbc\xdc\xbd\x25\x8d\x45\x82\x61\x1a\xfa\xd4\x42\xc1\x38\xcf\x23\x2d\x14\xa4\xc1\x27\xe1\xe5\x88\x40\x90\x73\xb2\x28\x59\xe4\x5b\x7b\x52\x94\x2d\xe2\xad\x4d\x94\xe0\x52\x2d\xc1\xe8\x7c\x4e\x5c\x9a\x25\xc8\x19\xd9\xbc\x14\x4b\xb0\xdf\x3e\x8d\xb2\x61\x19\x03\x5f\x31\xe6\xcb\x3c\x53\x30\x3a\x51\x96\xcb\x3c\x53\x90\x73\x72\xfb\x8f\x45\x84\x0d\x86\x3f\x5c\x16\x11\x36\xc0\x65\x2f\xe5\xf3\x72\x6c\x1f\x97\xcd\xa5\x7b\x82\x59\xf8\x0a\xbd\x54\x4f\x30\x0b\x4d\x7d\x69\x9e\x60\x16\xce\xdb\x65\xdc\x11\x64\x63\xd4\x97\x89\xa7\x60\x16\x5e\xec\x97\x7a\x0a\x66\xe1\xcb\xe7\x32\x3a\x79\x05\x1f\x30\xc5\x1f\x5a\xc7\xf0\x03\xc6\xe3\xb2\x8e\x41\xe7\x3c\x4f\xea\x4b\x5f\x05\xd9\x34\xc0\x4b\x35\x05\xd9\x70\xc6\x65\xb4\x12\x64\xe3\x20\x97\xd1\x4a\x90\x0d\xf3\x5f\x86\x26\xc1\x2c\x7c\xb5\x5f\x2a\x28\x88\x9f\x56\x70\x19\x62\xbc\x1c\x84\xa7\x16\x5c\xca\x25\xd8\x65\x6e\xce\xb6\x76\xf1\xc6\x7c\xb6\xe7\xb1\x25\xd6\x44\xa4\x0f\xf9\xd2\x24\xc1\xfe\x29\xc7\x6b\xb4\x10\xec\x32\x0e\x58\xbb\x04\x25\xb0\xe1\xcb\x10\x1f\x28\xde\x26\x97\xde\x07\xf6\xeb\x97\x66\xd3\xfb\x40\x9c\xc9\xc6\x2e\xcd\x0f\x14\xef\xc3\x4b\xf1\x03\xa5\xda\xba\x7a\x1f\x28\xde\x74\x97\xde\x77\xe9\x7d\xc9\x2a\x28\x7e\xa0\x78\x07\x5f\x8a\x1f\x28\x3e\x8c\x2e\x43\x83\x97\xb3\x79\x3a\x3c\xee\xd2\xfc\xc0\xfe\x32\xa0\x2d\x55\xbf\xcb\xe9\x3c\x9d\x1c\xe7\xd2\xfd\x40\xf1\x93\xfd\xd2\xfd\x2e\x47\xe0\x25\x3e\x0d\x2e\xe5\x0f\xec\x32\x4e\x97\xf6\x07\xe2\xac\xd9\x7e\xa9\x7f\x60\xb7\xaf\x65\xb6\xc8\x46\xf1\xb3\xfd\xd2\xff\x40\x51\x01\x2e\x43\x82\x17\xcb\x72\x18\xdf\xbc\x74\x36\x10\x61\x06\xe3\xa5\xa1\x81\xfd\xa1\x41\xfd\x55\x34\x50\xed\x68\xbe\x54\x34\xb0\x7f\xea\xe6\x3c\x36\x46\xcc\x85\xf9\x96\x97\x3e\x06\xf6\xe6\xfc\xad\x07\x57\xed\x22\xc3\x59\x2e\x65\x0a\xec\xef\x16\x76\xab\x4d\x81\x6a\xe4\xf9\xd2\xa6\x2e\x86\xcc\x99\x25\x7d\xe9\x44\x20\xce\xe2\xec\x97\x52\x74\x31\x71\x66\x72\x02\xed\x4b\x05\x02\xd5\xc8\xf9\xa5\x02\x81\x6a\x84\xfa\x32\xbc\x77\x35\x33\x83\xe8\xa5\xb8\x0c\xe6\x81\x5d\x46\x5d\xf5\xa2\x0b\x09\xca\x2e\xb6\x71\xa9\x37\x97\x7a\xc3\xb1\x39\x76\x0d\x34\x23\x0a\x97\x43\xd7\x2e\x57\xb5\xe0\x43\xfb\x32\x7d\x13\x34\x27\xde\xbb\xd4\x22\x10\xe6\x16\x5e\x6a\xd1\x65\xcc\x2f\xbb\x79\x8f\xbf\x93\x5e\x32\xdd\xbc\x67\x99\x69\x4f\xce\xda\xa5\x97\x5e\x04\xce\xac\xa7\x97\x5a\x04\x62\xf2\x0d\x71\xa9\x45\xe0\xcc\x13\x72\x69\x45\x20\xe6\x29\xf2\x56\x50\x81\x4c\xc6\xbd\x0c\xf9\x81\x54\x7e\xf5\xbf\x5f\xd5\x97\x11\x41\xd0\x9d\x47\xe4\xd2\xa3\x40\xaf\xde\x13\x6a\x14\xe8\xd5\x67\x9f\x16\x05\x92\xe3\xc1\x2e\x63\x84\xa0\x3b\xc5\xf3\xa5\x57\x5d\x0e\x8a\xb3\xd9\xcd\xe9\xbc\x86\x9f\x2b\x9c\x2e\xe3\x81\x97\xa3\xdd\xbc\x20\xd4\x2a\x30\xec\xf4\xbc\xb4\x2a\x10\xdd\xe1\x74\x97\x56\x05\x92\xb3\xd3\x5d\x0a\x14\x18\x76\x82\x5d\xfa\x13\x48\x83\xcf\xd8\x4b\x7d\xba\x1c\x00\xe7\xcd\xa0\x3d\x81\x9c\xbd\x17\x94\x27\x90\x73\x72\xf3\x56\x72\x12\xae\xf6\x16\x37\x46\x08\xa6\xab\xff\x5e\xda\xcf\x75\xf9\x66\xe0\xbf\x94\x1a\x30\x8b\x0f\x5a\x43\x7f\x60\x16\x1f\x8d\x8a\xc9\x75\xe2\x77\xd6\x48\x31\xb9\x8c\xdf\x75\xff\xcd\x76\xbd\x98\x49\x16\xa9\xbb\xf4\x92\xeb\x84\xea\xac\xa5\xbe\x01\x8a\x1f\x7d\xd7\x75\x8e\x8c\xe7\x2c\x5f\x8b\x97\x0a\x02\xe2\xac\x57\x74\xa9\x20\x97\x59\x95\xae\xaa\x7a\xe9\x20\x97\x91\xba\x76\xca\xac\x82\xcb\xec\xbb\x18\xc7\xa5\x84\x5c\x86\xea\x5c\x7a\xe3\x32\xad\xf2\x32\xad\xd2\x25\x59\x2f\xc5\xe4\x32\xad\x32\x79\xc1\x28\x26\x97\x69\x95\xe9\xfc\xd6\x36\xb9\xcf\x13\xd9\xe3\xb3\x01\x08\xdf\x9d\xcf\x2a\xcd\x04\xc4\x59\xe3\xf2\x32\x7c\x07\xf6\xb7\x90\xbb\xb5\x51\x6e\xfb\xfb\xb3\x4d\x60\xab\xdc\xc6\x3b\xf8\x37\xed\xe4\x72\x99\x7d\x33\xdb\x2f\x93\x29\x2f\x12\x27\xcf\x52\x49\x97\x7e\x72\x3d\x4c\xfd\xe6\xa7\x9b\x41\x3d\x50\x1b\x62\x73\xa9\x22\x60\xdf\xad\xec\x54\x17\xb9\x5c\x78\xc2\x8e\x99\xcb\x98\x1e\xa8\xe7\x52\xd5\x4f\x80\x51\x9c\x4b\xc9\x00\x31\x9c\x58\xf5\xd2\x32\xc0\x99\xb0\xe7\x32\xdc\x06\xf6\x6b\x96\xed\xeb\x0f\xa0\x57\x3f\x6c\x9c\x01\x05\x24\x07\x2d\x5e\x86\xc9\x40\x9c\xe9\x86\x2f\xe3\x64\x60\xef\xd4\x9f\xda\xbc\xa4\x3e\x16\x27\x38\xbb\x74\x0f\x10\x67\x96\xbf\x4b\xd3\x00\xd9\x29\x8d\x2e\x4d\x03\x64\x27\x85\xba\x34\x8d\x4b\xd3\x30\xc2\x72\xa9\x12\x97\xf3\x9b\xf8\x72\x53\x25\x2e\xe7\x37\xf1\x0e\x31\x96\x06\x72\xf6\x4d\xa9\x5d\x5c\x4e\x79\xe2\x05\xa2\x5d\x80\x28\xe5\xfc\x9b\x95\x27\x96\x56\xf2\xf9\x3f\x6b\xff\x9e\xda\xbb\x07\x6b\xff\xf2\xd9\xe8\x6d\xa3\x60\x80\x12\xb8\xea\xa5\x60\x80\x7d\x0f\xba\x07\xeb\xfe\xd2\x67\xe4\xc5\xa0\x4c\x80\x7a\x5a\xcd\x30\x17\xd8\x6f\x36\xcb\x3c\x36\xe2\x5c\xae\x20\x7e\x29\x18\x20\x4c\x61\xbf\x14\x8c\xcb\xcc\x46\x5f\x20\x46\xb9\x40\x4c\xaf\x05\x83\x5c\x20\x6a\x34\xcb\x3c\xb2\xcf\x57\xcf\xde\xfe\xad\x9a\xdc\x3f\xaf\xa2\x46\x51\xb1\x88\xee\x64\x7e\x78\x2b\x1d\xa0\x57\x3e\xdf\x6e\xa5\x03\x24\x07\x46\xde\x3a\x07\xe8\x95\x67\xd4\x6d\x7c\x0b\xf4\x4a\x5b\xdc\x6a\x08\xe8\x95\x87\xdb\xad\x86\x80\x38\xb3\x97\xdc\x7a\xc8\xed\x78\x37\x63\x20\xb7\x51\x30\xd0\x2b\x27\xe0\x36\x01\x12\xf4\xca\x2b\xe2\xd6\x4d\x6e\x47\xc0\xf1\x28\xbe\x75\x13\x90\x1c\x85\x73\xeb\x26\xb7\x23\xe0\x38\x25\xb7\x6e\x72\x3b\x02\x8e\xbb\xe7\xd6\x4d\x40\x34\x63\xc5\xb7\xda\x01\xce\xa2\x4b\xb7\x71\xb2\xdb\x45\x0b\xa7\x1b\xb3\x9a\xac\x92\xe0\x87\xdb\xad\x89\xdc\xae\x63\x38\xff\xe0\xd5\xb7\x41\x34\x30\x8c\x85\xde\x8a\x0a\x48\xc3\x73\xa8\xa8\x80\x68\xde\x80\xb7\xa6\x02\xd2\xa0\x73\xe1\xd6\x54\xc0\xf0\x22\xbf\x0d\xb4\x81\xe1\x53\xf0\x36\xce\x06\x86\x9d\x58\xb7\x61\xb6\xdb\x91\x75\x3c\x1b\x6e\x15\x07\xa4\xc1\x35\x78\x1b\x65\x03\x51\xcd\xfe\xba\xb5\x1e\x90\xc6\xb0\xc8\xa6\x4a\x7e\x59\x57\x7f\x6a\x5b\x25\xdb\x8a\xd3\xaf\x1b\x81\x61\xd7\xdc\x6d\xe0\x0d\xa4\xc1\x27\xd7\xad\x2d\xdd\x8e\xbf\xab\x1e\x99\xed\x93\x6c\x1f\xdb\xc2\xf6\x71\x48\x1e\x4f\x99\x5b\x57\x02\xe3\xb4\x98\xaa\x04\xc6\x39\x2e\xe3\x70\xb7\x03\xf7\xf8\x30\xba\x0d\xc3\xdd\x0e\xdc\xc3\x77\x6e\xa3\x70\xb7\x03\xf7\x78\xd0\xdf\x06\xe1\x6e\x47\xe6\xf1\xa5\x76\x1b\x6f\x03\xc3\xde\xaa\x5b\xed\x02\x51\xed\x93\xbc\x55\xac\xdb\x11\x76\x84\x8a\x6e\xad\x08\x0c\x67\x55\xbe\x0d\x87\xdd\x26\x51\xba\x42\xc8\xad\x29\x81\xa8\xd3\x8b\x5c\x53\xba\x1d\x3b\x67\xfb\x2b\x4a\xb7\x63\xe7\x6c\x1f\x3d\x09\xe4\x9c\xdd\x98\x27\xd3\xe1\x74\x5e\x3e\x6a\x12\x18\xae\xa7\x7c\x6b\x49\x20\x67\x1c\xe6\x56\x92\x6e\x07\xdd\xf1\x3a\xbb\x75\x24\x90\x73\x76\x5b\x9e\x4a\xc7\xe1\x79\x2a\x75\x24\x90\x73\xf6\x87\x9e\x4a\xc7\xe1\x79\x91\x19\x49\xbb\x1d\x87\xc7\xeb\xf8\x36\x92\x06\xb2\x8b\xa0\xdc\x46\xd2\x40\x76\x25\xf3\xdb\x48\x1a\xc8\xc6\xde\x6f\x15\x0c\xe4\xcc\x57\xfd\x6d\xd8\x0c\xc4\x99\x8c\xe8\xd6\xca\x40\xce\x98\xd5\xad\x81\x81\xe1\x3c\x03\xb7\xc2\x04\xb2\x19\x8c\xb7\xc2\x04\x66\xf1\x39\x64\xf8\x09\xec\x57\x2a\x87\x61\xf8\x09\x4c\x53\x37\x6f\xc3\x4f\x60\x3a\x7e\xe1\x56\xb5\xc0\x2c\x7c\x89\xdd\xa6\x5b\x82\xe9\x4c\xc7\xb7\xf2\x05\xb2\x59\x8d\xb7\xee\x75\x3b\x9e\xce\xe7\x90\xa2\x05\xf6\x51\x50\x73\xe3\x4f\xb7\x43\xe5\xbc\xd4\x75\x2f\x90\x4d\xa4\xbc\x4d\xa4\x04\x71\x06\x99\xdd\xea\x18\x98\x85\x0f\x8c\xdb\x30\x15\x98\x85\x4f\xc4\xdb\x28\x15\x98\x26\x64\xdd\x46\xa9\xc0\x2c\x7c\xf8\xdd\x6a\x1c\x98\x76\x52\xdf\x7a\x1c\x28\xd1\xdd\xa3\x15\xef\x54\xdc\xe7\xb4\x43\xf3\x40\xee\xa7\xc8\x93\xb4\x31\x8b\xaf\x31\xa5\x0d\xec\x8a\xb3\x7d\x63\x4d\xb7\x63\xdf\xcc\xe7\xbc\xb5\xaa\xdb\x71\x6e\x28\xfc\xad\x36\xdd\x8e\x73\x73\x5e\x9d\x5b\x49\x02\x25\xe8\x5f\xb8\x95\xa4\xfb\x84\x9a\xbc\x4b\x54\xa2\xdb\xf9\xfe\xed\x35\xbe\x75\x22\x50\x1c\x0e\x78\x9b\x5d\x09\xf6\xbf\x79\x70\x9e\x15\x07\xba\x9d\xd7\xb3\x21\x29\xb0\xcb\x68\x4a\x7d\xea\x36\x4c\x45\x07\xc3\xad\x4f\xdd\x27\x4c\xe5\x45\xaa\x50\x81\x5d\x46\xc5\x14\x2a\x10\x27\x59\xf0\xd6\xa8\x40\x71\x2a\x98\x5b\xa3\x02\xc5\x69\x44\x6f\x8d\xea\x3e\x01\x29\x1f\x25\x2a\x15\x28\x4e\x20\x78\xab\x54\xb7\xf1\x28\xe7\xa9\xb9\x75\x2a\xb0\xcb\x3c\x10\x9b\xc4\xd8\x93\xf3\x4f\xdd\xc6\x9e\xee\x79\xda\xc4\xdf\xda\x26\xd3\xaf\x30\xfe\xcd\x30\x13\x28\xda\xea\x6d\x94\x09\x14\x27\x51\xbd\xf5\x31\x10\x67\x20\xe5\xad\x90\x81\xfd\xea\x74\x6b\xd6\xde\x64\xcc\xf8\xfd\x61\x09\xcd\xdb\x70\xd0\xad\x8a\x39\x9f\xd0\x6d\x38\x08\x94\x7a\xf6\xe6\x69\xba\xcc\xae\xf3\x29\xa1\x77\x81\xa2\x7c\xdf\x6a\x17\x88\xee\x9a\x72\xb7\x8a\x05\x8a\xda\x7e\x6b\x58\x20\x7e\x26\xa7\xdc\xda\x14\xd8\x7b\xa0\xde\xda\x14\x28\x4e\xbc\x73\x1b\xe6\x01\xfb\xdf\x38\xc3\x5a\x12\xd8\x65\x1c\xb0\x4a\x04\xb2\x29\xd1\xb7\x01\x1b\x50\x14\xfc\x5b\x21\x02\x67\xa5\xa7\xdb\xe0\xcc\xfd\xd8\xc9\xc8\xf6\x95\x1f\x50\xce\x17\x89\xee\x03\x76\x0d\xb8\x6e\x95\x1f\xb0\x0f\x83\x2b\xcd\xe8\x0c\x28\x3a\xcc\x6d\x24\xe6\x3e\xc9\x8b\xe7\xd0\x6c\xde\xc7\xef\x20\x5f\xe1\x26\x2f\x82\x38\x29\xb3\xb7\xc1\x18\x10\x27\xe8\x74\x1b\x8c\x01\x71\x66\x86\xbe\x55\x27\xb0\xff\xcf\x32\x6b\xb1\xac\x85\x45\xd6\x62\x99\x89\xe7\x59\xd5\x9d\x40\x19\x3e\x06\x54\x27\x10\xa7\xfb\xe9\x56\x9d\xee\x93\x76\x68\x9b\x1b\xb7\xb9\x4f\xda\xa1\x57\xb3\x3a\x05\xf6\x6f\xa9\xad\x3e\x05\xce\xf7\xfd\x6d\x26\x22\x28\xe7\x0b\x49\xc5\xba\x4f\x72\xa2\x37\x82\x8a\x75\x9f\xe4\x44\xdb\x53\xc7\x02\xe5\x7c\xa9\xe9\x58\xf7\xc9\x57\xb4\x89\x95\x2c\x50\xce\x87\xae\x92\x05\xe2\xcc\xec\x7d\x9b\xc3\x08\xe2\x4c\x1e\x72\x2b\x5e\xa0\x9c\x4f\x46\xbd\xeb\x3e\x39\x8c\xea\x81\xde\x05\x76\x19\xf5\x32\x13\xf1\xfe\x34\x73\x3f\x77\xcc\x3a\xbc\x4f\xd6\xa1\x9f\x15\x66\x1d\xde\x27\xeb\xd0\xcf\x3a\x63\x3b\x60\x97\xf9\x5b\x0f\xd9\x14\x43\xeb\x6f\x6c\x07\xec\x5d\x70\xc6\xd4\xb1\xdb\xb4\x43\x47\xe7\xdd\xfa\x18\x88\xd3\x19\x7f\x2b\x64\x60\xef\x82\x76\x77\xac\x19\x88\x33\x2b\xfa\xad\xa5\xdd\x27\x17\xd1\xaf\x0b\x35\x0d\x9c\x1c\xcb\x5b\x4b\xbb\x4f\x2a\x22\x9f\x2f\x8f\x9a\x06\x76\x6d\x27\x65\x61\x99\xad\x52\x2c\x4b\x96\xd9\x2a\x7c\xe4\x3f\xc6\x95\xc0\x2e\x1b\x94\x55\xcb\xcc\x4f\xcc\xfe\x5f\xb3\xcc\xee\x67\x6e\x9f\xc7\x49\x4d\x40\xf5\xee\x79\x54\x3a\xb0\x37\xd7\x29\xbb\x2c\xb3\xfb\xb9\xba\xb9\xdb\xb2\xd3\x2a\x85\xb2\xc7\x32\xc6\x01\x37\x8b\x96\x45\x8c\x03\xe6\x79\xf2\xa8\x79\x60\xff\xd2\x03\xf9\x2c\xb3\x51\xf8\x3e\x7c\x14\x3d\xb0\xf7\x5a\x29\xb3\x51\x82\x5b\x60\xf8\x6f\xb6\x49\x9c\x8f\x2e\xea\x6f\x80\x09\x44\x73\xe1\x8f\x47\x89\x03\x91\x7c\x7c\x3c\x2a\x1b\xd8\xcd\x44\x1b\x1b\x3d\x7a\xcc\x76\x54\x57\x1e\x45\xed\x31\xdb\xd1\x0f\xa3\x47\x53\x03\xd5\xe1\x68\x8f\xa6\x06\xf6\xbf\x51\xa6\xa9\x81\x5d\x96\x29\xb3\x16\x1b\xd5\x51\x71\x8f\xf6\x06\xf6\xbf\x71\x24\xea\x1b\xa8\x76\x65\x3c\xba\xda\x63\x4a\xe4\x39\x63\xca\x1a\xd8\x3f\xa5\x51\xb4\x35\x50\x1d\x0e\xf6\x28\x6b\x8f\x69\x92\x2a\xeb\xa3\xad\x3d\xe9\xb4\x09\xed\xa4\xad\x81\xea\x18\xb1\x47\x5b\x03\xd5\xf1\x7f\x8f\xb6\xf6\x38\xdf\xbf\x2b\x0c\x3c\xea\x1a\xd8\x5b\xe3\x80\x35\x31\xb0\x0f\x98\xdf\x2a\x59\x20\x92\x6b\x99\x3e\x2a\x15\x88\xd3\x03\xfa\x18\xca\x02\xd5\xc4\xfc\x47\xcd\x02\x67\x69\xb6\x47\xcd\x02\xfb\x48\xfe\x30\xb3\xca\xa3\x85\x81\xfd\x13\xb7\x6c\x85\xf2\xa9\x10\x2d\x6b\xa8\x0b\x54\x13\xfb\x1e\x43\x5d\x4f\x76\x4e\x42\x0e\x53\x81\x03\xd5\x94\xbd\x47\x81\x03\xfb\xf1\xc0\x19\x56\xe0\x40\x75\xee\xee\x47\x7f\x03\x71\xba\x9c\x1e\x05\x0e\x44\x1a\x5e\xce\xea\x1a\xd8\x65\x9c\x61\x7d\x0d\xec\x32\xb7\x67\x53\x14\xb3\x5e\xc3\x43\xf1\x74\x12\xd6\x4a\x23\x3c\x14\xeb\x5a\xcc\x71\xf5\xdf\xac\xea\x46\x75\x8a\xb4\x47\xf3\x02\xd5\xc0\xed\xa3\x79\x81\x68\x99\x8e\xca\xc7\x8c\x45\x10\xd9\xc5\x42\x1e\xdd\x0b\xec\x32\x1a\x58\xd1\x02\xd1\xcc\xa7\x7b\x0c\x7f\x81\xc8\x66\xae\x3e\xa6\x23\x82\x5d\xe6\x6f\xad\x04\xf1\xaf\xac\x58\x3d\xc6\xbf\xc0\x2e\x73\xbf\x56\x8c\xf8\x57\x4e\xe7\xf8\xac\x59\x75\x0c\x53\x73\xbf\xde\xa8\xcc\x2c\x39\xbc\x8c\x34\x3c\x50\x87\x4f\x65\xd5\x0d\x54\x5f\x9a\x8f\xea\x06\xaa\x5f\x39\x8f\xea\x06\xaa\xdf\x02\x8f\xea\x06\x22\xbb\x94\xc1\xa3\xbb\x81\x5d\xc6\xe1\x2a\x6f\x20\xb2\xb3\x15\x3d\x8e\x95\x7b\x9c\x45\x52\x95\x7a\x8c\xa6\x81\xfd\x7f\x54\x41\xcb\x03\xd5\x19\xd7\x1f\x25\x0f\xec\x9a\x7a\x74\x5e\xaf\xcc\x2c\xe9\x8c\xee\x8f\x96\x07\x22\x57\xaf\x44\x2d\x0f\x44\x73\xd5\xfb\x47\xa7\x7b\x9c\x59\x72\xfa\x6f\xb6\x88\x0b\xc8\x79\x1a\x74\xba\xc7\x89\x25\xcd\x51\x7b\x94\x3a\xd0\x5c\xdb\xea\x51\xd7\x1e\xa7\x8c\xf4\x96\x37\xec\x06\xce\x84\xb4\x8f\x06\xf7\x1c\x83\x23\x17\xe1\x31\x43\x11\x44\x55\x3a\x1e\x63\x71\x20\xe6\x74\x9f\x56\x94\x14\xc5\x76\x9e\xbd\xc6\xe2\x9e\x11\xff\xff\xff\x9e\x29\x34\x1f\xa3\x6c\x20\x4e\xf7\xed\xa3\x0f\x82\xee\xa0\x87\x47\x1f\x7c\x0c\xa3\x61\x5c\x8f\x61\x34\xb0\x77\xc0\x71\xe8\x83\xa0\x57\x64\xe5\x31\x68\x06\x92\xe3\x64\x1f\x0d\xf1\x31\x68\x66\x0b\x69\x83\x8f\x41\x33\xeb\xa4\x0c\x82\x5e\xb1\xb2\x47\x17\x04\xbb\xea\xfc\x52\xc9\x03\xfd\x9c\x3c\x1d\xef\x31\x68\x66\x6b\xa8\x78\x8f\x41\x33\x5f\x13\x2a\xde\x63\xd0\xcc\xe6\x56\xf1\xc0\xf0\xeb\xe4\xd1\xf0\x40\x1a\x58\xea\xa3\xe1\x81\x71\x9e\xe0\x8a\x1b\xd8\xe7\xc9\x5f\x7a\xb0\xd3\xee\x1c\x7f\x69\xfb\x4f\xba\x73\xbc\xcd\x14\x37\x30\x9c\x0a\xe2\x51\xdc\xc0\x70\xb6\xc3\x47\x6f\x03\x67\x59\xda\xc7\xdc\x40\x90\xb3\xcf\x62\x53\x03\x41\x1c\x6b\x7d\xcc\x0d\x04\x51\x1c\x85\xf9\x18\x83\x03\xc3\x69\x2a\x1e\x8d\x0e\x44\x71\xb0\xef\x63\x70\x0d\xec\xd6\xf6\xff\xac\xc1\xc5\xc8\x46\x3e\x11\x1f\x8d\x0e\x64\xc7\xb7\x3e\x1a\x1d\x98\x0e\x5b\x7b\x8c\xa3\x81\xec\xc0\xd8\x47\xc7\x03\xf3\xec\x52\xc7\x03\xd9\xe1\xb9\x8f\x3a\x07\x76\xd3\x52\x29\x7d\x0e\x94\xf0\x53\xc3\x78\x19\xd8\x16\xeb\xd6\xbc\x7b\x1c\xef\xe6\x2c\x5f\x8f\x01\x33\xb0\xcb\x3c\x36\xaf\x34\x06\xbc\x85\xdf\x15\xc6\xcb\xc0\xfe\x37\xce\x9e\xc1\xb1\xc7\x09\x26\xb3\xef\x5f\x13\xf5\xc0\x56\x3a\xea\x65\x74\x0c\xc4\xe9\x15\x78\x0c\x8f\x3d\x67\xc8\x9b\x35\xd3\x10\x41\x9c\xbe\x9e\x47\x45\x7c\x1c\xf2\xd6\xfe\xe0\xe2\x8f\x02\xf9\x1c\x81\xf4\x06\x50\x20\x9f\x33\x24\xce\x0b\xc1\xf4\x3e\xb0\xcf\xa6\x47\xe0\x19\x7e\xec\x3c\xde\x25\xfa\xe3\xb3\x0c\x8b\xfa\x69\xe3\x48\x37\xb0\xbd\x80\x26\x33\xf4\x06\xa2\x3a\x3b\xcc\xa3\x67\x3e\xff\x3c\xd3\xed\xd9\x3e\x4b\x81\xe2\x40\x1c\xe9\x06\xf6\x2e\xb8\x86\xd4\x4c\x50\xcf\x7b\x5f\xcd\x04\xbb\xb5\xa9\x97\x4e\x09\xfe\xbd\xb9\x54\x4a\x50\xcf\xe3\x4b\xa3\x04\xff\x9e\xfa\x0a\x25\xa8\x46\x98\x1f\x7d\xf2\x39\x3e\x49\xe3\x2b\x8f\xa0\x9e\x4f\x2e\x05\x10\xc4\xe9\x7e\x79\x34\x40\x50\x9d\xd6\xe1\x51\x00\x9f\xf7\xe8\x94\x65\x56\x00\xdb\x4b\x2e\xf8\xf1\x38\x62\xed\x79\xcf\x47\x15\xed\x61\x98\x0d\xec\x2f\x7d\x0f\xce\x2a\xbc\x27\x0f\xc4\x43\xb1\x0e\x5b\x0e\xab\x93\x4a\x3e\x26\xf7\x81\xfd\x7a\xb7\xcc\x4a\x20\x8a\xd9\x75\xc9\x1e\x45\x11\xc4\xe9\x30\x7b\x14\x45\xb0\x7f\x4b\x03\x38\x3e\xed\x71\x7c\x9a\x7d\x27\x8f\xb1\x3c\xb0\xdf\xb5\xb4\x80\x42\x09\x22\x57\x9f\x6d\x1a\x25\x88\xdf\xd9\x9c\x67\x15\xa1\xec\xa6\x39\x3f\xca\x23\x38\xba\xfb\xe8\x8e\x20\xfa\xb9\xeb\x75\x47\xd0\x5c\xaa\xec\x51\x1d\x9f\x33\x51\xc9\x6e\x92\xa5\x26\x82\x98\xd3\xa2\xb0\xc8\x57\x5c\xa3\x28\x59\x44\x7e\x2a\x07\xbb\x74\x44\x70\xa6\x1a\x5e\x86\x01\x41\xfa\xf1\xfd\xbe\xb4\x46\x10\x93\xe7\xe4\x52\x1a\x41\x72\x29\xc3\xa5\x33\x82\xf4\xe3\xa5\xba\x8c\x0c\x82\x6e\x1f\xeb\x52\x23\x41\xfa\xf1\x35\xbd\xb4\x48\x90\x9c\xde\x6e\x29\x91\x20\x39\x57\xde\xd2\x21\x41\xaf\xd3\xcd\x2f\x8b\xd6\xfe\xaf\xe4\xa1\xbe\x16\x11\x2a\x1c\x6e\xeb\xb3\x88\x50\x21\xdf\x61\x4b\x83\x04\xc9\x39\xf6\x96\x02\xb9\x9c\x2c\x13\xbb\x59\x0a\xe4\x32\x54\xc8\x63\x61\x19\x2a\x5c\x86\x0a\xb9\xe4\x97\xa1\x42\x90\x9c\xfc\x6f\x69\x99\x20\x39\xff\xdc\x72\xc9\x02\xd0\x2b\x66\xb7\xcc\x6c\x04\xc9\x89\x04\x97\x21\x46\xd0\x2b\x0f\xe0\xa5\x9d\x82\xe4\x48\xf8\x65\x88\x11\x24\x67\x18\x5a\xfa\x2a\x48\x0e\xb4\x5f\xea\x2a\x48\x8e\xf7\x5f\xda\xea\x72\x7a\xce\xe1\x1e\x6d\xaf\xb0\xbd\xfc\x2f\xdb\x2b\x68\x2f\x3e\x65\x97\xae\x0a\x92\x93\xf3\x2d\x55\x15\xa4\xc2\x07\xfa\x52\x55\x41\x72\xa2\xbf\xa5\x96\x82\x68\xf6\x46\x2f\x7d\x13\x9c\x19\xed\x97\xba\x09\x86\x8f\xbd\xa5\x5a\x82\x9c\xe9\x6d\x58\xaa\x25\x38\x4b\x65\x2e\xa3\x7e\x20\x4d\x2f\x56\xa3\x7e\x20\x19\x0e\x5b\xba\x26\x48\xd3\x7b\xc1\xa8\x1f\x48\xd3\xc6\x37\xea\x07\xd2\xb4\x46\x0a\x29\x48\x93\x97\xdf\xd2\x47\x97\x21\x3e\xba\x32\x96\xc3\xec\xc0\xf0\x69\xbc\xd4\xd1\x65\xd4\xaf\xb9\x47\xeb\xb8\x91\xa6\x77\x8c\xb9\x96\x60\xf8\x80\x5e\x1a\xe8\x32\x0e\xd8\xdd\x96\xd5\x66\xa6\xcd\xe9\x3d\xaa\x7f\x2e\x67\xda\xa4\x0f\x70\xe9\x9f\x2b\x13\xec\xe4\x4d\xb7\xf4\x4f\x90\xa6\x77\x9f\x4b\xa9\x83\xe1\x5b\x62\xa9\xa4\x20\x39\x82\x67\x69\xa4\x20\x4d\xef\x51\x8d\x14\xa4\xc9\x6b\x6e\x29\xa4\xcb\x69\x59\xda\x1f\x26\x57\x59\x06\x1c\x41\x1a\x3e\xa6\x34\x58\x70\x16\x3d\x5b\x8a\xe9\x72\x0a\x16\xbe\x06\x96\x12\x0a\xf6\x3b\xd0\x5f\x5a\x61\xa2\x84\xea\xeb\x32\x4a\x08\x86\x43\x45\x97\xae\xba\x8c\x12\xe2\xe0\x4b\x57\x05\x43\x17\x5e\x46\x09\xc1\x30\x03\x71\x69\xaf\x60\x38\xc4\x74\x29\xaf\x60\x0c\xaf\x19\x03\x87\x20\x9b\xb5\xbb\xd4\x59\x30\x1c\xc3\xba\x8c\x1b\x82\xe1\xd8\xa4\xa5\xb8\x82\x68\x3f\x9f\x11\x8a\xeb\x72\x4e\xcf\x6e\x91\xe7\x9e\xc9\x5c\x1c\x0c\xb2\xd4\x56\x10\xe7\x2b\x6d\x39\x54\x0e\x64\x3f\xc8\x96\x26\x0b\x86\xbd\x00\xcb\xc0\x24\xc8\xae\xc0\xb9\x0c\x4c\x82\xb3\x6e\xc0\x52\x6e\xc1\x70\x16\xaf\xa5\xb6\x82\xec\x7a\xa4\x4b\x6b\x05\xc3\xa1\xb5\xcb\x31\x70\x20\xfb\x9d\xb2\xf4\x58\x30\xcc\x75\x59\x6a\x2c\x18\xc3\x7b\x51\x8b\x05\xc3\x5c\xcf\xa5\xb1\x82\xe1\x28\xdd\xa5\xb0\x82\x9c\x8b\x45\xd6\xb1\x79\xbe\x39\x2e\x7d\x15\x9c\x69\xe1\x96\x51\x49\x90\xe6\xf9\x2f\xab\xdd\xa9\xb6\x97\x93\x06\x0b\x8e\x85\x2f\x33\x42\x97\xf3\x79\xf2\x8a\x5e\xaa\x29\x98\xc5\xdb\x53\x35\x5d\x4e\x02\xe3\x59\xd3\x4c\x97\x63\xe7\x7c\xa8\x2a\xa6\xcb\xb1\x73\x9e\x34\x25\x14\xcc\xe2\xe6\x4d\x08\x5d\xce\x01\xe3\xdd\x60\x42\xe8\x72\x98\x9c\x7b\x54\x55\x97\x53\xc0\xf0\x11\xb3\x34\xd5\xe5\x14\x30\xbe\xf6\x34\x55\x30\x8b\xb7\x91\xa6\xba\x9c\x15\xc6\xbb\x5f\x51\x05\xb3\xf8\xe4\x55\x54\xc1\xbe\xc0\xdc\xa5\x35\x1a\xd6\xc8\x5f\x5a\xa3\x41\x8d\x7c\xe0\xa8\xa5\x60\x16\x9f\xec\x46\x28\x41\x76\x30\xe3\x52\x54\x97\x33\xc0\x78\x60\x8a\x2a\x98\xce\x2b\xb8\x1c\x32\xb7\x9c\x14\xc6\xcd\xeb\xae\xcb\x49\x61\x7c\x45\x2b\xaa\xcb\x58\xa4\x23\x36\x97\xa6\x0a\xa2\x9e\xe3\xd7\x4b\x41\x09\x5f\xe5\xc6\x13\x41\xfc\x9c\x63\x69\xa9\xaa\xa0\x68\xdf\x4b\x55\x05\x7b\x0f\xfc\x9b\x71\x47\x50\x5c\xb2\x73\xa9\xaf\xcb\xd1\x6d\x0e\x3a\x5d\xfa\x2b\x28\xce\xeb\xb4\xf4\x57\xb0\x77\x4a\x1d\x8c\x3b\x82\x38\xe3\x4b\x96\x06\x0b\xf6\x5e\x39\x60\x0d\x16\xec\xdf\x72\xde\x35\x58\x10\xd5\x49\xb8\x97\x59\xa4\x60\x1f\x0a\xe7\xd4\x34\xd2\xe5\x34\x30\xce\x92\xbd\xcc\x23\x05\xfb\x3c\x7b\x7c\xb6\xd3\x46\x71\x3c\xe3\x32\x9e\x09\x4a\xf2\x79\xa0\x10\x83\xbd\x07\x8f\xc4\x76\xba\x4e\x3b\xb1\x07\xf3\x4d\xc1\xbf\x1d\x28\xc9\xa0\x38\x89\xdc\x52\x92\x41\x71\xae\xb9\xa5\x24\x83\x28\x4e\xaf\xba\xb4\x64\x50\x9c\x67\x72\x69\xc9\xa0\x24\x9f\xab\x06\x42\xd7\x7d\x1a\x89\xca\x6b\xce\xa0\xb8\x00\xf6\x52\x9c\x97\x81\x50\x67\x3e\x5a\x9a\x33\x28\x4e\x29\xb6\x14\x67\xf0\xef\x4e\xd0\x9b\xd7\xf1\xe6\x64\x99\x4d\xa4\x37\x9f\xa3\xb5\x39\x6e\x22\xf3\xbe\xea\x0c\xaa\x82\x7d\x68\xd4\xdd\xa8\x2a\xd8\x65\x1c\x87\x7a\x0d\x76\x19\x2d\x6e\xa8\x75\x39\xc9\x8c\xb3\x8b\x2d\x95\x7b\xa9\xdc\x4e\x78\xb6\x8c\xbf\x82\xfd\x7f\xd4\x55\x0d\x07\x25\xfd\x25\xac\xbd\x14\xf2\xf5\x9c\x2b\x88\xab\x54\x21\x07\xc5\x49\x48\x97\xc6\xbd\x9e\xd3\x14\x1e\xa8\x4d\x81\x5d\xf7\x73\xdf\x6a\xd7\xcb\x98\xad\xd3\xb1\x2f\x63\xb6\xeb\x64\xb6\x7a\x81\xeb\xdc\x20\x86\x93\xe5\x2e\x9d\x1b\x14\xb3\x01\x97\xca\xbd\x54\x6e\xf3\x2f\x96\xca\x0d\xf6\x4f\x69\x1f\x07\xd5\x81\x7d\x11\xb9\x39\xdb\x62\x19\x27\xf7\xd9\x69\xb8\x17\x14\xd3\x17\x97\x1a\x0e\x8a\xdd\x77\x4b\x0d\x07\xc5\xbe\xc0\x65\xb0\x17\xc4\x4f\x13\x5d\x9a\x39\xd8\x07\xe7\x0e\x6c\x93\x45\x46\x80\xcf\x58\xd5\x1c\x14\x3b\xeb\x96\x6a\x0e\xf6\xa1\x71\x1c\xba\x39\x28\xa6\x64\x2e\x63\xbd\x60\xff\x1b\x5b\x33\xb0\x0b\x8a\x39\x8d\xcb\xb8\x2e\x88\x7f\xb7\x8b\x81\x5d\x10\xff\x1e\x48\x7a\x3d\xd8\x9b\xf3\xff\x6c\xa4\xd7\x46\xf2\x95\xa6\xd8\x83\x62\x42\xe7\x32\xb0\x0b\x8a\xbd\x97\x4b\xd5\x07\xfb\x97\xee\xc1\x16\x61\x72\x1a\xf3\x3e\x97\x56\xbf\xcc\x9e\x75\xf2\x87\xa5\xd5\x83\x62\xaa\xe9\x32\xfc\x0b\xf6\xbf\x59\x66\xf5\xbf\x53\x7d\xf6\xaa\xe9\x83\x62\x07\xe9\x52\xf4\x41\xfc\x1c\x95\xb6\x14\x7d\x50\x4c\xf3\x5c\x7a\xfe\x3a\x9e\xef\xe3\x48\xcf\x07\x7b\x0f\x34\xba\x9e\x0f\x76\xbd\xfc\x3f\xab\xff\x51\x7d\x4f\xb4\x41\x62\xb0\x7f\xca\x89\xd0\xf3\x41\x31\x51\x75\xe9\xf4\x60\x5f\xac\x34\xa6\x52\xbf\x4c\xdb\xb5\xfe\xaf\x72\xfe\xba\xb2\xba\x13\x97\xbe\x4a\x36\xd8\xd7\x57\x50\x36\x2c\x63\xe6\x20\x4e\xeb\xab\x65\x83\xa2\x6c\xbc\x5a\x36\x28\x76\x06\xbf\x5a\xf6\x7b\xd6\x55\xe7\xd1\xfb\xaa\xd9\x20\x22\x0d\xff\x6f\x59\x66\xba\xc2\xd9\xc3\x6b\x99\xe9\x0a\x3c\xf4\x5e\x4d\xfb\x35\x58\x9b\xdc\x87\xaa\x0d\x8a\xf6\xf2\xaa\xda\xaf\xb1\x5a\x1e\xb4\xaf\xaa\xfd\xba\x24\xbb\xcb\xe0\xbf\xba\x36\xd8\x65\x93\xb2\x62\x99\x5d\x6b\xd3\xb2\x6a\x99\xf9\x0a\xbc\x8e\x5f\x75\x1b\xec\x32\xf7\x61\xd3\xc5\xe9\x6f\xa3\xb6\xaa\x34\xd8\xff\xe7\x7e\x6d\x95\x30\x87\xc3\x5d\xd8\x28\x61\xa3\xf0\x28\x79\x95\x69\x50\x54\xcf\x57\x99\x06\xc5\x2f\xcd\x57\x99\x7e\x93\x13\x47\x71\x0d\xbf\xaa\x33\xd8\x65\xb4\x89\xee\x0c\xf6\x1e\x2c\xb3\x01\x36\x8a\x1a\xf6\x9a\xa5\x0b\x22\x5c\x4b\xfa\xd5\xb1\xc1\x2e\xf3\xff\xac\x2b\x49\xb9\xc5\xd9\x60\x5e\x25\x1b\x44\x98\xab\xf8\x1a\xd3\x05\xbb\xcc\xdd\x5a\x7f\x82\xba\x66\x81\xbd\x06\x70\xdf\x74\x32\x18\xfc\xa9\x95\x4d\xf4\x2e\xf2\xd0\x79\xd3\xa9\x2c\xbd\x8b\x9e\x30\xd5\xfb\x75\x85\x40\x53\x13\x5f\xdd\x1b\xfc\xbb\x84\x75\x6f\x70\x42\x39\xaf\xee\xfd\xba\x3e\xa0\x61\xc6\xd7\x94\x5b\x50\xed\xef\x7e\xf5\x71\x70\x3e\xf6\x5e\x7d\x1c\xec\x7d\x72\x6a\x0c\x19\x83\x13\x30\x79\x75\x74\xb0\x77\x40\x0d\x94\x74\x50\x75\xab\x57\x49\x07\x7b\x6b\xee\xd4\x26\xca\xe6\x38\x74\x8f\xcd\x6b\xc4\xa5\x05\x1d\x83\xfa\xea\xe9\xe0\xbc\x0c\x5e\x3d\x1d\xd4\x38\x5b\xb3\xd9\xb2\xcd\x46\xe3\xaa\xee\x60\x1f\x1b\xc7\xab\xbb\x83\x1a\xe3\x0f\x93\xaa\xbc\xaa\x3d\xd8\x5b\x61\xff\xba\x3d\x38\xb1\x8c\x57\xb7\x7f\x1d\x57\x69\xbf\xe3\xab\xdc\x83\xf3\x8e\x7d\xb5\xf7\xd7\x85\x0d\x79\x67\xbd\xda\xfb\x7b\x16\x36\xf4\xa9\x65\xfc\x19\x54\x97\xf2\x78\x0d\x3f\xbf\x67\xad\xc3\xe6\x4f\x6d\xae\x62\x73\xf1\xda\x7d\x95\xf5\xf7\x2c\x58\xe8\x19\xd1\xd6\xc1\x2e\xf3\xff\xac\x97\x0b\x16\x7a\xd3\xaa\xeb\xef\x59\xb0\xd0\x73\xae\xaf\xbf\x95\x01\x3b\xb6\xab\x72\x0e\xf6\xd6\x68\x7e\x63\xcd\xef\x59\xb0\xd0\x93\xa9\xb1\x83\xfd\x7f\xd4\xc2\xf8\x33\xa8\xce\x47\xf3\x6a\xf1\xa0\x3a\xf9\xcc\xab\xb1\xbf\x67\xbd\xc2\xe6\x81\x78\xce\x2b\x19\x21\x3e\x2a\xd5\xf3\xf7\x0c\xbe\xf4\x66\x34\xd2\xfc\xba\x86\xa1\x1d\x5c\xaf\xce\x0e\xaa\x33\xde\xbc\x3a\x3b\xd8\x3f\xa5\xd1\x95\x76\xb0\xcb\x68\x61\xe3\xcf\x20\xce\x04\x37\xaf\xda\x0e\xe2\xe4\xae\xbe\x7a\xfb\xeb\xc8\x4d\x27\x63\x7b\x15\xf7\x77\x5b\x7a\x75\x78\xef\xab\xa5\xbf\x8e\xdc\x2c\xfe\x97\x97\x77\x33\x0d\x82\x46\xd2\xd2\x41\x9c\x0f\xb6\x57\x4d\x07\x7b\x07\x34\x93\x9e\x0e\x22\xb9\xf2\xf5\xab\x95\x83\xfd\x7f\xfc\x56\x2d\x07\xd5\x41\xc5\xaf\x81\x65\xb0\xff\x8d\x13\x61\x60\x19\xec\xcd\xd1\x26\xa6\x0b\xbf\x0e\xfb\x74\x25\xed\xd7\x7c\x61\xb0\x7f\xeb\xf6\xac\x7f\xb7\xfe\x74\x36\xbc\xaa\x3f\xa8\x0e\x52\x7e\x55\x7f\xb0\x7f\x4a\xd3\xe9\xfe\x20\xd2\x48\x6e\xce\x0b\xa0\x93\x43\xe1\xd3\x4d\xf9\x07\xd5\x8f\xce\xd7\xa8\x34\xd8\xbf\xf4\xdf\x6c\x27\x46\x88\xd6\x49\xe7\xc5\x6b\x8f\x00\xd8\xff\x67\x99\xd7\x04\x63\x44\xd3\xe0\xbb\xfb\x35\x9d\x19\xd4\xf3\xa9\xa0\xed\x83\xc8\x2e\x17\xfc\x9a\xba\xfc\x92\xa7\x7c\x46\x63\xbd\x46\xa1\xc1\x2e\xa3\x9d\xcc\x53\x06\xbb\x8c\xd3\x63\x1f\x00\xa8\xe7\x71\x69\x1f\x00\xd8\xbb\xa0\x16\x76\x02\x80\x68\xce\x61\xf3\xda\x0b\x00\xaa\x43\xea\x5f\x7b\x01\x40\x64\xb3\xb3\x5e\xbb\x01\x40\x0c\xa7\xce\x79\xed\x07\x00\xd5\xdc\xc6\xd7\x7e\x00\x50\x4d\x46\x7c\x8d\x61\x83\xc8\xae\x89\xff\xda\x37\x00\xaa\x89\x87\xaf\x5d\x03\x20\xb2\xe9\xf4\xaf\x51\x6c\x10\xd9\xe9\xb0\x5f\xf3\x94\xc1\x2e\xf3\xb7\x36\x13\xf3\xe6\x64\x27\x23\x7f\xcd\x5d\x06\xfb\xff\x3c\x3a\x9b\x69\x92\x7f\xe1\xab\xcc\x3e\x04\x10\xa3\x21\x40\xaf\xd6\x0f\xa2\x9b\xc4\xf6\xfe\x0f\x63\x67\x72\x33\x4d\x0b\xac\xd9\x7d\x5b\xd1\x26\x14\x73\x20\xb5\xda\x97\x9c\xf0\xdf\x84\x2b\xce\xe1\xbb\xdb\xff\x5d\x9d\x12\xca\xca\x84\xc8\x01\x9e\x08\x08\x54\xdf\x60\x97\xd1\x0a\x55\x29\xd8\x65\x9c\x4f\x45\xf7\x99\x4b\xf4\x74\xc7\x0a\x2a\xb0\xcb\xb8\x86\x92\x02\xa4\xe1\xf7\x7f\x19\xb8\x01\xbb\x6c\x57\x79\xd9\x61\x82\xf4\x43\x48\x2e\xfb\x4b\xb0\x0f\xcb\x94\x85\x65\x41\xe8\xa6\x52\x34\x2d\x9a\xff\xff\xff\x0e\x57\x2c\x2c\xfb\x4b\x90\xcd\x46\xbc\xec\x06\x41\x9e\xbc\xd7\xcb\x6e\x70\x15\xdd\x93\x5c\xd2\x3e\x6f\x91\xfe\xad\x9a\xd2\x66\xd9\x5b\x2d\x37\xd8\x2d\x8c\xb2\x96\xdd\x15\x68\xaa\xed\x65\x6f\x05\x76\x0f\xc6\x45\xed\x9b\x40\xaa\xce\x5c\x59\xf6\x4d\xa0\x99\x65\x6c\xd9\x37\x81\x74\xee\xd7\xd2\x03\xbd\xea\x79\xd5\x2d\xbb\x2d\x73\x6a\x18\xea\x7d\xd9\x87\x2d\xa7\x4b\x31\x68\x5d\x7a\xaa\xc1\x7e\x23\xac\xb0\x6d\x75\xbf\xde\x74\x8e\x5b\x96\x2d\x1f\xff\x3f\x78\xcf\x97\xbd\x23\x68\x13\x57\xd7\xb2\x73\x04\xdd\xbe\x66\xd9\x37\x82\xdd\xd5\x72\x97\xec\x1c\xc1\x2e\xa3\x3d\x76\x8e\xcb\xdd\x7c\xf9\x38\x2c\x9d\xd9\xe0\x4c\x7b\x5e\xf6\x83\x60\x18\xfd\x5f\x7a\xa9\x97\xe9\xde\xa6\x45\xda\xc1\x74\x6f\xd3\x6a\x68\x87\x46\xa8\x69\x7a\x2e\xcd\xd0\x08\x35\x4d\x2b\xa6\x15\xc8\xe7\x66\x4e\xe7\x65\x27\x08\x46\xf3\x16\xd9\x07\x82\xd1\x78\xdf\x97\xfd\xdd\x32\x77\x1b\x63\xd4\x65\x77\xb7\x3a\x7e\xf7\x64\x91\x8f\x40\xc7\xb9\x19\x16\x79\xbb\xdd\x53\x8a\xaf\xf3\xb2\x63\x03\xd3\xfd\x50\x96\x73\xa8\xc0\x34\xd7\xe5\xb2\xaf\x5b\x2e\x94\x61\x9c\xb9\xec\xeb\x96\x0b\x65\xf8\xac\x2f\xbb\x35\x50\xcd\xc8\xb2\x74\x3f\x2f\x73\xb7\x39\x48\x58\xf6\x74\xa0\x98\xdf\x65\xd9\xd1\xad\x33\x83\x8a\xd9\x72\xcb\x5e\x0d\x54\x83\x73\xcb\x4e\x0d\xa4\x9f\x99\x0b\x96\x9d\x1a\xa8\x86\xf5\x96\x7d\x1a\x48\xdd\x7c\xb5\xcb\x3e\x0d\x54\xc3\x41\xcb\x3e\x0d\xec\xd7\xcb\x32\xcd\xc1\xb4\xaa\xfd\xed\xa7\xcc\xc6\x0f\xc7\xff\x7c\x98\x97\x3d\x18\xd8\x65\x58\xc4\x1e\x0c\xec\x32\xda\xaf\xb7\x1a\xec\x17\x87\xff\xea\x9b\x06\xcd\x5c\x24\xcb\xde\x0a\xec\xc3\xb8\x59\xf6\x56\x20\x15\xb7\x1c\x5f\x3a\xac\x41\x9b\xb8\xdf\x96\x0e\x6b\xb0\xbf\xea\x9e\xce\x96\xb9\xf8\xe6\x5c\xd4\x86\xd1\xa7\x99\xf4\x79\xd9\xa5\x81\x64\x76\xe4\x65\x97\x06\xce\x7e\xb5\xcb\x1e\x0d\xe4\x9f\x46\xb2\x43\x03\xa9\x4f\xbc\x9d\xcb\x1e\x0d\x0c\x27\xd4\x2c\x3b\x34\x30\x1a\x52\x72\xd9\x9f\x81\x34\xdc\xba\x67\xd9\xa1\x81\x6c\xb6\xf6\x65\x87\x06\x42\xe5\xb0\xec\xcf\xc0\x68\xd3\xf3\x6b\xa0\x79\xbe\x71\x56\xc3\x96\x6f\xe4\xc9\x68\x6e\xd9\x4d\x81\x38\xdf\x1f\x7b\xa9\x35\x89\x20\xfa\x68\xe9\xfc\x06\x79\x7a\x2e\x1d\xdd\x8b\x49\x59\x0e\x34\x96\x4e\x6d\x10\x8e\x5b\x96\x4e\x6d\xb0\x6b\xc1\x5d\xb7\x7b\x03\xc5\xb5\xdb\xcb\x89\x5a\x60\x9a\x2c\x76\xe9\xe6\x06\xd3\x1c\xb0\x4b\x2f\x37\x98\x66\xa3\x5d\x3a\xb9\x41\x71\x85\xf7\xd2\xc7\x0d\x8a\xc9\x19\x96\x9d\xe7\x3a\x6b\x71\x7c\xcf\xf4\x5d\x2f\x33\x98\xf7\x73\x4d\x9b\x89\xf3\x7a\xb8\xeb\xd2\xd2\x79\xbd\xcc\x95\xa0\x81\xf4\x5d\x83\xfd\x57\x0e\xd3\x79\xbd\xcc\x95\x50\x7c\xbd\xf5\x5e\x83\x3a\x4f\x91\xf6\xb8\x8f\x16\xa1\x76\x7a\xaf\x41\x0a\xb7\xe4\x5a\xba\xaf\xc1\x3e\xce\x32\x2d\x72\xb3\xcd\x76\xf3\xaa\x5a\xe4\x76\xcc\xea\x5b\xa0\x4b\x1b\x34\xf3\x3d\x2c\x5d\xda\xa0\x99\xef\x61\x39\x76\x58\xee\x39\x15\x3e\xa5\xba\xb4\xc1\xee\xa0\x3c\x4e\xd3\xdd\x8e\xec\x3c\x4c\xcb\xdd\x46\x47\x78\x72\x5d\x28\x04\xce\x0e\xcd\x4b\x2f\x37\xc8\x3f\x1b\xaf\x97\x1b\x8c\x6e\x87\xad\x93\x1b\x64\x57\xe3\x2f\x7d\xdc\x60\x74\xdc\x18\xcb\x3c\xea\x60\x74\xbc\x18\x4b\x0f\x37\xc8\x95\xd0\xcb\x72\xe8\x03\x42\x17\xc3\xd2\x5b\x0d\x42\x37\xef\xd2\x59\xbd\x1e\x1f\x78\x1a\xe4\x54\x30\x90\xa7\xcf\xa8\xbe\x6a\x70\x36\x9d\x5c\xba\xaa\x41\x9e\x76\xfc\x0e\xac\x00\x3b\xbd\xfd\x77\x47\xad\x1f\x7b\xbd\x04\xd9\xed\x2a\x74\x63\x83\x3c\xfd\x1c\xe9\xb2\x5e\x2f\xa1\x63\xc6\x7a\x4b\xef\x34\x88\x73\xbb\xf4\x31\xaf\xd7\x9e\x88\x67\x5f\x77\x32\x48\x4d\x37\xee\xd2\x9f\x0c\x76\xef\x61\x99\x15\xdf\xa8\x66\xc4\x58\xfa\x93\x17\x0b\x85\xf4\x0a\x2d\xe7\x7a\xad\xef\xf4\x3b\x5c\x41\x47\x31\xd8\x65\x1e\xe7\x83\x79\x1c\xc5\x5e\x55\x47\x31\x48\x67\xb5\xf6\xd2\x51\x0c\xf6\x71\x5e\xd6\x3b\xa4\xa7\xd8\xdb\xa1\xa7\x78\x1d\x4f\xb1\x03\x04\x97\x00\x81\x5d\x66\x55\xbc\x6d\xdf\x79\xab\xad\x8a\x06\xf8\xce\x5b\xed\xf9\x34\xc0\xa7\xeb\xcd\xab\xda\x7e\x36\x32\x4e\xc5\xd6\xea\x52\x5e\x2b\x71\x98\x45\x1a\xe0\x2c\x28\xf2\x53\xab\xfb\x18\xb4\xf3\x48\xe9\x3d\x5e\x67\x3d\x91\x43\x0e\xdd\xc7\x20\x65\x73\x38\x2f\x5d\xc5\x6b\xe9\x39\x70\x28\xaa\xab\x18\x34\xf3\xed\x2e\x5d\xc5\xcb\xf5\x44\x4e\x94\x5d\xba\x8a\x41\x33\xb7\xee\x72\x4a\x18\x68\x46\x1a\x97\xde\xe3\x85\xa7\x38\xbb\xad\xef\x72\xe9\x10\xd8\x2f\x7a\xfb\x3f\xff\x2f\x7e\xcc\x09\x13\x0d\xc7\x7e\xfc\x98\x13\x26\xd2\x6f\x7f\x48\xe2\xc7\x9c\x30\x91\x06\x29\x5c\xe2\x87\xdf\x59\xa4\x5f\xb6\xa8\x5a\x44\x0f\x55\x2c\x6a\x16\xb9\x94\xa6\x50\xd4\x2d\x22\x37\x44\xf1\xfc\xc3\xa2\xc1\x47\xc3\x3f\x86\x45\x61\xd3\xad\xec\x6d\x19\xb3\x7d\xb6\xa0\x89\x1f\x8e\x68\x91\x7e\xdb\x40\xf1\xc3\x0f\x2d\xf2\xef\xe7\x51\x9f\x45\x8b\xf3\x73\x54\xb2\xe1\x4c\xee\xfa\xed\x7b\x1c\xbf\x64\xc3\xc9\x03\xf1\xdb\x4f\x47\xfc\x92\x0d\xc7\xe3\xfc\xcb\x54\x3f\xd9\xc8\x8d\x41\x8c\x34\x7e\xc9\x46\x3a\x93\xab\x78\x94\x8d\x64\x26\x57\xff\x59\x64\x23\x9d\xc9\x55\x68\x50\xb2\x91\x89\xac\x49\xc5\x7a\x4d\x8b\x98\xc9\x55\x3c\xbd\xcd\x4e\x7c\xa7\xa6\x45\x36\x3b\xf9\x9d\xb2\xaa\x36\x9b\x45\x46\x35\xef\x61\x72\xfc\x92\xed\xde\x70\x4f\xc0\xf8\xe1\x6a\x16\xc1\xb3\x12\xbf\xac\x29\xf2\x89\xa8\xf1\xcf\xac\x2d\x32\x8b\xb4\x27\xe6\xc9\x36\x3c\x1b\x5d\x2c\x5c\x34\xdb\x72\xbc\xca\x91\x8b\xc7\xd9\xf4\x8d\xca\xf4\xb4\xf8\x65\xdb\xb9\x51\x99\x3d\x14\xbf\x6c\x3b\xf5\x33\x17\xad\x8d\x9f\x59\xec\x32\x6e\x5d\xb6\xa5\x59\x0f\x60\xf0\x6c\x64\x9b\x45\xf6\xf4\x60\xff\xcd\xf8\x65\xdb\x45\xce\xbb\x9a\x33\x65\xc5\x86\x15\x77\x09\xac\x58\xae\xd8\xb0\x62\x32\x5e\x5b\x51\x7c\x94\x8b\x8f\xb2\x87\xd9\xd8\x0d\xb7\x90\x8e\x5f\xb1\xad\xc5\x65\x09\xb4\xab\xd8\x54\x36\x54\xfe\xd9\xae\xe2\x5d\x2e\x3e\xca\x1e\x65\x53\x91\xbf\xfd\x67\x91\xb7\x14\x37\x70\xcd\xbe\x2a\xc5\x1b\x88\xfe\xad\xde\x85\x62\x43\x37\x46\xff\x59\x31\xdb\x59\x10\x43\x1a\xbc\x5a\xfd\x8a\xcc\x99\xfc\xb1\x5a\x31\xe6\x50\x4d\x5f\xce\x6a\xc5\x9c\x43\x65\xf5\xab\xb7\xc5\xbd\xb0\xbc\xc9\xd5\x5b\x50\x19\x17\xfa\xf2\x57\xaf\xc8\x66\x54\xe1\x73\xd5\x34\xa2\x93\xa3\x7c\x37\x9b\x6f\x8a\x29\x14\x1a\x66\x6d\xda\xb0\x39\x9a\xa9\x9c\xac\x59\x31\xf2\x25\x90\x01\x22\x7e\xcd\x5a\x34\x07\x6e\xdc\xb8\x66\x2d\x36\xcc\x48\x1f\xbf\xa6\xc5\x9a\x1b\x6c\x37\xff\xe9\xb3\xd1\x0c\x2d\x57\x8f\xd3\x8a\xcd\x21\xc9\xb9\xa8\x66\xdc\x50\xe3\xc7\xaf\xdb\x82\xae\x1b\xa1\xfc\xb7\x9f\x3c\x7e\xdd\x16\x76\x27\xb4\x37\x5a\xdd\x35\x3d\x1e\xd5\xce\x7c\xa3\xf8\x75\x9b\xdd\x79\x4f\x48\x4a\x18\xbf\x6e\xb3\xbb\xbb\x3b\x54\x6a\xdf\xbd\x21\x78\x59\x7f\xe3\x47\xed\xbb\x2d\xea\xca\xaa\x53\x55\xed\xdf\x71\xfc\x7b\x7b\x87\x0f\xf6\x60\x36\xb6\xf7\x72\xd8\x20\x96\xdb\x9c\x57\x7d\x58\xb9\x61\xff\xc4\x35\x87\xcf\xf0\x38\x83\x49\xcb\xac\xdb\x46\x23\x3d\x6b\xfc\x86\x55\x1b\xcc\xd9\x9e\xb4\x6a\x78\x97\x8e\xff\xd3\x4f\xe1\xf0\xc1\x1e\x2e\x18\xf3\xd1\x18\xda\x1f\x2f\x66\xf8\xc1\x1f\x9a\x7f\xa3\x45\xe5\x93\x33\x6c\x13\x12\xf0\xe7\x03\x14\xb6\xc9\xec\xdf\xa4\x0e\x8b\x5f\x68\xf2\x0d\x13\x53\xc7\x2f\xb4\x6e\x20\x19\x26\x06\x0a\x1b\x15\x8c\x91\x7c\x57\xc3\x36\x85\x8f\x19\x6d\x0a\xdb\x44\x3e\x86\x6c\x1f\x10\xd6\xdf\x3d\x86\xad\x7e\xf8\xe4\x6d\x74\x76\x64\x8a\x5f\xf8\xe4\x99\x7a\x21\x5b\x64\xf5\x83\x6d\x09\xbc\x25\xd3\xea\x6f\xf4\xd2\x69\xf7\xb4\xf6\x1b\xbd\x74\x6a\x3f\xbd\x25\xd3\x1d\x3d\x31\xec\xb4\xf6\x1b\xbd\xd8\xb5\x4e\x6b\x3f\x4d\x45\xc8\x15\xa7\xe6\x9f\x67\x97\x0a\x8a\xac\xfd\x46\x2f\xda\x6b\x5a\xfb\x79\x86\xf2\x14\x59\xfb\xa9\xf3\xd9\xd3\xfb\x90\x6d\xf4\xd2\x31\xfe\xf4\xae\x31\xcd\x89\xb5\x08\xf1\x9b\xb6\x71\xea\x16\xf4\x64\x97\x0f\x19\xf3\x97\xba\x4f\xfb\x65\x23\xc9\x9b\xc0\x36\x41\xf1\xbb\x6c\xe4\x46\xef\x3e\x3d\x97\x8d\xbc\x1c\x06\x70\xc9\xcb\xfb\xe1\x52\x9b\xf3\x75\xb8\x6c\x12\x93\x92\x7a\xb3\xc8\x26\x31\x27\x89\x3c\xe4\xf1\xbb\x6c\xd2\xa5\x44\xa7\xb2\x97\xf5\xdf\xe8\xe7\x55\xba\x7c\xea\x36\x7a\xf7\xe9\xbf\x6c\x12\xb3\x8f\xc8\x2d\x1e\xbf\xdb\x16\xdd\xb6\x88\xa3\x6e\x5b\x74\x72\x6b\x7b\x94\x0f\x1d\xba\x8c\xdd\x96\xe2\x77\xdb\xa2\x8d\x7e\x5e\xf2\xdb\xdb\x46\x02\xbb\xfe\xd3\x16\xb7\xad\x44\x96\x45\xf6\x7d\xb8\xbd\x97\xb7\x69\x25\xa9\xff\x6d\x2b\xd1\x60\xdd\x8e\xea\xf6\x2e\xdd\x67\x9e\x3f\x66\xbc\x6d\x26\x7a\xcb\x45\x75\xf1\x7b\xac\x2e\x22\x29\xf9\xa9\x7f\xbc\x01\x0f\x93\xf3\x1d\xa2\x3c\x56\x77\xc3\x2d\xe4\xe3\xf7\x58\x5d\x66\x01\xb5\xec\xb7\xfe\xb1\xba\x8f\xbd\x17\xe6\x78\xac\xed\x83\x73\xef\x1c\xe5\x6d\xda\x70\x73\xd6\xf8\x3d\x36\x60\x63\x24\x5f\x92\xc7\x06\xa0\xa5\x58\xe2\x10\xbf\xc7\xfa\x93\x34\x3b\x39\x50\x7a\xbc\x4d\x68\xa9\x9f\x23\x99\xc7\xdb\x44\xd2\xec\xe4\x00\xf1\xf5\xed\xda\x18\xc9\x61\xde\xeb\x9d\x23\xc3\x5d\xf2\x8f\xaf\xb7\xe9\x65\xea\xad\xf5\x7a\x6d\xf7\x6b\xbb\x31\xe2\x6b\xbb\x5f\x3b\x6d\x0c\xf6\xda\xec\x97\x66\xdb\x1b\xbf\x36\x9b\xcc\x78\xc9\xda\xbf\x36\xfb\xb5\xd9\x18\xff\xb5\xd9\x1b\xf9\x97\x68\xd0\xeb\xd3\xb9\x91\xf1\x29\xc5\xef\xd5\x12\xa4\xe4\x4e\x7e\x67\x5e\x2d\xf1\x32\x48\x3d\x0d\xd2\x12\x2f\x96\xd0\xd0\x9f\xcd\x26\xff\x76\xf2\x5c\x9f\xcd\xfe\x18\xa4\x7a\x87\x3e\x6f\xf7\xc7\xf2\x0c\x87\x2f\x9f\x96\x20\xbf\xf6\x19\x9c\x7f\x5a\x62\x23\xff\xfc\xfe\x7d\x5a\x62\xc3\x5d\xda\xe2\xf7\xd9\x46\x12\xe0\x45\xf6\x49\xfc\xac\x3e\xea\x6a\x84\xaf\xd2\x67\xfd\x3f\x06\x2b\x7e\xd3\x3f\x6f\xdb\xc7\xc8\xc4\x97\x64\x59\xff\xc5\x8a\x00\x5f\xf1\x65\xfd\x17\x32\xdf\xa1\xdb\xf2\x09\x5e\xca\x7c\x4e\xbf\x6c\xd2\x46\xae\xb5\xff\xa1\x77\x5e\xb6\x78\xa1\x3d\x7c\xcf\x96\x2d\xde\x18\xdd\x11\xe6\xb2\xc5\xcb\xb8\x86\xdf\xd1\xe5\x9d\x5e\x0c\xc2\xfd\x36\x2d\xad\xb0\x1c\xb1\x59\x49\xef\xf4\xc6\xe8\x3f\xee\xe1\xf2\x4e\x6f\x8c\xee\x83\xb4\x34\xd5\x62\x39\x85\x1f\xb0\xa5\xa5\x96\x96\xf2\x5c\xde\xe9\xc5\xa4\x74\x1e\xca\xa4\x0e\x03\xa3\x73\x77\x92\x3a\x0c\x8c\xce\x50\x20\xa9\xc3\x40\x66\x53\x8e\x48\xca\x30\x90\xdc\x48\x27\x92\xa2\x0b\x64\x52\x5f\x47\x52\x74\x25\x45\x17\xb7\x35\x29\xba\xc0\xfe\x00\x7b\xcd\xb0\x4c\x5b\x0c\x8a\xa6\x45\xd3\xcf\x84\x67\xbb\x2c\x23\x7a\x53\xbd\xe6\x63\x91\x6b\x3a\xf9\xf8\x25\x65\x17\xd8\x65\x9c\x4e\x45\x95\x4e\xbe\x05\xec\x91\x94\x54\x60\x97\x71\x3e\x35\x15\x08\x9c\x10\x91\xd4\x54\x20\x4f\xbe\x61\x49\x4d\x05\x52\x63\x23\xe4\x48\x8a\xaa\x64\x06\xbe\xe9\x05\x6c\xc3\x46\x30\x05\x34\x52\xb2\x09\x49\x69\x5d\x3d\xdb\x6d\xd9\xcd\x61\x9e\xec\xb5\xe8\xa5\xc8\x9a\xd9\x2a\x44\x15\xb3\x5f\x23\x29\xaa\x80\x3b\x32\x45\x52\x40\x01\xb3\xae\x47\xca\x36\x9d\x14\x7b\x0e\x43\x53\xf6\xee\x65\xd6\x50\xf0\xea\x26\x65\x16\xc8\xd3\x87\x43\x95\x95\x4c\xb1\x47\x87\x91\xb2\x0d\xdf\x08\xa2\x60\x91\x54\x54\x20\x13\xf9\x89\xa4\xa0\x02\x49\x6f\x7e\xa4\x6c\x23\x37\x32\x7b\x9d\x47\x52\x63\x81\xc8\x3f\x6b\x61\xbb\xb3\xed\xe6\xd9\x50\x61\x25\x97\xcc\xf0\xc9\x4a\x0a\xac\xe4\x92\x19\xbe\xfa\xa9\xd8\xc8\x72\xf6\xd0\xc1\x16\x8a\xa9\xe4\x4e\x54\x53\xfb\xab\x93\x40\x6a\x44\x76\x23\x29\x94\x40\x61\xe3\xe0\x48\xc5\x16\xb0\xf8\x25\x8a\x57\xb0\x6a\x2c\x6b\x09\x74\x74\x52\x27\x81\x42\x2a\xe0\x48\xd5\x7a\x98\x04\x2f\x5b\x5d\x85\x12\x88\xa0\x63\x49\xd5\xaa\x6d\x4c\x26\x1d\x44\x52\x3b\x25\x13\xde\x31\x04\x4c\x6a\x27\x10\x81\x28\x4f\x6a\x27\xb0\xdb\xe9\xc9\xac\x6c\xb5\xb2\x9e\x4c\x6b\x9b\xde\x8e\x61\x61\xaa\x5a\xbb\xb2\x51\x6d\xe7\x6e\x56\x9b\x54\x6d\x12\x0d\xaf\x36\xa9\xda\x24\x5a\xa9\x10\x4b\x2e\x5c\xa1\xf7\x4c\xcd\x1b\xd0\x88\x24\x25\x8b\x7c\xf0\x4c\x6f\xc7\xa8\x33\xa9\xcd\x92\x0b\x57\xf8\xce\xa7\xa6\x29\x1a\x0b\x19\x06\xb5\x57\xae\x25\x33\xde\x75\x8f\xf2\xc1\x73\xe1\x0a\x63\xd3\xa4\x80\x03\x29\x72\xf3\x30\xef\x1b\xcb\x54\x82\xcd\x58\x22\xa9\xd7\xc0\x6c\xbe\x12\xca\x35\x30\x9b\xaf\x97\xca\x0c\xcc\xe6\x5b\xde\x6d\x52\x67\x75\x83\x0f\xbb\x62\x0d\xcc\xe6\xc7\x51\x31\x06\x66\xf3\x91\x55\x77\x25\xf3\xe2\xf9\xde\x77\xeb\xdf\x59\x20\x3d\x3d\xca\xfa\xb3\x4a\x25\x7c\x14\x15\x62\x60\x36\xdf\xf1\x6e\x8b\xc8\x8b\xd7\x7c\xfc\xbb\x0d\xea\xac\xbb\x99\x56\xd5\xdb\xd6\x5d\x8b\xea\xb7\xac\xdb\x22\xc3\x7d\x8c\xd0\x92\x02\x0e\xcc\xe6\x7b\xaf\x80\x03\x85\xe4\x85\x91\x14\x70\xa0\x90\xf5\x30\xd2\xb0\x91\xc3\x46\x72\x2e\x35\x1d\x28\xac\x76\x8f\x34\x6c\xf7\xe0\xbe\x0d\xff\x68\x23\xc9\x81\xd7\xfc\x3a\x28\xe9\xc0\x6c\xb6\x5b\x49\x07\xca\xf0\x4d\x55\xd1\x25\xb7\x78\xd2\x86\xc3\xbb\x36\xfc\xb0\x37\x2f\x69\x8b\x06\x4e\xe3\xf4\xdf\xbb\x6f\x46\x52\xdd\x01\x43\x50\x91\x14\x77\xa0\x66\x06\x70\x29\x6c\x5d\xe8\x66\xb6\x9b\x52\xf0\x81\x6d\x64\x8f\xb3\x7d\xe1\x54\x04\x3f\xde\xea\x3b\xb0\xcb\xb0\x56\xd8\xc2\x60\x4e\x3f\x83\xb8\xa4\xe6\x4b\x71\xb2\xe8\x62\x7a\x45\x1f\xa8\xac\x0b\x8e\xa4\xe8\x4b\xee\x00\x95\xbc\xb5\xa1\x25\xe2\xb8\x1b\x3c\xce\x47\x20\x8e\xbb\xc1\x4b\x68\x9d\xd0\x3a\x54\x44\xdd\x97\x4e\x3c\x8f\x81\x41\x52\xf8\x25\xb7\x71\x1a\xde\xde\x69\x23\xe6\xf1\x09\x70\x59\xa5\x1f\xa8\xcd\x07\x43\xe9\x97\xcc\x90\x37\x7c\x6f\xd4\x7e\xa0\x36\xbf\x47\x6a\xbf\x44\x32\x3c\x96\x93\x46\x9a\x3e\x9e\x6e\x60\x3c\x7c\x71\x54\x7a\xc9\xc5\x2b\xc3\x77\xf5\xf2\x7e\x99\x34\x0f\x01\x9d\x54\x7a\xc9\x6d\x98\x86\x5d\x9a\x52\x2f\xb9\x52\x65\xf8\xa2\xa8\xf5\xc0\x7e\x60\xfc\xaf\x37\x8c\x95\x2a\xa9\xf8\x0a\x2b\x00\x41\x4a\xc5\x2f\xf4\x65\x5b\x2f\x1d\x85\xd6\xc4\xb6\x92\xee\x7c\x9e\x7f\xda\x54\x34\xe1\x38\xdf\x20\x45\x61\x72\x1f\xa6\xe2\xbd\xbe\xbc\x61\xd7\xf1\xa6\x60\x4d\x65\x21\xd8\x65\x5c\xe2\xb6\xb1\x44\xf1\x52\xf1\x01\x50\x18\xa6\x13\xc5\xb3\x67\x50\x19\x82\x5d\x63\x6c\x7c\x6b\x01\xf6\x26\x9e\xe7\x30\x9f\xd8\xdb\xe9\xb7\x3e\xd9\xca\xc5\x64\xc2\xf3\xe2\x43\xa1\x5e\x4c\x47\x2f\xfa\x50\xa8\x17\xd3\x7d\x8c\xe2\xf9\xb4\xc0\xad\xab\xd4\x97\x47\xc1\x08\xda\x19\xd1\xdc\x5a\xe0\x76\xba\x29\x82\x3d\x29\x22\xc1\x2e\xc3\x02\x8a\x48\xd0\x4e\x6f\x7f\x6b\x94\x8d\x76\x06\x2b\xb7\x0f\x05\x29\xd0\xcf\x90\xe6\xd1\x4c\x1b\xed\x8c\x09\x1e\xad\xf4\xe8\x4d\xb5\x87\x50\x90\x82\x76\x46\x51\x0a\x52\xd0\xce\x00\xe6\xd1\x48\x8f\x91\x92\xf0\x02\x1a\xe9\x71\x82\x8e\x0f\xac\x2a\x15\xb4\x33\x9a\x53\xa4\x82\x7d\x18\xb7\x4b\x95\x9a\xce\xde\x4e\x8e\x1d\x94\xa9\xa0\x9d\x81\x9a\x32\x15\xec\xbf\x5a\xa6\x8d\x9e\x63\x23\x0c\xa2\x50\x05\xad\x6a\x5e\x55\x29\x68\xd5\x66\xa9\x4a\x41\xca\xc4\xdf\x23\x29\x4b\xd3\xeb\xbc\x4b\x64\x7b\x52\x84\x82\x94\x9b\x63\x2e\x25\x27\xd8\x65\x5c\x55\xcd\x09\x1a\x49\x21\x23\xa9\x39\x41\xca\x47\x2b\x28\x3a\x41\xeb\xb6\x41\xd1\x09\xf6\x61\x98\x44\x89\x09\x52\xf9\xf9\x41\x54\x63\x82\xfd\xca\xd9\x0a\x1b\xf6\x9a\xcd\x88\x8a\xa8\x3b\x13\xcb\x47\x4a\x73\xa8\xf1\x79\x5b\x49\xf7\x10\xf6\xa5\x0a\xcf\x64\x54\x10\xbd\x9d\x14\x9e\x60\x3f\x10\x3c\x24\x2a\x4f\x90\x98\x6b\x14\x49\xe5\x09\x22\x50\x81\xe9\xd3\x20\x6c\x76\xac\x37\x22\x7d\xda\x63\xa3\x1d\x0d\xa0\x3e\x4d\x6e\x76\xac\x67\x2f\x7d\xda\xc3\x28\xa1\xc3\x3a\x25\x2b\xc8\xd5\x01\x89\x8a\x35\xa9\x58\xfd\x66\x7c\x5a\xe3\x43\x87\x29\xa7\x14\xb1\x20\x99\x8c\x20\x92\xfa\x34\xad\xf3\xda\x73\x36\x05\x6a\x72\xe9\x88\x43\x3d\x15\x28\xc8\xbf\x73\x94\xcd\x44\x6e\xb6\xe1\xc7\x66\xd9\xce\xc5\x6a\x57\x34\x71\x52\x5b\x82\x7a\x6e\x8a\xda\x12\xd4\xe9\x2b\xaf\xb6\x04\xe9\xe7\x28\x4e\x21\x99\x4c\xf2\xe0\x03\xb3\x6c\xc0\xd2\x79\xb2\xff\x98\xd5\x96\x20\x93\x0a\x78\x8b\x1b\x8b\xd4\x96\x7f\xf0\x7e\x67\xa5\x27\xc8\x93\x7b\x9d\x0d\xf7\x81\xd0\xd5\x9b\x55\x9e\xa0\xb0\xd6\x76\x6b\x37\x8b\xbc\xaf\x99\xa2\xb0\xc8\xaf\x7c\xa3\x68\x5a\xe4\xbb\x1a\x14\x5d\x16\x5d\xbc\x70\xfe\xf1\xb6\xc8\xe9\x75\x68\x9c\xac\xf0\xcc\x46\x00\x8b\xb5\x78\x2d\x62\x21\x38\x23\x96\x6c\xb8\x2f\x9b\xcb\x01\x4b\x65\xc3\x7d\x20\x0c\x32\x64\xc5\x29\x28\x4c\xfa\x88\xac\x36\x05\x35\x73\x57\xb3\xd2\x14\xec\x3e\x1f\x5b\xa8\x4d\xc1\xee\x08\x2d\xb3\x99\xc9\x10\x26\xdf\xf7\xac\xec\x04\x5b\xae\x7b\x3e\x5b\x45\x1a\xc1\x9f\xb7\xcc\xf8\x1e\x28\x65\x78\x94\x8d\xda\x98\x4c\x7b\x8e\xac\x12\x05\x95\x5c\x3f\x91\x55\xa2\x20\x91\xce\x24\xb2\xe1\x3d\xd0\xed\xa2\xb3\xe2\x14\x8c\x74\x8e\xb2\xe9\xa4\x65\x30\x06\x96\x95\x9d\x60\x74\x6f\x93\xb1\x3d\x90\xfa\xb4\x99\x06\xf7\x40\x26\x87\x74\x64\xa5\x68\x36\x8d\xbb\x63\xc6\xac\x16\xcd\xe8\xce\x7a\x8a\x6c\x65\xf6\x2d\xf5\x64\xb6\xd2\x1d\xae\xd8\xf5\x2a\xb2\xc2\x13\x8c\xce\xbb\x90\x55\x99\xc0\x1c\xd5\x91\x0d\xe2\x01\xf7\xa3\x88\xac\xee\x04\xe6\xd3\x8e\x6c\x10\x0f\xe4\xc9\xb7\x22\x1b\xc4\x03\x79\xf2\x5e\x65\xc5\x29\xc8\x93\xb7\x3b\x17\x5b\x49\xae\x06\xc3\x07\x59\xb9\x9a\xcd\xd5\xe0\x93\xa7\x5c\x05\x91\x4f\x55\x6d\xa4\x72\xb5\x5a\xe4\x7d\x63\xc3\xab\xa1\x2e\xc9\xc6\xf5\xb2\x53\x5d\x19\x47\xe6\xea\x8d\xdb\x98\xcd\x46\xaa\x6a\xc1\x64\xca\x69\x64\x15\x6c\x3e\x0a\x96\x46\x56\x1b\xb9\x31\x99\x4b\x17\x59\x05\x0b\x4a\xf8\x10\x54\xab\x5f\xd1\x38\xd6\x55\xb5\x0a\x4e\xcc\x3d\xab\x43\x41\xfa\x8d\x73\x98\x75\xad\x0e\x18\x51\x34\x59\x25\x0a\x76\x19\xd6\x50\x8a\x82\x5d\xc6\xf9\xd4\xa2\x60\x97\x51\x13\xc5\x28\xd8\x65\xd8\x5b\x35\x9a\x4f\xf0\xb0\x7b\x3e\xdb\xd5\xce\xe0\x88\xba\x18\x3d\xcc\xcd\xe1\x21\x46\x32\x7a\x98\xcf\x76\x57\xd3\xd3\xd9\xb2\xb3\xdd\xd5\xb4\xca\xde\x99\xb3\xdd\xd5\xb4\x2a\x36\xb7\x7d\x76\xe9\x96\xd9\xdc\xb3\x0a\x03\x27\x53\x56\x92\x82\xfd\x25\xc2\xc6\x6a\xd2\xdc\x8f\xcb\x81\xba\x18\x20\xcc\x2e\xb9\x68\x7e\x37\x15\xaa\x60\x97\x71\x17\x55\xaa\x60\xff\xd7\x32\x1f\xcc\xce\xbe\x20\xe1\xe9\x6c\x6d\x3f\xc3\x01\x4f\x67\xd3\x4c\xef\x77\xbe\xb0\xc6\x11\x41\x2a\x46\x4b\xb3\x6a\x15\xa4\x42\xe2\xf5\xc8\xaa\x55\x90\x98\xd4\x1f\x59\xb5\x9a\x5d\x87\xc1\x68\x28\x2b\x4d\x41\xd3\x09\x96\x95\xa6\x20\xb1\x42\x20\xb2\x3a\x14\x98\x3e\x3d\xb2\xe1\x46\x10\x51\x2d\xb2\x51\x43\xff\x01\x8e\x8d\xac\x36\x05\x6d\xfa\x01\x54\x9b\x82\x9e\xbc\xfb\x6a\x53\x90\x8e\xff\x2c\x0f\x6f\xf5\x70\xde\xfb\x39\x4e\x7b\xb0\xdc\xa2\x1a\x2b\xcb\x8a\x58\xd0\x59\xd0\x13\xd9\x40\x25\xe8\xac\xdd\x89\x6c\xa0\x12\x24\xf6\xa5\x89\xac\xd2\x05\x9d\x55\x34\x91\x95\xb2\xa0\x27\x1b\xa0\x6e\xcd\xc1\x6c\x01\x3f\xd7\x06\x25\x41\xd7\x25\x95\x55\xa8\x20\xb9\x9f\x58\x64\xa5\x27\xe8\xa7\xc7\x51\x7a\x02\x97\x56\x46\x56\x65\x02\x96\x07\xfe\x77\x77\x1d\x36\x65\xa3\xeb\x64\xca\xca\x52\xd0\xf5\x6b\x65\x83\x96\xf9\x04\x2d\xb9\xd4\xf4\x5e\x6f\x74\x1d\x43\xd9\x38\x26\x70\x45\x64\x64\xf5\x2c\xe8\xfa\x1c\xf2\xf4\xf6\x4f\xe6\xc5\xf8\x28\xa9\x5c\x41\x57\xa5\x66\x95\x2b\x48\xdd\x4f\xbe\xc2\x15\x74\x65\x65\x56\xb8\x82\xae\x0a\xce\x46\x28\x41\xea\xf6\x32\x6a\x59\xd0\xcf\x17\x47\x29\x0b\x92\x31\xe4\xac\x92\x05\x5d\x71\x9b\x0d\x63\x82\x3e\x7c\x52\x15\xb7\xa0\x0f\xbb\x79\xb5\x6d\x36\xfb\xbb\x26\xbc\x6c\xe3\x46\x1f\x8c\x51\xb3\x6a\x37\x1b\xd9\xd4\x84\x8a\x5d\x90\xda\xb0\xfb\x50\xec\x82\x7e\xbe\x98\x6a\x5d\xd0\x87\x5f\x2e\xb5\x2e\xe8\xc3\x0f\xb7\x5a\x17\xa4\x9a\x7d\x90\xd4\xba\xa0\xeb\x38\xc8\x4a\x5d\x90\xba\x0f\xa5\x31\x51\x90\xd8\x9e\x2b\xb2\xe2\x17\xf4\xf3\x9d\x35\x26\x9a\x8d\x89\xfa\x54\x28\x87\x41\xea\x3e\x02\xaa\xe1\x6c\x98\xd4\xf7\x47\xe1\x0b\x52\xf7\x0b\xa3\xf0\x05\xfd\x7c\xee\xd5\xbd\xf9\x84\x49\x31\xa2\xb2\x17\xf4\xe1\xe7\x4a\xd5\x0b\x52\xf7\x2d\x30\x48\x0a\x52\xb7\xd9\xea\x60\x90\xba\xef\xba\x32\x18\xf4\xd3\x39\x29\x83\x41\xae\x36\x5b\x15\x0c\xfa\xe9\x72\x14\xc1\x20\x39\xa1\x2d\x2b\x82\x41\xea\x3e\xd3\x2a\x5e\xd0\x75\x96\x64\xd5\x2d\xe8\x03\x6d\x9f\x55\xb7\xa0\x8f\xec\x1f\xb5\x04\xea\x76\x84\x5d\x90\xda\x13\xec\x2f\x1f\x37\x5c\x51\x99\xcf\x7a\x1c\x0d\xab\xaa\xcc\x26\xa5\xcf\x7e\x4d\x54\x95\x20\xb3\x82\x2a\xf2\x6b\x45\x98\x2c\x7a\x46\x7a\xaf\x15\xd9\xc8\x3f\x07\xe4\x86\x44\x41\x66\x75\x57\x64\xd5\x68\x36\x24\x7a\x8e\xf2\x96\xb0\xb3\xb0\x4e\xac\xac\x3e\x05\xf9\xf4\x0c\xca\x53\xb0\x1b\xc0\x2d\x57\x9f\x66\x63\xa2\xf6\x03\x6a\xd1\x6c\x00\xd4\x2e\xca\x00\x28\xc8\xac\x13\x8b\xac\x12\xcd\x46\x3b\x71\xc3\x65\x85\x28\xc8\xce\xd6\xca\x0a\xd1\x6c\x00\xd4\xb7\xde\x00\x28\x18\x67\xf0\xad\x34\x05\xfb\x8b\x8f\x79\xd4\xa6\x20\xff\xec\x9f\xd5\xa6\xc0\x2d\xa1\x23\x2b\x4d\xb3\x41\x51\xc7\x7e\x4a\x53\x90\x55\x93\x59\x69\x0a\xb2\xb3\x55\xb2\xd2\x14\x0c\x67\x1e\x65\x65\x28\x18\xc9\x01\xee\xa7\x29\x36\xdc\x82\x3e\xb2\xca\x14\xb8\xc7\x7d\x64\x95\x29\x18\xc9\x67\x51\x65\x0a\x52\xaf\x7e\x01\x95\xa6\x20\x2b\xe7\xb3\xf1\x55\x30\x92\xaa\xc6\xf8\x2a\xc8\xa7\x63\x56\xbf\x02\xb7\x63\x8f\xac\x7c\x05\x23\xf9\x92\x28\x5f\xc1\xd0\xb9\x99\x0d\xa0\x82\x41\x7a\xef\xc8\x2a\x5a\x30\x92\x5a\x52\x41\x0b\x52\x9b\x3e\xeb\x06\x50\xc1\x70\xaa\x60\x56\xe4\x02\xf7\xb8\x8e\xac\xc8\x05\xee\xb0\x1e\x59\x91\x9b\xcd\x8c\xaf\x73\x23\x1b\x41\x05\xc9\x85\x81\x91\x55\xbe\x60\x24\xbb\x6a\x95\x2f\x48\xa3\x8c\x5d\xb7\xa2\xf4\x05\x43\x67\x6f\x51\xfa\x82\x6c\x27\x5f\xd4\xb6\x20\x2b\x21\x8b\x61\x55\x90\x9d\x1a\x54\x94\xbb\xc5\x94\x87\x7c\xd5\x8b\x72\x17\xe4\x5f\xfe\x43\xbf\x5c\x8c\xc3\x16\x33\x22\x56\xcf\x3b\x2c\x62\xf2\x01\xaf\x68\x51\x20\x83\xd1\x8b\xd5\x9e\x16\x91\x11\xb1\xd8\xb8\xdb\xa2\x5b\xff\xa1\x65\x8f\x65\x3c\x5e\xcd\x7f\xbe\x16\x31\x37\x86\x97\xa3\xa8\x56\x8b\xb3\x53\xf9\x76\x14\x23\xa9\xc5\xd9\xa9\x1a\x4f\xfd\x5a\x8e\x7e\x65\x2c\x5c\x8c\xa4\x82\xc1\x1a\xc5\x28\x4a\xda\x72\x22\xa9\xe7\xaf\x56\x2d\x11\x1a\xe7\x25\x2a\x4a\x5a\x30\xba\x16\x55\xd2\x96\x33\x65\x35\x3c\xdb\x67\x19\x53\x1e\x79\xca\x8b\x02\x16\x0c\xf6\x5c\x8d\xa2\x5a\x05\xa3\x67\x8b\xbc\x3d\x1b\x83\x6d\x58\xa3\x28\x60\x8b\x02\x96\x0f\x73\x51\xc0\x82\xd1\xb3\xa7\xb7\xe5\x1b\xc3\x49\x4d\x45\x49\x5b\x94\xb4\xc3\xd3\xdb\xf0\x4c\xc3\xbd\x4b\x2a\x5a\x30\xba\x0f\x84\xc1\xd5\xa2\xc8\xed\x16\xd9\xee\x4c\xbb\xbd\xe3\x8a\x5c\x30\x7a\xf2\xf4\xcb\x22\x34\x2e\x2f\x4c\x71\xa6\x2a\xc8\xa4\xe6\x8a\xa2\xec\x05\x99\x3c\x5c\x51\x94\xbd\x60\xf4\xe4\x51\x5a\xa2\x30\x15\xa2\x7b\x2e\x2d\x81\xec\x25\xc5\x70\x14\x65\x2f\xc8\x64\x11\x8b\xa2\xec\x05\xa3\xfb\x6a\x28\x7b\x41\x66\x9f\xa4\x28\xca\x5e\x90\xc9\x0f\x16\x45\xd9\x0b\x86\x61\x9b\xe2\x0c\x57\x10\xa1\x55\x55\xc2\x60\x74\x5f\x33\x63\xb9\x20\x35\x87\x75\x45\x25\x0c\x46\x67\x28\x56\x54\xc2\x20\x93\x04\x2d\x4a\xd5\x3a\x15\x0f\x16\x52\xb0\x28\x8e\xc1\xe8\x7c\xf2\x8b\x11\x5f\x90\xc9\x35\x16\x45\xbd\x0c\x46\x4f\x16\x69\x9d\xca\x73\xe2\x57\x42\xbd\x0c\x06\x6b\xbe\xa2\x18\xf1\x05\xc3\x69\x67\x45\x09\x0d\x32\xbb\x73\x45\x31\x06\x0c\x32\xfb\x7a\x45\x51\x55\x83\xe1\x1c\xb3\x62\x0c\x18\x0c\xa7\xc5\x17\x63\xc0\x60\x74\x5f\x70\xb5\x37\x18\x3d\x7b\x45\x8d\x53\x99\x64\xc3\xd8\xac\xa8\xbc\x41\x66\xc3\xab\x28\x0a\x6f\x30\x7a\xf6\x28\x8d\xd3\x78\x74\xf8\x86\x16\x65\x37\x18\x4e\x3a\x2b\xaa\x6e\x90\xd9\xae\x2b\x8a\x01\x5f\x30\x7a\xf6\x8f\x1a\xa7\x39\xa9\xcd\x27\x4c\xf1\x0b\xf6\x38\x95\xe3\x14\xbf\xc5\xd9\xb1\xe1\x7d\x53\xd4\x82\xd4\xc8\x88\x12\x45\xc9\x09\xf6\x28\x88\xe3\x0c\x74\x82\xd0\xef\x56\x14\x98\x45\x81\xe9\xbb\xab\xc0\x04\x26\x74\x8a\xa2\xc0\x04\xa1\xd3\xad\xa8\x2f\x41\x9e\xde\x00\xf5\x25\xc8\xd3\x6f\x8a\x5a\x12\x98\x94\x3c\x8a\x52\xb2\x0c\xa6\xd9\xfb\x10\x2b\x1b\x81\x2b\xb4\xa2\x28\x1b\xc1\x99\xe6\x5c\x94\x8d\xe0\x4c\x86\x29\xe1\x3d\x09\xdc\x8d\x7e\xb2\x94\x8d\x20\xb2\xb7\x5c\xd9\x08\x52\x25\x87\x4c\x14\xa3\x9d\x20\x4f\x5b\xa4\x94\x04\x67\x12\x4d\x31\xd6\x09\xce\x44\xc3\x62\xac\x13\xe4\xe9\xb7\x54\xbd\x09\xf2\x3c\x47\xd9\xc8\x60\xd6\x8b\x9f\x1e\x23\x9d\x20\xb2\xfd\x83\x12\x14\x98\x5a\x3f\x8a\x1a\x13\xe4\x79\xaa\x6f\xbb\xd9\xba\x59\x0f\x48\x51\x63\x02\xf7\x57\x89\xa2\xc6\x04\xa9\x1a\xab\x2b\x8a\x4c\x90\xa7\xef\xa0\x22\x13\xe4\xe9\xf3\xa9\xc8\x04\xe6\xfe\x8a\x62\x18\x15\x84\xf3\xfe\x8b\xf3\x67\x41\x9e\xe5\xbf\x57\x4d\x47\x31\xee\x0a\xce\xac\xb7\xa2\x78\x05\x79\xda\x9f\x28\x5e\x81\xd9\xc8\xa2\x28\x5e\x41\x84\x3d\x98\xe2\x15\x9c\x25\x11\xc5\x19\xb7\x20\x55\x87\x9e\x45\x41\x0b\xce\xa2\x8b\xa2\xa0\x2d\xae\xad\xd4\xec\xaa\x57\x90\xa7\x0f\x92\x52\x15\xe4\xe9\x57\x5a\xa9\x0a\xc2\x50\x7a\x51\xaa\x02\xf3\xc0\x47\x51\xaa\x82\xc8\x7e\xd3\x94\xaa\xe0\x4c\xd0\x2a\x2a\x55\x90\x67\xf3\x28\x4d\x41\x06\x7c\x43\x33\x45\xa5\x0a\x4c\x4e\x15\x45\xa5\x0a\xce\xa2\x8c\xa2\x50\x05\x79\x9e\x2b\x6a\x0a\x53\xe7\x93\xc2\x28\x8a\xb2\x14\x9c\xe9\x5f\x45\x59\x0a\xc2\xb9\x69\x45\x59\x0a\x22\xfb\x34\xab\x08\x41\x1a\x3f\xbf\x57\x2a\x3b\x90\xa7\x6f\xa3\xca\xae\xa8\xec\x74\x4d\x15\xe3\x9b\x20\xc2\xef\xb4\x6a\x0f\x44\x38\x76\x32\xbe\x09\x4a\x71\xec\xa4\x00\x04\x11\xa7\x48\xf3\x3f\xcc\x2b\xc2\xaf\x53\x14\x80\x20\xc8\x3e\x11\xc5\xe8\x26\x28\xec\x0c\x1d\xc5\xe0\x26\x88\xe8\xfe\x51\xf3\xb3\x74\x91\x9d\xac\xa3\x18\xdb\x04\x11\x0e\x2a\x0c\x6d\x82\x38\x1f\x56\xe5\x25\x28\xe4\x80\x89\xf2\x68\x7e\x16\x38\x86\xc3\x05\x83\x9d\xa0\x14\x9f\x57\x63\x9d\x20\xf5\x33\x5e\x70\x56\x2e\x88\xb0\x8f\x57\xaa\x82\x08\x6f\x92\xaa\x14\x04\xdb\x9d\x45\x51\x82\x82\x7d\x7b\x2d\xd3\x16\x2f\x13\x54\x08\xe1\x16\x35\x28\x88\x20\xf8\x5b\xd4\xa0\x20\xc2\xf1\x88\x1a\xb4\xb8\xd2\x91\xb9\x34\x45\x0d\x0a\x22\x1c\xc8\x28\x41\xc1\x6c\x7e\x1e\x95\xa0\x20\xe2\x5c\xd1\x86\xbf\x34\xfc\xd4\xcb\x86\xbf\x78\xe6\xed\x38\x55\xa5\x20\xc2\xf1\x82\xaa\x14\x14\x97\x47\x14\x55\x29\x28\xc5\xa3\x54\xa5\x20\xc2\x7e\x59\x55\x0a\x22\xbc\xa2\xa2\x14\x44\xf8\xb8\x2a\x4a\x41\x44\xf3\x28\x8d\xf3\x61\x1c\x47\x15\x2a\x50\x10\x81\xd0\x2b\x2a\x50\x10\x6c\xf2\x1a\xc5\xe0\x28\x28\x47\x00\x29\x4a\x41\xb0\xe3\x55\x14\x45\x29\x88\xb0\xa3\x56\x94\x82\xd0\x5b\x51\x14\xa5\x20\x35\xdd\x47\x45\x55\x5a\x8c\x97\xfa\x88\x29\x4a\x41\x29\x4a\x04\x45\x29\x28\xc5\x4b\x2a\x4a\x41\x29\xde\x6e\x45\x29\x28\xc5\x4b\x2a\x4a\x41\xc4\x39\x97\xd6\x59\x3c\x3a\x38\xa3\x8b\xa2\x14\x44\xd8\x48\x45\x29\x88\x70\x10\xe9\xa4\x5e\x50\x8a\x83\x67\x35\x69\x31\xf0\xea\x73\xa2\x26\x05\x11\xe7\xf4\x5a\x67\xf9\xe8\x58\xa4\x75\x16\xd6\xf1\xe3\xad\x24\x05\xa5\xf8\xc6\xab\x48\x8b\x93\x7a\x7d\x4e\x54\xa4\x20\x82\x17\xab\xaa\x3e\x41\x04\x23\x9d\xaa\xd4\x04\xa5\x0c\x8b\xaa\x45\xbe\x31\x16\x35\x8b\x9c\x55\xc3\xcb\x5c\x15\x93\x20\x02\x47\x77\x55\x4c\x82\xc2\xea\xd0\xa8\x2a\x47\x10\x81\x29\xaa\xa1\x55\x50\xd8\x41\x2c\xaa\x62\xb2\xba\xb6\xf2\x9c\xeb\xb1\xc8\x6f\x45\x50\xf4\x5a\x44\xbb\x87\xa7\xff\x2c\x62\xa2\x22\x06\xab\x64\xf8\x13\x11\x1e\x65\xfc\x15\x44\xb4\x3f\x74\xc9\xd5\xf0\x2c\x88\xe0\x73\x59\x0d\xcf\x82\x08\xf4\x6e\x4d\x1a\x2f\xf9\xcc\x50\x47\x23\xb6\x20\x35\xef\x7d\x55\xf0\x82\xd4\x9d\x39\x5d\x95\xb7\x20\xb5\x69\xcd\xd5\xad\x20\x9c\xe9\x5e\xd5\xad\x60\xab\x6c\x0c\xaf\x22\x05\xa9\x39\x67\xbc\x1a\x53\x05\xa9\xea\xc6\xa9\x4e\xef\x05\x11\xe7\xaf\xd6\x8e\x55\x94\x31\x7c\x28\x14\xa5\x20\x85\xbe\xf3\xaa\xde\x04\xb3\x55\x0f\xb3\x72\x99\x29\x95\x3e\x01\x8a\x4b\x50\x48\x05\x14\x55\x71\x09\x66\xd3\x48\xae\x97\x04\xa9\xdb\x0f\x57\x05\x27\x98\xa4\x10\x88\xea\x6c\x5e\x30\x49\x53\x14\x55\x0d\x0a\x0a\x79\xb8\xa3\xaa\x41\xc1\x24\xe9\x55\x54\x35\x28\x98\x64\xa5\x8c\xaa\x06\x05\x93\xcd\xd7\xa2\xaa\x41\x41\x21\xa3\x7a\x54\x35\x28\x98\x24\xdb\x8c\xaa\x06\x05\xb3\x59\x55\x35\x28\x28\x24\x72\x8b\xaa\x06\x05\x93\x4d\x45\xa3\xaa\x41\xc1\x64\xb7\xb5\xa8\x6a\x50\x30\xd9\xeb\x3d\xaa\x1a\x14\x14\x72\x8d\x47\x55\x83\x82\x42\x92\xf2\xa8\x06\x68\x41\x6a\x6a\xbd\xaa\x2c\x05\x93\xfc\x0a\x51\x95\xa5\xd5\x00\x2d\x43\xcf\xaa\x06\xad\x06\x68\xf9\x2a\x57\x35\x28\x98\xcd\x67\x45\x0d\x5a\x8d\xd9\x0e\xcf\xa5\x75\x8c\xd9\x56\xcf\xa5\x75\x98\x88\x4c\xae\x9a\xa8\xca\x52\x30\x9b\x9f\x0f\x65\x29\x48\x67\x72\x7b\x55\x97\x82\x42\xae\xf4\xa8\xea\x52\x90\xaa\x6b\x6b\xab\xc2\x14\xcc\xe6\xe3\xa9\x30\x05\x93\xad\x59\xa3\x2a\x4c\xc1\x24\xcb\x55\x54\x85\x29\x98\xec\x37\x1b\x55\x15\x0a\x66\xf3\x2b\xa6\x0a\x05\xd3\x30\x67\x55\x85\x82\xd9\xe8\x54\xaa\x2a\x14\xa4\xe6\xa8\xba\x2a\x43\xc1\x24\x55\x6d\x54\x63\xbf\xd5\xcd\xb7\x0d\xaa\x54\xa5\x29\x98\xac\x71\x8f\xaa\x34\x05\x85\x4d\x0f\xa3\x1a\x21\x06\xbb\xe5\x34\xc0\x19\xcb\x60\xb6\xe2\x61\x1a\xa8\xf1\xfc\xa0\x66\xaa\x41\x63\x50\x48\xe5\x1f\xd5\x98\x31\x48\x9d\x3d\x87\xa3\xba\xe4\x14\xcc\x56\xb4\x86\x06\x72\x5e\x73\xb5\x9d\x3e\x3f\xcd\x17\x8e\x4b\x3a\xd5\x19\x4c\xd2\xe5\x46\x35\xae\x0c\x0a\x09\xf9\xa3\xaa\xac\x41\x3a\x2b\xce\xab\xca\x1a\x14\xb6\x35\x88\x6a\x54\x19\xec\x0e\x02\xa3\x19\x55\x06\xd3\xe9\x32\x55\xfd\x5d\xcf\xfc\x67\x2a\xeb\xfc\xe7\xea\xfc\x67\x44\x74\x35\xce\x0c\x26\xf9\x68\xa3\x3a\x25\x1a\x14\x72\x71\x45\x35\xf2\x0c\x0a\xfb\x0e\x44\x35\xf0\x0c\x0a\x7b\x24\x44\x35\xee\x0c\x0a\x3b\x12\x46\x35\xec\x0c\x26\x69\x92\xa3\xea\x03\xa8\x4e\x92\xf6\xeb\xe9\x24\x69\x30\x9b\x1f\x37\x23\xd1\x60\xdf\x4b\xfe\x69\x28\x1a\xa4\xe6\x24\xf2\xaa\xf7\x00\xcc\x56\x2c\xd2\x3e\xec\x1e\xde\xfc\xc6\xea\x3d\x00\x25\xce\x1f\x35\x8f\x33\xa7\x71\x02\x54\xbd\x07\xa0\xc4\xb9\xa4\xe6\x61\xf7\x70\x52\x1a\x46\x35\x3a\x0d\xa6\xcb\x63\xab\x0e\x05\x30\xd9\xd9\x31\xaa\xde\x03\x30\x9d\x57\x57\xf5\x1e\x80\xd9\xec\x0f\xf4\x1e\x80\x54\x8d\xc0\x55\xa3\xce\x20\x35\xa7\x96\x54\x67\x50\x83\xc2\xee\x13\x51\xf5\x15\x80\xe9\x74\x83\xaa\x63\x00\xec\x07\xc3\x7f\x5a\x0f\xd2\xf2\x3b\x21\xb1\xaa\xe6\xc1\x6c\xfd\x0f\x53\xc2\xaa\x62\x1f\x4c\x67\x30\x56\xc5\x3e\xa8\x6a\xc0\xaa\xd8\xaf\x6e\x2b\x4e\x32\x96\xa8\x8a\xfd\xfa\x6f\x5b\x71\x0c\xa8\xda\x07\xa9\x3a\x59\xb7\x2a\xf7\x41\xfa\x25\xdf\x10\xc5\x3d\x48\xcd\x45\x84\x55\xf9\x5e\x9d\x36\x6d\x88\xa3\xaa\xdf\xeb\xd9\x59\xdc\x11\x8d\x02\x1e\x54\xdd\x45\x55\x01\x0f\xd2\xcf\x70\x7e\x55\xc1\x57\x37\x1b\x4f\x7e\xcc\x94\xf0\xa0\xe6\x73\x55\x8d\x78\xf6\x06\xf0\x2d\x51\xc2\x83\xb3\xae\xbf\x1a\x93\xae\x67\x6f\x00\xfb\x04\x65\x3d\xd8\x95\xb3\x4c\x43\x9d\xcd\x01\xec\x92\xd5\xfa\xd5\x39\xd7\xc9\x3e\x5f\xb1\x0f\x52\xd3\xd3\x56\x55\xfb\xf5\xec\x4a\xee\xa7\x5c\x21\x5f\xcf\x4e\x00\x3e\x59\x2a\x79\xb0\xcf\x47\x95\x95\xf2\xf5\xec\x04\xe0\x78\x49\x2d\x5f\xcf\x4e\x00\x76\x9d\x8a\x79\xb0\xaf\xe1\xf9\xb4\x8a\xe9\x94\x74\x6c\x54\xe3\xce\x20\xb5\x33\x28\x51\xe1\xd7\xb3\x17\x80\x3d\x86\x12\xbf\x9e\xbd\x00\x1c\x26\xaa\xf1\xeb\x7d\xec\xc2\x71\xc6\x9e\xc1\xae\x0b\xe7\x73\x26\x36\xa8\xba\x1f\xaa\xc1\x67\xb0\x0f\xc3\x04\x86\x9a\xc1\x3e\x9d\x65\x9a\xc0\x3c\xff\x7e\xfa\x75\x23\xd4\x93\xe7\xdf\x6e\xc9\xc8\x72\x3d\x3b\xe4\x39\x8e\x32\xb4\x5c\xcf\x0e\x79\xbe\x97\xc6\x96\x41\xd5\x7b\x56\xf5\x40\x54\x57\xe9\x9a\xc9\xa1\xea\x82\x00\xfb\x25\xb4\x4c\x03\x90\xfd\x5f\x8f\x60\xd5\x05\x01\xaa\x4e\xa1\xaa\x0b\xa2\x9e\xe4\xff\xde\x6e\x7d\x10\xf5\x24\xff\xd7\xc4\x7a\x1c\x40\x3d\xdd\xa8\x1e\x07\x30\xdb\xf9\xa7\x16\xd9\x38\x59\x32\xaa\x1e\x07\xb0\x5b\xc5\xb3\xa8\x7f\x01\x9c\x5c\x22\x55\xff\x02\xa8\x7a\x8f\xaa\xfe\x05\x50\xf5\x5f\x56\xfd\x0b\xf5\x64\xfb\xf7\x63\xa3\x83\x01\xec\x16\x78\x01\xed\x71\xb2\xfd\xdb\x1d\xea\x61\x00\xfb\x6e\x51\x5f\x83\xe1\x60\xff\x17\x23\xe9\x76\x00\x67\xe1\x78\x35\x18\x0e\xf6\x5f\xa9\xb0\xae\x08\x50\xf5\xc3\x55\x3d\x11\x60\x1f\xc6\x55\xf5\x3b\x80\x5d\x63\x0c\xa7\xe3\xa1\xba\x01\x00\xa9\xa1\xa2\x3a\xeb\xba\x9e\x1d\xf6\x34\x93\x7e\x86\x6a\x6e\x7f\x92\x38\x45\xd5\x85\x00\xf6\x77\x8c\xff\xea\x1d\x00\xfb\xee\x73\x9c\xee\x81\x7a\x82\xd6\x3e\xaf\x3a\x03\xaa\xf9\xf8\x5d\x39\x50\xf5\x06\x80\xd4\x5c\x3a\x51\x75\x07\x54\xd3\x27\x0d\xad\xa7\xf8\x07\xe9\x37\x1c\x72\xab\xfe\xab\x33\xa3\x87\x83\x62\xe5\x7f\x35\x7f\xd2\xf0\x1b\xad\xfe\x07\xd5\x6c\x35\x55\xad\x0f\x6a\x53\x82\xaa\xf5\xc1\xbe\x2a\xff\x54\xec\x57\xb3\xef\x0f\x3f\x00\xaa\x7d\x30\x9b\x8d\x50\xed\x83\x7d\x51\x4e\xa7\xdc\xaf\x4e\xa1\x1e\xbe\x3a\xea\x7d\xb0\xcb\xa8\x89\xea\xbe\x9a\x6a\x7f\xf8\x5d\x34\xe6\x5c\x4d\xb5\x3f\xbc\xb9\x4a\x7e\xb0\x8d\x6c\xf5\x34\xca\xd2\x28\x7e\xb3\x14\xfd\xd5\xfc\xfb\xc3\x5e\x40\xd5\x0f\xd2\x6f\xf8\x5e\x28\xfb\xab\xf3\xad\x87\xcf\x99\xba\x1f\xec\xf3\x59\xa6\xa5\x96\x33\x24\x1d\xe0\xab\xfc\x41\x35\xe5\x4b\x33\x14\x0d\xd2\xcf\x99\x23\xcd\xc0\x33\xd8\x7f\xb5\xac\x58\x56\x1c\xe8\xfe\x28\x6b\x96\x39\xc9\xe8\xfc\xb7\x5b\xd6\xb9\x44\xa7\x68\x58\xe4\x40\xce\xa3\xc2\x22\x9f\x94\xf2\xdf\xdb\x5b\x47\xd3\x5f\x00\xb6\x2d\x32\x65\x97\x65\xda\x2c\xdb\xa0\xdb\x32\x6d\xc6\x6b\xdd\x74\x19\x34\x27\x63\x8f\xe2\x7f\x5f\xcb\xb4\x59\xf6\xb8\xcf\x32\x6d\xc6\xd0\xbd\xe9\x35\x00\xdb\x40\xfb\x1e\x34\xdd\x06\x60\xdf\x53\x9a\xa4\x63\x00\x54\xd2\x25\x46\xd3\x31\xd0\xd2\xb1\x23\xa7\xd3\x33\x00\x2a\x89\x10\xa3\xe9\x19\x00\x95\xac\x73\xd1\x9c\xcb\xdd\x9c\xcb\xcd\x56\xf7\xd1\x74\x16\xb4\x33\x97\x9b\x81\x5b\x33\x3c\x0e\x2a\xc9\x4b\xa3\xe9\x3f\x00\xbb\xfd\xdc\x28\xc3\xe3\x60\x97\xf9\x57\x6d\x97\x5c\x98\x65\x91\x66\x4a\x9a\x89\x4f\x7f\x33\x18\x0e\xf6\x55\x2d\xd3\x4c\x49\x33\x35\xdb\xa5\x99\x9c\xe1\x3d\x18\x76\x35\xfd\x11\x60\x5f\x96\xe3\xf4\x47\x80\x4a\xf2\xbc\x68\xba\x23\x40\x25\x79\x5e\x34\xdd\x11\xcd\xa4\x4e\xce\x42\x6b\x86\xcd\x41\x35\xeb\x50\xd3\x43\x01\x76\x45\x2c\xd3\x24\xd9\x77\x30\xfb\x57\x6d\x92\xb5\x49\xb5\x4c\x9b\xe4\xf3\x3c\x79\x59\x6d\x92\xcf\x3b\xe8\xf9\x7c\x9e\xf2\x79\x07\xb9\xb1\xfa\x37\x5a\x66\x05\xdb\xf4\x74\xda\x24\x9f\xd7\x8d\x1b\xab\x33\x03\xec\xf6\xf3\x78\xea\xcd\x00\xbb\x8c\x5b\xa6\x3b\x03\xec\x66\xf0\x28\xea\xbc\x00\xa9\x1b\xe8\x69\x7a\x2f\x40\xaa\x4e\x34\x6e\x7a\x21\x40\x0a\xa7\x95\x36\x1d\x0c\x60\x5b\x8f\x7b\xa6\x3b\x01\x54\xf2\xd0\x46\xd3\x9d\x00\x52\x62\xe7\xb5\x68\xfa\x0e\x9a\xb9\xfb\x8b\x16\x30\xa6\x0d\x76\x19\xa7\xd3\xa1\xd0\xdc\x0b\x9e\x4d\xb5\xa2\xe9\x51\x00\xd5\x85\xf0\x4d\x8f\x42\x33\x3b\x7f\xf1\xdd\xd7\xa5\xd0\xcc\x77\x5c\xf8\xa8\x35\x7d\x0a\x60\x1f\x87\xa5\x74\x2a\x34\xf3\xf3\x17\xdf\x1e\xbd\x0a\xa0\x9a\x07\xaa\xe9\x54\x00\xd5\xb5\xea\x4d\xa7\x02\xa8\xd3\x37\x56\x9f\x02\x48\x35\x0f\xeb\xeb\x5d\x24\x8b\x7f\xd7\x87\xde\xf4\x2a\x80\x5d\x11\xaf\xa0\x9d\xea\xb1\x13\xb7\x42\x27\x02\xd8\x65\x1c\xa7\x17\x01\xec\x5b\x41\x85\x75\x23\x80\x7d\x3e\xcb\x34\x4a\xd3\x28\x74\x93\x4d\x3f\x02\xd8\xe7\xa3\x2e\xfa\x11\xc0\x36\x14\x76\xd7\x91\xd0\x9c\x6b\xae\x92\x6d\x7a\x12\xc0\xbe\x06\x86\xd7\x93\xd0\xce\xfc\x73\x4f\xa7\x55\x9a\x13\x62\x6c\xae\xae\x84\xe6\xfc\xf3\xe2\x37\x45\xbf\x01\xd8\xd5\xb3\x4c\x13\x90\xaa\xca\x15\xf5\x4d\x2f\x01\xd8\x87\x51\x13\xdd\x04\x60\xd7\x04\x2b\xeb\x27\x00\xbb\x8c\xbb\xa1\x9f\x00\xec\xcb\x7a\x9c\x56\xe9\xe7\x51\xc1\xca\x3a\x0a\xc0\xbe\x86\x65\x5a\xa5\x6b\x15\x5f\x16\x5d\x05\x60\x97\x71\x37\xf4\x15\xb4\xee\x73\x61\xf5\xb4\x40\xe7\xb9\xf0\xcb\xa0\xaf\x00\x6c\x1b\x63\x14\x9d\x05\xed\x64\xbb\x6a\xb6\x56\xa3\x74\x36\x4c\xb1\xa3\xd1\x5b\x00\x76\x23\x3c\xcc\x37\x7e\xd8\x31\x20\xa0\x9a\xce\x01\xb0\x8f\xe3\xbf\x3a\x02\xc0\x7e\x93\x31\x8a\xb2\x1f\xec\xe3\x2c\xb3\xb1\x4c\x4b\x4f\xe1\xd3\xad\xf0\x07\x29\xe9\x19\x6c\x2a\x7f\xb0\x1f\x0b\x0c\xa0\xf4\x07\xfb\xbf\xd6\x45\x0b\x98\x33\x59\xdf\x48\x73\x36\x01\xd8\x65\x58\xca\x89\xe9\xcd\x3c\xca\x7a\x58\x9b\x1e\x01\xd0\x5c\x6a\xd2\x54\xff\x20\x25\x57\x8c\x34\x27\x14\x80\x5d\x95\x3f\xac\xc2\x6e\x3a\x0c\xc0\xae\x29\xb5\x77\x12\x02\xd8\xa7\xa6\xf6\xae\xb9\x06\xcd\xa5\x51\xcd\x89\x09\x60\xff\xd5\x5a\x69\xb4\xd0\x68\xc9\x5a\x69\xb4\x8d\x93\xd6\xa1\xe9\x80\x00\xfb\xaf\x9e\x4e\x9b\x85\x36\xc3\xf7\xd2\x9c\x9b\x00\x4e\x3e\xa2\xe6\xdc\x04\xb0\x2b\x87\x19\x9d\x9c\x00\xf6\x53\x63\x4d\x7c\x6a\x98\x20\x9f\xf4\x9b\x35\x1d\x1a\x60\x97\x79\x9c\x8f\x4d\x98\x7a\x9a\x61\x6d\xd3\x67\x01\x76\xf5\xb8\x05\x3a\x2d\xc0\x71\xb6\x34\x7d\x11\xa0\xb9\x98\xa8\x39\xf5\x00\xec\xb3\xd1\x08\xdd\x13\x60\x5f\x15\x73\xea\x8a\x00\xfb\x0a\xfe\x57\x03\x4c\x0d\x60\xc7\xab\x2f\x02\x6c\xa3\xf8\x5f\x2d\xb0\xd1\x0c\x5d\x37\x5d\x11\xa0\xe5\x73\x05\xdb\x3f\x4f\xfb\x3d\xcc\xf6\x4f\xdb\x6f\x3f\xae\x2f\x02\xec\x9a\x70\x9c\xbe\x08\xb0\x5b\xc1\x2d\xd3\x17\x01\xf6\x7f\x2d\xf3\xe1\xb9\x7c\x78\xfc\xd4\xe9\x8b\x00\xfb\x38\xee\x99\xbe\x08\xb0\xcb\xb0\xbb\xf3\x0c\xc0\xc9\x21\xd3\x74\x4f\x34\x97\x7f\x9b\xca\xa0\xe9\x9e\x00\x2d\x9f\x2b\x68\xa7\x8d\x66\x0a\xb8\xa6\x73\x02\x34\xd7\x81\x34\x7d\x09\xa0\xb9\x1e\xac\xe9\x4a\x00\xcd\x19\xb4\x4d\x4f\x02\x48\xd9\xc5\xc4\xcd\x69\xec\xed\xa4\x61\x0e\xcb\x6c\x01\xae\x84\xac\x77\xa6\x39\x91\xbd\x9d\x34\xcc\xb8\xb1\x9a\xee\x05\xb0\xcf\x67\x99\xcd\x32\x0f\xb3\x0b\xa7\x9b\x2e\x07\xb0\xcb\xb0\x88\x3e\x07\xd0\xaa\x8d\xd0\xe5\x00\x5a\xf5\x93\xa1\x2b\x01\xec\x2b\x78\x98\xf7\x15\x57\x42\x76\x01\x77\xd3\x95\x00\xf6\x71\x5c\x55\x5f\x02\xd8\x35\xe6\xa9\xd3\x99\x00\x52\x3d\xa3\x0e\x9d\x09\x60\x1f\xc7\x33\xe1\x8c\x06\xb0\xcb\x30\xa8\x0e\x06\xb0\xaf\x41\x2b\xf4\x30\x80\x5d\xe6\x7f\xb5\xca\xa3\x55\xc2\x6b\x68\x95\xc7\xdd\x73\x70\x9b\x37\xa7\x35\x80\x5d\xe6\x35\xb4\xca\xe3\xdd\xf6\x74\xbe\x00\xec\xd8\x9f\x4d\x7f\xda\xf4\x28\xb4\xb3\x3c\xdb\x96\x69\x95\xc7\x85\x5b\xbe\xd9\x3a\x14\xda\x59\xb2\x8d\x51\xf4\x27\x80\x56\xfd\xdc\xea\x4e\x00\x29\x1b\xa0\x69\xfa\x13\x9a\xab\xb8\x0d\xaa\x34\xe7\x2c\x80\x66\x68\xa4\xe9\x27\x68\x67\x11\xb7\x03\x36\x67\x28\x80\x7d\x3a\x9a\xea\x14\x85\xe6\x2a\x6e\xfd\xbe\x4d\x7f\x02\xd8\x65\x56\xc5\x37\xfb\x75\xc3\x7b\x47\x09\xce\x52\x00\xcd\x50\x57\xd3\xc5\x00\xf6\x61\x56\xc5\xb6\xbe\x6e\x9f\x63\x4f\xef\x3c\x05\xb0\x3b\x49\x5a\xa6\x2b\x02\xec\xcb\x72\x09\x5d\x11\x20\x65\xa7\x50\x34\xa7\x2a\x80\x7d\x3e\xaa\xac\x7b\xa2\x7d\x58\x40\xc1\xe3\x6c\x79\xb0\x0f\xa3\x7a\xce\x4c\x00\xfb\x12\x5e\x56\x0b\x7c\xe6\x1d\xa7\xb1\x3a\x27\x40\x33\x88\xd4\xf4\x4d\x80\xfd\x4f\xaf\xa0\x4d\x3e\x6d\xe2\xb0\xc6\xc9\x09\x60\x97\xd9\x58\x8d\xc2\x94\xf9\x56\x1d\x3c\xea\xb1\x00\xbb\x76\xfc\x57\x8f\x05\xd8\x65\x1c\xa7\xc7\x02\xec\xf3\x71\xcf\x74\x59\x80\x5d\x86\x91\x75\x45\x80\x94\x4d\x47\xd4\x74\x45\x80\xa6\x93\xad\xe9\x89\x68\xeb\x3c\x02\x34\x43\x4f\x04\x68\xdd\xcf\x8c\x8e\x08\xd0\x5c\x0e\xd6\xf4\x43\x80\xd6\xff\xb2\xd0\xab\xe9\xa5\x00\xbb\xd9\x9e\x45\xf3\x2c\x97\x8b\xf9\x2c\xe8\xa5\x68\x26\x84\x36\x87\x51\xd3\x4b\xd1\x4e\x42\x68\xcc\xd8\x75\x53\x80\x5d\xd6\x29\x4b\x96\xb9\x95\x10\x8f\x6f\xd7\x75\x01\xf6\x97\xc4\xe3\xaa\x65\xd5\xe3\x82\xb2\x66\x59\xb3\x2e\x3f\xca\xba\x65\x2c\x6c\xe4\x63\xd0\x75\x5d\x80\x46\x0a\xfe\xe8\xfa\x21\xc0\x3e\xdb\xa4\xec\xb2\x4c\x93\x55\x8a\x6e\x8b\x30\xd9\xb4\x0d\x8f\x45\x8f\xd7\xf4\x02\xaf\x65\xce\x72\xe2\xab\xd4\xf5\x2e\x80\xd4\xf4\xd6\x77\xbd\x0b\xa0\xb1\xbf\x66\x74\xdd\x06\xdd\xf4\x64\xe4\xb4\x8f\xae\x8f\x00\xec\xe6\xfb\x57\xdb\xb0\xd1\x14\xa1\x5d\x1f\x01\x48\xc5\xf9\xfe\x5d\x1f\x01\x48\xe5\xc7\xf8\xa5\xeb\x23\x00\x8d\x1d\xd2\xa2\x3b\x15\x01\xec\xe6\x7b\x3a\x1b\x86\xdf\xa0\x38\x17\xa1\xeb\x23\x00\xbb\x0c\xa3\xeb\x23\x00\xfb\xb2\xb4\x42\x1f\x01\xd8\xc7\x51\x15\x7d\x04\x60\x97\x71\x0d\xa7\xd6\x83\x7d\x5d\xae\xa1\xe3\x00\xec\xe3\xb0\x80\x9e\x03\xb0\x3f\x91\x1e\xe7\xcd\x26\x1d\x74\xf9\x35\xaf\xab\xa5\xf2\xd9\x60\x8a\xfa\xe9\x3a\x00\xfb\x38\x6e\xb7\xae\x03\x90\xaa\x2a\xb4\xeb\x3a\x00\xfb\x38\xec\xa2\xeb\x00\xec\xf3\x59\xa6\x5d\x48\x12\x5d\xf4\x57\x77\xe7\x41\x80\xc6\xde\x78\xd1\x75\x1d\x80\x7d\x3a\x9e\x01\x5d\x07\x20\x75\x97\x5b\x76\xdd\x04\x20\x9d\x54\x58\xdd\x69\x0f\x60\x5f\x82\xcb\xea\x3a\x00\xbb\x0c\xf3\xe9\x3a\xe8\xa5\x59\x46\xd3\x9c\xe6\x00\x76\x19\x26\xd0\x9d\x00\x9a\x73\xdb\xba\x93\x1a\x40\x3a\x89\x6c\xbb\xb3\x1a\x40\x3a\x39\xcf\xbb\x5e\x07\x90\x4e\x52\xb1\xee\xbc\x06\x90\x4e\xaa\xae\xae\xdb\x01\xa4\x93\x0a\xac\x3b\x8b\x01\x34\x27\xa5\x75\x3d\x11\x20\x9d\xd4\xcd\x5d\xaf\x03\x48\xd5\x38\x62\xd7\xeb\x00\xb6\x38\xe7\xb2\xba\x18\x40\x3a\x99\x63\xba\x2e\x86\x5e\xcf\x56\x59\x34\x4d\xaf\x00\x48\xc5\x05\x21\x5d\xaf\x00\x48\xc5\x99\xe5\x5d\xaf\x00\xe8\x46\xd4\xba\x4e\x01\x90\x3a\x6e\xf7\xee\x5c\x03\x90\xcf\x13\xa0\x4b\x00\x0c\x33\xb4\x76\x3d\x02\xdd\xe9\xed\x3e\xb3\x3a\x04\xba\xd3\xdb\xf1\x26\x76\xfd\x01\x20\x4f\x5f\x46\xdd\x01\xe0\x64\x38\xeb\xaa\x7c\x10\xf9\x9c\xde\x26\x31\x39\xc0\x14\x31\xdd\xc9\x01\xa0\xa8\x73\xba\x7a\x1e\x14\x05\x57\x77\x22\x00\x28\x0a\xa9\xae\x9c\x07\xe9\xe7\x30\xaf\x2b\xe7\x41\xfa\x9d\x07\x58\x39\xdf\x8f\x9c\xf7\x69\x50\xce\xf7\x23\xe7\x7d\x6a\x94\xf3\xfd\x9f\x9c\xa7\xa1\x4a\x77\x70\xf2\xe1\x75\x95\x3b\xd8\x6a\xc0\xd3\xd9\x52\x57\x98\x9b\x35\xa7\x2b\xe7\xc1\x3e\x9b\xc7\xd9\xfc\x6e\xd2\x0a\xaf\x60\xf3\x91\xf3\x55\x77\x4b\x57\xce\xf7\xce\x8a\x53\x5f\x4c\xa5\x3b\xe8\xba\x92\xbb\x91\x7e\xd0\x75\x69\x76\xc5\x7c\x77\x43\xa4\x61\x91\x16\x19\xc7\xed\xc3\x7d\x57\xdf\x83\x61\xf4\xb6\x1b\xe8\x07\xc3\x68\x53\x57\xc9\x83\x61\x08\xad\x2b\xda\x41\x3e\x5f\x25\x35\x3b\xc8\xe7\x23\xa7\x64\x07\xf9\x7c\x47\x55\xec\x60\x18\x19\xed\x0a\x76\xb0\x3f\x5d\xb4\x52\xbd\x0c\x46\xff\x4b\x38\xbd\xab\xa6\xc1\x70\xc2\x65\x57\x4c\x83\xe1\xea\x98\xae\x48\x06\x99\x6d\xfd\xa3\x2b\x92\xc1\xd9\x9c\xa1\xab\x91\x41\xae\x0c\xfc\xba\x12\x19\x0c\x73\xc5\x74\x15\x32\x18\x4e\x33\xe8\x8a\x61\x30\x5c\x89\xdb\xd5\xc2\x60\x98\x4d\xa5\x1b\xbf\xef\xf3\xdc\x09\x2a\x66\xfc\x1e\x64\xfd\x94\x5d\xc9\x0c\xc6\x79\x75\x95\xcc\x60\xb8\xac\xb7\xab\x98\x81\x5b\x91\x45\x37\x9e\x0f\x86\xab\xc4\xbb\x1a\x1a\x0c\x57\x63\x77\x25\x34\x18\xae\x79\xee\x2a\x68\x70\x72\x88\x77\xd5\x32\xc8\xd5\x87\x46\xb5\x0c\x86\x2b\x7d\xbb\x62\x19\xb8\xf7\x59\x74\x75\x31\x48\xcd\x38\x63\x57\x17\x83\xe1\x6a\xef\xae\x2c\x06\xc3\x04\xd5\x5d\x55\x0c\x72\xb5\x4b\x51\x14\x83\x5c\x51\x94\xdd\xe9\xf8\x60\xb8\xa6\xba\xab\x89\xc1\x70\x31\x76\x57\x12\x83\x61\xce\xea\xae\x24\x06\xf9\x8c\x64\x94\xc4\x20\x57\x1c\xa2\xdd\x30\x7c\x77\xf9\xb7\x99\x80\xba\x32\x19\xe4\xa9\x79\x94\xc9\xdd\x59\xf5\x9a\x5a\x99\x0c\xf2\xf4\x79\x32\xde\x0e\xd2\x70\x4e\x65\x57\x39\x83\x93\xe9\xa9\x2b\x9c\xc1\xc9\xed\xd0\xd5\xcd\x20\x4f\x1f\x61\x65\x33\xc8\xd3\x07\x4a\xd5\x0c\x22\xfb\x0c\x28\x9a\xc1\xc9\xff\xd1\xd5\xcc\xe0\x24\x1b\xeb\x6a\x66\x10\xf9\x9c\xde\xd7\xe1\x66\xf1\x8a\xf7\x48\x19\xdd\x6f\x16\x18\xf8\xf0\xa8\x98\xc1\x49\x59\xd9\x15\xcc\x20\x4f\xdf\x10\xf5\x32\x38\xb9\x0f\xbb\x72\x19\x44\x3e\x47\x69\x89\x47\x4b\x50\x09\xc5\x32\xc8\xd3\xe7\x49\xad\x0c\x22\x9f\x22\x2d\xf1\x68\x09\xea\xa5\x52\x06\x79\x6a\x09\x85\x32\x88\xec\x87\x41\x9d\x0c\xf2\xd4\x38\xea\x64\x90\xe7\x39\xca\x47\xff\xd1\x12\x9c\x4b\xfd\x0b\x8a\x02\xbb\xab\x7f\x41\x98\x6a\xaa\x1b\x3a\x07\xc1\xc6\xe0\xd1\x0d\x9d\x83\xa2\x1f\xa6\x1b\x39\x07\xb3\xf9\xd0\x29\x88\x41\x98\xac\xaf\xab\x87\x41\x98\xfb\xb5\x2b\x87\x41\x31\xb3\x53\x57\x0d\x83\x30\x51\x6d\x37\xb8\x0e\x4a\x3d\x45\x36\x68\x23\xcc\x3e\xd4\x95\xc7\x20\xe6\x69\x90\xef\xf2\x46\xd1\xf3\xd3\x55\xc7\xa0\x98\xbc\xad\x2b\x7a\x41\xcc\x53\x64\xb3\x3f\x9b\x4d\x1b\x95\xbc\xa0\xe8\x2f\xe8\x4a\x5e\x10\x2e\x60\xeb\x2a\x5e\x10\xa6\x2d\xec\x0a\x5e\x10\xe6\x05\xec\x0a\x5e\x10\xf3\x9c\xcb\x36\x32\x17\x7f\x5a\x55\xf5\x2e\x08\xf7\x4a\xe9\xca\x5d\x50\xf4\x63\x74\x95\x2d\xd8\x5f\x60\x4c\xe1\xcc\x78\x30\x9b\x5f\x60\x05\x2b\x98\xcd\xef\xb4\x7a\x15\xcc\x36\x2c\xb2\xfa\x8b\xe9\x6c\x7e\x50\x94\xab\xa0\xe8\xd2\xee\xca\x55\x30\x9b\x3d\x8f\x72\x15\x14\xb3\xd1\x74\x75\x26\x28\x0e\x29\x86\x92\x12\x14\x7d\x8e\x43\x45\x09\x66\x0b\x8b\xb2\x45\x4c\x69\x64\x84\x38\xd4\x93\x60\xb6\xe1\x51\xcd\x22\xda\x38\x3d\xaa\x5b\xc4\x8c\x46\x44\xec\x50\x4d\x82\xa2\x47\x77\x18\x08\x07\x25\x72\xfb\xef\xfe\x78\xa8\x3f\xc1\x34\x7b\xe6\x50\x7e\x82\xa2\x0e\x1e\xca\x4f\x30\xdb\xf0\xa8\xc7\x22\xe6\xd0\x32\xca\x1c\xaa\x4f\x30\x4d\xa7\x39\x0c\x81\x83\xe9\x36\x39\x43\xed\x09\xd2\xcf\x31\xda\x30\xb4\x3d\xce\x0e\x44\x3c\x48\xc3\xd0\x36\x28\xc6\x2a\x86\x42\x13\x54\x17\x04\x0e\x75\xe6\x30\x16\xad\x77\x72\xa8\x33\xc1\xbe\x02\xf6\x53\x68\x0e\xd3\x8f\xe9\xeb\x1a\x0a\x4d\x70\x92\x63\x0f\x75\xe6\x30\x16\xad\xab\x6f\xa8\x29\x87\x71\x67\x87\xff\x43\x4d\x09\xf6\x71\x54\x45\x4d\x09\xaa\x4b\xb7\x86\x92\x12\xec\xc3\x68\xab\x92\x72\x18\x8c\xd6\xff\x3b\x94\x94\xa0\xba\x92\x72\xa8\x28\x87\x81\x67\xbd\xbd\x43\xf5\x38\x0c\x3c\xeb\x00\x1d\xaa\x47\x50\x1d\xb4\x0f\xc5\xe3\x30\xee\x6c\x9e\xb9\xa1\x78\x04\xbb\xcc\x9a\x78\xbf\x48\x43\xf6\x33\xe5\xd1\x50\x3d\x8e\x7c\x0c\xc0\x65\x0d\x32\x0f\x83\xcc\x3a\xb6\x87\xea\x71\x18\x64\xd6\x3f\x3f\x54\x8f\x60\x9f\x0f\xe3\xa9\x1e\x47\x39\x16\xf0\xbf\x5a\xa0\x30\x89\xab\x7a\x98\x06\x40\x50\xfe\x8c\x45\x0c\x27\xc9\x83\x93\x58\x6e\xa8\x27\xc1\x3e\x8c\x96\x29\x1e\xc1\x2e\xa3\x65\x8a\x47\x50\x5d\xe9\x38\xd4\x8e\x60\x1f\xe6\xe9\x6c\x2c\xda\xf1\xa7\x93\x79\xa8\x1d\xc1\xc9\x17\x3f\xd4\x8e\x60\xb7\x81\x3b\x6b\x14\x1b\xec\xbf\xd2\x7e\xf5\x24\xd8\x97\xf0\x38\xdb\x5f\xcd\x1e\xc9\x17\x78\xa8\x1d\xc1\x2e\xf3\x38\xab\x57\x99\x9c\xe4\xdd\x56\x26\x0e\xa7\xa4\x87\x57\xb0\xc2\x27\x4f\x19\x1f\xb1\xe1\x62\xe9\x71\xf2\x94\xf9\x50\xa8\x1d\xc7\xc9\x53\xe6\x7f\x8d\x31\x8f\x93\xa7\xcc\x37\x56\x41\x39\x4e\x9e\x32\x5f\x6c\x15\x25\xa8\xae\xdb\x1f\x2a\x4a\xb0\x0f\xe3\xb2\x4a\x4a\x50\x5d\xce\x38\x94\x94\x60\x8b\x39\xff\xea\x4d\xdc\xa8\xa6\xd7\x1b\x06\x98\xc1\x3e\x9b\x95\xf3\x29\x26\xc0\x6c\xf6\xbb\x61\x80\x19\xec\xc3\xb8\xd7\xca\x51\xb0\xcb\x3c\x9d\x96\x73\x7f\x24\x13\xa1\x0d\x83\xce\xc3\xfd\x91\xcc\xb1\x3a\x14\xa9\x60\x97\xf1\x00\xa8\x52\xc1\x2e\xe3\x7c\x46\xa2\x41\x75\x47\x82\xa1\x72\x1d\xfd\x98\x8e\x86\xa9\x5c\xc7\x51\xae\xbe\x28\x2a\xd7\x71\x36\x45\x62\x8c\x34\x54\xa9\x60\x1f\xc7\x03\x65\xd0\x19\x54\xf7\x54\x18\x0a\xd7\x71\xf6\x49\xf2\xc3\xa3\x72\x05\xb5\xfb\x8a\x29\x5c\xc1\x3e\xcc\x2b\x68\xa8\xae\xa1\xc2\x2b\x68\x28\x85\xab\xf1\x84\xa1\x72\x05\xfb\x38\xff\xab\xa1\xfa\x31\x94\x55\xd1\x50\xa6\x4b\x33\x8b\xdc\x50\xce\x82\x7d\x1c\xd5\x53\xcf\x82\xd4\xa6\x06\x55\xd0\x8e\x33\x75\xdd\x77\x5b\xf5\x3a\xdc\xce\x77\x20\xb7\x86\xf2\x15\x54\xf7\x9e\x18\x06\xac\xc1\xbe\x2c\xf7\xc2\x80\x35\xa8\x6e\x6e\x31\x54\xb9\x60\x9f\xcd\xab\x6a\xa8\xa1\xa1\xbc\x80\x86\x32\x5c\x6d\xf2\xae\xa1\xf4\x05\xbb\x11\x9e\x4e\x43\x0d\x9f\x28\x0d\xe5\xfc\x75\x90\xba\x89\x55\x87\x71\xe8\x61\x1c\xda\x54\x67\xc3\x40\x33\xa8\x6e\xe9\x31\x8c\x33\x83\xea\xbe\x06\xc3\x30\x33\xd8\x35\xb1\xcc\xb6\x1a\x67\x76\x11\xe3\x50\x19\x83\xd4\x15\xeb\x43\x69\x0c\xf6\x71\xf9\x0f\x1d\xba\x71\xe8\x61\x1c\xda\x0c\x68\xc3\x38\xf4\x30\x0e\xed\x02\xc6\xa1\x9e\x06\x5b\xec\x78\x39\x9f\x10\xf7\x00\xfe\xf7\x5f\x8d\x11\x4c\x55\x70\xe0\x61\x7c\x79\x18\x5f\xd6\x35\x37\x94\xd4\x63\x6a\x1f\xdf\x4c\x05\x34\xd8\xc7\xf1\x8a\x28\xa0\xc1\x2e\xf3\x38\x2d\x34\x8f\x85\xb8\x2f\xea\xe5\x61\x84\xd9\xdc\x6e\x43\xc1\x0c\x76\x19\x56\x53\x31\x0f\xa3\xce\xa6\x72\x1b\xea\xe3\x61\x84\xd9\x05\xcd\xc3\x08\x33\xd8\xff\xa5\x1d\x8a\x66\xb0\x8f\xf3\xbf\x36\xd7\x18\xb3\x8b\xff\x86\xb2\x19\x54\xd3\x69\x0e\x43\xcc\xa0\x9a\x28\x76\x28\x91\x41\x35\x9d\xe6\x50\x22\x0f\x03\xc7\xce\xa6\x1d\x6a\xe4\x71\x1d\x4f\x96\xc7\xf9\x38\x90\x5e\xad\x39\xf9\x73\xa8\x7f\x87\xbb\x44\x9d\xc6\x2a\x80\x41\x4a\x67\xf8\xe8\x84\x75\xd0\xf4\xba\x0e\xe7\xab\x0f\x33\x82\x1b\x05\x19\x0a\x65\xb0\xcb\xbc\xac\xed\x32\x4b\xb8\x91\x8c\xa1\x78\x06\x29\x99\xc9\x73\xa8\x9e\x87\x99\xc3\xcf\x88\x50\xf9\x0c\x52\x75\xbe\xce\x50\x3f\x0f\x33\x87\xbb\x5a\x77\xa8\x9f\x41\xd3\x79\x3c\xd4\xcf\xc3\xcc\xe1\x26\x4c\x1c\x0a\xe8\x61\xe6\x70\x03\x32\x43\x05\x0d\xf6\x71\x54\x4f\x09\x3d\xcc\x1c\x6e\x3a\xde\xa1\x86\x06\xfb\xb2\x58\x45\x11\x3d\xcc\x26\x6e\x5c\x61\xa8\xa2\x87\xd9\xc4\x35\x9e\x2a\x1a\x9c\x55\x59\xc3\xa9\xee\xe3\x3e\xc6\xb3\x76\x1a\xef\xd6\x78\xa7\xb1\x1a\xef\xd6\x78\xe7\xbf\x1a\xef\x3e\xc6\xa3\x4c\xbd\x3d\xcc\x27\x8e\xc6\x18\xea\x6d\x90\xfa\x79\xee\x14\xdc\x60\xff\x95\x4b\xa8\xb8\xc1\x2e\xf3\x38\x8d\xf7\x1c\xe3\xd1\x30\x35\xf7\x78\x8e\xf1\x78\x7c\x14\xdd\xe0\x64\xda\x1c\x2a\x6c\x70\xe2\x40\x43\x85\x0d\xf6\x3f\xad\xb0\x66\x32\x7b\xb8\x49\x5a\x87\xb2\x1b\xb4\x7c\x2e\xa0\x9d\x4c\x28\x6e\xf8\x6d\x18\x9e\x06\xe9\x6c\xba\x36\x14\xde\xa0\x99\xa2\x61\x18\x77\x06\x27\x83\xe8\x50\x8b\x83\x94\xcf\xc0\x4e\x31\x0e\x76\x99\xc7\xd9\x2c\xe6\xb1\x77\x97\xf9\x0c\xe5\xf8\x30\x3e\x7d\x04\x85\x7a\x7c\x18\x9f\x3e\x12\x40\x41\x3e\x8c\x4f\x9f\x5b\xa1\x22\x07\xfb\x31\xf6\xbf\x36\xd6\x34\xe3\x67\x58\xac\x26\x1f\xc6\xac\x9d\xa1\x32\x14\xe5\x60\x9f\xcf\x32\x2d\xf0\xfa\x54\x9c\xf3\xf9\x54\x18\xb4\x3e\x43\x65\x83\xd6\xa0\x55\xc7\x3b\xc6\xac\xc1\xee\xd8\xb8\x3f\xca\xf7\xf1\x9d\x08\x3d\x66\x51\xbf\x0f\x63\xd6\x67\x34\xae\x80\x07\xfb\x12\x18\xde\x29\xf5\x60\x97\x51\x15\x55\xfd\x30\x90\x7d\x46\xe8\x4e\xb3\x07\xbb\x0c\x33\x2b\xf5\xc7\x77\xcc\x67\x99\xa6\x62\x9a\x7d\x3e\x1a\x4d\x65\x3f\x0c\x65\x9f\x41\xb5\xd2\x1e\xb4\x7a\x2e\xab\xa5\x8c\x64\x1f\xc9\x63\x24\x1b\xec\x91\x82\x65\x5a\xea\x63\x2a\x83\x57\x30\x40\x0d\x5a\xd5\x76\x4e\xa9\x07\xfb\x6c\x18\xcf\x29\xf5\x60\x57\x18\x03\xe8\x29\x00\xa9\xbb\x24\x72\xe8\x2a\x18\xcb\xb9\x0c\xcd\xff\xfa\x5c\x10\xb4\x76\x7d\xee\xd0\x0b\x00\xf6\x61\xfe\xd5\xb6\x12\xb5\x6e\x76\x7a\x86\xa5\x41\xca\xce\x15\x18\xba\x06\x40\x73\x99\xf0\x30\x02\x3d\x8c\x40\x1b\x3d\x0f\xdd\x05\x61\x04\xba\xb5\x3f\x4c\x59\x0f\xdd\x09\x61\x80\xda\x57\x29\xf4\x27\x80\x7d\x6a\xcb\x8a\x65\x4e\x6a\xe0\x33\x1c\x3a\x19\xc0\x1e\x5c\x0c\xca\x9a\x65\x4e\x74\xf0\xaf\xdd\x22\x27\x3a\xe0\xab\x0b\x7d\x0a\x60\x5f\x22\x51\x36\x2d\x73\xaa\x07\x2e\xc3\xd0\x6d\x00\xf6\x71\x5e\xf6\xb6\xcc\xa9\x0e\x78\x2e\x43\xc7\x41\x18\xb7\x76\xae\x47\xe8\x39\x00\xcd\x15\xbf\xe1\x44\x79\xb0\xdf\x4c\x4e\x67\x28\x3b\x92\x21\x7a\x3a\xa7\xd0\x4d\x00\x76\x19\xa7\x33\x96\x1d\xa9\x11\x2d\xe7\x74\x86\xb2\xc1\x3e\x8c\x9a\x18\xca\x06\xbb\x8c\x56\xe8\x62\x00\xa9\xab\x3a\x43\x1f\x03\xd8\xc7\x59\x15\x5b\x96\xdc\x3b\xde\x7b\xaa\x3f\x21\x4e\xe0\xda\x66\x38\xe1\x1d\xec\x32\xac\x67\xe0\x1a\x34\x5f\xf4\xd0\xc7\x10\x27\x6e\xad\xf1\xf4\x31\x80\xe6\x40\x37\x74\x31\x80\xe6\xb2\xfa\xd0\xc5\x00\x9a\x92\x23\xf4\x30\x80\x7d\x32\xcc\xa4\x87\x21\x0c\x5a\xbb\xb4\x2f\x74\x31\x84\x41\x6b\x7b\x84\x30\x68\x0d\x52\x33\x23\x41\xe8\x76\x00\xfb\x38\x6b\xa2\x4d\x4e\xd0\xba\x5b\xe6\x13\x60\xd0\xda\x6e\x22\x9c\xef\x0e\xf6\x71\xd8\x58\x5f\x44\xfc\x0b\x64\x7b\x0d\xed\x84\x2f\xa2\xe9\x8c\x09\x7d\x11\x91\x4f\x68\x97\x5b\x6b\x24\x1b\xa4\xe2\xec\xe4\xd0\x3f\x11\xee\x80\x6c\xb7\x13\xfa\x27\x40\x33\xc7\x41\xe8\x9e\x08\x83\xdb\x0e\x47\x43\xf7\x44\x18\xdc\x76\x58\x1f\xfa\x22\xc2\xe0\x76\x3d\xc7\x69\xaa\x8d\xe6\xb8\x3e\x74\x4f\x80\x7d\x98\x57\xd5\x52\xf8\x27\x8a\x89\xd1\xc2\x80\x37\x68\x0e\x15\x43\xf7\x04\x68\x7a\xc4\x43\xf7\x44\x18\xda\xd6\xc5\x16\x4e\xb2\x07\xa9\xb8\x94\x21\x74\x59\x84\xe1\x6e\x17\x86\x84\x2e\x0b\xb0\x8f\xe3\x3e\xea\xb3\x08\x7d\x16\x0c\x1d\x42\x97\x05\x18\xae\x30\x0c\x3d\x16\xe1\xbc\x7b\xbb\xdd\xd0\x63\x11\xa6\x8e\xa3\x87\x0d\x03\xe0\x51\x9d\x07\xe2\x6b\xec\xdc\x79\x10\x6e\x6f\x10\x4e\x94\x07\xfb\x5e\x63\x74\x63\xe2\x61\x4c\xbc\x9e\x32\xdb\x4a\x4c\xdc\x3c\xaf\xa1\xaf\x03\x64\xa7\x7c\x84\xbe\x0e\x30\xd2\xf9\xa3\x0d\xc5\xd5\x51\xf5\xcf\x87\x2e\x0c\x70\x32\x86\x84\x1e\x0c\x90\xa7\x37\x41\x6f\x05\x88\x49\xf7\x1d\x7a\x2b\x40\x98\x53\x3d\x74\x56\x80\xe2\xdc\xc4\xd0\x31\x01\x8a\x43\xe9\xd0\x31\x11\xc7\x31\xe1\x2d\xd0\x31\x01\xaa\xf9\xf6\x42\x1f\x04\xa8\xae\x66\x0a\x5d\x10\x20\x55\x85\x53\xe8\x6e\x00\xe9\x2c\x2f\x08\xfd\x0d\xa0\x9a\x73\x3f\x74\x37\x80\xa6\x06\x09\xbd\x0d\x20\x99\x5c\x36\x0c\x93\x83\x74\x42\x77\xa1\x03\x22\x4c\xba\x6e\x36\xa1\xd0\xdb\x00\x46\x3a\x45\xde\x4f\xc2\xe4\xdd\xe7\x4f\x67\x03\x18\x2e\x04\x0d\x7d\x0d\x60\xb8\xda\x36\x74\x35\x80\xec\x44\x9f\xd0\xab\x00\xc6\xbf\x73\xd9\x74\x9c\x0a\x4d\x17\x67\xe8\x54\x00\xa3\xe3\xa4\x0a\x7d\x0a\x20\x57\x5c\x14\xa1\x4b\x01\x8c\x8e\x98\x0b\x63\xe4\x60\x74\xbf\x51\x3a\x14\xc0\x30\x8d\x7c\xe8\x50\x88\x41\xc8\x15\x25\x17\x3a\x0f\x40\xae\xe1\x1f\x6d\x24\x21\xf2\x3a\xad\x84\xcf\x27\xc1\xef\x1e\xfe\xd1\x16\x0d\xf6\x55\xc1\x89\x13\xc6\xc3\xc1\xe8\xf1\x07\x5f\x7b\xb8\xe2\x1d\x8c\x8e\x0a\x0f\xa7\xbc\x83\xd1\x51\x02\xa1\xa7\x21\x82\x1c\x86\xd3\x22\xef\x74\x30\xc9\x03\xaf\x5f\xe8\x55\x08\x37\x0c\x33\xc1\x71\xe8\x2d\x00\xdb\xc6\x58\x4f\x77\x00\xc8\xd3\x07\x42\x6f\x00\x08\xd7\xae\x84\xce\x00\x90\xa7\x2f\x91\xbe\x80\x30\x3b\x9e\x77\x42\x57\x00\xc8\xd3\xe7\xc1\xe0\x3a\x88\x6c\x65\x8d\xa4\x83\xb3\x40\x31\x74\x04\x84\x69\xef\x7c\xdc\xf4\x03\x80\x13\xd9\x09\xa3\xe6\x61\x8e\x3b\xc4\x72\xe8\x05\x08\x73\xdc\xf9\xb8\xe9\x04\x08\x93\xd8\xe1\xb1\x0b\x7d\x00\xe0\x2c\x94\x09\xa3\xe6\x61\x12\x3b\x1f\x2d\xbd\x02\xe0\xac\x4e\x0d\x9d\x02\x61\x12\x3b\xed\xaa\x4f\x20\x4c\x62\xa7\xec\x0e\xf5\x7f\x98\xb1\xce\x0f\xbd\xfa\x1f\x9c\x65\x52\x61\x24\x1d\xa4\x7e\x2c\x66\x24\x1d\x9c\x85\x7d\xa1\x9b\x00\x44\xc6\x4f\x12\xba\x04\xc2\x2c\x76\x3e\xbb\xc6\xc8\x41\x98\x94\x36\x8c\x91\x87\xf9\xe9\xfc\x2e\xeb\x0f\x08\x93\xd1\xf9\x9e\xe9\x0e\x08\x93\xd1\xf9\xd5\xd4\x1d\x00\xce\x84\x92\x50\xf9\x83\xad\x5d\xb1\x8f\x8a\x1e\x14\xc7\xed\xa1\xa0\x07\x71\x7a\x3d\xc5\x7b\x20\xd4\xeb\xe9\x44\x15\xea\x20\x5c\x33\x15\xea\x74\x10\xae\x8d\x09\x65\x3a\x08\x57\xd0\x84\x2a\x1d\x84\xeb\xaf\x42\x91\x0e\xe2\x7c\x0d\x55\xe4\x20\x5c\x2c\x13\x0a\x72\x10\x2e\x20\x0a\xf5\x38\x08\x97\x8b\x85\x72\x1c\xec\xf7\x01\xf3\x2b\xc7\x41\xb8\xbf\x67\x28\xc7\x63\x4b\xef\xe2\x24\xf5\x50\x51\x83\xdd\x4a\xaa\x61\xcc\x1a\xec\x21\xb4\x67\xb3\x01\x64\xa8\x3b\x5f\x65\xe5\x33\x28\xca\xe2\x50\x3d\x83\xe9\xb2\xca\x50\x3d\x83\xe9\x5c\xa3\x70\xba\x77\x3c\x84\xca\xbc\x25\x4e\xed\x06\xa9\x3a\xeb\x31\x8c\x6d\x83\x79\xfa\x7f\xf5\x34\x28\x67\x54\xac\x76\x06\x45\x77\x4a\x38\xb3\x1b\x94\x33\x88\x55\x4d\x87\xb1\x6d\x3c\xe7\xa1\x98\x8e\x13\xdb\xf6\xf4\xde\xb8\x97\xa0\x62\xb1\xc8\x76\xbf\xf6\x8a\xd8\x5f\x25\x0d\x66\x73\xc0\xa5\x90\x06\xd3\x75\x8d\xa1\x8e\x06\x45\x8f\x53\x28\xa3\x41\xd1\xc9\x11\xaa\x68\x30\x5d\x96\x1d\x8a\x68\x50\xf4\xe7\x84\x82\x19\x14\x3d\x26\xa1\xbe\x05\xa9\x9d\xd1\xbb\xfa\x16\xa4\xdf\x91\x4d\xea\x5b\x50\x9d\x50\x11\x4a\xd9\x70\xc5\x78\x3e\x57\xb0\xb6\x9f\x31\x23\x7b\x7f\x75\x2b\xd8\xa7\xc3\x1c\xea\x56\x50\x9d\xbb\x10\x4e\xc0\x0e\x97\x8c\x9f\xf1\xb6\x13\xb0\xc3\xf5\xe1\x8a\xd4\x50\xcc\x82\xea\x34\xbc\x50\xcb\x82\xea\x34\x91\x50\xca\x82\xd4\x4c\x82\x16\x4a\xd9\x70\xc5\xf8\x19\xbd\x1b\xf6\x8e\x75\xda\xea\x55\x6d\xeb\xb2\xad\xdc\x05\x15\x2f\xa8\xce\xee\x08\x15\x6f\xac\x13\x33\xe5\xfe\xa9\x78\x63\x1d\x93\x58\x39\x4d\xb2\x8e\x49\xac\x89\x77\x70\xa3\x3a\xe7\x23\x54\xc1\xb1\x8e\x95\xb0\xb0\x32\x18\xec\x8f\xce\x6e\xd8\x54\x06\x83\x74\x92\xf2\x4f\x75\x2e\x08\x07\xcc\x53\x99\x0b\xaa\xf3\x58\xa6\xea\x15\xa4\x9f\x8b\x72\xa6\xf2\x15\xec\xb2\x41\xd9\xb0\x8c\x00\x54\xfe\x83\xce\x9e\x8a\xdb\xe9\xd2\x70\x17\x45\x4e\xc5\x2d\xa8\x66\xd4\x9e\x6a\xdb\xe9\xca\x70\xd7\x31\x4d\xb5\xed\x74\x65\xb8\x8b\xdf\xa6\x21\xf0\xe9\x2a\x70\x17\xd3\x4d\x85\x2c\xa8\xa6\x2e\x9e\x86\xc5\xa7\x61\x71\xd7\xd2\x4d\xc3\xe2\x93\xd5\xdd\xce\x1d\x9d\x4a\x5b\xb0\x0f\xb3\x4c\x53\x24\x96\x32\xf3\x80\x4f\xe5\xee\x4c\xc7\x12\x41\x99\x96\x30\x54\xee\x52\xa9\x69\xa8\x1c\x54\x27\x46\x4d\x43\xe0\x20\x25\xf3\x18\x4e\x15\x2b\x48\xc9\x5c\x7d\x53\x79\x0a\xaa\x19\x5a\xa7\xf2\x14\xec\xc3\x68\x97\xfa\x14\xec\x32\x2a\xac\x40\x9d\xa6\x87\xcb\xe7\x74\x36\x82\x10\xb8\x0b\x94\xa7\xfa\x14\xec\x9a\x50\x61\xf5\x29\xd8\x65\x5e\xd6\x1b\x96\x0d\x6f\xf0\x1d\x9b\x6a\x51\x50\x4d\xdb\x3b\x95\xa2\xa0\x9a\x0d\x79\xaa\x44\xc1\xfe\xa7\x87\xbd\x96\x9d\xf6\x5b\x13\xdb\x9f\x4f\xfb\xb1\x89\xaa\x13\xec\xe3\x68\x84\xaa\x13\xec\x32\xec\xa9\xec\x04\xd5\x7c\xb7\x53\xd5\x09\x52\x32\xd3\xe5\x54\x75\x82\x5d\x46\x55\x54\x9d\xa0\xf9\xf9\x99\xaa\x4e\x90\x92\xd9\x54\xa7\xaa\x13\x34\xf3\xa9\x4c\x15\x26\x68\x7e\x7d\xa6\x0a\x13\xec\x0b\x78\x98\x6d\x2d\xec\x92\xa9\x49\x14\x98\xb3\x1c\x0f\x26\x65\x2a\xc7\xe9\x92\x6d\x73\x4f\x4e\xa5\x23\xd8\x15\xc1\xe8\x4a\x47\x90\xce\xf6\x89\xd3\x35\xdb\xa0\xf9\x59\x9d\xc6\xbf\x41\xca\x7e\x57\xa6\xcb\xb3\x41\x1a\xc6\x80\xa6\x6b\xb1\xc1\x3e\xce\xff\xda\xb0\xaa\xc7\xd1\xaf\x83\x7a\x12\xec\xe3\xac\x8a\x2d\xab\xfa\x13\x9a\xd7\xf0\x2e\x56\x1d\xb1\x7c\xbb\xa6\x91\xf2\xd9\x74\xaa\x69\x29\x25\x25\xd8\xcd\xe5\x1a\x6a\x4a\xb0\xaf\x8b\x09\x0c\x8b\x83\x7d\x0d\x9a\xab\xaa\x04\xcd\xa4\x77\x53\x55\x09\x52\x36\xcf\xd8\x34\x06\x0e\x52\x36\xcd\xe1\x54\x6a\x82\x5d\x66\x55\x7c\x8c\x9b\x0e\x34\x86\x5b\xd3\x80\x37\xd8\xc7\x79\x0d\x9b\xdb\x5c\x2b\xc4\xa0\x7e\xaa\x36\x41\xfb\x77\x09\x2d\xb0\xd1\x4c\xc3\x35\xd5\x9f\xa0\x9d\xca\x29\x3f\xe7\xd9\xf6\xeb\x1c\xa6\x4d\xfa\x71\x34\x72\x2f\x14\xa0\xb3\x1f\xd7\x9b\xc7\x69\x93\x8d\xd6\x19\x06\x4c\x05\xe8\x3c\xbb\x7e\x21\xee\xa7\x11\x70\x90\xb2\x31\x9b\xa9\xdc\x04\xa9\xfc\xce\x65\x6d\x7f\x67\xc9\x88\xcd\x52\x6f\x4e\x77\x02\xfb\xd9\x2e\x43\xdb\xa0\x39\xa3\x60\xaa\x41\x67\x3f\x8e\x37\x1b\xa6\x45\xba\x4b\x23\xb4\x9c\x22\x14\x34\x7d\x80\x53\xc5\x09\x52\x39\xef\x9d\x92\x13\x34\xc3\x2e\xd3\xb8\x36\x48\x67\x4f\xea\xa9\x0c\x05\xe9\x6c\x39\x3e\x0d\x62\x83\x74\xf6\x42\x9f\x0a\x51\x90\xda\x69\xbf\x4a\x74\x0e\x27\xa0\xfb\x45\x35\x3c\x0d\x52\x71\x9d\xdd\x54\x9e\x82\x5d\xe6\x7f\x6d\xd9\x46\x4f\xe7\x12\x36\x8c\xfc\x6a\xee\x93\x33\x55\x9b\x20\x85\x8b\x16\xa7\x72\x13\x64\x17\xa9\x4c\xe3\xda\x20\xcc\xce\x3e\x55\xa0\xa0\xe8\x86\x9f\xc6\xb0\xc1\xd4\x39\x35\x0d\x61\x83\x56\xf1\x09\x4d\x35\x29\x48\xf5\x18\x44\x4d\x0a\xf6\xc3\x6a\x35\x6c\x7c\x9c\x70\xa7\x17\xf5\xe6\x87\xc1\x19\x0d\xac\x52\x9d\x67\xdf\xb0\x3f\x2c\x07\x9f\x46\xab\x41\x9e\x3e\x1b\x4a\x54\xb0\xfb\x1f\x6e\xba\x82\x74\x9a\x87\xdd\x27\xcd\xb8\x34\x48\xdd\xe0\xd0\x54\xa4\x82\x30\xca\x3b\x15\xa9\xa0\x18\xcb\x99\x8a\x54\x10\x3a\x70\xa6\x22\x15\x84\x71\xf4\xa9\xfc\x04\x53\xb7\xdd\x54\x7e\x82\x72\x1e\x33\x23\xd2\xd3\x04\x6c\xe7\xf3\xae\x22\x9d\x6e\x70\x6d\x42\xae\xa9\x24\x9d\x66\x60\x33\x2d\xdd\x54\x7f\x4e\xb3\xad\x9d\x0f\xbc\x02\x74\x9a\x6d\xcd\x15\xe3\xd3\x40\xf5\x74\x87\x6b\xd7\xb8\x4f\x55\xe9\x34\xdb\x9a\x6b\xbc\xa7\x81\xea\x79\x02\xd5\xdd\x32\x9b\xbf\x51\x4d\x45\x3e\x55\xaf\x60\xdf\x38\x4f\xe7\x0d\x26\x9e\x5d\x8d\x85\x4f\xf5\x2b\xa8\xd3\x56\x28\x56\x41\xfb\xd7\x08\x0d\x70\x42\xd7\xdd\x0a\x6b\x80\x13\xba\xee\x5e\x41\x03\x9c\xd0\xb5\x95\x53\xc1\x82\x56\x71\xf2\x4d\xd5\xea\x74\x3d\xb3\x9e\xd6\x79\x5b\xe1\xdb\x4f\x34\xaa\x7c\x2a\x4e\xc1\xfe\x44\x71\x7b\x54\xa7\xa0\x75\x64\xdb\x54\x9d\x82\xdd\x2e\xff\x6a\x8d\xd9\x7c\xda\xe9\x52\x53\x79\x0a\xf6\x37\xc5\xab\x5a\x61\xf4\x69\x39\xfd\x9b\xfa\x14\x34\x27\x38\x4f\xf5\x29\x48\x67\xc2\xfc\x34\xbc\x0b\xd2\x70\xdd\xcc\x54\x06\x4e\x97\xf3\x3a\xf6\x30\xac\x0a\x86\x89\xf5\xa6\xca\x70\xba\x57\x96\x7d\x96\xca\x10\xfc\x1b\x97\xab\x0c\x41\x64\x07\x6d\x6a\x3e\x70\x5c\x06\x53\xcd\x37\xc9\x40\x7e\x86\x36\x0a\x3c\x30\x9d\xd8\x33\x15\x78\xd3\xc9\xcb\x7e\x4d\x55\x73\x60\x9a\xa3\x68\x1a\x11\x05\xd3\x4c\x4f\x53\x81\x07\xa6\xf9\xa5\xa6\x01\x51\x30\x9d\x72\x33\x8d\x87\x82\x72\x3e\xe0\x86\x43\xc1\x34\xb7\xcf\x34\x1a\x0a\xa6\xc9\xbf\xa6\x62\x11\x4c\x27\x17\x4d\xb5\x22\xd8\x37\xd3\xf3\xfb\xe2\x9a\x86\xcc\x19\x81\xd3\x79\xcf\xd3\x34\x64\xae\x9a\x98\x0a\xc8\x79\x04\xa4\x9f\x6a\x05\xe4\x54\x40\x9a\xb1\x60\x1a\x0c\x05\xbb\x8c\x66\xa9\x16\xa7\x6a\xd1\x3c\x09\x53\xb5\x08\xf6\x98\xd3\x32\x9b\xbf\x1c\x38\xda\x0b\x2b\x17\x41\xab\x5e\x42\x69\x38\xd7\x79\xc4\x2d\xb3\x69\x46\x3e\x8d\x4c\x4f\xa5\x21\x68\x1d\x5f\xc2\x54\x07\x82\xdd\x45\x7a\x98\x2d\x5b\xee\xbd\xe9\x57\x44\x1d\x08\x9a\x51\xb7\xa9\xe6\x03\xe9\x6c\x2c\x3c\xd5\x7c\x60\xf7\x55\xbb\xec\x52\xf3\x5d\x86\x3e\x11\x09\x97\xfa\xee\x72\x23\x2a\x86\xa6\x97\x11\x4b\x30\x4c\x8a\x79\x29\xe5\x2e\xf7\x90\xe2\x0b\x72\x19\x9c\x04\xd9\xa5\x9d\x97\x52\x0d\xe4\x4a\xa3\x2e\x65\x19\xc8\x95\x41\xc9\xa5\x2a\x03\xb9\x4e\xaf\xb8\x2c\xda\x1d\x45\xe3\x11\xb9\xd4\x69\x97\x1b\x2a\xa3\x53\x2e\x75\x1a\xc8\x8d\x67\xeb\x52\xa6\x81\xe1\xaa\xe7\xcb\xa8\x24\xc8\x8d\x4f\xfb\xa5\x4a\x03\xb9\x4e\x8f\xea\x16\x75\x8e\xa2\x8d\x8a\x34\x90\x1b\xbd\xea\x65\x48\x12\xe4\x3a\xbd\xe2\x6d\x11\x5e\xbe\xf0\xf4\xb6\x91\xe0\x63\x73\xdf\xba\xcb\xe0\x23\xc8\x73\x58\x7d\xdb\x9d\x74\xd8\x5a\x0b\xdb\x9d\xe8\x20\xf1\x2d\x5c\x0a\x39\x90\x27\xee\xc7\x4b\x1d\x07\xf2\xe4\xab\x79\x29\xd9\x40\x9e\x3c\x65\x97\xf2\x0c\x9c\x8e\xf5\x52\x9d\x81\x34\x4a\xfc\x41\x81\x5f\x8a\x37\x90\x27\xdf\xcf\x4b\xf1\x06\x52\x2b\xf4\x46\x97\xea\x0d\x44\xf6\xb6\x2a\xde\x40\x9e\xa8\x88\x4b\x9d\x06\x8e\xd6\xbc\x94\x69\x20\x4f\x5c\xd4\x97\x73\x92\x41\xa9\xd9\xa3\xbc\x3b\x85\x7e\x1d\x8f\xc8\xa5\xd2\xba\x4e\x7a\x2c\xcd\x67\x7c\x0f\x84\x9d\xd8\xe5\x94\x64\x50\x2a\xde\xcf\x4b\x41\x06\x8a\x43\xa3\x4b\x41\x06\x4a\x4d\xfe\xd1\xea\xbb\x53\x94\xcb\x7a\x2e\x05\x19\x28\xbe\xf2\x97\x01\x3f\x30\x9d\x2d\x7b\x19\xef\x03\x61\xf2\xf3\x4b\xd5\x06\x4a\xc5\xc9\x70\x29\xc6\xae\xca\xe8\xa5\xfa\x47\x5b\x59\x6d\xa5\x45\xb6\xd2\xd0\x1e\xef\xf6\xa5\x14\x03\xe9\xec\xf4\x7a\x19\xee\x03\x5b\xa4\x51\x64\x93\x2a\xae\xda\xe6\x25\x6d\x52\xf5\xeb\xef\x1f\x6d\x51\xc5\x55\x5b\x3c\xbf\x2d\xda\x08\xf7\x63\xb9\x54\x66\xa0\x54\x5c\x59\x97\x53\x98\x41\xb8\x53\xd1\xa5\x56\x03\xe1\xd6\x31\x97\xb2\x0c\x94\x9a\x3d\x97\x4f\xea\x46\xf1\x1b\x79\x29\xd4\x40\xa9\xd9\x73\xf9\xf0\x36\xdb\xcd\x53\xaf\x26\x03\xe1\xe0\xe6\x32\xd4\x77\xb9\x24\x36\x7b\x94\x0d\x62\xfd\x6b\xc5\x69\x7d\x29\xab\x40\x71\xe0\x71\x29\xab\xc0\x74\x3a\xef\xa5\xaa\x02\x45\x31\x7f\x29\xaa\x2e\x93\x5e\xfb\x45\x53\x2c\x5d\x66\xb3\xd6\xaa\x06\xf0\x40\xea\x79\x58\xe6\x6d\xeb\xf8\x69\x7d\x76\x94\x54\x97\xe9\xac\x35\xab\xf2\xe9\x32\x9d\xb5\x37\x57\xf5\x74\x99\xce\x9a\xf1\xd5\xa5\x7a\xba\x4c\x67\x8d\x02\xbe\x14\x4f\xa0\xa8\xf7\x2f\xa3\x75\xa0\xd8\xa5\x5c\x6a\x27\x50\xf4\x1e\x5c\x4a\xa7\x6b\xd8\x41\x63\x1d\x65\x12\x98\xee\x59\x77\x19\xad\x03\xd3\x08\xea\xa5\x70\x02\xd3\x99\xd8\x97\xba\x09\x4c\xa7\x93\x5f\xca\x26\x50\x1c\xf5\x5d\x4e\xf4\x05\x53\xbf\xd9\xa5\x90\x02\xc5\xf1\xe2\xa5\x8e\x02\x45\x87\xcb\xa5\x8c\x02\xa9\x3b\xc8\xb9\xd4\x51\x60\x3a\xb9\xf8\x52\x33\x81\xa9\xfb\xee\x52\x33\x81\xe9\xfc\xfd\x4b\xcd\x04\xa6\x01\xe0\xcb\xa8\x1d\x98\xce\xad\xbf\x94\x51\xa0\xe8\x5a\xb9\x94\x51\x60\x3a\x3d\xfc\x52\x46\x81\xe2\xcc\xca\x4b\x25\x04\xf6\x78\x03\x5b\x18\xb4\x03\x67\x7b\xb2\xcb\xa0\x1d\xa8\xae\x56\xbc\x54\x44\x60\xff\x93\x6a\x38\x7f\x17\xa4\xaa\xd7\xef\x52\x26\x81\xb3\x45\xeb\x65\x24\x0f\xec\xbf\xd2\x4e\x95\x13\xa8\xa7\xe3\x51\x39\x81\xfd\x9d\xa4\xed\x2a\x27\x50\x5d\x1c\x7f\xa9\x9c\xc0\x3e\x1b\x8d\x57\x27\x81\x93\x59\xef\x32\x98\x07\xf6\x61\xdc\x29\xa3\x79\xe0\x6c\xc7\x78\xa9\x9d\xae\x13\xba\xb3\x23\x53\x28\x5d\x66\xaa\xf6\xe1\x30\x4e\x07\x8a\x6e\xb0\x4b\x99\x04\xea\xf9\xea\xaa\x88\x40\x75\x55\xe1\xa5\x20\x02\x67\x8f\xe2\x4b\x3d\x04\xea\x79\x0b\x95\x43\xe0\x24\xbc\xbd\x94\x43\xa0\x1a\xf2\xbb\x0c\xe6\x81\xea\xac\x85\x4b\x81\x74\x1d\x81\x64\x77\xa6\x40\x02\xd5\x25\x9d\x97\x01\xbe\xeb\x3a\xb7\xdd\x26\x79\x43\xaf\x33\x2f\x82\xd3\x39\x69\x17\x54\xf7\x93\xbc\x14\x43\xa0\xba\x35\xe1\x65\x38\x0f\xa4\x28\xbf\xdf\x1f\x3a\x67\xf5\x13\xa8\xee\x11\x79\x19\xda\x03\xe9\x67\x02\x80\x4b\xf9\x04\xaa\x7b\x0b\x5e\xaa\xa7\xcb\x6c\xd3\xce\x53\xbd\x9c\x81\x7b\x99\x6d\xda\xac\x61\x97\x92\x0a\x54\x37\xd1\xbc\x54\x54\x60\xff\xd5\xba\x7b\x6f\x6f\x1d\xeb\x76\xd0\x4a\x2a\x50\xdd\x1f\xf3\x52\x51\x81\x7d\x18\xf7\xcd\xd9\xb6\xa0\xba\x35\xe8\xe5\x64\x5b\xb0\xaf\x40\x85\x9d\x6c\x0b\xaa\x5b\x13\x5e\x46\x06\xc1\x3e\x9b\x65\x5a\xe4\xd1\xd9\xee\x9b\x6e\xb4\x10\xd4\x7e\x2e\xaa\x95\x48\x05\x95\x5c\x96\x7a\x19\x40\x04\xd5\xfd\x10\x2f\xa3\x85\xa0\xf6\x53\x0f\x5b\xff\x30\x95\xc4\x21\x86\xa1\xc1\xcb\x34\xd2\x6e\x38\x70\x39\xd5\x16\xec\xba\x61\x5f\x45\x21\xa8\xee\x21\x7a\x29\x0a\xc1\x3e\x8c\x2b\xa8\x0a\xaf\xf7\x34\x0b\xfb\xaa\x01\x41\x75\xa3\xcc\xcb\xe8\xe0\x65\xca\x68\xd7\x1c\x5e\x86\x07\xc1\x36\x1c\x37\x5f\xad\x08\x76\x19\xed\x52\x2c\x5e\x4e\xb5\x75\x4d\xce\x65\x84\x10\x54\xf7\xa4\xbc\x14\x90\xa0\x9e\x0e\x5d\x01\x09\xb6\xe1\x3c\xcc\x9b\xef\x44\x5b\xd7\xbf\x5e\xaa\x4a\xb0\xcb\xb8\xad\xca\x4a\xb0\x55\x14\x06\x50\x57\x82\x7d\x1c\xf6\x54\x58\x82\x7d\x1c\xe7\x53\x46\x82\x7d\x1c\xad\x50\x34\x82\x7a\xc6\x59\x8a\x46\x50\xcf\x70\x49\xcd\x08\x52\x32\xa6\x7c\x39\x7f\x16\xa4\x76\x1e\x61\x35\x23\xa8\x6e\x54\x78\x29\x0f\x41\x9d\x7e\xe9\x0d\x39\x82\x7a\x86\x3d\x46\x1c\xc1\xbe\x00\x26\x51\x44\x82\x5d\x5d\x4c\xa7\x88\x04\xf5\x0c\xf8\xd4\x90\x60\xb7\x94\xd6\x1b\x85\x04\xd5\xf5\xd8\x97\xb2\xf2\x22\xe4\x98\x4c\xfd\x71\xa9\x2b\x41\x75\xed\xf8\xa5\xac\x04\xd5\xcc\x22\x97\xaa\x12\x54\xf7\xf5\xbd\x54\x95\xa0\x9e\x91\x95\xa2\x12\xec\x16\xd0\x50\x45\x25\xa8\xae\x99\xbf\x14\x95\xa0\x9e\x41\xa6\x9a\x12\xec\x7f\xee\x7b\x70\xab\x29\x41\x75\x13\xc8\xdb\x30\xe2\x4d\xcc\xd0\xb1\xe8\xad\xa6\x04\x67\x0e\xd2\x6d\x18\x11\xa4\xe4\xf6\x71\xb7\x61\x44\x90\x92\xd1\xd6\x5b\xed\x09\xf6\x71\x83\xb2\xb0\xcc\x85\x07\xa8\x8d\x5b\xf5\x09\xce\x34\xc6\xdb\x40\x21\xd8\x87\x65\xca\x1e\xcb\xec\xab\xa6\x97\x78\x2d\xd3\xcf\x85\x2c\xb9\x95\xa9\xa0\xe9\xe7\xbb\x95\xa9\x60\x1f\xb6\x6f\xd6\xad\x4e\x05\xcd\x0e\xfd\x56\xa7\x82\x7d\x18\x57\x50\xa8\x82\x5d\x86\x99\x54\xaa\x60\x37\x96\xda\x19\x64\x04\xfb\xde\xd3\x0a\xe5\x2b\xd8\xff\xc5\x78\xea\x57\x90\x92\x7b\x7f\xdd\x0a\x58\x70\xf2\x49\xdc\x0a\x58\xb0\x0f\xa3\x61\xce\xa9\x05\x4d\x67\xc9\x6d\x2c\x12\xec\x9a\x78\x55\x6d\x97\x88\x63\x55\x2b\xa7\xe9\x92\x71\xac\xf0\xaf\x9a\x2e\x11\xc7\xf2\xf6\x2b\x74\xef\x74\x3c\x84\xda\x44\xd3\x25\xe7\x14\xe3\xd9\xbe\x9d\x79\x0b\x9a\x63\x8b\x5b\xf5\x7b\xe7\x63\x26\x2a\xa2\xfc\x05\x29\xeb\x98\xbc\x0d\x63\xde\x27\x39\x14\x0f\xff\xad\x26\x06\x29\x9f\x5b\x61\x1c\x13\xec\x32\xcc\xa4\x50\x06\xfb\x7c\x1e\xa7\x9d\x36\x9a\x32\xe2\x56\x09\x83\x7d\x18\x56\x57\x0a\x83\xa6\xbe\xb9\x55\xc2\xa0\x6d\xa9\xf7\x9f\xbd\xf8\xad\x50\x06\xa9\x3b\x69\xea\x76\xbe\x2d\xd8\xed\xb1\x4c\x93\x65\x63\x66\x3e\xd0\x2a\x6a\xb0\xcb\xb8\xc7\x4a\x6a\xb0\xcb\xa8\xa8\x61\x4e\xb0\x2b\x4f\xbb\x0d\x73\x82\x7d\x1c\xd7\x50\x68\x83\x7d\x5d\xcf\xa7\x7d\x8a\xf6\xe1\xa3\x77\xab\xb4\x41\x53\x30\xdf\x2a\x6d\xb0\xff\xca\x9d\x57\x6a\x83\x5d\x66\x95\x35\x50\x31\x44\xe8\x6d\x56\x6c\x83\x7d\x9c\x65\x9a\xa0\x68\x02\x9f\x24\xd5\x36\xd8\x4f\x0d\xc7\x29\xb7\x41\xca\xa6\x85\xb8\xd5\xdb\xa0\x19\x82\xbb\x0d\x92\x82\x7d\x18\xad\x30\x48\x0a\x52\x37\x22\x72\x3b\xc1\x16\xa4\xf2\xf3\xc5\x54\x98\x83\xe6\x02\xfb\xdb\x20\x29\xd8\xb5\xf3\x12\x3e\x34\xf5\x04\x53\x3c\x4e\x43\x55\x56\x34\x9c\xb3\x69\xa8\xea\xec\x7c\xbf\x69\xc6\x52\x6f\x63\xa9\xae\xce\xbf\x55\xf0\x37\x71\xd3\x6a\xa4\xff\x56\xaf\xdf\x95\xa8\xa1\x9f\x3e\xc5\x39\xd8\x57\xa5\x61\xaa\xf3\xdb\x50\xaa\xf9\x0e\x6e\xe5\x39\xd8\x65\xd4\xce\x50\xea\x6d\x28\xd5\x14\x0e\xb7\x9a\x1d\xec\x32\x6c\xac\x68\x07\xbb\x8c\x47\x4a\xd5\x0e\x76\x19\xf7\x56\xd9\x7e\x9f\xf8\xaa\xdf\x52\xe3\xab\xa0\x19\x61\xba\x95\xf2\xa0\x1d\x03\x18\x5d\x05\xcd\x48\xc0\x6d\x70\x15\x34\x63\xb0\xb7\xb1\xd5\xdb\xd8\xaa\x92\xfc\x56\xf1\x83\xd4\x9c\x7d\x72\x1b\x5c\x05\x6d\x30\x5a\xb8\xf5\x02\x80\xfd\x57\x4e\xa7\xe6\x07\xa9\x39\x1e\xbd\x15\xfd\xf7\x89\xa4\x22\x9b\x6f\xc3\xa6\x60\x97\x79\x9c\xcd\xdf\x68\x83\x81\xd0\xad\x27\x00\xec\xc3\xb0\xb0\x9e\x00\xb0\xcb\x68\x98\xae\x00\x90\x9a\x0b\xf6\x6e\xa3\xab\x60\x1f\x67\x95\x7d\x28\x36\xda\x60\x0c\x75\xeb\x1f\xb8\x8d\xae\xfe\xfc\xa7\x36\xe9\xda\x04\xcf\xc5\x6d\x24\x15\xb4\x61\xa7\xa1\x83\x00\xb4\xa1\x95\x94\xfe\xa0\xb9\x82\xfb\x56\xd4\x83\xe6\x22\xf4\xdb\x15\xbd\x60\xbf\x10\xd4\x4c\xa1\x0f\x76\x99\x17\xb0\x05\xe3\x04\x83\xfd\xaf\x75\x1b\x46\x5f\xb0\xa5\xba\x1e\xa4\x72\xbe\xde\xea\x7a\x90\xca\xf9\xb2\x19\x20\x05\x4d\x57\xc5\xad\xd6\x07\xa9\xb9\xf7\xc7\xad\xd8\x07\xfb\xaf\xb4\x4b\x69\x0f\xf6\x25\xb8\x0f\x6a\x7b\xb0\x8f\xe3\x7e\x29\xee\xc1\x2e\xc3\x9a\x06\x44\x41\x3a\x1b\x79\xde\x06\x3f\x41\x73\x77\xd7\x5b\xc5\x0f\xd2\xd9\x44\xf3\x56\xf1\x83\x5d\x66\x2b\x6c\x6d\x1c\x47\x3c\xc6\x53\xdf\xdf\x47\xdf\x33\xea\xbb\x15\xf3\xa0\x19\x92\xbc\xd5\xf2\xa0\x19\xde\xbc\xd5\xf2\xf7\x3c\xcb\x21\xa8\x89\xc2\x1d\x34\xe3\x9b\xb7\xba\xfd\x46\xa4\x17\x53\xa9\xde\x8a\x74\xd0\x8c\xa9\xde\xc6\x3c\xc1\x96\xaa\x98\x4e\xe1\x0e\x9a\xee\xd8\x5b\xdd\x0e\x52\x31\x42\x74\x1b\xe0\x04\xa9\xa8\x8c\x6e\xc5\x3c\x48\x27\x63\xd6\xad\x2e\x04\x69\x98\x86\xe0\x76\x78\x0f\x76\xd9\xbe\xc6\x63\x17\xf3\xd8\xc5\x30\x18\x78\xec\x61\xc0\x71\x5b\x3c\xf6\x26\x00\x81\xbc\x7f\x3f\x16\x11\xe3\x42\x2b\x3d\xf6\x25\x60\xab\x72\xff\xf9\x59\xa6\x3e\x45\x65\x3e\xf6\x25\xe0\xcc\x48\x7d\xec\x36\xc0\x99\xb4\xfd\xd8\x6d\x3c\x76\x1b\xb9\xf5\xff\xee\xcf\x1f\x7b\x15\xb0\x3f\x82\xb4\xc6\x5e\xe5\xb1\x57\x31\x9a\xf5\xd8\xab\x3c\xce\xbd\x21\xb0\xf7\xd8\xab\x80\x61\x32\xd0\xc7\x4e\x05\xe4\xc6\x47\xe0\xb1\x4f\x01\x79\xf2\xe1\x7d\xec\x53\xc0\x74\x52\xdc\x63\x97\x02\xa6\x53\xd1\x1e\x7b\x94\xc7\xcc\x16\xd5\x3f\x6a\xad\x7a\xd4\x7c\xa7\x4c\x6b\x6d\x54\xf7\xe9\x7f\x74\x0a\x83\x3d\xd2\xa3\xcc\x8e\x07\x34\xbd\xaf\x8f\xfd\x0e\x48\x51\xf8\x3e\x3d\xf6\x27\xa0\x4d\xba\xa2\xc7\xee\xe4\xb1\x3b\xc1\xb5\xf7\xd8\x9b\x80\xee\x7e\x38\x8f\x9d\x09\x18\xa6\xab\x7d\xec\x25\x40\x9e\xa7\x16\xb6\x69\x77\x09\xff\x7b\x45\x2b\xdb\xf4\x60\x53\x31\x1d\xbe\xa0\x54\x5c\x05\x8f\x1f\xff\xe7\x38\x7c\xa9\x97\x33\x66\xc0\x54\xa1\x3f\x7e\xfa\xc1\xd4\x01\xf2\xf8\xe5\x07\x53\x7f\xc2\xe3\x57\xfe\x31\x17\x84\xc3\xa6\xc7\x2f\x3a\xa8\xce\x08\x7f\xfc\xa0\x83\x6a\x92\xae\xc7\x0f\x3a\xa8\x9d\x41\xce\xe3\x07\xfd\x71\x47\x82\xe6\xf9\x6d\x51\x3f\xe6\xa7\xcc\x0f\x3a\xd8\x65\xfc\x55\x97\xef\xe3\x8e\x04\x6e\xbf\xfc\xe8\xf3\x05\xbb\x8c\x8a\x38\x5f\x06\x9c\xb9\xb9\x8f\x4e\x5f\xb0\x1f\x74\xff\x6a\x4b\x87\x5d\xbc\x37\xca\x1e\x02\xec\x32\xac\x6b\x17\x01\xba\x1f\xc3\xc7\x1e\x02\x64\xf7\x48\x7c\xec\x20\x40\x6e\x3f\xeb\xa1\x41\x06\x99\x04\x7d\x53\xec\x32\x40\x14\xba\xae\xc7\xae\x00\x84\x92\xf8\xb1\x2b\x00\xa1\x34\x7f\xec\x09\x40\xa9\xf8\x3e\x1e\x3b\x82\xc7\x79\x31\xa7\xc8\x26\xe9\xd0\xf5\x41\x70\xbe\x0b\x28\x2a\xa7\xc7\x2f\x3e\x28\xaa\xa4\xc7\xaf\xfb\xa3\x3f\x77\x58\x64\x55\xf5\xe7\xfa\x4e\xeb\xcf\x7d\xf4\xe7\x3a\x1d\xfb\xf1\x7b\xff\x98\xef\xdf\x00\xc4\xa3\x3f\xf7\x31\x1f\x83\x33\x55\x1e\x3f\xf8\xa0\xba\x14\xed\xf1\x83\xff\x98\x8e\xc1\x9d\xde\x1f\x9d\xb7\x8f\x9b\x00\x84\x1f\x09\x27\xb9\x80\x94\x9d\xf6\xfc\xd8\x0b\x80\x7d\x43\x3d\xce\xa6\x4e\xa7\xf1\xf9\x6c\xd9\x33\x80\x7d\x43\xad\x8a\xf7\xe5\x5f\xd7\xc0\x1d\xb5\x6b\x00\xbb\x1f\xc0\xe6\x4e\x88\x01\x29\x9f\xbf\xfa\xf1\x60\x85\xc6\xef\x5c\x41\xa3\x4c\x27\xff\x6b\x28\x7b\x0b\x90\x4d\xdc\xfb\xe8\xfa\x7d\xae\xcc\xf3\xc1\x3f\x75\xfd\x82\x61\x96\xe6\x47\xd7\x2f\x18\xa6\x5f\x7e\x74\xfd\x82\x70\x8f\xce\x47\x3f\x2f\xc8\x53\xbb\xe9\xe7\x05\x79\xfa\x0a\xe9\xe7\x05\x79\xfa\x06\xe9\xe6\x05\x79\x6a\x5c\xdd\xbc\x8f\xeb\x38\x7c\xa7\x9c\x1a\x03\xf2\xf4\x95\x72\x6a\xcc\x63\xfa\x43\xa7\x96\x3d\x3a\x83\x41\xa9\xf4\x92\x8f\xbe\x60\x10\xe7\x13\xa0\x2f\x18\x14\x9d\x08\x8f\xa9\x1a\x40\xa9\x74\xea\x8f\xee\x61\x50\x2a\xc3\xa6\xc7\x4c\x0d\x20\xce\x03\xa3\x47\x18\x14\x93\x73\x3f\x4e\xa8\x01\xc5\x9d\xa8\x1f\x9d\xc4\xa0\x54\xc6\x42\x8f\x3e\xe2\xc7\xf5\x1f\xde\x36\x7d\xc4\x8f\xeb\x3f\x18\x6b\x3f\xba\x88\x41\x71\xa3\xc1\x47\x0f\x31\x28\xb5\x78\x2e\x4d\x71\x93\x3e\xae\xd8\x20\x9f\x0a\x97\x84\x34\xff\xa8\x71\x6e\x8c\xc3\xe0\xeb\xd1\x3f\x0c\x4a\xf5\xe5\x71\xc6\x0d\x28\xd5\x8e\x5b\x8f\x31\x28\x7a\x3f\x1e\x3d\xc6\xa0\xc4\xf8\xc3\x02\xb0\x47\x7f\x32\x28\xfa\x15\x1e\xfd\xc9\xa0\xe8\x56\x7a\x74\x1d\x3f\x0f\x71\xbc\x61\x1d\xb5\x8a\x8b\x4a\x90\x8c\x8f\x2b\x48\xc0\xd4\xcb\xf6\xe8\x26\x06\xa9\xff\xec\x90\xf5\x13\x3f\xfa\x89\x15\xc3\x8f\x7e\xe2\x07\x9f\xb0\x8b\x97\x1e\x7d\xc2\x8f\xdb\x08\x22\x22\x1f\x5d\xc2\x60\x77\xab\x5c\xc1\x99\x42\x8f\x6e\x62\x3d\x1e\x8f\x6e\x62\x90\xaa\xee\xb8\x47\x3f\xf1\xa3\x9f\x58\x69\xfd\xe8\x13\x7e\x8e\x4f\xd8\xc7\x44\x9f\x30\xd8\x65\x9e\xcf\xdb\xfd\xfa\x19\x20\x48\xf6\xe8\x14\x06\xb5\x9f\xd3\xd9\xd8\xd7\x31\x84\xe3\x0a\x9d\xc2\xa0\xf6\xea\x3f\x6d\xff\x7b\xbe\x8d\xb4\x4c\x9f\x30\xa8\x1d\x57\xc5\xa3\x4b\x18\x54\xd3\xbf\x3e\x0e\x19\x9f\x8f\xc9\xf7\x36\x55\x87\x30\xa8\x6e\x98\xfd\x38\xaf\x08\xec\xf3\xf3\x0c\xeb\x23\x06\xb5\x3b\xa2\xd3\x47\xfc\xb8\x08\xc5\x35\x3a\x8f\x4e\xe2\xc7\x89\x45\x2e\x60\x79\x9c\x58\x04\xf6\x57\xcb\xff\x6a\xa4\x8f\xb5\x07\xbe\x12\xfa\x8d\x41\xea\xae\x5c\x7b\x9c\x6b\xf4\xe0\x38\x36\x13\xf4\xa3\xe3\x18\xec\x0f\x3e\x67\xd3\x4b\xfc\x1c\x2f\x31\xb1\x9a\x47\x2f\xf1\xe3\x54\x23\x3d\x2b\x8f\x6e\x62\x90\xfe\xf5\x89\xba\x89\x1f\xa7\x1f\xe9\x7a\x7a\xf4\x13\x83\xea\x84\xb5\xc7\xd5\x2a\xcf\x71\x1d\x7b\x07\xf5\x13\x83\xd4\x8b\x1f\x77\x1d\xc5\xe0\x4c\x9f\x7e\x5c\x99\x02\x76\xdf\xe3\x15\x6c\x3f\x3b\x08\xe8\x95\x7a\x74\x1e\x83\xa6\xd7\xe7\xd1\x77\x0c\xda\x79\xce\x5d\x97\x02\xce\x14\xf0\x47\x77\xf2\xe3\x06\x01\x86\xe7\x5e\x7d\xc7\xaf\xf3\x91\x8c\xf5\xbd\x4e\x48\x7a\xcd\xab\x60\xe0\xf0\x35\xaf\xc2\xeb\x9e\x85\xce\xe1\x78\xf5\x28\xbf\x6e\x06\x60\xc4\xf5\xd5\xa5\x0c\x9a\x13\x17\x5e\x3d\xca\xef\xef\x8c\x5f\xfc\x6b\x58\x86\x8b\x22\xac\xc9\xb4\xc8\x19\xe0\x04\x2b\x5e\x1d\xca\xa0\xe9\x2c\x79\x75\x28\x83\x34\xcc\xe4\xf6\xea\x50\x06\xa9\xfb\xe0\xbc\x3a\x94\x41\x1b\x3f\xcf\xb6\x2c\x52\xa3\xef\xe7\xfc\xd5\x77\x0c\xb6\x84\xe6\x9f\x3a\x8f\xc1\x6e\x2a\x57\xd0\x79\x0c\x76\x19\x66\xd2\x79\x0c\xda\x38\x7f\xd5\x22\xc9\xe4\x03\x56\x4e\xdf\x31\xd8\x9a\xd7\xbf\x6a\x12\xfc\xc4\xce\x1d\x7f\xf5\x13\x83\xd4\xd4\x18\xaf\x7e\xe2\xd7\x7d\x04\xca\xb9\x84\xed\xc7\x29\xec\xb4\xc3\x57\xa7\x30\x48\xa7\x3b\x7e\x75\x0a\x83\x74\x32\x3f\xbf\x0e\xb6\x41\x72\x32\xd0\xeb\xc8\x1a\xe4\x49\xdf\xfe\xea\x53\x01\x79\xf2\x10\xbe\x0e\xb6\xdf\x3d\xd8\x9e\xc6\x4e\x5f\x07\xd6\xa0\xba\x46\xf3\x75\x60\xfd\xba\xd7\x97\xf2\xe4\x75\x64\x0d\xaa\x49\x97\x5f\xa7\x52\xbc\xee\xf5\x75\x1e\x11\x47\xdb\xef\x19\x6d\x5b\x0f\x47\xdb\x20\x39\x9b\xea\x75\x60\x0d\x86\x3b\xcf\xbe\x8e\xab\x41\x36\xc3\xc4\xab\x93\x05\x64\x93\x33\xbc\x0e\xab\x5f\x57\x43\x4f\xff\x68\x33\x59\x0d\xdd\x92\x47\xd9\xcc\x41\x22\x66\xed\xe3\xa0\x1a\x44\xf1\x29\x72\x50\x0d\x52\x75\x5a\xe3\xeb\xa8\x1a\x44\xf1\xc9\x72\x54\xfd\x9e\x51\x35\x27\x73\x54\xfd\x3a\xaa\xb6\xae\x8e\xaa\x41\xa9\xd5\xa3\x6c\x64\x98\x96\x40\x6b\x3b\xac\x06\xe1\x77\xe6\xd5\xbd\x02\x4a\xf5\xa9\x72\x58\x0d\xc2\xdc\xcf\xaf\xc3\x6a\x50\x6a\xf5\x5c\xde\xa6\xb0\xef\xfc\x83\xbc\x7e\x1d\x75\x83\x69\x04\xf6\xd5\xcb\xf2\xb2\x31\xb8\x01\xf6\xd7\x41\x37\x98\x86\x33\x5f\xc7\xdc\x60\x1a\x69\x7e\x75\xbb\x80\xa9\x20\x7e\x1d\x85\xbf\x13\x0d\x48\xd7\xf8\x3a\xe2\x06\xd5\x2f\xfc\xab\xd7\xe5\x3d\xd3\x25\x9a\x27\xb3\xc1\x6e\xf6\xed\x2b\xe3\x38\xfa\x75\x63\x6f\xbd\x58\xaf\xe3\x68\xb0\xcb\xb8\x3d\x8e\x90\x41\x35\xef\xfa\xeb\x00\xf9\x75\xc7\x6e\xe7\x9f\xbf\x8e\x90\x5f\xe7\x90\x3b\x63\xe8\x75\x88\x0c\xaa\xa9\xcb\x5f\xc7\xc3\x60\x3f\xd3\x54\xd8\xb9\x10\x20\x1d\x8d\xf6\x3a\x48\x7e\xdd\x11\xcb\x99\x76\xaf\xa3\xe4\xd7\x1d\xb1\xe8\x7d\x5f\x47\xc9\xaf\xb3\x21\xce\x9b\xe4\x30\x19\xec\xcf\xa3\x97\xb5\xb1\x4c\x87\xc8\x4e\xa2\x7f\x1d\x28\x83\x7d\x9c\x2d\xf3\x06\x32\x52\xce\x2e\x57\x78\x9d\x44\x0e\x52\x76\x4a\xd3\xeb\xe8\x19\xa4\xf2\x63\x70\xf4\x3a\x56\x06\xa9\xe8\x00\x7f\x1d\x2c\xbf\xee\xa8\xe5\x97\xda\xc1\x32\xc8\x66\x84\x79\x1d\x2c\x83\xd1\x7d\x81\x1d\x2c\x83\xe1\x14\xf2\xd7\xc1\x32\x18\xfd\x9c\xcb\xe6\x33\x32\x2e\xbe\x9a\x8e\x8c\x41\x9e\xbe\xc0\x0e\x83\x41\x94\x9f\xe7\xb2\x4d\x37\x6b\xd5\x11\x2f\xaf\x63\x5e\x10\x85\xf1\xd9\xeb\x98\x17\xa4\xa1\x24\x7b\x1d\xf4\x82\x70\x07\xe6\xd7\x41\x2f\x88\x42\x9c\xfc\x75\xd0\x0b\xd2\xbf\xf7\xdc\x31\x2c\x08\xa7\x6b\xbe\x4e\x89\x00\xc5\x0c\x8a\xaf\xc3\x5a\x10\x66\x22\x78\x9d\x11\x01\x42\xff\xe0\xeb\xec\x07\x50\xaa\xcf\xae\x23\x5d\x50\x6a\xb3\xfe\xde\xcd\x87\x49\x85\x4c\x6a\x7a\xcd\x3d\x06\x8a\x1b\x23\xbd\x8e\x7d\x41\x98\x3d\xe0\x75\xf5\x34\x98\x8e\xe0\x5e\x47\xc3\xa0\x54\xc6\x4d\xaf\xa3\xe1\xd7\xcc\xe0\x0e\x08\x1c\x0d\x83\xd4\x8f\xc5\x1c\x0d\x83\x30\x1f\xc2\xeb\x60\x18\x84\xcb\xef\x5f\xc7\xc2\xaf\x2b\xaa\x19\xf4\xbf\x4e\x99\x78\xcd\x16\xee\xe0\xc2\xd1\x31\x08\x33\x30\xbc\x0e\x8e\x41\xa9\xa7\xae\x5a\xc7\x6c\xe1\x8c\x68\x5e\x87\xc6\xaf\xd9\xc2\xbb\xf5\xd2\x3a\xac\xa8\xae\xbe\xb0\x0e\x83\x5f\x97\x4f\xdb\x29\x3b\x0a\x7e\x9d\x70\xef\xab\xee\x28\xf8\x75\x45\xb5\x7d\xad\xa3\xe0\xd7\x09\xf7\x5e\xd1\x09\xf7\x60\xba\x0b\xc9\xeb\xc0\x18\x14\xbd\x42\xaf\x83\x60\x50\x74\x00\xbd\x0e\x82\xc1\x34\xcb\xff\xeb\x18\x18\x14\x23\xed\xaf\x43\x60\x30\x1d\xc7\xbe\x8e\x80\x41\xd1\x0f\xf8\x3a\x02\x06\xd3\x41\xf1\xeb\x00\x18\x4c\x87\xf5\xaf\x03\x60\x30\x1d\x89\xbf\xce\x9c\x00\xc5\xe8\xf1\xeb\x90\x18\x4c\x5d\x8f\xaf\x23\x62\x30\x55\x12\xaf\x03\x62\x30\xd5\x20\xaf\xe3\x61\x50\x0c\x9d\xbf\x0e\x87\xc1\x54\x48\xbc\x8e\x5f\x41\x31\xac\xfd\x3a\x58\x05\xd5\x24\x16\xaf\x83\xd5\xd7\x4d\xb7\xf5\xa6\xbc\x8e\x56\xdf\xb3\x8a\xda\x77\xc6\xd9\x0f\x60\x77\x02\xbb\x4d\x9f\x23\xd8\xcf\x5d\xb7\x9d\x82\xf7\x39\xfd\x01\xa4\xee\x48\xf7\x73\x54\xfb\xb9\x13\xb7\xee\xb6\xcf\x51\x2d\xd8\xff\xcd\x94\x55\xcb\x4c\x51\xdd\xbd\x46\xb3\x4c\xe9\xc7\x3b\xf7\x39\xac\xfd\x5c\x6f\xed\xc8\xf9\x73\xa2\x04\xd8\x65\x85\xb2\x69\xd9\xf1\x54\x76\xca\x2e\xcb\x5c\x70\x7e\xea\xf7\x5a\xa6\x0d\xe8\x57\x3e\x67\x40\x80\xd4\xf6\x77\xe3\x3f\x3b\xeb\xcf\x41\x2e\xa8\xee\x39\xf1\x39\xc8\xfd\x5c\x70\xed\xc5\x1c\xe3\x7e\x67\xc1\xb5\xc6\x70\x8c\xfb\x99\x87\xdc\xa9\xb0\x9f\x63\x5c\xb0\xcb\x3c\x9d\x06\x3a\xab\xb0\xcf\xf9\x34\x90\x9b\x6c\x1b\x4c\xfb\x1c\xe4\x7e\x67\x19\xb6\x0d\x77\x82\x04\xd8\xff\xb5\x2c\x2c\x53\x0a\x6a\x34\x47\xbe\xdf\x59\xae\xed\x8d\x76\x8a\xc4\x67\x66\x73\xfd\xc7\x9f\xa3\xe1\xcf\xcc\xe6\x86\x27\x3f\x87\xc3\x9f\x5b\x6f\x3b\x69\xfc\x73\x38\x0c\x6a\x3f\x4d\xd3\xb6\x09\xbd\xec\x6d\x76\x8a\x04\xa8\x26\x10\xfa\x9c\x21\xf1\xe5\x33\x28\xe0\xae\xb8\xf8\xfb\x73\xdf\x6d\xeb\xe1\xac\x09\x50\xbb\x4d\x70\xd2\xc4\x67\xfa\x73\x67\x2e\x7f\x4e\x9a\xf8\x4c\x7f\xee\xa4\xe1\xcf\x49\x13\x60\x97\x61\x4e\x27\x4d\x7c\xe6\x3f\x37\xae\xf9\x39\x41\x02\xec\x67\x1a\x13\xbb\xbc\x00\x54\xf7\x47\xf9\x9c\x34\x01\x52\x73\xec\xf4\x39\x69\x02\x54\xf7\x9d\xf9\x9c\x02\xf1\x39\x05\xc2\x15\x92\x9f\x53\x20\x3e\xd3\x9f\x1b\xb0\xfd\x9c\xee\xf0\xb9\xd0\x5b\x77\xd0\xe7\x74\x07\x50\x1d\x67\x7e\xce\x76\xf8\xca\x11\xc7\x98\xce\x55\x05\xa0\xfa\xa1\xff\x9c\x00\x01\xaa\xdd\xe0\xe7\xfc\x07\xb0\x2f\x40\xf3\x5d\x69\x00\xf6\xd9\xb8\x37\x46\xa7\x40\xb5\xd7\xfb\x9c\xff\x00\xd2\x19\x02\x7c\x86\xa7\xbe\xe2\x74\xb9\x62\xe5\x6c\x57\x39\x8a\x83\x1b\x66\x2c\x0a\xec\xe3\xa8\x8a\xf3\x1a\xbe\x7a\xbc\x03\x58\xdd\x00\xd5\xe7\xea\x6f\x5d\x6b\x9f\x11\x2a\x50\xed\x21\x3f\xd7\x16\x80\xea\xd0\xfe\x33\x00\xf5\xb9\x37\xb7\xee\xf1\xcf\x00\x14\x48\x27\xab\xd4\x67\x04\xea\x73\x6f\x6e\x83\x9d\x9f\x21\x28\xd0\xce\xa7\xc0\x10\x14\x68\xe7\xeb\x65\x08\x0a\x34\x3f\x9a\x9f\x21\x28\xd0\xce\xf7\xd1\x10\x14\xd8\xe7\xf7\x9f\xde\x7d\xb7\xe6\x76\xad\xfa\x67\x0c\xea\x73\x6b\xee\x60\xf4\xf4\x19\x84\x02\xbb\xe3\xa7\x22\x06\xa1\xc0\x3e\x0e\xcb\x39\xab\xe1\x73\x6b\x6e\xf7\x3a\xfb\x8c\x42\x7d\xce\x6a\x50\x94\x7f\x86\xa1\x40\x3b\x06\x36\x0c\xf5\x39\xa9\xc1\x69\xbe\x9f\x71\xa8\xaf\x1d\xe7\xba\x7f\xb5\xfd\xcc\x60\x70\x84\xfd\x19\x9b\x02\xfb\x0a\x96\x69\x00\xd7\x8c\x3b\x6f\xfb\x33\x60\xf5\xb9\x66\xfc\x7c\xbd\x9d\xd7\xf0\x39\xaf\xc1\x60\xd1\xe7\xbc\x06\xb0\xcb\x30\xa8\x91\x2d\xd0\xce\x93\xe8\xbc\x86\xaf\x1f\x97\x09\x06\x35\xda\xf5\xb9\x6a\xdc\x69\xce\x9f\xe1\xae\xaf\x1f\x37\x0a\x97\x70\xae\x03\x68\x8e\xff\x3f\x55\x39\x68\xe7\xe1\x34\x04\xf6\x39\xfb\xc1\x19\xd2\x9f\x4a\x1d\xb4\xf3\x82\xa9\xd4\x3f\x67\x3f\x38\x5d\xfc\x53\xaa\x83\x34\x4c\x11\xf0\x39\xfb\xe1\x3b\x1b\x7e\x0d\x2f\xa1\xed\x9c\xfd\xe0\xfa\xc2\x4f\x01\x0f\x9a\x53\x58\x3e\xf5\xfb\xd7\x8f\x72\xf0\x12\x9a\x04\xb1\x9e\x5d\xad\xf8\x19\x06\x03\x69\x38\x83\xfe\x53\xad\x83\xe6\xac\x96\x4f\xb5\x0e\xf6\x5f\x2d\xb3\xfd\xcc\x89\x70\x92\xcc\x67\x64\x0c\xec\x4f\x1d\x95\x53\xc2\x83\xe6\x7c\x98\x4f\x09\x0f\xf6\xd3\xe9\x61\xb6\x9f\xb9\x13\xd9\x98\xc9\xa7\x62\x07\xcd\x79\x48\x9f\x82\x1d\xec\xc3\x68\xab\x4b\x22\x40\x6b\xa7\x09\x3e\x11\x4c\x9d\x18\x6e\x1d\xfc\xa9\xe2\x41\x3a\x09\x0c\x3f\x65\x3c\x68\xe3\x67\x91\xad\x0f\xb2\x55\x22\x3c\x3e\x55\x3c\xd8\x92\xab\xfe\xa1\x37\x57\xe5\x83\x36\x90\x42\x9f\xf1\x34\xb0\xcf\xc2\x2d\x71\x85\x04\x68\xce\x65\xfa\x9c\x56\xf1\xb9\xce\xfc\xf4\xaa\x3a\x08\x40\x1b\x7e\x2f\x75\x10\x80\xa6\x37\xed\x73\xa6\x05\x68\x66\xc5\xff\xf4\x19\x7c\x4e\xb4\xf8\x85\xd7\xf4\xd1\x08\x1c\x6c\x61\xd5\x34\x97\x73\x2f\x7e\xfe\x55\xb7\x00\x48\xc5\xa8\xff\xa7\x5f\x00\xb4\xd3\xe3\xe9\x17\x00\xfb\x30\xea\xa6\x63\x00\xb4\xd3\x59\x1a\x9e\x03\xfb\x30\x1e\x03\x9d\x05\xdf\x3c\x0e\x36\x5a\xaf\xb7\xe0\x23\x3c\x57\x8c\xb7\x7e\x86\xe7\x40\x2a\x66\xd9\xf8\x0c\xc5\x81\xfd\x5f\x9e\x03\x43\x6c\x20\x95\xea\x27\xc4\x18\xdb\x87\x6f\xa0\x54\x3f\x0d\xfa\x06\x40\x3b\xdf\x7c\x5d\x03\x20\x15\xf7\xca\xfd\x0c\x9f\x81\x5d\x46\x95\xf5\x17\x80\x5d\x46\x95\xf5\x17\x80\x2d\xb4\xb1\x80\xfe\x02\xb0\x3b\x73\x8f\xb3\x19\x57\xb8\xa9\x22\xd5\xd3\x61\x00\x52\x39\xef\x95\x0e\x03\xd0\x5c\x0d\xf8\xe9\x2f\xf8\xf4\x17\xd8\xd3\xe8\x2e\x00\xb9\xf9\x98\xea\x2d\x00\xa9\x9e\x8e\xcb\x20\x1a\xd8\xef\x37\x15\xd1\x33\xf0\x19\x45\xf3\x73\xa1\xbe\x07\xfb\xaf\x9c\x4e\xe9\x0e\xaa\x93\x54\x3e\xa5\xfb\xe7\xb2\x71\x17\xa0\x7e\x86\xb0\xbe\xfb\x74\xdc\x9c\x4e\xa5\x0e\xda\xa9\x88\xaa\xfc\x73\x2b\x6b\xd7\x58\x7f\xca\x72\xb0\xaf\xca\x83\xe2\xda\x02\xb0\x2d\x42\x85\x0d\x24\x81\xe4\x04\x97\x4f\xc5\x0d\x92\x69\x12\x3f\x15\x37\xc8\xe6\x8f\xfd\x54\xdc\x20\x9b\x9f\xf6\x53\x71\x83\x74\x3c\x06\x9f\x92\x1b\xe4\x86\x8f\xf8\x53\x5f\x83\xe1\x22\xe3\xcf\x45\x09\x20\x37\xff\xa8\xe4\x06\xc3\x99\x62\x9f\x92\x1b\xe4\xc6\x04\xf1\x4f\x2d\x0d\xa2\xe0\x77\xfc\xd4\xd2\x20\xca\x39\xca\x46\xbe\xce\xb4\xf7\xeb\xac\x72\x06\x79\xda\x3b\xab\x9c\x41\x94\xe4\x51\xb6\x92\xa5\xea\x25\x79\x94\xad\xdc\x88\x72\x5a\x64\x23\x5f\x16\xcc\x7a\xeb\x14\xd3\xdf\xa7\xf3\x84\x5b\xa2\x72\x06\xe9\x5f\xcd\xd4\xc9\x20\xfd\x3b\x9b\x11\x24\x10\xae\xe5\xfd\xd4\xce\x9f\x9b\x6f\xf9\xdc\xaa\x9d\x3f\x37\xdf\xf2\xcb\xac\x50\xfe\xdc\x7c\x8b\x70\xf3\xa7\x2a\xfe\xdc\x69\xcb\x1e\x42\x55\xfc\xb9\xd3\x96\x9f\x6f\x97\x18\x80\xf4\xaf\x99\x2a\x65\x10\x2e\x02\xfe\x54\xca\x20\x5c\x3d\xfc\x29\x8b\x41\x18\x95\xfe\x94\xc5\xdf\x89\x13\x69\x46\x45\x30\x08\xe3\xd9\x9f\x31\x21\x10\xae\x28\xfe\x5c\x4d\x00\xc2\x40\xf8\x67\x94\x08\x84\x8b\x8c\x3f\x83\x44\xa0\x54\x3b\x38\x83\x44\x20\x9c\x2f\xf6\xa9\xb1\x41\xb8\x14\xf9\x33\x46\x04\x4a\x55\x8e\x29\xbb\x41\xa9\xaa\x31\x25\xf6\xe7\x4e\x5e\x1a\x51\x85\x0d\xa6\x7e\xd1\xa5\xc0\x06\x53\xf5\xb0\xd4\xd7\x60\xea\x02\x5d\xca\x6b\x30\xd5\x9d\x4b\x75\xbd\xdc\xef\x2b\x3c\x57\xb3\x88\xf9\x21\x7c\x33\x97\x3a\x1a\x4c\x43\x04\x4b\x19\xbd\x7e\xc1\x51\x99\xa2\x69\x11\x53\x46\xc2\x2b\x5e\x16\xe1\x5a\x98\x9e\xeb\xb6\x08\xc7\x08\xe3\x86\xa5\xac\x5e\x47\x56\x0f\x4f\xf6\x59\xa6\x6b\x81\xf1\xd5\x52\x24\xaf\xb3\x33\x17\xdf\xa9\xa5\x22\x06\x35\xff\x65\xaf\xee\xa5\x5e\x06\xd5\x34\x14\x4b\xb9\x0c\xaa\x09\x2e\x97\x6a\x19\x54\x93\x65\x2e\xc5\xf2\x3a\xc2\x98\xb1\xec\x52\x18\xaf\x23\x8c\xe9\x74\x96\xc2\x18\xec\x6f\x9d\xc7\x69\x88\x23\x8c\x4f\x73\xb4\x44\x42\xf2\x9d\xa2\xc7\x22\xe2\xc8\xc3\x8a\x68\x1c\x65\xf1\xb9\x80\xb6\x51\x16\xf3\x30\x2d\x65\xf1\x52\x16\x6b\x41\x65\xf1\x3a\xb2\xf8\x94\xd9\xf6\x23\x78\xe9\x37\x97\x82\x77\x1d\xc1\xab\x55\x15\xbc\xa0\x76\x9e\xe0\xa5\xde\x05\xd5\xb4\xcb\x4b\x69\xbb\x94\xb6\xe7\x64\xb6\x93\xb4\x66\x9d\x77\x72\x39\xf7\x7f\xe5\xa3\xf5\x3d\x99\x8d\xca\xa7\xff\xf2\x38\x5b\x65\x5e\x33\xe7\x64\x2c\x67\xf7\x83\xaa\xf3\x70\xa9\x76\xc1\xee\x6f\x69\xbd\x29\xcc\x40\x4a\x4e\x9b\x58\xca\x5d\x50\x75\x7e\x2e\xd5\x2e\xd8\x87\xd1\x06\xe5\xee\x32\xad\x99\x93\x43\x96\x7a\x77\xfd\xd3\xbb\x5e\xd6\xe7\xdd\xbc\x66\x86\x69\x96\x1a\x18\x54\xfd\xb7\x4b\x09\x0c\xf6\x61\x18\xdd\x19\x9a\xa0\xea\x73\x5d\xca\x5d\xd0\xf4\x69\x2d\xd5\xee\x72\xe6\xa5\xef\x85\x62\x77\x29\x76\xdd\xb5\x71\x29\x76\x41\x6a\x0e\x2d\x96\x62\x17\x34\x3d\x5a\xcb\xe9\x96\x60\xab\x3d\xea\xa6\x00\x5e\x66\x3a\xf3\xc5\x56\x00\x83\xa6\xbf\x62\xa9\x7f\x97\xf3\xf5\x9d\x6a\xb1\x14\xb6\xa0\x39\x64\x58\x0a\x5b\xb0\x6f\x03\x36\x52\xd9\xae\x93\xfb\x8c\x8f\xe8\x52\xc6\x82\x66\xbf\xbf\x54\xb1\xa0\x39\x13\x74\x29\x62\x97\xd3\xf5\x5d\x52\xbc\x9c\x36\xb9\x9c\xae\xef\xf2\xea\xe5\x74\xfd\xd5\xce\xd0\x82\xca\x29\x6c\x97\xd3\xf5\x5d\xb7\xbe\x14\xb6\xa0\x39\xe3\x7e\xa9\x6b\x97\xd3\x2b\xcf\x63\xa8\xb0\x5d\x8a\x58\x5d\x5d\xcb\x99\xf9\xab\x9d\x41\xb9\x97\xb0\xfd\x66\x3e\xd3\x5d\xb5\x54\xb6\x4b\x65\x7b\xde\x7c\x95\x2d\xd8\x83\x6b\xec\xa9\xb2\x05\xa9\x27\xdf\x56\x95\x2d\xd8\xc7\x79\x3e\xad\xd2\xce\xc0\xdc\x66\x1c\xb3\x10\x0d\xd7\x9e\x2a\x5b\xb0\x47\xcd\x96\x69\xa9\xee\x58\x9d\x7f\x2a\x6c\xc1\x3e\xcc\x32\x0d\xd5\xcd\x07\x46\x4f\xbe\x54\xb6\x60\x97\xd1\x0a\x65\xec\x42\xb3\x0e\xb3\xf8\x2f\x23\xc2\x20\x0d\xf7\x04\x58\x8e\xfd\x41\x0a\x37\xe1\x58\xc6\xf6\x40\x72\x36\xf2\x32\xb4\x07\x4a\xb5\xf3\x30\xb2\x07\x8a\xa1\xe4\x65\x64\x6f\xb9\xcf\xef\xf0\x51\x74\xa8\xbe\x5c\xe3\xec\x5d\x74\x54\x0e\xf6\x5b\xc8\x5d\x74\x54\xbe\x4c\xf0\xe4\x77\xce\x01\x38\xa8\x46\x2b\x96\x43\x66\xd0\xda\xb9\xa6\x8d\xda\x68\xa6\xe9\x5e\x86\xd7\x40\x73\x5f\xba\xe5\xb8\x1a\x24\xe7\xd2\x2e\x53\x11\x83\xdc\x18\x9f\x2c\x47\xda\xcb\x91\xf6\xf4\x8f\x56\xff\x76\xcc\xeb\xb7\xc0\x18\x1c\xd8\x0f\x2b\xcd\x34\x08\x07\xdc\xa3\x63\x39\x46\x07\x29\x8a\xdf\x38\x83\x70\x20\x0d\x67\x1f\x2e\xa7\xac\x81\x34\xd2\xb9\x82\xcf\x2a\x69\xa1\xc2\x99\x00\xcb\xf1\x3d\xd8\x65\xb6\xc1\x3b\xc5\x00\xbf\x0d\x3f\x24\x06\xe7\xc0\x3e\xce\xba\x68\x91\x8d\xee\x1c\xed\x65\x24\x0e\xa4\x33\xcc\x5d\x0e\xfa\x41\x72\x32\xd6\x72\x36\x19\x48\x86\xd7\x97\x91\x38\x90\x9c\x05\xb1\x8c\xc4\x81\x54\x7e\x7f\xd8\xa2\x7b\xa9\x1b\x40\x77\x31\xc2\x52\x36\x80\x74\xc6\xb7\x4b\xdd\x00\xfa\xb0\x2d\xea\x06\xb0\x0f\xe3\x8e\x2b\x1c\x40\x1f\x7e\xa0\x14\x0e\xcb\x6d\x82\xec\xfd\x8c\xcb\x81\x14\x3a\x54\x96\xc2\x01\x24\x73\xa3\x2f\x85\x03\xe8\x03\xcf\xce\x52\x38\x80\x3e\x34\xbd\xc2\x61\x19\xab\xf3\xb9\x33\x54\x07\xfa\x70\xc8\x60\xa8\x0e\xf4\xe1\x7d\x54\x5e\x80\x3e\xec\x35\xd5\x12\x20\xf5\xe2\xf9\x1d\xec\x83\x91\xac\xbf\x91\x33\x30\x92\x36\x73\xfc\x0f\xb2\x9b\x21\x2c\x23\x67\x60\x24\x7b\x6f\x15\x01\xc8\xa6\x5b\x5a\x0a\x02\x90\x4d\x83\xb8\x14\x04\x20\xbb\x89\xc6\x32\x72\x06\xb2\x8b\x61\x96\x61\x32\x90\xcd\x78\xb8\x14\x04\x20\x9b\x2b\x71\x39\xfa\x07\xd9\x1c\x88\xcb\xc1\x3f\x18\xe7\x13\x6a\x4c\x0c\x64\xb7\x32\x59\x8e\xea\x41\x6e\x4c\xfe\x5a\x8e\xea\xc1\x70\x3d\xd2\x72\x54\x0f\x86\x0e\x96\xe5\xa8\x1e\xe4\xe6\xc3\xe3\xa8\x1e\xe4\x96\x3d\xbd\x8f\xdd\x72\x58\x87\x97\x64\x39\xac\x07\xb9\x31\x57\x6d\x39\xac\x07\xc3\xf5\x49\xcb\x61\x3d\x18\xce\x73\x5a\x46\xd3\x40\x6e\xbe\x7c\x8e\xf4\xc1\x70\x15\xd3\x72\xa4\x0f\x06\x2b\xb6\xe6\x8f\x91\xbe\xc8\x6d\x3f\xc1\xf3\xc7\x48\x5f\xe4\xb6\x05\xce\xfc\x31\xd2\x17\x83\xa5\x4e\xf3\xc7\x48\x5f\xe4\x96\x33\x45\xd5\xa2\xca\x51\xfe\xb1\x59\xd4\x38\xca\x2b\x76\x8b\x48\x02\xb5\x5f\xf6\xf9\x63\x6a\x98\x48\xfd\x37\xfd\xe7\x6d\x19\xf3\x6b\xb6\xf5\xe7\x8f\x39\x5f\x22\xca\x39\xd9\x6b\x11\xf9\x8f\x66\x50\xb4\x2c\xda\x9d\xc1\xef\x47\x51\xb2\x91\x1b\xe5\x67\xbb\x93\x8d\x4c\x08\x58\xab\x9f\x6c\x24\xc1\xb0\xc6\x0a\xea\xf9\x4b\x36\x69\xa3\xfc\x92\x87\xd9\xa4\x8d\xf2\xdb\x37\x64\xfe\x92\x4d\xda\x28\xbf\xe4\x1f\x87\x45\x83\xa3\x2c\x9a\x16\x31\x11\x7a\xd2\x70\x86\xf1\x22\xcf\x89\xf5\x93\xed\xde\x28\xbf\x44\xbb\x93\xed\x4e\xb6\x1b\xeb\x27\xdb\xbd\x51\x7e\xde\x10\x46\xf1\xa2\xfc\xb4\x7e\xd2\x14\x49\x53\x50\xfb\xac\x29\xb2\xa6\xa0\x12\x59\x53\x64\x4d\x41\x83\xb2\xa6\xd8\x28\xbf\x1f\xf5\xca\xde\xef\x8d\xf2\xfb\x51\xaf\xac\x71\x36\xa2\x64\xda\x98\xad\x57\x66\xa2\xc2\xf4\x28\xeb\x95\x99\xa8\xd0\xb8\x1f\xd9\x7a\x65\x94\xf6\xa4\xf6\xc5\x4a\x14\x66\x25\x74\xce\x55\xac\x44\x61\xad\x41\xa7\xf6\xc5\x4a\x14\x67\x63\x78\xc9\x62\x2d\x0a\xe2\x7b\x7a\x98\xb7\xa8\x30\x51\xaa\x51\xfd\xe2\x2d\x32\xb9\x55\xf7\x92\xde\x22\x86\xe0\x15\xc5\x3c\x7f\xc5\x27\xb1\xa0\xbe\x3b\xf5\x2f\x5a\x9f\xb4\x55\xe1\x3d\x2a\xb6\xb2\x30\x3b\x6a\x58\x0b\x5b\x49\xd6\xaa\xa9\x5d\x8b\xad\x34\x6b\x55\xa7\xa8\xda\x4a\x52\x54\x4d\x9f\xcd\x6a\x2b\xab\x1d\xbd\x47\xd9\xa2\x4a\x4c\xbd\x7b\x94\x75\xdd\x28\xd3\x3b\x59\x7d\x9c\x2a\xf3\x06\x3a\xf5\xaa\x3e\x4e\x55\x79\xcc\x9d\xac\x3e\x4e\x95\x3c\x40\x93\x36\x56\x1b\x54\x1d\x41\x56\xcb\x6c\xd1\x46\x99\x3e\xd4\xd5\x16\x55\x5b\xe4\x51\xb6\x68\xa3\x4c\x9f\xba\xe6\xf3\x44\xd6\xaa\xe9\x63\xd1\x6c\x64\xb3\x91\x3c\x88\xcd\x46\x36\x3d\x05\xff\x1d\xd3\x9e\xbf\xe6\x9d\x6e\x38\x12\xfc\x22\x34\xcd\x42\x9e\xab\xf0\x5d\x6f\xde\x68\xf2\x5c\x4d\xdf\xb2\xe6\x8d\x26\xb8\xd4\x48\xd9\x31\x7f\xcd\xbb\xda\xc8\x3e\xe3\x23\xd2\xb4\x1e\x1b\xf0\x66\x4d\xd5\x34\x15\x7b\xda\x64\x6f\x74\xd3\x54\x8d\x79\x0b\x3e\xa8\x4d\x4b\xb1\xcd\x4d\x3e\xb5\xd0\x52\x8d\xa4\x3b\xd6\xb5\x6b\x16\x36\xd5\xcd\xbe\x07\x5d\xb3\x74\xe7\x98\x36\xee\x74\xd7\x2e\x1d\x6f\x83\x37\xbf\xdb\xf0\xee\x20\x15\xb3\x77\x1b\xce\xa0\xba\xb1\xcb\xd2\xfc\x75\x1f\x88\x7e\x9c\x07\xd4\xb6\xdb\x4c\xf7\xcf\x0d\x2f\x6a\x33\xbb\x92\xda\xa3\x6c\xa6\x5b\xe5\x32\x07\x65\xfe\xba\xed\xec\x0e\xde\xfc\xce\x75\x1b\xea\x3c\xce\xb0\xc8\x86\x76\x1c\x05\xe7\x9f\x3e\x12\x6e\x94\xcb\x1c\x9a\xf9\x1b\x36\x7e\x1c\x4f\x01\xcd\x1a\xb6\x74\x10\x40\x1d\xd8\x68\xd8\xd2\x71\x9c\x07\x96\xd9\x54\xf6\xc9\x65\x6a\xd5\xfc\x0d\xef\xf1\x20\x80\x3c\xb8\x07\xc3\x7b\x3c\x14\xd4\x95\xbb\x37\x34\xc8\x20\x01\x4d\x78\x98\xf6\x18\x8e\xda\x3d\x4a\x7b\x8c\xa3\xa7\xbd\xa6\x6f\xcd\x20\x59\xc7\x69\x81\x36\x1a\x26\xeb\xa8\xb6\x40\x1b\x0d\x92\x75\x9c\x46\x69\x22\x56\xde\x66\xdf\xf0\xa1\x89\x08\x1f\xa5\xf3\xa6\x0e\x6d\x34\x94\xe2\x5c\x33\x34\x11\x0b\x6f\xf1\x46\xcd\x5f\xf8\x7c\x84\xaa\x9b\x5b\x15\x5a\x28\x08\x1d\x16\xac\x11\x1a\x28\x14\xdd\x54\x36\x34\x90\x9b\xeb\x9e\x77\x30\xb4\x50\x1c\x0b\x79\x9c\x16\x22\x62\xc4\x7a\x97\xf9\x0b\x2d\x14\x64\x60\x28\x58\x28\xb4\x06\xa1\xa0\xe6\x23\x1f\x36\x33\x5c\xfc\x7c\x6a\x6b\x9b\x36\xda\x79\xf3\xa6\x6d\x9a\x2c\x26\xf6\xfd\x99\xb6\x89\xc4\xc3\xc5\xaf\xe2\xb4\x01\x1b\x3d\x79\x87\xa7\x0d\x98\x0e\x12\xb0\xcf\xb4\xae\x33\x38\x8a\x2b\x4e\x6f\xdd\x46\x4f\x7e\x74\xa7\xb7\x69\xa3\x27\x1f\x8d\xa9\xfd\x37\x7a\xf1\x1d\x98\x56\x75\xaa\x38\x30\xc5\x65\x55\x37\x7a\xf1\x61\xb9\xac\xea\x46\x2f\xbe\x29\x97\xcf\xec\xa5\x06\xf1\x8f\xde\x11\xa3\x3d\xf6\xce\x97\xb5\xdf\x70\x73\xd3\xf9\xbb\xb4\xbe\x71\x1d\xc7\x03\x97\x0d\xda\xe8\xc5\xb7\xe9\xd2\xf8\x44\x75\xea\xe9\xf3\x2e\xad\x7f\x99\x8e\xd4\x5a\xd8\x22\x66\x6d\xd6\xf3\xf6\x5f\x36\x69\xa3\x8f\x42\xcd\x6e\x9b\xb4\xd1\x47\xe5\x64\xb7\x4d\xba\x15\x14\xb4\xf2\xb6\x49\x37\x82\xa2\x60\xea\xdb\x26\xdd\x0a\x0a\x2e\x79\x7b\x8f\x36\xfa\x28\xdc\xb6\xdb\x56\xb2\x0f\xce\xf9\xb6\xdc\xb6\x12\x55\xc9\x2e\x4d\xf3\x77\xdb\x24\x04\xe4\xf9\x66\xdc\xde\xa3\xdb\x44\x96\x3e\x29\xb7\x0f\xd4\xc6\x48\x9a\xec\xb6\x95\x37\x43\xf2\x73\x32\x1b\xb9\x31\x92\x97\x7c\x6c\xd1\x43\xf2\x6e\xbf\x18\x8f\xd5\x7f\x98\x0d\xee\x6b\xf9\x58\x7d\x84\x62\x3d\x23\x87\xc7\xfa\x6f\x8c\xa4\x2d\x1e\x6f\xc9\x43\x7a\xd5\xe0\xe1\x7f\xac\xff\xc6\x48\xe1\xc9\xbc\x23\x0f\x22\xc3\xe7\xf5\xb1\x49\x1b\x23\x85\xb5\xb0\xfa\x0f\x0b\xf2\xfc\xd4\xbc\xd6\xe2\x65\x74\x54\xa8\xc4\x6b\x25\x5e\x2b\x61\x91\x46\x7c\x95\x0f\x58\xff\xb5\x5e\x1b\x63\x24\x6e\xee\x6b\xbd\x36\xc6\x70\x48\xfe\xfa\x3a\x6c\xa1\x36\x86\x4f\xe2\x6b\xbd\x5e\xa4\x82\x23\xeb\xd7\x8f\xd6\x8b\x54\x70\x78\xff\x6a\xfc\x57\xa9\xe0\xe9\xb5\xf4\x8b\x2e\x48\xff\x1d\xa4\x9e\xbf\xcf\xa7\x0d\x49\x38\x7c\xc2\x3f\xef\xcd\x87\x6c\xc8\x5c\xfd\xf3\x69\x43\x12\xb6\xcc\xd5\x3f\x6f\x17\x92\x70\x24\xee\xc3\xa7\xa1\x3e\x64\x83\x63\xba\x4f\x43\x7d\xe8\xac\x84\x39\x3f\x4d\xc0\xcc\xc9\xdf\xf9\xa3\x26\x20\x20\x54\xfc\x7a\x7d\xde\xad\x8d\x28\xa7\x12\x5a\x85\x80\x50\xf1\xb3\xf7\x69\x82\x8f\xd1\x73\xe2\x9e\x7e\x9a\x80\xe0\x4f\xf1\x1b\xb4\x6c\xe3\x46\x14\x0d\xb5\x6c\xe3\x52\xf6\xd2\xa0\x65\x1b\x57\xe1\xf4\xd4\x7e\xd9\xa0\xe5\xb8\xd8\xa3\x6c\xd0\x62\x44\xda\xa9\xea\xb2\xf6\x1b\xf3\x28\x84\x65\xed\x49\x46\x9c\x90\x84\xf3\xb7\xac\xfe\xc6\x3c\xe3\xee\xe5\x4d\x5d\x84\xb8\x1c\x82\x2c\x5b\xb4\x6c\x91\xe7\xf7\x91\x24\xd2\x53\xed\x9c\x96\x8d\x5c\x8e\xbb\x77\x51\x52\xff\x81\xa9\x90\x48\xea\x3f\x30\x55\x0d\x49\xfd\x07\xdc\xe6\x71\x26\xf5\x1f\x98\xca\x8d\xa4\xfe\x03\x41\x9c\x70\x26\xf5\x1f\x98\x8a\xa5\xa4\xfe\x03\xc1\xbc\xee\x99\x08\xfe\x88\xa9\x3e\x4b\x4a\x42\x10\x2a\xa3\x44\x3c\x48\xb8\x4d\xe5\x4c\x8a\xc4\x64\xf0\x67\xd8\xa0\xd7\x22\xc7\xe6\xd6\xfe\xb3\x88\x59\xb1\x74\x00\x49\x91\x08\x26\xa1\x86\x99\x14\x89\x60\x12\x3e\x99\x49\x91\x08\x26\x31\x8a\x99\x14\x89\xa0\x4c\xde\xd7\xa4\x46\x04\x93\x20\xcb\x4c\x0a\x42\x30\x09\x5b\xcc\xa4\x20\x04\x65\xf2\xc6\xa4\x64\x1b\x37\x2a\x9e\xc0\x99\xd4\x88\xa0\xfa\xb1\x4c\x6a\xc4\x64\xa8\x07\x07\xfa\x4c\x8a\xc4\xe4\x1c\x48\x3c\xe3\x33\xa9\x12\x93\x73\x20\xf3\xa9\xad\xc6\x48\x27\x12\x46\xd3\xd5\x89\xa0\x16\x6f\xaf\x3a\x11\xec\xc3\xb0\xa3\x42\x31\x19\xee\xc9\xb6\x41\xa5\x08\xf6\x65\xa9\xb1\x52\x11\xec\xe3\x68\xbe\x5a\x31\x19\x16\xca\x9a\x57\xb1\x98\x0c\x0b\xb1\x0a\x73\xa6\xac\x99\xb2\xd3\x45\xc3\xff\x6a\xa7\xec\x38\xce\x22\xed\x94\x0d\x21\x84\xa7\xd3\x50\xd9\x00\xd8\x29\xd3\x2a\xf9\x8c\x6c\x69\x5a\xd6\x2a\xd9\x77\xc5\x56\x68\x94\xec\xc0\xd6\x22\x6d\x72\xa6\x41\x86\x06\xd0\x28\xd9\x91\xad\x8d\x2d\x1a\xa5\x30\xad\x96\x5e\x2a\x29\x5c\x41\xed\xfe\x53\xe1\x0a\xf6\x3f\xb9\x82\xca\x35\x9d\xd9\x92\x38\x17\x92\xca\x35\x39\x5b\xd2\x1b\xab\x72\x4d\x27\x54\xd4\xbc\xa8\xcd\x77\x6a\xa4\xb2\x2b\x15\x9b\x4f\x6a\xa8\xec\x53\x5e\x7c\x4e\x4e\x1a\xa8\x53\x39\xdb\x75\xd2\x3b\x69\x4d\x65\x29\x48\x99\xd4\xad\x33\x55\xdb\x55\x4f\xbc\x84\x1a\xab\x55\xc1\x1e\xf5\x71\xd9\x6a\x2b\xcc\xba\x11\x5e\x57\xb5\x9a\x4e\x2e\x27\x2d\x50\xbd\xb1\x55\x27\xac\xd7\x55\xc2\x82\x54\x58\xfe\x38\x53\xb5\x69\x4c\x7a\x8c\x53\x64\xcb\xc8\xbc\xcc\x24\x8b\x99\x94\xb5\x20\xff\xb4\x93\xb2\x16\xe4\x9f\xcf\xb5\xb2\x16\xe4\x56\xfc\xa3\x77\x9a\x5d\x56\x5b\xc1\x98\xaa\xda\x54\xe9\xea\xf0\xfb\x24\x25\x2c\x18\x03\x4f\x53\x52\xc2\x82\xd4\xb3\xaf\xa6\x1a\x16\xe4\xc6\x87\x3e\x29\x52\x41\x14\x86\x4e\x49\x45\x0a\xa2\x54\x8f\xd2\x18\x6c\xbc\x5a\x18\x73\xa5\xa6\x2d\xd8\x78\xf5\xe7\x2d\x50\xa3\x82\x28\x8c\xb9\x92\x1a\x15\xa4\x9e\xfc\x5e\x37\x6d\xd1\xe8\xe0\xca\x7f\xef\x07\x32\x93\x1a\x36\x9d\x80\x91\x9f\x52\x15\x2b\x48\xa3\x78\xcf\x9a\xcf\xc5\xc6\xd4\xe7\x93\x54\xb1\x60\xea\x8b\x4a\xaa\x58\x30\xff\x87\xb1\x33\xc9\xf9\x9e\x85\xf1\xed\xfc\xae\xa2\x96\xf0\xa7\x07\xa9\x54\x7b\x49\x43\xf6\xbf\x84\x2b\x9f\xc3\x33\xfe\xde\xd1\x4f\xb2\x48\x00\x43\x88\x3b\x6c\xed\x47\x49\x25\x16\x58\x5a\xbf\x92\x4a\x2c\x60\x0a\x9d\x95\x54\x62\x81\xa5\x59\x2e\x75\x79\xd5\xfd\x29\xda\xa3\x8c\xe9\xda\x64\x3c\xe4\x55\x6b\x81\xa5\xb8\x95\x54\x6b\x81\xb2\x10\x06\x52\x97\x31\x01\x65\xb9\x6f\xd4\x6a\x81\xb2\xce\xf0\x9d\x78\xf7\xdc\xa7\x4b\xb5\x55\x20\x75\x92\xf1\xaf\xa4\xb6\x0a\xc4\x61\xc5\xc6\x54\x5d\x4d\xaa\xab\xe7\x5b\x52\x5d\x05\x6a\xf1\x27\xa8\xba\x0a\xd4\xe2\xc7\xaa\xba\x0a\xa4\xfe\x43\x2a\x49\xaa\xab\x40\x2d\xfe\x18\x55\x57\x81\x5a\xfc\x0b\xaa\xae\x02\xd1\xa7\xcd\x9c\xe8\xf0\x7f\xe0\xc9\xa7\x6e\x0a\xa4\x9e\xdd\x89\xaa\x98\x40\xfa\x69\xfa\x49\xea\x98\x69\x7a\x32\x61\x97\x48\x2a\x99\x40\xed\x87\xe4\xb4\xa6\x2e\x7c\x94\xc0\xa4\x96\x99\xe6\x39\xab\x59\x40\x35\x4a\xa0\xf6\x43\x72\xc4\x13\x83\xc3\x74\x20\x0e\x78\x7a\x54\x2f\x36\xc8\xf4\xfb\x9d\xc4\x2a\x1c\x92\x73\x20\xe0\x70\x94\xf3\x36\x3f\xe0\x69\x84\x98\x6b\x33\x5d\xc2\x69\xce\x6a\x99\xae\x36\x0a\x44\x3b\x38\xac\x3a\x9a\x96\x61\xdc\x1e\x2e\xcb\x75\x5d\x58\x21\xfc\x07\x2d\xa7\xbf\xce\xc1\xcc\x5c\x55\x35\x81\x38\x71\x7d\x9d\xb3\x20\x6c\x30\x69\x0f\x4b\xea\x9f\x40\xd0\x18\xca\x72\x1a\x24\x77\x3a\xbf\xcd\xe5\x2c\x88\x2e\x4c\xe7\xdf\xaf\x9e\x0a\xb4\xf3\xb3\x56\x4f\x05\xe2\x6d\x30\x40\x45\x15\x88\x47\x59\x1d\x35\x55\x20\xda\xc1\x63\x55\x55\x20\x68\x74\xab\xae\x0a\xb4\xf3\x13\x56\x57\x05\xe2\x7f\x60\x17\x2e\xe2\x65\x48\xb1\x4b\xa6\x6a\x0a\x04\x0d\x06\x5c\x32\xe5\xdc\x50\xec\xd2\x64\x8a\x37\x14\xb5\x73\xa5\x4b\xa6\x50\xd1\xa6\x7a\xdc\x5d\x32\xe0\x5c\x46\x4c\x76\x2b\x03\x2e\xbd\xf6\x36\x93\x01\x97\xb9\x17\xdd\x15\xaa\xb5\x40\x3c\x4a\xaf\xea\xb5\x40\x6b\xfe\xd3\xd5\x6b\xd3\x7d\x7e\x4c\xbc\x4e\x2d\x16\x38\x36\xad\xa4\x16\x0b\x44\x33\x1f\xf5\xeb\x44\x8d\x1d\xe7\xf7\x7a\xcb\x13\xeb\xe3\x4c\x97\xe7\x76\xfe\xb7\xe9\xd8\xe4\xd3\xed\xfc\xa9\x8f\x33\x3c\x26\xd4\x77\xd3\x9f\xbe\x2b\xcd\x3d\x71\x9b\xb4\x4c\xc1\x44\x1d\x18\x48\xa5\x9e\xa1\xc8\x13\x8b\xe6\x54\xbb\x7d\x64\x80\x05\x72\x64\xa7\x5a\x30\xd0\xb8\x8c\xb1\xd2\xe3\xfc\x75\x97\x56\xe7\xaf\x66\x0c\xa4\xd2\x3c\xec\x54\x8d\xd3\x9f\x6a\xcc\x4a\xa8\x1a\x03\xed\x7c\x14\x8f\x3c\xd1\x89\xea\xf9\xaa\xb6\x9c\x2c\x07\xeb\x49\xf4\xc8\x91\xc7\x53\xd8\xd1\x3a\xfb\x87\x40\xe2\xf3\xa0\x93\xc7\x49\x5a\x4e\x2b\xe7\x6e\x70\xe5\xe9\xd1\xa9\x73\x9d\xf1\xe7\x32\x3f\x6e\x87\x87\xdc\x25\x18\x7c\xd2\x2b\x33\x5e\xa3\x43\x19\xfd\x2b\x33\x8e\xd7\x94\x89\xbf\x4e\xdc\x2a\x40\x2e\x94\xca\x38\x60\x50\xf7\x4a\x2a\xe3\xc0\x18\x78\x93\x92\xca\x38\x90\x74\x9b\xae\xa4\x36\x0e\xe4\x86\x92\x99\xd4\xc6\x81\xdc\xd0\x28\x93\xda\x38\x90\x9b\x7f\xef\xd7\xbd\xa1\x82\x9e\x1d\x98\xac\x78\x15\x51\xfe\xc1\x0c\x9e\x54\xd6\x93\xca\xfa\x19\x90\x6c\x21\xc3\xc7\x9f\x08\xa3\xa2\x0d\x8c\x81\x0b\x27\xa9\x68\x03\xe5\x87\x56\x9d\x54\xb4\x81\x59\xb0\x7d\x26\x15\x6d\x20\xb5\xe2\xff\x76\xcb\x85\xad\x37\x0b\xf6\x6d\x99\xb0\x91\x57\x14\x91\xd4\xc7\x81\x59\x14\x54\xd5\xc7\x81\xf2\xc3\x4f\x95\xd4\xc7\x13\x01\x9a\x05\x33\x64\xda\x32\x41\x7d\xbc\xfa\xa0\xb3\x54\x1f\x3f\x33\x72\x3f\x10\x9f\x49\x29\xb2\x95\x54\xbe\x81\x59\x2a\xaf\xff\x9c\xa4\xca\x37\x9e\x8c\xa4\xf2\x9d\x54\xbe\xab\x0f\x3a\x49\x94\xef\x9f\xa7\xcf\xe7\x84\x08\xbc\x2c\x4a\xe3\x9f\x13\xfa\x98\x10\x36\xe5\xa4\x8a\x0e\xcc\x82\x15\x38\xa9\xa2\x03\xa9\xe9\xaa\x4c\x2a\xdf\xc0\x3a\xf3\x56\xf9\x06\x52\x3d\x5f\xbc\xda\x37\xb0\x9c\x65\x56\xfb\xce\x6a\xdf\x2c\x52\x56\xfb\xce\x6a\xdf\xc9\x56\x59\x12\x02\x16\xe2\x43\x56\xfb\xce\x6a\xdf\xc8\xeb\x59\xed\x1b\x58\x24\xc3\x59\x59\xed\x3b\xab\x7d\x17\xdf\xd5\x25\x75\x5a\x55\x48\x43\x12\xb9\x8b\x90\xa5\xb3\xda\x77\x3e\x0e\xd9\x66\x97\x4b\x1a\xea\xf7\xf0\xc9\x4b\xd2\xc5\x28\x0a\xa4\x47\xd2\x03\x69\x41\x7a\x25\x71\x3d\x97\xa3\x29\xab\x91\x03\xa9\xd6\xe1\xc8\x3e\x69\xb0\x87\x55\xca\xaa\xe4\x40\xa9\xa8\xa5\x59\x95\x1c\x28\x95\x33\x2d\xab\x92\x03\xcb\xcd\x99\x93\xec\x49\xc7\x4f\xc8\xc8\x54\xd3\x33\x7e\xdb\x3a\x6c\x26\x33\x50\xd3\x7f\xc5\x56\x32\x23\x61\x8a\x28\xb6\x72\xe2\x09\x43\x0d\x82\x7f\x56\x27\x07\x96\xf2\x7b\x56\xfd\x06\xd6\x2f\x3b\x7c\x67\x89\x47\xd6\x13\x3e\xab\x19\x03\xde\x33\x58\x59\xc5\x18\x58\x3f\xac\x45\x39\xbb\x6e\x99\x75\xe3\xc8\xcc\xaa\xca\xc0\xf2\x7c\xcc\x6a\xca\xc0\xfa\x71\xc0\x64\x35\x65\x20\x1d\x5f\x6e\xce\x8e\xd5\xdb\x81\xc5\x85\x53\x53\xce\x56\x17\xe2\xda\xd3\xca\xaa\xc5\x40\xfa\xe9\x71\xcf\xea\xc5\xc0\x52\x4c\xcb\xaa\xc0\xc0\xd2\xa8\x9c\x55\x81\x81\x45\x54\xc4\xca\xaa\xc0\xc0\xd2\x3a\x99\xd5\x80\x81\xe5\x41\x9d\x55\x80\x81\xb2\x1c\xad\x0a\x30\x90\x1a\x21\x48\x2b\xeb\xbb\x05\x16\x11\xf5\x2b\xeb\xbb\x05\xca\x72\xff\xab\x26\x03\x65\xc9\x21\xb5\x64\xa0\x2c\x59\xab\x96\x0c\x2c\x35\xf8\xac\x83\x17\x88\x3f\x9b\xb3\x94\x19\x05\x7f\xa8\x9b\x51\x5d\x3a\xeb\xe1\xf5\x5b\x55\x95\x06\xca\x72\x67\xa8\x49\x03\x65\xb9\xff\x55\xa4\x81\xd8\xec\xf4\xa9\xd2\x0c\xa4\x5a\xe5\x6c\x75\xea\x15\x67\xa6\x3b\x48\x3d\x1a\x58\xe4\x61\x5b\x59\x95\x19\x58\x1a\xe2\xb3\x2a\x33\x50\x96\x1b\x41\x95\x39\x9b\xaa\x72\xd9\xca\x35\xc7\x13\xbc\x3c\x7e\x54\x99\x81\xa5\xf1\x39\xab\x32\x67\x1d\xc1\x9e\x35\xaa\xcc\xc0\x22\xdc\x64\x65\x1d\xc1\xc0\x22\x6d\xca\xca\x6a\xd1\xc0\x22\x4e\x65\x65\xb5\xe8\xac\x23\xd8\xb3\x46\x25\x3a\xeb\x08\xe6\x58\xcc\x2a\xd1\xc0\x22\x80\x66\x65\x3d\xbd\xc0\x32\xdc\x24\xab\x57\x03\xa9\x51\x3a\x60\x65\x15\x6b\x60\x69\x84\xce\x2a\xd6\x40\x59\x7e\x98\x2a\xd6\x40\x3a\xa6\xdd\xac\x16\x0d\x94\xe5\x57\xae\xf7\x17\x28\xeb\x1f\xea\x66\xaf\xac\x27\x18\x48\x95\x3b\x4d\x2b\xab\x58\x03\x4b\x8d\x28\xab\x57\x03\xc9\x4b\x71\x2b\xab\x58\x03\x8b\x3c\x19\x2b\xab\x58\x03\x8b\x0b\x21\x2b\xab\x58\x03\xb1\x71\xe0\xa9\x9a\x35\xb0\x0c\xe1\xc9\x6a\xd6\x40\x59\x9e\x75\x6a\xd6\xd9\x84\x9a\x88\xef\xb9\xcb\x2c\x13\x6a\x4e\xdf\x25\xb3\x3a\xf9\x09\x96\xad\xe4\x02\xce\xe1\x63\x40\xcf\xaa\xd1\xc0\x22\x93\xce\xca\xfa\x86\x81\x45\xca\xc0\x95\xd5\xac\x81\xd4\xba\xc7\x87\xce\xe1\xac\xb6\x8d\xa1\x3a\xab\x6d\x03\x8b\xa8\xa4\x95\x55\xb6\x81\x65\xd8\x50\x56\x63\x06\x42\xc7\x65\x67\xaa\x31\x67\x4b\xc8\xea\x2e\xcb\xaa\xcc\xf9\xa8\xcc\x8c\x56\x95\x39\x1f\x95\xd9\xd3\x42\x95\x39\x1f\x95\xd9\xcf\x41\x17\x2f\x50\x15\x71\xb3\x5a\x34\x50\x8b\x27\x88\x1e\x5e\x20\xfd\xf4\x01\x66\x5d\xbc\x40\xfa\x15\x37\x99\x2e\xde\x6c\xf1\x59\x6d\xb9\x59\x05\x1c\xa8\xfa\xf2\xb2\xfa\x77\x36\xb9\xb2\x36\xb5\x3c\x9d\xbe\x3a\xb9\xa6\x80\xac\x4e\x9e\x2d\xa5\xe4\xf4\xd5\xc9\x81\xd4\xb8\x3f\xb6\xb2\x3a\x39\x50\xf5\x33\x66\x1d\xbf\x59\x35\x5d\xfb\x59\x56\x4d\x07\x82\xc6\xc4\xf4\xfc\x02\xd1\xab\x5d\xc8\x3a\x6a\xd2\xb6\xf3\x2b\x52\x79\xcf\x2a\xef\x7a\x3c\xb3\xca\x7b\xb6\x12\x93\x51\x38\x59\xed\x1d\x88\x76\xce\x4c\xe6\x4d\xad\xcf\x1e\x13\x6a\xef\x40\xf4\xcb\x6e\x52\x7b\x07\xd2\x4c\x8e\x45\xcf\x31\x50\x8b\x07\xb0\x9a\x3a\x50\x55\x24\xb2\xce\x64\x20\x7a\xa0\x57\xbd\xc9\x40\xf4\xc0\xf2\x2c\xb9\x12\x50\x0f\x53\xf4\x30\x03\xd1\x8c\x49\x2c\x99\x42\x2d\xa6\x33\x57\x4d\x01\xd9\x5a\x4c\x7f\xbd\xca\x93\x75\xb6\x13\xfc\xd4\x14\x90\x4d\x42\xa4\xee\x9a\x35\x05\x00\xb5\xf8\x93\xd2\x14\x90\x2d\x6e\x5b\xfc\x3f\xa8\xe3\x67\x93\x10\x19\x9e\x92\xd5\xf1\xb3\x49\x88\xce\xd2\xaa\xe3\xe7\xeb\x6c\x14\xba\x55\xc7\xcf\x16\xb2\xd5\x9a\x9f\x2f\x99\x72\x1d\x4b\x3b\xbc\x53\xf1\x07\x82\xe6\xb3\x32\xe5\xf2\x23\xf3\x14\xd2\x18\x00\x44\xbf\x8c\x59\x63\x00\x50\xcf\x76\xd7\x16\x00\x44\x33\xbb\x90\x2b\xd7\xe1\x0a\x9c\xd2\x16\x90\x4f\xf1\x26\x4f\x80\x4b\xae\x5c\x70\xc5\x2f\x4a\x5b\x00\x90\x8e\xc7\x2c\xab\xe4\x03\xe9\xb8\xdf\xb2\x5a\x3e\x50\xcf\x7f\x41\xef\x35\x50\xcf\x11\xa3\xde\x0f\xa4\xdf\xf9\x91\xaa\xf8\x03\x41\x63\x70\x2a\xfe\x40\xfa\x19\xc3\x90\x55\xfc\x81\x7a\xce\x3a\xf5\x7e\x20\xd5\x23\x0b\xab\xf7\x03\xa9\x95\xea\x80\x9d\xeb\xad\x49\xcb\xc1\x39\x55\x0b\x3b\x79\x14\xa9\xe2\x03\xa9\x69\xd1\xca\x3a\xba\x81\x74\x7c\x88\x59\xb5\x3f\x9f\x2a\x4e\x4e\x4c\xbd\x1f\xa8\xe7\xbc\x56\xef\x07\xd2\x4f\xd3\x52\x56\xef\xcf\xcf\xb1\xde\xd1\x85\x3a\x3e\x50\x8f\x20\xa1\x8e\x9f\xad\xe2\x74\x7e\xf5\x2a\xf9\x40\x3d\xa7\xb3\x2e\x71\x20\x7a\x60\x5e\x2a\xfe\x40\xd0\x1c\x9c\x2c\x21\x64\xfa\xa7\x01\x36\x6b\x0d\x00\x52\x3a\x3f\x30\xcd\x01\x40\x70\xdd\x67\xfd\x2a\x48\xe4\xf9\x3b\xbf\x6d\x0d\x02\x40\xd0\x58\x0a\x2d\x02\xd9\xe4\x9e\x46\xba\x64\x4d\x02\x40\xcc\x96\x3e\xb4\x09\x64\x0b\x43\x85\xac\xf3\xdf\x3f\xf3\x57\x46\xbe\x6e\x2d\xf8\xa8\x19\x21\x5b\x37\xea\xfc\x58\xb5\x23\x00\xa9\x1a\x44\x93\x35\x24\x64\x93\x84\x1e\xc9\x53\xab\x41\x36\x21\xa8\x96\xc1\xac\xd9\x20\x5b\x38\x4a\x0b\x62\xd6\x6e\x90\x4f\x92\x50\xb7\x88\x6e\x7c\x20\xf5\xe2\xfa\x69\x07\xc8\x66\xff\xd4\x22\x99\x5f\x39\xf4\xca\x21\x8f\x61\x8d\x03\xf9\x3d\x1c\x62\x7c\xfa\xea\x81\x18\x1f\x7d\xe8\xac\x07\xe2\x59\xb8\xa6\xc5\x00\x88\x6d\x08\x77\x35\x19\x64\x33\x80\x3a\x14\x4d\x06\x59\x93\x81\x91\xbf\x59\x93\x01\x10\x5d\xf8\x3a\x59\x60\x0a\xd0\xa5\x40\xa0\xd1\x20\xef\xb3\x99\xa4\xc9\x02\x6b\x0b\x6b\xba\xcc\x9a\x0d\xb2\x29\x40\x5d\x53\xdd\xf8\x40\x3a\xf1\x14\x59\x53\x02\x90\xfe\xb6\xb5\x86\x03\x20\x4e\x44\x39\x20\x57\xf6\xe1\x0a\x1c\xd0\xbb\x0f\xd4\xa3\xb4\x68\x60\x00\xa2\x99\x34\xf7\x05\xd7\x3d\xdb\xd1\xb2\xb4\x3a\xe4\xcf\x5b\xad\x6e\x82\x4f\x0e\x50\x82\xb8\x15\x5c\xe4\x59\x23\x03\x90\x52\xc5\xce\x95\xb5\x32\x00\x75\xa9\x3e\x69\x65\xc8\xe6\x00\x3d\x3a\xad\x66\x86\x7c\x22\x01\x54\x7d\x8d\x04\xc8\xa7\x82\x94\x5c\x31\x14\x20\x5b\x41\xca\x63\x5d\x6b\x04\x90\x4e\x58\x44\xd6\x1c\x01\xc4\xa3\xce\x4c\xa6\x9c\xb2\x52\xc8\xa5\x45\x7b\x04\x10\xed\xa4\x25\x69\xda\xd1\xd1\x15\x8b\x16\x09\x20\x9e\xcd\xd0\x8a\xb4\x73\x25\x7b\x41\xab\xd2\xf0\x70\x4e\x49\x5d\x92\x1e\xce\xee\xa3\x43\x1a\xa2\x5d\x62\xab\x14\x4d\x10\xc5\x62\x53\x8a\x7b\x45\x13\x04\x10\xc3\x2b\xd0\x6e\x69\x87\x2b\x3e\xfb\x48\x33\x2d\xe5\xf2\xd9\x57\x9a\xae\x84\xe1\xd4\xb6\x34\xd9\x32\x7c\xdf\x27\x4d\xb6\x10\x29\x5c\xb4\x43\x00\xd5\xa8\xe6\xa2\xd1\xa1\x58\x5a\x4a\xe7\x55\xd1\xea\x50\x2c\x2d\xa5\x25\xa5\x68\x75\x28\xa7\xb4\x94\x2c\x30\x82\x1c\xa8\x46\x40\x14\x2d\x11\xc5\xca\x52\x5c\x8f\x5f\xc5\xf0\x00\xa0\xe9\xe7\x29\x9a\x22\x80\xba\x4e\xab\x4b\x12\xd1\x8b\x4e\xd5\xe8\x00\x20\xc6\x36\xa0\x39\xfd\x74\xa6\xef\xa3\x4e\xdf\x92\x51\xc6\x49\x17\x43\x01\x80\x78\x96\xb9\x1a\x0a\x00\x54\x6e\x6c\xaf\x62\x24\x00\x50\x8d\xe0\x2e\x06\x02\x00\x95\xbb\xd8\xab\x68\xed\x00\xe2\x65\x30\x44\x73\x07\x10\x0c\xf1\x51\x19\x92\xcf\xdf\xd9\x67\xe5\x08\xf7\x43\x0d\xeb\x2e\x1a\x3c\x80\x18\xaf\xaf\x93\x49\xd4\x90\x32\xc0\xa1\x18\x1a\x00\x44\x0f\x0d\x9a\x5c\xca\x7e\x4f\xd3\x76\xb2\x89\x14\x49\xeb\x90\xdc\x38\xd9\x2c\x05\xee\x6b\xed\x22\x40\x70\x4e\x9a\x9c\xcb\x54\x69\x5b\xf6\x20\xe3\xbc\x5a\x6a\xa7\x9a\x4a\x8a\x57\x4b\xf5\x36\x14\x6d\x25\x40\x88\xf1\xf0\x5c\xcb\x48\xf1\x6a\xa9\x1f\xa2\x96\x91\x72\xae\x96\xca\x73\x4d\x23\xe5\x5c\x2d\xe5\x63\x2f\x9a\x46\x80\xba\x1c\xaf\x76\x90\x72\x32\x29\x75\x7b\x95\x25\xe7\x1a\xa9\x8b\xa3\xd9\x03\x88\x76\xd0\xb4\x5e\x00\xa9\x6b\x48\x2e\x9a\x2f\x80\x34\xb4\x35\x16\x83\xd6\x81\xd4\x7e\x48\x27\xc5\xd8\x00\x20\x1d\x3f\x77\xd1\xcc\x01\xa4\x4e\x89\xbe\x55\x34\x73\x00\xa9\x1d\xbe\x6b\xe7\x00\x82\xc7\x4c\xd7\x78\x81\x62\x92\x24\x7f\xab\x45\xe3\x07\x10\xd2\xd3\x7f\x5f\xcf\x5e\x45\xe3\x08\x90\x92\x76\x8f\xa2\x75\xa4\x98\x45\x89\x73\xb9\x68\x1d\x29\x66\x51\x92\x91\x5a\x47\x8a\x59\x94\x94\x23\x8b\xe6\x11\xa0\x19\xec\x52\x34\x8f\x14\x93\x28\x51\xec\x6f\x15\xed\x23\xc5\x4a\x1e\x0b\xbb\x7d\xd1\x40\x52\x9a\x6e\x3b\xc4\x89\xa2\x39\x04\x88\x76\xd2\xe4\x19\x77\x4d\x55\x7d\x8b\xc6\x0f\x20\x9a\xd1\x85\xc6\x0f\x20\xd8\xc3\x50\xb4\x7e\x00\xd1\x0e\x36\x6a\xfe\x00\xa2\x9d\xef\x93\x27\x4d\x9e\x54\xbb\x95\x27\x4d\x9e\x30\x59\x4d\x22\x40\xd3\xe1\x5d\x0c\x26\x00\x62\x12\xb0\x4e\x9b\x07\x10\xbd\xda\x83\x0c\x38\x46\x0f\x4c\xe7\x45\xa3\x07\x10\xcf\xb2\x91\xb4\x7a\x00\xf1\x2c\xdd\x6a\xf6\x00\xd2\x30\x32\xae\x68\xf6\x00\x62\xc4\xd2\x64\x14\x61\xf1\x49\xa1\xa3\x68\xf8\x00\x9a\x01\x4a\x45\xc3\x07\x10\xda\xa5\x5d\xc8\xa8\x2e\xa3\xaa\xed\x64\x14\x69\x94\x9a\xce\x84\x62\x9c\x01\x90\x8e\x3b\xbb\x18\x68\x00\xc4\x34\xa4\xc9\xa9\x6e\x0e\x77\x0f\x35\xcd\x26\x80\x79\x5c\x56\xd1\x6c\x02\xc4\xa3\x70\x54\xbb\x09\x10\x7f\x52\xba\xd5\x48\x02\x78\x25\x7d\x95\x21\xa3\xc6\x61\x14\xaf\x33\x22\x01\x48\xf5\xfc\xad\x8d\x48\x00\x92\x99\x8f\x56\x31\x24\x01\x68\x06\x90\x15\x0d\x2c\xc5\x08\x7a\x85\xb3\xa2\x81\x05\x88\x2e\x18\x9d\x06\x16\x20\x4e\x5c\xbb\x95\x29\xc6\xd0\x6b\xf6\x2c\x5a\x58\x80\x38\x4c\x1c\x8a\x4c\x31\x88\x9e\xba\xe7\xab\x68\x62\x01\x62\xcd\x1c\x9e\x5c\xc1\xc6\xd2\x28\x59\xba\x8a\x36\x16\xc0\x8c\x76\xab\x68\x4e\x01\x52\x56\x71\x2c\xda\x53\x80\x74\x94\xae\xa2\x3d\xa5\x18\x47\x8f\xe4\x54\x34\xa7\x00\xd1\xab\xcd\x64\xd4\x3c\x42\x9c\xed\x64\x14\x91\xf4\xe3\xe7\x6c\x35\xa8\x00\xa9\x35\x3c\x51\x45\x83\x0a\x90\xda\xcf\x5f\x82\x06\x95\x62\xf2\x25\xcd\x38\x45\x83\x0a\x90\xb2\xea\x6f\xd1\xa0\x02\xb4\xea\x46\xd6\x76\x02\x44\x33\x87\x27\x53\x8c\xb9\xd7\x3e\x53\xb4\x9d\x00\x41\xf3\x59\x3f\x34\x23\x1f\xd4\xe2\x8a\x91\x0f\x40\x6a\x46\x24\x16\xed\x29\x40\xca\xda\x36\x8a\xd1\x10\x40\xf4\x0b\x97\xb5\xa8\x00\xed\x08\x71\x1a\x54\x80\xe8\xd6\x66\x72\x85\x82\x58\xd5\xef\x47\x83\x0a\xd0\x8c\x5d\x2d\xda\x53\x80\xe6\x2d\x8a\xa2\x3d\xa5\x58\x1c\x45\xeb\x4c\xd1\x9e\x02\x34\xef\x2a\x14\xcd\x29\x40\x0c\xcd\x66\xb2\xc9\x7a\xd7\xc3\x3d\xa6\x3d\xa5\x58\x1b\x45\x53\x4c\x31\xb4\x02\x88\x2e\x58\x1d\x63\x2b\x80\xa0\xd1\x4e\xbb\x4b\xf1\x8a\xb8\x1e\xb3\xa2\xdd\xa5\x9c\xd8\x0a\xb4\xd8\xa2\xdd\x05\x68\xd5\xf3\x5d\xb3\x0b\x10\xdc\x64\x78\x9a\x5d\x80\xa0\xb1\x8a\x9a\x5d\x8a\xf1\x16\xdd\xd5\xd6\xec\x02\xc4\x50\x6c\x27\xef\x4e\x0c\x06\x6a\x60\xd1\xec\x52\x8c\xc1\xd0\xf2\x54\xb4\xbb\x00\x29\x77\xcf\x1e\xed\x2e\xc5\x18\x0c\x4d\x8f\x45\x1b\x4b\x31\x06\xa3\x3a\x33\x39\x75\x1d\xb5\x00\x2e\x6b\x77\x01\x5a\xf5\xc4\x33\x06\x03\x08\x06\x40\x33\x06\x03\x68\xde\x99\x29\x5a\x67\x80\x18\x1c\x13\xd3\x3a\x03\x04\x0d\x46\x69\x9e\x01\x5a\xf5\x47\xa3\x79\xa6\xdc\x87\x4f\x0c\x4e\xf3\x4c\x31\x2e\x23\xaf\x7f\x50\xd8\x8b\x96\x9a\x72\x1f\x96\xf9\x1a\x59\xc6\xf5\x83\xd6\xdc\xa9\x9a\x6a\x80\x34\x8a\xac\xd5\x54\x53\x8c\xd1\x68\x2e\x81\xf1\x18\x40\x08\x88\xec\x10\x0d\x33\x40\x6a\x47\x04\xd1\x30\x03\xa4\xdc\xe5\xa3\x56\x98\x72\x32\x54\x29\x63\x68\x85\x01\x5a\xf7\x5b\x35\xf8\x02\x88\x47\x61\xa4\x56\x18\x20\x36\xb5\x8f\x3a\x35\x42\x2d\x72\xf7\x27\xab\x19\x06\x68\xdd\x45\xd6\xe2\x52\xcc\x6d\xd5\xfd\xdb\x6b\x71\x01\xd2\x31\x60\x15\x2d\x2e\x40\xbc\xce\x59\x38\xdb\x80\xd6\xfd\x0a\x35\xb8\x00\xf1\x3a\x9b\xc9\x80\xc7\x58\x51\x7f\x13\x1a\x5c\x80\xa0\xd1\x85\x06\x17\xa0\x35\xcf\x39\x0d\x2a\x40\xbc\x0e\xbe\x6b\x51\x01\x52\xef\x1e\x6a\x5a\x54\x80\x68\x07\x03\xb4\xa8\x00\x41\x63\x6d\x8d\xcd\x00\x5a\x77\x69\x35\xb2\x00\xed\xef\x6d\xb2\xe9\x95\x4d\xcc\x41\x13\x0b\x10\xe3\x75\x70\xb2\xee\x95\x75\xca\x62\x9a\x5d\x80\x90\x2d\xed\x54\xd6\xbd\xb2\xc9\xb1\xc9\xa6\x57\x36\x29\x4f\x69\x75\x01\x5a\x73\x8b\x69\x74\x01\x62\x3b\xb1\x86\x1a\x5d\x80\xd6\x3c\xab\x0c\xdc\x00\x5a\xf7\xa7\xa1\x19\x06\x88\xc9\x33\x53\xcd\x30\x40\xeb\xfe\xfa\x34\xb9\x00\xd1\xcc\x0e\x64\xc8\x76\xe3\x78\x2c\x6b\x72\x01\x5a\xf7\x43\xd5\x6c\x02\xc4\xec\x59\x7d\xcd\x26\x40\xbc\x0e\x8e\x68\x22\x01\x52\x5f\xea\x87\xda\x48\x80\x34\x7e\x6a\x0d\xda\x43\x80\x74\xa2\xf9\x8a\x31\x17\x40\xca\xf3\xd0\x1c\xf2\x67\x2d\x3e\x67\xab\x8d\x04\x88\x76\xb0\x58\x1b\x09\x10\x34\xfb\x75\x15\xbf\xb3\x8a\x3e\xeb\x2a\x7e\xa6\x4c\x91\xa1\x1a\x49\x80\x94\x0f\xdf\x35\x92\x00\xd1\xaf\x73\xf3\x03\xa0\x56\x8a\x37\x6a\x8a\x46\x92\x62\xad\x94\xa9\xd0\xa1\x91\x04\x88\x47\x63\x78\x55\x23\x49\xb5\x7e\x8a\x41\x94\x55\x23\x09\x90\x2c\x86\xbb\xaa\x06\x11\xa0\x79\x89\xa5\x6a\x0f\x01\x52\x53\x48\xa8\x1a\x44\x80\xe8\x62\x40\x1b\xd2\x0e\x57\x0a\xb4\x29\x6d\xba\xa3\x7c\x76\x49\x33\x91\x0c\x1f\x5e\x35\x28\x03\x88\xf7\x39\xbc\x5b\x9a\x5c\x19\xb6\x7b\xa4\x1d\xae\x54\x68\xaf\x34\x6f\xfa\x21\xef\x56\x8d\x24\x40\xf4\x61\xbb\x4f\xda\x67\x3b\xa6\xab\x91\x04\x08\x5a\x87\x26\x5b\xc8\xb0\x95\x35\x83\x56\x2d\x27\x40\xbc\x4f\x9a\xac\x4a\x27\x7c\x8f\x7e\xb5\x9c\x00\xf1\x3e\x78\xa0\xe5\x04\x08\x1a\x3c\xd0\x74\x02\xc4\xfb\xa4\xc9\x3f\x52\x6b\x9d\x20\xa3\xaa\x39\x05\x68\x83\x1f\x5b\xd5\x9c\x02\xc4\xeb\x60\x8b\xc6\x13\x20\x75\xc3\x06\xab\xc6\x13\x20\x9d\xa0\xa2\xaa\x51\x04\x88\x67\xe9\x42\xdb\x06\x90\xac\x13\xb1\xaa\xb6\x0d\x20\xd5\xc6\x4f\xb6\x6a\xdb\x00\x42\x70\xb7\x9d\x43\xc6\xb8\xd1\x14\xf8\xaa\xc6\x8d\xea\xc5\x07\xff\x49\x55\xeb\x06\x90\xca\xcf\xad\xa1\x75\x03\x08\x9a\xed\x9c\x07\x55\xb3\x87\x9b\x54\xeb\x06\x10\xcd\xec\xc2\xa9\xe5\x33\x35\x5f\xe7\x8a\x07\xb4\x21\x93\x35\x65\x00\xf1\xa8\x34\x17\x17\x53\x46\x49\x6e\x34\xe3\x3e\x80\x36\xf8\xea\xab\xd6\x0d\xa0\x8d\xf9\x0f\x41\x6f\x55\x43\x07\xd0\x86\xb3\xd6\xce\x01\x44\xff\xac\x80\x31\x20\x40\xd0\x58\x3d\x8d\x1f\x40\x1b\xee\x5f\x6d\x1f\x40\x34\x63\xbf\x19\x05\x02\xb4\xe1\xba\x17\xf9\x55\xcc\x34\x24\xc3\x34\x91\xd4\x72\x3e\x11\xa7\x23\xc3\x8a\xb9\x96\xfc\x1c\x0c\x0d\x01\xd2\x89\x43\xab\xc6\x86\x00\xd1\x8e\x67\x35\xaf\x00\xc1\x31\x69\x72\xac\xaa\xed\x26\x69\xb2\x0c\x53\xca\x30\xb0\xaa\x6a\x4a\x01\x1a\x59\xcf\x57\xd5\x92\x52\xbd\x79\x41\x06\xae\x55\xb5\xa4\x54\x6f\x5e\x90\x82\x6b\x55\x2d\x29\xf5\xdc\xbc\xe8\x76\x21\xa3\xbc\x66\x41\xca\xb0\x55\x35\x8b\x54\xf2\x6d\x15\x12\x4e\xaf\xaa\x11\x04\x08\x9a\xfd\xca\x02\x52\x49\xb7\x7a\xfa\x75\xba\xd5\xea\xc2\x6e\x7d\x2d\x1e\x40\xd0\xe0\xbc\x31\x21\xb5\x65\xa6\x21\xc9\x99\x35\x35\xb1\x2a\xcd\xa9\x35\x4b\xb9\x72\x16\x57\xad\x1b\x40\xd0\x6c\xe7\x34\x9a\x06\x21\xfe\x8c\x55\xb3\x05\x10\x5f\x17\x43\x36\x56\xa3\x9a\x21\xab\xb8\xa7\xb5\x5b\x54\x33\x64\x79\x09\xa2\x6a\xa3\x00\xda\x39\xee\x35\x47\x54\x53\x5f\x79\x59\xb8\x6a\x8e\x00\xda\x39\x62\xb5\x46\x00\xcd\x7f\x4c\xd5\x18\x01\xa4\x46\xad\xb4\x55\xb5\x3c\x00\xa9\x19\x93\x57\xb5\x3c\x54\xac\x0c\x27\x02\xaf\x6a\x65\x00\x9a\xba\x73\xd5\xc8\x00\xa4\x13\x0e\x57\x35\x32\x00\xa9\x1a\x0c\x5f\xb5\x32\x00\xa9\x68\x62\xac\x5a\x19\x80\xa0\xd9\x85\x4b\xc6\xd5\xfd\xd2\x88\x7b\xaa\x5a\x1e\x80\xb6\xdc\x3d\x5a\x1e\x80\x68\xc6\x64\x0d\xd9\x00\x1a\x79\xde\x57\xd5\x18\x01\x44\x33\x26\xa6\x31\x02\x48\x85\x1a\xe4\xab\x6a\x8c\x00\x82\xe6\xb3\x6e\xda\x61\x1e\x5c\x7f\x27\x5a\x23\x80\xe6\xb5\xff\xaa\x31\xa2\x5a\x24\xbb\x79\xe4\x6a\x8c\x00\xd2\x89\xd1\xac\x1a\x1e\x80\xd4\x87\x1b\x40\xc3\x03\x60\xa9\xad\x55\xb5\x3b\x54\x6c\x0c\xeb\xbc\x4d\x96\x70\x53\x5f\xd3\x64\xd5\xec\x50\x31\x31\x14\x05\x8f\xaa\x89\xa1\x5a\x0f\x5b\x11\xb8\x6a\x63\x00\x52\x51\x8e\xad\xda\x13\xaa\xf6\x04\xef\x14\x56\x35\x51\x20\xcd\x86\x79\xb6\xaa\x61\x02\xc9\x12\xad\xab\xea\xec\xad\x26\xc5\xaa\xee\x31\x75\x8a\x7a\x8a\xd1\x78\x80\x2b\xa2\x02\x41\xa3\x9d\x82\x16\x90\xa6\x5f\x4a\xf3\xa0\x6f\x7f\x07\x7d\xcc\xad\x79\x30\x00\x69\x2a\x06\x37\xf9\xde\xcc\xb0\xcd\x47\xd1\xe4\x3b\x10\xd3\xc8\xd0\x2e\x69\xdc\x43\x6a\x3e\x79\x4b\xe2\xa6\x2a\x72\x6b\x93\xeb\x40\xfa\x69\x2b\x6b\xb2\x1d\x08\x21\xd5\xb7\x7d\xd2\x3e\x7b\xe0\x75\x32\x1e\x48\x86\x52\x35\xf9\x0e\x64\x72\x4d\xaf\x26\xdb\x81\xdc\x8a\xad\x9a\x24\x73\xba\xf1\x37\x6c\x5a\x71\x80\x59\xb8\x0b\xd2\x34\xd8\x00\xb3\x70\xb0\x35\xed\x35\x40\x31\x38\xb6\x19\xeb\x02\x14\x1d\x02\x4d\x73\x0d\xb0\x7e\x68\x71\x4d\x6b\x0d\xb0\x7e\xc5\x77\x6d\x49\x04\x7f\xba\x04\xda\x6a\x80\xa2\x4d\xbf\x69\xaa\x01\xd6\x8f\xcf\xbc\x69\xa9\x01\x8a\xa6\xc4\xa6\xa1\x06\x28\x3a\x34\x9a\xc1\x30\x40\xd1\x79\xd7\x34\xdd\x00\x45\x6f\x63\xd3\x4c\x03\xa4\x66\xe4\x4f\xd3\x4e\x03\x04\x8d\x91\x69\xa8\x01\x8a\xf6\xe5\xa6\xa1\x06\x88\x66\xf6\x20\x33\x02\x56\x48\xb4\xff\xf9\x2b\x6f\xda\x6c\x80\xe5\x7d\x80\xa6\x79\x06\x58\xe3\xbc\x57\xc6\x04\x2c\x45\xae\xa6\x71\x06\x48\xb5\xf1\xab\x6c\x1a\x67\x80\x6a\xec\x4c\xf3\xcb\x01\x62\x57\x4b\x93\x35\xa4\xf9\x33\xb5\x53\xd3\x36\x03\x54\x33\x47\x35\x4d\x33\x40\x35\x42\xb8\x69\x99\x01\x62\xe3\xb0\x99\xb4\xcc\xb4\xeb\x70\x0b\xde\x6b\x99\x69\x17\x97\x74\xb3\x43\xf3\x73\xb8\xb4\x32\xf0\xb5\x36\x83\x5f\x9a\xc1\x2f\x5a\xe3\x9b\x86\x19\x20\x68\x3e\xeb\xe6\x09\xa8\x86\xf4\x35\x0d\x33\x40\x34\x63\x0e\x5a\x61\x80\xa0\x31\x62\xcd\x30\x40\x35\xe8\xb2\x69\x4a\x01\x52\xd2\x06\xd2\x8c\x74\x01\x82\xe6\xeb\x9c\xd8\x7d\x4c\xe0\x70\xce\x50\x97\x86\xad\x24\x1d\xa6\x6b\x2b\x01\xaa\x77\xc6\x9b\x61\x2d\x40\x4a\xe7\x03\xd3\x7c\xd2\xcc\xe5\xdd\xce\x50\x9c\xc5\x7d\xbc\xce\x76\xe1\x52\x63\x52\x49\x9a\x5e\x9a\x26\x15\x20\x86\xc2\xb3\x1e\x75\x40\xd0\xe8\xc3\x20\x16\x20\x68\xac\x8f\xf6\x13\xa0\x69\xc2\x6c\x9a\x4f\x80\x68\x26\xcd\x25\xc3\x7c\xa2\x85\xb5\x19\xc4\x02\x44\x33\xbe\x03\x4d\x2a\xed\xc1\x66\x8f\xcc\xd6\xb4\x94\x00\x31\x09\x3a\xd5\x04\xd2\xbc\x86\xc2\xaf\xae\x69\x01\x01\x52\x3e\x9b\x53\x13\x48\x7b\x8f\x95\x90\x39\x68\xee\x00\x9a\xd7\x80\x9b\xd6\x0e\xa0\x79\x01\xad\x69\xec\x00\x9a\xb7\x80\x9b\x26\x8b\xf6\x5a\xbe\xa0\xda\xcc\x85\x08\x68\x64\x39\x5d\x4d\xf3\x44\xd3\x3c\x61\x78\x4d\xd3\x3c\x01\xa4\x6c\x90\x50\xd3\x3e\x01\x44\x3b\xc6\xab\x7d\x02\x68\xe6\x8f\x68\xda\x27\x80\x36\x10\xbb\x9b\xf6\x09\x20\x84\x58\xd8\xab\x7d\x02\x08\x1a\x83\x33\x4e\x04\x08\x9a\xcf\xba\x0c\xfb\xfc\x49\x78\xd6\x0b\x1b\xed\x44\x53\x30\xd9\x6e\x30\x3d\x90\x74\xbb\x74\x75\xb0\x7e\xaa\x5b\x1e\xda\x96\xb6\xff\xef\x7f\x3a\x09\x00\x57\x57\x2d\x03\xcc\x8e\xba\xba\xbe\xea\xee\xad\x75\xb6\x43\xd7\x57\x0d\x74\x12\x13\xae\xae\xaf\x1a\xe8\x24\x39\x5c\x5d\x75\x0e\xe8\x24\x39\x5c\x5d\x8d\x0c\xe8\x8a\x91\x5d\xe5\xab\xab\x7c\x25\x1f\x74\xf8\x2a\x5a\xec\x85\xee\xef\x17\xe8\xca\x9a\x5d\x35\x0b\x48\x9e\xc3\x5d\x27\x32\xd0\xfd\x6f\x77\x35\x2f\xa0\x2b\x08\x77\x15\xaf\x7e\x14\x2f\xde\xa5\xde\x05\x24\x4f\xa9\xae\xde\xd5\x4f\xae\x34\x76\x69\x57\x3d\x02\x52\xd7\xe9\xd1\xd5\x8f\x80\x3e\x50\x95\xbb\xea\x11\xd0\x87\x1c\x53\x3d\x02\x92\x91\x36\x5d\xed\x08\xe8\x83\x0d\xd9\x55\x8e\x80\x3e\xaa\xad\x9c\x12\x7a\x90\xa2\x4d\x57\x0d\xea\x7a\x99\xf9\xca\xba\x4e\x66\x20\x75\xef\x6c\x75\x35\x23\x20\x69\xca\xec\x2a\x46\x40\x1f\x1c\x14\x5d\xbd\xa8\xeb\x62\xe6\xcb\xee\xea\x45\x40\x9a\xf9\x74\xe0\x94\x02\x46\x3a\x2f\x73\x4a\xd5\x5b\x68\x3e\xe9\x92\x54\xb2\xd0\x2c\xdf\xef\xf8\xb9\x30\x9e\x1c\xbf\x7a\x0d\x90\xa9\x8c\xb1\xba\x6a\x0d\x30\x92\xec\x31\xae\x1d\x18\xc9\x81\xa9\xe9\x00\x23\x39\x2e\xdd\xb8\xfd\xa4\x2b\xe3\x9c\xeb\x2a\x35\x40\x36\xd2\xb7\xab\xd3\x00\xb9\xc9\x58\x5d\xb1\xc0\x18\xd9\x07\x65\x7f\xe3\xb6\x98\x2b\xa2\x92\x03\xe4\x56\xff\x41\xfb\xee\xba\x6e\x81\x31\x30\x97\x76\xbd\xb4\x40\x6e\x6e\x11\xb5\xa2\xde\x95\xbb\x58\x2f\x35\x20\x20\x6b\xe8\xe8\xfa\x4f\x81\x34\xbd\x67\xd2\xd5\x6c\x80\xa2\xd7\xa5\xab\xd9\x00\xb3\x34\xbb\x74\x76\xdc\xdd\xf6\x6a\x4e\x57\xaf\x01\x66\x41\x3b\xed\xaa\x30\xc0\x2c\x28\xb6\x5d\x0d\x06\x28\xc6\x30\x77\x35\x18\x60\x96\x26\xc9\xe1\x0f\x24\x2a\xb7\x83\x0a\x0c\x50\xbc\x65\xd5\xd5\x5f\x80\xe2\xcd\x9f\xae\xfa\x02\x14\xc3\xc1\xba\xda\x4b\x1f\x5c\x8e\xe3\x37\xdf\x95\x98\x81\xe2\x65\xa0\xae\x74\x0c\x84\x40\x23\xcd\x49\x0e\xae\xc2\x35\x5f\xe6\x24\x07\x97\xa5\xdc\x22\xfa\x42\x81\xf5\x93\xd5\xca\xc6\xc0\xfa\xb9\xd0\xba\x42\x81\xd4\x13\xff\xa9\xae\x70\x0c\xac\x9f\xbb\x46\xb7\x27\x50\xd4\x8d\xbb\xf2\x72\x9f\xa4\x46\x74\x87\xeb\xe0\x04\xd6\xaf\xf8\x2e\xa7\x34\xb9\x05\x85\x27\xab\xeb\xca\xec\x56\x9a\xf5\x4c\x53\x5c\xee\x47\x5c\x76\xac\xce\x68\x3a\x23\xc7\xea\x8c\x8e\x6c\xec\xeb\x5d\x49\xfc\x98\xcd\x5b\x1a\x5d\x49\x18\x58\x26\x42\xea\x4a\xc2\x7d\x71\xfd\xc1\x33\x53\xb1\xb7\x2f\xae\xcd\xa0\x76\x74\xc5\x5e\x20\x78\xcd\x30\x14\x7b\x81\x65\x26\xa4\xae\xd4\xdb\x8f\xd4\xcb\xc8\x94\x7a\x81\xea\xfd\xa9\xae\xd0\x0b\x54\x6f\x44\x74\xa5\xda\x6e\x60\xf7\x19\xab\x53\x5a\x86\x1d\x22\x75\x76\xe5\xd5\x7e\x82\xb8\x91\x31\xbb\x02\x6b\x37\x88\x5b\x3f\x7e\x57\x60\x05\x52\xa5\x22\xcb\xea\x4a\xac\xdd\x20\xee\x33\x2d\x45\x56\x20\x8d\x74\x9e\x75\x5a\x66\xa6\x76\xd5\x75\x12\x02\x21\x62\x31\x3c\xe5\x53\xa0\x19\x52\xd1\x15\x45\x81\x94\x96\xff\x07\xe5\x4e\x20\x68\xb4\x53\xee\x04\x82\xc6\xe8\x94\x3b\x81\xa6\xef\xad\xeb\xe9\xeb\xde\xc0\x56\x2a\xee\xba\xfa\x80\xd6\x91\xeb\xbb\xa2\x28\xd0\xba\xef\x72\x15\x6e\x45\x33\x46\xab\x1c\x0a\xa4\x7e\x5e\xef\x2a\xdc\x1e\x80\xac\x82\x62\x28\x30\x86\x5f\xba\x52\x68\xd7\x89\x67\x72\xd9\xae\xc4\xd9\x2d\x07\x6b\x97\x0a\x9c\x40\x51\x53\xed\xaa\xdb\x40\x31\xfe\xae\xeb\xd5\x03\xd6\x91\x1b\x94\x4a\x81\xf5\xab\xb6\x72\x8e\x8f\x1f\x14\x0b\xa0\x9c\x0a\x14\xc5\xe3\xae\x98\xda\x1f\xee\x58\x22\x09\x77\x45\x52\x60\xfd\x3c\xe5\x15\x49\xfb\xe3\xb5\x24\xdf\xe5\xbc\xa9\x0f\xab\x1d\xa8\xeb\xcf\x03\xaa\x81\xf1\x5d\x21\x15\x28\x46\x6e\x74\xdd\x79\xc0\x32\xab\x56\x57\x1e\x05\xaa\x51\xf6\x5d\x8f\x5c\x3f\x31\xce\x3e\xa9\x88\x0a\xc4\xfe\xa1\x4f\x65\x54\xa0\x99\x85\xaa\x2b\xa3\x02\x4d\xcf\x7b\xd7\x21\x07\xc4\x1e\xb0\x99\xd3\x7c\x75\x63\xfb\x49\xe9\x92\x03\x4e\x0c\x7c\x57\xbc\xed\x7a\xe4\xce\xf7\xa3\x47\x0e\x68\x26\x75\xe8\x4a\xbc\xc0\xf1\xd1\x75\x43\xa3\x81\x78\xd2\xb7\x39\xf9\x17\xc7\xb6\x3f\x14\x85\xe0\xae\x10\xac\x0e\xd8\x15\x78\x81\x90\xa9\x79\x9d\x12\x2f\xd0\xcc\x1a\xd1\x95\x78\x81\x46\x41\x80\xd5\x15\x6e\xbb\xc2\xad\xca\x76\x57\xb8\x05\x92\xb1\xd2\xdd\xd8\xe6\xee\x8d\x68\xb9\x6b\x68\x33\x50\x34\x15\x74\xc3\x93\x81\xd2\x7e\xff\x70\xf5\xac\xeb\x99\x03\xd6\x0f\x45\xa8\xeb\x98\x03\xd6\xcf\x0f\xc4\xd8\x65\xa0\xa8\xf5\x75\x85\x6d\x20\xd5\xe9\x47\xaf\xab\x0e\x58\x5e\x84\xef\x1a\x90\x80\x62\x7c\x58\xd7\x51\x07\x14\x03\xb0\xba\x7e\x3a\x60\x0d\x8f\x37\xdd\x74\x40\x31\x16\xae\xeb\xa5\x03\x96\xe9\x75\xba\x4e\x3a\xa0\x18\x7d\xd5\xf5\xc7\x01\xcb\x4b\xed\x5d\xdf\x5b\xb7\xf2\xab\x2b\x36\xf4\xbd\x01\xd5\x9b\x12\xc3\x58\xe4\xf1\x3b\x27\xea\x82\x56\xa4\x15\x53\xdc\x26\x68\x55\x5a\x45\x57\xee\x90\x9a\x24\xe3\x4e\xf9\xba\x86\xee\xb8\xf1\xf3\x0a\x84\xa4\x29\xc9\xa8\x75\xbe\xcb\xa1\xe7\x0d\xa8\x5e\x9d\x1c\x3a\xd9\x86\x91\xc8\xfe\xe1\x87\x0e\x35\xa0\x99\xff\x6c\xe8\x4f\x03\x9a\xe9\xd5\x86\xee\x34\xa0\x99\x54\x67\xe8\x4d\x03\x52\xa2\x58\xfd\x1a\x7a\xd3\x80\x66\xae\xb6\xa1\x33\x6d\x18\x86\xec\x9f\x6e\xe8\x4c\x03\x9a\x99\xd9\x86\x3e\x32\xa0\x99\x60\x6d\xe8\x0e\x03\xe2\x58\x67\x68\xfa\xc3\x80\xa0\x39\x10\x67\x95\x94\x5b\xe4\x91\xea\x19\xd0\x0c\x6b\x1a\xaa\x67\xc3\xf8\xe2\xd5\xec\xd5\x99\x26\x82\xb8\x96\x63\x73\xa6\x86\x17\x2f\x3e\xaf\xa1\xca\x06\x04\x8d\x79\xa9\xb3\x01\xa9\x1b\xaf\x33\x54\xda\x80\xf8\x82\xe9\x56\xad\x0d\x08\x9a\xed\x5c\xe8\xac\x8a\x4d\xb7\x3a\xe1\x80\x68\x26\x4d\x9e\x64\x1d\xe8\xfc\xeb\x86\x4e\x38\xa0\x99\x06\x6b\xa8\xf1\x0d\x7d\x70\x94\xd0\x5e\x43\x1f\x1c\x10\x34\x26\xab\x1a\x08\x34\x0a\x31\xac\xa1\x0b\x6e\x64\xfd\xec\xd5\xc1\xc9\x93\x7c\x74\x71\x76\xa6\x2a\x1e\xd0\x94\x73\x86\x2a\x1e\x90\xaa\x59\x1a\x87\x3a\xde\x38\xbe\x35\x06\xa7\xa7\x0c\x08\x1d\x5b\x9a\xf3\x2a\x0a\x3f\x7e\x23\xea\x7d\x83\x74\x61\x03\x19\x6c\xa8\xe3\x01\xf1\x28\x73\x50\x7d\x1b\x94\x91\xa1\x02\xef\x1a\xaa\x6f\x43\x37\x16\x75\x64\xd6\x50\x7f\x03\xd2\x31\x9d\x0e\x15\xb8\x61\x1d\x19\x35\xcb\xa1\x02\x07\xb4\xf3\xd9\xa8\xc0\x01\xe9\xd8\x53\x87\x1a\x1c\xd0\x3c\x59\x86\x5e\xac\xa1\x17\x4b\x53\xe9\xd0\x58\x3d\xf4\x62\x69\x18\x1d\x7a\xb1\x80\x76\x3e\x7d\xe3\x7d\x87\x8e\xad\xe6\x6e\x52\xd3\x1b\x3a\xb6\x0c\x77\x19\x6a\x6c\x40\x1a\xc6\x98\x0c\xc3\x71\x81\xe4\x05\xab\xa1\x7e\x06\x14\x6d\x49\x43\x3f\x14\x90\x6a\x73\xc0\xaa\x6c\x40\x9c\x55\xbe\x4d\x0e\x37\x6f\x44\x9d\x76\x8e\x24\x94\xb6\x66\x16\xac\xa1\xd2\x06\xa4\xa6\x07\x76\xa8\xb5\x01\xc9\x5b\x6d\x43\xb5\x0c\x88\x5e\x69\xa6\xb7\x0a\xa8\x5e\x80\x1e\xaa\x6a\x40\x33\xb9\xdb\x50\x55\x03\xb2\xb9\xd8\x86\x31\xb1\x40\xfb\x9d\x07\x9d\x41\x87\x95\x1e\x11\x6a\x6f\x40\x36\xb1\xdb\x50\x79\x03\x66\xc1\x6b\x38\xd4\xd4\x80\xf5\xf3\xfb\x50\x53\x03\x52\x37\x23\xc6\xd0\x03\x05\xac\x1f\x52\xe4\x50\x55\x03\xd6\xcf\x0f\x50\x55\x0d\x48\x4d\x95\x68\xa8\xab\x0d\xef\x07\xfb\x29\xa8\xab\x01\xcb\x30\xf5\xa1\xae\x06\x14\x6d\x88\x43\xc5\x0c\x28\x1a\xf8\x86\xde\x8d\x31\xfc\x65\x49\x72\x4a\x5e\x0e\x3e\x47\x88\xca\x1a\x90\x7e\x5e\x36\x1a\x2a\x6b\xc3\xdb\xc1\xc5\x09\x38\xcf\x73\x3b\x38\xff\x83\x76\x3d\x54\xe6\xc6\xb9\x3c\x7c\x66\xe3\xd2\x9e\xcb\xc3\x6e\x45\x35\xbc\x61\xf6\xae\xf3\xa7\x53\xc5\x03\x82\xc6\x1a\xe9\x12\x19\xe7\xf6\xb0\xc3\x52\xed\x03\xa2\x0f\x96\x44\xbd\x6f\x98\xd2\xcb\x3b\x4b\x43\xc5\x6f\x78\x7d\xd8\x49\xaa\xf8\x01\xa9\x37\x6c\x5e\x43\xcd\x6f\x78\x55\x58\x69\x60\xe8\x29\x01\x62\x37\x32\x0d\xd5\xc1\x31\xcf\x7e\x77\x28\x32\x92\x3c\x5f\x5a\xf6\x87\xfa\x20\x50\x4d\x0d\x31\xd4\x07\x87\x97\x82\x15\x1b\x86\x0a\x21\x50\xf5\x1c\x0c\x35\x3d\x20\xfe\x89\xd2\x1c\x30\xde\x8c\xd4\xec\x41\xbd\x0e\x68\xa6\xad\x1b\xea\x75\xc3\x8c\x5e\xed\xd0\x1c\xef\xc9\xe8\xe5\x71\xa7\xb2\x07\xc4\xfe\x63\x29\xd4\xf6\x80\x94\x16\x56\x86\x61\xdc\xe9\x38\x29\xbd\xfc\x10\x54\x01\x81\xa0\xd9\x87\xb3\x58\xe7\xab\x65\x29\x74\x6d\x00\x27\x21\xf2\x50\x53\x1c\x27\xec\xd4\x7f\x96\x9a\x22\x90\xb2\xf7\x29\x86\x9a\x22\x70\xae\xc0\x0f\x15\xc5\x71\xc2\x4e\xdd\x14\x2a\x8a\xc3\xb0\xd3\x73\x18\xeb\xdc\x00\x8e\xcf\x7e\xe8\xc7\x18\x27\xc2\xd4\x0d\xa0\xa2\x38\x4e\x34\xa9\x7b\x51\x47\xc6\xb0\x86\xe8\xd9\x3b\x6a\x8f\x40\xd0\x1c\x8a\x4c\xa1\x24\x92\x37\xbb\x86\x0a\x25\x10\xcd\xe8\x56\xe5\x11\x48\x55\xbf\xf3\x30\x76\x14\x48\xc7\xb8\x33\xd4\x28\x87\x1a\x65\xf7\xc8\x50\xa3\x04\x52\x37\x03\xef\x50\xa5\x04\xa2\x1d\xc3\xd3\xbb\x31\x8c\x0e\xed\xc8\xb9\x43\x45\x73\x18\x1d\x3a\xfc\x95\xa9\x69\x02\xf1\x3b\xf6\x59\x59\x80\x17\xa4\x9b\x78\x7a\xa8\x7e\x02\xd1\x0e\x2e\xab\x6c\x02\x69\x0e\x42\xe1\x86\x2e\x0f\x20\xe6\xe6\xb3\xee\x01\x5c\x1e\x25\x29\xcb\xa8\x81\x02\xd1\x8e\xf1\xa9\x82\x02\x6d\xba\x42\xaa\xa0\x40\x3a\x96\xb1\xa1\x0e\x0a\xb4\xe9\x1e\x50\x07\x1d\xcf\x89\x96\xb0\x99\x5c\xc1\x31\x72\x3e\x46\x1d\x23\x40\x3a\x4e\xc3\xa1\x16\x0a\xa4\x63\x0a\x1f\xaa\xa1\x40\x33\x09\xff\x50\x0d\x05\xf2\xef\x74\xe0\x0e\x08\x28\x3a\x72\x86\x6a\xe8\xf0\x1e\xef\xd9\x77\xea\xa1\xc3\x7b\xbc\x67\x1b\x1b\x56\x3a\xce\x3d\x5e\x0f\x6b\x7d\x2a\xc3\x7b\xbc\xe7\x4f\xab\xc2\x0a\x04\x97\xe8\x43\x8d\x15\x68\x3a\xda\x86\x0a\xeb\x50\x61\x35\x6a\x61\xa8\xb0\x02\x41\xf3\x51\x59\xf2\x1a\x79\xed\x0f\x59\x95\x75\x1c\x95\x55\x21\x45\x95\x75\x1c\x95\x55\xde\xa9\xb2\x0e\xa3\x48\xcd\xf5\x39\x54\x46\xc7\x71\xbf\x30\x5b\x95\xd1\xa1\x96\xd9\x95\x6f\x75\xb5\x8c\x7d\xd6\x5a\x9a\x6b\xbd\x4f\xec\x14\xdd\xaa\x66\x0e\x1d\x2b\xd6\x09\x18\xea\x99\xe3\x4f\xcf\x84\x53\x46\x7e\x02\x69\x18\xde\x3f\xcc\xa0\x35\x2c\x72\x84\xdd\x6d\x18\xd1\x09\x44\xb7\x34\x53\x6f\x04\xe2\x18\x64\x28\x2a\x8e\x40\x70\x8a\x2e\xd4\x1c\x81\x64\x05\xdf\x35\x8c\xf2\x04\xb2\xf1\x4c\x43\xcd\x11\x48\xb5\xb9\x17\x55\x1d\x81\x7a\xce\x0a\xf5\x44\x20\x7a\xb5\x07\xf9\xf9\x61\x02\x70\x79\x54\x14\x87\xe1\x9c\x46\xd9\x0d\x35\x45\xa0\x99\x38\x70\xa8\x29\x0e\xc3\x34\xd7\x79\x9b\x1b\xea\xa3\xcc\x1a\xaa\xf7\x54\x53\x04\x52\x29\x8c\x77\x1a\xa5\x09\x64\x43\xbc\xa6\xda\xe3\xa4\x60\xa9\xc6\xd5\xa9\xa2\x08\xcc\xd2\xff\xbb\x82\xd8\x9a\xea\x91\x33\x54\xc7\xa2\xcb\x75\x1a\xc1\x39\x4d\x69\xcd\xf7\x3d\x55\x23\x81\xa2\x59\x6e\x1a\xab\x09\x14\xcd\x6d\xd3\xb0\x4c\xa0\xac\xf3\xe0\x2b\x09\x53\x4e\xb1\xd5\x27\x09\x8f\x39\x7f\xf8\xa9\xc6\x38\xc9\x8c\xa5\xc3\x74\xaa\x1d\x4e\x93\x55\x73\x18\x4d\x95\x43\xa0\xe8\xf5\x9d\x06\x5a\x02\x69\x0e\x8c\xf4\xd3\x40\x4b\x20\x8d\xcc\x6f\x75\xaa\x44\x02\xf1\x25\x4f\x68\x4e\xd3\x14\xd6\xfc\x7c\xa6\x0a\xe3\x34\x37\xf5\x99\x81\x0a\x23\x50\x35\xdb\x4e\x15\xc6\x69\x6a\xea\xbf\xf1\x6e\x69\x47\x0e\xb0\x9d\x33\x4d\x1a\x86\xf9\xab\x4c\x35\xc6\x69\x6e\xea\x33\x31\x35\x46\xa0\x1a\x56\x30\x55\x0e\x81\xd4\xbc\x1b\x33\x55\x0e\x81\x66\x96\xb1\xa9\x22\x38\xcd\x42\xad\x5b\x79\xaa\x08\x02\xd1\x43\x81\xe6\xfa\x65\xe5\x20\x57\x4b\x4d\x10\x88\x67\xe1\xa7\x6a\x1f\x50\x8d\xfb\x9d\x7a\xff\x80\x66\xbe\xb0\xa9\x22\x08\xa4\x9e\xab\xf3\x72\xae\x59\xe7\x38\x27\xca\x54\x39\x04\x9a\xf9\xe0\xa6\x8a\xe0\xb4\x3c\x69\x73\x12\x7a\xfb\x80\xf8\x14\xe9\xd5\x4b\xa4\x40\xd0\xe0\x89\x1a\xe3\xf4\x12\xa9\xd5\xbd\xa6\x81\x94\x40\xf3\x82\xe7\x54\x61\x04\x9a\x01\x88\x53\x3f\x21\xd0\x7e\x67\x6c\xce\x34\xa0\x99\xa7\x6c\xaa\x07\x02\x71\x9a\xf0\x7e\x95\xbe\x69\xf1\x50\xca\x27\xae\xa9\xd2\x07\x44\x3b\x5e\xa7\xdf\x0e\x88\x76\x30\x58\x4d\x10\x68\xde\xe5\x99\x2a\x82\x40\xfc\xc7\xed\xc2\xf1\x72\x31\x34\x79\x8d\x62\xaa\x09\xce\x73\xf3\x93\x43\x6c\xea\x06\x04\x82\x06\xeb\xd4\x0e\x81\x60\x93\xef\x73\xc3\x56\xec\x8c\x87\xe4\x1a\x5a\x79\x54\x66\xea\x2e\x04\x5a\x3d\x73\x70\x09\x03\x9a\x97\x6f\xa7\xee\xc2\x69\x91\x51\x15\xbc\xa9\x73\x10\x68\x5e\x8c\x9e\xaa\x95\xd3\xe2\xa1\x14\x5d\x5e\x53\xb5\x12\x68\x5e\x04\x99\xde\xdd\x9c\xd6\x0e\xa5\x5c\xf3\x9a\x6a\x95\xc0\x49\xbd\x34\xf5\x0e\x02\xd1\x8c\xb1\xa9\x69\x02\x41\x83\x21\x6a\x9a\x40\xf3\x36\xc3\x54\xd3\x04\x52\xf6\x8e\xe7\x54\xd3\x04\xe2\xd0\xe5\x75\xea\x95\x93\x3b\x99\xd9\xbb\x7c\x53\x1f\xe0\xec\x27\x10\x80\xf7\x19\x06\x09\xb4\xb1\x6c\xe6\xaa\x76\x6d\x14\x72\xce\xc8\x48\xa0\x8d\x25\xc9\xb9\xf6\x13\xa4\xea\xa3\xae\x60\xb7\x7c\xff\x79\xd4\xf9\x07\xb4\xe9\xe2\xab\x95\x02\xa9\x53\x5b\x7e\x4d\xbd\x85\x40\xf3\xfa\xc1\x54\x05\x9d\xc6\x3b\xfa\x11\xaa\x82\x02\xcd\xdf\xe1\x54\x03\x05\x52\xf1\x0f\x3e\x55\x41\xa7\xb1\x8d\x5e\x35\x99\x3a\x07\x81\xf8\x33\x43\x53\xc8\x06\xb2\x81\xcb\x53\x07\x0d\xb0\x7e\x9e\x2d\x8a\xd3\xc0\xa2\x6a\xe4\x9a\x4a\xd3\xf3\x3a\x82\x13\xac\xf4\x76\x16\x50\x95\xa5\xa6\xd2\x34\x50\x15\xb9\xa6\xc2\x34\x10\x07\x15\xc3\x55\x98\x06\xaa\xb1\x1d\x53\x59\x7a\x2a\x4b\x67\xf7\xa5\xb2\x34\xd0\xbc\x9b\x36\x15\xa5\x81\x54\x1b\x12\xe2\x54\x94\x06\x62\x4b\x3b\x10\x67\x65\xa1\x50\x9d\xb1\x53\x51\x1a\x68\x26\x49\x98\x4a\xd2\x53\x49\xba\x77\xbb\x70\xf6\x37\x82\x14\xc6\xdf\xa9\x70\x0d\x44\x33\x69\xee\xd5\xdb\x3b\x2a\x7e\x82\x0a\xd7\x40\xd0\xd8\xfb\x0a\xd7\x40\x2a\x29\xfd\xc3\x6d\xb2\xa9\xec\x3d\xbd\xc1\xe5\x7d\xd8\xa9\xa0\x0d\xa4\x96\xb1\x3f\x4f\x25\x6d\xa0\xe9\x45\x9c\x0a\xda\xf3\xe4\xca\x4d\x3e\x2a\xcf\x9e\xc3\x33\xd8\xad\xa4\x0d\x04\x0d\x9e\x29\x69\x03\xf1\x2c\x3c\x33\x06\x09\x88\x76\x76\x2b\xd3\x1e\x23\xb3\x65\xa4\xf2\xf7\x34\xaf\xae\xd7\x9f\xa6\xc2\x36\x10\x1b\x90\x0f\x46\x2f\x0a\x90\xbd\x2f\x30\x15\x5c\x81\xd4\x8a\x07\xb2\x2e\x13\x20\x1e\xe5\x75\xfa\x4c\x80\x6c\xa8\xfb\x54\x98\x05\xd2\x29\x9c\x38\x15\x66\x81\x54\x0d\xdf\x9d\xba\x51\xa6\xa5\x5f\xfc\xa7\x2a\xdf\x4e\x4b\xbf\x28\xc6\x28\xde\x02\xd3\xa4\x29\x53\xe9\x16\x88\x97\x31\x5e\xef\x35\x01\x45\x87\xd4\xd4\xb3\x02\x14\xcd\xe3\x53\xcf\x0a\x50\x34\xbf\x4f\x93\xc6\x00\xeb\xe7\x87\xe0\xe5\xa7\x69\xce\x18\xd3\xf1\x4d\xa5\x67\xa0\x68\x43\x98\xfa\x64\xe6\xf1\xc9\xc0\x0d\x05\x65\x20\x1d\xe3\xd7\x54\x50\x9e\xba\x58\x5c\x7b\x5d\x2c\x40\x39\x1f\x9f\x72\x32\x90\x46\xf6\x8b\x57\x4e\x06\x16\xe5\x58\xd7\x54\x26\x06\x96\xd9\x87\xa7\x32\x31\x10\x9f\x32\x9b\xc6\xeb\x4c\x40\x39\xa2\x89\x32\xf1\xa4\xd6\x8b\xb6\xfc\xa5\xfc\x0b\xa4\x9f\xd2\xf4\x52\xd8\x5d\xba\x4a\x54\x6c\x96\xae\x12\xa0\x2a\xd4\x2d\xc5\x59\xa0\x7a\xf0\x2c\xc5\x59\x20\x9e\x2c\xd0\xa6\xb4\x23\x0f\xd9\xeb\x92\x86\xff\xfc\x74\x70\x49\xba\x38\x79\xec\xe0\x91\x84\x29\x0d\x3d\x6c\xe9\x15\x01\xd2\x28\x68\x30\x4b\x89\x16\x68\xe6\x92\x5d\xba\x40\x96\x25\xfb\xf5\x50\x2c\xa5\x5c\xa0\xea\xe9\x5c\x4a\xb9\x40\x1d\xe7\xc9\x2a\x49\x87\x3a\xff\xcd\xa5\x94\x0b\xa4\x9f\x16\x9b\xa5\x94\xbb\xd2\x91\xfc\x7c\xd6\x99\x22\xe5\xea\xc2\x5a\xba\x4a\x80\x74\xb6\xee\x32\x15\x0b\xd0\x0c\x1f\x5e\x0a\xc3\x40\x33\xe7\xef\x52\x16\x06\xd2\x50\x31\x59\x0a\xbe\x40\xfb\x9d\x0e\x3e\x49\xca\x82\x4e\x4b\x19\x17\x68\x9a\x55\x97\xf2\xec\xca\xc7\x26\xc6\x70\xf5\x76\x00\x21\x47\xd1\xab\x02\xed\x32\x77\x4a\xb3\x0b\x05\x5a\xa0\xfd\x4e\x0f\x4e\xcb\xdc\x29\x26\x77\x5a\x7a\x36\x96\xb9\x53\xac\xa3\xb7\x94\x71\x57\xd6\x26\x36\x1c\xca\x2b\x4d\x9b\xd8\x70\x28\x4e\x8c\xab\x44\xf5\x34\x73\x62\x0a\xb9\xd6\xdb\x5b\x0a\xb9\x40\x4a\xc6\xe2\x2f\x5d\x20\x40\xd0\x18\x9e\x92\xef\x52\xf2\xb5\x08\xdf\x52\xf2\x5d\xe5\x48\x97\x1d\x9a\x1c\xe0\x06\x91\x37\xd6\x97\x42\x2e\x10\x0b\xc6\x2c\x94\x72\x81\xd4\xb4\x3a\x2d\xc5\x5c\x20\xce\x07\x5f\x27\x07\xca\xd1\x4c\x99\x99\xb2\x2f\x10\x67\xa8\xcf\xba\xb4\xde\x17\x32\xc6\x7e\xe9\x53\x01\x9a\xd9\x63\x96\xd7\x85\x16\xa5\xf9\x4d\xa8\xb4\x74\xa9\x2c\x43\xe2\x2c\x89\xb6\x14\xa5\x97\x05\x58\xbc\xda\xb0\x74\xa9\x2c\x6f\x0b\xd5\x9f\x34\x19\x60\x51\x16\x0b\x8d\x2e\x45\x69\xc0\xaa\xfe\x6b\x29\x36\x03\xd1\x8c\x89\x29\x36\x2f\x8b\xf3\x77\x99\xa2\xd8\x0c\x34\xef\x36\x2c\xa5\x66\x20\x75\xaf\xb6\x2f\xa5\xe6\x65\x71\x7e\x95\xab\xa5\xd4\x0c\x04\xcd\x2e\x9c\xbf\x97\x85\x2c\xbf\xb7\x94\x9b\x81\x68\x47\x1f\x4a\xc9\xcb\x92\xfd\xa6\x47\x59\xfa\x68\x80\x36\xfe\x25\x27\xeb\xd2\x83\x03\xb4\x73\x16\x28\x6a\x2f\xeb\xf9\x9b\xc6\x65\x19\x88\x07\xa4\x62\x5c\xda\xf2\xca\x11\xd0\x66\xb7\x7f\xcf\x82\x76\x7e\xed\x8e\x53\x36\x36\xc5\x54\xb6\x82\x52\x3a\x10\xcd\x7c\x54\x2e\x2a\xa6\x9b\xec\x64\x29\xa6\x2f\xcb\xf9\x5b\xf5\x71\x29\xa7\x03\xcd\x0b\x92\x4b\x31\x1d\x88\x9d\x2a\x4d\x8e\x21\xa6\xaf\x43\xf2\x3b\x6a\xe7\xfa\x0e\x3d\xe8\xfd\x01\x52\xf1\xb6\xef\x52\x4c\x5f\xa6\x53\xf1\x82\xc8\xf2\xfe\x12\x90\x86\x95\x3c\x97\x41\x53\x40\xf6\x86\xdf\xd2\xb8\x0e\xfc\x7d\x32\xda\xd6\x81\xf8\x2a\xd9\xcf\x1a\xd7\x81\xec\x05\xbb\xa5\x1d\x7d\x1d\x3b\xba\x1f\xb4\x76\x74\x20\xfe\x21\xbe\xce\xb9\x9e\x7c\x98\x58\xfd\x96\x76\xf4\xa5\x1d\xbd\xb9\x13\x34\x90\xaf\x63\x20\xe7\xaf\xbd\x34\x86\x03\x41\xb3\x9d\x0b\x8b\x35\xbc\x4f\xcc\xd7\x4b\x6b\x38\xd0\x4c\xfc\xb5\x34\x86\xaf\xeb\x7c\x0b\xec\x09\x05\x75\xa0\x19\x81\xb0\x34\x86\x03\x31\x0b\x7b\x70\x66\x97\xbe\x44\x7e\xf9\x4b\xe9\x1d\xc8\x1a\xf9\x97\xd2\x3b\x50\x34\xb4\x2d\x6d\xe1\x40\xd1\x7b\xb1\x94\xe7\x81\x35\x1c\xad\xe1\x56\xc0\xb2\xf6\xe2\x52\xc4\x07\xca\xf9\x73\x29\xe2\x03\xcb\x3a\x8e\x4b\x09\x1f\x28\xe7\xcf\xa8\x84\x0f\x94\xf3\x2b\xf3\x7a\x00\xb0\xac\x1c\xb9\x14\xe6\x81\x54\xcf\xf9\xa1\x30\x0f\xc4\xba\x48\x93\x1b\xb7\x8e\x32\xa7\xa9\x34\x0f\x04\xcd\xf7\xc9\x8d\x5b\xe9\x12\xb1\x71\x29\xce\x03\xe9\x67\x90\xf7\x52\xe6\x06\xea\x11\x50\xb4\x77\x2f\xd3\x59\x9a\x97\x7f\x29\x86\x03\xd1\x05\x73\x55\x0c\x07\x52\x3b\x8c\x33\xea\x0a\x88\xcf\x86\xe1\x29\x87\x03\xf1\x3e\xfb\x70\x6a\x27\x79\xa5\x6b\xaf\x7c\x0d\xa4\x9f\x16\x8a\xa5\x7c\xbd\x4e\xa2\x4a\xff\x5d\x1a\xb8\xd7\x49\x54\xe9\x21\xa1\xcc\xbd\x4e\xa2\x4a\xd9\xa7\x81\x7b\x1d\x03\xb7\xd2\x81\x06\x6e\xa0\x1a\x2d\xb3\xbc\x34\x00\x54\xbd\x91\x4b\x93\xf7\x32\x0f\xa5\x87\x95\x16\xef\xf5\x2a\xb9\xf8\x19\x6a\xde\x06\xaa\xc1\xbf\x4b\xeb\x36\x10\xcd\x98\xbf\xd6\xed\x75\xd2\x50\xfa\xf7\xd1\xba\xbd\x4e\x1a\x4a\xcf\x3e\xad\xdb\x40\xd5\x9c\xb8\x0c\xc8\x02\x52\x37\x62\x7a\xa9\x4a\x00\x55\xb7\xeb\x52\x95\x00\xa2\x57\x7b\x90\x4b\x2f\x1e\x3e\xbf\x24\x35\x09\xa0\x1a\x63\xb4\xd4\x1a\x96\x5a\x43\xf6\x7b\x50\x6b\x00\x4e\xb2\xc5\xa5\xd6\x00\xc4\x69\xc0\xd8\xbc\x6e\x00\x04\x8d\xe9\xab\x4a\x00\x41\xf3\x59\x59\x82\x2e\xd1\x32\x1a\xff\x52\x97\x00\x52\xb2\x4e\xd8\x52\x99\x00\x82\xc6\xf2\xab\x4d\x00\x41\x83\x4d\xea\x0e\x40\xf4\xe1\xfb\x9c\xec\xc6\xb4\x77\x48\xee\x88\x7d\x0e\x30\x66\xab\xe5\x7d\x1d\xcb\xbb\x0b\xab\x42\x01\x34\x23\x8e\x97\xca\x03\x10\x67\x9a\x34\x67\x76\xac\xec\x1e\xe0\x6a\x0f\x40\x4a\xeb\xd0\x9c\x99\xe9\x26\xbd\xbd\xb8\x34\xbd\x2f\x4d\xef\xa6\x07\x5c\xaa\x19\xcb\x7c\x93\x66\x65\x5c\xea\x19\xcb\x7c\x93\x66\xef\x5b\xda\xde\x97\xf9\x26\x4d\xc1\xb7\xd4\x3d\x80\xa0\x31\x5d\x95\x8f\x65\x72\x49\x93\x01\x2e\x0d\xf2\x40\x33\xcb\xcf\xa5\xf1\x1d\x20\xf5\xc1\x7f\xfe\xcc\x2f\xd5\x95\xcb\x2c\x93\xe6\xd4\xbb\x54\x57\x80\xe8\xcc\x37\x57\x69\xba\x40\x51\xb9\x2e\x75\x18\x20\x68\x03\x5a\x97\xa6\xff\x87\xf3\xf0\x52\xb1\xb9\xcc\xb4\xa0\x87\xed\x52\x89\xb9\xcc\xaa\xe0\xa9\x71\xa9\xc5\x5c\x66\x55\x30\x30\xe1\x32\xe0\xeb\x32\xab\x82\x87\xda\xa5\x6a\x03\xc4\x62\xf9\xec\x2b\xcd\x08\x45\x34\xb6\x4b\x7d\x07\x68\x66\xc6\xbd\xb4\xe9\x5f\x26\x55\xf0\xf0\xbb\x54\x81\x80\x78\x1d\x53\x53\x07\xba\x4c\xaa\xa0\x8f\xfa\x52\xbb\xb9\x4c\x96\x60\x62\xfd\x4b\xed\xe6\x32\x59\x82\xb7\x4f\x2f\xb5\x1b\xa0\x79\x99\xf5\x52\x93\x01\x9a\xc9\x40\x2e\x15\x19\x20\x9e\x74\x24\x4e\x36\x69\xb7\x71\xc4\xaa\x32\x40\xf4\x6a\x0f\x4e\x36\x69\xb8\xe1\xd8\xbc\x54\x6f\x80\x68\xe7\xfb\x9c\xad\x76\x7d\x3d\x0c\x97\x76\xfd\xcb\x9c\x0a\xda\xcf\x2e\x75\x1e\x20\xfe\xc1\x2c\x90\x91\x60\x97\x91\x60\x7a\xc0\x2e\x8d\xfd\x97\x91\x60\xda\x2f\x2e\x95\x23\x20\x68\x70\x4f\xe5\xe8\xca\x87\x2b\xf6\x2b\x57\xb2\x97\x30\xdc\x04\x2a\x4c\x40\xb4\x93\x26\xab\x8c\xfb\x32\x78\xfb\x52\x3b\x02\x82\xc6\x7c\xd5\x8e\x2e\x73\x2f\x64\x49\xb2\xca\x58\x30\x6f\xf4\x5d\x2a\x4c\x40\xd0\xec\x42\x56\x65\x45\xe3\xe2\xd4\x64\x55\xd6\x05\xc2\x47\x7c\xa9\x31\x5d\xc6\x8c\x71\xc4\x5c\x2a\x4c\x40\x3c\xca\x6a\xa8\x30\x01\x21\x86\xc2\x15\xdd\x02\x40\xb4\xf3\x75\x72\xc5\x94\x0b\x6e\x02\xe3\xc8\x80\x68\x66\x17\x32\x05\x4f\x81\x3f\x80\x4b\x1d\x0a\x88\x66\xac\x99\x3a\xd4\x55\x8e\x59\xcb\x76\xf2\xe9\xc4\x9b\x65\x47\x27\x9f\x8a\x96\x77\x4e\x8e\x4b\x1d\x0a\x48\x53\xdb\xd4\xa5\x0e\x75\x99\x73\x21\x25\x87\x27\xa3\x8c\x55\xfb\xf9\xa8\x7c\x32\x56\x2d\xf1\xe3\xb9\x54\xac\x80\x36\x7f\x92\xe4\x53\xd5\xf7\x8a\x92\x70\xa9\x57\x01\xd1\x03\x7c\x52\xaf\x02\xda\xc4\xd3\x7c\xe9\xb5\x00\xa2\x19\x2b\xa6\xaa\x05\xb4\xf9\xf3\x6d\xb2\xae\x1e\xbd\x01\x9e\xa8\x6a\x01\x21\xfc\x4b\x93\x4f\x27\x09\x83\x7b\x56\x5d\x0b\x08\x9a\x5d\xc8\x93\x93\x84\xc1\x6f\x4f\xbd\x0a\x68\xb3\x4b\x92\x25\xa8\x55\xc5\xaa\xa0\x97\xfe\x88\xeb\xe4\x65\xf0\x53\x51\xd5\xba\x4e\x5e\x06\x3f\x5b\x15\x27\x20\x68\x4c\x43\xcd\xe9\xfa\xd3\x92\xe0\xb1\x5a\xd2\x75\xb4\x24\x36\x85\x5a\xd2\xa5\x96\xa4\x82\x71\xa9\x25\x01\xcd\xdb\x85\x97\x5a\x12\x10\x8b\xcd\x88\xd5\x92\x80\x78\x94\x11\x1b\x36\x77\xe1\xcc\x30\x1d\xce\xa5\x92\x04\xc4\x19\x60\xaf\x4e\xd6\xec\x0d\x5e\xb0\xbe\x54\x89\x80\x53\x23\xe4\xd2\x71\x01\xa4\xa2\xb9\xef\x52\x23\x02\x9a\xf6\x8c\x4b\x85\x08\x08\x49\x81\x5e\xf5\x65\x5c\xfa\x32\xbc\xbe\x70\xe9\xcb\x00\x9a\xb6\x86\x4b\x5f\xc6\x45\x46\x87\x62\x78\xf8\x65\x30\x1d\x90\x8a\x39\xa7\x2e\x9d\x19\x97\xce\x0c\xd3\x70\x5d\x3a\x33\x2e\xb3\x3c\xc8\x39\x7d\x19\x97\x59\x1e\x4c\x12\x76\xe9\xcc\x00\xd2\xd0\x37\x72\x19\x1f\x05\x04\x8d\x2e\x54\x61\x80\x6c\x60\xcd\xa5\xba\x02\x2c\xcb\xc2\x5f\xaa\x26\xc0\xb2\xe0\xfb\xa5\x1e\x72\xdd\x84\x55\xcb\x38\x95\x0e\x20\x44\x67\x69\x32\x0e\xc7\xc2\xc8\x7e\x4d\xaa\x1d\x40\x88\x93\xff\x50\x3c\xfc\x52\x2d\x01\x42\xb4\x62\x01\x74\x3c\x5c\x56\xe1\x3b\x3b\x41\xcf\x03\x50\x35\x18\x5f\xea\x2a\x40\xf3\x62\xd5\xa5\xaa\x02\xc4\xdb\x1c\xa8\x7c\x35\x84\x27\xa3\x56\x5e\xaa\x2a\x40\xb4\x83\xb1\xaa\x2a\xc0\x29\x78\x71\xa9\xa9\x00\xa9\x0d\xc4\xf9\x4b\xc7\xc3\x75\x1f\x09\x47\xda\x61\x99\xf6\x39\x8f\x47\x1d\x0f\x97\xb9\xe1\x74\x81\x5c\x6a\x39\x40\x33\xef\xf2\xa5\x96\x73\x9d\x74\x71\xa8\x95\x97\x5e\x04\x20\x65\xe3\x75\x2e\xb5\x97\xcb\x3c\x70\x86\xb7\x5e\x7a\x07\x2e\x93\xbe\x19\x54\x7a\xa9\x95\x00\x71\xa0\xf9\x3e\x87\x17\xd0\x26\x16\xb0\x4b\x05\x04\x88\x4f\x1c\x16\xab\x81\x00\xcd\x74\x87\x97\x1a\x08\xd0\x26\xa6\x86\x4b\x0d\xe4\xe2\xd2\xb2\xf7\x87\x2f\x15\x10\x20\x9d\xcb\x5f\x97\x1a\x08\xd0\x54\x84\x2e\x15\x10\x20\x75\x43\xc5\x2f\x15\x90\xcb\xf2\x79\x4a\x4d\x6a\x11\x40\x30\x4e\x9a\x33\xb0\x28\xbd\x7f\x33\x9d\x0f\x97\x91\x34\x26\xd5\xbb\x54\x23\x80\x62\x70\xde\xa5\x16\x01\x44\x33\x1f\x75\x0a\x5b\x2d\x52\x19\x51\xf5\x00\xa8\xda\x23\x2e\xb5\x83\x6b\x1f\x85\x51\x9a\x1b\x67\x1f\xe5\x10\x8e\xa8\x09\x00\x41\xb3\x9d\xcb\xa0\x26\x70\x06\xec\xc6\xd9\xa8\x3d\x92\x14\xfa\xaf\x93\x64\xde\x33\x5f\x2f\x02\x10\x34\xb8\x64\xb8\x0d\x10\x34\xb8\xa9\x76\x70\x79\x7b\xa3\xfb\xd3\x53\x13\xb8\xd4\x04\x8c\xcf\xbf\xd4\x04\x2e\x35\x01\x23\x94\x2f\xa5\xfe\xeb\x3b\x9f\x89\xfd\xba\x99\xbe\xa3\xe3\xd8\xaf\xb3\x25\xe2\xc6\x3b\x8f\x97\x42\xff\x65\xfe\x34\x6f\xff\x5c\x0a\xfd\x40\x7c\x12\xbe\xce\xd9\xfe\x29\x02\xbe\xce\x55\xe4\x12\x47\x4f\xac\xf6\xad\x26\x00\xc4\xfb\x7e\xd0\xb2\xb4\xec\x8d\x8d\x0e\xad\x48\xc3\x49\x0e\x07\x6e\x45\xfd\xfb\x88\xf5\x28\xe0\xb7\x62\x3d\xd0\xcc\x9e\x73\xeb\x9a\x00\xa2\x59\x86\xb6\xa4\x59\x4d\xb9\xdb\xeb\x25\x4d\x41\x17\x0d\xe3\x56\xaa\xbf\x95\xea\x2d\x11\x76\x2b\xd5\xdf\xbf\x23\xe8\x3a\x94\x57\x1a\xb9\x01\xb3\xa4\x2d\xe9\xc8\xb9\x4e\xe2\x93\x66\x71\x0f\x7e\xca\xb7\x52\xfd\x6d\xaa\x34\xdd\xce\xb7\x52\xfd\x7d\x52\xa5\x71\x64\xdd\x7a\x36\x6e\x53\xa5\xf9\x43\xbb\x95\xf4\x81\xd8\x03\x0c\x59\x49\x1f\x88\x03\xc0\x67\xe5\x4a\x52\x06\x71\x7c\x46\xeb\xdc\x49\x43\x65\xf6\x59\xd9\x92\x94\x41\xa6\x7d\xc8\x16\x1c\x19\xb3\xfb\xa8\x53\xcb\x27\x9c\x8a\x66\x8a\xe1\x40\x3b\x23\x56\x0a\x07\x9a\xb6\x95\x5b\x21\x1c\x88\xff\x23\x9d\x2a\x84\x03\xd9\xe8\xc7\x5b\x79\x1b\xa8\xfa\xc3\x6e\xfd\x13\xb7\xfe\x89\x62\x2b\x47\xab\x04\xae\x49\xf2\x56\x02\x07\x62\x8b\xf9\xa8\x8b\x98\x35\xb5\xba\x88\x8a\xdb\x40\x70\x8e\xd5\xc9\x67\x5a\xe6\x45\x72\x03\x28\x6e\x03\x43\x5f\xfc\xad\x68\x0d\x34\x35\xe1\x5b\xc9\x1a\xc8\x86\x26\xde\x7a\x22\x6e\x3d\x11\xde\x93\xbe\x15\xb6\xef\x72\x96\x6b\x41\x73\xf6\xe5\x6c\x62\x06\xa2\x64\x0d\xc4\xd6\x81\x73\x8a\xd1\x40\xea\x29\x4b\x73\xb2\x7f\x62\xb4\x34\x27\x5b\xce\x64\x99\x84\x62\x34\x90\x8d\x58\xb8\x95\x98\xef\x62\x98\x39\x2a\xec\xad\x78\x0c\xa4\xaa\xf0\x72\x2b\x1f\xdf\x95\x6b\x82\xff\x72\x65\xfc\x56\x52\x06\xd2\x4f\xf7\xcd\xad\xa8\x0c\x54\x2d\x74\xb7\x92\x32\x50\xf5\x6f\xde\x4a\xca\x40\x3c\xc9\x47\xa9\xa4\x7c\xeb\x94\xf0\x86\xd4\xad\x54\x0c\x04\xcb\xd8\x92\x7a\x20\x6e\x3d\x10\x1a\xfc\x6e\x25\xe5\xbb\x9e\x1f\x09\xec\x51\x52\xbe\x0d\xdc\x39\x83\x93\x15\x06\xee\x9c\x5e\x5d\x75\x03\x77\x38\x96\x6f\xe5\x64\x20\x98\xc3\x40\x74\x49\x00\x6d\xba\x87\x14\x9d\x6f\x45\xe7\x94\x7d\xd4\xd9\x93\xc4\x7d\xfa\x91\x2a\x39\xdf\xa6\x34\x33\xab\xf7\xad\xe8\x7c\x2b\x3a\x9b\x62\xfd\x56\x4e\x06\x9a\xb1\xb1\xb7\x62\xf2\xad\x98\xec\x85\xe9\x5b\x31\x19\x28\x3f\xf7\x9a\xfe\x05\x60\x8d\x43\x72\x56\xcd\x35\xf7\xd0\x53\x24\xbe\xfb\x91\xec\x78\x9b\xb2\x2e\x90\x7e\xda\x89\x6e\x05\x5b\x20\xd6\x86\x91\x18\xa4\x03\x04\x0d\x96\x28\xec\x02\x41\x63\xfe\x0a\xbb\xb7\x17\xff\x0b\xaa\xc3\xad\x14\x0b\x44\x1f\x8c\xcf\x90\x1c\xa0\x6a\xed\xbe\x0d\xc9\x01\xe2\x75\x0c\xcf\x98\x1c\x20\x68\x6c\x1d\x2f\x7c\x00\x41\xa3\x0b\x03\x70\x80\xa0\xf9\x3e\xa7\x31\xce\x34\xe0\xb1\xd7\x40\x80\xaa\xf9\xfc\xf6\x1a\xc8\x6d\x06\xf3\x73\x26\x79\x0d\xe4\x36\x83\xb9\xb7\x8e\x6f\xaf\x81\xdc\x66\x30\x37\x3b\xc3\xed\x3d\x10\x20\x9e\x75\x78\x6e\xb1\xa1\x11\xd0\x1f\x9a\x17\x3d\x80\x38\x1f\xe0\x94\x17\x3d\x80\x68\x47\xbf\x5e\xf4\x00\x42\x18\x66\x6a\x5e\xf4\x00\xa2\x1d\x6c\xf1\xa2\x07\x90\xba\x51\x2b\xb7\x97\x3a\x80\x68\xe7\xb3\xb2\x80\x1c\xe6\xd9\x1b\x11\xb7\x37\x3d\x80\x68\xc7\x98\xbd\xe9\x01\xc4\x3c\x98\x9b\x37\x38\x80\xd4\x0d\x51\xb9\xbd\xc2\x01\xa4\xb1\x4e\x3b\xe7\xcb\x1d\x8e\x6a\x34\xf4\xad\x8e\x02\xa4\x6e\xb0\xf6\x6d\xc6\x2b\x20\xfa\x90\xe6\x7c\x17\x86\x50\xcf\x7e\x2f\xfa\x03\xd1\x8c\x6e\xcd\x79\x75\xaf\x73\xbe\xc2\x3e\x93\x93\x03\xd1\xce\x67\x9d\xda\x52\xe8\xf4\x43\xf0\xb2\x07\x10\x87\x8a\xed\x9c\x9a\x49\xc6\xbd\x29\x79\xeb\x90\x02\x52\xcf\x38\x6e\x6e\x1d\x52\xb7\x09\xc5\xbd\xc5\x79\x7b\xb1\x03\x88\x55\x63\xd9\xbc\xd8\x01\x04\x9b\xe9\x43\xc7\x15\x10\xcf\xb2\x6c\xde\xec\xb8\xbd\xd9\x61\x4c\xe7\xad\xe3\xea\xf6\x1a\x87\x57\xb2\x6e\x1d\x57\xb7\xd7\x38\x7e\xfe\x3b\xf4\x5c\xdd\x66\x0f\xf7\xae\xe8\xad\xda\x77\x5f\xe7\xc0\x64\xcc\xba\xae\x80\x93\x4d\xf4\x56\x15\x04\x5a\x39\x23\x71\xb6\xdc\xd8\x28\xa7\x53\x27\x4b\x4e\xf0\x72\xde\xef\x5c\xad\xcb\x6e\x9c\xe7\xad\x9b\x0a\x88\xa5\xe5\x6d\xfa\x96\x6e\xb3\x78\x17\x84\xe2\x5b\xbd\xee\xf6\x72\x86\xee\xdf\x5b\x25\xee\x3e\xd1\x63\x08\xd4\xb7\x5a\xdc\xed\x45\x8c\xe2\x91\xac\x2a\x76\x1b\x03\xa6\x13\xf1\x56\xed\xba\x8d\xf7\x3a\x07\x8b\x6a\x17\xd0\xb4\x04\xdc\x6a\x5d\x40\x34\x63\xc8\x3a\x92\x80\xa0\xc1\x76\x1d\x49\xb7\x29\xb9\x8b\xc7\xbe\xaa\xd8\xfd\x9c\x21\xd3\xad\xaa\xd8\xad\x2a\x56\xb0\x88\xde\x06\x74\x01\xcd\xd0\xfc\x5b\xdf\x12\xd0\xbc\xa2\x78\xab\xb0\x01\xcd\x0b\x8f\xb7\xba\x19\x10\x7b\x87\x97\xa9\x62\xdd\x27\x57\x94\xc2\xae\xf7\x1a\xee\x93\x1a\x7b\x49\x93\xc7\xa6\xc6\xb6\x06\xde\xad\xde\x75\x9b\x1a\xbb\xf8\x3a\xc7\xeb\xb5\x06\x6f\x10\xde\x3a\x79\x6e\xaf\x30\x8c\x7f\xb9\x67\x7e\xeb\x04\xba\xbd\x95\x6f\x82\xb1\x5b\x27\x10\xd0\xcc\x3a\x7e\xab\xbe\xdd\xaa\x6f\x56\x4f\xbb\x75\x02\x01\xf1\x07\x60\x05\x8c\x31\xbb\x4f\xee\x6c\xe5\x28\x75\xba\xdb\x44\x54\x26\x08\xba\xd5\xe9\x6e\xef\xe5\x9b\x12\xed\x56\xa9\x03\xa2\x1d\x43\xd1\x0f\x04\x04\x0d\x66\xe8\x07\x02\xe2\x59\xfb\x90\x41\x27\x57\xf6\xf2\x7d\x72\x68\x73\xd5\xd7\x9f\xb6\x17\xf8\x6f\x53\x65\x2b\x5a\xe9\x19\x02\xd2\xc9\x72\x70\xeb\x19\xba\xf7\x51\x10\x7c\x54\x0e\x9c\x94\xda\x4b\x9a\x1c\xd8\xde\x82\xf4\x67\xa4\x1b\x08\x88\x76\xec\x55\x35\xc2\xfb\xc4\x95\xf9\xd9\xa8\xe9\xdd\x27\x29\x96\x9f\x88\x5a\xdd\x6d\xaa\x6c\x23\xe6\x6f\xfd\x3b\xb7\xa9\xb2\x8d\x49\xbf\x55\xcd\x80\xe6\x2d\x9f\x5b\x2d\x0c\x88\xc3\x39\x86\xf7\xa8\x71\x01\x41\x9b\xd0\x9a\xb4\x66\x17\xd2\xba\x34\x2d\x13\xfc\xdc\x1e\xbd\x26\x8f\x5e\x13\x63\xfc\x1f\x75\xae\x47\x9d\xcb\xe0\xfd\x47\x9d\xeb\xd1\x93\xa2\x53\xfa\x51\xe7\x02\x52\x4f\xd3\x76\xb7\x34\x83\x49\xf8\xa9\x3e\xea\x5c\x8f\x9e\x14\x83\x9f\x1f\x75\x2e\xa0\xe9\x1d\x7d\xd4\xb9\x1e\x75\x2e\xc3\xe1\x1e\xf5\x2b\x20\xfe\xb3\xb4\x53\x97\x7a\xfe\x74\x29\x58\x60\x98\x18\xd0\xf4\xa2\x3e\xaa\x57\x8f\x8e\x14\x03\xee\x1e\xd5\x2b\x20\x14\x0c\x5f\x27\x07\xd2\xe1\x00\x23\xd6\x45\x02\xa4\x69\xe4\xff\xa3\x8b\x04\x48\x25\xa1\x4d\x3c\xba\x48\x80\xa0\x25\x68\x9f\xb4\xcf\x5f\x2a\x5c\xd6\x1d\x02\xc4\x26\xa0\x5f\xdd\x21\x40\x3c\x2b\xcd\x69\x64\x33\xb2\x15\x9f\x75\x1e\x6a\x5d\x09\xc9\xea\x51\xeb\x02\xda\xfc\xf9\xa8\x8b\x8b\xe7\x63\x98\xdc\xfb\x51\xed\x7a\xcc\x30\x6d\x9a\x99\x47\x7d\xea\x51\x9f\x4a\x9c\x31\x8f\x2e\x8d\xe7\x64\x39\xe3\xb7\xfd\xa8\x63\x01\x6d\xfe\xec\xd5\x05\xf2\xa2\x43\x42\x17\x7f\x54\xb1\x1e\x3d\x1a\x03\x21\xe0\x51\xc7\x02\xda\x44\x9a\x7f\xd4\xb1\x1e\xb3\x9a\x69\x3d\x7a\x54\xb2\x80\xa0\xd1\xab\x4a\x16\x10\x34\xba\x55\xc9\x7a\x2c\x24\x5e\x93\x34\x67\x6b\x16\x69\xaf\x5e\x3e\x2a\x5e\x8f\x59\xa4\xcd\x3f\xf3\xa8\x78\x3d\xfa\x2f\xac\xc8\xfa\xa8\x78\x01\xa9\x99\xdb\xec\x51\xf1\x02\xda\x1c\xce\x42\xa6\x14\x4d\xf5\x1c\x53\x8f\xee\x8b\x47\xf7\x85\x89\x10\x1e\x95\xb1\x47\xf7\xc5\x70\x24\x32\xe5\x5c\xb5\x47\x06\x7f\xd4\xcf\x80\xd8\x66\x74\xa1\x7e\xf6\xe8\xbf\x30\xe7\xe1\xa3\xb6\xf5\xd4\xc3\x01\xdb\xc9\x81\xbf\x42\x5b\x0c\x45\x7d\xeb\x39\xe9\xa1\x11\xae\x1f\xf5\xad\xe7\x78\x26\x38\xcf\x1e\x3d\x13\x40\x9b\xdd\x66\x32\x40\xc7\x84\xc9\x67\x1f\x55\xb0\xc7\x8b\xf5\x26\xa9\x7d\x54\xc1\x1e\x9d\x15\xf5\xe7\xf0\xe4\x00\x41\x60\xa5\xca\x78\x75\xb0\x47\x6f\x45\xfd\x39\x3c\x59\x50\x8f\x80\xcc\xb3\x6a\x61\x4f\x3b\x96\x07\xc6\xa2\xca\xf5\xa8\x72\x59\x22\xf3\xd1\x5b\x01\xc4\xb3\xbc\x4f\x35\x0c\x68\xde\xee\x7c\x54\xc3\x1e\xd5\xb0\xca\xff\xe1\x51\x0d\x03\xda\x3a\x4f\xba\x2d\x74\x60\x9c\x81\xc8\x27\xc3\xbc\xac\x53\xf4\xa8\x99\x3d\x47\x33\xfb\xd9\x83\x93\x6d\x9e\xfb\x5d\x9a\x93\x3d\xde\x0a\x77\xad\xba\xd9\x73\xbc\x15\xcc\x41\xd5\xec\xd1\x5b\x61\x5e\xb2\x47\x6f\xc5\x63\xfe\x69\x6b\x37\x3e\xba\x2b\x80\x74\xf2\x6c\x3d\xaa\x6b\x40\x22\x8f\xd7\x7f\xfe\xde\x1f\xb5\xb9\x47\xd7\x85\xd9\xc6\x1e\xb5\xb9\x47\xd7\x85\xd7\x06\x1f\xef\xf3\x3f\x27\xa3\xb4\x07\xa0\xf7\xf9\x9f\x93\x51\xda\xa3\x5d\x35\xed\x39\xa9\xa2\xdd\x5d\xde\x9d\x00\x52\x57\xb8\x7f\xbc\x3b\xf1\x9c\x5c\xd1\xd3\x67\x5d\xaa\xbf\x5c\xd1\xf4\xab\x3a\xf7\xfc\xe5\x8a\x66\x9a\xaa\x6e\xcf\x40\x3d\xe6\xef\xf6\x98\x03\x1a\x48\xa5\x9f\x2e\xdc\xad\xa8\x73\xc5\x6a\x26\x8f\xea\x1c\x10\x3b\xc4\x2e\xdc\xad\xa8\x73\x43\xc7\xf9\xa3\x08\x01\x14\xd3\xa6\x3d\x4a\x10\xc0\xfa\x79\xda\x2b\x40\x00\xcb\x24\x89\x8f\xd2\x02\x50\x0c\x27\x7e\x14\x16\x80\x75\x4e\x0d\xe5\x02\x60\x99\x37\xf1\x51\x04\x78\x34\x00\x6b\xff\x7e\x34\x00\x03\xd5\x68\x80\x47\xa9\x00\xa8\x06\x5b\x3d\x06\x87\x00\xf1\xa4\x6f\x73\xb0\x5e\xc1\xf4\x4f\xa7\xec\x00\x84\xee\xcd\xd4\xb5\x08\x03\x41\xb3\x9d\xc3\x3d\xf1\xe6\xee\x53\x2d\xc2\x8f\x71\x20\x9a\x6b\x1f\x4d\xc2\x40\xb4\x63\x5e\xca\x1d\x40\xd0\xe0\x88\x82\xc7\x63\x0e\x1f\xe3\x45\x5e\x23\xd3\x5f\x23\xd3\x35\x13\xbf\x0a\x23\xef\x31\xff\xb2\x23\x5e\xcd\xbf\x40\xd5\x75\xf5\x6a\xfe\x05\x62\x28\x05\x5a\x93\xd6\xa4\x65\x68\x5d\x5a\x47\xbf\xb7\x87\x21\xe9\x70\xc0\x1e\xa6\xb4\xe9\xa3\x09\xda\x92\x46\x28\x14\x66\xf2\x57\x49\x04\x08\x8d\x9a\x91\x28\x62\xbc\x27\x3f\x0f\x86\xc8\x57\x11\x03\x68\x66\xcd\x7b\x15\x27\x5e\xcb\x7f\x7a\x43\xf6\x55\x9c\x00\x9a\xd9\xc7\x5e\x8d\xb5\x40\x3a\x32\xdb\xab\x84\x01\x84\x66\xcb\x80\x0d\x44\x7f\x4d\xda\xd3\x58\xed\x57\x03\xee\x6b\xd2\x1e\xaf\xaf\xbd\x4a\x22\xaf\x61\xe7\x4e\x42\xa1\xe3\x35\x41\x4f\xe3\x37\xfc\x6a\xd4\x7d\x2d\x00\xda\x9a\xed\x3e\x69\xfa\xb5\xb0\xb4\xbd\x0a\x22\x6f\x3e\x3a\x3b\x33\x53\x10\x79\x8d\xcb\xa8\xd8\x92\x5f\x0d\xc2\x40\x3c\xcb\x34\x14\x4e\x80\x66\xbe\xab\x57\x39\xe4\xcd\x47\x67\x67\xc4\x0a\x22\x40\x33\x53\xd6\xab\x1c\xf2\x1e\xf3\xaf\x03\x71\xae\x27\x3c\x9d\xef\xe4\x55\xe4\x78\x8d\xa2\xd0\x4c\xfc\x2a\x73\xbc\xf9\x68\xac\x4c\xcc\x88\x09\x20\x65\xa3\xe7\x5f\x65\x8e\xd7\x90\x09\x03\xef\x5f\x05\x0c\x20\x9e\x65\xc4\x0a\x18\x40\xea\x26\x14\x7b\x15\x26\xde\x72\x8c\x2a\xd2\x5c\x33\xad\xb8\xfa\x27\x5f\x03\x24\x5e\x03\x24\xbc\x03\xf0\x2a\x60\xbc\x06\x99\x5b\x44\xea\x55\x98\x00\x9a\x05\xda\x5e\x05\x07\x20\xa6\xc6\xee\x51\x70\x00\xe2\x75\xb0\x45\xc9\x01\x68\x16\xde\x7a\x15\x1c\xde\x7a\x66\x0b\x07\x14\x1c\x5e\x03\xca\xbd\x86\xfa\x1a\xf8\xf0\x1a\x3c\x6e\xfc\xda\xab\x30\xf1\x9a\x52\x55\x79\xe5\x55\x98\x00\xa2\x1d\x4b\xab\x90\x00\xa4\xa9\x7e\xfe\x2a\x25\xbc\xc7\x50\x3b\x7d\x9f\x33\x3b\x86\x5a\x3f\x6e\xa5\x84\xf7\x18\x6a\xf9\xf5\xbc\x4a\x04\x40\x1a\xde\xb3\x78\x95\x08\x80\x78\x96\x7e\x95\x08\x80\xd4\x7f\x43\x9a\x73\xc3\x2e\xab\x3b\xf2\x55\x48\x78\xcf\xbd\x4b\xce\xa8\x57\x21\xe1\x35\x18\xdc\x88\xde\x57\x21\x01\x88\x76\xd2\x5c\xdc\xa6\x0d\x80\x3f\xcf\xab\x48\xf0\x7a\x41\xd3\x38\x87\x57\x99\x00\x08\x1a\xd3\x55\x26\x78\xdb\x31\x65\xb0\xb8\x5a\x6b\x81\x68\x07\xeb\x35\xd7\x02\xd1\x4e\x9a\x6c\xf1\xda\x66\x99\x8e\xd9\x5d\xd0\xd4\xe7\xe6\x7f\xff\xd7\x5f\xa5\x0d\x20\x24\x3f\xdf\x22\x23\xbd\xd5\x69\x54\xee\xab\xb8\x01\x34\xa5\x88\xd7\x08\xf2\xd7\xfc\x41\xfc\x4a\x5f\xa5\x04\x20\xb6\x0d\xbc\x55\x4a\x00\x52\xd6\xb3\xf9\x6a\xf3\x05\x52\x36\xee\xf3\x35\xc0\x01\x68\x26\x59\x7a\x0d\x70\x00\x52\xf6\x42\xd0\xab\x69\x18\x68\xc6\x3c\xbc\xca\x1c\x40\x3a\xa5\x56\x5f\x65\x0e\x20\x8d\xec\x37\xa2\x05\x19\x88\x5e\x19\x9d\x26\x64\x20\x68\xb4\x53\x36\x01\xa2\x5b\x69\xee\x10\xca\x58\x58\x69\xeb\x55\x34\x01\xe2\x51\x69\x6e\x90\xa1\x49\xc1\xd3\x44\x31\x04\x48\xd9\x74\x72\xaf\x59\x5f\x81\x68\x07\xf3\x94\x4d\x80\x78\x1f\xb3\x55\x0e\x01\x82\x06\x57\x94\x43\x80\xd4\x53\xf6\x7d\xb2\xc0\x4a\x09\x5e\xda\x7c\x35\x2b\x03\xa1\x15\x3b\x16\x59\x30\x0e\x0b\xa0\x69\x56\x7e\xad\x96\x69\xe6\x9d\x57\xb3\x32\x10\x63\xe6\x7d\x9a\x95\x81\x78\x96\x7e\x35\x2b\x03\x71\x3a\xf1\x6d\x9a\x3f\x08\x88\x67\xed\xc3\x33\x61\xca\x17\x4f\x54\x4d\xcd\xaf\xa6\x66\xef\xe1\xbf\x9a\x9a\x81\xd8\x2c\xbe\x4f\x5e\xcd\xc3\x2b\x69\xf2\x6a\x12\x89\xe8\x41\x6e\x4e\x21\x20\xba\x85\x7d\x5a\xa4\x5f\xcb\x65\xaa\x66\xbf\x5a\x95\x81\x94\x0d\xb8\x7e\x35\x21\xbf\x96\xb7\x34\x34\xf9\xd5\x84\x0c\xa4\x71\xbe\x57\xd3\x0a\x01\xd1\x0e\xb6\x78\x19\x02\x48\x59\x2f\xfd\xab\x59\x19\x08\x1a\x43\xf6\x3a\x04\x10\xcf\xc2\x02\xaf\x43\xbc\xeb\x18\x3d\x7c\xd6\x79\x68\x7e\x36\x10\xfb\xd5\xfc\xfc\x6a\x7e\x36\xae\xfb\xf5\x8e\x04\x10\x34\xe6\xab\x49\xfa\xb5\xc6\xa5\x62\xe5\xab\x49\xfa\xd5\x24\x6d\xfc\xc1\xab\x49\xfa\xb5\xc6\xa5\xf7\x04\x5e\x4d\xd2\xef\x75\xf8\xc2\xf2\x6a\x92\x7e\x35\x49\x1b\xec\xfe\x6a\x92\x7e\x35\x49\x1b\xec\xfe\x7a\xbf\xe2\xb5\xc8\xa5\x71\x0f\xaf\x66\xea\xf7\x3a\xbc\x82\x07\x9a\xa9\x81\x10\x8f\x18\x8b\x66\xea\xd7\x0b\x16\xfa\xf5\x5e\xcd\xd4\xaf\x66\x6a\xf3\xca\xbc\x5e\x85\x7e\x2d\x68\x69\xe4\xc3\xab\xe9\xfa\x35\x05\x91\x81\xec\xaf\xb6\x6b\x20\x9d\x5c\xec\xaf\xb7\x2e\x80\x54\x52\xf3\x7d\xf2\xea\xd2\xb4\xa2\xd0\xa4\xf9\x1a\x68\xd3\x9d\x6b\x70\x13\x10\xcd\x78\x9d\xc1\x4d\x40\x2a\x49\x36\x1b\xdc\x04\x44\x3b\x9f\x95\x05\x24\xb5\x9d\x6e\x5c\x0d\xdf\x40\x34\x93\x26\x07\x6e\xfd\xef\x8a\xaf\x06\x34\x01\xa9\x24\xe5\x32\x8d\xe1\x40\x9b\x7e\xa7\xda\xc2\xdf\x5b\x1f\x6f\x93\x26\x03\x6e\x0d\x30\xd5\x47\x65\xc0\x2d\x03\xaa\x23\x96\x01\x26\x25\x3a\xff\x4b\xc3\x97\x80\x68\xe7\x6c\x65\x8a\x76\x74\xc3\x4b\x5e\xed\xe8\x40\x7c\x1c\x3c\xab\x21\x1d\x88\x67\x19\x8b\xf1\x4b\x40\x9b\x9e\xa4\xda\xd6\x81\x68\xc6\x3a\x6a\x5b\x07\xe2\x18\x61\x4f\x79\x49\xe3\x35\x53\x51\xaa\x76\x2b\x57\x4c\x4b\x94\xaa\xed\xe4\xca\x63\xa4\x02\x0a\xd7\xab\x71\x1d\x48\xc3\xba\x64\xaf\xd6\x75\x20\x9e\x75\xc8\xb2\xca\xcb\xd2\x16\xd9\x7b\xbd\xcc\xf1\x3e\x67\xaf\x38\x3e\x59\x75\xc2\xa6\xdc\xcb\x5e\xe6\x00\xa2\x9d\x73\x93\x55\x8f\x61\xa5\x18\x27\x5f\x63\xa9\x5e\x63\xa9\x0c\x70\x7f\x8d\xa5\x02\x82\x46\x1f\x06\x53\x01\x41\x83\x7d\x9a\xfa\x81\x36\x3d\x0a\xb4\xf4\x03\x71\xaa\xff\xc3\x8d\xf5\x57\x47\xc0\x6b\x00\x96\x29\xff\x5f\x1d\x01\x40\xd0\xe0\xa4\x9e\x00\xa0\x4d\x3f\x6c\x03\xb0\x80\x68\xe6\x08\x64\xee\x6b\x24\xa6\x8b\xaa\xf5\x1f\x88\xc1\xc3\x5c\xad\xff\x40\xd0\x6c\x27\x73\x31\xff\x17\x7d\x46\xaf\xe6\x7f\x20\xde\x27\x83\x64\xee\x6b\xc1\x2d\xb5\x37\xa3\xbc\x80\xa0\xb1\xaf\x35\xff\xbf\x26\x47\xd2\x0a\xf4\x6a\xfe\x07\x82\x66\x3b\x19\x69\xc2\xa4\x7a\x9e\x95\x93\x56\xa2\xa8\xce\x4d\x7d\x1e\x68\x56\x4a\x7f\xd5\xe7\x81\x68\x26\x4d\xb6\x90\xbf\xb7\x54\x7f\x67\x6a\xf4\x40\x4c\x83\x3d\x62\x3c\x18\x10\xcf\x4a\x93\x05\x5b\xa3\x57\x96\x26\x0b\xb6\x46\x2f\x45\x09\x03\xc2\x80\x78\x96\x55\xf3\xaa\x39\x10\xd3\x60\xdf\xe8\x27\x00\xa2\x9d\x34\x59\xf0\x1d\x16\xc0\x66\x8d\x04\x40\xf4\xc1\x74\xb5\x12\x00\x41\x63\x89\x34\x13\x00\x31\x0f\xc6\xa2\x99\x00\x88\xf7\x31\x5f\xed\x04\x40\x8c\xc5\x3e\xe4\xcb\x27\x5f\xdc\x1a\xda\x0e\xde\x8f\xc0\x55\x3f\x63\xcd\x04\x40\x3c\x0a\x4b\x35\x13\x00\x71\x1a\x31\x5d\xcd\x04\x40\x2a\x56\x8a\x79\x8d\x1c\x03\xd2\x49\xbf\xfd\x6a\x3a\x00\xd2\xc9\xaa\xb4\x35\x1d\xec\x9f\x06\x26\x76\xdf\xd6\x74\x00\xa4\x93\xd2\x7e\x6b\x3a\x00\xd2\xc9\xca\xbd\xb5\x1d\x00\xe9\xe4\x5f\xda\xda\x0e\x80\xa0\xfd\xa0\x75\x69\xc7\x8e\xb6\xa0\x0d\x69\xc7\x50\x36\xa0\x2d\x69\x26\x1a\x65\x37\x6f\x7d\x1b\x40\x1a\xd6\x3f\xdc\xfa\x36\x80\x54\x54\xb2\xb7\x16\x05\x20\x8e\x32\xc7\xf2\x4a\x93\x2f\xdd\x67\xb7\x34\xa5\x3d\x44\xa2\x6d\x40\x19\x10\xed\xa0\x69\x8d\x00\x82\x06\x5f\x0c\x28\x03\x82\x06\xff\xb4\x50\x00\x41\x63\xcc\x3a\x41\x80\x54\xbc\x5e\xb4\x35\x5b\x00\x41\x63\x2c\x9a\x2d\xb6\x41\x66\xa6\x16\xdd\xda\x28\x80\xa0\xc1\x17\x6d\x14\x40\x6a\x15\x89\x77\x6b\xa3\xd8\xe9\xc4\x3e\xc3\x03\x83\xcc\x80\x66\xd4\xc8\xd6\x6c\x01\x34\x8d\x4f\x5b\xff\xc9\xb6\x12\x8c\xb5\x0b\xb7\xa6\x8c\xad\xff\x44\xed\x79\x6b\xca\x00\x9a\xb6\xa7\xad\x25\x63\xeb\x52\x31\xcc\x76\x6b\x51\xdc\x96\x6f\xa8\x92\x1c\xdb\x20\x37\xae\x43\xd3\x78\xb8\x35\x1e\xea\xb2\xd8\x0a\xed\x40\x1a\x9a\xb0\xb7\x42\xfb\x0e\x01\xbd\xe9\x52\xda\xca\xe2\x40\x31\x69\xfc\x56\x14\x07\x96\x45\x4b\xb6\x92\xf8\x3e\xc5\x1a\x1c\x87\x92\x38\x50\x94\x56\xb7\x82\xf8\xb6\x6e\xbd\x8e\xfd\xad\x20\x0e\xa4\x9e\xf9\x99\x6f\x05\x71\x20\x75\xef\x29\x6f\x05\xf1\x7d\xe2\x3b\x90\xa2\xb6\x42\xf7\x3e\xf1\x1d\x48\x97\x5b\xa1\x7b\x5b\xa3\x5e\x73\xd4\x56\xea\xde\x4a\xdd\xda\x6c\xb7\x52\x37\xd0\xfc\xb5\x6c\x0b\xa1\xed\x79\x74\x78\x5f\xe7\xda\xcc\x63\xb2\x70\xb6\xae\xcd\xa9\x5b\xef\xd7\xa3\xc0\x0e\xa4\x6a\xa9\xe2\x6d\x18\xc8\xb6\x46\xbd\x31\x80\x5b\x21\x1e\x68\x9a\x71\xb7\x32\x3c\xd0\x2c\x2c\xbd\x15\xe1\xb7\x22\xbc\x31\x7b\xdb\xc8\x10\x20\x7a\x90\x26\x53\x10\xeb\xbb\x7f\xa5\xad\x58\x0f\xb4\xb3\x99\x94\xea\x81\xd4\x53\xb7\x57\xf9\x74\xa4\xfa\xe9\xeb\xe4\xd3\x91\xea\x11\xb6\xb6\x52\xfd\x3e\x52\xbd\xbb\x4e\xa9\x1e\x88\xfd\xf4\x0f\x29\xe5\xb6\x42\x3f\xd0\xa6\xec\x56\xe6\x07\x62\x42\xd2\xdc\x6e\x0b\x1f\x82\xdf\x9f\x22\x3f\x90\x4e\xb6\x94\xad\xc8\x0f\xc4\x77\xcf\xaa\x28\xf2\x03\xf1\x3a\x06\xaf\x78\x0f\xa4\x72\x78\xa6\x78\x0f\x14\xeb\x14\x6c\xa5\x7b\x20\xcd\x81\xf8\xbc\x2d\x44\x01\xa4\x9f\x09\x31\xb6\x12\x3f\x10\x7b\xd5\x67\xe5\x23\xc5\xd3\x0c\x52\xdb\x0a\xfc\x40\x8c\xc4\xd7\xc9\x46\x05\x7e\xad\x6b\x5b\x81\x1f\x08\xf9\xd4\x76\xf2\xe9\xd2\xac\x39\x1c\xb1\x8c\xb2\x8a\x45\x1b\xf6\x21\xa3\x2e\x3d\xe0\xfc\xb1\xb6\x31\x2c\x40\xec\x55\xde\xa7\x66\x00\xc4\x1f\x8b\x7e\x95\xf8\xb7\x65\x2c\x90\xe4\xb7\x12\x3f\xd0\xd4\x68\xb7\x02\xff\xbe\x8f\xf0\x65\x0f\x32\x45\x81\x5f\x0b\xc3\x56\x92\x07\x8a\x35\x24\xb6\x82\x3c\x50\xbd\x47\xb8\x95\xe3\xf7\x9f\x1c\xcf\x2e\x57\x8e\x07\xaa\xbe\x84\xad\x18\xbf\xad\x50\x6f\x24\xdb\x56\x8c\xdf\xde\x42\x30\xce\x72\x2b\xc6\x03\x31\x7d\x5e\xa7\x18\x0f\x84\x9c\xc0\xea\x28\xc7\x03\xc5\x4c\x8d\x5b\x31\x1e\x88\x63\xd4\xd7\x39\xd7\xc7\x02\x93\xfe\x1f\x14\xe3\x81\xf8\xa7\xb1\x3d\x15\xe3\x81\xe0\x30\x3c\x51\x14\x07\x9a\xda\xdd\x56\x12\x07\x8a\x39\xe9\xb6\x82\x38\x50\x75\x92\x6c\xe5\x70\xe0\x14\x24\xdc\x8a\xe1\x5b\x31\xbc\x62\xbd\xd8\x8a\xe1\x40\x31\x87\xde\x56\xe2\x06\xe2\x1c\x65\x5a\x8a\xdc\x40\x33\x7e\x72\x2b\x52\xef\xd7\x50\x7a\x64\xe5\xad\xac\x0c\x34\xcb\xde\x6c\xc5\xe2\xfd\x9e\xd3\x91\x2d\xa2\x58\x0c\x34\x8b\x80\x6d\xa5\xe2\xfd\x1a\x5b\xe5\xd0\x9c\x14\x65\x29\x14\xd9\xb7\xf2\xef\x3e\x65\x29\x94\x36\x0c\x89\x01\x9a\x5e\xb9\xad\xf8\x0b\x04\xc3\x59\x7b\x45\xdd\x6d\xf4\x8b\x81\x8d\x5b\x51\x77\x1b\xfd\xa2\xcf\x77\x2b\xeb\x6e\xa3\x5f\x0c\xa8\xdc\x3a\xaf\xf6\x3e\xfa\x39\x5c\x52\xfe\x05\x9a\x26\xbd\xad\xa8\xbb\x15\x75\x93\x1f\xb5\x62\xed\xde\x47\x6d\xb2\x5b\x27\xb6\x4f\x29\x33\xbb\x75\x66\x1b\xb5\xdb\xe5\x52\xaa\xdd\x4a\xb5\x87\x4d\xba\xbe\xf6\x89\x7e\xf1\xa7\xaf\xa4\xbb\xff\xa4\x5a\x46\xa7\x54\x0b\xb4\x75\x1e\x75\xb2\x0a\xb5\x7a\x3e\xb6\x42\xed\x56\xa8\xf5\xfe\xed\x56\xa8\x05\xda\xe1\x93\x32\x2d\x10\xbd\x3a\x3a\x4f\xa6\xcf\xb4\x6c\x36\x73\xa9\xcf\x05\x09\xcc\x2c\x5b\x39\x77\x5b\x61\x5e\xe7\xca\x56\xce\xdd\xde\x90\x30\xda\x79\x2b\xe7\x6e\x2b\x5a\xf8\x9d\x2b\xe6\x02\xf1\x51\x3b\x38\xd9\x64\x85\x79\x77\xd8\xa7\x98\xfb\x59\x61\x5e\xb7\xfa\xe7\xa5\x89\xcf\x4b\x13\xca\x1f\x9f\xa2\xef\x77\x42\x78\x18\xf2\xa7\xf8\xfa\x1d\xf1\x15\x79\xe6\x53\x7c\x05\x9a\x41\x04\x9f\xae\xaf\xcf\x6a\xf2\xe6\x07\xfc\x94\x68\xbf\x23\xd1\x76\x69\x97\xb4\x4b\x7e\x16\x68\x5b\x1a\xd9\xa6\xba\x24\x66\xf1\xe9\x0e\x33\x94\xf2\x53\xd8\xfc\x4e\x6d\x8a\x21\xad\x48\x23\x49\x05\xfb\xe9\x53\xae\x04\x9a\xe5\xa7\x3e\xdd\x61\x9f\x25\xdd\xf5\xd1\x7f\x8a\x9a\x40\xaa\x26\x7a\xfb\x14\x35\xbf\x73\x9f\x01\x79\xe6\x53\xd4\x04\xda\xe4\x1b\xfb\x94\x34\x81\x68\x06\x4b\x14\x35\x81\xa0\x31\x57\x65\xcd\xcf\x58\x1d\xfd\x7c\x9f\x72\x25\x90\x4e\x56\xb1\x4f\x77\x18\x50\x56\xff\x87\x9b\xec\x9f\x8e\xb1\xcf\x0b\xcb\xca\x9d\x9f\x8e\xb1\xcf\x0b\xcb\xba\x99\x3f\xa3\x76\x3e\x2f\x2c\x7b\x2a\x7d\x7a\xcb\x3e\x2f\x2c\x1b\x62\xf0\xe9\x2d\x03\x52\xf7\xa6\xe7\xe7\x05\x0a\x20\x0d\x63\xb2\x3e\x5d\x68\x9f\xc5\x2b\x54\xe7\x3e\x7d\x68\x9f\x57\x28\xd4\xd3\x3e\xaf\x50\x7c\x5e\x62\x36\x16\xe3\x33\xe4\x07\x08\x1a\x6b\x65\xc8\x0f\xd0\x0c\x45\xf8\x74\xbf\x7d\xba\xdf\xfc\x03\x7d\xba\xdf\xbe\x73\x89\x99\x13\xec\x33\xe4\x07\x68\x4a\x68\x9f\x1e\xb9\x4f\x8f\x9c\x2a\xc0\xa7\x47\xee\xfb\xab\x6d\xc8\xa3\x86\x01\x7d\x86\x01\x59\x56\xe8\xd3\x4b\xf7\x19\x06\x64\xb9\xa9\x4f\x2f\x1d\xd0\x26\xf6\xc5\xcf\x28\xa0\xaf\x1c\xbd\xd7\x2e\x64\x9e\x51\x40\x15\x31\xf3\xd3\x71\xf7\x19\x05\x54\xcf\xf0\x64\x5e\x51\xef\x2d\x76\x2b\xf3\x8e\xe3\xce\xbd\xaf\xe3\x0e\xa8\x66\x0b\xf8\x74\xdc\x01\xb1\xf5\xe1\xbb\x8e\x3b\xa0\x9d\x91\xe8\xa4\xfb\xea\x11\x78\x69\xa6\x43\xee\xab\x67\xb2\xbc\xce\xfb\x15\xdf\xa9\x9a\xc1\x1f\xfd\xd3\x49\x07\xc4\x09\xc6\x92\xe9\xa4\x03\x62\x74\xac\x85\x11\x3f\x9f\x11\x3f\x66\xb2\xfb\x4c\x05\xf5\x59\x4a\x43\x3d\xe0\x33\x0a\xe8\x33\x0a\xc8\x70\xc0\x4f\x07\xdf\xe7\xfd\x64\x45\xc4\x4f\x07\x1f\x50\xbd\x16\xfa\xe9\xdf\x03\xda\x59\x0a\xdd\x7b\x9f\xee\x3d\x6d\x1a\x9f\x41\x40\x40\xcc\xd6\x91\xc8\x14\x83\x80\x12\xa2\xda\xa7\xcb\xef\xf3\xca\xb2\xf6\xe4\x4f\x97\x1f\x10\x12\xa7\x34\x39\xd5\x48\x95\x52\x25\xc9\x28\xdc\x7b\xdd\x8a\xf3\x9f\xee\xbd\xaf\x9d\x6f\x8a\x49\x18\x04\x04\xc4\xf0\x18\x8a\x2e\xbf\x4f\x57\x9e\xf1\x06\x9f\xae\xbc\xef\x64\x71\x92\xc9\xba\xf2\x80\x50\x0e\xe0\x80\xae\xbc\x4f\x57\x9e\x57\x1b\x3e\x5d\x79\x40\x9b\xc9\xa1\xc8\x01\x13\xb0\xaa\xa5\x7e\xfa\xea\x80\xa0\xf9\x3a\x39\xd0\xfc\x56\x20\xe9\xaa\xfb\x4e\x02\x56\x3f\x3d\x7d\x75\xc0\x49\x82\xf3\x19\x2c\x04\xa4\x6a\xce\x87\xcf\x60\x21\xa0\x29\x0e\x7e\x5e\xf7\xf8\x4e\x9a\xd6\x61\x0f\xf2\xa4\x6b\x9a\xf5\x4c\x31\xa6\xe8\x23\x27\xeb\x44\x96\xfa\xf4\xf2\x01\xd1\x83\xcd\x64\x09\x5e\xbe\xe9\x41\xaf\x97\xef\xf3\x1a\xb3\xb5\xef\x3e\xbd\x7c\x40\x9b\xc3\xf1\x3a\xfb\x7e\xd6\x9a\x7d\xa2\xf7\x0e\x08\x1a\xbd\xea\xbd\xfb\x8c\x2c\xaa\x9e\x32\x7a\xef\x3e\x8b\xd0\xbb\x13\xf5\xd4\x7d\xa7\x90\x3c\xa6\xb9\x4f\x4f\xdd\x67\x21\x79\x3f\x4f\x1d\x75\xdf\x29\x24\xef\x0f\x41\x33\xc0\x67\x10\x91\x8a\xc4\xa7\x1d\xe0\xd3\x0e\xa0\x22\xf1\x69\x07\x00\x82\x66\x17\xce\x02\xa7\x5c\x51\x33\xfb\x34\x04\x00\x69\x5a\xa3\xeb\x53\x39\x06\xda\x39\xf1\xd5\x8d\xbf\x73\x6d\xc2\x43\x4b\xdd\x18\x68\x1a\xa5\x3e\x55\xe3\x4f\xd5\xd8\xf8\x9d\x4f\xd5\x18\x88\x05\xf3\x51\x19\xb0\x3c\x02\x61\x9d\x7a\x30\x10\x2b\x61\x33\x19\xb0\xfc\xd8\xfd\x76\x54\x70\x81\x34\xcc\x6c\xf6\xa9\xb8\x02\xed\xfc\xb6\xd4\x38\x81\x34\xce\xd9\xae\xca\xf9\x9d\x8b\x0f\xbe\x4e\xf5\x12\x88\x6e\xa5\x39\xba\xeb\x98\x95\x18\x8a\xea\x25\x10\x3a\xe2\xef\xff\xfd\xef\xfe\x21\xff\x08\xa9\x73\xb6\xed\x1f\xb2\xce\xfe\x59\xd2\x0b\x23\xc2\xfe\x21\xb0\xec\x9f\xa1\xc4\xfc\xa2\xf6\x0f\xd3\x9a\x10\x34\xdb\x6d\x69\x5b\xda\x0a\x5a\xf2\x7d\xc8\x18\x1d\xeb\xe7\xfe\x21\x4f\x08\x41\x5b\xff\xf9\x67\xdf\x3f\x64\x8b\xfd\x4b\xbe\x3a\xfe\x4d\xfb\x97\x1d\x3e\xe1\x32\x1d\xf1\x75\xff\xb2\xdd\xf1\xb7\xef\x88\x65\xfb\xc7\x9f\x5d\x48\x9d\x9f\xce\xfe\xf1\x3b\xdd\x3f\xa3\x65\xab\xec\x28\xbe\xaf\xf8\xbe\xca\x50\x8b\xef\xb3\x92\x6f\xad\xb0\x88\x1f\xd1\xfe\x15\xa7\xde\x60\x47\xb5\x8f\x6a\x1f\x5d\x9a\x2c\xaa\xb6\x1b\x8c\xb9\x39\x0f\x4f\x35\x6e\x33\xec\x5f\xb3\x5d\xb3\xdd\x64\x1e\x1c\x4d\xfb\xc7\xe5\xb1\x8e\x72\xb2\x7f\x9c\x26\x42\xd0\x78\x96\x93\x43\x08\x1a\xcf\x76\xdf\x67\x4e\x66\x2c\xa6\xfb\xc7\x87\x2d\x04\x6d\x42\xf3\x7d\xf8\xdb\x3b\x59\x55\xf7\x6f\xb8\x34\x7c\xb2\x1d\xcd\x74\xff\x86\xbc\xc2\x3f\xde\x49\x91\xb9\x7f\xf8\x9a\x85\xd4\x49\xdb\xb4\x7f\xd3\x6d\x82\x39\xab\x37\xf9\x3c\x1d\xcb\x74\x2c\x85\xf7\x61\x58\xda\x3f\xac\x48\x9d\xab\x58\xfb\xb7\x7c\x76\xf9\x6c\x65\x7c\xcb\x67\x31\xc4\x74\xae\x30\xed\xdf\xe5\x7c\x2f\xfb\xed\xd2\x7c\x16\xe7\x66\x6f\xf2\xfe\x72\x8d\xb4\x6b\xa0\xb3\xec\xdf\xe5\xf6\xbc\x7c\x5f\x67\x6f\xdc\xae\x87\x19\x0c\xda\xe4\x7d\xb7\xfd\xde\x8e\x79\xc2\xbf\xdb\x67\x6f\x9f\x75\xdd\x1e\xe7\x81\x33\xae\x37\xd7\xe8\x71\x1f\x3c\xf2\x74\x31\xb7\x47\x5e\x59\xfb\x83\xcf\x71\xff\x1e\xfb\x7d\xec\xd7\x75\x7b\xdd\x7f\x68\xd9\xbd\xbb\x6e\xaf\x6b\x84\xfb\xa9\x77\x3f\xb3\xd7\xf1\xe1\x07\xea\xdd\x35\x7a\xdd\x2f\xe8\xb7\x1d\xb1\x62\xff\xb6\x7b\x77\xfb\xac\xdf\xcc\x76\x2c\x38\x5a\x3a\x69\x88\xf6\x6f\xcb\xab\xed\xfb\x5c\xcb\xed\x7c\xd1\x34\x3b\x4e\xc5\xfd\xfb\x7c\x1f\x8e\x91\x8e\x91\x70\xff\x3e\xf7\xcb\xe7\xfb\xfc\x66\x3e\xdf\x87\xe6\xd6\xbb\xdf\xcc\xe7\x1e\xc2\x1b\xd1\xb1\x0b\xed\x84\xf7\x40\x48\x9d\x82\x32\x3b\xa1\x56\x09\x41\xeb\xd0\x96\x34\xdf\xd7\x62\x6e\x09\x4b\xbc\x90\x3a\x19\x35\x77\xc2\x9a\xbe\x93\xf7\x07\xa8\xa6\xb1\x13\xba\xc6\x4e\xc9\x7e\x07\xfd\x12\x52\x27\xa4\x4e\x2c\xea\x4e\xd9\x7e\x91\xe0\x3b\x37\xcf\x77\xf2\x3c\x48\xc5\x76\x4b\x9a\xed\x10\x6a\x3b\xf7\x82\x76\x2a\x8e\xcf\xfb\xc3\xc4\xa8\xec\x54\xed\xc3\xa2\xda\xc4\x67\xec\xe4\x19\x91\x3c\x23\x88\x33\xd9\x09\x11\x71\x27\xc4\xc1\x4e\xcc\xcb\x4e\x88\x7e\x42\xea\x84\xd5\xec\x84\x50\x27\x04\x8d\x7e\x9b\xe3\x33\x3e\x8b\x98\x92\x9d\x9a\x3c\x20\x78\xaa\x63\x31\xdb\xa9\x39\x3e\xcf\x1c\x04\x98\x9d\x9a\xef\x6b\xa7\xa8\x0e\x63\x41\xa8\x11\x92\x95\xc6\x77\x22\x00\x69\xa7\xee\xb3\x95\xf1\x79\x96\x24\x43\x8d\x47\xe3\xd9\xe1\xdc\x3c\x4b\x06\xdf\x65\xf2\x2c\x49\x43\xbe\xf0\x5d\x26\x7e\xeb\x3b\x19\x7f\x73\xfa\xe5\x17\xbe\xd3\x74\x1e\x9c\x93\x69\xfa\x3e\x4d\xed\xc3\x75\xf3\xcc\x49\x9e\x39\x63\x30\x16\xcf\x1c\x20\xf5\x31\x7d\xd6\x3e\xbc\x4a\x89\x85\x6c\xa7\x69\x1f\xcb\x3e\x5c\x5f\xcf\x21\x20\x75\xbc\x48\x3b\x2d\xfb\xe5\x2f\x3e\xcf\x58\x96\x6b\xae\x35\x9b\xea\xfc\x3b\x2d\xdf\xc7\xaf\xb8\x93\xb5\x68\xa7\x4b\xde\x5f\xa7\xc0\x07\xed\x3c\xaf\x80\x68\xc7\xde\xbd\x5c\x5f\xec\xb0\x9d\x58\x84\x9d\x3c\x9b\x92\x67\x13\x62\xec\x4e\xb7\xeb\x8b\x8d\xb4\x4f\xbe\xe9\x74\x3b\x66\x93\xc9\x4f\xf7\xc6\x6d\x1f\xb7\x7d\x64\xf8\x7c\xcb\x7b\xee\xfe\xf5\xe9\xde\xb8\xe5\xcb\xed\xbd\x99\x01\x5f\x3c\xeb\x12\x86\xcd\x3e\xf9\x5f\xa6\xc7\xf5\x7d\xec\xb7\xf0\xbe\xc7\xb9\x79\xae\x4d\xbe\xfd\xf4\xd8\x87\xe7\xda\xe4\x1f\x9a\x1e\xdf\x87\xb3\xbf\xcf\xca\xb3\x9e\x61\xc9\x33\x6c\xb6\xff\xf6\xba\xef\xf4\xba\xd4\xe6\x33\x99\x8d\x2d\xfb\xca\x36\x33\x25\x4e\x8f\x81\xd7\x6d\xfc\xda\x9d\xdb\xce\x63\x0f\x08\x1a\xcf\x6e\x59\xb4\x65\x91\x47\x83\xc7\x1e\x90\x3a\x7a\xec\x4e\xdb\x65\xfd\x5c\xd6\x41\x1f\x1e\x7b\xc9\x63\x6f\xba\xc5\x3e\xc7\xf7\x39\xbe\x09\x7b\x3f\xc7\xf7\x39\xbe\x49\x1f\x9f\xcb\xfa\xb9\xac\xa1\x75\xec\xac\xd4\x95\x95\xba\x26\xbf\xf1\x8c\xd5\x49\x88\xa5\xe9\xd0\xb2\x34\xfb\xe5\xf8\xc9\x38\x52\x85\xd4\x57\xc8\xac\x3b\x63\x75\x12\x82\x96\xa1\x5d\xd2\x1e\x69\xf4\xe1\x91\x99\x3d\x32\x29\x89\xb9\xb3\xd2\x59\x56\x3a\xe3\xe6\xc6\xce\x58\x76\x84\xd4\xa9\x4b\xb1\x33\x66\x9c\x9d\x75\x0f\xae\x4c\x1f\xf8\xfd\x76\xf6\x18\x25\x0b\xf1\xce\x1e\xa3\xd9\x63\x94\x2c\x6d\x3b\x67\xc7\x62\xde\x08\x32\x97\xed\x9c\xcf\xb3\x6c\x3b\x32\x73\xec\x5c\xe4\x81\xc7\x2d\x79\x2e\x76\xc6\xfc\x20\x04\x8d\x3e\x8a\xf3\x2d\xce\xb7\x31\x3e\x45\x32\x20\x68\x3e\xfb\x4a\xb3\xb8\x23\xbf\x92\xec\x11\x9c\x3d\x82\x31\x8c\xed\x8c\x46\x2e\x04\x8d\xf1\x79\x04\xe7\xea\xf8\xd8\x2f\xb9\x39\x3e\x14\xdc\xbe\x5c\xa3\x2e\x4d\x31\x0d\x75\x71\x67\x8f\x4c\x20\x68\x13\x9a\xe3\x43\x4d\x1b\x44\xc0\xef\xdc\x1d\x1f\x3a\xd9\x20\xc8\x7e\x67\x8f\x56\x20\x68\x8c\x65\x38\x16\xb4\xa3\x41\x38\xf1\xce\x8a\x64\x40\xd0\x18\xdf\x74\x2d\x09\x31\x1c\x84\x0e\xef\x3c\x1d\x0b\xc7\xe3\x20\xb2\x79\x67\x8f\x47\x20\x68\xf4\xbb\xdc\x1b\xcb\x7e\x0b\x63\x46\xc7\xd9\x99\x63\x6f\xfc\x5c\x23\xc5\xb4\xbc\x7c\x96\xdf\x78\xf6\x28\xcc\x6a\x2a\xd4\xd9\xd8\xf9\x72\x1e\xd7\xd9\xcf\x8c\xcf\xe3\x11\x88\x76\x3c\xeb\xf1\x08\x04\x8d\x76\xb7\xf3\x20\xca\x6b\xfc\x06\x63\xbe\x5d\x73\x8e\xb3\xf1\x1b\xec\x67\x45\x37\x20\x68\x8c\x59\x31\x2d\xdf\x8e\x85\x6f\x35\x7b\x9c\x01\x41\x83\x2f\x8a\x64\x59\x27\x0a\x55\xb6\x76\x7e\x9c\x9b\x71\x4f\x3f\xd7\xd2\xa3\x0b\x48\x23\xb9\x46\xaf\x3c\x25\x84\x67\x24\xd7\xe8\xb5\x5f\xab\x3a\x24\xbf\xa3\x2d\x4f\x39\x87\x06\xd9\xf9\x76\x56\xfc\x02\xd2\x48\x7e\x47\xdb\x7e\xb7\xef\x73\xdd\x3c\x9b\x32\xc6\xff\x91\xfc\xb6\x3e\xdf\xa7\x05\xdf\x5f\x5d\x56\xfc\x02\xd2\x48\x7e\x5b\x18\xc9\x85\x34\x08\x57\xdb\xf9\x73\x8d\xb0\x7e\x4f\x7f\x89\xc5\x73\x08\x08\x5a\x85\x96\xa4\x25\x9f\x95\xd6\xa5\x75\x69\x0b\xda\x94\x66\xbf\x88\xe6\x45\x8d\xb0\x18\x6c\x41\x2c\xd9\x2e\xd8\xab\x85\xa0\xc5\x1a\x95\x64\x1f\x04\x4c\x54\xd2\x68\xed\x82\xbd\x5a\x08\x1a\xcf\x62\xb0\x16\x82\x36\xa0\xd9\x2f\x9a\x63\x25\x07\xc8\x2e\x9e\x4d\x85\xb3\xa9\x72\xf5\x73\x17\xcf\x26\x20\x68\xc1\xbf\xa2\x1a\x08\xa4\x4a\x88\xdd\x2e\xd9\x31\x67\x9f\x75\x6e\x8a\x7d\xc5\x9a\xc0\xe4\xb9\xd9\xa5\xf8\xac\xc5\x7e\xcf\x3c\x3c\x73\x8a\x59\x15\x71\xda\xec\xe2\x99\x03\xa4\x49\xc8\xfc\x2e\x58\x1a\x85\x54\x31\xb5\xee\xe2\x39\x54\xb4\x20\x62\x18\xda\xc5\x73\x08\x08\x1a\x3c\x68\x3e\xdb\x7c\xd6\x35\x52\xc4\x03\x82\xc6\xdc\x9a\x63\x69\xce\x83\xbd\x5b\xba\xf3\xc0\x94\x55\x13\xff\x8f\xa2\x88\x57\xb4\x5b\xa5\xc5\x7c\x55\x2b\x0b\x06\xa9\x9a\x39\x9b\x4a\x97\x7f\x9c\x4d\x95\xac\xa1\xbb\x0c\x9f\x45\xec\xab\x99\xfd\x5c\x54\x21\xcb\xf0\x59\x44\xda\x82\x21\x48\x48\x35\xe7\xdf\x7f\xff\xee\x0b\x46\x21\x21\x1e\x61\x08\x4a\x8a\x40\xd0\x60\xd1\x74\xeb\x4c\x87\xe0\xf2\x4f\xb7\x27\x91\xd0\x35\x23\xad\x14\x8f\xbd\x82\x26\x5a\xb3\xcb\x3f\x5d\x1a\x22\x26\x2a\xd9\x2a\x76\x59\xbe\x6f\x99\x1b\x19\x4d\xa5\x28\x15\x02\x41\x63\x4a\x1e\x85\x40\x9a\xbf\xc9\x12\x2a\x15\x02\xd1\x8e\xb1\x2c\xfb\xc5\xde\x53\xb3\x9f\x05\xc1\x0b\xbb\x2c\xe7\xe1\x76\x22\xc4\x40\x88\xf7\xd9\x4e\x96\x23\x51\xd6\xcc\xf1\x58\x2e\x59\x6e\xec\x00\x51\x39\xbb\x5c\x6e\x1d\x0c\x39\xf3\x87\xf6\x52\x3c\x46\xcb\x25\xff\xdc\x8a\x97\x5b\x1b\x2f\x7e\xcd\x6e\xbb\xdb\xf9\xde\xbe\xcf\x2d\x76\x3b\xb7\xdb\x25\xe4\x18\x2d\xb7\xeb\x71\xcb\x2b\x8f\x0b\xb5\x5d\x20\x55\x2e\x04\xef\xa2\x04\x58\xac\xb5\x93\xdd\x62\x4a\x80\x40\xaa\xc5\xed\xf4\xc8\xfb\xc7\xcf\xc2\x6d\xfc\x38\x5f\xc2\x3d\x2b\x51\x8a\xbb\xbc\xce\xed\x3d\x73\x63\x7c\x1e\xb7\x05\xb1\xaf\x12\x31\xb9\xcb\x76\x1e\xe6\xb4\xc6\x14\xbe\xcb\x76\x7c\x44\x29\x56\x0c\xfa\xbb\x78\xdc\x02\xf1\x3e\xf6\xc1\x76\x2c\xd6\x6b\x2c\x1e\x17\x1e\xad\x40\xd0\xe8\x57\xb1\xaf\x98\x04\x8e\x8a\x4f\xbb\x78\xdc\x02\xc9\x04\x8e\xbb\x28\xf6\x01\xc9\xf4\x76\xbb\xa8\xed\x02\xc9\x1b\x84\xbb\x78\x04\x17\x73\x03\x70\xd1\x70\x57\x35\xdb\x8a\x66\x5b\x49\x1b\xb4\xab\x5a\x6c\x35\xf1\x18\xe9\x96\x76\xf5\x88\xab\x16\x87\x27\x4d\xc1\xae\x44\x67\xed\x9a\x9c\x07\xeb\x56\xf1\x75\x09\xa9\x12\x95\xbc\xab\xc7\x5e\xf5\xd8\xe3\xfa\xcb\xae\x8a\x69\x40\x9a\x54\x68\xdc\x15\x1f\x96\x10\xed\x7c\xdf\x23\xcd\x79\x70\xac\x54\x2d\x62\x40\xd0\x68\xa7\x56\x5c\x3d\x1e\x71\x24\xee\xca\x45\xee\x5d\xb1\x92\x55\xfc\x5f\xbb\xe2\x9b\x11\x52\x25\xa4\x73\x57\x9c\x33\xbb\xe2\x9c\xa9\x44\x92\xee\x5a\xe5\x01\x4e\x97\x4a\xd8\xe8\xae\x1e\x8f\x40\x8c\xb9\x40\x73\x7c\xd5\xf7\x71\x46\x54\xb5\xe2\xda\x7c\x1f\xbf\x8d\xaa\x06\x5c\xd1\x80\x2b\x66\xed\x5d\xd5\x80\x6b\xf3\x59\xb4\x97\xaa\x38\x57\xb9\xef\x5b\x2b\xbf\xbf\xda\xe5\x9f\xc7\x63\x65\x2d\x2b\x57\x75\x76\x35\xed\x12\x45\x1c\x76\xed\xce\xb7\xdb\x07\xdf\x7e\xd5\x12\x07\x04\x8d\xf1\x75\x79\xe0\xd1\x5a\xf9\x4d\x56\xc5\xbe\xea\xd1\xca\xbd\xb7\x5d\x3d\x5a\x81\x54\xa9\x24\xbc\xeb\x90\xcf\x43\x3e\x77\xde\x37\x7c\xdf\xf0\x7d\x7c\xe7\x75\xfa\xec\xf4\x59\xf7\x8b\xe7\x64\xf5\x4c\x24\xcd\xdf\xae\x9e\x89\x55\xab\x78\x75\xbf\x78\x26\xd6\xe5\x58\xd0\x94\xab\x5a\x71\xe5\x4a\x46\xad\xee\x17\x45\xbc\xaa\x88\x97\x50\x45\xaa\xe7\x55\xbd\xac\x84\xc8\x37\x5d\xb5\xc4\x01\xa9\x36\xd7\x97\x28\x21\x21\x68\x8c\x4f\xcd\xb6\xde\xd6\xe3\xe2\x9b\xae\x8a\x6e\xd5\x70\x1a\x92\x7f\xee\xfa\x38\x8f\xe7\xd4\xdd\xe7\xfb\x50\x74\x03\x52\xd5\xa2\x58\x3d\x73\xea\x63\x5d\x56\x54\x87\xfa\xfa\xec\xeb\xb3\xf2\xfe\xf5\xd9\xd7\x67\xe5\xbd\x16\xb6\x8a\x5a\x59\xb5\x32\xd6\x2d\x4f\xf7\xa9\xf2\x48\xbf\xaa\x95\x75\x9f\x5a\x63\xb6\x73\x3d\xb6\x73\x43\xf4\xad\x9f\xed\xbe\x53\x6c\x0b\x9e\x7a\x96\xd4\xef\x14\xc0\xb1\x9d\x7c\xf1\x8c\x68\x2b\xc6\xdc\x14\xc9\x9a\xc1\x07\x8d\xef\xad\xa9\x06\x02\xa9\x76\xbe\xb7\xa6\xca\x07\x04\x6d\x40\x7b\xa5\xbd\xae\x51\x82\xf6\x49\x3b\x39\x4a\xa0\xa9\x06\x02\x41\xab\xd0\xaa\x34\x63\xe5\x59\xa3\x46\xc0\x80\x10\xef\xa3\x5f\x2d\xf3\x40\xaa\xfd\x1f\xaa\xc7\xec\xa6\x51\xae\x65\xa3\xa4\xf8\x6c\x5b\xb6\xbb\x7c\x6e\x31\x30\x2c\x8f\x24\x20\xba\x63\x58\xb8\xd5\x77\x53\x62\x23\xd4\x6b\x37\xfc\xe0\xbb\x65\xa7\xc4\x96\x68\x6a\x89\x40\xaa\x9d\xcf\xb6\x79\xfc\x34\x8f\x9f\xce\xf2\x37\x7c\xbe\x42\xaa\x94\x83\xdc\x0d\x47\xab\x10\x34\x9e\x55\xea\x6a\x4d\x96\xf3\xf9\xb4\x66\x1f\x4d\x1f\x1d\x62\x41\x53\x12\x6b\x4a\x62\x84\x71\xed\xd6\xec\xb7\x39\x3e\x96\xbf\x29\x89\xb5\xe3\x41\xe4\x93\x6a\x1a\xf3\x5b\x77\xcc\x1c\x2b\x4d\x2d\xb1\x71\x17\xaf\x0e\x59\x8e\xe7\x4e\x08\x1a\xed\x94\xce\x1a\x17\xea\xea\x70\xf9\x35\xca\x35\x25\x31\x2e\x7f\xed\xa6\xa8\xd5\xd0\x26\x2d\xe0\xba\xdb\x70\x3d\xbc\xec\xa6\x61\xb2\x4d\xfb\x98\xf6\x81\x48\xd6\xd4\x30\x9b\xa2\x96\x46\xc8\xa6\xa8\x05\x24\x6b\x5a\xec\xa6\x86\xd9\x0c\x3a\x25\x08\x61\xb7\xe5\xb3\x88\x50\x5e\xf8\xde\x4d\xd1\x08\x48\x75\x20\x6a\xb5\xe5\x7c\x39\x56\xea\xe0\x37\xd9\xd4\x1c\x9b\xc7\x8a\x06\xc7\xa6\xc8\xd3\x2e\xfb\x45\x73\x6c\x1a\xd6\x9a\x01\x8e\x83\xe3\xb1\x79\xd4\x34\x8f\x9a\xe1\x5a\x2a\x06\x35\x2b\xa3\x53\x89\x77\x37\xb5\xce\x66\x65\x74\xb5\xba\x76\xcb\x3f\x45\xa3\x81\x34\xdf\xd4\x44\x9b\x55\x5c\xb4\xd4\x34\x35\xd1\x86\x61\xad\xaa\xed\x36\x35\xd1\x66\xe5\x71\x35\xae\xf6\xd8\x07\x91\x80\x55\x23\x64\x53\x84\x6a\x1e\x5d\x83\xdf\x5a\xd3\xfa\xd5\x3c\x92\xa6\xfb\xfe\x95\xa7\x18\xfd\xab\x86\xc4\xa6\xd1\x1f\x48\x55\x43\x62\x53\x34\x6a\x8a\x41\xd3\xf5\xdd\xce\xc3\x5a\x7f\x1a\x12\x9b\x5a\x27\x90\xea\xcc\x3e\xeb\x98\xd1\x30\xeb\xe4\xd7\xd9\x3e\xbf\x8f\xcf\xf7\xb9\x96\x1a\xf8\xdb\xe7\x58\xf8\x75\x76\xb5\x49\x20\x68\x0d\x5a\x96\x96\xa5\x0d\x68\x55\x5a\x95\xb6\xa0\x31\x8f\xee\xf1\x33\x59\xcb\xae\x15\xaa\xab\xd5\x91\x1a\x65\x77\x0d\xf7\xdd\x73\x03\x07\xf8\xee\x8a\x3c\xdd\x73\x43\x8b\x5d\x27\x44\x47\x48\x75\x22\x22\x77\xc2\x6c\x84\xa0\xf1\xac\xa2\x4c\x37\x69\xa8\xd6\xb9\xee\xb9\xd1\x71\xf8\xd5\xc9\x71\xdb\x15\x65\x80\x54\x17\xc7\x68\x27\x01\x8d\x10\x34\x9f\x75\x1e\x6a\x7a\x54\x99\xda\x5d\x4d\xaf\x13\x17\x52\x49\xfd\xbc\xbb\xa2\x4c\x57\xd3\x23\x11\xca\xee\x9e\x39\xdd\x33\x87\x10\xe3\xdd\x89\xda\xd8\x1d\x2b\x54\xd5\x12\xd7\xd5\x08\xbb\xe7\x10\x35\xbd\x76\xf7\x1c\xea\x9e\x43\x54\x1f\xd8\x5d\xf1\xa6\xab\xfd\x51\x43\x61\x77\xcf\x9c\xae\x78\xb3\x5c\x37\xc5\x9b\xde\x1d\x0b\x22\x6d\x57\x94\x01\xd2\xa4\xd4\xe6\xee\x8a\x2d\x5d\xb1\x85\xe0\xb6\xdd\x15\x5b\x80\xa0\x31\x16\x45\x94\xae\x2a\xb7\x5c\x4b\x55\xb9\x8e\xb5\xaa\x6a\x75\xeb\x1a\xfd\xbb\xe7\xcb\x72\x7d\xa7\x6b\xe9\x59\xc2\x8d\xc9\xdd\xa7\x63\x99\xf2\xd9\xf5\x9d\x8e\xc5\xf3\x65\xb9\xbe\x9e\x2f\x5d\xb1\x65\xb9\xbe\xaa\x68\x5d\xb1\x05\x1f\xfa\xee\x5a\xb0\xba\x67\xce\x72\xcd\x75\x34\x02\x41\xf3\xd9\xd3\x87\xf3\x75\x1f\x28\xf2\x74\xd4\xb1\xa6\x15\xaf\x7b\x0e\x01\x41\x83\xcf\xaa\x5e\x9d\x60\xe9\x46\x92\xc1\xdd\x3d\x5f\x80\x64\x6d\xea\xdd\x55\xb3\x3a\x22\x8f\x85\x06\x77\xbf\x5d\x37\x1c\x8d\x56\xab\xd9\xfd\xf1\xdb\x42\x0c\x32\x59\xf4\xee\x3a\x1a\xbb\x65\x98\x92\xef\xd3\xaa\x05\x24\xb3\x3b\xec\xae\xa3\x11\x48\xe6\xa8\xd8\xfd\x75\x1e\xaf\x63\x41\x34\xea\x9e\x39\x9d\xcb\x6a\x8d\x4a\xea\xbb\x6b\x71\xef\x5c\x42\x6b\xa4\x63\xd9\x5d\x8b\x7b\xdf\x8e\xa5\xfd\xf7\x35\xf9\xdd\x95\x9c\xba\xe5\x81\x7e\x18\xe4\xbb\x47\x0d\x90\x9a\x06\xbd\xae\xc6\xd5\x39\x6a\xda\x8f\x63\xb4\x6b\x68\x07\x52\x53\x73\xec\x6a\x5c\x9d\xe3\xa7\x91\xf0\x6d\x77\x25\x27\x20\x35\x8d\x77\x43\xc9\x69\xfc\x9c\x26\x7e\xd7\xa1\x31\x6b\xfc\x7c\x1f\x06\x90\xa1\x16\x36\x90\x9c\x9a\x52\xcd\xd0\x98\x35\xcc\x45\x92\x58\xd6\xa1\x01\x7d\x60\xb8\x6a\x14\x5d\xde\x43\xc3\x15\x90\x5a\xe2\xf3\x1e\x84\x50\xee\xe1\xcd\x1c\x97\x66\x28\x25\x0d\x34\xb8\x46\xe1\x8b\x3d\xd4\xe0\x80\xd4\x34\x06\x0e\xc5\xa0\x81\xb6\xd6\x34\x70\x0d\x8f\x2e\x20\x35\x8d\x59\x43\x03\xfa\x30\xb3\x17\xd7\x5e\xf7\xd0\x58\x3e\x10\x79\x9a\xc6\xbb\xe1\x31\x35\x8a\x7d\xa0\x81\x0c\x35\xae\xc1\x31\xd5\xb8\xbc\xbb\x87\x1a\x17\x90\x1a\xb7\x72\xf7\xd0\x37\x39\x2c\x00\xae\x81\x6b\xe8\x87\x1c\x66\x8e\xd2\x98\x35\x34\x8c\x8f\xe6\xfb\xf8\x4d\x0e\xc5\xa0\xd1\xec\x77\x4a\x73\xcc\xcd\x67\xd1\x30\x87\x1a\xd7\xe8\x3e\xcb\x27\x3a\x34\x48\x8d\x2e\x0f\xf8\x44\x87\x1a\xd7\xe8\xf2\x94\x4f\x74\x74\xd7\x4d\x2d\xec\xf0\x54\x8d\x6b\x20\x2e\xb5\x8c\x56\x32\x14\x97\x80\xa0\x31\x16\x45\x23\x20\x68\x3c\xab\xe1\x6a\x10\xfb\xd0\x72\xf2\x59\xd7\x0d\x71\xa9\x51\x3d\x6b\x0f\xc5\xa5\x31\x4c\x99\xc0\xf1\x3d\xd4\xb8\x80\xd4\xb4\x56\x0d\x35\x2e\x20\x68\xb6\x73\xcc\xd3\x44\x87\x19\x1e\x28\x2e\x01\xa9\x65\x3e\xef\xa1\x66\x06\x04\x8d\xbd\xa1\x91\x1e\x08\x1a\xef\xf3\xd8\x03\x82\xc6\x5a\x6a\xad\x02\x82\xc6\xdc\x3c\x0a\x07\x47\x61\xd3\xfa\x35\x3c\x0a\x81\xa0\xc1\x17\x35\xb8\xe1\x11\xa7\xb5\x6a\x28\x7e\x8d\xcb\x76\x1c\x03\x43\x11\x0a\x48\x8d\x92\xe1\x7b\x68\x49\x02\x52\xa3\xee\xe2\x1e\xfa\x21\x81\xa0\xf9\xac\xfc\xb3\x70\x1d\xe5\x58\xf6\xd0\xbf\x38\xac\x34\x47\x86\xe6\x3d\x3c\xba\x86\x47\x57\xf6\x9b\xe6\xbe\x82\x10\x34\xda\x79\x9c\x01\x41\xe3\x7d\x5a\x8d\x86\xc7\x19\x17\x87\xf7\xf0\x38\x03\x92\x99\x59\xf7\x50\xd3\x1b\xaf\x65\x33\x5d\x73\xcf\x2b\x20\x79\xcb\x60\x0f\x2d\x49\xc3\x04\x95\xc4\xc6\xee\xa1\x91\x1e\x08\x1a\x73\xd3\xba\x34\xb6\x35\x84\x38\xbe\xc7\xe7\xf8\x3c\xd7\x0a\xaa\xcd\x50\xfb\x03\x82\x46\x1f\x8a\x55\xc3\x73\xad\xb8\x46\x9e\x6b\xc3\x73\x4d\xeb\xd2\x54\xd4\x9a\x9e\x6b\x54\xea\xdb\x53\x83\x3c\x90\x1a\x75\x17\xf6\xf4\x0c\x9b\x9e\x61\x24\xa0\xde\xd3\x10\xad\xf9\xf3\x7d\xa8\x3b\x53\x83\xfc\xf4\x5c\x23\xb7\xd5\x9e\x9e\x6b\xd3\x73\x8d\x04\xf0\x7b\xaa\xfd\x4d\xcf\x35\x92\x7e\xef\xe9\xb9\x06\xa4\x46\xb2\xd7\x3d\x15\xd3\xe6\x29\x25\xc5\xfa\x4e\x45\xb2\x99\x7d\x16\xcb\xde\x34\x06\x0b\x48\x8d\x44\x2f\x7b\x7a\xae\xcd\xbf\x1a\x4c\x8c\x45\xe3\xfb\x34\xc5\x20\x77\x37\xf6\x54\x4c\x9b\x96\x94\x25\x74\x7f\x4f\xc5\xb4\x69\xa9\x58\xc3\xd4\xa6\x71\x18\xd3\xb3\x8e\x4b\xb5\x7b\x2a\x6a\x01\xa9\x19\x4b\x36\x3d\xd7\x26\x96\xa4\xa6\x25\x69\x7a\xae\x01\x41\x1b\xd0\x1c\x4b\xb3\x5f\xd6\x72\x7a\xd6\x59\xef\xbf\x11\x48\xb9\x2d\xe4\xbf\xa7\xe7\x5a\xc5\x22\x61\x81\xfe\x4d\xe5\xfd\xa0\xd9\x6e\x49\x83\x7f\x5a\x8d\xac\xa9\x2f\x04\x8d\xb1\x28\x6a\x01\x41\x83\xf7\xc6\x57\x4c\xcf\xab\xea\x1a\xe9\x18\x9c\x27\xf5\x35\xe7\xf3\x34\x6e\x02\x48\xa6\x61\xdf\xd3\x78\x08\x20\x91\xed\xe6\x7f\xf7\xd4\xf2\x33\x3d\x4b\x8c\x39\x9b\x9e\x25\x73\x99\x74\x62\xfd\xf7\x95\xba\x3d\xd5\xea\x80\x78\x84\xe5\x52\xab\x03\x52\x6b\xfc\x62\xe7\x25\x8b\xd0\xf4\x1a\x17\x94\xf7\xbc\xdc\x76\x84\x77\x35\xc3\xd4\x2c\xe3\xbf\xa7\xd5\x41\xa9\xf1\xb9\xad\xe3\xbf\x27\x57\xca\x1a\xb7\x8f\xf6\x54\x5b\xa3\xa6\x7e\x6a\x54\x26\xdc\x16\xd0\x17\x82\xc6\x58\x94\xb0\x4e\xbd\x79\x8d\x4a\x53\x69\x0a\x48\x4d\x03\x92\xc5\xe5\x85\xa0\xd9\xce\xa5\x26\xe7\x41\x33\x4c\x6d\x3e\xe7\x7d\x6c\x1d\x52\x68\xef\x69\x28\xd7\xf4\x48\x6a\x2e\xe1\xeb\xdc\x5e\xfb\xc5\x1f\x3d\x35\x78\xcf\xd7\x31\xbb\xac\x1e\x5d\xd3\x63\x4a\xe3\xd3\x54\xea\x9a\x1e\x53\x86\xb3\x59\x35\x7e\x5b\x0e\xbe\x35\x3f\x47\x35\x3d\xab\xba\x37\x8a\xda\xef\xb9\x7d\xdf\xf6\x7d\x58\x2e\xac\xc4\x2e\xa4\x46\x29\xf9\x6d\xdd\xf5\x4d\x8d\xf5\xa0\xd1\xc7\xe7\xfb\x3e\xf9\xe2\x96\xf0\x98\x02\x82\x66\x3b\x8f\x95\x4f\x1e\xb0\xe6\x56\x46\x17\x52\xa3\x3c\xcc\xb6\x0a\xba\x10\xb4\x0a\x6d\x48\x9b\xd2\x26\xb4\x47\x1a\x9f\x00\xf5\x12\xf6\x52\xac\x5a\x1e\x3f\x54\x4c\xde\x16\xf9\x16\x92\xe9\x85\xb7\x45\xbe\xf7\xe2\x12\x88\x99\x93\xb7\xa5\xba\xb7\x75\xb4\xbd\x7d\xba\xad\x99\xbd\x2d\x90\xdd\x0c\x49\xb3\xc8\xf5\x5e\x18\xb2\x5b\x47\x0a\xb6\x7a\xb5\x90\xa6\x7e\x48\x2b\x55\x0b\xd1\x8e\x7e\x15\xb5\xa8\x3a\x9d\x1a\x37\x67\xb6\xb5\xa5\x85\xa0\x75\x68\x55\x5a\x93\xc6\xb3\x6a\x84\x16\x88\x6e\x54\xf3\xdb\x56\x74\xde\xa7\xa2\x33\x95\xf1\xb6\xd5\x9b\x85\xd4\xa8\x04\xb8\xad\xc5\xbc\x29\xa8\x1c\x34\x9e\x55\x23\xb4\x54\x72\xa3\xcc\xc5\x5e\x86\x9e\x02\xa9\x69\x71\xb2\x2c\xf2\x5e\x66\xb0\x22\xb3\xf3\x5e\x1e\x5d\x16\x37\x6e\x86\xbd\x2d\x45\x32\x20\xb5\xe1\x5a\x2a\x92\x2d\x8f\xb3\xe1\x5a\x1a\xfb\x00\x04\xaf\x98\x9b\x9a\xe3\x42\x73\x9c\xe4\xaf\xdd\x6b\xc8\x67\xac\x55\x33\xb9\x1e\x1a\xbc\x81\x78\x1f\xfd\x2a\xa6\x01\xd1\x8e\xf7\x29\xa6\xad\x61\x1f\xfc\x26\x97\x62\xda\xc2\x59\x38\x15\x7d\x97\x47\x21\x10\x34\xde\xa7\x03\x71\x4d\xad\x3c\x7c\xab\xcb\xe3\x71\xcd\x33\x0f\xfa\x50\xeb\x04\x52\xd3\x72\xb6\xd4\x3a\x81\xa0\xd1\xaf\x47\x26\x10\xef\xe3\x59\xc3\xb6\x80\x34\xb8\xa1\xbb\x2d\x7c\x2b\xa4\xa9\x8f\x75\x19\x6b\x04\xa4\xa9\x28\x68\x2d\x3c\x21\x4d\x1d\x6a\x97\xe7\x1f\x90\x26\x29\xdb\xb7\x55\xb1\x36\xd5\xae\xd2\xe4\x8a\xee\xbe\x3c\xc3\x2e\x35\x42\x6e\xae\xed\x4b\xc3\xf8\x85\x33\x6e\xea\x98\xb1\x64\xd5\xa6\x16\x55\xd0\xe8\xd7\xb3\x89\xca\x53\x69\xfa\x9b\xb4\xcc\xd4\xbe\x38\x87\x26\xe9\x41\xb6\x05\xa4\x84\xa0\x2d\x68\xf0\xc5\x92\x4f\x93\x9c\x1c\xdb\xfa\x4e\xdb\xba\x4d\x93\x0b\xa3\xdb\x22\x4d\x42\x9a\x86\x61\x5f\x3a\xde\xac\xc8\x34\xb9\x23\xb4\xad\xbe\x24\xa4\x51\xe4\x8b\xe7\x90\xd5\x97\xa6\x0e\x9c\x4b\x11\xea\xf2\x6e\x61\x65\x6f\x58\x7d\x49\x48\xa3\x20\x4a\x5b\x7d\x69\x53\x69\x29\x4d\x1d\x3d\x96\x50\xda\x96\x4b\x9a\x86\x7a\xdf\x9e\x57\xb7\xf1\x10\x86\x7a\x5b\x2e\x69\x5b\x07\x69\x56\x44\x2d\x8b\x1e\xed\x53\x69\xc8\x5f\xb6\x55\x85\xb6\x15\x84\x66\x65\x1f\x58\x2d\x48\x48\xb3\xf6\x0c\xcd\x67\x51\xf9\xa6\xbf\xec\xdb\x58\x85\x3b\xbb\x1e\x88\xcd\xd6\xf7\x11\x82\x56\xa1\xf9\xbe\xec\xfb\x10\xa5\xad\xe6\x23\x04\x8d\xf1\x19\x6f\x65\x9d\x9e\xa9\xa3\xe7\xd6\x91\x67\x89\x9b\x49\xf1\xa6\x7d\x1b\xab\x70\xab\x1a\x1a\xea\x68\xed\x9a\x6d\xed\x9a\x59\xd7\x3f\x84\xea\x59\xc6\x46\x88\xd7\xc0\x4a\xb7\xf1\xed\xa5\x29\xf2\xeb\x6e\x4b\xd0\x08\xd1\x8e\xa1\x1a\x66\x65\xb9\x99\x69\xf4\xba\xe5\x66\xb6\xa5\x65\x9a\xc6\x54\x4b\xcb\x6c\xea\xc8\x44\x3b\x86\x5f\x65\x9b\x47\xa1\xe1\x30\x77\xb3\x5f\xee\x25\x4d\xae\x74\x6c\x4b\xc4\x08\xd1\x0e\xb6\x29\xc5\x59\x0f\x66\x92\xdf\x64\xdf\x1e\x99\x40\xb4\x63\x7c\xcd\xe5\xc2\xb0\x36\xf5\x67\x59\x10\x66\x53\xfd\x25\xda\x31\x66\x8d\x6d\xb7\x12\xa0\x91\xa4\x96\x84\x11\x82\xc6\xf2\xab\xed\x5a\x12\xa6\x0d\xf9\xa2\x51\xee\xee\x67\xcc\x8c\x4f\x49\x11\x08\x1a\xf3\xf5\xb8\xb5\x24\xcc\xe4\x82\xd9\xb6\x24\xcc\xb6\xfc\x4b\x1b\x1c\x03\xb7\xa1\x66\x40\xb2\x72\xfe\xbe\x75\x22\xdc\x26\xf9\x33\x5a\xd5\x92\x30\xdb\x5a\x2f\x93\x3b\x3c\xfb\xf6\x58\xbe\x3d\x96\xa9\x9d\xbe\xad\xff\x22\x24\x4b\xdc\x6d\x6b\xbd\x08\x71\xc4\xf9\xac\xe3\x1b\x8e\x0f\xad\xf8\x56\x42\xbd\x95\x50\xa7\x73\xf3\xa8\xb6\x00\xcc\xd4\xf7\x67\x11\x97\x6d\xc1\x96\xd9\xd0\xb8\x2c\xd8\xb2\x2d\xce\x62\x3e\xb1\x6d\x21\x96\x7d\xa3\x65\x4f\x7d\x84\x16\x62\x11\x92\x99\xbd\xb6\x05\x56\x84\x68\x27\x6d\x49\x5b\xb6\x63\x1e\x1e\xf3\x40\xb4\x63\xbe\xde\x58\xb0\xc0\xca\xa4\xaa\xf4\xb6\xc0\x8a\x90\xbc\x64\xb6\x2d\xb0\x22\x44\x3b\xf6\x81\xb1\x23\x56\x4e\x69\x93\xe3\xd1\xca\x29\x42\xb4\x63\x6e\x4b\x5e\xa9\x8d\x6b\x7c\xbf\x8d\x1d\xb1\x72\xca\x54\x54\xb5\x72\x8a\x10\xed\x18\x9f\x71\x22\x56\x44\x99\x8a\xaf\x56\x44\x11\xa2\x1d\x7c\x56\x93\xb7\xfa\xc9\xf4\xe6\xc5\xad\x78\x0d\x44\x3b\xc6\x6c\x3c\x89\x95\x4e\x26\xf5\x1a\xb7\x95\x4e\x84\xd4\x26\xc7\xa8\x95\x4e\x84\x68\xc7\x3c\xf4\xed\x02\xd1\x8e\x79\x5c\xee\x35\x8d\x9f\xf3\x8c\xcf\xf5\xbd\xe4\x29\x47\xb5\xd5\x4e\x84\x68\xc7\xf8\xfc\x75\x5a\xed\x64\x52\x50\x6f\xdf\x1a\x4e\xef\xdb\x3d\xc9\xef\xfe\xd6\xd2\x70\x6b\x69\x30\x1a\xd9\x0a\x28\x42\xd0\xe8\x43\x03\xab\xd5\x4e\xda\x44\xac\xbf\xb5\x3e\xdc\x5a\x1f\x8c\x50\xb6\x02\x8a\x10\x7d\x48\x73\x7c\xa6\x7c\x98\x1e\xfd\x3a\x70\x80\xa0\xd1\x87\xbf\x5d\xcb\x98\xcc\x76\xda\xb9\xbe\xaa\x0e\xd3\x5f\x84\x8e\x1e\x20\xda\xc1\x3f\x2d\x1c\x40\xd0\x7c\x9f\xe3\x7b\xe4\x1f\x9a\xfc\xad\xd5\x03\x48\x53\x15\xe3\x56\xc5\x00\x82\x46\x1f\xfe\xc6\xad\x6e\x32\x29\xae\xb4\xad\x64\x22\x04\x8d\x3d\xa4\xb1\xf7\xd6\x3a\x32\xfd\x7e\xb5\x8e\x50\x6f\x24\xda\xd1\xaf\x6a\x87\xc5\x45\x2c\x43\xbb\x6f\xd5\x0e\x20\xda\x31\x5f\x9d\x4e\x16\x12\x99\xe4\x50\xde\x16\x0d\x11\x82\xc6\x7c\x15\x0b\x80\x64\x26\xff\x6d\x35\x90\x6d\xe9\x8f\xd9\xfc\x75\x6a\x59\xb1\xcc\xc7\x54\x05\xba\x15\x1f\x6e\x2d\xc6\x86\x6b\xdf\x8a\x50\xb7\x22\x14\x79\x96\xb6\x65\x3e\xf6\x29\xf3\xe1\x6d\xa0\x5b\xcb\xf2\xad\x6a\xa3\xe3\xe8\x56\xa4\x00\xa2\x9d\x34\xf7\xd0\xe7\x1e\xf2\x37\xa9\x48\x71\xab\xee\x18\xfe\x6d\xe9\x8f\x7d\xab\xee\x4c\xfe\x29\xd6\xf4\xd8\xd6\xef\x68\x93\xf3\xde\x5a\x1d\xdb\xba\x1c\x53\x15\xcd\x7a\x1b\x42\xb4\xeb\xd0\x98\xdb\x29\xa4\xa1\xd3\xc9\xa2\x19\x42\x9a\xc6\x16\x58\x35\x43\x48\x4d\xa7\x93\x15\x32\xf6\xa3\x5a\xa4\xd3\xe9\xd1\x79\x66\x35\x8c\xc9\x25\xcb\x6d\x35\x0c\x21\xda\xd1\x87\x37\xe8\x4e\xe5\x8b\x36\xfe\xbb\x06\xdd\x7e\xbc\x60\xf7\xa8\x5d\xe9\xcf\xb2\x08\x86\x90\xcc\xe2\xbf\xad\x78\x21\x24\xb3\xc1\xed\x47\xc9\x04\x48\x4d\x7f\x96\x15\x2f\x84\x18\xc2\x80\x26\x8b\xb2\x79\x75\x31\xd0\x58\xca\x42\x88\x76\x0c\xdf\x88\x71\x20\xda\xb1\x0c\xfa\xf4\xac\x65\x31\x0d\xbf\xb0\x46\xc5\x3e\x35\x2a\x56\xf6\x59\xd9\xa6\xb1\x9c\xea\xdc\xdb\x3a\x13\xdb\xa2\x12\x8d\x52\xdc\xdb\x6a\x11\xdb\x2a\x10\xb3\x21\x7d\x3f\x46\x74\x3e\x1a\x95\x28\x28\xbe\x1f\x45\x9e\x47\xc9\xdd\x4b\x63\x56\x8b\x10\xd2\x30\x1c\xcb\x6a\x11\xfb\x31\x99\x73\x3b\x34\xfb\xad\x2e\x17\xa1\x20\x96\x68\x10\xd2\xf4\x22\x99\xe5\x18\x84\xa0\xd1\x87\xe2\x0d\x10\x34\xde\xd7\xe4\x7d\xf3\xa8\x21\x8e\xe0\x51\x6c\x01\x82\xc6\x98\xd5\xfe\xac\xa0\x30\xd5\xda\xad\x96\xb0\x2d\x8d\x30\xd5\xda\x2d\x8d\xb0\x2d\x83\x30\xd5\xda\xad\x69\x20\x04\x8d\x75\x53\x1c\xb1\xa6\x81\x89\xba\xf6\xa3\x81\xcb\x1a\x04\x53\xed\xde\x7a\x03\xfb\x41\x7c\x98\xdd\x7d\x30\x4e\xbb\x25\x8d\x3e\xf4\x1b\x5a\x48\x60\x7a\x59\xed\x51\x54\x00\x82\x46\xbf\x8a\x0a\x40\xd0\xe8\x57\x83\xfc\xa3\xa8\x40\x4a\xb7\xfd\x68\x90\x07\x82\x46\x1f\x1a\xda\x81\xa0\xd1\x87\x9a\xde\xa3\xa6\x47\x39\x9d\xfd\xa8\xe9\x3d\x6a\x7a\x5a\x10\x1e\x8d\xef\x8f\x06\x33\xb2\xb4\xee\x47\x11\xe0\x59\xa7\x5f\xc6\xa2\x08\xf0\x68\x44\x23\xb3\xec\x7e\x34\xc8\x03\x69\x92\x98\x6b\x3f\x8a\x00\x40\xd0\x18\xb3\x46\xfa\x47\x23\x3d\x59\x40\xf6\xa3\x85\xed\x59\xf2\xa5\x4a\x73\x1e\xcb\x79\xf0\x1b\x7a\xf4\x61\x02\xf1\x2c\xf3\x55\x54\x00\xa2\x1d\x73\x53\x2c\x78\xbc\xb8\x64\xac\xcc\x73\xb9\xbe\x97\x63\xe1\x97\xf3\xf8\xbb\x07\x82\xc6\xf8\xfc\xdd\x03\x41\x63\x2c\xfe\xda\x1f\x7f\xed\x64\xb9\xdd\x8f\xbf\x6c\x20\xda\xb1\x27\xfd\x65\x3f\xfe\xb2\x97\xdf\xaa\xbf\xec\xe7\x3e\x7d\x30\x3e\x35\x56\x20\x75\x2a\x23\xec\xc7\xc8\x7c\x20\x68\xbc\xcf\x18\x89\xc7\x8b\x91\x3f\xcf\x26\xb5\x53\x20\x4d\xe3\x7b\x1e\x7f\x61\x0f\xbf\xab\x4e\xea\xf9\x6d\x31\x0a\x21\xf5\x9f\x67\x8e\xda\xe9\xe3\x6d\xa0\x9f\x7b\xc8\x5f\x89\x25\x24\xfa\xcf\x3d\xe4\xaf\xc4\xe2\x10\x9d\xf4\x4b\xdb\xca\x0d\x42\xea\xa4\x43\xd8\x96\x55\x10\x62\x2c\x05\xda\x90\xe6\x77\xd4\x6d\x77\x49\xbb\xa4\x75\x68\xbc\xef\x4d\xee\x3f\x6e\xa9\xbc\xfe\x22\x5e\x7f\x11\x5a\x8d\xac\x7a\xb0\x2d\x67\x30\xb9\xe8\xbe\x2d\x67\x20\xa4\xfe\xe3\x57\xfc\x6a\xb8\x07\xa2\x9d\xef\x3b\x7d\x3c\xd2\x6c\xf7\x4a\x3b\x55\x56\x12\xb4\x2d\x4d\x9e\xb2\x6e\xd6\x24\x10\xd2\x34\x16\xea\xf5\xbf\x60\x01\x82\xfe\x73\x1e\xfe\x17\x5e\x35\x56\x2d\x58\x96\x1b\x10\xa2\x9d\xef\x73\x7c\x6a\xb1\x5a\xb5\x5e\xff\x0b\x40\xea\xbf\xe1\xb3\x8e\x2f\xbb\xff\x38\x4f\x4d\xf1\x2f\x44\x3b\xde\xa7\xb6\x6b\x8e\xff\x49\x4d\xb4\x6d\xa2\xfe\x4d\x6e\xfe\xa0\xf1\xac\xe7\xb3\x09\xf8\x27\x95\xc3\xf6\xab\x23\x14\x48\xdd\xb0\x64\x13\xf0\x6f\x93\xed\x4f\xad\x64\xaf\x6a\xaa\x89\xf5\x27\xd5\xc9\xb6\x89\xf5\x85\xd4\xbd\x69\x62\x12\x7d\x21\x4d\xad\x69\x66\xd1\x17\xa2\x1d\xe3\x53\x9d\x35\x63\xfe\x34\xf6\xcb\xec\xf8\xdb\x4c\xf8\x53\xab\x9b\x39\xe7\x85\xd4\x0d\xf3\x7b\x3d\xb3\x5f\x2f\x73\x1a\x3b\x67\x4a\x78\x21\xf5\x94\xfe\xc1\x98\x6f\x3a\x77\x21\xba\x83\x1d\x86\x9a\xbd\xde\xff\xd4\xef\xfa\x7a\xa4\x9b\xbb\x7d\x6a\xbc\x33\x77\xbb\x10\x34\xdb\xb9\x15\xbd\x5f\xae\xcf\xfb\x55\x23\x7c\xd5\x08\x35\xb6\x99\x43\x5d\x08\x1a\x53\xf2\x48\x7f\x4f\xfa\x45\x3e\x47\xf3\xa0\x0b\xd1\x4e\x9a\x7d\x4c\xfb\x40\xb3\x30\xe7\xf9\x36\xc1\xf9\x24\x67\xfc\x36\xc1\xb9\x10\xed\x98\x9b\x47\x3f\x10\x34\xc6\xec\xd1\x0f\xa4\xee\xc5\x11\x13\x6f\x0b\xf1\x3e\x9e\x35\x32\x15\x48\x5d\xbf\xb5\x49\x8d\x85\xd4\xb3\x4b\xa8\xbf\xd2\x04\xc6\x93\xcc\xfc\xdb\xf4\xc1\x42\xd0\xe8\x57\x89\xdc\xbc\xc0\x3d\xcb\x03\x8f\x38\xf3\x02\xcf\xc1\xaf\xd3\x1c\xc0\x42\xd0\x68\xa7\x44\x6e\x6e\xdf\x9e\x1d\x9f\x46\x7f\x13\xe5\x76\x0d\x8e\x5b\x09\x15\x48\x3d\x23\xf5\x9b\xd1\x54\x48\x3d\x73\x4c\x99\x95\x54\x88\x3e\x1a\xb4\x5b\xda\x19\x4b\xf4\xb1\x95\x28\xb7\x39\x19\x28\x27\xb0\xb7\x47\xc3\xf6\x68\xa0\x74\xc0\xde\x7e\xde\xdb\x4b\x81\xd4\x52\xde\xdb\x8b\x37\x40\xb4\x63\x7c\x8a\x78\xdb\x4b\x81\x14\xdc\xda\x9b\xfc\x43\x42\xd0\x18\xb3\x06\xf4\x6d\x74\xb8\x61\x88\x5b\x31\x68\x6b\xe5\xf1\x2e\xf4\xd6\x57\x07\x04\x8d\xf7\x69\xbd\xd9\x16\x92\xf2\x46\xc0\xd6\x08\xbe\x15\x83\xc6\xa1\xd9\xaf\xf9\x17\xf4\xd9\x6e\x43\xa5\xb6\xf7\xa3\x0b\xc7\xfc\xd6\x3a\x02\xa4\x4e\x01\xe8\x6d\x0a\x53\x21\x75\x2a\xa5\xef\xad\x28\xb3\x15\x65\xc8\x3f\xb3\xcd\xcd\x29\xa4\x4e\xad\x8f\x6d\x5a\x4b\x21\xda\xc1\x2b\x43\x91\xfe\x52\x43\xf2\xcb\x31\x35\xa4\x90\xc6\x99\x87\x9a\xbc\x39\x1f\xa7\x77\xba\xcd\xef\xb8\x4f\xee\x45\x52\xa6\x6d\x73\x2f\x0a\x69\x0e\xf7\x81\xa1\x8e\x66\x55\x9c\x84\x5d\x7e\x05\x07\xce\xe7\x05\xac\x41\x9d\xed\xcf\x8b\x55\x42\x9a\x63\xd1\x0e\xc3\xa4\x10\x34\xda\x21\x0e\x0b\x69\xce\x58\xdf\xaf\x60\x15\x14\xd2\xc4\xd2\xf0\x15\x8e\xd6\xaf\x78\xb4\xa2\xa1\x7f\x5c\x8b\x09\xe0\x62\x1a\xdf\xdb\xe7\x0d\x17\x21\x0d\xc2\x51\x3f\x6f\x72\x08\x69\x60\x15\xfc\x0a\x1a\xdc\xe7\x0d\x8d\x31\x26\xfd\x7e\x3e\xeb\x25\xb9\x11\xfb\xea\xab\x7c\x0b\x9f\xb7\x31\x06\x56\xb2\xaf\xf2\xdb\x10\xd2\x20\xac\xf1\xf3\xc6\xc2\x57\xab\x17\xfb\xe2\xfb\xf8\xbc\xb1\x20\x04\x6d\x40\xeb\xd2\xbc\x38\x17\xbf\xb5\xcf\x5b\x0c\x5f\xad\x5e\xf6\x1b\xf4\x81\xf8\x2f\x04\xad\x42\xb3\xdf\xea\x05\xc0\xf8\x8e\x3e\x6f\x36\x7c\xb5\xd9\xef\xe0\x7d\xcd\x7e\x9b\x7d\x4c\xc6\xc2\x2f\x42\x88\x31\x33\x16\xc4\x7f\x21\xda\xf9\xac\xfd\x36\xe7\x1b\x62\xdf\x57\x51\x09\xbe\xda\xbc\xb0\x27\x5f\xb0\x5a\x7e\xde\x8a\x18\xc4\xde\x7c\xde\x8a\xf8\x2a\x79\x47\x06\x71\x36\x1f\xd7\x21\x0e\x04\x8d\x79\x74\xdf\x87\xe5\x71\xe4\x1f\x63\xc1\x21\x24\x44\xbf\x8c\x05\x6b\xa4\x90\x06\xb1\x37\x9f\x37\x20\x84\x34\x66\x93\xe6\xdc\x86\x73\x6b\x8c\x6f\xc8\x53\xfe\x29\x23\x27\xde\x37\x1c\x0b\xea\xc4\x98\x21\xaa\x7e\x75\x38\x5f\x53\x0b\xcf\x06\xaf\x86\xe3\x1b\x96\x3a\x61\x0f\xd5\x29\x9f\x2d\x0b\x9d\x33\x63\xc6\xf2\x28\xc4\xb3\xcc\x6d\x3a\x3e\xfe\x47\x23\x17\xc6\x32\x1d\xcb\x74\x2c\x85\xfd\x32\xed\xd7\x0b\xb7\xb9\xc0\xe7\xe9\xfa\x62\x3d\x1c\xa4\xe3\xf9\xbc\x79\x21\x44\x1f\x3c\xbb\x9c\xef\xf2\x7d\xf2\x60\xf9\x3e\x2f\xe1\x66\xc7\xb2\xe4\xe9\x72\x1e\x7c\xab\x5c\xc3\x08\x70\x8d\xfe\x21\x1d\xee\x57\x2f\xbb\xbb\x0e\x7b\x7d\x8d\xac\xe4\x08\x19\x84\xfa\x7c\xf5\x72\xf8\x97\xcb\x3a\x60\xef\xe5\x12\xea\xf7\xca\x6e\x63\x8c\x77\x42\xbc\x8f\xa5\xb9\x65\x25\x47\xcd\xe0\xc2\xd9\x57\x6f\xfb\xe5\xa8\x19\x79\xf2\xbe\xdb\x2d\x6b\x99\x04\x7e\x11\x9f\x17\x42\x84\x34\x30\x5c\x7d\xf5\xf1\x7d\xf8\xbd\x06\x39\x00\xbe\xfa\xf8\x3e\x0c\x6b\x83\x1c\x00\x5f\x7d\x5c\x6a\x7e\xc5\x83\x5a\x90\x5f\x7d\x7d\xdf\xeb\xb3\x8e\xf9\xf5\xd9\x57\x1e\x4c\xdb\xc9\x83\xd7\xf7\x39\xbe\xd7\x65\x40\xdb\x18\x84\x27\x7d\xdc\x18\x09\x70\x6b\x4f\xdf\x27\x5f\x5e\xb7\xf6\x82\xb6\xdd\x62\x54\xe3\x1d\x44\x23\x7f\x75\xcb\x2b\xef\x0b\xcf\x09\xef\xb7\x73\xc3\xb7\x36\xb2\x9f\xde\x76\x59\xb7\x9f\x05\xc7\x59\xdd\x7e\x8e\xdb\xad\xb8\x7c\xd6\xe3\x67\x5b\x73\xd4\x4f\x7e\x3b\x37\xef\x1a\x53\xe9\xf3\xe3\xa6\xca\x81\x34\x88\x82\xfe\xea\xe7\x58\xd0\x72\x06\x97\xf3\xbe\xfa\x39\x96\xcf\x4f\xc0\xb1\x7c\x6e\x77\xef\x1f\x4f\x8e\xf9\xea\xd1\x5a\x3d\x5a\xc9\x47\xf0\xd5\xcf\xed\xf9\x99\xcd\x8a\xa3\xa1\xe1\x6f\xfb\x9a\x77\x8d\x31\x5c\x7d\xcd\xdf\x0b\x10\xb4\x09\xad\x49\x63\x6e\x8b\xa3\xa1\xa1\x35\x7d\x2d\xf9\x6c\x88\x7d\x5f\x4b\x3e\xcb\xe5\x94\x41\x64\xf4\xd7\xd0\x7c\xbe\x96\xac\xa0\x1e\x62\xc1\xd7\xf0\xb7\x7d\xcd\x5a\xac\xab\xd0\x2f\xe2\x88\x90\x06\x89\xf6\xbf\x56\x7c\x1f\x62\xc6\x20\x7f\xc0\xd7\x8a\xed\xd0\x2c\x06\x69\x71\xbe\xe6\x2f\xa2\xf9\x8b\xe8\xbe\x8f\xc8\x6d\x21\x0d\xb4\xe2\xaf\x35\xdf\x87\x73\x6a\x90\xc6\xe6\x6b\x88\x28\x42\x1a\x68\xa7\x1f\xd7\x49\x02\x2e\x69\x3e\xeb\xfb\x9a\xef\xe3\x1b\x6c\x1e\xc1\x40\x1a\x7d\x34\x68\xb7\x34\xc7\xc7\xef\xcf\x9b\x21\x42\xd0\xe2\xd9\x4e\x58\x8f\x90\x26\xda\xe9\x67\xc4\xb3\x90\xe6\x8f\x63\xa5\xfb\x9d\x1b\xc9\x3c\x7f\xf4\xdb\x31\xd2\x0b\x69\xa2\x85\x7d\xc3\xfd\x37\xac\xf3\x40\x8d\xc3\x6f\x60\xd8\x15\x52\xa5\x60\xe0\x37\x28\xd3\xf8\x19\x32\x57\xc9\xb4\xfe\x19\x32\xf7\x0d\x2f\x64\x92\xf3\xe0\xbb\xd0\x76\x05\x2a\x44\x7f\x17\x57\x99\x84\xf5\x63\x33\x2b\x2f\x0a\x44\xe3\x7e\x4a\x8b\x02\xba\xc5\xb7\x5d\xc4\x6d\xfe\x4a\xe4\x9f\x4f\xf9\x51\x08\x5a\x83\xd6\xa4\x31\x81\x1f\x94\x21\xc5\xb4\x94\x50\x96\x14\xd2\xd4\x4d\x28\xb7\x14\xef\xd8\x42\x79\xa5\x78\xc5\x08\x0a\xdb\x6d\x53\x21\x8e\xf3\x7b\x57\x47\x79\x62\xd2\xa0\x38\x4a\xa3\x6f\x79\x73\xb5\x2f\x3c\xa3\xb0\x73\x2b\x25\xec\xfa\xfc\xdf\xff\x64\x3e\xc8\xad\x8c\xf0\xff\xc9\x3a\x63\xdd\x86\x61\x18\x88\xee\xfd\x0a\xff\x41\x2d\x59\x4e\xd2\x25\x4b\xe7\xf6\x1f\x5c\x9b\x07\x64\x48\x62\xb8\xc9\xff\x17\xbc\xe7\xa5\xed\x10\x5c\x70\xb0\x4d\x26\xa2\x44\x0a\xa0\xce\x91\x41\xe6\x96\x02\x45\xdb\x6d\x89\x5f\x66\xfb\x54\x0d\x06\xf7\x27\x2b\xbc\xd5\x04\x2c\x62\xaf\xa0\x8a\x08\x57\x0c\x85\xbb\xb0\xef\x80\x73\x58\xc6\xc8\xb3\xb3\x18\xa8\xbd\xff\xb3\x03\xcf\xc9\x1a\x80\xcc\x19\x54\x00\x91\xe1\x47\xa2\x40\x4e\x17\x28\x3d\x4c\x85\x71\xa3\xbe\x1b\xcd\x25\xa6\xbd\x98\xf6\xcd\x4c\x83\x69\xe7\xae\x3a\x6d\x88\x65\xc0\xe0\x13\xce\x42\x82\x17\xf0\x71\x79\x21\xc0\x0b\xe4\xb3\x8b\xb9\x13\x9c\xb5\x25\xf1\x60\x82\x61\x82\x99\xf9\x82\x49\xbf\x77\x2f\x67\x18\xbf\x78\xb3\x37\xb3\xc0\x2c\x79\x0d\x1e\x05\x4c\x58\x8a\xdd\x8c\x60\x94\x5e\x67\x20\x5b\xa9\x37\xe1\xed\xdc\x0d\x5e\x2e\x50\xc9\x05\x8a\x17\x3d\x34\x72\x81\xd2\xff\x95\xb9\x3d\xfd\x4b\xd2\xe8\xe7\x02\xd5\xe3\xa7\x82\x6f\x09\xde\xeb\x09\x3d\x5d\xc0\x1d\xca\x12\xcb\x9e\xc1\xc7\x9b\x84\xbe\x2e\x50\x9d\x22\x55\x19\xad\x8c\xf0\x01\x86\x08\x37\x94\xe1\xe8\xd8\xd4\x80\xfd\x84\xba\x33\xd8\xe7\xcd\xcb\x47\xc6\x6b\xc0\x03\xcf\x84\xe1\xd8\xb8\x0e\x1f\xdc\x5e\xe0\x24\x25\xe6\x82\x55\x3e\xdd\x01\x2a\x34\x3e\x01\xef\xf1\x85\xc2\x27\x50\xaa\xc7\x62\xc4\xde\xc8\x5b\x6f\x92\x39\x10\x2f\xde\x9b\x15\x33\xa4\x53\x43\x69\xbd\xab\x4c\x91\x3a\xc5\x19\xce\x7e\xfc\x2d\x4d\x90\xdf\xaf\xd3\xfa\xf2\xfe\x31\xad\x9f\xd3\x35\xba\xf9\xb9\x6d\x71\x7b\x2c\x97\xf9\xd1\xbd\x26\xdb\x2d\xa1\xcb\x2d\xb6\xf8\xbe\x3f\xb7\x39\xba\xf5\xbe\xe6\x5d\xfe\xfc\x04\x00\x00\xff\xff\xf7\x76\x22\x71\x01\xf2\x04\x00"); -func _gdbg ()([]byte ,error ){return _dc (_dcfg ,"UniJIS-UTF16-V")};func _gcb ()(*asset ,error ){_bgac ,_dcfb :=_acfg ();if _dcfb !=nil {return nil ,_dcfb ;};_edae :=bindataFileInfo {_ag :"CNS1-V",_bc :620,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491540,0)}; -_fabf :=&asset {_cd :_bgac ,_dce :_edae };return _fabf ,nil ;};func _affc ()(*asset ,error ){_gege ,_ffac :=_agcg ();if _ffac !=nil {return nil ,_ffac ;};_gdcc :=bindataFileInfo {_ag :"GB-EUC-H",_bc :2187,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491958,0)}; -_aefb :=&asset {_cd :_gege ,_dce :_gdcc };return _aefb ,nil ;};var _aefa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\xcd\xae\x2e\xbb\x8d\xa6\x39\x3f\x57\xb1\x87\xdd\x83\x6c\x87\xfe\x25\xc0\x30\xd0\xc8\x86\x81\x44\x22\xbb\x0a\xe9\xfa\x19\x26\x24\x51\x72\x19\x28\x1f\x1b\xc7\xce\x41\xde\x7d\x61\xf1\x79\x97\xbd\xa2\x50\xd8\x7b\xf4\x41\xf1\x45\x88\x14\x15\x41\x52\x14\x5f\xea\x57\xff\xf8\x4f\xff\xdf\x3f\xfd\xfc\x87\xbf\x7e\xfb\xd5\x7f\xfe\xe5\x4f\xfb\x77\xe7\xaf\xdf\xee\x1f\x7e\xb6\x5f\xce\x5f\xfe\xf4\xef\xbf\xec\xf3\x6d\x9d\xdf\xff\xe1\xe7\x9f\x7e\x0a\xf1\x9b\xfd\x61\xff\xf5\xb3\xe9\x3f\xfb\x8f\xf3\xcf\x3f\xfd\xf4\xf1\xfc\xef\xfe\xe3\x2f\x7f\x3d\x7f\xfc\xa7\x9f\xef\x9f\xbe\x25\xee\xb3\x7f\xff\xb3\xee\xfd\xf6\xed\x57\xff\x7a\x7e\xff\x87\xbf\xfc\xf5\x97\xff\xf8\xf6\x7f\xfd\xbf\xf6\xa7\x75\xfe\xef\x6f\x76\xee\xc7\xf5\xff\xf4\x8b\x9d\x5f\xfe\xf0\xf3\xef\x75\xfd\xdf\xfe\xf9\x5f\xff\xed\xbf\xfe\xe3\xef\xe2\xdf\xfe\xff\xdd\xbf\xff\xf9\xcf\xff\xf3\xfc\xf1\xfc\xfc\xd7\x6f\xc3\xaf\x9d\x9f\xcd\x7f\x7f\xfa\xd5\x3f\xfe\xcb\xfc\xf3\xff\x3f\xff\x78\xbe\xfd\xca\x1f\xfd\x87\x7f\xfe\xd7\x7f\xf8\x78\xd4\xff\xf5\x3f\xff\xdb\xf9\xe5\x2f\x7f\xf8\xd3\xcf\xdf\xc2\xff\xf3\x3c\xe1\xef\x97\xff\xcb\x7f\xfc\xf9\x7c\x8b\xea\xe4\xbf\xff\xcb\x9f\xec\x7c\x7b\x68\x05\xf8\xdd\x7f\xb2\xf3\x97\x3f\xcf\x7d\x7e\x99\x3f\xff\xfe\xfc\xf4\xed\xdb\xaf\x9f\xe7\x79\x7e\xf3\xed\xd7\xbf\xfd\xed\x6f\x7f\xfb\x9b\x0f\x0e\xfe\xb7\x3b\x7e\x0a\xcf\xc3\xa3\xeb\xee\xff\x31\x7f\xf9\xe9\xf3\x81\x7b\xaf\xfd\xe6\xa3\x55\xf3\x6f\x3e\x7a\x99\x83\x56\xa1\x75\x68\x4d\x6f\x59\xa3\xb5\xbc\x75\x69\xf5\x8f\xe7\xe2\x93\x16\xad\xe2\x2d\xf5\xd2\x2b\xad\x4d\xab\x7d\xb4\xc2\x93\x68\x75\x5a\xba\x73\x78\x2b\x46\x6f\x0d\xef\x33\x06\xb5\xbc\xcf\x58\x1f\x5a\xfe\x5c\x99\x81\x96\x3f\x57\x36\xd4\xc7\xf4\xd6\xa9\xb4\x3e\xf8\x8c\x2d\x43\xdd\xee\x6f\xbe\xfd\x7a\xee\x27\x7b\xeb\x46\x6f\x45\xfa\xbc\xdb\x5b\x89\x3b\xaf\x79\x2b\xeb\xbf\x43\x0b\x0a\x97\x5e\xb2\xcb\x2c\xb8\x04\xe7\x2e\x99\x56\xa0\xd5\x69\x41\xa1\x6c\x5a\xc9\x5b\xb5\xd0\xaa\xde\x6a\x7a\x6e\xd0\x9a\xde\x0a\xfc\x37\x1e\x5a\x8d\x16\x77\x46\xe8\x21\xcf\x10\x79\x6e\x5d\x5a\xd3\x5b\x3b\xd0\x5a\xb4\xf4\x1c\xe3\xdb\x70\x16\x19\xdf\x56\x2f\x8c\xcf\xe0\x2c\xc1\xe7\xe1\xb9\x04\x2f\x07\xce\x12\xbc\x1c\x9e\x4b\x50\xb8\x89\x16\xbd\x5c\x9f\xcd\x90\x5d\x12\xf6\x30\x86\x1c\x69\xd1\x67\x4e\xb4\x2a\x2d\xe7\xda\x02\x9c\xe5\x45\x0b\x0a\xd9\xb9\xb6\xa8\x5e\x8c\x56\xa4\x75\x68\x41\xaf\xd0\x67\xa2\x97\x92\x69\xd1\x4b\x71\xae\x2d\x37\x5a\x9d\x96\x9e\x73\x09\x5a\x81\x42\x81\x17\xcd\x66\x81\x17\xcd\x66\x81\x5e\x65\xb4\xe5\xd2\x42\x66\x95\xf1\x35\x7a\xa9\xf4\xd2\x98\x95\xe6\x33\x66\x1d\x5e\x1a\x72\xd1\xdc\x36\xf8\x9c\xd0\x6b\xf0\xa2\x19\x6b\xf4\xa2\x19\x6b\x8c\xdd\xa0\xde\xe0\x45\x33\xd6\xe0\xc5\xa0\xd0\xa1\x77\xa0\xd0\xa1\xa7\xd9\xf4\xaf\x71\xda\xd5\x9d\xde\xcb\x79\x16\xad\x4b\x8b\xf7\x7a\x3c\xb4\x18\xc3\xf0\x5e\x4e\xe0\xcd\xf2\x6f\x73\x1e\xcd\x98\x7f\x9b\xf3\x68\x1e\xfc\xdb\x9c\x27\x41\xcf\xbf\xbf\x79\x12\x6f\xcf\x74\x29\x9d\xac\x96\xf3\x72\x24\xf9\xd9\x68\xf1\xdc\xa4\x97\xc2\x1b\x32\xe1\x53\xb2\x5e\xf0\x52\x19\xc3\xe2\xbf\x49\x2f\x8b\x31\x48\x9e\xdb\xdf\x89\xb3\xf9\x6f\xc3\xb5\xa4\xbb\x5d\xba\x47\xf2\xdc\xf0\x29\x79\x6e\xfa\x94\x3c\x37\x7d\x1e\x46\x6b\xc8\xe5\x20\x33\x83\x97\x83\xcc\x8c\xf1\x5d\x28\x18\xd4\xaf\x9e\x83\xfa\x87\xe4\xcf\xcf\x26\x0d\xfc\x7f\x50\xc9\xc1\x7c\xe8\x57\xd3\x60\xfe\x4a\xdc\xc0\x10\xcc\x3f\x87\x9b\x68\x9d\x48\x8b\x29\x3a\x2e\xce\x9b\x19\xc2\xe1\x39\x14\x5f\x38\x3e\xd8\x2b\x51\x1f\x1f\xd0\xad\x30\x86\x1a\xbc\x9d\xff\x6e\xa2\xc5\x10\x6e\xa6\xa5\x3b\x7d\x8a\xee\x80\xc2\x85\xcf\x01\x85\xeb\x02\xbc\x4b\x2d\xf8\x44\xf0\x11\x15\x79\x51\xd0\xf1\xa1\x4f\xcb\xb4\x0a\xad\x4e\x8b\x31\x20\xf8\xf8\xd0\xe7\xd5\x9d\xf4\x79\x75\xe7\xc7\x18\xd6\x83\x42\x89\xe1\xa1\xc5\x73\x21\x78\x0b\x99\x7d\x58\x10\x6f\xe9\xce\xe2\xad\x48\x2f\xae\x68\xd7\x93\x74\x67\xa3\xa5\x5e\xa6\xb7\xb2\xee\x5c\xb4\x26\xad\x4d\x4b\x77\x1a\x2d\x37\x94\x31\x42\xbd\x34\x5a\x50\x2f\x83\x56\xa2\x65\xb4\xb2\xb7\x30\x6a\x31\xc2\x59\x85\xcf\xd8\xbd\xd5\xf5\xdf\xa0\xc5\x7f\x89\x3e\x91\x7c\x74\xb5\xbb\x9e\xe5\x9f\x66\xcc\xfc\xb7\xe0\x3a\xc3\xa7\x64\x5d\xe0\xec\x24\x5a\xdc\x79\x0a\x2d\x38\x43\xb1\xc7\xea\x72\x09\x92\x52\x75\x0a\x1f\xfa\xfd\xa3\xe5\x0a\x6c\x85\x4c\x9f\xcd\xf9\x0c\xa8\xc8\xe8\x0a\x6c\x05\x0c\x5e\x74\x05\xb6\x82\xc6\xd7\x5c\x82\x1f\xfa\xcf\x5b\xf4\xd9\xb8\xd3\x1d\x88\x15\x3a\x6f\x88\x3b\x10\x2b\x74\xa4\xd4\xe9\x65\x40\xa1\xd3\x8b\xc6\xde\x7d\x7c\x61\x32\x86\x6e\xb4\x74\x27\x14\x16\xd4\x5d\xb9\xad\xc0\xc7\x1f\x87\x8f\xfd\xe3\x5b\xf6\x56\xa2\xa5\xff\x18\xbb\x5d\x5a\xfe\x4e\x84\x03\xd7\x03\x5e\x24\xa5\x01\x2f\x57\xbd\x40\xef\x32\x86\x01\x3d\x1c\xab\xe8\x8a\x6f\xc5\x07\xce\x5c\xb9\xad\x8f\xd7\xcd\x5b\x83\x16\x6f\xc8\x9c\xb4\xf4\x9c\x53\x88\x98\xbf\x38\x7d\xb4\x11\xd5\x1a\xa7\xd1\x82\x17\x57\x91\x2b\x6a\x1e\xe6\xa5\xc5\x7f\xcb\xbf\x0e\x39\x4f\x71\x41\xaf\x43\x6f\xd1\x27\xce\x45\x74\x85\xb9\xe2\xe4\x0d\xd9\xf0\x22\x09\x6e\x78\x59\xba\x93\xe7\xf8\xde\xe3\x86\x17\xdc\x90\xb8\xe1\x05\x37\x24\xba\x8a\x5c\x11\x57\x23\xba\x1a\x5c\xd1\x22\xad\x46\x0b\x99\x19\xf4\x30\x5c\x1f\x17\xbd\xa5\x3b\x19\x11\x4a\x38\x1e\xe8\x49\xba\xd7\x29\x24\xe9\x02\xd7\x67\x2b\x49\xd6\xd7\x47\x9b\x70\x27\xe2\x75\x0a\x49\xf2\x74\x9d\xb5\x52\x0a\x3f\x50\xc9\xd1\x3d\xbe\x95\x10\x6e\x72\x25\xb5\x52\x6d\xb4\x1a\xad\x41\xab\xd3\x5a\xb4\x9c\xcd\x84\x8f\x97\x9e\x43\x8b\x5e\x82\x0b\x22\xe1\x15\x24\xd4\x52\xc2\x2b\x48\xa8\xa5\xc4\xa4\xa4\xc0\x10\xa6\x9e\x63\x08\x53\xcf\x41\x01\x1f\x21\xb9\x6f\xb8\xd2\x3e\xb4\x10\x0b\x2f\x79\x42\xd9\x24\xfc\xf7\x84\xb2\x49\x06\xd7\x11\x7a\x4c\x43\x8a\x8c\xc8\x8c\x16\x23\x3a\xea\x05\x5e\xf0\x26\x52\x84\x97\x23\xea\x88\x13\xdf\x22\xb9\x4f\xb9\x72\xd0\x7f\x97\x16\xff\x25\xe7\x33\x33\x0d\xc9\x3d\xcc\x95\x79\xad\x53\x72\x0a\xb9\xa8\xb5\x69\x4d\x5a\xf4\x82\x07\x96\x32\xbd\xe0\x15\x24\xf7\x37\x57\xc6\x2b\x48\xa8\xc1\x8c\xfa\x4c\xee\x6f\xae\x8c\x19\x4b\xd9\x25\x91\x07\x63\xcf\x85\x16\xa3\xcd\xf0\x82\xff\x90\x72\xa3\xa5\xe7\x3a\x2d\x51\x80\xcf\x25\xea\x3e\x0f\x79\x8b\x1e\x63\xdf\xea\x05\xae\x35\x47\x05\xae\x35\x2b\xa8\xe4\x8c\xdf\x91\x0a\x9c\x49\xd6\x85\xb1\x9f\x4b\x0b\x0a\x37\xd0\x82\xc2\x55\x9f\x50\x90\xe4\xab\x53\x28\x78\xde\xa9\xfa\xd8\x8b\xe6\xa1\x7a\x2f\x25\xf2\x86\xa0\xca\x8b\x24\xdf\x9c\x5e\xc1\x49\x48\x8d\x3b\x35\x0f\x9d\x5e\xba\x5a\x99\x16\x7d\xa2\xae\x8b\xde\x56\xf7\x30\x57\x91\x74\x7d\x4d\xb7\x8a\xe4\x89\x2a\x2f\x92\xe7\xe0\x39\xc9\x0c\xb5\x5b\x24\xb3\x01\x2f\xa6\x3b\xe1\x05\xb5\x9b\xa6\x8f\xaf\x62\xd0\xd3\x0c\xb4\xb8\x73\x3a\x67\x35\xf2\x86\xcc\x42\x0b\xe9\xa2\x76\x2b\xc6\x3e\xa1\x76\xab\xc6\x8e\x6a\xad\x45\x14\x9c\x5e\xad\xfa\xef\xd0\x82\xc2\x82\x1e\xfe\x66\x5a\x91\x16\x77\xae\x44\x8b\x6f\x6c\x55\x5a\xcc\xdf\xf2\x77\xa9\x62\xa6\xd3\x82\x97\xa5\x3e\xe1\xc5\xd4\x8b\x4b\xa9\x5e\x51\x58\xb4\xf4\x1f\x7c\x6a\xde\xb7\xf3\xd2\x70\x7b\x92\xfb\xb7\xab\x45\xb5\x9c\x5e\x4b\x48\x02\x55\xde\x58\xa1\x27\xf7\x68\x57\xc3\xb5\x49\xee\xd1\x2e\xad\x91\x93\xb9\xcc\x9a\xc6\x6e\x95\x96\xee\x74\x3e\x5b\xa3\x4f\xd4\x75\x6b\x48\xd7\x5c\x66\x4d\x5f\xdc\xe1\x3f\xcc\x74\x42\x25\x37\x0c\x49\x72\x17\x73\xb5\x15\x69\x41\x41\x92\xb8\x70\xbd\xcb\x0f\x54\x72\x72\xef\x73\xb5\x8d\xa8\xd1\xf2\x6d\xf3\xd2\xa1\xe5\x9b\x3e\x31\xb4\x7c\x93\x70\x7d\x29\xbf\x9a\x84\x8b\x62\x6f\xd7\x59\xc9\x8f\x3f\xd7\x11\x67\x76\xef\x73\x75\xbc\xc8\x1c\x9c\xe9\x8e\x47\x94\xf1\x06\x7b\xd6\x7f\x9b\x56\xa6\xe5\x82\xe8\x25\xd0\x3a\xb4\x5c\x64\x19\x95\xdc\xb1\xc4\x19\xb5\xdb\xeb\xa5\xe5\x43\xef\xf8\x47\x19\xd5\xda\xf1\x8f\x32\xaa\xb5\xe3\x11\xe5\x08\x3d\x3e\xb8\x1c\xa1\xc7\x47\x95\x51\xbb\x7d\x89\xc2\xa5\xc5\x9d\xa8\xdd\x8e\xa8\x73\x62\x44\x1b\xce\x52\xa6\x55\x68\x15\x5a\x50\x47\x41\x77\xe4\x99\x13\x7c\x9a\xfa\xec\xb4\xe0\x0c\xe5\xdd\xf1\x9d\x72\x62\x0c\xf8\x4e\x39\xc1\xe7\x51\x9f\xf0\xc9\x3c\x64\x94\x77\xc7\x77\xca\x28\xef\x8e\x75\xcf\x28\xef\x81\x75\xcf\x28\xef\x81\x75\xcf\x28\xef\x11\xd4\x72\x3e\x47\x54\x9f\x8d\x96\x9e\x73\x5e\x86\x66\xcc\x83\x0c\x6b\x68\xc6\xf0\x92\x07\x1f\x40\x46\x95\x8f\xcc\x18\x50\xe5\x43\xb3\x89\xba\x1e\xa8\x89\x8c\x07\x3d\x34\x9b\x05\x5e\x30\xfd\xb9\xc0\x4b\x65\x0c\x1e\x64\x58\x03\xd3\x9f\x0b\xbc\x68\x6e\x51\xec\xa3\xfb\x9b\x9c\x2b\xe3\xd3\xdc\x56\xc6\xa0\xd9\xac\x9d\x96\xfe\x83\xb3\xed\x4b\xe4\x8c\x2a\x1f\x9a\xb1\xc6\x73\x9a\x23\xd4\xf5\xc0\x4c\x67\xfc\xe2\x21\xe9\xfa\xc2\x7e\x4d\x49\x17\xbf\x78\x4a\xba\xf8\xc5\x53\x5f\x80\x2f\xfa\xd7\x0c\xbc\x21\xf8\xc5\x13\xef\x33\xfb\xa2\x7f\x4d\x49\xd7\x03\x72\x6b\x66\xbe\xaa\x49\x2f\x38\x4f\x19\x8f\x76\x4a\x4a\xa8\xd6\x89\x83\x94\x17\x14\x24\x89\x55\x68\x41\x01\x65\x3a\x71\x90\x32\x8a\x6f\x2e\x7a\xd9\x70\xbd\x18\x11\x3e\xec\xc4\x90\x64\x94\xe2\xc4\xf8\x66\x94\xe2\x3c\xea\x05\xae\xaf\xee\x84\x6b\x8c\x68\x46\x61\xae\x47\x77\x2e\x5a\xba\xf3\xd0\xe2\x0d\x41\x99\x2e\x42\x23\x19\x65\xba\xf4\x46\xe2\xfb\x2e\xdc\x9e\xec\xe1\x81\xb5\xf4\x7e\x7a\x78\x60\x2d\xc2\x26\x19\xbf\x78\x45\x46\xe4\x31\x80\xb5\x92\x7a\x81\x02\xe1\xab\x0f\xef\xc0\x5b\x3c\x77\xa0\x40\x30\x32\x1f\x7a\xc1\x68\xe7\x53\x68\xd1\x8b\xc7\x07\xd6\xaa\xf0\x89\x82\x5e\xb8\x4b\xf9\x30\xbe\xae\x3b\x37\xad\x49\xcb\x68\xfd\x28\x70\x91\x0f\x62\xd1\x14\x1d\x98\xc6\x0f\xc8\x17\xa6\x07\xc3\xc3\x61\x5f\x58\xcd\x8c\x75\x58\x52\x60\x58\x87\x85\x97\x95\x2f\x03\xd2\x2b\x7f\x19\xd0\x42\x10\x58\x8e\xb5\x44\xc1\xa7\x6f\x69\xda\x31\x01\x4b\xd3\x7e\x19\x02\xb1\x9e\x8c\x09\x58\xf8\x5c\x19\x13\xb0\x08\x39\x94\x07\x3e\x79\x41\xca\x03\x9f\x44\x77\xca\x03\x9f\x78\x60\xe5\x81\x97\xab\xe7\x7c\xc2\xf6\x13\x69\x1d\x5a\x97\x96\x53\xd8\xbc\x20\x05\x1f\x7d\x33\xd1\x05\x83\xb0\x23\x14\xf0\xca\x37\x3e\x49\x41\xb1\x6f\x26\xba\xa0\xbc\x37\xde\x59\x41\x79\xef\x02\x05\x94\xf7\x66\x6a\x0b\x0a\x7a\x33\x99\x05\x25\xbc\xbb\x7b\x7c\x05\x45\xbb\xf1\x76\x0b\xea\x73\x33\x0f\x05\x3f\x75\xe3\x8f\x15\xfc\x54\x45\x8f\x0b\xea\x6c\x23\xc1\x52\xa0\x80\x04\x4b\x61\xec\xf8\x6a\x05\x55\xb7\x25\x4f\x94\xdb\xc6\x5f\x29\xbe\xa3\xb0\xec\x69\xb4\x2a\x2d\xc6\x87\xaa\x33\x94\x4d\x41\xd5\x19\x3e\x5e\xa9\xfe\x42\x1a\x9e\x4d\xc1\x87\x35\x94\x4d\xf1\xe8\xea\x32\x94\x77\x41\x0d\x2a\x9a\x5b\x3c\xba\xba\xac\xe8\x3f\xa8\xe3\xd9\x94\x06\x75\x3c\x9b\x82\xc2\xb4\xa6\xff\x5c\x66\x86\xb7\x5b\x3a\xbc\xe0\xf1\x15\x3c\x5a\x45\x6c\x0b\x1e\xad\x4d\xe4\x49\x70\xc2\x96\xee\x84\xeb\xa5\x3b\xe1\x1a\xe3\x5b\x50\xc2\xc6\x12\xb9\xa0\x84\x4d\x12\x44\x09\x2b\x9a\x5b\x50\xc2\x46\x98\xa6\xa0\x84\xed\x20\x33\x3c\x68\xc3\x88\x16\x3c\x68\x43\x9d\x15\x14\xb4\x49\xf2\x04\x2e\x0e\xfb\x2e\x85\xc0\xc5\x79\xd4\xa7\xf3\x72\x24\x79\xd4\xf5\x09\xbc\x59\xf8\xd3\x27\xc2\xa7\xc7\x68\xd7\x49\xba\xb3\xd3\x62\xec\x28\xf6\x83\x4f\x59\x50\xec\x87\x90\x58\xc1\xdb\x3d\x92\xfc\x76\x3e\x0f\x9e\x62\x41\x25\x1f\xc9\x1a\x65\x7a\xf0\x1b\x0b\xca\xf4\xa0\x19\x0a\x0a\xf3\x60\xd4\x0a\xa1\x83\xa3\x2f\x95\x60\xc1\x39\x7a\xce\x25\x7f\x24\x17\x3c\xd3\xfb\x30\x06\xd4\xe7\xc5\xc9\x2b\xc7\x39\xbb\x38\x02\xc5\x83\xa6\xeb\x6a\x0c\xa8\xc1\x8b\xeb\x56\x50\x83\xb7\x20\x33\x74\xdd\xc5\x4c\x17\xf4\xd9\xc5\x79\x2a\xe8\xac\x8b\xbb\x54\xd0\x4b\x17\x97\xa8\xa0\x97\x2e\x2e\x51\x71\xd7\x74\x3f\x51\x77\x6e\x6f\x61\x52\x8b\xeb\xac\xfd\x14\xdd\x79\x68\xc1\x99\xeb\xac\xfd\x94\x1f\xa9\xe4\xea\xea\x6c\x2b\xc2\x58\x7d\x03\x6a\x3f\xf8\x24\xd5\xc3\x18\xfb\x61\x08\xd5\xc3\x18\xfb\x21\xca\x56\xdd\x13\xde\x0f\x71\xa0\xfa\xc0\x26\x51\xb6\x1a\x60\x0c\x4f\xa3\x46\x9e\xc3\xb7\xa8\x1e\x2c\xd8\x8a\x22\xd6\xc8\x73\x6c\x12\xd6\xc8\xf0\xd8\x1e\xaa\x91\x5e\xae\xbf\x20\xd5\x95\xdb\x0e\xd8\xd7\x9a\x02\x2d\xfa\xf4\x68\xe7\x0e\xbc\x9e\xd5\x15\xdf\x0e\x78\x21\x35\xf3\x5f\xaa\xb4\x0a\x2d\xa8\xbb\x1f\xb7\x03\x02\xac\x05\x0a\x08\xb0\x16\x28\xa0\x18\xaa\xab\xac\x1d\xf8\xf8\xab\x7b\x67\x3b\x34\xdd\x49\x2f\x1d\x7a\x95\xe7\x30\x71\xd5\x7d\xb5\x1d\x06\xd4\x5d\x81\xed\x30\x2e\x2d\x97\x44\x60\x8b\xb2\x56\x28\x48\x82\xae\xce\x76\xc0\xc4\xd5\x0a\x85\xa5\x3e\x0f\x2d\xe6\xa8\xfa\x44\x2b\x6a\x59\x1b\x63\xc0\xa8\xd5\x06\x2f\x9a\x87\x86\x24\x4c\x77\x22\x09\x3e\x8e\xea\xaa\x6e\x87\xa3\xff\xe0\x53\x33\xe6\x5b\x47\x3b\xe2\xe7\x54\xdf\x3a\xda\x51\xf3\xe0\x8b\xfe\x1d\x31\x63\xd5\xbd\xc8\x1d\x31\x63\xd5\x17\xfd\x3b\x06\xc6\xee\x2a\x72\x47\xfc\x9c\xea\xaa\x6e\x47\x4c\x5c\x75\x55\xb7\x23\x26\xae\x76\xe8\x45\xfa\x74\x55\xb7\x15\xd1\xac\x03\x7a\x7c\x7e\xd5\xd5\xd9\x8e\x45\xff\x35\x5a\xfa\x0f\x7a\x7a\xaf\xdd\xdf\xdc\x91\x40\x50\xf5\xd0\xc1\x8e\x4d\xff\xc1\x8b\xe6\x76\x32\x3e\x36\xe6\xaa\x87\x0e\x76\xec\x8c\x68\x32\x3e\xfc\xcd\x3a\x19\x9f\x66\x7a\xc2\x8b\xbe\x8e\x09\x2f\x38\x33\x75\xc2\x0b\x26\xb5\xba\x1a\xdc\x71\xea\x4e\x46\xcb\x52\xb7\x2e\x46\x8b\xfb\x52\x17\xa3\xc5\x7d\xa9\x8b\x5e\x34\x63\x9b\x3b\xd9\x58\xad\x9b\x3b\x2f\xb2\x76\x9f\x72\x27\x3c\xcc\xea\x3e\xe5\x56\x7c\xb3\xfa\x02\x7d\x27\xf6\x80\xaa\xab\xc1\x9d\xaa\xfe\x73\x49\x24\xc9\xc5\x0e\x2d\x38\x3b\x4e\x21\x75\xb5\x2a\x2d\x28\x9c\x46\x8b\x5e\x5c\x61\x6e\x85\x26\xeb\x81\x1e\xa6\xb1\xba\x4f\xb9\xd3\xd4\x7f\x2e\x89\x44\x80\xac\x1e\x78\x59\xea\x05\x5e\x70\x35\xea\x65\x44\x18\xbc\xea\xea\x73\x27\xe2\xbe\xf5\x42\x1d\x17\xac\x5e\x28\x60\xd4\x2a\xea\x53\x01\xc7\x8a\xfa\xcc\xd2\x1a\xa8\xcf\xcc\xd6\x66\x45\x7d\x66\xe9\x10\xd4\x67\x66\x65\xd8\xd0\x91\x19\xe7\xa2\xb9\xcb\xb7\x33\x26\xae\xb9\xcb\xb7\x15\x9a\x6c\xee\xf2\xed\x9c\xf5\x5f\xa5\xd5\x69\x39\x9f\x1f\x8b\xb9\xef\xab\xe4\x86\x6a\xcd\x55\x8f\x2d\x5a\x22\x0e\x9b\x6d\xd0\x82\x4d\xec\x64\x0b\xb0\x39\xd4\x82\x4d\xa6\xa1\x05\xd8\xc4\x6a\x36\x0f\x55\xec\x3c\x75\x67\xa6\xa5\xff\x18\x02\x5e\x48\x0b\x0c\x61\xe9\x3f\x86\x60\xea\xd3\x27\x3a\xe3\x69\xb4\x00\x9f\x57\xff\x21\xea\xab\x5e\x10\xf5\xf5\xe5\x42\x73\x8f\x76\x17\x3c\x8d\xe6\xdb\x5f\xbb\x60\x6d\x9b\x6f\x7f\xed\xc2\x34\x34\x8f\x48\xef\x82\x8f\xd7\xdc\xf7\xdd\x25\xe8\x4e\x97\x52\xd1\x34\x60\x1e\x0a\x1b\x9d\xcd\x97\xf9\xbb\xe0\x4d\x34\x5f\xe6\xef\x22\x79\xba\x0f\xbb\x8b\x64\x86\xd2\x57\xd4\xb2\xa1\xf4\x0b\xcb\xcb\x56\x78\x8e\xcd\xcc\x86\xd2\x2f\x92\xa0\xef\xfb\xef\x22\x09\x7a\x1c\x76\x17\xf2\x59\x1a\x2a\xb9\xa0\x76\x5b\x63\x0c\x92\x19\x6a\x57\x51\xcb\xe6\x5b\x5c\xbb\xe0\x85\x34\x14\x6d\x91\x04\xdd\x37\xdc\x55\x72\x41\xb9\x55\x82\x4b\x0d\xb5\x54\x13\x7c\xfa\xd6\xd1\xae\x09\xea\xee\x9d\xed\x4a\x1c\xaf\xa1\x96\x2a\xde\x4b\x43\x2d\x55\xbd\x90\xa8\xa5\x8a\x07\xd6\xdc\x1f\xdb\x15\xf5\xd9\x16\x14\x50\x9f\xcd\xa3\x8f\xbb\x12\x8e\x68\x1e\x7d\xdc\x55\x12\x44\x11\x55\x14\x5f\x43\x11\x55\x49\x69\x43\x9d\x68\x67\xdb\x50\x97\x94\x36\xbd\xe0\xfb\x36\xe3\x39\xfc\xa3\xe6\x4b\xdd\x5d\x09\xdd\x35\xe3\x39\xbc\xa5\x66\x70\x2d\x79\xba\xaf\xb6\x2b\xee\x44\x3b\x70\x2d\x79\x1e\x7a\x21\x64\xd4\x7c\xa9\xbb\x2b\x41\x8d\x86\x92\x6a\xa8\x82\x86\x92\x52\x94\xb4\xa1\x6c\x9a\x3e\x7e\x5f\x7b\xee\x26\xc9\xfb\xfa\x72\x2b\x66\xda\x7c\x7d\xb9\x5b\x82\x6b\x14\x51\xd3\xac\xa0\x7a\x9a\x54\x01\xea\xa5\x65\xfd\x77\x69\xf9\xf7\xd0\x7d\xdb\x7a\x37\x5c\x8d\xee\x3b\x42\xbb\x21\xf9\xce\xd7\xd8\x70\x35\x7a\x84\x1e\xdf\x74\xe7\x0b\x68\x83\x5e\x70\x7b\x14\x41\xed\xbe\xde\xdb\x0d\xe9\xf6\x04\x05\xde\xc8\x9e\xa0\xc0\x1e\x50\x4f\x70\x66\x7a\x0e\xce\x78\x3f\xbb\xef\x9f\xec\x46\xe8\xae\x67\xe4\x82\x93\xd0\x71\xac\xda\xd1\x9d\x50\x67\x1e\x7a\x86\xfa\x2d\xb4\x5c\xd6\x1d\x97\xa1\xfb\x3a\x71\x77\x3c\xda\xce\x37\xd6\xa3\xfe\x9b\xb4\x2e\x2d\x97\x60\x4f\x81\xd6\xa1\x05\x05\xdf\xcf\xd8\x0a\xaf\x76\xdf\xcf\xd8\x9d\x70\x52\xaf\x50\xc0\x2d\xe8\x38\x56\xbd\xa9\x05\x05\xc9\xb3\x42\xa1\xcd\x1f\xa8\xe4\x8e\xcf\xd5\xbb\x4f\x7b\xe7\x23\xee\x28\xda\x8e\xef\xa4\x58\x6b\xc7\x77\xea\xd8\xfa\xde\x18\x3a\x1e\x5f\x6f\xb0\x82\xc7\xd7\x1b\xac\xcc\x4a\x0b\x56\xf0\x0a\xba\x6f\xb4\xec\x8e\x4a\xee\x9e\xa0\xb3\x3b\x5e\x5d\xef\x91\x96\xfe\x83\x17\x36\xed\x7a\x87\x17\x36\xed\x7a\x87\x9e\x26\xac\x43\x4f\x93\x82\x07\x36\xf0\xea\x3a\x7e\xd5\xc0\x8f\xeb\xbe\x84\xdc\x03\x3f\xae\xfb\x12\x72\x2b\x82\xda\xf1\xb9\x06\xb6\xb0\xa3\x96\x06\xd6\xaf\xfb\x12\x72\x0f\x09\xde\x97\x90\x7b\x14\x3d\xe7\x12\x1c\x6c\xcc\x75\x14\xd8\xc0\xd3\xe8\x28\xb0\xa1\x29\x42\x81\x29\xf6\xd9\xf1\xb9\x06\x1e\x58\x47\x81\x8d\xae\xff\x5c\xba\x43\xf3\xe0\xdb\x35\x7b\x0c\x5e\x02\xdf\xae\xd9\x03\x0f\xac\x4f\x46\xab\x59\x41\xd5\x0d\xbc\x90\x8e\xaa\x1b\x5b\x2d\xe8\x6d\x3e\xaa\xed\x2f\xd6\xc0\xe7\xea\x9b\xff\x0e\xb2\xde\xf4\x89\x6f\xd1\x3d\xe2\xb7\xa7\xe4\x89\x02\x9b\x18\xae\xee\x1b\x26\x7b\x4a\x82\xbe\x61\xb2\xa7\x5e\x79\x94\xdb\x24\xc6\xd7\x51\x6e\x33\xa9\x17\x97\xe0\x2c\x6a\x6d\x5a\x3c\xe7\x99\x3d\x7b\x62\xd4\x3a\xde\xd9\x94\x3c\x51\x7c\xb3\x31\x5a\x14\xdf\xec\x7a\x0e\xea\x43\xcf\xb9\xcc\xe6\xd6\x73\x8c\x61\xf3\x16\xe0\x65\x4d\x7c\xae\x8e\xe2\x53\x5c\xb4\xa3\xf8\xa6\x3e\x77\x14\x9f\xa2\xa4\xdd\xf7\x5d\xf6\x42\xb5\x76\x5f\xdc\xee\x15\xf4\xdc\xa4\xa5\x3b\x17\x2d\xdd\xe9\xd4\x57\x44\xba\xa8\xc8\xc5\x7b\x36\xf0\xc0\x16\x2b\x84\x81\x07\xb6\x52\xa4\xe5\x92\x58\x39\xd0\x2a\xb4\xf4\x9c\xf3\xb9\x90\xe0\x78\xe0\xa5\x2c\x5a\xf0\x52\xd4\x27\xbc\xe0\x32\x0c\xdc\xac\xd5\xf5\x1c\xbc\x0c\x7f\x77\x07\x6e\xd6\xc2\xc4\x0d\xdc\xac\x85\xbb\x34\x70\xb3\xd6\xa6\x4f\x94\xf7\xe2\xfb\x1b\xb8\x52\x8b\xb7\x67\xe0\x4a\x2d\x9c\xa7\xe1\x5b\xf6\x7b\x23\xa5\x11\x2e\x2d\x9f\x87\x81\xd2\xdf\x92\x04\xab\xe9\xcd\xf6\xec\x60\x35\xbd\x79\x5f\x06\xeb\xe0\x8d\x79\x1f\x18\x84\x2d\x49\xf8\xbe\xcb\xde\x55\x77\x42\x4f\xa3\xf5\x24\xcd\xbd\x6b\xa5\xb5\x69\xa9\x17\x7f\xcb\x77\xd3\x73\x87\x96\xeb\x90\x81\x41\xd8\x92\x04\x06\x61\xe3\x12\x8d\x0c\x05\xc9\x25\x43\x61\xe9\x4e\x7a\xc1\xbc\x0f\x9c\xae\x8d\x01\x1a\x85\x5e\x3e\xcc\xfb\x77\x55\xf2\x28\x0c\x8f\x38\xc9\xc0\xaa\x28\xeb\x74\x60\x55\xf6\x55\x97\x2e\x24\x7b\x74\xe7\xa2\xa5\x3b\x7d\xb0\x8a\x29\x0e\xac\x8a\x05\x5e\x10\xac\x8a\x91\x68\x33\x58\xca\x1b\x7e\xc0\xf0\x38\xe5\x56\xbc\x71\x60\x71\x0c\x3f\x60\xb0\xcc\x37\xfc\xb1\xc1\x32\x5f\xb1\xc8\x81\x35\x52\xbc\x71\x60\x8d\x4c\x93\x82\x35\x52\xf4\x71\x60\x72\x8c\xad\xbf\x81\x4f\x69\x6c\xfd\x0d\x96\xf9\x86\x15\x1b\x2c\xf3\xad\xab\x05\x9f\x43\x2d\xf8\xd4\x14\x61\x8e\x0c\x7f\x6c\x60\x8e\x0c\x7f\x6c\x60\x8e\x14\x99\x1c\x98\x23\xe5\x99\x0e\xfc\x54\xd3\x14\xe1\xa7\x1a\x1e\xd8\x20\x20\x60\xf8\x01\x03\x53\x65\x9a\x07\x4c\x95\xa2\x8f\x03\x53\x65\xf8\x63\x03\x53\x65\xf8\x63\x03\x53\x75\x1e\xf5\x32\x69\xa9\x17\xe7\xe5\x04\xd1\xdb\xb4\xe0\x9a\x60\xc1\x41\x99\x0e\x0c\xd7\xc1\x3b\x1b\x18\xae\xa3\x59\xc1\x70\x1d\xfc\x87\x41\x40\xe0\x68\x1e\x30\x32\x47\x2f\x39\x46\xe6\x48\xba\x18\x92\xc3\x9a\x60\x60\x48\x0e\xa9\x51\xc3\xd3\xa6\xf6\xc1\xf4\x0f\x0c\xc9\x91\xe4\x17\xbd\x4c\xb5\x18\x91\xa4\xbb\x18\x11\xb1\xdd\xb1\xa0\x20\x59\x2f\x46\x24\x79\xe2\x33\x1f\x49\x09\x9f\xf9\xe2\x49\x0d\xdf\x72\xda\x57\x32\xc3\x83\xbe\xac\x8e\x06\x06\xe8\xe2\x65\x0d\x0c\xd0\x95\x94\x30\x2b\x37\xe9\x39\x9f\xdb\x8b\x99\x1e\x18\x92\x4b\xe6\xd2\xc0\x90\x5c\x32\x97\x06\xcb\xfc\x8b\x99\x1e\x78\xd0\x57\x52\xc2\x90\x28\x45\x74\xb0\xcc\xbf\xb8\x4b\x83\x65\xfe\x25\x40\x36\x58\xe6\x5f\x4c\xf8\x60\x99\x7f\x71\x89\x06\x06\xe8\x4a\x66\xbe\x3f\xb4\xaf\x64\xe6\xfb\x43\xfb\x4a\x4a\xf8\xe8\x17\x97\x68\x60\xaa\xae\x14\x2d\xa6\xea\x4a\x82\x98\xa3\x4b\xa0\x64\x60\x8e\x2e\x4e\xd0\xf0\x80\x80\x3d\x8f\x28\x18\x2d\xf5\x72\x68\xc1\xa7\x9b\x23\x7b\x70\x89\xa6\x9b\x23\x7b\x30\x5c\xd3\xcd\x91\x3d\x48\x7e\xba\x39\x32\x45\x6c\xa7\x07\x54\xed\xc1\x70\x4d\x37\x47\xf6\x24\x3d\xd7\x68\xe9\xb9\xe9\x2d\x56\x08\xd3\xcd\x91\x3d\xec\xec\xcc\x07\x3e\x8b\xfa\x84\x4f\x1c\x81\xf9\xc0\x67\x51\x9f\xf0\x89\x46\x99\x01\x5e\x9a\x5a\xf0\x42\x40\x67\xfa\xaa\xdf\x1e\x66\x73\x06\x78\xc1\xcd\x9a\xbe\xb2\x37\x25\x93\x4e\xcf\x2e\xb3\xe7\x43\xbf\x7c\x57\x25\xcf\x00\x9b\x4c\xdf\x0c\xb0\x89\x0f\x3b\x7d\xf1\x6e\x0f\xd3\x37\x13\x02\xc4\x9b\x98\x09\x01\x1e\xfd\x07\x2b\x84\x0e\xa6\x67\x0f\x58\x20\xd7\x79\xba\x15\xb3\x10\x74\xa7\xd3\x0b\x49\x2d\xa3\xc5\x73\xbe\xe8\xb7\x20\x91\x65\x7a\x91\xc8\xdc\x1a\x59\x60\x6b\x6c\x66\x7a\x61\x6b\x6c\x66\x7a\xc1\x16\x4e\xb7\x54\x16\xaa\xfa\xbc\xb4\x18\x91\x87\x0e\x2c\x48\xb8\x6e\x8e\x2c\x48\x64\x9e\xa6\x65\x01\x95\x3c\x0b\xbc\x4c\xfd\x07\xbd\x95\x68\x41\x8f\x18\xd8\x2c\xd0\x5b\x93\x16\xf4\xb0\x9a\xb3\x42\x0f\x5f\x6d\x7a\x9c\xd9\x02\x0b\xb5\xe9\xe0\x02\x0b\x78\x60\xb3\xc2\x8b\x24\x58\xe1\x05\xb5\x3b\xdd\x70\x59\x64\x83\x6d\xba\xe1\xb2\xc8\x06\xdb\x74\xc3\x65\x31\x88\x82\xcb\x2c\x92\x1a\x35\xdd\x38\x59\x4c\xfa\x6f\xd3\x12\x3d\xa3\x85\xcc\xdc\x38\x59\x24\x14\x33\xdd\x38\x59\xc4\x3b\x9b\x1e\x83\x36\xc5\x6f\x67\x73\x3e\x95\x83\x3a\xdd\x70\x59\xc4\xfc\xcd\x06\x9f\x0d\x3e\x1b\xbc\x48\xba\x6e\xb8\x2c\x4a\xba\x0d\x5e\x08\xd3\xcc\x06\x2f\x43\x7d\xba\x3c\x23\x3e\xc9\x74\xc3\x65\x51\xf3\xd0\xe1\x53\xef\x67\x87\x4f\x92\xaf\x66\x87\x17\x49\xbe\x23\x97\xcd\x87\xe3\xc6\xc9\x22\xb9\xea\xb3\x23\x17\x3c\xbe\xd9\xe1\xc5\xd4\x0b\xbc\x98\xe8\xc1\x8b\x66\xac\xc3\x0b\xde\xf5\x1c\xd0\xd3\xfc\x0d\xc6\xae\xf9\xf3\x48\xb6\x25\xc2\x65\xd3\x0d\x97\x25\x36\xe6\xa6\xaf\xa3\x2c\x11\x63\x9f\x1e\x59\xb6\x84\x53\x32\x3d\x3b\xc2\x12\xfe\xed\x5c\xf4\x82\x82\x9e\x8b\x5e\x24\x4f\x37\x39\x96\xd8\xa5\x98\x1e\xd0\xb1\x24\x09\x7a\x40\xc7\x14\xbf\x9d\x1e\xd0\xb1\x34\x19\xbb\x1b\x27\x4b\x6c\x6d\x4e\x37\x4e\x96\xf0\xf8\xe6\x86\x17\x49\xd0\xb7\xe9\x4c\x89\xa6\xd3\xe0\x5a\x72\x31\xe8\x49\x2e\x06\x3d\xdc\xba\xe9\x66\xcc\x12\xf9\xe8\xd3\xa0\x77\xd5\x0b\x23\x92\xcc\x0c\x7a\x97\xb7\xce\xd7\x4a\x96\x1f\xf5\x62\xb4\x90\x99\x87\x8c\x2c\xe3\xd6\x4d\x0f\x19\x99\x22\xb6\xd3\x57\x55\x96\x09\x97\x4d\x37\x86\x96\xf5\x7e\xba\x31\xb4\x2c\xd5\xea\xab\x2a\xcb\x7a\x5b\x7d\x55\x65\xb9\xaa\xcf\x46\x0b\x5e\xdc\x18\x5a\x6e\xea\x05\x5e\x88\xa3\xcf\x0b\x2f\x64\xb5\xcf\x0b\x2f\xe4\x70\xcd\x0b\x2f\x38\x17\xf3\xc2\x0b\xce\xda\xbc\xf0\xb2\x7f\xb4\xbd\x37\x2f\x6c\x4a\xf0\x17\x36\x25\xf8\x0b\x9b\x7a\x05\xdd\x4e\x5a\x66\x17\x72\xba\x9d\xb4\x8c\x0d\x9d\x97\x21\x1c\xdd\xe9\xa2\xce\x9a\x06\x6c\xa8\x22\xbd\x13\x1b\x9a\xa5\x6c\xb0\xa1\xf9\x6a\x40\xfe\x9a\x15\xec\xeb\xc2\x86\x16\xbc\x97\x85\x0d\x55\x14\x78\x39\x00\xc4\x0a\xe9\xef\xcb\x97\x74\x56\xf0\xf8\x16\x36\xb4\x60\x5f\x17\x36\xb4\xe0\xe3\x2d\x6c\x68\xc9\xfa\x6f\xd1\x82\x1e\xd6\xaf\x30\x99\x0b\xeb\x57\x98\xcc\x85\x85\x2b\xa4\x1c\xad\x40\x2f\x4c\xe6\x0a\xf4\xd2\x74\x27\x63\xc0\xeb\x59\x11\xea\x4c\xdf\x8a\x3c\xc7\x84\xad\xc8\x73\x6c\x90\x2e\xdf\xda\xb4\xc2\xf6\xde\xf2\xad\x4d\x2b\xa8\x9e\xe5\x09\x79\xa6\x2c\xd7\x85\x31\x54\xf4\x78\xf9\x92\xce\x8a\xe9\x3f\xc6\x40\x6a\xfc\xc2\x50\x16\x72\xb2\x17\x86\xb2\x10\xab\x5b\x89\x3e\x99\xbf\x95\xe0\x9a\xf9\x5b\x18\xc3\xaa\x79\xf0\x2c\x65\xab\x9a\x07\x4c\x5c\xc5\x97\x59\x98\xb8\x2a\x59\xfb\x42\xcd\x2a\x5e\xe4\xf2\x85\x9a\x55\x3c\x9b\xe5\xa9\x6d\x56\x93\x9e\xf3\x39\xaa\x9a\x07\xcc\x5f\x65\xcb\x69\x79\x8c\xcf\x2a\x48\xc9\xe5\xab\x31\xab\x59\xbd\xb8\x94\x2a\x1b\xb2\x0b\xf3\xa7\x88\xf4\xc2\xfc\x29\xff\x76\x61\xfe\x2a\x1b\x7a\x0b\xc3\x55\xf1\x65\x16\x86\xab\xe2\x7d\xae\xca\xf8\xba\xee\x84\x02\x21\xa3\x85\xe1\xaa\x9a\x31\x5f\x71\x59\x25\x48\xb4\x2a\xd4\x09\xdd\x2d\x8c\x5a\xc5\x4f\x5d\x18\xb5\x8a\xa3\xb3\x30\x6a\x55\xb3\x89\x51\xab\x78\xad\x0b\xa3\x56\xd9\xc2\x5b\x18\xb5\x4a\x52\xda\x6a\x48\x89\x8d\xdc\x85\x51\xab\x78\xb4\x0b\x73\x54\x09\xeb\xad\x0e\x05\xc2\x7a\xab\x43\x01\xe7\x69\x61\xaa\x2a\xce\xd3\xea\x50\xd0\xbc\x77\x28\x5c\xdd\x89\x94\xf0\x7d\x17\x66\xac\x3d\xfa\x6f\xd1\x52\x2f\x2e\xa5\x86\xb7\xbb\x30\x55\x4d\xef\x84\xa3\xfe\xac\xe9\x9d\xf0\xc0\xa1\x35\x36\x72\x17\x66\xac\xe9\x9d\xf0\xe0\xa0\x35\x1c\xb2\x85\x19\x6b\x7a\x43\x30\x63\x4d\xdf\xe6\x80\x17\x7c\xdf\x35\xe0\x05\xdf\x77\x79\xe0\xd0\x1a\xae\xdb\x9a\xd0\xc3\xa8\x2d\xdf\xdd\xb0\x46\x50\x71\x4d\xe8\xe9\x9d\x98\xd0\x63\xed\xb2\x26\xf4\x70\xdd\xd6\x84\x9e\xbe\x69\xcc\x66\xd3\xdb\x33\xa1\x87\x27\xbc\x7c\x4d\x67\x8d\xd5\xca\xf2\xed\x59\x6b\x7a\x7b\x30\xa9\x4d\x5f\xb8\x87\xf5\x9e\xa7\xac\x1f\xa8\xe4\xe5\x56\xec\x11\xc2\x6b\xb9\x15\x7b\x9e\x86\x00\x0d\xd0\x34\x5e\xc8\x72\x2b\xf6\x3c\xec\x06\x2f\xb7\x62\x9f\xf0\xea\xe5\xcb\xb6\x4f\x78\xf5\xf2\xc5\x58\x7c\x62\xa5\x35\xbe\x00\xa3\x97\xdb\x9f\x4f\x60\xf4\x72\xfb\xf3\x09\x8c\x5e\xbe\xe0\xfa\x04\x46\x2f\x5f\x70\x7d\x02\xa3\x97\xdb\xa6\x4f\x60\xf4\x72\x43\x32\xb7\x14\xf4\x05\xf2\x0b\xcc\x76\x81\xfa\xdb\x49\x2d\x20\xc6\xf8\x7f\x0b\xd4\xdf\xc6\xff\x5b\x9f\xc0\x68\xef\x65\x0b\x18\x8d\x0d\xdd\x02\x46\x93\x3a\xbe\x05\x8c\x26\xd2\xb4\x05\x8c\x66\xdb\x73\x83\x0f\xdc\x2c\xc9\x37\xf8\xc0\x3d\xf4\x1c\x9c\x4d\x3d\x07\x67\x53\x77\x76\xa0\xd0\x81\x96\x80\xd1\xa2\x0e\xd7\xeb\xd0\x12\x30\x3a\xd2\x12\x30\x5a\x7d\x0a\x18\xbd\x68\x09\x18\xad\x5e\x18\x1f\x1f\xea\x0e\x8c\xef\xa8\xc5\xf8\x80\x85\xee\xc0\xf8\x0e\xf4\x02\xe3\x63\x36\x37\xe0\x6e\xc3\xe3\xdb\x80\xbb\x2d\xa8\x17\xa0\xc9\xc4\x06\x77\x00\x0e\x4c\x50\x6a\x07\xe0\xc0\x51\x14\x80\x26\x27\xb5\x80\x49\x27\xd1\x03\x2a\x9c\xf5\x1c\x50\x61\xd4\xee\x0e\x40\x85\x41\x27\x6e\xc0\xe4\x0a\x35\xed\x08\x54\xb8\x57\x5a\x40\x9a\x3b\xbc\xf8\x0a\x6f\x1a\x11\xf7\x1d\x19\x83\xe6\x21\x32\x86\xa9\x5e\xe0\x05\xa5\xb8\x01\x9a\xdb\x16\x3d\x78\x21\xfe\xbe\xa3\x60\xcb\x48\x37\xc1\x0b\x26\x6e\x27\xc1\x96\xe9\x33\xc1\x0b\x50\x98\x0d\x40\xdd\x48\xc4\xdc\x09\x08\x35\x99\x44\x1b\x80\xfa\x79\xd4\x02\x46\xcc\xb7\xb2\x7d\x7d\x39\x0f\xb9\x43\x3b\x01\x00\x46\xf1\x6d\xa0\xec\x07\xc5\xb7\x81\xb2\x1f\xa2\xd5\x3b\x01\x00\x26\xe4\xb7\x33\x00\x60\x54\xdd\x06\xe6\x7e\x50\x6e\x3b\x0b\xe0\xac\x3b\x01\x00\x63\x0c\x77\x06\x00\x4c\x3a\xd9\xce\xf0\x59\x91\x44\x86\x4f\x7d\x1d\x19\x3e\x1b\xf3\x00\x3c\xfe\xa0\xb2\x36\xf0\xf8\xc3\xea\x68\x03\x8f\x3f\x5d\x14\x5c\xd6\x67\x88\x17\xc6\x30\xc4\x0b\x63\x60\x25\xba\x0b\x7c\xe2\x6a\x6c\xa0\xf3\xc7\xe0\xa5\x00\xcb\xd6\x7b\x0d\x74\x5e\x89\x75\x1b\xe8\xfc\x91\xe4\x81\xce\x9f\xab\x3e\xe1\x13\xe7\x70\xfb\xca\x77\x5e\x9c\xbc\x0d\x74\xfe\x46\xdd\x09\xfe\x98\xad\xbf\x5d\x41\x07\xb3\xbe\xdc\x6e\xfa\xa7\xc2\x57\xbb\x0a\xe1\x4c\x9f\x15\x6c\xb2\x64\x5d\xc1\x11\xe7\xfb\x03\x95\xbc\x2b\xb0\xe5\xa2\x4e\x80\x11\x4b\x9c\x15\x36\xa5\x6c\x40\xea\x5f\x96\x43\xbb\x01\x4d\x26\x79\x67\x37\xa0\xc9\x40\x1c\x77\xa3\x4f\x62\x7c\xbb\x01\x85\x26\x1f\x76\x83\xe2\xbf\x78\x6e\xbb\x41\xef\x88\x02\xf4\xa4\x0a\x00\xc1\x3e\x52\x05\x4d\x90\x66\x7a\xe9\x82\x34\xf3\x39\x74\x41\x9a\xb9\xb3\x0b\xd2\x0c\x2f\x60\xb3\x1e\x72\x34\x37\xc9\xfe\x0f\xcb\xc4\xdd\x81\x34\xeb\x15\x24\x93\xf5\xc9\xea\x13\x50\xb1\xe4\x42\x26\xeb\x53\xd4\x27\x70\xe7\xaa\x3e\xe1\xb3\xea\x4e\xf8\xd4\xcb\x3a\xe0\x53\xaa\x9c\x4c\xd6\xa7\xeb\x3f\xf8\xd4\xeb\x49\x26\xeb\x33\x74\x27\x7c\x4a\xa1\x90\xc9\xfa\xb0\x78\xdf\x64\xb2\x3e\x93\x17\x92\x4c\xd6\x07\x9f\x6b\x03\x35\x78\x34\x2b\x40\x0d\x1e\x76\xbb\x37\x59\xae\x0f\x26\x6e\x93\xe5\xfa\xe8\x45\x06\x51\x16\x58\x34\x6e\x10\x65\xe1\x11\x05\xa0\xbb\x7a\x59\x05\xdd\x0d\xf4\x49\x06\x6c\xc0\xe0\x6d\x10\x65\x21\x33\xbe\x09\x54\x58\xd2\x25\x3b\x36\xe8\x03\x27\x1f\x36\xe0\x08\x6c\x20\xb8\x81\x45\xe3\x5e\x02\x38\x43\x01\x68\x83\x92\x0a\x37\x38\xb1\x20\x29\x91\x39\x1b\x24\x25\x70\x62\x0a\x35\x6d\x70\x62\x41\xe6\x0f\x9c\x58\x60\x09\xb9\xc1\x89\x05\x99\xbf\xc5\x68\x59\xbc\xef\xc5\x68\xc9\xe5\xde\x8b\xd1\xe2\x6f\xee\x0d\x9f\x92\x20\x30\x8b\x20\xb5\x0b\xcc\x42\x01\xa4\x2d\xa8\xb0\xde\x48\x60\x16\x91\xbd\x95\x0f\x5b\xea\x2d\xc6\x47\xbe\x6f\xd4\xfb\x49\xbe\x6f\x64\x9d\xb1\x05\x23\x4e\xea\x45\x90\x66\xc6\x2e\x18\x31\xf9\xc5\x9b\xcc\xe0\xc8\xaa\x63\x0b\x38\x0c\xac\x7e\x03\x97\x88\x7a\x77\x41\xa9\x45\xbd\xad\x02\x15\xb3\xde\xdb\x02\x15\x6b\x1e\xc8\x13\x8e\x32\x7f\xe4\x09\x47\xe9\x02\xf2\x84\x15\x6a\xda\xc0\x2c\x22\xc1\x90\x7d\x90\x04\x41\xbe\x7d\x90\xc4\xd2\x7f\x48\x82\xf5\xde\x06\x82\xa1\x90\xd1\x26\xdb\x38\x1e\x3d\x07\x9f\x57\x77\xc2\x27\x50\xb4\x0d\x20\x43\x29\x7f\x9b\x4c\xe4\x78\xc5\x8b\xc0\xcf\x48\x97\x4c\xe4\xf4\x88\x6b\x90\xca\x72\x27\x40\x5d\x24\x82\x21\x5b\x30\x69\x49\x5e\x30\x69\x99\x38\x90\x15\x89\xdc\x8c\x0d\xb2\x22\x49\x09\x83\xc9\x4b\x32\x78\x00\xef\x92\x74\x88\xe0\xd5\x9a\x07\xc1\xab\x6b\xfd\x91\x4a\x16\xf2\xba\x8a\xc0\xa6\xc5\xc7\x08\x58\x23\x69\xc2\xae\x40\xd3\x62\x93\xe1\xe1\xa1\x18\x60\x8d\x04\x4e\xc5\x00\x6b\x24\xe2\x2b\x06\x58\x23\xe1\xbd\x98\x7b\x98\x2b\xe1\x45\xda\x03\x14\x9a\xad\x1c\x13\x80\x7b\xe8\x4e\x86\xc7\x67\x64\x0f\xc3\x43\xf5\xd8\x03\x9f\x2c\xf0\x4c\xe0\x6e\xa6\xdd\x82\xa0\xd7\xf4\x12\x04\xbd\x86\x1e\x15\x28\x12\xf6\xd5\x40\x12\x2a\xdb\xd1\x04\xf5\x26\x22\x66\x20\x09\x33\xcb\x36\x03\x1c\x92\x99\x4c\xa3\x92\x44\x46\xe9\x1b\x95\x24\x94\xc3\x68\x80\xbb\x33\x1f\x8e\x01\x23\xc9\x4c\x9f\x81\x24\xcc\x58\x4d\x03\x49\x98\xb3\xfa\x84\x5e\x56\x9f\x40\x8c\x8b\xfe\x03\x62\x8c\x79\x30\x01\xb8\x99\x23\x13\x80\x9b\x39\xb2\x04\x9f\x2c\xb8\x4c\x70\x6e\x72\x6c\x0d\x30\x4a\xc6\xdc\x1a\x68\xc1\xcc\x06\x9b\x09\xea\xcd\xf2\xcb\x04\xf5\xd6\xac\x08\xea\x8d\x87\x69\x82\x7a\x13\x99\x34\x41\xbd\x51\x6e\x26\xa8\x37\xa6\xd8\x04\xf5\x36\xb5\x90\x8b\xe6\x41\x50\x6f\x7c\x4a\x13\xd4\x9b\x7c\x74\x13\xd4\x9b\x08\xa3\x81\x16\x2c\x8f\xe8\x2d\x5a\x8c\x16\xb4\x60\x89\x6a\x09\x50\xcd\x73\x45\x80\x6a\xb5\x9c\xb3\x42\x0a\x9e\x51\x61\xa3\x60\x1e\x0c\x08\x4d\x61\xc9\x6a\x40\x68\x14\x86\x32\x20\x34\x85\x0c\x0f\x2b\x02\x4d\x33\x7f\x05\x5e\xa6\x28\xc0\xcb\x56\x9f\xf0\xc2\xfa\xc4\x80\x88\x17\xbd\x67\x40\xc4\x0b\x01\x40\xab\x70\xc6\x6a\xc5\x04\x11\x27\xc7\xd6\x40\x20\x2a\x51\xd1\x80\xec\x14\x02\x80\x06\x64\xa7\xe2\xa2\x18\x90\x9d\xca\xfe\x82\x01\xd9\xa9\xf8\xda\x56\x81\x34\x63\x52\x0d\x00\x4f\xd5\xbb\x0b\x80\xa7\xb2\x6a\x34\x70\x8c\x55\x6f\xa4\x07\x66\x56\x65\x0d\x69\x00\x78\xaa\xde\x41\x00\x3c\x0a\x0b\x19\xee\x52\x65\x81\x6e\xb8\x4b\x95\x7c\x2b\xeb\x02\x69\x33\x22\xdc\xa5\x8a\xef\x6b\xb8\x4b\x95\xd8\xb5\xe1\x2e\x55\xdc\x3a\xc3\x5d\xaa\x44\xab\x0d\xb7\xa7\xe2\xac\x19\x6e\x4f\xc3\x59\x33\xdc\x9e\xa6\x77\x02\xb7\xa7\xb1\x73\x65\xb8\x3d\x0a\xa9\x18\x6e\x4f\xc3\xfc\x19\x6e\x4f\x63\x35\x6d\xb8\x3d\x4a\x2a\x34\xdc\x9e\x46\x28\xcd\x70\x7b\x9a\xbe\x46\xdc\x9e\x56\x75\xa7\x80\xd8\xc8\x05\xb7\xa7\xb1\x26\x30\x9c\x99\xc6\x3a\xd8\x80\xc7\xb7\xfd\xa3\x8c\x0b\xa3\x44\x49\xc3\x36\x19\x28\xa0\x86\x8d\x31\x7c\xa0\x0e\xba\xcd\xf0\x81\x94\xf1\x67\xf8\x40\x9d\x5a\x5e\x86\x0f\xd4\x49\x35\x33\x7c\xa0\xce\xb6\x92\x81\xb1\x57\x8e\x9f\x81\xb1\xef\x49\x14\x80\x03\xeb\x95\x00\x63\xdf\xd9\xde\x33\x30\xf6\x1d\xe4\x8d\x81\xb1\xef\x98\x0e\x03\x32\xda\xb1\xf5\x86\x5f\xa5\x6c\x40\xc3\x77\xea\x5d\xbd\x40\x4f\xea\x05\x3f\xa7\xeb\xa3\xc2\xcf\xe9\x12\x19\x7e\x4e\xd7\xeb\x82\x9f\xd3\x97\xee\x14\x4c\x1a\x0a\x5b\x30\x69\x5e\x82\x2d\x98\x34\x12\xdc\x82\x49\x33\x5a\xa0\xa6\x1d\x4f\xca\x80\x9a\xf6\xab\x3b\x81\x03\x4b\xe9\x03\x35\x1d\x92\x35\xfe\xd1\xd0\x07\x07\x9c\x74\xe8\xa3\x02\x4e\x3a\x64\x1e\x40\x47\x0d\xbd\x66\xc0\x49\x07\xa1\x03\x33\x81\x9f\xa1\x67\x02\x3f\xc3\x35\x3e\xd0\x90\xac\xf1\x81\x06\x9e\x94\x19\x50\x61\xbd\x66\xc0\x50\x87\xd4\x12\xfe\xd1\x90\x74\xf1\x8f\x06\x9e\xbe\xe1\x1f\x8d\x01\x2f\xf8\x47\x43\x92\x3f\x02\x38\x33\xef\x07\xa0\xb2\x3e\x62\xfc\xa3\x21\xa5\x8f\x7f\x34\x96\xfe\x63\x0c\x4b\xcf\x31\x06\xcd\x03\xfe\x91\xd2\xfa\x0c\xff\x48\x69\x7d\x86\x7f\xa4\xb4\x3e\xc3\x3f\x1a\x52\x75\xf8\x47\x43\x6f\x39\xfe\xd1\x24\x2e\x6a\xf8\x47\x13\xff\xd6\xae\xa0\xd0\x8c\xe1\x0a\x0a\xcd\xdc\xe2\x3b\x4d\x16\xa9\x86\xef\x34\x65\x02\xf0\x9d\xa6\xde\xeb\x2b\x98\xb4\xfe\x03\x70\x4c\xe8\xce\xf0\x9d\xa6\x0c\xec\x15\x4c\x5a\x7c\xfa\xf8\x66\xd3\x7f\x3e\x86\x89\x11\x3d\x38\x41\x13\xb7\xe7\x80\x4a\x9d\x38\x33\x87\x4a\x35\x93\x70\xe0\xc1\xd1\x99\xc8\xfa\x50\xec\x60\x62\x44\x0f\xc5\x0e\xe6\xd2\x73\xd0\xdb\xba\xd3\x68\xf9\xac\x1c\x9c\x99\x49\xa0\xf2\xe0\xcc\x4c\xe2\xd3\x87\x9a\x36\x13\x03\x7b\xa8\x69\x33\x09\x16\x1c\x1c\x9d\xc9\x6e\xd1\xa1\xd4\xd6\x42\x99\x9e\x00\xdc\x99\x37\xf9\x50\xef\x66\x61\x2c\x0e\xf5\x6e\x56\x54\x9f\x00\x95\xa3\x7a\x01\xa8\x4c\x75\xb9\x43\xe1\x85\xc5\x0a\xe1\x50\x78\x61\xb1\x36\x3b\x01\x94\x2f\x41\xb0\x03\x06\x77\x11\x04\x3b\xb8\x59\x8b\x79\x38\xb8\x59\x0b\xc9\x1f\xdc\xac\xd5\xf4\x1f\x68\x64\xf4\xcb\xc1\xb1\x5a\x9a\x07\x1c\xab\xc5\x5b\x7e\x70\x9e\x16\x6f\xf2\xc1\x79\x5a\xb8\x2f\x07\xe7\x69\xad\x1f\xd5\xb8\x38\xf8\x55\x4b\xd3\x40\xd5\xaf\x45\x24\xed\x00\x00\x5e\x54\xbc\x38\x00\x80\x17\xdb\x4a\x87\xea\x0d\x0b\x5f\xf4\xe0\x8f\x2d\xd3\x9d\x08\x9e\x28\xdb\xc1\x1f\x53\x0e\xe3\xc1\x1f\x5b\x47\xbd\x30\xbc\xa3\x5e\x18\x1e\xcb\x93\x83\xaf\xb6\x59\x4c\x1f\x2a\x3b\xa8\xac\xe6\x49\x02\x3f\x1f\x5a\x02\x3f\x23\xc0\x2c\xf0\xb3\x5a\x02\x3f\x43\x0f\x3f\x6e\xe3\x49\x1d\xfc\xb8\x9d\x2b\x2d\x00\xce\x6c\x13\x1c\x7c\x35\x65\x2d\x1e\xca\xf2\x6c\x56\x08\x87\xb2\x3c\x1b\x25\x75\xb2\xc0\xcf\xea\x65\xd1\xd2\x7f\x8c\x61\xa8\x17\xc6\x30\xc4\x0b\x63\x98\x8c\x16\xaf\x6e\x6b\x1e\xf0\xea\x54\x48\xf3\xe0\xd5\x6d\xd3\x9d\xf0\x49\x44\xf3\x50\x11\x42\xf1\xe2\x23\x08\x35\x6a\xe9\x08\x26\x8d\x07\x76\xf0\xf1\x36\x6a\xe9\xe0\xe3\x29\x5e\x7c\xf0\xe3\xec\xd1\x7f\x97\x16\x52\xa2\xd4\x8f\xa1\xb2\x8e\xe0\xd5\x98\xdb\x23\x08\x35\x30\x84\x83\x3f\x66\x59\xcf\x01\x5b\xc6\xaf\x3a\x15\xd8\x32\xa1\x8a\x23\xb0\x35\x5e\xd6\x11\xd8\x1a\x3f\xf5\xe0\xab\x59\xd3\x7f\xf0\x22\xc9\x0b\x88\x4d\x14\xff\x08\x88\xcd\x4e\xf8\x69\x40\x9a\x31\x0f\xa7\x01\x69\x26\xfc\x71\x04\xbd\x1e\xfa\x4f\x60\x6b\x64\xdd\x04\xb6\x86\xba\x60\xd9\xf8\xbe\xa7\x09\x6c\xcd\xd8\x9b\xc0\xd6\xa2\x2e\xb0\x35\xcf\x51\xa0\xc8\x08\xc8\x1d\x0a\x14\xa9\x20\xe6\xc1\xe3\x33\xcc\xc3\x11\xd4\x5b\x2a\x4b\x50\x6f\xcd\x03\x01\xb2\x83\x41\x38\xc0\xb9\x4f\x50\x9f\xc0\x9d\xa3\xfe\x03\xc4\x4c\xb4\xf3\xe0\x29\x2a\x96\x7c\xf0\x14\x8f\xde\x79\xbc\xc1\x83\xe9\x38\x78\x7c\x07\xe3\x7b\x86\x40\xd3\x48\x10\x8f\x4f\x31\xe1\x23\x38\xb7\x64\x2d\x38\x37\x41\xb7\x43\xa0\xeb\x48\xb1\x13\xe8\x3a\x84\x7e\x8e\xa0\xde\xac\x36\x0f\x81\xae\x43\xb0\xe7\x50\x56\x49\xa5\x2c\x0f\x4e\xde\x61\x3d\x74\x80\x7a\x5f\xa9\x64\x4a\x27\x5d\x5c\x8d\x43\xc5\x3a\xa5\x1f\x1e\x1c\x39\xc5\x68\x0f\x75\xe8\x2e\x3e\xec\xc1\x91\xbb\x52\xb4\x38\x72\x97\xed\xbd\x83\x23\xa7\x84\xc3\x83\x23\x77\x59\x43\x1e\x1c\xb9\xab\xb7\x80\x40\xd7\x35\x3d\x07\x48\x1b\x78\xfc\xc1\xc9\x53\x72\xe0\x21\xd0\x75\xa5\xc1\x48\xbd\x54\x02\xe0\x21\xf7\x5f\x41\xd3\x03\xb0\xc9\xab\x34\x7e\x5f\x25\x03\x12\x50\x94\xf4\xb8\xff\xb7\x15\x17\x3d\xe0\xa1\x94\x73\x77\xb6\x00\xd5\x08\x62\x03\x8c\x9e\xfa\x4f\x80\x6a\x3d\x07\x30\x9a\x3a\xcb\x87\xdc\xce\x47\x6a\x9e\xdc\xce\x87\xed\xa8\x03\xb8\x40\x05\x1c\x8f\x09\x7a\xad\xff\xa0\xc0\x42\xed\x00\x04\x7d\xae\xfe\x03\xce\xad\xc9\x24\x43\x34\xe8\xf5\x04\x78\xa0\x52\x8f\x07\x90\x68\x88\x28\x0d\xb2\x47\x95\x82\x77\x0c\x30\x32\xcb\xd9\x73\x04\xa8\xe6\xf5\x3c\x02\x54\xc3\x35\xf0\x85\x20\xf5\x02\x44\x21\x10\x2f\x3e\x64\x96\x2a\xbe\x79\xc8\x1e\x0d\xfa\xdc\x8f\x80\xd1\xbc\x90\x57\x00\x67\xee\x04\xa9\x15\x24\x89\x0b\x0c\xdc\xf4\x1f\x40\x6c\x29\xda\x2b\xf0\x33\x53\x7b\x05\x7e\x86\x33\xc0\x0c\x51\x7e\x07\xd9\xa3\x8a\x4c\x1e\xb2\x47\x15\x99\x3c\x80\x19\xa2\x3e\x5b\xc0\x0c\x91\xc4\xfc\x03\xd4\x54\x51\xcb\x03\xd4\x54\x51\xcb\x03\xd0\x21\x12\x7c\x39\x00\x1d\x22\x1f\xf8\x05\xe8\xa0\x92\x8d\xf7\x11\xdc\xb9\xd1\x02\x7e\xcc\x32\xf8\x02\x74\x88\x45\xff\x01\x3f\x26\x1a\x7f\x01\x3a\x44\xe4\x79\x01\x3a\x44\x4c\xdc\x05\xe8\x10\x09\x7b\x5d\xb0\x67\x91\x2d\xa0\x0b\xb4\x41\x51\xcb\x1b\x04\x3f\x3e\xb4\xa0\x8e\x3f\x7d\x81\x36\x44\x4c\xdc\x05\x09\x1a\x4d\xcf\x41\x1d\xc9\x5f\xa0\x0d\xd1\xd4\x0b\xd4\x81\xee\x5e\x50\xa2\x11\xf5\x72\x41\x89\xaa\x80\xe3\x0d\x48\x89\x20\xc3\x05\x33\x9a\x08\xb7\x5c\x30\xa3\x09\x07\xe2\x82\x19\x4d\x98\xb8\x0b\x66\x34\x05\xdd\xe9\x7c\x2a\x86\x79\x81\x52\x28\x86\x79\x81\x52\xa4\x24\x0a\xc0\x8f\x59\x01\x5d\x8a\x0f\x24\x82\x0c\x37\x02\x85\x66\x05\x74\xdd\x57\xdb\x09\x57\xe3\x82\x3c\x4d\xe4\xa5\x5c\x0a\x13\x24\xcd\x03\x80\x0c\x85\x2d\x2f\x80\x8c\x44\x64\xf9\x82\xd0\x4b\xac\x9c\x6e\x82\xcf\xae\x16\x7c\xf2\x05\x5c\xc0\x1a\x89\xbc\x94\x0b\x58\x23\xe1\xb1\x5f\x40\x17\x0a\x31\x5e\x90\x76\x89\xef\xfd\x66\xa0\xd7\x57\x77\x0a\x18\xad\xff\x04\x7e\x46\x2e\x00\x32\x32\x61\x9a\x0b\x42\x36\x4b\x9e\x20\x64\x33\x81\x8b\x0b\xea\x22\x63\xc6\x6e\x01\x39\x8c\xaf\x7d\x0b\xc8\xe1\xa4\xff\x40\x0e\xb3\xca\xb9\x20\x32\x72\x56\x9f\x20\x87\xf5\x26\x53\x5c\x21\x4b\xd6\xe0\xfc\x14\x54\xbc\x20\x32\x32\xfa\xf3\x82\xc8\xc8\xb8\x13\x97\x52\x0b\xb9\x9d\x1f\xa8\xe4\x5b\x01\x3f\x13\x61\xbc\x95\x21\x90\xfb\x78\x81\x6e\xe4\xa1\xff\x60\x93\x28\xf0\x05\xba\x91\x35\x0d\x40\x37\x54\x06\xf2\x52\xa1\x21\x13\x3f\xba\x00\x32\x32\xbe\xc5\x05\x74\x91\x51\x44\x17\x7c\x60\xde\xba\x53\x10\x6a\x28\x00\xc8\x50\x71\xc7\x0b\x20\x23\x13\x5b\xba\x80\x2e\x32\x6a\xe9\x02\xba\xc8\x78\x1a\x17\xd0\x45\x61\xd1\x7f\xbb\x00\xd5\x50\x00\x74\x51\x82\x5a\x02\x54\x33\x0d\x54\x68\x28\xa8\xb3\x0b\x20\x43\x91\xc9\x0b\x20\xa3\x24\xfd\x07\xf8\x99\xa5\xd2\xa5\x7a\x43\xd1\xc7\x01\x58\xa3\xa0\xd8\x2f\x60\x8d\x42\x21\xee\x0b\xae\xb0\x14\xf5\x09\xc0\x99\x98\xd4\x1d\xf0\xd9\xf8\x6c\xa9\xec\x50\xf0\x49\x2e\x08\xc4\x02\x7a\xef\x02\xe4\x50\x2a\xdd\x05\xc8\xa1\x82\x91\x17\x20\x47\x61\x01\x7b\x41\x20\xaa\x60\xe4\xa5\xea\x43\xc1\x6c\x5e\x40\x1e\x65\xc1\x19\xe8\xc4\xb2\xf4\x1c\x00\x6e\x13\x67\x02\x62\x33\xf6\x21\x20\x36\x9c\x51\x11\x42\xf1\xcd\x2b\xe8\x35\x3e\xc2\x15\xf4\x5a\x1f\x8e\xa0\xd7\xac\x5d\x2e\xa0\x92\x8a\xa1\xbc\x54\x8b\xa8\x44\xf5\xae\x60\xd9\x49\xff\x01\xaf\x96\x9a\x9f\x00\xa3\x8b\xfa\x74\x79\x56\xfc\x9c\x2b\x90\x76\x57\x2f\xce\x67\x95\xcc\x00\xa3\x54\xbc\xe4\x2b\x00\xb7\xde\x56\xea\x4a\x28\x45\xed\x52\x57\x42\xf1\xcd\xbb\x04\xb6\x46\x4a\x0b\x3e\x59\x35\xde\x25\xb0\x35\x63\x07\xb6\x52\xf1\x96\x2e\xb0\x95\x7a\xd5\x0b\xa0\x62\xd6\x7b\x77\x01\x2a\x96\xba\xc6\xaf\x6a\x52\xd7\xf8\x55\x0d\x2f\xf9\xe2\x57\x35\x29\x68\x9c\xa7\xc6\x4e\xff\xdd\xc0\xb2\x25\x09\xc0\x2f\x4d\x6f\x16\x0e\x52\xab\xba\x13\x80\x33\xa1\xa6\x0b\x32\xb3\x49\x4a\x20\x33\x9b\xcc\xdf\x86\x17\x29\x5a\x83\x17\x19\x43\xea\x66\x34\x7d\xfd\xd4\xcd\x68\x7a\xeb\x80\xd7\x34\xc2\x81\x17\xe7\xa9\x91\x1f\x74\x71\x9e\xda\x56\x2f\x70\x66\x7a\x0e\xce\x4c\xf4\xe0\x4c\x0a\x1a\xe7\xa9\xc9\xc4\xe1\x3c\x35\x7d\xe1\x38\x4f\x8d\xbd\x87\x8b\xf3\xa4\x10\xea\xc5\x79\xea\x41\xff\x25\x5a\xf4\x09\x64\xa7\x4b\x41\xe3\x58\x29\xbc\x7a\xc1\x7e\x76\xbd\x83\xc0\x79\xba\x64\x8d\xd3\xd5\xa5\xae\x81\xf3\x28\xd8\x7a\x81\xf3\x74\x7d\xfd\x38\x64\x5d\x6f\x2b\x0e\x59\xc7\xe5\xbb\xc0\x79\xbc\xb2\xe5\xf7\x55\x32\x48\x1f\x15\xbd\xbc\x20\x7d\x14\xbf\xbd\x20\x7d\x3a\x79\x9f\x17\x1f\xaf\xcb\xbe\xe2\xc7\x75\x29\x14\xfc\xb8\x4e\x8e\xdf\xc5\x8f\xeb\xb2\x0e\xf8\x6a\x5d\xca\x1b\x5f\xad\x0f\xf5\x22\xb0\x35\x62\xb9\x02\x5b\xab\x17\x78\xf1\xe5\x50\xe0\xf4\x93\xdd\x7d\x43\x2f\x3c\x8f\x80\xd8\x6a\x31\x0d\xa6\x3b\x11\xa7\x2b\x8d\xf0\x3c\x88\xf3\xea\x4e\xa0\xc9\x8f\xfe\x03\x26\xfd\xe8\x39\x60\xd2\x1e\xb1\x0d\x0f\xfe\x18\x11\xdb\xf0\x50\x0b\x60\x78\x14\x31\x3c\x80\x4b\x47\xa4\x4f\xbc\xb3\xe1\xb6\x37\x3c\x78\x67\xc3\x3d\xcc\xf0\xe0\x9d\x8d\x04\x05\xfc\xaa\x51\xa0\x10\x04\xc4\xd6\x9d\x3e\x5a\x22\xb6\xe1\x89\xc0\x9d\x5d\xd9\x84\x07\x9f\x6b\x74\xb5\xa0\xee\x86\x32\x3c\xf8\x5c\x14\xa1\x0c\x0f\x3e\x17\x11\xdb\xf0\xe0\x73\x11\xa3\x0d\x0f\x3e\xd7\x98\xf0\x82\xcf\x35\x26\x23\xa2\x82\xc1\x58\x70\x46\x31\xa8\xb1\x18\x3b\xfe\xd8\xd8\xa2\xce\x18\x3c\x88\x12\x1e\xfc\xb1\x61\x48\x02\x7f\x6c\x18\xd4\x93\x20\xdb\xd0\xc3\x1f\x1b\x17\x0a\xf8\x63\xe3\xd2\x27\xfe\x18\xe5\x2a\xc3\x93\x04\xd9\x9e\xb4\x04\xd9\x86\xcf\x24\xc8\xb6\xee\x14\x64\x5b\x7d\x02\xd9\xd6\x3c\x00\xb3\x9d\x09\xb9\xe0\xb9\xcd\xc2\xbc\x03\xa5\x9d\x05\xae\x81\xd2\xce\xaa\x5e\x2e\x2d\xc6\x4e\xdd\x85\x59\xa1\x0e\xcc\x76\x56\xb8\xa6\xb6\xc9\xec\xcc\x03\xb5\x4d\x66\x87\x33\xfc\xbf\xd9\x19\x3b\x3e\xde\x1c\x50\xc0\xc7\x9b\x03\x0a\x80\x6e\xe7\x84\x4f\x40\xb7\x53\x73\x84\x1f\x37\x17\x5c\xe3\xc7\xcd\x05\x05\xfc\xb8\xb9\x90\x35\x7e\xdc\x74\xd3\x11\x1e\xfc\x38\xe2\xbe\xe1\xa1\x96\xc3\x34\xb8\xa6\x48\xd6\x3c\x8c\x1d\x1f\x6f\x1e\x64\x86\x8f\x37\x2f\x14\xf0\xf1\xe6\x85\x17\x9c\x35\x4a\x67\x06\x4e\x1f\xda\x4b\xdf\x0a\xee\xd9\x72\xe5\x16\x1e\xdc\xb3\x25\xc9\xe3\x9e\xad\x04\x75\x0a\x68\xad\xcc\xdc\x82\xac\x5d\x59\xff\x01\xee\x2e\xbc\x59\x38\x72\x4b\x5f\x07\xc8\xda\x55\xe1\x05\x47\x6e\x35\xa8\xe3\xc8\x2d\xcd\x03\x8e\xdc\xea\x50\x6f\x02\x8c\x33\x3e\x9c\xb5\x35\xe1\x13\xa7\x6b\x4d\xa8\xe3\x74\xad\x45\x2f\x38\x5d\x4b\x5f\x00\x4e\xd7\x5a\xbc\x05\x38\x5d\x6b\xab\x17\xc6\x27\x4d\x84\xd3\xb5\xa4\x89\x06\xf4\x0e\x63\xc0\xe9\x5a\xe7\x07\x35\x2e\x02\xc7\x29\xed\x75\x19\x02\x3e\xd7\xd2\x34\xe0\x57\x6d\x29\x30\x7c\x27\xe2\xb0\xe1\xa1\x9a\xd6\x4e\x0c\x81\x6a\x5a\x3b\x23\x4e\xfc\x2a\x8e\x45\x0a\x0f\x7e\xd5\xd6\x07\x80\x5f\xb5\x0b\xaf\x12\x7e\x15\x05\x2a\xc3\x83\x5f\xb5\x9b\x5a\x40\xbd\x1b\xd4\xf1\xab\x38\x08\x29\x3c\xf8\x55\xbb\x21\x24\xfc\xaa\x2d\x25\x05\x90\x77\x0f\xf8\xa4\x5a\x04\xb9\xc0\xe1\xc1\xe7\xda\x53\xd4\x85\x56\x87\xeb\x29\xb4\xba\xf8\x64\x7c\x5b\xd4\x19\xdf\x46\x2e\xf8\x63\xdb\xa0\x87\xcf\x45\xfc\x36\x3c\xf8\x5c\xfb\xf0\xdc\x12\x5c\x9d\x57\x02\x9f\x6b\x4b\xd6\x4b\x70\x75\xf8\x5c\x82\xab\xab\x05\x48\x5b\x4a\x1f\x18\xb1\xe9\x25\xc7\x1f\xb3\xc4\x88\xf0\xc7\x2c\xeb\x3f\x40\xda\x05\x7a\xf8\x5c\x1c\x4c\x14\x9e\x0d\x48\xbb\xc1\x27\x05\x7c\x88\xca\x86\x07\x7f\xcc\x24\x4f\xfc\x31\xeb\xba\x13\x00\x77\xd7\x9d\x00\xb8\x3b\x9c\x11\xcc\xb2\x2e\x7a\x8c\x61\xe8\x3f\xc6\xa0\x97\x7c\x0b\x68\x0e\x9f\xf8\x63\x26\xe9\xe2\x8f\xd9\xe6\xd5\x25\x98\x45\x29\xcb\xf0\x10\xcc\x22\xc3\x37\x3c\x04\xb3\x8e\x94\x37\xfe\xd8\x91\x62\xc0\x1f\x3b\x52\xd0\xf8\x63\xc4\x53\xc3\x83\x3f\x46\x49\xca\xf0\xe0\x8f\x9d\xcc\xf8\xf0\xc7\x8e\x24\x88\xcf\x75\xa4\x26\xf0\xb9\x4e\x61\x0c\xf8\x5c\xa7\xf1\xbe\xe0\x73\x1d\xa9\x5d\xfc\xaa\x23\xb5\x7b\x04\xfc\x56\x9f\xd0\x5b\xea\x13\x7a\x7a\x97\x70\x82\xce\x86\x4f\x9c\xa0\x23\x07\x02\x27\xe8\x5c\xde\x56\x02\x5d\xf7\x81\xc2\x15\xf0\x9b\xef\x41\x50\xe8\xc0\xf8\x04\x85\x8e\x48\x17\x07\xe9\x26\xe4\x49\xa0\xeb\x26\xd1\x03\x26\x2d\x49\x10\xa2\xba\x55\x7d\x02\xc4\xae\x4e\x9d\xe3\xcc\x36\xe9\xb1\x81\xe3\xcc\xf6\x65\xde\x39\xce\x6c\x5f\xdf\x31\x09\x01\x97\xe8\xf2\xfd\x05\x5c\xa2\xeb\x6e\x56\xe0\x38\xb3\x4d\xc4\x36\x04\xdc\x9e\xcb\x17\x17\x70\x7b\xee\x52\x9f\xf0\xc2\x3b\x11\xa8\xc5\x71\x91\x52\xc0\x25\xba\x98\x9c\x80\x4b\x74\x0d\x0a\x41\xa0\x70\xfd\x87\x24\xbc\x04\x59\xe0\xf8\x34\x23\xad\x36\x04\x81\x9f\x1f\xe8\x09\xfc\x1c\x18\x83\xc0\xcf\x41\x7d\x02\xb6\x4e\xf0\x09\x18\x8c\x02\x9c\x81\x63\xd7\x8c\x84\xd8\x10\x22\x98\x66\xbe\xb8\x10\x01\x62\x63\x56\x42\x04\x88\x5d\x7f\x00\xa8\x0e\x21\x0a\xa3\x5d\x79\x0c\x08\x35\xde\x59\x88\x0c\x81\x8f\x31\x44\xe1\xb7\x11\x4b\x64\x08\x9a\x06\x90\x68\xe4\xd1\x06\x4e\x79\xb3\x07\xdb\xc4\x29\x6f\x46\x9c\x39\x70\xca\x9b\x3d\x58\xf7\x10\x19\xde\x46\x64\x82\x6c\xe3\x8f\x05\x41\xb6\x4d\xff\xc1\x27\x16\x27\x24\xf8\xbc\x70\x9d\xe0\xf3\xc2\xe7\x27\xb8\x1b\x3e\x3f\xc1\xdd\xf0\x99\x80\x65\x3f\xf0\x22\x70\xb7\xef\xa7\x87\x20\x70\x77\x10\x3d\x60\xd2\x28\xbe\x00\xba\x2d\xf0\x5a\x87\x0c\x4c\x1a\x9f\x8b\x33\xe6\x8c\x03\x86\x02\x67\xcc\x59\xa8\xba\x13\x98\x34\x7e\x55\x70\xbf\xca\x02\x9e\x70\x10\x7c\x1c\xbf\x2a\x08\x3e\x2e\xe9\x82\x98\x0b\xf8\xbe\x9c\x4d\x67\x81\xcf\x3d\x08\x5a\x3e\x44\x41\x00\x6e\xfa\x14\x60\x7c\xf3\x9c\x00\xe3\x92\xa7\x00\xe3\x18\x92\x20\xc0\x38\x1e\x11\xa7\xd1\x59\x90\xcc\x40\xcc\x71\x50\x50\x08\x20\xe6\x28\xb9\x19\x02\x60\xf2\x18\x44\x01\xc0\xb1\x24\x08\x62\x2e\xa2\x0a\x38\x8d\xce\x88\x4f\x87\x00\x60\x9c\xc8\x72\x08\x00\xc6\x63\x86\x9e\x40\xe1\x85\x3e\x2b\xe0\x67\x4c\x78\x10\x28\x1c\x23\x13\x04\x0a\xd7\x4b\x2e\x50\x38\xbe\x53\x10\xb8\xbb\x23\x25\x81\xbb\x07\xd4\xc1\xc1\x45\xbd\x91\x0d\x7a\x53\x2d\x80\xdf\x78\x4b\x41\xc0\x6f\xa9\x89\x26\x20\x36\x63\x6f\x02\x62\xc3\xa7\x40\xe1\x06\x2f\x02\x85\x63\x98\x83\x40\xe1\x52\x0c\x02\x85\x63\x64\x82\x40\xe1\xac\x17\x38\x19\xcf\x92\x64\x0d\x0a\x2f\x3d\xbc\x83\xa0\xf0\x92\xe4\x09\x0a\x2f\x45\xde\x79\x50\x78\x29\xc3\x19\x28\xbc\x94\xd5\x0b\x20\x66\x49\x17\x14\x5e\x2a\xa2\x07\x88\xb9\x88\x17\x1f\x43\xd2\xbb\x0b\x98\x3c\x75\xd1\x3b\xb4\xf8\x52\xbb\x00\xdc\x8c\x16\x84\x5e\x92\xda\x1d\x8c\x41\x8a\x76\x30\x06\x1c\x9d\x00\x7a\x2f\xe1\x6f\x72\x66\x9f\x25\x49\x17\x10\x7a\xda\x70\x36\x18\x83\xde\x4f\x90\x7d\x49\x6a\x57\x00\x75\x49\x57\x00\x75\xe9\x02\x90\x7d\xe9\xc0\xe7\x10\x48\x9b\x31\x0c\x81\xb4\x99\xb1\x21\x90\x36\x12\x04\xf5\x97\x1f\x71\xed\xe3\xcb\x52\xc9\x13\x60\x74\x80\x4f\x10\x81\xa4\xb9\x86\x30\x01\x46\x4b\xf2\x13\xf4\xb3\x24\x0f\x22\x30\x4b\x33\x80\x08\xcc\x05\x3e\x41\x04\xfe\xb0\x38\x67\x08\x80\x05\xb3\xf4\xfa\x64\x08\x2c\xd4\xc2\x64\x08\x4d\xc4\x19\x82\x26\x65\x32\x84\x01\x2b\x40\x07\xc9\x4f\x0d\x01\x34\x3e\x25\x37\x43\x58\xf4\x89\x47\x14\x16\x7d\xca\xfa\x2d\xfa\xdc\x7c\x1c\xe0\xf6\xb3\xd1\xda\x60\xc9\x0f\xd4\x37\x58\x72\xbd\xd6\x60\xfa\x39\x28\x28\x70\xe8\xa1\x65\xa9\xe4\x0d\x14\xfa\x81\xc2\x06\x6c\x2d\x25\x0c\xde\xbf\x48\xf0\xe0\xfd\x89\x1e\x87\xb0\x01\x1c\x4b\xf0\x1b\x08\x75\x64\x0c\x1b\xb8\xb3\xd4\xcb\x06\xee\x9c\x69\x51\x0b\x80\x08\x71\xe0\x78\x44\x2b\xb2\x9a\xd4\x02\x28\x92\x2e\xb5\x00\x88\x1e\x07\x8e\x47\xb4\x22\x59\x1b\x7c\xca\x27\x31\xf8\x94\xe4\x4d\xb0\x6c\xe4\x42\x9d\x80\x32\xf4\x1f\x7c\x6a\x1e\x4c\xb0\x6c\x46\x4b\x9d\x80\x22\x95\x6c\x40\xa8\xf5\xca\x1b\x10\x6a\x29\x14\x6a\x08\x90\x39\x1b\x02\x35\x04\xca\xe1\xa3\xa2\x86\x00\x99\xb3\x21\x50\x43\xa0\xe0\xb9\x05\x6a\x08\x54\x3c\xb7\x40\x0d\x81\x8a\xaf\xc6\xe9\x8c\x56\xa3\xfa\x04\x26\x2d\x4f\xe3\x00\x93\x4e\xba\x13\x10\x33\x8b\xdb\x40\x45\x81\xaa\x57\xfe\x00\x62\xc6\x87\xe5\x1c\x47\x23\xb2\x1c\xc2\x15\x84\x9a\x3e\xaf\x20\xd4\xcc\x2d\xd5\x06\x38\xd0\x28\x70\xc6\xa3\xd5\xca\xc7\x78\x05\xa8\xd6\x7f\x00\x95\xa5\xbc\x29\x0d\x40\xc1\xcf\xc0\x19\x8f\x56\xe5\xe3\x51\x1a\xa0\x4a\x79\x53\x1a\xa0\xea\x2d\xa7\x34\x40\xdd\xe2\x05\x3e\x1d\xa4\x13\x38\x0d\xd2\x2a\xc1\x9e\xf8\x08\xee\x1c\x68\x21\xc1\xab\x16\x90\x5f\xfc\x38\xce\x7f\xb4\xe6\x7b\x1d\x81\xf3\x1f\xad\xf1\xd6\x71\xfe\xa3\x91\x39\x1b\x38\xff\xd1\x9a\x27\x38\x06\xce\x7f\xb4\x56\xf4\x9f\x20\xc6\xf4\x42\xa1\x00\x8e\x37\x0a\x9c\xff\x68\xad\xea\x39\x00\xc0\x4d\x14\x80\x18\x37\x3d\x07\xc4\xb8\xab\x05\xc4\x18\x27\x81\xb3\x21\xad\x11\x10\xe0\xfc\xc7\xb9\x31\xd3\x9c\xf1\x38\x37\xdf\x58\xd4\x21\xbc\x11\xb9\x80\x7f\xdc\xb8\x3d\x11\x74\xe2\x26\xa8\x11\xc1\xdd\x6d\x56\x24\xb1\xe8\xb0\xe0\x4a\x0b\x54\x2a\xeb\x93\x58\xc1\xb6\x12\xac\x8b\x95\xff\x26\x77\x02\x6f\xdb\x7c\x0f\x11\x08\xdb\x5e\x50\x00\xc2\xc6\xe1\x0f\x81\x73\x1c\xa7\x56\xc5\x9c\xc7\x38\xb7\xd1\xcb\x10\xee\x15\x29\x71\x30\xec\xbe\x70\x36\x18\x2d\x2b\x5f\xce\x55\x9c\x1c\xfe\x10\x22\x07\xc3\x1a\x9a\x88\xd3\x12\xa7\x3d\x3f\xd8\xde\x0b\x1c\x96\x38\x4d\x22\xe3\x24\x58\x8b\x30\xbd\x00\xc8\xf2\xe1\x44\xce\x7e\xb5\x0c\x9b\x9c\xcc\x6a\x15\xc6\x38\x99\x95\xea\x6b\x21\x1a\xa0\x54\x62\x3d\xf1\x08\x04\x8b\xc8\x8e\x40\xb0\x08\xe2\x00\x2e\xc5\xb3\x89\x97\x3b\xbd\x26\x6b\x48\x80\x98\xcd\x37\xa0\x02\x67\xfd\x4d\xf3\xad\x95\x90\x80\xfc\x1a\x2f\x79\x12\x78\x16\x3b\x99\x04\x9e\x75\xdc\x4f\x48\x02\xc1\x7a\x5e\x64\x48\x00\x5d\x0f\x5e\x48\x02\xe8\x4a\xa5\xb4\x90\x00\xba\x72\x4e\x43\x48\x82\xa1\xe2\x93\x24\xc1\x50\x51\xd0\x49\xb0\x50\xd4\x0b\x27\xce\xcd\x43\xd0\x86\x13\xe7\x26\xe7\x34\x84\x24\x20\x28\xcb\xe0\x54\x38\xc9\x97\x4f\x25\x71\xfa\xf1\x21\x84\xc3\x69\x74\x93\x33\x1c\x02\x27\xce\xcd\x53\xa1\x50\x81\x8c\x22\xcf\x04\xde\xf2\x10\xc2\xe1\xc4\xb9\x49\x85\xb5\x90\x78\xb1\xa8\xa2\x16\xd2\xa0\xc5\x82\x39\x0d\x00\xa4\x78\x7c\x49\x67\x05\xa3\x34\xd2\x14\x44\x15\xea\x3a\x39\x98\x08\x71\x5a\x8c\xef\x40\x6f\x03\x20\xc5\xd3\x48\x9f\x47\xe4\x32\xa2\x03\x80\x94\x4f\x2c\xe9\xc0\xdc\x04\x85\x03\xa2\x93\x25\x72\x3a\x20\x3a\x51\xb4\xe9\xf3\x30\x5d\xfa\x04\x2c\x7f\xfd\x4c\xc2\x90\x81\x65\x5f\xdf\xa6\x0b\x19\xa8\xf0\x65\x55\x95\x99\x23\x2d\x67\x33\xf3\x70\x3d\x1f\x22\x64\x20\x18\xcf\xc3\x73\x00\x1d\x1e\x47\xcc\x85\xdc\x74\x48\xad\xf3\xa2\x83\x97\xa8\x16\x16\x74\xb8\xd2\x53\xe8\x45\x88\x47\xdf\x4d\x09\x59\x88\x47\x71\x46\x22\x98\x9f\x12\xf1\xd1\x32\x5a\x50\x20\x33\x9f\x5c\xa5\x90\x49\xa2\x7a\xf0\x37\x75\x64\x12\x87\x3f\x04\x1d\x53\xf4\x10\x05\xd6\xc1\x44\x5a\x27\xea\xb8\xa1\x07\xd3\xa8\xe3\x86\x28\xf4\x15\x0a\xd0\x29\xad\xe9\x0a\xd9\xc6\x01\xe5\x5d\xc8\x05\xe6\xd8\x86\x50\xc8\xf7\x0d\xbc\x9f\x85\xfc\x5b\xf2\x8a\x82\x4e\xbd\x09\x38\x02\x85\x84\x58\x8a\x72\x85\x42\xf2\xaa\xd6\x74\x85\xb4\xd3\xd0\xa1\x47\xda\xa9\xd6\x74\x85\xb4\xd3\x80\xba\x2e\x59\x87\xc6\x42\xbd\xe9\xb8\x57\x28\xe8\x90\x5a\x56\x0f\x85\xe4\xc0\x40\x58\x41\xe7\xc0\x68\xa5\xa6\xf3\x55\x38\x00\x21\x14\x92\xf5\xb4\x1a\x2b\x43\x47\xba\xf2\x1c\x73\xc4\xe1\x08\x41\x67\xaf\x44\x49\x02\xbc\x44\x4c\x8c\x56\x47\xb3\x66\x78\xd1\x81\xab\x84\x69\x8a\x90\x92\x38\x48\x45\x48\x49\xc9\xe5\x13\xb9\x08\x2f\x64\xed\x53\x40\x2b\x14\x32\xec\x39\xac\x20\x14\xe1\x0a\x27\xf4\x84\x2b\x64\x9f\x40\x67\x93\x78\x46\xd0\x77\x55\x32\xa7\x8a\xac\xc8\xe2\xa1\x82\x98\x8b\x04\x0b\x2a\xd3\x4e\xe5\xab\xc0\x39\x22\x2b\xb2\x4d\xc0\x39\x22\x2b\x62\xeb\x2b\x49\xe6\x5a\xa8\x55\x0e\x49\x8a\x58\xfe\x4a\x9a\x77\x72\x2c\x51\xa8\x3a\x58\x14\x3b\xc9\x39\x22\x2b\xb1\x31\x50\x99\x4c\x2d\xb1\x38\xf3\x63\x25\x3e\x80\x4a\x16\x2f\x35\xb2\x42\x25\x53\x97\xd3\x10\x42\x2d\x42\x12\x42\x01\x04\x14\x09\x3a\x81\x73\x3d\x96\x96\x5f\x9c\xcf\xb1\x12\x16\x95\x13\x32\x56\xc2\x6a\x56\x70\x46\xd4\xc1\x0a\x95\x0c\xd1\x84\xff\xce\x29\x18\x2b\x61\x35\x39\x05\x63\x51\x07\x2b\x54\x5e\x82\x84\xd5\xac\xe4\x4c\xe6\x07\x0a\x40\x53\x32\x26\x8e\xf3\x1d\x56\x46\xf5\x54\x3e\x46\x2d\x79\x2a\xa0\x8b\x8c\x89\xab\x80\x2e\xa8\x59\x15\x38\xb5\x61\x91\x5a\x13\x2a\xf0\x85\x8c\x89\xe3\x1c\x83\x95\x31\x63\x94\xfd\x5f\x19\x33\xd6\x84\x16\xc4\x70\x35\xa1\x05\x51\xbb\x4d\x78\x3d\xcc\x58\x23\x3f\x9c\x42\x51\xa1\x09\x15\x87\xe1\x6a\x42\xc5\x61\xb8\x9a\xb0\x67\x98\xaa\xa6\xe3\x49\xf1\x84\x5b\x15\x62\x2e\xd1\x02\x15\x87\x2a\x68\x3a\xac\x14\xe3\xd4\xc8\x13\x2e\x28\xb0\x06\xa0\x9a\xa2\xfc\xa1\x91\x3d\x5a\x58\xf8\xb6\xad\x83\x45\xb9\x13\x95\x55\x30\x0f\x94\x71\x5f\x35\x40\x0f\x74\x69\x8d\x3c\x07\xb0\x82\x12\x48\xa1\x73\x1e\x63\xe5\x5d\xea\x8c\xb6\xe2\x73\x51\xa0\x7c\x55\x36\x41\x3b\x6f\x4f\x65\xb7\xa1\x57\x21\xca\x5c\x2e\x5d\xf8\x2b\xd4\x7c\x07\x4c\xd4\xd8\x4d\xe9\x9f\x47\x74\x42\x01\x88\x10\x25\x74\x42\x07\xc4\xd2\xf0\xf8\xa8\xdd\xbc\x28\x62\x13\xba\xce\xb0\xe4\xfd\xec\x3a\xc3\x92\xd9\xa4\x96\xf2\x6a\x7c\xee\x54\x41\x5e\x6d\xea\x3f\xfa\x64\xeb\x6f\x04\x9d\x99\x59\x69\x71\x27\xd1\x6a\xaa\x04\xaf\xc6\xd7\x38\xb2\xe0\x5f\x3c\x97\x05\xff\xf2\xb1\x53\xdf\x77\x75\x54\x1d\x25\x76\x17\x59\x07\x61\x60\xe2\x3a\xee\xd9\x40\x4a\xe4\x20\x04\x4a\xde\xae\x8e\x9a\xa7\xe4\xed\xa2\xa8\x7b\xa0\xe8\xec\xea\x28\x37\x8a\xce\xae\x8e\xd2\x1f\xe0\xf5\x7a\x83\x3a\xd9\xd4\x1d\xa5\x4f\xc1\xd6\xd5\x79\x93\x87\xe0\x5f\x1b\x0a\x80\xac\x3a\x6a\x9e\xe2\xaa\xab\x13\xd4\x18\x40\xa0\x3a\x6a\x7e\xa0\x4c\x3b\x6a\x7e\x08\xe6\xf4\x20\x09\xc1\x9c\x24\x09\x01\x8d\x30\x01\x94\x0d\x5d\x03\x55\x4e\x71\xce\x35\x50\xe5\x13\xe0\xc8\x40\x95\x53\x2d\x73\x0d\x34\xd1\x04\xad\x31\x50\xde\x13\xb4\xc6\x40\x79\x53\x2d\x73\x8d\x1f\x9d\xbd\x17\x66\x16\xe2\xca\x85\x3b\x75\x64\x26\x5a\x7e\xea\xc8\x4c\xb4\xfc\x04\x6a\x3a\x08\x39\x4c\x1d\x4c\x89\x2a\x9f\x3a\x98\x92\x65\xdb\x2c\xc2\x58\x19\x2d\x30\x56\x9e\xda\x16\x28\x57\xb9\x06\x4a\x9f\x72\x95\x6b\xe0\xd9\x4c\xc0\x05\xe3\xaa\x45\x2f\x88\x93\xd2\x92\x4b\x7b\xf4\x94\x7a\x5c\x13\x35\x3f\x49\xef\xa7\xac\x7a\x98\xa8\xc8\xc9\xc7\x31\x75\x88\x24\xcb\xa1\x09\x3e\x70\xb2\x80\x9d\xa4\x95\x6b\x3f\x9d\xe2\x87\x6b\xb2\xe1\x45\xf1\xc3\x35\x51\xf3\x73\x0b\x2b\xc5\x73\x3a\x44\x52\xa2\xa6\xbe\xc0\x44\xcd\x53\xd2\x70\x4d\x16\x71\x94\x34\x5c\x53\xf2\x44\x25\x6b\x77\x9d\x92\x86\x6b\xb2\xf1\x48\x49\xc3\x35\xf9\xe0\x28\x69\xb8\xb4\xd7\x4e\x11\xc3\x35\x97\xfe\x03\x63\x85\xe9\xa0\x88\xe1\xd2\xce\xfb\xc4\x2e\x4f\x4c\xc7\x12\xc2\x0b\x45\xbb\x40\x55\x2d\x8c\xc5\xc2\x93\xa2\x00\x7b\x58\x9c\xd5\xbd\x30\x1d\x8b\xb3\xba\x29\xb2\x1e\x96\x50\x47\xf8\xbe\x4b\xd0\x22\xa2\xea\x4b\xd0\x22\x3e\xcd\x25\xc0\x10\x26\x67\x09\x30\x84\xc9\x59\x02\x0c\x31\x0f\x4b\x80\xa1\x2c\x0a\x00\x86\x78\xe5\x57\xd6\x71\x93\x2e\xb3\xc5\x7b\xb6\x30\x40\x54\x7b\x5b\x0b\x73\xbb\xaa\x90\x53\xf4\x09\x74\x63\xf1\x11\x2f\x2a\xa4\x50\x80\x3d\x50\xff\x6c\x2d\x3e\x69\xea\x98\xad\x65\x6a\xf1\x1c\xa6\x6a\x01\x6d\x58\x98\xaa\x05\xb4\x61\x49\x82\x00\x16\xb4\xdd\x4d\x45\xb0\xb5\x31\x5c\x0b\xe0\xc1\xc6\x54\x2d\x2a\x73\x6c\xc9\x93\xca\x1c\x5a\xae\x53\x1f\x6c\x6d\x0c\xd7\x02\x33\xaa\x8d\xf1\x65\x3a\x9d\x91\x3b\x4d\xa7\x33\x42\x1d\x5c\x21\xe5\xad\x02\x85\xb7\xd6\xc6\x33\x5d\x20\x02\xf7\x80\x3a\xfe\xd8\x46\x95\x53\x6a\x6b\x69\x61\xbf\x40\x04\x6e\x7c\x74\x0a\x6f\xad\x8d\x31\xa4\x48\xd6\xd2\x76\xf7\xe6\x7d\xd9\x18\xc3\x8d\x22\xda\x18\xc3\xad\xf3\x26\x1d\xf0\x15\x28\xb2\xb4\x8c\x95\x13\x45\x96\x96\x11\x1d\xa7\xc8\xd2\xa2\xae\x7a\xd8\x49\xe7\x38\xd2\x27\x30\x2e\xc3\x88\x6e\x01\x94\x48\x0a\xd8\x82\x1d\x61\x44\xb7\x40\x3a\x18\xd1\x2d\x90\x4e\x83\x02\x8a\xdd\x88\x80\xab\x36\x0d\xc5\xa7\x82\x6a\xd3\x18\x6b\x2c\x55\x87\x31\xcc\xad\x6a\xb0\x50\x52\x2a\xa8\x5e\x8a\xa1\x89\x54\x2f\x85\x22\x52\x61\x6f\x9d\x7a\x48\x2f\xf8\xd3\x87\xf8\xb4\xea\x89\x1c\x54\xb9\x6a\x86\x1c\x56\x63\xaa\x19\x42\x69\xa8\xa0\x9a\x21\xe7\x63\xb4\xdf\x55\xc9\x2a\x27\x42\xf1\xf2\xb0\x4d\x08\x21\x08\xe0\x86\x1f\x94\x9b\xca\x7b\x50\x51\x2a\xa8\xdc\xc6\x21\x7a\xa5\x6a\x18\x87\xe5\x9e\xaa\x61\x68\x49\xae\x6a\x18\x87\x78\xaa\xea\x58\x68\xd7\xda\x1e\x21\x84\x26\x2d\xe8\x11\xbd\x32\x5e\x89\x83\xff\xa0\xda\x03\x87\x45\x9c\x70\xfb\xda\x8b\x36\x54\xf9\x65\x0b\xcf\x98\x3e\xed\x45\x1b\xd3\x77\x11\x92\xf1\xa1\x52\x92\x3c\x08\x30\x7e\xb1\xee\x02\x8c\x5f\xac\xbb\x09\x3d\xc4\x2b\x21\x58\xe8\xc5\x2e\x0b\x16\x7a\xb1\xcb\xe0\xa8\xf6\x83\xd5\x04\x47\xb5\x1f\xd4\x3c\x48\x9f\xfd\xa0\x92\x3f\xf1\x3b\x6c\x75\x7c\x82\x74\x50\xa6\x9f\x20\x1d\x5e\x90\x43\x46\x82\xb6\x36\x05\x62\xd1\x66\xa6\x40\x2c\x0f\x7e\x80\x40\x1e\x21\xd2\xe7\x15\x30\x66\xd1\x02\x18\x83\x2a\x10\xc8\x23\x60\xf9\x05\xf2\x08\x28\x86\xcb\x0e\x7a\x20\x00\x71\x1f\x9d\x57\xd8\x68\xd1\x0b\xca\xf4\x06\x41\x68\x78\x2e\x08\x42\x53\x69\x71\x26\x21\x06\x4f\x70\x89\xc0\x4c\x0b\xda\x10\x30\x71\x82\x21\x68\xa9\x7b\x49\x58\x0b\x28\x0d\x41\x0d\x02\x46\x4d\x50\x83\x30\xf5\x9c\xa0\x37\x99\x16\xa3\xc5\xa8\x09\x5c\x40\xdd\xea\x70\x39\x54\x21\x60\x9c\xae\xce\x2b\x64\x25\x73\x3f\xcf\x0f\x84\x1e\x99\xeb\x14\x0c\x0a\xca\x40\x8f\x64\x71\xdc\xcf\x73\x00\xe9\x93\xb9\x8d\x98\x2a\x65\x92\x53\x8d\x3a\x5c\x9d\xe0\x87\x39\x52\x56\x74\xc4\xac\x5c\x72\x5d\x22\x66\xe5\xea\xd4\x3c\x42\x77\x97\x9c\x15\x6d\x4a\x2a\xc3\x37\x62\x64\x2e\x20\x2b\x8a\xfb\x04\xe5\xe6\x52\x1d\x3a\x28\x37\x37\x62\x80\x94\x9b\x1b\x31\x40\xca\xbf\x8d\x04\xac\x94\xbc\x1a\x31\x40\x97\xbc\x0d\xea\x41\x07\x25\xa8\x6a\xe5\xab\x04\x55\xad\x7c\x95\xa0\xaa\x95\xef\x15\x60\x08\x53\xa5\x04\x55\xca\x00\x45\x25\xa8\x46\xdf\x2a\x8e\x4a\x50\x65\xfb\x32\x2a\x41\x35\xfa\xdb\x1a\x95\x76\xca\xf6\x65\x54\x6a\x29\xeb\xe7\xf8\x00\xd9\x61\xfb\x32\x2a\x2d\x33\x65\xfe\x23\x2d\x33\x79\xa0\x2b\x3e\x02\x95\xf8\xaa\x31\x3e\x19\xd0\x8c\xef\xbb\x44\xa5\x11\xa6\x06\x05\x52\x05\xd9\xb0\x8c\x4a\xe4\xa3\xc6\x74\x7c\x38\xa4\x82\x6d\xc8\xa8\x44\xb7\xe4\x06\x28\x3e\xcc\x7b\x32\x28\x80\x12\xa0\xfa\x4d\x54\x1e\x5a\x3a\x50\x20\xbf\x3f\xb9\x71\x8a\xca\xe1\x62\x03\x31\x2a\x87\x2b\x6b\xb4\xe4\x15\xe5\xf4\x83\xc0\x45\x54\x9a\x4f\x2e\x3c\x46\x9a\x0f\x05\xa0\xa3\x92\x69\x72\x83\x00\xc9\x34\xd9\x6d\x53\x7c\x98\x30\x4a\xda\x44\x25\xbe\x64\xb7\x46\x91\x14\x92\x9d\xdd\x1a\x45\xb2\x31\x76\x76\x65\x13\xc9\xc6\xd8\x5e\xc8\xf9\xd7\x91\x2c\x87\x9d\xdd\x36\x45\xb2\x1c\x36\xc5\x68\x22\x59\x07\x9b\x4d\xbb\x18\xc8\xe6\x2c\x0f\x14\x74\xa6\x9d\x5b\xaa\xc8\xde\xfe\x2e\x01\x7a\x08\x9e\x7a\xc9\x91\xfd\xfb\x5d\x22\xd4\x1b\xff\x25\xb5\x00\x5d\x24\x9e\x13\x1c\xa4\x41\x41\x20\x0f\x47\x2b\x45\xf6\xa9\x77\xd1\x68\x05\xd6\xe8\x3c\xf7\x09\xd6\x48\xb4\x04\xd6\x60\x44\xa4\xf5\x95\x09\xbd\x29\x78\x46\xa3\xc5\x88\x36\x14\xf8\x88\x8b\xaf\x2c\x62\x20\xd1\x8d\x0d\xb6\xc8\xb6\xe7\x66\x83\x2d\xb2\xed\xb9\xcb\x81\x17\x3e\xf7\xc2\xc7\xc1\xb6\xe7\x2e\x7c\x1c\x41\x67\xcc\x05\xa8\x93\x32\x56\x23\xd4\x49\x19\xab\x11\xe9\x92\x32\x56\x7d\x11\x1e\xd9\x24\xdc\x35\x31\x06\x52\xc6\x6a\x62\x56\x48\x19\xa3\xee\x71\x64\x93\x70\xb3\x31\x17\xc3\x11\xac\x43\x2d\xc1\x3a\xe0\x8c\xcf\xbd\xfa\x02\x36\xb2\xe1\xb5\xab\x47\xc7\x63\x04\xd9\x57\x3d\xc1\x2a\x46\xf2\xc3\xab\x2f\x60\x23\xdb\x58\x9b\xcd\xb7\xc8\xb6\xd2\xa6\xa4\x4d\x64\x5b\x69\x53\x95\x38\x46\xf2\xae\xa9\x35\x1c\x23\x9f\x74\xf5\xec\x88\x18\x79\x07\xa9\x35\x1c\xd9\x56\xda\xd5\xa0\x47\x76\x73\x35\x38\x23\xbf\xb8\xa2\x42\x22\x59\xc3\x94\xb4\x89\x91\xcc\xe0\x16\xa0\x5e\x75\x16\x5e\xa4\xd5\x68\x41\x8f\xb7\xae\x21\x17\xb6\x9c\x76\xcb\x70\x46\xc6\x6d\x73\x6c\x5d\x8c\x9c\x42\x43\x11\x9b\x18\x9b\x40\x1e\x50\xe7\x8d\x64\x83\x2d\x46\x72\x65\x9b\xa4\x84\x0a\x69\x7c\x71\x91\x5c\xd9\xe6\x5b\xef\x31\xa2\x50\xda\xe4\x3f\x0c\x49\x93\x94\x86\x4e\xcd\xa3\x17\x12\x5b\xdb\x62\xec\xa4\x9d\x36\xde\xc1\x38\x05\xeb\x80\x97\x29\x58\x87\xcf\x7b\x14\xc0\xe5\x22\x09\x01\x5c\x2e\x14\x30\x32\x84\x46\x62\xdc\x3a\x0b\x0f\xce\x00\xaa\x74\x94\x70\x44\x49\x11\x28\x89\x91\xb7\xae\x47\x78\xc1\xe4\xf4\x84\x5c\x04\xd6\xc8\xdc\x29\x40\x06\x6f\x56\x24\x91\xaf\x57\x78\x11\x0a\xc2\xb7\x2f\x63\x02\x41\xda\x7d\xe5\x1b\x13\x06\xa1\xbb\x5b\x10\x13\xef\x59\xf7\x4d\xde\x98\x70\x35\xba\x6f\x9a\xc7\x14\x74\x8c\xdd\xa1\x05\xd7\x6e\xfa\x63\xc2\x2d\xe8\x6e\xec\x63\x42\x2f\x75\xbe\xbf\x84\x5e\xea\x97\x3e\x8b\x50\x10\x3c\x57\x74\x00\xdd\x8f\x54\x72\x22\x59\x7c\xb8\x8f\x10\x13\x2f\xcf\x40\x81\x25\xfc\x87\x91\x21\xae\x53\xec\x2a\xc4\x75\x8a\x5d\x85\xb8\x4e\x8e\x6b\x0c\x41\x27\xc7\x75\xfa\x5c\x02\x33\x24\x5a\xdc\x39\xa0\xb0\x74\xc6\x9c\x4f\x74\xda\x02\x2c\x40\x6f\x0b\xb0\x80\x70\xc9\x56\x1d\x1b\xe1\xa2\x42\x86\xe9\x3f\xc0\x0c\x6e\xeb\x63\x42\x85\x0c\x6c\x1a\x5b\x4e\x7b\x1c\x38\x23\x9b\x73\x62\xb7\x12\x1e\xe6\x0c\xf4\x89\x87\x39\x3d\xf1\x25\x66\xd4\xc4\xc4\x66\xe7\x47\x10\x05\xa7\x97\x01\x48\x4c\x5f\x05\xc4\x2c\x70\x01\x76\x99\x4d\xa6\x3d\x51\xc9\x19\xf3\x30\xb1\xc4\x99\x04\x7b\x4a\xbe\xc4\xcc\x81\x54\x94\x7c\x89\xb9\xea\x74\x38\x7f\x75\xd9\x8e\xda\x13\x9b\xcd\x76\xd4\x9e\x5e\xa6\x3e\x66\x50\x86\x13\x2b\x9d\xf9\x54\x56\x84\x02\xf9\xd3\x4b\x5c\x93\x07\xbd\x50\xb4\x19\xec\xd9\x72\xbf\x38\x66\xfc\xf7\x85\x39\xca\x4b\x49\xfb\x50\xd8\x3a\xe5\x0d\x49\xf0\x51\x51\xba\x25\x66\xf0\x5e\x0b\x13\x9e\xb7\xd2\xfb\x7d\xfe\x32\xbe\xda\xc2\x84\x67\x64\xbd\x50\x1a\x45\x27\xc7\x61\xa6\x8b\x4e\x8e\xf3\x18\x6d\x64\x03\x6a\x2f\x8c\x76\xc1\xd7\xa6\x96\x4a\x2c\x98\xf0\x85\xd1\x2e\x00\x55\x16\x46\x9b\x4d\xa6\xbd\x31\xd3\x6c\x32\x6d\xaa\xa0\xc4\xa2\x73\xcf\x30\xd3\x45\xe7\x9e\x61\xa6\x0b\xc0\x8a\xed\xa0\x92\x58\x00\x48\x6c\xcc\x74\xa9\x3a\xe5\x2d\xd1\x22\x03\xbd\x40\xbd\x2a\xc3\x9e\x3b\x39\xf1\x7b\x7b\x26\x43\x2c\xcc\xd1\xf6\xf4\xbc\xc8\xa6\xd6\xde\x28\xda\xd2\x74\xae\x1b\x7c\x02\x5f\xd8\x0d\x3e\xbb\xf2\xed\x5d\xd6\xe5\x33\x6f\x1e\x0a\xca\x86\x5f\xf0\xc2\xb7\xb2\x37\xbc\x90\xf5\xbd\x31\xda\x1c\xb8\xbf\xf7\x65\xb4\x7c\x01\xf6\x30\x5a\x32\x9f\x0d\xc5\x57\xc8\x7c\x36\xdf\x0c\x8b\x3a\x9f\xde\x78\x27\x2a\xfe\xad\x61\x8a\x2b\xfe\xad\x61\x8a\x75\x7a\xbc\x61\x52\x2b\x92\x37\xcc\x66\x45\xf2\xd6\xe9\x13\x59\x1b\x66\x93\x5d\x9f\x4d\x6d\xea\x58\x75\xb0\x9b\x07\x90\x62\xd5\x81\x69\x18\x43\x76\x6f\xb6\x61\x0c\x2b\x4e\x90\x5d\xfa\x04\xe9\x40\x78\x20\x56\x90\x0e\x27\xd0\x27\xce\xcc\xc1\x34\x56\x1d\x1a\x86\x69\xd4\xc9\xdd\x27\x43\x81\x75\xe9\xc1\x18\x56\xd6\x20\x54\x80\x8e\x95\x42\x0f\xc7\xd3\x55\x63\x45\xdb\x1c\x3c\xef\x6a\x3a\xb2\x0c\x29\x29\x3b\xbd\xc3\x8b\xf2\xd1\x3b\xcf\xf1\xce\x1f\x8c\x61\xc5\x89\x3d\x9e\xef\x11\x1b\xe5\x06\xce\x8f\xb6\xf7\x62\xc3\x8e\x1c\x4f\x05\x89\x0d\xfc\xd5\xc1\xfa\xe9\x24\xe6\x83\x90\x5a\x52\xe2\xfa\xa6\x45\x12\xbd\xc7\x76\x63\xc3\xbf\xbd\x58\xbf\x06\xca\xe9\xa2\xdc\xd8\x1e\xda\x17\xeb\xc7\x86\xd0\xbe\xd8\xbb\xc6\x6b\x7d\xb1\x70\xad\xe9\xc4\xb2\x4e\x8b\x94\x73\x84\xd4\x78\x75\x2f\x16\xae\x81\xbc\xb9\x58\x38\x9d\xa8\x7c\xb1\x69\x6d\x28\x39\x9d\x11\x61\xeb\xef\x82\xde\x54\x72\x3a\x63\xc0\xd6\x5f\xec\x5d\xc3\xd6\x5f\xd4\x7c\x03\x32\x7a\xb1\x7e\x3a\xd3\xf8\x62\xfd\x74\x6e\xf1\xbd\x8c\x8f\x94\xaa\x07\x33\xd6\x74\xba\x18\xaf\x75\xd7\xe9\x62\xd8\xfa\xfe\x79\x2e\x98\xfe\xd3\xb9\x60\x4e\xaf\x2b\x1d\x1d\x83\xd7\x95\x8e\x8e\xc1\xeb\xca\x08\xe7\x05\xe9\xca\x08\xe7\x05\xe9\x91\xa4\x76\xdf\x22\x89\x5d\x79\xde\x98\xc6\xae\x3c\x6f\x4c\x23\xa7\xfc\xda\x83\x31\xe4\x94\x5f\x7b\x30\x86\x9d\x33\x3f\x1e\x8c\x21\x67\xf7\xda\x83\xb1\x60\xc3\xcb\x1e\x83\x33\x4e\xe4\x78\x58\xd2\x71\xea\xae\x3d\x98\xbf\xce\xe9\x19\x0f\xe6\x8f\xe3\x73\x8d\x63\x0d\x62\x27\xab\x96\x1a\xcc\x91\xa3\x6e\x2d\x3c\x50\x27\xe7\x35\x60\x1a\x39\xe0\xd5\xc8\x10\x88\x9d\xc4\xc8\x80\xf9\xe3\xd8\x56\x0b\xa8\xba\x4e\xfa\x61\xc0\x18\x72\x38\xaa\x85\x81\x3c\x39\x11\x27\x60\x0c\x39\xc8\xd4\xa8\x90\x1c\x39\xc8\xd4\x82\x46\x4b\xda\x5b\xc0\xbb\x1e\xa4\xa1\x05\x8c\xe1\x78\x78\x0e\x63\xc8\x31\x9c\x16\x59\x96\x0e\xb2\xcc\x23\xc6\x70\x90\x65\x4e\x3d\x91\xc8\xd1\x97\x46\x95\x90\xc8\xa9\x95\x16\x31\x7f\xa3\x90\xf9\x8c\xf9\x1b\x9f\x59\xd8\x3e\x86\xa1\x5c\x67\x8c\xda\xd0\x31\x53\x18\xb5\xa1\x63\xa6\x06\x14\xc8\x9c\x8d\x98\xb8\x41\xe6\x6c\xc4\xc4\x0d\x32\x60\x23\xef\x3c\xe7\x1c\x5a\xf4\xf4\xae\xc8\xc9\x86\x16\x31\x7f\x83\x53\x30\x22\xe6\x6f\x90\x4c\x4a\x0d\x8f\x38\x90\x35\x35\x3c\xe2\x20\x2d\x33\x61\xfe\x86\x8e\x6f\xc2\xfc\x0d\x23\x33\xd8\xa1\xf3\x71\xe8\xf8\xa6\x07\x79\x92\x96\x99\x1c\x02\x15\xd9\x6e\x33\x85\x2a\x38\xaf\xd0\x52\x40\x4a\x24\x54\x26\x8c\xe8\x60\x36\x93\xa4\x4b\x42\x25\xb5\x3f\xe2\x20\xc1\x31\x61\x44\x81\x81\x87\xf0\x3c\x21\x8c\xe3\xa9\xc1\x1f\x57\xfd\xdd\xf8\x72\x75\x71\x35\xbc\xaf\x1e\xae\xc6\xf7\xd5\xcb\xd5\xf4\xba\x8a\x6c\x09\x26\x7d\xb9\x1a\xb8\x5a\xde\x57\x23\x57\xeb\xfb\x6a\xe3\x6a\x7b\x5f\x15\xbf\xfd\x7d\x95\xb1\xf9\xca\xf6\xcb\x55\xe3\xea\x7c\x5d\xdd\xe2\x6c\x7d\xb9\xfa\x03\xb5\x0f\x96\x3d\x84\x27\xbc\xc5\x63\xef\xab\x12\xc4\x79\x5d\xfd\x1c\xc6\x7d\x5f\x65\x18\xe7\x79\x5f\x65\x18\x27\xbc\xaf\x6e\xae\xc6\x2f\x57\xb9\x22\x91\xc7\x17\x57\x27\xbf\xaf\xc2\xd5\x29\xaf\xab\xe2\xea\xd4\xf7\x55\x71\xd5\xde\x57\xc5\x55\x7f\x5f\x45\xb8\x67\xbc\xaf\x8a\xb3\xf9\xe5\x2a\x57\x24\xee\xf4\x7a\xed\xce\x7e\x5f\xd5\x08\xec\x7d\x55\x3d\x9c\xf7\x55\x8d\xeb\xbe\xae\xea\xb5\xbb\xcf\xfb\x2a\x2f\xd8\x0d\xef\xab\xc8\xe0\xc6\xf7\x55\x46\x7b\xd3\xfb\x2a\x73\x70\xf3\x97\xab\x5c\x91\x5c\xf3\x6b\x5c\xb7\xbe\xaf\x32\xae\xdb\xde\x57\xd5\x43\x7f\x5f\x65\x5c\x77\xbc\xae\x7e\x8e\x60\xbe\xaf\x6a\x04\xeb\x7d\x55\x3c\xec\xf7\x55\x8d\xcb\xbe\x5c\xe5\x8a\xe4\x5a\xde\x23\xb8\xef\xab\xce\xd5\x24\x07\x39\xe1\x73\xcf\x47\xe7\xec\xf9\x13\x13\x28\x54\xf2\x4c\xdf\x38\x01\x23\x25\xbc\xe5\x99\xb9\x13\x6f\x59\x67\x52\x92\x27\x14\x75\x9a\x64\xc2\x77\xd6\x79\x8e\x09\xdf\x59\xe7\x39\x26\x4f\x9b\x8b\x6c\x9e\x5b\x22\xe0\xa5\x53\x13\x13\x7e\xb5\x4e\x4d\xa4\x3a\x78\xd4\xa9\x89\x14\xf9\x89\x13\xf3\x99\xf1\xb2\x27\xa0\x94\x8c\x97\x3d\x17\xb0\x09\x42\x08\x3a\x39\x30\x17\xe8\x6d\x9d\x66\x07\x05\xb2\xfe\xa9\xe4\x1d\x75\x5a\x1f\x95\x75\xe2\x24\xb7\x3e\xe3\x73\x4f\x14\x3c\xb5\xbb\x23\x1b\xd6\x96\xf1\xb9\x75\x14\x5c\xc6\xcb\xd6\x51\x70\x99\xe0\x94\x0e\x6a\xcb\xf8\xdc\x3a\xa8\x2d\xfb\x7e\x4f\x5c\x80\xde\x32\xce\xa5\x8e\x5f\xcb\x38\x97\x9f\x07\xa0\xe1\x81\xb3\xf1\x6c\x05\x0f\x7c\x65\xe1\x11\xa0\xc7\x19\x9f\x05\x0f\x5c\xc7\x8c\x51\x83\x3b\xae\xaa\x63\xe2\x1a\x2d\xfa\xc4\xc1\xd2\x51\x62\x05\xc7\x73\x55\x1d\x13\x07\x2f\x38\x35\x05\xc7\x53\xc7\x8c\x29\x78\xba\x98\x87\x82\x3f\xae\x83\xbe\x0a\x52\x5a\x80\x98\x0a\x52\x5a\x80\x98\x14\x4a\x5d\x9d\xe7\xf0\xd5\x57\xe7\xb9\x09\xd7\x53\x78\x04\xfa\x5c\xc2\x23\xd0\x27\x28\x91\x82\x43\xbe\x36\x99\xf6\x98\xcf\x75\x74\x88\x1b\x14\x0e\x99\xfd\x18\x45\xce\x8d\xb2\x9a\xf4\x1f\xd9\xfb\x38\x9e\xeb\x13\x65\xa0\x3b\x85\x32\x70\xae\x39\xf5\xc8\xa8\x4a\x13\x39\x23\xc8\x2a\xdf\x15\x67\x04\x59\xc5\xb1\x66\x93\xd8\x2a\xef\x3c\x9b\xc4\x46\x1d\x9a\xc8\xa9\x39\x56\x3d\x71\x34\xb2\x65\x6c\x95\xf1\x71\x6a\x8e\x79\x1d\x9a\xef\x9a\x28\x0e\xaa\xb1\x8a\x07\xbe\x39\xec\x94\xc2\x33\x91\x13\x59\xac\xe1\x73\x73\x22\x8b\xb5\x08\x71\x90\x5e\xcd\xb3\x1d\x22\xa7\xa0\x58\x63\xe8\xec\x34\x5b\xc3\xe7\xde\x3a\xe3\x0c\xdf\x92\x53\x49\xac\xf1\x82\xb0\xef\x6c\x0d\x0f\x9c\x73\x41\xac\xe1\x57\x73\x2e\x88\x51\xa2\x26\x72\xa2\x87\x91\x92\x15\xcd\x3f\xfe\x48\x69\xf9\x48\x55\xea\x87\x53\x89\xa3\xf9\x0e\xf5\xdf\x5b\xf3\xd5\x5a\xaf\xd6\x7e\xb5\xec\xd5\x3a\xaf\xd6\xfd\xda\xf2\x35\xcc\xdf\x5b\xe1\xd5\x8a\xaf\x56\x7a\xb5\xf2\xab\x55\x5e\xad\xfa\x6a\xb5\x57\xeb\x35\xbe\xfd\x1a\xdf\x7e\x8d\x6f\xbf\xc6\xb7\x5f\xe3\xdb\xaf\xf1\xed\xd7\xf8\xf6\x6b\x7c\xf6\x1a\x9f\xbd\xc6\x67\x5f\xc7\x47\xc9\xd5\x7b\x1d\xb2\x1f\x29\xb9\x7a\xc9\xc6\x8e\xc7\x55\xf2\xbd\xbc\x4b\xc7\xd5\xc4\x05\x66\x1d\x8f\x87\xcd\xee\x25\xc8\x44\x91\xd5\xbf\xf5\x52\x19\x91\x6f\x3c\x47\x0a\xa2\x3e\x24\xc6\x46\x0a\xa2\x3e\x91\x95\x02\x65\x4e\xe3\x83\x02\xa3\xcc\x69\x7c\x92\xfe\x1b\xb4\xa0\xe0\x4a\x23\x3e\x7c\xa8\x94\x39\x8d\x0f\x1b\x74\xc7\x83\x37\x91\x33\x9f\x23\xc5\x44\x63\x08\xf0\xe2\x9b\x69\x31\x88\x82\x87\x4b\x63\x70\xdc\x44\xa4\xd0\x68\x0c\x51\xff\x15\x5a\x6e\xb2\x8f\xab\x97\x18\x58\xcd\x9d\x45\x9f\x06\x3d\x5f\x0d\xf8\x16\x86\xb7\x1a\x2d\x3d\xd7\x69\x5d\x5a\x3a\x96\x0e\x7a\x8b\x63\xe9\x30\x47\x6c\xd6\xc7\x18\xd5\xcb\xa1\xe5\x3e\x3e\xdb\xf3\x91\xca\x8a\x91\xca\x98\x31\x62\xaa\xa8\x8c\x19\xa9\x7b\x18\xa9\x85\x19\xa9\x66\x18\xa9\x85\x19\xe3\xa4\x17\x83\x33\xcc\x26\xb5\x30\xa3\xd6\x14\x54\x1e\x8c\x14\x1f\x8b\x54\x1e\x8c\x05\x95\xc5\x96\x78\xe4\x44\xcc\xc8\x96\x78\xac\xac\x37\xd8\x12\x8f\x9c\x73\x19\xd9\x12\x8f\x95\x35\x28\xd5\xf7\x92\xde\x2c\x36\xc8\x13\x80\xf3\x78\x1d\x25\x9c\x38\xab\x29\xb2\x45\x9d\x38\x0a\x24\xb2\x45\x9d\x48\x0a\x8e\x94\xc7\x4a\x24\x05\x47\x4a\x60\x5d\x4a\x99\x26\xb6\x7e\xff\xee\x9c\xb8\x1b\x94\xd8\x02\xfe\x72\xb5\x73\x35\xbe\xaf\x4e\xae\xa6\x2f\x57\xb9\x92\xff\x76\x65\xc6\xbf\x3f\x5d\xbe\x5c\xe5\x8a\x5c\xbb\xfa\xc5\xb5\x4b\xd4\x40\xfa\x72\x55\x7d\xf6\xf7\xd5\xcb\xd5\xf1\xba\xfa\xe1\xb2\x7e\x4f\xb5\x27\xf6\xaf\xbf\x3c\xa0\xe1\xae\xf7\x55\x0d\x6c\xbf\xaf\x6e\xae\xda\xfb\xaa\x71\xf5\xbc\xaf\x8a\xe9\xfb\xe5\xaa\x5f\x09\x12\x77\xfb\xe2\x21\xa6\x27\x84\xf7\x55\x04\x11\xe2\xfb\xaa\x7a\x48\xef\xab\x08\x22\xe4\xd7\x55\xf7\xdd\x13\x25\x9c\xbe\x5c\x45\xec\xa1\xbe\xaf\x32\xda\xd0\xde\x57\x19\x6d\xe8\x5f\xae\x72\x45\x22\xef\x6f\x5e\xe7\xfb\xaa\xb8\x5a\xaf\xab\x92\x76\xd8\xef\xab\x92\x81\xbd\xaf\x8a\xab\xf3\xbe\x2a\xae\xee\x97\xab\x7e\x25\x4a\xae\xe3\x25\xd7\x18\xde\x57\xe1\x35\xc6\xf7\x55\xf5\x90\xde\x57\x19\x41\xcc\xaf\xab\xbe\xe8\x4e\x14\xa7\xfa\x72\x95\x71\xc5\xfa\xbe\x2a\x1e\xda\xfb\x2a\xe3\x8a\xfd\x7d\x95\x71\xc5\xf1\xe5\x2a\x57\x24\xd7\xf9\xe6\x6a\xbd\xae\x7e\xd2\xdf\x5f\xae\x72\x45\x32\x5d\xef\xf1\x9f\xf7\x55\xf5\x79\x5f\x57\xd5\x67\x7a\xde\x57\x19\x53\x0a\xef\xab\x8c\x29\xc5\xf7\x55\xc6\x94\xd2\xfb\x2a\xdf\x4b\xca\x5f\xae\x72\xa5\xfc\xed\xca\x87\xd2\xd0\x0c\xa6\xfa\xbe\xca\x08\x52\x7b\x5f\x65\x04\xa9\xbf\xae\x7e\x8e\x60\xbc\xaf\xaa\xdf\xf9\xbe\xaa\x11\xac\xf7\x55\x8d\x60\xbf\xaf\x6a\x04\xf6\xba\xba\x79\x33\xd2\xf9\x72\x95\x2b\x92\xeb\x7e\xbd\x99\xf9\x79\x5f\x65\x5c\x39\xbc\xaf\x22\x99\x1c\xdf\x57\x19\x6d\x4e\xaf\xab\x1a\x6d\xce\xef\xab\xa2\x56\xde\x57\x19\x6d\xae\xef\xab\x8c\x36\xb7\xf7\x55\x46\x9b\xfb\x97\xab\x5c\x91\x5c\xed\x3d\x82\xf9\xbe\x2a\x5e\xd7\xeb\xea\x27\x57\xfb\xcb\x55\xae\x48\xa6\xe7\xdd\xe7\x79\x5f\x55\x9f\xf7\x75\x55\xe3\x2f\xcf\xfb\x2a\x94\x4a\x78\x5f\x65\xfc\x25\xbe\xaf\x32\xd2\x92\xbe\x5c\xe5\x8a\x64\x7a\x5f\x33\x58\xca\xfb\x2a\xbc\x96\xfa\xbe\x0a\xaf\xa5\xbd\xae\x7e\xf2\xda\xdf\x57\x91\x7f\x19\x5f\xae\x72\x05\x99\x86\xe7\x4d\x7f\xbd\xaf\x8a\xfe\x7e\x5f\x55\x0f\xf6\xbe\x2a\xae\xce\xeb\xea\xa7\xac\xee\xfb\x2a\xb2\xaa\xcf\xfb\x2a\xbc\xd6\xf0\xe5\x2a\x57\x90\x69\x08\x2f\x5e\x6b\x7a\x5f\x85\xd7\x9a\xdf\x57\xe1\xaa\x96\xd7\xd5\x4f\xfa\xf5\x7d\x55\xf4\xdb\x97\xab\x5c\x41\xa6\x21\xbe\xe9\x8f\xf7\x55\xd1\x9f\xef\xab\xa2\xbf\x5e\x57\x35\x57\x75\xbf\xaf\xaa\x5f\x7b\x5f\xfd\x41\x79\xb4\x44\xd5\xb8\x2f\x0f\x68\x18\xf7\xcb\xd5\x8f\x2b\xcd\x33\xc9\xf3\x71\x4f\x2f\x35\xcf\x3d\xce\xc7\x33\x66\x52\xf3\x24\x84\x7c\xdc\x03\x4e\xcd\x63\xec\x99\x1c\xe2\xd4\x3c\xff\x29\x9f\xa8\x3b\xaf\xb7\x3c\x60\x91\x9a\xfb\xd8\x19\xb4\x6e\x6a\x1e\x9e\xc9\xc7\xa1\xec\xa9\x2d\x28\x64\xfd\x37\xbd\xe5\xa1\xa9\xc4\xee\x54\x06\x83\x9b\x9a\xfb\x99\xf9\x54\x28\x6c\xfa\x6c\xf0\xb9\xe9\xb3\xc1\xcb\xa6\xcf\x0e\xf5\x0d\xd7\x5d\x7d\x76\x5a\x9d\xd6\xa2\xc5\x73\x06\x85\xc1\x7f\x06\x85\x01\x75\x0f\x15\xe5\x23\x29\x79\xa8\x28\x9f\xa9\x3b\x19\xfb\x82\x82\x31\x76\x5e\x9f\x76\xe8\xc5\x83\x43\xa9\x1d\x7a\xf1\xf5\x53\x6a\x07\x3e\x37\x23\x3a\xc8\xd3\xd4\xa2\x4f\x4f\xb9\x48\xed\xd2\x8b\xe7\xf7\xa7\x76\xe9\xe5\x32\xbe\x4b\x2f\x17\x3e\x3d\x3c\x99\xaf\xc3\x79\x12\x7b\x71\xf9\x7a\xa9\xbb\xd4\xdd\xb7\xce\xd7\x03\x47\xa9\xbb\x4f\x9d\x39\x96\x36\x75\xf7\xa5\x33\xc7\xd2\xa6\xee\x7e\x74\xbe\x1e\x58\x49\xfd\xa1\x4f\xdf\xb2\x4f\x3d\xd0\xa7\x63\xa8\x53\x77\x47\x2f\x5f\xaf\x49\x94\xba\x3b\x6d\xf9\x36\xdd\x39\x68\x41\xc1\x1d\xb5\x7c\x1b\x7d\xba\xd3\x95\x29\xc3\x95\x7a\xa4\x4f\xe6\xa8\x47\xf8\x64\x8e\x7a\x84\x17\x2f\x87\x91\x7a\x84\x5e\x67\x44\xee\xf8\xe4\x3b\xd4\x0b\x7c\x0e\xf5\x02\x2f\x43\xbd\xc0\x0b\xb3\xd9\x23\xbc\x0c\xf5\xe9\x33\xc6\xc9\xb7\xa9\x27\x28\xf8\x6e\x58\xea\x09\x0a\x06\x85\x44\x2f\x5e\x39\x26\x01\x99\xcb\xd7\x18\x91\x9b\xf0\x7c\x99\xbf\x9e\x19\xc3\xe5\xb9\x8c\xac\x2f\x72\xc9\xc8\xfa\x22\xc1\xcc\xf8\x2e\x7c\x66\xa8\x5f\xfa\x74\x43\x59\xc0\x50\xa7\xee\x06\xb2\x3c\x0f\xe3\x73\xc3\x58\x9e\x07\xc9\xbb\x51\x2c\xcf\xc3\xf8\xdc\x18\x16\x4a\x82\xa5\xee\xc6\xad\xb0\x32\x4f\xdd\x0d\x55\x79\x7c\x45\x98\xba\x1b\x9d\xc2\x31\x11\xa9\x17\xee\xe4\x4b\xed\xae\xa6\xcb\xa3\x79\x77\x05\x5b\x9e\x8c\x94\x2a\xcf\xe9\x2d\x70\x85\x5a\xc0\x65\xa7\xee\x8a\xb4\x80\xcb\x4e\xbd\x32\x86\xaa\x3b\xe1\xac\x31\x5a\x57\x79\x85\xdd\xda\xd4\x5d\xd5\x95\xa7\xeb\x4e\x78\xd1\xbc\x57\x78\xd1\x4c\x37\x28\x2c\xee\x6c\x50\x40\x61\xb2\x07\x5b\x48\x8e\x4f\xbd\x21\xa5\xad\x3b\xa1\xb7\x19\x43\x83\x9e\xe6\xd6\x23\x0f\xe5\xd1\x6c\x76\xa4\x64\xf4\xe2\xf1\xb5\x42\x85\xb0\xd4\x3b\x92\x38\xd0\xeb\x48\xe2\xc0\x67\x47\x12\x97\x59\xe9\xf0\x79\x7f\x70\xaa\x7e\xea\x1e\xa4\x2b\xe1\xe1\xd3\xf4\x4c\x8d\x12\x34\xd1\x9e\xa9\x51\x82\x26\xda\x41\x41\x25\x04\x5e\x09\x07\x05\x15\x60\xe7\xa9\xfb\xe6\x69\x09\x9a\x4c\xdf\x3c\x2d\x1c\x75\x91\xba\x27\x0e\x16\x72\xf8\x53\xf7\xc0\x4a\x21\x4f\x3f\x75\x0f\xac\x94\xa0\xcf\xdd\x03\x2b\x25\x24\xa6\x6f\x72\x67\xe1\xb9\xc9\x9d\x9a\xda\xc9\x9d\x55\xff\x65\x5a\x08\x69\xc2\x59\x83\x97\xc5\x73\x8d\xe7\x16\xcf\x69\xda\x17\xcf\xe9\xe3\x77\xf3\x50\x80\xb9\xa7\xee\xe6\xa1\x04\xbd\x04\x1e\x9e\x29\x61\x40\xcf\xc3\x33\x85\x83\x36\x52\x5f\x48\x70\x30\xa2\x85\x04\xa7\x28\x20\xc1\xa9\x3b\x91\xe0\x14\x05\xf8\x9c\x70\xb6\x91\x12\x1e\x59\xdf\x8c\x1d\xe5\xdd\x37\x63\xd8\xf0\xb9\x19\xc3\x66\x56\x36\xf4\x0e\xa3\xdd\xf4\x79\xb9\xd3\xe8\xe5\xd2\xa7\x9b\x95\x42\xc0\x29\x75\x37\x2b\x85\xe3\x3a\x52\xf7\x20\x4f\x89\x0f\x9c\x79\x90\xa7\x80\x35\x48\xdd\x4d\x4e\x21\xfc\x94\xba\xef\x4e\x14\xb0\x06\xa9\xfb\x36\x68\x89\x01\x0a\xbe\x1f\x59\x08\x38\xa5\xee\x11\xf3\x02\xd6\x20\xf5\x43\x9f\xfa\xa4\x0f\x7d\x66\x7a\x71\x93\x53\x28\x95\x96\xba\xef\xc9\x95\x88\x29\xee\x97\x3e\x0b\x8a\xe1\xd2\x67\x81\xde\x65\x44\x15\xce\x7c\x2f\xad\x70\x00\x71\xea\x6e\x9c\x4a\x6c\xcc\xd8\x65\x7c\x8d\x79\xb8\xf0\xd2\xd4\x0b\xbc\x34\x3d\xc7\xf8\x3a\x7c\x5e\x38\xd3\x5b\x70\xe1\x0c\x55\x00\x1e\xb8\x90\x30\x90\xc6\x03\x67\xa8\xf9\xf1\xd0\x27\xaa\x00\xac\x70\xa1\xe0\x5a\x1a\x0f\x32\xf3\x14\x81\x34\x3c\xe2\x52\x22\x6a\x02\x1c\x71\x21\xcc\x99\xc6\x03\x75\x66\x7a\x3c\x50\xc7\x68\x8f\x00\x75\x83\x7a\x60\xec\x06\xf5\x40\x9f\x28\xfd\x11\xe8\x13\xa5\x3f\x02\x7d\xa2\xf4\x87\x47\x00\x4a\x7a\xf8\xcf\x0d\x5e\xa1\x6c\x5b\x1a\x6e\xf0\x4a\x42\x95\x0f\x5f\x7f\x17\x8e\x3f\x4e\xc3\xd7\xd3\x85\x22\x6e\x69\xb8\x19\x2b\x89\xef\x7d\xf8\xfa\xb9\x70\x58\x48\x1a\xbe\x6e\x2e\x29\xf1\x5c\xa2\x97\x4c\x9f\x99\x3b\x0b\xa3\xcd\xdc\x89\x2a\x1f\x6e\xb8\x0a\xc7\x83\xa4\x91\xe1\xb3\x20\xcf\x0c\x9f\x0e\xfb\x4b\xa0\xa6\x8b\x1f\x8d\xfc\xd1\xaa\xb4\x18\x83\xaf\xb7\x0a\x67\x1c\xa7\x81\x39\x4a\x4d\xd4\x19\x03\xf3\x3e\x32\x63\xf0\x24\xa7\x34\x30\x55\x9c\x6a\x9c\x40\x62\x17\x4e\x35\x4e\xa4\x9b\x94\x34\xe0\xd3\xd7\x39\x25\x4d\xfa\xf4\xf5\x4d\xa1\x14\x5c\x22\xf9\xa4\x24\xcd\x34\x46\xcd\x6b\x18\x7c\x57\x25\x03\xf5\x2e\xc9\x60\x05\xeb\x97\x34\xb5\x8d\x96\xa6\xcf\xd3\x0f\x0b\x15\xdd\xd2\xc0\x8e\x64\x3e\xc6\x81\xad\xc8\x11\xb1\x60\x2b\x72\x64\x1a\xb0\x15\x39\xf2\x1c\xb6\x82\xf3\x47\xd2\xc0\x04\x38\xe4\xe3\xa3\xe5\x13\x96\x33\xaf\x19\x26\x80\x22\x09\x69\x60\x02\x72\x46\x10\x98\x80\x5c\x78\xc9\x31\x01\x59\xd3\x80\x09\xe0\x88\xe3\x04\xb4\xbc\x50\xee\x2d\x0d\x4c\x40\xc6\x73\x1b\x98\x80\xcc\x87\x3a\x3c\xd7\xac\x64\xd4\xf5\xf0\x5c\xb3\x92\x51\xd7\xc3\x41\x2c\x85\x6d\xd2\x34\x06\x5c\xe3\x4f\x8f\x01\xd7\x43\xcf\xc1\xf5\x44\x9e\x03\xae\xf1\xa0\xc7\x84\xb3\x05\x75\x4c\x0e\x05\xe5\x12\x59\x3f\x25\xa3\x92\xc7\x44\x4a\xa8\xe4\x31\xe1\x05\xb5\x3b\x26\xbc\x60\xa5\xc9\x08\x2a\xe0\x4f\x12\x19\x41\x25\xe3\x33\x8f\x89\x94\xf0\xb2\x86\xaf\x56\x0a\xf8\x93\x44\x7e\x50\x29\xa8\xdd\x81\xa9\xa2\x84\x5c\x1a\x98\xaa\x82\xef\x34\x30\x55\x45\x9f\x18\xa6\x8a\x03\x48\xd2\xc0\x54\x95\x04\x2f\x98\xaa\xa2\xd9\xc4\x54\x95\x2c\x7a\x93\x16\xf2\xc4\x54\x51\x12\x22\x0d\x4c\x15\x47\x2a\xa7\x81\xa9\xe2\xa8\x92\x34\x7c\x97\xa1\x14\x7d\x8c\x8b\x31\x54\xee\xc4\x8c\x15\xcc\xed\xc0\x8c\x15\xcd\x1f\x66\xac\xe8\x13\xdb\x50\x98\x7c\x9a\x98\xaa\xc2\xe2\x7d\x60\xaa\x8a\x94\x22\xa6\xaa\x48\x29\x1a\x92\xd0\xd7\x61\x48\x02\xdf\x89\xbc\xa9\x42\x79\xb9\x44\xde\x54\xe1\x60\xe6\x44\x6e\x54\xa9\xb8\x36\xe4\x46\x15\x0e\x20\x49\xe4\x46\x95\x1a\xd4\xe7\xa5\x05\x3d\x8c\x5a\x95\xac\x31\x6a\x1c\x47\x92\x86\xaf\xb1\x4a\x65\x5d\x33\x7c\x8d\x55\xc0\xbb\x24\x32\xac\x4a\x95\x04\x3d\x81\xa6\x54\x7d\x0f\xbe\xfe\x2a\x95\xf5\xe5\xf0\x84\x99\x52\x9b\x7a\xf1\x19\xab\x7a\xcb\x31\x94\x94\xc3\x48\xc3\x13\x63\x0a\xc7\x91\xa4\xe1\x49\x31\xa5\x4a\x66\x87\xf1\x2d\xf5\xc2\xf8\x96\xee\x64\x7c\x1b\x29\x61\x60\xab\x0c\x09\x06\x16\x14\x4b\x1a\x97\x31\xe0\x7d\x8e\xcb\x18\x0e\xf3\x87\x81\xad\x57\x2d\xe7\xa5\xc9\x58\x78\x12\x49\xe1\xe0\x92\x34\x3c\x79\xa4\x34\x99\x0e\xcc\x26\x78\x97\x44\x31\x87\xd2\x3c\xc1\x20\x4d\xcc\x26\xa5\xe7\xd2\xf4\x95\x61\x69\x51\xff\x25\x5a\x46\xcb\x79\x69\xb8\x13\x24\x8f\x94\xc6\x7a\x61\xfa\xae\x4a\x69\x59\xff\x35\x5a\x91\x56\xa7\xd5\x68\x0d\x5a\x93\x96\xcb\xa5\xd5\x1f\x1c\xbb\x91\x26\xb6\x97\x0d\xea\x34\xb1\xbd\x9c\xa1\x92\x66\x60\x08\x28\x37\xaa\x53\x94\xe6\x59\x1f\x69\x06\x86\xd0\x60\x2c\x30\x04\x94\xdb\xc4\x66\x37\x3e\x95\x19\x18\x02\xa1\x83\x19\x18\x02\x0b\xd1\x19\x18\x42\x67\xb0\x81\x21\x60\x9b\x66\x60\x1a\xa6\x28\xf8\xb4\x37\x2c\xce\x8c\xf0\xb9\x79\x2e\xc2\x27\xcb\x4b\xea\x66\x94\xc6\x64\x52\x37\xa3\x70\xa2\x4a\x9a\x11\x5e\x2e\x22\x8b\xd0\xbb\xf0\xe9\x0b\xd8\xd2\x1f\x3d\xb7\x68\xc1\x35\xb6\xbe\x13\x98\x99\x1e\x1b\x2f\x9d\x35\xc1\xf4\x98\x78\xe9\x11\x0a\x1e\x0b\x2f\x3d\x42\xc1\x17\xbe\xa5\xe3\x3f\x4c\x7c\x84\x9e\xd4\xf2\x29\xea\xa8\xa5\xe9\x91\xe5\xd2\x31\x32\x64\x09\x15\x6a\x9b\x24\x4a\x73\x94\x8e\xff\x40\x69\x8e\xd2\x51\x52\x93\x05\x6c\xd7\xfc\xb1\x80\xed\x9a\x07\x16\xb0\x80\x7b\xd2\x64\x01\xdb\x35\x2b\x19\x5e\x9a\x7a\xf1\xd7\xba\xe3\x1b\x4e\xbc\x89\xde\xd5\x0b\x7c\x76\xf5\x02\x9f\x9a\x23\xbc\x09\x0e\x51\x49\xb3\x30\x5a\x3e\xdb\xe9\xd1\xd3\xd2\x97\xee\x84\x97\xa5\xff\xe0\x05\xbf\x91\xa2\x21\xa5\xa3\x14\x29\x1a\x52\x3a\x4a\x71\xb2\x7c\xee\x9a\x5b\x3c\x8d\x6e\x7a\x0e\x5e\x0c\x0a\x15\x5e\x8c\x5e\x58\x30\xf7\x83\x5c\x2a\x72\x39\xc8\x9a\x45\x71\x67\xf5\x30\x59\x14\x8f\x87\xff\x3c\x79\xbc\x70\xc0\x4a\x22\x97\xaa\x8c\xc8\x5b\xc0\x12\x79\x68\x6e\x59\xf8\x0e\x8c\xd3\x64\xe1\x3b\x92\xfe\xa3\x4f\x8c\xd3\xc4\x99\x19\x18\xa7\xe9\xa9\x24\x85\xc3\x57\xd2\x64\x95\x3a\x34\xb7\xb8\x28\x03\xff\x6f\xe2\xa2\x80\x5e\x4a\x13\x17\x65\x54\x9e\x1b\x70\xc6\xa2\x7f\x0e\x38\xc3\xff\x9b\x38\x10\x83\xf5\xde\xc4\x81\x18\x9a\x31\x9c\x84\x31\x98\xcd\x01\x67\x28\xe1\xe9\x18\x85\xc2\xc1\x2c\x69\xe2\x40\x70\x30\x4b\x9a\x38\x10\x1c\xc5\x92\x26\x0e\xc4\xc0\x1b\xa4\xd0\x4a\x19\x9a\x5b\xd6\xac\x43\x5f\x2a\xce\xc5\x60\x85\x37\x3d\xf8\x59\x40\x44\xa5\xe9\xc1\xcf\x32\xf4\x15\x2f\xe8\x1d\xee\x5c\xd0\xc3\xd5\xa0\x5c\x4b\x19\x87\x11\xe1\x40\x8c\x03\x67\x38\x10\xa0\xa5\x12\x99\x6a\x65\x5c\x3d\x07\xbd\x2b\x0a\xd0\xbb\xcc\x34\x0e\xc4\x24\xac\x47\x09\x98\x32\x59\x35\x4e\x1c\x08\x8e\xf5\x4e\x13\x07\x62\x4a\xb1\xe3\x08\x70\xf4\x4b\xa2\x20\x4c\x99\xb8\x9f\x13\x47\x60\x62\x28\x27\xeb\xd9\xc9\xaa\x7f\x7a\x72\x4c\xf1\x63\xbd\xbf\xaf\x92\x3d\xf2\x5a\x66\x56\x27\x95\x96\x08\xf8\x10\xa6\x5e\x97\xcd\x10\xf4\x82\x6c\x86\x20\xe5\xcd\xf2\x79\x0e\xfd\xe7\xd3\x4e\xfd\x99\x44\xa5\x9a\x32\xb7\x5a\x0c\x41\x93\x82\x87\x32\x37\x4c\xe3\xa1\x4c\xbc\x41\x2a\xd5\x94\xa9\x29\xc2\x43\x99\x47\xcf\x39\x9f\x8b\x05\x17\x55\x6c\xca\x7a\xf4\x9f\xf3\xb2\x64\x27\x59\x5a\x2f\x29\x45\xbc\x97\x25\x0b\x87\xf7\xb2\x58\x4c\x4f\x3c\x8d\xa5\xd1\xe2\x4d\xac\xc2\xf4\xe1\x31\x2c\xa2\xa4\x13\x8f\x61\xe1\x77\x4c\xbc\x82\x25\x35\x88\x57\xb0\xf4\xa9\xe0\x15\x2c\x62\xa6\x93\x65\xf7\x92\x52\x64\xd9\xbd\xa4\xf8\x58\x4c\x2f\xe2\xa2\x93\xc5\xf4\xe2\x33\x5a\x58\xe2\xc5\xc7\xb1\xb0\xc4\x00\xc5\xd2\xc2\x12\x03\x14\x4b\x0b\x13\x07\x34\x2c\x2d\x4c\xdc\x32\xfd\xc7\x68\x89\x7d\x2e\x96\x9e\x1c\xb0\x92\x16\x4b\xcf\x85\x3f\x4d\x25\x9e\xc2\xe1\xd9\x89\x4a\x3c\x05\xd8\x58\xa2\x86\x4e\xd9\x41\xff\x2d\x5a\x95\xd6\xa6\x35\x68\x39\xbd\x1d\xf5\xdc\xa1\x05\x3d\x0c\x10\x87\xb6\xa4\x85\xb1\xd8\xac\x87\x16\xc6\x82\x43\x5b\xd2\xc2\x20\xec\xa2\x3b\x79\x8e\xa8\xe5\xc2\x20\x70\xa0\x4b\x5a\x2c\x2f\xa9\x62\x93\x16\xcb\xcb\xcd\xdb\xba\x30\x16\xbb\x22\x17\x8c\xc5\x26\xc4\xb1\x58\x7a\x72\xd8\x4b\x5a\x2c\x3d\x37\x66\x6c\x61\x2c\xf6\xd4\x7f\x8c\x6f\xea\x3f\x78\x61\x63\x9f\x8a\x41\x05\x28\x5a\x5a\x15\x5e\x88\x6f\x2e\xa2\xab\x14\xb2\x4d\x0b\x63\xb1\x51\x60\x8b\xe8\x2a\x65\x6d\xd3\xaa\xf0\x62\x50\xc0\x90\x70\xa0\x4b\x22\xfd\xb3\x6c\x94\x14\x29\x9e\x85\x42\xb6\x69\x61\x56\x36\x01\xab\x45\xac\x75\xa3\x88\x56\x85\x4f\x0c\xd0\xf2\x9c\xaf\x62\x0f\x6f\x01\x06\xc8\x34\x9b\x18\x20\xc3\x7f\x5f\xc4\x61\x4d\xb3\x49\x1c\xd6\xa2\x9e\x1b\xb4\xf4\x9f\xf3\x62\x05\x3e\x31\x47\x56\xf5\xdf\xa1\x85\xe4\x59\x5b\x9b\x24\x4f\x8c\x96\xda\xb5\x69\x11\xa3\xe5\x40\x97\xb4\x58\x77\x1b\x11\xfe\xc5\xba\xdb\x70\xcf\x16\xeb\x6e\x63\x9b\x9c\x9a\x4b\xc5\x08\x07\x2e\x4f\x2c\x2e\xc6\xda\x73\x75\xc6\x20\xc9\x63\xf0\x6c\xab\x4f\x9f\x5b\x2a\xe0\x26\x6a\x35\x15\x33\x24\x88\x89\xb3\x03\x2f\x83\x3e\x51\xfa\x8b\x55\x31\x87\x6e\x27\x2a\x37\x95\xc3\x7a\x68\x61\xb8\xa8\x87\x9b\x16\x86\x4b\xfb\x6d\x0b\xc3\xe5\x10\xbd\xef\xaa\xe4\x85\x4d\x3b\x12\x3c\x36\x8d\x73\xbc\xd3\xc2\xa6\x1d\x82\x13\x0b\x9b\xc6\x39\xde\x69\xb1\x98\x3e\x51\x77\x0e\x5a\xba\xd3\x87\x7e\x08\x4e\x2c\x07\x98\x95\x93\xc4\xf4\xa6\x85\xc8\x58\x68\x73\x42\x4d\x5a\xd8\xc2\x83\xdb\xbf\xb0\x85\x27\x33\x3c\x6c\xe1\xd1\xc7\x88\x2d\xe4\x6c\xf0\xb4\xb0\x46\x87\x45\xea\xc2\x1a\x1d\x4d\x34\x26\xe7\xe0\x31\x2c\x4c\x0e\xf8\xc0\xb4\x30\x39\x87\x98\xf0\xc2\xe4\x70\x96\x4d\x5a\x98\x9c\x33\xf4\x1c\x23\xc2\x1b\x5c\x9b\x11\xe9\x05\xf1\x74\xcc\x02\xae\x30\x2d\x4f\xc7\x2c\x87\xd8\x12\xc5\xae\xca\xd1\xe7\x87\x59\x39\x9b\x97\x80\x18\xed\x91\xc2\xc4\x90\x1c\x3c\xbe\x85\x21\x39\x7a\x41\x58\xb2\x1e\xbc\x82\xc5\x92\xf5\x10\x29\x24\xab\xb9\x68\x0b\x8f\xac\xe6\x72\xa5\x3e\x31\x24\x97\x08\xf1\xc2\x90\x5c\xbc\x41\x32\x9e\xcb\xd5\xeb\x82\x79\xb8\x9a\x77\x16\x94\x9c\x6f\x9e\x16\x51\xd9\xab\xcf\x8f\xa8\xec\x95\x32\xc5\x90\x50\x50\x38\x51\xb0\xab\x68\x23\x90\x82\x5d\x85\x33\x77\x12\x05\xbb\xca\x95\xda\x65\xb1\x09\xc8\x31\x2d\x47\x28\x94\xab\x99\x26\x7e\x7b\x33\x32\x63\x21\x7a\x09\x63\x6c\x16\xa2\x17\x0f\x73\xb3\x10\xe5\x3c\xf5\xb4\x59\x88\x5e\x14\xf4\x66\x21\x7a\x51\xc9\x9b\x18\xed\x6d\x7a\x0e\x0a\x4d\xcf\x41\x01\x43\xb9\x59\xfd\x5d\x0c\xe5\x66\xf5\x77\x79\x97\x36\x71\x58\x60\x94\x89\xe2\x61\xe5\x4e\xb5\x7c\x6e\x2f\x4a\x78\xb3\x1a\xbb\x6c\x32\xed\x88\xcc\xf0\x30\x77\x44\x66\x84\xa8\x36\x2b\xb5\x8b\x4f\xb9\x59\xa9\x71\xfe\x4f\xda\x18\x43\xea\x3f\x25\x0a\x92\x95\x8b\x9a\xa0\x20\x59\xd1\xb6\x20\xb9\xe6\xe5\xa2\x76\xc9\x35\x2f\x17\x6f\x70\xfb\xa6\x64\x7d\x1e\xb5\x9a\xb7\xd8\x11\xda\x9e\x8b\x54\xb5\xd9\xb7\xdd\x88\xd6\x87\x2f\x9c\x1c\xf5\x0a\x6c\x33\x91\xa3\x5e\x1f\x42\x2a\xdb\xe3\xb7\xf5\x21\x26\xbc\x33\x14\x50\xc9\x3b\x43\x81\x3d\xa0\x9d\xa1\x50\xd4\xe7\xa0\x85\x24\xdc\x14\xd7\x87\x9d\x81\x5d\xe8\x45\x92\x2f\xf4\xc2\xda\x6c\x17\xee\x74\x68\x5f\xda\x6e\x28\xeb\xc3\xd6\xed\xf6\x60\x6b\x7d\x08\x4a\x6d\xdf\x6a\xac\x0f\x2e\xca\xae\xf4\xb2\x74\x27\xbc\xa0\xae\x77\xa5\x17\xc9\xda\x4d\x5c\xe5\xa0\xf9\xb4\x2b\x92\x60\x35\xb6\xdd\xc4\x55\x6d\xf6\x6d\x37\x71\xf5\x21\x60\xb5\x1b\x92\xe0\x6b\xdc\x8d\x31\x60\x1a\xb7\xa7\x2e\xd7\xc0\xb7\xb9\x7d\x55\x55\x7d\x9f\xee\xbb\x2a\x99\xfc\xfc\x1a\x02\x8c\xb9\xfd\xa9\xda\xb4\xdb\x6e\x7f\x6a\xc0\x32\x6e\xb7\x3f\x35\x10\x5f\xd9\x6e\x7f\x2a\xe7\xd3\x27\xf2\xfa\xab\x36\xed\xc8\xeb\xaf\xda\xa6\xdb\x6e\x7f\x2a\x08\xd2\xb4\x3d\x26\x5c\x03\x8b\xb8\xed\xd1\xdc\x4a\xe1\xad\x04\x02\xa0\x06\x4d\xdf\x80\x82\x26\x6c\x40\x01\x25\xbc\x7d\xc1\x55\x03\x7e\xea\xf6\x05\x57\xa5\x52\x75\xda\x6e\xb7\x2a\x95\xaa\xd3\x9e\xf4\x82\x4a\xde\x93\x5e\xba\xee\x44\x48\x9a\xe8\x49\x2f\xf8\xf6\x7b\xd1\x8b\x26\x7a\x21\x25\xfc\xa3\xbd\xe0\x53\x1f\xe3\x42\x4a\x24\x92\x82\x3f\xa8\x41\x2f\xc1\x82\x3a\x56\x9a\x0a\x79\x55\x89\xb0\x54\xc8\xab\x41\x1f\xe3\x82\x3a\x6b\x82\xbd\xa1\x4e\x4c\x78\x6f\xe8\xe1\xc3\xee\x0d\x3d\xc2\x2d\xdb\x8d\x45\xd5\xc6\xdc\xf6\x35\x48\x8d\xfa\xc4\x7c\x0d\x52\xc9\x04\x4f\xdb\xd7\x20\x35\x6a\x6e\xdd\x58\x54\xce\xdf\x4f\xdb\x8d\x45\x8d\xfa\xfc\x7c\x0d\x52\xb5\x4d\xb7\xdd\x74\xd4\xa8\x99\x36\xe8\x61\x60\xf7\x81\x02\x1e\xed\x3e\x50\xd0\x87\x7a\xa0\xa0\xb9\x3d\x50\x28\x7c\x0e\x07\x0a\x9a\x31\x5f\x91\xd4\x88\x9f\xba\xdd\xc8\x54\x50\xb7\x69\x1f\xa8\x4b\x7d\x1e\xa8\x4b\x7d\x7a\x0c\xb3\x46\x4c\xf1\xbe\xf0\x82\x81\xdd\x17\x7a\x6c\xb7\xed\x0b\xbd\xa9\x16\xf4\xf0\x6f\xf7\x85\x9e\x94\xe9\x85\x9e\xd4\xa7\x9b\x8e\x1a\x31\xa2\x16\x90\x2e\x99\x13\x16\xa0\xc7\xc7\x68\x81\xb1\xe3\x3b\x99\x07\xeb\x6a\x7a\x74\x67\xa3\xa5\xff\x3a\xad\x41\xcb\xe9\x71\xc6\x7e\x32\x0f\xd6\xd5\x84\xa3\x63\x9e\x2a\x5c\xb5\x51\x66\x1e\xac\xab\x89\x15\xac\x79\xb0\xae\x72\xda\x51\x32\x37\x0f\x35\xf1\xe5\x58\x84\x1e\xd2\xb5\x08\x3d\x36\x3a\x2d\x42\x0f\xe3\x64\x9e\x1e\x5b\xb5\xc5\x65\x9e\x1a\x5b\x29\x2c\x96\x2c\x41\x8f\xfd\x13\x4b\xd0\x63\x1d\x6c\x6e\x1e\x2a\x45\xc7\x92\xb9\x79\xa8\xda\xfe\xb2\x04\x2f\x48\xde\x50\xfa\x89\xd0\x88\xa1\xf4\x13\x6b\x02\xf3\x95\x53\x4d\xac\x9f\xcd\x57\x4e\x15\xa0\x5e\xb2\x0c\x05\x53\xcb\x67\x93\x62\x65\xc9\x50\xf3\x89\x15\x82\xf9\xaa\xaa\x66\x62\xc9\xe6\x21\xb8\x9a\x31\x40\xe6\x21\xb8\xca\x19\xfb\x09\x34\x50\x05\x9a\x97\xcc\x57\x55\x35\x13\x94\x32\x4f\x68\xac\x19\x77\xc2\x7c\x55\x55\xb5\xc7\x65\x18\x8b\xcc\xbb\x6b\x18\x8b\xcc\x6a\x8c\x12\x8e\x35\xb3\x26\x30\x0f\xcf\xd5\xcc\x2a\xc0\x0a\xd4\x09\xd2\x5a\x85\xde\xf8\x51\x42\x9c\x61\x63\x32\x96\xdf\x2a\xac\xf0\xea\x1a\x56\x25\x63\x71\xa8\x18\x59\x33\xaa\x87\x8a\x91\x35\x2f\xdd\x89\x58\x88\x0d\x1a\x56\x25\x63\x71\x0c\xab\x42\xa9\xb4\x64\x0d\x7a\x2c\x17\xcc\x17\x4e\x95\xba\xe3\xc9\x1a\x62\x31\x86\x80\xfd\xc9\xa6\xe7\xa0\x80\xa7\x48\x85\xca\xaa\x6d\x2c\x2a\x54\xd6\xac\x29\x6a\x50\xbf\x7a\x0e\xea\x97\xf1\xf9\x52\xa9\x16\xe2\xc5\x86\x39\xd2\x86\x97\xf9\x52\xa9\x82\x35\x4c\xe6\x4b\xa5\xca\xf9\xfb\xc9\x30\x55\x85\x1d\x66\xc3\x00\x69\xc3\xcb\x30\x32\x85\xe0\xbf\x0d\x28\x90\xd6\x67\x03\x0a\xf8\x86\xe6\xcb\xa1\x5a\x58\x84\x1b\x46\x46\x1b\x57\xe6\xcb\xa1\x0a\x2a\x31\x19\x26\xa7\xe8\x33\x9a\xf0\x42\xdc\xd7\x7c\xed\x52\x0b\xde\x84\x61\x72\x0a\x7e\x9c\x61\x72\x8a\x3e\x23\x4c\x4e\x19\xfa\x6f\xd3\xe2\xe5\xc1\x00\x71\xfe\x7e\x32\x0c\x50\x61\x81\x6e\x0b\x7a\x98\x23\x80\x6c\x95\x02\x6f\x09\x20\x5b\x2d\xa8\x2c\xc0\x6a\xb5\x68\xde\x17\x92\xc0\xef\x00\x90\x56\x39\x87\x29\x01\x48\xab\x45\xf3\xbe\x91\x35\x41\x14\x00\x69\xb5\xe0\x0d\x02\x48\xab\xe5\x20\xeb\xcd\x18\xa4\x06\x37\xf4\x34\xd3\x18\xa0\x82\x37\x68\x18\x92\xca\xa2\xd1\x7c\x6b\xac\x56\x3c\x3e\xc3\x3c\x54\x56\x71\x86\xd2\xd7\x46\x99\xa1\xf4\xb5\x51\x66\x1e\x6a\xaa\x55\x8a\xef\xd2\x0b\x26\xc7\x50\xfa\x94\x82\x4b\xe6\x6b\x89\xca\x09\xff\xc9\x2e\x14\x8a\xee\xf4\xf9\xd3\x96\x9a\xb9\xa7\x5f\x29\x13\x97\xce\x03\x05\x3e\xdb\xf3\xc0\x35\xa1\xad\xe3\x21\xaa\xca\x19\x4d\xe9\x78\x6e\x46\xad\x38\x10\x07\x83\x50\x59\xca\x1f\x0c\x02\x88\xcc\x74\x30\x08\x95\xa5\xfc\x09\xf0\xc2\x57\x7c\x7c\x67\xa7\x6a\x63\xee\x60\x02\x2a\xf3\x77\x30\x01\x94\x97\x4b\x07\x13\x50\x97\xee\x74\x59\x53\x6c\x2e\x9d\xc0\x18\x08\x38\x1e\xcc\x03\xb8\xce\x74\x30\x0f\xd5\xf4\x1f\xd4\x99\xcd\x13\xa1\x7e\x74\x27\xa3\xbd\xfa\x0f\x29\xe1\x5c\x1c\xd4\x3c\xa7\x40\xa5\xe3\x9e\x7e\xd5\x16\xde\xc1\xd3\xd7\x16\xde\xf1\xf4\xc3\xda\xd8\x12\x3d\x1e\x4a\xab\x8d\x15\xde\xc1\x63\xa7\xf2\x7e\x3a\x78\xec\x14\xb0\x4b\x07\x55\xde\x98\xe9\x83\xc7\x4e\x55\xfe\x74\xf0\xd8\x1b\xeb\xf5\x83\x9a\x07\x3a\x9a\x0e\x6a\xbe\xf1\x4e\x1c\x54\x79\xc3\xd5\x38\x05\xae\x59\xc5\x1d\x4f\x23\xac\x8d\x3c\x91\x83\x2a\xe7\x9c\xa9\x04\x10\xb1\xfa\x39\x53\xdf\x55\xc9\x87\x45\x80\x36\xe6\x4e\x81\x38\x36\xf4\xa0\xe5\x5b\x63\xb0\x1e\x2d\xab\x8d\x8f\xff\xa0\xf3\x1b\x0b\x0b\x90\x8e\x55\xdb\x74\xa0\x19\xab\xb6\xe9\x4e\x85\x31\xbc\x97\xc3\x52\x82\x63\xad\xd2\x41\xe9\x83\x69\x4d\x87\xe5\x02\x47\x09\xa4\xd3\xa0\xa0\x17\x04\x55\xde\xf4\x82\x34\xc4\x89\xba\x06\xdb\x58\x1b\x59\xa0\x60\x1b\x6b\x23\xea\x7c\x50\xde\x0d\x55\x7e\x50\xad\x8d\x28\xdb\x61\x15\xd0\x50\xd7\x07\x6f\x5e\x5b\x71\x07\x45\xdb\x51\xbb\xc7\xa3\x49\xb5\xa3\x5a\x0f\xfe\x7b\x67\x69\x7d\x06\xcf\x49\xf0\x83\xe7\xf0\xf1\x0e\xaa\xb5\x37\xf5\xe2\xaf\x75\x27\xff\xf6\xe0\xcd\x6b\x13\xed\x78\x14\xaa\x76\x42\x2a\xc7\xc3\x49\xb5\x4b\x4a\x1e\x4e\xaa\x5d\x1f\x23\x2a\xb9\x0f\xdd\xe9\xa3\xed\x53\xff\x41\x41\x12\xc4\x9b\xef\xfa\x8c\xf0\xe6\x3b\x9b\x29\x07\x6f\xbe\x13\x57\x03\x83\x59\x3b\x0a\x13\x0c\x66\xd5\x46\xd9\x59\x50\x90\xac\x51\xb4\x9d\xb8\xda\x41\xd1\x52\xbb\x2f\x51\x22\xb9\x0e\x0c\x1e\x18\xcc\x3a\x88\xf7\x1f\x0f\x0b\xd5\x11\x74\xa7\xcf\x9f\x36\xca\x0e\x9e\xfe\x48\x7a\x6e\xd1\x82\x33\x94\xf0\x48\x8c\xd6\x77\x29\xea\x20\xe0\x71\x50\xc9\xda\x28\x3b\xf8\xfd\x03\x13\x77\xf0\xed\x07\x59\x07\x07\xdf\x7e\xa0\x22\x8f\xe7\x3c\xd4\xa1\x77\x1e\x4f\x7f\xe8\xfd\xc4\x9b\xd7\x86\xd7\xc1\x9b\x1f\x18\xa7\x83\x37\x3f\xa4\xdc\x50\xec\x83\xac\x83\x83\x62\xd7\x86\xd7\xc1\x9b\x1f\x98\xaa\x73\x18\x11\xeb\xa1\xe3\xbb\x0d\x75\x10\xb0\x3a\x98\x00\x6d\x63\x1d\x4c\x80\xb6\xb1\x0e\x26\x40\x9b\x53\x07\x13\x30\x08\x4e\x1c\x4c\x80\xb6\xaa\x0e\x6b\x82\xc9\x66\xf4\x61\x4d\x40\x41\xc0\x74\x58\x13\x68\xab\xea\xb0\x26\x98\x01\x5e\x58\x13\x4c\x29\x37\x0f\x35\x55\x4a\x07\x26\x8a\x53\xd7\x19\xf5\xdc\xa1\xa5\xe7\x7c\x0c\x93\x80\xd5\xf5\x20\x51\x9d\xcc\xd8\xf5\x6c\x85\x3a\x59\x07\xdf\x07\xce\xf8\x72\x2e\x06\x68\x62\xe2\x2e\x26\x67\xb2\xf2\xbd\x9e\x0e\x58\x27\x29\x8d\xf7\x81\x7a\xd5\x9d\x50\x27\x9b\xe6\x3e\x50\xc7\x70\x5d\x4f\x49\xa8\x13\x4d\x74\x31\x4e\x93\x2f\xe7\x62\x9c\x26\x01\xc7\xcb\x6a\x85\x93\x13\xd2\x65\xb5\x32\x99\xb1\x8b\x39\x9a\xa6\xff\xa0\x47\x00\xe2\x62\x8e\x26\xf3\x70\x31\x47\x0b\x47\x8e\xb2\xd9\x75\x21\xeb\xeb\x60\xc3\xba\x70\x0b\xae\xa7\x18\xd6\xc5\x3b\x7f\x31\x55\xeb\x87\xb1\xe4\xcb\x22\x67\x21\xea\xcb\x22\x67\x25\x75\x32\x68\x89\x9c\xb3\xc9\x51\x09\xe9\xfa\x86\x50\xe5\xa8\x84\x74\x59\xe4\x2c\xa2\x49\x97\x45\x8e\xb6\xc6\x2e\x4b\x97\x45\xde\x06\xf5\xbc\xeb\xc2\xff\x03\xa0\x5c\x17\x4a\x1f\x80\x72\x5d\x28\xb0\x4b\x2c\x6b\x91\xa0\x73\x33\xc3\x1b\x6a\x31\x3c\x96\x4a\x97\x65\xcd\xc2\xd3\xbf\xd8\xc2\x85\x37\x0f\xcc\xb9\x2e\x96\xa5\xc0\x9c\xeb\xc2\xe3\x03\xe6\x5c\x17\x61\x85\x8b\x2d\x5c\xa4\xf2\x5c\x96\x3c\x6b\x89\x17\xc6\xce\x27\x76\xb1\x93\x0b\xe5\x76\xb1\x93\x0b\xe5\x76\xb1\x93\x0b\xdf\xf0\x62\x19\x97\xe9\x4e\xef\x73\x93\xca\x73\x3d\x7b\xa0\xee\x47\x77\xba\x3c\xb5\x6d\x76\x31\x7f\x9b\x0f\xe7\x62\xfe\xb6\xe6\x08\xf3\xb7\xb1\xfc\x17\xf3\xb7\x59\x62\x5d\x56\x32\x5b\xb3\xc2\x4a\x66\x6b\x56\x58\xc9\x68\x6b\xec\x12\x3b\xdb\xa8\xb3\x8b\x31\xa4\x2e\x63\xba\x98\xbf\x8d\x3a\xbb\xac\x64\xb6\xe6\x8f\x95\xcc\xc6\x00\x5d\x56\x32\x9b\x20\xd1\x25\x92\xb6\x35\xb7\xbe\x3d\x54\x39\xe3\x31\x5d\xdf\x1e\xaa\x1b\x6f\xf0\xb2\x22\xd9\x78\xf3\x97\x15\xc9\x26\x8d\xf0\x62\x1a\x39\xe3\x31\x5d\x4c\xe3\x46\x0d\xde\x8e\xcc\xf4\x51\xb1\xce\xd8\x98\xe9\xcb\x3a\x63\xb3\xb5\x79\x31\x94\x5b\x9f\x18\x86\x72\x63\x64\x2e\x86\x72\xe3\xa3\x5f\x0c\xe5\xd6\x1c\xb1\x22\xd9\xa4\x18\x5e\x4c\xa3\xb6\xd4\x2e\xa6\x71\x1f\xdd\x89\xac\x09\x5c\x5c\xd6\x20\xda\x28\xbb\xbe\x47\x52\x0d\x55\x77\x3d\x19\xb1\x6a\xa3\x8c\xfa\xef\xd5\xf0\xea\x2e\xeb\x13\x23\x97\xe7\x12\x20\x33\x7c\xfb\xeb\x7b\x2b\x55\x5b\x6a\x17\x93\x6a\xfa\x36\x3d\x27\xa0\x5a\x52\x2f\xd0\xcb\x50\xc7\x6c\x1a\xbe\x1a\xf0\xfd\x6a\x24\x0e\x02\xdf\xaf\xc6\x6a\xec\x62\x36\xb5\xf9\x76\x7d\xa7\xa5\x52\xa1\x32\x51\x7d\xbe\x1a\xe9\x72\x17\x43\x69\xfa\x36\x31\x94\x86\x3b\x41\x51\xb1\x6a\xe4\x6b\x53\x4c\xac\x1a\x0e\x19\x45\xc4\xaa\x0d\xdd\x09\x05\xf0\x70\x14\x0d\xab\xa6\x2f\xd5\xb3\xe1\xab\xe9\x4b\xc5\xa4\x1a\x21\x0e\xea\x72\x55\xd3\x17\x77\x18\x9f\xbe\x31\xd6\x43\x46\xdc\x97\x0a\x5a\x95\x8a\x98\x89\xca\x59\xd5\x8e\xfe\x83\x9e\x66\x13\xb3\xa9\x4d\x3b\x2a\x5f\x55\xbb\xba\x93\xf1\x69\x6e\x09\x90\x19\x71\x7b\x6a\x4e\xd5\xe3\x73\x9b\x29\x72\x50\xd9\x45\xcb\x14\x37\xa8\xc7\x1d\xb9\x4c\x51\x83\x0a\x48\x2e\x53\xcc\xa0\x7a\x5d\xcd\xef\xa9\xe4\x4c\x8d\x83\xca\xe6\x5b\xa6\xb6\x41\x65\xf3\x2d\x53\xd7\xa0\x72\xec\x46\xa6\x8c\x40\x3d\x59\x2d\xa3\x25\x56\xfc\xa5\x03\x69\x97\x29\x17\x50\x4f\xa1\x17\x2c\xd5\xa9\x0c\x81\x65\x14\x28\xbc\x0c\xdc\xbe\x72\xec\x46\x06\x66\x5f\x8f\x7f\x9a\x19\x78\x7d\x3d\x83\x3e\xb1\x54\x67\x30\x58\x2c\x15\x85\x3b\x33\xf0\xf8\x7a\xdc\xb3\xc9\x40\xdd\xeb\x99\xba\x13\x7a\x1e\x37\xcc\x40\xdb\x2b\xd8\xba\x0c\xa4\xbd\x82\xad\xcb\x40\xd9\x2b\x9b\x6f\x19\x68\x7a\x3d\xee\x61\x66\xa0\xe6\x95\xd3\x35\x33\x10\xf3\x7a\x8c\x3e\x59\x70\x9d\x03\x3d\xe2\x6a\xc7\x97\xd6\x19\x78\x78\x3d\x17\x49\x60\x8e\x38\x6b\x33\x03\xdd\xae\x6c\xb7\x65\x20\xdb\x95\xed\xb6\x0c\xfc\xba\x72\x3c\x48\x06\xf6\x5c\xaf\x66\x85\xa5\xd9\x4d\x3c\xc7\xd2\xec\x66\x9e\xc3\x1c\xdd\xa2\x16\xf4\x0a\xbc\x10\x49\x63\xc3\x2b\x03\x25\xae\xb7\xea\x3f\xe7\xf3\x36\xe8\x11\x49\xbb\x9a\x15\xe2\x63\x60\xeb\x32\x20\xde\x4a\xdd\xd0\x0c\x78\xb7\x82\xad\xcb\x00\x71\xeb\xd5\xfc\x61\x64\xee\xe0\x4e\x8c\xcc\x1d\xbc\x05\x6c\xc2\xdc\xa9\x16\x23\xd2\x1c\xb1\x8e\xba\xae\x76\x33\x40\xd8\xca\xd6\x58\x06\x00\x5b\xef\x62\x1e\x08\x90\x71\x7a\x68\x06\x7d\x5a\xaf\xf1\x16\x34\xe8\x19\xff\x61\x48\xee\x81\x17\x0c\xc9\x3d\xf4\x89\xb1\xb8\x9a\x3f\xd6\x5f\x20\xed\xf2\xc3\xfa\xeb\x5e\xe8\xf9\xfa\xab\x3d\x8f\xfe\x3b\xb4\xd4\xcb\xa5\xc5\x7b\xed\x01\xb2\xf6\x68\x6e\x3d\x40\xd6\x1e\xcd\xad\x9b\xa3\xf6\x04\xf8\x74\x73\xd4\x9e\x80\x04\x3d\x27\xa0\x3d\x91\xb1\xbb\x39\x6a\x8f\x3e\xf0\x0e\xbd\x84\xcc\x3a\xf4\x12\x9c\x0d\xe8\xb9\xbb\x94\x9f\x41\x9f\xfa\xfe\x7c\x87\xa6\xb1\x89\x96\x1f\x0f\x9e\xb5\xa7\x42\xc1\x57\x7f\xed\xd1\xd7\xe8\xab\xbf\xf6\xe8\x2d\x70\x83\xd7\xc0\xd6\xe5\x67\x30\xf6\x0e\xd7\x6e\xf0\xda\xd3\x91\xee\x80\xcf\x2e\x5e\xe0\x73\xf0\x9e\x4d\x46\x3b\x19\xfb\x84\xb3\xc9\x3c\x4c\xe8\xe9\x4b\x9d\xd0\xd3\xbc\x4f\x28\x6c\xa8\x4f\x28\x6c\xf8\x9c\x50\xd8\x3c\xb7\x90\xae\x31\xbe\x05\x3d\xd3\x7f\xd0\xd3\x6c\x2e\x24\x71\x99\xb1\xf5\xbf\x08\x3b\x97\x64\x5b\x56\x5e\x3b\xd7\xdd\x8a\xdb\x04\x12\x24\x1e\x11\x7f\x67\x78\xba\xe6\x82\xfb\x5f\x70\x2c\x7d\x63\x1d\xc7\xb9\x61\xef\x5d\x64\xce\x4c\x10\x90\x48\x03\x09\x31\x18\x89\xa7\xf7\x62\x24\x48\x99\xb3\x14\xbb\xc6\xf6\x69\x6e\x63\xd7\xd8\xb8\x6b\xd5\x52\xec\x1a\xdb\xf7\xd1\xdb\x70\xdd\x35\x92\xe4\x2c\x85\x69\x6c\xdc\x1b\x64\x29\xce\xd4\x37\xa2\x6f\x96\x22\x5a\xd4\x82\xc5\xf5\xcf\x2a\x39\x2c\x6a\xfb\x8c\x89\x0e\xaf\x5e\xfb\x34\xb5\xb1\x11\x6d\x9f\xd1\x78\x58\xd4\xf6\x39\x0d\x6c\xba\x20\x25\xbc\xe9\x82\xd3\x85\x4d\x17\x5c\xb5\x0c\x4a\xaa\x05\x31\xab\x9e\x44\xcc\xca\x93\x07\x59\x2a\x4f\xc6\xb6\xb4\x41\x21\x6b\x29\x42\x55\xed\x93\x2a\x38\xc8\xd2\x19\xf8\x83\x2c\xfa\x08\x0e\xb2\x48\x15\x1c\x64\x19\xb4\x77\x90\x45\x8a\x3d\xb6\xb3\xed\x93\x62\x3f\x0c\xf5\x94\x2c\x0c\xb5\xd4\xc4\x41\x4e\xa9\x82\x8b\x9c\x9b\xff\x2e\x72\x6e\x3e\xa5\xcb\x98\x49\x79\x5f\xe4\x3c\x8c\xd9\x45\xce\x43\x7b\x17\x59\xf4\xf1\xc4\x46\xb4\x65\xa9\xeb\xd8\x88\x36\xd8\x79\x0c\xc2\x93\x96\x3f\x3e\xc8\xd8\x88\x36\x42\x71\x96\x62\xb3\xd9\xb2\xa6\x3d\xce\x35\x34\x28\x6b\xed\x0b\x2b\xdd\xb8\xba\xd6\xbe\x44\x2d\xcc\x2d\x44\x29\x8d\xcb\x9c\xec\x4b\xd4\x12\x9e\x50\xfb\x12\xb5\xb0\x88\xbf\x30\xc5\x2d\xc7\x9e\xc7\xbe\x30\xb7\x2d\x63\x60\xbf\xd8\x34\xb6\xcc\x6c\x7e\xe1\xed\x6c\x64\xcc\xd9\xf7\xd1\x7a\xd3\x7f\x85\x12\x75\x7e\xc8\x32\xf5\x24\xb2\x4c\xd5\xd9\x29\x21\x67\xf8\x3e\x5b\x66\xd9\x7e\x1f\x72\x6e\x7a\xf4\x21\xe7\x56\x2d\xc8\x19\x98\xd9\xbe\x38\xf2\xd7\x32\xf3\xf0\xc5\x46\xb4\x71\xdd\x97\x7d\x1f\x7d\x38\xb4\x97\xe9\xc3\x41\xce\x4c\x1f\x02\x57\xd9\x97\xe9\xc3\xd5\x7f\x21\x27\x3c\x3e\xf6\x85\x09\x6f\x25\x42\xa9\x06\x9d\x4c\x2b\x81\x6f\xed\x0b\xdf\x67\x2b\xac\x95\xaf\xf0\x9e\xc6\xba\xf0\x9e\xd3\x7a\x98\xe9\x46\xb6\x99\x7d\x61\xa6\x5b\xa9\xb4\x10\x66\xba\x95\xa6\x5a\x68\x41\xa3\x1b\x3b\xca\x56\x9a\xda\xbb\x94\xa8\x25\x4e\x47\x34\x32\xd1\xec\x8b\x1d\x65\x2b\x9d\x3e\x84\x79\x6f\xb0\xe9\xda\x67\xc8\x89\x32\xfd\x0c\x39\x87\xde\xa3\x75\xd6\xca\x67\xb4\xae\x39\x32\x5a\x9f\xaa\x93\xd6\x27\x73\xeb\xb4\x8e\x11\xfd\x62\x0f\xd9\x8a\x66\x2c\xf6\x90\xad\x68\xc6\x9c\x91\x40\xb5\x7e\xce\x48\x1c\xc6\xd3\x19\x09\xcd\x8a\xd3\xde\xa5\x96\x4a\x8f\x2e\xed\x55\x7a\xf4\x90\xac\xd2\x23\xd4\xee\x17\x26\xbc\x19\x46\x14\x0a\x9e\x66\xe1\xad\xb6\x2f\x0c\x7a\xb3\xa4\x27\xe3\x9b\xb0\x8f\xff\xc2\xa0\x37\xd2\xe2\xec\x8b\xdd\x5f\xb3\xcc\xe8\x62\x60\xad\xa8\x94\x29\x31\x63\x11\x65\x6a\x66\xbc\xd7\x69\xdd\x99\x23\xcc\xad\xfd\xcc\xfb\x1f\x55\xf2\x37\xa8\x12\xec\xf4\x61\x19\x89\x18\xda\x37\xa8\xb2\x31\x61\x58\x46\xeb\x74\x1d\xcb\x68\x9a\x68\x2c\xa3\x69\xa2\x07\xdd\x1b\x08\x3d\xe9\xde\x60\x89\x61\x27\x0d\xab\xf9\xc5\xc6\xb0\xd9\x64\x20\x62\x63\xd8\x0c\xb4\xfb\x61\x35\x6d\xd2\xd9\x89\x2c\x8b\x49\x99\x74\x6f\x21\x75\xf8\x53\x9b\x2d\xbd\x87\x9c\xfa\x24\xb0\xaf\x64\xc5\x19\xec\x43\xcd\x16\xfd\x9b\xc8\xb9\xf9\x08\x16\x72\x82\xb9\x3e\x6c\xaf\xe9\x73\xc1\xf6\x12\x86\xb4\x0f\xdb\x4b\x18\xd2\x3e\x6c\x2f\x61\x48\xfb\xb0\xbd\x76\xe8\x2d\xb6\xd7\xf4\x29\x2d\xfa\x70\xd5\x1e\x7d\xb8\x8c\x2e\xb6\xd7\xf4\x61\x61\x7b\x5d\x9f\x12\xb6\x97\x30\xa4\x7d\xd8\x5e\xff\xf4\xdf\xa3\x44\xdf\x31\xb0\x84\x28\xed\xc3\xc0\xfa\x47\x1f\x30\xb0\x84\x28\xed\xc3\x88\xba\x3e\x33\x8c\xa1\xeb\xc3\xc2\x18\x3a\x66\xfa\xc3\x18\xba\x54\xf9\xa1\x4e\xa3\xce\x43\x9d\xa0\xf2\x0f\x63\xe8\x18\x66\xd8\x95\x9a\xeb\xcb\x3a\x48\x2d\x65\x73\xa9\x45\x2a\x04\x33\xe6\x4d\xff\x39\x25\x5a\xb8\x8c\xc4\xa0\x85\xcb\x48\x0c\x66\xf3\x52\xa7\xbe\x97\xcb\x48\x4c\xbe\xc1\x47\x0b\xfa\x26\xc2\x67\xda\x5c\xaa\x00\x33\x46\x18\xd2\x3e\xcc\x18\xf9\x7a\xf6\x3d\xda\xdb\xb4\xf0\x68\x0f\x23\x9a\x31\x71\x1e\x2e\x0e\xcb\x89\x16\xae\xfe\xa3\x0f\x11\xb8\x32\xb8\x9d\x1a\xfc\x54\x96\x31\x86\x04\x25\x2d\x63\x0c\x3d\xc2\xcf\x96\xe3\x94\x79\xf3\x08\x71\x59\x8e\x53\xe6\xad\x26\xd5\x32\x29\x1d\x4a\x21\x67\x0d\xf7\x87\xc1\x10\xd5\xa0\xa8\xb6\x8c\x31\xac\xa0\xb3\x8c\x31\xac\x05\x39\x31\x86\xdc\x57\x68\x39\xf6\xac\x8d\x2b\x5d\x2d\xc7\x9e\xb5\x55\x40\x57\xc6\x50\xc2\x5d\x65\x19\x43\x59\x5d\x75\x86\x9c\x35\x3c\xbd\x96\x31\x94\xb5\xaa\x75\xe4\xac\x92\x0c\x39\xab\x5a\x88\xf1\xac\x98\x95\x8c\xa1\xac\x4d\x2d\x5c\x4a\xf1\x15\xe4\x8c\x9c\x18\x12\x78\xad\x1a\xa1\x4d\xcb\x18\xc3\xca\xfe\x2b\x63\x0c\x61\xc7\xb2\x9c\x91\x65\xea\x49\x64\x61\xe7\x0b\x03\x56\xab\xac\xf7\x9c\x69\x8f\xf5\x9e\x63\xaf\xdb\x60\xc7\x32\xd8\xb1\x1a\x39\x87\x96\x0b\xe3\xa9\x79\x2f\x8c\x27\xc6\x02\xe6\xac\x56\x31\xda\x19\x23\x5a\xe3\x8e\x0b\xcb\x18\xd1\xca\x9a\xce\x18\xd1\xaa\xaf\x00\x23\x5a\xdf\xdf\x1c\x17\x19\xfb\x5a\x9f\x04\x43\x4c\x7d\x20\x86\x98\x6c\xdb\x32\xb6\xb7\xa1\x26\x72\x1c\x52\x69\x0d\x35\x91\xb1\xbd\xc4\x47\x2d\x63\x7b\xdb\xa7\xf7\xa2\x0b\x8d\x4d\x78\x8e\xad\x75\x6b\x99\xe9\xc3\x12\x13\xf5\xb4\x8c\x25\x86\x8b\xdc\x32\x96\x98\xc4\x45\xcb\x58\xe2\x86\xa3\x24\x47\xca\x40\x6b\xa0\xba\x1c\x5b\xf2\xd6\xf4\xb9\x60\xa5\x1b\x5b\xb3\x8c\x95\x26\x1f\xd1\x32\x56\xba\x55\xbd\x17\x9f\x67\x03\xc7\x65\x47\xce\xae\xff\x90\x73\xa8\xce\x41\x89\x1e\x61\xc1\x1b\xaa\x20\x63\xc1\x1b\xc6\x22\x3b\x72\xb2\xfd\xca\x15\x59\xf4\x49\x54\x64\x01\x9d\x41\x67\xd6\xda\xa5\x96\x4a\x7b\xe0\xb1\x5c\x19\x89\xa7\x5a\xa2\x05\x32\x09\x2d\x63\xdd\x21\xf8\xb2\x1c\x7e\xdf\xd6\x33\x63\x16\x7e\xdf\xd6\x8b\xfe\x33\x4a\xcc\x51\x6c\xd7\x5b\x37\xda\xc3\xf2\x93\x3b\x68\x39\xfc\xbe\xad\x83\x8b\x21\x4c\x6b\xbd\xea\xbf\x98\x23\xb2\xfe\x2c\x47\xb8\xb4\x11\xa2\xb4\xdc\x90\x0c\x33\x9d\xc1\x0f\x5d\x63\x06\x7e\x20\x44\x69\x99\x0d\x7a\xc7\xf8\xe6\x8e\x64\x53\xff\x21\x19\x98\x0b\xa2\xb5\x46\x66\x9f\x65\xb0\x05\x99\x7d\x96\xd9\xca\x93\xcb\x67\x99\xad\x7c\x07\xfb\x42\xc9\xd6\xfa\xe5\x4b\x66\x2b\xdf\x2f\x52\x0f\x24\xc3\x39\x91\x81\x21\xfd\x51\x27\xdb\xfc\xfe\x98\x77\xb6\xf9\x43\x5f\x39\xdb\xfc\x20\x14\xfb\x29\xc5\x98\xc1\xbc\x6e\x39\xb2\xe2\xda\xd0\xb7\xcb\xc6\x9e\x7c\x3d\xcb\x11\xac\x6d\x03\x94\x9c\x81\x13\xe4\xe4\x59\x06\x4e\x8c\x4a\xeb\xc0\x09\xc2\x90\x06\x05\x5c\x1b\x95\x79\x00\x4e\x0c\x4c\x55\x06\x4e\x0c\x4c\x55\x06\x4e\x0c\xcd\x03\x20\x61\x68\xe4\x01\x02\x03\x30\x93\xd9\x84\x0f\xa9\x2c\x36\xe1\x63\xe9\x49\x24\xd3\xd7\x0a\x48\x20\x43\xcf\x32\xbb\xe2\x81\x23\x28\xb3\x2b\x86\x7b\xcc\x20\xa0\x6b\x70\x8f\x19\x04\x74\x6d\xe0\x16\xca\x9b\x1e\xe9\x4b\xde\xf4\x48\xa3\x1b\xe1\xd9\x36\x65\x72\xd8\x31\xcf\xa4\x16\x1e\x25\x5a\x00\x24\x4c\x69\x14\x40\xc2\x94\x71\x02\x24\x40\xd9\x6e\x19\x90\x40\x88\xd2\x32\x3b\xe6\xf9\x31\xef\xec\x8a\x67\xa6\xef\xec\x8a\x67\xa1\xef\x97\x5a\x8c\xd9\x04\x24\x90\x24\x67\x99\xfd\xec\x64\x27\x93\xd9\xcf\x4e\x99\x9c\x4b\x2d\xd2\x21\xe1\x83\x6e\x53\x26\x07\x00\x31\x1b\x92\x01\x20\x66\xa3\x85\x47\x8f\xda\x5f\xee\xb8\xb0\xfc\xe8\xac\x26\xfa\x21\xa6\x26\x1a\xa4\x31\x65\xb7\xd8\x5a\xc3\x25\x6f\x99\xed\xf3\x1c\x0c\x67\xc4\x71\xdb\x1c\xfa\x8f\x2e\x0c\xd5\xc9\xc0\xcb\x6e\x3d\x06\x9e\xed\x65\x49\x88\xc9\x82\x2b\x09\x59\xc0\x2b\x70\xfd\xb5\x79\x54\x72\x4a\x83\x12\x43\x86\xff\xa8\x80\x2d\x66\x1c\x9b\x32\x58\x01\xdb\xbc\xaa\x93\x21\x8b\x18\xb6\x15\x36\xe1\xf3\xea\x3d\x86\x8c\x85\x5a\x12\x72\x46\x94\xd5\xe0\x0f\x6c\xf3\xf1\x1f\xb8\x63\x25\x95\x62\x5c\x16\x38\xb5\x80\x3b\x16\xe8\xa5\x80\x3b\x16\x5b\x9e\x02\xee\x58\x18\xa7\x02\xee\x58\x18\x27\x38\x09\x1b\x44\x72\x56\xc0\x16\xb0\xd5\x5b\x01\x5b\xc0\x4f\x6f\xf0\x15\xb6\xc5\xe7\x52\x32\x2d\xe0\x21\x2e\xa0\x89\x05\x96\x29\xa0\x89\xc5\xe2\x2f\xa0\x89\x05\x5e\x29\xa0\x89\x85\x5b\xa8\x80\x26\xc8\x39\xb4\x02\x9a\x58\xb8\x15\x0a\x9b\xf0\x85\xa2\x2d\x99\xd6\x31\x55\x05\xa4\x41\x96\xa1\x15\xd0\xc4\x42\xed\x16\xd0\x04\x2c\xf7\x56\x0a\xa3\x04\xa2\x2d\x85\x51\x62\x77\x54\x0a\x7d\x98\xfa\x8f\x3e\x2c\xfd\x47\x1f\x16\xfd\x63\x9b\x0f\x3b\xbe\x15\x50\xc8\xd2\xd7\x03\x9c\x58\xf8\xfb\x0b\x70\x02\xae\x7c\x2b\xc0\x89\xc5\xfe\xa4\x00\x27\x16\x4a\xa3\x00\x27\x16\x4a\xa3\x44\xe0\xb8\xed\x44\x1f\xd8\xe6\xef\x4f\xb5\x38\x25\xc6\x0c\xa8\xb1\xf1\x1b\x16\xa0\xc6\xce\x7a\x2f\x46\x09\x52\x3b\x2b\x80\x84\xad\x79\x00\x24\x6c\x30\x65\x01\x24\x6c\xcd\x0a\x20\x61\x37\xbd\x47\xeb\x5d\x25\x5a\x67\x27\x5a\x9c\xd6\x71\xcf\x15\x00\xc4\x66\xfd\x15\x40\xc2\x66\xc5\x95\xf0\xf0\xb7\x3d\xf5\xdf\xa6\x84\x9c\x00\x08\xc2\xa5\x56\x80\x0c\x1b\x25\x5c\x80\x0c\xe4\x15\x5a\xa9\x48\x06\x6e\x2c\x38\x0b\x36\x48\xb1\x00\x20\x36\xd8\xb0\xe0\x1e\x20\x5b\xd0\x0a\xee\x01\x88\xf2\xac\x44\x50\xb9\x41\x94\x67\x05\xa8\x71\x00\x17\x05\xc8\x70\x50\xb4\x05\xc8\x70\x70\xd6\x15\x20\x03\x99\x84\x56\x30\xe1\x90\xe8\x59\xc1\x84\x9f\x42\xff\x30\xd3\xe4\x0e\x5a\xc1\x4c\x1f\xdc\xa4\x05\x53\x4c\x30\xd3\x0a\xa6\xf8\x60\xfe\x20\xdb\x6c\x87\x7d\x1b\x64\x9b\xed\x68\x75\xe0\x2d\x80\xc5\xdf\x0a\xde\x82\x03\x74\x2b\x98\x62\x02\x9d\x56\xf0\x16\x10\xcc\xb4\x82\xb7\xe0\xe0\x11\x28\x78\x0b\xc8\x39\xb4\x82\xb7\x20\x72\x0e\xff\xa8\x92\x61\xfa\x6c\x47\x9f\x3c\x76\xf9\x48\x29\xb2\x95\x3f\x9a\x06\xb6\xf2\x07\x3b\x59\xd8\xca\x1f\xb6\xeb\xb0\x80\xb6\x23\xa5\x88\xb5\x3d\x20\x94\xc2\x96\xfc\x48\xf1\xb1\x25\x3f\x6c\xe2\x0a\x5b\xf2\xa3\xc9\x64\xdb\x7d\xd9\x84\x97\x88\x14\xb7\x2b\xe5\x86\xcd\xbe\x5a\x0e\xd8\xec\xcb\x26\xbc\x60\xb3\xc9\x24\x34\x58\x47\xdb\x2d\x7a\x72\x51\xa2\x47\xd8\xe5\x6b\xfa\xef\x51\xa2\x16\x6c\xef\x65\xdb\x56\xf0\x56\x5f\x4d\x2d\xb6\xf7\x82\xc3\x0b\xd6\x96\xab\x41\x0d\xee\xd2\x76\xb1\x93\x70\x97\xb6\xab\xe9\x8b\x94\xed\x76\x41\x98\x85\xcd\x3b\x17\x85\x5a\xc1\x3f\x7d\x3b\xff\xe1\x9f\xbe\x52\x75\xf8\xa7\xaf\x26\x1a\x7b\xae\x40\x27\x0c\xa8\x8d\x6b\x43\xad\x60\xcf\xb9\x56\xd3\x4a\xc4\x94\x9b\x02\x81\x25\x8e\x69\x35\xb2\xe9\xac\x60\xeb\xc9\x91\xb3\x82\xad\x7f\xfa\x90\xd9\xf4\x3f\x7d\x90\xd8\x73\x05\xfb\x0a\x46\xfb\xb1\xd9\x2c\x18\xed\x27\x55\x8e\xd1\x26\x2b\xce\x0a\x46\xfb\xa9\xef\xf8\xc3\xc9\x83\xb3\x82\x3f\x5c\x81\xc0\x82\x41\x7f\x84\x87\x0a\x06\xfd\x69\x24\x30\xe8\xaf\x4b\x16\xe4\xc4\xbf\x59\x70\x32\x3c\x29\x7d\x9c\x0c\x64\xd3\x19\x7c\xaf\xed\x11\x3a\x32\x8c\xfd\xc3\xb5\x65\x38\x19\xc8\x98\x33\xc3\xd8\x3f\x70\x38\xcc\xb0\x8d\x8c\x39\x83\x19\xb6\x29\x64\x68\x38\x19\x5e\x9c\xe2\x30\xc3\xc9\xc0\x55\x9d\x66\x00\x81\x77\xd4\x02\x23\x88\x9a\x37\xdc\x0a\x64\xda\x99\x61\xde\x1f\x4e\x0d\xc3\xbc\xbf\xa7\x27\x91\x8c\x7d\xa9\x85\x09\xef\x10\x1f\x98\x85\x7b\xa0\x2b\x80\x68\xe1\x1e\xe8\x29\xe9\xc9\x15\xa5\x4f\x75\x6e\x4a\xf4\x21\x7c\xe5\x3d\x71\x0a\xc0\xc2\x57\xde\x13\xea\xcc\xc2\x57\xde\x21\x4f\x34\x0b\x5f\x79\x4f\x45\x4f\x16\x4a\x8f\x92\x45\xc9\xf4\x9e\x53\xd2\x7b\xc8\x49\xa8\xdf\x02\x08\xf4\xe4\xfa\xaf\x53\xea\x94\xe8\x83\xeb\x49\xfa\xc0\xaa\xb2\x8c\x9c\x7c\x3d\x56\xa8\x05\x03\x64\x85\x27\xf9\xe6\xad\xd0\xdb\xc1\x78\x16\x7a\x8b\xb1\x87\xaf\xb7\x27\x0c\x90\x19\x3d\x22\xf6\x60\x86\xd4\x98\x77\x33\xa4\x06\x1c\x9a\x21\x99\xe6\xd6\x68\x4f\x73\x1b\x06\xb6\x73\x1d\xa7\x59\xec\xd0\x3b\x14\x8c\x66\xce\x08\x3e\x95\x68\x0f\x7d\x66\xce\x08\xe2\x73\x30\x67\x04\x09\x20\x5a\x18\xd8\xfe\xa5\xbf\xa9\x64\x0b\xfb\xda\xe1\x71\x34\x0b\xfb\xda\xbf\x4f\x55\x86\x28\x1f\x8a\xcf\x22\x82\xde\x3f\x5c\x0e\x16\x11\xf4\x0e\x0b\x89\x59\x58\xdb\xfe\x11\x1b\xb6\xb0\xb6\xfd\x2b\x7a\xb2\x50\xa2\x7b\x61\x6d\xfb\x67\x7a\x0f\x31\x4d\xff\xc5\x50\x93\x93\x67\xd0\x18\xf7\x8f\x45\x0c\x8d\x71\x27\x0b\xcf\x2c\x6c\x68\x57\x78\xcf\x62\xdb\xdd\xbf\xa1\xff\xe8\x11\xb6\xc9\x1a\x3d\x62\xc3\x6c\x8d\x16\xa6\xea\x8c\x81\xff\x96\xfe\xa3\xb7\x78\x1f\xad\xd1\x5b\x4d\x5f\x47\x16\x7c\x91\xd6\x91\x05\x9f\x94\x75\x64\xc1\xfb\x68\x1d\x59\x30\x5c\x16\xee\xfe\xae\x10\x9e\xc5\x96\xbc\x7f\x18\x2e\xeb\xc8\x09\x9a\xb7\x8e\x2c\x57\xed\x21\x0b\x68\xde\x06\xad\x83\x3b\x2c\x36\xd3\x3d\xb3\xdd\xb3\xb0\xe7\x3d\x6b\xfe\x62\xfb\xdc\x33\x18\xcf\xc2\x2e\x77\x32\xf4\xcc\xc2\xf8\xf6\xac\x59\x99\xbc\x87\x5b\xc8\x62\x6b\xdd\x33\x4e\x0d\x8b\xad\x75\xe7\xea\x4c\xb3\x49\x9d\xae\xf7\x62\x04\x33\x88\x0f\xca\xe8\x9e\x41\x21\x16\x66\xba\x93\x77\x67\x16\x9b\xe9\x9e\xf1\x14\x42\x27\xdd\x33\x71\x09\xe8\xa4\x7b\x06\x79\xdb\x42\x16\xf0\x9f\x2d\xda\xd3\x82\x5b\xb4\x07\xfe\xb3\xf0\x9c\xf7\x8c\x8b\xc3\x36\x75\x82\xae\x21\x9e\xee\x59\xb3\xb9\x79\x0f\x97\x91\xc5\xc6\xb7\x2b\xa0\x67\x07\x39\xf1\x09\xdb\xe1\x3d\x2d\xb8\xc3\x48\x68\xc1\x85\x69\xec\x45\x4a\x31\x4c\x63\x2f\x6c\x91\x2d\x4c\x63\x2f\x78\xe3\x2d\xfc\xe1\xbd\x68\x3d\x84\x3f\xbc\x17\xad\x87\x30\x9b\xbd\x14\xd5\x19\x92\x15\x8d\x7c\x6c\x6e\x7b\xd1\x58\x87\x31\xec\x05\x77\x12\x24\xd8\xbd\x80\xa0\xed\xd1\x82\x14\xd8\xa3\x85\x46\x7b\x61\xd4\xba\xc2\x74\x16\x46\xad\x17\xa9\xb3\x30\x6a\x9d\xdc\x3a\xb3\x30\x6a\xbd\x0c\x3d\x89\x2c\x84\x59\x3d\xd1\x3a\x86\xcb\x13\x7d\xc7\x70\x79\xa2\xef\x18\x2e\x08\xb9\x7b\x41\x9d\x41\xc8\xdd\x61\xc9\x31\x0f\x33\xd6\x15\xa6\xf3\x84\x64\x47\x4f\x22\x19\x86\xcb\x13\x92\x61\xb8\x3c\x8c\x5a\x27\x27\xcf\xfc\x43\x16\x0c\x97\x7f\xc8\x82\x72\xf3\xd8\x97\x76\xe3\x9b\xf7\xd8\x6d\x76\xee\x9d\x34\xe8\xc0\xbb\xe1\xc8\x83\x0e\xbc\x1b\x23\xef\x98\x31\x05\xe6\x1c\x33\x66\x45\x75\xc6\x3c\x98\xa9\x96\x58\x7f\x86\xe3\xc2\x31\x71\x86\x9b\xd4\x31\x71\x06\x3c\x73\x4c\x9c\xe1\x26\x75\x4c\x9c\xb1\x1e\x1c\x33\xa6\xc8\x9c\x63\xc6\xe2\xde\xc9\x3f\xaa\x64\xc7\xc2\x19\xfe\x2a\xc7\xc2\x71\xd1\xa4\x39\x16\xce\x40\x28\x8e\x85\x33\xce\x2e\x78\xa6\x7b\x40\x74\xb8\xcf\xbb\x82\x76\x70\x9f\x77\x05\xdf\x3c\xd3\x3d\x70\xb8\xc7\x76\xb6\xc3\xf8\x67\x5e\x18\x5c\x36\xa2\x5e\xe8\x02\xaa\xce\x0b\x5d\x60\x5b\xea\xd8\x50\xe3\x18\x8c\x17\xe4\x44\x0d\x7a\x41\x4e\x0e\xa5\x39\xf6\x55\xe1\x36\xc7\xbe\x92\xf5\x67\x8e\x7d\x55\x48\xcd\x0b\x72\xea\x23\x28\xc8\xf9\xf4\x64\x4c\x83\x82\x68\x1e\xdb\xd9\xee\x1f\x75\x62\x7b\x9d\xed\xac\x63\x7b\x3d\xeb\xc9\x46\x89\x29\x0a\xcf\x79\x77\xe2\xf0\x1e\x9e\xf3\x4e\xd6\x9f\x79\x78\xce\xbb\xeb\x93\xc0\x2e\x7b\xd1\x7f\x21\x8b\x9b\xea\x44\x16\xf0\x8a\xc7\xa6\xb8\xbb\x3e\x1e\x6c\x36\xac\x85\x06\x7b\x7c\xe7\x9a\x4b\x73\x6c\xb6\xc2\x6d\x8e\xcd\x76\x7d\x3c\x8e\x64\x20\x7d\x0f\x5f\x79\xe7\x2a\x4b\x73\xcc\x34\x19\x81\xe6\x98\x69\xc7\xfc\xb9\x23\x35\x5e\x4b\x77\xa4\xd6\x17\x82\x09\x77\xb0\x0c\x6c\xf5\xdd\x27\xb3\x89\xf1\x75\x4c\x9c\x57\xc6\x4c\xcb\xbd\x32\x66\x9a\xe9\x4a\x7b\xf8\x30\xe1\xae\xef\x4e\xd8\x13\xee\xfa\x4e\xbe\x9e\xc1\x5d\xdf\x2b\xdb\x60\x8f\xe3\x6b\xbd\x6a\xa1\x62\x7c\xab\x66\x0c\xe3\x4b\xf6\x9e\xc1\x72\xdf\xab\xc6\x1a\xe3\xab\x10\x97\xc7\xf1\xb5\x5e\xd9\x3d\x38\x06\xb6\x72\xbe\xc4\x31\xb0\x95\x5d\x80\x63\x60\x2b\x20\xc1\x31\xb0\x15\xa4\xef\x71\xa5\x4d\x57\x00\xca\x31\xb0\x75\xea\x3d\xda\x63\x27\xea\x83\xf6\xf4\x5d\xc7\x46\xbb\x57\xc2\xc8\x1e\x1b\xed\x4e\x56\x9c\x79\x6c\xb4\x7b\x3d\x7a\xd2\x28\xd1\x07\xcc\x74\xbd\x7a\x8f\x71\xc1\xa0\xfb\xa0\x0f\x18\x74\xc7\x84\x37\x1c\x09\x8e\x09\xe7\xd2\x4b\xf3\x08\xe0\x77\xae\xb2\x34\x8f\x2d\x79\x6f\x1a\xc1\xd8\x92\xf7\x86\x8f\xd6\x63\x4b\xde\x9b\xc6\x0c\xd3\xdf\x38\x59\xe0\xe1\x47\xef\x4d\xea\x2c\x0e\xc1\xf5\xc6\x79\x1d\x8f\xe0\x7e\x57\x64\xc7\x23\xb8\xdf\x1b\x8e\x04\x8f\xe0\x7e\x6f\xf8\x61\x3d\x12\xa2\x7a\x6b\x7a\xb2\x51\xd2\x93\xf4\x81\xdd\xa6\x03\x27\x5a\xa7\xb7\xc0\x89\x36\xd4\x1e\xfd\x93\xc9\x01\x4e\x28\xce\xe3\xc0\x89\xa6\x2f\x72\xd2\x3f\x69\xa2\x49\xff\x70\x7b\xf9\xa2\x7f\xd2\x21\x8b\xfe\xb1\xeb\x77\x60\x48\x23\x84\xe7\xc0\x90\x26\x43\x02\x0c\x21\x31\xcd\x1c\x18\x12\x89\x69\x7f\x56\xc9\x11\x0a\xe8\x1d\xcc\xe5\xe1\x80\xe8\xfd\x53\x73\xd1\xbd\x2e\x1b\x03\x7a\xe9\x6c\x79\x1c\xf4\xd2\x8b\x9a\x8b\xee\x75\x53\x17\x2e\x25\x9e\x8c\xb8\x7f\xef\x9a\x22\x90\x4d\x97\x9a\x00\xd9\x74\xd9\x9f\x8d\x2c\x04\x99\x7c\xd3\xba\x26\x6c\xd3\x7a\xd5\x93\xb4\xce\xd6\xda\x37\xad\xb3\xb5\xf6\x4d\xeb\xa0\x09\x3f\xb4\x0e\xd6\xf6\x43\xeb\xa0\x33\x07\x1f\x75\x4d\xe6\xa1\x75\xb0\x9a\x83\x96\x3a\x68\xc2\x0f\xb2\x4c\xbd\x87\x2c\x6c\x87\xfc\xd0\x1e\x67\x33\x1c\x5c\xd5\xb5\x8c\xc0\x4e\x5d\x0b\x07\xec\xd4\xc1\x63\x0e\x76\x52\x38\xca\x2f\x2d\x3c\x95\x68\x41\xa8\x00\x5c\x35\xf0\x76\x3a\xb8\x6a\xb0\x65\xf5\x70\x24\xf4\x21\xa5\x0f\xae\x1a\x1c\x90\x73\x70\xd5\xd0\x8c\x81\xab\x86\x30\x42\x38\x12\xfa\xd0\xfc\x85\x23\xa1\x0f\x99\x00\x30\x17\x97\x49\x9a\x83\xb9\x86\x16\x15\x98\x6b\x54\xfd\xb7\x28\xa9\x3d\xe4\xd4\x3c\x3c\xe4\x6c\x7a\x2f\x46\x49\xe1\x28\x8f\x88\x42\x1f\xf8\x4c\x2b\x08\x6c\x30\x2b\x35\xd1\x07\x4c\x40\x4d\xf4\x61\xe8\x49\xfa\x00\xfe\xab\xa0\xb3\x01\x10\xa8\x20\xb0\x01\x10\xa8\x20\xb0\xc1\x82\xab\x09\x39\xc1\x7f\x35\x21\x27\x07\xb3\x6a\x42\xce\xa3\xf7\x90\xf3\xaa\x3d\xe4\xc4\x68\x57\x90\x1b\x17\x3f\x5a\x05\xb9\x29\x54\x55\x41\x6e\x0a\x4e\xd5\x88\x28\x74\xf2\xe7\xac\xe2\x8e\x98\xb8\x1c\x6a\x44\x14\xfa\x24\x64\x58\xc1\x78\x64\xd3\x59\x05\xb9\x4d\x9c\x75\x15\xe4\x36\x3f\xa4\x06\xb9\x4d\xd6\x66\x05\xb9\x91\x4d\x67\x15\xe4\xc6\x85\x91\x56\x41\x6e\x93\xaf\xa0\x82\xdc\x26\xe6\xa8\xe2\x9c\x50\x88\xab\xe2\x9c\x98\x04\x80\x2b\xa8\x8e\xab\x25\xad\x02\xcf\x26\xc6\xa9\x02\xc1\x26\x2b\xb5\x02\xc1\x26\x0e\x88\x0a\x04\x9b\x78\xce\x6b\x41\x16\xd4\x6e\x2d\xc8\x42\x68\xac\x02\xa5\x26\x6e\xaf\x0a\x94\x9a\x4d\xff\xc5\x8c\xcd\xae\xff\x68\x0f\x58\x50\x81\x4b\x53\x5f\x01\x70\x49\x71\xac\x6a\xb4\xc7\x2e\xa0\x1a\xed\xb1\x6e\x2b\x90\x68\x4e\xfd\x47\x7b\x84\x3d\x2b\xae\x8a\x49\x58\xbe\x02\x97\xa6\xbe\x1e\xe0\xd2\xc4\xc7\x5e\x81\x4b\x73\x31\x7f\x40\xa2\x09\xa8\xac\x40\x22\xc5\xc6\x2a\x90\x48\xd1\xb0\x0a\x24\x9a\x98\xdb\x0a\x24\x9a\x7f\xbb\xc2\xde\x2a\x1e\x8e\x89\x42\xa9\xce\xc7\xa3\xcf\xd3\xf9\x78\xd8\x82\x54\xb0\x13\x57\x67\x5a\xc5\x55\x31\x9f\x4a\xd4\xc2\xc1\x9e\x0a\x06\x9a\xd8\xe5\x1a\xee\xfe\x4e\x02\xa2\x55\x30\xd0\xd2\x07\x89\xab\x62\xa1\x5e\x6a\x9c\x2c\xe8\x0b\x97\x7e\x8d\xd3\x03\x7d\xe9\x83\xc4\x8d\xa1\xd0\x58\x05\x2d\x2d\x36\x8d\x35\x0e\xfb\xf7\x85\xb7\xac\x82\x96\x14\x28\xab\xb8\x31\x16\xca\xa6\xe2\xc6\x50\xa0\xac\x82\x96\x96\xab\x96\x47\x89\x3e\x80\x96\x16\x67\xab\x6b\x9c\x25\xe8\x4b\x9f\x59\x9c\x25\xe8\x0a\x9b\x55\xdc\x18\x0b\xeb\x5e\x71\x63\x2c\x0c\x42\x05\x65\x29\x6c\x56\x41\x59\xab\xd3\x07\x50\xd6\xea\x6a\x0f\x39\x87\xfe\x63\x24\xa4\x7a\x40\x59\x0a\x9b\x55\x50\xd6\xc6\x3b\x5e\x41\x59\x1b\xc4\x57\x41\x59\x5b\xbd\x05\x65\x6d\x4c\x63\x05\x65\x71\x05\xa6\x55\x50\xd6\xc6\x1b\x58\x41\x59\x1b\x3f\x73\x05\x65\x91\xe7\x67\x15\x94\xb5\x35\x2e\xa0\xac\x5d\xd5\x42\xc8\xb9\xc1\x2b\x15\x24\xb5\xd5\x23\x90\x14\x19\x7a\x56\x31\xda\x0a\x16\x55\x8c\xf6\x66\x5f\x53\x71\x47\x90\x69\x67\x75\xd3\x23\x76\x39\x75\xd3\x23\x36\xbe\x75\xd3\x23\x7c\x7c\x15\x63\xcf\xe5\x95\x56\x37\x72\x72\xc4\xb0\x6e\xe4\xbc\xaa\x65\x50\x62\x1e\x30\xf6\x5b\x8a\x16\x37\xc6\x91\xfa\xc4\x84\x2b\xe4\x54\x31\xe1\x47\x0a\x13\x13\x7e\x38\x71\x51\x31\xe1\xa7\xaa\x96\x46\x49\xff\x75\x4a\x2c\x46\xcc\xfb\x01\x40\xd4\x88\x36\xf4\xa3\x2f\x24\xa2\x0d\xfd\x48\x11\x61\xde\x8f\x46\x30\xa2\x0d\xfd\xb0\x2f\xad\x11\x6d\xe8\x07\x17\x5c\xc5\xf4\x1f\x29\x1b\x5c\x2a\x67\xe9\x3f\xfa\x20\x73\x04\x2c\x38\x04\xed\x2a\xb0\xe0\xb0\x13\xad\x17\x39\xb5\xfa\x2f\x72\x82\xc3\x2b\x20\xe1\x10\x42\xaf\x80\x84\xa3\xd5\x0f\x48\x50\xec\xa8\x02\x12\xc8\x8a\xb3\x7a\xe9\xc3\x55\x9d\xf4\x81\xb3\x43\x15\xc7\xcc\xd5\x58\x03\x20\xa0\x87\xb3\x0a\x80\xb8\x32\x24\x00\x88\xcb\x79\xfb\x0a\x80\xb8\x04\xf4\x2a\x00\xe2\x72\xac\xaf\x02\x20\x2e\x00\xa2\x02\x04\x2e\x90\xaf\xe1\x8a\xb9\xac\xcd\x86\x2b\xe6\x82\xbc\x1b\x40\xe0\x02\x12\x1a\x40\x80\xfb\x23\xad\x01\x04\xb8\x3f\xd2\x1a\x40\xe0\x02\xdd\x1a\xa6\xff\x62\xd0\x1b\x26\xfc\xa2\x31\x1b\x26\x1c\x4a\x36\x6b\x98\xf0\x8b\x63\xa6\x61\xc2\x23\x6d\xec\x8f\x2a\xb9\x7d\x08\xf6\xf4\x1a\x82\xa1\x4c\x1b\x96\xff\x11\x6c\x68\x58\xfe\x07\x9e\x6e\x58\xfe\x87\x97\xad\x61\x6d\xe1\x75\xb3\x86\xb5\x7d\xa8\xc8\x86\xb5\x7d\xe0\xb1\x86\x45\x7d\x28\xc5\x86\x45\x7d\xe0\xe2\x86\x45\x7d\xe0\xb1\x16\xf1\xfb\xae\x6c\xb3\x86\x53\xe3\xf1\x41\x36\x9c\x1a\x8f\x4d\x71\xc3\xa9\xf1\xf8\x3c\x1b\x96\xf8\x4d\xd5\x49\x7b\x5b\xb5\x5c\x4a\xf4\x01\x6b\xab\x70\x4d\xc3\xda\xc2\xac\x66\x0d\x6b\xfb\xd8\x42\x36\x82\x06\x70\x97\x5b\xc3\x71\xf1\x58\xe0\x0d\xc7\x85\x82\x37\x0d\xc7\xc5\x63\x23\xd3\xb0\xd2\x8f\x6d\x77\xc3\x4a\x2b\xb0\xd3\xb0\xd2\x5c\xa8\x68\x2d\xac\xed\x48\xa0\xac\x16\xd6\x76\x28\x17\xac\x85\xb5\x1d\xb0\xa7\x59\x0b\x27\xc3\x48\x78\x34\x5b\xe5\x3f\x8e\xf9\xb4\x30\x86\x23\xf1\xe9\xb6\x70\x08\x8c\x04\x2e\x6e\x11\x25\x1f\x70\x9e\x5b\xab\xd4\x52\xf4\xde\x8e\x12\x1e\xcd\xd6\xa8\x45\x9f\x75\xe3\x3f\x1c\x1e\x2d\x5c\x00\x23\x81\x7a\x5a\x47\x6a\x70\x71\xeb\x48\x0d\x06\x6a\x61\xaa\x46\xc2\x25\xd6\xc2\x74\x0c\xe5\x7b\xb5\xc1\x7b\x20\xe1\x36\x78\x0f\x67\x48\x1b\xf4\x08\x0c\xd4\xc2\x74\x8c\x84\x5a\x6a\x83\x1e\x69\xde\x07\x3d\xd2\xbc\x0f\x7a\x34\xd5\x02\x72\x2e\xd5\x72\x29\xe9\xc9\x17\x25\xdc\x26\x30\x4c\x8e\x84\xb1\x68\x13\xc9\x50\xfa\x6d\x22\xd9\xd5\x93\x48\x86\xea\x69\x13\xc9\xf4\x15\x4c\x7a\xcb\xc1\x3a\x78\x2a\x87\x02\x3b\xf0\x54\x8e\x0f\x07\x4b\x8b\x6d\xf7\x80\x30\xcd\x5a\x6c\xbb\x07\x37\x31\x5a\x8b\x6d\xf7\xf8\x38\xbd\xd3\x62\xdb\x3d\xb8\x89\xd1\x5a\x6c\xbb\xc7\x97\x55\x67\xf4\x0f\xfa\x34\x6b\xb1\x45\x1e\x90\xa2\x19\x8c\x96\xe3\xd3\xca\x59\xb4\x07\x80\x68\x8b\xf6\x34\x47\x8b\x3a\xa5\x88\x16\x75\x12\x60\x6b\x61\x36\xc7\xc7\xde\xa5\x85\xd9\x1c\x9f\xd4\x52\x98\xcd\xa1\xe4\x2c\x98\x30\xc7\x87\x13\x13\xb6\xcb\xa1\x24\xab\xb6\x69\x4f\x0a\x6c\xd3\x3f\x50\x24\x6c\x97\x03\xca\x32\x6b\x87\x51\x42\xcd\xb7\x83\xd4\x9c\xe9\x80\xdf\x72\x28\xd2\xd2\x0e\xb5\x68\xac\x63\xcf\x3a\xb2\x56\x47\x98\xb1\x91\xb5\x3a\xc2\x8c\x8d\x8c\xd2\x6f\x61\xc6\x06\x77\x1a\x1a\x4c\x98\x23\x13\xfc\x6e\x61\xaa\x86\xa2\x29\x30\x61\x8e\x2c\x2d\x15\x41\xf3\x91\x5d\x75\x76\x4a\x8c\x4b\x98\xb1\x91\x5d\x2d\x84\x64\x59\x23\x1f\xc6\x69\x64\x20\x58\xbb\x48\xd6\xff\x72\xed\x90\xb5\x87\xd0\x58\xe9\xf6\x10\x5a\x8b\xe3\x21\x34\xdb\x05\x88\x37\x47\x06\xb9\xb5\xb0\x69\x23\xb3\x5d\x68\x8f\x0e\x69\x52\x1e\x1d\x5a\x7a\x0f\xa1\xd9\x04\xb4\x87\xd0\x5b\x4f\x32\x9c\x58\xe9\x16\x1b\xdf\x91\x65\x71\xc2\xde\x8d\x8c\x7f\xac\x3d\xba\xa7\x49\x79\x74\x8f\x2d\x24\x44\x9f\x23\xe3\x05\x86\xe8\x73\x14\x50\x39\x44\x9f\xa3\x80\xc3\x21\xfa\x1c\xe5\xd3\x7b\x46\x69\x52\x0a\xc9\x4a\xd6\x7b\x8b\x52\xa5\xb4\x29\xe9\xbd\x43\x29\x26\x05\x4a\xd0\x51\x40\x9f\xfd\xa3\x05\xce\x4f\xf7\x8f\x16\x38\xb0\x06\x5d\xe8\x28\xae\xf7\x62\x94\xb8\x42\xd1\x7a\x6c\x67\x87\xb2\xb1\xa0\x12\x1d\x85\x93\x1a\x50\x89\x8e\xd2\xf4\x24\x72\x76\xfd\x87\x9c\x43\x2d\x20\x27\x73\x04\xcd\xe8\x80\x25\xcc\x7a\x6c\x7c\x47\xc1\xa8\xf5\xd8\xf8\x0e\x65\x63\xf5\xcc\x28\xb1\x89\xeb\x99\x3e\x90\x8f\x08\x05\xe9\x28\x98\x2a\x28\x48\x47\x41\x65\x41\x41\x3a\xb8\x34\xd1\xa0\x20\x1d\x85\x19\x83\x82\x74\x14\x0e\x15\x42\x41\x3a\x4c\xb3\x12\x71\x89\x61\x9a\x87\xd8\x14\x0f\x63\xdb\xdd\x63\x53\x3c\x4c\xa3\x1b\x26\x7c\x58\xd1\x7f\x97\x92\xde\x8b\x3e\x18\xf8\xa8\x87\x09\x1f\x0a\xc2\xf4\x88\x59\x0c\x63\x7f\xd2\x23\x66\x31\x0c\x27\x0a\x24\xa7\xc3\xc1\xa9\x90\x9c\x0e\x08\xa2\xac\x87\x79\x1f\x8e\x4b\xa5\x87\x79\x1f\x8e\x92\x82\x00\x75\x78\x57\x0b\x93\x92\xea\x0c\x59\x9c\xf5\x00\xc9\xe9\xf0\xa9\x92\x51\x42\x16\xa3\x75\x54\x16\x44\xa6\x43\x89\x2a\x10\x99\x0e\xc7\x3c\x40\x5d\x3a\xa0\x92\x32\xa8\x4b\x47\xfd\x54\x8a\xaf\xbc\x12\xc1\xe8\x98\xf0\x0a\xc2\x84\xd6\x74\x54\xcc\x74\x8f\x0d\xf3\x80\x2e\xca\x7a\xec\x8a\x87\xd2\x48\x7a\x44\x14\x86\xd2\x48\x3a\xc6\xbe\x6a\x3c\x23\x4e\x30\xe4\x55\x87\xc8\x74\x54\x5c\x54\x1d\x63\xaf\x04\x90\x8e\xb1\xaf\x84\x21\xa1\x2e\x1d\x55\x23\x1f\xbb\xd4\x51\xf5\xd5\x61\xd0\x2b\x66\xb3\xc7\x2e\x75\x54\x8d\x44\xec\x52\x47\x5d\x8c\x44\xa7\xb7\x0b\x39\x3b\xed\xa1\xbc\x61\xfa\x1c\xf2\xb1\x77\x0c\xb3\x12\x32\x7a\x78\xc7\x47\x7d\xfa\x6f\x53\xa2\x16\xcc\xb4\xfc\xe8\x1d\x53\xdc\x88\x16\xc1\xf4\x39\x1a\xfb\x21\x98\x3e\x07\x74\x51\x06\xd3\xe7\x68\x18\x4a\x98\x3e\x87\xbc\xea\x1d\x53\xac\x1c\x8c\x8e\x29\x6e\x18\xd1\x8e\x29\x86\x2e\xca\x3a\xa6\xf8\x07\x69\xfe\x59\x25\x77\xac\x74\x2b\x6a\x6e\x52\x62\x38\xb1\xd2\x4d\x13\x86\x95\x6e\x9a\x30\xac\x74\x93\x22\x0a\xe7\xf8\x68\xae\xee\x3d\x4a\x74\x68\xd1\x75\x5c\x00\x7d\xd1\x75\xac\x0a\x84\xa4\xa3\x81\xb9\x20\x24\x1d\x5c\x66\x67\x10\x92\x0e\xb9\xfb\x21\x24\x1d\x4d\xcb\x08\xcb\xdf\x40\x60\x10\x92\x0e\x25\x79\x40\x48\x3a\xe4\xee\x87\x90\x74\x34\x2d\x1c\x50\x01\xe4\x51\x06\x21\xe9\x68\x5a\x38\xa0\x82\x36\x55\x0b\x7d\xd0\x32\x02\x15\x34\xb6\x7b\x90\x95\x0e\x68\xa6\x0c\xb2\xd2\xd1\xd8\x76\x43\x56\x3a\x9a\x96\xd1\xa6\x7f\x4f\xff\xd1\x3f\x29\x29\xd0\x84\x9c\xff\x3d\x3c\xe0\xa3\x83\x92\x7b\x1c\xcf\x1b\x9d\x0d\x5e\x8f\x63\xf3\xa3\xe3\x8b\x84\xba\x74\x74\xd0\x12\xd4\xa5\xa3\x6b\xda\x41\x0c\xf2\xf0\xf7\xd8\x22\x0f\xf9\xf4\x21\x2b\x1d\x5d\xe6\x01\xc4\xd0\x71\xda\x74\x10\x03\x54\x52\xd6\x63\xe3\x3b\xba\xe6\x28\x36\xbe\xa3\x93\xda\xd0\x41\x13\x9d\x80\x57\x07\x4d\xc8\xc3\xdf\x41\x13\x4a\x31\x81\x00\x75\x74\x8d\x2e\x68\xa2\x4f\xfd\x17\x73\xd4\xb5\x18\x2f\x52\x6f\x49\x86\xd4\x52\x52\x60\x0b\x79\xe3\xa1\x3c\x1d\x1d\x97\x03\x44\xa6\x63\xb0\x8b\xeb\x18\xf4\xa1\x51\xc2\xa0\xcb\xe3\x0e\xad\xe9\x18\x5a\x70\x18\xf4\x81\x41\x80\xd6\x74\x0c\x16\x15\xb4\xa6\x63\xe0\x20\x1b\x18\xf4\x91\xf5\x64\x8c\xcb\x00\x49\x0d\x0c\xfa\x00\x49\x41\x79\x3a\x06\xa3\x0b\xe5\xe9\xe0\x8e\x3a\x83\xf2\x74\xc8\x03\x0e\xe5\xe9\x80\x6a\xc9\xa0\x3c\x1d\x83\xf3\x25\x50\x9e\x0e\xee\xa1\x33\x28\x4f\x07\xc4\x4b\x36\x30\xef\x4a\xf2\x18\x98\x70\xa5\x75\x0c\x4c\x38\x37\xcf\x19\x74\xa8\x43\x49\x1e\xd0\xa1\x8e\x71\xf4\x24\xed\xe1\x8e\x18\x18\x66\xa5\x7c\x8c\x4c\x7b\xe0\xfe\x91\x19\x09\x5c\x93\x03\xa3\xcd\xcd\x73\x06\x8d\xea\x80\x24\xc9\xa0\x51\x1d\xf2\xa3\x0f\x0c\x33\xf7\xc9\xd9\xc0\x30\x4f\x0c\xec\xc0\x30\x4f\xbe\xd6\x81\xf1\x9d\xa6\xd2\xa1\x54\x28\x5d\x4a\xf4\x01\xe3\x3b\x01\x3a\x10\xae\x8e\x89\x63\x0d\xc2\xd5\xa1\xb4\x8e\x81\xf1\xe5\x76\x39\x1b\x18\x5f\x98\x90\x6c\x60\x7c\x67\xd5\x7b\xc8\xa2\xd1\xc5\xc0\xce\xa5\x12\xb2\x1c\x95\x90\xe5\xea\x3d\x64\xe1\x88\x00\x94\xae\x63\x01\xeb\xa0\x74\x1d\x0b\x95\x0c\xa5\xeb\x80\xd1\xc8\xa0\x74\x1d\xab\xfc\x85\xe8\xc9\x60\x7b\x1d\x8b\xed\xec\x88\xcd\xf4\x58\x1c\xc2\x19\xe1\xf2\x1e\x4a\x4a\x80\xed\x75\xc8\xd7\x0a\xdb\xeb\x58\x55\x4f\x86\xd0\xab\x4b\xcc\x10\x7a\x81\xb5\x61\x7b\x1d\x8b\x18\x28\x6c\xaf\x63\xa1\xf8\x60\x7b\x1d\x90\x16\xd9\xc0\xba\xeb\xe8\xff\xc0\xba\x2f\x3c\xd9\x03\xeb\xae\xc3\xfe\x23\x7c\xde\x63\xb1\x85\x84\x25\x76\x6c\xb6\x2e\xb0\xc4\x8e\xcd\x62\x84\x25\x76\xe8\xe8\xff\x08\x7f\xf8\xd8\x6c\x13\x47\x9c\x25\x18\x3b\xab\x14\xfd\xdb\x45\x4f\x1e\x4a\x92\x33\xfa\xb7\xd9\xd8\x43\x21\x3b\xb6\x16\x63\x1c\x07\x1c\x5b\x9f\x44\xf8\xd8\xc7\xd6\xf4\xc5\x71\xc0\xa1\x23\xf5\x03\x27\xc3\xbe\x7a\x2f\xfa\x00\x39\x8f\x0d\x70\xc7\x49\xfa\x2f\xfa\xc0\x6d\x61\x36\x70\x32\x9c\xac\x27\x27\x25\xfa\x1e\xbe\xf9\x71\x24\x27\x0e\x88\x83\x69\x1c\xe0\x95\x83\x5b\x68\x44\xde\xfe\xe0\xd6\x2f\x1b\x71\xf5\xe9\x38\xb8\x1c\x20\xbe\x1d\x87\x33\x01\x23\xbc\xf8\x83\xfb\xba\x6c\x84\x17\x7f\x1c\x82\x99\x23\xbc\xf8\xe3\x6c\x95\xa2\x0f\x87\xc3\x65\xa3\xd1\x87\xa7\x3a\x43\xb2\xab\x8f\x15\xf7\x87\xfc\x86\x03\xb4\x74\xd9\x13\x40\xb4\x3b\x74\x96\x1b\xa2\xdd\x71\x41\x59\x03\xb4\x74\xc1\xb7\x10\xed\x0e\x98\x5f\x0c\xa2\xdd\x71\xa5\xce\x70\x94\xe8\x62\xaa\x11\x3e\xfd\xa1\xab\xa8\x46\xf8\xed\xc7\x05\x73\x41\xc2\x3b\xe0\x7a\x31\x48\x78\xc7\x65\x4f\x00\xd1\xee\xd0\x95\x52\x10\xed\x8e\x8b\xfb\x0a\xa2\xdd\x71\xb5\x50\x71\xb0\x5c\xf6\x0b\x03\x07\xcb\xd5\x17\x39\x90\xe5\xe9\xbd\x98\xcd\x97\xf4\x64\xc8\xf2\x30\x0f\x50\xeb\x0e\x5d\x30\x05\xb5\xee\x90\x93\x6f\xe0\x6e\x81\x5f\xc5\x06\xee\x96\x87\x73\x02\x6a\xdd\x21\x27\x1f\xd4\xba\xe3\xe1\xe1\x87\x5a\x77\x3c\xcc\xe6\x00\xe3\x3d\xf0\xed\x00\xe3\x3d\x7d\x05\x60\x3c\x9d\x2b\x1f\x60\xbc\x07\x98\x19\x60\x3c\x5d\x22\x05\x25\xef\x78\xb8\x93\xa0\xe4\x1d\x6f\xa8\x96\x9f\x3e\x14\x1b\x6a\x61\x45\x49\xdf\x44\x00\xb9\xa2\x84\x7f\xe8\x7a\x8b\x4e\x27\x41\xd7\x5b\x74\x7e\x06\xba\xde\x52\xa5\x51\xe2\xec\x42\xe1\x9e\x65\x83\xa0\xb7\x34\x82\x99\x10\xf4\x96\x96\xf5\x64\x8d\x12\x0e\x08\x08\x7a\x4b\x23\x14\x07\x41\x6f\x11\x98\x81\xa0\xb7\x74\x99\xe2\x80\x6e\x05\xbe\x49\x83\xa0\x37\x08\xe6\xa3\x14\x52\x77\xad\xdb\x80\x6e\x45\xc1\x76\x08\x7a\x8b\x72\x31\x21\xe8\x2d\xca\xc5\x84\xa0\xb7\x28\x6c\x0d\x41\x6f\xf0\x33\x47\x29\x47\x69\xfe\xed\x10\xdc\x08\x54\x17\xc4\xc3\x51\x8a\xae\x4f\x30\xf3\x08\x54\x57\xe0\xd0\xb3\x11\xa8\x2e\xe8\xeb\xa2\x14\x5d\x57\xae\xdb\x88\x60\x4a\x59\x49\xa2\x44\xd7\x97\x06\x30\xfc\x47\x41\xd7\x15\xa5\xe8\xfa\x7a\xfa\x2f\xba\xbe\x3f\xb5\x10\x5d\x87\xad\xcd\x46\xe0\xc6\xb2\x41\x83\xb0\x0a\x07\xcd\x43\x94\xa2\x7b\x5c\x7e\x68\xb0\x0a\x97\xa3\xcf\x33\x42\x32\x71\xbb\x7a\x94\xa2\x0f\x07\x5f\x32\xac\xc2\x71\xb1\x6f\x94\xa2\x0f\x50\x2d\xd9\x08\xbc\x59\xae\x30\x42\x78\xaf\xe2\xd2\xd8\x28\x45\x1f\x20\x50\xb2\x11\x58\xd4\x74\x43\x17\x6c\xc4\x71\xe9\x5b\x94\x4e\x94\x64\x97\x23\x5c\x63\x49\xaa\x2e\xfc\x5c\x71\x0f\xd3\x4f\x29\x50\xab\xc1\xc4\x62\xb0\x11\x9b\x2e\x3d\x82\x8d\xd8\x74\x16\x18\x36\x62\x2b\x52\x28\x81\x5a\x23\x3f\x26\x4a\x1e\x25\x7d\x3c\x81\x5a\x23\x0f\x24\x4a\x3f\xfd\x33\x63\xeb\x09\x1b\xb1\xb9\x8c\x53\xa0\x56\xd3\x2d\x0c\xb0\x11\x47\xf8\x3f\x4a\xd1\x3f\x6d\x21\x61\x23\xb6\x2a\x05\x16\xa1\x1c\xd3\x31\x2d\xd8\x88\x23\x9a\x15\xa5\x47\x89\x31\x0b\x97\x98\x35\xcd\x5f\xb8\xc4\xc2\x69\x1d\xa5\xe8\x5f\x93\xda\x0d\x97\x98\xe9\xe0\x12\x4c\xc5\xd6\xf1\x5d\xc3\x54\x6c\xbf\x0b\x27\x5c\x62\xd6\x85\x37\x23\xcc\x13\xbb\xc5\x28\x45\xff\x74\xf6\x64\x04\x82\x0e\xad\x16\xa5\xe8\xdf\x2f\xfa\x0c\x77\x99\x41\xc3\x69\x30\x1c\xdb\xd4\xb8\x04\xba\xb6\xf9\x2b\x75\xf4\xef\x17\x3b\x05\xba\xb6\x09\xa6\x84\xfd\xd8\x26\x4a\x18\xf6\x63\xe3\x4e\x5d\x83\xfd\xd8\x16\x87\x11\x61\x3f\xb6\x15\xac\x29\x06\xc3\xb1\xc9\xdc\xc2\x70\x6c\x70\xb7\x19\x0c\xc7\x76\x3f\xb5\x10\x7d\xb8\x59\xff\x4d\x4a\x7a\x2f\xe4\x54\x0a\x14\xec\xc7\xa6\x14\x28\x28\x8e\x4d\x77\x36\x42\x71\x6c\x17\x87\x0e\x34\xc6\xa6\x7b\x19\xa1\x31\xb6\xcb\xac\x40\x55\x6c\x17\x33\x3d\x03\x6b\x9b\x02\x5e\xd0\x11\x9b\x52\x99\xe6\x47\x7b\x20\xfd\xf9\xd1\x1e\x0a\x1a\xaa\x62\x93\x69\x84\xaa\xd8\x2e\xae\x8a\x19\x58\xdb\x2e\x0e\x32\xa8\x8a\xed\x82\xf4\xa1\x2a\xb6\xcb\xa9\x98\x99\x91\x85\x7d\xe9\xcc\x8c\x0b\x2e\x4d\x68\x8c\x4d\xc6\x10\x1a\x63\xbb\x38\xcf\xa0\x31\xb6\x7b\xf5\x1f\x7d\x40\xdb\xcc\x4c\x1f\xf0\x41\xcf\x4c\x1f\x58\xe1\x10\x1e\xdb\x03\x40\x40\x78\x6c\x0f\x34\x0f\xe1\xb1\x3d\xe2\x2e\x10\x1e\xdb\xc3\x77\x00\xe1\xb1\x29\x36\x36\x03\x87\xdb\x23\xeb\x02\xc2\x63\x93\x31\x84\xf0\xd8\x5e\xfb\xdb\x1d\x17\xd3\xa8\x12\x4f\xda\x34\xaa\xc4\x77\x06\xfb\xb1\x29\x8f\x0a\xf6\x63\x93\xd5\x84\xfd\xd8\x1e\x0e\x7e\xd8\x8f\x4d\x39\x56\xb0\x1f\x9b\x2e\x62\x84\xfd\xd8\x94\x71\x05\xfb\xb1\xc9\xbe\xc2\x7e\x6c\xca\xb8\x82\xfd\xd8\x94\x71\x05\xfb\xb1\xe9\x5a\xc6\xe9\x0c\x19\x6a\x69\x3a\x43\xc6\x46\x6d\x3a\x43\x46\xd0\x6e\x3a\x72\x6a\xfa\x1c\x59\x8e\xde\x43\x16\x4d\xa6\x23\x0b\x01\x05\xd8\x8f\x4d\x61\x3a\xd8\x8f\xed\x81\x73\x60\x3f\xb6\x87\x01\x9a\x15\x59\x08\x82\xce\x40\xc2\x9e\xf0\x50\xcd\x40\xc2\x9e\x08\x82\x4e\x88\x30\x13\xc7\xd7\xc4\x9a\xac\x2b\x1b\xc5\x9a\xac\x6b\x19\x27\x64\x97\x29\x23\x75\x20\x61\x87\x05\xcd\x66\x20\x61\x4f\x1c\x86\x17\xbf\xb2\x02\x7a\xe2\x57\x4e\xfa\x78\x20\xc2\x4c\x26\xa9\x1f\x25\x46\x1e\x22\xcc\x04\xe6\x9a\x81\x92\x3d\x49\x69\x34\xfa\x80\xab\x49\x4c\xcc\x09\x1c\x30\x03\x09\xbb\x8c\xcc\x84\x24\x33\x55\x3d\x49\x1f\xf4\xd1\x41\x92\xa9\xcb\x1d\x67\xa3\x0f\x5a\xe0\xf0\x39\xa7\xae\xf6\xe8\x03\xae\x26\xf1\x39\xeb\x3a\x47\xf1\x39\x27\x7d\x4b\x10\x68\x2a\x8b\x6b\x42\x84\x99\x38\x67\x3a\x21\xc2\x4c\xec\xb1\x26\x44\x98\xca\xd4\x9a\x10\x61\x26\x2d\x70\x58\xa1\x13\x89\x23\x62\x85\x4e\x5b\xb5\x20\xe7\xd6\x7b\xc8\x79\x54\x42\x4e\x7d\x3d\x1d\x39\xaf\xde\x43\xce\x2b\xc9\x90\x93\x1d\xd0\x1c\x8c\x35\x27\x59\xe7\x60\xac\xa5\x26\x06\x63\x2d\xc5\x30\xf8\x5e\xf4\x2d\x41\xbc\xf9\xe9\x7b\x89\x60\xa6\x7f\x04\x79\x67\x60\x6d\xff\xd8\xfd\x89\x31\xfa\xd3\xf7\x02\x83\xa6\x02\x81\x62\x85\x56\x1a\x97\x58\xa1\x3f\x8e\xbd\x89\x15\xfa\x23\xf4\x3e\x61\xd0\xfc\xf0\xd4\x4f\x58\x32\xbf\xa2\xf7\x36\x25\xc6\x0c\x96\x4c\xdd\x03\x29\xc6\xe8\x8f\x1d\xb3\x18\xa3\x3f\xf0\xad\x18\xa3\xbf\xa6\xff\x90\x85\x33\x39\x62\x8c\x56\x00\x51\x8c\xd1\x1f\x51\x11\x31\x46\x2b\xfd\x4b\x8c\xd1\x1f\x3b\x6d\x31\x46\x7f\x44\xb5\xc4\x18\xfd\xe1\xb7\x9f\x0b\x39\x31\xbe\x62\x85\xd6\x9d\x8d\x62\x85\xfe\xa4\x19\xe0\xe1\xfc\xf0\xd4\x8b\xfa\x59\xf7\x32\x8a\xfa\xf9\xd3\xbc\xc3\xc3\xf9\xb1\x43\x17\xf5\xf3\xa7\xaf\x00\x1e\xce\x8f\x73\x3e\x13\x1e\xce\x4f\xf3\xbe\x91\x05\x58\x37\xe1\xe1\xcc\xb8\x77\x44\x0b\x9d\xbf\xbf\x85\xf7\xc4\x18\x0d\x5b\x9b\x89\xeb\x39\x6b\x49\x07\x6e\xf4\x6c\xfa\x6f\x50\xa2\x71\xe8\x3b\x33\xfe\x1c\xf1\x40\x2b\x26\x29\x1e\xe8\xac\x09\x3b\x08\x86\x4f\x78\x5e\x04\x63\xab\x34\x2f\xad\x6b\xfa\xa0\xfd\xcc\x9a\x3e\x68\x3f\x15\x5c\x9c\x81\xff\x5c\x17\x38\x8a\x31\x5a\x21\x43\x31\x46\x2b\x64\x28\xc6\xe8\xac\xa5\x02\x63\x74\xd6\x20\xc1\x18\x9d\xc1\x86\x33\x10\x98\xeb\xb2\xc5\x09\xed\x67\x61\x93\x33\xa1\xfd\x2c\xfa\xc8\xa1\xfd\x54\xfe\x95\xf8\xa3\x0b\xe7\x37\x27\xb4\x9f\x85\x90\xd3\x84\xda\xb3\xe0\x03\x9b\x50\x7b\x96\xaa\xf7\x1e\xa5\x68\x6f\x41\xed\x59\x40\x28\x0b\x6a\x4f\x05\xfb\xc4\x42\xad\x80\x9e\x58\xa8\x0b\xc7\x75\x56\xa2\xbd\xae\xff\xa2\xef\x65\xe8\xbf\x4d\xa9\x52\x42\x16\x36\xf6\x0b\x12\xd0\x32\xd5\x3a\xb2\xa0\xce\x56\x9c\xbb\x71\x5d\xa8\xb8\xa0\x04\x2d\xec\x33\x16\x94\xa0\xca\xdb\x5a\x1f\x63\xb6\xf5\x1f\x63\x76\xf4\x1e\x63\x06\x8a\x14\x5b\x76\x61\x1e\xc4\x96\x5d\xc0\x94\xeb\xa3\x0f\x57\xad\x87\x2c\xba\x42\x71\x05\xca\x72\x43\x11\xad\x40\x59\xae\x6c\xac\x15\x28\xcb\x0d\x73\xb4\xc2\xa3\xe9\xca\xcd\x5a\xd0\x93\x1a\xb3\xb2\xa0\x27\x55\x6e\xd6\x82\x9e\xd4\xf0\x5a\x2e\xe8\x49\xcd\xf4\x64\xa7\xa4\x3a\x43\x4e\x73\xbd\x37\x29\xd1\xa3\x40\x60\xae\x5b\x13\x57\x20\x30\x37\x0e\xc1\xad\x40\x60\xae\xbc\x2d\xf1\x7f\x5b\x55\x1f\xe8\x1f\xa6\x4a\xfc\xdf\xc6\x51\x2c\xf1\x7f\x2b\xf0\xb8\xa0\x3c\x35\x52\x76\x16\x94\xa7\xba\x7b\x71\x41\x79\xaa\xdb\x16\x17\x94\xa7\x86\x93\x61\x15\xfa\xd7\x55\x0b\xfd\xd3\x57\x50\xe8\xdf\x54\xeb\xf4\x0f\xa3\x26\xbe\x71\xdd\xbd\x28\xbe\x71\x9b\xaa\x85\xfe\x2d\x3d\x49\x1f\x30\x6a\xcb\x90\x05\x25\xb5\x0c\x59\x34\xd3\x86\x2c\x28\xa9\x65\xc8\x82\x47\x7a\x19\xb2\x80\x4c\x97\x21\xcb\x53\x9d\x21\x8b\x27\xbd\xb7\x28\xe9\xbf\x90\xc5\xd9\x4d\xaf\x80\x75\xae\x1b\x0e\xc5\x61\xee\x59\xb2\x3c\x4a\xcc\x26\x1c\xe6\x8e\x01\x12\x87\xb9\xe3\x03\x10\x87\xb9\xe3\xb2\x5d\x01\xeb\xdc\xf5\x85\x84\xd3\xd4\x1d\x24\x2c\x7e\x73\x07\xda\x88\xdf\xdc\xd1\x75\xe2\x37\x77\x57\x2d\xd1\x3f\x27\xa7\x52\x1c\xe6\x0a\x07\x8b\xc3\x3c\x92\xac\xfe\xa8\x92\x45\x53\xae\xd8\xb0\x68\xca\x9d\x8d\x85\x68\xca\x7d\xe9\x3f\x86\x0c\x9f\xdb\x02\xb9\x29\xe3\x4a\x14\xe6\x8e\x07\x4e\x14\xe6\xba\xc4\x50\x14\xe6\x30\xab\x99\x28\xcc\x75\xa5\xa1\x28\xcc\x1d\x85\xb9\x40\x6e\xca\xd4\x5a\x20\x37\x79\x9a\x44\x6f\x5e\x71\x1d\x88\xde\xbc\x12\x50\x58\xe0\xb1\xfa\xa9\xce\x45\x89\x0f\x04\x3c\x56\x41\x98\x22\x34\xaf\x5a\xe0\xd0\x94\x2b\xfa\x2c\x9a\x72\xe5\x74\x89\x8a\x1c\x0e\x36\x13\x15\x39\x1c\x6c\x26\xf2\xf1\x8a\x39\x5a\x60\x20\xf9\xc0\x16\x18\x48\xd7\x0f\x2e\x30\x50\xd5\xf2\x1b\x48\x4d\x0e\x92\x88\xc9\x61\x5d\x33\x11\x93\x57\x76\x2b\x0b\x7c\xa4\x8b\x0a\x17\xf8\xa8\x6a\x69\x86\x2f\xd2\xab\x96\xdf\xa0\x7f\x53\xff\xd1\x3f\xce\xba\xac\xf0\x45\x7a\xc5\x29\x25\xf6\xf1\x4a\xd0\x47\xec\xe3\xca\xfe\x12\xc3\x78\xe5\x04\xa5\x18\xc6\x75\xc5\xa0\x18\xc6\xab\x66\x05\xec\x54\xb5\xa8\xc0\x4e\x55\x73\x14\x81\x5c\x6f\x60\x3c\x31\x8c\x2b\x32\x2d\x86\xf1\x06\xee\x5f\xe0\xa3\xa6\x79\x00\x1f\x35\x2d\x23\xf0\x51\x2b\x2a\x85\x2c\x8d\x2d\xf9\x02\x1f\x35\xd3\x7b\x9b\x12\xad\x6f\x5a\xd7\x3c\x84\x1f\xcf\x1b\xce\x82\x15\x7e\x3c\x6f\x9c\x09\x10\x6b\x79\xd3\xc2\x01\x2d\x35\xb0\x9a\x58\xcb\xa1\x25\x33\xb1\x96\xeb\x06\x40\xb1\x96\x37\xf6\x74\x62\x2d\x6f\x5a\x1d\xa0\xa5\x06\x2a\x5f\xa0\x25\x85\x83\x57\x38\xe4\xbc\x69\xad\xc0\x68\xde\x38\x65\xb4\x80\x44\x0a\x07\xaf\x83\x9c\x44\x4c\xd6\x61\x04\xa5\xdc\x0e\x72\xb2\x09\x5f\x80\x27\x85\x8a\x17\xe0\x49\xa1\x62\x71\x9f\x37\xcd\x11\x00\xa9\xcb\xc4\x85\x63\xcd\x3b\x2e\xbf\x15\x8e\x35\xef\x9f\x5a\x78\x94\x78\x0f\xf0\xd4\xf1\x72\x2f\xc0\x53\xc7\x19\x29\xce\xf4\x8e\x4b\x45\x9c\xe9\x0a\x38\xaf\x70\xac\xb9\xd2\xc6\x56\x38\xd6\xbc\x6b\x1d\xc1\xa7\xde\x5d\xff\x0d\x4a\xac\x15\x60\x96\x92\xc8\xc4\xa7\xde\xab\x4a\xf4\xa1\xa9\x05\xe4\xe4\x40\xa5\xd8\xd5\x3b\xbb\x77\xb1\xab\x77\xc1\x90\x87\x2c\x24\x13\x2d\x20\x98\x6e\x23\x14\xf3\xba\xd2\xbf\xc4\xae\xde\xa5\xdd\x80\x59\x1d\xcc\x2c\x76\x75\xa8\xce\x4c\x0c\xea\x4a\xf8\x12\x83\x7a\x47\x83\x89\x41\x1d\x1a\x34\x13\x83\xfa\xc0\x29\x25\x06\xf5\x91\xfe\x76\x2e\x59\xe4\xea\x8a\x4c\xef\x88\x22\xfb\xc0\xcf\xb5\xe3\x88\xb4\x2b\x16\xbd\x41\x6e\x83\x65\xb4\x41\x6e\x03\x7f\xea\x06\xb9\x0d\x42\x63\x1b\xe4\xa6\x3c\xb1\x0d\x72\x53\x9e\x98\xe8\xdb\x61\x56\x33\xd1\xb7\x0f\x53\x9d\xd1\xbd\xc1\x66\x7a\x87\x0f\xcc\x07\x67\x02\xf6\x47\xf7\xb0\x46\x1b\x54\x37\x98\x30\x11\xbd\x2b\x6b\x4c\x44\xef\x03\x35\xb8\x41\x67\x8a\x68\xef\x0f\x59\x50\x60\xfb\x43\x16\x50\x81\x28\xe1\x95\xfd\xb5\x41\x67\x83\x05\xb7\x41\x67\x03\x8c\xb0\x41\x67\x8a\x6f\x8b\x3c\x7e\x6c\x3d\xc9\x98\xb1\x39\x12\x79\xfc\x20\xf1\x5b\xe4\xf1\xca\x13\x13\x79\xfc\xc0\x89\xb2\x41\x59\x03\xa5\xb8\x41\x59\x03\x27\xca\x06\x65\x0d\xb0\xfd\x06\x65\x0d\x54\xa4\xc8\xe3\x07\x3e\x76\x08\xe2\x5d\x97\x18\x42\x10\xef\xca\x0c\xdb\x20\x22\xe5\x7b\x6d\x10\xd1\xcc\xaa\x65\x53\xa2\xf5\x88\x37\xbb\xfc\xa9\x3b\x3c\x62\x0e\xcf\x9a\x41\x1e\xef\x93\x40\x27\x74\xf1\xae\xbc\x2d\xe8\xe2\x7d\xe2\x05\x86\x2e\xde\x67\xd5\x93\xb4\xc7\x69\x9a\x0d\xea\x99\x9a\x31\x50\xcf\x6c\x7a\x92\xf6\xc0\x8d\x1b\xd4\xa3\xdb\x08\x37\xa8\x67\x82\x0d\x37\xa8\x67\xb2\x18\x37\xa8\x47\x19\x5e\x1b\xd4\xa3\x0c\x2f\x08\xe9\x7d\x82\x0d\x21\xa4\xf7\xa9\xaf\x00\x64\xa3\x9c\xae\x1d\xe1\x60\x87\x9f\xcd\x20\xab\xf7\xc9\xe9\xe6\x5d\x69\x4f\x33\x8d\xc3\x4a\xb9\x59\x1b\xf8\xa2\xbb\x09\x37\xf0\x65\x02\x43\xa0\x99\xf7\xa9\xb9\x05\x5c\x28\x0a\x03\xcd\xbc\x4f\xd4\xe7\xc6\x2d\xb4\x70\x82\x6d\xdc\x42\x0b\xe0\xb1\x71\x0b\xe9\xc6\x41\x08\xe9\x5d\x37\x0e\x42\x48\xef\x0b\x83\xb7\x81\x21\x4a\xa4\xda\xc0\x90\xa5\xd9\xc4\x2d\xb4\x8a\x5a\x78\x94\x18\x97\x08\xa5\xfa\x22\x2a\xb2\x23\x94\xea\x8b\xfd\x1e\xdc\xf5\xbe\xb4\x52\x01\x2c\xba\x7f\x10\xee\x7a\x5f\x78\xab\xe1\xae\xf7\xc5\xce\x70\x03\x5f\x96\x56\x23\x6e\xa1\xa5\xb9\xc5\xf5\xa3\x64\xa9\x8d\xeb\x47\x37\x07\x6e\x5c\x3f\x3a\x14\xb0\x81\x3d\x0a\xf5\x6f\x60\xcf\x22\x82\x01\xcb\xbd\x43\xa6\x66\xb0\xdc\xfb\x92\x8a\x04\xf6\x2c\xad\x23\x60\xcf\x7a\xaa\x33\xc6\x73\xb3\x2b\xde\x11\x66\x75\x45\xb5\x36\xd0\x66\x6b\x3d\x00\x6d\xb6\x74\x56\x84\x59\x5d\xe9\x58\xf0\xe1\xbb\x02\xff\x1b\x77\x12\xd4\x6a\xb6\x23\xcc\xea\x10\xa6\xd9\x8e\x30\xab\xef\xbf\xd1\xa1\xda\xc6\x0b\x05\x27\x9a\x6d\x90\xd4\xee\xaa\xa4\x52\xd2\x7f\x8d\x12\x5d\xc0\x0b\xb5\xc1\x6a\x1b\x94\xa5\x8b\x03\x37\x28\x6b\xe3\x0d\x84\x9a\xdf\xb7\x86\x1a\x94\xb5\xb1\x54\x90\xf1\xfb\xd6\x72\xc0\x43\xb5\x39\x78\xb6\x41\x59\x5b\x9f\x3c\x28\x6b\x4b\x9d\xe1\xa1\xd2\xd9\x05\x88\xfa\x5d\xb9\x59\x10\xf5\xfb\x66\xab\x04\x51\xbf\x1f\x59\x2a\x10\x98\x2e\x00\xdc\x20\xb0\x43\x34\x78\x83\xc0\x0e\xbe\xdd\x0d\x02\x53\x10\x66\x47\xcc\xd5\x0f\x5b\xa5\x1d\x31\x57\x3f\x59\xb2\x3c\x4a\xf4\x16\xac\xa6\xd3\x11\x1b\xac\x76\xf4\x91\x83\xd5\x8e\xa6\x16\xac\x76\x4c\xff\x55\x4a\x28\x68\xf0\xd8\x01\xe3\x6d\x30\xd7\x91\x5a\x02\x73\x9d\xae\x16\x90\x45\x23\x0f\xe6\x52\xbe\xd7\x06\x73\x1d\xa9\x1e\x30\xd7\x01\x15\xec\x08\x82\xfa\xc1\x71\xb1\x0f\xb2\xb0\x3b\xda\xe0\xb1\xb3\xf4\x5e\xa3\xa4\x27\x19\xcf\xad\x16\x90\x53\x73\x84\x33\x0b\x16\x34\xdb\x38\xb3\x0e\x87\x03\x37\x58\x4d\x37\x07\x6e\xb0\xda\x91\xca\x02\xab\x1d\x82\x92\x1b\x3c\x06\xd3\x99\x6d\x30\xd7\x91\xc9\x01\x73\x5d\x36\xb7\x1b\x67\x96\x6e\x0e\xdc\x11\xcc\x74\x9d\xf0\xd8\xe0\xb1\x0b\xc6\xdb\xe0\xb1\x2b\x25\x05\x1e\x53\x68\x6c\x83\xc7\x74\x1f\xe0\x06\x8f\x5d\xcd\x43\x04\x33\xfd\x72\xe6\x68\xe3\x12\x13\x81\xd9\x06\xab\xe9\xae\xc0\x8d\x4b\xec\x6a\xf9\x81\xc0\x94\x27\xb6\x71\x82\x89\xce\x6c\x83\xc0\x2e\x5e\xf5\x0d\x02\xbb\x6c\x6e\xf7\xa3\xf5\xa1\xf7\x68\x1d\xb7\xc2\x06\x9d\xdd\xa9\x16\x68\x1d\xd3\x71\x40\x67\x0a\x8d\x1d\xd0\xd9\x05\x32\x1c\xd0\xd9\x65\x8e\x0e\x10\xec\x82\xd1\x0f\x10\x4c\xe7\x4b\x0e\x10\xec\xb2\x8f\x3a\x89\x3e\xe0\x94\x3a\x40\x30\x05\xd1\x0e\xe0\xe9\xb2\xc6\x0e\xe0\xe9\xa2\xea\x0e\xe0\x49\x09\x66\x07\x80\xf4\xc0\xe8\x07\xb7\xd7\x63\x3f\x7b\x70\x7b\xbd\xac\x52\xa3\x44\xeb\xb8\xbd\x1e\x86\xe4\x00\xac\x1e\xeb\xe8\xe0\xf6\x7a\xcc\xdf\x89\x93\xf9\xfe\x40\xe5\x07\xd0\xf5\x70\x4a\x1d\x40\x97\xa8\xce\x0e\xa0\xeb\x31\x7f\x07\x77\x99\xd2\xd4\x0e\xa0\xeb\xe1\x34\x3d\x00\x2b\x45\xbc\x0e\xc0\x4a\x69\x6a\x07\x60\x25\x92\xb2\x83\x6b\xeb\x01\xeb\x0e\xae\x2d\x91\x94\x1d\x5c\x5b\x6f\xa9\x16\xda\xdb\x7f\xbb\xe3\xe2\x80\xb9\x1e\xa7\x0e\x0e\x98\x4b\xfc\x65\x07\x94\xf5\x34\x0d\xf8\xa4\xc4\x5f\x76\xf0\x49\x3d\x7c\x83\x07\x5c\x25\xc6\xb2\x03\xae\x7a\x24\x72\x9c\xc0\x55\x35\xe1\xb1\x3d\x71\x56\xaf\x2a\x13\xed\xc0\x2a\xa7\x4c\xb4\x03\xab\x5c\x02\x07\x1c\x58\xe5\x12\x4a\xf1\xc0\x2a\x97\x50\x75\x07\x56\x39\x05\xbc\x0e\x24\xa7\x0a\x71\x1d\x48\x4e\x75\x19\xe1\x81\xe4\x54\x59\x6a\x07\xfe\x39\x05\xbc\x0e\xfc\x73\xba\x38\xf0\xc0\x3f\x27\x1e\xb2\x03\xff\x9c\x32\xd1\x0e\xf4\xdf\x09\x6f\xee\x81\x8d\x2e\xa1\x14\x0f\xac\xde\xca\x44\x3b\x50\x9e\x2a\x54\x75\x60\xa3\x53\x26\xda\x81\x8d\x2e\x11\xf6\x3c\xb0\xd1\x29\x54\x75\xa0\x3c\x4d\x9c\x3a\x3d\x50\x9e\x2a\xf7\xec\xc0\x54\x97\x08\x6d\x9e\x8a\x9c\xa8\xc8\x03\x1d\xaa\x82\x53\x07\x16\xbb\xc4\x86\xf9\xc0\x62\xa7\x13\x1e\x07\x16\x3b\xf1\x97\x1d\x58\xec\xc4\x5f\x76\x20\x4e\x4d\xa8\xcf\x03\x71\x6a\xd2\x57\x00\xa7\x9d\x42\x5c\x07\xaa\x54\x85\xb8\x0e\x54\xa9\xe9\xa9\x84\x64\x84\x44\x0f\x74\xa8\x09\x65\x7a\x60\xb8\xfb\xc0\x7f\x07\x86\xbb\x4f\xcb\x16\x86\xbb\xef\xd3\x7b\x8b\x12\x7d\x80\x61\xfc\xfb\x54\xcb\xa1\x44\xdf\x03\xf1\x55\x85\xb8\x4e\x20\xbe\xfa\xa1\x76\x0f\x14\xab\x9f\x96\x26\xcc\xe4\x1f\xe7\x5a\x0f\xcc\xe4\x1f\x0e\x8f\x13\x18\xaf\x2a\xf3\xed\x04\xc6\xab\x9f\x16\x71\x47\x6a\x7d\x21\x1d\xa9\xd9\xa9\x1d\x68\x5b\xbf\xaa\xff\x90\x0c\x23\x7a\x02\xd5\x55\x85\xb8\x4e\xa0\xba\xfa\x91\xf8\x73\x06\x92\xa1\x92\xcf\x40\x32\x70\xff\x81\xfb\xfc\x43\x25\x1f\xe8\x5e\x75\x6f\xe1\x19\xb4\xae\xc5\x3f\x18\xb3\xa5\xff\x18\x09\xcd\x3b\x04\xaf\x1f\xfe\xfe\x03\x13\xfa\xa7\x99\x86\x09\xfd\xd3\xdc\x4e\x24\xe3\xc0\xda\x81\xee\x55\xf9\x73\x27\x80\x55\x55\xe6\xdb\x81\x09\x3d\x6b\xac\x21\x7f\xcd\x59\xef\x1d\x4a\x7c\x67\x90\xbf\x66\x29\x53\x08\x5e\x33\x7b\xac\x03\xc1\xab\x6e\x23\x3c\x01\xba\x6a\xc6\x18\x1e\xf8\xd4\xb3\xd6\x26\xe4\xaf\x19\xd3\x78\xe0\x4c\x57\xac\xea\xc0\x99\xae\x8c\xb9\xb3\x90\xa5\xaa\x16\x64\xc1\x34\x9e\x85\x2c\x4d\xff\x3d\x4a\xb4\x00\x69\xac\xee\x26\x3c\x90\xc6\x66\xcd\x0a\xa4\xb1\x59\x2b\x7c\x23\xa7\x56\x38\x3c\xec\x19\xc0\x79\x20\x94\x55\x02\xdd\x81\x50\x36\x4f\x95\x1a\x25\x64\x81\xa3\x3d\x08\xcc\xfe\xac\x92\xa1\x6f\xcf\x53\x82\x31\x0d\x6c\xde\xcf\x41\x68\xd9\x50\x28\xda\xb3\x26\x13\x1e\xda\xcc\x86\xeb\xc0\x43\x5b\x92\xde\xab\x94\xf8\x24\xe0\xa1\x55\xfe\xdc\x81\x87\xb6\xc8\x4e\xc2\x43\xab\xac\xb8\x03\xb5\x7b\xe1\x68\xf5\x09\x94\x55\x8b\xa6\x0f\x8e\xda\xa2\x25\x06\xd1\x7b\xc1\xc5\x71\xc2\x97\x55\xc5\x66\x76\x02\x57\xd5\xa2\x65\x04\x63\x6d\xc1\xc5\x71\x60\xac\x2d\x52\xbb\x30\xd6\x16\x2d\x23\x48\xe0\x4b\x53\x0b\x48\x86\x6f\xf7\xc0\x66\x2b\x36\xb3\x03\x9b\x6d\xe9\x6a\x6f\x53\x52\x7b\xc8\x29\xfb\x0a\x25\xbc\xf8\xcb\x0e\x94\xf0\x65\xea\x3f\xfa\x20\xd5\x0a\xef\xad\x32\xe6\x0e\x94\xf0\x45\xca\x14\x4a\xf8\xc2\x0e\xe1\x40\xfb\x5e\xb4\x70\xa0\x7d\xd7\x75\x87\x07\xda\x77\x5d\x77\x78\x1e\x72\x4a\x61\x3e\xe4\x04\x7d\x1e\x28\xe1\x8d\xdd\xc3\x81\x12\x5e\x3c\x64\x07\x4a\x78\x63\x8e\x2e\x1c\xbc\xca\xb4\xbb\x70\xf0\x1a\xe8\xf3\x42\xa6\x2b\x56\xb2\x1b\x48\xaa\x1a\x58\xe6\x86\x33\xab\x2a\xdc\x76\x21\x88\x57\x6e\xdd\x85\x5a\xd7\x58\x54\x17\x6a\x5d\xc3\xc5\x71\xa1\xd6\x35\x5c\x1c\x17\x6a\x5d\x63\x51\x5d\x08\xe2\x0d\x2f\xf0\xfd\x90\x05\x0f\xe3\x0d\x67\x56\x35\xf2\x50\x2f\xe4\xf1\xba\xd3\xf0\x42\xc9\x6b\x43\xff\x39\xa5\x41\xa9\x52\x52\x9d\x8d\x92\xea\xec\x94\x1e\x25\xfa\x37\xf5\x1e\xfd\x03\x03\xdd\x8f\x3e\x6c\xfd\x47\x1f\x8e\x5a\xa7\x0f\xac\x9c\x0b\x95\xaf\xce\xed\x5e\xa8\x7c\x45\x05\x76\x21\x9d\x37\xe6\xf6\x42\x3a\x6f\xec\xfe\x2e\x34\xbf\xc6\xdd\x11\x17\x9a\x5f\x85\xcd\x2e\x34\xbf\xce\xfa\xbb\xd0\xfc\x7a\x52\x0b\x9d\xd2\xa4\x34\x28\xa9\x96\xe8\x83\xc2\x66\x17\x0a\x60\x07\x12\xdd\xc0\x78\xd5\xb3\xea\x3c\x94\xf4\x64\xf4\xcf\x8b\xfe\x7b\x94\x90\x13\xb6\x7a\xdd\x5b\x78\x61\xab\xd7\xbd\x85\x17\xea\x60\xc7\xfc\xdd\x82\x9c\xae\xf7\x90\x13\xd8\x73\xa1\x0e\x16\xa5\xd7\x05\xd6\x39\x26\xe7\x02\xeb\x94\xe3\x78\xe1\xae\xd7\xcd\x81\x17\xee\x7a\x1d\xee\xbc\x40\x3e\x11\x67\x5d\x60\x9d\x88\xb3\x2e\xd0\x4d\xf9\x8f\x17\x0e\xfa\x8a\xab\xe2\x86\xbb\xac\x56\x0c\xc9\x05\xc8\x55\x50\xf9\x05\xc8\x55\x92\xe4\x2e\xfc\xf4\x22\xce\xba\xf0\xd3\xeb\x56\xc1\x0b\x90\xab\xae\xf7\x1a\xa5\xf9\x17\x95\x7c\x41\x75\x4a\x8d\xbc\xa0\x3a\x5d\x3f\x78\x41\x75\x55\x0b\x00\x54\xa7\x44\xc9\x0b\xaa\xab\x78\x85\x2e\xc8\xad\x72\xd0\xed\x82\xdc\x2a\x41\x91\x0b\x72\x53\x4a\xe5\x05\xb9\x55\xd4\xd2\x05\xb9\x29\xa5\xf2\x82\xdc\x2a\xd8\xf0\x82\xdc\x2a\x38\xe0\x82\xdc\xc4\xa9\x75\x41\x6e\x95\x53\x00\x17\x36\x62\xb1\x68\x5d\x90\x9b\xce\xca\x5e\x88\xec\x2b\x1e\xdb\x0b\x72\xab\xfa\xe4\xc1\x63\x95\xa3\x4a\x37\x3c\x69\xb5\xe9\xd3\x8d\xd0\x5f\x6d\x49\xff\xc5\xc0\x8b\xac\xea\x82\xb2\x44\x56\x75\x41\x59\x4a\x9b\xbc\xa0\xac\x06\x46\xbf\xa0\x2c\x85\xaa\x2e\x28\xab\xe1\x9d\xbb\xa0\xac\xa6\x0f\x12\x94\xd5\xaa\x6a\xb9\x94\xf4\xe4\xa3\x84\x64\x03\x39\x39\xa9\x71\xc1\x63\x8d\x93\x1a\x17\x3c\xd6\xf0\xd1\x5e\xf0\x58\x6b\x7a\x32\xe6\xa8\x81\x03\xee\xa0\x0f\x5d\xff\xd1\x87\xa1\xf7\x90\x73\xa9\x14\xf3\xd0\xd8\x06\x5f\xa8\xf9\x9b\x46\x1e\x6a\xfe\xa6\xc5\x01\xe1\x7e\x03\x41\x5f\x08\xf7\x75\x51\xe1\x05\x81\x35\x36\xb7\x37\xdc\x5e\xb5\x6b\x71\x40\xbf\xdf\x31\xda\x17\x04\xd6\x09\xf6\x5d\x28\xf6\x45\x56\x75\xa1\xd8\x57\x76\xe2\x05\x81\x75\xd3\x7f\x99\x12\xcb\x16\x04\xa6\xb0\xd2\x05\x81\x29\xaf\xf0\x82\xc0\x7a\xd3\x7b\x95\x12\x0b\x27\xdc\x5e\xb5\x83\x9d\x2e\xe8\x4c\xa7\xa2\xef\x42\xce\xae\x16\x62\x5c\xba\x54\x39\xc8\xad\x73\xae\xe1\x82\xdc\x14\x48\xba\x20\xb7\xae\x51\x02\xb9\x75\x30\xec\x05\xb9\x89\xac\xea\x82\xdc\x3a\x3e\xd3\x0b\x72\xeb\xfa\x5a\x41\x6e\xa2\xae\xba\xe0\x31\x11\x52\x5d\xf0\xd8\x20\xf8\x7d\xc1\x63\x0a\x2b\x5d\x40\xd7\xc0\x75\x70\x01\x5d\x43\x2a\x39\x82\x92\x75\x7c\xaa\x65\x53\x62\xcc\xc2\x41\x56\x87\x46\x3e\x1c\x64\x55\xb7\x0a\x5e\xe0\xd9\xe0\x44\xc2\x0d\x07\x59\x1d\xec\x3a\x6e\x38\xc8\xea\xd0\x77\x0d\x74\x53\x2a\xc5\x05\xba\xe9\xe6\xc0\x0b\x74\x1b\xfa\x92\x81\x6e\x43\xc6\x17\xe8\x36\xa4\x7b\x80\x67\x83\x53\x46\xf7\x20\x27\xa7\x8c\xee\x41\x4e\x50\xeb\x3d\xc8\xc9\x01\xb9\x0b\x90\x1b\x32\xa9\x11\xb0\xac\x83\xf0\xec\xbd\xf4\x01\x44\x7b\x01\x79\x03\xa7\xe9\x05\xba\x0d\x5c\x77\x17\xe8\xa6\x5b\x05\x2f\xd0\x6d\xc8\x14\x03\xc8\xc6\xd6\x93\xc8\xa2\x99\x06\x90\x0d\xf6\x9e\x17\x40\x36\xce\xdf\x18\xaa\x2f\x58\x6d\x68\x19\x3d\x44\x01\x73\xdd\x87\x28\xb2\xd2\xa0\x33\x05\x99\x2e\xe8\x6c\x68\xc1\x81\xce\x74\x51\xe1\x05\x9d\x89\x53\xeb\x82\xce\xc4\xa2\x75\x41\x67\x3a\x98\x7f\x41\x67\x62\xd1\xba\xa0\x33\x5d\x4d\xf8\x40\x67\x13\xc5\xf7\x40\x67\x0a\x40\xbd\xf0\x8f\xd5\x59\x54\x8a\x8f\x40\xa9\x98\x0f\xe4\xa6\x54\xcc\x17\xfe\xb1\xaa\x70\xd4\x03\xb9\xe9\xc2\xc1\x07\x72\x9b\xe0\xe9\x07\x72\x53\xf2\xe5\x03\xb9\x4d\x8e\x38\x3d\x90\x9b\x2e\x1c\x7c\x20\x37\x05\xa7\x1e\xe8\x6c\xf2\xf1\x3c\xd0\xd9\xc4\x70\x3d\xd0\x99\x42\x55\x0f\x74\x36\x59\xe0\x0f\x74\xa6\xe0\xd4\x03\x9d\x4d\x3e\xac\x07\x3a\x9b\x43\xb5\x20\x27\x3b\x99\xf7\x21\x27\xe7\x28\x1e\xe8\x4c\x17\x07\x3e\xd0\xd9\x24\x0c\xf9\x40\x59\x4a\x66\x78\xa0\x2c\x51\x5e\x3d\x50\xd6\x64\x81\x3f\x50\x96\xee\xf5\x7b\xa0\xac\x49\x00\xf1\x81\xb2\xe6\xd3\x93\x21\x8b\x48\xae\x1e\x48\x6a\xe1\xcd\x7d\x20\x29\xd1\x5a\x3d\x90\xd4\x22\x1c\xfc\xc0\x47\x4b\x33\x16\x0e\xb2\xba\x38\xdd\xf2\xe2\x78\x57\x5d\x9a\x3f\xb0\x93\x72\x46\x5f\xa1\x3d\x4c\xd5\x2b\xb4\x07\x9e\x7e\x85\xf6\xd8\x01\xbd\x42\x7b\x5d\x4f\x3e\x4a\xcc\x51\xa4\xbd\xd6\x85\x7b\xe0\x81\xb9\x94\x5d\xfa\xc0\x5c\x6b\xea\x49\x24\x63\xd9\x3e\x30\x97\x72\x4d\x1f\x98\x4b\xf4\x54\x0f\x37\xdb\xc2\x6f\xf8\x70\xb3\xad\xa5\xff\x62\xcc\x16\x97\xed\x3c\xdc\x6c\xa2\xa7\x7a\xb8\xd9\x16\x5e\xf5\x07\x56\x5b\x60\xdf\x87\x9b\x4d\x89\x54\xcf\xe8\x1f\x0e\xc0\x07\x8e\x53\x70\xea\x81\xe3\x36\x6b\xec\x81\xe3\x94\xb1\xfa\xc0\x71\x5b\xeb\x08\x1c\xa7\x04\xac\x07\x8e\xdb\x40\x86\x87\xb3\x6e\xa3\x68\x1f\xce\x3a\xdd\x2a\xf8\xc0\x78\xa2\xae\x7a\x60\xbc\x6d\xaa\xb3\x53\xd2\x93\x21\xf5\xe6\xac\xc4\x03\xc8\x6d\xad\x15\x80\xdc\xd6\x1c\x01\xe4\x36\xc6\xf0\xe1\x9e\xdb\x5d\x25\x24\xeb\x7a\x12\xc9\x34\x63\x80\xbc\x8d\xa2\x7d\x80\xbc\x0d\xac\x7b\x00\xb9\xad\xf5\x10\xe7\xbb\xea\xe6\xac\xc4\x03\x9e\xe9\xae\xc0\x87\x63\x4d\x51\xa6\xd7\xa8\x53\xe3\x09\x74\x3b\x49\xef\x35\x4a\x7c\x67\x38\xdd\x74\x57\xe0\xc3\xe9\x76\xd0\x60\x0f\xa7\x9b\x08\xa9\x1e\x20\x4f\x31\xa7\x87\xd3\xed\x10\x50\x7f\x38\xdd\x22\xeb\xf6\x8f\x2a\xf9\x81\x0d\x0f\x98\xe4\x81\x0d\x0f\xc9\x89\x0f\x6c\x78\x38\xb9\xf7\xf0\xce\x1d\x53\x29\xba\x77\x88\xab\x3e\xb0\xe1\xd1\x52\x01\x1b\x1e\x30\xc9\x03\x1b\x2a\x75\xf7\x75\xba\xa0\xa5\xd2\xe9\x42\xd7\x93\x74\x41\x6a\x09\xc4\xa7\x44\xde\x07\xaa\x53\x4e\xde\x03\xd5\x1d\xa9\x1e\x3c\x70\x07\x94\xfc\xf0\xc0\x9d\xad\x27\x69\x1d\x14\xf2\x40\x7c\x07\x17\xc0\x03\xf1\x89\xc8\xea\x81\xf8\x74\x19\xe1\x1b\x0c\xa0\x26\x13\xfc\x27\xea\xaa\x07\xfe\x3b\xc4\xcc\x1f\xf8\x4f\x01\xa8\x17\x21\xd1\x7a\xb5\x54\x22\x24\x5a\x2f\x31\xf3\x07\x36\xd4\xd5\x84\x0f\x6c\x78\x39\x72\xf4\xf0\xdc\x5d\xb6\x89\x0f\xcf\x9d\xc2\x51\x0f\xdc\xa8\x70\xd4\xc3\x73\x77\x4d\x92\x5d\x4a\x6a\xef\x51\x62\x36\xc1\x94\x97\xf4\xea\x07\x52\xbc\xf8\xdc\x1e\x48\x51\x29\xcd\x0f\xa4\xa8\xdc\xac\x07\x52\xbc\x43\xff\x21\xb5\x96\x03\x68\xf0\x82\xa0\x1f\x68\xf0\x2e\x3d\x89\x64\x60\x8b\x07\x1a\x54\xc8\xe9\x81\x06\x95\xb6\xfc\x40\x83\x57\x33\x06\x1a\x54\x58\xe9\x81\x06\x15\x56\x7a\xf8\xea\x2e\x40\xe0\x81\x0d\x95\x7f\xf5\xc0\x86\x57\xa6\x03\x6c\x78\x35\x0f\x60\x43\xe5\x5b\x3e\xb0\xa1\xee\x2d\x7c\x60\xc3\x97\xf4\x64\xf4\x41\x09\xce\x2f\x8e\xf7\xd7\x27\x05\x06\xe2\x7b\xb8\xd2\x1e\x88\x4f\x21\xa7\x07\xe2\x53\x86\xd7\x03\xf1\xe9\xf6\xc3\x07\xe2\x7b\x5a\x39\x20\x3e\x65\x7f\x3d\x9c\x75\x4f\xea\x0c\x67\x9d\xd2\xa4\x1f\x68\xf0\x49\xb9\x81\xf8\x94\x26\xfd\x40\x7c\x4f\xf3\x07\xe2\x7b\x52\x7c\x20\xbe\xa7\x15\x07\xe2\x7b\x38\xe4\x1e\x6e\xbd\x27\x35\x88\x5b\xef\x71\x10\xf3\xe1\xd6\x53\x50\xeb\x81\xff\x94\x28\xf6\x70\xcf\x29\x19\xec\x5d\x64\xd1\x57\x80\x7b\xee\x81\x3e\x1f\x68\xf0\x71\xd4\xec\x81\x06\x1f\x41\xc9\x07\xe4\xd3\x2d\x8d\x0f\xf7\xdc\x23\x9c\xff\x70\xcf\x3d\x29\x53\x00\xe0\xc3\xf5\xf3\x00\x80\xba\x89\xf1\x01\x00\xdf\x51\x2d\x8c\x19\xd1\x8d\x07\x00\x54\xfa\xd7\x03\xe4\xbd\xab\x12\x72\x86\x89\x8b\x6c\xae\x28\x19\x25\xe4\x8c\x55\xec\x09\x90\xf7\xe2\x7a\x61\x4f\x10\x83\x91\xe2\xe5\x09\xf2\x2f\xe2\x58\x91\xf7\xf5\x53\x8a\x79\xf7\x04\xf9\x57\x0a\x17\x8e\x27\xc8\xbf\xb8\x7b\xd1\x13\x2c\xa0\xdc\xbd\xe8\x09\x16\xd0\x48\xe3\xfa\x93\x4a\xf6\x04\x41\x28\x9c\x5a\x9e\x20\x08\x25\xc3\xcb\x13\x04\xa1\x64\x78\x45\xd2\x59\x94\xf8\x0f\x76\x31\xb2\xb8\x3c\xc1\x2e\xc6\x95\x8d\x9e\x60\x17\x4b\xf1\x81\x78\x82\x5d\x2c\x35\xbd\x17\xbc\x67\x04\xca\x3c\x41\x1e\x4a\xa0\xcc\x13\xe4\xa1\x04\xc3\x3c\x41\x1e\x0a\xdf\x56\x24\xb9\xfd\x94\xa6\x9e\xa4\xeb\x53\x75\xd2\xf5\xc5\x20\x41\x2c\x0a\xc3\x96\x27\x88\x45\xb9\x7a\xd1\xd3\x47\x1f\x0e\x83\x94\xe9\xc3\x45\xce\x4c\x1f\x34\x29\xe1\xd5\x6b\x04\xa0\x3c\x41\x68\xfe\x25\x5a\x0f\xbc\xd9\x08\x39\x45\x8a\xdd\x4f\x29\xd3\x3a\xa4\xa3\xe4\x4a\x79\x82\x74\xf4\x33\xd5\xb2\x28\xa9\x96\x18\xdd\xcf\xe9\x2d\x14\xe6\x9f\xf3\x11\x40\x61\xfe\xc5\xe6\xcf\x13\xa4\xa3\x5c\xb6\xe8\x09\xd2\xd1\xaf\x32\xed\x90\x8e\x7e\x9d\xd6\x21\x1d\xfd\x3a\x75\x42\x2c\xfa\x69\x04\xa1\x37\xff\x26\x1f\x24\x14\xe6\x04\x8b\x3c\x41\x2c\xfa\x2d\xb5\x80\x2c\x9b\xf7\x20\x16\x25\x3c\xe4\x09\x62\x51\xf2\x9a\x3c\x41\x2c\xfa\x1d\xe6\x1d\x62\x51\xb2\x9c\x22\x85\xf0\xa7\x74\x91\x0c\x62\xd1\xef\x32\x66\x10\x8b\x7e\x4f\xef\x21\xe7\xa3\xb7\x70\x98\x93\xf3\xe4\x29\x10\x66\xcb\x5a\x1c\x90\x8e\xe6\x8f\x3e\xc0\x5a\xce\x45\x8c\x9e\x60\x2d\xcf\x1f\xf3\x07\x21\x69\xfe\x90\x1a\x42\xd2\x9c\x19\x17\x08\x49\x73\x66\x04\x21\x24\xcd\x85\x39\x82\x74\x34\x1b\x23\x01\xe9\x68\x36\x7a\x04\xe9\x68\x76\xfa\x0e\xe9\x28\x09\x51\x9e\x20\x1d\x25\xc8\xe4\x09\xd2\xd1\xac\x15\x00\x6b\x39\xc9\x52\x9e\x1c\x39\x1b\xad\x57\xe4\xec\xb4\x07\x3d\x69\xee\xf4\x08\x7a\xd2\xdc\x19\x17\xe8\x49\xa1\xc3\xf2\x04\x3d\x29\x61\x25\x4f\x81\x22\x1b\x37\x31\x7a\x82\x9e\x34\x6f\x46\x17\x7a\x52\xee\x57\xf4\x04\x3d\x69\xbe\x2a\x21\xf5\x65\x5c\x60\x42\xcf\x57\x92\x21\xb5\x14\x58\x45\xea\x87\x64\xf0\xa2\x43\x80\xe5\x09\x5e\xf4\xf2\xd1\x77\xd8\xce\x8b\xd6\x43\x20\xcc\x56\x32\xed\xc1\x76\x5e\xb4\x3a\x60\x3b\x2f\x85\x16\x60\x3b\x2f\x5a\x2b\x11\xba\x6d\x45\x9a\x28\x42\xb7\xad\x38\x92\x05\x8c\x6c\xc5\xe9\x2d\xbc\xe8\xa5\xd2\x1e\xbc\xe8\xa5\x52\x27\xbc\xe8\x45\x7a\x29\x5c\x8c\xad\x68\x56\x3a\x72\x36\x7a\xd4\x91\xb3\xa9\xce\x18\xc1\x22\x2d\x05\x4b\x7a\xe9\x6a\x9d\x3e\x68\x1e\x3a\x7d\x90\xce\x82\x9a\x15\x1a\x2d\x4f\x50\xb3\x96\x29\xc9\xe8\xc3\xfc\x8b\xe3\x22\xb2\x58\x7f\x1e\x5c\x74\x01\xd6\xd6\xb2\x10\x73\x20\xf4\xa2\x0b\xb0\xb6\x96\xcd\x47\x00\x6b\x6b\xd9\x88\x09\x6b\x6b\xd1\xb4\xc3\xda\x5a\x34\xed\xb0\xb6\x12\x72\xf2\x04\x6b\x2b\x79\x5b\x9e\x60\x6d\x25\xe4\xe4\x09\xaa\xf5\xf2\xa8\x33\xa2\xc1\x8d\xeb\x1c\x3d\x05\x16\x6d\xf6\xf1\x79\x06\x16\x6d\xa6\x05\x07\xa5\xab\x65\x3d\x19\xb2\x98\x16\x15\xe4\xea\x66\x0c\x35\x04\xaf\xa6\x89\x86\xe0\xd5\xa4\xf8\x20\x78\x35\x2d\x2a\xe8\xd4\x09\x1d\x79\x82\xe0\xd5\xa4\xf8\x02\xff\x35\xeb\x2c\xc6\x45\x0b\x9d\x16\xa0\x74\x25\xac\xe4\x09\x4a\x57\x82\x45\x91\xc1\xfb\x53\x9a\x8c\x44\xc4\x71\x9b\x2d\xa6\x3d\xe2\xb8\xcd\x16\xa3\x0b\xf9\x2b\xe4\x58\x9e\x20\x7f\x25\x90\xe4\x09\xf2\x57\xdb\x6a\xa1\x53\x52\x0b\x48\x7d\xf4\x1f\x52\x1f\x7a\x04\x31\xac\x49\x61\x42\xe6\x4e\x8e\x95\x27\x88\x61\x5d\x06\x08\x1a\x76\xd7\x12\x0b\x6c\xd8\x5c\x06\x08\x9a\x58\x48\xae\x3c\x41\x13\xeb\x5a\x70\x81\x0d\x9b\x6b\x1e\x02\x1b\x36\x2f\xb4\x07\x7d\x3b\x44\x56\x9e\x20\x94\x75\x2d\x3f\x48\x63\x5d\xb3\x02\x69\xac\x4b\xd5\x41\x1a\xeb\x5a\x70\x90\xc6\xba\x16\x1c\xa4\xb1\x5e\xf9\x5a\x21\x8d\xf5\x4a\x7b\x90\xc6\xba\x96\xd1\xa5\x0f\x43\xef\x21\xe7\xa4\x75\x48\x63\x7d\x32\x12\x90\xc6\xba\xd6\x03\xa4\xb1\xae\xb1\x86\x20\x9e\x64\xa9\xc8\x96\x8e\x12\x72\x42\x10\xef\x9b\x3e\x5c\xfa\xa0\x91\x87\x6c\xd6\x0f\xff\x41\x28\xeb\x17\xa9\x21\x94\x75\xe1\x38\x08\x65\x5d\xa6\x0a\x42\x59\x92\xa5\x3c\x41\x28\x5b\x65\xaa\xa0\x89\xad\x89\xde\x42\x13\x5b\x3f\xe4\x84\x26\xb6\x7e\xac\x2a\x68\x62\x6b\x9c\x8e\xf0\x0f\x9a\xd8\x8a\x52\xfc\x40\x83\x95\x79\xf8\x40\x7c\xa4\x40\xf9\x07\xe2\xab\xa8\xc1\x0f\xc4\x57\x51\x83\x1f\x88\xaf\x02\x12\x3e\x60\x5d\xad\xbc\x07\x20\xab\x8d\x16\x00\x5d\xb5\xd3\x02\xa0\xab\xc6\x91\x3f\xff\x00\x5d\x15\xe5\xf6\xc1\xc3\x4e\x04\xca\xbf\x70\xc1\xb5\x0a\x80\xf8\x80\x52\x44\xa0\xfc\x03\x4a\x55\xe6\xe8\x03\x4a\x91\x10\x15\x19\xe6\x51\x42\x6a\x38\xda\xb9\xc6\xd3\x3f\xe0\x52\xc5\x00\x7d\xc0\xa5\x1a\x8e\xbc\xc8\x3e\x8f\x92\x5a\xa0\x47\x8f\x3e\xc0\xd1\xce\x85\x9f\xfe\x01\xa5\xb8\xf0\x33\xf2\xd4\xff\xeb\x3f\xad\x25\xfa\x00\x5c\x22\x59\x2a\xb2\xd6\xa3\x44\x0b\xc0\xa5\x88\x4e\xfd\x51\x25\x7f\xd0\xb7\x37\x26\xf3\x83\xa2\xbd\xa1\xea\x3e\x28\xda\x1b\x68\xe2\x0b\x3f\x5e\x6b\xd8\xb4\x0f\x94\xc5\xa5\x9e\xfe\x81\xb2\x5a\x91\x98\x8f\x12\x83\x0b\xca\x6a\x9a\x76\x90\x54\x73\xba\x00\x92\x6a\x2c\xbf\x0f\xb4\xd4\x34\xd1\xa0\xa5\xa6\x89\x06\x2d\xc1\xd3\xe5\x5f\xf8\xe3\x1a\x21\x2e\xff\x0c\x39\xb1\x77\x9f\x21\x27\xca\xf4\x03\x3b\x35\xd0\xc4\x07\x76\x6a\x03\xa9\xc1\x4e\x5c\xd5\xe9\x1f\xd8\x09\x9e\x2e\xff\xc0\x4e\x6d\x22\x19\x64\xee\x0d\x54\xfe\x41\xe6\xde\x96\x6a\xa9\x94\x68\x0f\x5c\xd5\x36\xb2\x38\x7d\xd8\x7a\x92\x3e\x6c\x3d\x89\x9c\x47\x75\x32\x9e\x97\x8f\x00\x5c\xd5\xae\x6a\xa1\x0f\x0f\x39\xc1\x55\x0d\xc3\xf5\x81\x8f\xba\x3e\x82\xf0\xb2\x35\x6e\xbe\xf2\x2f\x42\xa9\xad\x27\x66\x13\xa2\xf7\xfe\xd1\x02\x48\xaa\xa3\x4c\x3f\x90\x14\xf9\x57\xfe\x81\xa4\xb8\xf0\xd3\x3f\x90\x54\xd7\xfc\x81\x96\x3a\x2a\xf2\x03\x2d\xf5\xca\x28\x81\x96\x7a\xa5\x47\x50\xc2\xf7\xc6\x7b\x50\xc2\xf7\xce\xd7\x03\x25\x7c\xef\x48\x06\xae\xea\x43\x4f\x22\xe7\xd0\x7f\xc8\xa9\xa5\xd9\x90\x73\xd2\x77\x70\x55\x5f\x6a\x2f\xc6\xac\x6f\xfd\x87\x9c\x60\xfb\x0f\x5c\xd5\x0f\x7d\x07\x3b\xf5\xc3\x98\x41\x48\x4f\x6e\x96\x7f\x10\xd2\x77\xb0\xfd\x07\xae\xea\x9a\x07\x70\x55\xd7\x22\x06\x57\x71\x51\x68\x5c\xdb\x10\x25\x3d\x89\x9c\x4f\x4f\x86\x9c\x43\xb3\x02\x76\x1a\x9a\x15\x68\xed\x09\xa9\xf9\x07\x40\x1a\x52\x9f\x00\xa4\xa1\x59\x81\xd6\x7e\x48\x99\x86\x23\xaf\x0d\x36\xc5\x1f\x00\x69\x18\xed\x01\x89\x86\x94\x29\x90\x08\xa2\x2e\xff\x80\x44\x43\x6b\x0c\x48\x34\x30\x6a\x1f\x90\x68\x34\x64\x01\x12\x0d\x70\xe3\x37\x91\x05\x50\xf2\x01\x89\x08\xa9\xf9\x07\x24\x1a\xec\xc6\xbe\x70\xcf\x35\x92\xb3\xfc\x9b\x48\xa6\x19\x03\x2e\x8d\xa9\x27\xe3\x3b\x1b\x4b\x75\x6e\x4a\xd4\x09\x78\x1a\x5b\x25\x24\x03\x0e\x7e\x80\xa7\xa1\x95\xb3\x68\x0f\x58\xf7\x01\xa5\x86\x56\x07\x7c\xf8\x53\x4a\x11\x3e\xfc\xa9\x79\x00\x58\xcd\x4f\x4f\x3e\x4a\xd4\x09\xb0\x9a\x5a\x1d\x00\xab\x09\xd4\xf8\x00\x56\x53\x73\x04\xb0\x9a\x5a\x2b\x00\xab\xc9\x8e\xeb\x03\x58\x4d\xe9\x48\x80\xd5\xb4\xbf\xdc\x97\xec\x1f\x98\x8b\x60\x98\x7f\x60\xae\x09\xa6\xfc\xc0\x5c\x53\xea\x13\xcc\x35\xb5\x18\xc1\x5c\x04\xbc\xfc\x03\x73\xc1\xa9\xe5\xdf\xa6\xeb\x4d\xdd\xa3\xeb\x9a\x4c\x10\xd8\x04\x61\x7e\xa0\xac\x29\x15\x09\xca\x9a\x9a\x5a\x50\xd6\x94\xc2\x04\x65\x4d\x90\xcd\x07\xca\x9a\xb2\x9a\xd0\xf6\x93\x71\xe5\x1f\xb4\xfd\x53\x56\x13\x04\x36\xa5\x3e\x41\x60\x73\xd1\x02\x28\x6b\x6a\x11\x83\xb2\xb8\xe9\xce\x3f\x50\xd6\x04\xe9\x7f\xa0\xac\x79\xa9\xf3\x32\xd4\x5a\x8c\xd0\xf6\x4f\x7d\x04\x20\x30\xb2\xb1\xfc\x03\x81\xad\xa4\xf7\x06\x25\x3d\x39\x29\x31\x12\x20\xb0\xa5\xcf\x05\x04\x06\x1d\x56\xdc\x62\xf2\x53\xfa\x24\xcb\xa5\xa4\x5a\xe2\x53\x22\x6f\xcb\x3f\x10\xd8\xca\x2c\x3f\x10\xd8\xd2\x07\x02\x02\x5b\x45\x4f\x46\x1f\x96\xe6\x1d\x04\xb6\x8c\x3a\xa1\xf4\xe7\x1e\x33\xff\xa0\xf4\x5f\x5a\xd2\x20\x30\x42\x6a\xfe\x81\xc0\x96\x10\xd1\x43\x32\x29\xe1\x87\x64\x6c\xbb\x33\xe8\x8c\xeb\x5b\xe3\x26\x96\x9f\x12\xf8\x28\x27\xa4\xe6\x2b\xc8\x20\xb7\xc5\x26\x3c\x43\xf0\xbf\xf8\x0a\x32\x04\xff\x6b\xa9\x16\xc6\x33\xfc\x8d\x9e\xc1\x71\xeb\xa8\x16\xc6\x93\x3d\x41\x06\xc7\xad\x23\x59\x90\x1a\xf3\x97\x71\xcf\x2d\xe6\x36\xe3\x9e\x5b\xa8\xdd\x8c\x7b\x8e\x70\x9b\x67\xdc\x73\x0b\xb5\x9b\x41\x83\xeb\x21\x0b\xee\xb9\x9d\x90\x13\xf7\xdc\x66\x63\x9f\x41\x8a\x1b\x44\x9b\x41\x8a\x1b\x95\x9c\x71\xb3\x91\xef\xe5\x19\x37\xdb\x66\xc5\x65\x70\xe3\x76\xfa\x07\x36\xdc\xcc\x43\x06\x1b\x6e\x00\x4b\x06\x1b\x6e\x54\x6b\xc6\xcd\x46\x48\xcd\x33\x6e\xb6\xdd\xa8\x13\x37\xdb\x66\x6d\xe6\x8c\x2c\x6c\xd0\x73\x84\x75\xdb\xd6\x8c\x81\x30\xf7\xd4\x7b\x83\x92\x64\x99\x94\x18\x33\x10\xe6\x46\xed\x66\x9c\x6e\xfb\x20\x19\x28\x72\x63\xfe\x72\xa1\x3d\x56\x55\xc6\xb1\xc6\x45\xb6\x9e\x81\x83\x1b\x37\x62\x06\xe4\xed\xa7\x3a\x1f\x25\x66\x05\x90\x77\xd8\xd3\x65\x5c\x69\x90\x71\x79\xc6\x95\x46\xfa\x97\x67\x00\xe0\x61\x87\x97\x71\x97\x1d\x3c\xbd\x19\x00\x78\x8c\xbe\x03\x00\x8f\x31\x66\x00\xc0\x63\x8c\x04\x00\x90\x2b\x6f\x3d\xe3\x3c\x3b\xce\x93\x80\xbc\xc3\xde\x3a\x03\xf2\x8e\x46\x1e\x90\x07\xc1\x97\x67\x40\xde\xf9\x1b\x43\xb5\x67\xf0\xdf\x69\x74\x16\xfc\x77\xba\x1a\xa0\x0b\x78\x7a\x33\xf8\xef\x0c\x3a\x04\xfe\x83\x09\xcc\x33\x88\x8f\xfb\x76\x3d\x83\xf8\xc8\x13\xf3\x0c\xe2\x23\x4f\xcc\x33\x88\x8f\x3c\x31\xcf\x20\x3e\x6e\xdf\xf5\x8c\xb7\x0c\x26\x30\xcf\x78\xcb\x8e\x26\x13\x34\x78\x50\x98\x19\x34\x78\xb4\x8c\x40\x83\x84\xdb\x3c\x83\x06\x0f\xdb\x8c\x0c\x1a\xbc\x9a\x3e\x10\xdf\xd5\xe2\x88\x3b\x35\x1a\x19\x5e\x9e\x41\x7c\x04\xd8\x3c\x83\xea\x60\xfb\xf2\x0c\xaa\xbb\xd8\xbb\x0c\xaa\xbb\x45\xb5\xc4\x84\x5d\xd4\x59\xc6\x5b\x76\xb5\xc4\x40\x67\x17\x4c\x92\xf1\x7a\x5d\x7c\x59\x19\xaf\x17\x19\x5e\x9e\x41\x67\x57\x8b\x03\x04\x06\xf7\x97\x67\x10\xd8\xd5\x52\x01\x81\x5d\x10\x4a\xc6\xb3\x45\x26\x93\x67\x30\xd7\x33\x95\x32\x25\xe4\x04\x57\x3d\x3c\xa1\x39\x02\xa4\x8d\x4c\x26\xcf\xb8\xa8\xc8\x64\xf2\x3c\xa8\x53\x9f\x59\x84\x3d\x1b\x81\x24\xcf\x20\xb0\x57\xf5\x5e\xcc\x2d\xc1\x22\xcf\xe0\x2a\x82\x45\x9e\x41\x4b\x0f\xb4\x94\x41\x4b\x84\x80\x3c\x83\x96\x9e\xbe\x10\xd0\x12\x19\x50\x9e\x41\x4b\x04\x7d\x3c\x4f\xda\x5b\xfa\x8f\xf6\x8e\xfe\x7b\x94\xa8\x05\xec\xf4\xf4\x4d\xc4\x21\xb8\xf6\xd8\x88\xe6\x08\x6d\x36\x82\x3e\x9e\x17\x23\x21\x45\x0b\xca\x7a\x52\xad\x81\xb2\x7a\xc2\x5d\x96\xe1\x08\x4c\x9f\x4a\x8f\x12\x2d\xc0\x11\x48\x62\x93\x67\x38\x02\x13\x28\x2b\xc3\x11\x98\x32\xbd\x85\x23\x50\xe1\xa1\x0c\x21\x70\x62\xef\x99\x21\x04\x4e\x19\x39\x21\x04\x56\xe8\x28\xc3\x26\x98\xf4\x65\xc1\x26\x98\xa4\xae\x61\x13\x4c\x38\x19\x32\x6c\x82\xa9\xaa\xbd\xe0\xc9\x4b\x4d\x25\xfa\xc0\x1e\x24\x6f\xfa\xa0\x55\x7c\xe8\xc3\xe0\x3b\x3b\xf4\x41\x8a\x16\x4e\xc2\xa4\x39\x82\x93\x30\x4d\x66\x13\x4e\x42\x52\x99\x3c\xc3\x49\x48\x82\x92\x67\x38\x09\x15\xbd\xc9\xf0\x0e\x26\x19\x4a\x68\x85\x15\xcb\xc9\xd0\x0a\x27\x76\x24\x19\x4e\x42\x45\x76\x32\x9c\x84\x49\xe6\x0f\x4e\xc2\xa4\x39\x82\x93\xf0\x93\xc1\x83\x77\xf0\x03\xc3\x66\x78\x07\xb9\x13\xcf\x33\xbc\x83\x9f\xc6\x13\xde\xc1\xaf\x20\x19\x74\xc4\x9f\x54\x72\x40\xa9\xae\x38\x4f\x86\x93\xf0\x33\x3d\x19\x72\x7e\x55\xb5\x6c\x4a\x6a\xef\x50\x62\x5c\xe0\x1d\xfc\x88\x1a\x64\xd8\x04\x3f\xe9\x4f\xd8\x04\x83\x38\xeb\xcf\x2a\x19\xa2\x41\xae\xb6\xf3\x0c\xd1\xe0\x27\xd5\x0a\xd1\xe0\x27\xf5\x09\x53\xf1\xb7\xd4\x1c\x82\x69\xe0\x21\x21\x54\x08\x28\xc3\x46\xfc\xb1\x4d\xcc\xb0\x11\x2b\x04\x54\x20\x28\xfc\xd8\x26\x16\x08\x0a\x3f\xd0\x4b\x81\xa0\x50\x01\xa1\x02\x41\xa1\x02\x42\x05\x82\xc2\x0f\xb5\x5b\xc2\xeb\xd5\xf3\xa7\x27\x07\x25\xfd\x37\x29\x75\x4a\x31\x9c\x0a\xde\x14\xb8\x89\x73\xd1\x7f\x87\x92\x5a\x0f\xa9\xb3\xa9\x14\x52\x67\x2c\x63\x81\xd8\x30\xa3\xc0\x0a\xc4\x86\x0a\xec\x14\xd8\x0b\x33\xe8\xa5\xc0\x5e\x48\xf6\x90\x17\x18\x0a\x15\xd8\x29\x70\x13\x73\x0b\x9e\x17\xb8\x89\xc9\x17\xf2\xf2\xd1\x87\xae\x3a\xe9\x03\x1e\xe9\xf2\xd1\x87\xa1\x5a\xe8\x03\x8b\xaa\xc0\x7a\x98\x99\xa3\x02\xeb\x61\x06\x45\x96\x4c\xeb\x71\x86\x38\x2e\xb5\xfb\x29\xe1\xdf\x2c\x30\x22\x66\x16\x47\xc9\xb4\xae\x91\xcf\xb4\x7e\xf5\x24\xad\xe3\x75\x2e\x70\x13\x67\x22\x03\x25\xfc\x63\xbd\x80\xfb\x0b\xac\xc2\xa4\xfa\x78\x81\xe7\xb0\xb0\xb5\x2e\xf0\x1c\x2a\x78\x53\xe0\x39\x2c\x18\xae\x02\xcf\x61\xa9\xfa\x2f\xc6\xb3\x00\x12\x4a\xe0\x9c\x5e\x50\xf3\xc5\x68\x8f\xf0\x65\x81\xcb\x90\x9b\xee\xbc\xc0\x2a\x5c\xc0\x6a\x05\x56\x61\xee\x98\xf6\x02\x8f\x70\xd9\xd4\x02\x8f\x30\xd4\x55\x5e\xe0\x11\x2e\x60\xed\x02\x8f\x70\x39\xd4\x12\xc0\xa3\x17\x7d\x75\x4e\x7b\x4f\x75\x46\x7b\xdc\x58\xe7\x25\x60\x48\x87\x90\xca\x4b\xc0\x90\x6e\x98\xf0\x12\x30\xa4\x9b\x46\x22\x60\x48\xe7\x1e\xba\xb8\x24\x30\x4a\xf4\x36\x02\x7a\xdd\xf4\xd5\x05\x44\xe9\xa6\xef\x0c\x92\x61\x52\x68\xbc\x04\xd4\xe8\xa4\xd0\xc4\xe5\x82\x51\xe2\xcb\x82\x72\xd8\x34\x66\x50\x0e\x2b\xf2\x51\xa0\x1c\xb6\xa1\x16\x90\x13\x27\x51\xa9\xc8\xa9\x11\x6c\xc8\x89\x12\x2e\x0d\x39\x31\x9b\xa5\x21\x27\xba\xa0\x40\x4e\x6c\x4b\x4f\x22\xe7\xa6\x85\x80\x2f\xdd\xd0\x13\x05\x72\x62\x45\x37\x0a\xe4\xc4\x86\x81\x2d\x0d\x39\xaf\x6a\x41\xce\xab\xf6\x90\xf3\xa9\x4e\xe4\x04\x33\x17\x88\x8b\xb9\x5d\x2e\xae\x4b\xfc\xaf\xff\x74\x67\xb7\x52\x20\x2e\x76\x76\xa9\x25\x1c\x56\xdd\xd9\x7b\x96\x70\x58\x75\x2e\xd7\xf7\x02\xa9\x31\xb7\xcb\x79\x81\xd4\xd8\xb3\xde\x6b\x94\xd4\x5e\x7c\x13\x5e\xd4\x42\xcc\x83\x6b\x36\x21\x27\x76\x8e\x40\x14\xc8\x89\x1d\x43\x59\x20\x27\x8e\x38\xc8\x1f\x55\x72\x81\xb7\x58\x41\x91\x02\x6f\xb1\x83\x7a\x0a\xbc\xc5\xae\xc5\x01\x6f\xb1\x37\x35\x87\x98\xb8\x23\x0a\xbc\xc5\xde\x25\xd8\xa2\xc4\x27\x18\x28\xab\xfb\xe0\x73\x81\xd3\xd8\xd9\xa4\x16\x38\x8d\x5d\x8b\x6a\xd2\x05\xec\x72\x99\x74\x01\xaf\x6c\x99\xc8\x49\xe0\xaa\x4c\xe4\x04\x09\x97\x89\x9c\x9a\x94\xf0\x73\xf5\xaa\x49\x09\x3f\x57\xe7\x06\x39\x2f\x81\xdc\xba\x82\x22\x25\x90\x5b\xaf\x52\xde\x81\xdc\x7a\xd5\xa4\x04\x72\xeb\x15\xcc\x5c\x02\xb9\x75\x85\x48\x4a\xa0\xb3\x5e\x71\x0f\x94\xf0\x7a\xf5\xaa\x05\x17\x5e\xaf\x5e\xb1\xbd\x25\x90\x5b\x87\xcd\xcc\x4b\x20\xb7\x5e\x71\x08\x94\x85\x9c\x55\xb5\x20\x67\xd3\x7b\xc8\xa9\x79\x58\xc8\x42\x50\xa4\x2c\x64\x01\x33\x17\x98\x9f\x2b\x11\xdf\x02\xaa\xab\x5a\x54\xa0\x3a\x98\xce\xbc\x80\xd5\x14\x14\x29\x60\xb5\x4a\xe0\xaa\x80\xc7\xe0\x36\xf3\x02\x1e\x23\xbd\xc6\x0b\x78\xac\x4a\x41\x83\xc7\xaa\x14\x34\x78\x4c\x41\x91\x02\x1e\x53\xe0\xa3\x80\xc7\x9a\x96\x03\x28\x0b\xa6\x33\x2f\xa0\xac\x46\xb0\xb6\x80\xb2\x5a\xd6\x7f\x95\x12\x3d\x02\x49\x35\x76\x01\x05\x96\x66\x6e\x82\xf3\x02\x4b\x73\x63\x0b\x59\x40\x4b\x24\xdb\x78\x01\x11\x91\x42\x13\x37\x84\xfe\x94\x64\xfe\x40\x44\x4d\xdf\x27\x88\xa8\xc9\xc4\xc1\xd2\xcc\xdd\x6f\x5e\x60\x69\x6e\x53\xef\x21\x0b\x28\xb2\x80\x96\x9a\x54\x16\x68\xa9\x69\x74\x41\x4b\x4d\x06\x01\x96\x66\x45\x1b\x0a\x2c\xcd\x4d\x23\xff\xe8\x83\xbe\x72\x70\x55\x23\x4c\x5e\x00\x48\x4d\x23\x0f\x40\x6a\x4f\x4f\x86\x9c\x24\xdb\x78\x89\x60\x5f\x57\x9c\xa0\x44\xb0\xaf\x77\x29\x1b\xc0\x53\xd7\xe8\x02\x9e\x7a\x51\x0b\x97\x12\x23\x08\x78\x22\xf5\xc6\x0d\xf0\xd4\x31\x16\x06\x78\xea\x84\x60\x0d\xf0\x04\x15\x98\x1b\xe0\x49\x31\x04\x03\x3c\x71\x6b\x9b\x1b\xec\xce\x24\xd4\xb8\xc5\x71\xb2\xce\x3d\x6d\x6e\x71\x9c\xac\x77\x5c\x23\x06\xcc\xea\x53\xed\xd1\x3f\x46\xc9\x80\x59\x1d\x70\x61\xc0\x2c\x52\x6f\xdc\x80\x59\x7d\xab\x4e\xfa\x77\x54\x27\xfd\xc3\xc0\x1a\x30\xab\xa3\xe6\x0d\x98\xd5\x51\xf3\x06\xcc\xea\x68\x14\x03\x66\x75\x50\xb9\x01\xb3\x48\xc4\x71\x83\x24\x7a\xe0\x70\x34\x48\xa2\x15\x27\x30\x20\x18\xa9\x37\x6e\x40\xb0\xc1\x3c\x18\x10\x6c\x7c\x7f\xc9\xde\x73\x03\x9d\x29\xa0\x60\xa0\xb3\x91\x19\xc0\xf0\x65\xf5\x51\xd4\x78\x74\x6f\x80\x22\x2d\x62\xa0\x7d\xb0\x8d\xb2\xf0\x73\xf5\xc1\xa6\xd8\xc2\xcf\xd5\x15\x5e\xb0\xf0\x73\x75\xee\x70\x73\xcb\x74\x4f\x93\x09\xc6\x83\x34\xc5\x0d\x8c\x37\xaa\xde\xa3\x7b\xa0\x02\x03\xe3\x0d\x14\x98\x81\xf1\x06\xe8\xd3\x60\xbd\x1e\x53\xb5\x20\xe7\x54\x2d\xc8\x89\xd7\xd9\x60\xc4\xe6\xee\x37\xb7\x82\x2c\x4b\x25\x64\x01\x2d\x19\xac\xd7\x03\x34\x6f\x85\x71\xc1\xeb\x65\xb0\x5e\x0f\x36\xbe\x06\x1a\x9c\x04\xd8\x0c\x34\x38\xd9\x54\x19\xa8\x4e\x61\x02\x83\xd9\x7a\xa2\xbc\x0d\x66\xeb\x49\x10\xd4\x60\xb6\x9e\xa8\x72\x83\xd9\x7a\x62\x7b\x0d\x34\x38\x71\x40\x18\xcc\xd6\xd3\xf5\x24\xad\x63\x89\x0d\x34\x38\x09\xc9\x18\x68\x90\x44\x15\x37\xd0\xe0\x04\x3b\x19\x68\x90\x1b\xd6\xdc\x1c\xc9\x30\xa9\xe6\x48\x36\x54\x27\x92\xb1\xb9\x35\x70\xe3\xd4\x32\x02\x37\x72\xa7\x9a\x9b\x23\x19\x8a\xdd\xc0\x86\xf3\xd2\x02\xd8\x70\x12\xa2\xb4\x4a\xeb\x0f\x39\xc3\x29\xd5\x97\x46\x10\x34\x28\xaf\xba\x85\x53\xaa\x2f\x7d\xe4\xe1\x94\xea\xeb\xd3\x7f\xd1\x3a\xec\x35\x6e\x20\xc5\x05\xb2\x31\x90\xe2\x2a\xaa\x73\x53\xd2\x7b\x87\x12\x23\x0f\x52\x24\x51\xc5\x0d\xa4\xb8\x34\xf2\x20\x45\xee\x3f\x73\x8b\xf0\x65\x5f\xfa\xca\x23\x7c\xd9\x17\x06\xc1\x40\x83\x0b\x68\x63\x0d\x39\x31\xb0\xd6\x90\x53\xf3\x00\x52\x5c\x98\x07\x03\x29\xae\xae\x5a\x90\xb3\xab\x3d\xe4\xc4\xff\x6e\x20\x45\xf9\xd8\x0d\xa4\xb8\x30\x1d\x06\x52\xe4\x3e\x32\x37\x90\x22\x44\x64\x6e\x20\xc5\x2d\x65\x0a\x52\x94\xef\xda\x40\x8a\x5b\x3d\x02\x29\x6e\xdc\x6c\x06\x52\xdc\x5a\x8d\x20\xc5\x4d\x40\xdd\x40\x8a\x1b\x8c\x6e\x20\xc5\xdd\xf4\x64\xf4\x6f\xab\x7f\xe1\x58\xeb\xf2\x4f\x5b\x84\x36\x3b\x29\x1f\x71\xbd\x73\x94\x18\x17\x10\xe6\xe6\x20\xa6\x01\x15\x37\xce\x10\x03\x2a\x6e\x76\xda\x06\x54\xdc\x38\xac\x0c\xa8\xb8\x89\x0c\x18\x50\x51\xfe\x69\x03\x2a\x6e\x20\x83\x01\x15\xb7\xd6\x2d\x50\xf1\x24\xd5\x12\xb2\x90\xf2\x11\x97\x4b\x47\x89\xff\x80\x8a\x64\x5d\xb8\x01\x07\x0f\x0e\x47\x03\x0e\x1e\x1c\x8e\x06\x1c\x3c\x9a\x31\xe0\xe0\x61\xaf\x6b\xc0\xc1\xf3\xa3\xa5\xfe\xac\x92\x41\x8a\xf2\xfb\x1a\x48\xf1\x68\x58\x40\x8a\x90\x24\xb9\x81\x14\x0f\xc7\x7c\x0c\x6c\x78\x0e\xc3\xb9\x10\x4c\x16\x07\xfc\x77\xb4\xe0\xc0\x7f\x50\xd9\xb8\xc5\x71\xb2\x7e\xd5\x75\xf0\x1f\xe9\x12\x6e\xe0\x3f\x68\x6e\xdc\xc0\x7f\xb7\xe8\xc9\x4b\x49\xb5\x3c\x4a\xa8\x09\xbc\x7a\x17\x07\x84\xe1\xd5\x23\x95\xc2\x0d\xaf\xde\xd5\xa2\x02\x29\x5e\xa3\x05\x90\xe2\xc5\x1f\x67\x78\xf5\xae\x4c\x07\x48\x11\xd2\x1b\x37\x90\xe2\x6d\x8c\x12\x48\xf1\x76\xbd\x47\x1f\xb4\xa8\x36\x7d\x00\xd1\x1a\xde\x39\x08\x71\xdc\xf0\xce\x5d\x2d\x23\x70\xe3\xc5\xbb\x6a\xe0\xc6\x3b\xf5\x24\xb2\x2c\xfd\x57\x29\xf1\x29\x1d\xc6\x73\xa9\x16\xe4\xd4\xa7\x8b\xe7\x0e\x0a\x1c\x37\x3c\x77\xf0\xc1\xb9\xe1\x9d\xbb\x9a\x15\xf0\xe6\xc3\xa3\x69\xe0\x4d\x92\x20\xdc\xc0\x9b\x24\x41\xb8\xe1\x9d\x7b\x1a\x4f\xbc\x73\xd0\xdc\xb8\x81\x45\x9f\x14\x18\x58\xf4\xc9\x4c\x83\x45\xb9\x85\xcb\x0d\xbc\xf9\x64\x8a\xc1\x9b\x4f\x86\x04\x4c\xf9\xb4\x34\xc1\x94\x4f\x4a\x1f\x4c\xf9\x88\x44\x18\x98\x12\x6e\x19\x37\x9c\x6e\x4f\xf8\x08\x4c\xf9\xd8\x14\x1b\x98\x92\x0b\xb4\xdc\xc0\x94\xef\xaa\xce\x4d\x89\xbe\x83\x1b\xe5\x75\x36\x70\xa3\xd2\x09\x0c\xdc\xc8\x05\x5a\xee\xe0\x46\xa5\x13\x38\xb8\xf1\x31\x9e\x0e\x6e\x7c\x1c\x58\x73\x88\x53\x95\x6a\xe0\x10\xa7\xa6\xa4\x27\x9d\xd2\xa5\x54\xa3\x84\xd3\xcd\x03\x37\x0e\x48\xc3\xdc\x03\x37\x8e\x54\xf4\xdf\x88\x12\x8a\xd6\xa1\x5f\x4d\xa6\xf6\x82\xb3\x4f\x7e\x66\x87\x7e\x35\xb9\xa4\x3e\x94\x16\xa5\xe0\xf3\x4b\x55\x2d\x3c\x4a\x3c\x09\xfd\x6a\x42\xed\x7a\xe0\xc6\x91\x50\x3d\x1e\xb8\x71\x28\xbb\xc0\xe1\x61\x4f\xac\x00\x87\x6b\x3d\xa1\x7a\x1c\x3e\xf5\x34\x55\x42\x4e\xbe\x5d\x87\x70\x35\xa1\x43\x1c\x52\x55\xae\xb0\x72\x87\xed\x5c\xbe\x64\x87\xb5\x9c\x0b\xa6\xdc\x21\x40\xfd\x34\x2e\x10\xa0\x7e\xac\x77\x87\x99\xfc\xc3\xe3\xee\x70\x8a\x7f\xac\x5b\x87\xf2\x54\xbe\x5d\x87\xf2\xf4\x53\x8f\x0a\x2d\x70\xbe\xc4\xe3\x3c\xd9\xe0\x32\x28\x77\xe8\x50\x3f\xf5\x08\x3a\x54\x39\x77\x1d\x3a\xd4\x8f\xef\xd3\xa1\x43\xfd\xc0\xf6\x0e\x1d\xaa\xce\xf7\x3b\x74\xa8\x1f\x87\x57\x1d\x3a\xd4\x6f\xff\xe5\x0a\x7b\x77\xe8\x50\x3f\xce\x5a\x3a\x74\xa8\xd0\x96\xb8\x43\x87\x0a\x6d\x89\x3b\x74\xa8\x9f\x3e\x3a\xe8\x50\x75\x84\xdf\xa1\x3c\xcd\xa0\x17\x87\xf2\x54\xc7\xf4\x1d\xca\xd3\x0c\x7a\x71\x28\x4f\x33\x47\x79\x1c\xca\x53\xee\x89\x8a\x8b\xfa\x7f\x4a\xa6\xff\x3a\x25\x86\x13\x5a\x53\x1d\xda\x77\x68\x46\x33\x68\xd0\xa1\x19\xcd\xfa\x5c\x2a\x75\x76\x3d\x19\x0b\x20\xb3\xb1\x77\x88\x45\x33\xdb\x4b\x87\x58\x34\xa3\xce\x1c\x62\x51\x2e\x59\x72\x87\x58\x94\x4b\x96\xdc\x21\x16\xcd\x84\x1a\x3d\x70\xd5\xc8\x98\x23\x0f\x5c\x35\x74\xdc\xde\x21\x1d\x85\xb7\xc4\x1d\xf2\xd0\x82\x13\xc5\x21\x0f\x2d\x18\x27\x87\x3c\xb4\x10\x79\xf7\xc0\x55\xa3\x7c\xaa\x65\x50\x62\x1e\x20\x5e\x2f\xa0\x41\x87\x66\x14\xbe\x13\x77\x68\x46\xe5\xbf\x75\x68\x46\x0b\xc1\x22\x87\x66\xb4\x68\x11\x43\x33\x5a\x40\xd7\x0e\xcd\x28\x57\x35\xb9\x43\xca\x5e\x88\x0d\x7b\x47\x16\xbc\x8f\x0e\x95\x68\x19\x7a\x12\x59\xd8\x88\x3a\xe4\xa1\x85\x38\xbc\x43\x1e\x2a\xff\xad\x43\xf4\x59\x34\x4a\x10\x7d\xea\xac\xba\x43\xe6\x0e\xe3\x88\x3b\x64\xee\x30\x8e\xb8\x43\xf4\x29\x8f\xad\x43\xf4\x69\x84\x67\x1d\xc2\x4e\xd3\xb8\x40\xd8\x69\xea\x3b\x84\x9d\x26\x05\x06\x61\xa7\x15\xfd\x17\xb2\xe8\xac\xba\xc3\xbc\x2e\xff\xad\xc3\xbc\xae\x93\xeb\x0e\xf3\xba\x61\xa6\x1d\xe6\x75\xae\x47\x72\x87\x79\xdd\xd8\xd3\x39\x9c\xe9\xc6\x29\x23\x87\x33\x5d\xde\x5c\x87\x33\xdd\xf4\x7d\xc2\x99\x6e\xfa\x3e\xe1\x4c\xd7\x89\x69\x87\x33\xdd\x35\xd6\x70\xa6\x7b\xd7\x93\xd1\xba\x83\x8b\x1d\x7e\x73\x27\xec\xe9\xf0\x9b\x3b\x27\x89\x3c\x20\xc3\xd0\x89\x69\x0f\xc8\x30\x9c\x93\x44\x0e\xf7\xb9\x13\xe7\x71\xb8\xcf\x75\x62\xda\xe1\x3e\x77\xf6\x82\x1e\x00\x62\xe8\xfc\xb4\x07\x80\x18\x50\x4f\xb8\x07\x80\x18\xae\xaf\x3c\x00\xc4\xa8\x84\xd4\x1c\x96\xf4\x8a\x41\xf7\x80\x05\x43\x6e\x3d\x0f\x58\x30\x2a\x38\xdc\x61\x50\xd7\x59\x67\x87\x41\xbd\x62\x98\x3d\x20\xc3\xa8\x32\x08\x11\xd0\x1b\x55\xaa\x35\x02\x7a\xa3\x4a\xb5\xc2\xb5\x5e\xa5\x4c\xe1\x5a\xaf\x1a\x6b\xb8\xd6\x21\x7f\x70\x87\x6b\xbd\xb2\xdf\x73\xb8\xd6\xab\xbe\x64\xb8\xd6\x75\xf2\xd9\xe1\x5a\xaf\x53\x75\xc6\xdc\x56\x22\x34\x0e\x9f\xba\x4e\x3e\xfb\x45\x4e\x29\xda\x8b\x9c\x1a\xc1\x87\x2c\x32\xda\xe1\x4e\x1a\x0d\xf8\xe9\xe1\x4e\x1a\x41\xe9\xfa\x67\x95\x0c\xd5\x7a\x93\xc2\x84\x6a\xbd\xe9\x23\x87\x6a\xbd\x11\x0c\x73\xa8\xd6\x1b\x88\xa8\x42\xb5\xde\x58\xee\x15\xaa\x75\xf9\xf8\x2a\x54\xeb\x3a\x7b\x5c\x41\x0c\x8d\x8f\xbc\x62\xf9\xb9\x6c\xc7\x2b\x96\x5f\xfe\xbf\x8a\xe5\x6f\x55\x2d\xd0\x05\x2c\x78\xc5\xf2\xc3\x0b\xe1\x15\xcb\xdf\x9a\xea\x44\x4e\x26\xa5\x62\xc1\xe5\x1b\xac\x50\xad\xcb\x1b\x58\xc3\xf3\x33\xe4\x0d\xac\x58\xf7\x36\xf5\x1e\xb2\xa0\xae\x2b\xc4\xeb\x5c\xb6\xe3\x15\xe2\xf5\xc6\x27\x5f\xb1\xf5\x0d\xbf\x76\x85\x5c\xbd\xb1\xa9\xaa\x99\x3e\x70\x4a\xb2\x62\xeb\x1b\x53\x54\x21\x49\x6f\x78\xa8\x2a\x96\xbf\x83\x8f\x2a\x96\xbf\x7f\xfa\x2f\x46\x50\xfe\xbf\x0a\xf5\x39\x1c\x0e\x5e\xa1\x3e\xef\x38\x97\x6a\x38\x58\x06\x97\xf4\x78\x05\x23\xc8\x53\x58\xc1\x08\x9d\xcd\x7b\x05\x23\x74\x36\xef\x15\x8c\xd0\x49\xdd\xa8\x60\x84\x6e\x7a\xef\x51\xa2\x05\x6c\x7d\xd7\xfc\x61\xeb\xe1\x7e\xf0\x8a\x41\xef\xec\x2c\xaa\x21\xa7\xe6\x0f\xf3\xde\xf1\xb5\x56\xcc\x7b\x07\x3f\x54\xcc\x7b\x5f\x7a\xf2\x50\x62\x94\x60\x3b\xef\x4b\x75\x22\x0b\xce\xa5\x8a\xe9\xef\xec\xdb\x2a\xa6\xbf\x63\x52\x2b\xa6\xbf\xe3\x36\xa9\x98\xfe\x4e\x06\x62\xc5\xbc\xcb\x6f\x58\x31\xef\xfd\xe9\xbf\x90\x73\x7c\xaa\xf3\x50\x42\x16\xd8\xc7\x47\x56\xe9\xa3\x84\x64\xc0\x82\xa1\x91\xc7\xf4\x0f\xc2\xc8\x15\xf6\xf1\x81\x8f\xb6\x02\x04\x86\x46\x17\x20\x30\x40\x75\x15\x20\x30\x70\x24\x54\x80\xc0\xd0\x58\x03\x04\xe4\xf2\xab\x00\x01\xb9\xfc\x2a\x0c\xe3\x03\x75\x5d\x61\x18\xe7\x7a\x1d\xaf\x30\x8c\x0f\xf6\x5f\x15\x86\xf1\xa1\x15\x00\x48\x80\xc4\x21\xe8\x6e\xa2\x44\xff\x00\x09\x3a\x27\x5c\x01\x09\x43\x73\x04\x48\xd0\x39\xe1\x0a\x10\x18\x5b\xed\x21\x27\x1e\xdb\x8a\xb1\xd7\xa9\xe1\xda\x91\x13\x53\x5c\x3b\x72\x5e\x3d\x89\x9c\x1c\x38\xac\xf0\x8d\x8f\xab\xf7\x90\xf3\xe9\x49\x64\x21\x5a\x54\xe3\x9c\xf7\xe0\xd6\x1c\xaf\xc0\x02\x68\x1b\x82\x6c\xe7\xa7\x84\xa3\xab\xc2\x29\x3e\xb5\xc6\x22\xdc\x36\x74\x12\xb9\x46\xb8\x6d\x70\xa3\x8e\x57\xf8\xc6\xa1\x6d\xf0\x0a\xdf\x38\xb4\x0d\x5e\xe1\x1b\x9f\x45\xef\x55\x4a\xc8\x09\xdf\xf8\x04\x38\x56\x60\xc8\xc4\xd8\x57\x60\x88\x8e\x14\x57\xf8\xc6\xe3\x48\xf1\x1f\x55\x72\x85\x8a\x7c\x62\xb7\x2a\x08\x85\xcb\x76\xbc\x82\x50\xa6\x26\x0c\x2a\xf2\xa9\x09\x83\x8a\x5c\xe7\x7d\x2b\x54\xe4\x53\xcb\x08\xf4\x32\xb5\x54\x40\x2f\x53\xd3\x07\x7a\x99\x60\xd1\x0a\x42\x81\xf3\xd7\x2b\x08\x65\x5e\xfd\x47\x17\x08\x6e\x54\x10\x8a\x4e\x06\xd7\x85\x9c\xc4\xfd\xeb\x42\x4e\xd0\x7c\x5d\xc8\x89\xd7\xb2\x2e\xe4\x04\xb5\xd6\x85\x9c\x6c\x4b\x2b\xc8\x46\x67\x88\x2b\xc8\x66\x25\x3d\x79\x29\xe9\xbf\x68\x7d\x71\xc2\xa3\x86\xa3\x64\xe8\x9c\x70\x0d\x47\xc9\x58\x9a\xf6\x70\x86\x8c\xc5\x0e\xa1\x86\x53\x63\x2c\xa9\xc8\x70\x6a\x8c\x05\x72\xab\x71\x7a\x7b\xe8\x2c\x70\x05\xcb\x2c\xa9\x41\xf0\xca\x02\xd1\x56\xf0\xca\xd2\x1c\x81\x57\x96\x14\x1f\x78\x65\x81\x1f\x6a\x38\x3c\x06\x57\xef\x78\x0d\x87\xc7\x90\xd7\xb2\x86\xc3\x63\xac\xa1\xff\x26\x25\x96\x26\x08\x65\x69\xa6\x41\x28\x4b\xca\x14\x84\xb2\x34\xd3\x20\x94\x25\x53\x05\x42\x59\x9a\x69\x10\xca\x22\xec\x52\x41\x28\x3a\x35\x5c\x41\x28\x3a\x27\x5c\x41\x28\x4b\x0b\x15\x84\xa2\xf3\xbe\x15\x84\xb2\x39\xc5\x51\x23\xf8\x36\x76\x52\x9d\x83\x12\xdf\x19\xe8\x65\x73\x22\xb5\x86\x33\x64\x70\xbd\x8e\xd7\x70\x7f\x8c\xcd\x6e\xac\x86\xfb\x63\x6c\x2d\xb1\x38\xaf\x3d\xb6\x16\x55\x84\xd4\x06\x57\xe8\x04\x9f\xd5\x4f\x49\x20\xe1\xd1\x3a\x67\x41\xea\xa3\x75\x7c\x8a\x15\x0c\x24\x0f\x6a\x05\x03\x6d\x5c\x5b\x15\xa0\xb3\xf5\xb5\x02\x74\x74\x8e\xb6\x01\x66\x0e\xfd\x6b\x80\x99\x43\x8f\x1a\x60\x86\x2b\x6d\xbc\x01\x66\x74\xc6\xb6\xe1\xe2\xe0\x4a\x9b\x60\xd3\xfa\x29\x65\xd5\xd9\x29\xe9\xc9\x90\xe5\xb0\x5f\x68\x00\x16\xa8\x12\xbc\xe1\x8e\x38\x28\xf6\x86\x3b\xe2\xf0\x2d\x35\xc0\x8c\x4e\xd5\x36\x00\xcb\x01\xf7\xb7\x8f\xf6\xe8\x5f\xfb\x68\xaf\xa9\x96\x18\x17\x28\x16\x82\xd9\xeb\xa7\x34\x54\x27\x7d\x27\x12\xd1\x3e\x64\xc1\x58\xb4\x88\x47\x8d\x03\x4e\x6d\x00\x9d\x03\x40\x6a\x00\x9d\xc3\x31\xbb\x16\x31\xa7\x71\xd8\x7f\xb5\x88\x39\x0d\x6e\xb8\xf1\x96\x91\x85\x00\x69\xcb\xc8\xc2\x2e\xa0\x01\x90\xb8\xc5\xc6\x1b\x00\xe9\x00\x9e\x1a\x00\x49\x07\x69\x1b\x20\xe8\xe0\x67\x6e\x85\x91\x40\x33\xb4\x42\xeb\xf8\x07\x1a\x00\xe9\xe2\x1f\x68\x00\xa4\x9b\xf4\x5f\x8c\xd2\xd5\x8c\x01\x82\xae\x46\x10\x67\xc8\xed\x7f\xf3\x25\x37\xfc\x24\x97\xa0\x4f\x03\x1f\x5d\x0d\x2e\xf8\x88\xcb\x68\xbc\x81\x8f\x2e\x9b\x80\x06\x3e\xe2\x32\x1a\x6f\xe0\x23\x79\x49\x9b\x21\xa6\x86\x3a\x82\x53\xe3\x4e\xd5\x82\x98\x44\x9f\x1b\xd8\xe9\x6a\x70\xc1\x4e\x97\xb8\x6a\x03\x3b\xdd\xcd\x14\x81\x8f\xae\x06\x17\x7c\x74\xd9\x2e\x34\xf0\xd1\xe5\x28\x5d\x03\x1f\x5d\x36\x5c\x0d\xd7\xc8\x65\xc3\xd5\x70\x8d\x70\x89\x8d\x37\x50\xcf\x4b\x2a\x65\x4a\x48\x0d\xea\x79\x28\xe1\x06\xea\x79\x9f\xfe\x6b\x94\x18\xea\x08\x39\x8d\xc7\x66\xba\x81\x88\x60\x4a\xf0\x06\xea\x79\x6c\xe2\x1a\xa8\x07\x6e\x04\x6f\xb8\x38\xb8\x8c\x26\x68\xe1\x7e\x4a\x38\x12\x1a\xc8\xe6\xa1\x18\x1a\xc8\x46\x27\x83\x1b\xc8\xe6\x69\xe1\x80\x6c\x1e\x61\xa5\x06\xb2\x79\x6c\xf7\x1a\xc8\xe6\x35\xbd\x17\x23\x0f\xdf\xb8\x37\x90\x0d\x9c\xe2\xde\x70\x71\xe8\x0c\x71\xc3\xc5\xf1\xf0\x06\x36\x50\x8f\x7c\xbb\x0d\xd4\xc3\xa5\x32\xde\x02\xf5\x9c\x6e\xe9\x28\x19\xa0\x05\xf2\x89\x5f\x0e\x68\xb2\x05\xfa\x39\xdd\xbe\x73\x50\xd6\x2d\x10\xd0\xe9\x96\xcf\xef\x32\x8e\x50\xd2\xe9\x66\xe7\xb8\x6a\x6e\xbf\xbf\xe8\x3c\x76\x0b\xa4\x74\xba\xf9\x39\x92\x3a\x5c\x2a\xf1\xcb\xcb\x6a\x7d\xf2\x4b\x3b\xcf\xd5\xfa\xe2\x97\x71\xf6\x52\x7f\xf6\x3f\xbf\x5c\xd5\x7c\xf8\x65\x9e\x83\x62\x6e\x81\xbc\x4e\xb7\x75\x76\xd5\x2f\xef\xf7\x97\xdf\x2f\x2b\x10\xd8\xe9\xb6\xcf\xd6\xd2\x0d\x14\x16\xbf\x3c\x82\x85\x6d\x68\x7c\xce\xd1\x29\xf6\x36\x34\x3e\xf7\x5c\xa9\x86\xc1\xf8\x78\x3a\xb0\x74\x04\xf1\x9f\x7e\xf9\x9d\x91\xc1\xf8\x78\x3e\xfb\xa9\xf5\xf6\xfb\xcb\x4d\x7a\xab\xff\xf3\x8b\x54\xfa\x60\x7c\xdc\xce\xd6\xa8\x8e\xf9\xfb\xcb\xef\x77\x37\xd6\x3f\xbf\x48\xfd\x8d\xfd\xcf\x2f\x4f\xcf\x30\x3e\x5e\xcf\x2e\xaa\xf9\xfe\xdf\x5f\x98\xd3\xf1\xfe\xf9\x05\x78\xd0\x66\xfa\xfd\xe5\x60\xb6\xda\xfc\x7e\x7f\x81\xbd\xde\xdb\x64\x7c\xbc\x9d\x2b\x93\x31\x19\x1f\xef\x67\x6b\x2d\x4c\x8d\xcf\x38\xbf\xca\x7b\xfa\xef\x2f\x5c\x44\xe4\x6d\x6a\x7c\xf6\xf9\x35\x3d\x53\xe3\x73\xce\xaf\x2a\x9d\xfd\xf7\x97\x2b\xd3\x35\x35\x3e\xf7\x70\x35\x97\xb7\x39\x7f\x7f\xf9\xd5\x0a\x53\xe3\xf3\x8e\x92\x58\xda\xdc\xbf\xbf\x5c\x4e\x95\xb4\x79\x7e\x7f\x79\x60\xee\x36\x19\x9f\x9a\x8e\xae\x35\x6a\x93\xf1\xa9\xdf\xd9\x1c\x3c\x6d\x8b\xf1\xa9\xe5\x1c\xdc\x56\x6d\x7d\xff\xfc\x22\xa3\xb5\x18\x9f\x6a\xe7\xe0\x42\x6d\xab\xfc\xf3\x0b\x60\xb5\x2d\xc6\xa7\xfa\xd9\xec\x4c\xda\xf2\xdf\x5f\x0e\xc7\x0c\xda\x62\x7c\xea\xcf\x7c\x21\xe1\x62\x7c\x6a\x3f\x17\xe8\xd5\x16\xe3\x53\xc7\xd9\xec\xff\xdb\x1a\xbf\xbf\x5c\x40\x7a\x5b\x8c\x4f\x4b\xe7\x17\x28\x2c\xc6\xa7\x7d\x47\x51\x9c\xb6\x18\x9f\xf6\x63\x09\xc7\xbf\xcc\x8f\x8d\xff\x6e\x7d\xe0\x67\x2a\xed\x9d\xf5\xa3\x31\x7e\xa5\x0d\xfe\x95\x36\x5c\xbf\x32\x13\xe2\xd6\xdc\x57\xbf\xd2\x3e\xbc\x4d\x73\x4d\xfd\x8a\x9c\xa2\x20\xf8\x92\x7e\x65\x0e\xa0\x22\xa8\xfe\xfe\xfd\x2b\x17\x4b\x37\xfb\x77\xbd\x5c\x23\xeb\xf7\xdf\xf5\x72\xdd\x5d\x6b\xff\x7e\x96\x8b\x01\xce\xfa\xf7\xaf\xca\x23\xa8\xff\x6e\x8d\x83\xb4\xeb\xe8\x57\xbe\x5f\x9d\x63\xf3\xfd\xef\x1a\x22\xe2\x36\xec\xfb\xb7\x0c\x9b\x23\x15\xe9\xdf\xcf\x1e\x8e\x56\xfc\x37\x19\x70\xb1\xb7\xfd\xef\x1a\xd0\xef\xe3\xf7\x57\xd6\x59\x38\x4d\xdf\x93\x2e\x0b\x97\x66\x4a\xfa\x0e\x03\xf8\xa7\x04\x64\x6f\x01\xfc\x53\x92\x45\x0f\xb7\x65\x4a\x5c\x61\xd0\xc2\x6d\x99\x74\xc3\x54\x0f\xb0\x96\x3e\xf6\xac\x3d\x20\x58\xfa\xd8\x6d\xf6\xf0\x40\x24\x48\xb0\x83\x1e\xf3\xa7\xc4\x3a\x1c\xe1\xd5\x28\xc9\x54\x1a\x94\x0a\xa5\x49\xc9\x29\x2d\x4a\x8d\xd2\xa6\x34\x28\x9d\x28\x55\xbd\x77\xa3\xd4\x55\x7a\x94\xa8\x25\x64\x29\x89\xbb\x85\x46\xe0\x82\x92\xb0\x94\x23\x02\x21\x45\x23\x31\x02\x17\x94\x84\xcf\x61\x04\x2e\x28\x69\xaa\x96\x46\x49\xb5\xd0\x07\x5c\xa1\xa3\xd2\x87\xad\xf7\xe8\xc3\x55\x89\x3e\x5c\xd5\x42\x1f\xae\x6a\xa1\x0f\xf8\x0e\x46\x43\xce\xf7\xff\xbd\x94\xe1\x7f\xcf\xff\xf5\x3f\xef\xff\xf8\x4f\xe2\x52\xb5\xc4\x85\x4a\x29\x45\xea\x55\xe2\x42\xa5\xc4\x6d\x49\x09\xf2\x9c\x94\xa2\x0f\x29\x85\xf0\x89\x8b\xc2\x52\xaa\x4c\x6a\xd5\x6c\x56\x7e\xdc\x51\x0a\x07\x4d\x4e\x89\xd7\xc3\x41\x93\xb8\xe7\x28\xa7\x58\xc1\x29\x35\xbe\x97\x00\x27\x39\x7d\x7a\x92\x3a\x03\x95\xe4\x14\xbe\x8a\x94\x02\x95\x24\x2e\x3f\xca\x29\x22\x5f\x89\xcb\x8f\x12\x37\x1b\xe5\x5f\xe1\x3b\xc2\x77\x5a\x0f\x15\x9e\xb8\xd2\x28\x71\x97\x51\xe6\xf2\xb7\xc4\x9d\x44\x89\xdb\x81\x32\x01\xc1\x94\x06\xdd\x0c\xbb\x99\x73\xe8\xb3\x94\x06\x0d\x85\x81\xcb\x1c\x4d\x48\xdc\x00\x94\xb8\xa6\xa7\xa4\x84\x9c\x13\xe1\x27\xd3\xf8\xf1\xfa\xa4\xa1\x70\xc0\x17\xee\x35\x4b\x5c\x0f\x93\xb8\x17\x66\x92\x3b\x9a\xb8\x09\x26\x71\xb1\xcb\xdc\xb1\xe2\x52\xba\xac\xa3\x38\xba\x39\xb9\xc6\x35\x71\x33\x4b\x4a\xe1\x02\x9f\xfb\x63\x3c\x1f\x33\xf6\x78\x3d\xf6\x61\x89\xfb\x56\x12\x17\xad\xcc\x9d\x19\xba\xc7\x34\xc6\xee\x71\xee\x00\x9e\x89\xdb\x57\x12\xd7\xae\xcc\x1d\xeb\x2f\x7d\x11\xe1\x4e\x5f\x84\xb6\xe7\x8e\x98\x55\xfa\x62\xa7\x97\xb8\x5a\x65\xee\xd8\x4c\x24\x2e\x53\x49\x5f\x84\x9a\xe7\xee\x3c\x19\x7b\xbb\xc4\x85\x29\x93\xfb\x5b\xd3\x17\x5b\xb5\xf4\x7d\xb4\x1e\x2e\xbc\xf4\x7d\x7a\x9d\x6e\x86\x27\x2f\x71\x7d\x4a\xe2\xa6\x94\x49\x96\x69\xe2\x6e\x94\xc4\xa5\x28\x73\x4f\x9e\x8c\x88\x73\xfa\x32\x0d\x2d\x44\x8a\xc0\x73\xe2\xc2\x94\xb9\x63\xab\x96\xbe\x2c\xfd\x82\x9c\x87\x27\x0b\x75\x16\xea\xbc\x08\x5f\xe8\x7b\xa1\xce\xab\x27\x11\x3e\x36\x52\x13\x6b\x9f\xb8\xb3\x24\x71\x59\xc9\xdc\xe1\xfc\x4e\x5c\x4f\x92\xb8\x97\x64\xee\x47\x37\x8d\x3a\x63\x2b\x34\xd9\x63\xa7\xcf\x90\x33\xf6\x40\xf3\x24\xea\x34\x5e\x8f\x2d\xcd\x04\x26\x27\xae\x12\x49\xdc\x21\x32\xe1\x21\x4c\xdc\x13\x92\xb8\x20\x64\x02\x6d\x12\xd7\x7e\x24\xee\xfb\x98\xa7\xd2\x23\x96\xf6\x17\xaa\x6b\x9e\x4a\x9d\x2c\x74\xee\xf4\x98\x27\x22\x0c\x89\x3b\x3d\x12\xd7\x77\x4c\xf6\xd8\x89\x0b\x3b\xd2\x57\xa9\x33\x0e\x2b\xa5\x2f\xfc\xb2\x89\x0b\x3b\xe6\xe9\xcc\x11\xeb\x9d\x9b\x3a\xe6\xd1\x14\x37\xe4\x6c\x34\xa4\x39\x6a\x34\x14\xcb\x7e\x9e\x8d\x9c\x8d\x86\x62\x85\x4f\x6e\x83\x4d\x1f\xab\x98\x5b\x35\x26\x97\xbb\x26\x6e\xd5\x48\x5c\xa7\x31\xcf\xa3\xf5\x4e\x9d\xb1\xc2\x27\xc8\x2e\x7d\x9d\x3a\x03\xc6\x4f\xf6\xca\x89\x8b\x30\x12\x37\x60\xcc\xfb\xd1\x77\x94\xc0\x17\x4a\x60\xde\x42\xeb\x03\x23\x15\xd8\x78\x72\xb9\x6b\xfa\xd0\x0c\x5c\x84\x31\x39\x98\x94\xb8\x08\x23\x71\xcb\xc5\x84\x87\x30\x71\xaf\x45\xfa\x02\x94\x4e\x0e\x2d\x25\x2e\xad\x48\xdc\x56\x31\x39\x9f\x94\xb8\xad\x22\x7d\x93\x3a\x1d\xe1\x27\x1f\x43\xa0\xc1\x09\x2b\x61\xe2\x7e\x8a\xf4\x2d\x84\xaf\x3c\xb9\x18\x90\x45\x43\x4d\x4f\xd2\xa3\x00\x6f\xf3\x6a\x36\x17\xad\x07\x36\x9b\xec\xe6\x13\x37\x59\x24\xae\xb0\x98\xb7\x23\xd2\xe6\xb3\x09\xbc\x34\xef\xd2\x8f\xcc\x66\x80\x9d\xc9\x06\x3c\x71\xa7\x44\xe2\xfa\x88\x09\x2b\x61\xe2\x8a\x88\xc4\xdd\x10\xf3\x1e\x44\x02\x1e\x70\xf1\xc3\x7c\x9a\x8e\x83\x12\x88\xc8\xe5\x7c\xfa\xe6\x51\x95\x5f\x38\xfd\xe6\x43\x7b\x7f\xa8\x4a\xee\x71\x98\xdc\xdc\x9a\xb8\xb9\x21\x71\x49\xc3\x7c\xc6\xf7\x79\x11\x29\xbc\x76\xf3\x19\xad\x5f\x06\x19\xa5\xfa\x34\xf2\x28\x55\x6e\x59\x98\x0f\xe5\xff\x3d\x1a\x42\xd3\x3e\x8d\x27\x4a\x95\xbb\x13\xe6\xc3\x76\x7c\x8f\xf1\x0c\x35\x3a\xdf\xd2\x93\xd4\xf9\x10\x3e\x3c\x42\x89\x3b\x10\x12\xd7\x1d\x4c\x4e\x39\xa5\x8c\x52\xcd\x28\x55\x8e\x30\x25\xee\x39\x48\x5c\x70\x30\x5f\xec\xea\x12\x97\x18\x24\x6e\x2f\x58\x09\xdb\xc1\x2d\x04\x89\xeb\x07\x96\x4c\x64\x46\xd3\xe6\xd0\xb4\x2b\xa1\x19\x72\x78\xbc\x12\x97\x0a\x2c\xee\x26\x4d\x5c\x07\x90\xb8\x07\x60\xa5\xc6\xeb\xe1\xab\x4a\x24\xf9\xaf\xd4\x7f\xf1\x04\xf0\xe1\xff\x05\x28\x72\x78\xb0\x52\xce\x88\x16\x3e\xa1\x94\xd1\xb8\xdc\x07\xb0\x48\x76\x4d\xb9\x20\x6f\x38\xab\x56\x42\xdf\x73\x2d\x40\xe2\x3e\x80\x95\xa6\x9e\x64\x0c\x42\xb9\x2e\x32\x60\x13\xd7\x02\x24\x6e\x00\x58\x1c\x42\x4a\xe4\xfc\xa7\x6c\x8c\x01\xfa\x3e\x87\xaa\x4d\xdc\x00\xb0\x60\xf1\x4b\xdc\x00\x90\x48\xf6\x5f\x49\xd3\x62\x74\xd7\xe8\x2e\x5a\x87\x9c\xff\x94\x8d\x1e\x1d\x3d\x49\xeb\xce\x10\x62\x2e\x48\xde\x4f\x64\xed\xaf\x0f\x44\x40\xd6\x7e\x22\x5d\x7f\x7d\x09\x91\x9c\x69\x09\x15\xbd\x3e\xf4\x3d\x79\xfa\x89\x04\xfd\xf5\x7d\x7a\x9d\x86\x42\x61\xaf\xef\xe3\xf5\xf0\x41\x25\x92\xf0\x17\xdc\x7c\x89\xb4\xfb\x44\xbe\xfd\xfa\xb2\x9e\x64\xe8\x02\x48\x2e\x0e\x59\xa5\x8c\x16\xcf\xa1\xc5\xd7\x87\x26\xcb\x95\x86\x02\x3a\xae\x0f\x4d\x46\x12\x7e\xca\xa1\xc5\xd7\x67\x3c\x09\x6a\x23\x25\x7f\x7d\xae\x27\xe9\x66\xa3\x9b\x4e\x43\x00\xb4\xdc\x68\x88\xa5\x93\x1b\x0d\x75\x7a\x04\x4c\x20\xfb\x3e\xe5\x4e\x43\xd8\x90\xdc\xa9\x33\xfc\x37\xeb\x0b\x8f\x62\xca\xe1\x4f\x49\xa4\xd6\x2f\xf8\xf7\x52\x1e\x88\x34\x10\xe9\xe8\x47\x06\x79\xf0\xba\xd6\x13\x0a\x9b\xbc\xf9\xf5\x61\x2e\xf2\xa4\xce\x50\xd8\x2b\x27\x84\x47\x61\xe7\x50\xd8\x2b\x6b\xe2\x26\x22\x05\xe8\x5b\x5c\xa2\x9a\xf2\x62\x35\x87\x36\x5e\x24\xb6\x26\x32\xde\x13\xa9\xee\x8b\xfc\xd6\x44\xaa\x7b\xca\xa1\x8d\x57\x46\x0d\xe7\xc5\xc4\x85\x6e\x5e\xb9\xeb\x49\x3e\xc5\xd0\xcd\x8b\x34\xd7\x94\x17\x5f\x48\x68\xe3\x95\x07\xd3\xb1\x69\x7d\xd3\xfa\xe4\xc9\xcd\x80\x6c\x1a\x8a\x8d\x47\x22\x81\x3d\x91\xab\xbe\x72\xec\xd2\x12\x19\xe8\x89\xd4\xf3\x95\x37\xc2\x1f\xa6\x23\xc2\x3a\x2b\xa3\xc5\xc9\x2b\x4f\x24\x94\xaf\x7c\xf4\x24\x83\x7c\xa8\xf3\xa0\xc9\x0e\x83\x1c\xd8\x76\xe5\x4b\x8f\x50\xd8\xe4\x80\x2f\xd2\x63\x13\x39\xe0\x89\x74\xef\x95\x1f\xab\xf8\x52\x67\xe8\xe6\xc5\x7d\xa9\x89\x5c\xee\x94\x1f\x72\x62\xd2\x33\x80\x97\xcc\xee\x05\xd7\x5e\x22\xb3\x3b\x91\x9b\xbd\xb8\x52\x35\x91\x8d\x9d\x48\xbc\x5e\x85\xef\x93\x54\xeb\x44\x8e\xf5\x2a\x71\x8c\x32\x91\x63\x9d\x48\xae\x5e\x25\x82\x12\x89\xe4\xea\x54\x02\x05\x2f\xae\x46\x4d\x64\x55\x27\x52\xa6\x57\xa9\x7a\x32\xc6\x93\x7c\xe8\x05\x91\x5e\x22\x1f\x3a\x91\xfa\xbc\x4a\xec\x2d\x13\xc9\xce\x89\x2c\xe7\xc5\x15\xa7\x89\x4c\xe6\x44\x0a\xf3\x2a\x28\xab\x82\xc2\x2e\x81\x82\x57\xd9\xc8\x99\x91\x33\x53\xe7\xe1\x49\xd4\x6f\x89\x4c\x96\x65\x28\x96\x02\xb6\x2d\x81\x6d\x17\xac\x75\xa9\xa0\x7e\x4b\x60\xdb\x65\xa8\x8b\x82\xfa\x2d\xa8\x5f\x63\x69\x97\x40\xba\x89\xdc\xe5\x65\xe1\x6e\x4b\x25\x94\x71\x22\x85\x79\x71\x48\x2b\x15\xf4\x27\x79\xc6\xcb\xc0\x77\xe4\x12\x27\x92\x88\x97\xb1\x36\x0b\x88\x95\x7c\xe1\x05\xf1\x5b\x2a\xce\xeb\x4e\x43\xe0\x3b\xd2\x7f\x13\x79\xbf\x0b\xca\xb6\x54\x2a\xd3\x81\x02\x74\xb4\x22\xe9\xbf\xa9\x84\x1e\x5c\xdc\xd7\x99\x0a\x3b\x54\x52\x7c\x97\x67\x44\x02\xb1\x92\xbf\xbb\xc8\x53\x4d\x64\xec\xa6\x82\xae\x73\xb4\x62\x41\xd7\x91\xbf\xbb\xdc\xf4\x24\x0d\x05\x62\x5d\x5c\xf7\x99\x4a\xe3\x63\x08\xe0\xba\xdc\x10\xa9\xa9\xa1\x98\x38\x07\x65\x90\x8e\x9b\xc8\xbc\x5d\x0e\xbe\x23\x83\x36\x91\x3a\xbb\x5c\x1f\x03\x88\xb5\x74\x84\x67\xc1\x96\xce\xc8\x87\xef\x79\xf9\xd2\x93\x7c\x75\x68\x45\xc7\x1a\x92\x4f\x9b\xc8\x8f\x5d\x8e\x35\x24\x07\x36\x91\xfc\xba\x1c\xfd\x59\xc0\xb6\xe4\xc0\x2e\x0e\xaf\x25\xf2\x5c\x53\x09\x97\xed\xe2\x16\xce\x44\x82\x6b\x22\xb3\x75\xd5\xac\x1f\x19\x10\xb4\x62\x05\xb5\x91\x9a\x9a\xc8\x49\x5d\x15\xdb\x41\x16\x6a\x22\xfd\x74\xd5\xf1\x77\x40\x51\x80\xb3\x25\x34\xe7\xaa\x18\x7f\x12\x48\x13\x99\xa3\xab\x01\x80\xc8\x1c\x4d\x05\xed\xd8\xd0\xe2\x65\x23\x6f\xf8\xf4\x56\xd3\xb7\x0f\x72\x2d\x68\xc7\xc6\xee\x97\x04\xd2\x44\xe6\xe8\xe2\xcc\x57\x22\x57\x34\x95\x00\xb0\xab\xc5\xb1\xe4\x54\x36\xad\x6f\x5a\xd7\xfc\x1f\xbe\xd3\xd0\x9c\xab\x49\xc1\x1c\x16\x59\xf8\xc5\x56\xd3\x2a\x39\xcc\x40\x68\xce\xd5\x9a\x7e\xa4\xa1\x43\x43\xc0\xaf\x72\x98\x81\x00\xbe\xab\x49\x6d\xa0\x47\xc9\x23\x5d\xe4\x83\x26\xf2\x48\x13\x09\xa4\xab\x01\xbb\x48\x20\x4d\x64\x87\x2e\x6e\xa6\x4c\xe4\x83\x26\x12\x41\x57\x1b\x7a\x92\x1e\x5d\x7a\x04\xec\x22\x03\x34\x91\xec\xb9\x9a\x46\xfe\x31\x1d\x8f\x86\x16\xdd\x44\xb9\x92\xa6\xb9\x1a\x0b\x97\x54\xcc\x44\x0e\xe6\x6a\xa8\x76\x72\x30\x13\xc9\x97\xab\x3d\x3d\x69\xfc\xc8\x74\xa0\xda\xc9\xb3\x4c\xa4\x54\x2e\xae\x9d\x4c\xa4\x4d\x26\xf2\x25\x57\x07\x22\x91\x2f\x99\x48\x8d\x5c\x1d\x65\x40\x6a\x64\x22\x27\x72\x75\x94\x01\x59\x90\x89\xf4\xc7\xc5\x01\xb2\x44\xfa\x63\x22\xef\x71\x41\xef\x96\xc8\x7b\x4c\xe4\x31\x2e\x0e\x90\x25\x72\x15\x13\x49\x8a\x8b\x33\x5f\x89\xb4\xc4\x44\x3e\xe2\xea\x95\x6e\x66\x1a\xca\x34\x54\xf5\x24\x75\x66\x7a\x04\x1a\x32\x74\xb3\xa1\x9b\xc9\x1c\x4d\x16\xaa\x36\x59\x38\x15\x56\xbf\x7a\x92\xd6\x8d\xd6\x41\x2e\x24\xf8\x25\x32\xfb\x16\x97\x34\x26\x03\x9c\x1a\xe0\x94\xf4\xc9\x44\xda\x5e\x22\x5f\x6f\x91\x1b\x99\xc8\xc9\x4b\x24\xe3\x2d\xd2\x20\x93\x39\xad\x03\x4e\x47\xd7\x8f\x0c\x72\xc0\xd1\x35\xf0\xe3\x98\x7c\xb3\xe1\x3f\x58\x23\x02\x70\x89\x2c\xbc\x44\xfa\xdd\x22\x61\x32\x91\x62\x97\xc8\xad\x5b\x30\x96\x25\x72\xeb\x12\x69\x74\x8b\xf4\xc9\x44\xe2\x5c\x22\x63\x6e\x0d\xf0\x88\xa1\x9b\xad\x51\x67\xe4\x18\x24\x92\xe3\x12\x59\x71\x8b\xc3\x57\x89\xac\xb8\x44\x92\xdb\x1a\x87\x29\x06\x72\x92\xb3\xb6\x46\x9c\xe5\x49\x64\xa9\x25\xd2\xd3\xd6\x00\x8f\x90\x9e\x96\xc8\x4b\x5b\xe3\xd1\xf7\x8e\xf0\x1d\x39\xc1\x23\x24\x9d\x25\xb2\xcd\x16\xe4\x66\x89\x8c\xb2\x44\x2a\xd9\xe2\xbc\x54\xb2\x81\x48\x28\xd7\x69\xfa\x91\x2f\x19\xe5\x4a\x4a\x66\x22\x5d\x2c\x59\xe8\xd8\x35\xd9\x98\x91\x27\x96\x48\x10\x5b\xd3\xf5\x24\x1f\x2d\x1a\x97\xb3\x51\x89\xcc\xb0\x44\xa6\xd7\x9a\x15\x39\x27\x0d\x85\x37\x61\x4d\xb4\x8d\xa1\x86\xc9\xf4\x5a\x13\xff\x9d\x01\x63\x2d\x80\xeb\x82\x88\x2c\x91\xe2\x95\x0c\x70\x3a\xd1\x0c\x86\xe3\x80\x84\xaf\x35\xd1\x0c\x24\x7c\x25\xb2\xb9\xd6\xc4\x2b\x47\x36\x57\x22\x8d\x6b\x4d\xb6\xc4\xa4\x63\x25\x43\xfd\x4e\x4d\x1c\x3e\x02\x0b\xdd\xba\xc8\xda\x4c\x24\x4b\x25\xf2\xa2\xd6\xd2\xda\x24\x76\x60\xa8\x4a\x48\xc3\x12\x29\x50\xc9\x80\x9c\x8b\x8d\x2e\xd9\x4e\x89\x34\xa7\xb5\x0c\x91\x70\x07\x18\x5a\x71\x69\xc1\xe2\x0f\x25\xb5\x68\x2d\x2d\xc3\x47\x8f\x1e\x0d\xb1\x1d\x24\xff\x27\x91\xf8\xb3\xa0\xdf\x4a\xa4\xfa\x24\x72\x7c\x16\x2c\x5c\x89\xac\x9e\x44\x3a\xcf\xe2\xec\x50\x22\x9d\x27\x91\xb9\xb3\xb8\x16\x30\x91\x9d\x93\x9c\xad\xfb\x06\xe3\x78\x68\xa9\x44\xce\xcd\x82\xaf\x2b\x91\x73\x93\x1c\x78\x28\x0f\xaf\xe3\x24\x75\xe0\xe1\x06\xe3\x38\x7a\xc9\x33\x75\x82\x71\x48\xc4\x49\xce\x26\x7f\x17\x3d\xd9\xf9\x91\x86\x4c\x4f\xd2\x50\xa6\x21\x6c\x9c\xc7\xae\x3e\x79\xa6\x21\x7c\x58\xa4\xec\x24\x72\x75\xd6\x76\xfd\x88\xf0\x6c\xee\x21\xf1\x4a\x24\xf0\x24\x32\x77\xd6\xee\xf4\x08\x5d\x47\x92\xce\xda\x43\x4f\xd2\x23\x74\xdd\x66\xa3\x43\xce\x4d\x22\x87\x66\xc9\x41\xec\x78\x4e\xdd\xe8\xd1\x6c\x7f\x05\x14\x8e\xca\x74\x54\x26\xd1\xfe\x44\x2a\x4e\x22\xeb\x66\x6d\xf0\x13\x59\x37\xc9\xd9\xf9\x6f\x94\x16\xe9\x36\x89\x3c\x9b\xb5\xb7\x7e\xe4\xa3\x60\xe7\xbf\xc1\x4f\x0e\x9c\x75\xf4\xe8\x46\x97\x38\x7a\x94\x94\x9a\xb5\x1f\x63\x80\x03\x96\x5c\x9a\x45\xf8\x2d\x91\x3d\x93\x48\x94\x59\x47\x53\x5d\xf5\x7a\xcc\xc0\x41\x97\x38\xda\xd1\x41\xae\xc7\xf5\x23\xdd\x44\x3b\x1e\xf6\x21\x64\xb3\x24\x52\x55\xd6\xe9\x8c\x2b\xda\x91\x1c\x95\x45\x96\x69\xf2\x4e\x37\x51\x99\x67\xd0\x3a\xbe\x56\x0f\xcd\xb9\x4e\xa4\x3e\x26\x67\x97\x4e\x52\xcb\x92\xa7\x97\xe4\x94\xe4\x68\xc7\xc3\xe6\xc4\xd9\x90\x3b\x1b\xf2\x8b\xca\x24\x39\x25\x91\x95\xb2\x2e\xeb\xde\x07\xaf\x87\x3e\x5c\x57\x0b\x82\xd8\x9f\xa3\x1d\x2f\x0e\x2e\x9f\x7c\x68\xa1\x0f\x17\x04\x5c\x89\x74\x94\x44\x1e\xca\xe2\xc8\x40\x22\xf3\x24\x91\x72\xb2\x2e\x1a\x97\x24\x93\xe4\x28\xc2\x0b\x6a\x73\x14\xa1\x03\x39\x2f\x1b\x1e\xc7\x83\x4a\x1e\xca\xba\x40\x39\x32\x4f\x12\x69\x25\xeb\x56\x3d\xc9\x67\x83\x22\xbc\x4d\x4f\xd2\x50\x6c\xd6\xd7\xc5\xc7\xee\x80\x53\x72\x4d\x96\xbc\xb2\x0e\x0e\x25\xc9\x64\xc9\x01\x4b\x92\x49\x72\x70\x28\x47\xad\x92\x83\x43\x49\x39\x59\x9c\xb1\x4a\xa4\x95\x24\xf2\x49\xd6\x95\xd2\x22\x30\xeb\x6c\xdd\x2f\x3e\x2c\x12\x49\x12\x39\x23\xeb\xb2\x07\x23\x13\x24\x91\x02\xb2\x9e\x94\xd6\xa5\xce\x50\xa7\xeb\x7d\xfa\x91\x8f\x16\xc8\xf9\xa4\x9f\x80\x9c\x64\x74\xac\x27\x5d\x72\x11\x3e\x90\xe7\x7a\xae\x1f\x19\x10\xf6\xf3\x4f\xcb\xf0\x31\x20\xb1\xad\x5f\x4f\x8b\x8b\xfd\xbc\x87\xaf\x75\x3d\x7d\x4b\x28\x6c\x47\x61\x3f\x76\x95\x64\x61\x24\xd2\x2f\x36\xa9\x8f\xa9\x82\x2e\x6b\x6c\xdd\x37\x99\x8c\x89\x2c\x8c\x44\xfa\xc5\x26\xa1\x31\x91\x62\x91\xc8\xad\xd8\x69\xaa\xce\xcb\x8f\x8f\x1f\x63\xe4\x2b\x0a\x9b\x4c\x8b\x2d\xe7\x23\x99\x16\x89\x14\x8b\x9d\x50\x17\xa4\x58\xa4\x1a\x78\x72\xa7\xa5\xd7\x07\x3f\xce\xf8\x31\x0e\xb2\xa5\xca\xce\x9f\xbc\x8b\x9d\x00\x3e\x95\x9d\x7f\xfd\x68\x1d\xc5\x42\xfa\x45\x22\xef\x62\x27\xec\x67\x45\xdf\xd7\xd0\xf7\x3b\x01\x7c\x6a\x00\xd0\x54\x43\xed\xef\x84\x23\xa6\x66\x5a\xcf\xb4\xfe\xf4\x23\x0d\x85\x6a\xdf\x1f\x6b\xb3\x12\xff\x22\xa9\x62\x43\xd6\x94\x48\xaa\x48\x64\x53\xec\x0f\xbd\x44\x36\x45\x22\x8d\x62\x7f\x91\xa8\x91\x2a\x5a\xbc\x86\x8f\x60\x7f\x59\xaf\xc7\xbc\xd7\xf0\xdb\xee\x8f\xbd\x17\x49\x15\x89\x6c\x8a\x4d\xe4\x3f\x55\x54\x7b\x0d\xd5\xbe\xbf\xa2\x27\x99\xb8\xd0\xde\x9b\xcc\xd0\x44\xa6\x45\x22\xa9\x62\x7f\x2c\x6d\xd2\x28\x12\xf9\x13\x5b\x1e\x49\x72\x24\x12\xc9\x11\x9b\x4b\x03\x53\xc5\x6f\x5b\xc3\x53\xbb\x3f\x56\x71\x05\x1a\x93\x38\xb1\x3f\x56\x71\x05\x1a\x57\xff\x3f\x84\xdd\x5d\xf2\x84\x2a\xb2\x04\xf0\x2d\x09\x08\xe2\x72\xf8\x90\xfd\x2f\xe1\xc6\xe1\x47\x4f\x9c\x79\xb8\xf3\x7f\x6c\xa3\x15\x44\x48\xaa\xb2\x8a\x2c\x0d\xd5\x73\x51\x43\xdb\x18\x1e\xc1\x82\x75\x38\xe2\x2a\x45\x43\xf0\xd3\x19\x89\xcb\xe1\x88\x11\xde\xf3\x4f\x9d\xdf\x38\x3f\x02\x0b\xcb\x09\x86\xcb\xd1\x85\x11\x2c\x58\x07\x12\x2e\x27\x11\x46\x10\x0b\x28\x0c\x5e\x07\x12\x46\xe0\x66\x39\x90\x70\x95\xc7\xc8\x73\xb3\x9c\x44\xb8\x1c\x41\x18\xf1\x3a\x17\x0d\xf2\x46\xef\x41\x12\xf0\x2a\x0c\xde\xb2\xc3\x67\xc3\xc9\xd2\xab\x20\x23\xca\x26\x23\x86\xca\x4f\x97\xf3\x05\x97\x83\x05\xc3\x39\xd3\xcb\xe1\x81\xcb\xa9\x81\x11\xad\x77\x27\x03\x2e\x47\x02\x46\xe4\x12\x39\x12\x70\x49\xf8\x1f\x0e\x98\x5e\x92\xfa\x2f\xd9\xfc\x23\xe2\x82\xe5\xe8\x5f\xa5\xe9\x52\xf3\xe1\x40\xba\xac\xfc\x11\xd9\xa1\xf2\xf0\x2f\x09\xf8\xc3\xe1\xd3\x4b\x92\xfd\x55\xba\x2e\xb1\xef\x0a\x48\x2f\xdd\xbb\x1f\x0c\x01\xe9\xa5\xeb\xe7\x97\xfe\x34\x28\x8a\x88\x99\xec\xfc\x71\x88\x4d\xd9\xf9\x97\x44\xfc\x11\x45\x89\x25\xe2\x5f\x65\xe8\x05\xdb\xb1\x0c\xbd\x18\x7a\xc1\x22\x28\x36\x81\xb2\x37\x81\x71\xd8\xce\x62\x13\x90\xc0\x3f\x48\x0a\x5e\x12\xf8\x2f\x99\xfb\x23\x9d\xaf\x3a\x8c\xeb\x26\x75\xc7\xa1\x40\x25\xe9\x5f\xb2\xf3\x47\xe2\x12\xcb\xce\xbf\xa4\xe5\x8f\x74\xbe\x2a\x86\xa2\xec\x0d\x62\x24\xb6\xa3\xec\xfc\xab\x4c\xad\x1f\x70\x9d\x5e\xf3\xd3\x10\x9f\x56\x06\xfe\x25\xf5\x7e\xa4\xf3\x55\x3f\xef\xbe\xb7\x8b\x91\x58\x84\x05\xa9\x2b\x15\x7e\xa4\x83\x64\x36\x01\x19\xf1\xc3\x89\xd6\xab\xd8\x04\xca\xd2\xcf\xef\xfc\xd3\x28\xed\xb8\xdb\x48\x90\x4c\x86\xfa\xf5\x6c\xd8\x1f\x24\x05\x2f\xc9\xe8\xd7\x03\xef\xef\x72\xfe\x39\x5c\xdc\x43\x77\xf3\x7e\x25\x8e\x5f\x0f\x6c\xbe\x2d\x32\x39\xe2\x97\x74\xf0\x71\xfb\x1c\x0f\x63\xfa\xd9\xc6\xf4\xc8\x86\x4e\xe6\xf7\x25\xe5\x7b\x64\x14\x83\x24\xef\x4b\x76\xf7\xc8\xe9\xfc\x73\xba\xb8\x5c\xf4\x4f\xc6\xb4\xcc\xef\x91\x59\x2e\x32\xbf\x2f\xa9\xdb\x23\xc3\xbc\x07\xe2\xca\xe0\x1e\x99\xaf\x28\x4d\xfb\x7a\xb6\xdd\x3c\x32\xcb\xe5\xb9\x3d\x73\x63\xec\x38\x24\xa4\xc4\xec\x4b\x46\xf6\x50\x88\xe8\x7a\x80\xab\x54\xec\x91\x9f\x73\xb1\xb9\xa8\xf3\x2c\x17\x59\xd7\xd7\xb3\x31\x76\x64\x9f\x58\x82\xf5\x25\xb3\x7a\x50\xd2\xbb\x64\x56\x5f\x0f\x70\xcd\x2c\x97\x47\xfc\xeb\xc9\x1a\x62\xdf\x3f\xe2\x5f\x4f\xf6\xcc\x76\x6e\xdf\x13\xec\x01\xae\x0a\x18\x5d\x32\xb2\x2f\x09\xd6\x23\xf3\x2a\x25\x58\x5f\x4f\x71\x3b\xe6\x5c\xf6\xf4\x25\x6d\x7a\xa8\x63\x74\x49\x8d\xbe\xe4\x44\x0f\x47\x6e\x2f\x39\xd1\x97\xf4\xe7\x91\x59\x43\x0f\x7b\x59\x16\xf4\xc8\x88\x2d\x99\xce\x97\x14\xe7\x91\x77\xe2\xe6\x25\xc5\xf9\x92\x8f\x3c\xf2\x3a\xff\xf4\xcc\x8d\x9c\xa3\xec\x64\xbb\x4b\x1a\xf1\x25\x77\x78\x14\x14\xbd\xbc\xe1\x4b\xb2\xf0\x20\xee\x77\x49\x14\xbe\xe4\x02\x8f\xc2\xc2\x92\x07\x7c\x49\xf5\x1d\xce\x04\x5f\x92\x7a\x2f\x19\xb8\xa3\x9c\x59\x07\x5c\x25\xd8\x8e\x92\xbc\x11\x36\x41\x6e\xec\x28\x0c\x34\x19\xae\x97\xb4\xd6\x51\xf2\xb9\xe8\xdd\x9b\x67\x9e\x09\xc6\x5e\x96\x94\x3a\xca\x99\x4b\xd2\x10\xe4\x9c\x0e\x47\x8a\x2f\xf9\xa6\x97\x94\xd2\x41\x30\xf0\x92\x4e\x7a\xc9\x21\x1d\x94\x02\x2f\xb9\xa1\x97\x84\xd0\x51\xea\xb9\x68\x94\x36\x8c\x0e\x2a\x82\x97\xdc\xce\x4b\x32\xe7\x28\x7c\x45\x89\x99\x97\x4c\xcc\xe1\x80\xf1\x25\xab\xf2\x92\x46\x39\x9c\x2c\xbe\x24\x4a\x5e\xb2\x1d\x47\x11\x9e\x90\xe5\x78\x3d\xdb\x5e\x1e\xa4\x05\xaf\x93\xba\xf8\x40\xc5\xc2\x0e\x3d\x39\x8b\xcf\x34\x4a\xf3\x5c\xf4\xcc\x69\x94\x80\xd5\xc3\x88\x7e\xa6\xce\x03\xab\x07\x19\xf1\x7c\x46\x69\x9d\x8b\xa6\xe2\xb6\x97\xc7\xe1\xac\x1f\xf6\xf2\xb3\xed\xe5\xe1\x40\xf3\xf5\x7c\xc0\x6a\x23\xe6\x78\x82\xce\x33\xa2\x1f\xf8\xf9\x60\xe3\x1f\x41\xb1\x67\x33\xb5\xe3\x49\xe7\xa2\x01\xd9\xb9\x09\xe3\x39\xa8\x88\xb7\x7d\x36\x6f\x3b\x0e\x91\x5d\xf1\xb6\x75\xc3\xe8\x70\xa2\xf9\xaa\x8c\xe8\x7a\xe9\xd2\x4e\xbf\xbc\x2a\xd3\xb8\x32\x8d\x9d\x53\xbe\x2a\xd3\xb8\x6e\xe2\x75\x3c\xfb\xc0\xc1\x55\xe5\x26\xd4\xa0\x4b\x90\xb6\x32\x8d\x25\x7f\x8e\xe7\x39\xff\x6c\x2e\xee\xc9\x70\x28\xef\x8a\xe0\xa8\xe0\xf7\xe1\xb6\x56\x59\x60\x35\xea\x27\xb4\xa9\x88\xd7\xba\xed\xde\xf1\x30\xf6\xeb\x46\xe8\xab\xc2\xe4\xc3\x83\x57\x98\x5c\x61\xb2\xd2\x4c\x57\x85\xc9\x35\x69\xa8\x69\x1d\x26\x57\x98\xec\xb0\xf4\x55\x11\x1c\x75\x13\x1c\xe3\xe9\xe7\xa2\x86\x92\x86\x18\xfb\x55\xf8\xac\x26\x43\x37\xea\x9f\x06\x45\x95\xb0\x50\x19\xbe\x95\x2d\x5e\x37\x28\x5f\x75\x03\xef\x38\x7c\x78\x65\xe3\x56\x36\x6e\x15\xa2\xa9\xd9\x17\x00\xc3\xd5\xe6\x5f\xc1\x70\xdd\x0c\xc5\xa8\x4c\xf9\x0a\x86\x2b\x18\xae\xf1\x5c\x1c\x2e\x6a\xc8\x66\x55\x21\x6e\xdd\x56\xed\xa8\xf7\xb9\xe8\xab\x16\xcf\x64\x76\x57\x69\x08\x75\xa3\xf1\xa8\xf6\x90\x2a\x25\xb4\x16\xcf\xac\xe7\xe2\x9e\xbc\x75\xe7\x89\x8e\xba\x53\x6c\xaf\x8a\xcb\xa8\x0c\xdf\x6a\xdd\x57\xe6\x6c\x65\xce\xd6\x33\xd8\x68\x8b\xba\xd1\x78\x54\x78\x5f\xab\x2e\x55\xb7\xcf\x73\x51\x97\xaa\x2e\xc1\xfb\xca\x9c\xad\xcc\xd9\x0a\xb0\x6b\x35\x9e\x60\x98\x76\xe2\x55\xc1\x70\xdd\xd1\xb4\x41\x34\xf1\xaa\x10\xb7\x6e\x2e\x63\x38\xbd\x7c\x55\x5c\x46\x05\xc3\xd4\x08\xaf\x8a\xcb\xa8\x60\xf8\x85\x8e\x15\x6d\x51\x37\x6d\x31\x5e\x98\x57\x45\xcc\xea\x06\xde\xf1\xbe\xe7\xa2\xdb\x21\xee\x0b\x9f\x2a\xc4\xad\x10\xf7\x95\xbd\x52\x25\x17\x54\x88\xfb\xce\xf3\x4f\xef\xce\x9c\x7d\xa7\xc9\xc0\x62\xad\x5d\x3f\xf7\x01\x93\xab\x76\xef\x0e\x71\x5f\xf0\x56\x25\x17\xd4\xa1\xa1\x7d\x36\xf2\xaa\xf8\xdb\x3a\x34\xf4\x9d\x7f\x6a\x68\xdb\xa8\xe3\x65\xf0\x56\x88\x5b\xb7\x8d\x3a\x9c\x65\xbe\x2a\xc4\xad\x8c\xd3\xc6\x8c\xad\x68\x8b\xba\x6d\xd4\xe1\x64\xf3\x55\x21\x6e\x85\xb8\xed\x40\x11\xa6\xb7\x6e\x8c\x1d\x2d\x9f\x8b\x9e\xb9\x2d\xcf\xd1\xc4\x54\x2b\xa6\xb7\xee\x74\x82\xd1\xce\xb4\x01\xae\x15\xb8\xb6\x61\x40\x80\x6b\xdd\x61\xb0\xd1\xc6\xf9\xa7\x67\x2e\xcf\x9c\x30\x8f\x71\x5a\x19\xa7\x87\xbb\xae\x70\xb4\xc2\xd1\x0e\x86\x5f\x76\xe8\xcb\x0e\x75\xa4\xf6\x7a\x45\xb5\xde\x6d\x8e\x0e\xa7\x67\xaf\x97\x1d\xfa\xb2\x43\xbb\x5d\xf1\x05\x99\x2f\xc8\x74\x62\xf5\x7a\x85\xa5\x5e\x90\xe9\xc8\xe9\xf5\x22\x0e\x5e\x90\xe9\xe4\xe9\xf5\x82\xcc\x77\x1b\xae\x63\x58\xef\x2f\xe2\xe0\x45\x1c\x8c\x2d\xae\x70\xbd\x88\x83\x17\x64\x0e\xae\xfb\x8b\x23\x78\x71\x04\x27\x15\xf8\x05\x99\x2f\x8b\xd5\x09\x91\xeb\x4d\x9e\x99\x3c\x93\xc5\xfa\x22\x0e\xde\xe4\x99\xf9\x5c\x2c\x2e\x56\x17\x1f\x17\xf7\x20\xbf\x2c\x56\x82\x7e\xd7\x8b\x0e\x78\xd1\x01\x27\xeb\xf7\x85\x8a\x2f\x54\x1c\x9c\xbd\x97\xc5\xfa\xb2\x58\x07\xf3\xf0\xbd\x8d\x27\xa8\x1c\xe3\x5c\xd4\x50\xd6\xd0\x16\x49\xb8\x5e\xa8\xf8\x42\xc5\x81\x1f\x71\x8e\xe0\x72\x80\x60\x38\x7a\x71\x39\x24\x70\x39\x1d\x30\x26\x03\xcd\x09\x80\xeb\xe5\xe4\x1f\x8a\x56\x62\xfe\x25\x23\x7f\x9c\x14\xdb\x17\xac\xbd\xec\x50\x07\xd3\xae\x97\x1d\xfa\xb2\x43\x9d\x5a\xba\x5e\x39\x53\x2f\x93\x73\x9a\x8a\x2f\x58\x7b\xc1\xda\x49\x72\x7d\xc1\xda\x0b\xd6\x3e\x60\xf5\xb2\x2e\x5f\xd6\xe5\x77\xa6\x22\x2f\xfd\xe5\xa5\x1f\x92\xf4\x95\x1d\xf0\xb2\x2e\x4f\x92\xeb\x2b\x3b\xe0\x7d\x3d\xf3\xcc\x4f\xae\xfb\x0b\xd6\x4e\x42\xea\xcb\xba\x7c\xb9\xee\x27\x21\xf5\x15\xc0\x7a\xb9\xee\x9f\xcd\xff\x85\x75\x2f\xac\xfb\x6c\xfe\xaf\x58\xd5\xbb\x2d\xcf\x71\xa8\xcf\x17\x00\xbe\x00\xf0\x24\xa4\xbe\x4d\x43\x4d\x43\xb6\xf4\x17\x00\xbe\x00\xf0\x6b\xe7\xa2\xaf\x09\x00\x3f\xbb\xf7\xdb\x35\xd4\x35\x64\xf7\x7e\x59\x97\x2f\x97\xfd\x3b\xdf\x9d\x75\xf9\xb2\x2e\x3f\x7e\xfc\x8b\xa2\x7d\x01\xe0\xb7\xce\x3f\x35\x04\x00\x3f\x01\xc1\x97\xc9\xf9\x32\x39\x97\x5d\xfb\xe5\x9d\xbf\xbc\x73\xc7\x44\xaf\x97\x77\xfe\x02\xc0\x75\x16\x2c\x00\x7c\xd9\xa1\x87\x63\x7d\xa7\x19\xb2\xfd\xf1\x71\xd2\x61\x5f\xbc\xed\x0b\x15\xf7\xa1\xd1\x3f\x0c\x8a\x57\x3e\xd6\xcb\x48\x5d\x67\x39\x82\xcc\x97\xeb\xbe\xc4\x15\x5f\xae\xfb\xcb\x75\x3f\x19\xb0\xaf\x24\xad\x77\xdb\xaa\x63\xd9\xd2\x5f\x40\xf8\x02\xc2\xf5\x9d\x8b\xfa\xbb\xf4\x77\x9d\x8b\xbe\xea\x8e\xa6\x0d\xa2\x7a\x57\x63\x50\xb6\xcd\xca\x4e\xaa\x78\x57\xe3\xa5\xb7\xed\xa5\xcf\x93\xad\xda\x18\x94\x6d\x07\xf4\x27\x05\xbb\xab\x09\x8e\xb5\x6d\x42\xce\x93\xad\xda\xd8\x8e\x6d\xe3\xe1\xbc\xda\xb9\xfd\x73\x71\x1f\xac\xbb\x20\x44\x03\x84\x6d\x43\xdf\xbc\x78\x02\xcd\x09\x82\xb6\x4d\xc8\x79\xd9\x69\x1b\x27\xbf\x6d\xb7\x7e\x9e\x3c\xd1\x06\x1d\xdb\x46\xc7\x79\xf2\x44\x1b\x74\x6c\xdb\x84\x9c\x97\x9d\xb6\xa1\x55\x5b\xd4\xba\x4d\xb5\x6d\x4b\xf2\x6a\xdb\xad\x9f\xd7\x77\x2e\x1a\x90\xe4\x8d\xec\x9f\x8d\xed\xd8\xb6\xed\x38\xd5\x4d\xb9\x1a\x27\xbf\x6d\xe4\x9c\xca\xa7\x5c\xed\xf6\x46\xdb\xd7\x9f\x27\x7d\xb3\x89\x98\xb5\x8d\xa3\x53\x09\xfd\xab\xc1\xd1\xb6\xd9\xd5\x19\x6c\xaa\x8d\x75\xd9\xb6\xaf\x3f\x83\x4d\xb5\x09\x75\xb5\xed\xd6\xcf\x60\x8d\x36\x99\x5b\x2d\xbb\xdd\xca\x6b\x0c\xc9\xb6\x91\x73\x86\x66\x94\xc4\xbf\x5a\xd6\x79\x3e\x58\x13\xd5\x6a\x9b\xf4\x9c\xd1\x8c\x6e\xa2\x5a\x6d\x1b\x84\x33\x72\x4e\x1a\x74\x6c\x1b\x1d\x67\x64\x33\x36\x6c\x67\xdb\x7e\xf9\x3c\x69\x91\x8d\xef\xdd\x9c\x29\x8e\xe8\x80\x26\xbc\xdf\x1c\x19\x8e\x6c\xf1\xc6\x21\x6f\x4e\x04\x9f\x64\xc7\x06\x1d\x9b\x63\xb9\x27\x5b\xb1\x41\xc7\xe6\x1c\x6e\x34\x93\x9b\x73\x01\xcd\xa1\x5a\x3a\x73\x57\x83\x8e\xcd\x79\xd8\x43\xc0\xb5\x8d\x95\x57\x73\x00\xf6\x24\x26\x36\x96\x60\x73\xe2\xf5\xb0\x72\x0d\xdb\xd9\x1c\x68\x4d\x36\xea\xc6\x4b\x6f\xce\xab\x26\x04\x6c\xdb\xc1\xfe\xab\x39\xa0\x7a\xf8\xbb\xc6\x75\x6f\x4e\xa4\x1e\xfe\xae\xe1\x45\x9b\x03\xa7\x29\x9e\xdb\x0d\xb2\x13\xa6\xc9\x96\xde\x90\xa5\xcd\x01\xd2\x64\x4b\x6f\x52\x57\x9b\x13\xa3\xe9\x2c\x43\x64\x69\x73\x20\xf4\x90\x7a\x4d\x96\x6a\x73\xba\x33\xd5\x73\x51\xeb\xdd\xbb\x63\x7c\x1a\x70\x6d\x1b\x5c\x67\xb2\xcf\x37\x38\xda\xb6\x3d\x39\xd5\x25\xb9\x1a\x1c\x6d\x1b\x47\x67\x3a\x0b\x16\x8e\xb6\xe1\x8d\xc6\xb9\xe8\x8d\x86\x37\x3a\x5f\x93\xeb\xde\xa6\xa1\x3b\x8b\x8b\x21\xd9\xa6\x51\x3a\x10\xc4\x4b\x6f\x1b\x07\xe7\x6d\x9f\x6f\x72\x4f\xdb\xce\x0e\x98\xf7\x73\x2e\x5a\xda\xdb\x4a\x9c\xf7\xe3\x8d\x70\x97\xed\x73\x3b\x13\xbe\xcb\x6f\xea\xdb\xf6\x9b\x27\x5b\xb1\x83\xb5\x0e\xd6\xb2\xe9\xdd\x19\x7d\x7d\x1b\x7d\x33\xdf\xe7\xe2\x7e\x66\xdf\x90\x37\xb3\x84\x85\x2e\x95\xa9\x6f\x8f\x7a\x66\x7b\x72\x07\x80\x1d\x00\x2a\x1d\x7e\x75\x19\xa5\x7d\x5b\x89\x33\x97\xf3\x4f\x0d\x6d\x1c\x9c\x87\xbf\xeb\x00\xb0\x6f\x4b\x70\x66\x4b\xbb\xb3\x04\x7b\xd4\x79\xdb\x6f\xe7\x51\xf7\xa8\x21\xbe\x77\xc7\x72\xf6\xe8\x8d\x7c\xe2\x2e\xcb\xbf\x27\x9d\xf7\x39\x3a\x58\xeb\x60\x2d\x0b\x64\x74\x21\xa4\xbe\xd1\x6d\x1e\x02\xae\x23\x34\x7b\x32\x20\x08\xb8\x0e\xd6\x3a\x58\xcb\xb6\xdf\x0e\xd6\x3a\x58\xcb\xb6\xdf\x0e\xd6\xfa\x36\x0f\xa7\xea\xe2\x57\xc7\x5d\xf6\x9d\xd0\x3f\x4f\x0a\x63\x67\x1e\xf6\xed\x3b\xcf\x62\x19\x76\x11\xfc\xbe\x0d\xc2\x59\xac\x8e\x0e\xd6\x3a\x58\x2b\xf7\xb9\x38\x5d\x74\xbb\xcd\xb4\x0b\xf7\xf4\xe2\x76\x21\xa4\x2e\xdc\xd3\x77\xb8\x67\x16\xfb\x66\x17\xee\xe9\x45\x97\x2c\x99\xee\x0c\x54\xdf\x1c\xe4\x2c\xa6\x77\x87\x75\x1d\xd6\x1d\x12\xaa\x33\x0f\xfb\x36\x0f\x67\xb1\xf5\x74\x69\xa6\x7d\xbb\xc2\xb3\xd8\x7a\x3a\xac\xeb\xb0\xae\x98\xf3\x9d\x79\xd8\x09\x17\x3c\xac\x8c\xce\xc1\xed\x54\x08\x76\x8e\xe4\x1f\x06\x45\x97\xe7\xd4\xe9\x0d\xa8\xd4\x7d\x75\xde\x6f\x27\x03\xf0\x70\x89\x3b\xcc\xeb\x4e\xf0\x3f\x5b\x98\xf0\xea\xe0\xad\x3b\xa0\x7f\xd2\x22\x3b\xd0\xea\x40\xeb\x64\x40\x76\xde\x6f\x77\x08\xfe\x39\x8b\x0c\x3e\x75\xf8\x44\xe7\xee\xea\xbc\xdf\x0e\x9f\x9e\xd7\x8c\x16\xcc\xe9\xce\x2c\x77\x80\xdd\x39\xba\xbd\xff\xfb\xcc\x6b\x87\x4f\x9d\xbf\xab\x1a\xdc\xd5\x19\x7f\x7d\x38\x56\x89\x56\xed\x40\xab\x9f\xd3\xcd\x5b\xfd\xec\xea\x00\xa6\xcf\x73\x4c\x75\xba\xa8\xf3\x5f\xf8\xd7\xf1\xd6\x8e\x06\xec\x5f\xfa\xd7\xf1\xd6\x2e\x38\xd2\xb7\xa1\xf5\x3b\xde\xda\x71\x83\xfd\x73\x3a\x36\x9e\xdb\xad\x92\x0d\x45\xbf\xf3\xa9\x7d\xf9\x80\xdb\x24\xfb\x9d\x4f\xed\x68\xc0\x7e\x0e\x83\x3a\x86\xdb\xd1\x80\xfd\x9c\xfb\xdc\xda\x43\x57\xe7\xbe\xf6\xe5\x28\xaa\x4c\xdd\x21\x9a\x3d\xce\xc1\xcd\x2d\xe0\x77\x0d\x26\xd2\xd8\x98\xd0\xd4\x9e\xbc\x06\x30\x18\xd1\x49\x41\x8e\xd9\x90\x3f\x34\xb6\x51\xd4\x26\x14\x1f\x48\xb3\x91\x9c\x18\xdb\xda\x43\xd7\x70\x74\x72\x38\x3a\xf9\xd9\xd6\x86\xd5\x3c\x6e\xff\xdc\x4a\xf2\xd7\x40\x6c\x8d\xec\x5c\xdd\x38\x17\xf5\x33\x3b\xee\x86\x80\x1d\xe2\xb4\x23\x3b\xdd\xc5\x35\x1a\x96\xe3\x70\xcc\x51\xa9\xc5\x6b\x88\x1a\x0c\xc7\x1c\xe9\xa3\x5c\xc3\x1a\x1d\xc5\x29\xb4\xe7\xdc\xfe\xb9\xe8\x20\x97\x88\xee\xd8\xe4\xd5\x35\xb6\x7b\xd7\x56\x3b\x17\x8d\xd2\xe6\xb0\xda\xe2\x72\x0c\xab\x79\x3c\x9e\xc9\xca\x18\x8c\x94\x21\x07\xf1\x82\x3a\xa3\x1a\x10\xe9\x86\x17\x2c\x19\x3c\xab\xe1\x88\x4a\x30\x69\x07\xdb\x61\x48\xc6\x0e\x36\x96\xc1\xb3\x1a\x92\x5f\xc2\xd6\x29\xbc\x86\xc5\x35\x24\xbf\x04\x49\x6f\x83\x45\x30\xf6\x1a\xeb\x81\x65\x3d\x24\xbf\x0c\x87\x59\xc2\xe3\xbb\x5b\x71\xc3\x61\x96\xb0\x25\x96\xae\x61\xa3\x1e\xe7\x38\x89\xb4\xb3\x21\x46\x39\x86\x73\x2b\x2c\xd6\x41\x25\x60\x4c\xe7\x6b\xd8\xa1\xc3\x19\x93\x71\xce\x98\xd8\x00\x87\x44\x95\x71\xce\x98\xd8\x00\x87\x8d\x7a\xc8\x49\x51\x00\xee\x1a\x56\xc7\x38\x27\x47\x60\xde\x30\xe7\xc7\x39\x0f\xc2\xba\x9c\xdb\xc7\xb8\xa6\xf4\xe2\xf4\x9e\x8b\xcd\xc5\xdd\xcf\xc4\x66\x9c\xb6\xdf\x79\x9d\x73\x16\x1b\xac\xa6\x85\x30\x25\x0d\xa7\xad\x9d\x71\x4d\x3b\xed\x3c\x67\x37\x98\x87\x53\xe8\x70\x06\xcf\x14\x8a\x9f\x88\x98\x19\x1c\x94\xb8\xce\xc5\x8d\x0c\x53\x26\xf1\xcd\x66\x9c\x5c\x8d\x29\x39\xef\x66\x8b\x4d\x8b\x6b\x4a\xce\xbb\xd9\x62\x93\x03\x31\x93\x23\x15\xb6\xf4\x69\xa7\x9d\xe7\x40\x07\xfc\x9c\x1c\x88\x79\xce\x6e\xd8\xa8\xa7\xbc\x8c\x79\xce\x6e\x80\xca\x89\x49\x99\xd2\xe2\x32\x6b\x68\xe2\x97\x67\x3e\x07\x25\xf6\x5c\x9a\x56\xdc\xdc\x1e\x40\xcf\xe6\xe7\x94\x0a\x3c\x9d\x53\xcb\x42\x1e\xd3\x3a\x9a\x52\xd8\x8a\x43\xea\x53\x48\x6e\xee\x95\xd3\x8b\x4f\x3c\xf1\x23\x53\x0a\x1b\xc5\xda\x6b\xf2\x00\xa6\x33\x65\xc5\xda\x9c\xe2\x74\x53\x5e\x1b\x8d\xda\x6b\x5a\x5c\x73\x6f\x8e\xbd\xc8\x67\x9d\x58\xe3\x29\xd9\xad\x70\x20\xa6\x15\x37\xad\xb8\xe2\x28\xcd\xb4\x55\x4e\x07\xcd\xca\x3c\x17\x3d\xb3\xea\xbc\x05\x3b\xad\xcd\x69\x6d\x9e\xc8\xce\xdc\x39\x0d\xd7\x94\xc2\xf6\x40\x86\x69\xe3\x9b\x52\xd8\x14\x55\xba\xa6\xb5\x39\xad\x4d\xea\xa6\xd7\xb4\xc7\x4d\x39\x68\x15\xfc\x4e\xe6\xf6\x94\x6e\x56\x1f\x53\xd1\x76\x36\xe5\xdd\x56\xbb\xe1\x14\x3e\x9b\x72\xd0\x0e\x63\x3e\xed\x71\x73\xef\x71\xbd\x9e\x4f\x2c\x5f\x6c\xca\x17\x7b\xaf\x73\x51\xeb\xce\x7f\xbd\x2c\xd6\x69\x73\x9b\x96\xe1\x6b\x15\x4f\x59\x01\x73\x9e\x5c\x73\xaf\x89\x1b\x98\xdf\xc9\xf6\xf6\x4f\x67\x5e\xa7\xc3\x56\xed\x3f\xea\x62\xff\xbf\x41\xf1\xc9\xdc\xfa\x2e\x99\xcf\x86\xf0\xc3\xa0\x7e\x52\x6d\x9b\x85\xfb\x31\xa6\x3f\xe7\x02\x9a\x93\x6d\x9f\x85\xfb\x59\xb8\xcd\x57\xfd\x10\x07\xdf\x36\x9f\x7b\xc3\xa0\x7e\x32\xa2\xbe\xbd\xd6\x7a\xb7\x4a\x3e\x01\xa2\xcf\x22\x53\x5f\xe5\xfa\x1c\xa5\xfa\x1c\xa5\xea\xa7\x75\xfb\xd2\xe7\x2c\x29\xd5\xbd\xeb\x43\x2d\x7e\x56\xc9\x80\x25\x9f\xfc\xa1\x4f\x6a\xfd\xf8\xce\x45\xcf\xdc\x26\x64\x9f\x5b\x40\xf0\xfa\xb0\x88\x9f\x94\xd0\x29\xb2\xf7\x89\xad\x7c\x27\x25\x14\xde\x7f\x4e\x38\x7d\x4e\x38\x4d\x5f\xe0\x73\x44\xe9\x93\x1b\x4f\xe2\xee\xfa\x58\x84\x9f\x83\x47\x54\xe9\xae\x4f\xe0\xfa\x73\xf2\x72\x32\xd0\x3f\xce\xf3\x57\x35\x74\x86\x4e\x70\xe4\x73\xf0\xe8\x3b\x5d\xe2\x12\x7f\xdb\x25\xee\x9f\xcd\xea\x63\x09\x7e\x32\xde\xcf\x09\xf6\x4f\xa6\xe6\x77\x32\x35\x01\xe1\xe7\x3c\xe5\xb7\x6d\xbf\xae\x56\xc5\xf5\xc9\x63\xff\xe4\xb1\x2f\xc1\xf0\x4f\xe4\xf9\xb3\x59\xa9\xa5\x7c\x7d\x3c\xd5\x6f\x6f\x4f\xfd\xd0\x55\x9f\x55\xf2\x59\x25\x0b\xe3\xf3\x59\x25\x9f\x55\xb2\xf0\x38\x1f\xc3\xee\x1b\x52\x03\x6d\x41\xdf\xf0\x4f\x31\x0b\x85\x76\xaf\xcf\x2a\xf9\x44\x89\x0f\x37\xf4\x59\x25\x1f\xca\x8e\x6c\xcd\xf5\xa1\xec\x3e\x31\x8b\x8b\x3d\xf2\x49\x8b\xfc\x3e\x99\x5b\xc8\xd2\xcf\x66\xf5\x09\xf3\xaa\x44\x70\x7d\x9f\xd6\x3f\x89\x74\x92\x20\x3e\x27\x71\x3e\x61\xde\x70\xe6\x92\x48\xc4\x27\xcc\x1b\x60\xc9\xb2\x64\x96\x64\x47\xc2\xfd\xd7\x12\x5f\x58\xe2\x0b\xd1\x3e\xbf\x1c\x17\x5f\xe2\xb4\x71\xd7\xdb\xb8\x16\xaf\x72\x89\xd3\x46\x6f\xb4\x84\x64\x57\x38\x19\x51\x97\x8b\xbb\xf5\x25\xfa\x9a\xb6\x10\xcf\xb5\xec\x4b\x4b\x4c\x35\xf9\x46\x8b\xd1\xb7\xa2\x14\x21\x24\xd4\x12\x14\x5d\x82\xa2\x84\xed\xaf\xc5\xe8\x5b\xb2\x57\x52\x3b\x17\x3f\x17\x77\x3f\x13\xc2\x68\xf1\x00\x97\x7c\xc1\x24\xd5\x72\x09\x10\x2c\x01\x82\xc4\x35\x5a\xd6\xe6\x12\x20\x48\x72\x25\xd7\x76\xfd\xae\x25\x7b\xe5\x66\x09\x2e\xc4\xd6\xda\xc4\xd6\xb8\x4d\xef\x85\xae\x5a\xdb\x74\x1c\xb7\x7d\x69\x59\xb0\x4b\x30\xf4\xb6\x2f\x2d\xa7\x0f\x97\xb8\xe7\xcd\x25\x5e\xf6\xba\x25\x8d\xef\x66\x09\xae\x62\xe4\xb7\xcd\x38\x94\x06\xbd\x16\x9b\x71\x3d\x5a\xef\xe7\xa2\x37\x12\xf7\xbc\xad\xcd\x65\x5b\x5b\x8f\x67\xda\x97\x16\x0f\x70\x09\x10\xdc\xf6\xa5\x65\xc1\x2e\xd1\xcc\x9c\x7d\x4d\x49\x25\x4b\x34\x33\x6f\x01\xf7\x6b\xf1\xd2\xd6\x7b\x52\x5a\x5c\x44\x2d\xad\x26\x2f\xc3\x31\xb7\x65\x19\xae\x26\x2f\xe3\xcc\x25\x2b\x6e\xc9\x99\x2b\xbb\x62\xdd\xb5\xac\xb8\xd5\x65\x46\x9c\x2e\x59\x71\xcb\x8a\x7b\xf8\x34\x4b\xe8\x70\x61\xce\xcf\x21\xbb\x25\x74\xb8\xb6\x3d\x39\x9e\xad\xd8\x74\x2d\x96\xe0\x92\x82\xf1\x34\xfd\xb4\x05\x2d\x89\x69\x4f\xd7\x3a\x26\x7a\x61\xa2\x2b\x97\x68\xc9\x0f\x5e\x4b\xcc\xf7\x3d\xff\xf4\x39\x96\x38\xf2\xfe\x1c\xe1\xda\xbb\x4c\xb8\xc4\xe9\xea\x16\x79\x09\xd7\xb6\x19\xc3\xb5\x6d\xc6\x51\xb7\x7d\x17\xae\xbd\xcb\x84\xcb\x3a\x7a\x83\xdb\xf7\x2e\x13\xae\xbd\x9c\xc6\xbb\x1d\xc7\x70\xed\x75\x14\x2e\xeb\xe8\xdd\xa6\x5c\xb8\xb6\xb1\x18\x2e\xc1\xbb\x77\x2f\xd8\x70\x6d\xce\x3a\x5c\x82\x77\xef\xad\xf5\xe8\x9f\x16\xd7\xdb\xfd\x73\xdb\x70\xe1\x92\x62\xdb\xb2\x7f\x6e\x2a\x24\x5c\x72\xbb\xda\xa3\xf5\xbd\x2c\xc2\x25\xb7\xab\x3d\x5a\xdf\x86\x5d\xb8\x6e\xb1\xd4\x7a\x2e\x7a\xa6\xd5\xd1\x5e\x0d\xed\xed\x2c\x5c\x22\x65\xad\x79\xf7\x6c\x94\xb6\xed\x37\x08\x2e\x87\x2b\xbb\x5d\x3a\x6c\xfb\xb4\xbe\xb7\xb3\x70\x49\x15\x68\x4b\x43\xc5\x78\xca\xd8\x52\x69\x2d\x5c\xc5\xbb\x5b\x32\x8a\xaa\x05\x42\x51\x81\x50\xd4\x50\x07\x2d\x10\x8a\x0a\xd7\x3e\x86\x3b\xb6\xb0\xf0\xff\x36\x28\x02\xf9\xa8\x40\x37\x6a\xf4\x6a\xb4\x1e\xfd\x95\x2b\x4b\x75\x38\x5c\x7b\x21\x85\x4b\x72\x41\x3f\x63\x50\xbd\x84\x5c\xd9\xde\xf4\xb7\x1a\x03\x51\xb8\xde\xf4\xb7\x7a\x09\x39\x5e\x7d\x18\x83\x6a\xa6\xec\x05\x38\x08\x0c\x87\xeb\xf5\x66\x02\x6e\xfd\xcc\xa9\xd7\x4c\x79\x45\x35\xaf\x73\x51\xe7\x5f\xd1\xd7\x9d\x37\x16\xae\xe6\xb3\x48\x04\x20\x5b\x14\xae\x6e\x5c\x85\xbc\x48\x0c\x85\xab\x7b\x23\xd1\xad\x99\x75\x7e\x78\x77\xa1\x78\xda\x3b\xe1\x1a\xfe\x69\xaf\xa3\xbd\x13\xae\xe9\xdd\x45\xa2\xe6\xf4\xcc\xe9\xdd\xb7\x61\x38\xd4\x06\x0b\xd7\xd4\x25\x21\x24\x9a\x36\x81\x5c\x55\xb8\x44\x8b\xa8\x72\x86\xeb\x33\xa3\xbf\x13\x85\x7b\x5d\xd4\xa5\xcd\x65\x0c\xaa\x32\x81\x24\x55\xa0\x45\x35\xa8\xb5\x04\x92\x54\xe1\x12\x60\x5f\x3b\xd3\x24\x04\x0b\x97\x40\xd5\xe0\x90\x07\x3a\x55\x21\x58\xb8\x6b\x5b\x6d\x81\x32\x55\x08\xb2\x97\x08\xb3\x04\x3a\x55\x81\x40\xd5\x70\xac\x20\x10\xa1\x0a\xe1\x84\x90\xe2\xf9\xe7\x70\x51\x64\x27\x6a\x7d\x2f\xce\x10\x4e\x0c\xe8\xf5\xcf\xed\x98\x85\xf0\x8b\xec\x44\x17\xfd\x13\xdb\x49\x16\x24\x90\x81\x0a\x64\xa0\x26\x69\x8c\x10\x6e\x0d\x61\x26\x83\x6f\x44\xf1\x29\x84\x13\x85\x19\xde\x28\x7b\xcd\x13\x85\xf9\xce\x45\x0d\x65\xb1\x95\xcb\x1b\xed\x04\xca\x40\xf8\x69\xc6\x6d\x48\x86\x60\x39\x52\x7c\x9a\xdc\xec\x10\x36\x15\x12\x28\x3e\x4d\x95\xdc\x03\x71\xa7\x10\x4e\x68\xc6\x72\x0c\x8f\xa1\x7b\x44\x4c\x1e\x0d\x59\xb8\x14\x9f\x66\x3c\x6f\x54\x3d\x13\x09\x49\x76\x21\x84\xe6\x76\x3a\x9f\x77\xf0\xcf\x6d\x09\x86\x40\x90\x93\xf4\x40\x20\x77\x14\x02\xc5\x4b\x9e\x6a\xa0\x7a\x14\xa8\x1e\xcd\xbb\x79\x66\x37\x9e\x34\x2d\xef\x66\xe8\xba\x67\xe2\x04\xef\x7e\x9e\xe9\x13\x8b\x59\xdc\xe6\x7c\x18\x2e\xee\x45\x32\x29\x02\x84\x30\xbc\xbb\xf8\x42\xde\xda\xa8\x81\x42\x51\xa0\x50\x34\x1d\xd4\x0f\x24\x86\x42\x10\x35\x50\x8c\x25\x84\xa5\x4b\x3b\x73\x79\x72\x4a\x03\xc5\xa0\x10\xf6\xf6\x34\x39\xa5\x81\x1c\x50\x88\xdb\x94\x9b\x32\x0b\x43\x34\x93\xe3\x85\x3d\xde\x46\x74\x20\x0e\x14\xa8\x02\xcd\xe7\x3a\xff\x6c\x2e\x76\x17\x97\x8b\xd3\x45\x4c\xef\xe6\x04\x43\x0c\x9e\x29\x6a\xf0\x94\x73\xd1\x3f\xc3\x51\xa2\xcb\x2e\xee\x69\x13\x23\x7d\xb9\x2d\x39\x1f\xe2\xa6\xff\x42\x44\xff\x8d\x5d\xaa\x23\x10\x0e\x0a\x84\x7f\xda\x88\x6e\xdf\x71\xcf\x40\xf8\xa7\x8d\xa4\xf3\xc9\x6b\x1e\x8d\xb5\xd3\xa5\xe4\x99\xc9\x33\x93\x86\x92\x7e\x26\x34\xe5\xae\x1b\x11\xa2\x0d\x30\x1e\x39\xb5\x5b\xeb\xb7\x67\xee\x0d\xb0\xd1\xaf\x0d\xf4\x7f\x02\xc5\x9f\x36\x36\x05\x16\x28\xfe\x04\x72\x3e\x6d\x64\x0d\xdd\xfa\xb9\x9d\xb5\x36\xb6\x74\x72\x88\xd9\x78\x66\x03\x62\xff\x8c\x7b\x01\x05\x42\x3c\x6d\x54\xad\xef\x4d\x2e\xc4\xa2\xf5\xad\x50\x13\x62\xd1\x7a\x21\x10\xf7\xea\xd2\xce\x0a\x09\xb1\x78\x66\xf3\x46\x8f\xce\x3f\x47\xc8\x4e\x97\x1e\x03\x82\x3d\x54\xc6\x32\x10\xdb\x09\x54\x76\xda\xe8\x9e\xf9\xe8\x27\x4a\x51\x89\xcb\x40\x73\x27\xd0\xdc\x69\xf2\x5c\x42\x7c\xbc\x66\xf5\xcc\xa1\xa1\xea\xc3\x55\xb7\x4f\x9f\xa3\xba\x9d\x48\xda\x80\x60\xb1\x9e\xdb\x7d\xcd\x4f\xeb\xaf\xd7\x7c\x0f\x41\x6c\x40\x6c\x67\x91\x72\xda\xbc\x0c\x88\xed\x8c\xe6\x4e\xa3\x23\x1a\xe2\x6b\x82\x35\x62\x6e\xc1\x0c\x69\x9e\x49\x24\x6d\x06\x5d\x82\x0c\x34\x77\xda\x0c\x3a\xdf\x3c\x93\x48\x9a\xd4\x9b\x10\x6d\x91\x34\x77\xda\x8c\xba\x64\x8b\xa4\xb9\xd3\x08\xd0\x07\x9a\x3b\x81\xe6\x4e\x9b\xe9\xfd\xd3\xa0\x20\xc8\x13\xe2\xde\x54\xdb\x4c\x16\xd9\x30\x29\x86\xfe\xde\xfa\x3b\xf4\x77\xe8\x6f\x36\x84\xc3\xc2\xa5\x8b\x36\xcf\x3c\x85\x3a\xb4\x77\xda\x3c\xf3\xd4\x4e\x4b\x58\xa7\xcd\x33\x25\xa7\xd7\x9d\x04\xed\x8a\x37\x9b\x16\xc4\x24\x92\xf7\x18\xec\xe9\x5b\x11\x4b\x9b\x8f\x67\x7e\xe6\xe9\x67\xb0\x77\x64\x2f\xd0\xde\x09\xf1\x33\x30\x55\xe7\x21\x19\x09\x9e\x36\xed\xde\xf1\xd3\xfa\xe7\x99\x67\x9a\x2f\x93\x97\x04\xda\x7c\x75\x69\xb9\x7d\xb9\xbd\xe9\xbc\x2d\x3d\xd2\x45\x9b\x36\xff\x68\x4b\x8f\x74\xd1\xa6\xb9\x4f\x90\x27\x10\xe4\x69\x6a\x95\x06\x4a\x3c\x21\xd1\x45\x9b\xdb\x53\x0d\xb4\x77\x42\xa2\x8b\xa6\x8e\x69\x48\x1b\x01\x03\x41\x9e\x36\xf7\xb9\xba\x90\x58\xed\x29\x50\x4c\xdc\x04\x47\x48\x9b\xd4\x0d\x89\x02\x25\x2d\xfe\x90\x6c\xfe\x24\x78\xda\xdc\x4c\x6f\xa0\xc4\x13\x48\xf0\xb4\xb9\xb5\x03\x02\x25\x9e\x90\xa0\xe3\xb4\x20\x08\xf2\x84\x74\x82\x23\xdb\xb3\x0a\x69\x53\x4b\x81\x2e\x4f\x9b\x4b\x3f\x37\xa7\x14\x52\xf4\xcc\xe5\x8d\x92\x77\x4f\xa2\x1b\x60\x98\x3c\x4f\x48\x27\x62\x12\xf4\x33\x79\x26\x74\xfc\x82\x86\x92\xce\x6f\xf7\xa0\x29\xbb\x1a\xa8\xf4\x84\xb4\x3d\xea\xf6\x45\x9d\xe7\x33\xa4\x9b\xba\x61\xd4\xfa\xa6\x7f\x43\xa2\x40\xf9\x25\xfd\xbc\x3d\xf3\x26\x10\x98\x74\xe9\xf6\xcc\xdb\x33\x01\x36\x75\x9f\x90\xb6\x7b\xd0\xc8\x64\x87\xb4\xad\x93\x40\xd6\xa7\x39\x47\x1b\x52\x76\x3b\x70\xfd\x4c\xef\x04\x5c\x69\xfd\xb4\xaf\x78\x26\x70\x4d\xc0\xf5\x33\xbd\x29\xff\x04\xca\x3f\x4d\x32\x59\x20\xf2\x13\x12\xc4\xfd\x1e\x1f\xae\x98\x0c\xc5\x80\x54\x6f\xc4\x9c\x49\x82\x38\x0a\xbb\x06\x3a\x40\x81\x9e\x4f\xfb\x40\x7b\x02\xae\xa4\x7b\xda\xf7\x1a\xa5\xea\x9f\x95\x0e\x62\xd3\x25\x6e\x01\xb5\x9d\xf6\x35\xa3\xf4\x9e\x8b\x9e\xd9\xbd\xe6\xab\x4b\x47\x18\xf2\xcc\x4f\x98\x97\x8e\x30\xe4\x99\x8a\xcd\x27\x6e\x6e\x9f\x06\x04\xe6\xd1\xd0\x69\xdf\x99\x8a\xdb\x36\x0a\xe9\x68\x40\x7e\x3a\xcf\x1a\x4a\x47\x03\xf2\xcc\x3a\xd6\x50\xea\xbe\xfb\xd2\x50\x37\x74\xdd\x77\x5f\x06\x04\xd6\x51\xd2\x69\xdf\xd2\xfa\xf0\x39\x86\xa8\xd6\x65\x40\x86\xf9\x49\x03\x72\x5d\x5a\x1f\x3a\x3f\x44\xdf\x82\x7e\x72\x35\xd2\x14\x68\x63\xf4\x25\xc6\x54\x3a\xca\x8e\x51\x97\x3e\x83\x7c\x94\x1d\xa1\x78\xfa\xbc\xd1\x51\x76\x4c\xfa\xf9\xb9\xfd\x13\x53\x03\xbf\x94\x6d\x02\x49\x9b\xb6\x6e\x9d\xff\x7c\x77\xc1\xd0\x75\xe6\x27\x5b\x2c\xd1\xbb\x55\xbf\x36\xd0\xb2\x09\xb4\x6c\xda\x3a\xf3\x73\x9d\xdb\xf5\x73\xd7\x54\x08\x04\x6e\x02\xd9\x9a\xb6\x4c\x5a\xb2\x35\xe1\x3e\x22\x8e\x9b\xb7\x0f\x44\x6c\x02\xa1\x9a\xb6\x76\x4c\x2d\x28\xec\x1f\xc8\xd6\xb4\x65\x7e\x92\xad\x09\x64\x6b\xda\xda\x39\xf1\x41\x29\xff\xa0\xc4\x7e\x5b\x26\xed\xbd\x51\x2a\x10\xa3\x69\xeb\xd5\x50\x74\x7b\xa4\x2b\xf9\xea\xd2\x06\xa4\x40\x8c\xa6\x2d\x93\x56\x55\xfc\x70\xc3\x25\x75\x1a\x82\x02\xf8\x41\x75\xfb\xa6\x30\x6f\xa0\x50\x13\x6e\x22\xb8\x6b\x13\x70\xe1\x4e\x6e\x4f\xc4\x3b\x61\xf2\xbd\x33\x7b\xc3\x0d\x97\x56\xd7\x3a\x5c\x52\xdd\xbe\x2d\x40\x7d\xb3\xda\x94\xb5\x6f\x6b\xf3\x8c\x41\x59\xfb\xa0\x9e\x7d\x5b\x16\x82\x7a\xf6\x81\xce\x4d\x5b\xd3\xbb\xe3\x32\xe8\xdc\xb4\x65\x75\xa8\x59\x1f\x14\x9d\x6f\xeb\xd3\xa5\xec\xf6\xec\x76\x0b\x41\xb5\xf9\xa0\xcc\x7c\x5b\xcb\xbb\xe3\x32\x6e\x10\xb4\x2c\x04\xca\x36\x41\xb9\xf8\x7e\x5d\xba\x54\xdc\x4e\xcb\x46\xb1\xdf\x40\xcb\x26\x28\x10\xdf\xaf\x10\xfe\x34\x28\xc8\xde\x04\xc5\xe0\xfb\x15\xf4\xe2\x31\xae\x54\xc4\xc4\xfc\x83\x6a\xee\xe1\x68\xda\x5c\x51\xd7\x1e\xd3\x07\x99\x7f\x45\x63\xb0\x81\x29\x1c\xf9\x9a\x2b\xf9\xd4\x55\x7f\xab\xfe\x32\xbb\xd5\x53\x0f\x37\xc1\xb0\x0b\x8a\xdf\x18\x0a\x35\xd3\xfb\x75\x7b\xdd\xd7\x67\x21\x18\xa6\x2a\x71\xb8\x77\x62\x5b\x38\xf2\x35\x57\xd1\x4f\x7e\x9d\x32\xe7\xfd\x2a\xde\xa8\x79\xa6\x18\xf5\x75\x96\x0e\xcc\x3b\x4a\x35\x72\x3a\x03\xa5\x9a\x40\x86\xa6\x5f\x67\xe9\x70\xf6\x8e\x28\x8d\x1a\xc5\xe1\x06\x6f\x4a\x93\xf7\xab\x7a\x4d\xf0\x46\x86\xa6\x5f\x67\xe9\xa0\x42\xc8\xd0\xf4\xeb\xd5\x4f\x56\x9b\x6a\xe2\xfd\x3a\x4b\x07\xbc\x29\x23\xde\xaf\xb3\x74\xc0\xdb\x3d\x88\xa2\x9e\x55\xc2\x94\x53\x38\xbc\x13\x3d\x0f\x0a\x87\x07\x15\xc3\xfb\xd5\xbd\xe6\xf0\x46\xb4\x18\xae\xb3\x20\xa6\xce\xd3\xb4\xb9\x86\xcf\xc1\xbe\x53\xd6\xbb\x5f\x53\x3f\xd9\x77\x47\xe8\xe6\x9a\x5a\x9f\xde\x88\xa6\xcd\x75\x16\xc4\xe7\xdd\x05\xc3\x69\xc2\x87\x1b\xe7\x72\x84\x6e\xae\xb3\x20\x40\xa6\xca\xd8\xfd\xfa\x74\x09\xbc\x29\x89\xdd\xc3\x4e\x15\x09\x4a\x62\x07\x7a\x37\x3d\x60\x13\xc8\xde\x04\x85\xae\x7b\xe0\x16\x52\xbf\x09\x6a\x5a\xf7\x10\xce\x3f\xbb\x8b\x24\x4e\x41\x3b\xd9\x9b\xa0\x52\x75\x0f\x66\xb2\x4a\xd5\x81\xde\x4d\x0f\x66\x72\xde\xd4\x69\xc8\x02\xec\x92\x5c\x03\xf5\x9b\x90\x05\xd8\xc3\x26\x8a\x03\x2d\x9c\x40\x04\xa7\x87\xdb\x33\xb7\xb9\x16\x72\x94\x2e\x81\x99\x52\x94\x3a\x1c\x49\x9c\x90\x75\x69\xc3\x62\xa0\x8c\xd3\x83\x4d\x80\x40\x4e\xa0\x8c\xd3\xc3\x2e\x99\x1a\x08\xe4\x84\xa3\x7e\x13\x4c\x6f\xb2\x37\x21\x27\xba\xa7\x8f\xa1\xc3\xf8\x50\xb1\xe9\xc2\x3d\x41\x01\xe9\x40\xc5\xa6\x07\xb3\x4e\xe5\xe8\x70\x34\x6d\xc2\xab\xf3\x80\x50\x41\xe8\x1e\x4c\x45\x62\x34\xe1\xe8\xce\x28\x4a\x1d\xe8\xce\x84\xa3\x3b\x13\xba\x7e\x32\xbb\x54\x74\xee\x81\xaf\xa8\xa2\x73\xa0\x34\xd3\x83\xf9\x49\x70\x26\xe4\xa3\x0e\xcb\x1e\x21\x38\x13\x94\x64\xee\x61\x18\x10\x60\x45\x7e\xa6\x87\xa9\xa1\xe2\xc3\x1d\x21\x58\xf3\x53\xa1\xe5\xa0\x8a\x72\x0f\x1c\x48\x75\x93\x43\x3e\x42\xb0\xa6\x22\x15\x9a\x40\x7e\xa6\xab\x7b\x1d\xa8\xd0\x04\xa2\x32\x3d\x2c\x0d\x41\x30\xf5\x8f\x7b\xe0\x6a\x92\x98\x09\x47\x62\x26\xc2\xe6\xfc\x1a\xe4\x0d\x64\x3d\x5e\x5e\x93\x2d\x96\xe9\x20\x46\x80\x9d\xc1\x5a\x16\xb8\x8c\x8c\x14\x62\x34\xe1\x88\xd1\x44\xf0\x9b\x61\x1d\x4d\x9a\x1e\x11\x1c\xa4\x69\xc2\xd1\x9d\x89\x67\x26\x6f\x73\x2d\x1c\x89\x99\xc8\xd5\x54\xd5\x38\x50\x9a\xe9\x31\x69\x1d\xb1\x45\x69\xa6\xab\xc1\x1d\x32\xac\xcb\x47\x08\xf6\x4c\x6f\xb6\x18\xfd\x98\x1e\x79\x93\x19\x82\x1d\x35\x99\x98\x8d\x27\x04\xcb\x10\x2c\x22\x38\xf2\xf0\x89\x37\x3c\xf5\x78\x66\x32\x62\x2b\x9f\x7c\x9c\x9d\x98\x18\x28\xc6\x84\x7c\xf2\x71\xc0\x2f\xe1\x98\x90\x37\xed\xdb\x23\x6f\x92\x8c\x4c\x50\x50\xb8\xc7\x47\x43\xb8\xe0\xa3\x11\x13\xab\x15\xf7\x19\xf9\xa3\xf9\x0a\x7e\x29\xc6\x04\x52\x31\x5d\xad\xf0\x90\x81\x15\xa9\x98\x1e\xcf\x9c\xff\xcc\x3a\xb2\x84\x71\xe7\x07\x07\xc2\x31\xe1\x08\xc7\x88\x66\x06\xa5\x80\x03\xfd\x98\x1e\xcf\x42\x58\x5a\x5f\x12\x94\xce\x42\xe0\x77\x2a\xe6\xdb\x23\x7b\x84\x70\x4c\x20\x1c\xd3\x23\x4c\x56\xb7\x37\xd0\x8f\xe9\x11\x69\x42\x46\x26\x94\xeb\xa4\x1d\x65\x17\xa7\x8b\xfa\xc9\xf3\xa3\x11\x13\x8a\xf4\x83\x04\x54\xcb\x36\xec\x42\x39\x42\xb0\x9c\x3c\xc2\x31\x81\x1c\x4c\x4f\xd7\xb9\x7d\xb8\xb8\xe7\x52\x0a\x7f\x0a\x5b\x05\x5a\x31\xa1\x1c\x95\x58\xe4\x09\xad\x98\x40\x2b\xa6\x27\x94\x1d\xad\x98\x40\x2b\xa6\x27\x6e\x21\xad\x98\x40\x2b\xa6\x27\xd3\xbc\x00\x42\x5a\x31\x5d\x7a\x79\x28\xcc\x44\x35\x7a\x7b\xe2\x2b\x16\x3c\x9e\x52\xbd\x3d\x31\xd0\x95\xea\x0d\xea\xe2\xf6\xc4\xca\xa0\xeb\x12\x14\xc4\xed\x09\x8f\x47\xa6\x25\xd0\x67\xe9\x69\xa7\x84\x06\xc2\x2c\xa1\x80\xb7\x04\x5c\xc9\xb4\x04\xfa\x2c\x3d\x3d\xfa\xb9\xc1\x2e\x90\x62\xe9\xc9\x3c\xa5\xc8\x12\x48\xb1\xf4\x24\x06\x44\x83\x25\xd0\x60\xe9\x09\x97\x51\x8a\xd7\xdc\x96\x5d\x4f\xa6\x24\x61\x96\xa0\x24\x6d\x4f\xef\x79\xa6\x41\x66\xb5\x25\x3c\x1e\x99\x96\xa0\xb4\x6c\x4f\xb0\x59\x69\xd9\x40\xb4\xa5\x27\x04\x07\xed\x96\x50\x60\x5e\x32\x4f\x29\xb2\x04\x1a\x2c\x3d\x75\x03\x82\x39\x27\xc5\xd2\x13\x1e\x8f\x06\x4b\xa0\xc1\xd2\xd3\x3c\xb7\x1b\x3a\x40\xa8\xe6\x7b\xa0\xc8\x12\x54\x75\xed\x09\x43\x41\x98\x25\x90\x62\xe9\xe9\xcc\x53\x98\xa7\xb0\x6a\x4f\xdc\x42\x1a\x2c\x41\x0d\xd5\x9e\x78\x80\xa5\x19\x3a\x98\xa7\x22\x4f\x50\x58\x35\xa8\x93\xda\xef\x33\xa3\x11\x71\xe4\x56\xfa\x0d\x5c\xc9\xad\x04\x72\x2b\xfd\x3e\xf3\x93\xff\x49\x75\xa5\xdf\x68\x8b\x02\xf3\x08\xab\xf4\xfb\xcc\x4f\xa6\x1c\x61\x95\x7e\x9f\xf9\x39\xbc\x26\x29\xc1\x9b\xaf\x48\x4a\x25\xd0\x50\xe9\x4a\xd4\x07\x52\x2a\x81\x86\x4a\xbf\xcf\xfc\x14\x14\x53\xda\xb4\xdf\x67\x7e\xc2\x3c\xea\x27\x5d\xdd\xfa\x50\x18\x68\x44\x50\xfa\x0d\x86\x69\xa1\x84\x02\x08\x55\xb1\x0f\xea\x96\x06\x92\x28\xfd\xde\x19\x31\x41\xe1\xd1\xa0\xaa\x68\xbf\x79\x95\xea\x88\x06\x05\x44\xfb\x8d\xd4\x53\x40\x34\xa8\x1c\xda\x6f\xac\x47\xe1\xd3\x52\x46\xe9\xf7\x99\xf3\xe2\x0b\xd4\x4f\xfa\xcd\x81\x54\x01\x34\x28\xfd\xd9\x6f\xa4\x9e\xd2\x9f\x41\xcd\xcf\x7e\x23\xf5\x0a\xa3\xaf\x00\xc2\xdb\x42\x50\x08\x34\x10\x4f\xe9\xb7\x98\x9a\x2a\x9f\x41\x09\xcf\x7e\x63\xfa\x88\xa7\x04\xe2\x29\xfd\xc6\xf4\xa9\xeb\x19\x1e\x79\x58\x37\xa6\xef\x01\x84\x6a\x77\xf6\xdb\x42\x50\xad\x33\x28\xc5\xd9\x6f\x0e\x24\x99\x95\xa0\x06\x67\xbf\x61\x33\xd1\x95\xf0\x44\xef\xce\x48\x79\x98\x72\xcf\x49\x8b\xb4\x3a\xe8\xab\x04\x1a\x2a\xfd\xe6\x40\x92\x52\x09\xcf\xc9\x95\x44\xea\xa9\x9e\x19\x9e\x93\x2b\x89\x49\x51\x36\x33\x3c\x47\xfc\xda\xea\x20\xb3\x12\x28\xaa\xf4\x9b\x03\x49\x51\x25\x28\x7c\xd9\x6f\xfc\x1d\x7d\x95\x40\x58\xa5\xdf\x96\x0c\x7d\x95\xa0\x80\x65\xcf\x96\x0c\xd5\x94\x40\x27\xa5\x67\xf6\x08\x9d\x94\xf0\xc0\xba\x8c\xe9\xa3\x9a\x12\xd4\xa3\xec\x19\xd3\x47\x3c\x25\xd0\x49\xe9\xd9\x92\x51\x96\x32\x3c\xec\xbb\x8c\xaa\x7b\xd8\x77\xca\x52\x76\x07\x4f\x02\x9d\x94\xf0\x1c\x45\x6c\x4e\x1e\xd5\x94\xf0\xd0\x15\xcc\xf8\x11\xe2\x29\x81\x5c\x4a\x3f\xf1\x2f\x3a\x29\xe1\x91\x6a\x99\x79\x7e\x04\x52\x82\xfa\x90\x3d\x8b\x2b\xa9\x0f\x19\xe8\xa4\xf4\x8c\x1f\xa1\x93\x12\x88\xa0\xf4\x6c\x7a\xd3\x42\x09\x84\x4e\x7a\xe6\xe4\x11\x3a\x09\x84\x4e\x7a\xe6\xcf\xa9\x67\x18\x94\x08\xec\x19\x15\xa2\x3c\x60\xa0\x69\xd2\x33\xf4\x56\xeb\x2f\x50\x31\xe9\x19\x7f\xa7\x28\x5f\xa0\x69\xd2\x33\xf4\x56\x85\x2f\x90\x36\xe9\x99\x93\xa7\xc8\x5e\xa0\x69\xd2\x89\xd1\x04\x15\xf3\x82\x82\x77\x3d\xf3\xfc\x14\xbb\x0b\x54\x4c\x7a\x86\xde\xc4\x4c\x02\x15\x93\x9e\x87\xd7\xec\x1a\xda\x26\x59\xcf\x67\x26\x8b\x16\xd0\x26\xe9\x99\xe7\xa7\x78\x5b\x50\xad\xad\x67\xa1\x19\xba\x25\x81\x60\x49\xcf\x58\x0f\x05\xd8\xc2\xc3\x9b\x74\x94\x26\x50\x2a\x09\x64\x48\x7a\xc6\x09\x52\x23\x09\x0f\xdd\xe8\xbc\xf2\x9f\x06\x05\xc5\x92\xf0\x7c\x7a\x81\x12\x21\x40\x12\x48\x8e\xf4\xc2\xec\x7e\x98\x5f\x0f\x89\xbe\x82\x1b\x24\x39\x12\x1e\xf8\x54\x10\x1c\x04\x48\x02\xc9\x91\x4e\xd3\x26\x90\x1c\x09\x95\x57\x59\xf8\x8a\x15\xea\xd4\xeb\x88\x8a\x7f\x2e\x56\x17\x37\x0c\x17\x04\x07\x55\x92\x40\x4f\xa4\x17\x73\xbf\x72\x20\x2b\x5f\xb1\x08\x21\x92\x15\x09\xf4\x44\x7a\x01\xed\x15\xea\x28\x3b\xd7\x0b\xc2\x90\xd6\x48\xa8\xac\xa1\x62\x41\x54\x79\x39\x55\x71\x93\x92\xcf\x3f\xf7\xb8\xd2\x0c\xe9\x05\xb4\xd3\x0c\x09\x34\x43\x7a\xc1\x7a\x54\x26\x12\x79\x90\x5e\x2c\x08\xba\x20\xa1\x02\x98\x82\x1b\xac\x00\xa6\x66\xaf\x09\xda\x2b\x86\x8a\x3e\x47\x2f\x60\x98\x4c\x47\xa8\xc0\xa0\x20\xf7\xd4\xcc\x0b\xd4\x3a\x7a\x61\x37\x93\xe9\x08\xf4\x39\x7a\x11\x5b\x21\xd3\x11\x2a\xc3\xa7\x98\xd1\x95\xe1\x43\xb4\xa3\x17\xbe\x22\xed\x8e\x50\x79\x80\x05\x97\x41\xc2\x23\xd4\x93\x8c\x2d\x96\x5e\x31\xe7\x84\x39\x7a\x61\x37\x57\x09\x35\xf4\x39\x7a\x61\x37\x93\xe9\x08\x95\x9e\x68\xc1\x65\x54\x61\x49\xc2\x1c\xbd\xcc\x73\xbb\xd6\x79\x80\xe5\xd3\x4f\x86\x4f\xe5\xd7\x15\x5e\x65\xe5\xd7\xd5\xd7\x6b\x72\x20\xa9\x75\x04\x6a\x1d\xbd\x60\xfc\xea\xab\x9f\x32\xb4\x8b\xe9\x5d\x61\x49\x95\x90\xfa\x98\xde\x95\x5f\x57\xc1\xc6\x03\xb0\x2b\xd8\xa8\xce\x44\x3c\xa6\x37\x0d\x8e\x50\xb9\x70\x0f\x6c\xae\x1b\x2f\x42\x3d\x6a\xf5\xbc\x4a\x3a\x1b\xa1\x1e\xb5\x7a\x51\x18\x72\x1b\xa1\xaa\xe5\xf1\xa0\x42\x2a\x17\xae\x1e\xb5\xfa\x7d\xd8\x2a\x54\xe6\x4c\xfd\x09\xd3\x2f\x17\x8d\xd2\x4f\x98\x5e\xe7\x87\x86\xd8\x38\x0f\x7e\xa4\x72\xf6\xea\xd1\xa0\x3f\x73\x1e\x6c\xd4\x6d\xd5\x74\x67\xb5\x42\x9d\x96\xcc\x91\x9b\xe7\x6a\x56\xc8\x50\x91\x50\x8f\x4d\xa0\xa2\xe8\xeb\xd1\xa0\xc7\x8f\x54\xcc\x54\x3d\x72\xf3\x67\x21\x70\xe1\x88\x68\xf4\x87\xab\x59\x99\x33\xf5\x28\xcb\xdb\x04\x2a\x8a\xbe\x2e\x9f\x03\xd3\x57\x01\x4b\xdd\x50\xd2\x1f\x3b\x43\xe5\xd7\xd5\xa3\x41\x6f\x67\x78\xf9\x75\x2f\xbf\xee\xe1\x55\x12\xe6\x08\xaf\x0c\xf2\xc7\x92\x79\x61\x08\x29\x8e\xfe\xf0\x2a\x5f\xe6\xcc\xcb\x9c\x79\xac\x8e\x97\x39\xf3\xf2\xeb\x1e\xab\xe3\xe5\xd7\xd1\xe7\xe8\x8f\xd5\x41\x98\x23\x50\xdd\xe8\x0f\xaf\x92\xf8\x46\x78\xe9\xc5\x3f\x4c\xf8\x17\x45\x4f\x44\xa3\x3f\x56\xc7\xcb\x72\x79\xc1\xc5\xb3\xb3\x2a\xc3\x8b\x4e\x7f\x1d\xe8\x78\x40\xfb\x2b\xcc\x47\x36\xa3\x3f\xa6\xf7\xcb\xcd\xa2\x97\xd1\x2b\x4c\xa6\x97\x11\xe8\x65\xf4\x8a\xbf\x7b\x85\xf9\x48\x63\xf4\xca\x5a\x7f\xb3\xd6\xe9\xc5\x57\x8e\x23\xa1\x8c\xf0\x3a\xfa\x51\x01\xf5\x8b\x63\x57\x8c\xb3\x57\x54\x08\x11\x8d\xa0\xee\x66\xaf\x66\xb2\xba\x9b\x81\x88\x46\xaf\xd0\x5b\x51\xcd\x40\x4b\xa3\x57\x4c\x9f\x6a\x9a\x41\x19\xcd\x5e\xa1\xb7\x32\x9a\x41\xfd\xcc\x5e\xf1\x23\xea\x67\x86\x17\x2e\x55\xd3\xfb\x95\x58\x41\x60\xa3\x57\x33\x99\xce\x46\x78\x39\x64\x15\xd3\xf7\x72\xc8\x5e\x74\x55\xc5\x8f\xbc\xf2\x04\x69\x70\xf4\x6a\x26\xbf\xe8\xaa\x97\xeb\x56\xcd\xe4\x97\x39\x43\x9f\xa3\x57\x1e\xea\x5b\x8d\x12\x0e\xab\x82\x74\x6a\x1d\xe1\xe5\xcf\x55\xa4\xc9\x2b\x79\x90\x3e\x47\xaf\xa6\x37\x61\x8e\x40\x8a\xa3\x57\xe1\x48\x8a\x1c\x81\x14\x47\xaf\x6c\x9c\x57\x3c\xf1\x7d\x1d\xfd\xe0\xa1\x92\xe9\x08\xe4\x36\x7a\x3d\x73\x9e\x97\xf6\x42\xb0\xca\x30\xa7\xac\x11\x28\x6b\xf4\x6a\x47\x78\x19\x3e\xef\x39\x78\x72\xa6\x37\x04\xa3\x97\xd1\xab\x4c\x93\x17\x82\x91\xcd\xe8\xff\x80\xce\x5f\x06\x05\x69\x8d\x40\x53\xa3\xd7\x33\xf7\x87\xe5\x88\x4e\xaf\x67\xee\x33\x80\x88\x62\xf4\xca\xa7\xa5\x8d\x11\x5e\x0c\x55\x85\xf7\x2f\x6f\xed\xc5\x50\x55\x2c\x22\xdd\x8c\x40\x37\xa3\x57\x9b\x00\xdd\x8c\xf0\x82\xb7\xba\xac\x27\xe9\x12\xc4\x30\x7a\x45\x2d\x92\xbf\x08\x2f\x78\x7b\x6d\x02\x2f\x78\x23\x86\xd1\x5f\x2c\x0d\x4d\x8c\xf0\x82\xb7\xf7\xac\x27\x26\x12\x69\x8c\xfe\x72\x74\x5f\xf0\xf6\x82\xb7\xd7\x26\x40\x2f\x23\xbc\x54\x8c\x5f\x3e\xed\x2b\x5d\xe2\xe5\x98\xbd\xd6\x53\x83\x64\xed\x3a\x27\x72\x8a\x8b\x8f\x8b\x6e\x47\x2d\x52\xcf\x08\x8d\x89\xf4\xa2\x16\x1b\x78\x23\xa2\xd1\x5f\x4b\xa7\x89\x2b\x36\xa0\xf5\xf2\x69\x5b\x70\x3b\x32\xea\x85\xf7\x24\x35\x42\x23\x3b\xff\x32\x7c\x9a\xbc\x31\xb2\x19\xfd\xb5\x74\xe8\x65\x04\x62\x18\xfd\xe5\xd3\x36\x8e\x19\x69\x8c\xfe\xc2\x7b\xd2\x18\x81\x34\x46\x7f\x51\x36\x4d\x12\x44\x03\x84\xaf\x4d\x80\x5e\x46\xa0\x90\xd1\x5f\xab\xa4\x09\x36\x36\xe8\xf8\xa2\x16\xe9\x65\x84\x46\x4c\xfe\xb5\x4a\x1a\x74\x24\x8d\xd1\x5f\xab\x84\x0a\x46\x20\x78\xd1\x5f\xee\x6b\x93\x0e\xdd\xa8\xc0\xbf\x36\x81\x76\x9f\xdb\x9d\x9a\x42\xd9\x34\x74\x15\x31\x8c\xfe\xa2\x16\x69\x62\x84\xc6\x5b\x7b\xb9\xaf\x8d\x81\xd6\x4e\xe1\x0c\xd3\xbb\xf1\xd6\xda\x29\x9c\xc1\xd5\x6c\x30\x8f\x42\x46\x7f\x41\x7b\x63\x76\x51\xc8\xe8\x0d\x8b\x48\x28\x23\x34\x47\xe8\x1a\xce\xa5\xc9\xbf\x6c\xe0\xad\x99\x9f\x84\x32\x42\xe3\xad\x35\x5e\x65\xe3\xad\x35\x48\xd6\x78\x95\x0d\xf1\x4e\xcd\xa2\x37\x96\x0b\x51\x8b\x40\xcd\xa2\xb7\x74\x2e\xfa\x70\xa7\x4a\xc5\x3e\x4a\x13\x28\x56\x04\x8a\x15\xbd\x49\xdf\xa4\x58\x11\x28\x56\xf4\x06\x86\x29\x56\x84\x76\xaa\x54\x48\x7a\x6a\x4d\x3f\x4f\x95\x8a\x33\xc1\xe0\x53\x3b\x55\x2a\xce\x04\xeb\x26\x2d\xb3\xab\x9d\x09\xc6\xec\xa2\x51\xd1\x1b\x18\x26\x55\x11\xda\x29\x5d\x81\x34\xa1\x58\x11\xda\xa9\x52\x21\xb7\xaf\x61\xce\x1b\xe6\xbc\x21\x4d\x88\x53\x04\xe2\x14\xbd\x81\xe1\xc6\x5b\x6b\x02\x82\x0d\x69\x42\xb1\x22\x90\xa3\xe8\xed\xcc\xba\xa9\x4b\x8e\xd0\x35\xac\x47\x03\x41\x74\x28\x7a\x3b\xd3\x06\x04\x35\x84\x51\x63\x44\xb7\xcf\x7a\x47\xa7\x37\x88\xdb\xb0\x48\x0d\x9d\xde\xb0\x1e\x0d\x9d\x4e\xa3\xa2\x37\xe6\x76\xc3\x9c\x37\x84\x51\xe3\x40\x36\x7c\x78\x03\x41\x0d\xeb\xd1\x40\x50\x03\x41\x0d\x51\xd8\x40\x50\x03\x41\xcd\xfc\xec\x20\xa8\x9f\x33\x7a\xa8\x10\x4a\x17\xa1\x9f\xe3\x78\x4c\x8f\x2e\x21\xb5\x23\x8c\x1a\x50\x25\x78\x11\x08\x5e\xf4\x8e\x0a\x21\x78\x11\xba\xca\x17\xdd\x4c\x26\x63\x11\x08\x57\xf4\x1e\x34\x04\x6d\xc8\x58\xf4\x0e\x54\xbb\x3c\x2c\x6a\x16\xbd\x9b\xb4\x44\x2d\x42\x77\x8e\xb6\x63\x0f\x7b\xd4\x25\x68\xd3\x79\x93\x9d\x43\xd6\xd1\x40\x1d\x54\xd2\xa1\x08\x1d\x86\x74\xa8\x48\x95\x22\x74\x47\x66\x3b\x2a\xa4\x27\xad\x63\xb7\xbb\x99\x4c\x80\x22\x10\x99\xe8\x9d\x3b\xd8\x61\x08\xc9\x89\xde\x4d\xda\x0e\x43\xfa\xce\x5b\xe8\x1d\x15\xd2\x99\x5d\x94\x27\x7a\x37\x69\xbb\x84\xd4\x0e\x43\x3a\x77\xb0\x3b\x67\xd1\x61\x48\x47\xea\x11\xa0\x08\x44\x26\x7a\x37\x3f\xbb\xdc\xd3\x0e\x2e\x3a\xc7\xb1\x83\x8b\x8e\xc8\xee\x00\xb0\x23\xb2\x3b\x22\xbb\x33\x13\x3a\x22\x9b\xf2\x44\xef\x66\x72\x47\xee\x74\xc7\x06\x3b\xfe\xae\x73\xdd\x3a\x22\xbb\x23\x38\xe8\x50\x04\x3a\x14\xbd\x8f\xf3\x4f\x6f\xe4\x70\x6d\x37\x69\xa9\x52\x84\xce\x1a\xea\xb3\xfc\x69\x50\x50\xae\x08\x94\x2b\x7a\x37\xcd\xbb\x70\x5f\xe7\x16\x76\x8c\x1f\xc5\x8a\xd0\x19\x55\xdd\xdc\xef\x8c\xaa\xfe\xfa\x2c\xe6\x7e\x6f\x9e\x89\x4d\xea\xf2\xae\x3b\x36\xa9\x73\x0b\x3b\xc6\xaf\x73\x0b\x7b\xf3\x66\x18\xbf\x0e\xc9\xc8\x58\xf4\x93\x4d\x4d\xc6\x22\x90\xb1\xe8\xe3\xcc\x68\x96\x56\x77\xd2\x5e\x09\xef\x40\xdb\x22\xd0\xb6\xe8\xe3\x4c\x5e\xe6\x57\x77\xa2\x91\x6a\x43\xe8\x5d\x43\x62\x80\x03\xa1\x4d\xaa\x22\xd0\xa8\xe8\xa4\x1c\x42\x97\xc5\xd0\x39\x90\x03\xeb\xd1\x91\xe4\x1d\x49\x7e\xb2\xa9\x3b\xaf\xb2\x23\xa3\x06\xd6\xa3\xb3\xc5\xba\x2c\x86\x93\x62\x4d\xfe\x22\xd0\xbd\xe8\x83\x07\x48\xfe\x22\x74\x48\x36\x98\xc8\xe4\x2f\x02\x35\x8b\x3e\xce\x34\x97\x66\x4a\xcd\xa2\x0f\x87\x05\x88\x5a\x04\x6a\x16\x7d\xd8\xfc\xc9\x58\x04\x32\x16\x5d\x01\xf1\xd0\x81\x16\x35\x8b\x7e\xf2\xae\xfb\xb2\xc8\x9c\x3a\x1e\x78\xbc\x81\x5a\x1a\xa8\xa5\x21\x34\x33\xd8\x4d\x83\xdd\x34\xf8\x75\x83\xdd\x34\x4e\xb9\x9e\x7e\xfe\xd9\x5d\x1c\x2e\x7e\x2e\x4e\x17\x35\x84\xdc\x1b\xb2\x18\x06\x0b\x6b\x98\xfb\x83\x5b\x38\x4e\x61\x1f\x80\x3d\x1c\x0e\x1b\x0a\x8e\x0d\x34\xf5\xc0\x87\x8f\x53\xed\xc7\x4c\x1e\xf2\x1d\xc6\xa9\xf6\x83\x0a\x19\x80\x90\x14\x47\x1f\x66\xf2\x60\x76\x91\xdb\xe8\x83\xed\x30\x98\x5d\x83\xd9\x35\x10\x1c\x83\xd9\x35\x58\x58\xd3\x81\x23\x8a\x1c\x61\xc8\x62\x98\xe6\xe7\x60\x61\x0d\x16\xd6\x44\x70\x0c\x16\xd6\x40\x57\x4d\x93\x76\xc8\x28\x1d\x5c\xcd\xc9\x2d\x1c\x5c\xcd\xc1\xc2\x9a\x3c\xc0\xc1\xc2\x1a\xd0\x71\xf2\x00\x07\x74\x1c\xf9\x1c\x6b\xd6\x10\x96\x7b\xf0\x15\x27\x6c\x1e\x7c\xc5\xc1\x57\x9c\x68\x8b\xc1\x98\xa2\xe4\xd1\x67\x3e\xff\xd4\xcf\x53\x28\x87\xb3\x37\x10\xda\x44\x3b\xfa\x49\xad\xa6\xdd\x11\xa8\x75\xf4\x69\xd2\x0e\xf9\xf6\xd4\x3a\xfa\x44\xd5\x0d\x1e\xe0\x38\x35\x71\xf8\x75\x24\x3c\xc2\x91\xf0\x98\xc8\x88\xc1\xd9\x1b\xf2\xb0\xa6\x60\xf8\x10\xbc\x23\xef\xd1\x4f\xc2\x34\x95\x8f\x30\x10\x5b\x13\x19\x31\x10\x5b\x43\x39\xdb\x79\x66\x32\xea\x7b\xc8\xc3\x3a\xb9\xd1\x43\x6a\xfd\x50\x5b\x6c\xf6\xf3\x4f\xdf\x9d\xd5\x76\x12\xa6\x07\xab\x6d\xbc\xe7\x44\xb8\x37\x92\xc5\x30\x60\xdd\xc9\xa2\x1e\xac\x36\x92\x21\x7d\x4a\x00\xa1\x1c\x12\x48\x86\xf4\x93\x30\x4d\x39\x24\x0c\xb0\x36\xf1\x77\x04\x44\xc2\xe0\x40\xce\x33\x69\x99\x5d\x43\xf0\x6e\x72\xdd\x86\x2c\x86\x01\xc1\x4e\x6e\xf4\x60\x8b\x0d\xb6\xd8\x64\x50\x0c\xb6\x18\x71\x91\x3e\xcf\x4c\xc6\x76\x8d\x53\xe9\x86\x97\x46\x4e\x24\xd0\x11\xe9\x1f\xaa\x6e\x00\xab\xa3\x2a\xf2\x21\x38\x06\x5b\x6c\x40\xb0\x93\x45\x4d\x63\x24\x0c\x08\x76\x72\xa3\x07\x04\x1b\xdc\xc1\xef\xcc\x64\xee\xe0\x90\xb0\xf0\x9d\x99\xcc\xec\x1a\xcc\xae\x8f\x43\x46\x94\x24\x1c\x51\x92\x0f\x2b\x37\x96\x2e\x61\xcc\x3f\xb4\xc5\x40\x6c\x0d\x05\xc7\x3e\xa9\x76\x13\x82\x4d\x75\x14\x3f\x64\xc4\xdc\x46\x58\x38\x9a\x26\x84\x36\xc3\x44\x8e\x4f\xb6\xd8\xe7\xc0\xd1\x64\x76\x4d\x66\xd7\xc7\x79\x22\x74\x12\x48\x9b\xf4\xcf\xa4\x9d\x70\xe9\xc8\x97\x7c\x3c\xaa\x89\x31\xa7\x62\xd2\x4f\x1a\x34\x31\x93\x40\x9b\xa4\x7f\x28\x06\x12\x25\xe1\x88\x92\x9c\x23\x7e\x44\x49\xc2\x54\x07\xec\x33\x3f\xa7\xfc\xf5\x79\x7b\x26\x8a\x81\xd4\x48\x98\xdb\x28\xea\x9f\x38\x08\xe1\x91\x30\x99\x48\x1f\xe7\x69\x32\x91\x26\xb8\xf8\x40\xe5\xc4\x37\x4d\xca\x0a\x9f\x0c\xb8\x99\x3d\x93\xdd\xb4\x73\xa3\xff\x30\x28\xc8\x98\x84\x23\x63\xf2\x21\x0e\x26\x80\x99\x00\xe6\x33\x25\x89\x9a\x04\x6a\x26\x7d\x71\xcc\x88\x9a\x04\x6a\x26\xfd\xe4\x48\x13\x35\x09\x13\xc0\x2c\x1c\xc1\x04\x30\x13\xc0\x9c\x1c\xe9\xc9\xa8\x9a\x98\xf3\x85\x23\x98\x98\xf3\xc9\xc6\x59\x38\x82\xc9\xc6\x99\xc0\x60\x21\xcd\x26\x30\x98\x5c\xb8\x85\x34\x23\x4e\x12\x26\x8e\x68\xdd\xe7\xf6\x3d\x4f\xa7\xa4\xcc\x65\xf6\x4d\x36\x0e\x8d\x92\xbe\x78\x6b\xa4\x4a\xc2\x04\x06\x8b\x63\x36\xdb\xb9\x7d\x83\xc1\xe2\x98\x91\x31\x09\x13\xb9\x43\x3a\x34\x4c\xf6\xc8\x64\x65\x2c\x4e\xfe\x64\x65\x4c\x61\xf3\xe5\x0c\xdc\x14\x36\x9f\xa7\x48\x14\x27\x6a\xb2\x08\x26\x8b\x60\x31\x52\xe7\xf2\x39\xac\xa7\xc5\x1e\x9d\xd6\xd3\xe4\xb1\x2c\xe8\xf8\x59\x3a\x47\x55\xe4\x24\x24\x53\x15\x09\x1f\x8b\xe0\x24\x24\x7f\x82\x4d\x1f\x8f\x65\x71\xb7\x3e\x4b\xe7\xb3\x74\x16\x20\x24\x35\x12\x8e\xd4\xc8\xc2\x61\x91\x1a\x09\x9f\x14\xc6\x93\xba\xfc\xd9\xd2\x3f\x4c\xca\xc2\x61\x7d\x98\x94\xcf\x96\xbe\xbe\xf3\xcf\xfd\xee\x9f\x10\xf7\xe2\x6e\x7d\x42\xdc\x9f\xa5\x43\x4b\x35\x7c\x96\xce\xb7\x17\xc4\xb8\x58\x97\x9f\x05\xf1\x39\x47\x7d\x92\x86\x3f\x46\xff\x47\x5d\xfd\x24\xf8\x7e\xf6\xba\x8f\x76\xc0\x65\x32\xd0\x0a\x09\x5f\x25\x63\xc1\xe1\xa1\x07\x12\xbe\xbd\xbb\x8d\x0b\x0d\xf4\xb1\xef\x3f\x45\x2e\x2e\x93\xe1\x63\xdf\x7f\x14\x87\x2f\x93\xe1\x63\x98\x93\x05\x19\x17\x87\xe7\xb3\x83\x91\xf0\x18\x17\xdf\xe6\x93\xf4\xf6\x51\xf2\x3d\x19\xba\x9f\x04\xdf\x4f\xb9\x9e\xeb\x3d\xff\xd4\xba\x3a\x11\x17\x1e\xe7\x13\x53\xfd\x06\x61\x0e\xa1\x2e\x62\x1f\xe1\x27\xf6\x81\xb2\xf9\xb8\xee\x9f\x3a\x3b\x17\x97\xe3\xe3\xba\xff\xc4\x3e\xce\xd7\x14\x53\xfd\x14\xca\xb9\x38\x10\x9f\x3d\xe4\xa3\x47\x70\x9d\x0f\x37\xbd\x11\x3d\x82\xeb\x7c\x38\x61\x94\x4f\xf5\x87\x93\x62\xfb\xa1\x14\xa9\x83\x8c\xcb\x41\x6d\x22\x21\xe1\x53\x13\xe7\xe4\xdd\xd2\x0a\x09\x1f\xd5\xf2\x70\x3e\xb1\x13\x58\x84\x40\x46\x40\xee\xd0\x03\x09\x1f\xe1\x83\x00\x43\x3e\x3c\xe3\xa7\x26\x4e\xc0\xf8\x7c\xa2\xae\x1f\x09\xde\xc0\xab\x58\x16\xc2\x72\x7e\xfa\xa4\xd8\x2e\xf9\x6d\xcb\xf9\xe9\x60\xda\x50\x15\x09\x74\x44\x46\xb8\xcf\xed\x7b\xbd\xaf\x40\x94\xc4\x66\xb5\x50\x8a\x2b\x1c\xf5\x93\xd7\x45\xcf\x0c\x9e\x69\xda\xd0\x18\x09\x8b\x1a\xc2\x49\xb1\x5d\x56\xc7\x91\x1a\x09\xf2\x08\x96\x6c\xb5\xa5\xb2\x59\x30\x6d\x96\x6c\xb5\x23\x35\x12\x00\xcb\x92\x98\xb6\x54\x6a\x08\x75\xbf\xfb\xb2\x05\x2d\x5a\xe4\x81\xaf\xb0\x18\xbc\xeb\x54\x36\x33\x97\xe8\x8f\x84\xa3\x3f\x72\x52\x6c\xe9\x8f\x84\x75\x7b\x26\xb4\xa1\x3f\x12\xd6\xa9\x42\x66\x82\x91\x1a\x09\x2b\x1f\x95\x96\x3d\x6d\x48\x8d\x84\x23\x35\x12\x00\xcb\x92\xb6\xbb\x88\x29\x04\x6e\xc1\x12\x5b\x39\xfa\x23\xc1\xfc\x24\x3c\x12\x16\x31\x85\x60\xaf\x5b\x4e\x25\x90\x21\x19\x27\xc5\x96\x1a\x49\x58\xa7\xb6\x18\x5f\x76\xc9\x6b\x23\x43\x32\x82\xf9\x49\x8d\x24\x1c\xa9\x91\x20\xe1\x6b\xd9\x8f\xd6\xe3\x76\x94\xcd\x12\x31\x59\x0f\x35\x19\x94\xcd\x12\x31\x59\x0f\x35\x19\xf3\x73\x89\x83\x2c\x70\x11\x39\x10\x8b\x15\xbc\x08\x94\x47\x94\xcd\x92\xcb\xbb\x7e\xb5\xc5\xbc\x26\xd3\x78\xfd\x6a\x8b\x9d\xdb\xbd\x3b\x60\x39\x79\xb7\x4b\x70\x64\x11\x51\x38\x29\xb6\x4b\xaa\xc8\x3a\x05\xc7\xb8\xc2\xcb\x51\x54\x7a\x27\x23\x9e\x99\xcc\x0a\x5e\xa7\xb6\x18\x57\x78\xe1\x2e\x97\x9a\x38\x27\xc5\x76\xd9\x0d\x29\xa3\x8c\xc8\xeb\x25\x90\x12\xd6\x29\x38\x96\xff\x3e\x36\xba\x24\xfa\xae\x53\x78\x8c\xcb\x41\x44\x25\x1c\x11\x95\x08\x1d\x97\x4c\x38\x5a\x2a\x23\xf2\x93\x49\xaa\x84\x05\xde\xe2\x99\xfb\x36\xd5\x23\xa2\x12\xd1\x41\xd4\x53\xc2\x3a\x15\xc3\x70\x98\x6b\x9c\xdb\xbb\x8b\xc6\x80\x3f\xbf\xe8\x3b\xc4\xb3\x20\xc0\xdb\x22\x2a\x1e\x39\x27\x4b\x7e\xdb\x9a\x86\xd0\xf6\xbb\x6c\xd4\x4b\xfd\x85\xc8\xce\x5b\xe0\x6d\x81\xb7\x48\xca\x61\x61\x26\x17\x25\x88\x93\x6a\xbb\x78\xfe\x8b\x12\x44\xe4\x27\x2f\x49\x6f\x8b\xc0\x51\x3c\x0b\x82\xdd\x7c\x24\x5c\xa2\x4d\x75\x49\x65\xa3\xe4\x32\xa4\xda\x46\x12\x2e\xf1\x48\xb8\xc4\x4d\xc4\x44\x12\x2e\xf1\x52\xf2\x2b\x6d\xe1\xbd\x78\xed\x0d\x3e\x5e\x7b\x67\x1f\x69\x1f\x95\x8f\x74\x5d\xe2\xd1\x75\x49\x1b\x32\x23\x5d\x97\x78\x74\x5d\x52\xd0\xd0\xf6\xe7\x23\x25\x97\x91\x82\x86\xf6\x06\x1f\x2f\xa5\x16\xd2\xf6\x19\xe2\xb5\x99\xc9\x78\x1d\xd1\xa4\x9d\x23\x1b\xaf\xcd\x4c\x6e\x29\xcf\x7d\x31\xbb\xa8\xf3\x3f\x25\x25\x0d\x6d\xd7\x3d\x5e\xaa\x2a\xa4\x5b\x97\x92\xd6\x13\xd5\xa3\x5b\xeb\xc9\x6b\x26\xaa\x47\xdb\xfb\x8d\xd7\xc6\xb5\x78\xa9\xbc\x98\xb2\x86\x92\x2e\x41\xb2\x94\xdd\x7e\x6b\xfd\xf6\x46\x45\x3f\x6f\x6f\x74\xd3\x71\x2a\xe7\x9f\x73\x5f\x64\x7a\xa4\xc7\x78\x66\xb7\xab\xee\x95\x36\x65\x13\xaf\xac\x75\x65\x65\x52\xd5\xf9\xec\x99\xe0\x2d\x55\xaf\x99\xbd\x26\x78\x4b\x55\x43\x1b\xd7\xe2\x05\xc9\xd2\x6b\x3c\x0b\x15\x54\x65\x65\xd2\xab\xa1\x1d\x2a\x89\x74\x64\x86\x64\xdc\x48\x4e\x26\x5e\xc5\x27\x6e\xde\xbd\xe8\x3c\x55\x99\xd4\xb4\xfe\x18\x3a\x1a\x31\xa9\xeb\xe7\xe3\x76\x1a\x31\x92\x71\x23\x8d\x98\x78\xd5\x23\x2d\x65\x90\xab\xd6\xe1\x53\x9a\x5a\x7f\x4d\x1b\xa5\x16\xd2\xf4\x46\xaf\x51\x22\xf2\x92\x3e\x43\xf7\x1a\x10\xf8\x94\x3e\x0d\xbd\x1a\x7a\x3d\x73\x9d\x67\xfa\x70\x2a\xc8\xc8\xd0\x8d\x57\x33\x97\x9a\xa1\x5b\xde\xa8\x69\x48\x55\x85\x74\x16\x42\x33\xc8\x0a\x28\x10\x9b\x8c\x64\x64\xe2\xc5\x16\xbb\x83\x86\xba\x09\xc6\x16\xbb\x83\xa1\xeb\x3e\x87\x62\x31\xf7\x59\x08\xdd\x92\x19\xe4\xaa\xa2\x7f\x0e\xe3\x09\x97\x24\xe3\xc6\x6b\xf8\x70\xc4\x9d\xee\x64\xe8\x86\xa1\x1b\xba\x74\x16\xc2\xf4\x46\x2c\xac\xfb\xd6\xa5\xe9\x76\x16\x96\x64\xdc\x78\x4d\xb7\x03\xab\xfb\x2c\x84\xe9\xc3\x29\x01\x73\x9f\x85\xf0\xe9\x3c\xb4\xb9\xb3\x2e\x7d\x46\x5e\x09\x18\xc9\xb8\x91\x0a\x4d\xbc\x94\x80\xb9\x8b\xd7\xfc\xbc\xa6\x52\x5a\xf7\x59\x08\x4b\x97\x28\xd4\xdc\x8f\x2e\x2d\xb7\xc3\x25\xc9\xb8\xf1\x5a\xe7\x76\xaf\xb9\xdd\xec\x18\xb6\x53\x12\x8f\x42\xcd\x6d\x21\x84\xed\xba\xc7\x70\x4a\x11\xee\xc3\x41\x31\xc0\xa5\x00\x97\xe4\xdd\x46\xb2\x35\xf1\xc8\xd6\xdc\x9b\x30\x8a\x01\x2e\x05\xb8\x74\x9b\xf3\xb4\x6c\x62\x50\x3b\xf6\xde\x2e\x51\x0c\xd1\xed\x4a\xc0\xc8\xbb\x8d\x21\xba\x5d\x29\xad\x7b\xfb\x49\x31\x6c\x7b\x2b\x12\xb8\x19\xb7\x39\x1f\xb6\x85\x15\x03\x5c\xba\x87\x2e\xc1\x25\xaa\x37\x43\xde\x6d\x0c\xc9\xed\xcc\xae\x7b\x7a\xcd\x6d\x76\xc5\x40\xc3\xea\xb6\x3a\x02\x5c\xa2\x88\x33\xee\x4f\x97\x76\x50\x25\x86\xdb\x28\x59\x08\x61\x13\x8c\x31\x00\xab\x7b\x79\x4d\x60\x15\x54\x7b\xb9\xb7\xde\x54\x0c\xd9\x6b\x2a\xec\x92\x2f\x5d\xca\x5a\xdf\xc4\xc1\x90\x77\x1b\x03\xb0\x22\x9a\x33\x72\xf0\x9a\x1b\xa5\x62\xd8\x34\xc0\xc8\x16\x42\x80\x4b\xf4\x71\x46\x8e\xba\x54\xce\x3f\x09\xaf\x45\x6f\x04\x6d\x28\xe2\x8c\x0c\xfc\x03\xb4\x09\x2c\xac\x7c\x6b\xe8\xf1\x46\x2c\xac\x9d\x8c\xfb\xbf\x0d\x8a\x18\xb6\xf9\x15\xc3\xa9\x53\xb8\x03\xad\x31\x00\xad\x00\xb4\x24\xe5\xc6\xf0\x9c\x5e\x7c\x2e\x7a\x89\xc7\x60\x33\xd4\xb2\x69\x1e\xaa\x5e\x54\x6f\xf6\x18\xad\x6d\x8c\xc5\x50\x09\xc5\x55\xfd\xad\xa6\x24\x61\xab\x7c\x66\x34\xcc\x0b\x6c\xb2\xbc\x65\x49\x63\x78\x3d\x53\x25\x19\xf9\xb7\x31\xbc\x3a\x4f\xd8\x2a\xbf\x46\xeb\xd5\xf9\x66\xb0\xcf\x8c\x86\x64\x81\x22\x5d\x6e\xbe\x55\xf3\xa9\x95\x24\xcc\xc3\xbb\x43\x32\x1a\x41\x43\x02\x6d\xa4\x11\x14\x69\x04\x8d\x3c\xf5\x13\x92\x11\x00\x1a\xf9\x4c\xc9\xee\x35\x89\x65\xe5\xcf\xbb\x0f\xad\xab\x29\x28\xf3\x35\x86\x61\xfa\x70\x20\xcb\xa5\xa1\x61\xfa\x9c\x42\x83\x97\xd7\x1c\xfa\xc9\xec\x2a\x97\xd7\x1c\x1a\x3a\x85\x06\xcf\x44\x9b\xba\x44\x56\xab\x04\xaf\x39\x35\x04\xf3\x4a\xf4\xcf\xcf\x6b\x82\x37\xf9\xac\x31\x7c\x5e\xf3\xd4\x14\xbc\xbd\x26\xcc\x0b\x1c\xc8\x72\xeb\xfc\x67\x90\x69\x6d\x95\xec\x35\x3f\x33\x84\xd8\x64\xc9\x3a\xff\x99\x21\x6c\xb1\x02\x32\xc3\x66\x60\x62\x58\x3a\x5f\x74\x69\x19\x25\xae\x66\x39\x13\x6c\x69\x08\xe6\x95\x1d\x8a\x8f\x04\x8e\x22\x81\xa3\x21\xc9\x35\x46\x56\x5b\x64\xb5\x95\x9d\x11\x15\xc9\x1d\x45\x92\x46\xa3\xec\xa3\x93\x31\x6e\x73\x2d\x46\x40\x58\x76\x28\x3e\xc6\xe0\x99\x04\x2c\x0b\xc8\x8c\xc1\x33\xf9\x9f\x65\xfb\x75\x91\xea\x51\x8c\x4a\xba\x4a\x9c\x8d\x54\x8f\x22\xd5\xa3\x51\x9a\x2e\xb1\xda\xa8\x1e\x8d\xd2\x74\x09\x3a\x12\x3f\x1a\x12\x67\x23\x0d\xa4\x18\x55\xcd\x2a\x9b\xd8\x8c\x71\x87\x9c\x63\x64\xca\xc9\x91\x8d\x84\x91\x62\xdc\xc8\x39\xca\xd0\xd0\x8e\xc2\x44\xfa\x48\xa3\xc0\x51\xfa\x48\x91\x22\xd2\x90\x23\x1b\x09\x23\xc5\xa8\xd0\xa0\x1c\xd9\x18\xd9\x77\xf4\x91\x46\xf9\x74\x69\x87\x66\x22\x99\xa4\x21\x47\x36\xc6\xa4\x75\x42\x9b\x72\x64\x63\x4c\x5a\xe7\xe8\x96\x4f\x3f\xb7\xa3\x1b\x89\x26\x0d\x89\xb3\x31\xde\x1a\xa2\x1a\x58\x96\x7e\x6e\xbb\x30\x46\xaa\x81\x8f\x85\x40\x57\x29\x12\x54\x1a\x12\x67\x63\xbc\x8d\x27\x97\xf8\xb9\x74\x3e\x1b\x4f\xd8\x4c\xae\x2a\x52\x60\x8a\x51\xb9\xed\x27\xe8\xe7\xb6\x20\x23\x3d\xa6\xf1\x58\x1d\x11\x36\x47\xa2\x83\xb2\x69\x63\xcc\x5a\x57\x9e\xeb\x61\x8f\xc4\xac\x75\x3a\x9d\x4f\xd4\x7a\xf1\x46\x50\x9c\x2e\x56\x8c\x50\x9c\x48\xd3\x78\x60\x73\x84\xe2\x24\x9b\xc6\xb3\x95\xe8\x22\xc9\xa6\x48\xb2\x69\x48\x87\x8d\x24\x9b\x22\xc9\xa6\xf1\xb0\xac\x49\x36\xc5\xa8\x5a\xf7\x63\xc9\x50\x67\x8a\x51\xed\xd8\xa7\x78\xa3\x6a\x40\x10\x70\xd2\x61\x23\xad\xa6\x18\x01\xf5\xf3\xe8\x7c\xf5\x89\x99\x9c\x8a\x1c\xc4\xf8\xea\x92\xfa\x84\x52\x57\x23\x75\xa6\x18\x21\xed\x73\xe6\xe7\xab\x75\x86\xe4\x33\x2c\x2e\x86\x64\x64\x48\x3e\x67\x7e\x36\xb7\xab\x08\x2b\x4b\x35\x12\x5b\x8a\xb1\xfb\xe7\xd4\x50\xf7\xee\x1c\xdc\xe7\xd3\x50\xb7\x8a\x39\xb8\x0f\x2f\x8d\xd8\x52\xa4\xa0\x34\x9e\x33\xeb\x86\xd6\x8f\x20\xe8\xd2\x3a\xf3\x30\xd2\x2a\xac\x2c\xd6\x38\x4c\x5a\x36\x63\xdd\xa2\xad\x31\xb2\x19\x23\x50\xad\x67\x86\x4c\x5d\xc2\xdf\x51\xd9\x8e\x71\xfa\x1c\xca\x57\xd7\x33\x43\xa6\x37\x42\xd5\xd5\x64\x40\xd4\x6b\xa0\x99\x34\xea\x99\x21\xea\x35\x44\xb2\xbe\x35\xe9\xbc\x7a\x0d\x34\x93\x46\xdd\x8a\x9e\x91\x58\x52\x8c\x64\x7d\xeb\x6d\x7a\x9f\x7a\x0d\xac\x4b\x09\xa9\x31\xb2\x2e\x23\xa4\xad\xd9\x28\x41\x5a\x42\x4a\xa3\x9e\xb9\xb4\x7c\x77\xa0\x5a\x37\x2f\x16\x89\x25\x45\x62\x49\x43\xee\x69\x4c\x1b\x62\x23\xcd\xa4\x51\x9f\x3f\x4f\x79\xc4\xc4\x4f\x26\xa8\x34\xea\xce\x88\x8a\x24\x94\x22\xed\xa4\x41\x69\x3c\xa6\x8d\xbf\x31\x61\xfc\x24\xa6\x46\xba\x4a\x31\x91\x3a\xad\x60\x98\xae\x52\xa4\x9d\x34\x2a\xc7\x8c\x84\x52\xa4\x9d\x34\x2a\xc4\x4d\xec\x51\x4a\x4a\xa3\x42\x5c\x4a\x4a\x31\xed\xf8\xd2\xa8\x9b\x5e\x8b\x29\x7a\x26\x7b\x54\x62\x6a\x4c\x9b\xff\x8b\xb4\x93\x46\xe5\xad\x91\x50\x8a\x09\x0d\x28\x5b\x35\xa6\x8d\xaa\x31\x71\x9e\xeb\x70\x3b\xe7\x39\x81\xcc\x3a\xb4\xbe\xb1\x32\x92\x49\x1a\x75\xea\x27\x3f\x39\x31\x52\x25\xa4\xc6\xc4\x48\x4d\x20\xb3\x9a\xfb\x74\x95\x62\x3a\x85\x5a\xcd\xfd\xc4\x1e\xa5\x8f\x34\x2a\x17\x2e\x65\xb7\x73\x9e\xe5\x9e\xc6\x04\x08\x13\x20\x7c\x2f\xef\xce\x79\x4e\x30\x4f\xee\x69\x4c\xe0\x8d\x3e\xd2\x78\xb9\x70\xf4\x91\x22\x7d\xa4\x21\xf7\x34\xa6\xed\x4a\xc7\x44\x7d\xf5\x45\x5b\x10\x4d\x8a\x14\x91\xc6\x6b\x95\x90\x42\x8a\x89\xd0\xea\xcb\x85\x4b\x8f\xdb\x9f\xa3\x66\xab\xf3\x8f\xdb\xc1\xdb\x8b\xb6\x20\x9a\x14\xc9\x24\x8d\xd7\x2a\xa1\x96\x14\x13\xe7\xf9\xe5\xc2\xa5\xea\x76\x26\xa7\xdc\xd3\x98\xea\xb9\xbd\xbb\x68\x3c\xd9\xa1\xe9\x94\x5f\xb5\x4a\xd2\x6b\xe8\xc0\xdb\xcb\x85\x23\xaf\x14\x13\x8f\x5a\xee\x69\x4c\x3c\xea\xa4\x4e\xe1\xfb\x78\xcd\xe6\x35\x4f\xf9\xd5\x47\x43\xcd\x04\x43\xee\xbd\x5c\x38\x62\x4b\x31\x9d\xf2\xab\x55\xe7\xbb\x09\x06\x08\x5f\xb4\x05\xcd\xa5\x98\x4e\xf9\xd5\xd7\x33\xbb\x67\x9e\x4a\xab\xef\x72\xd1\x42\x38\x95\x56\x9b\xce\x0f\x5d\x12\xb3\x78\x31\x14\x89\x1d\x9a\x58\x97\xef\x59\x1d\x0c\xc9\xb4\xa1\x6f\xbc\x5c\xb8\x34\x0d\x32\x2d\x72\xb9\xa7\x31\xb1\x2e\x13\xeb\xf2\x1d\xba\xc4\xa3\x26\xbd\x34\xde\x61\xbd\x4f\x5d\x02\x84\xef\x99\xc9\x4c\xce\x04\x08\xdf\x33\x93\x59\x97\x09\xe6\xbd\x3b\x3d\x2a\xa6\xcf\xd7\xe4\x66\xbf\x50\x9c\x3a\x53\xa4\xce\x34\x5e\x64\x04\x75\xa6\x98\x18\x92\xed\x4c\xef\xe5\x99\x0c\xc9\xc6\x31\x4b\x30\x8f\x3a\xd3\x90\xba\x1a\x09\x31\x45\x42\x4c\x43\x96\x6a\x24\xc4\x14\x6f\x86\x64\xdb\xba\xcc\x91\x10\x53\x24\xbd\x34\x1a\x56\xee\xde\x66\x65\xbc\x09\xc1\x36\xd3\xfb\x86\x75\xd4\x99\x46\xc3\x50\x50\x67\x8a\x44\x93\x46\xc3\x50\x10\x4d\x8a\xb7\x8a\xff\xed\x76\xfb\x46\xa9\x78\x33\xfa\x1a\xde\xe1\x8e\x1a\x12\x9e\x68\xf9\xdc\xae\x21\x96\xa0\xcc\xd7\x78\x47\x0d\x31\xfa\x1a\xd7\xed\x66\xf4\xd1\x5c\x1a\x0d\xde\xd3\x5c\x8a\x34\x97\x46\x43\x46\xd0\x5c\x8a\xe4\x95\x46\x33\xbd\x6f\xa6\xdc\x0d\xc1\x1a\x56\xee\x86\x60\x34\x97\x46\x33\xbd\x69\x2e\x45\x9a\x4b\xa3\xa1\xea\x68\x2e\x45\x9a\x4b\xa3\x61\x28\x68\x2e\x45\x9a\x4b\xa3\x99\xf3\x34\x97\x22\xcd\xa5\xd1\x38\x79\x34\x97\x22\xcd\xa5\xd1\x80\x3f\xcd\xa5\x48\x65\x69\x28\xdb\x10\x6f\xf4\xdf\x7d\xa4\xa2\xcd\xf9\xbb\xe8\x12\x52\xaf\x61\xe5\xe8\x2a\x45\x9a\x49\xa3\x21\x23\xee\x62\xe8\x90\x7a\x6d\xd7\x66\x8c\x14\x94\xe2\xcd\xa3\x56\xf5\x21\xde\x9c\xe6\x9b\xd3\x2c\x1d\x36\x12\x59\x8a\xd4\x95\x46\x43\x46\xdc\x9c\xe6\x9b\x2d\x26\x47\x36\xde\x55\x97\xc4\x2c\x1a\xaa\x8e\x82\x52\xbc\xc5\x2c\x1a\x48\xbf\xeb\xb9\xdd\xe7\xe0\x38\xde\x55\x3f\xd5\x8a\x6e\x16\xc2\x8d\xfe\xa3\x99\x34\x3a\x48\x27\x9d\x14\x69\x26\x0d\x99\xaf\x91\x74\x52\xa4\x99\x34\x3a\x32\xe2\x6e\xba\xa4\x54\x6a\x0f\xe7\xf6\xbd\x3a\x28\x28\x8d\xbe\xd5\x1a\x22\x05\xa5\x48\x41\x69\xf4\x33\xe7\x19\x68\xb7\x58\x6a\x3f\xd3\xbb\xeb\x27\x52\xaf\x73\x31\x6f\x5e\x2f\x09\xa4\xd1\xef\xf9\xa7\x41\x41\x18\x29\xde\x6a\x9e\xf6\x2d\x3f\x1d\xef\x69\x4a\x82\xa2\xce\xab\xbc\x39\xba\xa4\x90\x86\x5c\xd9\x78\x4f\x33\x7a\x73\x7c\xa3\x63\x28\x08\x23\xc5\x9b\xd2\x74\x3f\x73\x9f\xf7\x4b\xf5\x68\x74\x5e\x25\xd5\xa3\x48\xf5\x68\xf4\x33\xcd\xbf\x73\xbb\xd1\x42\x5b\xdc\xa0\xe8\x06\x45\xfd\x4c\x73\x50\x74\x83\xa2\xce\x9c\xb9\x41\xd1\x0d\x8a\x24\xd0\xc6\x7b\x9d\xdb\xbd\x26\xda\x82\x92\x52\xa4\xa4\x34\xba\x69\x4e\x49\x29\xe6\x53\x09\x7a\x6b\x13\xc7\x0c\x9f\xe8\x23\x8d\xce\xab\xa4\x8f\x14\xe9\x23\x0d\x59\xb5\x91\x3e\x52\xcc\x18\xbf\xce\xab\xcc\xcc\x2e\xfa\x48\xa3\x5b\x10\x84\x91\x62\x16\x74\xe8\xbc\x4a\x1a\x48\x31\x0b\x3a\x74\xec\x1c\x29\xa4\x48\x0a\x69\x74\x5e\x25\x29\xa4\x98\x81\x56\xb7\x20\x32\x4f\x95\xce\xd1\xe8\xbb\x2a\x6e\xcc\x8c\xa9\xcc\x98\xea\xd8\xb9\xcc\x98\x22\x85\x34\x3a\x76\x2e\xc3\xa7\x0c\x9f\xba\x05\x41\x0a\x29\xd2\x39\x1a\xe3\x32\x20\x1b\x83\x62\x3e\xf5\x9d\x6d\x02\x99\xff\x99\x4f\x7d\x67\xa4\x49\xc6\xf8\xe5\x53\xca\xd9\x82\x20\x85\x14\xf3\x29\xe5\xbc\x05\x61\x23\x29\xa4\x98\x31\x7e\xc3\x26\x40\x0a\x29\x66\xbe\xe2\xc0\xce\xe5\xe2\x1b\x61\xfc\xc6\x2e\x5d\x11\xa9\x25\x45\x32\x49\x63\x88\xc2\x64\xf8\x94\x85\x27\x06\x7a\x25\x0b\x4f\x90\x49\x1a\x03\x23\x9d\x19\x53\x59\x0a\xc6\xd8\x4a\x10\x31\xf3\x15\x33\x5f\x51\xe2\x6c\x24\x9a\x14\xe9\x23\x0d\x89\xb3\x91\x14\x52\xcc\xa0\x68\x70\x0b\x33\x28\xca\x68\xb5\x81\x34\xc9\x68\x35\x42\x45\x63\xbc\x9e\x29\x6a\x40\xa8\x68\x0c\xd8\x9c\x01\x4c\x06\x30\x03\x01\x97\x01\x0c\xf5\xa2\x31\xcc\xe4\x8c\x6b\xcb\xaa\x3f\x8c\x5d\x2b\x21\xd2\x32\x8a\xb4\x8c\x86\xc4\xd9\x48\xcb\x28\xd2\x32\x1a\x83\x61\x4e\xcb\x28\x66\x1e\xe0\x38\x93\x96\x35\x94\x59\x43\x83\xe9\x91\x59\x43\x04\x8e\xc6\xc0\xdf\x11\x38\x8a\x04\x8e\xc6\x40\x85\x10\x38\x8a\x59\x28\x61\x9c\x49\x8b\x6b\xcb\xdc\xc2\x81\xf5\xc8\xd0\x86\xc0\xd1\x90\x0e\x1b\x09\x1c\x45\x92\x46\x63\x20\x38\x28\x1b\xc5\xcc\x2d\x1c\x67\xd2\xb2\x86\xa8\x17\x8d\x89\xe0\x20\x62\x14\xa9\x17\x0d\xb5\x7b\x22\x11\xa3\x98\x41\xd0\xc4\xf4\xd1\x32\x8a\x64\x8b\xc6\x3c\x93\x96\x5f\x97\x97\xdb\x79\xaa\x79\xb9\x9d\xb3\x27\x71\x36\xe6\xe5\x76\x10\x34\xd1\x16\x19\x04\x91\x2d\x1a\xb2\x69\x23\x85\xa2\x58\x54\x7b\x99\x3c\xd5\xb2\x2d\x9e\x58\xd8\x38\x12\x67\x63\x61\xe3\x14\xd9\x16\x13\x51\x48\x70\x28\x92\x08\x1a\x34\x89\x23\xa5\xa0\x48\x22\x68\x48\x9c\x8d\x05\x5c\x10\x0c\x1a\x13\x97\x41\x30\x28\x16\x70\x31\xcb\xb9\x7d\x23\x18\x6d\xa0\x31\x39\xa5\xb4\x81\x62\x01\x17\x12\x67\x23\xa5\xa0\x58\xc0\xc5\x34\x93\x0b\xb8\x28\xe0\x62\x22\x9d\x0b\xb8\xa0\x1b\x34\x26\xbf\xb3\x30\x52\x0a\x23\x45\xd9\xa3\x58\x18\x29\x05\x5d\x35\xd1\x7f\x84\x86\x62\x11\xb8\x9c\xe6\x3c\x69\xa1\x58\xc4\x28\x27\x67\xb4\x70\xb3\x0a\x23\x45\x8a\x6d\x2c\x8c\x94\xa2\x04\x8c\x14\xdb\x48\x68\x28\x16\xc8\x30\xcd\x79\x9a\x42\xb1\xc8\xc3\x9a\xfc\x4e\xf2\x41\xb1\x9c\x72\xf0\x30\x99\x8a\x50\x2c\x8f\x91\x47\xaf\x14\xd4\x52\x39\xe5\xe0\xcd\x79\x82\x41\xb1\x20\xf1\x27\xbf\x93\x7c\x50\x2c\xdc\x2c\xd9\xb4\xb1\x54\xb7\x2b\x59\x31\xd1\x2b\xa5\x1a\x79\x6e\xd6\x34\xe7\xc9\x07\x45\x12\x41\x63\xf2\x3b\xcb\xf6\xaf\x62\x39\xe5\xe0\xf1\x77\x04\x83\x62\x91\xc6\xf5\x31\x52\x0a\x66\xbf\x9c\x72\xf0\xe6\x7c\xe1\x51\x91\x08\x1a\x1f\xbf\x93\x52\x50\x24\x11\x34\x3e\x54\x5d\x69\x3e\xf1\xa9\xfc\x1e\xff\x66\x28\x0a\x28\x2a\xa7\x2c\x7c\x3c\xcf\xf6\x12\xbc\xb5\xef\x2c\x08\x8e\x59\x39\x15\xe0\x79\xaa\x04\x87\x22\xa5\xa1\x21\x29\x37\x12\x1c\x8a\xa5\x7b\xe6\x59\x25\x62\x01\x85\x0f\xf6\x9d\x55\x22\xaa\x49\x38\x68\x7c\x3c\x55\xc2\x41\xb1\x60\xa8\x3e\x34\x60\x19\xe6\xbe\x64\xb2\x0f\x75\x53\x86\x6f\xc5\x31\xfb\x76\x15\x9d\x48\x5b\x28\x12\x15\x1a\x1f\x68\xa7\x2d\x14\x89\x0a\x8d\x0f\xe3\x47\x5b\x28\x16\x3e\xd8\x77\x56\x09\x28\x2a\xbf\x12\x1b\x5a\x87\x3a\xe5\x94\xd8\xb0\x09\x50\x13\x8a\xd4\x84\xc6\xc7\x29\xa5\x26\x14\xa9\x09\x8d\xef\xac\x12\x86\x4f\x81\x4f\x1f\xa7\xb4\x08\x75\x16\x29\x18\x1f\x6a\x91\xe0\x50\x24\x31\x34\x3e\xec\x0c\x89\xa1\x48\x4d\x68\x48\xf4\x8d\xd4\x84\xe2\x83\xf6\x97\xe8\x1b\x1f\x7c\x13\x51\xa1\xa1\x8a\x67\x7c\x58\x43\x0f\x6f\x8d\x32\x72\x7c\x78\x6b\x94\x86\xc6\x37\xce\xed\x7b\x90\x09\x00\x8d\x0f\x65\xf3\x60\xe3\x1f\xde\xda\x67\x13\x78\x78\x6b\x0f\x6f\xed\xe3\xbe\x3e\xbc\xb5\x27\xfa\x46\x56\x09\x71\xa0\x48\x15\x68\xc8\xe5\x8d\xc4\x81\x22\x55\xa0\xb1\x2e\x5d\x4a\xfa\x89\x4e\x5f\x16\xc4\x23\x80\x49\x23\x68\x2c\x9e\x2a\x71\xa0\x48\x15\x68\x2c\x78\x4f\x1c\x28\x52\x05\x1a\x0b\xe7\xf2\x30\x7c\x1e\x74\xba\x04\xdf\x48\x23\x28\xd2\x08\x1a\x8b\x91\x42\x23\x28\xd2\x08\x1a\xb2\x7e\x23\x8d\xa0\x48\x15\x68\x2c\x9c\xcb\xc3\xc6\x79\x36\x45\x34\x96\xe9\xfd\x6c\xe3\x26\x92\x03\x1a\x8b\xfb\xfa\xb0\x5c\xa8\x02\x0d\x59\xbf\xf1\x91\x58\xf1\xf0\xc1\x16\x4f\xf5\x41\x92\x3f\xcc\x19\xa9\xc0\xf1\x79\x74\x49\x54\x53\xfd\xd4\x48\x23\x28\x3e\xb8\xa1\x65\x13\x78\x70\x43\x84\x83\xc6\xc2\xb9\x10\x0e\x8a\x0f\x1b\x47\x7e\x70\x7c\xaa\x37\x42\x03\x2d\x4e\xe9\x03\xb4\x08\x07\x8d\x65\x13\x20\x1c\x14\x1f\xe1\xc8\xf5\x7a\x4d\xe1\x48\xc2\x41\x43\x26\x71\x7c\x98\x48\x0f\x13\x69\x71\x4a\x1f\x26\xd2\xc3\x44\x5a\x36\x01\xda\x42\xf1\x91\x22\x26\xbd\x38\x3e\xf8\xf0\x07\x1f\xbe\xcc\x79\x32\x42\xf1\x41\x03\x2d\xe4\x23\xc5\xa0\xf8\x74\x73\xc9\x26\x40\x38\x28\x3e\xac\xa1\x75\x66\x32\x3e\x9c\x2a\xd0\x58\x67\x26\xe3\xc3\xa9\x02\x8d\xc5\x53\x7d\xe4\x50\x3c\x0c\x1f\x99\xc4\xf1\xe1\x66\x3d\x70\x69\xa1\x6c\xc8\x08\xc5\x87\xe1\xb3\xce\x9c\x47\x03\xd1\x08\x1a\x8b\xa7\x4a\x23\x28\x3e\x68\xa0\x65\x13\x78\xe6\xb9\x7d\xec\xfa\x35\xd8\x99\x07\x49\xfe\x6c\x6b\x68\x5e\x67\x21\x80\xa0\x67\x5b\x43\x93\x08\x72\x7c\x58\x43\xcf\x46\x9b\xa9\xe0\x71\x7c\xa0\x0d\x15\xa1\x79\xd9\x19\xa8\x08\x45\x2a\x42\xf3\xc2\xe3\x50\x11\x8a\x8f\xda\x28\xd7\x59\x1d\xd0\xe6\xd9\x8e\xd5\x54\x6e\x39\x56\xf1\xc4\xaa\x60\xca\x85\x7c\xac\xac\xa1\xaa\x36\x8a\x8c\xe7\x58\x19\x3e\x75\x3b\x4f\xf3\x42\x3e\x56\xce\x53\x0d\xde\x08\xa4\xd7\x1d\x33\x8c\x54\x84\xe6\xc5\x1a\xa2\x22\x14\xeb\x29\xfd\x63\x21\xd0\x06\x8a\x55\xf1\xf4\x8b\xdb\x5a\x71\xd6\x75\x23\xd1\xa4\x73\x1c\x2b\x13\x89\x8a\xd0\x94\x06\x1d\x2b\x6e\x88\x8a\xd0\xbc\xf6\x31\x8d\x48\x30\x28\x12\x0c\x9a\x17\xb7\x95\x60\x50\xac\xc9\x20\x73\x5b\x2b\x1a\xa8\x26\xa3\x04\xfc\x2b\xbb\xa9\xaa\x31\x74\x61\x67\x48\x0b\x45\x62\x42\xf3\xb2\x3a\x2a\x08\xaa\xb7\x51\xe2\xcb\x56\x1e\x55\x55\x27\x5d\x21\xc4\x58\x6f\x43\x77\x7b\x77\xec\x4c\x85\x4b\x55\x9d\xf4\xcb\xea\xa8\x20\xa8\xaa\x93\xae\x3a\x62\x24\x57\x14\xc9\x15\x4d\xd5\x11\x23\xb9\xa2\x48\xae\x68\x5e\x70\xbe\x22\xb2\xc9\x15\xcd\x8b\x5b\x50\x11\xd9\xe4\x8a\xe6\xc5\x6d\xa5\x53\x14\x09\x14\x4d\x99\xd9\x91\x4e\x51\xac\xaa\x11\xed\xcc\xec\x3f\x0c\x8a\xca\x07\xab\x8f\xcf\xc2\x7d\xad\x40\x8b\x96\xd1\xbc\x70\x98\xb4\x8c\x62\x7d\xbc\x04\xea\xa6\x02\x2d\x5a\x46\x33\x58\x25\x64\x8b\x62\xdd\xa0\x35\x83\x05\x41\xc4\x28\x92\x2d\x9a\x81\xa7\x5a\xe1\x53\xdd\x90\x32\x43\xf0\xba\xf8\x9c\xba\x2d\xa6\x19\xe0\x3d\x15\xa2\x48\x7e\x68\x06\x2c\x4d\x45\x53\xd7\x6d\xff\x4c\x45\x9f\x23\x31\xa2\x58\xd5\x44\x0a\x3c\x55\xd2\x44\x91\x26\xd1\x0c\xf0\xbe\x62\x7e\xaa\x9a\x48\x01\x5d\x49\xaf\x28\x52\x28\x9a\xe1\xcc\x7d\x3e\x58\x1d\x9e\xc9\x53\xad\xac\x21\x62\x44\x53\x86\x76\xac\xf0\xa9\x0e\xfd\xc4\xce\x50\x28\x8a\xe4\x87\x66\xc0\x4c\x52\x21\x8a\x75\xba\x1d\x33\x59\x31\xd2\xc4\x88\xa6\xb4\xed\x48\x8c\x28\x12\x23\x9a\x01\x3b\x43\x8c\x28\x92\x1f\x9a\xe1\x4c\x73\xa1\x39\xf2\x43\x33\xc0\x7b\xba\x43\xb1\x82\xa2\xc0\xfb\xa5\x42\x14\x2b\x28\x0a\x36\x81\x0a\x8a\x68\x12\xcd\x80\xb2\xa9\xcb\xbb\x2f\xfd\x3c\x73\x5f\x6a\x43\x5d\x46\x1e\xde\x13\x1c\x8a\x75\xb9\x1d\x11\xf3\x32\x7c\x5e\xb5\x9b\x08\x2b\x47\x82\x43\x91\xa8\xd0\x0c\x1c\x5d\xda\x42\x91\x2a\xd0\x0c\x7c\xda\x17\x96\xbc\xd1\x37\xe2\xbe\xbe\x2c\x97\x77\xf3\xcc\x53\xda\x76\x7c\x61\xc9\x1b\xbd\xe6\x3a\xb7\xef\xd7\xa4\x1f\x34\x83\x49\xfb\xa2\x94\xa9\x09\xcd\xc8\x7d\xa5\x26\x14\xa9\x09\x4d\x69\xdb\xf1\x4d\xe7\xf6\xcf\x45\x9d\x67\xe3\xbc\xea\x95\x45\x7c\x23\x35\xa1\xf8\x42\x88\xc8\x7d\x7d\x21\xc4\xbb\x89\xe2\x19\x01\x36\x6d\xa1\xf8\x6e\x1f\x6c\x46\x1c\xfb\x8b\xb2\xa1\x1f\x34\xe3\xae\x21\x1a\x5f\x3e\xd8\x9b\xdd\x8e\x84\xa4\x11\x14\x69\x04\x4d\x69\xdb\xf1\x2d\x46\x69\x93\x34\x33\xe2\x5c\x08\x07\xc5\xf7\x54\x36\x33\xbd\x29\x06\xc5\xf7\x57\xd9\xcc\x1b\x31\x67\xde\xed\x83\xcd\xc8\xd1\x25\x1c\x14\xdf\x1d\xde\x9f\xd2\xb5\xe3\x0b\x2e\xde\x6d\xea\xcc\x08\xda\x5f\xe1\x7d\x52\x41\x33\x9a\xf3\x14\x83\x22\x55\xa0\x19\x39\xba\xc4\x81\xe2\x5b\xdd\x0e\xda\x69\x04\x45\x1a\x41\x33\x82\x76\x1a\x41\xf1\xad\xc6\xd3\x9c\x27\x0e\x14\xdf\xd7\xc8\x73\x74\xdf\x6d\xdc\x44\x1a\x41\x53\xba\x76\xa4\x11\x14\x69\x04\xcd\x88\xc7\xa1\x11\x14\x5f\xc5\xd6\xa2\xe9\xfd\x32\x67\xde\x66\x40\x38\xba\x6f\x3b\xff\x1c\x2e\x7a\x23\xc0\xf2\x76\xa3\x74\x66\x32\x1b\xe7\x05\x2c\x91\x4f\xfb\x02\x16\xc2\x41\x33\x9e\xe9\x0d\x58\xe8\x07\x4d\x39\xdc\xf1\xed\x3e\x71\xd7\xd0\x99\xf3\xdd\xd0\x75\xdf\x1d\xf9\x48\x5b\x28\x12\x0c\x9a\x11\x1b\xff\x82\xa0\x77\x78\x4d\xde\xef\xcb\xf0\xa1\x1b\x34\x23\x48\x7f\x39\x64\xef\x30\x93\x91\x3b\x2f\x87\x8c\x60\xd0\x8c\x67\xc9\x70\xc8\xde\x0d\x3a\x33\xf1\x7e\x89\x02\x45\x32\x40\x33\xc9\x38\x78\x3f\xdf\x68\x7b\x5b\xf3\x64\x7b\xbf\x62\xfe\xef\xf6\xb6\x66\xe2\x8c\xbe\x52\xae\xde\x6d\xd5\xcc\x74\xe6\xbc\x9c\x29\x32\x40\x33\x71\x46\xc9\x00\xc5\x97\xe1\x93\xce\x9c\x47\x03\x51\x03\x9a\x27\x05\xfc\x45\x03\xbd\x20\x28\x21\x1f\x5f\x10\x44\x30\x68\x9e\xbc\xf0\x06\x82\xda\xa5\xf3\xf2\x04\xc9\x07\x45\x82\x41\x33\x71\x5b\x09\x06\x45\x82\x41\x33\x59\x08\x04\x83\x62\x8b\xfa\x89\xf1\x21\xee\x13\x1b\x5c\x3a\xd9\xde\x0d\x2e\x35\xb8\x94\xea\xf9\xe7\xee\x27\x39\x9f\x99\x4c\x6f\xaa\x3e\xb1\xa9\x8e\x98\x78\xa8\x8d\x9b\xd5\xb6\x55\x33\x4f\xb6\x77\xe3\x66\xd1\xf8\x99\x09\x65\x43\xea\x27\xb6\xe4\x35\x4d\x6f\xaa\x3e\xb1\x6d\xab\x66\x26\x1e\x6a\xe3\x51\xb5\x5b\x3f\xd1\x94\x0d\x37\x44\xb9\x67\x26\xd3\xbb\x09\x60\x51\xee\x99\x49\xf2\x0b\x01\x9f\xd8\xb2\xd6\xff\x99\xc9\x7f\x18\x14\x8d\xbb\xd5\x54\x5e\x4c\xa8\x9b\xc6\x00\x6a\x40\x2b\x99\xe6\x44\x7e\x22\x91\x9f\x99\x78\xaa\xad\x9c\x7f\xfa\xaa\x58\x1a\xca\x3f\xb1\xa9\xa7\x98\x4c\xde\x26\xba\xd5\x36\x47\x34\x6f\x9e\x6a\xc3\x11\xb5\x6d\xab\xcc\x1b\xb4\x53\xfe\x89\xb4\x7e\xe6\x8d\xa5\x69\x9b\x46\x8a\x0d\x14\xd1\x65\x8e\x0d\xea\xb4\x6d\xab\xcc\x9b\xa7\xda\x04\xb2\xda\x29\xc7\xc8\x29\x25\xe4\x13\x29\xf8\xcc\x93\xa1\x4d\xc8\x27\x36\xb0\x71\xdf\xe7\x9f\x6e\x3f\x35\x1a\xcd\x53\xf2\x3c\xb1\x9d\xca\x8b\x5c\xcd\x86\x73\x69\x5d\x3f\xcf\xec\xc3\x09\x37\x60\x70\x9f\xd9\x07\x0c\x48\xf0\xcc\x1b\xdf\xd8\x58\x19\xb4\x77\xe6\xcd\xd5\x6c\x96\x78\xdb\x2c\xf0\x3c\x19\xda\x8d\xe9\xd1\x36\x0b\x3c\x6f\x4c\x4a\xe3\x1a\xd1\xe5\x99\xb7\x74\xc3\xc6\x0b\x22\xc8\x33\x6f\xae\x26\x41\x9e\x48\x90\x67\x9e\x0c\x6d\x82\x3c\x91\x20\xcf\xbc\x31\x29\x04\x79\x22\x41\x9e\x79\x9f\xc9\x2b\xd5\x92\x20\xcf\xbc\xb9\x9a\x04\x79\x62\x5b\x6e\x07\xc3\xe4\x79\x62\x03\x06\x37\x26\x85\x3c\x4f\x6c\xbc\xa0\x1b\x93\x42\x90\x27\x76\x56\xc6\xcd\xd5\xec\x98\x94\x6e\x89\x9f\x0c\x6d\xf2\x3c\x91\x20\xcf\xbc\xf1\x8d\x04\x79\x62\x0f\xba\x64\xd2\x76\xb9\x92\x3d\x98\x4b\x5c\xcd\x2e\xae\x44\x90\x67\x9e\x0c\x6d\x82\x3c\x91\x20\xcf\xbc\x31\x29\x04\x79\x62\x07\x1b\xb7\x99\xdc\x21\x44\x8f\x3e\x31\x57\xb3\x8b\x2b\x11\xe4\x99\x27\x43\xbb\x6f\xbc\x88\x7d\x03\xc5\xcc\xe8\x95\x2e\xbd\xbc\x6f\x03\x66\x66\x33\x99\x66\x4f\xec\xbc\xa0\x93\xb6\xdd\x99\x33\x74\x79\x66\xe6\x6a\x76\xc1\xf0\xce\x0b\x3a\x69\xdb\x1d\x3b\xd3\xc1\x46\x36\xbd\x09\xf9\xc4\xce\x0b\xca\x88\x77\x9a\x3d\xb1\x6f\x5b\x65\x66\x94\x62\x47\xc4\xf4\x4d\xc4\xcc\x0c\xc5\x3b\x2f\xa8\x33\x67\x4e\x82\x37\x21\x9f\xd8\x39\x3c\xd9\xea\xe8\xcc\x99\xce\xe1\xc9\xfc\x4f\xd2\x3d\xb1\x17\xcf\x84\xcd\x1d\xa5\xdc\x79\x41\x19\xe7\xd2\x21\x43\x2f\x9e\x89\x3d\xec\x82\xe1\x9d\x39\xa3\xd8\x77\x24\xf9\x13\x3b\xb8\xc8\xe6\x3c\x21\x9f\xd8\x21\x43\x06\xc3\x1d\x32\xf4\xea\x76\x46\x74\x47\x29\xd3\xf3\x99\xd9\xf4\x26\xdd\x13\x89\xf5\xcc\xcc\x57\xec\x42\xdc\xb4\x73\x66\xe6\x16\xf6\x66\x90\xb9\x2f\x44\x90\x23\xb5\x9c\xd8\x37\x6a\xcc\x0c\x71\x89\xe6\xc4\x0e\x43\xf2\x38\xb7\x7b\xcd\xa6\xa1\xb9\xd7\x26\xd1\x9c\x48\x34\x67\x66\x1e\x20\xd1\x9c\x48\x34\x67\x9e\x1c\xee\x8e\x73\xe9\x1b\x74\xa6\x42\xe7\xb1\xe3\x82\x3b\xb4\xc9\x67\xd2\x8a\x7b\x77\x56\x46\xe6\xf9\x51\xd2\x89\x94\x74\xe6\xc9\xf6\xa6\xa4\x13\x29\xe9\xcc\x82\x0a\xa1\xa4\x13\xfb\x36\x36\x66\x39\x93\x16\x04\xf5\xe9\x76\x9c\x20\xd1\x9c\xd8\x79\x3f\x27\xdb\xbb\xf3\x7e\x28\xe9\xcc\x93\xed\x4d\x49\x27\x52\xd2\x99\xe5\xcc\x4f\xf1\x6e\xda\x39\xb3\xf0\x11\xfb\x77\xfe\xb9\x27\xed\xc9\x0b\xef\x72\xb8\x29\xe9\xcc\xc2\xf3\xeb\xcb\xed\x1b\x74\x66\x39\xb3\x0e\xed\xdb\x4f\x91\x5a\x98\x4c\x5e\x27\xf6\x53\xa4\x16\xeb\x41\x6c\x27\xf6\x6d\x81\xcc\x72\xa6\x22\x97\x88\xf4\xce\x3c\x79\xe1\x14\x78\x62\x67\x8f\x14\x3e\x22\x21\x9e\x38\xd8\x23\x65\x97\x7c\x8a\x63\x87\xc4\x23\x75\x9e\x79\x92\xc5\x07\x23\x85\x48\xcf\x2c\x88\x42\x5a\x3d\x91\xe6\xce\x2c\xa6\xf7\x70\x16\x66\x04\xb7\x73\x1c\xc9\xeb\x44\xf2\x3a\xf3\x24\x8b\x93\xd7\x89\xe4\x75\x66\x41\x85\x90\xd7\x89\x23\x1a\x64\x73\x9e\xae\x4e\x1c\x1b\xb3\x66\xe1\x23\x0e\xb9\x87\x43\xb1\xe7\x93\x2c\x4e\x6c\x27\x52\xd9\x99\x27\x59\x9c\xd8\x4e\x1c\x6c\x9c\x82\x28\x24\xaf\x13\x07\x37\xab\xf4\x3f\x75\x28\xe2\xe0\x83\x8d\x64\x5c\x41\xfb\x90\xb6\x3d\xc0\x5b\xc1\x22\x0e\x69\x3d\x03\x92\x15\x84\xe1\x80\x64\xe3\x36\xd1\xac\x12\xf2\x3c\x91\x2e\xcf\x3c\x49\xe3\x83\x55\x44\x97\x67\x16\x2c\x22\x79\x9e\x38\x94\x9c\x2e\x96\xce\x80\x79\x03\xc9\x53\xf8\x9f\x83\xb7\x36\xb2\xdb\x41\xfb\xc8\xe7\xf6\xdd\xf9\x07\x3f\x42\xc8\x27\x8e\x8d\x72\xf3\xb1\x74\x06\x78\x1b\xdb\xfe\x99\x0f\xff\x73\xe0\x73\x46\x71\x3b\x14\x1f\xe5\xdc\xbe\x5c\x34\xd8\x02\xec\x03\x8f\xf3\x58\x3a\x83\x35\x44\xac\x67\x3e\xfc\xcf\x21\x62\x36\xc0\xdb\x03\xc5\x87\xc4\x44\x62\x3d\xf3\x41\x18\x0e\xf0\x46\xa5\x67\x3e\x5c\x4d\x2a\x3d\x91\x4a\xcf\x7c\xac\x27\x2a\x3d\x71\xbc\x9e\x69\x3d\x0d\xc9\xd8\x63\x87\xd1\xe6\xc9\x0f\x27\xdd\x13\x49\xf7\xcc\x87\x57\x49\xba\x27\x0e\xde\xda\x49\x05\x27\xe4\x13\x29\xf8\xcc\x07\x69\x42\xc8\x27\x8e\xe6\x99\x67\x41\x88\xad\x8d\x66\xe8\x78\x95\x34\x7b\x22\xb1\x9e\xf9\xe0\x06\x69\xf6\x44\x62\x3d\xf3\x41\x9a\xd0\xec\x89\x83\x0b\xf7\x9c\x05\x01\x1d\x47\xd7\x4f\x5e\xe5\x10\x29\xa3\xe0\x33\xc9\x25\xc7\xd1\xf5\x73\xc9\x18\xda\xe5\x5a\x22\xa5\x9a\x48\xc2\x25\x9e\x53\x68\xb4\x5b\xe2\xcc\x87\xfd\x2f\x2e\xee\xdb\xe7\xfe\x54\x29\x5e\x6e\xc7\xb5\xd1\x1f\x49\xc7\x75\x9f\xb6\x8b\xb9\x7b\x96\x14\xf6\x89\x53\x82\xf7\xdc\xe0\x9a\x0e\x4d\x3d\x81\xeb\xdc\xc6\x5b\xba\x20\x2e\x8d\x91\x38\xb7\x49\xb6\xbe\xa0\x21\xdc\xd0\xdc\x4e\xdb\xfa\xd2\xb9\xa8\xf5\x75\x2e\xea\xfc\x3a\x17\xfb\xbe\xb8\xe5\xd4\xe2\x14\xea\x22\x35\xb2\x96\xd6\x49\x8d\xc4\x6f\x6f\xf7\xeb\x44\x8b\x3e\xaf\xf9\x59\x0f\x9f\x78\xcd\x87\x02\xfd\xb6\x5b\x90\xae\x5d\x08\x33\x7e\x16\xc2\xb7\xf7\xf9\xeb\x6a\xdd\xc5\xea\xe2\xbb\x2f\x32\x0f\xa9\x7c\xc4\x6f\xaf\x87\xeb\xea\xfe\x69\x9f\xff\xf6\x42\xb8\xe2\xf4\x4c\xfb\x3c\x79\x8f\x78\xe9\xfc\x27\xa9\x84\xae\x47\xbc\x76\xfd\xd4\x48\xd7\x23\x7e\xe7\xec\xea\xb3\x73\x3d\x68\x77\xc4\xef\x9c\xe3\x92\xc6\xf5\xa1\x18\xbe\x73\x64\x2b\x6b\xdd\xb1\x82\x0f\x85\x19\x4c\x86\xcf\xfc\xfc\xe4\xcf\x86\xc7\x45\x1b\x35\x79\x8f\x7d\x1c\x68\x5f\xcc\x2e\x9e\x93\x3f\xfa\x69\x82\x11\xfb\x88\x64\x02\xe2\x67\xa3\xfe\xc6\x39\x7b\xe3\x9f\x12\xd4\x28\x79\xec\xe3\x32\xfb\xe2\xeb\xe2\x39\x12\x33\x5c\x34\xf2\xe7\x20\x81\x65\xf8\xd9\xa8\x69\x7e\xc4\x68\xb3\xfa\xf8\x0a\xdf\x3c\x07\x33\xf4\xd3\xac\x23\x0b\x12\xa3\xdd\x86\xd8\x47\xfc\xcc\xb3\x6c\x26\x7f\x22\x26\x9f\xd5\x91\x9d\x5f\x58\x66\xc8\x0a\xfe\xb9\x6b\xc4\xc7\xc5\x5e\x5e\x27\xf3\xaa\xed\x41\x5e\xdc\xec\xe5\x34\x51\xf6\xdd\x17\x23\x7a\xc5\x93\x42\x53\x5c\x6c\x2e\xca\xfb\xea\x1a\x42\xff\x11\xc3\x88\xe7\x94\xdc\x62\x6e\x2f\x2e\x78\xb6\xa1\x10\xca\x88\xeb\x24\x6e\xf1\x15\x48\x63\xc4\xc5\x05\x3f\x36\x0e\xa1\x8c\xb8\xd2\xc9\x2d\x39\xff\x3c\xcf\x14\xe1\xf6\xdd\xe9\x65\x44\x7a\x19\xb1\x88\x77\xd3\xcb\x88\xeb\x3e\x09\x12\x8f\x8b\x8f\x8b\xe2\xd6\x2c\x82\x65\xeb\xa1\x43\x91\xc2\x56\x11\x8a\x74\x28\xe2\xda\x2e\x6d\x4a\x55\x43\xa6\xf7\xda\xae\x62\x4a\x8e\x28\x2c\x33\x84\x5e\x42\x4a\xc3\x20\x9b\x2f\xf4\x12\x52\x9a\xdd\x45\xcf\xdc\x13\x65\xad\xcf\x33\xb1\x48\x14\x12\xd2\x09\x36\x2d\xd3\x66\xed\x69\x73\x2e\xa6\x6b\x6f\x3d\xc9\xd1\xde\x10\xf6\x77\x4f\x8e\xf6\xa6\x40\x60\x23\xbc\x2e\xfa\xa7\xe3\x94\xed\x2d\x2e\xee\x0d\x25\x85\x03\xe9\xdd\xc5\xcd\xca\x25\x67\x02\xe7\xb3\xe3\x20\xc9\xd1\xc0\x14\xfe\xab\xa1\xa8\xa1\x53\x3b\x3f\xc4\xfe\x97\x41\x91\x1c\x23\x4b\x4e\x62\xfd\x7a\x11\x37\x36\xa7\x53\x36\xfd\xf7\xec\xee\xd9\xe3\xdf\xfd\x8d\x7b\x0c\x52\xfc\xaf\x5e\x38\x80\x92\x9c\xc1\x08\x61\x9f\x9e\x49\x2a\x5d\x27\xf5\xa4\x7f\xb7\x2b\x2b\x9d\x4e\x55\xe3\xdf\xed\x80\xfe\x14\x14\xfe\xfd\x73\x5b\xd8\x29\xfd\x57\x43\x12\xbc\x93\xb2\xb6\x21\xa4\x3d\x30\xca\xda\x26\xb9\xce\xbf\xdb\x15\x96\x4d\xea\x92\xfe\xe7\xf6\xe6\xf6\xfe\xef\x37\x52\x19\x34\xdd\xa7\x21\x17\x65\x6a\xa6\x53\xe5\x32\xec\xe5\x98\x14\xbb\x4c\x92\x2b\x7f\xdf\x4a\xd5\xc9\x94\x49\x83\x91\xaf\x49\xf2\x05\x53\x16\x42\xfa\xfd\x73\x6f\x6b\x49\x2e\x5a\x08\x5b\xa1\x28\xc9\x45\x4b\xd2\xb9\x7e\x9f\xba\x68\x5d\x15\xba\xf9\x6c\x66\x32\xc9\xf1\x4a\x52\x93\x7e\xb7\xcb\x50\x4a\xca\x81\xfd\xe7\xf6\x3d\xc3\xd2\x29\x35\xf5\xfb\xe7\xa6\x26\x52\xf9\xaf\x86\xe4\x65\xa4\x27\x98\x68\x5b\x2c\x2d\x3d\xdb\x8a\x4e\xea\x02\xfd\x6e\x7f\xb6\x11\x96\x9e\x77\xfe\xfb\xf6\x1d\x44\x4f\xa2\xe7\xf7\x67\x90\x85\xcd\x93\x22\x3c\xf7\x77\x79\xa6\x4f\x2c\x6c\x7e\x7f\xbb\x32\x68\x52\x92\x27\xa9\xc5\x73\x7f\x41\x43\x66\x9d\xb2\x3b\xf7\x97\xce\xc5\xe4\xe2\xbd\x2f\x6e\xdf\x26\x09\xa2\x27\x45\x78\xee\x6f\xb3\x9d\x49\xf5\x9d\xa4\xec\xce\xfd\xcf\x2e\xbc\x2f\xea\x7c\xd7\xcf\xec\x9f\xc3\x33\x87\x67\x6e\x7b\x24\x89\xa5\x27\xb1\xf4\xfb\xab\x5e\x13\x0a\x28\xbb\x73\x7f\x56\xb3\xea\x3b\x49\xd9\x9d\xfb\x7b\xbd\x11\x43\xe4\x99\xde\x7d\x9b\x48\xe9\xd9\x5e\x5e\x7a\x36\xb5\x74\x7f\xed\xfc\xb3\xb9\x38\x5d\xd4\xd0\xe7\xdd\x3f\xef\x3e\x34\xe4\xc3\x09\xb0\xdf\xdf\xf6\x93\xd3\xf3\x79\xf7\xcf\x6b\x4e\xcf\xfc\x74\x69\xb9\x7d\xab\x4b\xa4\x67\xb9\x7d\xb9\x7d\x79\xcd\xe5\x73\x6c\xab\xe6\x96\xbd\x92\x9e\x65\xe8\xf6\x0c\xb9\xc9\xd3\x25\xa5\x78\x92\x1a\x3c\xf7\xda\xfb\x67\x52\x7c\x27\x29\xbe\x73\xaf\xcd\x48\x27\xc5\x77\x52\xbd\xdc\xee\x73\x08\xb7\x27\x21\xf5\x5b\xfe\x48\x12\x59\x4f\x42\xea\xf7\x2a\xcb\x45\xb7\xef\xe5\x74\xaf\x4d\x29\x27\x15\x79\x92\x8a\x3c\xf7\xda\xac\x5c\x12\x60\x4f\x75\x83\xc0\xbd\xb6\x6d\x9b\x6a\x74\x7b\x74\x7b\x73\xfb\xde\xf9\x92\x00\xfb\xbd\x36\x83\x96\xd4\xe7\x49\x02\xec\x37\xd9\xb7\x24\xc0\x9e\x6a\xd2\xcf\xa1\x9f\x7b\xe7\x4b\x42\xea\xf7\x9a\x5a\xdf\x0e\x59\xaa\xc9\x33\xa7\xce\xef\x9d\x2f\xa9\xdd\x73\xaf\x4f\xeb\xb7\x2e\xed\x8d\x2c\xef\x4a\xd0\xff\xfc\xf2\x46\xdb\x34\xce\x57\xd0\x10\xf8\xad\xdb\xcd\xca\x57\x70\xfb\x76\xb3\x52\xdd\xd4\x52\xbe\xa2\xd6\xb3\xa1\xdb\xd6\x65\xbe\xa2\x91\xdf\x9e\x58\x12\x60\xcf\x57\x34\x20\x59\x97\xb6\x75\x99\x19\x7d\x49\x10\x3d\x89\x9e\x67\x46\x5f\x52\xbb\x27\xd5\xbd\x3d\xe5\xeb\xdd\x4b\x46\x10\x3d\xd5\x47\x97\x9a\xef\xfe\x18\xa5\x1d\xff\xca\xec\xd0\x24\x4e\x9e\x04\xc8\xf3\x75\x86\xee\x31\xf2\xdb\xe4\xcc\x2a\x16\x27\x91\xf1\x54\xab\xce\x2f\x43\xf7\x7a\xcd\x1d\xd5\xca\x61\xe7\x5b\xa7\xfa\xfa\xe7\xb6\x27\x73\xb8\xbd\xfb\xeb\x99\x1b\xc4\x73\xb8\xf7\x92\x11\x2e\x4f\x82\xe0\x39\x14\xaf\xd9\x0c\xf2\xc6\x90\x4c\x28\x2c\x89\x69\x27\xe5\x76\x72\xe8\x86\x6e\x68\x7d\x5b\x04\x39\x80\x35\x51\xec\x24\x6e\x9d\xc3\xf4\xee\xc3\xd7\x1c\x1a\x5a\xfa\xc9\x14\xa8\x53\x97\x96\xa1\x03\x02\x42\xdb\x59\x3d\xda\x24\x60\x9d\xea\x5e\xef\x39\x46\x23\x3f\xcf\xed\xcb\x45\x43\xf7\x99\xde\x7b\x85\x67\xc2\x56\xa9\x6e\xa7\x24\x09\x58\x67\x71\xcf\xa4\x6c\x4e\x52\x2f\x27\x0b\x47\x26\xb1\xe9\x24\x1a\x9d\xe3\xae\x75\x99\xd4\xbd\x49\x0a\xde\xe4\xb8\x4f\x9f\xa5\x77\x6f\x6e\xe9\xdd\x2b\x3c\x47\x7b\x9c\x48\x75\x7a\xf7\x0a\xcf\x5b\xd4\xe9\x0f\x83\x42\xfd\x9b\xa4\xf0\x4d\x56\x08\x35\xbd\x3b\xa3\x26\xbd\x41\xd7\xb6\x1f\x92\x5e\xeb\x5e\x6d\x9c\x2c\xb2\x97\xde\xcd\xc4\x24\x25\x72\x72\xdc\x64\x44\x7a\xf7\x82\x4f\x0a\xe6\xe4\xb8\x89\xb8\x24\x34\x9e\xc4\xc4\x73\xdc\x14\x43\x7a\xa3\x67\x6e\x13\x39\xd3\x71\x4a\x22\xe4\x49\x4c\x3c\xa7\xa0\x4b\xec\x91\x77\x63\x42\x4e\x71\x7f\x40\xa1\xf1\x24\x26\x9e\x53\x72\xfb\x36\x83\xd3\xbb\xed\xdf\x9c\xcc\xbe\x17\x18\x08\x94\xe7\x64\x3d\x89\x90\x27\x31\xf1\x4c\x73\x29\x29\xb4\x93\x94\xd6\xc9\x09\xbc\x29\xad\x93\xde\x8d\x09\x39\x59\x79\xe2\xde\x49\x69\x9d\x9c\xce\x67\xc9\x5a\xcf\x5a\x6f\x3a\x9f\xdd\x9e\x75\x7e\x18\xcf\xcd\x1e\x27\xc1\xf0\x9c\x76\x4c\x35\x89\x82\x27\x91\xee\x9c\x3e\x5d\x2a\x06\x64\x6f\xe9\x59\xbd\xcf\xf4\xda\xd2\x45\xba\x73\xfa\xb4\x6e\x89\x0b\x71\xe7\xfb\xf2\xee\x8f\x2e\x6d\xeb\x3b\xdf\x97\xd6\x1f\xcf\xdc\x2b\x3d\x53\x13\x4a\x6f\xd5\xa5\xcd\x17\xe7\x3b\x78\xa6\x75\x2f\xa8\x9d\x6f\x5b\xfa\x5b\xdd\xbe\x13\x92\xf3\xcd\x94\x7b\x81\x81\xa0\x76\xbe\x9f\x73\xf1\x73\x71\x0f\xf2\x6d\xab\x7c\x9b\x7e\x36\xfd\xb4\x55\x2a\x75\x93\xd4\xb8\xc9\xf7\x19\x25\x56\x86\x68\x76\x16\x9e\x48\xc2\xd8\x49\x8d\x9b\x2c\xe8\x90\x14\xa0\x49\xef\xc6\x84\x9c\xeb\xb9\xe8\xdd\x21\x84\x42\x83\xe9\x85\x10\x4a\xd5\xe4\x0c\x32\xc5\xa1\x93\x00\x74\xce\xaf\x01\x61\x2f\xbf\x10\x22\x37\xb7\x4f\xef\x3e\xdd\x6e\xa3\x7e\x59\x04\xaa\xd2\xe4\xbc\xf4\x73\x99\xf3\x9b\xb1\xcd\x48\xbd\x24\x4a\x9c\x44\x89\xb3\x7a\x65\x49\x94\x38\x89\x12\xe7\xe7\x7c\xb8\xa5\xf5\xcd\xc3\x66\xb4\x5a\x12\xdf\x4d\x02\xbb\x59\xc9\xaf\xd4\x76\x0c\x28\xb5\x9d\x54\x9b\x9f\x1d\x25\x4e\xaa\xbd\x24\xd5\x5e\xf2\xd3\xdc\x6e\x4f\x6e\x7b\x89\xe6\x67\x1f\xb6\x4b\xcd\x9e\xac\x04\x4c\x7e\xec\x8a\xc2\xc3\x49\x5c\x38\x1f\x33\x56\x09\x98\xa4\x04\x4c\xae\xdb\xab\x4c\x4a\xc0\x24\x51\xe2\x5c\x4d\x30\x91\xe0\x24\xf6\x9b\x6b\xf4\xcc\xed\x78\x26\xf5\x5d\x72\xdd\x4e\x7e\x52\xe6\x25\xa9\xef\x92\x2b\x74\x14\x10\x4e\x6d\xfb\x9f\xb9\x66\xfd\xdc\x7c\x68\x12\x17\xce\xaa\x3c\x25\xb1\xdf\xd4\x6c\xbf\x75\xb3\x5d\xa9\x59\x9b\xcd\xda\xac\xac\x60\x01\xe1\x24\x20\x9c\x6b\xd7\x10\x02\x47\x29\x97\x5c\x61\x9d\x8a\x2e\x49\x94\x37\xd7\xe9\x99\xc5\x1b\x59\x9b\x75\x1f\xa1\x4a\x22\xc0\x49\xe8\x37\xd7\x33\x4a\xc5\x80\xd8\x93\x5f\xf6\xb2\x32\x2f\x49\x7d\x97\xfc\xb2\x1d\x04\x82\x93\x6a\x2f\x59\x91\xa0\x24\x10\x9c\x04\x82\xf3\x1b\x7d\xe2\x4d\x7d\xa6\x66\x6d\xbe\x10\xac\x55\x1f\x6e\xd3\x40\xf9\xbd\xf5\xd3\x82\x15\x0f\xce\xff\xc0\xd3\xbe\xb8\xe7\x52\x7b\xdd\x5e\xbc\xfb\xeb\xf6\xcd\x72\xe6\x77\x6b\xc1\xa5\x66\xf7\x6e\xaf\x2e\x55\xd3\xe6\x35\x97\x6c\xe9\xef\x0e\x9b\x26\x71\xe4\x24\x8e\x9c\xff\x59\x24\xfb\xa2\xf9\xb9\xd7\x6d\x7e\x99\x5d\xa2\xca\x49\x38\x39\xbf\xd3\x6b\xda\xe7\xdb\x76\x5b\xf3\x6b\xa3\x16\x47\x4e\xe2\xc8\xb9\x05\x83\x6c\xf3\x17\x47\xce\x4e\x06\xa7\x66\x4b\x6f\xb6\x74\x87\x56\x93\x00\x72\x12\x39\xce\x0e\x98\x26\x61\xe1\xd4\x2c\xd8\x7e\x79\xa6\xdd\xbb\xd9\xbd\xfb\x59\x32\x4c\x78\x41\xe2\xdc\xcf\xd0\xd9\xd2\x05\x89\x73\x3f\x53\xf1\x33\x15\x37\x07\x99\x7b\xd6\xf9\x4f\x43\x9f\x86\x8a\x77\xff\xbc\x91\xcd\xbf\x3f\x1a\xb2\xf9\x0b\x12\xe7\x6e\x9f\x57\xc3\x25\x09\x19\xe7\xce\x7d\x69\xcb\x78\x2e\xfd\xdc\xd1\x8d\xd4\x79\x7e\x22\xc7\xb9\x6f\x01\x91\xa4\xa2\x4b\x12\x47\xce\xdd\x7a\x57\xc3\x25\x29\xd7\x92\x7b\x4f\x2e\x7e\x2e\x7a\x66\xdf\x73\xbe\x07\xcf\x0c\x9e\xd9\x97\x8b\x9e\x19\x74\x69\xfc\x99\x43\x91\x84\x9c\x93\x20\x73\xee\x53\x2f\xa0\x8e\xb0\x72\x56\xcb\x23\x29\xf7\x92\xd4\x79\xc9\x6a\x79\xa4\x0e\x8a\x54\x7d\xc9\x7d\x57\xcb\x4b\x22\xcf\xa9\x47\xe3\x6a\xe5\x29\x05\x93\xfa\x76\x1d\x72\xff\xce\x33\x87\x8b\x5e\x77\x19\x2d\x66\x42\x67\x11\x38\xa7\x98\x84\x9c\x53\xdf\x88\x94\x07\x7f\x49\x90\x39\x89\x27\xe7\x61\xaf\x13\x4f\x4e\x2a\xc2\xe4\x91\x34\x74\xeb\x12\x33\x61\xdc\x1a\xba\xb5\xbe\x13\xe9\xb2\xe3\x83\x49\xc8\x39\x89\x35\xe7\x51\xbc\x11\xa3\x5f\x45\x98\x3c\x38\xa5\x7d\xdb\x07\x49\x90\x39\x0f\x5b\xa5\xe8\x72\x52\x1f\x26\x8f\xae\xf3\xc5\xbb\x43\x9d\x61\xf3\x17\x25\x4e\x2a\xc2\xe4\x79\xde\xc8\xe6\xaf\xf8\x4b\x9e\x9b\x4e\x4f\x1d\x97\xd1\x37\x11\x97\x27\x5b\x5c\x81\x97\xa4\xc0\x4b\x9e\x9b\x84\x4c\x1d\x6c\x88\x12\x67\x55\x00\x92\x28\x71\x52\xe0\x25\xcf\xf3\xe1\x5e\xad\x6f\x1b\x20\xcf\xcf\x80\xbc\x06\x79\x07\x47\xb2\x73\x4b\xa9\xbf\x46\x69\x3b\x04\x79\xda\x2a\x15\x6f\x49\x9d\x99\xf0\x5d\xa6\x0d\x84\x50\x76\x25\x7f\xec\x3b\xd5\x57\x92\x08\x72\xfe\x6e\xe3\xb9\x59\xe7\xd4\x77\xc8\x23\x7f\x76\x06\xf5\x56\x92\x0a\x2b\xf9\x7b\x3c\x13\xc0\xf4\x0d\x29\x99\xba\x7e\x12\x3a\x4e\x42\xc7\xf9\x63\xb9\x28\x98\x92\x04\x84\xb3\xa3\x34\xa9\x4f\xad\x6f\x12\x39\x3b\x20\x93\x44\x82\x53\x9f\x5a\x67\xb9\x74\x3e\x43\xe7\x33\xd0\xb7\x4f\x1d\xea\x74\xa8\xf3\xd9\x69\x85\x87\x93\x0a\x2b\xf9\x63\x44\x77\xc4\x41\xdf\x38\x93\x8f\xe7\xaf\xfa\x4a\x12\x3a\xce\x1f\xcb\xba\x7f\xbe\xd1\xe6\x0f\xf2\x0a\x96\xf8\xf2\xcc\x6d\x81\xe4\x15\xbc\x26\x36\x41\x94\x38\x2f\xfe\xa7\xe0\x6d\x12\xbc\xcd\xab\x9c\x8b\xc5\xc5\xe6\xe2\xeb\x62\x77\x71\x2f\xed\x05\xc9\x04\x6f\x93\x12\x29\x79\xed\xa0\x43\x12\xca\x4d\x82\xb7\xf9\x38\xf9\x82\xb7\x49\xb8\x36\xaf\xf7\xdc\xee\x99\x3b\x0b\x25\xaf\xf7\x71\x71\x7f\x0e\x11\xdd\xbc\x9a\x7f\x72\x20\x04\x76\xf3\xb2\xa5\x0b\xde\x26\xc1\xdb\xbc\xc6\x70\x71\x0f\xc8\x60\x8f\x90\x71\x4f\xea\x9f\x24\x85\x4f\xca\x15\xfc\x33\xb9\x7d\x5b\x20\xe5\xe2\x55\x88\xcf\x26\xf1\xd9\x72\x45\x5d\xda\x86\x48\x12\x9f\x2d\xd7\xce\x0a\x49\xc2\xad\x69\x6c\x56\xa0\x5c\x3b\xb5\x3a\x8d\x5b\xe7\xb7\x59\x52\xae\xa2\x9f\xd9\xed\x1b\x0b\xca\x55\xb4\x8e\x23\x18\xdb\x65\x28\x17\x57\x43\xc1\x94\x24\x3e\x5b\xae\x7a\xfe\x39\x5c\x9c\xfb\xa2\xbd\x4e\x28\x36\x8d\xac\x9f\xfc\x0f\xa5\x55\x92\xd2\x2a\xe5\xe2\x16\x8a\xd6\x26\x61\xda\x72\x3c\xff\xc1\x72\x51\x61\xa5\x5c\xd6\xbb\x50\x6c\x52\x4c\xa5\x5c\xe6\xe7\xe0\x55\x28\xad\x52\x2e\xce\xf3\xd8\xee\x44\x12\xa6\x2d\x17\xc3\x67\x3c\xfa\xb9\xbd\x8a\x12\x58\x82\x42\xb8\x49\xd0\xb6\x04\xb8\x24\x68\x9b\x14\x61\x29\x21\x78\xa3\x1d\xb4\x4d\x2a\xac\x94\x00\x69\x45\x6b\x93\x30\x6d\x09\x0c\x1f\xd1\xda\x34\xb6\x01\x53\x02\x9b\x51\xa1\x95\x34\xb6\x01\x53\x02\xf6\x50\x7c\x36\x89\xc8\x96\x70\xbe\x11\x08\x12\x91\x2d\x87\x77\x18\xa8\xcf\xd1\x3c\x13\xa5\x28\x5a\x9b\xc6\xf6\x54\x4a\x78\x74\x1e\x6d\x21\x76\x5b\x42\x35\x19\x9a\x86\xb6\xfd\x53\x4e\xd4\x40\x24\x37\x89\xdd\x96\xc0\xd5\x18\xdd\xbb\x77\xef\x0e\xe7\x05\x66\xd3\xe8\xfe\xc9\x30\x57\x53\x25\xa9\xa2\x52\x24\x8b\xa7\x21\x00\x32\xb6\x17\x53\x02\x22\x66\x0c\xd3\x66\xfb\x34\x45\xf4\x2d\x0d\x26\x92\x0a\x2b\x25\x72\xf2\x06\x13\x69\x6c\x20\x2b\x31\xe8\xe7\xf4\x35\x37\x82\x95\x98\xce\x45\xb7\x6f\xcc\x2a\xf1\x7c\x8e\x69\x7a\x6f\xb0\x2a\xf1\x7c\x8e\xcf\x3f\xb7\xa9\x53\xe2\x01\x81\x4f\x43\x1b\x97\x8a\x34\xe8\x34\xe0\xd2\x58\x6e\x7f\xc3\x9f\x06\x85\xba\x2b\x49\xdd\x95\x12\x0f\x42\xb0\x8a\xc6\xa6\x4b\x4a\x3c\x93\x97\xbf\x24\x9a\x5d\xa2\x21\x14\xcd\x4e\xea\xae\x94\x08\x21\xd4\x5d\x49\x73\x33\x2a\x25\xee\xf8\x52\x9a\x80\x50\x31\x96\x22\xf3\x39\xcd\x9d\xbe\x92\xe6\x06\xc2\x22\xf3\x39\x4d\x40\xa8\x26\x4b\x89\x3b\x12\x95\x94\x66\x49\x33\x18\xd7\x4f\x43\xc1\x33\x37\x1e\x96\xc3\x7a\x28\xc6\x92\x14\x63\x29\x69\xc7\x93\x93\x62\x2c\x69\x6e\xe8\x2b\x69\x67\x31\xa4\xc9\x1a\x9a\x1b\xf3\x4a\xba\xf5\x73\x47\x19\xd3\xdc\xdc\x49\x49\x26\xef\x64\x0d\xcd\x8d\x87\x25\x3d\x9e\xc9\x31\x9b\xd1\x33\x77\x6c\x2d\x4d\xfc\x88\xea\x2d\x25\x01\xd7\x09\x1d\x27\x20\x4c\xcd\x33\x59\x43\x73\xbb\x62\x25\x9d\x51\xda\x31\xc0\x34\x01\x61\xb2\xad\xcd\xed\x91\xa5\x79\x7b\x26\x2f\x7d\x8a\x16\xcd\xcd\x9d\x14\x7a\xc7\x49\x7d\x98\x24\xb9\xa0\xdc\xec\x11\xa5\x60\xd2\x84\x8e\x77\x34\x74\x48\x93\xb9\xa1\xaf\xdc\x8f\xce\xc3\x3c\xf5\x5d\xca\xbd\xf3\x1d\xd2\xe4\xad\xcd\x8d\x72\xe5\x46\xd1\x4f\xde\xda\xdc\xde\x5a\xb9\x9b\x2e\x15\x23\xbf\xb9\x93\x72\x0f\xff\x84\x79\x8a\xbe\x94\x7b\xf8\x27\xc7\x6c\x3e\x6e\x67\xe3\x4c\xa4\x89\x0c\x87\x72\xb3\x71\x66\x35\x9e\xdb\xdd\x2a\x19\x7f\x3b\xab\x77\xdf\xb1\x9c\x22\xdd\x30\x4d\x48\x36\x21\x99\x74\xc3\xa4\x20\x4c\x9a\xdb\x6e\x2a\x99\xcd\x38\xf9\x60\xf3\xf5\xcc\xec\x76\x48\xa6\x2e\x4c\xa1\x0e\x9b\x14\x84\x49\x2a\xc1\x94\x6c\x63\x99\xdb\x8a\x4a\x73\x73\xad\x25\xa3\xab\x26\x78\x9b\xe0\x2d\x33\x7c\xa6\x58\xe5\xdc\x80\x56\x32\x67\x4f\xb2\x46\x52\x33\xa6\x64\x48\xa6\x58\x4c\x52\x2c\xa6\x64\x2e\xc7\xec\x9e\xd9\x3d\xf3\x8c\x7c\xf7\xcc\xee\x99\xed\xfc\xd3\x1b\x75\x6f\xd4\xcc\x25\x98\x37\xb7\x81\x56\xc4\xbd\xd3\xe4\xec\xcd\x6e\x94\x90\xba\x13\x8f\x33\x37\xf4\x95\x7c\x46\x1e\x8f\xa3\x2a\x4d\xc9\x9f\x19\x22\x06\x34\x87\xce\x9f\x65\x88\xc7\x99\x30\x4f\x6a\x60\x9a\x82\x77\xb2\x50\x4a\xc1\x22\x9d\x64\x14\x59\x28\x45\x16\x60\x9a\xd0\x71\x6e\x8e\xa7\x08\x9b\xa7\x93\xa1\xa2\xe0\x4d\x29\xcc\xae\xc9\xbe\x9b\xdb\xa2\x2b\x52\x03\xd3\xe4\x40\xce\x4f\x43\x0c\x0a\xb9\x2c\x69\x6e\x53\xae\x14\xfc\x88\xec\x95\xa4\x7a\x4e\x29\x07\x19\x38\x90\x13\x8e\x16\xa6\x87\x42\x39\x69\x2e\xb7\x0b\x8a\x4d\x2c\xd2\x5c\xba\xc4\xd5\xf8\x36\xf2\x25\xd5\x73\x4a\xe1\xe4\xab\x9e\x93\x54\xcf\x29\xc5\x5e\xf7\x09\x0c\x7d\xb0\xae\x70\x4a\x55\xcf\x49\xaa\xe7\x94\x62\x32\xa8\x9e\x93\xd4\xcb\x29\x44\x5b\xd3\x87\x20\x56\x2f\xa7\x10\x58\x4d\x6a\xe2\xa4\x6f\xa3\x5b\x91\x01\x97\x54\xc8\x49\x4a\xe3\x94\xc2\xf3\xff\xf0\x4d\xdf\x76\xf2\x4a\x59\x6e\x07\x6b\x5f\xd4\xfa\xd2\xa5\x8d\x67\xe9\xdb\x49\x10\x45\xb6\x5a\xfa\xc4\x80\xbe\xcd\x05\x97\x87\xe9\xa1\xce\x4e\xfa\x36\x09\x55\x1e\x44\xcc\xc7\xe8\xfb\x36\xdf\x54\xe4\xa0\xa5\x8f\xd1\xf7\x6d\xc8\x2b\x0f\xd3\xf8\x43\x42\x7d\xdb\x01\x2c\x8a\xfb\xa7\xef\xf6\x46\xd9\x3f\x71\x2e\x1f\x53\xee\x63\xca\x3d\xf9\x5c\xd4\x3a\x53\xee\x61\xdf\x7d\x10\xec\x63\xb5\xa9\x8f\x9f\x3e\x08\xf6\x41\xb0\xa7\xfa\x27\x03\xed\x63\xa0\x3d\x18\x49\x79\x43\x49\x59\xa0\xf2\xb4\xf3\x4f\xcf\x7c\x74\x49\x70\xe4\x63\xb5\x7d\x8f\x77\x87\xde\x4a\x06\xa5\xef\xd1\x3a\xc7\x51\x32\x51\x52\x39\xa8\x3c\xcb\x0c\xc1\x22\x29\x12\x54\x2a\xf2\x51\x91\xa0\xf4\x6d\x74\x2b\x15\x7a\x7f\xac\xb6\x8f\xd5\x46\xa7\x33\xa9\x23\x94\x3e\x58\x57\x79\xd2\x32\x93\x92\xaa\x42\xa5\x0a\x47\x7e\x00\xf0\xdb\xc6\x5b\xa9\x42\x48\x12\x94\xd2\xf7\x6a\x28\x9f\x8b\x1a\x62\xca\xd5\xac\x9f\xcd\xed\xdb\x4e\x2b\xf5\x4d\x7f\x1a\x14\x5f\xf3\x59\x36\x7b\x55\xaa\x30\xef\x07\xf3\x3e\x98\x57\x6d\x80\x1f\xeb\xed\x83\x79\xf5\x0c\x36\xff\x53\xf9\xa3\x52\x79\x80\xca\x1f\x25\x89\x51\xa5\xda\x58\x3e\xfe\xe7\xd7\x3d\x73\x7a\x26\xff\xf3\xdb\x04\x57\xa9\xf3\x3c\xd3\x68\xc1\xbc\x2a\x92\xaf\xee\x51\xfa\x18\x7f\x87\x5a\x94\x26\x95\x94\x3f\x2a\x2a\x95\x27\xa9\x50\x49\xf2\x53\x79\xcf\xc0\x80\x37\xe9\x4e\x85\xe0\x62\x52\xfe\x28\xa9\x74\x54\x4e\x0e\xc5\x07\xc9\xa4\x3b\x95\xb7\x78\x26\x3b\xef\x63\xe7\xbd\xb6\x0b\x75\x8f\x92\x82\x47\xe5\xb5\x09\x7c\xf0\xe9\xdb\xe6\x5e\xa1\x44\x98\xd4\x28\x4a\xdf\x4e\xb2\x2b\x0d\x10\xca\x9d\x4a\x0b\x14\x35\x93\x42\x55\xa2\xb4\x36\xf8\x94\xb6\xf3\x2f\xd3\xda\x27\x1d\xd2\x02\x45\x8d\x29\xbf\xc4\xaa\x56\x70\xfb\xce\x80\x4c\xaa\x12\x25\x55\x89\x0a\x99\xba\xa4\x1c\x51\x5a\xc1\xed\xe3\x5c\x1c\x2e\xee\xd7\xa4\x1e\x97\xa4\x6c\x25\xb9\x5a\xa5\xf3\x00\xe5\x63\x25\xf9\x58\xa5\xb3\xc5\xe4\x63\x25\xf9\x58\xa5\x0b\x9b\x4b\xbd\x4a\xb2\xac\x4a\xc7\x3b\xac\xe4\xf6\xe4\x76\x43\x27\xcb\x2a\xc9\xb2\x2a\x5d\x30\x7c\x01\x18\x59\x56\x85\x76\x59\x92\x5e\x95\xe4\x55\x95\x2e\x18\xbe\x78\x95\xaa\x12\x15\x35\x79\x93\xca\x43\x69\x65\x9d\x67\xb1\x2e\xa8\xb3\xa0\x0e\xa1\xb0\xa4\x1c\x51\x5a\x8c\xa9\xc3\xa0\x29\x40\x94\x14\x20\x2a\x23\xe9\x27\xbb\x69\xed\x98\x53\xa1\xa0\x95\x16\x80\x59\x4c\xa4\x61\xb7\x51\x41\x28\x2d\xd6\x10\x0d\xab\x74\x92\xbb\x16\x0f\x70\x70\x8d\x16\x0f\x70\x55\xb7\x57\x9d\xaf\x3a\x5f\x35\xf4\xea\x3c\xbb\x49\x21\xa1\x32\x5e\x03\x82\x6f\x5a\x1b\x3d\xca\x40\x57\x2e\x7c\x93\x62\x41\x65\x74\x6f\xc4\x6e\x5a\xec\x26\x25\x5d\xd3\x62\x37\x2d\x76\x93\xea\xad\x69\x49\x26\x5a\xac\x21\xe5\x57\x93\x62\x41\x49\x79\xa0\x42\x6f\x2a\x2d\x84\xf6\xda\x84\x76\x99\xd8\xe3\x25\xa5\x65\x6d\x53\xa7\x10\x77\x4a\xea\x01\x25\xf5\x80\x8a\x02\xa8\x49\x3d\xa0\xa4\x1e\x50\x99\x67\xce\xcb\x73\x59\x1b\x0b\xca\x3c\x13\x0c\x08\xc8\x7d\x2b\xd3\x82\x55\x24\x28\xc9\x7d\x2b\xca\x9a\x26\x45\x82\x92\xb2\x40\x65\x9e\x09\xc6\xc6\x59\xc3\xed\x76\xef\x85\xae\x52\x24\xa8\xa8\x60\x9a\x54\x07\x4a\x4a\xff\x94\x39\x4c\x45\x46\xca\xb2\xb4\xa7\x38\xc8\x42\x68\xab\xf2\x53\x28\x14\xa5\xc5\xaf\x5b\xcb\x33\xed\xc9\x0b\xb5\xb4\x36\x85\x5d\x94\xe1\x4c\x6b\x99\x8a\x3b\xaa\x55\x3e\xbc\xfd\xe2\xba\x29\xfd\x53\x3e\x99\x11\x6b\x9d\x67\x2e\x17\xff\x19\xe4\xfb\xda\xc8\x70\x2b\xfd\x53\xbe\xbd\x5d\xdc\x97\xb4\x15\x15\x80\xca\xb7\xc3\xbb\xb7\x2a\x3f\xb7\x2a\x3f\xe5\xcb\x6e\xdf\x38\x71\x5f\x3b\x98\x5d\xbe\xbd\x27\xdf\xd7\xc6\x89\xfb\xda\xcc\x54\xf9\xca\xb9\x58\x5d\xd4\xd0\x26\x0a\xef\x6b\xe3\xc4\xad\x1e\x50\xf9\x5e\xad\x47\xcf\x64\xb9\x7c\xfb\x04\xc1\xad\xe6\xcf\x7d\x6d\xd4\x28\xdf\x06\xff\x5b\xe9\x9f\xfb\x02\x17\xdf\xd0\xa5\xa4\x9f\x2c\x97\x6f\xea\xfc\x76\xc8\xee\x2b\x19\xba\xa5\x4b\xc9\xbb\xb3\x5c\x64\x27\xdf\x57\xf2\x4c\x96\xcb\x0a\x1a\xda\x88\x72\x5f\x2c\x17\xd5\x26\xef\x6b\x03\xcb\xad\x48\x50\x59\x67\x3c\xb7\xeb\x76\x5f\x5c\xb7\x95\x3c\xf3\x36\x9e\x9b\xca\x2a\x6b\x47\x37\xee\xeb\xd6\xd0\xad\xa1\xec\x35\xb7\xeb\x76\x5f\x5c\xb7\x75\xc6\x33\x1b\x10\xae\xdb\xda\x7b\xc7\xad\x8e\xd0\xad\x80\x50\x59\x8f\xa1\xcb\x9e\x89\xc3\x5a\xd5\x3f\x8b\x7e\x16\xfd\x6c\x06\x64\x03\xd2\x7d\xed\x23\x54\x45\x36\xd0\xad\x3a\xd0\xad\x02\x50\x59\x3b\x64\x7c\x5f\x8f\xdb\x1f\xad\xef\xcd\xf4\xbe\x1e\xad\x73\xdd\xd6\xe7\xdd\x1f\xad\x6f\x5c\x7a\xa8\x9f\xdc\x57\xd5\xd0\x06\x9d\x87\xa6\xc9\x7d\x6d\xec\xb9\xaf\xed\xba\x3d\x9b\xfe\xfb\xdf\x06\xc5\xad\x4a\xd0\x7d\x6d\x43\xe6\xb9\xb2\xae\xbd\x26\xc5\x46\x9d\xe7\x3a\x63\x20\xd7\x4e\xd1\x9f\x47\xb2\xce\x7d\x35\xbd\xd8\xe0\xf3\x48\x1a\xbf\xd5\xfe\xb9\xaf\x8d\x3a\xcf\xd5\x7d\x96\xe6\xf6\x6d\x81\x3c\xd7\x74\xbb\x0c\xba\x6b\x5b\x19\x4f\xd8\x2b\xef\xbe\x86\x2e\x6d\x13\xe2\x09\xf7\xb9\x68\x08\x37\x50\x3c\x92\x72\xef\x6b\x9a\x14\xdb\xef\x79\x08\x34\xdc\x97\xc4\xb6\x6b\x23\xc4\x13\xba\x8b\x9f\x4f\xbd\x6d\x80\x27\x0c\xad\x7f\xe6\xe9\x06\x8a\x27\x4c\xcf\xfc\x34\xb4\x0d\x83\x47\x11\xbb\x5b\x49\x9e\x5b\x2d\x9e\x27\x7c\xbe\xff\xe7\x8d\x36\x2b\xf4\x84\xe5\xdd\xa5\xc0\x5d\x4b\x43\x67\x41\x2c\x6b\x74\x63\xc9\x13\xa3\xf1\x5c\xbe\xea\xc6\x92\x27\x26\x0d\x2d\xf3\x74\x63\xc9\x13\xb7\x13\x75\xcb\xe9\xbd\xc3\x76\x86\x1e\x65\xe4\xee\xb0\xbd\xa0\x3b\x6c\x2f\xe8\x89\x7b\x4b\xbf\xd5\xf0\xb9\xc3\xa5\xa1\x6d\x7a\xdc\x2a\xfa\xdc\x4a\xf9\x3c\x71\xef\xf3\x77\x90\x17\x17\x82\xdb\x77\x3e\xf3\xad\xfa\xce\xad\xec\xce\x13\x97\xdb\xb7\x95\x71\x87\x6d\x65\x3c\x71\x97\x8d\xbc\x03\xd8\x08\xdb\xca\x78\xd2\x0e\x75\xde\x2a\xf3\xdc\x61\xbb\x38\x4f\xda\x1b\xcb\x1d\xc0\x86\x72\x3d\x4f\x4a\xfa\x29\x05\x4e\xb9\x9e\xc7\x11\xf4\x5b\xb9\x9e\x5b\xb9\x9e\x27\xed\xe0\xc8\xad\x32\xcf\x1d\x36\x42\x3c\xb8\xa1\x3b\xdc\x6e\xbf\xdd\x5e\x3d\xf3\xf6\xee\x1b\x13\x9e\xf4\x9e\x8b\x6e\xcf\x6e\xdf\x7e\xdd\x1d\xb2\x86\xb2\x86\x86\x7e\x5a\xf7\x2a\xf3\x3c\x69\x78\xcd\x6d\x7a\xdc\x61\x2f\xff\x47\x29\xad\x3b\x6c\x2f\xe8\x56\x99\xe7\x51\x4a\xeb\x0e\x45\x97\x8a\x2e\x7d\x9e\xb9\x09\x9c\x3b\x6c\x7b\xe4\x51\x0b\xeb\x56\xae\xe7\x56\xa0\xe7\xb9\xad\xe6\x00\x0c\xc2\x06\x83\xe7\x8e\x3e\xc7\xa3\x9f\x3b\x0c\xf6\x38\x00\x7d\x2b\xd7\x73\xab\xc1\xf3\xdc\xd1\x80\x6c\x3b\xe6\x56\x7c\xe7\x51\xf6\xea\x56\x7c\xe7\x0e\xdb\x43\x7a\xee\xa4\x9f\xd5\x27\xae\x9e\xb9\xc3\x52\x77\xa8\xde\x7d\xfb\x4b\xcf\x7d\x9f\x7f\xea\xe7\x76\x86\x9e\x3b\x7b\xa3\x6a\x3c\x37\x6a\x3c\x8e\x4a\xdf\xaa\xee\xdc\x61\xd3\x40\xcf\x6d\x6d\x86\xd7\xb4\x79\x3d\xb3\x98\x4b\xaf\x7e\x6e\x2f\xe8\x51\xa2\xea\x56\x75\xe7\x0e\xdb\x9c\x79\xd4\x98\xba\x43\xd3\xa5\xe6\xf6\xed\xd3\xdc\xa1\x7b\xf7\x6d\x96\x3c\x4e\x06\xdf\x01\x5c\x04\x70\xe1\xc4\xed\xad\x6c\xce\xad\x5e\xce\x93\xcf\xd0\x0d\x33\x64\xb3\x2c\x4f\xb6\xb1\x28\x94\x73\x07\xc0\x92\x93\x91\x97\x70\x1b\xb6\x3d\xf2\xe4\xa4\x75\xb9\xb5\x4a\xe3\x3c\x39\x1b\x25\xb9\xb5\x61\x9b\x25\x4f\xb6\x7b\x87\x1d\x3e\xbb\xc3\xf4\xcc\xa2\xf5\x69\xe8\x36\xbd\xf2\xe4\x62\xe4\x25\xdc\x2a\xa2\xf3\xe4\xc7\x3f\x3f\xef\xbe\xe1\xe9\xc9\x67\x7a\x7f\x1a\xfa\x74\xbe\x7a\x4d\x60\xa5\xb2\xce\x93\xab\xa1\x5b\x56\xdc\xf2\xcc\x6e\xbd\x2f\x73\x69\x53\x2f\x4f\xee\x3e\xc7\xd2\xd0\x86\xa7\x07\x87\x75\x07\x10\x24\xdb\xff\xc9\x50\x51\xb6\xff\xad\x88\xce\x93\xa1\xb7\x9a\x38\xb7\x9a\x38\x4f\xd9\x26\xd2\xad\x7e\xcd\xad\x62\xcd\x53\x76\x38\xf2\x56\xaa\xe6\x56\xaa\xe6\x71\x4a\xf2\x56\x95\xe6\x56\x95\xe6\x29\xdb\xd1\xb9\x9d\x27\xb8\x9d\x15\x78\xca\x74\x3b\x2b\x43\x01\x9a\xc7\x59\xc2\x5b\x01\x9a\x5b\x01\x9a\xa7\x58\x86\x91\x99\x10\xb7\x99\xf0\x60\x52\xee\xb8\xc9\xdc\x5b\x05\x99\xe7\xf1\x35\xd5\x7e\xb9\xe3\x5e\xf6\x0f\x2e\xe3\x56\xd8\xe5\x56\xd8\xe5\x79\x76\xee\xe9\xad\x86\xcb\x1d\x37\x6f\xfb\x3c\x5d\x97\x8a\x86\x8a\x86\x4e\x3f\x8b\x67\x16\xcf\x34\x3f\x95\x79\xb9\xd5\x77\x79\xd4\x1c\xb9\x63\xf1\xcc\xbd\xec\x1f\xa5\x40\xee\xf8\x78\x23\x4b\xbb\x16\xcf\xdc\xfe\xc7\xff\x11\x76\xf7\x48\x14\xeb\x38\x76\x80\x73\xaf\xa2\x77\x60\x5d\x09\xe0\x4f\xec\xd8\xde\x83\x7e\xab\x26\x98\x9e\xae\xf6\xcc\xfe\x5d\x0f\x1f\x9f\x83\x0e\xe6\x05\x37\x51\x5d\x89\x14\x45\x90\x00\x88\x73\x4e\xec\xac\x78\x0c\x5d\x62\xb0\x7b\xc5\x1f\x5d\x35\x50\xec\x0c\x76\xb7\xf9\x8f\xdb\xc5\xb2\xbf\xd8\x6b\x47\xef\x73\x5f\x17\x8d\x7c\x25\x5e\xfb\xac\x38\x29\xf6\xa9\xa1\x0a\x2e\xba\x22\x9d\x20\xc9\x12\x7b\x65\x28\xfa\xcc\xbf\x24\xb6\x0a\xb2\x2d\xb1\x57\x1c\xd2\x27\xf7\x0b\xa0\x23\xc8\xb6\x74\x6a\x05\xb1\xab\xa9\x27\xdb\xd2\x69\x10\xc4\x7e\x79\x89\x0a\x24\xfa\xbc\xfc\xf3\x76\x3b\x13\x9f\x16\xec\xfd\xf6\x05\x2a\xba\xe8\xb3\x08\x05\x82\x6c\x4b\xec\x65\xd4\x7d\xbe\x9e\xf9\x68\xa8\xec\xb7\x9f\xbc\x8c\xfd\x31\x30\x65\xbf\xfd\x5c\x93\xf7\xd1\x7a\xd9\x6f\x3f\x8f\x75\xfb\xe3\xe2\xe7\xa2\xcf\xf2\xea\x52\xd9\x6f\x3f\xad\xa3\xa4\x59\x82\x26\x4b\x3f\x43\xe7\x79\x19\x3b\x2f\xe3\xb4\xfd\xd2\x5d\x89\xfd\xf5\xcc\xae\x4b\x2a\xe5\xf7\xb2\xca\x7e\x4e\xd3\x47\xa5\xfc\x5e\x39\x89\x8e\xa0\x3e\x76\xbe\xc3\xce\x77\x38\x79\x99\x74\x57\x82\xee\x4a\x3f\x7d\xff\x43\x1c\x72\x6c\x5a\xe7\x65\x52\x51\x09\x2a\x2a\x1d\x45\x7c\x10\x4c\x89\xa3\xf2\x0e\xfd\xe2\xa4\x10\x4c\x09\x12\x29\xfd\xaa\x6a\x8b\xa0\x94\x12\x07\x37\xe1\x0a\xcf\xdc\x3d\xf3\xf0\xcf\x42\x25\xc4\x71\x78\xe6\xe1\x99\x1c\xdf\x43\x24\x40\xe3\xa4\x5f\x95\x56\x0d\x60\x9d\x80\xd2\xe9\x68\xb2\xe3\xe0\xdf\x1f\xe5\xd1\xf7\x9b\xe3\x73\x70\xe5\x8f\xda\xd9\xfb\x1d\xfa\x99\x6e\x4f\xb7\xd7\x41\x5b\x1c\x36\xea\x83\xe1\xde\x16\x42\xb2\x24\x41\x88\xa4\xdf\xd6\x92\xa3\x36\xe3\x38\x98\xe3\xb3\xe9\x7c\x37\x9e\xf6\x64\x6c\xcb\x41\x81\x24\x8e\x4a\x15\xf4\xe7\xa7\x21\x0e\xfa\x51\xa6\xda\x1f\xbb\xf7\xd1\x0d\x08\xc3\x7d\xec\x36\xc7\x30\x74\xc3\x33\x6d\xd4\x07\x6b\xa6\x4e\xd2\x9f\xc3\xe7\x18\xde\x88\x35\x3f\x05\x3c\x89\xc3\xf6\x7b\x4c\xcf\x34\x97\x08\x91\xc4\x61\xa7\x7d\xfa\xba\x78\xb9\xe8\x76\x3b\xc3\x61\xa7\x3d\xec\xb4\x8f\xe5\xed\x28\xdb\x8e\xa3\xec\xb6\x3f\x6b\x94\x60\x68\xa8\x93\xf4\xe7\x32\x20\xa7\x2e\x95\x7b\xdf\x1f\xab\xce\x01\x58\x73\x9c\x1a\x62\xb0\x04\x4c\x82\x72\x49\x7f\xd6\x54\xbc\x34\x74\x69\x88\x33\x75\x5c\x1a\xba\x34\xf4\x1a\xba\x4b\x43\x97\x86\xea\x70\x24\x48\x96\x04\xc9\x92\x8e\x08\x38\x68\x95\x04\x00\x57\x7f\x7f\x9e\x69\x9f\x27\x59\xd2\xdf\x35\xc8\xb7\x6f\x64\x9f\x7f\xd7\x5c\x82\xa1\xa1\x63\xd2\x5f\x4e\x34\x01\x93\xa0\x5c\xd2\xdf\xf4\xee\x96\x8b\xe3\xf1\xcc\xa6\x75\xf6\x7e\xb0\xf7\x77\xfa\xc4\xaf\x91\x17\x40\x7c\xeb\x76\x01\xc4\x21\x80\xf8\x9a\x01\xb1\xd3\x02\x9a\x75\x55\x21\x11\xb5\xc5\x46\x94\x31\xf7\xef\x5a\x17\x4f\x17\x6b\xd6\x7d\xf6\x64\xa2\x21\x41\x34\xa4\xaf\x00\x32\xf8\xf5\x51\x7e\xfd\xd8\x0a\x18\x15\x01\xef\x12\x95\x2a\x18\x2b\x80\x0c\x39\x82\x28\x0b\x1f\x9b\x99\x4c\x2d\x24\xc8\x84\x0c\x65\x1d\x41\x2d\x24\x62\xf7\x4f\x29\x86\xe0\xd7\x47\x79\xf2\x63\xab\x0c\x5a\x90\x10\x09\x32\x21\xe3\x8f\x10\xb5\x2e\x0e\x17\xa7\x8b\x97\x8b\x9e\x79\x78\x66\x25\xb2\x03\x90\x2e\x20\xe8\x06\xba\xc7\x20\x1a\x12\x44\x43\x06\x25\xfd\xa0\x0f\x12\xf4\x41\xc6\x56\x69\xa0\x88\xd0\xf9\xd0\xf9\x4a\x92\x06\xb5\x90\x88\x8a\x00\xc6\xf6\xea\x12\x67\x9f\x22\xc8\xf8\xad\x01\x11\xe4\x47\x05\xf9\x43\x59\x47\x44\xf3\xcf\x5a\x2e\xc6\x4f\x7c\x1c\xcd\x1b\x35\xb7\xfb\xc4\xd4\x42\x22\x6a\x9f\x1f\x3f\x4e\x1f\xb5\x90\x88\xca\x41\x0e\x10\xe4\x20\x1a\x12\x51\xab\xcd\xf8\x75\x9f\xd8\x6a\x43\x49\x64\xfc\xba\x91\xe7\x11\xd0\x0e\x19\x3f\x79\x9c\x18\x46\x69\xf8\x27\x8b\x23\x05\x12\xa4\x40\xc6\xef\xf5\x35\x2d\x17\x51\xcb\xc5\xf8\x7d\x46\x49\xc4\x1f\xd3\xed\x9f\xd7\x9c\x5e\xb3\xd6\x90\xa1\x04\x23\xa8\x85\x04\x99\x90\xa1\x04\x23\x82\xef\x10\xe5\x3b\x8c\x5d\xe4\x17\x7c\x07\x98\xc7\xb1\x57\xc6\x3c\x28\x89\x04\xed\x90\xb1\x5b\xd2\x49\x88\x44\xd4\xc2\x32\x2a\xea\xfd\x0b\x87\x82\xa2\x48\xc4\xe9\xd9\xb2\x5e\xc1\xa1\x20\x33\x32\x28\x95\x07\x45\x91\x88\xcb\x4b\xf0\x32\x42\x8a\x21\x2e\x2f\x31\xcd\xa9\xcb\x67\xa9\x25\x65\x60\xa4\x8b\xe0\x65\xc4\xad\xbf\x56\x47\xda\x23\x11\xb5\xa4\x8c\x5d\x2e\x83\xbc\x48\x44\x95\xa8\x8c\x9d\x47\x48\x6c\x24\xe2\xf6\x4c\xfe\x48\xdc\xbe\x40\xad\x33\x63\x5f\x86\x6b\x81\x89\x5a\x60\xc6\x6e\x0b\x22\x44\x12\xa4\x47\xc6\x2e\xef\x40\x73\x24\xe2\xd1\x90\x00\x32\x44\x17\x84\x48\xc6\x21\xbd\x46\x81\x24\x68\x8e\x8c\xe3\xd0\x90\xf0\x80\xe6\xc8\x38\x0e\x13\x8d\xeb\x11\xe5\x7a\x0c\xfc\x6d\x11\xd2\x16\x84\x48\x06\x38\x49\x84\xf0\x20\x2a\x13\x3a\xe8\x65\x07\xb1\x91\x00\x5a\x1d\x64\xac\x23\x25\x23\x80\x56\xc7\x8a\xa8\xb3\x56\xab\xa0\x24\x32\xa0\x3c\x82\x68\x48\x64\x25\x36\x07\x94\x47\x64\xad\x56\x91\xb5\x4c\x0d\x80\x8e\xa0\x0f\x12\xf4\x41\x46\xf0\x86\x93\x97\x91\xb5\xf8\x8c\x30\xf2\x59\xb9\x85\xa0\x0f\x32\xe2\xd2\x90\xb5\x84\xce\xc7\xc8\x9f\x86\x24\x0e\xb2\x96\x94\x91\xd6\x3c\xca\x1e\x41\xd2\x63\x24\xc7\x87\x88\x47\x90\xed\x18\x29\x7c\xa5\xd0\x11\x10\xb7\x23\xcf\x75\x51\x3f\x2b\x12\x18\xaa\x03\x22\xad\x10\xd9\x3c\xb3\xea\x32\x22\xeb\xe0\x33\x28\x74\x8c\x7c\x34\x54\x4b\x43\x64\xad\x09\x23\xad\x4f\x64\x3b\x82\x6c\xc7\x40\x1c\x14\x64\x3b\x82\x6c\xc7\x50\x08\x10\x64\x3b\x22\x6b\xa1\x18\x0a\x01\x02\xde\x37\xb2\x9c\x94\x81\xf9\x27\x92\xeb\x91\x55\xbc\x36\x9a\x45\x8b\xb2\x47\x64\x25\x13\x47\x13\xbe\x12\xf8\x88\x2c\xb7\x64\x90\x5f\x8d\x1c\x3a\x5f\x45\xb5\xa3\xc9\x76\x52\xfd\x88\xb4\x42\x90\xe1\x8c\xb4\x7b\x53\xda\x18\x63\x5f\x17\x7d\xb8\xb2\xb1\x31\x78\x6d\xb4\x35\x82\xa8\xc6\x18\xe9\x9f\xb7\x37\xba\xdd\xce\xc7\xa1\xad\x11\x44\x35\xc6\x10\xad\xc1\x33\x07\x20\xf3\x18\xc3\x3f\x6d\xd4\xc9\x8e\x88\x01\x46\x32\x99\x2c\x4f\x7e\x8c\x7b\xfd\xd3\x33\xd9\xd1\x60\x9b\x29\x51\x48\x77\x63\x8c\xf5\x8d\x18\x57\x32\xae\x61\x1d\xa5\xad\x11\xc9\x8e\x68\xdf\x45\x8a\xbd\x29\x6d\x8c\x59\xc0\xe2\x00\xaa\x8e\xb6\xb9\x28\xfa\x6d\x1c\x73\xc2\x19\x83\xd8\x5a\x34\xd6\xd1\x58\xc7\x69\x3c\x29\x66\x44\xab\x6a\xd3\x41\x85\x2c\x5a\xa5\xe3\xa2\x55\xe1\xc1\x38\x25\x0a\x9b\xac\x5c\xab\x64\xfe\x38\x7d\xe2\x06\x83\xda\xca\x72\x06\x75\xaf\x20\x8e\x11\x54\x31\x06\x21\xaf\x20\x8e\x11\xe4\x30\xc6\x69\xb3\x6a\xbc\xf5\x56\xfb\xf5\x38\xc5\x9f\x8d\x1d\x35\x76\x74\x9e\xfe\x19\x6e\x0f\xb7\x9b\x21\x8d\xb7\xde\x42\xeb\x45\x58\x1b\x8d\xb7\x4e\xf9\x62\x9c\x82\x67\x80\xf2\xa0\x75\x31\x4e\xa1\x1b\xc9\x8b\xa0\x75\x31\xce\xd7\x6b\x0a\xc8\x5b\x59\xe3\x38\x45\xd4\x4d\x02\x8e\x1c\xc6\xa0\x85\x15\x4d\x02\xae\xd9\xa8\x2f\xde\x10\xe5\x8b\x68\x2c\xee\x5a\xe3\xc9\xe2\x5a\xed\xc2\x83\x98\x55\x34\xd9\x78\x72\x18\xe3\xe2\xc2\x37\xce\x7e\xab\xec\xda\xb8\xc2\x1b\xb1\xa3\xc6\x8e\x2e\x7e\x13\x6c\x7c\x00\xc5\x8f\x4b\x3c\xd7\x98\x4c\x63\x32\x37\x4f\xb0\xf1\xd6\x5b\xed\xad\xe3\x16\x0e\xd2\xb3\x88\x56\xdb\xe8\x20\x94\x13\x4d\x40\xde\x6a\x1b\x1d\xf7\x1a\x79\xde\x3a\x91\x8a\x71\x4b\x96\xd1\xaa\x08\x22\x15\x83\x7a\x4e\xb4\xd3\x78\xd6\x9e\x3a\xee\xcb\x37\x92\x9a\xa7\x5c\x31\x48\xea\x44\xbb\x34\x74\x69\xc8\x4a\xdb\x78\xeb\xcd\x66\x7a\x5b\x69\x09\x58\x04\xe5\x8a\x71\xdf\x5a\x07\x6e\x6f\xb5\x7d\x8e\x5b\x2a\x84\x64\x45\x10\xa9\x18\xb7\x8c\x39\xad\x8a\x20\x52\x31\x56\xec\xd5\x38\xe6\xad\x2c\x7c\x3c\xfc\x11\xea\x14\x41\x9d\x62\x3c\x5d\xe7\x25\xcb\x5a\x99\xe8\x78\xee\xbf\xe4\xa1\x88\x66\xaf\xa3\x3d\x31\xde\xcd\x4b\x7c\x3e\x4b\x05\xd6\x03\xcd\x4e\x34\x0e\x3a\xe6\x82\xf1\x66\xfd\x93\x6a\x44\x74\x86\xbb\x8e\xd1\xe8\x44\x04\x65\x88\x01\x2a\x1f\x9d\xdb\xdd\x2b\xa2\x1e\x9f\x15\xa2\x97\x19\x47\xaf\x34\xd9\xf8\xf8\x4f\xbd\xe2\xeb\xe8\x15\x58\x0f\xc5\xed\xd1\x9d\xd7\x91\x99\x18\x9f\x74\x3a\x45\x89\xa0\x28\x31\x3e\x5b\x7a\x67\xf7\x9d\xdd\x7f\xd2\xe9\x9d\x2b\xdf\xb9\xf2\x9f\x74\x3a\xd1\x89\xe8\x16\x03\x50\xf9\xa0\x3d\x11\xb4\x27\xc6\x27\x8c\xe9\x42\xf7\x7e\xb8\xdd\xf4\x21\x25\x11\x34\x24\xc6\xc7\x1c\x3b\xb7\x9b\x5c\xc4\x5c\x21\x47\xe7\x76\xf7\x72\xbb\xe7\x0a\x39\x88\x47\x04\xb9\x88\xb9\x19\xf9\x9e\x46\xa9\xd6\x84\xb9\x39\x18\xec\x69\x3c\x6b\x4d\x98\xc0\xea\xd1\x39\xe8\xbd\x2c\x7d\x62\xec\x8f\xee\xc0\xad\x57\x58\x3f\x37\x07\x83\x54\x23\x82\x5c\xc4\x54\xf1\x1e\x88\x24\xa2\x37\xfd\x0c\x9d\xe7\x8b\xf7\xae\x9f\x6b\x40\x64\xe3\x7b\xd7\x10\xa7\xbf\xdb\x7e\x7b\xd7\x90\xf4\x6f\xb7\xfd\x92\x99\x98\x5b\x41\xa9\x82\xcc\x44\xf4\xae\xf5\xb6\x6e\x37\xf2\x43\x43\x56\x5c\xa2\x13\xd1\x6b\xd9\x98\x78\xf8\x83\xf6\x44\xf4\x4a\x07\xcc\x75\xfa\xd6\xa5\x03\x68\x4f\x4c\xfc\x48\x41\x7b\x22\x68\x4f\xcc\x6d\xb8\x5d\x3a\x80\xf6\xc4\xdc\x4e\xb3\x4e\xe2\xbd\xd7\x02\x33\xb7\xf5\x35\x79\xd6\x28\x2e\xe6\x3a\x68\xeb\x9c\x68\x14\x17\xf3\xd7\xd6\x45\xb7\x97\xa5\xcf\xdf\xea\xa7\xd8\x1b\x9b\xc5\x54\x0a\x1e\x8b\xd4\xa2\x57\xfe\x7d\xfe\x64\xa6\x88\x47\x04\xf1\x88\xf9\x93\x4d\xc0\x6d\x11\xbd\x76\xef\x09\x00\x1f\x9d\x6b\x8c\xcd\x62\xfe\x1e\x0d\x49\xbc\x63\xb3\x98\x50\xf1\x41\x20\x22\x7a\x1d\xf3\x4d\xa5\xe0\x41\x20\x22\x10\x57\xcc\x5d\x56\x8e\x16\x44\x50\x7f\x98\xbb\xe3\x09\x0a\x0f\x81\x8e\x62\xee\xd6\x3c\x94\x13\x41\xbe\x61\x1e\xc2\x98\x51\xfe\x6b\x60\x97\x98\x87\x6c\x02\x76\x89\xa0\xe2\x30\x0f\x73\x89\x28\x43\x10\x65\x98\x87\x00\x02\xe9\x43\x10\x57\x98\xc1\xb3\x26\x8b\x10\xa8\x1c\x66\x4e\x17\x79\xac\xa3\xf6\xd6\x89\x88\x29\x46\x15\xd4\xc4\xa8\x4d\x75\xa6\x65\x98\x56\x42\xe0\x77\x98\x2b\x45\x8f\xdf\x21\xf0\x3b\xcc\x7c\x3d\x53\xa0\x3b\xca\xc6\x66\x33\x20\x83\x71\x61\x6d\x98\x4d\x52\x8f\x1e\x42\x50\x40\x98\xcb\x13\x1c\x7c\xdb\xc1\xb8\x1a\xdf\x01\x87\x43\xd0\x3c\x98\xc8\x11\x63\xb4\x75\x7b\xb5\xde\x86\x8b\x36\x55\x8c\x0e\xb3\x39\xb3\x40\xec\x10\x18\x1d\x66\x13\xa5\x21\x76\x88\xc1\xb8\x9a\xec\x21\x71\x84\x18\x5d\xe7\x9d\x38\xd3\x48\x08\xdc\x0f\xb3\x59\xac\x46\x37\x9e\x5d\x97\x6c\x80\x83\xc3\x3b\x86\x37\x92\x7c\xa4\x98\x10\x08\x21\x66\x53\xef\x80\x17\x22\x08\x27\xcc\x66\x2a\x12\x4e\x88\xc1\xe2\x48\xe1\xc7\x10\x51\xd3\x4f\x98\xeb\x78\x62\x88\xa8\xc7\xd4\x90\xbd\x6e\x38\x14\xc3\x2e\x31\x9b\x1c\x16\x76\x89\x18\xd3\x1b\x09\x89\x06\x8f\x60\x94\x89\x4e\xac\x86\x31\x44\xd4\xa3\x22\xea\x49\xcb\x3e\x86\x3d\x99\xc4\xc2\xa4\xe7\x1e\x38\x23\x02\x4b\xc4\xec\x9f\x67\x32\xae\x51\x3b\xed\x84\x75\x0e\xca\x07\x81\x25\x62\x0e\x26\x33\x18\x17\xce\x88\x49\xd3\x3c\x28\x1f\xc4\xa8\x0d\x77\xaa\x80\x0c\x0c\x12\x81\x33\x62\x2e\x17\x1e\x2f\x44\x50\x30\x98\x63\x0d\x08\x2f\x78\xd4\x46\x3b\xc7\x9a\x8a\x9f\xce\x7f\x5a\xe7\xb5\x51\x37\x88\xc1\x0c\x87\xc3\xe5\x21\xe5\x8d\x4f\x62\x92\x9a\x0e\x64\x11\x31\xcb\x6d\x9e\xd3\xa4\x45\x16\x11\x64\x0d\xe6\x64\x5c\x68\x21\x02\x11\xc4\x9c\xcc\x70\x0a\x31\x11\x41\xcc\xc9\xf1\xc1\x00\x11\x18\x20\x26\x10\x70\x4c\xe7\xdd\xe8\x1d\x66\x29\x01\xff\x85\x43\x81\xed\x21\x28\x20\xcc\x75\x6a\x80\xdf\x21\x66\xed\xad\xf3\x74\x0e\x82\xca\x21\x66\x65\xc4\xe6\x69\x71\x25\x7d\x10\x18\x1d\xe6\xa9\xb0\x86\xca\x41\xa0\x72\x98\x97\x1d\x8c\xb2\x40\x4c\xe6\x78\x8b\x43\x26\xcb\x9b\x2c\xef\xb1\xdb\xa0\x48\x88\x59\x3b\xd1\x7c\x9c\xe4\xe3\x46\x08\xd2\x00\x93\x3c\x57\xe0\x46\x08\xa4\x08\xf3\xb5\x36\x4f\x73\x9f\x0a\xc0\xa4\x70\x15\xd3\x34\x9f\xa6\xf9\xeb\x53\x23\x4c\x08\x2a\x00\xf3\xe3\xa8\x4d\x39\xa2\x59\x39\xa2\xf9\x59\x1d\x11\x1f\xc4\x54\x6d\xda\xa4\xec\x30\xe1\x07\x92\x82\x83\x46\x63\x9c\x95\x46\x88\xd3\x17\xbf\x25\x36\x91\x06\x04\xb6\x80\xc0\x98\x18\xa7\x4f\x7d\x0a\x9b\x5e\x4b\xfb\xe9\x53\x9f\xaa\xa5\x56\x99\xd4\xa9\x4c\x0a\xaf\x40\xbc\xea\x08\x90\x06\xc4\xe9\x74\xf2\x35\x29\x4e\x29\x06\x8c\x00\xf1\xb2\x27\x6c\xf0\x71\x2e\x42\x1e\x9b\x3f\x46\x80\xc0\x08\x10\x74\xab\xe2\xf4\x35\x31\x02\x04\x89\xaa\x38\x2d\xed\x88\x01\xe2\x93\xf1\xc3\x0f\x10\x78\xe3\xe3\x73\x52\x0a\xf5\x1f\xa7\xf4\x03\x50\x60\xe0\x86\x0f\x1c\x00\xf1\xdd\xba\x94\x5a\xb7\x98\x7f\x8e\x64\xe1\xfc\x63\xe1\xfc\x37\x59\x0f\xfc\xed\x71\x2e\xf2\x1c\x55\x21\xa7\x2c\xe2\xc2\xe4\x83\xe5\x05\x4c\x7e\x9c\xb5\x48\xe6\x26\xe4\x38\xa7\x2e\x2d\x9e\x1c\x41\xe9\x69\xd1\x82\xad\xcf\xdf\x6a\xc8\x77\x3f\xa1\x63\x7f\xd6\x92\xd3\x4a\x76\x2e\xf2\x1c\x69\xd5\x53\x18\x73\x56\x6e\x30\x7f\xbb\x0f\xa7\x6e\x08\x0a\x3f\x7f\x56\x1d\x48\xfb\x38\x17\xa3\x8e\x98\x16\xc4\x3e\x16\xa8\x9e\x8a\x4a\x20\x67\x8f\x13\x10\xf6\x77\x99\x21\xb2\x72\xb0\xf5\xb9\x52\xa0\x08\xd8\xe3\x04\x84\x25\x1a\x12\x78\xd8\xe3\x5c\xe4\x39\x1c\xc9\xd3\x9a\x07\x70\x9f\x14\x3a\x02\xd7\x7a\x80\xd1\x27\x54\x57\x9c\x72\x04\x0b\x3f\xbf\xb2\x87\xf0\xf3\xb1\xf0\xf3\xbb\xd3\x8d\x53\xfc\x81\x72\x3d\x8f\x6d\x5d\x34\x6d\x3e\x3c\x29\x8e\x27\xa0\xe2\xe3\x42\x9e\x73\x48\xbc\x5f\xac\x03\xc9\x7a\x1e\xe6\x12\x00\x7c\x2c\x00\xfc\xaa\x73\xc1\x99\x1e\x00\xec\x79\x7c\x35\x74\x97\x89\x79\x95\xeb\x91\x2b\x83\x06\x3b\x1e\x08\xca\x33\x1c\xc5\x23\x28\x8f\xab\x7c\xfe\xc4\xed\x1e\xc0\xdf\x71\x25\xae\x10\x69\xff\x8b\x63\xbe\xc0\xdf\x29\x11\x73\x29\x8f\x83\x01\xcf\x9c\x87\x8b\x87\x8b\x88\x4e\xd4\x7a\xe0\x1b\x0f\x44\xe3\xb9\x1c\x1f\xe0\xef\xb8\x6a\x9f\xcf\x26\x27\x88\x22\x3c\x50\x84\x67\x73\x92\x7f\xd9\xd2\xaf\x72\xa2\x13\xc6\x24\x10\x86\xc7\x42\x84\x37\x7e\xfd\x25\x20\xbf\x6a\x75\x4b\x18\x93\x00\x13\x8f\x05\x13\x6f\xd6\x64\x30\xf1\x58\x30\x71\xc4\x90\x01\x0a\x1e\x97\x39\xdf\xa4\x92\xa1\xbe\x03\xd1\x78\x2e\x2f\xe3\x72\xa6\x76\xe1\x88\x69\xca\xcd\xae\x53\x97\xea\x14\x2d\x9b\x04\x07\x98\x78\x2c\x98\x38\xa2\xe2\x80\x0f\x0f\x0c\xe3\xd9\x6d\x80\xc8\xc4\x03\x5a\x3c\xfb\xbe\x2e\xea\x3c\x43\xe8\xcd\x80\x38\x19\xc7\x1b\x9e\xbd\xaf\x8b\xfa\x89\x0e\xa6\x4b\x4f\xe3\x06\x0f\xa4\xe0\xb9\x6a\x13\x10\x7f\xc7\x85\x0e\x66\x48\xd1\x42\x6f\xc7\x42\x6f\xaf\xcd\x1f\x7a\x3b\xae\xda\xfc\x73\x28\x22\x83\xde\x8e\x85\xde\x5e\x05\x0b\x78\xbc\x03\x81\x77\x8e\x6b\xfd\xd3\xb4\x41\x18\xb5\x72\x6d\xd0\xdb\x81\x7a\x3b\xa7\x95\x01\x26\x3b\xf0\x6a\xe7\xf4\x4c\x08\xed\x00\xcd\xce\xc9\x89\x86\xd0\x0e\xd0\xec\x9c\xe6\x12\x4c\x76\x2c\x4c\xf6\x2c\xd8\x43\x20\xd4\x8e\x05\xbf\x9e\xbc\xb6\x5b\x2a\xf9\x3e\x10\x9d\x38\x19\xbf\xe5\xc5\xee\xaa\x42\xc9\x73\x5b\x17\x87\x8b\x35\xc1\x56\x51\x01\xdc\x75\xdc\x65\x4e\xb9\xaa\x02\xc0\xaf\x03\x4b\x76\x9e\xf1\xd7\x19\x0a\x48\xed\x40\xa1\x9d\xa7\xf8\x13\x4d\x76\xdc\xe5\xfb\xe7\xf2\x1d\xc0\xb0\x03\x0c\x3b\x4f\xf6\x84\x0a\x3b\xc0\xa9\xf3\x74\x4e\x7b\xb3\xbc\xbb\xf9\x27\x77\x16\xaa\x3a\xee\xca\x56\xe7\xf9\x78\x66\x5b\xb7\xd7\x57\x3d\xd7\xc0\x70\xe5\x81\xab\x73\xe5\xdc\xa0\xaa\xe3\xee\x9e\x29\x23\x7d\xf3\x32\x80\xa4\xf3\x92\x8c\xb8\x79\xd8\xf7\x58\xec\x22\x5a\xe7\x65\x60\xb6\xce\xcb\xb2\x81\xa8\x3a\x10\x55\xe7\xcd\x73\x85\x80\x0e\xd0\xe7\xbc\x15\x6b\xa0\x98\x0e\x34\xd2\x79\x3b\xc4\x01\x37\x8e\xdb\xdc\x27\x3d\x1c\xe0\xc6\x01\x67\x9c\x8f\xdd\xfb\x56\xf8\x05\x67\x9c\xcf\x6a\x9d\x95\x00\x18\xe7\x23\x0e\x01\x1b\x8e\xfb\x5d\x9c\x11\x66\x9f\x44\xf1\x8d\x59\x65\x79\x58\xa0\xc1\x01\xf6\x9b\xaf\xe4\x1e\xf4\x6f\xdc\x98\x0b\x5e\x69\xd5\x5b\x49\xe8\x8d\x34\xe9\x15\xcf\x03\xec\xc6\x83\x02\xed\x75\x42\x0e\xbe\x1b\x70\xbb\xf9\x3a\x20\x00\xdf\x8d\x67\xc3\x04\xe1\xb8\xef\xe1\x06\x3d\x3f\x2c\x03\x7c\xb1\x47\x50\xfa\x60\x2a\xf9\xac\x79\x40\xb9\xf1\x94\xe3\x93\x5f\x81\x6b\xe3\x29\xa6\x92\x78\x30\x95\x7c\x76\xb0\xc7\xd9\x2f\x34\x6e\x7e\x56\xb2\x87\x95\x3c\xac\xe4\x2b\xec\x46\x3c\xac\xe4\xc1\x54\xf2\xad\xce\xf3\x8d\x60\x73\xf3\x7b\xd7\xc5\x1a\x4f\x10\xdd\xfc\xa4\x01\x61\x73\x63\x61\x73\x57\x1a\xe8\x09\xad\x2b\xdb\xde\x9c\xcf\x43\xdc\xc6\x42\xdc\x6e\xb2\x72\x0f\xdf\xe8\x51\xb6\xbd\x15\x44\x25\xc0\x70\x03\xd5\x77\xa3\x53\x18\x70\xb4\xf1\x34\xc4\x07\x52\x0c\x70\xb4\xb1\x70\xb4\xdb\xea\xbc\x2d\x08\x9c\xb6\x6d\x9f\x7f\xf2\x9b\x9e\x01\x69\x2f\x27\xfc\x0c\x0d\x2d\xf0\x3f\x1f\x1c\x64\x36\x1e\xd0\x8f\x9f\x74\xe5\x23\x3b\xf3\x2c\x9c\x3f\x1f\xfc\x31\xbd\x17\x10\xf6\x67\x4f\x7e\xec\x21\xcf\x42\xef\x3b\x25\x7c\x94\x45\x3e\xe7\xc2\xcf\xeb\xa7\xba\x0c\xd0\xd7\xb6\xaf\xa1\x93\xd4\x7d\x2e\x90\xee\x43\x43\x92\x3b\x0b\xc9\x8a\xdf\x3c\x1e\x27\xa4\x00\xad\x6d\x17\xf9\x3f\x52\xb5\xcf\x82\xdf\x8b\x93\x1f\xa9\xda\xe7\x5e\x20\x75\xe3\xc9\x99\x5a\x50\x54\x0a\x57\x81\xf4\x3c\x40\x4a\x1b\x39\xa9\x80\x2c\x8d\x07\x2c\x8b\x48\x54\x3c\xf6\x90\x07\x02\xeb\x50\xa8\xf2\x08\x0b\x17\x42\xf4\x10\x01\x40\x81\x06\xf8\x67\x0b\x3b\x03\x14\x68\xbc\x80\xef\xab\x1c\xf6\x65\x47\x30\xa1\x2d\x76\xb7\x2f\xd7\xff\x07\x93\xed\x24\x02\xf2\x32\x16\xf2\x32\x79\x97\xaf\x72\xc3\x17\xa8\x21\xf9\xcb\xaf\x99\x0c\x80\xd9\x56\x55\xe5\x7b\xac\x68\x04\x82\x59\x3e\x1c\x1c\x33\x16\x1c\x33\x39\x53\xaf\x3c\xce\x0b\x18\x45\xcb\x23\xde\x58\x04\xb2\x40\xab\x72\xc1\x2f\xfc\x02\xa8\x66\x6b\x85\x31\x09\x18\xcd\x58\x18\xcd\x66\x47\xc0\xf4\x1e\x6f\xba\xbd\xad\x8b\x5e\x13\x5a\x6a\x79\x2e\x6f\x5b\x01\x12\xd0\xaa\x12\x0c\x38\xcc\x00\xc0\x6c\x6d\x75\x5e\xea\xf3\x45\xa2\xd1\x04\xa3\xaf\x75\xfe\xed\x5a\x57\x58\x01\x9c\x59\xa1\xd4\x1f\x17\x25\x38\x10\xbe\x07\xa8\x66\x6b\xaf\x41\xe6\xb5\xfd\x09\xdc\x94\xe1\x87\xd8\x8c\x77\x80\x8d\x3a\x25\x04\xc7\x8c\x05\xc7\xec\x82\x7c\xf4\xef\x01\x56\xd9\xba\x34\xd0\x5b\xb6\x12\x2f\x98\x78\x2f\xa4\x58\xd1\xde\xd6\xc5\xdd\x45\xad\x33\x19\xc8\xc9\xb6\xdc\x99\x77\xd1\x01\x03\x46\x0d\xa9\xe4\xf7\x5c\xcf\x04\x99\x14\x01\x80\x30\xc6\x7b\x83\x78\x5a\xac\x30\xb6\xc7\x9f\xa0\x45\x15\x5b\x78\xd8\xe3\x85\xb4\x9e\x6b\x90\x65\x24\xdf\x8a\x15\xda\xe4\xf8\xbc\xaf\x7f\x82\x4a\xcf\x35\x15\x9d\x27\xbe\xa0\xd2\xf3\x76\xf1\x73\xfb\xe7\x76\x55\x01\xdf\xa2\xc4\xad\x59\xde\xce\xf8\x4b\xa6\xcc\x00\x50\x0c\xc8\xc4\x76\xf2\xde\x3e\x31\x03\x64\x62\x3b\x0b\x69\x1f\xd0\x87\xf1\x27\xfa\xb0\x88\x59\xe2\x5b\x2c\xb8\x3b\xf0\x22\x47\x0d\x0d\x7c\xc0\x1b\xb6\xcb\x8c\xfe\x04\xcf\x38\xde\xdb\xc5\x41\x47\xee\x1e\x58\xdd\xdb\x25\xcf\xfc\xad\x50\x1a\xa7\xcd\xa5\xbc\x1c\xf0\x2f\x20\xfe\xda\xed\x40\xf8\xcb\x15\x4a\xbf\x2e\xd6\xb8\x7e\x4e\xf6\xfe\x84\xfa\x19\xd7\x4f\xda\xff\x6b\x6e\xbf\x8d\x96\x69\xfe\x01\xdf\xdc\xcf\xfa\xa7\x7e\x42\x1d\xdf\x1c\x1f\x10\xc1\xf8\xcc\xfd\x7b\xbd\xa6\xc9\xfb\x99\xbc\xab\x8c\xef\x73\x42\xfe\x55\x16\xb1\x3d\x36\xd5\x4f\x20\xf1\x0d\xd0\x34\x27\xcf\xf0\x7f\x01\xf1\xd7\x88\xfc\xc7\x27\x37\xf8\xe1\x4d\x78\x14\x95\x7c\xe2\xe4\x85\xea\x23\xb3\x1f\x9f\x48\x00\x64\xaf\xbd\x3c\x17\x78\xbc\xf8\x2c\xd8\xaf\x6c\x27\xb0\x5d\x2c\xb0\xdd\xcb\x49\x81\xab\x0b\xbc\xf1\xed\xe3\xa4\xc2\xd5\xc5\xc2\xd5\xad\xc3\xa6\xcf\x82\xfd\x3d\x0b\x35\xe5\x76\x4e\xff\x07\xe7\x4f\x05\x3b\x00\xea\xe2\xab\xda\x92\xf6\x99\xe6\x9f\x40\xf7\x7b\xdd\x3e\x8d\xbc\x7a\xd6\x85\xab\xfb\x04\x90\x1f\xa7\x7f\x41\xe8\x68\x46\xe7\xb6\x49\x4d\x00\xb3\x50\x6d\x4e\x20\xb6\x04\x62\xeb\x5b\x2d\x45\x45\x3c\x5c\x54\xc3\x30\x3b\xc5\x2f\x98\xf0\x6a\x09\xaf\xd6\x7f\xe9\x76\xee\x3a\x68\x5a\xff\xd5\xe1\x48\xc2\xa4\xe5\xa6\x68\xfc\x57\xc7\xa7\xb9\xd5\x9a\x9e\x10\x6a\x1d\xed\x78\xc2\x96\x25\x34\x59\xdf\x0b\x3a\x99\x5b\xae\x14\x0a\xd4\xcc\xe1\x9f\x8b\x12\x39\x17\xe8\x46\x3f\x05\xb3\x1b\xe8\xc7\x7e\xb9\xb8\x88\x8e\x95\x99\x22\x97\x2d\x2e\xe4\xba\x58\xfd\x24\xf1\x98\x9b\xb0\x77\xeb\xc0\x2c\xbb\x8b\x22\xdc\x0d\x76\xe3\x68\xba\x24\x44\x85\xe3\xea\xc7\xe9\x99\x98\xcc\xb6\xe9\x99\xd7\xfa\xa7\xd7\x9c\x0b\xcc\xe2\x99\x32\x30\x70\x5c\x3d\x56\xeb\x42\x54\x38\xae\x1e\xb5\x10\x26\x38\x57\x11\x32\x17\x48\xc4\x87\xc3\x8a\xb8\x9d\x40\x22\x61\x40\x2e\xcf\xbc\x16\x1e\xc4\x37\xba\x7c\x8e\x85\xdd\xe8\x46\x1e\xbd\xd9\x76\xc1\xc2\x54\xbd\x60\xc2\x78\xe5\x76\x7b\xe6\xe7\x6b\xf2\xc8\xb7\x07\xa8\xa1\xd2\x01\xb9\x09\x51\x37\xe5\xda\x19\xde\x5d\x5a\x66\x7b\xc1\x34\x2a\x4a\x4f\x20\xad\x84\xce\xea\x78\x4f\x73\x43\x56\xb8\x60\x59\x6d\xf3\xee\x18\x4b\x17\x02\x0b\xb7\x45\x82\x5e\x55\xee\xeb\x8f\x8b\x05\xa5\xc9\x9f\x49\xfb\xab\x65\xb8\xb7\x72\x4e\x13\xd8\x2a\x17\xd8\x8a\xcc\x44\xfe\x90\x15\xfe\x6a\xa5\xed\xcd\x80\xfc\xb8\xe9\x80\x58\xbd\x55\xf0\x9c\x3f\xc1\xec\xef\xa7\x4b\xd3\x33\xb1\x8e\xfd\xca\x73\xe9\xad\x52\x75\x09\xab\x95\xbf\x05\xa9\xa8\x44\x61\x02\x69\xe5\x6f\xd7\x25\x26\x03\x8f\x95\x80\x58\xbd\x7d\xde\x88\x9b\xfe\xab\xbc\x66\xa7\x70\x94\x3f\xc1\xec\x4f\xb9\x76\x2f\x54\x42\xfe\x24\x85\x60\xae\x7a\x5f\xaf\x19\x8b\x34\x1b\xd2\x21\x3d\x13\x77\xe0\xaf\x0e\xa2\x3a\x95\x9f\xfc\xa1\x09\x84\xa4\xea\xbd\x56\xda\x84\x9d\xca\xdf\x42\x4f\x30\x04\x88\xa8\xfc\x95\x3f\xd2\x47\xad\xf3\x49\xba\x22\x7f\x0b\x28\xb1\xc6\x13\xf9\xdf\x82\x3b\x8d\xd3\xbb\xcb\x64\xfe\xca\x31\xef\xca\x79\x12\x88\x29\x7f\x0b\x13\xf1\xad\x7f\x1a\x10\x55\xd4\xb3\xe8\xd1\xf3\x87\xf9\xf7\x37\xe1\x16\xc2\xed\xc8\xff\x7e\x4c\x06\x39\x41\xd2\xc8\xc8\xdf\x09\xb7\x30\x74\x9e\x21\xfc\xce\x85\x5b\x70\x91\x21\xfc\x18\x82\x14\x43\xfe\x18\x02\x2c\x53\x9f\xef\xfa\xa7\x86\x2e\x55\xfe\x9b\x2e\x61\x02\xfd\x3d\xca\xf4\x87\xdb\x1f\xaf\xc9\x10\xce\xe1\x1b\x3d\xba\xb4\x10\x0e\x6b\xda\x20\xea\x5b\x80\x23\xa5\x37\x09\x1c\x94\x3f\x86\x70\x59\x58\x7e\xa2\xd0\x1f\x8c\x41\x45\xe7\xff\xbd\x43\x51\xdc\xe2\x45\x31\x3e\xd4\xf0\xd7\x4b\xec\x28\xf3\xf6\x9a\xc3\x5d\x94\x9e\xfb\x4f\x42\x14\xac\x00\x50\x3f\x77\x29\x49\x58\xa1\x6e\x4b\x4f\x78\xa0\x5c\x78\xa0\xbb\xd0\x48\xb9\x0b\x3c\x77\x98\x42\x5b\x7a\xee\x02\x4f\x58\xa1\x6e\xf7\x4e\x90\xa1\x84\x15\xea\x76\xef\x84\x0e\xca\xdd\x8c\xbe\x8b\xc4\x31\x77\xeb\xfd\x0e\x80\x70\x57\x5e\x34\x41\x86\x72\xaf\x89\xdd\x1f\x6b\xde\x8e\x34\x7b\xb7\x09\x3c\xa9\xf5\xd0\x25\x00\x84\x67\x75\x3e\x35\x64\x9a\x3f\xa7\x7f\x9a\xe6\x7b\x53\x6f\xcf\x46\xf7\x72\x52\x72\xe1\x81\xa8\x54\xe4\x6e\xee\xef\xe6\x3e\x91\xa8\x04\x12\xca\xbd\x4c\xa0\xbf\xd6\xe6\xbd\x4b\x5a\x77\xd5\xe9\x15\xd7\x25\xe4\x50\x2e\xe4\x10\x5e\xc9\xdc\xbb\xf1\x04\x1b\x7e\xeb\x78\x22\xc1\x89\x72\xef\xaa\xe8\xd3\xd0\xc9\xf7\xef\xc3\x33\x2b\xa9\x9b\x30\x46\xc5\xe3\xfe\xc7\x45\xfb\x27\x70\x51\xee\xe5\xea\x74\x95\x26\xb9\x4b\x9d\xee\xec\xe9\x2b\xf8\x60\xee\x88\x79\x77\xa0\x40\x95\x26\xb9\xcb\xea\xec\x80\xc5\x9f\x65\x63\xc7\x9b\xb9\x03\x16\x43\x5c\x27\xc4\x51\x42\x13\x75\xae\x47\xee\xe7\x22\x8c\xaf\x2e\x7d\xa6\x39\x6c\x51\xee\x97\xdb\x2d\xed\xbb\x2c\xe9\xce\xc8\x3e\x0b\xcc\xce\xc8\x40\x8c\xc6\xb6\x46\xfe\xf2\x46\xb5\x05\x0d\x5a\x09\x49\x79\x26\x49\xce\x8c\xad\xfb\x9a\x8f\xe9\xad\xb2\x90\xb2\x40\xc2\x01\x25\x1c\xd0\xf8\xfd\x74\x69\x1d\x02\x94\x8b\x34\x96\x3f\x02\xeb\x93\xfb\xa7\x18\xbb\xfb\xa7\x2c\xe9\xfe\x29\xc6\x66\xe2\x20\x3f\x09\xf2\x33\x7e\x05\x01\xc8\x03\xc7\x25\x3c\xcf\xd8\xad\x10\x07\x96\xfb\x43\xb5\x3f\xe5\xa8\x3c\xf8\x4d\x87\x0a\x23\x1a\xdc\x09\xc1\x93\xa0\x3b\x63\x2f\x9f\x31\x0f\x84\xf6\xc7\xbe\x2a\x9e\xdd\xfe\x27\x4d\xbd\x3a\xe6\x3a\x31\x49\xe8\x9e\x3c\x0e\xb7\x57\x5e\x34\x0f\x66\x78\x28\x22\xdc\x6d\x2c\x07\xb7\xeb\x50\x44\x08\x19\x9c\x07\xb7\x0b\x0e\x68\x1c\xbb\x67\x1e\xff\xff\xac\xa3\xaa\x93\xeb\xdd\x0f\x1b\xcb\x51\x1b\xcb\x20\xd0\x5c\x9c\xf7\x75\x71\xb8\xa8\x9f\x1c\xb4\x23\x14\x37\x4f\xad\xb3\xcd\x43\xb5\xff\x61\xcd\x3b\x64\x47\x0f\xb5\xbc\xb2\x09\x79\xd8\x97\x8e\x32\xd8\x11\x75\xc0\x9e\x87\x73\x09\x18\xa1\x11\xcd\x6b\x2e\x42\xfb\x72\xe5\xc6\xf2\x5c\xa0\x82\x8a\x4e\xbf\x6a\x8e\xfd\x93\x19\x1e\xca\xf5\xe3\xd6\xd0\xd0\x50\xed\x44\x63\x39\x29\x60\x3d\x09\xcf\x33\xd2\xc2\x72\xd4\x99\x5a\x1e\x4a\x03\x11\xbe\x17\x37\x7f\xb1\xf1\x6f\xca\x8b\xcb\xb4\x0f\xbb\x0d\x98\xcd\x68\xbb\x7f\x5e\x3a\x5f\xfb\xcb\x68\xdc\x43\x18\x9a\x3c\x54\xec\xb5\xae\xf5\xdb\x64\x50\x77\xdb\x4e\xfd\xbc\x8d\x92\x8a\xbd\x66\xa5\x85\x9a\x49\xa8\x99\xd1\x3e\x53\x91\x2f\x76\xa8\xbb\x75\x3c\x91\x00\x32\x79\xb0\x8e\xbe\xaf\x7f\x6a\xfd\x51\x1f\x7c\xe8\xfc\xe3\x99\x8a\x71\xfb\xa1\x4b\x4e\xd8\x8e\xda\xb3\x46\x3f\x74\x49\x72\x15\xcc\x66\xf4\xe6\x76\x8c\xf4\x07\x93\xe9\xb6\x9e\x43\x72\xf5\xa8\x50\x63\xf4\xca\x50\x64\x38\x04\x88\xf2\x9b\xc6\xe4\xca\x85\xf4\x66\xa8\x95\x9b\x95\xfa\x4c\xb0\x97\x5c\xb0\x97\x59\x27\x7a\x19\x87\xd3\x30\x65\xe5\xb3\x4a\x84\x32\x4c\xef\x85\x70\x99\xcf\xba\x38\x5c\x9c\x2e\xde\x2e\x7a\xa6\x02\xba\x59\xcc\xa3\x09\xe1\x92\x0b\xe1\x72\xfe\xd6\xc5\xdd\x45\xd5\xb4\x95\xbf\x4b\x60\x96\x8c\x50\x77\x6b\xf5\x06\x66\xc9\x05\x66\x39\x7d\xe2\x70\x16\x17\xab\x46\xb6\x72\x97\x19\xb6\x9e\x68\x9e\xc9\x89\x86\x38\xc9\x58\x45\xae\xdc\x99\x90\xbd\x8f\x8a\x3f\xc6\x55\x47\x9c\x09\x47\x92\xa1\xda\xfb\x9e\xfe\x89\x80\x3d\xaa\x00\x60\xdc\xe6\x3c\x90\x48\x2e\x90\xc8\xbd\x5e\xd3\x09\x30\x58\xc8\x78\xb6\xef\x2f\x1d\x8a\x70\x7e\xb6\xc0\x22\x0f\x17\x39\x4c\xf3\x05\xfd\x78\xac\xb8\x30\x1f\x19\x0a\x53\xf1\xba\x64\x20\x4f\x06\xf6\x18\xef\xe6\xab\x52\x4e\x88\xca\xfe\x8f\xb7\x79\x09\xd1\xc5\x82\x69\x90\x54\x4a\x30\x8d\x5c\x30\x8d\x77\xbd\xae\xe8\x02\xdc\x62\xbc\xd6\xbc\x30\x4f\xc3\x3c\x95\x63\xcf\x78\xb5\xae\x3e\x1c\x0f\x49\xc6\x6b\x08\x2b\x24\x1e\xdf\x6a\xdd\xe4\x0d\x93\xf7\xbb\x4c\x49\x27\xc1\x51\x73\x78\x7c\xf7\xfa\xe7\xe9\xe2\xa5\xd4\xb2\x26\x45\x5a\xef\xe1\x25\x26\x82\xdd\x04\x9b\xc8\xfc\x29\xa0\x34\x79\x49\x85\x25\x8d\xb0\xb9\x55\x61\x45\xa6\x9d\x21\x7f\xea\x05\x35\x94\x4e\x06\x72\x57\xec\x68\xf2\x42\x5d\x64\xee\x1a\x32\xc8\x89\xd8\x3c\x77\x0d\x7d\xeb\xf6\xe9\x62\x55\x9a\xac\x0d\x30\xb9\x72\x59\x5b\xc9\xfc\x55\x72\x2f\x93\x2b\x07\xc2\x31\x7f\x55\xc1\x91\x59\x9b\x47\xe6\xa1\xe0\xcf\x34\x4f\x46\x96\xc7\xaa\x41\xd4\x90\x9d\x21\x43\x15\xa0\xf5\x29\xed\x0c\x20\x1c\xf3\xb7\x46\xc9\x26\x90\x2a\xe1\xe4\xc3\x13\xa0\x23\x53\xed\xe9\xce\x0f\x4d\x9b\x40\xa6\x7f\x72\x52\xa0\x3c\x32\xcb\x82\xe6\xde\xfd\x73\x1d\x4e\x37\xf5\x82\xa2\x4a\xf8\x8c\x4c\x75\xa2\x6b\x57\x04\xd3\x48\x30\x8d\x09\xb3\x93\xc0\x17\x09\x7c\x31\x8f\x34\xc8\xdc\x2e\xe0\x8b\x79\x58\xde\x80\x2f\x12\xf8\x62\xae\x20\x3f\x85\x31\xc0\x17\x73\xed\x75\x29\xf2\xcf\xa9\xdc\xf0\xd6\xcf\xb9\x8e\xdb\x3d\xd3\xea\x98\x4a\x37\x52\x91\x0e\xb9\x96\xd2\x0e\xa9\x8b\x8a\x1d\xd7\x77\x9f\x86\x4e\xd9\xd9\x61\xbd\x4f\xb6\x99\x65\x9b\x33\x36\xad\x8b\x82\xb2\x5c\xb2\x19\x3f\xdf\x88\x2f\x96\x97\x62\xc7\xe6\xbb\x3b\xc6\x4e\x55\x6b\xc1\x49\x49\x9b\x55\x96\x9f\x36\xd7\xa6\x0a\x24\x92\x40\x22\x33\xd7\x6b\xde\x86\xae\x12\x5b\x93\x8e\x49\x02\x89\x64\xaa\x28\xcd\x35\xbd\x97\xfe\x89\xa2\x37\xec\x9b\x99\xce\xb6\xc1\x42\x26\x02\xcb\x4c\x06\x0b\xd0\x31\x9b\xec\x4c\xbe\x6e\x7f\x15\x11\x72\xbb\xc0\x3b\x12\xae\x63\x36\x8b\x6b\xb2\xe2\xfc\xd4\xe1\x6d\x3e\x1c\x2b\xce\xb2\xe2\x89\x7a\x20\xf3\x33\x6d\x2a\xc0\x9a\x5d\xda\xa2\x49\x1c\x40\x80\xcc\x5e\xe7\x0b\xd9\xe4\x08\x5a\x25\x65\x67\x97\x0e\x68\xea\x39\xc0\x42\x66\x97\x1f\x69\xec\xbd\xb1\x77\x12\x7f\xd9\xe4\x08\x80\x44\x66\xd7\xf9\x26\xcc\x6a\xec\xbd\x8b\x3f\x1a\xa7\xaf\xed\x3a\xef\x8d\x1a\x7b\x6f\xec\xbd\xbf\x9e\x29\x9b\x00\x63\x32\x55\x07\x64\xa3\xa9\x02\x6a\x32\xbb\x88\xaa\xf1\x19\x61\x4c\xe6\xd8\xfc\x93\x69\x43\x95\xcc\xc1\xe9\x83\x23\xc9\xa6\xf2\x75\x54\x9d\x7d\x36\xbb\x62\x0b\xf5\x82\xfc\xe5\x46\x29\x05\x9c\x64\x0e\x33\xa4\x85\xd6\xd9\xfb\xe8\x9e\x29\x2b\xd7\xca\xc2\xe7\xa8\xc2\x8a\x6c\x54\x8c\x9a\xca\xd7\x61\x05\x83\x31\x49\x18\x93\x49\xdc\x24\x81\x4b\x12\xaa\x64\xce\xdd\xed\x34\x0b\xc0\x49\xe6\xb4\x58\x81\x93\x64\xb3\x08\xcc\xc3\x78\x8a\xd2\x00\x48\xe6\xf2\x1d\x1a\xfd\x93\xa6\x04\x7c\xde\x3e\x87\xd8\xab\x75\x0d\x55\x01\x5d\x36\x61\x56\x53\xed\x3d\x45\x2a\x6d\x95\xad\x0c\x25\x81\x9b\x01\x99\x5a\x9f\x8a\x07\xc3\xc8\x3b\x12\x6f\x4a\xed\xce\x42\xa3\x24\x3c\x48\xb6\x53\x09\xa3\x5d\x06\x3a\x24\xc1\x42\xe6\x69\x11\x00\xe8\xc8\xa6\xda\x1b\x13\x40\x82\x77\x24\x5c\xc7\xbc\xea\x08\x3e\xc1\x3b\xb2\x55\x9c\x34\xaf\x4d\x3f\xef\x55\xf5\x52\x73\xe9\xfa\x79\x4d\x8e\x24\xe8\xc7\xbc\x2c\xfe\x8d\xc1\x36\x06\x7b\xed\xeb\x9f\x5e\xb3\x4e\xe2\xe7\xb5\xeb\xbc\xbd\x18\x02\x64\x5e\xd6\xe4\x46\x9e\xa0\x3d\xca\x21\xe7\xbf\x68\x79\xe4\xf1\xaf\xfe\x04\x90\x48\xb6\xda\xbc\xe7\x25\xde\x69\xb6\xe4\xa6\x58\xf5\x96\x3c\x06\x07\x49\x70\x90\x79\x1f\x86\x80\x3f\xd9\xca\x7c\xe7\xbd\x66\xa4\xd4\x20\x38\xc8\x7c\x84\x0c\x9d\x31\xf7\x0a\xcf\xe6\x63\x08\x7a\x1d\xb4\x24\x54\xc8\x7c\x78\x9e\x9d\xf6\x00\x8c\xc8\x54\x9a\x90\x9d\xd9\x77\x66\xaf\x34\x21\xa9\x62\x26\x39\xcc\xf9\x34\xb7\xb3\x70\xf8\x91\xf9\x88\x0e\x60\x44\x12\x46\x64\x3e\xcc\x1e\x46\x24\x61\x44\xe6\x73\x6b\x88\x89\x42\x7e\xcc\xe7\x75\x3b\x99\x81\xae\x38\xfd\xe1\xbc\x75\xde\x2c\x00\xc8\x7c\x45\x70\x9d\x37\x0b\x0e\x32\xd5\x4f\x66\x67\xb7\x9d\xdd\xd2\xac\xcc\x6e\x4b\xee\xa1\xa0\xd4\x7a\x0d\x1c\x92\x50\x21\xf3\x15\x19\x75\x5b\xf2\x82\x83\xbc\x75\x58\x98\x70\x20\x09\x00\x32\xdf\x3a\x4e\x4e\x38\x90\xec\x65\xa9\x93\x76\x44\xf6\x5c\x45\x4f\x9b\x8b\x9e\xc9\x6e\xa1\x42\x26\x7d\xc9\x04\x07\xc9\x05\x07\xc1\x28\x97\x70\x20\x09\x00\x32\x21\x69\x12\xf2\x23\x17\xf2\x03\x78\x3f\x01\x39\xb2\xab\x2e\xff\xa6\xf1\x94\x87\x03\x58\xd8\xb6\xd3\x64\x50\x3c\xd8\x6b\xb3\xd9\xb6\xcb\xed\x8f\xd6\x6b\x9e\x6d\x1b\x6b\xec\xb6\x10\x92\x97\x1b\x3a\xb4\x1c\x05\x14\xcc\x51\x93\x61\xdb\x2c\x64\xa0\x06\x39\x6a\xb9\xdf\x36\x5b\xf2\x30\x19\x48\x57\x6e\xbf\x7d\xfd\xf3\x76\xf1\xad\x8b\x52\x58\x40\x09\x49\xb3\x72\xfb\x09\xac\x86\xe5\x7e\xd4\x44\xd9\x20\x3f\x72\x70\xef\x46\x2d\xf0\xdb\xcf\x52\x32\xb8\x77\xa3\xdc\xbb\x6d\xa5\x32\x48\x5e\x26\xc9\xcb\xed\xd7\xb4\xbe\x74\xb5\x76\xad\xd7\xc1\x73\x69\x67\x95\x5a\x56\xbd\xe6\x61\xe8\x00\x1d\x12\xb4\x61\x3b\xaa\x46\x2b\x21\x1c\x92\x78\xe4\x76\x5c\xfe\x29\x8a\x21\xbc\xb8\x85\x70\x69\x70\x47\x06\x82\x46\xe0\x9e\x1c\xab\xb2\xac\x36\xda\x43\xe5\x6a\x2a\x24\xcf\x51\x83\x7c\x20\x19\xc8\x69\x90\x27\xaa\xd1\xcd\xca\x30\x55\x29\x2e\x09\xbb\xad\xce\xaf\x52\x65\x75\xaa\xac\x3e\xb6\xef\x5f\xd2\xa2\xef\xdf\x9f\xfb\xdf\xcf\x7f\xfc\x8f\xff\xf5\xbf\xcf\x7f\xfc\x9f\xf3\xdf\xdf\xbf\xdd\xff\xf5\xcf\x7f\xbe\x7f\xff\xcf\xe7\xdf\xee\xff\xfc\xdb\xff\xfc\xe3\xea\xdf\x9e\xf7\xfb\xb7\xbf\xbf\xff\x7c\xff\xef\x7f\xfc\xd7\x3f\xef\xf7\x6f\xff\xf8\x8f\x7f\xfc\x71\x57\xfd\xfe\x5f\x00\x00\x00\xff\xff\x9f\x82\x60\xf5\x33\x11\x03\x00"); -func _dc (_gg []byte ,_fe string )([]byte ,error ){_gd ,_feb :=_eg .NewReader (_e .NewBuffer (_gg ));if _feb !=nil {return nil ,_d .Errorf ("Read %q: %v",_fe ,_feb );};var _a _e .Buffer ;_ ,_feb =_b .Copy (&_a ,_gd );_de :=_gd .Close ();if _feb !=nil {return nil ,_d .Errorf ("Read %q: %v",_fe ,_feb ); -};if _de !=nil {return nil ,_feb ;};return _a .Bytes (),nil ;};func _bfgce ()(*asset ,error ){_dceae ,_caee :=_eggc ();if _caee !=nil {return nil ,_caee ;};_gbfc :=bindataFileInfo {_ag :"UniCNS-UTF16-H",_bc :251000,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492695,0)}; -_ebdc :=&asset {_cd :_dceae ,_dce :_gbfc };return _ebdc ,nil ;};func _gcag ()(*asset ,error ){_bge ,_agdb :=_eee ();if _agdb !=nil {return nil ,_agdb ;};_deec :=bindataFileInfo {_ag :"GBT-V",_bc :777,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492217,0)}; -_ccgb :=&asset {_cd :_bge ,_dce :_deec };return _ccgb ,nil ;};func _fdef ()(*asset ,error ){_fbbf ,_eedfd :=_geda ();if _eedfd !=nil {return nil ,_eedfd ;};_cec :=bindataFileInfo {_ag :"GB-H",_bc :2090,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492002,0)}; -_cbbc :=&asset {_cd :_fbbf ,_dce :_cec };return _cbbc ,nil ;};func _aeef ()([]byte ,error ){return _dc (_daeaa ,"UniJIS2004-UTF8-H")};func _egga ()(*asset ,error ){_baa ,_ccfc :=_dfeg ();if _ccfc !=nil {return nil ,_ccfc ;};_deddb :=bindataFileInfo {_ag :"GBK2K-V",_bc :1168,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492041,0)}; -_acbe :=&asset {_cd :_baa ,_dce :_deddb };return _acbe ,nil ;};func _deae ()(*asset ,error ){_egfea ,_fbdc :=_aecc ();if _fbdc !=nil {return nil ,_fbdc ;};_bddg :=bindataFileInfo {_ag :"KSCms-UHC-HW-H",_bc :13680,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492566,0)}; -_cdae :=&asset {_cd :_egfea ,_dce :_bddg };return _cdae ,nil ;};func _gfed ()([]byte ,error ){return _dc (_cebc ,"B5-V")};var _gfec =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x41\x6b\xdb\x4c\x10\x86\xef\xfb\x2b\xe6\x98\xef\x90\xcf\x33\xab\xdd\xd5\x1a\x44\xa0\xc4\x04\x5c\x48\x53\x9a\xa6\x2d\x94\x1e\x64\xed\xca\x08\xea\x95\x90\xe5\x43\xfe\x7d\x99\x19\xd9\x85\x1e\x8c\xec\x47\x33\x2f\xd6\x33\x3b\xda\x3c\xee\x77\xfb\x32\x2c\xb0\xf9\x3c\x8f\xdd\x6b\x5e\xa0\x1f\x4a\x9a\xf3\x79\xbc\xcc\x5d\x86\x43\x3e\x0e\xc5\x18\xb2\x90\x86\x6e\xb9\xfe\x94\x4b\x77\x6a\x27\x63\xb8\xff\xf5\xfd\xbc\xe4\xd3\xbe\xf4\x23\x54\x5a\x97\x2e\xd3\x5a\x0b\xb0\xf9\x92\x8f\xc3\x79\x99\xdf\xe1\xee\x43\x1a\x0f\xf9\x3f\x48\xb9\x67\xfe\x32\xa7\x3c\x0f\xe5\x08\x77\x1f\xdb\xa9\x2d\x74\xbb\xf1\x7a\x99\xa6\xdf\xf9\x94\xcb\x02\x56\x58\x2e\x49\xae\x66\xf3\xf8\xdc\x4e\x9f\xda\x53\x86\x8d\x64\xdd\x6b\xe7\xbd\x96\xc9\xdd\x6f\x79\x3e\x0f\x63\x01\xa2\xff\x11\xc3\x5f\xfe\xf5\x7d\xca\x40\x6b\xcc\xdb\x7e\xf7\xd2\xf7\xe7\xbc\x00\x61\xf0\x5a\xf4\xe3\x6d\xbf\x83\x9f\x04\x84\x60\xbd\xaf\xe8\xd7\x5a\xfb\xfd\x79\x4c\x19\xf0\xfa\x07\xf6\xbb\xc7\xf1\x52\x16\x88\xb5\x5d\x19\xe9\xa3\x76\x63\xca\xe7\xa9\xed\xf2\xdc\x96\x63\x36\x00\x0d\x22\xe2\x03\x34\xd6\x3e\x3d\x3d\xf0\x33\xfc\x53\x61\x2a\xbf\x76\x0e\x49\xc9\xb5\x03\xb1\xef\x1f\x00\x00\xd0\x34\x48\x8a\x48\x90\xf5\xc1\x34\x68\x15\x59\x41\x9e\xac\x69\xb0\x52\x54\x09\xaa\x43\x34\x0d\x3a\x45\x8e\x11\xa1\x75\xa6\x41\xaf\xc8\x0b\xb2\x91\xe3\x83\xa2\x20\xc8\x57\x1c\x5f\x2b\xaa\x05\xd5\x5b\x8e\x8f\x8a\x22\x23\x8b\x8e\xe3\xb7\x8a\xb6\x82\x2a\xe4\xf8\x56\x51\x2b\xc8\x07\x8e\x3f\x28\x3a\x08\x8a\xc4\xf1\x9d\xa2\x8e\x51\x85\x35\xc7\x27\x45\x49\x50\x65\x39\x3e\x2b\xca\x82\x7c\xe4\xf8\x5e\x51\x2f\x28\x3a\x34\x0d\xa9\x2f\x12\x5f\x0e\xb7\xc1\x34\xa4\xbe\x48\x7c\xb9\xca\x5b\xd3\x90\xfa\x22\xf1\xe5\x02\x46\xd3\x90\xfa\x22\xf1\xe5\x62\x70\xa6\x21\xf5\x45\xe2\xcb\x93\xe5\x78\xf5\x45\xe2\xcb\x57\x35\xc7\xab\x2f\x12\x5f\x3e\x54\x1c\xaf\xbe\x48\x7c\xf9\x18\x39\x5e\x7d\x91\xf8\x0a\xe4\x38\x5e\x7d\x91\xf8\x0a\x0e\x39\x5e\x7d\x91\xf8\x0a\x81\x47\x4b\xea\x8b\xc4\x57\xd8\xf2\x68\x49\x7d\x91\xf8\xaa\x89\x47\x4b\xea\x8b\xc4\x57\xed\x78\xb4\xa4\xbe\x48\x7c\xd5\x81\x47\x4b\xea\x8b\xc4\x57\xbd\xe5\xd1\xda\xf5\x44\x8a\xaf\x48\x3c\x5a\xab\xbe\xac\xf8\x8a\x8e\x47\x6b\xed\x7a\x6e\x91\x51\x8d\x4e\x0e\xef\xf5\x90\xf2\x77\x5e\xfd\xdb\x2a\x76\x97\x79\xce\x65\x91\xc5\x97\x55\xe3\xb5\x18\x4a\xbe\xbd\x44\xa6\x71\xe2\x2e\xf9\xfc\x09\x00\x00\xff\xff\xdb\x85\x89\xdc\x70\x04\x00\x00"); -func _egcd ()(*asset ,error ){_bfge ,_dgdb :=_gfed ();if _dgdb !=nil {return nil ,_dgdb ;};_ffbe :=bindataFileInfo {_ag :"B5-V",_bc :620,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491512,0)};_cgfg :=&asset {_cd :_bfge ,_dce :_ffbe };return _cgfg ,nil ; -};func _ccfgc ()([]byte ,error ){return _dc (_efed ,"KSCpc-EUC-H")};func _abed ()(*asset ,error ){_dfbc ,_afffa :=_dgdf ();if _afffa !=nil {return nil ,_afffa ;};_fccf :=bindataFileInfo {_ag :"Hankaku",_bc :579,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492279,0)}; -_bade :=&asset {_cd :_dfbc ,_dce :_fccf };return _bade ,nil ;};func _dbb ()(*asset ,error ){_cbfb ,_fagg :=_ddea ();if _fagg !=nil {return nil ,_fagg ;};_gddb :=bindataFileInfo {_ag :"UniGB-UTF32-V",_bc :839,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492778,0)}; -_defe :=&asset {_cd :_cbfb ,_dce :_gddb };return _defe ,nil ;};func _gfbb ()([]byte ,error ){return _dc (_fbdf ,"GBpc-EUC-H")};func _gca ()([]byte ,error ){return _dc (_cffb ,"Adobe-KR-4")};func _ded ()([]byte ,error ){return _dc (_ged ,"90ms-RKSJ-V")}; -func _bacb ()(*asset ,error ){_dcg ,_gdce :=_gfcg ();if _gdce !=nil {return nil ,_gdce ;};_daea :=bindataFileInfo {_ag :"ETen-B5-V",_bc :650,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491761,0)};_gbdb :=&asset {_cd :_dcg ,_dce :_daea };return _gbdb ,nil ; -};var _accb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\x63\x37\x14\x05\xf0\xbd\x3e\xc5\x5b\x4e\x17\xad\xa5\xfb\x4f\x12\x3c\x02\x25\x19\x68\x16\x93\x29\x4d\xa7\x2d\x94\x2e\x1c\x3f\x39\x18\x1a\xdb\xd8\xce\x22\xdf\xbe\xdc\x7b\x9c\x14\x66\x11\x9c\x1c\x9e\xce\x8b\x7f\x70\xd0\xea\xf6\xfe\xee\x7e\xbf\xbb\x4c\xab\x5f\x4f\x87\xcd\xe3\xb8\x4c\xdb\xdd\x7e\x39\x8d\xf3\xe1\xf5\xb4\x19\xd3\xd3\x78\xde\xed\x53\x2a\x34\x2d\xbb\xcd\xe5\xfd\xcf\xf8\xd8\xbc\xac\x8f\x29\xf9\xf9\xc7\xb7\xf3\x65\xbc\xdc\xef\xb7\x87\x89\xf1\xdc\xf2\x7a\xbc\x3e\x3b\x4d\xab\xdf\xc6\xf3\xee\x7c\x39\xbd\x4d\x9f\x7e\x5e\x0e\x4f\xe3\x87\x69\x19\x5b\xcf\xbf\x9e\x96\x71\xda\xed\x9f\xa7\x4f\xb7\x0f\x8f\xe5\x23\x7e\x7c\x3d\x1e\xff\x1d\x2f\x63\x7f\x99\x72\x64\x63\xbf\xc4\x67\x5a\xdd\x7e\x59\x1f\x1f\xd6\x2f\x63\x5a\xdd\x3e\x3c\xd2\x8f\xbf\x44\x1c\xe9\x1f\xe3\x74\xde\x1d\xf6\x53\xc9\x3f\xe5\x6c\xff\xe7\xbf\xbf\x1d\xc7\x54\xae\xc7\xbf\xdd\xdf\x7d\xdd\x6e\xcf\xe3\x32\xb5\x8c\xea\xd5\x5f\xdf\xee\xef\xa6\xbf\xcb\x54\xf2\x44\xca\xcd\xfe\xb9\x3e\xfa\xe7\x97\xc3\x32\xae\xef\x4f\x05\xdf\x65\x73\x58\xc6\xf9\xb8\xde\x8c\xd3\x7a\xff\x3c\xd2\x34\xcd\x54\xa8\xdc\x4c\x73\xfd\x5c\x3f\xdf\xf8\xbf\xf9\xdd\x13\xa9\xd1\xf5\xe4\x6e\x41\xf2\x7e\x82\x4a\x1d\x37\x93\xf6\x6e\x69\x26\x42\x44\x1e\x59\xee\x39\xcd\xc4\x88\x38\xa2\xd2\x24\xcd\x24\x88\x24\x22\xaa\x2d\xcd\xa4\x88\x34\x22\xae\x94\x66\x32\x44\x16\x91\x98\xd7\x57\x44\x35\x22\x35\xaf\x6f\x88\x5a\x44\xa6\x5e\xdf\x11\xf5\x88\xaa\x78\xfd\x1a\xd1\x3a\xa2\x26\x5e\xff\x84\xe8\x29\xa2\xce\x5e\xbf\x41\xb4\xf1\xa8\x66\xf6\xfa\x05\xd1\x12\x51\x21\xaf\x1f\x88\x46\x44\x54\xbc\x7e\x8b\x68\x1b\x11\x17\x4a\x33\xe7\x88\x38\x47\x24\xd9\xd2\xcc\xf0\xe2\xf0\xaa\x9a\x73\x9a\x19\x5e\x4c\x88\xba\xa4\x99\xe1\xc5\xe1\x55\xad\xb5\x34\x33\xbc\x38\xbc\x6a\x6d\x5e\x0f\x2f\x0e\xaf\xda\xaa\xd7\xc3\x8b\xc3\xab\xf6\xea\xf5\xf0\xe2\xf0\x6a\xd9\xbc\x1e\x5e\x1c\x5e\xad\xa8\xd7\xc3\x8b\xc3\xab\x91\x7a\x3d\xbc\x38\xbc\x1a\x8b\xd7\xc3\x8b\xc3\xab\x89\x78\x3d\xbc\x38\xbc\x9a\xb2\xd7\xc3\x8b\xc3\xab\x19\x79\x3d\xbc\x38\xbc\x5a\x25\xaf\x87\x17\x87\x57\x6b\xc5\xd2\x2c\xf0\x92\xf0\x6a\xbd\xe4\x34\x0b\xbc\x24\xbc\x7a\xce\x92\x66\x81\x97\x10\xa2\xde\xd2\x2c\xf0\x92\xf0\xea\xa5\x53\x9a\x05\x5e\x12\x5e\x9d\x9a\xd7\xc3\x4b\xc2\xab\x73\xf3\x7a\x78\x49\x78\x75\xa9\x5e\x0f\x2f\x09\xaf\xae\xe6\xf5\xf0\x92\xf0\xea\x66\x5e\x0f\x2f\x09\xaf\x5e\xd5\xeb\xe1\x25\xe1\xd5\x9b\x7a\x3d\xbc\x24\xbc\x7a\x17\xaf\x87\x97\x84\x57\xc9\x99\xbd\x1f\x60\xb2\x20\x2b\xec\x2f\x80\x98\x0c\x64\x44\xfe\x06\x90\xc9\x16\x19\x53\x4e\xb3\xc2\x4c\x33\x32\x29\x92\x66\x05\x9a\x16\x64\x9a\x5b\x9a\x15\x6a\x4a\xc8\x2c\x53\x9a\x15\x6c\xca\xd7\xcc\xd7\xab\x70\x53\x41\x56\x7d\xbe\x0a\x38\x55\x64\xcd\xf7\xab\x90\x53\x43\xd6\x7d\xc0\x0a\x3a\x0d\xba\x52\xb2\x2f\x58\x61\xa7\x0d\x59\xf1\x09\x2b\xf0\xb4\x23\x23\xdf\xb0\x42\x4f\xd7\xc8\xd8\x47\xac\xe0\xd3\x27\x64\xe2\x2b\x56\xf8\x29\xfc\x8a\xfa\x8c\x15\x7e\x0a\xbf\x62\xbe\x63\x85\x9f\xc2\xaf\x54\x1f\xb2\xc2\x4f\xe1\x57\x9a\x2f\xd9\xe0\x67\xf0\x2b\xdd\xa7\x6c\xf0\x33\xf8\x51\xf6\x2d\x1b\xfc\x0c\x7e\x54\x7c\xcc\x06\x3f\x83\x1f\x91\xaf\xd9\xe0\x67\x72\xcd\x7c\xce\x06\x3f\x83\x1f\xb1\xef\xd9\xe0\x67\xf0\x23\xf1\x41\x1b\xfc\x0c\x7e\xa4\xbe\x68\x83\x9f\xc1\x8f\xcc\x27\x6d\xf0\x33\xf8\x51\xf5\x4d\x1b\xfc\x0c\x7e\xd4\x7c\xd4\x06\x3f\x83\x1f\x75\x5f\xb5\xc1\xcf\xe0\xc7\xd9\x67\x6d\xf0\x33\xf8\x71\xf1\x5d\x1b\xfc\x0c\x7e\x4c\x3e\x6c\x83\x9f\xc1\x8f\xd9\x97\x5d\xe1\x57\xe1\xc7\xe2\xd3\xae\xd7\x6b\x04\x7e\xac\xbe\xed\x0a\xbf\x4a\x22\x9e\x59\xc9\x71\xc1\xbc\x5f\x24\xfe\xbb\xdf\xbf\x1f\x37\xe2\xe6\xf5\x74\x1a\xfb\x4b\xdc\xbe\x71\xf3\xf9\xd5\xb5\xdb\x8f\x8f\x9b\xfc\x78\x38\xfa\xa9\xf8\xf9\x2f\x00\x00\xff\xff\xb9\xb9\xd4\x19\xf5\x07\x00\x00"); -func _decb ()([]byte ,error ){return _dc (_bage ,"GB-EUC-V")};func _feee ()([]byte ,error ){return _dc (_acgd ,"UniJIS-UTF8-H")};func _fdgc ()(*asset ,error ){_afff ,_bdda :=_gceaf ();if _bdda !=nil {return nil ,_bdda ;};_ccab :=bindataFileInfo {_ag :"GBK-EUC-V",_bc :766,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492085,0)}; -_fdbbg :=&asset {_cd :_afff ,_dce :_ccab };return _fdbbg ,nil ;};func _fbab ()(*asset ,error ){_cdbc ,_fcbf :=_febe ();if _fcbf !=nil {return nil ,_fcbf ;};_eaea :=bindataFileInfo {_ag :"GBpc-EUC-V",_bc :786,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492178,0)}; -_bdgf :=&asset {_cd :_cdbc ,_dce :_eaea };return _bdgf ,nil ;};var _daeaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xaf\x2d\x3b\x72\xe5\x37\x7f\x9f\xe2\x0c\xdb\x83\xb6\x32\x93\xcc\x24\x09\x3c\x1c\xc0\x92\xba\xe0\x6a\xa0\x6d\xc3\x6a\xd9\x06\x0c\x0f\x92\xfb\x8f\x5c\x80\xf5\xaa\xf0\xaa\x34\xd0\xb7\x37\xb8\xd6\x6f\xed\x57\x6d\x18\xb8\x75\x27\x77\xc7\x21\x93\x0c\x92\xc1\x60\xfc\x63\xf0\xef\xfe\xe1\xf7\xff\xf8\xfb\x5f\xfe\xf0\x97\xaf\xbf\xfb\x5f\x7e\xfd\xe3\xe3\x9f\x5e\x7f\xf9\x7a\xff\xe1\x97\xe7\xaf\xaf\x3f\xff\xf1\xdf\x7e\x7d\xbc\xbe\xe6\xeb\x5f\xfe\xf0\xcb\x4f\x3f\xed\xc7\xd7\xf3\x0f\x8f\xbf\x04\xd4\x7f\x8f\x7f\xbd\xff\xf4\xd3\x4f\xeb\xfb\x7f\xfa\xf7\x3f\xff\xe5\xf5\xaf\xbf\xff\xe5\xfd\xc7\xaf\xe2\x7a\xcf\x7f\xfb\x13\x75\xbf\xbe\xfe\xee\x7f\x7d\xfd\xcb\x1f\xfe\xfc\x97\x5f\xff\xfd\xeb\x3f\xfc\x0f\xcf\x3f\xce\xd7\x7f\xf7\xf5\x7c\xbd\xd7\xdf\xff\xe7\x5f\x9f\xaf\x5f\xff\xf0\xcb\xbf\x7c\xfd\x87\xff\x7c\xff\xe9\xfe\x65\xff\x14\xfc\xd3\xbf\xfd\xe9\x4f\xff\xcf\xeb\x5f\x5f\xbf\xfc\xe5\xab\xe9\x6f\xaf\x5f\x9e\xfa\xff\xa7\xbf\xfb\x87\xff\x72\xff\xe9\x7f\xba\xff\xf5\xf5\xf5\x77\xff\xfc\xcb\x1f\xfe\xf3\xef\xff\xe9\xd8\xb6\xfa\x1f\xff\xf9\xbf\xfe\xae\xff\xc7\xff\x51\x35\x54\xe1\x7f\x7b\xfd\xfa\xe7\x3f\xfc\xf1\x97\xaf\xfd\xbf\xdf\x8e\xfd\xb7\x3f\xff\xd7\x7f\xff\xd3\xeb\x6b\xa7\xa1\xff\xe3\x9f\x7f\xff\x8f\x5f\xff\xe7\xfe\xb5\x6f\x5f\xc7\x79\x95\xfd\xff\xe2\xef\xff\xfb\x7f\xf9\xe3\xf3\xf5\xb5\x19\xaa\x1e\xc4\xe3\x8f\xcf\xd7\x9f\xff\x74\x3f\x5e\xbf\xde\xbf\xfc\xcb\xeb\xa7\xaf\xaf\x9f\xb7\xed\xfb\xcb\xff\x7e\x6e\xbf\xfb\x5e\x7f\xf9\x87\xad\xf3\xb7\x9f\xff\xf1\x77\x7f\xef\xbf\xfd\xa7\xad\xf3\xd7\x9f\xff\xd3\xef\xfe\x3e\x7f\xfd\x9d\xfe\xba\xfe\xfe\xf3\xef\xda\xdf\xf3\xf7\xd7\x2f\xcf\xff\x4f\x2f\x3f\xed\xee\xfc\x97\x3f\xfe\xe5\xf9\x7a\xfb\x6f\xea\xf7\xe7\xfd\xfd\xfd\xb5\xaf\x2f\xfe\xba\xe8\xa7\x7d\xdb\xc0\xf6\x0f\xcf\xc7\xff\x7d\xff\xfa\xd3\xcf\xe7\xe3\xfb\x6b\xb4\x9f\x7e\x6e\xeb\xff\xf1\xd3\xcf\xed\xf9\xfd\x35\xea\x4f\x3f\xb7\xd7\xf7\xd7\xbe\x6d\x3f\xfd\xfc\x38\xee\x6d\x35\xb5\x7e\xd4\xf5\xb7\xa6\x9f\xe7\xf7\xd7\xe5\x3f\x5e\xdf\x5f\xa3\xe8\x57\xfb\xfe\x6a\x87\x3f\xe9\xdf\x5f\x57\x75\xcd\xf1\xfd\xb5\x9f\x87\x7e\xde\xdf\x5f\x7b\x75\x85\xb9\x9a\x1a\xfa\xf9\x58\x15\xdc\xc2\x73\xfd\x74\xb3\xab\xff\xb3\xea\xe7\x1a\xca\xa1\xba\x73\xfb\xfe\x6a\xc6\x60\xee\xdf\x5f\xd7\x50\x85\x59\x57\x6f\xa7\x7e\x9e\xeb\x33\xd7\xbd\xbe\xbf\x5a\xeb\xfa\xd9\xbe\xbf\xf6\xdd\x9f\xf5\xef\xaf\xbd\xf8\xb3\x85\xd9\x25\x74\xa6\x30\xf3\x5f\x17\x66\x87\xd0\x99\xea\xf8\xfa\xe9\xe7\x47\xe9\xd7\xfa\x6c\xb5\x5b\x46\x5b\x1d\x9f\xfa\xb9\x1a\xab\x87\x7e\xae\xba\xe7\x6a\xac\xac\x19\xd9\x85\x4e\x99\xaa\xab\x16\xd4\x71\x5d\xe8\xd4\xb5\xac\xa3\x5c\x97\x7e\xef\xfa\xbd\xeb\xf7\xb1\xda\x68\xa7\x0b\x8a\x80\x6b\x08\xa8\x02\x4a\x13\xa0\x31\x36\xf5\x50\x85\xd8\xd9\x4e\x37\xdc\x04\x34\xb7\xd6\x05\xf4\x22\x60\x18\x70\x6b\xf7\xf7\xd7\xb1\x95\xe2\x92\x29\x40\x2b\x54\xfb\xc3\xad\xb9\xda\xd3\xad\xb9\xe4\x65\x74\xdc\xf4\xdb\x25\x6b\xc2\xea\xd8\xd4\xc0\xa1\x6a\x63\x77\x89\x70\x1b\x87\xc6\xa6\xc6\x46\xd1\x6f\x7f\x71\xb9\x7f\x03\xcd\xfd\x0b\x99\x61\x9c\xb5\x28\x75\x18\xe7\xe6\x92\x7b\x7d\x3f\xdc\xee\x5c\x34\x2a\x32\xa8\xc3\x18\x77\xb7\x65\x8c\x87\x3f\x7f\xb9\x17\x7f\xf2\x76\x2f\x02\x6e\x63\xec\xd9\xbc\x77\x97\x68\xd2\xef\xc3\x25\x06\x3c\xe9\xdd\xdf\x78\xd2\x87\xc6\x7f\x7b\x00\xa2\x92\x7a\x6b\xd2\xfb\xee\x6f\xba\x50\x13\x02\x8b\xf2\x47\xdd\x35\x2f\xb7\xd0\xbf\xdc\xe3\xd4\x6f\xff\x1d\x24\x35\x47\x37\x48\xaa\xd6\x04\x49\x2d\xec\x22\xf6\xbd\xaa\x87\x69\x14\x0f\x0d\x78\x16\x03\xae\x04\xbe\xae\x06\xbe\xea\x65\x1a\x5f\x6d\xbd\x3a\x99\x70\x7f\xd3\xdd\x80\xfa\x9f\x9e\x70\xfa\xbf\x3d\xfb\xfe\xc6\x44\x52\xdd\xda\x43\x80\x17\x69\x7a\xca\x3d\x80\x69\x22\xa9\x6e\xc0\xa3\x39\xd6\xf4\x9d\x9d\xd1\x6c\x02\x34\x9a\x5d\x3f\x17\xc9\xab\xfe\x19\x82\x3f\x04\x78\x2c\xed\x12\x70\xba\xf7\x22\x0e\x08\xe7\xfa\xff\xe1\x65\x8f\xb3\x7b\xa0\x97\xdb\xf6\x6e\xb8\x8a\x00\x53\x56\x73\x57\xc3\xd8\xb8\x9a\x77\xc3\xe1\xae\x44\x5a\xc5\xbf\x17\x4b\x2c\xcd\x28\x3f\xb5\x66\x1a\xcb\x22\xf8\xd5\x6e\x15\x00\xc1\x77\x01\x1a\x8d\xfa\x5b\xf4\xbe\xd7\xa1\x9f\x1e\xcb\xe9\x8f\xbd\x2e\x97\xeb\xb3\x2e\x6e\xc9\xeb\xe2\xf1\x67\x23\xf8\x1b\x36\x82\x5b\xf3\xba\x68\x2d\xcf\xb5\x13\x16\xe0\xd6\xd8\x0a\x1a\x62\xb6\x82\x91\x61\x5d\x34\x5e\x73\xaa\x26\x5e\x75\x6a\x2b\x88\x8e\x4f\x6d\x84\x43\x1f\xdf\x66\x44\x97\x01\xaf\x4b\xd7\xc7\xec\x09\x11\xc2\xc9\x9e\x38\x5d\xc2\x9e\xf0\x37\x1e\x4b\x71\x35\xef\x09\x0d\x85\x3d\xe1\x4a\xde\x13\xc2\x9d\x3d\x61\x44\x18\x87\x0b\x18\x87\xa6\x68\xed\x96\x51\x37\xff\x7e\xab\x25\xad\xd4\x64\x45\x0c\x78\x45\xba\xc6\xc7\x6e\x11\xaf\x3c\xd9\x2d\xee\x65\xed\x96\xb5\x0d\x5c\xcd\x14\xe6\x25\x65\xb7\x78\x58\xec\x16\x2f\x84\x76\xcb\xe1\x4a\x5e\x13\x2f\x36\x7b\x45\x3c\xf4\x9c\xac\x89\xab\xc1\x50\x0d\x3c\xd7\xe7\x6e\x69\xed\x7b\xed\xba\x4b\x44\xa3\xd9\xb9\x44\x34\x67\x17\x29\x36\x9f\x06\xfd\xd8\x05\x88\xfe\x34\x0b\xad\x7b\x16\x5c\xe9\xad\xbf\xaf\xa9\x6a\x8b\x2e\x47\xdd\x37\xfd\xde\x55\x47\xdf\x8a\x0d\xd7\xbd\xe8\x77\xd1\xdf\xfd\xbb\xea\xef\xa7\x7e\xb3\xc5\x86\x00\x9f\x29\xc5\xb5\x3c\x01\x62\x3e\x0d\xb2\x14\xe7\x6e\xc3\xbb\xa8\xba\x73\x4f\x41\x71\x6b\xb0\x8b\x26\xc0\x53\xa0\x3d\xd5\x98\x68\xcd\x47\x9b\x92\x35\x34\xc0\xbe\xe6\x79\x54\x7d\x3e\xbc\xc1\xba\xa8\x67\x78\x24\x7b\xd7\x6f\x4f\x89\x9a\x1a\x99\x2c\xd7\xd2\x58\x44\xc8\xc3\x5b\xac\x8b\xda\x87\xc7\xd2\x37\xd7\x32\xab\xa6\x5a\x37\x30\x04\x88\x2e\x0f\x37\x7c\xeb\xb7\xff\x6e\x7e\xe0\xaf\x1f\xee\x7d\x13\xf0\x32\xe0\x4e\xde\xee\x44\x9f\xdc\xc6\x5e\xeb\x3c\xee\xdd\x87\x83\x7a\xf4\xe6\xe9\x1e\xa4\x37\x4f\x17\x7f\x1f\xb7\xb1\xdc\xdd\x80\xb1\x14\x01\x8d\x1b\x2c\x9b\x00\x4d\x72\xef\xe7\x8f\x18\xe1\x60\x0f\x0d\xb7\xfe\x34\x7a\x06\xcc\x0b\x86\xbb\x32\xe2\x5a\xe9\xe1\x5d\xd4\x77\xf5\xcb\x2e\xd2\x81\x3b\xa6\xe7\x5d\xa4\x35\xa6\xe7\x7d\xf3\x37\x1e\x92\xce\x9c\xb1\x16\x77\x54\x1d\xab\x63\x7a\x44\xdd\x80\x07\xa1\x1d\x3d\xbc\x73\xfa\xe6\xc6\x3c\xa2\xea\xc6\xa6\x4b\xfc\x0d\x48\x1b\x1b\x90\x5e\x25\x77\x37\x9e\x92\x65\xee\xce\x04\x9f\x02\x8c\xe7\x66\x40\xa4\x2e\x4e\x75\xfb\x38\xe9\xda\xba\xb7\x8f\x82\xae\xcd\x71\x5b\x30\xea\x3a\x41\xef\x6e\x6c\x8a\xab\x79\x1f\x4b\x7a\xbb\x75\x16\xd4\xe2\x5a\xc6\xac\x18\x19\xd3\xc1\xee\x6e\x3c\x9d\x92\x3f\x6e\xa8\x58\xfb\xf4\xf6\x31\xd1\x8d\x8d\x37\xa4\xe8\xf3\xf6\xe1\xd0\x45\xdf\x37\x94\x2b\xf6\x78\x87\x3e\xdd\x98\xd1\x1c\xfe\xc6\x84\x38\xdc\x98\xb1\xd9\x5d\x02\x02\x6b\x3a\x6f\x68\x4f\x27\xc5\x7d\xb3\x75\x34\x69\xac\xb4\xd8\xc9\xcd\xe2\x6a\xa5\xef\x69\xda\xf3\xa0\xd7\x7a\x88\x82\xee\xc5\xc6\xf4\xb7\xc9\x7c\x6b\x25\xa6\x84\x4f\x4d\xdd\xe4\xb0\x15\x03\x99\xcc\x70\xf5\x17\x23\xe2\xfb\xd4\xfc\x1e\xfe\x74\x7e\x7f\x89\xa9\x4e\xcb\x9c\x5d\xcc\x62\x9a\x87\x89\x1c\x66\xe6\x4c\xed\x87\xf3\x18\x40\x9a\x3d\x04\xac\x46\x8b\xbf\x80\xf5\xaa\xdf\x35\x4b\x1a\xd4\xe4\x2c\x3c\x5d\xc7\x0b\xa6\xb3\xed\xb1\x48\x49\x58\x3c\x44\x2d\xfe\x55\x83\xef\x43\x82\x87\x98\xc2\xa3\x7f\x7a\x79\x88\x30\x8a\xeb\x2e\xdc\x8b\x9b\x7a\xfe\x36\xe6\x07\x84\xa0\xc3\xe5\x61\xd6\xd8\x75\x7c\x3f\x58\x3b\x49\x28\x0f\x18\x82\x8e\xc0\x07\x0c\xe1\x34\xd0\xa2\xa6\x3c\xc4\x01\xc4\xf2\x1e\xd6\xa5\xba\x31\x86\x19\x34\x97\xb8\x59\x09\xee\x0f\x76\xb5\x8e\xc3\x07\x6b\x2d\x29\xfc\xb1\xd6\x5a\x87\xdc\x83\x8d\x2b\x55\xe1\xa1\xcd\xaa\xa9\x7d\xb0\x3b\x25\xdc\x3d\x7c\x7a\xf5\x66\xc0\x03\xd4\xe7\xcf\xd0\xd6\xc2\xe4\x65\xa9\xab\x6a\x61\x5f\x5d\xd2\xa1\x59\xe6\xab\xbf\x0c\x14\x01\x6f\x03\xfa\xc6\x5a\x83\x37\xc1\xeb\xbe\x5d\x62\x60\x1a\x58\xfd\xbc\x26\xd5\xd6\x37\x6f\x6d\xef\xeb\x38\x8e\x1f\xb1\xbf\xb7\x65\xba\x2a\xd2\x7f\x5b\xc3\xa9\xe2\xa7\x6f\x30\xd2\x32\xbd\xb5\x45\x8f\x4d\xfb\xf5\x2d\x72\x3b\xb6\xe1\x92\xd3\x80\xbe\x11\x59\x1d\xdb\x22\x8f\xe7\xa6\x0d\xb0\xad\x25\x78\xee\xfa\x64\x5b\x5b\xe4\xb5\xcd\xb7\x8e\x9a\x63\x5f\x54\xf9\xda\xa7\xf7\x4c\x59\x1b\x45\x90\xce\xba\x75\x42\xbc\xf6\xf9\x9c\x22\xf3\xb5\xb5\x05\xf9\x88\x4b\x99\xb8\xc3\x1a\xbe\x20\x71\xb1\x35\x81\xaf\xa3\x6f\x6b\x06\x8e\x35\x4d\x02\xca\xf7\xd7\x95\x92\x35\x94\x6b\xc9\x8e\x02\x24\x60\xf3\x7b\x4d\xda\x07\x28\x7f\x0d\x54\x56\x5d\xc0\x52\xe8\x2f\x5a\x5e\x23\xb9\x16\xf9\x08\xe8\xe6\x02\xfa\x3d\xcc\x07\xf4\x5b\x9b\x79\x03\x58\x94\xb2\xa5\xd6\xa2\x94\x23\xb8\xbc\x34\x2b\x06\xc4\x85\x34\xd0\x05\xa8\xcb\x00\xea\x92\x06\xa4\xe6\x37\x1a\x58\x5c\x48\x12\x87\x80\x87\x5a\xdb\x69\xcf\x62\x14\x08\x4d\x93\x7d\x75\x8b\x3b\xd4\xd2\x0f\x40\x19\x2f\x2a\xc0\x70\x33\x94\x69\xbe\xae\xa3\xef\x80\xf7\xf7\x57\xeb\x8c\x79\x5f\xa3\x69\x62\x78\x0b\xd2\xca\x95\x16\x48\x5d\x0e\x06\x2e\x53\xc6\x90\x70\xf3\x3a\x7a\xd1\x34\x5c\x52\xce\x04\xae\x89\xd8\xb7\x45\xfe\xaf\xa3\xcb\x08\xb0\xef\xfd\x0c\x58\xbe\xbf\xda\xbe\x01\x9c\x2e\x1b\x80\xe3\xfb\xab\x97\x2d\x35\x6f\x41\x15\xe8\x6d\xda\xf4\x48\xa4\x66\xf7\xed\xa0\xea\x5a\xc7\x76\xa5\xd5\xb5\x67\xfb\x96\x0e\xa5\xea\x82\x5b\xb5\x11\xe7\x53\x24\x5e\x7e\xee\x01\xd7\x02\xb4\x1d\xc0\x0a\x2b\xc4\x61\x35\xf3\xd8\x3a\x98\xae\xb5\xea\x65\xf3\xec\x48\x51\x1a\xd2\xc6\x05\x2d\x2a\xd7\xb1\x2f\xe8\x10\x74\x01\x59\x93\x38\xf8\x70\x4d\x6b\x2f\x9b\x49\xfb\x5a\xc3\x1f\x92\xe7\x17\xb4\x3e\x94\x30\x29\x60\xcd\x5a\x19\x00\x62\xdc\xc7\x66\x4c\xdb\xe2\x4a\xbd\x6c\x03\x68\xba\xb0\x01\x3e\x0c\xba\x9d\x66\x46\x70\x80\x9c\x24\x66\x49\xf3\x02\xea\x02\x8c\x4b\x5b\x13\xd5\xb7\x3d\x50\x13\x44\xc5\xc5\xa8\xfb\xc6\xee\x6a\x8b\x57\xf7\x0d\x42\x95\xdc\xdb\x0b\x35\xfb\x5a\xfb\x06\x99\xf4\xae\xce\x06\xc0\x1a\x10\xeb\xd0\x45\x06\xc7\xde\x53\x11\xe5\xb6\x01\xb6\xb5\xb8\x1b\x40\xff\xfe\x92\x7e\x27\x40\x3c\xbc\xb6\x0b\xd0\x1b\x75\xa4\x74\x2d\x67\x0d\x26\x56\xd2\xd9\x78\x7d\xad\x51\xbb\x20\x9f\xbe\xa6\xe1\x1a\x05\xa0\x78\xcb\xf4\x1f\x30\x5f\xd5\x1d\xd8\xdb\x04\xac\xdd\x74\xa5\xc9\xb5\x99\x32\x82\xb5\x23\xda\x96\xf6\xdf\xea\x9a\x79\xb8\x35\x43\x0c\x60\x4d\xa5\x74\x5c\x01\xab\xb9\x4a\x0b\x4b\xb2\xed\xfb\xa0\xf1\x45\x9b\xed\x3a\x98\xae\x75\xc2\xb5\x2d\xc0\xb9\x8a\x68\x42\x4c\x84\xb5\xee\x53\x18\xb9\xa7\xd1\x3d\x48\xb8\xda\xb0\xa5\xed\x84\x68\x86\xc5\x9a\x93\xdd\x2e\x6d\xa4\xc1\x72\x25\xf5\x5f\xb0\x0c\x49\xfd\x0d\x66\x3a\x2c\x79\x9d\x6c\x5f\xcb\x78\xc7\xde\x3b\x20\x87\xc6\x05\xd8\x0c\x0e\xc0\x6e\xb0\x01\xbe\xcc\x6e\xa8\x2c\x4d\xe3\xd8\x3b\x2d\x2f\x7e\x2a\xe3\xcd\x02\xa6\xa6\xb3\x78\x20\xd3\x32\xcd\xc1\x1c\x3e\x24\xac\x1d\x07\x8c\xf8\x61\x72\xa7\x0c\x41\x0b\xce\xf0\xf2\xd9\x27\xa3\x86\x40\xf3\x5f\x56\xf0\x25\x79\xf3\x37\x10\x84\xea\x05\xa8\x13\x55\x06\x5d\x81\xc7\x7f\x5b\xf9\xfc\x6f\x41\x4f\x04\xbb\x42\x22\xc1\x6f\xa5\x3a\xb6\xf7\xeb\x68\x42\x63\x6c\xb2\x49\x5c\x87\x8f\x88\x51\x56\xe5\x7e\x78\xe1\x47\x11\x53\xde\x4e\x13\xd6\x10\x17\xea\x87\x91\x18\x32\x85\xf4\xc3\x7b\x7b\xc8\xe6\xd1\x0f\xf7\x39\x4e\x37\x73\xf2\xdd\x92\xa2\xfa\x71\x6e\x86\xa6\x5a\xf1\xd9\x32\xc4\x92\xfa\x51\x2b\x90\xbe\xf3\x14\x8d\x6b\xed\xaf\x7e\x78\x83\x8d\x6b\x31\x9a\x7e\x78\x67\x8e\x6b\x09\x89\xfd\xa8\x1b\x90\x70\x29\x69\x53\xfd\xf9\x3c\x1e\x97\x36\xc0\x41\x91\xe8\xe9\x48\xc9\x21\xc6\x72\x02\x69\x9e\x3e\x8d\xdc\x66\x73\xa5\x19\x9c\x3e\xd8\x0a\x95\xa7\x78\x27\xb8\x4c\xf1\x4e\x50\x99\x9e\xfd\x91\x8a\x66\x6c\x29\x7c\xac\x9a\x0c\x4f\xfb\xa5\x78\x74\xad\x7b\xc1\x47\x05\xd4\x09\x63\x96\x3b\xc4\x80\x61\xe9\xa3\x89\x5b\xf9\xa4\x1e\xcd\xd3\x47\xf3\x0d\x03\x9c\x4f\x98\x21\x4e\xdd\x8e\x02\xf0\xf0\x5a\xa6\xbf\xb5\xc3\xcd\x9e\x86\x6c\x1f\x8d\x45\x6f\x4b\x94\xee\x87\x89\x78\xb4\x45\x5b\xfd\x38\xe9\xdb\xa4\x95\x65\x6e\x6b\x61\x65\x4c\x5b\xc0\x64\xc2\xc0\xcc\xf2\x45\x56\x41\x1c\xb8\x59\x92\x19\xdd\xe3\xd9\x01\x5e\x3a\x4c\xfd\x59\x37\x55\x79\x3f\x0d\xb1\xb2\x7e\xf0\xd9\x10\xb3\xf7\x96\x1d\x43\xcc\xde\xac\x60\x88\x67\xf4\xc3\x47\xc4\x18\x3e\x9e\xcd\x35\xc7\x60\x95\x07\x50\x51\xcd\x02\x54\x55\xd6\x81\x34\xd6\xfd\x47\x42\xb1\xaa\x5e\xaa\x5a\x81\xbc\xc8\x60\x26\xbe\xda\x82\xd9\x14\xdd\x98\x47\x0e\x5b\x13\x8e\xfd\x03\x2e\x12\x68\x69\x45\x3b\x73\x1f\xc1\x54\x93\x6b\x44\xc3\xa0\x2c\x9c\x8c\x1b\x5a\x3d\x53\xea\xa9\xf7\x69\x37\x24\x21\x2f\x21\xbb\x01\xbe\x7c\x6a\x19\x9c\x9c\xdf\x50\xe1\xa3\x9b\x97\xf8\x88\x1b\x8f\x01\x3f\xd8\x00\xdd\x11\xbb\xee\x61\x3f\xce\xc1\x6e\x7a\x9a\x68\x91\x7d\xc6\x73\x40\x1d\x94\xc2\x3d\x98\xa4\x97\x39\x04\xcb\xf7\xb2\x4d\x7b\x98\xcc\xee\x4b\x75\xaf\xc3\x9c\xe6\x6e\x3a\x1f\x8e\xc3\x9b\xe3\x36\x16\xfb\x66\xd2\xba\xad\xdf\x1d\xb0\x90\xfb\x01\x51\xfa\x24\xbb\xad\xda\x1d\xb0\x9b\xfb\xe9\x99\x63\x8b\xdc\x56\xb7\x8e\xc3\xf2\xc3\xfd\x34\x27\x85\x72\xee\xd7\x38\x7f\xc3\xf1\x7e\xe5\x08\xd1\xa7\x73\xd8\x5a\x72\x7a\x99\xa7\xac\x22\x7b\x45\x98\x9c\xb7\x4e\xb8\xd2\xcf\x94\x36\x59\xe6\x3f\xa5\x43\x95\x3f\xa5\x53\xa5\x46\x6a\xca\xf4\x51\x0f\xef\xf6\x69\xdb\x47\x45\xe8\x98\xb2\x7e\xd4\xab\x06\x3a\xbe\xbf\x0a\x67\xe5\xbc\xd7\x6a\x55\xc4\xb6\x29\x0b\x48\x65\x3f\x4e\x4c\x20\xc5\xc2\xca\xf4\xf1\x58\xcf\x42\x97\x1a\x5b\xe9\x67\x1a\x92\x4f\xed\xbc\x52\x79\x7c\x7f\x9d\xdb\x99\x96\xe6\x82\x7a\xa0\x45\x4e\xad\x5b\x9a\x99\x32\x94\x94\xcb\x0c\x7c\x8a\x4e\x0b\x54\x3b\x6f\x1d\x2e\xb5\x55\xbe\xb4\x92\x5e\x7c\xb6\xcf\xdb\xde\xbd\xdd\x64\x3a\x6f\x69\xe7\x15\xe9\x74\xde\x5a\xc6\x02\xe3\x9e\xa6\xf8\x32\x06\xf3\x29\x8a\xaf\x63\xa4\x74\x6d\xab\xb1\x67\x70\x32\xd3\xd5\x91\xc9\xd7\xc6\x2a\xe3\x60\xac\x36\xc8\x6d\x1b\x95\x65\xb5\xf9\xad\x29\x19\xe5\xea\x9e\xd1\xca\x8c\x53\xb7\x06\xce\x52\xea\xeb\xf6\xa9\x6c\xab\x45\x65\x08\x52\xec\x4b\xd6\x6a\x8a\x60\x2a\x1b\x7a\xda\xe0\x33\x7c\x68\xcc\x69\x0b\x1b\x2a\xe4\x9c\xa2\xa6\xd2\xbd\xef\xa6\xc4\x8c\xe3\xf2\xee\x98\xb6\x0e\x95\xcb\x0a\xd8\xb4\xf1\xa7\xa0\x56\x4d\xcc\x3e\xd5\x7b\x67\x4e\x9b\x4f\x90\x75\xe7\xb4\x01\xe5\x80\x62\x64\x0a\x2a\x1b\xb3\x3a\x6d\x06\x86\x71\xcc\x69\x13\xef\x6f\x75\x9b\x87\x93\xd2\xbe\x70\xba\x68\x57\x3a\x59\xe9\x0c\xdd\xc6\xa0\x82\xca\x38\xa7\xc4\x99\xd2\x2b\x28\x6a\xe5\xaf\x8c\x75\xad\x74\x29\x2c\xf4\xf4\x42\x1f\x60\x2f\x9b\x05\x1a\xf3\x9c\xb7\xec\xfc\x35\x65\x8b\xd4\xc6\x05\x3a\x5a\xb7\xcb\xa7\xf7\x7c\x98\x15\xb1\xa6\x0f\x1d\x9f\x9c\x83\x53\x2c\xae\x6e\xe3\x47\xb6\x5e\x55\x2d\xaa\xda\x80\xa4\xd7\x9b\x53\x4e\xd9\xb0\xea\xee\x03\x74\x3e\xd6\x9a\x94\xa3\xa5\xfb\xb6\xca\xf6\x74\xbf\x66\xea\x64\x23\x3e\xd6\xde\xaf\x87\x65\xdd\x29\xf3\x57\x39\x2c\xa5\x4e\x59\xc0\x4a\x19\x69\xf3\xb1\x6a\xee\xf9\xee\xb9\xa0\x23\xb8\x88\x47\x7c\x70\x79\x2f\x88\x89\x79\x88\x45\x20\x93\xce\x87\x96\x78\xbf\x52\xb6\x18\xc6\x80\x0b\x88\xbd\xd7\xc3\x52\xc6\x7c\xac\xf5\xae\x28\x99\xf3\x21\xff\x44\xc9\x88\xd6\x6a\x97\x16\xac\x17\x43\xa8\x05\xd6\x27\x7e\x5c\xcb\x91\x36\xa7\xa0\xd4\x7c\xac\xef\x6a\x6a\x2e\x2a\x19\x17\x23\x5a\x44\x52\xeb\x19\x68\x2d\xe7\x0e\x4b\x7c\xd8\x7f\xb6\x81\xd9\xe2\x1c\xa5\xb3\xeb\x64\xdd\x3b\x7a\x07\xcf\xc5\xfe\x8f\x9a\x99\x90\xb7\xec\x33\xbb\xeb\x24\xae\x17\x3b\x5d\x06\xbf\xe3\x62\xc7\xe9\x60\x38\xea\x99\x1e\xee\xbf\x62\xab\x8f\x45\x76\xf5\xca\x0c\x2e\x76\x52\xb3\xfb\x1e\x22\xc2\xbd\xa5\xf7\x35\x86\x96\x99\x90\x81\x70\x64\xa5\x65\x21\x1c\x3b\xdf\x89\xcf\xb4\x12\xc8\xfb\x3d\x35\xff\x9a\x71\xcb\x84\x58\x51\x3a\xe7\x63\x69\x58\x15\xa5\x67\xca\xa2\x58\x5b\x56\x73\xb1\xa3\x8a\xfa\x35\x1f\xf2\x06\x5c\xec\x5e\x1b\x1c\xeb\x99\x65\x99\x6b\x80\x0a\x5a\x10\x34\x05\xa5\xea\x63\x11\x68\xa6\x62\xb1\xad\x3a\x60\x9e\x0f\x89\x0b\xe3\xd3\xca\x3a\xa7\x8b\xc5\xcd\xa9\x03\xff\x38\xd8\x73\xcf\xb5\xcb\xce\x8d\x69\x7a\xae\x5d\x56\x4e\x48\xf9\xb9\x36\x52\x41\xd9\x99\x4f\x6d\xa4\x66\x69\x7d\x3e\xd7\x46\x2a\x98\xc8\xe6\x73\x6d\xa4\x73\xeb\x69\xa5\x69\x7b\x54\xa0\xfe\xfd\x75\xee\x25\x6d\xae\x01\xf6\x2b\xad\xac\x8d\xd4\xf7\xd4\x5c\x07\x42\x3f\xd3\xdf\x1a\xdf\x71\xa4\x87\xe7\xf7\xd7\x59\x60\x4d\xcf\xb5\x91\xce\x72\xe5\xbb\xb7\x20\x7a\x5f\x1b\xa9\xd4\x93\x1e\xb4\x91\x3a\xdb\xe3\x39\x64\xe6\x81\x4f\x3d\xd7\x46\x3a\x4b\xcb\x77\x62\xd7\x5b\xca\x24\x0a\x04\xcf\xb5\xc9\xca\x06\x47\x7b\xae\x4d\x56\x4e\x96\xfa\xb9\x36\xd9\x79\x41\xf4\x4f\x9d\xba\xd7\x96\x9a\x6b\x7c\xd7\x9e\x1e\x96\x2c\x1f\xde\xf7\x94\xf2\x78\xb5\xb4\xb2\x36\x59\xef\xe9\x4f\xeb\xf7\x69\xf3\x2d\x22\x64\x06\x2d\x0c\xc1\xd0\x31\x3d\xa7\xa6\xb5\xeb\xc2\x68\xd7\x06\x3c\xae\x33\xdf\xd5\x35\x13\x1c\x64\xcf\xb5\x01\xcb\x5e\xf2\xdd\x1a\x5f\x6d\x29\xd3\x79\x19\xc6\xff\x5c\x3b\xf0\x0c\x11\x3e\xd7\x0e\x2c\x9f\xc9\x5e\x3b\xb0\xd4\xf3\x47\xb1\x08\xaa\x3a\xb5\x05\x83\xcd\x43\x2b\xcf\x3c\xad\xed\x59\xda\xa7\xff\xd7\x2a\x2b\x29\x5b\xd4\x7b\x21\x49\xc9\x56\x7c\x1c\x59\x17\x47\x82\x8c\x1d\xdc\xb4\x3f\xcb\x15\xa8\x88\x9c\xf2\xe1\x1a\xfe\x08\x71\xc9\xf3\x3a\x32\xf9\x6b\x7f\x96\xcf\xa2\xc9\xc9\x1d\x9e\xfd\xb4\xb7\x0e\xd9\xe8\xb9\xf6\xe7\xb5\x7f\x7a\x58\xa3\x1f\x5b\x5a\xb1\x50\x9e\xef\x16\xff\xd9\xb2\x41\xec\xec\xfe\x40\xaf\xef\xaf\xeb\x40\xb4\x91\x8c\x7d\xe4\xc0\x7e\xc9\x09\x93\x56\x5e\x6b\x7b\x16\x4c\xb1\xf3\x25\x83\xf7\x09\x27\x7e\xad\xed\x79\x1c\xe0\xf2\x92\xb4\x81\xb4\x3d\x5f\x36\x96\x59\xd3\x9d\x76\x49\x5c\x23\x6d\xae\xf1\xa1\x7d\xce\x97\xce\xb9\x10\xfa\xcb\xb1\x20\x9f\xfe\x96\x2e\x1a\x42\x7f\xc9\x49\x55\x8e\xf4\xf0\x50\x50\x5b\x70\x59\xe3\x1b\x30\x00\x39\x3a\xf6\x7e\x06\x92\x9a\x90\xef\x86\x2d\xbd\x7c\xb7\xb6\xe7\x75\x05\x4f\x89\x32\x39\x23\x5e\x0e\x1a\x39\x53\x56\xb5\x25\x68\x53\x1e\xfa\x30\xb8\x97\xb6\xe7\x3e\x52\xd6\xbe\xbf\x2e\x6c\x7a\xf3\xb5\xb6\xe7\xd5\x6a\x5a\x19\x16\xe7\x80\xd6\xf8\x22\x92\xc9\xb8\x73\xf4\x4f\x0f\x8b\xfd\xf4\x23\x35\x9f\x92\x06\x2a\xd0\x6b\xcd\x19\xf4\x22\xb3\xcf\x71\x72\xe6\xca\xea\x73\x0c\x58\x9a\x8d\x3e\xe7\xce\xe6\x91\xd1\xa7\xf4\x34\xa3\x03\x32\x02\xc0\x4b\xfb\xb3\x72\x04\xcb\x1e\x54\x46\x0d\xb4\x84\x3a\x6c\xa4\xf3\xb5\xf6\xe7\x47\xfe\x7b\x49\x12\xeb\x21\x18\x6d\xcf\x13\xee\x27\xbb\x51\xdb\xf7\xf4\x30\x05\x05\x51\x2b\xf7\x69\xe5\xf9\xfd\xd5\xaf\x91\xb2\xb5\x03\x6b\x48\x4b\x32\x1b\xb6\xea\x29\x27\xd4\x5e\x21\xe5\xd7\xda\x81\x6d\x6f\x81\x0e\x41\x7c\xa7\x0d\x58\x38\x20\x5f\xda\x80\x17\x9c\xf8\xb5\x36\x60\x39\x3f\xad\x88\xff\xc0\xcf\x5f\xda\x80\x67\xe6\x45\x61\x26\x25\x24\x32\x1d\x66\x11\x68\x6d\xc0\x08\x77\x2f\xc7\x65\x65\x23\x25\x30\x0b\xe8\x29\xf3\x4b\x20\x59\x4e\x46\xbe\x93\xe9\x04\xce\xf8\x96\x85\xa2\x30\xda\xb7\x04\xfe\x48\xbd\xf8\xdc\x38\x81\xdf\x3a\x1f\x37\x44\x93\xf7\xda\x80\xad\x7e\x6a\xda\x59\xda\x80\x2e\x59\x99\xf3\xdd\x5a\xbf\x68\x45\x6f\xe9\xc9\x25\xc2\xf3\x5b\x07\xe4\x05\xf5\xe2\xba\x3b\xf3\xa1\x8c\xd5\xc8\x3b\xef\xb5\x03\x5b\xad\x69\x66\xb1\xd0\x48\xb6\xb6\x10\x8e\xd2\x7e\xcc\x97\xdf\xda\x9e\x2d\x98\xfa\xf4\x84\x98\xdf\x6b\x0b\x96\xa1\x73\xaf\xe0\x62\x13\x2e\x0b\xa8\x72\x28\x74\x43\xf6\x43\x50\x24\x3f\x84\x04\x85\x62\x5f\xd8\x75\xa5\x44\xe6\xe5\xcf\x47\x76\x86\xb5\xd4\x94\x91\x56\x1a\x74\xe9\x9b\xcc\x41\x16\x4c\x8a\x7d\x60\x4b\xc7\x0f\x28\xc7\x83\xb4\xce\x62\x9f\xd8\x7e\xec\x1b\x68\x4a\xa1\xbb\x6c\x86\x5b\xe0\xd3\xbd\xb8\xdd\x03\x23\xad\x58\x5c\xe9\x0e\xe7\x85\x17\x97\x5e\xa6\x78\x5c\x07\x10\xea\x1b\xc0\xdb\xad\xba\x62\x97\x05\x74\x1f\x0d\xa8\x2c\x48\x14\x5b\x6c\x6b\xef\x0a\xe9\x13\x74\x0a\xea\x40\x97\xa0\x7c\xd7\x64\xab\xa8\x40\x5d\x65\x07\xd0\x90\x41\x7d\x03\xba\x57\xd9\x99\x36\xa7\x6a\x0e\xa0\x87\xa0\xb4\x22\x2f\x40\x49\xd9\x4b\x65\x17\xd0\x5b\x90\xdb\x94\x31\xa4\x2b\x4c\x57\x90\x6d\x3b\x27\xd0\xa1\x9a\x81\x34\x3e\xe6\x65\xe0\x3c\x1c\x80\x43\xa6\xba\x61\xd4\x1c\xe8\xb1\xd5\x16\x70\x15\xee\x57\x20\xb5\xca\x94\xca\xf2\xd1\xf7\xeb\x00\xd2\xac\x9d\x17\xd0\xe9\x3e\x4e\x40\x4d\xdb\x15\xa8\xb9\x30\x5f\x6a\xde\x20\x15\xd9\x3d\xba\x65\xbc\x05\xdd\xaa\xda\x07\xe0\x34\x98\xba\x0f\x37\x54\x01\x9f\xf2\x4b\xa5\xae\xa6\xee\x33\xae\xb7\xc7\x45\xa1\x24\xad\xad\xa6\x54\x56\x92\xad\x0e\x46\x26\x77\x97\xad\xf7\x0b\xf2\xda\x35\x20\xad\xdd\x99\x76\xb4\x76\x17\xd8\xda\x83\x73\x06\x12\x02\x57\x5a\xd1\xda\xb1\xfd\x6e\xd3\xdf\xe9\x19\x98\x96\xf0\xb3\x5b\xa4\x48\xf7\xad\x06\x92\x17\x14\xb2\xb2\x3e\xbc\x2b\x50\x42\xa0\xa8\xb3\x17\xa0\xcb\x85\x0d\x50\x91\xe2\x9d\xbd\x22\x95\x78\x95\x0e\xc0\xe1\xd2\x0a\x78\x1b\x4c\x3f\xd3\x60\xfa\x79\x18\x0c\x4e\x4f\xb9\xf9\x3c\x98\x87\x9d\x8a\xa9\x2a\x03\xde\xc6\xf6\x91\x7e\xdb\x37\xc8\x59\xfa\xed\x92\x1e\x52\x55\x4e\x46\xe8\xf9\x61\x47\x5b\x87\x2e\xa5\xa9\xf6\x8d\x2d\xf3\xb0\x09\x19\x12\x96\x6e\xda\x37\x36\xac\x23\x4f\xf6\xb1\x31\x6c\xd9\x26\xf7\x01\x27\x92\x76\xda\xce\x74\xa9\xb8\xfe\x93\x85\x96\x06\xda\x37\x96\x41\x1a\x68\x3b\xd3\xbf\x2c\x58\xfb\xd8\x19\xe4\xd4\x36\x61\xcf\x5a\x95\x44\x45\x5b\xe0\xc2\xa7\x1c\x3f\xe4\xd7\xab\xaa\xd1\xa1\x4b\x07\xf3\x5b\xf1\x5b\x60\x37\x98\x52\xb9\x5d\xd9\xfd\xd2\x26\x57\x21\xa3\x16\x13\xd9\x60\x45\x8e\x6e\xd9\xc7\x91\xba\x46\xbe\x78\x71\x6d\x25\xde\x07\xd3\x27\xad\x71\x81\x27\xa0\xe6\xb6\x06\x92\x25\x1d\xb6\xf2\x34\xd1\x0c\xa6\x5a\xfa\x5f\x3b\x7b\xaa\xde\x1a\xcb\x00\x12\x51\xf4\xf4\xf1\xd2\x94\x00\xc9\x17\x7b\x0e\x5a\x71\x18\xc7\x48\x1f\x0e\xe4\x18\xec\x37\x69\x72\x0b\xdc\x01\x85\x0f\xec\xd1\x2a\xc3\xde\xe1\x48\x4f\xfb\xe8\xe1\x16\x12\xda\xdb\xf5\x81\x74\x5a\x1d\x07\x90\xfd\xa9\xf9\xee\xad\x41\xba\x51\x89\xbf\xab\x51\x40\x39\xd9\x36\x66\xe7\x05\x05\x37\x20\x61\x73\xa4\xa6\x08\x98\x49\xb7\x7b\x71\xef\x57\x3e\xd4\x8e\x67\x5b\xbc\x7c\x20\x72\x1e\xbc\xec\x54\x85\x62\x5f\x26\x6e\x70\x93\x5c\xd9\xed\x26\x2d\x76\x25\xf6\x9d\x59\x95\xf4\xd6\x37\xc8\xe5\x65\x9a\x3c\x06\x90\x5b\x49\x4d\x07\x4f\xb8\x15\x4b\x3e\x68\x53\x0b\xac\xea\x3e\x90\x18\x30\x5c\x54\x52\x4a\xdf\x4a\x20\x31\x38\xb8\x82\xa4\x94\x76\xed\x46\xf4\x2d\x96\x6f\x11\x6d\x41\x66\x20\x5e\xb6\xa1\xe8\x9e\xbd\xd8\x8b\xbc\x40\x9b\xc2\x3d\xaa\xb1\x89\x53\x35\x3b\x16\xcb\xd8\x1c\x21\x36\x64\xbc\x5b\xe0\xc3\xa5\x17\xe0\x4b\x37\x53\x76\x83\xbb\xad\xd4\x50\xfe\xd8\x65\x96\x6e\x87\xd4\xaa\x32\x8e\x8e\xc2\xe7\x96\x0f\x91\x5a\xb3\xb9\xad\x0c\x5f\xa9\xb9\x9a\x09\x71\x1c\xda\x35\xcd\xc1\x19\x65\x14\xed\x8b\x5e\xcc\x12\x47\x11\xff\x6c\x36\xce\x95\x51\x1c\x90\x67\x31\xb0\x8c\x8a\x7d\xf5\x02\x94\xcd\x06\xfb\x63\x19\x0e\x34\x6f\xc5\x64\x3b\x14\xec\xbd\x40\xcf\xc6\x65\x85\xa0\x80\xf3\xa5\x11\x35\x1b\x4b\xcb\x68\x9a\xab\xe6\xb8\x9c\x32\x1c\x8d\xdc\x8a\x09\x69\x34\x5f\x05\xd9\x2e\x4a\x15\xfb\xd6\x8a\x79\xb1\x9d\x7c\x7b\xab\x9b\x87\xdf\xad\x76\xed\xc5\x2d\x0f\x31\xf9\x56\xcd\x9c\x87\x03\x39\x5b\x6d\x05\xf0\x32\xd8\x00\x87\x41\xb7\x6c\x2b\x76\xe3\xb0\x1d\xb2\x07\xec\xed\x34\x37\x1a\x4f\x2f\xd9\x69\xce\x35\xa4\xa0\x2f\xd0\x38\x7b\x83\x95\xee\x0d\x3f\x2c\x95\xb7\x33\xa0\x0e\xe3\xba\x7b\xdf\x8e\xb7\x67\xe3\x6c\x94\x7a\x80\x27\x48\xbe\xc5\xd9\xda\xe9\x03\xf0\xd6\xad\xb2\x05\x76\x83\x32\x06\x86\x09\xdd\x12\x34\x17\xa8\x79\xbe\x77\x2a\x9b\xfb\xdf\xfb\x30\xce\x1e\xd1\xbd\xdf\xc6\xca\x27\xc5\x7d\xf8\x2e\xcd\xd2\x8d\x7e\xc4\xd4\x6f\xdf\xf5\x1a\xb6\x92\x95\xbb\xcc\xfb\x37\xcf\x4e\xb9\x75\x2b\x68\x27\x12\x65\x81\xb7\x41\xe3\x78\x1a\xe5\xcb\x1c\xf6\xbe\x64\x68\xdd\x1c\x71\x56\xee\xcb\x77\x5a\x98\x9b\x5b\x61\xdb\x0b\x6c\x06\x4d\x56\x6d\xa7\x54\x1a\x5b\xb3\x65\xb4\xdc\xb7\xaf\x9a\x20\x91\xde\x76\x68\x6c\xbb\xf9\xda\x3d\x1d\x49\xb8\x7b\x89\x6e\x3b\x1e\x9a\x1d\xea\x0b\x14\xce\x0e\xa4\x28\xf7\xf4\x26\xb3\x7d\xb4\xdc\xd3\x61\xd3\xd5\x6c\xf0\x96\x61\x7c\x55\x76\x47\xf6\x15\x36\x47\xbc\x2c\xf0\x61\xd0\x38\x3f\x6c\xe4\xb2\xf1\xb8\xdc\xb2\x1d\xed\xad\x5b\x88\xbe\x65\xbd\xd9\x5b\xb3\x64\x7e\xbf\xbc\x05\xbb\x39\xec\xfd\xb2\xb2\x65\x1b\xdc\x02\xfd\x2d\x33\x29\x15\x7c\x6f\xdd\xac\xeb\x96\x56\xba\x5f\x30\x95\x5b\xea\xde\x02\x77\x40\x7f\xeb\x1d\x79\xbf\xa5\xa1\x34\x76\xf3\xfd\xf6\xed\x0a\x04\xf6\xb9\x89\xf6\xaf\x61\xd1\x72\x6e\xde\xbe\xb6\x74\x94\x59\xd4\x72\x1b\x9e\xf6\x59\xcc\x72\x90\x0d\xa6\x6f\x91\x35\xbb\x82\x17\xa8\xb9\x1a\xb2\xc0\x95\xa9\xcb\x50\xab\x23\x83\xa7\x62\x02\x50\xd2\xa6\x2f\xa8\xb4\x61\x02\x9d\x97\xe6\xb5\x6f\xd6\xbf\xa6\xe3\x15\x72\xfa\x4c\x47\x17\x8c\xdd\xf3\x3a\x15\xe9\xb5\x77\xab\xb7\x65\x9a\x2f\x44\x64\x9a\xdd\xea\x50\xb0\x18\xbe\xd1\x84\x2a\x37\x1d\xf5\xdf\xed\x7c\x5c\xe0\x25\xd0\x67\xee\x74\x14\x7f\xb7\xa2\x5e\x70\xc2\xf6\xcd\xbc\x6c\x12\x76\x5e\x4d\xa1\x76\x88\xee\x7d\x33\x13\x99\x8e\x6f\x3e\xab\x37\x8a\x4d\xb1\x7b\x87\xba\x31\x00\x5e\xc3\xfc\xd7\x56\xbe\xbd\xef\x3e\x7a\x6d\xd8\xdb\xa3\x1a\xd9\xc8\xb1\x47\x2e\xb7\x25\x63\xaf\x88\xdb\xe8\xe1\x7d\x67\x80\x6f\x3a\x32\x13\x99\xef\xc1\x5c\xad\xca\xb5\x6f\xd3\x95\xa5\x0d\xd4\xbe\xcb\x13\xdb\x6d\x90\xaa\xfd\xf0\xdd\x0c\xdd\xa3\x7a\xd5\xce\x5d\xc6\x2a\x34\x2a\xe1\x8d\xdd\xb6\xba\xda\x7d\x35\xab\xdb\x13\xbe\xc0\xb7\x40\x71\xba\xda\x7d\x2a\x10\xa3\x53\xfb\x25\xd6\xd6\x7d\x74\x2d\xd0\x95\x65\x63\xad\x0e\xcf\xdb\xfb\x21\xe1\x7e\x81\x2f\x83\x6e\xb9\xd9\x3c\x6a\x33\x7d\x75\x00\xdd\xde\x7d\xce\x2d\xd0\x95\x87\x2b\xfb\xb2\x46\x75\x84\x41\xb5\xe6\xb6\xce\x48\x63\x65\xdf\x66\x2f\x0c\xc1\x9c\xa0\xeb\x92\x8c\x40\x99\xb6\x0b\x43\x70\xb0\x42\xb7\xf1\xbe\x5a\x66\xde\xbb\xcf\xaa\xda\x9f\x26\x86\xd2\x3c\xa2\xb7\x71\xd6\x55\x96\x05\x6a\x93\x75\xdd\x4c\x79\xd5\xb1\x79\xae\x4c\x0c\x0b\xb4\x13\x35\xa5\x5e\x32\xc7\x0e\x2f\xf0\x61\xf0\x34\x28\x2e\xd2\x75\x3f\xe3\x55\xc7\x6e\x63\xa3\xd5\xfb\x05\xea\x70\xda\xa4\xa9\xd6\xb1\x8b\x13\xf4\xfa\x01\x6f\x83\x5a\xee\x71\x68\x83\xf6\x7a\xb9\xa9\xc3\x13\xbb\xce\xb9\x1f\xf0\xfd\x55\xd7\xe3\x1b\x1e\x41\x31\xb1\x57\x49\x17\x75\xf8\xd2\x6a\x3f\x8f\x0a\xf8\x34\x68\x2c\x7c\x09\xb3\x3a\xd2\xa1\x0e\xdf\x18\xec\xa7\xd7\x64\x70\x0b\x2b\xc3\xbd\xb4\x08\xcd\x41\xc9\x75\xe8\x54\xd8\xfb\x49\xbf\x97\xfd\x45\x3b\x95\x15\x30\xb4\x44\xe4\x0e\x28\x76\x6c\x33\x62\x1d\xdd\x24\x79\x31\xaf\x7d\xd8\x61\x66\xea\x1e\xc3\x22\x90\xdd\x70\x75\x70\xb1\x47\x77\x45\x5e\x75\xf8\x16\x46\xb7\x3d\x68\x81\xbe\xd7\x5c\x77\x40\xb7\x6c\x72\x1e\xd6\x19\xfb\x35\x3c\xa2\x87\x6f\xad\xda\xb5\x5a\x87\xfc\x19\x7b\x6f\xbb\x87\xf0\x76\x24\xc2\xc1\x5c\xf9\x94\xef\x0e\x88\xaa\xf7\x66\x92\x74\xe0\xf4\x02\x5f\x36\x49\x0b\x8d\xdb\xd1\xd0\xcd\x16\x9b\x05\x6a\x51\xec\xff\xac\xb7\x45\xbe\x6e\xef\x44\xbd\x2f\x33\x7a\xab\xcc\xf5\x56\xd4\xeb\xde\xad\x74\xd6\xbb\x99\x34\x86\xc4\xa7\x7a\x77\xb5\xdc\xad\x59\xd6\x5b\xb1\x9b\x7b\xf7\x89\x52\x6f\x87\x1e\xf4\x01\x56\x56\xde\x4a\x33\x17\xb9\xa5\x9f\xed\xdd\xe1\x35\xf5\x7e\x66\x8d\xdc\x94\x05\xf2\xee\x60\x8a\x05\xba\xdf\x41\xe9\xa0\xd4\x38\x5b\x22\x3a\xab\xc4\xfe\x3a\xbd\x33\x9a\xed\x4e\x75\xca\xd4\xb6\x0f\xc7\x3e\xd5\xb9\x09\x8d\x61\x6b\x4f\x9d\xa5\xdb\xf0\xee\xad\x3f\x8b\x88\x7d\x6c\x9e\x8d\x59\xb4\xa0\xc3\x3c\xb5\x4e\xdf\xb9\x1e\x8e\xad\xa8\x53\xf7\x05\xf7\x61\x93\x73\x9d\xfd\xaf\x1c\xfc\x0b\x52\x18\xc3\x07\xb2\x9c\xed\xb9\x98\xdd\xce\x8d\x96\x0f\x65\x31\x3d\x53\x26\xd7\xfc\x9e\x0f\x87\xfc\x4a\x29\x93\xcb\x62\x1b\x40\xba\x9c\x52\x53\xd3\x4c\xfb\x03\x3e\xbf\xbf\xca\x69\x6e\x31\xc5\xf0\x8a\x4d\x1d\x0b\x7a\x1b\x1b\xfa\x97\x73\xde\x26\xae\x05\x29\xfe\x48\xe7\xe4\x82\x40\x9c\x76\xb4\x85\x6b\x07\x9d\x71\xea\xc3\x03\x48\x7e\x98\x12\xa8\xc9\x1f\x9f\x46\xe5\x07\xf6\xb6\x99\x8a\x19\x2e\x16\x2c\x17\xf4\xd2\x80\x53\x53\xb1\x45\xc7\xa0\xea\x5a\x81\x32\x32\xfe\xdb\xae\x2c\xba\x50\x10\xb6\xd5\x82\x05\x0d\x63\xda\x00\x6f\xe1\xc6\x30\x1c\x8d\x73\xb0\x72\x5d\xe2\x38\x81\x3d\x0b\xb4\x7f\x87\x99\xb3\xd4\x78\x40\x21\x7d\x9d\x9c\x75\x0b\xb2\x3a\x83\x75\x05\x58\xd0\x12\x21\xf7\x2d\x0b\x29\x4f\xf8\x36\x02\x59\x6b\xcb\xa4\xdb\xd5\x76\x05\x1a\x72\xf1\x30\xad\xb2\xed\x5b\x4f\x5f\x90\x9c\x6b\x23\x65\xef\x4f\xc0\x47\x9d\x83\x48\x91\x0e\x54\xbe\xbf\x8a\x35\xb0\x05\x55\xc7\x7b\x55\x40\x29\x73\x75\x00\x79\x57\x94\x80\xdd\x4a\xc5\x05\xa8\x28\x8f\x6d\xfc\x90\xa9\xcf\x21\xc2\x72\x08\xdd\x82\xbc\x6f\x77\x20\x85\x5a\x31\xe2\x61\xd1\xce\xa1\x79\x0b\x3c\xbf\xbf\xae\xca\x2c\xeb\xb2\x66\xcd\x56\xd2\x6d\xcd\xe3\x34\xb7\x9b\xba\xae\x59\xf7\x2d\x35\xc7\x27\xc6\x65\x41\xf7\x6f\x41\x6d\x0b\x7c\x78\x05\x18\xc7\x40\xfd\x01\x12\x72\x67\xca\xe4\xe8\x39\xe8\x71\x9d\x90\xf5\xca\x30\xe4\x4c\xde\xb7\xc6\x87\x0a\xcb\xd8\x37\x96\x79\x40\x5a\x95\x89\x9d\xa2\x49\xd8\x8d\xb4\x8a\x72\x74\xf0\x91\xac\x34\x6c\x2c\x5f\xa0\x8e\x80\x20\x2b\x09\xa6\xda\xb5\x56\xa7\x2f\x37\x5e\xb0\x0f\x5d\x68\xac\xfb\xb6\x03\xfd\x16\xca\xb3\xa0\x4b\xbb\x20\x65\xf2\x89\xc1\xa3\x14\xb8\x77\x34\xe8\x53\xf2\x65\xdd\xb7\x40\x53\xd1\x49\x81\x1e\x9f\x80\xa0\x05\x3d\x8d\x4c\x03\x7c\xe9\x43\x20\x33\x01\xf6\xab\x0c\xdb\xfb\x80\x74\x2c\xb3\x8e\x92\x32\x9b\x13\xe9\xc2\x31\x7c\x76\x9c\x54\xc7\xf0\x1d\xfb\x06\x41\xc8\x94\x5d\x7f\x83\x86\xa0\x0d\x48\xfa\x96\xcf\x9d\x69\xd3\xf5\x7e\x80\xaa\x57\xd5\x51\x01\x75\xea\x98\x25\xd6\x6c\x41\x9a\x37\x28\xd0\x11\x7c\x9c\x2a\xf3\xc6\xd6\x99\xef\x2e\x05\xfe\x80\xaa\x4e\x8d\xab\xb3\x16\xf2\xd1\x6f\x0d\x64\xe4\x21\x1c\x2d\x3d\xbc\x3d\x0a\xc0\x75\x44\xd6\x7d\x0f\x54\x04\x81\xb7\x38\x80\x43\xe6\x6a\x62\xf1\x0a\xfc\xfa\x9e\xf7\x27\xe8\x6a\x41\xf3\xb7\x70\xcc\x4a\xa0\x5e\x43\x32\x76\x64\xde\x51\xc0\x40\x81\x79\xc7\xc9\x54\x4d\x53\x8a\x25\x05\xe2\xf2\x5a\xd6\x4a\x6a\x6c\xf5\x85\x8c\xea\xb8\xbc\xba\xef\x29\x6b\x8a\xc6\x49\x33\xdd\x1f\xa6\x1d\x39\xe3\xae\x7c\x38\x1d\x91\x08\xf4\x54\x33\x17\x90\x48\x05\xba\x95\xe1\xa3\x9c\xec\x1c\x5d\xea\xdc\x6b\xe1\xf8\x9a\x0a\x3b\xd9\x61\x65\x53\x7e\xed\x2c\x87\x04\xe9\xa3\xd7\x94\x29\x3e\xed\xc8\x77\x5d\xa7\x57\x1a\x1d\xf2\xf0\x83\xa8\xf5\x67\x47\xf9\x2f\x70\x7a\x75\x0a\xe0\xf3\xfb\xeb\x3a\xd3\xa8\x30\x3d\x52\xf3\x2d\x88\x8a\x37\x98\x52\x78\x3b\x20\x8f\x01\xeb\xc6\xd4\xbe\x71\xd0\x4d\xb1\x87\xce\x1e\x57\xac\x60\xdd\x58\xd5\x69\x1a\xbb\xe8\x11\xce\xf1\xa9\x3a\x8d\x2b\xc3\xba\x35\x8f\x47\x3a\x51\x44\x62\x0d\x04\x95\xd1\x90\x05\xb1\x03\x04\x1c\xa9\xe5\xbb\x0c\xd5\x91\x85\xc7\x3a\x59\x7e\xc8\xae\x6d\x8b\x18\x7b\x4d\x43\xa7\x1b\x62\x12\x2c\xfa\x73\x28\xcd\xe9\x35\x48\xd5\x75\x26\x1c\x03\xd4\xe5\x86\x2b\x2d\xdf\x99\x79\xec\xc1\xe7\x65\xdc\x59\x2f\xf8\x1c\x9b\xc2\x0e\x9b\xc2\x19\xfe\xf0\xad\x62\xb8\x90\xf4\xa5\xf5\x65\x07\x94\xa7\xe0\x53\xc8\x64\x0e\xc0\x21\xf4\x52\x28\x83\x2a\xf4\x6a\x87\x4c\x2d\x7b\x3a\x41\x18\x4a\x5d\x19\xa0\x10\x8d\x1e\xc9\x6f\x03\x24\xfa\xbd\xf8\x50\x1e\xe2\xc2\xf9\xfa\xf0\x65\x41\x28\x4d\x81\x8a\xc7\xbe\x31\x23\xf2\xe4\xac\x2e\xe9\xc3\x16\x22\x94\x57\x62\x15\xf7\x48\x55\xf6\xde\x8c\x1d\x6a\xb7\x0d\xa8\x20\x9d\xc8\x04\x54\xed\x38\xac\x8e\x48\x2c\xb6\x49\x56\xc7\xfd\xad\x0f\x19\xe7\xed\xf3\x96\xdd\xae\xe8\xbe\xa2\x3c\x22\x0b\x32\x67\x62\xd7\x38\xba\x6f\xec\xec\x6f\x39\x61\x16\x42\xa9\xab\x80\x0c\x18\xf5\x03\x41\x26\x08\x59\x90\x61\x13\xdb\x0b\xd3\x0e\x36\x95\x04\xf9\xe3\x0c\x42\x72\xc2\x94\x4c\xa6\x58\xdc\x3e\x52\xc6\xa2\x04\x54\xcc\x5b\xd6\xc4\xa1\xc8\xd0\xa5\x63\xfa\xda\xc1\xc9\xed\x30\xbe\x3d\x52\xd7\x13\x2a\x81\x73\x38\x74\x6f\x83\x86\x15\x9e\x77\x0c\x48\xf1\xe9\x38\x57\x66\xcf\xfe\x99\x0b\xed\x86\xf8\xbc\x5a\xe0\x87\x4f\x3b\x36\xae\x40\x2f\x1d\x01\xf9\x52\x4e\x47\xe8\xfd\xe9\x2b\xcc\xb0\x03\xc2\xee\xce\x40\x20\x47\x33\x43\xbc\x82\x25\xb1\xb7\xa6\x16\x98\x35\x81\x77\x35\xad\xea\xda\x22\xac\xf3\x69\x0e\x88\x58\xa1\xc0\xbb\x35\x21\x69\x75\x48\x80\x4f\xa1\x4e\x79\x84\x37\x45\xde\x55\xdd\xcd\x17\x24\x89\xa8\xa6\x7f\x73\x9c\x74\xbf\xf8\xe1\x79\xa5\x7b\x59\xb9\x5a\x1a\x0d\x43\xa4\x55\x44\x22\xb8\xae\x15\xd2\xe6\x40\xec\xea\x40\xb9\x8a\xba\xe6\x40\xb9\xd5\x12\x73\x77\x3b\xf8\x8f\x03\x53\x11\x6f\xc7\x1e\x79\x4e\x21\x6f\x35\x7a\xca\xd3\x34\x8b\x34\x21\xff\xd5\xaa\x4a\x43\x8e\xb1\x61\xd3\x3c\x1d\x55\x13\x22\xf0\x51\x8b\xba\xa1\xd0\xb5\xf5\x61\x40\x4b\x89\x47\x3a\xd1\x0c\x95\xb4\x23\xe6\x80\xe8\xe7\x00\x35\xac\x59\x0e\x49\x5b\xed\x14\x40\xab\x3f\xac\xe6\xcb\xc6\x2d\xe4\xb7\x97\x75\xc7\x1d\xe6\xee\xa8\xb4\x76\x5c\xf9\x54\xf8\x21\xfc\xca\x34\x5b\xf7\x92\x32\xb0\xfd\xb1\x11\xc5\x61\x6a\x31\x19\x39\x4c\xad\x6e\x7b\x5a\x7d\xb8\x9d\x13\xd0\xc1\xe8\x41\x8f\x69\x0f\xa8\x69\x47\x03\xf5\x9d\xfc\x3d\xf2\x9e\x22\xd5\x6a\xf4\x5c\x45\xaa\xf5\x82\xf4\xab\x48\xb5\x55\x35\xa0\x42\x63\x58\x6a\xb9\xff\x6a\xa8\xcd\xf7\x51\x6a\x14\x99\x97\xe5\x78\xd4\x4c\x45\xa7\xad\x76\xd2\x89\xc6\x05\xf1\xd9\x39\x78\xf5\x94\x79\x63\x06\x32\xcf\x3b\xd3\xa5\x16\x6c\x87\x3b\xf9\x22\x22\x66\x14\x42\xd2\x0a\x3c\x46\x31\x61\x35\xbc\xfd\xe5\x38\xcc\x34\x23\x19\xef\xe4\x44\x7d\x39\x4c\x1a\x16\xfc\x9a\x2c\x3b\xcd\x88\x3b\x9e\x30\x52\x87\x73\x0d\x0e\x9e\x17\x46\x80\xb4\x03\x1d\x66\x81\xec\xf6\x2a\x1c\xa9\x8a\xc5\x2a\x17\x10\x46\x0e\xd6\x47\x06\xf8\xa3\x23\xab\xbc\x1d\xd8\xcf\xec\xbc\x43\x5a\xa9\x7a\xb9\x93\x06\xd8\x0d\x76\x40\x71\xe4\x2b\x9d\x2c\x8e\x5c\x46\xaa\x5a\x1e\xb9\x02\x9a\x7e\xe0\x4e\x32\xfa\xf7\xc2\xb6\x7d\x5b\xcc\xab\xe9\xd3\x67\x3a\xa7\xaf\x22\xa9\x6a\x96\xe4\x6d\xf2\x61\x82\xde\xd8\x0c\xe0\xab\x6f\xcc\xa9\x90\x9a\xdc\xa2\x35\xf2\x88\x2c\xcf\x47\x2f\x69\x47\x04\x53\x53\x53\x5c\x8e\xed\xf5\x36\x97\xab\x69\xd4\x98\x1f\x29\x7c\x6a\x62\x83\x80\x39\x0c\xa8\xea\x7a\xe5\xc5\xd2\xbe\xe5\xb7\x3a\xd3\x8c\xe5\xbc\x48\x88\x6f\xc5\x2c\xb6\xcf\x87\x3e\xd1\x33\x93\x62\x63\x25\xe8\x98\x8b\x65\x45\xa6\xb7\x13\x92\xdd\x5b\x47\x6f\x69\x19\x16\xe4\x84\x76\x21\xef\x49\x29\xec\xc4\xb7\xb8\x5a\x1d\x69\x48\xfb\xe9\xca\x87\x5d\x57\x97\x40\xd6\x7e\xb3\xcf\x77\xcc\x40\x01\xb4\x44\x76\xa4\x1d\x2d\x1e\x04\xfc\xf6\x25\x7b\x09\xa5\x27\x99\x25\x36\x1b\x43\x4e\xc7\xba\x2d\x0a\x2e\x80\xd2\x3c\xcf\x14\x1a\x9f\x0e\xd4\xdc\x67\x05\x94\xea\x29\x99\x79\x41\xb7\x0b\xd3\x8b\x05\x97\x14\x5a\x20\x3b\xf3\xe5\x5a\x2f\x33\xf6\x05\xbd\x7c\x5e\x04\x83\xf7\xf7\xd7\x69\x43\xd2\xe9\x6c\x17\x6b\x60\x20\x64\x52\x13\x01\x9f\x8e\xcc\x2b\x1f\x64\x87\x55\x21\x1d\xe1\xa7\x93\x5e\x54\xc7\x5c\x9d\x4e\x74\xb1\x8f\x2b\xad\x32\x92\x14\x5a\x4e\xe8\xa0\x67\x69\xed\x4a\x3b\xa6\xc3\x94\x59\xa8\x29\xdb\x8f\x78\xf7\x49\xaa\x8c\x76\x64\x86\x14\x67\xbb\x5b\x40\x3b\x1d\x21\xd8\xed\xb8\x3e\x1d\x20\x78\x58\x71\x3a\xfb\x76\x7b\x98\x7c\xa8\x08\x88\x12\xec\x44\xa5\x4a\xb9\x29\x68\xa9\x58\xe3\x64\xd6\x6f\xaf\x1e\xeb\xa5\xe0\x9e\xab\xe5\x3b\x73\xe7\xc2\xb0\x6e\x6d\xb6\xcf\x87\x3a\xd0\x2f\x96\xe0\xf6\x90\xd3\xc5\xd4\x0d\x9d\x94\x59\x5a\x4d\xa3\x4b\xc0\xd8\x32\xe5\x8e\x45\x28\x59\xbb\x6c\x0b\xd0\xb1\x94\xb9\x07\x81\xb8\x9f\x81\x7c\x77\x22\x5f\x32\xcb\x9e\x9c\xdd\x2a\x04\x04\xb2\x3b\x6c\xb5\x41\xcf\xca\xfe\xd1\x4b\x1f\x40\x52\xc8\xaf\x40\x74\x79\x00\x4a\xe2\xea\x0d\x48\x12\x57\xdb\x80\x34\x1f\x4c\x96\xd3\x86\xfc\x56\x66\xda\x2e\x41\x00\x6a\x0e\x02\x16\x5e\x5b\x4a\xc5\xe5\x77\x50\x37\xa7\x4c\x59\x48\x94\x5e\x64\x41\xdd\xa1\x8f\xdd\x87\x69\xcb\x87\x2c\x57\xbe\xf4\xc9\x92\x19\x31\x51\x36\x30\xd0\x9d\xa6\xed\xd3\xce\xdb\xe8\x51\xf5\xf6\x2a\x14\x46\x2d\xdf\xd0\xc8\xe2\xee\x37\x18\xd1\x12\xde\x11\xf0\xb3\xdf\xc1\x3c\x67\x81\xde\x35\xa5\x03\x5a\xca\x2a\xf9\x54\x84\xd1\xd2\xae\x89\xbd\xb0\x10\xd3\x2b\xc8\x97\xc8\x79\x95\xe9\x9d\x4e\x50\x92\xaa\xba\x4c\x75\x30\x18\xf1\xc7\x2d\xf3\x67\x9a\xc9\xf4\xe5\xf0\x4d\xab\x5e\xc1\x40\xca\xc9\xc2\x32\x1c\xdd\xcb\x30\x80\xe8\x7f\x07\xd4\x32\xf4\x40\x3e\x5e\x6b\x05\xb4\x24\xce\xb8\x0e\x48\xa1\x9e\x80\x3a\x79\xa0\xcc\x03\x73\xe8\x99\x6e\x7c\x68\x32\xf3\x07\x42\x17\x6c\x0f\xcf\xda\x79\x00\x49\xae\x1a\x1b\x90\x4f\xfc\x1e\x90\x75\xe8\x80\x3a\xf1\x59\xb2\x43\xba\x41\xbd\xd2\x89\x08\xe3\xf3\xe1\x74\x97\x29\x7c\xb8\x1d\xf0\x43\xb2\xba\xa8\x0c\x65\xc0\xf7\x8e\x50\x06\xe8\x12\x49\x94\x59\xba\x6d\x79\x0d\xf4\x94\x7e\x02\x46\x98\x2b\x32\x2b\x53\x06\xab\x0f\xa4\x0d\x0a\xdb\x53\x42\xdf\xea\x08\xaa\x05\x59\x0f\x05\x1f\x85\xca\xd7\x20\x8b\x68\x75\xa6\x19\xd3\x17\x6c\x19\x5f\xe3\xe6\x71\x16\xeb\x8f\xd9\xa0\xc5\x16\xb3\x9e\x42\x9b\x44\xae\x1f\x5e\xa3\x5f\x75\xad\xf6\x80\x6d\x51\x92\x80\x0b\x26\x45\x04\xd4\xf1\x69\xd7\x93\x0b\x51\x17\x1b\xca\x3f\x18\x99\x47\x8c\x14\x2e\x6e\xef\xbb\x61\xe7\x5a\x75\x33\x34\xea\xda\xec\x30\x76\x20\xcb\xdf\xec\x66\x7b\x51\xdb\x31\xc0\x61\x11\x4a\x69\xe9\xc5\x1c\x84\x5d\xa6\x9c\xc5\xbd\x7c\x6a\x3a\x55\xcc\x96\x42\x5d\xef\x61\x5f\x15\x5b\xca\xd8\x81\x05\x11\x1b\x32\xb6\x1b\x8c\x1b\x05\x0b\xb4\xd0\x04\xd5\x94\x5b\xeb\x99\x5e\x74\x1c\xed\xa1\xa1\xe2\xf3\x28\xa3\x86\x9d\xd4\x14\xea\xae\x0e\xc2\x45\xb9\xed\x99\xbb\xd2\x8b\x75\xf5\x9a\x76\xa5\xc8\x66\x4e\x74\xc7\x71\xff\x20\xe4\x6d\x56\x01\x9d\x06\xcd\x09\xb8\x16\x68\x3b\x08\x2c\xad\x38\x8a\xa2\x65\x45\x1d\x14\x74\x64\xca\xa6\x77\x21\xdd\x4c\x63\x0f\x15\x4d\xf3\x85\xac\xfe\xd4\x89\x39\xd2\xac\xd9\x42\xb0\x97\xf1\xec\xca\x5c\xe3\xdd\xbc\xdc\x50\xc5\xf0\xdf\x80\x8a\x11\x1a\x80\x92\xfc\x8f\x14\x5e\x2e\xec\x80\x66\x78\xd7\x05\xd8\x3d\xf0\x0a\x68\x8c\x52\xe8\x23\x14\x46\x55\x91\xa3\x60\x3e\x4a\xd8\x7c\xe4\x7c\xad\x12\x95\x0e\x36\x73\xd5\xa9\x74\xb0\x0b\xab\x69\x0a\x69\x91\x68\xad\x23\x9d\x20\xb1\x17\x20\x6f\xd1\x8c\x53\xac\xe8\xd8\x0e\x20\xf0\x61\x64\xc3\xa2\x42\x65\x64\x22\xb9\xca\xde\x51\xfe\xaa\xea\x64\x0b\x0b\xf2\x0e\x80\x50\x94\x60\xb9\x74\xf6\xb6\x33\x29\xef\x39\x60\x2b\x27\x0b\x27\x84\x52\x28\x37\xe5\xc6\x14\xe4\x9d\xcf\xa9\xae\x2c\xca\xab\x2e\x2d\x25\xfa\x31\xa5\x4d\x38\xa4\xd0\xd4\x89\xa0\x53\x61\x46\xf0\x46\x65\x50\xae\x76\x39\x9f\x4e\x8d\x55\xb3\xf3\x95\x43\x99\x40\x86\x05\xbd\x3f\x77\xad\xcf\xae\x5c\xc9\xe4\x55\x58\x90\xd3\xd2\xa5\xcc\xdb\x8c\x73\x87\x08\x88\x11\xc8\x81\x43\xf9\xf0\x94\xb1\xaa\x02\xe9\x3e\x27\x8b\xe9\xd4\xc8\x17\xdb\x53\x01\x38\x47\x63\x69\x95\x1c\x79\x1f\xd0\xec\x69\x4b\xc3\x08\xe4\x54\x7a\x41\xc6\x17\xbf\xd3\xa6\x34\x69\x68\x40\x51\x59\x7b\x19\x35\xc8\xb0\x20\x7c\xa9\x43\xef\x60\xd5\x95\x0b\xac\x1e\x48\xb9\x27\xac\x8d\x53\xf9\x34\x15\xa2\x32\x38\x51\xd8\xd5\xd8\x8b\xca\x99\xbc\xc0\x94\x5a\xe9\xed\x7f\x83\x18\xae\x3c\xca\x25\xfc\xca\xb9\x93\xeb\xa7\x59\x78\x07\x28\xdc\x36\xbb\x43\x30\xca\x8e\x5c\x9d\x8c\x65\x41\x66\x0e\x4c\xb3\x2e\xb1\xe5\x64\x70\x4e\xe4\x3d\x32\xc4\x49\xc8\xee\x95\x52\x4d\x3b\xbc\x4c\x19\x90\x4b\xf8\xb2\x73\x20\x8f\x2b\xad\x4a\x9e\x66\x07\x29\x30\xb6\x1e\x70\x0a\xa7\x3b\xbe\xd2\xbf\x39\x57\xc9\x5a\x4e\xab\x71\xc8\x80\x27\xc6\x32\xfa\x17\xeb\xea\x88\x0f\x0e\x5c\x68\x88\xc8\xca\x74\x5c\x6c\x03\x58\xd0\x70\xdc\x0d\xe3\x70\x98\xc6\x87\x28\x1c\xd3\x11\xec\x6c\xf6\xcf\xe1\x7d\x99\x98\xf7\x0e\x74\x7c\x52\x05\x2c\x08\x64\x77\x40\x90\x2d\x80\x9a\xca\x33\x5f\x3a\xd5\x68\xaa\x2a\x39\xc1\x91\x3e\xc4\x66\x91\x5d\x2f\x9b\x33\xca\x96\x42\x11\xe9\x91\x0f\x25\x20\x7c\xca\xc0\x35\x3d\x6a\x1b\x1e\x40\xca\xa8\x78\x20\xc7\x5e\x52\x31\x0f\x94\x5c\x25\xa1\x2b\xd7\x48\x99\xd2\x13\x1c\x81\xec\xb6\x4e\x2b\x8e\x53\xde\xf2\xe1\x50\xde\xe7\x0b\x48\xb6\x95\x34\xe3\xc4\xc1\x70\x08\xe5\x7c\xda\xab\x4d\x0b\x0b\xd4\xcc\x95\x40\xcc\x5c\xbe\xac\xdf\x5f\xad\xef\xf9\x52\xa7\x7f\x4f\xd9\x25\xe4\x98\x72\x5d\x9d\x3c\xd1\x7c\x2e\x5d\x49\xce\xb1\x7c\x39\xac\xb4\xc0\x94\x14\xf5\x53\x0f\xc4\x54\x65\x8b\xaa\x07\x32\xff\x65\x26\x89\xce\x76\xe9\x44\x3c\x20\x24\xa5\x92\x2a\x3d\x98\x8a\x61\x6e\x6c\xdf\x2b\x0c\x33\xcd\xdc\x06\x41\x75\x5a\x56\x3a\xd3\xac\x32\x49\x20\xe9\x29\x60\x6b\xc9\x32\x40\xe6\x27\x68\xbf\x0d\xb6\xc8\x98\x1b\xf1\x86\x70\x94\xe6\xb4\x24\x1c\x6b\x0a\x15\xaf\x47\x4d\xd9\xda\x04\x75\x4b\x3b\xe0\x97\xaa\x22\x33\x24\x13\xe5\xa9\x5a\xcc\x26\x75\xa7\x38\xea\x01\xf4\x90\xe4\x14\x04\xe4\xae\xb9\x52\x66\xd5\x0b\xa6\xdd\x1c\x4f\x14\x5e\xd8\x06\xb8\xd3\xa7\xfd\xa1\x91\x4b\x9b\x93\x5d\x20\x13\x3a\xff\xf6\x08\x43\x51\x9e\xed\x7a\xc0\x41\x94\x68\x9b\xe8\xc6\x05\xd9\x3f\x0e\x42\x3c\x86\x00\x5f\x68\x28\x83\x6c\xd2\x76\x6f\x9f\xbc\x1c\x0b\xda\x75\x59\x93\x76\x6e\x8b\x46\x10\xa9\x02\xe5\x16\x7a\x20\x2f\x0e\x57\xf7\x40\x8b\xf4\xc7\x16\xc8\xb3\x97\x0f\x95\x41\x04\x7e\xdb\x74\x09\xac\x70\x70\x35\xf1\xb7\xa3\x5e\x3f\x66\xdb\x0d\x63\x02\x02\x7f\x33\x91\x72\x90\x34\x07\xb4\x1e\xf4\x31\x99\xd8\x01\xc8\x9e\x09\x68\x27\x0c\xaa\x42\x33\x0d\x73\xb2\x35\xe2\xa0\x41\x7d\x5a\xc3\x1d\x69\x77\xed\xa1\x23\xe4\x24\xde\x58\x32\xe6\x69\xcb\x6a\x1a\x95\x45\x2b\xab\x25\xf3\xdb\xc1\xa1\xa2\xc8\xb0\x12\xd1\xd0\xc1\x5f\x27\x35\x15\x43\x57\x0f\xb6\xbe\xe3\x90\x47\xb8\x94\xd2\x90\x95\xb3\xa7\xb0\xe9\x42\xf7\x05\xa4\x78\x22\x68\xd2\x89\x1f\xcf\x2d\x1d\x8a\x58\xce\x74\x21\x64\x98\x46\xc7\x77\x75\x06\x41\x7c\x57\xcc\x4e\xce\xfc\x58\x0b\xfc\xb5\xfb\x40\x46\x43\x55\xb8\x57\x2f\x23\x5f\xfa\x92\x06\x22\x81\xe3\xbd\xb6\x23\x1f\xfa\x74\x1e\x29\x7c\x8a\x74\xc0\x0e\xfd\x81\xf3\xaf\xfb\x6a\x78\x50\x17\x47\xbb\xf6\x94\x5d\x9e\x8f\x0a\x28\x91\xec\x0c\xc4\x0e\x39\x01\x87\xc2\x72\x40\x4f\x16\xac\xe3\x4c\x99\x8d\x91\x99\x3b\x1f\xab\x68\x54\xba\xed\x5a\x3e\xe8\x98\xfb\x65\x06\x26\x0b\x02\x76\xd3\x31\x6e\x29\x14\xb1\x70\x6c\x39\xc0\xab\x5f\x69\x54\x3b\xe2\x53\x66\xbf\x68\x5a\xb1\x68\x15\xc8\xc6\x24\x48\xce\x31\x5d\x1b\x6c\x73\x98\x3c\xae\x94\x79\x47\x72\x1a\x2b\xa6\xeb\xe8\x47\x20\x32\x78\x75\x40\x75\x59\x53\xb8\x56\xa0\x95\x94\xe9\xf4\x43\xbd\x1b\x5e\x65\x04\x10\xa7\xd4\x6f\x85\x43\x4d\x71\x5a\xe5\xea\x29\x44\x08\xbb\x00\x59\xe6\x94\x9a\xc7\xb3\xea\x83\xa7\x01\xe8\xd3\xb6\xd0\xb0\x37\x45\x6a\xb5\x18\x72\x14\xa9\x55\x8f\x2b\x7d\x9a\xe3\xb3\x27\x1d\x6f\x3f\xb2\x40\x23\xa7\x25\xd8\x3b\x68\x1c\xeb\xc7\xb0\xfa\x89\x59\x57\xf1\xb9\xa5\xa4\x59\xb4\xcf\x4c\xa6\x79\xd6\xe7\x43\xd1\xcb\x95\x2e\x41\x36\xa0\xf5\xb7\xcc\xfb\xed\x90\x01\x0a\x65\xe4\x3c\x33\x2e\x85\x0b\xc6\xbe\xe7\x6c\xfa\xf5\x03\x89\xb4\x50\x63\x94\x4f\xbf\x1e\xd0\x8b\x12\xea\x1f\x91\xc9\x86\x25\xb4\xb2\xa7\x50\x4c\x13\xb5\x65\x58\x85\xa0\xea\x8d\xa9\x83\x25\x71\x5e\xfc\x56\x60\xd3\xe4\x80\xe3\xd8\x70\x6e\xfc\x56\x90\x1e\xee\x90\x53\x40\x87\x94\xa7\xa1\xae\x3e\x4f\x20\x6d\xae\xf3\x87\x57\x38\x57\x55\xa8\x20\xed\x40\xde\xe9\xc4\x43\x31\x89\xdc\x16\xb5\x38\x83\x6f\x2b\x07\x08\x85\x37\xbc\xe8\x4a\x55\x4d\x17\xe2\xed\x8d\xac\x05\xff\xd7\x45\xe8\x63\x8f\xd4\xaa\x60\x32\x52\x4a\x9d\xbe\x07\xdd\x0b\x9b\xcf\x57\x9d\x07\x8b\xe7\xb4\x85\xd1\x49\x75\xd1\xb9\x6e\x98\xab\x1d\x4b\xd6\x0a\xa2\xe7\xed\xe3\x30\xea\xac\xa2\xc9\x7a\xe5\x94\xbd\x6d\x19\x8d\xc6\x7a\x3b\x93\x13\x42\x93\xae\x48\x97\x58\xaa\x6e\x27\x3d\x47\xd6\xf1\xc5\xe7\x33\x63\xb6\xc1\x3c\x8a\xe4\xed\xd8\xd3\x3d\x85\x8a\x3b\x82\x6d\xdc\x3e\xc5\x38\xd6\x1d\x6a\x16\x75\xe3\xb6\xca\xc9\x11\xe3\x6c\x8b\x1f\xbd\xd2\xd9\x16\x2b\x52\xb2\x02\xcd\x7a\xdd\x02\x69\x3d\x38\x7e\x14\x5a\x56\x1a\x44\xe8\x0b\x52\x7b\x94\xd5\x29\x99\x7d\x43\xbc\x9c\xb6\x99\x46\xb1\x53\xa4\x19\xb1\x6d\x0b\xb2\x99\xe2\x4a\xdd\x21\x67\xdd\x09\xe4\xfb\x7b\x1f\xd0\xb1\x03\x90\x8b\x23\xcf\x22\xe8\x4c\xab\x96\x51\x43\x09\x36\xdb\xd2\x8d\xe3\x4d\xcb\x11\x50\xe9\x3a\x38\x59\x89\x44\x8b\x72\xa9\x50\xb4\x92\x29\xf1\x9d\x8e\x2b\x66\x02\xc7\xa2\x1d\x9c\x2b\x3c\x47\x90\x91\xc9\xd8\xda\x5a\xca\xa6\x66\x2f\x8d\x3e\xdc\x07\xd3\xe7\x53\xaf\x06\x59\xb1\xb8\x1e\xe4\xe4\x23\x80\x08\xa6\x85\x32\x4e\x80\x49\xd4\x79\xb0\xd1\x71\x79\x95\x40\xe2\x21\x88\x8c\x13\x12\xa5\x51\x28\x14\x56\x34\xad\x0e\xf4\x7c\xd8\x9c\xce\x0f\xa8\xbb\x2a\xe3\xb8\x1d\x9e\x34\x82\x8f\xb7\x53\x56\xfe\x66\x5c\x74\xea\x1c\x29\x61\xab\x8e\x4d\x1b\x31\x17\x39\xeb\x5d\x4e\x88\x69\x96\xc7\x4e\x9c\x93\x45\x00\x25\x93\x30\x7c\x7d\x4e\x48\x08\x1c\x60\x81\x47\xea\x4a\xda\x0a\xfa\x52\x4b\xaf\x16\x7c\x6d\x5f\xbb\x82\x9f\x02\x7d\xe9\xe4\x01\x81\x17\x20\x85\xee\x1c\x29\x3b\x14\x11\x3b\x80\x8a\x07\xb2\x03\x4a\x12\xa9\x29\xd4\x64\x72\x24\x29\x77\xc0\x92\xb1\x53\x55\xbc\x92\x31\x3f\xec\x55\x3f\xe0\x4d\x64\xc9\x1b\xe9\xf2\xad\x8c\x76\x94\x39\x2f\x1e\xc3\x70\xb8\xd9\x08\x87\x79\xd8\x3a\x12\x7d\x56\xf1\x66\xf5\xd3\xa5\x48\x36\x96\x54\x45\x9b\x95\x86\x3a\xf7\xf0\xb1\x1c\x9d\xf9\x61\xab\xdc\xf9\x37\x88\xdc\xe4\xcd\xfb\x20\x30\xdd\x0e\x73\xe7\x9c\x5e\xfd\x83\xbb\x44\x8a\x4c\x9e\xb4\x8e\x3d\x5a\xf3\xc3\x5c\x36\xfc\xd0\xb9\xf3\x72\x0c\x3d\x6e\xdb\x31\x1a\x50\x51\x9f\xa9\x59\xb5\x5c\xcc\x33\x14\x7d\x04\x54\x42\x2e\x76\x8d\x53\x10\x8c\x30\x4b\xc5\xc2\xd5\x68\xdf\x0f\x38\x29\x2c\x58\xc1\x70\x35\x4a\xb4\xf3\x13\x8c\xe3\x03\x1a\x03\x66\xcf\x21\x92\x71\x38\x2b\xdc\x8d\x30\xe9\xd3\x39\x07\x4a\x45\x9f\x73\xce\x81\x86\x40\xe1\x70\xb7\x08\x09\x8e\x76\xdb\x0f\x18\xa4\xc3\xdd\xc6\xf1\xe9\xc4\xba\xcd\x15\x70\x91\x6c\x26\x5a\xd1\x6f\x35\x7a\x86\xd2\x11\x90\xf5\xf0\x74\x36\x82\xbd\x15\x74\x6e\x85\xc2\x1d\x0d\xa2\x50\xde\xba\x1a\x61\x5e\x81\x71\x35\x4a\x90\x02\xe3\x8e\x5a\xd3\x85\x64\xe7\x9a\xef\x9c\x3c\xf1\x00\xd2\x2c\x7f\x5a\xb1\xd9\xf6\x0a\x36\x56\xdc\xd9\x6b\x0a\xa1\xab\x11\x16\x1d\x18\x17\x23\xae\x03\xe3\x3a\xcc\x89\xb8\x38\x44\x45\xc7\xc5\x5d\x23\x65\xca\xa9\xd7\xf2\x5d\xd7\xdd\x08\x7a\x30\xf5\x1e\x25\x5d\x28\x29\xd2\x95\x66\x4c\xa1\x25\xe0\xe3\x93\x12\x72\x41\x2f\xe1\xc6\xc4\x89\x04\x1b\xa4\xfd\x44\x88\x44\x88\x7a\x3a\xc9\x78\xcf\x3c\xca\x09\x3a\x62\xc1\x7d\x72\xc3\x13\x0c\x6e\x33\xa6\x20\x74\xff\x96\x78\x72\x41\x9e\x9e\x0c\x25\x24\x0a\x46\xb7\x31\x4a\xb3\x4a\xd6\x93\x95\x9c\x3c\x50\x02\xc4\x5b\x73\x40\x87\x36\x05\x7d\x4c\x47\x0a\x31\x66\x29\xb7\x57\xd6\x55\x66\xbf\x01\xd5\xeb\x4e\x68\x8d\x90\xe4\x64\x6f\xf1\xd6\x3e\x2d\x31\xfc\xd6\xa1\x8f\xe1\xcc\xa4\x4c\xd8\x65\x4f\xa1\x62\x35\xcb\x95\x4f\x49\xc0\x98\x76\x95\xda\x08\x39\x4d\x21\x73\xa4\xde\x5c\x90\x79\x18\x44\xa0\x90\xb9\xd2\xd1\x9f\x5e\xd6\x58\x72\x42\x11\xb0\x16\x2b\x90\xe2\xce\x7a\x65\x0d\xc8\x90\x96\xa3\xdf\x71\x67\x11\xcd\x14\x68\x56\x06\xb4\xe5\x34\x68\x23\x47\xfd\xcb\x5a\x09\xf4\xeb\xd0\xb2\xab\x6f\x29\xd4\xa5\x3c\x98\xb3\x62\xc9\x08\x5f\x3b\x9d\x85\xe2\xd8\x63\x3e\xe2\xfe\x74\xe6\x4f\x39\xcc\x6a\xc4\x16\xe5\xa1\x20\xce\x6b\x41\x0a\x91\x85\xc1\x29\x6b\xd9\xb1\x45\xe6\x75\xba\xfb\x11\x29\xe1\xe5\xab\x49\xe5\x53\xaa\x84\x4e\x3d\x7d\x8a\x60\x8e\xbf\x81\x75\x13\xc1\x96\xc3\x5f\xa9\x30\x6a\xdc\x48\x2f\x08\x88\x61\xfa\x0e\x27\xa7\xce\x8b\x14\x09\x59\x22\xbb\x60\x63\x09\x53\xb4\x5b\xcd\x29\xfc\xe2\x50\x2e\x01\x7d\xd0\xc0\xd7\x5f\x93\x91\x31\x27\x1c\xd2\x29\xb4\x14\x0a\xa1\xbe\x9d\x6c\x20\x9e\x68\xe7\x3c\x18\x91\x38\xde\x36\xf2\xb5\x40\xe2\xcf\x47\xaa\xf6\x4f\xfe\xd6\x05\x79\x72\x91\x75\x7d\x53\xf0\xc2\x62\xa1\x70\xb7\xd2\xd1\xe5\x1d\xed\xd6\xd8\x9a\x4e\x29\x56\xf7\x7c\xa7\xe0\x2e\x0c\x58\x6f\xe4\x4c\xfc\x6a\x0a\x59\x3b\x12\x3e\xf5\x46\x41\xce\x40\x74\x8d\x21\x2b\xef\x78\xb6\x38\xfc\xdf\xc3\x6a\x00\xd8\x70\x75\xa9\x05\x54\xc2\x4c\x8e\x12\x45\xb0\xf5\x58\x41\xde\x9c\xa6\x35\xed\xbc\x9d\x3d\x03\x64\xad\x10\x47\x52\x7a\x3b\x63\x38\xf6\x1d\x87\xb4\xb5\x96\xaa\xe5\x93\xde\x76\x41\xe4\xbb\x00\x72\x16\x8a\x94\x59\x3b\x6e\x29\xb4\x42\x53\x53\xaa\x53\x10\x1a\x79\x8b\xa2\xc7\x07\x9d\x5b\x10\xf3\xea\x7c\xf2\x23\xdf\x3d\x74\xea\x30\x3b\x32\xfe\x7d\x66\xc7\xc4\xcd\x7e\x52\x40\xdd\x1e\x77\xa0\x03\xea\x3a\xd2\xb2\xe2\xe9\x8e\xa8\x89\x6f\x47\x8b\xc0\xab\x15\x4d\xf7\x91\x3b\x48\x87\xf1\x59\xc8\xe9\x18\xfd\x96\x52\x8d\xf1\xd3\xaa\x84\x38\xb6\xf7\xdb\x0f\x3e\x6e\x81\x24\x08\x99\xce\x87\x1e\x82\x4a\xd4\x84\x73\xb7\x1c\x3b\x36\xbb\xb1\xd9\x7f\xeb\x61\x0c\x47\xd3\x31\x60\xdf\xe1\x3e\x9c\xed\x69\x41\xca\x7e\x57\x52\x76\x2b\xed\x6a\x03\x22\xe9\x3d\x90\xae\x6a\x6d\xe9\x50\xee\x36\xa3\x3d\x1c\x2d\xe7\xcb\x60\x0b\x52\xca\xe9\xa0\xa6\xeb\x0b\x44\xfa\x0c\xbf\x0d\x35\x1a\x78\x0e\xa7\xf7\xdb\xe8\x62\x58\xda\x3d\x52\x6a\x91\xff\xa4\x59\x5f\x11\x1f\x69\x48\xeb\x56\x99\x0d\x67\xd2\xc6\x63\x35\x36\x27\x70\x3d\x19\xbf\xf3\xab\x6f\x94\xc1\x42\xbd\x1f\xc7\x06\x0b\xad\x8c\xc4\x89\x59\x33\x3b\x84\xa7\xb5\x34\x64\x0d\xbf\x82\x82\x8f\xd9\x0f\x64\x4e\x73\xe4\x53\xe5\x9e\xb9\xd2\x8b\xe8\xaa\xa6\x1d\xef\xe5\x93\x61\xa3\xad\x1c\xd4\x75\x84\x39\x22\xdc\xd8\xcc\xed\x82\x1f\xd9\x8b\xf3\xe5\x10\x53\x67\xa6\xe5\xe0\xc7\x8a\x3b\x94\x95\x2f\x7e\xf8\xa1\xa4\x7c\x8a\x03\xf9\x11\xd7\x1e\x9b\x8f\xd2\x9a\x2e\xb4\x07\xd0\x2e\xc7\x6e\x39\x90\xf9\xd9\x7d\xf5\xd3\xbc\x76\xec\x38\xd4\xbc\x3f\xc7\x8e\x72\x6e\x1b\xc3\x50\x9c\x5b\xb9\xa0\xd0\xdd\x61\x9b\x18\x43\x87\x02\xdd\x8a\xaf\x4c\x2e\x48\xa7\xe5\xa7\x59\xa7\x64\xcc\x87\x0f\x4f\x56\x3e\x74\x8c\xe9\xe7\x4b\xcf\x73\x30\x60\x9e\x29\x94\x28\x98\x59\xdf\x7d\x57\xc6\x77\xc6\x16\x68\xf6\x66\xc6\x3c\x14\xaf\x16\x3b\xff\x70\x7c\x5a\x2b\xc1\x01\x8b\x9e\xcd\x9a\x23\x11\x69\x8d\x4f\x61\x53\x27\x48\xe8\xe0\xcd\xfa\xed\xb7\x45\xc7\x2b\x2d\x49\x85\x2c\x69\x88\x73\x37\xa0\x2d\x7e\xd0\xff\xee\xe3\x33\x83\xb1\xf6\x90\xc9\x55\xfc\x6e\x4b\x97\x38\x17\x5a\x40\x89\x05\x9f\x66\x44\x4f\x41\xc0\xe2\x58\x96\xc1\x22\x56\xc6\x85\x15\x38\x5d\x78\xc7\x33\x48\xa7\x23\xe9\x6c\x2a\x87\xb2\x61\xff\x1c\x84\xb2\x61\x3b\x1d\x07\x02\xd7\x95\xba\x55\x08\xec\x40\x3e\xdb\x2d\xc7\x8d\xc3\x0a\xc2\xe7\x4b\x5f\x88\xdc\x52\xc8\xe4\x5d\x80\xf7\x3a\x9f\x2c\x53\x8d\x43\xc1\x01\x44\xc8\x8d\x43\x7e\x57\xa2\x0f\xc7\x01\x95\x58\x84\x19\x87\xa9\xe4\x4c\xa1\x97\x9a\x32\xa9\xbf\xd8\x85\x9c\x69\x62\xf5\xd8\x00\x25\x48\x9e\x81\x7c\xea\xa6\x1d\x02\xe2\xd8\x7f\x8a\x6b\xeb\x1c\xe6\xe3\xb0\xfd\x18\x43\xeb\x70\x16\xcc\x16\xfa\x3a\x10\xfd\x3b\x2d\xc9\xdb\x5a\x32\x25\xba\xdb\xc7\x79\x31\x0e\xcb\x78\x41\x88\xb4\x54\x67\x0a\x9b\x37\x07\x13\xe4\x13\x12\xb6\xac\xa7\xf0\x7b\xdd\xd3\x25\xec\x2a\x0d\x69\xe5\x33\x5f\x3a\x22\x37\xe2\x0b\x87\x93\x25\x55\x62\x5d\xc7\x41\x6a\xac\x33\xf8\xad\xf9\xc3\x5c\x37\x8e\x30\x33\x06\x6a\x2f\x18\xdc\xdf\x99\x3a\x2a\x27\xca\x81\xe4\x06\x45\x1f\xd6\x6a\xb3\xb8\x5c\x54\xed\x8c\x0c\x5d\x20\x53\x2f\x39\x6e\xe0\x57\x76\x56\xb0\x0f\x13\x38\x48\x40\xca\x82\xca\xef\x15\x16\x7e\x70\x0f\xd0\x82\xd3\x28\x4e\xb3\x47\x33\xca\x26\x56\xfc\x56\xc9\x82\xb4\x0a\x16\x3e\x06\x29\x83\xb2\x37\x0a\x44\x9c\x0f\x59\xfa\x7c\xa9\x4d\x05\xbd\x97\xee\x55\xd8\x80\x44\xc3\x5b\xca\x7c\xc4\x7d\xda\x61\xa2\x1b\xa0\x95\x9a\xc2\xa7\xc3\x0d\xfd\xd8\xe0\x3d\x8a\xe3\x6b\x8f\x74\xca\x53\x58\x3b\x90\x06\x16\x64\x17\x91\xb4\xc6\x11\xac\x10\xb7\xd2\x90\x1c\x0a\x44\x52\xf2\xa1\x19\xd2\x95\x56\x75\xa6\xb0\x42\x8e\x7f\x0b\x8d\x38\xfe\xad\x65\x97\x17\xd2\xfa\xb3\xad\x14\xf0\x56\x76\x48\x91\x78\xb7\x6c\x7a\x62\xda\xd0\x4d\x46\xb1\xd8\x93\x05\x33\x4f\xc2\x84\x31\x8a\x8f\xb5\x1e\xc8\x3c\xbc\x05\x7c\x8b\xe0\x8d\x9f\x83\xd8\x08\x13\x18\x4e\x02\x34\x50\xe1\x47\xf5\xe3\x76\x4c\x89\x42\xda\x8e\x13\x8e\xe0\x88\xb6\x81\x42\x3f\x14\xd1\xb6\xb0\x4d\x5d\x5b\x4d\x7a\xda\x15\x33\x81\xd1\x54\xcb\x3e\x10\x82\x23\xda\xc2\x1f\x14\xd1\xb6\x9a\x3d\x01\x95\x09\x94\x9d\x5b\xd9\xc8\x25\x20\xeb\xd0\x00\x7d\x4e\xd8\x03\x38\xaa\x67\x7e\xd0\xae\x93\x47\xc3\x59\x1c\x7b\x56\x91\x51\xfc\x7a\xff\x8e\x07\x65\x54\x1b\x99\x46\x0a\x2d\x98\x0e\x70\x97\x60\x3a\x3e\x13\xe6\xdd\x39\x40\x48\xae\xc4\xd0\xa9\xdf\xe7\xdf\x11\x86\x47\x25\x47\xdf\x95\x52\x6b\x59\x2d\xe0\x5a\xa4\xce\x69\xe4\x68\xb3\xcc\x9e\xa3\xcd\x1a\x86\x9d\xa1\x88\xb2\xa3\xdb\xc0\x39\x4e\x5b\x92\x6c\xcb\x1a\x7e\x6b\xbf\x72\xac\x9e\x24\xfe\x83\xde\x4f\x0e\x8a\x96\x76\xac\xe5\x8c\xf4\x29\x6e\x31\x52\x17\xf4\x06\xa0\x53\x32\x78\xc9\xfc\xd8\xfe\xe5\x0b\x51\x0b\x34\x73\x43\xb4\xf5\x2b\xfb\x1d\x46\x43\xf8\x17\x7a\xf2\x50\x4c\x57\x25\xa2\x6a\x9c\x16\x57\x07\x08\xe9\xe9\xc1\x0b\xe2\x3b\xb9\xe5\x98\xaa\x4e\x63\x87\xad\xcd\x79\x09\x3f\x6b\x4d\x82\xb1\x30\xea\xd3\xce\x68\xec\x01\x43\xa1\x51\x95\x70\x92\xa1\xc8\xa8\x8a\xfe\x36\x4e\xa7\xe1\xcb\x39\xa2\x40\xa9\x8a\x51\x73\x9c\x0e\x68\xc1\xcb\x32\x1c\x36\x85\x23\x69\x5c\xbe\xdb\x40\x20\xf3\xb8\x30\xf7\x41\x44\x0a\xa3\xaa\x98\xe6\x86\xa2\xa8\x8e\xc6\x04\x29\x6c\xaa\xd7\x3d\x35\x9b\x6a\x1e\x40\xf6\xc0\xd8\x42\xe2\x37\xed\xf6\xd1\x52\x78\x0b\x81\x40\x8e\x75\x09\x72\xde\x71\x23\xad\xda\xc8\x80\x48\x7a\xe1\x71\x81\x16\xfd\xbc\xfd\xc0\x1c\x30\x2e\xec\xd7\xf0\xac\x0b\x0b\x0e\xb2\xae\x63\xa7\x76\xbc\x2c\x43\xc1\x53\x15\x13\xd7\xb8\xfc\x9a\x0b\xb2\xb6\x33\xbb\x11\x66\x35\x2e\x1e\x99\xef\x40\xe2\xe2\x99\x1f\xbf\xdf\x92\xc9\x1b\x3e\x2c\x7f\xf8\x7e\xc3\x39\xae\x1b\x5c\xe9\xff\x06\x57\x50\x77\x1a\x24\x76\x8a\x02\xab\x6a\xce\xf6\x4b\x8a\x49\x44\x0f\xbd\xd1\x77\xb4\x96\x32\xe9\xc2\x25\x8d\x6a\xab\x66\xa1\x6f\x0c\x51\x69\xd4\x98\x03\x4d\xdf\x59\xa3\x7b\xcc\xd5\x68\x34\x3c\xe0\x77\xa6\xd0\xcc\x1f\x4e\xd7\x10\x07\xe1\x16\x0d\x9f\x06\x5b\x57\xe1\x51\xb5\xee\x29\x3c\x05\x9d\x40\x90\x77\x0a\x45\x40\xd0\x48\x83\x11\xf7\x80\x66\x42\xb0\x12\x27\xd7\x6b\x39\x8f\x9a\xef\x73\x11\x9d\x3a\x1a\x54\x02\x1d\x34\x42\x4e\x58\xc0\x86\x1e\x5a\x03\x0a\x43\xb4\x52\x25\xf7\xac\x39\x55\x14\x03\xb5\xaa\xa6\x5d\x6d\xb9\x3d\x1f\x7a\xcb\x41\x4f\x0d\x15\x03\x36\xd4\x4c\x0a\x48\x1b\x0d\x15\x23\x93\xa4\xc5\xc7\xed\xe2\xe7\x05\x2b\xc1\x2a\xa3\xdd\x0c\x3c\xa0\x8f\x44\x8e\x2b\x87\x28\x8d\x68\xcd\x0d\x79\x0c\x21\xb5\xc1\xd5\x39\x1e\x14\x5b\x54\xeb\x91\x42\x9f\x74\x2c\xa3\x62\x8b\x6a\x45\x42\x54\x34\x51\xad\xe8\x5d\x8e\x26\xaa\x47\x6a\x9a\x7d\xc0\xc1\x08\x19\x8a\x72\xe7\x97\x63\x07\x12\x61\x87\x55\x7f\xea\xc2\x06\x2e\x40\xc5\x33\x31\x9d\x1d\xf1\x08\x1e\xd1\x9d\x33\x21\xfa\x9c\x13\xa1\xb5\x9c\x08\x9d\x65\xda\x81\x2e\x41\x29\xb3\xa7\x01\x14\xfc\xae\x29\xa7\x69\xc7\x9a\x0f\x3f\xe9\x8a\x6a\xab\x1c\xc4\xdd\x51\x91\x99\xeb\x8e\x05\x80\xb3\xa3\xf3\xde\x1a\xe8\x65\x21\x52\x57\xeb\x9b\x5e\x26\xc8\x52\x57\xe7\x32\x91\x90\x43\x29\x9c\x5a\x0f\xea\x4e\x8b\x70\x64\x4a\xe4\x63\xc7\x71\x3f\x88\xfe\x89\x02\xe9\xfc\x4e\xf5\xd3\x8e\xed\x15\x30\x29\x85\xff\xd4\x5a\xd2\xa5\x6d\xd0\x57\x1a\xf2\xf5\xe6\x3d\x0d\xd9\x37\x34\x82\xae\x49\xf7\x83\x83\x9f\xd7\x83\x51\x0c\x2c\xa5\x54\x1e\x6c\x70\x4e\x37\xbf\x32\x79\xc1\x72\x87\xdd\xf0\x38\x09\xc7\xc8\xf2\xa7\xee\x70\xc3\x29\x9d\x06\xf3\xed\x43\x2f\x71\xa7\xd0\xcb\x7f\xa5\xd0\x24\x98\x86\xc0\xd0\x0b\x3e\xa4\xc6\x55\x04\xfb\xa1\x07\x12\x08\x2a\x1f\x03\xae\xff\x01\xfd\x2c\xde\x05\x64\xe5\x86\x29\x74\xa0\x4f\xfb\x0c\xdc\x1b\x11\xee\x49\xf4\x4e\xfd\xf1\x9d\xf9\x55\xd7\x0f\xdb\xa6\x59\x86\x7d\x02\x8a\xa7\x94\x14\x8a\x02\x4b\xca\xc4\x52\x10\xc3\x86\xa3\x64\x3f\xf3\x75\x33\x6a\x10\x52\x06\x8d\x13\x8e\xe8\xf8\x9d\xbd\xa4\x13\x6d\xfd\x33\xc7\xc2\x70\x1c\x61\x4d\xa1\x1c\x6c\x48\x0e\xb7\xcf\x7f\x8e\xd4\xdb\x86\x1c\x9c\x91\xe3\x66\x77\x5f\xa9\x2b\x0a\x44\x02\xe1\x09\x47\x0e\xd4\xdb\xf7\xd4\xb2\x28\xce\x04\x85\xcb\x75\x38\x13\xd4\x8e\x1b\x73\x38\x28\xa7\xfd\x86\x82\x76\x0f\xe8\x39\xd2\x26\x26\x4c\x27\x78\xfa\x48\x36\xca\xda\xd4\xae\x33\x85\x12\xf6\x22\x90\x90\xa8\x29\x33\xed\x87\x18\xaf\xce\x24\x10\x79\x13\xeb\x83\x42\x6f\xea\x07\x7b\x3d\x1e\x53\x52\x55\x8a\x77\x04\xce\x1b\xc1\xeb\x0a\xd8\x3c\x96\x0e\xc8\xb8\x53\x3a\xdc\x29\x03\xbf\x19\x38\xe8\xfb\x98\xe5\x8c\xf3\x43\x8b\x9f\xa3\xdc\x0f\x2d\xb6\x88\x0f\x7e\x68\xf1\xea\x9f\x52\x4f\x0b\x0d\x99\x17\xc0\xe4\xfc\x08\xe3\x88\xe9\xc2\xf1\x37\x95\x53\xe1\xb6\xa6\x84\x5b\x76\xe4\xd1\x45\xce\x22\x87\xdc\x54\x8e\x0c\xe7\x76\xaa\x67\xaa\x4a\xdc\xe3\xfc\x98\x49\x5e\xdd\x01\xc5\x70\xe0\xfb\x93\xbd\xcd\x51\xa9\xa8\x9a\x86\xaf\xc3\x2f\xaa\x2e\x0c\x76\x40\xf3\xce\x2b\x0d\xb1\x6a\x03\xd0\x6f\xe0\x05\x3d\x16\x8d\x42\x5f\x61\xc4\x55\x3c\x14\x72\x53\x2b\x86\x82\x39\x8c\x2e\xcd\x2a\x8a\xa6\x9e\xf9\x50\x21\x12\x9c\xeb\x13\x17\x5d\xf0\x93\xf1\x39\xe6\x53\x67\x74\x22\x74\x60\x10\x54\x83\x8b\x79\x38\xdf\xea\x47\x68\xe1\x55\xc7\x11\xc8\x49\xb8\x33\xd3\xbc\x49\x0b\xae\x0e\xab\x89\xaa\xeb\x9c\x4e\x03\x12\x73\x20\xcd\x47\x40\x98\xd0\x54\x26\xcc\xe1\xa3\xd1\x75\x27\x5e\x5d\xa4\xbc\x69\x9a\xe2\x90\x50\x74\xcc\xb1\x65\x6e\x91\x08\x38\xb5\x1c\x1c\xb3\x07\x05\x9d\x3d\xdc\xd1\x18\xd3\x12\xc0\x95\x32\x47\xd1\x31\x30\x3f\x98\x7b\xa6\x4c\xdb\x15\x96\xfa\x30\xff\x80\x51\x2b\x88\xa5\x70\x79\x7e\x3c\x2c\xef\xc1\x3d\xfc\xe2\xc5\x88\x46\xea\xa8\x95\xca\xae\x72\x76\xa5\x7a\xa5\x8c\x8d\xdd\x00\xc5\x25\xaf\x40\xa6\x9f\x96\x2f\x25\xac\x30\xe2\x07\x09\x54\xbd\xec\x0f\xdb\xf4\x70\x24\x0f\xa5\x50\xda\x8f\xfe\xe3\x9b\x97\x7e\xe7\xb7\xd6\x4f\x3b\xe6\x42\x08\x7b\x7e\x17\xb2\x32\x8f\x0f\xeb\x0e\x10\x93\xb3\x29\x55\x16\x87\xf7\x1d\xa3\x71\xfe\xf5\x93\x8e\xe7\x70\x58\xca\x8e\x83\x7c\x38\x2e\xa5\x0c\xf6\xe2\xc3\x71\xca\xb8\xb2\xc7\xc3\x6f\xc5\x46\x30\xd4\xc3\x19\x95\xd0\xce\xa1\x87\x33\x72\x29\x78\x3c\x88\xae\x62\xba\x2c\x42\x86\xb6\x1e\x0e\xae\xc2\x63\x38\x1e\x08\x32\x3d\x38\x28\xb5\xeb\x9e\x3e\x2d\x5f\xf6\x80\x3e\x81\x82\xaf\x48\x6d\xb0\xfb\xfc\x80\x22\xa1\x29\x7e\x08\x79\xf5\x62\x8c\x1c\x52\x52\x99\x05\xf2\x29\x41\x24\xcf\xe8\xf3\x40\x7a\xd5\xaf\xe7\xbb\x87\x7b\x2c\x80\x66\x15\x20\xf0\x34\xab\x68\xf9\x52\x64\xc9\x40\x48\x99\x84\xd4\xf2\xc4\x15\x45\x33\x83\xfe\x2f\x40\x1b\x4b\x03\x99\xe3\xa0\x2e\x28\x52\xa3\xd6\x0f\xc4\x97\x34\xeb\x74\xf0\x10\x89\xc2\x36\x7a\x68\x56\x51\x1b\xc7\x38\x52\xe6\x43\x03\x09\xe6\xc9\x06\x47\x18\x77\x10\x47\x65\x9a\xfd\xee\xdf\x76\xa5\xcc\x9b\x3f\x33\xc2\xe6\x47\x53\x24\xb9\x51\xf9\x74\x63\x0e\x94\xf9\x72\xa8\x5c\x44\x77\xd2\x1b\x11\xbc\x33\x9c\xb2\xfb\xe2\x16\xf0\x20\x87\x11\xf9\x19\xc6\x13\x6f\x3a\x4a\x8a\x1f\xe0\x6b\xd1\x10\x9c\xc4\xe8\xea\x30\x88\x27\x67\x4c\x96\xd4\x1c\x02\x94\x49\x6a\x44\xc4\xca\xf0\x43\x7b\x17\x52\xd6\x0b\x0d\x11\x55\xce\x89\x8a\x6a\x4f\x55\xcf\xcb\x05\x34\x9d\x62\x1c\x08\xd2\xa0\x13\xef\x57\xb0\x7d\x39\xdc\x92\x70\x92\xe1\x17\xed\xf6\xf8\x5e\x9c\x27\x68\x70\xe1\x7f\x90\x19\x08\x4f\xf0\x70\xc0\x46\xab\xcc\xd2\x6b\xd0\x0f\x48\xd8\xb8\x8f\x2b\x7a\x38\x64\xa3\x06\xfb\x9b\x91\x82\x85\x2f\xb4\xb3\x47\x5f\xde\xc0\xc1\xc1\xd2\x25\xca\xc5\x0b\xf2\x40\x2a\x7c\x41\x1e\x99\x31\x3b\x92\xb8\xd9\x3d\x5e\x96\x20\x51\x2d\xf5\xd4\x5c\x0f\x67\x7a\xb1\x63\xd3\xae\xfc\x48\x15\xfd\x4b\x81\x17\xb5\x66\xd8\xd2\x00\x3f\x3a\x1f\x01\x12\x71\xf7\xbd\xbd\x63\x11\x2f\x1d\x02\x51\xd1\xbe\xde\x16\x03\x51\x6f\xf4\xe2\x5a\xcf\x9e\xf4\x73\x25\xe1\x52\x8e\x80\x68\x25\x65\x16\xfb\x98\x3b\x07\x3d\x9c\x90\x90\x33\xfc\x5c\x5c\x2d\x1b\xce\xd3\x53\x39\x59\xdf\x18\x50\x19\xf3\xdb\xfc\x77\xfc\x30\x5f\xec\xaa\xda\xdc\x27\xc8\x2a\x44\x2b\xb2\xd0\x7b\x30\x66\x46\x69\x7d\x20\xb2\xb9\xc3\x1e\x08\x24\x1f\x8a\x7a\x28\x27\x1b\xf8\xcd\x4a\x23\xc9\x29\xce\xa1\x9e\xd0\xb4\xe3\x1c\x2e\x42\x40\x93\x3d\xbb\x7e\x3e\x35\xf5\xb1\x28\xef\x2c\x2e\x73\x6b\xff\x4b\xb4\x19\x5e\x3e\x88\xc8\xad\xf8\x82\xe3\x84\x2e\x1c\x41\x10\x63\xab\x22\x08\x56\x55\xda\x55\xa8\xe0\x07\x41\x67\x2c\xef\x69\xc6\x9b\x39\x7d\x5a\x1f\xcc\xb0\xad\x0e\x46\x00\x7f\xb3\xb5\x3f\xa0\xcf\x00\xef\x74\xbf\xf0\x51\x9a\x97\xfb\xde\x1c\xd0\xea\xd9\xbd\x37\xfb\x02\xf1\x84\xdf\x1b\x6f\xdc\x7e\x40\x67\xfe\x4e\x5d\xdd\x10\xb5\x4c\x71\x3b\x6e\x81\xcc\x6b\x0b\xb4\x70\x59\x52\x6a\xfa\xef\x40\x4a\xb2\x65\x25\xe9\xde\x1c\xfc\x4a\xac\xc0\xbd\xa1\x46\x0e\xbe\x14\x1f\x20\xe5\xc5\xad\x34\x3b\x95\x2b\x4c\xf7\xe6\x58\x3e\xcc\x11\xb7\x63\x0e\xce\x2d\x1f\x9a\x32\x82\x10\x4c\xe0\x04\x79\x1b\x75\xa1\xb1\xdb\xc9\x73\x9c\x75\x77\x41\x55\xee\xee\x06\x64\x5d\x62\xa4\xaa\xa9\xb3\xa6\xd4\x96\xc6\x14\x9a\x3a\x4f\x86\xb6\x78\x7b\xe3\xc4\xbf\x79\xb4\xaf\x83\x9f\x72\x02\x5f\xa9\xe9\x6b\x1f\x68\x95\xf7\x66\xa2\xd9\xc1\x7d\x69\x8a\xad\x9d\xf9\xd0\xc2\x41\xe6\xcb\x17\x85\x32\x10\x99\x81\x88\xd9\xbe\x37\x8e\x74\x66\x4f\xd1\x01\x85\x20\xb3\x5b\x39\x71\xea\xc6\x98\xed\xd4\x6f\xe8\x11\xf7\xee\xf7\xd8\xbd\x91\xee\x9d\x05\xcb\x87\xe6\x09\xa0\xbe\x67\xc1\xd2\x90\x0f\xe3\x7c\x8a\xf8\x0f\xf2\x72\xf2\x1f\x0d\xdc\x77\x39\x6c\x09\x94\xbf\xf7\xc5\x3f\x0a\xa9\x00\xee\x9d\x03\xc0\x7a\xe3\xad\xdc\x36\x05\x82\xbf\xf5\xa2\x44\x21\xa9\xc1\xbd\x3b\x9d\x49\x46\xa2\x78\x4f\x2e\x3d\xdc\x04\x0e\x7c\xca\x40\x8e\x91\xe8\xd5\xa8\x96\x81\xc8\xf1\xe6\x5c\x7d\x0b\x82\x23\xd0\x0e\xcb\x9e\xa9\xb4\xbc\x86\x93\xf5\xde\x6d\x69\xda\xc0\x55\xb7\xb5\x9d\x69\x6c\x41\xcc\x0f\x63\x16\x7f\x3f\xb7\x40\xee\x93\x0f\x9d\x36\xae\xd3\xc7\xa4\x0f\x10\x92\xb4\xef\x8c\xd7\x0b\xf2\x19\x57\x52\xa8\x68\xb4\x91\x42\x86\x69\xdc\x8f\x0e\xb1\x37\x40\x3f\xda\x6f\xd6\x77\x1f\x76\x9d\xb2\x1b\x9d\xd8\x06\xcb\xf9\x7d\x38\xfe\xa8\x1f\xa9\xea\xad\x7a\xfe\x98\x8b\xdf\x07\x82\x1f\x33\xa4\x47\x3f\xca\x55\x69\xc8\x29\x49\x50\xfc\x6e\xf9\xe6\x0f\x9e\x97\x5e\xa0\x6e\xa9\xed\xf9\xb2\x1b\x5d\x10\x74\xe2\x22\xb3\xcc\xfb\xc0\x7e\x70\x32\x52\x25\xc8\x42\x96\xba\xe5\xd5\xaf\x67\xda\xb9\xe9\xa4\x02\xfa\x31\x78\x3e\xc4\xe2\x53\x40\xc8\x99\x6b\x6a\x10\x72\x56\x40\xb6\xa3\x1c\xec\xbc\x49\x7e\xde\x64\xae\x41\x0b\xbb\x0f\xc7\x4d\x1e\x74\xa2\xc0\x8f\x93\x2d\x6f\x17\xfa\x99\xc9\x64\x3d\x53\xf3\x16\xc4\x12\x4d\x77\x08\x72\xf6\xaa\x12\x64\x7f\xcb\x65\x7e\x6c\xb0\x61\x7b\xc5\x2f\xc6\x51\x90\xd3\xd9\x19\xb8\xc5\x51\xfc\xee\x82\xa9\x88\x2d\x56\xbc\xd6\x96\x68\x6f\xb9\xc5\x8f\x01\x5f\x2b\xf0\xf3\x2b\xa0\xf9\x41\x20\xbd\xb5\xbe\x07\xf2\x1a\x30\xb1\x76\x8b\xc7\x5c\x76\x3b\x53\x4d\x2c\x50\xb7\x32\xd5\xd4\x93\xf9\x29\x44\x98\x05\x05\x49\x84\x27\xcb\xe7\xbc\x35\xb1\x73\xdd\xca\x5b\x73\x64\xe1\x4b\x48\xa6\x03\x36\x7d\xc9\xc0\x86\x27\x1a\xfc\x7c\x68\x1c\x4c\x09\x06\xa8\x4f\x3b\x0f\x15\x06\x59\xf3\xef\x2b\xa0\x56\x7a\x4f\x1f\x22\xa7\x02\x3a\xce\x22\xd9\x83\x2c\xd2\x45\x56\xc5\xfe\x82\x9a\x99\x96\xe8\x78\x96\x14\x7a\xde\x69\x16\xd2\xab\x69\xc8\xb6\x0c\x26\x48\xa1\x1e\x21\x20\x39\xf1\x0f\xae\x40\xde\x72\xe2\x57\x8c\xd4\xb7\x72\xd8\x1c\x17\xcc\xc2\x1e\x7d\x22\x1e\x6f\x3b\xf4\xc3\x4a\xcb\xd4\x7b\xc9\xa1\x09\x93\x61\x49\x99\xc8\x90\x63\xbb\xca\xb6\x74\xb2\x29\x2a\xd6\xa4\x2b\xa0\x57\xc0\x2a\xf5\x5d\x7d\x47\x0b\x9a\xa8\xdd\xed\x0c\x20\x5d\x7a\x62\x75\x2a\x6a\x80\xc5\x93\xbb\x42\x3e\xcc\x9c\x5c\xf4\x9f\x73\x5a\x2e\xfa\x7a\xd6\x40\x66\x1b\xe9\x52\x57\xb2\x7a\x03\x9f\xc1\x8b\x27\x40\x72\x88\xef\x29\x1b\x8a\xc7\xbd\x80\x6e\xe5\x11\x07\x55\x79\x14\xce\x9a\x36\xf5\x10\x7b\x09\x64\x7a\x60\xc6\xfd\x44\xdd\xe0\xe6\xc9\x5d\xb3\xe6\x8c\x4b\x06\xc9\xd6\xe8\xc4\x71\xb4\x39\x13\x2a\xe6\xa2\x9a\xba\x22\x81\x9a\x86\xc4\xf0\x3a\x08\x71\xb6\x7c\x1a\x1a\x3a\x4d\xc0\xe8\x36\xee\x8c\x4b\x27\x4d\xa8\xb7\x3a\x3d\xf8\x16\xc8\x62\x1f\x02\x50\xf5\xf5\x96\xbf\x25\x3e\xe5\xae\x44\xcf\xd2\x89\xcf\xa8\x4f\x3b\x16\x11\x3f\x85\x32\x63\x34\x66\xdd\x1c\x2e\x33\xeb\x20\xa1\x3d\x34\x81\x94\x9a\xc9\x94\x8f\xea\xcc\x48\x10\x55\xac\x50\xdf\x27\x82\x28\x47\xa1\x93\xd7\xa0\xe0\xdf\x67\xe7\x5d\xbd\x0b\x50\xf7\xd4\x3e\x5f\xca\x70\x7e\xa6\x4c\x54\x79\xa6\x19\x75\xf9\x81\xf4\xd2\x33\xab\x77\x9a\xd2\x90\x05\x1c\x4a\x80\x9e\x7d\x9f\x58\x1f\xd8\x86\xa7\xef\x19\xc0\x50\x94\x83\xa6\xe0\x05\xb9\x95\x83\xa6\x12\x9c\x72\x9f\x96\x5a\x60\xa2\xa7\xd9\xd2\x99\x46\x87\x09\x24\xfd\x6b\xc7\x9c\xe9\xc2\x3b\x26\x1f\x2a\xd4\x1b\x86\x71\x5a\xa4\x29\x99\x0d\x4c\x98\xb6\xd4\xdc\x0a\x57\xa8\x67\xc6\xef\xd0\xb5\x48\xab\xce\x4e\x73\x72\x26\x2b\x76\xa1\xa3\xb7\xdc\xca\x4e\x13\x9b\xf3\xad\x74\x34\xf5\x3c\xf3\x5d\x97\x83\x2e\x35\xc5\x32\xce\x40\x0e\xe6\x4e\x9b\x96\xc9\x7b\x40\xb1\x57\xce\xf9\x13\x4d\xa9\x06\x54\x42\xdd\x9e\x3e\xa0\x00\x30\x27\x34\x2d\xa5\x22\xbb\xe8\x13\x4a\x5d\x53\xf6\x60\x67\xaa\xe3\xb0\x76\x3e\x9a\x81\x3f\xe4\x3e\x27\x08\xd1\xa7\xa3\x5f\x6a\x96\xd2\x97\xac\xa0\x01\x85\x52\xd4\x93\xa3\xfc\xb2\x6a\x04\x02\x0a\xa4\x28\x39\x36\x2e\x5f\x4b\xd9\xf2\x9d\xd2\x57\x8c\x7c\x67\xd7\xdd\x91\x42\x0b\x4d\xd6\xe1\x6f\x25\x99\xa9\x27\xdc\x8e\x24\x33\x78\x2c\xef\x2b\xe7\xe1\x05\x28\x7f\x02\x4c\xec\x42\x22\x4e\x37\xba\x67\x1f\xa6\x71\xd9\x40\x82\xbb\xe6\xbe\xb8\x74\x9a\xaa\x8b\xc5\x5d\x1c\x46\x97\xf5\xa4\x8b\x91\x40\x3e\x50\xd3\x65\xb5\x38\x55\x7d\xb7\x8e\x73\x4b\xb9\x63\x0e\x62\x97\xee\x0b\x03\x08\x32\xa7\x93\xc7\x90\x6b\xe2\x26\x79\x4c\xcd\x87\x66\xa3\x23\x5f\x5a\x35\xeb\xe9\x04\xae\xca\x30\x61\x54\xe8\x5b\x97\xb9\x0f\x02\xcd\x35\xe1\xaa\x4c\xe6\x04\x07\x5a\x9a\x0e\x8f\x63\xd4\x7a\x23\xbc\x7e\x20\xbf\xfa\x90\x76\x20\x83\x80\x6b\x19\xa2\xfc\x10\x11\x11\xed\xc7\x11\x11\x57\x67\x33\x36\x84\xa8\x11\xf0\x12\x7e\x81\xac\xd1\xf7\x80\xca\xe8\xb3\xa5\x21\x44\x8f\x01\xe8\x93\xfe\x04\x32\x77\x84\x4e\x9b\xc4\xa6\x3d\x55\xc9\x0a\xf3\xe3\x5b\x3d\xb7\x83\x25\xea\x67\x2c\x0a\xa9\xe1\xda\xf0\xed\x47\x0c\x49\xa2\x74\x3b\x1c\xe2\xbc\x52\xe6\xcd\x09\x07\x6c\xe8\xcf\x3d\xa5\x5e\x24\xd8\x83\x9f\x44\x23\x6e\xe7\xf6\xcb\x7a\x11\xb4\x1b\xaa\xd2\x48\x55\xef\x4e\xc6\x25\x4b\x69\x83\x12\x9a\xce\x2f\xec\x62\xb7\x43\x25\xca\xc8\xcc\x42\x26\x9f\x52\xf3\x07\xf4\x28\x22\x27\xf0\x50\xdd\xe4\x73\xc1\x31\x7c\x37\xdf\x1b\xc6\x31\x7c\x3b\xae\x02\xf3\xf5\x4d\xca\x16\xbc\xb4\x37\x71\x15\x78\xa8\xee\xc6\xf3\xf9\x60\xa8\x73\x89\x7b\x7d\x77\x77\xea\x04\x1c\xe0\x77\xf7\xbb\xcf\x1c\x68\x4a\xd3\x92\x5c\xbd\x3c\x75\x56\xeb\x99\x42\xf1\xcc\x96\x42\x8b\x40\x30\xe2\xce\xda\x8f\x80\x2f\xf7\x62\x14\xba\x45\x66\x78\x54\xf7\x59\x84\x23\xf6\x76\xfe\x95\x8b\xfb\xc9\x77\xc7\x76\x06\xe9\x2a\x94\xa2\x90\xa4\xf8\xee\x3e\x62\x5a\xaa\x4e\x5f\x64\xd8\x01\x45\x0c\x2d\x1f\x82\x42\x3a\x95\xa8\x99\x81\xca\x09\x92\xa3\xb2\xe3\xe5\xe0\xc4\xe9\x37\x33\x1f\x50\xe7\x21\x14\xd7\x43\x1a\x4c\x83\x25\x9d\x9a\xd9\x5d\xe7\x4a\x23\x7d\xdb\xdd\xed\xf5\xc0\x79\x79\x77\x5c\xeb\x23\xa0\xe8\x11\x19\xb2\x4f\xd6\x65\x00\xea\x0e\x11\x08\x2a\x1c\xa2\xe2\xdb\xbf\x87\xcd\x1e\x6c\x0f\x85\x3f\x14\xcc\xeb\xf7\xc0\x3d\xce\xb9\x32\xac\x03\x11\x12\x77\x0f\x2f\x61\x4f\xab\x7e\x35\x01\x3a\x19\xb6\x73\xe0\x4d\xbd\x07\xde\x27\x0e\x3e\xe5\x39\x39\xc8\x79\x7c\x0f\x26\x97\xfd\xe2\x87\xa5\x4e\x16\x69\x64\x3a\x41\xd7\x57\xae\xea\x08\xa8\xfc\x3e\xc1\xf7\xb6\x3b\xe0\x48\xa1\xd6\xb7\xa7\x59\x2d\x68\x4f\x55\xef\x6e\x0e\xc9\x81\x23\x21\x0d\x39\x7e\x1b\x6b\xe8\x3d\xcc\x2b\xf1\xaf\xdc\x7e\x93\x2a\x8e\xc6\x5b\xd9\x44\x0a\xb9\xb7\x6f\x67\x08\xb9\x22\x31\xdf\x4e\xb0\x16\xe3\xde\x9d\x69\x69\x80\x52\x44\x38\xff\x6f\x87\xfb\x61\x08\xbf\x6f\xab\x74\x18\xa2\xef\xdb\x36\x7e\xac\xd4\xf7\x6d\xe2\x85\x61\x3b\x5f\x07\x56\xf2\xfb\xe6\xe1\xe1\x2d\x20\xf8\x02\x5a\x17\x8b\x75\xef\xf6\xad\xa1\xe8\xc4\xb7\xef\xdf\x46\x7b\xb5\x83\xbf\xc5\x0a\x64\x07\xff\xc0\x97\x7c\xdb\xc1\x1f\x9f\xe7\x7d\xf3\x2a\x33\xf4\x7b\x87\x91\xa4\x29\x26\x95\xe1\x31\xa9\x08\x8a\xf6\xf8\x2f\xe1\xe7\x87\x2c\xfd\xb6\x51\x6f\xe4\x43\x09\xb1\x3d\xad\xfa\x2e\x15\x94\xaf\xd8\x80\x8f\xfd\xd1\xb1\x01\x27\x8c\x78\x66\xa5\x0e\x40\x4f\xf7\x11\xd0\xc4\x8e\x3e\x3b\x7d\x72\xb5\x34\x2b\x1d\xa9\x07\x7a\xf8\xa9\x49\xa0\xb7\x3f\xf4\xa8\xe5\xef\xaf\x17\xbc\x4b\x79\x32\x2a\x0e\x6b\x3f\x82\x5c\xcf\x91\x32\xcf\x0f\x47\xca\x64\x11\x61\xe8\xbc\xb6\x84\xb3\xf9\x96\x2f\xfe\xe0\xee\xe3\xed\x9c\x16\x27\xcb\x3f\xb9\x96\xb8\x07\x74\x9f\xe0\x63\x61\x15\xd6\xea\x77\x97\x07\x57\xbc\x6f\x3f\xa8\xd4\x62\x84\xe1\x09\xa5\x58\xbf\x78\xfa\x28\xe7\x9a\x9f\x3e\x1a\x5c\xdc\xbe\xed\x61\xdf\xa3\xd5\x3e\x30\xb2\x21\x08\x3c\x2c\x43\x44\x49\x78\x58\x2e\x88\x09\x49\xae\xf3\x3d\x86\x3e\xfb\xca\x71\xaf\xdd\xf2\x95\x57\x6e\x8d\xdd\xf6\x5b\x5f\x6c\xa7\x87\xd9\x7b\x2c\x2f\x7e\x23\x28\x8e\xf4\xfb\xe1\x68\xc7\xf2\x29\x7d\x1a\xa4\xf4\xe6\xc0\xa4\x61\xf9\x45\xcf\x4f\xa1\xf9\xd5\x95\xc2\x5b\xbd\x56\x20\x99\xdc\xae\x40\xe6\x24\x48\xb0\x0f\x5b\xb5\x39\xc9\x94\x27\xa1\x5e\x6c\xc4\x07\x4f\x8d\xa7\x93\xe9\xb1\xa4\xaa\x77\xcb\x91\x76\x5e\x2a\xf4\x04\xd9\xfb\x1c\xab\x96\x12\x1a\xec\xf1\xde\xdf\x4a\x61\x50\x2f\x76\x9d\x53\x18\x90\x38\xf7\x7e\x72\xcf\xe8\x48\x21\x44\x45\x43\x4e\x2d\x9a\xba\x3a\x58\x2f\xe8\xef\xe9\x28\xd3\x98\xe7\x9c\x6f\x60\x70\x1e\xea\x19\x9e\x7a\x41\x9b\x7e\x86\x27\x0e\x15\xe5\x22\x38\x08\x47\xbd\x9d\x8b\xa0\xd7\xb4\xa2\x17\x8c\xf6\xb4\x62\x6d\x03\xdc\x38\x06\x8e\x7c\xa8\xd0\xf6\x4c\x80\xf3\x0b\x30\x91\x4f\xae\xe1\xf2\xe1\x6d\x64\x2a\x90\xec\x1e\x57\x6a\x9a\xd0\xe0\x32\x76\x53\x5f\x50\xb0\x1c\xd3\x47\xaf\x29\xa3\x7f\xe6\x86\xa7\xde\xe1\x07\x7e\x66\xe7\x0a\xe6\xba\xcf\x16\xeb\x92\xf2\x09\xd4\xd8\x7a\x94\x41\xa0\x46\x4b\x79\xfa\xc6\x6c\xac\xdf\x4a\x21\x50\xaf\xcc\xbf\xcc\x4b\x57\x90\xc3\x86\xdd\xd2\xa3\xe3\x9b\x31\x45\xbd\x4c\x02\xa0\xf3\xe2\x89\x7b\xd8\x93\x9f\xd9\x29\x99\xe6\x97\x29\xe2\x53\x68\xb2\x3b\xd2\x90\xd4\x16\x78\xd0\x0b\xb6\x57\xf2\x65\xd3\x2d\xda\x13\x48\xb7\x01\x3f\x90\x32\xfa\x73\x86\xbf\x90\xde\x5b\x0a\xa7\xac\x07\x7f\x03\xff\xb6\xdf\x3b\x7b\x9f\x37\x77\x5a\x70\xf5\x22\x70\x7c\xbe\xec\x3d\x81\xcd\xbd\x10\xee\xf0\x0a\xe1\x22\x8f\xd3\x4a\x2e\xf2\x42\x8e\xe3\xfb\xe5\xec\x7a\x31\x73\xbe\x7c\xad\x1c\xbd\xff\x45\x46\xa2\x40\xba\x8c\x0d\xf7\x79\xd9\x5f\xf2\xe9\x52\x29\x49\x6a\x20\xc5\x0c\xb0\x7a\x2f\xbf\x99\x82\xfe\x67\xb7\x3a\x51\x0d\xb7\x1d\xe7\x17\xf2\x98\x1c\xe7\x07\xb7\x96\xfc\x8e\xfc\x41\xbc\xca\xad\x34\x08\xa5\x67\x56\xc5\xac\xaf\x2c\x95\x03\xde\x63\xb9\x7d\x59\x6f\x8c\xe3\xc2\x9e\x72\x22\x09\xef\x97\xf5\x81\x98\xec\x5f\x16\x01\x61\x0a\x2f\xae\xb2\x51\x75\xda\x7c\xc4\x34\xca\xcb\x12\x4f\x8e\x5f\xb5\x2f\x1f\xc8\x6a\x34\x14\xfa\x32\xf5\x86\x1e\xa6\x9f\xd4\x4a\x87\x96\x4f\x6b\xaa\x5a\x1e\xac\x69\x48\x8f\x73\xa0\x07\xbe\x9d\x52\x08\xeb\xc5\x9b\xb3\xa1\x06\x54\x62\x6d\x36\xcc\x1b\x52\xbe\x80\xaa\x0e\x8a\xd4\x54\x0e\x2a\xba\x90\x4f\xbf\x34\x64\x11\xf9\xf4\xeb\x75\xa4\x43\xed\x7b\x58\x8b\xbc\xf8\x25\x96\xeb\xb7\xaf\xd4\xc4\xfe\xfa\x76\x9e\xf9\xc8\x94\x64\x32\x88\xa1\xd2\xcf\xf6\x5c\x29\x14\x8f\x8c\x44\xe3\x77\x7a\x62\x40\xb3\xfb\xff\x82\x9b\xbc\x21\xc7\xf4\x89\x79\x82\xdd\xac\x67\x7b\x7a\xbc\x9d\xca\x6b\xb0\xe7\x94\xb0\x87\x3f\x46\x3a\x39\xf8\x2b\x37\xe0\xef\xb7\xbd\xb8\xc8\xc6\x64\x35\x20\xfb\xc6\xed\xac\x06\xf1\x34\xbe\xfd\x5c\x6b\xa6\x5c\x06\xf8\x2b\xd8\x98\x81\xa6\x7b\x93\x20\xdc\x5c\xbe\xfe\x12\x0f\xa1\xb2\x18\x9c\xc4\x34\xdf\x76\xfc\x9f\x9f\x1e\x74\x6c\xe3\x81\x73\xde\x82\x2d\x4e\x9a\x37\x0f\x82\xa6\x90\x49\x65\x88\xe6\xad\x90\xf5\x1b\x91\x33\x63\x34\x73\x45\x63\x7f\xa3\xc8\xd6\x80\xca\xa1\xb6\xa5\xaa\x31\x4f\xab\x5d\xaa\x3e\x63\x14\x79\x1e\x9f\xef\xfc\xcc\x6d\x86\xec\x5b\x5e\x57\x9a\x11\xad\xba\xc7\xb9\xf9\x9a\xe5\x19\x48\xc9\x21\xdc\xe1\x74\xe6\x82\x76\x1a\xf3\xa9\xf8\x80\x83\xb9\x9a\x7e\x07\x08\x17\xdf\x74\x78\x00\x91\xa8\x73\xe3\x71\x94\x13\xc8\x46\xec\x03\x68\xca\xc7\x91\x2e\xbc\x8f\xce\x34\xf3\x54\xa3\x69\xe6\xa5\x68\x85\x1d\x48\x19\xe0\x4f\x3e\x94\x6b\x19\x95\x7a\x26\x77\x81\x57\x67\x2a\x77\x41\x5d\xec\xe9\x47\xdc\x7a\x6e\x76\x3b\xf9\x65\xa6\x05\x5e\x9a\x80\x34\x6b\xd3\xc1\x09\x06\x7e\x69\x18\x06\x3d\x9d\x12\x01\x4d\x78\xfa\xb5\x9e\x9a\xb9\xc2\x80\x72\x80\xad\xcc\xb4\x57\xe5\x43\x13\x6b\xe5\x43\x54\xc0\x16\x50\xb6\xc6\x83\x09\xb1\x1b\x13\xf6\x35\xfd\x26\x0f\x4f\xfb\xcc\xcd\x81\x83\x78\x6c\x26\x49\x0f\x38\xcf\xa6\x93\x1e\x24\xfa\x6e\x6e\x8e\x23\x24\xa6\x6e\x6e\x56\xb0\x3f\x90\xcf\xa5\xac\x1f\x61\x69\x8d\x86\xe5\x20\x40\x8f\x9b\x9b\x6d\x2f\x9f\x85\x70\x60\xfb\x67\x25\x10\x9b\x0f\x7a\x25\x2d\x1b\xe8\x4b\x29\x3a\x33\xf0\xe9\xf7\x86\x03\x89\x11\xf4\x40\x2f\xbd\x59\x92\x2e\x95\xfe\xca\xac\x78\xee\x9d\x1c\xec\x40\x96\x55\x36\x20\x27\x85\x2f\x40\xda\x31\x2c\xdf\x6e\xa9\xdc\x07\xe1\xdc\x6d\xc5\x2d\x69\x45\xe6\x91\x23\x3d\xe8\xd0\xde\x52\x26\xa6\x74\xe6\xbb\xb7\x20\x0f\xd7\xaf\xf7\x70\x48\x4d\xc5\x3b\xb4\xcb\x4a\xcc\xdc\x4d\x85\xcc\xe9\xee\xf3\x1b\x3a\xdb\x71\x07\xa4\x43\x67\xd7\x08\x2d\xed\x4a\xfd\x82\x5d\x78\xea\xf1\x9e\x55\x17\x74\x24\x48\xa2\xd7\xcd\x9d\xec\x1a\xec\x43\xbd\xe5\xd3\x5a\xf0\x91\x1a\x45\x20\xd3\x54\xc4\x43\xbb\x06\xf8\x84\xec\x68\x55\xa7\x76\x63\xc5\xf5\xca\x4f\x19\x9f\x46\xad\x78\xf4\x80\x0f\x8d\xab\x01\x59\xef\x28\x29\xf4\x64\xa5\x1d\x2d\x1c\x0b\xbe\xa3\x70\xb1\xbd\x79\xe4\x07\xfa\x74\x2a\x04\x3f\xc3\xb6\x20\x9d\x68\x17\x2b\x27\xdd\xfa\xea\x59\x2c\x74\xeb\x33\xa0\x05\xcb\x9e\xca\x3e\xf0\x68\xe9\x70\x72\x0b\xcc\x19\x93\xd7\x7a\x70\x44\xcd\xc3\xd9\x25\xfd\x76\xdf\x02\x35\x34\x1f\x00\xf3\x20\xe2\x8d\x69\x50\x36\x82\x3d\x9c\xeb\xb0\x3a\x61\xbb\xc2\x3c\xb0\xd3\xe5\x4b\x9f\x8e\x57\xaa\x82\x51\xea\xd2\x2c\x18\xf9\x56\x0b\xe7\xcc\x74\xfa\x81\x30\x8e\x03\x6b\xc6\x19\xd0\x22\x22\xbc\xf4\x70\x8e\x51\xf6\xbf\x13\x0e\x34\xfc\x3d\xf3\xe0\x4d\x01\x46\xa6\x35\xc4\x2e\x3b\x1d\xf1\x70\xf5\x9a\x3e\xed\x31\xb8\x80\x94\x25\x2d\xc8\x9b\x51\xe0\x1b\x9a\x0a\x80\x38\x7a\xaa\xc2\x0b\x52\xd7\x72\x58\xc6\xc9\x61\x76\x81\x0f\xfa\x35\xa4\x71\xb0\xde\x81\x24\xcf\x34\x66\x9a\xb7\xf0\x7f\x7c\x31\x73\x1e\x98\xfd\x19\xe5\xf4\x40\x82\xab\x57\x33\x65\xa2\x4c\xab\x1f\xd3\xd1\x10\x97\x75\xcc\xe9\x24\x01\x61\x1b\xc5\xd1\x51\xb8\x98\x66\xe1\x1e\x14\x8c\x83\xc7\x78\xba\x05\xaa\x59\xb0\xc0\x77\xbe\xe5\xc8\x60\x82\x1c\x8d\xc0\x0b\x6b\xb3\xa0\xa3\x17\x7a\x55\xc4\x22\x49\x6a\x26\xaf\xe8\x6c\xf4\x72\xa3\x58\xf1\xa5\x14\x3d\xfc\xa5\xb3\x58\xcf\xe3\x7c\x2d\x56\xdf\xd9\x9d\x4e\x04\x70\xb1\x91\x0b\x8c\x9d\x19\x51\x10\x41\x09\xf3\x52\x10\x41\x09\xf3\x2a\x4e\x54\x82\x6b\x68\xea\x6d\x9b\x4e\x20\xc7\x54\x1e\x80\xc2\xab\x69\xd3\x71\x03\x17\x3b\x57\x6f\xd9\x1c\x58\xea\xa7\xb3\x00\x5c\x70\xf5\x4a\xf4\x11\xdc\xca\xcf\xd5\xb4\x13\x0a\xf1\xdd\x7e\xb4\xce\x59\x6d\x18\x61\x8c\x0e\x14\xb8\x48\x37\x3c\x2b\xae\x33\x77\xe2\xc7\x6a\xda\x09\xdd\x55\xef\x45\x8b\xdf\xb3\xb2\x17\x21\x26\xdf\xf4\xbf\x7a\xbe\xd4\xba\xb3\x96\x89\x22\x38\x81\x44\x05\xac\xa4\x63\x0a\x78\x18\x65\x56\x2f\xe4\x00\x39\x99\x27\xfd\xa8\xe8\x82\x8c\x38\x98\x3a\x48\x09\x1f\xd6\x54\x14\x41\x25\x5e\x7e\x56\x36\x3b\xeb\x51\x2d\x09\xd8\xd2\x36\x79\xc7\x06\xc3\xc7\x4c\x10\xc1\xe7\x53\x47\xa9\xa6\x9b\x5b\x51\xbd\x35\x75\xed\xf9\x4e\x99\xcd\xb2\xec\xbc\x8a\xc8\xc9\x5e\xab\x7e\x09\x84\x70\xef\x69\xbf\x7d\xc3\x31\x34\xed\xb7\x1f\x44\x66\x4f\x3c\xf5\x68\xed\x53\x8f\xce\x74\x94\x89\x79\x92\x3d\x9a\x89\xb7\xa7\x3e\xc1\xd6\x93\x97\x65\x88\xbc\x98\x27\x26\x47\x36\x19\x79\x00\xf0\x38\xcd\xd3\x8b\x6f\xb5\x7d\x3a\x2b\x40\x8e\x2a\x3b\xf2\x49\xc1\x3f\xe5\xba\x2f\x03\x8a\x3a\x7d\x81\x04\x3d\x7d\xfa\xfd\x18\x9e\x40\x99\xb8\xee\x6b\xaa\x5a\x52\x69\x29\xf4\x11\x5c\xf2\xa5\xba\x84\xfa\xed\x49\x6f\x27\x4b\x71\xde\x90\x14\x23\xc3\xeb\xc1\xd9\x29\x0f\xf9\x81\x81\x64\x9e\x8e\x26\x3b\x33\x63\x3e\x2d\x47\x0a\xe5\xdb\x47\x10\xb4\x13\x7c\xcb\xf4\x71\x3c\x06\x3f\x6b\x06\x6c\xab\xd3\xec\x72\xd0\xa3\xd3\x42\x11\xe4\x3e\xc9\x18\x10\x0e\x95\x1c\x01\x9c\x71\x7e\x69\x25\x8c\xc5\x2f\xad\x0c\x42\xe0\xa7\x5c\xdb\x95\x78\xc0\xe9\xac\x00\x5c\x41\x9f\x17\x67\x65\x4b\x55\x0b\x29\xec\x0f\x27\x02\xe0\xad\xa4\xe9\xb7\x55\x2e\x66\x44\x0f\xa6\xd4\xb6\xf5\x1f\x33\xf0\x0b\xfe\xc9\x5e\x22\x29\x40\xb8\xd0\x45\x54\x18\xfb\x0e\xa7\x78\xb6\xc4\x85\x81\xf4\xd3\xab\xe5\x14\xb6\xec\xe5\x80\xe1\x6c\x18\x3b\xc2\xa3\xdb\x5c\x83\x29\x63\x6c\xd8\x9f\xa1\x38\x3f\xb1\x82\x45\x63\x5e\x04\x87\x72\x94\x5e\xf8\x61\x10\x39\xaf\x9b\x6e\x98\x6d\xad\x77\x34\x08\x5f\xdb\x27\xf1\xee\xbc\x58\x61\x58\xb5\xef\xed\x9f\x35\x75\xb1\x9f\xc2\x00\xfd\x5c\x0a\x21\x8b\x53\xee\xed\xba\xed\x60\xaf\x93\xad\xed\x69\xc7\x23\xf3\x50\x5a\x67\x06\x07\xa0\x75\x71\x38\xa7\xdf\x31\x69\xe8\x54\x8d\xe0\x85\x33\xa0\x4c\x57\x70\x55\xf9\xa8\x6b\x43\x76\x6f\x98\xae\x58\x27\x79\xac\x3b\x2a\xee\xe4\x0a\x3f\x96\x8b\x29\xaf\x74\x6d\x20\x2b\xa7\x74\x6d\x7b\xca\x2e\x41\x27\x90\x57\xb0\xa7\xaa\xaf\x3c\x8c\x80\x76\x0a\xb1\xfa\x7e\xe3\x84\x7c\xe3\xb3\x39\xbf\xf0\x16\xc8\x09\x1a\x19\x74\x96\x93\x5e\x24\x07\xd7\xe0\x23\x99\x8a\x57\xf1\x17\x28\xeb\x55\xa6\xeb\x66\x11\x68\xd6\x99\x5e\x5b\x0a\x9d\x99\x86\x41\xfb\x9e\x00\x8b\x29\xc7\xf7\x9e\x93\x9e\xb4\x00\x44\xbb\x4c\x79\xbe\x6b\xdb\x03\x29\xa4\x33\x3d\xf2\xfe\x1c\x8d\x4e\x4f\x5d\x20\xa5\x12\x0b\xa6\x8a\x83\xc1\x5a\x35\xfd\x4c\x09\x91\xfd\x53\x5e\xee\x96\xfd\xd7\xb8\x3a\x02\x3b\x6d\x04\xc9\x94\x94\xda\x02\x93\x56\x9f\x8a\xe8\x01\x37\x3f\xb4\x1f\x6a\x21\xe1\x1c\xeb\xd1\xf1\x7a\xc0\xcc\xba\xac\x05\xdc\x26\x98\x72\x88\x17\x82\x09\xa7\x9f\x26\xc1\x5f\x3a\x3b\x42\x38\x3b\xd3\xef\x8f\xb4\x23\x1f\x8a\xea\xd8\xd3\x1d\x7b\x15\x3b\xd1\xee\xf0\x76\x04\x82\x59\x74\x40\xbf\x64\xc6\x97\x26\x1e\x9c\x91\x53\xa9\x04\x6a\x43\xe1\xb2\x37\x9c\xb8\xad\xe9\xbc\x02\xbc\x6b\x33\xf5\xfc\x48\xd9\x98\xbb\x8e\x46\x05\xd1\xd9\xfd\xbd\x87\x24\xe5\xe1\x3e\xae\xf4\xe1\x27\x46\xb8\xf8\x33\xbb\xa3\x39\xf7\x14\xae\x91\x44\xa6\xed\x7e\xad\x06\xaf\xe5\x94\x47\xfb\xe0\x59\x8a\xe9\x84\x04\x38\xce\x66\xc7\x0d\xc9\xd9\xae\x14\x04\x65\xdb\x52\x78\xba\x90\x76\x64\x06\xc2\xe3\x31\x95\x29\xa0\x44\x10\xea\x5e\x4b\x1c\x67\xd3\x9e\xf1\xe8\xcd\x7a\x47\xa4\x36\x14\x50\xbf\x23\xd2\xd0\xda\xf5\x8e\x48\x59\x42\xca\x0f\xd9\xf7\xf0\x89\xc1\x41\x34\x90\x9c\x59\xbc\x81\x7b\x86\x6d\x28\x27\x7a\xc9\xb2\x3b\x65\x00\x57\x8f\xa6\x1f\x19\x69\x9c\xea\xc3\xaf\x56\x72\x46\x0d\xac\x8b\x69\x66\xb8\xcb\x1d\x88\x55\xa7\x4b\xbc\x62\x35\xa0\xed\x4b\x10\xcc\xe0\xc6\xf9\x99\x6e\xde\x6a\x89\xba\x7a\xec\x88\xd0\xb1\x69\x3f\x7d\x43\x0c\x92\x9f\xbe\x9c\x69\xe6\x36\xb2\xe0\x13\x22\x48\x55\x9b\x61\x38\xe3\x07\xc1\x0a\x9c\xdc\x7e\xf1\x23\xeb\x35\x1c\x31\xfe\x29\xd3\xfe\x86\xb6\x06\xc6\x69\x04\xe0\x61\x07\x1a\x47\xfc\xd0\x8e\x3e\x33\x95\x3a\x1c\x48\xf4\x33\x87\xf3\xb1\x6d\x29\x53\x88\x6b\x4f\x2b\x7a\x87\xf5\x4c\xcd\x97\x76\x5e\xca\x34\x1b\x50\x9d\xd2\x0e\xac\xee\x1b\xe0\x2e\x22\x0c\x24\x21\x02\x76\xef\x9c\x04\xc4\x51\x4c\x65\x1d\x28\x98\xbb\xa7\xd2\x0c\x1c\x44\x46\x4c\xc7\x0b\x8c\x98\x92\x6e\x9f\x29\x04\x22\xcc\xdb\x16\x3e\xa6\x5c\x89\x05\xca\x06\x7b\x55\xb8\x40\xe3\x75\xbf\x79\x3b\xd2\x12\xae\x70\xfb\xdc\xdf\xd2\x8c\x13\x3a\xf7\x34\x63\x6b\x38\x90\x0c\x71\x3c\xb4\x37\x6f\x8b\x75\xe1\x18\xb7\xc5\xba\x6c\xd1\xdb\x8e\xe6\x2b\xcd\x2a\x18\x83\x27\x63\xa7\x93\x0c\x6c\x10\x84\x73\x0c\xe4\x36\xc9\xbc\xfd\xf0\xf1\x99\xd9\xe2\x75\xa1\x01\xf4\x70\xb3\xe9\x54\xcc\x87\x43\xff\xb6\x4d\x24\xd4\x7c\x13\x00\xc7\xb1\xe6\x08\x04\x0c\xe2\x53\x29\x06\x0e\xbc\x1e\x93\x14\x03\x70\x51\x05\x27\x94\xde\x53\x73\xb8\x4b\x06\x86\x88\x8f\x00\xe3\x67\x3c\x22\x07\x4f\xab\x68\xb8\xf4\xa7\xb3\x08\xb4\x9a\xc2\xc5\x53\x37\xb6\x9e\x92\x08\x54\x6e\x9d\x4f\x45\x0d\xec\x27\xc1\x8d\x73\xda\xb2\xcb\x65\x97\x39\xb3\xd4\x69\xc8\xb4\xe6\x09\x72\x14\x01\x29\x9b\xa7\xdf\xe9\x18\x25\xed\x9a\xe7\x13\x29\x30\xe7\x20\x62\x06\x48\xd2\x04\xf4\xe4\xb4\x01\xed\x4a\x9f\x03\x14\xd2\xae\xe4\x99\x8c\x7a\x80\x50\x50\x78\x2f\xfa\x62\x2b\x4c\xbf\x47\xc0\x44\x2b\x1a\xa1\xc6\xa8\x36\xcd\x18\x30\xd7\x38\x36\x21\x56\x16\x5e\xd8\xc0\x65\x32\xa7\x45\x43\xc2\x35\xe6\xb4\x68\xc8\x3e\x51\xf8\x41\x25\xb3\xec\x54\x22\x80\xca\x63\xe7\xd3\xcf\x62\xb4\xf4\xaf\xcc\x12\x84\x6e\x4d\x07\x26\x1c\xc1\xd4\xe1\xfd\xb0\x85\x29\x0f\x56\xfb\x1b\x5e\x2e\x9e\x4a\x27\xb0\x58\x21\xe3\x90\x89\xad\xb7\xb4\x23\x73\x68\x0c\x22\x53\x3c\xa4\x64\x54\xf6\x2e\x5c\x99\x56\xd9\x55\xda\x95\xaa\x36\xd5\x1a\x72\x98\xc4\xd5\x99\x3a\xbf\xae\x81\xd7\x6a\xea\x75\x8d\x55\x78\x02\x6a\xcc\x57\xaa\xea\x31\x1b\x18\xf5\xc3\x6e\x5c\x82\x47\xa6\x13\x15\xe4\x76\xd4\x24\xdc\x82\x10\x81\xe9\x4c\x05\x78\xca\xe6\xc3\xf7\xd5\xb7\x7c\xa9\x83\x1f\x4d\xd8\xc1\x17\xdb\x48\x99\x9e\x10\x66\x58\x0f\x5f\x6c\x21\x3a\x64\x2a\x6d\xc1\x71\xe4\x43\xe9\xa0\x5c\xec\x9c\x0f\xcb\x28\x28\xd0\x0f\xbb\x71\x33\x2a\xc5\x8b\x6f\x5b\xbe\x53\x20\x25\x82\xa8\xa3\x3d\x48\xc2\x31\xfd\x46\x47\xb4\xbf\x87\xef\x41\xb1\xca\x79\xa2\x83\x3d\xe0\x87\x37\xc6\x99\x46\x5f\x1e\x7e\xfa\x7f\x8b\x22\xc0\x7b\xd1\x6e\xc7\xa1\x34\x15\x06\xb2\xe7\x6e\xd3\x7c\x60\x4e\x3c\x03\x9a\xff\x65\x5a\xed\xba\x85\x2f\x3c\x7c\x31\x12\xae\xf5\xe0\x8e\x2c\xa8\xc3\xfe\x90\x21\x95\xd0\xa0\x12\x8e\x3c\x15\x41\x52\x5b\x4b\xa3\xde\x76\x7b\x5a\x15\x1f\x40\xaf\xe6\x51\x8e\x0f\x7a\xf6\x3b\x20\xb3\x29\xbc\xa4\xc7\x53\xf4\xc0\x35\xc6\xb8\x1c\x86\x80\x53\x71\x3e\x9c\xcc\x14\x16\xe6\x17\x3a\xc8\xb9\x36\xfd\x26\xc7\x47\x0a\xf1\xa3\x1c\xb9\x7c\x35\xf5\x2a\x47\x89\x7e\xf9\x20\x46\x81\x1d\xab\xa0\x95\x63\xd4\x74\x62\xef\x24\x83\x7e\x5a\x36\xce\x91\xac\x20\x96\xca\xe5\x9d\xf9\xec\xcc\x6c\x07\xd4\x4b\x79\x2d\x55\xfd\xdc\xea\x1e\xd0\xe8\x9e\x40\xb2\x26\x6c\x69\x47\x1c\x04\xe3\x9a\xb3\x2d\x0c\x6e\xfa\x4c\x67\x5b\x68\x10\xe5\x73\x80\xcf\x0e\x68\x7c\x06\xd0\x62\xf9\x3c\x9b\x37\x79\x6c\x03\x27\xfd\x7c\x22\x51\x21\x39\x3f\x2d\x47\xf7\x40\x66\x69\x7b\x1a\x12\x42\x57\xfa\xd4\x52\x63\xf9\xf2\x8b\x1a\x1f\x21\xc5\x89\x1a\x08\x24\x9c\x4a\xd4\xb0\x73\xeb\x6f\x3a\xfe\xa5\x11\x71\x33\x1d\x00\x93\xab\x61\xd3\xcf\x6d\x94\x31\xd2\xae\x54\x8b\x9e\xba\xb2\x83\x9d\x81\x9c\xd1\x95\x91\xf8\x3d\x18\xd4\x15\xc5\xc3\x94\x2d\xd3\x2c\x2b\xf7\x67\xf5\x4c\xa4\x99\x10\x3b\x70\x3f\x73\x27\xb2\x8c\x43\xc1\x4f\x6f\x70\xe5\x64\x3e\x9d\x13\x88\x07\x09\xa7\x63\x65\x78\x70\x75\xfa\x7d\x8d\x1c\x2a\x4f\xdf\xf0\x24\x50\x65\x3e\x1d\x5f\x80\xa6\xf5\x74\x7c\xc1\x79\x9c\x3f\x66\xdd\x4f\x13\x69\x4d\x3b\x10\x29\x2b\x62\xa1\xff\x82\x6f\x39\xd3\x43\xb4\x5b\x45\xd9\x24\xcf\xcf\x74\xde\x87\xb8\x70\xfd\x30\x07\x2f\x89\x4f\xc7\xd8\x90\x61\x7a\x3a\xc6\xa6\xb3\x2f\x09\xb1\xb9\x52\x53\x83\x44\xe4\x77\x7e\x08\xa2\x7a\x27\x2f\x78\x64\xc8\x0a\xaa\xa9\x3c\xa0\x3d\x15\x53\x53\xc6\x99\xaa\xf2\x72\x71\xae\x3b\x6c\x66\x27\xbe\x65\x3a\x50\xa6\x11\x04\x35\x5f\x0a\xec\x22\xa0\x60\xbe\x4c\xda\x88\x86\x2f\x05\x9d\xee\x35\x50\xd1\xe3\x38\x34\xe3\x98\x53\x02\x4e\xe6\xcb\xcf\xca\x04\x39\x91\x7d\x89\x37\xf5\x65\xb2\x1f\xe9\xe3\xe1\x81\x04\x04\xbd\xd4\xd5\xce\x43\x45\x74\xca\x09\x72\xe3\xcf\x97\x03\xf1\x90\x6d\x1c\x38\xd3\x08\xd1\x9a\xaf\x10\x7a\xea\xfa\x5c\xcb\xa8\x6f\xcf\x25\x9d\xc8\xc4\x1b\xb3\xb2\x72\x4c\x1c\x31\x1d\xbd\x10\x34\xd0\xed\x5e\xf8\x7a\xcf\x94\x8a\xb8\x47\x0a\xed\x5a\x0d\xf4\x76\x97\x74\x22\x85\xe4\xc8\x30\xa5\x90\x6c\x21\x17\x49\x9f\xa5\x64\xdd\xa7\x37\x1e\x13\x3d\x61\x1a\x34\x2b\xe2\xde\xb3\x5e\x32\x57\xf1\x30\xd4\x54\x22\x8b\x16\x17\xe1\xdb\xcf\x9d\xc2\xc3\x1c\x01\x93\xbb\x93\xd3\x21\x30\xb1\xe0\xbd\xc3\x28\x03\x7a\x3f\xa1\x33\xbe\xa1\x35\x84\xd3\xb7\x43\x93\x63\x95\x7d\x63\x64\x08\xf4\x54\xd8\x07\x5f\xea\x1c\xe6\x71\x9f\xe9\x27\x3a\xc8\x0a\x35\x95\x8f\x22\xf9\xac\xa6\xa2\x55\x2a\x51\x7b\xf3\x6d\x97\x3f\x12\x94\xe2\x53\x8e\xe8\x44\x0e\x4f\xa9\x1f\xe4\x58\x77\x38\x8a\x03\x54\x78\x6a\x61\xbe\x6f\x06\x72\x02\x32\x90\x94\x5a\x9f\x84\xe1\xf8\xfd\x0c\x6e\x3e\x4c\xc7\xa1\xec\x67\x49\xe1\xd3\x9f\x32\x9b\x12\x31\x23\x7d\x29\xf2\xa4\x72\x8b\x69\xfa\x95\x8c\x3d\xc1\x1d\x7e\x26\xa3\x11\x9a\x35\x1d\x79\x42\x78\xcb\x7c\x3b\x0b\x74\xb6\x86\x42\x4f\x2a\xe9\xe6\xe7\x1b\xce\x85\xf6\xa9\xd4\x15\xb5\x7f\xbe\xf4\xbe\xc9\xd0\x9c\xa7\x0a\x4e\xaa\x48\x94\xea\x0c\xa7\x57\xdf\x30\x54\xea\xb0\x5d\xa0\x9b\x15\x77\x5a\xa0\xb9\xdc\x15\x70\xed\x38\xdf\xd8\x5b\x90\x1a\x3a\x28\x93\x36\xe1\x04\x6f\x0b\x12\x3f\x38\xe9\xc4\xe6\x65\xdf\xff\x5c\xa0\x4f\xbe\x2b\xe0\xa9\x2f\xc1\x60\x38\xfa\xfe\x04\xf2\xde\xd4\x4c\x2f\xd0\xd9\xf0\xaf\xf4\x32\xf4\xe5\xfe\x23\xee\xbd\xaa\x5a\x39\x2c\xe9\x45\xf3\xb5\xa7\x59\x49\xa4\x7b\xfa\x54\x1c\x82\x58\xf9\x82\x7c\x2a\x55\xba\x14\xbd\x39\x91\xd6\x82\xbc\xb8\x81\x20\x37\x5a\xb5\x51\xd3\x82\xf7\x02\x15\x24\x71\xa6\x50\xd4\xbf\xe7\x4b\xb9\xe4\x32\x3f\x12\xec\x7c\x29\x6e\x41\x1e\x24\xe8\x58\xc9\xdd\x98\xf4\xdb\xc3\x60\x9a\x1d\xca\x67\x4f\xff\x02\xc5\xbe\x37\x46\x65\x3a\xcc\x18\xed\x33\x36\x6d\x2d\xf0\xf4\xbc\xf2\xa5\x2c\x1b\x4e\xc6\x79\xf5\xdd\x17\x72\xce\x5a\x01\xd5\xd0\x51\x80\xd6\xf9\xd5\x4b\xa0\x22\x28\x1f\x6a\x8c\x47\x07\xb2\x01\xff\x4a\x33\xde\x7e\xf5\x04\xb4\xb1\xf4\x4c\x65\x63\xd0\x80\xa6\x14\xe0\x03\xc8\xaa\xfc\x31\x00\xc5\x1d\x02\xd9\x47\xb9\x5d\x40\x56\xec\x6b\x40\x99\xf8\x98\xd8\xdd\xd1\xc7\x7e\xb2\x61\x81\x0a\x59\x2c\xa9\xaa\x59\xff\x40\x46\x07\x04\x7c\x55\xf4\x64\x20\xc3\xdb\x80\x9a\xb7\xb7\xc1\x06\x04\x3f\xa2\x0b\x59\x3e\xb6\xe3\x0a\xe8\xd9\x4a\x5d\x71\xa7\x0c\x52\x3a\xed\x08\x6e\x16\xfc\xcb\x95\xaa\x7a\xc0\xa6\xa5\xea\xf0\x09\x01\x64\x54\x41\xce\x04\xc2\x6e\x72\x0c\x89\x83\x7f\x17\x24\x8d\x72\x63\x36\x6c\x1a\x3d\xa8\xe9\x58\xa4\x46\x9b\xd8\x47\x2a\xd8\x88\x5a\xb2\x61\xfd\x7e\xc6\x6f\x1f\x5a\xd3\x38\xc1\xd4\x79\x71\xc2\x4f\x0e\xd3\x0e\x9b\xf0\x70\x22\x05\x5f\x72\x5a\xa0\xa6\xe3\x53\x55\xd3\xc1\xb6\x53\xca\x8c\xee\x70\xa7\x05\x99\x33\x9e\x29\x34\x29\x9d\x05\x50\xd7\x2a\x7a\x5a\x55\xa8\x02\xdb\x4e\x4f\x64\x54\xfb\xe8\x16\xa4\xa0\xfb\x5e\x81\x44\x48\x25\x65\x0c\x84\x42\x28\x29\x18\xc8\xd7\xd2\xa1\xab\x03\xfe\x96\x4e\xec\x3e\xdb\x40\xc0\x6f\x64\x5c\x2c\xf3\x31\x40\x96\x39\x30\x65\xd5\xd4\x35\x7a\x0c\x84\x57\xd1\xae\xf4\x09\x46\x20\xe8\x60\xb7\x4a\x3b\x8a\x6a\x08\xa3\x3e\x30\xb1\x41\x3e\x0e\x60\x39\xd9\xcf\x07\xe2\x4f\xa6\x16\xeb\xc9\xe7\x53\x19\x3a\x1a\x7d\xea\x8a\x72\xff\x74\x62\x95\xbf\xa4\x21\xe5\x52\xda\xd3\xce\xad\xfb\x7f\x54\x35\x01\x85\x17\x91\xc1\xe3\x2a\x01\x0f\xc9\xd2\x3f\x14\xbb\x57\x55\x51\xc5\x96\x66\x45\x15\x59\x69\x39\x63\x7a\xa6\x52\xd1\x12\x21\xc4\x83\x67\xc0\x39\x64\x9c\x17\xa4\x43\x96\x3c\x9e\x51\x3e\x85\xba\x49\xdb\x02\x89\x0e\xb2\xd2\x48\xf6\x6c\x1a\x92\x7f\x9c\x9c\x40\xca\xf6\xb1\x1a\x0a\xa8\xe4\x32\x1c\x89\xc5\xfc\x0f\xaa\x50\xb4\x4b\x39\x98\xca\x82\xf5\x84\x9d\x49\xb4\x4b\x78\xac\x33\x78\x38\x3b\xd2\x82\x34\x05\x50\x7b\xc9\xe9\x49\xb3\xc3\x3b\xa3\x03\x79\x98\x81\x6c\x99\x2b\xa9\xaa\x1b\x72\x0c\xba\x0c\xba\x04\x03\x99\xed\xae\x96\x42\x48\x2f\x18\x58\xe6\x0a\xa4\x0c\x60\x30\x87\x62\x8e\xc7\x26\x2e\x3e\x11\xe1\x14\x05\x3a\x4c\x33\x38\xfd\x98\x9e\x10\x1e\xc8\x9a\xd4\x4a\xbe\xd4\x36\x69\x29\x63\x11\x68\xc7\xef\x90\xb1\x35\x8b\x4f\xb6\x46\xab\x4e\x0e\x73\x05\x72\x8f\x20\x67\xea\x61\x3f\x95\xc9\xc6\xa4\x0f\x64\x69\xf6\xb4\x72\x76\x1c\x05\x96\xef\xd8\x9b\xcf\x9c\x5b\xda\x82\x8d\x17\x47\xa5\x9f\x1f\xd0\xf6\x01\xce\xd2\x2a\xff\x4f\x4e\xbd\xea\x67\x43\x99\xac\x0a\x31\x81\x7a\x35\x03\x64\xb2\xaa\xa9\xe7\x4a\x55\x93\x73\x0b\xd8\xbf\xbf\x9a\xe5\xbd\x05\x49\xa9\xad\xf9\xd0\xa2\xeb\xa7\x4b\xa3\xd7\x52\xd7\x8b\x47\x5d\x1f\x97\x17\xb3\xae\x90\x9e\x5e\xd3\xa7\x05\x33\xa6\xd2\x51\x3b\xa3\x30\x7b\x75\x80\x10\xc3\x84\xd4\x6a\x2a\xcb\x80\x92\x81\xf9\xc2\x43\x09\x64\xe9\xf4\x0c\xe8\xb5\xad\xe9\xf4\x2d\x5e\x05\xb6\xb7\x1c\xde\xf0\xb1\x6a\xe2\x82\x60\x2a\xc4\xd5\x18\xa7\xe9\x07\xaa\x54\x82\x8f\xda\x61\x63\xbc\x1e\x52\xae\x14\xda\x01\xff\x69\x48\xc7\x22\x64\xa9\x24\x1e\xbd\x66\xf9\x38\xfa\xd2\x90\x29\x08\x7a\xaa\x8e\xc2\x3d\xd3\x27\x51\xb8\x59\x40\xab\x6a\xb0\x86\xea\x3c\x92\x67\x26\x9e\x47\x6a\x6b\x4a\x85\x42\x63\x9c\xe6\x40\x3d\x65\x92\xba\x33\x4c\x8b\xef\x6c\x0c\x9e\x0b\xb9\xe0\x1b\xa7\xa5\xb1\x5e\x80\x8c\x6c\xca\x40\x36\x5f\xda\xe3\xc0\xf6\x57\xd8\x50\xed\x2d\x5f\xea\xd9\x3d\x56\x88\xb7\x44\x4e\xb0\x3b\x2d\x9b\xfd\xf8\x56\xce\xaa\xaa\xcb\x50\x2d\xed\x48\x41\xee\x41\xc0\x6c\x36\x8d\x2a\xeb\x21\x4c\xf7\x34\xc7\x1b\x0d\xc8\x6f\x3e\xef\x40\xfa\x6e\x5c\x40\x8e\xc9\x61\x29\x4f\x0b\x63\x83\x66\x1c\xf7\x75\xb1\xa5\x4f\x27\x8f\x49\x1f\x1c\x8a\x8c\xf8\x86\x91\x83\x8e\x6e\x2f\xf4\x91\x42\xbd\x34\xb1\xa7\x4c\x8c\xe2\x48\xa3\xe2\x05\x83\x21\xa2\x19\xf6\x80\xba\xa1\x10\xe4\x6e\x23\xe7\x65\x75\xe0\x51\x38\xdc\x69\x26\x36\x58\x2b\xd4\x44\xe8\xcc\x41\x49\xbd\x83\xb8\x69\x70\xa4\xcc\x98\xa6\x19\x3d\x8a\xbb\x07\xd2\xa2\x76\x30\xc5\x12\xd6\xd3\xbf\xcf\xc0\x2c\x0e\x3a\xe3\x99\x66\xcd\xc5\x5a\x40\x0d\x64\x0f\xe4\x38\x7b\x58\x8a\x93\x78\x84\x53\x39\x9a\x69\x6c\x81\x6e\x41\x27\x90\x2d\x26\x48\xe0\x97\x1f\x7b\x8a\x1c\xe7\x44\x1d\x51\xca\x1c\xcd\xb4\x21\x31\xe8\x51\x93\x3a\xb6\x94\x55\x41\x29\xbb\x04\x6d\x40\xb6\x57\x9c\x01\x75\x0d\x06\x66\xe8\x27\x4c\xfc\xc8\xea\x82\x8c\x5c\xca\x58\xbb\x0e\xc8\x0c\xa4\x13\x4b\xb2\x88\x1e\x17\x66\xd6\x4e\x4b\xb7\xd3\xce\xd3\x12\x3e\x4c\xe6\xf2\xf2\x75\x17\xe4\xa4\x0b\xb3\xfd\x99\xba\x8b\x71\x46\x8b\xf6\x4b\x25\xfb\x39\x02\x4e\x21\xc8\x74\x89\x4f\x8d\x2d\xed\xd8\x21\x94\xc9\x53\xcc\xd3\x40\xad\x77\x90\x53\xb6\xb3\xdf\x26\x29\xa8\x48\x17\x97\x42\x61\x28\x17\x2e\x29\xe8\xc0\x21\x4f\x23\x8b\x40\x42\xdb\x2b\x9f\xca\x75\x8d\x72\xd1\xba\xfd\x1a\x6c\x28\x85\x40\xd5\xb1\xa7\x50\x8b\xb2\xa7\x4c\x8e\x5b\xf0\x51\x06\x8f\x3a\xf6\x40\x43\xd0\x0e\xe4\xfe\x37\x20\x4d\x00\xaa\x86\x22\xa5\xea\x40\xdd\x76\xa4\xd4\x60\x57\x3a\x99\x47\x85\x24\x1a\x42\x37\x93\xdc\x08\xe6\x87\x8b\xf3\x2a\xc9\x15\xc4\x11\xac\x47\x40\x56\xda\x53\xe0\x30\x26\xc2\x44\x16\xe8\x30\x91\x16\x50\x83\x46\xb4\x26\x70\xa9\xc0\xe4\x15\xb9\x54\x07\x6b\xdb\x9c\xcc\xe5\x1c\x29\x64\x19\x3a\xa0\x99\xec\x08\x28\xb3\xc3\xc5\x36\x52\x80\x52\xd9\x20\x21\x85\x24\xd5\x91\x65\x40\x8e\x09\xbe\xd3\x9d\xa6\xaa\x76\xe3\xe7\xc3\x2e\xb2\xf8\xe1\x15\x9d\x55\x55\xeb\x00\x7b\x6c\x3a\x9f\x06\xfa\xb8\x1f\x42\x19\x47\x3a\x14\xe5\xa1\xe6\x2b\x78\xa9\x0e\xa4\x70\xc5\x2e\xd5\x01\xe5\x75\x5f\xca\xbb\xa0\xe0\xee\x98\xb9\x8b\x35\xeb\xc8\xd2\x2d\x95\xad\xf3\xc2\x4a\xbb\x3d\x8a\x35\x9f\x0a\x9f\x92\x2f\x85\x4f\x49\x99\x82\xd2\x58\x03\x3d\x91\x72\x7c\xbe\x93\x97\xbb\xf4\x40\x22\x60\xf6\x7f\x77\xdc\x2a\xf2\x8d\xdf\x52\x19\x25\x65\xa7\x69\x22\x8d\x2a\xd7\xc9\x99\xaa\xb7\x44\xe7\x34\x2a\x92\x2d\x29\x7b\x78\x8c\x69\xe7\xf9\xfd\x75\x35\x96\x4a\x19\x40\xea\x28\x81\x94\xa3\x1d\x29\x8e\x08\xa8\x0b\xce\xd9\x25\xfa\x8c\x92\x42\x3b\x71\xe1\xce\x1d\x47\x0e\x62\x7f\xbf\x7d\x9d\x2a\x75\x9b\x1b\xa2\x17\xec\x9c\x9f\xba\x5a\xe6\x12\x68\xba\x6e\x3e\x35\x7e\x2c\x88\xec\x49\x17\xd4\xac\xe0\xa9\x3a\x6a\x20\x47\x0f\x70\x60\xe9\xc1\x96\xe3\x83\x9e\xd9\x4f\xcb\xe4\xf1\xc6\x4e\x0a\x6d\xf8\xc9\x92\xe8\x05\xd7\xfe\x29\x34\x0f\x46\xa0\x71\x68\x55\x29\x23\x9d\x2a\xae\x1e\x48\x81\x56\x47\x3d\x02\xed\xdf\x5f\x6d\x70\x48\x0e\x0b\xda\x17\xdc\x71\x38\x82\x3a\xea\xf1\xb0\x9f\xf0\xda\x02\xda\xad\x79\xa5\xa5\xa6\xd9\xcc\xa7\xfd\xfb\xeb\xca\x7c\x29\xf2\xaa\x54\xe4\x0b\x07\x5e\x95\x23\x90\x0f\xd4\x2b\x28\xc8\x38\xf7\xe9\x43\x33\x8b\xd8\x46\x62\x93\x0b\xa6\x37\x86\xad\x46\x48\x8e\xc3\x97\xe6\xaf\x60\xeb\x27\xfb\xa1\xbd\xe1\xfb\xca\x17\xdc\xd3\x21\x5c\x91\x56\x1d\xc2\x55\x4f\x64\xd9\xe1\x6b\xf3\xf0\x1f\xe5\x4b\x59\x34\x94\x5e\x44\xb6\x35\x85\x26\xdb\x3d\x85\x46\x97\x66\x6f\x2f\x3d\x73\xe0\xa0\xed\x2b\xd3\x65\x86\x98\x29\xc1\x06\x9a\x49\x90\x54\x3e\xd0\x0e\x79\xc9\xe5\x0a\x7a\xa4\x2a\x4b\x27\xbe\xaf\xc3\x91\x31\x44\x60\x7b\xd0\xc3\x6e\xce\xa9\xae\x77\x5d\x4a\x8c\xc4\x8a\xd2\x2a\xf5\x53\xd5\xa2\x7f\x4f\x55\x3b\x28\x32\xb7\xe6\x6b\xc8\x0a\xc3\x97\x98\xae\x3d\x7d\x6a\xd4\x67\x20\xc5\x49\x31\x12\x07\x6a\x5d\x47\xa0\x43\x35\x03\x69\x0a\xd8\x61\xc4\x69\xd1\xa1\x9f\x8e\xe1\x46\xf1\x02\x75\xf6\x9d\x29\xbc\x15\x6a\x0a\x34\x1c\x0b\xc6\x84\xdc\x7a\xbb\x77\x71\xf2\x1f\xf2\x6e\xbf\x15\x13\xe3\xa1\x43\xba\xf6\x96\x56\x75\x3c\xc0\x81\x6e\xdf\x19\xee\xa9\xa9\xdb\xad\x6c\xa8\x1b\x95\x2e\xa8\x9a\x40\x58\x0f\x07\x78\xc5\x0e\x7d\xfb\x76\x1c\x67\xd7\xed\x0b\x52\x28\x5b\x37\xe7\x5c\x0f\xa8\xac\x32\x35\x55\x1f\xdf\x5f\xe7\x06\x77\xbe\xc9\xd7\x4c\x99\xb3\x20\x5e\x1c\xfe\xb7\x63\x0f\x32\x1b\x4e\x43\x56\x53\x26\xb1\x29\xbc\x49\x69\x60\xea\xc8\x94\x4f\x3b\x93\x40\xdc\x81\xb7\x90\x83\xb3\xb7\x0c\x18\xd5\xc4\x0f\x76\xa5\x50\x36\x58\xd4\xd6\x69\x81\x86\xd9\x98\x96\x72\x99\x54\xc7\x6b\x0d\x14\x3f\xc7\x6b\x8d\x96\x56\xc4\x61\x5b\x5a\x11\xc1\x21\x4f\xe9\x91\x97\x52\x3e\x6d\xbe\x3c\x8a\x02\xa8\x93\x94\xdd\x31\x91\x6f\xa8\x6a\x71\x18\x62\x74\xb0\xd6\xd5\x52\x26\x06\x81\x8c\x3b\xa1\x05\x50\x43\x2e\x62\x6d\x14\xc8\xb5\x36\x19\xa8\x2a\xc6\x73\xb0\x93\xa7\x83\x61\x46\x20\x5d\xb7\xe8\x69\x87\x5d\x15\x70\x8a\xc6\x83\xaa\xc7\xd8\x81\x34\x46\x36\xa7\x53\xce\x5c\x2d\x90\x93\x8e\x04\x62\x15\xc1\xc6\x59\x83\x38\xc7\xf5\xbc\xcb\x11\xbf\x90\x5f\x77\x19\x9f\x66\x34\x53\x1c\x3e\x0e\xea\x1a\xf9\xce\xaa\xd4\x85\x40\xa2\x18\xaf\x3d\x76\x81\xc9\xa5\x1c\x44\x7e\x25\xa3\xa9\x83\xa3\x68\xda\xff\x96\xd9\xe0\x5d\x7a\x86\x88\xb6\x94\x95\x23\x38\x2b\x43\x76\xa6\xe8\x33\xed\x78\x1d\x3d\x2a\x27\xad\x39\x60\x15\x0f\xe8\x6f\x00\xc1\xd6\x02\x9a\xb7\x73\xa0\x28\xfe\xea\x38\xf6\xb4\x23\x92\x43\x3a\x72\xb2\x9b\xe0\xca\x3b\x31\xe7\x95\x0f\x7d\xaa\x23\xbd\x39\xfe\x6a\x30\x05\x0f\x74\x30\x68\xf7\x81\x41\x08\x72\x55\x90\x55\xd9\xd8\x3b\x0f\xdb\xb9\x2f\x44\xbd\x07\x16\x21\xb8\xc7\x83\x08\x96\x2b\xa5\xd2\x2b\x5a\xda\x95\xb5\x71\x67\xfd\x1e\x0e\xf7\xe6\x50\x55\x5c\x53\x1d\x2d\x50\x97\xb5\x88\x19\xb2\x5c\x1c\x6f\xcf\x03\x4b\x0e\x54\xf9\x90\xc0\xb2\x8d\x14\x9a\x7f\x97\x14\xbe\x65\x53\x60\x16\x88\x19\x81\x81\x3d\x90\x9a\x21\xfd\x07\xb6\x1b\x04\x86\x87\xd3\xaa\xc6\xa6\xa7\xf0\xa5\x63\x3b\x7a\x9a\x7a\xea\x1d\x27\xf0\xf5\x31\xd1\xd3\x90\x32\x9e\x02\x3d\xb1\xcf\xfc\x2d\xc6\x92\xa7\x53\xaa\x5c\x34\xfb\xec\x60\x74\x00\x0e\xf9\x67\x2e\x20\x6f\x15\x26\xe9\x49\x84\x2f\xf6\x8a\xa7\x4d\x7e\x20\xff\xb4\x74\x0c\xe3\x7c\x3a\x15\xc5\xd5\x52\xe8\xad\xe3\x55\x52\xf8\x52\x1d\x88\x5b\x3c\x08\x73\x21\x57\x3f\xfd\x26\x64\xc1\x46\xf1\x44\xf2\x28\xa9\x2c\x23\xcd\x07\x6a\x6b\x86\x6a\xa0\xee\xaa\xf9\xd2\x07\x0b\xfb\x95\xe0\xa6\x98\xc2\x9d\xce\xa7\xb1\x09\x1d\x85\x54\x63\xbd\xf4\xf3\x31\x7b\x2c\xda\x0a\x43\x2a\x91\x8c\x94\x97\xe7\x38\x38\x85\x9c\x96\x67\x8c\x94\xe9\x48\xf8\x94\xd9\x85\x98\x55\x0a\xdd\x30\x0b\x8a\x96\xbb\x38\x86\x9f\x88\xb6\x68\x87\x0a\x3d\x6a\x61\x60\x4f\x5f\xdf\x8c\x15\xf4\xc9\x35\x81\x91\x52\x1d\x19\x59\x41\x71\x90\xe8\x17\xc4\x25\xc5\xfa\xac\x48\xa4\x72\xc0\x24\xf4\xac\x4c\x29\x5b\x5a\xb5\x12\xde\xf2\xa5\x77\x6c\x4b\x5d\x1b\x63\x10\xeb\x9c\xd2\x27\x5c\xdb\x39\x7c\x46\x61\xdc\x8a\x2f\x3a\x1a\xeb\xfb\xe2\xb8\xa3\xdd\x17\xf1\x9d\x0c\x8d\x3c\x3d\x35\x0d\x79\x36\x53\x95\x5d\x38\x00\x95\x0b\x10\xe4\x5f\x96\x6d\x7b\xca\x44\x60\x10\xcd\x8b\xf8\x38\xb8\x82\xc3\x86\x4a\x09\xe4\x0d\xd0\x03\x9e\x9e\x21\x1a\xb2\xe0\x02\xab\x76\xdc\xd0\x67\x24\xa1\x28\xd0\xf3\xc5\xfe\x18\xa3\x9d\x6f\xa7\x5e\x69\xd6\x21\xa6\x2d\x0d\x19\x3f\x06\x2d\x37\xda\x40\xb8\xe6\xe1\x1a\xc4\x72\x45\x11\x1d\x83\x2d\xf7\xb2\x9c\xcb\x8e\x73\xfa\x9d\x3d\x36\xca\x97\xef\xab\x04\x57\x88\x16\x29\xc7\xf1\x46\x51\x4d\x14\x6e\x74\x44\x25\x56\xb8\x11\x2f\xb8\x2e\x48\xef\xd6\x9e\xe9\xdf\x24\x9c\xef\x44\x14\x1f\x6c\x4c\xc1\x6c\xb8\x97\xcd\x3f\x48\xa7\x04\x14\x9d\x81\x74\xc8\x85\x5c\x74\x8d\xb8\x65\xe2\x38\xc7\xd2\xff\xe2\x6c\xe7\x86\x90\xa7\x04\x3b\xe7\x06\xa6\x24\xd8\x89\xe5\x59\x01\x45\x2d\x87\x8a\x02\x8a\xce\x0d\xf6\xfe\xb6\xe5\x39\xa6\x66\xe5\xd4\x39\x37\x88\x9b\x78\xa2\xd8\x68\x15\x4f\x74\x6e\x5b\xaa\x5a\x22\x42\xcc\x53\xde\x9c\x72\xa2\x9d\x2a\x6d\x4e\xd9\x7a\x20\x2b\x4d\xf0\x35\x65\xd1\x39\x37\x94\xde\x37\x07\x17\x52\xe7\xdb\x69\x7d\x91\x0f\xdf\x4a\xce\x14\x0b\x2e\x89\x72\x10\x17\xde\xf8\x2a\xfa\xf6\x63\xfe\xfd\xc6\xda\xcc\x02\x39\x16\x69\x67\x7f\xeb\x29\x9c\x73\xc3\x0c\xf0\x76\x2c\x48\x9c\x15\x8a\x3d\x3a\xb7\x2d\x1f\x6a\x73\xd5\x4c\xb4\xb4\xa4\x92\x8d\xa8\xa4\x37\x1f\x23\xe5\x9b\x43\x8d\xed\xf5\x46\x64\x46\xc1\x7a\x93\x93\x29\x90\x3c\x85\x6c\x03\x45\x17\x9d\x5b\xe6\x52\xb1\xbb\x25\xb6\x69\x45\x17\x15\x4c\xcc\x63\xf3\x82\xed\x81\x7c\x34\xf6\x80\xde\x6b\x26\xd2\xa1\x88\xa1\x03\x0f\xf6\x50\x88\xd0\xb9\xd9\x1c\x3d\x36\x36\xbf\x59\xfb\x70\xfa\x98\x81\x48\x3b\x14\x24\x74\x62\xe2\x1a\x8a\x11\x6a\xbe\x2b\xb6\x20\x23\x3b\x80\x9a\x6a\x5e\x40\xdd\xcd\x04\x94\x74\xd3\x03\xf9\xb4\x1b\xf4\xe1\x6c\x46\x4e\x86\xba\x40\x1b\x30\x3b\xd8\xda\x07\xe0\x6c\xa8\x0b\xb4\x84\x30\x68\xea\xf6\x2c\xa4\x6e\x17\x94\x86\xcc\x7f\x46\x40\x56\x10\x7c\x15\xf4\xea\x8b\x90\x0b\x7a\x4a\x1d\x4b\x3b\x8e\xb1\x1c\xf4\xe9\x58\x6c\x2c\xc7\x43\x6f\xd4\x9c\x0e\x9e\x5d\x90\x4e\x97\xfa\x01\x8d\x10\xcd\xfa\x2a\xc1\xc1\xf4\xd9\x70\x52\xb3\x66\x93\x4c\x33\x40\x8e\x1c\x60\xaa\x77\xbf\x3c\x66\x2a\x19\x3b\xc2\xe2\x99\x42\xb1\x80\x23\x90\xad\x92\x56\x89\x87\x33\xaf\xa0\x84\x0d\xa2\x6b\xea\x9e\x42\xd3\xa2\x4d\xb0\xc3\xd1\x36\xa4\x60\x5d\xa0\x5e\x97\xd9\x02\xd9\x1b\x36\xc0\x01\xd7\xb4\xb9\xd2\xd8\x31\x46\x9c\x01\x9f\xf6\x2d\x6e\x80\x8c\x86\xa6\xec\x31\xb4\x10\x3a\x9c\x8b\x25\x51\x57\x63\xbf\xc1\x09\x8c\x6f\x13\x12\xbd\x2a\x9c\xc1\xc9\x79\x16\xe4\x53\xb6\x07\x7c\x3b\x74\x87\x5e\x6c\x80\xf0\x0d\xee\x05\x9a\x72\x76\x30\xf4\xca\x1c\x29\xd4\xad\xa0\x8d\x29\x8c\xb9\x1d\x14\xa6\x9e\x04\xcd\x9c\x11\x17\xdf\x53\xc8\x48\xfd\xa9\x5f\x91\x21\x78\x65\x1c\x70\xd5\x33\x60\x73\xdd\x02\x28\xfa\x3c\x52\xc8\xba\x79\xa4\xce\xa9\x32\x2a\x3b\xe8\xf0\x3d\xe2\xc6\x62\x90\x55\xa5\xa5\xae\xb6\xa5\xf9\xe1\x50\x30\xcb\xb9\x1d\xa9\x29\x7b\xc5\xe7\x3b\x53\x8e\x95\x90\x71\x38\x4a\xea\x4a\x33\xce\x2a\x05\x76\x16\xff\x89\x4d\x1b\x07\xab\x64\x75\x76\x1c\xac\xd2\xc5\xb0\xe5\x5b\xd9\xf7\xd4\x35\x06\xa0\xce\xd1\x7a\xd1\xae\xa3\x06\xb0\x0b\x8d\xc3\x7c\xd5\x7a\xcf\x38\xfc\x90\xc3\xf9\xc3\xfc\x26\xab\xaa\xc3\xa2\xa1\x0c\x65\x63\x29\xce\x81\xb6\x20\x1f\x4a\x20\xab\x47\xe1\x5b\xa6\x52\x76\xfa\xc6\x0e\x75\x66\x96\x81\x4d\x72\x1c\x56\x2a\xd8\x2e\x8a\x41\x39\xb7\x02\xaa\x53\x86\x90\x83\x0e\x31\x44\x59\x56\x1c\x7e\x7f\x06\xe6\x3c\x14\x82\x72\x6e\x16\x81\x47\x21\xe3\xac\xc5\x99\xa1\x08\x94\x93\x50\xb9\xa1\x98\x93\x13\x1f\xda\x28\xf6\xe3\xa2\xfc\x0f\xde\x9b\xf1\x85\xd7\x05\xea\x66\x77\x4f\xa1\x22\x3e\xac\x06\x8e\x64\x5f\x81\x26\xca\x60\xbd\x1a\xa0\x11\xa2\x1d\x1b\x1c\xd2\x89\x0d\x0e\x68\x7a\xa3\x0c\xa8\x34\x0d\x89\x4a\x0b\xc3\x5c\xe4\x74\x6e\x85\x3e\x95\x38\xc9\x77\xbc\x16\x24\x32\xe4\x5c\x29\x36\x2b\x36\xd8\x5b\x41\x49\x18\xf9\xd2\x44\xc1\x1c\x78\x93\x17\x10\xb0\xd8\x74\xa4\xcc\x6c\xf2\x48\x3b\x3a\xae\x2c\xd2\x0c\x45\x99\xac\x42\xea\x2e\x3d\xe0\xdc\x0a\x63\x9e\x1a\x33\x7b\xb1\x98\x4f\xd7\x94\x79\x67\x66\xf2\xcc\x0d\x2a\x13\xe2\x07\xca\x4f\xce\x56\x05\x96\x9c\x5b\x46\xc9\xfe\xcf\x4a\x2f\x32\x38\x11\xdc\x46\x11\x13\x3f\x83\xab\x93\x12\x37\x98\x78\xb5\x70\xc6\x29\x5c\x11\xce\x6c\xd7\x1a\x15\x41\xdf\xc2\xea\xa8\xa6\x11\x18\xb3\x03\x42\x5a\x83\x7f\x56\xd8\xb6\x25\xb9\xc1\x73\x30\x6d\x0f\x68\x8b\xf2\x48\x65\xad\x1f\x67\x85\x63\x40\xc8\x03\xbc\xc0\xe9\xf9\xa3\xd7\x21\x0a\x3f\x03\x69\x68\x9f\x66\x5f\xee\xa5\x01\x9a\xa5\xc3\x66\x14\xe8\xd1\x88\x2a\x1d\xd5\x94\x00\x47\x57\xba\x96\x73\xe3\x68\xa8\xac\x7c\x4b\xa1\x79\x6d\x67\x56\x6e\xcd\x75\xf0\xb9\xb5\xff\x38\x0a\x2a\x86\xc8\xb4\xf3\x32\x02\x01\x75\x0d\x2d\xc8\x4e\x26\x97\x2f\x2d\x82\x35\x84\x9c\xea\xd5\x86\x3b\x28\x06\xe4\xdc\x60\x89\x7a\xba\xe5\xdc\x20\x4c\x9e\x6e\x41\x6e\xa9\x98\x30\x5b\x9a\xd1\xe4\x8d\x54\x5d\xdc\xf3\xfa\x34\xf3\x96\x4b\xcb\xe3\xe0\x19\x17\xb4\xe9\xe1\x67\x5c\x5a\x83\x75\x9d\x3c\x55\x7e\x00\x41\x7c\x17\xa0\xf1\xa9\x40\xc3\x83\x4e\xa1\x56\x88\x3d\x7e\xc2\x0f\xd2\x89\x04\x71\xd6\xe7\xc4\x7d\x81\x5c\xe7\x77\x5d\x72\xc6\xf2\xae\xcb\x85\x8c\x75\x42\x4f\xb0\xc4\xd3\xe7\x09\xcc\xe2\xb4\x98\x07\xd7\xf3\xc3\x2e\x85\x8d\x7b\x9a\xd4\xae\x1f\x26\x37\x59\x55\x25\x8d\xc1\x63\x4e\x53\x5a\x4b\x87\x92\x67\xae\x94\xf9\x5c\x44\x28\x39\x11\x0f\x39\x30\x14\x2f\xc2\x6d\x98\x05\x69\x9e\xa1\xa5\x53\xd7\xa1\x0e\xf6\xff\xc9\x15\x92\x91\x0f\xa7\x07\xc9\x6c\x89\xe7\x10\x31\x3d\x4e\x3f\x22\x05\xb9\x9c\xe6\x23\x99\x57\xf9\xcd\xd0\xa9\x86\x42\x3b\xca\x0e\x81\x28\x98\xa3\x10\xc0\x3e\x4e\x93\x52\x63\xca\x1d\x4d\xd4\xb2\xcc\x1c\x1f\xc8\x4f\xce\x4c\x53\x71\x2d\x8f\x0b\x0a\x01\x9f\xab\xc3\x3c\x07\xa0\xba\x81\xf0\x94\x8c\xa6\x62\x57\x1f\x97\x0e\x90\x9c\x1f\x57\xa7\xd3\x0a\xe8\xab\x5d\xe9\x44\x87\x64\x3e\x94\xaa\x56\xe1\x72\x8a\xe5\x28\x11\x96\x2e\xc4\x46\x44\x95\xcb\x6f\x9a\xd6\x23\x75\x75\xe7\x1c\x5a\xbf\x30\x24\x71\x48\xf9\x05\x16\x2c\xbd\x43\x99\x67\xce\xad\xa5\x6c\x09\x8d\x65\x0b\x02\x8e\x67\x64\x93\x28\x98\xe3\xdc\xf2\x21\xae\xd6\x1e\xd0\xae\x26\xda\x41\x18\xe9\xa0\xe7\x93\xa7\xd2\xac\xf5\x7c\x64\xf9\x0b\xee\x83\x24\xed\xc7\x5b\xb6\xe3\x03\x1a\xbd\xb4\x23\x99\x36\xd3\x2c\xf5\x7d\x64\x7e\x10\x30\x46\x3a\x31\xf7\x01\xbb\xe9\x87\x21\x02\x99\xf9\xc0\xa8\x2e\xf4\x3f\x0e\x97\x0b\xb1\x94\x13\xf5\xb2\xc9\x33\x12\xee\x65\xde\xc4\x99\xee\xa8\x90\xd6\x8e\x34\xac\xd4\x56\x57\x1a\x92\x0b\x65\x4b\x2f\xbe\x20\xc1\x48\x9c\x15\xa9\x96\x54\xf5\x71\xc2\x72\xea\x9d\x97\x73\x83\x35\x10\x31\x72\xb1\x2a\x8a\x18\x39\xb7\x1e\x48\xac\x1c\x46\xd1\x74\x09\x09\x47\xc9\x68\x56\x41\x59\x3e\xbf\x00\x33\x6a\x49\xab\xc3\x5d\xa6\xae\x4c\x1a\x7b\x20\x31\x76\x76\xb8\xf2\xe9\xac\x2f\xd3\x89\x82\xde\x91\xc1\x1a\x62\xf1\x07\xd4\xd6\x64\x13\x35\x18\x17\x73\xd9\x7c\xa9\xed\x62\x01\x9d\x51\x27\x02\x48\x83\x4c\x39\x6f\x95\x50\xe7\xc4\x50\x31\x9a\xc9\x14\x12\xe6\xcd\x97\x8a\x08\xe4\xe8\x92\x08\x07\x0a\x2e\xd9\x4b\xb4\x0c\x45\x97\x94\x23\x43\xf1\x4b\xda\x99\x03\xa7\x47\x82\xcb\x35\x5b\x42\x33\x05\x32\xa1\xb7\xf4\x2f\xca\xcb\xb1\xd3\x24\x01\xed\xd0\x73\x73\xd4\xf6\x95\x0e\x2d\xf2\x64\x54\x93\xc5\xa3\x47\xa7\x37\x68\x41\xc0\x37\x7c\x91\x22\x9a\x85\xdb\x11\xe8\xe1\xaa\x7f\x83\xe8\xdd\x9d\xc6\x19\xc6\xd6\x6d\xbf\x64\x22\xbb\xe9\xe5\x03\xb1\x22\x15\x50\x69\x82\x90\x5b\x9c\xfb\x06\x1f\xe4\xe8\x8e\xb6\x6e\x25\x85\x7a\xda\xbc\xe5\x43\x89\x05\x23\x3d\xda\x96\xd9\x80\xcc\x49\x61\x8e\x0a\x2d\x29\x0d\x5e\xd0\x45\x3d\x5b\x9a\x91\x79\x3c\x6a\x93\xc2\x47\x8e\xeb\x53\x26\xd3\x0b\x7c\xa2\x9b\x76\xa2\xd6\x75\x0b\x46\xe9\xc2\x97\x1c\xa3\xc7\xf9\x91\x98\x2d\x3a\x96\x62\x44\x0e\x2c\x69\x43\x31\x22\xfb\x01\x2f\xe8\x76\xc4\x37\x14\x83\xc4\x88\xb0\x9f\xba\xf9\x58\x94\xbc\xee\x57\xa7\x5a\x3e\x3d\x95\x4c\x10\x14\x6e\xf0\x4b\x2f\x4d\x69\x61\xc0\x96\xf7\x64\xd2\xc9\x70\xd5\x80\x3e\x12\x4a\x9a\x75\x9c\x6d\x4f\x9f\x0f\x13\x50\x30\x7a\x6a\xa6\x99\xcc\xdb\x02\x46\xfa\xd4\x38\xb3\x5e\xd3\xea\x47\x0f\xb8\x7f\x7f\xf5\x92\xb5\x9d\xbe\x4e\xdf\x03\x8a\x8b\x70\xd6\x75\xdf\x02\x88\xfa\xd1\x27\xe8\x82\x1f\x19\x4e\xe1\x4e\x8a\x3d\x69\x17\xec\xc8\x0f\xdc\x8c\x4f\x9f\xeb\xc4\xd8\x61\x31\x8e\x35\xf9\x88\x18\x0a\x36\x39\x77\xc6\xe5\x60\x93\x03\xa1\xd8\xb1\x26\xd8\xbf\x87\x42\x4d\xce\x9d\xfd\x35\xfc\xda\x63\x43\xc4\x19\xbe\xd6\x12\xed\x51\xa1\x26\x0b\xbb\x06\x38\xf4\x69\x9a\xbd\x5d\x37\x2d\x29\xc7\xef\x99\x86\x98\xe8\x74\x6a\xe9\xba\xa6\x5d\x0d\x05\x1e\x3c\x50\xfe\x0b\x43\x41\xf9\x67\x28\x43\x21\xcc\x2d\x65\x8e\xc9\x47\xe5\x18\x43\xbb\xa8\xa7\x1d\x6b\x93\x50\xd4\x90\xd4\xb5\x43\x42\x8a\x1f\x39\x63\xed\x51\x02\xa0\x73\xcf\xe4\xf9\xf4\x8d\x09\xc4\xe1\x24\xbc\x3c\xb1\xc0\xc5\x84\xf7\x4c\x89\xd3\xe7\xee\x99\xb0\xdb\xb3\x79\x01\x79\x93\xa5\xec\xd2\x7d\xd7\x7c\xa8\x98\x90\x92\x3e\x4c\xa6\x6c\xa3\xe1\x9c\xcd\x44\x07\x0d\xe2\x50\x32\x21\x32\xd0\x71\x9f\x6a\x28\xaf\xd0\xb9\x67\xd6\xa7\x22\xc6\x20\x9f\x81\xf0\x06\x36\x56\x02\xa3\x56\x0d\xa7\x8d\xe1\x38\x1b\xd0\xe1\x9e\xba\x7a\xde\x0f\xf1\x9e\x10\x95\x86\x6c\x39\x7c\xbd\x20\xba\xd1\xc8\x71\x9b\x4f\xdf\x2e\xf5\x50\x1c\x96\xf2\xd1\x9a\x6f\xbb\x1f\x39\xd3\x15\x97\x72\xee\x2c\xdf\x6d\x52\x04\x05\xe5\x0f\xe2\xad\xe5\x05\x75\x95\x15\x20\x51\xde\xfe\xe3\xdb\x3a\xe3\xe6\xc2\x28\x07\x98\x52\x0d\x9d\x3b\x73\xe0\x80\x96\x86\x3f\x63\xdc\x4e\x26\x8e\x90\x7c\x3b\xca\xa9\x9d\x01\x75\xba\x7d\xaa\xea\x05\xcc\x2b\x65\xc6\x8e\x51\x41\x86\xe0\x6a\xba\x43\x36\xb9\x2d\xdf\x47\x10\xbf\x6d\x1b\x84\x1d\x29\x0f\x51\x89\xfd\xf4\xf6\xad\x28\x62\xb0\x86\x62\x58\x6a\xcc\x5e\xb7\xe3\xe2\x38\x78\x6e\xc7\x2d\xb5\x33\xa0\x94\x33\x44\x54\x1e\x37\x6a\x68\xd7\xb7\xaf\xa3\xc0\x45\xc8\x2c\x54\xa1\xad\x5b\x8e\x99\x48\x6b\x37\x14\x83\x10\xaf\x64\x42\xe7\x1e\x0c\xa6\xd6\x00\x79\x5a\x01\x2e\x6b\x9a\x53\xf5\xa1\xc2\x60\xa0\x49\xff\x34\xf3\x16\x02\x5e\xe6\xe9\xfc\x52\x15\x56\x30\xcd\xb8\x90\x13\xfe\x5f\xc6\xce\xe5\xea\x62\x54\x57\xc2\xa9\x9c\x10\xb6\x8d\x79\x4d\x3a\x17\xd8\x8f\xfc\x43\xb8\xcb\x55\x5f\xb9\xef\xec\xef\xa1\x16\x18\x30\x08\x49\x88\x42\xda\xe6\x08\x58\xdd\x21\x89\x0a\xf7\x8a\x73\xfb\xf9\x52\x4d\xe1\xf0\x6c\x1d\x90\x1e\x5d\x28\x73\x2c\x43\x07\xd6\x12\xb3\x73\x0f\xb2\x8a\x51\xd9\xd7\xc8\xe1\x51\x21\x52\xea\x91\xba\x02\x9d\xc4\x03\x23\xd0\x49\x3d\x9e\x9a\xcc\x41\x81\x54\xc4\xad\x87\x92\xc7\x0e\xf5\xbb\xc3\x06\xe6\x0a\x61\x50\xea\xf1\x50\xea\x11\xbb\x6e\x3b\xa0\x20\x40\xfc\xa9\xcc\x46\x15\x2c\xc2\x24\xb2\x50\x0c\x4d\x00\x2a\x80\xe4\xe6\xb6\xd9\x1e\x0b\x71\x5b\x54\xa0\x36\xb7\x0d\xf5\xa7\xac\x48\x71\x33\x02\x9b\xe9\xb8\x4d\x04\x42\xa9\x07\xa2\x4a\xb0\x93\x7a\x60\xe3\x28\xd2\xd0\x99\xf3\xa9\x82\x09\x9d\xb1\x46\xb6\x63\x32\x8f\x94\x6d\xe9\x48\x46\x2a\x98\x5b\x79\xda\x94\xa7\xaf\x66\x64\x4a\x78\xcc\xbe\x13\x58\xe5\x04\x14\x38\xdf\xd6\x73\x28\xb6\xf7\x80\xb5\x27\x64\xf9\xe7\x7f\x17\xaf\xe6\xe6\xdb\xc7\x48\xb0\x73\xd3\x60\x95\xa3\x97\x94\x0a\x78\x8c\x84\x7b\xfb\xbd\x52\x4b\xd5\xad\xa3\x46\xba\xfc\x28\xe0\xc2\x80\x92\x55\x30\x42\x49\x71\x60\x15\xbc\x91\x18\x69\xd4\x21\xaa\x1a\xfb\xf9\x4d\x22\x97\x0e\x25\xf0\xd8\xf3\xa5\x97\xbc\x41\x75\x05\x3d\x62\x34\x76\x1e\xf4\x0c\x47\x49\xd0\x62\xe6\xbf\x7d\x13\x11\x5b\xe8\xed\x10\x86\x47\x5a\xd5\xbe\x2b\xe9\x51\xef\x98\xf2\x21\x4a\x8e\x15\x70\x62\xa8\x23\xa6\xab\x33\x43\x4d\x87\xcc\xbd\x49\x5d\x18\xe4\x47\x9c\xcd\x31\x7f\x29\x27\x76\x74\x83\xb3\x46\x45\x62\x3c\xf0\x17\x28\x0d\xe7\xfa\xfb\x71\xfc\x4c\xc8\x1f\x46\x4e\x3c\xf1\xfc\x96\x84\x54\x0c\x8d\x37\x77\x50\x48\x3b\xc1\x66\xea\xf1\x50\x62\x56\x34\xe0\xdb\x02\xec\x4a\x33\x4b\xf7\x96\xf0\x8e\xc3\xa7\xb0\x01\x1c\xe2\xe7\x88\x79\xfe\xb6\xad\xc5\x6c\x7c\x2c\xa3\xf0\x89\x28\x2f\xd5\x51\xc2\xae\x1f\x5f\x82\xc4\xe6\x15\x66\xa6\x66\xd1\x3f\xbc\x38\x67\x63\x7d\x22\xb3\x52\x57\xce\x0c\x84\xe6\x07\x93\xe9\xc8\xa7\x16\xf1\x2d\x9f\xea\xf9\xcb\x95\x4e\xf5\x84\x2e\x65\xf6\x7e\x21\x4d\x14\xf1\xe7\x1c\x19\xed\xcd\x93\xcf\xed\xe3\x87\x23\x24\x86\xeb\x07\x4f\xc7\x53\xb7\xd9\x5d\xc0\x6f\xeb\xd0\x78\xa0\x00\x05\x8a\x29\xcf\x24\x70\x03\xc6\x21\xe5\x63\xc6\xbb\x32\x02\x3f\xe4\xa6\xcc\xb2\x0e\x7b\x40\xd1\x80\x4e\x1e\xd7\x4d\x45\x03\x2a\x23\xbf\xec\xec\x03\x4f\x99\x30\x9c\x1c\xfd\x14\xd2\xa7\x1e\x35\x35\xd9\x05\x21\xe5\x44\xc7\xa7\xf8\x71\x82\xec\xb8\x23\x15\xd4\xa7\x14\x14\xde\xc7\x32\x11\x25\x22\x64\x4d\x39\x7a\x28\x1d\xb7\x51\x86\x0a\xe9\x53\x5f\x99\x39\x07\xe9\xed\x3d\x85\xba\x3e\xcf\x72\x38\x0c\x55\x3c\x6a\x82\xd9\x94\x72\xe6\x4b\xdb\x76\x47\x06\x20\x4d\x89\xf3\xf8\xe3\x94\xb4\x1c\x9a\x05\xa4\x29\xb9\x14\xfb\x46\x53\x56\x48\x47\x77\x9e\x29\xb5\xd6\xc2\x10\x55\x6c\x9e\x9a\x1b\x87\xaf\x63\x31\xd2\xec\xd7\xba\x11\xf1\xa2\xf0\x3b\xf5\x40\x84\x0a\x38\x53\x09\x93\x31\xc9\x53\x15\x53\xfc\x1b\x45\x49\x97\x7e\xc8\xc0\x01\xe9\xeb\x70\x7d\xb9\x4c\xfa\x22\x0b\xb1\xdb\x93\xd4\x6a\xa6\xd4\x81\x3d\x69\x97\xe3\x27\x36\x80\xe3\xf1\x44\xfb\x7c\x89\xb0\xc1\xf9\xc9\x69\xac\x8e\xce\x54\x3b\x8f\x55\xa4\xd8\x37\x1a\x38\xed\xca\x49\x54\x33\x5c\x39\x89\x30\x58\x1c\x9d\x27\xce\x2f\xe1\x6a\x6a\xcc\x39\xe3\x6a\xb2\x42\x5f\x2e\xe1\xaf\x54\xd5\x8e\x6e\x69\xc6\x73\xc9\x58\x9d\x9f\x94\x1d\xfc\xc5\x77\x91\x1e\x37\x13\x44\xb3\x38\x2f\x30\x51\x14\x71\xa7\x1e\x6c\x20\x01\x64\x6a\x36\xf4\x17\x11\x57\xd3\x90\x93\x57\xa5\xaa\x44\x5c\x4b\x9f\x12\x71\x2d\x7d\x68\x74\x59\x21\x69\xe0\x6b\xa6\x43\x9b\xed\xc8\x2d\x92\x55\x61\xad\x18\x4b\xc3\x43\xf1\xe9\x5c\x55\x47\xff\x3b\x91\xce\x5d\xd7\xf7\xd0\x9c\xba\x84\xbb\x29\x71\xdf\x80\xbb\xc9\x31\xc7\xb8\x9b\xe3\xa9\x6a\x97\x08\x4b\xf2\x1b\x2c\x74\xc6\xa0\x18\x5e\x3d\x94\x04\xcc\x43\x69\x4b\x23\xc5\x8c\xc2\x89\xab\xcb\x28\x9c\x8a\xf0\xf9\x85\x2b\x27\xa4\xd0\x67\xe8\x15\xe5\xb2\x3a\x4b\xfa\x77\xa0\x97\x88\x63\x25\xaf\x2a\xb9\xd6\xf9\xf9\x62\x09\x60\xf0\x04\xb0\xd3\x42\xf9\xb8\xc4\x39\xf4\x87\x8a\xbe\x32\x04\x9d\x07\xb0\x67\x7e\x96\x94\x88\x91\x9f\xaf\x9d\xa3\x4c\x7f\x3e\x6a\xb2\x85\x7e\x3e\x5b\xb2\x89\x7f\xb8\x44\xe0\x26\x25\xb0\xaa\x47\xc6\x6e\xae\x6c\xa1\xb4\xa7\x33\x3d\xd6\xc2\xc8\x38\xe5\xa8\xaa\x47\x46\x1e\x8e\xe5\x2f\xa5\x85\x83\x5c\x21\x52\x50\x0e\x4b\x42\xf6\x94\xe8\x15\x67\xac\x3a\x67\xca\x88\xcf\x0e\xe5\xa1\x86\xd3\x1c\x95\x8f\x27\xf0\xf3\xb7\x99\x4a\x26\x44\xf0\x83\x38\x40\x15\x45\xe8\x7c\x3d\xcd\xea\xaa\x94\x77\x95\x53\xf9\xac\x4a\x24\xc1\xcf\x81\x3d\x2c\x52\xd6\xcb\x37\x0c\xdc\xe3\x2c\x25\xb4\x2a\x5c\x46\x2e\x25\xb4\x2a\xa7\xfb\x58\xca\x67\x75\x9c\x35\x1f\x56\xb9\x5c\xba\x29\x0e\x88\x9d\x66\xe0\x17\x9a\xe1\xa0\x60\xb3\x75\x39\x67\x14\x88\xae\xe5\x38\x41\x8e\x46\x76\x53\xe6\x6d\x9f\xba\xd6\x0b\x21\x66\x11\xbc\x5e\xbe\x0b\xe0\x85\xea\x7a\x99\x27\x46\x7a\xb1\xfb\x7a\x30\x04\xc7\x11\x9b\x8c\xcf\x78\xa1\x49\x9f\x7e\x58\xc5\x49\x6f\x39\x6a\xcf\xbc\x32\x3e\x33\xc5\x08\x25\x44\xf6\xa4\x13\x5d\x05\x1c\x23\xed\xd8\xf4\x38\xd3\xa5\x95\x7b\xe6\xc4\x0f\x01\x79\xb5\xbc\x94\x07\xaa\x1e\xf9\x33\x60\x28\x83\xd9\x14\x5b\x60\xaa\xad\x57\xc2\x91\x43\x4d\x39\x2b\xe9\x04\x1f\x43\x06\x94\x64\x3e\x50\xb2\x23\x9f\x66\xec\x3d\x9a\x21\x19\x8f\x1b\x52\x70\xa0\x7a\xf8\xf4\xbd\x14\x1b\xe8\x20\x16\xc4\x12\xb0\xe8\x20\x20\xc7\x52\x6c\xa0\x82\x74\x5c\xc7\x90\xff\x71\x86\xb2\x23\x8c\xf5\x3b\x2c\xa9\x46\x9a\x11\x1e\xbc\xa5\xcc\xf6\xf9\x4c\x8f\xf6\x83\x59\x3c\x2f\x62\x03\x39\x28\xdc\x4d\x6a\xf7\x8f\x50\x5e\x69\x46\x6e\x66\x2b\xb4\x63\x37\x58\xbe\x9b\x3a\xb5\x67\x38\xd3\x2f\xc5\x07\x94\x00\x17\x85\x0e\xc1\x37\xe4\x47\xc0\x37\xcc\x3f\xb3\xc8\xdf\x75\xed\x4e\xab\x69\xd7\x0c\x33\xa1\x6c\xb7\x9c\x21\x89\x38\x06\xf5\xd1\x56\x0c\xa5\x15\xc9\x6c\xe9\x7a\xfc\x60\x61\x85\x70\x2a\xd7\x43\xb1\xea\xf4\xb8\x58\x59\xfa\x40\x45\x16\x2a\x4b\x29\x9e\x2f\xe6\x60\xfb\x78\x57\xe8\xc5\x4a\xf1\xa1\x24\x0e\x67\x28\x6f\xb7\x2c\x98\x0c\x7f\x72\xff\xdd\xa4\xcf\xd0\x8d\xc1\xfb\x6a\xc0\x51\xea\x6e\xf2\xab\x4e\x19\xa0\x0f\x02\x2c\x83\x82\x07\x15\x5e\x09\x2c\x05\x0f\xba\x3f\x3c\x20\xfd\xdb\x13\xca\xce\x1c\x16\x57\x50\xa9\x52\xae\x14\x36\x6f\xd4\x14\x7a\x19\x2c\x94\x97\xa2\x00\x55\x27\xa3\xbf\xa9\xaf\xe4\x63\x83\xf2\x78\xa8\x69\x06\x02\xd8\xb5\x4e\xfb\xff\xaf\x14\x4a\x7d\x4c\x3e\x74\x2c\x75\x87\x9e\xbb\x49\xdf\x0c\x76\x06\xa4\x1b\xa1\x83\x55\x39\x27\x33\x12\x52\x2c\x8c\x04\x3a\xed\x3a\x85\xf9\x15\xf4\xa7\x9e\x2f\xba\x44\x9d\xd9\x8c\x59\x8e\x01\xc4\x8d\xfd\x22\x87\xd5\xcc\x60\x17\xcb\x99\x4f\x95\xce\xf9\x4a\xa1\x00\xca\x48\x03\x61\xaa\xca\x7c\xca\x58\x5c\x7e\x6c\x79\x74\xe9\xd2\x06\x6c\x63\xb0\xcb\x31\x71\x69\xc7\xda\xee\xc5\x3f\x4b\xd9\x71\x03\xbb\xce\xb0\x1e\xed\xd8\x3a\x1b\x29\x94\xf1\x3f\x90\x47\x0a\xfa\x53\xcf\x4c\xa5\x8d\xff\xfc\xa5\x2c\xb0\x33\x3c\x21\x6c\xcd\xf9\x4a\xa3\xdb\xcd\xf0\x23\xc4\xfc\xf1\x7f\x14\xdb\x51\xc4\x1e\x58\x06\x55\x81\x72\x59\xc5\xd2\x89\x83\xd2\x52\x58\x9f\x7a\x32\x56\x05\xf2\x19\xc4\xfc\x58\x82\x58\x95\x3e\x43\x69\x00\x28\x30\xc7\xf8\x01\x84\xb3\x8a\x25\x15\xa1\x1a\x56\x31\xdb\x3d\x5d\xc8\x69\x07\xf7\x18\x7d\x45\x16\xcc\x9b\x64\x9d\xf9\x52\x18\xfa\x96\xb1\x1a\xbe\xe3\xb0\xc8\x37\xa9\x4d\x9c\x4e\x84\xb6\xc0\x26\x5f\xc5\x58\x9e\x48\x32\x41\xb3\xaa\xe3\x72\xde\x94\x92\x72\x32\x59\x04\x12\x22\x02\xc6\x72\x20\xa1\xf9\xb4\xf3\xd3\x4c\xd2\x8c\x79\x12\x61\xa9\x70\x40\x15\xe4\xcc\x32\x88\xeb\x3c\x43\xa9\xc3\xb4\xe9\xb0\x08\xbc\x87\x58\xc5\x6f\xc1\x1c\xc0\xf8\x26\x8d\x25\x42\xd7\x1a\xc5\xd5\x41\xbb\x2e\xc3\xb8\xc8\xe7\x79\x93\x8e\x25\x12\xea\xa7\x4e\xa1\x64\x56\x01\x28\x5f\x25\xa6\x3e\x23\xc2\x74\xea\x7f\xdf\x53\x2e\xe3\xb8\x3a\xa8\x8e\x55\xcc\x79\x67\xda\x95\xb3\xe3\xe9\x13\xce\x4b\x55\xeb\x7b\x76\x54\xb1\xb6\x75\xd0\xe2\xb6\x1c\x2f\x88\xeb\xe1\x25\x20\x57\x3d\xd9\x34\x17\x5c\x7a\xa6\xaa\x16\x97\x11\x08\xd5\x75\xc4\x8e\xb9\xb8\x4b\x42\xdd\x5e\x83\xd1\x86\xf4\xea\x1e\x50\xde\xd3\x3d\x7d\x2e\x8b\x8a\xb4\x2b\x8f\x13\x86\x8c\xa2\x09\xd5\xf3\x48\x55\x3f\xca\x0b\x75\x5b\x88\x60\xf4\x96\x70\x65\xf5\x7c\x51\x66\x2f\x09\x07\x95\x75\x19\xad\xdf\x52\x57\x57\xed\x27\xcb\x79\xe1\xc9\x43\x94\x5e\x9c\x57\x11\xfc\x97\x9f\xac\x12\xd1\x6d\x5d\x7e\x97\x98\x29\x91\x8b\xf8\x2c\x69\x48\x4a\x74\xa4\x4f\xa7\xd4\x87\x32\x67\x22\x00\x05\x31\xab\xc0\x53\x97\x21\x66\x67\x09\xe5\x5d\x43\x7f\x3a\x90\xf2\x0a\x6f\x5d\xce\x5d\x8b\xca\x34\xc0\xec\x44\x2b\x2a\x90\x50\x05\x22\xb4\xae\xe4\x5d\x64\x29\xb9\x09\xc0\x6e\x51\x5c\xa1\x72\x96\xd4\xb5\x74\xbe\x58\x2d\x39\xd9\x9c\xb1\xee\xa6\xb0\x33\x53\x57\x8c\x97\xb9\xc2\xdd\x71\x31\x58\x01\x08\xcf\x87\x92\x3c\xf6\x59\x7a\x55\x07\x82\x27\xa4\xca\x22\x3c\x10\xc7\xa8\x45\x78\x20\xc2\x2a\x2e\x63\xc3\x1a\xa1\x52\x96\x42\x00\x15\x9c\xe4\xab\xe2\xb7\xc0\x02\x51\xf0\x9e\x52\xd3\x8d\x25\xd0\x95\x32\x05\x31\x66\xec\x95\x43\x1f\xbb\x51\xb8\xad\x7a\x3e\x94\x1f\xbf\x14\x28\x04\x00\xe3\xd1\x9d\x79\xe6\xcb\x10\x2f\xde\x54\x2e\x43\xbc\x08\x5e\xb4\xaa\xd3\xfd\xa1\x20\xaa\x57\x1d\x4b\xa0\x1a\x62\x8a\x20\x75\x40\xa0\x2b\x47\x0a\x47\x04\x6a\x04\x5f\x59\x15\x1f\x6d\x7e\x8b\x03\x21\xdb\x42\x31\x81\x46\x4e\x06\xd5\xcf\x01\x88\xec\xb8\xaa\xd9\x22\x7f\x22\xe3\xff\xbc\x52\x66\x49\x56\x32\x3e\x27\x88\x4d\x3b\xfa\x93\x2b\x1f\x2a\x2d\xd0\x33\x02\x74\x66\xfe\x45\x07\xc4\x92\xbf\xb6\xf1\x06\x03\x55\x03\x7f\xd2\x87\xac\xb5\x13\xb1\x6f\x20\xd9\x59\xd2\x8a\x96\x80\x0d\x0d\xac\x8c\x98\x94\xab\x62\xba\x8d\xb4\xaa\xa8\xa9\x88\x64\x07\x0c\xe2\x0d\xd8\xaa\xb6\xe3\xae\x7c\xa8\xc3\x22\x97\xb1\xab\x39\x68\x3b\x8f\x1c\x56\xb3\x8c\xe3\xdc\xd4\x0c\x11\x42\x90\x36\xc7\x62\x88\x55\x25\xc8\x59\x07\xfe\xb5\x9a\xc1\x19\xfd\x21\xbf\x8a\x5c\x38\xff\x16\xde\x42\xa0\x55\xe2\x70\x2e\x23\xd0\x3a\x41\x4c\x97\x82\x0b\x3d\x76\x42\xb3\xce\xec\xa1\xbc\x2d\x50\xfe\x0e\x2e\x54\x31\x5e\x9d\xfa\x2c\x8c\xdf\xcc\xa2\x30\x5e\xb3\x5a\xec\x94\x61\xaa\x21\x99\x1c\x2f\xa8\x11\xbc\x67\x35\xe7\x1c\x6c\x99\x11\xeb\xc9\x96\xba\xde\xfe\x2d\xed\x7a\x5f\xb4\xd4\xf5\x2a\xc0\x6b\xcd\x0c\x84\x7a\x6b\xf6\x97\xf1\x4c\x7b\x91\x17\x2d\xc6\x6d\x13\xd8\x07\x74\xd1\x12\xb0\xac\x72\xdd\xb7\x9a\xd9\xa9\xe7\x43\x6f\xdb\xa7\x90\x50\x7d\x8c\x3e\x4c\xc3\x78\x85\x04\x3a\x31\x4a\x1b\xe6\x7e\x49\x5d\x8d\x2f\x33\x26\x73\x1f\x38\xcb\xea\x83\xe1\x4d\x48\x73\xc9\x80\x92\x84\xc6\x0a\xed\x91\x5d\xa9\xda\xff\xf9\x5f\x07\x4a\xb2\x3a\xf6\x3d\x67\xa0\x6e\x9b\x8c\x39\x70\x2a\x36\x1e\x89\x2e\x61\xc5\x7a\x87\xd9\xba\x01\xf1\xcf\x77\x1e\xea\x01\xf5\xf3\x8a\xf1\xe1\xd4\xea\xa2\x92\xc8\xcb\x46\x24\xd3\xa5\x4c\x6c\x35\x1e\x0f\x61\xc3\x0a\x77\x12\x4b\xd0\xb0\xc2\xf5\xc5\xea\x96\x63\xec\xa1\x6e\x39\x86\x5d\x20\x64\xd8\xa8\x98\xb6\x46\x86\xf5\x91\xa1\x46\x38\x85\x14\xc7\x20\x9b\xba\x75\x54\xa6\xc3\x98\x68\x22\x02\xad\xbe\x0c\xdb\x40\xce\x77\x0b\x27\x96\x52\xe0\xb0\xca\xab\xe7\x45\xca\x34\x1e\xb0\xae\x6e\x0e\x41\xe8\xf7\xcd\x80\x58\x3c\x6c\x76\x84\x93\x43\x14\x35\x22\x3e\xad\xbe\xd9\xd5\x21\x25\x74\xd0\x3c\x82\x8e\x15\x30\xe5\xcb\x79\xd2\xe2\x7c\x20\x4f\x1a\x61\x3c\x57\x37\xc3\x60\x18\x0c\x40\x39\x1c\x17\x87\x7d\x52\xe0\x90\x97\x90\x64\xf5\xc4\xc6\x21\xf4\x50\xbc\x08\x43\xfe\xfb\x73\x84\x12\x8b\xc0\x4d\x4a\x9b\x16\xf7\xe2\x1a\xb6\x7f\x58\x3e\x21\xc0\x0e\x12\x2f\xb7\x35\x58\x78\x04\xdb\xb0\x55\x03\x03\x0d\xb3\x41\x7a\xb4\x5a\x44\x00\x10\x5e\x88\xf7\x39\x6b\xe8\x7c\x08\x66\x68\x29\xa5\x5a\x89\x6e\x19\x7e\x2a\x45\x34\xd0\xa5\x68\x43\xf5\xec\x69\xe7\xe3\xc2\x74\x22\x0e\x42\x5e\x1b\x3b\x06\xb2\x6e\x11\x5f\x28\x1e\x0f\x81\xc7\x4a\x0e\xa8\xc2\x8e\x55\xf0\x9e\x6b\xd8\x1c\xca\xbc\xfa\xa9\x6b\x3c\x1e\x03\xbb\x9d\x3d\xec\xf0\x42\x23\x4b\x62\xee\x3a\x52\xd5\xc6\x09\x3f\x69\xd9\x84\xf2\x15\xc4\x6b\xd4\xd7\xdf\xd1\x4d\xd6\xf0\x9b\x6b\xb0\xa9\x4b\xa9\xd9\x4e\xb0\x75\x6b\xd8\x56\xe2\x00\x16\xf8\x17\x07\x29\x45\x1e\xaa\x60\xe9\x96\xc1\x60\x3c\x7f\x59\xc6\x82\x71\xd3\xbc\x86\x01\x16\x33\x23\xf7\x83\xff\x92\xc2\xaf\x07\xc0\x84\x18\xf1\x4a\x18\xda\x65\x88\xd7\xc9\xbc\x4e\xae\xc5\x91\x37\x82\x78\x8d\xfa\x4a\xa1\xf6\x29\xd2\x47\x78\xaf\xca\xa3\xef\x45\x52\xb7\x98\x4a\xd3\x2f\xae\x01\x34\xae\xe9\x38\xfb\x9c\x2c\x01\x78\x71\xbd\xbe\x08\x18\x44\x40\xbe\xa5\x10\x41\x47\xe5\xb9\xdf\x9a\x5c\x3b\xa2\x4f\x88\x11\xd4\xd2\xb0\xef\x7f\xf8\x53\x41\xbc\x6a\x79\xa5\x21\xaf\xdf\xf3\xa5\x6f\xb8\x3d\x45\xce\xe3\x96\x53\xf1\x84\x81\x18\x90\x41\xd3\x3c\xb8\x5d\x82\x66\xd5\xf2\x0a\x65\x7b\x1e\x46\x98\x1c\xfc\x66\xc8\xad\x09\x63\x52\x22\x82\x98\x31\x8b\x20\x56\xd7\x68\xac\x0a\xd3\x4e\xdb\x35\x69\x06\xa5\x54\xf3\xe1\x57\x55\xf3\xa1\x76\x31\xba\x59\x10\xaa\x93\x58\x3e\x6b\xf9\x25\x4d\x7c\x64\x4e\xc1\x46\x02\xed\x9b\xbc\xf4\x27\x29\xb4\x6f\xbd\x85\xf4\xb1\x0f\xa1\x2c\x68\x54\x2d\x98\x93\x0b\x20\x32\x55\xa5\x3f\x0a\xe3\x59\x1c\x8e\x32\x20\x3b\x1c\x09\x82\xb7\x84\x85\xaa\x44\x5d\x5e\xcb\x8f\xee\xe2\x84\x52\x58\x9e\x0a\x08\x75\x09\xef\x54\x0b\x66\xc5\x32\x3e\x94\x20\xb6\x6b\x61\x74\x1c\x29\xbd\x85\x1e\x6f\xdc\x96\x93\xa7\xf5\x91\xff\xd4\x9d\x46\x39\xd2\xac\x9d\x74\x0c\x0f\xab\x22\xa3\x95\xef\xa6\xa4\x55\x67\x23\x1f\x2c\x8a\x31\x4d\x25\x7f\x22\xd3\x00\xc8\xf0\x72\x7e\xb4\x4e\xa8\xc1\x65\x68\xd2\x89\xe0\x57\x9c\x9e\x5a\x38\x76\x2a\x77\x5a\x8d\x58\x21\x77\x1a\x01\x0c\x17\xe8\xa3\xf8\xcf\x36\x5e\x3a\xc4\x9e\x02\xe7\xd4\xc2\x59\x4a\xa1\x72\x2e\x1e\x7c\xad\xed\xfb\x79\xc2\x96\x2d\xc3\x8d\xca\x99\x42\x81\x43\x51\x7e\xdb\xef\xc2\xc1\xf7\xae\x8d\xdc\x45\x08\x29\xcb\x59\x2d\xf8\x47\x84\x3e\xaa\x44\x75\x5a\x1b\x3d\xde\xa1\x2e\x51\x8c\xd5\xcf\x48\xb8\xe3\x5d\xc2\x22\x15\x62\xec\xac\xcd\x02\xa5\x8c\x01\x30\x23\x7e\x37\x1c\x1f\x99\x71\x42\xaf\x03\x25\x21\x68\x50\x8d\x8e\xdf\x9e\xf6\x33\x5f\x7a\xba\x8e\x54\xe5\x4f\x5c\xf7\xed\xbb\xc8\xb8\x2e\x1c\xa0\x66\x46\xd8\x2a\x40\x4d\x21\x0a\xdf\x12\x02\xa8\x96\xf3\xef\x50\x27\xeb\x6d\x8f\x43\xdc\x6d\x6f\x2b\xdc\xa7\x4f\xf3\x1e\x96\x85\x60\x3e\xb5\x70\x96\x32\x74\x27\x8e\xe7\xb7\xdd\xed\x60\x7f\x97\x83\xcc\xb4\x38\xa6\x04\xcf\x39\x72\xb4\x71\xc2\x2e\xf2\xa7\xdf\xa4\x56\x25\x63\x17\x92\x3a\x7a\x53\xe9\xbb\xce\xf3\xa1\x64\xda\xa0\x27\xde\xe0\x04\xd1\x70\x4e\xc9\x15\xc6\x7c\x1b\x1c\x1d\x4f\xa1\xa3\xd3\x24\x1c\xeb\x7a\xfb\xed\x21\x91\xef\xd6\xdb\x4f\xbf\x07\x2a\x47\xf1\x69\x4a\x4c\xa4\x37\x2e\x80\xcc\x89\x3d\x53\x71\xc0\x19\x68\x53\x10\xb6\x06\xda\x14\x5c\x19\x0a\x5d\x53\x89\xa9\xb1\x0c\xbb\xe1\x5a\x75\x39\xef\xd6\x04\xf9\xbe\x8c\xc2\xe9\x9c\xd2\xde\x0e\xee\x99\x89\xe6\x91\x38\xbc\xf8\xf1\x96\xc3\xa4\x75\x6c\x1a\xb2\xdf\xdf\xa4\x87\x33\xa1\x34\x00\xe6\x8b\x54\x5a\x63\xa4\xd0\x20\x81\x01\xa5\x13\x1c\xd1\x4f\x97\x63\xd3\x94\x68\xdd\x8f\xa5\x22\xc3\x23\x1a\x0d\x41\x2d\x96\xa3\xd1\xd4\x12\x4a\x82\x98\x8d\xfc\x41\xa7\x8d\x14\x3a\x56\x08\x86\x98\x91\x35\x05\xe3\x53\xd1\x67\x6a\xb9\xd2\x25\x03\x4a\x9f\x62\x12\xfc\x27\x1f\xe7\x37\xe6\x9d\xdb\x12\x98\xa6\x16\x2c\x5e\x81\x69\xce\x38\x69\x94\x5a\xeb\xcc\xd9\x5c\x99\xb5\x4e\xde\xb5\x2d\x12\x6b\x11\x10\x6d\x39\xb1\x16\xe1\x60\xd7\xc7\xef\x38\x66\x06\xe0\x0c\xf3\x25\x85\x4a\xfd\xd8\x43\x99\xbb\x58\x5b\x62\xda\x00\xbd\x5d\x0e\x62\x13\xe0\xf2\x72\x72\xad\xb8\x12\x3e\x88\x0b\x84\x89\xd3\x69\x95\x1c\xec\x3f\x7e\x45\x84\x44\x10\xf6\xe6\xe2\xc1\xf5\x32\xf4\xa6\x83\x3c\x5d\x1f\xc7\x8d\x20\xbe\xcc\xfa\xa0\x66\x67\xba\x51\x66\xde\xfc\x8b\xac\xf5\x78\x28\x84\xaf\xa9\x44\x42\x5f\x86\xd7\xf4\x78\x94\xbe\xbc\x13\xc2\x20\xff\x9a\xf9\x6a\x28\xad\x35\xb2\xcd\x69\xb1\x0e\x02\x23\xad\xaf\x32\x20\xf3\x18\x73\x09\x7b\x73\x12\xd0\x61\x29\x6a\xcd\x59\xce\x50\xc6\xf4\xa6\x47\x69\x67\x56\x41\x80\x99\x0a\x94\x65\x19\x30\xc3\xcb\xbb\xf5\x75\xe0\x73\x00\x56\x4b\x80\x99\x0a\x70\x7a\x19\x12\xd3\x73\xbc\xfb\x5a\x11\x60\x19\x0a\xda\x52\xc3\xfb\x5f\x64\x05\xce\x95\x2f\xe7\x32\x56\xf3\x6b\x8c\x55\x7c\x12\x8a\xef\x72\x97\x32\x3e\xdf\xdc\x81\x46\x5a\x02\xc2\x54\xb2\x19\xac\x2f\xef\x96\x91\x50\x02\xc2\x54\xc2\xd1\x2f\xe1\x60\x2a\xf9\x0a\x96\x61\x30\x44\x8a\x5f\x82\xc1\x1c\xb7\x76\xfe\x53\x80\x0b\x23\x73\xce\xac\x81\xc5\x11\xfc\xfd\xe5\x25\x6b\x1a\xf5\x93\x66\x56\x5d\xf8\x2b\xb0\x23\x8b\x70\x33\x80\x8d\xd6\x17\xbb\x7a\xe4\x4b\xdd\x2b\x30\x3f\x42\xcc\x5c\x15\x53\x4b\xd0\x96\x84\xd2\x5d\x46\xb6\xe4\x0e\x46\x39\xa8\x2a\x11\xc1\x97\x53\x50\x5d\xa0\x23\x96\x73\x50\xc5\xb5\xfc\xf3\x7b\x9e\x12\xea\xe7\x8d\x49\x55\x5d\xac\xc4\x9b\x2b\xf0\x4a\x05\x50\xbb\x04\x5e\x29\xf9\x2b\xc5\x93\x19\xcf\xd8\x26\x5b\xb8\x42\x0e\x41\x69\xd2\x8c\x76\x48\xee\xe1\x04\x5e\x29\x64\xb7\x58\x3f\x8b\x1b\x0c\x19\x92\x59\xf1\x8a\x73\xfd\x78\x7f\x8a\x69\xae\x8c\x54\x95\x10\xdc\xcb\xa0\x93\x92\x4e\xcc\x1e\x44\xdd\x5e\x46\x9d\x00\x86\x5e\x82\x99\xdc\xcd\x36\x48\xfd\x17\x1a\xdd\x68\x91\xc9\x8b\x8f\x65\xb4\xc8\xe4\x8d\xc7\x32\xe8\xa3\x11\xf8\x77\xbf\x7c\x05\x8b\x07\x79\x1b\xd9\x31\x9d\x22\xf0\x26\x6d\x5f\x7a\x9f\xec\x97\x4f\x37\x3d\x75\x69\xf8\x84\x64\x56\x52\xd7\xcf\xf2\xbd\xfd\xf7\x6b\xf0\x3b\x03\x52\xa2\xec\xa4\x90\xcb\xb1\xc1\xa7\x7a\x5b\x0a\x0e\x6e\xbf\xd0\x19\xd6\x4c\xfb\xc5\x2b\x3d\xda\x31\x2c\x04\x37\xcd\x7e\x59\x11\xf4\x54\xf5\xa5\xfa\xc5\xcf\xe8\x08\x5c\xf2\x6b\xde\xc8\x83\x0f\x09\x16\x61\xb6\xdd\x2f\x04\xaf\x35\xca\x26\xd3\x12\xef\x47\xb7\x21\x1a\x3c\x81\xda\x2f\xb4\xfc\xa0\x53\xf9\x45\x3a\x5e\xa5\xfd\xda\xbe\xbc\x0f\xa5\xac\x50\x8d\x4e\x1d\x91\xae\x3c\x55\xad\x0b\x2e\xa6\x57\x58\x9d\xeb\x60\x4e\xf4\x04\xc0\x69\x5c\xdb\x16\x62\xa3\xbc\xe8\xf2\x70\x42\x8a\x1e\x4a\x77\x02\x35\x94\xcf\x9c\x66\xc0\x4d\x64\x18\x5c\x3c\xfb\x30\x44\x96\xb8\xdd\x5b\xe0\x8a\x72\x59\xf0\x6e\x02\xc5\x10\xab\x64\x0b\x6b\x71\xe2\xae\xdb\x09\x14\x33\x42\xc2\x37\xb4\x6b\xd9\xcb\xda\x1b\x50\xe1\x84\x6e\x37\xe5\x13\xd6\xa4\x4f\xbf\x39\x7a\xa5\x9d\xed\x01\xa5\xee\x5b\x7f\x9d\xaa\xca\x3d\xe7\x3d\xb0\x0f\xcb\xe5\x91\x9a\x7a\xc7\xf7\x62\x7e\x9c\x51\xae\xf1\x9d\x0f\xb2\xac\xad\xf3\x30\x75\x42\x82\x6e\xe5\x61\xaa\x44\xe8\xdb\x87\x0d\xf4\xcc\x16\xda\xf9\x62\x2e\x17\xb3\xc5\x6f\x2d\x2f\x09\x94\xf3\x99\xa4\xaa\x22\xcc\xcd\x4c\x96\xf7\xe7\x4c\x4d\x9f\x05\x4f\xe6\x15\xe8\x6b\x46\x60\x4f\xec\xa8\x7f\x47\xab\xda\x47\xb6\x76\x5a\x52\xf8\xa0\xca\x7f\x72\x8d\xf4\xf4\xfa\xd1\xbe\xc9\xf8\x34\x79\xac\x81\x50\x19\x95\x18\x90\xfb\xf4\x39\x8d\x95\x15\x28\xa3\x10\x11\x7e\x1b\x94\xd1\xff\x25\xcd\xfb\x33\xa4\x64\x28\x8b\x77\xfa\xf9\x00\x9e\xb4\x2d\x8c\x46\x21\xe4\xc9\x3e\xed\x1a\xc1\x4c\xdc\xce\xe2\xc4\x9d\xce\x36\x7e\x83\x43\xd3\x3e\x6d\x42\x4e\x6a\xfa\x28\x91\x1e\xa7\x5d\x96\x29\x63\x74\xf9\x90\xd1\xa5\xd4\x11\xf4\x43\x99\x0d\x60\xf6\xd3\x3e\x13\xa2\x9c\xef\x53\x72\xe5\x95\xf9\xf1\x29\x72\xa4\xaa\x84\x8c\x2d\xd1\x7d\x72\x8a\x9c\xfc\x17\x32\xa7\x32\x07\xf2\xa8\xf4\x0c\xc8\xd1\xe7\x60\x52\x27\x5b\xba\x00\x04\xed\x93\x57\x01\x0c\x20\x02\x29\x24\xac\x17\xf2\x5e\x3e\x02\xe5\xef\x13\x4b\x30\x0d\xc9\x58\x20\x22\xfa\x3e\x8d\x41\x0c\x57\x38\x9c\x0d\xf9\xd2\xf6\xc9\xe3\xf2\xfc\x8b\xa2\x1c\x11\x3c\x70\x9f\x4e\xb3\x9a\x01\xe9\xfc\xc9\x93\xe3\x7d\xda\x2a\xac\xcc\xa5\xce\x9f\x9c\x48\xb6\x02\xdf\x54\x1e\xa2\x6e\xe5\x5e\xaa\x04\x08\xdb\xa7\xb4\x0f\xee\xd4\x5d\x6c\x31\xb2\xbd\x0b\xaa\xe8\x4c\xa1\x04\x34\xf3\xea\x98\x38\xe4\xe3\xda\x82\x6f\x1c\x8d\x38\x7e\xdb\x41\x71\x78\xd3\xb8\x8b\x23\x30\xdb\x92\xd8\xc2\x68\x14\x30\xbb\xbb\x70\x58\x61\xe0\x05\x11\x57\xe9\x04\x3d\x34\xf9\xd4\x20\x0d\x9c\x82\xbb\x20\xf2\x60\x8a\x62\x63\x02\x45\xe4\x8c\x4e\x57\x7b\x48\x45\xd2\xb4\xc1\xb6\x83\xd2\x60\x4a\x8c\xd2\x20\xee\xf2\x16\x2e\xa3\x82\xa9\xd9\x82\x65\x8c\xca\xfe\x52\x7e\xa7\x4a\xa8\xb3\x5d\x8c\x2a\xe2\x5c\xb1\x95\xdf\xa9\x12\x62\x6e\x17\x1f\x6c\x7a\x5a\x15\xe3\x11\x44\x69\x2b\x0e\x4f\xc1\x5d\xb0\x8b\x71\x44\x48\x47\x05\xde\x29\xbc\x0f\xda\x65\xb1\x69\xf9\x0f\x19\xb8\x84\x16\xdd\xc5\x77\xa2\xd8\xb7\x5b\xf8\x8e\x4a\x28\xb3\x5d\x60\xd1\x33\x5d\x7e\x3d\x9e\xd4\xfd\x69\xb0\x34\x6b\x61\x89\x86\x77\x54\x9e\x92\x59\x0f\xc3\x32\x21\x7e\x66\x95\xc1\xe2\x8b\x42\x83\x16\x5c\xbc\xc8\xf2\xcb\xd7\x4d\xb1\x6d\x04\xbc\x38\x2a\xc1\xcc\xb6\xa0\x16\xa3\x22\x71\x48\xc6\x84\x83\x75\x1b\x30\x71\xf1\xb4\x7a\x1b\x30\x81\x6d\xbe\x0d\x98\xe0\x95\xe3\xbe\x06\x7f\x96\x86\xcc\x43\x36\xc7\x37\xa8\x88\xfe\xfa\x1b\x3d\xb8\x0d\x99\x20\xb4\xd4\x26\x6a\x0f\x4f\xaa\xb6\x93\x33\xf1\xf6\x74\x5f\xe6\x12\x04\xc9\xe5\xe0\x98\xb8\x25\xb7\x30\x12\xe5\xf9\x6d\xc2\x74\xa5\x4c\x13\xcf\x1e\xbb\xec\xc5\x8d\x41\x27\x58\x44\x79\x5d\x29\xb4\xea\x69\xfc\x98\xe3\x58\xe6\xbf\xe4\xd3\x25\xbe\xe1\x76\xe0\x9d\x2b\x7d\x64\xad\xd3\xea\xcf\x1a\x96\xba\x32\x56\x1b\x51\x0e\xb6\x62\xed\x9c\x1c\x04\xb7\x30\x14\x95\x20\x5d\xfb\xf2\x95\x13\x4f\x46\xb7\x30\x14\x35\xf6\x88\x21\x14\xcf\x6a\xca\x61\xc2\x4b\x8f\xed\x38\x3c\x0d\x37\xd6\x06\x42\xd1\xf3\xa1\xf7\xcd\x33\x00\xed\x9b\xf0\x81\xcc\xac\x92\x09\xc1\x3a\xf6\x69\x62\x57\xc3\x15\xd9\x0c\x0a\xcb\x73\x12\x31\x67\x1b\x6c\xc1\x93\xe7\x0d\x0c\x82\x47\xea\xbb\xa2\x4e\xec\xdd\xd9\x46\x45\x70\x21\xbe\x85\x8a\xa8\x04\x26\xda\x15\x93\xa7\xa4\x21\x87\x60\x99\x50\xcc\x6c\x48\x78\xcd\x7f\x4d\x6e\xa4\x67\xb4\x24\x4c\xc6\x92\x10\x16\xa2\xf2\xf0\x72\x0b\x0a\x51\xaf\x0c\xde\xd8\x41\x2e\x1f\x76\x75\xc2\xc0\x2b\x85\x6c\x0d\x86\x2b\xb8\x20\x31\x43\x77\xb5\xff\xa2\x66\x04\xd2\x7e\xf9\x4d\xbf\xba\xbe\xd2\xa8\xed\x23\x5a\xd9\x8c\x95\xaa\x02\xcb\x44\xfd\x57\xdf\x46\x67\x34\x32\x81\x48\xba\xb0\x0d\x67\x20\xa2\xd1\x76\x8a\xa3\xc9\xab\x8b\x0d\xd2\x20\x2a\xa4\x59\x4b\x94\x50\x5d\x03\x68\x50\x7a\x77\x69\x5f\xd8\x56\x18\x9c\xa3\xe0\x2c\xd8\xc4\xc1\x21\x27\xc4\x76\x1c\x9c\x4c\x73\xc3\x4a\xe6\x04\x22\x8c\x42\x25\xd6\xcd\x6e\x01\x1d\xbf\x20\x2d\xbd\x5a\x4a\xbd\x06\x8c\x96\x5b\x00\x6c\x20\xc3\x12\x88\x92\xb3\x9b\x0f\xa0\x47\x3e\x64\x0d\x52\x38\xdc\x0b\x7f\xa6\x14\x48\x44\x46\xdd\xc2\x2c\x14\xc0\xc3\x5b\x98\x85\x02\xd4\x69\x2b\x19\xd1\xdd\x65\x87\x34\xb3\x5d\x29\xb5\x7d\x4d\x27\x1c\x39\xaf\xd4\xd5\x95\x4a\xfe\x53\xfe\x25\xa0\x10\xbb\xb1\x51\xaf\x14\x7a\xde\x99\x5b\xdf\xd8\xe1\xcc\xdf\xcd\x3b\x35\x53\x8b\xcd\x8a\x01\x27\x30\x41\x21\x78\xfa\x76\x54\x9a\x63\x3c\xbd\xf8\x52\x07\xc5\x2e\x34\x41\x89\xc5\xd6\x31\x17\xb0\x4f\xba\xe1\xc2\xd9\x8f\xdd\x9c\xc0\x01\xce\xa1\x67\x78\xe9\xb0\x85\x2d\xa8\xbc\xbe\xdf\x0e\x44\xd3\xb9\x2c\xda\x1d\x45\x70\xfc\xfd\x72\x67\x77\xe7\x61\x9f\x69\x48\x5a\xe2\xca\x60\x3d\x99\x35\xa4\x36\x03\xa2\xde\x51\x6a\x1e\xf9\x29\xb0\xc1\x19\xfb\xd2\x31\x6b\x78\x52\xb8\xbb\x99\x24\x7f\x39\x81\xca\xf2\x5f\x8e\xc0\xd9\x53\xa8\x9d\xc2\xf2\x75\x82\x39\xcc\x54\x45\x55\xa6\x13\x3b\xa3\x32\x25\x3a\x4c\xf1\x9e\x7b\x3b\xa0\x4d\x27\x6b\xc6\xee\xbe\x66\xe6\xfa\x65\x3b\x99\x52\x84\x4e\xf7\x33\xd8\xe8\xf2\x6e\x31\x03\x5f\x74\xa7\x87\x24\x37\xc1\x56\xb8\x9b\x7a\xc1\x8b\xc6\x34\xf0\x0a\x75\x1b\xd3\x70\x11\x4e\x61\x77\xdb\x16\x28\x02\x41\x1a\x92\x3a\x72\x2b\xfa\x4d\xe5\xfd\xfb\xee\xb6\x85\xb3\x7c\x7e\x6a\x41\x9c\xed\xdd\xf1\xa3\x65\x12\x04\xe0\x23\x29\xcb\x16\xfa\x61\xf0\x92\x72\x0b\xfd\x70\xc6\x0e\xeb\x18\x1a\xd8\xc2\x02\x3f\x94\x9a\x9f\xe4\x8c\x8f\xf0\xe8\x4e\x2b\x80\xb6\x51\x7e\xa6\x41\x88\xbf\x6d\x5c\x04\x51\x8e\x76\xb7\x11\x7d\xa5\x51\xed\xdb\x33\xad\x68\x2f\x22\x2a\x00\x42\x80\x74\xdc\x63\x30\x9c\x01\xa9\x98\x55\xcc\x8e\xb3\x2c\xe1\xef\xd9\xc3\x58\x99\x23\xed\xc8\x7b\xca\x6f\x18\x15\x41\x70\xa4\x3d\x9c\xeb\x06\x17\x88\x63\xdf\xe0\x83\xdd\xc3\x6c\x87\x52\x1a\xd6\x6e\x47\x3a\x34\xa3\x61\x44\x3b\x75\x52\x64\xdc\x30\xc8\x0f\x6d\x31\x6c\xa3\xf6\x7c\xc7\x9e\x48\x1f\x32\x4d\x30\x62\x06\x59\x25\xf8\x43\xd9\xaf\x3c\x3c\xde\x8e\x83\x73\xe5\x1c\x65\x30\x03\x38\xc2\x3d\xcc\x72\x2d\x1f\x0a\x42\x5b\x52\x26\xc5\xc6\x56\x57\x14\x9c\x51\xf3\x8b\xe4\x5c\x4e\x9b\xb2\x68\x50\x3a\x0a\x73\x73\x92\xf6\x7a\x2b\xca\x4d\xe5\x55\xd0\x1e\x30\x5c\x86\x6d\xc7\x03\x7f\xef\x10\x01\xb1\x18\x0c\x73\x28\x5c\x7c\xed\x11\xbe\xe1\xaf\x2c\x18\x11\x76\x82\x32\x8c\x58\x17\xc3\x9c\x82\x06\x1a\xb8\x86\xb2\xc4\xb0\x0a\x23\xf7\x09\x8b\x2e\x15\xb9\xe6\x78\xcc\x1b\x85\xae\xa9\xe0\x7d\xf6\x74\xa0\xd1\x28\x2b\x03\x1b\x26\x18\xf5\x2d\x7c\x42\x01\xf9\xbf\x95\xec\xa8\x02\x34\xdb\xd3\x4a\xef\x29\xb3\x80\x48\x21\x36\x2f\x92\x99\xf8\x33\x84\x6c\xdc\x46\x27\xe4\x5c\x30\x39\x77\xf3\x67\x8e\x47\x43\x0c\xa3\x2d\x74\xc2\x19\x1b\x61\xda\xfb\x73\x86\xb2\x6e\x40\xcd\x29\x1c\xcd\xfd\x2b\x21\xc5\x4b\xf5\x6f\xbf\xf7\x9e\x48\x2c\x3c\x47\x8e\x47\xd3\x67\x7e\x4d\xaf\x6d\x62\x03\x4f\x4c\x62\x3c\x59\x13\x26\xe1\xc7\x60\x84\x94\xc9\xd5\x9d\x9f\x96\x8f\x1e\x80\xf3\x9e\x20\x85\x39\xe2\x4c\x5b\xb2\x88\xa1\xc9\x85\x1e\x47\xc7\x49\xd8\x67\x0e\x8b\x4e\x60\x44\xe0\xb1\xed\x50\x31\xa0\xc2\xb6\x60\x0e\x85\x67\x5c\x5b\x09\x8c\x2a\xd8\xa0\x6d\x20\xc3\x04\xd7\xb8\x97\x2c\x9a\xb8\x4d\x16\xc7\xe0\x11\x52\x93\x17\xca\x21\xd4\xe0\xe8\x35\x99\x9e\x09\xa9\x18\x38\x58\x6a\x8e\xe2\x92\x83\xff\xc2\x19\x8b\x37\xc6\xe9\x85\xc8\x60\xb4\x15\xd4\xe5\x24\x78\xfa\x5e\x5e\x2e\xfe\x6a\xa1\x60\x70\x39\x29\xa8\x4b\xd2\x2a\x6f\x61\x1c\x6a\x1c\x98\x0b\xef\x1d\x12\xc5\x88\x07\xee\xb2\xb7\x11\x0f\x85\xeb\xfe\xbd\x7c\xe6\x64\xd3\x2c\x8e\x21\xe8\xe7\xe5\x05\x82\x9b\xc8\x53\xc4\x0d\xe7\x5e\x98\x37\x3d\xa5\x8a\x35\xcf\xea\x2d\xdd\x94\x44\xa4\x2e\x07\x7f\x46\x32\x2e\x36\xea\x0c\xf9\xf6\x22\xa4\x1d\x4b\xc3\x01\x65\x93\xc0\xd4\x46\xe0\xe3\x5d\xd8\x83\xd1\x16\x48\x8f\xb6\x41\x79\x4d\x58\x6a\xc7\x7c\xc1\xc1\xbf\x95\xf1\xa8\x00\xed\xda\x1b\xdd\x80\x89\xb7\xad\x1c\xb8\xfa\xdb\x8e\xf9\x12\x9b\x78\x63\xfa\x9c\x69\xc8\x3e\x9e\x0b\x4a\x4a\x77\xa6\x1d\x33\xd0\xcc\xf0\x7c\x4c\x39\x33\x78\x2b\x61\xb8\x6d\x5b\x3c\x64\x7c\x36\x89\xd9\xf1\x8a\x0e\x73\x3c\xe7\x38\x81\x30\xce\x67\x78\x4e\x49\x05\x7b\x29\xc8\xcb\xf1\x78\x84\x36\xa6\xec\x53\xea\xf1\x31\x02\x2f\x3d\x2b\xb6\xbd\xd6\x99\x12\x1d\x3d\x8e\x57\xca\xee\xd5\xac\xe8\xab\x6d\x91\x9c\xfe\x1d\x1e\x6f\x66\x7e\x36\x3d\x32\x00\xa3\xa5\x89\xdc\xb1\xb7\xc5\x70\x66\x64\x5b\xb7\x79\xba\xde\x44\x1e\x28\x50\xa7\x52\x20\xbc\xa0\xac\xda\x19\xeb\x5b\x8f\x3e\xce\xa7\x2a\xeb\x35\x20\x75\x14\xab\xa9\xea\x43\x4b\x0f\xe9\x63\x6e\x4f\x5d\x96\x28\x43\xf8\xe9\xdc\x46\x5d\x07\x83\x26\x79\xdd\x56\x8a\xa0\x1a\x67\xa3\xa2\xb0\xd4\x30\xad\x82\xb0\x1c\x80\x78\xb6\x82\xb0\x9c\xe0\x33\xf7\xdb\xcf\x3a\xe2\xd1\x7c\x73\x4a\xe9\x69\x07\x7e\xe2\x5f\x0c\x73\x9a\x69\x57\xa0\x7e\xd2\x79\xee\xb7\x83\x26\xfe\x87\xe8\x82\x5b\x58\x8e\x3e\x30\xd4\x1c\x77\xa5\x93\x44\x69\xbf\xc5\x24\x13\x74\xde\x56\xe6\xa1\x9b\x4c\x2f\x8c\x28\xa5\x72\xb9\x66\x4e\x14\x88\x05\x2c\xfc\x26\x10\x4b\xc4\xa0\x81\x1e\x17\xf1\x90\xf6\xdb\x76\x25\xe8\xb3\xfd\xb6\xcb\x75\x86\x32\xbb\xb1\x0e\xbe\x3c\x22\x74\xd2\x26\x67\x11\x39\xd8\xf6\x1b\x93\x00\x39\x24\x18\xc8\x49\x58\x87\xfd\xde\xcc\x18\xb3\x8d\x1f\x63\x84\xfc\x6a\x99\x52\xd7\x1c\xef\xd1\x3b\xe0\x4a\x2e\x06\x3e\xbe\x69\x45\xa0\x7e\xbc\x3b\x79\x07\xb2\x3f\x4e\x00\x00\x53\x7f\x8c\x3b\x24\x13\xd2\xfe\xd8\x27\xc5\x2d\xe4\x76\xf4\x93\x78\x4f\x3f\xa8\xf2\x11\xf2\xde\x3b\x71\x5d\x3a\x41\x50\x23\xdf\xe0\xfe\x84\x17\x3a\xe4\xd6\xd8\x27\x94\xd2\x05\x1d\x19\x02\x33\x1f\x12\xd9\xc2\xbf\x38\xb3\x2b\xd3\xf7\xc1\x03\x82\x60\x14\x9c\xe3\xee\x34\xa4\xcd\x46\x4e\xd8\x86\x70\xc4\x15\x26\xcc\x46\xcd\x79\x5b\x79\x87\xee\x86\x18\x1f\xa1\x5d\x5f\x21\x3f\xaa\x9b\x2f\xf5\x46\x2a\xc3\x95\xa8\x01\xfe\xb5\x85\xca\x28\x84\x8e\xde\xc2\x5d\xd4\x8a\x10\x57\xba\xa0\x1a\x5e\x14\xce\xa2\x86\x51\x1d\xd4\x24\x97\x49\xa4\x07\x22\xd4\xd4\x56\x8c\x93\xfb\xb7\x3c\x1a\xc3\x2e\x80\x9f\x6d\xc1\x2e\x6a\x38\x51\xa8\x8b\x9a\x2b\x18\xe7\x0a\x3a\x72\xeb\xea\x88\x27\xbc\x47\xde\x82\x59\x54\x60\x99\xdb\x99\x83\xe6\xbf\xad\xfa\x14\x93\xaa\xf6\xa7\xe1\x58\x51\xc8\x93\x7b\x3c\x69\x96\xd1\xa6\x53\xf1\x25\x06\xa8\xb3\x05\x75\x72\xfe\x6c\xc5\x3c\xa9\xf1\xc9\x38\xe4\xc9\xc5\x03\xee\xfd\x0d\xb7\xd1\xab\x7d\xea\x5c\xed\xef\xef\x64\xab\xa4\xd4\xb7\x8a\x29\x1c\x4a\x7e\x32\x42\x9a\xdd\x4a\x06\xf1\xf1\xcf\x65\x10\x36\x5f\x91\x69\xdf\x85\x30\xa4\x61\x61\x82\x72\x80\x53\x8e\xa0\x9a\x83\xbb\xe1\x1f\x39\x32\x7e\x91\x3d\x33\xa4\xa5\xe1\x91\xba\x5a\x60\x24\x86\xe1\x1e\x33\x2c\xff\xc5\x47\x8a\xba\xf8\xfa\x0a\x27\x17\xb1\x5f\x47\xd5\xc9\xb4\xc8\x47\x1a\x2f\x8d\x60\x1b\x03\x88\xd7\xfe\xf2\x76\x96\x63\xfd\xd7\x77\xff\xb9\x27\x76\x34\x93\x9c\x29\xbf\x04\x83\xa8\x29\xf4\x69\x0c\x5b\x45\xe0\x8c\xe7\xae\xd3\xe1\x4c\xb2\xef\x7f\x70\x55\x87\xd2\x33\x25\x78\x95\x08\x25\xb9\xb2\x35\x8e\xe3\x3e\xc6\xfc\x29\xc8\x7f\x8e\xed\x14\xcf\xcb\x8f\x37\x8b\x1c\xb3\x04\xcf\xa8\xe1\xc0\x9f\xce\xa3\x39\xf2\xfc\x2c\x6a\x98\x83\x5f\x16\x3b\x55\x25\x5b\x98\xbc\x1f\xe2\xe3\x4a\x5d\xed\x56\x84\xb1\xd2\xfd\x9c\x60\x47\xf7\xcf\xf0\xe7\x19\x4a\x56\x55\xfa\xf0\x41\x20\x77\xbf\x3f\x6e\x42\x50\xda\x02\x72\x94\xb8\x44\x0c\xe4\x88\x61\xe7\xe8\x21\xb9\xfd\x16\x8e\xe3\x8c\x0e\x74\xf4\x90\x16\x47\x8b\x60\x1d\x15\x3c\xdc\xfe\xb1\xec\x0c\x80\x65\x4f\x59\xfb\xe7\x7f\x9d\x48\x10\xdb\x10\x8f\xe7\x8a\xf4\x67\xc9\x52\x52\x68\xad\x81\x1d\xf0\xb3\x8b\x2d\x37\xb8\x3f\x2b\x11\xcd\x4e\x1f\x2f\xf3\x80\xaf\xd1\x6f\xd2\xe3\x19\x50\x1e\xc1\x09\xd5\xf4\xee\x2e\x35\x75\xb2\xd6\x9c\xdf\x94\xd8\x4e\xd3\x71\x53\xcb\x8d\x1e\x90\x5e\x9e\x0a\xe5\x9d\x79\xa4\x50\xcb\xa3\x95\xbc\x55\xbc\xfb\xef\x50\x55\x8f\x38\x42\x75\xff\x07\xed\x98\x23\xae\x50\x9a\x81\x8b\xa1\x9a\x21\x2e\xba\x90\x4b\xa2\x5e\x0c\xee\x66\x8f\xde\x5b\xca\xd4\xbd\xd4\x47\x1f\x64\x1a\xb2\x30\xbd\xc9\xe2\xff\x08\xa9\x09\x48\xab\xf2\x99\xdb\x1e\xbe\x29\x49\xcf\x4c\x80\x94\x49\xcb\xe4\xd8\x43\xe5\xec\xec\x7d\x28\x5b\x50\xad\x17\x7f\x25\xd3\xa1\x5e\xfc\xbf\x9d\x50\xbe\xcf\xbe\x49\x7e\x99\xf5\x70\x18\x98\x9e\xbf\xdc\x4c\x33\x9d\xfa\x85\xb2\x03\x4c\xdc\xa4\xd7\xd9\x9f\x1e\x83\x5f\xa9\x90\xf4\x33\x21\xbb\x4b\x1b\xa4\x59\xff\x7c\x41\xda\xa4\x3a\x0a\x24\x20\x96\x54\xde\xfe\xb6\x43\xda\x2a\xcf\xa7\xd6\x63\xd5\x43\x3c\xbc\xbc\x95\x42\xa4\x3d\x4b\x78\x38\x73\x9c\x81\xb6\x37\x39\xb4\x4e\x34\x6b\xa1\x5c\x29\x5b\x7c\xc9\xcf\x49\x2a\x0f\x67\x9a\xba\x49\xbd\x66\x71\x02\xa6\x9b\xd4\x19\xb1\x85\x62\x96\x52\xf7\xeb\xba\x69\xd8\x47\x7a\x4f\xf0\xe1\xe0\x07\x29\xe3\x39\x54\x65\xb8\x92\xc3\xe3\x75\xa4\xee\x70\x74\x08\xba\xb9\x17\x83\x2c\x54\x37\xe5\xd8\x2c\xcc\x82\x11\x73\x9d\x69\x38\xfd\xe4\xa9\xf3\x6f\x27\x9b\xae\x42\xd1\x4b\x81\xd4\x35\xc0\x95\x42\xa5\x30\x67\xfd\x4f\xbf\xa4\x9c\x1e\x8f\x51\x13\xb5\xf2\x9d\xc3\xf0\xf8\x22\xf9\x26\x7d\x19\x54\x43\x5a\x8d\x9d\x7f\xda\xe2\x77\x5d\xb3\x0a\xff\x62\x14\xc5\xac\x0f\x29\x39\xf0\xb4\x6b\x6b\xf6\x4c\xe1\xcf\x9f\x7a\x52\x4e\x9e\xea\xd6\x90\x7a\x33\x52\x42\x49\xa2\x3e\x65\x8a\xb4\xff\x94\x89\xb3\xeb\x84\xd2\x0e\x86\xc3\x4e\xcc\x74\x84\x84\x90\x11\x77\x97\x1d\xd2\x5c\x34\xa0\x98\x94\xd4\xf5\xc1\x39\x53\x66\xdb\xad\xe6\xcb\x29\xfd\xcc\x92\x69\xe7\xf9\xfe\xe5\xa6\x1c\xb5\xd3\xcd\x28\xb4\xc4\xe5\x9c\x40\x37\xe5\x3d\xca\x56\x2a\x16\x85\x08\x1f\x81\x11\x0e\x5f\xdc\xf4\x21\xf0\xc1\x5d\x95\x42\x27\x66\xed\x35\xa5\x9a\xd9\x56\xa0\xcc\xc5\x8c\xce\xc0\x00\x7b\xb9\x6f\x4a\x33\x02\xc3\x97\x4c\x33\x55\x9d\xd6\xe2\xc5\xce\xf7\x4d\x7c\x85\xa7\x0b\xf9\x03\x42\x2d\xcf\x0f\x23\xd8\xee\xc4\x85\x17\x02\x05\x8e\xe2\xaa\x1d\xc5\x71\x61\x21\x9c\x1d\xd2\x4c\x7c\x16\x48\x26\x3a\x95\x87\x4b\x2f\x48\xff\x68\x28\x58\x28\x75\x3d\xfa\x33\x83\x90\x43\x05\x75\x71\x71\x6e\xa5\x17\x26\x2c\x65\x4b\x69\xca\x1b\x94\xb8\xab\x85\x42\x48\x79\x4a\x2e\x70\x15\x0f\x69\x6c\x22\xed\xc8\xe2\xb3\x87\xe9\xa6\x7c\xc5\x92\x3f\xe1\x04\x79\xa6\xd4\xed\xb2\x10\xbe\x24\x1f\xaf\x4c\x8a\x52\x50\x35\xb4\x92\xaf\xcc\xaf\x68\x57\xdd\x7c\x9f\x51\x35\x97\x11\x62\xb3\xa4\xd0\xe0\x1b\x77\x5a\xfd\xd6\xc9\x77\xef\x37\x59\xbd\x01\x52\x3a\xf5\x2c\xfa\x05\x65\xbb\xa9\xa5\x2e\x01\x92\x4f\x48\xcd\x4a\x2f\x50\xd2\x93\x69\x67\xda\x4e\x38\x43\xfa\xd8\x95\x86\xec\xff\x9d\x28\xbc\x3a\xe1\x8d\x09\x29\x4b\xae\x85\x92\xb9\xd8\x2f\x28\x6b\xb8\x12\x52\x08\x84\x19\xca\x0c\x88\x2c\xac\xf6\x0e\x97\xb4\x63\xc9\xcd\xa4\x54\x56\x8d\x0d\xa2\x20\x01\xd5\x09\x68\x6f\xea\xd2\x33\x7b\x46\xbb\x3c\x1e\x7e\xc5\xa7\xc2\x9e\x32\x65\x20\x18\x69\xd4\x97\xfa\x2d\xcd\xe8\x4d\x67\x7e\xcb\x22\xaa\x33\x38\x01\x48\x0b\x26\x4f\x45\x53\xc3\xc5\x7a\x66\x8f\xf7\xae\x8f\x86\xcd\xc5\x6c\x29\xb3\x4b\xad\x2c\x67\x03\x80\xdb\x52\x68\x8b\x99\x86\x74\xa5\x5d\x2b\x4a\x86\x3b\xec\x31\xa1\x7c\x82\x2d\x7f\xe2\x50\xee\xba\x12\x11\xdd\x1b\xa0\x71\x28\x63\x6b\xeb\xd2\xba\xd8\x03\x75\x53\x9a\x2d\x38\xde\x4f\xe9\xc7\x0b\x96\xd1\xb5\xf4\xf0\x5b\xd5\x9b\x62\xbd\x3a\xa4\x2d\x03\xd6\x56\xe9\x5b\xce\xc2\xf6\x6c\x8b\x49\xe0\x53\x1d\xdc\xc7\x0b\x11\xaf\xf7\xf2\xb5\xb2\x0c\xcd\x33\x8d\xb8\x6d\x9c\x9c\x90\x35\x7a\x01\x5f\x0a\x06\xac\x2f\xad\x67\x45\xbc\x29\xb5\xca\x01\xd2\xe8\x26\x25\x13\x06\x43\xf0\x2b\x9b\x99\xdf\xb6\xc1\x34\x18\xad\x23\xa6\x4d\xb8\xad\xdb\x59\x3b\x31\x9b\xf5\xae\x7d\x54\x4c\xad\xee\xe3\x11\xb6\x55\xe7\xca\x05\xe9\xa2\xdb\xe6\x72\x8c\x54\xf5\x08\x52\xe6\x53\x36\x42\xaa\xb3\x82\x6c\x7b\x3f\x5e\x77\xd2\xd0\x3e\x74\x83\x5c\x26\x7f\xe2\x2b\xe3\xca\xc4\x77\xc7\x5e\xe9\x2d\x55\xc5\x51\x23\x55\xab\xf6\x54\xaa\xfa\xf8\xc8\x6e\x54\x0a\x94\x5a\x31\x78\x74\x9f\x7c\x8c\x57\xfe\x92\xf5\xbc\x52\x6a\xe1\x9b\xe1\x29\x07\xef\xc5\xfe\xd3\x95\x71\xad\xf0\xa2\xaf\x81\x3b\x6b\xed\xa4\x27\xb1\xaa\xfc\xce\xdd\xd9\x52\x6e\x4a\x6b\x3b\xd3\x8a\x43\xd3\xf0\x1f\xca\x17\x5f\xe0\x1f\xbf\x4e\x9f\x15\x55\xaa\x0b\xda\x5a\x31\x77\x3a\x22\x32\x2b\xe2\x85\x9e\xf9\x52\x5a\x17\x11\xde\xed\x78\xc9\xd8\xfc\xa8\xf4\x4a\x4d\xed\x0b\xe6\x6a\x38\xe4\x45\x67\xbb\x29\x57\x49\x29\x6c\x9a\x81\xcd\xcc\xe4\x28\xe7\x48\xad\x18\x7c\x43\x08\xd6\xca\x62\x0d\xbc\x1c\x57\x0a\xd9\xe2\x29\xf5\x09\x1e\xbd\x3f\x32\xe9\x29\xd5\xd8\xd9\x8c\x7e\x2a\x7e\xf5\x9e\xba\x3f\x7f\xca\x18\xfc\xc8\x7b\x62\x16\x0f\x6f\xa2\x39\xa1\x96\xfc\x54\x8c\xc1\xaf\xba\x7b\xcf\x97\xf7\x9c\x34\xa4\x97\x6f\x3f\x1b\x5b\x6a\x70\x7c\xc1\x62\xd6\x9b\xef\xda\x38\x13\xe9\xfa\xb3\x1a\x19\x7f\x53\x97\xe7\xe4\x82\x54\x82\x12\x6c\x31\xdd\x85\x96\x1c\xca\x86\xe3\x1c\xf6\x9e\x2f\xe1\xbc\xd4\x75\xea\xf6\x99\x86\x14\x4f\x20\x33\xaf\x00\xc0\x67\x0d\xf5\xd3\x08\x4c\x29\xc7\x47\x6d\x1c\x46\x26\xa6\x35\xca\xc6\x37\xa5\xe3\x75\xa5\x6e\xf1\xec\x15\x48\x1b\x2d\x98\xe5\x7a\xf4\x5d\x9d\x5e\xe2\xa6\x94\xb3\xfc\x08\xa5\xd7\x21\x08\x19\x3d\xeb\xae\xed\x15\x4a\xe1\x28\x58\xa1\xe9\x28\x3b\x13\xd5\xa3\x8b\xd2\x12\x73\x74\xb2\x6d\x51\x21\x13\xd3\xfa\xfa\xf3\x4a\xf3\xae\x7b\xaf\x6d\x43\xaf\xeb\xc5\x77\x8f\x20\x73\x52\x8f\x59\xb1\xdb\xfc\x00\xbc\x65\x40\x58\x8e\xa8\x9b\xe9\xa0\x84\xcc\xb3\xae\x58\xef\xd1\x9e\x90\x3f\x99\x3e\x54\xe5\x70\x8c\xfd\xe2\x94\x1f\x05\x45\xa0\x2b\xd6\xeb\x55\x53\xd5\x06\xc0\x15\x52\xb9\x68\x8e\x54\xf5\x91\xe1\x4c\xe1\x14\xd0\x22\x94\x4d\x12\x8c\xf0\xe9\xf8\x4b\x39\x3f\x4e\xc7\x01\xcb\x64\xca\xd7\xda\x8e\x50\x6c\x23\x96\x61\xdb\xaa\xcc\xaf\xc8\xb2\x3d\x33\x76\x79\x5b\x47\x4f\xd5\xaf\xda\x49\x4d\x9b\x69\x8c\xc0\x0f\xcb\x0f\xce\x2c\x7a\x58\x5e\x1b\xa7\x1d\xdf\xbf\xb6\x23\x35\x2d\x9f\x10\x88\xca\xcd\x51\x1b\xcc\xbf\xfc\x76\x36\x56\xf8\xc2\x81\xca\x08\xfc\xae\x7c\xbc\xf8\x4d\x65\xd5\xa8\x2d\x7d\x22\x3d\x98\x5b\xdd\xc7\xd6\x06\x0b\x2d\x40\x3e\x88\xf3\x65\xc7\x26\xa6\xb4\xae\x55\x6b\x98\x56\x17\xa9\xb5\x1d\xa9\x69\x81\x59\x43\x4a\xb6\xa3\x70\x9d\x2b\xe3\xea\x0f\xc9\xf0\x18\x90\x0e\xc9\x17\x72\x78\x6d\x2b\xf2\xfc\xd9\xb6\x66\xe4\xb7\x2d\x1e\x10\x6d\xbe\x64\xbd\xfa\x08\xa9\x17\x7a\x67\xaa\x4e\x55\x4d\xab\x16\xcb\xee\xd1\x09\x30\x4a\xe1\x98\xe2\xab\xd2\x11\x6e\xdb\xc6\x85\xb1\x7e\x7e\x66\xde\xce\x50\xe2\x11\x26\x64\x7b\x4f\xb3\xe1\x73\x53\x3a\x52\xd5\x6e\x0e\x0c\xe9\xcd\x51\x03\x8b\x5c\x17\x9e\xb5\x31\x58\xbf\x4f\x9f\x0f\xe5\xbf\x64\xb0\xbe\x24\xc1\x34\xde\x8e\x17\x1a\x13\xd2\xb9\x31\x3a\x0b\xad\xe7\xe9\xe7\x0b\x5b\x8f\x84\x17\x31\xfd\x9c\xf0\xa2\xb1\x4d\xb6\x30\x58\xaf\xb3\x87\x74\x97\x1d\xca\x46\x3f\x9b\x51\xf9\x2f\xce\xc2\x4e\xd0\x3d\x69\x39\x9f\x32\x41\x1b\xe1\x59\xa7\xb4\x18\xcf\x08\x50\xb1\x25\xa4\x38\x26\x13\x22\x15\x1b\x17\xc2\xf6\x72\xc1\xec\x1b\x57\x14\x66\xea\x0e\x1a\x37\xed\x38\xe6\x14\xe3\xd9\xca\xf2\x51\xd3\x8e\x45\x0e\x5f\xbe\x9d\x3a\x2c\x8e\xb4\x37\x4a\x16\xc9\xe6\x27\xe7\xed\x29\xdc\xae\x9b\x42\x9f\xbe\x52\x77\x5a\xd8\xa3\xf0\xde\xec\xa2\x87\x14\x27\x94\x50\xfe\xd1\x02\xe5\xe7\x7d\x03\x4a\xaa\x31\x9d\xe8\xa4\xdd\xb0\x70\xfd\x3a\x7d\xd6\xa7\x99\x7b\x63\xcc\xbf\xd3\xce\xf7\xe1\xdb\xcf\x99\xa3\xeb\xdb\x11\x05\xae\x50\xb7\x69\xd3\xd0\x94\x6f\x1e\x17\xf7\x90\x56\x9c\x98\x90\xba\xef\xac\x0d\x8b\x4d\xd7\x9d\xe7\x9c\x29\xdb\x72\x6f\x4f\x28\x33\xf4\xd3\x8e\x36\xf5\x08\x25\x2d\x8a\xb5\xfb\xe6\x34\x8a\x05\xf9\x36\x40\x3f\x06\xcb\x1b\xa6\xc1\x76\x78\x5b\x0c\x63\xb3\xbd\x1d\xd6\x7a\xb6\x90\x4e\xda\x9f\x2f\xb5\xe3\x5e\xe8\xe3\x37\x4a\x1f\xfb\xca\x0f\xdb\xc7\x0b\x93\xc0\xb7\x9d\xed\x4a\x2f\x7e\x47\xe2\x3f\x73\x42\x89\xab\x63\x1b\x7f\xe4\xce\x8c\x7c\x72\x7a\x89\x93\x3d\xff\xc1\xdf\xcc\x0c\x7d\xb8\x07\x67\xf0\x1f\xb8\x84\x11\x7d\xf0\x84\x21\x4e\x3f\xe6\x0b\xa4\xd0\x07\x5f\x17\xeb\xe2\xd7\xe2\x65\x84\xf2\x03\x15\x06\xef\x17\xe1\x33\x0e\x69\x5d\x36\xd6\x86\x3e\xfc\x38\x1c\xeb\x4c\xa7\xba\x36\x6a\x2c\xbe\x1e\x88\xdf\x23\xa2\x53\xfc\x95\x18\xd6\xce\xc5\xd0\xae\x50\x16\x84\xc8\x69\xbf\x08\xbf\x50\x8f\x7a\xf4\x5d\xdb\x43\xc9\x5f\xff\x7c\xa8\xf1\xd4\x7c\xc7\x78\x2a\xa4\xc6\x83\x02\xd4\x73\xf0\xda\xd8\xae\x1f\x9c\xcc\xd8\xeb\x5f\x8e\x45\x0c\xf6\x8b\x60\x66\x4e\xbe\xac\xd2\x0c\x29\xe9\x82\xbb\xd2\xf9\x16\x62\x6a\x7c\xfd\x3a\xac\x84\xb2\x38\x19\x21\xe5\xc1\x45\x8f\x91\x70\x61\x62\xce\x3b\xc3\xc2\x31\x11\x8c\xb9\x51\x44\xb3\xfa\x46\x71\xbc\x90\x44\x5f\x1c\x9f\xd8\x3b\x5c\x30\x22\x9b\x79\x23\x3e\x99\x4d\x5f\x30\x8e\xd7\x48\x5d\x6f\x1f\x8e\x5c\x5f\x27\xea\xcb\x1a\x7e\x71\x41\xb3\x2b\xbf\x0e\x06\xd7\x31\xdb\xf5\x6a\xfc\x00\x15\x7e\x93\xba\xbd\x69\x69\xc9\x06\x7f\x26\x0d\xcb\x9c\x5d\xfb\xc5\xa7\x94\xa9\xd8\xb2\xb3\x30\x0d\x7c\x4f\xd8\x50\x8b\x4e\x81\x70\x0d\xec\x76\xdf\x0c\x5e\x03\xa3\xfe\xcb\x66\x63\x4f\x7f\x9d\xf9\x71\xbc\xd2\xae\x57\x39\x85\x6f\x7f\x9a\xc2\xcf\xcd\x3b\x35\xed\xda\x40\x62\xef\xfd\x6c\x71\xd7\x50\x0a\x4a\x80\xf2\xf3\x83\xef\xf1\x82\x79\x7f\x0e\x6f\x3a\x59\x0c\x25\x33\xa8\x0d\x5d\xa8\x5c\x06\x23\x1e\xfe\x9f\x23\x84\x3f\x35\xbd\x27\xe0\xba\x1f\xe7\xe4\x91\x2f\x95\xd0\x07\x51\xea\xb4\x07\x0d\x59\xe0\xd7\xe1\xd7\xe0\x80\xa2\xd7\xe1\x23\xce\xe2\x1f\xbc\xc2\x92\xf2\x20\x1c\x8e\x24\x7d\xc1\x78\xfd\x79\xaf\x79\xd7\x65\x91\xe8\x54\xd8\xea\x96\x49\xd0\x95\x63\x41\x53\xfa\x7d\xf8\x78\xcd\x14\x2a\xfc\x11\x7b\x4d\x37\x90\x07\x8f\x7e\x6e\xd2\x3b\x98\xd9\xe3\xb2\x79\xa4\xd0\xaa\x91\x03\xb0\xef\x27\xaf\x81\x13\xe2\x27\xdc\xcb\x38\x52\xf8\x91\xc5\x96\x3e\x3d\x3c\x06\x24\x0f\x70\x4b\xab\x36\xd1\x06\xc7\x29\xee\x20\x33\x99\x5c\x47\x65\xe5\x2d\x44\x5a\x0a\xcd\x5f\x9c\xab\x7f\x58\x04\x1c\xa5\x7f\x00\x5b\xc2\x09\x86\x3b\x8c\x57\x7a\x95\x1e\xcd\xd8\x71\xbd\x78\xb5\xe7\x0b\x19\xe3\x19\x9b\x2f\x64\x8c\x35\xc1\x54\x9e\x82\xc3\xef\xee\x6e\x8a\xe1\x0f\x48\x4d\xe0\x53\xd8\x14\x13\x3b\x94\x04\xa2\xf7\xce\xd4\x05\x66\xc1\x55\x3b\x7d\x81\x79\x19\x71\xd4\xe7\xcb\xcf\x02\x7d\xeb\x7f\x93\xd6\x7f\x16\x22\xd3\xd9\x06\x78\xb4\x74\x93\x7e\xf2\x49\x5d\xdf\x54\xb1\x10\xf3\xe5\x15\x6d\x74\xba\xcc\x70\x1d\x6a\xb8\x2a\xe3\x5b\xde\x0f\x0c\x61\xe9\x95\x60\x4d\x1f\xb6\xfa\x7b\xda\xf1\x76\x3d\x32\x20\x73\xe3\x4c\x43\x32\xa5\xf3\x6b\xb6\xc8\x1b\x7d\x2a\xfe\xe8\x9c\x34\x6b\x10\x64\x26\x48\x08\x78\xa3\x4b\x6f\x4a\xce\x8f\x33\x35\xcd\x6d\xf9\x67\x6b\x8c\x16\x4a\xb6\x84\xb5\xfa\x3c\xf0\x76\xd2\xc7\xe1\x13\x94\xd5\xe4\xcc\xb5\xa4\x85\xdd\x3c\x58\xbe\x23\x24\x3a\xb5\x41\x5a\xa0\x9d\x69\xd8\x71\x82\xcd\xd5\xd3\x2f\xdb\x2f\x07\x81\xe9\xf3\x00\x82\x78\xd2\x91\xf5\xbc\xf3\x67\xde\x24\xfd\x76\x48\x2f\x0b\xdd\x4e\xfa\xb9\x20\x65\x61\xf5\xb4\xeb\xc3\x75\xda\xd9\x7a\x31\x97\x4e\x64\x2a\xf6\x7c\xf7\x71\x97\x8c\x4f\x67\x6b\x8e\x8e\x53\xaf\xd7\x2b\x87\xf2\x79\x38\xd1\xce\x8b\xb2\xa8\x16\x06\xa7\xab\xcf\xf6\x50\x97\xc2\x64\x86\x6a\x1e\x6a\x85\xf4\x50\x43\x69\x55\x3a\x13\xbf\x98\x2e\x26\x93\xd8\x24\x4f\xa9\x95\xea\x4c\xa9\x86\xd7\x18\x90\x8d\x8e\x2c\xc3\x66\x66\x19\x02\x1e\x57\xb8\x46\x2f\xdf\x4f\xa4\xd2\xd4\x25\x69\x75\x3c\xa4\x9b\x92\xe0\xb1\x7e\x9d\xa7\xbd\x6b\x03\x96\xf2\x35\xe8\x38\xd8\x38\xbc\x42\xb7\x27\x69\x9e\xbe\x23\xf2\x9b\xd5\x9b\xd4\xde\x68\xa9\x2a\xdd\x65\xfd\x39\x4f\xc0\x6e\x2c\xad\xe3\xfd\x5f\xa3\xfc\x19\xa3\xf0\xae\xcb\x3e\x67\x44\xe1\x99\x0a\xd9\x4d\x36\x48\x6f\xd7\xc2\x90\xec\x3a\x35\xc8\xf4\x26\xad\xd4\x61\x6c\xde\x8c\x3b\x65\xcb\x4d\x7a\x22\x18\xff\xd4\x2d\x16\x4c\x74\x2e\x06\x4c\xaf\x8b\x69\x61\x4c\x3e\xf7\xe5\xcf\x1d\xfc\xd8\xc1\x60\x6f\xb2\xba\x2e\x9d\xc6\x24\x0d\x29\x63\x76\xa4\x1b\x86\xcf\x78\x09\x64\x93\xb5\x41\x7d\x1c\x21\xcd\x3b\x25\x83\x90\x03\x0e\xd0\xc8\x3c\x1d\x4b\xae\x66\xad\xe4\x10\xa8\x19\x13\x46\x49\x61\x10\xd6\x12\x4e\x53\x72\x93\xf4\xc3\xa0\x74\x6e\x1c\x07\xd2\xf2\x74\xca\x72\xe4\xa3\x5f\x92\x5f\x8e\xfc\xd1\x67\x71\x62\x38\xc7\xfa\xb8\x49\x7e\x20\xa4\x78\xdf\x16\xc2\xd4\x93\xf0\x93\x37\x1b\x37\x29\xee\xb6\xda\x9f\xc5\x61\x2e\xb2\xfb\x1c\x8b\xff\x04\x29\x31\x1d\x8b\xdf\x71\x57\x6e\xaa\x79\x80\xa9\x6b\xb6\x3c\x52\xd7\x6a\xc3\x46\xff\xd4\x5b\xee\xbb\xa5\x0e\xf9\xd6\x93\xcb\xd4\xfd\xba\x2e\x43\xc2\x93\x9b\x52\x9f\xfd\xad\x68\xa7\x1f\x73\x57\x04\x89\xe3\xf1\x3b\xfa\xc8\x4d\xf9\xc8\x7e\x31\x40\x43\xa6\xf3\x2f\x5e\x72\x14\xa9\x9f\x76\x9f\xaf\x57\x5a\x95\xb0\x98\x69\x75\xb9\x30\xcd\xb2\x12\x69\x56\x0c\xcb\xae\x2e\x86\xc6\x1e\xa8\x94\x62\x95\x82\xba\x29\xf8\x10\x2e\xfe\xda\x5e\x5f\x04\x54\xb1\x47\x61\xa6\x4c\x06\x04\x32\xa7\x84\x17\x18\x9e\x1f\x49\x00\x60\x99\x8a\xbf\x7f\x9e\x00\x35\x66\xe1\xd9\x2e\x5b\xe8\xf2\x7d\x0c\xf2\xea\xb2\x0b\x88\xbd\xe7\x80\xfb\x8d\x4d\xad\xab\xe9\xda\x61\x5d\x07\xdc\x3f\x01\x71\x4c\x3f\xfb\xee\x4c\xb4\xe2\xe4\xd7\x0e\xd3\xe8\x11\x78\xed\x88\x27\x3d\xfa\x3e\x5f\x27\x0c\xa6\x77\xdd\x77\x3b\xd4\x15\x9e\xba\xc3\x42\x97\x80\x2d\xaf\x13\x9d\x7b\xf9\x75\x0c\x47\xb1\x79\x11\x78\x68\xe4\x53\x1d\x15\x4a\xea\xde\xab\xc2\x35\xcf\xbc\x9c\x4f\x10\x09\xae\x6b\xeb\xda\x5f\xa1\x94\x7b\xbb\x32\x3c\xdf\xae\x1d\xa8\xca\xcb\xef\x84\xb1\xe0\xa7\xe2\xe6\x1f\x85\x43\xdc\xbc\x88\x51\xc4\xaf\x88\xa1\xc6\x81\x5a\xbd\x1c\xf7\x0c\x1e\xf6\xf5\xf7\xeb\xcc\x60\x75\x5b\x7a\x02\x06\x99\x97\x53\x60\x66\xde\x75\xca\x3d\x5f\x6c\x8e\x2b\x16\x69\x46\xa8\x14\x9d\x25\x85\x9e\x78\xd6\x48\xef\x88\x2f\x84\xa5\x2e\xca\xcb\xf1\x50\x0a\x79\xdb\xfe\x8c\x17\x7e\x57\x3d\xf5\x00\x85\x2e\xa4\x98\x22\x65\x7d\xc1\x7e\x72\x90\x9a\x97\x2c\x5b\xbc\xce\x53\xf7\xed\xd7\x09\x97\xea\xa5\xf9\x5d\x35\xa4\xee\x51\xe0\x52\xbf\x3b\x2f\x99\xbb\xed\xdf\x60\x02\x1c\x8c\x8f\x23\xcd\xac\x83\x35\xe9\x90\x96\x33\x34\xa4\xa7\xe6\xb5\x23\x70\x15\xc8\xbf\x76\xa6\xae\x0e\xa6\x79\x42\x5a\xea\x9c\xf9\x72\xaa\x6e\x81\x5a\xa2\x4e\x28\x65\xf4\x6f\x29\x73\x54\xad\x94\x89\xbd\x8f\x8c\x0e\x79\x74\x41\x2a\x5b\x26\xdb\x8b\xdb\x7f\x27\x52\xbf\x49\x5d\xb9\xc2\x3e\x15\x35\x59\x42\x2a\xc8\xd6\x99\x2f\x3d\xf4\x33\x85\x36\xb3\xe9\x73\x7a\xac\x0d\x6a\x8b\x62\x00\x42\x88\xcf\x9e\xef\x3e\x02\xd4\xa5\xcc\x6e\xb7\x9a\x3e\x7e\xee\x83\x56\xfd\xcc\x60\x86\x3a\x5c\x48\x5d\x89\x52\x3f\x43\xba\x29\x4f\x3a\x13\xe9\x5c\x9a\x95\xe1\x48\x92\xc6\xca\x11\x2e\xa0\xf6\xac\xc0\xf2\x94\xa7\x4c\x69\xf7\x32\x38\xbd\x18\xeb\xf9\x61\x99\xe6\x84\x3b\xb8\x49\xcd\xf9\x33\x52\x2b\x7e\x56\x59\x7a\x93\x23\xef\xac\x76\xed\x38\x90\xda\x4d\x32\xc9\x7c\x69\x66\x46\x12\x38\x6f\x40\x7f\xa8\x6a\xe9\x9c\xaa\x62\xa5\x33\xcd\x2a\x21\x34\x96\xae\xd3\x08\xf4\xcc\x0d\x46\xfd\x95\xf1\x78\xc3\x96\x7c\x29\x89\x8b\xe0\x6c\xbe\x59\x1b\xa8\x1d\xbd\xca\xaf\x1d\xfe\x68\x76\xc0\x81\xd2\x99\xcd\x0c\x0a\xbb\x36\x33\x28\xf3\xda\xf4\xa0\x1a\x3c\xcd\x6c\xf6\xb9\x1f\x25\xad\x3a\xc9\x71\xa8\x9f\x28\x1a\xc5\xae\x43\xcd\xf8\x51\x7e\x4b\x8f\x52\xda\x1d\x8e\x14\x82\xe1\x1e\x0e\xed\x4c\xfb\xf9\xd9\xec\xcd\x4c\xc8\xc4\xea\x2d\xfd\x5d\x37\xcd\x6a\xbd\x58\x04\x40\x0a\x07\x66\x50\x93\x22\xee\xac\x7b\x43\x11\xd7\x90\xd2\x33\x4c\x9e\x5f\xe1\x9f\x9c\x21\x1c\xc3\x7f\x1c\x58\x32\x8e\xe1\x0f\xaa\x73\x0a\xc1\x50\xae\x1a\xca\x7d\x30\x74\x4e\xe7\x35\x1f\xba\x0f\x86\xb3\x6d\x9f\x62\x10\xf9\x11\x7e\x7f\xfa\x98\x92\x7e\x0c\x6e\x5b\xd9\x67\x49\xa4\x5b\x5f\x07\xe7\x06\xbd\xc9\xaf\x1d\x8b\xad\xf9\xb6\x75\xe4\xcb\x9f\x3b\xf1\xf0\x3a\x32\x0d\x2b\x46\xb0\x88\x7b\x0e\x2a\xa4\xb8\xa2\x84\xf2\xaf\xfc\x7d\xbb\x39\x3b\x57\x69\xac\xbc\x9e\xf6\x97\x8a\x76\xe8\x46\x93\x1d\x48\x2a\xbd\xed\x3f\x2f\xec\x3e\x27\x0a\xe8\x4f\x99\x5f\xe3\x61\x41\x76\x4b\xbc\x67\xb0\x86\x67\x8d\x0c\x8f\x3f\x83\xd4\x9d\x4e\x7f\xa8\xe2\x42\x06\x24\x38\xe5\xc9\x69\xbc\x5b\xbf\xc3\xc3\x9d\xeb\xfc\xa7\xd0\xf0\x8f\xb4\xa3\xad\xf0\x34\xa3\xa0\xf9\xb0\xb0\xe1\x15\x33\x27\xfe\xce\xf1\xf1\x29\x95\xb6\xc7\x1a\xea\x28\x74\x2c\x30\x3d\xc9\x2f\x33\x83\x35\x5f\xe6\x43\x3c\x10\x68\xa1\x6e\xb7\xd1\x51\xf3\xa5\xee\xa3\x66\xbe\xb4\x82\xe0\x78\xd1\x7d\x45\x70\x3c\x9f\x5a\x9f\x21\x58\xf4\xd2\xbe\x02\x97\x9c\x1d\x79\x05\xdf\xfa\x35\xfd\x4c\x43\x48\x96\xa7\x50\x8b\xc4\x4e\x31\x1e\x03\xf8\xeb\x04\x73\x31\x68\x56\xf9\x00\x2a\x40\xd5\x39\xc8\x7e\x83\x35\x3e\xec\x3d\x38\x9e\xba\xe6\x9a\x96\xca\xfc\x69\x85\x34\x96\x0b\xd1\x3f\x2c\x94\x98\xec\x81\xc3\x87\x21\xe9\x9d\x7c\x05\x5d\x39\x07\x5c\xd4\xd2\x8d\xb8\x88\xf5\x1d\xb0\x0d\xac\x3a\x30\x04\x91\x84\x3c\xb1\x3f\xd2\x0d\xe7\x85\x74\x83\x8b\x31\xfd\xf0\x66\xa5\xa5\xd4\x1a\x39\x1d\xc9\x63\x00\x40\x70\xea\x41\xfc\x79\x82\x7e\x9b\x7e\x11\x0f\x80\x6b\x0e\xce\x81\x19\xb0\x34\x19\x59\xf6\x6f\x52\xaa\x8c\x55\x74\x26\x80\x71\xa4\x53\x8c\xb6\x92\x52\x3b\x55\x32\x7e\x2f\x39\x86\xec\xe0\xe4\x9f\x5e\x7d\x2d\xe4\x1c\xaa\x37\xe9\x21\x85\xf2\x31\x30\xc3\x77\x3a\xa4\xfa\x94\x6a\xbe\xf1\x1f\xe9\xb1\xfb\xdd\x90\xdb\x15\xa4\xe3\x1e\xd2\x05\x69\x46\x43\x85\x09\xd3\x51\x72\xec\x33\xa4\xe3\x1a\x2d\xe4\xe5\x4f\xd3\x92\xaf\x49\x19\xbf\x11\x1e\x20\x35\xa6\x43\xf7\x8f\xe3\x21\xed\xe7\x61\x4c\x13\x67\x13\xbc\x25\x90\xc7\x91\xe1\x3b\x92\xff\x95\xf9\x36\xc8\x23\x42\xda\x91\xfb\xc7\x81\xec\xd7\xdb\xf8\x02\x70\x63\x1a\xc6\x01\x08\x66\x0a\xc6\x71\x0f\x97\x66\xe5\x4e\xea\xcf\x87\xec\x3e\xfe\x1b\x58\x2f\x47\xc4\xb9\x98\x5f\x5a\xf2\x1a\xf7\xd4\x55\x43\x9c\xed\x27\x6b\xca\x8a\x4f\x36\x79\x0f\xe9\x53\x76\x26\xdf\x2b\x9e\xe9\xc5\xf5\x93\xff\xd6\xc1\xaf\x8f\xff\xe0\x5a\x99\x68\xae\x4c\xbd\x8d\x12\x6c\x1d\x47\xfd\xef\xa8\x18\x45\xfd\x27\x8a\xc9\x4d\x29\x64\xc6\x95\x1e\xfd\x27\x29\xd3\x4d\x72\x96\xc8\xe1\x33\xf1\xca\x0a\xb7\x51\xb9\x25\x9d\x8b\xc7\xd5\x1c\x9a\x05\xdc\x18\x59\xbe\x65\xc5\x84\x60\x10\x8c\xa3\xc4\xdf\xb2\x30\x65\x4a\x0a\x9d\x03\xa5\x40\x29\x0c\xc8\x2b\xcd\xf8\x2f\xf2\xa1\x58\xfa\xe9\x50\xd2\x1b\x8b\x79\xf9\xca\x8a\xb9\x58\x3e\x2c\x72\xb6\x5e\x61\x97\x0a\xa9\x89\xc2\x98\x15\xda\x63\x84\x05\x96\xf1\xb0\x4f\x33\x76\xe8\x3d\x7d\xd8\xeb\xcb\x68\x30\x91\xb1\x06\x16\xc7\x43\xbc\x88\x0b\x1f\x13\x0e\xbe\x65\xb7\x74\x4f\x5d\xa3\x24\x33\x04\xe7\x8d\xff\xb7\x54\x93\x8e\x04\x76\x56\x81\x71\xc0\x69\xcb\xcc\xc3\x4a\x2e\x0b\x04\x4e\xfb\x02\x7f\xdc\xcd\xf2\xdb\x5b\xd9\x7f\x6a\x28\x3a\xa1\x4f\xb2\xd7\xba\x50\xe8\x8f\xfb\x5f\x0a\xe4\xcd\x84\x5c\x7a\xcd\x6d\x28\xe6\x15\xca\xbb\xa2\x87\x54\x98\x69\x8c\x44\xbd\x8c\x3f\x4e\xb6\xc1\x66\xfb\x8f\x74\xb2\x64\xb0\xa5\x0f\x7b\x72\xae\xd4\xb5\x37\x8f\xe1\xe9\x69\x7c\xe5\x9e\x6d\x6e\xcc\x0a\xa4\xad\xb1\x21\xdc\x3f\xcd\x4d\x3c\x28\x98\x74\x6b\x75\xb9\x66\x9b\x02\x8e\x94\x03\x8f\xec\xc6\x4c\xcd\x5f\xcb\x99\xc4\xa5\xec\x54\x26\x83\x5a\x10\x14\xce\x5c\x30\x5e\x69\x54\xa8\x2d\x38\x4f\x28\x92\x7b\xe8\x54\xd5\x53\x47\x6e\x89\xe6\x5e\x86\xc7\xd2\xa3\x50\xd2\x57\x49\x59\x55\xcd\x7c\xc7\x72\xa5\xb0\xab\xb0\x43\x59\x87\xb0\x81\x9d\xf3\x20\x77\x30\x7e\xb5\x3f\x6b\xa6\x92\xbb\x8a\xfc\x96\xf8\x67\x70\x04\xdc\xbc\xde\x40\x16\x6d\x02\x38\xcc\x94\x4a\xae\x72\xba\xf6\xa3\xfe\x68\x85\xcd\x79\x1e\xa3\xc7\x58\x95\xfe\x7c\xc8\x54\x32\x78\x69\x1b\x30\xf1\x73\x73\xd7\x99\xf1\xc9\xdc\xcd\x19\xf9\x3d\x18\x50\x83\x3c\x64\x6b\xa6\xf0\x52\x3b\x05\x8a\x11\x0c\x48\xcd\xd0\xd3\xce\x10\x75\x40\x09\x47\xde\xf3\x21\x1b\xac\x43\x6e\x43\x96\xa1\x8c\xcb\xaa\x50\x3e\xf8\xb2\x6f\xdf\x18\x1b\x78\x92\xde\x38\xa8\x91\x79\x6f\xde\x63\xe3\xf8\xf2\xdb\xfc\x71\x8c\x7c\xeb\x49\xf8\x0f\x7e\x94\x37\x67\x22\x36\xe7\xdb\xdc\x76\xa4\x97\x9f\x0e\x16\x0c\x50\x67\x6f\xf0\x96\x33\x20\x17\x38\x5a\x20\x97\x3a\x8e\x54\xb5\x09\x80\x8e\x32\x8e\x25\x57\x58\x7a\x8b\x7f\x0f\x36\x5f\xda\xe1\x0c\xf7\xbf\x31\x44\x11\x33\x6f\x74\x4b\x7a\xdd\x96\xa0\x6c\x00\xbf\xb7\xbf\x06\x8b\xff\x86\x17\xd0\x68\x6f\xbc\x39\xa9\x6b\xb5\xce\x14\xd9\xfd\x0c\x2a\x6f\x3a\xd3\xc2\x04\x2b\x3d\x3f\xce\x38\xc3\xf0\x3f\xc3\x4b\x81\xb1\xf9\xc1\xd2\x40\xc1\x7d\x1c\x26\xb7\xe7\x4b\xb1\xc6\x19\xca\x86\x06\x9b\x47\x6f\xf5\x6f\x92\x86\x58\x62\xcc\xcb\x0f\x06\x24\xf2\x43\x6f\xec\x6b\xee\xb8\xfc\xc4\x3e\x17\x3c\x1f\xae\x1c\x7a\x48\x46\x0f\x29\xb7\x48\x43\x0e\xe8\xd9\x7c\x1f\xb0\x95\x80\x2d\xe5\xe4\x70\xf8\xe1\x5c\x3b\x52\x28\xb1\x70\x86\x72\xe0\x7e\x06\x00\xe8\x65\xe4\x4b\x31\x3d\xd7\x68\x1f\x82\xdf\xb6\x74\xe9\xc1\x86\xb2\x89\xcd\x9a\x39\xd3\xc1\x09\x62\x6c\x82\x6b\x19\x99\x6b\x41\xcf\x06\xa6\x2f\xd9\x0b\x78\x6c\x3a\x3f\x18\x8f\x6c\x7d\xde\xd5\x03\x6c\x9c\x7a\x57\x5f\xc7\x99\x86\x7e\xa2\x3c\xdc\xaf\x63\x89\xf2\xda\x73\x82\x56\x01\x99\x3e\x85\x41\xa9\xa3\xa4\x50\xed\x60\x25\xfb\x89\x7b\x6e\x82\x0c\x39\xe9\xb9\x6c\x00\x72\x02\xd0\x6a\x7e\xf1\xfe\xce\x94\x7a\x57\xe2\x33\x75\xea\x81\xdc\xfd\xf8\xd5\xfa\x38\xd1\x6d\x7a\xb5\x5e\x73\x87\x64\x00\xca\x38\xf9\xef\xaf\xdd\xb6\x67\x46\xbf\xf4\x74\x36\x83\x67\x61\x66\x3e\x9d\x5e\x8a\x06\x49\x12\xad\x7c\xaa\xe7\x45\x4f\xa7\x1f\xd9\xd7\x29\xf3\x46\x6c\x69\xc8\xcc\x8a\x56\xd0\x9b\xf6\x9a\xdb\x28\x3d\x69\x3f\x49\xa0\x71\x93\xe2\xaa\x23\x94\xed\xaa\x0c\x41\xf6\x60\x2e\xa3\xf2\xa6\x7d\xa6\xd0\xeb\xcd\x32\x59\x7a\xe3\x80\xf8\xb2\x29\x67\xbe\xd4\x8a\x22\x3c\x7f\xb8\x58\xd9\xcf\x3f\xef\x3b\xec\x86\x1f\x70\x4f\xc4\xe3\xcf\x4a\x1c\x0d\xff\x9b\x3e\x5f\xb3\x2c\x3f\x76\x21\xd6\xd4\x0f\x87\x52\x4b\xa9\xdb\xad\x50\x6a\x37\x8e\xb2\x9f\xb7\x28\xea\xd7\x99\x03\x62\x97\xff\xa4\xc5\xe3\xc2\xfa\x2d\xf8\x8f\x21\xe8\x4c\x9f\xc9\x14\x4e\xa4\x0e\x94\xcb\x2f\x8b\x4d\x97\xcb\x79\x1d\xfe\x7e\xf8\x33\x7f\x5c\x18\x23\x98\x04\x22\x29\xbc\x8d\x9d\xbc\x71\x6f\x29\x5b\xee\x24\x23\x78\x9b\xcc\x68\xfd\x24\x33\x94\xf8\x16\x45\xf4\x73\xa8\x03\x64\xb9\x9f\xbc\x5f\x63\x84\x3c\x3c\x3f\x07\xa4\x72\xae\x20\xa5\x02\x3f\x41\xfa\x09\x61\x72\x9e\x00\x04\xe7\xcf\xd7\x83\x27\x96\x85\xde\xb9\x57\xce\x59\x4b\x79\x0d\x4e\xe0\x27\xcb\x79\x0c\x86\xb3\x78\xdf\x24\xbf\xdd\x20\xa7\x4b\x0f\x48\x37\x14\xea\xe3\xc2\x13\xd2\x2c\xdf\x29\x9d\xe6\xea\x4e\xa9\xcd\xbb\x1a\x4a\xeb\x32\x42\x09\x0a\x69\x2f\xf1\x7a\x4d\xfa\x64\x80\xd3\xca\xa5\x43\x7a\x6f\x5b\xd5\x2c\x41\x4a\x06\x66\xd0\x7a\x39\xa8\xc9\x18\x34\xc4\xd1\xff\x29\x55\x34\xe7\x8c\xc0\x20\x21\x7b\xb4\xd7\xcb\xd0\xd1\x8b\x49\x60\x05\x0f\x3e\x64\x5d\x26\xa5\xb2\xae\x40\xf3\x2c\x41\x41\x48\x30\x79\x53\x96\x61\x93\x39\xf0\xfe\xe4\x0d\xc8\x12\xfa\xa3\xe0\x85\x59\x42\x7f\xc4\x31\xb1\x0c\xf0\xe8\x9c\x91\xd6\xc1\x81\xdc\xca\x78\x1d\xba\x8c\x73\x30\xee\x9b\xea\x1e\x5f\x0a\x59\xfc\x94\xda\x0a\xb1\x92\x5a\x7a\x59\x3e\xea\xd3\x90\x93\x80\x58\x2a\x2c\x83\x3f\x88\xb3\x7c\x93\xde\xbe\xb6\x43\xd6\x61\x47\x1b\x8f\x56\x96\x70\x1a\xa7\xd3\x56\xdc\x14\xcb\xed\x3f\x3f\x98\x6c\x96\xf4\x30\x4e\x37\x43\xe2\x0e\x7d\xa6\xd0\x1b\xe6\x48\xa9\x42\x44\xb4\x14\xca\xc7\xfa\x62\xf4\x0e\xbc\xfa\x2f\x29\x41\x9f\x21\x68\x25\xca\x43\xc9\x6a\xaa\x8c\x7d\x0b\x07\x94\x49\xf0\x0e\x68\xfc\xa6\x65\x21\xef\xc1\xd7\x89\x33\xf6\x80\x92\x84\xb5\x46\x5d\x8a\xd4\x5f\xc0\xd3\xad\x73\x30\xf0\x01\xe9\x56\x4f\x28\x69\xd0\x33\x1f\x6a\xa3\xdb\x63\xb5\x8c\xb5\x38\x41\x57\x2e\xe1\x27\xca\x05\x13\x3b\x52\xbf\x73\x75\xdf\x94\x45\xd6\x41\x3b\xde\x1b\x70\xa6\xa0\x15\x17\x88\xc2\xc5\x9b\x72\x8c\x93\xe5\x58\xfc\xb8\x74\xd6\x69\xb7\xa8\x53\x36\xdd\xa4\x9d\x64\x33\x23\xb0\xc6\x3c\x19\xfb\x42\xd6\x34\x48\x09\xd1\x46\x5d\x84\x28\x4c\x22\x78\x44\xe1\x35\xc9\x3a\xb9\x2b\x1f\x8c\x5e\x6e\x31\x10\x03\xeb\xf4\x01\xa7\x85\x32\x63\x3e\x85\x02\xd8\x13\x7d\x60\xf9\x79\x3a\x1e\x93\x65\x6c\x44\xe7\x0a\x7e\x9d\x91\x85\x4c\xe7\x36\x9f\x8e\xbf\x05\xf9\x72\x58\xff\xd9\x9e\x96\xb4\x93\x1a\xc3\x75\x5a\x4c\x64\x02\xa8\x0a\xe7\x5e\xb9\x49\x2d\x6f\x4f\xa1\xe5\xd0\xc8\x10\xb4\xbe\x08\xbb\x73\xb3\xbe\xee\xa4\xf8\xe4\x0d\x0f\x39\x40\x3f\xe7\xa6\x55\xcc\x5f\x2d\x35\x7d\xed\x37\x52\x95\x8d\x72\x41\xa2\x22\x53\xaa\xe9\xec\x29\x94\x7e\x6f\x29\xb3\x15\x6b\x0b\x63\x15\x6e\x29\x6d\x19\x2c\x41\x37\x8a\xe3\xfa\xde\x94\xcc\x30\x6b\xfb\x55\xd8\xf4\xf0\xb8\x60\x1d\xc7\xc4\xf1\xb6\x0c\xeb\xc0\x31\xb0\x8a\x9d\x2e\x40\xc6\x97\x50\x1e\x27\xc9\x20\x6e\xd2\xe3\x4b\xbb\xf6\x05\xb0\xe9\x0b\x9e\x15\x18\xb0\xe0\x6d\x9f\x54\xe6\x12\xf1\x64\xf8\x3e\x36\x23\x3e\x84\xc7\x28\xdc\x84\xad\x00\x30\x32\x47\xcb\xab\x94\x0f\x75\x1d\x3b\x99\x14\xdb\xc3\x0e\xc2\x76\x93\x96\x51\x99\x23\x0b\x8c\x9e\xba\xfc\x0b\x7d\x1a\x14\xec\x70\x34\x37\xb9\x4d\xf2\x33\xba\xf9\x19\xc8\xc9\x22\x79\x32\x38\x08\xac\x02\x33\xf0\x6b\x84\xde\x07\x90\xb1\x2e\x8e\xc6\x17\x14\xbd\x0e\x48\xfd\xb7\x8d\xf0\xe5\x47\xfc\xb3\x3d\x5f\xfa\x96\x8f\x66\x7d\xd5\x7c\xa2\x3f\x2e\xaf\x29\xe2\xd7\xe1\xf3\x31\xa5\x97\x5f\xf8\x47\x6a\x1a\x2a\x71\x02\x25\x5c\x97\x1f\x1f\x3b\x11\xd4\x4d\xbe\x3d\xda\x34\x24\x29\x0f\x1c\x70\x5d\xf6\xad\xb6\x94\xda\x67\x02\x72\x6f\x19\x02\x31\x78\x41\xb3\x84\x81\xa8\x5c\x50\x2c\x50\x0e\xc0\xd6\xd6\x65\xd1\xe0\x63\xe0\x72\xd0\x7c\xac\x99\x65\x90\xc3\xc8\x14\xc9\x80\x3a\x81\xb4\xad\x0b\x8d\x80\x79\x70\x39\xb3\x2e\x2b\x41\x74\x80\x99\xba\xc6\x69\x02\xbb\x58\x97\x6d\xe9\xe3\x15\x52\x13\x81\x52\xb8\xb2\xc2\x8c\xc1\x4f\x71\xb0\x49\x2e\x9f\x8e\x26\xf2\x51\x91\xf1\xcf\x92\x5f\xd9\x4c\x8a\xbf\x14\x7c\xa1\xc6\x82\x52\xd4\x81\x0e\xe2\x73\x55\xbf\xda\xe1\xc5\xda\x72\xd8\xfc\x13\xe0\xdc\x72\x48\x82\x6b\x22\xe5\xaa\x33\x7f\xbe\x9e\x76\xfb\xdd\x12\x42\xc5\xd8\x06\x8c\xc3\x25\x68\xc3\x99\xdd\x53\x51\x53\x3e\x67\x2d\x47\x2f\x38\xc1\xe3\xad\x6a\x5d\x74\xa4\x17\x89\x86\x6c\xf0\x6a\xab\x0d\xaf\xee\x52\x80\x82\x1a\xbd\x5d\x9d\xca\x88\x27\x75\xcb\xe1\x0a\x62\xeb\x28\x5c\xc1\xc9\x6d\xcf\xaa\x36\xf5\x47\xa8\xe1\x01\x5d\x90\x5a\xfb\x99\x2e\x3f\x7a\x1e\xf2\xb7\x83\x65\x09\xcf\x70\xe2\x8e\x5e\x82\x33\xd4\x81\xe8\xac\x36\x0c\x11\xcf\x86\x2f\xf0\x0a\x66\x09\xb0\x70\x5e\xb0\x57\xf5\xcd\xde\x59\x52\xa8\xd4\x2e\x2c\x66\x0d\x9b\xa6\xd5\xed\x5f\xe6\x47\x8c\x18\x46\x37\x83\x35\x38\x0b\x7d\x0a\x32\x70\x64\xe1\x1d\x21\xf3\x95\xa5\xde\xfe\x67\x96\xc4\x49\x62\x80\x0d\x2e\x42\xf7\xb7\xa7\x5d\x6f\x3a\xf6\x7d\xf5\x59\x0d\x79\xa7\xa0\x08\x95\x18\x49\xcb\xf0\x02\xae\x71\x97\x22\x24\x5c\x1c\xe3\x96\xd1\x05\xdc\xe2\x2e\xc3\x09\xa2\x1f\x9a\xaf\x69\x26\x03\x70\x48\x04\x92\x22\xde\xe4\x47\x8f\x13\x42\x29\xa8\x1f\xeb\x2c\x74\x41\xc1\xb5\xbe\x1a\xfc\xc2\x6e\x6c\xc6\x04\x02\xfb\x5b\x82\x17\x0c\x1c\x41\xab\xa1\x3c\x7c\x3e\x5d\x8e\x90\x70\x4d\xfe\xd2\x71\xfc\xaf\x99\x21\xd8\x83\x3f\xd2\x10\xe3\x63\xf4\x42\x1b\x44\xb9\x35\x7b\xe5\x9d\x09\xf5\x26\xe5\x81\xcd\x97\xd6\x24\xc8\xe2\x66\x6b\xe5\xc8\xec\x39\x00\xd2\x89\x75\xd5\x2c\x93\x66\xda\xf1\xd2\x9f\x29\xbc\x15\x7e\x54\x49\x73\xc2\xc9\x9c\x59\x04\x54\xe8\x3d\x93\xb2\x15\x37\x92\xad\x60\x64\x42\x14\x89\x91\x09\xe3\xbc\x42\xf2\xd7\xcc\x1f\x42\x28\xf3\x47\x06\x53\xfe\x5a\x6a\xa6\xb4\x54\xfd\xc9\xf9\xe4\x2e\x1d\x76\xa1\x60\x51\x76\xdb\x1f\x76\x70\x2d\xa7\x03\x18\x27\x36\x3f\x98\x01\xde\x9a\xae\xce\x61\x02\x36\x21\xe6\x7f\x04\x9f\xc3\x30\xf0\x14\x69\x91\x01\x80\xc8\x62\xab\x3b\x4a\x7a\x0d\xc5\x94\xf8\xb7\x15\xb9\xff\x78\x46\x34\x8d\xcc\x64\xb4\x78\x7e\x8e\x90\x55\x9d\xd0\x8e\xa1\xa3\xe7\xc5\xe8\x9d\x60\x30\x9d\x4c\x46\x90\x42\xeb\x86\xa7\x21\xeb\x06\x96\x4c\x81\x17\x4e\xae\xae\x57\x47\x59\xa5\x50\x0e\xfe\x89\xa0\x73\xac\xfe\xf3\xc8\xa4\x2c\xaf\x59\xbe\xbc\xf4\x52\x9d\x19\x5a\xd6\x22\x98\xce\x8e\xd9\x80\x2b\x74\x39\x66\x43\xf4\x84\x41\x03\xbc\x3e\x58\x0a\xdc\x7f\x4f\x7c\x3e\xdc\x1e\x6c\xba\x7c\xeb\xcb\xb4\x63\xe3\x38\x75\xe5\xe7\xbb\x10\x2d\x8e\xd5\x7f\x1e\xd8\xa9\x0e\xe9\x70\x1e\x18\x65\x0a\xe2\x70\x70\xc7\xb0\xba\xe1\xa0\x07\xaa\xc1\xa8\x81\x9c\xe8\x06\xea\xe8\x0c\x59\x3c\xb9\x1d\x52\x88\xc6\x98\x56\xc3\xa6\x2a\xa8\xca\x25\x98\x40\x8d\x00\x19\x4e\x0e\x3e\x8f\xf1\xb7\x14\x1f\xa8\x27\x0e\x5c\xc2\x10\x94\x98\x89\x60\x08\x78\x88\xbc\x8c\x21\x88\x8c\x18\xb2\x80\x78\x93\xb1\x86\x5f\x2e\x10\x9b\x6d\x0d\xe1\xe9\xb2\x07\x07\xc2\x06\xd3\x5e\xb1\x23\x3a\x2f\x98\x97\x43\x47\xf0\x7e\x78\x0d\x2c\xa0\x1a\x52\xc1\xb9\x47\x28\x19\xd2\x84\x78\x5b\x06\x17\x64\x03\x28\x30\x7f\xcd\x6e\x1d\x8b\x65\x61\x78\x8b\xf9\x1a\x90\x16\xf9\x6c\x58\x00\x03\x04\x71\x5b\xc3\x51\x71\x4a\x28\x6f\x25\x6c\xbb\xe1\xdb\x9e\x96\x35\x14\x0c\xea\x59\x25\x67\x1f\x61\x87\x0e\xe1\x86\x9f\xd1\xfa\x6d\xff\x59\xf3\xa1\x17\x09\xa6\x52\xec\x88\xbb\x59\x16\x54\xfe\x42\x42\xe8\x2d\x63\x0b\x4a\x4b\xb3\x3e\x4c\xa6\x4c\xa2\x30\xf3\x6e\x3f\x06\x1b\xc9\x20\x04\xae\x40\x96\x41\x07\x3c\x79\x5d\x8e\xb8\x9f\x5f\x9e\x91\x43\x1d\xd2\xc6\x0f\xbc\x38\xc9\x74\x7b\x41\x59\x48\xe1\x00\x99\xf6\x78\x80\xb8\x5b\xd3\x42\xea\xf9\xf2\xed\x86\xf2\xa9\x10\x91\x3d\xbd\x28\xf6\x1b\x27\xd2\x99\x94\xa8\xa6\x64\x51\x83\xa9\x5b\xd3\xbe\x4b\xe0\xb4\x6b\x22\x95\xb0\xbe\x15\x82\xa2\x66\x26\x27\x2e\xab\x9a\x86\xec\x3f\x42\xf0\xcc\xc9\x52\xd3\x29\x47\x6f\xec\xce\xe9\x40\x9b\xe5\x08\x69\xc0\x22\xdd\x20\x6b\x0a\x9f\x62\xb9\x70\xc4\x57\x44\x88\x4a\xd8\xb1\x35\xf1\xaa\xa0\xb5\xa7\x9f\x22\xc0\xd4\x33\xec\x46\xbb\x72\x40\x13\x2c\x6c\x19\x73\x10\xef\xd2\xf4\xb5\x10\x6f\x75\xd6\xf4\xfd\x33\x8c\x30\xd1\x57\xcf\x97\x1e\x01\x3f\xea\x1b\x86\x9e\x0f\xb5\x75\xe1\xe1\x89\x4d\x93\xd9\xbd\x99\x86\x50\xcf\x7d\xad\x01\x83\x0f\x48\x45\x1b\xc5\xac\x5a\xa8\x2f\x46\x20\x10\xc2\x09\xc2\x7e\x2d\xc7\x67\xb4\x3f\x75\x09\x84\x70\x4b\xcd\x34\xdb\xdc\x6c\x4a\x25\xb1\xd8\x63\x0b\x29\x04\x2b\x2c\x8c\xe4\x74\xca\xe9\x0a\x53\x73\x61\xe6\xc0\x29\x8a\x3b\x71\xf2\xdc\x6a\x39\xee\x44\x9f\xf9\xd2\x6c\xcd\x7f\x2f\xeb\x36\x38\xd5\x28\x05\xe2\x74\xad\x65\x26\xe2\xb8\xe4\x8c\x01\x04\xf8\x5a\x8b\x83\x17\x46\xcd\x72\x5c\x5e\x84\xba\x61\x09\x57\xe6\x7d\xf9\x75\x4b\xa6\x7a\x99\x2d\x98\x69\xc3\x12\x40\x5b\x2c\xc2\x57\x00\xb1\x5f\x0e\x58\xd1\x32\x07\x8a\x57\x71\x9b\x38\x7f\xca\x70\x23\x16\x66\xe6\x63\x33\x00\xa6\x56\x1c\x34\xdb\x43\xfa\xa7\x19\xac\x1f\xb6\x10\xff\x71\x29\x49\xc0\x91\x23\x23\x78\x86\xf6\x90\x3e\x58\xf7\x34\x24\xe1\x8b\x1d\xb3\xd1\x56\xa1\x2e\x95\x1d\x50\x9a\x75\xec\xba\x6d\xa7\x76\xa6\x56\xe1\x2c\x2a\x2f\xa6\x96\xe3\xfe\xbf\x08\xcd\xb5\xb6\x4f\x52\xc7\xf3\xe9\x52\xdd\x14\xca\x53\xc9\x9e\x22\xf0\x05\xd8\x87\x65\x74\x03\xb1\x8b\x96\xd1\x0d\x1d\x68\xef\x52\xdc\xff\x4a\xac\xa2\xa5\xb0\xff\xa3\xa6\xcb\x9b\x9b\x2e\x9e\x39\x2c\x27\x01\x98\x0f\xe5\x1f\x19\x50\x66\xd2\xfc\xa5\x35\x55\x4b\x33\xea\x1f\xc9\x2b\x70\x43\x07\xa9\xb2\x0c\x6e\x00\xcd\xbd\x84\x66\x38\x2f\x2c\x52\xe1\x17\x4a\x9c\xb1\xc2\x2f\x54\x62\x77\xae\xed\xb4\x30\x23\x65\x56\x27\x38\xa0\x36\x47\xa5\xac\x87\x43\x2a\xa0\x3f\xb6\xa3\x54\x8e\x50\xb6\x42\x30\x32\x15\x5b\xa3\x02\x20\x5f\xdb\x81\x7f\xe1\xa5\x6d\xce\x42\xce\x6e\x4c\x9d\x2c\x16\xd6\x33\x26\xc9\x06\x1b\x43\xab\x7e\x8d\x70\xa4\xaa\x6d\x2f\x7e\xd2\x67\xfd\x87\x62\x1e\xd3\x0c\xc6\x16\xe3\xc1\x3d\x5c\xd2\xec\x4f\x3e\x72\x33\x84\xe2\x6e\x54\x62\xcc\x2c\x23\x1b\xd2\x89\x90\x0d\x15\xd0\xfe\x72\x48\x8e\x2b\x9b\xfd\x0d\x9f\x21\x56\x1d\xa1\x83\x77\xb4\x4b\x58\x86\x1a\x71\xf8\x36\xb3\xa0\x3e\x94\x81\xe0\xbc\x98\x49\x47\xeb\xe8\xe0\xae\x97\x53\x10\x5c\xd9\xec\x8e\xc8\x91\xc3\xab\x01\x08\xe1\x0f\x03\x10\x4e\x10\x62\xeb\x9d\x74\xff\x50\x3e\xb8\xc1\xa0\x0a\xac\x71\x12\x33\x6c\xbd\x9d\xc3\xff\x0a\xc5\x7f\xa5\xaa\xc4\x56\x0b\x05\x4f\xa4\x59\x0b\x59\x1c\x5a\x6f\x8e\x54\x6c\xc4\xb7\x53\x09\xe5\xcf\x62\xf2\x42\xfa\x6a\x3b\xa2\x9d\x48\x1b\xe1\x92\xb7\x0f\x55\xe8\x3a\x01\x1b\xce\x13\xac\xee\x12\xb0\xa1\x12\xc1\x64\xbd\x2d\x7e\xf2\xa3\x0e\xe1\x00\x7f\xbf\x37\x36\x78\x3a\xb1\x99\xd3\x43\x7a\xc6\x30\x54\x0d\x64\x38\x73\x83\xf4\x31\xbe\xf2\x64\x73\x7c\x2c\x72\xe0\x4c\x01\x19\x4a\x16\xed\x13\x56\x98\x90\x43\xf7\x16\xf9\x50\x11\x53\xd9\x9b\x1f\x1d\xcc\x01\x3e\xaf\x8f\x6e\x18\x88\x9d\xb0\x3e\x96\x30\x3d\xfd\xdb\x32\x85\x31\x85\x87\x28\xf7\xa6\xfe\x53\x78\x2b\xb4\x47\x25\x76\xc7\x52\x96\x83\xf3\x69\x55\x07\x35\x30\x21\xeb\xe3\xc0\x5b\x07\x8c\xa9\x24\x07\xe5\xc8\x5f\x61\x62\x3f\xa4\x6e\xd4\x58\x83\x8f\xa5\x11\x5b\xf3\x83\xc2\x42\x70\x7d\xb8\x51\xc0\x03\x64\xa8\x04\xcf\x78\xd7\x07\x57\xf0\x4c\x5d\x49\x6b\x96\xe4\xe3\x1b\xf9\xe8\x80\x8f\x7d\xc1\xb9\x52\xfb\xf8\x0c\x35\x52\x68\x9b\xe7\x4a\xa1\x76\xc3\x08\x25\x85\x9a\xeb\x37\x90\x13\x51\x0a\x1f\x43\x74\x89\x11\xbc\x9c\xac\x80\x27\xc0\x4b\xf1\x42\xee\x9d\xcc\x1a\x71\xc9\xc7\x3e\xff\xa0\xdf\x32\x83\xf2\xfb\xf0\x3c\x67\x7d\xfc\x2a\x20\xca\xe6\x8b\xff\x8f\x43\xb2\xd2\x0e\x94\xf8\x11\x9d\x76\x80\x68\xb9\xeb\x8b\x5e\xaa\x21\x25\x30\x98\xc0\xaf\x19\x03\x16\x72\xdc\x8f\x13\xa4\xf5\xfa\x5a\x9a\xf0\x2b\x5f\x0c\x1b\xfc\x40\x5f\xce\x50\x57\x48\x49\x37\xa6\x5e\x00\x8d\x52\xe0\x13\xe1\x33\x0a\x97\xde\xeb\x6b\xd7\xff\x81\x9c\x26\x24\x48\xfe\xcb\xa6\xcc\x43\xc9\x1e\xc1\x7f\x25\x20\x47\x05\x60\xba\xbe\x9c\xbd\x70\xe5\x28\x76\x48\x05\xab\xbb\xbe\xe6\xa1\x91\x0f\x75\x91\xf9\x7c\xa8\xbf\x62\x0f\x39\x4f\xc1\x24\x4c\xd1\xfa\x26\xd2\x00\x94\x8d\x68\x64\xb6\xc3\x88\x64\x2f\x7e\x0d\xa8\x21\x50\xd1\x12\x8a\xa3\x67\xc3\x19\xb6\x71\x45\xa7\x7f\x39\x87\x21\x83\x9c\x8a\xa0\xc0\x6d\x5f\xdf\x49\x81\x60\x5f\x5f\xb3\xcc\x0c\xe5\xad\x32\xf3\xa5\x27\x0f\xe9\xff\xdd\x8a\xe0\x8d\xe8\x70\x4c\x91\x71\x3e\x9f\xda\xc5\xc1\xbc\x2b\x8a\xc8\x19\x95\xa7\x5c\x04\x15\xdc\xdf\xfa\x19\x5b\x05\x44\x7d\xfd\x86\x1f\x98\x75\x28\x0d\x81\xf8\x9f\x4b\x21\x46\xda\xeb\xa1\xba\x7e\x7b\x42\xf9\x78\x05\xeb\x09\x00\x72\x46\x5c\x38\x17\xc1\x20\x80\xeb\xfa\xc1\x88\xa9\xaa\xf5\x9b\xe9\xd2\x9c\xe7\x9f\xfe\xf9\x62\xb3\x70\x52\xfd\xf9\x40\x45\x30\xd0\xf5\x73\x2c\x81\x58\x48\x04\x15\x89\xe1\xe3\x3c\x06\x83\x50\xea\xeb\x87\x1d\xd4\x42\x6a\xd1\xd2\xab\xfd\x3c\xf0\x90\x10\x20\x25\xb7\x24\x02\x80\xb4\x5c\xb2\x0b\xe3\xd1\x5e\x19\x81\x71\x76\x84\x76\x5a\xc2\x78\x34\x40\x4e\x0b\x8c\x07\xcf\x3b\x97\x40\x1d\x17\x21\xcf\x96\x81\x1b\xa3\x70\x04\xfe\x19\xee\x1f\x34\x81\x80\x1b\x2d\xd7\x3f\x4a\x4f\xd0\xe2\xd3\x57\xa0\x90\x96\xcb\x96\x9f\xc1\xfe\xed\xfa\x0f\x32\xfc\x87\xcb\xf8\xca\xa7\xb6\x59\x2c\xeb\xb6\x42\x81\x34\xce\xe4\xdb\x91\x40\x3a\x6f\x15\xf6\x0b\x36\xe9\x21\x8b\x47\x3f\x21\x2d\x93\xac\x0f\xf6\xcb\x17\x54\x68\x80\xad\x60\x20\xed\xf5\xd4\xf5\xfd\xa4\xa5\xe6\x7e\xe1\x54\xbe\x52\x6a\xa3\xaf\xa7\xf4\xa3\x7f\x0d\x25\xd3\x9e\x63\xef\x7e\x39\xfc\x0c\xe1\x22\xb6\xc0\x23\x0d\x64\xd8\x16\x76\xe4\x22\x30\xcc\x56\x54\x91\xf6\xca\x87\x37\x57\x35\xb0\x40\x5b\xa9\x0f\x1a\x77\x43\xfb\xe5\x67\x02\x40\xc4\xf7\x0b\xae\xb1\x4d\xbc\xc9\x6f\x50\x18\xec\x2d\x4f\x1a\x1e\xc9\xfd\x42\x5f\x55\xa6\x08\x79\xc2\x94\x2c\x0f\x80\x66\x90\x2e\xd6\x5e\xfb\x65\xdc\x10\x66\xf8\x16\xb0\xa4\xe1\x4d\xdd\x2f\x58\xec\x62\x40\x37\x53\x35\x1e\xb6\x6e\xc5\x2a\x69\xb8\x03\xf7\x0b\x8b\xb9\xa7\xd0\x77\x4c\x17\x9d\x62\x0d\x55\x7e\x74\x1b\x3c\x52\xe8\x14\x73\xa8\xf3\x33\x9b\x21\x31\x47\xe6\xb9\x93\xf9\x53\x62\x7b\x67\x53\xbc\x29\xad\xd1\x99\x76\xbe\x56\x74\x0c\x57\x1e\xe7\x0c\xfe\x30\x8b\x59\xba\xec\x03\x4f\xe2\x15\x52\x53\x64\x17\xcc\x3e\x10\x3d\xde\x02\xfb\x80\xa5\x2c\x38\xf7\x81\x40\x39\x42\xbe\xf5\x69\x81\xb2\xf7\x66\x40\x69\x91\x6c\xa7\xef\x63\x7a\x04\x94\xa1\xc9\x2a\xc3\x33\x5f\x9c\xa1\xbc\x48\x83\x56\xa7\x36\x21\xd3\xe5\x30\x26\xa3\x1c\x29\x1c\xfa\x72\x42\x59\x10\xd5\xf4\x69\x83\x63\xf0\x67\x13\x2e\x0e\xa9\xf1\xc1\xa8\x0a\x56\xd2\x80\xae\xec\xc3\xb7\x14\x04\x79\xdd\xe0\x65\xd0\x98\x5b\x78\x99\x96\x1d\x7a\x58\x4c\x15\x06\x84\xc1\x5d\xd3\xd0\x74\x43\x8c\x68\x69\xbe\x0a\x23\xc0\x88\x7e\x48\xdb\x88\x95\x39\x32\x7c\xa6\xc0\x8e\xa4\x6d\xe0\xa0\xb1\x09\x50\x02\x74\x7e\x2b\x40\x49\x01\x12\xb2\x95\xd4\xa1\xf1\x40\x68\x1f\x5c\x6e\x3d\xa4\x36\x3e\x57\xf2\xfb\xc0\xe7\x3c\xd2\x8d\x0f\xf5\x35\xa5\xe6\x2a\xab\xb0\x6d\xf4\x0d\x8f\x43\xf7\x69\x70\x1a\x0f\x40\xf7\x69\x3e\xb2\x5a\xdf\x67\x18\x67\x40\xda\xf0\x62\xc5\x15\xeb\xa4\xd4\xa7\x50\xcf\x00\x5e\xf9\x52\xd1\x5b\x9f\x56\xb1\xfd\x28\x34\x1f\xd9\x02\xd8\x0a\x66\x52\xf0\x0d\xef\x93\x9b\x8a\xa7\xb0\x2a\xb2\xf1\x0b\x4a\x79\xe8\x5b\x28\x59\xf5\xe9\x51\xc2\xa6\xcc\xbf\x45\xf9\x36\x34\x67\x12\x89\x6b\x1b\x9a\x73\x84\x02\xec\x58\xf8\xad\x25\xc1\x88\x24\x52\x90\x93\xc6\x63\x95\x7d\xc2\x43\xa9\xa9\xcc\x66\x56\xd3\xdb\x21\x4e\x46\x39\x43\xfa\x2d\xe8\x84\x12\xc7\xa3\x3b\x4e\xcb\xa1\x2b\x35\x25\x11\x4a\x6a\x7e\x55\xc6\x6c\x70\x44\x4b\x33\xdb\x63\x63\xe0\xdb\x63\x63\x71\xac\x04\x51\x14\x0a\x6e\xd2\x78\x01\xb0\x4f\xfc\xd0\x35\xad\x5a\x4c\x4f\xfe\xca\xcf\x0e\x66\x66\xd9\x12\xea\x4a\x97\xba\x10\xa8\x69\xd6\x4a\xc4\x07\xf0\x5d\x2c\xa1\x50\x29\x65\x68\x3c\xc8\xe5\x32\x6c\x8c\x20\x4a\x04\xd1\x69\xaf\x9a\x0f\x61\xac\x01\xa9\xf1\x3d\x55\x3f\xfe\x32\x85\x02\x65\x5c\x29\xf4\x89\x71\xd2\xd0\x74\x9f\x17\x94\x91\x35\x6c\xb7\xe2\xb7\xb1\xc7\x64\x44\xd3\xbe\xcb\x92\xd2\xfb\x2c\x90\x49\x28\x58\x47\x2d\x2d\x69\xc1\xd8\xa8\x05\x11\x85\x98\x76\x70\x95\x49\xd8\xb2\xad\x68\x2a\x0d\xbc\xfd\x2e\xf8\xa2\x91\xf7\x0a\xae\x52\xb0\xa9\xb7\x21\x3a\xc4\xe2\xdb\xc5\x8e\x69\x54\x7d\x31\xab\xc1\x95\xc0\x75\xb8\xaf\xd8\x82\xeb\x14\x0c\xf5\x5d\xf0\x01\xb0\xc1\x1d\x21\xe5\xc2\x43\xb0\x85\xd0\x69\xaf\xcc\xad\xb9\x24\x53\xb2\xc5\xc1\x19\xb9\x8d\xe6\x82\x18\x2c\xb6\x9c\xb2\xb8\xbe\xf4\x42\xfd\x28\x24\x4a\x7b\x35\xa6\x12\x1c\x57\x1a\xb5\x8f\xd3\x1d\x5e\x5c\x80\x5d\x50\xea\xbe\x85\xb2\x25\x54\x42\x2a\xbc\x3f\x0b\xe2\x54\x1d\x31\x3b\x2e\x9b\xcf\x48\x89\x6b\xb8\xfb\x0e\xa5\xb0\xa8\xf0\x8b\x82\xa3\x94\x68\x88\x2b\x0c\x02\x69\x5c\x16\x33\x75\xe1\x65\xb6\x31\xbd\x2f\xc7\x8b\xe0\xf1\xd2\xbe\x7c\x16\xc7\xd9\xb4\x95\xc4\xe3\xe4\x85\xdd\x56\xe8\x94\x06\x4a\x7c\x5f\x1c\xce\x66\xc8\x2e\xb8\x4a\xaa\xca\x11\x75\xa4\x19\x23\x47\x98\x1d\xf1\x4e\xcb\x8f\xc8\x9b\x04\xb0\x7f\x5f\x66\xa4\x96\xc1\x99\x91\x10\xa9\x17\x8a\x10\x39\x69\x60\x10\x4f\x67\xb7\x33\x83\xb4\x8c\xc6\x49\x86\x6b\xca\xf8\x2b\x06\xb7\x18\x79\xda\xb1\xba\x85\x25\x2f\xdf\xa1\xb1\xb0\x97\xb3\x52\x66\x40\xc0\x84\x66\x0a\x25\xa9\x90\xd4\x0a\x94\x72\x45\x15\x5f\x4e\x8c\x80\x2c\x34\x66\xa8\x47\x8a\x5e\xe6\xc8\xfe\x1f\x04\x77\x22\xa5\x30\x38\x6b\xc8\xfc\x88\xfc\x4c\x57\xe6\xce\x61\xda\x47\x28\xdb\xee\x99\x9e\xad\x1d\xc1\x4c\x12\xfd\x04\x84\xee\xae\x8e\x1f\xc1\x89\x74\x0b\x40\x74\x16\xb6\x61\x75\x60\xf6\x57\xa8\x4b\x93\x9e\x0f\xcd\x11\x03\x4a\xfc\xfa\xb4\x62\x8b\x07\x89\x5f\x9d\xd1\x10\xa1\x25\xb8\x50\x03\xb3\xbf\x1d\x0a\x85\x37\x24\xbb\x3a\x46\x6c\x7b\xfa\xf0\x24\x77\x28\xfd\xc7\xa0\x19\x3b\x1a\x10\xea\xe0\x8a\x78\xa1\xb1\x6b\x78\xb9\x42\xfa\xa6\x19\x8b\xb0\xda\x3c\xc3\x4e\x27\x32\x0a\xef\x37\x76\x45\xda\x3d\xa5\xb6\x1e\xaf\xf4\xa3\xc1\x8f\xb4\x6b\x30\xdb\x95\x4f\xe1\xd9\xd4\x95\x21\x82\xdd\xa9\xf8\x27\x85\x0b\xb2\x2d\xfc\xd0\x81\xab\x6f\x57\x5b\xfc\x19\x9e\x2d\x7e\x5e\x90\x6c\xc7\x3f\x69\x99\xaf\xc5\x68\x99\x5a\xab\xd6\x9e\x42\x06\xcb\xa2\x98\x47\xe1\x8a\xca\x29\x12\xd5\x56\x9d\xe8\x30\x8b\x02\x57\xf2\xa1\xb5\x69\x66\x8f\x38\x26\xac\xad\x7c\x0b\xd9\x6c\x15\x31\xf9\x4a\xa1\x6c\xc7\x11\xca\x60\x8a\xa7\x55\xef\xae\x57\x9a\x95\xa6\xc5\x88\x73\x54\x93\x41\x6a\x98\xdd\x40\x98\xc0\x7a\x0d\xf3\x1f\x79\xd8\x00\xb3\xc3\xc3\x4e\xd5\x32\xb9\x43\xdc\x8d\xeb\x18\x26\xa5\x39\x4a\x4f\xa9\xf9\x56\xb6\xc1\x48\x5d\x18\xae\x42\x9a\xc5\xe8\xd5\x8f\x4f\x80\xe2\xef\xe6\x83\x21\x36\x7e\xb3\x0c\xe4\x19\xc6\x6e\x18\xf9\xe8\x62\xc7\x36\xe1\x5d\xd2\x76\x3e\x16\x5e\x13\xed\x06\x0f\x0d\x28\x39\xa9\x61\xdc\x66\x54\x75\x36\x60\xc3\x74\x6b\xe9\xe4\x1e\x1e\x70\xc8\xad\xcc\x2d\x83\xb7\x44\xbb\x59\x81\x22\xd8\x9a\x39\x6a\xa6\xa6\x91\x7e\xec\xc7\xb6\x18\x6b\xea\x9a\x6b\x50\x99\xcd\xf6\x19\x4a\x42\x29\x5f\xce\x48\x8b\x26\xf3\x3f\x87\x8a\x66\xfe\x42\x06\x35\x2b\x5e\x44\xa9\x10\x4b\x0d\x34\xe6\x16\x62\x29\x51\xb9\xb6\x23\xab\xf0\xee\x73\x37\x00\xd4\x2d\x1f\xea\x39\x69\x06\x63\xa1\x37\xd3\x8c\xcd\x02\xd4\x79\x73\x28\xe5\x99\x56\x87\x7a\x4c\xab\x76\x1d\xb4\x54\x95\x06\x1d\xa1\x94\xec\xfe\x4a\x55\x31\x62\xe6\x51\xea\xfc\x08\xb7\xe8\x4c\x1a\x93\x85\x28\x2b\xa5\xfd\x7d\x83\xb9\x8d\x8a\xea\x31\x49\xbb\x1d\x1b\x8c\xd5\x40\x27\x22\x83\xec\xee\xd8\x3b\xac\x79\x07\x5f\x80\x34\x30\xec\x89\x28\xc4\xbb\x3b\xde\x3d\x31\x3d\xb7\x40\x50\x05\xdf\xeb\x16\x08\xea\xbc\x38\x93\x0a\xf5\xd4\xb8\xcb\xdb\xdd\x31\x75\x67\xca\xcc\x01\x2d\x85\x9e\x3a\x06\x07\xef\xb6\xb4\x7a\x33\x2f\xb1\x89\x76\xb7\x96\x7e\x86\xf3\xd1\x87\xfc\xe3\xcd\xad\x0d\x1c\xe8\x16\x1e\xaa\x3c\x7f\xac\x83\x05\x37\x47\x1b\x38\x14\x2f\x4c\xb6\xe0\x50\x47\x29\xe9\x43\x07\x0d\x50\xab\xbb\x3b\xa6\x3e\x21\x3a\x77\xc7\x34\x6c\x69\xf7\x3e\x15\x01\xa2\xdb\xdd\x01\x9d\xaf\x94\x2d\xf7\x92\x01\xd9\x50\x1c\x29\x7d\x6b\x69\x33\xa2\x8f\xeb\xb2\x24\xc6\x79\x23\x08\x3a\xee\x10\x84\x46\x97\xb0\x04\xc3\xba\x15\x61\xe5\xca\x09\x8e\x08\x2b\xf8\xa6\x77\xdf\x0c\x21\x75\xb7\xbe\x74\xdd\xe1\x0b\x1f\x6e\x14\xb7\x42\xac\x1c\x44\x3b\xdb\x0a\xa2\x52\x4e\x76\x85\xb0\x52\x0d\x3c\xe7\x76\x08\x95\x0b\xef\xf4\x16\x38\xaa\x81\x15\xdc\x82\x3f\x35\xc0\x9d\x5b\xe8\xa7\x06\x68\x6e\x8f\x09\x03\x53\x15\x9f\xc6\x08\xa9\xff\xca\x70\xfc\x5e\x12\x67\xf9\x1e\x61\x99\x90\x5b\x27\xd5\x7c\xf9\xf6\x9f\x4c\x48\x4b\xb1\x16\x52\x17\x06\x33\xed\x4a\x88\xb1\x28\x03\x4f\x18\x3b\x73\x98\x4d\x10\x14\x63\x79\x40\x29\x2b\xa2\x4e\xa8\x26\x58\x6f\x28\x8f\x8e\x7d\xe1\x60\x2a\x3d\xa7\xc3\xe1\x18\x77\xf9\x6b\x63\x14\x0a\x0c\x35\x58\xf9\x33\x9f\x0a\x29\x35\x43\xd9\x2f\x86\x61\x23\x68\x54\x03\x26\xba\x87\xf9\x00\x95\x3e\x8c\xfe\xe7\x41\xcc\x56\xa0\x95\x06\x86\x6e\x2b\xe7\xce\xdd\x4e\xbe\xec\x2a\x64\x0e\x74\x5c\x05\x5f\xb7\x05\x9b\x6a\xc0\xba\xf6\x30\xc7\xb0\x33\x06\xa2\x2a\xdf\xe9\x74\x8a\x9e\x33\x4e\xea\xe4\xc9\xcd\x56\x78\x96\x42\xa4\xf3\x2d\x68\x54\x03\xa5\xb7\x03\x8d\xc2\xc6\x99\xf8\xcf\x7a\xbe\x6c\xaa\xfb\x82\xf2\xd1\x70\x86\x14\xeb\xc5\xd3\xa5\xe8\x2c\x67\x7f\x7a\xd9\x3e\xbb\x42\x09\x78\x8d\x96\x71\x02\x9e\xf3\x4c\x55\x07\xfb\xe4\xa5\xc7\x9e\x8e\x07\xce\x8f\x4d\x9d\x3d\x78\x7a\xbf\x8d\x94\x02\x83\xbc\x05\x94\x6a\xc4\x5f\xdb\x8a\xdb\x72\x06\x99\xbe\xa7\xe5\x11\xd6\xe4\xb4\x3c\xca\x70\x26\xf3\xf3\xf7\xa3\x9e\xad\x9c\x3a\x9d\xf0\x98\x7b\xfa\xdd\x1f\xd7\x56\x1b\xd0\x54\xce\x86\x73\x79\xba\x52\xe8\x95\x65\xe8\x72\xf2\x03\xfa\xd9\x42\x50\x35\x20\x4a\x5b\x00\xaa\x1e\xb1\x26\x00\x55\x21\xbe\xd2\x9e\xf8\xd5\x66\x48\xb8\x90\x76\xfc\x78\x09\xc9\x3a\x01\xc7\x3c\x24\x8b\x19\xd2\x2e\x61\x6c\xb0\x69\x56\xc3\x12\x99\x66\xae\xcc\xf3\x7d\x6c\x68\x60\x90\xb6\xe0\x55\x0d\xf0\xc5\x9e\x46\xca\x14\xf6\x81\xe0\x55\x0d\xd4\xc4\x76\x50\x97\x19\x46\x14\xa0\xea\x8c\xec\x5c\xe6\x3c\x74\xad\x50\x51\x8f\x02\x5f\xf2\xc5\x02\x0a\xd8\xe4\xe2\xe1\x22\x6f\x2b\x54\x4b\x8b\x22\x5e\xba\x7e\x0e\x03\x0b\x3e\xd5\xb8\xbb\xdf\x0b\x31\x36\x53\xa8\x6d\x89\x11\xbc\x26\xab\x15\x52\xab\xc5\x3c\x2f\x40\xe1\xf0\xdd\xc2\xd8\x67\xb2\x1c\xb1\x80\x70\xba\xfb\x6d\xfb\x02\x2d\xfd\xf6\x2e\x85\xb9\x7d\xcf\x3f\xc8\x41\xb1\x1d\xbe\x60\x14\x2c\xef\x37\x0e\xca\x87\xf4\x5c\x22\xba\x40\x01\xf0\x40\x66\x7f\x70\x12\xb0\xc1\x3e\x8e\xc4\xcd\xe5\xd3\xfe\x58\x0f\x60\x1d\x7d\x1c\x3a\xfd\x29\xb3\x7b\x0a\x63\x45\x97\xe9\x8d\x4b\xb6\xfd\xb1\x35\x80\x89\xfc\xb1\xc2\xc7\xb0\x55\xbc\x82\x7b\x7c\x8c\x00\x61\xce\xbe\xf9\x4c\x46\x0f\xe9\xbb\x0a\x9e\xf9\xef\x0f\xda\x39\xc3\xf5\xf9\x9a\xa7\x21\xfb\xe3\xdd\xd0\x53\x57\xb1\x98\xd9\x1b\xe4\xd7\x78\x6a\x5a\x65\x8c\x14\x7e\x75\x27\xc8\x70\xb7\x23\x49\x52\xc6\x63\xbd\x91\x42\x5b\x3d\xfc\x8b\x82\xa5\xc7\x71\xa4\xbb\xf3\x72\xb1\x4a\x1f\xaf\x20\x62\x4e\x17\xe9\x17\x78\xa2\xfd\xe1\x91\x0d\x7a\xfb\x0b\x62\x10\x26\x56\x6e\xff\x96\x4b\xaa\xaf\x59\xba\xa7\xaa\xa2\x55\xa2\xa4\xbe\x16\x9e\xec\x13\xdd\xb1\xb7\xdc\xdd\x28\xb3\x7f\xcb\xfd\x90\x72\x6b\x14\x70\xfb\xe4\xf9\x9f\x84\xff\x77\x9e\xff\x96\xdb\x19\xdd\xbf\xdf\xb3\x9a\x1e\x15\xeb\xe7\xe9\x03\xfe\xa1\x59\x54\x3c\xa2\xc3\x17\xf0\x95\x7b\x46\x27\xf6\x6f\xb9\xb9\xf9\x72\x47\xca\xc6\x71\x5e\xff\x1e\x0f\xab\x6e\xd2\x5b\xae\x51\x48\xbb\x51\x66\x0a\x25\x1e\x60\x99\xaf\x25\x2d\x0c\xfe\xf5\xab\x69\xf8\xd0\xf1\x11\x26\x31\x94\x9d\xd5\xbf\x45\x7f\x10\x2d\xe1\x95\x0f\xe1\x1e\x26\x41\xaf\x29\x3a\x2a\xc2\xc1\x12\xda\xf9\x77\xd8\x42\xe7\xff\xbf\xdb\x49\x97\xe6\xad\x99\x66\x3d\xd8\x50\x12\x65\x30\xd3\xd7\x2a\x3d\x5c\xe0\x8b\x2e\x5e\x7e\x38\xe3\x7f\xcb\xf5\xc0\xd7\xdc\x34\x52\x26\xc1\x1a\x7e\xf1\x0d\x05\x0f\x3f\xb6\xee\xd8\x8f\x28\x0c\xe7\xed\xa8\xb9\x7d\xfc\x61\x05\x62\xa8\xeb\xca\xfd\x28\xb0\xd3\x0f\x69\x30\x43\x5a\xdd\x21\x95\x7f\x36\xf5\x66\x1a\x12\x5c\x0f\xc3\x4a\xe9\x37\xee\x5e\x2e\x48\x9d\xaf\x89\x26\xb1\x1d\x48\x21\x47\xbe\x9f\xb9\x02\x36\xf8\x59\x54\x20\x86\x75\x17\x7e\x33\x45\x87\x64\xf0\xd4\x95\x23\x8e\x77\xb3\x4e\xe3\xdf\xe2\x16\xfc\x39\xf9\x1c\x38\xc0\xfd\xe3\xc2\xe0\x95\x52\x4d\xe6\xcc\x97\xfc\x18\xbf\x62\xbd\x09\x07\xfd\xac\x29\x6b\xaa\xbe\xdd\x0e\xa4\xd3\xf7\x22\x96\x7d\x37\x3e\x2e\xd8\xdd\x77\xe3\xf1\xd9\x29\x33\x46\x8b\x8f\xc8\x89\x31\x6a\x3c\xae\x8a\x69\x50\x62\xc9\xe8\xfa\xbb\x18\x03\x3f\x9c\x9c\xbf\xf8\x71\xe6\x70\x6e\xfe\xcb\x8e\xe2\x9b\x3a\x7d\x37\x35\x21\x15\x76\x5f\x16\xe2\x4d\x5d\xea\xb1\x40\x29\x0d\xa3\x56\x64\x38\x8d\x7f\x3b\x9f\x46\x7d\x27\x30\x43\x0e\xff\x47\xea\x2e\x93\x69\x68\xeb\xd3\x14\x8a\xd9\x9e\xf1\x58\x5c\xcf\x54\x35\x1b\x1c\x29\xb5\xb0\xb8\xf8\x54\x56\x98\x1f\x50\x0f\x27\xfd\xbf\xeb\x32\x06\xe9\x51\xbb\x6b\x6e\xca\xe6\xed\x15\xf2\x72\x5d\xba\x71\xe8\xcd\x23\xcd\x36\x0f\x37\x75\xbb\xce\xfb\x0c\x41\x27\x48\xc7\x8e\xb8\x29\x8b\x36\xc9\x9c\x9b\xb4\xc3\x63\xd2\x90\x18\xea\x7c\x31\xb7\x8b\x3e\x53\xe8\x10\xeb\x99\x6b\xb9\xc2\x1c\x68\x62\x0c\x62\x2c\x5c\x2f\xda\x75\xbc\x94\xf3\xa2\x25\xfb\xc2\xae\x17\xeb\x6b\xd3\xbd\xf1\xdf\xec\xfa\x4a\x4b\xdb\x17\x27\x17\x03\x76\x22\xad\xc2\x7f\x6f\x44\x66\xda\xb5\xd7\x61\x32\xa4\xb0\x18\x83\x90\xb9\x75\x66\x7a\x1d\xe3\xe8\x15\x1e\x13\x0e\xc7\x08\xb6\x9b\xf2\x78\x6b\xc8\x9f\xbe\x34\x75\x20\x31\xea\x09\xc9\x3e\x1b\x90\x0c\xbf\x40\x8a\xcd\x98\x33\x5d\x86\xb7\x93\x55\x3b\xbc\xc2\x4c\xa0\x6e\xad\x4f\x5f\x77\x0e\xa7\xfd\x6f\x27\x43\xd7\xbd\x74\x3b\x19\xeb\xe1\x6b\x9d\x99\x56\x3c\x38\xba\xd7\x81\xae\xbe\x1e\xf2\x90\x7b\x8b\x91\x2f\x77\xf8\xe7\x5b\xcc\xbb\x2a\xbf\xc1\xc0\x17\x2c\x35\x21\x35\xba\xf3\x05\x65\x26\xca\xd0\xed\x8d\x2f\x8c\x40\x9e\x28\x9f\x3b\x6e\x0a\x1e\xa7\x1d\xc9\x7b\x9f\x99\x6e\xaa\x88\x62\xb0\xf6\x44\xa5\x8f\x6d\xf1\xf5\x90\x9a\xd6\x93\xd1\x29\x6c\xb9\x31\xbc\x37\x25\x39\x73\x32\x1a\xdb\x86\xd7\x91\xc2\x8f\x0a\x99\xd7\x7b\x9d\xaf\x57\x4b\xff\x9a\xc9\xd3\xb3\x7c\xe2\x03\xad\x0d\x52\xb2\xe4\x1c\x50\xb7\x90\x36\xee\xe8\xa6\x3c\x9a\x09\xa5\x60\x32\xa3\x42\xf9\x04\x30\xd3\x8c\x12\x70\x8e\x03\x6a\xab\xff\x34\xfa\xd6\x87\x69\x86\xbd\xc8\x70\xe4\xfe\xb4\x55\x78\x53\xca\xbf\x3e\x69\xc6\x8f\xe8\xc6\x05\x35\xfd\xc7\x29\x14\xef\xb0\x63\x74\x71\xdd\x6c\xed\xde\x94\xb7\xe9\x91\x56\x3f\xb2\xb8\x19\xea\xb4\xec\x62\x3d\x08\x22\x91\x09\xb0\x0b\x29\x13\x60\x3b\xe2\x82\xb1\x75\x39\x5d\xae\x9a\xaa\x16\x14\xac\xf2\x69\x5f\xc1\xc5\x96\x70\xc6\x0d\xbf\xa7\xbe\xa9\xa5\xbb\x24\xfe\x59\x36\x6a\x7d\x9d\x69\x56\xa2\xab\xa4\xaa\x56\xb2\xa4\x19\x3d\x53\x62\xbf\x9c\x38\x3c\x69\x46\x5a\xe9\x48\xa3\x92\x2f\x47\x5a\xf1\x1b\xaa\x8b\x4d\x78\x6e\x5e\x5a\xa7\xae\x62\x70\x5e\xee\xbf\x68\xa7\xdb\x72\xb9\x29\x31\x04\x12\xa3\xf8\x10\x7f\x1d\x29\x6c\x12\x27\x27\x94\xd5\x2b\x13\xe2\x1b\xe7\xfe\x42\xc2\x15\x2f\xfb\x53\x97\xcd\x34\x21\x6f\x49\xe4\x47\x7a\x37\x65\x33\x79\xd2\x90\x63\x3b\xf8\xad\xd1\x4d\xda\xaf\x80\x2e\x24\x9a\xc3\x75\xa4\xb2\x98\x34\xff\x32\xb5\x49\x4a\xaa\x8a\x47\x32\x04\x78\x84\x5f\x91\xa9\x79\x5e\xe9\xe3\x2b\x5f\x0e\x6d\x02\x5f\x40\x4e\x16\x58\x84\x46\xc5\x14\x11\x5a\x65\x79\xc7\xe4\x43\xcb\x93\x23\x55\xa5\x35\x9d\x8e\xe2\x26\x2d\x7e\x5b\x9a\xd5\xbe\x44\xf5\x15\xc3\x34\x3b\x32\xad\xc8\x27\x14\x05\x56\x36\x33\xc2\x9f\x80\x9c\xaa\x21\xe5\xd4\xcb\x88\x7c\x54\xbf\xce\x34\x64\xeb\xb7\x31\x41\xc6\xfd\xf6\x57\x3e\x95\x4b\xeb\xc8\x18\xcc\x26\xed\x82\x5c\xae\x9b\x4f\x2d\x72\xce\x7c\x2a\xb6\xad\xe9\xd5\x17\xc6\x69\xe8\xeb\x2f\xdd\xd0\x65\xec\x1e\xbb\xd3\x17\xd6\xb3\xa3\xc7\x2f\x3f\x7f\x3a\xfe\x74\xa0\xdc\x55\xa5\x4b\x58\x25\x85\x9d\xb8\x7c\xe1\x76\x53\x0a\xb7\xd1\x5f\x50\xe2\x83\x2b\xfd\x2f\xc5\x77\x49\x99\x6f\x8c\x5a\xfa\xff\xf8\xb7\x28\x9d\x6c\x6b\x9a\x9d\xcc\x57\xc8\xe1\xd2\x0e\xa9\x9b\x67\x96\xf0\x32\x83\x5d\x29\xb3\xb5\xde\xf2\xe5\xd7\xdd\x50\xd7\x78\x4f\x3f\x69\xba\x49\x89\x41\x14\x3e\x49\x3a\xae\xf4\x82\x68\x41\x46\x29\x26\x45\x3b\xaf\x50\x4a\x51\x31\x91\x51\x17\x16\xca\x99\x96\xc4\x63\x6c\xc9\x2b\x3c\x46\xbb\x12\x27\x13\xe1\xa2\x7b\xe1\x52\x1e\x0a\x2e\x62\x06\x95\x60\x39\x32\xf3\xc2\x02\xc9\x80\x38\x97\x64\x5d\xfc\x1e\xe1\xca\x72\xdf\xbc\xd0\xa2\x71\xb9\x19\x3e\x66\x48\xfb\x51\xda\x84\xd4\x66\xc6\xc8\x20\x31\xc6\xc9\x9a\x3a\x40\x44\x7d\x9d\xa9\xab\xd9\x66\x8f\xfa\xc6\xb7\xbe\x4a\xea\x2a\xe6\x02\x32\xcd\xd1\x22\x2a\x32\x42\xb7\xba\x2d\x0a\xb0\x22\x6c\x3a\xed\x58\x1f\xa1\xf3\x15\x3b\xe2\x8c\xd5\xa1\x0b\xdf\xeb\x85\x22\xab\xe1\x8c\x14\x6a\xa6\xbb\x37\x47\x8d\x04\xa1\x4b\x3f\xb2\xfd\xb7\xd4\xaa\xac\xa4\x54\xa8\xab\x92\x42\x83\xe1\x32\xbe\xe5\xe9\xa3\x53\xfb\xec\x3a\x06\x8b\x6e\x5f\xcf\x17\x02\xb8\x6e\x92\x08\x33\x78\x5f\x81\x75\x4c\x04\xa5\x91\x68\x11\x21\x0a\xfb\x70\x8f\x88\x21\x08\x50\x19\x5d\xa6\x0b\xd7\x52\x33\xef\xdb\xde\xd8\xb4\xfa\xfb\xe7\x7f\xbd\xb3\xf4\x8a\xeb\xd0\xc2\xe3\x8e\xeb\x50\x5f\xac\xbc\xee\x57\x5b\x58\x5c\xd7\xab\x2d\x72\x48\x41\x1f\xee\xaa\x27\xa4\xd9\xad\xa4\x21\x0b\xad\x7e\x41\xca\x2e\x6b\xa1\x24\xd5\xd9\xbe\x8e\x09\x31\xfb\x91\x3e\x2d\x63\x7b\x4a\xad\x3f\x3d\x5d\xce\x2a\x31\x3b\x76\x81\xaf\x5e\x33\x05\x0a\xf4\xd0\xc2\x89\xb9\x88\x45\xba\x38\xce\xc3\xb8\x90\xf3\xba\x7a\x2d\x15\xf1\xd2\x26\x43\x48\x43\xba\x02\x7a\xaa\x2a\x39\xe3\x48\x97\x16\x8c\x58\x09\xba\x6c\x6d\xd9\x38\x8d\xfb\xab\xce\x84\x59\x26\xc0\x98\x4a\x40\xd1\xb2\x17\x9a\x2f\xa8\x66\x3e\x94\x44\xc8\x6c\xa1\x66\x3a\x85\xb6\x54\x33\x21\x1c\x65\xd1\x90\xba\x26\x3d\xfb\x95\x42\x16\x85\x1f\xd1\x65\xc3\x33\x05\xf2\x4c\xfc\xdb\xaa\x16\x21\xbf\xc5\x8b\xa4\xfa\xa7\x1b\xe5\xae\x2b\xc5\xdb\x33\x00\xb1\x77\x7e\x59\x17\xa3\x05\x4d\xd6\xcd\x5c\x88\x6d\x67\x9f\x18\xd7\x15\x52\xcc\x85\xc5\xd9\x39\xad\x5c\x21\x2d\x56\xe8\xc4\x39\x25\x4a\xc9\x97\xfa\x91\x31\xa0\x34\x77\xa3\x40\x61\xc3\xa4\x90\x95\xad\x90\x1a\x3a\x06\x69\x87\xd5\x9e\xf1\xd9\x87\x81\xe5\xd6\x2d\x65\x30\x97\x95\x61\xe2\x1c\xf9\x31\x99\x30\xb3\x23\x6b\x89\x1d\x71\x61\xa7\x74\x1c\x66\x6c\x79\x5f\xa3\x9e\x23\x9f\x7a\xb8\xf9\xd2\xab\x90\x9a\x56\xd0\xc8\x39\xb2\x48\x74\x98\xbf\xfb\x8d\x76\x0b\x65\x15\xc3\xca\xfb\x3a\x34\xc6\xbd\xe2\x41\xb4\x13\xaf\x81\x2f\x43\xe7\xcc\x87\x8e\x3f\x94\x3e\xac\x4b\xb3\x0c\x68\x1f\x54\xa0\xaf\x3f\x4b\x7e\x04\xd9\x85\xa2\xed\x3e\x1e\x23\x00\x92\x51\x82\x01\x38\xe6\xd1\x33\x7b\xbe\xe7\xea\xa8\x1f\x42\x47\x3c\x93\xa0\xe3\x71\x35\xac\xf7\x26\x95\x88\xed\xa1\xac\x8c\xd0\x96\xdd\xec\x36\x53\x68\xf7\x15\x6a\xd7\x61\x26\x66\x47\x0a\x3a\xb0\x44\x7d\x21\x93\x9c\x7f\x62\x5c\x28\x1c\xdf\x9d\x9e\xec\x40\x85\x99\x68\xe7\x4c\x43\xb6\xaa\x3a\xd4\xfc\xe7\x7f\xf5\x55\x52\x76\x2f\x59\xc1\x24\x1c\x30\x18\x47\x01\xc5\x91\x38\x73\x4e\x50\x18\x89\x56\x5e\xe9\xd0\xf7\x9d\x15\xca\x2e\x17\xb8\x58\x57\xb0\xad\x60\xd5\xe9\xca\xf5\x3a\x30\xb0\x86\x2c\xe4\x82\x15\xa7\x1b\xd7\xd2\xd8\x0b\x4e\x59\x51\x5b\x28\xeb\xa5\x9a\xaa\xb6\xff\x30\x85\x74\x39\x7b\xfe\x4b\x39\x8e\x6c\x7a\xb4\x79\x0f\x27\x0e\x1f\xe5\x6b\x06\x70\x8f\xb5\xa4\x13\x5c\xfd\xd8\xe1\xc3\x81\x6e\x2f\xec\x83\x81\xcb\x6e\xa6\xf2\xd4\xd8\x53\x28\x40\xda\x99\xb2\xad\x32\x3a\xd1\xc5\x7b\xec\x15\xdd\xb7\xb6\x02\xeb\x3b\xda\x44\xcd\xd9\x5d\x77\xaa\xad\x60\x05\x8d\x08\xbd\xd4\xbd\x59\x6f\xd4\x14\x2a\x2f\x2a\x32\x78\xd8\x78\x7e\x3e\x1c\x6a\x86\xf9\x90\xed\xdc\xcf\x94\x31\x75\x21\xbd\x2f\xd0\xe9\x0a\x37\xd1\x0a\x96\xc3\x74\x1c\xdb\x93\x53\x2f\xd7\xa8\xd1\xb0\x5c\xa3\xe6\xd4\xa9\x6b\xd4\xa3\xbe\x90\x82\x93\x48\x8f\x17\x14\xeb\xd7\x21\x7d\xce\xbc\xd2\xb0\xe5\x15\xdb\x7a\x22\xaf\x90\x3a\x13\xac\xdb\x2c\x7f\x8b\xf0\x89\x72\x4c\xb7\xbe\xc4\xbf\x5a\x5a\xf2\x65\x2e\xae\x01\x85\x99\x68\x05\x8b\x65\x4a\x62\x95\x23\x55\x3d\x2f\x2d\x0d\x89\xe1\x51\xe5\xba\x5a\x6d\x05\xad\x3a\xb1\xa8\x38\x3c\xe9\xf6\xb4\xe5\xbc\x31\x71\x0a\xb7\x90\x97\x0a\x69\xd5\x07\x75\x64\xd2\x04\xea\x36\x53\x55\x8b\x88\x24\x9e\x1c\xd8\x30\x31\x75\x61\x7a\xbe\x46\xba\x54\xa0\x01\x64\x92\x92\x65\xb4\x02\x2f\x2a\x57\xc6\x59\x33\xd3\x44\x70\xcb\x84\x48\x7c\x45\x54\x4c\x63\x39\x72\x6e\x9f\xe0\xd7\x32\x5b\xc8\xab\x96\xca\xe2\x63\xc4\xc3\x44\x5e\x21\xc3\x17\x4a\x0f\x9b\x60\xc1\x38\x25\x24\x3f\x9a\xca\xd3\xa5\x07\xa4\x7d\xbf\x3d\xa4\x32\x58\xc1\xcb\xcb\x82\x87\xbd\xb4\x70\xf6\xa2\x56\x7c\x2f\x3a\x3b\x82\xdb\x51\x25\x5e\xe1\xaa\x35\x19\x53\xc8\xcb\xfe\x14\xc6\x64\xc6\x89\x48\x5b\xbe\x67\x8f\xd8\x5a\x4a\x1f\x57\x51\x49\xcb\x22\x65\xa6\xaa\x98\x81\xfd\xb4\x7c\x7a\xca\xde\x77\x86\x8b\xfe\x82\x8d\x96\xb3\xa5\x1c\x29\x6c\xff\xfc\xaf\x4f\xf8\x66\x39\x08\xf2\xab\xa5\x21\xef\x53\x2c\x9e\x65\x91\x82\x88\x53\xd8\x89\x56\x60\x06\xa5\xc6\x28\xb1\xd2\x1d\x83\xa2\xbe\xae\x74\xa9\x38\xf9\x59\x09\xce\x59\x98\x02\x4b\xde\xc1\x82\x91\xbc\xb0\xc0\x30\xc8\x96\x1f\xac\x64\x49\x1d\x2a\xe0\xea\xa9\xdb\xdd\x4b\xea\x62\x85\x42\xe9\x57\xd0\x6c\x0e\x49\x31\x2e\x2c\xa9\xb5\xfd\x27\x29\xf4\x3e\xeb\x21\x15\x29\x6d\xa4\x13\x7e\x25\xa4\xdf\x99\xc0\x81\x4e\xb2\x51\xd1\x1e\x3b\xe2\xc7\xbd\x6c\x0c\x6a\x94\xad\x22\x44\x1c\xe1\x38\x45\x88\x68\x85\xa9\x55\x84\x88\x2b\x47\x29\x65\xca\x38\x47\x4f\x33\x76\x86\xb7\x7c\x78\x0b\xb5\xca\xb9\x65\x5b\x7e\x5c\xe9\x62\x79\xe5\x1b\xa4\x4e\xbf\x2d\xed\x68\xc1\xae\xf4\xa8\xbd\xc3\x9e\xdc\x66\x20\x96\x6f\x87\x81\xf8\x50\x37\x02\x31\x10\x37\x2a\x09\xeb\x51\x81\x27\x5a\x61\xe3\xec\x05\x47\xf3\x23\x82\x6d\x44\xd1\x38\x8f\x46\x87\x0f\x15\x87\xe2\x9c\x33\x7d\x78\xf1\x46\x3a\x81\xf3\xf8\x11\x81\x89\xe2\x76\xdb\x76\x3d\x47\x68\x6e\x2c\x27\x54\xa6\x13\x67\xe4\x5c\xb5\xad\xcd\xb2\x04\x3a\xe5\x95\xf2\x67\x5a\xfb\xbb\xaa\xad\x2a\xb4\xe2\x76\x82\xb9\x0b\x69\xa7\x48\x14\xad\xa0\x67\x14\x89\xa2\x95\x0c\xd6\xcc\x85\xc6\x4c\x20\x8a\x9e\xaa\xb0\x93\x9b\x7d\x13\x48\x14\x41\xa3\x1c\x1b\xa3\x21\x0f\x14\x97\xa2\x0c\xd4\xfb\x7b\xf8\x4f\xf2\xe1\xa5\xa5\x0d\x65\xdc\xd8\x84\x92\x49\x83\xea\x52\xc2\x8d\x56\xae\xb4\x62\x5e\x1f\x21\x8d\x8b\x80\xb2\x2d\x94\xb1\x61\x30\xb3\x11\x94\x09\xe3\x38\x98\xc9\xb7\xe1\x66\x17\x86\xf7\xdb\x47\xf8\x28\x15\x27\xbf\xe8\x2f\xe4\xdc\xdb\x3c\x82\xfe\x51\x74\x89\x3e\x5b\xca\x34\x5b\xe8\x7e\x87\x8f\x38\xa3\xb9\x12\x3f\x82\x43\x28\xa9\x30\xa2\x8f\x94\x0a\xa3\x15\xec\xa8\x37\xf7\x4b\xd8\x7c\x6f\x6b\x20\x7c\x3b\x6f\xdd\x39\x14\x4c\xd9\x37\xc6\x35\x26\xe8\xdb\x5c\x71\x85\xaa\xa2\xe8\x43\x0e\xc2\xd9\x53\xd6\xfd\x61\xfa\x18\x4a\x77\x9f\x42\x4d\x34\x6e\xc7\x37\xa9\x19\x38\x76\x02\x4f\xb9\x46\x46\x60\x16\x66\x67\x7c\x6c\xf2\x60\x3c\x93\x4f\x23\xda\xf3\x83\xa5\x7d\xa5\xae\x85\xe0\x4c\xa9\x86\x8b\x81\xa8\x18\x15\xbd\x31\xef\x8e\x51\xd1\x5f\x08\x53\x45\xa5\x38\xc7\x2b\x85\x40\x90\xa1\xee\x4d\x14\x7f\xd1\xc7\x06\x33\x96\xee\x87\x3b\x4a\xe6\xf2\x83\x4e\x4b\x55\xcf\x25\xa2\xe3\xe3\x17\xe1\x17\x76\x80\xe3\x49\xd4\xd7\xd3\x2e\x9b\x8a\x5f\xc1\x34\x9a\x29\x1d\x1a\x5f\x7a\x15\x92\x3d\x97\xb5\x4a\xd3\x31\x1a\xba\x51\x69\x3a\x0e\xde\xd7\x8f\x41\xce\x8c\x58\x02\x1f\x6f\x7a\x36\xd5\xc7\x0b\x9a\x39\xd9\x0e\xc1\xc0\x08\x0c\xd5\xea\x6c\xe4\x8f\x33\xda\xa2\xe1\x94\x4e\xa3\xfd\x5b\x15\x5e\x4c\xe1\x4f\xe3\x71\xab\xdf\xc1\x00\x2e\x48\x56\xb0\x42\x5a\x2a\xd2\xee\x97\x25\x9b\x50\x56\x1a\x35\x2d\x75\x75\xda\xa1\xc4\x53\x3d\xcd\x4a\xce\xb0\xe9\x85\x50\xb9\x3f\x2c\x90\x12\xe8\xe8\x51\x45\x7d\xb8\x0b\xf9\x72\x5a\x78\xd0\xaa\xf7\x79\x4b\x99\xbd\xb6\xec\xa3\xaf\x5f\x0f\xc5\x98\x30\x22\x25\xc7\x13\x62\x3b\x5c\x33\x85\xde\xae\x28\xd2\x2f\x42\x61\x86\x94\xac\xbb\x42\x69\xb7\xb2\xed\x15\xdd\xa1\x15\x36\xf6\xd7\xf6\x6a\x0b\x65\x3b\x08\xd3\xc2\x09\x3c\xfa\x8b\x3d\xf8\xb5\x4d\xda\xeb\xdf\x32\xdc\xf0\x95\x1a\x67\xa1\x20\x2a\xad\x60\xeb\x7c\x97\xd1\xb4\x8c\x0e\xc1\x83\x92\xfb\xa2\x62\xd8\x1d\x0e\x0b\x31\x61\xaf\x2f\x0c\x45\x55\x79\x6c\x0a\x16\xde\xd7\x97\xc8\xd1\x87\xc1\x9d\x70\xe6\x10\xee\xe4\x26\x07\xa4\x64\x14\xb2\x58\xd1\x1c\xce\x06\xcf\x28\x7c\xc3\x68\x6c\x86\x1f\x67\x17\x24\xbc\x03\x36\x34\xf6\x9c\x40\x28\x47\xbf\x52\x26\x3e\xe8\xa1\x6c\xaf\xf0\x9b\x3f\x5e\xf0\xa0\x61\x9c\xea\xa3\xbf\x52\x59\xe6\x69\xf6\x0d\xc1\x1d\xea\x2b\xa4\x6f\x1f\xe9\x53\x7e\x97\x32\x42\xbd\x85\x32\x0b\xf5\xf1\x87\x21\x05\x23\x44\xbc\xfe\xbc\xf0\x23\x94\x07\x80\xda\x37\x5e\x65\xc4\x9e\x02\xa1\x12\x23\x49\x08\x95\xd2\x90\xcc\x0e\xdf\x50\xe3\x08\xfa\x59\x8f\xe4\x3f\x65\x13\x64\x89\x1c\xcc\x61\x96\x50\x42\xe9\xe2\xd3\xfa\x59\x33\xa0\x35\x7e\x56\x05\xec\x71\x05\x76\x18\x0d\x05\xec\xc0\x0e\xf1\x02\xfd\x22\x39\x98\x1d\xbf\xc2\xa9\x4f\x5d\x8d\x66\xa6\xee\xdb\x75\x99\x10\x73\x8c\xff\x79\x26\x92\x83\x2d\x8b\xf9\xb2\x9a\x7f\x28\x5f\x5e\x0d\x28\xbf\x29\xf1\xac\x4f\x07\x6e\xc0\x50\x9d\xc2\xab\x74\xa7\x25\xbb\x29\x0d\xc0\x3f\x39\x05\x57\x29\x7e\xc1\x70\x53\xee\x7f\x42\xe9\xf1\xc5\x48\x17\x66\xd8\x46\x55\x44\x7f\x63\x38\x16\x23\x9d\x3e\x26\xab\x55\x21\xbb\xc9\x94\x5a\x8e\xd8\xb6\x98\x2f\xaf\xfb\xa4\x21\x6f\xf8\x49\x2f\x5a\xd8\x92\x4e\xbc\x4d\x27\xcd\xe8\x98\x01\xd0\x62\xbe\x1c\x45\x13\x53\x6b\xbe\x40\x16\xd0\x8c\xf6\x25\x57\xe0\xf3\x65\x07\xc4\x64\x06\xb2\x3e\xb4\x63\xd1\x3e\x43\x29\xcf\x8f\xa5\xd8\x3c\xec\x1e\x45\x58\x4e\x83\x39\x80\xad\xcc\xc3\xe7\x46\xcc\xb0\xa9\x3c\x1d\xa3\x31\x03\x87\xee\xf9\x1d\xa9\xfc\xa6\xcc\xa0\x96\x78\xd3\x61\x0f\x4e\xec\xc2\xa9\x1c\x1e\xc5\x01\x1c\x6e\xea\xe7\xe1\x51\xc8\x49\xd0\x6a\x69\x2a\x9a\xc1\x39\x19\xed\x31\xe1\x3c\xba\x99\x46\x6a\xd1\x8b\x7d\x06\xf5\xa0\x5d\xc7\x18\x7c\xc1\x07\x07\x86\xfd\x45\x65\xbd\x8f\x73\xa6\xe1\x9b\x3a\x35\x7d\xa9\x5a\xf4\x56\x2d\x94\x35\x58\xfa\x64\x9f\x1e\xf9\xf2\xe6\x4b\x3f\x7b\xb9\x29\x4f\xd1\xc5\x10\xe4\xa4\x02\x14\x34\x0f\x3b\x48\xef\x03\xcb\x5f\xe2\x7b\x2a\x89\x48\xc3\x89\x36\x9d\x44\x04\x6b\x78\x0a\x7e\xd2\x8c\x8c\xbc\xa9\xaf\x6a\xa6\xec\x27\x8a\xb9\x24\xed\xc4\xa0\x50\xbb\xff\xcc\x5c\x72\x57\x3c\x58\xc0\xcd\x6f\xd2\xac\xae\xf9\x8e\x92\x2f\xad\xa8\x1b\x73\x20\x71\x60\xa4\xdd\x4d\x0d\xcf\x08\x6c\x22\x5b\x10\xfc\xc9\x54\xe2\x92\x52\xc3\x08\x9b\x25\xca\x10\xcc\x17\x96\x8f\xd3\xb1\x13\x46\xb5\x65\x38\x15\x3c\xa1\x81\xea\x9a\xc6\xa3\x5c\xf0\xfb\x49\x68\x4c\x04\x80\xc3\x23\x5c\xac\x98\x22\x20\x9c\xd9\x53\xa7\xef\xf1\x30\xed\xa7\xd3\x93\xcc\xce\x12\x9d\xf6\x43\xb4\x50\xe6\xff\x8b\x11\xb0\xad\xcf\xb4\x34\x05\x2c\x3b\xa1\xde\x3a\x8c\xa6\x4f\x07\x48\x1c\xfc\x8a\x34\xfe\x05\x93\x38\xcc\x01\x37\xbc\x93\xe0\x05\xf5\xa4\x9d\x65\x1b\x24\x43\xd0\xea\x02\xbd\x9b\x82\x79\xdc\x85\x7c\x6a\x2c\x32\xd7\x32\xf3\x24\xcc\x17\x75\xef\x15\x1c\x0d\x6e\x13\xd0\xe3\xac\x6c\xec\x93\x45\xa1\x0f\x0c\xf4\x91\x42\x31\x5b\xa6\x7d\x9b\xd9\xd2\x85\x1d\x5f\x57\x5a\xfd\x7a\xec\xe9\xd2\xbf\xe9\xba\x05\x15\x6f\x3b\x6c\x2a\x6d\x48\x03\x15\x30\x15\xb0\xe0\x2e\xec\x90\x72\xeb\xdb\x08\x9a\xc5\x82\xe6\x0c\x65\x59\x72\x41\x2d\xf5\x91\x66\xf4\xaa\xca\xfa\x6c\x16\x63\x11\x39\x02\x4c\x61\x49\x1a\x00\x90\xa9\x2c\x21\x0d\xb8\xc3\x54\x96\x90\xe2\x5c\xc3\x37\x55\xfc\x1f\x8c\x66\xba\x7f\x9a\x99\x9e\xac\x94\xa9\xff\x93\x1e\x95\x7c\x15\x73\x6d\x96\x05\x83\x4c\x48\x9d\x2b\x6a\x46\x77\x6f\xdb\xde\x27\xad\x2e\x61\xaf\x4a\xaa\x5a\xea\x15\x46\xb7\x99\x3a\x86\xe7\xac\xda\xb5\xf0\xd3\x46\x79\x70\xdc\x9b\x8e\x2b\xc0\xad\xff\x2c\x1c\xcc\x10\x65\xc6\x66\x8c\x5a\x18\xe1\xf6\x3d\x02\x5b\xcc\xd8\x0c\xe7\xfa\xbc\x29\x9b\xd1\x8d\x31\x79\x35\x99\x93\xcb\x76\xfd\x08\x25\xbb\x99\x7f\xb9\x50\x05\x36\x40\xe6\xc5\x1d\x3b\x4a\xd6\x99\x3d\xe2\xd7\x9f\x97\xdf\xde\x64\x3f\x5e\x7e\x3e\x01\x94\x73\x2a\x0e\x40\x71\x74\xf9\x9b\xd2\xaf\x21\x76\x1c\x06\x80\xdb\xf0\x69\x4c\x05\xc0\x9c\x49\xa2\x8f\xfa\x54\x35\x27\x20\x68\x2e\xb6\xe3\x4c\x9f\xfa\x33\xa6\xf3\x62\x3b\x36\x28\x4f\x2e\x4b\x2a\xc0\x45\x07\xd6\x31\xf5\x80\xbf\x60\xc3\xce\x0b\xf1\xde\xfe\x76\xa2\x4c\xde\xfa\x73\xf2\x9f\x46\x63\x8c\x5a\xd2\x92\xd7\x81\xe1\xe9\xac\x1f\x53\xe7\x22\x96\xdf\x64\xb4\xdb\x0e\x05\x0c\x86\x8b\x03\x3c\x9b\xec\xe2\x92\xa2\xd3\x92\x2f\x29\xd2\x92\x21\x3e\x9c\xa8\xa6\xf0\x17\xbd\x63\xfc\x08\x7e\xd1\x47\x56\xc5\xcf\x42\x38\x60\x4d\x3d\xdb\x6f\xdc\xba\xcf\xea\x9d\xcc\xcc\xeb\x99\x7e\xb9\xf8\x13\xa7\xf5\x98\x78\x1b\xa7\x1e\xdf\x37\x6e\x91\xa7\x13\x79\x5c\x70\x8d\x70\x1a\xe7\x89\xb8\x32\x4c\x83\xbb\xcd\x59\x1d\x60\xf6\x48\x2b\xec\x0e\xc8\x70\x10\xad\x4e\xef\x0e\x94\x2e\x40\x0d\x2c\xde\x29\xa0\xc6\x68\x18\x2d\xd5\x2c\x84\xf2\xae\x1c\xc2\xaf\x34\x24\x7f\x62\x4b\xa1\x87\x9e\x3e\xa7\x9a\x09\x65\xc3\x2c\xdf\x99\xd9\x7a\x06\x60\x19\x59\x33\x00\xfb\xb9\x3a\x7f\x26\x0f\xd0\x33\x5d\xcb\x37\x00\x99\x84\x5b\xf8\x5f\xd1\xc1\x82\x7f\x94\x23\xd3\x25\x6c\x60\xad\xf9\x70\x6b\x3c\x8c\xc0\x5a\x22\x3d\x46\x98\x50\x68\xf5\x8c\x40\xa8\xc6\x6e\x95\x4e\x1f\xc8\xfe\x74\x62\xec\x16\xbe\xf5\x59\x7d\xcb\x00\x24\x72\x2a\x75\x47\xbb\x32\x04\xdf\x32\x70\x61\x32\x0d\xf1\xb8\x50\xa4\x0d\xe5\x0d\x1f\x08\xc6\x51\xf0\x3c\x4c\x9e\xcc\x3b\xd9\xff\x4d\x5a\x03\xb2\x0c\x6d\x78\xbc\x69\x48\xcb\xc0\x08\xda\x60\xf4\x21\x25\x8c\x9f\x4e\xb6\x0b\x33\x20\xc7\x47\xf0\xd1\x63\x36\xec\x79\x74\x4c\xb3\x3a\x40\xd0\xe8\xb1\x7d\xbb\xf2\x2b\xa8\x03\xe6\xb3\x59\x0a\x65\xb4\xb2\x02\xb8\xa9\x98\x0d\x13\x14\xa3\x53\x2f\xef\x0b\xc8\xbd\xe9\xb7\xf6\xd7\x53\xa6\x4d\x8e\xd4\xe6\xad\x7d\x7d\x5a\xf5\x64\xa6\x2e\xe6\x69\x67\x78\x78\x11\x31\xf2\x8c\xf1\xe0\x4e\x7e\x36\xbf\x08\xe4\x9c\x3b\xf5\xdc\xfe\xe4\x5a\x70\x36\x64\x14\x47\x2c\xe1\x41\xda\x95\x99\xbe\x19\xac\xb7\x91\xaa\x4b\x77\x13\x0c\xc8\x09\x1c\x66\xca\x6e\xeb\x66\x5c\x69\xc5\x8a\x22\xab\xe0\xec\xcd\xcf\x70\x04\xfc\xc1\x1a\x14\xaa\x64\xb4\x23\x94\xad\xca\x11\xd2\x02\x89\x53\x5c\xe3\x16\xa3\xb3\xf2\xbe\xbe\xcf\xc9\xad\xd9\x66\x69\xa9\xab\x95\x47\xa7\x34\x0c\x49\x78\xbc\xfb\x8d\x04\x76\x6e\xc7\x05\x85\xea\x22\x25\x48\x36\x92\x71\x1d\x57\xfd\x1b\x14\x3e\x0d\xfa\x18\x15\x9e\x31\xe8\xa3\xbf\x66\x1a\xd2\xd1\x09\x5d\xda\xb9\x0c\xeb\x21\xa5\x71\xe0\x8b\x6e\xde\x43\xd0\xf8\xa9\x3c\x77\x9b\xb3\x73\x71\xc1\xa2\xf8\xc5\xfb\x85\xc8\xf6\x8b\x77\xae\x2f\x67\x87\x67\xd2\x2a\x3c\x83\x40\x37\xac\x63\xc4\xd6\x16\x90\xa3\x1c\x6c\x06\xe1\x38\xda\x85\xd6\xe0\x55\x7b\x24\x5f\xc7\xd9\x80\x8a\xd1\xb3\xf6\x12\x73\x55\xb8\x8e\xc6\xd5\xff\x4c\x26\x0f\xd8\x24\x58\x0d\xf4\x6c\x77\x1e\x4f\x5e\x5b\x4c\xc3\x33\x46\xcd\x9f\x2a\xd9\x3b\x08\xd3\xd9\x59\xde\x54\x55\x2f\xec\x55\x3d\x5c\x3f\x07\x4a\x98\xa4\x1f\xf8\x99\xa6\xa1\x1a\x5c\x24\xce\xce\xad\x14\xa2\xd9\x50\x8d\x51\x99\xb1\xe1\x33\x04\x9a\x62\xd8\xcc\x84\xdd\x9c\x01\xa4\x33\x07\x86\x5f\x70\x83\x3a\xfd\x8e\x9d\x4b\xd0\xe9\x77\xec\xfd\x60\xe4\x03\xfd\xc3\x64\x0e\xfc\x8d\x48\xa1\x21\x47\x01\x77\xaf\x53\x18\x8b\x8a\x97\x70\x0a\x63\x51\xb9\xb9\x9e\xc6\x58\xf4\x03\x43\x77\xe0\x35\x60\xc5\x86\xed\xce\x9e\x4e\x2c\xea\x66\x48\xdb\xe1\xb0\xc9\xc8\xd2\xd3\x8d\x8f\xb3\xb0\xe2\x58\xe4\x43\xe0\xd7\xb0\x59\x33\x40\x1c\x85\x3d\x9f\x9a\xa9\xe9\xc6\x59\x0c\x51\x3a\x4a\xdc\xd1\xae\xfc\x27\x7b\x79\x86\xe4\x67\xe8\x14\xa7\x03\xab\x34\x1c\x98\x20\x5e\x07\x60\x0f\x95\xe5\x1e\x9c\x03\xb3\x86\xb6\x43\x19\xd1\x64\x45\xf9\x1b\x3d\x34\x3f\xda\xc0\x56\x9f\x0e\xd5\xd2\x61\xcf\x89\x35\x52\x53\xaa\xed\x83\xa0\x74\xb6\x8c\x89\xd1\xe5\xfc\x18\xb8\xd4\xe6\xcc\x22\x52\x15\x85\xd0\x53\x7a\x19\x40\x49\xb3\xc2\x7b\x02\x22\x9e\xe4\xd2\xa8\xcc\x8b\x41\x0f\xfd\x78\xe5\x53\xf9\x2b\x9f\x76\xe5\x65\x8f\x13\x67\x3a\xe4\x3d\x4b\x31\x7d\xb1\x9d\x53\xff\xb4\x0d\xdb\x33\x5c\x4d\x0a\x92\xd3\x6f\xc4\xfb\x81\x95\x63\x98\x43\xc5\x97\x38\xa7\x5d\x16\x39\x3a\xfb\x91\x38\x5e\xbf\x39\x1d\xcf\x2c\x5e\x09\xbd\x0b\x3f\x27\xd2\x67\xf2\xda\x0d\x79\x3d\x39\x7e\xa6\x57\x5d\x2c\x71\x81\x36\xfd\xf4\xbb\x1f\x70\xc7\x34\x3f\xc4\x5b\x34\x37\x6c\x46\xc3\xdb\xef\x40\xd2\x90\xfd\x43\x19\x92\x73\xfc\xa0\x7d\x8d\x74\x20\xf2\xfd\x98\x0b\xf1\xcd\x0c\x2e\xbf\x2d\x88\x74\x32\x7a\x61\xd4\xf1\x67\x8c\x94\xbb\xee\x92\x67\x34\x0d\x59\xa7\xf1\x37\x0b\x77\x1f\xa6\xd8\xf2\x2e\x7e\x28\xa5\x2d\x45\xa1\x00\x56\x88\x63\x6e\x71\x89\x80\x2f\x62\x59\x9e\xc7\x07\xb3\x7c\x3d\x18\x7f\xc8\xb2\x35\x98\xba\xcb\xe9\x76\x53\xe6\x76\xd1\x9d\xc6\x1c\x70\xa3\x30\x97\xdd\xf2\x39\x07\x2f\x3b\x7a\x10\x89\xcb\x3b\x13\xc9\xb1\x38\x3d\x32\xbb\x4e\x67\x41\xf2\xb1\x9b\x94\x10\x44\x62\x2f\x9f\x1e\x73\x84\x5f\xec\xe2\x8c\xd6\xb6\x63\xfc\x18\xcb\x87\x84\x9c\x8c\x37\xb0\x38\x0c\x9c\x8d\x05\x38\x42\xd2\x6d\x83\x94\x09\x83\xdd\xbb\xed\x68\xcc\x51\x7d\x5b\x30\x63\x93\x2a\xa3\x45\x2e\xd2\xe7\xb6\xbe\x9e\x69\xc6\xb1\x74\xd2\x0c\x91\x3f\xa0\x14\xc6\x00\x9b\x65\x23\xa5\x59\xb4\xed\x53\x42\xbc\x1c\xdb\x26\xde\x0c\x65\xa7\x1e\xbb\x60\xe3\xf7\x19\x29\x15\x30\xa7\xa4\x21\xaf\xef\x99\x6e\xee\x55\xc2\xf9\x3d\xb7\x4f\x06\x71\x3a\x18\x69\x10\x27\xad\x91\x06\x78\xf8\x27\x48\x83\xf8\x47\xb6\x91\x4a\x15\x1d\x2c\x34\x41\xc9\x26\x35\x98\xe0\x8c\x83\x64\xa3\xbe\x59\x43\xc3\x09\xce\xb8\x2f\x94\xc8\xa2\x71\x77\x31\x95\xab\xa2\x71\x21\x31\x85\x1f\x28\x71\x91\x6e\xd9\x71\x39\xf1\x08\x4c\xd0\xe2\xd2\xde\x8e\xe2\xcd\xd9\xdb\x97\xfe\xf5\x48\x19\xdb\x97\xf9\x91\xff\xa8\xc2\xb6\x5b\xb2\xbd\x1f\x0f\xe9\x6d\x96\xff\x72\xd6\x37\x16\x45\x18\x80\x16\xd7\xaf\x2f\xfd\xb9\xc1\x9d\x6f\x3f\x6d\x05\xff\x34\xdf\xbe\x48\xcc\xa9\xdd\xd7\xfe\x44\x63\xba\xc9\xa6\x86\xd2\xac\xd7\x0f\x7e\x52\xae\x8a\x16\xff\xb7\x41\x01\xf1\xdb\x29\x71\x45\x8b\x37\xf7\x0d\x30\x8e\x89\x7d\x4b\x7d\x64\xb6\x00\x0c\x54\x76\xd9\xdb\x40\xcb\xb8\x4b\xde\x5c\x2f\x65\xb8\x3a\x5f\x54\x76\xab\xd2\x5c\xb4\xfa\x4a\x99\xa5\xf5\x4c\xa1\xe1\x59\x35\xa5\xba\x59\x6f\xa1\xac\x9e\xf3\x9f\x32\x0a\xe2\x7e\x7b\x1b\x50\xfe\x54\xb5\x05\x9a\xbf\xc6\x58\x44\x3f\xbf\x31\x11\x10\x27\x86\x29\xcc\x5e\x53\x0a\xf7\xb1\x12\xb2\x16\xe3\xf7\x7c\xe3\xa1\xcc\x8f\x9b\xbf\xe0\x5b\x01\x13\xee\x86\xd2\x2e\xb3\x02\x69\x51\x04\xac\x63\xbe\xed\xc8\xe2\x11\xca\x34\xfa\x20\x8e\x63\x21\x0c\x5a\xfd\x0f\xaf\x35\xe7\xdb\x0f\x5f\x7b\x4d\x3b\xcb\xbd\x30\x5e\xf3\xe3\x99\x3e\x99\x16\x66\x49\xc6\x45\x3c\xd0\x1f\x1b\x17\xdc\x65\x4f\xa2\x61\x70\xf5\x38\x3f\x48\xa9\x92\x52\x65\x83\x9e\xf9\xd4\x6f\x19\x53\x55\xdb\x0c\x66\xf8\xf8\xc2\x23\x9e\x2b\xe5\xb6\x68\xf1\xc5\x1a\x53\x90\xbb\xb5\x29\x14\x41\x8b\x1f\x4b\xa8\x81\xce\x33\x8e\x29\x94\x40\x8b\x3f\xf1\xe3\xb7\x06\xb9\x72\xf9\xc8\x4d\x19\x47\x1f\x71\x33\x7a\x4b\x5d\xfd\x26\x5a\x52\x09\x2b\x5a\x45\x40\x7c\x50\x49\xe9\x72\x79\x00\xa9\x2a\x48\x3c\x9b\xf0\xa3\xe3\x63\xbc\x94\x8a\xa8\xd1\x2a\xe2\x56\x41\x33\x5a\x7c\x94\x1f\x16\x3e\xcd\x70\x3d\x05\xf7\x39\x21\xc5\xe3\x4e\xf9\x78\xe1\x61\x83\x8f\xb0\xb4\xbc\x7a\x9c\x0e\x9b\x51\xd9\xe7\x1f\xfc\x97\x1c\x79\x3e\x36\x1c\xe3\x06\xf9\xf8\x59\x00\xbc\xe7\xb0\x19\x3c\x8b\x9d\x4e\x38\xd1\x0f\xb6\xa0\xa2\x61\xdc\x03\x4a\x5d\xd9\x0d\x0d\x31\xe0\x78\x18\xa3\xb1\xd5\xbf\x4e\xdb\xd7\x5b\xbe\xfd\x28\xa9\x6c\x87\x32\xc7\xb3\xf2\x5f\x3b\xa7\xa2\x76\xbe\xb6\x1c\x1b\xa2\xf2\xeb\x1b\x85\x9c\x40\xbe\xd9\xce\x13\x92\xa6\x1a\xa4\x16\x0d\x37\x8e\xb3\x40\x8c\x86\x6c\x32\x50\x20\x2e\x31\xc5\xb5\xb8\xbf\x64\x4c\x36\xea\x5b\x7e\x56\xa6\x43\x1c\x35\x5f\xb6\x68\xcb\xa7\xea\x25\x23\x72\x4a\xa2\x78\xc8\xbe\xc2\x8f\xc4\x33\xe3\x44\x0f\x35\x07\x9f\xaf\x2e\x73\x26\x1b\xeb\xeb\x6d\x56\x53\x26\x59\xf9\x34\xf3\xf5\x78\xd2\x8e\x71\x6a\x1c\x41\x7e\x16\xfb\xd8\xcf\x0e\x41\x31\x1a\xd2\x46\x79\x1e\x5a\xfc\x48\x4e\xec\x10\xa7\x89\x90\x01\x2d\x6e\x1a\xc2\x53\x5c\x4f\x3b\x16\x0a\x3d\xa5\xd6\xd3\x78\x29\x94\xd9\xa1\x55\xdc\x8d\x0e\x57\x31\x1a\x42\x4c\xd8\x80\x16\x27\xd8\xcf\xd2\xba\xa5\x8c\x15\x6c\x90\xcd\x53\x52\x20\x6d\x21\x31\xd5\x3f\x90\xf1\x18\xed\x3f\xcc\x81\xfc\x8c\x45\x72\x83\xd3\x8d\x07\x00\x0c\x3f\x7f\xf6\x43\xc7\x55\x43\x38\x0b\x30\x11\xf3\x87\x49\x9f\x5f\xf7\x4d\x43\x43\xa4\xfc\xfc\x70\x38\x27\xc9\x9f\x2f\x1e\x8e\x7c\xfa\x71\x61\x48\x2d\x3f\x07\xa6\x1f\xcb\x9f\x09\x16\x24\xa0\x72\x7c\xfa\xf9\x74\x1f\x7f\xd6\xcf\xdc\x10\xe3\xe6\x67\x77\xcd\xf5\xb4\x64\xf8\x32\xd3\xe4\x03\xdf\x55\xff\x83\xab\x5c\x88\x81\xe3\xf9\x17\x1d\xef\xe3\x73\xf9\x61\x72\x7a\x92\x96\x11\x03\x95\xc3\xd5\x22\xfc\x05\xa8\xf1\xe5\x88\x17\x2f\x20\xdc\xcb\x98\x81\xea\xc8\x79\x37\x29\x58\x89\xb7\xf8\x7a\xd9\xb1\x88\x97\x74\x39\xe4\x45\x3f\x9e\x52\x26\x74\x42\x8a\xb9\xad\x2c\xd7\xcb\xe2\xdc\x22\x69\x09\x36\xd0\x6a\xda\xc1\x55\x70\x30\x04\x9b\x01\x16\x15\xeb\x85\x0d\x5a\x19\x10\xa2\xe2\xa4\x13\xc7\xb8\xc0\xf6\x5e\x82\x18\x34\x1c\x19\x4b\x31\x2e\x1a\x9e\x94\xf5\xc2\x09\xd9\xf9\x6f\x98\x30\xe3\xc3\x42\xad\x69\xd7\x22\xb4\x67\x10\x6f\x77\xc3\xf0\x1d\x2d\x0f\xc7\xda\x52\xe2\x88\x3e\x0e\xea\x2e\x0f\x9f\x76\x2d\x81\x1a\x7f\xea\x93\xcc\x4c\x99\x76\x66\xa7\x51\x43\x5a\x79\x4c\xb2\x5e\xa0\xe7\x3b\xa3\x5f\xde\x7c\x85\xca\x46\xb0\x5d\x99\xcf\xed\x3e\x99\x23\x14\x47\xe1\x4f\xfd\xfe\x07\xa7\xe0\x52\x74\x8c\x86\x67\x63\xbd\x6c\xa4\x76\x3a\xe5\xa5\x45\x67\x02\x2d\xad\x32\x63\xe8\x11\x2b\xcf\x75\xe0\x63\x18\x50\xde\x13\x2d\x85\xfa\x6d\x06\x7f\xf8\x51\x06\xde\xbb\x75\x58\x5a\xf5\x54\xb5\x9f\xdb\x6e\x83\xe5\xd4\x10\xdc\x49\x2d\x32\x43\x38\xb3\xd2\x4d\xb2\x2c\x1d\xf2\x2d\xde\x4d\xdd\xcf\x3f\xff\xab\x1c\xf6\xd6\x81\xc6\xe9\x8c\x6f\x32\xbe\x90\x1e\x1f\xcd\x0a\x94\x88\x13\x69\x1d\x3c\x28\xf3\x99\x77\x1d\x08\xaf\xb4\xeb\x38\xec\xac\xc3\x81\x79\x51\x18\xbc\xcd\x8b\xfc\x0a\x82\xcd\x1e\x86\x25\xe4\xc5\x71\x3e\x23\xb0\x98\x6b\xe9\xe5\xa3\x5b\x9f\x0c\x41\xbb\x25\xbf\xe9\x80\x3e\x07\x0c\x06\x2a\x03\x6f\xd9\x72\xf8\x0e\x2c\x81\x65\x54\x46\xcd\x5f\x2f\x47\x23\xa0\x8f\xc5\x66\x61\x19\xc8\x7a\x9e\x0f\xad\xdc\x4b\xea\x7a\xe9\x43\x79\x32\x07\x7f\xed\xbb\x93\x76\x41\x6e\x47\x18\xa2\x4f\xa4\x63\x4f\xa1\x06\x34\x98\x12\x61\x6e\x38\x65\x2f\xc7\xe4\x98\x19\x1e\x07\x67\xd8\xed\xf0\x5b\x8e\x2b\x6c\x62\x5d\x39\x18\xbb\x05\x5e\xc6\x63\x7f\xa6\xe5\xfc\x3a\x07\xf3\x73\x41\x6a\x6f\x8c\x14\x7a\x38\x1d\x4a\xcb\xf7\x4a\x4d\x79\x50\x99\xbb\xd3\xf2\xcb\x87\x88\x75\x9a\x61\x18\xaa\x43\x6b\x8c\x42\x2b\xb6\x38\x07\xdf\xd9\xb5\x71\x4b\xb3\xbf\xa4\xf8\x3a\xcd\x2f\x3e\x3a\xad\xd3\xab\x6e\x7f\xcf\x3a\x1d\x0c\x11\x8f\xe4\x3a\xb1\x6c\x2e\x4a\xbd\xce\x33\x94\x76\xd4\xe4\x3f\xec\x9a\xc6\x0d\xba\x4e\x23\xdf\x1c\xce\xf3\x26\x1d\xca\x96\x3f\xb1\x41\x3a\x99\x1d\xf9\x44\x38\xad\x2d\x67\x73\xe0\x30\xb4\x04\x95\x38\x1c\x1d\xfb\xa6\xbc\x90\xa9\xd9\xe5\x8c\x4a\x99\x65\x69\x0f\x69\xb9\x71\x31\x93\x3e\x4c\xf8\x68\xb1\x0a\x87\x09\xdb\x23\x4b\xf8\x07\xd2\x5a\xdf\xd4\xa9\xeb\xff\x17\x94\xee\x69\x7d\x5e\x5d\xc5\x21\xa4\x09\xd4\xb0\x1c\x2f\xa3\x3a\x10\xe9\x4d\x5a\x7a\x32\xbe\xc2\x4d\xe9\x91\x4e\xf5\xf8\xe8\x82\xe2\x6c\xf1\x90\xf2\x6a\x3a\xb8\xe6\x4d\x5a\xe1\x5c\xf4\x23\x1f\x08\x67\xb3\xa5\xf0\x19\x65\xc0\xea\x8a\x89\x71\x7f\x19\x52\x28\xba\x92\x66\x3f\xfa\x90\x3f\x43\x83\x8c\xb4\xa3\x97\xd5\x99\x13\xa7\x32\xeb\x23\xa4\xd0\xa4\x19\x00\x8e\x0b\x58\xbf\xe8\xb0\x91\xbd\x57\x78\xdb\x00\x7b\x3b\xb5\x02\x86\xff\x52\xa0\x8b\xf3\x4a\x27\xdb\x3f\x92\x9a\x55\x7a\x9e\xe9\xc2\xc1\x05\x27\x2a\xae\x45\x99\xf9\x2d\x69\x0c\x4e\x62\xcb\xe0\x08\x00\x34\x4b\xe0\x88\xb3\xd5\x34\xaa\xe0\xa7\xb6\x51\xd6\x85\xc9\x6a\x5b\x6d\x39\xef\x02\xe7\xb2\xa5\x44\x0b\xad\xa1\xc6\x2f\x8c\x10\x9f\xbd\x96\x90\x13\x25\x7a\xd2\x99\x16\xb0\xda\x97\x60\x14\x8d\xab\xb3\x75\x71\x86\x44\xbe\x08\x45\x71\xe4\x37\x94\x4c\xa1\xb4\x9e\xb2\xa2\x0f\x43\x19\xa2\x42\xff\x5e\xab\x93\xb1\x69\x5b\x66\x6e\x88\x35\x81\x37\x72\x5d\x3a\xf5\x73\xde\x58\x82\x3e\x1c\xb3\xb3\x9d\x1c\x6b\xa2\x1e\x99\x01\xf6\x25\xab\xe3\x00\x12\xf5\xc0\x94\xb9\x90\x9b\x88\x11\x20\x0c\x0e\x0b\x7c\x93\x56\x4a\x88\x0a\xa1\x14\x1a\xa6\xf8\xba\xec\x37\x6e\x35\x85\xe2\x09\x36\xd1\xe5\x97\x4d\xd9\x19\x17\x9b\x73\x84\xdc\xaa\x9b\x2f\x75\xee\x3f\xd8\x71\x4e\x44\xd0\xb3\x15\x0c\x69\xe0\x7c\xb2\xaa\x93\x32\x3b\x57\xd0\x4d\x7a\x3e\x2f\x28\xad\xe7\xf3\x61\x75\xd5\x14\xda\x67\x3b\x53\x6a\xcd\x83\xb9\x5a\xbd\xa2\x67\xea\x7e\xfe\xf9\xdf\xff\x1b\x81\x65\x22\xb3\x00\x8a\x01\x8f\xee\x12\x52\xa1\x13\x40\x64\x91\x34\x00\xef\xe9\xaa\x28\xe3\xa7\xae\xb5\x0b\x22\xd3\x69\x02\x66\x7f\x2a\x6b\xc9\xff\x0e\x64\x78\x57\xb5\xee\x61\x44\x3a\x9e\x38\x9f\xfa\x4d\x79\x49\x91\xa7\xce\x28\x30\xb2\x3d\xaa\xf3\x3f\x65\x43\x0a\xe5\xd0\x62\xd8\x2a\xa5\x40\xcb\xde\x11\xac\xa1\xc5\xf8\xab\xce\xa1\xda\x33\x76\xe1\x1a\x62\x37\x56\x3f\x7a\x89\x8d\x29\x98\x43\x8b\x29\x58\x79\x4b\x97\x01\xc9\xb5\x04\x8a\x67\x55\x4e\x2e\x93\x3e\x2d\x20\x4a\x0a\x6d\x44\x4e\x86\x27\xbf\x93\xb3\xb8\xde\x94\x78\x0a\x9f\xed\x32\x3e\xa2\x1e\x19\x2e\x70\xe6\xfc\xa7\x2f\xae\xf0\xb5\x2e\xc3\x25\x62\xe0\x09\x2e\x71\x36\x8c\x4a\xa1\x25\x8e\x32\xb0\x74\x04\x97\x28\x13\x91\xe1\x10\x18\x11\xaf\x82\x47\x94\x98\xaa\xcd\xe1\xb5\xe0\x21\xa3\x23\x1a\xda\xba\x85\xdd\xd2\x87\xa7\x36\x94\x7c\x1a\x23\x55\x19\x6a\x5a\xfd\x29\x71\x0c\x3d\xda\x79\xd9\x50\xa4\x8e\x7f\x11\xf3\xa9\x39\x69\x54\x54\x41\xf3\x79\x38\xb6\x16\xf1\x30\x4a\x28\x0d\xf6\xc8\x97\x1a\xec\xc5\x2f\xfb\x55\x0b\x1b\x07\xfc\x43\x43\x4c\x81\x7f\xa8\x19\x90\x0e\x1e\x31\xca\xda\x42\x60\xf0\x2b\xe6\x27\x74\x70\x73\xb6\x9e\xcc\x88\x9c\x93\xb1\x2c\x82\x70\x08\xa5\xdd\x88\x7a\x76\x02\x81\xec\xb0\xe6\x27\x54\x8d\x43\x48\xb3\xb6\x41\x8d\x3a\x67\x00\x4e\x91\x05\xa6\x01\x67\xf3\x6a\x91\x66\xcc\xba\xaf\xc1\xf0\x36\xaf\x86\x38\xe3\x0c\x60\x14\x43\x14\x70\x0b\x37\xa5\x61\x31\xff\x95\x2f\x3d\x3e\x97\x39\xe4\x45\xc3\x2c\x54\xe8\xfd\x23\x87\xe2\xce\xc1\x91\x8d\x41\x10\x89\xf1\x4a\x5d\x2b\x20\x56\xa8\x5b\x94\xe0\x73\x5f\x1d\xa3\xbf\xa5\x54\xe3\x43\x02\x10\x28\x9f\xbd\xe9\x50\x10\x15\x4c\xf0\x12\x86\xe0\xc4\xa1\xb2\x1c\x19\x22\x52\xb1\xfb\x8e\x91\x97\x9a\xcb\xa1\xf0\x47\x6b\x29\x35\x2b\xa2\xe8\x1c\xee\xbe\xf2\xbc\x6e\x75\x5f\x57\x35\x8e\x99\xdd\x5b\x37\xbf\x2a\x44\x41\xe7\xb9\xc5\xea\xd6\x0e\x35\x55\xe9\x35\x85\x1f\x37\xd4\x21\x61\x38\x4f\x2f\x31\x1d\x5e\xa1\xf4\x12\x17\x1f\xfc\x12\x6c\xa0\xe0\xf0\x5e\xc3\xbb\x13\x51\x27\xd8\xc0\x3d\xdc\x54\x75\xbe\x8f\x14\x2e\x3f\xa0\x7d\x41\x8a\xe3\x1e\xea\x2b\x44\x46\x3e\xf4\x49\x28\x5f\x4e\x2f\xf0\x84\xb2\x81\x81\xb4\x10\xc4\x40\x9e\xc0\x3f\x65\xb8\xe0\x07\x47\x58\x6a\xf8\x21\x4b\xc3\xde\x70\x90\xfd\x7a\x20\x21\x1c\x00\x22\xd2\x63\x18\x6a\xcf\xbe\x36\x38\x21\x36\x95\xe0\x07\x2d\xbb\xc3\x41\x1d\x5e\x39\xfe\x11\x70\x9f\xdb\xa1\xe5\xa8\x0e\x11\xda\x83\x8d\x8d\x55\x01\x52\x21\x96\x8b\x83\x3c\xd4\x03\x51\x33\x72\x0d\x01\xe5\x8d\x76\xa4\x25\x99\x27\x2d\x5f\x7a\x9f\x61\x53\x0c\x07\xd2\xe3\x9c\xe4\x20\xfb\x0d\xd5\x3a\xec\x9a\xe6\x3a\x63\x29\xaa\xfe\x41\xd0\xaf\xa5\x98\x0f\x65\x5c\x29\x73\xd2\x21\x9a\x71\xac\xab\xa7\x55\x1b\x2a\x4f\xa1\xdd\x49\x0c\x6e\x5b\xd2\x30\xb8\x5b\x6b\x74\x9e\xd6\x2d\xa1\x1d\x1e\x5d\x04\xd8\x81\xfb\x93\x35\xf0\x94\x72\x34\x9a\x3e\xf0\x71\xc3\xb3\xa6\xcd\x94\x96\xc2\xe2\xc2\x0b\x92\xe1\x35\x48\x0f\x6f\x40\xd9\xfd\xfd\x34\xa4\x9d\xc2\x09\xdd\xf1\x20\x26\x71\x32\xd7\xf4\x35\x6a\xe3\x90\x63\x9c\x44\x3d\x18\xbe\x63\xe7\x73\xad\xb4\x1c\x0e\x62\xd4\x94\x49\x4e\xb2\xc5\xe6\x64\x7c\x0c\xd7\x39\xbd\x60\x45\x81\x26\x0a\x17\xa5\x8b\x48\x11\xb8\xf9\x97\x41\x13\x93\x07\x9a\x6b\x22\x95\x38\xbe\x4e\xb8\x2f\x75\xdf\xfe\x34\x9d\x7e\xfc\xa3\x69\xd8\xe0\x63\x28\x1d\x3f\xce\xfc\xb6\x9f\x5c\x1d\x19\x9f\xce\x9d\x61\x45\x42\x45\xb0\x35\x88\xba\xcf\x9d\xcd\x9a\xbc\xcb\x63\x04\x8b\xd1\xe6\x4b\x03\x77\xd2\xaa\xee\x85\x46\xca\x24\x01\xd0\x40\xd3\xe6\x0d\xbb\x51\x51\x24\x3a\x61\x6f\x96\xc3\xec\x47\xe9\x0a\x6a\x71\xbd\x32\x36\x03\xfd\x11\xf0\xd3\x89\xba\x5e\xf9\xce\x30\x8c\xcc\xe4\x16\x6e\x95\x6d\xe1\x20\xfb\x11\x23\x0e\xab\x3f\xe3\x23\x70\xd4\x88\xca\xe3\x95\xb5\x60\x3d\x14\xc5\xf2\xa1\x06\xbe\x5c\xb0\x1e\xf3\xba\x6c\x13\xc3\x79\x4b\xaf\x3a\xb3\x4d\x96\x31\x38\xbc\x20\x58\xc6\x6f\x4c\xc6\x2e\xbc\x06\xa9\xb1\x6e\x6a\xbb\xd5\x54\x05\x57\x0b\xf5\xd1\x73\x95\x0c\xc7\x9b\x98\x25\x58\x58\x2c\xec\x62\xa1\x37\x1a\x28\x9b\xe5\xd0\x13\x67\x4d\x43\x62\xcb\x48\x61\x63\x39\x26\x56\xc0\x9a\x0c\x36\xcd\x5a\x3b\xc2\x05\x82\x76\x94\xc1\xea\x2d\xbb\x59\xb9\x9f\x59\xcb\xba\x32\xbf\xe2\xab\x9c\x1a\xca\xa3\x65\x0b\x39\x2c\x45\xfb\x0f\x98\xc3\xb5\x6c\xf9\xc0\xf9\x86\x8b\x34\x98\x49\x70\x91\x63\xd6\x50\x16\x40\x8c\xc6\x87\x67\xb6\xf0\x42\x01\x67\x69\x97\xd5\x52\x66\x6b\x39\x9a\x10\x53\x20\x4c\x40\x2c\xb8\x85\x73\x36\x53\x89\xec\x44\xcd\x0b\x68\x72\x4e\x36\x90\x23\x56\xf0\x92\x75\x2d\xdb\xdc\x5c\x01\xad\xb5\x99\x59\x46\x84\x21\xc4\x59\xdf\x31\x2a\x4a\x8e\x13\xcb\x0e\xb2\x9a\x55\x91\x61\x94\xf3\x83\xe2\x50\x8c\x1c\xc0\x04\x42\x29\x2f\xb6\xfb\x36\x97\x72\x82\xdd\x70\x29\x46\x9d\x31\x27\x6d\xa4\xaa\x45\xce\x95\xba\x52\x77\x35\x85\xc3\x85\x1d\x12\x01\x39\x20\x7d\x28\xb8\x42\x2a\x1b\x2b\xda\x70\xfb\xf5\x03\x12\x51\x90\x94\xd6\x46\x46\xa0\xf0\x1f\xf0\xf0\xe6\x72\x00\xc9\x65\x84\xca\x04\x5e\xb7\xb6\x53\xb5\xe6\x57\x6e\xc6\xbc\x78\x52\xb1\x40\xa4\x84\xd9\x36\xac\x97\x76\x24\x1e\xd1\x2f\x82\xa0\x94\x17\x4b\xb4\x7d\x2d\x3c\x8e\xb4\xa3\x13\xca\xcc\x87\x7a\xc8\x8d\x5e\xdc\x3e\xef\xc1\x15\x8e\x7c\x01\x58\x73\x6d\x8b\x4a\x56\x6b\xfb\x78\x37\xf3\x9d\xae\x6f\x31\x6b\xb6\x0d\x41\xce\xc3\x8a\x5e\xd1\x00\x1c\xaf\xed\xec\xf4\x84\xe6\x5e\x06\xa3\x8c\x1a\xca\x82\x9b\xaa\xbe\x14\xe0\x76\x71\x29\xb2\x45\x23\x5c\xf9\x72\x64\x8b\xc6\xb1\x7f\xfb\x09\xc4\x71\xa5\xd0\xe6\xef\x11\x52\x0f\x59\x51\x83\xdb\x67\xbd\x8c\x55\x37\x58\x3c\x26\x5a\x42\xb5\xf4\xec\xbc\x8d\xa7\x6f\xe4\x43\x65\x88\x78\xe5\x43\xef\x0a\x76\xa2\x60\x2c\x85\x38\xb4\xeb\xed\xc4\x4a\xc8\x46\x81\x5a\x8e\x83\xf9\x10\x8a\xa5\x10\xe2\x67\x01\x62\x09\xf7\xbe\x11\x9c\x47\x5a\xed\x5a\x81\x7c\xe9\xdb\x03\x18\xeb\x8d\xe4\x84\x7d\xdf\x36\x34\x9f\x11\x58\x9f\x8f\x74\x23\x3d\xd3\xd2\xcb\xcf\xbd\xf0\xa5\xec\x4e\x02\xb2\xae\x37\x2c\x89\x29\xf7\xb6\x87\x10\xf6\x75\x8c\x0c\xa2\xbe\xae\xf7\xf4\xf0\x52\xd3\x61\x8d\x07\xd4\x52\xd9\x01\xb5\x65\x2e\xa6\x0b\x26\xf6\xff\x18\x7b\x97\x5c\xd9\x7e\xe4\xdc\xaf\x5f\xa3\xd8\x33\xf0\x5a\x7c\x13\xf8\xe3\x74\xdc\xb6\xe7\x40\x66\xe6\x32\xd4\x90\x54\x28\x4b\xf3\x37\x18\xbf\xef\xcb\x23\x4b\xf7\xe2\x54\x63\x63\x93\xb1\x98\x7c\x33\x18\x8c\xa7\x8b\x86\x2b\xb8\x6f\x35\x90\x92\xd5\x59\xdd\x50\x6a\x72\xd1\x57\x0d\x04\x5e\xe2\x37\x47\xe7\x34\x03\x81\x0d\xe5\xcf\x71\xe1\x68\x43\xfe\x2e\xd7\x0b\xe9\xa8\x27\x72\x69\xae\xf4\x43\xef\x3b\xd5\x1a\x3b\xad\x5f\xff\x04\xf3\xe4\x85\x32\xfb\x2d\x14\x86\x8a\x8a\xcc\x04\xd6\x0b\x15\x66\x4b\x10\x43\x27\xa5\xc9\x35\xe5\x7a\x07\x91\x27\x2f\x91\x4b\x2e\x30\x24\x00\x5d\xef\xa1\xed\xdc\x94\xd5\x03\xc8\x5f\x41\x5b\xa2\x98\x43\x43\xa5\xc9\xbf\xdc\x42\x27\x45\x2e\x25\x97\x74\x52\xe4\xd2\x6d\xa1\x93\xd2\xbf\xd5\x3e\x91\x63\x4e\xac\xa1\xa2\x03\x1e\x5e\x2f\x4e\x17\x54\x2d\x06\x36\x5a\xce\xb7\x1e\x9f\xc5\x1f\x63\x19\x44\x7e\xe0\xd6\xc2\xe4\x57\x28\xac\x9c\xbe\x3b\x1b\x9b\x44\x68\x3d\xa2\xc2\x34\xf9\x24\x5c\x6f\x8c\x2b\x85\xaa\xdf\x68\x3b\xfb\xf8\xa3\xdb\x22\x6f\x7c\xeb\x0d\xeb\xc9\xe2\xd8\xb7\x02\xb6\xa9\x1e\xbc\x3a\x99\x09\xf8\x66\x23\x24\x17\x8d\xf9\x11\x6a\x20\x24\xcc\x1c\xee\xfa\xa2\x11\x8d\x52\xc4\x99\xaa\x21\x2e\xd7\x74\x2e\x5c\x7c\x79\x54\xf1\x5e\x95\x53\xd4\xf5\x46\x03\xde\x27\x08\x0f\x1c\xbe\x73\xe4\x81\x63\x78\xcc\x7a\xbe\x8a\x55\x80\xaa\xcb\x1c\x9e\x9f\x60\x0e\xc8\xc9\xde\x7a\x8b\x92\xf3\x48\x02\x1f\xdd\x32\xa4\x58\xe1\x92\xa3\xc9\xc7\xdc\xfa\x88\x59\x3d\xfd\x31\x87\x2e\xeb\x50\x8e\x37\x96\x5e\x55\x1f\xed\x36\xcd\x6d\x78\xdd\xb0\x4d\xc3\xb2\x92\xcc\x74\x96\xe9\x73\x45\xda\x5e\x6e\x25\xb6\x97\x26\x45\x41\x63\x2c\xcc\xfe\xc8\x40\x57\x45\xd9\x32\x22\x10\x3f\x12\x4f\xeb\xaa\xfd\x88\xba\x17\xff\x4d\x7e\x35\x6e\x71\x45\x42\x61\xe6\x74\x37\x7a\xbf\x2f\x64\x70\x4c\xca\xbe\xd0\x4f\x90\xbc\x7a\xcb\x0c\x5e\xd7\xe4\x0e\xf1\x70\x93\x83\xaa\x7d\xc1\x2b\x10\xb2\xdd\x8a\x87\x20\xc1\xf7\x26\x1e\x82\xbc\x2c\xed\x9b\xe3\x0a\x21\xba\x11\xf9\x0e\x61\xc5\x1d\x22\xdf\x7c\xab\x91\x5b\xbc\x02\x68\x83\x1d\x26\xf3\x4d\x7e\x95\x76\x98\xcc\x9f\xa1\x25\x65\x79\xc1\x56\xe5\x36\x23\x2b\xca\xc6\x5c\xb3\xab\xf7\xcd\xe4\x16\xd7\xfa\xd0\x03\x15\x05\xa1\x43\xf9\x6d\xc9\x8a\x25\x4e\xdf\x37\xd6\xcf\x23\xa9\x15\x1d\xde\xea\xc2\x35\x7e\xaa\x0e\x41\x73\x08\xc3\xef\x7b\x6a\x3a\xd5\x07\x11\xc3\xdd\x85\x4f\xef\x93\x07\x0a\x47\x5a\xa2\xf8\x8d\x40\xd8\x96\x46\x1b\x29\xaf\x98\xa6\x1b\x29\xaf\x4c\xfa\xf7\xad\x67\xbd\xa7\x81\xc8\x7a\x62\x5e\x6d\x09\x76\x75\x03\x6c\x2c\xea\xe5\x04\x6d\x87\x98\xb7\xdc\x5e\x08\x0e\x77\xd1\xa4\x2c\xad\xef\x9f\x11\xf9\xc6\x30\xbe\x12\xb4\xeb\x64\x63\xd1\xdc\x48\x1c\xd2\x4b\x21\x1c\xf6\xcd\x2e\x2a\xea\xcf\xd6\xa2\x39\x1b\x5d\xa8\xea\x82\xf6\x14\xf4\xc5\x46\x78\x2b\xbb\xdc\x4d\x7c\x05\xd9\x25\x12\xfb\xbf\xc9\xa4\x72\xa7\xe0\xea\x4a\x22\xbc\x93\x2e\x7e\xe8\xe8\x4d\x0c\x05\xef\x5b\x2c\xdf\x93\xc4\xae\x04\xff\xbf\x87\x2e\xbe\x8d\xe9\xfb\xd0\x1d\xb9\xc3\xf4\xbd\xc9\x72\x82\x78\xff\x4d\xba\xdc\x5b\x31\x15\x74\x43\x11\xfe\xff\x64\x5d\x96\xdb\x0c\xc2\x7a\x13\x46\x41\x9a\xd5\xc4\xff\xcf\xc2\x19\x0a\xff\x9f\xc5\x74\x25\xfe\x7f\xae\x1e\x75\x6c\x04\x21\x67\xc2\xff\x27\x11\xae\x84\xff\x3f\xab\xa0\x26\x83\xcb\x2b\x16\x0e\x21\xfe\xef\xec\x36\x64\xaf\xd4\x94\x63\xba\x34\x79\x68\x46\x55\xff\x2e\x1e\x3e\x9e\xbb\x78\x8d\x4b\x05\x76\x23\x3d\x96\xca\xdf\x26\xbe\x82\x7c\xdb\xee\x90\x25\x67\xa3\x19\xa4\xc7\x92\x53\xee\x14\x5c\x21\x69\x03\xee\x90\x1e\xe7\xec\x5e\x07\x0a\x1a\xdd\xb5\x70\x64\x86\xba\x8d\x82\xca\x48\x6a\x3f\x22\x02\x49\x0b\x66\x87\xa0\x39\xdf\xdf\x6f\xf4\xd4\xf5\x44\x94\x58\x9d\x9f\x2c\xc1\xc2\x50\x2e\x90\x13\x88\x76\x4b\xe8\xac\xed\x19\xf1\x1c\xb2\x9c\x9d\xee\xb0\xc0\x2f\x5e\xa7\x6c\xc4\xef\x8f\x1c\xc3\xe1\x5f\x62\x54\x38\x95\x8b\xad\x02\xfa\xde\x59\x4f\xa5\xe4\x8f\x04\x1f\xce\xca\x69\xb7\x76\x65\x63\x1c\xc3\x3d\x3f\x27\x42\x6e\x29\x77\xd6\x1d\xe1\x81\x84\xbd\xbe\x7c\x28\xef\x2c\x12\xc4\x65\xc3\x68\x5c\x2c\xb4\xad\xc0\x0f\xa2\x5e\x76\xc6\x1e\x47\x74\xcf\xce\xa8\x5c\xde\xd5\xd9\xd8\x1e\xcd\xad\xec\xb8\x0c\xd5\x77\xe9\xb1\xb8\x11\xb0\xd6\xf7\x63\x78\x8e\xbf\xd4\x66\x6c\x64\x59\xe4\x6f\x02\x41\xd4\xfb\x9b\x8d\x73\xe7\x1f\xc6\x1b\x5e\x9a\x9a\x3b\xa2\x44\x34\x11\xe3\x3b\xe2\x42\x64\xbd\x2b\x77\x46\xa8\x2a\x0d\x86\x9d\x31\x21\x1f\xae\x14\x7a\x20\x6b\xf2\x56\x18\x73\x57\xd7\xc3\xe4\x4d\x7d\xc4\x08\x53\x27\x42\xde\x04\x44\x16\x6e\x79\x13\x90\xbe\xc5\xce\xb8\x8d\x48\xfe\xc8\x3e\xc8\xfe\x08\xa7\xcb\xcb\xb9\xd1\x07\x71\xab\x1b\x9d\x25\xe7\x62\x71\x75\x3f\x64\x89\x5f\xab\xeb\x55\x07\xa9\x08\x01\xfa\x94\xf7\xbd\xad\xc8\x0f\xf2\xc8\xb6\x0b\x2f\x9f\xee\x5c\x1c\xa2\x7f\x42\x2f\x7c\x97\x21\xb4\x35\x95\x8d\xb5\xee\x6e\x24\x50\x81\xee\xa4\xc2\x56\x84\x5f\xb2\x0b\xfa\xa0\x22\x46\x77\x81\x1c\xe6\x09\xb7\x0b\x37\xaa\x10\x77\x81\x17\x9f\x9c\x8b\xc5\xd5\x36\xc5\x7d\x41\x17\xfa\x2d\x10\x36\x43\x43\x16\x8b\x33\xbb\x52\x04\x8b\xd5\xf5\x68\x75\xe9\x4f\x08\x50\x93\x9e\xfb\x0e\xd1\x2e\x9d\x18\x42\xb4\xdb\x7f\x2b\x21\xda\x5b\x1f\xfe\xa6\xdd\xee\x8f\xe1\x2e\x43\xeb\x55\xb1\xee\xba\x79\x02\x6c\x84\xad\x7a\x08\x11\xbe\xfd\xf4\x80\x0e\x11\x41\x40\x0c\x10\xc2\xb7\x37\x69\x71\x28\x60\xbb\x34\x33\x76\x08\x57\xb3\xa4\x63\x04\x6c\xb7\x4e\xe3\x0e\xd9\xea\x2d\xad\x0d\xa2\xae\x9f\x71\xd0\x62\x03\x57\xe9\xc0\x37\xbd\x7b\x78\x9b\x6f\xc5\x01\xb8\x85\x0f\xc3\x82\x3c\x7b\xab\x35\x3d\x7b\x78\x47\xef\x90\x7b\xde\xf2\x15\xaf\x20\xeb\xf5\x16\x26\x6f\xba\x13\x45\x92\x29\xca\xba\x1e\x08\xbb\x49\x22\x22\xf4\x1d\xe6\xdc\x4d\x2e\x12\x88\x87\x7e\x7e\xea\x2c\xd4\xa6\xf0\x83\x44\x96\xd2\x9f\x21\x06\xba\x1d\x76\x29\x06\x7a\xbd\x85\x24\xc3\x0c\x3b\x89\x85\x45\xcc\xf3\x53\x91\xc6\x86\x03\x36\x99\x2f\x10\xd9\xfc\xd0\x3c\xfa\xe9\x06\xf5\x89\x2a\xc3\x31\xbf\xb1\x6d\x43\x94\x2d\xfb\x05\x42\x94\x9f\xac\x3a\xc1\x85\x23\xfd\x16\x45\x25\x97\xd6\x80\xa2\x92\x27\x69\xad\xec\xb6\x15\xd6\xcd\x3f\x8d\xdb\x50\xf8\xa4\x0f\x0d\xb5\x29\x1b\xb4\x8b\xd0\x94\x7c\xea\x4b\x54\xb4\xbb\x14\x5e\x74\x05\xf5\xa1\x2e\x0d\x65\x07\x07\xcd\x15\xe3\x34\x5e\x1b\x24\x2c\xac\x9b\x44\xa9\x84\x26\x6f\x92\xb5\x6f\x19\x58\xdf\xcd\xd9\x38\xa2\xc2\x27\x1d\x6f\x6e\x92\x21\xee\x2e\xaf\x3e\x22\x7c\x2c\x11\x2d\x2e\x1c\xe7\x72\xba\x2c\x82\x12\x9d\x4b\x85\x23\xd7\xeb\x92\x70\xe4\x4d\xea\x09\xbb\xf3\x48\xd5\xb6\x0b\xe3\xec\xdb\xd4\x44\x18\x67\x37\x89\x54\x08\x40\x9e\xc4\x3d\x22\xe2\x78\x93\x74\x83\x80\xe3\x67\x24\xaa\x86\xd3\x2d\xbd\x9f\xdd\x25\x5c\x10\xc5\x14\xb6\xd9\xf7\xcc\xae\x48\x27\x58\x33\x44\xe8\x31\x91\x53\x1d\xde\x85\xd4\x89\x76\x08\x52\xb3\x22\xd2\x10\x37\xfc\x54\xeb\x6c\x44\x39\xd6\x65\x12\x16\xd6\x4d\xf2\x8c\x2d\xc1\xa9\xde\xb0\x3b\x04\xa7\x4d\x1c\x72\x85\x0d\x9f\x43\x57\xd6\xc0\x95\x83\xde\xa5\x44\x03\xcf\x72\x0b\xba\xe5\xc4\x7e\x08\x35\x0c\x1c\xb0\x9e\x07\xf7\x1f\x31\xf9\x20\x00\xaf\x4e\x1e\xc2\x51\x31\x4a\x89\x23\x7e\xc6\xa9\x36\x91\x71\xea\x21\xba\x87\xae\xff\xe4\xc2\xd1\x7b\xed\x04\xe2\x7f\xd7\x5b\x97\x14\xf2\xc6\x2e\x19\x2c\x41\xbe\xef\x29\xe1\x96\xa3\x7c\xeb\x65\xba\x43\xc4\x68\xc3\xe3\x8d\x31\xb4\x78\x75\x44\xea\x3e\xbf\xbc\x95\x25\xc2\x9f\x6e\xdc\x90\x2a\x36\x71\xdc\x14\xaa\x5b\xfc\x49\x85\xea\x1e\x7e\x88\xca\x6e\xda\xaf\xcb\xb1\xf5\xfc\x65\x6c\x61\xed\xdc\xc4\x3f\x25\xae\x76\x96\x89\x0d\x91\xb3\x9b\xf8\x44\x04\xce\x6e\x62\x1e\xec\x90\xf7\x35\x31\x70\x88\xa2\xdd\xc4\xe3\x53\x14\xed\x7a\x77\x17\x8d\xad\x70\xbb\x41\x98\x22\x22\x9e\xe4\x29\xbe\x7d\xab\x05\x21\x8a\xec\x99\xac\x92\x2e\xdf\xa9\x65\xd1\xdc\x86\xf8\xaf\xf9\x69\x84\xef\x77\xb1\x2f\xf6\xe4\xb9\xd8\xbe\x59\xee\xc2\xea\xb2\xa1\x47\xa3\x0b\x2e\x24\x7a\xcd\xa4\x38\x12\xbd\x29\xaf\xfc\x0a\x9d\x3d\xfc\xc2\x9e\x1c\x3b\xed\x63\x9c\xbf\x8b\xb5\x41\xac\xec\xf3\x4b\x17\xe5\x60\xe9\x89\x3a\xf5\x5e\xd4\x2d\x81\x1d\xf4\xf0\x8b\x7b\x4a\xdb\x4d\x6f\xdf\xe9\xc5\x57\xe1\xd0\x1d\x31\x25\x1d\x2e\xdf\xed\x06\x48\xe1\xb2\xa7\xf4\x03\x76\xd8\x4c\x37\xbf\x00\xa6\x88\x2d\x5d\x79\x53\xd8\x5b\x1b\x4e\x36\xd3\x44\x05\x1e\x04\xd3\x3e\x3b\xc3\x8d\xc6\xb2\x69\xd3\x47\x88\xec\x66\x6a\x19\x61\x9d\x69\x38\x84\x75\x26\xf0\x16\xbb\x46\x78\x40\xbe\xe0\x47\xf3\xc7\xd8\x28\xda\x9a\x21\xac\x6b\x26\xd9\x90\xce\xf9\x56\x42\x1c\x37\x87\xae\x51\xc4\x71\x26\x66\x96\xb4\x50\x45\x87\x61\x5a\x6d\x3a\x28\x1c\xc1\x37\x53\x1d\x4b\x98\xba\xb9\x28\xb7\x85\x2e\xca\xc5\xae\xd1\x90\x09\x9f\x3d\x15\x4e\x74\x2f\x6f\x22\x37\xfa\x26\xeb\x8a\x21\xf0\xdc\xdf\x90\x6e\xf8\x02\x5e\x98\xde\x98\x68\x59\xc2\xc0\xba\x69\x96\x76\x8a\xd0\xf5\x02\x0d\x68\x2b\x84\x91\x76\xaa\x1e\x5a\x30\x1d\xbe\x93\x22\x8e\xa2\x90\xb5\x3c\xc3\xdf\x22\x6b\x17\xd7\xbc\x7b\x0f\x3a\xd1\x0d\x15\x16\xdc\x4d\x0e\x56\xf6\x12\x43\x42\xe4\xe8\x42\x2b\xa1\x7f\xcb\x86\xf2\xb0\x04\xce\x7b\x6d\x85\x61\x51\xff\xf0\xef\x63\x3e\x48\x88\xd2\xda\xd0\x83\x30\x0c\xb8\xbb\x34\x2a\xf6\xc6\xec\x41\x9a\x79\x7b\xb3\x4f\x74\x5f\x60\xa1\xed\x4b\x69\xeb\x52\xff\x27\xbc\x89\xef\x0d\x26\xd2\x7d\x81\x24\x4d\x5e\xda\xf7\x66\x4b\xe9\x7e\x40\x90\xe6\x4b\x5b\xb6\xdd\x97\x7b\x13\xa2\x2a\xf7\x0d\x63\xfd\x5b\x14\xdf\x86\xcf\x21\x7a\x64\x8b\xa9\x25\x7a\x1d\xe9\x98\x71\xba\x0c\xb4\xa5\xa3\xb7\x43\x02\x96\x15\x7e\x6b\x87\x94\x2b\x8b\xb7\xbe\x71\xef\x6e\x94\x8e\x97\xf6\x39\x74\x73\x20\xd8\x32\x5e\x94\x5b\x76\x09\xef\xb7\x44\x59\xd2\xe7\xdb\x1b\x4d\x45\xa9\xfe\xed\xbd\x35\xcf\xea\xbc\x68\x36\x9d\x00\x64\x52\xdf\x1e\x11\xc2\xe6\x16\x07\x01\xc3\xeb\x2e\x51\xd7\xc6\xf0\x7a\x88\xd9\xb0\x41\x01\xd5\xdf\x70\x48\xec\x36\x63\xdd\x85\xa8\x71\xbd\x3e\xcc\x60\x7a\x41\x79\x4b\x4f\x6f\x87\xe1\xf5\x2d\x63\xa2\xfd\x62\x1b\x7c\x73\x1c\x0d\xa1\xc9\x97\xa8\x39\x2d\x60\x98\x56\x27\x69\x62\x6c\x4c\xab\x8d\xc5\x91\x50\xf9\xb0\x62\x10\x6d\x8c\xf9\x02\x23\x08\xef\x85\xd0\x29\x7b\x7a\x5e\xdc\x1b\x42\xd3\x2f\xd4\x46\xa4\xfb\xb7\x43\x06\x75\xd7\x5b\xcf\xaf\x17\x66\x51\x92\xd7\xef\x17\xe8\xa2\xf9\x63\x4c\x96\x30\x4b\x48\xa1\x9a\x11\x1d\x2e\xdd\x4d\x81\x61\x48\xdd\xef\x6f\x23\x41\x41\xe8\x94\xbc\x10\x37\x48\x35\x70\xbf\x50\x4d\x1c\xdd\x5f\xe3\x98\x34\x7f\xd4\x6c\xa9\x4d\x9e\xf7\xd2\xfe\xdb\x2f\x5c\xbf\x16\x7f\x5c\x87\x94\xd3\x63\xe2\x85\xc6\x9c\x99\x7e\x2f\xbd\xfd\x85\x3a\xe4\x1b\xfe\xfe\xfe\x94\xed\xe6\xe5\x5c\x44\xd5\x51\x1f\x36\x73\xab\x36\xb7\xdc\x5d\x6a\xe2\x75\x1d\x75\x97\x85\x74\x17\x45\x2b\x97\xef\xcd\x9d\x08\xd5\x79\xef\x2f\x5c\xbe\xfb\x38\xbc\xc4\xcb\xea\x6e\x86\xb9\x56\x87\xd8\x7c\x5e\x95\xe0\x5e\x0d\xa1\x2b\x19\x60\x4b\xe7\x78\xbf\x85\x83\xbe\xd9\xd8\x26\xdd\x39\xb8\x04\x3a\xd8\x78\x83\x2f\xdf\x8a\x62\x9f\xe8\x8c\xbd\x41\x57\x9a\xaf\xb7\x77\xed\x54\x36\xba\xae\x55\x91\x33\x78\x49\xea\x36\x42\x33\xaf\x67\x08\xcd\xb2\x6c\x2d\x36\x32\x33\xcf\xd6\x1b\x86\x55\xf3\x0f\xf5\xb0\xd4\x5e\x7c\x4b\x6b\x56\x38\xfc\xad\x8b\x4d\x53\x8b\x61\xb7\xa7\x4b\x86\xdd\x66\xc5\xbe\xd9\x9b\x1e\x26\xf6\x14\xda\x6f\x6f\x54\x98\xf4\xf4\x7e\xeb\xe9\xa0\xd3\x19\x2e\xca\xbf\xbc\xf3\x0f\xd5\x88\x87\xf0\xd1\x7d\xa8\x83\xf4\xe1\x69\xdb\xfe\x6c\xd8\xb3\xb1\x4a\xf6\x82\x11\x50\x7f\x88\x1a\x53\x40\x7d\xb3\x8d\x3f\x3a\x0d\xc3\x59\xed\x27\x75\xe1\x1c\x87\xa2\x40\x71\x84\xdb\x2f\x7e\xb4\x87\xd7\xf1\xf6\xfb\x87\x11\x33\xbf\xb8\x49\x3a\xc0\x0c\x7c\x50\x41\x11\x31\x8d\xf9\xb2\x14\x3e\x88\xa7\x9f\x15\xa3\x80\x78\xfa\xa7\x73\xfe\x61\xcc\xb9\xa6\xee\x03\x9e\x95\xc2\xe5\xc6\xb4\xd9\x14\x68\x98\x36\x0f\x05\xd2\x50\x78\x7d\x39\x68\xdd\x72\x73\x2e\x75\x22\xc2\xeb\x77\x93\xef\x8a\xae\x2f\xd5\x10\x45\xd7\x1f\x66\x46\x3f\x67\x3b\x77\x63\xfa\x30\x74\xee\x53\xfb\x05\x17\xe8\x66\x36\x3e\x7a\x56\x55\x67\x23\x72\x92\x74\x74\x08\xc4\x7f\x8f\xfe\x6d\x05\xca\x47\xc8\xec\xe1\xe2\xec\xdf\x2c\xf1\x45\xe9\xfd\x33\xd5\x41\xd5\xc4\xbb\xb9\x3a\xc7\x45\xd0\x5c\x16\x79\xc1\xb7\x6c\xe0\x65\xd1\xcf\x8f\x98\xae\xdf\xb2\x81\xec\xc5\xcb\x79\xf4\xcc\xd2\x92\x85\x69\x73\xf3\xfd\xfc\x08\x83\xea\x2a\x78\xf4\x1a\xd6\xba\x84\x1f\xf4\x66\xde\x69\x84\xed\xef\xc6\x98\x8f\xa4\x41\xdf\x6c\xf8\x14\xea\x6e\x33\x7a\x20\x8e\xc5\x23\x17\xf7\xea\xfa\xe2\x18\xfb\x77\xc2\xef\xfe\x61\x6c\x2f\xb1\x45\xc2\x61\xba\xfd\x6c\xed\x47\xac\x53\xf7\x95\x87\x9c\xb8\x01\x8f\x08\xb1\xe6\xb2\xda\xed\xaa\x36\x24\x01\x66\x92\x84\xb1\x74\x9b\x7a\xc1\x3e\xa2\xca\xb4\xc1\xc2\x2b\x7a\xb6\x1c\xeb\xf1\x06\x3b\xd5\xce\x71\xc5\x96\x02\xad\x9c\x1c\x01\xce\xa7\x72\x50\xd6\xc3\xd9\xf3\xe2\x4f\x97\x8b\xf2\xe2\x1f\xae\x27\x26\x36\xb8\x1e\x27\xd7\xc2\xfb\x55\x57\x4e\x13\xeb\x7a\x76\x74\xb6\x28\xc7\xb3\x3d\xb0\xf9\x24\xe2\x7f\x9b\x41\x97\x4d\x02\xfe\x37\x4e\xe3\x24\xde\x7f\x4e\xfe\x16\x7b\x6d\x76\x7d\xe3\x4d\x30\x55\x4b\x70\xf0\xaf\x6f\x2e\xd4\x62\xdc\x3c\x57\xfe\x74\xae\x45\x7b\x59\xb9\xf0\x21\x77\xbb\x05\x0e\x71\xd3\x30\xce\x85\xdf\xb1\x8a\x3e\xb9\x15\xb3\xea\x26\xe0\x45\x0c\x17\x0d\x0d\xe1\xe6\xa2\x31\x8a\xcb\xb9\x27\x44\x18\x9a\xc6\x60\xf3\xf1\x92\x3e\xb9\x3b\x4a\x3a\x97\x02\x4f\x68\x86\x57\x44\x32\x2a\xfe\xd6\xa3\xa4\xe6\x5b\xef\xcb\xe9\x8f\xdc\xe0\xd5\xd9\x88\x7a\x3d\x34\x2a\x2c\xdf\x38\x4c\x73\x84\x41\xb4\x9c\xb8\x9e\x5c\x68\x1b\xf4\x3f\xaa\x82\x9f\xa2\x35\x7a\xe0\x1f\x32\x8f\xea\x2b\xea\x78\x70\xeb\x4f\x76\x44\x98\x2f\x4d\x72\xdc\xed\xe8\xc6\x9f\x1c\xfa\x32\xfe\xc6\x82\xbb\x1a\xee\xc0\xce\x47\x2c\xa7\xaf\xa4\x49\x0e\xcb\x69\x31\xf7\x4e\x0e\x74\xd2\x6f\x65\x39\xf7\xd3\xd9\x50\xcb\x6c\xfe\x65\x30\xe5\x7a\x53\x2e\xfa\x73\x57\xe5\x56\x28\x65\xba\xc9\xb0\x44\x2e\x6e\x03\x42\x69\x38\xfb\x0e\x94\xe5\xa2\xe1\x7b\xa8\xab\x89\xd8\x81\xe9\x56\xc9\xe0\x18\x12\x2c\xf9\xe4\xc2\xfb\xb9\xbb\xc6\x0e\xbc\xfd\xbb\x38\xc9\xf7\x50\xee\x6c\xb9\xe2\x8e\x6a\x93\x69\x95\xc3\x2e\xba\xc3\x1b\x3b\x39\xf0\xb2\xb6\x27\x76\xd1\xd3\xed\x07\xc6\xcc\x3a\x39\x21\x21\xef\xf0\x20\x4f\x0e\xb4\xac\x83\x84\x21\xf4\x70\xe7\x22\xf6\xbc\xd7\x4a\xe2\x73\xb4\x08\x4e\x36\x54\x44\xb3\x7f\x18\x3d\xd7\x4e\xbe\x71\x36\x7b\x3b\xc7\xbb\xc8\x03\x89\x07\xcd\xf8\x7e\xfc\xc4\xa3\x4d\x13\x10\xf8\x12\x2d\x8b\x39\x6e\x3d\x6e\xdc\x9d\x60\x7e\xcc\xa4\x16\xc5\x74\x9c\x1a\x48\x30\x1d\x8b\xd7\x91\x0d\xe9\x41\x06\xb1\x89\xbf\xa9\x93\x1b\x91\xf3\x37\x5e\xe0\xd3\x1f\x57\xac\x8e\x3f\x86\x0f\x3d\x6f\xb9\x10\x42\x4d\x4f\x79\xd0\x9a\x45\xa7\x3c\x8c\xa9\x1b\xb1\x0e\x4e\x2e\x4e\x72\xea\xca\xd1\xef\xaa\x5c\xfe\xf5\x53\xf1\x32\x76\x72\xb1\x53\xab\x6b\x01\xeb\x77\x17\x0d\xaa\x62\xba\x28\x02\xb2\xe9\xb2\xb1\x71\x85\x49\x10\xe4\x13\x2e\xfe\xe4\xb4\x57\x8a\xb2\x60\x59\x2d\x40\x12\xa7\xad\xbb\x7b\x31\xe7\x99\x49\x4e\x28\x3f\x77\x7f\x0c\x51\xe9\xd0\xf6\x48\x92\x68\xb8\x47\x62\x6f\x57\xff\x94\x27\x92\xae\x81\x24\xe1\xa8\x3b\x21\xa1\x94\xbf\x2e\xad\xad\xfa\x84\xed\x06\x82\xb0\x93\xe5\xf2\xf9\x7e\x8d\xf3\x54\xd5\x27\x51\xa6\xdf\xb2\x2d\x94\x5b\x5c\x34\x36\xa2\x56\x37\x04\xf6\x0a\x69\x76\x72\x8c\x54\xbd\xc7\x2c\xab\xeb\xf6\xc3\x8a\x7b\x6a\x3f\x27\x49\x46\xa6\x9a\x24\xa0\xc1\xed\x75\x92\x5a\xe8\xf7\x6b\x20\xc3\xac\x91\x89\xeb\x2a\x8c\x9b\x88\x72\xad\x1b\x47\x3e\xef\x7d\x55\xe1\xf3\xbe\xa3\x89\x30\x47\x48\xd8\xef\x5b\x1f\xb3\x90\xda\x48\xca\x6a\xb6\x9b\xb2\x10\xf6\xc3\x3f\xd5\x3e\xfe\xa3\x28\xf3\x94\x25\xa4\x69\x57\x4e\xc7\x73\x2a\x1b\xbe\xe4\x1b\xf3\x90\x45\xb6\x0d\x67\x99\x7a\xcd\x59\xd6\x1b\xd9\x1d\x8e\x67\xf0\xcc\xaa\x08\x65\x4c\x64\x80\x27\x8b\xe8\x6c\xfa\x6b\x28\x5e\x67\x7f\x84\x09\x2a\x7a\x02\x99\xf7\xd0\x9d\x19\x22\xef\x86\xdf\xd0\x93\x2b\x91\x53\xe7\xb5\x17\x3c\x0b\xf8\x6a\xa8\xea\x8f\x5e\xba\xc2\x1f\x21\xd6\xbe\xcb\xf7\x23\xa2\x30\x6d\x2a\xbc\xe4\x4f\xdf\xbe\x19\xdf\x20\x5d\xc8\x3e\xb3\xe0\xe9\xfb\x15\x7b\x76\x75\xde\x0b\xae\x8a\x37\xeb\xe4\x5f\x06\x79\xa8\xcb\xb8\xe8\x49\x3a\x9d\x8d\x91\x15\xe7\x78\x53\xe8\xc0\x14\xd4\x26\x4c\x0d\x15\x91\xed\x3a\x3f\x48\xae\x53\x1b\xce\xf2\x04\xd3\x04\xca\x2f\x7e\x13\xe6\x0a\xb9\x72\x9b\x45\x35\xe9\xf9\xa8\x89\x08\x4f\xf8\xa3\x65\x17\x45\x09\xb4\x4e\x65\x3b\x03\xf7\x4f\xd9\x74\xd3\xcd\x04\x0e\x2a\x49\x39\xd8\x83\xc3\xf5\xbe\xf8\xa9\xbf\xc2\x25\xd5\x99\x91\x7d\x78\xd3\x04\x97\xa5\xc1\xaa\xb0\x2e\x17\xd5\x84\xc5\x41\xf3\xac\xa1\x9e\x50\xfc\x11\x6c\xa6\x45\x96\x87\xfb\x5b\x78\x39\x8c\xc7\x1b\x16\x19\x27\x77\xd3\xa5\xac\x2c\xd3\xe2\x1c\xd3\xd2\x9c\xe5\xba\x9b\xae\x08\xa2\x46\x5b\xbd\x48\x96\xa2\xdd\x5c\x60\xa0\xa7\xcb\xed\x70\xa4\xa6\xab\x7a\xf3\x95\xb5\xaa\x58\x12\x34\xad\x73\x05\xaf\x27\x51\x4f\x61\xe6\x9d\x93\x3a\x55\xc1\xeb\xc5\xbf\x8c\xa0\x34\xea\x43\x58\x80\x2b\x6c\xdf\xc9\x45\xa8\xd0\x6f\xc9\xd0\x29\xd7\xa4\xc8\x1e\xbc\x69\xef\x60\x0f\x9e\x85\xea\xea\x54\x77\x54\x4f\x50\x2b\x4d\xd7\x73\x85\x3e\x29\xfe\x16\x93\xe0\x83\x89\x57\xfb\x29\x42\xbf\x4a\x4d\x5b\x93\x2b\x43\xf2\xf9\xcd\x6e\x46\xa9\xc2\x4b\x2b\xa1\xa1\x04\x19\x52\xdd\xbf\xe0\x03\xcc\xe2\x6f\x3a\x7b\x53\xd9\x40\xb6\xc5\xb9\x4e\x2b\x1a\x4b\x98\xe8\x4e\x9d\x36\xbc\xdc\xfb\x52\x0c\x0d\x05\x39\xfa\x3f\x39\x0e\x8c\xb6\x63\x65\x2b\x08\xbf\xa3\x84\x30\x75\xaf\x55\xde\xfa\xc3\x6d\x6c\x3c\x41\xa9\x77\x41\x5b\x5c\x42\xe0\x35\x68\x0b\x53\xe2\x75\x6b\x46\x34\xac\xad\x19\x71\x96\xa7\xb5\x56\xb3\x89\x3d\xa5\x1d\xd5\x40\x0d\xf5\x8f\x4c\x94\x53\x94\xcb\x49\x28\x1b\x87\xf8\x63\x68\x3f\x35\xd4\xad\xba\x50\x57\x98\x7c\xcb\xeb\xea\xc9\x31\x5f\xfe\xa5\x3a\xe8\x8f\x81\xce\x35\x34\x8c\xbc\x4d\xfd\x36\x24\xe6\x49\xdb\x04\x23\xef\x59\xab\x72\x37\xf5\x74\x65\x83\x54\xd7\xb9\x42\x2b\x62\x9a\xaa\x94\x55\xb7\x36\x5f\xe3\xd1\xd5\x2f\x97\x8d\x25\x13\x55\xdf\xa6\xda\x54\x16\xaf\x01\x5d\xcb\xd2\xb8\x25\x74\x3b\x86\x57\x7b\x19\x92\x9f\x9c\xe6\x40\xfd\xc3\xe9\x64\xba\x93\xb2\x71\xc6\x84\xf1\x42\x81\xa2\x4d\x5d\x0b\x0d\x85\x7e\x8f\x04\x02\x42\x88\xb3\xf9\xca\xd0\x0f\x77\x10\xd6\x22\x9c\x50\xad\xa8\x49\x04\x29\x66\xde\x63\xb8\xa2\x78\xec\x13\x1f\xf8\xe4\x62\x4b\x37\xcd\x25\xd7\xc9\xf0\x04\x11\x6c\x27\xfb\x63\xf4\x55\xd8\xad\xa1\x14\x3a\xbd\x0a\x1b\x8c\xeb\xc5\x85\xd6\x98\x9e\x2f\xde\x53\x5d\xab\xdb\xf1\x6e\x3d\x35\x09\x5d\xb7\x8d\x5e\x29\xa1\x69\x91\x8b\x36\x39\x8a\x16\xb7\xc6\x12\x7a\x16\x0a\xf3\x79\x72\xb1\x85\x9a\xbf\xc5\xec\x35\xb7\x11\xf4\x73\x71\x2d\x61\x8e\x31\xdc\x42\x38\xfa\x17\x12\xea\xb8\x9a\xd1\xd5\x81\x4f\x7b\x3f\xd8\xa4\x80\xa1\x4d\x8a\x86\xc5\x6c\x2e\x19\x17\x85\x6e\xd0\xb0\x38\xcf\xb7\x2e\xab\x8e\x1a\x71\xd7\xfa\x84\xba\x85\x1c\x37\x9d\x5c\x74\xb4\xbb\x28\xda\x66\xd3\xf5\xbc\xe3\x21\xec\xf6\x83\x54\x29\x2e\x1a\x7b\x40\x68\xa4\xf3\x66\xef\xfa\x5d\xd0\xa9\x97\xfb\x16\x84\x69\xf7\xac\x11\x6f\x71\xb8\x64\x10\x47\xc3\xd3\x8d\x8e\x5d\xf7\x62\x20\x04\x4e\x9e\xe2\x8d\x06\x8a\xe7\x18\x6b\x90\xa4\x67\xa2\x4c\xd3\xbb\xab\xc2\xab\x84\x1f\x9f\xa8\x5f\xcc\xee\x8a\xdf\x94\xd5\x5c\x86\xfa\xc5\x14\xe9\x2c\xb3\x75\x33\x5c\xd0\xc6\x18\xe3\x9b\x0d\xe5\xab\xe2\xb2\xf4\x41\x0f\xbe\x01\xf5\xe9\x67\x74\xa8\x6a\x8c\xa6\x75\x1f\x10\x98\x5d\xa3\x19\xd8\x5e\x56\x17\xc5\xb1\x32\x93\x1b\xca\x18\xc3\xac\xa3\x50\xc6\x68\x53\x53\x16\xba\x18\x6d\x76\x7f\x8b\x33\x23\xa2\x75\x08\x6f\xb8\x3b\xbc\x7f\x45\x9f\xa1\x89\x31\xcd\x57\x18\x3a\xfd\x7a\x64\x86\x93\xfa\x7e\xe9\xca\x88\x88\xfe\x6d\xea\x69\x31\x90\x8e\x26\xbd\x23\x43\xd7\xa2\x5c\x9a\x59\x05\xe6\xd7\x06\xc6\x47\x7d\x4d\xe2\x07\x0c\x4c\x65\xff\x19\xf4\x1d\xe6\xdd\xf2\xf7\x33\x89\xda\x2f\x17\x35\x27\x17\xc4\x4d\xcf\xce\xc6\x7a\xe9\x94\x84\x3d\xf7\x68\xea\x39\xde\xea\xc7\xb8\xfd\x51\x5d\x2f\xca\x06\x17\xec\xfb\x31\x26\x4f\x27\x71\xea\x86\xd0\x9b\x69\x7a\x69\xab\xb2\x71\xc9\x8b\xb0\x44\xdb\x63\x0e\xd7\xba\x68\x73\x2a\x1b\x67\x6a\x38\xc7\x5e\xcb\x6e\x25\x4e\x51\x75\x23\x0f\x8d\xa8\x5a\x0e\xbc\x8e\x5f\xd8\x81\xcb\x0d\xce\x1c\xf2\x81\x6f\x2e\x59\x98\x73\xb7\xa9\x47\xd1\xd4\xc2\x67\x97\x65\xda\xd5\x64\x30\x8e\xa7\xa8\x0a\xf9\xc7\xbf\xfc\xc3\xd8\x22\x7a\xa4\x61\xcb\x5d\x93\x9e\x44\xa8\x7e\x8c\x91\xfc\x35\x58\xff\xa2\xe6\xd0\xf5\x98\x22\xbc\x27\x31\xfb\x86\xb6\x08\xc6\xdc\x55\x77\xd2\x84\x8c\xd5\x9d\x34\xf1\x5c\x38\x92\xeb\xe1\xdc\x8a\xf0\x0e\x4d\x8f\x83\x82\x94\x8b\x77\x4d\xd7\xb9\x20\x9a\xff\x34\x9f\x48\xea\x1b\x5d\x84\xb7\xc2\xf9\x77\xd1\x8c\x61\x8a\x9d\xbb\x07\x8a\x6f\x8a\xa1\xa1\x2d\x7c\x15\xa9\x4b\x98\x5e\x67\x2d\x67\xa8\x6f\x64\x9f\xe9\xf0\x86\x3f\xb2\xae\x1a\x39\xc3\x1f\xba\x11\x16\xca\x75\xbd\xf8\x97\x6f\xbe\x4e\x65\x3f\x74\x57\x85\x43\xa9\xaa\xeb\xad\x27\x0b\xea\x5e\x9c\x0d\x5a\x4b\x93\xbb\x38\xd6\x7a\xb7\x2c\x70\xbd\x48\xf0\x25\xea\x53\x57\x21\x06\xd4\x7e\xdc\x2d\x51\x9f\xd9\xd9\x60\xd0\xba\xb7\x20\x7b\x11\xdc\x2b\x84\x57\xf3\xfb\x43\xe6\x47\xbb\x5f\x51\xfe\xbb\xf0\x9c\x0c\xa1\x45\x0d\x2c\xa4\xac\x5d\x67\x75\xf1\xbe\x1c\xda\xe1\xb8\xd1\xf7\x56\x44\x07\x63\x9a\x09\xa7\x08\xfc\x43\xaf\x58\xf4\x2e\xb2\x8f\xc3\xe2\xb1\xd1\x75\x96\xc3\xa0\xb9\x4d\x51\x86\x4b\x62\x7b\xe1\x84\x05\x07\x55\x84\xab\x74\x32\xfa\xb7\x22\x0e\x9d\x4e\xc0\xd2\xe2\x6b\x8f\xe1\x55\x7f\x0c\xbd\xab\xf0\xaa\x3f\xcd\x26\xdb\x70\xfc\x53\xf2\x57\xd0\xa6\xb6\xeb\x16\x81\x20\x84\x42\x50\xfe\x31\x74\x9d\x4a\x6b\xc3\x97\x74\x28\x66\x9c\xc2\x55\x59\xf5\xca\xd9\x78\x0a\x0e\xdd\xda\x1b\x06\x94\x48\xc0\xcd\x15\x20\x6a\x71\xcb\x19\x99\xfa\x8f\x79\x60\x73\x2e\x1e\xae\xba\x15\x37\x94\x80\x48\xaa\x2d\xbc\x50\x5d\x69\xe0\x05\xed\xe5\x8d\xe9\x67\xd2\x5e\x09\xe3\xe4\x61\x99\xc8\x16\x59\x29\x72\x70\x23\x51\xea\xed\x8f\x41\x20\xa6\xc2\xf4\x17\x4f\xb6\x30\x43\x71\x2b\xf4\x4f\x63\xd6\x4e\x72\x77\x79\xb7\x4c\xb7\x19\x02\xc3\x6f\xf7\xb8\x3e\xdd\x79\x02\xba\x75\xd7\xc3\x05\xe1\xe9\x42\x4d\xb3\xeb\x29\xb0\x43\x66\x59\x45\x55\x84\x69\x73\xf2\x69\x52\xe8\xfd\xa1\x63\x18\xba\x21\x77\x1b\xfe\x38\xe3\xec\x6b\x27\x84\xf5\xf2\x25\xb2\x2a\x34\x43\xe4\x3e\xe6\xe4\x5e\xb8\xc9\x55\x2e\x54\x69\xc4\x3f\x7f\x0d\xf5\xa6\x2a\x1b\xda\xed\xdd\xb9\x08\xb5\x5f\x84\xa6\x5e\x84\x58\xd7\x0d\xf0\x1a\x9a\x9e\xa6\x2c\x0f\xe8\xec\xb2\x4f\xf4\x47\x65\x83\xd7\xd1\x44\xe5\x62\x65\x3c\x86\x50\xa3\x1c\xe0\x9b\x69\xfb\x82\x81\x99\x74\x62\xf1\x87\xdf\x6e\x97\x0d\x4a\x40\xb8\x3b\xec\x8c\xfb\x75\xf9\x87\x5a\x84\xae\xec\x3b\x86\xe2\xa2\x71\xb5\x75\x57\xa3\xdd\xa5\x8f\x81\x50\xaa\x26\x28\x0c\x8b\x47\x13\xf5\x18\x9e\xf2\xfb\xa5\x67\x49\xa8\x7f\xf4\x4b\x4f\x84\x17\x1e\x6a\x2c\x1a\x0b\x65\x10\x79\x18\x3a\xb9\xe0\xd2\x64\x57\xc3\x8d\x9d\x5d\x4f\x30\xc1\x3c\x21\xd8\xb5\x0d\x21\xb4\x17\x86\x1f\xfd\xdb\x83\x1d\xb4\xbc\xab\x7d\x85\x94\xc9\xbf\xfc\x44\x7f\x34\x57\x41\xa2\x9a\x03\x1a\xde\xf6\xcb\xe5\x5a\xb6\x50\x85\xba\x8e\x26\x48\xd7\x16\x09\x4d\x90\x7e\x5d\x2e\xcb\x55\x26\x2c\x23\x45\x10\x4b\x6e\x5e\xda\x6a\xfe\xb8\x4f\x4e\xcf\x9b\x50\xca\xe8\x97\x36\xcc\x5b\x64\x8a\x10\xea\x5b\xb7\xd5\xad\x1c\xf6\x8f\xcd\x1f\x17\x7b\xcd\x15\xed\x08\xac\x56\x95\x83\x43\xa7\x5f\xc2\x39\xb3\x24\xe5\xed\xed\x34\x95\x05\x45\xea\x88\x87\x22\x46\xbe\xaa\x3f\x72\x67\x6b\xf7\x87\xb9\x72\xbf\x44\x12\xbf\x41\x4f\xdd\x3f\x14\x7e\xf4\x2f\xa1\xa3\x84\xfe\xc3\x5e\x39\x99\xe9\x13\x2a\x1b\xfd\xba\xdd\x3f\x0e\xbc\xb6\x5e\x78\xdf\xef\x97\x76\xf0\x7b\x69\x32\xf5\x4b\x51\x18\xa2\xef\xdf\x38\x38\x4d\xda\x35\x6f\xdd\x5e\x1e\x78\xbc\x48\xcc\x5e\xc4\x62\xb9\x26\xa1\xe8\x37\x5b\xe1\x76\xa3\xbc\x56\x3c\x18\x2c\x82\xdc\x0a\x62\xed\xa1\x8d\xf2\xd6\xc3\x57\x17\xd2\xdb\x5b\x63\x28\x0b\x2f\xe5\xfb\x5b\xae\x41\x51\xf5\x6f\xdd\x6d\x7a\x00\x84\xd5\x72\xbf\x6e\xd7\xc4\x9d\x22\x0a\x2e\xac\x96\x53\xd5\x51\x7a\xe3\x14\xde\xd2\x91\x8f\xde\xba\xf9\xfe\x33\x12\xc7\x99\xff\x18\xba\xf2\x3f\xe2\x89\x08\xf5\xc8\x4e\x79\x88\x05\x80\x33\xff\xa2\x49\x93\x9d\x72\x17\x39\xf5\xc1\x78\x76\x68\x7b\x7c\x44\xf7\x88\x70\xfc\xcc\xd8\xcd\xb7\x3f\xb2\x77\x44\x66\x87\xdd\x72\xba\x5c\x6f\x78\x8e\x19\xda\x01\x1f\x5d\x6d\xa2\x91\x3e\x81\xa7\x4c\x4d\x7d\xc4\x66\x2b\x2e\xcb\x4d\xab\x5b\xe7\x23\xba\x56\xb7\xf4\x47\x2a\xea\x3a\xc5\xa1\x70\x33\x2c\x56\xf9\x88\x67\x32\xfc\x11\x7f\xce\x59\x39\xfa\x30\x5d\xef\xa4\x55\x7f\x85\x1e\x15\x85\x15\x1a\x37\xf9\xd2\xb6\x0b\x1d\x9b\x7e\xe9\x31\xf6\xd9\x81\x73\x45\x72\x7e\xc4\x46\x15\xf2\xfe\x88\xbd\xa1\x46\xd1\x78\xa9\x49\x34\xe7\x33\x02\x5d\x0a\xb3\x3f\x3c\x4f\xb5\x73\x1e\xa2\xb4\x0c\x1d\xf1\xd0\x71\xe9\xa6\xad\x1f\xdc\xb3\x9b\x13\x8d\xc6\x4b\x4d\xc5\x65\xd5\xf9\xa1\xec\x8b\x3e\xb8\x51\x96\x58\x37\x75\xa8\xbc\x74\x93\x99\xa1\xf1\x92\x6f\xad\xd3\x03\x5f\x75\x08\xe9\x44\x68\xff\x7e\x89\x22\x92\x6f\xff\x71\xb9\x2c\xec\x00\xe1\xab\x08\xf5\xdf\x2d\xa0\x79\xb8\x5e\x86\xeb\x81\xc1\x2d\xe4\xaa\x50\xff\xc9\x39\xf0\x93\x90\x7d\xe8\xbf\xf4\x2b\xfb\x63\xe0\x61\x11\x70\x0f\x06\x09\x96\x5a\x3d\x4b\x33\xa6\x36\x17\xbd\xd5\xcc\xeb\x4c\x8b\xac\x90\x72\xca\x10\xb2\x7d\x40\xe1\xe6\x0a\x87\x3a\x8a\x9c\xf1\x4c\x45\xf0\x9f\x96\xde\x3c\x5e\x61\x35\xb3\xe5\x47\xd2\x85\x85\x75\x62\x3e\x89\xe1\x7f\x2a\xce\xca\xea\x14\x77\x65\x63\xfd\x59\x18\x42\xfa\x9f\x69\xb9\x95\xed\xf1\xb1\x2a\x37\xa8\xc8\x65\xb9\x12\x9b\x9b\xe1\xc2\x06\xc7\xcf\x8b\x35\xa5\xc3\xc4\xe6\xef\x57\x56\x17\x38\xb4\x20\x03\x22\xf5\x27\xc5\xb3\x3e\xd9\xe0\xd4\x5d\xfe\x61\xf0\xf1\x2f\x17\x8d\x7b\x2d\xab\x77\xb8\x70\x1a\x2e\x1a\x22\x79\x29\x77\xcc\x6b\xc5\xa5\x97\xd5\x39\x4c\xe7\xe6\xf7\xa3\x7e\xa9\x39\xd8\x41\x4e\x0c\x35\xa2\x37\x46\x77\x96\xe3\xfd\xcd\xc2\x47\xaf\xaa\x89\x5b\x39\x6b\xd0\x3b\x2e\x2b\x4f\x6d\xbc\x38\xa6\xa7\x8b\x3b\xb9\xa8\xef\x5e\x32\xcd\x08\x68\x58\xdc\xca\x79\xe1\xf7\x2b\x71\xa9\xcc\x50\xda\xe8\x17\xe7\x79\xca\xbf\xbd\x34\x8c\xe6\xcd\x7d\xce\x71\x9e\xa1\xa4\x21\x9f\x38\x27\xc7\x26\xf2\x37\x74\x93\xbb\x3f\x72\x26\xcb\x9f\xd1\xf9\xbc\x51\xe7\xae\xfa\xe5\x0c\x82\xab\x38\x77\xd6\x56\x67\x70\xde\xa2\x0d\xab\x3a\xab\x13\x0a\xf1\x31\x6f\x16\x90\x17\xcc\x0c\x65\x8c\x8e\x56\xd5\xc9\xbd\x28\xea\x8a\xe2\xb2\xd4\x26\xbe\xb5\xd6\xb7\xaa\xe5\xc2\xe6\x80\x4e\xdc\x15\x24\xb1\x01\xe7\x0d\x3d\xc8\xe1\x98\xb7\xd0\x73\xd7\x24\x80\x73\xc5\x8f\x23\xe4\x7f\xbf\xb4\x69\x6f\x6c\xd1\x93\xc7\x89\x8d\x09\xea\xa4\x93\x40\xfe\xe7\xa7\xea\x2f\x26\x27\xa8\x88\x4e\x42\xf9\xf7\xcb\x4b\x26\x66\x63\x57\x59\xf1\xb1\xab\x5a\x65\xd7\x78\x8e\x22\xea\xe6\xe5\x46\xb9\x9f\xab\xda\x8c\x88\xd0\xd7\xf7\x77\x31\x27\xd5\x2d\x06\x01\xcf\xc5\x48\x6c\xfe\x7e\x71\xa5\xce\xa4\x4d\x02\xab\x83\xd8\xfc\x27\x4b\xad\x21\x6e\xc9\xc2\xe4\xb3\x8a\xe9\xa6\x55\xb1\xbc\x85\x1b\x8c\x08\xc3\x49\x11\xab\x27\x31\x85\xb3\xf8\x20\x33\xe4\x2b\xfd\xe2\x62\x9c\x21\x42\x49\x5d\x67\xbe\xb9\xcd\xa9\x2c\x4f\xdd\xee\x6c\x0c\x1a\xe4\x47\x48\xe1\xb3\x17\x93\xb2\xe7\xd4\x37\x9d\x9c\x10\xa8\xf4\xab\xf9\x5b\x18\xcc\xde\xee\x00\xa2\xff\xee\x36\x9f\xd0\x35\x52\x4e\xbb\xb6\x2a\x17\x0f\xa7\xe1\x5c\x70\xf6\x34\xb1\x0d\x8c\xc4\xfb\x6f\x36\x68\xce\xe6\x6f\xba\x2a\xd4\x22\x5b\xaf\x39\xc7\xe3\x5f\x67\x81\xa8\xc0\x55\x8b\x17\x06\xa7\x77\xd1\x02\x21\x4c\x31\xd6\x0b\x8f\xb9\x7e\xb7\x4d\x19\xa3\xa6\xef\x0f\x99\x1c\xff\x30\x6e\x11\xe1\xd9\x26\x2a\xa1\xba\x03\x9b\x97\xa3\x3b\x40\x6c\xb7\xee\xc2\xb1\x7d\xba\xd6\x27\x36\x65\x16\x63\x6f\x22\x5c\x49\x2e\x6a\xc4\xa6\x46\xe5\xc7\xd5\xcb\x05\x85\xd1\xfd\x4b\xec\xde\x93\x7a\xcf\x03\xa3\x3b\x17\x1b\x58\x57\x48\xd3\x65\xe4\x2d\xc2\x0e\xd6\x61\x6c\x22\x30\x85\xbc\x3a\x77\x91\x26\x1a\x33\xd5\x29\x02\x5e\x41\x82\x25\x57\x9e\xb2\x52\x1d\xc3\xbf\xe4\x7e\xd4\xc2\x77\x76\x4c\xf7\x2f\x31\xc4\xe2\xea\x9f\x21\x4e\xe9\x97\x06\x16\xe2\x94\x7e\x69\x12\xba\xfc\xbf\x71\xed\xce\x8e\xab\xd6\x5b\x37\x43\x67\x97\x7c\x3f\xc6\x21\x76\xad\xec\x99\x6f\xc9\x11\xd7\x96\xba\x23\x24\x98\xd4\xf7\xc9\xed\xdd\x5c\x4f\xf4\x67\xf8\x23\x37\x41\xd2\xc0\x64\xe9\xe0\x71\x0a\x0d\x26\x8d\x0c\xf5\x9f\x59\xfe\xac\xae\x42\xf0\xe1\x7e\xb9\x22\x70\xe4\x50\x07\x71\x5b\x28\x89\x2f\xa1\x88\xfb\x35\xdc\x08\xeb\x20\xcc\x86\xb9\x6b\xf1\xc9\x1d\xf8\x81\xd2\x2f\xc7\xd4\x6a\x27\x65\xc1\x1d\x50\x97\x04\xc1\xed\x17\x24\x37\x31\x70\xcf\x47\x67\xd5\x07\xfd\x94\x4d\x0f\x93\x7e\x86\x65\x67\xba\x45\x3f\x0c\x89\x7d\x5c\x11\xd6\x7d\x12\xb1\xce\x11\xec\x1a\x09\x3f\xe7\x10\x59\x95\xd5\x41\x3c\x3a\x49\x56\x3b\xc3\x0d\xac\x59\x2b\x0e\x7a\x2b\x4d\x39\x82\xde\x9e\xb2\xfe\x7a\x36\x2b\xb6\x47\x93\xa0\xb7\x49\xaf\x12\xc5\xbc\xad\x49\xbb\x73\x82\x16\x55\x0f\x52\x83\x5a\x9d\x8b\xc3\x02\x17\x75\x4e\x36\x23\xdc\x24\xa2\xe1\x26\x93\x49\x13\x06\xcd\x54\x0e\xe1\xb0\x2e\xd2\xc9\x33\x68\xb8\xa8\x18\x34\xc2\x1f\x78\x67\xad\x49\x18\x2c\x78\xf6\xb9\x89\xc0\x9a\xec\xb7\xe9\xa2\xb1\xff\xa7\x46\xc5\xa5\x0b\x4d\x4f\x44\x5b\x05\x6e\x9e\xd3\xec\x7c\xf7\x35\x50\x9d\x04\x64\xc4\xb7\x95\x5f\x8c\xa9\xf0\xb6\x45\xc4\x17\xcc\xfd\x2a\x84\x15\xbc\xfd\x7e\x5f\x2e\xb9\xc2\x4b\x87\x3a\x13\x72\xe2\xfb\x72\x0b\xec\x1e\xdd\x27\xd8\x74\x8a\xaf\x3e\xc3\x86\xb3\x4b\x48\x39\x27\x96\xd4\xc5\xdf\x34\x1b\x6a\x31\xf4\x8c\x24\x50\x21\x0a\x6e\x96\xf2\x0a\x41\x70\x15\x90\xfe\xe4\x22\xf6\x44\x75\x35\xc1\x4f\xf0\xfc\xeb\x19\xa5\x0b\x76\xa2\x9c\x22\x9e\x30\x21\x71\xb3\x84\xd8\x73\xea\xce\xf4\x04\x08\xcd\x69\xb3\x2c\x31\x8c\x85\x12\x97\x44\x4e\xda\x11\x4b\x0c\x63\x9d\xaf\x85\x6a\xa3\xd8\x2c\x33\x84\x0b\xb7\x78\x06\x33\x1c\xb9\xe6\xd9\xfc\xcb\xd0\x11\x9f\xae\x16\x94\xa8\xa3\x88\xa8\x61\x0c\xe7\xf6\xaf\x9f\x66\x22\x6d\x11\xf6\x40\x53\x82\xd8\xa1\xe8\xbe\xc7\xab\x6b\xd3\xf5\x82\x0c\x22\x89\x5f\x3d\xc3\x34\xf4\x2e\x1e\x48\x20\xc4\x5b\xdb\x4c\x7e\x5b\x67\xf3\x2f\x7b\x7c\x6c\xca\x8d\xc8\xa9\xe3\x13\x97\x4d\xdd\x45\xe1\xe3\x4c\x97\x0d\x0f\x30\xc9\xd5\xbe\xe2\x79\xa0\x09\x80\x83\x28\x2c\x21\x9f\xae\xe2\x88\xcf\x85\x6b\xe1\xa4\x89\x44\xf7\xfb\x72\x4e\xd3\xaa\x36\x16\x2e\x7a\x85\xf2\x14\xe7\x57\x4c\xe7\x19\xe2\x8b\x7e\x8b\x38\x5f\x52\xd2\x55\x67\x75\x1d\x8b\x1e\x08\xdb\x53\x45\x7d\x3e\x39\x9e\x1d\x5e\xa0\x15\x7c\x5d\x6d\xc4\x30\x28\x8d\x28\xac\x7f\xc4\xdd\x0a\x10\x2c\x85\xfb\xb9\xce\xfe\x56\xdc\xc4\x49\xb8\xe0\x7e\x7b\x85\xce\x86\x2e\x62\x05\xcc\xa5\x2d\x7c\x39\x8b\x5b\x54\x57\xf3\x0a\x12\x44\x7d\xc5\x1c\x51\x8a\x72\x84\x0e\x96\xad\xee\x54\xe4\xe0\xda\xfd\xad\x84\xe2\x5e\x53\xae\x86\x7b\xa3\xa9\x5c\x44\xd4\x12\xc5\xb1\xe5\x5a\xb8\x2a\x37\xa3\xa7\x43\x39\x88\x08\xd1\x7c\x61\x69\xda\xef\xdb\x0d\xe2\xe8\xc7\x0d\xc6\x06\xbd\xdd\xc4\x27\x72\x6a\x3e\xb6\xa4\x78\x94\x04\x11\x3e\xcb\xa1\x36\xd8\x92\x5a\xab\x4d\x88\xb6\xe2\xa2\x83\x01\x17\x65\xe7\xaf\x9f\x92\xf5\xb6\xdc\x53\x13\xa7\x9e\xc7\x1e\x6c\xc9\x1f\x03\x4d\x7d\x73\x9a\x38\x57\x8b\x7e\x8d\x67\xc0\x7b\x52\xad\x84\x10\x54\x7a\x57\x84\x14\xce\xde\xf7\x18\xb0\xa6\xe4\x6f\x6c\x2c\xcf\x79\xdc\x80\xd2\x3d\x9b\x5b\xbc\x21\x57\x0a\x85\xaa\xdb\x3c\xc4\x17\xb9\xea\xf6\xd9\xd2\xd6\x13\x75\xb6\x21\xfa\x84\xe2\xc2\xf7\x6a\xb9\x3c\x92\x78\x16\x48\xdc\x44\x44\x61\x79\xed\x9e\x44\x14\x3e\xe3\xf0\xc7\x73\xa5\xdc\x5a\x58\x44\x14\x59\x44\xf0\x4b\x12\xb0\xee\xac\x10\x9a\xcb\xc6\xe6\x4d\xce\xf1\xf8\xd7\x9a\x20\xbf\xb8\x93\x73\x3d\x14\x48\x86\x72\x81\x33\xb4\x23\xc3\x92\xf5\x34\x52\x94\x0d\xe3\x4c\x11\xa4\x2f\xc5\x71\x71\x2e\xf6\x8b\xe6\x15\xb1\xc7\xad\x75\x0e\x41\x87\xbc\x4f\x4e\xe2\xfe\x76\x5f\xf1\x48\x3d\x86\x74\xac\x66\x58\xb6\xca\x19\xe0\x24\xec\x6f\x37\x45\xf2\x9a\x9a\x1d\x75\x0e\x2b\x03\x29\xf0\x10\x05\xf8\xfb\x76\x7d\x89\xc2\x2b\xae\x16\x9b\x07\xe5\x64\x3a\xa0\x8b\x24\xc4\x17\x72\x34\x73\x72\x61\xb0\x24\x8a\x93\xa0\xbf\x53\x3a\x34\xf3\x05\xe6\xf1\x8a\x80\x5c\x74\x75\xbe\x44\x21\x69\x4f\x4a\xec\xe0\x0e\xec\x10\x07\x4e\x7f\x6b\xd8\x2e\x68\x7e\xce\x8d\x28\x47\xf3\x93\xa8\xbe\x72\xc6\x31\x89\xe2\x2b\x1f\xa4\x73\xbe\x51\x74\x91\x26\xd4\x0c\xc3\x50\x59\xe8\x4e\xc2\xf6\xca\x3d\xe8\xc9\xc5\xa8\x54\xe9\x9b\x35\x2f\xae\xa6\x53\x8d\x7f\x18\x8b\x5e\xfc\xc3\x68\x5f\x67\xe9\x2d\x04\x52\x5d\x4f\xdc\x05\xd3\x3f\x14\xe1\xdc\x95\x0d\xd4\xab\x3b\xf6\x8d\x6a\x84\x0e\xd3\x5b\x9a\x75\xfe\x56\x79\x50\x39\xdb\xc2\x8b\x82\x6a\x9d\xea\xdd\x1f\xcd\xea\xe7\x94\x6b\x55\x49\x06\x08\x06\x2c\x9b\xba\x93\xe3\x0d\xd0\x9d\xdd\xd4\xeb\x6c\x20\x98\xe2\x5c\x04\x01\xd7\x45\x8a\xac\xe2\xd6\x81\x09\x6b\xd3\x5e\xb4\x7f\xdf\x81\x5d\xc4\x2b\x25\x6c\xf0\x69\xc3\x45\x99\x75\x4d\x08\x64\x98\xf6\xc0\x5b\x0a\xa0\x42\x36\x11\x54\xd8\xc6\x66\x13\x17\xad\xa5\xf9\x1b\x98\xf1\x76\xad\x81\xb6\x3d\xc8\x10\xde\x1b\xf5\xbc\x97\x50\xa1\x9a\xd4\xf3\x53\x18\xe5\x2d\xb5\x20\xed\xfc\x37\x8a\xc3\xc2\x61\x6f\xc9\xb7\x84\xb5\xde\x6c\x3c\x51\xf8\x21\xd1\xb0\xce\x39\x01\x88\xcf\x3c\xbb\xda\x98\x3b\x11\xed\x6f\xd1\xf0\xdd\xbf\x84\x12\x13\xd6\xf8\x20\x5a\x1d\x2a\x1c\x7e\x58\x6d\x1a\x30\xc3\xf1\x6a\xf7\x63\x39\xfc\xae\xf6\xbb\xfa\x87\x31\x7b\xa2\x05\x3f\xb0\xc2\xc7\xf7\x87\x4c\xc9\x54\xee\x1d\xef\x56\xfd\x70\x8a\xd0\xd0\x2f\xa7\x4e\x9b\xca\xe2\xdc\x5e\x52\x93\x19\x32\x8a\xde\x2f\x97\x85\xa0\xd3\x96\xf9\x78\x07\xf9\xa7\x31\x6c\x51\x7b\x92\x58\xc8\x92\x68\xca\x0b\xab\x54\xd4\x14\xb7\xb8\x09\x77\x7d\xc4\xed\x16\x5a\x09\x71\x86\xb5\xe4\xe6\x87\x6d\xe2\xde\xb3\x2f\x9a\x7f\x18\xbe\x96\xdc\x3d\x2c\xe0\xa5\x59\x36\xc3\x5c\x38\x5d\x49\x5b\xe1\x23\x8b\x4e\x51\x09\xb2\xed\x1d\x9e\x40\xb1\xb7\xbb\xb3\x30\x2a\x85\x92\x3e\x22\xb5\x3d\xa1\x5b\x63\x53\x2f\x50\xc8\x94\x70\x46\xb1\x8a\xbb\x2c\xc3\x26\xe2\x8d\x5b\xe4\xc0\xc3\xb2\x09\x63\x3e\x68\x5b\x0c\x0d\x07\xf1\x86\x24\x02\x8a\x55\xdc\x65\x27\xe4\x58\xc5\xe2\xdd\x13\xab\xf8\xcb\x26\x47\xba\x31\xa4\xd4\x31\x31\xef\x9d\xd2\xaa\x23\x92\xf1\xf9\x29\x33\x2a\xfb\x5e\x09\x29\x26\xf6\xbd\xc3\x97\xee\x23\xb6\x94\xfa\xab\x1b\x28\xb9\xac\x3a\xdc\x95\x85\x80\x49\xce\x72\x23\x8a\x91\xf0\x4c\xb8\x1e\xd3\xd9\xd8\x1f\x3a\x4f\x8f\xee\x20\xcf\x8b\x68\x16\x31\x07\x1e\xb1\x15\xb4\x23\x10\x8e\x0c\xc9\x9a\x1d\xe8\x78\x78\x16\x83\xc5\x64\xa6\x72\x58\xee\xe6\x34\xfc\x8d\x7d\x27\x8e\x89\x04\x20\x92\xd7\x12\xca\xf8\xcb\x22\x7d\xd0\xe5\xc9\xfe\x06\x7d\x3e\xfc\x31\x4e\x9f\xf6\xc7\x03\xc5\xab\x9d\xa6\x40\xc6\xe6\xd7\x23\x0c\x91\xb2\x21\xd1\x89\x6f\x9c\x99\x4d\x82\x13\x67\xfc\xa0\x9d\x5c\xc4\x10\xca\x7f\xd6\x49\x71\x18\x63\xd6\x6c\x21\x25\x19\x92\x8b\x3a\xa8\x31\x97\x34\x31\x8d\x93\xf8\x93\x84\x34\x3e\x33\x90\x94\x0d\xe1\xc6\x74\x51\x8e\xf0\x70\xb5\xb1\x44\xc3\xb5\x42\x56\x66\x77\x5d\x4b\xe4\x7a\x83\x8a\x61\x8b\x11\xd3\x38\x8b\x19\x46\x48\xe3\x1b\xbf\xbf\x93\x90\xc6\xb9\xb8\xaf\xd8\x54\x56\x7f\xd3\x40\x9c\x05\x1b\x81\x18\x56\x58\xf2\x26\x7c\x54\x4e\x22\x1a\x67\x29\x17\x3a\xa0\xb1\xe4\x17\x04\x34\xbe\xf5\x5e\x22\x80\xf1\xf9\xe8\xfe\xa8\xeb\x83\x2c\xba\x61\xb2\xfb\x21\x82\x71\xbf\x87\x2a\xd2\x9d\x35\x34\x30\xee\x2c\xcf\x1e\xba\x40\x33\xbb\x22\xee\x88\xef\x4f\x61\xde\xbb\x87\x0b\xbf\xbb\x6e\x25\xd4\x65\x2f\xf5\x48\xef\x32\x4f\x98\xc4\x41\x5d\x23\x0d\xda\x49\x32\xfc\x85\xc0\x27\x79\xe9\xd1\x28\x14\xd3\x7f\x85\x91\xae\xb9\x73\x2b\x04\x3e\x66\x1e\x12\xec\xf8\x2e\x62\xa8\x12\xde\x38\x13\x36\x68\x12\xde\x38\x0b\x63\xac\x10\xff\xf8\xf5\xb9\x2e\x1c\x73\x0a\x75\x12\xc0\x38\x29\x52\xec\x24\x64\xb1\x69\xfd\x75\x8b\x5c\xe2\xd8\x10\xc1\x38\xc9\x9f\xed\x24\x82\xb1\x2f\x1b\x05\x30\x96\xe9\xeb\xba\xd9\x41\xda\x4f\xf2\x42\x2d\x23\xf6\x25\xb7\xd3\x5a\x5d\x64\x3a\x62\x50\x28\x44\x71\xbf\xbf\xd9\x50\xc9\x98\xae\x27\x38\x4f\xdd\xdf\x40\x49\xdf\xa2\x21\x64\xd7\xe6\x0b\xe9\x4f\x16\x59\x4e\x10\xe2\x22\x95\x95\x75\xa3\xa7\x33\x9d\x63\x5f\x16\x75\x0e\x62\x25\x6b\x06\xe4\x83\x55\xb3\x7e\x43\x8f\x68\xff\xdc\x18\x75\x27\xad\x65\x38\x8e\xfe\xdd\x73\x9e\xd1\x20\x48\xe2\xd8\x66\x9c\xd4\x4f\xc2\xd8\x76\x99\x59\x12\xc5\xf6\x74\xc0\x1f\x39\x9a\x50\xa5\x44\xb5\x4d\xe6\xad\xac\xb0\x8f\xec\x32\xba\x5c\xb2\x8f\x94\x80\x80\x28\xb7\x5d\x26\x8f\x8e\x72\x2b\x45\xcd\x95\xc0\x6b\x1a\x35\x61\x6e\x87\xf8\xdf\x2b\x49\x4a\xf3\xad\x17\xdc\xf1\xad\x09\x89\xa1\x7e\x9b\xe1\x29\xc9\x66\x60\x85\x0d\x64\x97\xdd\xdd\xca\x90\xdf\x30\x13\x96\xfc\x0a\x4b\x1d\x9a\x48\xb7\x5d\x96\x6a\x2b\x6b\x7b\x15\x97\x55\x1f\x9c\x65\x5a\xaa\xeb\xe5\xd8\xeb\x3c\x86\x1d\x63\x26\x0c\xf7\x24\x3e\x6d\xfb\xd6\x1b\xaf\xe2\xaa\x49\x21\x04\x6d\x1e\xee\xad\xee\x9b\xaa\xb2\x41\x9f\x48\xbd\x6c\x65\x3d\x90\xaa\xb3\xc1\x5b\xcc\xd7\x3f\x81\xc4\xb3\xb8\x3a\x3a\xad\x79\xc9\xc2\xb0\x2a\x3b\x63\xe0\xae\x17\x2a\xb7\xba\x87\x3b\x3e\x3a\xf7\xfe\xf5\x53\x8c\xa3\xf2\x59\xfe\x9a\xb3\x3b\x1f\x06\xcd\xc2\xda\x18\x40\xca\x7c\x85\x98\xb8\xa7\xd2\xa6\x6c\x10\x98\xba\x37\xf2\x56\xef\x5c\x16\x06\x88\xba\x13\xec\x45\x29\x95\x28\xd4\x6d\xd5\x0f\x8b\x04\xfa\xea\x4e\xd1\x5a\xfb\x63\x0d\x5c\xe6\x6f\x10\x10\x42\x1e\x05\x21\x8a\xf8\xa4\x2b\x7c\xf3\x76\xd9\xd7\x11\xf9\x36\x8b\xdf\x4c\xe4\xdb\x3b\x4b\x4d\x9e\x58\xb7\x5d\xef\xc9\x55\x64\xa9\x34\x9d\x4d\x51\x8f\x1a\x99\x84\x28\xf4\xb7\x12\xdf\xd4\xa2\xac\x98\x84\xe9\xc2\x2e\xb2\xcb\x9a\x6d\x15\x71\x4e\x74\x38\xc2\xd4\xb1\x27\xde\x85\xab\xc4\xad\x21\x6b\xb6\x55\x24\x4a\xd0\x1e\x2e\x71\x6b\xc8\x30\x89\x30\xb9\xc9\x36\x57\x84\xc9\x1d\x5d\x1b\xb1\x60\xc6\x50\xfd\x8d\xa7\x84\x3b\x1b\xec\xe8\x74\x6b\x2a\x43\x7b\xcb\x6b\x59\x44\xcb\x34\xf5\x0e\x8d\xac\xe1\x91\x6c\x0d\x4c\x5d\x40\xd3\x5c\xac\x73\x45\xba\xad\x59\xdb\xa9\xea\xe5\x0c\x35\x49\xa8\xdb\x2e\xbb\x14\xa2\xd9\x76\x71\xbd\x09\x66\x7b\x8a\xba\x22\xd6\x73\xba\x22\x38\x02\xdf\x6c\xac\x27\x6f\x8b\x85\xd5\xa3\xe8\x22\xe2\xde\x76\x59\x27\x10\xf7\xf6\x74\xa8\x28\x0b\x85\x2d\xf4\x5f\x63\xb1\xc5\x47\x5d\x55\xa2\x06\x21\xd1\x3a\xe9\x5f\x53\xee\xdc\x87\x32\x2b\x5a\x61\xd9\x78\x7f\x51\x61\x15\xcd\xf0\xfd\xa5\x26\x5b\x7d\xc0\xd0\x35\x5f\xce\x72\x45\x7f\xbf\x3e\x7c\x55\x55\xc4\x27\xd7\x3b\x4e\x21\x4e\x33\xbc\x8f\xd5\x60\x27\x7f\x73\x6a\xa6\x29\x0b\xe5\x2b\xbc\x19\xd6\x70\x8a\x0d\x31\x09\x79\x7a\x3e\xd2\xff\x26\x5c\x23\x4a\x25\x44\xb6\x5d\xfc\x39\x62\x9c\x9e\x8f\xaa\x17\xb1\x58\x76\xee\x5c\xef\x59\x84\x54\x43\x9f\x58\xec\xdb\x85\x18\xb6\xca\x5b\x03\x91\x4c\x53\x12\x8f\x96\x50\xa6\xc9\x53\x18\x52\xd9\x2c\xee\xf2\x92\x33\x61\xf1\x68\x89\x4e\xda\xa5\xcf\x4b\x70\xd2\xd3\x21\x97\x7d\xc8\x52\x51\xb7\xe3\x0f\x67\x35\xb4\xa9\xec\xd9\xbe\x7a\x43\x2d\xac\xd8\xc4\x5a\x5b\xc8\x61\xa5\x44\xbc\x10\xbc\x4a\x83\x77\x21\x77\xad\x59\x58\xa2\xe3\x4f\x46\xfb\x2f\x2c\xce\xba\xb4\x3c\x15\x11\x55\x8a\xb8\xab\xa3\xd6\x25\x4b\x65\x05\x48\x1d\xe7\xc5\xf1\x47\x34\x8e\xaf\xe0\xac\x93\xd6\xc1\x19\x9a\x77\xf9\x06\xd6\x83\x83\x60\xa9\x49\x11\x33\x4f\x36\x8e\x80\xf0\x26\xd6\x6a\xd6\xcf\x59\x21\x78\xed\xd2\xfe\x5d\x5d\x0f\xe8\xe1\xfe\x3d\xf1\x51\xf5\x48\xe8\xaf\x2d\x85\x2c\x55\xca\x58\xc4\x59\x3d\xd5\xaa\x22\xdd\xff\xba\x74\x22\x1e\x6a\x97\x8a\x1f\xf1\x50\xcf\x47\x97\x8d\xfe\x09\xe7\x77\xa4\x91\xb2\x19\x22\x3a\x6a\x2a\x1a\x4a\x98\x95\x75\x29\xf1\x11\x0d\xf5\x2c\xc3\xad\x2c\x62\x6b\xed\xf1\x01\x01\x29\x96\xda\x1a\x60\x14\x18\x48\x8a\x8e\x5a\x4c\xdf\x12\x1e\x75\x98\x22\x19\xa8\xf1\xc9\x98\x8d\x68\xa9\x67\xe0\xfe\xfa\x89\x9b\xd9\xf5\xc6\x1c\x89\x5c\x19\x88\x2b\x65\x7d\xe1\x70\xa9\xa6\x32\x22\x5c\xaa\x15\x76\x14\x11\xd5\x88\x00\xf7\xc0\x35\x0b\x7d\x8f\x30\x3a\xb8\x3c\x6e\xf1\xe5\x85\xcc\x25\x60\x16\xdf\x8c\x50\xa6\xf7\xf0\x45\x24\x09\xb3\x58\x55\xcb\x16\x6c\x3a\x86\x08\x9c\x6b\x76\x27\x50\xff\xce\x1e\x6a\xe8\x09\x49\x39\x6f\x0d\xee\x7f\x91\x41\xe1\x59\x38\xfb\xa2\x1c\xba\x09\xb4\x21\xe5\x59\x58\x46\x46\x44\x28\x3d\x59\x0d\x7c\x6b\x70\xfe\x7a\xf0\xa5\xb8\xf1\x4b\xd6\x6f\xf9\x5b\x36\x2e\x1c\x98\x53\xc4\x1d\xed\x52\x4d\x22\xec\x68\xba\xa4\xbd\xbf\x10\x38\xfb\x59\x37\x21\x01\xe0\x55\xad\xa9\xd7\xea\xf4\xc7\x58\x7e\x11\x57\x93\x1b\x44\x0c\xa8\x35\xc5\xc9\x98\x6e\x25\xce\x84\xe8\x03\x6c\xcf\x64\x29\xac\x30\xa3\x97\x04\x6a\xc4\x19\xed\x44\x34\x9a\x0a\x2c\x9a\x64\x13\x43\x64\xd1\x2e\xed\x16\x22\x8b\xde\x35\xeb\x4e\x0b\x53\xb4\xee\x67\x92\x02\x8b\xfa\x7a\x09\xe3\xb3\xbb\xeb\xd5\x34\x39\xc0\x70\x47\x88\x2b\x7a\x1a\xf1\xc7\xd8\x7f\xc2\x61\x93\x43\xa9\xf5\x9b\x50\x04\x4d\x25\x41\xe4\x4d\x9d\x83\xf0\x13\x9d\x1a\x02\xe9\xee\xe3\x30\x59\x77\x58\x37\x44\x70\x4c\x52\x44\x22\x64\xe3\x69\xbe\x28\x0b\x3a\x49\x2e\x1b\x53\x27\x3c\xb9\x78\x22\x88\x91\x43\xcc\xc6\x33\x48\x65\xe3\xc1\x29\x99\x15\x31\x1b\x4f\x59\xfd\x74\x6b\x2a\xfd\x15\x8a\x7c\x3a\xcb\xb5\xa3\x3e\xc0\x47\xf3\xae\x50\xcc\x46\xf1\x5b\x88\xd9\xd8\x89\xf5\x35\x89\xd2\x98\x92\x99\x18\x78\x9a\x95\xd4\x6a\x6d\x73\xd1\x86\xb2\x42\x28\x53\x59\x9c\x1b\x54\xe5\x1a\x8d\x26\x65\x07\xf5\xfe\x59\xae\xb9\x30\x61\xfa\x3e\x4c\x36\x18\x44\x74\x10\xb1\x18\xa7\x4f\xfe\xe6\x36\x11\xe5\x83\x9c\x6f\xca\xcc\x64\x6d\x08\x49\xd9\x80\x10\x9a\xf1\xfe\xbe\x62\x36\x7c\x33\xb3\x39\xb0\x6a\x92\x6a\xea\xc2\xa8\xa9\x7f\x7f\xc9\x94\x65\x37\xfa\x8a\x8f\x2a\xba\xd4\x23\x67\x59\x19\x4d\x3e\x96\x4a\x53\x96\x27\x04\x5d\xec\x62\xcf\x12\x74\xf1\x94\x55\x33\x4b\x0b\xa5\xf9\x45\x0b\x62\xfa\x97\xb1\xe9\x74\x87\xc9\x70\xc9\xcf\x5d\x42\x32\x16\xbd\xd3\x37\x34\xa9\x6e\xa9\x90\x03\xf6\xe4\x6f\xf1\xd4\x14\x4f\x8f\x18\x8c\x5d\xcc\x41\x42\x30\x9e\x4a\xd5\x3b\xd0\x90\xae\x21\xb9\xb4\xcd\xc9\x65\xd9\xe7\xc5\xd5\xd2\x3b\x75\x07\xc5\x55\xbf\x8c\x15\x76\xd1\x2f\x63\x99\x2e\xf9\xf1\xfb\x32\xd2\x2a\xca\x26\x56\xc9\x85\x33\xcd\xfa\x6b\xcc\x9f\x2e\x22\xfc\xd8\x7e\x5f\x60\xf8\xb1\xbd\xbc\xde\xc4\x5a\xbc\xbc\x30\x2f\xae\x29\xd9\xca\x10\x40\xf1\x9e\x32\x80\x59\x2f\x6d\x1d\x5d\x96\x2f\xf4\x14\x64\xfc\xb1\x5e\xd0\x13\xba\xa7\x5e\x53\xed\xb8\xa6\x40\x0e\xc3\x39\xf6\x8a\x6e\x52\xc2\x26\x4e\x59\x56\x28\x6c\xe2\xe5\x07\xfa\x0b\xec\xa4\x9b\xe9\x85\xa5\x6c\x16\xb2\x78\x81\x90\x84\x75\x5f\x8a\x1e\x22\x82\x02\x4f\xb3\x53\x66\x23\x04\x47\x3c\xf5\xaa\x87\xf8\xa9\xf3\x65\x14\x92\xbe\x9a\xb5\xd3\x43\xd0\xd7\xb3\x8e\xd7\x0b\x33\x91\xef\x3c\xa0\x19\xe5\xb7\x3d\x1e\x61\xa5\x5b\x4a\x38\xc4\xbb\xb9\x4d\xa4\x28\xb2\xc2\x21\x1c\xe2\x2d\xc5\x01\x85\x43\x94\xe6\xdb\x0a\x49\x5f\x97\x7d\xf0\x42\xd2\x27\xa7\x69\x44\x4a\xcc\xb2\xd6\x53\x64\xc4\xcb\xeb\xf0\x1e\x1a\xa6\x6b\x65\xdb\x57\x57\xf4\x44\x45\xcc\x50\xc8\xef\xba\x1f\x03\xd8\x0f\x75\x21\x48\xc9\xef\xbc\x9e\x21\x85\xeb\xa6\xb5\x11\xbb\x49\x07\x94\x88\x86\xa7\x0d\x67\x85\x8d\x54\x2d\x5a\xc5\x7e\xad\x23\x4d\x9b\x97\x2e\xe7\xb7\x4e\xbb\x2e\x4e\x82\x1a\x7e\x1f\xb6\xef\xa5\xb1\xa9\xbf\xba\x2a\xaa\xbf\x12\x14\x42\x1f\xcf\x22\x0d\x89\x51\x96\xa4\x62\xd9\xa3\xd9\x4c\xa0\x73\x35\x8a\xaa\x1a\x84\x28\xd2\x23\x22\x3a\xe1\xf9\xa5\x7a\xa4\xa3\xa8\xd9\x46\xd4\x75\x79\x17\x7d\x58\x26\x6d\x85\x0f\x6a\xff\x7e\x79\x7f\x10\xca\x4b\x75\x68\x85\xb0\xeb\xfc\xf4\xcf\x66\xf8\xeb\x23\x7a\x42\x37\xad\x24\x63\x52\x80\x21\x5a\xe1\xfd\x7d\xb6\x7f\x44\x5d\xea\x7a\x95\xe1\x8f\xa4\xe6\x04\x28\xbc\x25\x71\x23\x40\xa1\x22\xa3\x4d\xc5\x27\xbc\x64\xff\xb2\x3e\xec\x07\xed\xa4\x30\x11\xca\xb5\xbb\x28\x1b\xd2\x39\x70\xb6\xee\xe5\x8f\x1e\x08\xba\x7a\x71\xc1\x7b\x79\x0f\x7e\xb4\x21\x3c\x4b\xf0\x9b\x65\xfa\xb1\x3e\x22\x18\xb3\xbf\xc6\x46\x73\x8f\x96\x06\xae\x66\x03\xc1\xf7\xe2\xa2\x84\x5b\x1d\xce\x82\x38\x84\x0c\x90\x9c\x7d\xc7\xbd\x08\xc1\xa5\x1e\x6d\x8d\x5b\xfd\x0d\xc3\x85\xee\xfe\xe1\x6d\x4d\x06\x2f\xeb\xc3\xd6\xf1\x58\x74\xda\xbb\xcb\x0e\xca\xba\xa2\x43\x03\x99\x22\xc3\xb9\x6e\xf7\x74\xc2\x89\x32\x7b\x02\xf1\xdb\x94\xf2\xf8\x42\xfc\x76\xf9\x1c\x84\x7b\xdd\x6e\x0a\x56\xb6\x46\x52\xaa\x59\x88\xdf\x72\x72\x4e\xf3\x97\x94\xe5\xc8\xa8\x0f\xc8\xdf\x7c\x62\x42\xfc\xd6\xf3\xb7\x11\xad\x8b\x2b\x0a\xdc\x20\x5a\x53\xf2\x35\xb3\x48\x42\x84\xd6\x7d\x9c\x9e\xd0\xe1\x90\x06\xd6\x7a\xa6\x7a\x90\x95\x65\x4e\xdc\xdb\xc0\x0e\xe6\x16\x3e\x84\x69\xbe\xdc\xdb\xe0\x47\x14\xd3\x2a\x21\x22\xeb\x3e\x7a\x61\x3f\xd4\xb3\x88\xbd\xf0\xa6\xdb\x8d\xea\x31\x26\xca\x5a\xa3\x07\xbd\x33\xb3\xaa\x1e\x6f\x29\xb5\x89\xab\x83\xe2\x5f\x2e\x7a\xa0\xde\x22\xee\x30\xd3\x03\x97\xb9\xf3\xfa\x66\x1f\xb2\xaa\x29\x28\xcc\xef\x40\x83\x32\xf8\x4e\x3c\x97\x84\x47\x8d\x11\xaa\xac\x9d\x16\x46\x4a\x52\xe3\x58\xcf\x56\xff\x34\xb2\xcd\xa5\x7c\xfb\x2b\x7b\xbe\x3b\xbb\x28\xac\xa1\xa2\x08\x6e\x3e\xe9\xa3\x7d\xc3\x66\xd8\xe1\x43\x77\xc8\x73\xcb\xbe\xb8\x52\xa4\xce\xb3\x2f\x6e\x11\x3a\xb1\x2f\x76\x11\xa4\xcb\x0e\x89\x5a\xcf\x9c\xac\x1d\x36\x49\x5d\xfd\xdb\x17\xbb\xa6\xb8\x16\x4d\x98\x7f\xf8\x8a\xa2\x43\xb9\xf0\x6a\xd7\x5d\x14\xdc\x09\x07\x64\x87\x78\xad\xe8\x86\xdb\x17\xa2\x12\x71\x85\x76\xc8\xd7\x7a\x2e\x1a\x07\xd8\x86\x31\x6f\x0c\x9d\xb4\x44\x3b\x0c\x9d\xba\x16\x77\x5f\xa2\x3b\xdc\x9d\x78\xda\xc8\xf1\xd8\x46\x82\x76\xc9\x72\x6c\x5f\xda\x7c\x9e\x01\xbd\x7a\xbb\x86\xc9\xe6\x2b\x1a\xc9\x02\x0b\x14\x35\x83\xf9\x8b\x98\x98\x1b\x81\x5a\x2e\x7f\x8c\xb2\x79\x8a\x46\x77\x8b\x1b\x81\x28\xe9\x1a\x99\x76\xaa\xe7\x1d\xab\x1a\x31\x9b\xf6\x25\xf2\xd6\xa3\xc1\x64\xf6\x3b\x47\x41\xc2\xd6\xdb\x1f\x3f\xd1\x8c\xfb\xf7\x04\x4f\x5c\x8d\xb2\x6d\x8b\xa6\x08\x2d\x26\x19\xf6\xec\x8b\x7d\x5b\x55\xa9\x88\x9b\xa4\x7a\xf4\xce\xf6\xda\xe3\x65\xe6\xf2\x1c\x21\x9a\x1b\xea\x41\xa8\x93\x08\x8f\x6f\x2c\xb3\x92\xfb\x2a\xfa\xb6\xbb\x0b\xd1\x59\x1e\xe1\xc4\x99\x3d\x8d\x38\xcb\xcb\x1f\xb4\xbe\x91\xdb\x5d\x42\xeb\x0a\x43\x3b\x65\x6a\x44\x18\xda\x9e\x21\x6f\x08\x43\xdb\x73\xf5\x2f\xc3\x70\x2c\xb9\x5a\x56\x9b\xf7\xc0\xc6\xf8\x4a\xbe\x03\x15\x2e\xb6\x7a\xfa\x90\xdb\x4d\x19\x58\xed\x1b\x03\x58\x59\x77\x12\x2f\xb6\xe8\xa1\x46\xb8\xd8\x53\xd6\x1f\x63\x16\xaa\x2b\x82\x1a\x03\xff\xee\x5b\xb4\xad\x3b\xa8\xfd\xc8\x43\x7c\xdf\xda\x8f\xc3\x15\x83\x7b\xaa\x46\x1a\x8c\xfb\xec\x2e\x2d\xde\x00\x49\x15\x2f\xf5\xdf\x5f\x85\x0f\xfd\x95\x69\x51\x0f\x45\x54\x25\xb5\x8a\x7b\x27\x6f\xd0\x5b\xb7\x5f\x53\x4d\x70\xe0\x25\xb2\xdf\xe1\xca\xb6\x67\x0f\x47\x78\xac\x38\x1b\x38\xc4\xa3\xc1\xc1\x9c\x2c\x7c\x08\x19\x7b\x06\xc7\x6a\x84\xc0\x29\xeb\x8e\x20\x3a\xe4\x29\x3b\x94\xa5\xbf\x53\xb9\x88\x7a\x7a\xf9\x87\x71\xc0\xa1\x84\x88\x15\xd9\x33\xa4\x1b\xd1\x20\xbb\xcc\xee\x09\xff\x78\x2a\x55\x35\xa1\xdb\x2e\x9b\x5c\x82\x41\x66\x42\xc4\x9d\x5c\x28\xb3\x17\x57\xc3\x1d\x3f\xd4\x86\xf0\xb1\xb6\x79\x11\x93\x50\x67\x00\x39\x51\x6e\xfe\x18\xf3\xa3\xd9\x0a\x39\x51\x96\xac\x80\xf0\x8e\x3d\x43\xd2\x29\x82\x63\xd1\x43\x5c\x31\x1b\xa7\x4c\x8c\x14\xa6\x31\xfb\x97\x08\x86\x2e\x97\x05\x55\x0a\xab\x16\xd0\x61\x57\xb5\xf2\x2b\xe4\x1c\x34\xc7\x50\x7f\xe2\xf1\x24\x0f\x76\xbb\x70\xa1\xba\xc5\x45\xcf\x35\x2a\xd8\xf0\x3c\xba\x76\x09\x66\x8e\x1c\x73\x6f\x49\x77\xbe\xbf\x0b\x89\x56\x72\x9d\x60\xfc\xa1\xa2\xa2\xb3\xb8\xd0\x77\xd1\x8a\x08\xbd\x15\xbd\x88\xa7\x6a\xda\x98\x60\xf9\xa7\x74\x7d\xaa\xe2\x0d\x49\x99\x5d\x36\x10\x48\x77\x59\xc6\xc5\x28\x43\x0e\xd4\xb3\xee\x95\xea\xe5\x9a\xca\x82\xc7\x21\x8f\x76\xe5\x4a\xec\xe9\xcf\x78\xbc\x8a\x9a\xd7\x96\xa9\xac\xb4\x86\x52\x45\x84\x55\x57\x1b\x4b\xdd\xdd\x26\x27\x41\x08\x0d\x39\x90\xdc\x1c\xed\x0a\xcd\xad\x63\x51\xe1\xee\x4b\x48\xb4\x43\xd4\xd3\xb3\x76\x1e\xa2\x1d\x39\x8a\xd9\x55\xe8\x41\xf8\x2c\x44\x39\xbd\xb9\x9e\x83\x1e\x72\xff\x7e\x63\xde\x85\x58\xaa\x90\x45\xf5\xd7\x98\x83\xef\x47\x0d\x53\x6d\xa2\x3e\x6d\x04\x5b\x09\x44\xed\x73\x1b\x51\x37\x15\x80\x76\x12\x75\x33\x37\x0f\x33\xae\x20\x09\x2c\x89\xb2\xa9\xb8\xca\x27\x17\x3b\x58\xdb\xb2\x8a\x56\xf2\x30\xb9\x47\xb4\xf0\x38\xa6\xbc\x44\x30\xee\x8a\x57\x41\x5f\x1d\x15\x1d\x0f\xa3\xdb\xa6\xab\x43\x58\x9d\xd0\x9a\x53\xd6\x4f\x5b\xce\x27\xc5\x76\xdf\x98\x4e\xe6\xef\x47\xa6\xda\xdf\x78\x61\xe9\x00\x2a\xd2\xa6\x91\x6f\xd3\x55\x32\xfd\xd3\x60\x43\xea\x8e\x0c\x97\x92\x29\x8b\xa1\xbb\x9b\x78\x68\xba\x85\x1a\xda\x87\x17\xa4\xf3\x6e\xdc\x16\xda\x53\xb2\x82\xbc\x34\x67\x8d\x85\x99\xfa\x65\xf0\x57\xf3\xd4\x48\xe5\x4b\xfa\x72\x36\xb0\xa2\x6b\xc5\x7a\x51\x62\xc9\xdd\xe4\xd5\xfc\x72\x36\x16\x46\x68\xd1\x52\x34\x5d\x0e\x8d\x95\xd1\xea\x23\x36\xbb\xbe\x45\xb9\x0b\xdc\x5b\xd0\xfd\xf4\x47\x06\xe6\xde\xc6\x22\xca\xc7\x09\x21\x38\x7b\xf6\x7c\x6d\x75\xcf\x4d\x72\x0b\x7a\x64\xe8\x96\xca\xea\x8b\x88\x9c\xa7\x70\x51\x36\x8e\x8b\x96\x30\xdc\x46\x76\x5f\x0d\x5d\x9c\xaf\xea\x8f\x4c\x5f\x53\xae\x45\x51\xd7\xaa\xf3\x3a\x94\x55\xe7\xab\xb2\x9a\x5c\x57\xf4\xc4\x4f\x19\x76\x88\xdc\x7a\xd1\x64\x76\x31\xe1\x75\x57\x85\x07\xc8\x2e\xbf\x84\x84\xd8\xec\x45\x6b\x84\xbd\xe2\xbc\xdc\xa1\xc9\xaa\xf0\xea\x24\xaa\xe6\x5d\x7d\x95\xc9\x24\xf1\xf2\x40\xc5\x35\xd1\x0c\x12\x49\xf3\xd2\x1b\x66\x87\x69\x61\x2f\xee\x2e\x0a\x19\xf2\x9c\xb5\xfb\x82\xf7\x26\x7a\xb9\xeb\xbd\xa3\x4b\xb2\x07\x7f\xbd\x5c\x2e\xab\x3e\xf9\x23\x03\xd7\xd8\x08\x18\x22\x8e\xd0\xee\x68\xbf\x77\x7f\xcc\xb4\xa2\x69\x41\xef\x50\xfe\xda\x36\xe2\xba\x72\x69\xe4\x71\xa1\x0e\x2f\x70\xdc\x02\xd2\x5b\x27\x24\x67\x2f\x9e\x94\xad\xfe\x30\x4e\xe4\x73\x53\xd6\x6a\x1b\xb7\x8f\x96\x24\x13\x92\xf3\x7c\xfd\xb3\xf0\x73\x0f\x74\x4b\x65\x22\xb7\x43\x02\x77\xda\x61\x8e\x06\xc6\xf7\xbe\xaa\x07\x62\x71\x71\x0b\x36\x92\xb4\x0e\x87\x62\x0f\x48\x3a\x59\x7d\x6d\x59\x6e\x9a\x3e\x09\xc1\x5a\x2f\xea\x7f\x58\xd0\xf5\xa2\x56\xc2\x4a\xee\x96\x40\x9d\x20\x88\x5d\x21\x03\x88\x81\x78\xa6\xd3\x1f\x37\x8d\xf8\x97\x87\xea\x91\xfb\x9e\x3d\x35\x65\x2e\xaa\x40\x15\x91\xc3\xc1\xde\x94\xbd\x18\xe1\x12\xbb\x94\x2a\x09\x90\x78\x3e\x3a\xdb\x19\xe6\x54\x36\xd6\x4c\x83\x0e\x8b\xb5\x5e\x84\xc5\xc2\x6b\x5e\x2f\xba\xa5\xc2\x69\x5e\x31\x89\x88\xf9\x5a\x11\xe6\x5c\x9a\xbb\x6f\x16\xb3\x2a\x57\x33\xf8\xe8\xac\x46\xe9\x26\x63\x5c\x3a\xf8\x4b\x4c\x24\x11\x00\x61\xa3\x56\x24\xd4\xd8\x32\x43\x33\x15\x16\x66\x68\xbd\x24\xe7\x0e\x71\x97\x75\x2d\x2d\x34\x55\x4c\xa2\x85\xdd\x59\x2f\xc9\xb9\xc0\x5a\x3a\x39\x0b\xad\x37\xd3\x3d\x88\xa2\x8a\x76\xdb\xd2\x51\x71\xf7\xb0\x1d\xf2\xe5\xbc\x44\xf8\x88\xa2\x0c\xc3\xb3\x53\x58\x3d\x42\x63\x49\x37\x6e\x84\x39\xec\x72\x00\xb3\x17\x47\x25\x39\x17\x87\xb7\x38\x17\x01\x41\x2e\xb7\xb1\x83\x5f\xab\xfe\x9c\x3d\x51\xfa\xb7\x41\xf6\xf7\xed\x6c\xe8\x56\x75\x37\x1f\x61\xf5\x75\x85\x22\x94\xca\x12\x53\xec\x8d\x27\xb4\x6f\x4e\xcb\xd7\x94\xd5\x82\x75\x65\x37\xd9\xa1\xec\x2b\x8c\x28\x6e\xe5\x22\xd4\x9c\x6e\xc5\x10\x3b\x29\x32\xfb\x24\x8e\x61\xf2\xf3\x2a\xe2\x18\xf6\x92\x9d\xe3\xfe\xd4\xb8\x42\xca\x54\x5b\xf1\xc7\xf3\x16\x90\xeb\x08\x22\x1e\x5a\x51\x8e\x88\x87\x5d\xaa\x23\x7b\xb3\x7b\xc4\x97\xd8\x9c\xc3\xec\xe6\x1f\x66\x47\x7d\x0b\xd2\xa9\x88\x83\x80\x38\xea\x92\x87\x91\xbd\xd9\x4b\x9a\xd7\xad\xf7\xba\xc8\xe4\x30\x35\xeb\xe5\x5b\x14\x62\xa4\xb9\xa2\xc0\x9e\x9e\x00\xef\x08\x67\x23\xd6\x8d\xc9\x9a\x30\x27\x3b\x5f\x35\x94\xd8\x20\xe5\x9b\x63\x46\xb2\xb3\x2c\x82\x10\x3a\xf6\x65\x45\x57\xce\xde\x1a\x1a\x65\x5f\xc2\x98\x42\x39\xb2\x21\x93\xcd\xdf\xb6\xf8\xa7\xf8\xeb\x27\x1c\x16\x27\xe5\xe0\x2c\x69\xe6\x91\xfe\x54\x3f\x17\xc2\xe0\xeb\x74\xc2\x5f\xa1\xb2\xf5\xb4\x08\x03\xb0\x5b\xbe\x71\x88\x73\x78\x6a\x52\xab\x20\x08\x6d\xbf\x97\x10\x44\xf6\x47\x26\xf8\x9f\xa1\xc8\x5f\xa8\xc5\xfa\xe9\x83\xf1\x58\xbe\xbe\xad\x42\x38\x16\x67\x1f\xbe\xb2\x72\x38\xc2\x93\xfe\xcd\x7e\x61\xfe\x23\x2a\x32\x1c\xe1\x9d\x5f\xba\x28\xaf\x7f\xbd\x20\x42\x70\xd4\x8b\xf6\x6e\x38\xa2\x3b\x7d\xd0\x4f\x37\x43\x15\xb9\xfc\xd2\x03\x59\x07\xef\x25\xd1\x82\x1e\x2a\x8a\x25\x28\x5b\x4d\x62\x09\xe6\xf2\x2d\x1b\xde\xc6\xbd\x0d\x5f\x3e\xd0\xea\x53\xbc\x7f\x4a\x75\x45\x8c\x4d\x7b\xeb\x2d\x7e\x8a\xee\x87\x10\x17\x9d\xec\x50\xb6\x51\xd3\x54\x16\xac\xaf\x65\x0e\x63\xb0\x5e\xaa\x7f\xba\x7f\xfd\x54\xe9\x71\x29\x2a\xa0\xfc\xa1\x11\x15\xd0\xfe\x60\xf6\x9b\x1b\x41\xf4\xd4\x9b\xf5\xbf\xf5\xca\x7a\x73\xc0\x45\x23\x29\x42\xa0\xec\x3e\xf7\x5b\x1b\x40\xbb\xe3\xed\x0d\xe0\xc2\x83\xc2\x1a\xda\xe4\x5e\xd4\xe6\x79\xc3\x40\x91\x71\xe5\x7e\x8b\xa4\xd2\x92\x87\x19\x57\x31\x86\x0e\xc1\x53\x97\x91\xf5\x7e\xeb\x1a\x18\xce\x4e\x2a\x52\x27\xb8\x07\x9a\xeb\x89\x15\x6f\xfe\xa6\x36\xfd\x51\x6d\x6a\xe4\x8b\x53\xa3\xad\xf4\xc6\x2b\xbb\x4c\x21\xf7\x5b\xc4\xb6\xde\x65\x21\xb2\xea\x45\xf8\xe2\xad\x4b\xa2\x38\xcb\xb2\xe9\x96\x08\x4b\xae\x5e\x74\xfc\xde\x21\x69\x2e\xcd\xd5\xb2\xf3\xab\x3f\xbe\xc9\xd2\x4a\xc8\x83\xb2\xc4\x41\x3b\x04\x40\xe7\x23\xd5\x7e\x74\xac\x85\x43\x3f\x28\xac\xfb\x71\xfa\xe1\xa8\xea\x54\x7f\xb4\x52\xda\xfa\x1f\x02\xee\x48\x6f\x8e\x28\x8c\xdd\xac\xdf\x10\x01\x55\x29\x5f\x28\x08\xe3\xf5\xfd\x25\x08\x57\xe7\x36\xfc\xc0\x9d\x6a\xd5\x41\xec\xa8\xfc\xe8\x0d\x3b\xaa\xf3\x55\x35\x89\xf2\x75\xe1\xa0\x33\x6d\x83\x49\x00\xc3\xbb\xfa\x0a\xfa\xc0\x2b\xf7\x95\x8d\xc8\xa5\x4a\xcb\x63\x5b\xe4\xa2\x49\x7c\x88\xb2\xe9\x97\x19\x81\x09\xcb\xfd\xfd\x1a\x9c\x64\x8c\xda\xd6\xfc\xb0\x38\xd8\x97\xae\xc5\x7e\xaf\x58\x7b\x3e\x0b\xd6\x57\x2d\xb1\x0f\x4f\xf6\x21\x3b\x22\x0b\xe7\x27\xe3\x2f\xf3\x59\x25\xf6\x70\xe6\x0d\xf8\xa0\xae\x7b\xba\x51\xc8\xc2\xac\x83\xa1\x73\xb2\xe8\x64\xc6\xeb\xe3\x59\x11\x16\xe4\xfc\x96\xc2\xb0\x04\x32\x22\xa6\x67\xc5\x9b\xfb\x56\xe0\xd5\x67\x11\x99\xa1\xf0\x1a\x7e\x50\xef\xec\x43\x5d\x8e\x87\xe8\x5d\x78\x6f\x3c\x0b\x07\x3c\x85\x07\xd1\x83\x9a\x63\xc7\xad\xd6\x83\x7a\xe2\xad\x30\x09\x0f\x0a\x80\xb7\x3c\x52\x3f\xab\x13\xa4\x20\xf6\xe2\x23\x1d\xba\x8c\xf4\xf7\x41\xd5\x6d\x1c\xf2\xfe\x0f\xd8\xfd\x41\x0f\x6e\x40\x63\x3e\xe8\xc1\x75\x1c\x21\x3f\x52\x83\x2b\xa8\x01\x3c\xa8\xc1\x8d\x32\x5c\x34\x9f\x9c\x46\x12\x8e\xda\x47\x99\x53\x39\x6c\x8c\x2e\x7f\x6c\xbf\x7e\x46\xd5\xc2\x8c\x30\xc1\xa8\xdd\xd5\xec\x93\x1b\x59\xb9\x57\xe4\xfc\xbb\xf7\xc9\x7d\x9b\xff\x44\xce\x4d\x84\x89\xec\xad\x6f\x71\xcf\xdc\x78\xfc\x39\xd9\xb0\x98\xbd\x9d\x0b\x57\x4a\x29\x29\x17\xc6\xbd\xd9\x3f\x24\xfe\x4e\x73\x96\xb8\x38\xfe\x61\xf8\x17\xcc\x9a\x0d\x39\xf3\x2d\xca\x85\xb3\x32\x8f\x62\x85\xaf\x61\xf7\x7b\xa1\x87\xe3\x06\xdf\x41\x93\xb1\xc6\x43\xbb\x65\xe8\x23\x56\xa6\xd9\xed\x07\xeb\x2e\xc3\x61\x78\xd0\xce\x3b\x59\xff\x36\x88\x46\xa4\x40\x0f\xca\x7a\x77\xe6\xc6\x79\x50\xd6\xeb\x78\x91\x7f\xd0\xd5\x3b\x15\xab\xf3\xf1\x0a\x92\x8e\xef\xc9\x4e\x2a\xd6\x60\xe2\x24\xe5\xec\xfe\xc7\x3b\x28\xf3\x78\x3d\xd9\xd0\xae\xc0\x79\xc8\xc9\x72\x92\x92\x6b\xfe\x90\x75\x2f\x1e\x7e\x4b\x43\x38\x9e\xb9\xe1\xa9\x3e\x28\x02\x9e\x86\x6e\x65\x19\x6e\x2e\xca\x32\xdc\xea\xc2\x0c\xb7\x57\x65\x19\x6e\xea\xca\xb6\x30\x37\xbd\x94\x63\xb8\xd9\x3f\x65\xb8\xc5\x65\xa1\x08\xe6\x50\x36\x2c\x7b\xbe\x65\x19\x6d\x9f\xca\x72\xce\x8a\xcb\x32\xda\xe2\x4e\x30\xda\xec\x2c\xa3\x9d\x1a\x8f\x8e\x6c\x55\x55\x93\xd1\x56\x7f\x65\xb4\x49\xbf\xc5\xd4\x20\x77\x7f\x65\xb4\x45\x13\x37\xb5\xb8\xce\x82\x82\xaa\x7a\x35\x19\xee\x74\x43\xf1\xc6\xf5\x62\x87\x47\xfc\xf3\x5b\x67\x59\xdd\xea\xaa\x42\x78\x78\x7f\x7f\x8b\x03\x15\xcf\xcd\xd4\xfa\x69\xe6\x30\x76\x41\xde\x7a\xb2\x8c\x48\x08\x02\xaf\x3a\x39\x27\x7f\x65\x44\x42\xb9\xa1\xc6\x78\xeb\x49\xf8\xa0\xc7\x78\x6a\xd6\x62\xe3\x44\xac\x08\xe5\x86\xdb\xfc\x53\x95\x0b\xb3\x80\xdd\x85\x19\x51\x76\xaf\x62\x01\x85\x62\x43\xed\xf1\x96\xbe\xc2\xc9\x86\x7f\xd6\xe4\x3d\x16\x84\x44\x6e\xc2\xb1\xa1\xe4\x35\x35\x8f\x9b\xd8\x13\xe8\x32\x3e\xb0\x1c\x3a\xca\xf6\xcf\x8e\x93\xda\xa1\xca\x4e\x2e\x70\x33\xb8\x68\xc7\x2e\xef\x04\xbb\x79\x36\xca\xae\x78\x5e\x78\x76\xe8\x8d\xf1\x20\x7b\x78\x19\x8c\x4b\x05\x5f\xb2\xef\x55\x06\xd7\x12\xca\x60\xb0\xad\x0c\x16\xa3\xca\xf4\xa8\xe1\x8f\x01\x3a\x1f\x22\xa4\xf7\xdb\xdd\x08\xff\xf7\xae\xfe\xf5\xeb\x47\x88\x6c\xbf\x88\xb8\x9a\x95\x39\xd4\x66\x76\x5b\xcf\xaf\x1f\xdc\xb0\x3f\x0a\x69\xce\x2e\x21\xa2\x79\xd3\xcc\xbc\xf0\xbb\x74\x29\x73\x7e\x13\xf4\xf3\x03\xbd\x4f\x18\xb4\x47\x51\xbb\xbb\xba\x13\x31\x49\x58\x7b\xc8\x6c\x64\x44\x8f\xc2\x79\x17\x17\x3b\xb5\x71\xab\x11\xcc\x1b\x2e\xdf\xb3\xdf\xc4\x5b\xd7\x97\xe8\x1b\x7b\x14\xf2\x14\xdf\xa3\x0f\xc4\x29\x7e\x0b\x1e\x02\x05\xe3\x43\xff\x21\x4e\x30\x21\x37\x1e\xa2\x04\x0f\x78\xb5\x0f\x41\x82\xd1\x20\x79\x88\x0a\x1c\x2f\xf3\xe7\x9a\x0f\xe1\xdb\x46\x38\x10\x8b\x3c\xdc\xb1\x2b\xe4\x54\x00\x02\xd3\xde\x41\x00\x1f\x00\xc6\xed\x77\x0a\x75\xf7\xe7\x5a\x17\xf1\x6f\xef\x1c\x7e\x88\x02\x90\x30\xd7\x0e\x0d\x7d\x01\x82\x2e\x08\x9e\x0c\x80\x85\x84\xe2\xec\x69\x01\x50\x7a\x2a\xdf\x9f\xc4\x45\x52\x42\x3b\x29\x00\x59\x32\xe5\x43\xc2\x05\xa0\xa2\x39\x1a\x8e\xe5\x02\x00\xb9\x91\xc7\xb7\x04\xaa\xec\x68\x33\x07\x00\xed\x3d\x54\x34\x03\x00\x29\xdd\xc3\xba\x33\x00\x1f\x74\x6d\x43\xab\x30\x00\x38\x7b\xed\x61\xb4\x78\x00\x76\xdc\x19\xaa\x84\x01\x28\x1a\xed\x9c\x06\xc4\x1d\x51\xc2\xd2\x33\x00\x8d\x38\x18\x21\xba\x09\x00\xfc\x5e\x34\xc9\x02\xf0\x25\x45\x8a\x01\x88\xce\xc2\x7f\x53\x00\xd0\x3c\xbd\xc2\x33\x5d\x00\xe2\xe5\x74\xf7\xd0\xcc\x0f\x80\x74\x76\xe2\x95\x70\x00\x32\x77\x46\x51\x07\x00\xa6\xfc\x81\xcf\x02\x90\x18\x5c\xdc\x39\x01\x90\xc4\xb0\x26\xb5\xb2\x90\x94\xa0\x90\x12\x00\xa4\x21\xe5\xf6\xba\x60\xc3\x73\xa3\xc0\x12\x00\xe1\xc5\x88\x8c\x10\x80\xcd\x32\x04\x76\x0b\xc0\x4b\x3f\xf1\xea\x2f\x5c\x22\xe4\xf0\x8a\x0b\x80\xeb\x3d\x74\x7d\x0f\x00\xb9\xd9\x8d\x34\x17\x80\x56\x7f\xaa\x8e\x8d\x1d\x08\x22\xcc\x00\xd0\x0f\x44\x33\x02\xd0\xac\x97\x01\x26\xe3\x8d\x84\x2d\x00\x6f\xbc\x4b\x66\x6d\x87\x5b\x01\x83\x60\xb6\x02\x80\x3a\x08\x53\xc4\x00\x70\x91\xc1\x72\x05\x80\xeb\x8c\x92\xee\x2f\x60\x53\xa2\x0b\xb0\x79\xf2\xc4\x83\x02\xc0\xd2\x4f\x86\x01\xd1\x0a\xcc\xac\x00\xe0\xc3\xa6\x85\xcb\x50\x00\x78\x84\x2c\xd9\x95\x12\xde\x1f\x56\x55\x00\x1e\x01\x8a\x5a\x91\x03\xd5\x1e\xe1\x5d\x05\xf8\x10\x1f\x41\x3d\x9d\x5d\x1d\xeb\x2e\x01\xd9\xd1\x8b\x66\xec\xc6\xd9\xd5\xa1\x95\xd4\x0a\x3e\x82\xee\x5e\xa6\x7f\xf2\x46\x8f\xb8\x4c\x4d\xd0\x22\x3c\x68\x1b\xd9\x00\x04\x2c\xbd\x26\x0d\x0e\x33\x92\x3e\x9c\xdf\xb2\x69\xae\xc2\x27\xf7\x2e\xf4\xbc\x0a\xe3\xdc\xde\x0d\x11\xc7\x1e\x00\xf8\xa4\x96\x6e\x00\xda\x50\xb5\xfc\xe9\x5e\x89\xd2\x0d\x81\x69\xb8\x0a\x15\xe0\x05\x20\x19\xc0\xee\x0a\xbf\x81\x00\x08\x89\x59\xab\x3b\x89\xac\xa5\xd7\xe6\x12\x50\xb7\xbd\x7a\xbe\xf7\xd0\xe4\x7d\x7b\x8d\xb7\xa1\x5e\xbb\x01\x38\x5a\xe9\x75\xf8\x27\xa8\x6d\xf5\x0a\x36\x5e\x89\x08\x7b\x77\xaf\x42\x36\x89\x30\x51\xf7\x34\xa2\x48\x43\x95\xb6\x2f\xe0\xc3\xec\x35\x21\x9b\x34\x89\x6c\x55\x8b\x70\x6d\x9a\x9b\x9e\x36\x1d\xe1\x84\x35\xf8\x4d\x20\xf9\x00\x60\x73\x8d\xff\x95\x00\x20\xad\xec\xad\xba\x04\xb6\x0f\x3d\x2e\xad\x00\xbc\x65\xa9\xa6\xbd\x93\xa4\xb1\x89\x70\xf9\x00\xa4\x48\x05\x07\x1b\x00\xe7\x20\x22\x7e\x06\x40\x67\x3a\x74\x2a\x03\x30\xd1\x45\xbb\xb9\x8c\x56\x22\x70\x7d\xba\xc2\x67\xd4\x73\xad\xac\x50\x73\xbd\x6b\xaf\xe4\xa1\xed\x16\x81\x85\x04\x60\x19\x84\x17\xf2\xe8\x1b\x37\x7e\x9a\x8f\x3c\x82\xa3\x72\xf7\xae\xa5\xcc\xf2\x98\x5e\xee\xe2\x56\x1e\x5c\x93\x86\x01\x9d\x00\xfa\x49\xf9\x02\x68\xb6\xe5\x2f\x40\xce\x02\x7f\xd7\xb1\x00\xa4\x2f\xe0\x01\xf0\xad\x83\xf9\x88\xc0\x16\x00\xc4\x7b\x48\xfa\x89\x2f\xa3\x3e\x7e\x03\x36\x80\x62\x00\x91\xe6\xba\x66\x3d\x4f\x69\xf5\x74\x0f\x7f\x66\x5a\x19\xb7\x7f\x42\x98\xcb\x3e\x84\xd2\x32\x0e\x79\xef\x3e\x74\x4d\xe4\xa9\x29\x9c\x97\x4b\xf0\xfe\xea\xc3\x53\x38\x79\x81\xf5\x70\x42\x21\x00\x6a\x67\xd3\x25\x84\x5b\x86\xd7\x65\x62\x28\xd0\x87\x67\x0c\x4f\x5d\x77\x0f\x5f\x42\x00\xe2\x62\x25\x7c\x7e\x00\x50\x03\x27\xbc\xba\x00\xf2\x5b\xe4\x9e\x3e\x0a\x51\xd7\xdd\xd3\x87\xbb\xf8\xae\xe9\x0b\x78\x28\xa1\x4a\x97\x76\xe1\xd0\xc6\xcd\x38\x84\x38\x00\xd5\xb1\x16\xa6\xb4\x43\x24\x40\xde\xf0\x66\xfa\xd4\x3e\xcd\x9b\x20\xc8\x25\x79\xb4\x3b\xf3\x8c\x0c\xfb\xc6\x00\x10\x36\xb7\x4f\x61\xbd\x2c\x65\x9d\x91\xa7\x4b\x54\x95\xf0\x04\x6d\x39\xc0\x9d\xc5\x3f\xc1\x62\xb1\x4f\xef\x75\xa4\xa0\x07\xe0\x66\xdf\x04\x63\x9e\x5a\xfd\x42\xfc\xf7\x74\xdd\xda\xb8\x65\x24\x90\x6d\x68\x21\x04\xa0\x60\x8c\x7a\x5d\xfe\x09\x26\xa7\xe3\xd2\x76\x28\xa3\xe3\xf3\x27\x24\x99\x01\x40\x64\x51\x4c\x56\x95\x01\x07\x6d\x5c\xc2\xe0\x45\x41\x05\x7c\x6d\x94\x39\x88\xe0\x72\xe9\x72\x2a\xf2\xf9\x38\x2e\x11\x0d\x45\xee\x69\x08\x43\x78\x00\x8b\x8e\x8e\x70\x48\x1c\x00\x9e\xae\xe3\xd6\x94\x96\xf5\xa6\xc4\x7d\xbb\xc4\x1b\xcb\xae\x5b\x04\x50\x91\x9a\xe7\x30\xfa\x28\x9b\xb8\xc1\x79\x8a\xba\x2b\x7b\x48\x4f\xb0\x8e\x2f\x20\x06\x7b\xff\x06\x60\xf3\x75\x0b\xad\x97\x3d\xf1\x4e\x70\x6b\xcf\x95\xbd\xf0\xc4\x70\xbb\xeb\xfb\x91\x5c\x46\x77\x45\x25\x26\xff\x3d\xc2\x39\x09\x00\x9c\x7a\xdc\x5a\xa7\x3a\xc2\x88\xfe\x00\xfe\xa4\xe6\x1f\xa5\x71\x43\x3d\x6e\x11\x43\x95\xb8\x94\x07\xe0\xfa\x3a\xf3\x7b\xeb\x9e\xae\xc4\x13\x3c\x80\x2a\x80\xac\x0d\x6f\x6d\xea\x2a\x37\xfd\xc3\x14\x78\x9d\x09\x4d\xef\x4b\xa7\xbe\xce\x8c\x81\x6f\xba\xfd\x93\xe2\x12\xfe\x49\x23\x04\x43\x4a\x06\xe0\x7d\xb5\x98\x68\xaf\xf2\x43\xd6\xbd\x99\xea\x24\xf0\xc6\x88\x80\x09\x00\x88\x55\x9b\xb4\x57\xaa\x5c\x85\x34\x4d\x6f\xc5\x5e\xfa\xee\x7a\xa1\x04\x00\x36\xab\x48\xe3\x6a\x8b\xe6\xa4\x5d\x5f\x31\x42\xbb\xf3\x4c\x2e\xb1\xb1\x2e\x4f\xda\x5d\x15\x7b\xb2\x03\x68\x06\x60\x59\x1a\x1e\xd2\x02\x80\x86\xff\xf0\x19\xaf\x1b\xdc\x3b\xc2\xdc\x06\x00\x75\xe4\xcb\x25\x44\x45\x5c\xd9\x80\xc1\x1c\x67\x8f\x7e\x2b\x32\xa0\x69\xf6\xba\xe1\x41\x8c\xec\x9e\x6e\x45\xe7\x0b\x4e\x42\x00\x88\x71\x36\x4c\xc4\xd7\x2d\x5f\x9a\x59\xa8\xa5\x22\x60\x3c\x00\x57\x2a\xc7\x86\x39\xbb\x8e\x37\xc1\x3a\x4c\xc4\xd7\x2d\x67\x57\x39\xfb\x27\xb8\xa1\x1a\x39\xbb\xa7\x8a\x73\x91\x85\x8d\xda\xb8\xd8\x40\x59\xd8\xa8\x8d\x0b\xff\x7c\x59\xa8\xb6\x8d\x5b\x75\x54\xff\x84\xf0\xe5\x23\x24\xee\x01\x18\x3c\xe1\x9a\x08\xf0\x36\x38\x5c\xe5\xd6\x7b\xac\x0d\x1c\x0f\x8f\x3c\xfc\x93\x05\x7a\xca\x22\x1a\xda\xc0\x58\xe9\x0a\x03\x94\x03\x50\x90\x8d\x91\x85\xe2\x1a\x1e\x81\xef\x51\x74\x6d\x34\xbc\xbf\x9e\x47\xcd\x25\x00\x2f\x94\x51\x34\x41\x6d\x65\x01\x3c\x38\xfb\x24\x09\x89\x69\x00\x2a\xdc\xb0\xf6\x1b\x00\xf6\x29\xd5\x75\xa0\xb5\x55\xc2\x81\x64\x00\xba\x2a\xf5\x04\x2d\x1d\xca\xe2\x09\x32\xe7\xab\x08\x73\xb4\xb5\x98\xe4\xa2\x4b\xb2\xd9\x04\x35\xe4\x4a\x01\x40\x76\x8b\xfb\xfc\x03\x90\xfe\x77\x2f\xda\xb8\x6d\xdf\x78\x3e\xa9\x7a\x5c\xb5\x9d\x10\xac\xa4\x2f\x40\xa3\xad\x42\xf9\x0d\x16\xd0\xdd\x2f\x2f\x83\x77\x61\x4d\xae\x14\x99\xcf\x30\x8d\xde\x36\xf6\x08\xa3\x8a\x64\xec\x0a\x38\x8f\x67\xe3\x00\x14\x90\x54\xb0\xca\x01\x60\x81\x5f\x75\x15\x77\x91\x48\xa3\xdd\xf7\x17\xb0\x01\x5c\x06\xb0\x94\x4d\x28\xa8\x13\xea\xe4\x1e\x4d\xc7\xa3\xcf\x9b\xc8\x28\x4d\xd8\xa1\xcf\x41\x4f\x9b\x76\xf2\x01\x54\x00\xae\x43\x46\xe4\xad\xb8\x8e\xa5\x48\x2c\xdf\x56\x16\x46\xf2\x4d\x9b\xbf\xe3\xd6\xf4\x26\x72\x29\x00\x8e\x58\xd3\xda\x76\x1c\x5b\xde\x44\xce\x3c\x80\xa5\xa0\xd6\x4d\xf4\x5f\xc7\xbd\xc4\xa1\x65\x35\x41\x8b\x66\x09\x19\x12\x80\x0f\x2b\xd7\x44\xfd\x77\xd9\xff\xe0\x40\x25\x00\x8a\x12\xd4\x85\x83\xfa\xbe\x08\x66\x97\x3c\x1f\x1b\xd7\x45\x98\xb8\x05\xa0\x4a\xe9\xaa\xb9\x44\xe3\x98\x76\x1d\x8f\x0e\x1b\xf1\x00\xfc\x13\x3d\xcf\x87\x4e\xd4\x10\x83\x67\x74\xe1\xa0\x31\x12\xd8\xa1\xe7\xfc\xe7\xfb\x6b\x8c\xc9\x63\xca\xf4\xf5\x18\x72\xc3\xdd\x35\xbf\x83\x40\x7f\x07\xe0\x06\xf0\xeb\x87\xeb\xcd\x03\x98\x42\x3f\x5d\xd4\xe2\x50\xf0\x93\xd1\xf5\x44\x19\xb3\xe2\x38\xca\x14\xf8\x98\xdc\x02\xc3\xc4\xf2\xc0\xaf\xee\x01\xe8\x27\x76\xf1\x32\x74\x93\x0c\xdc\xb8\x1c\xc0\x6d\x80\x42\x8e\xdd\xfe\x49\x28\x84\xde\x25\x69\xdf\x1f\x80\x62\xa4\xaa\x15\x9f\x72\x13\xcb\x63\x0d\xc7\xb3\x73\x09\x24\x05\x63\xe8\x0e\x1c\x6b\x2a\x5a\x91\x87\xbf\x1c\x1b\x54\x98\x62\xac\xad\x70\xa5\xda\x5e\x63\xc9\x13\xb2\xc9\xe9\xe1\x1b\x6d\x34\x8f\xe5\x51\x34\xe4\xee\x66\x1f\x07\x51\x51\xa5\xe0\x81\xde\x44\xc4\x8f\x5d\xd8\x08\x43\x84\xde\xd8\x55\xfd\x12\xdd\x32\x76\x57\x28\x9d\xe1\x2a\x42\x1c\x76\xa6\xa3\x7d\x01\x34\x32\xbe\x00\x05\x07\x17\xf1\x32\xb6\xe3\xb2\x4e\x57\xba\x35\xc7\xd3\x95\x6e\x64\x41\xdd\x05\x5e\x8a\x12\x24\xda\x65\x18\xf9\x4c\xe1\x1a\xc5\x40\xbd\xc7\xd4\x32\xcd\xb1\xe4\x28\x42\x7b\x7a\xce\xc4\xd8\xa6\x78\x2e\x73\x76\x14\x72\x4d\x5d\xdb\x73\x7c\x1e\x22\x44\xe4\xdb\xf9\x1e\xb3\x1a\xf0\x92\xc7\x13\x4d\xf1\x9c\x6f\x55\x2a\xec\x2c\x8f\x5e\xf7\x30\x41\x3e\xd7\x94\x36\xbb\x4e\xf0\xdc\x15\x6e\x6a\x77\x4f\x77\x97\xf5\x47\x52\x1d\x52\x2c\x9c\xa1\xec\x02\x00\xb5\xf6\x2c\x74\x3d\xf7\x94\x26\xaa\x50\xdc\xdc\x4b\xca\xe3\xd9\x95\x6e\x29\x35\x17\xd7\xb1\x6d\x63\x52\x0c\x90\xd9\x50\x75\xc7\x30\xf4\x9b\x57\xff\x02\x66\xff\xaf\x80\x35\x2e\xe9\xa6\x8a\x88\x5a\xe3\x92\xe1\x9b\x36\xd4\x1a\x69\x48\x87\xbc\x08\x90\xa5\xf0\xab\xf9\x58\x0a\xbb\xdf\x53\x72\x1d\x4b\xc4\xb3\xd0\xe4\x52\x80\xba\x69\x0e\xe4\x9a\xb2\x27\xba\x75\x26\xd7\x24\xb8\xf8\xbc\xc5\xc5\x5c\xd3\x2a\x9f\xa2\x88\xd6\x1c\x68\x80\x64\xa1\xb8\x35\x89\x65\x3b\x6f\x91\x48\x6b\x11\x68\xa3\xdc\xc2\x40\x1b\xcf\xc8\x37\x0e\x9f\x01\x70\xe1\x0f\xad\xed\x01\x80\x48\xf5\xb2\xde\xd3\x7a\x26\xf3\x77\x09\x98\xb8\xda\xa7\x7b\xbe\x51\x44\x48\xe5\x0b\x08\xc7\x63\xd7\xad\x27\xee\x01\xc0\x09\xd5\x91\xdb\xb8\xd4\x4d\x97\xc7\xb2\xe7\x47\x3c\x11\x9d\xd2\x8d\x07\xdc\xbb\x5c\xad\x7c\x01\x3c\xfa\xb4\x71\x0f\x00\x37\xd7\xe9\x5b\x02\xe5\xaa\x5b\x48\x6b\xe3\x40\x36\x5d\x77\x6f\x5f\x40\xe8\x39\xdc\xdf\xe1\xa3\x16\x51\xee\xee\x3a\x88\x41\x77\xdd\xf3\x37\xe0\x81\xac\x70\xc7\x1e\x14\xf6\xd2\xf5\x2d\x11\xe4\x4d\x6e\xf5\x5b\x02\xfd\x36\xcb\x05\x36\x8e\x37\xd3\x65\xf4\xb1\xe5\x07\xf3\x4a\xed\x5b\x02\x9d\x03\xd3\xe5\xef\x59\x91\xab\x0e\x91\x59\x9f\x81\x8a\x6c\xb9\x85\xd5\x3f\x13\x73\x84\x6c\xd4\xf8\xc1\x9f\xfb\x5d\x92\x8e\xd8\x23\xa7\xa2\x35\x8f\xf1\xff\xbb\xbe\x4a\xf9\x9f\xb7\xd7\x23\xf7\x9f\xe6\x9f\x3c\xeb\x92\xd1\xbb\xd8\x47\x0f\xde\x3a\xbb\xaf\x88\x47\x5d\xce\xb3\x7e\x7f\x21\xb2\x77\xfc\x06\x0c\x18\xe2\xdf\x9f\x20\xf5\xf3\xa6\x7f\x16\x91\xd0\x72\xbf\x7f\x03\xc0\x4e\x42\x02\x0f\xbe\x29\x4f\x37\x92\x01\x08\x68\xcd\x93\x79\xd6\x4d\xb3\x7e\xfb\x1f\x00\x6b\x9a\xbe\x25\x68\x65\xe4\x6f\x1d\xa1\x32\xd4\xbf\x3d\x8f\x58\x56\xbd\xe7\x6f\x5e\x3e\x1a\x34\xb5\x07\xc0\x58\x93\xdb\x48\x52\x84\x6b\xdf\x9f\x60\xfb\xd3\x45\x3a\x3d\x2b\xa1\x25\x60\x26\xce\x83\x2b\xc6\xd3\x2d\x8f\x35\x13\xe5\xec\x6e\xdf\xfc\xfe\xaf\xfc\xb9\x07\x07\x87\xbd\x4d\xcf\x05\x5e\x0c\x8b\xe5\x3c\x0f\xae\x0a\x4f\x2f\x7e\x97\x88\x7e\xb6\xfe\x6d\x23\x14\x75\xdb\xef\x02\x5b\x4e\xf7\xdc\x28\x8c\x92\x6c\x1e\xe0\x01\x20\x07\xbb\xee\x2f\x00\x4d\x9a\xef\xec\x15\x4d\xc6\xb7\xe3\xf8\xd1\xb3\xe4\xec\xc1\x93\xde\xa9\xc2\x80\x2a\xad\x80\xda\xbf\x00\x48\xaf\xef\x0a\x54\xed\x8c\xe1\xb1\x37\x44\xeb\x7e\x1f\x5b\xd3\xa6\x5c\xdf\x8e\x76\x29\x52\xb5\xf6\x05\xf0\x2a\x6f\x6e\x56\x9a\xf7\xa9\xfd\xef\x63\x19\xfd\x63\xfd\xdb\xff\xf3\xf9\xdb\x5f\xe9\xfa\xf5\xf3\x57\x3d\x03\xff\xdb\x5f\xf5\xfd\xeb\xe7\xaf\x1e\xc1\x4c\xfe\xf6\xd7\x2b\x9d\xb1\x9c\x7f\x67\x9a\xce\x9c\xbc\x62\x61\xcf\xbf\xd0\x73\xea\x01\x79\x01\xc1\x77\xd5\xdf\xfe\x7a\xe5\xf3\xd2\x38\xff\x6a\xe8\xfd\x06\xa4\x07\x04\x46\xd5\x75\x20\x67\x93\x9d\x7f\x10\xbf\x07\xb2\xf8\x15\x7e\x20\x72\x40\xf8\x95\x5c\x97\x1f\xc8\xe6\x57\xa1\xb0\x75\x56\xe0\x15\x06\x05\xe7\xdf\xc4\xbf\xea\x69\x3f\xde\xdb\xe7\x5f\xf4\x31\x08\x9b\xd7\xa6\xf6\x08\xa3\x7d\xa3\xc8\xf8\x0a\x8d\xde\xf3\x2f\x7e\x1b\x7e\xe5\x5f\x21\x1a\x3f\xff\x08\xe5\x15\x90\x06\x24\x8e\xf3\xe9\x7b\xb8\x34\x39\xff\xf8\xdd\xc1\x9e\xaf\x78\x6d\x9e\x7f\x1f\x60\x29\x60\x4f\xc0\xf0\x4d\x12\x44\xdb\x2b\x54\x3d\xcf\xbf\x4d\xb9\xd3\x42\x78\x8b\x38\xff\xe4\x28\x1f\xd8\x00\x16\xd7\x4f\x88\x95\x5e\xe1\x95\xe1\xaf\x17\xe1\x52\xc3\x34\xe3\x15\x4a\x71\xe7\xdf\xe9\xca\x45\xa9\xf5\x02\x14\x98\x3b\xb4\xa0\x5f\xe1\xd7\xe0\xfc\x3b\x7b\x24\x54\x75\x5f\x0f\x8b\x04\x01\x19\x0a\x83\xaf\xf0\xed\x7d\xfe\x45\x65\xe7\xd5\xf3\x0a\xae\xf9\xf9\x17\x28\x3c\x54\x98\xdf\xf1\x16\x3f\xff\x5e\xc0\x7a\xc0\x3e\xc0\x68\xb4\x8e\x03\x3b\x7b\xf6\xfc\xab\x51\xdd\x0c\x50\x0b\x50\x70\xeb\x63\xef\xbe\xc3\xb0\xf8\xfc\x8b\xae\x9d\x55\x7e\xdf\xd1\xb5\x77\x38\xd4\xbd\x03\x5d\xbe\x03\xef\x9d\x7f\xb4\x79\x6e\x8e\x77\x58\xc9\x9e\x7f\xb4\x19\x4a\x2a\xf7\x0e\x65\x1f\x12\x0f\x5e\x9b\xe7\xdf\xfe\xfa\xa4\x11\x5e\x92\x49\xdc\x07\xdd\x35\xa0\xb1\x9d\x23\x11\xa1\xd2\x86\xa0\xd3\xd0\x15\x5d\x08\x68\xd8\x14\x93\x88\xa0\xe4\x38\xda\x4f\x23\x78\x59\x24\xe6\xaf\x9f\x99\x05\x4e\x43\x0d\x86\x28\x7d\xa2\xc8\x94\x46\x3d\x78\x8f\x44\x89\xd2\x55\xe0\x66\xf0\xfa\xf5\x33\x09\xc7\x7b\x72\xdb\xe0\x4f\x94\xbe\x01\x7b\x30\x71\x0d\x22\x7d\x8a\xdc\x32\x78\xff\xfa\x19\x98\x7d\xa5\x11\xea\x7f\x24\xc2\xf5\x5b\x68\x5c\x9c\x9c\x4b\x87\x7b\x0a\x1c\xe0\x24\xa8\x37\x12\x98\x4f\x0a\xda\x0c\xed\x44\x8d\x2a\x82\x0f\xc3\x27\x70\x2a\x0f\x86\x1e\x89\xfa\xeb\x67\x64\xcd\x61\x68\xaf\x91\x40\xb7\x66\x4c\xc1\xbb\xe1\xa1\x48\x6f\xe8\x36\x94\xbb\x20\xa0\x21\x14\x26\xc1\x81\xf9\xc2\x9b\xe1\x11\x83\xea\x16\x74\x19\xba\xc3\x12\x1e\xa8\xd7\x3d\x02\x5d\xdd\x09\x1d\xe4\x93\x75\x1d\x28\x6c\xd7\x8b\xba\xe3\x31\x4b\x22\x94\x87\xab\xa0\xc5\xd0\xd0\x02\x45\xe7\x35\xc1\xcf\x22\x11\xda\xb9\x59\xd0\x65\xe8\xa6\x34\x53\x18\xa1\x71\x48\x6c\x76\x2c\xb5\x87\xc2\x0d\x09\xe6\x4a\x1b\x2b\x42\xa7\x93\x58\xbf\x7e\x30\x1e\x49\x23\xf4\x6c\x49\x7c\x62\x44\x85\xda\xc1\x10\x91\x28\xb8\xce\x55\x79\xcf\x78\xe0\x8e\x71\xab\xf2\x8f\xa7\x3c\x44\x8e\xe3\x56\x1f\x3f\xde\x42\x1f\x78\xfa\x38\x13\x3c\xd9\x8f\xe1\x21\xd7\xc1\x9d\x5e\x1a\x8f\x37\x3f\x62\xb7\x86\xd3\xbd\x44\x9c\xd1\x48\xc4\x79\xab\x06\xeb\x08\x11\x82\x73\x10\xeb\x30\x4d\x1f\xa1\x99\xd0\x30\x0a\x15\xcc\x93\x1b\x02\x4f\x14\x5f\x12\xe0\x40\x8f\x91\xc0\xa8\x24\x74\x05\x4f\xf6\x25\x78\x78\xfb\xc1\xd8\xe3\xe4\x9a\xc1\x60\xc5\xd0\x09\x4b\x33\xbb\xd1\x3c\x80\x17\xc1\xa7\xe1\x20\x5b\xfc\x1c\x9e\xec\x16\x3c\x2e\xdc\x0b\x3f\x0c\x27\x5b\x0d\x8f\x9b\x11\xc3\xcf\x34\x8b\xeb\xc7\x58\xb9\x74\xaa\xaf\x06\xe3\x57\x16\x57\xce\x69\xd6\xf5\x16\x78\x7d\xce\x21\x2d\x8c\x29\x1e\xed\x24\x72\xa8\x87\x31\x61\x6d\x08\x1c\x0c\x8b\x81\x8d\x54\x42\xf8\x47\xa2\x46\x25\xf4\xb0\x7b\x44\x48\xa5\x1a\x0e\x4a\x13\xb1\x0c\x49\x44\xe5\x5a\xa4\xe1\x1e\x86\x2a\xef\x48\x1a\xe7\x10\x66\x98\xb0\x09\x1a\x4e\x3d\x13\x81\x0c\x49\xbc\x03\x19\x59\xd5\x17\xaa\xe3\x7f\x45\x88\x7c\xd2\x0c\xad\x3a\x12\x81\x4f\x30\x74\x4c\xd3\x07\x96\xc0\x70\x67\x03\xd2\xd7\xb7\x57\x31\xc4\x64\x03\x37\x6a\x09\xf7\xc1\x24\x82\x08\xc1\x73\x5d\x5a\x5d\x38\x0f\xd7\xa0\x07\x1e\xf3\xb9\x7c\xd6\x16\xba\x6c\x06\xbf\x75\x78\xe4\x9d\x2a\xe1\x99\x25\xad\x8f\xd0\x01\x6e\x9f\x0e\xd6\x8b\x5e\xee\x60\xed\x92\x78\x43\x74\x67\xe0\xeb\x16\x1c\x75\x6a\x1c\xe6\x24\xcc\xb1\x48\xa0\x6f\x14\xea\x6b\x09\x43\x19\x12\xf5\xd7\x4f\xc1\xdf\x57\xc2\x3a\x85\x44\xfa\xf5\x53\x6a\xa6\xd5\x47\x1b\x7f\x3f\xb2\xbd\xe8\x02\x17\x83\xeb\x57\x21\x3f\x8f\x8b\x65\x3c\x89\xf4\xeb\x07\x45\xe2\x93\xa9\x86\xf6\x5f\x3f\xa1\x13\x10\x99\x21\xe8\x69\x02\x54\x73\x32\xc5\xd0\xfa\xeb\x87\x08\xfb\x27\xd3\x0c\x8d\x7d\xc0\x58\x4e\xf6\x5b\xc7\x04\xd5\x4e\xe0\x3b\x0b\x1e\x4b\x94\xb0\xf6\xcb\xe3\x66\x0f\xe7\x01\x2e\x28\xb4\x99\xdc\xeb\x74\xf6\x2a\xce\x60\x4f\xa6\x18\xda\x7e\xfd\x74\x62\x09\x9e\xdc\x34\x38\xdc\x93\xa1\x08\x7c\xb2\xdb\xf0\xd7\xaf\x9f\x56\xb2\xa0\x6f\x43\x3f\x67\xe8\x82\x2e\x75\x23\xd0\x03\x5e\x28\xf3\xc8\xee\x46\x10\xa5\x28\xb3\x9f\x4c\x37\x74\xc5\x65\x97\x05\x7e\x1b\x1c\x15\xdf\x01\xd5\xfd\x7a\x12\xa0\xcc\x41\xe9\xbe\x05\x87\x96\x6d\xb8\xe0\x3d\xd9\x65\x38\xe5\x0b\xf3\x3a\x96\xca\xc3\x7a\xbc\x6e\x0d\x72\xac\x65\xf8\x99\x3f\xb4\x66\xf3\x18\x5b\xe3\x09\x05\xee\xde\x6e\xc0\xa1\xf1\x4b\xe2\x10\x01\xd8\x7c\x9d\xdc\xcb\xe0\x40\x82\x38\xc6\xcd\x63\x79\xfc\x30\xf8\x2e\x82\x18\x65\xdf\x6d\x27\x11\xe5\xbd\xd9\x96\x3b\xb9\x20\x5a\xcb\x68\x82\x17\xc3\x47\xf4\x86\x39\x58\xee\x24\xe7\xe1\x22\xe4\x7a\x1e\xdb\x73\xb6\x03\x97\x5e\x45\xe5\x5f\xde\x2b\xd0\xeb\x37\x11\x32\x4e\xf6\x23\x78\x60\xb6\x1b\x5f\xe5\x27\xbb\x0c\x8f\x20\x42\xf8\x88\x3e\xd9\x47\xf0\xe8\xe6\x8d\x0f\xe3\x93\x1d\x86\xcf\x80\xdf\x49\x70\xd7\x1f\xec\xc3\x7b\x6a\x36\x5f\xbb\x18\x1e\x6e\x9e\xf0\x65\x7a\xb2\xdf\xf2\x41\xd3\x4e\xad\x6d\x38\xf7\x23\xd1\x80\x4f\xc1\xb7\xe1\xaf\x80\x6b\xfa\x43\x61\x30\x12\x93\x76\x8b\xea\x99\xd5\x70\xea\xa9\x6c\xd7\x8f\x4f\xf5\x87\x0b\x34\xdf\x02\x0f\x83\xe3\xee\x9f\x49\xe0\x8f\xc1\xe1\x34\x48\x93\xf0\xf1\x5e\x08\xca\xa2\xb7\x4b\x95\x78\x09\xc3\x12\x67\x60\xd8\x9b\x47\x70\x14\x49\x8c\x98\xfa\xa0\xce\xf2\xac\x3a\x65\x13\x47\xe4\x72\xf0\x94\x09\xb8\x45\x02\x05\xae\xd0\xd2\x97\x14\x9f\x44\xe5\xdd\xdf\x80\x83\x92\x4f\x22\xd8\x9f\xd8\x8b\x9f\xec\x23\x38\x82\x40\x9c\x34\x16\xc4\x5e\x24\x6e\xe0\x09\xf8\x56\xfd\x61\x8b\x9d\x6e\xec\xd7\x0b\xe6\xc5\x91\x38\x5b\x17\x7d\xd7\xc8\x6d\x83\x31\x35\xe8\x01\xd6\x42\x9d\xc4\x2b\x6a\x51\x2f\xdf\x60\x84\x93\xc0\xa5\x57\xbb\x04\x7f\x1b\x1e\xfa\x16\xe8\xa5\x97\x1d\x1e\xe2\x48\x84\xb3\x3a\x88\x94\xb2\x1f\xf7\x3e\xde\x69\x07\x5e\x81\x2f\xf5\x3e\xf4\x82\x0b\x44\x5d\x35\x6e\x3f\x09\x06\x1b\x96\x08\xd5\xcf\x9c\x0a\xd2\x4d\x37\x38\xb8\x8e\x9b\x9b\xe3\x24\x52\xc0\xc3\xcc\xa1\x8e\xc4\xbe\x3c\x89\x12\xf0\x42\xfd\x69\xaa\x9e\x24\xb5\xdc\xa0\x1a\x4f\xf6\x11\x7c\xd1\xcd\x22\xf8\x32\x3c\x98\x82\x37\x61\xcd\x4e\x76\x19\x2e\x6d\x5e\xda\xcd\x63\x02\xcf\x11\x7e\xf0\x36\x98\x1d\x78\x12\xcc\x4e\x65\x58\x65\xa8\xfb\xe1\x8a\x47\xb7\xe7\xc9\xbd\x0c\x0e\x76\x77\xa8\x75\x9c\xac\xab\x29\xaa\x26\x8c\x11\xea\x28\x90\xc2\x27\x31\x80\x4f\xc1\x5d\x1e\x0f\x82\x84\xa7\xaa\x3c\xba\x48\x9c\x5e\x42\x08\xd5\xd1\x38\x84\x95\xb7\x12\x9c\xc8\x8f\x14\x3b\x48\xec\x03\xce\x54\xd2\xb6\xfa\x1e\x8e\x36\x0a\x7e\xd2\xeb\xe8\x53\x33\x8f\xbe\xc3\x24\x22\x51\x45\x8b\x95\x44\x50\x10\xb9\xd6\x3f\x93\x53\xd5\x58\xbf\x82\xf5\x0f\x9e\x62\x2a\x26\xfb\x56\x2a\x23\x05\xfa\xb1\xc2\x66\x25\x81\x19\xe4\x64\x01\x96\x87\x16\x66\xfb\xe9\xe6\x52\xa9\x63\x79\x86\x16\x11\x3c\xd4\xd9\x05\x51\x76\x12\x31\xa1\x38\x53\x3d\xd9\x65\xf8\x46\x69\x39\x07\x7c\xbb\xd9\x30\x61\x46\xe5\xea\x53\xc7\x6b\xa8\xf8\x8b\x10\xf5\xd8\x65\xd4\xf1\xf2\x7a\x05\x56\x4e\xb7\x67\xfa\xb5\xb6\xe1\x2f\xe0\x74\xe7\x33\x54\x3e\xf0\x5e\xba\xf1\xa0\x5f\x51\xaf\x25\x11\x3c\x27\xbc\x64\x55\x14\x01\x49\xc4\x69\x81\x5e\xae\xf3\xd2\x68\x67\x38\x5c\x2b\xf8\x42\xab\xf3\x02\x93\x9c\x04\xd5\x30\x2a\x94\x75\x49\x7c\xa2\x1a\x26\x79\x66\xde\xc0\x27\x71\xf6\x09\xfc\x82\xea\x77\xc1\x49\xa0\x05\xcd\x68\xa7\x77\xf3\x0c\x59\x7b\xba\x09\x03\x5a\xa7\x38\x06\x27\xd1\x4f\x35\x2c\x15\x9a\x7f\x24\x08\xf3\x3b\x68\xb5\x83\x97\x2b\xa1\xd4\x0f\x3c\x26\x67\x0e\x90\xfe\x49\x04\x09\x8a\x47\x95\x8a\x3a\x3b\x89\xd8\x39\x38\x2d\xaf\x73\x0a\x35\x10\x85\xfb\x50\x73\xd4\x33\x97\xca\x13\xb9\xfa\x06\xcf\xd6\x39\xb7\xe1\xb1\x03\x0b\xce\x49\xea\xf4\xd6\x99\x0b\x86\x75\xb9\xe9\xe7\xf6\xec\xe0\xe1\xf9\x86\xd0\xaf\x44\x56\x25\x81\x42\xf3\x4d\xfd\x22\x01\x2a\x51\x52\x4f\x79\xea\x7f\x79\x1e\x14\x3b\x94\xa0\x89\x95\x08\xa0\x24\x02\xef\xe3\x5a\xab\x12\xb5\x93\x44\x68\xc7\x63\x6f\x78\xb2\xdd\xf0\xf1\xeb\xa7\x60\x95\x7d\x72\x6f\x83\x03\xc7\xe0\x32\xba\xce\xf7\x50\xf7\xa5\x3b\x8b\xdb\x8c\x4a\x70\x46\x12\x28\x9b\x27\x86\xa5\x67\x7b\x55\x84\x41\x39\x4d\xa8\xd3\x7b\x90\x00\x76\xa5\xc4\xbd\x52\x89\xdb\x46\x22\xf8\xe9\x84\x21\xab\x2b\x69\x8b\xaf\xc4\x16\xc7\xf5\xcd\xc9\x2e\xc3\xd1\x60\x0f\xea\xf6\x64\x1f\xc1\x91\xd5\x61\x40\x5e\x57\x82\x5e\x3b\x09\x66\x93\x3d\x4b\xa4\x1d\x12\xa8\xa4\x83\x3a\x57\xe6\xde\xaa\x04\xd4\x29\x15\x2c\x46\xc4\x1a\x12\x6c\x86\x20\x07\xeb\x32\x46\x5d\x81\x51\x4b\x68\x9a\x9c\x9c\x46\x85\x19\xeb\x29\x1e\x7b\x6a\x55\xc3\xab\x54\xe5\xd9\xcb\x44\xa5\x20\x71\x10\x30\x86\x9a\x75\xf5\xa5\x4e\x12\x7e\xbf\x14\x6e\x45\xac\x10\x49\x9c\x03\x57\x59\x2a\x8c\xf7\x48\x54\x1c\xcf\x30\x97\x4b\x97\xd9\x5a\x52\x07\xbf\x98\xb3\x2d\xec\x85\xc7\xee\x52\x39\x28\xb8\x40\x26\x71\xc0\xc4\x55\xaa\xeb\x0d\xc9\x57\xf1\x1b\x7c\x17\x8c\x9c\x2b\x9e\x76\x49\xc4\x55\x59\x32\xe5\x3f\x90\x9a\x55\x9e\x6e\xef\xa2\xa9\xfc\xe8\xfc\xa0\xab\x76\xe0\xcc\xcd\xe3\x39\x08\x05\x9b\x74\xe3\xf7\xa1\xee\x4b\x3b\x01\x47\x9e\x05\xb3\xa7\xba\x2f\xa1\x58\x5c\x35\x16\x8c\x99\x2a\x0e\x01\x49\x48\xd9\x9e\xe2\x62\xc8\x54\xdc\xfe\xa5\x9b\x37\x65\xdd\x59\xbd\xc1\xa7\x5e\xba\x31\x3c\xaf\xf8\x20\x8b\x04\x66\xae\xa5\xd3\x9b\x0a\x27\xb5\xe2\xcb\x2b\xdd\xf8\x59\xaf\xb8\x8c\x22\x71\x28\x50\x77\x7e\x4c\x35\x8b\x7c\xbc\x60\xad\x5b\xd1\x2f\x20\x71\x70\x1d\x1c\xb2\xba\xa7\xe6\x72\x4f\xcd\x25\xa7\x64\x4f\x5d\x04\x5b\x86\x76\x35\x28\xd9\x8a\xf5\x08\x09\xb4\xf6\x59\x42\x48\x40\x12\x67\x83\xc0\xf3\xac\x7e\x9d\x57\xbf\xce\xeb\xc5\x60\xb7\x50\x0e\x6a\x7b\x05\xfe\x5e\xc5\x7b\x09\x09\x44\x18\x6c\xbf\x2d\xfe\x5e\x45\x3e\x5f\x30\xf6\x92\x46\x1f\x89\x19\x60\xc6\xf4\x12\x91\x82\x3d\xdb\x5d\x2a\xf8\x6f\xfb\x72\xdb\xba\xdc\xea\x4d\xab\x6f\x5d\x03\xf8\x4b\x28\x5d\x13\xfc\xf6\x02\xbe\x59\xc0\x0a\x9a\xdb\x62\xe4\x9d\x44\x4c\x59\x05\x81\xec\xc7\x53\xf9\x4c\xc1\xb3\xe0\xc9\x70\x14\xfb\xc1\x67\xfb\x99\xc3\xf0\x19\xbe\xde\x04\x5e\x9a\x32\xf4\x50\x3a\x26\xcd\x6d\xdc\xf4\xf2\x24\x3a\xce\x98\x7b\xc0\x93\xe1\x29\x7a\x4f\x54\xef\x66\x3a\xb0\x41\x07\xa6\xbb\x06\xdb\xf6\x64\x3f\x86\x3f\xc0\x2b\xf0\xad\x6a\xe2\x25\x5e\x42\xd4\xf2\x69\x68\xa7\x91\xf8\x1c\x70\xe0\x89\x36\x84\x9d\x4e\x22\xf0\x84\x3b\x53\x19\x53\x83\x07\x5f\xc6\xe8\x7f\x26\xb1\xda\x68\xdc\xdb\x27\xc1\xcc\x8d\x2c\x78\x36\xbc\x00\xa7\xaf\xcd\xad\x37\x68\x68\x8e\x62\x1b\xdd\xf5\x74\xd5\x33\x6f\xc1\x3f\x86\x33\xe6\x49\xfd\x1d\x5c\x7a\x12\xf8\xb7\x8e\xb3\xd2\xc6\x18\x1a\x45\xd8\x88\x14\xe2\x51\x34\x08\x40\x12\xe7\x42\x21\xc0\x40\x1b\xcb\x53\xb4\xa8\x1d\x0f\xf5\x6d\x2c\xf7\x12\x9f\x4e\x21\xe7\x3e\x39\x4f\x74\xe8\x2c\x9e\xe2\x43\xf0\x8f\xe1\x54\x93\xa8\xfe\xc5\xfd\x70\x12\x61\x08\xd0\x3a\x93\xf0\x1e\xaa\xfe\x8d\x2f\x82\xda\xe9\xe5\x67\xa9\x9e\x0f\x6a\x27\xf8\x8d\x6b\x43\xbc\xac\x66\x13\x0c\x18\x68\x6d\x3c\x4b\xf5\x3f\x78\xba\xc3\x9a\xb4\x8d\x67\x6b\x12\xb0\xfd\x9b\xd8\xf0\xb6\x99\xb4\xc4\x33\xe1\x7e\x0f\x0f\x58\x6d\x26\xf5\x5f\xcc\xe0\x52\x63\x3f\xb7\x99\xa1\x93\x4f\x22\xea\x27\x72\x45\x9b\x08\x2b\x23\x71\xff\xfa\xa9\xb8\x77\x6a\xb0\x86\x49\x2c\x82\xe8\x53\x4d\xd1\x9a\xcc\xc2\x7e\x0e\x85\xc1\x93\xe5\x94\x9e\x44\x3d\xd5\x54\x15\xdf\x2f\x83\xdf\x14\x8f\xd1\xce\xa6\x59\x9b\xb1\xb7\x2a\xbe\x04\xda\xec\xee\x4c\xa7\x33\xea\x7b\x77\xe5\x1d\x14\x80\x7d\xf1\xc9\x7e\x0c\x67\xad\x26\x73\x20\x8a\xaf\x41\xf1\xa5\x1b\xf3\xd9\x36\x75\x7d\x9e\x44\x3b\xd5\x4f\xa6\x60\x4e\x4d\x4d\xf0\x8a\xee\x12\xd6\x4a\x27\xcb\x95\xd2\x60\xe5\x56\x9c\x8a\x9d\xdc\xcb\xe0\x37\xa6\x3a\xaa\x66\xbb\x78\xbc\x94\x1b\xac\x9a\x36\x97\x67\x1e\x75\xd9\x89\xcb\xa6\x36\x17\xd8\xf4\x24\x02\x0f\x62\x4c\xdc\xe6\xf6\xdc\x84\x1b\xab\xa4\x10\x37\x6d\xbe\x90\x0a\x35\x82\xbd\xd7\x3b\x53\x5c\x9c\xdd\x86\xb9\x49\xe5\x61\xda\x08\x8d\x4c\x22\x66\x3e\x4c\x8e\x3e\x8d\x10\xa6\x24\xe2\x61\xdd\xe2\x61\xdd\xd6\xcd\x03\xb7\xad\x1b\x74\xda\xc3\xae\xbe\x2d\xef\x33\xe9\x4e\xf4\xc1\xe4\x10\x06\x93\xc4\x06\x4e\x79\xbd\x70\xa5\xa4\x9c\xee\xce\x79\x58\x19\x6a\xb5\x29\x2e\x63\x1f\x49\x70\xf7\x27\xab\x3f\x6c\xc0\x55\x0d\xaf\xea\x0f\xc8\x68\x75\xe1\xd9\x85\x7d\x60\x69\x95\xfe\x74\x9d\xb7\xd5\xc1\xd7\xf8\x46\x6f\xcb\xd8\x42\xfe\x1d\xfa\x50\x79\xdd\xb8\x4d\x8e\x03\x0a\xe6\xd2\x6d\x49\xe2\x75\x12\x81\x17\x08\x99\xde\xd6\x82\xbc\x6d\x10\x55\x77\xc1\x1b\x45\x5b\x6b\xa9\xfe\x75\xd6\x41\xf1\xce\x1a\x81\x7b\x48\xdc\x54\x93\x05\xff\x18\xfe\x00\x8f\xcd\x43\x6c\x1c\x12\x1c\x67\x55\xbf\x79\xaf\x36\x02\xd7\x9c\xf2\x4c\xf3\x86\x7c\x39\x09\x86\xd5\xa9\xe7\xe5\xee\xbf\xd4\x7d\xb0\xe0\x7a\x0d\x2d\xef\x0b\x13\x2c\x42\x92\x36\x22\x45\x90\x98\xa7\xfb\xa0\xf0\x25\xee\x4e\x83\xf8\x3b\xdd\xa1\xfa\xcf\x54\x35\x1f\xa8\xa3\x91\x28\xff\xf1\x2c\xe0\xdb\xe6\x1e\xe0\x6a\xa2\x1b\x90\xd8\xa7\x7a\x6d\xaa\x8f\x5b\x8d\xe8\x02\xa7\x38\xbd\x7c\x74\xd3\xac\x87\x9b\x66\xe4\x26\x78\x37\x1c\x4b\x2e\x6e\x88\xf5\xe8\x48\xc8\x3d\x7e\x27\x9c\x5b\xc3\xd7\x3a\x89\x12\x5e\xe2\x3a\x60\x15\x97\x53\x72\xf9\x37\x6d\x5b\x82\xaf\x86\xef\xe5\xbb\x20\x71\x6d\x38\x10\x26\x41\xf5\x8c\x76\xfb\xa2\xdc\x8d\x07\x2e\x4c\xd0\xb6\xa7\x16\x51\x2a\x8f\x7d\x32\xdc\x2d\x1e\xc5\x49\x04\xee\x25\xf2\x46\xdb\xd3\xdd\xc4\x1f\x45\x27\x18\x46\xc3\x2d\x1f\x89\x78\x6f\x13\xe8\xb2\x99\x2e\x6b\xd0\x65\xb5\xb0\x86\x26\xcb\x9a\xd5\x26\xeb\x25\xb8\xab\xd9\xaa\x06\xb4\xb9\x25\x30\x3d\x89\xd0\x45\xeb\xea\xfe\xe3\xee\x6b\x96\x71\x98\xdb\xc7\xcd\xd6\x3f\x89\x60\xf5\x81\xf0\xfa\xc8\x74\xff\x24\x82\xfa\x08\x45\xac\xc8\x56\xc3\x43\xdf\xa5\xde\x94\xaf\xec\xcd\x93\x08\xaf\x34\x71\xd2\xfb\x68\x9c\xdc\x93\x08\x1d\x57\xbc\x9d\x75\x5f\xff\x9d\xeb\x3f\x89\x75\xdc\xc7\xe0\x26\x3e\x89\xd7\xaf\x9f\x0a\x73\xb7\x8f\xc9\x0e\x3f\x7b\x23\x1c\x54\xd5\x24\xb8\x7b\x83\x35\x4b\x41\x61\xa2\x8f\xe9\x66\xa7\x9a\xad\x74\x67\xba\xfa\x70\x49\x99\xc4\x81\xee\x63\xbb\x1e\x9d\x44\x82\xab\xf4\xf1\xe2\xf1\xd5\x91\x72\xdf\xa5\x8f\xf2\x67\x62\xab\x0f\x54\x6f\x22\x81\xf5\x59\x63\xd4\xa8\xd5\x44\x82\xc5\x0c\x34\xdf\xc7\x7b\xa8\xbb\xc1\x39\xaf\x88\x7c\xfa\x78\x7b\x6d\xde\x1c\x48\xa2\x78\x9c\xac\x8b\x6b\x74\x9d\x6a\xc4\x47\x3f\x09\x66\x23\xc8\x8c\x0e\x47\x3c\x12\xf1\x54\x2c\xc4\xb8\xee\xf3\x62\x6f\x9d\x44\x70\xae\x46\xe0\xb7\x3e\x2f\xae\x8b\x3e\x75\x8d\xe0\xbf\xb0\x4f\x3d\xc3\x4e\x22\x8e\x18\xd1\xda\xce\xc9\xa1\x5d\x04\xe0\x77\x19\xc1\xd1\xea\x33\x81\xc7\x4e\x22\x62\x9b\xe1\x63\xb8\x4f\x5d\x0b\x27\x71\x28\x81\xa6\x6a\x0a\x78\xe9\x24\xb0\x18\x4b\x34\x5b\xb5\x68\xb3\xe2\x63\x1b\xff\x9b\x27\xfb\x36\x9c\xf2\x99\x7a\x9a\xb6\xe2\x0c\x05\xf9\xda\x93\xc0\xd0\x8a\x27\x11\xc4\x1c\x71\x87\xfb\xec\x53\xa3\xc5\xae\x7a\xdc\x86\x6f\x95\x0f\x5f\xb1\x95\x97\x4f\x37\x5d\xd2\xa1\x4b\x2a\x4a\x20\x32\xed\x20\xd1\x08\x32\x50\x05\xdf\x86\x63\xf5\xc6\xce\x9a\x92\x8b\x9d\x44\x3a\xd5\xc4\x5b\xa0\x63\xcd\x4a\x22\x9c\x8d\xe3\x70\xb1\x63\xc3\x4a\x62\x44\x71\x5a\x15\x3b\xeb\x24\xa2\x96\x5e\x04\x1e\x06\xaf\x00\xc7\xa9\x98\x92\xfb\x9e\xc4\x9b\xca\x19\xe9\x9a\x6a\x34\xa8\x96\xda\x27\xf3\xab\xdb\xef\x24\xc2\x4d\x35\xbe\xfd\x4e\xb6\x18\x1e\x87\x62\x34\x55\xe3\xed\x81\xcf\x52\x29\x6b\xf4\xb9\xb6\x7a\x13\x8c\xd5\x8a\xe7\xd0\x3e\x25\x3d\x3e\x89\x70\xe1\xad\x33\x0a\xc7\x8b\xc4\x21\xe4\x42\x99\xf5\xe4\xb6\x6a\x0f\x0e\x57\x85\xc4\xe8\xf3\x3d\xb4\x09\xde\x44\xa5\x24\xcc\x63\x9f\x7a\x70\x9e\x44\xa7\xf6\x2e\xb8\x56\xfb\xcd\x59\x20\xa4\x7b\x37\xe7\xeb\x24\x22\x54\xd0\xa5\x75\xfa\x78\xce\x3e\xb8\xe0\xe5\xbd\xd3\x4d\x82\x75\x48\xb0\x3a\xc0\x77\xf3\xd1\x51\x9b\x98\x58\x0f\x22\x97\x75\x02\xd1\x93\x08\x34\x4b\xcc\xe2\xbe\xa4\x69\x72\x12\x11\x5e\x04\xa7\xeb\x7d\x65\xc3\xa5\x4f\x8a\xf7\x9c\xbe\xb2\xf6\xc7\xca\x18\x90\xc0\x54\xee\x4b\xc2\x81\xae\xc8\xc6\x13\x51\x65\x5f\xd2\xcc\xea\x8a\xb3\x5b\xf0\xad\xd3\x57\x73\x3d\xe1\xf8\xba\x12\x90\xb5\x63\xcf\x48\xe2\x8d\x29\x64\x6c\xa8\x35\x84\xd0\x08\xcb\x59\x11\x30\x76\xfc\x68\x91\x88\x25\xbc\x83\x2d\xd8\x97\xb7\x25\x7e\x8d\x2a\xf2\xc5\x4e\x60\x42\x12\x74\x86\xcd\x4d\x2c\x3e\x12\xd1\x19\x36\xc2\xda\xae\x65\x53\x4b\x65\x48\x46\xae\x44\x69\xab\xc4\x9c\xea\x4b\xc2\xce\x93\x60\xe6\x07\x7d\x79\x0b\xd9\xac\xb0\xff\xac\x53\x13\xfc\x11\x2a\x26\xea\x51\x4a\xa1\x13\xfa\xe9\xeb\xf1\x90\x1e\x0d\x09\xd4\x4d\x94\x1b\x12\x0b\x78\xec\xb3\x2d\x25\xbc\x4e\x38\x91\x94\x6e\xea\x27\x5e\x07\x89\xf0\x2d\xc9\xfb\xb9\x13\x61\x83\x44\xec\x27\x5c\xf4\xf4\x2d\x3d\x9f\x93\xc0\x96\x11\x24\xb7\xb3\x2e\xca\x9d\xd1\xb5\x27\x3a\x57\x27\x56\x03\x09\xc1\xa9\xdf\x48\x74\x0b\x89\x12\xaa\xa5\xef\x36\xd4\x6e\xc3\xc3\x80\xe6\x01\x27\xe4\x24\xc2\xdb\x3c\x3a\x22\x27\xfb\x36\x3c\x9c\xc7\x13\xab\xa8\xef\xce\x33\xeb\x24\xe2\xfe\xe7\x8d\xd8\xf7\xd4\x1a\xee\x70\x92\xd5\xc2\xb4\xec\xd3\xb7\x28\xee\x8e\xb7\xe6\x7b\xa0\x48\xd8\xf1\xd6\x4c\x62\x9e\xe2\x45\x60\x51\x1d\x7b\x1d\xe4\xd0\x6e\x4d\xce\xf2\xa4\xc5\x6b\xaa\x11\x24\xab\x6f\x91\xed\x1d\x69\x68\x4a\x48\x52\x3a\x52\x4e\x12\x9f\x28\x2e\x30\xaf\x82\x93\xb8\x0f\x58\x33\xf9\xf6\x4a\xe1\x15\xb1\x08\x83\x6c\x63\x8a\x1d\x98\xa2\x69\x23\x6c\x3d\xc9\x4e\x02\xc3\xd5\x61\xf8\x30\x3c\x46\xa4\xfd\xf1\xf6\x7a\xbc\xb5\x1e\x93\x21\x3d\xba\x33\x71\xdc\xd8\x6e\xd0\x8a\x39\x53\x5d\x9c\xa9\x7a\x69\x39\x1e\x57\x83\x13\x81\x09\x67\x61\x58\x6d\x65\xa0\xb6\xd2\x08\x62\x77\x72\x8f\xc0\x41\x39\x24\xb4\x31\xc6\xc8\x88\x57\x4e\x22\xfc\x89\xe2\x6c\x74\x8c\x0a\xce\x3d\x89\xd3\x1b\xe4\xc0\x27\xd7\x0d\x0e\xbe\x2b\x6e\x42\xc7\xe8\x4c\xfc\x49\xc4\x0b\x02\x17\x5b\x27\xab\x66\xe3\x2a\x6d\xf8\x3b\x1c\xd6\x19\x39\x89\xa0\x03\x90\x42\x0c\xeb\x8c\x9c\x44\xa8\x72\xcf\xfc\x67\xe2\x6a\x58\xc6\x38\x90\x31\x36\x24\xee\x03\x17\x4c\x24\x42\x24\xd9\x35\x34\x69\x56\x0e\x34\x2b\x5b\x56\x57\xf5\xa0\x1f\x08\x13\x1b\x12\xee\x61\xcd\x91\x93\x08\x7c\x4c\x1c\xc7\x31\xf4\x9e\x3f\x89\x40\x17\x38\xb8\x1c\x63\x2d\xb5\x8a\x4b\xef\x4e\x1c\x9a\x93\xed\x86\x63\x57\xdb\x29\xff\x1a\x82\xa3\xa8\x3d\x8a\xa6\x42\x42\xc4\x81\x10\x31\x25\x9e\x9a\x63\xbc\xbc\x60\x81\xf5\x1a\x02\x93\x81\xeb\x15\x12\x0f\xc5\xa9\x46\xb7\xe1\x80\xa2\x4c\xc9\xc3\xfa\x70\xd7\x9e\x44\x98\x2a\x96\xa0\x00\xc7\x94\x64\xfd\x24\x12\x76\xb8\x97\xe0\xd3\xf0\x05\x3c\xea\x9f\x69\x09\x9e\x08\x6d\x48\x00\x91\x31\xb3\x86\x35\x33\x61\x60\x61\x2a\x9f\xec\xc7\xf0\x07\x2b\x5e\xda\x2d\xb0\x41\x4e\x22\x53\xbe\x03\xd7\x70\x67\x89\xe1\xe2\x09\x75\xcc\x02\xc5\x71\x12\x18\x03\x67\xaa\x11\x3f\x7f\x4c\xf8\xf9\x09\x27\x7f\x27\x7b\x1b\xce\xb0\x0a\xdd\x69\x9c\xa2\x93\x60\xda\x42\x72\x3f\x10\x36\x92\xc0\x2e\xb8\xd2\xae\xb4\x3b\x4e\xa2\x62\x51\x7c\x09\xfe\x36\x9c\x69\x9e\xb4\x3b\x5d\xcf\x24\xe6\x7d\x51\xf9\xc9\x6d\x3e\xa0\xd7\x92\xc2\x79\x0f\x73\x8f\x06\x94\x59\x43\xcd\x78\xc0\x33\x22\x81\xdd\x72\x5c\x65\xc3\x04\xd6\x10\x81\x55\xaf\xd1\x05\x9f\x86\xaf\xa8\x46\xe0\xad\xde\x2f\xae\x32\xd4\x91\xc6\x7c\x6d\x55\xff\x22\xca\x15\xd2\xb9\x01\x8f\x89\x04\xf6\xc2\x20\x93\xf9\xe1\x8a\x38\x89\x46\x79\xc1\xbd\x58\x1f\x3c\x03\x85\x4b\x9a\x93\x5d\xaa\x1f\x7f\x40\xd5\xb3\xf6\x08\xc9\xcc\x87\x18\xfa\x2d\x51\xcf\xc3\xd5\x77\x12\xa1\xd4\xc7\xe4\xaf\x9b\x2b\xe2\x24\x98\x4c\x8e\x16\xbc\x2a\x12\xc1\x72\xeb\x1c\x21\xdc\x3f\x91\x08\xeb\x06\xfc\x54\x8f\x95\xd5\xfd\x95\xcf\x6a\xb6\x1a\x94\xd4\xc9\x6d\x83\xe3\x55\x81\xde\xf2\x58\x59\x6b\xb8\xc2\xf6\xa3\xa1\x47\x34\xcc\xca\x1a\x62\x65\x55\x3c\x3c\x0f\xfc\x98\x91\x78\xe8\x0d\xd5\x14\xde\x03\x27\xc1\xa4\xb1\xd5\x56\x71\xf5\x58\xe8\x54\x1e\x39\x63\x15\xa1\xa9\x15\xe1\x8a\x5a\x53\xe7\xdb\x54\x2f\x1b\xa1\x91\x90\x11\x0d\x9c\xd8\x92\x78\x87\x9b\x3e\x7a\xe3\x0d\x4b\xb4\xf7\x94\x10\xbf\x8c\x25\x15\xf5\x81\x47\xd5\x03\x67\x8e\xa5\x48\x7e\x12\x41\x25\xd7\x64\xf8\x32\x3c\xd0\x51\xcd\xcc\xc2\xd2\x12\xae\x08\x52\xd0\xf0\x22\x38\xf0\xbb\x46\x82\x66\x0b\xd5\xbc\x3d\xf5\xf8\x0c\xab\x5c\xf3\x83\x50\x9d\x24\xf2\xaf\x9f\xd6\xd9\x80\xcb\x58\x6a\x09\x4b\x35\x50\xfb\xfa\x08\x1b\x11\xb7\xb3\xf5\xa0\x2d\x06\x41\xc4\x48\x04\xc9\x5e\xbb\xe0\x90\x28\x83\xe8\x5f\x07\x1e\xd5\xec\x04\x2d\x72\x12\x0c\x36\xf8\xd5\x27\xfb\x36\x3c\x1c\x86\x07\x93\x75\x6c\x6c\x88\x22\x11\x9d\xe4\x4e\xdc\x59\x53\xb3\x33\x5e\x19\x3b\xe0\xa2\x99\xdf\x65\x84\xb6\x69\x90\x45\x63\x77\x2d\x2b\x71\x4c\x5a\x9f\x34\xd9\x79\x19\x0f\xa2\x92\xdc\x13\x86\xe6\xb0\x3a\xd9\xd8\x5a\x3f\xe4\x1c\x27\x3b\x0c\x9f\xe1\xbc\x51\x60\xdd\xc3\xc4\xed\x68\x61\xc4\x77\x72\x42\x7f\x1b\x27\x17\x43\xf3\x8b\x58\x92\xc4\xa0\xf6\xd8\xab\x56\x3e\x1b\x52\x3e\x9b\x83\xdd\xb4\xa7\xab\x9f\xd0\x57\x88\xc9\xc6\x96\x99\xc1\x49\x64\xe0\xf4\x7e\x6b\xb9\xb1\xf9\x4d\x29\xdc\x7c\x7d\xc6\x16\x7f\x72\xe0\x94\x3f\x25\xa4\xbd\x03\x27\x97\x24\x6e\xe0\x0c\x4b\x14\xd9\x80\x22\x4b\x09\x65\xd7\xb1\xdf\xee\xcf\x5b\xfd\xa9\xb4\xfb\x5e\x2e\x7f\x36\x42\x1b\x5a\xd7\x8f\xab\xc7\x45\xf7\x84\x2d\x3a\xf6\xc7\xfb\xe3\x43\xb4\xc0\xf0\x85\xf3\x19\x5b\x24\xfe\xc0\x17\x5a\x53\xa4\x93\x71\x41\xd8\x9d\x44\xdc\x79\x48\x4b\xa6\x35\x83\x4f\x82\xd1\xe2\x76\x7c\xdc\x8c\x76\xa2\xad\xd6\x26\x31\x2d\x46\x66\x69\x4f\x82\xbb\x04\x97\xeb\x43\xf8\xe6\x24\x02\xcd\xe1\x7f\x73\xa2\x8d\x4b\x22\xae\x4e\xc5\x7e\xc3\x5f\x0f\x09\xa2\xb3\xe3\x21\xde\x0c\xb8\x09\x03\xee\x1e\xf0\xb6\x27\xf2\x3b\x12\x85\x38\x68\xf7\x9f\xa9\xac\x39\x1a\x0f\xd6\x09\x07\xef\xae\x8a\xf6\x69\xf9\xdf\x44\xfe\xd7\x14\xf1\x77\xe8\x19\x31\xe5\xf3\x6c\xc0\xca\x9e\x56\x14\x9b\x28\x8a\x9d\xd6\x3b\xf0\xa5\xd9\xe8\x38\x8a\x26\xa4\xc3\xe8\xdc\x64\x27\x11\x73\xad\x18\xb7\x08\x0f\x49\x7c\xa2\x38\x73\xa1\xc7\xc8\x49\xb4\xf0\xaa\x4a\x67\x86\xa7\x5a\xa7\x08\x77\xb0\x73\x8c\xa9\xa9\x1b\xec\x2b\x84\x32\x27\xdb\x0c\x67\xea\xbe\xe5\x5f\x86\xc7\x45\xd9\x09\x01\x30\x86\x3b\x3f\x88\x8e\x89\x10\xe7\x64\xb5\x64\xa1\xdc\x79\xe0\xec\xa0\xe1\x6e\x8e\xad\xf2\x4c\xce\x74\xfd\x53\xf5\x13\x9d\xc2\xdc\xcb\x89\x0b\x9a\x03\xa7\x9f\xa2\x59\x27\x34\xeb\x68\xd5\x60\x57\xb3\x71\xc4\x40\xd8\x16\x6b\x2f\x9f\x04\xd3\x40\x9c\x81\xa1\x67\xf8\x49\xc4\x05\x3a\x09\x7b\x30\xf6\x10\x3c\x02\xa3\xdc\x55\x81\x8a\xc6\x76\x37\xb7\xba\x89\x6f\xfb\xf1\x76\xfd\xd0\x0b\x9d\x17\xd2\x1c\x1f\x6f\x91\x0f\x34\x34\x17\xf4\x1c\xa2\x0b\x26\x46\x3b\x5d\xe1\x96\xc7\x67\xab\x9a\x8f\x66\x47\x1b\xfd\xf1\x2a\x3e\x5a\x45\xa2\x5d\x8d\xc7\xab\x15\x3a\xbc\x5d\xa1\x64\xe7\x05\x16\x3f\x89\x78\x93\x4c\x26\x6d\x4a\xe1\xff\x24\x58\x5c\xc2\x17\xcc\xc6\x23\xf1\x24\x98\x35\x42\x2b\x4c\x99\x8a\x9d\xc4\x3c\xd5\x13\xa3\x67\xb6\xf9\x36\x38\x70\x0f\xfc\xa7\x39\x3b\x14\xf4\x49\x04\x92\x51\xf8\xf6\x29\x13\xb2\x93\x68\x94\x1f\x82\x7f\x0c\x7f\xc2\x94\x8f\xde\x0c\x21\x93\x89\xeb\xc6\x01\x7f\x68\x9a\x1f\x38\xcd\x0f\x1c\x84\x0a\x98\xd3\xa3\x9a\xb0\xb7\x10\xb2\xcc\x29\xd5\xf4\x89\x9b\x81\x7e\x73\x0c\xcd\x82\x3b\x89\x19\x0e\x7a\x29\x2d\x4b\x8d\x93\xa0\xf3\xac\xa0\xd5\xc6\x26\x6a\x63\xfd\xd6\x54\x4a\x5d\xf8\x24\xe2\xfe\xe0\x9e\x98\xf3\x23\x8c\x37\x43\x6b\xc8\x18\x69\x7e\xdc\x17\xf9\xaf\x9a\x5a\xa9\x8f\xc7\x4a\xa8\x6a\xf4\x5b\xe7\x14\x5a\x3e\x89\x40\xcb\x30\x70\xe6\xf4\x3e\x98\xda\x07\xa3\x09\xee\xde\x3c\xea\x8d\x62\x5c\x4b\x8b\x78\xca\x70\x7d\x4c\x85\x2d\xbe\xb5\x41\x56\x44\x56\xbd\x8b\xc2\x8f\x8b\x51\x73\x12\x61\x88\x9b\xd8\x7e\x98\xac\x93\x08\x06\x8e\xe2\x69\x5a\x96\x3a\x91\xa5\xf6\x5b\xa1\xfd\x93\x0e\xd5\x4a\x78\xa4\x43\xe7\x7d\x9a\x6e\x9c\xa2\x1b\xc7\x54\x80\xef\xa2\x05\x5c\x85\x6d\xe9\x70\xee\x05\xea\xf6\x24\xa8\x47\x21\xd5\x8b\xf6\xdf\x2a\xa1\xde\xee\xe0\xe4\xc5\x83\x2d\x0a\x20\xaf\x98\xfb\x65\xbb\x1a\x75\x47\xa1\xce\xc5\x1e\x3a\x09\xaa\xa1\x97\x55\xbb\x78\x45\x40\x47\x47\xff\x5b\x0d\x0a\xff\x24\x46\x80\x89\xe9\xec\xbb\x61\xc5\xdd\xe0\x18\x57\xe6\x29\x4e\x78\x8a\xa7\x2f\xb4\x29\x1a\x68\x12\x6a\x21\xa5\xa9\x48\xfb\x46\xea\x88\x77\x7b\x52\x88\x68\xd1\x46\x27\x11\x7d\x51\xf4\x74\xe9\x09\x9c\x04\x11\x1f\x15\xda\xbd\x7b\x44\x04\x5f\x4b\x53\xe1\xc1\x87\x6b\x1f\x0a\x73\x04\x52\xc7\x67\x3d\x09\x22\xbc\x2a\xf2\xf8\xd2\xf6\x5b\x4b\x31\x84\x15\xaf\x7c\xb9\xfe\x90\xee\xa6\x4b\x71\x74\x4d\xf3\x9e\xc4\xd9\xc5\x49\xe1\xaf\x37\x2f\xf3\x93\x78\x02\x4c\xab\xdb\xbb\x29\xdc\xbf\x75\xd4\x3c\xe7\xda\x5e\xbe\x90\xf4\xa6\xa4\x10\x44\x4b\x72\xa7\x89\xc5\x57\x4a\x88\xc7\x4e\xf6\x6d\xb8\x3a\xa3\xf2\xae\xfe\x45\xf5\xc4\xaa\x5b\x52\x41\x3e\x89\x15\x60\xd5\x22\x1c\x04\xab\xb4\x63\x52\x3b\x97\x74\x4b\x4f\x02\x9f\x14\x8a\x64\xfe\xf2\xba\xbe\x14\x00\x95\xb8\x2d\xeb\xed\xce\x04\xb3\xa1\x67\xa2\xbd\xad\xb7\x77\xb6\x38\xef\xf0\x6d\xe7\x7a\x2f\x9d\x90\xb7\x03\xdf\xab\x1a\x2f\x14\xa1\x69\x12\xe6\x51\x73\xc9\x66\xee\x24\xf0\xfe\xa2\x48\xef\x1f\xd7\x1f\xef\x4f\xdc\x52\x47\x4e\xe7\x92\x68\x2d\x28\xe4\xce\xf5\x78\x67\x63\x75\x96\xbf\xa1\xb5\x41\x88\xdb\x9e\x64\x8a\x63\x30\x33\xd6\x7d\xcb\x8f\xcd\x37\x52\xf3\x23\xb8\xbc\xc6\xdc\x8e\x5c\xec\xf2\x0b\xaf\x36\xed\xbf\xd9\x0f\xb6\xf2\x3f\x89\xab\x2d\x9d\xeb\x93\xc0\xd3\x8d\x83\xec\xea\xbc\xed\xa2\x20\xcd\xdf\x28\xb9\x6f\xc3\x15\x02\xdf\x11\x69\xb3\xe0\x90\xa0\x53\xc1\x41\x65\xbd\x7d\x12\xc0\xa7\xc3\xb5\xbe\x0d\x8f\x15\x73\xe8\x53\xcd\xf4\xae\x9a\x69\x05\x3a\x95\xc4\xec\x24\x14\xa7\xd4\x51\x40\xbb\xe1\x84\xf6\xfa\x86\x9a\x64\xd7\xee\xee\x98\xa2\x8e\x40\x08\x0e\xdc\xa8\xec\xe4\x4b\x93\x37\x84\xeb\x76\x08\xc9\x7a\x51\x18\x47\x3d\x2f\x4e\x02\x17\x99\xd9\x01\xff\xb6\xe1\x11\xba\xe7\x1b\xf8\xef\x63\x30\xa1\x82\x14\xc5\x69\x1b\x1e\x66\x59\xbd\x38\x74\x99\xa8\x10\x24\xe8\x29\x3b\x44\xef\xf6\x24\x6c\x62\x15\x15\x87\x2b\xdb\x06\x47\x80\x36\x87\xe7\x1a\x9a\x82\x17\x61\x07\x15\xca\xe8\x25\x54\x87\x1e\x64\xba\x1c\xe2\xe8\x25\x9c\x86\xff\xa8\xd3\xa8\x83\x52\x69\xa1\xe2\x81\x9c\xb2\x03\xaa\x89\xf7\x3c\xf7\x9b\x48\x5f\x8a\x7e\xf9\x5e\xcd\x60\xe2\x29\x39\xec\x91\x6a\xff\x68\x7e\x15\x6e\x4a\x66\x39\x27\x81\x67\xa3\x46\x3c\x09\x09\x9d\xec\x96\xa5\x16\x47\xdc\x61\xbd\x4f\x82\xf8\x39\x8e\x10\x33\x00\xc7\x7a\x8d\xaa\xf8\x1e\xb2\xe0\x7b\x60\x2e\x8c\xf6\x0d\x83\xb1\x01\x4f\xc5\xd9\x21\x50\xc0\x92\x06\xfc\x49\x84\x11\x5c\x12\x34\x1b\x1a\x7e\x06\x08\xf8\xb1\xa5\xe4\xf5\xb0\x63\x3a\x3a\x12\x0f\x2e\xbe\x48\x0c\x2c\x26\x55\x7c\xbb\x78\x5c\x19\x43\xc1\x1a\x44\x77\x3f\x28\xe6\x4a\xb1\xe4\xf1\x33\xf8\xe1\x19\xdc\xa7\x62\x17\x88\xd4\x3a\x89\x15\xe0\x5b\xe0\x6d\xf0\xd9\x75\xf3\x76\xe9\xb7\xc1\x9f\x28\x3d\x15\xc1\x42\x3d\x09\xb5\xed\xae\x08\x4b\x7b\x8e\x6a\xf0\xb9\x5c\x52\xcb\x2e\xde\x0d\xa7\x2b\x8e\x25\xc1\x8c\x13\xf1\xae\x75\x05\x7b\xe0\x18\x3d\x04\x92\xeb\xc3\x61\x23\x96\xa1\xc1\xdf\x56\x2c\x88\xa5\x7e\xbc\x34\x18\xc5\x81\x10\x34\xb4\xc1\xc7\xed\x80\x10\x8f\xa0\x21\x12\x95\x14\xef\xd9\x6f\xd7\x11\xba\xe1\x0a\x17\xb3\x45\xdd\x3f\x3b\x10\xae\xe3\x7f\x3c\xda\x52\xfb\x89\x0d\x7b\x7f\x83\x3e\x44\x9f\x49\x62\x00\x7a\x5d\xc5\xdf\xf6\xef\x6f\xf2\xab\x71\x39\x38\x04\x76\xe6\x4a\xc6\xef\xe4\x50\xed\x00\x7e\xd7\x89\x7f\xa5\xab\xe5\xef\xef\x7e\xd7\x59\x31\x62\xfc\xdd\x97\xf6\xbb\xce\x88\x9e\x7c\xdf\x5d\x7e\x7e\xd2\xc2\x64\x91\x24\x18\xbe\xc9\xd9\x58\xdb\xf0\x27\x95\xec\xf0\x87\xed\xc7\xaf\xc7\x4a\x29\x39\x71\xfa\xf7\x75\xc7\x17\x34\x98\x92\xf8\x95\xcb\xff\x4d\x7d\xe4\x64\xfe\x75\xfd\xfd\x6f\xff\xe7\xff\xb5\xfe\xfe\x7f\xaf\x7f\xfd\xfc\xbc\xfe\xf3\x1f\xff\xf8\xfc\xdb\x7f\xbc\xff\xe5\xf5\x1f\x3f\xff\xc7\x81\xfe\xbc\x3f\xcf\xbf\xfc\xdb\xe7\x1f\x9f\xff\xf7\xdf\xff\xf3\x1f\xaf\xcf\xcf\xdf\xff\xfd\xef\xe7\x57\xf1\xf7\xff\x05\x00\x00\xff\xff\x9d\x99\xe5\xcd\xd0\x44\x03\x00"); -func _cda ()(*asset ,error ){_eed ,_dafe :=_ccdf ();if _dafe !=nil {return nil ,_dafe ;};_ggb :=bindataFileInfo {_ag :"Adobe-CNS1-2",_bc :1781,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491179,0)};_abc :=&asset {_cd :_eed ,_dce :_ggb };return _abc ,nil ; -};var _eede =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\x90\x82\x01\xe3\x54\xaa\x2a\xb5\xe4\x10\x54\x25\xad\x4a\x9b\x56\xaa\xf6\x40\xec\x09\xb2\xb4\x18\xcb\xc0\x21\x6f\xbf\x9a\x31\xcb\xee\x21\x9a\xf0\x19\xff\x1a\x8f\x49\xeb\xe6\xd8\x38\x3b\x43\xfa\x33\x8c\xba\xc5\x19\xee\xd6\x99\x80\xd3\xb8\x04\x8d\x70\xc3\xde\xba\x24\x11\x39\x18\xab\xe7\xd7\x47\x2e\x7a\xe8\x7c\x92\xa4\xa7\xef\x43\x21\xca\xfd\x37\xb9\x3f\xc1\x32\xe1\xaa\x75\x73\x6c\x1f\xd3\x8c\x43\xe3\xee\x23\x14\x71\xb7\x59\xfc\x9a\x00\x90\xfe\xc2\xde\x4e\x73\x78\xc0\xee\xab\x19\x6f\xf8\x01\x0c\xde\xc9\x7f\x04\x83\xc1\xba\x1e\x76\xf5\xa5\x15\x1b\xb7\x8b\xf7\xcf\x38\xa0\x9b\x41\xb0\xa1\x33\x5c\x93\xb4\x3e\x77\xfe\xd2\x0d\x08\xef\x7a\xb9\xf2\x1a\x2f\x5d\x31\x4c\x76\x74\x20\xf2\x8f\x59\x26\xdf\xfc\xf7\xc3\xe3\x9a\x95\xa4\xff\xfe\x34\x47\xf8\x2f\x40\x64\x90\x4b\x99\x1f\x9e\x56\xff\x7b\x1e\xcd\xf6\x96\xc8\x63\xfb\xda\x9a\xd0\xb9\x1e\x93\xcf\x9d\x28\x6f\x5f\x60\x2d\xa2\xa8\xca\x8a\x4c\x76\x6c\x54\x44\xa1\xca\x82\x4d\x47\xd3\xd1\x24\x9b\x89\x86\x64\x19\x49\x25\x58\xaa\x9c\xa4\x64\x91\x51\x2a\x92\x03\xcb\xa7\x28\x94\x5e\xe6\x2c\x31\xa7\xa2\x9c\xd8\x81\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\x63\xc1\x42\x85\xce\xa2\x68\xc6\xdb\x59\xe9\x3f\xdd\xed\x36\x6d\xbd\x84\x80\x6e\xe6\x9b\xe5\x81\xd2\x90\xac\xc3\xed\xdb\xf1\xa3\xa7\x5d\xfc\x7b\x09\x00\x00\xff\xff\x6c\xe3\x0f\x46\x67\x02\x00\x00"); -func _edag ()([]byte ,error ){return _dc (_gabb ,"UniJIS-UTF8-V")};var _cebd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9c\x4b\xaf\x27\xb9\x79\x9f\xf7\xfd\x29\xce\xd2\x59\x38\xaa\x0b\xc9\x22\x81\x83\x06\x12\xd9\x86\x85\xc0\x4e\x10\xe5\x06\x04\x59\xf0\xaa\x0c\x10\xf5\x0c\x66\x46\x0b\x7d\xfb\x80\xcf\x53\x52\x22\xc1\xc6\x2c\x1a\xff\x26\xab\x48\xbe\x45\xfe\xde\xfb\xcb\xf3\xab\x5f\xff\xe6\xef\x7e\xf3\xed\xbb\x9f\x3f\x7e\xf5\x9f\x7e\xfc\xbe\xff\x76\xfe\xfc\xb1\xbe\xfb\x36\x7e\x9c\x3f\x7d\xff\x87\x1f\xfb\xfc\x68\xf3\x77\xdf\x7d\xfb\xf2\xe5\xbc\x3e\xc6\x77\xfd\xe7\x3f\x35\xf9\xe9\xbf\xaf\x3f\x7c\xf9\xb2\xc7\xff\xf6\x8f\x3f\xfd\x3c\x7f\xff\x9b\x6f\xeb\xfb\x8f\xdb\xf7\xc6\x1f\x7e\x78\xdf\xfd\xf8\xf8\xd5\x7f\x9e\xbf\xfb\xee\xa7\x9f\x7f\xfc\xe3\xc7\xdf\xfc\xbb\xf1\x7d\x9b\xff\xe6\x63\xcc\xb5\xfb\xff\xe3\x8f\x63\xfe\xf8\xdd\xb7\xdf\x7d\xfc\xcd\xaf\xff\xf9\xb7\xe7\x9f\xbb\x7f\xfb\x87\x1f\x7e\xf8\x3f\xf3\xf7\xf3\xdb\xcf\x1f\x89\xbe\xf9\x6d\xf0\xfb\xe5\x57\xbf\xfe\xa7\xfa\xc3\x3f\xd7\xdf\xcf\x8f\x5f\xfd\xe3\x7f\xf8\xa9\xff\xf4\xb7\xff\x3e\xfe\xed\x3f\xf2\x88\x27\xff\x6d\xfe\xf8\xd3\x77\xdf\x7f\xfb\xb8\xfe\xed\x71\x94\xff\xd7\xfd\x5f\xfe\xf8\xc3\xfc\x38\xdf\x19\xfe\xc7\x7f\xfd\xcd\xdf\x7d\xfc\xcf\xf3\xe3\x3c\x3e\xae\x18\xf3\xf1\xbf\xde\xfe\xff\xfe\x4f\xdf\x8f\xf9\x71\xd8\xba\xa4\xbd\x7f\x3f\xe6\x4f\x3f\xd4\x3e\x7f\xac\xdf\x7e\x37\xbf\x7c\x7c\x7c\x1e\xc7\xd7\x8f\x8f\x8f\xcf\x7c\x7c\xdd\xad\xfc\x84\xe3\xeb\xc7\xe7\x3f\xfc\xfd\x3f\xfc\xfd\xd7\x4d\xe4\x5f\xbd\xff\xe5\x74\x9a\x6f\xdf\xff\x3c\xe6\xb2\x8f\x19\x3e\xcf\xf5\xf5\xe3\xdc\x23\xfe\xff\x47\x5f\xce\xe3\x78\xd7\xfd\x6e\xf4\xff\x5d\x7f\xfc\xf2\x99\x4b\xb8\xbf\x7e\x9c\xcf\x73\x66\x1a\x9d\xc6\x75\xd3\x18\xbb\x71\x87\x67\x37\xe2\x49\xe3\x48\xbb\x51\x13\x8d\x33\xd0\x68\x34\x32\x13\x54\x27\x78\x18\x53\x9d\x20\xdb\x98\x3e\xe1\xb5\xbe\x9c\xfa\xd8\x8d\x51\x9c\x9a\x27\xa3\xee\x46\x3e\x23\x0d\xa7\x3e\x7d\xad\xfb\x04\x0a\x86\x53\x9f\xe7\x6e\x4c\x69\x3b\xa1\x7a\x5e\xbc\x76\x31\x66\xde\x3e\x61\xb6\xc5\xd4\xf7\xb5\xc7\xd4\xbd\xaf\xe7\x93\x43\xa4\xc1\x04\x67\xf2\xc9\xf0\xc9\x5e\xa7\x46\xc9\x61\x0f\x6a\x9c\x36\x36\xa1\xf5\x39\x6d\x14\x1a\x6c\xc8\xc5\x86\xd4\xe7\xe1\x49\x3c\x68\x38\x41\x64\xea\xa7\xf9\x9a\x63\xfc\x9e\x78\xd1\x60\xd1\x4b\xda\x1e\xd7\x89\xfb\x7b\x6a\xcd\x36\x98\xba\x25\x1b\x50\xdd\x58\xe7\xf2\x13\xda\xfb\x1a\x54\xb7\xe2\x13\xa8\xee\xef\x3a\x34\xa6\x13\x24\x68\x9b\x4c\x70\x3f\x7b\xd1\xf6\x6e\x48\xbe\x69\x44\x26\x28\x81\x86\x63\x72\xa2\xe1\xa2\x25\xd2\x70\x51\x0e\xb8\x05\x17\x2d\xbe\xe6\x67\x03\x8a\x16\xfc\xec\xe2\x6b\x92\x93\xf7\x1e\xb4\x98\x3d\x7a\x16\x8d\x4c\x90\x9d\xc0\x8d\xbf\x0f\x28\x88\xe2\x80\x8d\x6f\xe9\x3d\x6d\x26\x48\x4e\x70\xed\xd7\x7a\xda\x47\x5f\x8e\x6b\xef\x68\x07\x3b\xe5\x00\xca\x1d\xec\xe4\x92\xf6\x6b\x83\x2f\x2d\x07\x1b\x32\x18\xf3\xdc\x77\xa6\xe1\x6c\x77\xa1\x21\x2c\xcf\x8b\x86\xe4\x84\x93\xc6\xb4\xc1\x13\x8f\xfe\x0e\x37\x8d\xf7\x35\xd6\xf1\xb4\x4b\x66\x8c\xa7\x7d\x73\x58\xa3\x46\x1b\x89\xc6\xbb\x28\xe4\x54\x17\xbd\x78\xcd\xd3\xbe\xc1\xce\xe8\x42\x19\xb8\x0c\xa1\x1c\x8e\xfd\x64\x72\x58\xf9\x78\xf6\x93\xb9\xa9\x0e\x27\x6b\x4e\x88\x0e\x27\x5f\x3d\xd3\x66\xb9\xf3\x61\xfc\x84\xe8\x7c\x3c\x91\x46\xb3\x91\x68\xcc\xaf\x1f\x17\x87\x33\xeb\xfb\xd2\x43\xa3\x7d\xfd\x08\x17\x07\x35\x5b\xf8\xfa\x11\xca\xc1\x4c\xe0\x2e\x1f\xb0\xf5\xec\xc5\x06\xc3\xfb\x86\x74\x62\x5f\xe6\x38\xf6\x08\xf8\x78\x4e\xc9\xcd\x36\x96\x0d\xe8\x5d\x2e\x98\xf7\xc4\x2b\x3e\x5f\x3f\xee\x9b\x07\x0b\x98\x04\xa1\xb5\xa2\x8b\x00\xd4\x15\xdf\xf1\xfb\x13\x57\x7a\x6c\x44\x1a\x8c\xb9\x8f\x42\x63\x8f\x39\x4e\xa8\x5c\xfb\xf8\x72\xe6\xb3\xd6\xf3\x4e\x96\x90\xae\xaf\x54\xfc\x97\xe4\xe4\x6a\x87\x6f\x32\xac\xbf\xdf\xc0\x7c\x3d\xb1\x52\xb2\xf1\xd2\xc0\xb2\xbd\xd2\x28\x07\x8d\xbd\x83\x25\xf8\xff\x8d\x86\x74\x4b\xc3\x78\xdf\xe2\x53\x91\x58\xf9\x28\xec\xc1\xea\x36\xf8\xd4\xb5\xf7\x33\x04\x04\xdb\x5a\xfb\x98\xe2\xde\xd0\x72\x44\x89\xd9\xcc\x5a\x8e\x34\xbe\x7e\xdc\xc7\x16\x78\xe5\x00\xa7\x21\xa4\x44\xc3\x9d\x2a\x79\x37\xc0\x69\x80\x05\xca\xf1\x9e\x73\x29\xbb\xe1\x79\x9e\x07\x33\x6f\xb6\x89\xc7\xc1\x83\x75\x7e\xfd\x88\xcf\x3e\x82\x72\xa6\xe8\x4b\x27\x8d\x69\xe3\xda\x8d\xe7\x6d\xdc\xbb\x51\x37\xa7\x86\x74\xdb\xb8\x7c\xb2\xa9\x3c\xdb\x26\xe6\x0a\x8e\xe9\xef\x92\x9b\xe6\x2b\x84\x3d\xe6\xb9\x36\x99\x57\x0a\x3e\x49\x34\x86\x8d\x4d\xf3\xd5\xce\x0d\xd3\xc0\x7f\xaf\xfd\xdf\xbd\xc6\xc5\x4c\xe9\x86\xf8\x6b\xec\xd5\x8f\x74\xd1\x98\x2f\xc5\x4c\xbb\x5e\x52\xf6\x77\xdd\xc9\xd5\xd9\xca\xbb\x56\x1b\xfb\xc3\xee\xee\x6b\x5b\x00\x94\xfb\x9d\x60\xeb\x98\x72\xcf\x77\x4c\xa0\xd1\x6c\x6c\xf2\x03\xb2\x32\x9f\x5b\x49\x95\xb0\x65\xe5\x13\xee\x3d\x73\x10\x68\xe7\xb9\xa9\x0f\xe0\xe2\x48\xd1\xc6\x3b\x7e\x93\x16\x83\x1f\xb9\x85\x5b\x89\x51\x6a\xf8\x82\x28\xd2\xcf\xad\x21\x4a\xec\x2e\xb3\x25\x5d\x89\x5b\x7f\xa6\x73\x4b\xf1\x92\xd8\xbe\x58\x18\x9f\xd0\xd9\xf9\xdc\x22\xb0\xa4\xf4\x4e\xb6\x69\x4e\xc3\x8d\xdd\x62\xa6\xa4\xb9\xd7\x8c\x61\x33\x47\x49\x40\xee\x3c\xb6\x04\x2b\x39\xbd\x6b\xee\x27\x19\xb5\x16\x1f\x8e\x29\x03\xa0\xf8\x70\x32\xb9\xde\x36\x1e\x1a\xcb\x06\x63\xb6\xa4\xd8\x42\x8b\xd9\x9a\x5b\xf8\x36\x92\xaf\x15\x1a\x8f\x4f\x98\x5a\x4d\x76\x47\xa6\x46\x93\xc5\x87\xd3\xc9\xcd\x4f\x78\x9f\x34\x45\xe0\x45\xa3\xfb\x04\x0a\x38\xb7\xf8\x70\x54\x19\xb1\x99\x51\xed\x25\xf7\xe0\x13\x28\x90\x87\xcf\xc4\x04\x43\x35\xe0\x04\x32\x24\xd2\xa2\xe4\xd7\x06\x71\x82\xa1\xdd\x92\x98\x60\xfa\xd9\x1c\x69\x9e\xee\x0e\xa7\x98\xdd\xd1\x87\x53\xc8\xeb\xa0\xc1\x29\xe6\xe5\x91\x14\xbe\x74\x49\x28\x47\x9a\x97\x84\xc2\x60\x99\x53\x88\x0f\xe7\x9b\x61\xfc\x8c\xec\x2d\x79\xa9\x7b\xd2\x5e\xb4\x84\xcb\x3d\x08\x34\x24\x87\xd3\x2e\xe0\x20\x5f\x9c\x4f\x41\x41\xc4\xe7\xf2\xb5\xe4\x13\x27\xd0\x02\xd8\xa2\xab\x94\xe0\xc9\x01\x8a\x12\x3d\xb9\x54\x68\xa8\xbc\x9e\xe3\x17\xa4\x64\x29\xc9\x61\x5b\x17\x95\x92\x04\xc9\x05\x11\x88\x89\xf8\x5c\xac\xfb\xbc\x14\xb1\xee\x93\x6d\xb0\x14\x32\x23\x5f\x40\xa1\x54\x37\x08\x0e\x2a\xa0\x2c\x5f\x9c\x7e\xa9\xae\x13\x1c\x13\x7d\xc2\xd4\xaf\x6d\x1a\x1d\xe3\xa2\xf7\xde\xe1\xd2\x3c\xe3\x87\x6d\x78\xf1\x77\x43\x68\x93\x50\x04\x55\xe9\xea\xf0\x87\x75\xba\x76\x26\x50\x28\x43\x15\xfc\xb0\xe8\x70\x9d\xcc\xd4\x2f\x2e\x1e\xa8\x9e\x2f\xd5\xac\xa3\x3c\xc7\xb8\x2d\x65\x4a\xb5\x47\xa4\x44\x41\x41\x95\x32\xdf\xd9\x7c\x02\x3b\x60\xf6\x96\x32\x65\x87\xec\xd4\xcb\x03\xa7\xb1\x44\xf3\xbd\x1b\x35\xbc\x9f\x90\x68\x20\x52\xb0\x56\x4a\x0d\x62\x69\xdb\x17\xa5\x46\xf9\x69\x9b\x3b\xa5\x46\xa9\xe6\x48\x6a\x42\xbf\xdd\xb1\xd0\x38\x7d\xcd\xc6\x4b\x9b\x0d\x69\x83\x03\x6a\xf2\xe4\xb6\x4e\x2b\xf5\xb5\x97\x8a\x8d\xea\x6b\xd0\x96\x5e\x56\x65\x9d\x47\x98\x4a\xdb\x03\x4c\xef\xe7\xa6\xa1\x55\x54\x6c\x78\x72\xdb\xc6\x2a\xb5\xba\xf1\x70\x4d\xad\x8e\x41\xf8\xd7\xd7\x92\x2a\x36\x8a\xeb\x40\x41\xf5\x18\xe1\xa7\xda\x3c\x92\xc0\xd4\x4d\x56\x45\xc4\x69\x37\xe7\x1b\xe5\x57\x5f\x69\x13\x58\x47\x69\xf3\xce\x86\xb4\x89\x4f\x70\xb6\xee\x13\x3e\xa1\x89\x10\x4f\xa1\xbf\x53\xf3\xa5\x43\xc6\x0f\xec\x35\xda\x28\x07\x44\x42\x1d\x2f\x39\x34\x5e\xb8\x44\x68\x13\x2e\x01\x58\xd6\xe9\x01\x23\x30\xeb\x74\xaf\x61\x8c\x3a\x5f\x33\x91\xa9\xa7\x22\x01\x2e\xa9\xaf\x4c\x81\x4b\xea\x12\xe4\x30\x46\x5d\x7e\x42\xdc\x63\xb4\xe9\xe3\xc3\x69\xb7\x17\x3b\xdb\x29\x28\x2d\xba\x28\x62\x51\xfb\x3c\x3e\xe9\xa6\x81\x0a\x0b\xf0\x8f\xf6\x79\x7c\x92\x8d\xe6\x93\x48\x43\xbc\x25\x1b\xc3\x27\x9b\x9c\x26\xc4\xc2\xb6\x7a\x4a\xc3\x04\xbd\xd4\xae\xed\xd5\x2d\xe0\xa0\x6d\x79\x10\x0b\x62\xa8\x61\x9b\xde\xc7\xed\x10\x67\x76\xb2\xc7\x99\x8b\x0d\xd1\xe2\xcc\x55\xf0\xc2\xb3\x4d\xb3\x23\x14\x9f\x40\x67\xe4\x48\x5b\x75\x36\x18\xab\xbd\x5a\x2b\x33\x5b\x73\x36\xe0\xd6\x30\x55\x72\x84\x4d\x1b\x7a\xf7\x28\xc9\x06\x5b\x90\x91\xcb\x4d\x2d\x1e\x4f\x1b\xdd\x27\xe1\x97\xe4\x65\x43\xbe\xe4\x88\x46\x6a\xfd\x95\xed\x90\xd7\x5d\x17\xb3\xa2\x01\x98\x1c\x31\x2b\x1a\x62\x28\x66\xd8\xa9\xa9\xc9\xe3\x69\x23\xfa\x84\x2f\xc7\x45\x8e\xd9\x0d\x1e\xf3\xeb\xc7\x73\x66\x1f\x2c\x1f\x40\xea\xe4\x4c\x22\x9a\xa6\xe1\x48\xc7\x2c\x35\xd3\x35\x2f\x5f\x73\x4d\xa9\x51\xd7\x65\xa9\xd1\x16\x8a\x08\x91\x36\xb1\x6b\x33\x32\xa0\x4d\xbf\x0d\x90\xb6\xe5\x04\xce\xb6\x71\x19\x32\x22\xa0\x2d\x04\x4a\x44\x5a\x36\xfc\x9a\x1c\x61\xa6\x8e\x76\x3b\x03\xb2\xaa\xa3\xdd\x72\x7c\x1b\xef\x98\x42\x03\x8c\xe6\x77\x0c\x18\x8d\x48\xa4\x2e\xae\x33\x32\xb1\xc7\xfb\xeb\x47\x92\x2f\x7a\x74\xd3\x10\x07\x3d\xba\x69\x88\x83\x1e\x93\x4f\x6c\x74\x1b\xcc\x1c\xdd\x4e\xf4\x4a\x07\xc9\x11\xaf\xbe\x74\x84\x65\x8e\xf0\x39\x3e\x68\xd4\xca\xea\x49\x9a\x61\xf3\xae\xe0\x8c\xef\xf8\xfc\xf5\x23\x17\xb0\xdb\x93\x24\xbf\x73\x49\x32\x1c\xdb\x91\x9b\x77\x38\x9d\x58\x62\xb6\xff\x56\x7a\x7a\x89\xf1\xc9\xf4\x09\x5f\xb3\x39\x29\x67\x97\x7c\x3c\x1a\xbf\x19\x03\x34\xe6\x64\xc3\x7d\x76\x19\x39\x29\x3a\x99\x9c\x94\x41\x78\xaf\x6e\x0d\xda\xbc\x6b\x1b\x47\x64\x41\x87\x93\x62\x86\xe3\x7b\x95\x34\x64\x41\x6f\x32\x02\x06\x4a\xdf\x92\x32\xe1\x83\x97\xbe\x05\xe5\xa5\xa0\xed\x5d\x92\xb1\x59\x3b\x48\x8f\x05\x3e\xea\x5b\x68\x3e\xf9\xf6\xff\x4e\x05\xbf\xf7\xe9\xc9\xc0\xe2\x7d\x4a\x0b\x2c\xde\x5f\x9c\xa1\x96\x3b\xc6\x52\x2c\xe2\x64\xb9\x0c\x5a\x55\xb7\xff\x51\x6f\x0c\xe5\x5f\x01\x41\x03\xd0\x44\x5c\xb3\x32\x82\x63\x8a\x63\x24\x0d\x38\x8c\x28\xab\x14\x1b\xa7\x4f\x22\x8d\x68\x23\xd1\x90\x50\x1c\xad\xb1\xbd\xd8\x92\x92\x6f\xd5\xed\xd1\xba\xca\x1b\xc4\xe0\xcc\x8c\x41\xc4\x02\x80\x86\xa0\x49\x70\xf7\x48\x9a\xf3\x1c\xe7\x78\xb4\x04\x10\x65\xc3\xe3\x2c\xc0\x69\x78\x68\x05\x08\x19\x42\xc8\x09\x7e\x18\x1c\x5a\x2c\x40\x60\x28\xfe\x12\xfc\x30\xf0\x67\x63\x41\xd8\x8c\x76\xdb\x60\x02\x8c\xf6\x9c\x82\x0d\x3f\x0d\x75\x60\x40\x22\xa7\x60\xe3\xf1\x09\x9f\x80\xc8\xcc\x09\xc5\x67\xa8\x22\x16\xac\xca\xa1\xcd\x8d\x2d\x33\x8c\x0f\x24\x30\x3c\x14\x9f\xe5\xb9\x7e\x49\x48\x0e\xa5\x5f\x42\xf5\x0d\x7d\xe2\x04\xdd\x53\xa9\x90\xa0\x7b\xea\x21\x25\x48\x9d\xef\x36\x42\xdd\xc4\x4e\x49\x07\x8a\x74\xca\x6f\x09\x46\x30\x44\x92\x0e\xa6\x9e\x84\xf4\xd2\xc1\x66\xcd\xc7\x45\x51\x49\x13\xa3\x25\xe9\x2f\x4f\x5d\xb9\xf4\xd8\x70\x02\xc9\x31\x92\x92\x80\xe5\x44\x5b\xa5\x43\xda\xe4\xb1\x04\x46\x89\xb1\xec\x27\x10\xaa\x59\x9b\x32\x13\x78\x76\xb7\x0f\xde\x99\x19\xf2\x1e\x1d\x48\x9e\xd5\xcd\x06\xc9\x04\x63\xce\x44\x28\xa7\x4c\x5d\xac\x94\x21\x4d\xd3\x26\x21\xf4\x27\xa6\x4d\x3a\x24\xad\x49\x9a\xd4\xe8\x4b\x26\x84\xd1\x1b\xb4\x21\x7c\x51\xa6\xfb\xfe\x60\xe7\xcc\xe1\x16\x14\x68\xdb\x76\x68\xb9\x81\xf8\x5c\xef\x5b\x8c\xc7\xc8\xc8\xfa\x6b\x93\xa3\x4a\x0a\xc3\xb9\x19\x33\x9d\xd1\x07\xd3\x07\x7b\xc8\xf2\x0c\x1f\x7c\xee\x85\x30\xcf\x0f\x4a\x6b\x21\x65\xef\x88\x86\x5e\x58\xa1\xc1\xa3\x5e\xcf\xe1\x6b\xfb\x3b\x97\x1f\xad\xeb\xb5\xda\x4b\x40\xa1\x01\x22\x74\xbd\x56\xdf\x63\xd2\xe5\xd4\xfd\xf4\x09\xb3\x6d\xdd\x7d\x97\xc7\xb7\xba\x0f\x78\x4b\xe5\xaa\x4b\xb5\x06\x01\x25\x82\x58\x65\xcd\xf7\xc9\xfe\xb4\xb5\x8a\x8d\xf8\xe5\xb3\x1e\x41\xd2\xf6\xb7\xd5\x43\x45\x85\xd3\x53\xdf\x38\x0d\x4e\x4f\x3d\xc0\x67\x40\x00\xd4\xc3\xd0\x06\x1e\x50\x3d\xb4\x85\x36\x01\xf5\x10\x50\x38\x40\xf5\xc0\xae\x49\xf7\xdb\x70\xd7\xb7\x67\x53\x8f\xea\x32\x37\x63\xf4\x6b\x71\x66\xea\x31\xa4\x66\x6b\xd7\x7a\x68\x1e\x1c\x19\xd2\x06\x47\x18\x18\xaf\xd5\x89\x27\x51\x0f\xad\xce\x23\x40\xcc\x9f\x6c\x4b\x66\x5e\x6f\xac\x74\x8f\x3f\xb7\x0e\xbf\xb6\xc8\xaa\xe7\x56\xe1\x04\x9b\x2b\x12\xf7\x0a\x9b\xaa\x36\xe3\xf5\xf5\x23\xe0\xf9\xf4\x6b\x6f\x71\x24\xbc\xdd\xef\x0d\xc5\x88\xbe\xeb\xf7\x36\xb2\x23\x4a\xb1\x87\x2d\x38\x63\xd8\x56\x57\x27\x40\x81\x46\xea\x69\x3b\x5a\x71\xf3\x57\xcf\x1a\x2b\x84\xe6\x7b\xc6\x06\xce\x84\xe6\xfb\xeb\x57\x13\x9a\xef\x65\xeb\xfd\x74\xf1\xdf\x2d\x97\xd2\xb1\xc5\x7c\xaf\x9b\xcc\x74\xee\xad\x18\x69\x1f\x73\x7e\x36\x6b\x8c\x67\xb3\x70\x26\x20\x3d\xea\xde\x95\x7c\x6e\x01\x37\x90\x34\x05\x56\x98\x8d\xf9\x8f\xb2\x4f\x75\xf6\x6d\x4c\x9d\xe7\xb1\x45\xc3\x9c\x84\x7f\x2e\x3e\x73\x1d\xc8\xfe\x13\xf4\xad\x03\x93\xf0\x24\x72\xb0\x4e\x74\xf9\x95\xb6\xf4\x5f\x17\xf2\xe8\x7a\x36\x37\xaf\x00\x7c\xaf\xb8\xa7\x5e\x09\x58\x5c\xe5\xf8\x4b\x4f\x3b\xc4\xbf\x92\x89\xab\x20\x56\xe5\x8d\x55\x38\xf2\x3b\x6d\xfc\xac\x02\x3f\xdf\x88\xef\x85\x8b\x77\x11\x40\x5b\xf8\x71\x17\x3a\x7f\xe1\xb5\x3c\x99\x57\xf6\xe0\x7b\xcb\xc9\x55\x37\x40\xae\x73\x6b\xbb\x65\x6c\x3f\x1d\xc7\xb5\x1b\x51\x80\xec\x53\x58\x4d\x7b\xe3\xe1\xbb\x5a\x7d\x9f\xf0\xda\x96\x38\x37\x11\xba\xf5\xda\xcd\xb8\x0e\xeb\x35\x73\xf1\x16\x16\xa6\x60\x22\x44\xb6\xda\x52\x2c\x6d\x8b\x73\x69\xaf\x65\x3c\x87\xd5\xb7\xea\xcd\xa0\x61\xf5\x28\xd8\xb7\xc8\x5e\xaf\x55\xf5\x6c\x03\x63\x69\x15\x25\xbc\xe3\xd5\x5f\x36\xda\x7a\x67\xf5\x47\x36\xd8\xe2\x73\xf5\x0d\xb9\x10\x02\x43\x5e\x0e\xdf\x46\xcd\xea\xdb\xc8\xbd\xcf\xad\xec\x57\x7f\xb9\xe0\xb1\xe1\x47\x3e\x10\xc6\xe9\x93\xb6\x59\x1a\x0b\xf9\xd9\xf2\x76\x99\x16\xc8\x78\x24\x0b\x85\x98\xee\xcd\x77\x6b\xb0\x13\x17\x5b\x34\xb6\x48\xba\xaf\xed\xc2\xac\xf1\xa7\x35\x68\xec\x69\xef\x6b\x8b\xe4\x35\x5e\x29\x4a\x03\xce\x79\xc3\x23\x6b\xbe\x5f\xb5\x85\xf5\x9a\xa6\x1e\xd0\x57\x8b\x90\xfe\xfd\xb0\x91\x53\x5b\xef\xd9\x6a\x64\xa1\x3a\xae\xcc\xe8\xed\x05\x3c\x47\xfe\xd7\x23\x37\x6f\xd6\xf0\x3a\xbe\x7e\x7c\xa2\x98\xbe\xfc\x29\xeb\xb8\x4f\xe2\x2b\x69\x93\xb8\xfb\xb6\x01\xfb\xb9\xe9\x20\x7b\x42\x26\x00\xd6\xd9\x3f\x93\x3e\xc2\xe1\xcf\x16\x53\x9f\xf9\xc1\xcb\x28\xc6\xae\xb3\xf3\x65\x24\xe0\x93\x88\xc9\xe7\xcd\x2b\x9f\x39\x1b\x31\xc6\x0d\xcb\xd9\xb1\x99\x94\x48\xce\x9b\x25\x72\xde\x3a\x71\xff\x54\x39\x9c\x9c\xa3\xf3\x15\xf3\x76\x8f\x29\xc1\x90\xec\x2b\xf6\x15\xfa\x26\x7d\x58\x6e\x0f\xd2\x3a\x97\xbd\xb9\x9f\xb9\x98\x64\x43\x34\xe7\xe2\xba\x06\x92\x1e\xa0\x91\x4b\x73\x0d\xa3\x46\x6c\x7f\x2e\x9b\x57\xf7\x0f\x81\x93\x87\x44\x45\xe9\x8e\x35\x3f\xf3\xf0\xbd\x30\xe4\xfe\x71\x8d\x62\xca\xd2\xf9\x86\x39\x33\x13\xa9\x43\xfa\xa6\xb9\xb7\x13\x5a\xb6\xfc\xdd\x3f\x66\xc3\x2e\x33\x9c\xd5\xbe\x37\x1f\xea\x7b\x9d\xbe\xf5\xbe\x47\xdf\x56\xbf\xfb\xe7\x4d\x54\x9a\xcf\xbc\x77\x9f\x61\xa0\xe7\x4c\x24\x15\xdd\x17\xa3\x41\xcf\xf9\x90\x5b\x8c\xcd\x3e\xe2\x19\x67\x36\xe3\xb9\xe8\x33\x49\x76\x92\xa1\xa8\x09\xfa\x2a\x2a\xf8\x21\x5e\x99\xeb\x73\xd9\x17\xcc\x6f\x9a\xf9\xcc\xf6\x99\x16\xe4\x8c\xaa\xfb\x5c\xab\x49\xc4\xcb\x04\x67\xb1\x8f\x78\xcd\x75\xb3\x46\xe5\xdb\x2a\x36\xea\x73\xdd\xe6\x3e\x5d\xa3\x99\x9a\x24\x8f\x42\x58\xe6\x33\x1b\x76\x79\x2e\x73\xb1\xdd\xf9\xba\x49\x47\xbf\xb7\xfb\xbd\xc3\xb1\x64\x6a\xea\x48\xf6\xbd\xd9\x5a\xfb\xa4\xd9\x54\x33\x9c\x99\x51\x09\x9f\xb9\x4e\xc7\x82\x53\x82\x31\x9f\xb9\x12\x81\x7b\xb2\x79\xe3\xe5\x7c\xef\xde\x3f\xa6\x4e\xf9\xde\x66\x9c\xf6\x22\xa9\xd3\x3c\x8f\x16\x1c\x9b\x7d\x6f\xd0\x27\x4e\xaf\x42\x9e\x33\x3a\x16\xd1\xfb\xe0\x52\xe7\x16\xa3\x7d\xd2\x5c\x4c\x9b\xb2\x57\x06\x57\x9e\x6c\x92\x35\x5d\xf6\xf1\x9e\x99\xba\x96\xd8\x17\x43\x25\x4f\x21\xdb\xde\x3c\x0f\x65\xf5\x53\x6e\xd6\xe8\xe0\xb4\xb9\x07\x89\xf3\x68\xe2\xb4\xe1\x5c\x3d\xd8\xde\xb9\xcb\x83\xaf\xf7\x6b\x1e\x1c\xd9\xfc\x99\x75\x22\xb3\xb9\xe4\xee\x1a\xfa\x92\xb9\x90\xb1\xef\x15\x59\xd2\xfb\xdb\xb7\xb1\xd1\x3d\xb7\x57\x3c\x17\x72\xd7\xdd\x73\xeb\x06\xe4\xf1\x6f\x72\x1f\xec\x55\xc7\x4c\x29\x87\x99\xdf\xc9\xde\xeb\xef\x95\xe3\x26\x47\x1a\xd8\x83\x11\x95\x43\xd1\x04\x2f\x34\xbf\xde\x17\xee\x4e\x1e\xd2\x3c\xde\xbd\x02\x2f\x23\x35\xfb\x86\x7d\x8e\x05\x07\xc3\x28\x65\x79\xcc\xea\x3e\xf6\x15\xfb\x78\xef\x19\xf6\xb9\xcf\xc8\x88\xe1\x1e\x0c\xa3\xd6\x85\x33\x1f\x35\xd9\xe7\xba\xc8\x4e\xdc\xb5\xcf\xac\xd3\xf5\x14\xce\x1c\xb5\xf2\x99\x87\xd9\x28\xf4\x71\xc6\xa9\xfa\xcc\x43\xc3\x13\xed\x99\x87\xbc\x3f\xf4\x79\x0f\x68\x9e\x9e\xd1\x34\xa9\x46\x22\x28\x4f\xe5\xa4\x3e\x51\x20\xb7\x93\xa7\xdf\x3b\x8d\x31\x60\xd8\x64\xf4\xce\xfe\x99\x26\x91\xcd\x0e\x3b\x1f\x7b\x10\xce\x44\x9e\xd7\x3d\xd0\x11\x0a\xe7\x9b\x52\xee\xf6\x91\xb2\x3c\x4d\xf5\xba\x07\xb3\x3a\x96\x7d\x99\xe2\x40\x57\x27\x28\x73\xa6\xbc\x3f\x71\x49\xc3\x59\xcc\x32\x47\xfb\x1e\xf2\xc0\xa6\xbd\x1b\x78\x99\xdd\xdc\xf0\xc1\xba\xbd\xda\xd7\xe9\x43\x76\x4e\x31\x34\x89\x32\x84\x8b\xcc\xfa\x1c\xd2\x02\x86\xc2\xe5\x1e\x88\xa1\x89\xe2\x0f\x58\xb6\x79\x2e\xbf\x77\x41\x33\x09\x86\x3c\x97\x34\x2f\xdf\x23\xb9\xbe\xdc\xe7\x85\xf9\x17\xae\xc7\x04\x76\xb5\xcf\xf7\xe0\xcb\x25\xfe\x5e\x5f\xe6\xe6\x2c\x57\xf2\x3d\xb0\x16\xac\x68\x59\x62\x6d\x3d\xe6\xb0\xe1\x8f\xa5\xae\x5d\xe0\x2a\x10\xb4\xcf\xcb\x3d\x5d\x44\x2f\xc3\xb6\xd2\xd5\xf2\xff\x42\xb9\xcf\xab\xe6\xf3\x6a\x0e\xc1\x7e\x0c\x96\x54\xac\x9e\xed\x2b\x26\xb2\xcd\x5d\x73\xfc\x6b\xd8\x87\x38\x5b\x03\x98\x2c\x22\x83\xc1\xba\x9e\xa5\xba\x5a\x38\x7e\xc1\x70\x3b\x3e\xd0\x67\x39\x08\xb3\x85\x80\x2f\x85\x69\xbc\x7f\x78\x2f\x10\x51\x39\x10\x5d\xe5\x88\x42\x96\x78\xeb\x81\xca\x29\x07\x50\x0c\x81\x90\xc6\xf1\x38\x1f\x6c\x16\x02\xa1\x25\x5c\xa3\xfd\x63\x8e\xfb\x31\x93\x7d\xd2\x27\xc4\x02\xa9\x19\x7c\xa3\xcf\x72\x08\x9d\x40\x80\xf7\x00\x3a\xe5\x20\xbe\x14\x22\x81\xa7\x03\xb1\x52\x0e\xb2\x75\xc1\xd0\x22\x0e\xcf\xfe\x61\x0d\x7c\x90\x72\xfa\x6d\x27\x91\x99\x10\x09\x0f\x9c\x29\xd9\xc7\x11\x26\x3c\xc4\x93\x23\x2c\xe7\xf3\xf6\x65\x72\xe0\x37\x7d\x04\x4b\x42\x22\xe4\x79\x76\xe7\x43\x85\x05\xe3\x15\x27\xa2\xb0\x9c\xae\x9b\x08\xbf\x5d\xae\x7b\xe1\x2d\x07\x73\x6a\x57\x88\xf4\xe9\x4b\x9a\xe5\xba\xd2\xdb\xc7\xfe\x19\xb9\xbf\x36\x0f\x7f\x96\xcb\xbd\x7a\x9c\xcf\xbd\xba\xaa\x7d\x38\xfc\x57\x85\xe6\x6b\xab\xdd\x8b\xdd\xbb\x1a\x14\x5f\x52\x67\xa8\xfb\x92\xba\x0b\xd7\x32\x64\xe2\xf4\xd7\x60\xa7\x2e\x19\x2a\xf3\x65\x17\x0c\x55\x2e\x8c\xe7\x40\x35\x53\xb9\x96\xf3\xf9\x65\x99\xb8\xd8\xed\x97\xdd\xc9\x35\x38\xc9\x1b\x65\x55\x6e\x29\x2e\xf8\xf9\xb7\x14\xdf\xc4\x48\x82\xa1\xbb\xbb\x82\x82\x1b\x77\x3e\x18\x41\xbb\x3b\x6b\xdc\xd2\x82\xa0\x2e\xb7\xb4\xdc\x46\xae\x0f\xf2\x67\xf7\x74\x0d\x62\x89\xf1\x20\x68\x7e\x63\x54\x95\x1b\xfa\xe2\xc1\x49\x06\xe9\x0b\x66\x51\x0f\xd2\x94\x61\x7b\x47\x9f\x25\x98\xba\x3c\x88\xa8\x05\x18\xb4\x04\x83\x71\x78\xd9\x25\x48\x73\x80\xb3\x22\x25\x1e\x25\x74\xd6\x08\xae\x81\x3f\x5a\xa2\x6b\x44\x73\x75\x27\x11\x8f\x88\x91\x56\xa2\x29\xbb\x93\x60\x4b\xc4\x48\x2b\x11\x8e\x89\x18\x5a\x25\x26\xc7\x3e\x6f\x1f\x63\x5d\x37\xa2\x60\xe3\x45\x60\x32\x76\x38\x21\x62\x80\x46\x2b\x26\xe2\x80\xe6\x28\x2d\x08\xa4\x92\xa4\x25\x99\x4f\xa6\x18\xaa\x24\x91\x96\x30\x50\x22\xf5\x4d\x25\x61\x48\x97\x44\x3c\x2d\x9a\x3a\x4f\x28\x92\x92\xa4\xe5\xce\xcc\x27\x2d\xc9\xb4\x85\x09\xfb\x34\x9c\x8f\x7c\x41\x0c\x60\x23\x4d\xbe\x37\x99\xa7\xfa\x53\x39\xc2\xb0\x8f\xf9\x02\x41\x59\x9d\x93\xa2\xd3\x61\xbc\xa0\xe8\x74\x94\xc7\xf7\x0c\x65\xeb\x74\x94\xec\x77\x18\x74\xcc\x5b\x13\xee\x1f\x73\xff\x70\x51\x46\x21\x96\x6c\x82\x3a\x39\x56\x89\x93\x1f\x93\x61\x24\x8c\xf2\x13\xed\x7b\x6b\x2f\x48\xee\x63\xe4\x96\xfc\x56\x77\xc0\x81\x59\xc9\xf4\x3a\x36\x27\xa1\x6c\x1d\x9b\x92\xdf\x22\x98\xdb\x4a\x09\x69\xa9\xef\x7b\x56\x42\xb8\x6e\xb3\x18\x20\x5a\xf6\x30\xec\x33\x2b\x45\x9c\x2c\x37\x38\x35\x1b\xc6\x3a\xa5\xb9\xfb\x1d\x6f\x0e\x12\x1c\xe4\x2e\x7d\x66\x1f\x31\xfe\x4b\x1e\xb7\x7d\x16\x5d\x3c\xf6\xbd\xef\x99\x57\x74\xbe\xd1\xed\x93\x3e\x82\x85\x44\x60\xf6\x8f\xdf\xc1\xf9\xe6\xe9\x77\x18\xa0\x17\xbb\x79\x3a\xdf\xb4\x2e\x23\x5b\x15\x31\xed\xb3\xa8\xa4\x58\xce\xe0\xd8\x65\x1a\x37\x59\x16\xe1\x77\x18\x4a\x3c\x8b\x85\x0a\xac\xab\xc3\x97\xaf\xb7\xe0\x21\xdb\x37\xed\x23\xc3\x1e\x7d\xcf\x78\x85\xbc\x50\x30\x9a\x4b\x31\x49\x89\x17\x5f\x4a\x64\x4f\x8b\xb1\x84\xeb\xad\x50\xf0\x3d\xe3\xc3\x97\xc5\x00\xe2\xb9\xe8\x83\x5f\x64\x15\x8a\x92\xbd\x98\xbb\xbe\x08\x93\x97\x27\xd9\xf7\xd8\x67\x91\x43\xb1\x4f\xfa\xde\x52\x05\x78\xd0\xca\xd8\x7c\xb1\xcf\x45\xa9\x5b\x9a\xdf\xc6\x1e\x14\xe5\x6e\x31\xb4\x79\x59\x9f\xd1\x1c\xdb\xa4\xef\x39\x7f\x51\xd9\x97\xd2\x24\xbf\xbf\x43\xd8\xb6\xfe\xf6\x71\x34\x94\xfa\x15\x1c\xd5\xcf\x52\x0c\xf8\x5e\xc5\x9a\x86\x60\x9f\x24\xa0\xd8\xcb\x90\x04\x21\x81\x9f\x52\x8a\x90\xb0\x08\x37\xdf\x56\x9c\x28\x5a\x8b\x41\x14\x6c\x9a\x52\x96\xef\x59\xe7\x82\x0f\x5b\xca\x72\xcb\xb5\x59\xa9\xcc\x2d\xd5\xa3\xae\xc6\x59\xee\xdb\x3e\x8e\xab\x46\x93\xf5\x16\x05\x60\x5f\x15\x8b\x72\xb3\x25\x46\x38\xaa\xfb\xc7\xd2\x8a\x64\x29\x02\x30\xae\xc6\xf3\x6f\xc2\xfe\xd5\xe3\xb2\xea\x36\x5b\x11\xa2\x6f\x5a\xaa\x2c\xaa\xe8\xaa\xd5\xf7\x8c\x47\x58\x83\x51\x55\x39\xd5\xe3\xa2\xec\xb9\x54\x8f\xcb\xf2\xdc\xfc\xd6\x29\x34\xf6\xb4\x1a\x5e\x57\xec\x55\xd9\xb1\x9a\xdb\x0d\xec\x4b\x95\x1d\x71\x3d\xcf\x4c\x79\x5f\xa9\xa3\xd8\xf7\xa6\xec\xed\xf3\x3b\xdc\xe7\x00\x64\x71\x4a\xf7\x0f\xb0\x0b\xb7\x25\x04\xee\x8b\x59\xb1\x60\x41\xc8\x04\x62\xd5\x28\x69\xb0\x5e\x43\x55\x5c\x61\xbd\x1c\x2c\x8d\xc0\xb6\x2d\xd5\x34\x6c\xb0\xda\x61\xb9\xae\x67\x14\xa0\xa5\x79\x46\x96\x09\x67\xc5\x37\x95\xc1\xfb\xc7\x2a\x81\xb7\xb2\x80\xbd\x7a\xc3\x87\xe1\xad\x29\x88\xf6\x49\x33\xea\xb9\xc5\x69\x9f\x59\xf8\x64\xb5\x00\x67\xd9\xac\x41\x53\x1d\x34\xc5\x72\x7b\x6b\x48\x92\x7d\xc1\x3e\x69\x29\xd6\x13\x14\xfb\xfc\x0e\x32\x76\x4d\xe3\xab\x55\x45\x3a\xe2\xac\x55\x69\xb1\x02\x32\x14\x2b\x06\xfc\x0e\x33\x67\xc4\x48\x4b\xab\xc3\x3e\x73\x83\x24\x44\x9a\xa2\xba\x89\x03\x8d\xc8\xd6\xa4\xf9\xad\x23\x21\x0d\xd3\x5a\xb5\xcf\x2c\x25\xa6\x87\x3e\x76\x69\xaa\x67\x8b\x2a\x9b\xea\xb9\xc9\xab\x26\xcc\xda\xf0\xbd\x61\x5e\xde\xb1\xc4\x2d\x4a\x53\x7c\xc7\xd3\x94\x7e\xb6\xef\xad\x48\xe0\xdb\x86\x7b\x6f\xe9\x73\xbc\x4c\xc9\xbb\x57\x6f\x2e\xf5\x32\xcf\xef\x5e\x4d\x33\xba\x16\x12\x28\xaa\xdb\xb4\x52\xe0\x32\x51\x2f\x2d\xeb\x2d\x0b\x60\x0d\xc5\x77\x13\x43\x91\xbc\x55\x5b\xd2\xb2\xcc\x37\x5b\xc6\xb1\xa4\xc5\xb2\xb6\x6c\xad\x80\xaa\xbd\xbd\x39\x5a\x93\xf4\xe2\xaa\x07\xbf\xf7\x32\xbf\x1f\xec\x4b\x26\xf3\xc9\x45\x8b\xab\x1e\xde\x04\x3d\x69\x64\x65\x84\xb1\xe2\x98\x51\xb1\x3d\x3e\xf6\xf9\x6d\x6f\x22\x7f\xda\x67\x7d\x45\x30\x07\xef\x1a\xc9\x35\xcc\xa4\x2b\xe6\xfb\xe3\x7c\xd1\x8c\xfa\x6d\x9f\xf5\x03\xc8\x9c\xae\x59\xd0\x1f\xc7\x9a\x1e\xd7\x04\xe8\x16\xac\x64\x73\xe1\xca\x97\x6e\x4d\x5b\x26\xdb\xd4\xc5\x64\xaf\xef\x7c\x26\xdd\x93\x7d\x9e\x2f\xf9\xae\x5e\xb3\x7d\xee\xe9\x63\x0a\xde\xef\xb5\xc4\x2d\x9b\x24\x57\x95\x74\x6b\x95\x23\xaa\xa4\x37\xd7\xb5\xc6\x2d\x9b\x32\x57\x36\x75\x2b\x25\x2d\xd7\xe8\x9a\xcd\x6f\x4c\x26\xc2\x5b\x5d\x93\xa2\x77\xcb\x0d\x90\x6b\x7d\x38\x9f\xe6\x5c\x39\xec\x73\xff\x5e\x4c\x5a\x2f\x20\x26\x8d\xdd\x44\xe2\x4d\xa5\x2b\xc3\xfa\x34\xa9\x8c\xfc\xeb\xd3\x33\x9a\x26\xb4\x2f\xfb\xdc\x3f\xcd\xc3\x62\x35\x85\x98\xec\xeb\x7d\x8f\xef\x5d\xd5\x3e\x71\x90\x4d\xe0\x43\xdf\x50\x36\xc5\x37\xdd\xff\xd8\x67\x41\x44\x36\xeb\x5f\xed\xb3\xc8\x00\x9d\x37\x42\xb7\xcf\x22\x02\xf3\xdc\x9a\xb9\xe3\xad\x19\x29\xa6\xf2\xb3\x7d\xf2\x2a\x35\x0d\x43\xd3\x7c\x58\xe4\x94\x90\x11\x43\x93\x62\x68\x16\x24\xf6\x60\xe8\x26\x8c\x37\x23\x0c\x2f\x18\x1f\x2a\xc6\x87\x32\x31\xb7\x32\x94\x4d\x5e\x0f\x88\x25\xfe\xb2\x6f\x5f\x46\x95\xfc\x2a\xf9\xd1\xa9\xa7\x7d\x26\xc7\x61\x8b\x21\x24\x46\x33\xc5\x6d\x11\x44\xf3\x93\xcc\x9f\x52\xb6\x5f\x46\x73\xbe\xe6\x7c\xd4\x77\x0c\x2d\xcf\xd1\xdf\xf2\x01\x6a\x09\xba\xf3\x19\xa2\x4a\xd6\x31\x74\xc9\x7f\xb3\xcb\xd6\x29\x28\xe2\x46\xf7\x93\x1e\xfb\xdc\x36\xcd\x91\x64\x41\x04\xb1\x87\x32\x14\x7b\x05\xb8\x0f\xd5\xe4\x30\x87\x49\xa8\xad\x0c\x45\xe1\x18\x6f\x59\x01\xb4\xe8\xd1\x0c\xbd\x08\x2e\x5f\x94\xa1\xa8\x31\x34\x96\x2c\x8e\x37\x34\x56\x26\xa1\xd9\x74\x20\xf6\xa6\xa2\x66\x46\xdf\x03\x8a\x53\xef\x6a\x26\xdf\xc3\x8a\x9b\x8a\x8b\x89\x99\x91\x8e\x68\xc1\x41\xb2\xcf\xa3\x4e\x96\x1a\xf0\x6d\xd3\x6c\x75\x4a\x16\x0c\x38\x56\x2f\x22\x61\x7a\x18\x42\x2b\xe6\x70\x12\xa1\xca\x62\xb8\xac\xcc\xea\xba\xd6\x31\xe8\x31\x78\x31\x23\x1d\xb0\xb7\x21\xb4\x32\xeb\x9b\xec\x87\x66\x71\x30\xab\xc9\xfc\xc7\xd2\x02\xce\x6d\x36\x6b\x1c\x60\xd1\xa9\xba\x32\xd4\x96\x53\xb6\x84\xc0\xef\x20\x5e\x92\xb8\x14\x52\xa6\x2a\x6c\xbe\xd8\xb0\x38\x40\xaf\x64\xbe\x85\x1f\xb0\xcf\x14\x1b\xd3\x4c\xfb\x61\x49\x83\xd8\x98\xd6\x61\x27\xac\xfe\xd9\xfd\x8e\xee\xfe\x61\x6a\x4d\xb1\x41\x04\x6f\xf7\xb1\x2f\x62\x63\xbe\xd8\xc0\x13\x30\x9c\x57\x0c\xe7\xe5\x54\x2c\x54\xf0\x8c\x86\xdf\x86\x38\x9b\x8a\xa4\xa9\xf9\xfa\x60\x7e\x4d\xf1\x32\x87\xdf\x26\x2d\x8a\xa9\x29\x86\x1e\x3c\x8b\x29\x86\x0c\x05\x26\xe3\x52\x86\x02\xcb\xc4\x84\x4a\xd6\xf1\x4f\x4d\x28\xc3\x83\xc9\xa2\xfd\xa9\xf7\x32\x97\xf9\xb8\xc3\xf7\x8a\x7d\xd5\xb2\x07\x6a\x0b\xc4\xdf\x12\x7f\x27\x62\x60\x89\xbf\x45\xd5\x40\x3a\x29\xe8\x5c\xa1\xd8\xe7\x58\xa2\x05\x4b\xf5\xb7\x54\x7f\x16\xba\x2f\xd5\x9f\x17\x62\xd2\x89\x3a\x5d\x89\xbd\x5f\xe2\xd4\xba\x79\x2e\xc9\xec\x9f\xb7\xd0\xc2\xda\x0a\xd7\x48\x8e\x05\x6b\xeb\x71\xac\xb5\x2a\xa7\xc5\x11\x62\x72\x59\x72\x72\x72\x46\x4b\xbc\x2c\xd4\x4b\xd2\x33\x5b\xca\x8d\x05\x36\xd2\x85\x39\xb2\x3a\x58\xf3\x4a\x4c\xba\xa4\x59\x3e\x5f\x96\x96\x5c\x16\x53\x18\x19\x58\x9e\xd1\x75\x5b\x87\x21\x7d\xd3\xf7\xfc\x36\x4d\xdf\xc5\x3e\x27\x3d\xae\xa5\x3a\x58\xf2\xf9\x95\xa8\xba\x40\x1d\xd4\x03\xf3\x21\x11\x9a\xad\x07\x9e\x63\x35\x3e\x99\x48\xf3\x54\xe3\x93\xf5\x90\xcf\x71\x81\xea\x01\x9f\xd7\xe3\x4d\x32\x1f\x94\x47\x10\x4b\xab\x07\xfc\x9b\xb8\x02\x59\x8f\xc7\xf9\xac\x05\xe2\x32\x5a\x3d\x08\x81\x57\xe3\x93\xe9\xb6\x02\x04\x75\x5f\xbd\x70\x93\xee\xb7\x76\xc3\xb1\xc4\x63\xd3\x6d\x09\x46\x97\x16\x30\x9e\xa8\xb5\xae\xc7\xf0\x3b\x86\xef\x3d\xf6\xf9\xde\x70\x8d\xc7\x8a\x8d\x83\x3e\x3c\xf4\x44\xd1\x76\x3d\xd8\xab\x7a\x4c\xd7\x2d\x54\x86\xa0\x76\xeb\xa1\x9b\x40\xdd\x78\x3d\x70\x13\xea\xa1\x9b\x40\xb5\x74\x3d\x96\x34\x6b\xa6\x51\x00\x5d\x8d\x81\xd6\x73\x6b\xc1\xcd\x80\xf5\xdc\x8a\x70\xff\xec\x8d\xba\x1d\x78\xe2\x62\x57\x6f\x04\x51\xf3\xc2\x7d\xa0\xcf\x7a\xca\x2e\x17\x95\x23\xd9\x1e\xaa\x46\xf6\x4c\x86\x39\x2b\xa1\x4a\x4a\xfd\xab\x81\xca\x4a\xc8\x90\x4b\x7f\xd5\x80\x61\x25\x38\x18\x36\x90\xaa\xa1\xc1\x7a\x6f\x01\x45\xad\x71\xbd\x11\x4f\xf5\xde\x12\x09\xdb\xbc\x1a\xc6\xab\x84\xe7\xd0\xe2\xd5\xe0\x5c\x25\x10\x47\xd8\xa7\x1a\x86\xab\x84\xd2\xb8\x29\x57\x0d\xa4\x55\x02\x64\x54\xbf\x56\xc3\x63\x95\x10\x57\xd9\xd0\xae\x06\xb8\x2a\x41\xaa\x02\xc0\x0c\x51\x55\x43\x54\xc7\xd6\x91\xd5\x08\x55\x35\x42\x75\x5e\xe5\x17\xb5\x79\x35\x7e\x55\x8d\x23\x91\x2b\xad\x86\x91\xaa\x97\x40\x2e\xea\x78\x8c\x8c\x54\xa3\x0c\xf7\x16\xb9\xd5\x6c\x76\xd5\xab\xc6\xb1\xab\x3a\xd5\xf5\xad\xaa\xdf\x46\x40\xd5\xdf\xad\xf5\x55\x8a\x7b\xa0\x6e\x5d\x35\x45\x98\xb6\xd7\x54\xcd\x10\x56\xad\x74\x0a\xc9\xab\x46\x7a\x7d\x93\x7c\x71\x83\x58\xdb\xb6\x5a\x7c\x59\xe0\x89\xe1\x5b\xa4\xc1\xae\x63\x8b\xc1\xaa\x95\x53\x51\xc3\x17\x5a\xa9\xaa\x85\xab\xb7\x0e\xb9\xa8\x58\x55\x7c\x95\xfc\xca\x75\xc1\x37\xca\xca\x8a\x2c\xba\x88\x12\x54\x45\x51\x5d\x9b\x45\x2e\x6a\x3a\xeb\x1a\xbe\xf5\x96\x20\x5d\x5f\x3e\x9b\x89\x88\x06\x13\x5e\x61\xf3\x47\x33\x47\xd0\x0e\x2f\xd0\x6d\x0b\xaf\x09\xe7\x06\x52\x2f\xaa\x23\x9b\x50\x6d\x02\x13\x25\xd3\x44\x66\x13\x99\xa4\xf9\x9b\xd0\x6c\x40\xf3\xe2\xea\x6d\x13\x9b\x0d\x6c\x5e\x54\x67\x36\xc1\xd9\x88\x29\xdf\xc7\xc6\x6b\x13\x8b\x0d\x2c\x5a\x2f\xd3\x04\x63\x0b\xc2\x7c\x6f\x4e\x13\x8d\x0d\x34\xde\x24\x9a\x9a\x70\x6c\xc0\xf1\x46\xa8\x34\xf1\xd8\xc0\xe3\x1d\xf6\xe6\x34\x01\xd9\x00\xe4\x1d\xf6\xe6\x34\x11\xd9\x40\xe4\x4d\xdd\x6c\x13\x91\x0d\x44\x5a\x2e\xd4\x84\x5c\x03\x72\x37\xe5\x60\x4d\xc8\x35\x20\x77\x3f\xdb\x43\x6e\x42\xae\x01\xb9\x3b\x6f\x87\xbb\x09\xb9\x06\xe4\xee\x12\xf7\x40\x21\xd7\x80\x5c\xc0\x6e\x6a\x42\xae\x01\xb9\x40\xe5\x7f\x13\x72\x0d\xc8\x05\xae\x2b\x35\x21\xd7\xf0\x87\xc3\x95\xf6\xc0\x46\xdc\xa4\x81\x42\xaf\x74\x36\x51\xd8\x40\x61\x40\x44\x36\x51\xd8\xc8\x02\x87\xc0\xe6\x88\xc2\x06\x0a\x43\x64\x73\x44\x61\x03\x85\x01\xf7\xa0\x89\xc2\x36\xe3\xf9\xf5\x23\x50\xbd\xd9\x66\xbc\xe9\x62\x20\xb5\x91\x4d\x60\x36\x80\x19\xb8\xf3\xd2\x04\x66\x03\x98\x66\x3d\x9a\xc0\x6c\xa0\x30\x90\x8d\xef\xa2\xb0\x83\xc2\x50\xb6\x66\xe9\xa2\xb0\x83\xc2\x48\x5d\x6a\x17\x85\x1d\x14\xc6\x93\x42\x36\x51\xd8\xcf\x5a\xbf\x7e\xc4\x6b\x7b\x4b\xfd\x24\xfa\xd4\x01\x66\xbc\xb6\x25\xd1\x05\x66\x07\x98\x91\xf8\x5b\x17\x98\xfd\xda\xca\x36\x92\xcf\xeb\x17\x59\x87\x0e\x56\x23\x91\xa7\x2e\x56\xfb\xbd\x2d\xdc\x48\x70\xa6\xdf\x58\x0c\x1d\xf8\x46\xee\x56\x74\xe1\xdb\xef\xed\x1f\x44\xaa\xd4\x3a\x72\xf6\xb3\x83\xe8\x48\x45\x7a\x17\xd1\x3d\xc4\xf8\xf5\x23\x72\xe7\xb2\x07\x9c\xef\xae\xc0\xa5\x66\xb8\x0b\xf2\x0e\xc8\x63\xda\x76\x5f\x17\xe4\x1d\x90\x7b\xb5\xa3\x0b\xf2\x0e\xc8\x63\xa6\x76\x4f\x90\xf7\xa4\xf0\xbe\xef\xdd\xe5\x5b\xa9\xb1\x85\x7b\x5c\xc2\xfc\xec\xa9\xb3\x11\x0f\xb5\x83\x0e\x1b\xd7\x26\x34\xd0\x93\xed\x19\x6a\x2a\xde\x9a\xbe\x85\x8c\xbb\xb9\x6e\xd3\xe5\x97\xae\x04\xbf\xa9\x4e\xea\x32\x4c\x57\x84\xdf\xd6\x1a\xca\x31\x5d\x21\x7d\xe3\x31\x76\x59\xa6\x13\xdf\x3f\x03\xc9\xa6\x9e\x31\x75\x3a\xb1\xf7\x53\x76\xe8\x19\x13\xb5\x67\x6f\x92\x25\xbe\x81\xa8\xfc\xfe\xa1\x22\x23\x15\xe6\x9b\xce\xe7\x4d\x30\xca\x71\x7b\x26\xca\xd7\xbd\x5c\xf8\x70\x8d\xb2\x13\x45\xdf\x3f\x56\x5f\x6c\x38\x76\x79\xb5\x53\x15\x15\xb9\x70\xd0\x0b\xd6\x63\x27\xb4\x9d\x0e\x56\x2d\xc4\x48\x3b\x1c\x9d\x8e\x0d\xed\x2e\x47\xf7\xb2\xf5\x68\x3a\x62\xa1\x98\x92\xfd\xa5\xf0\x28\x51\xec\xd5\xcb\xe4\xb3\xe0\xfb\x74\x6e\x81\xd1\xe5\xfb\x0e\xdf\xa7\x73\xfb\x73\x5d\xbe\xef\x54\xc8\x24\x2a\x81\x7a\x45\xf3\x77\x44\x41\x22\xef\xd4\x15\x05\x1d\x51\x90\x60\xf2\xae\x28\xe8\xcd\xb7\xb6\x6a\xed\xf2\x7d\x87\xef\x13\x57\x9b\xbb\x7c\xdf\xbb\x7a\xfc\xda\x03\xe5\xfb\x0e\xdf\xa7\xb4\x75\x67\x97\xef\x3b\x7c\x9f\xd2\xd6\x9d\x5d\xbe\xef\x30\x79\x7a\xfe\x5c\x23\xf7\xaf\xeb\xe4\xae\x0c\xe8\xc8\x80\x94\xb7\x6a\xed\xca\x80\x8e\x0c\x48\x05\xd8\x29\x03\x3a\x32\xe0\x39\xb6\x6a\x1d\xca\x80\x81\x0c\x78\xb8\xaa\x3d\x94\x01\x03\x19\xf0\x70\x75\x75\x28\x03\x06\x32\xe0\xb9\xb6\x6a\x1d\xca\x80\x01\xc3\xfb\x17\x37\x86\x0c\x3f\x60\xf8\x27\x1c\x79\x77\xf9\x16\xdc\xfd\x10\x53\x1d\x72\xf7\xb8\xb5\x65\xb6\xaf\x38\x64\xe5\x01\xdf\x3e\x14\xc8\x0e\xf9\x76\xc0\xa4\x0f\x55\xcf\x43\x26\x1d\x30\xe9\x03\xf2\x87\x4c\x3a\xb4\x8b\xf2\xd6\xa3\x43\x26\x1d\x30\xe9\x03\xee\x87\x4c\x3a\x60\xd2\x4c\x4e\x74\xc8\xa4\x23\x6d\x47\xce\x1b\xe6\x23\xc1\x09\x23\x69\x51\xed\x2d\x1c\x32\xdb\xa0\xb4\xd0\xc4\xd0\x78\x88\xa0\x0d\xf8\x2f\xbb\x13\xb2\xdf\x80\xfd\xbc\x20\x3a\xe4\xbe\x01\xf7\x65\x2e\x83\x0e\x99\x6f\xc0\x04\x39\x6c\x1d\x33\xe4\x81\x01\xba\x33\xa2\x62\x88\xee\x01\x6e\x73\x4c\x94\xfe\xfa\x16\xb8\xf5\xde\xc0\x10\xb7\xa3\x6e\xfb\xda\x8a\xee\x51\xa7\x6f\x31\x90\xac\xf9\x10\xb7\x03\xdc\x66\xfe\xee\xc8\x10\xb7\x83\xb8\xb2\x65\x50\xc3\xb0\xf2\x00\xca\x99\x88\xdb\x10\xca\x03\x28\x67\x22\x1a\x43\x28\x0f\xa0\x5c\x8e\xad\x93\x87\x50\x1e\x40\xb9\xc0\x62\x43\x28\x0f\x62\x1c\x85\xc4\xf0\x30\xc4\x31\x40\x77\x21\xa9\x33\x44\xf7\x00\xdd\x05\x87\x66\x08\xdf\x01\x7c\x0b\x29\x93\x21\x7c\x07\xf0\x2d\x61\xcb\xb4\x21\x7c\x07\xf0\x2d\x71\xab\x8a\x29\x7c\x27\xf0\x2d\x69\x4b\xb4\x29\x7c\x27\xf0\x2d\x29\xe5\x2f\x9f\x53\xf8\x4e\xe0\x5b\x28\x09\x9e\xc2\x77\x02\xdf\x42\x30\x78\x0a\xdf\x09\x7c\x0b\x37\xd5\xa7\xf0\x9d\xc0\xb7\x50\x32\x35\x85\xef\xb4\x02\xe0\x20\x0e\x31\xc5\xef\x34\x3b\x7f\x90\x31\x9d\x02\x78\x9a\x75\x3f\xc8\xda\x4d\x11\x3c\xcd\xb0\x1f\xa4\xae\xa6\x10\x9e\x66\xc9\x0f\x6e\xa9\x4e\x31\x3c\xcd\x7e\x1f\xa4\x31\xa6\x20\x9e\x66\xb0\x8f\xb8\x15\xc4\x14\xc5\x53\x05\x71\x50\xdf\x31\xc5\xec\x7c\x4d\x7c\xe2\x06\x53\x84\x4e\x15\xc4\x41\x85\xf2\x14\xa2\x53\x05\x71\x50\x2a\x38\xc5\xe8\x34\x1b\x7c\x10\xde\x9c\x5c\xa2\xff\x9c\x0a\xef\xa3\x6c\xeb\x65\x0a\xdc\xe9\x6d\xe9\xf3\x60\xab\xcc\x34\x4e\xed\xfd\xf3\xd8\x7e\xe0\x14\xcd\x53\x83\xff\xe4\x2f\x63\x4c\xe1\x3c\xb5\xf8\xcf\xf3\xd9\xf3\x89\xe7\x59\x5f\x1f\x64\xcb\xf9\x29\x7a\xa7\xf7\x39\xcf\x7b\x2b\x8d\xc9\x7d\xce\xcf\xa9\x1f\x70\xde\x1c\xa4\x90\x9e\x64\x01\xce\x93\xab\x1f\x93\x5c\xc0\xfe\xe1\x3d\x52\x34\x53\x50\x4f\xbd\x83\x33\x6c\xd8\x4d\x51\x3d\xa9\xdc\x3b\x4f\x14\xf1\xec\x94\x55\x4e\x4b\xf6\xce\xb4\x5d\xab\x29\xd4\xa7\xa5\x73\x27\x97\x89\xa6\x58\x9f\xde\x6a\x3a\xb9\x58\x32\x2d\x93\x9b\xc6\xf3\x4e\xae\x77\x4c\xd1\x3e\xbd\x5b\x73\x92\x2a\x99\xc2\x7d\x4e\x2a\x3c\xce\x0c\x46\x27\x15\x1e\xd3\xf2\xad\x13\xc1\x35\xe5\x81\x69\xac\xe3\xa4\x2c\x70\xca\x04\xd3\x58\xc2\x45\x99\xe1\x92\x0b\x96\x17\x39\x2e\xfe\x62\xc3\x3a\xb0\x72\x96\x7e\xfe\x75\x52\xdf\x2f\x6b\xac\x83\x58\xc7\x45\xf9\xdb\x3a\xb0\xbf\x96\x7e\xf4\x85\xe5\xb6\xe4\x97\x75\x12\x73\xb8\x2e\x0a\xcf\x4f\xca\x11\xd7\x49\x65\xf9\x85\x1a\x5c\x27\xea\x79\xbd\xae\x34\xa9\xd3\x25\x63\x2d\x6b\x84\x2e\xee\x64\x2c\x39\x6b\x5d\xc4\x20\x2f\xfe\xf0\xc4\xba\x88\xed\x2c\x6b\x7f\xae\xf0\xd0\xe7\xd8\x8b\x78\xed\x45\xca\x6c\x5d\x84\xff\x97\x95\x39\x17\xd7\x39\x97\x3c\xb8\x6e\xd2\x1d\x57\xcc\xf4\x91\xee\x58\xf2\xe5\xe5\x2d\x03\xf9\x72\xc9\x97\x57\xda\xd2\x7a\xc9\x97\x2b\x10\x7b\xba\xb8\x52\xbd\x02\x31\xd2\x25\xaf\x5e\xcf\xb6\xbd\x97\xbc\xba\x02\x31\xa5\x8b\xd4\xd5\x0a\xcd\xf7\x08\xeb\x5f\xa4\x81\x56\x40\xc0\x2d\x79\xfa\x2a\xdb\x08\x5a\xf2\xf4\x92\xa7\xaf\x72\xdc\x7f\xa9\xc0\xd3\xf3\xd7\xfa\x7b\xc9\xf1\x2b\xbe\xb3\x70\xa1\x40\x8e\x5f\x89\x53\xb8\xb9\xc9\xb5\x12\x91\x9f\xa5\x14\xb8\x89\x00\x2e\xa5\xc0\x7a\xcd\x44\xa2\x78\x4b\x29\xb0\x5e\x33\x11\xd3\x66\x29\x05\xd6\x6b\x26\x5e\xd4\xed\x2b\x05\xd6\x6b\x26\x72\xdf\x7d\x29\x05\x96\x1c\x7f\x93\xa8\x5d\x72\xfc\x82\xc9\xcf\x3b\x72\x82\x14\x15\xec\x9f\xe9\x8d\x0f\xde\x73\xac\x45\xe7\x37\x57\x12\x57\xe9\xbe\x47\x14\xf4\x4e\x8e\xa5\x2e\x6b\x99\xc4\xbf\x31\xc2\x17\x7f\xb9\xe0\x73\xbd\xe1\x01\x6e\xbb\x2d\xa5\xc5\x32\x99\x9e\x48\x60\x2f\xfe\x22\xc0\xfe\x21\x5c\x83\x3f\xb5\xb8\xfe\xff\xb9\x94\x2a\x29\x6c\x69\xb1\x94\x2a\xcb\x24\x79\x0a\x31\xd3\x57\xec\xf3\x7e\xc4\xdb\xd7\xe8\xf3\xf2\x59\xe0\x96\x86\x49\xf2\x55\x8d\x7e\x05\x10\x46\xc6\xfc\x73\x55\x23\x5d\xde\x00\xb1\x58\x7b\xbd\xc1\x0a\x74\xd2\x52\x72\x2d\xff\x22\x55\xc2\x0d\x59\x64\x9f\x3f\x57\x23\x09\x98\xa2\x57\x54\x22\x67\xd9\xa8\xe1\x48\x24\xa7\x16\x59\xe5\xcf\xf5\x46\x3a\x48\xe0\x2c\x25\xdc\xf2\xc6\x78\x42\x22\x2d\xb2\xc5\x9f\xab\x19\x0d\xa7\x8a\x6f\x91\xdd\xdd\x3f\x8c\x25\x7b\xb2\x4c\xe8\x2e\x2f\x7e\xa7\x04\xda\xb9\xce\xfd\xb9\x4c\x98\x26\x02\x4c\xcb\x84\xe9\x6a\x46\x2d\xf1\x2b\x17\x97\x9e\xf7\x0f\xf3\x11\xa9\x5e\x4a\xd1\xe5\x75\xe6\x44\x14\x79\x99\xf4\x5c\x3d\xf8\x1e\x52\xa0\x47\xdf\xe3\x36\x6a\xe2\x3a\xdb\xe2\xa6\xf3\xe7\xf2\xaf\x61\x25\x2e\xaf\x2d\x13\x9c\xcb\x1b\xc5\x89\xbf\xeb\xb0\xb8\x37\xfc\xb9\x4c\x66\x26\xfe\x18\xc1\x22\x8b\xb9\x7f\x5c\x03\x6c\x28\xbd\x57\xe7\x3a\x61\x7a\x6f\xe7\x90\x11\x58\x5e\xf6\x4d\xd8\x41\x8b\xcb\xbe\xfb\xe7\xbd\xaf\x72\xd0\xe7\x1a\xdd\xf7\x90\x34\x64\x13\x3f\x57\xa7\x90\x21\x65\xbf\x6d\x4a\x1f\xd1\xc8\x24\xc7\x77\xa2\x91\xab\xa3\x71\x52\x96\x66\x34\xce\x52\x6b\xa4\x0c\x9e\xd5\x1a\xcb\xe4\x5e\xe2\x6f\xa3\x2d\x93\x7b\xcb\xbf\xe1\x95\x32\xf7\x8e\x2c\xea\x5e\x6a\x97\x84\x6b\xbe\xd4\x2e\xcb\x8b\xad\x89\x3a\xc3\x35\x3c\xdf\x61\x44\xbb\x04\xef\xf0\xf0\x6d\xc3\xa8\x2a\xf7\x81\xd7\x90\xe6\x21\x7d\x14\x75\xaf\x41\xb4\x74\xbd\x99\xa6\x52\xb8\x82\x23\x7d\xd3\xbf\xa0\x47\x4d\xe1\x32\xbc\xb0\x2c\xb8\x7e\xa8\x29\x5c\x16\x57\xaf\xe9\x9f\x8f\xe3\xae\xe9\xe2\xae\xe9\xfe\x21\xfc\x46\xc6\x67\xa9\xd5\x96\x77\x45\x9f\x63\x1b\xfb\x6b\xca\x5b\xd3\xa2\xfd\xc3\x5b\x40\x14\xed\xaf\x39\xbc\x88\xc5\x65\xaf\x39\x5d\x63\x7a\x19\xe4\xb6\x6f\xd8\x67\x84\x97\x4b\x69\xd3\xbd\x57\x4b\x3e\x67\x08\x7f\x29\x59\x77\xe3\xf7\xf5\x87\x2f\x7f\xfe\x63\x89\xfd\x0f\x3f\xfe\x38\xbf\xfd\xcc\x1f\x66\xe4\x2f\x22\x7e\x8c\xb9\xbe\xfb\x36\xff\xfc\x47\x1e\x7f\xf8\xfe\x87\x3d\x8a\x7f\xff\x37\x00\x00\xff\xff\x50\x54\xfb\x3f\x10\x52\x00\x00"); -var _dbcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x30\x10\x05\xe0\xbb\x7f\xc5\x1c\xb7\x87\xd6\x96\x14\xad\x2d\x28\x0b\x25\x29\xd4\x85\xed\x96\xa6\xd9\x16\x4a\x0f\x8a\x34\x0e\x86\x46\x36\xb2\x73\xc8\xbf\x2f\x7a\x93\xa6\x87\xa0\xf8\x8b\xe6\xf1\x02\xe3\x7a\xdb\xef\xfa\x34\xae\x54\x7f\xcd\x53\xd8\xf3\x4a\xc3\x98\x62\xe6\x65\xba\xe4\xc0\x74\xe4\xd3\x98\xaa\x4a\x69\x8a\x63\x58\xff\x3d\xe2\x08\x67\x3f\x57\x55\xfd\xf1\xb0\x7d\xfb\x89\x2e\x0b\xdf\x9e\xb7\xfd\x6e\x7f\x5d\x56\x3e\xf7\x69\x98\xc8\xc8\x5c\xbc\xcc\xb7\x59\xa2\xfa\x1b\x9f\xc6\x65\xcd\x57\x7a\xf8\x10\xa7\x23\xbf\xa1\xc8\x43\xf1\x97\x1c\x39\x8f\xe9\x44\x0f\x9f\xfd\xec\x93\xba\xff\xb0\xbf\xcc\xf3\x1f\x3e\x73\x5a\x49\xc1\x38\x45\x9c\x55\xbd\x7d\xf6\xf3\x17\x7f\x66\x42\x8f\x57\x28\xf0\x95\xf3\x32\x4e\x89\x94\x7e\xd7\x34\xf6\xbf\x7f\xbf\xce\x7c\x4b\xa9\xea\x43\xbf\x7b\x19\x86\x85\x57\xea\x9a\x46\xee\xfc\x3c\xf4\x3b\xfa\xa5\x48\x35\xa4\xad\x31\xcd\xef\xdb\xd5\x1f\xcf\x53\xbc\x0f\xea\x56\xfe\x4d\x18\x63\xf6\xe9\xc4\xd5\x7b\xaf\xbc\x7e\xa2\x72\x98\x27\x6a\xbb\xae\x2d\x74\x54\xa0\xa3\x06\x39\x50\x10\xe2\x42\x4e\x15\x0a\x72\x2b\x58\xd0\x06\xe4\x41\xf1\x08\xc2\x20\xcb\xad\x72\xb4\x4e\x95\xf8\x8d\x07\xe1\x68\x9d\xea\x40\x46\xc8\x80\x1c\xc8\x0a\x95\x78\xa7\x1b\x50\x2b\xd4\x82\x14\xc8\x09\x39\x90\x2e\x14\x24\x2b\x20\x4b\x9b\x42\x2c\xc4\x42\x1b\x90\xc4\xb3\xc4\x5b\x90\xc4\xb3\xc4\x3f\x82\x58\x88\x41\xa5\xbd\x95\xf6\x56\xda\xeb\x0e\x64\x84\x24\xde\x81\xac\x10\xe2\x4d\x03\x6a\x85\x10\x6f\x14\xc8\x09\xa1\xbd\x29\xed\xad\xb4\xb7\xd2\xde\x94\xf6\x56\xda\x5b\x69\x6f\x36\x20\x89\x97\xf6\xc6\x82\x24\x5e\xda\x9b\x47\x10\x0b\xa1\xbd\x41\xfb\x41\x06\x87\x47\x50\x57\x36\xf2\xbe\x0c\xe5\x7b\x79\x17\xee\xbb\x19\x2e\x39\x73\x5a\xf1\x26\x60\x09\xcb\x16\x8d\x89\xef\x6f\xd9\x3c\xcd\x65\x0a\x9f\xbf\x01\x00\x00\xff\xff\x11\x50\xcc\x91\x91\x03\x00\x00"); -func _dfab ()(*asset ,error ){_dbaf ,_dga :=_dbec ();if _dga !=nil {return nil ,_dga ;};_fcae :=bindataFileInfo {_ag :"GBK2K-H",_bc :88688,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492018,0)};_agbb :=&asset {_cd :_dbaf ,_dce :_fcae };return _agbb ,nil ; -};func _efbc ()(*asset ,error ){_dddc ,_gfef :=_cafg ();if _gfef !=nil {return nil ,_gfef ;};_fbagb :=bindataFileInfo {_ag :"UniJIS-UCS2-HW-H",_bc :472,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492901,0)};_bcee :=&asset {_cd :_dddc ,_dce :_fbagb };return _bcee ,nil ; -};func _edd ()([]byte ,error ){return _dc (_fedb ,"Adobe-Japan1-0")};func _abege ()(*asset ,error ){_ffada ,_ebf :=_cbd ();if _ebf !=nil {return nil ,_ebf ;};_ade :=bindataFileInfo {_ag :"ETen-B5-H",_bc :5459,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491749,0)}; -_adbgg :=&asset {_cd :_ffada ,_dce :_ade };return _adbgg ,nil ;};func _ddea ()([]byte ,error ){return _dc (_fcfd ,"UniGB-UTF32-V")};func _fdbc ()(*asset ,error ){_dggf ,_ffbg :=_bdgc ();if _ffbg !=nil {return nil ,_ffbg ;};_dfadb :=bindataFileInfo {_ag :"Roman",_bc :450,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492645,0)}; -_fdeca :=&asset {_cd :_dggf ,_dce :_dfadb };return _fdeca ,nil ;};var _febdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xcf\x35\xb9\x91\xa6\xb7\xaf\x5f\xf1\x2c\xc7\x8b\xb1\x4e\xf2\x9b\x40\xe1\x05\x7a\xa4\xd1\x58\x8b\x9e\x31\xdc\xd3\xb6\x01\xc3\x8b\x93\x0c\x52\x28\xc0\xaa\x2a\x94\x4a\x8b\xfe\xf7\x46\x5e\xd7\x91\x3d\x18\x1b\x28\x2d\x0a\x77\xbd\xf1\x64\xe6\x61\x32\x23\x82\x41\xc6\xcd\xe0\xef\x7e\xff\xa7\x3f\xfc\xe9\xc7\x1f\x7e\xfd\xfa\xdd\xff\xfc\xcb\x4f\xeb\x5f\xf6\xaf\x5f\xe7\x87\x1f\xe3\x97\xfd\xd7\x9f\xfe\xf6\xcb\xda\x5f\xf7\xfe\xf3\x0f\x3f\x7e\xf7\xdd\x95\xbe\xe2\x87\xf5\xeb\xdf\xff\x09\xac\xbf\xbc\x7f\xfe\xee\xbb\xe7\xfe\x7f\xf9\xb7\xbf\xfe\xba\xff\xf2\xa7\x1f\xcf\x4f\x5f\xd9\xeb\xe2\x6f\x3f\x7f\xae\xfd\xfa\xfa\xdd\xff\xb2\xff\xfc\xc3\x5f\x7f\xfd\xe5\xdf\xbe\xfe\xdd\x3f\xc5\x4f\xf7\xfe\x1f\xbe\x62\x9f\x47\xfe\x5f\x7e\x89\xfd\xcb\x0f\x3f\xfe\xf9\xeb\xdf\xfd\xa7\xff\x70\xfd\x3f\xd2\x7f\xf9\xdb\xcf\x3f\xff\x5f\xfb\x2f\xfb\xc7\x5f\xbf\x2e\x64\xfb\xc7\x00\xbf\xfb\xdd\xef\xff\xf9\xfd\xf3\x7f\x7e\xff\x65\x7f\xfd\xee\x3f\xfd\x87\xff\xfa\xf3\xfa\xf7\xff\xf1\x5f\x7f\xff\xef\xff\x27\xfe\xc6\x9f\xfe\xd7\xfd\xcb\x5f\x7f\xf8\xe9\xc7\xaf\xeb\xf5\x3f\xbe\x5e\xed\xff\x95\xff\xd7\x7f\xfb\x79\x7f\x9e\xf5\xdd\xef\xfe\xf5\x4f\x7f\xf8\x2f\xe7\xfc\x75\xff\xfa\x95\xc7\xcb\x6b\xfe\xf7\x7f\xfd\xd3\x1f\xbe\xfe\x8f\xeb\xeb\x7a\x7d\xa5\x9a\x7b\xf9\x3f\x3f\x97\xfe\x6f\xff\xfc\x53\xec\x2f\x2f\xfa\x2e\xfb\x3e\xeb\xa7\xd8\x7f\xfd\xf9\xbd\xf6\x2f\xef\x1f\xff\xbc\xbf\xfb\xfa\xfa\xfe\xf5\xfa\xf6\xf5\xf5\xf5\xfd\x78\x7d\x7b\xfe\xf5\x4f\xd7\x3f\x5d\xdf\xbe\xbe\xff\xe3\xef\xff\xf8\x1f\xf9\xf7\x1f\xff\xc0\x5f\xff\xf8\xc7\x6f\xcf\x7b\xfc\x77\x77\x7f\x77\xf9\xd0\x1f\x7f\xfa\x35\xf6\x51\xc6\xf3\xbe\xbf\xce\xb7\xaf\xeb\xb9\xe3\xbf\xfd\xd3\x77\xd7\xeb\xf5\x69\xc5\x0f\xf1\xb9\x3a\x3d\x57\xf7\xfd\x5c\xfd\x34\x81\x76\x7c\xf5\x7e\xa5\xef\xbe\x7f\x5f\xef\xa7\x29\xef\xeb\xec\x6f\x5f\xb3\x7d\xf7\xfd\x3b\xdd\x08\xd2\x4e\xdf\xbe\xae\xf9\x7a\x24\xbb\x2a\xd9\xdf\xbe\x52\x41\x72\xbc\xe6\xac\x6f\x5f\xa9\x3e\x92\xec\x63\xf2\xf3\x98\xd4\x9e\x07\x17\x25\xe5\xe4\x6f\x5f\xb9\x3e\x4f\xae\x4a\xea\x69\xdf\xbe\x4a\x9e\xdf\x7d\xff\x6e\x4a\xda\x3d\xbe\x7d\xd5\x54\x1f\xc9\x52\x72\xea\xb7\xaf\x5a\x9e\x6b\xba\xd7\xf4\xe7\x0f\xed\xf5\x3c\xb9\x87\x92\xa7\x11\x2d\x3f\x77\x0d\xaf\x19\xeb\xf5\xed\xab\xb5\xf1\x48\x16\x6d\x1e\xfb\xfd\xed\xab\xbf\x9e\x16\xce\x77\x79\x24\x73\x9f\x6f\x5f\x3d\x3f\xd7\xbc\xbd\xeb\xfd\xb4\x79\x5c\xe5\xbb\xef\xdf\xb7\x92\xfb\x79\xce\x7c\x8d\xef\xbe\xbf\x5f\x48\xee\xd7\xbb\x7f\xfb\x9a\xcf\xbb\xdf\xaf\xf7\x50\x32\xe8\xc3\x8e\x68\x2a\x9a\xcf\x45\xde\xf6\x56\xf2\xe6\x22\x45\xb7\xa2\xf5\xed\x6b\x56\x9f\x14\x4a\x36\x17\x4d\x44\x07\xd1\xd3\x21\xb3\x96\x47\x72\xfb\xec\x07\x7a\x4f\x17\x22\x1f\x7e\x9f\xe7\x93\xd5\x47\xf2\x34\xf8\x03\xbd\xa7\x84\xc8\x86\x47\xfa\xf6\x35\x3b\x92\xc8\x4a\x32\x17\x65\x44\x45\x51\xf9\xf6\x35\x27\xcf\x8e\xaa\xa4\x72\x11\x2d\x88\xa6\xe8\x79\xbb\xe9\x6d\x36\x20\x78\xbb\x44\x0b\xc2\xb7\x7b\x60\x4e\xde\x37\x96\x92\xc5\x45\x0d\x91\x2f\xbc\xf3\xb7\xaf\xeb\xf5\xa2\x0f\xb6\x2d\x78\xa0\xf7\x44\x6f\x6e\x9b\xb0\x6f\xae\xe2\x59\xdb\x67\xed\xe0\x2a\x45\x5b\xd1\xa3\xd6\x2f\x3f\xc3\xb6\xf3\xf8\xc2\x3d\xf3\xf8\x63\xc7\x9c\xc4\x55\x74\xf1\xb1\x1b\x0e\xdd\x90\x79\xe9\x63\x23\x1e\xc5\xbc\x5e\xf6\xcc\xe9\x8a\x3a\x57\xd1\x7f\xc7\x0f\xff\xc0\xf5\xb2\xa9\xc7\x8f\x73\xf8\x38\xd9\x1b\xed\x9b\x43\xbb\xd2\xf3\x8b\x9a\xd8\x7d\x3d\x0a\x78\xbd\x72\x41\x54\x15\x35\x6e\x54\xd4\x15\xf5\xe7\x2a\x54\xed\x52\xd5\x2e\x55\x2d\x37\x44\x53\xd1\x9b\xab\x12\xa2\x5b\xd1\xcd\x55\x1d\x11\xfd\x75\x3d\xa6\x7c\xbd\xca\xf3\x81\xae\x3b\x29\x4a\x5c\x35\x10\x65\x45\x7c\x8e\xca\xb3\xee\xa2\x88\xcf\x9f\x69\xfd\xdd\x14\xd1\x39\xd5\x67\xd9\x54\x75\xb2\x5c\x88\x78\xed\xeb\xd1\xc0\xeb\x55\xb9\x51\x0d\x04\x7a\x2f\xbc\xe3\xb2\x11\x6b\x3e\x57\x35\x9a\xba\x3e\x37\xa2\x4b\x36\x75\xf9\x42\x8b\x2e\xec\xbc\xf6\xe2\xd3\x5e\x81\x82\x17\x44\xe1\xe3\x83\x77\x1c\xb4\x3e\x7c\x7c\xf0\x8e\x18\xe2\xa5\xd2\x5f\x41\xdf\x0f\x1a\xa1\x8a\x5f\xaa\x78\xa1\xa9\xaa\xf8\x15\xfc\xe2\xa0\x5d\xe1\x2f\x6e\x5a\x8f\xbd\x5e\xdb\xc7\xab\xbe\x93\x1b\x55\xdf\x4b\xf5\xad\x19\x91\x8f\xdf\x4f\x7f\x5d\x2f\xda\xb5\xed\xaf\xcd\x77\xc4\xac\xaf\xed\x77\x7c\xe0\xba\x5e\xbc\xd0\xb6\x27\x70\x59\xbd\x2a\xb2\x27\x1e\xbd\xbf\x2e\x4c\xe1\x52\xef\x81\xde\x2b\x4d\x55\xef\xaf\x47\xd7\xaf\xeb\xe2\x17\x8f\x9d\x73\x6c\x3d\x37\x1e\x5b\xff\xe8\xfd\x75\x5d\x74\xb4\x7a\x7f\xa9\xe4\x7e\x34\x95\xfc\x7a\x3c\xfb\x75\xe1\x6e\xae\x13\x8a\x30\xbe\xc6\x3b\x1e\x1b\x81\x92\x5f\x98\x42\x52\xc9\xd3\xa3\xd8\xd7\x85\x89\xa6\x77\x53\xc4\xe3\x5b\x41\x34\x14\x3d\xb6\x7d\x3d\xbe\xfb\x4e\xea\x2a\xd0\x7b\x6b\x88\xf8\xc5\xf4\x28\xe3\x75\x61\x0a\xe9\xae\x8a\xf8\x68\x68\x4e\x52\x31\xd3\xe3\x2b\xaf\x8b\xef\x98\x74\x96\x49\xc5\x6c\x34\x42\xc5\x4c\x8b\x76\xf1\x85\xd2\xf2\xc6\x85\xf1\x35\x6e\x5c\x5d\x11\x1d\x6d\x23\x16\xef\x98\x82\xd6\xf7\x17\x43\xf3\xdf\x87\xd4\xff\xbf\x51\xf6\x4e\xe1\xcb\x05\x0f\x19\xfc\x54\x7c\x1e\xc2\xd7\x1a\xbc\x89\x8a\x05\x5c\x0c\xb0\x77\xda\x78\x29\xa0\xf7\x71\x21\xb2\x3b\x1f\xb8\xae\x99\x10\x25\x45\x38\xae\xa1\xa8\x28\xe2\x3b\x4c\xba\x53\x65\x48\x3a\x41\x14\x3e\xe9\x04\x13\x4e\x30\xbd\xe8\x3b\x9d\x20\x03\x78\xef\x83\x1b\xfd\xcc\x89\x6f\x9a\xd2\xd3\x2e\x07\xf5\x3b\xbf\xb1\x27\x1e\x9f\xdf\x59\x51\xe6\xaa\x82\xa8\x28\xa2\xa3\x66\x47\x34\x14\x0d\xae\x9a\x88\xa6\xa2\xe7\xd3\x8c\xd7\x85\xe8\xad\xe8\xe9\xaf\x94\x15\x6d\x45\x9b\xab\x12\x22\x5e\x28\xa3\x0c\x09\x27\x98\x55\x06\xa0\x8f\x57\x46\xd4\x14\xf1\x8b\x45\x91\xbf\x78\xfb\x8b\x34\x55\x65\xc8\x37\xbf\x58\x68\xea\xed\x2f\xde\xfe\x22\xef\x78\xfb\x8b\x8f\xe3\xba\x12\x7e\x31\xeb\xb8\x80\x3e\x30\xd7\xbc\xec\x89\x45\x4f\x54\x45\xf6\xc4\x03\x7d\xd0\xd1\x79\xd9\x54\xd4\x2f\x61\x88\x59\xf5\x03\xfa\x78\x29\xea\x8a\x1e\xab\x4b\x8d\xbe\x5f\xa1\x28\xb8\x8a\x2e\x54\x23\x81\x2b\x35\x1f\xff\x69\xea\xf3\xb5\xc7\xc5\x8d\xc1\xd7\xce\xf8\xc5\x84\x76\x67\xfd\x22\xd0\xc7\x45\x47\xeb\x17\x73\xd0\x5f\xc4\x07\x39\xec\xaf\xa0\xbf\x2e\x45\xf6\xd7\x03\x57\xea\x3e\xeb\x56\x74\x73\x15\x1d\xed\x48\x0f\x5c\x69\xf8\x78\x5b\x1f\xb4\xfe\xa2\xef\x35\x85\x4c\x5c\x99\xb0\x8e\xbc\x6d\x04\x1a\x3d\x70\x49\x59\x8d\x06\xae\x34\xf8\x45\x1d\x6a\xde\xf4\xd7\x45\x47\xeb\x50\x81\x2b\x61\x1d\x79\xab\x72\xf8\xd8\x41\xc4\x95\xf5\xb1\x79\xd3\xfa\x49\x23\x74\xa8\xf9\x89\x27\xfa\xb8\x7c\xbc\x4d\xc5\x86\xd2\xf4\x46\x7b\x15\x1b\x1a\x38\xc1\xac\x0d\x01\x57\x56\x7d\xf5\xb1\x40\x1f\x04\x5d\x59\x1f\x0b\x5c\x59\xc5\xd4\xd2\x80\x3e\x92\x22\xdf\xf1\x89\x1a\xae\xac\xca\x19\x35\xe4\x43\xaf\x6a\x56\xc7\x5e\xc5\x1e\x33\x1d\x6d\x48\x7d\x17\xec\x71\x10\x52\x15\xed\xb1\x10\x5b\x64\x5e\xbb\x18\x5b\x14\x62\x8b\x91\x14\x75\x45\x4f\x4f\x64\x9a\x5a\x8c\x1a\x80\x3e\x08\x96\x8a\x9e\xb8\xbc\xf9\x45\xbc\x7a\xd1\xf8\x80\x3e\x30\xd1\x72\xd3\x13\xe5\xe6\x1d\x3f\x22\x1b\x71\xa3\xf7\x04\x4b\x45\x13\x2d\x4f\xa4\x70\x65\xac\xb6\xdc\x43\x11\x5f\x88\x98\xa7\x68\xa2\xe5\xe6\x17\x71\xf4\x45\xe3\x03\xfa\x60\x84\x28\x46\xb7\x05\x7b\xcc\x58\x6d\xd1\x1e\x8b\xf6\xe8\xe3\xb5\xc7\xf2\x98\xd5\x95\x19\xb0\x8b\x66\x05\xf4\x91\xbd\xd1\x46\x10\x81\xe4\xea\xe3\xdf\x8a\xde\x5c\x45\x7f\x19\x81\x14\xec\x31\x57\x45\xa1\x08\x8d\x26\x32\x2a\xda\x23\x70\xe5\x46\x4f\x68\x8f\x45\x7b\xf4\x85\xb4\xc7\x12\xf4\x17\xc3\x67\xd1\xf8\x4a\xd0\x5f\xc4\x4f\xc5\xa0\xa4\x04\xed\x62\xe4\x2a\x1a\x1f\xd0\x47\xf1\x46\xdb\xf5\xc0\x95\x3b\x5d\xa8\xf1\x01\x7d\x14\x45\x36\x75\xd3\x7a\xe2\xa7\xb2\x3f\x22\x5a\x4f\x94\x55\x0c\x24\x80\x2b\x13\xd7\x17\xf5\xbe\xa8\xf7\x44\x59\x45\xbd\x2f\x87\xef\xc8\x10\x50\x0c\x11\x80\x3e\xfc\x1c\xc6\xc1\xe5\xd1\xe2\xab\xe0\x6a\xcb\xb1\xa9\x6a\x34\xb1\x58\x51\xa3\x0b\x1a\x5d\x70\x8f\x4e\x09\xef\xfa\x68\xf4\x55\xf0\x5f\x55\x8d\x06\xfa\x60\x58\xaf\x8e\x30\xc0\x55\xae\xfc\xdb\x43\x71\xd5\x06\x2a\x91\xf3\xa8\x3e\x77\x2a\xba\x79\xc8\x40\xb4\x14\xd1\x77\xc4\x65\xd5\xd0\x03\xb8\x0a\x96\x52\x1d\x93\xaa\x36\x80\xca\x54\x6d\x00\xb8\x4a\x52\xe4\x9b\x38\x26\x11\x97\x55\xc7\x24\xe0\x2a\x58\x4a\x35\x72\x06\xfa\x68\x3c\x5e\xb3\xa8\x8f\x29\x5c\x85\x39\x44\x75\x98\xaa\x37\xed\x6a\x8a\x6c\x17\xe3\x48\x41\x49\xab\xe3\x48\x75\x1c\x21\x66\xa9\x2a\x7c\x5d\x7c\x87\xe2\x55\xb7\x22\xbe\x03\x83\x46\x5d\xbe\xf6\xa3\xa4\x57\x21\x24\xaa\x2a\x29\xd0\x07\xea\x57\x8d\xaf\x2b\x7a\x5b\xaa\x22\x3f\x0d\x33\xc8\xc1\xd0\x52\x9d\x41\x56\x7c\x7f\xc1\x06\xaa\xea\x57\x83\xfe\xea\xf4\xbd\x01\x4e\xc5\xf7\x97\xce\x2f\xea\xfb\xab\xbe\xff\x23\xf2\x59\x9b\x77\xec\x34\x75\xfb\x8e\x9b\xfe\x42\xe1\xab\x8e\xbe\xa2\xdd\x85\xd1\xa6\xaa\xdd\x55\xed\x46\xe1\xab\xda\x5d\x0f\xcf\x22\xa2\x67\xdd\xe1\x01\x9f\xa5\xc8\x67\x11\xed\x96\xa9\xc8\x67\x1d\x9f\xc5\x3b\x9e\xcf\xb3\x1e\xbd\xad\x78\x75\x17\x2e\xee\x46\x18\x54\x51\xf8\xa6\x92\xb6\x37\x0a\x40\xa8\xd7\x0c\x80\x81\xab\x32\x86\x37\x3d\x31\xd0\x07\x41\x5c\x33\x58\x02\xae\xca\xe8\xdc\xd4\xd5\x66\xb0\x34\xfc\xc5\xb7\xa2\x37\x57\x29\xba\x15\xf1\x69\x87\x8d\x58\x8a\x68\x2a\x23\x6a\xd3\x85\xb7\x9b\x4f\x4b\xa8\xd7\xd4\xd5\x86\x0b\xaf\x84\x7a\x4d\x17\x0e\xf4\x41\x7f\x35\xe7\x82\x0d\xf5\xad\x8c\x5c\x4d\xf5\x6d\xaa\xef\x18\x88\x6c\x3d\x2e\xbc\x26\x6f\xf4\x17\x99\xf8\x0d\xc6\xf0\xa6\xbf\x6e\x04\x4b\x15\x4f\xdc\x0c\x96\x9a\xc1\x12\x63\x78\x33\x58\x02\xae\x8a\xf7\x6c\x2a\x79\x53\xc9\xf1\x52\x4d\x25\x6f\x38\xe7\x5a\xbc\x31\x14\xf1\xd1\x18\xe9\x9b\xce\x19\xb8\x58\x49\xba\x9b\xce\xb9\xa9\xe4\xf8\xb2\xa6\x92\x37\x94\xbc\x12\xea\x35\x95\xbc\xe9\x9c\xd1\x89\xa6\x73\x06\xae\x4a\xa8\xd7\x9c\x31\x02\x7d\x30\x17\x6c\x61\xbb\x08\xa9\x2a\x06\xd3\x0c\xa9\x80\x3e\x59\xf0\x68\x7a\x75\xe0\xaa\x18\x4c\xd3\xab\x03\x7d\xbe\x14\xf9\x1d\x1f\xbb\xb9\x2a\x1e\xa0\x39\x23\x00\xfa\x24\x34\x6e\xce\x08\xda\xe6\x17\xb1\xc7\x66\xcc\x03\xf4\xa9\xae\x3a\xaf\x6c\xac\xa7\x54\xf4\xbe\xed\xcf\xe3\x17\x57\xd1\x5f\xda\x10\x70\x55\xd5\x57\x1b\x6a\x0c\x07\x93\x38\xa5\x39\x1c\x00\x57\x55\x31\x0d\x83\x80\x3e\xf1\xea\xcd\x30\x88\x45\xbc\xab\xaa\x72\x1a\x1f\xd0\x5d\x5a\x6b\x2e\xb1\x34\xd6\x53\x2a\x13\xa1\xe6\x38\x02\xf4\xa9\xc1\x18\x19\x01\x57\x55\x01\x1c\x5a\x1a\x93\x97\x79\x79\xa3\xad\xd7\x44\xe7\xf3\x85\x5c\x37\xbc\x3b\xe3\xc8\x24\x9c\xed\x9a\x68\xc7\x1e\x1b\x1d\xdd\xb5\x47\xa0\x4f\x0c\xa6\x6b\x8f\x1d\x1b\x6a\x2f\x45\x68\x4e\xc7\x86\x26\x21\x68\xd7\x86\x3a\x36\xd4\x88\x70\xbb\x36\x04\xf4\xc9\x08\xd3\xb5\xa1\xfe\x8c\x0a\x57\x63\x95\xaa\x3b\x2a\xf4\xdb\x5f\x9c\x88\xfc\x45\x26\x2f\x8d\x78\xb3\x1b\x19\x01\x7d\x7e\x44\xf4\x44\x5f\xfc\x22\xf6\xd8\x8d\x79\x3a\x36\x34\x19\xad\xba\x36\xd4\x17\xcf\x22\xca\xea\xcb\x67\x2d\x9f\xa5\xe8\xf3\xac\x9b\xab\x68\x84\xa3\x02\xd0\x27\x63\x5a\xd7\xac\x3a\x36\xd4\x8a\x8f\xb7\x27\x08\x70\x66\x6a\xbf\x3d\x14\x77\x87\x16\xe0\x6a\x84\x1e\x2e\xe0\x0a\x7d\xe2\x33\xba\x53\x94\x1e\x7c\x9a\xa2\xc8\x4f\xf3\xd8\x53\x9f\xc4\xb1\x5d\x7b\xea\xc4\x3f\x8d\x01\xbb\x6b\x29\x40\x9f\xc4\xb1\xdd\x01\xa8\xb3\x9a\xd3\xaa\x37\xda\x6c\x8d\x87\xa1\xb8\x6b\x3c\xc0\xd5\x30\xb1\xee\x98\x04\xf4\x69\xdf\x39\x26\x75\xc6\xa4\xc6\x62\x6b\x77\x4c\xea\xcc\x34\x66\x56\x64\xbb\x98\x69\x34\x86\xbc\xee\x4c\xa3\x33\x26\x4d\x06\xec\xae\x3d\x01\x57\xeb\xde\xf8\x69\x17\xdd\x49\x24\xd8\x35\xb1\xce\x3a\x4d\xc3\x5c\xbb\x13\x06\xa0\x4f\xbf\xc3\xf1\x33\x13\x97\xb5\xa1\x48\x2d\x22\x2e\x9b\xc4\x8b\x5d\x7b\xea\x98\x45\x1b\x8f\xde\xba\x54\x7e\x0f\x6d\x00\xb7\x3b\xb4\x81\xf1\xf6\xc6\x82\x88\x1b\x07\xda\xcd\xfa\xf9\x3d\xd4\xee\x71\xdb\x08\x9e\x65\x90\x3f\x08\x5d\x48\x27\xdc\x43\x25\x05\xba\x6b\xe1\xe3\xbe\x15\xdd\x5c\xa5\x68\x29\xe2\xa3\xe1\x9c\x87\x01\x0e\x70\xf5\xe4\x2f\x6e\x45\x74\x0e\x41\xdc\x70\x2a\x30\xb0\x01\xd7\xb0\x87\x36\x00\xf4\x89\x0b\x1f\x0e\x2d\xe4\x00\x2e\x17\x95\x87\xe3\xc8\x60\x2a\x30\xab\x37\x0e\x45\x8f\xa5\xb8\x10\x3c\xb4\x94\xa1\xa5\x10\xea\x0d\x2d\x65\x60\x03\x2e\xf1\x0e\x6d\x60\x68\x03\x0c\x07\x43\x25\x1f\x8c\x23\xae\x9b\x0e\xc7\x91\xc1\x08\x31\x09\x08\x87\x1a\x3d\x18\x21\x5c\xc5\x1c\x6a\xf4\x20\xc8\x9f\x0c\x07\xc3\xe1\x60\xb0\xcc\xe8\xca\xe3\x50\x0b\x81\x3e\xd1\xd5\xe1\xac\x78\xe0\xfb\x7b\xf3\x2a\x9f\xa5\xef\x67\xbd\x6d\xe8\xfb\x81\xab\xa3\xbe\x63\x7f\x1e\xcf\x68\xf3\x11\xf9\x39\x98\xb6\xba\xb8\x36\x9c\xb6\x02\x7d\x12\x5c\x0e\xb5\x10\xb8\x3a\xea\x3b\xd4\xc2\xa1\x57\xff\xdc\xe8\x3b\xa2\x98\xbd\xf3\xb5\x55\xcc\xa1\x62\x32\x4c\x0d\x15\x73\xa0\x98\xae\x8b\x4d\x15\x73\xb2\xfe\xdd\xd1\xd5\xa9\x27\x9e\x2a\x66\xf7\xaa\xa9\x08\x35\x61\xa4\x9f\xc6\xe7\x40\x9f\xfd\x42\xc4\x17\x9a\xc4\xe7\x03\xf5\x9d\xfa\x6b\xa0\x9b\x10\x99\x2e\x89\x03\x97\xcb\x48\x53\x25\x9f\xba\xf0\xae\xa8\x28\x2a\x5c\x55\x11\x55\x45\x95\xab\x68\x84\x5e\x7d\xe2\xc2\x5d\xfa\x99\xba\xf0\xa9\x29\x74\x6f\xa4\xef\x27\x8a\xe9\x12\xcb\x54\x31\x81\x3e\x31\xf7\x69\x80\x33\x89\xe2\x5d\x0c\x98\xeb\x73\x23\x1f\x8d\x5e\x9d\xfa\xeb\x49\x14\x3f\x58\x63\x9b\x6a\x21\xd0\x67\x57\xe4\x6b\x3f\x9a\x77\x39\xe9\x9e\x2e\x53\x4e\xfd\xaa\x7d\xaf\x16\x4e\x82\x92\x81\x83\x99\x6a\xe1\x34\x28\x21\xcc\x9e\xba\x5a\xe0\x72\x12\x39\x75\xb5\x40\x9f\xc3\x1b\xfd\x1c\x78\x5f\xa7\x87\x53\xef\x0b\xf4\x49\xd4\x30\x9d\x11\x00\x97\xb3\xbc\x69\x80\x33\xf5\xd1\x84\xb3\x53\x1f\x0d\x5c\xa3\xd2\x08\x7d\xf4\xd4\x47\x13\x5b\x4c\xad\x63\xe2\xa3\x47\xf5\xf1\xf6\x2a\x6b\x46\x53\x65\x72\xcd\x68\x62\x30\xa3\x2a\xf2\xb5\x0d\x83\x08\x7a\xa7\x61\x10\x70\x39\x41\x9b\xba\x6d\xa0\x9b\x25\x9b\xba\xed\x49\x18\x34\xb0\xb4\x69\x18\x34\x0d\x83\xf0\xab\xd3\x30\x08\xb8\x9c\x7a\x4d\xcd\x6a\x1e\x34\x87\x68\x66\x1a\x19\x4d\x0c\x66\xa8\xbe\x1a\xcc\xd4\x60\x88\x66\xa6\x06\x03\x5c\x4e\x84\xa6\x91\x11\xd0\xe7\xec\xbf\x3d\x14\x4f\x03\xa7\xc9\x74\xc7\x79\xd2\x34\x70\x02\xba\x89\xbb\xe9\x74\x07\xb8\x9c\x01\x99\x29\xbd\xdf\x0c\x1a\xce\x6d\xde\x0e\x1a\x6f\x03\xa7\xe9\x55\x43\x11\x5a\x44\x77\xbe\x9d\xa2\x00\xc3\x8c\xdf\xdb\x29\xca\x9b\x41\x63\xd0\x9d\x6f\x07\x0d\x60\xbc\x5e\x8a\xbc\xf1\xf1\xe4\xd7\x64\xc1\xf5\x6d\x64\x03\x8c\x17\x01\xf0\x5b\xe3\x79\xb3\xd6\x39\x09\xaf\xde\x06\x12\xc0\x78\x61\xd4\x6f\x3d\xf1\x9b\xd8\xc2\x10\xe1\xad\x27\x7e\x3f\x36\x30\x5e\x04\xc0\x6f\x6d\xe0\x8d\xdb\x9d\x2c\x29\xbd\x55\x2c\x60\xbc\x6c\x84\x6e\xf7\xcd\xca\xa3\xe3\xdb\xdb\x09\x29\x30\x5e\x98\xfe\x7b\x7f\x9e\xf5\x0c\x79\x8e\x49\x6f\x7d\x2c\x30\xcc\x6a\xbe\xd5\xb5\x37\xfa\xe1\x38\xf2\x56\x3f\x80\x6a\xec\xf9\xd6\xed\xbe\xd1\x0f\x7d\xff\x5b\xfd\x00\xc6\x8b\x30\xf9\xad\x7e\x90\xcb\xbe\x26\x13\x78\x93\xd9\xf7\xcd\x1c\x55\x2f\x75\x1b\x00\x03\xe3\x45\xe4\x7c\xbb\x52\x02\x5c\x7a\x96\xdb\x69\x2b\x30\x5e\x4c\x48\x6f\xbf\xf6\xcd\x1c\x55\x9f\x71\xeb\x89\xef\x37\x1f\x0d\x5f\x76\xfb\xb5\xef\xe7\x0b\x5f\x5a\xf0\xed\x7a\xca\xfd\x38\xe7\xf1\xba\x14\x1d\x45\x87\xab\xf8\x45\xd7\x53\x80\xf1\x22\xbe\xbe\xf5\xd7\x37\xce\x79\x32\x3b\xb8\x75\xce\xc0\x30\xe5\x7b\xeb\x9c\x81\x4b\x7b\xba\x75\xce\xf7\x13\x5f\x8f\xd7\xe5\xe3\x87\x22\x5a\x3f\xbd\xd1\xd6\xab\x72\xc4\xd7\xb7\x2a\x77\x3f\xde\x33\xa9\xab\xb7\xde\x13\x18\x26\x86\x6f\xf5\x0b\x48\x7f\x17\xd9\xae\xa0\x57\xf1\xd7\xb7\x33\xc6\xfb\x71\x82\xe9\xc5\x4a\xed\xad\x13\xbc\x37\xed\x52\xa4\xe6\xdc\xcf\xe8\x9c\x4c\xd3\xde\x8e\xce\xc0\x78\x65\x45\x68\xce\x7d\x68\x17\xae\xf2\xd6\xd9\x00\xe3\x85\xae\xde\x3a\x9b\xfb\xd1\x96\x64\x9a\xf6\x76\x74\xbe\x0f\xbf\xc8\xa4\xfb\x56\x73\xee\x47\x5b\xd2\x8b\x70\xe3\xd6\x8d\x00\xc3\xbc\xf3\xad\x9f\xb8\xa1\x77\xbc\x70\x6f\xb7\x7e\x02\x18\xaf\xe2\x8d\x5b\x11\xef\x88\x7b\x5b\xaa\x1c\x90\x5e\x68\xe1\x7a\x27\x45\xd8\x23\x43\xcb\x72\x85\x6f\xbd\x69\x2a\xc3\xfa\x52\x0b\x97\x2a\x47\xec\xba\x54\x39\x20\xbd\x50\xdf\xa5\x83\x59\x8f\xe6\x0d\xfb\x6b\xb9\x2c\x02\xa4\x57\xb7\x11\xb7\x22\xba\xb0\x28\x5a\x8a\x78\x21\x5c\xda\x52\x31\x81\xf1\x2a\x36\x95\x17\x5a\x8f\x02\xa5\x17\x43\xde\x72\x58\x5f\x37\x96\x46\xdf\x2f\x35\x67\xdd\xfc\x22\x8e\x7e\xa9\x39\xc0\x30\x91\xbe\x8c\x70\xd7\xe2\xa3\xb1\xd6\xb0\xcc\x87\x03\xe3\xc5\x30\xb5\x5c\x16\x01\xd2\x85\xe3\x5b\x86\xb3\xc0\x78\x31\xc5\x59\x86\xb3\xeb\x71\x7c\xe9\x7a\x79\xa3\xed\x5a\x7c\xda\xea\xe3\xed\x9c\x27\x76\x4d\x17\x6e\x68\x19\xbb\x02\xe3\x55\x15\xd9\xd4\x07\xd2\x85\x07\x58\xeb\xd3\x54\x7a\x82\xe9\xd2\x72\xf1\x64\x3d\xb1\x45\xba\x58\x6c\x5a\xc6\x16\xc0\x78\x11\x6f\x2e\xad\x63\x3d\xea\x9f\x2e\xac\x76\xb9\x1c\xb8\x82\xef\x88\x7e\x2d\x5d\x2d\x90\x2e\xe6\xa8\xcb\x08\x64\xe9\x7d\xd1\xaf\xa5\xf7\x5d\x4f\x04\x92\xae\xa4\xc8\xa6\x06\xbd\x4a\xa0\xba\x8c\x40\x80\x64\xde\x79\x19\x81\x00\xe3\xd5\x6c\x84\xad\xc7\xf8\x2e\x22\xa3\xa5\xf1\xad\x4d\xdf\xab\xab\xc6\x16\x40\xba\x08\xec\x97\xb1\xc5\xd2\xdf\xab\x98\xfa\xfb\xb5\x69\x3d\x96\xb6\xb4\xda\xa5\xbf\x27\x92\x5c\xfa\x7b\x20\x5d\xe5\x1f\xc8\x15\x2f\x03\xf3\xe5\x70\xd0\xfd\x75\xdf\x04\x9a\xd5\xc5\x34\x6c\x19\x67\xac\x83\x32\x30\x60\x2f\x87\x83\x75\x50\x06\x42\xa2\x65\x04\xb1\x0e\xcf\x52\x6f\x35\xd7\x85\x6d\x5e\x7c\xad\xd0\x36\x81\x74\x11\xd9\x84\xb6\x19\x6f\xb4\x08\x4f\x1c\x9a\x58\x60\x4f\x17\xb1\x7a\x68\x4f\xf1\xe6\xf1\x84\xdc\xa1\xf1\xc4\x9b\xc7\x77\x45\x34\x35\x6e\xec\x9c\x98\x25\xf4\xd7\x40\xba\x18\x34\x42\x7f\x0d\x8c\xeb\xa5\xa8\x2a\xa2\xef\x08\x21\xc3\x78\x00\x18\x9a\x45\x68\x62\x71\xf3\xe5\x6d\xaa\x33\xc6\x78\xa6\x87\x43\xa2\x45\x38\x3d\x04\xd2\xc5\x70\x10\x5a\x5d\x2c\x7f\xb1\x22\xf2\x17\x17\xdf\x94\x98\x27\x34\x9e\x58\xfe\x22\xaf\xad\xa5\xc4\x63\x16\x29\x11\x22\x84\x66\x11\x8b\x5f\x64\xc8\x0b\xcd\x22\x1e\x85\x4f\xc9\x1b\x55\x78\x60\x5c\x0c\x79\xa1\xc2\xc7\xa3\xe4\x29\x31\x72\x85\xeb\x80\xc0\x90\x8e\x11\x2a\x7c\x3c\xba\x9a\xcc\xc0\x87\x61\x72\xa0\xb7\x9a\x58\xa8\xb7\xc1\xa0\x91\xb0\x81\x70\xd0\x00\xc6\xc5\x90\x17\x0e\x1a\xf1\x68\x4e\x4a\xf8\xfe\x50\x73\x82\xa8\xe1\x62\xe1\x29\x8c\x1a\x02\x47\x0f\x91\xef\x0e\x35\x07\x18\x1a\x62\xe8\xe8\x81\x94\x70\x36\x5b\x65\xda\x78\xf5\x2b\x29\xca\x8a\x0a\x57\x0d\x44\x55\x51\xe5\xaa\x8e\xa8\x29\x7a\xfa\x3e\xe1\x20\xb6\x2a\x07\x0c\x99\x23\xdb\xd8\x02\x48\x09\x07\xb1\x75\xf4\xc0\xd0\xa8\xb7\x8a\xb9\xf1\xea\x09\xd3\xdf\x2a\x26\x30\x2e\x42\xbd\xad\x57\xdf\x4f\x6c\x91\xcc\x87\x6f\x63\x0b\x60\x5c\xcc\xfc\xb7\x73\xc1\x7d\xd3\x7a\xec\x71\xab\x98\x9b\x40\xe2\x22\xab\xb9\x0d\x24\x36\xba\x6a\x3e\x7c\xab\xab\x5b\x5d\x65\xc0\xde\xea\xea\xbe\xf9\x8e\x68\xf4\x56\x31\x81\xa1\x1b\xd9\x2a\xe6\x7e\x34\x2f\x25\x34\x7a\xbb\xfc\x00\x8c\x8b\x8f\xb6\x75\xe1\x1b\x1f\x9b\x08\x5d\xb6\x3e\x16\x18\x17\x2b\x4b\xdb\x70\x63\x3f\x6a\x96\xf2\x4b\x91\xcf\x0a\x9f\x45\x53\xe3\xf3\xac\xa7\xbf\xcc\x28\x6f\xbd\x27\x30\x64\xda\x6c\xbd\xe7\x7e\x54\x2e\x65\x74\x75\xab\x72\xc0\xb8\x18\xfc\xb7\xae\x72\x3f\xae\x32\x99\x51\xde\xba\x4a\x60\x5c\x45\x91\x5f\xfb\x81\x94\x55\x13\xa7\x61\xc0\xb8\x18\xe9\xb7\x0e\x15\x48\xe6\x9d\xb7\x0e\x15\x18\xfa\xc2\xad\xc7\xdc\x8f\x97\x4c\x59\x05\xd8\x9f\xa6\x4a\xe0\xf4\xf1\xb8\xa1\x4d\x18\x94\x99\xef\x6e\xc3\x20\x60\x5c\xac\xba\x6c\x3d\x26\x90\xb2\x2f\xe4\xba\xc5\xd6\x3a\x88\x1a\xb6\xd6\xb1\x9f\xc8\x28\x65\x1b\x61\x64\xb4\x71\xb5\x72\x8e\xb6\x06\xb3\xb1\x8e\x4c\x20\x71\xb4\x8e\x83\x29\x98\x8a\x3e\x9a\xc2\xd1\x14\x70\xdb\x47\x53\x38\x28\xb9\xa9\xe8\xa3\x92\x1f\x95\x9c\x40\xe2\xa8\xe4\x07\x25\xcf\xcd\x67\x85\x22\x3e\x1a\x81\xc4\x51\xc9\xcf\xe2\x17\x99\x24\x1c\xbd\x1c\x30\x2e\x02\x89\x63\xd4\x00\xa4\xcc\x04\xed\xb8\xd6\x00\x8c\xcb\x46\xe8\x0b\x0f\x8e\x2f\x93\xbe\x39\xeb\xf3\x78\x3a\x9a\x99\xca\x71\x11\xec\x10\x2d\x67\xfc\xfd\x31\x1e\x38\x4c\xbd\x2e\xc2\x8d\x63\x68\x7c\x50\xcc\x82\xbf\x3f\x2a\xe6\x51\x31\x21\x9d\x1d\x15\xf3\xa0\x72\x26\x86\x8f\x2a\x77\x18\x8a\x1d\xc0\x8e\xfa\x75\x50\x13\x13\xb8\x47\x35\x39\xaa\x89\xaf\xbd\x3f\xcf\x7a\x3e\x5a\x49\xff\x40\xae\xf8\xe8\x3d\x8f\xde\x13\x67\x73\xf4\x9e\x40\x32\xbf\x7b\x1c\x9d\x81\x71\x35\x45\xf6\xca\x13\x79\xa7\x82\xde\x1e\xe7\x6f\xc0\x90\x47\x76\x74\xbb\x40\x32\xbf\x7b\xd4\xc8\xa3\x46\x36\x6f\xf4\xd3\xa0\x91\x05\x37\x72\xd4\x48\x60\x5c\x04\xd3\xc7\xf0\x1d\x48\x25\x7b\xa3\x5d\x40\xf8\xee\x80\x7d\x54\xd2\x83\x46\x96\xc7\xa8\x97\x34\x66\x61\x5c\xfd\x42\x94\x14\xd1\xfa\xc7\x78\xd6\x0b\x17\x2e\x8c\xeb\x89\x6c\xd6\x8b\x19\xe3\x82\xed\x9c\xca\x63\x16\x4b\xb6\xb3\x30\xae\xc7\x55\x2e\xe9\xce\x42\x22\xa3\xbc\xa4\x3b\x0b\x83\x10\x61\x41\x7d\x7e\x80\x76\x55\x7f\xf1\x20\x62\xe2\x77\x75\x44\xb7\x4d\xbd\x69\x57\xa3\xf5\xb7\xed\x7a\x82\xf1\x71\x75\x1a\x41\x26\x52\x48\xe5\xe9\xe8\x05\x69\xfa\xfb\xf5\x72\xa4\x1f\xbc\x23\x36\xb0\x5e\x44\xbb\x65\xf0\xac\x65\x23\x88\x76\xaf\x49\xbb\xd0\xee\x05\x31\x3a\x95\x47\xe1\x97\xc4\x68\x61\x5c\x93\xc7\x87\xcf\x7a\x20\x95\x8f\xa8\x29\xa2\x5d\x93\x76\x85\xed\x22\xda\x2d\x4f\x6c\xb1\x5e\x61\xbb\x88\x76\xaf\x8f\xc8\x2e\x0c\xf9\xf3\xb4\x0b\x4f\x2c\x8c\x6b\xda\x88\x4f\xbb\x0e\x57\xd1\x39\xc4\x03\xc2\x48\xde\xb8\xed\x2f\xcc\xa2\xbe\x78\xfc\xf6\xf1\x98\x45\x7a\xd1\x13\xdb\x2f\x84\x59\xd4\x8b\xa6\x6e\xbf\x10\x21\x68\x7a\xf1\xb5\xb7\x8d\x20\x04\x25\x31\xbc\x24\x55\xaf\x17\x53\x4d\xc2\xa0\x05\x9b\xfa\x81\xca\x55\xb4\xeb\xd8\x13\x68\x21\x14\xc3\xf5\x3a\x3e\x1e\x2d\xac\x8f\x27\x5e\x12\xa1\xd7\xf5\xe8\x57\xaa\xcf\xc8\xb5\x2e\xf5\x0b\x3e\xf4\x48\x4f\x48\xb5\x20\x45\x3f\xc0\x0b\x3d\x23\xc4\x92\xf5\xbc\x2e\x3c\x5e\xba\x7c\xd6\x56\xc4\xe3\x1f\x87\xba\x2e\x95\xe9\x62\xb2\x96\x9e\x00\x67\x41\x51\x7e\x80\x8e\x6e\x3c\x9e\xb0\x71\x5d\xf7\xe3\xcb\xe0\x26\xae\xeb\xf6\xc6\x67\x44\x4e\xb5\xd1\x2e\x66\x66\xc2\x80\x9b\xb8\x2e\x66\x66\xeb\x62\x1a\x56\xb1\x8e\x6b\xd9\xd4\x07\x46\xca\x8a\xba\x22\x5a\xff\x84\xec\x0b\xba\xf3\x07\x46\xca\xbc\x10\xc3\xfa\xba\x16\xed\xea\x34\x62\xd9\x2e\x14\x33\xd9\x5f\x2a\x26\x1c\xe6\x44\xb6\x75\x5d\x2a\x26\x30\xd2\xe3\x27\x96\x7c\xe6\x75\xe1\x63\xc9\xa3\xae\x4b\xfd\xba\x98\x3a\xc1\x99\x5c\x17\x53\xa7\x75\x3d\xfa\x95\x2a\xba\x7a\xc5\xe7\xf1\xf4\x44\xa6\x11\x61\x4f\x3c\xa3\x7b\x6a\xe8\x97\x14\xe7\x05\xad\x79\xb0\xfd\x63\xc1\x6d\x7e\x60\x70\x15\xcf\x52\xe5\x2e\x55\xae\xd0\x13\xaa\x1c\x90\xda\x45\x17\xaa\x72\x97\x2a\xe7\xa7\x55\xe5\x60\x27\xa7\xe6\xa7\x3d\x76\x34\x4e\x34\xe1\x99\x64\x2a\x0b\x89\x0c\xe9\xba\x8e\xaf\x7d\x6c\x17\xef\xa8\x16\x5e\xac\x6e\x90\x21\x5d\xd7\xb1\x11\x84\xb3\x30\x3e\x97\xe4\x65\x21\x35\x3e\xad\xe4\x65\x21\x35\xbe\x63\xd2\x3d\x42\x58\x1e\xa9\x7a\xd5\x54\xc4\x0b\xd1\x13\x49\x2f\x97\x58\x92\x22\xe8\x5d\xb0\x96\x1f\x78\x3c\x40\xf3\x46\x3d\x53\x52\x31\x1f\x7f\xbf\x64\x2a\xaf\xf4\x84\x8a\xa9\x3d\x23\xea\x4a\x2c\x19\xac\x74\xd3\xd4\xe6\xb3\xb6\x22\x9a\xda\x7c\xd6\x51\xf4\xcc\x41\x52\xa7\x11\x04\x97\x42\x22\x93\xb9\xd2\xf2\x85\x58\x6b\x48\xf8\xfb\xa4\x46\x27\x42\x04\x32\x99\x2b\xe9\x1e\x21\x3f\x0f\x48\xa0\x2b\x2d\x9b\xba\x78\xc7\xcf\x8d\xbe\x23\x33\xff\x84\x8f\x4e\xe1\xe3\x83\xfe\xc2\xaf\xa6\xf0\xf1\x0c\xfe\x90\x40\x57\x62\xf0\x5f\x29\xf8\xc5\x91\x7e\x73\x28\x5e\x49\x55\x4e\x81\x7e\x0c\x1a\xa4\x5f\x04\x12\xf9\xca\x25\xa9\x7a\xc1\x87\x1e\x09\x85\x87\x14\xfd\x40\xe5\x2a\xfa\x4e\x25\x4d\x4c\xd3\xd3\xa4\xd9\x2a\x29\x90\x3a\xbe\x2c\xa9\xa4\x30\xa8\x47\xfa\xdc\x68\x0f\x3f\x90\xfa\xc5\xe3\x8f\x3d\xfc\xc0\x80\xd7\xb9\xdc\x02\x25\x24\x72\x9f\x2b\xe9\x17\x13\x1a\x99\x7d\xbc\x1a\x09\x24\x36\x0b\xad\xc4\xb0\xbe\x12\xae\x92\x58\x7d\x25\x5d\x25\xd4\xeb\xc4\xf6\x9d\x25\xf5\x5a\x18\xf9\x52\x94\x14\xd1\xfa\x27\xdc\x58\x32\xa8\x85\x41\x44\xbf\xb2\x1a\x99\x89\x17\xd9\x33\xb2\x20\x58\x7f\x60\x64\x4c\x4c\x9e\xf5\xca\x0c\xb2\xe4\x2b\x57\x76\x90\x05\x46\x7e\x26\xa4\x2b\xab\xca\x40\x6f\x8c\xf4\x52\xaf\x17\x0c\xea\x44\x0a\x73\xc9\xa0\x16\x46\xbe\x14\xd1\x85\x10\xa1\x13\x5b\x19\x96\x44\xe8\x05\xd3\x79\x30\xad\x58\x59\x5d\xcb\x8c\xce\x24\x27\x57\x76\x74\x06\x46\x66\x00\x92\x08\x2d\xa4\xde\x15\xf9\x8b\x84\xa3\x19\x6f\x20\x11\x7a\x65\x74\xad\xa3\xca\x59\x65\xca\x8c\xce\xd9\x5e\x75\x74\x86\xf5\x9c\x48\x3b\x2e\x59\xcf\xc2\xc8\x89\xce\x09\x7b\x95\x71\xb7\xe3\x76\xb3\xe3\x2e\x30\x98\xc8\xac\xec\xb8\x0b\x53\x39\x75\xb4\x50\xa6\xb2\x30\x72\xe2\xb5\xd5\x42\x08\xc7\x09\x0a\xfd\x92\x70\x2c\x8c\xec\x77\xdc\xbe\x10\x2a\x47\x26\x72\x49\x38\x16\x46\x7e\x66\xc5\x4b\xc2\xf1\x82\x3e\x9c\x20\xa1\xaf\xac\x13\xcc\xc7\x77\xe4\x3b\xaa\x5f\x99\x18\x71\xa8\x39\xc7\x77\x54\xe5\xf0\x78\x59\x95\x83\x64\x9c\x86\x1f\xed\xd8\x2e\x5c\x65\xce\x36\xc2\x76\xa1\x98\xd0\xa5\x97\x1c\xe4\x05\x0b\x38\x0d\xbe\x50\xb9\x3f\x22\x74\x95\x91\x0b\x76\xf0\x03\x8f\x3d\xc2\xbc\x5d\x85\xa5\x54\x61\x64\x46\xae\x62\x10\x57\x18\x51\x49\x3b\xae\xe2\x88\x0a\x0c\x78\xc3\x4b\x16\xef\x82\xb9\x9b\x06\x3e\xb6\x38\xa2\x02\x23\xfb\x78\x47\x54\xd8\xb6\x69\xe0\x2a\x8b\x5e\x0a\x18\x99\x70\xa3\xe8\xa5\x80\x04\x83\x71\x49\xc6\x5d\x45\x35\xc9\x8a\xfc\x45\xd4\x84\x64\xdb\x2a\xaa\x49\x51\x4d\x18\xb9\xe4\xe7\xae\xc2\xac\x05\x3e\xe1\x2a\xdb\xc7\xe3\x99\x98\x31\xae\xa2\x67\x2a\xa8\xc9\x18\xbc\x90\x6a\x52\x54\x13\xc6\xb7\xa2\x9a\x94\x67\x7c\x4c\x50\xe6\x16\xf4\xdd\x0f\x8c\x5c\xbc\x31\x14\xa1\x26\x84\xa0\xf2\x73\x57\x21\x3c\x83\x1b\xbd\x8a\x6e\x88\x8d\x97\x09\x3a\xd9\x2a\x0e\x9f\xc0\xc8\x85\xc7\xab\x39\x40\x82\x02\xb6\x8a\xce\x0a\x62\xef\x60\xda\xba\x24\xf6\x2e\x88\xbd\x09\xda\xd6\x92\xd8\xbb\x20\xf3\x8e\x4c\xac\x5f\xd4\x1c\x20\x41\xb5\x5a\x45\xcd\x01\x06\x93\xdb\x25\xd7\x77\xc1\xf5\x1d\xec\x08\x5d\x72\x7d\x17\xc4\xde\x04\xaf\x6a\xc9\xdc\x5d\xb0\x75\x07\xd4\xeb\x55\xf5\x72\xb0\x6d\xd3\x64\x58\x97\x6d\x2b\x0c\xe6\xbb\xab\xaa\x72\x95\x15\x1c\x28\x3e\xab\xea\xac\x80\x91\x9f\x99\xdd\x92\x93\x2b\x24\xc8\x3b\x4b\x4e\xee\x82\x80\x3b\x72\x53\xf4\xf9\x45\x5e\x1b\x9d\xa8\x2c\xea\x08\x03\x82\xf6\xaa\x0e\xd8\x40\x82\xbc\xb3\xa4\xe9\x0a\x23\x37\x6f\xa4\x27\x20\xe0\x26\x68\x39\x4b\x02\xae\x30\x32\x2e\xad\xea\xe5\x60\xdb\xa6\xe9\x6b\xab\x98\xc0\xc8\x0c\xc5\xb2\x6d\x57\x45\xe5\xa6\x4d\x55\xe5\xaa\x2a\x87\xe3\x93\x5a\xbb\xe0\xce\x26\x92\x75\x0b\x02\xed\x07\x46\xee\xbf\x3d\x2b\x5e\xd2\x6c\x57\x55\x8b\x06\x3f\xa5\x16\x55\xb5\x08\xb3\xa8\x6a\x11\xd4\xd8\x44\xfa\x78\x49\x8d\x5d\x30\x51\x33\x89\xce\xd5\x1c\x80\x60\xa5\x8e\x4c\x04\x21\x2b\x75\xc1\x31\xcd\x2f\x9c\x73\xf3\x6b\x35\x1d\x04\xf6\x24\xdf\x74\xb5\xe7\x3b\xe4\x57\x7e\x21\xba\x15\xf1\x1d\x88\x9c\x9b\xdf\xa1\x3d\x9d\x9e\xc9\x99\xad\x66\xa7\x37\xc7\xa4\xe1\x8d\x9f\x5f\x3c\x5c\x45\xbb\x0c\x9c\x80\x91\x89\x59\xdc\x7f\xbc\xe0\xab\x66\xb2\x61\xab\x19\xf7\x43\x54\x1d\x99\xa0\x44\xa2\xea\x6a\x8b\x76\x61\xe7\xcd\x28\x09\x0a\xea\xc8\x43\x91\x8d\x08\x9e\x85\xa5\x48\x2e\x15\x06\x2b\x30\xab\xf9\x4d\x61\x92\x66\x76\x4e\x2e\x99\xa4\xc2\xc8\x83\xa6\x3a\x89\x84\xd7\x99\x5f\x28\xbc\xbc\xce\x05\xaf\x73\xb0\x4e\xb3\xe4\x75\x2e\x88\x9b\xf9\x35\xbc\xca\xd7\x7e\x60\xe4\xc9\x3b\xea\x33\x80\xfc\xb2\x11\x0e\x2d\x4d\x37\x42\x94\x25\x89\x73\x35\xf6\x6f\xbf\x7c\xbc\x0a\xd0\x54\x80\xc9\xe3\x55\x00\xb8\x9c\xf9\xf5\xb9\xd1\xa6\xea\x46\x98\x61\xcb\xeb\x5c\x30\x36\x33\xc9\x81\x25\x63\x53\x18\x6c\x2c\x58\x4d\x9f\x01\x64\x96\xfd\x97\x24\xce\xd5\x1f\x9f\x91\x59\xe3\x5f\x5d\x9f\x01\x0c\x16\x9e\x96\xbc\x4e\x21\xb3\xc6\xbf\xba\x6e\x04\xaa\xe7\xc8\x4c\x77\xa4\x7a\x0a\x99\xcd\x94\x4b\xaa\xe7\xea\x3a\x1b\x26\xdd\x5d\x67\x03\xe4\xeb\xb2\x11\xb7\xa2\xa7\xa3\xcb\xa7\x5d\x4b\x51\x70\x55\x46\xb4\x15\x1d\xae\xa2\xa9\xa4\xb5\x17\x1c\xd1\x7c\x11\xf3\xc8\x11\x5d\x10\x42\x07\x3b\x25\x96\x84\xd0\x05\xfb\x33\x5f\xb8\x37\xd9\x9f\x0b\xc6\xe7\x60\x41\x6c\x75\xf5\xbe\x3f\xba\x9e\x59\x25\x5f\x5d\x67\xd3\x51\xf2\xf2\xa2\xf5\x2a\x39\x90\x59\xb3\x5e\x5d\x25\x07\x46\xf1\x85\x54\x72\x20\x5f\x0c\xd8\xdd\xd9\x01\x30\xca\xe5\x8d\x36\x75\xd1\xab\x0c\xc5\x92\x4b\x85\x51\x7c\x6d\x07\x6c\x20\xb3\xce\xbc\xba\x03\x36\x14\xd4\x51\x2e\x1f\xef\x0b\x3d\x46\x92\x59\x1b\x5e\xf2\x4d\x85\x51\x2e\x1f\xef\x0b\x2d\x14\xa0\x28\xf2\x85\x48\xb9\x14\xbb\x30\x7c\xa1\xc7\x86\x32\x6b\xb0\xab\x6b\x43\x3d\x6c\x17\x9d\xe3\xda\x0c\x90\x59\xd8\x5c\x12\x4a\x85\x51\x08\x5d\xba\x66\x05\x63\x34\xb3\x64\xb9\xba\xb3\x0b\x60\x14\x82\x4b\xd9\xa3\xab\x3f\xd1\x5f\x66\x85\x70\x75\xa3\x3f\xa8\xa2\x83\x7d\x22\x4b\xaa\xe8\x82\x0b\x9a\x59\x89\x5b\x5d\x13\x85\xf1\x39\x58\x47\x5c\x32\x3e\x57\x3f\xb4\x0b\xcf\xd4\x8d\xd8\x20\x6e\x8e\x92\x15\xd9\x5f\x07\x2d\x9c\x8a\x54\x80\x83\x16\xfa\x69\x8f\x5d\x88\x59\x91\xee\x5a\x5d\xb3\x02\x06\xab\x8d\xab\x6b\x56\x5d\xb3\xc2\xd2\x24\x81\xae\xa1\x59\x61\x43\x43\xb3\x02\x46\x41\x27\x86\x66\x05\x55\x34\xbb\x24\x25\x55\x74\x41\x15\x1d\x2c\x53\x2e\xa9\xa2\x6b\x3c\x7a\x9f\x5d\x20\x1a\xea\x3d\x30\x58\xa6\x5c\xc3\x01\x1b\xf6\x68\x76\x9d\x47\xf6\xa8\x30\xd8\xd2\xb2\x86\xa6\x00\x64\xf2\x64\x6b\x38\x04\x00\x83\xaa\x11\x6b\x38\x9d\x86\x04\x9a\x5d\xe7\x91\x04\xba\x60\x79\x0e\x97\x3c\x87\x5a\x08\x64\xd7\x53\x64\x7c\x0a\xa3\x14\x45\xb6\xfe\xd1\xc2\xec\x4a\xc9\x50\x0b\x81\xe1\xc2\xe8\xd0\x93\x03\x39\x31\xd2\x4b\x02\x15\x46\x41\x57\x25\x81\xae\xf1\xc4\x9b\xd9\xd5\x8d\x61\xbc\x09\x0c\x97\x4f\xe5\x85\x2e\x48\xa0\x39\x95\xdf\x66\x50\x2f\x39\xa2\xc2\x60\x57\xcf\x1a\xc6\x9e\x03\xbd\x4d\xd5\x9f\xb2\x8d\xea\x2d\x66\x31\xd4\x5b\xe8\x9d\xd9\xd5\x89\x61\x08\x09\x8c\x42\x8c\x37\x9c\x7c\x0c\x86\x03\x52\x5f\x6b\x38\x1c\xc0\xfe\x1c\x85\x35\x0c\xd9\x9f\x0b\xaa\x67\x26\xf5\xb5\xa4\x7a\xae\xa1\xde\x56\xba\x53\xbd\x05\x72\x1a\x8a\x6c\x2a\x93\x8f\x42\xd8\x37\x54\x65\x20\xa7\xa1\x68\x29\xc2\x1b\x60\x88\x43\x55\x86\x23\x9a\x49\x90\x2d\x39\xa2\xc2\x60\x4f\xd2\x9a\xce\x8a\xa9\xee\x91\x13\xe3\xdb\xd4\xf7\x03\xa3\x30\xa2\x4e\xd7\x14\x81\xec\x62\xc0\x54\x95\xa7\xaa\xcc\x3a\xb3\xe4\xd2\x35\xdf\xb4\x6b\xfa\xf8\xa5\x88\x76\xb1\x80\x38\x8d\x66\x20\x97\xe6\x8c\xa3\x97\x5c\x2a\x8c\xc2\xe8\x2c\xb9\x74\xc1\x24\xcd\x19\x17\x2e\x93\x54\x18\x05\x37\x22\x93\x74\xcd\x47\xbb\x73\x66\xad\x61\xaa\xdd\xb0\x47\x47\x21\xc6\x9b\x86\xa3\x73\xf1\x8b\x4c\xcd\xa7\x2e\x7c\xea\xaf\x59\x52\x9a\xda\x00\x90\x9d\xc9\xce\xe5\x2f\x2e\x7f\x91\x9e\xd0\x85\xcf\xc7\x06\xb2\x73\xd4\xa9\x0d\x00\xa3\x10\x8e\xce\xf5\xf9\xc5\xc7\xff\x38\x63\x94\x82\x2a\x8c\xd2\x15\xd9\x39\x18\x8f\x33\xc6\xa9\xf1\x4c\x8d\x87\x70\x74\x6a\x3c\xf3\xf1\xd1\xd9\x89\xdf\x74\x6a\x3e\xf5\xd7\xa8\xdc\xd4\x5f\xc3\x37\xcd\x4e\xb0\xe4\x9b\x0a\xa3\x10\x6f\xca\x37\x15\xb2\x53\x14\xf9\xa6\xc2\x28\xdd\xc7\xa3\xf7\x90\x4b\x73\xae\x34\x42\x7f\x0d\x8c\xc2\xb2\xac\xe4\x52\x21\x3b\x45\x91\x5c\x2a\x0c\x76\xa0\x2d\xc9\xa5\x42\xce\x55\x91\xad\xdf\xb6\x1e\x35\x71\xfe\x06\xc7\x34\x67\x55\xce\x00\x1a\x18\xa5\x2b\xb2\xa3\x9f\x21\x20\x67\x95\xc9\x58\x0c\x18\x66\x28\x64\x92\x2e\x68\xa3\xd9\xd9\x81\xb4\xd1\x35\x09\xbc\xd8\xf3\xb6\xa6\x81\x17\x90\x0d\xc6\x65\x92\x0a\xa3\x10\xfd\x4d\x4d\x14\xc8\xd9\xd7\x36\x3c\x83\x49\x3a\xca\xf0\x46\xbf\xf6\xa1\x57\x6d\xaa\x83\x06\x30\x0a\x26\x2a\x09\x74\xbd\xdf\xe8\x17\x37\xbe\x1d\x21\xe0\x85\x0e\x76\xd9\x2d\x79\xa1\x42\xce\x8c\x5c\xf2\x42\x85\x51\x3e\xa2\xa9\x68\x72\x55\x42\xf4\x56\x84\x7e\x61\xc8\x52\x45\xd7\x5b\x4b\xc3\x6a\xdf\x5a\xda\x5b\x4b\x63\xc8\x7b\x6b\x69\x6f\x2c\xcd\xf0\xec\xad\xa5\xbd\x99\x4a\x14\x42\xd0\xb7\xe3\x08\x1c\xd3\x5c\x58\x3c\x91\x63\x2a\x0c\x76\xff\xad\xb7\x53\x09\x38\xa6\xd9\x60\x49\x8e\xa9\x30\xcc\xe8\xbc\x1d\x5a\xde\x8f\xc1\x64\x07\xff\xb7\x06\x03\x8c\xc2\x58\xf9\xd6\x60\xde\x58\x47\xc1\xd2\xde\x5a\xc7\x9b\x85\x2b\xf3\x3e\x6f\xc7\x11\xf8\xaa\xd9\xc1\x5f\xbe\xea\x7a\xb3\xc6\x5f\x71\x30\x6f\x0d\x06\xbe\x6a\x2e\x0c\x53\xf2\x55\x85\xc1\x16\xc4\xf5\x76\x54\x78\x63\x1d\x85\x61\xea\xad\x75\x00\xc3\x1c\xd2\x3b\x3e\xbf\x78\xb8\x8a\x67\xb9\xbc\x05\x8c\x6a\xe7\x68\x30\xd0\x61\xb3\x83\x8e\x74\x58\x61\x54\x5c\x9a\x74\xd8\x05\xf7\x35\x17\x2c\x4d\xee\xeb\x7a\x3f\xa1\xcf\x30\x1f\xf5\x76\xd9\x1f\x56\x6b\xd6\x6d\xcb\x6a\x5d\x6f\xd6\x4a\x2b\x8e\xef\xad\xfa\x02\x59\x67\xf5\x56\x7d\x81\x51\x89\x1a\xe4\xbe\x2e\xf8\xae\x59\x37\xf4\x56\x7d\x81\xc1\xd6\xc8\xf5\x3e\x9f\x5f\xa4\xef\xb1\x8e\xb7\xc3\x09\x30\xea\xa5\xc8\xce\x61\x84\x79\xcc\xfd\x37\x87\x62\x39\xb5\x0b\x6a\x6c\xd6\xf4\xa5\xc6\x0a\x83\x2d\x97\xeb\x56\xe1\xa1\xc6\xe6\x32\x14\xdd\x8a\x6e\xae\x6a\x88\x96\x22\xda\xc8\x04\x4b\xb6\xac\x30\xcc\xd2\xdd\x4e\x2b\xe0\xc1\x66\xcd\x42\x1e\xac\x30\x2a\xd1\xae\x3c\x58\x21\xab\xca\xf2\x60\xd7\x8d\x0d\x54\xa2\xa4\x5b\x1b\x00\xb2\xea\x27\x35\x56\x18\x35\xf9\xf8\xa9\x68\x73\x55\x42\x74\x14\x1d\xae\x42\xe4\xb4\xe2\x26\xee\x67\x6f\xeb\xba\x35\x0b\x60\xb0\x61\x74\xdd\x46\x5c\x40\xfe\xbc\x90\xa3\xcd\x4d\xdc\x5f\x19\xa6\x6e\xcd\xe2\x26\xbc\xfa\xfb\xe3\xfd\x45\x92\x0e\x95\xe9\x8e\x64\xdc\x05\xf3\x36\x57\xec\x49\xe6\xad\x30\x2a\xc6\x73\x3b\x15\x00\x72\x65\x45\x54\x32\xae\x30\x2a\x83\xd9\xed\x68\x03\x3f\x37\xff\x5d\xe4\x2f\x6a\x03\xc4\xd7\xb7\x36\x70\x63\x03\xec\x34\x5d\xb7\x36\x70\x6b\x03\x44\x95\xb7\x36\x00\xe4\x8a\x3d\xdd\x0e\x07\x72\x7d\x2b\x43\x9e\x5c\xdf\x75\x33\x3b\x60\x3f\xea\xba\x9d\x1d\xdc\x5a\x0a\x61\xb2\xf4\xdf\x75\x33\x81\x67\x3f\xea\xba\x9d\x30\x40\xff\x1d\x26\x4d\xa5\xff\x2e\xb8\xbe\x99\x9d\xa6\x4b\xae\xef\xba\xf1\xfd\x6c\x9d\x5d\xb7\xc6\x03\xe4\x4a\xb8\x21\xfd\x57\x18\x9f\x17\x32\x62\x83\xc5\x9b\x2b\x89\x74\x59\xbc\x4b\xca\xae\x09\x58\x29\xbb\x0b\x32\x6e\xae\xd8\x93\x64\x5c\x61\x54\xc2\xe4\xa5\x57\x87\x79\x9b\xd9\x43\xba\x64\xde\x0a\xc3\xce\x91\x79\xbb\x60\xdb\xe6\x3a\x7c\x16\xef\xb8\xd4\x68\xc2\xe4\xa5\x46\x43\xc0\xcd\x15\xbd\x5f\xaa\xaf\x64\x5c\x3b\x47\x32\xee\x5a\x2c\xfd\xb0\xef\x73\x2d\x97\x7e\x80\x51\x89\x4a\xd7\xfd\x79\xfc\xe3\xf1\xa8\x21\xb7\x96\xea\x0b\x8c\xca\xe0\x2f\x3f\x77\x41\x8d\xcd\x0d\x87\x2a\x35\x56\x18\x6c\xfc\x5d\x4b\x5d\x05\x72\xbb\x14\xf9\x8b\x7a\x75\x42\x84\xa5\xfa\x02\xb9\x61\xa2\x12\x68\x85\xe1\x47\x93\x40\xbb\xd6\xa3\x98\xb9\x31\x21\x5d\x2a\xa6\x04\xda\x4a\x20\x21\x81\x76\xc1\x90\xcd\x0d\xbd\x5f\x3a\x7a\x60\xd4\xe6\x8d\xb7\x22\x5a\x9f\x15\xd9\x7a\xe2\x27\xb6\x1a\x2f\xd9\xb2\x0b\x3a\x6c\x36\xd1\xb9\xf4\xfd\x4b\xbd\x6f\x8a\x6c\xd7\x03\xb9\x31\xda\xc8\x96\x15\x06\x1b\x92\x97\x6c\xd9\x05\x5b\x36\x37\x14\x53\xb6\xac\x30\x54\xb9\xa5\x29\x40\x5b\xcd\x8d\x31\x69\xa9\xab\x4b\xdf\x4f\x84\x2b\x85\x75\xad\x47\x31\x73\xb3\x0b\x55\xcc\xa5\x57\x57\x31\xf5\xea\x40\x6e\x36\xd5\x79\x03\x44\xd7\x61\xea\x5e\xa2\xeb\x82\xaf\x9a\x1b\x37\xca\x57\x15\x46\x65\xd0\x08\xfd\x2a\x7c\xd5\xdc\x88\x79\xe4\xab\x0a\xc3\x04\xbf\x7c\xd5\x15\x68\x61\xc3\x93\x87\x5a\x08\x8c\x4a\xec\x1a\x3a\x51\x38\xaa\xb9\x0d\x9f\xb5\x14\xd1\xf7\x18\x8c\x7c\xd5\x15\xf8\xd5\x36\x15\x1d\x45\xf8\x55\x62\x57\x29\xac\x0b\xbe\x6a\x6e\x78\x72\xf9\xaa\xc2\x90\x52\x10\x06\x25\x40\xee\x24\x8c\x42\xef\x1b\x7a\xdf\xee\x8d\xb6\x8b\x09\x69\x67\xf0\x0f\x27\xa4\xc0\xa8\x0c\x60\xa1\x13\x05\x72\x47\xa3\x43\x27\x1a\x6a\xa1\x9d\xa3\x16\xc6\xa3\x4c\x99\xfd\x99\x2b\x54\x26\x60\x54\x16\x46\xc3\x70\x03\x0a\x6b\x36\x47\x29\x85\x55\x18\x92\x18\x42\xfd\x0a\xfc\x2a\x85\xfa\x56\xe8\x57\x43\xcd\x19\xe5\xb7\x87\xe2\x50\xb1\x80\xdc\xf1\xb1\xe1\x2a\x77\xe8\x76\x09\x5a\x43\xb7\x1b\x87\x2e\xc0\xc7\x86\x0b\x9b\xc0\xa8\x43\x91\x5d\x80\xab\xa4\x70\xdc\x8a\xf3\xb9\x11\x67\x33\x14\x4d\x45\xcf\x07\xa4\x8c\xdb\x92\x07\xbb\xe0\xbe\x66\x76\x61\xae\x6d\x4c\x2c\xe9\xb5\xa2\x0c\x92\x5e\x85\x6c\xa2\x73\x1b\x35\x6c\xa3\x06\xdc\x9b\x3c\xd8\x05\xe9\x35\xb3\x0b\x73\x49\x7a\x5d\xd2\x59\x2b\x61\xb2\x74\xd6\xb5\x59\x6e\xe9\xa8\xdf\x76\xb9\x45\x3a\xab\x4e\x50\x3a\xab\x90\x3b\xca\xb0\xd5\xee\xad\x76\x13\xc7\x6e\xb5\x7b\xb3\xa6\xd8\xf9\xcc\x5b\x25\x05\x46\x9d\x8a\xfc\x45\xbc\x67\xf7\x85\x54\x52\xe9\xac\xd2\x44\xa4\xb3\xae\x8d\xde\x76\x9b\xaa\xde\x6e\x22\x67\xb6\xdb\xaf\xad\x92\x02\xb9\xdb\x08\x95\x14\x18\x0d\x55\x96\x07\x2b\xe4\xf1\x79\xbc\x3d\x41\x7c\xad\x73\xde\xc6\xd7\x1b\x4f\x4c\xad\xb0\xb5\xf5\xc4\x9b\x8c\x1f\xdb\xa7\xd6\x56\xe1\xf7\xa3\xbe\x99\x3a\x5a\x6b\xbb\xe8\x07\x1d\x76\xb4\x8f\xc8\x67\xe1\x3d\xa9\x1e\xb5\xb6\xde\x13\x18\x8d\xd8\x53\xb6\xac\x90\xcd\x7d\xca\x96\x5d\xfb\x51\xf8\xd1\x88\x3d\xb7\x0a\x0f\x5f\x35\x53\xf1\x69\x6d\x87\x75\x60\x34\x62\xc4\xed\x52\x3d\x90\xa9\x73\xb4\xb6\x6b\x33\xc0\x70\x68\x91\xe1\xba\x36\x6b\x33\xe6\x51\xb7\x83\x3f\x30\x28\x29\xb0\xb6\x1a\x0d\x64\xea\x09\xad\xad\x46\x03\xc3\x01\x68\x1b\x72\xc3\x5d\xcd\xd4\x13\x5a\x72\x57\x17\xdc\xd5\xd1\x88\x11\xe5\xae\x2e\xc8\xa5\x99\x9a\x38\x4b\x72\xa9\x30\x24\xdf\x1c\x07\x6c\x20\x53\x2f\x66\x1d\xb5\x10\x18\x8d\x20\xee\x38\x59\x3b\x68\x21\x95\x60\xd6\x51\x0b\x81\x21\x45\xe7\xa8\x85\x07\x1f\x4b\x25\x98\x75\xf4\xb1\x87\x91\xbe\x11\x23\x1e\x47\x7a\x20\x8f\xee\x2f\xbe\x15\xf1\x1d\x19\x18\x8f\x53\xba\x83\x46\xb3\x51\x71\x1d\x35\x1a\x18\x0d\x97\x74\xd4\x68\x20\x53\x5e\x65\x1d\x3d\xf1\x81\x30\xd3\x88\x37\x8f\x4b\xe2\x70\x6a\x33\xdb\x19\x97\x9c\x5a\x61\x48\x1d\x92\x53\x2b\x64\xb6\x33\x2e\x39\xb5\xc2\x70\x90\x95\x53\xbb\x8e\x1a\xcd\xb4\xf5\xa8\xd1\x87\xf5\x94\x96\x15\x2d\x45\xb4\x7e\xfa\x8b\xb6\x9e\xd8\x82\x62\xb7\x4b\xe6\xad\x90\x29\x2a\xb2\x8e\xb1\x05\x30\x1a\x6a\x22\x19\x77\x41\xc0\xcd\x94\x0b\x59\x47\xaf\x0e\x19\x77\x38\x60\x4b\xc6\x15\x32\xa5\x34\x96\x64\x5c\x61\x34\xd4\xe4\x68\x1d\x40\x36\xbf\x7b\xb4\x8e\xa3\x75\xb0\x94\x7a\xb4\x8e\x43\x4c\x3d\x2f\x45\x36\x55\xeb\x20\x46\x3c\x5a\x07\x5c\xdf\xcc\x96\xcd\x25\xd7\x57\x18\x8d\x18\xf1\x18\x5b\x1c\x9c\xfb\xc4\xd2\x8e\xce\x1d\x18\x54\x88\x58\x47\xe7\x0e\xfd\x37\x53\xb2\x62\x49\xff\x15\x46\xc3\x93\xcb\xef\x15\xf2\xf4\xd3\x6a\x7c\xc0\x68\x04\xe3\xf2\x7b\x85\xcc\x26\xd1\x25\xbf\x57\x18\xad\x2a\xf2\x85\x98\xc9\x4e\x3f\xad\x66\x05\x0c\xf9\x5e\xf2\x7b\x17\x34\xdd\x3c\xed\x68\xc7\x0e\x69\xba\xad\x7a\xa3\xed\x62\xd5\x65\xda\x85\x4e\x48\x8f\xf6\xf8\x18\x5f\xc8\xdc\x0d\x78\xb8\x99\x0d\xa7\xf1\x62\x7d\x53\x18\xed\x89\x5d\xe3\xc5\x08\x13\x30\x6c\x33\xe5\x0d\xc2\xea\xc2\xf1\xd2\x6a\x9f\xd8\x35\x64\xdb\x06\x0c\xdb\x3c\x9f\xf8\x29\xa0\xd9\x3e\x60\xeb\x79\xfc\xed\xe3\xb1\xb4\xd9\xc6\x6f\x0e\xc5\x61\x41\xe2\x78\xb1\x90\x02\x4d\x2d\x5e\xc4\x3f\xf1\xc2\xc4\xd8\xfc\x1e\xd4\x2b\xfe\xc0\x80\xa6\x16\xd6\x2d\x0e\x68\xba\x99\x0d\xeb\xf1\x5a\xbe\x89\x83\x46\xa3\x0b\xb0\xa7\x78\xb1\x18\xc9\x66\xee\x80\xd1\xfb\x81\x01\x99\x2d\x24\xf6\xc6\x4b\xc5\x9a\x34\x62\xfb\x72\x2a\x56\xe3\x46\x14\x2b\xa8\x37\x5c\xd8\x8f\x1a\xd6\x1b\x16\x46\x7b\xc6\xdd\x78\x6d\x1b\xf1\x68\x51\x61\xa7\x69\xc8\x96\x15\x06\x35\xa6\xc3\xaa\xc4\x42\x61\x2b\x68\x48\xa0\x15\x46\x6b\xbc\x10\x5a\x14\x30\x64\xcb\x2b\xd1\xd4\xe3\x0b\xb1\x04\x47\xb9\x90\xb0\x6c\x70\x40\x9a\x2d\xec\xd5\x8c\xd7\xf1\xf1\x2c\x89\xc3\xbe\x8a\xd7\xf1\xf1\x8f\x7e\x14\xb2\xd3\x21\xa7\x36\x2e\x26\x6b\xed\x09\x34\x03\x7e\xed\x07\x0a\xd9\xe9\x90\x66\x2b\x8c\xf6\x84\x90\x61\x09\xe2\x80\x6d\x5b\x5e\x45\x51\x57\x84\x89\x3d\x51\x43\x58\x82\x38\xa8\x37\x5c\xd8\x00\x19\xd6\x1b\x16\x46\x7b\x3c\x71\x58\x6f\x38\x20\xe3\x16\x32\xdd\x21\x19\x37\x28\x41\x3c\x88\xaf\xc3\x12\xc4\x41\x8d\xe1\x42\xa6\x3b\x2e\x75\x8d\x82\xc2\x83\x32\x26\x01\x7d\xf7\x03\x85\x6d\x7f\x21\x8b\x57\x18\x44\xe1\x61\xbd\x61\xa1\xb0\xa1\x2f\xae\xdb\x76\x11\x72\x53\xec\x24\xe4\xfa\x06\x94\xdd\xc2\x86\xbe\x90\xb2\x1b\x97\xe1\xc6\xa0\xf5\xcb\xc7\x2f\x9e\x65\x23\xd4\xaf\x4b\xfd\x42\x99\x2e\xf5\x0b\x7e\x6e\x79\xd9\x08\xc2\x8d\xa0\x38\xf1\x80\x9b\x18\x54\x28\x7e\x80\x77\x1c\xbc\x63\xf8\x8e\x04\xd3\xc4\xfd\x71\x85\x1d\x1d\x3c\x6b\xd2\xd4\xf0\x59\x2c\xd4\xb5\x8f\xc8\x2e\x7c\x3c\x66\xb9\x5e\xdc\xb8\xfd\xda\x6a\xf4\xe4\xb5\xd5\x68\x6a\x0c\x17\xd2\xda\x01\x31\xf7\x01\xfa\x6b\xd2\x88\x6d\x7f\x3d\xea\x5b\xd8\x6e\x16\x97\xea\x2b\x19\xb7\xbf\x78\x47\xd5\x17\x28\x6c\x24\x0b\xeb\x0d\x07\x35\x86\x47\x7f\xf1\x8e\xc7\x77\x3c\xb4\x2b\x71\xe3\xb1\x5d\x04\x25\xdd\xa6\x1e\xbf\xf6\xe3\x2a\x0b\x69\xed\x90\xc5\x2b\x0c\xe6\x23\x21\x8b\x37\x60\xee\x96\x2b\xf1\xda\x5a\x07\x2c\xde\xd1\x5f\x8a\x6c\x3d\x7a\xcf\x86\xad\x90\xb2\x2b\x14\xb2\xd3\x21\x65\x57\x18\xfd\x89\xeb\x22\x69\x0a\xe9\xd1\xfb\xc2\x5e\xa9\x48\xea\x3d\x30\xa0\x77\x86\x85\x8a\x03\xae\x6f\x61\x7f\x53\xc8\xf5\x15\x46\xbf\x14\xbd\x15\xd1\x88\x67\x30\x8b\xa4\x92\x03\x03\x12\x68\x24\xc2\xa0\x48\x8f\xae\x17\x36\xfa\x04\xec\xe0\x0f\x8c\xfe\xc4\x88\x21\x49\x58\x28\x64\xa7\xc3\x0a\xc7\x41\x55\xe3\xd1\xf1\x4c\x70\x88\x1f\x58\x5c\x45\xeb\xd5\x68\x49\xc2\x4c\xd6\x42\x92\xb0\x50\xd8\x99\x12\x92\x84\x85\x01\xed\x34\x24\x09\x07\x2c\xe0\xc2\x9e\x93\x48\xcb\x76\x2d\xdb\xc5\xe3\x97\xed\x5a\xb4\xab\xd3\xfa\x65\xbb\x96\xfd\x45\xaf\x6a\x43\x40\x61\x07\x48\x58\x40\x59\x18\x4c\x0f\x43\x2a\x71\x50\x47\xb9\xb0\xb7\x23\xd2\xb2\x5d\x18\x0c\xc5\xec\x23\x69\x30\x90\x84\x0b\x45\x93\x43\x16\xb0\x30\xa0\xc3\x46\x0a\x7f\xf1\x89\x53\xca\x85\x59\xa5\xf0\x73\x10\xa7\x50\x0a\x28\x12\x71\x4a\x40\x06\x2e\xec\xed\x08\x2b\x24\x07\xc4\xe0\x41\x3d\xfb\x90\x18\x1c\x09\x83\x49\x68\x61\xd2\x60\x12\xce\x9d\x5a\xf5\x91\xb4\x0e\x88\xc1\x25\xa9\x00\xdb\xd6\x6b\x0a\x99\x77\xd4\x14\x80\x92\x30\x2b\x89\xc1\xc2\xe8\xea\xaa\xa6\x90\x1e\xbd\x2f\xc9\xcf\xa1\xde\xcb\x15\xa6\xbe\x7c\xc8\x15\x0e\xf8\xc1\x25\xd9\x39\xc7\x76\x31\x09\xed\xf9\xb7\x69\x5b\x91\x8e\x7a\xfb\x18\x4c\x49\xbe\xef\xb1\x57\x20\x0e\x50\x6b\x3e\x92\x43\x0b\x25\x9f\x0b\x7b\x48\x03\xf2\xf1\x07\x06\xd3\xe9\x90\x83\x1c\xf0\x8e\x4b\xe2\x7d\x2d\xff\x1c\xb0\x8b\x07\xec\xe2\x90\x5d\x2c\x14\x98\xff\x21\xbb\x58\x18\x90\x84\xc3\x2a\xce\x91\x6f\x3a\x8a\x31\x29\xdf\x3e\x9e\x11\xa2\x3f\x01\x5d\x64\x47\x08\x38\xc8\x25\x7d\x44\x45\x11\x66\x41\xfc\x93\x35\x0b\xa0\x50\x9f\x39\xb2\x83\x06\x30\x3a\x56\x67\xf9\xe7\xa0\xe4\x73\x49\xd5\x5f\xbc\x15\xd1\x13\x9f\x1b\xe9\x09\x98\xca\x25\x55\x7e\x51\x85\xcf\x2a\x3c\x83\x99\x25\x9b\x85\x02\x81\x3f\x2c\xd9\x2c\x8c\xee\xe3\x55\xf8\xfc\x0c\x27\x85\x9d\xa6\x91\x09\xf2\x43\x3e\x73\xc7\xce\xe5\x33\x07\x4c\xe5\x92\x18\xb0\x65\x2a\x0b\x83\x6a\xed\x91\x55\x78\x8a\x26\x17\xaa\x25\x47\x76\x38\x90\x83\x4c\xb5\xf6\x90\x83\x1c\xd4\x54\x2e\x54\x38\x0e\x6b\x2a\x0b\xa3\x13\x8b\x59\x53\x39\xa0\x25\x17\xf6\x90\x86\xb4\x64\x61\x74\x22\x41\x6b\x2a\x07\xd5\x92\x4b\x7e\xf1\xb5\x8d\x79\xb2\x23\x04\x11\x9b\xe4\xe5\x80\xb0\x5c\x32\xce\xd9\x6a\xc9\xc2\x60\x75\x23\x24\x2f\x07\x45\x8f\x4b\xc6\x13\x5b\xf4\x58\x18\x94\x79\x0f\xc9\xcb\x01\x15\xb9\xc0\x4b\x0f\x8b\x1e\x0b\xa3\xdb\xd1\xc6\x3c\x40\x81\xc6\x1d\xd2\x92\x85\x41\x99\xf7\x90\x96\x1c\x94\x43\x2e\x24\xbf\xa3\x18\xf3\x00\x83\x32\xef\x61\x69\x64\xa1\x40\xaa\x8e\xa2\xef\x2f\x2c\x63\x43\x2f\x8f\xa2\xef\xa7\x0e\x72\xc9\xd8\xa6\x75\x90\x03\x5a\xf3\x60\xd5\x25\x2c\x7a\x1c\x14\x3d\x2e\x19\xbd\xb7\xe8\x71\x48\x71\x66\xd5\x25\xa4\x38\x0b\x05\x16\x6f\x58\x07\x59\x18\xac\xba\x84\x75\x90\xa3\xdc\xf4\x04\x4a\x5e\x54\x4c\x60\x40\x55\x8f\xa2\xef\x07\x0a\x69\xed\x28\xfa\xfe\xa2\xa3\x1f\xcf\xd7\xb6\x5a\x72\x50\x0e\xb9\x90\xd6\x8e\xa2\x57\x07\x06\x84\xf6\x28\x2a\x39\x50\xd8\x56\x1a\x52\xaf\xa3\xa8\xd1\x83\x2e\x54\xa3\x81\x02\xcd\x36\xa4\x5e\x0b\x83\x32\x5d\x21\xf5\x5a\x28\x10\x68\xc3\x02\xca\x41\x69\xe4\xd1\x07\x3d\xa1\xef\x87\x7a\x5d\xb2\x1d\x1d\x76\x21\xe9\x9b\x4e\x94\x45\x4d\xe4\x07\xe8\x2f\x06\x0d\x68\xd8\x1f\x18\xac\x2c\x85\x6c\xec\xa0\x0e\x72\xc9\x76\x4e\xd8\x5f\x5a\xc7\xa4\xa9\x5a\x07\x0c\xec\x02\x8d\x32\x8a\xa6\x00\x0c\xd6\x9f\x42\x36\xb6\x50\xb2\x8f\xd7\x3a\x8a\xd6\x41\xfc\x54\xb4\x0e\x18\xd8\x05\x52\x63\x58\x40\x59\x18\xac\x52\x85\x05\x94\x85\x02\x07\x30\x24\x68\x87\xd4\x6b\xea\xde\x87\xd4\xeb\x80\x67\x5d\x0a\x11\x9b\x3c\x6b\x61\x40\xed\x8f\x62\xcc\x03\xa9\xba\xc0\xb5\x0b\x49\xd5\xc2\xa0\xc8\x58\x48\xaa\x0e\x49\xd5\x14\x93\x0f\x49\xd5\x41\xed\xe3\x02\xcd\x2d\xac\x7d\x2c\x0c\xca\xc4\x87\xa4\x6a\xa1\xb0\x79\x35\xaa\x81\x3d\x30\x28\x13\x1f\x56\x48\x0e\xca\x21\x97\x92\x26\xa2\xad\x88\x46\x10\xf3\x54\xad\x03\x82\x76\x81\x9a\x16\x12\xb4\x85\x41\x99\xf8\x90\xa0\x1d\x10\xb4\x0b\xdc\xb1\x90\xa0\x1d\x94\x40\x1e\x94\x89\x8f\xaa\x29\x40\xbd\x2e\xa5\xf8\x2c\xdb\x75\xdb\x2e\xde\x51\xeb\x00\x0a\x1c\xad\x90\x7a\x2d\x0c\xf6\x2a\x84\xd4\xeb\xa8\x37\x9f\x83\xe1\xa4\x6a\x1d\xc0\x18\x76\xce\xb2\xa9\x0c\x01\x50\xa2\xa2\x6a\x1d\xc0\xa0\x00\x7c\x58\x6d\x59\x28\xa5\xd6\xdf\x1e\x8a\x2d\xc6\x2c\x0c\xea\xc3\x47\xd5\x9e\x2a\x23\x04\x2c\xa7\xa8\x1a\x0f\xf4\xf0\xc1\x6a\x61\x48\x0f\x17\x0a\x35\x95\x43\x7a\xb8\x30\x06\x93\xc8\xea\xe4\x03\x7a\x78\x81\x73\x14\xd2\xc3\x85\x41\x7d\xf8\xa8\x0e\x2d\xd4\x67\x2e\x70\x7b\xc2\xfa\xcc\x51\x99\x69\x0c\xbf\xbc\x43\x0b\x50\x60\xa1\x84\x25\x9b\x85\x31\xfc\xf2\xda\x13\x50\x0a\xf3\x24\xd9\xe7\xc2\xa0\x8a\x7c\xc8\x3e\x8f\xba\x79\x47\xdc\x48\x75\xf2\x41\xc9\xe6\x41\x15\xf9\xb0\x64\x73\x50\xa6\xb9\xc0\xd0\x88\xaa\xf1\x00\x83\x52\x75\x51\x35\x9e\x7a\xf8\x45\x46\xae\x6a\x2c\x05\x2f\x7d\x0c\xb5\xc8\xa1\xc5\x73\xa5\x2a\x26\x56\x9d\x43\x00\xb5\xa9\xca\xc6\x52\x50\xd5\x0b\x4c\x88\x90\xaa\x1e\x54\x6e\x1e\xac\xae\x46\x73\x84\x80\xaa\x5e\xc8\xd3\x87\x54\xf5\xa0\x80\xf2\x60\x75\x35\x2c\xa0\x1c\x54\x4b\x2e\x64\xa7\xc3\x6a\xc9\xc2\x60\x75\x35\x24\xb4\x07\xec\xf5\x42\x46\x39\x64\xaf\x0b\x83\x6a\xed\x21\x7b\x5d\x28\x35\x4f\x44\xa1\x88\xaf\x8d\x76\x4b\x68\x17\x4a\xfd\x34\xc2\x76\xa9\xca\x0c\x2d\xb2\xd7\x03\xc6\x7a\xa9\x3e\x5e\xdf\x2f\x7b\x9d\x3a\xec\x21\x7b\x3d\x1a\x5a\x58\x3f\xa2\xb7\xa2\x37\x57\xd1\x08\x5d\x38\x65\x96\x0b\x79\xd4\xb0\xcc\xb2\x30\xa8\xaa\x1e\x72\xdc\x03\x8e\x7b\x21\xf7\x19\x72\xdc\x85\x41\xd1\xbe\x90\xe3\x2e\x14\xb2\x87\x61\x4d\xe5\x90\xe3\x3e\x18\xcc\xe4\xb8\x07\xd5\x92\x4b\x6d\x3e\xcb\x76\x11\xe4\x53\x7b\x3d\xac\x96\x1c\x8d\xc8\xa8\xa2\xd1\x4d\xf5\x05\x06\xa5\xfd\xa2\xa9\xbe\x40\x21\xb3\x16\x16\x50\x16\xc6\xb0\xa9\xaa\x6f\x63\x35\x88\x9c\x59\x34\x87\x03\x60\xb0\xdb\x28\x9a\xc3\x01\x50\x2a\x83\x6c\x73\x38\xa0\xf2\xf2\x18\xc4\x62\x56\x5e\x0e\x0a\x28\x17\xd2\xda\x61\x01\xe5\x90\x7b\xcf\x9e\xa4\x90\x7b\x1f\x10\xed\x0b\x79\x9f\x90\x68\x2f\x8c\x61\xe7\x1c\xbb\x90\x09\x43\xc5\x3a\x24\xda\x07\x05\x94\x07\x25\x07\xc3\x02\xca\x41\x39\xe4\x42\x46\x27\x9a\xf1\x53\x73\x84\x20\xca\x92\x42\x1f\xf0\xe5\x4b\x7b\x29\x2a\x8a\xd0\x09\x22\x23\xf9\xf2\x01\x39\xbe\x34\x46\x08\xc9\xf1\x01\x13\x7e\xb0\x7a\x1f\x32\xe1\x85\x42\x86\x22\x64\xc2\x0b\x83\xd5\xfb\xe8\xce\x08\x80\x42\xee\x21\x24\xc7\x47\x77\x38\x20\xe8\xed\x0e\x07\x40\x21\x13\x10\x92\xe3\xa3\x6b\x43\xac\x2c\x75\x6d\x08\x28\xac\xf1\x87\x7c\x79\x61\xb0\xc6\x1f\xdd\x28\x0b\x28\xac\xde\x87\x35\x95\x03\xbe\xfc\x18\x7c\x34\xf9\xf2\x01\x55\xbd\x50\x1a\x39\xa4\xaa\x0b\x83\xdd\x59\xd1\xf5\xd1\x30\xd6\x0b\x6b\xd6\x61\xb5\x64\x61\x90\x09\x88\xae\x75\x40\x3c\x2f\xac\x33\x47\x57\xa3\x25\xa1\x53\x1c\x3d\x24\xa1\x47\x7f\xd4\xb7\x34\xd4\xa4\xc7\xe7\x46\xbe\xd0\x50\x84\xfa\x52\x57\xb8\xb8\xb4\xd8\xd5\x2f\x60\x90\x2f\x88\xee\x1c\x15\x28\x2e\xce\x59\x76\x38\x60\x99\x0f\xca\x9e\x87\x65\x87\x03\xfe\x78\x61\x67\x6e\x48\xf6\x0e\x28\xd2\xa5\xcd\xe7\x85\x2c\x90\x2b\x0c\x36\x92\x85\x07\xe6\x05\x0c\xea\xe2\xb4\x55\x06\xb5\x30\x48\x47\x84\x0c\x6a\xa1\x38\x97\x94\x41\x2d\x8c\x81\x16\x5a\x33\x37\xc6\xd3\x47\xc5\x59\xe2\x70\x4c\x93\x54\x4d\xbd\xf4\x90\x54\x1d\x30\xa8\x4b\x67\x31\x53\x06\x75\xc0\xa0\x1e\x6c\x5d\x0b\x19\xd4\x42\xe1\x14\xb1\x90\x41\x2d\x8c\xf9\xfa\x07\x66\xc5\x43\xff\x03\xe7\xba\x38\x21\x95\x54\x2d\x0c\xf6\xbf\x85\xa4\x6a\xa1\x38\x3d\xb4\x16\x6f\x0c\xd2\x1c\x94\x40\x8f\xe1\xf0\x09\x5d\xba\x38\xa5\x93\x2e\x2d\x0c\x4a\xa0\xc7\xd0\xa8\x29\x90\x5b\x3a\x0b\xae\xc3\xf9\x3d\xac\xe9\xc1\x5e\xba\xb0\x32\x6e\x40\x71\x2e\x1c\xe9\x14\x52\x9c\x03\xc2\x71\x21\xdb\x1a\x12\x8e\x85\x41\x92\x26\xac\x79\x2b\x14\x72\x9f\x61\xcd\x5b\x61\x4c\x86\xbc\xe9\x5a\x14\x50\x38\x01\x29\x64\x2a\x07\xb4\xe4\x41\x2a\x27\xa4\x25\x07\x15\x68\x8b\x21\xa4\x15\x68\x85\x41\x55\xf4\x98\x7e\x79\xb8\xbe\x85\x53\x65\x42\xae\x6f\x50\x6e\x76\xb0\x7b\x2f\x2c\x37\x1b\x50\x76\x8b\x23\xaa\x94\x5d\x61\x90\xca\x09\x29\xbb\x01\x3f\xb7\x38\x8e\xc8\xcf\x15\x06\xf5\xce\x43\x7e\x6e\x40\xc6\x2d\x64\x22\x43\x32\xae\x30\xa8\x77\x1e\x92\x71\x85\xa2\x57\x97\x8c\x2b\x0c\xf6\x0b\x86\xc5\x5f\x63\xb2\xfc\xa9\xbf\x9e\x2e\xf0\x00\x83\xaa\xe8\x61\xf1\xd7\x80\x6d\x5b\x06\x13\x99\x69\x6c\x01\xcd\x76\x90\x62\x0a\x69\xb6\x01\x35\xb6\xe8\xcb\xa4\xc6\x06\x74\xd8\x42\x42\x31\xde\x3a\x54\x58\x96\x83\x1a\xe7\x21\xcb\x32\x20\x48\x16\x2a\x68\xc7\xdb\xc8\x48\xb2\xa4\xa9\x0d\xc9\x92\x01\x0d\xb2\x50\x37\x3a\xa4\x41\x0a\x83\x3a\xb5\x21\x0d\x52\x28\x94\x46\x0e\x4b\x80\x0a\x83\xba\x9a\x21\x33\x32\xe0\x3c\x16\x8a\x1e\x87\x9c\x47\x61\x4c\xf4\x4b\x52\x63\xdc\xac\xf3\x50\x82\x38\x6e\xe7\x10\xc0\xa0\xfa\x66\x58\x3b\x34\x28\x14\x5a\xd8\x55\x18\x16\x0a\x15\x86\x29\x17\xd9\x90\x01\x03\xb2\x50\xea\x37\x2c\x14\x1a\x16\x0a\xa5\x32\x6e\xc8\x86\x0c\xaa\x6f\x16\x5f\xc8\xea\x9b\xc2\x98\xf8\xb2\xdb\xc8\x08\xa8\x14\x69\x8d\x5b\x17\x0e\x8c\x89\x2f\xbb\x8d\x8c\x20\x0f\x56\x8a\xb4\x86\xe4\x41\x61\x50\x3f\x37\x6e\x3d\x0b\x50\xa9\xd1\x19\xf2\x09\x85\x41\x55\xd0\xb0\xb8\x67\xdc\x8f\x07\xa8\xd4\xe8\x8c\x5b\x0f\x00\x0c\x76\x38\xc6\xed\x54\xf3\x7e\x34\xba\x52\x7d\x33\x6e\x35\x1a\x18\x54\xc3\x0d\xf9\x84\x01\x87\xb0\xbe\x88\xeb\x6e\x35\x1a\x98\x54\x18\x8d\xdb\x68\x19\xa8\x14\xbe\x0c\x29\x86\xc2\xa4\x1a\x6e\x48\x31\x0c\x98\x82\x95\xc2\x97\x21\x53\x50\x98\x54\xc3\x0d\x0b\x85\xc6\xbd\x69\x57\x55\x64\xbb\x1e\x98\x54\xc3\x0d\xf9\x84\x01\x9f\xb0\x52\x3a\x32\xe4\x13\x0a\xf3\xd3\xd1\xfa\x2f\x28\x86\x95\xa2\x90\x21\xc5\x30\xe0\x13\xce\xd7\xcb\x1b\x87\x22\xfa\x9e\xa0\x44\xf2\x60\x50\x0b\xb3\xbe\x58\x41\xb6\x16\xa6\x30\xd9\x11\x1a\xcb\xef\x08\x49\xaf\x72\x94\x62\x48\xd2\x13\x26\x45\x6d\x43\x92\x5e\x40\xcc\xab\xec\xfe\x0b\x2b\x66\x0a\x93\x0a\xb6\x61\xc5\xcc\xa0\x16\x66\x65\xf7\x5f\x58\x0b\x33\x28\x7c\x39\xa9\x60\x1b\x16\xbe\x0c\xe8\x77\x95\x1d\x7b\x21\xfd\x4e\x98\xe6\x02\x97\x0a\x00\xfd\xae\x5e\x38\x2b\xe9\x77\xc2\x7c\xe1\x0b\xad\x5f\x19\xb0\xe8\xaa\x49\x0b\x59\x74\xc2\xa4\x82\x6d\xc8\xa2\x0b\x28\x73\x95\xca\x70\x21\x65\x2e\x96\x9f\x96\x85\x60\x29\x73\x41\x35\xc9\xca\xfe\xb9\xb0\x9a\x64\x50\x22\x72\x72\x68\x69\x2c\xbf\xf6\xe2\xa3\x99\x7b\x58\x7e\xb4\xe5\x47\xc3\x63\x2e\x3f\x1a\xc4\xba\x4a\xf9\xb0\x90\x58\x27\x4c\xf6\xd9\xc6\xd2\x9b\xc0\xb5\xab\xec\x79\x0b\xb9\x76\xc2\x34\x93\xb9\x74\x1d\xf0\xeb\x2a\x05\xb8\xc2\xa2\x92\x01\xd7\x6e\x6a\x43\x72\xed\x84\xf9\xfa\x07\x8e\x83\x08\x6b\x4e\x0a\x95\x0a\x59\x11\x3a\x1b\xca\x50\x4e\x0e\x56\x0d\xcb\x50\x46\x3c\xae\xa3\x52\x89\x2a\xc2\x05\x0b\xaa\x51\xce\x57\x56\x84\x62\xc5\x8d\x7e\x30\xc8\x86\x51\x25\x30\x39\x6b\x35\xa4\xf5\x05\x54\xbe\x6a\x86\xc1\x9a\x93\xc2\x64\xc7\x70\x84\x51\x25\x65\x28\xeb\x35\x7c\x96\xbf\x78\xfb\x8b\x8a\xfc\xc5\xa0\xf5\xf8\x32\xe9\x73\xc2\x64\x5f\x71\x48\x9f\x0b\x6a\x3b\xd6\x84\x32\x58\xdb\x51\x98\x7a\x83\x88\xcf\xb3\x1e\x73\x75\xa9\x5e\xfa\x9c\x30\xcd\xef\x86\x6e\x04\xae\x5c\x75\xa9\x5e\xae\x9c\x30\xa9\xc5\x1b\xa1\x16\x51\x14\xb2\x52\x62\x28\x2c\x0a\x29\x4c\x0a\xef\x86\x45\x21\x23\xd0\xa2\xe4\xe3\xd5\xa2\x50\x8b\xf0\x3f\xf2\xe3\x22\xd0\x22\x0a\xeb\x44\xa8\x45\xa1\xe9\x13\x84\xc9\x8f\x8b\x78\x26\x1f\xd5\x45\xf8\x38\x9f\xc7\x63\xe7\x9f\x1b\x43\x11\xef\x88\xae\x59\x4d\x52\x98\x94\xe7\x0d\x59\x74\x41\x21\xc7\x9a\x18\x9d\x2d\xe4\x28\x4c\xca\xf3\x86\xcc\xb7\x80\xc0\x56\xa9\x56\x13\x12\xd8\x84\x69\x76\xda\xaa\x8d\x41\x89\xc6\xca\x3e\xb5\xb0\x44\xa3\x30\x5f\x84\x1b\x96\x68\x0c\x18\x6a\x35\x91\xcc\xdd\x2e\xf0\x00\xf3\xc5\xb4\x55\xb6\x5a\xc0\x2a\xab\x2e\x9c\x6f\x87\x16\x60\xea\x63\xb7\x43\x0b\x50\x5d\x12\xdf\x7a\x16\xb8\x67\xd3\x7c\xf8\x56\x4d\xe0\xa1\x55\x97\xc4\xe5\xa1\x09\x53\x4f\x6c\xd5\xc6\xa0\xf8\x62\x65\xa7\x57\x58\x7c\x51\x98\x2f\x26\xb7\x16\x5f\x0c\x6a\x28\x56\xaa\x91\x84\x35\x14\x85\x49\xa9\xdf\xb0\x86\x62\x40\x3a\xab\xec\xe1\x0a\x49\x67\xc2\xd4\xab\x4b\x3a\x0b\xb8\x63\x95\xdd\x59\x21\x77\x4c\x98\xe6\xe9\xe5\x8e\x05\xe5\x0f\xab\x8b\xdd\xdb\xaf\xbd\xfd\xda\x38\x08\xe9\x64\x01\x9d\xac\x66\xba\x50\x3a\x99\x50\xa9\x16\x11\x47\x0f\x70\xde\x3c\xbe\x79\x55\x51\x54\xb8\xaa\x21\xaa\x8a\x30\xd1\xe6\x8d\x7c\x21\xb8\x63\x95\xd2\x10\x21\x77\x4c\x98\x0e\x40\x47\x05\x80\x09\x56\x33\x13\xd2\xa3\xd5\x42\x01\x9b\x52\x0a\xa4\x80\x09\x95\x4d\xfd\x21\x05\x4c\x98\x52\x0a\x8e\x03\x10\xac\xb0\xca\x96\xa7\x90\x15\x16\x67\xd9\x7a\x1a\xe1\x6c\x0a\x26\x57\x75\x9d\x59\x26\x97\x30\x25\x1e\xc8\xe4\x0a\x68\x5b\x95\x1d\xe9\x21\x6d\x4b\x98\x8e\x95\xd2\xb6\x02\xaa\x56\x65\x33\x53\x1c\xe7\x95\xc0\xa4\xde\x70\x1c\xe7\x95\x07\x65\x62\x33\x53\x1c\x95\x09\x26\xd7\x7c\xf9\xda\xce\x67\xa0\x6d\x55\x0e\xd7\x0b\x69\x5b\xc2\x7c\xb1\x2c\x22\x6d\x2b\xe0\x68\x55\xd7\x99\xe5\x68\x09\x93\xb2\xc3\x71\x1c\xcc\x80\xca\x3e\xec\x90\xb6\x25\x4c\x4a\x6f\x87\xb4\xad\xa0\x52\x63\x2d\x8c\x5c\xc7\x60\x1c\x98\x2f\xe6\xf4\x32\xb9\x02\xf6\x56\x2d\xc9\x5f\x9c\x8a\x6c\xbd\x37\xda\x7a\x5c\x1a\xdb\xa7\x42\x26\x97\x30\x5f\x84\xa0\x32\xb9\x02\x8e\x56\x2d\xc9\xc7\xfb\x1d\x37\xdf\x91\x99\xff\x71\xd5\x05\x8e\x56\x75\x81\x5a\x8e\x96\x30\x25\x7d\x58\x83\x31\xa0\x6d\x55\x36\x24\x87\xb4\x2d\x61\x52\x50\x21\x8e\x03\x23\x1c\xad\xca\x02\xf5\x96\xa3\xb5\x21\x4e\x55\xd6\x99\x37\xb5\x0a\x1f\xc0\x63\x3e\x9a\xb3\xad\x4f\xb8\xa1\x44\x55\x96\x62\xb7\x94\x28\x61\xbe\x9e\x41\x67\x4b\x89\xda\x70\x9e\x2a\x3b\x8c\xf6\x6b\x79\xe3\xc2\xb6\x07\x8f\x67\xd2\xbd\xa9\x62\x58\xcb\x47\xb4\x15\xe1\x57\xc7\x6f\xd3\xb6\xf6\x6b\xf9\xeb\x0c\x66\xec\xa5\xdb\x9e\x11\x2f\x4c\xe8\x2b\xdb\x52\x88\xfb\xa5\x7e\x4c\x1a\xb4\x6d\xa3\xfa\x31\x79\x93\x6d\x17\x3c\x9d\x5e\x39\xc4\x6e\x7b\xf6\xba\x30\x5f\x53\x91\x57\xb1\x2c\xcb\x61\x71\xdb\x53\xd5\x85\x49\x01\x89\xed\xa9\xea\x1b\x2e\x54\x65\xf7\xcc\x96\x0b\xb5\x5f\x0e\x1a\x34\x55\xe2\xd3\x86\x99\x54\x59\x11\xdd\x32\x93\x84\x09\xad\x66\xcb\x4c\x12\x2a\x7b\x46\x36\x55\x04\x3f\x30\x5f\x8f\x21\x6e\x8b\x09\x6e\x38\x4b\x95\xb5\xce\x7d\x31\x77\x16\xe6\x8b\xd7\x86\xcb\xf4\x40\xe6\x2a\x6e\xc4\xff\x08\x93\x38\x76\x4b\x69\xda\x30\x93\x2a\xbb\x2e\xb6\xcc\x24\x61\x52\xf5\x7a\xc3\x52\xfa\x40\x65\xdf\xc2\x96\xac\x24\x4c\xca\x5f\x6c\x8a\x14\x3e\x40\xbb\x50\x99\x4b\xfd\xa0\x56\xe1\x24\x26\xde\xd6\x2a\xdc\x50\x9a\x2a\x7b\x0d\xb6\x94\x26\x61\x42\x1d\xda\x96\x1c\xdc\x90\x95\x2a\x6c\xfd\x2d\x59\x49\x98\x44\xce\xdb\x53\xd5\xf7\x45\xe8\x02\x7b\x7d\x53\x45\xf0\x03\x93\xa3\xca\xb7\xc5\x04\x37\xcc\xa4\xda\x7c\x21\x15\x00\xb8\xe0\x16\x6e\xcf\x4b\x17\x26\x15\xe9\xb7\x64\xa5\x4d\x01\xc1\xda\x3e\xa2\xae\xa8\xb3\x2e\x4f\x53\x19\xcc\x36\x34\xa4\x0a\xf5\x7a\x4b\x43\xda\xd0\x90\x26\x2c\xa7\x2d\x0d\x69\xc3\x20\xaa\xec\x9e\xd9\x16\x00\x14\x26\xd5\xed\xb7\x6c\x22\xa1\x42\xff\xdd\x9e\x71\x2e\x4c\x4a\x7c\xec\x4b\x95\xe3\xd8\xf3\xda\x12\xaf\x7d\xfc\x1c\x87\xcf\x61\x23\x8e\x8d\xc0\xf4\x59\x40\xdc\xd2\x90\x36\x3c\xa3\x0a\x3f\x77\x43\x36\xfa\xc0\x64\xa6\xb1\xe5\x1c\x6d\x4e\x42\xaf\x1c\xb7\xb6\x3d\x09\x5d\x98\x54\x09\xdf\x72\x8e\x36\x27\x96\x57\x98\xb7\x3b\xa9\x39\xf0\x71\x26\xb4\xad\x2d\x1f\x47\x28\x09\x53\x90\x8f\xb3\x61\xda\x4c\xaa\x71\x6f\x99\x36\x42\x6d\x8f\x13\xdc\x32\x6d\x84\x79\xd9\x7a\xbf\x36\x07\x97\xd7\x36\x78\x56\xd8\x08\xc6\x91\xcb\x17\x62\x1c\xd9\xd4\xdb\xab\xd0\xdc\xb6\xf5\xf6\x36\xec\x9a\x09\xfb\x6a\x43\xb1\xf9\x40\x65\x4b\xca\x96\x69\x23\x4c\xd8\x57\x3b\xf9\xb5\x21\xdc\x54\x28\x60\xdb\xaa\x7c\x1b\xf2\xcd\xbc\xec\x1c\xbc\xfa\x86\x0a\x53\xe1\x68\x6d\xa9\x30\xc2\xa4\x82\xc8\x96\xeb\x22\x54\x18\x40\x1b\xde\xcb\x03\x7c\x34\xbb\xd0\x8f\x06\xd4\xfe\x8c\x10\x5b\x62\x8b\x50\x3b\x5f\xdb\xe2\x7a\xc2\xa4\xfc\xf3\x96\xeb\xb2\x39\xde\xbc\xb2\x22\xba\xb3\xdf\x11\x98\x57\xf1\x59\x4d\xd1\x9b\xab\x0a\xa2\x5b\x11\x2f\x54\x7c\x3c\x2f\x04\xb1\xa5\xb2\xd6\xb9\x25\xb6\x08\xf3\xaa\x8a\x7c\xfc\xe2\x17\xbd\xd1\xaf\x9d\x35\xbe\x4a\x23\x34\x3e\x48\x1f\xb5\x0f\x1a\xe1\xe7\x00\x26\xc5\x76\xb7\xa4\x8f\x0d\x77\xa3\x76\x7c\xa1\xdc\x0d\x61\x42\xc8\xda\x16\x9e\xdb\xf0\x35\x2a\x79\xe7\x6d\x95\xb9\xcd\x19\xd6\x93\x49\xd5\xf6\x0c\xeb\x4d\x65\xb9\x4a\x62\x78\x67\x3f\x47\xf6\x73\x30\x4c\x59\x65\x6e\x43\xd4\xa8\xe3\xa2\x0b\xcf\xe7\xf1\x28\xe6\x33\xac\x6f\x89\x1a\x1b\xa2\x46\x25\xdf\xb9\x25\x6a\xec\x62\xaf\x3e\xc3\xfa\x96\x95\xb1\x39\xb0\xba\xb2\xda\xb8\x3d\xb0\x5a\x98\x9c\x13\xb0\x3d\xb0\x7a\x43\xd4\xa8\x64\x0c\xb7\x44\x8d\x4d\x2d\xba\xc9\x64\x6f\x5b\x8b\x6e\x43\xd4\xa8\x9c\xc9\xbc\x25\x6a\x6c\x88\x1a\x93\xc9\xde\x96\xa8\xb1\x39\x64\xba\x92\x73\xdb\x1e\x32\x2d\x4c\xce\x1c\xd8\x1e\x32\xbd\x61\x52\x54\x56\x1b\xb7\x4c\x0a\x61\x42\x4d\xdb\x32\x29\x36\xb4\x89\x3a\xda\x6f\x1f\x07\xb1\x65\x55\x08\x93\x7a\x2f\x5b\x56\xc5\x86\xf6\x50\x49\xf8\x6c\x69\x0f\xc2\xbc\x18\x51\x2d\x42\xb7\x61\x42\xd4\x61\xdf\xa9\x1f\xc0\x64\x8e\xba\x3d\x11\x5a\xa8\xc3\x5e\x61\xaa\x29\x4c\x6a\xc7\xec\x12\xf6\x1d\x53\x4d\x4e\x8a\xdd\xf2\x25\x84\x09\xa3\x6e\xcb\x97\xd8\x85\xb8\x6c\xd8\x88\xed\xa7\xd9\xfe\xa2\x37\xfa\x8b\x87\xee\x64\x60\xb4\x2e\x9d\x30\xa9\x96\xbc\x8b\x8a\x05\xc7\xa1\xb2\xbc\xbe\xe5\x38\x08\x93\x6a\xc9\x5b\x8e\xc3\x86\x65\x50\xd9\x32\xb0\x3d\x80\x59\x98\x94\xa6\xd9\x32\x0e\x36\x5c\x82\x3a\x9f\x29\xf0\x96\x4b\x20\x4c\xaa\x25\x6f\x2b\xbb\x6d\xd2\xf8\x95\xa3\x14\xb7\x79\x7a\x61\x52\x2d\x79\x9b\xa7\x17\x2a\x27\x33\xed\xea\x17\x02\x26\xd5\x92\xb7\xa9\xfb\x4d\x52\xbe\x52\xb3\x6d\x9b\x94\x17\x66\xc2\x09\x56\x3d\x31\x69\xed\xca\xf9\x4d\xdb\xb4\xb6\x30\x29\x99\xb3\xab\x56\x07\x54\x16\x23\xb7\x99\x6e\x61\xc2\x53\xdc\xd5\xfe\xaa\x44\x46\xd3\xd7\x36\x32\xe2\xbc\xe2\x99\xb0\x60\xcf\x2b\x16\x1a\x6b\x64\xdb\x4c\xf7\x6e\x8f\x7b\x6b\x2c\x88\xed\xa6\x7b\x03\x66\x62\x44\xf5\x08\xe3\xcd\x19\xc3\x8d\x05\xb1\xed\x19\xc3\x9b\x6a\x6e\x93\xf3\x2d\xb6\xd5\xdc\x84\xc6\x62\xd1\x6e\xc6\x4f\xc0\x4c\x9f\xc7\xf3\xda\xa4\xc8\x1b\xb4\xf7\x6d\x8a\x7c\x93\x16\x9f\xd4\x00\xda\xcd\x30\x99\xb4\x76\x63\x51\x67\x9b\xd6\x16\x66\xb2\x11\xc6\x3c\x1c\xfc\xdb\x58\xca\xd8\xcd\x2f\xd4\xfc\x1c\x0c\x8c\xe6\xb0\x37\x09\xeb\xc6\xd4\x7c\x9b\xb0\x16\x26\xc4\xcb\x6d\xc2\x7a\x93\x2b\x6e\x4c\xa7\xb7\xb9\xe2\x4d\xd2\x74\xa6\xeb\xe9\x09\x93\xa6\x9b\xc4\xdd\x4c\x78\x62\x13\x77\x9b\x22\x50\x8d\x5a\xf3\xdb\x22\x50\x9b\x23\x44\x27\x35\x5e\xb6\x47\x88\x6e\x72\x79\x0d\x02\xed\x36\x97\x27\x4c\x66\xfe\xdb\x5c\xde\xa6\x2e\x54\xd3\xc7\x5a\x17\x4a\x98\x54\x82\xd9\x9e\x04\xba\x39\x09\xb4\x5d\xcc\x21\x3c\x09\x74\x53\x3d\x6a\x66\x3a\xda\xea\x51\x9b\xf2\x4e\x4d\xa7\x60\xc6\x6f\x53\xac\xa9\x69\x1d\xc3\x70\x03\x98\x70\xed\xb6\x85\x9b\xf6\x78\xbe\x70\xa3\x66\xf7\x1e\x3a\x54\x60\xb2\xfc\xb0\x87\x5f\x9b\x2a\x4d\xcd\x4f\x6b\x95\x26\x61\x52\xf0\x75\x5b\xa5\x49\x68\x70\x57\xb7\x55\x9a\x36\x27\x81\x4e\x0a\xbe\x6e\x4f\x02\xdd\x9c\xeb\xd9\x12\x3a\x31\xfc\xda\x9c\xeb\x39\x29\xf8\xba\xc7\xb2\xf5\x8f\x8f\x6d\x94\xde\xde\x26\x27\x85\x09\x07\x70\x7b\xa0\xa7\xd0\x28\xdc\xb4\xcd\x57\x6e\x32\x91\x33\xa3\x98\x66\x22\x37\x69\xc7\xc6\x8a\xd7\x36\xed\x28\x4c\x0a\xe0\x6c\x6b\x39\x09\x8d\x82\xd3\xdb\x4c\xa4\x30\x29\xd2\xba\x87\xc1\x12\x99\xc8\x06\x39\x75\x9b\x89\x14\x26\x7c\xc2\x6d\xaa\x71\x93\x31\x6c\x1c\xa9\xb2\xcd\x18\x0a\x93\x22\xad\xdb\x62\x4d\x42\x4b\xcd\xab\x6c\x44\xa0\x00\x19\x91\x8a\x39\x1e\x35\x6b\x89\x98\x7a\x18\x53\x73\x38\xe8\xcc\x76\x8e\x3e\x1a\x68\x1c\x83\xb2\x3d\x1c\x54\x98\x14\xe6\xd9\xc3\x58\x0c\x68\x54\x97\xde\x43\xc5\x1c\x2a\x26\xc3\xe7\x50\x31\x39\x2f\xb4\x51\x5d\x7a\x7b\x5e\xa8\x30\x59\x20\xda\x9e\x17\x2a\x34\x28\xac\xdb\xba\x52\xc2\xcc\x7e\x0e\x63\x0b\xa0\xa5\xae\xc8\x77\x54\xc9\x33\x5d\xa8\x92\x93\x09\x6d\x89\x40\xc2\x22\x52\xc2\xa4\x6e\xeb\xb6\x88\xd4\xa6\x62\x54\xa3\x16\xd4\xb6\x62\xd4\xa6\x4a\xd4\xa4\x6e\xeb\x1e\x3a\x3e\xa0\x25\x46\x3e\xd3\xa9\xc2\xcc\xe5\xfa\xed\xa1\xd8\x82\x52\x9b\x04\x6c\x83\x53\xbb\x4d\xc0\x0a\x93\xd5\xaf\x6d\x02\x76\x93\x47\x6d\x2c\xfa\x6d\xf3\xa8\x9b\x92\x4e\x93\x0a\x46\xdb\x53\x41\x85\xa6\xd5\x4d\x2d\x05\x98\x14\x7f\xdd\x56\x7c\xda\x14\x6e\x6a\xda\x93\x85\x9b\x84\x09\x6d\x74\x5b\xb8\x49\x68\x6a\x91\x67\x87\x0a\x93\xe2\xaf\xdb\xcc\xed\x26\x5b\xdb\xd4\x0f\xcb\x3b\x09\x13\x72\xe9\xb6\xbc\xd3\xa6\xfe\x52\xf3\xcb\x5b\x7f\x49\x98\x94\x88\xdd\x1c\x1a\xfa\xc0\x7c\xae\xf2\xf1\xf1\xb9\x11\xa3\x46\xbb\x3d\x28\x74\x93\xa6\x6d\x2c\xfa\x6d\xd3\xb4\xc2\xfc\xbb\xc8\xd6\x6f\x7e\xb1\x29\xf2\x17\x55\x3f\xfc\xb5\x35\x93\x84\x46\xc1\xd6\x6d\xcd\x24\x61\xe6\xaa\xc8\x46\xa0\xa4\x19\x85\x9f\xfb\xd3\x08\x94\xb4\xd2\xab\x2a\x29\xd0\x28\xd8\xba\xcd\xef\x6e\x32\xb7\x93\x65\xc6\x6d\xe6\x76\x93\xad\x9d\x94\x51\xda\x6f\x63\x4f\xa0\x41\x08\xdd\x16\x35\xda\x6f\xbd\x27\x71\xac\x15\x8c\x36\xb5\x89\x1a\xb5\x89\xb6\xb5\x89\x84\x49\x39\xd1\x6d\x6d\xa2\x4d\x89\xa1\x46\xb9\xc7\x6d\x89\x21\x61\xb2\xf2\xb8\xdf\xce\xfc\xa9\x27\xd4\x0a\x6e\xd7\x7a\x42\xc2\xcc\x44\x6c\xd6\x13\xda\xd4\x13\x6a\x70\x31\xb7\xf5\x84\x84\xc9\xfa\xe4\x7e\xeb\xde\xa8\x27\xd4\x58\xea\xda\xd6\x13\x12\x66\x26\xae\x7b\xeb\xa5\x28\x1e\xd4\x58\xea\xda\x16\x0f\xda\x6f\x6d\x93\x98\xf8\xad\x6d\x92\x2b\x6e\x1c\xb2\xb1\xcd\x15\x6f\x52\xbe\x8d\x4a\x54\xdb\x94\xaf\x30\xa1\xb3\x6e\x0b\xe0\x6c\x32\xbf\xad\x0c\x45\x6f\x45\x6f\xae\x9a\x88\x78\x21\x4e\x7a\x6c\x94\xb6\xd9\xb7\xfd\x05\x4c\x96\x2c\xb7\xd5\x6e\x36\x15\x6a\x1a\x95\x95\xb6\x15\x6a\x84\x49\x95\xa6\x7d\x1b\xd7\x51\x5c\xa6\x51\xc1\x68\xdf\xeb\x23\xba\xb9\x2a\x21\x5a\x8a\x9e\x2e\xa4\xf6\xcc\xb6\xf6\x8c\x30\x29\x56\xb9\x6f\xbb\x90\x7a\x31\x8d\x42\x33\xdb\x7a\x31\xc2\xf4\x0b\xdd\x5a\xc7\x4d\x17\xba\x4a\x75\xdb\x85\xc0\xa4\xa4\xe5\x36\x7d\xbc\xa9\x2a\xd3\x60\xf7\x6d\xab\xca\x08\x93\xa5\xd4\x6d\x62\x78\x53\xbd\xa5\x51\x25\x65\x5b\xbd\x45\x98\x94\xb4\xdc\x66\x5b\x37\xd9\xd6\xe6\x9a\x91\xd9\xd6\x4d\xa9\x96\x06\xcd\x6d\x5b\xaa\x45\x98\xac\xc1\xee\x65\x5c\x47\xa9\x96\x46\xd1\x87\x6d\xa9\x96\x4d\x11\x96\x09\x49\x78\x5b\x84\x65\x2f\x34\xda\xa5\x9f\xa5\x46\x03\x93\x35\xd8\xbd\xfc\x42\x94\x6a\x69\x94\x24\xd8\x96\x6a\xd9\x9c\x9b\x38\xa1\x12\x6f\xcf\x4d\xdc\xa4\x79\x1b\x25\x09\xb6\x75\x59\xb6\xf9\x5d\xd5\xd7\xfc\xae\xd0\xa0\xa6\x6d\x8b\xb0\x08\xb3\xe0\xbf\x4c\xf9\x6e\x8e\x3c\x6c\x0d\xfd\x5a\x7a\x39\x60\xaa\xe4\xa6\x7c\x37\x29\xdf\xc6\x39\x12\xdb\x94\xaf\x30\xa9\x85\xb9\x2d\xe8\xb2\x49\xcd\x36\xa8\x69\xdb\xca\x26\xc2\xa4\xf0\xe5\x36\x4d\xbb\x49\xad\x36\x6a\x96\x6c\x53\xab\xc2\x84\xbc\xbc\xd7\xf9\x5c\xf5\x8c\xbb\xd4\x2c\xd9\x56\x36\x11\x26\x65\xba\xb6\x09\xd8\x4d\xd2\xb5\x35\x46\xfa\xe5\x77\x04\x26\xe5\x31\xb7\x09\xd8\x4d\x6a\xb5\xb1\x37\x76\x9b\x5a\x15\xa6\x26\x6a\xee\x74\x93\x28\x6d\xec\x1b\xdd\x26\x4a\x85\x49\x79\xcc\x1d\x7e\x5a\x0a\x9c\x34\x88\x62\xdb\xc3\xf9\x76\x30\x5d\xa2\x3c\xe6\x0e\x3f\x2d\xc9\xd1\xc6\x9e\xca\x6d\xb1\x13\x61\xba\xb2\x6d\xa2\x54\x68\x54\x36\xd9\x26\x4a\x85\x59\x18\xe6\x2c\x89\x22\x34\x76\x4b\x6e\x4b\xa2\x08\x93\x52\x9b\x3b\xb4\x5a\xa0\xb5\xf9\xdb\xb4\xad\x6d\x02\x56\x98\xb0\xbc\xb7\xe7\x00\x6e\x8a\xa8\x34\xc8\x6c\xdb\x22\x2a\xc2\xa4\x9e\xd9\xb6\x88\xca\xe6\xec\xbf\xc6\xf1\xf5\x3b\xd4\xa2\x20\x6f\xe3\x1a\x7d\x38\xc8\x72\xd0\x5f\x63\xd3\xe2\x0e\xf5\x23\xf4\x06\x8c\x82\x1e\xfa\xb7\x49\xf9\x36\xf6\xe5\x6d\x53\xbe\xc2\xa4\x3c\xe6\x36\xe5\xbb\xa9\x98\xd2\xd8\xff\xb6\xad\x98\x22\x4c\x6a\xa3\x6d\xcf\x01\xdc\x14\x28\x69\xec\x46\xdb\x16\x28\x11\x26\x47\x27\xed\x70\xc8\x8b\x67\xb4\x6a\x1d\xf5\x0b\x63\x29\x60\x52\x6a\x73\x87\xb1\x14\x79\xd8\xd6\x7d\x21\xb5\x28\x0e\xfd\xc5\x28\x48\x7e\xf6\x81\xa7\xbf\xd8\x34\xb4\xcd\xb6\x6e\x52\xa0\x8d\x5d\x3d\x7b\x3b\x26\x01\x13\x5e\xfa\xb6\x10\xc8\xa6\xf8\x47\x63\x6f\xc6\xde\x76\xf4\xb6\xa3\x99\xef\x5a\x08\x64\x6f\x42\x17\x8e\x63\xdf\xdb\x5e\x25\x09\x38\xa9\xbe\xb9\x4d\x02\xee\x43\x92\x99\x82\x65\xfb\x68\x4f\x64\x51\x1a\x5b\xe4\x8f\x59\x94\xc3\x81\x54\x6d\x3e\xbd\x7a\x3c\x90\x4a\x98\x54\x23\x39\x1e\x48\x75\xd8\xd6\xde\xe6\xd3\x13\xc7\x6d\xed\x87\x43\x95\x26\xab\xd1\xe7\x85\x27\x3e\x2f\x4e\x2f\x87\x72\x72\x38\x6c\xe9\x81\xe7\xd3\xb2\xba\x7a\x3c\x60\x49\xe8\x1c\x61\x7c\x48\x73\x7c\x60\xc2\xfe\x3c\x66\x3b\x0e\x07\x2c\x75\x66\xc5\xc7\x03\x96\x84\x49\xc5\x82\xe3\x01\x4b\x87\xfd\xe1\x1d\x72\xc4\x71\x7f\xb8\x30\xa9\x58\x70\xdc\x1f\x7e\xd8\x13\xde\xa1\x3a\x1c\x0f\x58\x12\x26\x4c\xd2\x63\xe6\xe4\xb0\x65\xbc\x53\xf6\xfc\xb8\x65\x5c\x98\x54\x2c\x38\x66\x4e\x84\xfe\xb2\x0b\x8f\xed\x22\x72\xa6\x62\xc1\x71\x63\xf9\x21\x99\xd2\xa1\x14\x1c\x93\x29\xc2\x6c\x76\xf4\xb1\x5d\x87\x76\xd1\x39\xe6\x57\x0e\x9b\xc1\x3b\x9c\xa3\xe3\x66\x70\x61\x52\xc4\xe0\x78\x32\xd3\x21\x0b\xd3\xc9\x74\x1f\xb3\x30\xc2\x6c\x1f\xd1\x52\x14\x5c\xd5\x10\x6d\x45\x9b\xab\x0a\x22\x7a\x82\x34\x4b\x27\xef\x7c\xdc\x32\x2e\x4c\x4a\x1d\x1c\xd2\x2f\x0f\xf0\x42\x8d\xc7\xdf\x3e\xfe\xf6\x85\x78\x3c\xea\x7b\xc8\x9c\x74\xd2\xa1\xc7\xcc\x89\x30\xf1\xd7\x87\x2c\xca\x03\x74\x61\x57\xe4\x0b\x2d\xbb\x70\x20\x7a\x2b\x5a\xcf\x55\x83\xc7\x2f\x1f\x8f\x9f\x68\x36\x75\xf9\x42\x8b\x2e\x9c\x2f\x44\xbe\x10\x93\x48\x7c\xff\x31\xbf\x72\x38\xa0\xa9\x93\xc8\x3a\x97\xba\x0a\x4c\xaa\x5a\x1d\x53\x2e\x42\xe7\xc4\xdf\x63\xca\x45\x98\xcd\xd7\x0e\x1b\xc1\x51\xf8\xa4\x6f\x8e\x87\x35\x09\x93\xea\x09\x87\x83\x9b\x1e\xe0\x59\x17\x37\xaa\x98\x97\x8a\xd9\xbc\xf1\xf3\xac\xa7\xf5\xec\xe9\x3e\x97\x8a\x69\xca\x85\xea\x09\xc7\x94\xcb\x21\xbf\xd2\x39\x1c\xf4\x98\x5f\x11\x26\xd5\x13\x8e\xf9\x15\xa1\x53\x84\xfc\x98\x5f\x11\x26\x14\xe7\xe3\x9e\xee\x73\xa1\x98\xa4\x23\xce\xa5\x62\x92\x5f\x99\x54\x4f\x38\xe6\x57\x4e\x62\xea\xd5\x7a\x42\x44\x47\xb3\xd1\xba\xc3\x72\x3a\xe9\xf6\x2a\xd5\xe4\x19\xcc\x8e\x9b\xae\x0f\x67\x2e\x75\x58\x4e\xc7\x33\x97\x84\xd9\x86\x22\x1a\xc1\xae\xe8\x4e\x65\xef\xe3\xae\x68\x61\x52\x20\xe0\xb8\x2b\xfa\xb0\xa1\xb9\xb3\xbc\x7e\x92\x6a\x92\x54\x93\x41\x53\xd7\xe7\x59\xbc\xd0\x78\x21\x5a\x8a\x68\xfd\x54\x64\xeb\x51\x13\x16\x75\x8e\xb9\x1a\x61\x92\x5f\x39\xe6\x6a\x0e\xa7\x29\x75\x16\xa8\x8f\xa7\x29\x09\xb3\xa1\x39\x6c\x9a\xfe\xfe\x90\x85\xe9\x97\x8f\xf7\x6b\x03\x93\x62\x03\xc7\x2c\xcc\x49\xcf\x17\xee\x2c\xf4\x1d\x76\x35\x7f\x60\x3e\xa3\xe8\x6f\x0d\xc5\xc7\xbd\xcf\x87\x3d\xca\x9d\x95\xb4\xe3\x41\x46\xc2\xa4\x62\xc1\x31\x49\x73\xd8\x5e\xdc\x53\x52\x14\x8a\xec\x02\x6f\xf4\xd7\x71\x36\x9c\x9a\x76\xcc\xc8\x1c\xce\x10\xea\xf0\x97\x8e\x67\x08\x09\x93\x23\x9d\x4e\xd6\x82\xc9\x89\x74\x8e\x85\x3d\xee\xcc\x15\x26\xa5\x0e\x8e\x3b\x73\x85\xce\xd9\x57\xc7\x9d\xb9\xc2\x24\x1e\x38\xd9\x0f\xc8\x9e\xdb\x4e\xd5\xeb\xe3\x9e\x5b\x61\x52\x10\xe1\x78\x60\xd0\xe1\xc0\xa0\x9e\x50\x19\x0f\x0c\x12\x26\x05\x11\x8e\x07\x06\x1d\x52\x2e\x9d\x03\xa9\x8e\x47\x01\x1d\x36\xd8\x4e\xb2\x61\xc7\x0d\xb6\x27\x3f\x83\x46\xcf\x1f\xd1\xe7\xc6\x37\x57\x55\x44\xb7\xa2\x9b\xab\xf8\x45\xcd\x15\x98\x14\x44\x38\xa6\x72\x0e\xe9\x9b\xce\x9a\xe2\x71\x1b\xae\x30\xbb\x37\x6a\xae\x40\xe7\x10\xa9\x63\x76\x47\x98\x1d\x65\x20\xd3\xf3\xc0\xe2\x2a\x7a\xd5\x8f\x06\xcc\xee\xe3\xfd\x68\x40\x67\xd9\xec\x98\xca\x39\xa4\x6f\x3a\x6b\x64\xc7\x0d\xb6\xc2\x24\x71\x77\x4c\xe5\x1c\x92\x34\x9d\xdd\xb4\xc7\x24\x8d\x30\x29\xae\x70\x38\x4f\xe8\x01\x9e\x55\xb8\xea\xf6\x59\xb7\xcf\x52\xe4\xb3\x16\x2f\xc4\x58\x59\x74\xe1\xc0\xa4\xb8\xc2\x31\x6f\x73\xc8\xc2\x74\xf6\xb6\x1e\xcf\x10\x12\x26\x41\xdc\x71\x6f\xeb\x61\x8b\x6a\x67\x15\xe1\xb8\x45\xf5\x70\x86\xd0\xec\xcf\x2c\xef\x78\x86\xd0\x29\xa8\x09\xfb\x51\x4f\x51\x4d\x8a\x6a\x82\x29\x78\x60\xd0\x29\x7e\xda\xc1\x0b\xf9\x69\x8b\x9f\xf6\xa2\xa9\x7e\x5a\x36\x8c\x76\xb8\x3d\xc7\x0d\xa3\xc2\xa4\xb8\xc2\x71\xc3\xe8\x61\xc3\x68\x87\xdb\x73\xdc\x30\x2a\x4c\x82\xcb\xe3\x59\x3d\x87\x34\x49\x67\x72\x7b\x4c\x93\x1c\x0e\xd0\xe9\x1c\x5c\x70\xaa\x7d\x5f\x99\x9a\xf7\x8f\x88\xd7\x26\x27\xd2\x21\xcc\x1c\x73\x22\x87\xfd\x95\x93\x3c\xea\x71\x7f\xe5\xa9\x8f\x13\xec\x54\xff\x3d\x55\x27\x08\xcc\x9e\x2a\xa2\xaa\xe8\xb1\x34\xc2\xc6\x63\xe6\x44\x98\x54\x52\x38\x66\x4e\x0e\x69\x92\xce\x76\xc6\x63\x9a\xe4\x90\x1a\x99\x94\x09\x3c\x55\x8f\x07\xf4\xc2\x08\x51\xed\x7b\xce\xc4\x99\xa4\x69\x8f\x67\xe2\x9c\x8a\x3d\x52\xfd\xf7\x54\xed\xb1\x6a\x8f\x59\x91\x2f\xc4\xf0\x09\x87\xe6\x54\x87\x4f\x60\x52\x6f\xe1\xb8\x0f\xf2\xd4\x4d\x7f\xf1\xd1\xaa\xae\x92\x63\x72\x66\xc7\x0d\x79\x0e\xce\xa9\x7e\x34\x9c\xb3\x1b\x15\x85\x49\xa9\x84\x63\x46\xe7\x90\xbe\xe9\x54\xd6\x3d\xa6\x6f\x84\xc9\x26\x98\x63\xfa\xe6\x90\xbe\xe9\x15\x0f\x60\xfa\x46\x98\xd4\x27\x3c\x55\xe3\x23\x7d\xd3\x29\x67\x7c\x4c\xdf\x1c\xd2\x37\x9d\x1a\xc3\xc7\xf4\x8d\x30\x3b\xd1\x9f\xe9\x9b\xc3\x16\xc6\x4e\x98\x7d\x9a\x0a\x00\x4c\xce\x79\x3b\x8d\xe5\x1a\xa1\x53\xf1\xf7\x34\x75\x02\x98\x64\xa7\x4f\x33\xae\x23\x15\xd4\xa9\xe5\x7b\x4c\x05\x09\x93\x69\xc9\x69\xc6\x75\xe4\x7a\x3a\x2b\x25\xa7\x69\xc8\xc0\xec\x18\xb2\xbb\x25\x4f\xbb\x69\x3d\x5f\xa8\x39\x3a\x93\xf7\x99\x9d\x78\xd3\xbc\xcf\x61\xa3\x62\xa7\x9e\xec\x71\xa3\xa2\x30\xd9\x6a\x73\x9a\xfe\x1e\xe8\xf0\x79\x4e\xd3\xb6\x9b\xb6\x4d\xf4\x67\x76\x48\xe8\xf0\x79\x4e\x53\x0b\x4d\x18\x75\x74\xd5\x84\xd1\x21\x23\xd4\xeb\xe7\x46\x1b\x41\x04\x42\x25\x86\x63\x2a\xe8\x70\xae\xcb\x24\x45\x7e\x3c\xd7\xe5\xb0\x9b\xad\x53\x9e\xee\xb8\x9b\xed\xb0\x83\x6d\xb2\x63\xf8\xb0\x8d\xed\x03\x9d\x4d\x69\xc7\xdd\x6c\xc2\x24\xf9\x7d\xdc\xcd\x76\xd8\xa7\xd6\x5b\xfe\xef\x72\xc5\xa3\xfc\x7f\x46\x62\x77\xb1\x09\x73\x7c\x7e\x1c\x73\xe2\xf0\x96\x4e\x61\xb7\xe3\xe1\x2d\xc2\x64\xc3\xf0\xe9\x1a\x30\xd0\x29\xd9\x76\x3c\xcf\xe5\xb0\x23\x6e\xb2\x61\xf8\xb8\x23\xee\xb0\xfd\xad\x3b\x69\x71\xfb\xdb\x61\xcb\xdb\x1c\xbe\x88\x81\x0d\x27\xb5\x74\x67\x02\x9e\xd4\x72\x38\x9d\x65\xb2\x15\xf8\x74\x0d\x98\xd3\x55\xba\x11\xb7\xa7\xab\x08\x73\x60\x87\x6e\x7f\x3b\x24\xd6\x3a\x47\x4e\x1e\x13\x6b\x42\xea\xe8\x02\x49\xb6\xef\x4f\xc7\xc2\xa8\x73\x75\xfa\xf9\x88\x12\xcf\xa2\x37\xb5\x30\xd2\x64\x9d\x95\x88\xd3\x75\x9e\xc0\x84\x24\x70\xba\xce\x93\x94\x59\x37\x48\x32\x65\x76\x38\xeb\x64\xb2\xad\xf8\x78\xd6\x89\x70\x25\x5e\xdb\x2c\x9a\x70\x39\xd0\x9b\x45\x13\x2e\x0e\x7d\x3c\x83\xa5\xce\x43\x62\x6d\xb2\x61\xf8\x98\x58\x13\xae\xf2\x79\x56\x28\x8a\x47\x44\x88\x37\x8c\x6c\x81\xc9\x1e\xe2\x33\x1c\x2a\x81\x4b\x0b\xf3\x74\x95\xc3\x89\x2a\x93\x3d\xc4\x67\xa8\x7d\xc0\x45\x1d\xc7\x33\xb4\x30\xe0\x72\x56\x31\x54\x48\x60\xb2\x61\xf8\x78\x06\x8b\x70\xe9\x16\xcd\xee\x1d\x52\x79\x73\xa0\x00\xa6\xf2\x84\x8b\xbd\xba\x67\x18\x4b\x9b\xdd\x63\xc3\xf0\x31\xbb\x27\x5c\x6c\xea\x39\xc3\x61\x84\x24\xdf\x64\x2b\xf0\x19\xc6\x70\x40\x82\x15\x78\x4c\xf8\x09\x93\x4d\xbe\x67\x38\x84\x03\xe9\xf2\xb5\xd5\x68\x20\x71\xea\xf9\x71\x1b\xe3\x31\x2d\xc8\xbe\xdf\x63\x5a\x50\x48\xe4\x52\x8e\x69\xc1\xc3\x9e\xc5\xc9\x8e\xde\xe3\x9e\x45\x21\xb1\x04\x7b\xcc\x14\x0a\x73\x10\x34\xb0\x7f\xf1\x01\x4e\x01\xff\xdc\xe8\x47\x23\xa0\x67\x47\xef\x31\x9f\x28\x24\x8a\x97\x1f\xf3\x89\xc2\x1c\xf6\xbd\xc3\x1b\x90\xf4\x48\xe6\x13\x0f\x5b\x0c\x27\xfb\x7e\xcf\x70\x94\x02\x32\xbb\x17\x8e\xc9\x43\x21\x53\x18\xee\x98\x3c\x14\x32\x7c\xf6\x63\xf2\x50\xc8\x2f\xbf\x90\xcb\x16\x40\x7e\xd9\x7a\xcd\xca\xb4\x20\x3b\xd7\x8e\x69\x41\x21\x93\xfb\x3e\xa6\x05\x85\x9c\x6d\xaa\x83\xe0\xb0\xcc\x7f\xf3\x2a\xbb\xd0\x7a\xe6\x9f\x1b\xed\x42\x42\x9e\xd1\xd1\x09\x43\x1e\x20\xd7\x8f\xc8\x77\x64\xee\x01\x63\xe5\x98\x16\x14\xb2\x33\x09\xd3\x82\xc2\x84\xb1\x72\xdc\x65\x29\xe4\xae\x62\xea\x01\xd8\x52\x39\x07\x93\x29\xb7\x54\x0a\xc5\x79\x9f\xf9\x44\xa1\x70\x4a\xea\x31\x9f\x78\xc8\x27\xce\xa1\x21\x3b\x12\x03\x25\x7f\x1e\x6f\xdf\x5b\x7a\xc6\xaf\x6d\x18\x0c\xcc\x41\x38\x60\x8a\x51\x28\x8e\xd7\xe6\x10\x85\xc9\xf6\xdd\x33\x1d\xaf\x81\x42\x19\xf7\x33\x1d\xaf\x39\xa7\x66\xb2\x7d\xf7\x78\x4e\x8d\x50\x28\x8d\x7d\x3c\xa7\x46\x98\xec\xd5\x3d\x53\x37\x04\x14\xca\xdc\x1e\x8f\xae\x11\x0a\xd5\x44\x6d\xfb\x33\x30\x3f\x51\xf1\x7f\x3b\xaa\x3c\xff\xff\x97\xf7\xcf\xdf\xfd\xfe\x9f\xdf\x3f\xff\xe7\xf7\x5f\xf6\xd7\xfa\xdb\x2f\xbf\xec\x1f\x7f\x8d\x1f\xd6\xaf\x5f\xbf\x7b\xa4\x5f\xb1\xcf\x0f\x3f\xee\x5f\xf6\x5f\x7f\xfa\xdb\x2f\x6b\x7f\xfd\xfc\xd3\xcf\xcf\x5d\xfc\xf7\x7f\x07\x00\x00\xff\xff\x22\x98\x3d\x9c\x0c\xae\x00\x00"); -var _edfa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x4b\xeb\x65\x39\x96\xdd\xe7\xf1\x29\xce\xb0\x3d\xb0\xf3\x48\xfb\x25\x41\x10\x60\xba\x1b\x9c\x86\x6e\x37\x2e\xdb\x6d\x30\x1e\xdc\xc7\xb9\x49\x80\x33\x22\x88\xcc\x1c\xd4\xb7\x37\xfb\xb7\x6e\xa5\xab\x0b\x43\x0e\x8a\x95\xb5\x42\x57\x67\x6b\x6b\x3f\x25\xfd\x7f\xf8\xfb\x1f\xff\xe1\xc7\x2f\x9f\x7f\x3d\x7e\xf8\x97\xef\x5f\x1f\x7f\xba\x7e\x3d\x5e\x9f\xbf\x3c\xbf\x5f\xbf\x7c\xfd\xed\xfb\xe3\x3a\xee\xd7\x4f\x9f\xbf\x7c\xf8\x30\xe6\xf1\xfc\xfc\xf8\xf5\x2f\xff\x17\x78\xfc\x7c\xfb\xf6\xe1\x43\xff\xfe\x4f\x7f\xfe\xe5\xd7\xeb\xe7\x1f\xbf\xbc\xbe\x1e\xa6\x71\xcf\xdf\xbe\xbd\xc7\x1e\xc7\x0f\xff\xf5\xfa\xe9\xf3\x2f\xbf\x7e\xff\xf3\xf1\x77\xff\xf1\xf9\xf5\x7e\xfd\xbb\xe3\x79\xbd\x9a\xff\x2f\xdf\x9f\xd7\xf7\xcf\x5f\x7e\x3a\xfe\xee\x3f\xdf\xbe\xdd\xbe\x8c\xdf\xff\xe1\x4f\xbf\x7d\xfb\xf6\x7f\xae\x9f\xaf\x2f\xbf\x1e\x27\xdc\xf5\xe5\x09\x7e\xf8\xe1\xef\xff\xe9\xf6\xed\x9f\x6f\x3f\x5f\xc7\x0f\xff\xfc\xaf\xff\xf2\xef\xff\x13\x2c\xe4\xff\xb8\xbe\xff\xf2\xf9\xeb\x97\x63\x9c\xff\xe1\x3c\xf3\xff\xf1\xff\xed\xcf\xdf\xae\x63\xbc\x7f\xfd\x3f\xff\xfb\x8f\xff\x70\xfc\xaf\x71\x8c\xf3\x98\x61\x96\xff\xfb\xcd\xff\xeb\x3f\x7d\x7d\x5e\xef\x6f\x7d\x18\x92\xfc\xf1\xf5\x79\xfd\xf2\xed\xf6\xb8\xbe\xdf\xbe\xfc\x74\x7d\x38\x8e\x8f\x73\xcc\xf1\xe9\xf8\x58\xff\x58\xff\xf8\xa9\x45\xfa\x9b\x11\x1f\xc6\x79\xbe\x7f\xfa\xf9\x29\xea\x2f\x3f\x99\x23\xd7\xa7\xe3\x48\xb3\xa6\x72\x8b\xda\x9f\x8e\xf2\x5a\x50\x37\xa8\xba\x3e\x1d\x47\x9d\xf9\xe1\xe3\x9c\xfa\xe1\x9c\x50\xb3\x9a\x32\x46\x4d\x1f\x4d\xf9\x68\xca\x45\xc5\x09\xb5\x9b\x8a\x07\x54\x4f\x79\x54\x30\x57\x4d\xa8\xda\x4d\x15\x3f\xec\x4f\xbd\xe1\xa8\xea\x1f\x9a\x9d\x4d\x99\x31\x6a\x9d\x4d\x39\x42\x58\x30\xd7\x86\x4a\x51\xd5\xd4\x1a\x3d\xbd\x4b\x54\x2f\x6b\xca\xe7\x87\x8f\x33\x44\x45\xe5\xa7\xe3\xd8\x33\x3e\x7c\x9c\x29\x2a\x6d\x7d\x3a\xc6\x39\x5a\x88\xd4\xf4\x19\x50\xd6\xa3\x4a\xa3\xaa\xff\x65\x9c\xd1\x72\x55\x88\x2a\xa8\xdd\xd3\x6f\x8d\xda\xf1\xfa\x74\x1c\xd3\xa0\x12\xe9\x81\xc3\x10\x75\x4b\xd4\xcd\x1a\xe7\x6e\x51\x6f\xfa\xe1\x8d\x1f\x1a\x5a\xbd\xe9\x87\x37\x46\xd9\x6e\xb9\xee\x1a\x75\xef\x2f\x1e\x3e\x7b\xfa\xbb\x54\x08\x1c\x73\x07\x94\x89\xea\x1f\xc6\xd9\x5b\xfb\x98\xde\xd4\x23\x5f\x6c\x6d\x4b\xff\xd4\x5c\x4f\xbb\x3e\x1d\x15\xd1\x3f\x7c\x3a\x5f\x7c\x46\x36\xb5\xa0\x24\xc4\x93\x1f\xe6\xd9\x36\xf1\x2c\x51\xc5\xd6\xe6\x84\xd2\x5c\xc8\x55\x39\xa0\xa6\xa8\x09\xc5\x17\x25\xd7\xb3\x77\xbb\x72\x3a\xd4\x4d\x14\xfb\x98\x9a\xfe\x2e\xea\xd1\xa3\xac\xe7\xba\x24\x2a\x70\x24\xfb\x78\xcd\x29\xaa\xa7\xcf\x32\x28\x13\x65\x58\x8e\x28\x17\xe5\x4d\x0d\xfd\x30\x44\x05\x54\x40\xa5\xa8\x84\x2a\xa8\x12\x55\x4c\x2f\x21\x96\xa8\x0d\xe5\x50\x37\x51\x48\x3f\x16\xd4\x5d\xd4\xbd\x47\x6d\x7d\xf1\x21\xea\x81\xa7\x25\xd4\x53\xd4\x93\x51\x12\xf5\x12\x75\x31\x4a\x42\xbc\x44\xb5\x4d\x64\x32\x4a\xae\x70\xfd\x95\x2b\x5c\x72\xbe\xcb\xf8\xa2\x6d\x28\x7d\xd1\xf8\xe2\x16\xa5\x2f\x9a\xbe\xc8\xf4\xa6\x2f\x9a\x7c\x5b\x73\xe9\x8b\xc6\x17\x71\xe4\x4b\x36\x01\x1c\x35\x98\x4b\xde\x71\xfd\x95\xf3\x5d\xa1\x65\x07\x42\x10\x3a\x2e\xb9\x3b\x70\x14\x6e\x75\x85\x84\x08\x84\xc0\x0a\xaf\x90\x10\xc1\xb2\x5d\x3f\x94\x10\xb8\x42\x06\xd3\xcb\x0a\x81\x23\x1d\x15\xca\x87\xae\xbf\x72\xf7\x4b\x96\x03\x1c\x29\xe5\x94\x84\x28\x34\x91\x2c\xbb\x24\x44\x21\xc4\x42\x2e\xc5\x1c\xe0\x48\x82\xd5\x4b\x26\xf7\x92\xc9\x11\x01\x5e\x32\xb9\x17\xf6\x95\x2b\xa1\x5c\x94\x33\xca\xa1\x42\x54\x40\x2d\xa8\x14\x95\x1d\x27\x4e\xfd\xb0\x44\xd5\xef\x61\xe8\x25\xfb\x02\x8e\x4d\x04\x78\xcd\x2d\x6a\x43\x49\xae\x9b\xa8\x5e\xf6\xc6\x3b\x5e\x32\x39\xe0\xd8\x44\xf2\x97\x4c\x0e\x38\xf6\xd6\xa8\xa7\xa8\x27\x94\x46\x5d\xa2\x2e\x28\x09\xf1\x12\xd5\xba\xdf\x44\xb9\x97\x4c\x0e\x38\x32\x4f\x28\x29\xa7\xe1\xd8\x93\x05\x99\x94\xd3\x70\xec\xc9\xb2\xcd\x44\x19\x72\xe9\x87\xd2\x57\xc3\xb1\x09\x8f\x2f\x93\xbe\x8c\x80\x2c\x15\x9a\x94\x63\x28\x07\x57\x78\x99\x94\x63\x28\xc7\x24\x97\x94\x83\x2b\x6c\x6c\xf5\x25\x57\x00\x8e\xed\xac\xd1\xa4\x1c\xbc\x63\x3b\x6b\x94\x77\x00\xc7\x76\x4d\x2f\xe5\xe0\x1d\x5b\x06\x20\xef\x00\x8e\x1d\x9a\x5e\xca\x31\x29\x87\xe9\xe5\x1d\xc0\xb1\x09\xa2\x2f\x79\x07\x70\xec\x28\x12\xf2\x5f\xf2\xee\xff\x37\x15\xbf\x5c\xba\x73\x74\x27\x0d\xbb\x74\xe7\xe8\x8e\x18\xfb\x72\xe9\xce\xd1\x5d\xa2\x28\x97\xee\x9c\xf5\x26\xfb\xe0\x5a\xaf\xb3\xde\xd2\x28\xad\xd7\x59\x6f\xb1\x5e\xd7\x7a\x9d\xf5\x2e\x7d\x51\xeb\x75\xd6\xbb\xb4\x38\xad\x37\x10\x42\x06\x1f\x12\x22\x10\x82\xf0\xf6\x0a\x09\xd1\x70\xec\xcd\x17\x43\x06\x4f\x34\xd8\x5b\x3f\x94\x10\x0d\xe3\x24\x27\xbd\x14\x0d\x80\x71\x9e\xc8\xa5\x68\xf0\x92\xeb\x6b\x03\xe5\xfa\xaf\x24\xc9\x9e\x4c\x9f\xd2\x57\xc3\x38\x4f\x84\x48\xe9\x2b\x1d\x8a\x0d\x4c\xc9\xd5\x30\x4e\x32\xd7\x2b\x25\x57\xca\xd6\x90\x2b\x65\x6b\x29\x5b\xd3\x28\xd9\x1a\x95\xd1\x76\x94\xa3\xca\x08\x38\xb6\xeb\x8b\xb2\xb5\x94\xad\x49\x2e\xe9\x3e\x65\x6b\x9a\x5e\xcb\x4e\xd9\x9a\xa6\xd7\xb2\x13\xdd\x87\xa6\xd7\xb2\x53\xb6\xa6\xe9\xa5\xfb\x94\xad\x31\xbd\xf2\x2e\x70\x6c\xea\xa7\x97\xf2\x2e\x70\xec\x60\x7a\xe5\x5d\xe0\xd8\xa4\xe2\x97\xf2\x2e\x70\x6c\xf2\xc8\xab\xb4\x8f\x25\x63\xc2\x6e\x4b\xfa\x52\x65\x54\x08\x51\x52\x4e\xa1\x89\xd2\x28\x69\x82\xb0\xbb\x4b\x5f\xd4\xb2\x89\xb1\x7b\xe9\x8b\x5a\x63\xc9\x98\xfc\xc3\x47\x3b\x09\xa8\x82\x31\x3a\xe2\xd9\x49\x40\x15\x14\x25\xa8\x9d\xe4\x70\x3b\x3b\x8c\x8c\xd1\x41\xd0\x4e\x7b\x53\xf6\xe9\x28\xeb\x30\x62\x27\x61\xc4\xce\xf6\xf3\x31\x9c\xe9\xf1\x73\x41\x11\x89\xed\xc4\xcf\xed\x6c\x45\x8f\xd1\x5a\xb5\x13\x45\x0b\x8a\xa8\x6e\x27\x8a\xb6\xb3\xf5\x35\xe6\x89\x10\xa5\x2f\x36\x14\x09\xdb\xce\xd2\x17\x7b\xa9\x63\xb6\x31\xd9\x59\x9a\xfe\x5d\xa7\x20\x2a\xcb\xb6\xb3\x97\x3d\x66\x17\x12\xa6\x32\xdb\x46\x87\xf0\x31\x3b\x7d\xda\x20\x84\x0b\x8a\x0c\x61\x83\x10\x6e\xa3\xd7\x35\xe6\x64\x14\x71\x51\x50\xa4\x75\x1b\x1d\x23\x1b\xba\x2a\x9d\x6d\x98\x36\x08\x82\x82\xca\x37\xa5\xe9\x0d\x51\x51\xce\x90\x26\x46\x87\xb7\x22\xad\xdb\x20\xbc\xd9\xa0\x9c\x9d\x8e\x10\x84\x21\x41\xe1\x7c\x36\x08\x43\x46\x17\x30\x66\x40\xa5\x44\x4d\x14\xad\xe9\x53\xd3\x6b\xd9\x1d\x01\x4c\x4d\x82\xcd\xce\x6f\xc3\x86\x41\x2d\x51\x8b\x1f\x06\xd4\x16\xd5\xd2\x5b\xd7\x88\x36\xa5\x9c\x29\xe5\xb4\x0f\xd9\x94\x72\x66\x07\x85\x61\x93\xb9\x08\x0a\x82\xca\x0e\xe1\x36\x53\x5f\x6c\xfb\x1c\x56\x50\xa5\xb9\x4a\x73\x2d\x28\xcd\xd5\x9b\x36\x9c\xdd\x9e\xda\x34\xa0\x48\xfe\xa6\x1e\x44\x30\xbc\x13\xb6\x99\x16\x04\x0c\xef\x60\x65\x26\xf3\x35\x99\x6f\x3b\xb2\x99\xcc\x97\xee\x64\x78\x87\x21\x33\x69\x15\x48\xdf\xfc\xd0\xdf\xa3\x7a\x1f\x9d\xed\x30\xdf\xa2\xf6\xa7\x23\x4e\xd6\x68\x74\x50\x66\x84\x34\x47\x7a\x23\xa4\x09\x2a\x83\x1f\x12\xd2\xcc\xd8\x21\x2f\x44\xd5\x0e\x99\x76\x08\xbb\x37\xed\x90\x61\xe4\xbe\xa0\x64\xe4\x26\x23\x67\x6b\x4d\x46\x6e\x1d\x08\x86\x6f\x16\x54\x9a\xbe\x21\x48\xc5\x66\x04\x05\x33\x14\xed\x5b\x3f\x94\xa8\x52\x74\x07\x2b\x33\x29\xda\xa4\x42\x96\xad\x6e\xcc\x1c\xe5\xc4\xd9\xd2\xbb\x94\xe3\x32\xb9\x4e\x9f\xe6\x52\x0e\x10\x12\xc2\xc9\x7c\xe6\x9d\xc0\x46\xe0\x8f\x4e\x02\x13\x54\x86\x28\x36\xcd\x83\xe9\xb1\x1c\x0f\x4d\xdf\x90\xb9\xd6\x1f\xa6\x62\xf3\xd0\xd7\x51\x7a\xa0\x61\x97\xd2\xfd\xad\x74\x56\x22\xa5\x3b\x8b\x8b\x6a\x19\xd5\x57\x5a\xb4\xdd\x8e\xe8\x5a\xca\x42\x76\x0b\x54\x76\x70\xb6\xa0\x2e\xb3\xe8\x0a\x62\x24\x86\x15\x54\x10\x82\xca\xae\xb8\x2c\x5c\x73\x31\x7d\x12\x04\xd5\xa3\x0a\x46\xae\x0d\x35\x45\xa1\xbb\xae\x1a\x2c\x65\x7e\x49\xb0\xc9\x2e\xfb\x2c\xe5\x4f\x29\x7f\x4a\x51\xc8\x95\x5d\x3c\x0c\xba\x03\x4b\x4f\x51\x49\x7b\xe8\x50\x25\xaa\x85\x28\x09\x41\x3d\x20\xa8\xec\xa2\xc4\x32\x90\x3e\xdb\xbe\x46\xb1\x35\x49\x7e\x13\x14\x5d\x8b\xa5\xc2\x6e\xb6\xad\x8d\x4a\x46\xc9\xd6\x80\xca\xe4\x8b\x24\x20\xcb\xb6\xa2\x41\xff\x66\x29\x2b\x02\x2a\x3b\x4d\x59\x2a\xec\x02\x83\x0e\xc8\x52\x1e\x9c\xf2\xe0\xf7\xf4\xef\x2f\x22\x3d\x06\xaf\x06\xde\x6a\x22\x44\x17\x38\x56\x94\xef\x82\xa2\x3b\xb0\xa2\x7c\xb7\xea\x50\x3b\x6a\x41\x51\x8e\x0a\x2a\xbb\x47\xb5\xa2\x1c\xb5\x6a\xc3\x1c\x8b\x7d\x2c\xd7\x0f\x1d\x33\x21\x96\x95\xb4\x5a\x6d\xa4\x63\xcd\x13\xea\x12\x45\x02\x2a\x51\x68\x95\xc3\x84\xb1\x88\xfd\x25\xbb\x05\x8a\xee\xd3\x4a\x86\x59\xc1\x17\xc9\x95\x15\xfa\x62\xf0\xc5\x62\x8d\xa1\x2f\x76\x67\x36\x16\xdb\x51\x74\x66\x82\x1a\x4b\x73\xa1\xc2\xea\x9a\x69\x70\x2c\x62\x95\xd2\x44\xa2\x09\x74\x5f\xb2\xfb\xea\x72\x63\x2c\x5c\x81\x93\x8e\x37\x14\x2d\xb0\x55\x49\xd4\x2e\x11\xc6\x4a\x51\x5b\x14\x39\xa9\xab\x06\x2b\x05\x88\x2a\x34\x21\x51\xb5\x43\x40\x25\x81\x6b\x69\x87\x96\x21\x17\x21\x7c\x29\xd3\x03\x95\x6f\x0a\xb9\x96\x23\x17\x91\x65\xc9\x61\x80\xa2\xfb\xb4\xa5\xc8\xb2\x30\x80\x3d\x5a\xd1\x3a\x9b\xb1\x8d\x8b\x6e\xb4\xba\xe5\x0a\x5b\x2e\xda\x0d\xa9\x6d\xb9\xe8\xc6\x00\x36\x96\xb3\x65\x00\x5b\x06\x80\xc9\x6d\x19\xc0\x26\x96\x51\xf4\xda\xd6\x17\xb7\x62\x19\x8a\xde\x8a\x65\xbb\x75\x3f\xcf\xb3\x35\xb1\xa5\x7b\x20\x16\x61\x77\x53\x07\xdb\x6e\x1f\x9a\xa7\xf1\xc3\x7c\x53\x58\xb4\x84\x90\x0f\xed\xf6\xa1\x79\x92\x0e\xb6\x7c\x68\xcb\x87\xb0\xe8\x2d\x1f\xda\xbd\x1d\xf3\x24\xa0\x6e\x6d\xc7\xd6\x76\x50\x8b\x6d\x6d\x07\xe7\x4f\xf3\x24\x74\xe8\xfc\xc9\x6e\x6d\x72\xf3\xc4\xd3\x6e\x32\x39\xa0\x72\x89\xe2\x8b\xb7\x8e\x7f\x73\x74\xd3\x6d\x37\x0a\x68\x41\xd1\x15\xdb\x8d\x02\xda\x6e\x88\x3a\xb0\xc2\x9b\x44\xbd\xbd\x45\x2d\xa8\x10\xd5\x42\x0c\xf2\xae\x8e\xb7\xec\x3e\x99\x3e\x44\x95\x28\x4d\xbf\xa0\x96\xa8\xdd\xa3\x70\xf7\xbb\xa2\xdc\x5d\x51\x6e\xe9\x87\x77\x51\x77\x46\x89\x7a\x88\xa2\x62\x23\xb5\xdc\xe9\x8a\xed\xde\xdb\x39\x07\x36\x71\x57\x49\x75\x57\x49\xb5\x45\x69\x7a\x89\x8a\x0a\x1f\x12\xf5\xd1\x36\x31\x55\x19\x3d\x64\x13\x40\x71\xf4\x63\x0f\xcd\xf5\x70\x46\x61\xbe\x0f\xd7\x28\xd7\x28\x7e\xe8\xef\x51\xbb\x4b\x04\xea\x81\x87\x92\xff\xa3\xfd\x79\xaa\xa4\x7a\x44\x89\x42\x13\x6f\x4a\x73\xb5\x31\x4d\xa3\x2a\x7d\xc8\x98\x1e\x81\x5b\x91\x87\x1e\x9c\xa7\xd8\x03\xe9\x6d\x34\xa5\xb3\x3f\x7b\xb6\xbe\xa6\x51\x3f\x3d\xa5\xaf\xa7\x5c\x61\x8b\x42\x5f\xcf\x76\xb8\x69\x24\xb0\xa7\x4a\x50\xa0\x72\x8b\x42\xae\x67\x97\x1b\x53\x45\xdc\x53\xe5\xc6\x53\xe6\xbb\x45\x61\xbe\x9c\x10\x4e\x9f\xfe\xc7\xa9\x58\x07\x88\xc6\xa1\x61\x15\xe5\xc2\x53\x56\xf4\x64\x25\x4e\x2b\xa0\xa3\x41\xe3\x84\x6f\x4a\x77\x3a\xe1\x13\x54\x51\xe3\xe9\x84\xcf\xae\x6e\x2b\xa6\x53\x1b\x5c\x6a\x2b\x80\xaa\xee\x2b\xed\x52\xb0\xe1\x40\x6c\x3a\x6e\xa1\x03\x31\x41\x15\x1e\xac\x03\x31\xbb\x82\x2f\x12\xcb\x2e\x45\x62\xa0\x38\x25\xb7\x4b\x91\x98\x73\xad\xe9\xec\x96\xce\xb5\x04\x55\x94\x90\x3a\xd7\xb2\xab\x23\xf1\x0c\x09\xa1\x48\x0c\x54\xb1\xa7\x97\x22\x31\xc7\x53\x33\xa8\x2a\x75\x3c\x65\x9c\x0c\xcd\xa0\x91\xd1\xc9\x90\xa0\xea\x3d\x8a\x3d\x7d\xb5\x99\xcc\xa0\xe4\x7e\xc5\x16\xd5\xd6\x5d\xc4\xc5\x57\xe8\x87\x2d\xd7\x0c\xec\x56\x4d\xb7\xa0\x38\xbb\xb3\x97\xea\x6b\xba\xe2\x19\xec\xa9\xba\x62\x41\x71\xba\x6a\xea\x8a\x8d\xc6\x6f\x72\x5c\xec\x6a\xfc\x04\x33\x3b\xbf\xb9\x1a\x3f\x41\x55\x77\x07\xae\xc6\xcf\x4f\x67\x54\x07\x41\x3f\x5d\xa3\x5c\xa3\x1c\x4a\xa3\x5a\x21\x93\xda\xc2\x4f\x6a\x31\x41\x71\x9e\xeb\x27\x21\xc9\xcf\xce\x5c\x13\xf3\xf3\xb3\x24\x44\x69\xae\x84\xd2\x5c\x84\x4a\xd6\xe8\x27\xa1\xd2\x4f\xea\x58\xce\x73\x9d\x8e\xaf\xe1\x62\x54\xcf\xa5\x96\xce\x07\x51\xaa\xba\x56\xf7\x41\x94\x12\x54\x75\xa6\xf7\x41\x94\x12\x24\x35\x8f\xd3\x04\x7e\x74\xfa\xb7\x59\xac\x51\xfd\x9b\xa0\x6a\x8a\xba\x41\x79\xfb\x53\x75\xa0\xf7\xc1\x09\x8e\xa0\x6a\x4e\xa8\xa7\x28\xe4\xea\xd2\xc5\x07\x85\x84\xa0\xde\x72\x51\x9e\xf9\xc0\x0a\xab\x90\x2b\x34\x4a\x56\x38\x5b\xab\x23\x35\x8a\xad\xad\x85\xa8\x29\xb9\xb4\xb5\xdd\xad\xbb\xae\x82\x7c\x48\x13\xbb\x47\xa9\xcb\xf3\xd9\xed\xe5\x5c\xdd\xef\xfa\xe4\x24\x4d\x50\x35\x19\x45\xab\xe9\xd3\x19\xe5\x50\x92\x1e\x28\x8a\x4b\x9f\xae\x51\xe4\xca\xd5\xc5\xa5\xeb\xc2\x48\x50\x35\x17\x94\x7e\x98\xed\xc8\x94\x08\x3e\x39\xfa\x11\x54\x61\x5f\x13\x1f\xf2\xd9\x31\x67\xae\x8e\xd7\x3e\x69\xf3\x05\x55\x1d\x3a\x7c\x72\x9e\xe2\xb3\x83\xca\x5c\x5a\x10\x39\xc9\x67\x61\x4c\xec\xd0\xa4\xdd\x71\x3a\xc6\xb9\x3b\x9a\xb8\x3a\x46\x41\x95\x89\x92\xf4\x28\x87\x72\xc3\xd5\x31\xba\x61\x26\x1b\xfb\x32\x99\x89\xc9\x4c\xcc\xa1\x96\xa8\xc5\xa8\x05\xb5\x45\x61\x85\xed\xdb\x6e\x38\xb2\xdb\x44\x88\xa9\xb9\x9e\xa2\x2e\x46\x15\x14\x6b\x34\xd3\x28\x7e\xa8\xed\x30\x6d\x87\x6d\x28\x44\xb5\xd6\xc4\xe4\x78\xcb\x4d\x9a\x00\xaa\xde\x94\xa4\x47\x39\x9c\x20\xbb\x49\x39\x40\x71\xcb\xe7\x6a\x0f\x9d\x66\x6f\x72\xd0\xe7\x46\x7d\x2e\xa8\xea\xe2\xd2\x4d\xfa\xa2\x17\x34\xce\xfe\x5c\xbd\xa0\x7b\x8b\x6a\x54\x46\xee\x12\xd5\x25\xaa\x33\x4a\xa2\x7a\xa7\x4f\x3b\xd1\x97\x93\x3e\x05\x55\x2e\x6a\x8b\xda\x3d\xca\x99\x8b\xf4\x29\xa8\x7a\x53\x77\x51\x7c\xb1\x53\x9e\xab\x89\x14\x54\x61\x98\x6a\x22\x05\x76\x76\x4f\xef\x2e\xb7\x72\xb9\x95\x7e\x28\xb7\xf2\x0e\x9c\x76\x76\x87\xed\x1e\x9a\xbe\xc1\x03\x9b\x70\x99\xaf\x6b\xd9\x5d\x1a\xbb\xba\x44\x81\x9d\x44\xa6\x50\x2c\x0c\xc5\x42\xdc\x3d\x14\x0b\xa3\x2d\xc7\x46\x67\x3e\x0f\x59\x4e\xc8\x72\x5c\x3f\x5c\xa2\x9e\x8c\x4a\xa8\x4b\x14\x36\x81\xf4\x21\x9b\x88\xce\xe1\x36\x08\xb5\x41\x0e\x17\x54\xc5\xf8\xc3\x54\xec\x61\xfa\x7a\x6f\x87\x0d\xcc\x8f\x16\xf6\x0d\x55\xa8\x40\x9d\xac\x07\xbb\x35\x70\xb1\xd0\x6e\x85\x76\x2b\xf8\xba\x76\x2b\x7a\x6b\x6c\x60\x91\xa1\xad\x01\xaa\x02\x45\x29\xe2\x45\x2b\xda\x06\x56\x14\x21\xdd\xd1\x14\x55\x97\xb6\x1e\x21\x45\x05\x8a\x92\x56\x42\xa2\x36\xc4\x7a\x8f\x92\x10\x1d\x20\x6c\x68\x7a\x05\x88\x50\x92\xed\x9e\xde\x83\x24\xeb\x91\xa8\x33\x45\x49\x9d\x0d\x31\x4f\x16\xa4\x30\x12\x9d\x47\x6c\x10\x7f\x42\x79\x04\x08\xd7\xb2\x4b\xd3\x17\x9a\x58\x48\x5f\x12\xa2\xa4\x09\xb6\x59\xd9\x86\x36\xdf\x46\xd7\xc4\xae\x36\xdf\xd3\x10\xa2\x8b\x43\x4f\xf9\x00\x50\xd5\x35\xb1\xa7\x74\xcf\x25\xb5\x4d\x02\x7d\x2a\x57\xa6\x72\x65\x97\x2e\x9e\xca\x95\xd9\x3a\xb2\x49\x8c\x4d\xca\x77\x4f\xd5\x29\x39\xa0\x52\x54\x6f\xc7\xc4\x07\x52\xa6\x9c\x0a\xbb\x24\xd9\x54\xd8\xcd\x4e\x14\x46\xb5\xeb\x99\x12\xb5\xa1\xaa\x1b\x06\xcf\x94\x10\xad\x49\x9b\xac\x31\x95\x9d\x93\xee\x40\x59\x30\xe9\x0e\x3c\x3b\xb5\xd8\xc4\x2d\x52\xa9\x05\x28\x6e\x81\x3d\x53\x42\x14\x73\xb1\x1d\xa9\x60\x03\xe4\x92\x72\x14\x9c\x69\xf3\x6d\x76\xff\xe6\x6a\xf3\xbd\xda\x3b\x6c\xa2\xd5\x52\x40\x05\x8a\xab\x68\x2f\x8a\x25\xa7\x8f\x37\x6e\xe0\xbd\x94\x8a\x4b\xa9\x98\x5c\x59\x4a\xc5\x74\xd5\x66\x5d\xe0\x78\xc9\xbe\x80\xe2\xc5\x82\x97\xec\xab\x92\x51\xd8\x6a\xa9\x02\x29\x2d\xbb\x44\xbd\x47\x75\x3d\x10\xc4\xeb\x52\x92\x2d\x25\xd9\x6e\xba\xbd\xa4\x89\xea\x02\xda\x8c\x7d\x2c\x7a\x41\x41\x55\x37\xdd\x5e\x32\x4c\x7a\x67\x33\x54\xa8\xde\xd9\x57\x87\x0e\xb3\xee\x3e\x7d\x71\xba\x21\xa8\xea\x3e\xdc\x17\xa5\xb1\x2f\x62\x86\x2d\x51\x97\x28\xec\xab\xfb\x70\x5f\x8a\x19\x80\xd9\x66\x14\x97\x80\x82\x2a\xec\x7e\x99\xbe\x88\x7d\xd9\x86\x92\x7d\x01\x55\xdd\x87\xfb\x0a\x7d\xb1\xcd\xc4\x9c\xb8\xb8\x64\x26\x40\xf1\xc2\xc3\x97\x72\xf8\x6a\xbf\x31\x27\xc6\x2e\x65\x9b\xa5\x6c\xd3\x4d\xb7\x2f\x19\x00\x3d\xbd\x39\xc6\xa4\x9e\x5e\x60\xce\x1a\xb7\x02\xea\x9e\xd4\x03\x68\x62\x4b\x13\x7b\xf2\x43\xe4\xda\x5a\x23\x50\x9c\x06\xf9\xd6\x1a\x81\x18\xc8\xb5\xb5\x46\xc0\x9c\x2c\xb8\x4d\xd3\x1b\xd2\x53\x5b\x6c\x5a\x09\xdf\x86\xf4\x5b\x73\x85\x28\x49\x8f\x5c\x0a\xbb\xbb\x9d\xd7\x1c\x93\xdb\x8a\x98\x40\xa9\xf0\xe2\x44\xa1\xa1\x77\x28\xba\x49\xf0\xad\x9c\x04\x14\x47\x52\xbe\x95\x93\x36\xe1\x31\x08\xc8\x5b\xe1\x11\xa8\x5a\xac\x31\x24\x2a\xfa\x0a\x4a\x3d\xb5\xf9\x7e\xeb\x38\x61\x81\x2b\xdc\x14\x27\x80\xaa\x25\xca\x45\xb5\x15\xe6\xc9\x0f\x95\x2b\x6f\xca\x95\xdd\x3b\xfb\x4d\x72\xdd\xba\x95\xb0\xa4\x3e\xbf\xd1\x4a\x08\xaa\xd0\xd7\x4d\xd1\xe4\xd6\x81\xcf\x38\xcc\xf4\x9b\x02\x1f\x50\xd5\x0d\x87\xdf\x4a\x3f\x44\x54\xce\x4a\x5d\x87\x01\x02\x53\xad\x7f\xd7\xd6\xde\x95\x2b\xb7\x28\x13\xc5\xf4\x84\xa1\xbb\xdc\xfd\x2e\x77\xef\xd6\xcb\x75\x3e\xe0\x77\x92\x0e\x47\x65\x7e\x57\xd2\xb9\x2b\xe9\x60\xe4\x77\x25\x9d\x3b\x91\x89\x36\xce\xef\xf2\x47\xa0\x64\x5f\x77\x45\xa6\x7b\x67\x02\x53\xe1\x75\x57\xfd\x74\x57\xfd\xc4\xd6\xde\x55\x3f\xdd\x59\xb6\xaa\x99\xbb\x96\x0d\xf8\x78\x53\x9a\x9e\x65\x77\x16\xfd\xc3\x54\xac\x73\x07\x7f\xb0\x35\xca\x5c\x0f\x6d\xcd\xe3\xbd\x35\xa2\xd8\x1a\xce\x07\x6c\x9d\xbd\xde\x07\x8d\x9f\xa0\xaa\x3b\x77\x7f\x68\xb7\x38\x2b\xb0\xc5\x06\xea\xac\x40\x50\x45\x81\xf2\x50\x77\xf0\xc0\x83\x39\xc5\xf4\x87\x3c\x18\xa8\x75\x8a\x62\x1f\x1e\xac\x77\x91\x93\x1e\x5a\x2f\x90\x1e\xa2\xf4\x45\x1a\xac\x45\x65\xf3\x50\x83\x05\xd8\xc2\xf5\x1f\x2a\x21\x81\x7a\x4b\xaf\x12\x12\xb0\x45\xa6\x7f\xa8\xe4\x06\x6a\x51\x55\xea\x58\xc3\x9f\xb8\x2b\x47\x96\xfe\x94\xbb\x02\xb5\x30\xe5\xa7\xdc\xf5\xd9\x3e\x64\x0b\x1f\x78\xaa\xa0\x03\x6a\x51\x8e\x3e\xe5\x4f\x4f\xc2\xdb\xda\x1a\xe5\xa2\x9c\x51\x09\x15\xa2\xda\x64\xd4\x1d\x3c\xa5\x55\xa0\xb8\x91\xf1\xa7\x7c\xe0\xd9\xb1\xdf\xf6\xc9\x5c\x8a\xfd\x40\x2d\xfc\xfc\x29\x5b\xe3\x74\xc3\x36\xee\xaa\xd3\x0d\xbf\xb0\x5b\x5e\x2f\xf8\x25\xbb\x05\x6a\xd1\x61\x5f\xb2\xdb\xab\x10\x02\xd7\xbf\xa4\x68\x9e\xc2\xd4\xe2\x8b\x7a\x0a\xe3\x9c\x22\xf8\x69\x2d\x97\x4e\x11\x04\xb5\x68\x51\xf4\xc8\xc5\x79\xed\xe1\x27\xad\x80\x5e\x7b\x08\x6a\x91\x05\xf5\xda\xc3\x79\xbb\xe1\x67\x30\x97\xc2\x1b\x90\xdc\xe6\xbb\xde\x71\x38\x8f\x36\xfc\xa4\xdc\xd0\xa3\x0d\x41\x2d\xca\x51\x3d\xda\x70\x5e\x19\x38\x65\x72\xe8\xc8\x20\xce\x60\xfa\x0e\x36\x71\x52\xa7\x08\xac\x8b\xd6\xfe\xef\x82\x62\x41\xdc\x02\x87\x5a\xf3\xe0\xbe\xd3\x39\xa8\x0b\x2e\x3d\xdf\x50\x18\x79\xe8\xee\x33\x86\xe7\xa7\xc3\x67\x0b\x11\x83\xdb\x0e\x41\xad\x11\x50\x4b\xd4\xad\x47\x4d\x8d\xba\x8b\x42\xab\x23\xa1\x1e\xa2\x1e\x8c\x2a\x28\x7d\xd1\xf5\x45\x51\xfa\x22\xa2\x72\xbf\x1b\xea\x9d\x63\x8a\xea\x9c\x14\xea\x18\x83\x36\xce\xad\xa3\x54\xe8\xe9\xa3\xa0\xd6\x60\x94\x69\x54\xab\xd0\x6d\x89\xba\x89\xc2\xad\xc6\x86\x42\x54\x73\xe6\xda\x8c\x0a\xcd\x25\x23\x6f\x47\x0e\x0b\xcd\xd5\xe5\x9d\xfb\x9b\xba\x44\xe1\x56\x9d\x5a\xc2\x08\x0a\xc1\x1d\xa3\x7b\xb7\x61\xa1\x3b\x46\x41\xad\x89\xa8\x1c\xfa\x05\x5d\x9e\x93\xc3\x43\x5d\x5e\x70\x97\xe7\x24\xec\xd0\x5d\x9e\xa0\x88\x13\xe1\xdc\x9c\x84\x77\x04\xf1\x68\x77\x0f\xee\xdf\xde\x60\x67\x32\x2a\x35\x8a\xe9\x03\x21\xd4\x4d\x45\xb0\xdb\xd1\xc5\x52\x84\x76\x3b\xb4\xdb\x93\x51\xda\xed\xe8\x60\xe5\xd1\xf9\x2d\x68\x05\xde\x50\xab\x1b\xe5\x50\x47\x10\x14\xe3\x4e\x9a\x0a\x15\xe3\x02\xe7\x56\x33\x74\xe7\x26\xa8\x35\x13\x8a\xb9\xb2\x34\x0a\xaa\x34\xaa\x34\x8a\xb9\xea\x3d\xaa\xa7\xe7\x9e\x2c\x54\xa8\x46\x89\xea\xc6\x2f\x54\xc4\x05\x45\x9c\x73\x31\x13\x2a\xe2\x04\xb5\xa6\x46\xa1\x09\xca\x20\xe7\x3c\x25\x54\x06\x05\xcf\x4e\x9d\x87\x2d\xa1\x67\xa7\x82\xe2\x5a\x29\xf4\xec\x34\x76\x6f\x5a\x9c\x1d\xb6\x63\x6b\xd3\x80\x5a\x26\x0a\x15\xee\x2e\xad\xe3\x6c\x77\x0f\xae\x13\xde\x30\xb4\xb5\xba\x55\x08\x6a\x8b\x38\x51\xb4\x6a\x8b\xb8\xb5\xbb\xc7\xc9\x5c\x37\xdc\x5d\x50\xcb\x06\x14\xb6\x4a\x6d\x11\xdc\x50\x84\x6a\x0b\x41\x2d\x9b\x50\x6c\xda\x4d\xd3\x77\xde\x0d\xd5\x03\x71\x6f\xcb\x89\xc1\x17\xef\xb2\x1c\xa0\xb8\x14\x8b\x3b\x77\x6e\x71\xe7\x22\x7d\x74\xcc\x09\xb2\xfe\x1b\x6a\x99\x7e\x88\xf9\xde\xe9\x12\xb9\x42\x88\x3b\x55\xbc\xc0\x7c\x9f\x7f\x98\x8a\xe3\x4e\x46\x0d\x6a\x83\x18\x5d\xa1\x86\x6a\x03\x41\x2d\x43\x6c\x69\x18\x88\xd1\x79\x24\xee\xd2\xf0\x5d\xad\x66\xf1\x75\x2a\xfa\xe0\xe5\x6e\xcc\x13\xb1\x69\x22\x05\xc5\x5d\x5e\xdc\x4b\xeb\x2d\x35\xa4\x6d\x0c\xaa\x07\xe2\x21\x8a\x00\xa1\x2c\x18\xe4\x91\xa0\x6b\x09\xe5\x91\xb8\xd8\x1a\x1e\x34\xc4\xa5\xad\x01\x8c\x7b\xc1\xd0\x4b\xd2\xb8\x3a\x66\x84\xb3\x5b\x97\x62\xc6\xa5\x98\xd1\xc5\x4e\x5c\x8a\x19\x57\xcb\x15\x8e\x5b\x5c\x92\x0b\x18\x9c\x46\xc7\x45\xad\x1e\x64\x9b\xa0\x72\x0e\x65\x9b\xe0\x65\x52\x04\xe6\xa7\x97\x49\x82\x5a\xb6\xa0\x5c\x54\xff\x30\xba\x30\x4f\xa5\x83\x3c\xdb\xee\x23\xba\xa0\xcb\x93\x03\x7d\x41\x2d\xdb\x50\x05\xd5\x81\x2b\xb2\xa7\xcf\x93\xc0\x25\xa8\xe5\x50\xb8\x45\x9e\x2d\x6a\x70\x9b\x9f\x67\x69\xae\xd2\xe5\xb7\x28\xcd\x85\x10\xdc\xf8\xa5\x52\x4b\xf2\x6a\x27\xb8\x88\x4a\xbd\xda\x11\xd4\xf2\x01\xf5\x10\xd5\x2a\xe4\xe8\x39\x07\x21\x3c\x87\xd2\x67\x3b\x75\x0e\xd2\x67\x92\x0e\x82\x5b\x85\x54\x3a\x48\xde\xbd\x04\x17\xd6\xa9\x77\x2f\x82\x5a\x9d\xdf\x72\x6a\xfa\xd9\x7d\x65\x50\x00\xe7\xa4\xaf\x14\x4c\xbc\x2e\x27\xb5\x85\x20\x56\xf0\x43\x6a\x0b\x81\x8d\xd0\x0f\x35\x3d\xa7\x1b\xab\x03\x57\xea\x90\x54\x50\xcb\x91\x8b\xd2\x36\x49\x53\xb1\xda\x9f\x52\x69\x2a\xf5\x56\x65\xb5\xf9\xa6\xde\xaa\x08\x8a\x90\x94\x86\x8b\xa5\x75\x5a\x0f\x0e\x36\xd3\xa8\x9f\x04\x45\xa9\x97\x46\xfd\x94\x24\xa0\xe0\xd9\x68\x2a\x01\x09\x86\x77\x77\x90\x4a\x40\x49\x6a\x09\x1e\xe9\xa5\x52\x4b\x3a\x16\xbd\xbb\x5b\x4f\xc7\xa2\x05\xb5\x9c\x51\x58\x74\x92\x61\x82\x17\xae\xe9\x04\x08\x81\x73\xf7\x99\x9c\x2f\x7e\x4c\x12\x50\xf2\x52\x30\x95\x80\x04\x45\xbd\x99\x4a\x40\xe9\xed\xb5\x79\x4a\x08\xbc\x56\x50\x2b\x98\x4b\x2a\x24\x4d\x25\xd7\xb4\xa9\x34\x95\xd1\xa2\x26\x05\x4e\x86\x44\x0d\x89\xda\xd5\x4c\x86\x44\x05\xf2\xec\x34\x95\x41\x0e\x17\xd4\x8a\x09\x85\x01\x44\x2f\x28\xcf\xcd\x0f\xb5\x20\xa0\xb8\x51\xce\xd0\x82\x48\x66\x39\x3a\xa3\xa6\x92\x59\xf2\xe8\x23\x47\x37\x58\xa9\x47\x1f\x82\x92\x99\xe8\xd1\x47\xa6\x7e\xd8\x8d\x4c\x2a\x4d\x25\x8f\x05\x72\x22\x84\x1e\x0b\x08\x8a\x33\xb6\xd4\x63\x81\xd4\xe9\x86\x75\x21\x91\x3a\xdd\x10\x94\xec\x4b\xa7\x1b\xc9\xfb\x81\xb4\xc9\x0f\xc9\x95\x82\x5a\xf8\x63\x11\x14\x92\xc4\x98\xd6\xf1\x3a\x95\x18\x93\x97\x01\x69\xd8\x97\x5e\x06\x08\x6a\xb1\x20\xbd\x0c\xc8\x85\x0a\x2d\x35\xea\x2e\x4a\x2a\xdc\x50\xa8\x70\x15\x73\x55\xeb\x8b\x73\x87\x37\xd4\xc2\x26\x74\xfc\x90\x24\xd9\xe4\x54\x2f\x95\x64\x05\xe9\x2e\x6a\x8a\x9a\x5c\xd3\x1a\x94\x89\x7a\x32\x6a\x42\x5d\xa2\xe8\xb3\x70\x2b\x1d\x3f\xe4\x6e\xb9\x92\x20\x9a\x5b\x72\x01\x25\x4f\xdb\x54\x33\xb9\x83\x0e\x2a\x7b\x8d\x9b\xee\x42\x30\xde\x42\xd0\x5d\xe4\x96\xa8\x5d\xea\xa5\x52\x71\xde\x5a\x96\xa4\x58\xca\x1b\x85\x84\xc0\xb8\xcc\xcd\x1b\x85\x44\xde\x3a\x88\xb6\x79\x42\x95\x28\xea\xe0\x9c\x50\x04\x98\x5b\xcb\x95\x41\x94\xbb\x49\xae\x9b\xaa\xac\x2e\xcf\xf2\x46\x95\x95\xb7\x76\x85\x0c\x51\x72\x85\x9b\xa2\x09\x76\x7f\x53\x34\x21\xad\x67\x76\xe5\x9d\x4a\xeb\x79\xef\xf0\x98\x49\x04\xb8\x2b\x3c\xde\xd5\xb3\x65\xfc\xdb\x54\x1c\xfb\x6f\x33\x71\xde\xe9\xe8\xf2\x1e\x2d\x22\x8f\x06\xf3\xce\x89\xa5\x60\x04\xae\x79\x57\x60\xb9\xb7\xa9\x26\x8f\x04\xf2\xce\xf1\xa4\xa0\x16\x16\x73\xe7\xe8\x2e\x49\xb5\xc9\x0d\x77\xde\x95\x20\x80\x5a\x59\x50\xef\x51\xbd\x10\xee\x26\x53\x99\x38\xe9\xcc\x93\x4b\xba\x54\x67\x2e\x98\x5c\x3a\xa5\x3a\xf3\x7c\xa4\xae\x05\x7b\xae\x87\x1c\xe5\x21\x47\x61\x97\x1f\x72\x94\x07\x36\xca\xe1\x44\x3e\x64\xa3\x8f\xb7\x8d\x6e\xa8\x10\xd5\x42\xd0\x8f\xa6\x72\x7f\x3e\xfb\x8b\x49\x87\x92\x4f\x7d\x11\xa8\x45\xa4\xa4\xf5\xfd\x98\x5c\xd9\xa7\x76\x59\x57\xf6\x82\x5a\x35\xa0\x9e\xa2\x98\x6b\x6b\x94\xe6\x52\xc0\x2b\x51\x9a\x4b\x42\x90\x9c\x55\x6d\x24\x7f\x30\x93\x5c\x86\x25\x7f\x35\xf3\x86\x5a\x38\x9d\xfe\x78\x26\xf9\x23\x95\xdc\xdd\xb4\xa4\xfe\x48\x45\x50\xab\x98\x4b\x76\xc5\x75\x7a\xf2\xf0\x3f\x2f\xfa\x3e\x41\xad\xae\x0d\xf3\xa2\x78\x4b\xaa\x8d\xe4\x39\x73\xaa\xda\x48\x5e\x84\x17\xef\xc6\x53\x2f\xc2\x05\xa5\xc4\xa5\x17\xe1\x49\xb5\x51\x67\xcb\x55\xaa\x36\x8a\x27\xc8\x75\xb6\x01\x94\x9e\x20\x0b\x8a\x5b\xc7\xd2\x13\xe4\x3a\xe9\x63\xc6\x80\xa2\x1a\x15\xd4\x2a\x7e\x48\x88\xad\x93\xf2\x69\x74\x61\x54\x67\x68\x7a\xce\xe9\x56\x6d\xa8\x29\xaa\xed\x6b\x38\x73\xb1\x46\x41\xad\x2e\x40\xea\x64\x8d\xa5\x57\xc9\xa4\xf0\xd2\xab\x64\xc1\xa0\x00\x29\x0a\x9b\x37\xd4\x5a\xa2\x24\x04\x6b\x1c\x5d\x51\xd5\xfb\xef\x05\x87\xa8\xde\xda\x52\x01\x52\x54\x18\x35\x57\x42\x3d\x45\xb1\x1d\x4b\xa3\x2e\x28\xe2\xe9\xec\xfa\xa6\xb8\xfd\x7d\x43\x2d\xa6\xd7\x25\x70\x71\xe3\x5b\xd6\xde\x51\xba\xf1\x15\x0c\x0e\xbf\x4a\x37\xbe\x82\xe2\x96\xb6\x26\x86\x59\xb3\xf4\xd6\x9b\x2f\x6a\x8d\xc0\xb0\xee\x47\x4b\xb7\xb4\x45\x4d\x52\xd6\x16\x5d\xaa\x49\x4a\xbd\xad\xa1\x2f\xf5\xb6\x82\x5a\x2b\xa0\x50\xb4\xee\x26\xbd\x7b\xa2\xd2\xdd\xa4\xa0\x16\xcb\xa6\xcc\x78\x43\x79\xd9\xbf\x09\x3f\xfd\xdf\x3f\xdf\xbe\x7d\xf8\xfd\xcf\x3d\x1f\xbf\x7d\xff\x7e\x7d\xf9\x95\x3f\x2e\xe5\xef\x3a\x8f\xe7\xf5\xfa\xfc\xe5\xfa\xfd\x0f\x55\xbf\x7d\xfd\xd6\xbf\xe2\x7f\xff\x37\x00\x00\xff\xff\x37\xcb\x4a\x23\xd4\x3a\x00\x00"); -func _beef ()(*asset ,error ){_edff ,_eagb :=_adgb ();if _eagb !=nil {return nil ,_eagb ;};_acdb :=bindataFileInfo {_ag :"NWP-V",_bc :1293,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492618,0)};_bbbe :=&asset {_cd :_edff ,_dce :_acdb };return _bbbe ,nil ; -};func _dgd ()(*asset ,error ){_eaa ,_db :=_gadc ();if _db !=nil {return nil ,_db ;};_cfba :=bindataFileInfo {_ag :"Add-H",_bc :12616,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491075,0)};_cgf :=&asset {_cd :_eaa ,_dce :_cfba };return _cgf ,nil ;};func _egba ()(*asset ,error ){_fccc ,_gcdd :=_fcgb (); -if _gcdd !=nil {return nil ,_gcdd ;};_babg :=bindataFileInfo {_ag :"UniKS-UCS2-V",_bc :737,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493030,0)};_gcdfa :=&asset {_cd :_fccc ,_dce :_babg };return _gcdfa ,nil ;};var _fcg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x41\x8b\xe3\x46\x10\x05\xe0\x7b\xff\x8a\x3e\x6e\x0e\x1b\x77\x55\x75\xb7\x5a\x20\x06\xc2\x0c\x0b\x26\x6c\x36\x64\x32\x49\x20\xe4\xa0\x91\x5a\x83\x20\x96\x84\x6c\x1f\xe6\xdf\x87\xaa\x67\x4f\x60\x0f\x8b\xd7\xcf\xad\xb2\xfc\xbd\xe9\xd6\xe1\xf1\xf8\x74\x5c\xe6\x8b\x3f\xfc\xba\xaf\xc3\x73\xbd\xf8\x69\x5e\xc6\xbd\x9e\xd7\xeb\x3e\x54\xff\x5a\xdf\xe6\xc5\x39\x62\x3f\xce\xc3\xe5\xfe\xd6\x5e\x86\x53\xbf\x39\xa7\xd7\x3f\xbf\x9f\x2f\xf5\x74\x5c\xa6\xd5\x0b\xd6\x8d\xd7\xed\xb6\xd6\xfb\xc3\x6f\xf5\x6d\x3e\x5f\xf6\x77\xff\xe9\xa7\x71\x7d\xad\x3f\xf8\xb1\x4e\x9a\x7f\xdb\xc7\xba\xcf\xcb\x9b\xff\xf4\xf3\xba\xd7\x9e\x3e\x3e\x78\xbe\x6e\xdb\xbf\xf5\x54\x97\x8b\x27\xcb\xea\x32\xda\xab\x3b\x3c\x7e\xed\xb7\x5f\xfa\x53\xf5\x07\x9b\xf5\x19\x57\x7e\xc6\x32\xfb\xf4\x8f\xba\x9f\xe7\x75\xf1\x14\x7e\x0c\x21\xff\x9f\xff\xfe\xbe\xd5\xdb\x38\x77\x78\x39\x3e\x7d\x9b\xa6\x73\xbd\x78\x91\x80\x35\x7f\xbd\x1c\x9f\xfc\xdf\xe4\x29\x78\x4e\x91\xca\x3f\xb7\xa5\x7f\x7e\x5d\xc7\xea\xc3\xfd\xfb\x8f\x4f\x8f\xeb\x55\x6f\xac\x50\x4a\x08\x09\x3f\x75\x58\xc7\x7a\xde\xfa\xa1\xee\xfd\xf2\x56\x9d\xf7\x5d\x08\x21\x3c\xf8\x2e\xe6\x2f\x5f\x1e\xf4\x37\x7c\xb7\xc2\x35\xf7\x2b\xe7\x11\xc9\xfd\x8a\x10\xa6\xe9\xc1\x07\xd7\x05\xc2\x7b\xd2\xf7\x9c\xb2\xeb\x02\x23\x61\x4d\x12\xb1\xeb\x82\x20\x11\x4d\x9a\x5c\x5c\x17\x22\x92\xa8\x09\x05\x8e\xae\x0b\x09\x51\xb2\x88\x8b\xce\xce\x88\xb2\x45\x49\x74\x78\x83\xa8\xb1\xa8\x69\x75\x7a\x41\x54\xec\x0e\x42\xd4\xf1\x2d\xa2\xd6\x22\x09\x3a\xbe\x47\xd4\xdf\xee\x53\xc7\xbf\x22\x7a\xb5\xa8\x90\x8e\x1f\x10\x0d\x1a\x49\x68\x74\xfc\x88\x68\xb4\x48\x58\xc7\x57\x44\xd5\xa2\x54\x74\xfc\x84\x68\xb2\xa8\xc4\xe0\x3a\x82\x14\x99\x54\x0c\x6d\x76\x1d\x01\x8b\x0c\x2b\x4a\x62\xd7\x11\xb4\xc8\xb4\x62\x0e\xc5\x75\x04\x2e\x32\xae\x58\x72\x74\x1d\xc1\x8b\xe2\xcd\x54\xc7\xc3\x8b\xcc\x2b\x49\xa3\xe3\xe1\x45\xe6\x95\xb2\xe8\x78\x78\x91\x79\xa5\x52\x74\x3c\xbc\xc8\xbc\x32\x45\x1d\x0f\x2f\x32\xaf\x1c\x83\x8e\x87\x17\x99\x57\xce\x5a\x2c\xc1\x8b\xcc\x2b\xb7\xda\x2c\xc1\x8b\xcc\xab\x21\xad\x96\xe0\x45\xe6\xd5\x44\xad\x96\xe0\x45\xf5\xd6\xbf\x8e\x87\x17\x99\x57\xd3\x6a\xb5\x0c\x2f\x36\xaf\x42\x5a\x2d\xc3\x8b\xcd\xab\x44\xad\x96\xe1\xc5\xe6\x55\x1a\xad\x96\xe1\xc5\xe6\x55\x5a\xad\x96\xe1\xc5\xe6\xd5\xb2\x56\xcb\xf0\x62\xf3\x6a\xa3\x56\xcb\xf0\x62\xf3\x6a\x1b\xad\x96\xe1\xc5\xe6\xd5\xb6\x5a\x2d\xc3\x8b\xcb\xfd\x6f\x55\xe7\x03\x8c\x5b\x64\x51\xcb\x65\x88\x71\x8f\xac\xd1\x76\x19\x64\x6c\x64\xda\xbe\x7e\x05\xcc\x78\x40\xc6\xda\x2f\x03\x8d\x47\x64\x49\x0b\x66\xa8\x71\x45\xd6\x68\xc3\x0c\x36\x9e\xb0\x49\x82\x56\x2c\x70\x93\x80\x8c\xb5\x63\x01\x9c\x10\xb2\xa4\x25\x0b\xe4\x84\xef\x1b\x2c\xb8\x4e\x40\x27\x46\x47\x12\xb4\x66\x81\x9d\x60\x6f\x8a\x68\xcf\x02\x3c\xc1\xe6\x94\xa4\x45\x0b\xf4\x04\xbb\x53\x8a\x36\x2d\xe0\x13\x6c\xcf\x18\xb4\x6a\x81\x9f\xc0\x2f\x8a\x76\x2d\xf0\x13\xf8\xc5\xa4\x65\x0b\xfc\x04\x7e\xb1\x68\xdb\x02\x3f\x81\x5f\x22\xad\x5b\xe0\x27\xc3\xfd\x54\xd0\xef\x80\x9f\xc0\x2f\x65\x2d\x5c\xe0\x27\xf0\x4b\x45\x1b\x17\xf8\x09\xfc\x32\x69\xe5\xf1\x76\x06\xc2\x2f\x8b\x76\x1e\xe1\x17\xe1\x97\xb3\x76\x1e\xe1\x17\xe1\x97\x8b\x76\x1e\xe1\x17\xe1\xd7\x90\x76\x1e\xe1\x17\xe1\xd7\x44\xed\x3c\xc2\x2f\xc2\xaf\xc9\xda\x79\xcc\xb7\xb3\xb7\xf6\x38\xca\x82\x9d\xc0\xf7\x93\x56\xff\xaf\xcf\xaf\x8f\xe7\xc9\x70\xdd\xf7\xba\x5c\xec\xe9\x65\xcf\x0b\x3d\xdb\xe7\xa5\x7e\x3c\x09\xb7\x75\xd3\xab\xec\xdf\x7f\x01\x00\x00\xff\xff\x4b\x22\x59\x16\x35\x07\x00\x00"); -func _gfcg ()([]byte ,error ){return _dc (_eddd ,"ETen-B5-V")};func _bdaa ()([]byte ,error ){return _dc (_bdgb ,"Adobe-CNS1-7")};func _fcaf ()(*asset ,error ){_bfeb ,_beeg :=_ggccf ();if _beeg !=nil {return nil ,_beeg ;};_dcc :=bindataFileInfo {_ag :"UniJIS-UCS2-HW-V",_bc :4243,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492906,0)}; -_gegec :=&asset {_cd :_bfeb ,_dce :_dcc };return _gegec ,nil ;};func _bbdab ()([]byte ,error ){return _dc (_bcaef ,"UniJIS2004-UTF16-H")};func _abca ()(*asset ,error ){_edda ,_gfeca :=_fcbcg ();if _gfeca !=nil {return nil ,_gfeca ;};_fcaa :=bindataFileInfo {_ag :"UniJISPro-UCS2-V",_bc :4271,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492866,0)}; -_degc :=&asset {_cd :_edda ,_dce :_fcaa };return _degc ,nil ;};var _bgbb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xed\x61\x8b\x0d\x85\x18\x69\x15\xa9\x22\x87\x45\xab\xed\x56\x4d\x93\x56\xaa\x7a\x30\x78\x1c\x59\x2a\x06\x19\x73\xc8\xdb\x57\x9e\xa1\x74\x0f\xd1\x84\xcf\x9e\x1f\x63\x3b\x6f\xbb\x53\xe7\x5d\x84\xfc\x6b\x98\x86\x33\x46\xb0\xce\x9b\x80\xcb\xb4\x86\x01\xa1\xc7\x9b\xf3\x59\x26\x0b\x30\x6e\x88\xff\x1e\xa9\x0c\xa3\x9e\xb3\x2c\x7f\x39\xb7\xe3\xf2\x78\x79\x6e\x1f\x9f\x61\x5d\x70\xd3\xb6\x3b\x9d\xef\x4b\xc4\xb1\xf3\x76\x82\x92\xbb\xcd\x3a\x6f\x09\x00\xf9\x37\xbc\xb9\x25\x86\x3b\x3c\x7c\x36\x53\x8f\x1f\xc0\xa0\x4d\xfe\x16\x0c\x06\xe7\x6f\xf0\xf0\x32\x05\xd4\x72\x1f\x38\xaf\xf3\xfc\x07\x47\xf4\x11\x24\x19\x7a\x43\x35\xcb\xdb\x57\x3d\x7f\xd1\x23\xc2\xbb\xd5\x5c\x69\x8c\x86\xae\x18\x16\x37\x79\x90\xe2\xa3\x10\xf5\x7f\xff\x7e\x9f\x71\xcb\xca\xf2\x4b\x77\x7a\xb3\x76\xc1\x08\xb5\x12\x3c\xe7\xe7\xa5\x3b\xc1\x2f\x09\x52\x40\x51\x7d\x92\xe2\xf7\x36\xf5\xc7\xeb\x64\xf6\x46\x59\xf3\x37\x0d\xce\x04\xed\x6f\x98\x3d\x69\xa9\x8b\x23\xa4\x52\x1e\x41\x89\xaa\x26\xaa\x98\x2a\x22\x45\x54\x33\xd5\x47\x50\x65\x21\x88\x1a\xa6\x9e\x66\x35\x44\x86\xc9\x24\xaa\x8b\x44\x3d\xc7\xf7\x4c\x65\x22\xec\x89\x90\x1a\x0f\x55\xf6\xa4\x4b\x2d\x13\x51\x51\xe2\x50\x13\x29\xa6\x86\xe8\x40\x34\x30\x0d\x44\x0d\x11\x32\x61\x22\x95\xd6\x55\xf6\x9a\xa8\xb7\x44\x32\x91\xa1\x37\x52\x51\x42\x51\x96\x31\x4c\xb4\x2e\xa5\x88\x2c\x13\x37\x52\xbc\xe5\x46\x4b\xf1\x8d\x48\xc7\xb8\xef\x5d\xfa\x9f\x2e\xd0\x7e\xa0\xc3\x1a\x02\xfa\x48\xd7\x87\xce\x2c\x6d\xba\xf3\xb8\x5f\xd0\x79\x9a\x53\x17\xfd\xfe\x06\x00\x00\xff\xff\x5d\xc8\xdb\xa1\xcc\x02\x00\x00"); -var _gabb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4d\x6b\x1c\x49\x12\x86\xef\xfd\x2b\xea\xe8\x3d\x78\x95\x9f\x95\x99\x60\x04\x8b\xcd\xb2\x32\x78\x77\x59\xd9\xde\x81\x61\x0e\x95\x95\x55\x9a\x86\x51\xab\x69\x49\x07\xff\xfb\x21\xde\x78\xa3\x8d\xe6\x20\x54\x4f\x44\x56\x7c\x64\x46\x46\x54\xdf\x7c\xbc\xfb\x74\x77\x3a\xbe\x4c\x37\xff\xbd\x3c\xad\xf7\xdb\xcb\xb4\x1f\x4f\xe3\xb2\x3d\x3f\xbd\x5e\xd6\x6d\xea\xdb\xc3\xf1\x74\x38\xf8\x30\x8d\xe3\xfa\x62\x88\x7f\xeb\xe3\x72\x3e\x1c\x6e\xbe\x9d\x8e\x9f\xef\xee\xdf\x7f\xfb\xfa\xcf\xfa\xfe\x5f\xd3\xeb\xf3\x46\xf9\xc7\xbb\x4f\xf7\x3f\x9e\x5f\xb6\xc7\xbb\xd3\xfe\x34\x45\x7d\x7f\xbc\x9e\x69\x63\x9a\x6e\xfe\xb7\x3d\x1c\x9f\x5f\x2e\x3f\xa6\x77\xff\x18\x4f\x7d\xfb\xdb\x34\xb6\x5d\xe4\xff\xb9\x8c\xed\x72\x3c\x3d\x4c\xef\x3e\x2f\xe7\xe5\xe4\xaf\x8a\xfb\xd7\xf3\xf9\x8f\xed\x71\x3b\xbd\x4c\x05\xb2\xed\x34\xf0\xff\x70\xf3\xf1\xcb\x72\xfe\xf7\xf2\xb8\x4d\x6f\xe2\xf9\x0e\x2d\x94\xdf\xb7\xcb\xf3\xf1\xe9\x34\xf9\xf8\x77\xe7\xea\x4f\xf9\xd7\x1f\xe7\x6d\xf2\xb4\xf2\xcb\xb7\xbb\x4f\xd3\xaf\x7e\xf2\x6e\x0a\x39\x25\xf7\x1b\xe5\xff\xff\xf2\x34\xae\xab\xbc\x73\x9a\xc3\x7a\x1c\xeb\xef\xcb\xe5\xf0\x61\x0d\xdd\xdd\x4e\x35\xcc\xed\xf0\x61\x0b\xd5\x35\x77\x3b\x95\xda\x22\x29\x83\x02\x69\x06\x65\xa5\x45\x75\x95\xa4\xba\xa2\xd4\x83\xd8\x2c\xb4\xd2\xa3\x50\x55\x9a\xe1\x21\x56\x82\x17\x98\x09\x41\xa0\x11\xa2\x80\xda\x2b\x35\xdd\x4e\x35\x7a\x4f\xca\x20\x47\x9a\x41\x1a\x63\x91\x38\xaa\xbb\x52\x01\x25\x52\x05\xd1\xca\xd2\x40\x1a\xd5\xd6\xfa\xed\xe4\x83\x4f\x95\xb8\x02\x67\xc3\xa1\xda\x42\xdc\x80\xd9\x11\xf7\x37\x8b\x17\xa7\x8b\x1b\xd1\xeb\xe2\x99\x18\xde\x2e\x8e\xaa\xcd\xc4\xa4\x68\xda\xfc\x76\xf1\xac\x5a\x86\x81\xec\x7e\x2a\x2b\xc8\x74\x0d\x64\x4e\x97\xb7\x76\xba\x28\x4b\x20\xad\x20\x4f\x1a\x20\xa4\xd6\x52\x5d\x6f\xa7\x92\xf4\xc8\x5b\xaa\x03\x54\x48\x1b\x68\x26\xed\xa0\xaa\x84\x43\xce\x2e\x92\x3c\x88\x56\x70\xcc\xd9\x25\x52\x04\xd1\x4a\x4b\xb0\xe2\x49\x19\x64\x56\x66\x50\x20\x15\x90\x59\xa9\xa0\x46\x6a\xb0\x69\x56\x16\x10\x33\x92\x83\x2e\xd9\x99\x15\xc9\x2f\x07\xf3\x30\x40\xcc\x4f\x4e\xb9\xe4\x60\x51\xef\x20\xfa\x5b\x90\x5f\x60\xd4\x0b\xf2\x0b\xf4\xbe\x20\xbf\xc0\x9d\xc0\x35\xc9\x91\x56\x70\x4d\x72\xa4\x3f\x39\xc0\x92\x23\x63\x91\x03\x2c\x39\x9a\x07\xe4\x10\x19\xcb\x82\x1c\xa2\xf9\x43\x0e\xd1\x3c\x20\x07\x4f\x0f\x1d\x91\x79\xae\xec\x09\xd9\xd2\x4a\x87\x07\xa7\xef\xe5\x8a\x95\xc9\x93\x90\x43\x72\x24\xe4\x90\x02\x09\x67\xa4\xd5\xdf\x72\x85\x4d\x2d\xef\x96\x2b\xf2\x4b\x33\x09\xf9\x25\xf3\x80\xfc\x72\x24\xc1\x7b\x56\x9b\x55\x76\xbe\x86\xe0\x49\x52\x75\xc1\x37\xd2\x06\x9d\xad\xdc\x41\x1a\xd9\x5a\xf5\xfe\x14\x75\x81\xdb\x55\x83\x93\x17\x63\x75\x38\xce\x8a\xa2\x10\x92\xe3\x6c\xb8\x78\x42\x3b\xa8\x80\x3c\xd2\x6d\xbe\x92\x22\xa8\x91\x24\xa5\x06\x87\x42\x05\xe4\x49\x0d\x14\x94\x16\xbc\x87\xf2\x89\xd2\xe1\x40\x89\xa4\x56\x32\x49\xad\xcc\xa4\x0d\x54\x64\x0a\x58\x2b\x3e\xd4\xfc\x97\xde\x2c\x2b\xa5\x5c\x6b\x28\x81\x84\x4d\x2b\x1a\x4b\x40\xa3\x99\x63\x34\x44\x4a\xa1\x92\x34\x98\x46\x42\x30\xd1\x91\x10\xcc\xf5\x3d\xa4\x14\xd5\x45\xd4\x24\xa2\xa6\x14\xd5\x4a\x4c\x24\xb5\x92\x49\x6a\x65\x26\x21\xa5\xa8\xdb\x1b\xbb\x1e\x84\x7a\xe8\x7d\xbf\x9d\x42\x74\x59\x83\x59\xa5\xf0\x6a\xcc\x8e\x24\xd3\x21\xc6\x4a\x92\x06\xe8\xdb\x6c\x4a\xb4\x7a\x46\xb3\x4a\x75\x89\xd2\x13\x8b\x62\x26\x56\x45\x5b\xdc\x14\xcd\xf0\xa2\x38\x13\x3b\xb0\x98\x9f\x55\x31\x10\xb5\x72\xa8\x44\x53\x6a\x89\x5e\x1b\x42\x4a\xa6\xc3\xf4\x89\x46\x1a\x51\x35\xac\x50\x32\xed\xa6\x01\x55\xfa\x40\x91\xc7\xcc\x68\xa5\x69\xd4\xc8\xe3\x5a\x17\xec\x49\x62\xe8\x8b\xee\x09\x77\x73\xc5\x50\xf0\xad\xd9\x9b\x33\x62\x35\x25\x0e\x25\x71\x4b\xa4\x6d\xd4\xc8\x1b\xb0\xa2\x6d\xb4\xab\xc7\xa1\x66\xe8\xb2\x7b\x2c\xa5\xcb\x8e\x5b\xe6\x1c\xed\x74\x3d\xa3\x44\x82\xc7\x54\x48\x05\x4b\xbd\x29\xab\x22\x7d\xf6\x86\x4c\xe8\xb3\x2f\xaa\xb4\x57\x3b\x94\x16\xc1\xaa\x4a\x6e\x5e\x1f\x8a\x1a\xd1\xa8\x98\xaa\x8e\x37\x6f\x54\xaf\xda\x46\xc4\xf6\x31\xa4\x21\x85\x51\x63\x36\xd2\x88\x82\x21\xca\x9d\xe7\x37\xa4\x2c\x4a\xcb\x89\x84\x73\x67\xb4\xa3\xe2\x84\x58\xd2\x03\x43\xac\xf1\x4c\x46\xd3\x0d\xe2\x96\x8c\x16\x15\x4d\x9b\x14\x33\x11\xf1\x24\xae\xed\xf8\xd4\x70\x57\xd4\xb4\xcd\x29\xd3\x4e\xcc\xb3\x6f\x8a\x9e\xb8\xa3\x4c\xe4\xd5\xbd\xa3\x6a\x6b\x40\x85\x0b\xa1\x6b\x16\xea\x9a\x8e\x7c\x0c\x41\x41\x64\x86\x8d\xdf\x3b\x36\xbe\x34\x8c\x67\x21\xe8\x1c\x5f\x14\x17\xa5\x36\x07\x1a\x4d\x57\x66\x92\x5e\xeb\x99\xa4\xef\x19\x6d\xd7\xde\xbb\xf7\x1d\x8d\xa3\xd6\xf6\xa6\xc3\xc5\x72\xed\x70\x97\xe5\xf4\xb0\xe9\x17\x87\x4c\x2c\x7d\xf0\xe8\x67\xd9\xbe\x3d\x54\xde\x12\x7a\x75\xaa\x1c\xe7\x72\xd4\xfa\x20\x2e\x52\xe1\xd4\x95\xc6\xa1\x0f\xf8\x68\xa8\xf6\xc9\x32\x9b\x18\xdf\x0b\x95\x93\x57\x6a\x42\x1f\x1a\xc4\x66\x64\x31\x71\x87\xd8\xa6\x6f\xa4\x78\xc1\xe8\x8b\x0c\x50\x6e\x90\x3e\xe0\xdb\xc0\xdb\x94\xf5\x14\x77\x8c\x4d\x0e\xae\xd4\xb3\x89\x31\x15\x1d\x5d\xca\x05\xd1\x07\x0c\x75\xcf\x8f\x81\x6e\xb6\x71\x1c\x39\xd9\x0c\xe5\xea\x8c\xba\xcd\xec\x50\xae\xc2\xa5\x3c\x04\x6c\x7b\xa1\xb8\x52\xac\xb5\xeb\x28\x6e\xc9\xc4\xe8\xe7\xce\x53\x3c\x9b\xb8\xe0\x1c\x82\x0d\xd5\xab\x95\x86\x92\x62\x3f\x0b\x2d\xab\x3c\xa0\x07\x86\x99\x43\xa2\x53\x1c\xb5\x4d\xf0\x4a\x14\x3d\x65\x79\x68\x3a\xb5\x22\xe5\x8b\xc9\x77\xc8\x79\x2d\x56\x4b\x49\x07\xbe\x6f\xd6\x99\xa4\xca\xb5\x7f\x46\x6d\xd9\x6c\x2d\x6d\x31\xb9\xf6\xb5\x4a\x3b\x32\xf6\xb5\xdf\x79\x95\x5b\x53\xad\x26\xd7\xb6\xdc\xac\x49\x9a\xfd\xae\x0d\xc7\xb1\x5d\xf7\x64\xf2\xac\x72\xeb\x94\xd7\xf5\xbb\xb6\x19\x6b\x2c\x51\xe5\x03\x43\x2b\xb8\x60\x4d\xa5\x9b\x5c\xef\x7d\xb0\xfe\xc6\x38\x47\x53\xbf\x1c\x29\xc3\x76\x79\x34\xb5\x83\xdd\x97\xdb\x8e\xf8\xe5\xa1\xe1\xde\x35\xde\xc2\x5d\xc5\xc3\x7e\x85\x78\xde\x40\xbd\x70\x00\xf9\x91\x7b\xfd\xd1\xb9\xbe\x5e\x2e\xdb\xe9\x05\x3f\x71\xf1\xab\x52\x7e\x29\x1e\x4f\xdb\xf5\x67\xf4\xf9\xe9\x2c\x6f\xe1\xef\xcf\x00\x00\x00\xff\xff\xe2\x5c\x6c\xc3\x72\x0f\x00\x00"); -func _fdcd ()(*asset ,error ){_ffegf ,_eggcc :=_cce ();if _eggcc !=nil {return nil ,_eggcc ;};_gbfa :=bindataFileInfo {_ag :"UniJIS2004-UTF32-V",_bc :4466,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492822,0)};_bgfa :=&asset {_cd :_ffegf ,_dce :_gbfa }; -return _bgfa ,nil ;};func _gdae ()(*asset ,error ){_bgff ,_aag :=_dac ();if _aag !=nil {return nil ,_aag ;};_dbf :=bindataFileInfo {_ag :"GBKp-EUC-V",_bc :768,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492107,0)};_cdab :=&asset {_cd :_bgff ,_dce :_dbf }; -return _cdab ,nil ;};func _ceaa ()(*asset ,error ){_dcfgg ,_ecffdb :=_edag ();if _ecffdb !=nil {return nil ,_ecffdb ;};_fgbe :=bindataFileInfo {_ag :"UniJIS-UTF8-V",_bc :3954,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492964,0)};_gbag :=&asset {_cd :_dcfgg ,_dce :_fgbe }; -return _gbag ,nil ;};var _fegg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x31\xcf\x9b\x30\x10\x86\x77\x7e\xc5\x8d\x5f\x87\x16\x6c\x6c\x92\x4a\x55\xa5\x2a\x0c\x65\x48\x52\x95\x26\xad\x54\x75\x20\xf8\x40\x96\x8a\xb1\x8c\x19\xf2\xef\xab\x3b\x13\x3a\xa0\x17\x1e\xf9\x7d\xc0\x67\xf2\x53\x53\x37\xce\x46\xc8\xbf\x85\xb9\x6f\x31\xc2\x60\x9d\x09\xb8\xcc\x6b\xe8\x11\x1e\x38\x5a\x97\x65\x42\x82\xb1\x7d\x7c\x3d\x72\xf4\x53\xe7\xb3\x2c\x3f\x5d\x5a\xf1\xfe\x2b\xac\x0b\xbe\x40\x53\xb7\xcf\x25\xe2\xd4\xb8\x61\x86\x32\x15\xcd\xea\xb7\x32\x40\xfe\x1d\x47\xbb\xc4\xf0\x84\xb7\x2f\x66\x7e\xe0\x3b\x30\x38\x10\xbf\x06\x83\xc1\xba\x11\xde\x48\xba\xe3\x76\xf5\xfe\x2f\x4e\xe8\x22\x14\xcc\xd0\x19\xce\x2c\x3f\x9d\x3b\x7f\xe9\x26\x84\xf4\x19\x77\xc6\x4c\xef\x18\x16\x3b\x3b\x10\xc5\x87\xa2\xa8\xfe\xf3\x1f\x4f\x8f\x20\xb6\xfa\xad\xa9\xaf\xc3\xb0\x60\x84\x8f\x2a\xa9\xf3\x5f\xb7\xa6\x86\xdf\x02\x44\x01\x52\x97\x47\xfd\x67\x5b\xfa\xf3\x3c\x9b\xbd\x28\x64\xda\x4c\x6f\x4d\xe8\xdc\x88\xd9\x27\x29\x64\xff\x19\xb6\x10\x65\xa5\x2a\x62\xe5\x83\x19\x85\x90\x8a\x89\x49\xc4\x10\x49\x6b\x30\x91\x81\x7a\x05\x11\x25\x99\xa8\x92\x08\xb7\x54\x95\xc8\x81\xc8\x91\x49\x97\x08\x99\x95\x64\x92\x3c\x8a\x3c\xe9\xed\x3a\x79\x34\x79\x34\x9b\x75\xf2\x68\xf2\x68\x36\xeb\xe4\xd1\xe4\xd1\x64\x96\x4a\x11\xe1\xa0\x7d\x1c\x68\xda\xfb\x3e\xe9\x9e\x4e\x79\x9f\x7b\xbf\x86\x80\x2e\xf2\x19\xf3\x7c\x69\x40\xd6\xe1\xfe\x03\xf9\xd9\x53\x8b\xaf\x7f\x01\x00\x00\xff\xff\xdf\x7b\xca\x7c\x6c\x02\x00\x00"); -func _acfg ()([]byte ,error ){return _dc (_fegg ,"CNS1-V")};func _eee ()([]byte ,error ){return _dc (_gbdf ,"GBT-V")};func _gae ()([]byte ,error ){return _dc (_bbb ,"CNS-EUC-H")};func _fcbg ()([]byte ,error ){return _dc (_adbggd ,"V")};var _caa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\xcf\x8e\x9b\x30\x10\x06\xf0\x3b\x4f\x31\xc7\xed\xa1\xc5\x7f\x8a\x31\xd2\x2a\x52\x95\x1c\x8a\x56\xdb\xad\x9a\xee\xb6\x52\xd5\x03\xc1\x43\x64\xa9\x31\xc8\xc0\x21\x6f\x5f\xf9\x33\xa5\x87\x68\xe2\x1f\xfe\x06\x63\xbb\x3c\xb6\xa7\x36\xf8\x85\xca\xaf\x71\xec\xcf\xbc\xd0\xe0\x83\x8b\x3c\x8f\x6b\xec\x99\x2e\x7c\xf5\xa1\x28\xa4\x22\xe7\xfb\xe5\xdf\x10\xa5\xbf\x75\x53\x51\x94\x4f\xe7\xe3\xfb\xcf\xb4\xce\xbc\x8d\x8f\xed\xe9\x7c\x9f\x17\xbe\xb5\x61\x18\x49\xe7\x9c\x5b\xa7\x2d\x4b\x54\x7e\xe3\xab\x9f\x97\x78\xa7\x87\x4f\x6e\xbc\xf0\x3b\x72\x3c\x24\x7f\x89\x8e\xa3\x0f\x57\x7a\x78\x1a\x23\x77\x72\x7f\x70\x5e\xa7\xe9\x0f\xdf\x38\x2c\x24\x60\x1c\x1c\x6a\x51\x1e\x9f\xbb\xe9\x4b\x77\x63\xc2\x3a\xde\xa0\xc0\x37\x8e\xb3\x1f\x03\x35\x1f\x84\x30\xff\xf9\xfb\x7d\x62\x92\x5b\xf8\xb5\x3d\xbd\x0c\xc3\xcc\x0b\x69\x95\x1b\x97\x3f\x5f\xdb\x13\xfd\x92\x24\x05\xa9\xea\xa3\xd0\xbf\xb7\xa9\x3f\x9e\x47\xb7\x07\xa5\xc9\x1f\xd3\x7b\x17\xbb\x70\xe5\xe2\x51\x49\xa5\x0e\x94\x8a\x3e\x90\x15\x95\x01\x55\x99\x2a\x90\x05\x99\x4c\xe6\x40\x56\x2b\x01\x6a\x32\x5d\x30\xab\x01\xb9\x4c\x2e\x91\x51\x89\x74\x6e\xaf\x33\xe9\x44\xe6\x02\x32\x08\xd6\x55\xf1\xa8\xb4\x92\x89\x50\xac\xa8\x0d\xc8\x66\x6a\x40\x35\xa8\xcf\xd4\x83\x1a\x10\x67\xe2\x44\x36\xad\x4b\xeb\x0e\xa4\x07\x90\x4c\x54\xe1\x8d\x28\x56\x58\xf4\xaa\x5c\x26\xac\xcb\x5a\xd0\x90\x29\x07\xd1\xbe\xce\xc1\x1a\xed\x1b\x91\xce\x6f\xdf\xbb\xf4\x3f\xdd\x9c\xfd\x24\xfb\x35\x46\x0e\x0b\xee\x0d\xce\x2c\x6d\xba\x0f\xbc\xdf\xc9\x69\x9c\x52\x0a\xbf\xbf\x01\x00\x00\xff\xff\x7c\xa3\xad\x1b\xbf\x02\x00\x00"); -func _fbbd ()(*asset ,error ){_gbfg ,_bgabe :=_dbab ();if _bgabe !=nil {return nil ,_bgabe ;};_aabd :=bindataFileInfo {_ag :"KSC-V",_bc :703,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492528,0)};_eaaef :=&asset {_cd :_gbfg ,_dce :_aabd };return _eaaef ,nil ; -};func _gdgb ()(*asset ,error ){_afef ,_fcefb :=_bgaa ();if _fcefb !=nil {return nil ,_fcefb ;};_aeab :=bindataFileInfo {_ag :"UniJIS-UTF32-H",_bc :243137,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492947,0)};_dfeac :=&asset {_cd :_afef ,_dce :_aeab }; -return _dfeac ,nil ;};func _gbfcg ()([]byte ,error ){return _dc (_daeac ,"UniJIS-UCS2-V")};func _bacc ()(*asset ,error ){_deea ,_bfbg :=_gccg ();if _bfbg !=nil {return nil ,_bfbg ;};_dgcg :=bindataFileInfo {_ag :"KSC-Johab-H",_bc :82000,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492512,0)}; -_gfdb :=&asset {_cd :_deea ,_dce :_dgcg };return _gfdb ,nil ;};func _dgcf ()([]byte ,error ){return _dc (_aebe ,"Adobe-KR-1")};func _afga ()([]byte ,error ){return _dc (_ffad ,"B5pc-H")};func _bdbg ()(*asset ,error ){_agcdf ,_aecd :=_caef ();if _aecd !=nil {return nil ,_aecd ; -};_fbccg :=bindataFileInfo {_ag :"GBT-EUC-H",_bc :44530,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492198,0)};_dgbb :=&asset {_cd :_agcdf ,_dce :_fbccg };return _dgbb ,nil ;};func _dgebc ()([]byte ,error ){return _dc (_fdcf ,"UniKS-UCS2-H")};var _bbb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9a\x4f\x8f\x1c\xb7\x11\xc5\xef\xfb\x29\xfa\xe8\x1c\x9c\x25\x8b\x4d\x36\x09\x08\x03\x18\x92\x8c\xe8\x60\x39\x88\xa2\x24\x40\x90\xc3\x34\xff\x08\x0b\x44\xb3\x8b\xdd\xd5\x41\xdf\x3e\x20\x59\xc5\x57\x36\x72\xb0\x05\x43\x54\xd7\x72\xa6\x9a\xaf\x59\xfd\xf8\xab\xbd\x7f\xfb\xe1\xdd\x87\xdb\xc3\xeb\x76\xff\xd7\xe7\xc7\xfc\xa9\xbe\x6e\xed\xe1\x56\x9e\xeb\xcb\xe3\xb7\xe7\x5c\xb7\xb3\x7e\x79\xb8\xdd\xdd\x59\xda\xca\x43\x7e\x95\x7f\x8e\xbf\xf2\xd7\xeb\xd3\xdd\x5d\x9f\xff\xe9\xfb\xcb\x6b\xfd\xfa\xe1\xd6\x1e\x37\x37\x7f\xae\x7c\x7b\xe2\x9f\xdd\xb6\xfb\xbf\xd5\x2f\x0f\x2f\xaf\xcf\xdf\xb7\x1f\x7e\x2a\x8f\x67\xfd\xd3\x56\x6a\xeb\xd7\x7f\x7d\x2e\xf5\xf9\xe1\xf6\x65\xfb\xe1\xed\xc7\x4f\x76\x5d\xfe\xf4\xed\xe9\xe9\xbf\xf5\x6b\xbd\xbd\x6e\x66\x5c\xab\xb7\x32\xfe\xbe\xbb\x7f\xfb\xcb\xf5\xe9\xe3\xf5\x6b\xdd\xee\xdf\x7e\xfc\xf4\xe3\xfb\xcf\x6f\x7f\xfc\xcb\x88\x8c\xc0\x3f\xea\xf3\xcb\xc3\xe3\x6d\xb3\xe6\xcf\xc6\x04\x5c\xff\xfb\xf7\xa7\xba\x59\xfe\x84\xcf\x1f\xde\xfd\xda\xda\x4b\x7d\xdd\x9c\x99\x9f\x7e\xff\xaf\xcf\x1f\xde\x6d\xff\xb6\x9b\x35\x1b\x79\x17\xe3\x7f\xf8\x47\xff\xf9\xcb\x63\xa9\x9c\xc2\x9d\x9f\xb7\x93\x1f\x4b\x7d\x79\xba\xe6\xfa\x7c\xbd\x7d\xa9\x77\xdb\xf6\xc6\x98\xcb\x36\xff\x7b\x13\xcd\xa5\x5f\x89\xef\x7f\xb2\xfd\xcf\x65\x0e\x7f\x7e\xff\xf3\x7b\xb9\x4e\xb8\x4e\xfa\xba\xc3\x75\xb7\xae\xcf\x6b\xe3\x93\xe7\xb5\x7a\x2b\xbf\xfb\xfe\x3b\x3b\xd3\xba\x3d\xbe\x96\xda\xe6\xb5\x91\xd1\x1b\xdb\x2e\x9b\x75\x61\x8f\x7d\x96\x0e\xdf\x59\x63\xf8\x5e\x1e\x0a\xcf\xa0\x3e\xe3\xa8\x32\xe3\x4d\xac\x57\xdb\xff\xf4\x8c\xc6\xb0\xd5\xcb\x96\x12\x07\x08\x01\xea\x01\x9b\x1c\x47\x1c\x22\x2e\xd7\xcb\x46\xf1\xe0\xc8\x8e\xc8\xde\xe7\x38\x27\x73\x3c\x22\xbe\xe6\xcb\xb6\x93\xcc\xf1\xb5\xae\x48\x33\x97\xcd\x1b\x99\x13\x30\x27\x9c\xb5\x47\x02\x47\x0e\x44\xc6\xd0\x27\xbf\x22\x84\xc8\x7e\xd9\xbc\xc3\x1c\x8f\x88\xef\x73\x10\x09\x88\x84\x3e\x27\xad\xc8\x81\xc8\x71\xd9\x82\xa1\x15\x89\x88\xc4\xcb\xe6\x77\xb3\x22\x09\x91\xdc\xe7\xb8\x15\x29\x88\xb4\x3e\xc7\x4a\xe4\x34\x2b\xd2\x87\xc1\x1c\x2b\x82\x3b\x3d\xc7\x9d\xa6\xb8\x42\xb8\xd5\x3e\x0c\x06\x11\x87\x88\xbb\x6c\xc1\xae\xe4\xce\x1d\x91\xbe\x3c\xfb\xbe\x22\x58\x9e\x3e\x0c\x16\xc9\x61\x79\xfa\xd0\xa7\xf5\x8c\x1c\x27\xd6\xa7\x0f\xfd\xbe\x74\x38\xb1\x3e\x67\xea\x1f\xb7\x56\xee\xbc\x22\x72\xed\x73\x96\x0e\xe7\x89\xc8\xd9\x6f\xc8\x20\xef\x8c\x50\xee\x93\xb0\x40\x58\xd4\x3e\x0c\x16\x77\x54\x11\xa9\x97\x2d\xac\x87\xf1\x38\x1b\x22\x6d\x7c\xd1\xca\x3b\x43\x89\x6c\xfb\xa4\xf5\x71\x19\xcb\xdd\x87\x7e\x6d\xa1\x23\x63\xb9\x73\xe8\x73\xd6\x1d\x65\xac\x4f\x1e\xeb\xb3\x56\x2e\x63\x7d\x72\xbf\xd7\x7d\xad\x4f\xc6\xad\xe6\xf1\xfc\xe0\xb1\xcf\xb8\xd7\x3e\x0c\x58\xba\x8c\x7b\xed\x43\xef\xd7\xca\x65\xdc\x6b\xe9\x8f\x16\xd2\x2e\x78\xb4\x4a\x7f\x7e\xfc\x4a\xa1\xe0\x86\x4a\xdf\x2a\x7e\x3d\x0b\x05\xcf\x42\x89\x7d\xce\x5a\x9e\x82\xc7\xbe\x74\x59\x55\x04\xb2\x96\x29\xeb\x12\xaf\xe0\x5e\x4b\xbb\x6c\x07\xad\xb4\x2b\x74\xe8\xc3\x83\x96\x42\x15\x69\xf7\xa1\xf7\x6b\x11\x2a\x14\xaa\xbe\xcf\x41\x04\x69\xf7\xa1\xf7\x2b\x83\x0a\x85\x6a\xb9\x6c\x87\x43\x06\x58\xd2\x3e\x0c\x46\x7d\x1c\xd6\xb4\x51\x9f\xb4\x3e\xae\x61\xe5\xfa\x30\x18\x5a\xcb\xdd\xb0\xf5\x5a\xbc\x6c\x07\x76\x7f\xc3\xd2\xf5\x61\x30\xb4\x1e\x93\x86\xcd\xd2\x7a\x7a\x50\xbc\x21\xbd\x3e\x8c\x6b\xbd\x23\x8a\x63\xec\xe5\x2c\x7a\xbf\x22\x07\x22\xc7\x65\x8b\x81\x56\x24\x22\x12\x7b\x24\xac\x48\x42\x64\xe8\x1a\x57\x64\xe9\x1a\x7b\xfd\x89\x41\x56\x21\xa2\xfe\x8c\x61\x30\xf8\x38\x14\xa0\xd8\x8b\x49\x3c\x56\x72\xa8\x25\xb1\xd7\x05\x6b\xd6\x4e\x8e\xa7\xfa\xa6\xfe\x04\x59\x24\x8e\xc2\x10\xfb\x26\xb7\xc6\xae\xfc\xb0\xcb\x63\xdf\xa1\xd6\xd0\x9a\x95\x91\x45\xdf\x63\x16\x2b\x1e\xb1\xc7\xc6\x30\xd8\xe0\x56\xa8\x22\x54\x47\x68\x7d\x17\x76\x59\xec\x7b\xc9\x9a\xf5\x0e\x89\xd8\x4c\x63\x18\x6c\x40\x08\x69\xf4\xed\x63\x29\xae\x0f\x2c\x57\x84\xae\xbd\xa6\x60\xa1\xb0\x9f\x62\x7f\xe2\x2d\xa5\xb5\x50\x15\xdf\xd5\x87\x3e\x98\x15\xc1\x57\xf5\xa1\x75\x6b\x13\xc6\xea\x11\x3a\x7a\x68\xd5\xea\x58\xf1\x58\xd4\xf3\xb2\xd9\x10\x97\x90\x15\x0b\xdf\x87\x3e\xd8\x15\xc1\x0a\xf6\x17\xba\x0d\xeb\xed\x1c\x1b\x1e\xcd\x76\x5e\x36\x32\xf8\xbc\x86\xcf\xeb\xcf\x33\xa1\x56\x26\x3c\xd0\x63\x78\x1c\xce\xae\x10\x21\x44\x7d\xd6\x2a\x62\xe9\xea\x10\x72\x63\x16\x42\x3b\x42\x7e\xcc\x72\x2b\x14\x10\x3a\x2f\x9b\x33\x3b\xbe\x2b\x23\xd4\xcd\x8d\xb7\x7e\x85\x1a\x42\xed\xb2\x25\xb3\x8a\x52\xc2\xab\x7d\x0c\x13\xb6\x70\xc2\xbb\x3d\xf5\x6d\xe2\xd2\x7a\xd4\x12\xb6\x49\xea\x6f\xe3\xdd\xe1\xbe\xf0\x3a\x1e\xc3\xfd\x58\x2f\xdd\x84\x2d\x94\xfa\xfb\xd7\x9b\x1d\xb3\x12\x42\xe3\x51\x33\x32\x2d\xc3\xe9\x65\xea\xef\x3c\x2f\xbb\x2b\xc3\xcf\xe5\xe1\xe7\xba\xcf\xea\xf6\x54\x2c\xe5\xff\x73\x99\xe3\xa7\x61\xf7\xb2\xef\x13\x43\x64\x31\x33\x4c\x5d\x0e\x3d\x72\x44\xbe\xe7\x0c\x53\x97\x67\x45\x3b\xf8\x09\xcd\xa8\x68\x79\x3c\x1b\xe9\x60\x4d\x32\x1e\x8d\x9c\x86\x49\x35\x41\xee\xea\x8a\xd0\x75\x84\xac\x97\x1c\x4e\x84\xce\x11\x22\xd1\x3f\x67\x84\xf2\x08\x39\x71\x1a\xb9\x20\x54\x46\x68\x97\x47\x23\x57\x84\xea\x08\x79\x27\x69\x34\x84\xda\x08\x05\x29\x35\xc5\xac\x50\x31\x23\x74\x10\xa7\x51\xe0\xca\xcb\x70\xe5\x36\x5a\x4e\xa3\x40\xad\xc2\xbe\x5c\x9c\x5a\x81\x31\x2f\x6e\xec\xa1\xe5\x6b\x0a\x94\x2c\xfb\x0c\x89\x89\x2b\xd0\xaa\x0c\xad\x68\x39\xfd\x02\xb1\xca\x10\x8b\x96\xd5\x2f\x50\xab\x0c\xb5\xc8\x45\x49\x03\x72\x95\xb9\x95\x77\xa9\x5d\x05\x7a\x95\x34\x77\xb9\x14\xc3\x02\xbd\xca\xd0\x8b\x82\xec\x86\x02\xbd\xca\xd0\x8b\x0e\x79\x7f\x17\xe8\x55\x86\x5e\x14\xc5\xab\x14\xe8\x55\x86\x5e\x94\xe4\x89\x2f\xd0\xab\x0c\xbd\xdc\x2a\xd7\x05\x7a\x95\xa1\x97\xb3\x62\x1b\x2b\xf4\xaa\x43\x2f\x47\x72\x88\xa9\xd0\xab\xda\x79\xf0\x21\x4e\xa3\x42\xaf\x3a\xf4\x72\xbb\x94\x8d\x0a\xbd\xea\xd0\xcb\x79\xc3\x69\x54\xe8\x55\xe7\x49\x6a\x1d\x23\x2a\xf4\xaa\x7e\x86\x92\xa4\x01\xbd\xea\xd0\xcb\x1d\x49\xd2\x80\x5e\x75\xe8\xe5\x62\x94\x34\xa0\x57\x1d\x7a\xb9\x74\x48\x1a\xd0\xab\x0e\xbd\x76\x73\x48\x1a\xd0\xab\x0e\xbd\x76\x2b\xef\xff\x0a\xbd\xea\xd0\x6b\x27\x79\x39\x54\xe8\x55\x87\x5e\xbb\x13\x77\x52\xa1\x57\x1d\x7a\xed\xbb\xbc\x01\x2a\xf4\xaa\x43\xaf\xdd\xef\x92\x06\xf4\xaa\x43\xaf\x3d\x88\x19\x6b\xd0\xab\x0d\xbd\xf6\xf5\xde\x68\xd0\xab\x0d\xbd\xf6\x28\xfe\xb2\x41\xaf\x36\xf4\xda\x93\xe5\x34\x1a\xf4\x6a\x43\x2f\x6f\x2c\xa7\xd1\xa0\x57\x9b\x95\xd2\xca\xfb\xb5\x41\xaf\x36\xf4\xf2\x64\x24\x0d\xe8\xd5\xc2\x0c\xc9\xab\xb2\x41\xaf\x36\xf4\xf2\x4e\x4a\x68\x83\x5e\x6d\xe8\xe5\x77\xa9\xa1\x0d\x7a\xb5\xa1\x97\xf7\x52\x44\x1b\xf4\x6a\x43\x2f\x1f\xa4\x8a\x36\xe8\xd5\x86\x5e\xfe\x90\x2a\xda\xa0\x57\x1b\x7a\xf9\x28\x55\xb4\x41\xaf\x56\xfa\x11\xc6\x27\xae\xa2\x04\xa8\x40\x13\x2a\xf8\xc4\x87\x6d\x02\x56\xa0\x89\x15\x82\x49\x86\x43\x0e\xa1\xb1\xbc\xc1\xc6\x9d\x43\x3b\x42\x63\x79\x03\x1d\x91\x43\x1e\xa1\xf9\xaa\x71\x07\x71\x28\x20\x34\x96\x37\xec\x41\xd2\x38\x10\x1a\xcb\x1b\xc4\x2a\x11\xfc\x33\x4d\x27\x12\xe4\x90\x43\x70\x22\x74\x1d\xcb\x1b\x8e\x5d\xd2\xb8\x22\x74\x9d\x6f\xbc\x5d\xd2\x38\x11\x1a\xcb\x1b\x92\x93\x34\x32\x42\x63\x79\x0f\xe3\x24\x8d\x82\xd0\xd8\x0e\x87\x25\x49\xa3\x22\x34\xb6\xc3\x41\x56\xd2\x68\x08\x8d\xed\x70\x88\x99\xa3\x73\x6d\x07\x3a\xc7\x76\x38\x76\x3e\x58\xd2\x09\xbd\xce\xa1\xd7\xe1\xf9\xe4\x4d\x27\xf4\x3a\x69\x86\xd8\x6d\xd2\x09\xbd\xce\xa1\xd7\x11\xd8\xbe\xd2\x09\xbd\xce\xa1\xd7\x71\x44\x49\x03\x7a\x9d\x7e\x1a\x80\x43\xd2\x80\x5e\xe7\xf4\x06\xe9\x90\x34\xa0\xd7\x39\xcd\x81\x09\x92\x06\xf4\x3a\x87\x5e\xd1\x7a\x49\x03\x7a\x9d\x43\xaf\x48\x5e\xd2\x80\x5e\xe7\xd0\x2b\xba\x5d\xd2\x80\x5e\xe7\xd0\x2b\xee\xbb\xa4\x01\xbd\xce\x3c\x4f\x5d\x4e\xd2\x80\x5e\xe7\xd0\x2b\x06\x92\x34\xa0\xd7\x59\xa7\xb3\x21\x49\x03\x7a\x9d\x43\xaf\x18\x2d\xa7\x91\xa1\x57\x1e\x7a\xc5\xc4\x18\x87\x32\xf4\xca\x13\xda\x19\xc3\x69\xc0\xcc\x51\xa6\x19\x62\x60\x44\x19\x7a\xe5\xa1\x57\xb2\x89\xd3\x80\xd1\xa3\x69\xf4\x12\x45\x49\x03\x7a\x4d\x2b\x97\x5c\x94\x34\xa0\xd7\xf4\x72\x69\x3f\x24\x0d\xe8\x35\xcd\x5c\xf2\x41\xd2\x80\x5e\xec\xe6\x42\x90\x34\xa0\xd7\xb4\x73\xe9\xf0\x92\x06\xf4\x9a\x76\x2e\x45\x2f\x69\x40\xaf\x69\xe7\x52\xda\xf7\x3f\x62\x53\x09\x6e\x8f\xd8\xed\x19\xe3\x24\x4d\xe8\xc9\x76\xcf\x58\x27\x79\x42\x50\xf6\x7b\x86\x48\x12\x85\xa2\x6c\xf8\x8c\x63\xaa\x41\x70\x7c\xc4\x8e\xcf\xec\x7c\xc8\x25\x58\x3e\x62\xcb\x67\x3c\x03\x3d\x82\xe7\x23\xf6\x7c\x46\x48\x24\xc1\xf4\xd1\x34\x7d\xd6\x04\x29\xb6\x70\x7d\x34\x5d\x9f\x35\x87\x54\x5b\xd8\x3e\x9a\xb6\xcf\x9a\x28\xe5\x16\xbe\x8f\xa6\xef\xb3\x26\x49\xbd\x85\xf1\xa3\x69\xfc\xac\x35\x52\x70\xe1\xfc\x68\x3a\x3f\x6b\xad\x54\x5c\x58\x3f\x9a\xd6\xcf\x5a\x92\x92\x0b\xef\x47\x85\xbd\xba\x93\x9a\x0b\xf3\x47\xd3\xfc\x59\xbb\x4b\xd1\x85\xfb\xa3\xe9\xfe\xac\xf5\x52\x75\x61\xff\x68\xda\x3f\x6b\x85\xcb\x11\xfc\x1f\x4d\xff\x67\xad\x70\x1f\x82\x01\xa4\x69\x00\xad\x8d\x52\x78\xe1\x00\x69\x3a\x40\x6b\x93\x54\x5e\x58\x40\x9a\x16\xd0\x92\x91\xd2\x0b\x0f\x48\xd3\x03\x5a\xb2\x52\x7b\x61\x02\x69\x9a\x40\x4b\x24\xc5\x17\x2e\x90\xa6\x0b\xb4\x24\x67\x7d\x82\x0d\xa4\x69\x03\x2d\x39\x29\xbf\xf0\x81\x34\x7d\xa0\xa5\x5d\xea\x2f\x8c\x20\x4d\x23\x68\xc9\x4b\x01\x86\x13\xa4\xe9\x04\x2d\x05\xa9\xc0\xb0\x82\x34\xad\xa0\xa5\x43\x4a\x30\xbc\x20\x4d\x2f\x68\x29\x4a\x0d\x86\x19\xa4\xca\x87\xad\x24\x45\x18\x6e\x90\x2a\x9f\xb6\x8c\x54\x61\xd8\x41\x9a\x76\xd0\x3a\x2b\x65\x18\x7e\x90\xa6\x1f\xb4\x8e\xa4\x0e\xc3\x10\xd2\x34\x84\xd6\x39\x29\xc4\x70\x84\x34\x1d\xa1\x75\xbb\x54\x62\x58\x42\x9a\x96\xd0\x3a\x2f\xa5\x18\x9e\x90\x1a\xe5\x41\x4f\x06\x52\x67\x9f\x83\xc6\x09\xbb\x1b\xd5\x30\x61\x53\xa3\x1a\x25\xec\x65\x54\x83\x84\x2d\x8c\x6a\x8c\x70\x53\x44\x35\x44\xd8\xcb\xa8\x46\x08\x5b\x18\xd5\x00\xe1\xe6\x87\x6a\x7c\x70\xd3\x43\x35\x3c\xb8\xd9\xa1\x1a\x1d\xdc\xe4\x50\x0d\x0e\x6e\x6e\xa8\xc6\x06\x37\x35\x54\x43\x83\x9b\x19\xaa\x91\xc1\x4d\x0c\xd5\xc0\xe0\xe6\x85\x6e\x5c\x70\xd3\x42\x35\x2c\xb8\x59\xa1\x1a\x15\xdc\xa4\x50\x0d\x0a\x6e\x4e\xa8\xc6\x04\x37\x25\x74\x43\x82\x9b\x11\xaa\x11\xc1\x4d\x08\xd5\x80\xe0\xe6\x83\x6a\x3c\x70\xd3\x41\x37\x1c\xb8\xd9\xa0\x1a\x0d\xdc\x64\x50\x0d\x06\x6e\x2e\xa8\xc6\x02\x37\x15\x74\x43\x81\x9b\x09\xaa\x91\xc0\x4d\x04\xd5\x40\xe0\xe6\x81\x6a\x1c\x70\xd3\x40\x35\x0c\xb8\x59\xa0\x1a\x05\xdc\x24\xd0\x0d\x02\x6e\x0e\xa8\xc6\x00\x37\x05\x54\x43\x80\x9b\x01\xaa\x11\xc0\x4d\x00\xd5\x00\x60\xf8\xaf\xc0\x3f\x43\x7f\x05\xfc\x19\xf6\x2b\xd0\xcf\x90\x5f\x03\x7e\x86\xfb\x0a\xec\x33\xd4\x57\x40\x9f\x61\xbe\x02\xf9\x0c\xf1\x15\xc0\x67\x78\xaf\xc0\x3d\x43\x7b\x05\xec\x19\xd6\x6b\x50\xcf\x90\x5e\x01\x7a\x86\xf3\x1a\xcc\x33\x94\x57\x40\x9e\x61\xbc\x06\xf1\x0c\xe1\x15\x80\x67\xf8\xae\xc0\x3b\x1f\x1a\x14\x70\x67\xd8\xae\x40\x3b\x43\x76\x05\xd8\x19\xae\x03\xac\xff\xc6\xb4\x24\xff\x7b\xcf\xc2\xc8\x5d\xe1\x76\x46\xed\x1a\xb3\x33\x62\x57\x78\x9d\xd1\xba\xc6\xea\x8c\xd4\x35\x4e\x67\x94\xae\x31\x3a\x23\x74\x8d\xcf\x19\x9d\x6b\x6c\xce\xc8\x5c\xe3\x72\x46\xe5\x1a\x93\x33\x22\xd7\x78\x9c\xd1\xb8\xc6\xe2\x8c\xc4\x35\x0e\x67\x14\xae\x31\x38\x23\x70\x8d\xbf\x19\x7d\x2b\xec\xcd\xc8\x5b\xe3\x6e\x46\xdd\x1a\x73\x33\xe2\xd6\x78\x9b\xd1\xb6\xc2\xda\x8c\xb4\x35\xce\x66\x94\xad\x31\x36\x23\x6c\x8d\xaf\xf9\xc0\xa8\xb1\x35\x23\x6b\x8d\xab\x19\x55\x6b\x4c\xcd\x88\x5a\xe3\x69\x46\xd3\x1a\x4b\x33\x92\xd6\x38\x9a\x51\xb4\xc6\xd0\x8c\xa0\x35\x7e\x66\xf4\xac\xb1\x33\x23\x67\x8d\x9b\x19\x35\x6b\xcc\xcc\x88\x59\xe3\x65\x46\xcb\xbf\xc1\xca\x7c\x0a\x51\x38\x99\x4f\x18\xc0\xc8\x6f\xf8\x60\xa1\xf8\x30\x9f\x27\x14\x17\xe6\x63\x84\xe2\xc1\x7c\x7a\x50\x1c\x98\x0f\x0d\x9a\xff\xf2\x61\x41\x73\x5f\x3e\x24\x68\xde\xcb\xee\x5f\x73\x5e\x36\xfd\x9a\xef\xb2\xd7\xd7\x5c\x97\x2d\xbe\xe6\xb9\xec\xec\x35\xc7\x65\x43\xaf\xf9\x2d\xfb\x78\xcd\x6d\xd9\xbe\x6b\x5e\xcb\xae\x5d\x73\x5a\x36\xeb\x9a\xcf\xb2\x47\xd7\x5c\x96\xad\xb9\xe6\xb1\xec\xc8\x35\x87\x65\x23\xae\xf9\x2b\xfb\x6f\xcd\x5d\xd9\x76\x6b\xde\xca\x6e\x5b\x73\x56\x36\xd9\x9a\xaf\xb2\xb7\xd6\x5c\x95\x2d\xb5\xe6\xa9\xec\xa4\x35\x47\x65\x03\xad\xf9\x29\xfb\x66\xcd\x4d\xd9\x2e\x6b\x5e\xca\x2e\x59\x73\x52\x36\xc7\x9a\x8f\xb2\x27\xd6\x5c\x94\xad\xb0\xe6\xa1\xec\x80\x35\x07\x65\xe3\xab\xf9\x27\xfb\x5d\xcd\x3d\xd9\xe6\x6a\xde\xc9\xee\x56\x73\x4e\x36\xb5\x9a\x6f\xb2\x97\xd5\x5c\x93\x2d\xac\xe6\x99\xec\x5c\x35\xc7\x64\xc3\xaa\xf9\x25\xfb\x54\xcd\x2d\x99\x59\x6a\x5e\xc9\xac\x52\x73\x4a\x66\x94\x9a\x4f\x32\x9b\xd4\x5c\x92\x99\xa4\xe6\x91\xcc\x22\x35\x87\x64\x06\xa9\xf9\x23\xb3\x47\xcd\x1d\x99\x39\x6a\xde\xc8\xac\x51\x73\x46\x66\x8c\x8a\x2f\xea\x37\x64\x1f\x7f\xbd\x3e\xdd\xad\x5f\x17\xcb\xdf\x9e\x9f\xeb\xed\x75\xfc\x6a\xda\xf8\x9d\xb0\xad\xd4\xf6\x70\xab\xeb\xd7\xdc\x9e\x1e\x9f\xfa\xac\xf1\xff\xff\x02\x00\x00\xff\xff\x32\x3f\x1b\xc2\x12\x27\x00\x00"); -func _cafg ()([]byte ,error ){return _dc (_cdgbd ,"UniJIS-UCS2-HW-H")};var _ffdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4f\x6b\xdb\x4c\x10\x87\xef\xfb\x29\xe6\x98\xf7\x90\xd7\x33\xfb\x4f\x2b\x10\x86\x12\x13\x70\x21\x4d\x69\x9a\xb6\x50\x7a\x90\xa5\x95\x11\xd4\x2b\x21\xcb\x87\x7c\xfb\x32\x33\x76\x0a\x3d\x18\xd9\x8f\x66\x7e\x58\xcf\xec\x68\xf3\xb0\xdf\xed\xcb\xb8\xc2\xe6\xf3\x32\x75\x2f\x79\x85\x61\x2c\xfd\x92\xcf\xd3\x65\xe9\x32\x1c\xf2\x71\x2c\xc6\x90\x85\x7e\xec\xd6\xdb\x4f\xb9\x74\xa7\x76\x36\x86\xfb\x5f\xde\xce\x6b\x3e\xed\xcb\x30\x81\xd3\xba\xfe\x32\x5f\x6b\x01\x36\x5f\xf2\x71\x3c\xaf\xcb\x1b\xdc\x7d\xe8\xa7\x43\xfe\x0f\xfa\x3c\x30\x7f\x5e\xfa\xbc\x8c\xe5\x08\x77\x1f\xdb\xb9\x2d\xf4\x7e\xe3\xe5\x32\xcf\xbf\xf3\x29\x97\x15\x48\x58\x2e\xbd\x5c\xcd\xe6\xe1\xa9\x9d\x3f\xb5\xa7\x0c\x1b\xc9\xba\xd7\xce\x7b\x2d\x93\xbb\xdf\xf2\x72\x1e\xa7\x02\x84\xff\x23\xc6\xbf\xfc\xeb\xdb\x9c\xaf\x71\x66\xf3\xba\xdf\x3d\x0f\xc3\x39\xaf\x40\xe8\x50\x8b\x7e\xbc\xee\x77\xf0\x93\x80\x10\x6c\x08\x0e\x7f\x5d\x6b\xbf\x3f\x4d\x7d\x06\xbc\xfd\x81\xfd\xee\x61\xba\x94\x15\x92\x0b\xb5\x32\xd2\x47\xed\xa6\x3e\x9f\xe7\xb6\xcb\x4b\x5b\x8e\xd9\x00\x34\x88\x88\x5b\x68\x2c\x3e\x3e\x6e\xf9\x19\xfe\xa9\x30\xce\x5d\x3b\xc7\x5e\xc9\xad\x03\x71\x18\xb6\x00\x00\x68\x1a\x24\x45\x24\xc8\x86\x68\x1a\xb4\x8a\xac\xa0\x40\xd6\x34\xe8\x14\x39\x41\x55\x4c\xa6\x41\xaf\xc8\x33\x22\xb4\xde\x34\x18\x14\x05\x41\x36\x71\x7c\x54\x14\x05\x05\xc7\xf1\x95\xa2\x4a\x50\x55\x73\x7c\x52\x94\x18\x59\xf4\x1c\x5f\x2b\xaa\x05\x39\xe4\xf8\x56\x51\x2b\x28\x44\x8e\x3f\x28\x3a\x08\x4a\xc4\xf1\x9d\xa2\x8e\x91\xc3\x8a\xe3\x7b\x45\xbd\x20\x67\x39\x3e\x2b\xca\x82\x42\xe2\xf8\x41\xd1\x20\x28\x79\x34\x0d\xa9\x2f\x12\x5f\x1e\xeb\x68\x1a\x52\x5f\x24\xbe\xbc\x0b\xd6\x34\xa4\xbe\x48\x7c\xf9\x88\xc9\x34\xa4\xbe\x48\x7c\xf9\x14\xbd\x69\x48\x7d\x91\xf8\x0a\x64\x39\x5e\x7d\x91\xf8\x0a\xae\xe2\x78\xf5\x45\xe2\x2b\x44\xc7\xf1\xea\x8b\xc4\x57\x48\x89\xe3\xd5\x17\x89\xaf\x48\x9e\xe3\xd5\x17\x89\xaf\xe8\x91\xe3\xd5\x17\x89\xaf\x18\x79\xb4\xa4\xbe\x48\x7c\xc5\x9a\x47\x4b\xea\x8b\xc4\x57\x45\x3c\x5a\x52\x5f\x24\xbe\x2a\xcf\xa3\x25\xf5\x45\xe2\xab\x8a\x3c\x5a\x52\x5f\x24\xbe\xaa\x9a\x47\x6b\x6f\x27\xb2\x8d\x5b\x48\x54\x5b\x39\x96\xb7\xe3\xc7\xdf\x79\xa9\xdf\x97\xac\xbb\x2c\x4b\x2e\xab\xac\xb4\x2c\x11\x1f\xf8\xb1\xe4\xf7\xd7\xc3\x3c\xcd\xdc\x25\x9f\x3f\x01\x00\x00\xff\xff\x26\x4d\xff\xfa\x4a\x04\x00\x00"); -func _bdgc ()([]byte ,error ){return _dc (_fdfg ,"Roman")};func _edgf ()([]byte ,error ){return _dc (_eeac ,"H")};var _gbff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x4b\xcb\x6d\x4d\x96\xa5\x89\xf5\xfd\x57\x9c\x66\xa9\x51\x8a\xb5\xec\x6e\x20\x0e\x88\x2a\x02\x25\x45\x49\x42\x99\x29\x09\x84\x1a\xeb\x9a\x72\x50\xba\x07\x1e\x91\x8d\xfc\xf7\xc2\x9e\xf9\xee\x31\x76\x08\x0a\xce\xd7\x39\x9f\xbd\xb6\xb6\xdd\x6d\xda\xbc\x8e\xf9\x4f\xff\xd3\x7f\xf8\x9f\xff\xc3\xdf\xfe\xfa\x6f\xbf\xfe\xe9\xff\xfa\x8f\xbf\x5f\xff\xf1\xf9\xb7\x5f\xef\x5f\xff\x76\xff\xe3\xf9\xd7\xbf\xff\xb7\x7f\x5c\xcf\xaf\xf3\xf9\x2f\x7f\xfd\xdb\x5f\xfe\xb2\xa7\x5f\xf7\x5f\xaf\x7f\xfb\x14\xf9\xe7\xfa\xaf\xc7\xbf\xfc\xe5\x2f\xeb\xf7\xff\xf1\xbf\xff\xeb\xbf\x3d\xff\xf5\x3f\xfc\xed\xfd\xfb\xaf\x1c\xdf\xdd\xff\xed\x5f\x7e\xbe\xfd\xf5\xeb\x9f\xfe\x6f\xcf\x7f\xf9\xeb\xbf\xfe\xdb\x3f\xfe\xfb\xaf\xff\xe1\xff\x78\xff\xfd\x7c\xfe\x77\xbf\xee\xe7\x5d\x7f\xff\xbf\xfc\xe3\x7e\xfe\xf1\xd7\xbf\xfd\x97\x5f\xff\xc3\xff\xf2\xf7\x7f\x3c\xc7\xae\x8a\xff\xf8\xdf\xfe\xe5\x5f\xfe\xbf\xcf\x7f\x7d\xfe\xf6\x6f\xbf\x76\xfe\xf6\xfc\xed\xe6\xdf\xbf\xfc\xd3\xff\xf4\xbf\x1e\xff\xf2\x7f\x3e\xfe\xeb\xf3\xeb\x9f\xfe\xf3\xdf\xfe\xfa\xbf\xfc\xc7\xff\xf1\x3f\xff\xa7\x7f\xce\xe9\x7f\xfc\x3f\x51\x4b\xe5\xff\xfd\xf9\xc7\xbf\xfe\xf5\xef\x7f\xfb\xb5\xff\xef\xb7\x6d\xf8\xcf\xff\xe9\xbf\xff\xcb\xf3\xd3\xd8\x5f\xfe\xe9\xff\xf9\x9f\xff\xc3\xff\xfc\xeb\xff\xb5\xff\xda\xb7\x5f\xa9\xd6\x92\xfe\xdf\x3f\x7f\xff\x7f\xfc\xaf\x7f\xbf\x9f\x5f\x5b\x94\xf6\x98\xc0\xf5\xf7\xfb\xf9\xd7\x7f\x39\xae\xe7\x1f\xc7\xdf\xfe\xcb\xf3\x97\x5f\xbf\xfe\x0f\xdb\xcf\x7f\xbf\xd7\xff\xee\xdb\x3f\xff\xf3\x3f\xff\xf3\xef\x35\xc2\xff\xbf\x2f\x3f\x0d\xfc\xed\xef\xff\x76\x3f\x6f\xfc\xed\xdf\xff\x76\xfd\xb7\xbf\xbf\x7f\xed\xeb\xd7\xdf\x9f\xfd\x65\xdf\xb6\x9f\xde\xff\x7a\x5f\xff\x9f\xe3\x1f\x9f\x1f\x1e\xdb\xfa\xfa\x53\xd8\x7f\xff\x4a\xdb\x50\xb1\xfc\xfe\x95\xf6\xa2\x62\xff\xfd\x6b\xaf\x55\xc5\xf1\xfb\xd7\xbe\x75\x15\xe7\xef\x5f\xd3\x3f\x3d\x7e\xff\x6a\xcd\xc5\xf3\xf7\xaf\xbd\xb7\x4f\xf1\x5c\x9d\x66\xd5\x9e\xfb\x2a\x6e\x2a\x96\xdf\xbf\xf6\x39\x55\x6c\xbf\x7f\xa5\xa2\x51\x9c\x6b\x14\x9b\x8b\x63\x0d\xd9\x2d\xcf\xdf\xbf\x46\x49\x2a\xae\x61\x74\x0d\xf9\x64\x18\x1a\xf2\x79\xfd\xfe\xd5\xab\x66\x7f\xde\xbf\x7f\xf5\xe2\x51\x3d\xab\xd6\x4d\xbd\xab\x23\x8d\xea\x6a\x6b\x82\xea\xf7\xde\x56\x51\x2d\xdf\x6b\x90\x59\x2d\xdf\x63\x0d\x23\xab\xf8\xac\xa2\x7f\xfb\xfe\xfe\xd5\xbd\x56\x4f\x5b\xfd\xaa\xa9\x77\x5b\x45\xf5\xfb\xd2\xb2\x46\xf5\x8e\xf5\x5b\x35\xf5\xae\x31\xb7\xcf\xc7\xfb\xbe\xaf\xdf\x7e\x5a\xde\x13\x63\x56\x6d\xea\xeb\xe3\xcf\xb2\xef\x79\x7d\xdc\x76\x15\xd3\x1a\xa4\x6b\xf3\xaa\x4d\x2a\xd2\x6f\x56\xf1\x5d\x1f\xeb\xb7\x65\x8d\xb9\x15\x15\xf7\x55\xab\xdf\x96\xb4\x6a\xab\x8a\xf3\xf7\xaf\xfe\x55\xcb\x96\x69\xcc\xe5\x5c\xb5\x6a\xb9\x32\x2a\xb5\x5c\x19\xd5\x67\xad\xf6\xb6\x26\xd8\x5d\x5c\x13\xd4\x14\xd2\xda\xee\x91\x74\x1a\xd2\xd5\xd7\x8e\x7e\x9a\x4e\x37\x27\x29\xa9\x38\x57\x51\x1f\xdf\xc7\x2a\x16\x15\xcf\x55\xec\x2a\x5e\xab\xa8\x9e\xee\x7b\x15\x3f\xab\x53\xb6\x75\xbe\xb7\xf4\xd9\xa5\x52\x29\x7f\xf6\x34\x6d\xfb\xf6\xfb\xd7\xec\x2a\xb5\xdf\xbf\xf6\x7d\x57\xf1\x5c\xa3\xfe\x5c\x96\xc4\xf5\x1e\x29\xeb\xf3\x94\x7e\xff\x1a\x6d\x53\x39\x6f\xeb\xd2\x36\x15\xcb\xef\x5f\xa3\x8e\xa4\x72\xfd\xfd\x6b\xe6\xe4\xfa\x46\xb9\xa8\xbc\xae\x48\x75\xf5\x5a\x33\x6d\x74\xda\xd6\xde\x8d\x3a\x35\xf4\xbe\x9a\x2f\x55\x45\x96\xb8\x68\xb0\x7d\x0d\xb6\xa8\x35\x68\xc4\xa7\xb4\x6f\xf9\xf7\xaf\xbd\xec\x2a\xae\x05\xdf\x3f\x4d\xed\x7b\xfe\xfd\xab\xce\x4d\xc5\x45\x05\x3e\x47\x39\xed\x69\x51\x2a\x0d\x6b\x5f\x8b\x90\x9a\x3e\xe6\xa0\x17\xd7\xae\x39\x7d\x88\x42\xda\x67\x5a\x54\x40\x1f\xcf\xba\xe8\x4b\x57\x91\x8e\x5c\xbb\x0e\x89\x26\xb4\xcf\x75\x48\xaa\xc6\x3c\xd7\x98\xcb\x67\x35\xf6\x45\xd7\xc6\x68\xfa\x7a\x11\xb6\x31\x9a\xe6\x74\x26\xca\x45\xe5\x4c\xd9\xbf\x2f\x94\x35\x16\x4e\xec\x18\xfa\xfe\xa2\xfd\xa1\xf6\xae\x7b\x95\xb5\xd9\xfb\xf5\x52\x56\xfd\xcd\xf7\x7b\xe1\x2d\xf9\xa1\xfb\xff\x1b\x2f\x41\xda\x6f\x06\x5b\xd5\xd9\xbd\x96\x69\xba\x2d\xc6\x5a\x5d\x86\x4a\xab\xeb\x67\x9d\xe1\xdd\xfb\xf5\xec\x94\xb5\xe8\x4f\xa2\xac\x95\x7b\x32\x65\xed\xd1\xa2\x7a\x73\x9f\x5a\xba\xa7\xff\xfe\x35\x75\xa5\xd2\xfe\x0c\xea\xb5\x54\xcf\xa4\xfe\xd3\x5e\x5a\x0f\xe0\xae\x4b\x94\xb6\x35\xf8\xea\xda\x75\xd4\xd4\x78\xda\xda\x3a\xd5\x5a\xa7\xb4\xf1\xb2\x25\x15\xd7\xcb\xa6\x55\x4f\xeb\x60\x8e\xae\x5d\x4e\xdb\x3a\x4e\xc3\x3f\xe6\x8a\xe8\xc4\xa4\x6d\x3d\x14\xfb\x67\x62\x69\xd1\xe0\xb4\xab\xed\x75\xac\x47\xd7\xfd\x4b\xfb\xb1\x0e\xa3\x46\xb6\xdf\xab\x6d\xb5\xb5\x3f\x8b\xda\xfb\xe3\x97\x71\x6b\x96\x69\x4d\x5a\x87\x33\x41\x0a\x7a\x76\x79\xae\x59\x6b\x11\xd2\xea\x4a\x3b\x94\xd2\xb3\x06\xa6\xda\x45\x28\x76\x91\x95\xb4\xe8\xc4\x3e\x5c\xbb\x6e\xc5\xae\xdf\xe6\xfe\xfb\xd7\xc8\xc9\xd5\x6b\xd8\x5d\x2b\x54\xd6\x24\xab\x36\x2f\x95\xba\xc8\xc0\x74\xfd\xa0\x5e\x3f\xaf\x1b\x03\x57\xfd\x22\x90\xa3\x27\xad\x61\x65\x37\xb5\x21\x35\xd6\x50\x6b\x5a\x0f\x76\x40\x9f\x37\xd8\x0b\x17\x17\xb9\xfd\xaa\x8d\x55\x52\x6b\x1d\x96\xc1\xcb\x34\x0a\xdb\xad\x55\x1c\x95\xb2\x56\x66\xac\xde\xca\xd0\xa6\x8c\x93\xb2\xbe\x3f\x18\x9d\xc8\x4d\x3a\xa0\xc0\x9b\xfa\x3f\xd6\xca\xfa\x34\x3d\x0f\x4b\xa9\xb5\x7a\x16\xfb\xf6\x61\x68\x52\x8e\xa3\xaa\xb9\xe7\x9d\xa5\xd8\x54\x64\xb0\x1f\x4e\x23\xd5\x75\x0d\xea\x3e\x55\xdc\x7f\xff\xaa\x1f\xce\x2a\xd5\x75\x2b\x6a\x72\x71\x91\xd8\xaf\xdf\x5e\xab\xd6\xc5\xfb\xf7\xaf\x2a\x8a\x5b\xb7\x67\x15\xbb\x8a\xef\xfa\xed\x67\x92\x75\x3d\x61\x35\xb9\xb8\xfa\xad\x2e\xae\x7e\x75\x1b\x2b\xa4\x5d\xfb\x53\xd7\x1c\xaa\x5e\xa0\xba\xd7\xf5\x71\x53\xb1\xad\x62\x55\xb1\xaf\xdf\xba\x38\xd6\x6f\xdd\xd4\x5c\x1f\xbb\xa9\x63\x15\x5d\x7b\xae\xdf\xba\x96\xf9\xba\xa9\x35\x5f\xbd\x55\x75\xdd\xad\xaa\xd7\xa9\x26\xc6\xec\x5a\xc6\xac\xd5\x48\x6b\xcc\x3a\x32\x35\xad\x51\xe9\xfd\xa9\x89\x7e\x5d\x4b\xbf\x6e\x6a\xad\xa4\x8e\x4b\xcd\xf4\xab\x96\x33\xfd\xba\x48\xbf\x6a\x6a\xdd\xc3\x5a\x34\xa3\x4c\xbf\xda\xfd\x4c\xbf\x2e\xd2\xaf\x8b\xf4\x5b\xff\xe4\x6d\xa8\x85\x0d\xd4\xc1\x59\x4c\x59\x2d\x2a\xae\x07\x35\xf9\x2c\x20\x52\xe8\xd1\xab\x4b\xa8\xd8\xf5\xe6\xd5\x75\x3d\x92\x47\x71\x2c\xc2\xe2\xf9\x2d\x19\x23\x79\x99\x97\x8c\x91\xbc\xdb\x8b\x7f\x30\x2b\x54\x79\x5e\xbb\xbf\x5e\xcf\xeb\xae\xd7\xb3\xae\xd7\x75\x6f\xae\xe5\x1e\x8b\xb6\x56\xe4\x0a\x5f\x86\x25\x57\x24\xdf\x1c\x04\x89\x2e\x02\x58\xd7\x53\xbc\x37\x57\x2f\x82\xd7\x3c\x12\x08\xb3\x08\x60\xbd\x60\xc2\x54\x7d\xf1\x06\x68\x60\x17\x14\x42\x3c\x59\x5d\xb2\xc4\x2e\x66\xa6\x2e\xbe\x74\x6f\xae\x5d\x6b\xe0\x2d\xbf\xd6\x1a\xf8\xe4\x5d\xd0\xbe\xe1\x32\xfc\x9b\x07\xb2\x1e\xa7\xe6\x33\x70\xad\x07\xa5\x69\x56\x8b\x61\xd8\xc5\x37\xd5\x07\x62\xd3\xb5\xde\x8b\x16\x8d\xa6\x9b\xda\xb6\x45\xba\x44\x12\xda\xa2\x4d\xbb\x48\x42\x5b\x14\x22\xe9\xc6\x34\xde\x41\x1d\x92\xb6\x6e\x5b\xd2\x31\x6f\xeb\xb6\xcd\x94\x5c\xe6\xc7\xea\x69\xbd\x74\x33\xe9\x62\xb7\xc4\x48\x74\x8a\x5a\xe1\xe5\x53\xd7\xeb\x7c\xee\xba\xbb\xad\x71\xc6\x5c\x5c\x72\xac\x08\x5b\x6b\x8b\xe1\x13\xbd\x69\x4b\x4a\x48\x22\x03\xad\x71\xe4\xa6\x8a\x6b\xd8\xd5\xb5\x8b\xb3\x17\x61\x6b\xed\x85\x1d\xfe\xb4\xd5\x17\xb1\x1a\x4d\x24\xb5\x2f\x02\x34\x9a\x08\x70\x5f\xef\xe4\x68\x9b\xbe\xaf\xf1\xfd\x67\x1e\xef\x22\xdf\xad\x68\x43\xde\xad\xfc\xfe\xd5\xf2\x70\x19\xc6\x56\xcc\xc5\xbb\x38\x95\x56\x8a\xcb\x4b\x78\x2a\xdd\xed\x2d\xe9\xc9\x0f\xef\xbb\xe8\x72\x49\xe2\x7d\xdf\x45\x98\x4b\xd1\x8e\xbe\x90\xe2\x7d\xa8\x3d\xa8\xad\x84\xb3\xf4\x42\x6e\x37\xb7\xbf\x36\xb5\x99\x0b\x7b\xd7\xae\xe6\xf9\x55\x5e\xa2\x6d\x11\xe5\x7f\x21\xaa\x5e\xce\x17\xaa\x5a\xf4\x36\xbe\x8b\xac\x96\x54\x5d\xae\xbf\x7f\x15\x1f\xe7\x37\x18\x7b\xbd\xb5\xef\x22\xb4\xdd\xcc\xfb\x9b\xa0\xff\x5a\xdf\x17\xca\xdb\xa6\xeb\x6f\xde\x43\xf7\xff\xfe\xfe\x95\xbb\xde\xfe\x77\x11\xdf\xf2\x35\xbf\x25\x13\x67\xef\xd7\xbb\x84\xe2\x5c\x86\xbf\x1f\x6b\xbe\xcd\xf5\x8b\xc4\xf6\xaf\xf2\x5a\x8f\xf1\xf5\xfb\x25\x9f\x8f\x4d\xe3\x87\x06\x57\xef\xef\x3a\xd6\x6d\x7a\xbd\xd6\xb9\x2e\xa3\xb8\x3e\xff\xfe\x55\xb2\x28\xfc\x5b\xd6\x7a\x6d\xa2\x06\xef\x62\xb4\xca\xac\xfe\xbe\xad\xdf\xef\xfe\xbe\x73\xbe\x34\x9e\xc5\x88\xb5\x5d\x87\xff\x5d\xb2\x78\x4b\x9e\xdf\x12\xc6\x4b\xf7\x7a\x2f\xc2\x3f\x56\x7f\x7f\xf0\x68\xbc\xe5\x62\x32\x4d\xe5\x77\x0d\x46\x57\xfe\xad\xc1\xab\xa8\x7e\x71\x7d\xa5\x77\x97\x13\x87\x4f\x83\xad\x85\xc5\xd2\x64\x6b\x5d\x8b\xd9\x5c\x5e\x87\x63\xf8\x30\xd5\x75\x78\x77\x3d\x35\x6f\x5d\x87\x65\x36\xf7\x7f\xa0\xe0\xd1\x64\xeb\x3a\x2c\x26\xcb\x6f\xe5\x70\x8b\xe9\x7d\xeb\xda\x4c\xd3\xd2\xb7\xae\xcd\xec\xc5\xbf\x7f\x7f\xff\x6a\x9b\x17\x6f\xb1\xa1\x79\x88\x95\x7b\x17\x1f\xda\x76\x71\xc5\xef\x62\x44\xf3\x57\xff\x2d\x9e\x7a\xd7\xaf\xcb\xbf\x0f\xf5\xb7\xe8\x56\x33\x0d\x7c\x5b\x43\x61\xe3\xef\xe7\xda\x7c\x89\x54\x6f\x3b\xd0\xef\xb8\xfe\x5c\xeb\xeb\xcb\xb7\x48\x5b\xf9\x3a\xfc\x8b\xb6\x95\xfe\x35\xfe\xc5\xf1\xf5\xcd\xfd\xc3\x30\x98\xf8\xf4\xb5\x7f\xdd\xfd\xf7\xb4\xf6\xc3\xe3\xef\x79\xad\x8f\xfb\xeb\xeb\xb0\x36\x5f\xee\xbe\xe6\x33\x3d\xbe\xce\x61\x6d\xae\x5f\xc4\x46\xba\xae\xf4\xf6\xc5\xcd\x0d\x9f\x97\x7e\xb2\x3f\x3a\x9c\x7d\xcd\xc7\xcc\xef\xdb\xef\x75\xd8\x7d\x39\xfa\x4b\x59\xdf\x8f\x75\xd9\x72\x73\x79\xed\x4f\xd6\x7b\xf6\x0e\xce\x9f\x2f\xdb\xc8\xbf\x7f\xb5\xba\x69\x3c\x4b\x50\x68\xd3\xe7\x6f\x09\x0a\x79\x8a\xd8\xbf\xa3\xc1\x60\x69\xbc\xa3\xff\xfe\xd5\xfd\x7c\xbe\x63\x5d\xbe\xe1\xcb\x35\xe6\x22\x2e\x9e\xdf\x12\x34\xea\xf7\xf8\x16\x31\x37\x9f\xf5\x0e\xce\xdf\x57\xfb\x2f\xea\x2e\x8d\x77\xf2\x98\x7c\x95\xd7\x79\x6b\xe2\x16\xdf\x99\x57\x7f\xbe\x5f\x73\xdd\xaf\xe9\xf3\x38\xd7\x7c\xbe\x88\xff\x5c\xfb\x93\xbd\x9f\x93\xc7\xc1\xeb\x3f\x27\xea\x54\x7f\x8f\x0e\x58\xec\xd9\x3b\xd7\x7e\x8d\xe9\xfa\x75\xbf\x86\xd7\x6b\x2e\xe2\xfc\x75\x5e\xe6\x9a\xdf\xe6\xf3\x32\x5f\xea\xd5\xde\xe2\x33\xfb\xe6\xf9\x1d\x89\xc7\xd2\xe5\xcc\x7e\xaa\xbf\x25\x78\x95\x26\xfe\xff\x5d\xac\x67\x91\x96\x36\xbd\x8b\xf7\x6c\xd5\xeb\xbd\x98\xcf\x62\xed\xd5\xbb\xb8\xcf\x6a\xa6\xe3\x3d\xa0\x0f\x3e\x5f\xc7\xbd\xf6\xc7\xf4\xe7\x78\x90\x89\x34\xbf\x63\xd1\xbf\xee\xf5\x3f\xd7\xf8\xbb\xb8\xab\xf7\xe4\xfc\x49\x93\xf7\x9e\x8c\x5f\x8a\x86\xf7\x2c\xec\xb7\xeb\x2b\x9a\x61\xd7\x37\xfa\xd3\x7c\x4e\xf6\xe7\xab\xfd\x75\x9f\x9a\x89\xfd\x89\xe2\xd5\xfb\x77\x2e\x62\xdf\x9a\x7f\x7f\xae\xfd\xff\xea\xff\x5a\x65\x31\xf6\xef\xe2\x6a\xf3\x17\xbd\xb9\xd6\x7d\x99\xa6\x07\x8b\xcd\x6d\xc3\xeb\x73\xad\xfb\x5f\xbf\xca\x6b\x3f\x2c\x07\xbe\x8b\x0d\x2e\x3d\xb5\x3f\x7a\x5c\x16\x93\x5c\x9a\x89\xc5\x05\x71\xff\x6a\x7c\xc2\x59\x68\x32\xf0\xc9\x9b\x27\x7b\xdd\x58\x06\x5c\x7e\x98\x9c\x36\xfb\x82\xd8\xf9\xb2\xdf\x21\xe0\xba\x8c\x4e\xdb\xc4\xf2\x5e\xc4\x2f\x9b\x53\xb9\xd7\x4b\x5d\x3d\xbe\xbb\xac\xc5\xfa\x1c\xa6\xbc\xa1\x91\xfa\x30\x02\x79\xdb\x51\x4a\x7c\x68\x61\xde\x96\x88\xbc\x7f\x18\xf1\xbc\x2d\xbe\x69\x48\xc1\x9e\xd1\xda\x8e\xbe\xa9\xfc\x9e\x5f\x46\x91\xbc\xbd\xd7\xef\x5f\x33\x7f\x6e\x56\xde\xd7\x4b\xb2\xeb\xeb\x04\x2b\xfe\x39\x47\x39\x65\xc4\xa8\x0f\x1d\xca\x29\x87\xe8\x33\x3f\xe5\x45\x37\xd3\xe7\xda\xe5\xb4\xc8\xca\xcc\x1a\x6a\x5a\x64\x63\x6e\xc3\xe5\x07\x95\xb1\x7a\x5b\xd7\x6e\x6e\x1f\xb2\x96\xf3\x1c\x1c\x93\x4f\xf1\x42\x75\xeb\xe2\x3a\x34\x9f\x37\x3a\xe7\x2b\x68\x92\x8a\x15\x12\xac\x22\x06\x8d\xaa\xe2\xe2\xe4\x3f\x5b\x90\xf3\x05\x73\x53\x54\x9c\x90\x23\x15\x17\x75\xfa\x5c\xb6\x9c\x97\xdc\x34\xfa\x74\xd3\xeb\xb1\xd8\x35\xac\xb0\xef\xa8\xf6\x66\x94\xae\x85\x2d\x55\xc7\x58\x12\x3c\x87\x7b\xd1\xbd\xaa\x71\xdc\x8b\x6c\x34\x17\xd7\x41\xfc\x0c\xba\x3c\xff\x5e\x02\x28\xcf\xc6\x39\xfb\x6c\x6d\x79\xd6\xb9\xe9\xb9\xb9\xcc\x3d\xe8\xfe\x7e\x4d\x5a\x4a\x8e\xf2\x6c\x13\x3d\x8d\xeb\x79\x54\x3e\x44\xaf\x3c\x48\x08\xed\xa3\x42\x2e\x0f\x5a\x9f\x7d\xd3\x78\x30\x21\xa5\xcf\xe1\x28\xcf\x92\x10\xfa\x56\xf4\x7b\xb4\x35\x52\x14\x96\x07\x75\x4d\xf9\xec\x58\x79\x96\xc4\x90\xc7\x87\x48\x94\x07\x0d\xcd\xf7\xef\x17\x91\x6c\x43\xdf\x2f\x0e\xbd\xcd\xa4\x32\x1c\xf7\xd8\x5c\x5e\xf7\x7c\xf8\xfb\x75\x58\xcb\xee\xfe\x32\x8f\x8c\xd7\x6f\x71\xd0\x6d\x4b\x9a\x0f\x1c\xb4\x74\x89\xe5\x59\x1c\x73\x1e\xd3\xe5\xf5\xfb\x59\xd4\x5e\xb9\x51\x4e\x69\xbc\x25\x38\x78\xb7\x8f\xf1\x6e\xd7\xef\x17\x13\x9a\xa5\x26\x2f\x4f\x85\xe8\x0e\xcd\xbf\xce\x6f\x89\xae\x3c\x30\x95\x63\xfa\xfb\x45\x87\xda\xee\xef\x17\x1d\x1a\x4d\xe3\x59\x4c\x5c\xae\xee\x1f\xa6\x2d\x7b\x7e\x9d\x47\xc3\xfb\xb7\x98\xaa\xba\x79\x7d\x3a\xfa\xb3\x5d\xfd\x75\xfa\xdb\x34\xbf\xc5\xf4\x14\x3d\xa2\xe5\x59\x4c\x4c\x91\xee\xae\x3c\x83\xdb\xeb\xf3\xb5\x98\x92\x9a\xbc\x5e\xe3\xfa\x96\x50\xcb\xb3\x98\x94\x26\xc5\x7c\x79\x60\x4a\x24\x41\x97\x67\xae\xf3\x2d\x9d\x4e\x79\x26\x4c\xa4\xc7\xb3\xa8\x4b\xdb\x8a\xc6\xb3\x98\x92\xd6\x37\x8d\x7f\x51\x93\xb2\x55\xff\x3e\xc6\x93\xff\xe0\x11\x29\xcf\x84\xc3\xed\x6a\xec\x58\x12\x48\x9b\xba\x0c\x07\x96\x4a\x5f\xae\x63\x11\x71\xd9\x77\xca\xb3\x48\x5b\x6f\xc3\xbf\x5f\x8b\x3d\x8b\x26\xbb\x38\x88\x2e\xeb\x65\x79\x8e\x30\x66\xba\xbd\xf5\xa2\x36\x1f\xd6\x83\x47\x69\x73\xff\xcf\x12\xcf\x93\xda\x3b\xe1\x58\x7c\x99\x30\x6f\x4b\xfc\x2f\xcf\x05\x47\xee\xfe\xd6\x0b\xdd\x4a\xd1\x66\x2d\x6a\xda\xbf\x2e\xff\x22\x98\x79\x78\xbe\x8b\x26\x96\xcd\x9b\x71\x71\xd8\x3c\x3e\x1e\xcd\xd2\xb5\x19\xeb\x51\x6b\xc5\x87\xfb\xae\x2c\xbe\xfa\x5b\x74\xb1\x7f\x1d\xf6\x1b\x0e\x2b\x6b\xbd\x6e\x38\x7c\xaf\xc7\xcd\xa3\xbd\xab\xff\x9b\xc3\xed\xf1\x62\x29\x97\xc1\xa3\x3c\x4f\x46\x5d\xa0\xdf\x3f\x8b\xc3\x28\x3e\xbc\x4f\xe5\x30\x6a\x3c\xef\x5a\x9f\x91\x35\xde\x37\x41\x6c\x5c\x6e\x5c\x06\x1d\xce\xb7\x33\x7f\xf5\xbf\x9e\xd9\x56\x3e\x5a\xc0\xf2\x2e\xe2\x5c\x36\x5d\xce\x77\x11\xdb\xae\x67\xba\xfc\xa8\x63\x74\xd9\x50\xc7\x94\xad\xba\x7e\xad\xe7\xa6\xf1\xbf\xdb\x43\x7b\x59\xe5\x17\x75\xcb\x67\xfc\x2f\x5a\xf6\x4d\x87\x1f\x75\xce\xf8\x2a\xa7\xc5\x61\x4e\x11\xeb\x37\xaf\xf5\x98\xae\x5f\x6c\x43\x29\x53\xfd\xa1\x2f\xee\xd9\xf5\x07\xfb\xe7\x32\x1a\xe3\x0f\xd3\x52\x42\x9d\x51\xb2\xca\x85\x67\x50\xe7\x2f\xd4\x0d\xbb\x88\x69\xa8\x1b\xf4\xd6\x17\xd4\x0d\x5d\xfa\xea\xf2\x2e\xe2\xda\xd2\x70\xf9\xe1\x7b\xad\xe7\x22\xae\x6d\x68\xfd\xd1\x18\x34\x99\x28\x0b\x1a\x83\x26\xbb\x5e\x09\x8d\x40\xfb\x28\x5a\xcb\xbb\x88\x6d\x9d\x9e\x5f\x65\x3f\xbe\xda\x5b\xc4\x62\xf7\x7e\x21\xf1\x57\x11\x4f\x24\xea\x2e\x89\xaf\x84\x04\x3c\x74\xfe\x91\x80\xcb\x1c\x2e\x23\x51\x65\xf5\x8f\x44\xbb\x27\x97\x91\x88\x3c\xff\x45\x7c\x5b\xf1\xf9\x59\x9c\x56\x95\x3a\xab\x20\x91\xd6\xee\xf5\x1e\x21\xb1\xb9\xcc\x63\xec\xf3\x05\xb1\x2e\x7a\xec\x91\x30\x7b\xfe\xfa\xfd\xb1\xee\x7b\xd6\x78\x17\xf1\x2e\x75\x73\xfd\x8d\xba\x4c\xe3\x19\xb1\xfe\x2a\x43\xac\xb3\xee\x6b\x48\x84\xd5\xfb\xbd\x88\x71\xdf\x8a\xbf\x0f\x09\x42\xed\x2f\x09\xaf\x65\x7f\x0f\x7d\x93\xba\xac\x20\x21\xf5\xd9\xf4\x3d\x12\x4e\x6e\x5a\x0f\xe8\x5f\x29\xea\xff\x7c\x91\x38\xb5\xff\x8b\x97\xcc\x7e\x1c\x90\x40\xba\x1f\x6f\x24\x90\xda\xbd\x7e\xb0\x84\x5f\xf7\x11\x9e\x70\x7a\xbf\x2f\x1c\x75\xc4\x6c\x04\xd3\xbf\xf7\x3f\xb1\xa7\x17\x24\x80\xdc\x7c\xd8\x6e\xc4\x37\xbd\x9c\xef\x22\x86\xb5\xfa\xb0\xdc\x88\x5f\x7a\x39\xdf\x45\xfc\xaa\x5f\xb6\xf7\x8e\xc3\xa1\xf2\x83\xf8\x28\xce\xf1\x7d\xe2\xb0\xa8\xbd\x07\x83\x9d\x17\xef\x79\x21\xb6\x1a\xcf\xbb\x43\xfc\x55\xff\x2e\x62\x3a\xf5\xd8\xbd\x2f\xe2\xa5\x17\xeb\x45\xf7\xab\xc7\xe7\x7d\x0f\x58\xf3\x9f\xc5\xae\x1b\xc6\x45\x6d\x7e\xdd\xb6\x38\x8c\x43\xe5\x75\x99\xc4\x89\xd4\x6d\x8b\xc7\xc5\xe5\x45\xec\xe7\x87\xb8\xd6\x0d\x5d\xf5\xf8\x1c\xde\x8a\x88\x54\xd2\x57\x7d\x43\xdd\xa1\xfe\x17\x67\xd9\xa5\x8e\xa9\xdb\x7e\x70\xd8\x5c\x7f\xad\xc7\xe3\xb3\xfe\x75\xdb\xe1\x7c\xdc\x3f\xba\xea\xed\x43\xcc\xea\x96\x76\xc6\xeb\x32\xeb\xf3\x39\x4c\x75\x4b\xf1\x98\xaa\xbf\xd4\xd0\x05\x6b\x7c\xa9\xa3\xde\x70\xfd\xe2\x84\xeb\xd0\x78\x12\x02\xc8\x47\x48\xab\x5b\xe2\x32\x7a\xbc\x69\x8d\x57\x97\xa5\x6e\x70\xc6\x52\x57\x54\x3c\x75\xaa\xd4\x65\x75\x2b\x38\xcc\xec\xea\x6f\x11\xdf\x5c\xb2\xd6\x7f\x11\xdf\xdc\x92\xeb\x43\xd7\xab\xfe\x4a\x5c\x26\x8d\x3f\x88\xe9\xd0\xfa\x43\x3c\xbf\xfa\x83\x58\xf6\x4d\xed\xb5\xca\xe3\xa9\xfa\x1e\xeb\xa3\xf9\xf5\xe0\xdc\x34\x9e\x45\x1c\x9b\x3c\x3a\xea\xd6\x17\xf1\x28\x4d\xe3\x19\xa8\x4f\xab\xfa\x1f\x48\x1a\xbb\xf6\x6b\x70\x5e\x7c\xde\x26\xba\xfa\x5d\xeb\x85\x9c\x99\x3d\x9e\x89\xfa\x66\xe8\xfb\xc5\x7c\xf5\xe4\xfd\x87\xf9\x92\xcc\x5d\xb7\x13\xc9\xa1\xaa\xfe\x8c\xc7\xce\xf5\x6b\x7d\x76\xf7\x87\xba\x25\x67\x7f\x1f\xe7\x4b\xfd\xa3\xee\xd8\x92\xcb\xeb\xbc\xca\x1b\xb1\x6e\x8b\xf8\xd4\xe2\xf5\x47\x03\x91\xb3\xbe\xbf\xb9\xaf\x3e\x5f\x30\x5b\x9b\xc7\xbb\x98\xad\xb1\x65\x97\x0f\x38\x77\x8d\x07\xaf\xc3\xe4\xfd\x84\x39\xda\x8b\xf6\xe7\xe9\x48\x2a\x9a\xcf\x73\xaf\xf3\xef\xf5\x7a\x51\x4f\x66\xf5\xbf\x98\xa1\xba\x25\xfd\xfe\x0d\xfa\xf4\xa9\xdf\x91\x64\xf3\x87\xb9\xac\x3b\x92\xec\xd4\x7e\xec\x1b\xa2\xbd\xf6\x73\xdf\x60\xbe\x3e\x8f\x41\xc5\x1f\x2c\xeb\x31\x5f\x3b\xcf\xe3\xb3\xab\x1c\xeb\xa3\xef\xd7\x7d\x2d\xb2\xba\xd7\x9d\xfb\x25\x0f\xa2\x1a\x0e\x8d\x55\xf7\x79\xcf\x9d\xc7\x44\xed\x2d\xe6\xa7\xc8\x6d\xa4\xee\x30\x3f\x33\x69\xfc\xd8\x66\xb6\xa1\xf9\x95\x50\x17\xbb\x9c\x91\x6c\xaa\xca\xd0\xfb\xae\xf9\x15\x1e\xb3\xcd\xed\xe1\xac\x38\xd4\xdf\xba\xaf\x63\xdb\xff\x44\x72\xa9\x7b\xc1\xd2\xaf\xc5\xc7\x89\x32\xcb\x50\x54\x71\x9b\x2c\xdb\xee\xce\xd6\x61\x2f\x22\x1e\x7b\x41\xd7\x9f\x3d\xd8\x25\xd6\x16\x6f\xde\x8f\xed\x45\x8b\xbf\x2e\x7b\xc9\x9f\xc7\xa7\xee\x2d\xc1\xc9\xea\x7b\x6c\x13\xc5\xdf\xb7\x8e\x98\xad\xf6\xdb\xe0\xf2\x68\x3c\xd8\x2a\x4a\xf2\xef\x21\xd6\x3e\x0c\xed\xdf\x19\x2e\xeb\xde\xd0\x3d\x0e\xb7\x7f\x43\x2c\x35\x9f\x86\x2e\xdc\xe5\xbe\xf3\xbd\xc6\xdb\xb9\x2c\x3e\x1c\x70\x66\x9b\x0f\x5b\x0f\x49\xc8\xdf\xc7\x78\xd5\x5f\x47\x52\xab\xfa\x7e\x60\x28\x14\xb1\xda\xd1\xf5\x4f\x1f\x9e\xc5\x69\xf5\xdd\x87\x67\xa0\xe5\xe9\xda\x9f\x25\xe6\x96\xee\xdf\x2f\xb1\xb6\x88\xd3\xab\xb8\x1d\x36\x79\x4c\xd7\xfd\x80\x18\x8a\x38\xec\xe8\xb2\xbb\xf7\xe3\xc0\x50\xe7\xfe\x0f\xf6\x4b\xc4\x68\x47\x37\x3c\x3c\xdf\x93\xc3\x9f\x5c\x5e\xeb\xf9\xb5\x7f\x48\x8a\xf2\xc9\xae\x3b\x9a\xb6\xb9\xe9\xfb\x8b\xfd\xfb\xaa\x3f\x39\xcc\xae\x5f\xfd\x4b\xbd\x56\xf1\x54\x2c\x26\x66\xfb\x1d\xf5\x9a\xdf\x1d\x9c\xa1\xda\x5b\xc4\x6a\x6c\x5e\x0f\x98\x1b\xe9\xfa\xeb\x8e\x57\xf4\xd7\x78\x60\x66\xa4\x6e\xad\xfb\x0b\x31\xdc\x5d\xbf\x1e\x17\xf9\x86\xd4\x7d\x11\xb3\xb6\xfb\xf2\x2f\x66\xa6\xfb\xb1\xd8\xdf\x1b\x1f\xe5\x4f\x3d\xee\x85\x36\x9c\x57\x1c\x0a\x5b\xd1\x63\x80\x47\x61\x95\x0b\x61\xc5\xa3\xb0\x99\x98\xe2\x52\xd8\xb6\xec\xf6\x0e\x38\xf9\xae\xf2\x03\xb3\xa3\x32\x6a\xb7\xfe\x71\x19\xaf\x69\x67\xbf\x3e\x7e\x82\x15\x3f\xc1\x2e\xdf\xfc\x9a\x60\x46\x24\xd9\xd5\x84\x43\xd2\xe6\xf6\xd2\x84\xb9\xf4\xf7\xa8\x01\x37\x97\x1f\x24\x03\xcd\x27\xc7\x7c\x35\xde\x0c\xb1\xd2\x7d\xc7\x01\xb0\x4a\x32\xae\x29\x0c\xe1\x5e\x9f\x0c\xb3\xe7\xf9\x65\x24\x2f\xaf\xc7\x62\x5e\xb2\x1f\x7b\x3c\x06\xbb\xdc\xad\x97\x0c\x04\xe7\xaf\xf6\x4a\x8c\x57\xfd\xfd\xd0\x37\xb5\x5f\x38\xef\xd3\xe5\x9b\xfb\xab\xf5\xaa\x71\x9e\xd5\x7e\x65\xbf\x76\xad\x6f\x85\x19\xd5\x79\x4b\x75\x9d\xd7\xa1\xc7\x12\x1f\xc2\x5a\x74\xbe\xd2\xa2\x5f\xad\x0c\x8d\xaf\x85\x64\xa7\xf5\x69\xc1\x6c\x6b\xbe\xd8\x46\xbf\xea\x17\x3d\xea\xdb\x74\xfd\x0d\xb3\xad\xf1\x2f\x49\xb0\xcb\x1b\xba\xa6\x25\xf9\xf5\xe9\xf9\x8c\xce\xfc\x5d\x86\x39\x4f\x5a\x9f\xb1\xf6\xfb\xab\xbd\x81\xed\x7a\x1f\x7f\xf2\xb8\x24\xc4\xbc\xee\xc5\x0f\xc3\xa1\x88\x4f\x5a\x62\x9d\xbd\x46\x6a\x9a\x78\x51\xe8\x65\x4c\x10\x2b\x89\x69\x15\x8f\xc8\x22\xb5\x51\xc5\x23\xb2\x6c\x22\x3e\xe9\x98\x10\x0f\x4d\x16\x62\x26\x67\xab\x9a\x8e\x13\xce\x55\xdf\x13\x99\xd1\x75\x59\x13\x86\xa8\xe6\xc3\x74\xc1\xa9\x8b\x38\xa5\x2b\xc4\x48\x2d\xce\x15\xc4\x55\x8b\x03\x31\xeb\xbe\x2c\x17\x8b\xd5\xb4\xf9\x77\x82\x58\xa9\xff\xc5\x79\x15\x73\x1e\x09\xf5\xbf\x7c\xda\x2a\x91\x04\xb9\xee\xea\xff\x9e\x78\x61\x88\x38\xdc\xeb\x71\x9b\x5e\x0f\x24\xbd\xe6\xf9\x2f\xe2\x57\xaa\x38\x9d\x74\x63\x38\xf4\x78\x9e\x84\x8e\x5d\xf3\x7f\xc2\x1a\xa1\xf6\x9e\x58\x5f\xb5\xf7\x72\x78\x7c\x58\x97\x64\x57\x8a\x38\xe7\xf4\xc6\xe5\x55\x7f\x8b\x18\xb6\xaf\xf1\xbf\x5c\x36\x11\xdf\xf4\x42\x2c\xa6\xcb\x38\x76\xe8\x70\xe6\x0d\xc9\x51\xc4\x31\x2f\xe2\x37\xa4\xa6\xa8\x79\xe3\xb0\x8b\x19\xc8\x1b\x92\x87\x1e\xdb\x1c\x6a\x2e\x3d\x7e\xf9\xc7\xc6\x90\x55\x6e\x38\x7e\xb8\x8c\xa3\x87\x88\x75\xc6\xc6\xd0\xb4\x3e\x39\x6d\xa8\x1d\xd5\x5e\x82\x93\x16\xf1\xcf\x4b\xb2\xcb\x72\x93\xad\x19\xe2\x28\x07\xf0\x9a\x13\x6a\x09\x49\xb2\x19\xe2\xe6\xf3\x90\xf3\x9a\xff\x2e\x66\x23\x2f\x4e\x31\xcb\xb1\xa1\xe6\xb2\x7f\x7b\x51\xd5\x0c\xb1\x93\x0b\x70\xcd\x05\x35\x6a\xf7\xef\x83\x13\xd7\x78\xf1\xd2\x91\x21\xbc\x66\x22\x66\xa6\x88\x47\xc6\x4b\x67\x6e\xfe\xfe\xc6\x26\xa4\xf9\xd5\x9d\xf9\x68\xfd\x09\xa2\x19\x3a\xbf\x99\x28\x1a\x4b\xca\x19\x62\xe9\xfb\x9f\x2b\xcc\x9c\xf7\x73\x49\x82\x65\x88\x19\xcb\x8b\x39\xb4\x57\x58\xcd\xf5\xe1\xf1\x51\xff\x0d\xe3\x99\x24\xff\xdc\xc2\x46\xe2\x32\xcc\x6c\x55\x7f\x8d\xf3\xe4\xf5\xeb\xd8\xc4\x7c\x5e\x3a\x36\x03\xf7\xbf\x24\xcd\x5c\x9a\xeb\xb9\x9f\xd3\xbf\xef\x9c\x6f\xf5\xd7\xc3\xc6\xe4\xef\x5f\xee\xbb\xda\x1b\x4b\x32\x19\x3e\x4f\x73\x49\xd6\x66\xae\xb1\x60\x96\xe6\xf3\x3c\x0f\x34\x0f\xda\xbf\x45\x0f\x9b\x2c\xa6\x35\xe3\xa8\x60\x66\x2c\x1f\x38\x8a\xe8\xfe\xe7\x23\x1c\x79\xf4\xfb\x25\x89\x56\xa9\x15\x6b\xc6\x10\x5f\x7d\x1e\x50\x6b\x6d\xbe\x0f\x18\x3a\xe5\x85\x57\xb1\x74\xf6\xad\x68\x7f\x43\xad\xef\xf5\x86\x59\x53\xa8\x53\xcd\x30\x67\x53\xcc\x5a\xbe\x0b\x8e\x02\x1a\x4f\xa8\xf1\x25\x4c\xe4\xd0\x5c\x79\xbe\x8b\x9e\x95\xb9\xfd\xd1\xe3\x92\x17\x27\xd7\x36\x2f\xc6\x22\x66\x3d\x79\xb1\x17\x31\xb3\x0b\x61\xcd\x8b\x98\xe5\x2e\xe2\x9a\x1f\x16\xcf\x83\x7f\x96\xe4\xd3\x7d\x79\x1f\x74\x78\xe2\xf4\xf3\x73\xe2\xa5\xa0\xc5\x78\x2e\x5c\x04\xfd\x3d\xc4\xe8\xab\xfc\xf2\x78\xa9\x7f\x38\xcd\xe2\xf1\xbe\xa8\x85\xbc\x18\x2f\x3e\xf5\x3e\xbc\x2f\x62\xa0\x1e\xa7\x8c\xda\xcc\xf3\x2b\x8b\x73\x1c\x56\x03\x94\x2d\x0e\x6f\x57\x39\x22\xfa\x5c\x8f\x81\x53\x9b\x51\xb0\x29\x34\x49\x7e\x65\x0b\x4e\xbf\xaa\x8c\x64\x27\xe2\x52\x16\x67\xd9\xad\x96\x2a\x8b\xd8\x16\x19\x7c\x6b\xd9\x99\x9f\xc6\x5f\x82\xf3\xd4\xe3\x53\x76\xd6\x4f\xc4\xa7\xec\x10\x17\xa9\x95\xca\x12\xc3\x5b\x1e\xfa\x3e\x11\xaf\x28\xe2\x52\x52\x70\x5a\x1a\x1f\x2e\x9a\xbb\xdb\x4b\x18\xa0\x75\x38\x4b\xce\x10\x3b\x7d\x9f\x79\x3c\xb4\xbf\x05\xe2\x9b\xc5\xf9\x95\xc5\x49\x96\xe1\xf1\x2c\xb1\xbd\x9b\x13\x2d\xf9\xa1\x3d\x8d\x07\x97\x4a\xd9\xcc\x6a\x81\xb8\xca\x6b\xaa\x96\x45\x4c\xb3\x22\x2a\x2a\xc1\x7a\xbd\x48\x6d\x55\x90\x64\x87\xf7\xab\x85\x5a\x4c\xeb\x19\x92\xa7\xce\x4b\xe9\x8b\x19\x31\x31\x29\x8b\x38\x65\x3f\xbe\xa5\xe3\x75\xe8\xf1\x2f\x49\xb3\xcb\xe0\x5d\x4b\x67\x3f\xbd\x3f\x78\xad\x49\xe7\x5e\xcb\x20\x5c\x54\x8f\x6f\x19\xfc\xbe\xb9\xfe\xe1\xbe\x68\xbe\x13\xaf\x4b\xef\xff\x81\x9a\xce\xfb\x77\xe0\x52\xac\xc7\xa2\x1c\x61\x10\x57\x7b\xd8\x2c\x87\xd7\xf7\x24\x04\x53\xc4\xb8\x9c\x9c\x5f\xef\xef\x89\xcd\x50\x8f\x7b\xc1\x46\xe9\xc7\xb7\x5c\xc4\xa8\x8a\x58\x17\x24\xcf\xe1\xdf\x5f\x71\x1f\xd4\x3f\x3a\xfb\xaa\xc7\xad\x40\x4f\xe4\xcd\x52\xcb\x13\xeb\xab\xdf\x3f\xb8\x08\x7b\xbe\xeb\xbe\xe7\xee\xfd\x7b\xb8\x1f\xee\x6f\xdd\xe7\x2e\xd7\xfe\x5a\x90\x0c\x15\x54\x51\xeb\xba\xaf\x5d\xe1\x3c\xb5\x22\xf9\xc9\xa0\x5d\x2b\x92\x9f\x99\x2d\xe2\x66\x8a\xd5\x58\x44\xca\x14\x39\x98\x57\xa2\x50\x4a\x13\xb1\x27\x1c\xa4\x65\x49\x26\x35\x87\x1a\xba\xaa\xbc\x98\xa1\x21\x4e\xbf\xe2\x52\x9c\xa5\xa6\xab\xa8\x9d\xac\x76\xab\xa5\xa1\x26\xd3\xef\xc3\x0b\xd7\xfd\xaf\xc7\x3f\xcb\xe6\x5c\xeb\x92\x8c\x4a\xf2\x78\x6b\xd8\xc8\x3f\xeb\x51\x1b\xfb\xad\xfb\x54\x3b\x6a\x60\x31\xd7\x15\xb5\x6d\xd5\xe3\x56\x79\x4c\x8b\xc7\xcb\x79\x35\x73\x5f\x91\x64\x72\x57\x7b\x03\xe6\xa6\xfb\x7b\xbc\x58\xeb\x9f\xc4\xa9\xd4\x8a\x01\x4a\xe1\x51\xb5\xce\xe0\x94\x34\x79\x5e\xea\xa1\x97\xb3\xce\x0b\xe2\xa2\xc9\xce\x1b\xef\x0a\x75\x7e\x74\x7e\xaf\xf6\x90\x54\xb2\xc4\xba\x7a\x84\x37\x8d\x16\x6f\x5d\x96\x22\x97\xd5\x5a\x7f\x2e\x8b\xdb\x7b\x30\x90\x6a\x3c\x48\x26\xe6\x4c\x08\xfd\xa8\x59\x92\x4c\xc5\xc0\x3e\x75\x39\xeb\x8d\xcd\x40\x9c\x45\x45\x8d\xb2\x35\x97\xc3\x86\xa1\xdf\xaf\xc7\xb4\xca\x9f\xbe\xd6\x27\x74\xf2\xda\xcc\x97\x18\x2f\x6f\xc6\xe2\xec\x9b\x1c\x1c\x2a\x11\x1e\x5d\x2e\xa4\xb5\xa1\x93\x95\x43\x41\x6d\x3b\x5e\x6d\x9b\xcb\xa1\x03\xff\xac\x27\x61\x1b\xd5\xeb\xd9\x22\xa8\x5c\x9c\x4c\xcb\x8c\x47\x9c\x4f\xcb\x0d\xce\x5d\xed\xc1\x99\x76\x49\x36\x04\x67\x94\x4d\x97\xb7\x35\xfc\xd1\x35\x9f\xd6\x89\x5f\xd0\xe1\x6c\x1c\xb6\xe9\xf2\xe2\xbc\xaa\x5c\xd2\x6b\x3b\x30\x70\xeb\x31\x6e\x07\x92\xa5\x24\xb5\x76\x86\xfb\x99\xfa\x3b\x31\x10\xeb\x71\x6c\x70\x56\x56\xfb\x34\x02\x72\x37\x5d\xae\x76\xe3\x3d\x25\x62\xdf\x6e\x02\xd2\x44\x3c\xdb\x8d\xb7\x8a\xc7\x77\x43\x8c\xc4\xec\xb4\x27\x38\x5f\xcd\x6f\x31\x23\x59\x2e\xf1\xb5\xbd\xa8\xe1\xa4\xf6\x6c\x6f\x3c\x5e\x9f\xf9\x74\xbc\xc5\x14\xb8\x55\x7b\xe8\xdc\xf5\xb8\xf4\x2d\x24\x3f\x7f\xcf\x63\x2f\x62\xdd\xb7\x30\xd0\x7f\xfa\xef\xe8\xe0\xe5\x62\x57\xfb\x1e\x3a\x6f\xd7\x43\x3c\x74\x9e\xfb\x3e\x38\xef\x4d\xe5\x7f\x17\x0f\x52\x7b\xc2\x5b\xcd\xdf\x27\xe2\x47\x74\x3f\x7a\x26\x1e\xa2\xb8\x8c\x24\xaa\xf3\xd9\x23\x5e\x42\x92\x41\x07\x5a\xc0\xeb\xd1\x4b\xa8\x49\x34\xff\x90\x94\xf4\x38\x74\x24\x25\xb9\x90\xd7\x5e\x1e\x24\x77\xfd\xfe\xc7\xe1\x40\xfd\x57\xd4\x8c\xba\x8f\xbd\xc1\x1c\x68\x3f\x7a\x83\x59\x95\x4d\xa6\xe3\xa2\x5f\xdc\x7f\x8b\x90\x03\xad\x5f\x7b\x70\x60\xd1\xfc\x97\xa4\x93\x9b\xe7\xd7\x83\xd9\x55\x7b\x3d\x6c\x82\xda\x1f\x5c\xd4\xfd\x18\xf6\x31\x68\xcf\x65\x1c\x8e\x3c\xbe\x19\x8f\xb5\xda\x3f\xb0\xd1\x78\xff\x8f\x44\x7f\x5a\x4f\x5c\xa8\x15\x58\x5f\xfb\x15\x92\x90\xc6\xfb\xa3\x49\x51\x7b\x48\x22\x5f\xe3\xbd\x08\x39\xd8\x5c\xff\x10\xdc\xa8\xf1\x60\xd3\xb6\x5a\xab\x3f\xc1\x9c\x68\x7e\x30\xdf\x66\x1e\xfb\x8b\x01\x5f\xcc\x6f\x7f\x17\x7d\xb6\x30\xd1\xb9\x0f\x7e\x3c\xfa\x8b\xe4\x23\xfa\xd6\x5f\xe8\xa5\xee\xdf\xd8\x90\xd4\xeb\xfc\x93\xc7\x65\x6c\x18\xa0\x8b\x7f\x8c\xc1\x53\xc4\x6e\x04\xb1\xd4\xe5\x18\x5c\xae\xfa\x55\xcf\xe3\xa1\xc3\x34\x70\xc5\xec\x52\x53\x8c\x7d\x5d\xfe\x5d\x9c\xd4\x48\xe8\xbc\xdd\x5e\x2a\xbc\xb4\x49\xe5\x0e\x31\xf3\xf7\x07\x87\xd7\xf5\xb8\xb0\x6a\xb3\x06\x91\xa5\x53\x87\x7d\x64\xda\xd7\xe6\x8e\x45\x8c\xdb\xd7\x78\x17\xa7\x51\x92\x0e\xc7\xc8\x10\x17\x89\x89\x03\x4e\x79\xb8\x7f\x5c\x27\x37\x11\x97\xb1\x38\x8d\x5c\xc5\xb9\x0d\xd4\x10\xd5\xf5\xa8\x19\x6c\x83\x18\xa8\x19\x52\x77\x99\xc3\x2c\x4e\x71\x10\xaf\xe3\xcb\x32\xe0\x4c\xb2\xd7\x83\xf8\x1a\x79\x07\xd7\xd1\xc2\x80\xab\xf1\xad\xcb\xd9\xfd\x98\x8e\x88\x3f\x11\xe7\x34\x3a\x62\xb3\xd4\x3e\x03\xce\xc6\x36\x80\xd1\x71\x55\xd5\xe5\x1d\x23\x1c\x3c\x5c\xae\xc4\xef\x68\xbd\x06\x36\x06\x71\x42\x63\x22\x09\xe8\x31\x1c\x33\x0c\xd0\x3a\x0f\x73\x3d\xbe\x33\xbb\x9e\x78\x0e\x1d\xf6\x11\xf1\x08\x92\xac\xc6\x62\x46\x4a\xd6\xe3\x38\x8e\xe0\x04\xd5\xff\xe2\xcc\xab\x6d\x70\xe3\x0c\xe6\x41\xfb\x7f\xe2\x97\x9c\x5d\x7e\xb0\x49\xa8\x7c\x71\x3e\x92\xd6\x07\xe7\xeb\x4d\xcc\xd0\xc0\x05\x5f\xae\x9d\x75\x5c\x3c\x5e\x5e\x4f\x1e\x3f\x05\x3f\xd6\x71\x43\x3c\xbc\x7e\x37\xf1\x5b\xe2\xa4\xc7\x3d\x70\x99\xd7\xfc\xee\xb0\x69\xba\x3d\xd4\x8e\x1e\x3f\x6a\x51\xab\xf5\xc6\x83\xda\x46\x9c\xf7\x78\xce\xef\x60\xc3\x3a\x1e\x5c\x53\x7d\xf9\x97\xa4\xdf\x14\x1f\x5d\x07\x36\x21\xeb\xf8\x07\x9c\xbf\x82\xf7\xea\xc0\xe0\x6d\x4e\x75\x04\xf3\xa4\xc7\x6b\x6e\xe1\x0a\xfc\x69\x6f\xee\xa8\x61\x45\x8c\x26\x6a\x4c\x05\x3b\xd6\xb9\xe3\x00\x21\xce\x7c\x86\xda\x52\xeb\x35\x77\x98\x8b\xe9\xf2\x85\x0d\x4f\xdf\x27\x6c\x88\x5a\xff\x99\xfa\x77\xf0\x64\x9d\x09\x07\x03\x9d\xdf\xb9\xe8\x43\x2f\xd9\xf5\x78\xbf\x89\x1e\xcc\x70\x30\x29\xae\x7f\xf0\x96\xfc\xcc\x77\x42\x2f\x14\x32\x51\x67\x26\x98\x50\x92\xd5\x44\x12\xb1\x24\x30\x4b\x30\x4f\xfa\x3e\x1e\x63\xaf\x57\x81\x39\x10\x33\x36\x0b\xae\xe1\x62\xfe\x26\x8f\xf1\x9c\xae\x0f\x6f\x34\xad\xef\x7a\x9c\xbb\xd0\x51\xea\xe4\x71\xf6\x63\x33\x6b\x30\x83\xfa\x3d\x0e\x2d\xd6\x14\xcd\x45\x6f\xba\xd5\x86\x13\xfa\x62\x49\x6c\x86\xda\x52\xf4\x66\xb6\xd0\xf4\xe8\xfb\xd6\xb9\x4f\xfe\x9e\xf5\xf5\x7a\x2e\xe6\xb4\xe5\xb6\xfd\xc9\xe3\x32\x1b\x9c\xa5\x1e\x97\xd9\x40\x23\xd0\xe1\x9b\x04\xe3\x29\xd8\xba\xce\x9e\xbf\x23\x63\xeb\x24\xb8\x4e\xa8\x36\x75\xf6\xc1\x65\x76\xfd\xcd\x61\xd6\xe1\x81\x73\x98\xba\x3c\x73\x40\x2c\x86\xcb\x04\xeb\xf9\x70\x8d\x88\x2c\xd6\xe6\x42\xcc\x36\x11\xbb\x39\x39\xcc\x92\x0c\xe6\x64\xb3\x75\xb9\xe6\xc4\x06\x22\xe2\x3f\x71\x9d\xce\xde\x3c\x88\x9b\xd5\x0c\x13\xef\x1c\xab\xc5\xe6\x89\x8d\x46\x92\xc8\x5c\xc4\xab\xdb\x1b\x6a\x9e\xf1\x78\x6a\xf1\x89\x23\x91\xab\x75\x9d\x11\x5c\xe4\xf6\xae\x30\xe0\x69\xbe\x57\x44\x0a\x6b\x7d\xee\x50\xb3\xb8\x1c\x6a\x1d\x8d\x0f\x62\x56\xba\xeb\x0b\x9c\xb2\xc6\x77\xd3\xbe\x0f\x3b\x92\x9b\x75\xe8\x73\x49\x6e\xd9\xc4\x77\x62\x00\xb7\xda\x66\x3e\x8d\x48\x63\x8d\xff\x41\x2d\x23\xce\x68\x3e\x07\x6a\x48\x97\x91\x64\x7d\x7e\x50\x6b\x34\xf7\x8f\x1a\x72\xfa\xf2\x86\x2b\xb3\xd4\x1a\xf3\x25\x38\x52\xcc\xc7\x81\xb7\x4e\x12\xf1\x39\x30\x78\x5b\xb2\x3d\x40\xf8\xb0\xda\xe5\x08\x4e\x5f\xc4\xe7\xd8\x61\x06\xc4\x5c\x1c\xa8\x39\xec\x7d\x77\xe0\xbd\x33\x75\x7e\x0f\x22\xc3\x05\x01\x53\x0f\x0c\xd8\x42\x54\xa8\x47\x18\xb0\x35\x9f\x23\x87\x4e\x5a\xf5\xa8\xfd\x14\x65\x54\x8f\x82\x37\x90\x88\xe5\x51\x60\xce\xba\xcb\x3c\xce\x62\x66\x0e\x2e\xff\xd0\xf9\x3b\xb8\xec\x66\xc6\x8e\x16\x6a\x4c\xf5\x17\x0e\x1c\x3a\x5f\xc7\xc4\x26\x22\x62\x71\x10\xec\xa8\xb8\xa6\x7a\x1c\xe8\xd4\x3d\x3e\x6c\x96\x76\x20\x38\xae\xe0\xe4\xb5\x7e\x17\xe7\x49\xcc\xcd\x11\x3a\x7d\x11\x97\xe3\xba\xf0\xfe\x54\x19\x35\x58\x93\x9a\xe5\x00\x45\xae\xb9\xbd\x07\x35\xb2\x98\x9f\x73\x8b\xe0\xe9\xaa\xf2\xe4\xfc\xb8\x1e\x88\x0f\x3d\xfe\xe7\x16\x9a\x0c\x95\xb1\xc1\xc9\x95\xbf\x9e\xd8\xcc\x84\xaa\x50\xcf\x25\x99\x55\x6b\x1a\x4e\xbc\x13\x87\xfb\x47\xb2\x52\x24\x7f\x3d\x51\xb3\x0a\xe7\xa6\x9e\x15\x49\x4a\xe7\xef\xac\x38\x18\x7d\xfd\x9e\xc7\x47\xf7\xed\xac\xa8\x65\x75\x3e\xcf\x8a\x0d\x2f\xf9\xf7\x3c\xfe\x5f\xed\xdd\x68\x06\x34\xfe\x8a\x8d\x55\x92\xfe\xd9\x42\x2d\xa6\xf6\x43\xb2\xf3\x7c\x71\x0d\x6f\x6e\x6f\x11\xfb\x6a\x9b\xe6\x49\x70\xb4\x90\x20\xea\x89\xcd\xaa\x7a\x3d\x71\x48\xda\x93\xeb\x03\x50\xcf\xe5\x70\x88\x52\x7f\x3d\xbc\xd1\x3e\xfb\x79\x0e\x98\xf3\xf6\x27\xc1\x92\xf5\x1c\x1d\x9b\x84\x16\x17\x6f\x81\xda\x5d\x5e\x2f\xef\xd0\x65\x38\x09\xea\x11\x70\x4e\x3d\x09\xea\x51\xb4\x62\x3d\xc7\x8b\x2b\xa2\x7e\x8f\x81\x6c\x13\xe7\x78\xce\x0a\x67\xaf\xf6\x66\xa8\x61\xb4\x58\x33\x5c\x63\xfd\x3d\x41\x62\xde\xac\xf5\x58\x34\xeb\x98\x4f\x22\x89\x6d\x93\x38\xb9\x5c\xbb\x37\x87\x48\x62\x8b\xc5\x27\x62\xac\x60\x15\xea\x79\x40\xac\xbd\x78\x5c\x46\x7b\xb3\x9c\xeb\x31\x6a\x36\x70\x9d\x18\xe4\x84\xb3\x56\x4f\xd4\x44\xf2\xbb\xaf\xe7\x01\x67\x22\x4e\xf1\x3c\x79\x2c\xba\xcb\x88\xd9\x52\x43\x9c\xa1\x46\x12\x31\x3c\x4f\x20\x8e\x36\x7f\x0f\xb1\xf7\xe1\x21\x52\xb7\x17\x7f\x0f\xb1\xf2\x7c\xce\x97\xc3\xa5\xc3\x74\x85\x98\xac\xdf\x2f\x62\xd2\x9a\x0f\xdb\x15\x62\xbc\xfa\xbb\x82\x33\xd5\xfe\xc1\xd9\xdb\x06\x74\xf2\x58\x5a\x4d\x7a\x12\x27\x64\x03\xe1\xb9\x88\x4f\xdd\xdd\xfe\x7a\x2c\xcb\xd7\xfe\x10\x0c\xdb\x7c\x59\xee\xb0\x89\xb9\x1c\x62\xbc\xbf\x47\x92\x90\xda\xe3\xc4\x01\xc2\x3a\xff\x33\xd4\x9a\x3e\x5f\x0f\x06\x7c\xaf\x1f\x36\xc4\xec\xdf\x3f\x04\x8d\x89\xf8\x9e\x3f\xae\xae\x5a\x9f\x45\x1c\xab\x0d\xdc\xe7\x13\xfd\x6b\x7e\xd8\x0c\xac\x86\x38\x17\xf1\xac\x96\xbc\xcf\x1f\xc9\xc2\xfd\x41\x1c\x3d\x9f\x07\x07\x0e\xdf\x1f\x24\x0d\xab\x55\x4e\x5c\xeb\xcd\xa9\x9f\x2f\x41\x7a\x1e\xef\xfb\xef\x60\x4d\xea\x89\xab\xbd\xd5\x6e\x17\xb0\x5e\xb6\x09\x5c\xa8\xf5\xac\xa6\xb9\xb0\x41\x08\xbc\xaa\x5e\x78\x9f\xd9\x26\x73\xa1\x89\x48\xd3\xf5\xd8\xb0\xb2\xeb\xb1\x49\x35\x97\x51\x93\x89\x38\x5f\xd8\x34\x84\xa4\x59\xaf\xed\xfd\x86\x5d\xa9\x57\xc0\x7f\x69\xbf\x2f\x1e\x0b\xab\x89\x2e\x24\x9d\xac\xc7\xfe\x42\xb3\x21\x14\xd7\x7a\xa5\x60\x06\xf5\x7b\x6c\x20\x0a\x62\xad\x17\x71\x4b\x66\x4e\xaf\x8c\x66\x45\xeb\x77\x65\xbc\x2f\xc5\xdc\x5e\x78\x9b\xf5\xaf\x32\xcc\xc8\x70\x19\xef\x3b\xaf\xcf\x8f\x43\x87\xfa\x0b\x87\x0e\xa9\xa9\x2e\x82\x46\x85\x44\x52\xaf\xc5\x5c\x64\x33\x03\x57\x09\x58\x18\x97\x61\x86\x3c\xff\x12\x71\x36\x9a\x7f\x41\xb3\x20\xef\xd3\x0b\x4d\x89\xd5\xa4\x17\x8f\x9f\x6d\x2e\x17\x71\x4b\x36\xf0\x5f\x2d\xbc\xf5\x34\x1f\xbc\x73\x6b\x73\x39\xd4\xfe\x5a\xcf\x06\x12\x82\x98\x89\xab\x61\x13\xcf\x2e\xbf\x20\x3d\xfc\x91\x41\xff\xea\xfb\x37\xa6\x4e\xbd\xc0\xd3\xb3\x77\xd7\x35\x03\x53\x47\xf5\x33\x5e\x42\x2d\xde\x81\x4e\xd5\x87\x01\x98\x05\xc1\xc4\xd4\xeb\xe0\x31\xf2\xef\x8f\xe0\x9c\xb5\x38\x27\x98\x46\x7a\xc9\x2f\xd4\x1e\x5d\x62\xe4\x75\x86\x9a\x41\x8b\x81\xeb\xab\x1f\x97\x0b\x62\x2b\x4c\x9e\x7a\x01\x83\xa0\x08\xe6\x7a\x2d\xc9\xa2\xd9\x9b\xe8\xc2\x80\x59\xbd\xd8\x37\x06\x69\x8f\x1f\x1d\x66\x16\xf1\xbe\x1e\x88\xb9\x0f\xd3\x1b\x71\x40\x1a\xef\x1b\x3a\x73\xad\x07\x9c\xb9\x89\xed\x85\x2b\xaa\x89\xcf\xbd\xe1\x1d\x24\x49\xec\xe6\x72\xda\xc0\x76\x47\x10\xa1\xc6\x77\xef\x48\x2e\x5f\xe5\x82\xda\x29\xab\x8c\x6b\x70\x71\x99\xa0\x47\x8d\xff\xde\x71\x25\x14\xe7\x7a\xa7\xe8\x5f\xe3\x09\x83\xbe\xf6\xe7\xc6\x35\x53\x41\x7a\xf5\x2e\xec\x97\x0c\x9a\xf7\xe2\xfc\x4a\xd6\xe1\xbf\x1b\x6a\x0f\x3d\x9e\x37\x92\xb0\x2f\xef\xdd\xc2\xa6\xa5\xf2\x88\xc7\x68\xa8\x7c\xb2\x7e\x2a\x4f\x5c\x8d\xc5\xd9\xde\xe1\x3a\xed\xf6\x81\x09\x11\x8c\x47\xbd\xb1\xe1\x59\xed\x76\x9f\x78\x5b\xe9\x71\xb9\x7f\xce\x83\xcb\x17\x6a\x20\xb5\x7f\x02\x5b\x22\x62\x7c\x5f\x11\xa7\xa3\xf6\xc3\x7b\xd0\xfd\xdf\xac\x77\x72\xf9\x46\x4d\xa3\xf5\x24\x4e\xc3\x36\xc3\x1b\xd7\xe7\xe6\xfd\x78\x02\x8b\x4f\xeb\x81\xc1\xdb\xae\xef\xf7\x03\x0c\x52\x75\x3d\xae\xed\x7a\xec\xef\x27\xe2\x90\xb4\x5e\x0f\xfb\xe5\xfd\x41\x72\xdc\xbc\x3e\xef\xfe\x8d\x89\x55\x6f\x82\x66\xad\xe6\xb8\x5f\x6c\x8c\x22\xbe\x37\xe7\xdb\xcc\xd2\x8d\x8e\xbe\xb9\xff\x50\x9b\x7d\xb5\xff\x7c\x63\x6c\xd5\x87\x38\x32\x41\x61\xd4\xe7\xc7\x86\xb5\xab\xcc\x63\xb9\xbb\x3e\x24\xdf\xcf\xfa\x05\x62\x81\xe3\xce\x9e\x78\x7c\x24\x29\x80\x40\xd0\xb7\xdd\x65\xbc\x97\xc4\xc9\x3f\x3b\x41\xd8\xba\x1f\x0f\x92\xa8\x5d\x69\x1f\xd4\x66\x96\xcc\x40\x2c\xa8\x45\xf4\xef\xc1\x81\xa5\x7a\x3c\x04\xdd\x5a\x6d\x04\x82\x41\xcd\x7a\x9c\x9f\x8c\x83\x87\x98\x97\x27\xe3\x6d\xa8\xf3\xf2\x60\xe3\xb2\x4d\xf2\x41\xad\xd6\x75\x1f\x41\x30\xe8\xb6\x01\x3d\xa8\xd9\x6c\x13\x7b\x08\xfd\xb0\x4d\xe6\xa9\x10\xff\xe6\xf2\xea\xcf\xf4\xea\x69\x3b\xeb\xa1\xdf\xb7\x30\x7b\xa8\x7f\x1c\x00\xac\x76\x7d\xfa\xbf\xc3\x44\xab\x20\x10\x74\x7b\x53\x3e\xa1\x99\x6a\x2e\x77\x1e\xaf\x3f\x32\xe8\x3f\x88\x45\xf6\x4e\x78\x3a\x06\x68\xe9\x98\x9f\x7e\xc2\xa9\xbb\x3e\x88\x9f\x16\x13\x8c\x26\x07\x05\x3d\x03\x57\xd1\xe1\x7a\x0c\xf8\x9e\xdc\x20\xa8\x48\x87\x37\xe0\x06\x4c\xfc\x1e\x24\x17\x1b\xa8\x9f\x25\x99\x64\x21\x04\xd4\x67\x06\x67\xac\xfe\x8e\x78\x0c\x5c\x0e\x62\xaf\xc3\x07\xe6\x90\x6d\x28\x20\x04\x64\xbb\x22\xff\x20\x02\xe8\x72\x3e\x67\x78\x7f\xa8\x7f\xe2\x3a\xb2\x0f\xe7\x19\xc4\x5b\x9b\x01\x31\xb3\xd8\xff\xf0\x98\x59\x6d\xf2\xa0\x76\xc8\xe2\x24\x9e\xf0\xb6\x11\xa7\xf5\x44\x9c\x87\x24\x81\x40\x08\x28\x3e\x8c\x77\xb8\xba\xaa\x3d\x82\x5e\x85\x40\x5d\x41\x00\x28\x42\x64\xad\x0f\x6a\x30\xab\x11\x1e\xb0\x51\x5a\xf5\xf7\xe1\xfa\xa9\xfe\x08\x72\xdd\xc4\xe9\x3d\x70\xfa\xb6\x51\x81\x00\x90\xfd\x78\x3d\x8b\x13\x2f\x76\x50\x78\x70\x7d\xb6\x8d\x82\x08\xff\x3a\x45\xac\x88\xf0\x6f\x7d\xf7\xf7\xec\xa7\x2f\xcb\x8b\xab\xb6\x0e\xf3\x1b\x9c\xb7\x24\x2f\x00\x1a\x8b\xc7\x43\xc4\x7f\x37\x27\x15\x11\xfc\x82\x2a\xae\x44\xec\x57\x01\xf7\xd4\x77\xcf\xdf\x00\x82\x15\x00\xc6\xe6\x38\xa7\x77\x0f\xc9\xcc\xdf\x73\x7e\xbb\xdb\x03\x0e\xa5\xfa\xf7\xa8\xf5\xb4\xbf\x00\x30\xb6\xee\xf6\x13\x41\xb3\xba\xbc\x2f\x39\x00\x2c\xf9\x03\xa0\x58\x14\x11\x5f\x01\x40\xac\xde\xaf\x37\x73\x1f\xb4\xbe\x20\x06\x64\x13\x3b\x10\x03\xba\xd7\x2f\x22\xfe\x8b\x24\x43\x00\x05\xb3\xef\x23\x18\x81\xc5\x06\x76\x10\x00\x8a\x1f\x0b\x30\xfd\x8a\x22\xfc\x2b\x98\x7e\xbd\x8b\x39\x23\xc2\xbf\x4f\xed\x2f\x11\xfd\xcd\x71\x71\x60\xec\x75\x1b\xe4\xc1\xcc\xab\xd3\xeb\x83\x0e\x3f\x79\x7f\x51\xeb\xd8\x26\x12\x18\x7a\xb5\xbb\x1c\x71\x4e\x2e\x87\x03\x89\xdb\xc7\x9b\x54\xf7\x15\x84\x80\xbe\x79\xfc\xa8\x81\x36\x3d\x76\x6f\x0f\x62\xad\xf1\x77\x10\x0b\xa4\x96\x05\xd3\xae\x57\xcf\x0f\x84\x80\x5d\x8f\x43\x60\xd8\x39\xce\x2c\x30\xec\x84\x6c\x5e\xdf\x50\x13\x89\xbe\x80\x41\x57\x9b\xe8\x03\x88\x00\xdd\xcc\x4f\x20\x02\x08\x33\xb0\xbe\x23\xbc\x29\x35\x5e\xbc\x07\xb3\xd7\x23\x82\x6e\x7d\x5e\x50\x8b\x26\x31\xbb\x60\xc4\x95\xec\xf3\x87\xeb\xb4\x1d\x9e\xc0\x8c\xab\x66\x46\xc1\x7c\x6b\xf6\x4e\x03\xe3\xad\x58\x0d\xf9\x2e\x61\xa1\xda\x9b\x11\x8c\xb6\x6e\xc9\x3a\x30\xda\xb6\xfe\x47\x06\xfd\x17\xce\xaf\xf9\xf0\x1e\x21\x06\xaa\x31\x24\x07\x7b\x17\x01\xa8\x56\x92\xd4\x04\x01\xa0\x66\x9b\xcb\x4b\x02\x91\xe9\xcd\xc6\x5b\xe2\xeb\xf2\xe1\xed\xe5\xa0\xb7\xf7\x0a\x6f\x04\x4d\x36\xe0\x55\xc4\x09\xbe\xf8\x5d\x2b\xe2\xbf\x82\x18\xd0\xbe\x0e\x0b\xc4\x31\xfb\xf2\x2e\x4e\xae\x67\xb7\x47\x9c\xc7\xee\xc5\x45\x92\x18\x52\xf3\xbc\x44\xec\x0a\x90\xb0\x6d\x10\x2b\x05\x81\xb5\x88\xb8\x17\xb1\x69\x11\x71\xaf\x88\xe2\x46\x44\x7d\x29\x9f\xc7\xb0\x6d\x20\x68\xa7\xa6\x72\x0a\xd7\x69\x97\x81\xa3\xf9\x48\x2a\x6d\x03\xdd\x55\x71\x0d\x8d\x88\xf9\xaa\xa0\xb8\x46\xc4\x7c\xfb\x6e\x2f\x1c\x0e\xa6\xca\xf8\xed\x27\x8d\x97\x88\xdc\xd2\xd5\x1e\xa8\xd5\x82\x27\x69\x11\x21\xdf\x37\x8d\xbf\xb0\x5f\x9b\xfa\xab\x78\x57\x4d\xd5\xd7\x80\xff\x51\xfb\x35\x0c\xfc\xea\x1f\x78\x11\x61\x51\xb5\x2d\xb0\x9c\x3e\xc4\xb5\x6d\x10\x9f\x99\x55\xdf\x08\x1a\x9c\x9a\xff\x12\xcb\x87\x38\xd9\x46\x04\x7d\x17\x67\xd8\xb6\x16\x3a\x61\xb7\x87\x9a\xa3\x6b\x3d\x1a\x41\x84\x4d\xfb\x07\xa0\xe7\xee\xf5\x6a\xb8\xba\x4e\xcd\xbf\xc5\x63\xa4\xf2\x22\x4e\x43\x71\x1a\x2d\x22\xec\xe7\xd0\x7c\x47\xa8\xbd\x5c\x1f\xae\x9e\xae\x27\x48\x32\x6b\xfd\x26\x0e\x16\x59\xed\xa3\xf6\x95\x5a\xa8\x6d\x13\xef\xb7\xea\x72\x3c\xfe\x9a\x1f\x71\x13\x82\xd3\x69\x5b\x78\x27\x25\xad\xcf\x91\x61\xf6\xd4\x1f\xae\xcb\xc9\xed\x1d\x60\xa1\xed\xda\x1f\xd4\xb2\x8a\xdb\x68\x44\xf4\x57\x49\x02\x8d\x88\xfe\x92\xbc\x7e\x67\x78\x23\xaa\x7f\xe0\x46\x24\x89\x35\x72\x0d\x65\xa9\x39\x1b\xf9\x83\x8a\xd0\x72\x5b\x24\x10\xda\xbd\xdf\xa8\x55\xfb\xae\xf9\xe1\x30\xf1\x35\x1f\x1c\x24\x86\xf7\xfb\xc6\x06\x55\x5d\x46\xed\xbc\xe9\xf7\x37\xae\xc1\xbe\x3f\x81\x00\xe2\xfd\x0d\x04\x90\xa9\xf5\xc1\x7b\x2a\x7b\x3f\x91\xe4\xa4\x86\x6b\x1b\x92\x5b\x2e\xae\x47\x4d\xbf\xb9\x9e\xf3\xdd\xd4\x3f\x6a\xc8\xf2\xf5\x7b\xe8\x8d\xf6\x9b\x08\xff\xaa\xc7\xb2\xfd\x44\xf4\x6b\xfc\x3b\x9a\x0a\x31\x13\x6d\x27\x34\xa1\x7e\xd4\xac\x6d\xdf\x98\xdf\xd4\xef\x71\x98\xe8\x5f\xe5\x88\xe8\xd7\xf7\xe0\xf9\xcb\x66\xd7\x40\x04\xc8\x75\x57\x39\x21\xf9\x7e\x24\x8f\xb6\xe7\x08\x1a\x9e\x2a\x03\x9f\x33\x5d\x0e\xb8\xa7\xaa\x32\x68\xce\xda\x9f\x3d\xe3\x1d\xf8\x47\x36\x97\x16\x29\x91\x92\x1b\x03\x88\x4e\xf0\x13\x0d\x78\x80\x22\xe0\xb5\x46\xf8\x7f\x93\x5a\xa1\x11\xe1\xdf\xa4\x86\x6a\xe4\x45\xca\xe2\x94\x5b\x24\x46\x2a\xd9\x65\x5e\x6a\x11\x93\x48\x8d\x24\x3f\xec\xb6\x23\xf6\x29\x37\x54\xdb\x31\x80\xc9\xa0\xdf\xf6\x1a\xae\x99\xda\xcc\x16\x6a\x0b\xb5\x8f\x41\x4c\x6a\xb9\x06\xa6\x64\x2e\x6e\x2f\x92\x2d\xe9\x31\x20\xe2\x3f\x0b\x7e\xa6\x11\xd1\xdf\x7c\xd8\x89\xd8\x2f\x32\x80\xb6\x9d\x20\xaf\xe4\xf9\x76\x0e\x8f\x0f\x4b\x0f\xc9\x46\xed\xf7\xb8\x6c\x6a\x1f\x2c\x25\xd9\x10\x96\xcc\x03\x71\x50\xfb\x03\xd7\xd5\xcd\xf5\x18\x08\xa7\xd6\x6b\x84\xf7\x95\xfa\x43\x6d\x59\xbc\x7f\x13\x83\xb7\xfb\x83\xd8\x25\x1f\xde\x49\x9c\x8a\xc7\x37\xc3\xa0\xaa\xf5\x9c\xe1\x1d\xa2\xf6\x8f\xf0\x4e\xd1\xfa\x41\xbc\xe4\x4a\xde\xf6\x03\xf8\x8b\xa4\xf1\xe2\x5a\x2e\x35\x56\xdb\x03\x3b\xee\xab\x0c\xf3\xe2\xc3\x7f\xc2\xf9\x8a\xd8\x07\x02\xc0\xdc\x5d\x3e\x70\x7d\x55\xff\x67\xb8\xbe\x6a\xbe\x04\xd1\x2a\x69\x55\xdb\xb1\x01\x49\x12\x6c\x7b\x48\x8a\xde\x2f\x1c\x2a\xb2\x1e\xb7\x3d\xf0\x35\x9b\xbf\x0f\x35\x93\xda\x7f\x02\x7d\x57\x65\xe2\x2e\xe4\x30\xd2\x88\xe0\x2f\x5f\xf7\x01\x35\x92\x80\x07\x5b\x44\xf4\x77\xef\x07\xde\x5a\xdb\x70\x79\xad\xcf\xd7\x7d\x78\x83\xb8\x7c\xda\x8f\x88\x7e\x79\xff\x34\x22\xf6\x8b\x32\x10\x34\x22\xf6\x0d\xdd\xde\x88\xd8\x2f\xca\xb5\xd4\x48\xfb\x53\x15\x34\xd8\x52\xa4\x4b\xe9\x6e\x1f\x49\x5b\xf7\x23\xed\x91\xd7\xc3\x65\x88\xb5\x1e\x8f\xb4\x83\x5d\xa5\xf3\x91\x22\xc8\xb5\xb8\x1c\x36\x8d\xa1\xf2\x8b\x6b\xb3\xda\x23\xa8\xb5\x7a\x7c\x29\x32\xf0\x55\x95\xb1\x49\x69\xbf\x88\xf0\x6f\xad\x6a\xfc\xa0\xc0\x2a\x74\xa0\x91\x0f\xa8\xc8\xc6\xd5\x40\x00\x30\x74\x7d\x4b\x39\xee\xaf\xfa\xc3\x66\x22\x1b\x49\x4b\x38\x00\x54\x11\xeb\x54\x88\xf3\xd1\xe3\x47\x84\x7f\x95\xf7\x67\x23\x27\x50\x1f\x22\xce\x09\x6f\x30\x65\x2f\x6a\x44\xfc\x1b\x2a\xbf\x45\x84\xbf\x6c\xd8\x2d\x45\x10\xeb\xd0\x78\x40\x7b\xf7\x63\x92\xc2\x81\x4a\x8f\x41\xea\xa8\x35\xc5\x3c\x24\x80\x32\x77\x8f\xa7\x47\xff\x5a\x2f\x0c\xf0\x72\xf0\x68\x44\xe8\x57\xc5\x3d\xb5\x14\x88\x20\x1e\xdf\x08\xfa\xa0\xfe\x41\xf7\x6e\x5e\x1f\x24\x2f\x33\xbb\x04\xdd\xd7\xf9\x47\xb9\xba\x1a\x11\xf9\x35\xbb\xb3\x30\xb8\x8b\xf8\xa5\x19\x3a\x57\x2d\xc6\xc4\x00\xe8\xc5\x59\x9c\x57\x97\x81\xb2\x11\x61\xdf\xab\x17\xeb\x64\xb3\xbc\x38\x67\xa8\xc1\x34\x58\xbc\xb1\xe4\xfd\xd0\x48\xad\x57\x05\xe5\xdd\x12\x9c\x50\xf2\xe5\x42\xcd\xb4\x7b\xb3\xe0\x84\x86\x88\x67\xba\xf0\x1e\x12\xb1\x8d\x88\xfc\xe2\xc3\x80\xa4\x34\xbf\xca\x01\xcf\xa0\xf1\x5e\x18\xec\x44\x3c\x13\x6a\x29\x01\x07\x36\x22\xf8\x73\x15\xe7\x97\x6e\xd4\x42\xd9\x65\x80\x12\xb3\xbf\x0f\xe0\x4a\x8d\x0f\xc9\x6b\xf7\xe6\x11\xe1\x3f\x77\x7f\x8f\xc3\x82\x88\x59\x44\xf8\x9b\xb8\x92\x1f\xb0\x48\xa7\xdb\x52\x18\x8c\x45\xbc\xd2\x83\x0d\xc1\x87\x0f\x03\xb2\x52\x17\xb4\x14\x06\x64\x11\xbf\x04\xdc\x89\x1f\x5b\x22\xfc\xf3\xf4\xfa\x02\x5c\xd9\x4d\x2c\x5e\x0c\x8c\xdd\xe5\x58\xaf\x4f\xff\x39\xb0\x99\x34\xbf\x1c\x41\x6c\x1f\x35\x44\xcb\x5b\x38\x88\xa8\x1c\x79\x44\xc4\xcc\xe4\xc4\xe3\x2e\x62\x41\xc4\x7c\x9b\x7a\x2c\x72\x0e\x07\x0e\xf5\x07\x76\x99\x1c\x28\x5a\xce\x11\xb1\xde\x54\x0e\x57\x52\xd5\x13\xf1\xae\xa0\xd0\x96\x61\x76\x14\x57\xd4\x32\x41\x6d\x72\x5d\x6d\x99\xd4\x12\x4a\xf5\xd0\x32\xae\x9f\xd5\xbf\x6f\xe8\xa0\x75\xde\x23\x02\xdd\xcc\x5a\x6e\x3c\x86\x3a\xdf\x19\x1d\xf7\xd4\x63\x44\x44\x79\xdf\xbf\xea\x71\xd5\xd5\xe3\x9f\x3b\x71\x60\x3a\xff\x44\x98\x57\x05\x59\xb6\x8c\xb7\x65\x15\x31\xcd\xe1\x90\xf3\x55\x3f\x59\x5f\xcd\x67\x84\x77\xa8\xfa\x47\xcd\xe2\xfd\xce\x13\x9b\x92\xee\x33\x11\xea\x59\x6a\xce\x96\x01\x62\xfc\xaa\xff\x51\xab\xa8\xbd\x63\x47\xed\xa5\xfd\x05\xf8\x56\x6a\xb4\x46\xc4\x7a\xeb\x5e\xef\x83\xf3\x35\xfd\x7b\x1c\x16\xf4\x18\x66\xd4\x30\x8a\x63\x6a\xf9\x88\xa4\x9e\x2a\x5f\x20\x84\x0c\x8d\x1f\x6f\x37\x65\xa1\x6c\x00\x7b\x67\xa9\xf5\x1a\x68\xdc\xc5\x8f\x71\xc0\x71\x77\xaf\x2f\x08\x1c\xbe\xaf\x99\x38\xab\xe1\xf5\xbb\xc3\x4c\xa0\xf5\xfe\x91\x94\x34\x1e\x82\x42\x9b\xc7\x1b\x41\xa1\xae\x7f\xc3\x1b\x4f\xfd\xbd\x01\xa7\xa4\xfe\x5e\xe2\xde\x3e\x36\xed\x56\x82\x19\xd0\x7d\x8a\xa0\xeb\xa1\xf9\x17\xf2\xec\x08\x68\xb4\x95\x70\x05\x2f\x2e\xc3\x8c\x68\x7d\x0a\xae\xdf\xca\xe2\xd9\x4a\x02\xb8\xd6\xf5\x09\xfa\x22\x66\xa7\x24\x98\x7b\xed\x6f\xc9\xa0\xdf\x6f\x7f\x24\xb9\x10\x31\xdd\x15\x64\xd8\x0a\xae\x75\x4d\x9c\x64\x69\x1b\x9c\xb5\xea\xc1\xf2\x6a\x5f\x65\x2e\x7f\xd5\x60\x70\x65\xb3\xda\xa5\x10\xa4\xa4\x38\x95\x56\x26\x06\xbb\xa2\xc5\x8b\xc7\x4d\x9c\x4c\x99\xb8\x9e\xba\xbd\x19\xf0\x30\xbb\xca\x78\xa3\xe8\xf2\x45\x44\xb3\x74\xd8\xad\x80\x95\x65\xce\xbe\x04\x27\xad\x97\xb9\x1c\x21\x09\xb9\xfc\x70\x98\xf5\x7b\xf2\x34\x58\x2d\x51\x4e\x92\xf2\xe8\xf2\x97\x13\x03\xb4\xe7\x03\xea\xf2\x26\xce\xa5\x44\xde\x03\x71\xde\x05\x35\xa0\x5c\x65\x5b\xb9\xf0\x43\xd7\xe5\x2e\x17\x92\x9e\x1e\xd3\x12\xa9\x0a\xdc\x1f\xa9\x0a\xa4\x23\x6f\x05\x03\xb3\x5c\x7f\x5b\xe1\x31\x53\xde\x89\x56\xee\xc0\x06\x52\x7f\x37\x3a\x78\x8f\xef\x09\x07\x0a\x1d\xbe\xf0\xa6\x9a\x2e\x03\x17\xb3\xa9\x3d\x5c\x4b\xa5\xb6\x6c\x05\x03\xb3\x39\xcb\x12\x71\x16\xfe\x3e\x22\xaa\x3d\x3e\x0c\xc4\x43\x9c\x4f\x44\x58\x9b\x33\x2e\x04\xa1\x2a\x6e\xa1\x91\xd3\xb0\xf8\xb1\x8d\x08\x6c\x05\x45\xb6\xc8\x01\xa8\x38\x80\xf6\x93\xc8\x4f\xfb\x4f\xea\xbe\x22\x57\xf2\x56\x43\x8d\x28\x62\x4e\x7a\xbe\x3e\xb4\xff\xe4\xe7\x2b\x4a\x1d\xd1\x22\x22\x7b\x7a\x3c\x04\xa9\x56\x11\x17\x92\xf0\x65\xb9\x2e\x37\xb2\xf0\xb5\xac\xcb\x57\xf3\x44\x12\x56\xfb\xe1\x8d\xf4\xb1\x29\x36\x22\xb8\x8b\x1f\xdb\xfa\x93\x4c\x59\xdf\xe3\x6d\x24\x6f\xc0\x56\xe1\x94\x15\xc4\xda\x2a\xde\x44\x8a\x00\x6f\x95\xb8\x89\xd1\x5d\x0f\xf1\xd1\x79\xa9\xc4\x49\x08\x78\xb1\x11\xf1\xdd\x84\x85\xd7\x2a\x36\x16\x79\x6f\x35\x22\xc0\xbb\xf2\x16\xb5\x1a\x79\x8b\xf4\x98\xd7\xc8\x5b\x24\x35\x4f\x6d\x48\x6e\x52\x53\xd5\x16\x92\xaa\xda\x23\xb4\x41\xde\x95\xad\xf2\xb8\x5a\xcd\x52\x3b\x36\x30\x3d\x46\x95\x38\x2d\xc1\x3f\xb5\xda\x23\xaf\x93\x7f\x1f\x8f\xa7\xeb\x09\x32\x74\x3d\x90\xf6\x7e\x6c\xea\x08\x03\xb5\xda\x1f\x04\x61\x4b\x12\x8a\x88\x74\xab\x0d\xeb\x08\x1b\x8f\xe6\x17\x08\x0a\x52\xbb\xd5\x89\xc1\xdc\xeb\x19\x36\x0f\xef\x27\xa1\x0f\x66\x3e\x6a\xa0\x22\xfb\x3c\xcc\xc8\x07\xe9\xf6\x71\x78\xd1\xfd\x27\x81\x62\x35\xb3\x5c\x8f\x7f\x97\xf4\xab\x55\x42\x29\x76\xaf\xdf\x11\xeb\xa3\xf6\x40\x70\x30\xbd\x25\x28\xbd\x6f\x7a\x0c\xeb\x01\x70\xa7\xef\xc7\x89\x2b\xbe\x24\x4f\x32\x23\x16\x01\xb5\x36\x52\x23\x3a\xc9\x58\x23\x35\x62\x9d\xdb\x1f\x49\x2e\x35\xbc\x65\x36\x2d\xde\xc5\xe2\xf9\x72\x5d\x81\x4d\xa5\xc1\x5c\xe1\x87\xae\xc9\x5c\xe8\xa0\x45\xdc\xc8\x60\xd8\x86\xd4\x24\x15\x62\x68\x1d\x64\xc5\xb5\x54\x49\xb9\x5a\x7d\xb6\xef\x8c\x68\x8d\x08\xf9\xb2\xf9\xf2\x04\x64\xbc\x2f\x03\x6a\x8a\xe4\xc3\x4f\x1c\xc6\xac\xfe\x1e\xec\xb2\xe9\xf6\x51\x0b\x14\xff\x9e\x08\x6a\x49\x16\xf5\x8d\xa0\x38\x8d\x2f\x38\x0b\x71\x02\x15\xec\xad\xdd\x9b\xfb\x46\x7e\x07\xf5\xf7\x86\x8e\xfc\x73\x98\x88\xd0\xcf\x02\xea\x6c\x2d\xbc\xc3\xb4\xb9\x44\xec\x17\x8f\xb7\x61\xa0\x1e\xe2\x14\xda\x06\x2a\xb2\x88\x1d\x49\x1c\x8b\x92\xe2\x37\xb2\x38\x76\x65\xf8\x6e\x0d\x35\x86\x1f\xdf\x86\x24\xa0\xb8\x81\xd6\x22\x6d\xb7\x0e\x07\x08\x01\xb5\x48\x0d\xd0\xf6\x8a\xcd\x63\xaa\x0c\x56\x94\xd4\x08\x24\x7e\xac\x8a\x7b\x69\x0d\xec\x2e\x41\xdc\xb7\x96\x02\x45\xd5\xf5\x1d\xd7\x63\xcd\x2f\x22\xca\xf5\xd8\x36\xbc\x73\xaa\xe7\x0b\x22\x81\xf2\xa9\xb4\x86\x4e\x58\x71\x13\xad\xe5\xc8\x47\xa1\xf6\x50\x83\x0c\xf7\x8f\x1a\x64\xdf\x5c\x7f\x30\x7e\xcd\x2f\x50\x99\x25\x89\xb6\xc8\x7d\xaf\xc7\x91\x4c\x95\xb5\xbb\x3d\xe2\x50\x6c\x73\x69\x91\x7f\x64\xf8\xf7\xd8\xe4\x3c\x7e\xf2\x87\x58\x47\xdf\x2a\x11\xde\xd9\x65\xe2\x88\x24\x69\xb6\x0a\x90\xa6\xd7\xb7\xc6\xfa\x6a\xbe\x2d\x5c\xa5\x55\x8f\x0d\xca\xcc\x4d\x23\x82\x5d\x10\xfa\x8d\x6c\x99\x7d\xec\xfe\x7d\xb8\xaa\xab\xbf\x60\x06\x7d\x1e\x03\xc8\xd5\xfb\x85\x1a\xc6\xcc\x14\x19\x34\xb3\x25\xbf\xd6\x23\x23\xa4\xe6\x03\x8a\xb4\x1c\x00\x5a\x03\x35\xba\x7b\xbf\x02\xdb\xcb\xe3\x05\xb8\x55\x0e\x17\xad\xc1\x7c\x0a\xde\xa5\x35\xd4\x32\x53\xf7\xb5\xe1\x4d\x68\x7a\xd3\x80\xcc\x9f\xbe\x3f\x03\x35\xae\xc7\x8f\x9a\x78\xd3\x63\xd7\x22\x9f\x89\x1e\x83\x86\x1a\x47\x41\xb8\xad\x01\x91\x6f\xe6\xa7\x91\x34\x6d\xe8\x71\x6a\x33\x98\x17\xb7\x17\x70\x3f\x1a\x3f\xde\x8b\x26\xc6\x0d\xc9\x6c\x17\xfd\x6c\x41\xdc\x45\xff\x5a\x40\xea\x4b\x6d\xde\x40\xb1\xae\xde\x7f\x42\x13\x2c\xb9\x81\x70\xd1\xeb\xd7\xf7\xa4\xe0\x10\xfd\x6b\x60\x8f\x7d\xed\xe7\xf9\x40\x8f\xd4\x7f\x24\x68\xd2\xe3\xd0\x08\x1d\x50\x10\x7c\x6b\x68\x7a\x92\xf7\x8b\x38\x26\xc5\xa1\xb5\x16\xde\x90\xa6\x2f\xa4\x00\x51\x5c\x60\x6b\x64\x4b\xda\x6b\xfa\x93\xc7\xa5\xdd\x81\xa2\xa9\xc1\x3d\xa8\x81\x44\x8c\x1b\xf9\x6d\xbf\x2e\xeb\xbb\x7d\xa7\xbf\x6c\xed\x85\x13\x91\xce\xb6\x81\xe5\xb5\xc9\xc0\xd5\x16\xb1\xce\x56\xa3\xb4\xc8\x0f\x62\x62\x40\x90\x9d\x0d\x6e\xc0\x73\x34\xab\x69\x80\xe7\x68\x36\xd8\x35\xe0\x08\xbe\xdb\x0b\x1b\x84\xeb\x41\x01\xd5\x61\xeb\x1b\x92\x97\x36\x27\xe0\x3d\x14\xc4\xd9\x80\xf3\x70\xfa\xce\xd6\x03\x71\x20\xb9\x3e\xf2\x5d\xb8\x4c\x8a\x01\x11\xdb\x0e\xb1\xce\x9a\x4f\xdf\xc3\x01\x42\xed\x05\x0a\xad\x88\x6b\xdf\x03\xde\xc1\xbf\x0f\x49\xe5\x33\xff\x9e\x08\xba\xd4\xe5\xed\x10\x6b\x79\x47\x35\xe0\x3f\x9c\x5e\xb4\xf5\x14\x41\x74\x5d\x65\xbc\x51\x74\x59\x3b\x99\xb3\xb7\xaf\x72\x40\x94\xab\xff\x44\x04\xbc\x88\x7b\x87\x98\x9b\xf3\xed\x41\xcc\xfd\xfb\x08\x22\x74\xff\x78\x33\x59\xac\x26\x5d\x6f\xb7\xda\xa7\x97\x08\xca\x74\x39\x92\x6b\xa9\xbd\xf0\x5e\x12\x73\xd2\x4b\x64\x64\xd4\x7c\x6a\xc4\x09\xe9\xf7\x35\xe0\x61\xa6\xca\x70\xa6\x9e\x0f\x9c\xb9\x5c\x65\x5b\x0f\x14\xee\xea\x7a\xbc\x1d\x3d\x1e\x88\xbb\x39\xdb\x8e\x37\x92\x2f\x6f\xc7\xaf\xff\x6b\x3e\x01\x37\xb2\xbb\xbc\x63\x83\xd2\xf7\x81\x5d\xe6\xf3\xd7\x43\x0d\xac\xf5\x42\x0d\xe6\xc7\xba\x87\xda\x4b\xc4\xaf\xc3\x89\x9b\xf3\xed\xa0\xda\xda\xa6\xd9\xc3\x1b\x53\xf7\xa3\x07\x62\x82\x88\x19\xf0\x25\xc5\xc4\xbb\x8f\x50\xf3\x69\x3c\x70\xe2\x56\x13\x03\x6f\x52\xb2\x98\x97\x3e\x03\xf8\xd5\xf5\x38\x08\x78\x3d\xd1\x24\x74\x9f\xe7\x89\x5a\x56\x8f\x73\x27\x5f\x89\xe0\x83\x5a\x3f\x00\xba\xd5\x63\xd7\xcf\xc0\xba\x53\x7f\xa4\x08\x98\x9e\xef\x19\x6a\x62\x7f\x1f\x19\x55\x35\x7e\x88\xe7\x26\x49\xb6\xa3\xe6\xf2\xe3\xd4\x23\xae\x4a\xf4\xac\xdf\x61\xe3\xd1\xf7\x91\x74\x50\xcc\x60\x27\x28\xd9\x8f\x61\xbf\x43\xad\xa6\xf9\xe2\x7d\x99\xbd\xbe\xd0\x4b\x4b\xba\x1d\x2c\xc5\x29\x1b\x62\x47\x4d\xad\x20\xe9\xd6\x03\x1b\xd1\xe7\x6f\xd1\xcf\xb2\xfb\xbe\xbe\x71\xdf\x34\x1e\x52\x8a\xd8\x26\xf6\x03\xdf\xe2\xfb\x40\x1c\x94\x99\xdd\x8e\x5a\xcd\x0e\x19\xfd\x0d\x57\x6b\xff\x9e\x7c\x2c\x7a\x7c\xc6\x1e\x0e\x3e\x55\x65\x80\x70\xf5\xb8\x0c\x42\x1b\x6c\x13\x1a\xd0\x2f\xe5\x77\x6a\x23\x80\x60\xfb\x9f\xa4\x33\x6e\x03\xb8\x85\x39\xfd\xe3\x70\x65\x55\xe3\xa8\x09\x92\x88\xf7\xc8\xe1\xba\x5c\x54\x9e\x88\x6d\x1a\x5c\x46\x2c\xd6\xe1\x19\x39\x0c\x5a\x6a\xaf\xc4\xe5\x74\x19\xc9\x41\x8f\xc5\x28\x61\x30\x54\x7f\x64\xb6\x53\x3e\x8f\x36\x48\x11\x60\x4e\x6d\x00\xf1\xaf\x7c\x0d\x6d\x44\x1c\x86\x88\x71\xc0\xb3\x64\x5d\xae\x01\x31\x32\xb1\x04\xae\xa5\x08\x12\xbe\x8d\xc6\xe5\x90\xce\x75\xf4\x80\xbf\xd1\x7c\x41\x55\x2d\xae\x1f\x3b\x90\xf1\x6a\x0f\xd7\x44\xb9\xde\xb6\x41\x50\x69\xef\x6a\x1f\xb5\x9f\xfc\xee\xdb\xc0\xe0\x2e\x57\xed\x36\xd6\x65\xce\x4d\x87\x6b\xcc\x78\x7c\x34\x7e\xc4\x68\x45\x98\xb7\x71\x90\xbc\x47\x9c\xf4\x80\x93\xb2\x9a\x6c\xe0\x8a\x2d\x6c\xb1\x16\x70\x2b\x96\x0c\x06\xa8\xac\xc9\xe3\x3b\xc2\xb5\x56\xdf\x9f\x70\x6a\x9e\xcf\x19\x71\x37\x5a\x5f\xe2\x92\xaa\xf7\x03\x57\xee\xed\xab\x8c\xb7\x91\x0f\x6f\x04\x69\x7a\xfd\xae\x48\x61\xa0\xf9\xfc\xa0\x56\xfb\x7b\xb0\xb1\x7c\xd8\x41\xb1\xee\x5e\x9f\x9b\xfc\x3c\xd3\xe5\x8a\x43\x86\xd6\x13\x1b\x97\xbd\x87\x02\x8e\xe5\xeb\xbc\xa0\x53\xdf\xbd\x1f\xb8\x6a\x2b\xee\xa9\x0d\x24\xeb\xe4\xcb\xf8\x10\x84\xe8\xcb\xfa\x84\xf7\x94\xeb\x81\xef\x11\xa7\x3e\xde\xb0\x69\xaa\xfd\x37\x6c\x20\x9a\x0f\xae\xd9\x8a\x9b\x69\x93\xfc\x22\xca\x67\xd4\xe6\x86\xe4\xbe\xb9\x1c\x36\xb5\xaa\x72\xa8\x75\x3f\xeb\x35\xf7\xd8\x7f\x7d\x1f\x92\xa4\x1e\x9b\x09\x5c\xd2\xf0\xf7\x19\x54\x5e\x31\x5f\x93\x38\x8d\xec\xfe\x4a\xd8\x1c\x3e\xe3\x9f\xf1\x98\x8b\x5e\x04\x1c\x89\xbc\x3b\x5b\xc0\x91\x28\xd3\x62\x03\x8e\x24\x2b\x65\x42\x9b\x15\xc4\x0c\xad\x7f\xc0\x93\x28\x03\x6d\x9b\x3c\xfe\x4d\x92\x12\x70\x25\x45\x71\x4d\x6d\xb6\x00\x1e\x55\xfb\x2d\x24\x23\x8d\x1f\x87\x1c\xc1\xb3\xb4\x40\x1c\xb1\x9a\x1c\xc4\x91\x56\xa7\x7f\x8f\xc1\x5b\xf4\x61\xf6\xc8\x67\xa3\xf9\xc3\x0c\x28\x4e\xae\x81\x40\xd2\x4d\xbc\x67\x27\xd9\x96\xe7\x47\x68\x85\x99\x85\x39\x43\xf2\xd5\x78\x26\x36\x0d\xd1\x93\x40\x0c\xf1\x63\x3a\x43\xcd\x25\x66\x73\x1e\x21\x99\xe9\xf7\x27\x6a\x77\x31\x27\x81\x18\x62\x4d\xd2\x04\x81\x41\xe9\x98\xdb\x0c\xd4\x78\xb7\x4f\xf2\xc3\xa9\xf3\x3a\xaf\x40\x24\x51\x7b\x17\x0e\x48\xa2\xef\xf3\xc7\xe6\xac\xf5\xe3\xbc\x8f\xfd\x8f\x6c\x2e\xc0\x79\xe4\xea\xc5\x7a\x03\xb5\x58\x93\x79\x83\xb8\xb9\x8c\xf7\x87\x0c\x56\x07\x41\x53\x82\xcc\x6e\x07\xde\x2a\x36\xa0\x01\xd7\x51\x84\x62\xdc\x8e\x3d\xd2\x13\xbb\x9e\xb8\x16\xff\x9e\x20\x29\x1b\x24\x0f\xb0\xc9\x4c\xfc\x80\xef\x68\x36\x70\x1d\x29\x72\xf7\x17\x95\x03\xee\x41\xf5\x99\x88\x67\x5d\xde\x23\x83\x65\xa5\xcb\x71\xac\xc7\xb1\x2a\x39\x56\x3b\x88\xe0\xb5\xeb\xe1\xc1\xe3\x68\x07\x80\xa3\x14\x38\x21\x97\x89\x73\xd1\xe5\x3d\x0a\x06\x4f\x11\xdf\x03\xc8\x73\xa1\xae\xb6\x63\x5d\xce\x6a\x4e\xf0\x00\x6b\x4c\x10\xf5\xed\xe0\xf2\x65\xf7\x0f\x3c\x84\x75\xa6\x47\x8b\xc7\x52\xbf\x47\xcd\x61\x35\xe6\x81\x37\x88\x20\xb9\xdb\x31\x90\x1c\xbd\xfe\x70\xba\x26\x4e\x07\x99\xf7\x7c\xd8\x8e\x01\x67\x2f\xe2\x7c\xa0\x36\x50\x50\x6d\x3b\xc0\x0e\x9b\xe2\xd4\x0f\x10\x0f\x2c\x79\x1c\x47\x04\xa1\x69\xbe\x3c\x3e\xca\x55\xde\x8e\x33\x50\x97\x35\xbf\x2b\xfc\xf6\x55\x7f\xe1\x50\xe0\xfd\x88\x74\xd6\x7a\xdc\x0e\x92\x4b\xd9\x06\x73\xdc\x41\x4c\xf4\x7b\x5c\x49\x4d\x6c\x0e\x38\x39\x3f\x6e\x27\x71\x33\xf6\x16\x3b\xc9\x87\x32\xc5\xfc\x00\x37\xd2\x04\x5c\xd9\x4e\x5c\xd1\xb3\xce\x0b\xf0\x23\x45\xe9\xb9\xdb\x49\x82\x6c\xeb\xc4\xcf\x48\xde\xa6\xf1\x9d\x29\x50\xb7\xd5\x1e\x40\xa4\x42\xa1\x6d\x27\xc9\x9f\x94\xdc\xa9\x9d\x19\x20\x4f\x11\xc7\x13\xd7\x4f\xc5\x5d\xb5\xb3\xa0\x49\xd0\xfd\x3b\xc9\x57\xd2\xdd\x3f\x41\xaf\x8a\xdb\x69\x67\xe4\x57\x12\x71\x01\xfe\x24\x4f\x31\x77\xc0\x8f\x54\xef\xe7\x09\xb0\xa4\x0d\xc6\x27\x58\x76\xb6\xf9\x00\x4f\xb2\xe4\x6b\x95\x23\x2d\xb3\xbf\x87\x59\x90\x03\xc5\x89\x4d\x46\x08\x05\xed\x04\xb5\x5a\xc9\xae\xda\xd9\x23\xa5\x84\xe6\x47\x5c\x8a\x89\x1d\xf0\x24\xd9\x92\xc9\x09\x6a\xb5\xf2\xc3\xb4\xb3\x03\x9f\x22\x62\x7c\xe2\xe0\x60\x07\x97\x73\x04\x90\xad\xc6\x07\x30\xab\x32\x89\xb6\x40\x20\xb1\x77\xd4\x89\x77\xa6\x20\xef\x1b\x08\x22\xf5\x6b\xbe\x38\x34\x55\xef\x07\x71\x23\xc2\x66\x6c\x67\x64\xce\xd5\xf9\x3d\xc3\xc6\xe1\xfd\xc4\x15\xdc\xde\x9d\x20\x72\x94\xe4\xf3\x74\x86\x37\xae\xfa\x3b\x89\x13\x94\x0d\xe6\x24\x17\xbe\xb0\xe4\x1a\x88\x1c\x4d\x69\xbc\xdb\x09\xaa\xb5\x82\x28\xdb\x0f\xc2\x86\xdb\x0f\x07\x07\xb7\x17\xde\x91\xc9\xf5\xa8\x01\x25\x49\x9d\x48\x86\x66\x9e\x40\xd8\x28\x79\xfb\x93\x38\x97\x16\xf0\x1b\xd9\x87\x07\xf8\x8d\xdd\x83\x03\xbf\xbf\x7b\xb2\xc4\x91\x28\x5f\x49\x0b\x78\x0b\x01\x47\xb6\x1f\x38\x09\x1d\x8e\x80\x7f\x30\xf1\xbf\x22\x73\xa3\x38\xc5\x8b\xc7\xa6\x6b\xf1\x2f\x0c\xb2\x02\x12\x6c\x57\xc6\x1b\x42\xc4\xe7\x22\xb9\x90\x72\x42\x37\xe0\x1e\x9a\xf2\x8f\x34\xe0\x1a\xea\xa6\xf1\x5d\x11\x21\xab\xcb\x77\xa1\x73\xb7\xf7\xc9\x85\xa4\xa4\xa0\xaf\x16\x70\x0b\x9b\x2e\xe3\x85\xb7\x90\x50\x5a\xdb\x15\x71\x1e\xe2\x54\x2e\x0c\xa2\x4d\x8f\xc7\x55\xc3\xb5\x55\xe3\xab\xc1\x39\xb9\x4c\x8e\x70\xa9\x01\xae\x8a\x5f\xba\x38\x63\xe0\x1a\x9a\x0d\x8e\x17\xae\xd2\x4a\x9e\xd5\xae\xb8\x9c\x1e\x3f\x92\xd6\x26\xef\xaf\xab\x47\x5c\x8d\x7e\xdf\x23\x19\x9b\xda\x27\xb9\x99\x5d\xad\xaf\x8e\x43\x81\x88\xc3\x05\xa4\xbc\xd5\x68\x57\x0f\xd7\x48\xad\x67\xa4\x9d\xd5\xe5\xb8\x30\xa0\x2a\x73\x67\xbb\x06\x6a\x51\x49\x16\xd7\x92\xe4\x9a\x0d\x88\xd7\x08\xec\x29\xd7\x03\x54\xfa\xd5\x1e\xae\x99\xba\x3c\xd7\x40\xad\xa5\xcb\x1c\x88\x11\xf6\x16\xba\x02\x6b\x4b\xe7\xf5\x42\xcd\x93\xbc\x1e\x4b\x32\x2c\x36\xc0\x5f\x24\x53\x1b\x9e\x2f\x71\x28\x59\x9c\xe1\x15\x41\x67\xd2\x79\x5f\x33\x6c\x04\xae\xc7\x1b\x52\x6a\x1a\x10\x28\x8a\x5d\x9d\x2f\x38\x4d\xbb\xee\x5f\x01\xf7\xa3\xcb\x1b\x88\x12\xb6\x19\x5e\xc0\xf7\x28\x8d\x75\xbb\x78\x7c\x15\x14\xdc\x2e\x0c\xa8\x36\xd0\x5e\x27\x92\x9b\xcf\x4b\x60\xdb\x79\x3d\x81\xff\x51\x9a\xdc\x76\x05\xb1\xd1\xe3\x7c\x5d\x11\xf4\xe8\xfa\x90\x3c\xd4\x5f\x64\x9e\xac\xfe\x1e\xb5\xeb\x74\x7d\x04\x71\x6a\x3f\xf1\x96\x54\x5c\x5c\xbb\x22\xf3\xa4\xe9\x01\xf9\x40\x04\x14\xdb\x2e\x50\xad\x37\x8f\xe7\x09\x6f\x52\xfd\x1e\x07\x13\xdb\xa0\x2e\xf2\x17\x59\x0d\x7b\xe1\x70\xb2\x9b\x1e\x60\x73\xfd\xa2\x27\x4f\xd8\xbc\xb4\x1e\x78\x4b\x7e\xcd\xff\x09\x87\x07\xb5\xf7\x93\xc2\xc3\x65\xce\xaf\xee\xfb\x8d\x5a\xdc\x8f\xed\x4d\x4a\x0d\xab\x35\x41\xd0\xa8\x76\x90\x00\x21\xa3\x16\x3d\x76\x20\x64\x54\x21\x2a\xb4\x1b\xb5\xb8\x1d\x32\xee\x1d\x9b\x89\x1e\xa7\x3b\x01\x3c\x3b\x5d\xe6\xb1\x11\x73\x18\x88\x1a\xd6\xa4\xdc\x29\xe2\x82\x3e\xf3\xbf\x61\x5e\x3c\xbf\x9b\x94\x00\xbe\xdf\x77\x8e\xe4\x77\x4d\x65\x24\x11\x9d\xa7\x1b\xb8\x1c\x4b\xc2\x77\x86\xde\x4f\xff\x3e\x50\xcc\xff\xc8\xe6\x72\xe3\x2d\x56\x3c\xd9\x00\xde\xd3\xe6\xde\x18\x2c\xed\x27\x7d\x43\x3c\xed\xaa\x76\xd7\xf0\xae\x50\xe7\x70\x36\x4a\xf3\xda\xee\x16\x41\x87\xfa\x3d\x11\xba\x82\xab\x68\x77\x8b\x88\x74\x2d\x16\x41\x70\xbe\x8c\x77\xf8\x7d\xeb\x71\xb8\xf1\x2e\x51\xd0\x66\xbb\x7f\xc4\x56\xfd\xbe\x07\x71\xd2\xf8\x41\x05\xee\xde\x7c\x74\xd8\xf6\x6b\xbf\x7f\x82\xe6\xb4\xd8\x18\x14\x9b\x0f\x4f\xb8\x76\x7a\xbc\x70\x3a\x02\x86\x6c\x77\x60\xab\x89\xf8\xdf\x04\xd5\x09\x3b\xa8\xdd\x4b\x12\xa8\x4a\x6b\xdc\x6e\x0c\x8c\xd5\x87\x09\xec\xb5\xe9\xcd\x44\xe7\xed\x20\xa9\x1b\xce\x67\x48\x6c\xbf\xe1\x7c\x86\x0f\x17\x41\xae\x8e\x03\xb8\xaf\x78\x4c\xd5\x5e\x48\x02\xdd\xf5\xa1\x86\xd3\xef\x51\x4b\x29\xc2\xbb\xdd\x17\x06\xe3\xe6\x32\x0e\x18\x22\x2e\x37\x9c\x8e\x39\xbd\xfb\xc2\xc1\xc0\xfb\x77\x03\x77\x22\xce\xf4\x46\x0d\x95\x7c\xb9\xc2\xd5\xba\xb8\x9e\x34\xb7\x9e\xff\x1d\x36\x07\xcd\x37\xbc\xdb\x7c\x1e\x9e\x50\x83\xe8\xbc\x3d\xfc\x5e\x92\x32\x70\x28\xed\xeb\xf2\x86\x2b\xa8\x88\x07\x70\x28\xd5\xae\xa7\x01\x7f\x22\xd4\xe9\x76\xbf\x9c\x07\x49\x16\x01\x7f\xf2\xb5\xfe\x91\x89\xd2\x97\xed\x8d\x1c\xf5\xfe\x3d\x71\x1e\x7a\xcc\x6f\x82\xec\x84\x45\xd5\x9e\x48\xb1\x20\x49\x3a\xe0\x4c\x2c\x49\x3f\x04\xc9\x59\xc7\x0d\xbc\x49\x76\xdc\xc5\x13\x88\x00\xea\xef\x49\xe4\xeb\xd0\xfe\x3c\x29\x5c\xbb\xa7\xca\x48\x8e\x62\xee\x9e\x14\xae\xf2\xfe\x1e\x44\x0a\x3d\x86\x4f\xc2\x9b\x6c\xfa\xf7\x38\xf0\x68\x3e\x4f\xa4\xb5\xce\x6e\x0f\x07\x99\xe9\x32\x28\xca\x9e\x6f\x86\x53\xd7\xfd\x7d\x32\x92\xbf\x0c\xe0\xc0\xab\x34\xab\x51\x9f\xf0\xbe\xf3\xf8\x90\xec\x84\x70\xd0\x1e\xb0\xbf\x1c\x14\xf8\xfc\xa8\xdd\x87\xca\x30\x6f\x92\xec\x9f\x12\x69\xd1\x9b\xca\xd8\x10\x75\xbe\x9f\x12\x66\x00\xcd\x37\x52\x0a\x78\x7c\x95\xb8\x19\x71\xee\x4f\x0d\xf8\x17\xf5\x57\xf1\x1e\xf5\x7e\x42\x0f\xcd\xcc\x3e\x15\x9b\x87\x98\x87\x80\x6b\xb1\xa6\xe0\x01\xc1\x40\xc9\xdd\xda\x83\x26\xc2\x92\xd9\x83\x1a\xcf\x8f\xff\x03\x9c\x92\x32\xef\x36\xe0\x5b\x9a\xd5\x74\x4f\x00\x0b\x7b\x7c\x1d\x07\x17\x31\x6f\x4f\x38\x3c\x88\x7e\x3e\x00\xff\xda\x3b\x13\x04\x94\x62\x57\xe5\x87\x94\x2a\xd3\xe7\x6f\x22\xc9\xd4\x3f\xf2\x16\x7b\xc0\x6a\xb2\x98\xf6\x1c\x81\x9a\xa9\xc1\x1d\x40\xd2\xeb\xa5\x03\x3e\xa5\x29\x33\x5a\x7b\x20\x7e\x56\x5b\x3c\x27\x92\x81\x38\x5f\xe0\x53\x9a\x80\xe0\xda\x43\x50\x9c\x23\x84\x81\x47\x29\x36\xe8\x3d\x91\x16\x77\x73\x39\xd2\xf0\xea\xf7\xe1\xdd\xe0\xf1\x90\x69\xad\xf8\x72\xc1\x59\x09\x92\xbf\x3d\x40\xa6\xdb\x7b\xeb\x21\x22\x58\x99\x03\x1b\x70\x2a\xcd\x06\xb4\x27\x5c\x7b\xc5\x39\x3c\x4f\x38\x08\x68\x3d\xf0\x26\x73\x44\xfc\x03\xb1\x71\xd0\xda\x03\xd6\x52\xf7\xe5\x42\x8d\x68\x4e\x3d\xe0\x4d\x84\x15\xd4\xde\x0d\xb8\x15\x6d\xe6\x4b\x8a\x03\xab\xc5\x80\x37\x29\x56\x5b\x02\x6f\x92\x95\xdf\xa4\x01\x67\x52\xe7\x57\x99\x38\x02\x11\x87\x77\x11\x9f\xd2\xdc\x5e\x8a\x34\xa9\xfa\xfe\xc7\x75\x77\xa8\xcc\xe3\x31\x5c\x7f\xc1\xb9\xab\x3d\xe0\x4a\x1c\xe7\xf3\xe6\xf0\x96\x51\xfb\x10\x07\xa1\x3c\xb7\x17\x57\x5b\x61\x4b\xb5\x17\xc9\xd1\x92\xe5\x5b\xf1\x4e\x14\xb1\x7a\x41\xa5\x35\xb1\x0f\x38\x12\x3b\x88\xbc\xa8\x11\x7d\x39\x5f\x50\x68\xdb\xd7\xef\xc3\x5b\x47\xe3\xab\x91\xe9\xd3\xdf\xe3\x9d\xe5\xfe\x03\x41\x40\x6a\x82\x17\x6f\x2d\xa5\x3c\x68\xc0\x8d\x14\xa1\xee\xb6\x97\xcb\x6e\x35\x30\xf0\x23\xd9\xcc\xc9\x8b\x37\x54\xd5\xf9\x00\x5e\xa4\x18\x71\xe0\xed\x38\x84\x78\x3f\x80\x53\xb2\xe4\x0b\xbc\x48\xb5\x01\xf9\x1d\xa1\x76\x52\x7f\x48\x76\x46\x8c\x78\x49\x7b\x3d\xbc\x5f\x23\x22\xbe\x35\xde\x20\x26\xee\x1f\x1b\x9f\x5d\x5d\x81\x0f\xc9\x42\x09\x6e\x2f\x08\x00\xcd\xdf\x1f\xe1\x0a\xae\xf1\x12\x44\x6b\xe6\x0c\x44\x8f\x3e\x3d\xfe\x03\xd7\x5a\xa9\xc5\x5e\xe8\x41\x13\x31\x7f\x31\xe0\x6f\x3e\xcf\xb8\xba\x26\xaf\x17\xde\x4f\x49\xcc\xdc\x4b\x1c\x8b\x99\x95\xf7\x8a\x64\x71\x9a\xff\x15\xae\xc7\x1a\x1f\x36\x06\x61\xe5\xb5\x37\x82\x64\xe5\x5d\xf7\x22\x59\xd9\x61\xe3\x8d\x7c\x4f\xee\xef\x0e\x9b\xa3\xd6\x03\x04\x00\x87\x32\xbc\xa0\x40\xfb\x71\x7d\x9f\xa0\x17\x9a\xdf\x13\xcc\xb3\xe6\x07\xf6\x9b\x52\x12\xb4\x17\xd7\x7d\xbb\x32\xbf\xd0\x97\xaf\xfa\x37\x82\xa0\xb5\x9f\x6f\x04\x81\xfe\xb4\xd7\x37\xe8\x87\xbc\x07\xfb\x06\xca\xb4\x6c\xa0\x7d\xdb\x70\x0d\xdf\x5d\x1f\x92\x78\x55\x39\x80\x47\xbb\xca\xd0\x97\x0f\x3d\xef\x1b\xd8\x6e\x0a\xfa\xec\x1b\x08\x01\xf2\xae\xed\xdb\x1e\xa1\x25\x7f\x62\x73\xe9\x1b\x11\xb5\x82\x7f\xe9\x5b\x40\x96\xef\x6e\x1c\x54\xe1\xae\xc1\x92\xf9\xb0\x34\x77\x16\x2f\xb3\x7f\x1f\x8f\x8d\x26\x93\x02\x05\xd8\xe5\xf0\x7e\xd2\x62\xe1\xfd\xa4\x88\xf6\x0e\x9c\x49\xdb\xfc\xfb\xc8\xaf\x90\xb5\x18\xc4\x09\xe4\xa9\xc5\x28\x81\x3a\xab\xef\xc9\x87\x20\x83\x6f\xdf\x22\xdf\x4a\xd3\xf8\x6a\x60\x31\xa9\x3f\x10\x00\x64\x60\xec\xc0\x93\x94\x36\x34\x3f\x38\x89\xe1\xcd\x40\xed\x34\x8b\xbe\x0f\x9d\x70\xd2\xf7\x3d\x92\x63\xa9\x7d\xd2\xac\xca\x00\xd7\x81\x17\xc9\x5f\xed\x13\x01\x9b\xfd\xfb\x90\x74\xa6\xca\x33\x0c\xb4\x6a\x2f\x22\xec\xfd\x3d\x28\xd1\xd2\x59\x77\xe0\x45\xb2\x38\xed\xbe\x61\xf0\x57\x32\xac\x0e\x5c\x48\x55\x84\x74\xdf\x08\x7a\xed\x9e\x4f\x00\x8b\xba\xbd\x88\x0b\xf2\x7e\x40\x3c\xba\xe7\x83\x4d\x65\xab\x2e\x83\xe5\xe6\xf9\x9d\xe1\x8a\xac\xdf\xa3\x06\x12\x04\x7c\xdf\x08\x7a\x2d\xfe\xfe\x22\x99\xd9\xa6\xf5\xc6\xb5\x7d\xf3\xf9\xbb\x03\xeb\x4b\x97\x89\xb4\xd2\xd9\x97\x83\x14\x02\x72\xd5\xed\x5b\x24\x57\xea\x6a\x9f\xa0\xd1\x36\x74\x1e\x5e\x6c\x7c\x1e\x1f\xc0\x8c\x8a\xf3\xe8\xfb\x16\xf9\x72\xb2\xca\x11\xd4\xe7\xfa\x20\x16\xaa\xdf\x23\xf9\x52\x57\x19\x87\x81\xe6\xfa\x70\x1d\xfd\xf4\xb7\x23\x69\xc8\xa0\xdf\x77\xb0\xc9\x92\xeb\x23\x5f\xd1\x47\xb2\xe9\x3b\x71\x37\xc2\x8e\xea\x20\x66\x8c\xed\x23\x79\xf4\xbd\x10\x34\xfc\x21\xde\x1d\xc4\x8c\xfe\xf5\xfb\x1f\x84\x8c\xa1\x32\x6a\x3c\xdd\x8f\x1d\xef\x3c\xa9\x4d\xfa\x1e\xd8\x63\x45\xed\x03\xf7\xa3\x20\xde\xbe\x03\x29\x2f\x35\x64\xdf\x23\x1f\x91\xdb\x6f\xa8\x25\xdd\xde\x8f\x6b\xb5\x7e\x1f\xae\xd5\xdd\xf5\x9c\x1f\xcf\x07\x57\x6a\xd9\x80\xfb\x0e\xd6\x98\x1c\x72\xfa\x1e\x9c\xbd\xe8\x0b\x88\x18\x55\xc0\x97\x7d\x1f\x81\xb2\xed\x32\x6a\x1f\xd1\x3b\x10\x30\x9a\x50\xa8\xfb\x3e\x90\x2c\x86\xe6\xc3\xfd\x13\x42\x41\x07\xf1\xa2\x49\x2d\xd7\x3f\x08\x17\x6a\x7f\x06\x2a\xb9\xc6\x73\x10\xf4\xed\xf9\xac\xfb\xd5\x94\x0f\xa7\xef\x27\xcc\xa6\xdb\x43\xcd\x29\x38\x9a\xbe\x47\x1c\x9d\xcf\x23\x70\x5a\x0a\x7a\xed\x20\x50\x94\x2c\xfa\x04\x02\x45\x91\xb7\x6b\xdf\xaf\x40\xe1\x56\x19\x6f\x3a\x31\x97\x7d\xc7\x21\x46\x71\x4c\x7d\x8f\x20\xf0\xa9\xf3\xc3\x63\x2c\x6f\xc9\xbe\xdf\x41\x9f\xff\xc4\x5b\xac\xef\xc4\x91\x28\xdf\x49\xdf\x23\x68\xae\x69\xf0\x0f\x39\x94\xf5\x52\xee\xa4\x21\x16\xfc\x44\xdf\x9f\xc8\x94\xa6\x72\x00\x11\x0e\x0d\xe6\x0d\x6c\x1a\xb5\xc7\x4b\x9c\x7c\xd8\x89\x13\x91\x8e\xb7\x03\x77\xd1\x25\x46\xf6\x04\x27\x2f\x57\xd4\x0e\x3c\x45\xf1\x62\xa4\xd0\x61\x8a\x18\x06\x9c\x84\x80\x19\x7b\x42\x8c\x17\x1c\x48\x4f\x29\x88\xbd\x7e\x9f\x43\x4c\x54\x7f\xe8\x2c\x93\x0e\x6b\x0a\x20\x41\x5d\x0e\xe0\x25\xaa\x6c\x1e\x3d\x11\x57\xa1\x64\x3f\x3d\xa1\xa3\x54\x44\x77\x4f\x78\xe3\x28\xc8\xaa\x03\x47\xd1\x04\x14\xd7\x03\x7e\x42\xae\xb2\x3d\x15\x5c\x69\xab\xeb\x09\x72\xd3\x63\x12\xf0\x13\x92\xd4\x7a\xfa\x89\x30\xff\x1c\xee\x04\x16\x98\xe0\x28\x3a\xf0\x12\x25\xef\x2e\x83\x95\x25\xe2\x9a\xe0\xf4\x93\x38\x9d\x84\x8d\x48\x71\x25\x3d\x45\xbe\x09\x11\xcb\xd4\xc2\x81\x42\xfd\x05\x84\xb7\x2e\x43\x6a\x78\x27\xe9\xbc\x24\x88\xc3\xf0\xfc\x30\xe0\x66\xaf\x17\x6a\x4b\xa9\x19\x7b\xea\x44\x38\x67\xb5\x3f\x58\x9f\xe1\xf2\x8e\xda\x54\xf3\x3f\x30\x30\xee\xfa\xfd\x01\xb1\xad\x9a\x6f\xc0\xcf\x88\x99\x49\x48\xda\x66\x5e\xd2\x15\xeb\xaf\xef\x17\x27\x9c\xa5\x56\xe9\xe9\x0a\x49\x55\xfb\x7f\x45\xb2\x29\x7d\x7f\xc3\xd9\x7a\x7f\x6e\xe2\x3c\xbc\xbf\xa8\x01\x9b\xcf\x63\xa4\x04\x10\xf3\x93\x80\xec\xaf\xde\xaf\x37\xbc\xf9\x74\x9e\xdf\x50\xeb\x6a\xbc\xb8\xe2\xfb\xb1\x4f\x6f\xa4\x05\xff\xb4\x97\xb7\xe0\xd4\x3f\xe3\xcd\x81\x2a\xac\xc7\x3a\x87\x2b\xbc\xce\x6f\x26\x62\x5b\xc9\xa8\x7a\xc6\x35\x7e\xf8\xf7\xd8\x00\x04\xe7\xd2\x73\xe8\xfc\x75\x7e\x72\xc0\xb7\x7c\xbc\x8b\x3a\x08\x0b\x65\xb8\x3d\xd4\x54\x4a\x93\xde\x73\xc0\x4d\x69\xbf\x73\x21\xae\x47\xcc\x4a\x2e\x70\xca\x7a\x6c\x72\xb8\xa2\x8b\xf8\x67\x1c\x64\x36\xff\x1e\x6f\xb4\xe9\xdf\xb7\x38\xef\xfa\x1e\x60\xcc\xa9\xc7\x31\x72\xf4\xcb\x26\xd4\x41\x4c\xe8\x0a\x6a\xed\x91\x93\x5f\x92\x5c\xcf\x11\xb4\x29\x7a\x15\x08\x0a\x49\xcc\x23\x08\x0a\x5d\x0e\x32\x9d\x9c\xfc\xbd\xbb\xbf\xd1\x78\xfc\x34\x1f\x6c\x8c\xbe\xdf\x20\x28\x34\xc5\xfd\xf5\x3c\x48\x19\x92\x35\x9f\x11\xcc\xbb\xfa\x43\xf2\x54\xb2\xb0\x0e\xa2\x42\x56\xbe\x95\x9e\x01\xfe\x4d\xba\xef\x20\x2c\x14\x25\x2b\xeb\xe4\xfc\x2f\x3e\x7f\x20\x24\xb4\x2c\xe6\x07\x44\x84\xb6\x7b\xfd\xc2\x9b\x54\xcc\x69\x26\xa8\x7c\x3d\xe6\x7f\xf0\xb8\xe4\x1f\xe0\x3a\x4d\x06\x20\x4a\x05\x09\x75\xe0\x15\xca\xf0\xe0\xb8\x7c\xc5\x8b\xc3\x4b\x39\xbc\xb9\x17\xde\x0d\x3e\x5c\x3f\x06\x40\x97\xe1\x2c\xbd\x59\x17\xae\xbd\x22\xee\xc0\x2f\xe4\x21\x4e\x20\x93\xb9\x4f\xae\xa4\x3d\xdf\x11\x47\xe1\x32\x9c\xa0\x38\x8d\x4c\x9a\xdb\xe1\xc3\xff\x84\x4e\x5d\xed\x93\xd9\x4f\xae\xb9\x3d\x47\x90\xa6\x37\x87\xc7\xb5\x7b\x71\x11\x73\xfb\x57\x7b\x78\x17\xe9\x65\x07\xee\xa1\x48\x4d\xd7\x81\x6f\x28\xf2\xee\xe9\xf9\x8d\xcb\xa8\xf6\xc2\xfb\x4e\x9c\x4d\x7e\x51\xdb\xe9\xb1\x2e\x88\xbd\xd2\xa9\x76\x72\xfc\xe7\xa9\xf6\xca\xc6\xe1\x57\x7f\x05\x31\x58\x6a\xba\x5e\xb6\x60\x06\xdc\x1e\x11\xc3\x5a\x9f\xb2\x87\x4d\xcc\xe5\x00\xfa\xfc\xcc\x8f\x9c\xfb\xad\xe9\xb0\x95\x14\x36\x14\xf5\x87\x5a\x4d\xc9\xe4\x7a\x21\x88\x52\xde\x26\x9d\x1c\xfd\x45\xf9\x44\x7a\x49\xe1\x90\xb0\xab\x8c\x77\xd4\x74\x7b\xc4\x11\x6d\xfe\x3d\x36\xac\xdd\xbf\x47\x0d\x55\xdc\x1f\xf9\x82\x44\xec\xcb\x0f\x67\xaf\xf1\x66\x24\x4f\x11\x8b\x42\x9c\xce\xe6\xf5\xc5\xc0\x29\x6f\xba\x5e\x88\xdb\x29\x5e\x1f\x5c\xed\x05\xc1\xde\x4b\x04\x65\xee\x6e\x2f\x82\x58\x3f\xe7\xb3\xe0\x30\x22\xc4\x86\x5e\x4a\x3c\xbe\xfa\xbe\x80\x25\xe5\xf9\x01\xb9\x5e\x44\x3c\x0a\x41\x9a\xc9\xeb\x81\x2b\xaf\x1f\xcf\x42\x72\x2a\x19\xc4\x7b\xa9\x81\xaa\xec\x32\x06\xdd\xaf\xef\x43\xf3\xa0\xfe\x91\x2c\x14\x87\xd3\x4b\x48\x16\xc3\xf5\x70\xda\xe2\x84\x41\xe4\x28\xf2\x9e\xec\xa5\x05\xd6\xa0\xe6\x8b\xda\x50\x36\xa5\x5e\x1a\x99\x3c\xbd\x7e\xb8\x06\x7f\xed\x47\x8b\xfb\xe3\xf2\x01\xc2\x87\xc6\x43\x1c\x91\x92\xd1\xf5\x12\xa8\xeb\x5e\x9f\x1f\x87\x11\xd5\x0f\xf6\xd7\xfb\x0f\xb1\x56\x28\x40\x2f\xc0\xdd\xc8\x9b\xaa\x17\x88\xb5\xe0\xa7\x7a\x81\xd8\x4a\xed\xd7\x4b\x78\x3f\x7a\xbd\x40\x00\x19\x3e\xbf\x93\xa0\x52\x8f\xff\x08\xb5\xbf\xda\x3b\xc2\x01\x49\xeb\x73\x84\x66\xc2\xf5\xe1\x6d\xa9\xf6\x80\xb7\x91\x0d\xa4\x97\x23\x98\x61\x7d\x4f\x1c\x90\xe9\x2d\x08\x21\xb5\x7e\x95\x91\x24\xc4\x2c\x95\x33\x32\x7d\x6a\x7d\x08\x8a\xf7\x63\x51\x70\xf0\x90\xb7\x6e\x2f\xd8\x54\xad\xf9\xf8\x41\x08\xf1\x7e\xe3\x1d\x26\x9b\x70\x07\x01\xa4\xc9\xdb\xb1\x83\x00\x92\x47\xfa\x23\xc9\x05\x78\x90\x2e\x1d\x70\x2f\x77\x04\x45\xa9\x1c\x3a\x47\x13\xb7\x80\x64\xf7\x62\x2f\xe2\xdd\xad\x96\x01\x2e\xa4\x59\xad\x50\x1e\xfc\xb4\xf5\x98\x14\x20\xd8\x8b\x0e\x4b\x0d\x88\x75\x11\x7f\xe0\x3e\xb2\xc5\xb6\xba\xb3\x99\x22\x6e\x75\x8f\xb4\xb4\x59\x65\x80\x27\xb5\x58\x15\x35\x84\x74\xa6\xbd\xee\x61\x50\x75\x7d\x40\xfe\xab\xfd\x14\x70\x16\x53\xe5\x40\xfd\xd5\xf7\x09\xf8\x0f\x71\x3a\x35\x05\xc4\xbe\xbf\xc7\xfb\xc5\xfd\x05\x71\x14\xe7\x5e\x03\x78\x4f\x92\x60\xcd\xa1\xb3\xd5\xf7\x19\x78\x0d\x6d\x7e\xcd\xa0\x16\x4b\x12\x00\x6e\xa4\x08\x2b\xa8\x07\xdc\x88\xf2\x39\xf4\x1a\x58\x5b\x5e\x9f\x9f\x1c\xe8\x1a\x3f\x6a\x43\x61\x71\x75\xe0\x41\x9a\xb0\xd0\x3a\xf0\x20\x4d\x36\x99\x5e\x6b\x78\x5b\xa9\x7d\xe2\x80\xa6\x7f\x5f\xe3\xb1\xf2\xf7\xb8\x02\x4f\x7f\x4f\x9a\x63\xaf\x4f\x05\xbb\x4d\x97\x0b\x38\x91\xde\xbc\xde\x24\x27\x92\x9f\x7e\x07\x4e\x64\xc8\xaf\xbf\xd7\x06\x71\xd7\x79\xaa\x01\x37\xa4\xc7\xb1\xc2\x89\x0a\x58\xb0\x03\x1f\xd2\x87\xf7\x03\xef\xb8\x24\x35\x21\xf0\x21\x45\x06\xeb\x5e\x7b\x40\xd4\xbb\x9e\xa0\x43\xf7\xb7\x38\xcf\xac\xa0\xcc\x0e\x5c\x48\x13\xd6\x54\xaf\xa8\x35\x05\x1c\xd8\x2b\x39\xd8\xdb\xee\xdf\xe3\xa0\x90\x5c\x0e\xb5\xb1\xfa\x27\x3f\x92\x74\xee\xbd\x4e\x88\x83\x7f\x0f\xb1\xaa\x3e\x8f\xe4\x47\x9a\xbe\x2f\x3f\xd8\x7d\x9a\x2f\x40\xa0\xd5\xf3\x5b\xcc\x63\x56\x26\xc2\x5e\xc1\xf6\x2b\xd3\xdf\xe3\x70\xa1\xc7\x1c\xb8\x8f\x26\x57\xd6\x0e\xdc\x47\x51\x1c\x56\x07\xd1\xa3\x09\xf2\xbf\xd7\x33\xe2\xcc\x54\xff\xc3\x7c\x6a\x3e\x11\xc7\x54\x5d\x0f\xd6\x9c\x88\x61\x0d\x14\x74\x9f\x0f\xd4\x34\xc3\xeb\x79\x87\x03\x8a\xc6\x73\x83\x28\xe1\xfe\x70\x18\xc9\x6e\x1f\x66\xb4\xf9\x7c\x82\x05\x26\x87\x84\x5e\x1f\x80\x6e\x93\xfa\x27\xa8\x31\xf9\xfc\xbd\xd4\x7b\x3d\xdf\xe8\xdf\xdf\x93\x9c\x4d\xcc\x42\x05\x78\x54\x36\xe1\xde\x36\x98\x9d\xcd\x65\xe0\x6f\x44\xaf\x5a\x78\x8f\x89\x5e\x81\x80\xd1\x14\xd4\xdb\x41\xc0\xe8\xc2\xb6\xeb\x0d\xd7\x76\x25\x63\xec\x2d\xe2\x12\x77\x97\x23\xee\xa5\xab\x0c\xbd\xd2\x7d\x04\xa1\xa2\xc8\x46\xdb\x41\xa4\x28\x72\xb0\xea\xad\xa0\x66\xd4\xfc\x1b\x70\x42\xca\xb4\xd9\x1b\x92\xa2\xe2\xbe\x7a\xab\xe4\xe3\x49\x7f\x64\x73\x69\xf8\xb5\xcb\xfb\xa1\x07\xfc\x84\xe0\x4a\x7a\xc0\x47\xc8\xef\xba\x37\x74\x9e\xca\x59\xdd\x5b\x88\x99\x7a\x5c\x1a\xde\x0b\x42\x61\xed\xc0\x3f\xe4\xee\xc5\x20\x22\x59\x99\x01\x7b\xc3\xe0\x69\x1d\x39\x70\x10\xcd\x9b\xdf\xe2\x72\x8b\xb3\x06\x1e\xa2\x5b\xe7\x0d\xfc\x43\xb6\xe4\x04\xfc\x43\xee\x3a\x0c\x6d\xe2\x2a\xa9\xc3\x0b\x1c\x43\x57\x5c\x4d\x6f\x27\x41\x5c\x6e\xff\x0c\x6f\x08\x7d\x4f\xe6\x46\x19\x18\x7b\x8b\xa0\x24\xa9\x85\x80\x57\xa8\x82\x78\xef\xed\xc2\x35\xda\x87\x07\x83\xa2\x5c\x1d\x7b\x8b\x4c\x8c\x7a\x1c\x80\x5b\xc8\x42\x48\xe8\x0d\x57\x4d\x73\xd2\xc0\x2d\x94\xe4\xc3\x49\x32\xaa\xea\xc3\x40\xd0\x9f\xd5\x88\xed\x09\xce\x4a\xf3\x7f\x82\xb8\xe8\xf7\x4f\x3c\x16\x3a\x2c\x64\x5a\xf4\xe3\xd9\x70\xdd\x14\x7c\x4e\x07\x81\xa1\xc8\x3b\xa9\x83\xb8\xd0\xac\x83\xfd\x41\x58\xd0\xe5\x0e\x04\x85\xaf\xfd\x09\xa0\x4b\xd5\xf7\x90\xcc\x74\x99\x3a\x71\x27\xb6\xf9\x80\x98\xd0\x95\x92\xa0\x83\x98\x50\x14\xc4\xd5\x41\x4c\xc8\x4a\x1b\xdb\x3b\x36\x3f\xeb\xe4\x3b\x0e\x0c\x56\x4b\xf4\x14\x92\xf8\x67\x3d\x3b\xd8\x60\xde\xbf\x9e\x03\xf1\x40\xed\xe5\xe0\x24\x35\x3e\x20\xc7\xe5\x7a\xdf\x7b\x01\x7b\x4e\x97\xb3\x93\xb2\xc0\xcc\x40\xe7\xb1\x15\x0a\x72\xef\xc4\x25\x29\x5f\x51\xef\xd8\xf4\xb2\x1e\xc7\xde\x02\x91\x41\xed\x63\xe3\x13\x96\x55\xef\x1d\x83\xb7\xee\x17\x11\xfc\xb9\xeb\xbe\x12\xc1\xdf\x36\xf7\x37\xe2\xb1\xff\xec\x6f\x07\x0b\xab\x4b\x8d\xd2\xe1\xcc\x6d\x73\xea\x38\xf0\x28\xa5\x46\xef\x64\x56\x55\x66\xca\xde\x8f\x1b\x62\xa4\x7a\x82\x6a\x15\xe7\xd1\x89\xb0\x2f\x72\x9d\xee\x3d\xd2\x80\xbb\x7d\xe2\x32\x9a\xf7\x73\xdd\xaf\x3c\x75\x1f\xfb\xdd\x51\xb3\xab\xbd\x08\x7d\x10\x33\xd8\x39\xff\x4a\x5b\xdd\xfb\x13\x70\x3d\x9a\x1f\xae\xca\x96\xa4\x3b\x9a\x88\xf9\xf5\x3d\x11\xf4\xba\x2f\xfd\x09\x6f\x30\x7f\x0f\xb6\x5d\x76\x19\xc9\xd8\xfd\xe3\x4d\xa8\x38\xa1\x3e\x88\xeb\x53\x72\xc0\x1e\x11\xef\xf2\x2e\x5b\x94\x86\xfe\x77\x95\x51\x4b\xea\x3e\x0c\xf2\xfb\xe4\xee\xef\xf1\x8e\xd5\xfd\x18\x38\xc8\xd4\x8f\x03\x4d\x1f\x40\xe2\xfb\xbe\x8c\x42\x90\xa7\xe8\xd7\x28\x61\x53\xfc\xcc\x6f\x60\x43\xf6\x63\x39\x1a\x8f\x8b\xe8\xf9\x08\xec\x37\x3d\x46\xa3\xc5\xef\x55\x06\x55\x59\x29\x09\x7a\x04\x89\xdb\x66\x34\x60\xae\x7a\xfe\x93\x4c\x94\x7d\x10\x47\x20\x2c\x9c\x3e\x08\xaa\xb3\xce\x79\x04\xe7\x25\x31\x6b\x04\xa4\xbb\x36\x87\x88\xf2\xa6\x34\xba\x7d\x1c\x10\x33\xd7\xff\x88\x85\x6a\x0f\x94\x53\x1b\xd4\xc7\x19\x8b\xab\xc5\xc4\x80\x55\xa6\xcb\x00\x51\xea\x72\x0c\xfc\xee\xcd\x69\x12\xc1\xdd\x6d\x50\x1e\x00\x3d\x0a\x08\xaf\x0f\x0c\x58\x36\xb8\x13\x51\x5d\x14\x87\xd3\xc7\x13\x8b\xad\xf9\x3f\xc1\xb9\x6a\xb3\xdf\x0a\x31\xd3\xef\x5f\xe0\x35\xc4\x39\xcd\x0d\x38\x12\xcd\xef\x27\x62\x5a\xeb\x39\x81\x53\xb0\x03\xc0\x44\x2d\x24\x38\x88\x3e\xd1\x51\x17\x11\xcf\x19\xa8\xa4\x7a\x0c\x26\x6a\x19\xa5\x49\xed\x93\x38\x1e\x65\x6e\xec\x13\x9b\x8d\x92\xa3\xf5\x59\xe2\x30\xe8\xf7\x81\x95\xe5\xf6\x6b\xa8\x71\x8a\xca\x64\x3e\x14\xa7\x45\x44\x75\x13\xca\x70\x27\x82\xba\xc9\x15\xb4\xcf\x8a\x6b\xac\x38\xa3\x89\xa4\x62\xce\x67\xc6\xe1\x16\xf1\x27\xe2\xba\x9a\xb3\x23\xe2\xba\x2a\xd9\x51\x9f\x04\xdd\x65\x11\x33\x22\xae\xbb\xd5\x78\x44\x58\x37\xc1\x0b\xf5\x19\xa8\xc1\x1e\x2f\x92\x86\xbc\xc3\xfa\x1c\x81\xad\xa6\xdf\xe3\x1a\x6e\x9b\xd8\xfc\xd1\x61\xbb\x8c\x0d\x46\xc4\x64\x22\x49\x98\x93\x9f\x07\xfb\xe7\xf9\xff\xd8\x74\xb4\x9e\xe4\x43\x52\xbe\x9e\x4e\x44\x75\xb1\x0d\x6c\x46\xa6\x55\xaf\x17\x0e\x10\x56\x7b\x4c\x24\x85\xa4\xfb\x33\x4f\xe2\x8c\x8a\xbf\xc7\xb5\x56\x9c\xe7\x84\xf9\xc9\x1e\x5f\x64\x56\x15\x33\x41\x84\x76\x4d\x9e\xcf\x45\x72\x27\xaf\xef\x15\x40\xb0\x1a\xff\x15\xae\xaf\xaa\xbf\x23\x4d\xb4\xda\xbb\xc3\xa1\x44\xeb\x75\x87\x5a\x51\xfd\xdf\x11\xb7\xa3\xf1\x63\xf0\xb5\xcd\x65\x3e\x70\xfe\x22\x5e\x33\x6c\xba\x22\x8e\x13\x9b\xae\xd2\x9a\xf7\x89\x1a\x7a\xf3\xf9\x7f\x23\x39\xd9\xa7\xfd\x63\x23\x68\x55\xf3\x39\x36\x5c\xe9\xa7\xeb\x07\xf7\x35\xa9\xcc\x63\xaf\xfb\x77\x6c\x9c\x4f\x31\x4b\x07\xc9\xe3\x8a\xd4\x82\x04\x75\x77\x61\xdf\x75\x82\xba\x9b\x89\xf7\x81\x03\x94\x6d\xa8\x07\xf9\x9c\x2c\x89\x13\xe4\xdd\x6d\x43\x3b\x50\x33\x0f\xd7\xff\xa8\x79\x3f\xeb\x77\x44\x9a\x66\xdd\xe7\x03\xd7\x6c\x6b\x0e\x0e\x1c\x9a\x4c\xfc\x0f\x24\x11\xab\x51\x8f\x1c\x41\xb3\x1a\x7f\x26\x0e\x4a\x8f\xd9\x91\x03\x7e\x47\xfd\x83\x90\xd2\x25\x09\x1f\x25\x98\x1b\xad\x27\xa8\xe1\xb6\x01\x1f\xa4\x0c\x50\x4a\x8d\x7e\xe0\x00\xb2\x24\xc7\x3f\x78\x5c\x8e\x1a\x3a\x7a\xfd\x38\x22\xc0\xa5\x26\x39\xd0\xb9\x9a\xb3\x39\x5a\x18\xa0\x5c\x1f\x10\xd4\x1a\x6c\x07\x5e\x42\x97\xe9\x00\xe8\xce\x92\xc0\xd1\xc3\x00\xa5\xc5\x22\xf3\xa5\x82\xe8\xfa\x81\x9a\xa2\x7b\x3c\x78\x5b\x99\x13\x3d\x88\x53\x11\x36\x4f\x3f\x46\x60\x3b\x69\x31\xc2\x75\x53\x9c\xd6\x31\x22\x82\x5e\xe3\xc5\xfb\x43\x11\xe7\xfd\x40\xb2\xd9\xbd\xf9\xc0\x37\x0c\x1f\xae\x80\x1c\xf7\xe6\xa1\x83\x35\xb1\x3e\x7e\x72\xe6\xab\xfd\x23\x1c\x14\x34\x3e\x5c\xaf\xed\xcd\x73\xe0\x6a\x6d\x9b\xcf\x71\x05\x27\xa2\xf6\x22\x99\x92\x2f\xcf\x15\xf9\x2e\x34\xbe\x88\x33\x71\x3d\x40\xa0\x5f\x87\x97\xb4\xcd\x9b\xbf\xbf\x71\x7d\xf5\xf8\xef\xd0\x21\xab\xfe\x09\x83\xa9\xd6\x1f\x4e\x50\xae\xbe\xfd\x20\x68\x4d\x71\x31\xfd\x78\x88\x60\x9e\xfe\xfd\x0d\x33\xe1\xef\x5f\x38\x43\x95\x5f\xf2\xdd\xe8\xb1\x39\xde\x00\x7a\x74\x19\xc9\xd1\x97\xf1\xc5\x06\xa7\xc3\x7e\x06\x50\xa7\x88\xf9\x19\x39\xd8\x93\xcb\x60\x95\x75\x97\x49\xbe\x25\x62\x78\x82\xf0\x50\xf4\x98\x9c\xe1\x9a\xad\xf5\x38\x51\x23\xd8\x80\x7a\xa2\xd6\x14\x5c\x4f\x3f\x13\xde\x91\xba\xcc\x27\x88\x0e\x56\xeb\x12\x31\xdf\x9b\xd4\x90\x67\x09\x84\x05\xf5\x47\xda\x68\x61\xcd\x75\x22\xe8\x5b\x93\xe4\x7e\x46\xce\x74\x8f\x07\x4e\x54\x40\x8c\x3d\x22\xea\x15\xf4\xd9\xcf\xc0\x56\x13\xf1\x3c\x71\xe0\x28\xd5\xdf\xe3\x1a\x9b\x5d\x0e\xce\x59\xfd\x61\x53\x91\x2b\x78\x3f\x43\x13\xa1\xfb\x7c\x12\x57\x96\xb5\x5f\x67\x0f\x6f\x21\xfd\x9e\xfb\xb8\xe9\x31\x3a\x89\x0b\xb3\xeb\xea\x89\xe4\xd4\x3c\xff\x81\x2b\xba\x98\xb7\x73\x06\x56\x9d\xfa\x23\xa8\xd5\x0e\x07\x27\x88\x10\x76\x40\x39\xc9\x2f\x64\xb5\xf9\x49\xdc\x45\xf3\x7c\x49\xb3\x3e\x3c\x3f\x32\xcb\x36\xef\x1f\xde\x58\xd9\xeb\x7b\x92\x39\xd7\xfb\x8d\x37\x63\xf3\x7a\x13\x27\xe6\xf3\xfa\x13\xf1\x2e\xe6\xf4\x0c\x6c\xb3\xdd\xdf\x37\xfa\x73\x7d\x38\xe0\x68\x7d\x09\x9d\xb0\xe6\x81\x08\xf7\x6a\x87\x8a\x93\xb4\xea\xd6\x2c\x9c\x68\x16\xb2\xdb\xc7\xe1\x43\x29\x29\xfa\x45\x0a\x8b\xa1\xdf\x5f\xc0\xfd\x58\x2d\x7f\xe1\x8d\xe8\xc7\xfe\x02\x0b\xcc\x66\x8b\x2b\x85\xe6\x47\xed\xe1\x90\x21\xac\xb7\x7e\xa1\xe6\xb7\x64\x7a\x81\x15\x28\x38\x9b\x7e\x45\x7e\x9c\xf1\x47\x36\x97\x2b\x93\x89\xd1\x8d\x13\x74\x64\x31\xf3\xe2\x32\x08\xe2\xbc\x5f\xf1\x92\x69\x73\xae\x30\x00\x8a\xf8\x47\xc2\xff\xdd\xdf\xff\x04\x45\x6a\xf2\x01\xec\x27\xce\x98\x88\xee\xaa\xa0\xc1\x7e\x11\xa4\xa8\x7c\x2c\x3d\x22\xb0\x95\x7c\xac\xff\x44\x58\xeb\x72\x5f\x48\x4e\xc2\x1a\xeb\x57\xe4\x9b\xf9\xaa\x47\xc7\xed\xf1\x91\x4f\xc2\xde\x2b\x17\xde\x12\x76\xd5\xbb\x02\xbe\x41\x6a\xbf\xc8\xf1\x6f\xce\xf4\x42\xa7\x6d\xd7\xd8\x2b\x74\xda\xde\xfc\x30\xb0\x6d\xae\x87\x53\x96\xce\x9a\x88\xe7\x25\x1c\x7f\xca\x77\xd8\x04\x5c\x8e\x88\x78\x8d\x27\x38\x41\x11\x03\x72\xfc\x67\xc1\xdf\xf4\x0b\xb5\x96\x92\xb1\x75\x72\xf8\x67\xa1\xd4\xf6\x0b\xef\x3c\xe5\x94\xef\x37\x90\xf6\xd6\xe1\xde\x1b\x11\xbd\x12\xbb\xef\xad\x90\x76\xd7\xdf\x63\xc3\x90\x64\x79\x6f\x70\x56\xb2\xc1\xdc\x1b\x9c\x7c\xf2\xef\x71\x15\x9e\x2e\xdf\x00\xf5\x7d\xd6\xe3\xc6\xdb\xcf\xe7\xe3\x26\x4e\xc7\xfb\x1b\x11\xce\xca\x3f\xd2\x6f\x6c\x6a\xa3\xb9\x3e\x24\x31\xff\x9e\xc7\x5b\xfb\x47\x04\x74\xdd\xf5\x78\xdf\x29\x2e\xaf\x7e\x9f\x02\xf5\xdb\xf5\xe1\xbd\xe6\x32\x06\x60\xed\xdf\x9d\xe2\xfc\xab\x7d\x80\x3e\x2d\xe9\xdc\x09\xc9\x49\xc4\xe5\xc6\xc1\xc0\x36\x8d\xfb\xc7\x86\xa6\xf6\xf1\x3e\x54\x84\x7b\xbf\x03\x7e\x48\x9c\xf9\x1d\x69\x8d\x3d\x5e\x92\xf7\xd9\xb5\xfc\xc6\x41\xa0\x7f\x95\x0b\xe7\x43\xeb\x05\x64\xbf\x80\x4b\xfb\x0d\x67\x6a\x87\x90\x9b\xc7\xca\x0e\x2e\x77\x0d\xb5\xf2\xe7\x7c\xdd\x78\x03\x66\x9f\x87\x48\x63\xec\xf1\xa3\xc6\xb3\x5a\xf0\xc6\x80\x6f\x1b\x25\x41\xd1\xcd\x9c\xf4\xfd\xf3\x58\xa9\xbe\x13\xa7\xe2\xdf\xe3\x3d\x98\x7c\x1e\x3a\xf7\x49\x8f\xe9\x0d\xea\xf2\xd7\x7c\x7a\x24\xb3\x72\x39\xd4\x6c\x5a\xef\x90\x4c\xa5\xa6\xbb\x91\x4c\x85\x98\xd0\x09\x5a\xce\x42\x54\xe8\xf7\x64\x7f\x3d\x3f\xf2\xd3\xf8\xf1\xb9\x8f\xb8\x1f\xae\x47\x6d\x28\x66\xf0\xe6\x31\x53\x84\x7d\xbf\xc1\xde\xab\x3e\xef\x78\x57\x75\xf7\x7f\x46\x8a\x10\x8d\xef\x0c\x20\x4a\xd7\x13\x9a\xe1\xf3\x13\x71\x81\x62\x1e\xef\xc0\x12\xd3\xe3\x73\x63\x03\xb3\xf7\xec\x4d\x9c\x90\x6d\x7e\x77\xa8\xf9\x45\x7f\x08\x8a\xee\xf6\x8e\xbc\x43\x92\xf5\xf9\x03\xf5\x3e\x99\x3e\x80\x92\x9c\xbd\x5e\x84\x02\xb4\xfa\x47\x6a\x31\x22\xa4\xab\x89\xd3\x8d\x37\x96\xe0\x44\x3a\x11\xd3\xc5\xc4\xff\xc6\xc0\x9f\x3c\x59\x22\xa8\x2d\xb9\xdc\x4f\xf8\x61\xbb\x1e\x35\x87\x5e\xe6\xfb\x09\x57\x37\xb7\x77\x31\x79\xd7\xe3\xaa\xa8\xc7\xe1\x7e\x0b\xde\x1f\x6a\x3f\xd2\x8a\x8a\x93\x7d\x36\x38\x75\x6d\xde\xb3\xe1\x1a\x2c\x62\xf5\x84\x03\x80\x0e\x07\x11\xcf\x65\x68\xf3\x9e\x9d\xf9\xea\xb0\x3c\x70\xba\xe6\x84\x22\x22\x5a\xf9\x62\x3a\x11\xd0\x4d\x08\x06\x9d\x08\xe8\x6e\x1d\xf8\xf3\xe3\xfd\x94\x55\x46\x4d\x26\xce\x81\x08\xe6\x6a\xd7\xc9\x27\x50\x88\xfd\x7b\x0c\xf8\xb6\x31\x11\x81\xdc\x95\xa3\xbb\x13\x81\xdc\x04\x0c\xda\x9f\x82\x43\x84\xe7\x4f\x1a\x63\xc1\x81\xf4\xa7\x04\xb6\x53\x53\x19\x35\xa6\x24\xbb\x07\x83\x9d\x22\xd8\xfb\x53\xc3\xa6\xe2\x32\x6a\x07\x71\xc2\x11\x71\xac\xcc\x94\xfd\x41\xd2\xb5\xab\xed\xd3\x78\x5c\x87\xeb\xc3\x15\x54\xf3\x69\xf1\xf8\xb9\x0c\x27\xea\x7a\x6c\x78\x8a\xf8\xef\x4f\xe4\x3c\xf7\x7e\x77\x0c\xa8\x3a\x4f\xcf\x08\xce\x4d\xfd\x91\x8f\xa3\xba\x3d\x38\xe7\xe6\xf5\x04\x38\xd4\x6a\x17\x22\x94\xab\x32\x3d\xf6\x67\xe2\xcd\xe3\xfd\x9e\xd8\x08\x75\x5e\x23\x82\xd9\xde\x64\x6f\xb8\xa6\xcb\x21\x83\x20\xd2\xee\x38\xa6\xc8\x81\x6f\x9d\xfa\x1b\x06\x54\xad\xdf\x1b\x92\x49\x72\x19\x1b\x94\xce\xe3\x1b\xde\x63\xba\x1f\xe4\x9c\x6f\x5f\xbf\x6f\x91\xbc\xab\xa8\x4c\x9c\x84\x24\x5b\x82\x3c\xab\xe3\x86\xde\x70\x05\x9f\xae\x0f\xa0\x55\xd7\x07\x6a\x73\x53\x19\xc8\x7e\x8f\x0f\x60\x56\xab\xb9\x08\xea\x2c\x02\x4e\xed\xe4\x8c\xaf\x96\x4c\xc8\x11\x9f\x15\x44\xdb\x09\xf2\x2c\x43\xcc\x01\x41\x9d\xb9\x8b\x18\xbf\xa0\x2e\x5b\x32\x24\xe7\x7b\xb5\xab\x33\x41\x9d\x59\x41\xd7\x9d\x1c\xef\xd5\x71\x70\xe4\x78\x6f\x5f\xfb\xb3\x88\xfb\xb0\xe4\xfe\x42\xbc\xcd\x1c\x13\xc4\x99\xed\xa0\x44\x9a\xf6\xa6\xcc\x8c\xfd\xfd\xc9\xd7\xa4\xf6\x70\x50\x50\x9a\xe7\xfe\xfe\xd8\x54\xb5\x3e\xa4\x20\x29\x7a\x6c\x5e\xe2\x4c\xcc\x6c\xbc\x48\x2e\x0a\xaa\xee\x2f\x70\x5b\xd9\xf3\x09\x87\x05\x31\xb7\x11\xd4\xd9\x7c\xbe\x22\xad\x7b\x72\x39\xcc\x14\x6a\x0f\xb5\xa2\x25\x0f\x82\x38\xdb\xee\xf9\x00\x77\xa3\x14\x24\xfd\x7d\x27\xcc\x85\xfa\x7b\x63\xfc\x3f\xf3\x1b\x5b\x00\xa9\x7e\xcc\x08\x83\x20\xce\x52\xf7\x3f\xc1\x16\x1b\x1b\xae\xae\xca\x17\x32\x88\xf8\x6c\xca\xcc\x37\x22\xe2\x53\x28\xad\x83\x88\xcf\x2c\x6c\xae\xb1\x11\x44\x26\x78\x87\xb1\x05\x67\xfa\x21\x5e\x83\x08\xcf\x2c\x54\xd1\xb1\x01\xe1\x2c\xd7\xde\x41\xc4\x67\x53\xdc\xcc\xd8\x50\x43\x08\x3e\x66\x2d\x33\xed\xab\x3d\x2e\xb3\x74\xd0\x63\xcb\x91\x29\xcd\xdf\xa3\xf6\xf9\x10\xf3\xb1\x05\xaa\xb2\xc7\x07\xb1\x95\x4d\x67\x6c\x05\x1b\x4e\x55\x19\x6f\x08\xa1\x1e\x0f\x82\x2e\xab\x80\x27\xc7\x56\x23\xe8\x51\xe3\x25\x02\x5c\xae\xb2\x63\x0b\xd7\xca\xae\xf1\xf4\x48\xb6\xa6\xf1\x07\x50\xdf\x70\x19\xd7\xe0\xa9\xf5\xed\xa1\x63\x55\x7f\xa4\x49\x16\x16\xd5\xd8\x70\xd5\x14\xf1\x1c\x1b\x06\x5d\x39\x48\x8c\x0d\x87\x88\xe2\xfd\x01\xde\x46\x71\x23\x63\x1b\x40\x74\x7f\x38\xd3\xb1\x85\xf7\xd3\xee\x32\x58\x57\x55\xf3\x07\xc2\x5d\xde\x41\x83\x1c\xf2\x45\x7e\xf0\x23\x72\xc4\x2b\x82\x77\x90\x13\xbe\x37\xef\x2f\x6a\x0c\x05\xb9\x0d\x82\x3a\xb3\xf2\x63\x8c\x0d\xce\x50\x6a\xd1\xb1\x61\x60\x56\xdc\xcd\xd8\x22\x8d\xb2\xcf\xc7\x01\x30\xaa\xd7\xf3\x00\xd8\xb3\xa9\x7f\x38\x47\x01\x8f\x0e\x72\xc6\xb7\xec\xef\xe1\x1c\x65\x53\x1a\x1b\x0e\x1d\x72\xbd\x1c\xdb\x95\x61\x6e\xf4\x3d\x71\x2e\xc3\xe3\x8b\x4c\xa6\xde\x1f\x10\x20\x8a\x7f\x0f\x9c\x8d\x98\x87\xb1\xdd\xd8\xa8\xb2\xfa\xbb\x89\xa0\xf7\x65\x05\x5b\x6b\x78\xbf\x9e\x40\x08\xd0\x79\x7a\xb0\x49\xf9\x3c\x13\x04\xaa\xb8\xa1\xb1\xc1\x7c\x29\xe8\x6e\x6c\x2f\x41\xb6\xbb\xf6\x8f\xfc\x43\x82\x17\x19\xfb\x16\xeb\xdd\x54\x26\xc2\xfb\xab\x0c\x42\xc4\x87\x38\x8d\x7d\x03\x18\xf3\x23\xd9\x8d\x7d\xc3\x01\x42\xf7\x6d\x27\x1f\x91\x32\x67\x8e\x9d\xfb\xac\x4c\x94\x83\x20\xd2\xec\xfb\x40\xce\xf7\xac\xa0\xea\xb1\xa7\x08\x15\x50\xff\x29\x24\x7f\xd7\x07\xa7\xae\xf6\x80\x97\xa9\xda\xef\x3d\x83\x85\xa6\xf3\xb2\x87\x4d\x52\xf4\x8a\x34\xeb\x75\xb8\xfd\x12\x36\xc0\xcf\xfe\xee\x20\x42\x28\xee\x64\x90\x66\xbd\xc9\x00\x3f\x08\xfa\xac\xf2\x9e\x1a\x04\x7d\x16\x31\x6f\xe3\x93\x16\x5d\xe5\x1e\xc4\x58\xfd\x77\x82\x76\x37\xf5\x47\x7e\x1b\x79\x6b\x8d\x1d\xe6\x49\xf9\xab\xc6\xde\x83\xd9\xf7\xf7\x44\xf0\xbb\x3d\x80\x69\x85\x98\x31\xf6\xf5\xb8\x67\x21\x54\x0c\x82\x42\x8b\xb0\xc0\xc6\x1e\xa8\xec\x1f\x66\x63\x90\xc6\xbc\x2a\x6d\xf7\xd8\x61\x96\x9a\xf7\x17\x6f\x45\x25\x7b\x1b\x3b\xf9\x6b\xa4\xb9\x1a\x3b\x08\x0e\x5b\xfa\x93\x38\x97\xb1\xe3\x77\xad\x20\xc1\xb1\x63\x70\xd4\x4b\x3c\x76\xc4\x36\x05\x25\x0d\x72\x9a\x37\x89\x49\x63\x3f\x03\x1e\x43\x8b\x81\x01\x72\x16\x7f\x8f\x81\xbc\xab\x7d\xe2\x66\xb2\x17\x87\xb4\xc5\x8a\x13\x18\xfb\x15\x39\xd4\xfd\x3d\x36\x97\xae\xc5\xc5\xf5\xb0\xf8\x30\xdd\x01\x2f\xa2\xfe\x9f\x50\x43\xa8\x7d\xbc\x47\x24\x49\x8c\x3d\x20\xd3\xdd\x7f\x18\xf8\x75\x59\xf7\x07\x1d\xe4\xa6\xf1\x10\x34\xaa\x88\xea\xb1\x03\x6c\x37\xbd\x19\xe1\xaa\x58\xb5\xf8\x2f\x41\x56\x3e\x0c\x48\x5a\x9b\xfb\x8f\x9c\xe9\x59\xfd\x91\x6f\x41\xf0\x20\x23\xad\xcb\x9e\x95\x26\x79\x90\x33\xbd\xce\xaf\x7a\x88\x87\x0e\x53\x0a\x54\xdf\x0f\x67\x33\x22\x67\xba\x74\xf0\x23\x72\xa6\x0b\xe2\x7d\x90\x03\xbd\x66\x5d\xee\x14\xae\xda\x5a\xbf\xb4\x87\xb7\x50\x57\x99\xc7\x33\xb9\x8c\x9a\x4e\x8f\xe3\x4f\x4e\x74\x1d\x5e\x82\x58\xbb\xe2\x02\x46\xc2\x61\x41\xde\x3b\x23\xfd\x38\x2c\xa8\x7f\x50\xab\xa5\xe3\x1f\x04\xa9\x16\xd9\x64\x46\xca\x10\x37\xed\x67\x0a\x9b\x87\x88\x79\x04\xa1\x2a\x2d\xf5\x48\x04\xe1\x49\x52\x1a\x04\xa1\x36\x79\x8b\x0d\x82\x48\xbb\x99\xa5\x84\x77\x64\xd9\xf4\x7b\x22\xc6\xe5\x60\x32\xc8\x69\x9e\x65\x73\x19\x29\x98\x07\xf7\xd7\x43\xa7\xad\xf5\xf9\x09\x12\xd5\xfa\x90\xf3\x5c\x71\x11\x23\x05\x64\xbb\xf7\x0b\x60\x50\x49\xae\x23\x8d\x08\x6a\x55\xff\x23\xd4\x1e\xae\x0f\x1b\x9f\xfa\x0b\xe0\x4e\x9d\xaf\x04\xf0\xa6\xd2\x4e\x8f\x84\x24\x90\xbd\xfe\x91\x6f\xc5\xe3\x43\x6d\xec\xc7\x24\xfd\xb8\x3e\x6b\x7f\x0e\xb0\xb5\x74\x5e\xd3\x41\x8a\x8d\xa2\xf9\xa3\x26\xda\xdd\x5e\x20\x3a\x88\x39\x4b\x01\x19\x2f\x7a\x12\x41\xac\x72\xd0\x18\x91\x06\x7d\xe8\x7e\x27\xbc\xcf\xe4\x6d\x35\xd2\x19\x0e\x26\xfe\x3e\x98\x51\x8d\x17\xf8\x98\xcd\xeb\x79\x86\x83\x82\xeb\xd1\x8c\xf8\x3c\x46\x72\xc4\xaf\xf2\x3a\xcf\x0a\x0a\x1d\xe9\xc6\xa1\xc3\xbf\x47\xd2\x98\xbe\x2f\x77\xc0\xe1\x68\x7c\x37\x58\x80\x62\x1e\x52\xd8\x40\x45\x9f\x48\x53\x9e\xe5\x0a\x3d\xd2\x0f\x73\xe1\xfe\x50\xeb\xf9\xf7\x78\x7b\x16\xaf\x37\xcc\xc5\xf0\x78\x1e\x92\x11\x56\x97\x03\x55\x5e\xeb\x4f\x7e\x98\xcd\xfb\xf9\x62\xe0\x77\xff\xc4\xd5\x35\xd1\xdb\x9f\xb4\xe4\x1f\xb5\xdc\xc8\x1b\x99\x77\x45\xcf\xf3\x06\x02\x87\x98\x95\x4c\xa8\xc8\xa2\x2f\x7f\xf0\xb8\x64\x82\xf2\x84\xba\x3b\xc8\x71\x5e\x2c\x69\xe4\x90\x34\x44\x6c\x72\x64\x16\xd4\x61\x8e\x88\x5c\xe5\x77\x19\xe4\x3c\xaf\xc2\x1e\x1b\x39\x87\xda\xa4\xa9\x0c\xe7\xa8\xc3\x91\xd1\x41\x7b\xf1\x33\xc4\xc5\x9c\x7c\x26\xae\x43\x71\x04\x23\x43\x5c\xfc\x78\x65\x88\x8b\xfc\xd2\x47\x0e\x08\xf2\xcd\x65\x0c\x6a\x22\xc6\x19\x38\x8c\xaf\xf9\x12\xf7\x51\x74\x99\x72\x8d\xcd\x55\xff\x18\x4c\xe5\xbd\x35\x72\x8f\xe4\x4a\xfa\x7d\x00\x67\x26\x97\x31\x68\xea\xb0\x44\x0e\xf3\xe6\xf6\x80\x9b\x30\xe7\x4a\x04\x6e\x15\xe4\xfc\x88\x88\x5b\xc1\xa3\x0c\x22\x6c\xab\xd4\x06\x23\x03\xf1\xbd\xfb\x30\x90\xbf\x45\x71\x3d\x23\x72\x8e\x2b\xa2\x7a\x90\x73\xbc\x7e\xcd\x37\x50\x7c\xfd\x3d\xcc\x81\x32\x31\x8e\x8c\x01\x53\x41\x86\x23\x5f\x95\x1c\xfd\xea\x9f\xa0\xd9\xea\xf9\x10\x84\xa5\x08\xe7\x41\xd0\x6c\x11\x56\xd3\xc8\x77\xc6\xfb\x48\xfd\xdd\x18\x98\x7d\xb8\x6f\xb0\xe0\xc4\x09\x13\xb4\x5a\xa5\xe6\x1a\xf9\x09\x83\xb8\xda\x03\x8b\x69\x88\x13\xce\x2f\xde\x2f\x7a\x4c\xf3\x4b\x04\xbf\x1e\x8f\xfc\x06\xf3\xa2\xdf\x93\x7c\xc9\x8f\x25\x41\xae\x4d\xde\x3e\x83\x20\xd7\xaa\x88\xfe\x41\x10\x6b\x97\xeb\xf0\x28\x5b\x60\x49\x75\x95\x51\xe3\xe8\x7c\x14\x50\x73\x05\x87\x34\xc8\x81\xde\xeb\x57\x19\x88\x76\x71\x96\x05\x57\x69\x61\x3f\x8d\xc8\x61\xee\xc7\xb9\xe4\x80\x50\x77\x19\x1b\x87\x1e\xcf\x92\xc9\x8c\x2a\xe6\xa1\x94\xc8\x2f\xf2\x99\x7f\x04\x61\x4a\x07\x3f\x4a\x78\xfb\xe9\x3e\x16\x42\x11\xe4\x0d\x3a\x4a\xb8\x4a\x17\xd7\x93\x53\x5e\x8f\x7d\x09\x07\x1e\xed\x7f\x69\xc0\x1d\x35\x97\x01\x5a\xf5\x7c\x22\x3f\x8a\xe8\x43\xa4\x41\x37\x73\x55\x48\x5e\x26\x1b\xd4\x28\x13\xb8\x16\x9d\x8f\x42\xda\xe0\xee\xf5\x22\x4d\x70\x76\xfd\x81\x0d\x4d\xc4\xba\x44\x9c\x8f\x24\xbf\xc2\x63\x34\xbd\x9f\x27\x92\x8c\x98\xdd\x72\x72\xfe\x74\x3e\x08\x3a\xec\xc3\xfb\x15\xde\x78\x3a\xdf\x05\x2c\xb3\x2e\x7a\x43\x5a\xf3\x2e\x6f\xc0\x41\x90\x62\x15\x82\xc2\x28\x17\x66\x00\xef\x1f\xf9\x54\xaa\xfb\xbf\x78\xec\xdc\xff\x1d\xde\x7e\x6a\x1f\xb3\x85\x1f\x0f\xd2\x8a\xd7\xdd\xeb\x49\xe8\x80\x10\x52\x06\x69\xc5\xab\x99\xa3\x42\x68\x80\xe9\x0d\x71\x83\x45\x36\xb4\x51\xf7\x80\xbb\x2a\x2a\xe3\xb0\xf0\x55\x86\x19\xdf\x5c\x26\xf4\xe0\xcf\x24\x17\x82\x0e\x5b\xaa\xee\x1c\xb5\x8b\x06\x5b\x23\x88\x27\xb9\x0c\xd0\xa3\x36\x93\xa0\xc3\xae\x9c\xec\x83\x20\xc2\x5a\x75\x79\x2b\x70\x2b\xc2\x7e\x1a\xe4\x28\xef\x3e\x6c\x15\xb5\x96\x0c\xee\x23\x72\x8a\x2b\x59\xd1\xa8\x25\x50\x71\xd5\x3e\x36\x05\xd9\x48\x46\xfd\x79\x3c\xaa\xca\x61\xa0\x54\xb9\xa2\xe6\x28\x2e\x13\xf7\x20\xe2\x1d\x39\xc1\x9b\x17\x1f\x88\xfb\x39\xd4\x3f\x11\xc6\xe6\x24\x08\xea\x2b\x56\x63\x44\x8e\x70\xb9\x72\x8f\x3a\x88\x23\xf1\xf8\x23\x47\xb7\xd4\x2a\x04\xd1\x35\xa5\x19\x1e\x04\xd1\x65\x45\x10\x8f\x0a\x76\x91\x2f\x3b\x39\xb8\xab\x0c\xa0\xa3\xc2\x49\xee\x5e\xef\x23\xd2\xc0\xba\x8c\xf7\xd4\xee\x32\x8f\x8b\xd4\x9e\x91\x43\x3b\x7b\xfe\x44\x04\x0b\x78\x71\x54\x24\x53\xa5\x65\x1d\x35\x92\x0f\xb9\x7f\x2e\x8b\xbc\xc3\x06\x41\x70\xc5\x9c\x7f\x05\x1e\xc5\x6a\xaf\x48\x7b\xed\xcb\x4e\x10\x5c\x53\x32\xb3\x51\x89\x63\x28\x1e\x1f\xd8\x60\x02\x6a\x1c\x35\xbc\x67\xba\xcb\xc1\xc9\x69\x3c\xf1\x18\x89\xd9\xa9\x4f\x5c\x46\xcd\xff\x0d\xe2\xaa\xf6\x91\x2c\x65\xe3\x19\x15\x57\x57\x01\x8f\x0e\xd2\x56\x67\x01\x3b\x8e\x86\x1a\x49\x69\xa3\x07\x69\xac\x8b\x82\x22\x47\xa4\xb1\x96\x2b\xf4\x68\x01\xbf\x22\xe2\xd0\xc2\x15\x5d\xcc\x47\xdb\xc3\x35\xdf\xf5\xa8\x41\xdc\x3e\x6a\x61\x4b\x96\x2d\xe3\x7a\xdc\xf5\x3d\xf9\x59\x86\x1e\xdb\x06\x96\x9e\x74\xf2\xa3\x05\xf0\xa7\xe6\xdf\xb0\xd9\xec\x5f\xdf\x07\x5c\x89\xfa\xab\x11\x8a\xe0\x32\x8f\xdf\x57\x39\x88\xad\xc6\xdf\x02\xcb\x4c\xed\x03\xdf\x23\x94\xe2\xd1\x42\x2d\xa3\xfb\xd6\x50\xa3\x5a\x0d\x49\xdc\x59\xb3\x64\xdd\x08\x5d\xf0\xe3\xd1\x8e\x70\x50\xd0\xfa\x1f\xe1\x1a\xab\xf6\xae\x70\xf8\xd0\xf7\x78\x4f\xca\x00\x3d\xda\x1d\xcc\xab\xbe\x07\x7e\xc7\xc4\x98\x38\xb2\x36\xfc\xfb\x3b\xe2\x5a\x34\x1e\x5c\xa7\x15\x54\x3c\x1a\x9a\x8b\x2d\xa9\x4c\xdc\x56\x17\x7d\xf9\xc9\x74\x5b\x5c\x0e\x2c\x31\x97\xd1\xa4\x48\xb2\x8f\xcc\xb7\x9b\x24\x91\x8e\x1a\x51\xc0\xb3\xa3\x73\x1e\x14\x2a\x30\x3a\xae\xce\x56\x4b\x91\xb9\x35\xcb\xd5\x7d\x74\x6c\xa2\x8a\x43\x1b\xbd\x86\x37\x98\xbe\xaf\x41\x4f\x3f\xe7\xa3\x87\x64\x2e\xcd\x41\x27\x2d\xb6\xd2\x5a\x8f\x8e\x77\xef\x10\x3d\xed\x91\xc6\x5a\xf7\xab\xa3\xd6\x5b\xf3\xfb\x83\xc7\xa5\x03\xaf\x50\x24\x76\x77\xc4\x70\xb9\x76\x8e\xfe\x03\xb1\xfc\xd9\x8c\x1e\x9c\xb2\x17\x37\xe0\x63\x24\xd6\x77\xbc\x1b\xb2\x74\x92\x3d\x20\xde\x3d\xf8\x27\xe2\x4e\x5c\x46\x8d\xa3\xcb\x4e\x10\x53\x93\x1f\xfe\xe8\x2f\x69\x49\x75\x98\x3b\x58\x4b\xe6\xec\x7b\xf8\xc1\x7b\xb1\xd9\xfc\x22\xb5\xc1\xc0\x0f\x5e\xae\x85\x63\xec\x01\x37\xf1\xb9\x3c\x64\xe2\x6c\x56\xc3\x8d\x40\x09\x16\x71\x1c\x39\x88\xeb\x50\x19\xec\xaf\xec\xfa\x40\x11\xfe\xac\x07\x99\x36\xbb\x39\xe9\x01\x56\x98\x37\x7b\x80\x05\xa6\x20\xb0\x31\x70\x45\xf5\x63\x36\x90\x94\x2c\xa9\x8c\x48\x2e\x26\x49\x63\x80\xa5\xe4\xc7\x66\xfc\x60\x85\xa9\x3f\x82\xf8\xb2\x0e\x43\x04\x55\x29\xe2\x7b\x0c\x38\xd5\xaf\xef\x1b\xf9\x6c\x44\x3c\x46\x8b\xa0\x34\x8d\xef\x27\xee\x44\xf3\x5b\x9c\x6b\x15\x30\xde\x18\x18\x8c\xab\x1e\xcf\x41\xfe\x98\x5d\x8f\xc5\x40\xb2\xcb\x5e\xef\x11\x6a\x07\x7d\xcf\xf9\xeb\x22\x3e\x03\x1d\x72\xf1\x7a\x63\xf3\x49\x3a\x0f\xc4\x61\xf5\xaf\xfe\x50\x0b\x25\x8f\x17\x03\xbd\x39\x75\xe2\xb0\xba\x72\xfe\x8f\x31\x03\xb5\x5a\xed\x01\xdc\x29\x6f\xa2\x31\xce\x30\x30\xab\xbd\x2b\x1c\x38\xf4\xfd\x0f\x0a\xaf\xcb\xa0\x5e\xfb\x3c\x04\x5c\x46\x71\xb9\x22\x69\x68\x7e\x44\x90\x4f\x9f\x8f\x9b\x34\xd4\x22\x2e\x83\xc7\xf5\x6b\x7e\x00\x6f\x26\x9f\x5f\x1c\x68\x2c\x19\x13\xb7\x55\x15\x97\x33\x06\x41\x7f\xd9\xed\x83\x55\x96\x65\x03\x1a\x01\x3f\x24\xe6\x71\xf2\x38\x2a\x42\x7c\xcc\x1d\x6f\x44\x31\x3f\x91\xd9\xb2\x8a\xd8\xce\x1d\xe6\x4e\x6a\xac\x09\x71\x54\x9a\xec\x31\x03\xb8\x53\xcc\xe4\x0c\x6c\x32\xd1\x13\xe2\xbc\xba\xe2\xba\xc6\xc4\x86\x2a\x14\xee\x31\x09\x6a\x95\x6b\xf3\x98\x39\x98\xab\xcf\x79\x20\x8e\x2b\xcb\x75\x7e\x4c\xe0\x74\xe4\x3d\x3a\x66\x24\xd7\x93\xa4\x31\x01\xce\x34\x33\x37\x03\x7e\x46\x6a\xca\x89\x1a\x53\x0e\x18\x83\xb8\xa9\x9a\xdd\x1e\xe7\x55\xc0\xa3\x63\x8e\x40\xb0\xd0\x78\xb1\x61\x2a\x34\x63\xcc\x11\x71\x32\x6a\x6f\x60\x63\x92\xa6\x86\xb8\xaa\xe2\xf3\x38\xc9\x3f\x24\xec\xb0\x31\x23\x39\x99\x1e\x97\x89\x8d\x52\x40\x98\x63\x1e\x11\x54\xab\xf5\x38\xb0\x01\x7b\x7c\x78\xa7\x59\x6d\x3e\xcf\xb0\x79\xb9\x3e\x98\x41\xfd\x1e\xd4\x69\x4b\xa2\xc4\x35\xe5\xe2\xf5\x7f\x02\x78\x58\xeb\xf1\x86\x03\xc2\x9f\xb8\x22\x8f\x09\x64\xbc\xe0\x31\xc6\x11\xf0\x05\xe2\x5c\xc8\x34\xd9\x14\x81\x3c\x0e\x5e\x62\xc1\x87\x8c\x08\x5a\x52\xe6\xbf\x41\x26\xca\x6a\x9d\xe0\xb1\x11\x64\xd7\xdc\x1e\x06\x50\x11\x6f\x32\x53\x76\xa1\x82\x8e\x63\x8f\x4c\x7b\x1a\x0f\x41\x4d\xe6\x8c\x8f\x3d\xbc\x53\xd4\x3e\x71\x0d\xfb\x57\x7d\xe8\x54\xdd\x1e\xae\xc8\x22\xc6\x64\xaa\xcc\x8a\x13\x19\x47\x8a\xe4\x43\x1a\x0f\x41\x8e\x72\x75\x1d\x47\x02\x65\x55\xc4\x26\x82\x9e\x6c\xd0\x3c\x22\x99\x99\x0e\x1b\x41\x50\xf9\xfb\x7b\xfc\xf4\x3d\xbe\x0c\xe7\x24\x62\x71\x90\x8c\x4c\x71\x1e\xe3\xa8\xc1\xb9\x0d\x95\x2b\x6a\x15\x8d\x97\xc7\xc3\x3a\xd3\x83\x20\x45\xc5\x3d\x8c\x83\x64\x63\x72\x0d\x1e\xc4\x29\xd5\xe6\xf5\xe7\xf1\x10\xd6\xd6\x38\x5a\x1c\x66\x7f\xcf\x63\xa5\xc7\xf6\xc0\x9b\xeb\x6b\x7f\x40\xa1\x6d\x3a\xac\xc4\x35\x0d\x25\x23\x1b\x47\x0f\x1d\xba\xeb\x41\x24\xd0\x65\x38\x7a\x10\x3f\x97\x31\x98\x7a\x3c\x70\xc2\x36\x40\x1f\x24\x1b\x1b\x5e\x1f\xe2\x2a\x14\xd7\x33\x0e\xf2\xe9\x08\xf5\x78\x90\x59\xb3\xf9\xf1\x25\x8e\xa9\x66\xf7\x4f\xbe\x1c\x61\x59\x0d\xe2\x98\x9a\xe2\x78\xc6\x81\x77\xd2\xd4\xe5\x3b\x8e\x70\x2d\xd6\x7e\x85\x43\x82\xd7\x17\x6c\x29\xab\x0d\x0f\x38\xef\xad\xbb\xbe\xae\xef\x9b\xeb\x81\xe7\xf0\xfc\x43\xf2\xf4\xfd\x8b\xa0\x4c\x7f\x7f\xa2\x36\x12\xb1\x3a\x4e\x80\x35\x77\xd7\x13\x07\xe1\xfd\x3a\x71\xb0\xf9\xaa\xc7\xa6\x27\x49\xef\x38\xc3\xb5\x5d\xeb\x47\xf2\x30\xa5\xc4\x18\xc4\x61\x55\xa1\x24\x8f\x88\xbb\xb2\xc3\xc6\x11\x41\x97\x9b\xeb\x03\x08\xd6\xed\x91\xa2\x42\xcc\xe4\x41\xe6\x42\x79\x73\x8d\x03\xd7\xfb\x2a\x62\x19\x99\x44\xed\x90\x70\x84\x9a\x54\xc4\xff\xc0\x1b\xaa\x7b\xbf\x08\xc2\xb4\xc3\xc7\xf1\x44\x3e\x27\xf5\x8f\xcd\xb4\x7b\x3d\x9f\x40\x74\xd0\x7a\x3f\xe1\x3a\xec\x7a\x10\x2f\x7c\x3f\xdf\x1d\xc9\x4c\xf3\x23\x47\xbd\xe2\x9e\xc6\x41\x7e\x1f\x61\xf7\x8d\xe3\x25\xbf\x90\x88\x31\x71\x5b\x75\x9a\x3e\x10\x0a\x60\x7a\x79\x6e\x91\xec\xae\xaa\x0c\x84\xbe\xee\xfb\x09\xbd\xcd\x9b\xeb\x43\x72\xdf\x55\x0e\x6f\xbb\xcf\x78\x4f\x1c\xa8\xac\xa9\x39\x77\x24\x2f\xd1\x0b\x32\xa7\xd6\x5a\x5c\xee\xd0\x37\x7f\x8f\xc3\x8c\xee\xcb\x89\x26\xcb\xcc\xfe\x19\xf9\x84\xaa\xfb\xc3\x86\x3b\xf3\x9f\x3c\x2e\x04\x95\x35\xc1\x97\x8c\x33\x05\x1c\x86\x1a\x4b\x61\x43\x70\x7d\x24\x93\xd1\x62\x65\x80\x15\x75\x58\xce\xc8\xa9\xef\x72\x09\x62\xa3\xdf\x47\xc4\xb8\xd4\x1e\xa4\x61\x1d\xc2\xc2\x1a\x04\x91\x15\x01\x17\x8e\x13\x6f\x2d\xc1\x9b\x8c\xb3\x62\x30\x17\xa7\x78\xd6\xe0\xfc\x54\x6e\x61\xb3\xd0\x62\x11\x24\xa6\xb8\x8c\x71\x06\xdc\x81\x1e\x97\x33\xb0\xa9\xdc\x7f\x0f\x6c\x33\xf5\x0f\xe7\x2d\x94\xd8\xf1\x13\x44\x26\x62\x74\xe2\xbd\x91\x7d\x38\x70\xc5\xb4\x8d\xe0\x0c\x9d\xb2\x1e\x83\x33\x82\x38\x45\xac\xce\x19\x11\xdb\xfa\x3d\xde\x57\xca\x04\x39\x7e\x82\xc8\x34\x3f\x32\x71\xe6\xfe\x55\xc6\x1b\x44\x8f\x31\x99\x36\xfb\xd4\xe5\xb8\xf0\x8e\xb3\x5a\xe1\x2a\xf1\x38\xfb\x7b\xbc\xa5\x74\x99\x23\xae\xc9\x36\x90\xc8\xbc\x29\xf8\x9e\x41\xa6\xcd\x92\xa5\xf6\xbc\x22\xe8\x56\x8f\x29\x99\x32\xbb\xd2\xcc\x8e\x0b\x6f\x1a\x45\x9c\x8f\xab\x47\x1a\x6b\xf5\xdf\x03\x81\x40\xbf\xc7\xb5\x58\x41\x80\xe3\x42\xcd\x22\xd7\xe3\x11\x99\x29\xcd\x3c\x5c\x13\x49\x46\xeb\x7b\xcd\x88\x73\x50\x3d\x8f\xc3\xae\xf3\x76\x1d\x21\x89\xa8\x3d\xd2\x34\x2b\x3f\xcb\x20\xee\xa9\xda\x46\x77\x41\xfc\x6d\x43\xb8\x50\xd3\xd8\xfb\xed\x82\x73\xb4\xcd\x85\xcc\x94\xd9\x3a\xfb\xeb\x08\x9b\x92\xe6\x47\x90\x6d\x93\x8e\xfd\x3a\xe3\xf1\x52\x3d\xf9\x4e\x14\x67\x35\x2e\x24\x29\x01\xbd\x8e\xeb\x04\x25\x5c\x6a\xb5\xeb\xc4\x26\xea\xfd\x09\xac\xb0\xe6\xdf\x13\xb7\xf0\x55\x1f\xc4\x5b\xe3\xc7\xf5\xb6\x78\xbc\x38\xe0\x98\x93\xbd\x2e\xd4\x6e\x3e\x5f\x20\x00\x28\x4d\xf3\x20\xb3\x65\xa9\x5e\x6f\xbc\xed\x4a\xf7\xf7\xa1\xa6\x72\x7d\xe8\xf0\x5d\x46\x52\xd5\x63\x7a\x45\xd0\xb0\xe8\xc7\x45\xfe\xa5\xcd\xdf\xdf\xc4\xc5\x7d\xd5\x07\x62\x87\xe6\x87\x24\x98\x7c\x9e\x89\x1b\xb3\x43\xc3\x15\x9a\x13\xa9\x99\x22\xf3\xa5\xd5\xc6\x64\xbe\x2c\x5f\xe7\x11\x35\xd9\xfe\xf5\x7b\x5c\xcf\x8b\xbf\xe7\x7e\xfa\x3e\x04\xbc\x8c\xf7\x13\x6f\x3e\xdb\x6c\x88\x43\xab\xca\x37\x35\xae\x1f\x07\x1f\xad\xd7\x1b\xc0\x93\x9f\xf1\x11\x77\xd6\x94\x62\x61\x44\xdc\x99\x10\x1a\x06\x71\x66\x2d\x37\x97\x51\xb3\x69\x7c\xf7\x16\xf4\x23\xab\x0c\xb3\x2c\x4d\xc8\xbd\x87\x99\xa3\xa9\x1c\x8f\x91\xfa\x0f\x38\x30\x8d\x8f\x38\xa7\x9a\xfe\x08\x15\x79\xdc\x2d\xd2\x82\x6a\xf0\x11\x67\x30\x5d\x06\xf5\x53\x2f\x3b\x99\x20\xab\x80\xd5\x06\x99\x20\x8b\xe2\x56\x06\x99\x1d\x7b\xca\x2e\x63\xd3\x91\x64\x70\x93\x7f\x44\xf9\x53\xc6\x8d\x6b\x9b\xd5\x2c\x37\x97\x59\xd8\x3d\xe3\xe6\xb2\x99\x33\x24\xa8\xa8\xda\xf5\x91\xa0\xa1\x36\xbd\x78\xa0\x7e\xfa\xe5\x8d\xcc\x89\xde\xbc\x1b\x94\x66\xeb\xbc\xef\x40\x65\x16\x67\x7f\x07\xd0\x9d\x74\xe6\xc4\xfd\x64\x61\x43\x0d\xe2\x7a\x5a\xf3\xfc\xf0\x4e\x2b\x1e\xcf\x43\xd0\x9f\x1e\x2b\xe2\x76\x8a\x22\x76\x07\x99\x0f\x8b\x0d\xa4\xc4\xe5\x34\x73\x6a\x0f\xc9\x7b\xbc\x7e\xcf\x0e\x90\x9d\xc6\x47\x1c\x4e\x16\xdc\xc7\x78\x22\xc5\x80\xd4\x68\x0f\x40\x99\x02\xda\x1b\x0f\x0e\x13\x43\x97\xe7\x21\x28\x4f\x58\x72\x83\xcc\x7c\x4d\x39\xb3\x07\x71\x30\xd9\x6a\xa5\x87\xc7\xc8\x36\xb0\x07\x1b\x97\xe0\x4f\xc6\x13\x0e\x12\x1e\x4f\x8d\x88\xe4\xa6\x72\xf8\xe9\xab\xbf\x16\xc0\x7c\xea\xaf\x87\x41\x54\xbf\x0f\x04\x07\x9d\x97\x07\xb5\x84\x20\xed\xc7\x33\xc2\x86\xa2\xf5\xe2\x7c\x09\x18\x70\x3c\x01\x5f\x24\x1b\x05\xc9\xee\x8a\x5d\x99\x49\x76\x57\xed\x3d\xf3\x00\xc9\x6f\xef\xa9\x07\x35\xc1\xf4\xfa\x5f\x11\x21\xae\xdf\x13\x64\x66\xce\x9f\xe4\x74\x79\x0e\xff\x1e\x49\x4f\x9c\xe0\x03\x7c\x8a\x1f\xff\x27\xf2\xcb\x78\x7e\x4f\x78\x13\xea\xf7\xa1\x49\x98\x2e\xc3\x79\x4b\x92\x78\x42\xe7\xaf\xfb\xfa\x12\x4a\xa0\x20\xbf\xf1\xe2\xa0\xa3\xb8\xb2\xf1\x6e\xd8\xc8\x44\x4c\xdf\x3d\x52\x32\x34\x95\xc3\xa0\xeb\x32\x06\x5d\xdd\xa7\xf7\x27\x94\x60\xa8\x0c\x5c\x51\x76\x99\xcc\x94\xd5\xbf\x27\x0d\xee\xe6\xdf\x83\x55\xb7\xb9\x1e\x84\x0d\x31\x9b\x2f\x28\xda\xe5\xab\x8c\x9a\x4e\xfb\xf3\xa6\x50\xb3\xb9\x1c\x99\x47\xa7\xca\xd8\x70\xf5\xd8\xbc\x84\x2e\x08\x5e\x67\x10\x77\x54\xfd\x98\xbf\x39\x5c\x7f\xb5\x5e\xa8\xdd\x6c\x23\x7b\x23\x8e\xcc\xe3\x21\xc8\xdc\x0e\x48\x6f\x41\x32\xd0\x7d\x7b\x0b\x36\x44\x3d\xa6\x2f\xcc\xb3\x5d\x79\x5f\xb0\xe7\xf6\xaf\x72\xd8\x84\xd5\x5f\xa4\x41\xd7\x7d\x20\x99\x5d\x56\xfe\xa8\x41\x32\xbb\x52\xc4\x2c\xbc\x33\xce\xaf\xfa\x9b\xc4\x7d\x89\x3e\x90\xec\xad\x58\x52\x7f\xb1\xd1\xda\xdb\x31\xe2\x82\xac\x36\x7b\x03\x52\xff\xab\x1e\x87\x2c\xaf\x27\x36\x59\xdb\xd8\x22\xf9\xdb\xde\xff\x48\x72\x21\xc8\xa8\xec\x22\xe6\x6f\x00\x35\x8a\x18\xfe\x04\x0d\x55\xd7\x07\xb6\x8c\x06\x73\x83\xe5\x94\x5d\xc6\xa0\xad\x97\xfc\xc5\x75\xee\x6b\x71\x9e\xe0\x4c\x34\x58\xbc\x81\xcc\x69\xbf\x3f\x06\x34\xd5\xbf\x70\xfe\xcd\xe5\x04\x10\x9e\xfa\x0b\x88\x7b\x6f\x46\x78\xff\x88\x53\x7d\xc9\x77\x21\x2c\xae\x49\x50\x50\xd7\x78\x66\x64\x76\x93\x6b\xf2\xdc\x36\x38\xd9\xec\xef\xe3\x31\x48\x2a\x57\x20\xff\x5d\x8f\xc1\xf6\xa3\x06\x9c\x1b\x11\xea\xe2\xac\x27\x99\xdf\x7a\x6d\x2e\xe3\x00\xf0\xe1\x0c\x27\x99\xe0\xba\x92\x3b\x4d\xe2\x84\xba\x38\x9f\x49\x66\xb8\x3c\x3d\x9e\x1d\x31\x79\xd3\xf8\x7f\x2e\xbf\xbf\x0f\xf8\x98\xa6\x32\xeb\xf1\xe1\x74\x66\x24\x87\x93\x0e\x7b\x92\xfc\xad\xe6\xaf\xdf\x07\x36\xd6\xa6\x72\x20\x1c\xe8\xf7\x81\x95\x94\xb4\x1e\x04\x95\x0a\x35\x79\x6e\x29\x0c\x9a\xea\x3f\x6c\x58\xdd\xbf\x27\xa8\x74\xd7\xfc\x23\x88\x74\xaa\x1e\xe0\x3e\xe5\x30\x9f\x5b\x0e\x6f\x23\xb5\x8f\xb7\x94\x82\x1e\xe7\x96\x49\xe9\xe0\xf9\x41\x1c\x84\x8d\x34\x37\x1c\x42\x72\x53\x7f\x05\x35\xe1\xae\xfd\xc2\x55\x59\x69\x6a\x27\x71\x4f\x4d\xd8\x51\x73\x0b\x48\xfc\xa2\xfe\x20\x16\x8a\xa0\x9f\x5b\x10\x8b\x5d\xeb\x11\x06\xf6\xa4\xf1\xd6\x80\x0f\xd1\xf7\x35\xce\x93\xfa\x0f\xb8\x96\x5d\xed\x13\x67\x91\xbd\x7e\xa4\x19\x17\x62\xc5\xdc\x90\xd4\xab\xe7\x07\xea\x74\xf2\xf9\xa8\xb1\xbe\x1a\x4f\x8b\x7c\x45\x1a\x4f\x00\x69\x66\xd7\xa3\x26\xf6\xfc\x5a\xdc\x1f\xad\x17\xd8\x6e\xc3\xeb\x43\x90\xe6\xe6\xf3\x8e\x6b\xb6\x32\x77\x4e\xe2\xb8\x9a\x92\x59\xcd\xad\x83\x88\xb1\x6b\x7c\x68\x02\xf6\xaf\xef\x09\x82\xf4\xf9\xc2\x9b\x4c\x11\xe4\x93\xe4\x7b\xa5\x7a\xff\x7a\x30\x7b\x6e\x8f\xb4\xca\xbe\x9f\x23\x34\x31\x9a\x0f\xf0\x50\xc2\xda\x9a\x1b\x92\x71\xf7\xf9\x06\x21\xe4\xeb\xfc\x00\x1f\xa5\x20\xd0\x19\x71\x60\x42\xe8\x98\xdb\x08\x6c\x42\x9d\x8f\x1f\x4d\x85\xbf\x67\x3d\x86\xc6\x0b\x56\x9d\x52\x1c\xcc\x6d\x06\xaa\xbb\xbe\x0f\x6f\x38\x9f\xef\x1f\x9b\xb6\xe6\xc7\x63\xb1\x7b\x7f\x0f\x5c\xf5\x3d\xbf\x60\xc6\x7d\x1e\x50\xab\x8a\x59\x9b\xc4\x81\x65\x21\x40\xcc\x8d\xc7\x42\x6a\xe8\x19\x71\x61\xf2\xa6\x9b\x1b\x90\xfe\x52\xc3\xcf\x48\xf6\xd7\x7c\x3e\xb1\x41\xa6\xfc\x27\xae\xc8\x73\xc3\x95\x74\x78\xf2\x44\xe4\x2b\x68\x69\x12\xe4\x95\xa7\x89\x11\x06\xc4\xdd\x87\x01\x6c\xa9\xe1\xc3\xf3\x86\x37\x90\x36\x83\x20\x2e\xe9\x10\x27\x41\x5c\x55\xc9\xc9\xe6\x0e\x27\x25\xe0\xc5\xb9\xef\x04\x75\xe9\xf2\x93\xd9\xaf\xca\xef\x7f\xee\x64\xb2\x94\xc3\xc1\xdc\x53\x60\x8f\x7d\xfa\xdf\x33\x06\x5e\x11\x27\x32\xf3\x35\x45\xf4\x4f\x32\xf3\x35\xc5\x4d\x4c\x82\xac\xba\x80\x14\x27\x99\xfa\x5a\x75\x7f\xe4\xd4\x96\x37\xd5\x8c\xcc\x7d\x3e\x7c\x3b\x11\xee\x32\x28\xce\xbd\x85\x5a\x47\xe3\x01\x55\x5a\x3a\xf7\xb9\x63\x50\xcc\xc3\xdf\x13\x57\xa2\xcd\xdb\x81\x8c\x97\xcd\x67\xee\xa1\x96\xd3\x61\x20\x08\xab\x2a\xee\x68\xee\xe4\xb3\x50\xfe\x95\x49\xa6\xbd\x2e\xb5\xd5\xdc\x81\x80\x57\x10\xe8\xdc\x47\x18\x74\xd5\xdf\x24\xa8\xf3\xa3\x86\x9b\x04\x55\x75\x01\x1f\xce\x9d\xb4\xd6\x4a\x0b\x3c\x23\x93\x9e\x1f\xcb\x1d\x94\xe9\x54\x34\xbf\xc8\x54\xa9\xcb\x4f\xa6\xbd\x22\x49\x60\xee\x27\x6a\x82\x4d\xe3\x39\x89\xab\x18\x9a\xef\x15\xd8\x74\xaa\x07\xae\x62\x4f\xae\x8f\xfd\xd4\x7c\x91\x24\x8a\xd7\x0f\x57\x68\xa9\x71\x67\xc4\x49\x99\xb8\xef\x91\xec\xab\x6b\x7e\x57\xc4\xad\xa8\xbf\xc8\xd4\x97\xf5\x3d\xcc\x93\xe0\x91\xe6\x7e\xe3\x1d\xa6\xcb\x4d\xdc\x55\x93\x03\xc6\xdc\x51\xcb\xec\xc5\xf5\x38\x54\x88\xd8\x12\x87\xd5\x86\xe7\xf3\x04\xb1\xd5\x7c\x60\xbe\x92\xc7\xfb\x06\x3c\xc8\xa7\x4c\xdc\x52\x91\x01\x77\x92\x3c\x2f\x37\x3d\xf6\x89\x34\xb5\x8a\xbb\x99\x3f\x71\x4d\x1f\x66\x6d\xa6\x3d\xd4\x28\x4d\x65\xe0\x81\x74\xdf\x52\x8e\xfd\xd9\x55\x0e\xef\x37\xb5\x9f\x03\xf1\x40\xbf\x07\x08\xb1\x6a\xbd\x89\x33\xca\x92\x2c\x66\x42\xd2\x95\xf7\xe0\x4c\x38\xa4\x28\x74\x60\x92\xac\xae\xca\x01\x60\xa6\xf0\x56\x73\x19\xce\xdd\xcc\x15\x71\x49\x59\x6a\xf5\x99\x5a\xa4\x2d\x76\x19\xef\x26\x3d\x4e\x24\x9b\x6b\xf2\xb6\x9b\x69\x3d\x26\x5d\xf9\xab\x66\x0a\xc4\x81\xa2\xf5\x02\x98\x57\x69\x9d\x67\xc2\xbb\x4d\x69\x91\x67\xfa\x71\x18\x71\x19\x33\x82\x1e\xbf\xc4\xfd\x69\x6e\x3f\xd2\x3a\xbb\xbd\x13\xc9\x5c\x8f\x37\x71\x3c\xf5\x6b\xfd\x02\x3e\x4a\xf4\x34\x11\xf1\xff\xb5\x7e\xd8\xb4\x14\x27\x34\x23\x0e\x47\xd8\x6c\x33\x91\xaf\xaa\xe8\xf1\x4c\xa8\xed\x6a\x53\x7b\x2f\x41\x97\xae\x7f\x03\x41\xe1\xf3\x7b\xe2\x58\x8a\x99\x8f\x1c\xcc\xee\x70\x99\xc7\x6c\xfc\x89\xe4\x32\x33\x06\x1c\x65\x9a\x9c\x79\x07\x6e\x41\xc4\x2d\xef\xa1\xa6\xf9\x6c\x76\x86\x73\x95\x6b\xdd\xcc\x60\x35\x09\x5e\x60\x66\xbc\xaf\x5a\x77\xb9\x50\x3f\x55\x0e\x6c\x22\xf5\x87\x8d\x47\x6a\xa4\x49\xdc\x4c\x95\xc1\x75\xe6\x84\x77\x8f\x38\x9d\x1c\x62\xb0\x24\x8d\x5c\x02\xe2\x5e\xdf\x13\x71\x2f\x9d\xef\xcc\x05\x1d\xb8\x88\x71\x2e\xf1\xd8\xa9\xbe\xe2\x6d\x22\x49\x20\x57\xbc\x93\x3c\x9e\x16\x9c\xb0\xd6\xa3\x23\x29\xb8\xbe\xa3\x16\x10\x67\x9e\x3b\x8f\x8f\x0e\x43\x06\xfe\xa2\x79\xbc\x91\x26\x55\x9c\x3a\x71\x2d\xb5\x7a\xbd\xb1\xb1\x08\x6b\x69\x66\xd4\x86\x5d\x8f\x3f\x99\xe3\x72\xd5\x61\xcf\xe8\xf4\x2d\x69\x91\x39\xae\x6f\x1e\xdf\x89\x4d\x49\x8f\x41\xbe\x42\xcd\xa8\x7a\x82\xc6\xe4\x9a\x3b\x49\xbe\xd6\xa4\x36\x99\x19\xe6\xc2\x9c\x1e\xc9\xd6\x4a\xf5\x7c\x5f\x6c\x44\xe2\xdc\x4a\xa4\x05\xd6\xfc\x0b\xde\x44\x43\xe7\x85\xe4\x62\xb5\xe8\x32\x97\xb0\xe9\x89\xb9\x20\x99\x57\x57\xd0\xed\xfc\x24\xef\xd2\xf7\x81\xa5\xa5\xc7\x2b\xe2\x36\xa4\xf6\x9b\x05\x44\x03\xb9\x7a\xce\xd2\x23\xa7\xfb\x67\xfc\x15\x04\x04\x5f\xb6\x8a\xcd\x4c\xd8\x5d\xb3\xc2\xc9\x5a\x92\xac\x3c\xd6\x42\x44\x98\xe4\x6b\xc9\xb5\xfb\xf7\x81\x90\xf0\x19\x5f\x05\xbb\x4a\x36\x94\x59\x03\xa8\x51\x97\xb3\x02\x84\x2a\x83\xf6\xac\xb8\xe2\x5a\xb2\xab\x47\xb8\xc2\xaa\xbd\x80\xc4\xdf\xd4\xdf\x41\x3e\x9a\xaf\x32\xde\x3f\x5a\xdf\xfa\x93\x36\x57\xf5\xd8\x5c\x94\x9f\x65\x92\x9f\xa5\x4a\x2d\x3d\xc9\xaf\x52\x15\x34\x37\x2b\x6a\xc0\xa9\xfb\x10\xf9\x54\x9a\xd7\xeb\x26\xc8\x77\xb8\x1e\xb5\x4b\x77\x99\x7c\x50\xa2\x17\x15\x04\x02\xd9\x74\x27\xf9\x54\xaa\x34\x13\xb3\xed\xf1\x18\x7f\xe6\xfb\x93\xbf\x44\x92\x5a\x0b\xef\x32\xed\x77\x4b\x11\xe7\xf5\x69\xbf\xc1\x4c\x2a\xa8\x74\xb6\x70\x98\xd1\x63\x8c\x2b\x77\xb5\x24\xd0\xf0\xe6\x14\xd6\xd9\x24\xbf\x49\x17\x7c\xd1\x6c\x25\xd4\xfe\xfe\x3e\xf2\xa1\x34\x95\xb1\xf9\x89\x39\x68\x05\x49\x4a\x8f\xe5\x8f\x6b\xb8\xe7\x83\xeb\xb7\x0c\xea\x13\xd7\xef\x6e\xc9\xa7\xa1\x16\x53\x72\xb3\x89\x2b\x78\x6d\x1e\x1f\xae\xe0\x66\x56\x1a\x40\xc2\xd6\xc4\xb4\x46\xc4\xbc\x98\xbf\x48\x99\xa2\xcc\xb1\xb3\xb5\x40\x8c\x50\x19\xb3\x87\x92\x2b\xce\xd6\xe3\xf7\x1a\x1f\x71\x49\xcd\xed\x91\x0f\x29\x6f\xfe\x3d\x0e\x14\x6d\xff\x93\xc7\x85\x7c\x2b\xe5\xff\xc7\xd8\x9f\x23\xd9\xef\xf3\xc0\xa2\xe0\x56\xbe\x25\x88\x33\xe9\xfc\xf7\x42\x80\x52\x7b\x6d\xf4\xfe\x8d\x0e\x25\x4a\x99\xe7\xbe\x78\x37\xe2\xe7\xd5\x29\x4a\xe2\x04\x82\x18\x13\x8c\x7e\x58\x1d\x35\xa8\x99\x21\xbd\xfa\x0c\x4d\x84\x93\x9b\xa8\x7c\xa8\xcd\x98\x91\x91\xce\xc1\xbe\x87\xaf\x75\x5e\x26\x1d\xa1\xa3\xeb\xe7\x7d\x5c\x16\xbc\x0c\x3a\xb0\x85\xe8\x30\x5a\x1d\x6a\x63\xd6\xe6\x20\x89\x90\xf0\x0a\xab\x43\x8d\x64\xb1\xa0\xd5\x17\x20\xb5\xb5\xd8\x2b\x24\x6b\x3e\xbf\xa3\x32\x21\xc7\x07\x07\x2c\x6b\x6a\xaf\x0e\x1b\x22\x43\xa7\x57\xb7\xa8\x6f\xc2\xf9\x47\x7d\x0a\x8d\x07\xa8\xa9\xcc\x73\x58\xdd\x23\xda\x83\xeb\x01\xb8\x90\xcc\xcb\xa8\x87\x59\x91\x97\x43\x8f\x4a\x70\x45\xdf\x83\x83\xbe\xeb\xfd\x88\xeb\x57\x3b\xea\x73\x68\x3d\x21\xc9\x30\xce\x7d\x75\x48\xe6\xac\xd4\xb7\x3a\xcc\x96\x92\xac\x3a\x42\x61\xa7\xd6\x1f\x40\x74\x92\x74\x91\x07\xd0\x18\x9a\xba\x90\x07\x30\x08\x0f\xb3\x50\x4f\xa6\x4b\x4d\xee\x51\x6c\x49\xfb\x05\x07\x28\x1d\x94\xab\xdf\x11\xed\xc4\xc3\x01\x9f\xd3\xd4\xfa\xc1\xcc\x99\x74\x98\x1e\x1c\x16\x1d\xe6\x07\xd1\x44\xd4\x6c\x3b\xcc\x9e\x32\x03\xf5\x07\x36\x78\xd1\x1f\x42\xd1\x19\xca\xba\x90\x77\xd0\x58\xc9\x71\x8d\x2b\x24\xd9\xca\xdf\x08\x4d\xa6\xa4\x3e\x50\x8c\x8e\x3e\x85\x35\x52\x48\x9a\x83\xbf\x41\xef\xbc\xbc\x06\xcc\x8c\xf4\xd9\x2d\xe4\x21\x34\x99\xdd\x50\x5f\x66\x74\xb5\x43\xd3\xa6\x83\x7f\x0d\x00\x5b\x16\xf5\x0f\xe6\x48\x2c\xa8\x35\xc2\x27\x50\x38\x9f\x12\x9a\xe6\xb7\xff\xa3\x86\x0d\x9e\xcf\x47\x28\x2e\xd7\x67\xc0\x47\xc6\x24\xe7\x35\x02\x45\xf9\xe7\x77\xac\x47\xe3\xef\x90\x8c\x3b\x7f\x23\xfa\x90\xf4\x8d\x7a\x34\x95\xc5\xd7\xd6\x80\x26\x41\xc4\x83\x35\xa2\xd2\x24\xe9\x63\xf4\x88\xd6\xe3\xf3\x91\x37\x41\xe6\x3c\x70\xb9\x33\x9a\x72\x8d\x11\xa1\xc1\x1c\x0f\x34\x6d\xe6\xbd\xac\x11\x3e\x34\xad\x17\xe0\x4c\x58\x63\x7f\x0d\xc0\x93\x2c\xcd\x7f\xe3\xf2\xa6\x66\x3c\x10\x60\xb1\xb4\x7f\x3b\xcc\x9a\x1c\x0f\xce\xa3\xcc\x68\xc3\x23\x94\x9f\xfb\x7f\x10\x8a\x4b\xfa\x8c\xfa\x32\xac\xb4\xbb\x50\xef\xa5\x13\xe8\x73\x0d\x44\x97\x49\x78\x88\x54\x89\x4c\xfe\x35\x1e\x68\x1e\x34\xc3\x4d\x98\xe9\x27\x35\xe7\x89\x12\x1e\x74\x43\xac\x19\xd1\xba\x3f\xbf\x91\x17\xc4\xf9\x23\xd5\x62\x30\x09\x72\x4d\x98\xe9\x59\x2f\x6a\xcd\x0b\x3e\xa7\xac\x76\x68\xc6\x45\xdf\x83\x99\x95\xc2\xd7\x4c\x88\x36\xe5\x7c\x27\xce\x87\x2c\x07\xa8\x5f\x53\x57\xfe\x17\xe0\xca\x35\xe1\xd0\x2b\x59\x1f\x0b\xe0\x3a\x4e\x36\x05\xb1\xf2\xe3\x91\xe4\xa5\xc9\x16\xe4\x75\x90\x59\xcc\x82\xd0\x64\x32\x87\x09\xec\x1f\x1d\x06\xe4\x85\x34\x46\x03\x2d\xe4\x81\x14\x11\x0f\xf2\x40\x3a\x8b\x37\xad\xc8\x03\x99\xea\x0f\xd8\x40\x53\xe3\x09\xcd\x43\x9b\xd5\x00\x0f\xc1\xc3\x38\x5b\x40\xd6\x73\x33\x80\x05\x26\x4d\x6d\x76\xa0\xfe\x56\xfd\x0e\x66\xcf\xef\xf7\x60\x5e\x9c\x4f\x07\x71\x50\x52\x9c\x01\x9f\xc3\xc3\x31\x23\x49\x91\xcc\x61\x02\xde\x82\x0e\xff\x35\x11\x3d\x43\x08\xf2\x35\x03\xa2\x9b\x92\xc5\x44\xb1\x30\x26\xb1\xad\xbf\x3c\x08\xcd\x17\x0e\x61\x1d\x66\xe4\x3d\x34\x02\x03\xae\x09\xe6\x4f\x6c\xa4\x35\x03\xbe\x86\x9a\xdf\x44\xe8\x25\x33\xba\x57\xd4\xaf\x21\x56\xdc\x9a\x28\x06\x46\x20\xd3\x35\x9f\x88\xbe\xe1\x78\xa3\x66\x7b\xd7\xf3\xe1\x60\xfe\xc6\xb7\xc2\xc1\xcc\xf5\x5d\x00\x16\x65\x68\xf3\x5a\x08\x55\x67\x92\xe9\x5a\x81\x4d\x47\x7a\x40\x9e\xc5\x60\x28\xef\x8a\xbc\x8a\xa1\xef\x21\x43\x98\xa1\xbb\x6b\xa1\x58\x18\x33\xda\xd7\x02\x0a\x32\x51\x92\xd7\x42\x99\xe5\xa9\xf1\xa1\xd8\x12\x8b\x25\x2d\xd4\xbb\xa9\xba\xec\x17\x34\x5d\x26\xa5\xae\x85\xbc\xa4\x8b\xcc\x71\x81\x1e\x2b\x0f\xdf\x6a\xd0\xdc\xb9\x5f\x0b\x66\x52\xa2\x32\xaf\x85\xd0\x72\x96\xc1\x5d\xa8\x97\x33\x18\x5a\xbb\x22\xaf\x81\x49\x6d\x6b\xad\x58\x2f\x3e\x8f\x68\x38\x3a\xa4\xd7\x0a\x4d\x46\xe3\x03\xfd\xfd\xac\xcf\x0e\xac\x28\x8e\x67\x87\xb0\xa8\xe7\x01\x3f\x42\x4d\x06\xf5\x66\x06\xe1\x9c\x16\xea\xcd\x0c\x86\x8a\xaf\x65\x11\x9a\xac\xe7\x01\x0c\xc9\xcb\x06\xf5\x63\xea\x22\x7d\xae\x13\x01\x41\xec\x2f\xcc\x8a\x43\xed\xc8\xab\xa2\x30\x82\xfa\x30\x45\xfc\x61\x41\xd8\x61\xe5\xd5\xb5\xc2\xac\x48\xe1\x77\xfd\xe5\xfd\xb0\x1d\xf4\x2d\x66\xbb\x9e\x40\x75\xe6\xf8\x1e\x54\x2e\xe5\x79\xd8\xf0\xb1\xca\x8c\x8b\x54\x8a\x46\x94\xe7\x85\xfa\x2d\x83\x49\xe0\x6b\x67\xe4\xa9\x50\x92\xdf\x05\xd1\xa1\x14\xc6\x90\x7a\x30\x08\xaf\xb4\x50\x7f\xa5\x35\xd2\x33\xea\xa7\x54\x86\xae\xaf\x0d\x54\x6b\x46\xdb\xae\x0d\x33\x22\x11\x47\x16\xea\xa7\x0c\x86\x0a\x2f\xa4\x22\x14\x86\xe2\xaf\x1d\xf4\xc3\xf3\xba\x1b\x4a\x94\x50\x78\xd8\x61\x66\x6c\x7a\xff\x81\x99\xfc\x5b\x8f\x1d\x01\x02\x14\xb6\x36\x2a\xc1\xea\xf2\x40\x2a\xc2\x90\x99\x7f\xf7\xa8\x3f\xc5\xef\xed\x28\x5b\xfe\x2f\xd1\x62\x6b\x1b\x88\x93\x97\xc1\x46\xa8\x1f\x1d\xe6\x6b\x43\x2d\x26\x7c\xc6\xda\xa8\xa1\x3c\x34\x79\x64\x4c\x2f\x0d\x06\x70\x04\x72\x10\x21\x6e\xba\xc9\xc1\x69\x90\xe4\x98\xe1\xbf\x2c\xd4\x5e\x5e\x4e\x06\x07\x6f\x26\xb3\x34\x14\xc3\x21\xfc\xc5\x42\x68\x73\x21\x64\xff\x32\xa8\xb5\xd2\x6c\x0c\x40\x95\xb2\xc9\x5a\x45\x80\x01\x99\xbf\x81\xb9\x30\x43\x79\x21\xf4\xb9\x4b\x12\x89\x7a\x18\x5d\xe3\x6b\x60\x86\xd4\x64\x10\xca\x5c\xe5\xd0\x35\x40\x7c\xcb\xa1\x6e\x0b\x70\x1a\x9a\x0f\xb0\x9b\x98\x01\xbe\x2c\x42\x55\x79\x98\x6d\x23\xe9\x53\xe3\xf7\x80\x8b\xe1\x7a\xc1\xec\xc0\xe2\x6c\x0b\xf5\x1e\x0a\xb1\x91\x96\xdd\x71\x99\x7f\xed\x1e\xc5\x90\xc8\x3c\x3d\xc1\x87\x41\x9f\x17\xea\x3f\x34\x86\x42\x2f\x4f\x51\xb3\xfd\xeb\xdf\xa3\x26\x3e\x99\xa1\x17\x64\xa8\x93\xb9\xfa\x5f\xd2\x28\xdb\x11\x5d\xa6\x80\x08\xaf\x21\x79\xf3\xf7\x7b\x18\x2a\x43\xbb\x97\xdf\xa1\x49\x71\x7c\x28\x16\x45\x48\xfe\xe5\x51\x39\x90\x97\xb1\x23\x29\x90\x25\x02\x56\x84\x76\xca\x4c\xea\x90\x14\x19\x5a\xba\xce\x05\x4d\x8c\x87\x11\x10\xfc\x5d\x3e\xb5\x83\xfa\x2d\x92\x14\x4f\x86\x66\x4c\xcd\xe2\x14\xc0\x9b\xf0\xfb\xa7\x21\x89\x8d\x9a\xcc\x81\x19\x83\x95\x23\xd7\xe9\x51\x7c\xa9\xf0\x37\x24\xfd\xa2\xdf\x30\xfb\xa8\x7f\x38\xbc\x99\x11\xbf\xce\x0e\x78\x13\x8e\x1f\xc2\x09\x33\xde\x57\x40\xb4\xcb\x87\x74\x1c\xfb\x4f\x66\x71\x0e\x2a\x6b\x72\x7d\x4f\x24\x1d\x73\x3f\xcf\x1f\x90\x25\xc7\x8b\x80\x17\x31\xeb\x03\xc4\x02\x49\xf2\x37\xce\x2b\xf3\xd2\x16\xa2\x13\x2b\x11\x1d\xd6\x3d\x22\x1a\x6d\xf0\x37\x92\x9a\xb9\x5e\x77\x58\x3e\x48\x3f\x77\x14\x73\xe3\x7a\xdc\x2b\x84\x9f\xc6\xdf\x05\xed\x95\xbf\x51\x42\x82\xc2\xc1\x1d\x65\x9f\x69\x49\xb9\x91\xd4\xad\x00\x84\x7b\xc7\x79\xe6\xef\x08\xdd\xa6\x59\xf6\x36\xb4\x73\x7d\x6e\x0b\xf8\x23\x8e\xc7\x90\x0a\xc1\xf3\x73\x3b\xf2\xee\x34\x3f\xc0\xb3\x54\x5e\x5e\x77\xa0\x1c\xf3\x32\xba\x0f\xf2\x62\x28\x0c\xdc\x07\x96\x18\x6a\xce\x37\xb0\x10\x99\xf1\xbe\xee\x13\x49\xc1\xfa\x0d\xb3\xfa\xa5\xdf\x08\xa5\xd7\x7c\x81\x7d\x28\xcd\xe7\x06\xfd\xb3\xf8\xdd\x7a\x10\x8a\x7c\xd1\x0c\xf6\xc4\x65\x49\xfe\xf7\x00\x6e\x88\x49\xe0\x0b\xd1\x81\x85\x40\xa5\xeb\x81\x30\x56\xc9\xff\x23\x7a\x8e\x01\x5d\xeb\x09\x1f\x35\x85\xf3\x07\x01\x2e\xed\xdf\x2e\x17\x84\xc6\x75\xe6\x1d\xac\x07\x19\xe2\xcc\x5b\x58\x4f\x84\x92\x72\xf1\x1e\x1c\x1e\xc2\x7f\xac\xe7\x95\xf4\x1b\x43\x25\x17\x20\xc1\x07\x51\x6a\xd7\x83\xc3\xb5\xe8\x03\x00\xa4\x77\x63\xe5\xc3\xf5\x4c\x94\x51\xe5\x66\x3f\x0b\x71\xe8\x94\x8c\x9e\x05\x07\x21\x0f\x4b\x84\xde\x51\x72\xdd\x7e\xd5\xff\xfe\x97\x18\x4a\xb8\xfd\x95\x6c\x17\xb1\x97\xb6\xbf\x8b\x97\x18\xbd\xb4\x3d\x57\xfc\x1e\xfc\x7d\xbf\xcf\x7f\x37\xf3\xf6\xf7\x32\x4b\xcc\xb3\xd9\x5e\xf1\x7e\xe2\xfb\xef\xe2\x26\x86\x5e\x6f\xe4\x85\x2c\x26\xa9\x6d\xd4\xbb\x49\xf4\x41\x6d\x6f\xe8\xef\x33\x6b\x6d\x7f\x35\xab\x44\xcd\x62\x7b\x43\x7f\x1f\xb3\xd9\x3e\xf0\xfc\x27\x49\x6c\xe4\x85\x2c\x96\x59\xdd\xc8\x0b\x49\x29\xb3\xbf\x99\xd1\xce\xef\x2f\x8c\xb7\xb0\xff\x85\xef\x15\xb5\xbf\xf3\xa5\x66\xb2\x91\x97\xb1\xaa\xd6\x6b\x63\x3c\x95\xef\xdb\x7e\xdb\x1b\xdb\x5f\x49\x35\xb1\xf8\xda\x46\x1e\x43\x62\x71\xb4\x8d\xbc\x85\x44\x20\xcc\xed\x8e\xef\x35\xf6\xff\x4a\xaa\x89\x79\x03\x1b\xf5\x6c\x16\x51\x73\xb7\xbf\xcc\x32\x31\xf4\x7a\x23\xcf\x20\xd1\x66\xbf\x71\xf9\x2c\x96\x7d\xdd\xc8\x33\x48\xd4\x14\xb6\xdf\x98\xcf\xe4\xf8\x6e\xf4\xdf\x39\x9e\x07\xeb\x35\x39\x9e\xf7\xf2\x4a\x49\xfd\xbf\x87\x77\x31\x69\x72\xa3\xfe\x4d\x62\x34\xe5\x46\xde\x41\x62\x19\xd8\x8d\xbc\x83\x45\x07\xf8\x46\xbd\x9b\x44\xd4\xdc\x7d\xde\xc3\xbd\x98\xd7\xb1\xcf\xf5\xbc\xed\x9f\x26\xbc\x51\xdf\x66\xd1\xcc\xb9\x4f\xc2\xfa\x7e\xc2\xc3\x46\x3d\x9b\xc4\xfa\x37\xfb\x24\xcc\x87\xf3\x3f\x41\xdf\x9c\xef\xc9\x0b\xbf\xd9\x5f\xc1\xfb\x8b\xfd\x05\x7d\x2f\x7e\xbf\xbe\xeb\xcf\x3c\x8c\x7d\x2a\xd6\x7f\xf1\x7b\xf5\x3d\x4f\x34\x4b\xee\x53\xf1\xfd\xc5\xef\x37\xf4\xbf\x38\xfe\xa0\xf7\xc5\xef\x81\xde\x89\xea\xbd\x71\xf9\xa6\xac\xf5\x7a\x25\xe9\xc5\x7a\x38\xfb\xf4\x82\x76\x8e\x77\x5c\xf8\xcd\xf9\x0e\xac\x27\xcf\x3b\xea\xb9\x24\x0a\xbf\xfb\x4c\xac\x27\xf7\xf7\x4c\x47\x3b\x9f\xc7\xf9\x60\x80\xd0\x3e\xfb\x1d\x2f\x99\xe9\x3e\x36\xf0\x9b\xdf\xf3\x68\xe7\x7a\x80\xbe\x89\xb2\xbe\xcf\xab\x89\x2d\xd6\x23\xda\xe7\x60\xfc\x85\xf3\x3d\xe8\xbf\x70\x7e\x37\xfa\x2f\xec\x0f\xf4\x4d\x9f\xf6\x3e\x4f\x3c\xcf\xfe\x1e\xcc\xef\x13\x36\x37\x52\x17\x16\x85\xd9\x7d\x5f\x2f\x3f\xca\x3c\xbf\xf7\xf5\xf2\x23\x5e\x4e\xfb\x7e\x85\xcd\x44\xd4\xf9\x7d\x27\xf4\xf7\x09\x6f\xfb\x2e\xf1\x9b\xdf\x2f\xef\xf9\x1a\xe4\x1f\x77\x79\xcf\x17\xa3\xd1\x36\x52\x19\xd6\xa8\xf5\x1f\x2e\x97\x8d\xfa\x1f\x29\x37\x76\xfe\x4a\xfa\x8b\x37\xfd\x46\x1e\x43\xca\x64\x26\xf7\xcb\x5c\x17\xa3\xad\xf6\xfd\x4a\xfe\x6b\xa8\x73\x10\x1b\xa3\x31\x36\xea\x83\x24\xa2\x04\x6f\xd4\x07\x59\xb4\x81\xef\xbb\x75\xb4\x73\x71\xda\x4b\x3c\x43\xef\xbf\x6a\x5b\xca\x64\x0e\x77\xc7\xe2\x93\x18\xef\x20\x3e\x32\x87\xfb\x65\xbe\x8b\x3e\x98\x7d\x07\x71\x4d\x7e\xcf\xde\xf1\x4e\x2d\x9e\xe3\x7d\x1e\xde\x3b\x88\x89\x87\x17\x92\xca\x9a\x9a\x6f\x10\x0b\x0f\x27\x24\x8b\xc4\xa4\xad\x8d\xbc\x85\x44\x20\xbb\x7d\xbf\xcc\x6d\x4d\x8d\xf7\xc6\x66\xf3\xf0\x42\x12\x49\x0c\x1d\xdc\xc8\x73\x48\x34\x43\xed\x3b\x88\x8d\xc4\xf4\x80\x58\x18\x1a\xbd\x9f\x97\x39\x25\x86\x26\xef\xa7\xc4\xef\xce\xdf\xe9\xbf\xff\x2d\x9a\xbd\xf6\xf3\x6a\x22\x89\x36\xe5\x8d\xbc\x80\x45\x20\xc1\xfd\x80\xd8\xa8\xc9\x6d\xc4\xfd\x2f\x46\xeb\x6c\xc4\xfd\x27\xc2\xb9\xec\xe7\xbd\x7c\x17\x35\xd5\x8d\xfa\x24\x89\xf5\x4f\x36\xea\x81\x24\xd6\x9f\xd8\xcf\x44\x3b\x0f\xef\x33\xd1\x1f\x2f\x53\xd4\x07\x49\x44\xa1\xde\x10\x2e\x12\xd5\xfa\x0d\xe1\x22\x15\xcd\xc7\xf0\x9b\x87\xf5\xc1\x7e\x16\x1e\x56\xd4\xdb\x48\x17\x13\x73\xf6\xe3\x86\x07\x38\x40\xdc\x7e\x17\x33\x59\x36\x82\xe9\x13\xcb\x3f\xed\x07\x3b\x4e\xdc\xea\xfd\x3c\xd1\xce\x15\xc6\x8e\x31\xde\xc8\x2e\x5c\x3f\x0c\x86\x36\x14\xa5\x48\x0c\xae\xb5\x2b\x76\xec\x1b\x90\x21\xb8\x3c\x31\xfe\xcd\xae\x8c\xef\x7d\x27\xce\xae\x1a\xbf\x17\x7f\xbf\x2b\x7a\xa5\x9f\x07\xde\x29\x32\x4f\xd0\x10\x3d\xfd\x3e\xc0\x11\x55\x8c\xa0\x73\x04\x10\x80\x2e\x4a\x00\x86\x78\xea\x44\xdb\xa9\xa1\xee\x44\xba\x18\xc3\x66\xd7\xab\x7f\x26\xc6\x98\x19\x0a\x51\xbc\x0f\x54\xfe\x03\xdb\xdc\xd9\x65\x03\x99\x76\xf6\x10\xdb\x3e\x38\x84\xd8\xf6\xc1\x1e\xe7\x3b\x82\x8b\x51\x9e\x86\x90\xde\xc4\x40\x19\xbb\x70\x29\x5c\x8c\xb4\x31\xc4\xf8\x26\xe2\x4a\x19\x6a\x3d\xbc\x0f\xb0\xcb\xa0\x94\xc9\x2f\x6e\x50\x02\xef\x09\x43\x54\xee\xfb\x0f\x0e\xda\xf0\xc9\xc5\x41\x59\x8e\x07\xf8\x49\xc3\x56\x2c\x7d\x01\x5d\x2c\x7e\xc0\xb1\x6e\xb9\x72\x90\xa0\x25\x56\x97\xb1\xeb\xd5\x63\x12\xf1\x46\xec\xc2\x55\xc3\x70\x15\x43\x81\x85\x44\x70\x16\x43\x41\x83\x74\x91\x1d\x58\x02\xf1\x50\xd6\xb4\x04\x59\xe4\x22\x3f\x30\x94\x38\x78\xff\xf1\x7d\x32\x81\x9c\xea\x77\xc0\x2c\x65\xc7\xef\x6f\x48\xa9\x60\xcc\x45\xff\xa8\x18\x73\x61\x17\xa0\x3f\x06\x63\x5b\x6a\xf1\x7b\xf1\x37\x3e\x58\xaf\x7f\xb8\x6e\x2c\x75\x8c\x9f\x0b\x94\x46\xbc\xcc\x8f\xcf\x68\xe7\x60\x66\xcc\x6f\x72\x7e\xaf\x30\x9d\x18\xcd\x67\x28\x31\xf0\x3e\xc0\x15\x9a\x86\x07\x38\x3c\x5c\x00\x17\x83\xc1\x0d\xf1\xb2\x89\x85\xe6\x2d\x2d\xcc\xa7\x71\x08\xa0\x1b\x1a\x02\x0d\x75\x03\x12\x75\x69\x43\x3c\x6a\xa2\xee\x6a\x88\x2f\x4d\xf4\x32\x5a\x8a\x3d\xe7\x79\x4d\x07\xa4\xfd\xfb\x8f\x97\xb4\xa9\x8f\x59\x82\xfc\x5b\x3b\x3b\x7c\xf0\x41\x1e\xb6\xf4\x2c\xfc\x66\x87\x0f\xa6\x5c\x27\x17\xf1\xc1\x94\x79\xd8\x80\xbc\xff\x3e\xc0\x1e\x1e\x4c\xf9\x53\x77\x0d\xd0\xfa\x89\x12\xbd\xe5\x04\x1a\x60\x02\x8a\x21\xa6\x34\xd5\x4f\xa4\xb6\x0c\x11\xf7\xa2\x0c\x6d\x39\x61\x4c\xdf\x35\x6b\x19\x32\x6e\x1d\xec\x01\xd7\x48\xe5\xe1\xcb\x90\x69\x35\xe4\x1c\x44\xc4\x11\xe6\x20\xa2\x4f\xa6\xb6\x1c\x74\xf2\x5d\xcb\x96\x83\x4e\xb8\x89\x79\xa2\x7f\x1e\xd5\x0c\x1d\x8a\xb9\xed\x96\x37\x8e\x2e\xa3\xb0\x2d\xef\x57\xce\xf9\x99\x00\x84\xca\x8b\xc1\x09\x96\xc1\x1e\xe8\xff\xb3\xbc\xc1\x4f\x7a\xd6\x1b\x8e\x07\xd8\x05\xd8\x07\xb1\x3d\x2c\x5b\xc5\x6f\x7e\x10\x74\xc2\xe8\x0d\xcb\xa0\x13\x02\x43\x19\xf0\xd7\xd3\xc5\x52\x5f\x86\xc0\xcf\x44\x3c\x00\xcb\x67\xc7\x03\x5c\xe4\x63\x78\x80\x23\xc0\xcd\x74\x31\x5a\xd0\xf2\x39\x78\x80\x43\xba\xe3\x8b\x1c\xd2\x5d\xf0\x02\xd9\x36\x30\xd5\xdf\x7f\xf0\x93\x10\x67\x9a\x26\xfd\x80\x32\x58\x69\xd7\x32\x84\x5d\xfa\x94\x0d\xd1\xa5\xa9\x7d\xf2\x81\x15\x90\x56\x23\x77\x28\x29\x36\xe2\xd3\x76\xac\x40\x3b\x62\x6e\x93\x15\x5c\x2d\x17\x25\x4a\x2b\x20\x8d\xf6\xf3\x1b\xb7\x15\x03\x66\xad\xf4\x1e\xff\xe0\x27\xfb\xfb\x09\xa2\x88\x58\xe9\x33\x1e\xe0\xa0\xfa\xc2\x03\x7a\x61\xc7\x03\xec\xa3\x63\x65\x7f\x5e\xb8\xf1\x5b\xed\x0f\x5e\xe0\x99\x2d\xb0\x01\xb4\x9f\xdf\x18\x34\x2f\xcc\x02\x36\x75\x31\x7f\xd8\x10\xd8\x99\xe8\x4e\xb4\x82\xfb\x8c\x16\x6e\x43\xa0\x67\xa2\x92\x65\x05\x5c\x87\x30\x68\x56\x82\xfa\xf4\x3d\x8f\x76\x8e\xd8\xb1\x4a\x53\x1b\xe3\x98\x02\x4f\x5c\xf1\x27\x1e\xe0\x2a\x05\x3d\xf2\x08\x02\x52\x3c\x5d\xf4\x10\x5b\x81\x9e\x4f\xe4\x3f\x2b\xb8\xbc\xae\x49\xe6\x5d\x0e\x96\x75\xea\x8b\x3b\x1e\xd0\x27\xb1\xac\xda\xfb\x20\x58\xe6\x3e\x58\x09\x82\x25\xf3\x2e\x77\x8c\x89\xab\x04\xd5\x8b\x4e\x6c\x2b\x41\x9e\x8b\x23\x00\xa7\x6b\xeb\x5f\x8a\xee\x5b\xc5\xdd\xc9\xf0\x32\x43\xac\x69\x22\x7e\x88\xd5\xa0\x4c\xf2\x90\x9a\xe3\xf9\xce\xdf\x98\x1e\xbd\x18\x86\x60\xd4\xc4\xc8\x78\xab\x60\x7a\x8c\xc4\xb6\xda\xe2\x37\x3b\x04\x65\xb3\x36\x9d\xd5\x0e\x22\x61\x2a\x8e\x01\x35\x3c\x11\xc5\xdb\x6a\xaf\xf1\x00\x7b\x80\x36\x44\x18\x6b\x03\x6c\x78\x22\x92\xac\x55\x5c\x9f\x5d\x23\x84\x34\xcd\xf0\x63\xab\xeb\xe0\xf7\xb7\x41\x15\x5c\x90\x4e\x57\xab\x3b\x9e\xe7\x08\x41\x75\x4c\xd4\xb2\x6a\xe8\x9f\x0c\xa6\x1a\x4c\x29\x2c\x4a\x61\x15\xba\xb9\xb8\x2a\x70\xc3\xdf\x07\xd8\x83\x2d\x3c\xc0\x19\x78\x8c\x98\x33\x80\xfe\xd5\x33\x67\x00\x3a\x17\x17\xae\xa0\x5a\xc6\x8c\x59\x85\xb1\x8a\x96\x62\xab\x77\xb4\x73\x84\x90\xa8\x12\x4b\xff\x5b\xbd\x3b\x1e\x60\x87\xf7\x1d\xd6\x46\x7d\xe1\x3d\x28\x5d\x53\x7a\xc2\x3c\xc9\xa3\x58\x9f\x84\x07\xf8\x02\x14\x00\x3a\x17\x0c\xd8\xde\x89\xce\x27\x6b\x19\x8b\x44\x03\xa3\xb5\xa0\x93\xcf\x80\x67\x0d\x06\xa0\x4e\x8e\xd7\x5e\x05\x3e\xa5\xa4\x2f\x40\xa9\xd2\x45\xd0\x82\xb0\x48\x16\xad\xdd\x61\x11\xfd\xf6\xa9\xc5\xbe\x72\xd2\x2d\xf6\x95\x12\x02\x10\xa8\x93\x6c\x28\xd6\x20\xea\x26\x89\xba\x2d\xf6\x85\x17\x7a\x8b\x7d\xe1\x85\x0e\x0c\xe9\x94\x98\xa3\x69\x0d\xdc\x81\x09\xf3\xd6\x20\xd5\x88\xef\x77\xa8\x39\xc4\x61\xb5\x1e\xab\xc4\xa3\xdc\x33\x36\x92\x37\x7a\x87\x9c\xca\x0a\x1a\xd6\x63\xd1\x78\x5a\x7b\x8d\xf7\xbf\x29\x23\x92\x35\x11\x17\xd6\x7a\x8f\x76\xf6\xbf\xdf\x09\xd1\xea\x62\x00\x31\x4e\xf4\xa7\x1b\x82\x2f\x13\x5d\x80\x06\x90\xe2\xc4\x8a\x0e\x86\x60\xc1\xc4\x84\x7d\xeb\x4f\xb4\xf3\xfb\xa0\x02\x56\xcc\xb0\x71\xbd\xf3\x61\xe1\x47\x1b\x98\x0f\xd3\xe0\x6c\xc0\x6a\xf3\xc3\xe1\x47\x31\x3c\xf0\xad\x38\xa2\xe9\x12\x93\x28\x0d\xd1\x74\x89\x3e\x57\x1b\xd0\xea\x88\x15\x68\x03\x22\x13\x1d\xf0\x36\x7a\xbc\xdf\xf9\x3b\xde\xff\x06\x3c\x46\x0e\x33\x2e\x3b\x1c\x2f\xf7\x21\x4c\xb1\x8d\xb0\x73\xeb\x2c\x8e\x81\x29\x15\x8e\x00\xdc\x86\x21\x31\x36\xa0\xd4\x0d\x5e\x41\x03\x4a\x5d\x62\xde\xb9\x0d\x88\xd6\x84\x4f\xb3\x11\x7b\x42\xd5\x79\xec\xb0\x14\x93\x8e\x07\xd8\xc7\xd0\x6f\x1f\xf8\xcd\x0f\x84\x29\x9b\xf9\x23\x36\x7c\xe1\x01\x7e\x31\x76\x8d\xba\xf1\x88\x5d\xa3\x2a\x0c\xb4\xe0\xf4\xbb\x6a\x90\x6f\x18\x16\x65\x88\x49\x4b\x0c\xfb\x32\xc4\xa4\xa5\x31\xfe\x25\xa0\xd9\x26\x94\xb1\xc4\x6a\xc5\x36\x13\xf6\x98\x7b\x3e\xc3\x54\xcc\x10\x46\x9b\xe9\xe0\x81\x6f\x38\x13\xda\x1b\xcd\x59\x36\x83\x8a\x78\x2c\x81\x46\x9c\x12\x63\x76\x0d\xf0\xc3\x89\x08\x70\x36\x83\x8a\x78\x2c\x67\x03\x99\xf3\x58\x02\x6e\x38\xfd\xbe\xd0\x40\x05\xbc\x92\x67\x90\x15\xcf\xe9\x0c\xb2\xe2\x39\x9d\x10\x95\x12\xdd\x45\x86\xc0\xb1\x34\x78\x30\x01\x10\xfc\x3e\xc0\x2e\x07\x86\xc0\x93\x3a\x21\x3b\x11\x2a\xc5\x26\x64\x7d\x26\x1c\x1a\x10\x7f\x13\xc3\x30\x0d\x91\x68\x89\xb8\x57\x36\x21\x88\x33\x0c\xd3\x80\xe0\x9b\x98\x90\x6a\xd3\xe2\x79\x2e\x91\xe7\xb0\xbf\xf3\x83\x5e\xf0\x00\x07\x14\x0e\x93\x49\x66\x37\xbd\xe1\x01\x8e\x10\xa2\x3d\xab\xb1\xd8\x3c\x31\x02\x7e\x10\xbc\x83\x30\x8a\x06\x4c\xdf\xc4\xac\x25\x9b\x50\x09\xd3\xd2\x90\xa1\x12\x32\xa1\xdd\xe6\x1d\x26\x7b\xcd\xe1\x4e\x78\x80\x73\x00\x77\x65\x40\x84\x4d\xd0\x39\x21\xd9\x6d\x42\x47\x4c\x44\x5a\xb5\x09\x1d\x91\x89\x1c\x86\x70\xb7\xf7\x01\xf6\x00\x1d\x91\x80\x32\xb6\x20\xd8\x13\x73\xc0\x10\x8f\x96\x98\x93\x6e\x88\x3f\x4b\x4c\x7b\xb4\x55\xe3\xf7\xe0\xef\x78\x7f\xf2\x37\x46\xcc\x7b\x77\x55\x4c\x99\xdc\x66\xfd\x79\x29\x48\x16\x08\x38\x4b\x4c\x3d\xb2\x05\x15\x91\x01\x6e\xb6\x40\x98\x12\x78\x01\xec\x9b\xf2\x95\xf4\x0f\x4c\x99\xaa\xc9\x0a\xd3\xf1\xc5\x45\x5b\x1d\x53\x26\x7b\x5a\x20\x44\x89\xaf\x0b\x84\x28\x69\x15\x50\xbf\x29\x5f\xea\x72\x0e\x3c\xc0\x0f\xce\xf0\xa4\x50\xc6\x5e\x41\x9a\xb4\xed\xad\x20\x4d\xda\x1a\x96\xdd\x78\x81\x94\xb6\x0c\xab\x42\xfe\xb5\xc2\x3c\x7d\x51\x8c\x47\x18\x5a\x9a\x14\x05\x56\x90\x62\x57\x3b\xec\xcb\x0c\x4d\xb1\x75\x62\x59\xb4\xae\x10\xca\xe9\xfb\xb6\x15\x16\x6d\x86\xed\xdb\x0a\x5a\xa3\x75\x60\x41\x8b\xcc\x89\x07\x6e\x41\x0a\x67\x1c\xb5\xad\x20\x46\x5a\x0b\x16\x94\xc6\xcc\x6a\x30\x86\xd8\xb3\x44\x00\x7f\xdb\x09\xe7\x89\x4c\x68\xc3\x3a\xc0\x58\x4a\xdb\x41\x4b\xe4\x39\xbb\xc2\x23\xc5\x34\x2f\xdb\x90\x90\x18\xff\x63\x3b\xbc\x14\xf4\xd9\xd9\x86\x0d\x94\x08\x17\xb6\xeb\x9f\x8f\x89\x43\x82\x2c\xae\x13\xb8\x41\x5d\x3a\x70\x40\xae\x4d\x99\x5e\x31\xdb\xb8\x0d\x25\xfc\x6f\x10\x0b\xbd\xe6\xb6\x83\x38\xe8\xa6\x32\x60\xc9\xa6\x45\x72\x04\x96\x6c\x22\xd0\xbc\x01\x8b\x35\x65\xa6\x67\x18\xc0\x58\x7f\x8e\xec\x86\x44\x92\x59\xae\xd7\x80\xce\x8a\x23\xfb\x0f\x77\xcf\xb6\xf8\x7c\xd7\xe7\x0d\x6f\x73\x3c\x30\x5e\x66\x06\x51\xd8\xb6\x83\x07\x38\x40\xb0\x41\x06\x71\xd8\xc6\x65\xbb\x78\xa2\x37\x58\x08\x0b\x38\x1a\xc0\x47\x13\x0b\x34\x1a\xc0\x45\x13\x0b\xbe\x99\xc1\x75\x41\xa4\x79\x03\xd8\x68\xca\x85\x07\xd4\xe0\x78\x25\x20\xa7\x01\x7d\xf4\x7d\x60\xf1\x1f\x09\x0f\x74\xfe\xc6\x88\x28\x27\x5b\x8a\x11\xf1\x83\x39\x46\xc4\xf7\xe1\x79\x65\x58\x9b\x21\x6c\x2e\x65\x99\xce\x01\x19\x9a\x98\xcb\x6b\x56\x46\x3c\xc0\x2f\x40\x54\x67\xa0\x90\x59\xed\xe1\xfb\xe3\x10\xe0\x9c\x65\xe4\x8c\x19\xa4\xb6\xcc\x74\x65\x03\x8a\x68\x22\x8a\xa7\x19\x8c\xf1\xc4\xb2\x31\xa0\x8a\xa6\x2c\x8b\x27\x62\xe9\x12\x91\xb3\xcc\x82\x72\x49\x15\x06\x77\xad\x74\x44\x83\x56\x99\x65\x95\x36\x68\x95\x4b\x93\x04\x1f\x64\xe1\x41\x33\x70\x2d\xd6\x7e\x32\x0b\x42\xa5\x48\x01\x1c\xd0\x44\x00\x03\x33\x48\xce\x8c\xdc\x34\xdb\xf1\x3e\x77\x65\xc7\xfb\xec\xdf\xe2\x79\x0e\x18\x3a\xe2\xd2\x9a\x82\xc7\xb1\xbc\x86\x59\xd0\x1d\x4d\x21\x16\x74\x47\x7e\x64\x27\x9e\xe7\xf8\xe0\xcf\x25\xfa\x89\x59\xd0\xa5\xb6\x04\x22\x1d\xd1\x83\xcc\x83\x4e\x79\xfd\xfb\x95\xc2\x05\xda\xf9\x0f\x9c\x33\x32\x65\xbf\xc2\x07\xca\x8b\xc1\x83\x72\x99\xa6\x67\x1e\x94\x4b\x06\xe7\x41\xb9\xc4\x22\x34\x0f\xca\x25\xc7\x73\xe8\x84\x99\xd5\x44\xcd\xf3\xf8\xef\x7f\xf9\x22\xbb\x71\x08\x7e\x99\x45\x87\xcc\x5f\xda\xcd\xac\x48\x66\x9e\x0f\x7e\x73\x4c\xaf\x7e\x94\x89\x2b\x6f\xfe\x52\x6a\x26\x40\xa1\x39\x58\x66\x6e\x5c\x46\xc4\x18\x66\xc6\xb4\x99\xbf\x17\xf0\xcf\xf5\xe9\x0d\x1d\x90\x5f\xf9\xc4\x07\xa9\x2e\x38\xc4\xb2\x2c\xbd\xd7\x5f\x71\x3f\x33\x1d\xce\x7c\x85\x6b\x97\xc7\xcd\x17\xe6\x48\x0e\xe4\xb0\xbc\x67\xe2\xde\x98\x6f\xcc\x81\x32\x81\x83\xe1\x65\x29\xbe\x80\xf4\xcc\x97\xbe\xe8\x78\x41\x1f\x70\x8c\x59\x1b\x05\x2d\x35\x4b\x3f\x40\x6c\x4b\x66\xf2\xbe\xf9\xc1\xa4\xa8\x81\x00\x83\x33\x33\xe5\xc4\xfc\x19\xe1\x6e\x66\x8f\x0f\x5e\xe0\xf9\x06\x08\x66\xa6\xf7\xd0\x22\xb8\x24\x4b\x4d\x03\xca\x65\x66\x9c\xbe\x01\xe5\xf2\x7d\x20\xf3\x1f\xd8\x07\x9e\x6f\x84\x9b\xe4\x8b\x73\x3e\x09\x73\xe4\xf9\x3e\x19\xbf\x79\x9c\x4f\xc6\x08\x78\x9c\x4f\xc5\xfb\x3c\xce\xa7\x46\xfb\xb7\xea\x27\xf6\x99\xc7\x15\x30\x99\x99\xa5\x02\xed\x74\xcc\x90\xc7\xf1\x4c\xb4\xff\x13\xb2\x99\x9d\x85\x1d\x23\x88\xae\x9d\x55\xde\xb7\x79\x96\xce\x0a\xff\x3a\x79\xf4\x59\xd8\x11\x0a\x38\x07\x7e\xbc\x2c\x29\xec\x2c\x8c\x9f\xae\x80\x13\x44\x42\x85\xe5\x18\xe6\xc3\xb3\x77\x0c\xe3\xe7\x51\x3b\xb1\xc5\x14\x2e\x4e\x6c\x31\x85\x8b\x73\x63\xfd\x29\x4b\x9c\x07\xdf\xa3\xe1\xe1\x3c\xe8\x8f\x86\x87\x13\x14\x40\xd1\xe2\xbe\xe2\xf9\xce\xdf\x98\x31\xd9\xef\x7d\x85\x87\x9f\xf7\xe0\x7d\x61\xc6\xd4\x6f\x00\x65\x99\x13\x4f\x36\xe2\x3f\x72\xe2\xc9\x46\xf0\x68\xca\xba\x53\xee\xf4\xe0\x01\x8e\xe0\xbd\x63\x32\xa3\x7b\xed\xc6\x8e\x27\xaa\x23\x77\x8d\x98\x03\x4e\xe1\x7e\xef\x98\xcc\x3a\xe5\x16\x41\x18\x45\xdc\xe7\x6e\x03\x0f\x70\xc8\xb8\x73\x8a\xb8\xcf\x0d\xa2\x91\x49\xeb\x06\xd1\x30\x66\xce\x6e\x58\xdc\x0b\x81\x05\xec\x7e\xa5\xf3\xcc\x20\x3a\xbb\x47\xc4\x21\x50\x63\xb9\x27\x56\x81\x67\xff\x06\xd9\x11\xa6\xc5\x6e\x18\x13\x8a\x84\xef\x7b\xa3\x4b\x5e\xee\x88\x19\xcd\xcc\xfe\xb4\xfb\xc6\x07\x79\x55\x23\x12\x23\x33\xe1\xc2\x9e\x2b\x22\x15\xb8\x2f\xcf\x7b\x0f\x64\x06\x51\xdb\x03\xed\xbd\x24\xb2\x60\x60\x1c\x66\x06\xc6\xd9\x13\xeb\xce\x93\xf7\xb4\x86\xdf\x7c\x7e\xc5\xf3\xdf\x08\x80\x19\x98\x99\xdf\x67\x80\xf9\xcb\x0c\x8c\xb3\xe7\xa0\x9d\x27\xef\x89\x19\xf1\x22\x44\x24\x42\x66\x20\x9c\x3d\x07\x74\xc0\x8b\xf0\xb9\xff\x62\x1f\xf4\x0f\xcc\xe8\xbb\x19\x1d\xb8\x6d\x99\xa0\x8b\x0e\x9c\x34\x89\xd5\x0e\xb7\x7e\x66\x24\x9d\x03\xf7\x2c\x33\x92\xce\x81\x6b\x96\x19\x39\xe7\x57\x4c\x70\xf2\xfb\x0b\xef\x4f\x7e\x1f\x5e\xb8\xd2\x3e\x3a\x72\x00\x6b\xe5\x34\xf9\xc1\x1d\xb1\x0f\x89\x5f\xd8\x58\x92\xc9\x1e\xf6\x1d\xc1\x12\xe9\xfb\x87\xfd\xfd\x83\x4f\x60\x11\x99\x54\xea\xd7\xab\x10\xe5\x7c\x71\x4e\x58\xd4\x7c\x71\x4e\xd0\x87\x0a\x61\x9f\x1d\xf8\x57\x99\x05\x74\xfc\x02\x9d\x10\x1c\xce\x2f\x68\x33\x85\x00\x41\x7e\xbd\x77\x42\x66\x7c\x9a\x5f\xcf\x5f\xc0\x06\xbf\xf8\xbc\x1c\x85\x79\xab\x9e\xc0\x21\x98\xea\xe6\xe9\xe5\x08\xd2\x14\x3c\x5d\x18\xc1\xa7\x5a\x3b\x9c\xfc\x99\x88\x5b\x0e\x04\xad\x4c\x04\x21\x4f\x30\x95\x0a\x92\xc7\x53\x8e\xf8\x8d\x8b\x6f\x94\xfe\xbe\x51\x39\x82\x12\xf1\x1b\x17\xdf\x00\x25\x30\xe6\xcc\x13\x2e\x0d\xc6\x9c\x79\xfa\x8b\x29\xd1\x18\x41\x1a\xb9\xe9\x37\x3e\xd0\xf8\x01\xe8\x4b\x85\x77\xb9\xa7\x81\x2f\x36\xf6\x38\x30\xe9\xce\x21\x0d\x7c\xb0\xf3\xf9\x89\x49\x76\x76\x10\x01\x20\x7d\xfc\x8b\xb6\xe3\x69\xa1\x37\xee\x51\x5a\xd1\xdb\xe0\xef\x16\x5f\xd3\x03\x58\xa1\x4f\x28\xf5\xb4\x62\x09\x27\xfb\x5f\xef\xe1\x62\xa0\x99\x27\xd8\x2a\x0b\x13\xf0\x3c\xed\x84\x07\xf8\x02\x48\x37\x0f\xb5\x63\x85\xd4\x23\x4e\x3f\x41\x01\x3d\xbd\xea\x56\x26\x34\x83\x27\xc8\x32\x4c\xe8\xf4\xe4\x58\xa0\xc9\x05\x0b\xc2\x9e\x1c\x10\xb8\x43\xd6\x80\xc1\xef\x18\xb9\xe6\xe9\x8e\x76\xf6\x1f\x74\x3e\xd9\xff\x83\xc3\x49\xeb\xab\xa3\xe0\x7f\x66\xa5\x29\xcf\x41\xb6\xdf\x45\xe8\x39\xc8\xf6\xbb\x45\x3c\x43\x0a\x2e\x2c\x9a\xec\xf9\xc2\x92\x7d\x37\x9f\xe7\x88\x74\x22\xb4\x91\x03\xca\x2a\x33\x9a\xc5\x51\x82\x3f\x13\x44\xd9\x51\x52\x3f\x15\x5a\x27\x1d\x35\xf5\x33\xa3\xd9\x1c\x35\xf5\xdf\x07\xf8\x05\x48\xc1\x8c\x76\xf1\x1c\x27\x81\x18\x07\x9e\xf3\x83\x07\xf8\x42\xc4\xc7\x0d\xcd\xb2\x94\xf8\x07\x07\x01\x41\x9a\x11\x6e\x9e\xc1\xe5\x59\x2a\xd7\x73\x8b\xf6\xc6\xdf\xd1\xce\x31\x82\x49\x32\x02\xce\x81\x67\x95\x59\x66\xc1\x33\x0e\x46\x21\x37\xc8\x38\x18\x8c\x90\x73\xd4\xc9\x4f\x85\x98\x40\x9e\x07\xa6\xc0\xe3\x9f\x23\x96\x8a\x56\x25\xcf\x33\xe1\x01\x8e\x60\x45\x0f\x5c\x03\xb0\x65\xa6\xea\x7a\x5e\x58\xd5\xc2\x11\xfc\x45\x4a\xf1\x5e\x40\xe9\xfc\xcc\xa0\x3a\xcf\x3b\x3e\xc0\x76\xb8\xfd\xca\x14\x69\xbc\x2a\x5d\x66\xcc\x9c\xe7\x08\x94\x9a\xa2\x15\x5b\x78\x80\x5d\x82\x58\x59\x18\xc7\x33\xbc\x70\x82\x44\xf4\x7c\x63\xd2\x8d\x5f\x84\x81\x53\x30\x61\x8e\xf2\xef\x99\x61\x75\x8e\x48\x85\x5c\xb4\x6a\x90\xdc\x95\xd3\xe3\x19\x26\x51\xe5\x25\x78\x01\x7d\x33\xc3\xdb\x01\x84\x95\x89\x47\xef\x25\xa8\x93\x3c\xa5\x54\x6c\x24\x39\x42\xe9\x68\xe7\xed\x5a\x62\x63\xb9\x8a\x05\x76\xee\xca\x82\x1b\x5e\x5e\x99\x27\x33\x64\xcd\x0b\x44\x1c\xc2\x56\x7a\x81\x86\x45\xcd\xdf\x11\x33\x90\x59\x97\xd7\x0b\xb4\x1f\x82\xb1\x38\xdc\xe9\x99\xc8\x83\x0e\xf0\xa5\x24\x00\x0c\x2f\x37\x3a\x24\xad\x97\x1b\xfb\xca\x6d\x2b\x10\x65\x19\xcf\xe6\xf5\x8a\xdf\xdf\x07\xe1\x31\xcf\x04\x4d\xf6\x0a\xd5\x83\xb8\xb5\x8e\x2a\xdb\x99\xd0\x64\x5e\xdf\xc3\x95\x99\xe6\xe3\x70\x88\x67\xa6\xc5\x78\xc5\x51\x62\x38\x9c\xd7\x1e\xbf\xf9\xfd\x1e\xdf\xe3\xf7\xc7\x4b\x35\x84\x2a\x74\xb8\xb7\x33\xa3\xdf\x1c\x55\xae\x73\xa5\xf4\x80\xaa\xd6\x99\x55\xa3\x1d\xde\xe7\x4c\x28\x41\x47\x95\xea\x4c\xb4\x30\xaf\x77\x7c\x9f\xfd\x43\xd4\xaf\xf9\x5f\x9c\x3b\x0e\xb7\x6f\xae\x3c\xb7\x35\xc2\xb4\x18\x68\xe6\xf5\x25\xb8\xcc\xfa\x1a\x5e\x9f\x07\xbf\xbf\xd1\xb6\x0b\xa3\xf9\xec\x6b\xde\xb0\xda\xf5\xb3\xaf\x39\x6a\x48\xe7\xca\x63\xdc\x40\x8f\x2c\x73\xec\x2d\x56\xff\x93\xf6\xbc\xc5\xea\x17\x7e\x1f\x1e\xc6\x5a\x79\x64\x5a\x31\x3c\xc0\x0e\xcb\x5f\xf0\x5d\xe2\x3f\x0e\x1e\xe0\x08\x6a\xc4\xd2\xf1\x14\x36\x28\x0a\xca\x92\xf5\xd6\x9e\xf8\x07\x07\x09\xc5\x80\xd1\x71\xde\x62\x8b\x1b\x3f\x39\x22\x7e\x8f\xd7\x66\x8b\x3d\xe5\x29\x43\x71\xe6\xcc\x68\x37\x47\x71\xe6\xcc\xe0\x36\x6f\xd0\x03\x2a\xd3\x3f\x1c\x90\x5a\xb9\xf2\x58\xb6\x15\x21\x84\x4b\xff\x48\x78\x80\x3d\x42\xe3\x24\x06\x95\xb7\x15\x93\x5a\x9c\x54\x90\x11\xcf\x69\xdb\x18\x22\x6f\x6e\x78\xcf\x33\x83\xdf\x1c\xf5\x98\x93\x8a\x19\x78\x43\x8c\x71\x6d\xda\x4a\xdc\xdd\x95\xec\x10\x15\x99\xdf\x07\xb8\x6c\x7e\xe3\x01\x0e\x01\xd1\x3a\xb5\x69\xb3\x71\xdb\x13\xd8\xca\xe1\x6e\xcf\x04\x0e\x73\x00\x65\xa5\x4a\x93\x94\xb7\xfb\xbd\xcd\x09\x5e\xe3\x28\xd2\xfc\x3e\xc0\x31\xdc\x0d\x0f\xe8\x85\xe8\x92\x1c\xb5\x41\x11\x66\x40\x9b\x37\x9c\x0e\xe6\xc1\x78\x7b\x5a\xbc\xf0\x0d\xba\x83\xa0\x25\xab\x77\x10\xb4\x96\x05\x75\x94\x93\xd0\xb1\xbc\xe7\x89\x07\x16\x7f\xc7\x10\x78\x84\x3a\x48\x9a\x79\x8f\xde\xe1\xee\xac\x6d\xf1\x93\xaf\x60\x9b\x1b\x49\xba\x97\x08\xd6\x5c\x7a\x63\xe1\x81\xc9\xdf\x31\x06\x6e\x05\x10\xc0\x32\x03\xd6\x1c\x88\x5e\xb2\xf5\x39\xe2\x0c\x64\xea\xf3\x0e\x87\x69\x65\x4c\x8d\x77\xdc\xf7\x5a\xb6\x0e\x26\xd6\x78\x11\xf5\xfe\xe0\x37\x3f\x30\x22\xbc\x53\x93\x7a\xef\x09\x59\xfa\xbc\x8f\xf8\x00\xe7\x34\xa3\x03\x4e\x01\x21\xaf\xb5\xab\x87\x89\x29\x50\x94\x46\x3d\xe7\xf7\x01\xf6\x30\x0f\x1e\xe0\x0b\x10\x08\x58\x63\xd4\x01\x54\x95\xa5\xe1\xf4\xdd\x23\xe2\x94\x2f\x6c\x2c\x33\x05\xb9\x1e\x31\xb1\x2c\xd4\xe7\x28\x01\x9d\x19\xce\xe6\xdd\xb0\x8a\x6a\xf7\x58\x35\x9e\xda\xee\x20\x4f\x4a\xbb\xc0\xaa\x7a\x1f\xe0\x24\xa0\xd7\x35\x8a\xbf\x1d\x7a\x1c\xab\x1f\x39\xe2\x33\x32\x61\x66\xbd\x43\x6d\x6b\x7a\x3f\xa8\x57\x94\xf2\x60\x0d\x78\xc2\x50\xe4\x39\x13\xd3\xda\x47\x10\x2f\x0f\x14\xc0\x96\x52\x25\xee\xa8\x8f\xf4\xae\x01\x41\xaf\x1d\x55\xa1\xdf\x07\xf4\x8f\x85\x07\xbe\x11\x0e\xdc\x96\x9d\xc2\xeb\x00\xb5\x33\xba\xcb\x01\xb7\x94\xea\x20\xe7\x1a\xaf\x28\x9a\x7b\xfa\x97\x48\x6a\x1f\x11\x61\xcb\x72\x5a\x3e\x4a\xc3\xdb\xfa\x5a\x4c\x80\x7b\x30\x70\x56\x18\xfc\xe5\x03\x3a\x1f\x83\xbb\x1c\x01\x27\x99\xc1\x5d\x3e\x5e\x1d\x30\x33\x96\xcb\x47\xdc\x06\x12\xbe\x51\xe7\xfa\xfd\x07\xd7\xac\xbe\xa4\xce\x80\x11\x1f\xed\x2f\x2a\x58\xff\x70\x3c\xc0\x17\x70\x76\x3a\xb9\x1c\x62\x54\x72\xa7\x64\x3a\xba\xe1\x37\x87\x3c\xa2\x9d\x43\x86\xd3\xad\xd2\x2b\xed\x08\x39\xc9\x4c\x6c\x76\x40\x34\xbd\x0f\x70\x12\x10\x19\x18\x6b\xe5\x03\x8a\xa1\x4a\x2c\xfa\x58\x2b\xfe\xc1\x31\x2c\x2c\x03\x0f\x13\x0a\x60\xbf\x0f\xf0\x93\x50\xec\x98\xbc\xed\x03\xb4\xcf\xe4\x68\x1f\x30\x59\xd4\x49\x3e\x39\x70\x1b\x74\xed\x7b\xdc\x06\xf3\x33\x1c\xf9\xc0\x6d\xa0\xe3\x37\xe2\x36\x98\x3c\xb0\x03\x87\x41\xc7\x6f\xe0\x36\x60\x75\x0e\x1f\xe7\xe0\x37\x9f\x87\x2e\x28\xed\x77\xdc\xf1\x3c\xa7\x70\xc7\x88\xbe\x9d\x9d\x50\xf5\x08\x26\xe4\x40\x6e\xca\x52\x8e\xe7\x15\xe1\xd7\x94\xc4\x00\xe5\x94\xa5\x1c\x03\x9a\xe9\x7d\x60\xf1\x1f\xa0\x6d\x6a\xa3\x33\x45\xc0\x36\x69\x65\x66\x4c\x89\xe7\x77\xc6\xe9\xe1\xf9\x9d\xd0\xec\x84\x1b\xec\x13\x9a\x1d\x03\xc0\x1c\x00\x4d\x49\xa0\x19\x8e\xca\xdd\x99\x11\x61\x0e\xc4\xa6\xcc\x88\x30\x9f\xb0\x81\x10\x6e\xcd\x67\x9c\x07\x72\x00\x20\x2e\x65\x46\x84\xf9\x1c\xf1\x9b\xef\x83\x18\x19\xf1\xe5\x73\xc4\xa2\xe8\x03\x63\xe3\x01\xfe\x46\x50\x70\xa3\x8f\xc6\xe7\x7c\x17\x65\xf0\x44\xce\x19\x21\xe4\x64\x19\x13\xd4\x3a\xb4\x8a\x50\xcc\x86\x16\x0d\x56\x8b\x76\x51\xa6\x9c\xb0\x5a\xd0\xfb\xe0\x73\x47\x90\x3a\x95\xc7\x09\xab\x05\xbd\x0f\x8e\x60\x9a\xcc\x22\x75\x8e\xd8\x97\xcc\xa8\x31\x9f\x1e\xed\x9c\x34\x68\x97\xc8\x09\x3e\x11\x35\xac\xfa\xd5\x3e\xcf\xcb\x65\x18\x24\xe6\x13\x71\x81\x2a\x18\xed\x28\x80\x9d\x59\xa9\xc7\x27\x68\x93\x51\x63\x3e\x5f\xb1\x22\x8f\xcf\x1b\xe7\x0b\x6a\xda\xe0\xb6\x2e\x98\x1d\x5a\xe2\xaa\x2d\x98\x1d\x98\xb2\xe8\x2b\xfd\x05\xda\x17\xfe\x03\x73\x26\x53\x40\x28\x4b\x96\xe1\x63\x41\x90\x26\xe2\xbc\x2f\xa8\x2d\x8c\x48\xf7\x15\x84\x40\x46\xbf\xa0\xf1\x13\x1a\xcb\x57\x8f\x30\x7b\x9a\x5e\x56\xc7\xbe\x36\x76\x08\x91\x80\x51\x69\xbe\xa0\x29\x32\x3e\xdd\x57\x50\x16\x85\x68\x04\x9e\x64\x46\xad\xf9\x9a\xf1\x9b\x1d\x42\xc1\x67\x90\x9a\xaf\x85\xdc\x05\xa6\xb4\xfa\x82\x86\x3f\x28\x44\x2f\x68\xf8\x8d\x39\xae\xbe\x82\x90\x28\x55\xaf\xd8\xf6\x7f\x0a\x6b\xf3\x85\x20\xbb\x96\xb9\xe7\xcb\x41\xe8\x64\x3f\x2b\x32\x19\x64\xfb\x5a\x07\x0b\x42\x7e\xb3\x10\x20\xd5\xf2\xcf\x3f\x10\x4a\x2d\x6b\xd7\x82\x81\x60\xf0\x7a\x8f\xa0\x94\x46\x18\x71\x47\x54\x4a\x1e\x5a\x73\xe4\x36\xb4\xfc\xf3\x06\xa6\x44\x8e\xb3\x6e\x10\x26\xb5\xe5\x05\x93\x83\x8a\x23\xfb\x82\x2b\x8f\x81\x6b\xbe\x83\xf0\xc8\x3f\x50\x7c\x3a\x35\x96\xd2\xf7\x0d\x05\x8d\x81\x66\x8e\xea\xd1\x99\x81\x66\xbe\xe1\xb2\x25\x84\x9b\xa3\x1a\x73\x66\x18\x99\xa3\x1a\x73\x66\x18\x99\xa3\xda\x72\x6a\x32\x00\x6c\x5c\x87\xc4\x8c\xf3\x3d\x0e\x7e\x73\x84\xd0\x95\x18\x05\xe6\x28\x37\x9c\x19\x05\xe6\x1b\x06\x03\x06\x7d\x39\x22\x3a\x32\x63\xbc\x7c\x47\x8e\x00\xd3\x72\x1c\xf5\x75\x33\x83\xba\x7c\x47\x8e\x40\xd5\x88\x4e\xc2\x03\x1c\x41\xec\x34\x13\x77\x1c\xc8\x47\x99\x18\x9f\xbe\xef\x18\xc2\xe2\xef\x77\x91\x75\xdd\x6e\x28\x15\xba\x6d\x0d\x37\x0d\x91\x64\x1c\x31\x20\x99\x48\x30\x6e\xb1\xe6\x54\x72\x2d\xd6\x9c\xdc\x03\xc8\x46\x72\x2f\xba\xc1\x17\xc6\x9c\x05\xb7\xd8\x03\x8a\xf7\x06\x2f\xf7\x24\xf3\x30\xe8\xaf\x0c\xe9\x72\x5b\xf1\xfe\x37\x7e\x83\x49\x81\x18\x97\x6e\x10\x43\x09\x28\xed\x40\x16\xca\x32\xde\x19\xa8\x4e\xb6\x3a\x8b\x0c\x86\xa1\x09\xc1\x06\xc1\x90\x30\xf7\x98\x30\x79\x85\xc7\x84\xc9\x2b\x1c\xcc\x8a\x25\x7a\x1d\x71\x00\x49\xa8\xae\x0e\xb8\x8c\xcc\xe2\x4c\xee\x50\xaa\x84\x2c\xe7\x0e\xa5\x8a\x30\x9a\xee\x50\x89\x1a\x03\x2e\x1d\x85\x56\x33\xe3\xb9\xdc\x63\x0d\x29\x1d\x38\xac\x00\x82\x63\x72\x87\x18\x37\x79\xf4\x3c\x16\x91\x67\xd3\x91\xb6\xd0\x44\x15\xde\x3b\x1e\xd0\xef\x48\x35\xe1\x35\xe3\x41\xf9\x3c\xac\x3e\xa2\x07\x0e\x61\x34\xfc\xe6\xa4\x63\x9b\x28\x2d\xa0\x76\x6a\x96\x81\xd2\x23\xbb\xeb\x67\x48\xd8\x47\xc6\x7f\x39\x8a\x8b\x66\xc6\x7f\xb9\x23\x95\xb3\x11\xef\xcd\x51\xfd\x33\x2f\xde\xdd\x81\xa2\xd1\x7e\xff\xb1\xf0\x00\xe7\x04\x19\x6d\xf1\xb4\x3b\x28\x85\xb5\xbf\x1d\xb0\x19\x99\x80\x75\x0e\x18\x8c\xcc\x00\x33\x77\x28\x30\x0c\x30\xf3\x80\xb9\x10\xe2\x99\x1f\xf8\x2b\x17\xef\xc1\x73\xc5\x07\xd8\x9e\xe2\x03\x9d\xbf\xb1\x06\x0c\x94\x71\xa0\x3a\x65\xc9\x68\xe7\x2f\x01\x66\xe8\x0b\xef\xe1\x90\x8c\x16\xa1\x07\x8c\x50\x73\xc0\x3e\x65\xc6\x90\x7a\x84\x22\x2c\x0a\x13\x07\xca\xf7\x22\x3b\x39\x2d\xda\xf9\x7d\xd0\xcd\xca\xff\x52\xd7\xc6\x23\x4e\x81\xe1\x68\x7e\x10\x78\x2c\x78\x5c\x3f\x50\xb4\x99\xca\xee\x81\x4b\x21\xfc\x50\x3f\x50\xb4\x19\xb0\xe6\x07\x02\x1c\x03\xd6\xfc\xcc\xf8\xcd\xe1\xaf\xf8\xcd\x05\x04\x91\x31\xdc\xcc\x0f\xd4\xe4\xce\x50\x01\x3f\x50\x93\x65\xa3\x3e\x91\x76\xc1\xd8\x01\x07\x4e\x55\x66\x7c\x99\x47\xec\x02\x41\x02\x1d\x50\x16\x99\x20\x79\x8e\xaa\x9c\x99\x38\x5e\x7e\x82\xa6\xc8\xad\x50\x55\x33\xcb\xa4\x7d\x82\x86\xb4\x24\x41\x43\x5a\x01\xd8\xc0\x55\xa9\xc9\xcf\x03\x12\x20\xfb\x0a\x6c\x0b\xc1\x3a\xfa\x81\xda\xcc\xd8\x03\x47\x34\x43\x66\xf8\x9a\xdf\xe0\xd7\x0c\x5f\xf3\x3b\x88\x90\x44\x1a\xc1\x0c\x8b\xa2\xd0\x0d\x25\x99\xd1\x6c\x7e\x07\x49\x51\xd4\xb9\x83\xa4\x68\xcb\xb8\xa1\x24\xf7\xcc\x63\x72\x43\x49\x66\x34\x9a\x07\x3a\x46\x67\xe6\xb8\xa3\xb2\x67\x66\x78\x9a\xdf\x41\x74\x64\x77\x88\x44\x48\x3d\x6b\x88\x50\x32\x75\x2c\x02\x62\xa2\x67\x8d\xb9\x63\x0d\x78\x2c\xee\xa0\x1b\xf2\xc3\x1b\xe2\x1a\x03\xca\xfc\x9e\x91\x62\xa4\x17\x60\xc3\x64\x71\x4b\xbf\x23\x2d\x4b\xf2\xd1\x3d\xb1\x2a\xbc\x45\x6f\xc8\xfd\x8c\x27\xf3\x3b\x28\x91\xec\xf0\xde\xb1\x2a\x94\x55\x6e\x07\x69\xeb\x77\x10\x06\x59\xfa\x0d\x27\xb6\xaa\xc4\xf8\xf3\xee\x63\x61\x61\x00\x07\xe2\x55\x61\x3d\x43\x47\x3d\xcc\x24\x30\x61\x0f\xc8\x2b\x86\x8b\xf9\x13\xf9\x3c\x04\x58\xf5\xa8\x88\x49\x68\x78\x47\x05\xcc\x42\x74\x6b\x07\x46\x56\x61\x7c\x99\x3f\x19\x23\x20\x7b\x7a\xa0\xe0\x75\x26\xc7\x3b\x4a\x54\x16\xc6\x93\xf9\xd3\xe2\x37\x3f\xd0\xd0\x01\x2f\x95\x07\x2e\xe8\x4e\x20\x24\x07\xf0\x55\x61\xf1\x00\x7f\x22\x25\x88\xd5\x0f\xfc\xe9\xeb\x7d\x80\x1c\xe3\x41\x05\x75\x26\xab\xf9\x33\xd0\x23\x85\x0d\x80\x57\x28\x04\xc5\x9f\x89\x29\x93\x41\x3c\xa8\xde\x41\x8c\x55\x7f\x5e\x65\xab\x5c\x14\x46\x50\x64\xb2\x10\xd6\xcf\x11\x10\x52\x18\xce\xe6\x0f\x60\xe9\x18\xce\xe6\xcf\x1d\xbf\xd9\x3f\x60\x0a\x59\x91\xdc\x51\x97\x31\x75\x99\xd9\x9e\x07\x9b\xc4\xf3\x1e\x58\x15\x9d\x49\x46\xfe\x3c\x18\x31\xc5\x99\x07\xc5\x62\x58\x5f\xe5\xa0\x52\x63\xb9\x3e\x7e\x70\xae\x20\x93\x6f\x49\x4f\x54\x46\x64\xb8\xdb\xb9\x12\x46\xf4\x1d\xff\x73\xbd\xd2\x48\x61\x99\xd2\x73\xc5\x1e\x7e\xd2\xcb\x41\x04\x4a\x61\x30\xdb\xb9\x10\x3f\xdb\x59\x87\xf6\xa0\x34\x60\x61\xf4\xda\x09\xf4\x8b\x4e\xd0\xfc\x03\xf8\x8b\x72\x75\xbe\xd0\x30\xe2\xce\xf6\x86\x11\x77\x8e\x20\xa8\xe6\x23\xfc\x83\x18\x96\x72\xf5\xf1\x0f\x77\xce\xb9\x06\x1e\x1e\x5c\x9e\x20\x90\xc1\xe5\x99\x58\x8e\xc1\xce\x63\x83\x3f\xc9\xe9\x5c\xa8\xa2\x7b\x0d\x4e\x1f\x8e\xd3\x4e\xe5\xf6\x5c\x86\xe9\x4e\x7e\x10\x8e\xd3\x3e\x0a\xbf\x60\x98\xee\xe4\x7a\x04\x89\x4c\x4e\x0f\x02\xb8\x40\xd4\x0f\x20\x25\x0a\xc3\xd3\xce\x15\x34\xb4\xd8\x23\xd4\x9e\x3e\x34\x66\xd4\x0f\x62\xb8\xd9\x49\xd7\xc1\xef\x6f\x81\xd3\xcb\x60\x0b\xe1\xd9\x4e\x2a\xf1\xfc\xe0\x6f\x64\x74\x32\x6f\xf8\xa4\x57\x9e\x2c\x0c\x47\x3b\x09\x91\xa7\x9d\x32\xf5\x49\xd8\x32\x02\xb6\x9d\x84\x2d\x23\x60\xdb\x49\xd0\x83\x3a\xcd\x5d\x27\xa1\xf8\x2b\xa3\xcb\x4e\xa0\x48\x74\x0a\xc1\x27\xf5\x84\x07\x12\x7f\x63\x8c\x99\x73\x7a\x59\x7a\x61\x19\x90\x03\xd8\x89\x42\x08\xb7\x93\x26\x46\x90\xd9\xe1\x8c\xf7\xf9\xfd\x1d\xed\x8b\xbf\xd1\x5e\x38\x20\x04\xaa\x76\x8a\x0a\x27\x59\xc1\x03\xec\xd0\x22\x3b\x91\xfb\x1a\x55\xd2\x52\xe1\x08\x0c\x8b\x56\x38\x02\x44\xeb\x77\x8a\x06\x27\x19\x86\xac\x1e\x50\x90\x39\xe9\x83\x27\x86\xc4\x55\x7f\x30\xe4\xc2\x21\xc7\x36\x73\x97\xf2\x35\xf0\x3b\xf1\x77\xe4\x2f\x7e\xfc\xfb\xe4\x6b\xe1\x81\x6f\x00\x51\x97\x8c\x15\xce\x0f\x22\x29\x0a\x4b\x8d\x9c\x1c\x74\xf2\xc9\x1e\x27\x97\x3b\x12\x28\x17\xff\x81\x5d\x24\xaf\xc9\xf5\x2f\xa3\x52\xff\xc0\x2e\x92\xf9\x20\xf2\xa2\x24\x32\x1f\x80\x44\x94\x44\xe6\x13\x95\xc3\x18\x9f\x77\x72\xec\x62\xe3\x08\x62\x17\xc9\x7c\x32\x80\x0a\x19\xaf\x77\x10\xf7\x50\x58\x16\xf3\x64\xe0\xf7\x13\xf5\xe6\xe4\xd8\x75\xb2\x16\x20\x40\x14\xc6\xf3\x9d\x8c\x32\x8e\x14\xa6\x4e\x8e\x2d\xea\x9c\x30\x72\x75\x06\x91\xed\x4e\xf6\xfc\x3e\x30\xd8\x21\xc0\x89\x54\xf5\xf9\x64\x37\x3c\xc0\x1e\x80\x83\xc9\x00\xbd\x93\x63\x93\xc9\x5f\x80\x00\x51\x18\xa0\x77\x72\x6c\xfa\xe4\x0c\x62\xd3\x3f\xc5\xec\x14\x44\xb6\x0f\x82\xe4\x9c\x02\x14\x73\x62\xd1\x9d\x80\x73\x18\x0c\x6e\x3b\xe5\xc2\x9a\x4d\xbd\xf0\x44\xd6\xe9\x37\xa4\x12\x64\xf1\x69\x5e\xa7\x24\x0c\xe1\x93\x89\x4f\x41\xae\xcf\xa0\x6d\xea\x94\xd4\xf1\x00\xc7\x84\xf0\xd6\x41\x3c\xb5\x53\xf2\xdb\x25\x33\x6f\x4e\x79\xb5\x8a\xc2\x08\xbf\x53\x40\x78\x04\xf3\x3d\x05\xfa\xeb\x60\x22\xcd\x29\xb8\xa6\x73\xd2\xef\x8a\xdf\x8d\xbf\xd1\x23\x4b\x2a\x9e\x02\x42\x60\x00\xde\x29\x20\x04\x06\xe0\x9d\x02\xed\x71\x10\xf3\xe9\x14\xe0\x0f\x67\x7d\x00\x29\x0f\x83\x20\x50\x07\x75\xb5\x0a\xd3\xa9\x4f\x01\xa0\x6a\xce\xeb\x5f\x6e\x9d\xf2\x5e\x02\xe5\x67\xc5\x40\x57\x34\xde\x1d\x20\x37\x94\x9f\x05\x3b\xf1\x3c\x3b\x47\x11\x2e\x56\xac\x3c\x08\x03\x49\x83\x71\x20\xa7\xdc\x05\x0f\x70\x93\x1f\x7c\x90\x47\xbd\x80\x8c\x18\x1d\x78\x0a\xb2\x64\x47\x4d\x1c\xc1\xf3\xe0\x81\x6f\x04\xf5\x8a\x44\xde\x4f\x3a\x3c\xf5\xc2\x10\xb8\x1e\x88\x2c\x29\x2c\xad\x72\x6a\xc2\xfa\x7c\x72\xc8\xa9\x28\x3a\x48\x0c\xbb\x83\xba\x5d\x85\x00\xd6\xa7\xe2\xe8\x33\xfc\xf0\xd4\x1e\xcf\x17\xfe\x8e\xe7\x2b\x7f\xe3\xfb\xbc\x15\x2b\x94\xc5\xc1\x48\xd4\x53\x3b\x66\xd0\x38\x83\x11\x1d\x70\x40\x00\x1e\x52\x71\x8e\x53\xe7\x7b\x76\x19\x9f\x78\x2a\xbc\xb0\x83\x75\xf5\x4e\x45\xa9\x2f\xa6\x53\x9d\x0a\x2f\xec\xa0\xf3\xfa\xd4\x89\x31\x91\x5d\x20\x7a\xa5\x30\x46\xf1\xd4\x57\x39\x2c\x0c\x49\x3c\x15\x25\xf4\x33\xd9\x49\x8d\x6d\xa7\x30\x52\xc1\x1c\x18\xa1\x78\x2a\x98\x01\x03\x12\x4f\x3d\x98\xe2\x60\xff\x90\x1e\x33\x99\x4d\xbd\xe3\x79\x0e\x38\xa8\x80\xcc\x06\x01\x2e\x85\x36\xda\x53\x51\x72\x9f\x01\x8b\xa7\x42\x57\x1c\x5d\x2b\xf0\x60\x82\x9f\x1e\x74\x1a\x84\x47\xda\x74\x4f\x0b\x22\xa0\xb0\x83\x00\x98\xc2\x08\xc6\xd3\xe0\x72\x1d\x74\x6c\x9f\x96\x06\x1e\xf8\x46\xd8\x82\x4a\xc8\x8c\x5a\x50\xc9\x64\x87\x70\x48\x0a\x24\xff\xb4\x8a\x25\x20\x73\x0a\x20\x05\x01\xb5\x9f\x06\x60\x6a\xc6\x38\x9e\x16\x74\x46\x69\xa9\x05\x9d\x7d\x3e\xa3\xd3\x3a\x78\xd3\xe2\x08\xa0\x4c\x0e\x7a\x64\x4e\x7b\x95\xc9\x52\x34\x82\x1e\x09\xdb\x59\xff\x38\x78\x80\x23\x80\x8e\x41\xe8\xe2\xd3\x40\x88\x0c\x79\x3c\x0d\xca\xe4\x18\xbc\xb8\x11\xdf\x52\x18\x8f\x78\x50\xf2\xad\xb0\x7e\xec\x41\xac\x49\x61\x3c\xe2\x69\x27\x9e\xe7\x14\x4e\x64\x80\xab\x07\x54\x2a\x60\x80\xe2\x69\x88\x90\x1e\x53\x3d\x1c\xcc\x49\x53\x40\xc6\xe8\x98\xea\xf2\x60\x4e\x14\xb7\x1a\x28\x8d\x11\x8b\x07\x58\x10\x85\x01\x8a\xa7\x41\x1b\x1d\xb4\xf2\x9e\xf6\x0c\x3c\xc0\x8d\x0c\x30\x05\x9a\x7d\x4f\x7b\xde\xb3\xc1\x10\xc6\xd3\x41\x5a\x8c\x74\x3f\x1d\xa4\x55\x28\x4e\x75\xa8\xaf\x83\x76\xd8\x83\xc2\x71\x85\x11\x8a\xa7\x43\x1b\x65\x40\xe2\xe9\xd0\x46\x09\x4a\x7c\x3a\x14\x99\x42\x16\xd8\x4b\xbc\xff\x4d\x01\x85\xe1\x8a\x18\x7e\x47\x79\x83\x42\x06\xd7\x6b\x2c\x22\xaf\x39\x54\x86\x2b\x8c\x57\x3c\x3d\xe0\x1b\x98\xa2\x7a\xa2\x34\x5c\xd1\x88\x41\x9a\xc4\x05\x3c\x1d\x8a\x0c\x71\x01\x0f\x4a\xc3\x15\x86\x2f\x9e\x0e\x6d\x97\x05\x2d\x4e\x00\x60\x8c\x95\xfe\xc5\xba\x76\x3a\x54\x61\xa2\x0c\x9e\x0e\x4d\x87\x90\x80\xa7\xcf\x82\xdf\x1c\x4d\x60\x3d\xd0\xdb\x7a\x50\x9c\xad\x14\x0a\x4b\x3d\xc8\x94\xdc\x2d\x8a\xab\x11\x11\xf0\xf4\x85\xe9\x92\xbb\x75\xb8\x32\xc7\xd2\x08\xd6\x7b\x76\x0b\xd9\xdd\x1f\x80\x07\x4d\x45\xa7\x43\xbb\x66\x3c\xe6\x41\x50\x4a\x21\xa6\xe0\xe9\x10\xd7\x58\xc1\xe2\x74\x68\xdb\x8c\xd7\x3c\x1d\xaa\x15\xe3\x35\x4f\x47\x18\xd7\x58\xe4\x4f\xa8\xb7\x56\x18\xaf\x79\xba\x47\x07\x1c\x61\x9c\x34\xf2\xb7\x7e\x30\x20\xbd\x0f\x06\x4d\x77\xce\xe9\x40\x99\x67\x3c\xe7\xe9\xe7\x0f\xc8\x40\xff\xc0\x88\x28\xae\x75\xe8\x72\xb4\xc1\x9c\x7e\xc7\x07\x39\xa0\x38\x67\x94\xde\x10\xf3\x52\x88\x85\x77\x3a\xb4\x7d\x46\x24\x1e\x14\x24\x2b\x04\x38\x3c\x23\x4e\x11\xb9\x1f\x0a\x90\x95\x42\x9a\x1d\x71\x68\xc8\xfd\x46\x1c\x1a\x72\xbf\x81\x78\xed\x79\x75\xfd\xe3\x5d\x31\x06\x80\x9e\x00\x3d\x99\x4c\x2e\x3b\x03\xc7\x8a\x11\xa1\x67\x40\x99\x64\x44\xe8\x19\x38\x66\xb4\x01\x1d\xc4\xa4\x14\x02\x24\x9e\x01\xf3\x00\x23\x46\x4f\x80\xa2\x4c\x66\x77\x9d\x01\xf3\x00\x43\x48\xcf\x80\x6e\x29\xc1\x64\xb4\x80\x72\x58\x7c\x00\xce\xdb\x29\xfd\x76\xa0\x38\x3f\xe1\xba\x4f\xe0\xa8\x4c\x29\xbc\x03\x77\x40\x25\xcb\x47\xd9\xb1\x52\xc9\x1e\x07\x94\x4d\x06\x86\x9e\x01\x23\x02\xe3\x40\x0f\x70\x55\x0a\xe3\x40\xcf\x80\x11\x81\x71\xa0\x67\xc0\x8a\xc4\x38\xcf\x33\x70\x92\x2a\xc5\x3f\x04\xa4\xa4\x29\x4d\x6b\x2c\xac\x3a\x99\x5f\xc0\xac\x4c\x22\x84\x9f\x81\xb3\x46\x44\xf1\x07\x2e\xf5\x4a\x05\xfc\x59\x90\xd6\x18\xfe\xf1\xac\x57\x4d\x18\xb4\xf2\x3c\x51\xeb\xa8\x7e\x27\xef\x59\x51\xb5\xf5\xd2\x6f\xd4\x6e\xf9\x76\xf5\x59\x17\x4a\x22\xff\xfc\x1e\xbf\x88\xf0\xcf\x02\xb7\xfe\xfd\xbd\x50\x7e\x43\xfd\xef\xdf\x12\xdd\xcf\xba\x0c\xb5\x68\x2a\x7f\xfb\xdb\xde\xf8\x7e\x8a\xaa\xbc\x1c\x0f\xaa\x0c\x33\x4e\xf9\x59\x19\xb5\x60\x2e\xce\x27\xa3\xfc\x40\xe6\xf7\x32\xca\x2b\x24\xf6\x87\x5a\x49\x44\xd4\x7e\x16\xaa\x04\xb3\xea\xee\x13\xb5\x90\x18\xc7\xf8\xac\x86\x12\xf0\x89\xe3\x47\x55\x60\xea\xea\x0f\xa0\x2b\x7e\xc7\xd7\x0e\xda\x39\x3e\xd4\xea\xa2\x0e\xf5\xac\xf6\x8e\x87\x46\xf8\x07\x50\x17\x95\x7a\xe3\xb3\x7a\xd4\xc2\xd2\xef\xfc\xdf\xff\xfa\xcf\x7c\x3a\xca\x7d\x34\xce\xa7\xa3\x7c\x4b\xd6\xf3\xed\xbf\xff\x8d\xa6\xf1\xf6\xfe\xdf\xff\xda\x35\x38\x1e\x54\x0c\x60\x02\xe1\xb3\xde\xab\x64\x30\x72\xed\x59\x2f\xc5\x37\xc6\xde\x3d\x80\xde\x68\xe5\xff\x61\x53\x9b\xfd\xff\xe5\xa2\x79\x80\xca\x31\xae\xc9\xbd\xe8\x51\xb4\x50\x63\x43\xa9\x88\x49\x5a\x45\x45\x65\x66\x1e\x3e\xeb\x15\xdc\xdb\x0f\x2d\x8e\x28\x62\xc8\xb1\x8d\xf4\x7e\x5f\x63\x1f\xa8\x96\x30\xf4\x3c\x4a\xf3\x88\xd6\x07\x68\x47\xb4\x35\xee\xdf\xf2\xf1\xcf\x9a\xa8\xeb\xd4\xf4\x1b\xb4\x54\xf9\xfc\x7b\x31\x56\x56\x28\x7e\x00\x12\xa2\x0a\xbb\xcf\x42\xf5\x84\xda\xf5\x1b\x7b\xad\xf1\x2f\x7c\xbf\x73\x7e\x0b\x75\x8a\xb4\x1e\x28\x47\x5e\x35\x3e\x14\x1d\x65\xf4\xf2\xb3\xde\x7b\xb3\xff\xf4\xbf\xd3\xff\xb9\x3e\x1b\xe3\xd5\x7a\xa3\x08\x69\xd2\x78\x36\x2a\x6e\x77\xd2\x2a\x4a\x81\xfc\xac\x3f\x4a\xab\x30\x9a\xfa\x59\x7b\xff\x9f\xb4\x89\x3a\x5b\xe3\xe7\xfb\x28\xbf\xbf\xd8\xfe\xde\xba\xb5\xea\x2c\xa2\x94\x08\x61\x33\x1f\xd4\xd9\x6a\xe3\xe7\x79\x9c\x8d\xc9\xf1\x1b\xea\xd8\x35\x8e\xc7\x9e\xff\xf3\x2c\x79\xfd\xad\x4e\xf1\x2c\x7f\x69\x9b\x15\x8d\x9f\xe5\xfd\xb7\x02\xf0\xb3\x1c\xa5\x93\x06\xfb\x7b\x2f\xf5\x9a\x34\x7e\x94\x0e\x6a\x3a\x0b\xef\x25\x5f\x7f\x68\xdd\x51\x0d\x63\x72\xfc\x28\x65\xd2\x7e\xfa\xc3\xd9\xd5\xf3\xa8\x73\xf7\x73\x56\x51\xb4\xb1\x8b\x17\xbd\xb2\x73\x25\xe4\xde\xb3\xce\x8d\xdf\xfc\xfe\x41\xa9\x16\x9d\xd5\x57\x26\x68\x4b\xbc\x29\x8a\x9e\x4e\xce\x07\x15\xb7\x59\x67\xed\x59\x37\xea\xc0\x65\xb5\xa3\x88\x68\xe6\xfc\xee\xfd\x5b\x44\xf5\x41\x9d\xb1\xda\x0b\xfb\x7b\xa2\xe8\x28\xfb\x7b\x70\xd6\xc5\x5b\x50\x54\x92\xa1\xed\x0f\xa2\x68\xda\x10\xef\x7e\x50\xea\x67\xe8\x77\xf0\x3a\xfd\x7e\xde\xf7\xb9\x5e\x88\xba\xe9\xfd\xe7\xf7\x7b\x3e\xa8\x54\x3e\x1b\x77\x93\x78\xe7\x7e\xef\xa6\x4a\x4b\xc3\xb3\x51\xee\x9e\x5a\xf6\xb3\xdf\xbb\xa9\x52\xf0\x7f\xf6\x7b\x37\x0d\xc2\x20\x3c\xfb\xbd\x9b\x1a\xab\x93\x3c\xc0\xaa\x19\x0c\xda\x7b\x36\xee\x26\x46\x5f\x3f\x88\x02\x2a\xf4\x47\x3c\xfb\x8a\x8a\xf1\xdf\x7a\xef\xb8\x5b\x12\xdf\xff\xbb\x5b\xbe\xfe\x9f\xa8\xee\xf0\x75\xff\x04\x74\xdf\x47\x0d\x0f\x4c\x35\x5c\xcc\x07\x86\x9a\x4f\xc4\x7f\x9e\x80\x87\x6e\xfc\xd9\x61\xc6\xf9\xbf\xca\xf7\xff\xbf\xfd\xff\xfd\xff\xdc\xf1\xf0\x75\xbd\xb2\xdb\xdf\x9f\xc8\x30\xfb\xfe\x6f\x99\xff\xb7\xf2\xdf\xff\x08\x77\x74\x95\x97\x33\xfd\xfd\xf9\x32\x15\xa6\x58\x5c\xa8\x32\xff\xfd\xb9\x50\xb0\xfc\x6b\x31\xbd\x13\x05\xf3\xda\xd7\xe2\x7a\xc7\x51\xfa\xee\x6f\x09\x2e\x64\x19\x7d\x7f\x36\xe0\x5d\x5f\x6c\xea\x6c\x2a\xd1\x34\xbe\xa6\xa2\x26\x40\x49\xd1\x8e\x9c\xaf\xf4\x75\x95\x03\x5c\xfd\xdb\xcc\x0c\x77\xd5\xf7\x27\x20\x10\x2b\x5b\x5c\x2d\xa8\x0f\xd3\xbf\x16\x2e\x5c\xbe\x32\x32\x49\x1a\x5b\x9a\x5a\x02\x41\xf9\x6b\x29\x99\x2d\x91\x5f\xc8\x11\x94\xa5\x96\xfd\xdf\xff\x26\xe3\xb1\xf3\x35\x36\x9b\x86\xfd\xf7\xbf\x99\xf5\xd6\x38\x6a\xba\xdf\xa6\xc6\xc9\xce\xc4\xa6\x57\x27\x63\x79\xe3\x9c\x1a\x97\x01\x1e\x16\x06\x34\xe6\xf4\xca\x27\xdf\x9f\x28\x93\x58\xbe\x96\xce\xc9\xa6\x8e\x1a\x6a\xe9\x6b\x19\x6a\x19\x60\x91\x6c\x59\x6a\x59\x61\xf1\x66\x8b\x46\xb0\x02\x1b\xf0\x6b\x79\xb9\xf6\xf7\x67\xfb\xef\x7f\x73\x7e\x26\x97\x9c\xb5\xaa\xf9\x5d\xd5\xc9\xf0\xd7\x9c\xf3\x50\x53\x80\x11\xb1\xc5\xd4\x12\x40\x63\x5f\x4b\x67\x4f\xc8\xc4\xa4\xcb\x25\xe7\xde\xd5\x32\xde\x8e\xb2\x9a\x6e\x35\x3d\x6f\x13\x37\x3d\x6b\x1d\xf2\xc0\x79\xf9\xf4\xbd\x9c\x87\x3e\x38\x06\x9a\x38\x72\xed\x6d\xc6\xde\xb2\x84\x7f\x46\x3a\xe7\xf7\x67\x42\x13\xdf\x9a\x59\x4d\xc0\xa8\x9b\x6c\x51\x57\x01\x42\xc6\xe5\x5b\x5a\xbe\x15\xb3\xfa\x08\x22\x9b\x16\xc9\xfc\x6d\xe2\x1e\x66\xd7\x84\xdf\x0b\x6c\x32\xdb\x29\x03\x86\xfa\xfb\x13\x43\xe7\xaa\x57\x51\x0b\x0c\xac\x8c\x6a\xcb\x30\xaf\xfe\xfd\x89\x55\x62\x7e\x6d\xae\x83\x1b\x02\x9b\x2a\x83\xbe\x72\x9d\x45\x2d\xe3\xbf\xff\x2d\x02\xb9\x64\x64\xf6\xfd\xfd\xf9\x0a\x10\x44\xfb\xcb\x80\xa0\xfd\xfb\x13\x23\xa7\xfa\x9b\x61\x30\xfd\xfb\xf3\x5e\xa8\x6e\xfa\xd7\xd2\x12\xa7\xdb\xd2\x2b\x4f\x7c\xe2\x5d\x6e\x99\xc7\xa9\xbd\x5a\x03\xb3\x6a\x32\x60\x5c\xbf\x3f\xdf\x3b\xe3\x13\x39\x72\xcb\x4b\x2d\x28\xd4\xd8\xd8\x72\xd4\x82\x4a\xfd\x1c\x41\x51\x3f\x05\xfd\x70\x04\xa5\xa9\xe5\x95\xcb\x79\x9c\x9a\x78\x07\x72\xfb\xe8\xf7\xcf\x48\xdc\xfb\xfe\x44\x9d\x5a\x8e\xa0\x72\x0d\x5a\x4d\xb8\x89\xd9\x52\xd4\x82\xaf\x71\x04\x9b\x3b\x04\xe3\x22\x4b\xdf\xe4\xa6\x15\x85\x19\x91\x3e\x8a\xdc\x45\x0a\xbd\x23\xcb\x3b\xb3\x65\xa9\x65\x23\xd7\xea\xaf\x65\xe8\xbc\x8c\xf1\x6e\x1d\x13\x1a\xf2\x98\x24\xba\xf1\x32\x91\x49\xcb\x5c\x41\x88\xc2\xf7\x27\x00\x94\x13\x5b\x26\x5b\x52\xd4\x30\xfa\x5a\x52\x55\x0b\x00\x81\x27\x5b\xba\x5a\xd6\x4b\x8d\x1f\xb7\x29\x17\x89\xa4\x5c\x2f\x91\x2c\x1a\x38\xcb\x55\x13\x9b\x30\xbc\xc6\x31\x6c\xb5\xbc\x92\x13\xe1\xce\x4a\xe2\x8e\x97\x04\x13\xc3\x27\x52\x94\xd4\x1b\x5b\xa0\x1d\x7c\xf7\x55\xc9\x9a\x6b\x4e\x28\x46\x5e\xbe\x96\xae\x96\x97\xa1\x10\xa9\xb7\x64\x2e\x5d\xc9\x13\xc3\xe6\x02\x15\xb2\x9a\x02\x9f\x18\xa5\xc2\x82\xd4\xe3\xef\xcf\x05\x81\x99\x2d\x5b\x2d\x28\x61\xdc\xd9\x72\xd4\xf2\x0a\x71\x9f\xfe\x5e\xca\x52\x3f\x2f\xdf\xa7\x34\x59\x0a\xb9\x53\x29\x0b\x65\xe6\x38\x82\xb5\xd8\xf2\xaa\x2c\x6d\xb1\x85\xd2\x46\x29\x1b\x75\x2a\x0b\x5b\x86\x5a\xe6\x3b\xea\xc6\x96\x9f\xaf\xbd\xa3\x6e\x6a\xd1\xa8\x5f\x55\x85\xe5\xf4\x4b\x31\x8d\x1a\xc5\x7f\x13\x47\x60\x5a\x03\x43\xa5\x53\xae\x8e\xeb\x9d\x57\xde\xa1\x5c\xd8\xfc\xfe\x38\x60\x43\x24\x67\x63\x08\x46\x43\xbc\xd8\xf7\xe7\x79\x3f\xf7\xf5\xd4\x9e\xf3\xed\x43\x7b\x0e\xee\xdf\xcf\xd8\xd6\x13\xa9\xbb\xa7\x0b\xe5\x27\x3f\x72\xec\x00\xe7\xf8\xfe\x04\xa3\xfb\xd4\xb7\x5e\x07\x9b\x90\x4d\x5d\x09\x65\xdb\xdb\xf3\x5d\x07\xbd\xbd\x42\x7b\x25\x00\x40\xef\xe4\x0d\x1d\xf9\x90\x63\xa5\x2f\x33\x20\x64\xca\xff\x9b\x98\xd9\x07\x0f\x4d\x1f\xef\xa1\xa9\xd4\xf4\xfb\x20\xa7\xee\x03\x61\x2f\x2c\x2e\xdd\x61\xd0\xf8\xfe\xcc\x98\xdb\x1f\x39\x77\x94\x6e\xfd\xfe\x9c\xaf\xdc\xf8\x11\xc6\x48\xf6\x6d\xf2\x40\xf8\xc4\x64\x5c\xd3\x28\x94\x0e\x47\x29\xe3\xfd\xe0\x67\xfc\x1a\x9d\xb2\xd4\xe8\xd0\xf5\x59\x16\x77\x4c\xee\xf3\x98\x86\x0a\xa6\xdf\xa9\x1a\xab\x7e\xa4\x36\x56\x85\xc6\xf8\xf9\x9f\xc7\x26\xad\x0d\x60\x3a\x76\x72\xa4\x71\x2e\x7e\xf0\xc0\x86\xc5\xc0\xf3\x89\x20\x98\xef\xcf\x97\x31\x33\x58\x64\xce\xf1\xad\xe1\x9c\x28\xfc\xc9\x18\xd7\x89\xaa\xe5\xdf\x9f\xaf\x62\x43\x6b\xf5\xaa\xed\x5b\xc3\x55\x5b\x46\x45\xc6\xbf\xb7\x56\xa3\x24\xbf\xda\x7a\xd5\x27\x55\x92\xed\x3c\x42\x0b\xf6\xf3\xc6\xec\xbd\x05\xeb\xf2\xf7\xe7\x4b\x70\x59\xc5\xa2\xaf\x6f\x84\x6b\x5f\xd0\x77\x59\xe0\xc9\xc9\xb2\x76\x00\xeb\x5d\x2a\xf4\x77\x65\x35\x95\x97\x33\xb1\x4c\x93\x5f\x4d\x4d\x60\x9b\x2a\x7f\x78\x0d\x35\x45\x81\x81\xc5\x26\x53\x13\x58\x1d\xcb\x3a\x79\xd2\x30\x50\xcc\x84\x51\xba\xdb\xd3\x52\x13\x44\x7d\x96\xba\x73\x52\xef\xf6\x60\xf9\xac\xca\xe6\x14\x0c\xb6\x67\x0c\x9e\x35\xd2\x3c\x6b\xf0\xaf\x1c\xba\x8a\x6a\x33\x66\x57\x53\xf4\xa5\xa6\x87\x4d\x05\x15\x05\x3f\x1d\x71\x7b\xd1\x42\xbd\xd4\xbb\x8a\x8a\x39\x96\xa9\xa6\x15\x30\xf1\x6c\xda\x6a\xc2\x30\x58\x55\xcd\x29\x1f\x6c\x2f\x98\x97\xaa\x35\x56\xcd\xeb\x15\x03\x56\x51\xa1\xc6\xaa\xd5\x68\x98\x32\xcb\xaa\x79\xd3\x94\x1b\x46\xc8\x0a\x6a\xde\xb4\xbc\x0d\xc3\x60\xa5\x43\x40\x0a\xfe\xfd\xd9\x31\x0c\x16\x71\xf4\xa1\xfd\x02\x6e\xc6\x0f\x45\x0d\xad\xc6\x2b\x4b\x2e\xde\x8f\x1b\x69\x00\xdf\x9f\xa8\x52\xc9\xc2\x64\x3e\x44\x36\x23\x0a\x7a\x72\xbf\x86\xc8\xe6\x3d\x5f\x8b\x08\x12\xdb\xa7\x86\x31\x63\x18\x9c\x32\xa5\xd3\xed\xf0\xc9\x32\xfc\x6b\xfb\x54\x5f\xef\x45\xba\xaa\x8a\x87\x4e\xad\x06\x02\x02\xa8\x7f\x6c\x9f\x5a\x0d\x5c\xd4\x55\x53\x5e\xda\x94\x85\x29\x6b\xf0\x4b\x53\x5e\x28\xa4\xa9\x11\x2e\x11\x1b\x0a\x3d\x30\xda\x6b\xfb\x12\xb1\x6d\xcc\xeb\xa7\x9c\xa8\x96\xf7\x65\x06\xab\xb2\xb2\xa1\x6f\x11\x5b\x40\xb3\x8b\xe6\xb7\x06\xbf\x51\xaf\x54\x27\x65\xab\x2f\x40\xda\x12\x73\x6d\xbb\x69\x5e\x86\xbe\xf4\x41\x53\x5f\xa8\x11\x41\xf3\xf5\x76\xd3\x7e\x01\xa3\x96\x21\x60\xdb\x4d\x24\xfa\x5e\xc5\xab\xaa\xc9\x35\x2f\xc7\x1a\xfe\x54\x44\xd5\x1a\x3a\x86\xf1\x53\x0c\x55\xfb\xe5\x58\x5e\xd5\x39\x75\x4d\xf9\xa0\x04\xa9\x0e\xd1\xd1\xe0\x0f\xb6\x72\x70\x18\xb7\x28\x0a\x39\x6c\x49\xa7\xf2\xd6\x08\x6f\x8c\x70\xb2\xaf\x5b\x23\xbc\x41\xd8\x53\x1f\x14\xb1\xdd\x01\x7f\xcf\x35\xbc\x35\xc2\x1b\x9b\xa2\xa3\x77\x6b\x53\x9e\x18\x06\x37\xe5\x51\x5f\x4f\xc0\xc9\xb3\xaf\x47\x7d\x3d\x58\x8d\xc5\x11\x3e\x22\x36\x40\x87\x33\x6a\x6d\xfb\xa3\x4d\x79\xb0\x1a\xaa\x55\x7a\x91\x00\x0e\xae\x80\xaa\xb2\xa4\xe2\xf3\xb8\x2b\x57\x53\x85\xd1\xcb\xd5\x74\x02\x4d\xfe\x6b\x4a\x5c\xc3\xf3\xf2\xf9\xd5\xc8\x1c\x8e\xf8\x3c\x32\x5d\x16\x2b\x27\x6d\x24\xb6\x7c\x7f\x3e\x68\xe2\x30\xc4\xe7\x91\xde\xb2\x88\x67\xb1\x4f\xde\x6a\xc2\x07\x59\x86\xf0\x88\xcf\x9f\xe0\xf3\x2a\x7f\x9a\xb9\x1a\x07\xc5\x16\x9b\x2a\x8d\x96\xaa\xa6\x16\x88\xef\x6c\xea\x6a\xc2\xbc\x78\xb5\x9d\xa2\x79\x81\xcf\x13\xbc\x62\x1f\xf1\xf9\x53\xd1\x17\x8f\xf9\xa9\xea\xab\x46\x5f\x95\x4d\x9a\x17\xca\x79\x12\xcc\x62\x9f\xa6\xd5\xc0\x15\x40\x58\x8a\x7d\x74\x05\x1c\x5c\x01\x8d\x45\x3b\x8f\xae\x00\xa4\xf8\x2c\xea\xca\xfb\x74\x0d\xa3\x63\xf0\x2c\xdd\x89\x22\xef\xdf\x9f\x81\x62\xae\xb7\xb4\x86\xb8\x38\x9a\x08\x60\x68\x84\x03\x85\x6a\x67\xfe\x27\x51\x75\x9f\x51\xf4\x66\x20\xbb\x93\x4c\x75\x79\x1c\x14\x14\x6d\xaa\xee\xab\xcb\xe3\x8c\x13\xc0\xe8\x5f\xd3\xd4\x50\x66\x60\xa6\xf3\x2d\x5d\x1e\x07\xa6\x8d\xa6\x9d\xa6\xea\xb5\x0f\xaa\x9a\x11\x7a\x70\x9f\xa9\x8d\x99\x58\x2c\xd6\x15\x3d\xba\x3c\x0e\x2e\x8f\xa6\x7a\xbf\xba\x3c\x00\xa6\xba\xba\x4a\xfb\xea\x86\x38\xb8\x21\x08\x52\xb8\xcf\xd2\x12\xbf\x0a\xd7\x22\x92\xc4\x3e\x5b\x3b\xfd\xca\xf0\x8b\x9a\xd1\x3e\xe2\xda\x07\x95\x55\x89\xcd\xb0\x0f\x55\xa3\x7d\x3c\x90\xcc\xb9\x1a\x62\xcd\x07\xac\x99\xf1\xff\xfb\x88\x35\x1f\xb0\x66\x8a\xaa\xfb\x88\x35\x1f\x47\x5f\x14\xb3\xce\x51\x5f\x27\xfa\x52\x93\x08\xee\x60\x35\x78\x0d\x9c\xa3\x35\x04\xd7\x66\x61\xb4\x7d\x6e\xad\x21\x58\x33\x6b\xe9\xec\x23\xd6\x7c\x1e\x8c\x70\x70\x0d\x1f\xad\x06\xd0\xa0\x32\x2f\x7b\x64\x5e\x7d\x7f\x62\x18\xaa\x7f\xfc\x68\x18\x2f\xe7\x5c\x04\x41\xd8\xb7\x84\xe9\x3b\x50\xaa\x55\xb8\x56\xc2\xf4\x7d\x61\x18\xaa\x49\x4b\x4d\x71\xdf\x00\x6a\x20\x10\xe4\xbe\x29\xb8\xef\x3b\x15\x94\x21\x66\x5f\x89\xf3\xba\x33\x8a\xfa\xb2\x48\xec\x5d\x34\x0c\x88\xaa\x59\xf5\x81\x25\xaa\x22\x33\x6b\xb1\x1c\xcc\xbe\x8b\x3e\xf8\x72\xb3\xc5\xb4\x87\x7d\x97\xa1\x26\xe0\x21\x73\x2b\xef\x62\x6a\xc2\x30\xc8\xdd\xee\xaa\x61\x44\x45\x00\xf2\xa9\xbb\xaa\xaf\x80\x64\x57\x85\xe1\xaa\xbe\x2a\x2a\x27\xb3\x74\x2b\x80\x72\xbf\x3f\x03\xd2\x9b\x53\x16\xe3\xbb\xc1\xf8\x86\xfa\x6a\xfa\x20\x04\x5c\x26\x5f\x6c\xe4\x9a\x7d\x7f\xfe\xc1\x63\xb3\x89\x17\xf0\x1d\x05\xb6\x79\x6d\xdf\x5d\x6b\xd8\x51\x7e\x59\xe5\x92\x69\xa3\xde\x77\x1f\x68\xe2\xbc\xba\x76\x19\x68\xbb\x8c\x14\xdd\x48\x71\xfb\xfe\xc4\x08\x3b\xa7\xdc\x8f\x9a\xb0\xbc\x2a\xad\x2c\x4e\x7a\x0f\xf4\xf5\x53\x65\x59\x7d\x01\xe5\x82\x51\xa5\xfb\x16\x3f\xbc\x83\x1f\x52\x0e\xb8\x87\x88\x6d\x62\x0d\x59\x73\x1d\xe8\xbe\xdf\x9f\xa8\xf0\xfc\x53\xb1\x59\x53\x06\xd3\x1b\x2a\xc6\x2c\xa6\x77\x1b\x9a\x74\x52\x4c\x2b\x1f\x45\x35\x28\x4b\x21\x37\xee\xfb\xb3\xa0\xfa\x33\x87\x21\x6e\x73\x43\xda\x9b\xaa\xd2\xed\xfa\x60\xd4\xd4\xa0\x1e\x7b\xbb\xb6\x32\xb8\x0d\x2f\xfb\xfb\x68\x2b\xcf\xbb\x86\x53\x95\xb1\x25\x23\xde\x28\x9c\x97\x35\xf8\xa3\xfd\x02\x8f\x9a\xaa\xb7\x2d\x1e\x75\xdf\xf1\x41\xf6\x75\x2f\x35\xbd\x97\xd4\x14\x01\xdc\x5a\xf9\x07\x53\x56\x81\x6c\x49\x7b\x37\xd8\xd7\xd4\xca\x3f\xfa\x20\x78\xd4\xd4\x1a\x8a\x47\xdd\x10\xe9\x98\xec\xbd\x1f\xf1\xa8\x07\xaa\x3b\xb3\xb6\xf7\x23\x91\x0e\xf9\x85\xa9\xf0\x26\x7a\xae\xa5\x26\x94\xc8\x5e\xfa\xe0\xad\x26\xf4\x45\x19\xf1\x49\xdc\xca\x07\x12\xd8\xd2\x07\x25\x81\x3d\x39\x6a\x64\xf3\x83\x92\xc0\x1e\x70\x36\x26\x11\xef\x47\x3c\xea\x81\x2c\xc5\xec\xe0\x0d\x47\xed\xf7\x67\x7c\xf0\x5b\xde\x47\x3a\xf3\x83\xfa\xe9\x8c\xc6\xdd\x8f\xc4\xac\xe7\x65\x3c\x6b\xa9\x90\x74\x9d\x6a\x5a\x01\x2d\xcd\xa6\xad\x26\x8c\x90\xd5\xdf\x1f\x31\xa2\x07\xdc\x86\xae\xff\xfd\x88\xdb\x3c\x51\x6f\x99\x52\x2c\xdc\xca\x7f\x7f\x76\x54\xf8\x26\x4b\x79\x24\x81\x3d\xe1\x10\xa3\x0c\xf0\x88\xdb\x20\xf5\x71\xb1\x88\xc3\x7e\x86\x46\x08\x9d\x99\xc9\xa9\xfb\x91\xd8\xf3\xe0\x98\xaf\xc5\xd5\x98\x5a\x5e\x88\x3d\xcc\x50\xdd\x8f\x14\xe3\x07\x02\xcc\xd2\x2e\x2f\x51\x54\x54\x79\x66\x6d\xff\x67\x65\x35\xc1\xb5\x4b\x34\x9d\xfd\x2c\x8d\x3e\x8a\x41\x5f\x2a\x63\xbe\x48\xbf\x0f\xca\x4f\x5c\x4c\x4c\xdd\x8f\x64\x98\x07\x9a\x67\x51\x35\x74\xd3\xac\x2d\x3e\xa9\x3a\xe0\xf6\xf3\xc9\x27\xda\x3e\xa6\xf8\x88\xe5\x3c\x51\x13\xfa\x52\xbd\x70\xd7\xa1\xf0\xe8\xae\xfe\x9b\xc0\xfa\x48\x01\x7d\x80\xdc\x51\x54\x96\x5d\x2c\xe9\x41\x39\x8c\x8b\x39\x99\xfb\x39\xda\x84\x13\x93\x68\xa4\x64\xb1\x97\x27\x6a\xc1\x32\x53\x72\x3f\xb7\xd6\xe5\xc6\x40\xc9\x1c\x9f\x5b\xeb\x72\xc7\xdc\x07\x29\xe5\xd1\xee\x41\xd3\x2c\xa2\xe5\x47\xbb\xf7\xc4\x28\xa9\xd6\x3e\xe2\x4b\xcf\x13\x23\x21\xdf\x7f\xc4\x98\x9e\x27\xba\x63\x7d\x32\xb9\x83\xec\xba\xa2\x3b\x35\x65\x35\x45\x77\x44\xed\xbf\x68\x70\xb4\xeb\x8a\x45\x51\x19\xef\xeb\xa8\x0d\xdd\xd1\xd8\x6b\x17\x39\x90\x21\xcc\xe0\x6d\xe3\x7b\x49\xdf\x4c\x51\x83\x5d\xf5\xcc\x19\x5f\x60\x11\x5f\x50\x9a\x3e\x79\xb3\x29\x8f\x78\x8d\x9f\xa4\x6b\xd1\xae\x1a\xdd\xa9\x5c\x39\x59\x8d\x5d\x35\x10\xc1\xd5\xd4\xd5\x14\x9f\x54\x77\xf5\x61\x5b\x0b\xff\x99\x6a\xcb\x33\x64\xc0\xae\x16\x88\xd9\x85\x4d\x5b\x4d\x1e\xd5\xdf\xb9\x98\x4d\x33\x18\x31\x71\x55\x7e\x1f\x9a\xf8\x88\xa2\xf0\xec\x6d\xfc\xbc\x16\xeb\xcc\xa2\x08\x0a\x6b\xb0\x0b\xae\xef\x4b\xa5\x98\xae\xa9\x75\x9e\x51\xf5\x9d\xc5\xdd\xae\xa9\xee\x50\xa0\x84\xf1\xdf\x76\x2d\x91\xc3\x1a\x51\x2c\x3e\xb3\x6d\xaa\x2d\x40\xa8\xb9\x96\x4b\xd4\xb0\xfe\xaa\xd4\x73\x06\x4b\x6b\x19\x58\xf7\xac\x63\x71\x6d\x2d\xe5\x8e\xde\xb2\xda\xd4\x1b\x2a\x71\x32\xc4\xdb\xae\x6d\x6a\x7a\x02\x96\xf9\x6b\x32\x7d\x11\x75\x58\x19\xb8\x6d\x97\x69\xbf\xed\xaf\x33\x8e\xd1\x44\x42\xc1\xc3\x98\x49\x66\x97\x69\x6e\x1e\xab\xcc\x72\x2e\x97\x8b\xbc\x3c\xba\xe3\xe6\x90\x85\xd9\x05\x16\x56\xb5\x37\x2e\x32\x89\x8a\xc3\x4c\x2b\xb3\xeb\xe8\xa8\x9e\xc0\x46\xe6\x04\x8e\xf6\x26\xf8\x57\xd6\x31\x3e\xda\xee\x13\x93\x63\x8d\x86\xeb\x68\x72\x27\xba\x63\x29\x96\xeb\x16\x09\x01\xfc\xf4\x22\xfa\xbc\x5d\xb7\x16\x2c\x38\x8a\x0a\x65\x25\x71\x94\x74\x45\x7f\x2c\x1e\x22\x27\x9c\xa5\xc0\xc0\x63\x95\x8d\x44\x67\x84\x25\x14\x8d\xa4\x2d\xda\x92\x18\x4a\x0a\x86\x92\x59\xcd\x30\xd1\x80\x65\x09\x0c\x85\xc6\x68\x4b\xf4\x5a\x5b\x0a\x1f\x46\xe1\x82\xa5\xa4\x81\x44\x2d\x76\x16\xea\x49\x49\x03\x01\xab\x21\xc0\xb1\x25\xb1\x9a\x94\x73\x7c\x91\x6d\xb9\xa8\x0d\x71\x66\xa4\xd7\xc4\xd0\x07\x4b\xc1\xa1\x98\x6e\x64\x49\x1c\x2a\xa1\x7a\xd6\x45\xb1\xc6\x52\xd6\xbc\x11\x06\x75\x15\x0d\xa5\x68\x72\x25\xba\xe3\x04\xa8\x1d\x5a\x24\x97\xd3\xc4\x6d\x89\x3e\x0e\x4b\x05\x2b\x59\xf4\x5a\xd5\xbe\x41\x3d\x64\xc8\xbc\x21\x05\xfd\xfb\x33\x06\xc2\x32\x65\x89\xaa\xa3\xa5\xe0\x95\x4c\x23\xb2\x54\x35\xb9\x08\x32\xa3\x87\xc9\xe4\xc0\x33\x38\xf0\x12\xe3\xeb\x2d\x35\x75\xd7\xa2\x3b\x56\x82\x42\x28\xd6\xf7\x27\xe6\xfd\xf3\x45\x2d\x73\x54\x45\x67\xbe\x91\xa5\xa6\x91\xb4\x58\x66\x1e\x90\xd4\xb4\xcc\x2d\x46\xd9\x38\x73\x7a\x56\x2d\x8d\xf8\x26\x6f\x82\x34\x44\x43\x81\x5d\xc8\xa3\x9a\x86\xd6\x39\x38\xba\x18\x62\x1a\xea\x2e\xd8\x36\x53\x62\x2c\x4d\x11\xd1\x8c\xee\x58\x72\x2f\x4d\x75\x17\xe5\xfb\x59\x76\x09\x61\x0f\x7f\x7f\x42\xe2\xbb\x8a\x8e\x9c\xd8\x76\x04\x91\x55\x4d\x6e\x69\xeb\x82\xa3\x33\x77\xc5\xd2\xd2\x82\x85\x34\xa8\x8a\x68\x49\x2c\x3d\x05\x6f\x16\x03\x4b\x5b\xef\x01\xc6\xf9\xfa\x39\xc7\xae\xf7\x82\xb9\x55\x6d\xd0\xd1\x42\x07\x07\xab\x2c\x35\x93\xc4\xc1\x52\x48\x60\x04\x29\xb1\x74\x5c\x6d\x38\xad\x64\x52\xe9\x16\x85\x85\x70\xf6\xdb\xa6\xc5\x84\x70\xc6\x08\x73\x4b\xb7\xf6\xee\x8e\xde\x78\x1b\xa7\x5b\x33\x08\xc1\xad\xb2\xdc\x4c\x7a\x34\x03\xe4\xdf\x5d\xf4\x62\x58\x7a\xb4\x41\xc1\x2f\xe9\x90\x30\x05\xa9\x58\x0e\x31\x8b\xd1\xe3\x86\x9a\x11\xdf\x9f\xa0\xf6\x71\xfd\x93\xb0\x6b\xf9\xea\x7a\x33\x26\xcf\xb2\xf0\x99\xca\xa3\xe5\x70\x09\xd3\x2f\x61\x59\x6c\x38\x07\x1b\x1e\x1a\x28\x27\x9f\x43\x76\xab\xbc\x41\xb3\x78\x6d\x4e\x31\x50\xce\x21\x6d\x35\x61\xee\xf4\x4c\x58\xa6\xb7\xc0\xa2\x90\xc4\x45\x7c\x6c\xcb\xd4\x2d\x2d\xa3\xb6\xf3\x45\x8f\xbc\xe5\xa2\xa1\xc4\x51\x6f\x64\x3a\x59\x47\x3d\xc7\x51\x67\x10\x9a\xe5\xf6\xf3\x5e\x8c\x85\xf7\x56\xd6\x51\x47\x3c\xe3\xdb\xc6\xfe\x68\x2c\xb2\xdc\x03\xe0\x96\xd3\xeb\x9a\xde\x88\x29\xb0\x94\x5e\x1e\x5a\x95\x11\x40\xb9\xfc\xe2\xd0\xfe\x04\x87\xa0\x8d\xdc\xb2\x38\x44\xc4\x2d\x5e\x2a\xe1\x9f\xa7\x3e\x09\xcb\x4f\xfd\x69\xd2\x27\x81\x90\x74\xd1\xa8\x6d\x8a\x6a\x32\x44\x35\xa5\x4b\x75\xf6\xf3\x12\x01\x82\x7b\xfc\x6c\xab\x98\x47\x5e\x25\x5e\xeb\x6c\xd3\xfe\x04\xf7\x50\x61\xfd\x2c\x79\x30\x43\x1e\xa4\x0b\xcb\x50\x3d\xe3\xfb\x33\x46\x42\x06\x01\x04\x89\xef\xcf\x18\x09\x69\x76\xab\xb7\x1d\x98\xa9\x24\x22\xc6\x60\x58\x86\x38\x78\xa9\x3e\x7e\xde\x5a\xca\x1d\xbd\xb1\x72\x5c\x36\x6d\xb8\xc5\xe4\x58\x5b\x2f\x9b\xba\xf3\x98\x1c\x2f\xd1\xec\x9a\x5c\x40\x79\x6a\xde\x12\xdf\x72\x70\xbf\x4e\x26\x9d\xc5\xfd\x72\x70\x3f\x95\xac\xcf\x87\x7c\x3f\x87\x8c\x46\xc0\x64\xcb\x47\xdd\xc1\xf0\xc5\x2c\x7c\xcb\x87\x6c\x25\xc3\x39\x7a\x75\x72\xb8\x7c\x8b\x50\x50\xb3\xbf\x69\x51\x6e\x9d\x90\x7b\xc7\x6b\xdc\x9e\x5b\xdb\x03\x0e\xd7\xb4\x5e\x8f\x76\x07\xc8\x49\x97\x2a\xe2\xe7\x47\x13\x00\xae\xfd\xcf\x59\x7d\xb4\x3d\xa8\xa2\x4c\x54\x7e\xcb\x74\x82\x5a\x06\x46\xc2\x45\xd0\x66\x2b\x62\x8b\x05\x8a\xa9\x0a\x4c\x16\x29\xa6\x25\x38\x26\xa1\x9a\xad\x48\x31\x2d\xc1\xf7\x08\xd3\x6c\x45\x7c\x2f\x70\x38\x2e\x15\xe4\x2f\x49\xdd\x21\xf8\xb1\x55\x35\x15\x35\x61\x6e\xbc\xe7\x0b\xc3\x1f\xad\x84\xca\xda\xa9\x59\x17\x3a\x49\xad\x84\x14\xa3\xea\xfb\x45\x52\x4c\x09\x34\x48\x5e\x84\x45\xec\xab\x34\x6c\xce\xa0\xb8\x5e\x18\x78\x6e\x05\x4a\x64\xfb\x69\xba\xd5\x84\x7d\xe3\x15\x59\xba\xa6\x86\x5a\xa6\x17\x03\xd6\xad\x74\x0d\x24\x50\x26\x29\xde\x14\xfa\x13\xad\xc0\x9f\x78\xa9\x0e\x7c\x19\xfa\x24\xc2\x4d\xda\x4f\x93\x36\x27\xf8\xa1\xaa\xab\x97\xa1\xcd\x09\x69\x6a\x50\x09\x2e\x43\xf3\x0e\xb1\x88\xa6\x75\x53\xe0\xa5\x95\x19\xdd\x71\x94\x92\x98\x0a\xf8\x21\x61\xf8\xad\x88\x1f\x96\xd0\x73\xc7\x50\x9b\x36\x27\xf8\xe1\x60\xc5\x58\x25\x6e\x58\x09\xa6\xa7\xf2\xee\x0a\xc0\xb4\xb2\xfe\xde\xe3\x28\xc5\xbd\x90\xf0\x91\x54\x2c\xb4\x6c\x2d\x4a\x48\x4c\xaa\xc7\xae\x58\x4b\x03\x2e\x4a\xba\x26\x4b\x13\x2a\xda\xd2\x4a\x28\x98\xaa\x9a\x5e\xa4\x60\x16\x28\x98\x4d\xb3\x73\xcd\x3c\xb8\x97\xea\x80\x17\x57\x77\x1e\xf1\x60\x2c\x78\x57\x5c\xf4\x85\xc2\xd8\x0c\x6a\xb6\x22\xf9\xac\x84\x7c\xa6\x22\x95\xe5\x68\x24\x27\xa0\x4a\xf9\x45\x71\xa8\x12\x0a\xe6\xa4\x28\x5f\xa4\x60\x02\x51\xe5\x6d\xe3\x0c\x6e\xad\x73\xc8\x6e\xc4\x90\xb5\x22\xf6\x55\x9e\x58\x30\xd1\xfa\xa3\x05\x0b\x41\x6b\xb2\xfe\x5f\x15\x47\xa9\xd7\x5f\xdb\x37\x96\x2a\xbb\x54\x0d\x5d\x51\xe5\xb4\x2b\x03\x21\xac\xc6\x21\x9f\xbc\x57\xab\x0e\x79\x0d\xe1\x86\x26\x75\xab\x12\x6e\x6a\xa8\x7d\x8b\xfa\x67\xcd\x53\x6d\x2b\x60\x43\xd9\xc4\x73\x57\x43\x26\x52\x95\xec\x2a\x99\xe8\x2f\x6b\x87\xf0\xa3\x56\xa5\x50\x21\x96\x31\x75\x96\x9b\xac\x52\xa8\x6a\xb0\x22\x26\x0f\x5b\x6d\xfa\x64\x88\x52\xc4\xbb\xb4\x2a\x5e\x54\x43\x5c\x22\xd4\xa5\x29\x79\xc1\x6a\x8f\xee\x1a\x9b\xba\x9a\xb0\x60\xaa\x9e\x5c\xbb\x16\x2c\x8e\xb9\x2a\x1f\x57\x19\xad\x6a\x68\x3f\x6b\xb6\x7f\x13\x77\xeb\xd4\x48\x91\xbe\x7d\xd1\x8a\x6e\x95\xae\x79\xab\xbb\x44\xc0\x22\xdb\x24\x56\x54\x1c\xcc\x74\xf1\x9a\xac\x3a\x98\x15\x07\x33\x5d\x54\xe9\xab\x0e\x66\x05\x36\x59\x22\x88\xbc\x55\x5a\xbd\xad\xc2\xb2\x9d\x08\x81\x68\xd5\x35\x45\x8f\xb1\xf0\x9e\xa9\xae\xb1\x78\x8c\x85\x15\x92\xab\x4e\x2d\xd2\x34\xde\x36\x2e\x9b\x8e\x26\x30\x6d\x52\x52\x3d\xdd\x7a\xb4\x15\x27\xe6\x40\x2b\x67\x95\xea\x54\xa1\x3a\x75\x4d\x41\xc7\x16\x30\x38\x29\x11\x31\xd0\xaa\x8e\x6d\x45\xba\x5d\x52\x71\xdc\x7a\x17\xb5\x05\xb0\x28\x7b\x63\xdc\x95\xd5\x3b\x46\x42\xfe\x0e\x28\x9d\xef\x4f\x8c\x84\x22\x42\x7d\x44\xba\x4f\x2c\x0a\xef\xfa\xfa\x68\x51\x9e\x18\x25\xed\x87\x4d\x87\xbd\xa5\x58\x68\x32\xea\x26\x65\xa5\xe1\x42\x67\xd4\x85\x35\x5d\xe8\x40\xcf\x49\x8a\x38\xb5\x26\x3e\xd0\x80\x05\xac\x90\x53\x6b\x32\x1a\xa1\xce\x54\x62\xcc\xbe\x35\xb1\x88\x96\x4b\xbc\xf6\x91\x5f\xcb\x1a\x09\x8c\x46\xaa\xf6\xdc\x98\xac\x65\xc8\x8a\x49\xbd\xea\x2d\x75\x06\x74\xea\xa4\xca\xb1\xad\x68\xde\x88\x35\x60\xc2\x81\x35\xc6\x1a\x58\x2b\x31\x10\xca\xbb\xca\x9a\xb1\x56\x62\xde\xdc\x39\xe5\xcd\x58\x2b\xd1\x1d\xb7\x47\xf9\x31\x86\xfc\x98\xc4\x4c\x57\x53\x82\x8c\x35\xd8\xd7\x09\x4c\x64\x4d\xf6\x75\xe4\xce\xbc\x5f\xe4\x72\x55\x4d\x0e\x85\x77\x99\x7b\x60\x8d\x01\xb5\x06\x64\xa2\x94\x08\xa7\x67\x8d\x7e\x3e\x6b\x2d\x26\xc7\xd2\xb5\x4d\x2c\xae\x41\x23\x4c\xc4\x76\xb0\x46\x27\xa0\x35\x38\x01\x25\x41\x37\x86\x1c\x58\x0b\x0e\xc7\xa2\xd0\xad\x6b\x29\x57\x8c\x84\x15\xaa\x9b\xc4\x80\xb6\xe3\x35\x0e\x44\x62\x40\x0b\x4e\x44\x28\x39\x6b\xe2\x44\x2d\x38\x51\xd6\xa6\xee\xad\x36\x00\x1b\xd2\x09\xd0\xb6\xc6\x0f\x05\x47\x71\x42\xd6\x4c\x23\x31\x8c\x84\x77\x61\x93\x31\xbc\xc1\x18\xce\xdc\x21\x6b\x32\x86\x47\x65\xae\x24\x63\x78\x33\x6d\x0e\x42\x49\x59\x13\xc5\x9a\x69\x73\x82\xeb\xc9\x16\xde\xc4\xf5\x5a\x70\x3d\xa2\xaf\x59\x13\xd7\x8b\xba\x5f\x89\x79\x9b\xd6\x5c\x93\x43\x10\x41\xd7\xf9\x76\x6d\x0e\x8c\xe1\x2c\x9e\x62\x4d\xc6\xf0\x76\x62\x25\xa9\x84\x35\x19\xbc\x5b\x70\x21\x19\xbc\x9b\x8c\x3b\x2d\xd8\x09\xc1\xc0\xac\x8b\x9d\xf4\x2b\xda\x68\x32\xe9\x52\x1d\x7a\x8a\xa1\x4c\x36\x65\x35\x95\x08\x7a\x1e\x6c\x6b\x6a\x1b\xd1\xb6\xd8\xc6\x61\x02\x59\x29\xc9\x45\x6e\x5d\xd6\xe4\x0e\x8b\x71\x2a\xdc\xf1\x2e\x8b\x71\x8f\x23\x4e\x67\xac\x75\x1d\xf1\x5e\xa3\x3f\x4a\x70\x5d\x86\xda\xde\xe3\x3d\xd2\x73\xef\x7a\xaf\xc7\x7b\x5c\x6a\x25\xa7\x59\x5f\x31\x16\x16\x12\xef\x0c\x96\x33\x80\x15\x25\xe6\xe2\x58\xd7\x8d\xdc\xe3\xf8\xc8\x8a\xdb\x99\x01\x66\x3d\xce\x08\xc1\x24\xac\xeb\x8c\xf4\xbf\x80\x6a\x32\xc5\x2e\xcf\x4f\x0f\x38\xc1\x4b\x4d\x5a\x95\xbf\x88\x6a\x9e\xff\x6e\xda\xa1\x13\xdd\x91\x4d\x75\xd9\x1d\xfb\x1d\xc3\xd4\xec\x64\xed\xeb\xf0\xc5\xfe\xa8\xe5\xfd\xd1\x7b\x71\x67\xb5\xa4\xf7\xb4\x62\x41\x64\x8d\x12\xdc\x10\x91\x0d\xa8\xbc\x4c\xa3\xb7\x21\x95\x17\xa8\x43\x29\x11\x5a\xcf\x86\x4c\x7d\x23\x47\x77\x3c\xb0\x43\x72\xe6\x80\x9c\xc9\x6a\x39\x36\x18\x8e\x6b\x23\xe8\x88\x61\xa6\x36\x44\x47\x03\xb8\xd2\x89\x49\x99\x36\x98\x78\x61\x03\x35\x83\x06\x1d\x16\x83\x39\x7a\x36\xe2\x16\x91\x09\x6d\x14\x8d\xa4\xc4\x48\xd4\x44\x4a\x19\x35\xd6\x92\x77\xfc\x90\x7b\x61\x04\xd5\x4a\xb9\x18\xa2\xda\x28\xae\x95\x88\x2b\x61\xa3\x6a\x06\x71\x1f\xb0\x2c\x9e\x0d\x69\xdf\x81\x67\xc4\xfa\x3d\x36\xe4\x43\x18\x2d\xb6\x87\x96\xab\x21\x03\xe1\x88\x43\x22\x63\xd8\xd0\x21\x19\x71\x48\xba\xf6\x4e\x87\x64\x74\x7c\xb3\x6b\x13\xa4\x48\x0f\x28\xd2\x23\xcf\x7f\x93\x78\x95\xfd\x69\x03\x06\xc4\xd4\x29\x9d\x0e\x39\x8d\x07\x9c\xc6\x2c\x17\x64\x43\x4e\x63\x24\x8d\xa6\x1f\x11\x6d\x48\xfe\x1e\x33\x26\x28\x42\x92\xd3\x78\xcc\xe8\x4e\xdf\x94\xd3\x78\xcc\xe8\x8e\xeb\x32\x45\x2c\x2b\x60\x34\xbf\x93\x37\x98\xdd\x6e\x51\x45\xec\x47\xf8\x19\x4b\x93\x43\x41\xb1\xc1\x73\x0e\xf8\xa6\xef\xcf\x18\x08\x85\x80\x21\xc7\xc4\x08\xbe\xc2\xf0\x57\x1b\xe2\x2b\x23\xee\x57\xc6\xbf\xda\x90\x43\x79\xec\xe8\x4e\x4d\xa6\x26\xcc\x8d\x02\xce\xd8\x5a\x4a\x8b\xe5\x22\xd3\x44\x11\xb3\xef\xcf\x16\x40\x96\x6c\xd2\xdc\x2c\x06\x42\xb9\x62\xc8\xd9\x3c\x10\xf8\x92\x18\x53\x6b\x43\xb6\xc5\x11\x57\x17\x93\x56\x6d\x48\x80\x1e\x77\x8c\x92\x13\xb8\x35\xca\x60\x62\x83\x8c\x6a\x88\x89\x8d\x60\x62\x3f\x67\x59\x4c\x6c\x40\xcb\x4e\x83\xb2\xca\x90\xdd\x6e\x20\x79\x61\x70\x06\x53\x3c\x6c\x06\x0f\x23\xe3\x98\xe2\x61\xf3\x8a\x44\x09\xf2\xb0\xc9\x50\x37\x8b\xe2\x68\x2c\xbe\x64\x93\x49\x80\x36\xaf\x18\x08\x8d\x19\x53\x2e\x89\x19\xd7\x32\x73\xe8\x6d\x4a\xa5\x9f\x71\xbf\x8a\x2c\xa7\xdc\xbf\x13\xee\x5f\xd6\x01\xb4\x29\x1f\xef\x0c\x71\x9d\xe0\x05\x36\x25\xae\x4f\x88\xeb\x32\x28\x4d\xdd\xca\x33\x98\x30\x23\x5e\x6d\xca\xc7\x3b\x83\xd3\x8a\x1a\xa6\x38\xed\x8c\x1b\x9b\x75\xaf\x6c\xca\xc7\x3b\xe1\xe3\x1d\x34\x57\x4e\xf9\x78\x67\x70\x53\x9a\xaf\xa6\x7c\xbc\x33\xc4\x75\x06\xbd\xda\xac\x5a\x93\xe0\xb4\xcc\x67\xb5\x29\x4e\x3b\x81\xf3\x99\x98\x2e\x6d\x53\x1c\x73\x86\x04\xcd\xc2\x50\x36\x25\x41\x4f\x48\xd0\xac\xa5\x63\x53\x46\xc9\x19\xdc\x74\xd0\x04\x3a\xc5\x4d\x67\x70\x53\x96\x8a\xb2\x29\x6e\x3a\x7b\x74\x47\x73\xd9\x94\x59\x72\xc2\x2c\x39\xe8\xad\x98\x32\x3d\x4e\x98\x17\x93\xac\x65\x53\xe6\xc5\x19\xec\x92\x75\xa1\x6c\xca\xdf\x32\x23\xc9\x8c\x35\xa0\x6c\xca\xb5\x3a\x83\x6d\xc8\x5c\x36\x65\x20\x98\x21\x7b\x4f\x86\x02\x4d\x39\x17\x66\x30\x07\xc2\xad\xdb\x94\x73\x61\x06\x07\x60\xe8\xa9\x4d\x71\x80\x19\x62\xf4\x14\x69\xba\xce\x16\x52\x02\x58\x1b\xcb\xa6\x2c\x7e\x33\xa4\x68\x06\x9f\xda\x94\xe3\x61\x86\xed\x80\x21\xa6\x36\x65\x3b\x98\x21\xfe\xc8\xee\x35\x25\xfe\xcc\x13\xcb\xa2\xa5\xbe\xb5\xd4\xb0\xcf\x25\xd9\xb6\xa6\x7c\xab\x13\xbe\xd5\x9f\x95\x96\x6f\x75\x06\x0f\x63\x01\x1f\x9b\x12\xbf\x67\x30\x2a\xd9\xbd\xa6\x18\xd5\x0c\x89\x6a\xe9\x9b\x8f\xba\x7b\xa2\x3b\x6e\xba\xdc\xae\x33\x84\x2d\x16\xd7\xb1\x25\x46\x05\x7c\xbe\xb7\xad\xb1\x8d\x33\x5f\xc1\x3a\x16\x2f\xc2\x25\xd1\x7c\xa5\xf8\x26\x2f\x8b\x25\x8b\xdf\x2a\x31\x3d\x2a\xaf\x4b\x42\xce\x42\x3c\xec\x54\x77\xe5\x56\x53\x7c\x92\xa7\x79\xe9\xc4\xae\x38\xb1\x8b\x7e\xc2\xa5\x13\xbb\x42\xfe\x61\x89\x13\x5b\x92\x7f\x16\x62\xf3\xd3\xe2\xd1\x5b\x32\x07\xae\x16\xd3\xa3\xf5\x71\x31\x17\xde\x56\xc3\x6a\xf2\x9a\x5f\x0a\x61\x03\x42\x5f\xca\x84\xde\xb4\x25\xc7\x2a\xd0\xf7\xde\x36\x4e\x4f\x27\x1d\xc8\x78\x6f\x1b\x57\x4c\x8e\x55\xa0\xe2\xa5\x49\x1e\xbd\xba\x56\x05\x8e\x84\x7c\xf1\x54\x2e\x39\x56\x17\x1c\xab\x2c\x9f\x60\x4b\x72\xd1\x1a\xd1\x9b\xf6\x5c\x4c\x60\x8d\x98\x81\x36\x41\x4c\x00\x98\x74\x6f\x1b\x47\x29\xa7\xeb\x9a\xd1\x1d\xd7\x52\x86\xc7\x05\x48\x6b\x02\x08\xd9\x9a\xa6\x26\x8f\x84\x2c\xb5\xfd\xf4\x76\xe3\x35\x12\x98\x44\xa6\xb5\x63\x90\x54\x80\x96\xb4\xfd\x05\x69\x84\xc8\x19\xb6\x24\x8d\x00\x43\x2e\x65\xd9\xd7\x96\x98\xd1\xb2\x98\x1b\xd9\xfe\x12\x33\x5a\x16\xdd\x91\xed\x2f\x53\x77\x16\xdd\x71\xb9\x5c\x34\xe4\xb1\xcc\xa2\x59\x39\x48\xa3\xd6\xa1\xd8\xe2\x92\x10\xb3\x3c\x7a\x9b\xff\x28\xf0\x2e\xd7\x04\x51\xb5\x63\x52\xe8\x58\x72\x9f\xae\x13\x83\xa1\x76\xbe\xe4\x3e\x5d\x70\x9f\xb2\xb4\x9b\xad\xa3\x4d\x38\xd8\x04\xad\xca\xd1\x26\xdc\x57\x7c\x91\xab\x29\x23\x27\xd0\xe1\xd2\xd4\x82\x29\x2e\x0e\xf5\x12\x53\x66\x72\xbc\x2d\xb9\x2d\x16\x78\x5f\x4e\x3a\x3e\xe2\x7d\x0b\x82\x58\x26\xa0\xaa\xad\x47\xc4\xf7\x44\x77\x1c\x89\x5c\xab\xc0\x95\x4b\x93\x02\xc2\x7a\x44\x7c\x60\x7d\x99\x60\x5d\xb6\xc5\xfa\x00\x0f\x97\x98\x8d\x60\x5b\x32\x1a\x90\xdd\xde\xd7\x16\xdb\x38\x01\x94\x6e\x4c\x59\xf6\xc3\x2d\xbb\xe9\x2e\xf1\x1e\x69\x7d\x4b\xf3\xdb\x90\x55\x58\x87\xce\xb6\x64\x95\x5d\x62\x4d\x68\xa2\xda\x8a\xf1\xd8\x25\x66\xc0\x75\xde\xb2\x2d\xee\x1a\xdd\xd1\xcb\xbb\xab\xba\x43\x9e\x80\x6e\xad\x2d\xa6\xb8\xc1\x14\x09\x9b\x65\x5b\x61\xbd\xbb\x45\xf2\xa1\x16\x45\x61\xbd\x3b\xf0\x6f\x49\x0b\x5b\xfa\xe2\x6e\x31\x10\x4d\x4e\xde\x93\x1d\xfc\x92\xf9\xa9\xb6\xc5\x2f\x77\x8f\x0d\xd7\x28\xe5\x93\xdd\xf0\xc9\xea\x6a\xdd\x7d\xa8\x69\xa1\x89\x3b\xa0\x38\x94\x0d\x2d\x33\x67\x92\xde\x96\x96\xb9\xa1\x65\xb2\x8c\x9e\x6d\xc9\x4c\x3b\xb8\x6c\xa6\x85\x6a\xcb\x5d\xbb\x83\x95\xb2\x8e\x98\x6d\xb1\xd2\x1d\xc9\x9a\x8a\x06\xde\xf2\xc9\x6e\xb0\xcb\xf5\xd3\xa4\xcd\x81\x1a\x99\x59\x36\xc2\xb6\x78\xe2\xde\xd1\x1d\x55\xd3\x2d\x0d\x0d\x78\x21\x69\x25\x35\x99\x9a\x1c\x4d\x1c\xe4\xfe\xf9\x62\xac\x09\x19\xd8\x96\x05\x74\x5b\xf4\x46\x2e\xb5\x4d\xbd\x21\xa5\x41\x62\xc3\x96\x99\x73\x7b\xac\x17\xe5\xba\x2d\x53\xe6\x0e\x9e\x28\x03\xe2\x96\x03\x67\x9f\xbf\x36\x0e\x45\x2c\x6a\x9f\xe8\x8e\x23\x39\xda\xd5\x27\xd6\x4b\x34\x24\x5f\xe7\x8e\x23\x2e\x43\xa0\x31\x51\xdc\x0c\xd2\x4d\x66\xb9\x0e\x33\x49\x37\x86\x10\xaf\x2c\x23\xa1\xc9\x60\x69\x90\x7c\x32\xa1\x1f\xcd\x24\xf9\x18\xfc\xa0\x59\xf1\x95\x26\x27\x87\xa5\x18\x0b\x2f\x34\x93\x54\x64\x80\x9d\xcb\x44\x69\x37\x93\xb3\xd3\x4a\x8c\x93\xc1\x5a\x26\xf5\xc7\x50\x8c\x9d\xd5\x7c\xcc\xe4\x92\x30\x94\x2f\xc9\x44\xa8\x35\x63\x06\xa4\x19\x6a\xe8\xc8\xd7\x69\x85\x87\xdc\x6a\xf4\xc6\x0d\x32\xa5\x03\x18\xdc\x15\x4c\x14\x32\x63\x7a\x91\xa1\x1e\xea\xfb\x1a\x27\x27\xbe\x81\xda\xa8\x3f\x12\x9f\xc9\x25\x61\x2d\x7a\xa3\xe9\xca\xe4\x92\xb0\xe0\x1b\x32\x9c\x9a\xf8\x86\xa1\x52\x53\x26\x04\xb9\x99\x78\x83\xf5\xd8\x03\xf2\x22\x93\x6b\xd5\xe0\x3e\xcd\x04\x02\x37\x93\x98\x62\x71\xee\x2a\xd5\x18\x9b\x3f\xef\x3d\xd1\xc6\xf7\x14\x0b\x61\xb0\xc6\x66\x59\x63\x4d\xd6\x58\x8b\xf3\x4a\x1c\x08\x33\xa9\x46\x16\x42\x4c\xd5\xbe\xea\x54\x5a\x48\x23\x44\x82\x30\x93\x34\x62\x28\xf6\x95\x09\x9b\x69\xa6\x53\x69\x16\xe3\xe4\x85\x60\xf2\x30\x58\x1c\x4b\x82\x41\x98\xe9\x58\x5a\x1c\x4b\xc2\xa5\x9a\xe9\x58\x9a\xc7\x37\x29\x42\x9b\x74\x23\x83\xc0\x91\x09\xd3\x6a\xa6\x90\x07\x7b\xe2\x9b\xbc\x4a\x4c\x0a\x89\x41\x21\x61\xe9\x43\xb3\x47\x94\x14\xc7\x99\x05\x50\xcc\x74\x9c\xed\x89\x6c\x5a\x3a\x50\x80\xf7\xf3\xfd\x39\xa2\x6d\xb0\x6d\xaa\x0d\xdd\x71\xe6\x02\xf8\x31\x07\xf0\x03\x4b\x24\x9a\xeb\xa0\x3b\x3c\x13\xb9\xd1\xcc\xe1\xf2\x8f\x7a\x02\x4e\x24\xef\x34\x81\xff\x98\xc3\x07\x9a\x1b\xe5\x5d\x97\x0f\x14\xe8\x3f\x89\xc8\x50\xe6\x04\x01\x35\xa0\xff\xbc\xaf\x2d\xb6\xa9\x37\x18\x55\x98\xc9\x66\x2e\x13\x35\x90\x80\x52\x26\x90\xb1\x39\xb3\x12\x2d\x4a\xf4\x66\x82\xcc\x9a\xcb\x09\x0a\x6c\xa0\x1f\x45\x45\xd8\x40\xe6\xc1\x70\x14\xba\xe4\xf2\x90\x78\x08\x31\x8d\x22\xa6\x8b\xe3\x78\x48\x23\xb2\x88\xbb\x9c\xa0\x80\x03\xca\x17\xaf\x50\x97\xa0\xe2\x2f\x57\xc9\xd7\xb5\xfe\x4d\xdc\x75\xf9\x48\x51\x50\x38\x65\xe2\x15\x9a\x8b\x21\x79\x0d\x32\xa2\x21\xca\x99\x94\x6d\xfe\x8a\x3b\x99\x25\xc9\x4c\x80\x44\xe6\x35\xe6\x40\x51\xd2\xc5\xac\xbc\xc5\x52\x53\x96\x74\x99\x71\x3c\x54\xa3\xc6\xe0\x0a\x97\x6a\xe4\x13\x13\xe4\xc5\xec\x8a\xbf\xf2\xe0\x47\x72\xeb\x0b\xd7\xc7\x1c\x6a\x53\x96\x39\xd9\xa5\x37\x01\xf3\x27\x13\xd0\xd6\x5c\xba\x11\x80\x7d\xde\xd7\xb8\x0b\x4b\x23\x59\x18\x09\x2f\x6d\x57\x30\xbb\xaf\x8d\x26\x2e\x97\xc2\x51\x01\xf2\x93\xb2\xfc\xec\x2e\x4f\x2e\x50\x7f\x7e\x34\x42\xa1\xfe\x98\x07\x5f\x54\xa0\xa7\x8b\x2f\x3a\x42\x55\xb3\x02\x3d\x5d\xb1\xaa\x40\x07\xca\x17\x6d\x99\x2e\x96\xe9\x21\xac\x10\x5b\xcf\x5c\x9e\x5c\x60\x00\x65\x16\xd9\x34\x97\x1c\xe3\x86\x69\x6b\x45\x64\x69\xf6\x50\xed\x3a\x45\x1c\x97\x6a\x07\x50\xa0\xcc\x32\x9b\x26\x50\x20\xf3\xe0\xb3\xf2\x60\xbb\xf8\xac\x07\x9f\x25\xb2\x83\x09\x16\xc8\x1c\xd1\x63\x99\xd0\x0e\xe6\x72\xd7\x3a\x90\x2f\x15\xda\xe2\x72\xd7\x02\x17\xe8\x7d\x8d\xa3\x54\xf8\x8a\x87\xd4\xd4\xa9\x65\xba\x5c\xb9\x7e\x62\x76\x64\xeb\x2e\xcd\xce\x43\x9f\xea\x64\xeb\x2e\x7d\x0a\x78\x3d\xf9\xd2\xee\xc8\x39\xe7\xc1\x9e\x07\x4d\x50\xfe\xfc\x7c\xf2\x89\xb6\xaf\xbb\x23\x85\xea\x84\xb4\x25\xe7\xd6\x51\x08\xff\xb9\xb0\x3f\x4d\xaf\x6d\x35\xc5\x27\x49\xb2\x47\xd6\xeb\x13\xfc\x79\x50\x28\x3c\xf2\x1c\x9f\xe0\xa6\xf2\xef\x9c\xfc\xd3\x16\x53\x20\x61\x1e\xd9\x9a\x4f\xf0\xb0\xa1\xb1\xc8\xce\x74\x42\xa3\x92\xf5\xf7\x48\xa3\x3a\xaf\x46\x95\x15\x0c\x24\xec\x1b\x3b\xc1\x89\x64\xa3\x3e\xd2\xb6\x4e\xb0\x1b\x19\xa9\x05\x8c\x63\x27\xe4\x1f\xc5\x58\x1e\x99\xa0\x80\x84\x93\x2f\x92\xd8\x91\x09\xea\x84\xda\x34\xc8\x89\x8e\x8c\xc6\x27\xcc\x4c\xac\xa8\x61\x47\x2e\xb8\x03\xaf\x57\x56\x8c\xe5\x51\x70\x29\x10\x68\x32\xeb\x93\xda\x21\x80\xb0\x9d\x60\x7c\x93\x1c\xe0\xc8\x21\x76\x80\x67\xa6\xaa\xfc\x76\x08\x68\x66\xc0\xa0\xc9\x2c\x71\x6a\x47\xcc\xed\x84\xb0\x25\x03\xdb\x51\x20\x3e\x40\x68\x32\x2b\x9f\xda\x91\x43\x0c\x65\xb5\xdf\xd7\x48\x0e\xe2\x6e\x27\xb8\x9b\x96\x59\x0e\xb1\x13\x6c\x8a\xf8\xe4\x26\x58\x1a\x3b\xc1\x6f\x08\xb6\x60\x47\x06\xa3\x13\xca\xd1\xa4\xf8\x76\x64\xa1\x3e\x27\xbe\x49\x43\x93\xd0\x62\xec\x1c\x10\xfb\x54\x93\x66\x10\x47\x99\xb5\x9b\xec\x9c\x9f\x4f\x5a\xb4\x71\xcb\x75\x94\x51\xae\x3b\x65\x45\x58\x1e\x99\x93\x0f\x4c\xc6\x2a\xe7\x6e\x47\x26\xe3\x13\x2c\x60\xd1\x2e\x7c\xe4\xdb\x3a\x21\xbd\xb1\x28\xbb\x1d\xf1\x80\x13\xe7\x9c\x05\xd8\xed\x96\x56\x05\xfc\x98\xa4\x6a\xe8\x76\xcb\x0b\x7f\xc3\x4d\x95\x89\x5d\x6b\x37\x01\xb8\xec\xbe\xc0\x6c\xe9\xce\x10\xa2\x8c\xdd\xc1\x03\x88\x78\x60\xb7\x78\xc0\x1d\x3c\x40\x1a\x90\xe0\x66\xec\x0e\x65\x8c\x65\xcd\xed\x56\xb2\xf4\x8d\x12\xf4\x32\x34\xdd\x12\xc4\xee\xd0\x80\x58\x8b\xdc\x6e\x69\x40\xc0\x83\xf9\xb1\x41\xdd\x12\x46\xee\xe0\x0e\x8b\x2a\xc9\x2d\x2f\xfc\x1d\x2c\x60\xd1\xf8\x76\x4b\x3b\xba\x43\x05\x22\x82\x81\xdd\xf2\x29\xdd\x0d\xdd\x91\xd7\xde\xd2\x80\x00\x11\xf3\x63\xbb\x12\x44\x8c\x01\x12\x26\x95\x8b\xa7\xfc\x56\x48\x2a\x30\x62\xb2\x12\xc1\x85\x11\x63\x37\x18\x47\xb9\x34\x39\x31\x0e\x80\xc4\x24\xd5\xf5\x36\xe0\xbf\x7c\x7f\x46\x77\xa4\xb0\x5b\x56\x15\x60\xbf\x64\x62\x2e\xda\x4d\x6c\x2c\xbb\x07\xe6\x26\x1a\x92\x7d\xfa\x1e\x3b\xbe\xc8\xde\x86\x7a\x1b\xd8\x38\x2a\xed\x02\x83\xb1\x7b\xc4\x40\x78\x57\xdc\xf2\xdb\x03\x28\x26\xa9\xca\xb7\xdd\x62\x53\x80\x83\x79\xdb\xd8\x9d\xfc\xf6\x80\x86\xc9\x89\xac\xe8\x96\xa0\x75\x83\x15\x25\x11\xb3\x72\x82\xee\x15\xcb\x45\x75\xf1\x56\xde\xcf\xfd\x72\x25\x58\x01\xff\x49\xdc\xbd\xe5\xd6\xbf\x77\x7c\x55\xb4\x2e\xc9\x08\xd8\x31\xa9\x5c\xf4\x91\xde\x4a\x8a\x06\x98\x4c\x4e\x3a\x3e\x12\x2c\xee\x13\xcb\x22\xe2\x93\x6f\xeb\x7e\x19\xd3\xdb\xc6\xa5\x3e\x43\x6d\x13\x9f\xe4\x4a\x8b\x51\xdd\x27\x46\xa2\x93\xac\xb8\xd8\x1b\x71\xb1\xe5\xe7\xfc\xc8\x64\x7c\xdf\xa0\x87\xaa\x26\xd1\x03\xcc\xc2\x2a\xfd\x6c\xb7\xcc\xc2\x80\x8d\x49\x45\x07\xe1\x91\xa5\x16\x38\x31\x49\xd5\x90\xed\x91\x4a\x08\xa0\x98\x4c\x30\x48\x7b\x24\x73\x3c\x29\x5e\xe3\x82\x3d\xf2\x8a\x3f\x29\x5e\x2b\x6c\x32\x35\x81\x54\xa8\x88\x3d\x72\x98\x3f\x25\x06\xa9\x36\x69\x46\x00\x7d\xc9\xac\x26\x6c\x8f\x72\x8a\x3f\x10\x18\xb2\x94\x47\x8e\x2d\xa0\xc0\xa4\xc2\x82\x27\xf6\x88\xdd\x00\xeb\x25\xa9\x16\xae\x3d\x0a\x81\x07\xee\x4b\x26\x58\xa4\x3d\xf2\x79\x3d\x2f\xe3\x49\x45\xe6\xd1\x47\x46\xdc\x07\x5a\x85\xaa\xe3\xda\xa3\x84\x8f\x27\x00\x05\x64\xef\x7b\x74\x4b\xa2\xf4\x7c\x52\x25\x4c\x7b\xe4\x90\x7d\xe0\xe8\x50\x89\x49\x7b\x14\xd6\x08\x4c\x92\x2c\xb8\x87\x47\x4e\x8e\x27\x48\xbd\xd0\x9a\xf9\xc8\x1e\x11\x20\x25\xaa\x29\x69\x02\x29\xb1\x00\x29\x29\xb2\x05\x0a\xa4\xc4\x9e\x13\xb8\x27\xbc\xb5\x1e\xf9\x71\x03\x1a\x44\x45\x20\x5d\xd0\x20\x7e\x95\xf8\x66\x67\x1b\x8d\xf3\x8e\x0a\xf2\x49\x05\xd9\xfc\xe2\x52\xfb\x05\xd9\xae\xb0\xdc\x93\x5f\xe4\xec\x7e\xc1\x26\x5e\xea\x27\x74\xf8\xd5\x7e\xbe\xf9\x44\x5b\xf9\xda\xe8\x43\xf4\x2b\x78\x34\xe1\x48\xfd\xa2\x0f\xd1\xaf\x0e\xb2\x9d\xfc\x24\x8d\xe2\x7e\xcd\xf8\x64\xe7\x27\x97\xa6\x17\x2c\xee\x13\x9b\x5c\x50\x17\x7e\x05\x41\xb4\x8f\x58\xfc\x22\x41\x78\xc0\x60\x94\x76\xe9\x93\x9a\x1d\x94\xc9\xc2\x42\x4d\x7e\x6d\x75\xb7\xa3\x3b\x35\x75\x35\x61\x51\x08\xb5\xe9\x17\x3d\x7e\x7e\x6d\xd0\xca\xe2\xe4\x08\x14\xeb\xd7\xab\x1f\x66\xd6\xf3\xf0\xcb\xb4\x5c\xa8\xad\x5e\x98\xc6\xe7\xc2\xc1\x70\xe0\x5e\x64\x9e\x1f\x07\xf8\xc5\xf7\x67\x0c\x44\xbb\x6a\x1a\x88\xc5\x40\x26\x9b\x34\x10\x47\xf1\x82\x8b\x63\x74\xad\x64\x1c\x11\x66\xff\xf9\xe5\x9a\xb6\xc7\x4a\x16\xae\xa4\x6b\x4f\x7d\xe1\x93\x1c\x88\x6b\x4f\xe3\x64\xb5\xc2\xd5\x72\x91\x50\x1c\x1f\xda\xc9\xfc\x3a\x5a\x93\x13\xdd\x55\x0e\xe5\xa8\xbb\x13\xdd\x71\x72\xc7\xd4\xf4\xce\x9b\x80\x95\x7e\x31\x4b\xc2\xaf\x3b\xc8\xa4\xf2\x35\xa6\x5f\xfa\x05\x8e\x9f\x13\xe7\x76\x6b\xde\x77\x0c\xa4\x71\x72\xb7\x28\x28\x6e\x83\x26\x3a\xbf\x35\xb9\x27\xba\xfb\xd4\x79\xbf\x1e\x75\xf7\x44\x77\x9c\xf7\xa3\xf5\x8a\x23\xde\x3e\x76\xe3\x89\x02\xad\xa7\x2b\x3e\xf9\x69\x2a\x9e\xe8\x26\xf0\xc0\xf1\x28\x2c\x7e\xe1\x89\xae\x40\x0f\x44\x8e\x42\x6b\x91\xa7\xa4\x6f\xa6\xd8\xf2\xc9\xf7\xe8\x26\x74\xc0\x6c\xa4\xd2\x3e\xc6\xee\x89\x52\xab\xa7\x57\x4a\xcd\x2c\x92\xee\x29\xeb\x93\x39\xc8\x79\xf1\x93\xc4\xdd\xf0\x94\xeb\xfb\x5a\xe1\x17\xb3\x7a\xcb\x03\x4d\x85\x4d\x53\x4d\x18\x08\xf3\xa1\x3d\xe5\x9f\x81\x60\xc7\x49\x5f\x89\xb1\xaf\x8e\x7a\x14\x99\x55\xc3\x3d\xd1\xb0\xe8\x01\xc8\x51\x98\x10\xe5\xa9\xa8\xb7\x02\xf2\xaa\x1c\x23\x3d\xa0\x9e\x82\xc9\x76\xd2\x57\x12\x93\x0d\xb4\x8e\xc2\xc0\x51\x4f\x55\x4b\x12\x57\x24\xab\x37\x78\xaa\xea\xae\x46\x77\x6a\x32\x35\x61\x6e\x95\x13\xa0\x75\xd0\x03\x75\xa3\xf4\xcc\xe5\xa2\xac\xee\x40\xdd\xc8\x84\x90\x71\xa1\x6e\x78\xa0\x6e\x14\x06\x8d\xba\x50\x37\x3c\x50\x37\x4a\xd7\xe6\x88\xdb\xa7\x90\xc8\x3b\x6f\x9e\xd4\xd5\x5d\x8f\xee\xd4\x34\xd4\x84\xb9\xf1\x7c\x24\x31\xfb\x14\xb2\x3a\x4d\x79\x9e\x86\x96\x6b\x44\x6f\x3c\xaa\x69\x88\xd0\x47\xcc\xa0\x71\x94\x43\x33\x40\xc9\xde\xd2\x35\x94\xa9\x99\x87\x68\xdd\x7b\xff\x27\x69\xd7\xd3\x14\x89\xcd\xfb\x9d\x05\xaf\xa5\xb4\x34\xd2\xb8\x7b\x98\x9a\xe1\x40\xe9\xf8\xfe\x8c\x1e\x75\x24\x97\x3e\xb9\xb0\xb3\x9d\xdb\xb0\x45\x9a\x3b\x26\x31\x39\x09\xdd\x3d\x81\xe5\x51\xba\x4e\xeb\x16\x1d\x6d\xac\xb5\x98\xc3\xd6\x5a\xc7\x95\x45\x40\x56\x4f\x5b\x3b\x1b\x22\x53\xd7\x21\xd7\xc5\x94\xde\x0b\xe5\x6d\xe3\x37\x4d\x04\x08\xdb\x62\x19\xbc\x3d\x93\x6b\x8f\xe2\xae\x18\x3a\x0a\xae\x3d\x8a\x0b\x61\xe8\x28\xe8\x42\x08\x58\x91\xc2\x28\x56\x17\xac\x88\xa7\xd0\x01\x46\xe6\x7b\x47\x2b\x0d\x1d\x20\x4f\x6e\xc2\x51\x77\xa1\x03\xb0\x44\x94\xa7\x5b\xd3\x8b\x1b\x61\x88\xa8\x6f\x75\x17\x6c\x7f\x88\x79\x88\xed\x07\xae\x48\x61\xc1\x72\x4f\x4c\xbb\x77\x40\x8c\x64\xc2\x65\x7a\x12\xd7\x4f\x4f\xcc\x5c\x54\xfd\x88\x1e\x1e\xd0\x83\x36\xe1\xd1\x42\xc7\x8d\xc0\x98\x53\xcf\xba\x11\x02\x8d\xa4\x30\x94\xd8\xb3\x6e\x04\xc0\x84\xa4\x42\xa4\x55\xcf\x34\x71\x38\x70\x42\x72\xfe\x74\x2d\xcf\x74\x35\x79\x0e\x95\x83\x41\xa7\x9e\xa9\x72\x78\x86\xca\x41\x64\x27\x17\x6e\x88\xe7\xb8\x2b\x18\x6d\xeb\x99\xee\x66\xcf\xe9\x8e\x36\x8e\x32\x91\x47\x67\xdc\x23\x2c\x16\xef\x82\x1b\x71\xd4\x42\x4b\x85\xd6\x4a\xcf\xba\x11\x72\x5e\x78\xed\xdb\xb9\x5c\xf4\xda\xcb\xe5\x33\x13\x75\x5c\x20\x25\x9e\x83\x0d\xd3\x20\xe9\x99\x9a\x8a\xe7\xd0\x54\x66\xe2\x72\x51\x53\xf1\x0c\x4d\x85\xda\x81\x67\x89\xcf\x39\xf8\x30\x03\x1a\x3d\x37\x75\x17\xcc\x76\x66\x4e\x40\xcc\x36\xb0\x4d\xca\x24\xff\x16\xb6\x89\xa3\xa0\x5b\x2a\x34\x56\xba\xea\xb8\x79\x86\x4b\xb9\x4c\xd2\x6c\xee\xda\xd5\x7e\x30\x4c\xce\x9c\xe1\x79\x9e\x83\xdb\x32\x06\xcf\xb3\xb8\x6d\x60\xa2\x14\x02\xc3\x7a\x16\xb7\x0d\xe0\x93\x32\x79\x3b\xe5\xa1\xee\x60\xff\x28\x9a\xc1\xd4\xaa\xcc\x98\x39\x19\x71\x9e\xda\xba\x89\xad\xe3\x81\x14\xee\x89\x07\xee\x49\x99\x9d\xa3\x14\xa7\x0d\x00\x93\xc2\x10\x5d\xcf\x92\xe4\x03\xc0\xa4\x30\xc8\xcb\xf3\xd2\xcc\x77\xcc\x4e\x84\xc9\xda\x5f\x9e\xff\x6a\x7f\xf1\x35\x71\xda\x1c\x9c\x76\x52\xe1\xc8\x5b\xdd\x05\x3b\x65\x48\x96\x67\x69\x00\x40\x33\xc9\xa5\xa8\x37\x8d\xc4\x62\x24\x64\xde\xd9\x34\x12\x8b\x91\x90\x8a\x4c\x8b\x12\xca\xe2\xd4\x61\x3d\xea\x0d\xe2\x6e\xd1\xce\x49\xdc\xcd\xc1\xf8\x18\xa7\xe2\x59\x8c\x2f\x87\xf1\x83\x96\x51\xcf\x34\x7e\x38\x40\x49\x72\xd1\x86\x8b\x27\x06\x12\x49\x59\x5a\x2f\x22\x91\x78\xbe\x63\x24\x9c\xdb\x23\x62\x78\x02\x5b\x8f\x02\x55\x7e\x44\x0c\x0f\x88\x81\x4a\x64\x7e\xf4\xc5\x97\x3b\xe6\xd2\x38\x90\x47\x0c\x25\x58\xe2\x62\x6f\x45\x2c\x31\x20\x45\x0a\x43\x43\xbc\xd0\xd2\xe2\x40\x17\xc9\x2c\x4b\xe6\x85\x96\x16\x2f\xc1\x2d\x57\xd3\x27\x5d\x6d\x98\x5b\xd7\x17\xb9\xca\x25\xc5\x4a\x52\xca\x17\x12\x89\x03\x89\x24\xb3\x44\x8d\x0b\x89\xc4\x4b\x30\xd9\x45\x65\xbd\xd0\x69\xef\x81\x52\x52\x98\x73\xef\x42\x29\xf1\x92\xa3\xd4\x26\xe5\x86\x42\xcf\xbc\x97\x1c\xdd\x71\x02\x12\xad\x4b\x70\xd2\xc5\x33\x50\xc4\x49\x4b\x70\xd2\x9f\x2f\x6a\x4d\x6a\x8d\xd7\xb8\x5e\x55\x9f\x84\x8a\x5f\x19\x42\xec\x45\x2a\x7e\x81\xd4\xc7\xb8\x1d\x2f\x92\xfa\x0a\xd8\x57\x65\xb8\xac\x97\xae\xc9\x81\x47\x55\xe2\xcf\x7a\x19\x5a\xcb\x11\xdd\x91\x2c\xcb\x50\x77\x23\xba\xe3\xc4\x87\xba\x1b\xd1\x9d\x88\x41\xec\xab\x04\xfb\x1a\x1c\xc9\xd0\xae\xc2\x44\x5b\xaf\xc6\x19\xd0\x44\xeb\x65\xc6\x48\x44\x44\x53\x5b\x37\xa3\x3b\x5e\xb9\xc2\x30\x71\x94\x55\x7b\xdb\xb8\xe5\x2e\x9a\x85\xb2\x5b\x13\x65\xa2\x22\x65\xb7\x40\xd9\x25\x7c\xa6\x97\xa3\xd9\x81\x33\x54\x26\x66\x7b\x39\xea\x0e\x66\xa4\x9a\xea\xbf\x81\x91\x79\x61\x34\xad\x97\x1b\x57\x32\x45\x98\x22\xe6\x10\x40\x1f\x95\xd6\x56\x2f\xb7\x06\x7a\x63\xa0\x14\x61\xca\xad\x81\xde\x81\x16\x59\xf5\x49\xad\xf5\x13\x90\x90\x94\xe7\x8b\x24\xa6\x02\x3d\x99\x88\x77\x5e\x1e\xd1\xdf\x13\x23\xd1\x79\x7d\xb4\x0d\x60\x0f\xaa\x68\xee\x82\x15\xf1\x7a\xc5\x7b\x3c\x5d\x55\x7a\x72\x40\x8e\xd4\x44\x11\x5a\x90\x23\x5e\x73\x0c\xf3\x0b\xdc\xf1\x4a\x2f\xae\x57\xa8\xa7\x55\x26\x95\x4a\x2f\xae\x57\x04\xbe\x54\x46\x6c\x7a\x95\xa4\x12\xd8\x21\x55\xd6\x0a\x61\x87\x78\x2d\xf1\x4d\xca\x1c\x95\xc9\x09\x5e\x5f\xa5\x33\x13\x5a\xd4\x2b\x93\x13\xbc\x42\xc2\xa9\xcc\x4b\xf7\x2a\x09\xa7\xf6\xe8\x8e\x62\x45\x95\x0e\x57\xa1\xc3\x31\x18\xcd\x85\x0f\xe2\x35\x4e\x3a\x0b\x07\x78\xed\x3f\x9f\x8c\x51\x6a\xa5\x75\x9c\x51\x15\x35\xd5\x4c\xfe\xa7\xb2\xa8\x5e\xe1\x71\xa9\x9a\xf8\x50\x77\x28\x65\x55\xa5\x1a\x55\x1d\xe7\x80\x23\xa9\x0c\xd9\x74\xc1\x91\x78\x5d\xd1\x1d\x99\x55\x95\x15\xb0\xae\x18\x26\x2d\x12\x75\x69\x98\x70\x9e\x56\x89\x92\xd5\x34\x3d\x58\xd8\x2a\x6d\xb1\x5e\x4d\xef\xc1\xd3\x59\x65\x8b\xad\xa2\xf7\x0a\x05\xa1\x16\x8d\x45\x0a\x42\x85\x82\xc0\xea\xd9\x2e\xf4\x0c\xaf\x71\x14\x58\x68\xcc\xeb\xa3\x29\x04\xbd\x33\x04\xd1\xab\x6e\xca\x8a\x58\xb4\x4a\x40\x49\x17\xb2\x86\xb7\x0b\xdd\x51\x6b\x6a\xf4\x49\x78\xbb\x62\x76\x3c\x5e\x8d\xa9\x7a\xde\xe2\x28\x54\xae\x4a\xd3\x51\x08\xb0\x8e\x5a\x49\xd2\x8d\x8e\x4e\x07\xc8\x46\xaa\xda\x59\x41\x6b\x38\xe0\x32\xde\x36\xbe\xa7\x5b\x08\x05\x66\x33\xe1\x4c\xbd\xe9\x16\x6a\x71\xba\x88\x90\xea\x2a\x39\xeb\x81\xad\x51\x2b\x49\x5a\x45\x67\x3d\x40\x32\x2a\x83\x28\xbd\xc9\xc4\x03\xbc\x8c\x4c\x38\x53\x6f\x3a\x41\xc0\xc4\x48\x95\x59\xeb\xde\xe8\x73\x75\x80\x64\x28\xbc\xd2\x05\x92\xe1\x2d\x0e\x1e\xb3\xd6\xbd\xc9\xc2\x03\x00\x8d\x5c\x79\xaf\xb5\xea\x6a\xba\xd1\xc4\x65\xa6\x37\xd6\x1b\x62\xdc\x2b\xb1\x40\xbd\x31\xc6\xdd\x01\x97\x91\x89\x2e\xea\x8d\x05\x3b\xbc\x21\x1e\x43\x26\xfb\xd6\xb4\x92\x88\x1a\xab\x32\xcb\x37\x19\x78\x5a\xc3\x40\x28\x88\xb5\x2e\x12\xea\x51\x13\x9c\x8b\xd5\x45\x42\xc1\x52\x08\xda\xe9\xad\x8b\x14\x82\x6f\x54\x9e\xff\x26\xbe\xd1\xe2\xaa\xaf\x9d\xdf\x1c\xea\x6e\x44\x77\x5c\x64\x49\x01\x2d\xd8\x06\xaf\xd7\x26\xb6\xd1\xe2\xa6\x67\xb8\xa9\x37\xdd\xf4\x0d\x37\x3d\x23\x58\xbd\xe9\xa6\x6f\xc1\x51\x58\x90\xda\x9b\x38\x4a\x0b\x29\x80\x51\xaa\xde\x24\x05\x34\xc4\x93\x54\x46\xa9\x7a\x93\x82\xd3\x42\x0a\x20\x10\x81\x37\x99\x92\xda\x8c\xa1\xb0\x3b\xb9\x31\x5a\x40\xbf\xb2\xf6\xb4\x37\x99\x92\xda\x9a\xef\x6b\xbc\x98\x9a\x74\x9f\x16\xbc\x8d\xb1\xad\xde\xc4\xdb\x02\xf8\xa4\x12\xa2\xd1\xdb\xd6\xec\x36\xf8\x17\x31\x1a\x5d\x08\x26\x0e\xe8\x91\xa4\x92\xfe\xde\xa4\xa9\x00\x8b\x24\xff\x2c\x98\x69\x0f\x82\x95\xb6\xac\xd7\xb4\x28\x06\xb2\xd4\x5a\x12\xa6\xc4\x01\x4b\x92\x89\xb6\xea\x4d\xbe\x8a\x80\x22\xa9\x8d\x3a\x66\x73\x0d\xc4\x71\xaa\xa8\x4d\xa9\x72\xb3\x47\xe5\xe6\x9f\x25\x39\x5a\xe5\x13\x5f\x14\xa7\x91\x89\x29\xa0\x48\xaa\x5c\x1c\x82\x22\xf1\x06\x75\xaa\x12\xe1\xd0\xdb\xad\xee\x5e\xcd\x2a\x37\x5e\xff\x4d\xde\x83\x40\x30\xa9\x0c\xdc\xf5\x76\x8b\x16\x5e\x21\x28\x37\xb1\xd8\x47\x9b\x13\x37\x01\x01\x02\xbd\x49\xf2\x69\xef\x4d\x90\x59\x04\xce\x9b\xb4\x29\xd4\xbb\x7d\x5f\xe3\x20\x65\x61\x02\x5e\x4a\x6e\x34\x6f\x08\x2e\xc5\x3b\xee\x08\x39\xb4\xba\xee\x88\x7e\x05\x1e\x31\x0f\x78\x97\x81\xa9\xbf\x8a\x55\x6e\x64\xe7\x5d\x92\x54\x8f\xab\x85\x68\x15\xde\x75\xb5\x04\x38\x4b\x25\x08\xa0\x77\x5d\x2d\x81\xb2\x52\x59\x2a\xdc\xbb\x8c\x4f\x00\x5c\xc9\x22\x85\x4e\x7f\xb7\xf7\xe4\x68\xfa\x37\x24\x32\xef\xba\x93\x7a\x88\x75\x72\x9b\x74\x29\x54\x1d\x0a\x15\x51\x32\x5d\xa8\x2e\xde\xe3\x2a\x23\x1e\xac\xf7\xac\xb9\xc7\x7d\x45\x9c\x0b\xef\x72\x56\xf4\x8c\x2d\xe7\x75\xd5\x75\x5d\xf5\x02\x76\x4f\x18\x59\x07\x3a\xcc\xf7\x27\x46\x42\x51\xa3\x4b\x16\xec\x25\x56\x93\xd6\x81\x5e\xb5\xaf\xf0\xe7\xcb\x85\xd6\xab\xf6\x35\x6e\xb9\x46\xce\xd0\xab\xf6\x35\xae\x32\x62\xd3\xb9\xa0\x67\xbc\xc3\x4a\x56\x3b\x89\xb6\xcb\x4a\xd6\x5b\x74\xa7\x26\x4d\x00\xf7\x15\x11\x34\xbd\xcb\x23\xd1\xe1\x75\xa8\x72\x9b\xf4\xa6\xc9\xbd\xf7\x93\xe2\xd0\xbd\x33\xca\xd9\x7b\x8b\x81\xd0\xee\xd6\x65\x3f\xeb\x21\x95\xb2\xce\xaf\x77\x49\xa5\xbd\xdf\x01\x25\xcd\xc9\x0d\x2d\x4a\x28\x99\x72\x72\x74\x29\x99\x1d\x4a\x26\x63\xdb\xbd\x4b\x2a\xed\x71\xf5\x74\xad\xf3\x50\x77\x71\xbf\xc8\xcb\xd1\x75\xbf\xf4\xd0\x24\x89\x7f\xe1\x5d\x77\x48\x9f\xd1\x1d\x67\x3e\x35\xf3\x10\x74\xe5\xe4\xe8\x4b\x24\x8b\xa8\xea\x9f\x63\xb7\xb4\xce\x2b\x7a\xd3\x49\xd6\x1d\x12\xc0\x40\x95\x20\x17\xde\x75\x87\x04\xc2\x4f\x65\x7c\xb1\x77\xd9\xcf\x00\xf6\x93\x09\x20\xe3\x5d\x57\x48\xdf\x31\x71\x5e\x59\xdd\x44\x28\x88\x8f\x66\xd5\x7f\x17\xc0\x8f\xf7\xb8\x79\x08\xfa\xea\xdd\x44\x97\x71\xbd\x30\xbc\xd8\xbb\xae\x97\x6e\xa8\xbb\xff\xd3\x9b\x98\x43\x28\xde\x9d\x1a\x74\x77\x8d\xc4\x63\x24\x9c\x80\xfc\xdd\xdd\x63\x4d\x78\x1d\x77\x17\x5d\x22\x24\xa4\xf1\x32\xeb\xae\xdd\xf1\xe8\x8d\x9e\xf7\x2e\x9f\x76\xa0\x17\xd5\xc1\x8b\x42\xe8\x45\xde\x43\x97\x1f\x54\xea\xba\xac\x7c\xfd\x44\x77\x9c\x80\xac\x7c\x3d\xae\xa5\xc1\x9b\xba\xeb\x5a\xea\x71\x2d\xf1\x82\xec\xb7\x96\x39\xf4\x78\x39\x68\x54\x09\xdb\x51\x09\x3b\x13\x8a\xc7\xbb\xf4\x9a\x1e\xb7\x99\xfc\x33\x5d\xfe\xee\x80\x5f\xaa\x43\x87\x4e\xd7\x59\x40\x2c\xd5\x21\xde\xad\x3b\x0b\x68\x4b\x99\x15\xef\xbd\xcb\x17\xde\x9f\x3f\x74\x73\x7d\x52\x13\x0f\x1d\x9f\x58\x22\x2e\x64\x26\x1f\x57\xac\x33\xc5\xfb\xc1\x00\x6f\x1f\x08\xf0\x26\x62\x90\x0b\x99\xc9\x47\x98\x06\x58\x8d\xcf\x87\x2e\xb4\x11\x17\xda\xa0\x0c\x3f\x74\xa1\x8d\xd0\x87\x06\x19\xdf\x48\xea\x0e\x36\x40\x39\xae\x87\x3c\x26\x28\x1e\x9f\x2a\x71\x46\x7c\x64\xcd\x20\x27\xbc\xc6\x2f\xe6\xac\xa6\xe8\x8d\xac\x61\xc8\x10\x11\xd8\x52\x55\x2e\x9f\xa1\x6b\x69\x84\xaa\x44\xa0\x11\x1f\x45\xdd\x95\xe8\x6e\xb2\x69\xaa\x29\x26\x3e\xf4\x9a\xab\xed\xa5\xcb\x4e\x13\xc5\x90\x16\x35\xe2\x5a\x92\xcb\x67\xc8\x19\x1e\x00\x52\x55\x7e\x1d\x01\x48\x39\xf0\xa2\xde\x36\x7e\x53\xba\x12\xf0\xa2\xb2\x38\xfe\x68\xfa\x64\x7b\x45\x11\xa2\x2b\xf9\x90\xa3\x65\xc4\xfd\xc2\x3a\x7a\x3e\xa4\xf4\x04\x7e\x54\x25\xe2\x89\x0b\x3f\xca\x03\x23\xaa\x0e\xda\x0c\x84\x11\xe5\xa3\x03\x30\x7d\x6a\x7f\xe4\x84\x19\x61\xf6\x98\x34\xa5\x0c\x99\x3d\x06\xf4\x97\x2e\x9a\x95\xfe\x32\xe2\xee\x21\x0e\x87\x0f\xb9\xb5\x03\x3c\xaa\xce\xa4\x4f\xfe\x74\x77\xe3\x93\x6a\xa2\xf0\x3c\x90\xf4\x5b\x27\x4d\x0d\x83\x49\xbf\x0e\xac\xa8\xdc\x45\xea\x0c\x87\xf7\x81\x70\x78\xdd\x58\x83\xe1\xf0\x1e\xd0\x51\x75\x32\xe2\x68\x28\x40\x6b\x20\x40\x8b\x29\x36\x3e\xa4\xd9\x8c\xb8\xb1\x18\x98\xef\xc2\x8e\xf2\x01\xcd\x86\x90\x94\x3e\x96\x7a\x0b\xed\x85\xc1\xf7\x3e\x14\x9f\x05\xa8\xa8\xac\x3b\x70\x6c\x4d\x6d\x77\x34\x71\x45\xb6\xa6\xb6\x63\x21\x69\x30\x1d\x72\xdc\x00\x3a\x2a\xeb\x7a\x14\x74\x94\x8f\xb8\xcb\x18\x97\xef\x43\x2e\xf2\x80\x95\xaa\x72\x90\x0d\x5d\x58\x23\xcc\x47\x93\x36\x81\xa1\x00\xad\x61\xd1\x1d\x27\x20\xa5\x67\xe0\x52\x22\xde\xbb\x0f\x05\x68\x0d\x0f\x2a\x69\xff\x18\xc4\x30\x14\xa3\x35\x10\xa3\x45\x54\x4a\x17\x56\x95\x8f\xb8\xea\x08\xd6\xe0\x43\x77\xd6\x08\x9d\x48\x6e\xb7\x21\x9d\x68\x00\x72\xa6\xca\xed\x36\x74\x31\x8d\x3b\xd6\x85\x57\xeb\x90\x1f\x69\xc4\xed\x33\x75\xc8\xe5\x5b\x0f\xdc\xac\x3a\x29\x3d\x0f\x5d\x31\x23\x78\xfe\xe4\xd5\x24\x24\x2b\x07\x92\x95\xd2\x92\x5c\x48\x56\x3e\xe3\x3a\x60\x42\xbd\x4f\xe9\x30\x33\x78\xfe\xe2\xfd\x39\x99\x8f\xe9\x01\x57\x55\x09\x63\xe3\x33\xa9\xbb\x84\xee\xa6\x9a\xf4\xc9\x04\xfa\xe3\xb5\x0b\x64\xab\xef\x4f\x4c\x8e\x99\x0c\x3e\x15\x50\x35\x11\xb3\xab\x10\x0d\x81\x5c\xf9\x8c\x9b\x62\x31\xd8\x6a\xca\x49\x1e\x00\x58\x75\xf1\x6c\x4d\x5d\x07\x81\x64\x55\xe5\xe6\x9b\xd2\x44\x00\x6a\x95\x59\x51\xd7\xa7\x62\xa3\x66\x18\xce\x98\xe4\xe0\x93\x89\x95\x3e\xe3\x3a\x60\xbe\xb6\x4f\x05\x40\x05\x94\x55\x5d\x14\xd7\x05\x65\xe5\x33\x74\x8a\x45\x85\x76\xca\x3c\x36\x11\x00\x25\xa9\x68\x32\x61\xc9\x67\x8d\xee\x9a\x3e\xa9\x19\xe0\x3a\x20\x84\xa4\x4f\x05\x47\xcd\x16\x8b\xc2\x7b\x70\xca\x29\x3f\xc3\xf4\xc4\xba\x8f\x3e\x65\x7a\x9a\x30\x3d\x0d\xfa\xb4\x84\x56\xe5\x33\xd8\x3a\x11\x7a\x7c\xca\x49\x1e\x48\x56\x75\x51\xa8\x98\x43\x44\x04\x05\xa0\x5d\x9a\xdd\x54\x77\xc8\x65\x92\xec\x36\x65\x5f\x9a\x2f\x3f\xce\x84\x81\xf3\x29\xd5\x60\x22\x19\xb3\x31\x81\xd5\xa7\x18\xf4\x84\x79\x69\xf0\xa2\x10\x34\x96\x4f\x30\xe1\x76\xa9\x37\xd9\xc7\x27\xf0\xb8\xdb\xa5\xf7\x14\x8e\x14\x90\x5a\xed\x12\xf1\xc9\x11\x3e\xc1\xe0\xda\x45\x0e\x3d\xc5\xe0\x26\x18\xdc\xe0\x55\x31\x15\x3a\x34\x3d\x86\x42\xcb\xe6\x54\xe8\xd0\xf4\xe8\x8e\xde\x86\xa9\xd0\xa1\x80\xcd\x6a\x17\x79\xb4\x60\xb3\x3c\xa0\xb1\x1a\xd3\xde\x7c\x32\xcf\xc9\x81\x92\xa5\xe4\x3c\x9f\x72\xa1\xcd\x13\xdb\x43\x8f\xc2\x94\xfc\x3c\x21\x3f\x4b\xc2\x14\xa0\x96\xcf\x3b\x7a\xa3\x78\x33\xc5\xdd\xe6\x53\xa3\xe0\x08\x47\x29\xdb\xcd\x8c\xea\x1a\x97\x28\x45\x06\x9a\x89\x10\x20\x05\x1c\x09\x19\xcb\x03\x19\xab\x25\xd2\xfa\x92\xbf\x3b\x90\xb1\x1a\xeb\x37\xfa\x92\xb0\xbb\x5e\xe1\x36\x2b\x4e\x69\x11\xc2\xcf\x17\x04\xda\xc6\xd2\x8e\xbe\xe4\xef\x5e\xf0\x77\x0f\x5e\x77\x4b\xd1\x41\x81\xb5\xd5\x98\xe3\xe0\xc2\xda\xf2\x95\xe3\x93\xd4\x00\x96\x0c\xf5\xab\xc4\x28\x29\x70\x2c\xb9\xba\x56\x8d\xd9\x91\xa7\x2c\xd9\x14\x16\x6c\x0a\x04\x74\x74\xe1\x62\xf9\x6a\xf1\x49\xde\x3e\x4b\x87\x3c\x30\xb3\x5a\xfa\xb2\xfa\x7d\x49\x20\x0c\xf0\xab\x96\xb8\x77\x4b\xa6\x6e\xe0\x60\x29\xe5\xd2\x97\x3c\x64\xab\xc7\xec\x78\x31\x2d\x19\x15\x56\x8f\x4f\x92\x39\x2c\x45\xd7\x04\x30\x56\x4b\x94\x23\x97\x18\x47\x20\x5c\x35\x39\x0e\x85\x70\xe5\x0b\xd6\x81\x26\xc7\xe1\x12\x0b\x00\xa2\x55\x96\x98\xbf\x14\x42\x03\x44\xab\xd4\x08\x5a\xed\x82\xb1\x72\xc0\x56\xa5\x26\xe7\xe0\x52\x78\xcd\x5a\xd1\x1d\x55\xb4\xb5\xd4\xdd\x8a\xee\xb8\x98\x8a\xae\x59\x16\x9f\x24\x07\x58\x52\xae\x17\xe4\x98\x41\x89\x43\x78\x54\xbe\x82\x03\x30\x4f\xc3\x97\x38\xc0\x02\xaa\x66\xcb\x8c\x80\x5e\x2e\xaa\x7d\xe5\x99\x4c\x24\x48\x5f\xac\x86\xe1\xcb\x63\x24\xb4\x2a\x2c\xd9\x83\x17\xec\xc1\x43\xd4\x20\xbd\x7b\x1d\x1c\x11\x11\x83\xa2\x0a\x01\x4b\xf5\x7e\x51\x6d\x22\xa2\x97\x85\x28\x91\xd6\x97\xb4\x75\x40\x56\x29\x8f\xd6\x97\x84\xa2\x15\xdc\x86\x85\xbb\x7d\x89\x6d\xac\xa8\x00\x94\xa9\xe5\x2f\xa9\xe4\x01\x46\xd5\x32\x65\x8a\x25\x2b\x32\x70\xa9\x32\x4b\x9c\xf8\xba\x29\x48\x2e\xb8\x1a\x07\x2d\x8a\x4b\xae\x46\xc0\x52\xa5\x96\x69\xdd\x58\xd2\xc8\x17\x34\x72\x62\x36\xfa\x92\x46\xbe\x82\x7f\x65\x5a\x37\x96\x82\x72\x02\xc3\xaa\xb1\x00\xb6\x6f\x31\xa9\x00\xaa\x6a\x2c\xee\xe8\x5b\x41\x39\xc0\xac\xca\xd2\xb3\xb6\x24\xb0\x1d\x8c\x68\xfd\x1b\x1e\x83\x6f\xc5\xe5\x6c\xe8\xe4\xad\xd0\xdc\xbd\x25\xa0\xed\xe0\x61\x85\x86\xeb\x2d\x1e\xb6\x81\x7e\xd3\x58\x30\xda\xb7\x1c\x91\x1b\xc2\x48\x53\x6c\xd7\x96\x30\x02\xd8\x2a\x65\x2c\xfb\x96\x30\xb2\x83\xbd\x11\xfd\xc6\xb7\xf4\xd6\x1d\x3c\x4c\xa1\x32\x5b\x3c\x2c\x00\xa9\x5a\x21\xd5\x6e\x19\x46\x81\x4d\x95\x27\x7d\x00\x9b\x38\xf8\xbe\xc1\xc2\x14\xc6\xb8\xe5\xad\x03\x34\x55\x6a\x84\xb8\xf1\x2d\x95\x76\x0f\x8f\x36\x7e\x52\x4e\x32\x80\x45\xa5\x56\xd5\x9d\x04\x95\x1d\x7c\xa3\xd2\x79\xb0\x65\x56\xdc\x21\x1e\x54\xda\x53\xb7\xc4\x83\x0d\xf1\x40\x61\x93\x02\x6d\xf2\x1d\x3c\x45\x4e\xb2\xad\x48\x99\x00\x74\x6a\x44\x9c\x71\x01\x3a\xf9\x0e\xf1\x40\x5e\xb2\x2d\x8b\xdd\x86\xc5\x6e\x32\xc3\x66\x4b\x3a\x08\xac\xa7\x26\x57\x9e\xb0\x9e\x1c\x58\x4f\x79\xd2\x05\x20\xac\x27\xdf\x71\x96\x2b\x0f\xde\x56\x7c\xdd\x8e\xf3\x4a\x2c\x1a\xdf\x52\x62\x36\x5c\x3b\xad\x89\x54\xe4\xe4\x0f\x8c\xa8\xd6\x68\x96\x33\x29\x38\x16\x47\x48\xfe\x0f\x93\x75\xca\xae\x78\x8f\x82\xbe\xc9\xa5\x62\x71\x12\x1a\x75\x5e\xd3\x49\x08\xfc\xa8\xd6\xaa\xde\xd3\x37\x53\x7c\x93\x56\x2d\x93\x79\x0a\x70\x51\x99\x38\x90\x6e\x32\x4f\x59\xbd\xf0\x1a\x65\x3b\xab\x3f\x6d\xd1\x1d\x59\xa3\x49\x09\x30\x28\x01\xcc\x98\x77\x01\x3a\xb9\xc5\xb9\x6b\x5c\x69\x23\x6a\x81\x5b\x1c\x2e\x79\x4d\x84\xe8\xe4\x81\xda\xd4\x64\x5a\xb4\xa6\xee\xe0\x25\x97\x46\x6f\xf2\x92\x5b\x94\xed\x92\xcd\xce\xe4\x75\x30\xf8\xbb\x5b\x27\x1f\x33\xf9\xbb\x0d\x5a\x40\x23\xa8\xb8\x9b\xbc\x07\x36\xa2\xbb\xc1\x26\x75\x07\xdb\x7b\x63\xed\x3a\x37\xd9\xde\xcd\xe2\x93\x54\xcc\x4d\xb1\x29\x16\x02\xaf\x14\x46\xd3\xa5\x66\x21\x9e\x4a\x0f\xb0\xfb\xa7\x0d\xf7\xcc\x10\xad\xc8\xbe\x6b\x41\x7f\x0a\x88\x77\xd1\x9f\x87\xc0\xa8\x30\x74\x97\xc0\x08\xe4\xa2\x4c\xe4\x49\x77\x31\x62\x0f\xd2\x64\xa1\x30\x77\x91\x66\xa0\x1a\x35\x85\x9a\xbb\x48\x13\x48\x45\x6f\x5b\x61\x9b\xba\x4b\xd1\xdd\x62\x93\xba\xcb\x20\x3f\x5d\xcc\x2e\x55\xd9\x5f\x2a\x15\x4a\x82\xbb\xd2\x92\x3c\xc7\xa2\x90\x33\x3a\x4b\xbb\xb8\x23\x34\x65\x76\x35\x6d\x35\xc5\x20\x79\x2f\xbb\xfc\x79\x01\x4f\xd4\x64\x77\x74\x19\x55\x81\x54\x94\x89\x28\xec\x4e\x3c\x34\xf7\x72\xbf\x4d\x43\x6f\x91\xb3\x03\xa8\xe8\xfd\x22\x5f\x53\x64\x4a\x20\x17\x4d\xde\x15\x82\x26\x72\x8f\x53\x27\x63\xa5\xcb\x9d\x17\xd0\x44\x4d\xc6\x4a\xd7\xd1\xf2\xb8\x9b\x74\xc9\xb8\x32\x8c\xbc\x45\x77\x6a\xd2\x72\xc5\xc9\xa2\x88\xe3\x3a\x59\x1e\x92\x37\x91\x9b\xdd\x65\x6e\xf5\x38\x59\x8a\x87\x77\xdd\x4d\x1e\xe2\xb5\xec\x87\x2e\xf1\xda\x47\x8d\x6a\x66\x9c\xb9\x6c\xaa\x1e\x77\x93\x98\x8a\x4b\xa6\x05\xde\x50\x26\x92\xb2\xfb\xd2\x30\xe3\x44\xca\xac\xe5\x3a\x91\x01\x40\xd4\x7e\x16\x5a\x11\x15\x1e\x9a\x32\xb1\x3f\xdd\x95\x9c\x03\xe4\xa0\x3c\x79\x21\xf8\xd6\x8e\xc3\xf0\x48\x98\x4b\x77\x19\x1e\x01\x1c\x94\x9a\x8c\x61\xae\x38\x8c\x40\x12\x9a\x22\x06\xc5\x61\x78\xb0\x8d\x49\xe1\xce\xc5\x36\x02\x65\xa8\xfd\x8c\x44\x21\x6d\x01\x17\xd4\x08\xec\xe1\xae\x68\x0b\x20\x07\x65\xc2\x5c\xba\xcb\x7c\xe8\x21\x79\x2f\x11\x91\xcc\x87\x1e\x5c\x8a\x98\x1f\xee\xe2\x52\x7e\xff\xb5\x71\x2d\xef\x9f\x36\x0c\x73\xd1\xf5\xe3\xba\x41\x3d\x8a\x5e\x2e\x6a\xca\x2e\x4f\x53\xe0\xfe\x34\xd9\xae\x8e\xec\x80\x27\x6e\xd0\x45\x0e\x76\x24\x84\x1e\x08\xa1\x8b\xf6\x16\xe1\xfe\xf8\x09\xc6\xb7\xc8\x84\x8f\x5c\x3f\x81\x09\xd4\x14\xc7\x2d\x4c\x20\x3f\x71\xb9\xca\xd0\x74\x14\xcb\x70\x52\x74\xa7\x26\xee\x79\xc0\x05\xb5\x35\xfe\xd1\xc4\x2b\x34\x21\x3f\x39\x7a\xe4\xfd\x7a\xe4\xfe\x09\xa4\xa1\xb6\xa8\x5e\x08\x69\xc8\x4f\x99\xd1\xf6\x11\xee\x51\xc6\xe3\x81\x14\xda\x65\xbf\x3a\x72\x9f\x1c\x9c\xe7\xce\xd2\x69\x7e\x74\x9e\x03\xfb\xa7\x13\x4e\xd9\x85\xfd\xe3\xa7\xc7\x37\xb5\x49\x72\x9f\x1c\xe4\xb0\xc8\x9c\x79\x64\x82\x3b\xb8\x60\x3b\xb1\xa0\xfc\xc8\x45\x02\x38\x9f\xd4\x2f\x5e\x41\x47\x51\xd9\x67\xc5\x50\x78\xcd\x1c\x39\xcc\x0f\x1c\xe6\x4b\x33\x90\x67\xe2\xac\xf8\x24\x39\x99\x40\x7c\xfc\xac\x98\x01\xef\x0b\xa1\xf8\x78\xa0\xf8\xf4\x8b\x87\xf6\xc8\x61\x0e\x40\x9f\xbc\x28\x8b\x1d\x39\xcc\x03\xe0\xa7\x13\xff\xc2\x05\xf0\xe3\x07\x07\xb3\x13\xa8\xd8\x8f\xa4\xde\x03\xa9\xb7\xcb\xea\x72\x64\x14\x3b\x38\x99\x9d\x10\x25\x7e\x74\x32\x0f\x8c\xf0\x9d\x75\xc2\xfc\xc8\x08\x7f\xee\xf8\x26\x5d\x93\x47\xa7\x2f\x50\x7c\x7a\xd2\x29\xd2\xe9\x0b\xa4\x9e\xae\xc0\xeb\x23\xad\x12\xa0\x3d\x59\xc6\xe1\x23\xf3\x56\x80\xf8\x74\x42\x2c\xf8\x2d\xb1\xe3\xbe\x62\xea\xdc\xbc\x5b\xc6\xfb\xfb\x8a\xee\x28\xf0\xdf\x12\x89\x03\xe0\xa7\x13\x73\xd8\x6f\x9d\xda\x40\xea\xe9\xc2\x20\x10\x52\x8f\xdf\x40\x53\xec\x89\x57\xfa\x2d\x8f\xed\x9d\x62\x9c\xbc\xd2\x05\xd5\xe3\x37\x44\xe2\xc5\xac\x80\x5b\x22\xf1\x9d\xa3\x3b\xb2\xd5\x5b\x47\xf6\xce\x31\x05\xb2\xf1\x5b\x47\xf6\x86\xc7\xb6\x67\x5a\xfd\x6e\x79\x6c\x6f\x78\x6c\xc5\x93\xee\x42\xba\xbd\x21\xf6\xf6\x4c\x0d\xf0\x96\xd8\x0b\xd4\x9e\xac\xd4\x92\x5b\x97\xf3\x1d\x07\x5d\x79\xc8\xb7\x0e\xfa\xfd\x4a\xc0\x6f\x1b\x67\x20\x7d\x33\x60\x7c\x94\x91\x22\x18\x1f\x0f\xa8\x9e\x9e\xab\xda\x34\x12\xe4\x88\x2c\x2a\xbe\xb7\x72\xd5\x80\xcc\x93\xba\x02\xce\x6f\x79\x50\x03\xaa\x47\x89\x2c\x82\xea\xf1\x3b\xd8\x83\xd2\x74\x6f\xb1\x07\xa0\xf6\xbc\x6d\x9c\x9c\x0c\x6d\x81\xc7\xd3\x65\x6f\xba\xa7\xba\x83\x9b\x74\x89\x50\x64\x68\x03\xfc\x4e\xea\x59\x04\x26\x5f\x68\xe0\xf1\xb0\x0a\x80\x0b\x8f\xc7\xef\x60\x46\xca\x55\xbd\x65\x86\x0f\xac\x9e\x2e\x13\xd0\x2d\x8e\x73\xaf\xe8\x8e\x3c\xfa\x96\x33\xf4\xde\xd1\x9d\x9a\x8a\x9a\x30\x01\x8a\x39\xb7\x32\xdc\xee\x28\x53\x97\x29\x78\xdc\x72\x86\xde\x90\x49\x08\x0e\xea\xb7\x64\x92\xdb\xaf\xa8\xfe\xc8\x9d\x93\x59\x0f\x18\x3a\xa9\x13\xf3\xc4\x6f\x41\x2c\x04\xa8\x8e\x7c\x24\x02\xd5\xf1\x3b\x58\x91\x52\xbd\x6e\xb1\xa2\x1b\x39\x67\xbd\x88\x18\x94\x73\x76\xdf\x8e\x4f\x92\xbc\xc4\xa5\xee\x27\x46\x42\x4e\x74\x2b\xab\xe4\x7e\x15\xee\x72\x91\x99\xde\x84\x68\xf7\xfb\x65\x52\x85\x50\xa4\x7e\xcb\xf4\x15\xe8\x3e\x5d\xf9\x55\x8f\x98\xd4\x73\x25\xbc\xd6\xd9\x94\xd5\x14\x03\xa1\x30\xf9\x88\x7f\x05\x28\x50\x97\x85\xe7\x11\xff\x7a\xae\xe8\x8e\xc2\xe4\x23\xe7\xe3\x93\xfe\xff\x8c\x5d\x3d\xd2\x64\xb7\x0d\xcc\x7d\x8a\xef\x06\x7e\xfc\x03\xc8\x44\x89\x63\xfb\x0e\x33\xd3\x83\x2a\x05\x92\xb6\xd6\xd2\xfd\x5d\x0f\xd0\x74\xaf\x5d\x0e\x14\x6c\xb0\x1f\x6b\x08\x12\x04\xfb\xe1\x87\x6c\xa6\x38\x56\x72\x42\x17\xcb\x92\x04\xa8\xd9\x20\x7c\x85\xce\x3a\x46\xc1\xd7\xe0\xaa\x86\x62\xa3\x28\x8c\x1a\x5c\x9e\x10\x46\x45\xaf\x3e\xa9\xe7\x50\x19\x31\x6e\x2f\x62\x90\x50\xf4\x15\x62\x5f\x88\x51\xa3\xe4\xaf\x54\x61\x8c\x8c\x8d\x4c\x37\x08\x42\x15\xc6\xc8\xb0\xc3\x26\x5d\xb1\x50\xd8\x11\x2b\x57\xae\xab\x49\x13\x2f\xd4\x9b\xf4\x29\x62\xfd\xd0\xe5\xb3\xda\x3a\xdb\xa4\x94\xf2\x53\x26\x61\x2f\x94\xf2\x0f\x2b\x71\x1c\xa5\xee\xb1\x45\x86\x24\x36\x59\x29\x08\x55\x11\xc3\x73\xe2\x0c\xb0\x43\x2e\x4c\x14\xb4\xe9\xbc\x7c\xa8\x18\x10\x85\x5f\x3a\x2f\x1f\xc2\xaf\xf0\x12\x47\xfc\x0a\x1d\x23\x8c\x24\x3d\xb0\x49\x28\x0d\x91\x1e\xc4\xae\x99\x13\x2f\x43\xd5\x80\x78\xe4\x46\x9e\xf4\x16\x43\x45\xbf\xc8\x50\xc6\x74\x38\x3c\x54\xf4\x2b\x8e\x25\xe3\x8b\xfa\x2f\x71\x2c\xbd\xa2\x1c\x15\x1d\x25\x0e\x39\x2a\x81\xfa\x1d\x7d\xad\x50\xa9\x2d\xde\xa9\xb2\xd9\xff\x9a\xcf\x2b\x4a\xa4\x57\x14\xe4\x2c\x46\xf5\xa1\x20\x22\x0a\x57\x74\x1c\x32\x84\x2b\x51\x6e\x8c\x4e\x21\x87\xae\xe8\x44\xd4\x68\xd4\x24\x85\x66\x02\xdc\x96\xb6\xac\x12\xe0\xc5\xce\x64\x3c\x16\x88\x8b\x09\x70\x5c\x05\x03\x3c\x30\x8c\x8b\x30\x80\xab\x5d\xd5\xe6\x9f\x36\xd6\xdb\x70\xb5\x9a\xc2\x67\xef\xe1\x62\x86\x0e\x57\xf2\x2d\x1b\x39\x4c\x70\x91\x6f\x19\x57\xd6\xdb\xcc\x3a\xdb\xc8\xd4\x8e\x6b\xa4\x59\x7f\x1c\x38\x5c\xf4\x1d\x70\xd5\xc6\xe4\xe9\x58\x5c\x43\xe2\xb2\xf4\x6f\x3c\xbd\x04\x11\x4c\xe1\x9a\x25\x6e\xb0\xcf\x29\x71\x33\xc5\x7d\x4c\x1e\x17\x33\x7b\xb8\x32\x7b\x67\x3c\x01\x8b\x6b\x49\x63\x85\x03\xe4\xf9\xc0\xb5\xa4\xb1\xda\xec\x3c\xfe\x03\x71\x56\xa1\x78\xa9\xcc\x16\xb5\x69\xea\xb3\x02\x0f\x9e\xba\xc1\xc5\xc0\x03\x97\x25\x92\x7d\xbc\x00\x5c\x26\x65\xd6\x66\x37\xe7\x30\x5d\x5d\xd6\x8e\x26\xc9\x07\x2e\xd7\x30\xcb\xeb\xe0\x61\x56\x5c\x2e\x71\x9e\xe2\x3e\x9b\x16\x97\x4b\xdc\xbe\xea\x67\xec\x72\xcb\x1e\x2a\xb8\xb0\xc3\x2e\x1f\x52\xf4\x23\x15\xad\x51\x3e\xb4\xae\xb5\x9f\x59\x8d\xc7\xf5\x90\xc2\xca\x0f\xe0\x43\x6f\xb8\x1e\x5a\xd7\x4c\x40\x18\x4b\xe7\xb8\x9e\x12\xf7\x2c\x71\x6a\xd2\xba\x66\x06\xdf\xf8\x90\x20\x2e\x56\x05\x91\xf4\x53\x83\x91\x13\x44\x3f\x85\xab\xd0\x83\x07\x29\x71\xbd\xa4\xcb\x57\xcd\x60\x72\x94\x3c\xda\x84\xa4\x9f\x1a\x0c\xb8\x20\xfa\x29\x14\xc5\x94\xf9\xe4\x28\xa1\x91\xa0\x46\xc2\x41\xf2\x89\x1a\x5c\xc8\xb9\x49\xcb\x90\x2a\x51\xea\xd2\xf6\x81\x16\x15\xb9\xa8\x87\x73\x83\x16\xb5\xd0\x8f\xaf\xf0\xe1\x7a\xcb\x86\x0a\xc3\x5c\x66\xf9\xd6\xbc\x2b\x14\xe3\x5b\x7b\xb8\xde\x12\xf7\x2e\x71\x6a\x0a\x36\x15\x84\x09\x36\x42\x5a\xae\x20\xcd\x65\x27\x21\x5b\x28\x08\x73\x42\x58\xa3\x93\x83\x96\x0f\x51\x18\x2b\x8d\x68\xcc\xf2\xa2\x55\xa8\xb2\x2f\xfe\x6e\xe8\x77\xe9\x07\xf0\x7c\x02\xc4\xc2\x84\x56\x28\xc5\xe4\x1d\x1a\x4f\x05\xa0\x15\x14\xed\x4f\x02\x01\x8d\x49\x52\x14\xd5\x92\xed\x49\x71\x53\xe2\x66\x89\x3b\x6c\x1a\x6a\xba\x57\x95\x1c\xa6\x68\x4c\x92\x22\x49\x97\xee\x1e\x29\x8d\xb5\x3d\x24\x0b\x93\x68\x1d\x21\x16\x26\xb4\x02\xb0\xfd\x09\x94\xd1\x04\x60\xc5\xd0\x64\xcc\x8a\xa3\x09\xc0\x8a\x6a\xc9\xf6\xa2\x2e\x97\xc4\xad\x12\xc7\x26\x93\xbe\x2a\xa0\xe2\xf3\x48\x68\x4c\x92\xa2\x15\xb6\x31\x6b\x89\xc6\xf3\x09\x68\xfe\x67\xdb\xc7\x66\x9b\xab\xad\xc2\x9f\x7d\xa8\x95\xad\x61\x56\x56\x85\x6f\xe9\xa0\x6d\xc9\xab\x80\xe4\x68\xc9\x1f\x5a\x83\x47\xae\x41\xe7\x30\x1f\x9a\x42\x01\x18\x09\x7b\xd1\x1e\x12\x57\x28\xc5\x73\x6e\x68\x42\xa9\xa2\x29\x32\xd2\x59\xa0\x3d\x25\xee\x99\xe2\xf8\xd1\x6a\x4f\xad\x6b\xbe\x0d\x63\xcc\xb8\xa0\x3d\x35\xf3\x42\xa9\x33\xa9\xb1\x97\x16\x0f\x35\x14\xc2\x8d\x28\x85\xd0\x2a\xb6\x60\xc8\x8b\x16\x9a\x42\x6d\x2e\x86\x39\x68\xf1\xc3\xef\x4a\x1e\x37\x65\xd7\xe6\xea\xf9\xda\xa6\x33\x84\x40\x67\x02\x12\x3d\x43\x01\xbf\x68\x80\x9d\x49\x46\xf4\xf4\xcd\x9d\xf4\xfb\xe8\xf4\xcd\xd1\xd3\x37\x6f\x44\xd3\x2e\xf7\xa0\xf7\xea\x92\xe6\x2e\xfe\x1c\xf4\xdc\x94\xce\x34\x1b\x44\xa0\x83\x3e\x4a\xdc\xe7\x18\x1f\xfa\x90\xb8\x51\xe2\x3e\x9a\xee\x2c\xfc\xa1\x78\x77\x9c\xbc\x08\x10\xef\x0e\xfa\xaa\x2e\x69\xd3\x9d\xce\x39\xba\xd5\x50\x88\xec\xdd\x34\x14\xaf\x29\x10\x6c\xfb\x96\x36\x77\x1a\x04\x77\x9e\x98\x69\xd0\xd3\xdc\xbd\x49\x61\x32\xf7\x62\xad\x71\x72\x04\xa3\xcb\xdc\x8b\x9a\xc6\xf9\x9c\x16\xfa\x91\xb8\x53\xe2\xa8\xb0\x23\x71\x79\xa9\xd3\xc9\xda\x8b\xce\x04\x23\x7a\x26\x11\xbd\x8d\xbf\x76\x6d\x0d\xfd\x48\x31\xa7\x46\x43\x00\xec\x0f\xad\xdf\xa3\x66\xa8\x75\xd7\x0e\x2b\xe6\x1a\x6f\x5a\x77\x7d\xeb\xfb\xf3\xcf\x97\xa2\xf9\xbb\xa7\xa6\xf1\x2c\xcd\x10\xaf\x3a\xaf\xde\xa0\xdf\x5b\x6c\x34\xad\x9f\xfc\x80\xfe\x2c\x71\xa6\x2e\x7f\x10\xf7\xae\x36\xae\x2d\x4f\x40\xa3\xdf\xee\xc2\x60\xce\x0f\xfd\x35\xd4\x54\x23\xe1\xe6\xeb\xf2\x03\x7a\xfa\x01\x3c\x10\x86\xfe\x92\x71\xa2\x94\xc2\x8f\x5e\x87\x94\x82\xea\x92\x2e\x49\xd7\x5e\x2f\xf2\x1d\x6f\xb2\x40\x68\x06\xef\xea\x73\x73\x28\xcc\x76\x20\x59\x73\x46\x73\x35\x69\xd9\xdf\xb5\x76\x84\x88\x1e\xb2\xa4\xfc\x6c\x93\x64\x02\x62\xd1\x41\x4f\xd4\xf1\x2e\x84\x10\xea\xf4\x44\x1d\x27\x23\x26\xba\x50\xa7\xb8\x72\x9c\xe9\x40\x0c\xa1\x4e\xd2\xe6\x8c\xf6\xc9\x37\x61\xf0\x32\x0c\x8a\x0f\xc7\x79\x56\x0c\xe2\xc3\x41\xf2\xdf\x88\x0b\x18\x43\x78\x94\xf4\x37\xf7\xcf\x9c\x6d\xae\xb6\xea\x92\x38\x3d\x9a\xba\x6c\x09\x1e\x87\x23\x21\x43\x18\x46\xcf\x41\xd2\xcb\x19\xcc\xac\x22\xd9\x6f\xee\x1e\xd5\xa6\x09\xf4\xd2\xc9\xe4\x04\xc8\x36\x80\xe4\xbc\x11\xbb\x30\xc4\x79\x83\x51\x80\xda\x3f\xb9\x02\x0c\xd6\x49\x30\x0a\x35\x3b\x77\xd6\x10\x6a\x8e\xf1\xa7\x38\x0e\x65\x48\xdc\x28\x71\x9c\x9c\x3c\x99\x91\xa0\xc9\x43\x7e\x18\xbc\x42\x83\x31\x4b\x95\x44\xb1\xa1\x98\x6a\xa4\x27\x43\xe2\x10\x88\x98\x07\x45\x79\xe3\x9d\x58\x2b\xca\x1b\x24\xe5\xcd\xe0\x2b\x70\x10\xe5\x0d\x46\xc1\xe9\x68\x94\xb6\x35\xb7\xc2\x4c\x1e\x98\x82\xe8\x70\x50\x94\x37\x3e\x64\x27\x5b\xe2\x76\x89\x33\x36\x69\x51\x13\x32\x79\x4a\x11\x43\x90\x39\x32\x0b\xea\xa3\xab\x4d\x9a\x3c\xa9\xc9\xce\xb9\x1d\x2d\x5c\xa1\x29\xf9\x38\x30\x04\x97\xa3\xe0\x92\x27\xb7\x30\x04\x97\xe3\x51\xe2\x06\xad\xf9\x21\x71\x8f\x12\x47\x9d\x3c\xa4\xaf\x67\xe9\x84\x9f\xbb\xf1\x94\x4e\x0a\x2d\x07\x91\x74\xb0\xfe\x8a\x51\x90\xc8\x7c\x26\x86\x20\x71\xbc\xaa\x4f\x86\xca\xe3\xa5\x15\x7f\xe5\x8a\xf3\x3b\x32\x5e\x5a\xf1\x82\x44\x66\x26\x31\x04\x89\x23\x21\xb1\x4b\x29\x0a\x8d\xc6\xab\x94\x42\x24\x1d\x90\x52\x0a\x12\x99\x99\xc4\x10\x24\x26\x3d\x50\xf3\xb1\x39\x14\xc1\xde\x78\xd7\xec\xe8\x4c\x0e\x45\x2b\x23\xa3\x95\x1f\xf6\xe3\x5b\xca\x2c\x48\x64\x86\x11\x23\x34\x94\xc2\xbd\xa9\xcd\x2a\xdc\x1b\x99\x8d\x71\xb2\x94\x60\x84\xc4\x45\x89\xfb\x34\x4d\xe6\x64\x51\x1c\x40\xce\x14\x23\xc4\x01\x84\x79\x63\xd2\xdd\xf6\x19\xca\x64\x69\x16\x33\xc3\x0e\x27\xff\x07\x26\x2f\x38\x60\xd6\x6e\x25\xff\x04\x26\x2f\xb5\x61\x96\x8b\xc3\x2c\x1c\xa6\x5c\x9c\xb9\xaa\x4f\x4e\x7d\x2a\x5d\x51\x84\x3d\xce\x2c\x1c\xa6\xdc\x9f\x69\xaf\x6a\xfb\xac\xd0\x64\x02\x12\x33\x33\x89\xbe\xe8\x30\x4e\x9e\x44\xc2\xf4\x34\x08\x9a\x9f\xd8\x75\x30\x0b\x39\x48\x43\x8d\xa9\x28\x61\xfa\xbb\xda\xd4\x25\xf7\xf2\xbc\x1d\xaf\xd1\x69\xb5\x93\xd7\xcc\x30\xcb\xa3\xe2\x1d\x7a\xcc\xad\x91\xec\x1c\x89\x51\x61\x5b\x8a\x3e\x35\x71\x9a\xad\xb8\x7c\x30\x93\xb7\xc2\x79\xab\x1d\xf3\xa1\x19\xbc\x6a\x06\x1a\xca\x4b\x33\x28\x73\x5f\x87\x7d\xca\xdc\x67\x79\x07\x64\x2c\xc6\x94\x77\x30\xcb\x03\xe0\x71\x30\x4c\x79\x00\x33\x49\xb6\xdc\x08\xdf\xf3\xad\x45\xc8\xe4\xa3\xf3\x38\x18\xe6\x5b\x46\x56\xdb\xc4\x9a\x7e\xa7\x3e\x6b\x2f\xf0\xf2\x3a\xa6\xf6\x42\x91\x00\x39\x49\x7f\x31\xf5\x9d\x9f\xf9\xba\xac\xf3\xfd\x2e\xcc\x90\x3e\xcb\x07\x50\xea\x4e\x04\x41\x58\x99\x99\x74\x3e\xd2\x85\xa5\xcc\xe4\xaa\x8d\xc2\x6b\x82\x58\xda\x28\xc5\x1e\xe4\xbc\x27\x08\xb1\x07\xa1\x18\x82\x5c\x79\xbd\xc5\x1b\xb1\x48\xb2\xa0\xd1\xf7\xf8\x6b\x4e\xef\xe2\xa1\x09\xac\x0a\x3e\x8c\xc1\xf6\x52\xf0\xb1\xea\x3b\x4a\x37\x4d\x84\x3e\x58\xb5\x6b\x79\x50\x0e\x4b\xbb\xb6\xc8\x7e\x9c\xe4\xb7\x58\xda\xb5\x6b\x96\x38\x1a\x8c\x68\x7b\xb0\x32\x25\xc0\x77\x3e\xb1\x78\x2d\x01\x49\xc5\xd3\x9c\x17\xb9\xb1\x96\x66\xb0\xd2\xe4\xd5\x23\xcb\xaf\x58\x85\x11\x4e\x73\x11\x37\x0f\x56\x61\x04\x1f\xba\xc2\x12\x46\xac\xe4\x0a\x75\x3e\x74\x85\x45\xe6\x2e\x14\x03\x8f\xf3\xba\x36\x96\x69\x28\x56\x43\xa1\x38\xa5\x3b\x93\x70\xa7\xb9\x13\x07\x96\x6b\xf5\xfc\x5e\xbd\xa1\xc9\xb9\xa4\x15\xea\x38\xbf\xdb\xcb\x65\x2c\x05\x2d\xbc\xc9\x8d\x25\x68\x29\x9a\x1d\x77\x19\xe7\x96\xb8\x5d\xe2\x9c\x4d\xae\xa6\x93\x4d\x9c\xc0\x96\x2e\x2b\x56\xe3\x65\x6d\xac\x23\x7d\x3d\x4a\x5f\xf4\xd3\x96\xb2\xa4\xab\x3e\xa4\xca\xb5\x2d\x7d\x48\x57\x7e\x48\x87\xd4\xac\x0f\xe9\x2a\xd4\x51\xf2\x6b\x09\x75\x56\xa1\xce\x96\xc2\x94\x64\x2c\xba\x19\xdf\x9a\x1d\x24\x0e\x25\x8e\xb3\x53\x26\x71\x55\xd8\xb1\x35\x14\x7d\x7f\x57\x86\x1d\xa4\x64\x85\x98\x68\xb0\x0a\x8f\x48\x46\x8b\x25\x3c\x2a\x96\x1a\xdf\x5a\x71\xe1\x51\x51\xd1\x38\x9f\xc2\xc7\x0a\x89\x8b\x12\xc7\x09\x84\x94\x52\x90\x43\x9e\x5a\x88\x6f\x06\xc9\x37\xa3\x17\x2e\x20\xbe\x19\x58\xa1\x11\x79\x6a\x21\xbe\x19\x58\xa1\x11\x79\x6a\x21\xc2\x19\x14\xa9\x8c\xf3\x1a\x2e\xac\x49\x5c\x2b\x71\x6a\x1a\x6a\xca\x09\x30\x7e\x30\x56\x52\x61\x15\xad\x28\xb5\x27\xd6\x18\x58\x2b\x69\x8c\xf8\x8d\x95\x54\x14\xa3\x8c\xf3\x32\x2d\xac\x6b\x06\x59\xb1\xf1\x6d\x1c\x8a\x52\x32\x56\x01\x84\xf2\x77\xa6\x00\xc2\x32\x80\x18\xf4\x65\x8c\xe7\xb3\x60\x05\x8a\xbc\x4b\x0b\x53\x55\xa6\xb8\x61\x7c\x33\xbe\x33\x21\x9f\x25\xb7\xa7\xf3\x9d\x6f\x98\x42\x88\x22\x80\x71\x9e\x1f\x84\x4d\x0d\x65\xd6\x50\x38\x73\x25\x43\x93\x0a\xe6\xfe\xd9\x07\x84\x4d\xa8\x98\x5c\x30\x77\x1b\x7f\xc7\xaa\x2e\x92\x1c\x66\xc8\x5b\x16\x39\x0c\xac\xc0\x54\x49\x46\x53\xa1\xa7\x88\x63\x9c\x47\x12\x61\x42\x4c\x33\xab\x36\x0e\xc5\xa4\xb1\xac\xe6\x38\x0f\xdf\xc1\xe4\x39\x59\x96\x6e\xe5\x80\x8b\x1c\x06\x56\xa8\xc8\x67\xa6\x61\x2a\xf4\x58\xde\xb4\xf7\xc3\x3d\x62\x5b\x53\xa8\x00\xe9\xc8\xa2\x15\x20\x59\x06\x48\x43\xe6\x20\x17\xc8\x0a\xc3\x94\x80\x34\x61\x58\x31\xc0\xf8\x61\xec\x61\x72\x8f\x2c\xaf\x72\xfa\x61\xd9\xcc\x94\x7b\xb5\x0a\x75\x78\x2d\x16\xa6\xfc\xaa\x55\x66\x88\xa7\x15\x61\xca\x0c\x15\x97\x8b\x1f\xe6\x63\xec\xa9\xb1\x3c\x77\xb5\x51\x2d\x4f\x4d\xaf\xe2\x19\x9e\x47\x84\x29\x9e\xb1\x8c\x67\x48\xda\x0a\x31\xaf\xc0\x0a\x86\x79\x68\x05\xf6\xd2\x30\x0b\x6b\x8f\x4c\x53\x58\x6b\xb8\xaa\x8d\xea\x84\xa6\x5e\x1e\x9e\x72\xaf\xa2\x5e\x81\x25\xb3\xfc\xbe\x64\x64\x90\xb1\x64\xd9\x66\x5f\x8c\x30\x4c\x65\x1b\x4b\x20\xde\x3c\x87\x01\x53\xd9\xa6\x08\x56\x36\x1f\x76\x85\x09\x6d\x8b\x29\x65\xf3\xb6\x2d\xc4\x94\x02\xcb\xcb\xa3\xfb\x92\x95\x85\xf4\x92\xd1\xce\xe6\x79\x04\x98\xa2\x1d\xcb\x68\x67\x48\x65\x72\xfe\x8a\x29\x65\xf3\x39\x52\xb8\xca\xd2\xc5\x94\xb2\xf9\x1e\x29\x5c\x70\xeb\x59\x96\xde\x7c\x74\x14\xae\xb2\xb4\xb7\x9a\xde\xe7\x5e\x26\x5c\x6e\x9a\xb7\x44\x08\xae\x82\x28\x4f\xe0\xad\x66\xc0\xda\x99\x0b\x53\x8b\x0e\x65\x93\x57\x17\x2e\x4c\x2d\x5e\x93\xad\xfc\xb1\x2b\x97\x93\x14\x27\x43\xa1\xa3\x0b\x52\x7d\xd4\xec\x68\xb7\xae\x22\xb8\x67\x11\x9c\x1c\xaa\x70\x15\xc1\x7d\x94\x34\x86\x6b\xae\x22\x78\xd1\xa1\x6c\x5e\xfc\x85\x0b\x6e\x8b\xd7\x64\xf3\xc0\x28\xc4\x6b\x02\x9f\x65\x63\x7b\xff\xb7\xdb\xeb\xff\xdf\xeb\x75\xd5\xc8\x7d\x96\x5e\xe8\xa2\x3a\x6f\xc7\x22\x19\x50\x06\xc9\x36\xe1\x02\x5c\x5f\x35\x18\x86\x34\x2e\x54\x4d\x76\x94\xa1\xf0\xd7\xe5\x86\x16\x23\xca\x6e\x8c\x76\xdc\x24\xcd\x4a\x1a\x7b\x94\xa7\xe9\xb7\x63\x79\xff\x8c\x6a\x11\xde\x7a\x16\xa6\xb6\xca\x6e\xae\xc2\x94\x5b\x89\xd3\x50\x54\x59\x2f\x22\x95\xdd\xb8\x4d\x5c\x80\x5b\x8c\x28\xbb\xd1\x3f\x12\x23\x0a\x3c\x93\x5c\x64\x3c\x85\x2b\xc9\xe5\x59\x59\xdf\x8d\x05\x26\x57\x61\x20\x19\x50\xee\x36\x76\xa9\x50\xd5\xd3\xd7\x24\x03\x29\x5c\xbe\x66\xb2\xa3\xb4\xdd\xb4\x83\xb6\x66\xb7\x6b\x76\x74\x2f\x5c\x18\xee\xa7\xc4\xf1\xb3\xe0\xca\x72\x79\x66\xb9\x26\x73\x3d\x7e\x34\x83\x47\x29\xe5\xf3\xfd\x8d\xc3\xa8\x2b\xce\xed\xd7\x4c\xe6\x6c\xe2\xf0\x54\x6b\xe4\xb5\xed\xc9\x94\x4d\x1c\x6e\xd7\x38\xf7\x16\x14\xaf\x6c\x1c\xe6\x3b\xe2\xf4\xeb\x6e\xfa\x84\x2b\x71\x78\x61\x26\x4e\x9f\x3f\x7d\x4d\xf2\x05\xc7\xe9\x92\xd5\x9f\xd9\xc4\x11\xb2\x22\x15\x79\x21\x7c\x32\xb7\x12\x87\x55\xe2\x38\xa3\xfd\xf4\x35\xd7\xc7\x10\xe2\xb0\x4a\x1c\xe7\xde\x8f\x93\x3c\x83\x71\x86\x06\x7f\x3b\x42\x93\x59\x89\x38\xcc\xac\xc6\x99\x57\x36\xed\x4f\x13\x7d\x9f\x38\xf7\x46\x9d\x7c\x92\x2a\x0e\x13\xab\x71\xee\x2d\x3b\x79\x21\x2e\x0e\xbd\xa2\x38\xb7\x13\x24\x26\xc7\x38\xf3\x07\x59\xef\xbb\xc9\xa8\x0d\xb2\xb8\x46\xde\x65\x9f\xe4\x3a\x0b\x5d\x60\x8f\xbc\xaf\x2e\x2a\xbd\x38\x4b\xb2\xee\x1d\x3a\x4d\x3a\x74\xa9\xf7\x0e\xb3\x26\xcd\x3b\x8e\x4b\x1b\xfe\xc8\x26\xfd\x4a\x23\xf4\xd4\xbc\xa6\xec\x1a\xe1\xbd\x29\xc4\x77\x1b\x67\x4b\x1b\x77\xf8\x35\xa7\x8c\x8d\xe1\x57\x9c\xdb\x8b\x99\x24\x85\x8d\xb3\xd5\xe1\xc9\x0e\x8d\x4d\x47\x53\x3e\x69\x36\xc6\x45\x39\x9a\xf2\xc9\x79\x49\x51\x4c\xed\xc6\x39\x69\x51\x32\xec\x23\x8b\x3a\x39\x2f\x57\x87\x1a\xc6\x23\x87\xb1\xd9\xe1\x43\xb2\x1e\x3b\x9b\x68\x51\x0f\x29\xea\x91\x1d\x1e\xda\xe1\x53\x66\xf3\xbc\x07\xcf\x67\xe6\xe2\x3c\xd5\xe1\x33\x6d\xe3\xe2\x30\x9e\x1a\xfc\xed\x0f\x4d\xde\x87\x0c\x5d\x90\x8f\xbc\x20\x2f\xb6\xce\xd0\x05\xf9\xc8\x0b\xf2\xa2\xdd\x8c\xf3\x52\x87\xb7\x0b\x34\x97\xe6\x05\x75\x88\xfc\xd5\xe1\xaf\xa0\xa5\xbc\x9d\x1c\xd1\x44\x86\xee\xb9\x47\xde\x65\x17\x15\x64\x9c\xb7\xa6\xfc\xee\xb7\x1d\x76\x76\xf8\xd6\xaf\xde\x69\xa2\x83\x66\xf3\x96\x0e\xdf\xf7\x94\xdb\xa6\x36\xde\x82\x94\xb8\x17\x85\x54\x89\x71\x42\xb2\x22\xb7\xc3\xe4\x76\x08\xc9\x8a\x94\xf5\x09\xc5\x22\xe8\xc1\x44\xdc\x3b\xbe\x7f\x0a\x8c\x11\xfc\x1c\x47\x1e\xf2\xe4\x13\x8b\xa1\xd3\x86\x91\xa7\x0d\xdb\xfc\x9f\x0c\xd4\xfd\x9f\x5f\x1e\xdf\xfe\xf6\x8f\x7f\x3e\xbe\xfd\xeb\xf1\xcb\xfb\xeb\xf5\xc7\xf7\xef\xef\x5f\x7f\xc7\xcf\xaf\xdf\xbf\xfe\x7e\xff\xf5\x0b\xef\xf8\xf9\xd7\xf7\xf7\xf7\xbf\x7f\xfb\xe3\xfb\xeb\xfd\xf5\xed\xb7\x6f\xf7\xaf\xf2\xdf\x7f\x02\x00\x00\xff\xff\x26\x2e\x42\x12\xc5\x7b\x02\x00"); -func _ccda ()(*asset ,error ){_aedbf ,_ebff :=_ebad ();if _ebff !=nil {return nil ,_ebff ;};_ebed :=bindataFileInfo {_ag :"UniGB-UCS2-H",_bc :272134,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492744,0)};_bbec :=&asset {_cd :_aedbf ,_dce :_ebed };return _bbec ,nil ; -};func _daagb ()(*asset ,error ){_gbca ,_aacb :=_agcc ();if _aacb !=nil {return nil ,_aacb ;};_bffce :=bindataFileInfo {_ag :"UniJIS-UTF32-V",_bc :4458,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492953,0)};_aefbf :=&asset {_cd :_gbca ,_dce :_bffce };return _aefbf ,nil ; -};func _agcc ()([]byte ,error ){return _dc (_fbeg ,"UniJIS-UTF32-V")};func _ccbe ()([]byte ,error ){return _dc (_ddcb ,"B5pc-V")};var _cgd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4b\xaf\x6e\xcd\x91\xa0\x35\xf7\xaf\xd8\xc3\x66\xd0\xd4\xca\x7b\xa6\x64\x1d\x09\xca\x58\xb8\xa5\x06\x44\x75\x01\x12\x62\xf0\xae\x5b\x61\x89\xfa\x6c\xd9\xae\x41\xfd\x7b\x94\xcf\x13\xe7\x73\x0b\x21\xed\x33\x39\x6b\xed\x77\xe5\x2d\x32\x32\xee\x19\xf1\x0f\xff\xf8\x87\xdf\xfd\xe1\x97\x3f\xfe\xed\xeb\x1f\xfe\x97\xbf\xfc\xe9\xfa\xa7\xe7\x6f\x5f\xef\x1f\x7f\xb9\xff\xf2\xfc\xf5\x4f\xff\xf6\x97\xeb\xf9\x3a\x9f\x7f\xf9\xe3\x2f\xbf\xf9\x4d\xca\x5f\xf7\x1f\xaf\xbf\xfd\x7c\xe5\xbf\xeb\x5f\x3f\x7f\xfe\xcd\x6f\x76\xfb\x7f\xfa\xf7\xbf\xfe\xed\xf9\xd7\x3f\xfc\xf2\xfe\xe9\xab\xf8\xdd\xfd\x6f\x7f\x8e\x6f\xbf\xbe\xfe\xe1\x7f\x7d\xfe\xe5\x8f\x7f\xfd\xdb\x5f\xfe\xfd\xeb\x3f\xfc\x77\xf7\x9f\xce\xe7\xbf\xf9\xba\x9f\x77\xff\xfd\x7f\xfe\xcb\xfd\xfc\xe5\x8f\xbf\xfc\xcb\xd7\x7f\xf8\x4f\x9f\x3f\x7f\x7e\x49\xbf\xfe\xf0\x4f\xff\xf6\xe7\x3f\xff\x3f\xcf\xbf\x3e\xbf\xfc\xed\x6b\xf0\xb7\xe7\x97\x9b\xff\x7f\xf3\x0f\xff\xf8\x9f\x3f\x7f\xfe\x9f\x3e\xff\xfa\x7c\xfd\xc3\x3f\xff\xf2\xc7\xff\xf4\x87\x7f\xfa\x8f\xff\xfc\x5f\x7e\x9f\xfa\x7f\xfc\x1f\xf9\x99\x5f\xff\xb7\xe7\x2f\x7f\xfd\xe3\x9f\x7e\xf9\x4a\xff\xed\x91\xfb\xdf\xff\xfc\x5f\xfe\xfd\xcf\xcf\x57\x8a\x5e\xfe\x8f\x7f\xfe\xc3\xef\xbe\xfe\xcf\xf4\x95\x8e\xaf\xdc\x7a\x4a\xff\x57\xfc\xfd\x7f\xff\xcf\x7f\xba\x9f\xaf\xc3\xb7\xe2\x0a\xae\x3f\xdd\xcf\x5f\xff\xfc\xb9\x9e\xbf\x7c\x7e\xf9\x97\xe7\x37\x5f\x5f\xbf\x3d\x8e\xe3\xf8\xf1\xb5\xff\xfd\xf6\x77\xe3\xf7\xbf\xff\xb1\xff\xf6\xbb\x79\x1c\xbf\xfb\xc7\xfd\xf7\xdf\xfe\xee\xbf\xff\xfd\xef\x7f\xf7\xfb\xf8\xfb\xff\xf0\xf7\x6f\x7f\xcf\xdf\x9e\x5f\xee\xff\x4f\x8f\xbf\x49\x0e\xf4\xcb\x9f\xfe\x76\x3f\xaf\x7f\x8b\x31\x7e\x7b\x1c\xe9\xfd\xf1\x95\x76\xab\xff\xfa\xe7\xdf\xa4\xe3\x88\xd9\xfd\xf1\xbe\xfe\xef\xcf\x5f\x76\x83\x76\xfd\xf8\x5a\x63\x3f\x8d\xfd\xb4\x78\xba\x7f\x7c\xad\xca\xd3\xf3\xe3\x2b\x1d\xc7\x7e\xfc\x1c\xbb\xcb\xfd\x50\xf7\xdf\x68\xf2\x69\x3f\xbe\xba\x7f\xec\x3f\xbe\x56\xe1\x69\xfc\xf8\x1a\xd9\x26\xf3\xc7\x57\xaf\x7e\xb9\x7e\x7c\xa5\x96\x79\xfc\xfc\xf8\x4a\xd5\x0f\xce\xdd\x15\x63\x7e\xae\xfd\x81\x3d\xdc\xfb\xd1\x6e\xf7\xf8\x8d\xa9\x7c\xf6\x92\x32\xdf\x9e\xc7\x8f\xaf\xe1\x0c\xce\xf4\xe3\xab\x3b\xd7\xb3\xee\xd1\x1a\x8f\x6d\x37\xf3\xdb\xfe\xe3\x6b\x8c\xc9\xe3\xf8\xf1\x95\x92\xcd\xe6\x8f\xaf\x54\x6c\xb6\x67\xd6\x99\xce\xc9\xcc\xfc\xeb\x9e\x59\x66\x3a\x27\x03\xf7\xfd\x78\xf5\xdd\x8c\x7e\xef\xb1\x07\x66\xb4\x7b\x77\x56\x59\xdb\xbd\xbf\x6d\x74\xf6\xec\x6f\x9d\xce\xcb\xb7\xf4\xf0\xf2\xed\x9e\x4e\xda\x5b\xb5\x4a\xef\x3c\x27\x9e\x13\xcf\x79\xf7\x31\x9a\x3f\x14\x5e\xfa\xe2\xa5\xf2\x52\x06\x2f\xac\x71\x30\x42\x3a\xba\x6d\xec\x78\xf0\x32\xec\x6d\xf2\x32\x0b\x2f\xcb\x17\x7b\xfb\xfc\xf8\xca\x47\x29\xfe\x72\xf2\xc2\x0e\xa5\xe3\xb2\x37\x3f\xbb\xed\xcd\x5f\x1e\xa7\x63\xd7\xaf\xbf\x6c\x80\xa5\x74\xd0\x41\xe6\xb3\x94\xfc\x85\xb9\xa5\xcc\xda\xe8\x2c\x15\x9e\x6d\xd1\x1d\xdf\x97\xe1\xf8\x4c\x26\x39\x67\x36\x25\x25\xe7\x3c\xfc\xe5\xb3\xdb\x2f\xfb\x3d\x37\x96\x82\x06\x29\x39\xe3\x69\x5f\xce\x78\xd9\xfc\x71\x14\x9b\xbc\x8e\xc2\x4b\x76\xc6\x42\x33\x27\x7f\x01\xe8\x39\xfb\x8b\x2f\x02\x7d\xda\x46\xa0\x2f\xd6\x9f\x5d\x00\x58\x92\x32\x40\x9f\xc9\x36\x93\xa9\x31\x81\xbc\xf6\x73\x02\x2e\x99\xe9\x77\x47\x3c\x79\xf6\xef\x31\x49\x60\x94\x63\x92\x7c\x55\x62\x92\x6c\x6c\xd9\x60\xad\x8c\x50\x9c\x62\x66\xc1\xa5\xf8\xe2\x47\x31\x5f\x3f\x8b\xf9\x32\x4a\x71\xbe\x1c\xbd\x54\x02\xe0\xb6\x99\x76\xc0\xf8\x45\x80\xc7\xf8\x1f\xa1\x6f\x1b\x91\xa4\xda\xdb\xc5\x8b\x9b\x54\x04\xb9\x0b\x28\x22\x49\xb5\x03\x57\x93\x01\x5f\x8d\xd5\xd0\xa6\xb2\x1a\x20\x59\x37\xca\xfb\x7d\x0d\x84\x67\x8c\xea\x5a\x06\x6b\xa9\xcd\xd1\x0b\xd4\x30\x28\xd8\xff\x1f\x4d\x4b\xd5\x85\x8a\xa5\xd5\xd3\xd0\xd9\xa5\x2a\x66\x0d\x87\x5a\xce\xc6\xcf\x3c\x0d\xd9\xa1\x40\x2d\xf7\xbf\x6e\xb2\x58\x04\x40\xbd\xd9\x33\xd6\xd2\x0e\xfb\x65\x07\x5a\x20\x3c\xd0\x6c\xac\x86\xf1\xda\x5e\x4d\x05\x2a\xcd\xb5\x88\x7b\xcd\x7d\xe9\x7e\x1f\xfb\x62\x4f\xee\x8b\xeb\x6f\x71\x10\x6c\x13\x07\xc1\xde\xdc\x17\xf7\xb2\x9d\xbe\xd8\x5b\x1c\x05\x96\xd8\xe2\x28\x38\x99\xd8\x17\xd6\xdb\x3c\xbc\xd0\xaa\xd4\xf7\xbe\x88\xc7\x7d\x1f\x84\x4c\xe3\x2e\x21\x12\x5d\xbb\xfb\x32\x69\xdc\x5d\x8b\x88\xd0\x5d\x4b\xf3\x97\x38\x13\xb6\x71\x2d\xc5\xcf\x3c\x13\x2c\xa5\x7b\x26\xfc\xc8\x33\xc1\xdc\xbb\x67\xc2\x89\xc4\x3a\xfc\x21\xd6\x01\x88\xfa\x43\x4f\x3e\xbf\xf4\xc4\x4e\x8d\xd8\x11\x5f\xdc\x91\xc9\xfa\x86\xa7\x45\x5a\x39\x3c\x2d\x8e\x32\xaa\xc7\xc0\xcf\xc4\x30\xb7\x74\xb8\x12\x97\x35\x62\x57\xec\x60\x9f\x16\x4f\xde\x70\x4f\xdc\xec\xe1\x9e\x48\x43\x47\xec\x89\x9f\x05\x41\xf5\xe5\xde\xcd\xed\x69\x9f\x7b\x4f\xdd\xda\xc0\x16\x3a\x0b\x50\x4f\x51\xf1\xca\xbe\x30\x8d\x0b\xfc\x13\x0a\x97\x50\xf0\xa3\x97\xbf\x03\xaa\xfb\x00\x22\x2c\xe8\x4e\x7c\x43\xdb\x3b\xf3\x77\x66\x7a\x17\xfe\xee\x73\xe5\xef\x8c\x7c\xc7\x11\x63\x46\xb7\x3c\x45\xfe\x70\x0b\x00\x89\xcf\x2d\x5a\x4a\xb9\x6f\x4f\x91\xc8\x77\x0b\x02\xa9\xed\x1d\xe4\x82\x6d\xbe\x05\x81\x67\xea\x75\x1c\xe1\xf1\x22\x6d\xb0\xc0\xbc\xa9\xd2\xaa\x34\xcf\x1e\xb0\x09\xf6\xe4\xc6\x4a\xd2\xe4\x59\x90\xd0\x55\x6e\x01\x2c\xbf\x62\x2d\x20\x72\xf6\x88\x4d\xb0\x3d\x37\xd6\x32\x0f\xbf\x92\x54\xc7\x67\xd3\x97\xc5\x0b\x78\x99\xed\xf8\xc3\xb3\x7f\x97\x1e\xd8\xfa\x72\xf4\x83\x97\xc7\x17\x07\x79\x1d\x84\x26\xdd\xd9\xb3\xcf\xb9\x27\x99\x03\x23\x7a\x78\xa6\x8b\xf4\xf0\x4c\xe8\x7b\xee\xce\x32\xd9\x81\xb3\x04\x81\x72\x8f\x59\x0e\x5e\x00\xf2\x9c\xed\x3b\x42\x98\xe3\x0c\x2d\x7b\xbf\x9d\x9e\x2f\xd2\x82\xe5\x50\x4e\x9c\x9d\xce\x9e\xa2\x99\x18\x37\x4e\x11\x0c\x37\x0f\xe1\x0e\x6a\xe5\x21\xdc\x0f\xdb\xb8\x24\x78\x4e\xde\xa7\x68\x55\xd8\x6a\x1e\xae\x68\xfa\xe2\x22\x38\xd1\xd9\x93\x33\x0f\x3b\x73\x45\xd5\xce\x4e\x7f\xb1\x4d\x4c\xda\xd9\xc4\xa4\xf9\x65\x3a\x4f\x64\x99\x3c\x03\xc0\xcc\x73\x3a\xcf\xc3\x17\x50\x1d\x4a\x95\xa7\xd3\xe4\xe8\xe6\xe9\x6c\x38\x1c\x79\x3a\x1b\x38\x68\x9e\xce\xa6\xf8\x99\xe7\x18\xe9\x2d\xcf\x8b\xa5\xf9\x95\x33\x73\x9d\x53\x3c\x48\x0e\x23\x38\x91\x3f\xf2\x72\x9a\x9c\xd3\xbc\x9c\xa6\xb3\x59\x1c\x48\xf1\x73\x39\x33\xf1\x7b\x89\x13\x90\xc7\xbc\x62\xe7\xed\xcc\x69\x2e\xdb\x88\x88\xcb\xce\x9c\x4d\xf2\x97\x98\x00\xe0\xfc\xc4\x98\x74\xf0\x89\xa3\x03\xd0\x4e\xa7\x06\x39\xc9\xa7\xbf\xb8\xd3\xa7\xb8\xe7\xa2\xb7\x28\x2c\x06\x9d\x7b\xf9\xfc\xed\xb2\x53\x77\x02\xa9\x58\xd0\x5d\x32\x5b\x08\x48\xbe\x9c\x7a\xb5\xc5\xfa\x29\xbe\xe7\x6b\xc3\x57\x54\xbe\xce\x1f\x5f\x10\xd5\x7c\xb9\x1a\x88\x45\x96\x86\x89\x0e\x77\xcc\x9f\xfe\x7f\x52\x1e\x5f\x42\x9a\x05\x00\x50\x1e\x31\xf8\x0e\xd2\xcb\xb8\x9b\xee\xb8\xa8\x5b\x1e\xd2\xfc\xc6\x0d\x83\xb7\x95\x2d\x89\x33\x8b\xb2\xc5\xed\xe5\x53\xfd\x39\xdf\xb2\x25\xed\x0c\x51\x28\xc7\xaf\xa3\x94\x2d\x31\xa7\xe2\xb7\x7b\xee\xc5\xae\xee\xbf\xaf\xb9\x28\x20\x4f\x98\x4b\x49\x62\x15\xec\xbb\x28\xaf\x4e\x24\x94\xa2\x84\x39\x61\x81\x45\x09\x73\x36\x5f\xc6\x4f\x35\xa5\x64\x34\x16\xba\xcd\x62\x81\x33\xce\xd1\xad\xbf\xd8\x2d\x82\x7b\xc9\x8e\x0e\x3b\x2c\xc5\xbd\x46\x0a\x2f\x5b\x78\x84\xc9\x15\x85\xc5\x89\xaa\x50\x0a\xda\x0d\x03\x97\x18\x82\x99\x17\x7b\x1d\xbe\xb8\x40\x9b\x07\x5d\x83\xaf\x96\x09\xc3\xac\x6c\x6c\x99\x48\x87\x92\xcc\x32\x1f\x5f\x80\xdb\x7c\x7d\xa1\xcd\x42\x20\xf4\x10\x94\xcf\xc7\x5f\x7c\x39\x7d\x61\x9c\x33\x3e\xa3\x0d\x1c\xb1\xe7\x9c\xbf\x23\x7f\xe5\xb2\x43\x50\xbf\x5c\x76\x08\x3d\x2d\x97\x33\x72\x9b\x36\xb6\xa5\x7c\x70\x5e\x0b\xe8\x96\x8f\xe5\x2f\xcd\x17\xda\x80\x56\xf9\x00\x3d\xea\x56\xd8\xd2\xc1\x16\x54\x84\xbf\x83\x23\xf2\xc2\x34\x73\xda\x38\x99\x1e\xce\x4b\xd9\x87\x24\x3d\x27\x5c\x6e\xf3\x86\xf4\x0e\xd0\x7b\x1f\xe9\xf4\x0e\x19\x9b\x7f\x87\x22\xec\x25\xa7\x77\x40\xb7\x36\xc8\xf2\xb1\x35\xc2\xbc\xc1\x92\x8f\x8d\xa0\xdd\xbf\x6e\x8d\xab\x6f\x39\x31\x1f\xe8\x5b\x95\xa7\x0d\x9c\x78\x2c\x7f\x7f\xac\xb1\xb3\xf9\x48\x5b\x65\xef\xf4\xb5\x15\xb0\xbe\xd1\x23\x1f\x5b\xe3\x5a\xfe\xbe\x3c\xe3\xf9\x00\x61\xf7\x24\xf3\x01\xba\x1e\xfe\xbe\xf7\x3f\x3b\xea\xc3\x5a\xf7\x63\x66\xd8\xc5\x23\x03\xf8\xc8\x00\x34\xdb\xf8\x87\x0e\x99\x8f\xad\x45\x20\x3b\xe4\x03\xcc\xca\x29\xd1\x47\x79\xe2\x98\xe5\xa3\x88\xba\x95\x5e\xaa\xfb\x3d\x69\x8c\x46\x70\xd0\xb8\x2e\x1b\xf3\x77\xf6\xa0\xe7\x49\x4f\x9b\x75\x8f\xe9\x7a\xb6\x04\x3c\x20\x54\xf9\x00\xee\x65\xf8\xcc\x10\xcb\x45\x7d\xd8\xa8\x46\xb7\x90\x89\x8e\x32\x95\x0f\xc8\x44\x3a\x36\xb2\x66\x14\xf6\x94\x66\xf3\xa5\xfc\xf8\x1a\x9b\x15\x66\x35\xf1\xc4\xa9\xcb\xa8\xd8\xb3\x1c\x7e\xf3\xe1\xb9\xf2\xfc\x8a\x3d\x7b\xb6\xa8\xc1\xf3\xc8\x7c\xb4\x77\x61\x74\x7b\xda\x5a\xe8\x3c\x1c\x00\x25\x94\x59\xa0\x68\xae\x12\x7f\x86\xc2\xb6\xe4\xcb\x06\xe5\x3e\xbc\xf9\xa7\x0a\xc9\x76\xaa\xf6\xe5\x63\x32\xa3\x0d\xef\x59\x36\x3b\xcd\x28\x2d\x0b\xcd\x38\xa3\xb3\x2c\x18\x70\x46\x65\x59\x30\xa9\xfc\x53\x37\xc9\x34\xd8\x60\x9a\x65\x73\xf9\x9c\x36\x93\x5c\x48\xd4\x19\x71\x15\x61\x2e\x23\xae\xa2\xf9\xe5\x04\x1b\xcb\xf9\x60\x46\x9b\x2d\xcc\x72\xf0\xc3\x75\xfa\x03\x7d\x42\xea\x73\x76\x34\x0f\x5f\x76\x1a\x5b\x46\x45\x7e\xce\x88\xa5\xd0\xea\x9c\x9e\xdd\xd1\x91\x7c\x1e\x3c\xf3\xc9\x33\x79\x06\xbc\xcf\xe2\x99\x81\xb7\x74\x39\x0b\xdf\xe4\xbd\x67\xc8\xdd\x39\x1f\x74\xbe\x78\xdc\x53\x06\x9e\x99\xcd\xcb\x69\xfa\x49\x28\x8e\x83\x97\xb1\x37\xe6\xe0\x71\xfe\xf8\x42\x6f\xca\x59\x13\x4a\xdd\xf4\x36\xe7\xc3\x23\xb2\xfc\x65\x6f\x46\x75\x54\x95\x5e\x50\x3f\xef\xc3\x39\x3a\x9b\x9d\xf7\xf1\xec\x9b\x2f\xe7\xcc\xf1\xcc\x29\xcd\x6f\xc8\x58\xce\x58\x40\x12\x73\xda\x67\x12\x75\x30\xe7\x7d\x10\x87\x33\xdd\x07\x71\x1c\xf6\xfa\x32\x18\xab\xcc\xac\x9d\x89\x6e\x96\x81\x7e\x98\xf3\x66\x18\xe8\xe6\x39\xe7\xfb\xc7\xd7\x4c\x8b\xee\x36\xfe\x8c\x9e\x01\xc3\xe6\x0a\xe3\xf0\xb1\xed\x3f\xd3\x90\xc3\xca\x3e\xe5\xc2\xd8\xf4\x5c\x5d\x06\x74\x22\x57\x50\xa7\xb1\xcd\x59\x5d\xbb\x71\xc2\x90\xd9\x51\xea\x33\x92\x71\xe7\x70\x22\x17\x63\x4c\xca\x59\x65\xb3\x71\x70\x94\x80\x72\x9a\x7c\xb4\x82\xa4\x32\xdc\x1a\xbe\xb0\x40\x64\xa3\x9c\x26\xc3\xad\xc7\x03\xcd\x67\x18\x2b\x73\x9a\xf4\xf6\xd9\x6b\x68\x7c\x74\x02\x9e\xc2\x64\x2f\x91\x15\xa8\x14\x6c\x66\x1b\xd4\xfb\x25\x81\x29\xfc\x3d\x4c\x51\x9c\xc3\xb2\xc0\x62\x54\xfb\x5c\x96\xb4\x8b\x1d\x28\x48\x5c\x3f\x5f\x62\xf0\xcd\x5c\x72\x41\xfc\xca\x98\x33\x73\x41\xfc\xfa\xf5\xb3\xf6\x5f\xbf\xb8\x48\x30\x15\x46\xf8\xeb\x2f\x9b\x55\xa5\x9e\xc7\x1e\xb4\xe6\xe2\xcb\x06\x64\x7d\x36\x79\x41\x11\xcd\xf5\x7d\x51\x1f\x41\x82\xb6\x4f\xf9\xcc\x0c\xd9\xb6\x86\x32\x33\x67\xaa\x6d\x70\xcf\xcc\x18\xad\xd3\x98\x03\xd6\xb6\xfc\x3f\xf3\x16\x53\x72\x1b\xb4\x85\xf2\xb6\x7d\xe0\x67\xae\x7c\x3f\xf9\x9e\xa5\xb7\x2d\x13\xcf\x0c\xaa\xb7\xcd\xe8\x67\xe6\x6c\xb4\x2d\x12\xcf\x5c\xe9\x67\x32\x6e\xb1\x1f\xfa\x87\xff\xb4\x0d\x9c\x01\x7e\xb6\x0d\x1a\x21\xdb\x36\x60\xe6\x01\x51\x6b\xae\x3e\x9a\x7e\x24\x1c\x5b\xb8\xca\xed\x94\xc8\x43\x8d\xdb\x09\x05\x62\xdc\x13\x0a\xc4\xb0\xa7\x70\x5c\x7e\x22\xb1\xf0\x87\x6b\x7f\xc3\xf4\x37\x2b\x1e\x85\xd9\x5f\x6e\xd5\x62\x89\x17\xd4\x17\x82\xd5\x36\xf1\x92\x04\xb6\x0b\x83\x76\xe7\x11\x80\xd8\xa1\xc2\x45\x81\xfa\xb6\x4d\xdf\x46\xa6\x77\xa8\xdb\xd1\x0e\xfb\xdf\xa7\x8a\xa3\xdf\xb6\x8e\x3e\xd8\xac\xf6\x54\xe0\xcd\xca\x9f\xc6\x33\x23\x61\x32\xce\xb1\x41\xcf\xfe\x7e\x30\x99\x37\x80\xc0\x1c\x5e\xa9\x27\xd0\xec\x9b\x7a\x0d\xb8\x71\x3f\x98\x71\xe2\xf1\x81\x8d\xec\xcf\x7b\x62\x1f\xc0\xeb\x9e\xd8\x07\x3f\xaf\xd8\xd0\xf9\x64\x33\xd8\xc1\xc1\xeb\x9d\xdd\x87\x8c\x76\xb0\xe5\x80\xee\xf4\xee\xfe\xd0\x4b\x2f\x7c\x53\x78\xae\xfc\x9d\xb9\x74\x56\x92\xbe\x13\xcb\x72\xdf\x6a\xee\xcc\xd0\xed\xde\xdd\x22\xe6\xb1\x51\x12\x9b\x71\xee\xfd\x64\xa7\xa1\x36\xbd\x7b\xd2\xe2\x65\x6f\xde\xb0\x2d\x27\x23\x2d\x67\x05\xb8\x98\x54\x9c\x3f\x58\x6d\x0f\x6c\x6a\xfe\x22\x20\xa1\xfc\x7d\xa3\xc1\x16\xe7\x58\xe0\xf9\x48\xc9\x79\x09\x6e\x05\xb6\x8c\xc3\x33\x0b\xc1\x1f\x29\xce\xdf\xc1\x8b\x5d\x83\xfb\x03\x91\x25\x63\xcc\xc9\xa3\xca\xd4\xc0\xed\xd1\x62\x57\xf9\x65\x78\x4e\x59\xfc\xf8\x70\x1e\xd9\x84\x71\xbe\xce\x66\x37\x59\xb8\x1c\x7a\xe6\x34\x2f\xd4\xa8\x9c\x41\xd8\x93\x31\xd3\x01\x2a\x9c\xe8\x0a\xd9\xc3\x7a\x66\x87\x81\xb2\x9f\xa8\x08\xd9\x23\x7d\x76\x67\x93\x7c\x49\xbe\xd0\x1b\x44\x37\xbb\xdf\xe7\x6a\xbf\xce\xe6\xfc\x49\x66\x77\x93\x87\xd5\xb4\xc6\x26\x3d\x13\x8b\xa6\x02\xce\x33\x1b\x72\x65\xf3\x97\x81\x3d\x37\x7e\x59\x7c\x16\xbf\x9c\xfc\xc2\x04\x9e\x4d\x18\x6a\xe6\x94\x3d\x68\xca\x55\x66\xfa\x6c\x5d\xa0\xf6\xea\x73\xfe\xf1\x55\xe4\x17\xcf\x96\x2f\xaa\x02\xc6\xb3\x05\x8c\xea\xa9\x78\x54\x93\x0b\xcc\xf7\x59\x7a\x5b\x20\x02\x0f\xb3\x2f\xb3\xd9\x1c\x8f\x4b\xeb\x7e\xb6\x7e\x7c\xb5\xa3\xd9\xfe\xdc\xcf\xd3\xe7\xbd\xfd\x03\x8d\x39\x3f\x9b\x98\x97\x0e\xd9\x7b\x36\x2e\x15\xf1\xea\xf9\xb0\x74\x94\xdb\xfc\xe0\x05\x6b\xd8\xdc\xf2\x03\xf5\xae\x09\x54\x7a\x3e\x0c\xa8\x9c\xf4\xe0\xf7\x2a\x12\xbc\x07\x5c\x2c\x0b\xe2\xf4\x80\x8b\x75\x2d\x7f\xd9\x28\xbe\x92\xd3\xc7\xff\x55\x97\x80\xc4\x03\x56\x16\x87\xf6\x81\x00\xb6\x83\x93\xf0\xa0\xb1\xff\xec\xe0\x64\x6e\xf2\xc5\x07\xf5\xbd\x1e\x83\xb9\xe1\xdf\xaa\x47\x7c\xa6\xa6\x0a\x92\xa0\x92\xa4\x12\x10\x47\xa3\x5f\xd0\xd3\x47\x9b\xa3\xba\xc3\x73\x15\x80\x09\xca\x3f\x9b\x67\xe6\x0e\x92\x3e\x3a\xc3\x3a\x72\xf9\x83\x4e\x5f\x94\xb9\x1f\x75\x79\xec\x8b\xf9\xb9\xf4\xe6\x4d\x3b\x43\xea\xce\x6e\xec\x56\xb5\xca\x21\x68\x6e\x86\xf4\x64\x3e\x5a\x1e\x7f\x7e\x35\x9c\xa5\xbf\xcc\x3d\x7e\xa7\x2f\x04\xf5\x32\x5d\x0b\x82\x7a\x51\x63\x78\xf0\xc2\x15\x4c\x06\xf9\xd9\xc4\x36\x75\xd7\xb2\x25\xc6\x52\xdc\x99\x87\x9d\x81\x66\x3f\xcf\x49\xb7\x00\xe2\xc1\x3c\x5b\xfd\xfb\xc6\x84\x85\xbc\xf5\xbc\xa8\x21\xb0\xa8\xf7\x50\x63\x3c\x78\xde\x87\x58\x36\xf0\x6e\x5a\x51\xd1\x10\xf3\xbb\x65\xcc\xba\x09\xca\x37\xe4\xf0\xc5\xd2\x80\x1b\x2e\xbf\x9b\x9e\xd7\x04\xef\x78\x37\x41\x2f\x79\xd8\xd9\xd8\x7f\x4f\x0e\xb8\x61\xd0\x38\x03\xef\x96\x46\x6b\x46\xc4\x7a\xb7\x30\x5a\x32\x62\xd2\xbb\x65\xd1\x52\x96\xfd\x5c\xfb\x9b\xe4\xf7\xf7\x7e\x86\xaf\xbd\x07\x07\x31\xc6\x7d\xf7\x33\x8b\x7e\xb7\x5e\x59\x15\x8b\xde\x2d\xbb\x96\xd4\xfd\xfb\x3e\x93\x8b\xe3\xf6\x6e\x3a\x58\x33\x6c\xf3\xdd\x0a\x4c\x55\xbf\x78\x71\xe3\x15\xe7\xbc\x45\xa7\x32\x9c\xdb\x16\x61\x6b\x81\x82\xbc\x9b\x84\xd5\x92\xed\xe7\xe4\xd9\x6f\xae\xfd\x7d\xf5\x9b\xbd\xb7\x0b\x2d\xf2\xdd\x1c\xac\xd6\xe6\xf3\xde\x90\x04\x55\x79\xf1\xdf\x65\xc4\xd4\x77\xcb\x45\x65\x82\xf0\x6f\xde\x38\x8a\xc9\x31\xbf\x9b\x42\x66\xb5\xe8\x17\x77\x5d\xc0\x6a\x6b\x51\xb5\x73\xa8\xde\x0c\x4e\x81\xf9\xef\xa6\x9b\xb9\x36\xfb\xfc\xfc\x4a\x8f\xde\xad\x68\xd5\x2e\x4c\xf2\x86\xa7\x67\xe0\xdd\x12\x74\x4e\xc3\xb1\xf6\x3c\x87\x6b\xc4\xf6\xb2\xdc\x23\x4c\x2f\x0b\x1e\xf9\xe2\xc1\xc3\x7c\x95\xdf\xe2\x29\xf3\x9b\xbf\xd3\xb8\xb7\x40\xe3\xe0\x2a\xef\x16\xbf\xab\x12\xf2\x5b\x3a\xcf\xac\xa5\x0c\x9e\xed\x67\xd3\x9b\xce\xc9\x79\xb1\xdb\xd4\x26\x70\xcb\x5e\x00\x9e\xdf\xfc\x6e\x25\xb0\xe2\xc4\xcc\x2f\x9e\xbb\xe6\x22\xb7\x24\x5f\x17\x74\xe7\xc5\x6f\xb7\xa2\xed\x66\x47\x78\xc3\xf2\x8b\xd7\x2e\x8b\xf9\x35\x41\x40\x19\x78\xcb\x0d\xa5\x89\x64\x5b\x0d\x28\x4a\xc6\x2f\x3a\x3a\xae\xa9\xfc\x6e\x8d\xa0\x68\x6f\x78\x6b\x87\xe0\xda\x76\x80\xac\xcc\x61\x2b\x0a\x2d\x15\xfb\xd9\x0b\xc0\xee\x94\xdf\xba\x11\x1a\x43\x74\x7e\xeb\xa6\x96\xb3\xd9\xff\x9e\x7f\x76\x9e\xf5\xfe\xf1\xd5\x70\x58\xe4\xb7\x3e\xfb\xb9\xfb\xfd\xcb\x33\x63\x6d\x71\xb8\x54\x78\xe1\xbb\x95\xde\x32\x45\xd6\x86\x86\x0d\x05\x78\x5b\xd9\xdf\x8b\x40\x0d\x22\x77\xf8\x77\x38\x9c\xf3\xd9\x8c\xbc\x1c\x50\x89\xb7\xed\xf9\x37\x37\xa9\xed\xf9\x77\x11\xb1\x2d\x9e\xfd\x66\xcf\xbf\xbb\xf1\xb8\xe8\x8a\x7b\x81\x07\xa1\x4b\x31\x70\xd0\xcd\x69\xff\xc0\x3f\xfa\x79\x41\x14\x60\x22\xff\x86\x00\xbe\x5a\xdc\xfc\x46\x95\x09\xd1\xf8\xdd\x42\x59\xee\xcd\xef\xeb\x5e\x23\x04\xff\xdd\x42\x59\xc1\x84\x98\xdf\x2d\x77\x95\x2a\x52\xe2\x5d\xa8\x92\xc8\xb7\xef\x05\x04\xa2\xf4\xb5\x29\x87\x80\xdb\x02\x59\xa9\x02\x7d\x4b\x64\x39\x8d\x6f\xa5\xbb\x77\x4b\x6b\x65\x7a\x0c\xb6\xb0\x56\x46\x8c\xf8\xec\xbf\x17\xff\xbe\xb1\xab\xc3\xf6\x31\x86\x6d\xa5\x90\x67\xec\x58\x0b\xd9\x12\x6b\x58\x2a\xe2\x3b\xde\x06\xe5\x8c\x77\xec\xe5\x2d\x67\x85\xc7\x6e\x09\xca\xb1\x97\x17\xa0\xc7\x5f\x17\x74\x4e\xb7\x03\xec\xfc\x1d\xeb\xc7\x57\x0f\x7a\x36\xf6\xea\xd6\x61\x5b\x25\x3e\xbf\xdf\xe7\xfb\x10\x65\xf5\xd5\xc5\xf3\xf3\xe3\xab\x67\xb8\xf2\xbb\xc5\xb8\x2c\x83\x7a\xe7\xd6\x67\xa3\xed\x4c\xa0\x35\xdf\xcf\x8d\x5e\x4d\x1a\xb6\xa5\xa6\x9c\x1d\x77\x56\x9c\xad\xb6\x45\x82\x43\xa1\x79\xb1\x9f\xf6\x65\x3f\x7b\xfe\x2a\x1d\xef\xdc\xf4\x29\x50\x70\xe2\x6c\x8b\xfe\xb7\x02\x12\x28\xb8\x25\xac\x5e\xa4\x67\x5b\x23\xeb\xb1\xcd\x5b\x23\xcb\xcb\x23\x87\x8f\x62\x7a\x74\x35\xc2\xfa\xfd\xd2\xac\xc5\xf7\x2b\xfd\xf8\xea\xdd\xf9\xe0\x91\x0c\x3a\x8a\x4b\xb2\x4a\x63\x30\xf2\x68\x38\x7b\x17\xf0\xf7\x28\x6e\x11\xac\xa4\xe5\xdf\xc7\x8f\xaf\xae\x31\xe4\xdd\x02\x58\x1f\xa2\x2f\x0e\x8c\x2a\xcd\x5b\x7b\xfe\x8a\x0f\xef\x96\xc5\xf2\x8c\x3e\xf7\xf1\xc6\x21\x97\xdf\x75\xc3\xeb\xd8\xbb\x2d\xa3\xe5\xe2\xfe\x6e\x11\x2d\x37\xf9\xcc\x16\xd1\xf2\x92\x4c\xe8\xec\x48\xa2\xf2\x56\x2a\xcb\xb4\xf1\x96\xdd\x4a\x30\xb8\x2d\xba\x95\x2a\xd3\xd9\x4a\x78\x59\x1e\x03\xa4\x38\x8d\x45\xef\x67\xfc\x2a\x9b\xbc\x5b\xa0\x2b\xd3\x0d\xde\xf2\x5c\x69\xd2\x92\x2d\xce\x8d\x24\xb2\x6e\x69\x6e\x24\x69\xe4\x47\x0d\xcd\xb6\x5b\x25\xee\x4a\x04\x5b\x94\x2b\x55\x24\xf8\xbc\xd0\x21\xfa\xc1\x0f\x53\x45\xb2\x2d\xe1\x8d\x24\x42\xa3\xe1\x26\x64\xcf\x17\xf9\xae\xc8\x20\xce\x0a\xa2\x33\x9f\x73\xcf\xbf\x45\x5b\xce\xb7\xf4\x6f\x8b\x80\xb9\xb9\xde\x13\x04\x72\x53\x4f\xbd\xb5\x3e\xef\x03\x10\x82\xc7\x89\x75\x5c\x84\x3e\x23\xb2\x83\xe7\x1b\x3d\xd8\x67\x94\x59\x64\xe4\x17\x71\x51\xa9\xea\xd5\x20\x2f\x6f\xd9\xd2\x62\x39\x64\xa6\x5b\x58\x1c\x35\xbe\xd1\x87\xc2\x9c\xd1\xad\x6b\xf6\xfb\x0d\x67\xc5\xe3\x17\x45\xa7\x28\x92\xbd\xf8\x8b\xba\x18\xa4\xaa\x2d\xf6\xa1\x69\x57\xb9\xf2\x96\x33\x47\x95\xf8\x6f\x31\xb3\x84\xe4\x84\xc9\x64\x49\x18\xb7\xc4\x99\xb5\x93\xbd\x37\x8c\x40\xac\xb9\x0b\xa2\x5d\xff\x86\x9e\x15\x2d\xee\x7b\xec\x72\x6c\x49\x6d\x96\x8d\xa5\x05\x43\x3b\x7e\xee\x82\xa1\x1d\x76\x57\x30\x94\xf7\xee\x5f\xb1\x91\xc5\xc7\x5a\xca\x87\xdf\x60\x83\xda\x0a\x50\x39\xb6\x0c\x33\x61\xa7\x05\x13\xf9\x56\xc6\x7c\xc1\xe6\xb9\x15\x8a\x82\xc1\x7c\xeb\xbf\x9d\x97\x4b\xa5\xb7\xf2\x72\xdb\x2f\x7d\x85\x0d\x6a\x13\x87\x62\xb4\x9e\xd4\xaa\x1c\x2f\xd4\x81\x7e\x5f\x26\xc8\x3c\x30\x19\x75\x4c\x25\x25\xef\xc1\x67\xda\xc4\xa7\xe4\x2d\x8c\x4c\x78\x79\xc1\x14\x38\x89\xd2\x29\xd8\x02\x27\xc1\x6b\x25\x33\x3f\x42\x76\x0a\x4e\xfb\x89\x20\x56\xf2\x16\x46\x26\xc1\x70\x25\x6f\x61\x64\xf4\x7c\xf0\xfc\xd9\x7f\x6f\xf6\x73\xf2\xcd\xe2\xf9\xe2\xd9\xb6\x98\x23\x8b\x7f\x7f\xf8\x7b\xe7\xf9\xe5\x99\x7e\x2a\xf3\x6c\x3e\xab\x3e\x33\xff\x2d\x8b\x4c\xc2\xed\x0a\x26\xc9\x89\xbb\xa3\xe4\xf0\x17\x2c\x5e\x1a\x16\x8d\xc5\x24\xa0\x7a\x47\x1d\xbe\xec\x1f\x52\xf7\x99\x9e\x00\x51\x5e\xf4\xd4\x59\xcd\x02\x12\x8d\x19\xa1\x7a\x1e\x55\xd0\x2d\x40\xd1\x7d\x1e\xfe\x60\x0b\x60\xc1\xe6\xe2\xb9\x9d\xc8\x1a\x25\x6f\xc2\x97\x8e\x3a\x59\x28\x36\xc5\xa3\x4e\xbf\xba\x6c\x0e\x38\x36\xed\x9b\x25\xf9\x15\xe0\x88\x99\xbf\xce\x9c\x1f\xb0\x28\x1e\xd5\x5f\x50\x50\x8f\xba\x98\xfb\xa6\x54\x13\x83\x62\xc9\x1f\xa1\xcf\x6e\x7d\x80\x7e\xb3\x35\xd0\xef\xcc\x0a\x4a\x45\x04\x66\xc9\x1f\x86\xeb\xb6\x05\xfa\x1c\x00\x3c\xc6\x93\x30\xce\x92\x5f\x24\x44\x71\x17\x0f\xea\x3c\xaa\xcf\x38\x37\x40\x01\xbd\xa8\x09\xef\x64\xc1\x8f\x3a\xa1\xcd\xa5\x10\xb0\x98\xe6\x96\x9c\x8b\xc6\xd7\x34\xc1\xdc\x42\xc0\x62\xc2\x4f\x5a\x0a\xd6\xf6\x34\xb7\x9c\x58\x74\xbe\xa6\x39\xed\xf9\xf4\xc5\x9e\x2f\x5f\x1c\xff\xc6\xce\xbf\x27\x5c\x12\x5e\x04\x3f\x4a\x8d\x79\x31\x48\xe2\x78\x81\x6a\x25\x39\xfa\xf2\x23\x7c\x0a\xe0\x5a\xd1\xee\x8e\x4e\x5b\x4a\xd2\xa6\x46\xeb\x8c\x35\x0c\x04\x2b\xd9\xd5\xb2\x28\x1c\xb9\x69\x1d\x2c\x0a\xe3\x4c\x5a\x9c\xf3\xb2\x75\x8f\xd1\x1c\x62\xeb\x1e\xa3\xb1\x49\x78\x6f\xe7\x01\x40\x0b\xce\x9c\xe6\x68\x5b\xaf\x48\x69\x25\x16\x51\x40\x5b\xce\x0b\xae\xdb\xa4\x90\xbe\x49\xf7\xc6\x90\xcc\x70\xc5\x11\xe8\xa9\xb0\x22\xa4\xfa\x52\x50\x0f\xd2\x2a\xdf\x49\x6e\x05\xa7\xef\x3c\x38\x73\x85\xb8\xbf\xb4\x0a\xeb\xe2\xc0\x1e\xd5\x71\x2e\x27\xe0\x57\x4e\xb3\xb0\x3d\xc4\xf3\xa5\x05\x4d\x2c\x9c\xc7\xa3\xfa\x8c\x8d\x8f\x33\x5b\xaa\xb3\x11\x5e\x5b\xd8\x1f\x6d\xfa\xd1\x87\xf9\xb3\xc8\xca\x0e\xba\x9b\x5b\xa8\x9f\x68\x88\xa5\xec\xf3\x3b\xda\xa2\x6d\x13\x10\xf6\x4a\x10\x50\x5a\x20\x7b\x69\xee\x82\x5b\xd5\x18\x1b\xfa\x52\x90\x2e\x13\x4e\xf7\x52\x06\x5e\x31\x0e\x64\xd9\x12\xdf\xe8\xf1\x0c\xd9\xce\xc0\x71\xe8\x13\xf1\xfb\x97\x45\xd0\x11\xa1\x1f\x09\x1f\x78\xc1\x85\x3d\x0f\x57\xbd\x44\x2b\x00\xb5\x18\x39\xfb\x0d\x58\x25\xcc\x96\x88\xdb\x6d\xc0\xe1\x12\x3f\x3f\x74\x04\xb9\xc4\x6b\x30\xba\x88\xa4\x6d\xdc\x59\x7c\x20\x48\xd3\xbf\x43\x77\x84\xd2\xe9\x24\x68\x7b\x82\x2e\x19\x48\x9e\xb6\xf5\x1b\x9d\x8e\xb4\x85\x65\x2b\x50\x97\x02\x9f\x46\x70\x2e\xe5\x82\x66\x41\x80\xf0\x98\xcf\xc3\xcd\xbd\xa0\x14\x1e\xbd\x0b\x10\x25\x26\x74\x63\x00\x2e\xb4\xbd\x3d\x9f\x00\xbe\x1e\x4a\xef\xa0\x73\x35\x56\xb9\x30\xef\xca\xd1\x1f\xb8\x0f\x4a\x35\xc2\x61\xa5\x83\x97\xcb\x5f\x3a\x2f\x0f\x51\xd5\x89\x17\xe2\x9f\xaa\x28\x58\x89\x7f\x1a\x79\x4b\xd6\xa5\xce\x90\xee\xe9\x0d\x91\x75\x60\x97\x28\x95\x20\xf0\x4e\xec\x63\xa9\x18\xbe\x06\x8e\xcc\x52\x11\x5e\x66\x81\xaa\x54\x42\x56\x06\xf6\x8b\x52\x0d\x1d\x41\x36\x29\x2d\x69\x46\x62\xa7\x1a\xca\xb1\x26\x98\xd2\x08\x86\x1c\x44\x6c\x96\x86\x19\x7a\x10\x00\x57\x9a\x32\x24\xd1\xce\xa5\x61\x09\x1c\xd8\x86\x4a\xdb\x12\xd0\x7e\xd9\xe3\x34\x40\x35\x0a\x1b\xdf\x6e\x5c\xb7\x47\xe7\x97\x17\xe5\x99\x10\xe7\x82\x79\x7f\x6b\xd2\x7b\x71\x1d\x27\xfe\x4a\x5b\xb6\x2a\xbd\xd2\x01\x81\x13\xa5\x13\x56\x34\xea\x96\x14\x4b\xc7\x12\x3a\x2a\xe3\x74\xe4\xed\x81\xc8\x53\x3a\xc6\xb7\x21\x77\x19\x58\xd8\x47\xe3\x80\x0f\x2c\xec\xa3\x6d\x9d\xa4\x8c\xd1\x7c\xd9\x73\x1b\x53\x23\x1b\xc7\x6c\x00\xb7\xd1\x7c\x79\x30\x3f\x12\x23\x5f\xc6\xc3\x4a\x1b\x02\xce\x70\x09\x8d\xe9\x8c\xf7\xf6\x65\xf7\x36\xb1\x9b\x8d\xb6\xd5\xec\x32\xb1\x91\xc4\x31\x9f\x45\xd9\x1b\x9e\x38\xab\x9f\x41\x22\x67\x73\x6e\xcc\x7a\x76\x67\x00\x21\x9d\x1f\x62\xb6\x11\x96\xcb\xc4\x68\xba\xb0\x22\x94\xf9\x7e\x7e\x35\x00\x97\x05\x7d\xd7\x01\x5b\x16\xf6\xf3\xd1\xf3\x77\x5e\xd7\xb2\x08\x8a\x1b\x1d\x4a\xb5\x3e\x84\x89\x12\xf7\x50\x16\xf2\xf4\xe1\xca\x3f\xed\xf2\x65\x83\xfb\x23\x2a\x8c\xc4\x2f\xe8\xac\x03\x83\x50\xf9\x4c\x22\x1e\x15\x8c\x3e\x97\xbd\x41\x33\x3e\xc6\xa5\x10\xda\x53\x3e\x58\x3e\x07\x6e\xad\xf2\xc1\xf2\x39\x70\x44\x96\xcf\xc3\xc4\x31\x0b\x95\xcf\x5b\x44\xd3\x0d\x93\xf3\x70\x50\x16\xab\x7f\x60\xe0\xf5\x2d\x27\x61\x1b\x03\xd7\x67\x39\x09\xd1\x68\xd8\xc2\xca\x49\x2c\xe0\x20\xac\xae\x9c\xc3\x71\x10\xfe\x4e\xac\xf8\x83\xe0\xd3\x72\x72\xb8\x34\x80\x96\x73\xda\x06\x62\x72\x62\xfe\x1e\xc4\xc8\x95\x13\xa7\x5b\xf7\x10\x9f\xd8\x8b\xfb\x82\x3c\x9c\x97\x6d\x38\x1b\xe7\xcb\xb6\x7a\x9e\xce\x97\x28\x5c\x25\xc2\x8b\xe0\x88\xbe\x90\x75\x2e\x1c\x19\x03\xc5\xb3\x5c\xf4\x36\x16\x40\xbc\x30\x12\x0f\x99\xdf\x4d\xcc\xcb\xc0\x7d\x53\x6e\x04\xec\xb1\xfa\x1e\xe7\x2e\xe2\x05\x70\xbb\x2b\x34\x1c\xf1\xe5\x26\xf2\x72\x2c\x50\xe9\x46\x0a\x9b\x07\x02\xfa\x8d\x1f\x30\x28\xf4\x7d\x85\x31\x7e\x43\xea\xde\x04\x2e\x4d\x34\x9a\xf2\x70\x1e\x83\xdb\x3f\xc5\x49\x33\xe6\x63\x64\xbb\x12\xfe\xd3\xed\x0d\x19\xeb\x21\xa8\x73\x62\x4f\x28\x0f\x74\x6c\xa2\x67\x15\x5d\x29\xf3\x80\x56\x3c\x06\x1d\x12\x3d\x55\x70\x73\xa4\x79\x70\x6c\x1f\x63\x6a\x09\xa5\x2a\xd8\x9d\xd2\x14\xf7\xb4\x90\xf4\x05\x1d\xc3\x14\x92\x26\x61\x68\x05\xfb\x47\x0a\x59\x1a\xbd\x33\x85\xf8\x87\x82\x99\xaa\xb2\x9d\x4a\xd6\x4c\x2c\xe1\xbd\x6d\xc3\xb1\x7d\xef\x80\x41\xfd\xcd\x6f\xeb\x51\xfc\x6c\x0b\x99\xf5\x20\x60\x76\xa2\xe7\xd7\xc3\x50\x65\x22\xe5\x6b\xdc\x55\xa9\x7b\xd0\x6a\x50\xcc\xc4\xb4\x51\x0d\xbb\x9f\xf8\xa6\x6a\xaa\x2f\x2f\x9b\x8a\x54\xc3\xca\xf5\x49\xd7\x74\xb2\x6c\x08\x7b\x4d\xa7\x9f\x8d\xbc\x5f\xf0\x8c\xce\xbc\x65\xc7\x9a\x9e\xc7\x17\x7a\x7b\xed\x60\xc3\xa0\x12\xb2\x91\x26\xf4\xbf\xe6\xc3\xcf\x36\x5a\x57\x83\x6e\x2b\x5e\xbc\x9a\x63\xd6\x5b\xca\xab\x46\x2f\x4e\xd4\xe3\x9a\x6f\x5f\x2a\x9f\xe1\x60\x98\xc4\x86\xd7\x02\x3f\x9b\x58\x17\x2b\xa2\x5a\x9a\xd0\xf2\x5a\x88\x80\x98\x65\x0b\xac\xb5\x38\x37\x42\x90\x6b\x01\xe1\x27\xf1\xc4\xb5\x22\xd7\x4e\xb6\xb1\x56\x6f\xd8\xc4\x2f\x10\xa8\x49\xdc\x57\xad\x9c\xd9\x49\x78\x5c\xad\x9c\xd9\x49\x2c\x6d\xad\xde\x25\x40\x5f\xab\x15\x7b\xe2\x38\xb6\x9a\x52\x2b\x51\xb6\xb3\xc6\xcb\xc7\x97\xbd\x59\x15\xce\x30\x6b\xa7\x03\x6c\x08\x13\xfa\x5f\xeb\xe9\x44\x17\xd3\x11\xc9\xeb\x66\x95\xb5\x39\xd1\xb6\x89\x4b\x6d\xc4\x33\xce\x96\x8f\x6f\xe8\x65\x6d\xc8\xbb\x15\xff\x61\x6d\xc2\xa4\x01\xe1\x36\x02\x81\xf7\xc4\x1b\x81\xaa\x83\x60\xb2\xda\x4e\x87\x62\x12\x8d\x19\xad\xe4\x67\x0f\xe8\x83\xf1\xb4\x36\x69\x1f\x96\x96\xda\xa1\x15\xb3\x03\xad\x9e\xb4\xad\x83\x7f\x1d\x01\x74\x62\xa5\xaf\xdd\xc0\x6a\x62\x75\x6b\xff\xf8\xcb\xa6\x3c\xb5\xc7\x9d\xb2\x4d\x49\x6b\xff\xd8\x1b\x28\x37\xd8\x95\xd9\x37\xdf\xa9\xc3\xbb\x42\xf8\x4d\xea\x00\x7d\xe6\x48\x7b\xa2\xc3\x9b\x5d\x04\x5e\x54\xf9\xdb\xc4\xb1\x5f\x67\x62\x23\x08\x6e\xab\xd3\x9b\x47\x44\xfa\xd7\xa9\x4d\x1c\x45\xba\xce\x0a\xec\x71\x75\xd4\x89\x98\x32\x31\x92\xd6\x85\x29\x68\xa0\x23\xd5\xf5\x80\x17\xe8\x1f\x75\xc1\xd2\xe6\xda\xa2\x40\xfd\xa0\x56\x4d\x14\x8d\xfa\xc1\xd7\x3b\xa1\xbe\xf5\x83\x9c\x33\x91\xc8\xeb\x89\xe8\x5f\xb8\xad\x54\x4f\xac\x08\x13\x07\x73\x3d\x47\xc0\x7a\x77\x70\x22\x0c\x4e\xdc\x92\xf5\xbc\x1c\x87\x53\x73\xde\xf1\xcb\x9e\xdb\xf9\x28\x69\x6d\x21\xb3\x5e\x32\x55\x94\xfe\x7a\x65\x76\x01\x2f\x7e\xbd\x18\x74\xa1\x7e\xd7\xeb\xd2\x56\xc8\xb1\xbb\x08\xad\x5c\x07\x2b\xbd\x9e\xe4\x67\xfb\xe5\xe6\xdc\x2e\x7c\x94\xf5\x86\x76\x2d\x6c\x69\xf5\xf9\xbb\xa7\xad\x3e\x07\xfe\xc2\x78\x56\xd2\x63\x9d\xcf\x81\x75\x75\xd8\x00\x83\x52\xf3\xef\x78\xca\x92\x0d\x16\xf6\x6b\xff\x8e\xe5\x74\x6b\x66\xf5\x31\x8c\xb7\xfa\x8d\x44\x2f\x5e\xee\x1f\x5f\xa5\x71\x42\x9f\x03\xdb\xf5\xd6\x4f\xeb\x03\xfe\x0d\x09\xdb\x83\xaf\x0c\x8b\x42\x7d\x60\x48\xf8\xd3\xea\x93\x62\x7a\xb4\x46\x70\xab\x50\xa8\x67\x2b\xa1\x95\x28\xc0\xfa\x70\x01\xae\x17\x9f\x07\x0e\x32\x3b\xc2\xa1\x03\x1a\x3f\x09\x7b\xe3\xb2\xed\xc3\x72\xfc\x06\xcf\x79\x06\x37\x9e\xbc\x01\xb3\x5c\x5b\xd6\x0a\x4e\xa7\x79\xfe\x74\x4d\xd6\x07\x2c\x19\x04\xd2\xd4\x07\xd7\xd6\xc1\x71\x7f\xa0\x65\x35\x03\xfb\x07\x09\x5c\x47\x76\x7d\xb2\xc6\x63\xa0\x81\x34\x3e\x88\x3a\xa9\xcf\x66\xb0\xf5\x70\x52\x28\xa4\x5c\x7c\xaa\x4f\xd9\x42\x4e\x3a\xdc\x08\xdc\x55\xf8\x42\xeb\x53\x94\xf2\x05\x20\x08\x82\xc9\xb2\x3e\x9b\xb3\xe4\x25\x90\xb9\x5d\x86\x46\x56\x9f\x82\x0d\x7e\xf9\xf7\x37\x1c\xa9\xbf\xad\x4f\xd5\xc1\xca\x68\xb8\x9c\x90\xdb\xeb\xc3\xf1\xaa\x84\x5a\xd6\x87\x28\xb4\x5e\x59\x50\x15\x4f\x8b\x2f\x53\x91\x95\x6e\x2b\x2e\x52\x91\x60\x2b\x9c\x85\x08\x8d\xfa\x54\x8f\x06\xd3\xab\x44\x02\x38\x6d\x22\x4c\x47\xae\xe9\x3b\x4a\xf8\xb4\xf6\xe3\xab\x57\xe1\xd6\x84\x02\x3d\x73\xb5\xab\x41\x43\x9e\xcd\x45\x6b\x12\x97\xb9\xd8\x55\x44\x1c\xee\x75\x19\x5e\x51\x1f\x64\xcb\xe4\xe9\x79\x5a\x08\xd2\x3c\x33\xc7\xe6\xdf\xb1\x24\x67\x46\xe8\x19\xd7\xa4\xcf\xc5\xc6\x34\xd8\x72\xc7\x7e\x01\x70\x5d\x54\xa8\x00\x6b\x80\x3b\x1c\xea\x67\x60\x24\x9f\x8c\xcd\xfd\x8c\x85\x15\xb0\x3e\x5e\xbc\x70\x52\x44\xb0\x54\xec\xf0\xf5\xe1\x12\x46\xf7\xa8\xce\xcc\x92\x00\xd6\xfc\xd5\x8f\x5d\x9f\xd9\xc1\x4e\xff\x8e\x29\x1d\x0a\x40\x88\x48\x1e\x62\xd1\x96\x7e\x6a\x72\xfb\xe6\x89\x03\xde\xe7\xeb\xa7\x0f\xbc\x3e\xc8\x9f\x35\x36\x9c\x28\x92\xe4\x33\x4c\x2e\x7b\x5e\xd0\x00\x97\xdb\xad\xa3\x42\x94\x5d\x5a\x63\xe8\xd4\x58\x11\xec\xb8\x95\x58\x91\x9c\x0e\xf7\x78\xeb\xe9\xf5\xe7\xf3\xe2\x19\xc0\xe0\x9e\x38\xa0\xca\x0f\x36\xba\x04\x55\x7f\x64\x66\xb8\xe6\xea\xb3\x99\x8c\xe1\x10\xf5\xf9\x00\x0b\x91\x08\x51\x59\xba\xfb\x7c\x9c\x86\xdf\x77\xfc\xdd\x4c\x09\x4d\xb1\x4f\x60\xba\x35\x99\x72\x0c\x06\xc6\x65\xb0\x86\x7d\xbe\xce\x94\x97\xcd\x28\x6a\x12\x97\x36\x5f\xaf\x72\xc7\x67\x8b\xe2\x95\xc8\x8d\x1a\x91\x1f\x81\xe2\xe7\xe7\x67\xd4\x40\x7d\xce\xf3\xd7\xb0\x9d\x6a\x48\xc8\x50\x36\x7b\xb6\x1c\x9c\x8b\xe3\x6d\x6d\x2f\x37\x01\x70\xb9\x1e\x5a\x2b\x92\x07\xbc\x37\x81\xaf\x04\xa7\x56\x02\x42\x6a\x4a\xfe\x7d\xe0\x94\xb6\xf1\xb4\x81\xad\xb1\xe5\x77\x1b\x9c\xc6\xb6\xf0\x7c\xd3\x98\x29\x5d\x6c\xae\x58\xb5\x95\xd6\xd2\xc4\x62\x62\x85\x6b\x91\xa0\x6f\x99\x25\x27\x49\x04\xf7\xd6\x02\xac\x5b\x84\xcb\x5c\xc0\xa8\xc4\x8e\x54\x62\x53\x2b\xa1\x23\xa5\x65\x3b\x5a\xb8\xda\x98\x90\xaa\x38\xd1\x92\xf5\xe1\xca\x5a\x8a\x9d\xde\xf2\x5f\x17\x48\x37\x33\xca\x7e\xf3\xf2\xcc\x27\x4f\xcc\x88\x1f\x1e\x23\x41\x58\xce\xd6\x8e\x77\x47\x6c\xc4\x53\x88\x48\x60\x7a\xcf\x06\xd8\xe1\x9e\x20\xe4\xa4\xce\x08\x8f\x27\x34\x3e\x3a\x9d\x13\x13\x7f\x80\x4c\xb6\x5b\xc2\x5c\xaa\xcf\x81\x0f\x34\x57\xb7\x42\x0a\x79\x5e\x29\x55\xe3\xab\x37\x43\xc4\x99\x20\xb2\xf2\x4a\xa2\xdc\xdb\xfc\x8a\x75\xbc\x5d\x71\x8b\x67\x81\x56\xbf\xa5\x73\xef\xa6\xa0\x19\x69\xe9\x79\x2f\xd6\x6e\x67\x1e\x54\x91\xf3\x7d\x9c\x25\x70\x7f\xa5\x1d\xa0\x2a\x41\x34\xb3\xc0\xb5\x08\xa2\x49\xf8\xf3\x2a\x41\x34\xbb\xc5\xe4\x05\x13\x67\xfc\x10\x20\x5a\xbc\x2c\x66\xe9\x0f\x18\x9e\xc0\x29\x22\x5f\xf6\x10\x76\x1b\x0c\xdd\xaf\xb0\x10\xc0\xdc\xdf\x9f\xf7\xd8\x79\x06\xc3\x10\xec\x89\x7d\x29\x04\x75\x55\x62\x5f\x52\x07\x2f\x88\x7d\xc9\x89\x2b\x22\xf5\x4d\xcd\x21\xe8\x35\x69\xcd\x6a\x36\x97\x98\x2c\xdb\x04\x05\x65\x90\x64\xe8\x17\x0b\xdf\x22\x7e\xc5\xc3\x50\x09\x74\x29\xd8\x74\x2a\x41\x26\xbb\x01\xeb\xc8\xb2\x21\x4e\x19\xe1\x24\x85\x3b\xc1\x95\x70\x92\x8a\xbd\xa1\x1a\x4e\xb2\x70\xa5\x54\x62\x48\xf6\xe0\x7e\x85\x8f\x13\x12\xf7\x06\x5b\x76\x70\xd9\x32\x47\x88\x28\x92\x3d\x77\x66\xc8\x1d\xf0\xe6\xe0\x58\x82\x8b\xe0\x29\x1f\xce\x96\x7f\x0f\xe0\xfa\x42\x18\x86\xb0\xc5\x10\x8c\x3d\xac\x1a\x46\x32\x08\x69\xad\xc6\x8e\x24\x65\x05\x02\x46\xf6\x0b\x4d\x60\xdf\x07\xe8\x47\x64\x48\x5e\x20\x0c\x91\x21\x35\x20\x02\xc3\xee\xca\xc6\x86\x86\xd4\x02\x7d\x21\xee\x23\xa1\xb8\x56\xe2\x3e\xca\x31\x6c\x81\x57\x02\x3c\x24\xee\x23\x7b\x04\x23\xee\xc3\x5d\x6a\x31\x0d\x1a\x37\xce\xa6\xa0\x6d\x4a\x11\x90\xb9\x88\xfc\xa8\xf6\xc4\x55\x06\x88\x10\x1a\x78\x25\x52\xaf\x12\xf9\xb1\x97\x6a\x4f\x0b\x21\xd1\x1f\xe0\x67\x08\x1a\x84\x7e\x54\xee\xc7\xd5\x57\x8e\x5e\x1d\xcd\x73\xed\x60\x9b\xbe\xb4\xee\x60\xd8\x15\x86\x1d\xf5\x20\x30\xf4\x14\x2c\x1d\xba\xf5\x6a\xcc\x20\x62\xae\x12\xb5\x51\x15\xe7\x89\xda\xd8\xed\x81\x47\x37\xd6\x04\xa6\x41\x08\x46\x4e\x4a\x1d\xc4\x60\x54\x65\x5d\x62\x30\xaa\x22\x3b\x31\x18\xfb\x23\x9a\x63\xc3\x52\x1d\xc6\xc0\x50\x9a\x9b\x37\x20\xf5\x88\xae\xc4\x54\xec\x06\xbe\x28\xbf\x64\xbb\x65\xe5\xc5\xd6\x1c\x45\x44\x13\xa3\x27\xb4\x20\x10\x31\xb1\x5b\xb3\xf4\xa9\xd8\xec\x6e\x60\x1e\x69\xc8\x19\xc4\x4c\xa4\x85\xdf\xaf\x1a\x34\x31\xb2\xd0\x9a\xcc\x04\xbd\x8a\x48\x89\x8a\xdd\xa6\x1a\x29\x91\x14\x29\x08\x95\x08\x0d\x9d\x50\x89\xca\x4d\x91\x4a\xa8\xc4\xfe\x88\x35\x4d\x03\xff\xbe\xf3\x08\x57\x02\x29\x76\x2b\x67\x06\x18\xd1\x43\x88\xa4\xd8\x3f\xb0\x0d\x5b\x2a\xa9\xea\x37\x84\x52\x4c\xa2\x8b\x2a\xa1\x14\xfb\x23\x5f\xf0\x28\xbb\x55\xcb\x95\xb0\x76\xfc\x88\x55\x61\x98\x00\x8a\xaa\x5e\x4c\x00\xc5\x6e\x6d\xb7\x2c\x4b\x44\xc1\xad\xd0\xa5\x8d\xcb\xc3\xe1\xb3\x74\x44\x32\x46\xd8\x44\x4a\x9e\x7e\x5d\xc4\x92\x34\x14\xe4\xe2\x59\xfe\x9c\xe0\x22\x2b\x42\x16\x19\x36\x46\x16\x69\x70\x15\xc2\x17\xd2\x92\x84\x9d\xb1\x69\x34\xde\xda\x6c\x6e\x12\x24\xe2\x11\x96\x64\xf9\x54\xa9\xb3\xf5\xe9\x22\xdc\x03\xd4\xfe\x4a\x26\x8b\xfa\x9e\x08\xdc\x3e\xab\x96\x0a\xe5\x8b\x53\x0a\xff\x25\xac\x20\xc5\xaa\xaf\x40\x05\x3f\xea\x76\xcb\x80\xd7\xf4\x05\x30\x13\xb7\xaf\xed\xc6\x60\x82\x22\x3d\xbb\xe4\xb3\x4e\xf1\x12\x19\x3c\xfd\x17\xce\x57\x8f\x8d\xe2\x88\x87\xe0\x92\x83\xc9\x77\x6e\x8e\x8d\xd0\xb9\xd9\x6e\x17\x7e\x07\x44\x18\xfb\xd6\xd8\x24\x52\xdc\x88\x4b\xd2\x49\xae\xd4\x4f\x09\xdd\xcd\x16\x4b\x7c\x6f\x68\x87\xa8\x7e\x73\x82\x64\x02\xb7\xf3\xf3\x68\x6d\xd9\xa4\x74\x89\x87\x02\x89\x9b\xb7\x05\x92\xd1\xdd\x98\x07\x01\xce\xc6\xca\x23\x4a\x30\xef\x96\x47\xca\x88\x06\xf2\x2f\x61\xf3\x10\x62\xe3\xd0\x0f\xbd\x0a\xd9\x57\xc4\x46\x06\x79\x11\x2f\xca\x70\xe2\xaf\x4b\x45\x5a\x7d\x5f\x34\x32\xcf\xc2\x16\x2f\x4a\x5d\x36\x07\xb3\xbb\x0d\x26\xc1\xd5\x4c\x4a\x33\x7d\x7c\x1f\xab\x03\xe3\x43\x82\x90\x7e\xbe\x80\x5f\xf4\x7a\xb9\x8e\xb6\x85\xa4\xe6\xad\xc8\x03\xc5\xb5\x11\x9a\xb1\xf1\xab\xf0\x82\xf6\xd1\xfc\xc1\xb1\x27\xcf\xc3\x31\x2a\x2f\xa8\x1f\x5b\x5a\x6b\x07\x06\x01\x85\xfa\x76\x1c\xb2\x61\x7f\x50\x80\x68\xb6\xd8\x30\x87\x18\xb6\x03\x01\xa2\x13\x33\xd7\x8e\x2d\x41\x34\x14\xf9\xc6\xad\xcc\x3d\x75\x06\x4f\x20\xc5\x46\xaf\x46\xc0\x48\x89\x49\x25\x45\xe8\xcd\xb2\x1a\x97\x33\x2b\x81\x05\x8d\x2b\x99\x69\x75\x7b\x8a\xd9\xfa\x83\x9c\x70\x32\x11\x25\x8b\x6e\x6b\xb1\xc5\xbf\xcb\x9e\x37\x6f\x6a\xde\xd9\x1c\xd9\x05\xa6\xdb\xbe\x9c\x09\x2e\xd5\x69\xbf\xf0\xcb\xf4\x9d\x79\xaf\x1d\xd9\xa5\xd0\x1b\xfe\xef\xe2\x5c\x88\xbc\x25\xc9\x53\x3b\x88\xbc\x5d\x0d\x28\x66\xf7\x00\xb8\x67\xa5\x4b\x60\x95\xa5\x6c\x85\xc9\x67\xd0\x3e\x1a\xc0\xc2\xe2\x23\x17\x65\xa7\x27\x61\xc7\xfe\x5d\xc9\xc9\x81\x37\xfb\x3c\x04\xa1\xbe\xc2\xe2\x0e\x94\x40\x56\x86\x56\xf6\x49\x0e\xf7\xd3\xc9\xc4\xb3\x81\xa6\xb6\x08\xb8\x01\x11\x22\x4c\x8a\x1b\x8b\x45\xb1\x0f\xf1\xad\xba\x6a\x36\xb0\xa2\x72\x75\x9f\x63\x08\xba\xaa\x48\x0a\x93\x99\x2b\xc9\x0c\x76\xa3\xb2\xd2\xc1\xcc\xab\xf7\xf9\xfc\xbb\x98\x57\x1c\x2e\xb0\xcd\xe1\x14\xa3\x86\xbf\x40\x17\x13\x13\x6c\x50\x1d\xff\xde\x02\x91\xe8\xb7\x01\x72\x37\x1c\xbb\x03\xe6\xee\x76\xb4\x00\xb9\x2d\xa4\xbd\xae\x55\x31\x65\x30\xde\x16\x4d\xca\x11\xad\x5f\x27\xc2\x47\x5d\x78\x16\xd6\x44\xcc\xe9\x8a\xad\xe9\x31\x3a\xed\xbb\x16\x5b\x66\xd2\xd5\xb0\x8b\x2f\xe2\x71\x01\xec\x5d\xf9\xa0\xd8\x84\xed\x1c\xf6\x25\x86\x16\x40\x3a\xdc\x03\x5a\x84\x3c\x52\x01\xd7\xf0\x52\xac\x1f\x11\xe7\x9d\x99\x30\xb2\xc9\x21\x4c\x86\x3e\x34\xc6\x0e\x5b\xa2\x5b\x3e\xdc\x03\x9f\xb9\xe5\x2b\x40\xa7\x00\xa5\xd3\x10\x47\x2a\xf8\xa2\x15\x63\xfa\x2c\x73\xa9\x74\x3b\x95\xfb\x9c\xf9\x74\x0b\x2b\x4b\x9a\xd0\x65\xb1\x67\x06\xeb\xb5\x63\x19\x87\x50\x0c\x41\x41\x52\xa2\x8d\xbe\xb1\x0e\xe5\x81\xc5\x5a\x97\xbc\x6d\xfa\x12\x10\x65\xf2\x0b\xde\x26\xd8\xb7\x40\x50\xaa\x24\x66\xb1\x9d\xd1\xe0\x74\x08\x7f\xb8\x6c\xcd\x4c\x42\x22\xe8\x7c\xf6\x71\x3f\xa5\x25\x9f\xd8\x4f\xa6\xf5\x51\x2f\x76\xf5\x1f\x2d\x51\x3e\xdf\xc8\xb9\x8c\x7e\xaa\x6a\xba\xde\x13\x23\x41\x3c\x73\x40\xa4\x31\x27\x04\x6e\xb2\xc0\x53\x5d\x84\xb1\x89\x51\xac\x4e\x2a\x44\x02\xe9\xf7\x29\x2e\x48\xd4\x74\x54\x1c\xac\xe3\x12\x6e\x1e\x10\x6d\x12\x1e\xb5\x4b\xcd\xd6\xe3\x7c\x29\x19\x3b\x78\xb8\xdd\x6d\xa1\xbe\x13\x4d\x84\x49\xfd\x9e\xf4\x11\x5a\x98\x63\x06\x9e\x4a\x77\x88\xd8\x42\x02\xd4\xdb\x81\x6d\xa2\x0f\xfb\xc6\xd2\xdd\x17\xe0\xba\x95\xf7\x3c\x4b\xb7\x53\x5b\xcc\xf3\x6e\x5c\x90\xb0\x05\xe7\x55\x8c\xbf\x31\xdb\xc6\x37\x5e\x37\x3e\xfc\x81\x88\x65\xb1\x5c\x8b\x84\x27\xe1\x56\xac\x13\xd1\x1e\xb7\x44\x82\x19\x6c\xdf\xbd\x7e\xd8\x13\xfb\x7d\xaa\x3f\x30\xc5\x07\x3c\x77\x4d\x3a\x37\x8a\x07\xe0\x21\x0c\x59\xe6\xf9\x68\xd7\x97\x40\x3f\xea\x62\xd5\xbe\x50\x64\x5c\xed\xc3\xb4\x62\x70\x51\xbe\xf2\x82\x81\xa2\x91\x00\xa1\x1d\xaf\x7a\xab\xc4\xc2\x8b\x35\xc3\xed\x7a\x45\x41\x01\xf1\x7a\x1a\xe8\xf8\x75\x8e\xec\xe3\xeb\x59\x74\xb7\x5f\xf8\xc6\xb2\x2b\x8f\xa2\x73\xc4\x3c\xd1\x85\xdc\x1b\x38\xbf\x9b\x7b\x8f\xbf\x6f\x31\xb1\xe9\xb3\xec\x64\xc4\x6b\xe6\xd7\x23\x9e\xaa\x99\x51\xaf\x93\x7e\xaa\x99\x51\x6f\x21\x0c\x35\x33\xea\x55\x94\xdd\x96\x34\x43\x2c\x7f\x90\x8d\x40\x08\x52\xc8\x01\x1c\x71\x52\xe0\x65\xf9\x4b\x82\xdd\x73\x45\xbe\x25\xbc\x01\x78\x37\x1a\x79\x00\x2a\x97\x19\x5b\x0a\xef\x8a\xdd\x26\x65\xc3\xc2\xb3\xc7\xc4\x75\xc0\xfa\xf3\xd6\xbb\x5a\x0a\xd6\xcf\x71\x27\xe7\xdd\x7e\x61\xee\x70\x78\x7c\x9d\x8d\xfc\x02\x95\x6b\x85\x2d\x65\xf1\x92\xcd\x25\x31\x5d\x21\xb3\x41\x33\xff\x5c\x92\xc1\x90\x72\x6e\xbf\xb0\xd8\x42\x40\x75\xf2\x07\x4f\x1c\x5c\x8c\x9c\x73\xfb\x2b\xda\x97\x88\xbb\xf1\x97\xc1\x88\xfe\x20\x06\xc1\xb2\xc9\x32\xb7\x9b\xb0\xc4\xe2\x4a\x1c\xe4\xe4\x99\x85\xe0\x06\xc0\xa5\xd8\x4c\x17\xc7\xf5\x9d\x96\x34\x24\xc8\x39\xcc\x18\x47\x86\x87\x66\xc2\x38\x32\x30\x35\xf3\xc5\x15\x67\x5e\xb9\xba\x21\xd0\x71\x09\x74\x8e\x01\x8e\xe9\x3c\xdc\x80\xaa\x54\xc5\xea\x2a\x9a\xd5\xf2\xd9\xc4\x21\x0e\xec\x5d\x2a\xfb\x41\x37\x72\x8f\x30\x41\xc8\x54\xf1\x6f\xef\xc9\xd1\x00\x1b\x44\x76\x5b\x5a\xa6\x31\x83\x35\xa1\x0f\xd3\x21\x35\x5c\xe5\x4a\x66\x33\xfb\x42\xc7\x67\xd7\x48\x06\xb7\x5f\xfc\x45\x8d\x66\xda\xfe\xc3\xc5\x2c\x9f\x2f\x6f\x4d\xf0\x1c\x67\x8e\x7e\xbb\x46\xc1\xc5\x4c\xba\xa3\xb3\xa4\xee\xc1\xfa\xce\xc4\xd7\xc8\xed\xe6\x9d\xb2\x66\x6a\xb7\x24\x3b\x24\xb5\x5b\x22\x7e\x7a\xbf\x00\x45\x88\x01\x29\xdc\xbc\x79\xd6\x4c\xe1\xb6\x38\xe5\x64\x70\xab\x87\x88\xdb\xb9\x79\xe6\x01\x1c\x92\x4a\xbe\x31\x62\xa6\xb8\x1d\x43\x89\x1e\x81\x24\x85\xed\x81\xd1\x48\xcc\x46\xc6\xac\x96\x0c\x5d\x41\x0e\x23\x2d\x5b\x41\x7d\x6b\xe6\x65\xfb\x79\xca\x86\xde\x7a\x77\x73\xe8\xe3\x65\x1e\x43\x45\x1e\xce\x94\x90\x02\x88\xbe\x6e\x69\xe6\x9f\x57\xe6\x5a\x9a\x31\x29\xba\x0a\x3b\x84\x67\x63\x02\x9c\x66\x0b\x73\x20\xf9\x11\x97\xf2\xb2\xbd\x42\x91\x10\x97\x12\xd7\x60\x47\xf1\xc0\x4e\x30\x29\xdb\x00\x7e\x17\x7f\x8f\x39\x39\x02\xd7\xf2\x32\xcf\x8b\x6b\x26\x30\xb2\x84\x6d\x01\x07\x74\x23\x13\x47\xe1\x86\x41\x23\x15\x47\xc5\xe3\xdc\xd2\xd2\xdb\x64\x5b\x03\xd1\x3c\x60\x98\x10\x82\xb6\x18\x63\x6c\x63\xec\x01\xcd\x83\x87\x3d\xa0\xa2\x09\xb6\x84\x33\x23\x17\x9f\x03\x1a\xb6\x00\x6f\x11\xb4\x13\x17\x29\x94\x94\xd3\xa7\xf3\x77\xc0\xc7\xe5\x09\x22\xcb\x5a\xda\x52\x44\x91\xe7\x24\xe2\xb5\x46\xf1\x6c\xe3\xcd\xc0\x37\xd9\x12\x92\x03\x8e\xdd\x46\x40\x48\x56\x78\x4f\x27\xb4\xd2\x6d\xc7\xb2\x30\x9d\xd1\x96\x22\xea\xe1\xe1\x39\x83\xc2\xd8\xf8\xe3\x0b\x53\x3a\xe5\xf6\xcd\xae\xb8\x05\x89\xe0\x91\x4e\x94\x21\xa1\x71\x7a\x72\x51\x6c\x48\xbc\xb7\x5f\x68\x7e\xa9\xc4\x7b\x76\xbd\x04\xeb\x61\xbf\x98\x95\xd4\x15\xfb\x43\x15\xc8\x57\xcc\xc4\x8f\x40\x08\x58\x6a\xba\xb4\xce\x89\xf0\xd7\x09\x59\x62\xee\x5b\x1e\x29\xcb\xd9\x7a\x99\xa1\xfb\x77\x65\x71\x69\x9d\x2e\xf4\xa0\x2d\x77\xcc\x90\x31\x74\x81\x28\x0e\x91\xba\x4f\x1b\x78\x33\x59\xdf\x8a\x63\x8b\x3d\x21\x7b\x52\x6f\x32\x37\xb8\xd8\x5b\x47\x16\x83\x1b\x8e\x18\xa7\xf0\x76\x74\x8f\xc8\x73\xfc\xbc\x25\xda\xd2\x16\x33\xca\x10\x05\x1f\x39\xb8\x68\xf4\xc4\x44\x98\xe2\x03\x48\x3c\x54\x08\x13\x4b\x02\xfe\x08\x11\x1b\x70\x6f\x55\x52\xf6\xe0\x46\x90\x96\x23\x56\x64\x19\xe8\x23\x47\x43\x3c\x4c\xaf\xd3\xe0\x23\x24\x09\x52\x29\xb5\xf4\x06\x3c\xd8\xd7\x37\x10\xd5\x17\x0d\xbb\xed\x7b\x82\xf7\xb6\x9f\x97\x5f\x5b\x7a\x0d\x6b\x63\x92\xaf\x4a\x8c\x4c\x0d\x1b\x46\x16\x01\x5e\x9c\xb7\xae\xea\xd5\xb4\x04\x4c\x5e\x8c\x05\x42\x1d\x0b\x06\xfe\xaf\x46\x42\x1a\x6f\xd4\x36\xd2\xd0\xe4\xc6\x37\xf9\xe0\x2c\x71\xe0\xcc\x49\xb3\xa4\x01\xe4\xa4\x29\xb8\xe1\x1a\xf1\x4d\x19\x37\x61\xcb\x26\xf6\x05\x77\xcc\x43\x43\x40\x43\x23\x0d\x4d\xc5\x9d\xd5\xb2\x57\x7c\x81\x1a\x69\x68\x12\x57\xac\x5a\x36\x3c\x01\x47\x5a\x33\x11\x4d\x25\xdf\x6c\xcb\x4a\x27\x28\x23\x99\x80\x79\x9c\x21\x2d\xeb\xe6\xc0\xd1\xd5\x32\xc1\x0a\x44\x12\xb7\x9c\xe4\x4a\xcb\x1f\x6e\xb6\x9b\x79\x64\x77\x03\x4e\x90\xb3\xee\x08\x7f\xe0\x4a\x68\xf2\xef\xdd\x95\x56\x5e\x90\x15\x9a\xcf\x81\xb5\x8d\x97\x85\x8f\x9a\x89\x60\x1a\xc0\xea\xdd\x72\x38\x4c\x84\x47\x76\xad\x3c\x17\x80\xec\xd0\x5c\xad\xcd\xae\xae\x04\x60\x99\x47\x31\xfc\xc2\x1f\xd8\x5e\x48\x39\x57\x58\x12\x69\xd3\x1a\x57\x58\x6a\x8e\xbf\xeb\x08\xb1\xad\x32\x81\xcf\x6a\xed\xa0\x46\xd6\xab\x01\x01\xe2\xee\x49\x15\xb1\x73\x18\x09\xe0\x41\xb9\x62\xf9\xcb\x3e\x47\xa2\x04\x86\xd0\x1a\x50\xfd\x61\xc3\x72\xb8\xe8\x0a\x1f\x40\xbe\xcf\x0a\x0b\x30\x55\x73\x5c\x0e\xfc\x69\x8d\x1c\x97\xa5\x0b\xca\x9f\x82\x03\x8b\x08\xc1\x61\xf9\x8b\x54\xd1\xfd\x6a\x66\xe8\x64\x0c\xe3\x6c\x25\x1a\x99\xac\x59\xea\xd0\xe4\xb8\xac\x59\x8c\x6d\x52\x48\xce\x84\x29\x2e\x57\x80\xb9\x07\xc7\x60\x8e\x46\xf5\xa1\x94\x12\x79\x97\xb5\x62\x91\xed\xb2\x14\xbb\x0a\x1b\x81\xe0\xc1\x7f\x91\xa3\x01\x3b\xdc\x1d\x22\x26\xe5\x8b\x42\xbc\x30\xec\x7a\xed\xf8\x81\x2b\xa4\xcd\x99\x0f\x58\xa3\x33\x1f\xa6\x15\xf6\x19\x34\x40\xda\x25\x5d\x65\xcd\xee\x30\x37\x48\x95\x20\xb2\xd2\x04\xce\x96\x46\xe6\xc9\x8a\x61\xb3\xe5\x01\xfc\xfd\x68\xaa\x83\x0a\xda\x19\x07\x89\x6e\x4d\x8d\x01\x71\x35\xd5\xe4\xc0\x53\xd6\xf2\x8c\xcd\xf7\xc5\x68\x3f\x9b\x4f\xc6\x60\x11\x13\x24\x17\x4f\x67\x6c\x92\x1f\x05\x7e\xf9\x8b\xb3\x62\xf7\x94\x02\x60\x31\xdc\x5a\xaa\x1a\x8b\x0c\x6f\xac\xa5\x7f\x17\xa9\xd2\xb8\xd3\x54\x35\x11\xe6\x90\x11\x20\xa5\x5c\x51\xca\x49\xf9\x89\x2b\x4a\x5e\xfc\x6f\xdc\x50\x9a\xc5\x43\xb0\x74\x02\x30\x7b\x84\x07\xd5\x0f\xae\x21\x55\x2e\x1d\xb4\x6c\x9c\x30\x37\x53\x1b\x89\x98\x76\xaf\xbe\xf4\x1f\x5f\x93\x1c\xd9\x2d\x7f\x86\x3f\x30\xfd\x0f\x77\xf0\x61\xfa\x5c\x5c\x2a\x1a\x02\xb2\x19\x01\xe1\xda\x5e\x4a\x6a\x2e\x97\xe4\x80\x49\xed\x21\x9f\x84\x26\x79\x20\xb0\x3b\xc4\x21\x55\x7a\x80\x8d\xe5\x53\x41\x1f\xb8\x9d\x88\x61\x92\x60\xcd\x0e\xaa\x18\xf9\x8c\xeb\x07\xfb\xf9\x3a\x98\xaa\xcf\x00\x5d\xd2\xcc\x65\xc7\x21\xba\x5c\xa2\xb9\x24\xee\xc2\x1c\x85\xd0\x93\xf5\x4a\x28\xf6\x93\x1f\xd3\xc0\x8b\x66\x7a\xcc\x8a\x57\xb7\x91\x1e\xb3\x10\xa3\xde\xcc\x8f\x39\x4a\xbc\xe8\xc0\x73\xf7\x09\x92\x90\x65\x67\x8c\x0f\x49\x5d\x24\x1b\x19\x71\xd8\xf1\x6d\x92\x01\x8f\x1c\x29\xd5\x92\x7c\xc5\x90\x09\x15\x8d\x8c\xf5\x21\x16\x7b\xab\xec\x4a\xea\x09\x9a\xc8\x52\x5e\xf3\x6d\x3a\xf7\x7b\x71\x99\xdb\xbf\x9f\x40\xc4\x8e\x2e\x7b\x05\x24\x37\x1c\xa0\x3a\x29\x08\x87\xd4\xf9\xc6\x80\xe9\xe6\x29\x46\x48\x2f\x23\x0c\xd0\x91\xb1\x56\x74\xc9\x11\xc6\x0a\x4d\x35\xf9\x11\x89\xe8\x48\xf1\x22\x7b\xd8\x1f\x04\xcd\x69\x83\x61\xd2\x12\x9e\xa7\x1f\x31\xd7\x47\x3f\xbc\x38\xfb\x88\xd8\xee\xd9\x13\x33\x67\x90\x57\x85\x5d\xe2\xa4\x81\x42\xcd\x3c\xeb\xe3\xf0\x30\xbe\x26\xbe\x60\x94\x37\xc0\xc9\xf0\x0a\x0e\xd2\xc2\x37\xb6\x9c\x11\x5f\x89\x8a\xc7\x41\x09\xc1\x49\x92\xd5\xa9\x0f\xe7\xa5\x81\x42\x02\xf8\x12\xd1\x45\xb7\x5e\xac\x23\x93\x4a\x2b\xc4\x3f\x12\x7f\xdf\x08\x47\x2e\x19\xf5\x91\x0b\x77\x7b\xb2\x89\x17\xb8\x6b\xf5\x07\xc0\x03\xb1\xe6\x8e\xdd\x96\xea\xfc\x08\xba\xc3\x8a\xb8\x3b\x97\x53\xe6\xdc\x17\xf3\x83\x2c\x87\x78\xc9\xeb\xc1\xdf\xcd\x09\xc2\x54\x4b\x0a\xd8\x64\x5e\x8a\xad\xe9\x16\x73\x46\x0c\x81\xc0\xa0\x19\x89\x1b\x76\x85\x64\x53\xad\x28\x2f\xa8\x1d\x15\xcd\x19\xcd\x1f\x48\x0b\x12\xbd\x9e\x7e\xc4\xb2\x71\x64\xf4\x19\x13\x81\x2b\xba\x6e\xe2\x21\x93\x6a\x50\x21\x20\x72\x6d\x12\xf2\x0d\xd1\x2b\xe4\x0d\x91\x4c\x97\xac\xf6\x39\x78\x2e\x4c\x80\x31\xb7\xbc\x32\x49\x56\xde\xb8\xc8\xb7\x87\xf1\x85\x94\x08\xe0\xb1\x97\xf4\x96\x84\x87\x6c\xab\x06\x20\xb6\xa2\x07\x82\x8c\x9d\x8d\xdb\x7b\x06\xf4\x35\x6f\xef\xad\x1c\x2f\x8e\xc7\xe2\x8b\x8c\x1c\x95\x89\x1b\x7b\xc6\xb9\x35\xee\xe4\x95\x8a\xbc\xef\x9d\x3c\x32\x12\x36\xae\xe4\x85\x38\xc1\x95\xbc\x3d\x1c\x2b\x2a\x31\x29\xbb\x55\x6c\xee\xbe\x6c\xb4\x0a\x98\xd6\x83\x21\xe8\xb6\xa6\x9f\x39\x5b\x1a\xd7\xf6\xd2\xd0\x83\x44\x60\x7b\x1e\x6e\x67\x65\x6b\x93\x7f\x37\xe1\x0b\x73\x45\x94\x21\x53\x6f\xf3\x6e\xdf\x72\xcb\xab\x09\x5f\x98\x12\x79\x3c\x6a\xb4\xd5\x4e\xd5\x1d\x59\xa5\x0c\xac\xe7\xd2\x9f\xa1\x41\x8d\x8b\x7e\x45\x9b\x15\x17\xfd\x32\x79\x23\x5a\x31\x58\x03\x41\xc6\x6b\x7e\x5d\x1c\x26\x1b\x87\xbc\xba\x20\xed\x2c\x84\xd3\xa2\xb3\x83\x98\xdc\x56\x30\x99\xe0\x04\x6e\xa5\x89\x60\xc5\x97\xeb\x67\xa2\x9a\x56\x10\x76\x94\x37\x0a\x8e\x8f\x21\x46\x86\x78\x83\x08\x50\x10\x6f\xfa\x14\x32\xf8\x3d\x96\x06\xab\x12\x97\x3d\x18\xaf\x7b\xf0\x1d\xbc\xff\x9a\x00\xa7\x95\xee\xb2\x9d\x6e\x8f\xfd\x62\xf4\xee\xe8\x76\xc5\x75\x6e\x77\x62\x44\x86\x5a\x9e\xa3\xd4\x00\xcf\x19\x34\xa5\xd7\xa1\x8b\x9c\x15\x61\x3b\xe9\xee\x0a\xa6\x93\x25\x2e\x0e\xa2\x8c\x3d\xea\xc3\xdb\xf6\xac\xd4\x60\xcf\x9f\x03\xc8\x7e\x84\x0d\x21\x1c\x44\xc4\x34\xae\x46\xa6\x42\x12\xfc\x56\x46\x24\x8b\xb1\x2f\xaf\xc2\xb0\x06\x6c\x27\x45\x82\x30\xa5\x0e\x6e\xde\x24\x2d\x09\xf2\x76\x31\x3d\x98\x94\xdb\xf4\xc0\x49\x7d\xbc\x70\xe5\xba\x0a\x4d\x03\x38\x65\x71\xdc\xad\xac\x0a\x12\xdc\xa7\x2c\x4b\x3c\x58\xce\x5d\x54\xe3\x52\xcf\x12\xbb\x88\x82\xe8\xd3\xfd\x43\x56\x99\xce\xf0\x03\xf2\x7b\x10\xb8\x43\x96\x54\xe0\x4b\x08\x2b\xc2\xe4\x03\xc6\x7b\xea\x3f\x8e\xcd\x78\x1f\xe2\xa4\x24\x19\x64\xf7\x52\x21\x36\x69\xe3\x92\x0d\x16\x93\x7b\x11\x7a\xdd\x0a\xa6\x0e\xfd\x38\xe5\xc3\x0e\xc3\x9a\x8b\x41\x14\xb2\x32\x6e\x70\x56\x6d\xcf\xde\xda\xd4\xe6\x5f\xbc\xb4\x21\xe5\x3d\x63\x7e\xb4\xd6\x93\xf2\x7d\x3c\x72\x2b\x67\xff\x99\x64\xa9\x95\x33\x90\xd2\x17\x69\xb1\xa4\xf0\x8c\xf9\xb3\xe0\x53\xde\xe4\x0f\x8a\x45\xae\x92\x8b\x52\x43\x4f\x52\x31\x67\x98\xcc\xb4\x68\x2f\x19\x3e\x43\xda\xa4\x66\xd7\xfc\x99\xd6\xa9\x95\xcb\xf4\x25\x0c\xa1\x21\x04\x4d\x93\x9b\xa6\x65\x22\xfb\x72\xd3\x34\x0f\x0f\x07\x76\x90\xea\xfe\x93\xb2\x59\xe3\x7a\x09\xd9\x07\x13\x3c\x57\x50\xb3\x31\x01\x26\x6c\x1e\xba\x1c\x0a\x91\xa0\xb1\x6b\x04\x5b\xe8\x7d\x2b\xb7\x02\x26\x23\xdf\xfa\x23\x5d\xe9\x96\x6a\x4a\x15\x93\xb6\x20\x33\xd5\x58\xcb\x2d\x82\x56\x5b\x43\xe8\x6d\x4d\xf8\xe7\x92\xd1\x17\x44\x19\x95\xed\x82\x24\x33\xdc\xfe\xa7\xfc\xcc\x65\xd5\xca\x13\x77\x38\x79\xf6\x9e\xa5\x7f\x57\x19\x1a\xfe\xa0\x34\x2c\x0f\x7f\x60\x06\x6e\xf9\x43\xb4\xbc\xe0\x40\x90\x59\x1e\x3f\xc2\x45\xbb\x38\x82\x4c\x53\x85\x0c\x16\x94\x58\x34\x8e\x99\x40\x6d\x1c\x33\xba\x07\xb8\xa3\x94\xb9\x46\xdf\xca\x6b\xed\x0f\x9f\xf1\xb4\x4a\xe2\xb0\xa5\x04\x9f\x8d\xfb\xa9\xee\xc3\x6b\x24\xe4\xf0\x17\xd6\x10\x3d\x21\x6d\x78\xaa\x5e\xca\x65\xc8\xbe\x5f\x98\x3c\xd8\x47\x0a\xed\xf0\x49\x56\x63\x3e\x35\x7f\x54\x7d\x32\x4c\xb5\xe2\x92\x71\x39\xdc\xa0\xca\x5c\xe0\x6f\x95\xc4\x00\x5c\x02\x6a\x95\xc4\x67\x84\x14\xb7\x7a\x44\xea\x46\x9e\x09\x1e\x3f\x1c\x00\x63\x3d\x93\xab\xc4\x6e\x10\x90\xde\x2a\xc1\x9f\xcb\x49\x10\xfc\xa9\x9f\xbb\x2a\xe4\x80\x85\x35\x99\xdf\x04\xaa\x5e\x93\xc2\x56\xf6\x17\xa5\x49\x8c\x2d\x15\x17\x8c\x82\x7a\x4d\x40\x1e\x08\xd7\x64\x06\x3f\x18\x4f\x4d\x5e\x7a\x65\x6d\x99\xdc\x82\x88\x0c\x35\x4b\x87\x38\x0e\x35\x07\x8c\x99\x2d\x17\x3a\x94\xa8\x6b\x04\x4f\x0c\x9b\xab\xb0\x81\x95\x95\xe8\x89\x9f\xcf\x9e\xe4\x6c\x13\x6e\x34\x77\xfb\x05\x07\xaa\xad\x3d\x42\xa0\x6b\x35\x8e\x54\xa1\xac\xe2\xd9\x29\xca\x19\x95\x70\xd1\x98\x49\x24\x1a\xb3\xc5\x82\x0a\x02\xb7\x2d\x8b\x14\xcd\x58\x15\x8f\x8d\xbe\xb1\x5a\x04\x82\xfd\x00\xf3\x6a\x5b\xd0\x4f\x4d\xa2\x2a\x89\xb8\x3c\x6f\x77\x40\x8e\x6a\x8d\x2b\xd6\x8c\x50\x95\xb4\xbf\xb7\xdf\x55\x1c\x3d\x5d\x3c\xaa\x9e\x23\x81\xbd\x85\x93\xc2\x55\x8a\x56\xf5\xf4\xc4\x38\xe6\x96\xb1\xc1\x25\x18\x6c\x60\x0c\x52\xb4\x10\x72\x4e\x26\x20\xc7\x0f\x48\x2a\x01\x45\xac\x31\xc6\xad\xb7\xda\xa4\x19\xd0\xb4\xda\xa0\x19\x7e\xd5\x15\xb1\x1c\x31\x8c\x23\x58\x7f\x6a\x58\x44\x60\xed\xb5\xc7\xe4\x19\x12\x07\x4b\xec\x42\x57\xa6\x71\x7b\x3a\xfa\x84\xe7\xa9\x07\xcf\xf1\x45\xc3\x89\x98\x49\x78\x67\x71\xc2\xd8\x47\x48\x75\xde\x2a\xf7\x3d\xa4\x40\x75\x68\x22\x1d\xbe\xc0\xfb\xa2\x31\x18\xe0\x70\xca\x0f\x02\x54\xc9\xc0\x99\x8f\x88\xb3\xe6\xd9\x93\xc6\x22\x94\x0b\xa6\x28\x3e\x9d\x05\x03\x18\x66\xa1\x51\xa9\x86\x94\xe0\x01\xd9\x52\x02\xb6\x8b\xfd\x2c\x8b\x43\xe0\xa8\xd3\x79\xd8\xc2\xeb\x12\x87\x3f\x04\x40\x58\x1e\x91\x9e\x92\xf0\xca\x45\x12\x23\x36\x2a\xee\x16\xa3\x5b\x6a\x5c\x24\x81\x21\x57\x2e\x92\x14\xcf\xdd\x74\x9b\xf8\x3b\xd9\x48\x55\xce\xb9\x45\xb9\x47\x60\x4d\x58\x5a\xb4\x96\xd6\x15\xc1\x05\x7e\xe5\xf6\x79\x0e\xb0\x93\xc8\xb9\xaa\x51\x97\xda\x9e\xea\x47\x06\x2a\x2e\x84\x9b\x05\xb3\x44\xc5\xcd\xa2\x74\x55\xf1\xac\x48\x57\xab\x82\x88\x83\x47\x7a\x01\xb7\xef\x33\x44\x57\x16\xfe\x81\x4f\x48\xd4\x48\xfd\x42\xa9\x9f\x56\x43\x2c\xc9\x36\x67\xcf\x84\xc2\x87\x93\x1a\x93\x0a\x88\xd8\xc2\x7c\x06\xee\xf2\x96\x51\xaa\xa6\x8f\x7a\x06\x95\xa0\xc9\x09\xc5\x96\x58\x9a\x7c\x54\xa2\x1b\x02\x86\xc8\x76\x32\x29\x77\x26\x6e\xa3\x60\xbc\xa8\xa7\x32\xa6\x50\x44\xd8\x58\xfa\x8b\x48\xd4\xf0\xf3\xd4\x9d\xa6\x37\x62\x3f\x4e\xf6\x49\x9a\x71\xea\xe4\x84\xe5\x57\x24\x92\x64\xe3\x2d\x90\x14\x12\xd5\xb6\x4a\x78\x88\x1c\xb5\x7a\x65\x25\x90\xf5\x12\xc3\x6c\x10\x7b\x66\x0b\xb0\x5b\x34\xbc\x04\x27\x43\x23\xb5\x24\x91\xf8\x92\xe2\x47\xeb\x00\x1b\xab\x30\xe9\x94\x02\x7b\xbd\x6d\xce\x0f\x8f\xda\xa0\x7d\x29\x24\x88\x17\x0f\x33\x74\x6c\x2c\x16\x55\xd2\xfc\x60\x68\x91\xff\x3d\x6e\x5f\xf9\x56\xca\xab\x8f\x27\xde\x83\x2a\xe7\x17\xd6\x72\x7e\xf7\xf6\x31\xad\xa0\xc7\xcb\x7b\x22\x81\xe3\x2f\xe1\x89\xe2\x4c\xf8\x4e\x3c\x6b\x61\xcc\x10\xb3\xe4\xdf\x02\xfe\x95\x5a\x16\x9b\x3b\xa0\xcf\x92\x3e\xd1\x8c\x88\x4d\x92\x80\xb5\x66\x4d\x15\xa8\x55\xd3\xc7\xa1\x6a\xd6\xcc\xbb\x0f\x24\x1a\x86\x0a\x72\x4c\x34\xaf\x22\x2f\xd5\xb4\x06\xcb\x1f\x62\x53\x3b\xd4\x6c\xa7\x7d\x71\x6e\x39\xcf\x4d\x26\xce\x26\x36\x9c\x19\x1e\xc8\x96\x62\xbc\xc6\x0b\xd9\x87\x38\x38\x2d\x7b\x8a\x8a\x2f\x01\xee\xc1\x8b\x04\x15\x6f\x41\x93\x77\x62\xf8\x69\x5c\xc7\x20\x19\x65\x6b\x04\x48\x54\x18\x6f\x2b\x4a\x31\x20\x69\x53\xbd\x5f\xfe\xa0\x9c\x84\xc9\xab\x11\x85\xb8\x02\x0c\xea\xfa\x68\xb1\x0d\x67\x83\xd8\xd4\x8a\x0a\xea\xf0\x87\xd8\x5a\x7f\x51\x1c\x1f\xbe\x6c\x50\x93\x71\xa5\x35\x39\xa9\x10\xa9\xb1\xb5\xbe\x10\x28\x87\x19\xa8\xa9\xc7\x63\x37\x68\xdc\xba\x20\x95\x5a\x6b\xde\x93\x14\xe1\x5b\x95\xa2\x0e\x5b\x2b\x21\xbb\x72\xe2\x1f\x62\x1d\x35\x26\x02\x78\xaa\xb7\x10\x01\x3b\x85\xbb\x3a\x91\xdb\xad\x35\x89\x06\x12\x56\x23\x5c\x91\x02\x52\xad\xe9\x95\x50\x2d\x6a\xcd\x7e\x33\xcf\xa0\x12\xaa\x1a\xd9\xeb\x47\x17\x49\xe2\x2a\x84\x1f\x75\xeb\x35\xa2\x23\x91\x8e\xe5\xe7\x3e\x79\x2d\x42\x1a\xd7\xba\xa0\x46\x04\x69\x30\x2c\xdd\xb3\x8d\x1c\x8f\x4a\xf7\x6d\xe8\x89\x1e\xfe\x40\xb2\x59\x18\x4b\xf3\x9a\x82\xb6\xde\x06\xf7\xd2\x5c\xdd\xa8\x36\xd5\x8d\x49\x6b\xe1\x02\x70\xd3\x37\x2b\xab\x9a\x3a\x1a\x79\x1e\x87\x0b\x9f\x18\xbb\x93\xdf\x0c\xbe\x61\x82\x53\x1b\x30\x9a\x2c\xe9\xf6\xd3\x72\xe6\x5c\x88\xd4\xc0\x4a\xba\xfd\x72\x1c\x4e\x43\xbc\x77\x33\xa7\x0a\x24\xc2\x53\x33\x09\x8c\x94\xb3\x79\x0d\x52\xcd\xae\x79\xe3\x40\xb3\x71\x0b\x9d\x1a\x49\xac\x79\xf9\x51\x5b\x6f\xe3\x9a\x81\xc6\x84\xc6\xe5\x47\xcd\xfc\x0d\x9d\xda\x40\x82\xb6\xa2\x28\x1f\xcf\x50\x3f\xd7\xbd\x04\x1b\x00\x59\xb2\x0c\xbe\xff\xc4\xd0\x74\xfa\x89\xa1\x99\x07\xcc\x6b\x8a\xa0\xf0\x2e\xf9\x55\xdb\xbc\xab\xca\x38\xa9\x04\x90\xc7\xf8\xd6\xa4\x67\x95\x00\x3d\xf2\x8d\xec\x8b\x86\xf4\xb4\x4f\x98\x00\x1c\xc5\x39\xf2\xec\x3d\x7b\x41\x7d\x06\xac\x58\x88\xf5\x03\xe0\xaf\xed\x94\x58\x4a\x3f\x2e\x65\x00\x4f\xa7\xe1\x86\xfa\xa6\x1b\xfc\x84\x62\x86\x8d\x24\x3f\x35\xf6\xf9\x0a\xe4\xf3\x07\x36\xdd\x01\x2f\x09\xd9\xf4\xc5\x83\xee\xb1\xbd\x3c\xe8\x62\x9c\x85\x1f\x0c\x66\x6a\x61\xd3\x77\x0f\xef\x40\x39\xda\xdc\x31\x17\x5f\x98\x0b\xca\x09\x39\x86\x6a\x50\xde\x5b\x16\x5b\xed\x0b\xe4\x4f\x36\x10\xf9\xc5\x80\xd0\x73\x3d\xea\xe8\xb9\x54\x56\x6c\xed\x71\x40\x17\xcf\x6d\x46\xcd\xbf\x54\x32\xa8\x3a\x7c\xdb\x13\xcb\xf2\x45\xe6\x20\x19\x7f\x64\x8d\x92\xa9\x30\xad\x23\x33\xb5\x57\x18\x49\x4a\xb9\x78\x58\xb3\x3f\x48\xf9\xdd\x08\x42\xfc\x48\x8d\xd2\x1a\x8c\x86\x04\x4d\xad\xe1\x57\xaf\x12\x9d\xd7\xc3\x0a\x75\xe8\xc1\x5c\x10\x61\x28\x8c\x90\x17\x52\x4b\x3f\x24\x73\xf1\x55\x1c\xbe\xce\x0b\x7e\x7c\x00\xd4\xbd\x0e\x40\x1a\x91\xd6\xbd\x36\xa8\xb8\x6f\xbe\x89\x21\xfd\x24\x21\x53\xd5\x45\xd4\x89\xde\x53\x04\xea\x49\x9b\x28\x03\x12\xb7\x2f\x3f\xe9\x5a\xbb\xb5\xc7\x77\x32\x5f\x93\x00\xa4\x75\xf2\x27\x34\x21\xd7\x43\xad\x83\xc6\xf6\x6c\xfa\x78\x26\x92\x03\xa4\x7e\xc5\xee\xd8\x6f\x89\x49\xf1\x15\xfc\xc8\x78\x9b\xbe\xf9\x51\x25\xe3\x4f\xeb\xde\x0e\xd4\xe6\xdf\x49\x31\xad\x8b\xad\xeb\x13\x57\x9f\xe8\xa8\x7b\x35\x5a\xab\x6c\x42\x04\x3a\x7c\x8a\x14\x25\xad\x17\x2d\x6e\xdd\xe6\xde\x3b\x4a\x36\xd7\x12\xbd\x9c\x96\xa8\x15\x23\x9a\xe9\x9f\x63\xd9\x6b\x4c\x98\xcf\xaa\x07\x0b\x7a\x4f\x29\x8a\x30\xb4\x74\xd8\x53\xd2\x9d\xd0\x83\x3f\xc5\x57\xcb\xce\xfc\xe5\xf4\x85\x39\x93\x1a\x7a\x44\x7b\x37\xae\xfb\x83\xa8\x62\xf3\x98\x0b\x70\x21\x9a\x9e\x32\x8f\xad\x6f\xf6\x34\x8c\x00\xec\x4d\x62\x15\x2f\xe6\xea\x67\x25\x4d\xf1\x58\xb0\x18\x61\x17\xcb\xea\x42\x95\xaf\xd4\xe5\xe4\x36\xdd\xea\x8d\xc3\x16\x31\x77\x90\x00\x57\xb7\xde\x04\x4a\x5e\x54\x92\xa4\x34\x2a\x5e\x54\x72\x97\xb4\x6e\xaa\xa6\xbd\xd8\x6f\xa8\x20\x25\x30\x52\x50\xf0\x4e\x96\xe4\x06\x8d\xe9\xf8\xb8\x93\x3e\x88\x6e\x49\x46\x29\x6c\x27\x66\x4e\xd2\xd7\xc9\x87\x1c\x33\x96\xdb\xc1\x58\xfa\x34\x08\xcb\x6e\x67\x60\x8b\x5f\x81\x2d\x70\xd7\x6e\xf5\x07\xd8\x4a\x37\x3c\x3e\x00\x2c\x27\x83\x13\x75\x35\x32\x5d\x1b\x1d\xbf\xf6\xf8\x39\x20\xf8\xec\x44\xf0\x4a\x6b\xf3\xe9\x68\x58\xc1\xa9\xc9\x66\x36\x7a\xf3\x07\x6b\x75\x8b\x77\x2b\x60\x64\x73\xe9\xa6\x0b\xd4\x47\xad\x0a\x49\x61\x90\x1a\x73\x24\x39\xb0\x9e\xb8\x8e\x86\xa5\x20\xd4\x3f\x52\xa4\xee\xcb\x70\xbe\x6c\xc4\x27\x56\xe5\x2f\xcb\x41\x58\xd6\x27\x96\xc5\x24\x65\x33\xa2\xa0\xc9\x96\xe4\x6c\xdd\x7b\x72\x32\xc9\x7e\xea\x42\x88\x5f\x5c\x30\xcd\x4f\x61\xca\x88\x5e\x9a\x53\xef\xec\x28\x46\x15\x1a\x4a\xb5\x92\x9c\x74\xc7\xf4\x8b\x55\x09\x15\xbc\xd3\x15\xda\xda\x51\x80\x48\x7b\xde\x3a\x06\x59\x32\x79\xb7\x7e\x45\x52\x39\x86\x40\xcf\xa9\x12\xca\x4b\xd4\x4c\xf6\x44\x31\x96\x61\x6b\xd7\x27\xb0\xcc\x8e\xa5\x36\xdb\xaf\x00\x3c\x53\xbf\x4c\xd4\x0f\x7c\xae\x80\x3b\x3f\xdc\x87\xed\x99\xd6\xed\x14\x59\xd3\xed\xb4\xe8\x0a\xb7\x73\x95\xba\xa1\x3e\x69\x63\xeb\xb7\xd4\xc6\x99\xdc\xd8\x3b\x44\x0d\xee\xea\x1b\x33\xd0\xf5\x41\xeb\x3d\xea\xf0\xb4\xe0\xc2\xdd\xc2\x10\xd2\xdc\xdb\x04\x78\x82\xed\xb1\x4a\x0c\x73\xd2\x0b\xad\x8e\xd3\xe1\x6f\x4b\x6c\x78\x34\x3f\x26\x5f\x44\x00\xc1\xf0\xc8\x51\x87\xed\x25\x35\x28\x9b\x1d\x7d\xab\x4a\x4f\xb1\xae\x1e\xc2\x2a\x18\x9f\xc4\x1c\x9f\xb2\xa1\xd0\x9d\x54\x68\x06\xb7\x76\x59\x9d\xa4\xf5\x35\x0a\x84\xa9\xbf\x14\xab\x71\xf7\x5f\xce\x0a\x94\x69\x1c\x6c\x3e\x34\x6e\x1c\x5c\xc5\x2a\x3e\x83\x52\x1c\xd3\x61\xf4\xba\x6a\xc9\xc0\xf5\x5b\x41\xef\x71\x38\x98\x7f\x8f\xf3\x34\x78\x81\x16\x75\x9f\xdd\xef\x61\x0b\xb8\x2f\xeb\x19\x91\x88\x69\x6f\xd8\x48\x49\xf8\xfb\x02\x11\x87\xf4\x50\x30\xa7\xd6\xf8\xc8\xb3\x8c\xe0\x31\x64\x98\x00\x60\x10\xe1\x5e\xd9\xe1\xc1\xe5\x78\x52\x19\xb6\x91\x02\xac\xeb\x3b\xd2\x37\xfe\x5e\x17\xa2\x8d\x2c\xb6\x81\x3d\x03\x07\x6f\x59\x9c\x88\x61\x48\x9a\xbe\xa9\x91\x8d\xd6\x71\xca\xd9\xd9\x00\x2e\x14\x42\xaf\xf3\x8c\xac\x92\x02\x20\xcc\xa0\x23\x2e\x8c\xfc\xb1\x2b\x5b\x08\xa2\xe9\x88\x24\x84\x4a\x8e\xa1\xe0\x33\x7d\x91\x3c\x3b\x2f\x5c\xc4\x46\xfb\x0c\x22\xde\xf5\xf1\x52\x46\x68\xf7\xcb\xe8\x68\x74\x24\xfa\x6d\xa3\xc6\xdc\x79\x0e\x65\x8d\x67\x8a\x0c\x4c\xbf\xbf\x1c\x01\xe0\x55\x8f\xa6\xc3\xc9\xfe\x86\x2d\x40\x1f\x27\xeb\x15\x79\x18\xf1\x50\x53\x13\xf2\x2d\x46\x63\xad\x4d\x73\x92\xcf\x9e\x6b\xe4\xd0\xd1\x39\xca\xf1\x1c\x2d\xe8\x0a\xb3\xe6\xe1\xae\x53\x16\x2a\xf0\xaa\x2b\x8a\xf9\x77\x69\x2b\x2c\x79\x74\x8f\x16\xb2\xdf\xc0\x57\x5a\x05\x5a\xd7\xb6\xef\xdf\x3d\x72\xae\x35\xfc\xa6\x68\x16\xc3\x8b\xed\x25\x3a\xf6\x94\x0b\x05\x3c\xa7\x21\x23\x0e\xaf\x92\xe9\xdd\x1e\x04\x7b\x75\x6f\xef\x0c\xef\xb0\x7b\x2b\x71\x0c\x8d\x00\x48\xbb\x83\xe0\xf1\xa1\xf0\x39\x86\xa1\x08\x1c\xc9\x61\xf4\xb8\x9e\x20\xea\x3a\xd5\xea\xd4\x66\x0c\xc3\x04\xa8\x02\xd0\x11\x10\xc6\x54\x54\x47\xd6\x1f\xc4\x7e\xd5\xe9\x47\xae\x98\xb5\x10\x25\x2e\x63\x18\x33\x36\x94\x6e\x09\xee\xae\xce\x6a\xc9\x93\x91\xc7\xc6\x92\xbd\x23\x2e\x8c\xe5\x61\x47\x96\x1c\x2b\x96\x65\x7b\x53\x86\xba\xfa\x15\x3d\x33\xa4\x06\x4a\x9d\x4c\x43\x26\xe9\x1c\x3f\xb1\x12\xc6\xf4\xaa\x98\x67\xc4\x52\x48\x8e\x88\xad\x92\xa4\xd3\x6d\x04\xc3\x44\xa2\x19\xc1\x30\x85\xc3\xc7\xa9\x54\x3f\x43\x26\x40\xcf\x18\x1f\x2d\xa5\x76\xe5\x79\xb1\x2f\x3c\xa2\x24\xa8\x6b\xe3\x74\xed\x74\x4b\x90\x77\xa8\x03\x43\xe7\xa4\xfe\x83\x21\x27\x94\xf0\xc8\xf1\x10\xd4\x07\x89\x69\xc8\x7b\xd7\xc6\x56\xc4\x66\x9c\x0a\x92\xdd\x06\x05\xc0\x05\x39\x04\x8e\x6a\x98\x92\xdc\xb8\xcc\xba\x05\x08\x2f\xed\xd9\x22\xb3\xba\x16\x9c\x65\xdc\x8a\x45\xae\xe8\x76\x38\xba\x35\x87\xa7\x82\xf3\xd8\x5c\xaa\xc8\xb5\xc7\x1d\x13\x67\xb2\x30\xa9\xa1\x20\x38\xe0\x52\xc6\xfe\x8d\xcd\xa4\x4a\xfb\x36\x5b\x69\x1b\x8f\x3b\x85\xd8\x31\x88\x9d\x6a\xe2\x9c\xe5\x8f\x8c\x26\x8a\xcc\x75\x8a\xc1\xe3\x11\x53\x04\xf0\x13\xdb\x03\xbc\x1e\x19\xa8\xc7\xc9\xcc\x32\x4a\x79\xa4\x76\xcd\xcd\x1d\xc5\xc7\xa7\x1d\x6a\xbc\x6e\xb5\xab\x79\x29\x21\xe2\x54\x5e\xcb\x13\xdb\xd8\xa3\xe4\x18\xde\xf7\x76\xc5\xe6\x88\x55\xe2\x1b\x5a\x0f\x4b\xbc\x48\x33\x39\x63\x64\x8f\x2d\x83\xed\x9a\xc6\x3f\x01\xca\x49\x18\xb5\xd9\x0b\xda\x3c\x2c\x3e\x13\x2f\xe6\xd6\xf3\x2b\xae\x8d\xc0\x35\xa7\x99\x64\x74\xa8\xcc\x43\xb1\xa7\xf8\x8b\x98\x39\x79\x26\x11\x02\x5a\xc6\x34\x4a\x4a\x8f\xde\x0c\x95\x10\xe4\x9a\x9b\xab\x65\xaf\x6f\x4e\xca\x1c\x19\x93\x3d\x8d\x61\x52\xa3\x9c\xf8\x03\xa9\xce\xd8\xa6\xb9\x4a\x15\x37\x67\xf2\xe8\x21\xa5\xcd\x2c\xb1\x02\x59\x26\x77\xb5\xc8\xb9\xd5\x26\xe1\xd3\xa4\xf2\x6a\xd3\x90\x69\x95\xd3\x99\x45\xaf\xea\x2f\x1a\x6a\xfc\x41\xf4\x42\x60\x20\xd3\xee\x90\xbb\x4d\xab\x0c\x40\x76\x66\x21\x63\x95\xdf\x10\x9a\x14\xfa\xc7\xe4\x3e\x97\x76\xf4\x59\xac\x20\xc3\xc2\x8b\x2c\x50\x28\x18\x0f\xed\x64\x71\xf5\x19\x7c\x37\x83\x85\x09\x91\x0a\x02\xc3\x60\x66\x25\x36\xd3\x15\x55\x7b\x72\xdd\xd5\xe4\x38\x0c\x57\x05\xba\x0d\x3c\x87\x4e\x30\xd4\xb9\x65\x73\xd9\x90\x4d\x9a\x0c\x1f\xe9\x76\x6e\x2e\x96\x87\x33\xe4\xc2\x95\xd1\x8b\x73\xeb\x73\xc5\x8b\x73\xb3\x49\x30\x11\x99\x27\xb1\x43\x22\xe2\x6c\x5c\x21\xea\xf6\x4a\xe4\x95\xb3\x25\x74\xc8\x48\xd2\xa9\x63\x2f\xfe\x1e\xd3\x60\xb6\x14\x33\x1d\x4e\x96\xcb\x56\xe4\x2e\x69\xb3\xc7\x09\xa4\xb5\x41\x41\x4a\xe8\xd3\xac\x6c\x7a\x5a\x66\xf7\x22\x01\x73\xe2\x12\x15\x99\x1e\xda\x0c\x46\x27\x4a\xe2\xc9\xa3\xa4\x6a\x9b\xc3\x31\x68\x80\x86\xa7\xb6\x37\x47\xf4\xca\xe0\x03\x8c\x4c\xfe\x20\xcd\x2f\xfe\x40\x38\xc5\xf2\x87\x58\x06\x33\x9c\x81\x84\xac\x69\x5a\x15\x0e\x52\x32\xbd\x09\xe5\x79\xe0\x6a\xb4\x46\xc1\x39\xd5\x85\x9c\xae\x29\x55\x74\xf3\x4d\x53\x06\xab\x5e\xcc\x65\xa6\x00\xbe\x5a\x9e\x52\x24\xff\xb9\x54\xf4\xbb\xbf\x10\x1b\x9f\x6c\x31\x1d\xfd\x5b\xd5\x77\x2e\x2e\xaf\x43\x7e\x66\x28\x83\xce\x80\xc2\x09\xca\x02\x13\xc3\xa4\x94\x7c\x7e\x62\x4c\xa0\xf7\xb1\x52\x19\x0d\x3e\x41\x0d\x98\x99\x77\xa0\x95\xe5\xa7\x79\x51\x3c\x14\x28\x79\x94\xd9\x6a\xd3\x3b\xd0\xca\xec\xd3\xd0\x1d\xc4\x8d\xb9\x99\x56\x69\x1e\x35\x3c\x61\x4d\x10\x9d\xee\x89\xdf\x7c\x78\x06\xd8\xa7\x03\x30\x0d\xee\x2b\x2d\xc3\x21\x27\xea\xde\x21\x19\xc3\xc5\xd5\x9d\xab\x21\x37\x7a\x44\xa6\x3e\x2e\xd5\x82\x69\x34\xb2\xce\xc4\x89\x51\xb2\x21\x5b\xcd\x8b\x4b\x38\xd2\x0b\x53\xa4\xe8\x56\x98\x16\xf0\x13\x93\x09\xc1\x89\x49\x85\x86\x27\xa0\x30\x49\x86\xc1\x62\x1a\x73\x2c\x63\x98\x68\x75\xcd\x75\xdf\xc6\x4b\x38\x20\x2a\x5e\x73\x03\xee\x08\xe6\x00\x52\x5c\x58\x8a\x2d\xbb\x63\x37\x00\x3a\x8a\x60\x43\xe6\x99\xb7\x60\x63\x26\x37\x60\x43\x62\x99\x86\xed\xd4\x68\x7d\xf1\x83\x93\x92\xee\x75\x5f\xd8\xa5\x64\xaf\x6c\x3e\x02\xde\x7c\x74\x50\x38\xa9\xe0\x9c\x42\x57\x43\xa7\x2a\xd1\xc4\xb8\x49\x49\xc9\x36\x1f\x61\x48\x57\x5e\x7e\x96\x8f\xcd\xe7\xfc\x59\x85\xae\x4d\x62\x6f\x62\xc3\x49\xa5\xe2\x0d\x8a\xf9\x38\x36\x93\x45\x23\xec\x1e\xce\xd7\x2b\xad\xcc\x09\xff\x5b\x90\xa4\x97\xe2\x43\xee\x24\x0a\x61\x93\xca\xe2\x7d\x93\xfb\x2e\x4a\x0d\x36\xd0\x74\x1d\x04\x8f\xb3\x5f\xeb\xf0\x9b\xc5\x33\x51\xda\x40\x72\x1d\x1e\x7e\xd8\xea\x3a\xdc\x54\xd6\xbc\xd0\xe3\xe4\x40\x8b\x38\x5f\xd2\xf6\xb6\x95\x3c\xa3\xa8\x68\x6b\x73\x39\x0b\xec\xb5\x95\x22\xff\x2d\xcf\xf8\xaf\x92\x7f\x5f\x04\x62\x75\x9e\x3f\x64\xe1\x63\x4a\x98\x3a\x29\x54\xd5\x16\x45\xfe\x48\x7a\xd3\x96\x49\x49\xb4\x6e\x2e\xe3\x77\x0d\xbf\x5d\x39\xf6\x84\x99\x67\x6a\x81\xa2\x7f\x2e\x94\xb6\x25\x95\x5c\x39\xd0\xc9\xaf\xd8\xa0\x6a\xf3\xf1\xb3\x02\x60\x5b\x6a\x70\x25\x9a\x2f\xe8\x2a\xa3\x67\x67\xc8\xcc\xc9\x31\x22\x06\x2d\x74\x36\x6d\x39\x2b\x54\x36\x58\xf5\x32\xaa\x57\xa7\xee\x2a\x86\x4a\xd1\x1a\x33\x6b\x8b\x8f\x94\x45\xe2\x07\x34\x49\x4c\x04\x0b\x03\x6a\x13\x20\x56\xe9\x4b\x6e\x58\x89\xbd\x60\x49\x05\x8c\xad\xdf\xca\x7b\x2b\x98\x2c\x4a\xd2\xaa\x0e\x0a\xf9\x5f\x5c\x81\x56\x41\x5b\x35\x6a\x01\x30\x35\xb4\xc6\x16\x2d\xb0\xfb\x35\xff\x0e\xf6\x34\x1b\x33\x7e\x3c\x53\x39\xc9\x3d\xc0\x4a\xda\xe0\x6d\x0b\x3d\x51\xbd\x69\x85\x9e\x08\xca\xaf\x46\xe8\x26\x07\x74\xc1\x6e\x87\x90\x26\x2f\x89\x1e\xdd\x25\xb7\x85\xe4\x2c\x72\xa0\x52\x87\xb0\x2d\x72\xa0\x2e\x4d\x94\x8b\xb4\x24\xad\xd9\xa9\x38\x6c\x03\x62\xf2\x38\x84\x4b\x36\xac\x43\x64\x59\x2d\x4f\x4d\x79\x75\xe7\xca\x34\x0c\xdb\x55\x3e\x5a\x32\x65\x98\xd1\xea\xce\xd5\x06\x64\x7a\x43\x4c\x58\x1d\xe2\xd3\xfc\x5e\x9f\xbc\xdf\x70\x0c\x9b\xcf\x86\xde\xd9\x8f\x52\xde\xf4\x05\x42\x04\x53\x5b\x5d\x19\x5a\xfc\xa2\xf6\x5d\x13\x21\x7b\xec\x1c\xf3\x1b\x01\x3f\x7e\x21\x82\x57\x39\x74\x61\xbe\xf5\xde\xf0\x22\x6f\x49\x83\x09\xad\x11\x70\xb2\x75\x0c\xce\x18\x43\x61\xc9\xad\xc0\xa7\xe9\x65\xd2\x35\x21\xcd\xb0\xa7\x35\x11\x9b\x1d\x6e\xb3\xf3\x22\x09\x5d\xc6\xe6\x0a\xfd\xc9\x7d\xcc\xe5\xf7\x5a\xf7\x25\x21\xc1\xda\xd1\xc2\x16\x17\x91\x9a\x14\xc4\x00\x5e\x5d\x16\x6b\x05\xf5\x67\x86\x5c\x45\xea\x92\x87\x50\x53\xed\x98\x62\x71\x71\x44\x55\x59\xb5\x0a\xaf\xe5\x2d\x13\x3f\xa2\xea\x26\xc4\x78\x2d\xc6\xc3\x10\xb0\x96\xdb\xed\xde\x73\xdb\xc8\x8b\x60\x94\x69\x98\x6a\xb8\xeb\xa3\x5c\x0e\x38\x42\x2d\x45\xda\x59\x70\x7b\x2f\x51\x2e\x6f\x24\x4b\xef\x3e\x92\xa3\x65\x0b\x85\x74\xf7\xf5\x13\xb4\x89\x65\x78\xdd\x48\x6f\xcb\x22\xe5\x49\x83\x01\xaf\x33\x68\x13\xe0\x39\x63\x44\xda\x9f\x06\x74\xb0\xa6\x93\x00\xa5\x78\x36\xdb\xa8\xad\x63\xfb\x7c\x79\x28\x43\xca\xb4\x74\x3c\x2a\x1d\x2f\x8b\x2b\x4c\x8f\x43\x30\xf9\xe5\x4b\x67\x26\x3e\xab\x8d\x09\x5d\xa2\x57\xbc\x0f\xb0\xae\x60\x9b\x4c\xf1\x92\x73\x31\xc3\xe0\xf2\x62\x12\x8c\x3d\xf9\x51\x5c\x38\xa6\xf5\xad\x8a\xe0\xb4\x48\x6b\xe2\x85\x9e\x05\x5f\xf7\x52\xfc\x92\x19\x77\xff\xee\x19\x90\x6c\x84\x8e\x2b\xf6\x78\xad\x38\xce\x1c\x81\xb0\xb9\x7e\x57\xa0\xa8\x2d\xd4\x57\x05\x38\x93\xa3\x0f\xcd\x0e\xeb\xf1\x84\x30\x7b\xae\x13\x0f\x77\xf1\x21\xa0\x57\x8c\xc3\x23\x59\x96\xd0\x7a\x9c\x4c\xfc\xe2\x89\x44\xc2\x5e\x6f\xd4\x41\xe6\x17\x6f\x14\xeb\xeb\x59\x5e\xf7\xd1\xd7\xb3\x70\x5c\x6a\x8e\x5b\xde\x0d\xd6\x1d\xb5\x74\x5c\x6a\xeb\x5e\x16\x6e\x47\x4a\x5e\x38\x28\xbd\x26\xf0\x39\x0e\x5b\x64\x5e\x28\x4b\x04\xfd\xff\x10\xfa\xaa\xbd\xf1\x13\xa1\xaf\xcd\x1f\xa0\x3f\xc3\x1f\x64\xe5\x10\xb2\x4f\xb0\xf2\xe5\xcb\x63\xbf\x7b\xc0\x0f\xc9\xc7\xc8\xa9\xda\x3e\xe6\x2f\xd5\xd7\xf2\x49\x81\x44\x93\x97\x80\x63\xe7\x05\x41\x78\xfa\x15\x44\x78\xf8\xd1\x69\x48\x68\xe2\x85\x1d\x1e\x36\x88\x01\x1d\x04\x31\xc7\x85\x60\x84\x95\x61\x7c\xc2\xd2\x0a\x45\xfe\xe4\x80\xa2\x2f\x70\x06\x10\xe7\x13\xaa\x2c\xfb\xf3\x91\x6b\xeb\x2b\x21\xc1\x7d\xe9\xd9\x16\xde\x90\xe5\x28\x7e\x72\xac\xdd\x17\x50\x0a\xf9\xe6\x53\x02\xbe\x8b\x17\x22\xa2\x9d\x0a\x16\x55\x3d\x71\x1f\xd5\x51\xb0\xf9\x43\xd8\xa8\x86\xc1\x4f\xd5\x93\x05\xed\xfd\x54\x27\xc2\x76\x7e\xb8\xd4\x22\x07\xfd\x54\x33\x79\xb2\xb7\x1f\x35\x50\x3d\x27\x1f\xc3\x40\xd5\x6d\x3e\x8d\xf0\x52\xc8\xd9\x47\x96\xa5\x5f\xe2\x23\x33\x12\xd4\x3d\x00\xc4\xb4\xba\xee\x99\xe5\x0b\x97\xbf\x9d\x57\xd7\x60\x99\xfd\x81\xdd\x99\x76\xc5\x86\x4c\x3f\xf2\xc8\xc1\x2c\x3e\x61\xe2\xb4\xb9\xd7\x3a\xb4\x0a\x7d\xe4\x1c\xda\x74\x3f\x43\xa9\xde\xdd\xdd\xba\x60\x31\xaf\xdd\x67\xaa\xb9\x42\xac\x3e\x66\xaf\xd0\x1c\xf2\x59\xb1\x60\x60\x44\x06\x0a\x4d\x23\x1f\x63\x4d\x34\xe7\x7d\x54\xec\x34\xb0\x7d\xb4\x45\x6a\x79\xfb\x2c\xa7\xcf\xf0\xcb\x43\x0a\x84\x97\xc5\x7e\x3c\x18\x2b\xe6\xc5\x0b\xd6\xc7\xa1\x3d\xe4\xf3\x71\x8b\x90\x90\x3f\x1f\x8f\x03\x1a\xca\x47\x65\x4c\xcd\xfb\x63\x64\x87\x5e\xa1\x8f\x41\x8a\x8a\xf6\x9f\xd3\xd8\x7b\xf1\xeb\x8c\x23\x6b\x07\x01\x26\x16\x20\x81\xd6\xc5\x4f\x69\x85\x2a\x13\xff\x90\x41\xa2\x2d\xff\x8e\xcc\x34\x6d\x60\x78\xb7\x88\xc7\xf5\x08\x4d\x30\x1f\x9c\x71\x54\x34\x6a\x94\xff\xd9\x60\x65\x5d\x5e\x0f\x55\x9a\xfe\xa8\x91\x6d\x75\xf5\x1b\x52\xf8\x91\xaa\x8b\xc8\x17\xf2\xf5\xf4\xf9\xb2\x50\x05\xcf\xaf\xbd\xb1\x2e\x72\x55\x76\x29\x03\x06\x4a\x1d\x4e\x1f\xb5\xad\xe5\xdf\x5d\x3b\x54\xf9\x73\xbb\x15\x10\xc2\x8f\x79\xae\x75\x1b\x7d\xd0\x98\x96\x94\x41\x53\xa3\x9b\x17\x17\x1a\x3c\x2b\x8f\x63\x30\x36\xd9\x1e\x9a\x24\xca\x80\x46\x6f\x58\x7d\x24\xc3\xaa\xc2\x1f\x0d\x8d\xda\x14\x3e\x6f\xf4\xc5\x67\x46\x89\x78\x7b\xea\x83\x27\x2c\xa9\xd5\x9c\x47\xcc\x6b\xf0\x92\xfc\xa5\xf3\x62\x45\xaa\xe4\x0b\x59\xb4\x90\x8f\x4f\xac\x7a\x1a\xe4\x4f\x4a\xa3\x1b\xc5\x7e\xe2\x90\xea\xa0\xf7\x29\x51\x54\x03\x3e\x93\xea\x1e\xdc\xe5\x84\x12\xae\x12\xbf\xdc\xbe\xf0\x4b\x0e\xc6\x41\x67\x78\x9a\x5a\xfc\x20\x3d\xe8\xfe\x40\x51\x71\xe8\xf0\x99\x31\x5a\x74\x9f\x3d\xb7\xc8\x53\xa7\x36\x3a\xe8\xfb\x89\x72\x41\x3d\x87\x76\x16\x0b\x6b\xd9\x6d\x71\xbe\x7e\x24\x06\x67\x5b\x3f\xfc\xc0\xc2\xab\xbb\xce\xd0\x55\x59\x18\xdc\x38\x49\x60\x48\x81\xb9\x76\x12\x13\x68\xa2\xac\xb3\x06\xc6\xfb\x43\xa0\x00\xcd\xcd\x64\xe4\x57\x5b\x05\xa8\x1d\x3c\x39\x9b\x07\xd3\xb1\x8d\x9a\x80\x37\x9c\x88\xfd\x94\x89\x6b\x27\x09\x94\x35\xe3\x9e\x94\x41\x30\x5e\xe9\x24\x08\x70\x56\xdb\x92\x4f\xda\x0d\x6b\xca\xaf\xcc\x22\xc8\x66\xb6\x81\x75\x73\xf9\xc8\x6b\x78\x82\xa6\x47\x62\x1e\x9e\x1d\x18\xb8\x1a\x87\xd1\xfd\x46\x94\xe0\x34\x9f\x08\xf4\x54\x2e\x68\x27\x42\xfc\xac\xfe\x3d\x46\x63\xcd\xba\x92\x34\x9d\x9c\xd8\xde\x4c\x19\x78\x12\x45\xaf\x16\x7f\x92\x59\x40\xed\xfb\x1c\x0e\xcd\x54\x09\xb4\x30\xfb\x7c\x3b\x91\xe1\xbb\x90\x1c\xe0\x80\xd3\x08\x9b\xdc\x70\x04\xc3\xd5\x50\xf6\x4f\x42\x30\xba\x43\x4f\xa9\x1a\x06\x8b\x93\x80\xc3\x12\x40\x23\xe0\xb0\xc7\x0f\xa2\x47\xb6\x39\xe2\x2f\x67\xfc\x34\x77\xa1\x72\xb1\x05\xbe\xbc\xe3\x70\x5a\x5a\x3a\x9e\xc9\x4a\x09\xd7\x3a\xa7\x72\xe2\xf0\x87\x13\x3d\x90\xf5\xe1\x90\x8a\x43\x65\xbe\xe4\xe1\xd0\x42\x0d\x4e\x71\x1a\x96\x08\x7d\x38\x55\x00\x26\x66\xe5\x53\xaf\x95\xf6\xed\x73\x61\x57\xf6\x54\x59\xb3\xae\xe5\xef\x72\x2f\xb7\x13\xf3\xa0\xbe\x85\x73\x79\x39\xdd\x67\xae\x46\x79\xc2\x17\xd6\xda\x18\x9f\x7b\xb2\x22\xdb\x8a\xd2\xb9\x3c\x93\xa7\x11\xed\xe0\xc4\xfd\xa5\x27\xf1\x84\xcd\x74\xa4\x88\xf3\xe3\xfd\x57\xbe\xa1\x00\x9c\x1e\xde\x93\x54\x47\x53\x48\x71\x33\xb0\x0b\x72\x23\x0f\xb5\x56\x9d\x6a\x13\x9a\x51\x4f\xb4\x09\x03\x57\x4e\xcb\x38\x68\x60\x3c\x55\x26\x3c\x86\x11\x45\xcf\x47\xa7\x4a\x3c\x50\xe3\xa2\x9f\x16\x63\x2b\xad\x95\x78\x56\x6d\x12\x8f\xb0\x2f\x9a\x3f\xe0\x3c\x4d\x44\xee\x00\xca\x4b\xe2\xf6\xa9\xcc\x52\x6d\x4e\xe6\x57\xd8\xd9\x69\x82\x03\x34\xcf\x53\x7d\x43\xeb\x16\xa5\x81\x72\xd0\x95\x4b\x54\x03\x4c\xb0\x30\x2d\x5d\x27\xc9\x0e\x0c\x35\x3d\x2f\x6a\x5a\xc0\x63\x4f\x42\x1e\xbb\xd0\x20\x03\x52\xf7\x08\x93\xe8\x48\x4b\x1c\xf5\xe1\x72\xdc\xef\x3a\xcd\xad\xa8\xb4\x73\x06\xf3\xc2\xb8\x73\xca\xbc\xfc\x01\x2d\x44\xfe\x7c\xde\x96\xd8\xf3\x9b\xca\x10\xec\xae\x65\xf4\x62\x8c\x3b\xe0\xc4\x04\xc9\xad\xa8\x97\xe3\xb4\xd8\xa3\x87\x15\xbb\xa1\x86\x8f\x13\xb3\xa1\x77\xcb\x4e\x53\x2b\x22\x99\x9d\xde\xf6\xf3\xe2\xe8\xf9\xc8\xdc\x7d\x86\x46\x0b\x3e\x8c\x86\xdd\x91\x31\x1a\x7a\x91\xed\x84\x1f\x1a\x9c\x71\x3e\x5c\x57\x46\xd2\xa5\xaa\x52\x33\x48\xed\xc4\x09\xd7\xa2\x4f\xd8\x14\xb6\xfa\xf3\xb1\x20\xb7\x94\xee\xb1\x24\x88\x3f\x04\x90\x58\xc2\x2b\x90\xe8\xd5\xd0\x7e\xcd\x86\x94\xda\xab\xaa\x6a\x67\x28\x31\xd5\x17\xd2\x54\xc8\x8c\x5e\xe7\x67\x4f\x13\xdd\x8e\x35\x90\xb1\x20\xc7\xf7\x96\xa0\x71\x41\xf8\xe9\xcc\xf7\x7a\x5a\x0b\x98\x11\x2e\xb2\x14\x68\x29\xb9\xb8\xd6\xe7\x0d\xb7\x0b\xd5\x66\x34\xe6\x77\x1d\x1c\xa7\xe5\x33\x50\x82\x9c\x5d\x38\xe9\x8c\x53\xba\xac\xfd\xcb\xe6\x5e\x87\xc6\xba\xcc\xf3\x89\x95\xd5\x4e\xc5\xe8\x66\xe3\x9b\x8e\x6c\xfc\xe0\x1f\x4c\x3c\x93\x01\x91\xd3\x77\x11\xa8\xa2\xea\x74\xc5\xbd\x3e\x60\x7c\x11\xa8\xe2\xc1\xbf\x2c\xd8\x44\xba\xeb\x76\x51\xa5\x69\x1c\xb6\x50\xd3\x43\xa4\xbb\x90\x0b\x8a\xa4\xed\xc2\xde\xa9\x8a\x73\x91\x5f\xd9\x93\x7f\x85\x59\x93\x53\x4d\x9d\xac\xda\x6b\xfb\x8e\xca\x5d\x19\x84\xc2\xa2\x78\x85\xf6\x34\x7c\xc1\x4e\xc3\x79\xa4\x4e\xe2\x9e\x0c\xb3\x24\x93\xb2\x69\x98\x2f\x03\x55\xb4\x0d\x5f\xde\x68\x90\xc6\x5f\xde\x68\x30\x0e\xe4\x32\x6a\xc5\x18\x8f\x4b\x55\x2a\x9e\x25\xe6\xee\x42\x51\xc2\x82\x9a\x5e\x58\x3d\x95\xf4\x2f\x2f\x3b\x04\x58\x4d\xb3\x1c\x70\xf5\x82\x83\xa1\x20\x57\x31\xe3\x05\x93\xe4\x52\x83\x86\xd2\xab\x58\xd9\xc7\x67\x0e\xdf\xf4\xd9\x22\xf9\x0e\x41\xc6\x02\x08\xd9\x55\x23\x97\x21\xcf\x72\x5f\xa0\x60\xb1\x27\xb8\xd0\x45\x62\x02\xfd\x99\x17\xc9\x08\xa8\x7b\xd0\x2e\x62\x64\xbc\x82\x70\x11\x2e\x6a\xd4\xc9\xc5\x0d\x06\x2f\x88\x5e\x58\x3e\xb5\x82\x5e\x44\xc8\x74\x17\x83\xe5\x53\xd2\x7d\x59\x02\x0a\xfd\xef\x6a\xe0\x8b\x30\x6a\xb0\x32\xd1\x25\x0c\x99\x0e\xd0\xa4\xbe\xa2\x45\x3b\x7f\x7c\x59\x58\xb3\x5d\x2d\x60\xcf\xd0\x08\x38\xaa\x03\x97\x96\x4c\x2d\xf0\x57\xe7\x2e\x0b\xb4\xfb\xe2\xc2\x83\xce\xfa\x6b\xeb\x8e\xa3\x23\xb3\x5f\xa1\x3b\xa2\x09\x5c\xc4\xdd\x0c\xf7\x8a\x5c\x4b\x2b\x3a\x52\x84\x9d\xbe\x5c\xcc\x9c\xdd\xd1\xb9\xa8\xe2\x7b\x75\x41\x60\x6b\x40\xef\x56\x0d\x05\x73\x0f\x96\x31\x34\x62\x10\x57\x03\x49\x36\xdf\x2e\x1c\x8d\x1d\x1d\xf2\x42\xd5\xec\x53\x80\x87\xaa\x29\x41\x08\x71\x47\x10\x0e\x89\xbf\xed\xa7\x47\xcb\x0e\x0c\x20\x6d\x22\xda\x54\x2b\x81\x04\x5d\xdc\xe3\xeb\x90\xcb\x6b\x1a\x8d\xe1\x12\xa9\xe7\x1e\x54\x81\xc4\x48\x1d\xed\xf0\x5a\xa2\xa9\x2d\x88\x2c\xed\xdd\x8f\x62\x74\xbf\x8a\xae\x18\xdd\x2b\x7a\xd2\xe1\xcb\xca\x08\x9e\xdf\xd0\x41\x45\x86\x8f\x92\x8d\x34\xc9\x64\x46\x9e\xb8\x8f\xca\x83\xe8\xf3\x31\x35\x26\x73\xc7\xb5\xa8\x95\xea\xfa\x08\x22\x61\xfa\xd1\xce\x09\xb0\xb1\x48\x0e\xa7\x68\x8e\x44\xad\xd1\xd7\xd6\x6c\xb3\x69\xc9\xae\x33\x16\xc5\x57\xca\x0d\xae\xc3\x84\x89\x2a\xb9\x57\x28\xb9\x6e\xe8\xe9\x5e\xf9\x0c\x67\x46\xd7\xb8\x4e\xab\xb1\xd9\x5a\xdb\x24\x93\x3d\x9d\x93\x43\x0b\x74\xff\x0e\x92\x20\xaf\x5e\x38\x16\x3b\x0a\xc5\x25\xb7\xf7\x1c\x7a\xc1\x41\x8b\xf5\x75\x49\x73\xe6\xb7\xe6\xbd\xcb\x14\xca\x53\x1a\x1c\xc6\x46\x44\x8c\xeb\x0e\xe4\x60\xf1\xf8\x01\xfb\xf0\xab\xc0\x5f\xa6\x40\xb0\x8c\xd7\x9e\x2d\x2f\x68\xee\x8e\xeb\x09\x41\x9c\x16\x04\x71\xea\x37\xb9\x1e\x7b\x02\x58\x0f\x42\xb9\x27\x84\xdb\x73\xdd\x63\xf4\x48\x0c\x05\xc4\x43\x16\x23\x77\x76\xb3\xdb\x12\x84\xc1\xfc\x82\x1a\xa4\xaf\x97\x80\x37\xb1\x72\x73\xd5\x62\x9e\xf8\x0b\xef\x5d\xf7\xe4\xbc\xd4\xba\xc3\x70\x75\xbd\x8e\xb6\xd7\x76\x1f\x2a\x91\xd0\x82\xdb\x42\xd9\xee\xcd\x6d\xea\xbf\xe4\x57\xec\x0d\x6b\xb8\x0f\x75\x86\xea\x0f\xe1\x14\xd9\xcf\x5e\x55\xa0\x8e\x47\xa3\x58\x6e\xed\x08\x7b\x77\xd8\x02\xd9\xfe\x9b\x3b\x0c\x7d\xda\x82\xed\x84\x64\xde\xe1\xe3\x6b\x3c\xb3\xb5\xec\xc4\x8d\xbf\xcf\xe4\xb9\x37\xd1\x2e\x66\xb9\xbe\xb1\x16\x52\x4c\xa4\xdd\xc9\xe9\x31\xa3\x24\x0a\x77\x5f\xa0\xab\x48\xb5\x77\x8e\xe9\x31\x25\xf9\x1d\x16\x8c\xdb\xbc\xc4\xaa\xa9\x77\xb8\xf8\xa2\x89\xd1\x4b\x76\x9c\x89\xe3\xaa\x7e\xa5\x07\xcb\xbf\x6b\xa6\xe2\x04\x50\x09\x78\xbf\xb0\xbc\x62\x39\x38\xc4\xb4\xbb\x04\x8a\x32\x64\x09\x2c\x02\x54\x7a\xd6\xd4\xc8\x6e\x72\xfe\x2b\x9e\xde\x55\x4a\x2b\x10\x6b\xcc\x85\x9e\xcd\x28\xac\xb7\xf3\x0e\x8b\x21\x27\xe1\xf6\xf2\x9c\x46\xef\x9b\xd0\x16\x33\xd6\xdc\x5c\xa4\x93\x84\xdf\xb2\x1e\xcc\x23\xf7\x66\x37\x65\xb9\xff\x4d\x49\x7c\xf8\x03\x20\xc2\x9e\x72\xeb\x68\xab\x7e\x24\xe7\x1d\xfe\x20\xf3\x29\xb6\x60\x08\x70\xf2\x8e\xba\xd9\x02\xb5\x07\x02\x30\x77\x6f\xa0\xcb\x3f\x6e\xee\x96\xab\xca\xde\x56\x59\x6f\xc2\x41\x9e\xb1\xfc\x01\x2f\x1c\x82\xf9\x8d\x33\xeb\x10\x24\xc1\x26\x9c\x89\x4a\x31\x08\x7e\xcb\x26\xb0\xb2\xdc\xa6\x8d\x31\xd4\xf0\xf6\x82\x9d\x01\x7b\x77\x5c\xaa\x83\xe6\xdf\x24\x91\xf1\xf8\xde\x46\x4d\x1a\x84\x78\x73\x3d\xdc\x18\x94\x9b\x8b\x74\xde\xf4\xba\x83\x63\x0c\x3f\x92\xed\x8a\xb1\xdc\x9e\x33\x4f\xf5\x2d\xf7\x70\xad\x5c\xf0\x36\xeb\xcf\xbd\x24\x36\xa2\x6f\x98\x30\x05\xdc\x12\x01\x45\x72\x3d\x58\x81\x8d\x4b\x32\x1f\x9d\xc9\x60\x3d\x17\xa6\xde\x0f\x3c\xc5\x6f\xb5\x45\xe0\x6f\xa8\xdf\xbd\x02\x18\xac\xe0\xa3\xd4\x25\x7e\x7c\x04\x86\xcf\xda\x0e\x61\x28\xf7\x47\xbc\x43\x10\xba\x3f\x31\x2a\x0b\xe2\x72\xb7\x42\xeb\x4d\xac\x8a\xd9\xb7\x6e\xef\xbd\x69\x2b\xbe\x4f\x2b\x82\xfb\x95\xb9\x65\x34\x6e\xdf\xa7\x90\x65\x10\x22\x54\x0e\xac\x29\x37\x8c\x60\x24\x5b\xbb\x30\xa6\x7b\x05\xc8\x68\x70\xa9\x6f\x49\x85\x50\xfc\x06\x72\xf8\x7d\xe9\x4c\x6c\xbe\x60\x49\x90\x3a\x91\xd6\x8e\xe2\xba\xed\xbe\xa4\xb7\x6e\xc5\x8d\x5e\x2a\x4a\x78\x03\x4e\x9d\xf3\xbe\x01\x89\x93\x22\xc2\x84\x9a\xeb\xed\xc6\xb2\x39\xb0\xea\xdc\x86\x5e\x2a\x12\xdc\xb7\x41\xa3\x9e\x9f\x5b\x53\xb4\x9b\x4a\x4a\x5c\x93\xf8\xdd\x68\x81\x01\xaa\xdb\x7c\x33\x2c\x29\xcc\x9f\x1e\x51\xcc\x9f\xda\xfa\x6f\xe2\x45\xac\xcc\xd6\x6e\x2e\x0e\x98\x4a\xfe\x7e\x02\x9c\x74\x85\x61\x74\x89\x29\x8f\x57\x9d\x59\x92\x11\x98\x6e\xc6\x63\x81\x17\x7b\x95\x38\x89\x0a\x8f\xf3\xf3\x99\x40\x20\x47\x88\x1c\xfa\x74\xf4\x0a\x0e\x9f\x49\xea\xe0\x8c\x36\x5f\x2a\x5a\x08\x6e\x12\xd4\x19\x3d\x79\xbf\x0e\xec\xdf\x03\x32\xcc\xf4\x0d\x02\xe2\x57\xea\xc7\xf6\x44\x2d\x58\x67\xf1\x7a\x03\xca\xd1\xcc\xe5\x01\x5c\x9f\xb0\xc6\x42\x26\xa8\xd0\x9b\x8d\xd0\xa4\x40\x6f\x31\x70\xe5\x21\x9f\xad\x7e\x93\xc7\x82\x3c\x1e\x1b\x2a\xf1\xd6\x91\x6d\x00\x76\x70\xd0\x28\xc4\xbb\x3f\xa2\x05\x8c\x6c\x64\x9f\xe3\xd4\x4e\x5e\xcc\xf0\x4e\x0b\x2e\xdd\x45\xe4\x26\x15\x74\xeb\x40\x38\x7f\xe0\x52\x46\x25\x3c\xc9\xe1\x98\x78\xb2\xe4\xe6\xe2\x59\x09\x1c\xe4\x78\xbc\x4b\x20\xda\x3c\x24\x82\xd3\x42\xfc\x98\x9f\xd6\x70\x66\x4a\xe8\x66\x95\x4d\x8b\xe6\x2a\x5b\x59\x34\x37\xe2\x41\x1f\x12\xae\x98\x13\xf5\x41\xa9\xd2\x00\x6f\x01\xdd\x65\x04\xf3\x53\x48\x1f\x7b\xf8\x43\xf3\x07\x5a\x5b\x9d\x8f\xdd\x7b\x8a\x35\x46\xec\x49\x9b\x89\x10\xc4\xda\xab\x8e\x44\x75\xdc\x3a\x50\x43\xa8\x8e\x5b\x07\xfa\x18\xc5\x71\x8b\x6c\x97\xe2\xb8\xd5\xbc\x8a\x8f\x01\x99\x3a\x02\x9e\xb0\x02\x83\xef\x4f\x45\x22\x75\x5f\x60\x55\x46\x49\x3f\x24\xa2\x1d\xb0\x2a\x4a\xde\x16\x6f\x24\x50\xf2\x76\xf7\xf4\xad\x9a\x4b\x41\xdc\xaa\x5f\x9c\x82\xb8\x29\x42\x64\x9f\xa6\x95\xbd\xfa\xa2\x8e\xef\x36\x37\x2f\x77\x35\x47\x7d\x69\xcf\x57\x9b\xc3\x15\x43\x21\x2c\x83\x4b\x15\xee\x46\x19\xdc\xd2\x6c\xdc\x9d\x31\xab\xea\xb1\x81\x7e\xa4\x92\x0c\x4f\x7b\x46\xec\x39\x60\x24\x85\x6c\xc0\x7d\xd8\x95\xcf\x9c\x2c\x71\xc1\x22\x33\x46\x13\x3f\xa4\x55\xd3\x10\x69\x0d\x5d\x2d\xe3\x0f\x46\x5f\x6f\x83\x3f\xdc\x29\x58\x87\x7f\x27\x20\x6a\xda\x96\xca\x2a\xcd\x6f\xa8\x50\x19\x7f\x67\x9d\x62\xc8\xd4\x08\x85\xac\xf1\x4c\x2b\x62\xfb\x0c\x9b\x84\x3c\x3e\x5c\xd9\xd3\x83\xf9\x6c\x2e\x59\x34\xe7\x51\x66\x37\xeb\x99\xa4\xcc\xee\xee\xc8\x17\xa8\xae\xce\xc1\x67\x62\x2f\x11\x7c\x58\x69\xa9\x82\xdb\xa8\x9b\x5b\x54\x1c\x29\x9b\x5b\x92\xe7\x50\xe6\x77\xd8\xd8\x0c\x6c\xd3\xc6\x5a\xfa\x78\xe6\x5a\x81\x35\x02\xa8\x8e\xbb\x47\x63\x41\x58\x56\x23\x91\xb5\xf5\x71\x87\xde\x19\x0b\xe4\x5a\xec\xe5\x21\x82\xe3\x70\x1b\x3f\x81\x2a\xc0\x06\x45\x2a\x02\x86\x9f\x8f\x09\xa1\x01\xa0\xd6\xd8\x38\xae\xd6\xd4\x85\xe0\x3d\x28\x52\x29\x30\x2d\x82\x36\x20\xf3\x0f\x0a\x93\xc6\x3e\x0a\xe9\x66\xad\xb1\x8f\x96\x56\xa9\xd1\x49\x05\xe3\xe9\x37\xcb\x21\x98\xfa\xa9\x10\x09\x33\xa6\x46\x6e\x51\x0e\xa3\x2c\xee\xfe\x8a\xf1\xb8\x6f\x37\x44\x34\x78\xe3\x21\xfa\x5f\x70\xd9\xe6\x33\x74\xd7\x70\x9a\xc7\xaa\x74\x86\xf9\x3e\x57\x6c\x93\xcd\xc5\x0a\x16\x7e\x0b\x5d\x20\x62\xc8\x86\x7e\xc7\x47\x35\x4a\x2f\xde\x73\x87\x9f\x99\x67\x38\xa5\xbb\x7f\xc7\x3a\x18\xe3\x8e\x01\xed\x0b\xce\xec\x9a\xee\x18\xdc\x01\x49\xbf\xec\x47\x24\x38\x51\xc1\xa7\x06\x6e\xa5\xfc\x7a\xa3\x06\x6e\x1d\xa8\xd1\x94\xc0\xad\xea\xc1\x8f\x29\x5c\x35\xe1\x52\xea\x36\x47\xee\xf2\xe7\x41\xbe\x10\xc3\x30\x67\x9a\x85\x8a\x8a\xb6\xd5\xc2\x5d\x14\xb1\xad\x26\x2d\x7a\x5e\x0e\x34\x36\x03\x4b\xd8\x6a\xc5\x7f\x0c\xa0\xf4\x10\xbe\x40\xbc\xfb\x6c\xa4\xb2\x53\xb2\xa2\xfe\xf0\x07\x2b\x11\x3b\x00\xb7\x34\x9c\x9d\x16\x4f\x9d\x69\x94\xb2\xad\xa3\xdb\x58\xd3\xd4\x7e\x7e\xad\x27\x33\xbf\xcf\x4e\x45\x99\xdb\xa2\x49\x9c\x32\xb7\xbb\x55\xe3\x85\x45\x21\x0d\xbd\x5c\xdd\x3b\xa0\x70\x2f\xf6\xd0\x48\xc0\xfb\x72\x8f\x2f\x82\xb9\x5f\xfd\x9b\x7a\xf0\x2c\x86\xab\xd9\x9d\x62\xb8\xc5\x13\xf4\xca\x52\x51\x7f\xa8\x85\x5b\xa9\x60\xdb\x28\x85\x5b\x0d\x3c\xb2\x14\x6e\x84\x72\x53\x0b\x37\x7b\xb7\xd3\x5a\xb8\xde\xef\x78\x65\xbb\x68\x4b\xaf\xe1\x23\xce\x3b\x71\x31\xe1\xf0\x7b\xc2\x78\x90\x8b\xa8\x8a\x5b\xbd\x3d\x4a\x51\xdc\xa2\x5a\xf0\x26\xa9\x23\x03\x47\xf2\x57\x50\xf3\xe5\xb6\x04\x45\xb2\xdb\xeb\x05\x09\xbd\x96\x2f\x37\xfb\x0e\x01\x9d\x13\xe2\x20\x7f\xcf\x81\xd8\x74\x95\xb5\xc5\x34\x5f\x24\x28\x82\x89\x64\xf3\xda\x68\x5f\x6f\x4e\x40\x10\xde\xc8\xfa\xc2\x04\xb3\xf4\x04\xe1\xe6\x25\x91\x9a\xf1\x67\x2f\x25\xe6\xcc\x12\xf1\x6a\x14\xd5\x21\x4d\x3d\xde\xaa\x9d\xed\x35\xd6\x24\x26\xa2\x81\x14\x01\x83\x12\xbc\x53\xd3\x34\x25\x78\xcb\xe1\x8a\x30\x8f\x46\x58\x72\x94\xe0\x85\x36\x50\x81\xb7\x8e\xe1\x33\xe1\xd8\x72\xdd\x28\xbb\x2b\x17\xa2\xec\x6e\x51\x07\xb1\xec\x6e\x37\x71\x22\x75\x77\xf3\xaa\x76\xab\xdb\xc2\x25\x61\x3a\x8d\xe0\xf3\x17\xdb\xa9\x71\xc9\x6f\x0d\x48\xd1\xa4\x92\xed\xdf\x2d\xf3\x82\xa1\x0e\x5e\x8a\xf0\x56\x9d\x2c\x2f\xfa\xac\x06\xfd\x17\x15\xd6\xb8\x5c\xcb\xf1\x2e\xc3\x97\x5f\x85\x04\x11\xa7\xc5\xd8\x40\xa4\x39\x36\xcb\xd8\x3a\x6c\x31\xf1\xbf\x75\x77\xbb\x1e\xb5\x37\x04\x01\x04\x36\x6a\xea\x56\xad\xb8\xaf\x39\x5b\x03\x0a\x28\xb7\xa3\x3b\x06\xdb\x84\x89\xe1\xb5\x58\x5d\xac\x95\xfb\x89\xc6\xb2\xbc\xa4\x5d\xf3\x5e\xc1\x6b\xdd\x3a\x5d\xd3\xd6\xd1\x8d\x08\xf5\xd7\x50\xd0\xb5\xec\x0b\x49\x75\xfa\x15\xe6\x86\xe6\xb3\xf9\xa0\x98\x2d\xf7\x13\x95\x78\x5f\x6e\x6d\x1c\x02\xad\xc3\xfa\x84\x3f\xa5\x6f\x8c\xaa\x7a\x8d\xfe\x0c\x78\x20\x69\x68\xff\xa4\xec\x6e\x24\x95\x7b\x11\x3a\x86\x25\x12\x28\xc1\x5b\x2d\xac\xf2\x92\x7f\xcd\x2c\x86\xaf\xd7\x3c\xf4\xf6\x52\x83\xb7\x58\x13\x87\x12\xbc\xfb\x07\x5b\x80\x2d\xd5\x8f\x02\x5b\x00\xe0\xf0\x90\x79\xec\x15\x30\x60\x6a\x2f\x02\x86\xf1\x6f\x16\xe7\xd5\x35\xf3\xaa\x92\x23\x60\x51\x9a\xb7\x8e\x39\xbe\x25\x78\xb8\xa4\xa7\x67\x43\x8f\xb4\xb4\x45\xd5\x1d\x61\xd3\xaa\xbd\x16\x3c\x7a\xcd\x0b\x1b\x8b\x22\x73\x80\x75\xa4\xa8\xda\x5b\x96\xf0\x37\x21\x3e\x6c\xcc\xa2\xbd\xc9\x5b\x01\xd4\xe2\xdd\x6b\xa2\x35\x21\x4a\x7a\xfa\xac\xc5\x6b\x19\x25\x6a\xf1\x16\xca\xec\x36\x6b\xf1\x1a\x1b\xfe\x1a\xac\xa4\xf7\x96\xfa\xbb\xc5\x8c\x97\x96\xdf\x35\xfd\x37\xe5\x77\xab\x85\x4e\x5e\xaf\x50\x06\x9c\x57\xcc\x83\xd5\x91\x0d\x47\x9d\xe8\x55\xee\x11\x41\xb0\x25\x7b\xb3\xfc\xfd\xc4\x1e\xd3\xfa\x13\x38\xe8\x57\x92\x79\x97\xf4\x71\x70\xba\xfd\x2c\x44\x77\xff\x8e\x24\x77\xd8\xda\x83\x81\xdc\xff\x7e\xf4\x2c\x48\x9e\x3f\x60\xde\xf2\x07\x1d\x2b\x3e\xbf\x0e\x41\xb7\x5c\x53\x31\x20\xe0\x3d\xa1\xe7\x6e\x3e\xd2\x50\xf1\x52\x06\xf5\x7b\xa7\xbe\xa6\xf7\x8c\x13\x4a\x57\x38\x9b\x93\x20\xc7\x3c\x60\xa2\xee\x17\x71\xc8\xf0\x14\xab\xf7\x6a\x36\xb7\x7a\x6f\xdc\xaa\xa0\x7c\x6f\xd1\x50\xf2\x5e\x41\x73\x7c\x11\xb9\x51\x2e\x5e\xf3\x12\xe8\xcd\x8d\x92\xbd\xda\xa8\x5e\x8d\x08\xd3\x67\xaa\xf4\xb9\xc7\x08\x37\xe6\x67\xb6\xcc\xae\xf7\xfc\x29\xa1\x1b\x79\x08\xa8\xa0\x5b\x8d\x24\x79\x6f\x3c\x76\x88\x05\x54\xd0\xcd\xca\xd1\x54\xd0\x4d\x71\x73\xe3\xf5\x6e\x88\x71\x1b\x2f\x6e\x5e\x53\x82\xbe\x4f\x4c\x96\xb5\x3e\x31\x59\x7f\x51\xaf\xf0\x54\x3f\xca\x18\x40\xcd\xcc\xf3\xad\xf8\xc3\x6d\x13\xe0\x83\xd8\x33\x85\x15\x62\x8f\x51\xd9\xaf\xa1\xa8\xba\x4f\x5f\x13\xb4\x19\x76\x60\xa5\x5d\x9d\xc3\xaf\xc9\xda\x74\xfd\x51\x6a\xb7\x9a\x7c\xf1\xb5\x32\x9e\xf7\x42\xde\x2d\xed\xd4\x19\x2d\xc4\x62\x27\x6f\x96\x01\x09\x12\x59\x06\x48\x9d\xd4\x0f\x33\x08\x90\xae\xaf\x47\xb1\x5c\x5c\x54\xfd\x08\xf3\x73\xf7\x65\xe3\x3d\x37\x03\x3a\x35\x71\x2b\x9e\xca\x4e\x4d\xdc\x4a\xae\x8c\xfe\xb3\x0c\x2e\xdd\x9a\x3c\x9e\x9b\x21\x9d\x32\xb8\xbb\x27\x5f\x1a\x2d\x18\x2f\x19\x03\xd9\x78\xf6\x6c\x6c\xb8\xf5\xa8\x89\x4b\x0d\xd7\x4e\x4d\xdc\xca\xb5\xfb\x4e\x4d\xdc\xfd\x95\xcd\x59\x6c\xb2\x05\x32\x50\xb2\x2b\x9c\x7f\x9b\xfe\x75\xab\xe0\xa6\x56\xe9\x09\x9d\x9f\xbc\x06\xdd\xaa\xb7\xa4\x60\xea\x54\xbd\xdd\x40\xff\x2e\x48\xa5\x1f\xe6\x6f\x45\xce\xeb\x14\xc2\x4d\x18\xa7\x3b\x85\x70\x2b\x37\x01\x3b\x85\x70\x73\x77\xed\x48\x20\x84\xe5\x77\xeb\xe0\x4e\xe7\x85\xf3\x96\x88\xe3\x4e\x1d\xdc\xca\x3d\xde\x7e\x78\xbb\x13\x8f\x5c\x3f\x08\x7c\xc5\xd6\xd7\x0f\x92\xcd\x4f\x17\x48\x1e\x57\xaf\x08\xf5\xc3\xa2\x7c\x5c\x7f\xed\x07\xe5\xf6\xa8\xa6\xdd\x0f\x0b\xf4\xb7\xca\xa6\x21\x1c\x70\x2f\xaa\x53\xee\xb6\xce\xe2\x73\xe1\xd9\x06\xac\x21\xd3\x6b\x18\xbe\xbb\x8d\x3d\x06\x95\xc1\x4d\xb1\x5a\xdc\xe7\xea\x78\x2c\x0f\x23\x38\xa5\x31\xba\xf5\x6e\x07\x31\x1b\xfd\x20\xff\xfb\xf4\x19\xa9\x01\x3b\x5c\x3f\xb4\x82\xe3\x35\xee\x07\xc1\x66\x4b\x40\x19\x6b\xc6\x4d\xc3\x4e\xed\xdb\x5c\xc5\x0b\x84\x86\x19\xcf\x0e\xcd\x70\x5e\x1f\x69\x4c\xb6\x89\x9e\x7c\xd3\x45\x4f\xa0\xdc\xe3\xc4\xd3\x29\x32\x03\x51\xda\x9d\x5a\xb7\x95\x50\xda\x7e\x60\x47\x98\xae\x61\x4b\x0c\x79\x39\x89\xee\x31\xf1\x30\x70\x7b\x84\x8c\xa3\xfd\xf0\x6e\xa7\x33\xea\xce\x88\x59\x90\xf3\x67\x8a\xda\x98\xd8\x89\xfd\xea\x87\x39\x7f\x0e\x96\x89\xc4\xc0\x0d\x8c\x7e\x98\xcd\x60\xd0\xcf\x08\xb8\x30\xf2\xe0\xa2\xb3\xe7\x05\x21\xe1\x67\x03\xa5\xd6\xc6\x8c\x86\x54\xdf\x83\xcb\xad\x90\xe9\x11\x99\xd2\x96\xc6\xfe\xc2\xdb\x67\x7c\xc4\x42\x3d\x16\x13\xb7\x56\xa3\x5b\x03\xca\x08\x97\xe9\x14\xc3\xdd\x2f\x60\x0a\xc9\x58\x49\x78\xd1\x0f\x73\xb1\x8a\xf9\x54\xdd\xc7\xb8\xdf\x8f\x49\xdc\xe3\x64\xa5\x5c\x23\x99\xe2\x68\x18\x21\xdc\x20\x73\xae\x36\xc7\x23\xe7\xea\x14\x05\x34\xcf\x37\xbb\xd5\x3c\x7f\x30\x9c\xc9\x58\xbb\x5b\xb4\x62\x52\xac\x8f\x68\xe3\xe9\x51\x5b\x4e\x84\xc9\x46\x86\xf8\xee\x18\xea\x41\xf1\x95\xc1\xe4\xb4\xde\x1c\xbc\x04\x85\x0b\xcb\x85\xdb\x8d\x07\xb8\x79\x8c\x82\x83\x0b\x2a\xeb\xdc\xb4\x68\x82\x5e\x3a\x18\xe3\xc3\xd6\x44\xb7\x2a\x70\x1e\x2a\x58\x7b\x91\x42\x62\xd1\x48\xee\xcc\xa9\xf8\xec\x74\x8d\x6d\xee\x1e\xc9\x33\x23\xd8\xd1\x2d\xd9\x11\xa6\xe8\x42\x2e\xa1\xe9\x66\x50\xf4\x66\x0a\x03\x4b\xe6\x89\x15\x5e\x4e\x69\x92\x5a\x22\xc7\xa6\x18\x62\x26\xd6\x12\x3f\x70\x37\x66\x7c\x77\xf9\xb6\x53\xae\xb7\x4e\x77\xea\x54\xac\x14\x8d\xbd\x9f\xda\x24\xd0\x97\xc7\x35\x5e\xb8\xaf\x2c\x77\xe0\xe6\xca\x74\x3f\xa9\x8f\x93\x05\xd0\x15\x00\xa2\x5f\xbd\xc8\x41\xa6\xb8\x6c\xca\x75\xf8\x4e\x79\xdd\x3a\xc5\xc4\x3b\x58\x08\x5d\xdd\xe2\x2b\x98\x75\xbb\x46\x9f\x35\x76\x78\x18\xc9\x27\x74\xb8\xde\x3b\x86\x60\x3c\xac\x20\xb8\xb6\xfb\x71\x07\x9a\x38\x9e\xa2\x82\xcf\x64\x6a\xf0\x38\x3e\xf2\x6d\x1a\x60\x04\x99\x9e\xcc\x27\x60\x40\x83\xf0\x10\xb0\xec\xb0\x82\x74\x26\xf5\x80\x18\x52\x1d\xc5\x89\xe1\xdf\x03\x9c\xb4\x36\x55\xbb\xc7\x43\xd1\x60\xd0\xd3\x8b\x93\x52\x6c\x7b\x1d\x81\x69\x60\x1d\x09\xec\x7e\xe3\x70\xd0\xab\x26\xff\x20\xa9\x2f\xb7\x36\xa5\x90\xb8\xa8\x03\x7e\x0a\x09\xb2\x41\x93\x35\xb4\x78\x51\xd7\x83\x95\x50\x4b\xb7\xca\x00\x12\xf1\xd7\xd8\x9d\x7a\x32\xa1\x3b\xf7\xc3\x3a\x45\x76\xab\xf0\xa3\xae\x6e\x95\xcb\x27\xcd\xff\x78\x25\x3b\x65\x75\x8b\x14\x82\xaa\xba\xc5\x73\x92\x0e\x65\xa8\x18\xc2\x89\x40\x55\xd3\x21\xf8\xf9\x4a\x6f\x37\x41\x6e\x3d\x25\xec\x04\x8e\xa1\x24\x01\x70\x92\xd5\xf5\xb9\x15\xdd\x53\x8a\xc1\x59\x46\x12\x29\xaa\x9f\xa1\xe4\x3a\x75\xe2\xbd\x53\xf1\x59\x51\xa9\xf9\xe2\xce\x54\x07\x79\xa1\x04\xcc\x2a\xe3\xb3\x82\x42\x58\x6f\x17\x95\xa7\xa7\x1c\x10\x61\x1d\x94\xba\x9b\x60\x4e\x22\x74\x6b\x42\x20\x52\x44\x6b\x75\x7f\xd0\x5f\x16\xcd\x61\x0f\xa0\x4e\x2a\x0c\xe1\x06\x58\xa0\xb7\xd9\x9c\xbc\x7e\x93\xdd\x4f\x86\x64\x35\xc7\x88\x90\x2c\xb7\xa0\x20\xcb\x73\x10\xa3\x0c\x6f\x13\x88\x51\x60\xa6\xfa\x0b\x03\x0e\xd6\x41\x7a\x87\x39\xfd\x3b\x42\x9e\xcb\x28\x70\x51\x50\xd5\xfa\xbc\x83\x08\xba\x9e\x14\x1e\x26\x33\xac\x4e\xca\xbf\xc7\xa4\x6c\xa1\x61\x94\x03\x47\x55\xde\x3a\xdd\x0d\x24\x89\x2c\x9c\x6b\x4c\x90\x79\x28\x48\x38\x59\x7c\x14\x9e\x80\x64\xe2\xf6\x69\xaf\x52\x23\xbf\x27\x77\x0b\x94\x89\x8a\xbb\x95\x32\xc1\x9d\x22\xbb\x25\xf6\x0e\xeb\x01\x81\xd2\x3d\x35\xbd\xd3\xfd\xbb\xfb\xb7\x3d\x29\x3f\x2c\x7a\x36\x09\x20\xe1\x7a\x9d\x32\xbb\x65\x38\x64\x97\x41\xb0\xa6\x1e\xe4\x8f\x79\x11\xa1\x3e\x97\x3f\x90\x08\x35\xf9\x77\x0e\x66\xb6\x23\xce\xdf\x62\x7d\x5d\xb4\x77\xf7\xb9\x4c\xba\xc4\x8a\xee\x34\xd8\x18\x84\x03\xe9\x06\x55\x75\x2b\x85\x72\x7a\xf2\x8e\x69\x13\x2b\xb0\x26\x50\xbc\xbd\x53\x61\xb7\xce\xe5\xdf\x9d\x91\x8d\x29\x62\x93\x7c\x66\x5b\x26\x33\x0a\x8b\x83\x68\xa0\x0f\xa3\x08\xff\x11\x27\xc3\xae\xa4\x0f\x9e\xea\xc1\x64\x93\xcf\xc6\x42\x7a\x78\xb9\x89\x1a\x74\x00\x6b\x00\x86\xb9\x4e\xc1\xdc\xba\x90\x66\x93\xe9\x02\xd1\xef\x7a\x32\x6b\xbb\x32\x87\x55\x72\x15\xea\x29\x8c\x5b\x0f\xb8\xa2\x85\x71\xd7\xe1\xdf\x2b\xcf\xfe\xbd\xf3\xcc\x64\x75\xdc\x77\xd1\x6b\x11\x0f\x2c\x71\x41\xb9\xa7\xd4\x4a\x4f\xcb\x69\xf8\xf7\x80\x3e\x00\x59\xb1\x3a\xbb\x55\xa2\x82\xdb\x52\x3f\x77\x7f\x46\xfb\x8f\xe9\x17\x69\x1f\x4e\x0d\xa1\xf3\x81\xc3\xc1\xe9\x53\x38\x32\x9a\x5f\x6d\x12\xa4\xc2\x94\x3e\xaa\x58\x6e\x3e\xd1\x61\x0b\xee\x4e\x05\xdd\xba\x0e\x5b\x6b\x9b\x16\x20\x38\xf9\x29\xae\xda\x13\x7e\xfd\x38\x4a\x06\x8c\x23\x55\x47\x75\xdc\xe2\xd1\x3d\x35\x85\xbb\x7f\xf8\xf8\x97\xe0\x3c\xcd\x71\x25\xa2\xc2\xce\x31\xc7\x74\x0a\xe2\xa6\x1a\xa7\x89\x60\x70\x32\xfe\x77\xea\xde\x56\xee\x43\xf7\x44\x7e\x89\xc3\xb1\xf1\x75\x50\xec\xa4\x5b\x02\x37\xf0\xe0\x72\x34\x46\xe6\xee\x12\x7e\xe5\x4e\x05\xdc\xba\x50\xb6\xa8\x80\x5b\x97\xa7\x22\x8a\xdb\xd1\xcf\x1d\xb0\x64\xe0\x5b\x5b\x87\xb4\xef\x0e\x70\xf8\xa2\x28\xe9\xf9\xbc\x63\x97\x58\x9e\xe9\x1e\x9a\xe7\xfd\xd1\xf7\x2a\x8d\xc4\x45\xb1\x10\xe7\x92\x1e\xfb\x22\xa5\x21\x74\x7b\xb9\x33\xd6\x66\x69\x92\x91\x27\x00\x0a\xd4\xcd\xa0\xd4\x3c\x42\x06\x66\x77\x51\x9a\xd4\x0e\x87\x5b\x0e\x4f\x5e\x02\x34\x78\xb2\xf3\x7a\x1d\xc4\x8f\x38\x0f\xd1\x80\x6a\xa4\xee\x19\xec\x79\x49\x4f\x5e\x80\x85\x4e\x45\xad\xd9\xba\x24\x1b\x38\x29\xc8\x76\xdb\x13\x2a\xfc\x42\xe6\xa3\xee\x6c\x25\xf5\x5a\xcf\x5e\x94\xc2\x6f\xd5\x2d\x42\x9b\xfa\xb7\x85\xd3\x3a\x25\x6a\xf7\x72\xed\x43\x5d\x07\x92\x94\xf5\x39\x54\xfb\x63\x62\x1c\xc7\x8c\x9f\x81\x68\xa6\x4e\x2d\xda\x2c\x44\x73\x22\x09\x86\xdf\x53\x69\x85\xdc\x05\xdd\xba\xb4\xdc\x52\xed\x94\xa5\x9d\x44\x32\x76\xab\xd2\xae\xe2\xdf\x9b\xbb\x69\x47\x5c\xc3\x6d\x7e\xf4\x41\x64\xb3\x23\xd0\xaa\xf8\xf7\xcb\x05\xda\xfa\xfe\xf1\xd5\x07\x20\xcf\x09\x50\x15\x9f\x49\x66\x88\xc4\x91\x75\xfa\x63\xbb\xea\x19\x16\xbe\x8a\x3f\xe8\xb2\x81\xb2\xe5\xac\x0d\x06\xa1\x92\x3a\xb6\x59\x85\x8d\x32\xb6\xbb\x39\xfd\x66\xcd\x41\xf1\x15\xfb\x57\x7c\x3e\xfd\xca\x26\xce\x04\xc0\xa2\xce\x77\xb0\x8d\x3a\xb6\x95\x18\xde\x9e\xad\xd1\x42\xe4\x62\xcf\x24\x68\x8a\x89\xc0\xdb\xcb\x10\x20\xde\x04\xcb\xfe\xa0\x0e\x2e\x68\x29\xd2\x32\xe3\x07\x69\x18\xec\x39\x13\x41\x50\xf0\x36\xf6\x4c\xc4\x75\xf7\x19\xcb\x40\x75\x22\x18\x06\x28\xdf\xd2\xb3\x99\x08\xb9\x2f\xd6\xb3\x41\x71\x2a\x44\x59\x7f\x02\x8e\x9b\x9e\x8d\x90\x53\x09\xb2\xe2\xed\x88\x26\xf3\xc7\x57\x0f\x28\x90\x7b\x82\xfc\x1a\x3d\xc3\xd0\x09\x47\xef\xd9\x4c\x86\x6a\x28\x56\xc2\x4d\xd1\x2b\x90\x42\xc8\xc8\xde\xba\xc5\x4b\xd1\x73\x53\x71\x47\xaa\xc9\xde\x49\xeb\xce\xca\xa2\x71\xe2\x48\x73\x86\xd0\x21\xaa\xe7\x16\x25\x27\x8a\xe7\xee\xe6\xac\xd0\x5b\x69\x9c\x71\xeb\xe5\xf6\x29\x5a\x35\xd0\x4a\x2c\x31\x2c\x01\x23\x7d\xb7\x46\x2e\x26\xe9\x4e\x59\xdc\x8a\x1f\xa6\x5b\x15\x77\x74\x81\x80\x09\x61\xb9\x58\xd3\xd4\x77\x17\xd8\x21\x94\xe8\x0b\x59\xd5\xbf\x3b\x91\xc8\x1b\x61\xb7\x86\x28\x43\x5a\xa9\x72\x9b\x92\x13\xb1\x6a\x3e\x51\xcd\x3d\x0f\x8d\x65\x8c\x31\x04\xae\x1f\x29\x58\x4e\x3f\xd2\x86\x2a\xac\x48\x85\xbf\xe0\x86\xd9\x88\x6c\x9c\x02\x3d\x93\x0a\x7f\x35\x9f\x09\x09\x70\xb6\x38\x08\xba\x98\x84\x53\x00\xb3\x7c\xa7\xfc\x6d\x5d\x62\xba\x01\x08\x0e\x40\xca\x60\x2f\x05\x75\xaa\xdc\x56\xd2\x71\x76\xaa\xdc\x16\x35\x8f\xbc\x0c\x6b\x70\xa9\x9b\x8b\x17\xe9\x9f\x25\x6a\xb5\xaf\x64\xaf\x8c\xb9\x15\x72\x74\x0f\xb2\x09\x24\xa6\xdf\x70\x77\x45\x0c\x5e\x4a\xf5\x8e\x8c\xe2\xbf\x04\x1f\x81\x09\xf5\x38\xbe\x25\x79\x0b\x39\x03\x9a\x1e\x05\x6b\x11\xcd\xf3\x47\xca\x3f\x7d\xe1\x02\xb3\x1b\xbe\x19\x74\x3b\xa4\x6c\xa7\xe9\xd5\xf8\xfb\x29\x95\x85\xd1\x51\x8c\xb6\x1c\xae\xd5\xdc\x10\x6e\x92\x97\xb5\xe2\xec\x13\x80\xbd\x04\xe1\xa9\xdd\x9a\xb9\x93\xf1\x70\xb9\x91\xdc\x2a\x5e\x92\x81\x30\xac\x8b\x06\xe8\xd7\x0b\xb5\x25\xcb\x9e\x05\x02\x51\xda\x4b\x08\xca\x9e\x51\x09\xb2\xec\x79\xd8\x16\x2a\x35\x6c\x0b\x72\x20\x0b\x50\x7c\xd6\xea\x7f\x3d\x1b\x88\xc0\xbd\xc3\x4e\x25\xda\xba\xc4\xd8\x9f\x85\x68\x79\x86\x68\x88\x34\xe6\x84\xf2\xac\xdd\x56\x71\xa4\xd3\xdb\xed\x65\x12\xc1\xdb\x85\xb0\x25\x69\x65\x7c\x96\xa4\x5d\x9e\x22\xeb\xd9\xbb\xc1\x04\xf2\x11\x09\xd5\xf3\x1d\x18\xee\xcb\x09\xfe\x39\x25\xd7\xc0\x36\xdc\xac\xc1\xe3\x61\x16\xa8\xe1\xb3\x77\x63\x7d\x8e\x5d\x60\x64\xb2\x46\x54\xb9\xd6\xc3\x35\x15\x99\x0a\x49\x7e\x57\x34\x66\xfd\x12\x66\xf4\xf2\xe5\xf7\x9a\xec\xbb\xfc\x17\x93\xbd\x5a\x1e\x85\x63\xf7\x54\x99\x12\x71\x79\x4b\x22\xad\xf9\xde\x75\x46\x09\x35\x96\x10\x46\x7a\x61\x1f\x31\x09\x2e\x88\x5b\x58\xc5\xf3\x24\xbb\x07\x01\xa8\x15\x9b\xc9\xb8\xdf\xa9\x15\x5b\x09\x3f\xec\xd6\x8a\x1d\xc4\xf2\xf7\x72\x48\x0d\x21\xb9\x16\x88\xc5\x7d\xdf\xad\x0f\x4b\x60\x62\x2f\x5e\xc3\xea\x3e\x6b\x58\xef\x36\x90\x83\x21\x82\x14\xb9\x3e\xcb\xa3\x88\x6c\x32\x17\x49\x2f\xa1\x98\x83\x4e\x94\x8e\x2d\x54\x67\xee\x51\x39\x96\x3b\x81\xbd\x84\x66\xce\x11\x2e\x11\xbe\xd7\xfd\x05\x39\x75\xd8\x17\x16\x9a\xc4\x0e\x58\xf0\x55\x96\x52\xb2\x68\xed\xf3\x44\x63\x67\xe5\x79\x39\x06\xdd\x86\x6e\x0d\xe6\x14\xd8\xef\xb1\xfc\x41\xaa\x57\xfc\xe1\x45\x65\x64\x85\x45\x36\x02\xcd\x88\x12\xad\x44\x68\xf6\x12\xfa\x34\xba\x53\x31\x9d\x93\xd6\x11\x8a\xb4\x16\x4a\xd9\x74\x6a\xb1\x16\x6e\x3d\x77\x4a\xb1\x56\x8f\x2d\x95\x58\xf3\xf0\x39\xd4\x66\x17\x58\xe5\x0a\x2e\xa4\xc6\x18\x34\x47\x0d\xd6\x5e\x5d\xac\x12\xaf\xe5\xd0\x82\xaa\x8b\xac\x35\xbd\x98\x94\xc2\x89\xa0\x07\x13\xb4\xd4\x4b\xd5\x58\xf1\x6d\x22\xe5\x5e\xaa\xb8\xcc\x6c\xb8\xfa\x84\x27\xac\x5b\x85\x35\x75\xd7\xd2\x0c\x9a\x42\xbd\x2c\xc1\x52\x8b\x9f\xa1\x58\xc7\x33\x41\x38\xf1\x3c\xfd\xc8\x16\x92\x65\x0e\x4c\x54\x62\xd5\xca\x47\x25\xd6\x8c\xbb\xbf\x5b\x57\xb5\x6a\xea\xa1\xae\x6a\xb6\xc2\x47\xa7\xb0\x6a\x91\xb9\x17\xac\xec\x24\x47\xec\xd6\x58\x5d\xee\x29\xda\xf3\x8a\xbf\xeb\x66\x10\xde\x3d\x36\x9b\x15\x72\xd9\x9b\x3b\xd6\xdd\xba\xaa\x8b\x8c\x3d\x9d\xc2\xaa\x49\xfb\x8c\xc5\x54\xcd\x52\xd2\xa9\xa6\xba\xbf\xf2\x17\x28\xab\x1b\x34\x28\xfa\xd0\x6d\x1d\xab\x65\x74\xd2\xea\x67\x4f\xe5\x66\xbc\x85\x1c\x67\xbd\x44\x2e\x61\x8f\xcc\xf0\xc8\x88\x5c\xa1\x27\x23\x7f\x14\xae\x81\x4b\xee\x28\xad\xba\x7f\xa0\xdf\xa9\xa5\x8f\xbe\x66\x4c\x91\xbe\xcc\xc4\xaf\xe1\xa7\x78\xc3\xbb\xda\x5c\xf8\xf8\x51\x1c\x06\x80\x45\x62\x27\x95\x60\x8a\xb1\x56\x79\x69\x21\x29\xff\x72\x9b\x97\x96\x68\xf1\xd4\x8c\x1f\xc2\xd0\x54\x8e\x12\xe1\x62\x84\xbc\x66\x38\x2b\xb6\x6a\x95\x29\x56\x97\x77\xb6\xc1\x96\x45\x4d\x2b\xcd\x6b\x79\x2b\xdc\xd6\xae\x12\x8e\xb0\xc7\x7b\x16\x96\x33\x61\x49\xd8\xe3\x17\xf2\x5c\x94\x6f\x45\x02\x2c\xd8\xe6\x97\xa7\x82\xa4\x50\xcb\x43\x61\x80\xa1\xd6\x1e\xaa\xba\xe6\xee\x9c\xcc\x01\xa9\x1a\x52\x2c\xa6\xe6\x81\xe6\xd2\x96\xea\x51\x94\x78\x8d\x06\xd4\xa3\x69\x8e\x26\x82\xf9\x3d\x5b\x19\x23\x8b\x5f\xd0\xed\xa2\x26\x8e\xa8\x54\x74\xad\x4b\x91\x31\xcc\x2f\x37\x98\x1c\x23\x43\x60\x9c\x92\x76\x47\xdb\xba\x77\x23\xaa\xb2\x53\x76\xb5\x1d\xce\xc8\x0b\xda\x1a\xda\xa8\xb4\x9a\x35\x1c\x97\x2d\x01\xb4\x43\x8a\x78\xb9\x11\x48\xa4\x65\x4b\x00\xed\x10\xed\xf4\xac\x6b\xac\xa2\x1e\x6b\x23\x68\xba\x97\x60\xe9\x48\x22\x14\x58\x2d\x84\xfa\xf5\xb2\x59\x7a\x39\xdc\xdf\x5b\x29\x5b\x5e\xb2\x79\x7a\x23\x58\xb9\x97\x5b\x6a\x8e\x10\x44\xe1\xd5\xa2\x5f\x96\x02\xab\x45\x33\x56\xf1\xc2\x35\xfc\xb0\xdc\xb2\x34\x79\xcc\x23\x93\x10\x9a\xf0\xe2\xe4\xe1\xd9\x3a\x79\xe3\x86\x72\xb7\x5e\x6a\x8f\x43\xf9\x38\x73\x1b\x80\xcb\xfa\xe9\xa8\x79\x9a\x4a\x60\xfc\x63\x10\xed\xb7\xe6\xbc\x62\x89\xf7\x2e\xaa\xbf\xb1\x16\x16\xf9\x7a\x13\xdf\x67\x5c\x0a\xa2\xe7\x2b\x4c\x7d\x1e\xa8\xb0\x12\x82\xd7\x05\xef\x99\xd5\x83\x8f\x92\xcf\x72\x89\xe9\x8b\x58\x0f\x2a\x51\x9b\x34\xeb\x92\xa2\x1e\x69\x3b\xb0\xbd\x51\x8f\x74\xb7\xc8\xbc\x64\x17\xd9\x78\x01\x2c\xc9\x1f\xea\x8f\xaf\x41\x1c\x7b\xaf\xc9\x49\x2d\x9e\x07\xdf\x74\x9e\xad\xcc\x7d\xf8\x02\xab\x9e\x3e\xcb\x18\xa0\x09\xd4\x23\xdd\x5f\x0d\x5e\xb4\xf6\x70\x62\x2d\x48\xba\xc8\xba\xd4\x6b\x96\x11\x72\x18\xa9\x4e\xda\xe4\xe8\x14\x24\x6d\x47\xb2\xb9\x67\x7c\xf9\x12\x1b\xc4\xbc\xc8\x7a\xc2\xf5\x89\x5e\x37\xe7\x2d\x24\x0e\xeb\x55\x37\x36\x57\x86\x7a\x35\xa8\x4e\x93\x59\x2d\xe0\x35\x87\xbc\x1a\x14\x5f\xe3\xc5\xc1\xe9\x0a\xdb\xb5\x8e\xde\xaa\x7e\x5b\x85\x7b\x89\xdb\xcc\x3c\xeb\xd6\x13\x70\xe8\xb1\x5c\x3a\xeb\xd5\x80\x77\x6d\x69\x14\xfb\x6c\x87\x5d\x59\xec\x93\x7b\xbe\x9d\x62\x9f\x43\x59\xbd\xea\x89\xae\xae\xbc\x89\x31\x58\xa5\x6a\x93\x18\x4f\x5f\xc8\x28\x7c\xf8\xac\x79\x1d\x9a\x5b\x2d\x29\xa3\x6e\x57\x43\x97\x6c\xbe\xdc\xba\x1f\x58\x62\x8b\x19\xd3\x41\xd7\xee\x0f\x84\xba\x54\x00\x41\xa5\xf6\x18\x9f\x99\x75\x37\x9e\x51\x3a\xda\x45\xf6\x23\x79\x8c\x1b\xdf\xc1\x33\x34\x8d\xaa\x02\xc9\xa5\xaa\x6e\x1d\xd0\x45\x92\xaa\x4e\xed\xcf\x76\x64\x7f\xc0\x3f\xc3\x21\xab\x23\x8c\x87\x8c\x47\xbc\x99\xd2\x13\x45\x41\x93\x49\x92\x7a\x1d\xb1\x10\x9a\x10\x9e\xae\x7b\x27\xea\x7a\xaa\x19\x55\xd8\xd5\x20\x04\xb2\x53\xd8\xb3\x1d\xd9\x1f\x02\xf4\x2c\x44\xfd\xb0\x8a\xce\x96\x3a\x1b\x42\xd5\x0b\xbe\xc3\xaf\x38\x17\x10\x18\x6a\x73\xb6\xc3\x73\x41\x46\x90\x12\xdf\xbb\xd5\x08\xb4\x75\x11\x12\xd0\x6d\x6c\xca\x00\xe6\x61\x86\x41\x83\x2a\xaa\x4c\x46\x5d\xbd\x5a\xd1\x4c\xdd\x99\x32\x9d\x25\x09\xab\x8f\xe3\x31\xc1\xe0\x2c\xe8\x1f\x54\xe6\xdc\x2f\x8c\xfe\x81\x6e\x21\x33\x53\x8d\xb3\x68\x3c\xae\x86\x6d\x55\x77\x8d\x68\x75\xf2\x4c\x74\xaa\x71\x6e\xc5\x71\x3f\x9f\x16\xa4\xe7\x1b\xfc\xbf\xc3\x73\x60\x10\xbb\xa6\x9a\xa8\xb3\x29\x92\x6e\xde\xd2\x8e\xf2\x5d\x60\x72\xa7\xea\x66\x3b\xb2\x3d\xcb\xc1\x10\x65\xac\xa8\x29\x65\xa3\xa2\x66\x3b\x90\xc1\x6a\xe4\xb0\x82\x3b\xd7\x8b\xa5\x17\x3f\x02\xfb\x90\xfa\xa2\x70\xa6\x0a\x5d\x35\xc1\x30\xf7\x5c\x3a\x95\x33\xf3\x10\x15\x2f\x3c\xaa\x28\x08\x35\xae\x00\xbb\x9b\x77\xc0\x9d\xa5\xc8\x6c\xe0\xb1\x55\xa5\xd1\x6e\x55\x1a\xd5\x03\xea\x1d\xb8\x64\x73\x70\x09\xc1\xb2\x6e\x2e\xd4\x0e\x71\xf4\x21\x02\xc9\xad\x95\xbf\x48\x7a\xbd\xb2\x35\xa4\x1a\x8f\xd2\xe7\xb2\x85\xdb\xc9\xfa\x1e\xd7\xc7\x70\x28\x87\x8a\x8f\xd5\x12\x30\xd5\xb3\xf2\x70\xba\xe0\xd0\xf5\x15\x73\xfd\x6a\xab\x87\xed\x40\x70\xa2\xe2\x66\x3b\x3c\x11\x2f\x24\xce\x4d\x7b\x3d\x1d\x02\x44\x36\x03\xb7\xae\xaf\x82\x9d\xac\xe5\x65\x45\xf0\xa8\xfa\x7a\xea\xdc\xa5\xad\x1e\x36\xe5\x0c\x2b\x71\x1a\xa1\x40\x21\xce\xbd\xbc\xfd\x51\x3b\x90\x27\x60\x3f\x2d\xac\xc1\x58\x11\x2c\xd1\x69\x3e\xb0\x4e\x8d\xce\x76\x40\xd5\xa8\xb1\xb9\x9b\xf3\x12\xba\x1b\xf2\x66\x4b\x01\x37\x5f\xb4\xa3\x2d\x3f\x63\x07\x20\xaa\xcd\x2c\x5a\x5a\xe4\x9b\x59\xb4\x48\xcb\xdd\x5b\x02\xf7\x9a\xcf\x4c\x3e\xba\x7a\xec\x77\xf0\x22\x1d\xe4\x38\xb7\xcd\x9b\x86\xe1\x48\x2d\xb3\x83\x90\xc1\x96\x81\x22\x54\xb4\x99\x1d\x43\xf5\xbe\x65\xe9\x15\xc2\x06\x35\x3e\xdb\xe1\xd8\x99\x03\x02\xdd\x6c\x59\xd3\x8d\xad\x2d\x57\x9d\x7d\x21\x28\xde\x49\x95\x00\x16\x2d\xd4\x0f\xb9\x77\xd7\x9b\xcc\x88\x83\xda\x0a\x48\x02\x89\xa1\xc2\x67\xa3\x82\x49\x6f\x6a\x8a\xb0\xe1\x66\xfa\x7c\x75\x3d\xca\x7d\x26\x35\x09\x6a\x7a\x96\x1e\x8d\x5f\x0c\xe5\xcc\xd5\x2c\xbf\xaa\x4d\xad\x06\xd0\x17\x2f\x56\x9f\xa0\x75\x0d\x24\x61\x8c\xea\xd8\x00\xed\x67\xd1\x6b\x7f\x00\xce\x9c\xac\x56\x3d\x7f\x76\x8b\xdc\x27\x94\xc3\xbc\x8a\xf8\x61\x19\x4f\x19\x4c\x0b\x5d\x10\xd1\xa0\x35\x27\x02\xed\x69\x0d\x84\xe1\x60\xb6\x26\x3c\x80\x1a\xaa\x20\x37\x42\x3b\x75\x3f\x1b\x25\x91\x7a\x53\x13\xe4\xb8\x52\xf6\xb3\x91\xe4\xbc\x53\xf6\xb3\x51\x3f\xa6\xb7\x26\x1b\x80\x9d\x5a\x03\x74\x91\x9e\xac\x37\xc2\xb3\x9a\x0b\x92\x03\xba\xc1\xc4\x6d\xe7\x6f\x93\x28\xf7\xd6\x03\x56\xf6\x76\xba\x10\xe0\x80\xca\x68\x20\x5c\x23\x4a\xbb\xbb\xc9\x83\x33\x2b\xac\x36\xa7\xcc\x8a\xe1\x6d\x60\x99\x74\x63\x07\xf7\x1d\x38\xe3\x6d\xb0\x58\x74\xd8\x66\x02\xc6\xe1\x36\x85\xa5\x15\xf6\x6f\x3d\xd1\xaa\xeb\xa8\xcd\x00\x28\x63\xcf\x20\x43\x40\x82\x9b\x5c\x9e\x72\x0a\x87\x56\x2d\x85\xd4\x0d\xcd\x52\xd9\x36\x63\x10\x66\x35\x0d\x42\xb7\x5b\x6b\x3b\xd2\x60\x33\xd3\xc2\x3d\x8a\x4e\xd9\xd0\x22\xbb\x8f\xaa\xa1\x64\x5a\xeb\x6d\x29\x69\x65\xbf\xe2\xba\x97\x78\x68\x68\x15\xf7\xfb\x3b\x85\x42\x8b\xf6\xae\xb6\x38\x4c\x9e\x38\x7c\xa6\xd4\x0d\xe8\x2d\xc2\xac\x44\xdc\x05\x69\xb4\xc1\x27\x30\xcc\x17\x4d\xda\xb4\x0e\x26\x8b\x1e\x64\xd9\xd0\x81\x40\xdf\x54\xdf\x10\x18\x5b\x30\x59\x04\x38\xca\x89\x16\x63\x1d\xa9\x06\xda\x0e\x0f\xd6\x07\xc9\x4a\x98\xa1\x9a\x69\x66\x6f\xc1\x56\x97\xbd\x7a\xc0\x99\xc6\x69\xe2\x52\x9f\x3d\xdf\x52\x81\xb0\xe0\x42\x7d\xdb\xa9\x94\x04\x43\x69\xe6\xd9\x50\xca\x6a\x27\x47\x1f\x06\xd6\x70\xb8\x8e\x21\xb6\x62\xe8\x55\x88\x68\xda\x73\x0f\xfb\x35\x0e\x95\xd9\x9e\x51\x25\xdf\x8f\xa4\xb8\xee\xc6\x05\xe3\xf0\x2c\xea\x88\xed\x02\xf7\x82\xfe\x89\xf8\x2a\x80\x9e\x4b\x42\xab\xb5\xdc\x36\xf5\x3f\xe1\x7f\xa9\x0a\x14\x7b\x5a\x0e\xe1\x57\x28\xa2\x52\x94\x0b\x5a\xe8\x99\xbb\x62\x52\x76\x4b\x34\x22\x76\x9c\x76\x7b\x18\xe3\x85\x93\x21\x3e\xdf\xa2\xb0\xd0\x31\xb7\x7f\x77\x0b\x60\xd0\x72\xd5\x76\x8b\x47\xb2\x9a\x1b\xb9\x48\x4c\xb8\xd9\x3f\xf1\xcb\x44\xc1\x84\xf1\x77\xcb\x90\xca\xff\xa8\x42\x9a\x8a\x42\x6b\x7b\x48\x41\xe6\x74\x61\xd6\xfa\x1c\x1b\x17\xac\xe5\xa4\x8d\xb0\xaa\xec\xf2\xf0\xd5\x0e\x47\x23\x14\x3b\x68\x32\x4c\x3c\x89\x6a\xf0\x6d\x13\x42\xf6\x26\xdf\x76\xde\x6f\x80\x9f\x11\x5e\x21\xe8\x70\xdc\x28\x2b\xb2\xc8\x97\x45\xc8\x07\x31\xdf\x0e\x2e\xaa\xf6\x7e\x20\xc4\x43\x12\x3a\x77\xc0\x34\x53\xf4\x83\x8d\x8c\xe7\x00\x60\xe5\x85\x1b\xe3\xf0\x5a\xea\x97\x66\x7d\x10\x96\x2f\x1d\x5c\x67\xed\x94\x2f\x9d\x75\x7c\x2b\xe9\x51\xdb\xb4\x1d\xcb\xe1\xb5\xfb\x0c\x9e\x25\x48\x50\x9a\x4e\xf6\x2c\xee\x7a\xf4\xce\x95\xb0\x03\xcb\x54\xe7\xea\x97\xb2\x36\xd5\x4f\x73\x8f\xbf\xa3\x18\x73\x2c\xa9\x84\x9a\x4d\xbd\xd2\xbb\xbc\xdd\x4e\x4d\xf7\xaf\xa0\xdf\x49\x1c\x7c\x28\x92\xf7\x24\x97\x63\x21\xd9\xdc\x97\xcc\x29\x2b\xe7\x23\x71\xf6\x70\xbe\x82\xdd\xdd\x24\x21\x6a\x00\x3d\x73\xd1\x6a\xd8\xa4\x91\x58\x85\x01\x73\xcc\xc4\x7e\x07\x37\x94\x99\x55\x64\x17\xb6\xdb\xe5\x47\xbe\x48\x3d\x8b\x5d\x19\x7e\x35\x1d\xe3\x72\xd3\x1d\xfd\x06\x6e\x80\x27\xcb\x3d\x1d\x83\x75\xb8\x21\x45\x49\x76\xfa\x92\x7e\x7c\x4d\xa3\xba\x28\xc4\xba\x7f\xf0\x85\x13\x0b\xe1\xa7\xde\x6a\x0e\x8b\x76\x2f\x31\x2d\x66\x52\xf4\x41\x72\xfa\x29\xb8\x3a\x48\x54\xd3\xad\xb7\xba\x62\x8c\x4d\x58\xa9\x83\xdf\xbb\x41\xdd\x32\x56\x0a\xac\xb6\xe4\xcc\xd1\x79\xa9\xbd\xdb\x3b\xae\x5b\xad\x7b\x7d\x8b\x13\x2d\x81\xeb\xbd\x4a\xce\xa0\xa5\x51\x84\x55\x3d\xa3\x57\x03\xee\x39\x37\x14\x61\x6d\xc9\x6d\xd6\x22\xad\xe8\x4c\x41\xd6\xac\xc7\xbb\xd7\x00\x9b\x83\x28\xd0\x55\xfb\x62\xba\xd0\xb0\xde\x62\x9f\x99\xae\xd2\x85\xb8\xd4\x88\x54\x13\xdf\x34\x21\x2b\xbf\x76\x4b\xd2\x09\x84\xa6\x62\xe1\xfe\x23\x45\x28\xdc\x53\xa9\xb5\xa9\x7b\xf7\xe6\x70\xf4\xe4\x1d\x31\x32\x46\xf4\x6e\xc0\xb7\x7e\xf8\xbe\x25\x8a\xa6\x39\xb1\x9b\x58\x4b\x3b\x14\xa5\x5d\x9b\xfc\xbd\x5b\xd0\x6e\xf8\x77\xc4\x5d\xb7\x0c\x5d\x5b\x32\xd9\x4d\x9e\x32\x44\xe9\xae\x55\x33\xbe\xc2\xa5\xeb\x52\x71\xe9\x1a\x0a\xde\xb7\x94\xd1\x92\x10\x1c\x84\x3e\xb8\xdd\x21\x65\x30\xb2\x75\x5c\x95\xc1\xa9\xe3\x9a\x55\x5d\xbb\xe5\xeb\x48\x62\xd1\xa9\xe3\x9a\x75\x96\x75\x3d\xbd\xff\x2f\x61\xe7\x71\x36\xbd\xae\xa3\xc1\x54\x6e\x08\x2d\x5a\x70\x73\x72\x91\xcd\x3f\x84\x79\x58\x85\x7f\xb6\xdf\x4e\xea\x16\x3d\x09\x47\x00\x2f\x61\xbe\x63\xcc\xdb\xaf\x18\xea\x4c\xaa\x6e\x91\xcf\x7f\xe8\x6e\x88\x8d\x0d\x9f\x1c\x66\x1e\x85\x83\x8d\xad\xc2\xf7\xc3\x05\x08\x26\xc4\x06\xd1\xe0\x89\x38\x1a\x40\xbf\xf6\xc3\xa9\x0d\x76\x48\x56\xaa\x0c\x00\xed\x1e\xc1\xc2\x38\x8c\x65\x6b\xa8\x22\x03\xa7\x6f\x75\xa8\xb1\x64\xbe\xdd\x17\x88\x7a\x7e\x04\xaa\xc6\xf0\x77\x9b\xfb\x2b\x10\x6d\x00\x1d\x1b\x4d\xe2\xb1\xd8\x23\x70\xdc\x61\xd6\x15\xa5\x3e\xf0\x61\xa3\x79\xe0\x4f\x9d\x76\x7c\x46\x29\xd2\xd1\x00\x80\xd8\xa6\x8d\x21\x81\x5f\xa5\xd9\xba\x63\x11\xee\x3c\x00\x81\xad\xca\xed\x82\xc0\x4e\x62\xa2\xc7\x10\x1f\xc8\x13\x9b\x6a\xbb\x7b\x01\xf3\xb0\xd2\xc5\x48\x81\xc2\x19\xbd\x18\xa2\xed\x5d\xcc\x28\x42\xdc\xb8\x24\x4f\x52\x72\xf4\x77\xc2\xf1\x07\xe0\xb0\x9d\x6c\x74\x63\x6c\x19\x22\x9a\xb4\xe6\x96\x5d\x7b\xfc\x90\x27\x0e\xb8\xe1\x40\x6c\x38\xdc\x86\x04\xab\x57\xef\x1e\x86\xde\xd8\x76\x1c\xb9\xc1\x74\xbe\x03\xa4\xd8\x7e\x38\x69\x06\xa8\x2b\x24\x0d\x8d\xc8\x8a\x42\x89\x01\x4b\x8e\xa6\x31\x9e\xe6\x3f\x54\xbc\x65\x82\x7e\xf8\x15\x77\xb8\xaa\xc7\xc0\xbb\xf6\x23\xbf\xc9\xf1\x31\x26\x90\xf3\xfe\x3d\x63\x1d\x91\xf1\x3c\xb9\x7c\xac\xe5\xcb\x11\xca\x67\x5a\x40\x02\x11\xb7\x75\xe8\x0d\x39\x30\x1c\x7b\x3d\x38\x8c\x3d\x57\xfc\x19\xde\xf4\xea\xcf\x31\xcc\xfa\xa5\x04\x03\x88\x6b\x3f\x64\x1d\x1a\x8a\xf3\xf7\x0a\xab\xa2\x3d\xaf\x74\xd1\x6e\xc7\x56\xe0\xfb\x21\x21\xd8\x3a\x7b\x3f\x64\xe4\xa4\xd5\x54\x77\x01\xe7\xb5\x24\x87\xfd\x88\x93\x90\xaa\x6e\xb1\x21\xf4\x12\x1d\xb8\x78\xd5\xac\x07\x83\x89\x84\x1b\xad\x3e\x0f\x06\x99\x37\xf5\x4e\x99\xa2\x0a\x40\xe8\xe7\x2f\x37\xdd\xe2\xa5\xfe\xf7\xbf\x06\xd8\xec\x98\x40\xe2\x35\x5d\x3c\xa6\x0e\xd8\x64\xe0\x18\x20\xc3\x1e\x7a\x4a\x4f\x1d\xb0\x87\x1f\x5d\x08\xae\x36\xf1\x10\x82\x18\x3c\xc3\xf9\xc2\x67\xc8\x2b\x9c\x4f\xf8\xd7\x39\xad\xe8\x30\x39\x1d\xe7\x68\x1e\x99\x6b\x8a\x67\x7c\x20\xb2\x84\x8b\x35\x78\x9e\x44\xbf\xd3\xb2\x5e\xd9\xd3\xa6\x0f\xba\xb1\x7c\x76\xcf\x55\x5f\xc8\xed\x70\x58\x13\x7b\xbf\xda\x02\x4e\xd9\x16\xd0\xa5\x4b\x09\x2c\x61\x60\x95\xae\x66\x51\xcd\x69\x7e\x86\x8d\xd3\xce\x16\x70\x24\x1c\x05\xf8\x40\x52\x51\xc0\x5e\xab\x5a\xdc\xfc\x77\x73\xcc\x33\x4d\xb3\xd9\x67\x86\x81\xd3\x8d\x9a\x33\x40\xff\x2a\xb0\x38\x87\x1f\x65\xcb\x94\xc6\x7a\x70\xe4\x33\x7b\x06\x92\x3f\xb1\x1e\x68\xbd\x9e\x55\x2c\xc5\x3f\x2f\x71\xa7\x61\xe1\x6c\xcc\x59\x73\x27\x5b\x03\xcb\xe4\x58\x15\x0b\x50\x5f\x67\x53\x98\x66\x4b\x4d\x7d\xb4\x95\xba\x66\xb3\x5f\x8c\x24\xa3\xbd\xd8\xe4\xb3\x25\x3d\xf0\x2b\x34\x50\xc8\x4f\x82\xd0\xea\xe9\x92\x20\xb4\xfa\xfe\x00\x42\x5b\x97\x33\x04\x80\xdf\xe1\xef\x1a\x1a\x38\xb7\x80\xd0\x96\xb0\x57\x58\xd5\xf5\x7a\x99\x69\x66\x40\x84\x9a\x3d\x67\xce\xaf\x06\x36\x2e\xbf\xe2\x70\xc3\x26\x66\x17\xda\xc5\x6f\xb2\x1b\xf4\x49\xb1\xc0\xc5\xec\x06\x57\xf1\xfb\xe0\x98\xc3\xf6\x40\xb6\x2d\x3a\xf4\x83\x6c\x5b\x8d\xad\x9a\x26\xd5\xcc\xdf\xf1\x07\x42\x27\x00\xa6\xb6\x03\xd7\x33\xe6\xc8\xcd\xe9\x0b\x66\x41\xac\x31\xa0\xd4\x1e\x55\x03\x0e\x28\xb5\x95\x44\x4b\x63\xca\xfb\xa1\xb3\x60\xd4\x56\xd0\x40\xc6\xd4\xda\x00\x4f\x98\x53\xf5\x80\x09\x9b\x4e\x86\x07\x9a\x1b\x69\x6f\x37\xa7\x29\xc7\xb5\x55\x00\x70\x5b\x49\xfc\x3a\x44\xb1\x35\xff\xf8\x00\xc5\xb6\x03\x96\x3c\x04\xb1\xd5\xf8\x0a\x86\x6d\xd5\xc4\x3e\x23\x99\x05\xa5\x33\x35\x9b\xa3\x10\x0e\x5e\xf1\x70\x06\xa4\xce\x03\x6a\xa2\x19\xab\x92\xf5\x7b\x8a\xe3\xe2\x99\xa6\xc3\xa6\x2d\x9b\x3b\xd3\x3f\x92\x57\xd0\x04\xa1\xdb\x5a\x17\xe7\x32\x66\xda\x1d\x98\x32\x01\xc2\xe1\xcc\xd4\xe2\xcb\x7f\x4c\x40\x44\x5d\x46\x72\x2b\x67\x82\x87\x5b\x25\xcc\x73\x25\x23\xa0\x79\xf1\x28\xa6\x13\xc7\x05\x41\x92\x87\x95\x8c\xc7\xba\xd0\xd4\x9d\x2b\x62\xbc\x41\x25\x1f\xa2\xe4\x6a\x63\x00\x25\xb7\x2b\x90\x00\x92\x5b\x72\x9e\x4f\x8d\x04\xee\xb4\x93\x83\x24\x39\x39\x9d\x1d\xfa\x24\xb6\x90\xdb\xd7\x68\x2f\xad\x3a\xf3\xca\x81\x53\xd5\xa5\xce\x09\xc7\x05\x0c\xb7\x1f\x6e\xe6\x0b\xde\xed\x39\xba\x3c\x16\x6e\xff\xcc\x14\xee\x47\x10\x14\xc9\x94\xe2\xc4\xb0\x56\xfa\xe1\x3c\x5f\xe0\x6c\xb9\xd7\xd2\x0c\x21\x39\x30\x37\x38\xac\x77\x72\xf5\x6c\xa8\xd6\x34\xb8\x6b\x7a\xc0\x04\x1f\x24\xe7\xc3\x98\x37\xa2\xcc\xcf\xd2\x12\x13\xf7\x11\x76\x88\x23\x3f\x52\x7b\x75\x06\xef\x5c\x0b\x2b\x26\xa5\xc2\xf4\x99\xb3\x3a\xff\x0c\xb9\x05\x99\xb7\xaa\x61\x4d\x2e\xac\xb5\x2b\x4c\x2e\xac\xbb\x07\xfc\xc9\xdd\xc3\xd8\xb9\xb0\x56\xe2\x05\xc9\xb7\xe8\xc6\x2d\x60\x6f\x4b\x5a\xf6\x04\x77\xf6\x7e\xb4\xfc\x83\xf1\x7a\xab\x3d\x7c\x56\xc6\x46\x19\x99\x66\xcf\xf1\x8e\x10\x8c\xdf\xae\xbf\x22\x10\xbf\x3d\x79\xb0\x3e\xe8\xc9\x4f\x5e\x74\x0e\xb7\xf4\xcb\x6a\x7a\x84\xde\xdc\xc5\xf4\x96\x5b\x07\x63\x3b\xa6\x12\x8c\x3c\xf8\xe5\x3c\x39\xec\xd7\x16\xe8\x13\x17\x10\x87\xfd\x4b\x43\x86\x84\xe0\x03\xbb\x03\x81\x70\xea\x9f\xa6\xe8\x3d\x49\x1b\x97\x84\xf7\x33\x3b\xb7\xbf\x67\xce\x43\x9e\xed\x92\xfb\xe2\xf3\xae\x45\x6a\xf6\xe5\xe4\x30\xd4\x2d\xcf\x4c\x6d\x44\x60\xfe\x96\x5f\x56\xc5\x75\x89\x51\x18\xc0\xfc\xd6\x3c\x7d\xa2\xfc\x72\x78\x03\xc1\xa5\x69\x43\x16\xe5\xd7\x6b\x0a\x50\x7e\x6b\xa1\x56\x41\x7e\x4b\xb7\x40\x47\x1f\xde\x13\x1e\x3a\x9b\x91\x93\x64\xc4\xe1\x0a\x53\x58\xc9\x43\xf9\x29\xb0\x50\xe8\xaa\x10\x22\x7d\x2c\x7f\x77\x4b\x22\x9c\x87\xd9\x69\x14\xe7\x81\xef\xdd\x3d\x3f\x78\x61\x9e\xc3\x7a\xb5\xd1\x31\x9f\x21\x02\x08\xf4\x28\xbc\x3e\x87\xd2\x84\x0e\xe1\x2a\x00\x61\xe2\xb8\x66\x4f\x0a\x4b\x19\x3e\xe3\x5b\xc7\x4c\x05\xd7\x12\x47\x58\x5a\x7e\x5a\x6c\x42\x46\xe6\x68\x8b\xc2\x2f\xdb\x13\xfc\xde\x7e\xd8\xf7\xea\x69\xc4\x32\x2a\x96\xaf\x22\x47\xd4\xcc\xf5\xc7\xf3\xc2\xae\x43\xb5\xd5\x2d\x6c\xe3\x35\x73\x34\xf3\x8c\x80\x93\x85\x55\xdf\x97\x2f\xd9\x36\xc5\x1b\xfc\x0b\xe5\x0a\x90\xdf\xc3\x38\xc8\x68\xba\xbf\xd0\xa7\x46\xbe\x97\xe9\x33\x06\x9b\xe5\xb3\xba\x8e\x2b\xa0\xb4\x11\x16\xc6\x8f\x6f\xf8\xbb\x82\xe0\xb2\x05\x8d\x0d\x90\xb6\x84\x08\x26\xd7\xc6\x00\x22\xb8\x93\x53\x66\x44\x73\x95\xe8\x9f\xe1\xe4\x50\xf7\xd0\xd6\xe0\xf7\x1d\x65\xcc\xa6\xbb\xb1\x5a\x8c\xda\x7c\x34\x30\x70\xb0\x82\x77\x03\x74\xb6\xbb\xe7\x97\xb5\x6a\x90\xe8\x16\x71\x25\x99\x59\xaf\xf6\xf5\x3a\x8c\x9e\x99\x1e\x78\x7e\xd8\xf3\x3e\x33\x81\x0e\x75\x40\xd0\x9d\x7d\x9c\xdb\xf6\x36\xf8\x83\xe2\x45\xde\x57\xb8\xc5\x46\xae\x0d\x4d\x4e\x99\x05\x4a\x4a\x6c\x59\xa1\x17\xcc\x34\xa0\x04\x1f\x82\x13\x8c\x98\x6a\x7a\x3e\x43\x5e\x5c\xd9\xb4\x25\x38\xf1\xdc\x59\x08\x5b\x30\xc2\x4c\xde\x24\xc0\x1a\x82\x09\x4f\x92\x7d\x0c\xc0\x84\x3b\xd8\x30\x03\x30\xe1\xae\xc5\x1d\xf8\xe0\xaa\x5f\x66\xe0\xbc\x36\xc3\x33\xa4\x29\xc1\xee\xea\xbc\xa6\xd3\x20\xb8\xc2\xb5\xba\x43\x63\x78\x54\xfc\xc3\xd9\x86\xa4\x81\x2b\xdc\xc1\x52\x1b\xb1\xc5\x88\x69\xb4\x7f\x84\x6d\xf3\x8d\x86\x05\x1d\x16\xc0\x1e\x3e\x14\x06\xc1\x1e\xee\x87\x6b\x28\xf0\x08\x79\x3c\x46\xe8\x46\xee\x84\x72\x97\x71\xe4\x73\x0e\xd5\x17\xf6\x98\x87\x7c\xd9\x1c\x85\xb7\x40\xd0\xc1\x81\x1d\xa1\xc3\x80\x52\x6f\x20\x11\x78\xbd\x16\xe6\x0c\x37\x7e\x2b\xce\x5c\x0d\x8b\x00\x97\xd4\xfc\x83\x7e\x78\x00\x01\x2b\x5c\xf9\x7b\xae\x0c\x3d\x3f\xed\x87\x4d\x28\x49\x21\x11\xc4\x69\xc2\x2c\x4a\x2b\x50\x60\xf5\x02\xa6\xb8\x78\xf1\x12\x29\x4e\xa0\x14\x84\xe2\x84\x24\xc5\x2c\xb0\xa6\xd1\x88\x2d\x4f\xf4\xe2\xdc\x20\x4e\xe4\x28\x10\x1b\x8a\x0b\x79\x9d\x3c\x5b\xd1\x65\x61\x3a\x9b\xd1\xe3\xf4\x55\xe9\xc0\x70\xbd\x10\x3a\xc4\x35\xba\xbb\x7f\xd0\x36\xd2\x41\xb1\x4f\x20\xf3\x1b\xae\x1a\x37\x3e\x2c\xce\xf8\x4d\x73\xd2\x74\xd3\xe4\x39\xfb\x22\xf6\x1b\xb3\x08\x64\x71\x2f\x59\x29\x06\x10\x17\x5b\xdf\x74\x9d\x48\xe3\xc9\x35\xa2\xc4\x96\x0c\xaa\xde\x5f\xa1\x27\x1b\xb9\xce\x06\x88\xc5\xdd\xcb\x19\x00\x8b\xbb\xe2\x1f\x80\xc5\x47\x4b\x12\xb1\x45\x86\x4e\xb2\xa0\x01\x60\x71\x37\xbc\x2f\x8c\x34\x37\xb4\x13\xc4\xe2\xb2\xb2\xf4\xc7\xdc\x50\x18\xa3\x45\x91\xee\x6c\xb9\xa0\x7b\xd1\x1c\x78\x26\x14\x69\x27\xdc\xdf\xab\x8b\x78\xd5\xbb\xaa\x05\x24\x85\x48\x18\x20\x11\xef\xe3\x42\x3f\x5e\x27\xa4\xf8\xcf\x63\x19\x2b\x30\x26\xd6\xe7\x8f\x46\x78\x46\x1a\xd0\xfd\x2f\xbe\x94\x24\x69\x3d\xb9\x3e\x12\x4a\xc8\xf5\xbd\x19\x05\x9b\xb8\x97\x62\x11\x94\xd3\xac\x2a\x37\x82\x1f\xc9\xbf\xdc\xc2\x82\x77\x91\x7e\x6c\x0b\x02\x5b\x86\x86\x44\xaf\x1f\x43\xff\xfd\xa9\xdb\x2e\x1d\xd8\x35\x9a\xae\x1f\xcb\x43\x67\x16\x86\x0d\xd9\xf2\xfa\x65\x97\x3b\x2f\xd9\x65\x5f\x5c\x9f\x83\x67\xcf\xd3\xb4\x03\xa7\x47\xd3\xba\xd0\xf7\xe1\xcb\x00\x27\x77\x60\xa9\x06\xb8\xc9\xc5\xe8\x9a\xc5\x1d\x89\xae\x23\x40\x28\x77\x30\x36\x07\x10\xca\xbb\xd6\xc9\x8b\xd6\x65\xbf\x3a\x0a\xbd\xa5\xd6\xb4\x8b\x40\x91\x56\x5e\x99\x40\x27\xd7\xe1\xe9\xef\x56\xa6\x62\xed\x57\xec\xfd\x6a\x71\x58\x4c\xd8\x86\x90\x6f\x3c\x17\xa6\x11\x92\x02\x6e\x72\xd7\x9f\x09\xdc\xe4\x5e\xaa\xcf\xee\x63\xea\xc7\x7d\x4f\xa7\x7f\x90\x92\x7b\x81\x6b\x00\x8e\xdc\x0b\xcc\x01\xdc\xe3\x0e\x5e\xd7\x10\xf6\xf8\x50\x84\x06\xeb\x78\xf7\x94\x96\xb1\x6c\x94\xea\x57\x52\x36\x84\xfe\x85\x65\x83\xac\xfc\x63\xd5\x14\x7e\xfc\x8a\xdd\xe3\x0c\x98\xe1\x4e\x33\x37\x88\xc8\xbd\xe4\x33\xd4\x0c\xb5\x69\x21\x4e\x0c\xa3\x7b\x57\x5a\x29\x5c\x6f\x23\xc9\x4d\x1e\x03\x9e\xf1\xfe\x8c\x8a\x9b\xde\x98\x3e\x4b\x26\xe1\xb9\x80\x15\x57\xa3\xd3\x00\x2b\xee\xa5\xf9\xbb\xb0\xb1\xf4\xb0\xab\x0b\x70\x26\x40\x28\xee\x25\x9f\x75\x04\x66\x3a\x7b\x1e\x3b\xda\xee\x6c\x16\x67\x81\xab\x08\x43\x30\x40\x2b\xee\x46\xb4\x83\x4f\x5c\x0b\xa4\x14\x7c\xe2\x0e\xba\xce\x00\x9e\xb8\x16\xa8\xfb\x1a\xb9\x3d\xa8\x88\x58\xb1\x61\x04\xb0\x60\xc5\xcb\x6c\x0f\x4b\xb7\xf8\xdc\xa8\x83\x50\xe6\x65\x11\x49\x8f\x8b\x89\x71\xa2\xd8\xdb\x2d\x35\xf4\xd2\xfc\x5d\x1a\xe1\x2a\x1b\x77\x56\x2c\x4d\x6f\xdd\xb4\xa4\x9f\xd1\x27\x74\xa5\x60\x61\x77\xc9\x86\x5b\x1d\x92\x42\x86\xeb\x8d\x90\xa1\x49\x71\x21\x57\x94\x6a\x61\xb7\x97\x65\x99\x4b\xcf\x91\x6e\x11\x66\xd3\x49\x44\x63\x45\x70\x10\x8d\x9b\xee\x47\x02\x1a\xeb\xa2\xbe\x94\x36\x20\x28\x80\x1b\x77\x2f\xb4\x00\x37\x16\xba\x6e\xac\x10\xf3\xc1\xdd\x65\x3e\x78\x38\xcb\x32\x61\x9c\x12\x3b\xc0\xc5\x47\x71\x37\x2f\x6a\x1a\x3e\x2b\xab\x78\x5e\x96\xf9\x38\x29\x8d\x53\x61\x81\xde\xae\x94\x1d\xac\x96\x38\x72\xf2\xe7\x0e\x60\x8b\x4b\x6e\xad\xc5\x86\x70\xb1\x15\x11\xd0\xee\x56\x8a\x08\x7f\xa6\xd0\x1b\xe0\x18\xef\xd5\x67\x65\x4e\xf9\x8e\xe3\x3d\x99\x5d\x98\xe4\x32\x20\xcd\x08\xbd\x65\x1a\x5c\xc3\xef\x80\x35\x3e\x44\xaa\x19\xc0\x1a\xf7\xe2\x58\xb4\x3c\x18\x24\xb5\x4c\x0c\xaf\x18\xb5\x2e\xa6\x02\x39\x1a\x84\xe3\xee\x1d\xc0\xc2\xd8\x00\xe2\xdb\x00\xe0\xf8\x10\x18\x67\xac\x2b\x53\x96\xd0\xc7\x2b\x17\x94\x7e\xe1\x81\x58\x90\x84\x12\xe2\xd8\x64\x3f\x40\x1c\xf7\xe2\x24\x5d\x90\x4f\xe9\xc8\x9d\x1d\x61\x1d\x6e\x57\x97\x02\x38\x3a\xe4\xf1\x48\xab\x42\xf8\xd1\xfc\xef\x7f\xd3\x1b\xd8\xa5\x77\xbb\x8a\xcc\x52\x58\x70\x7c\xb7\x0e\x56\x16\x20\xff\x90\x5b\x43\x47\xc4\xfc\xde\x2e\x31\x85\xdc\x5d\x0c\x83\xd1\x01\x44\xee\x45\x8a\x6c\x1a\x7a\xf3\x23\x01\x82\xdc\xd5\x43\x17\xb6\x02\x8d\xa3\xeb\x11\xf0\xd9\x02\x90\x01\x77\x2e\x46\x80\x22\xf7\xdb\x7a\x7f\x90\x03\x79\xac\x57\xa6\x66\x97\xde\x3c\xe1\xbe\xb0\xc6\x1e\x70\xa1\xc2\x1c\xe8\x2b\x91\x3b\xfc\xc3\x1b\x50\xc9\xdf\xcb\x8c\xbb\x14\x2f\x6d\xbb\xd7\xbf\x4c\x3e\x48\x71\x7c\x0f\x4d\xd3\xb4\xbe\x6c\x9c\xe9\xff\x14\x00\x3d\xe2\x9f\x5b\x4f\x16\xf2\xe5\x89\xf2\x85\x03\x2c\xf1\xfd\x48\x7b\xe9\x96\xf4\x9a\x62\x59\x2f\x3a\x89\x99\x85\x40\x3f\xee\xe0\xe5\x8f\x44\x3f\x56\xe5\x13\xfd\x58\x38\xa2\x71\xfe\xe8\x16\x0c\xf9\x34\x2e\x5d\x9d\xef\xc4\x13\x91\x74\xbb\xe3\xc4\x83\x41\x8f\xfc\x13\x46\xed\x98\x4e\x19\xf5\xf2\xf9\xb3\x56\xda\x3b\x5c\x32\x28\xf1\x29\x13\x66\xc1\x01\x42\xee\xc5\x16\x0e\xf6\x36\x1c\xf5\x34\xc4\x5c\xcf\x63\x00\x92\x8b\xd7\xe4\xe7\xc1\x15\xef\xb2\x56\xb7\x39\xe3\x06\x20\xb9\x93\x2b\x77\x9c\x42\x9e\x98\x82\x09\x80\xe4\x0e\x90\xdf\x00\x1f\xb9\xe8\xf9\x71\xe6\x85\x84\xd5\x16\x9c\x6c\x11\x3d\x4e\xb8\xb6\xae\x41\xa7\x5c\xdb\x79\x32\xab\xad\x7a\xe8\x69\xc6\x5a\x7d\x04\x81\x47\x3e\xf4\xc4\x05\x1e\xf9\x00\x5c\x75\x9c\x82\x7d\x41\xd0\xce\xe2\xd6\xe6\x1b\xb2\xc7\x90\x6f\x7b\x9c\x55\xdd\x8b\x3d\x7f\x92\x31\x46\x2f\x8e\x53\xae\x8d\xd0\x7d\xa6\x63\x02\x42\xf4\xc9\x85\x84\x7e\x1b\x27\x26\x04\x3d\x7a\x4f\x2e\x27\xbc\x0d\x3a\xe1\xe6\xc3\x8c\x10\x27\x26\x04\x33\x1e\x9c\x98\x10\x80\x6f\xfa\x83\xea\x9d\x78\xea\x4f\x73\x57\x9d\x78\x27\x14\xe7\xaa\xb9\x36\x9c\x6a\x60\x9b\xa3\xdb\x99\xc6\x49\xe1\x84\x83\xda\xdc\x8d\xb3\x3a\xb5\x1d\xc8\xd1\xcf\x66\x24\x02\x54\xe4\x24\x74\x4e\x03\xd1\xa9\x6f\x82\xb7\x5f\xa7\xe1\xe3\x26\x27\x39\x31\x06\x74\x63\x06\xce\xbc\x79\x80\xe6\x9e\xc6\x8c\xeb\x78\x77\x92\xb6\x56\xb1\xfc\x44\x54\x20\x39\xfc\x38\xd3\x18\x90\x25\xbc\x92\x62\x5e\x48\x58\xaf\xba\x03\x18\x74\xd7\x5b\xee\x34\x32\xdc\xe8\x19\xf0\x9f\x7b\x75\xad\xcc\x2e\xa7\xdb\x09\xf8\xcf\x7b\x4d\x7c\xb9\x98\x06\x86\x3b\xf3\x98\x33\x0f\xd3\xcd\x4e\x07\x71\x2a\xe8\x6e\x2c\x79\xb1\x85\x93\xff\xba\xd9\x37\x6b\x0d\xd2\x7a\x8f\xd3\x74\x71\xb0\xab\x33\x48\x8a\xe9\x09\x0a\x59\x97\x33\x1d\x0a\x2a\x76\x0a\xa7\x00\x00\xf0\xc7\x69\x26\x57\x03\x4d\x13\x3b\x5a\x7b\xe9\x89\xf2\x0e\xda\xff\x38\x43\x4b\x33\x1f\x6d\x85\xbd\x57\xdb\x5e\x52\x05\x1b\x5f\xca\x3f\x28\x74\xe7\x56\xd2\xbb\x99\xd2\x4e\x5d\xf9\x55\xf1\x81\x8e\xee\xfa\x26\x9d\xa7\x55\xd1\xa9\xd3\xd3\xef\x2a\x25\x33\x3d\xfc\x67\x13\x12\xdd\xec\xcf\x33\x7b\xe8\x1f\x37\x6d\x58\x95\xa6\x0d\x3a\x92\x1c\xd3\x5e\xa1\x36\x57\x6b\x12\x76\x2b\x9c\x5c\x2c\xec\xd5\xde\xc2\xfe\xf4\x08\x3b\x0d\xee\x32\xb1\xca\x29\x67\x83\x50\x82\x0d\xdd\x41\x37\x1e\xe7\x6d\xad\x54\x64\xe2\x78\x53\xb4\x9c\x5e\xb3\x6b\x84\x00\xcc\x79\xff\xc3\xc0\x37\x47\xea\xe4\x9c\x1e\x27\xd9\xd0\x64\x6d\xa7\x5e\x78\x26\x89\x00\xda\xb9\x57\x4f\x61\x1a\xac\xe9\x87\x61\x58\xba\x71\x9d\xa6\x50\x31\xc5\xc0\x09\xaf\x02\xfa\x73\x9c\x5b\x61\xed\x46\xea\x9f\xc9\xb7\x18\xde\xdb\x78\xa6\x4f\xaf\x02\x01\xec\xe9\xdc\xac\xaa\x1a\x8b\x0d\xe2\x73\xf7\x1e\xea\xcc\x4b\x76\x29\x3c\xf9\xcc\x0e\x8d\x0d\x27\x97\xe3\xbf\x43\x72\xfa\x59\x84\x1e\xe2\x48\x67\x5a\x88\xd3\x3c\x64\x5a\x18\xce\x2f\x7b\xbb\xbf\xba\xcc\x37\xa6\xca\x79\xfd\x54\x4c\xa6\x2f\x0d\x44\x25\x9f\x3b\x75\x4d\x9e\x97\x25\x06\x2f\xf0\x94\xac\xca\xad\x00\x73\xbc\x60\x17\xe0\xe3\x0d\x10\xa2\xbb\x16\xb3\x44\x88\xd6\x8b\x4b\x50\xe8\xa1\x72\x2f\x28\xb4\x72\xee\x75\x48\xef\xe0\x0b\xd7\xc1\x24\xd6\x3f\xf3\xac\x5c\xb8\xc0\xc9\x3f\x40\x95\x2e\x25\x9f\x61\xd4\x90\xdb\x4b\x60\x2c\xbd\xc7\x2f\x92\x99\xbb\x81\x2e\x7d\xdb\x34\xa9\x5c\x26\x19\xd1\x2c\x02\xdc\xf4\xee\xa5\xe5\xa5\xaf\xd0\x6b\x30\xa6\xab\x6c\xfe\x4a\xdd\xcd\xa9\xa8\xc3\xf2\xbe\x70\xf2\x20\x58\x97\x5c\x00\x3d\xf3\x42\x8f\x33\x18\xf4\xd2\x53\xad\x58\x93\x52\xe8\xf4\x23\xa1\xfa\x0b\xcf\x44\xe5\x39\xa7\x19\x91\xc5\xae\x01\x94\xba\x1b\xba\x77\x99\x3e\x44\x3f\xb7\xab\xd9\x34\xdd\xc0\xef\x4c\xa6\x73\x99\x8e\x1c\x34\x86\x21\x5a\xb5\x19\x47\x2f\x53\x86\x98\x4d\xe9\x42\xef\xcb\x1d\xd0\xa1\x0c\xf6\x43\x4f\x33\xc3\x33\x2f\xed\xbf\x2e\x2e\xfa\x20\xd0\x20\xe3\x4a\x22\xef\x6e\xe8\x46\xb1\x22\x3d\x5c\x52\xf9\x66\xb5\x6c\x52\x14\x20\xb0\xab\x4b\x86\xa2\x81\x57\xdd\x81\x06\x19\xd7\xd0\xfe\x84\x30\x77\xa1\xf9\x01\xe3\x31\x2e\x00\xb9\x54\x91\x01\xb5\x2e\xaa\x58\x80\x5a\x17\x5d\xe8\x2f\x33\x93\x9b\x71\x02\x54\xeb\x6a\xde\xa8\x0b\xb6\x30\xbc\x93\x06\xd5\xba\x6a\x52\xbc\x48\x34\xaa\xe3\xa6\x08\xd7\xe9\xd0\x7e\xa5\xde\xb7\x6c\xef\xf5\x1f\x3f\xc3\x11\xda\x21\x09\x83\xa2\xd9\xe4\x42\xf3\xab\xea\x65\x00\x5e\x17\xfd\xc0\x2e\x72\x88\x19\xf5\x74\xa9\xf9\xe9\x91\x74\x01\x8a\x52\x8d\x55\xbe\x92\xc7\x2c\x2b\x06\x2d\xc7\xfe\xea\x5e\xa6\x7e\x2e\xb0\xb5\x40\x73\x03\x60\xeb\x5e\xdd\xf8\xf2\x95\x6e\x89\x6e\xb7\x68\x31\x80\x1b\x76\x7b\xe3\x05\xaf\x2b\x1e\xf8\xd5\x05\x0c\xce\x21\x7c\xf5\x91\x2d\xc0\x7a\x9c\x37\x54\x39\x6f\x76\xc1\x9f\x2e\xba\xec\x8b\x30\x7d\xe8\x13\x00\xc4\x74\xd7\xb5\x4d\x28\xe9\xa9\x84\x7f\x2d\xa8\x23\xe2\x09\xd8\xd0\x3d\x37\x9e\xc1\x5e\x6a\xb3\xd7\xa9\x90\xee\xac\xeb\x89\xae\x4e\x09\x3a\xf4\xfe\x87\x9e\x9c\xca\x1e\xb0\x69\xe0\xa1\xbb\x19\x38\x41\x87\xde\x87\x83\x9a\x51\xca\xcc\xba\x78\xa1\x94\x99\x4a\xf3\x92\x0f\xc1\x5a\x85\x8d\x96\xf5\x08\x1b\x6d\xa6\x15\xa0\xa2\xbb\xa9\x3b\x12\x11\x3a\xbf\x37\x70\x88\xed\x8c\x0b\x99\x37\xa8\x57\xb2\x2a\x17\xef\x92\x88\x85\x25\x30\x5d\x3a\xbc\xad\xaa\x35\x90\x3b\x06\x20\xd0\x99\x16\x0b\x10\xe8\xae\xf1\xf6\xba\x39\x18\x7f\x27\xd4\x03\x15\x7a\xab\x17\x34\x49\xaa\x11\x8d\x63\xa0\x42\x57\x9d\x75\x00\x85\x3e\x44\xf9\x19\x00\x41\x57\x6d\x54\x00\x41\x77\xdd\xa6\x00\x82\xae\x39\xa8\x47\x01\xd1\xdf\xf3\xa0\x30\x0b\x68\x6b\xda\xb3\x2f\x32\x87\x4c\xad\xf2\x80\x42\x57\x73\xa9\x5e\xb2\x3d\xf8\xaf\x78\xcf\x82\x17\x8e\xeb\x35\xda\x04\x69\x0f\xa4\xe6\x6e\x56\x3b\x90\x9a\xbb\xa9\xef\x2e\x73\x77\x9a\xca\x0e\xa4\xe6\xae\xd3\x9a\xe0\xcc\x02\x24\x0e\xc0\x99\xbb\xe9\xe4\x2e\x61\xb9\xf4\x77\xbd\x84\xe2\xd2\xc7\x15\x80\xe5\xdd\xf7\x5d\x04\x54\xe5\x5d\xb1\x2f\x3a\x19\x40\x9f\x80\x52\xde\x9f\x4d\x5e\xd8\xbb\xd3\xaf\xb2\xb2\xc2\x4b\x8e\xd7\xaf\x8c\x5b\xe3\xd0\x81\x9a\xbc\xff\x09\x5e\x20\x06\x6c\xde\xfb\x48\xd2\x45\x11\xb2\x78\x68\x0f\xbe\x05\x93\x54\x5d\x07\x1e\x39\x33\xa0\xdd\xde\x9f\xaa\x27\xdf\x87\x53\xe4\x47\x5e\x7c\x41\xc0\x01\x37\xee\xe6\xb4\x02\xdb\xb8\x9b\x50\x2c\xb1\x89\x75\xc5\x4c\x3c\xe2\x80\xba\xde\xe9\x4e\xc5\x16\xb8\xb9\xdb\xd4\x29\xfb\x4e\xc6\x05\x2f\x10\x82\x78\xaa\xbe\xdf\xd5\x2b\x35\x9f\xc9\xb4\x8d\x98\x2f\x34\xf1\xaf\xe6\x47\x52\x48\x28\x75\x82\x10\x73\x8e\x00\x21\x0e\x10\x58\x06\x20\xc4\xf5\x67\x13\x0d\x1f\x2f\xc7\xa4\x65\xb2\xfb\xac\x8a\xc1\x46\xb9\x5b\xd6\x4a\x4d\x3a\x43\x99\x04\x0f\xbc\xe1\xda\x20\x5d\x77\xcb\x29\xe1\x05\x6f\x28\xed\x1c\x77\x06\x19\x87\x2f\xb9\xd2\xd4\x45\xa4\x95\x19\xbc\x6e\xcc\x94\x24\xa9\x1f\xc2\x0f\x0b\xca\x39\x6e\x3d\xa3\xdd\x27\xe8\x21\x53\x83\x01\xf0\xc3\xd1\xed\x08\x97\x92\xda\x24\x40\x22\xee\x26\x0c\x03\x89\xb8\x98\x7e\x00\x20\xe2\x62\x26\x9f\x5b\x5d\xc5\x95\x19\xde\x9e\x57\x3f\x62\xbf\x41\xfd\x6f\x4c\x8e\x66\x73\xba\x93\xf7\xc0\xd2\x04\x1c\x9e\xca\x1a\x80\x0c\x47\xf7\x19\x76\x93\x1f\xc1\x6d\xd4\x6e\x6f\xfc\x9e\x4c\x6f\x72\x4f\x15\x01\xe8\xfa\x9d\xbe\x4e\xb6\x67\xc6\x0d\x6d\x0d\x40\x11\xef\x89\xf2\x33\xe2\xc2\x21\xf9\x77\x7a\x41\x65\x65\x0f\x9b\xd5\x06\x19\xb7\x93\x86\x45\xd1\x4c\x34\x77\x38\x56\x26\x70\x33\xa4\x6a\xc6\xc3\xdb\x18\xad\x7f\x2f\x6e\xbc\xe5\x0b\x04\xc7\x59\x16\xd2\x38\xfa\x9f\x19\x94\xc1\x3b\xae\x46\xd6\xde\x28\x4e\x53\xe5\x19\xb8\xe3\xaa\x7d\xf8\x96\x79\xb9\xfc\xea\x4a\xb0\x22\x10\x8e\xbb\xc9\x58\xee\xa5\x2d\xc7\xdf\xb3\x93\x16\xc8\x4e\xfa\x8f\x49\x21\x7d\x76\x09\xdd\x88\x3a\x48\x99\x25\xf0\xc6\x41\x4a\xef\xb3\x7b\xb9\x9e\x7e\xc4\x61\x46\x06\xba\xc5\xc0\x30\x17\xc0\xad\x2f\xb5\x16\x11\x70\x93\xab\xbe\xe6\xb7\x99\x39\xdc\x4a\xe2\x75\x79\x21\x0e\xf0\x71\xd5\xc5\xe5\xce\x08\x68\x27\xfe\xcc\x6d\xe2\xcb\x5e\x1d\xf3\x3f\xde\x97\x52\x89\xc5\x61\x89\xa6\x0b\x4c\x48\xe4\x5c\x68\x3c\xab\xcd\x0c\x7f\x67\xa8\x96\xfd\x05\xbd\xcb\xd4\x28\xf7\x65\x92\x61\x3f\x3a\xa9\xc9\xdf\x91\x4f\xe0\xf9\x20\x1f\x17\x45\xd8\xfb\x62\xfe\xdd\x30\x97\x5d\xf2\x9b\x4d\x9b\xb5\x28\xdd\x37\xf2\x8c\x07\xeb\x96\x4c\x17\xff\x80\xb8\x39\x4f\x84\x4b\x9b\xb4\xfc\x46\xc7\x1b\x66\x2d\x01\x37\xb9\x18\xe1\x70\xe3\x05\x25\x13\xbd\x31\x58\xea\x8e\x75\xdf\x4a\x97\x76\xef\xce\x19\xa7\xda\xbc\xde\x84\x07\xdf\x5e\x6f\x6a\x3f\x11\x4b\x79\xe9\xdc\x75\xcb\x2a\x25\xd2\x8f\x5a\x44\xbe\x90\xbb\x07\x01\xe3\xce\xfb\x4d\x07\xcb\xfd\xa6\x28\x04\x80\x2f\x77\x6f\x94\xef\xcd\x37\xa3\x7b\x08\x88\xd9\xf2\x9a\xe0\x46\xa7\x9c\x4a\xa4\x20\x34\x77\x73\x73\xdc\xc2\x68\x9a\xd9\x00\x84\xe6\x6a\x54\xfc\x4d\x48\xb6\x3a\xde\x8d\x2d\x54\x8b\xd4\xfd\x1a\x56\x49\x97\xde\x3c\x4d\xf4\x95\x60\x2e\xd3\x14\xdd\xa2\x65\x2a\x65\x01\xe3\xdc\x4d\x0f\x01\x8c\xf3\xfe\xc3\x26\x5e\xdb\xf6\xab\x8f\x4e\x51\x95\x59\xb5\xe5\x66\x84\x79\xe9\xfc\x7e\x7f\xb9\xa1\x18\xaa\xae\xde\x76\xea\x53\xd9\x97\x3c\x7d\xaa\x7e\x50\xc0\x07\x20\xb0\x29\x97\x16\xca\xb9\x9b\x20\xe2\xf9\xa1\x28\x73\xa6\x45\x72\x3e\xb4\x2e\x3d\x66\xd4\x32\x90\x09\x5c\xe7\xaa\x1c\xf8\x60\xcd\x34\x14\xe2\xf9\x65\xdf\x2d\xee\x9a\x23\xfc\x3d\xde\x2f\x1a\xbd\x04\xb0\x73\x37\x0b\xc0\x63\x84\xb6\x1e\xdc\x00\x38\x17\xc3\x46\x00\x6d\xee\xb2\x36\x40\x9b\xf7\x47\xfe\x01\xc2\x8e\x7d\x3f\x4c\x85\xe0\xef\xcc\x15\x5b\x5a\x38\xe6\xa9\x7c\xf1\x00\xad\xf5\x6b\xfe\x21\xfd\x45\xc2\x04\x8e\xf9\x28\x7f\x1b\xf9\x9e\x02\x03\xfe\x59\x03\x1b\xc8\x26\x4b\x8e\xd7\x66\x3e\x79\x0c\x5f\x91\x04\x73\x18\xdd\xf7\x6c\xb5\xb5\xa8\x22\x3c\x5b\x2c\xe8\xa6\x4f\x10\xe8\x79\x1a\x2d\xf2\x54\x0e\x1b\xe4\xed\xc1\xa8\x99\x2b\x82\x06\xab\xb3\xab\x60\xd0\x43\x0d\xf1\xf1\x2a\x72\x5a\xc0\x9d\x9c\xcd\xb1\x93\x5d\x43\x04\x04\x0d\x09\x00\x46\xef\xd2\x74\xbd\xe1\xf1\xc2\x26\x7d\x48\x87\x69\x30\xf5\xc3\x75\xa5\x21\x47\x8f\xd7\x8a\x06\x7a\x3d\xda\x0d\x4d\x55\x0a\x7e\x73\xf7\x06\xeb\xe9\xec\xe4\xe2\xef\x32\x6f\x3b\xd8\x8d\xea\x65\xa8\x3d\x67\xca\x97\xdc\x19\x8c\xc9\xa4\xd4\xd9\xab\xa1\x51\x10\x5e\xf9\xe0\x6d\x64\xc0\x05\xe8\xcf\xdd\xa8\xfa\xc7\x84\x5b\xda\x43\x1f\x02\x9b\xbc\x9c\x7d\x46\x6e\x58\xba\x05\xf8\x95\x99\x88\x1e\x35\xcc\x6e\x7b\x70\x02\x87\x61\x8c\x53\xb3\x22\x79\x3c\x65\x67\xf6\x89\x8f\x40\xd0\x94\xcd\x3d\x28\x8b\x9e\xda\x07\x56\x6e\xe6\xcf\x67\x3a\x1f\x34\x30\xe5\x0f\x30\xef\x47\x55\x51\x42\xfb\xe0\x84\x6c\xd0\x2c\x98\xd0\xd1\x5d\x56\x5c\x86\x34\x2d\x3c\x21\x02\x07\xec\xe1\x31\x48\xda\x14\xa4\x60\x42\xd7\x9c\xb4\x90\x62\x20\xcd\x3e\x44\x29\x19\x0c\xfd\xac\xf4\x1a\xa3\x87\x66\x1c\xd1\x56\x08\x5a\x74\x37\x93\xc1\x93\x86\x4a\xf8\x38\x60\xd1\xdd\xf0\xe9\x67\x29\x15\x58\x20\x67\xd3\x3f\xc2\x7a\xe9\x3b\xf9\xa7\xcd\xa7\x04\x86\x74\xd5\x3d\xec\x21\x5b\xa5\x17\xf6\xcf\xa9\x9b\x02\xaa\xea\xa3\xd1\xd2\x8c\xa2\x40\x3e\x47\x6e\x0b\x35\x4a\x13\x95\x3e\x82\x3d\x39\x0e\x1c\x7f\xbc\x8e\x4c\xc4\x67\xfd\x8c\x9e\xcb\x39\x64\xae\x84\x87\xd0\xee\xf8\x60\xcd\x6c\x4e\xd5\xa5\x60\x85\xa8\x01\x16\x74\x35\xab\xe0\x63\xca\x90\xc8\x7a\xb5\x1b\xc3\xc6\x9e\x9b\x64\x5d\x8e\x3c\x19\x22\x1c\xf7\x31\x5d\x65\x9e\x08\x39\x22\x02\xfe\x83\xf6\xa8\x33\x28\x50\xd2\xdd\x18\xb5\x47\x87\x61\x6d\xd0\xcf\x2d\xd9\x94\x5c\xdc\x50\x2e\xc9\x26\x81\xcb\x46\x73\x00\x25\xbd\x4b\xf8\xc2\x3e\x94\x38\xc2\x29\xff\x11\x1b\x38\xa5\xa2\x0d\xb0\xd2\xdd\xb8\x82\xe7\xb1\x4f\xf4\xe3\x49\xef\x27\x3a\x88\xea\xa8\xa1\xf9\x91\x1d\x3a\xcf\x8f\xb7\x70\x7f\xe2\xde\x8e\xe7\x49\xa6\x61\x9b\x9a\x02\x1c\x30\x46\x57\x23\xa6\x9e\x47\xc2\x27\x7d\x7b\x95\x7b\xd0\x32\x45\xa0\xce\xa3\x2d\xbe\x84\xfc\x0b\xd4\xe9\xae\xeb\xe6\x23\xbe\x84\x09\x34\x41\x9d\xee\xcd\x5d\xc3\x35\xa2\x61\x27\x22\x4d\x8b\x7e\x3d\x1e\x79\xa7\x64\x13\x67\xa2\x92\xbf\x3b\xa7\xfe\x4e\x07\x5d\x04\x93\x5c\x9b\xc1\xee\xc9\x34\x27\xcb\x17\xc2\x27\x64\x51\xa0\x53\x18\x4a\x01\x36\x75\x51\x7a\x78\x92\x8d\x22\x8b\x01\x4e\x5d\x4d\xb1\xf7\x7c\xea\x6e\x1e\x55\xb3\x60\x4a\x8d\x3f\xee\xd8\x65\x89\x5c\x40\x1a\xc5\xfe\x60\x2d\x36\x74\x00\xcc\xea\x6a\x2c\xdb\xf3\x71\x22\x38\x9a\xef\x2f\xe7\x6f\xf2\x92\x4d\x07\x2f\xa4\x14\x60\xd4\xaf\x08\x9b\x2c\xed\xfb\x83\xa5\x1d\x96\xc6\xb6\x44\x57\x5f\x4c\xc5\x06\xbd\x03\x59\x5d\x54\x59\x5f\x3c\x7a\xb4\x4b\xbd\x87\xa7\x89\xb2\x42\x56\x19\x94\xf2\xca\x7d\x11\xde\x00\xa3\x2e\x52\x8e\xd7\x84\x28\x50\x55\xc0\xa8\xbb\x97\x0c\xef\x91\x5b\xd8\x5a\xe1\xc4\x70\x6b\x80\xa9\x33\x79\xc8\xcb\xf5\xa1\x31\x42\x6f\x49\xc2\xc8\x38\xd1\xae\xf5\x4c\x79\xd1\xae\xbd\x3c\x02\xc8\xfa\x38\xaa\xbf\x43\xe8\x39\x62\x6f\x81\x78\x3a\x84\x22\xc1\xb4\x1e\x78\x33\x24\xf9\xdd\x9a\x79\x11\xfe\x09\xac\xeb\xae\x2b\x33\x58\xd7\x5d\xe7\x33\xa1\xae\xcd\x37\x27\xbc\xf5\x94\x23\xbe\x70\xe6\xaa\x39\xfd\x4d\x1d\xdd\xc9\x90\x1d\x43\x40\xde\xcd\x8e\x43\xbe\xf9\x56\x66\x1b\xea\xfc\xa6\x8a\xee\xf2\x54\x17\x97\xfe\x55\xdb\xa6\x89\x26\xa8\x3d\x47\x15\x10\xec\xee\xf5\x30\x20\xd8\xc7\x90\x84\xbf\x66\x4c\xd1\x2f\xf0\x6d\x46\x7a\x51\x15\x2e\xc4\xfa\x44\x00\x76\xdd\x5b\xfe\xee\x61\xf4\x0f\x73\x4d\x6b\x77\x7c\xd3\x8a\xec\x26\xc0\x5a\xac\xc4\xf9\xea\x2c\x6c\x9a\x22\xe0\xad\x8b\x31\xea\xa0\x5b\x17\xb9\xe0\xab\x26\x5e\x7c\x96\x8a\x42\xf4\x13\xe8\x5a\xce\x00\xd0\x75\xd7\xd1\x0a\x70\xeb\xfd\x15\xb3\x2e\x92\xa5\x49\x7c\x5f\x5c\x87\x95\xc1\x80\xb7\xde\x5f\xd1\xdf\xe1\xfa\xd1\xc3\xe1\x5c\xf9\x3b\xc6\x3c\x7b\xce\x55\xa1\x5e\x67\x00\x5d\xef\xd9\xa1\x56\x72\x80\xe9\x4b\x92\xc0\xd5\x5e\x80\xbf\xe2\x3c\xb4\xf5\xa7\xcf\x1e\x58\xd6\xcd\xe4\x0e\x60\x59\x17\x1d\x1a\xc0\xb2\xae\xfa\x90\xbf\xa8\xda\x5e\x8e\xbf\x30\xeb\xa5\x37\xcd\x0b\x7f\x56\xbd\x7d\x23\x67\xc8\x17\x26\xc5\x67\xd3\x83\xb9\xe3\x56\xce\x09\xdb\x04\xcb\xae\x92\xc5\xbb\xdc\x63\x16\xd0\x3c\x85\xa6\x2c\x4e\xb5\x39\xa6\x5f\x82\x7c\xcc\x38\xf8\x2e\x5b\xa0\xdf\xe6\x2a\xf1\xc2\x07\x00\xeb\x43\xa7\x6a\x20\xab\xbb\xe6\x1e\x50\xaa\x8f\x69\xee\x64\x90\xa9\xbb\x97\x50\x02\x53\x57\xef\xdf\x5e\x4c\xbc\x49\x65\x2e\x05\x5a\x18\xd6\x8b\x59\x57\x53\xde\x6b\xba\x11\xaf\x36\xde\x64\xd5\x1e\x0f\x91\x9c\x5c\x1c\x0c\xbb\x49\x98\xb6\x0e\x5b\x35\xcb\xbf\x97\x47\x05\xa5\xf4\xc5\xef\x66\xe9\x6a\x02\x4c\x75\x57\xbc\x7d\x2f\x79\x22\xcf\xb7\xe3\x43\x47\x7c\xef\xec\x15\x7d\xbf\xed\x15\x6d\xe8\xc9\x6b\x02\xe9\x17\x9d\x56\x03\xe5\x4b\xba\x11\xbd\x13\xde\x5b\x2a\x8a\x28\xf2\xea\x91\xe3\xa5\x00\x88\xd7\x5d\x89\xec\x4d\x16\x5e\x2c\xae\xce\xcd\xf4\xc8\xc2\x97\xa5\x5d\xf0\x65\x47\x14\x76\x8b\x5d\x94\xf9\xb8\x2f\x4c\x4b\x69\x4f\xd0\x6f\xf3\xa4\xe1\x81\x9b\x52\x3e\x58\xd6\x25\x3b\x02\x3e\x84\xbc\xf1\xdd\xbc\xf1\x48\xdd\x1c\x38\xea\x3d\x40\xff\xb1\x27\xb4\xa7\xca\xe8\xac\xe3\x3d\x23\xab\x03\x82\xba\x1e\x3f\x7f\xdf\xab\xa1\x67\x05\xb0\xd3\x5d\x89\x5b\xd8\xe9\x69\x76\x64\xa1\xa6\xa7\xa9\xa3\xc5\x97\x6e\x46\x93\x82\x2f\xdd\x15\x70\xc1\x97\xee\xde\xe2\x83\x1a\x9d\xe9\x96\x40\x8d\xae\x9e\x8c\x2f\xd9\x18\x7d\x12\x29\xba\xe4\x47\x39\xe7\xc1\x0b\x02\x7b\xf7\x23\x05\xdf\xe9\x8b\xca\xcd\xf4\xab\x9c\x68\x1b\xfc\x90\xeb\xf9\x0a\xcb\xef\x30\xe3\x3e\x30\xd0\x5d\x13\x0d\x30\xd0\xdd\x4d\x05\x0c\xf4\xe1\x6d\x36\x30\xd0\x45\xe7\x9e\x4f\xc7\x56\x2d\x3f\x62\x3f\x4f\x25\xc6\xef\xc8\xd5\xa7\xbf\x87\x57\x34\xd6\xb5\x39\x5b\x15\xd3\x43\x90\x67\xb0\x34\x07\x18\xcf\xed\x07\xdf\xfd\x4c\x41\x69\x82\xea\x84\x75\xd6\x0b\x04\xf8\xe6\xfd\x62\xf1\x6c\xc4\x7f\xb0\x35\x39\x28\x62\x78\xf5\x2c\xfc\x8c\xe1\x95\x76\x00\xec\xbc\x4b\x50\x9c\x14\x1e\x4b\x6f\x08\x90\x9d\xbb\x0c\xe3\xab\xae\xff\x9f\x97\x1a\x9f\xc6\x6a\xc3\xe1\x3f\x13\x48\x9b\x81\xfe\x4b\xe6\xc7\x59\x07\xf8\xb9\x18\xaf\xf8\xd5\x9c\x0b\xe6\x2f\xf5\xcf\xf0\xe5\x65\xc2\xfd\xca\xdd\xc8\x00\x9a\x8b\xc2\x32\xc2\xd7\x4c\x51\xfe\x69\x55\xd6\x0f\xf6\x33\x75\x25\x9b\xee\xd3\xbd\xc5\x5c\xd4\x9f\xa9\x2b\xbd\xa5\x10\x88\x59\xdb\xd2\x97\xec\x2b\x7c\xd9\xbb\x59\x53\x0f\x98\xcc\x7b\x47\xf8\x47\x4e\x31\xd3\xca\x2d\xa8\xb7\x2d\x9f\xa9\x9c\x0f\x1b\xcc\x29\xf6\x25\x4f\x31\xfd\xed\xce\x37\x53\x92\x1a\x2b\x84\x06\xe8\xe6\xdd\x88\x2f\x0a\x35\xe8\x52\xe0\x35\x17\xed\x11\x20\x34\x77\xf5\xaa\x6f\xb8\xbd\xa0\xd6\x9f\x31\xb8\x5e\x71\x80\xbf\xdc\x7b\x96\xc0\x6b\xdb\x6e\x91\x03\x53\xef\x05\xa0\x98\xab\xd9\xdb\x3e\xbc\x59\xc5\xdc\x03\x65\xb9\xe7\x76\x9a\x27\xcf\x4c\x02\x31\xb4\x9a\xae\xc5\x55\x6e\x26\x05\x10\x57\x79\xa8\x7a\x81\xa5\xdc\xf5\x95\x00\x4b\xb9\xe7\x66\x82\xd9\x69\x25\x06\x4b\x79\x77\x95\x6e\x10\x5c\x6b\xe4\xd0\x17\x0c\xce\x7d\x49\x8a\x8d\xf5\xaf\x26\xe5\x60\x3f\xd2\x5a\x81\xf2\x2b\x30\xf2\x50\xa3\xfb\x22\x7b\x65\x23\xec\x1d\x84\xa2\x6f\xe5\x3c\xf3\x15\x5e\xaf\xea\xcb\x20\x23\xef\x12\xb4\xb8\xb2\x5b\xb4\x22\xcc\xa2\x97\x70\xdf\xca\xad\xeb\x3f\xde\x3d\xf8\x47\x90\x06\xd7\x7d\xb5\xdc\x18\x6e\x45\x41\x93\x72\xaa\xcd\xad\x69\xea\x64\xe0\x91\x77\x97\xa9\x8c\x40\x5a\x05\xfc\xef\x84\xbc\xc0\x1d\x80\x47\xee\xaa\x10\x9f\x60\x4a\xa6\xca\xfb\x4c\x01\x26\x94\x10\x90\xc8\x5d\x51\x0a\xb0\xe3\xdd\xa0\xd5\x66\x83\x8c\x4b\x03\xb2\x97\x30\x1f\x08\x0d\x66\x6a\x00\x06\xb9\xab\x3f\x03\x7d\x1c\x7a\x28\x7c\x19\xf9\x82\xb2\x06\x0c\xf2\xb1\xbc\x0d\x02\xfa\xb8\xab\x5f\x7c\xa2\x26\x69\x73\xfa\x04\x41\x34\x69\xf7\x87\x43\xab\x66\xe6\x8f\xf8\xd9\x3c\x6b\xb7\x7b\x80\x15\xbd\xf1\xa5\x76\x37\xe9\xdb\xea\x45\xcd\x87\x32\xac\x28\x2c\x40\xf2\x50\x01\xfe\x6e\xed\x00\xc8\xde\xdf\xe3\xfc\xd0\x04\x6a\xab\x72\xf1\x47\x30\x4a\x0e\xe3\xc9\xf5\xf0\x23\x0e\xaa\xe3\x7e\x3c\x8f\x52\x1f\x6e\x3c\xd5\x00\x04\x42\xd6\x97\x08\x20\xe4\xaa\x07\xde\xa7\x92\x59\xff\x8c\x50\x4b\x5c\x64\xef\x7a\xbe\xb4\xd2\xca\xac\x5e\x34\x76\x77\x0d\x4c\x56\x21\xe4\x43\xbb\xf4\x26\xeb\x43\xbb\x4c\x9e\xf0\xb9\x4b\x90\x5a\x41\x45\xee\x7a\x6a\x00\x84\xdc\x73\x39\x3e\x17\xcd\xdf\xc7\x7f\xff\x9b\x06\x37\x7e\x70\xdf\xbc\x2c\x01\x07\xb9\x1b\xc1\x21\xf4\xf1\xd4\x29\x58\xe8\xe3\xc3\x2b\x9d\x0f\x4e\x8c\x01\x6b\xfe\x30\xea\x06\x17\x61\xf3\xf7\xb3\xed\xe0\xd9\xf6\x0a\xcf\xbb\x3d\x92\x45\x4c\xc0\x92\x83\xc9\x9d\xbf\x1f\x5b\x64\x0f\x74\x82\x9b\xbc\x2b\x3a\x78\x71\x05\x3a\xcf\x9e\x8e\xc3\x3f\x58\x81\xbd\x4c\xf3\x77\xd8\xda\xe4\x19\x0d\xb9\xd0\x82\xd0\x85\xd8\xce\x26\x28\xc8\x1d\xd4\xca\x09\xf0\x71\x27\x8a\x6c\x82\x7b\xdc\x81\x33\x9d\x60\x1d\x77\xc0\x33\xe7\x4f\xdb\x6e\x3e\xd3\xd8\x26\xb2\xf3\x67\xf6\x67\x88\xd2\xfc\xe1\x6a\x14\x98\xf9\x26\xa8\xc5\x85\x10\xfa\x29\x6a\x31\xf2\xd8\x04\xb5\x38\x72\x70\xa8\x85\xc3\x41\x1b\x97\x0a\x9c\xd8\xfc\x11\x3d\xd2\x1b\x63\x80\x6f\x82\x58\x3b\x7f\x5c\xdd\x1e\xdc\x4e\xcd\x5f\xcd\x01\x31\xaf\x26\xc9\x9c\x8e\xa2\xe6\xa4\xd1\x88\x91\xa9\x04\x50\xce\x9f\xec\xb0\x51\xa4\x65\x77\xe9\x62\xcb\x9a\x69\x86\x9c\x15\x81\x51\x6d\x26\x42\xf1\x72\x12\xcd\x87\x09\x09\x9f\x20\x14\x97\x5f\xcd\xcf\x2e\xcb\xd0\xb5\xa6\x0c\x68\x11\x69\x7b\xa7\x33\x9d\xc5\xe9\xfc\x61\xca\xe7\xe9\x22\x74\x0f\x70\x61\xe6\xc9\xff\x8c\x0f\xfa\x04\x42\xb8\x03\x92\x37\x81\x10\xde\x25\xe8\x3e\x96\xd7\x20\x6f\xf7\x14\x2b\x38\x48\x77\x3d\x01\x08\x3e\xaa\xfb\x6a\xe4\xe8\xfd\xea\xf5\x2b\x2b\x53\x8f\x63\xc2\x84\x08\xf6\x77\x53\x43\xa0\x61\xef\xc3\x60\x09\xbf\xc2\xea\x3c\x7c\x26\x55\xe3\xc1\xa0\x4c\x4b\x99\xcf\x12\x06\x47\x68\x8a\xca\x69\xe7\xc3\x9d\x4f\xb5\x91\xd5\x32\x42\x10\x06\x7e\x4e\x03\x3e\x38\xc3\x85\x33\xce\x62\xd1\x1c\xd7\x95\x64\x3d\x9e\xc0\xf7\x16\x33\x97\x4e\xf1\x7b\x1b\x31\xda\xf3\x67\x0e\x07\x2e\x75\xe6\x6f\xb9\x88\x76\x0b\x2e\xb3\x7a\xbe\x70\xbe\xb2\x88\x92\x53\xf1\x8f\xcf\x22\x2c\xe8\xa9\xea\xdf\x7d\xc1\x59\xb6\xfa\x0c\xed\xc9\xdf\xf1\x53\xce\xdf\xd9\x5b\x9d\x99\x46\x5b\xeb\xae\xf9\x95\x67\xe4\x2f\x13\xdf\x14\xab\x37\x7e\x6e\x6f\x59\x4b\x67\xad\xaf\x1c\x32\x73\x64\x10\xc5\x74\x32\xb0\xb4\x92\x79\x72\xfe\x44\xd5\xaf\x4c\x3d\xf1\x14\x98\x82\x27\x00\xbd\x81\x23\xcf\x04\x1f\xb7\x91\xb3\x79\xfe\x6e\x8f\x89\x3b\x1b\x9f\x1b\x2c\xe8\xf3\x87\xc7\x0c\xb6\xe3\x09\x6c\xee\xfe\x88\x3f\x80\xd1\x69\xd3\xb1\x63\xc6\xec\xee\x52\x3d\x42\xa7\xfd\xe0\xf6\xae\xbb\x4f\xe4\x0d\xee\xc5\x37\x67\x94\x8f\x70\xea\x8c\x9f\x07\x4e\xea\xec\x96\xfb\x4c\x79\xe9\xf3\xe9\xb8\x69\xef\xb3\xda\xfd\x07\xe0\xb0\xbb\x57\x85\x17\xee\xc9\xa0\xaf\xc7\x2f\xcf\xd1\xe4\xc5\x6d\xc6\x7e\x38\xd2\x4c\xd7\xfd\x2c\xfc\xa7\xf1\xe2\x40\x7c\xce\xfd\xe0\x57\xf6\xb1\xd8\x24\x7a\x2f\x74\xf5\x48\xd5\x85\x7a\x0f\x4b\xfb\xfb\x09\xf4\xd6\xe0\x99\x6d\x32\x7c\x4e\x1a\xb0\x07\x0b\xd6\xeb\xee\x88\x2f\xba\xc5\x50\x1a\x92\x89\x8a\x3f\x13\xc6\x75\xd9\xdb\xd4\x36\x8a\xff\x58\x17\x53\x7a\x14\x77\xac\xc3\xdd\x54\x53\x2c\xd5\x09\xc2\xeb\xd1\x64\x2e\x00\xb9\x16\x7c\x40\xe7\x51\x25\x67\xd5\x3f\xbc\xa9\xa6\x11\x5c\x53\x0e\xae\xcc\xe6\xa1\xa9\x0b\x21\x79\x82\xa6\xda\xc8\xba\x34\x01\x53\xdd\xf5\xfa\x55\x66\x32\x63\x15\xa0\x79\x58\x63\xa7\x10\xaa\xd8\x13\xe7\xd1\x65\x85\xce\xa8\x19\x81\x97\xc5\xbb\xa2\x23\x1b\x05\xa4\xd5\xfd\x19\x63\xc4\x51\x05\x6c\x9c\x79\x90\x12\x18\x90\x93\x79\x74\x49\x7e\xf5\x85\x1b\xc3\xe5\xb3\x1b\xc5\x3e\x6a\x1e\xab\x96\x96\xe4\x39\xdc\x91\x48\xe8\xf4\x11\x97\x14\x90\x62\x26\x38\xab\x15\x10\xe2\x09\xcc\x6a\x27\x5b\xd5\x3c\x54\x15\xa6\xbf\x93\x45\x33\xac\xc8\xfb\x37\x7b\x6e\x0a\x3f\x3b\x3e\x9c\x04\xba\x81\x93\x24\x0e\xfd\xf3\x98\xb2\x27\xf7\x18\xf4\x72\x3a\xb7\xe1\xec\xc0\x03\x0f\x5c\x16\xbb\xcb\x11\x92\x61\xfb\x1a\x4a\x71\x16\x27\x5b\x1e\x20\xc9\xf3\x88\xf4\x91\xe4\x59\xf5\x05\x62\x74\x60\xe7\xc2\x67\x61\x1e\x29\xa2\x7b\x72\x36\xf5\xac\x68\xf9\xf3\xe0\xb6\xa9\xbb\xe1\x96\x67\xc5\xb5\x24\xf1\x1d\x01\x28\xf3\x58\x39\xb5\x2c\xe6\x92\xcb\xb9\x00\xb8\x6e\x54\x4f\xc1\x99\xe3\xa0\x08\x96\xae\xf8\xd9\x93\x93\xee\xc6\x5f\x92\xdf\x3c\xa4\xab\x90\xac\x23\x05\x6e\xcf\x34\x02\x37\x81\x0e\x53\x98\xd2\x85\xc4\x3d\x8f\x4b\xf7\xdb\x45\xd7\x14\xac\x83\xde\x5c\x0a\xba\x8e\x18\xb7\x0b\x90\x15\xe6\xb1\x65\xe9\x40\x4b\x9b\x87\xf2\x33\xec\xff\x30\x33\xfd\xf2\xb4\xde\xdc\xd5\x58\xd3\x6d\xad\xfe\xae\xda\xe4\x51\xd7\xb5\x7e\x79\xa8\x6e\x9b\xa0\xb7\x24\x92\x59\xf6\x89\xab\xa1\xee\x3c\x3e\xaa\xf5\x6e\x2c\x85\xef\xf0\xa3\xce\x3e\xf6\x23\xf5\x06\x77\x3e\x2e\x14\x20\x79\xcc\xe3\x91\xc1\x23\x5d\x1e\x8f\x4b\xd2\xfc\x47\x22\x65\x47\x36\xb9\x6d\xcd\xdd\x4e\x90\x78\x77\x6f\xbc\xda\x57\x18\x92\x39\x62\xac\x96\x48\x31\x92\xe3\xce\x43\x99\x7a\x59\xd6\x98\x65\xfa\x0a\x6a\x59\x75\xc9\xcd\x58\xa7\x44\x09\x14\x69\x27\x57\xda\x04\x71\x74\x77\x89\x16\xb8\x67\xe9\x9e\x4c\x3c\xf1\xbb\x04\xee\xb3\x05\xbf\x21\x68\x44\x62\x85\xdd\x8a\x08\x97\x09\xe4\xe8\xd1\x00\xd2\x9e\x65\x13\xf0\x8a\x37\xe2\x14\x3b\x34\x40\xc9\x9b\x60\x84\x76\xf2\x95\x4f\x70\x41\x3b\x5e\xa4\xb3\xe8\xc1\x80\x05\x60\x0a\xfa\x39\xb0\x73\xcf\x62\x84\x34\x7a\xe2\x14\xf5\x53\xa8\xfe\x59\x94\x79\x39\x11\x20\x7d\xee\xd6\xfd\xea\xb3\x08\x2d\x1a\x4a\x85\x9a\x3c\x0b\x51\xcf\xb8\x81\x4d\xf0\x39\x2b\xa9\x67\x66\x31\x7a\x8a\xd0\xfa\x59\x48\x0d\x4f\x46\xa3\x59\xb8\xf4\x20\xf9\xf2\x2c\x29\xe9\x22\x92\x01\xd6\xd9\x49\x0b\x3c\x0b\x92\x2e\x8e\x89\x13\xac\xce\x3d\xda\xc6\x0b\xf9\x69\x91\xdc\x01\xee\xac\x4a\xe8\xe2\x76\x36\x9c\x2a\xa7\xc0\x9d\xa1\x1c\x55\x00\x14\xc3\xa1\x78\x02\xdc\x59\xa6\x93\x48\x62\x37\x82\x12\x27\xf0\x9c\xbb\x34\x4d\x98\x75\xe5\xe7\xc4\x99\xe4\x15\x25\x75\x16\x63\xa6\x51\x52\x27\xf8\x9c\x9d\xa4\xa4\x13\x78\xce\x4a\xda\xb0\x09\x3c\x67\xc5\x93\x62\x02\xc9\xd9\xc1\xf3\x9c\x40\x72\x0a\xdf\x30\x8b\x91\xd4\xa8\xa2\x13\xb0\xcd\xaa\xa4\x03\xd6\xe6\xee\x08\x3d\xef\xb9\xcc\xfe\xb3\xe7\x99\x14\x9a\xb3\x40\xee\x71\x5e\x9c\xe2\x6b\x2e\x54\xce\x09\xbe\xa6\x48\x04\x13\x7c\xcd\x5d\x15\x9d\x32\x73\x0a\xdb\x10\xac\xcd\xdd\x38\x33\xd2\x3f\x98\x2e\x1f\x99\x1c\x1e\xdd\x77\x8a\xbc\x59\x9d\xb6\xcd\x1f\xda\xaf\xfb\x91\xcc\xc9\xc5\xe7\xc6\x84\x9b\xea\x09\x08\xe7\x2e\xed\x1f\x8b\xfb\x48\x9f\x65\x8d\xfd\xaf\xc0\x8d\x09\x2a\xe7\xfe\x92\x6e\x02\xbb\x3d\x9c\x22\x2c\x4a\xe4\xce\x9c\x65\xe6\xee\x65\x52\xa7\xc2\x8b\x63\x01\xaf\xb3\xd8\x7d\x6c\x4a\x5c\x75\x4d\x80\x38\xfb\xb0\x97\x53\x29\x01\x89\x11\x24\xce\x42\x12\xd6\x59\x30\x2f\x91\x67\x71\x82\xca\xd9\x49\xf1\x38\x41\xe2\xdc\x9d\x67\xe2\x37\xf3\xe9\xc3\xdd\x87\xbf\xfc\xa1\x08\x57\xd2\x58\x64\x7b\x21\xa3\x75\x18\xcb\xba\x68\x23\x6d\x42\x4e\xe4\x62\xff\xb8\xec\xa6\x4c\xe3\xca\x65\x16\x4d\x3a\xc8\x63\xe5\xb4\x34\x05\x4e\x1b\xf7\x1b\x69\x4c\xf7\x05\xb2\x07\x3b\x2e\x46\x2b\xcf\x7c\xc9\x8e\xd0\x38\x79\x4d\xf0\x6e\x9a\xe5\x92\x45\xd9\xf7\x4b\x46\xc0\xa0\xb8\x41\x19\x52\x86\x4b\x15\x2b\x7c\x31\x4b\xa0\x1f\x2d\x3e\xb2\x26\x69\x17\x2d\x60\xa9\xa9\x78\xfb\xcf\x72\x2b\x2c\x3b\x56\x3d\x17\x5c\x01\x22\xb4\x86\x94\x84\x1b\x90\x1c\x2a\xa6\x9a\xe1\x41\xcb\x1b\x90\xf0\x23\x15\x4d\xa4\x31\x00\x35\x8f\x20\xa1\xc1\x04\x45\xb3\x0f\x3b\x65\x32\xf5\x7c\x76\x14\x74\x4a\x48\x13\xa4\xac\x62\xc6\x74\x65\x15\xb1\x2f\xa7\x8b\x04\xdc\xe5\x0f\x01\xa3\x98\x12\x55\x69\xa3\xbc\xd6\xc4\x3c\x19\x57\xac\xc1\xa2\x90\x01\xbd\xba\x09\x5f\xfc\x4b\xf2\x77\x3c\x60\xdc\x3a\x42\x56\x66\xb5\xc9\x2e\xaa\x2f\x2c\xa5\x23\x82\x5d\xa8\xc2\x15\xb8\xc5\x70\xaf\x7d\xaa\x24\x08\x3a\xe5\x4b\xa7\x2a\x4b\x1b\xd7\x4f\xdb\x1f\xc9\x5c\xdd\xff\x9f\x07\x9b\x12\xd5\xd4\xe8\x5a\x17\x6a\x32\x0c\x84\x00\x40\x28\xfb\xc8\x3f\x2e\xbf\xf2\x0f\x65\x6b\xbf\x3a\xa4\x82\x10\xf3\xc4\x9a\x5c\xf9\xc2\x42\x55\x9f\x1d\x48\xe5\x59\xcf\xff\xe0\x19\x82\x6f\xb5\x18\x4f\x48\xf5\x32\xeb\xa1\x5d\x31\x0b\xef\x1d\xc9\x25\xc4\xac\x25\xbb\xcb\x57\x24\x24\xd7\xe6\x51\xc9\xb6\x41\x7a\xc6\x09\x4c\xe5\x31\xb8\xc6\x9b\xe2\x54\x36\x12\x11\x4c\x80\x2a\x3b\x20\x78\x13\x9c\xca\x82\x3b\xcb\x04\xa6\xb2\x12\xd4\x3a\x6b\x71\xeb\x64\x69\x8e\x46\xf8\xfc\xd1\x41\x3e\x4a\x65\x01\x71\x04\xfc\xca\x3d\x6c\x5f\x5c\x4d\x18\x5a\x25\xef\x38\xd1\xaa\x13\x60\xcb\xfd\x95\x2f\xb2\x1e\x78\x36\xf8\x95\xfb\xe5\x4f\xca\x07\xba\x65\x27\xc7\xcb\x04\xdd\xf2\x28\xf6\x5f\x78\x68\x12\x03\x4c\xd0\x2d\x8b\xa7\xb9\xc2\x8a\xc8\x99\x33\x41\xaa\xdc\x54\x93\x36\xbb\xa6\x3e\xbb\xd9\x5d\x44\xf8\x5a\xed\x9a\x04\x20\x32\x80\x4b\x76\xf2\x85\x4c\xc0\x25\x77\x79\x26\x83\xf8\xa9\xea\xc4\x0c\x9d\x6b\x61\xaa\xd5\xf0\x59\x8d\x63\xc0\x46\x76\xd2\x6b\x4c\x60\x23\xcb\xb1\x6c\x04\xc7\xf5\xe1\xd2\x0d\x25\x64\xd8\x6d\x4d\xeb\x0b\x32\x58\x25\x61\x27\x41\x5a\x53\xdc\xc8\xf8\xb9\x0d\xcc\x90\x01\xd1\x07\x2a\xb2\x8f\x7c\xc6\x26\x98\x05\x68\xbb\xfb\x7d\xb6\xcd\x46\xe3\x7e\x81\x44\x0d\x13\xa4\xc8\x4e\x9e\x87\x29\x52\x64\x23\x49\xc1\xac\xd2\xfc\x65\xa7\x22\xdb\xa6\x0d\x43\x71\x09\xbe\x9f\x22\x42\x72\xf7\x33\x01\x84\xac\xf2\xcb\xaa\x77\x79\xf5\xd9\x13\x1a\xbe\x60\x69\x82\x52\x57\x33\x73\x72\x4d\x38\x01\x7e\xdc\x2f\xfc\x93\x1c\x00\x3e\x21\xf2\x63\x80\x37\x31\x6b\x5a\x6f\x60\xd1\xd5\x2b\x02\xe8\x54\xd5\xdf\x2d\x8f\xc9\x92\xdf\x85\x5f\xb9\xa1\x91\xa9\x41\x6f\xdc\x6b\xc5\x3f\xa7\x06\x31\xcf\x86\x39\x2f\x08\x75\x9e\x40\x33\x1e\xfa\xdb\x4d\xb1\x19\x35\x23\x88\xcd\x78\x2c\xa7\xe2\x94\xdc\x78\x6e\x44\x64\x5c\x0e\xf3\x42\x14\x80\x9d\x55\xcc\x32\x80\xae\x4d\x10\x19\x8f\x46\x3a\xb3\x59\x35\xcb\x90\xaa\x6c\xd6\xcb\x13\xe1\x89\x42\x1b\x11\x05\x6d\x82\xdc\xd8\xc9\x5c\x30\x2b\xf6\xff\xf6\xef\x8f\x67\xaf\xb6\x2b\x7c\xc9\xb0\x3d\x01\xc0\x38\x92\x95\x60\x56\x78\x0a\x81\x5e\x13\xb4\xc6\xfd\x11\xfd\xbd\xdd\xe7\x4e\xeb\xed\x66\x61\x56\x6e\xfc\x62\xdc\x50\xb7\xae\xbb\x7e\xe3\x3e\x75\x7f\xa4\x32\xe3\x0c\x13\x47\xf5\x93\x28\xc9\x6c\x3c\x7d\x58\x85\x1a\x19\x07\x26\x30\x8e\xa1\x81\x2b\x61\x1c\x97\x4b\x62\xf0\x94\xfb\xc6\xec\x97\xe1\x86\x7a\x72\x46\xa9\x0b\x97\xb5\xe1\x38\xb8\x32\xc0\xbd\x67\x0a\xe3\x18\x3f\xb7\xe3\x4b\xf0\xb9\x5b\xfb\xcd\x80\x7a\x7a\xf5\x7a\x48\x18\xf8\x9b\x03\xf7\x0f\x49\x3e\x2a\x49\x7d\xb3\x75\xba\x45\xb6\x0b\x62\x80\x27\x68\x8f\x15\x2f\xe9\x09\xd8\x63\x27\x6a\x64\x56\xac\x50\xc3\x9a\xe0\x5c\x2d\xb0\xed\x0a\xe1\xa8\xc5\x0f\xd8\xc6\xdd\x1e\xcb\xc1\x7d\xfd\x90\x43\x7c\x2e\x39\xda\x4d\x4d\x3e\xf6\xa7\x5b\xdf\xac\x9f\x82\xa2\xab\xe8\xcd\x3e\x81\x64\xb3\x92\x0a\x63\xd9\xfd\x4f\xfe\xcc\x6a\x35\xdd\xd2\xb8\x0b\x9b\xed\x97\x33\x36\x78\xd1\x0d\xbe\xf2\x9c\x23\x08\x5e\x98\xb1\xfc\x63\x90\x1d\xce\x67\x48\x0c\xbb\x19\xac\xc9\xaa\x5d\xa9\xe9\x61\x1e\x08\xf1\xed\x50\x42\x65\x56\x9b\x1e\x6b\x60\x94\xcc\x56\xd2\x5d\x9d\x36\x8a\x01\x1b\x7c\x65\xa4\xb1\xf3\xdd\xe4\x66\x9c\x38\xa0\x1f\x43\x7b\x65\x93\x99\x11\x7e\x3d\xc1\x7e\x0c\xad\xa7\x40\x3f\x86\xa6\xcf\x96\x86\xb0\x69\x69\x0f\xcc\x61\xe3\x6e\xa8\x65\x71\x44\x32\x3b\xaf\x1e\x05\x03\x6b\x95\x00\x1c\xc8\x40\xd3\xc5\xdb\x81\x6f\xfe\x55\xf1\x1c\x9a\x20\x42\x56\x02\x3f\x67\xf3\x1e\x21\x1c\x11\x7e\x64\xa4\x29\x98\xa0\x40\x76\x72\x0b\xcc\xd6\x94\x24\xad\x95\x9b\x74\xd0\x85\x66\xcb\x2b\x05\x48\x48\x6b\x39\x07\xbe\x24\x57\x61\x99\x84\xdb\x22\xd0\x78\x82\x22\xb9\x5f\x58\xcd\xe6\x06\x40\x30\x6a\x7a\x8c\x11\x7f\x3b\x85\x8e\x0c\xb0\x2f\x66\x4b\x63\x19\x3a\x6f\xeb\x4e\x2f\xcd\xf4\xac\x99\x09\xc2\x31\x7c\x38\xc6\xd4\x98\x2c\x8d\x9b\xa6\x9b\x81\xdc\x53\x44\xf2\x4f\x31\x24\x03\x40\x8f\xd9\x50\x98\x54\x0d\xc0\x93\xec\x6a\x58\xc0\x49\x36\xaf\x56\xda\x48\xf2\x4b\x37\xb8\xa8\x18\xf9\xdc\xc8\xae\xe3\xf3\xb0\x4b\x2c\xe0\xb0\x4b\x3e\x33\xbb\xb0\x88\x36\x72\x12\x98\x9e\xa1\x73\x6b\xfe\x23\x5b\x71\x7f\x73\xf9\x4e\xf8\xc7\x6c\xb2\x53\x27\x74\xe6\x4c\xd1\xe0\x54\xaa\x72\x9d\x09\x3b\x96\x20\x08\x4c\x49\x90\xfa\x6c\xaa\x47\xf0\x97\x86\x0d\xae\x85\x1b\x40\xee\x78\xb8\x8d\x0d\xdf\x42\x09\x07\x65\x72\xff\x41\xb5\xc1\x6e\x1d\x7e\x04\x45\x87\x87\x24\xfc\xa4\xd6\x1f\xe1\x27\x9b\x5a\x38\xf0\x93\xe5\xc8\x9d\xb8\x72\x31\x99\x07\x2f\x2a\xc0\x09\x99\x6d\x79\x26\x10\x2e\x1b\x98\xc7\x81\x9f\xd0\x6c\x69\x87\x73\x6f\x19\x42\x45\xba\xdc\x09\x06\x65\x27\x42\x7c\x82\x41\x19\x1a\xe5\xdb\x99\xed\xd3\xca\x99\xe3\xa2\x7d\x35\x2c\xbb\x4f\x7a\xc9\x46\x12\xa7\xd9\xe4\xa1\x87\xe7\xfe\xcc\x3d\xeb\x0b\xb2\x53\x58\x71\x76\x92\x7e\x65\xbc\xb2\x53\x79\x4a\x66\x0f\x5f\x5c\xd4\xfa\x97\xcb\xcb\x14\xaf\xd2\xb8\xc1\xd9\x4c\x98\xa1\x69\x08\xf4\xca\x43\xd1\xb9\x25\xbb\x45\x66\x15\xb1\x32\xc8\x32\x3b\xdb\x95\xcd\xd2\x3b\xe2\x93\xe3\x90\xf6\x08\x94\x25\xbd\xd1\xc7\x9c\xe8\xd2\xd9\x84\xa6\x20\xa2\x74\x82\x39\xb9\xc7\xe0\x0b\xfb\x12\x5e\xd8\x60\x8c\x7a\xa5\xce\x76\xb3\xfb\x60\x73\x60\x4e\x96\x92\xe7\x00\x06\x58\xbc\x49\x04\x67\xb2\x13\xa7\x3b\x1b\xe6\xbc\xf0\x6a\x0c\x68\xc9\xfd\xe2\x57\x12\x58\x04\xcb\x86\x26\x56\xbc\x3b\x6c\xd8\xf3\x48\x8b\x36\x9b\xd7\xec\xe1\x56\x7e\x72\x5e\xf8\x07\xe3\x1e\x01\xad\x53\x6c\xca\xee\xb1\x25\x03\x24\xf1\xac\x53\x6c\xca\xa5\x9e\xda\x74\x58\xb3\xbf\x58\xfd\x86\xcc\x44\x84\xab\x9f\xfb\x82\x2c\xd1\x43\xc6\x42\x9a\xc8\xe2\xfd\x62\x7b\x73\x4e\xad\x8a\xfd\xe6\x99\x7a\x99\xd3\x43\xc2\x8b\x8b\xdb\x90\x20\xa7\xea\x87\x50\x0c\x20\x65\x55\x91\x6e\xaa\x81\x9e\x10\xf9\xa7\x67\xfb\xcb\x35\xa4\x23\x9f\x2a\x5a\xf3\xc5\x45\x70\xa9\x33\xa8\x99\xdd\x0e\x0a\x65\x78\x73\xd3\x81\xc2\x22\xf8\x6c\x02\x48\xd9\x89\x50\x9b\xe2\x51\x12\x3e\x36\xbb\xfe\x6e\x5e\x67\x76\x82\xa5\xc0\x02\x9b\x1d\x7b\x22\x71\x5e\xb3\xff\x5e\x9e\xf9\x06\xd6\xa7\xd6\xd9\x89\x5a\x2e\x5e\x5a\x02\x66\xd9\x09\xae\x9a\xfd\xb0\x05\x7a\x71\xe8\x57\xd6\x2c\xa1\xea\x16\x96\x40\x08\xe5\xcc\x74\xec\x8f\xda\x85\x41\xb2\xac\xc0\x9a\x4c\xd0\x2b\x3b\x81\x59\xb3\x8b\x6f\x85\x20\xd5\x4d\xee\x01\x86\xcb\xec\x66\x8c\x56\x52\x04\xd5\xf2\xa8\x8a\xf9\x5d\x80\x2b\x76\x2e\xb0\x96\xbb\x08\xc3\xc3\xf5\x8d\xec\x39\x13\x8c\xcb\x3e\xf3\x79\x3a\x24\x4b\x98\x8b\x8c\x9e\x03\x70\x55\xc0\xc7\x98\x60\x5f\xee\xaa\xec\x0a\x88\x1a\xd5\x3f\x9c\x41\xa6\xb9\x90\x33\x15\x82\xd4\xeb\x8f\x8b\x48\x9f\x49\x53\x05\x77\x02\xfa\x32\x8f\x49\xdf\x8c\xb9\x48\xa8\x40\xc1\xdc\xad\x31\x6e\xae\xf5\xf1\xda\x98\xc0\x60\x36\x12\x4a\x4d\x60\x30\xf7\x47\xbe\x60\x74\x65\xaf\x08\x83\x59\x1d\x75\xb5\x47\xb6\xe6\x79\x41\xf4\xed\x2d\x67\x90\xd2\xcd\xf3\x6a\x71\xf2\x44\x11\xc0\x34\x3b\xe6\xcd\xe9\xa8\x5b\xce\x0d\x75\x35\xcf\x6e\xb1\xc4\xe2\x2b\x7a\xd8\x4e\x9e\x99\x1a\x0c\x9f\x5a\x3e\xba\x80\x16\xc7\x5f\xe1\x6c\x53\x50\x4d\x62\x92\x26\xa0\x9a\xfb\xb8\x33\x14\xc1\x2e\xdc\xe7\x3d\x7b\x4f\x5f\x3a\xd7\x21\xae\x78\x4a\x05\xd5\x17\x72\x18\xb8\x4c\xdd\xde\xbb\x63\xba\x92\x1d\x6d\x74\x3b\xcc\x54\xe3\x7a\x37\x5d\x7d\x5c\xef\x70\x42\x9e\xa0\x6a\x16\x8d\x25\xa0\x6a\xee\x59\xb4\xd6\xcf\x5a\xa9\x89\x94\x94\xc4\x3f\xcf\x0e\xf4\x45\xf1\x3e\x16\x88\xcd\x8a\x07\xf4\xec\xc3\xd9\x65\xde\xc4\xc1\x40\x8c\x06\x6e\xd3\x7c\x19\x13\x44\xcd\x3e\x9d\xe8\xe1\xdc\xfa\x3b\x39\xfd\xed\x06\xde\xe8\xd3\xe1\xa0\x55\x1b\xb7\x37\x3b\x7e\x7a\x33\x7b\x24\xf3\x63\xf9\x70\x69\x50\xd7\xe9\x6a\xdb\x24\xa0\x98\xa0\x71\xee\x17\x4a\x20\x1e\x68\x47\x06\x9a\xb3\xcf\x7c\xee\x92\x35\x3f\x62\x57\x14\xab\x02\xdd\xc8\xed\x8c\x4e\x3e\x1d\xb3\x17\x7c\xa4\x1b\x98\x82\x76\x06\x2e\x62\xb3\x63\x7c\xd5\xf4\x9f\x98\x9d\xe4\x0b\x98\x1d\x83\xeb\x74\x4d\x49\x50\x52\xbc\x69\x06\x9a\xb3\x4f\xf7\x5a\xb0\x5c\xce\x53\x90\xb7\x6e\x5a\xe0\xb6\x09\x6b\x12\xdb\xc7\xe7\x8f\x67\x2a\x4a\x01\x04\x1a\x0c\x66\xe7\xa1\xdd\xb0\x93\xcd\x7a\xba\x6b\x56\x36\x4d\xe9\xa5\xd9\xd1\xd3\x47\xfc\xf6\x74\xa2\x96\x34\xd8\x8e\x90\xce\x5a\x7b\x40\x3f\x73\x3a\xe9\x2d\xfe\x77\xd3\x15\x13\xc8\x42\x15\x11\x08\xce\x3e\x9d\x10\xc4\x02\xd2\x61\xce\xae\x4d\x16\xf0\xc4\xd9\x89\xcc\xd6\x85\x07\x14\xcd\xda\xdc\x75\x97\xb5\xd2\x41\xed\xb3\x21\xf1\xbb\xac\x95\xa6\x2f\xa5\x28\xf8\x39\x18\x9a\x7d\x66\xad\x0b\x42\x43\x37\x2e\x79\x9a\x53\x4b\xee\x92\x99\x05\x1c\x11\x53\x7b\x21\x8c\x48\x4f\xee\xa4\xb5\xcc\x1a\xce\x77\x53\xd2\x77\xdb\x27\xa6\xe3\xce\x91\xd2\x41\x7c\xda\xbb\x34\xf1\x96\xfd\x7b\x9e\x6f\xef\x8f\x69\x0e\x11\x63\xe6\xef\x3a\xda\x77\xab\xa2\x1f\xf0\x7b\x21\x34\x87\x6a\x35\x10\x9a\xbb\x2a\x5e\x30\xf5\xce\x7c\xae\xfe\x41\xe3\x60\x52\x90\xfa\x72\xf6\xa7\x13\x04\xc5\x90\x1e\xcd\x58\xf9\x87\xd7\x9b\x96\x66\xab\x65\x61\x52\x32\xba\x59\x9e\xec\x94\xa5\xd5\x0b\xf2\x1f\x58\x14\x8c\xb9\xbf\xce\x0e\xcc\x1f\x9c\xcd\xba\xda\x9f\x1a\x2f\x20\x9c\x7d\x5a\xdb\x9b\xcb\xc9\xac\xa8\xbd\x1f\xae\xad\x68\x9b\xdc\x09\x76\x13\x80\x91\xd6\x7f\x76\x62\xb2\xe3\xc8\x22\xd2\x78\xcf\x29\x90\x5b\xfa\xc5\x80\xbd\xb9\xbf\xa2\x08\x51\x63\x5a\xc0\xc5\xde\x6c\x91\x7f\xb0\x0e\x6e\x51\x2e\x27\xf5\x55\x1a\x5e\x42\x92\x30\x60\x0e\xdc\xf7\xf4\x30\x12\x7b\x73\x68\xc4\x18\x3a\xa1\x1c\xf9\x95\x9b\x60\xf8\x59\x8e\xa4\xf3\xa2\xb3\x00\xf4\x10\xc8\xcd\xae\xef\xc7\x48\x25\x9b\xe6\x07\xbe\x7d\x3a\xd0\x00\xb1\xb9\xeb\xb2\x62\xb6\x04\x4b\x07\xac\xe6\xae\x97\xe6\x53\x1e\x81\x80\x08\xb2\x19\x87\x15\x1f\x72\x2b\x2b\x3e\x72\xc0\xd4\x7c\x68\x35\x1d\xfe\x23\xbb\xb1\x6a\xbc\xfa\xf4\x17\x11\x28\xb3\xe8\x34\x01\x50\x66\xd7\x79\x00\xa0\xcc\x23\x0e\x3b\x86\x0b\xbd\xf8\x6a\x13\xa4\xcc\xee\x8d\x03\x48\x99\xfb\x2b\x1a\x49\x49\xa2\xfa\x8f\xea\xad\xbd\xe4\xea\xd3\xdb\xf4\x51\xd5\xd9\x6c\x45\xa3\x33\x00\x25\x53\xb0\xcb\x99\xcf\x2a\x00\x76\xd2\xb4\xd0\x3d\xff\x61\xf6\xd0\xd4\xc1\xb7\xdc\xc5\xa9\xab\x29\xa7\x43\x92\x86\x30\x13\xe0\xd8\x4c\x50\x2d\xab\x22\xbf\xa8\x96\x2d\xec\x3e\x16\xe7\xa2\x2b\xc3\x48\x47\x18\x7b\xa9\x78\x30\xfd\x4a\xfd\x23\x5f\xd4\xae\x6d\x3f\x15\x7a\x77\x02\x72\x40\x76\x52\xf6\x9e\xb3\xc7\x05\xa8\x74\x6c\x74\xa7\x15\x92\x38\xfa\xe0\x5a\xd5\x3f\xa0\x63\xd3\x02\x39\x91\x54\x85\xda\x3e\xb3\x40\x9e\x01\x46\x95\x69\x9f\x51\x0c\xc6\xc8\xf9\xa2\xbc\x5c\x76\xfa\x15\xc5\x51\xd9\xc6\x70\x4d\x5c\x2d\x3d\x04\xc1\x83\x99\x22\x4d\xb6\x70\x22\x51\xb7\xbd\x17\x1b\xa9\x6e\x3b\x2a\x62\xc0\xbc\xb5\x02\x77\x72\xff\xc1\x6c\xc9\x36\xe1\xc0\x43\x56\x09\x4d\x05\x6a\x92\x88\xd7\xfd\x4c\xe4\x65\xb3\x22\x3b\xe5\xef\xdc\xf0\x38\x9f\x93\xa4\x37\x18\x9c\x80\x99\xec\x5e\x7f\x88\x32\x39\xb4\x9c\x8d\xc0\x1e\x69\x8f\xc8\x02\xe6\x6d\x06\x90\x93\x55\xad\x77\x24\x93\xad\xfe\x61\x66\x5a\x7a\x47\xce\x15\xdd\x3d\xc5\xa2\xf4\xee\x61\xa0\xd9\xcf\x6c\x00\xba\x87\xd4\x35\xb4\x6e\x3b\x4a\x42\xb9\x89\x5c\x99\x63\xe5\x3a\xfe\x49\x03\x81\xa6\xec\x5a\xdd\xc7\xc2\xb7\xd0\xe5\x5b\xb8\x2e\x65\xcd\x9a\x41\xb2\x49\xed\x5b\x74\x6b\x29\x85\xc1\xde\x86\x8e\x37\xe0\x02\xcc\x91\x4a\x3e\x46\x11\x30\x27\x43\x3f\xa1\x91\x11\xe0\x36\x78\x4a\x04\xf2\x1f\x66\x57\x1a\x76\x4a\x5e\xdc\x17\x17\x53\xed\x32\x91\xc3\x99\x5c\xae\x73\x5c\x5a\x05\x1c\xf1\x45\x1a\x65\x69\xe3\x95\xd5\xd2\xc6\x95\x18\x8b\xfb\xf9\x56\x38\x84\xab\x0d\x98\xa8\x26\xf3\xa1\x07\x8e\xe3\xb8\xdd\xab\x76\xea\x26\x45\x1b\xb2\x8a\x18\x92\xc5\xed\x79\x7b\xe8\xdc\x6c\xb8\x2f\x16\x0f\x87\xa1\x60\xba\x4b\x0c\xb3\x82\x85\x1d\x81\xa3\x6a\x95\x1f\xc9\x51\xa5\x58\x8f\x1d\xf1\xd9\x53\xe3\x1e\x03\x67\x52\xa3\xfc\x78\x80\x30\xc7\x12\x05\xe6\xe4\x1e\x9f\x7f\x5c\x68\x67\x96\x26\x7f\x97\x07\x13\xf6\xa8\xc5\x1b\x9c\xc9\x9a\xdb\xe7\x95\x0e\xb9\xd3\x81\x6c\xd0\x30\x3d\x5e\x7d\x98\x68\xe1\x45\x80\x97\xf0\x60\xe3\xd6\xfe\x0c\x2e\xe5\xee\x9e\x7f\x4c\xfe\x60\xbd\x5f\x29\xad\xe7\x8a\x48\x6c\xed\xbd\x43\x58\x07\xbd\xf1\x12\xa4\x32\xec\xf8\x66\x9f\x95\x04\x96\x73\x18\x7e\xad\x6f\xdd\xf8\x3c\x4e\x2e\xf2\x07\x75\x42\x8f\x02\xa5\xb2\x26\x05\xfd\xd4\xd4\x60\xde\x42\x53\xe6\xae\xf8\x72\x72\xe8\x22\x3e\x3f\x21\x09\xfb\xb2\x71\x7a\xc2\x65\x2d\x59\x71\x27\xc0\x93\xbb\xc4\xe0\x05\x0c\xd7\xf0\x8f\x46\xe9\xca\x73\xb6\x17\xbc\x30\xf2\x2c\x1d\x3c\x1f\x3c\xe3\x80\x37\x2d\x90\x1b\x7d\xf2\x72\xe9\x1f\xc6\xb3\xfe\x02\x9d\x67\x75\x1a\xce\xcc\x4c\x36\x8a\xc6\x0e\x90\xe4\x9e\x50\x3a\x75\x68\x15\xc2\x8c\x30\x0f\x65\xfa\xb0\x8c\x03\xb4\x88\x92\x31\x67\x40\x28\x49\x67\x17\x28\xc9\x22\x4b\x03\x4a\xb2\xea\x6a\x33\xf3\xd6\x97\x4d\x35\x8b\x83\xf5\x23\x39\x1a\x24\x7a\x72\xb9\xab\xa5\x1b\xc4\xc8\xdd\xb6\x25\xb4\x95\xb1\xf5\x66\x91\xf6\x73\x62\xa7\x79\x99\xc3\x56\xaa\xb4\x88\xdd\x07\x50\xe4\xfe\x87\x66\xaa\x4b\x05\x29\x9f\xa9\x48\xfb\x95\xbc\x8a\x11\xe2\x34\x54\x74\xe7\x00\x0e\x72\x97\x60\x88\x70\x54\x8d\x82\x53\x64\x68\xd2\xdc\xcf\x99\xac\x32\xfe\xbc\xf8\x9d\x66\x60\x9e\x56\xc7\xa2\x16\x9f\x65\xa3\x6c\x67\xc1\x1e\x97\x46\x92\xd9\xb3\x21\x26\xb6\xbb\xeb\x39\xad\x13\x7d\x56\x1b\xf9\x44\x9f\xd5\x88\x3c\x7b\xee\x3b\x5f\x72\x00\xbc\xa0\xab\x0e\x4e\x1f\x30\x8d\x33\xdc\x08\x03\xac\x30\x74\x83\x39\x94\xe6\x5c\x6d\x3c\x42\xd5\x55\xc1\x6f\xac\xea\xfe\x33\x2f\x87\x5d\x16\x2e\x87\x35\xbc\x03\xec\xb8\x19\xbd\x4d\xd8\x29\x9f\x15\xec\x5c\x94\x29\x49\xe8\xbe\x14\xbb\xeb\x0b\x6b\x8f\xf8\x35\xcd\x82\x69\x00\x08\x20\x8c\x7b\xe4\x8c\xc3\x08\x32\x5d\x60\x80\x64\xec\x60\x59\x4c\x20\x19\xbb\xe6\x6c\x21\x19\xa7\x31\x19\x33\xdd\x7a\xe0\x28\x22\x2c\x6a\x9c\x06\x55\xb1\x83\xe9\x30\xc1\x4e\xec\x1a\xa0\xa7\xd9\xc0\x34\x7f\x4e\x2f\x6b\x75\x1f\x00\x2e\x71\x57\xe5\x3f\x9e\x0d\x4c\x47\x73\x59\x17\xe3\xd5\xa1\x9e\x44\xc8\x13\xf4\xc3\xae\xc9\x7a\xaa\x35\x16\x47\x85\xa6\x18\xc5\x3e\x9e\x24\x94\x72\x82\xc5\x34\xd2\x91\x10\xfc\xc3\x3d\xa9\x8c\xfd\xcc\xc4\xe1\x16\x11\x8c\xdf\x46\x1e\xa4\x3a\x7f\xf7\xa4\x0c\x8b\xbb\x9d\xa0\xa1\x60\x26\x76\x4d\xde\x40\x26\x16\x13\xa6\x4e\x50\x12\x6b\xf1\x38\x5e\x8a\x0b\x36\x78\xc1\x14\x10\x1d\x66\xc6\x73\xb9\x0a\x97\x6b\xc5\x64\x73\xb7\xab\x4d\x37\xe1\x10\x75\x4b\x9c\x60\x15\x68\xb8\x06\xf5\x70\x57\xcb\x1f\xe4\x2a\xd1\xbe\x3b\xd3\xe5\x47\x72\x23\xdb\x82\x9f\x09\x47\xb8\x74\x37\x04\x8f\x70\x17\xe7\xab\x27\xbb\xe8\x3f\xd6\x45\xdf\xe5\x55\x5a\x1d\xc0\x1d\xec\x1a\x1d\xc0\x1d\xac\x4a\x81\xc0\x0e\x76\xad\x03\xf3\xcd\x7d\x42\x83\xa8\x72\x39\x3d\x68\x6b\x21\x01\x7e\x73\xa1\x68\xe2\x35\x55\xa8\x1f\x49\x5f\x90\xf5\x80\x1d\xac\x86\x9f\x4c\x03\xb8\x86\xbf\x9f\x96\xb6\xc4\xed\x8b\x8d\x1b\x45\xe1\x33\xdb\x47\x6a\x8c\x76\xa7\x7d\x2a\x01\x09\x43\xda\x20\x2c\x81\xbe\x95\x80\x10\x16\x2f\x82\x66\x5e\xdb\x4a\x34\x3e\x4d\xdb\x88\x14\x60\x0a\xee\x06\x19\x08\xba\x9e\xc2\x37\x70\x81\xc5\x6b\x5b\x60\x01\x8f\x00\x2a\x6a\xc6\x2f\x07\x35\x78\x59\xfe\x73\xf0\x62\x71\x9f\x1f\xff\x28\xbc\xb8\xe3\xe6\x5f\xc9\xfb\x66\x1c\xee\x3a\x68\x60\x90\x83\x4b\x95\x14\xd0\x41\x13\x35\xcc\x20\x2a\xfa\xc0\x18\x06\xb4\xe0\x6e\x87\x7e\x1e\x52\x67\x58\x5e\x14\x36\x33\x94\x1a\x34\xc1\x90\xa1\x27\x9a\x20\xc0\xfb\x33\x52\xa5\xcb\x7f\xc8\x90\x66\x7b\x04\x1d\x68\x75\x0f\x5d\x8d\x90\xc7\x44\x10\x0c\xd2\x79\xcd\xa8\x4e\x3e\x84\x03\xd0\xc0\xea\xa5\x37\x38\x81\x62\x48\xcc\x48\xed\x0c\x19\x33\xea\x74\x85\x68\x03\x26\xa3\x9e\x2c\x06\xa0\xaa\x25\xf0\x7e\x7b\xd3\x51\x55\xaa\x5d\xf0\x28\x00\xfe\x3a\x29\xea\x66\x18\x8d\xe5\xa1\x04\xe0\xaf\x88\x40\x38\xc1\xf1\x2b\xc2\x93\x4d\xb0\xfb\xa2\x67\x71\x53\xbe\x72\x12\x05\xef\x33\xc5\xd9\x8c\x64\x24\x30\x5f\x60\xf6\x76\x27\xe9\x18\x46\x4f\x52\x9a\xce\xe8\xb9\x8e\x8c\x6b\x38\x75\x2e\xc9\xc0\x4b\xcb\xe6\x87\x57\x48\xcb\x3f\xdc\xdd\x87\xff\x10\xaa\x38\xfc\xe3\x46\xb9\xa0\x8f\x22\xee\xfd\x7b\x81\x38\xda\xe0\x24\x97\x5d\x3e\x23\x12\xa0\x95\x03\xa5\x17\x0a\x2a\x80\xe7\x75\x95\xdf\x10\x88\xdf\x40\x29\x00\xf3\xd2\xaf\x16\xf8\xbb\xae\x82\x1d\xb8\xf0\xe8\xe1\x11\x91\xdd\xa3\xd6\xb0\x26\xba\xa7\x13\xa7\x2b\x28\x1b\xc0\x52\x00\x2a\xde\x1e\x35\x5d\xda\x3c\xa1\x36\xb7\x18\x99\x32\x40\x8b\x9a\xa1\x33\x0f\x20\x63\x33\x96\xa0\x9f\x34\xb7\x00\xe4\x86\x33\x86\xb1\x57\x32\xdc\xc0\xa6\xa8\xa2\x0d\x2a\xde\x11\xa4\xb0\x9e\xb1\x34\x46\x78\x0e\x93\x6f\x20\x15\x00\x8c\xb7\xcb\x33\xb3\x58\x18\xd5\x68\x23\xf9\x86\x0b\x7b\xea\x8d\x4c\x5d\xa7\x9b\x04\x5a\x21\x00\x9e\xb7\x76\x71\xda\xba\xcf\x6e\x9e\xfc\x03\x0f\x46\xe3\xe7\x00\xc3\xeb\x6a\xb7\x82\xe1\x4d\xaf\xc7\xe2\xca\x9e\x30\x41\x97\x3b\x49\xf2\x20\x2a\xff\xc8\xcf\xd8\xbc\xb0\x1d\xa0\xee\x0e\x15\x24\xa1\xee\x82\xe4\xb8\x13\xa8\xbb\xae\x4c\x1e\x5e\x52\xea\x2d\x14\x84\x2b\xa8\xbc\xc4\x95\x8b\x40\xb5\xaa\x51\x2e\x2d\xb9\xaf\x14\xaa\x85\xc0\x23\xb1\xd8\x8c\x5b\xb3\x7f\xf8\x51\xee\x4f\x3a\x72\x27\x47\xf0\x1f\xe6\x41\x62\x40\xe0\x97\x17\x34\x91\x9a\x13\x4c\x32\xee\x5c\x11\x06\x48\x54\x03\x49\xb5\x26\x28\x78\x5d\x25\x3f\x92\x1d\xb9\xc9\x1e\x67\xe1\xf8\x33\xd6\x43\x88\x3c\x95\x3d\x20\xf2\xf6\xb4\xd0\x9b\x47\x81\x5f\x22\x22\xe3\x72\xf7\xe7\x1d\xa9\x87\xed\x71\x5e\xdc\x2c\x69\x43\x84\xd3\xc6\xeb\xbd\x02\xe2\x96\x10\x78\x8a\x80\x40\xe0\x55\x0d\xe9\x91\x57\x9b\x4e\xcc\xeb\x42\x58\x80\x3b\x17\x18\x2d\xd0\x76\x47\x23\x0d\xc5\x8c\x4f\x1a\xe0\xc4\x7c\x76\xde\xaf\xb2\xbf\xb4\x41\x2a\xe6\x46\xf8\xf1\x14\xcf\xae\xe9\x0f\x03\x84\x5d\x0f\xa9\x0e\x7e\x3d\xa1\xa0\x19\x5f\x8e\x64\xf7\x6b\x99\x0a\xd2\x8b\xce\x95\x2a\x51\xe3\x39\x5b\x09\x5e\x18\x15\x62\xdf\xd2\x52\x38\xb2\x84\xd7\x00\x54\x45\x06\x8e\x00\x98\x6d\x02\x28\xd7\xe5\x29\xe2\xc9\x29\xc4\x01\x14\xd7\xa5\x40\x00\xc5\xed\x26\x16\x2f\xee\xd4\xea\x57\xb7\xbd\xb2\x38\x94\x51\x37\x94\x65\x80\x84\x4e\xe6\x0b\x70\x9a\xa2\xf7\xc8\xd2\x50\xa8\x7b\xb0\x78\x71\x1a\x53\x97\xe6\x40\xdd\x2b\x04\x8c\x23\x73\xc4\x5c\xa4\x8b\x92\x71\x2f\xee\x15\x65\xf5\x0b\x2f\x9f\xa2\xdb\xc5\x2a\xd2\x4f\x98\xe0\x12\x92\x86\x39\x5d\x7a\xb0\x2e\xbf\xd2\xcf\xc7\x5b\x4d\x60\xe5\x76\x79\x5f\x18\x24\x24\x34\xd1\xe3\xf4\xaf\x5a\x15\xef\x62\x38\x2d\x48\x72\xfb\x8f\xc1\x8b\x41\x5c\x74\xb7\xe6\x70\x29\x01\x7c\xad\xc2\xc1\x6a\xe9\xf6\xcd\x73\xf1\x23\xff\x68\x36\xee\x3f\xdd\x7a\x69\x44\xf0\xb9\x5f\xd6\x05\xdf\x2d\x16\xc1\x5a\xec\x2c\x82\x90\xef\x5e\x06\x93\x6e\xcf\x28\x23\x24\xf0\xae\xe8\x32\xb2\x48\xd9\x51\xf4\x12\x59\x7d\x9f\x53\x0f\xd6\x02\x16\xbf\x68\xfc\x02\xba\xae\xcb\xab\x96\x49\xa1\x75\xc3\x07\xbb\xae\xcb\xb5\x17\xde\xb2\xda\x9a\xc1\xb1\xeb\x60\x3d\xcc\xa5\xc6\x25\xd1\x5f\x6a\x5c\xcb\x26\x1e\x1c\x67\xd9\x34\x30\x4d\x4d\x70\x0b\x8f\xa1\xf0\xf7\xe1\x4c\xd1\x98\x70\x75\x9c\x16\x40\xe9\x4a\x73\xc5\x87\x3c\xbe\xfa\x07\xf9\x76\x9d\xf3\x91\xfb\xc5\x9a\x2e\xfb\x4d\x9f\x86\x51\xc7\xfc\xe1\x9d\x1e\x98\x71\x13\xfc\xb8\xaa\x0a\x0f\x66\xdc\x9e\x66\x5f\xec\x38\x33\x28\x9e\x80\x8e\x2a\x6b\xe6\x29\xb2\x2e\x77\xb8\x47\x4a\x55\x0a\x42\xb1\xb0\x3d\x1a\xa0\xbe\x84\x20\x68\xfe\x0e\x9a\x01\xe4\x70\x61\x62\x9c\xed\x4f\x15\x18\x74\xb9\x2e\xa1\x5d\xa6\xe3\x58\xf6\x85\x28\x3e\x81\x12\x26\xb8\x73\x07\x29\xfb\x27\xb0\x73\x55\xc2\xb8\x36\x73\xae\x9a\x0c\x81\xa0\x2b\xe6\x9c\x9b\x0b\x57\xdb\x8c\xc5\x06\x83\x2e\xd4\xda\xd7\xca\x03\xc9\xd4\xa1\xbc\xb5\xe5\x10\xf5\x38\x5a\x36\xa8\x2d\xd2\x93\xb7\xb2\x27\xf4\x91\x2b\x3f\x79\xc1\xd2\xca\x08\x5a\xc9\x14\x5c\x4e\x6f\x19\xb1\xe5\x24\xc4\x4b\x1e\xac\xc7\xc8\x3a\x15\x5e\x91\x0d\x96\x4c\x58\x42\x23\xe8\x9c\x61\x15\xe2\xcc\x49\x70\xc1\x99\x2b\x29\xfb\x82\x33\x57\x8d\x90\x03\x66\x6e\xe6\x16\xe5\x62\x50\x72\x0b\xcc\xdc\x6e\xc2\x97\x1c\x13\x73\x72\xe5\xf4\xd2\x45\x41\x0a\x9a\x55\xbd\xcc\xae\x1f\x7d\x28\xff\x74\x8a\xac\x56\x64\xfd\x9c\x4b\xa6\xeb\xd1\xbc\xdd\x65\x48\x95\xcb\x4b\x3f\xa3\x46\x40\x93\xdb\xff\x50\x95\x39\x27\x93\x98\x10\x3f\xa8\x4b\xf5\x32\x79\x95\x19\x18\xc0\x96\x2b\x86\x8d\x80\x1b\x57\x52\x08\x17\x2b\x2e\x5b\x7f\xf4\xec\xa1\x57\x4f\x52\x35\x5f\x3a\xd5\x52\x5a\x27\x23\xa0\x2f\xa7\x80\x72\xcd\x6a\x9f\x6c\xcf\x3f\xa4\xa3\x59\x5c\x3a\xea\xb4\x3f\xde\x18\xf3\x87\x66\x4a\x1d\x4d\x16\x66\xca\x25\xf9\x20\x63\x64\xd1\x9d\x04\xe4\xb9\xbe\xec\xd6\x6b\xe8\xac\xcf\xd2\x5a\xc4\xb6\x85\x63\xae\xd6\x24\x01\xe9\x92\xa2\x72\xb1\xa7\x3f\xa7\x18\x74\x6b\x64\x81\xcb\x4e\xd9\xc4\x4d\x09\x4b\x2b\x9c\xf9\x15\x99\x97\x9b\xa7\xfb\x73\xeb\x23\x50\x2d\xb5\x3d\xb2\x38\x4e\xe0\xe5\x0e\xed\xa2\x4b\xf7\xa1\x03\x32\x0a\x8c\xdc\xa1\xc4\x7f\x1a\x2d\x62\xf4\x0d\xc8\x71\x7b\xb2\x26\x2f\xf8\xcb\x28\x14\x9c\xa4\x5e\x2e\x7a\xe8\x9c\xd8\x1d\x3d\xaa\x27\x3a\x61\x33\x01\xc5\x69\xa2\x0e\x90\x3b\xa7\x08\x73\xca\x2a\x67\xb2\x68\xfa\x75\x72\x99\xe7\xc1\x3b\x61\xd7\xba\xa9\x8a\x36\xd7\x4c\x3f\x01\xaa\x5c\x35\x06\x54\x54\xb9\x00\xab\x72\x82\x2a\x57\x75\xab\x04\x49\xae\x18\xb0\x73\x26\xbb\xee\xbe\x90\x97\x2e\x7c\x46\x84\x33\x77\x05\x48\x72\xdd\xdd\x07\x92\x5c\xf7\x48\x9c\x25\x67\x91\x6a\x4b\x0e\x96\x31\x15\x89\x24\xa7\xe2\xf4\xee\xce\x0c\x15\x40\xc3\x15\x50\x8d\xe6\x59\xdc\xbd\x88\x1a\xa7\xe9\xaf\x46\xf9\xf3\x0a\xe4\x24\x37\x56\xce\x77\x35\x35\x1e\xdd\x01\x31\x28\xbb\x5c\xe5\x3b\x6c\xe7\x53\xd7\x5c\x83\x86\x44\x8e\x5b\xf2\x4c\xa0\xe3\x7a\xae\x03\x46\x4c\x90\x4d\xe6\x69\x28\x8a\x63\x21\xd8\x24\x27\x58\x1d\x94\x8d\x7d\x62\xce\xd4\x7a\x7b\x72\x25\x68\x80\xcb\x49\x16\xc8\x1c\x6d\xcb\xb3\x4e\x5f\x93\x8d\xbb\x6b\x9a\xe6\x40\x5a\x4b\x3d\x15\xa5\xf5\x54\x4f\xd5\x05\x04\x34\xb9\xfe\xaf\xc4\x6d\x71\x8b\xe0\x68\xe3\x82\x72\x3b\x08\xe8\xe5\x3c\x53\x7f\xa5\x23\xf8\xfe\xe8\xe8\x01\x92\xdc\xae\x95\xc2\xdd\x73\x8f\xbc\x77\x76\x67\x8d\x61\x74\xa9\x6d\xb7\xb8\x7a\x3c\x07\xf4\xec\xb9\x86\x34\xd2\x55\xb2\x90\x86\x4e\xc0\x1a\x7e\xd5\x8d\x3d\xf4\x8a\xa1\xe2\x91\x4d\x52\x24\xd9\x34\xea\xdb\x39\x1c\x15\x1d\x4b\xed\x17\x4e\x75\xea\xcc\xeb\x6e\x1c\xd9\x22\x75\x71\x87\x68\x6e\x85\x73\x9a\x35\x8c\xd2\xd3\x4d\xee\x66\x26\xe5\x88\x3e\xbe\x40\xce\xed\xd2\x96\xb0\x3d\x06\xa2\x55\x74\x5a\x80\x33\xe5\xf6\x4b\xe6\xed\x6c\x91\x35\x52\x9f\x21\xb0\xe8\xf6\x12\x52\x53\x88\xa2\x47\x9f\x42\xa2\x6e\x7b\xa4\xd5\xd2\xb3\x11\x5c\xba\x72\x60\x88\x3a\x09\xc6\x9f\x26\x92\x38\x45\x98\x1f\x76\x84\xeb\x42\x93\x26\x9c\xa9\x63\xbb\x84\xe1\xd9\xb1\x91\xa5\x34\x8e\x6c\x74\x26\xc3\x76\x75\x49\x0b\xad\x5b\xf8\x09\xf3\x06\xb3\x7c\x0a\x5f\xb7\x8c\x8a\x3b\x89\xd3\x5f\xee\x25\x6e\x0e\x4d\x74\x20\xac\x9d\xe9\x17\xce\x65\x47\x18\xc6\xca\x59\xa0\x87\x66\xce\x82\x14\x9e\x7a\x04\xe7\x1c\xea\xf8\x9b\x13\x77\x32\xb9\xce\xdb\x99\x00\x59\x3c\xbb\x7d\xa4\x52\x84\x56\xea\xc8\x0f\xac\x5d\x95\x59\x9f\x98\x53\x0d\xd6\x07\xe1\x6e\xd7\xca\x8c\xe0\xb1\xbb\x46\xbe\xd8\x73\xda\xd6\x7b\x17\x58\xdb\x79\xa2\x23\xab\x2b\x88\x77\xb7\x46\xbe\xa8\x29\x4d\x8b\x43\xbe\x60\xbe\x00\xde\x1d\xcd\x75\x22\x9c\xd2\x38\xfc\x13\xb5\x98\x6c\xad\x53\x20\xbc\x96\x33\x82\x9d\x55\x47\xee\xf3\x76\xa6\x18\xd1\xad\x78\x99\x25\x4e\x3e\x62\x78\xa6\x87\x76\x0f\x1b\x7e\xe9\x4d\xe3\x89\x61\xd6\x00\xf3\xf3\x4e\x36\x6a\x09\xfb\xf7\x17\x36\xef\x04\x7a\x2f\xbc\xd7\x38\x37\x83\x6f\x7a\x8b\x02\xc3\xd7\x57\x3e\x3b\x10\x66\x54\xcd\x57\xcf\x26\xa0\xf7\xaa\xd1\x8a\x20\xef\x75\x43\xb4\x00\xdb\x9b\x5e\xfc\x9e\xaf\x2c\x92\x01\xbe\x26\x4f\xa6\x2c\xc0\x08\x5a\xa8\x4e\x72\x3b\x9b\xe4\x07\x10\xbe\xf0\x72\xe4\xf4\x46\x11\x64\x97\x79\xbe\x39\x3b\xb4\x80\xd2\x9c\x44\xf6\x55\x4c\xf4\x59\xf6\x8a\xec\x73\xbe\x76\xc9\xaa\xc8\xc5\xe5\xae\xc0\x35\xc7\xb0\xe1\x33\xb9\xb6\x8b\xf1\x29\xb6\xc9\x69\xbf\xc4\xb5\xe0\x19\xd7\x4f\x29\xeb\xa7\xc8\xc0\x20\x48\x09\x93\x5b\xe2\xcb\x99\xb1\x70\x4a\x09\xb4\x6d\xec\x8c\x31\x9a\x27\x2e\xc3\x46\x0a\x02\xf9\xd7\x0d\x46\x06\xe4\xaf\x5b\xed\xf5\x63\x3e\x86\xcf\xaa\xf1\x9c\xb1\x4b\xef\x1d\x4e\xae\x80\x7f\x46\xc8\x00\xf8\xd7\x8d\x12\xbc\x48\xbf\x65\x5c\xf2\x75\xa8\xb6\xd3\x00\xe1\xa4\x53\xa7\xb9\x0b\xc3\x6e\xf3\x88\x01\xfe\x57\xd5\x6a\xc0\xfb\xeb\x2e\x29\x70\x7f\x7b\x44\x7c\x54\x12\x3f\x89\x67\x05\x7b\x8c\xf5\xd7\xd6\xae\x8b\x89\x17\xae\x62\x3e\x00\x9f\xb3\xe3\x7e\xc4\x36\x1f\x3e\xe7\x42\x5a\x95\x64\x0a\x03\x02\x60\x7f\x7b\xa2\x1a\x2f\xa4\x69\xb6\xef\x25\xa7\x93\x97\xaa\x58\xc8\xde\xbc\x52\xd7\xae\xfe\xc3\xa6\x85\xee\x5f\x55\x6d\x17\xb3\x3a\x90\x80\xdd\xe0\x59\x10\x01\xbb\xb1\xa2\x00\xff\x15\x3d\xa3\x04\xfb\x9b\x7a\x30\x5d\xc9\xac\x31\xab\x5c\x6a\xd4\x80\x10\xcf\x0b\x63\xb0\x12\x23\x08\x7f\x35\xa7\xb7\xe5\x70\x2d\x21\x78\xa4\x05\x48\x84\xc4\x01\xb8\xc4\x6b\x75\x42\x49\x51\x63\xb4\x20\x60\x7f\xdd\x88\xd1\x4b\xc7\x1c\xe9\xc6\xd5\x08\x19\xe7\xc4\x08\xfc\x67\xf0\xe8\x85\x36\x9d\x05\x70\xde\xf1\x6e\x55\x0c\xc0\x76\xb8\x13\x70\xc1\xf5\xa2\xf6\xd2\xab\xa7\xe4\x0b\x66\x76\xa7\x06\x8c\x77\xbd\x10\x12\xde\x4f\xf2\x05\x74\xdf\x11\xa0\xc2\x4c\xb0\xfb\xba\xb1\x35\x57\x7a\xcb\x2e\xbf\x82\x96\x39\x4f\x43\x99\xc8\xe5\x07\xde\xb5\x68\x67\x07\xaf\xaf\x7b\x11\x76\x25\x13\x6e\xfe\xc1\x76\x0b\x9f\xe1\x0d\x5a\xe3\x85\xeb\x6b\x12\x49\xe0\xfa\x76\x8b\x94\x9f\x1e\x14\x06\x32\xed\x16\xf3\x69\x56\x82\x51\xff\x14\xf6\xae\x29\xbd\x77\xc6\xd0\xc3\x75\x35\xbe\x4c\x4d\x60\xaa\x19\x20\xfb\xf6\x00\xe8\x41\xe8\x07\xe5\x1f\xe0\x02\x7a\x44\xc2\xbd\xec\x0e\xe2\x12\x53\x17\x19\x71\xfa\x74\xb3\xbb\x42\x0e\x08\x21\xba\xc8\x85\xa3\xc3\xca\x95\x9c\x18\x5d\xf2\x12\x30\x56\x8a\x7f\x91\xb3\x40\x0f\x99\x8b\x24\x39\xd5\x75\x5f\x24\x29\x46\x36\x11\xf2\xaf\x1c\xd0\xb1\x7f\x98\x7f\x16\xe6\xb0\xe5\x33\xac\x14\x9b\xc1\x85\xb9\x5b\x17\x25\xa1\x00\x43\xe3\xc7\xb5\x5c\x1e\xa6\x74\xd9\x71\x0b\x70\x8b\x91\x05\xe8\xb7\x5b\xfa\x54\x7e\x91\x7a\x9c\x19\x76\xc7\xb3\xf2\x99\x14\x8d\x78\xd6\x3c\x10\x42\x23\x19\x82\x0e\x74\x60\xd1\x4b\xfa\x12\xda\x41\x16\x96\x68\x81\xca\xbc\x97\x89\x76\xdc\x33\x9a\xb7\x75\x28\x04\x22\xb0\x1b\x7a\x04\x44\xe0\x1e\x86\x25\x9c\x10\x49\xe2\xe5\x11\x64\x1c\x97\x3c\x33\x8b\xa8\x7b\x3a\x87\x68\xd7\x12\xf9\x0b\x40\x5b\x5d\x4e\xae\xdb\x06\x11\xc4\xae\x5b\x57\x76\xfa\x6e\x9c\xab\xf9\x7f\x80\x09\x1c\xbf\x7c\xd6\xe4\x4f\x13\xb7\xf2\xb6\x5b\x04\xae\x9e\xc7\xd6\x24\x67\xa6\x61\x12\x58\x50\x3f\x1a\xb0\x03\xbb\x8e\x22\x97\xbc\xdb\x21\xa1\x67\x07\x60\xd5\xf3\x52\xb7\x36\x49\x90\x58\x80\xcd\xac\x31\xd7\x93\x27\xcf\x32\xd9\x08\x03\x49\x7e\x2d\xe9\xdb\x3c\x7a\x78\x7b\x7f\xa9\x5c\xbb\xe6\xa8\xcd\x9a\x67\xaf\xcd\x97\x87\xb7\x60\xd7\xeb\xf8\x68\xef\xf5\xe2\xc4\xe5\xdc\xbc\x78\x78\x8f\x7f\xbd\xd9\x1c\x1d\xd9\x2c\xb7\x99\x1b\xe2\xe2\x92\x34\xc0\x30\x9e\xd7\xa7\x7a\x2b\x55\xfb\xea\x2e\x8e\xe2\x79\x7d\xb4\xe1\xc9\xfa\x26\xcf\x54\xfb\xd9\x9e\xfb\xea\x73\xfb\x48\x59\x92\x9d\x42\x40\xee\xad\x42\x0f\xb5\xa7\x9b\xe8\xd3\xa9\x77\x27\x10\x83\xa5\xe8\x12\x79\xeb\x1c\x0b\x4e\xde\x04\x6f\xb0\xa4\x3b\xd8\xad\x31\x5b\x82\x79\xff\x68\x3f\xbf\xf2\x8a\x02\x02\x74\xff\xb4\xda\x34\xff\x51\xc6\x98\xfe\xc3\x94\x1e\x3e\x23\x21\xaa\xb6\xdc\xe2\xb7\x1b\xe4\x08\xde\xe0\xd0\x73\x01\xbc\xc1\x66\x84\xf1\x7d\x38\x11\x3e\x37\xbe\xa1\xa6\xc3\x89\xf0\x7b\x49\x0c\x1c\x07\x18\xc2\xfd\x32\x78\x79\xff\xfb\xdf\xd4\x4f\x1c\x4c\xc2\xf1\x3b\xfe\xca\x64\x3f\x6f\xf9\xb8\x17\x74\x77\x86\xcc\x32\x13\xc5\xbe\x50\x73\xf1\x1c\x43\xef\xef\xa2\xec\xda\xfd\xca\x9e\xf9\x47\x2e\x11\x3d\xdb\x8c\x7c\x18\xc5\x72\x6f\x3e\x3e\xb4\x9d\x80\x83\xb8\xab\xf2\x0f\x8d\xd6\x9c\xf6\x3b\x59\x37\x1c\x42\x50\xc4\x69\xc6\xaf\x3b\x79\x37\x5c\x45\x20\xc4\x66\x4a\x1a\x80\x10\x87\xa6\x22\x80\x10\x2b\xc0\x0a\xf3\xae\x2c\x43\xb1\x34\xb9\xfa\xab\xbf\x7f\xc0\x70\xd2\xc3\xc6\x56\xe1\x18\xdf\x69\x18\x6f\xbe\x30\x72\x94\xe0\xbb\x79\xbe\xd9\x9b\x77\x73\x73\x40\x83\x44\x45\x0c\x70\xbb\xe7\xbd\x99\xf7\x50\x05\xbb\x53\x6f\x66\x80\x8d\x65\x40\xec\x03\x06\x71\x28\xb3\xdc\x3d\xc7\x4a\x47\x3a\x2b\x5d\x7c\x76\xa6\xe1\x80\x77\xe7\x2c\x38\x07\xa6\x1e\xaa\xee\x81\x1e\x94\x60\x3e\xc4\x47\x54\xac\x05\x1f\xb1\x64\x94\xd5\xdd\x73\xff\xf9\x42\x4f\xdc\x66\xc3\x43\xc2\x60\xc9\x2a\x14\xe6\x6f\xba\xbd\x4d\x96\x6d\xdc\x83\x6e\x79\x7a\x06\x54\x00\x89\x55\x88\xc4\xa6\xbc\x7c\x9b\xdb\xb3\xba\x4d\x06\xb3\x80\xb8\x96\xb0\x88\xff\x5e\x94\x61\xe0\x03\xb7\x57\xcb\xd5\x3d\x33\x73\xfb\x31\x14\x83\x63\x75\x5c\x04\x26\xb1\x7a\xb1\x7a\x4f\x9b\xa7\x5b\x69\x35\xcf\x17\x0e\xa2\x97\x65\xf7\x74\x6b\x85\x15\xab\xab\xb9\x4d\xf0\xd2\xd5\x8f\xeb\xd6\x3a\x6e\xbf\xc2\xbc\xe1\x0c\x31\x58\x75\xb7\x49\xe4\x42\xd3\x5f\x33\x55\x9b\x55\x01\x2c\xc3\xda\xf3\x0f\xdc\x2c\xed\x61\x90\xce\x49\x1a\x12\x29\xb8\xf0\xc7\x62\xae\x61\x74\xe0\x1a\x56\xcd\x62\x89\x65\xf8\xef\x8f\x4e\x2a\x31\x16\x07\xce\xad\xaf\x3b\xe8\x85\x55\xca\x0d\x48\x61\x31\xa2\xe9\x5e\x92\x3c\xd7\x1c\x1d\x5a\x69\xe2\x3e\xbd\xa4\x83\x63\x02\x58\x38\xcc\x49\x06\x60\xe1\xd0\x2b\xf7\x3e\x5d\x58\xbf\x21\xbd\x3a\x2c\xe0\x3e\xe5\x27\x9e\xd3\xd3\x88\x10\xd6\xe5\x64\xbb\x49\x60\x4f\xce\x72\xf3\x1b\x4e\x99\x04\x67\xab\xdf\x43\xdf\x4b\x21\x0d\x8b\x22\x28\x90\x86\x43\xdf\x52\x20\x0d\x87\x59\xc0\x40\x34\x1c\x3a\xc5\x02\x5c\x38\x74\xa4\x04\xb8\x70\x8f\xcd\x9a\xa4\x6f\xc8\x50\xb7\x19\x29\x54\x71\xc0\x2e\x1c\x3a\x46\x82\x5d\x58\x72\xa9\x8d\xa3\xdd\xca\xd2\x5f\x94\xef\x66\x65\x24\xc8\x37\x1d\x93\xa4\xdd\xf2\x58\x0f\xed\xcd\xce\x93\x3a\xde\xb9\x11\xe8\x26\xac\x7b\xe5\x47\x8f\x25\xfc\x83\x8b\x4e\xc7\x9b\xb6\x73\x17\xed\xb1\x0d\x7a\x99\x97\xd1\x6e\x7b\x03\x63\x0e\x64\x40\x30\x0b\xf7\x0a\xfa\xcf\x16\x33\x73\xf4\xc9\xe0\x87\xe5\x59\x11\x0f\x4a\x32\x7b\xa4\x0b\x10\x0c\x8f\x65\xce\x08\x60\x0b\x87\x0e\x90\xa0\x16\xee\xaf\xe8\xd7\x03\x9c\x99\xeb\xa3\x85\x1d\xf1\xe2\x36\x41\xb6\x0c\xef\xb5\xbb\x7c\xef\xc5\xb5\x26\x55\x60\x0b\xab\x12\xe1\x9d\x4a\x38\x02\xd3\xfd\xca\x15\xd1\xea\x00\x24\x1c\x26\x9b\x02\x78\x70\xe8\x4b\x08\xd6\xe0\x50\x22\xb8\x3f\x89\xab\x64\x45\xc6\x8f\x92\x7b\x6b\x2e\x97\x34\x7f\x30\x12\x94\xb8\x3b\xfd\xa4\xac\x48\x7b\xcf\x6e\xe0\x49\xc3\x79\xe3\x99\xc6\x86\xcf\xf2\xf9\xea\x0b\xc9\x25\x99\xd8\x87\x4c\xac\x32\xda\xe7\x67\xc3\x95\x67\x1b\x9b\x3c\x93\x3d\x89\x15\x7e\x7e\xb8\xfc\x1f\xd6\x93\x8b\xca\xcb\x81\xeb\x01\xe3\x7f\x74\x9b\x3a\x90\xe0\x1e\xb3\x35\xe9\x78\x0d\x76\xe1\xd1\xd4\xe6\x9f\xc3\x74\xff\x16\x61\x7b\x0d\x3f\x92\xe8\x2c\x5f\x26\x57\xbb\x7e\x14\x74\xd6\xc2\xde\xba\x32\x6a\xbc\x7e\xb5\xd1\x8b\x75\xa8\xf3\xe4\x73\xb0\xec\xc3\x6e\xb8\xec\x10\x26\x40\x10\x77\x9f\x28\xc1\x95\xb8\x41\x31\x0f\x89\x5e\x0d\x75\x7e\xc8\x94\x61\x04\xd3\x53\xb2\xdf\x74\xa3\x64\xff\x2c\x2d\xa3\x61\xdb\x3c\x9a\xe2\x59\x96\x47\x20\x0a\x1b\xcf\xeb\xf1\xe5\x1f\x10\x08\x68\x1c\x08\x88\x4d\x06\xf4\xa0\xbe\x7b\x77\x23\x18\xe2\x94\x4c\x01\x86\x38\x4c\x0e\xf5\x64\x40\x2e\xad\x55\xe6\xcc\x3e\xa1\xb0\x9b\xcb\xfa\x11\xfc\x38\x7c\x56\x40\x74\x74\x95\xad\xe8\x14\x18\x6a\xab\xf3\xd5\x63\x92\x41\x75\xee\xa7\x89\xbd\xc8\x1c\x98\x63\xf0\xe7\x73\x63\x9e\x2c\xe0\x72\xd1\x8d\xc6\xb6\xc9\xb2\x32\x67\x28\xe4\xd3\x48\x22\xce\x99\x7f\x1a\xd4\x12\x61\xff\xc1\xb8\xae\xe3\xec\x63\x82\xa8\x91\xb5\x3a\x33\xcc\x86\x02\x03\x1e\x10\x8f\x81\xb5\x10\xc2\xc7\xeb\x72\x9d\x55\x9f\x9e\xcb\xc2\x24\x77\xaf\x83\xe2\xcf\x68\xde\x47\x71\x02\x59\xf1\x31\x04\x57\x1f\xd7\x27\x45\x88\xfc\x47\xb9\xa6\xd9\x2c\xfd\x0f\x1b\xd2\xd5\xa2\x59\x24\xf7\x95\x5f\xbd\x6c\x50\x06\x33\x80\x8b\xe4\xe8\x3e\xa4\xe0\xd0\x95\x0f\x8c\xc6\xa1\x9f\xda\xa3\xd9\x5e\x9f\x5a\x71\x19\xcd\x10\x22\x2e\x63\x29\x6e\xfb\x01\x8d\x9b\xfe\x91\x9d\x62\xe6\x07\xf3\xe5\x42\xcf\x5c\x4f\xbe\x9a\x80\x1f\x38\xf3\xd3\xdd\x43\x81\x49\xdb\x4e\x57\x06\xcf\xb2\x6c\x73\xa0\xed\x31\xec\x29\xc9\x91\x86\x68\x11\x08\x9f\xbd\xa8\xcc\x9a\xdc\xe9\x3f\xab\x82\x05\x21\x6e\x3c\x9a\x0a\xcc\xd2\xfb\x44\x2e\x16\x15\x87\x42\x8d\xf4\x25\x14\x6b\xdd\x7e\xa1\x01\x5a\x52\x65\xc8\x8f\x96\x93\xc7\x74\x1e\x00\x81\x4e\x80\x1e\x87\xfe\x62\xc2\x39\x2e\xad\xdc\x4f\xb8\x57\x68\x65\xe9\xfd\x25\x25\x59\xce\x35\xa5\xb5\x0a\xe8\xcb\xfa\x98\xcd\xc3\xfb\xdb\x67\xa5\xe8\xc6\xf3\x3e\x3b\xfa\x45\x03\xd4\x38\x74\xeb\x02\xa8\xb1\x18\x10\xf3\xe8\x11\x97\x27\x24\x25\x10\x89\xcf\x96\x40\x86\xce\x35\xcf\x89\xe3\x8b\xc4\x51\xa1\x43\x82\x71\xd2\x27\xd7\xe6\xd4\xbf\xc4\xe3\x72\x66\x9f\xfc\xca\x75\x86\x6d\x3c\x8a\x1a\x92\x53\x1c\xe2\xf2\xd8\xe2\x0f\xa7\x90\xfa\x28\x76\x48\x00\x4e\xe6\x43\x92\xb4\x45\x90\xa1\x27\xcf\x83\x13\xb5\xda\x13\x70\x91\xd5\xe8\x8f\x27\xfd\xe2\x3c\xce\x17\x81\x24\x36\x7c\x71\xcc\x97\x85\x65\x7d\x30\x2f\x70\x24\x43\xbf\x72\x60\x24\x87\xbe\x46\x09\x23\x99\x9b\xf8\x82\x87\x84\xcf\x00\xa3\x49\xcf\x94\x58\x9c\x19\x2e\x0f\x34\x86\x81\x2e\x59\x65\xc0\x8f\xd0\x1a\xfa\x27\x27\xba\xa4\x22\x12\xc0\x91\x43\xa7\x32\xb1\x22\x0d\x52\x15\x2a\xb2\xb9\x28\x7a\xc8\x69\x57\x03\x1e\xb2\x98\x30\x4c\x78\xc8\x65\x82\x20\xe0\x21\xab\x16\x27\xe0\x21\x0b\x90\xac\x13\x78\xc8\xa1\x25\xff\x31\x51\x96\x53\xff\xb8\x40\xd2\xd2\xc7\x51\xd3\x0d\xd3\xfe\xea\x01\x02\x56\x64\x31\xde\xfc\x51\xee\xc8\xa6\x1f\x0a\x30\x86\x2d\x76\x0c\x1d\x83\x80\x7f\xac\x39\x9e\xf7\xe0\x77\xbe\xf7\x2e\x5f\x87\xda\x87\xf8\xa3\x5a\xad\xf5\x6d\x7c\xe5\x1f\x1e\x9d\xbf\x7d\x99\x9f\x14\x5d\x3c\x7e\xf8\xd9\xe9\xd0\x21\x50\xa4\x89\x78\x1e\x7d\xee\xbc\x7d\x78\x52\x8c\xf1\xf8\x90\x49\x32\x67\x11\x4f\xf0\xad\x87\xf2\x62\x06\x04\x4a\x7c\xf2\x11\x8f\x28\xc2\x8e\x7e\x4d\x20\x42\x36\x65\xfc\xc7\xd8\x5e\xcd\x70\xcf\x97\x0d\xfa\xd5\x45\x89\xfd\x95\xa8\x8e\xc5\xab\x85\x17\x03\x86\x19\x26\x40\x78\xac\x85\xbd\x0a\xc0\xe3\xd0\x3d\x08\x50\xc7\x5d\xed\xe0\x65\xf1\x87\x05\x4e\x9e\x0f\x9e\x69\x81\xd6\xde\x23\xb7\x18\x1f\xe5\xd5\x7e\xf8\x42\xcf\x6d\xfa\xf0\x22\x39\x2c\x92\x3b\xc0\x97\x0b\x5d\xc5\x12\xb7\xbd\x5d\xbc\x48\x1f\x86\x2f\xd8\x38\x97\x75\x41\x1e\x98\xdc\x37\xcd\x0d\x9c\x0e\x60\x1e\x87\xce\x41\xc0\x3c\x0e\x3d\x40\x40\x79\x1c\x7a\x19\x81\xe6\x58\x34\xfb\x81\xe6\x78\x84\x7a\xd2\x5b\xf4\x64\x41\x99\x78\x4d\xfc\xe1\x98\x74\x0e\xaf\x08\x0e\xaf\x22\x88\x6e\xb8\xaf\x8e\x01\xcb\x67\x4d\x0f\xf0\xef\xb7\xda\x11\xaa\x42\xec\xd0\xe1\xe0\x45\xec\x28\x3a\x01\xbf\xc8\x1d\xfa\x73\x88\xf4\xb8\xcc\x15\xf5\x62\x84\xd0\x05\x03\xa4\xc7\xa1\x9f\x07\x48\x8f\x43\x6f\x05\x90\x1e\x87\xce\x27\xaf\xc6\x89\xe5\xf7\xa8\x2e\x50\xfd\x97\x9b\xff\xa2\x63\xf1\x0b\xec\xb2\x59\x01\x01\x7d\x1c\xfa\x88\xbc\x79\xdd\x0f\xaf\x7e\xd3\x3a\x31\x2d\x31\xf8\x8a\xd1\xe5\xed\x83\x43\xc5\x6b\xaf\x69\x53\x00\x1a\xb2\xcc\xac\xf7\x52\x6f\xe1\x19\x67\x39\xa8\x30\x30\x91\xbb\x1f\x7c\xd4\xdd\x91\x0e\xa9\x13\xc9\x6a\xd7\x3b\x60\xd0\xc8\xd3\x6f\xd7\xb5\xcc\x6f\xe8\x07\x7c\x45\x90\xc8\xf4\x12\x04\x0d\x72\xe8\x8a\x01\x18\xe4\x30\xe9\xc5\xdb\x73\xdc\xd4\xba\xe5\x87\x69\x06\x9e\x57\x94\x2c\xcd\xde\x6f\x0a\x0d\x2e\xcc\x70\xac\xfe\xe1\xf4\xd3\x8f\xc1\xf4\x57\xbf\x61\xfa\xab\xb5\x5e\xbb\x56\xb7\xc4\x40\x55\x47\x2a\x79\xd3\x30\xb1\x7c\xc9\x2d\x41\xe9\x7f\xc8\xce\x3c\x2b\x6f\xe5\x4b\xce\xb9\x2f\x9a\xbc\x10\x0e\xde\x69\xe3\x8c\x75\xb2\xde\x4e\xce\xbc\x79\xf6\x1b\xe6\x00\x3e\x06\x88\xe4\xae\x89\x59\x9b\x1c\x12\x67\x50\x9f\xf9\xdc\x15\x91\xd8\xcc\x3c\xb3\x11\xda\x9f\x2e\xcc\x6f\x9c\xff\xfd\x2f\x99\x16\x70\x93\xc3\xcb\xb9\x57\x87\x7a\xed\xff\x6f\xb0\x06\x30\x21\xa0\x27\x6b\x6e\x31\x4c\x16\xde\xa7\xbd\x79\x0b\xb1\xfc\x83\xa3\x81\x10\xf6\xae\x5c\x0e\x5f\x58\x0e\xa7\x34\x5d\xf6\xdc\x23\x06\x5f\x55\xe6\x47\x84\x38\x53\x67\x01\x10\x37\x34\x5a\x7c\x9e\x13\xb6\x1e\x60\x71\x47\x98\xed\x54\xb0\xb8\x00\x8d\x76\x7e\x55\xd1\x27\x5f\x9c\x3a\xc8\xc2\x97\xe7\x86\x1d\xf7\x99\xe5\xce\x68\x85\xcf\x2c\x77\xda\xd1\x41\x92\x1b\xde\x45\x7c\x4d\x46\xee\xef\x5a\x0c\x60\xc0\xe0\xc5\x0d\x2d\xf5\x5f\xa7\x00\xe2\x19\x70\x71\x43\xb3\x39\xa0\x70\xbb\x27\xb4\xd7\x25\x81\xec\x64\x60\xe1\xf6\x3f\xbc\x60\x59\xeb\x9a\xd7\xbf\x21\xc3\xb2\x5b\x43\x99\xac\xfa\xc2\xf6\x9d\x7e\x45\x1a\x35\xb6\xf2\x67\xae\xd6\xfc\x46\xd2\x1a\xfe\xf1\x72\x81\x40\xb7\xa6\x69\x6e\xf8\x7d\xba\x6b\xc2\x3f\x64\xec\xf4\x77\x62\x5d\x72\x7a\xf0\x3f\x6d\xce\xf5\x64\x4c\x10\x8f\x6f\xef\xdd\xf4\x16\x03\xcb\x6d\x68\x02\xff\xdc\x71\xd0\xb9\x2f\x48\x91\x03\x89\x06\xca\x6d\x68\xf3\x06\xca\x6d\x68\x1c\x06\xc9\x6d\x68\x8f\xfe\xf6\x26\xac\x7a\x40\x8a\xea\xb6\xcc\x5f\xf9\xb9\x23\xdd\x14\x21\x81\xae\xb6\x40\xbc\x77\xd6\x9a\xab\x4a\x55\xde\x8c\x55\xce\x29\x08\x6f\x7b\x62\x7d\x61\xc1\x38\x2a\xe2\xb8\x85\xd1\xfb\xe2\xb8\x4d\x0d\x4f\x60\xb7\x0d\x0d\xb7\x9f\x49\x5a\x41\xc7\x9c\xe0\xb8\x0d\xa1\x68\xbe\xc5\x79\x70\x83\x9d\xf8\x41\xb8\x27\x4e\x25\xf8\xf0\x85\x09\x71\x1d\x8d\xf1\xf8\x59\x20\xd7\x94\x01\xe2\x5f\x0a\x4a\xe3\xfc\x4c\x41\x57\xfc\x5d\xb6\x5f\xad\xc9\x45\x75\x13\x9e\xb6\xed\x33\xa4\xc0\x75\xc4\x62\xa6\xac\xfb\x01\xb4\x53\x74\x6d\x05\xc4\x6d\x68\xa1\xfc\x14\x45\xdd\x1d\x98\xd2\x24\x17\x40\xb8\x6d\xca\x4d\x07\x71\x5e\x91\x7c\x7e\x18\xc9\xba\x17\x10\xc0\xb9\xed\xaf\x98\x03\x72\xca\x54\xd7\xf8\xf6\x28\xb9\xbb\xbc\xc3\xd2\xbf\x14\xac\xb6\xa1\xd5\xe7\xbb\x71\xfa\x80\xbb\x7f\xf8\x9c\x74\x2f\x2d\x3e\xb3\xc2\x18\xfa\xf8\x3d\x6a\xd7\x74\xf7\x61\xc9\x5c\x25\x85\x4e\xe8\x11\x18\x6e\x7b\xc5\xe8\xe2\x93\x5d\xe4\x2b\xec\x52\xe3\xf7\xa7\xfb\xca\xa7\x24\xe9\xd2\x22\x3c\x86\x97\xe5\xdf\xab\x9d\xf3\xe7\x3f\xcc\x9d\x13\xff\xe6\xb8\x18\x0b\xf7\x58\x1a\x35\x40\x74\x3b\x74\x63\x06\xd1\x6d\x97\xa6\xc4\x27\xd6\x3a\x1d\xe3\x1a\x2b\x9a\x5b\x91\x6b\x2c\xad\x1d\x40\xb4\x0d\xd5\x75\x10\xda\x8e\xae\xb5\xe9\x03\xce\x5b\xfe\x0b\x5c\x5b\xc5\xcb\x30\x00\x65\xab\x04\x64\x04\x98\x6c\x0d\x53\x58\xfc\xf0\x03\x6d\x08\xd3\xf1\xfb\x91\x30\x72\xcb\x29\xf1\xdb\x02\xe1\x40\x55\x0e\x80\xdb\x0a\xb7\x82\x01\x70\xdb\x28\x59\x91\x16\xcb\xe5\x4b\xd8\x57\xbf\x3a\x7d\xb1\xf8\x45\x11\xff\x60\xcf\x64\xdb\x92\xb3\xe5\x47\xae\xed\xe1\x3f\x1e\xce\x46\x91\x2d\x51\x16\x02\x97\x02\x80\xb7\xfd\x15\x2d\x22\x50\xa2\x2c\xc7\xef\x50\x94\x6a\xbe\x34\xbf\xa2\xe2\x43\x5b\x9c\x55\x0d\xbb\xe5\x57\xa0\x3f\xdb\x20\x36\x2d\x02\x24\xe3\x67\x80\x21\x3e\xc5\xf1\x33\x7f\xf9\x58\x14\x47\xa0\x2c\x3f\xe6\xaa\x64\x1b\xfe\x61\x82\x41\x67\x6e\x4b\x8e\x83\x38\xca\xf8\x29\x2c\xb6\x1f\x75\x19\xbd\x5e\x1a\xe5\xab\x28\x87\x3f\x56\x47\x41\x70\x30\x2a\x6f\xa3\x4a\xa7\xbc\x10\xa8\x98\xae\xe3\x47\xae\x56\x48\x76\x00\x00\xb7\xff\xb0\x2e\xf5\xc3\x45\xf3\x35\xb7\x03\x4d\x22\x17\x16\xa7\xcb\x10\xf7\x9f\xfb\x81\x18\x77\x5c\x2f\xe2\x27\x30\x06\xee\xbb\xf1\xc3\x9a\x55\x9c\x15\x13\xc8\xe0\x80\x1b\x09\x19\xd7\x9c\xa3\x96\x9d\xa4\x2f\x48\x86\xc5\x99\xd8\xf2\xdf\x28\xce\x7c\x67\x7d\x9c\x14\x7c\x40\xb8\xe4\x08\x20\xde\x46\xb1\x83\xdd\xef\xe9\x53\xc7\x6c\xec\x76\xe8\x76\x83\xc6\xf0\x13\xe9\xbf\x7c\x39\x30\x19\xd0\xbf\x61\x03\xcc\xc1\xc8\x1e\xd1\x8b\x91\xeb\xec\x3f\x34\x57\x98\xcf\xe1\xda\xda\x8f\x81\x99\xb0\x52\xed\xe6\x74\x03\x91\x34\x7e\x33\x37\x19\xa5\x31\xf4\x20\x34\xc7\x0f\x43\x0f\xe2\x7a\xfc\x26\x0a\xbd\xb5\x4e\x4f\x7f\xbe\x30\x1b\x85\x7e\x6c\x76\x58\xf0\xbe\x8a\x1f\xe2\x1b\xa2\x6a\xfc\xb8\x57\x8a\xe6\x1e\x41\x66\x43\x3c\x8d\x9f\xc0\xdf\x6e\x04\x44\x36\x28\x6a\xfc\xd2\xe4\xd3\xf9\x28\x38\x9a\x85\x7e\x6f\xa6\x39\xb8\x4b\x0f\x90\xe5\x06\x76\xd2\xf8\x11\xff\x58\x83\xd6\x42\x29\x72\x59\x18\xcc\x8c\x60\x0c\x9b\x6b\xb6\xdf\xf8\x2b\x47\x69\xfc\x84\x14\x0f\x6b\xce\x13\x41\xbf\x30\x05\x21\x9d\x84\x08\x74\x80\x3f\x07\x98\x73\x95\x00\xae\xf8\x69\x08\x6a\x6e\x29\x38\x65\x71\x0f\x63\x09\x42\xae\x8a\x9f\x5c\xb3\xb9\x53\x31\x05\x75\x0f\xe0\x92\x2e\x38\xe9\x86\x43\x3a\xf2\x13\x4d\xde\x91\xcb\x29\x9b\xdb\x8e\x28\x7a\xc0\xed\xe3\x77\x7a\x30\x5d\x3e\x4d\x41\xcd\x8d\x6a\x58\x46\xd0\xc6\xe6\x9b\x35\x47\x44\x54\x46\xff\xb9\x13\x4e\xc8\x42\xf5\x23\x96\xa9\x5a\x18\x27\x6a\x77\x70\x9a\x7f\x28\x0c\x42\xd3\x61\x45\xe2\xd6\x59\xf6\x92\x36\x7a\x14\xae\x8c\x6c\xf2\x2b\x12\x02\x35\x5a\x83\x21\xc2\xa4\xe3\x77\xb3\xc6\x9e\x4f\x9d\x40\x9a\x4d\x90\xec\x1c\xa7\xa7\xf8\x25\xd3\x74\xa8\x5a\x6d\x7e\xd2\x8d\x5b\xec\x19\xbf\xca\x3d\xcf\xea\xdd\xe2\x78\xd3\x91\x5b\x85\x64\x51\xdc\x60\x46\x3c\xa2\xe3\xf7\xa8\x05\xca\x15\x9e\x6c\xde\xcf\xd8\x63\xf6\xf7\x61\x47\x57\x3f\x62\x5d\x6d\xf0\x71\x5d\xe9\x2e\xf6\x99\xe2\x09\xe0\x5a\x08\x7b\x58\xfc\x32\xe6\x5e\x9a\x63\x2e\x35\x37\x2e\x11\x8d\x49\x10\x5e\x37\xb7\x05\x3c\xd2\x1e\x4a\xa2\x22\x16\x89\x4d\xe3\xf7\x4a\xbe\xe4\x29\xdc\x0b\x25\x1b\x30\xc5\xcb\x94\x56\x7c\xd0\x6e\xf7\xd4\x97\x63\xa5\xb7\x9f\x36\x53\x89\x1c\xf9\x5e\xb2\x75\xaf\x8f\x9a\x3b\xcf\x58\x47\xdc\xb4\xe3\x47\xac\xe3\x9a\x32\x41\x3c\x47\xa6\x4b\xfb\xb9\xb4\x83\x4d\x02\x5f\x5e\x53\x1e\xe8\xd5\x52\x73\x23\x7e\x6c\x2b\x37\x80\x78\x1e\x59\xfc\xb5\xc4\x2e\x7e\xe8\x51\xc2\xe9\x10\xf2\x6f\x91\x72\x35\x80\xf9\x3b\xc8\x62\x19\xa0\xfc\x15\xa7\x14\x90\xbf\x86\xfd\x3d\xc0\xf8\xab\x00\x49\x05\x10\x7f\x43\x5e\x7a\xfc\xc0\x98\x0c\x7f\xd7\xd8\x3c\xac\xf4\xb1\x7f\xfc\x73\xe4\xa9\xa1\xaa\x23\x07\xeb\x4b\xf8\xcf\xe4\x85\x0b\x22\xe6\xfa\x38\x58\xf3\xe6\xef\xca\x85\xc3\x12\xaf\x15\xf3\x95\x71\x92\x78\x54\xc7\x81\x19\x46\x6e\x78\x98\xb1\xb5\x59\xaf\x76\x98\xc6\x31\x3f\x8a\xbd\xf7\x99\x6c\xa7\x84\x36\xc5\x91\xac\xb5\x58\x9e\x65\x67\xef\x1f\x35\x97\x9d\xba\x2a\x9e\x8b\x4e\x56\x15\x34\xd8\xe7\x5c\xdc\xf6\x17\xed\x3b\x36\x73\xad\xd2\x9f\x23\x79\xab\x3d\xab\x39\x4c\x5f\x9c\x3f\x97\x6b\x33\xd4\x21\x2b\x3a\xbc\x04\x42\x04\x8d\x23\x41\x3c\x06\x7d\x96\x6d\xc2\x42\x0f\x13\xae\x16\x17\xac\x65\x2b\x7e\xc5\xc4\x72\x4e\x0e\x13\xaa\xe1\x65\x11\xe2\x0c\x92\xa5\x25\xc0\x19\xac\x18\x1b\x03\x98\xc1\x21\xa7\x38\x8c\xf8\xc7\x63\x38\x40\x19\x1c\xb2\xbe\x03\xe3\x8a\x1c\x15\xc0\xc1\x86\x41\x39\x00\x19\xdc\x73\xe7\x1f\x4c\xea\x56\xe0\x42\xf8\xc0\xf9\xb3\xb7\x66\x3c\xfd\xf7\x8f\xe4\xbd\xfa\x0f\x5e\x04\xd5\x3f\x74\xd1\xb0\x27\xc3\x29\xa1\x11\x0d\x21\x64\xaa\x8d\x63\x1a\x83\x42\x83\xd3\xae\xfb\xec\x96\x87\x45\x1e\x13\x6a\xc8\x79\x3d\x66\x4e\x15\xed\x6d\x1d\xb3\x4a\xde\xc1\x19\xac\xdd\x29\x9c\x9a\xa1\x18\x2b\xa1\x10\xe1\xb9\x08\xd8\xbc\x3b\x33\x64\xf3\x2e\x19\x4a\x69\x6e\x4c\x94\x52\x8f\x3a\xb0\x84\xfb\x23\x5a\x08\x37\x4d\xb5\xb8\x14\x61\xb2\xb0\xe8\xa5\x9e\x7b\x70\x09\x47\x1e\x2b\xf5\x52\x52\xdc\xc6\xa1\x63\x26\xfe\xde\x01\x48\xa1\x19\x76\xe3\x58\xee\x58\x98\xdf\x21\x4b\x75\x78\x0b\x02\xe8\x76\xc9\x9b\x16\xc7\x21\x2c\x48\x83\x34\x82\x52\x58\xbb\x07\x7c\x65\x83\x16\xc7\xba\x9c\x1f\x01\xfc\x10\x36\x21\x9d\x81\x11\x82\x5e\x38\x72\x17\x9f\xb9\x5f\x98\x86\xd3\x8e\xd0\x75\x7c\x3a\x72\x7b\x9e\x58\xb9\x97\x05\x38\x9d\xce\xc1\x99\xc3\xe3\x0f\x2e\x48\x72\xa8\x97\x5a\x0c\x8c\x02\xdc\xc2\x32\x25\x1a\x57\x4e\x2e\x9d\xe5\x56\x24\x87\x87\xc6\xf9\xaf\x26\xa6\xd3\x8e\x5f\xaa\x70\x50\xce\x83\x0b\x0f\x7c\xa6\x03\x9c\xc3\x91\xfd\xe6\xc2\x03\xff\x9f\x38\x70\xc2\x28\xd2\x3b\x01\xaa\x5a\xf3\x85\xf5\x46\x0c\x3a\x54\x44\x5b\xf3\xc5\x23\x6a\xb5\xc4\x51\x54\xcf\xdb\x4d\x9f\x82\x3e\xdd\x0c\x3b\xe8\xf7\x3f\xbe\xeb\x1f\x39\xfd\x0c\xef\xa6\x83\x08\x41\xa0\x24\x96\xf2\xaf\x27\x2a\x9f\xc8\x12\xc7\xc3\xa6\x47\x52\x03\x27\xb1\x84\x5d\x87\xed\xae\xa4\xf3\xfa\x62\x36\xf8\xeb\x21\xc2\xd5\xcf\xc3\xf4\xd8\x2d\x8b\xd8\x2d\x4b\x38\x6d\x7e\x23\xf3\x91\x3e\xc8\x6c\xe7\x9f\xbe\x7b\x71\xbc\xde\x8a\x53\x85\xe9\x6f\x9a\xeb\xf6\x7a\x27\xec\xf3\xdc\xed\xa0\x02\x1e\xdc\x7f\xe0\x2a\x1b\x87\x77\x1e\x1e\xa2\x57\x4e\xe3\x6c\x9b\xfd\xa6\xc9\x2a\x5e\xcd\xc2\x96\x90\x2c\xc8\x82\x4c\x3a\xe0\xb1\xcb\x14\xa6\x34\xf7\xb9\x3c\xb6\x4d\xcc\xc4\x9a\xd2\xe6\x74\xea\x70\xf4\x42\x98\xe3\xc5\x15\x40\x2f\x1e\x25\x9f\xa5\xd3\xf2\x93\x8f\x5d\xb3\xfc\x43\x73\x02\xec\x48\x20\xc6\xc5\x75\x53\x14\x98\x6f\xc7\xdf\x2a\xca\xcf\x79\x80\x1e\x17\x2e\x4a\xf0\x06\x0e\x20\x1a\x07\x3e\xbf\x51\x7e\x8a\x04\x93\xe7\xf5\xdf\xff\x3a\xfe\x36\x51\xb8\x33\xc1\x99\x37\x8a\x40\x5c\x68\xea\x51\xd0\x8a\x15\x40\x81\x77\x1c\xf8\xec\x46\x31\xa7\x0e\x1d\x2c\xa9\x13\xb3\x01\xc1\x7d\x1c\x84\xe6\x47\xc1\xc3\x93\x8b\xab\x28\x9b\x73\x0f\xfc\x3a\x02\xd4\xc7\x4a\x14\x55\x14\xf9\xf6\xf0\x59\x82\xdd\xfd\x48\x21\x05\x56\x0f\x1a\x64\xf9\xf7\x6c\x62\x29\x5b\x50\x82\x64\x33\x15\xe0\xd0\xc9\x0a\x1c\xa0\x44\x96\x6a\xb5\x25\xc9\x29\x83\x28\x1e\x79\x58\x20\x88\x91\xa5\xe0\xda\x1f\x05\x7e\xae\x2d\x01\xf8\x48\xf3\x74\x07\xf0\x91\xa3\x3a\x0a\x9c\x3c\x5a\xf1\x9b\xbd\x46\x58\x8c\x02\x90\xc8\xdd\x04\x53\xb0\xb9\xf9\xc0\x0f\x38\x44\x8c\xfc\x37\xcb\x64\x3d\xc0\xaf\x21\x44\x8c\xe4\xae\x26\x8a\x69\x79\xb2\x40\x50\x98\x91\xe2\xe4\x41\x76\x8c\x28\x35\xa7\xc3\x17\x77\x2a\x0c\xac\x34\x67\x9c\xa6\xcd\xa1\x4e\x48\x42\x14\x6f\x4c\x48\x59\x1d\xc5\x1b\x13\x95\x0f\x00\x23\x8f\x8e\xbb\x49\x88\x18\xc9\xf5\x6c\x94\x96\x2b\x40\x2b\x4d\x85\xa3\x59\x99\x64\x82\xe3\x54\x9a\x64\x82\x43\x5f\xd2\x43\x03\xed\xb8\x74\x79\x81\xb5\xe9\xba\xd9\x86\x9f\x31\x30\xb8\x26\xa8\x91\x03\x2f\xe4\x00\x35\x72\xe0\x4d\x1a\x02\x45\x46\x1b\x96\x66\xbb\xc1\xa0\xc0\x86\x1c\xf8\x80\x46\x49\x86\x8f\x54\x0d\x1e\xe4\x50\x48\x4d\x3c\xc8\x36\x7c\x69\xfc\x41\x4d\x43\xfb\x3b\x83\x4a\x4f\x0b\x77\xee\xb0\x4f\x4c\xe3\x50\x72\x47\xb6\x29\x98\x9a\xf1\x46\x89\x32\xc4\x86\xa3\x00\x72\x40\x75\x5f\x60\x69\xee\xce\xce\xd4\xa9\xd1\x91\x12\x2b\x99\x87\xcf\x0c\xe4\x2a\x5e\x25\x9d\x28\x50\x77\x13\x16\x92\x40\xa2\x00\x17\x72\xd4\xf2\x57\x86\x82\x48\xd0\xc8\x06\xe9\x2b\xe1\x80\x61\x7e\x89\x0e\x39\x3d\x55\x91\xa3\xf4\xb3\xe5\x3f\xf4\xd4\x70\xc8\xe6\xc6\x43\x08\x28\x6e\xb6\x60\xba\xdd\xda\xa1\x6a\x0b\x59\x2e\x7a\x58\x90\x58\x3c\xc0\x90\x1c\x15\xf1\x05\x0c\xc9\x5d\x95\x7f\x34\x95\x5e\x9a\x57\x22\x48\x52\xb1\xc2\x17\x3f\x43\x14\x6a\x96\xe7\xf0\xba\x57\xf1\xa4\xa8\xee\xee\xf3\x67\x01\x3e\x3a\xf5\x8c\x72\x4b\x9c\xfa\xb0\xf8\xc7\x9e\xe5\xc3\x2d\x78\xea\x1a\x3b\x2c\xee\x49\x81\x77\x17\x5c\x29\xaa\x84\x03\x9d\xb9\xba\xc0\x64\xa4\x53\x1c\x14\x9b\xb2\xe3\x6e\x10\x60\x53\x16\x65\x35\xb1\x29\x17\x2e\xb3\x01\x36\xe5\x51\x11\xd0\x4a\xca\x0d\x08\x11\x85\xec\x74\xc3\x15\x31\xdf\x41\x9b\x7e\x35\xad\xd7\xaf\x52\x2e\xe2\x99\xee\x42\xe9\xcb\x95\xeb\x41\xd7\x2f\x7b\xeb\x1f\x9e\x85\xe9\x0b\x29\x27\xc2\x6a\xb3\xbb\xbe\xe8\x72\xeb\x2e\xba\xb5\xf6\xd0\xc6\x9d\x47\x9c\x7a\x9f\x1c\x08\x3d\x79\xbc\x5c\xa7\xbf\xb8\x66\x56\xa7\x6a\xb3\xf8\xa6\xe4\x5d\xf0\xcc\x0c\x3b\x95\x8e\x99\x0e\x90\xd4\xab\xdd\x53\x0c\x53\xaf\x0e\x0f\x2f\x88\x92\x74\x0b\xae\x5e\x5d\x0d\x5c\x22\x34\x23\x14\xdc\x20\xaa\x27\xe6\x61\xc1\x5d\x80\x37\x17\x9c\x02\x58\xb2\x95\x6c\xc0\xbc\xdc\x73\x40\xd3\x2f\x64\xd5\x5d\xfc\xe6\x6e\xa3\xb3\xaf\x40\xbc\x7e\x24\x5c\x1d\x2b\xf6\x82\x59\xe1\xd1\x33\x82\x12\xa0\xf0\x28\x6f\xee\x10\x3a\xfb\x82\xcb\x68\xa7\x74\x74\x48\xc2\x94\x5c\x5f\xb6\x81\xa7\x83\x52\x38\x60\x9a\xa3\x3a\x99\x78\x75\x56\x77\x48\x32\x7d\x99\xc0\x27\xed\x93\x84\x7c\xce\x14\x8d\xe3\xd6\x59\x6d\x1b\x07\x88\x2a\x73\xc8\x48\x49\x77\xde\x97\x6b\xbc\xab\xaa\x99\x80\x88\x23\x5b\x01\x57\x21\x85\x60\x00\xac\x59\x49\x6b\x1b\xf5\x67\xa7\x2c\xd0\x98\x7f\x9f\xf5\x67\x58\x3c\xc3\x83\x39\x32\xf5\x67\x97\x2c\xeb\x56\x0b\x5f\xbc\x61\xe4\x59\xa6\x6d\x2f\x4c\x67\x40\x8e\x87\x00\x54\xf3\xe0\xc6\x37\xaa\xee\x0f\x44\xb6\x46\x35\x6d\x81\x74\x57\x24\xcd\x89\x03\x62\x54\x94\x6a\xa2\xc5\x42\xc0\x4c\xed\xe3\x55\xf6\xda\xc7\x5f\xa4\xaf\x1a\x40\x21\xad\xaf\x19\x08\x89\x32\x52\x35\x5f\x4b\xc7\x81\xd0\x1c\xa4\xf0\x88\x9a\xa6\x6c\x24\x13\xf0\x34\x47\x45\x13\x07\x4e\x73\xe0\x3c\x17\x55\x13\xb7\x62\x39\x68\x9a\x03\x1f\xc0\x00\x4d\x73\x54\xce\x59\x05\x0c\x05\xaf\xbf\xa8\x60\xa1\x14\x00\x16\xa3\x82\xdc\x2f\xef\x06\x71\x73\x80\x80\x1a\xb5\x2a\x7c\xa3\x80\xd4\xe4\xd7\x61\x7b\x6e\x32\xf6\x6b\x95\x79\x23\xb4\x55\xf3\xb6\xca\x5d\x84\xdb\xec\x9a\xd1\x81\xdb\x3c\x02\x77\xcf\x00\x6f\x73\xe0\xca\x16\x75\x33\xf2\x39\x9c\xe0\xa6\xf0\x0d\x51\xaa\x24\x29\x22\x5d\x72\xd4\x0c\xd8\xf0\x77\x10\x3d\x6d\xaf\xdb\x36\x53\x68\x3a\x3e\x6d\x74\x60\x75\x8a\x27\x12\xb5\x3b\x3b\x1c\xd4\xda\xed\x07\xbc\xb0\x76\xa9\x4d\xd6\x95\x7b\x9f\xee\x26\xdf\x5f\xfe\x13\xf4\xc4\x56\x70\x29\xf4\x8e\xa6\x6e\xd6\x1d\xe4\x54\x0a\xa0\x3e\x8f\x39\xed\xbb\x29\x58\x2b\x02\x68\xc5\xb2\xad\x9c\x04\x0c\xe7\xa8\x8e\x76\x1a\x7c\x48\x7b\x3a\x23\x80\x2c\x11\xc0\x6d\x1e\x52\x7c\xe0\x36\xc7\xbf\x8f\x72\xc7\xf8\xc7\x47\xdb\xd4\x14\xd9\x1c\x13\x1a\xb9\x06\x74\xc4\xc8\xc7\xac\x2b\x9c\x76\xea\x0a\x89\xab\x2b\xcd\x2d\xb0\xd4\x0e\x4c\xce\x51\x5d\x74\xb4\xed\x3c\x85\xb8\x1f\x74\x8d\x14\x60\x72\x0e\x39\x49\x5d\x0a\x8e\xae\xe6\xf2\x0c\x53\x13\x9e\x05\x64\xcc\x08\xa1\x36\xfb\xcf\x3d\xbd\x96\x9d\xf2\x2b\xdb\x60\xe0\x46\x32\xb6\xe5\x1f\x1e\x16\x58\x49\xd5\x81\xb1\x2d\x5f\x20\x2d\x9e\x69\xb9\x2e\x52\x4b\x45\xdb\xae\x1e\x28\xfc\x17\x71\x1d\x8b\xea\xfd\xae\x6c\xb3\x9e\xb9\xc7\x68\x83\xe8\x88\xea\x9a\x89\xdf\xa9\x49\x05\x00\xcf\x81\xdf\x5c\x80\xdf\x59\xf1\x83\x88\x6a\x72\x3f\x69\xbb\x58\x9e\x45\x32\x5a\x2f\x9d\x67\x69\xf0\x72\x95\xf9\x08\x4d\x9a\xdb\xef\xa8\x22\x80\xc8\x00\xea\xcd\x61\x96\x62\xa1\x18\x0f\x97\xec\x9e\x2c\x2c\x15\x99\x97\x3c\x69\x1f\xca\xf0\x70\x1b\xe3\x2e\x38\x3d\x5a\x37\x8b\x31\x7d\x96\x99\xda\xd9\x47\x27\x64\x29\xed\xa3\x14\xe2\x67\xc4\x30\xe4\x96\x34\x2e\xb1\xbb\x8b\x1f\xef\x19\x68\x03\xed\x17\x3f\x8d\xa8\x0f\x40\x9e\xc5\xe7\xc7\x02\xbe\xe0\x7c\xf2\x67\x76\x82\x00\x8d\x73\x54\x49\xec\x6b\x5f\x60\x65\x80\x6e\xee\xea\x18\xb0\x57\xba\xb2\x73\x80\x36\xeb\x90\x7a\xbd\xda\xed\xdc\xbc\x2f\x04\xd7\x41\xc2\xe3\x72\xae\x35\x4a\xbb\x38\x1f\x4e\x58\x98\x11\x2a\x7e\x7d\x55\x1a\x2a\xbb\xf3\x0c\x6d\x76\x17\x43\xee\x43\xc0\xa2\x7a\x77\xfd\xf2\x34\x32\x25\xe2\x6f\xf6\xfc\x8a\x96\x97\x5f\xdd\x7e\xc5\x3c\x7c\x2c\x33\x23\x6a\x19\xbc\x08\xe3\x6c\x72\xb5\x7c\xd6\x02\x1e\x3c\xeb\x48\xcb\xf4\x02\x97\x39\x14\x8e\x80\xc8\x9c\xe4\x61\x8f\xc6\xed\x2e\x0e\x31\xd1\x36\x8b\xab\xf8\x81\x46\x53\x8f\x85\x18\x37\xb8\x1d\xde\x04\xd1\x7e\x6a\x35\x9c\xa6\x96\xf7\xb9\x6c\x62\xe0\x35\x07\xae\x7f\xd1\x8e\x9c\xf1\xce\xcb\xf4\xc5\x7f\x3c\x99\xb0\xce\x56\x58\x31\x48\x20\x18\x9c\x03\xf7\xbb\x00\x51\xb3\x7a\x36\x40\xd4\x1c\xf8\x41\x04\x20\x9a\xc3\x3b\xcc\x66\xee\x1e\x65\x84\x56\xd3\xe9\x83\xe7\x7d\x34\xbc\xaf\x6a\x2a\x8a\x68\x5d\xe2\x63\x46\xb7\x74\x85\xe8\x2d\x9f\x49\xbc\x0c\x15\x68\x9a\x78\x25\x2f\x20\x5f\x0e\xef\x78\x9b\x26\x5e\x65\x87\x86\x13\xff\x70\x74\x44\xec\x93\xbe\x2f\x5a\x9a\x7e\xa1\x15\x00\x62\xee\x12\x4c\xe1\xd6\x0c\x2b\x61\x89\xd1\x60\x2f\x41\x6e\xac\xad\x9e\xf2\x15\x64\x19\x0c\xcc\xb2\xec\x55\xcf\x1d\x42\xc5\x5d\x60\x0e\xc6\xa4\xfe\xd7\x91\x1e\xc0\xb7\xdc\x6b\xcc\x57\x43\x22\xcd\x76\x69\xb8\xda\x83\xec\x13\xa0\x5d\x0e\xef\xd7\x00\xbb\xac\x87\x53\xe2\xad\xab\x82\x67\x1b\xae\xd9\x61\x09\x15\x07\x1a\x54\x1b\x54\x0c\x02\x06\x73\x78\x23\xde\x8c\xda\x57\xb8\x05\x07\x73\x68\x71\x68\x43\xc7\x70\x0b\x48\x9d\x2c\xf0\xf2\x8d\xbf\x7f\x3c\x33\x09\xba\xd3\xe1\xc5\x1e\x20\x62\x56\x35\x43\x30\x30\xf7\x1f\xb4\x30\xb3\xb7\x54\xc5\xa5\xed\xe1\x36\x9a\x72\x1a\x48\x71\xdb\x3c\x6f\xe0\xd7\xb1\xf5\x02\x87\xc4\x0a\x72\x83\xeb\xa5\x6d\x03\xc8\xa3\xbb\x4e\x33\xe7\xd3\x06\x5d\x34\x64\x9b\x04\xd4\xec\x08\x21\x0d\x13\xb3\xbe\x07\x8d\x2b\xdc\xe6\x76\xcb\x04\x3b\x9e\x2c\x82\xfe\x9a\x93\x0b\xd4\x46\x6e\xe2\x25\xc7\x84\xa1\xb4\xa5\x6d\xdc\xf9\x54\x25\x1c\x3e\xbb\xf9\xa0\xb9\x89\xad\xd9\xcb\x5f\x4e\xcc\x01\xd6\x66\x05\x5c\x20\x40\xd7\xac\xdd\x95\x5e\xe6\x78\x81\x20\x82\xae\x39\x9a\x8b\x4b\xe8\x9f\x77\x3a\x22\x65\x46\x87\xee\x8a\x8e\xd9\xd5\x23\x1b\x37\xa6\xfa\x80\x08\x6c\xd9\x09\xdc\x89\x66\x2e\x59\x8d\xc0\xed\xd2\x0b\x93\xaf\xb6\x62\x17\xc3\xbd\xb1\x55\xb9\xd2\x3d\x54\x97\x33\x4f\xad\x97\x22\x9f\xc4\x04\x55\xce\x4b\xc1\x76\xb9\x67\xac\x54\x33\x83\x2b\x6d\x2a\x9d\x5e\x6c\xc2\x61\xf0\xd5\xad\x63\x01\x32\x42\xbb\x1d\x13\xc3\xb8\x95\x17\x90\x36\xda\x8d\xf9\x11\x96\xdd\x08\xc1\x6f\xd6\x74\x7b\x6e\xe9\x14\x1e\x4b\xde\x5e\x37\x6c\xc0\x0d\x0a\x9f\x18\x9a\x8a\x91\x0d\x7b\xb0\xf7\xa8\x60\x68\x0e\xef\x16\x1b\x1e\xf3\x00\xf8\x44\x13\xd2\x8a\xfc\x53\x01\x84\xe6\xd0\x0e\xd6\x1e\xa7\xc0\xdf\x69\x0d\x09\x16\xc8\x4c\xfd\xcf\xa3\xbd\xb9\xe2\x4c\x87\x81\xf2\xdd\x7e\xbc\x12\x66\x9a\x7b\x0d\x58\xf6\x23\x29\x09\xdc\xbe\x7d\x39\x1d\x74\x44\x10\xa9\x0e\x2b\x6f\x5e\x98\x2a\xee\x83\x6e\x39\xbc\x9d\x03\xd0\xb2\x18\xd6\x14\x89\x62\xd9\x61\x8c\x89\x62\x39\x3d\x07\x5c\x78\x02\xee\x11\xed\x53\x48\x43\x5c\x04\xd1\x72\x78\xed\xd7\xf5\x4d\x0f\x9f\x91\xcb\xb0\x6f\xf5\x5f\xb6\xb1\x78\xf1\x0a\x0c\x16\xd3\x35\x8f\x2a\x98\xf5\x43\xda\xc5\x71\x01\xbb\xb2\x82\xe0\x1b\xc0\x55\x56\xb2\x26\x6e\x9a\x47\x47\xfc\x1d\x32\x4f\x6f\x01\xa5\x3c\xbc\xa6\xee\xaa\x60\x3d\x3f\x72\x01\x39\xe8\x40\x54\x1e\x93\x28\x93\x00\xa3\x72\x34\xe6\x07\x58\xca\x81\x3b\x64\x80\x4a\xb9\x4b\x50\xef\x56\xc7\xa6\x77\xa7\x80\x4f\x56\xef\x2e\x12\x7c\x52\xc1\xb3\x1b\xec\xa6\xd2\x06\xc6\xe4\x6e\xdd\xcf\x9c\x37\xda\x43\x17\x93\x31\x03\x38\xb9\x3b\x42\xe3\x55\xfd\x0f\xc6\xd7\x53\xcd\x62\x4b\xf7\x34\x8b\xb2\xec\x5d\xb3\xa8\xe5\x05\x9d\x54\x9a\xee\x70\x2f\x85\xb9\x5e\xdf\xcd\xd8\x9d\x43\xfd\x5e\x15\xad\xc1\x90\x1c\xde\x7c\xf5\xc6\x68\x9d\xac\xad\x40\xd5\x66\x6f\x9b\xda\x49\xb3\x40\x50\x80\x45\x6b\x86\xd1\x31\x58\x1c\xc4\x35\x63\x02\x1a\x39\xbc\xd4\x10\xff\x71\xda\xbd\xe4\x6f\xb0\xca\xde\x73\x5d\xa9\xa9\xbb\x2b\x61\x2b\xdd\xdb\x4d\xe5\xaa\xbe\x35\xa8\x20\x3d\x75\x74\x3c\x6b\xdb\x9f\x99\x48\xa3\xa7\x3e\xd5\xac\x1b\xa3\x8b\xeb\xd6\xed\xbd\x1d\x58\xd4\xec\xb3\xb2\x84\xdf\xbb\x35\x9c\x5d\x5d\x73\x67\xb7\x2f\xda\x15\x50\xa1\x3a\x91\x69\x39\x43\x43\x03\xa6\xa3\x1f\xc1\xbd\x2b\xab\x3e\xc8\xda\xe3\x0c\x01\xfd\xd8\xdd\x27\x9b\x27\x06\x89\xab\x03\xb4\xc7\xd1\x6c\x61\xe4\x0c\xf1\x87\x0c\x8b\x33\x08\x16\xe3\xee\x14\xb5\x26\x7e\x86\xd5\xea\x73\xa4\x51\xb0\x6b\x16\xd5\xc5\xa6\x63\x16\xd5\x1a\x2d\x62\x63\x68\xc5\xed\xdc\x96\x36\xd8\x4c\x4f\x56\xe6\xe2\x82\x2c\xa5\x8a\xd8\x0d\x33\x03\x3c\x2e\x7a\xc8\x0c\x9c\xd0\xb0\x5f\x16\x67\x42\x6d\x2f\xb2\x8f\xbe\x40\xcb\xb2\xda\xcb\x3f\x6c\xdc\x78\x40\xe4\x58\x90\x1d\xf7\x8c\x32\x71\x38\x90\x6b\x63\x07\xd9\x71\x78\x99\xd4\xb5\x94\x76\x67\x08\xc7\x5d\xef\x69\x3a\x9c\x50\xa3\x69\x37\x23\x3b\xfe\xf9\x01\xe4\x63\xd5\x73\xa4\xe3\x8d\xd4\xf2\x77\xce\x1d\xe4\xae\xab\xd6\xf5\xac\xc9\xe9\xf1\xab\xb4\xa0\x22\xe3\x8b\x05\x39\x09\xbb\x08\xf0\x1f\x87\x97\x65\xdd\x24\x35\xea\x3e\x1d\x35\xcf\xbb\x82\x7e\x4a\x03\x90\xc7\xfb\xe9\xfc\xf8\x11\x69\xa2\x24\x07\xb8\xf4\x76\xf7\x18\xae\x49\x44\x72\x45\xdf\x4a\x5e\x0d\xcf\xe0\x29\x45\x75\x3e\xc1\xb4\x8a\x6c\xfa\xc3\x4b\x9b\x02\xd7\x6f\xef\x24\x84\xda\xae\xa7\xaf\x02\x7f\x37\x8d\x8d\x3a\x54\x4f\x63\x2a\xaa\x35\x48\x92\xfb\x1f\x26\x5d\x16\x2c\x1d\xe4\x4a\xb6\x49\x76\x35\xa0\x2a\x26\x02\x19\xd9\x94\xc2\xba\x39\x6d\xd4\xa6\xba\x49\x62\x73\x53\x73\x7b\xda\xa4\xe7\xa6\xa8\xe9\x2e\xe6\xed\xf5\xee\xf2\x2b\x84\x6a\x78\x46\x4f\xc7\x5f\x77\xf5\x0d\xe1\x75\xd1\x64\xa3\x9e\x59\x7c\x7d\xbd\xd5\xe8\x69\x28\x45\x48\x00\xd0\x71\x34\x89\x1d\xfe\x48\x5e\x5e\xf4\xc7\xc5\xb4\xa6\xb4\x8e\xa2\xaf\x08\xee\x28\xc6\x79\x80\xd3\x58\x0f\xf7\xe1\x6b\x1b\x0c\x56\x8f\xa4\x24\x18\xa9\x14\x4a\x84\x51\x0a\x15\x8f\xfa\xcb\x5c\x75\x3f\xd2\x38\xe2\x0a\xe6\x0d\xa7\xcc\x44\xec\x0e\x1d\x50\xfb\x97\x15\x33\x12\x38\xac\x5e\x2e\xe0\x37\x0e\xef\x32\x80\x6f\x1c\xcd\x03\x41\x2e\xb8\x90\xcb\x98\xf1\x75\x2b\xf3\x7f\x11\x3f\x6e\x3f\xbd\x57\xe8\x5f\x32\x94\xdd\x8c\x08\x90\x62\xc9\x06\xa8\x8f\xc3\xbb\xf1\x01\x57\xc6\x7f\x3e\x80\x79\x2c\xa4\x86\x0a\xc0\x1c\x87\xb7\x25\x60\x39\x0e\x2f\x3e\x06\xb1\x60\x93\x30\xc9\xbd\xf5\xac\x75\xf0\xa2\x80\xc5\x49\x07\xbf\x71\x78\xbf\x32\x8e\xf1\xdf\xff\xba\x06\x95\xb1\xd5\xbe\xee\x75\x94\xb0\x8e\x93\x40\xbf\x18\xa9\x02\xb2\x24\xe3\x70\x22\xac\x56\x02\xb2\x7c\x51\xec\x63\xdd\x47\xc9\xd6\xa9\x18\x4d\xd1\x7b\x85\x51\x32\x17\x27\x9d\xd7\xf3\xc8\x7b\x09\xd0\x1b\x77\x1f\x2d\xe2\x6e\xa4\xe2\x42\x62\x6c\x88\x32\x40\x8e\xc3\x7b\x85\x91\x5c\x75\xf9\x92\x1d\xa6\x91\xd4\x1c\x99\xeb\x61\x22\x76\x55\xc7\x04\x6c\x04\xac\x2c\x46\xda\x2c\x5d\x05\x1c\x71\xbd\x98\x18\x2d\x43\xb5\xa9\x0c\x8f\xa2\x01\xdc\x52\x0c\x33\xcb\x00\xfc\x19\x23\x19\x70\xf7\x1f\x76\x3a\x64\x47\xf4\x45\xf2\x52\xc6\x20\xec\x5b\x8b\x05\x40\x8c\x7b\x88\x7c\xd4\x25\x9f\xce\x24\x81\x2a\xea\x8b\x40\x34\x36\x1d\xc8\x86\x89\x57\xbb\x03\xc6\x02\x39\x89\xb8\x8c\x81\xd5\x71\x64\x55\x58\x07\x55\xad\xc1\x6b\xac\xcb\x39\x25\x67\x7a\x5e\x2b\x0f\xd8\xe4\x74\xab\x70\xf5\xa8\x7b\xca\x20\x2e\x6b\x12\xb1\x18\x63\x68\xa1\x85\x4a\x0e\xd5\x4d\x75\x28\x40\x1d\x87\xd6\x93\x61\xaa\x74\xb5\xca\x81\x13\x12\xb1\x85\x31\xc4\x4b\xd6\xce\x21\xa8\x63\xd7\x9e\x01\x90\xe3\xd0\x1a\x3f\xa6\x2e\x75\x2e\x29\x61\xdb\x45\xad\x7d\xcc\xdc\x11\x54\x36\xf5\x9d\xb5\xb8\x9a\xba\xcd\xc3\x5b\xc9\x70\x17\x43\x68\x2a\xdd\xa1\x41\x57\xdc\xc5\xa9\x38\xa0\x11\xd2\x85\x11\x6e\x09\xc7\xc5\x75\x61\xcd\xaf\xa4\xe6\x76\x2c\x63\x51\x10\x12\x80\x5b\x1c\x2d\x9f\x01\x1c\x81\xb8\x8e\x95\x1d\xa6\x8f\x69\xc5\x44\x9b\x1c\xc4\x5d\x17\x75\x64\x00\x12\x4b\x51\x7f\x1d\xa7\x75\xf1\xd5\x29\x90\x8d\xbf\x5b\x17\x7c\x62\x70\xad\xa7\x41\x73\x68\x48\x54\xc5\x01\x2c\x71\x68\x82\x03\x2b\x71\x34\xcf\xe2\xe5\x29\x73\x52\x2e\xf7\x93\x03\x21\x9e\x44\x5b\x35\xc0\x89\xbb\x2a\x8b\x78\x4e\xec\x95\xae\xb1\x2a\x99\xc2\x28\x16\x55\x9e\x71\x7b\xb7\x06\x4b\x1e\x77\x36\xe3\x4b\x36\x43\x19\xdc\x66\x55\x26\x87\x9e\x3c\x5b\xdf\xfa\x83\x12\x0e\xb5\x3a\xc4\xa4\x71\x9b\x19\x83\x31\xcb\xa8\xa4\x26\xb7\xa1\xd6\xd6\x9c\xa1\xa8\x3c\x13\xe2\x07\x23\x1e\x4f\xf6\x8b\x1e\xeb\x50\xab\x6e\x0a\xc8\xe2\xd0\x46\x3a\xf4\xa7\xed\xee\x4f\xa3\x9f\xc9\x95\x12\xa2\x2c\x2a\x2a\x0e\x39\x98\x4a\x1e\x88\x8b\x43\xf3\x1e\x88\x8b\xfb\x0f\xa6\x92\xbb\x3e\xcd\x56\x40\x2e\x0e\x6d\x94\x09\xb9\xa8\x36\x2b\xcc\x62\x90\xbd\x23\x12\x67\xd1\x83\x62\xce\x72\xd5\xd9\x91\xec\xcc\x25\x7a\x5d\x22\x69\x0c\x61\x2b\x1a\x5f\xc1\x53\x1c\xda\x55\xc7\x66\x67\x55\x33\x92\xd0\x8a\x0a\xcc\xe3\xb5\x23\xac\xce\xe7\xc5\x0d\xc3\x83\x7d\x75\x97\x3d\x83\x56\x1c\x37\x16\xcb\xee\x9e\xc3\x62\x39\x8f\x7c\xf1\x2c\xd8\x73\x6e\xeb\x94\x27\x00\x50\x1c\x1a\xc0\x26\xf7\x73\xde\xce\x4c\x2c\x99\x5e\x9c\x4e\x13\xaf\xa9\x95\x4d\xd1\xad\x0c\x2e\x00\x59\x71\x68\x4e\x9c\xc2\x15\x93\x51\x20\x40\x56\x1c\x1a\xf8\x40\x56\x1c\x1a\x42\x40\x56\x1c\x1a\xb6\x12\x58\x51\x25\x70\x62\xe4\x74\x0a\x44\x56\x34\xaa\x3d\xa6\xde\x3a\x6a\xb6\xd3\x98\x68\xe2\x5a\x63\x92\x9c\xad\x73\x8e\xc0\x5f\x1c\xfd\xe7\xef\x12\xba\xe5\x1f\xba\x19\x74\xff\x61\x0e\x87\xcf\x32\x25\xc7\x01\xeb\xd3\xae\x01\x14\x63\x9d\xf9\x91\xe2\x92\x63\x3a\x94\x72\xe0\x4a\x33\xd9\x20\x47\x3a\xc1\x18\x01\x4d\x89\x59\x72\x93\x30\xa5\xa5\x53\x31\x43\x2c\x12\x14\x87\x85\xf7\x8e\xb6\x1e\xc0\x18\x77\x71\xeb\xca\xf1\xf2\x82\x31\x35\xaf\x4f\x67\xf5\x1c\x20\xc1\x00\xd3\x38\x34\xa7\x4d\xe2\x9a\xb5\x8d\x25\x2e\x23\x89\xf8\x03\x5c\xc6\x23\xef\xac\x26\x11\x2c\xbd\x58\x55\x8e\x8b\x41\xc2\x1f\x35\xba\x4d\xf9\xa3\x37\x4d\xd3\x40\x15\x15\xda\xa9\x39\x56\x35\x7d\xa2\x87\xea\xb9\x38\x9b\xb1\x0f\x7e\xc4\xa6\x76\xad\x34\xba\x6a\x16\x98\xa4\x4e\xd1\x06\x35\x7b\x0e\x8a\x49\xc5\x97\x56\x13\xc1\x24\x38\x59\xf7\xcb\xd9\x19\x13\x36\x97\x84\x6a\xd4\xc8\x3b\xf1\xc5\xd1\x34\x32\x53\x57\x1c\x7e\xc5\x30\xe0\x09\x93\xc4\x69\x9d\x43\x27\x52\x63\xd1\x54\x01\x3c\xe3\xe8\xd5\x8f\xf0\x49\x74\xbb\xe3\x59\xa3\xf5\x06\xe0\xc5\xd1\x21\x4a\x13\x33\x69\xaf\x7f\xca\x80\x73\xb8\x6c\xd6\x9c\x71\x2f\xee\x14\x61\x45\x54\x7b\x27\xfe\xb7\xda\x95\xe6\xc4\x8c\xe1\xa6\x23\xc4\xb3\x7b\xc2\xa6\x06\x1f\xa4\xe9\x04\x6b\x54\x71\x05\x93\xb1\x56\xf7\x09\x46\x50\x23\x62\x66\x28\x3e\x78\x14\x22\xb7\x99\x5f\xc1\x1c\x87\x87\x0f\xf7\x99\xd0\x98\x33\xc3\x0b\x8d\x61\x99\x07\xc0\x17\xfa\x6b\x58\x8a\x02\xe9\x5c\x92\x3f\x9b\x51\x2d\x24\x9b\x6a\x4c\x2d\xa4\xca\xb3\x73\xe5\x61\xa2\x97\xe9\x14\xeb\x09\xc2\xd8\xa9\x7a\x3d\x45\x19\x1e\x9e\x7e\xee\xec\xb4\x4c\xcc\x53\x33\x2c\x02\xa6\x78\x8d\x31\x1c\x0c\x8c\x53\x25\x1a\x24\xc6\xfd\x95\x45\xa8\xd7\xd6\x05\x5f\xd4\x2b\x13\xf0\xc5\xa1\xde\x0c\xf8\xe2\xd1\x15\x9b\x27\x01\x22\xcb\xfd\x8f\xb5\x53\xe5\x73\x72\x67\xd7\xb3\xf0\x6b\xdb\x96\xd6\xa1\x02\x81\x76\xe2\xff\x9a\x7b\x53\xae\x39\x3c\xd5\x30\x4a\xb5\xf9\x09\xfb\x53\xc1\x05\x94\x71\xa8\x42\x4f\xc3\x4b\x5a\x96\xf6\x84\x4e\xff\x91\x39\xa1\x65\xce\xdb\xc1\xd2\xab\xdb\x9e\x48\x20\x1e\x1b\xe7\x23\x5c\x60\x54\xa8\x12\xb9\x51\x63\xc0\xc4\xb3\xb5\x1f\x9e\xd6\x47\xfe\xef\xc4\x99\x6b\x4c\xf9\x70\x26\xd7\xb3\xc3\x2a\x6e\xc3\x3d\xc8\xa5\x9d\xfe\x88\xd3\xec\x1e\xaa\xd1\x53\xb6\xe7\x8d\xe5\xd4\x95\x45\xeb\x49\xa2\x31\x0e\xcf\xb5\x81\x98\x6a\x16\x40\x33\x4e\xdd\x77\x41\x66\xdc\x7f\xf8\xc2\xc2\x21\x66\x4f\x93\x78\x6b\x5b\x98\xdc\xdb\x75\x44\x6e\xd1\x18\x8b\x36\x84\x49\xf8\x48\x97\x4f\x27\x1c\x63\xcb\xf2\x89\xe6\xc9\xb3\x33\x99\xe5\x2f\x62\x79\xe9\x16\xda\x99\x7a\xf1\x14\x28\x4b\x7b\x44\x70\x73\xd7\x15\xba\xc3\x88\x4d\xfd\xfa\x40\x70\x1c\x5a\x0e\x05\x70\xec\xe4\x09\x89\xf8\x71\x5d\xcb\x01\x02\xcc\x71\xd7\x65\xf1\xd3\x13\xe8\x3f\x39\x11\x8b\x17\xb6\x57\xb7\x2e\xba\xc2\xc1\x8e\x9f\xf3\x40\xe9\x54\xef\x98\xad\x90\xad\x71\xfc\x42\x58\x61\x2d\x34\x71\xe4\x32\x50\xad\x91\x99\x4a\x7b\x40\x3c\x0e\xd5\xcc\xc0\x07\x46\x95\x37\x0e\x4d\x34\x90\xb8\x38\xb2\xbf\xf4\xe4\xc8\xd9\xb2\x2e\x09\xce\xb4\xc9\xdb\x8a\xe9\xa4\xd9\x41\x34\x50\xc4\xe6\x7f\x33\x8e\x3f\x8d\x81\xe0\x47\x0e\xd5\x45\xf0\x23\x87\xba\x2a\xf0\x91\xc3\x0b\x7f\x50\x22\x87\xe6\x98\x10\xea\x5f\x07\xdb\x28\xd2\x74\x74\xe3\x28\x9e\x02\xe8\x72\x98\x3f\x5c\x7b\x45\x54\xdb\x60\x62\xaa\x14\x16\xd6\x14\x42\x75\x69\x5f\x89\xea\x64\x30\x4a\xbc\x5d\xd4\x48\x23\xbd\x53\x51\x03\x43\xc6\xe8\x24\xa9\x45\x92\xf2\x3d\x22\x95\x45\xda\x68\x6e\x55\x97\xa5\x31\x28\xbb\xa8\x0b\xab\xd6\x12\xe0\x27\x87\x3a\x68\x88\x64\x3c\xd1\x02\x83\x8c\xa4\x1a\xbf\x43\xff\x96\x01\xab\x88\x96\x73\xcf\xa4\x00\x45\x69\x10\x46\x90\x5a\x5c\x2d\x21\xd4\x3a\x27\xba\x53\xf4\xec\x89\x2f\xf6\x84\xaa\x70\x7d\x51\x97\x8f\x9e\x8d\x33\xf2\xee\x16\xb6\x2e\x54\x4d\x2d\xe1\x91\x8c\x15\x56\x17\x32\x56\xbb\xdb\x9d\x1f\x74\xaa\x40\x07\x2d\xd9\x9e\xd4\xc3\x19\x15\xec\x32\x1b\x64\x6b\x3b\x0c\x6e\x42\x3b\xf9\x62\x22\xbc\x09\xd5\x28\x11\xf0\x62\x59\x5e\x0c\xbb\x4e\xb5\xc3\x80\x3d\x6a\x1d\xb9\xb3\x99\xd0\x44\xf1\xb2\x80\xbc\xac\xfa\x95\x8b\xe6\xb3\xd3\x83\x6a\x9a\x80\x98\xe4\x1f\x8e\x98\xc6\xa3\xd3\xc6\x74\xde\xdc\x72\x04\xa3\xaa\xea\x04\x6e\x3a\xaa\x5a\x41\x4c\xcc\xb2\x23\x5a\x80\xb5\xeb\x84\xbe\xb0\x9a\x89\x82\x40\x53\xf5\x31\x40\x34\x47\xb7\x6d\x6c\xbe\x9a\xae\x23\x72\xdc\x7c\x14\xec\x56\xa7\x53\xc6\x8d\xf4\x1d\xe6\x0f\xfb\xf9\x0d\xb6\x27\xe7\x03\xe7\x56\x65\xec\x58\x7e\x4f\x97\x50\x50\x43\xc2\xb4\x38\x41\x28\x3f\xa2\x63\xf6\x24\x20\x8b\x85\x44\xac\x06\x10\x73\x80\xde\x15\x21\xe2\xbf\xd6\x9a\x48\x5e\x0c\xb3\x09\x79\xf1\xf2\x99\x2d\x8c\xc4\x9b\x10\x98\x9a\x84\x80\xbd\xdc\x6d\xf8\x62\x36\x2b\x3a\x45\x4a\x04\x95\x22\x90\x2e\x87\x92\x3b\x40\x97\x43\x71\x39\x70\x34\x25\xdb\x5c\x80\x6c\x39\xd4\x39\x03\x33\xe9\x21\x4d\xba\xa4\x49\xee\x21\xad\xa1\x24\x8b\x0e\x10\x2c\x87\x52\x7f\xdc\xd9\x71\x3a\x08\xb0\xd6\xe1\x7e\xba\x0b\xb7\x71\x74\x03\x8d\x55\xb7\x8a\x10\xc2\xc3\x50\x44\x30\x2b\xf7\x20\xe8\xf8\x2d\xa9\xb1\x27\xc2\x70\xe4\xf0\x6e\x7c\xa8\xe1\xab\xa1\x2e\x3a\xda\x9f\x1e\x7f\xc0\x58\x1e\x9d\xcc\x3e\x21\x8c\x65\x90\xa9\x38\x40\xaa\x1c\x8a\xf1\x20\x55\xd6\x70\x1b\x3e\x72\x8a\xe2\x0b\x57\x8b\x1e\x46\xac\xab\x4a\xde\xf1\x48\x84\xdd\x3d\x64\x01\x55\x70\x8f\x57\x55\xde\x5d\xfc\xe2\x92\x64\x73\xa9\x74\xba\x29\xdf\xa0\x2a\xf6\x49\xfa\x88\xba\xf9\x60\xb8\x4a\x96\x42\x53\xaa\xa0\x83\x4c\x39\xbc\x00\x8a\xcd\x7b\x53\xe2\x8b\x2f\x6b\x65\x9b\x7c\x44\xa8\xd8\x71\xd4\x51\xe5\xf9\xe0\x82\xd2\x8b\x67\xf0\x2a\xcb\x70\x71\x01\xed\x97\x23\x03\x4a\xb9\xa7\x66\xf1\x62\x2f\x3a\xcf\xb4\x0c\x4f\x5b\xc9\x77\x91\xe1\x41\xab\xac\x72\x8b\x85\x0a\xa9\x78\x08\x72\xe5\xd0\x16\xbf\x7e\xea\x1b\x9c\x63\x91\x2b\xed\x2a\x60\x95\x75\x4c\x7f\xaf\x14\xf0\xd9\x0b\x5f\x5a\x3b\x98\x6f\x24\x1c\xd0\x29\x87\x63\x4e\x3c\x4a\xcd\x3b\xe0\x51\x0e\xc5\x57\xe0\x28\x8f\x35\xd9\xf5\x0b\x6b\x67\x3f\x1c\x9d\x41\x1a\xfa\x97\x02\x2f\xb9\xff\x61\xa8\x55\x0a\xc4\x91\x5d\x5e\x36\x92\xeb\x2b\xc0\x97\xdc\xb5\x31\x10\x98\x96\x92\xdf\xaa\x0a\xc3\xdd\x3f\x58\x49\x76\xfb\x42\xcf\x9b\x6e\xe4\x44\xa4\xd4\x5f\x13\x48\xca\xa1\x70\xba\xd4\xf3\x48\xe5\x14\x80\x4d\x1e\xd3\xed\x09\xda\xe4\x50\xd0\x15\x6d\x32\x48\xe7\x1c\xab\x39\x43\x4c\x3b\xec\x6c\x64\x81\xee\x47\xfe\xa1\x71\xcb\xd1\x1b\x84\x61\x4a\x82\x85\x06\x38\x5c\xb5\xcd\xc2\xfe\xbf\x3d\x89\x8f\x23\xf4\xbe\x51\xb3\x17\x70\x91\x87\x46\xb3\x65\xb6\x4b\xcd\x4e\x2b\x99\x50\x7e\x25\xfd\x85\x2e\x2d\x21\x97\x67\x7e\xc6\x72\x41\x5a\x96\x3e\x38\xce\x16\x3a\x20\xd8\x5e\xb1\x52\x07\x84\x2e\x01\x1f\xb9\xfb\x4b\x09\x33\x69\xbb\xf3\xd7\x70\xbc\x4c\xca\x70\x15\x58\x1e\x34\x42\xa5\x90\x84\x8f\x9c\x76\x84\x9b\x44\x05\x97\x35\x3c\xa6\xcb\x6a\x3f\xfe\xa0\xeb\xd3\x63\x6a\xe3\x44\x61\x78\xa7\xbd\x66\xb6\x4d\x1b\x68\x86\x0a\x1e\x6b\x2a\xc3\xa0\x4e\x81\x44\x39\xc0\x56\x09\xc0\x27\x4b\xd1\x4c\x05\xfa\xe4\x5e\x5c\xba\x35\x73\x4a\x18\x87\xae\x33\x1a\x9a\x80\xa2\x1c\x4a\x1b\x20\x51\x16\x12\x23\x07\x48\x94\x87\x28\x9f\x01\x14\x65\x5d\x9e\x42\xa2\x36\xa5\x43\x0b\xfc\x8c\x2d\x1b\xfd\x41\xfb\x96\x69\x12\x5c\x77\xae\x28\xc1\x8c\x88\x95\x0a\x68\x36\xe9\x3c\xfa\x8c\x32\xea\x29\x89\xec\x2f\xd3\xc5\x0d\xa5\x14\x64\x99\x4e\x88\xf4\xcb\x01\x2c\xe5\x90\xfd\x2f\xb3\x72\x4b\x38\x97\xaa\xa8\x52\xc2\xca\x58\x0e\x9f\xe9\x94\x9b\x7c\xd1\x29\x14\xd9\xb5\xc4\x53\xa6\xb3\x5e\x44\x0e\xc9\x80\x17\x91\xda\x91\x40\xa8\x1c\x0a\x12\xeb\xcc\x03\x4a\x77\x4f\xb6\x06\xac\x09\xb4\xca\xba\x1c\x2b\x31\x9c\xb2\xd4\x95\xd7\x8d\x3e\x73\x26\xe0\x58\x40\x52\x0e\x43\xbd\x41\xa4\xdc\x4d\xd3\x02\x09\x84\xbc\x4d\x00\x92\xf2\x50\x87\x5d\x5e\x31\x6a\x63\x5b\x57\x76\x83\x19\xf4\xbe\x51\x23\xdb\xba\x24\x14\x48\x98\x8b\x6b\x45\x59\xcf\xba\x72\x63\x58\x19\xfb\x15\xdd\x0f\x58\xc8\x43\x55\x48\x58\xc8\x7e\xb8\x5f\x8d\x97\x0c\x37\x59\x6a\x95\xce\xe7\x33\x6d\x91\xba\x1e\x85\x47\xb7\x32\x8e\x34\x49\xa6\x4c\x06\xe9\x01\x31\x9d\x8f\xce\x61\x09\xe6\xe8\xfc\x10\xed\x98\xd4\xc4\xe4\xd4\x1a\x1b\x05\x70\x0c\x92\xad\xc6\x32\xc0\x41\x83\x26\x40\x8d\xbb\x2e\x7a\xfc\xc9\x5e\x51\x2c\x96\x1c\xcb\xa1\x70\xe7\x37\xf5\x5e\x05\xce\x71\x90\x7e\x3d\xd6\x97\xad\xf8\xc7\x63\x71\xa6\xe8\xcb\x2d\xb0\xa7\x45\x6c\x47\xf0\x2a\xe3\x84\x51\x55\x8d\x87\x00\x3d\x56\xad\x77\xe0\x3c\x0e\x29\x08\xc8\x8e\xbb\x5b\x7e\x64\x42\x58\xff\x60\x0b\x84\x35\xb1\x05\xd8\x64\x40\x36\x56\x72\x1f\xc5\xa9\x0f\xe7\x61\x01\x62\x11\xdd\xec\x62\x39\x86\x1e\xa0\xe7\x81\xeb\x39\x8c\xe7\x44\x0b\x74\x39\x4f\x61\xfe\xf5\x46\x12\xe4\xb1\x93\xbe\x2e\x4e\xb4\x40\x4f\x1d\x80\x8f\x45\xb7\xc8\xf3\x10\x18\xd8\xe6\x60\x14\xc3\xc2\x6c\x0c\x76\xcf\xa9\xd2\xa7\x79\x19\xbc\xc7\x24\x6a\xa7\xcc\x50\xeb\xed\x59\xb2\x83\x54\x5b\x94\x7c\x38\x9b\xe7\x3f\x03\x28\xcf\xee\xde\xc3\xf2\xf0\xcf\x61\x09\x37\x2f\xec\xef\x2c\xa4\x0d\x41\x54\x06\x21\xb2\x0c\xf8\x44\x82\x42\x6a\x3e\x05\xea\xf1\x30\xe3\xc2\x49\x02\x82\x68\xfe\x6e\xde\x67\x0a\x9b\x8c\x20\x6b\x92\x8f\xe6\x1f\x2a\xee\x74\xa3\x7a\x34\xe9\x46\xe5\x32\x62\x59\x29\x81\x9a\x9c\xad\xd3\x0b\xc4\x5e\xfe\x24\x7c\xa7\x19\xee\xc8\x30\x19\xe2\x40\x16\x0d\xc9\xa7\x2c\x76\xf8\x47\xf5\x0f\x3a\x93\xac\x14\xb1\x1a\xf0\xc7\x91\x7b\xcf\x90\x88\x23\x8b\xb3\x77\xd1\xb4\xc0\x7e\xdc\x47\x92\x01\x37\xf7\x2e\x72\xb2\x80\x8f\x1d\xec\xb9\x00\xe5\x51\x44\xf2\x38\x51\x13\xa3\xfb\x3b\xb4\x85\xcd\x7e\xf6\xec\x09\xdd\x22\x7b\x81\x7c\x06\x58\xc8\xea\xd5\xc8\xa9\x2b\xac\xf6\xc8\xd3\x54\x06\x06\x67\x9c\xa9\x32\xa2\xa6\x9c\xdd\x1d\xe4\x57\xb7\x45\x6c\xe4\x71\x20\x56\xa6\x73\x19\xcf\x04\x43\x1a\x87\x7f\x92\x77\x6f\x1e\xf6\x04\x6d\x30\x77\xd3\xc8\xd4\x80\x3c\x4b\xdb\x8b\x2f\xe9\x6d\xc5\x73\xf6\xca\x12\xde\x63\x5b\x13\xf6\xe8\xf0\x77\x8e\x1d\x54\xf8\x94\x57\x7b\x56\xe0\xd5\xc6\x4e\x82\x27\x79\xc8\x56\xce\x89\xdb\x85\xbd\x10\xc9\x0a\x92\x78\xc2\xa9\x65\xbb\x67\x5e\x71\x3a\x37\x13\x97\x26\x77\xf1\xb4\x31\x3f\x7a\xed\x1d\x83\x9e\x1e\x72\xb7\xab\x7a\xa1\x06\x6c\x70\x23\x47\xee\x9d\x70\x61\x9c\x27\xdc\x5a\x73\x87\x10\xc9\x91\x7b\x5a\xd8\x48\x7d\x33\x4f\x01\x2f\xec\x21\xd9\x88\x40\x67\x8f\x44\x8d\xd4\xca\x7d\x46\x3a\x57\xf1\xfc\xe0\xcf\x6b\xd3\x9e\x2d\x27\x33\xf9\xac\x87\x0b\x4f\x20\xef\x9f\x45\x96\x2c\x9a\xc2\x84\x96\x4c\x22\x06\xcf\x05\xe6\x2b\x40\x93\xdc\x9d\xb2\x2a\x79\x84\xab\x47\xf6\xa2\x70\xfe\x0d\x04\xd1\x14\x7c\x12\x08\x32\xec\xae\xf6\xe2\xee\xb3\xbd\x72\x3b\xc3\x8d\x93\x1e\xca\x8c\xdd\x76\x5c\xb9\x0e\x57\x98\x84\x45\x60\xd1\xc4\x79\x7a\xc8\xfd\x9e\xd3\xe3\x19\x39\x6d\xd9\xf9\x47\x8d\xad\xe1\x50\x4f\xc3\xc5\x19\x05\x21\x96\x0a\x0e\x62\x54\x46\xce\xc1\x99\x7d\xa2\x83\x40\x66\x2c\xf7\x2c\x0e\xb7\x86\xa0\x80\x58\xb9\x3f\xf2\x25\x27\x84\xd6\x93\x33\xa3\x8c\x01\x59\x59\xb5\xa7\x9d\x62\x66\x68\x53\x3e\x61\xd3\x8a\x9e\x20\x56\x86\x62\x37\x80\x95\xf5\xe7\x41\x22\xd5\xc2\x40\x17\x01\xbc\x72\x17\xa6\x23\xd8\xa0\x49\x28\x19\x20\x56\xee\x3f\xfc\x0a\xd2\xdf\xfd\x23\xfc\x83\x4e\xdd\x49\x50\x98\x4f\x8d\xd0\xda\xb0\xc1\xac\x2c\xe3\x4f\x58\x8e\x10\xd0\x52\x03\x37\x78\x96\x63\x84\x9d\x21\x22\xd5\x4d\xf6\xa4\xca\x41\x9b\x28\xd2\x4b\x77\x0f\x30\x2b\xeb\x72\x2c\x5b\xc6\x68\x7a\xa2\x9e\x4f\xce\x16\x93\xad\x54\x11\x96\x86\xd6\x48\x9d\xd1\x94\x7f\x2e\x02\x01\x2a\x8b\x4c\xe1\x71\x72\x8b\x6b\xf8\x3f\x60\x96\x69\xa4\x07\xcc\x72\xe4\x3a\x13\xb0\x69\xca\xa1\x13\xec\x0c\xd3\xbd\x9d\xa4\xad\x4e\xc6\xf3\x72\x35\x23\x8b\x56\x52\x91\x45\x10\x8b\x32\x64\xe9\xa4\x5f\x58\xa6\xbd\x03\xb2\xb2\x46\xf7\x59\x7a\xc7\x47\x9f\xa7\xdd\xcd\x4d\xe6\x24\x93\xfc\x9d\x9f\x7b\x98\xb9\xf8\x94\xbe\xdc\x60\x9f\xd2\xd7\xe1\x0b\x31\x2b\xf2\x83\xcf\x7e\xd0\x27\xac\xe0\x7a\x46\x9f\x66\x47\x72\x56\x3f\xad\x26\x1e\x0d\x54\xee\xe5\xa9\xd4\xf0\xad\xd9\xfd\x22\x85\xa1\x39\xa9\x2e\x53\x57\x43\x68\x80\xb5\x3c\x40\x31\x09\x60\x2d\xab\x71\xe0\x97\x57\xbe\x6e\x3c\x30\x2e\x77\xff\xac\x69\x32\x97\x96\xd0\xac\xc9\x26\xb8\x4c\x89\xa4\x35\xff\x52\xf8\xc9\xf6\x64\x5e\x61\xc5\x2f\x5e\x83\x85\xe7\xcf\x7a\x29\x81\x24\x64\xfa\x26\xb0\x30\xf7\x1f\xd4\x7b\xb8\x48\x34\x8e\x8c\x63\x56\xa8\xeb\xb0\x23\x7e\x63\x42\xb2\xe0\xf9\xe4\xf7\x83\xe7\x0b\xe3\xa3\x95\xe6\x44\xf9\x11\xb9\x33\xb2\xb0\xc2\x4f\xf7\x25\x09\x37\x4d\x14\xfb\xc4\x24\x14\xd5\x25\x9f\xed\x06\xa3\x23\x63\xa1\xe9\x67\x00\xc5\x1c\xa6\xdd\xb9\xcc\xc3\xc0\x3e\x13\x13\x33\x5c\xfa\xc4\xc4\xf4\x1a\x00\x18\xcc\x61\xba\xa5\xab\x2a\x55\x42\x1c\x2e\x95\x7d\x36\xd1\x65\xb2\x24\x2f\x14\x2e\xf2\x23\x99\x14\x07\xb4\xcb\x61\xbe\x9a\xcb\xd0\x4c\x2f\x3d\xae\x96\x3b\x8a\x36\x5a\x8a\xc7\xfe\x23\x49\x80\xc2\x82\x77\x39\xcc\xb5\x01\xc6\xe5\x30\xad\xcd\xe5\x3d\xae\x29\x2f\x00\xb9\x1c\x33\xab\xfa\x78\x66\x50\x79\xa7\xcb\xe9\x01\xd8\x72\x37\x48\x55\xba\x13\x3b\xeb\x3d\x37\xba\x7f\x30\x6f\xb0\xce\xcb\xf4\xd3\x88\x05\x57\xd7\xb2\x51\x7c\x61\xfd\x20\x85\x57\x77\x42\xfd\x9d\xe0\x0a\x88\xdc\x25\x7c\x96\xe7\xea\xe2\x16\xd8\x7c\x23\x97\xba\xbd\xf7\x2d\x89\x7e\x09\xf7\x11\xf0\x72\x6a\x16\xb9\xb0\x24\xcf\xbf\x83\x3b\x00\xc3\x1c\xe6\x19\x11\x0c\x73\xe9\x04\x0e\x00\xe6\x98\x0e\x31\xa5\x09\x6a\x9e\x26\x39\xf5\x99\xec\x0b\x0e\x0a\x55\xdf\x9c\x4a\x17\x01\x33\x91\x3b\x5a\x28\x4c\x0f\x8d\x41\xa2\xe1\x70\x35\x45\x7b\xeb\x77\xa9\xea\x87\x93\x82\x29\xda\x4c\x23\x57\x0a\x1d\x90\xbc\xcb\x90\x51\x1b\xc1\xfd\xd8\x5c\x1c\x57\xe4\x4a\xd1\x08\x32\x87\xe1\x64\x89\x9b\xe9\xc5\xd3\xa5\x2f\x72\x38\x8f\x5b\x6d\x4f\x9f\xd1\x2b\xef\x90\xdd\xca\xe1\x8c\x58\x3c\xb7\x89\xf5\xb2\x4d\x1c\x6d\x0a\x1a\xc8\xc1\x57\x46\xe2\xf0\x11\x21\xa3\xe6\x69\x00\xc9\x72\xef\x0c\xaa\x5a\x4a\x8f\x18\x36\xae\x95\x02\x2e\x75\x2d\x89\x04\x6b\x00\xa6\x5c\xd1\x04\x09\xa6\xdc\x6e\x64\xf0\xa2\xcd\x01\x5e\x71\x93\xb4\xda\x54\x02\xb7\xb9\xc5\xa4\x57\xb7\xc9\x3a\xbd\xa6\x02\x6f\x6e\x18\x3b\x7f\x7b\x90\x10\x8c\x12\x56\x4e\x22\x03\xac\x5c\x3d\xac\xb6\x79\x3e\x61\x7f\x37\xa2\xba\x81\xf4\x77\xcb\xbd\x55\x78\x51\xb1\xa1\x71\x6f\x7a\xf4\x36\x14\x87\xce\xf0\xe3\xdb\x33\xf5\x7f\x84\xbd\x4b\xae\x3f\xbb\xaf\x5f\xd7\xbf\xa3\x38\x33\x48\x95\xde\x02\x0e\xfe\x9d\xb4\x93\x39\xd4\x4b\x81\x1b\xb6\x2f\x6e\xec\xf9\x07\x5c\x4b\x7b\x1f\xdb\x49\xf0\x6b\x6c\xd4\xfe\xb2\xa4\xd2\x9b\xa4\x28\x8a\x9f\xe2\x97\x96\xe5\x91\x88\x0b\xcf\x5e\x4c\x7c\x3c\xf5\xf1\xc0\xeb\xc1\xc1\x70\x0e\x06\xf7\xd9\x8b\xaa\x9a\xac\x92\x85\xc2\xbd\xd6\x2c\x53\x7c\xea\xee\x20\x4a\xac\x4e\xa7\x6e\xb2\xa8\xa3\x11\xdf\x1e\xad\x6c\x1e\x92\x3d\xba\x18\x6a\x75\x05\x7e\x6e\x5b\x94\x1e\x74\x75\xaf\xc3\x3d\xaa\xe4\x9e\x40\x3d\x4d\x17\xb4\xec\x9b\x69\xf1\xf4\x23\xf7\xd3\x0c\x2d\xf1\xa0\xa0\x7b\x4e\x2d\x12\x9d\xf7\xaf\x44\xa2\x1b\xf2\x3f\x50\xe5\xa2\x55\x54\x11\xef\x08\x6f\x39\x3d\x06\x27\xb3\x51\x9d\xb1\x85\x0b\x88\x30\x37\x81\x81\x1a\x20\xcc\x35\xdd\x37\x1f\xd1\xdc\x3d\x68\x02\x48\xae\x79\x97\xe6\x19\xf6\x15\x3d\xc2\x45\x68\x2f\x5c\x3c\x58\xa9\x3c\xc5\x79\xb6\x2a\x8d\xf2\xf6\x10\xbc\x73\xcf\x1e\x1d\x23\x3c\x59\x01\x2f\xee\x1c\xf2\xfa\x47\x2f\x09\x05\x02\xe8\x71\x4d\xa7\x52\x40\xe2\x9a\x8e\x77\x8f\xa1\x3c\xe5\xdc\x8f\x37\xa1\x65\xdd\x8f\x37\xa1\x3d\x5c\x7a\x58\x09\x7a\xbe\x81\x25\x97\x5d\x85\x42\xc9\x65\x4d\x4a\x60\xc9\x65\xf5\x3a\xa0\xe4\x92\x8c\x0d\x28\xb9\xa4\x96\x04\x94\x5c\x74\x27\x45\x60\xb3\x72\x57\x0d\x64\xdc\x99\xfb\x9f\xc0\x77\xc7\x73\xe9\x8a\x4d\xf7\x5e\xf6\x10\xbd\x65\x98\x4f\x67\x9f\xea\xb4\x9d\xc5\x9d\x35\x5d\xa2\xc4\x9c\xd3\xd5\xe4\x41\x9b\x36\xb4\x15\xf8\x73\x79\xaf\x66\x4e\x88\x3c\xa6\x78\xf0\x71\xd4\x03\xe5\xb9\xb1\xe1\x59\x71\xfc\xe8\x47\x37\xaf\x73\x18\x75\x63\x63\xd1\x0d\x38\x1c\x58\x74\xd9\x63\x62\xa0\xe8\xf2\xb9\xe9\xd6\xc8\xdc\x60\xb9\x38\x9d\x1f\x0d\xa1\x94\xcc\xdd\xb5\x0e\xaf\x7a\x3c\x50\x72\x76\x85\xba\x9d\x8d\x97\x04\xee\x5c\xd9\x03\xf1\x6c\x3e\xe9\x0b\xd7\xc2\x30\x87\x97\x12\x28\x8d\x88\x67\x9a\x28\x9e\xad\x79\x27\x5f\x08\xe7\x43\xe3\x9e\x3d\xd5\xa8\x2b\x0a\xb5\x27\x9a\x1b\xa8\xce\x31\x15\xa8\x4e\xa3\xd2\xc3\x75\x37\x23\xa1\x01\x5a\x77\xce\x61\xaa\x37\x33\xc0\xf4\xb7\x4e\x92\x8a\xe9\xc7\xe8\x67\x0a\x76\xf1\xe8\xea\xe9\x2a\x41\xd5\xd6\xb7\xe6\x01\x7b\xd6\xd3\xd8\x67\xbb\x8b\xf8\x59\x19\xc2\x7e\x41\xd4\x44\xd4\x68\xe0\xe8\xb2\x97\xda\x9e\x4f\x2b\xdd\xfe\xc1\xc2\x30\x03\xf1\x50\xf4\xf1\x79\xd0\xb5\xf5\x10\x02\xb3\x2e\xbb\xf9\x78\x74\xfe\xf7\x2c\xf1\x31\xf0\x99\x03\xbc\x95\x6d\x44\xc2\x83\xb2\x7d\xee\x1c\x76\x08\x8a\xc7\xb3\xb8\x9a\xe1\x1c\xf5\xda\x9d\xfa\xcc\xe3\xb5\x3b\x4f\x38\x41\xb6\x1b\x1e\x18\x3c\x5b\xdb\x96\x5b\x1b\x8d\x74\x0f\xc7\xf2\x48\xb5\xfa\x31\x0f\xe6\xfd\x9f\xa1\x91\x91\x1a\xf7\xc4\xf3\xcb\x67\xeb\xd8\x88\xf2\xf7\x50\x6b\x65\x37\x2f\xbc\xdd\x34\xa4\xc5\xab\xce\xdc\xfd\x9f\x09\xcd\xfa\x7e\x8f\xcd\x12\xfc\xc1\x70\x74\x73\xb3\xc2\xe0\xc9\xe0\xdb\x35\xbd\x05\x5e\xdd\x24\x55\x8e\x00\xbb\x6b\x3a\x1b\xbc\x6a\xcf\x30\xbc\x57\xd3\x61\xf2\x7f\x46\x80\xf9\x02\xb8\x5d\xeb\xb0\xaf\x57\x45\x9a\x4d\xc3\x7b\xee\x3e\xf0\x43\x9e\x30\x54\x73\xef\x21\xa0\x6c\xfc\xc7\xdd\xa5\x6d\x94\x30\x8f\x8c\x5f\xe5\x01\xcb\x1b\x94\xb0\xd6\x87\xf4\x3d\xd9\x7c\xc1\xc5\x4e\xba\xf6\xd5\xaf\x1c\xf0\xe7\xf1\x36\xa7\x3d\x7d\xe3\xa9\xbe\x66\x20\xe0\xc3\x92\xdb\x55\xd0\xc3\x9a\xa7\x9e\x22\x86\x79\x9e\xf9\x12\x48\x5a\xab\x39\x88\x61\xdb\x55\xe6\x45\xab\xf2\x9c\x13\xf8\xaf\xa8\xeb\x1f\xf9\x1d\xd8\x60\xad\xb3\xd0\xde\xb1\xa7\x0f\x45\x1a\xc8\xf2\x84\xbf\x00\x0d\x96\x9d\x18\xef\xd8\x93\x97\xca\xe0\x88\x6e\x1c\x45\xc1\xc0\xea\x09\xff\x7b\xb7\xe0\x40\x8b\xd8\x68\x60\x6a\xa5\xef\xd4\x80\x0b\xdb\x03\xf4\xab\xf5\xe1\x0b\x25\x98\x9d\xba\x55\x20\x56\xe4\xeb\x79\x85\x07\xcb\x20\x77\xed\x68\x0a\x22\x77\x55\x30\x31\xc6\xcb\x31\xbe\xf6\x04\xb0\xba\x22\x3b\xb5\x37\xc0\x85\xfe\xa1\xa0\x72\x85\xf0\x26\xcb\x2d\x3b\x41\x91\x00\x7f\x2b\xc9\xb1\x80\xdc\x8a\x2c\xbe\xe8\xfe\xa0\x48\x19\xb2\xc7\xc0\x62\x6b\x79\x74\x27\xb6\x56\xf2\x88\xf7\xbd\x77\xd8\x7a\xb3\x20\x17\x58\xbb\xef\xb3\x9b\x42\x57\x62\xe9\xf0\x70\xf5\x7d\x76\x89\x74\xe5\xb3\xdb\xc5\xb7\x9e\x5d\x3c\x5d\xf9\x0c\x57\x83\x1f\x33\x66\xa2\x63\x8e\x5b\x9d\x67\x26\x20\x6f\x35\x4f\xc9\x5e\xef\x42\x81\x15\x32\x40\xe1\x6a\x9e\x28\xbe\x46\xcf\xf0\xa0\xe1\x15\xf4\xd3\x43\xe9\x77\x1f\x8d\x14\x93\xb1\x6c\xa6\xa9\xb4\xdc\xba\x6c\xc4\xdb\x72\x13\xf2\xca\x58\x5d\x1c\xaf\x35\xa1\x25\xd8\x2d\x94\x95\x2f\x0e\xe7\x5a\x77\xc1\xd8\x4a\xee\xe0\x81\xd5\x6a\x1a\x5e\x41\xd5\x8a\xda\x92\x59\x7f\x73\x0f\xbe\xdf\xcf\x25\x8b\x32\xf0\x0a\xf7\xed\x24\xf8\xf6\xd2\xa2\xe5\x1f\x31\xda\xd1\x12\x5e\xad\x12\x9e\xa1\xbf\x0b\xd1\x96\x7c\x51\xfc\x94\x3f\xc0\x0a\x82\xe5\xbe\x1c\xeb\x6b\x6c\x7d\x3d\x3b\x71\xff\xf2\x2e\xab\x1e\xed\xfe\x36\xcf\x83\x31\x7f\x87\xa2\x26\xf9\x46\x84\x91\xce\xff\x7b\x06\x4e\x7e\x3c\xa6\xca\xfc\x20\xbc\x08\xd3\x1c\xf4\xab\xa6\xad\xe8\x13\xaf\xd3\xf3\x8f\xcf\x33\x0f\x37\x1d\xdf\xb9\x0b\x31\x19\x55\x61\xa0\x84\xaf\xaa\x27\x5c\x1a\x98\xaa\x18\x1c\x8a\xf7\xe0\x5e\xc3\xf8\x06\xaa\x72\x0f\xf2\x11\xde\x42\xfd\xfc\xe3\x36\x92\x46\x0e\x40\xa7\x22\xc7\xc9\x0f\x01\x06\x10\x2b\x1f\x4e\xd8\x9a\x2c\x44\x9d\xd2\x6c\x23\xea\xd4\x70\xd3\xf1\xb9\x1b\x71\x3f\x01\xa4\x54\x54\x85\xda\xe3\x46\xa6\x01\x09\xb8\xa8\xac\xc7\x30\xa0\x50\xcd\xfd\x3a\x98\x50\xcd\xbd\xde\xc7\x0e\xdd\x6d\x35\xf0\x50\x4d\xa3\x88\xf0\x50\xf5\xec\x26\x62\xa4\x4e\x0b\x70\x97\x8a\x84\xdf\x60\x51\x6d\x7f\x4a\x2e\x52\xff\xc8\x07\x81\x95\x6a\x8a\xa8\xcf\x78\x4a\x6e\x93\x80\x92\x6a\xea\xdb\x1f\xbe\x63\x6e\x3c\x3f\xf7\x10\x6d\xff\x50\x68\x54\x53\x71\xfa\x8c\x3c\xf8\x38\x9d\x57\xf5\x03\x4a\x2a\x12\xf1\x59\x4f\xe7\xdd\x4c\x7d\xb8\x6b\xbb\xcf\xf9\x38\x9c\x77\x47\x0a\x7c\x54\xe4\x30\x91\xd3\x9c\x7d\xca\xb7\x37\x11\x70\x54\x81\xa2\x86\x5b\x2b\x81\xa2\x2a\x30\x3a\xe3\xeb\xbb\x48\x92\xe1\x0c\xa6\x0e\xf7\x11\xd9\xc2\x1b\xe4\x22\x48\xcd\xd1\xcc\xde\x48\x44\x1d\xdd\xa7\x7b\xbb\xfb\x73\x6f\xae\x85\xe3\xf3\x32\x13\x98\x3c\x03\x6c\xa9\x18\x6c\x0b\x61\x5c\x9c\xa9\xc8\x16\x75\xb5\x0f\x4b\xbf\x3a\xc7\xc7\x8e\x44\x65\xe4\xe3\xce\xaf\x0a\xcf\x67\x44\xc4\xd1\x7c\xc1\xc8\x3b\xb7\x62\x7b\xd2\x54\x32\x3e\x7d\xb8\xe1\xd8\x9f\x71\x90\x07\xa2\x04\x68\xa8\xa6\xdc\xfe\x8c\xdf\x04\x1e\xd0\xf8\x38\x50\x57\xd4\x7f\xd3\x6a\xd0\x07\x73\xb7\xdb\x44\xf2\x55\x04\xc6\x87\x54\x52\x5c\x09\x19\x35\x85\x13\xf9\xe6\x1e\x74\x0b\x79\xfd\xe1\xc7\xd4\x52\xac\x17\x56\x7c\x85\xcf\x67\x88\x64\x65\xf4\x77\xed\x1e\xa5\x2e\xd7\x6e\x2e\x1f\x63\xaf\xa1\xb8\xfb\x42\x78\x25\xfd\x2e\x3f\x0e\xd5\x77\x73\x2f\xe7\x39\x8c\xee\x33\x3c\x22\x50\x48\xe3\x53\xa8\x59\x47\x7c\xd3\xe4\xdd\xdf\x6d\x45\xa4\xbb\xd5\x44\x77\xfa\x6e\xd5\xe5\x9d\x0a\xd7\x31\xcf\x92\xbe\x7b\xc7\xe1\xa5\x26\xb7\x5b\x36\x78\xee\x87\x18\x1b\x6c\x14\xbe\x10\x63\xdd\x33\xce\xef\x91\x6f\x39\x86\x00\x54\xcb\x59\x3f\xfc\xc4\x65\xd8\xdf\x16\x62\x8e\x21\x1b\x85\xcd\x40\x91\x61\x46\x28\xfc\x10\x61\x9b\x65\x62\x77\x57\x1e\x7d\xde\x9f\x3a\x2c\x00\x83\x8f\x85\xbd\x2a\xe1\xa8\x1f\x1f\x5b\x83\x81\x30\xfd\xf6\x41\x3f\xba\xe1\x87\x38\xda\x9c\x50\x3d\x5f\x37\x91\x8f\x38\x4f\x46\x25\xff\x42\x85\xcf\xda\x0b\x3f\xe5\x91\x8c\x50\x41\x33\xe4\xb0\x9f\x5f\xa2\x0d\x9e\xd9\x7b\xa0\xf6\x69\x0b\xd7\x99\xe4\x33\x62\x93\x1e\x27\xdf\xda\x9d\x43\x15\xd7\xee\x04\x4a\xd1\xc5\xdb\xd2\x0d\x3f\x0c\x6c\xd4\xf8\x96\x4e\xd6\x8e\xf9\xb2\x48\x3a\x5a\xe9\x54\xa5\x1b\x3c\xcc\x32\x18\x18\xb6\x22\xcb\xbb\xb8\x6e\xf1\x97\x90\x00\xed\x8f\x00\x6d\x63\xa1\xba\xeb\x34\xbd\x70\x0b\x1f\xfb\x7f\x27\x2c\x4c\x67\x1d\x7b\x8d\x4c\x7e\x70\xe9\x1c\x76\xb0\x50\xe3\xe5\x7e\x0b\x2b\xb8\xcb\x65\x71\x5d\x49\xee\xb3\xd0\xca\xe5\x25\x2b\x84\x5b\xb6\x4f\xd6\x69\x69\xd4\x57\xc8\x69\x5d\x4e\xd6\xa9\xe9\x09\x3d\x7e\xe9\xe2\xed\x11\xdb\x3a\x59\x9e\xcd\x17\xf4\x0f\x6b\x78\x9d\x16\x6d\x1a\xf4\x8e\xd3\xe2\xf4\x79\xdc\x9f\x45\x7c\x32\x73\x57\x52\xca\x31\xa5\x57\x92\x1d\x74\xdf\x30\x75\x9b\x2f\x76\x1f\x50\x86\x6e\x6f\x3a\x9d\x2c\xa3\x46\x15\x5f\x5c\x60\x48\x53\x29\x63\x72\x68\x5b\x59\x49\xd9\xc0\x42\x5d\x06\x48\x3c\x77\x16\x67\x8d\x63\x95\x0c\x8d\x4c\x89\xd9\xbe\xa2\x8c\xbc\xc3\xf5\xd0\x89\x79\xd7\xd1\x54\x2a\x89\xe8\x56\xcb\xe8\x87\xcd\x22\x33\xe7\x91\x4c\x94\x95\xed\x2c\xb3\xcb\xcb\xba\x1f\xb6\xe7\x28\x1c\x03\xfb\xee\xdd\xbc\x38\x62\xa5\x1b\x74\x0d\xd7\xd3\x6c\xe9\x1b\xde\xf6\x0f\x86\xd6\x79\x21\x3c\xb5\x3e\xbd\x1b\xe3\x6e\x67\x67\x6c\x59\x08\x0b\x07\x80\xdd\x0b\x65\xf7\x28\x95\x52\xdc\xdb\xbb\xfa\x8c\x7b\x04\xb0\x14\xf1\x8e\x47\x61\x2f\x8c\xae\xb0\x8a\x95\xf5\xff\x65\x9d\xc8\x50\x95\x76\xce\x98\xaa\xeb\x14\xbc\x6f\xe9\x27\x3e\xec\x2a\xee\x5c\xed\x4e\xf0\x9c\x5f\xcb\x15\xd8\x79\x6d\x37\x03\x21\xae\x55\x44\xe4\x3c\x77\x5f\xcb\x5d\xa0\x3e\x31\x6b\xca\xa8\x29\x82\x10\x10\x9e\x4c\xaf\x2d\x19\x9c\xd4\x6e\x6b\x5c\x10\x5c\x13\xda\x7d\xcb\xf1\x2e\xa0\xce\x63\x23\xb7\x69\x34\x5b\xd7\xae\xac\x3f\xf6\x20\xf3\xdd\x10\x1f\xc5\x30\xf7\x60\xba\x15\x77\x5e\x40\xb7\xb5\x9f\x0c\x20\xb7\x39\xd7\x2f\x8b\xa3\x11\x9e\xe8\xa2\xc4\x2d\x6e\x12\x79\xa8\x0a\xa2\x5b\x36\x6a\xe6\xba\x77\x35\xcc\x40\x37\xd9\x6a\x23\x3b\x78\x46\xbd\xb8\x61\xa4\xe2\xb3\x30\x42\x1d\x3b\x03\xd6\x03\x97\xa2\x51\x01\x3d\x44\x07\xde\x2d\x01\xd4\x37\x36\xba\x9b\xee\x38\xa2\xbb\x0d\x2d\x6c\x8b\x18\x4a\xa2\x14\xad\xa7\x10\x82\x87\xdc\x6c\x8c\xb4\xc6\xac\x47\x8d\xd3\x7a\xb0\x15\x2a\x1e\x65\x2f\xe3\x42\xf4\xfd\x5d\xc5\x74\xfb\xa3\x5b\xcb\x52\xb2\x68\xb3\x13\x2e\x4e\x79\xb5\xde\x5d\x4f\x3e\xee\x4e\xc9\x49\xe2\x35\x5d\xfd\x6d\x96\xde\xcf\x7d\xa7\x82\xab\xa1\xb9\xad\x6d\x8e\xda\xa9\x60\x8f\xec\xb1\x81\x8e\x8b\xf1\xa4\xc7\x38\x97\x55\x64\x01\x0f\x17\xdf\x65\x50\xf6\x2e\xc8\xce\x27\x86\x84\xd6\x25\xa0\xe2\x4e\x23\xa1\x00\x15\x17\x33\xdc\x44\x5c\x35\x77\x6a\x10\x42\x62\xb0\xdf\x04\x36\x2e\x7b\x78\xbf\x34\x28\x9d\xa6\xdf\x3c\xd1\x0c\xcc\x13\xb6\xb1\xc0\xc9\xed\x88\x08\x6b\x1b\x97\xac\x13\xde\x67\x83\x1d\xde\x5a\xbb\x79\xa6\xda\x53\x94\x4f\x85\x88\xcb\x6e\x69\x17\x6e\x69\x1e\xd9\x2e\xf1\x6c\xb4\x8b\x2d\x30\x6c\x34\x93\xaf\xb5\x67\x4a\xfb\xb7\xbf\x27\xa8\x73\x89\x05\x3c\x41\x9d\x4b\x6c\x8d\xa6\xa8\x73\x15\x5b\xdd\x04\x75\x2e\x83\x65\x37\x41\x9d\x8b\xb5\x62\x6e\x3a\x2a\x76\xaa\x13\xd8\xb9\x13\x36\x3d\x8f\x1d\x5e\xbf\x98\xfb\xa6\x52\x85\xff\xdd\x96\x05\x0f\x9c\xa0\xcb\x35\xe0\x21\x27\xe0\x72\x8d\xc5\x32\xc1\x96\xcb\x49\x3a\x31\xa3\x00\xe8\x9f\x40\xcb\xb5\x31\xc9\x4b\xc8\xa8\x63\xff\xcf\x91\xb2\x85\x29\xdc\xa6\xff\x37\xbe\x9f\xf9\x1f\x9c\xaf\x9d\xde\xb5\xd5\xa8\xea\x89\x44\xa9\xfe\x7f\xd1\x4b\x26\x72\x37\x39\x7c\x81\xef\x58\xcc\xd9\x09\xde\x5c\x03\xa7\x6f\x1e\x38\xb1\xa1\x6f\xcf\x03\x27\x36\x36\x54\x53\x18\xba\x69\x87\xe1\xc2\xc6\xd1\xc5\x3c\x12\xa1\xa5\x8b\xf4\x4e\x1a\xfa\x2e\xb9\xd3\x98\xbe\x50\x62\x55\x7f\x80\x06\x35\xe8\x0b\x11\x8b\x99\xd6\xf3\xc0\xe7\x3b\xdb\x06\x2e\xf0\x72\xc3\x66\x82\x47\xd7\xd8\x11\x4f\xe0\xe8\x1a\xa7\xc9\x53\x38\xba\x81\x79\x71\x1e\xd9\xb8\xc3\xd4\x09\x71\x85\x5f\xe2\x04\x80\x2e\x17\x07\x3d\x3b\x22\x66\x96\xe9\x77\x32\x00\x4c\x4c\xe8\xdc\x79\x70\x1e\xdc\x9c\x32\xde\xea\xe5\x36\xe0\x04\x7e\x2e\x5a\xe4\x0f\x7c\x7a\xac\xab\xae\x68\xd6\x15\x41\x34\x4f\xba\x80\x13\xad\xb1\x4b\xe0\x62\x90\x03\x5a\x14\xe6\xd6\x09\xa1\x84\xdb\xc2\x3c\x70\x50\x23\x12\xd1\x3c\x2a\x13\xf4\x24\x0d\xae\x67\x20\x10\xcd\x03\x29\xb4\x2b\xc1\xb1\x30\x58\x8b\x53\x7c\x3b\xc0\x4e\xe7\x11\x5b\xcc\x5e\xac\x90\xc0\xae\xc3\x71\xc0\xf1\x0c\x55\x7e\x1e\x55\xae\xd5\x19\xf5\x6a\xcf\xfc\x09\x9e\x63\x0a\x8b\x97\x9d\xc8\x9c\x73\x75\x17\x5d\x93\xa3\x39\xab\x75\x4a\xb3\x8e\x0d\x80\x55\xc7\x42\x83\x27\x67\x7c\xf3\x68\x78\x20\x65\x33\x50\x79\x27\x9a\x51\xa9\x4e\xff\x57\xd3\xb6\x25\xc0\xe8\x8d\xfd\x02\xd4\x6b\xa7\x04\x47\xca\x9c\x6d\xce\x43\xff\xf1\x5d\x34\x7b\xd5\x99\x28\xa1\xbb\xc6\x27\xad\xc5\x67\xbc\x38\x48\xec\x55\x67\x92\x4e\x78\x19\xe7\x75\x07\xee\x34\x4b\x77\x93\x35\x7d\x71\x31\x00\xbe\x20\xca\x88\x0b\x8a\xd3\xe5\x99\xa8\x2a\x97\x8f\x8b\x8b\x8b\x03\x65\xe2\x74\x4e\x10\xf5\x1a\x57\x7b\xe6\x31\xac\x1d\x95\x18\xf9\x5f\x7f\x55\xe2\x3c\xcc\x43\x9b\x69\x35\xaf\x2c\xd2\x0e\x73\x97\x6b\x25\xbc\xb8\xbc\x6b\xc1\x81\xdc\x74\xc9\xb2\xe3\x05\xd5\x6c\x1e\x63\x0f\x3d\x1d\x30\x64\x53\x76\xa5\xa0\x40\xcd\x99\x36\xe8\xbf\x4c\x97\xe9\xdc\xd6\x7d\x11\x9b\xe1\x3c\x1c\xd2\x6d\x70\xb5\x74\x61\x68\x4f\xd7\x8b\xb1\xad\x36\xc7\xf4\x72\xf3\x69\x91\x53\x5b\x8b\x6f\xae\x3d\x32\x94\x7f\x29\x13\x3a\x9d\x72\xc9\x97\xf7\x1b\xa6\xbd\xbc\xcb\x20\x56\x6d\xa7\x6a\x1c\x0f\x9b\x88\xe9\xe2\xd8\x5c\x6e\xfd\x68\xf0\x65\x4b\xa8\xa3\x0e\xe3\x5d\x31\xc0\x16\x76\x3a\xd7\xb6\xb9\x76\x52\xc4\xad\xb9\xcb\xde\xbe\xf7\x02\xf7\x0d\x4c\x27\x53\xf7\x5b\x8d\x41\x96\x75\x83\xfe\x24\x3b\x36\xe2\xe3\xe6\xdf\xb7\xd2\xb0\x52\x3c\x5a\xc9\xe9\x0b\x83\x85\x70\x80\x30\x8f\x67\xf7\x1d\x0d\xd9\x86\xd8\x61\x96\x3d\xcb\xf8\xf2\x23\x4a\x09\x55\x79\xf6\x2a\xf0\x85\x60\x8d\x34\x65\xab\x11\xc3\x1f\xf6\x96\x0d\x7e\xdd\xf7\x58\x3e\x7b\xd7\x99\xc9\xfe\x3a\x0d\x06\xed\x7a\x35\xb6\x5b\xe2\x8b\x27\x9d\x0d\xf6\xae\x73\x57\x22\x1a\x97\x4a\xe9\x80\xb2\x41\x44\xa2\x09\x68\x5e\xc3\x9d\x7f\x1e\xdb\xc8\x6a\x43\x40\xe4\xc1\xa1\x66\x1e\xba\xa8\x77\x17\x24\x97\x9b\xcb\x7e\xa1\x09\xdd\x91\x76\xb7\xbb\xa5\x8b\xf8\xb3\x5d\xf6\xa8\xbf\xd7\x16\xd4\xcb\xeb\x60\x54\x71\xed\x31\xe1\x63\xcb\x4e\x35\x07\x0a\x0a\xa2\xe6\xdc\x1b\xd9\xe9\x0f\xea\x5e\xfc\x5f\x25\x95\x79\x2a\xb6\xdd\x0c\xa9\xfd\x07\xee\x77\x6e\x43\x2d\x33\x1a\xb8\xbb\x68\xb3\x3f\xd4\xd6\xe9\xb1\xd3\xa8\x90\x38\x6e\xcd\xf3\xb4\xd8\x93\xff\xdd\x4f\xd0\x03\xe7\xc9\x7d\xb1\x6c\x22\x5d\x8d\x42\x27\x9d\x82\xdf\x55\xb5\x05\xc1\xef\x06\x66\xf8\x79\xb2\x69\x05\x87\x71\x9e\x5e\x4b\xc6\x2d\x6b\x9e\xde\x44\x26\xfa\xfa\xdc\xe8\x77\xd8\xce\xe7\x46\xbf\xc3\x85\x6a\x9e\x69\xb7\x94\x64\x49\x06\x4c\xfe\xa4\x61\xce\x8e\x22\xec\xd4\x79\xf8\xbf\x9c\x82\xf1\x3b\x8d\x00\xc9\xe1\xcc\x04\xf1\xae\xe1\xd5\x3a\x4f\x03\x19\x2b\x7d\xcf\x6c\x83\xfd\xdf\x06\x37\x7f\xc8\xfe\xa7\xd9\x15\xde\xcc\xd0\x73\xdb\x7d\x99\x88\x1b\xef\x0e\xe8\xde\xb9\xf1\xee\xf0\xf9\x99\xe2\xdd\x55\xc0\x05\xe6\xa9\x9b\x78\x73\x08\xcb\xf0\x0d\xbd\x44\x6c\xe3\x64\x05\xb0\xfd\xce\x62\x0e\x70\xe2\x50\xd4\x40\xb5\x13\x56\x60\x9e\x88\xe0\xbc\xd3\xe0\x08\x68\x73\xf7\xbe\xd0\xd1\xe6\x1e\x16\x01\xa0\xe7\x59\x77\xd1\xe4\x46\x38\x63\x63\x9a\xa7\x02\xb9\x48\xa7\x81\xae\x9b\x53\xe9\x8c\x26\x79\x56\x7d\xee\xec\x2c\x2f\x6e\xcd\xfd\xe3\xb6\x15\x24\x6b\xbb\x4f\xa9\x2e\xe2\xb5\x5a\x13\x0c\xbd\xb3\x48\xdf\xcb\x83\x8e\x6b\xb0\xac\xe2\xff\xdd\xef\x52\x5f\xa2\x1f\x4f\x97\x44\x33\xb4\x83\x89\xe8\x84\xe6\xff\x4e\x60\x27\x8d\x92\x13\xae\x08\x26\x5e\x9b\xf0\x7a\x20\xf1\xa2\xea\x7c\x15\x29\x0a\x2c\xe1\x14\x1f\x8f\x18\xf8\x13\x78\xbc\xa4\xe2\x07\x3c\x5e\x64\xa0\xe2\x7d\xb7\xd5\x1f\x6e\xaf\x1c\x7f\x91\x66\x9b\xe3\xaf\x60\xac\xa4\x1a\xf2\x67\xd8\xdd\x46\xc2\x1b\x0e\xb2\x48\x78\xdd\x59\x0a\x26\x4e\x71\x34\x95\x86\xd5\x1c\xbb\x44\x5f\xc0\x06\xad\x23\x1e\x58\x6a\x60\xa7\x88\x38\xc9\x11\xd4\x1a\x6c\xe1\x9e\x38\xaa\x78\x9e\x78\x77\x37\x27\xf2\xdc\xcb\x88\xba\x7b\x71\xca\xb9\x20\x1e\x4e\x77\x34\xf1\x4e\x21\x52\xe7\x14\xfc\xae\x82\x70\x3c\x4f\x63\x62\x75\x7b\xf1\xb2\xb5\x64\x8f\x1d\xbc\x77\xb3\xe6\x79\xed\xf6\x51\x13\x23\x1c\x03\xa9\x3c\x4f\xac\xbc\x53\x56\x71\xd9\x26\x6a\x78\x11\x46\xc2\xda\x2a\x09\xe5\x33\xf7\x66\xae\x64\x08\x49\xd8\x95\xef\x42\xe4\x55\xb0\x92\xe7\x69\xe0\xac\xf1\x47\x3c\xf2\x09\x80\x5e\x9b\x8d\xa6\x28\x25\x1b\x5d\xa7\x94\x1c\xf6\x8a\x81\x94\xb3\x2f\xa8\xb0\x5c\x03\x63\xf0\x9c\x76\xf6\x2d\xd7\x72\xdc\x94\xa5\xd3\x2e\x32\x0c\x57\x77\xe0\xd8\xd4\xcf\x69\xeb\xf5\x22\x51\x19\x06\x2a\x2f\x17\xa7\x20\xc6\xe1\xd3\xc6\xe0\xbf\x0d\xec\xc7\x14\x36\x0f\x20\xb7\x09\x52\x5e\x23\xa8\xd1\x3c\xc5\x78\x77\x19\x81\x56\x4b\xcc\xc9\x09\x68\x5e\x1e\x2e\x74\xef\x36\xcb\x62\x09\x2c\xa2\xc6\x7f\xee\xbd\x3c\x69\x38\xda\x9c\x72\x95\x17\x96\xaa\x88\x79\x07\x5c\x94\xe6\x18\x62\xa4\x3b\x04\xb1\x93\xf7\x6a\xfe\x3c\x15\xcd\xce\x11\x44\x73\x91\x9f\xe1\x3e\x52\x1d\x26\x05\xb3\x02\x84\xd3\xcf\xe9\x8a\xc5\x39\x9b\x10\x77\x13\xd4\xbc\x7c\x58\x09\x9c\x44\xba\x1d\xc1\x79\xa7\x4a\xd0\xc6\xc0\x1b\xf6\x9c\xbe\x20\xdd\x3e\x35\x06\x73\xb2\xbf\x96\x27\xba\x76\xd8\x52\x14\xb1\xad\x38\xbd\x15\xd6\xfd\xc0\x92\x57\x21\x73\x01\xbb\x6b\xb3\xfb\xb1\xd7\x54\xb4\x83\x23\xcf\x89\xd6\xb6\xf1\xed\xdc\x10\x27\xef\x35\x8f\xfd\x03\x0f\x84\x62\x2a\x4b\x64\x2f\x00\x8e\x5d\x64\xa9\xfc\xa0\xdf\x18\x30\xb1\xeb\x12\x1e\x2b\x13\xf0\xba\x0c\xc6\xe8\x04\xbc\xee\x24\xd2\xce\x04\xaf\xce\x5b\xe5\x33\xb1\xd1\x9e\x74\x44\xc2\x9f\x03\xc0\x97\x99\xd8\x5c\x4f\x54\xab\x74\x6e\x63\xba\x89\xd8\x11\xa1\x6b\x24\x0e\x45\xa7\x1b\xc7\x64\x68\x2a\x00\xb9\x27\xc0\x72\xc2\x1f\x4f\x00\xe4\xda\x44\x5b\x05\x27\x2e\x12\x25\x7e\xe0\x04\x45\x4f\x6d\x3c\x38\x66\x17\x78\x70\x91\x28\xf3\x83\xdb\x31\x36\x22\xdb\x52\x33\x3c\xd0\x29\x4d\x37\x4c\x8e\x99\x67\xc2\x0d\xd3\xb9\x09\x4e\xdc\x68\x56\xc3\x1b\xca\x9c\x6a\xce\x54\x76\x3d\x28\x8f\x73\xd3\x73\xbf\xa0\xdd\xcc\xf8\xe4\x0d\x65\xf7\x3a\xa9\xec\xfe\xa7\x22\x9c\xa8\x72\xf3\x60\x26\x77\xb6\xc3\x2f\x5d\x96\x41\x0d\x09\xa8\x4c\x1c\x88\x99\x74\x80\x76\x0b\x05\xae\xdc\xc0\xac\x3a\x37\xac\x1c\x80\xe3\x33\x71\x4e\xca\x4d\xb2\x09\xc4\x9c\x57\xa5\x67\x32\xce\xa3\x06\x07\x10\xe6\xda\x44\x69\x4e\x7a\x64\x76\xbb\xcd\xd0\xc8\xf0\x71\x11\xe6\x26\x72\x31\x19\xff\xf1\x30\x03\xa3\x87\xc2\x2e\xa8\x5c\x05\xd3\x7c\xa6\xe6\xbc\x73\xf4\x1a\x66\xcb\xf9\xa7\x28\x2d\x53\xc4\x39\x70\xe2\x66\x12\x70\x60\x38\xb4\xec\x68\xb9\x08\x36\x93\x1b\x5a\x38\x39\xe8\x73\x91\x88\x4a\x7a\xe3\x8a\xa3\xe0\x09\xcc\x5c\x02\x66\x77\x26\xef\x2e\x77\x67\x2b\xde\xcd\xd3\xdd\x7c\xf2\xa0\x94\x93\xc0\xb9\xb1\xe5\x38\x67\x9b\xc0\xc9\xe5\x6e\x2b\x8d\x9b\x3c\x6c\x19\x77\x94\xbb\xc5\xe3\xab\x9c\x1d\x2b\xdc\x6e\xf6\x7a\x8a\x6d\xe3\x20\xb4\xca\x14\x3a\x6e\x70\x94\x3b\x81\x8e\x8b\x22\xcc\xf1\xfa\x86\x3a\x1a\xe2\x4a\xc3\x02\x78\x71\x89\xb3\xfa\x99\xbc\xee\x84\xa7\xe9\x04\x2f\xae\x4d\xb4\xb4\x34\x9d\x5a\x54\x0a\xbf\xe5\x89\xc6\x97\x84\x06\xd0\xb4\x04\x72\x5c\x76\x5b\x90\x74\xf0\x1c\x4e\x6b\x70\x65\xd5\x2a\x12\xd1\x91\x27\x1c\x31\x61\x1a\x9f\x3b\x83\xed\x76\xc2\xea\xd7\xd3\xe5\x1e\x5e\x6b\x42\x1e\x26\x23\x72\x74\x97\xd1\xe5\x15\x6a\x27\x26\x61\x25\xf7\x6c\xe2\xd4\x73\x4e\xa7\xb2\xe0\x6f\x1c\xf3\x4e\xc0\xdf\xce\xbc\xe7\xaf\x17\x88\xbb\x4b\x0c\xab\x36\x80\x17\x33\x69\xd5\xee\x2e\x50\xe2\x15\x03\x4b\x36\x93\x67\xa0\x7d\x67\x77\x5d\x38\x69\x1f\xf5\x0a\x67\x90\x51\xff\x93\x0d\x7e\x64\x34\x4e\x9b\x2d\xe9\x5c\xbb\x1a\xad\x39\x4e\x9e\xc9\x73\x50\xe5\x4f\x62\x0f\x39\x35\x24\xa4\x67\x97\xe3\x0f\xf6\x01\x9c\xef\xcd\x84\xd3\xce\x44\x4d\x01\x33\xce\xdb\xc8\x13\x98\xb8\xac\x25\x00\x98\x38\x2f\xfa\x4e\xa0\xe1\x06\x96\xe4\x99\x14\x6b\x48\xfc\xf4\xee\xf6\xfa\x21\x96\xa2\xf3\xe9\x75\x85\x3b\x8a\x9f\x25\x90\xe8\x53\xdd\x41\x61\x49\x5a\xa8\x09\x43\x37\x85\x7a\x2b\xae\x0b\xd1\x6e\x86\x6b\xe1\xb3\x40\x13\x59\xa0\xa5\x7f\x76\xb0\x9f\xe2\x08\x61\x97\xa7\x3c\xb0\x26\x6c\x33\xc1\x0d\x9e\xc9\x43\xd5\x6e\x5b\xf5\xe5\xc1\xa0\x3e\x53\x6c\x33\x33\x57\x9c\x27\xb0\x6f\x69\x4f\x53\xd1\xdd\x34\x92\x25\x3c\x1b\x9b\x4c\x28\xc4\xdf\x70\xfb\x00\xd2\x5b\x3f\x10\xee\x20\xbd\x79\xfb\x78\x26\x9d\x1f\xad\xd3\xe2\x90\x19\xf3\x5f\x3e\x76\xc9\x95\x1f\xf8\x19\x76\xff\x07\xcf\x8d\xd8\xb4\x13\x10\xb7\x84\x6f\xca\xcc\xc7\x6e\x76\xe3\x87\x1b\x9f\x6c\xaa\x45\xd9\xa4\x62\xa7\xc9\x09\xe5\xcc\x5e\x83\xe6\x98\x7f\x66\x63\x39\x6a\x8e\xca\x5e\x77\xe6\x90\x63\x66\xa4\x1c\xfe\x4c\x33\x9f\x88\xaf\xe3\x4f\x78\xe4\x33\x9f\xb6\xd7\xaf\xed\xbe\xee\xfc\x78\x69\x4b\xe1\x7f\xf8\x7d\xf7\xcb\x7b\x36\xf0\x82\x3d\x28\x11\x03\x27\x28\x72\x83\xab\xba\x13\x10\xb9\x7e\xa0\xe2\x82\x21\xd7\x0f\xb4\xd7\xec\x4d\x68\x4d\xea\x39\x39\x11\xfd\x9f\x6d\x72\x36\xb3\x82\x2a\x9b\x1b\x93\x83\xfd\x90\x64\x27\x30\x84\x2c\xcc\x41\xdf\xe5\xb1\x01\x3c\xfd\xd4\x83\xdd\xda\x1c\x1f\x65\xd3\x3d\x1c\xa1\x6a\x10\x02\x4a\xae\x1c\xe6\xcd\x7b\x69\x52\x41\xcf\x53\xbb\x23\x95\x2b\xb9\x4d\x25\x13\x67\x35\x6f\x30\x39\xad\xc7\x80\xc6\xf5\xe3\xf0\xc5\x1d\xff\xa3\x03\x83\xff\xd6\x0f\xc7\x7f\xcb\x5e\xd8\x4f\x2e\xf2\x6a\x32\xef\x8b\x12\x4e\x06\x84\x6f\x2e\x4e\x80\x02\xc4\xa1\xf3\xca\xf3\x4d\x38\x51\x16\xc0\x40\xeb\xae\x08\x70\x03\x9f\x88\x99\x0d\xbf\xcc\x2d\xd7\x09\xea\x5b\x06\x3c\x6a\x02\xfa\x16\x59\xe8\x86\x10\xc5\xfd\x40\xf1\x02\xf3\xcd\x3b\xd4\x33\xd7\xcd\x6d\xcc\xa1\x1a\x00\x53\xcc\xd5\x58\xb5\xe6\x78\xc8\x6d\x4d\x5c\x81\x4e\x91\x90\xc5\xfd\x70\xf2\xb5\xdd\x3d\xe4\xd8\x32\x12\x4d\x31\x37\x2d\x00\x8e\x73\x93\x73\xdb\x2c\xfc\x97\xb4\xbf\xe4\xe6\xa2\x80\xbd\xe5\xc6\x10\x9e\x16\xa2\x6e\x6b\x85\x3b\x9c\xc8\xef\x76\xfb\xc1\xc1\xed\x6e\x78\x60\xc9\xb9\xef\x01\x65\x78\xf0\x65\xd2\x54\x9c\x8d\xcb\x4c\x70\xb0\x99\x0d\x29\xa2\x3a\x0d\x00\x5d\x3f\x4e\xb3\xcb\x76\xd1\x37\x72\xd7\xdb\x9b\x3a\x76\xa5\x0b\x32\x0f\x00\xba\xf8\x41\x2a\xc3\x59\xe1\x21\x31\xf3\xde\xa7\xba\xbe\x77\xb4\x0f\x36\x6f\x79\xb8\x29\xe0\x63\x63\x97\x42\x23\x87\x32\xd0\xa1\xdb\xb2\x18\x05\x25\x4f\x66\xd4\xe9\x0b\xc7\x14\x0d\x0e\xdc\xb9\x74\xf8\x2d\xae\x1e\x0f\x47\x68\xef\x5a\x91\xd8\x59\xf9\xeb\xe2\xd1\x80\x9b\x5c\x24\x3a\x27\xe1\x31\x31\xf3\xb5\x7b\x92\xaa\x5c\x7b\x93\x4e\x89\x17\x1e\xe3\x76\xe4\xde\xc3\x0e\x5f\x18\x4c\x8d\xfe\xda\xa2\x79\xfa\xad\x69\x29\xbe\x51\xd7\x41\xce\x67\x60\x05\x0e\xa7\xc1\xed\xcc\xa1\x5e\x37\x6c\x0b\x95\x26\xdf\xce\x15\xb9\xde\xde\x5d\x5a\xc8\xa3\x01\x05\x9d\x26\x3f\xb0\x17\xd9\xe1\xc3\x76\xc3\x21\x15\x23\x60\xb4\x3f\x39\xf7\xcd\x1c\x72\xb6\xab\xb8\x01\x3f\x17\xb5\xa4\xc7\x9e\x5d\x03\xfa\xf5\xd9\xf5\xa7\xfd\xb8\x1f\x4d\xb5\xfd\xbc\x45\x33\xb2\x0b\x04\xba\xae\x96\x03\x00\x5d\x3e\x1d\x0a\xb0\xd8\xd3\x70\x6d\xbf\x96\xc8\x77\xdd\x41\xe2\xbe\x34\xb3\x46\xdc\x21\x3b\x88\xad\x62\xd7\x52\x9c\xdd\x2a\x3a\x3f\x5f\x8d\x75\xf2\x28\x81\xe5\xec\xb1\x4f\x06\xe0\x10\x7f\x4c\x16\xe7\xe7\x07\x23\x43\xdf\xc8\x9f\x8c\x4c\xee\xfa\xed\x4e\xa2\x8c\xcf\x5a\xd1\xc5\x9e\xed\xe2\x39\x33\xb3\xe7\xb9\x43\x8e\xa5\x97\x92\xd6\x2f\x60\xe3\xbc\xd5\x3d\x45\x8d\x9b\x9a\x90\xf3\xda\x5d\xc7\x87\xd7\x8e\x72\x63\xb2\xbd\xb8\xa3\x87\xc0\x8d\x4b\x02\x4d\xce\x72\xec\x55\xd4\xf9\xc1\xb0\xd2\xc1\x80\xc8\x45\x83\x4f\x7e\x74\x5e\x54\xfe\x1f\x66\x37\x95\xd2\xa1\xf9\x61\xa5\x14\x8c\xb1\x9c\x8c\x09\x15\x03\x15\xae\x1f\xcc\xa3\x72\xda\x45\x89\xff\xab\x9f\xe2\xbb\x48\x52\x02\xe0\x4c\x00\xe2\xb2\xf6\xd7\xa2\xb0\x64\x99\x17\x8e\x53\x85\x49\x98\x25\x64\x5f\xf7\xac\xb4\x24\x64\x00\xd6\xd7\x62\x50\xe3\xb9\x5f\xec\x1c\xb4\x2f\x23\x2d\xd1\x3f\x8a\xa1\x1b\x71\xb0\x99\x25\xbb\xe6\xf6\x0f\xad\x80\xf0\xe1\xa2\x38\x62\xd1\x94\x0c\x17\xb7\xab\x36\x9a\x29\x9d\xa0\x30\x62\x5d\x97\xbc\xbb\x9d\xb6\x1a\xcb\x43\x1b\x4e\xc9\xf6\x0e\x9c\xb7\x14\xeb\x4e\x79\x65\xcf\x52\xca\x50\x80\xb1\xca\xc0\xa1\xf3\x4a\xf5\xdc\x68\x73\x43\xba\xde\x68\x96\xe1\xf1\xa7\x16\xf1\x22\x38\x29\x4c\xb8\x54\xd4\x81\xe2\xff\x46\x2d\xa1\xdb\x44\x23\x4d\xb0\xed\xe2\x7d\x3c\x8f\x01\x4b\xa5\x1d\x68\xbb\x80\xcd\x75\xfc\x01\x66\x31\xc0\x86\xec\xad\x54\x44\x83\x33\xa9\xda\xb9\x08\xa0\xa2\x30\xb2\x0c\xa3\x5e\x69\x1c\x01\x78\xae\xe3\xff\x3d\x4b\xdb\x1d\x4d\x3b\x9a\x33\xe9\xf4\x87\x9d\x48\x27\x34\x39\xa5\xed\xd0\xaf\x16\xe7\xa2\x59\x0c\x75\x85\xf7\xf1\x2c\x3a\xd9\xe2\x36\x34\x81\x8f\xeb\x87\xbd\xdb\x35\xba\x20\x0b\x4b\x77\x81\xc2\x5c\x41\x8c\xeb\x87\x6d\xef\x4c\x6a\x0b\x51\xfc\xa0\x86\x03\xff\xd6\x8f\x9d\x9e\xd6\x56\x4b\x40\x53\x44\x44\x80\x0a\xd7\x0f\x84\x4a\x31\x7c\x06\xde\xd1\xb3\x78\x97\x75\x9c\x7f\x8a\xd9\x37\x81\xfc\xc9\x72\xc0\xda\xb5\x5d\xd0\xf5\x75\x5b\x79\x61\xfa\xb5\xef\x06\xf3\x63\x78\x6b\xad\xf3\x3f\xbd\x8a\xfc\xa8\xd4\x00\x3f\xef\x59\x7f\x2a\xc0\x77\xc5\xf2\xc1\xab\x6b\x82\xe5\x23\x1a\xfc\x04\xcb\x27\x66\x4d\xe2\x07\x00\x98\xcc\x65\xb0\x7c\x84\x67\x9f\x60\xf9\x9c\x04\xef\x9f\x75\x78\x1c\xd7\x2d\x03\x6c\x5c\x86\xba\x0a\x6f\x60\xcd\x27\xaa\xf8\xf0\x7f\x6c\x25\xf4\x62\x55\x86\xb2\x6b\xa8\x93\x45\xd4\xa4\x6f\xa6\x4a\x09\x17\x03\xd8\xfc\xdf\x3d\x1d\x93\x57\x58\x1e\x2e\xaa\xcf\x7a\xe9\x14\x49\x7b\xb0\xef\xca\x49\x40\xe8\xd9\x7a\x7f\xd5\x3f\x2b\xed\x0c\x36\xda\x0c\xf0\x5a\x78\x55\xdd\x62\xb2\x5a\xdc\xed\x3e\xc3\xe2\x8c\x5e\x6f\xf7\x5f\xcc\x05\xb8\x7e\xdd\xb8\xe6\x4c\x98\xca\xde\x36\x99\xe8\xde\x0c\x83\x42\x6e\xcf\x9e\xec\x72\x45\x6b\x37\x87\x97\xca\xd8\xa7\xd6\x9b\xe5\xd5\xfd\x9f\xb9\x07\xa3\xad\xb7\x8c\xda\x61\xbd\x99\x7c\xac\x95\x6a\x48\x68\x0f\x88\xaa\xe2\xd7\x6e\x7b\x14\x2d\xac\x54\x31\x7a\x3c\x1f\xaa\x9e\x86\xe2\xcd\x36\xab\xa7\xa1\x9e\xa5\x00\xd8\x23\xfc\xf1\xdc\x78\x3d\xb8\x74\xce\xfa\x58\x13\xaa\xfe\xd8\x72\x1a\xb8\x83\x69\x20\x72\xea\xeb\x12\x86\x8b\xd6\x97\x91\xdd\x2f\x58\x5b\x7e\xe9\x65\x94\x77\x9a\x01\x33\xa7\xe8\x2d\x78\x91\x77\x20\xfc\x44\x63\xcd\x4d\xd9\xc3\x17\xf2\x4d\x64\x67\x7d\x37\xaa\x98\x3f\xe4\x38\x48\xf1\x6a\x14\x4a\x8f\x68\xc0\xfb\x11\x3d\x72\xd6\x8f\xb5\x81\x9a\x06\xf4\xcf\x39\x3d\xae\xa9\xca\x64\x27\xe8\x96\xc9\x70\x0c\xb0\x7f\xce\xe2\xe2\x68\xc4\xe1\x27\xbe\xc8\x6c\xe7\x1e\x90\xc4\x0f\x17\x23\x7a\x4f\x53\xfc\xa0\xe6\x35\x01\xe3\x5c\x99\xc2\xd1\x4c\xcf\x7b\x5a\x62\xce\x61\x57\x6c\xec\x9e\x74\xf4\x69\x49\xa5\xc3\xec\xde\xf3\xf0\x30\xa5\x85\x60\xca\x1e\x7a\x34\xf7\x3c\x1a\x79\x84\xa3\x99\x9e\xc5\x34\xc2\x47\xb9\x03\xde\x00\x34\xba\x69\x00\x40\x13\xa9\x7c\x13\xb3\x06\x17\xea\x09\x00\x4d\x52\xc3\x15\x7f\xa6\x26\x26\x0a\xf8\x33\x22\xe2\xcd\x86\x51\x93\x3b\xb5\xb3\x15\xe6\x28\xf6\xa2\x56\x18\x1d\x94\x78\x50\x69\x92\xd2\xbc\x15\x78\x22\x96\x2a\x51\x69\xe6\xf9\x27\xcf\xe6\xd9\x0c\xc2\xa8\xf5\x08\x94\x9a\xa8\x2f\x7d\x5a\xe5\x83\x70\x07\x10\x68\x32\x97\xb7\x66\x73\x0b\x34\x4d\xc4\xcc\x44\x27\x6c\x4a\x23\x34\x47\xf0\x67\xc4\x3f\x9a\x6d\x1b\x26\xad\x30\x17\x3b\xb4\xad\x83\x45\xe3\x35\xcf\x29\x14\x0d\x80\x17\xb3\x61\x87\x24\xb6\xc5\x6c\x2d\x26\xaf\x27\xb6\x8d\x03\xbe\x6c\xed\x62\xbb\x24\x14\xd2\x6c\x5b\x10\xc1\x73\x1b\x7e\x32\x1a\x05\x5b\x88\x9b\xee\x41\x45\xeb\x9c\x23\x14\xe9\xbb\x9d\x94\xd0\x71\xe3\x41\x93\x07\xab\x26\x7b\xd8\xdb\x14\x49\xec\x29\x5a\x27\xce\xa9\xb3\x90\xb3\x3e\x9d\x55\x04\xaa\x99\x9e\x46\xb5\xae\x68\xce\x7e\x15\x80\xa3\xc3\xaf\xee\xfa\x99\x4a\xe6\xe1\xd8\x0f\x27\x1b\x2c\xa6\x8d\x7d\x4d\x96\x0e\x1f\x6e\xca\x5d\x04\x3a\xce\xb8\x17\x6e\xe2\x9b\xc2\x70\x1a\x81\x19\xa7\x43\x84\x18\x71\xe3\x21\x1a\xce\xf4\x60\x0a\x34\x9c\x84\xeb\xed\x6c\x9c\x14\xaa\x6f\x80\x8c\xd3\x4f\x1b\x8b\x48\x01\x4b\x73\x36\x42\x35\x70\x37\x6f\x02\x98\x13\x55\xa7\xb6\x84\x5b\x2c\x56\x36\xb6\x5f\xc2\x31\xcd\x66\xe4\xa7\xe9\x0c\x8e\xed\x97\x18\x46\x13\xf0\x1c\x41\xa6\x66\x9b\x1b\xed\x97\xff\xdd\x5d\x3b\x85\xf0\x12\x26\xfe\xd7\x6c\x1c\x2c\x12\xe5\x70\xb6\x89\xfd\xc5\xd5\x6a\x40\x28\xed\x7d\xed\x72\x84\xe9\x99\x0b\x1f\x3d\x47\xf8\xda\xbd\xc4\x57\x2f\xe3\x73\xc1\x5e\x36\x0a\x8f\x16\xb8\x76\x59\x41\xbe\xab\xbb\x0d\x1c\xb0\x6d\x29\x84\xd0\x6b\xd7\x45\x22\xff\x57\x87\xb5\x97\x2f\x4c\x5f\xce\x16\x36\x6e\x6e\x6f\x36\x3a\x8f\x2e\x2e\x2d\x84\x90\x40\x0c\x13\xa4\x9e\x7e\xda\x9b\x77\x8f\xda\x3a\x37\x6f\xa7\x91\x33\xfb\x36\xdc\x92\x99\x71\xeb\xb3\x68\x44\xd0\xd0\xeb\x12\xcc\x1e\x2f\xd7\x4c\x21\x7b\x08\xca\x30\x01\xe9\xc9\xea\x64\x80\xf4\x9c\xd9\xea\x71\x11\x1d\x38\xc7\x09\x0c\xcf\xe9\x9e\x07\x18\x1e\x43\xce\xce\xe6\x15\x49\x2d\x6b\x60\xf2\x74\x1c\x60\x67\xd3\x33\xc7\x1e\x43\xfc\x9c\xae\xd9\xe7\xe3\x7f\x0a\x7b\x09\x33\x60\x7f\x1b\xf5\x98\xf8\xe0\x13\x48\x1e\x03\xd8\xcd\xc6\x21\x22\x31\x5a\x66\x33\x58\xa4\x9a\x3a\xe8\x3c\x05\x60\xf4\x09\x3a\x4f\xbc\xa0\x7e\x5c\x3c\x6f\x8e\x2f\x92\xe8\xdc\xff\xef\xce\xf0\x53\x1e\x3b\xdb\xba\x2d\x89\xca\x1f\xad\x7d\x8d\x7b\x2c\x4a\x29\x70\x7c\x72\x42\x21\x68\xc8\x9c\x94\xa4\x3b\x11\xec\x5c\xae\x9f\xeb\x28\xd1\xbe\x7d\x5a\xc1\xff\xaa\x4b\xc8\xb5\xb6\x88\xbd\x20\xd7\x36\x3e\x25\x17\x57\x66\xc3\xe1\xc7\xdd\x4b\x5b\xc4\xb7\xb2\x29\xb8\x01\x6b\xd8\x06\xc6\xc7\x20\x79\xb3\xad\x3d\x1c\xbe\x08\x9e\xcb\xfd\xd3\x09\x40\x8f\xb8\xd0\xb3\xeb\xed\x6b\xc5\xfb\xb1\xf9\x84\xa9\x98\x77\xc9\xff\xdd\xcf\xd1\xf1\x20\xf4\x18\xac\x6e\x82\xd0\x63\x20\x8c\x09\x40\x8f\x81\xb9\x26\x00\x3d\xf1\xd9\xc2\x0f\xae\x6b\xa0\x1f\x01\xca\x63\x28\xcd\x09\x28\x8f\x51\x79\x26\x98\x3c\xc6\x67\x99\xa0\xf0\x18\x4a\x67\x82\xbc\x63\x6c\xa1\x29\xf0\xce\xd0\x9f\xa0\x9f\xd4\x02\x25\x11\xe0\x1d\x63\x84\xcc\x7e\xee\x56\x53\x0d\x5d\x79\x3d\xc9\x06\x85\x67\xef\x69\xfa\xa9\x22\x52\xfc\x94\xfe\xa4\xfc\x6f\xa4\x49\x79\x6d\x4f\x74\x01\xdb\xe6\x9e\x70\xb6\x46\x09\x12\x76\x67\x7a\xbe\xdc\x13\xab\xdb\x9e\xcd\x2c\x62\x64\x47\xdf\xb2\x9f\x49\xd5\x35\x91\x5a\x5c\xe6\xf8\x60\x4a\x6f\xba\x80\xd2\xee\xd0\x03\x8c\xbb\x38\x01\xdd\xf1\x7e\xe9\x04\x66\xc7\x40\x48\xb3\x23\xe0\x87\x87\xfc\x1d\x01\x7f\x3a\x90\xc5\xaf\x4a\xa7\xde\x7e\xa8\xd0\x4f\xc5\xcc\xdd\xcc\x66\x60\xb8\x8a\x19\x28\x0d\x1d\xb4\x97\x1d\x23\xc1\xdc\xf0\xcd\x69\x86\xad\xaf\x51\xa7\x02\xeb\x42\xbc\x74\xcf\x26\x99\xd6\xbd\xea\xff\x21\xbd\xaa\x7d\xfb\xa3\xb1\x53\xe5\x4b\x75\xd7\xc3\x17\x6e\x16\x51\x4d\x80\xe2\xd1\x31\x7f\xf6\xaa\x16\xd9\xfd\x71\x9b\xc5\x1f\x2c\xe4\xe2\xff\x80\x5b\x21\x2e\xc0\xe8\xe9\xa7\xb3\x34\x14\x85\x5e\x9c\x44\x1c\x60\x6a\x2d\xea\x62\xd6\x11\x9e\x6c\xf6\x66\x47\xd1\x22\x95\x03\x87\x68\xbb\x05\xb1\x6a\x01\xf2\xd9\x1e\xed\x9d\x5b\xa2\x04\x02\x99\x80\xfa\x44\x95\xfc\x12\xec\xce\x46\xe0\x23\xe4\x0a\x06\xed\x27\x8a\xa3\x88\xce\xc4\x46\x60\xf6\xbe\xeb\x41\x79\xe8\x10\x9a\x1f\xfb\x3e\xe0\xec\xa6\x62\x60\xd0\x1f\x7b\x67\xa2\x55\xbf\x74\xdb\x69\xf4\x20\x7b\x5c\xc2\x63\xcc\xde\xd5\x12\x5d\xcf\x5b\x3d\x70\x15\x1a\x25\x72\x98\x6c\x58\x13\x0a\x1c\xde\x22\xfa\xa3\x53\x73\x1f\x70\x62\xcb\x1c\xf4\x16\xba\x4a\x17\x33\x76\xec\xaf\xd9\x11\xf4\x16\x27\xa4\x7a\x25\x01\xee\x13\xb3\x87\x1c\x73\x4f\x7b\x52\x19\xde\x51\x13\x6f\x9f\x1a\x8b\x4c\xa5\xe2\xe1\x04\x98\x7b\x36\x98\x85\x16\xa3\x91\x88\x0d\x34\xf4\x8a\xee\x73\xb7\x98\xaa\x5c\x06\xce\xa2\x2b\xdc\x6b\x26\xd7\xef\x05\x53\x71\x96\x5d\x34\xc4\x3a\xb2\x8f\x74\x97\x25\x4c\x50\xb7\x22\x97\xa6\x18\x07\xf1\xd2\x13\xdd\x17\x7b\x49\x50\xa9\x7b\x4f\x64\xde\xdc\xbb\xee\xfe\xd0\xae\xe3\x92\x37\x5c\x81\xfa\xfa\x46\x07\x52\x69\xe8\x7a\xf3\x68\x3a\x16\x11\xa8\xeb\xc1\xde\x1f\x2b\xcc\xc7\x1e\x2b\x4c\x76\x4f\x38\x87\x35\xc6\xf2\xaa\x21\x53\x44\xa0\xae\xe3\xf3\x46\x04\xd2\xfc\xd8\x95\xcb\xce\x6c\x0c\xaf\xc3\xa3\xd3\xfe\xec\x99\xe3\x87\xd5\x32\xed\x22\xef\xe7\x68\x47\xed\x62\x17\x28\x6e\xfa\xab\x2d\x80\x7a\xbd\x72\x67\xe5\xc2\xbb\x2b\x46\x8f\x6d\x49\xad\x64\x30\x44\x4c\x62\x3f\xd8\x5f\x37\xa9\xf2\x17\xc5\xb3\xf3\x7e\x6f\x14\x6d\xf1\x16\xcf\x6c\x01\xfb\xde\x1b\x3a\x90\xdf\xae\x0c\xc9\x84\x11\x1a\xf6\xcc\x87\x9c\x71\x19\x80\x7f\x97\x1c\x24\xe1\x0a\x74\x79\xe8\x6b\x67\xe7\xcd\x82\x99\x3a\xd9\x08\x05\x9d\xb3\x74\x35\xc1\xe1\x0b\x96\x80\xa3\xba\x18\x08\x27\xc5\x96\xb5\x56\x1e\x0b\xad\x4e\x2d\x5d\xf0\x56\x04\x35\xe8\x40\x99\xa8\x13\x73\x18\xfa\x19\xf6\xb4\x81\x82\xe8\xde\xa1\xc7\xed\xdc\x2f\x64\xa0\x85\xff\x1b\xbe\x7b\x66\x96\x3d\xa1\x85\x0f\xcc\xb6\x84\x4a\x99\x62\x06\xd5\x34\xfc\x14\xfd\x39\xfc\x92\xea\x4e\xb6\x1e\xbb\x3f\xfd\x16\x82\x97\x51\x07\x34\x28\x6b\x58\x00\x33\xe8\x24\x9e\xd7\x04\x33\x28\xcb\x4b\x81\x0c\xca\x2a\xfd\x63\x0b\xe4\xec\x0f\xd7\x34\xcb\x6d\x70\xe9\x86\xb0\x39\x13\xc8\xa0\xac\x1b\xcb\x46\x0c\xd2\x8a\x0a\x62\xd0\xa9\x22\x3d\x3c\x2d\xd5\x8b\x7e\x9c\xbb\x82\xd1\xcd\x23\x6d\xe8\xf9\xca\x0f\xf8\x16\x93\x07\xec\x9f\x48\x45\xd5\x15\xd5\xf6\x48\xf2\x60\x2a\x9b\x5d\x76\xba\xb3\x68\x7f\xb4\x2e\xc9\xd8\x5b\x7e\x17\xdf\xa8\x3f\x9f\xf0\x8e\x6d\x83\xb6\x8f\xb6\x0d\x1a\x6e\x03\x96\x50\xf7\xcc\x6d\x60\x69\x76\xf3\xb0\xd1\x83\x34\x66\x8e\xcc\x7e\xc1\xdc\x99\xf5\xca\x4c\x04\x49\xe8\x2c\x5a\x9a\x40\x0f\xca\x44\x7c\x9e\xa0\x07\x65\x57\xe8\xc8\xcc\xe9\x61\x09\x76\x11\xec\x01\x8c\xa0\x24\xd0\xcb\x1c\x0a\x7c\xa7\xc0\x16\xf8\x4c\xe4\xb1\x05\xbb\x43\x8d\x0d\x40\x6e\x2c\x46\x90\x57\x5f\x06\xfb\x7e\x65\xfc\x86\x05\xf2\x8a\xd8\x30\x26\x9c\x03\x57\xed\x60\x2a\x55\x35\x8b\xed\x1f\x1c\x81\x4e\x73\xb3\xe5\x77\x40\xab\x8b\x7e\x27\x0a\x39\xa6\xc3\x07\x40\x40\x59\x15\x10\xbc\x9f\xe2\xd1\xef\x68\x58\xc8\xa7\xff\x3b\xb1\x50\x67\x86\x92\x19\x0d\x6b\x34\x1b\x64\x0f\x2a\x80\x9d\x0c\x86\x6f\x48\x8e\x45\x87\x77\x5a\x74\x67\x96\xc0\x6e\x40\xa2\xc9\x44\x72\x9c\xc3\x1d\x9a\xe9\x75\x81\xd1\xee\x3e\x2e\xd7\x0d\x5a\x12\xa8\x34\x69\x6f\x7e\xc7\x45\x47\xb1\xeb\x1c\x5e\xa2\xd0\xaa\x09\x46\x4d\xf7\x76\xc4\xc6\xa8\xd1\xc9\x67\xb8\x79\xb3\x4d\x46\xf0\xd5\xb8\x37\x6e\x8d\x23\xfb\x5b\x2e\xe1\x9d\xdf\xa3\x05\xf3\x3c\x5e\xba\x2f\xfe\x88\x56\xe9\xef\x3f\x1e\x5b\x45\xd3\xb7\x37\x8c\x03\x8b\xa8\xd0\x41\x7e\x3c\xbb\x44\x53\xed\x12\xfd\x61\x83\xab\xdf\x72\x1d\xba\x5c\x5e\xc3\x9e\xd1\x75\x00\x75\xef\x6f\xb1\x45\xaa\x36\xf7\x33\xd4\x99\xb5\xda\xfc\x18\x35\x68\x70\x80\xa6\x07\xc5\x10\xef\x4d\xd3\xd9\x30\x82\x7f\xb6\xf2\x9f\xdb\x69\x97\xc4\xb7\x2f\x28\xd0\x2d\xb1\x75\xea\x9e\x15\x0d\x51\xe1\x34\xa4\x8d\xd8\x3a\x75\x0d\x2b\x23\xf8\x7c\xd9\x3c\x20\xf8\x7c\xcd\x2e\xfb\x8f\xab\x45\xf2\x3b\x37\x4e\xa8\x8e\x63\xed\x8a\xd0\xd7\xb0\x76\x95\xb6\xb1\x76\x3d\x4c\xb5\x71\x5c\xf9\x1f\x79\xef\xda\xe2\x02\x25\xf1\xb4\xe7\xdc\x07\x6c\x14\x3d\x0f\x87\xc3\x17\x5c\xbf\x38\xa5\x2b\x07\x59\x8d\xd3\x3b\xfd\x5a\x8a\xe6\x61\xeb\x2a\xff\xe3\x6c\xce\x59\x0d\xf8\x33\xa7\xfc\x15\xc8\x99\xa4\x0a\x30\x8d\x59\x2b\x1b\x05\x7f\xa6\x6b\x79\x05\x7f\xe6\xcc\x9b\x5e\xa0\x53\xc0\xe9\x4c\xd8\xb9\x07\x2f\x06\xff\xcb\xb5\x98\x94\xa0\xd1\xf4\xf4\x47\x04\xb6\x39\xe1\xbc\x7a\xd0\xcf\x6d\x15\x65\x92\x4d\x38\xaf\x3e\xd7\x33\xed\x4e\x34\x55\x30\x03\x02\xe2\xcd\xa9\x37\x68\x95\xae\xee\x6a\x8d\x83\x09\x77\x00\x99\xe7\xc4\xbf\xc4\x71\x9a\xc2\x94\xea\x47\x3c\xf5\x23\xd1\x0e\xba\x81\x6d\xf4\x42\x02\xb3\x26\xde\xf0\x83\x1b\xf4\x35\x33\x31\xe6\xde\x28\xa1\xe8\x00\x47\xd3\x75\xcf\x05\x75\xa6\x6b\xd3\x03\x74\x26\x12\x99\xdd\xb1\x9a\x66\x77\x8b\xb7\x7f\x30\x56\x8e\x28\x8c\x53\xe1\x0e\x32\x4d\xd7\x07\x14\x64\x9a\x28\x9c\x96\x14\xd5\x3a\xb8\xe5\xac\x74\x31\x2a\xc0\xdc\x46\x51\xb8\xd1\xac\xd6\x84\x51\x14\xae\xdb\xcf\x56\xef\xd0\x4e\x5f\xec\x16\x9a\x63\x77\x1d\x25\x12\x08\xa7\x66\xa7\x50\x55\x2e\xed\x37\xcb\x37\x7c\xa0\xc9\x9c\x60\xc4\x42\x99\x64\x36\xab\x93\xe8\xe9\xc7\xfe\x7f\x7f\x98\x1c\x5e\xa9\xf7\xea\xd7\x0c\xf5\xda\x68\xa5\x73\x6e\xcb\x19\xec\x68\x5e\xae\x24\xe4\x32\x60\x26\x5d\x93\x07\x58\x26\xf1\x82\x6f\xe1\x92\x5f\xb2\xff\x87\x2c\x23\x9a\xd8\x04\xa8\x24\x3e\x45\x0e\x0e\x60\xaa\xf7\x14\x41\x2d\x49\x49\x5b\x16\xb0\x25\x49\xaf\x71\x60\x4b\xb2\x26\xb5\x69\xcc\x30\x6d\x59\xe0\x91\x74\xbd\xbe\xe6\x36\x72\x75\x53\x2d\x7f\x90\x3d\x14\xea\x0c\x8e\xf7\x9c\xcf\xae\xbb\x3f\x62\x76\xa9\x75\x4f\xd8\xa7\x66\x8b\xc9\x01\x8c\x9e\x65\x13\x86\xa9\x2f\xd7\x44\xb7\xae\xd9\xe5\x8a\x6e\xbc\xa7\xc9\xcb\x12\x61\xcf\x2e\x14\x8a\xae\x59\x53\x6f\x05\xaf\x13\xcd\xad\x26\x0f\x73\x63\x61\x73\x5e\xe3\xc6\xa0\x53\xd3\x34\xdc\x97\x5a\xea\x14\x6d\xda\xbb\x2f\xf3\x65\xfa\xc9\x81\x0c\xb0\xa2\x05\x6c\xe2\xdf\xa0\x9b\xd7\x7c\x9d\x7e\xc3\x02\x17\x2f\xc8\xfd\x6d\x26\x42\x21\x1c\xa6\xe8\x54\x30\x85\xf7\xd2\x66\x36\x97\x33\x06\x96\x0c\xde\x49\xd7\xeb\x04\xbc\x93\x78\x61\x2a\x6a\x02\x8f\x9c\x06\x09\xd7\x03\x1a\xec\x93\x54\xa8\x2e\x70\x27\x5d\xdf\x92\x4b\x53\x53\xc6\xd6\x01\xdc\xc9\xb9\xc5\xe4\x25\x1a\xb4\x76\x89\xeb\x60\x2a\xb1\x89\x17\xfb\xa4\xa8\x48\x5d\x46\x03\x57\x98\x5e\x46\x03\xd7\x84\x00\x14\x4a\x34\xcb\x37\x1f\x62\xc7\x6f\xd1\x76\xa4\x2c\x50\x28\x91\x68\xf0\x43\xee\x30\xfc\x91\x30\x0c\xfd\x91\x07\x0a\x94\xe2\xea\x03\x0e\x25\x5a\x93\xf8\x01\x83\x28\x7e\x6d\x57\x73\xf2\xe3\xb3\x9a\x64\x49\xf6\x2b\x8c\xef\x92\x87\x6a\x3d\xb8\xb6\xe7\x3c\xab\x01\x80\x93\xf8\x32\x2d\xd0\x7d\x4f\x1b\xca\x45\x40\x14\x3d\x47\xae\x64\xf7\x93\x23\x54\xcf\xac\x2c\xb9\x36\xe3\x64\x4e\x5d\x86\x16\xd3\x59\xfa\x52\x11\xd5\x45\xf9\xca\xbb\xfa\xbe\x09\xad\x54\xcb\xe2\xa5\xb7\x7d\xde\xa9\xe0\xc8\x98\x0c\x00\x22\xe9\x1e\xdd\x83\x43\x92\x0e\x9d\x2b\x2f\x99\x2b\x12\x0b\x50\x92\xee\x91\xfc\x55\x9c\xe9\xd3\x17\x8c\x2a\xa2\xf6\x92\xd1\xba\xfb\xbf\xf0\x79\xa8\x79\xff\x70\x54\x93\xc9\x9c\x54\xd3\x12\x99\xde\x88\x4e\x00\x4a\x0c\x68\x3c\xc5\x24\x39\x34\xda\x03\x4a\xd2\x09\x4a\x3d\xc5\x21\x49\x7a\x0f\x5f\x72\x5a\x84\xfe\x25\x74\x25\xe8\x60\x13\x20\x92\xae\xda\xbd\x71\x48\xe4\xcd\x17\xc6\x27\x82\xc8\x4d\x30\x49\x7a\x62\x97\x7b\x19\xc1\x78\xee\x17\x4c\x2f\x38\x07\x68\x23\xdd\x23\xcf\x0b\xb3\x92\x87\x70\xa0\x8d\x74\x8f\x19\xc1\x14\xe9\x1e\x82\x5d\xb8\x45\xec\x99\x8d\xee\xea\x89\x0c\x28\x13\xc9\x73\x7a\x80\x25\xa2\x30\x32\x18\x59\xd1\x8d\x37\xc8\x12\x5d\x5e\x78\xa9\x96\xba\xf1\x06\x59\x22\x1a\xc1\x0f\xce\x14\x34\xa3\x5f\x9b\xad\xda\x39\xf7\xee\x1c\xdf\xa8\x19\xba\x30\x6e\xf9\x35\x25\x6a\xc3\xd8\xa3\x7c\xef\xa1\xa1\xab\xe4\xb8\xcd\xff\x11\x0a\xee\x58\x2f\x62\x55\x69\x48\xbf\x7e\x2c\x18\x7c\xf7\xd9\xeb\x9d\x2c\x8f\x77\x01\x69\x89\xc7\xdc\x7a\x76\x6e\x40\x09\xb7\xa9\x97\xf0\x89\xea\xb8\x40\x40\x74\xcd\xe8\x42\x40\x4c\x1d\x51\x2f\x99\x2e\x12\xfc\x32\x62\xed\xe1\xcc\x30\xb0\xa2\x6e\xb3\xe0\x41\x9c\x5b\x15\xbe\x34\x4e\xb8\x6d\xbd\x70\xd4\xd6\x9d\xe9\xc2\x4f\xbb\xef\x1c\xb6\x37\x5b\xc8\xc3\x0b\x12\x7d\xbb\x74\x7f\xd8\x91\xf6\xd7\xb7\x4b\xa4\x8b\x3f\x74\x6f\x24\xcc\xb5\xb9\x2b\xcc\xf9\xfa\x76\xaf\xd2\x2d\x38\x67\x67\x19\x97\x6a\x2d\x3c\xff\xd2\x51\xdb\x7d\x8e\x48\x10\x80\x35\x4e\x90\x20\x7a\x82\xb3\x5f\x1f\x7d\x22\x7d\xd1\x0d\xb0\x6c\xc0\x1f\xba\x16\x16\xb0\x1f\xe2\x43\xd4\x63\x31\xdb\x61\xdf\x97\x61\xb0\xb2\x13\x59\xf3\xc5\xfc\x63\xf0\xaa\x79\xc9\xf5\x61\xf4\x97\x57\x98\xdc\x29\x6d\x38\x08\x77\x4a\xb7\x7e\xdc\x6e\x88\xc0\x83\x88\x25\x5a\xf8\x91\x1c\x08\x93\x65\xeb\xe0\x1b\x3a\x0c\xee\x7e\x1b\x45\x44\x15\xff\x26\xfa\xd5\xe1\x40\x8a\x02\x71\xd8\xfb\xb7\x7c\x5f\x9f\xe2\x5b\xfe\xae\xbb\xf0\x7d\x3a\x13\x90\x35\xa0\x3a\xc4\x0f\xca\x54\x13\x86\xf1\x03\xeb\x10\x1f\x33\x3f\x0b\x72\xf8\xbf\x83\x8f\x10\x12\xd8\x61\xea\xc2\x2a\xb0\xc3\xe1\xf6\x0c\x30\x87\xae\x35\xe1\x36\x3c\x64\x66\x79\xde\x89\x45\x0f\xe7\xba\xd5\x89\xbd\xd4\x0a\x82\x43\x7c\x8b\x16\x27\x43\x00\xb3\x40\xc4\x70\xd8\x1b\x82\x3b\x98\x78\xcd\x4c\xd0\x3b\x07\x63\x71\xb3\x74\xc3\xc2\x8f\xdd\x46\x7d\x08\xdc\xd1\xdd\x44\x98\xd2\x9f\x09\x3c\x87\xb3\x59\x86\x5e\x03\x7a\x28\x83\xe7\x70\x7a\x1a\x28\x9e\x83\x8e\x1c\x37\x5c\xdb\x2b\x41\x37\x67\x07\x46\xae\x00\xe6\x21\x7b\xa5\x40\x60\x87\x63\xf7\x68\xd9\xcd\xf0\x4b\xce\xd5\x6a\xf6\x45\x76\x5a\x1e\xbc\xb9\xab\x85\x82\xd3\x90\x09\xb1\x39\xef\xba\x5b\x41\x86\xe0\xba\x5d\xd5\x0f\x68\x86\x53\x37\xa3\x5b\x55\x57\x77\x07\xf1\x18\xf6\x86\xe7\xd6\x07\xcd\x2d\x1c\x80\x0c\x51\x13\x3e\xdc\x5c\x80\xc8\x12\xd1\x19\xf6\x66\xe8\x6e\xbb\xf6\xd4\x4b\xbb\x81\xfb\x30\x90\x16\x8a\xde\x74\x20\x2a\x0c\x6d\xbe\x77\xdf\x73\xd3\x1f\x76\x8a\xff\x57\x12\x91\xb9\xcb\xaf\x90\x00\x20\x2a\x44\x0e\x4a\x37\x2a\xb0\x47\xee\x80\x25\x44\xe9\x8c\xc8\xa0\xb3\x1d\x42\x4c\xef\x7b\x5f\x06\x40\x42\x64\xa1\x5b\xb8\xb7\x7b\xec\x71\x1b\x8e\x34\x02\xe5\xd6\xda\xee\x09\x32\x38\x0a\xe7\xde\x96\xdd\x46\x96\xf7\xf8\x6e\x83\x27\x78\xf4\x05\x78\xc2\xa9\xe5\x1e\xf0\x04\x63\xc9\x4f\xb1\x13\x0e\xdd\x85\xef\xc9\x70\x39\xc0\x93\x5b\x1f\xdd\x44\xce\x0e\xff\x97\xdf\x21\x78\xee\x69\x3f\x22\x5f\x40\x58\x88\x4f\xf9\xc6\xf1\xb2\x91\x97\xcb\xcf\x55\x7e\xa9\xcf\x64\xdf\x30\xf6\x96\x7e\xed\x66\x51\x4c\x08\xbe\x4c\x90\xcd\x79\xe3\xc3\xa5\xc1\xfa\xd6\x10\xaf\xaf\xef\xcd\xf5\xa4\xdd\xa8\xcb\x80\xe6\x14\x7e\xef\x46\x51\xad\xd8\x5a\x18\x46\x7f\xde\x86\xb4\xd0\x07\xf8\xe6\x58\x5d\xfd\xe7\x36\xe8\xb0\x47\x75\x37\x12\x70\x1e\x69\xfc\x89\x17\xde\x38\x81\xa9\x48\xdc\x21\x1e\x0d\xbe\x3f\x6f\x2d\xfc\x6e\x3d\x6f\x2c\xfc\x53\x77\xc0\x1b\x59\x79\xec\x09\x8a\xac\x54\xd1\xba\x3d\x82\xf7\x00\xfb\xc6\x6c\x93\x93\xff\xef\xfe\x62\x52\x3c\xce\x62\x4b\xd4\xf3\xcb\x49\x8c\xe3\x57\xde\x9f\xdd\x7d\x6f\x76\x96\x23\x4a\xd0\xad\x19\xdf\xcd\xee\x8d\x7f\xd7\x9e\xdd\x2f\xf7\x69\x1c\xc6\x77\x97\xc7\x54\x7b\xed\x0a\x6b\x85\x40\xd4\x4e\x73\x8b\x90\xa4\x8b\xde\x8d\x07\x75\x51\x36\xdf\x78\x6b\xed\x35\xc0\x06\x23\xa3\x97\xdc\x1f\x93\xc8\x81\xfb\x2c\x9b\x9a\x23\x33\xb7\xf9\xe0\xfe\x76\xe1\x94\xc1\x29\xba\xa7\xd7\xf7\x27\x20\x91\xb5\x22\x56\x46\x75\x13\x7b\x7f\x76\xef\xfe\xb1\xfc\x41\xfe\x45\xf7\x9a\x05\xe9\xb8\x3b\x11\x3b\xff\xee\xe9\x25\xf7\x70\x36\xe2\x98\xed\x69\xea\xbd\x76\x4d\xa8\xfb\x52\x1a\xc9\x3c\xbc\xdd\xeb\xd6\xfe\xd6\x31\x3b\x3b\xef\xf4\xc5\xd6\xfe\x74\x2f\x47\x9a\x41\x7c\x42\x1c\x0e\x2f\x11\x3f\xc4\x89\x3c\x3c\x0d\x7f\x38\x63\xf7\x24\xfe\x41\xfe\x79\xe6\xf0\x70\x94\x9e\x99\xff\x0f\x86\x22\x6b\xf2\x1c\x8c\x73\x31\xef\xee\x06\x33\x3c\x24\x1a\xfc\x4f\xf8\x90\x6e\x22\xd9\x10\x1b\xda\x27\x24\x64\x91\xe5\x3f\x06\x40\x76\xf7\xfe\x60\x4e\xca\xc8\xf1\x87\x03\x77\x5b\xf4\x60\x4e\xb2\xa3\x9f\xb3\xf2\xbf\x1f\x72\x45\x5b\x74\xc8\xca\x6e\x58\x88\x07\x2b\xfe\xa1\xd7\xfb\x73\x3a\x49\x6c\xdd\xde\x08\x61\x14\x78\xb0\x25\x65\xb6\x4b\x4f\x72\x51\xb2\x45\x7c\x0c\xab\xac\x39\xe8\x49\x76\x0e\x35\x41\xa0\xe6\x62\x6e\x05\x6a\xf7\x85\x03\x65\x57\x19\x30\xd2\xfd\xfe\x93\xd4\xb3\xac\x58\x72\xa0\x6c\x22\xc6\x7e\xc0\x28\xe7\x83\xcd\x29\xef\xd2\xf1\x7e\x85\xb3\x3f\x58\xf3\x33\xb2\xf5\xf1\x24\x5f\x47\xe7\x47\x71\xcc\x46\xe6\xd9\xe2\x18\xce\xf6\xec\x1d\x95\x83\xe3\xfd\x65\x0f\xfc\x05\x8f\x29\x88\x35\xb0\x63\xba\xec\xef\xc9\x06\xbb\xf2\x53\xb2\xeb\x6e\x81\x54\x8a\xad\xd6\xa3\x47\xdf\x9e\x23\x7a\x94\x6b\x3c\x78\xb0\xfa\x1f\x32\x43\x51\x65\xa6\x6e\xd6\xa0\xca\xf4\x8c\x40\x06\x55\xa6\xe7\x6a\x0e\x7c\xdb\x1d\x1d\x63\x37\x6b\x62\x78\x2a\xae\x89\x56\xbd\x2a\xf8\xfe\xec\xff\x22\x4c\xcc\xd4\xaf\xfc\xa9\x0a\x2c\x56\x3b\x38\x31\x45\x9d\xfe\xf1\x2a\x94\x2e\xd8\x20\xc3\xf4\x0c\xcf\x7e\x0c\xb9\xa5\xce\xf2\x18\xd5\xd9\x2b\xe2\xc0\xc4\xc4\x0f\x7a\xaf\xee\x8a\xfa\x31\x57\x38\x1b\xb6\x87\xe3\xfe\x6c\xf1\x4d\x25\x13\xa6\xf2\xb4\xdd\x04\xdf\x6c\x0e\xe3\x1b\x7b\x83\xba\x6c\x9d\x00\x1e\xf8\x18\xca\x79\xcf\xb0\xee\x9c\x44\x90\x3e\x86\x6c\xf6\x78\xee\xe9\xf6\x2c\xdf\xea\x7b\xea\xf9\x83\x15\x6b\x8d\x0d\xe0\xa1\xc7\xf3\xe3\x49\xbd\xe7\x4f\xcf\x47\x6c\x7f\x78\xcf\xa3\x9b\xaa\x5e\xcb\xcf\x67\xbd\x68\x16\xe1\x05\xb5\x9f\x3c\xec\x09\x00\x37\x9a\x00\x56\x74\xc0\xc5\xe7\x23\x73\x43\xbb\x00\x89\x22\x3e\x44\x66\x42\xaf\x7b\x69\x07\x54\x8a\x4c\xc4\xfc\xf9\x2c\x9c\x11\x5d\x26\x5e\x3a\xd1\xbe\xf3\x6c\x7e\xc6\xec\x7c\xb7\x89\x86\x69\x0b\xc4\x44\x27\x6e\xf5\x7c\x65\x4e\xf4\x01\x68\x13\x59\x0b\xe8\x2b\xa3\x42\x31\x79\x65\x54\x4d\xba\x63\x8b\x44\x15\x55\x42\x21\xf4\x6a\xc6\xd6\x41\xfa\x95\xef\xc0\x9c\x5e\xf9\x0b\x6c\x55\x90\x08\x95\xc8\xd7\x83\x41\x4d\x4b\x2f\x0a\xb7\xb1\x42\x5e\x6e\x42\xea\x91\xf6\x26\xab\x47\xb5\x31\x35\x03\x2f\x3b\x5f\x7c\x73\x0c\x95\xf7\x6a\x76\xde\xe9\x1f\x6a\xe4\x77\x64\x91\x6c\x3c\xde\xac\xee\x80\xfc\x7a\xb3\x1d\x0b\x3b\x79\x05\x44\xd7\x78\xf3\x66\xfd\xca\xcd\x62\x05\x31\xb8\xbc\x59\x2d\x28\x9b\x8a\x65\xdc\x4d\x65\xcd\x69\x05\x77\x44\x32\xac\xf7\x2d\xbb\xc7\x29\xb0\xc8\xfe\x90\xef\xaf\x8a\xb8\x1d\x55\x54\x0d\xa7\x3f\x68\xac\xb5\xf2\x2a\xa4\xcb\xfb\xc5\xa3\x47\x0b\xe7\x5b\x9c\x83\x70\x8a\x17\x0b\xb4\xf7\xdc\x5f\x95\x72\xa6\xe3\x5b\xdd\x8c\xd9\x0f\x44\xc3\xcb\xce\x03\x56\xa3\x77\x94\xdf\xbd\xe4\x60\x14\x6f\xa3\x7f\x58\xbf\x6f\x2c\xb9\xdc\x37\xdd\xae\x62\x91\xbe\x7b\xf9\x55\xdf\xd0\x8c\xfd\x62\x37\x83\x32\x84\xef\x90\x4b\xbd\x82\x39\xb9\x32\xc0\xf2\x10\x51\x66\x82\xe5\x91\xbd\xaa\xf5\x36\xfa\xd0\x11\xe8\x8a\x54\x9a\x81\x67\x6e\x76\x86\x74\x25\xba\xcd\xc0\x63\x46\xf3\xea\xdb\xdd\x38\xa2\x03\xbc\x5d\xd3\x79\x35\xfb\xe7\x0f\xca\xf3\xce\xc7\x9c\x7f\xbc\xe6\x21\x68\xc7\xd4\x03\xfc\x1d\x1b\xa3\x84\xb1\xe6\x3e\x46\xde\x2f\xec\x55\xe9\x2a\xeb\x2e\x04\x11\x3c\xe4\x5e\xaf\x81\xe6\x34\xc1\xbc\x5e\x59\x84\x19\x03\xe0\x91\xb2\xe6\xad\x77\xba\xa3\x81\x7f\xbf\x3a\xc7\x1c\xec\x57\xdf\x69\x43\xc9\xe2\x15\x8b\xc3\x6e\xba\xe8\x7d\x36\xa2\xef\x45\x55\x30\x6f\xbd\x3b\x1c\xdc\xe1\x0f\x98\x8c\x5f\xf2\x92\x84\x67\x1a\xef\x65\xf8\xc0\xc3\x1f\xf4\x3e\x5c\xe6\xdd\x06\x7b\xf8\x28\xc0\x1e\x3d\x3b\xa8\xd8\xe8\x8f\x9d\x48\xc6\x69\xad\x6e\xe6\xe6\xf4\x85\x55\xb7\x56\x77\x54\xdd\x5b\xba\xc0\x7a\xf4\x6c\x2f\xdc\xbb\x22\x16\xa1\x40\xb0\xee\xde\x98\xd0\xaf\x1d\x8c\x8f\x48\xc6\x9b\x87\xb9\xed\x20\x3c\x89\xef\x52\xc6\xb3\x27\xa4\x2f\xec\x12\xbe\x8b\xa6\x5d\xec\xdd\xad\x69\xc3\xc2\xdf\x67\x57\x91\x46\xed\xb0\xe9\x87\xd9\x17\x59\x68\xd4\x9b\xf9\x9f\x44\xa2\x9a\xcb\xc2\xc1\xee\xe8\x46\x6a\x01\xba\xa3\x17\x7b\xfa\xdd\xc0\x9a\xbe\xb0\x77\xd9\x9b\xbc\x86\x05\x90\xbb\xbf\xdb\xc4\x64\x43\x3e\x67\xb4\xbd\xf2\xa9\x71\xa0\xd5\xbe\x9f\xb5\x37\xd5\x3e\x3f\x32\x95\x76\x0d\x94\xb5\x77\xab\xcb\xc8\x8a\x17\xb7\x98\x72\x98\x6a\x97\xef\x0b\x9b\x45\xed\x0d\x4b\xeb\xfe\xfc\x5d\x78\x2e\xca\x54\xb8\xff\x7f\xa8\x6c\x0b\xec\x51\x37\xbf\xe7\x94\xa0\xb0\x3f\x7f\x91\x28\x1e\xd6\xbd\x18\x96\xf4\x3e\x04\xe4\xa3\x17\x9b\xbb\x76\xd9\xd1\x8e\xcf\x93\x54\x5d\xeb\xbf\x63\x37\x64\xf2\xe3\xf2\xcd\xc1\x8f\xd7\x1f\x89\x1f\xfb\x03\xd1\xc4\xcf\x8b\xfb\x8a\x21\x00\x3c\xe2\xcd\xe0\x07\x16\x3d\x76\x98\x9f\x76\x1c\x7d\xd4\x3f\xaf\x7f\x28\x59\xbf\x50\x4e\x7b\xb1\x32\x5c\x24\x2b\x7e\xb7\x6b\x11\x26\x37\x9e\x78\x06\xc3\x04\x92\x21\xfa\xc1\x17\xb7\x9f\x35\x47\xc8\x68\xef\x80\x7f\xdd\xf6\x9a\x68\x87\x51\x8d\xff\xc7\xbe\x4e\xc1\x0b\x1c\xf1\x74\xeb\xf9\x44\x48\xd4\x51\x1c\xb0\x86\x68\x06\xfd\x30\xe8\x5e\x9b\xc4\x36\xbd\xc0\x04\xc0\x5e\xe8\x05\xfe\x0d\xf4\x42\x51\x4d\x01\x6e\xa1\x17\x18\xcd\xe7\x91\xdf\xb1\x7f\xe8\x34\x6e\xe6\xe1\x0b\x7f\xec\x56\x58\x04\x35\x4f\x7f\xd4\x00\xbf\xbd\xcf\x47\xdc\x7d\x13\x4b\x8a\xdd\x7b\xed\xc9\x41\x77\x5d\xd6\xc6\xff\x43\x0f\xc9\xf0\xf3\xcf\x70\x5d\x6a\x15\x20\x34\x74\xc0\xe0\x26\x00\x0d\xdd\x78\x55\x80\x32\x44\x22\x3a\xe5\xb2\x62\xf4\xc9\x66\x4e\xac\xfc\x0d\xca\xa0\xc4\xfa\xb6\x01\x00\x65\x07\x28\x86\x24\xb2\xef\xfc\xd8\xf4\x7b\x4f\x14\x58\x86\xee\xdd\xe4\x0f\xee\x54\x92\xff\xb3\x78\x8a\xff\x13\x9a\xd6\x89\x49\xf8\xed\x6e\xd9\xc1\x9c\x4a\xdf\x05\x38\x2d\x4f\x7f\xe0\x82\xd0\x2d\x0c\x40\x38\x64\xcc\xf7\xe8\x50\x66\x5f\x3f\x04\xb3\xd8\xff\xef\xd1\xa1\xdd\xcf\x1e\x11\xca\xe6\x8a\xf4\x0e\xf1\x02\x42\x43\xd7\x9d\x41\x84\x86\x86\x7c\x00\x95\x41\x44\xb2\x09\x28\x43\x52\x1b\x07\x94\xa1\x97\xec\xff\xca\x10\x6b\x1e\x5b\xfa\xda\x8a\x2f\x00\xf8\x76\x4a\xef\xdd\x3d\x75\x7a\x2d\x8c\x2a\x71\xac\xe8\x55\x9a\xef\x65\x99\x64\x0b\x5b\xb6\x9a\x5a\x04\xbf\xea\x85\xed\xe0\xf7\xb9\x2b\x61\xc9\x7f\x5c\xcb\x2a\xf6\xd3\xde\xdc\xa3\xa4\x01\xf5\xd0\xcb\x4e\xa4\xfc\x6d\x66\x87\x0f\xd9\xb8\xb5\xc7\xd1\x1f\x44\x3d\x56\x7e\x7f\xcb\x4d\x34\x9b\xa2\x0f\x73\x77\xd9\xff\xdb\xd6\xec\x0f\xbb\x13\x36\x08\xec\x43\x2f\xb0\xe4\x6f\xed\xca\x47\xaa\xb5\xb9\x0f\x2b\x5e\x6c\x86\xe9\x95\x84\xb5\x0d\xcf\xc5\x37\x1f\x71\xca\x12\xff\xbb\xb9\xa7\x17\xd7\xe9\xce\x01\xc5\x72\x9d\xbb\x96\xbe\x51\xb7\x43\x5d\x05\x93\xe1\xf4\x3a\x36\x98\x0c\x91\x9f\x52\x50\x7c\x0b\xd3\x64\x6d\xde\x95\x7d\x61\x87\xa1\x01\x82\xc3\x10\x3f\x4c\xa6\x40\xda\x1f\x53\xb1\x29\xfe\x58\xbe\x89\x4e\x5e\x78\xce\x79\x68\xbd\xd8\x72\x17\x74\x9c\x95\x76\xef\x99\xc8\x7d\x1b\x0a\x28\xf8\x09\xbd\x30\x85\x00\x49\x88\x12\xc9\x92\xad\x31\xca\xda\xca\xbb\x62\x24\xcb\xbb\x62\x54\x59\xd0\x03\x6f\x7d\x00\x7a\x90\xcb\x4e\x45\x90\x3f\x67\xc5\xca\x7b\xc5\x50\x3e\x4a\x32\xc0\x6d\x13\x38\x84\x48\x45\x29\x7b\xe3\x0b\x2f\x05\xdd\x20\x7e\x90\x05\xaf\x8d\xe9\x1d\x12\xf0\x0d\x52\xde\x63\x51\x60\x1c\xd5\x2c\xf7\xbf\xfe\xaa\xfa\x2a\x08\x63\x60\x74\x8a\xa5\x87\x9b\xcd\xe2\xc0\xd0\x48\xab\x4b\x04\xd4\x13\xe5\x1b\x44\x83\x5e\xea\x1f\x7d\xa2\x37\xda\x81\x97\x4a\x56\x75\xf8\x1c\xd7\xba\x7b\x89\x42\xdd\x04\x7b\xef\x61\x55\xc5\x87\x43\xee\x5e\xd7\x2b\x1b\xab\xca\xd3\x1c\xcb\x86\xe4\xf5\x45\x43\xd3\x40\x3b\x58\x4d\xb6\x39\xfc\x31\xcd\x4e\x91\x9c\x29\x16\x07\x9c\x3b\x6d\xa5\x49\xdf\x65\xf8\x62\x97\x41\xa3\x9b\x33\xd9\x79\x61\x54\x68\x2f\x5b\xac\x6e\xf7\xa3\xde\x2f\x34\xec\xc2\x0a\x5d\x5d\x86\xea\x84\xe9\x8e\x0b\x1c\x75\xb1\x39\x2e\x2e\x04\x2e\xbc\x95\xe6\xa7\x9c\xae\xd5\x17\x1b\x19\x9b\xef\x02\x30\xa4\x8d\x7a\x0d\x07\xdf\x29\x36\x5d\x54\xf0\xa3\x35\x15\x26\xec\x5f\x96\xa2\xcd\x35\xb5\x45\x9b\xf3\xd5\x68\xcb\xba\x81\x80\x10\xd1\xb5\x81\x81\x10\x51\x3d\xf8\x14\x20\xe2\xd8\x39\xb8\x98\x5c\x5c\x52\x97\x0b\xd7\x79\xa8\xb3\xb8\x7b\xa1\x25\x06\x9e\x66\x0a\xf0\x22\x22\x3f\xc9\xf0\xee\xdb\xb7\x3a\x96\x41\x1a\x65\xd1\xcb\xdb\xbe\x0a\x2a\xf0\x19\xe2\x0d\xd5\x7f\xcc\x83\xb2\x2d\xc4\x42\xd1\xf2\xba\xf0\xbc\x3b\xf0\xc9\xbf\x3a\xba\x73\xe5\x1a\xca\x75\x6b\x91\xe1\x92\xc8\x3b\xf2\xf3\xbe\xd8\x13\xb9\xd3\xca\x6f\x15\xa8\x83\x3d\xbc\x04\x56\xe8\xc9\xdc\x79\x47\x7e\x5f\xfa\xe3\x4c\x38\x62\xbc\xa3\x1c\xaf\xd6\xc3\xcc\x5d\x3c\x09\xdc\xf2\xd3\x4f\x64\x13\x2e\x2a\x17\x1a\x81\x84\xcb\xdd\x62\x70\xf3\x4d\xf0\xf4\xa2\xfc\x66\xc1\x0f\xb2\x70\x1a\x21\x61\xed\xee\xea\x9b\xf0\x56\x6d\x2e\xbd\xfe\x10\xf8\x68\x1e\xbf\x29\xbe\xd3\x3d\x70\xfd\xf9\x86\x00\x2f\x1e\x79\x4a\x30\x08\x00\xae\xaf\x12\x86\x84\xf1\x9b\x65\xd9\x96\x69\x29\xe7\xfb\x18\x58\x81\x53\x3b\x08\x22\x63\x76\x1c\x20\x25\x70\xa1\xb6\xe0\x10\x2b\xe1\xd6\xa0\x34\x8e\x1f\x82\x47\xc8\xf9\xf8\x49\x01\x86\xdc\x59\x70\x6a\x95\xa0\xe5\x81\x7b\x8c\x12\x3e\xcd\xa1\x23\x6f\x02\xbc\xe7\xec\x38\x8d\x48\xd0\xa2\xcf\x92\x7b\x47\x49\xef\xa3\xfa\x8b\x29\x5f\x02\x2c\xd5\xd3\x00\x09\xec\x9e\x34\x9f\x43\xd8\xe6\x15\xfc\x85\x25\xb0\xbb\xd5\xc4\x2d\xc1\x1b\x1e\xe7\xf1\xf3\xd1\x57\x38\x6c\x0c\xe2\x10\x40\x42\x3b\x33\x01\xd1\x24\x78\x19\x1c\x3b\x30\x04\x41\x7e\xb4\x49\x4b\x10\x30\x98\x68\x23\x12\xf0\x23\xc8\x9c\x92\xbf\xa3\xe4\x17\xab\xc5\xa9\x55\x4b\xc2\x1e\xfd\x79\xfc\x10\x8c\xb7\x82\x54\x83\x60\x3d\xdc\x3b\x6f\x82\xc5\x8e\x9f\x2c\x22\x89\x69\xe5\x80\x00\x7a\xcc\xe9\x2e\xff\x1d\xa5\xbc\x62\x06\xaa\xc2\x4b\x40\xde\x64\x9c\x47\x25\xc0\xb4\x55\xe6\x25\x78\xff\xa6\xfc\x11\xb1\x7d\xa7\xbe\xcd\xde\x7f\x08\x42\x35\xb2\xdc\x25\x7c\xfb\x7b\xe3\x87\xc0\xd9\x80\x0a\x19\x04\xa4\xf6\x29\x22\x9f\x04\xcc\xc7\x6a\x57\x12\x8a\xdf\xc8\x3f\xdf\x90\x75\xf4\x52\x2c\xa5\xbe\xa2\x5b\x77\xe2\xe7\x6f\xc2\x67\x18\xb6\x73\x13\x36\x86\x24\x7c\x10\xc2\x27\x06\x43\xd9\xdd\x59\xdf\x4f\x8c\xe4\xb1\x4b\xa9\xef\x3a\xac\xc7\xfc\xc9\x02\xfa\x50\x10\xec\xbd\xf6\x02\x7a\x7c\x8a\x2f\x07\xc1\xed\x75\xaf\xa9\x6e\xc2\xc7\x51\xfa\xd8\xbf\xfb\xfb\xe8\x23\x5e\x37\xb3\xe9\xef\xeb\x61\x77\xdd\xec\xa8\xff\x4c\x15\x60\x72\x24\x60\x50\xea\x40\x50\x4b\x60\x2f\xd6\xb9\xfb\x29\x61\x9a\xa2\xfe\x43\x78\x24\xa4\x1f\xc2\x65\xf8\xd9\x7a\xfe\x10\x98\xa1\xbd\xd6\xdf\x7a\x7c\x3b\x18\xe4\x4f\x8a\xcf\x78\x31\xb5\xa5\x5f\x82\xfd\xf3\x5b\xb1\x0d\x70\x55\xfb\x2f\xa1\xdb\xb8\xf1\x93\x65\x89\x29\x56\xe5\xc6\x65\xbc\xaf\xf3\xa5\x6e\x66\x33\xde\x4f\x84\xad\x1f\x46\x31\x7e\x3e\xda\xfe\x21\xe0\x77\xde\xdb\x66\x36\xf3\xfd\xbc\x50\x59\x36\xaf\x8d\xfd\x3a\x35\x6d\x7b\x09\x5f\xaf\xe6\xf4\xde\x76\x8f\x5d\xaf\x30\xda\xbd\xed\x69\x7f\xbd\x1a\x96\x7a\xab\x3f\x29\xd8\xf6\x9c\x9d\x48\x86\x10\xd4\xac\x7a\xdb\xd3\xe3\x7a\x85\x44\xea\x6d\x73\xb0\xfb\xf5\x50\xc7\x2d\x94\x04\xbc\xd5\x3a\x11\xdd\x21\xec\x35\xcd\x91\x2b\x84\x4f\x4f\x83\x53\x61\x54\xee\x17\x9c\x9c\x74\x70\xc1\xf3\x1d\xe5\x79\x5f\x43\x6b\xf4\x3d\x1d\x9e\x9f\x19\xc5\x81\xc4\x26\x38\x0c\x9b\x2f\x3c\x2f\x48\xa2\x91\x22\x6f\x02\x2a\xca\xd9\xfb\x1e\xca\xe7\x45\x9e\x9e\xe5\x2c\x3f\xa5\x2c\x83\x5d\xe0\x93\xb9\x09\x3b\x4b\xf9\x25\x58\x6c\xfb\xfd\xe8\xbb\xaf\xc7\xff\xf3\x8d\x4b\x42\xfa\x25\x2c\x09\xbf\xdf\x70\xe9\x13\x49\x4f\x82\x80\xce\x6c\xc6\xdf\x51\xde\x1f\x61\xd4\xc7\x3f\x84\x5b\x42\xf9\x21\x54\xbb\x70\xf7\xfa\xfb\xee\x33\x8c\xbe\x9b\xff\xbe\x8f\xa5\x8c\xf3\x27\xcb\xab\xbf\xda\xd8\x2c\xed\x7d\xdf\x69\x8a\x2d\x26\xde\x9f\x2e\x9c\xc7\x4f\x8a\x0f\x4f\xbf\x3e\x4a\xfe\x25\x4c\x09\xe7\x2f\xc1\x53\xb3\xf9\x9b\x42\xf6\x31\xca\x4f\xd5\x41\xa0\x3b\xfb\x68\x3f\x29\xc0\x85\x3b\x3b\x17\x13\x25\x20\x58\xc5\xf7\x91\x80\x75\x58\x78\x99\x4d\xd8\x97\x1f\x7f\x6a\xba\x76\x34\xe6\xfe\x53\x53\xb0\x91\x42\x35\xfa\x2d\xd6\x5b\x55\x63\xf7\xfa\xf7\x33\x0b\xc7\x9e\xb8\xdf\xfb\x88\x8a\x3a\xf6\x22\xfc\x5e\x41\x27\xfb\xd8\x2a\xc0\x7a\x1f\x2e\x47\xf6\xb9\xe7\xe9\x7a\x1f\xf4\xb4\x92\x76\x6b\xd7\x2b\x14\x77\xc6\xbf\x16\x02\x7a\xd7\xd9\xe7\x66\x6c\x6b\x8b\xde\x91\xe7\x6f\x8a\x62\x8a\xdd\x41\xeb\x7d\x9d\x52\xb3\xfc\x66\x51\x37\x99\xe5\x37\x8b\xec\x62\x96\x9f\x62\x17\xf6\xe8\x3e\x1d\xfd\x7a\x38\x3f\xd2\x71\x3a\x71\x83\xa0\x21\x18\x73\x31\x04\xd1\xc0\xc7\x71\xfc\xc9\x85\xd5\xd4\x06\x49\x3d\x9c\x2b\x41\xa0\xa1\x03\x93\x19\x04\xb7\xe4\x65\xeb\x5c\xf5\x78\xd5\x6e\xc7\x21\x07\x0f\x02\x91\xd9\xb6\xd8\xa8\xa1\xfb\xe0\x1a\x7c\x28\x9c\x82\x40\xcc\x84\x71\xa8\x51\xd4\xd3\x41\x3c\x0d\xc4\xfd\x8e\x9a\x76\x2b\x06\xd1\x6e\x20\x88\x2d\x3b\x4e\xfb\xbb\xa6\x77\x19\xe8\xf8\x3c\x7f\x52\x2c\x03\x43\x9d\x6a\x47\x35\xbf\x9e\x44\x8f\xcd\x5b\x6a\x7e\x01\x21\x3f\xf3\x54\xf5\xab\xf9\xfd\x8e\xbd\x73\x1d\xbf\x04\x1a\x7b\xfe\x43\x10\x62\xe1\x94\xe7\x07\xc1\x8b\xbd\xa7\x13\x32\x08\x86\x1a\x3c\x77\xd5\xf3\xbb\xb6\xfd\x41\x41\x52\xcb\x5e\xd3\x83\xcb\x5c\x12\xbc\x22\x75\xee\x41\x2c\xef\xcb\x39\xf7\x38\x9d\x90\x41\x20\x44\xc4\x38\x55\x86\x82\x20\x3e\xda\x39\x7f\xb3\x18\xeb\xf5\x54\x14\xd7\xf2\x7e\x22\x56\x9c\xf3\xe7\x1b\x9f\x2e\xb2\xa7\x93\xba\xd6\x97\xe3\xec\x73\x6c\x0d\x3c\x08\x86\x77\x3a\x5c\xf5\x41\xd0\xb5\x3c\x9d\x3f\x59\x9c\xc3\x06\xe6\x94\x80\x8b\xce\x48\xe9\x87\x80\xf1\xf2\x2c\x5b\x69\xaf\xf5\x47\x03\xff\x99\x2f\xf5\x5d\xb6\x05\x07\x68\x09\xa2\xdb\xa5\x3d\x1d\xda\xfb\xe0\x41\xd5\x76\x0f\xb6\xcd\x8d\xfa\xde\xa1\x40\x70\xfb\xa3\x6a\x1c\x04\x1d\xe5\xd3\x9e\xf5\x6d\x6b\x59\x79\xa6\x9f\x14\x9f\x97\x8a\xd2\x9e\x40\x6d\xab\x5d\x83\xbb\xdd\x12\xbc\xe0\xc9\x25\x6b\x08\xcb\xc8\xc5\x7b\x8d\xd7\xbe\x79\xef\xc0\xf7\x4d\x02\xdc\x68\xe4\xe3\x27\xc5\xd6\x22\x8e\xfc\x43\xf8\xec\xe3\xbc\x5b\xdf\xdf\xcf\x69\xba\x75\xf6\x20\x08\x38\x9c\x53\xfa\x25\x54\x09\xc7\x0f\xe1\xd9\x29\xfa\x0f\xc1\x3b\xb2\x59\xd6\x12\x84\x6f\x13\x7e\x3e\xba\x8c\x4c\x90\xf3\xcf\x37\x80\x50\x0c\xc2\x4f\x29\xcb\x1e\xcb\xf9\x37\x0b\xea\xcd\xc8\xf9\xa7\xa6\x1b\x19\x2e\xcb\x8d\xea\x78\x1f\x51\xd9\xb2\xdc\x28\x08\x18\x9d\x46\x96\xd5\x06\xc1\xeb\x23\xb9\xfe\x66\x21\x6c\xf0\xc0\xb4\x0b\xe1\x63\x66\xe7\xa6\x02\x1e\x84\xe6\xce\xd1\xfd\x58\x10\xba\xdf\x18\xbf\x59\x0c\x5f\x96\x55\x1a\xea\x78\xc1\x9f\x4c\x47\x76\x8b\x5b\xe7\x8b\x9b\x4c\x70\xd6\xb1\x09\x5f\x17\x30\x50\xb1\x11\x04\x37\x9b\x9c\x0d\x40\x70\x87\x32\xca\xee\xa0\xeb\x7d\x8c\xf1\x51\x76\xe3\xae\xf7\xf1\x16\x59\x51\x87\xac\xd7\xcb\x61\xe8\x99\xdb\x3f\x04\x19\x4c\xa9\x3f\xdf\xf0\x98\xad\x10\x03\x42\xc2\xfe\xe8\xee\xa0\xeb\x67\x51\x96\xdd\x41\xd7\xfb\xd5\xed\xb8\x34\x7f\x08\x62\x4a\x15\x85\x64\x10\xf4\xb8\xc6\x38\x23\x41\x79\x76\xec\x14\xa1\x55\x4d\x15\xf7\xf1\x43\x30\x0c\x6b\x75\x73\x15\x04\x2d\x19\xe9\x1f\x82\x15\xab\x9b\xab\x87\xde\x85\x2c\x3a\xf6\x30\xdc\x3f\xb3\xb0\xa6\x9f\x8f\x6a\x58\x19\x5b\x0d\x0f\x02\x9e\x4e\xa3\xaa\x32\xd6\xe7\xc5\x85\xe0\x34\xae\x0f\x84\xd7\x8b\xc4\x04\x8b\x91\x20\x26\x4d\x55\x14\xd7\x1f\x15\x69\xb4\xf3\xfc\x25\xdc\x12\x8e\x1f\x82\xe2\xa6\x6d\x16\xf4\xbe\x38\x26\x9d\xa3\xa5\x3f\xb9\x1f\x9b\x9a\x28\xbf\xa3\x6d\xd6\x11\x0a\x27\xcd\x68\x7b\x9a\x07\xa1\x4a\xf8\x29\x40\xbc\x75\x11\x27\x24\xe8\x78\x79\xfe\x56\x81\xd3\x93\x48\x51\x37\x61\x29\x26\x5a\xfd\xc9\xb2\xd7\x5f\xdb\x03\x1f\x1a\x68\x92\xe0\x08\x7c\xef\x2b\xf0\x4a\x53\x39\x0c\x02\x6e\xf6\xc7\xb9\x59\xc7\xb7\x8b\x35\xda\x23\x84\x65\xa4\x9f\xe6\xd6\x00\x82\xa0\x44\xc7\xf9\x43\xf0\xde\x66\xdf\x0c\x6a\xbd\x4f\xd6\x6b\x78\xf3\x92\xd0\x5b\x84\x3e\x72\xaf\x50\xd7\xcb\x19\x78\x3a\x08\x21\x28\xe1\x12\xdf\x69\xaf\x9d\xf5\x7e\xe7\x26\xfc\x64\xd9\x7b\xf7\xe1\x72\x6b\x3f\xd6\x9f\xd1\x65\x50\x41\xd8\xf0\xd4\xb6\xa5\x1d\xaf\x88\xe5\x7d\xeb\xd7\x41\x30\xe4\x54\xb7\x0b\x83\xe0\x5d\xcb\x5e\x7e\xbe\x21\x02\xa8\x01\x3a\xde\xd1\xce\x1f\xf6\xd3\xd5\x16\x83\xa0\xd8\xec\x6e\x51\xda\xf9\xbe\x86\x35\xde\x1a\x78\x3b\xb7\x14\x18\x5b\x59\x0e\xc2\xb2\xa6\xc3\x2c\xe9\x7d\xbd\xd4\x37\x94\x24\x10\x8c\xbb\xe8\x8c\x0c\xc2\x8e\x95\x7c\xfe\x66\x19\xdd\xeb\xd7\xf9\x97\xb0\x81\x09\xca\x26\xec\x55\xbe\x95\xe5\x20\xfc\x84\xcf\xfe\x4d\x21\x08\xe2\x50\x06\x06\x61\x87\x51\x2e\x3f\xa5\x7c\x3b\x80\xbf\x9c\x22\x08\x4a\xfc\xe1\x0c\x0a\x82\x6b\x78\xab\xd3\x41\x50\xa2\x8d\xf6\xd3\x96\x0d\xe3\xba\x35\xdf\x20\x7c\x3b\x56\xa6\x1f\xcd\xf2\x81\xde\x54\xe2\x5b\x68\x44\x8c\xf5\x50\x97\x0b\xc2\xae\x97\xaa\x49\x10\x76\x44\xd9\xf1\xf3\x89\xef\xdc\xdd\xd1\x7e\x09\x16\x32\x7e\x09\xc6\xad\x19\x2a\x2f\x41\xd8\x30\x09\xf3\xe7\xa3\x9f\x88\x66\x63\xfe\x7e\x94\x70\x09\xad\xff\x24\x58\x3b\x4e\xab\xba\x4b\x10\xd6\x0e\xe8\x64\x8a\xf2\x7e\x4e\xdb\xb9\x87\xa9\xbc\x40\xac\x07\xc1\x2e\xae\xef\x23\x0e\xdf\xd4\xac\xd2\x82\x39\x78\xfd\x65\x8f\xca\x8f\xee\x92\x87\x8a\x48\x10\xf6\xe5\xb6\xfa\x43\xf0\x64\x65\xcc\xdd\xc5\xf5\x5d\xd5\x14\x72\xe7\xd6\xde\x47\x7d\x79\x2b\xe4\xad\xbd\xdf\xf6\x0f\x73\x91\xb6\xfe\xbe\x68\x11\xb9\xef\x9a\xf6\xf7\x7d\xf5\x7f\x4a\x6d\x13\x64\x49\x93\x93\x1d\x09\x7a\x0a\x65\xd9\x75\x10\x8a\x2e\x07\x72\xb1\x20\x8c\xed\xf4\xfa\xf3\x51\xcf\x0d\xe7\x51\x7e\xbf\xb1\x4b\xd9\xcb\x27\x94\x06\xbf\x51\x7f\x2a\x26\xcc\xee\x3c\xfa\x2f\xe1\xed\xff\x23\x21\x04\xbe\xa5\xa8\x44\x05\x41\xac\xd1\xad\xed\x05\x61\x6c\xdf\x9e\xf2\x43\x58\xdb\xf5\x24\x6f\xc2\x3b\xb7\x13\xc6\xcf\x37\xbe\x5b\xfd\x58\x4e\xd8\xc6\xbb\xc6\x3e\x7b\xb7\xd7\xe7\xbb\x1d\x24\xcf\xbd\x26\x67\xec\x1c\x3d\x7c\xc8\x9b\xf0\xe3\x15\xa0\x46\x14\x04\x4e\xbd\x8e\x2c\x17\x0b\xc2\xbd\x53\xf8\xd1\xeb\xc5\x21\x22\xb6\xfc\x66\x79\xb7\x3d\xc3\xa8\x4d\x12\x14\xf8\x63\x8f\x6d\x10\xe4\x95\xee\xac\x21\x78\x38\x33\xff\x49\xa1\x11\x77\xcf\xd3\xd8\xaf\x0a\xe8\x55\x7e\x09\x04\x3f\x3f\xce\xf3\x4f\xe7\xe5\x3b\xb5\x66\xd2\xbd\x1e\x83\xa0\xe6\x9b\x7e\x6b\x3d\x34\x98\xec\x25\x1c\x84\x69\x10\xcb\xf2\x4b\x70\x47\xb8\x67\x75\x10\x0c\x61\x95\x7e\x53\x4c\x45\xcf\xe6\x68\xb1\xcb\xb4\x94\xfe\xdb\xae\x8b\xa3\x9f\xf3\x9f\xbe\xc1\xae\x57\xce\xfe\xfb\x0d\xc2\x77\x1f\xe7\xfc\x87\xb0\xd4\x39\x7e\x2b\xe6\x91\x73\x3a\x7e\x53\xa0\xc6\xe6\x56\x7f\x53\x78\x86\xbb\x0f\x0d\xda\xf7\xe2\x9d\x9c\x8e\x1f\xde\xf2\xa9\x71\xa6\x23\xb5\xdf\x14\xcc\xc8\xb2\x95\xf6\x5e\x5f\x3c\xe1\x4e\xb1\xa6\xde\xd1\x43\x9f\xd4\xd0\x2e\xcb\xef\xf3\xd5\x97\x2c\x6f\xbe\xd9\xe7\xfb\x7d\x7e\xc3\xf5\xd7\xa3\xd8\x7d\x86\x34\x7e\x09\x2b\x36\xb0\x9a\x25\xe2\xf7\xe9\x51\x85\xf6\x23\x08\x83\x04\xfd\xf7\xf7\xa5\x15\xf9\x37\xc7\xd6\x7b\xc7\x3f\x84\xa1\x45\xfc\x37\x4b\x7a\xfe\x07\xbb\x7b\x10\x30\x2f\xe6\x7e\xfe\x43\x90\x3d\xc9\x05\x82\x50\x3c\x8e\x95\x1b\x05\xa1\x7a\x40\x52\x7e\xeb\xc5\xe6\x22\xef\xcd\x3f\x04\xc7\x2d\xfd\xa6\x40\x57\xcc\x23\xff\x7e\x83\xc3\xb8\xfe\x4f\xcd\x43\x0d\xe9\x3d\xff\xfe\xf6\x26\xf8\x56\x3f\x21\xd8\xd6\xf4\x5b\xc6\xb5\xab\xf5\x9b\x05\xb7\x0c\x61\xc3\x25\xdc\xd6\xb3\xfd\x36\xfe\x76\x31\xa6\xdf\xb6\xe2\x2d\xb5\x2d\xde\xfc\xbe\xff\x07\x03\x1d\x04\x9c\x67\xe6\x6f\x5f\x7c\xfb\x80\xe5\xb7\x61\xdb\xfb\xa9\xfd\x93\x82\x7a\xb6\xfe\x5b\x06\xfe\x4d\xed\x9f\x04\x5c\x4c\xce\x5b\x47\xeb\xdf\xb6\x94\xe4\x6d\x04\x84\xe0\x41\xd8\x71\xfe\x12\x18\x92\xf9\xdb\x7b\xef\x1e\xf8\xdf\x8a\xbf\x49\xdb\xc7\xfc\xfd\x2d\x53\xf9\x1d\x66\xad\xd9\x42\x4b\x6f\x82\xea\xd5\xef\x08\xe0\xd6\x18\x33\xf8\xa7\xed\x38\xfa\x45\x4b\x7e\x09\x58\x2b\xcb\xf1\x4f\x45\x5f\x8f\x2e\xdb\x6f\x35\xbc\x77\x71\xb4\xdf\x62\x77\xa4\xa2\x20\xac\x81\x13\x72\x2d\xc1\xa5\xd6\x40\x0a\xd6\x12\xba\xc9\x22\xf2\xc4\x99\x81\x07\x59\x93\x4d\x53\xc6\x75\x70\x11\x19\xe2\x2c\x70\xfa\x45\xc8\x86\x74\xb0\x11\x5e\x33\x19\x2b\xe0\xa8\xf1\x03\xe1\x9f\xb1\x7a\x2d\x63\x0d\x64\x2e\xbb\xac\xc9\x46\x2f\xb3\x9d\x5c\x93\xa8\xa3\x05\xd6\xba\x08\x36\xd0\x51\xc1\xd6\x64\x76\x15\x38\xea\x9a\x1c\x00\x16\x3c\xed\x16\xf7\xf2\x3b\x61\xd5\x17\x37\xeb\x4f\x11\x03\x17\x57\xdd\x4f\x30\xa8\xfe\x5e\x13\x47\x68\xa6\xde\xf2\x1e\x79\xe6\x32\xd8\xe2\xea\xf7\xc0\xc3\x6c\x71\xf5\x7b\xe0\x1a\xb5\xb8\xfa\xdd\x81\x3e\x5a\xd7\xcf\xa9\x1d\x89\xce\x14\x89\x86\x89\x72\xfc\x4f\xa5\xae\xd8\x51\x8c\x12\x5a\xf9\xba\x64\x0c\xdc\x50\x5b\xdc\xfa\x1e\x95\x7e\xbc\x82\x71\xb9\x13\x5a\xd7\x79\xc7\xff\x21\x11\xd7\x75\x3e\xfc\x6f\xfa\x37\xfe\xdf\x85\x7d\xfc\xff\x27\x9f\x82\x75\x9d\xc4\xd6\xb3\x19\x89\xc8\xdb\x29\xf1\x3f\x21\xfe\xb2\x74\x91\x59\x9b\x3f\x84\x48\xa5\xf4\x04\x6a\x43\xa6\xad\x42\x97\xc6\xa2\x5d\xdc\x1d\x1f\xcd\xda\x26\xf0\x88\xac\x61\xf2\x6a\xab\x05\xbc\x78\x13\xc5\x50\x70\xa7\xfc\xcc\x9c\xec\x2f\x2f\x95\xe7\x6c\x69\x28\x6e\x19\x7f\xd1\x75\xc9\xd1\xd8\xda\xaf\x8b\xc3\x92\x8c\xbd\x61\x71\xdd\xfc\xcc\xb8\x6c\x2c\xae\x9b\x77\xc4\xc2\xe2\xb6\x79\x7c\x8c\x2a\x62\x84\x36\x28\xc4\xba\xd8\x4b\x66\x0e\xfa\xd7\x85\xf1\x39\x67\x6b\xc9\x55\x89\x8c\x13\xe3\xba\xbc\xdf\x48\x6c\xdc\x75\x79\xb8\xc7\x2d\xa3\xc5\x7d\xf5\xf8\x61\x99\xcb\x3c\x7c\xba\xd8\x1c\xd6\x06\xd7\xd7\xe3\xd3\x7c\xad\xd8\x9c\x4c\xa1\xc5\xe6\x54\x5a\xad\xdc\xc1\xcf\x65\x5d\x7b\x4d\x27\x0a\xc5\x05\x1b\x50\xcd\x75\xb9\xb6\x31\xc3\xac\xab\xd8\x9c\x62\x2a\x5d\x63\x26\xb5\xc1\x35\xa5\xef\x54\xb6\xa6\x5b\x19\xa7\xb6\x73\xaa\xd8\x9a\x62\x91\xb6\x26\xfb\xc3\xd6\x4c\xea\x5c\x6d\x4d\xe5\x03\xea\x34\xd9\xce\x55\x5c\x60\x47\x5a\x57\xb5\x35\x0e\x7a\xb5\x35\x85\xee\xa8\x7b\x70\xfc\xe1\x7a\xae\xd4\xa0\xda\x1c\xe7\xbe\xa6\x8c\x3d\x54\xd5\xd1\xe9\xfe\x70\x74\xaa\x1f\x50\x02\xed\x3c\x46\xff\xb5\xd5\x75\x8f\x01\xfd\x21\x28\x3a\xe7\xd2\xeb\x6a\xd6\xda\x45\xd9\x76\xad\x7d\x63\xad\xe1\x4f\x97\x07\xd3\x9c\xff\x2e\xee\xd2\xc7\xd7\x18\x2a\xee\x77\x56\x3c\x7c\xd7\xd5\xac\x75\x32\x99\x83\xd0\x4d\x66\xad\x9d\x2c\x38\xc8\x70\x8c\xb2\xb8\x74\x7f\x7a\xc9\x70\x5d\xf2\xe3\xe4\x8c\x40\xa0\x66\x04\xd1\xe2\x2a\xf3\xb4\x6f\xd8\x36\x6b\x91\x5c\x78\x96\x7a\x9c\xb0\x3e\x2e\x0b\xb1\x79\x5e\x9c\x20\x76\x36\x46\x6b\x1d\xe7\xbf\xfe\xc2\x51\x6f\xe1\x65\x36\x70\x21\x5e\x38\x99\xb1\x19\x5f\x6b\x07\x59\xe5\x5f\xa3\x2b\xf2\xaf\x91\xe5\xf8\xb7\x93\xcf\xc4\x44\xa9\x1a\xfc\x0b\xe4\x9b\xf9\x9e\x7f\xfd\xe5\x7a\x5f\x07\xd8\xea\x99\x7f\xbf\xa0\xfa\x89\xf5\xaf\xbf\x40\x31\x5b\x9c\xce\x60\x6c\x58\x58\xcb\x88\xd4\xb5\x38\x7d\x74\x32\xe3\x3f\xc6\xde\x71\xe1\x3d\x86\xa6\xb2\xf0\xe4\x22\x02\xd2\xc2\x91\x4b\x8e\x82\x1b\x17\xa2\x77\xe1\xc4\x05\xe4\xe4\xe2\xbc\x07\xab\xc9\x5a\xb1\xe6\x5a\xf9\x9f\x3d\xe9\xe7\xff\xca\xed\x56\x8d\x8f\x33\xbe\xa8\xda\x9c\x46\x2e\xdc\xa2\x80\x42\x59\x38\x45\x21\xd2\xd7\xe2\x46\x21\x13\x7d\x7d\x39\x3e\x4e\xe9\xb1\x49\x1e\x98\xb8\xd7\xc2\xe3\xf0\x34\x05\xe1\xe9\xff\xff\x8f\x44\xfe\xe3\xfa\x2f\xff\xd7\xf7\x6f\x7f\x1f\x47\xb4\xf4\xef\xe3\xe0\x00\x35\x7e\x47\xd9\x7f\x1f\x47\x27\xbc\x75\x10\xae\x13\x02\x11\x6f\x0e\x92\x84\xb6\x13\x0f\x3c\x73\x3a\x94\x47\x8a\xd1\x47\x82\xf2\xf8\x59\x42\xca\x44\x8f\x1d\x80\x9a\xff\x7d\x1c\x7a\x92\x1c\x41\x79\xa7\x14\xad\x3e\x41\xf9\xcc\x65\x2c\x81\x0c\xc5\x5c\xcb\x40\x76\x41\x59\xe6\xe2\x8e\x61\xcc\xa3\xe3\x8c\xbd\x73\x3c\xa6\x41\xda\xa2\x7c\x60\x1b\xe3\x41\x1d\xd9\xee\x1f\xc9\xaf\x83\x35\x77\xea\x1c\x77\x00\x29\x17\x0f\xf2\x12\x87\xf5\xc8\x07\x2d\x06\x82\x0d\xb7\xb1\x03\xd0\xb5\x78\xb0\xb6\xa2\xee\x20\xa4\xc5\xc3\x7c\xb1\xda\x0e\x70\xce\xe2\xf1\x49\x4b\xd0\x16\x34\x2f\xc8\x63\xca\x38\x80\xf9\x8a\xc7\x6d\x3a\x4a\x08\xad\x34\x1e\x3b\x6a\xac\x34\xcb\x20\xea\xf8\x81\x3f\xc5\x91\xa7\x75\xc3\x2e\x8f\xf7\xfa\x01\xb4\x52\x3c\xa2\x2a\x87\xa9\xae\x47\x12\x5b\x16\x9c\x59\x8f\x7c\x9b\x13\x1b\x0a\x3e\x9a\x07\x80\x47\xf1\x20\x67\xa5\x6e\x8f\x39\x01\x22\x3a\x70\x45\x3d\x40\xd3\x89\xc7\x23\xad\x43\xfb\xa4\x59\x42\x70\x88\x03\x70\x9c\x78\x54\x3e\x37\x21\xd1\x71\xe0\xcd\x9c\x68\x6f\x07\x78\x33\x7f\x1f\x05\x96\x4e\x5c\xfb\x03\x50\x97\x78\x58\x40\x08\xda\x03\x44\x96\x78\x58\x40\x70\xf1\xf3\x8b\x95\x16\x8f\x65\x74\xc6\xf9\x6f\x7f\x27\xe7\x6f\x3a\x70\xf1\x0c\xee\x9c\x8e\x10\xd1\xf1\x00\x4e\x62\x40\x99\x52\x2e\x1c\xc3\x82\x12\x72\x2b\x1e\x40\xf7\xb1\xdb\x4a\x47\x2f\xd0\xfa\x0c\x9e\x27\x69\xf8\xf1\x01\x29\x24\x73\x02\xd7\x3b\x1e\x85\x54\x15\x52\x93\x74\xfd\xeb\xaf\x09\xbe\x56\x02\xa5\x3b\x1e\x1f\xa9\xce\x20\x35\xbe\x05\xce\xb6\x1e\x14\x09\x9c\xed\x78\x84\xfe\xc4\xad\x93\x74\x76\x53\x45\x25\x06\xb7\x47\x12\x90\xd8\xf1\x20\x55\xcc\xda\x04\x02\x75\x3c\xbc\x4b\x05\xc5\x3a\xe0\x07\x98\xd8\x93\x26\x90\xa6\xe3\x31\xa5\xf1\xb1\x87\x46\x82\x90\x3c\xb8\x87\x9f\x52\x28\x50\xf1\x50\xa4\x84\x66\x93\x52\xea\xd2\xf0\x54\x96\x72\x4b\x71\x9b\x12\x94\xc6\xa7\x92\x16\x81\xbc\x69\x4d\x1a\x11\xff\x4f\x28\x97\x94\x3b\xf2\xe5\xa0\x74\xc6\x27\xb1\x51\x4b\xec\xdc\x12\xc0\xa6\xf1\xc0\x6d\xb4\x1e\x7c\x6b\x98\x8e\x90\x01\xa1\x13\xa4\x34\x2c\x11\x53\x73\xc5\xb1\x27\xa5\x61\x4e\xae\x1d\x15\xbe\x3f\x2c\x91\x73\xcb\x5a\x62\x69\xa6\xf4\x4a\x63\xd7\x55\x3b\x5d\x9d\x0f\xda\xcd\xda\x8e\x74\xd1\xb1\xe0\x02\xc6\xe3\x0a\x06\x1c\xdf\xcf\xf3\x85\x82\xb3\x7f\x22\x4a\x74\x72\xc5\x25\x60\xcc\x4e\x71\x00\x13\xd0\x65\xf1\x88\x81\x3b\xfd\xd8\x75\x4b\x7a\x21\x91\xf3\x66\xe0\x58\x8b\x67\xc3\x15\x2e\xe5\xe0\x9a\x7f\x27\x81\xc0\x1a\x66\xd8\x54\x9c\x2c\x85\xf0\x8d\xc0\xd0\xa4\xe2\xf4\x2c\x03\x99\xc8\x94\x2a\x30\x88\x54\xa6\x1e\x91\xf1\xb1\x02\x7f\x48\x65\xea\x0e\x1f\x5c\x35\x95\xf9\x40\xbb\x63\xcc\x39\x63\x4c\xe5\xa6\xd7\x0a\x16\xc3\x03\x6d\x23\x95\xd7\x32\x61\x85\xc2\xc6\xa4\xf2\xd1\x84\xc2\xe6\xea\xe0\x78\x25\x95\x55\xa5\xc1\xec\xb9\x90\x95\xea\x41\xde\x4a\x7c\xb8\x12\x62\x31\xd5\x46\xc7\xd5\x16\x8a\x3f\xf6\xa2\x54\x3b\x95\xab\xd1\xaa\x41\xb4\xa0\x54\x87\x24\x40\x67\xb9\x4a\x91\xc0\xd5\x89\x47\x25\x63\x14\x59\xad\x9a\x20\x2d\x8d\x08\x65\x09\x38\x94\x78\xf0\x31\xba\xa8\x59\x8b\x76\x40\xa2\xb2\x0d\x06\x94\x1a\x46\xdd\x86\x83\x67\x02\x09\x25\x1e\x2f\xcb\x2e\xca\x6c\x8d\x9e\x6c\xe8\x4b\x89\xeb\x46\xa9\x39\x4f\xc1\x9f\x88\xb1\x8a\x42\xbb\xf3\xb4\x77\x1a\x35\x82\xdd\x10\x9f\x2f\x1e\x48\x3a\xcc\x43\x69\x2e\xa6\x1b\x51\xc2\x82\x16\x8d\xbf\x9d\x6e\x37\x3a\x4d\xfa\x85\x50\x57\x0e\xff\x7f\x89\xe6\x44\x78\x8f\x78\x54\x51\x1a\xa2\xee\xb7\x8b\x82\x38\x1a\xb1\xa6\xa3\xa2\x1c\xb1\xc5\xe3\xd5\xf2\x11\xe9\x3e\xa4\x76\xfa\xdc\x60\x82\xb2\x90\x3e\x27\xda\xf7\x78\x76\x18\xea\x4f\xc2\x1b\x3f\x1e\xf5\x5f\x7f\x15\x02\x9f\x24\xbc\xe5\xe3\x91\xfe\xf5\x57\xa9\xb1\x9d\x49\xeb\x5e\x90\x0c\x70\x14\x3c\x3b\xad\xd7\x54\x6f\xfa\x71\x3a\x4f\x1c\xc1\xc6\xa3\xfe\xb8\x1f\xe7\x83\x11\xc9\x47\x48\x10\xb6\x68\xf9\xa0\x1b\xf2\x11\xdd\x80\x33\x56\x3e\x42\xaa\xfe\x9d\x0f\xd0\xb7\x07\xb9\xa8\x54\x3e\xc0\xdd\x0e\x9e\x9e\x0f\x86\x31\x1f\x0e\x23\x55\xcf\xc7\xb9\xf3\x4d\xf9\xc8\x0c\x5a\x30\xfd\x78\xd0\x65\xb8\xef\xe6\x23\x36\x3c\x7f\xe7\x63\xb2\xc5\xe5\xfb\xd3\xef\x03\xda\x04\xe4\x48\x3e\x82\x49\xc6\x83\x20\x2c\x6c\xa8\xf2\x31\x6f\x69\xa1\x98\x15\x2a\x0f\x33\xc8\x47\x30\x03\x5c\xcb\xb2\xda\x51\x46\x3f\xc1\x35\x26\x1f\xab\x4b\xb9\xe0\xb0\x24\x5a\x66\x5b\x64\x3b\xff\xed\xef\x2c\x03\xcf\x27\x6e\xa4\x8d\x68\x45\x19\x84\xf5\x78\x4c\xa7\x6a\x83\x76\x49\x33\x5d\xac\xa2\x9c\x90\x78\x19\x58\xf1\xf3\xc0\xf9\x3d\xa7\x74\x49\x8b\xcd\x33\xbb\x8f\x9c\x32\x35\x4b\x5c\xd9\x6f\x27\x24\xe4\x6c\x06\x04\x7b\x70\x9b\x23\xa7\x90\xb9\xf1\x80\x11\xe0\x22\x9d\x41\x89\x8e\x07\x05\x10\xef\x3d\xcb\x54\x73\xc2\x8b\xee\x70\x70\x41\x55\x8e\x07\x1a\x45\x19\x54\xe4\x2a\xd2\x06\xa5\x46\xbb\xd2\x6d\x45\xee\x5d\x04\x35\x79\xcd\x0a\x0f\x39\xb8\x7c\x96\x55\xbb\xb2\x6a\xd7\x89\x4a\x95\x33\x6a\x46\xce\xf8\x45\x9f\x84\xd6\xcc\xe0\xcc\xc6\x83\xf8\xea\x84\x4a\xcc\xaa\x59\x19\xe0\xd8\xa0\x91\x37\x0d\x69\x13\x5a\xf0\xbd\x0c\x8a\xeb\xdf\x39\xb3\xbf\x3f\x39\x4b\xc9\x00\xb5\xc6\x83\x08\x18\xc4\x1b\xcb\x39\x9b\xae\x98\x8e\xb1\xc8\x25\x4b\x6b\xd2\xa8\x4b\xb9\xa5\x3d\xd0\xe8\xbe\x5c\xac\x4b\x35\x6f\x21\x6f\xad\xd2\xcc\x1b\xdc\x2a\xa3\xeb\xc5\x03\x86\x1e\x5a\x6b\x56\xe3\xcb\x79\x20\x44\x26\x35\x1e\xd6\x24\x3a\xbe\x37\x1b\x06\x3f\xcf\x88\xa4\xde\x0e\x32\xda\xed\xf9\x0a\x9e\xc9\x6d\xb7\x9c\x5f\xe6\x21\x00\x91\xe7\x49\x60\xf0\x5c\x51\xee\x73\x35\xa2\x10\x01\x21\x32\x58\x01\xf1\xd0\xa3\x34\xf4\xc7\x82\xdf\x50\x3c\xaa\xe6\xa2\x16\xb4\x94\xa1\x89\x03\x85\x7d\xbe\x7c\x31\xdf\xfe\x2e\x6c\x01\xcf\x42\x98\xa6\xc2\xc9\x7b\x3c\x4e\x69\x29\x68\xdd\xef\x81\x65\x7e\x72\x9f\xb2\x70\x7d\xee\xef\xc2\x39\x97\x8e\xf6\xe5\x43\x60\x16\x6f\xbd\x61\xa1\x29\x5c\x64\x89\xc7\x43\x4e\x6a\xc2\x21\x42\x3c\x8c\x4c\x12\xea\x62\xe1\x66\x45\x3c\xd8\x7f\xb3\x97\x2e\xeb\x36\x2f\xb8\xda\x27\x82\xaf\xc0\xc2\xe2\x71\x4a\xab\x41\xfb\xa8\x1d\xbb\xa7\x82\x34\xaf\xf2\xad\x7a\x1c\x36\x22\x36\x01\x55\xbd\xb2\xc2\x62\xd2\x09\xbf\xa9\x47\x3d\xa1\x01\xfc\x70\xe2\x28\x51\x8f\xe0\xcd\xf1\x28\xd0\x0a\xdf\x9b\xe6\x9d\xfa\xf7\x87\x7a\x50\x8f\x58\xfc\x7f\x57\x38\x48\xa4\x83\x76\x49\xe3\x12\x9f\xc1\x79\xeb\x71\x5f\xd2\xf6\x55\x00\xca\x08\x95\x3d\x1e\x57\x54\x59\xd2\xfb\x40\x7a\x6d\x6d\xb0\xd6\x7a\xb2\xa4\xea\x19\x4b\x4a\x86\x5f\xcf\xe3\x91\xc4\xd9\x18\x6e\x5e\xf5\x3c\xa5\x9d\x66\x0d\x35\xbd\x9e\x68\x80\xf5\xc4\x10\x7a\x12\x71\xbf\x9e\xc9\x74\xc9\x74\xa1\x83\xd4\x33\x53\xe3\x33\x46\xbd\x20\x8f\x2a\x2a\x6e\x3c\xa2\x72\x88\xe1\x7a\x86\x30\x8f\x47\x0b\x52\xa2\x80\xcb\x54\x31\xe6\x85\xbb\x8b\xf5\xbc\xad\x6e\xec\x2f\x0b\xd1\x3c\xeb\xf9\xd2\x99\xe7\xeb\xac\x8b\x99\x53\x93\xad\x4a\x30\x8a\x82\x73\x4e\x95\xdb\xd5\x64\xd4\x02\x76\x93\x35\x31\x77\x6a\x8a\xb9\x53\x50\x37\x6a\x8a\x39\x13\x0f\x2f\x0e\xcd\xe8\xb8\x64\xdd\x80\x9e\x4f\x27\xcc\xb3\x26\x36\x50\x15\x10\xf8\x92\x2c\x15\x95\xa9\x8a\xe5\x7e\xa6\xa3\xfe\x51\x80\xd7\xe4\xc8\x25\x47\x8e\x3b\x8f\x15\xb4\xf0\x78\xcc\xf8\x72\xec\x71\x6b\x3e\x48\x96\x31\xc6\x17\x0c\x3c\x35\xdb\xfd\x30\xaf\x74\xda\x63\x40\x53\xc7\xe3\x91\x16\xb5\x82\x7b\xc4\xc3\x5a\xc5\x5e\xa0\x66\x74\xfc\x9a\x8d\x86\x8d\xb3\x5b\xcd\x2f\x13\x50\xec\xd8\x13\xad\xaa\x16\x87\xb3\xc4\x70\x16\x42\xb7\x54\x50\x42\xe3\x61\x56\x6a\x0c\x54\x65\x3c\x3e\xb2\xd2\x8f\x85\x6d\x73\x2d\x5f\x8c\x27\x7b\xa5\xaa\x0a\x58\xab\x17\x10\x6c\x45\x75\xb2\x55\x8e\xbd\x4e\x70\x76\x6a\x65\xb7\x54\x2b\x51\x52\x30\xa3\xd7\x5a\x2f\x49\xe2\x57\x8d\x28\xa1\xc2\xbe\x2a\x30\x7b\x41\x8b\xc6\x36\xa4\x41\x6d\x1c\x52\x14\xae\xba\xd7\x76\x32\xf0\xcd\x98\x77\xc4\xc8\xac\x0d\x4e\x5d\x81\x7d\x0b\xc5\x80\xbc\xcd\x74\x20\xa5\x9d\xb0\xa5\xda\xba\x34\x4e\xb4\x0b\x77\xc9\x6b\x73\xe4\x1b\x3e\xe8\xa5\xc4\x0e\xbb\x36\x5b\xdb\x88\x64\x78\xa2\x09\x56\x40\x88\xe2\xe1\x9d\x82\x60\x2e\xb5\x3b\x31\x81\x15\x8a\x74\xf1\x3d\x20\x79\xe2\xc1\x69\x35\xee\x7a\x15\x68\x9d\x78\xc0\x0e\xf1\x94\xab\x00\xe3\xc4\x83\xdb\x2a\x98\xee\x6b\xcf\x5d\xda\xf8\xd7\x5f\x85\xbb\x84\xb5\xe7\x57\x12\xcb\x17\x1f\xd5\xda\x0b\xd5\xeb\xfa\xaf\x73\x51\xba\x82\xb0\x12\x0f\x2f\x7b\x84\x50\xab\x7d\x9a\xd7\x7b\xcb\x5c\xd6\xaa\xdd\x79\x01\x96\x45\x29\xc1\x5e\x2b\x30\x0f\xf1\xe0\x08\x0b\x8f\xb2\x3a\x9c\x66\xc3\x69\xc6\xd9\x4e\x1d\xa8\x04\x75\x0c\x2f\x84\x84\x3a\x54\xc7\x80\x1b\x0c\xcf\xc4\xb9\xd8\x58\x07\x6a\x42\x1d\x97\xbd\xc2\xfc\x21\x12\x79\x3c\xbc\xd5\x01\xc7\x19\xeb\x96\xf6\xa2\x77\x46\x6b\x89\x26\x1e\x0f\x5b\xd6\xa2\x65\x84\xff\x8e\x87\x03\x19\x9a\x48\x9d\xce\xe4\xc9\x4c\xc6\xa3\xab\xa2\x8f\xc7\xa3\x99\x2c\xe6\xc0\xec\xd2\xbc\xb4\xc0\xc9\x47\x25\xda\x70\x3c\x82\x59\x71\x9e\x51\xe7\x47\xe5\xe6\xe7\x50\x20\x10\x2e\x3f\x87\x29\xbf\x70\xdd\xa1\x62\x21\x8f\x47\xf5\x96\x7f\xf4\xd3\x25\x4f\xbf\x2e\xaf\x56\x1c\xd1\x27\xc4\x97\x8c\x47\x30\xba\xca\xa4\xbd\x9d\xf0\x84\xf9\x2b\x04\x89\xaf\x77\x67\x6e\xdf\xba\x9b\x72\x2f\xaf\x12\xa1\x2e\x1e\x48\x88\x92\x49\x77\xc1\x3f\x8c\x18\x77\x72\xa7\xa6\xde\xf2\x4d\x42\xbc\x05\x2d\xda\x7a\xdb\xae\xfb\x35\x06\x41\x68\x21\x95\xfb\x55\xf1\x88\xf9\x84\xa1\xb3\x3e\x99\xcf\x11\xa5\xa9\x60\xc4\xac\x84\x09\x8a\xc7\xbe\x73\x42\x32\x04\x78\x7d\x14\xe0\xa8\xfb\xf5\x59\x94\x4a\x04\x9e\x74\x3a\x38\xc4\x4b\xf9\xbb\x1a\x29\xe5\x2c\xa1\xbb\xd7\xb7\x53\x13\xe2\x91\xa4\x93\xdb\x37\x95\x88\x18\xf1\x08\x45\xc7\xca\xe1\xc8\x16\x0f\x74\x0e\x8e\x9f\x2a\x9e\x36\xf1\x08\x5e\xc1\xae\xbd\x7e\x95\x3e\xf9\xaa\x7d\xc2\x8c\xfd\x1a\x33\xe7\xd3\x8e\x5d\x43\x49\xaa\x9f\x5c\xeb\x6b\xde\x58\xa1\xdb\x3f\xc7\xff\x8b\xf1\x2f\xd8\x4d\xaa\x7b\xa2\xca\x75\xf5\xc8\x1a\x8d\xf8\x1e\x1a\x86\x9b\x6a\xc1\xa6\x50\xb9\x52\x1e\x0f\x0d\x93\x4c\x89\x0f\x9b\x42\xc5\x0f\xa5\x60\x97\xad\xf8\xad\xc6\x63\x42\x8a\xfa\x2e\x65\xab\xfe\x99\xa5\xc2\x3b\x96\x8c\x7c\xc9\xc8\x6b\x68\xbf\x75\xc9\x16\xb9\x38\x5b\xf0\xd9\xa8\xcb\x4e\x5f\x76\x7a\x85\x4d\x2c\x0c\x08\x75\x71\x41\xef\xac\x2c\x4e\xdc\xd1\xe3\xb1\x69\x7c\xce\x75\xad\x57\xac\xea\x7f\xc5\x3f\x21\x1e\x00\xe3\x0e\x48\x1f\xcd\xd7\x8f\xaa\x73\xd2\xd6\x0e\x6a\xd2\x8e\xda\x8d\x30\xd8\x83\x36\xa5\x11\x41\x01\xb7\xaf\xa6\x0a\xd2\x50\x41\xd2\x59\x5b\x86\xf6\x49\x5b\xd2\x6a\xd0\x96\x59\x17\x59\x5b\x94\x70\x86\x3c\x88\xc7\x17\xa4\x58\x73\xed\x64\x55\xb7\x13\x6f\xc6\x62\xa1\x67\x1d\xd0\x62\xb1\x14\x22\xf6\xb7\x93\xad\x49\x3b\x87\x4d\x8d\x7d\x53\x3b\xd1\xb7\xda\xa9\xbe\xc5\xcd\xa3\x76\x4e\x3f\xa7\xbe\xc5\xbc\x6e\xe7\x63\x5e\x55\x3f\x10\xaa\xda\x69\x85\xcf\x5d\xe1\x99\xff\x28\xd4\xdb\xf9\x3d\x64\xf9\x0c\xc0\x18\xf3\xb4\x25\xb6\xb0\x2d\x1d\x31\xee\x04\x03\x6e\x68\x22\xf1\x08\xc6\x4a\x94\xd8\x96\x06\xcd\x66\x0f\x95\x0c\x51\xda\x92\x15\x4d\xc4\xaf\xc0\xbd\xa2\xa9\x68\xb4\x44\x5c\xc6\x93\xa1\x6b\x89\x69\xda\xd8\x43\xa5\x13\x44\xbf\x86\xfd\x38\x1e\x5c\x3a\x69\x21\x1e\x5a\x2e\x7c\x8e\xad\x4a\x2c\xd3\xa8\x09\x08\xf9\xf1\xc0\xb5\x89\x60\x33\x2d\x33\x9f\x5b\xf6\x8a\x0f\xe6\x81\x96\x3f\xbf\xf7\xf9\xbd\xd8\x7d\x34\x50\xd9\xe3\x31\xcd\x1b\xfd\x5d\x30\x2b\xb6\x62\x0c\x1e\x2e\x02\xb6\x62\xfd\xca\x5e\x46\x31\xb7\x5a\x79\xf8\x5e\xc1\xae\xd5\xb9\x19\xd9\x0a\x26\xf8\x56\xbe\xf3\x5f\x7f\x55\x62\x54\x34\xec\x4d\xf1\xb8\x84\x40\x8c\xac\xd5\xfe\xac\x87\xb4\xe0\xf1\xad\xa2\x9a\xb4\x1a\x8c\xb8\x72\xa3\xa1\xd5\xfc\x48\x7a\x4d\x16\xad\x00\x41\x3a\x1e\x39\x92\x05\x1b\x6d\xd5\x42\xab\x85\x52\xb7\xba\xfc\x18\x57\x74\x4f\x0e\xbb\x5a\x5d\x9f\x34\xfb\x38\x38\x46\x53\xbb\x68\x68\x17\xe9\xe4\x98\xa8\x35\x44\x41\x6b\xc1\x9b\x2a\x3b\x92\x06\xa8\x6b\x3c\x1e\x61\x3d\xe3\x73\x0d\x36\xda\xb0\x2c\x55\xc2\x9a\x34\xa0\x56\xe3\xf1\x7a\x7d\x8b\xac\xdd\x64\x6c\x66\x1a\x3b\xdc\x06\xb6\x68\x3c\xf0\x1b\xe3\x56\x64\x03\xe9\x33\x1e\x8f\x01\x41\xa3\x15\xed\xa1\xad\xed\x41\x14\x12\xaf\xbb\xf5\xc4\xec\x01\xb1\xaf\x9e\x39\x92\x81\xfa\x16\x8f\x12\xa4\x60\x54\x0d\x1c\xae\x78\xd0\x73\x5c\x35\x6b\x60\xf8\xc4\x83\x3d\x0f\xe8\x98\x6d\xb4\x05\xad\xb3\x66\x7a\x8d\xda\x0d\xc7\x7f\x4c\x2f\x5d\xd1\x58\x30\x64\xe2\x71\x4b\x23\x1d\x1b\x92\x36\xdc\x90\xe0\xc4\xda\x06\x5b\xad\x26\x08\x4a\x1f\x09\xda\xb2\xdc\x65\xb9\x4c\x0a\x7c\x29\xe2\x61\xb9\xac\xf3\xd9\xa9\xcb\x24\x82\x4c\xe1\x94\xad\xcd\x97\xd6\x4e\x1c\xfb\x4a\x0b\x8e\xdb\x26\x3c\xad\x4d\x79\x1a\x97\x17\xdb\xe5\x6a\xf4\xc0\xbe\xe3\x84\xda\x38\x47\x8e\x87\xe5\x86\xc2\xda\x2e\xac\xc9\xed\x22\xfe\xcc\x09\x68\x5e\xbb\x50\x9b\x1a\xa2\xfd\x2c\x38\x11\xb4\xeb\xf2\x7b\x57\xcc\x32\xcc\xe8\x8d\x78\xe3\xf1\x38\xcd\x9a\xa1\x7d\xd2\x96\xb4\x18\x70\xc2\x7c\xc7\xc3\xe5\xe3\xe7\x5e\xa6\xd4\x65\x2c\x52\xbb\x8f\xa0\xd6\xf1\xb0\xca\x21\x4a\x1b\x61\xa2\xe3\x61\xf5\xe0\x20\xf7\x41\xb7\xdc\xb8\x76\x74\x3c\x5d\x1b\xa1\x79\xe3\x31\xa3\x7a\x70\xbf\x9b\x0d\x72\x43\xcd\x88\x62\xf9\x9c\x3d\x4a\x84\x5e\xc3\xa8\xb5\x7b\x4a\xba\x10\xe0\x23\x91\xd5\xc6\xde\xc4\x02\x38\x81\x6d\x6e\xb7\x03\x4e\x7c\x5a\xe3\x3e\x35\x62\xc7\xc6\x63\x9a\x8c\xca\x71\xc2\xd4\x6e\x62\x9e\x9f\xe0\x0a\x37\xa2\xba\xc6\xc3\x0b\x77\x30\xd0\xfb\xb3\x61\x5e\x7e\xc3\x0b\xb6\x11\x8c\x33\x1e\x85\xa8\x32\x31\x1d\x1f\x27\xb7\xa1\x2e\x8d\x12\xd6\x1e\xd9\x16\x01\x02\xcf\xc2\xa1\x43\x7b\x4d\xf7\x26\x3f\x47\x2b\x5e\x45\xc7\xeb\x7d\x79\x4c\x3a\xed\x2b\x54\x59\xef\xd3\x8e\x5b\x6c\xfb\xd8\x35\x36\x6f\x17\x75\x62\x18\xb7\x8f\x43\x9f\xf6\xe1\x45\xd0\x89\x3e\xdc\x08\xc7\x13\x0f\xb6\x45\x8a\x27\xd5\x84\x86\x9a\x50\x0b\x43\xa1\x96\xd0\xb6\xb7\x6a\x3d\xa0\x7d\x66\xfd\xcc\x0a\xf7\x59\x9c\x1f\xb4\x25\x64\x08\xa8\xf7\x6d\x39\x55\x96\x3d\xc5\xb5\xae\xee\xf9\x6c\x3f\x74\x34\x80\x87\xf4\x83\x4d\x72\x3f\x10\xf6\x05\x57\xb7\x7e\x30\xa5\xba\xc7\xad\xb3\x9e\x91\xee\x8c\x1d\x42\x3c\xf0\xdd\x89\x85\xd6\x4f\x84\x43\x3f\x8d\x9c\x8f\xbb\x6d\x3f\xb1\xf6\x76\xe4\x65\xd2\xd0\xd5\x95\x70\x1d\x09\x97\x34\x74\xf5\x84\x00\xea\x29\xb8\x70\xc5\x34\xd5\x13\xd6\x80\x9e\xca\x01\x29\x0a\x4d\x45\x92\x38\xda\x35\x91\x0c\x73\x58\x4f\x98\xc3\x0a\xc7\x76\x3d\x35\x6a\x92\xbc\x84\x42\xbc\x8c\x9e\xba\x25\xe0\x24\xaa\xd9\xac\x27\x1b\x96\x5c\x2b\x44\x9f\xee\x9e\xec\x76\x4e\x76\x2b\xe8\x84\x3d\x63\xc2\xea\x59\x13\x56\x1f\xe5\x8f\x92\xbd\x7b\xa6\xdb\x3d\xd3\x1d\x44\xb0\xec\x19\x0d\xb4\xe7\xd0\x40\xf5\xef\xeb\x1e\xdf\x76\x8f\x6f\x27\x06\xf2\x9e\x0b\x95\xc7\xf4\x57\xb1\x15\xf7\xec\x40\x65\x55\x61\x6e\xfe\xf5\x6c\x1b\xf3\x6e\x63\x27\x2b\x66\xc0\x9e\x87\x7d\x11\x62\xb7\x63\xda\xfb\xbb\x67\xb6\x11\x05\x58\xb5\x5e\xd8\x48\xf6\xc2\x46\xb2\x8c\xe0\x39\xbd\x60\x7f\x8b\xad\x9c\x34\xd2\x21\x77\x62\xb3\x44\xb9\xb1\xc1\xee\xc5\x32\x8a\x9e\xfe\x23\xc5\x88\x16\x36\x0d\xbd\x08\x8d\x80\x3b\x77\x2f\xb0\xe2\x5e\x16\xfd\x48\x56\x84\x6b\x3c\xbc\x7d\x17\x3a\x78\xaf\x0e\x4b\x15\xa6\x9b\x18\x5a\xbd\x76\xd3\x79\x53\x09\x4b\x58\xaf\x70\xd3\x5e\xa3\xd8\x8a\x7b\x6e\xaf\xe8\x3b\xbd\xa2\x98\x15\xee\x0b\xf4\xea\x7c\xab\x9c\x4b\x0c\x0c\x66\x1d\x48\xfc\xbf\xbb\x60\xf8\xe3\x34\xdd\x32\x6f\x70\xc4\x8a\x76\xdd\x95\xd9\x1d\x99\x5d\x39\xa8\xec\xed\xa4\xad\x1c\xfc\x9c\x05\x56\xdf\xdb\x79\x4b\xf3\xc6\x20\x73\xa6\x61\x46\xef\x80\xdc\xd7\x1e\x7a\x69\x6f\x9c\x13\xf7\x66\xb4\x4b\xa2\x2d\xf5\xc6\x49\x71\xa8\x90\x24\xa3\x04\x4c\x09\x1d\x00\xf6\xca\xe5\xe7\xee\xf9\x51\x07\x57\xbd\x3a\x9f\x91\xde\xf1\x78\xfd\x58\xb4\x00\xe8\xee\x78\x90\x6c\x46\xbf\x35\x98\x6b\x07\x7e\x3b\x25\x62\x04\x75\xf0\xb7\xe3\xc1\xdc\x05\x07\xb2\x03\xb6\x1d\x0f\x9c\x92\x38\x60\xec\xed\xb6\xd4\xdb\xcf\xc5\xe4\x04\x26\x38\x1e\x04\x9b\x74\x15\x61\x67\x88\x47\x28\x2c\xf8\xf4\x76\x2d\x0b\x5d\xd0\x5d\xc4\x70\x07\xed\x36\x1e\x1c\xeb\x81\xc6\xd2\xc1\xad\x8d\x47\xf7\x6b\x64\x65\x8b\xd7\x81\x9b\x3d\x0b\xde\x0b\x5d\x6b\x43\x07\xc9\x35\x25\xee\xde\xf4\x6e\xfb\x85\x41\x9d\xa8\xdb\x5d\xb5\xa3\xa3\x76\x54\x30\xc8\x3b\xf8\x96\xf1\x58\xde\xdd\x8c\x3e\x01\x90\x30\x1e\xf0\x38\xee\xbd\xf7\xc1\x89\x68\x1f\xc6\xbf\x27\x32\x49\x1f\x2e\x7b\x81\xd7\x0a\x0e\x1d\x7d\xe0\x1e\xd2\x87\x17\x63\x30\x9c\x75\xc0\xb8\xe2\x41\xe4\x01\x4e\x25\x3a\x68\x52\xf1\x40\x6c\x00\xab\xdc\xe7\x4d\xde\x49\x7f\x82\x58\xd4\x27\xfe\x10\x7d\x7a\x59\x85\xf3\x91\x7e\xc9\x27\xc0\xbd\xa9\x9c\x2b\x74\x9c\xff\xe2\x41\xb7\x83\xe4\xdc\x2f\xa7\x09\xee\x5d\x95\x63\x85\x0e\x8e\x48\x3c\x2c\x94\x09\x06\xee\x46\x3c\x28\x94\x01\xbb\x3e\x73\x7e\xe4\xac\x51\xdd\xdb\x32\x6f\xcb\x6c\x90\x38\xcb\xe8\x77\xb2\xe7\x46\x94\x79\xcb\x7f\xef\x42\xb4\x73\x74\xbd\x7e\xa3\x4b\xf5\x3b\x74\xa9\x4a\xf4\xe4\x7e\x63\x98\xec\xb7\xb0\x26\x78\xec\xf4\x1b\x95\xb8\xdf\x62\x66\x60\x18\xee\xb7\x9d\x79\x8b\x90\x81\x11\xb8\x3f\x2e\x92\xc7\x45\x82\x13\x6f\xc7\x4f\x3b\x1e\x44\x91\x62\xbb\xd5\x1f\x3b\x78\x87\x33\x46\x5d\xeb\xb8\x45\xc7\xc3\x7b\x96\x30\x8e\x07\x21\xd7\x1f\x84\x5c\xe1\x26\x4a\x27\xca\x6e\x3c\x36\x2d\xbe\xf7\xca\x88\x5e\x19\x11\xa1\x58\xfa\x8b\xa2\xdc\xdf\x61\x7f\x52\x17\xc2\x27\xc4\x83\xa0\xa4\x58\xa4\x3b\xb7\x8b\xe3\x41\xa4\x51\xe2\xad\x77\x82\x28\xc4\x03\x01\xc9\x1e\xa3\x7f\x95\xb6\x7d\xb1\xe3\x6c\xdc\x5c\xeb\x9f\x3c\x8c\x88\x84\xe7\xc0\xe1\xa3\x13\x91\x30\x1e\x33\x92\x15\x48\x93\x52\xbf\x59\x82\x44\x63\x89\x2a\x18\x8f\x07\x52\x81\xf4\x4a\xb2\x1e\xf0\x61\x8e\x36\xe2\xf1\x91\x0c\x12\x9a\x69\xe7\xbe\x46\xe3\x6a\x76\x5f\xf6\xb0\x71\xba\x8a\xab\x73\xb9\x12\x57\xac\x8c\xe6\x80\x11\x5f\x20\x1e\x5e\x86\x1d\xd2\x86\x34\x6a\xcb\x18\x7a\x5a\xd2\x3d\x2d\x19\x04\x95\xed\xab\xfb\x35\x03\x34\x82\x43\xd1\xd7\x43\x1f\x11\xaa\xa9\x01\xc5\xd7\xb5\x18\x74\x2d\x06\x15\x20\x97\xbe\x96\x9f\x33\xb2\x1c\xbb\xc9\xe1\xe9\xec\xe0\x74\xb6\x71\x51\x73\x1c\x1c\xd2\x8d\x43\x4c\x53\x0e\x33\xc7\x81\x99\x77\x1c\x9c\x52\x55\x6e\x44\x8f\xb3\x45\xa9\xe3\x6c\x51\x2a\xc7\x3b\xe3\x44\xa8\x8d\x53\x9b\xd4\x51\xff\x2c\xcd\xc7\x19\xfb\x8e\x78\xa0\xf0\xe2\x50\x38\x4e\xa4\xca\x38\x83\x6f\x34\xbc\xa0\x87\xa7\xae\xe3\xc4\x8a\x95\x30\xa8\x0e\x4f\x5d\xc7\xb9\xf0\x81\x0b\x36\x3d\x3c\x73\x18\x9c\x39\x34\x0e\xc4\x46\x42\x3f\x1d\x09\x93\xc5\x44\xbc\x0d\xbd\x5d\x06\xde\x2e\x0d\x03\xf0\xc0\xa7\x25\x1e\x23\x48\xb1\x73\x1f\x1e\xb0\xc6\x92\xa5\xcc\x49\xb2\x69\x4e\xb1\xe8\x70\x3c\x1f\xe9\xb2\x04\x43\x4d\xe1\xf9\x3f\xd2\xe5\xe7\x94\x03\xd8\x09\x47\x66\xb9\x0c\xdd\xd3\x06\x7a\xe7\xf0\x50\x61\x64\xa1\xc2\xd8\xa2\x8c\x7c\x9a\xee\xa4\x2a\xc1\xcd\x07\xce\x6a\xf1\x58\x26\x23\x2b\x92\x60\x64\x83\xa4\x5b\xe5\xcc\x91\xf9\xc8\x78\xea\x8f\x12\x1a\xc9\xc8\xc8\xed\x91\x91\xdb\x15\xe9\x30\x0a\x07\x62\xa3\x78\x3d\xb4\x52\x6c\x61\x55\x8d\x82\xd7\xec\xa8\x94\x51\x2e\x69\x82\x3c\xb1\xf7\x18\x85\x8d\xc1\x28\xe2\x20\x61\x64\x1b\x05\x03\xcd\xd0\x51\x65\x10\x65\x67\x54\xfc\xd1\x46\x05\x39\x38\xd9\x8e\x6a\xd3\x2a\x4d\x23\x16\xd1\xa8\x58\xd9\x23\x0f\x59\x33\x59\x59\x32\xa3\xa2\x94\x25\x3c\x80\x47\x85\x4f\x8f\xea\xbd\xf5\x1a\xea\xc7\xa8\x37\x5d\x50\x85\x77\xc2\xf3\x6b\x70\x14\x11\x0f\xef\xfc\xc6\x4a\x1d\x0d\x2d\x73\xb4\x43\x7c\xef\xd8\x2f\x8e\x86\x75\x6b\x70\x58\x91\x12\x5e\xfb\xa3\x61\xca\x1a\x4d\x3c\xc3\x62\x3a\x24\xda\x68\x4a\x34\x6c\x2b\xc3\x9d\xff\x40\x77\x68\xb8\x62\x0d\x76\xfc\xf1\xf0\xee\x71\xb0\xf9\xa1\x32\x30\x54\x06\xea\x11\xcb\x7c\x34\x7b\xb4\x45\x8f\xb6\x22\xe9\xb6\x76\xe2\x05\x72\xca\x3e\x3a\x36\x93\xd1\x0d\xb9\x8f\x75\x7f\x60\x19\x88\x87\x57\x78\x59\xac\x1d\xab\xda\xe8\xc6\x76\xc6\x85\x70\x00\x56\x1e\x0f\xe4\x28\xa1\x63\x06\xf0\xe0\xf1\x20\xe8\x9b\x3d\xd0\x39\x2f\x19\x9d\x1b\x69\x03\x20\xe4\xc1\x71\x42\x3c\xf0\xfb\xa0\xf3\x06\xbb\xaf\x31\x8a\x9d\xc2\xf4\x1e\x2e\x83\x41\x38\xa3\xc9\x3d\xb1\x31\x1c\x8c\x61\x28\x39\xae\x2d\x0f\x20\x60\xe3\x11\xfc\xb6\x86\xe4\x1f\x40\xb9\xc6\x43\xf8\xd2\x0e\xcd\x31\x1b\x31\x66\x8d\xa3\xf2\xa1\xb9\x61\x68\x6e\xa8\x04\x25\x1c\x93\x83\xa5\x31\x39\x58\x9a\xb8\x48\x0f\x20\x44\xe3\x61\x07\x30\x05\xa6\x4c\x6d\x72\x29\xa6\xa2\x0c\x8f\x89\xeb\xc5\x00\xd8\xb3\x71\xad\x7b\x00\x28\x19\x0f\x6a\x82\x3d\x7a\x4c\x17\xcb\x8c\xc5\xd2\x70\xdd\x1d\xdc\xeb\x88\xc7\x8b\x8b\x6f\x54\xe4\x72\x3e\x01\x03\x98\x12\x96\xe1\x01\xd8\x5d\x3c\xfc\xda\x19\x59\x2f\xfc\x90\xc6\xd5\x51\xcc\x6a\x92\x76\x49\x63\xc5\xd7\xd0\x41\xc6\x75\xd1\x88\xeb\x0a\x56\x8a\x9f\xf1\xb8\xd8\x2c\x0e\x4c\x0e\x29\x55\x6a\x02\x06\x52\x3c\xb8\x43\x83\x44\x1b\xa0\xe0\xc4\x23\xff\xeb\xaf\xd6\x99\x27\xb7\x4c\xe0\x96\x09\x34\xb8\xe0\x8d\x4a\x3b\x80\xc3\x69\x5c\x90\x1e\x20\x10\xc4\x03\x6d\x10\xd4\xe4\xc1\xc9\x41\x3c\x9a\xb4\xc8\xfa\x20\x5a\xc7\x23\xc0\x0f\x78\x3b\xe3\xc1\x46\x3a\x88\xdc\xd1\x30\xaa\x0f\x2e\x57\xc5\x83\x8a\x20\x0e\x1e\x19\xf4\x03\x83\xc6\xb2\x34\x5e\x7b\xee\x3d\xf0\x19\x0a\x69\x3e\xde\x8f\x54\xc4\x80\x6e\x3d\x44\xe6\xe0\xa2\x65\x3c\x38\x2d\xc4\x36\x34\x74\x76\x18\x9f\x7d\x8e\x59\x76\x7c\x6c\x77\x07\x81\xa7\xda\x60\x00\x09\x9a\x1c\x8f\x0f\x52\x8c\xf3\x87\xa7\xd4\x30\x06\xc4\xb0\x8f\x38\xab\x88\xc7\xf0\x6b\x31\x95\x74\x89\x18\xba\x44\xcc\xc1\x48\x7f\xd5\xcf\x09\xf0\x80\xe5\x7d\x70\x89\x3c\x1e\x59\x1a\xb5\x73\xa2\x73\xfd\x35\x25\x22\x5e\x0d\x9c\xda\xff\x1e\x04\x5f\x4d\x89\x83\x9c\x81\xc7\x7a\x3c\x4e\x69\x51\x65\x95\x86\xe1\x35\xcf\x84\xc3\xd2\x58\x96\xbb\x76\xb9\xb1\x3d\x1a\x04\xdb\x8c\x47\x2c\x26\x20\xb2\x07\xe1\x21\xe3\x61\x47\xb1\x0e\xd7\xcd\x18\x2e\xee\xb6\x55\xa2\xbb\x0c\xa2\x0d\xc6\x03\x87\x49\x82\x45\x1f\xf8\xdd\xcc\x23\xc1\xda\x31\xe8\x4e\xfd\xb2\xe6\x21\x96\x2d\x36\xb4\x79\x60\x18\x98\xf8\x4e\xb4\x79\x1e\x7f\x14\xe9\xf3\xe0\x60\x7b\xea\x54\xde\x05\x3f\x42\x73\x88\x07\x4c\x04\xa7\xf9\x89\xa3\x55\x3c\x10\x1a\x62\x40\x9c\x31\x48\xf1\x10\x8a\x8f\x60\xa2\xda\x43\xe6\x29\x50\x38\xd6\xbe\xc9\x91\x41\x3c\x8a\x80\x09\xf1\xbd\x13\x53\xcf\xc4\x56\x72\x56\xa1\x70\x3c\x4d\x98\x9c\x26\x34\xc1\xa9\xce\xc7\xac\x8f\xd7\xd6\x09\x27\xae\xff\xc2\xc4\x7f\x21\x3e\xd7\x83\x86\x11\x74\x9e\x1f\x17\x97\x08\xb0\x7b\x62\x04\x9f\x27\x46\xf0\x24\x62\x13\x27\x0c\xf1\xf8\x48\x46\x23\xd0\x59\xe7\x19\xbc\xb4\x89\xc2\x93\x98\xbd\x33\x39\x7b\xb9\x42\x31\x13\x87\x29\x13\x05\x25\x68\x03\x5a\x93\x66\x5b\x77\xba\x47\x1a\xb2\x40\x9c\xfe\x94\xfc\x9e\x38\x33\x62\x40\x26\x76\x1a\x33\x81\x0f\x91\x3a\xe1\x56\x13\x56\xf0\x99\xf2\x4e\x17\x8d\xd5\x99\x6c\x26\x61\x22\x3b\x71\x80\x35\xeb\xcc\xd4\xcd\x4b\x6c\x5e\x55\xa2\x89\x4a\x14\xa2\x11\x92\x59\xbb\x31\x00\x08\x58\xad\x2f\xd9\x4c\x97\x4d\x23\x2e\x2c\xbe\x14\xf1\x10\xf4\x94\x78\xb5\x9c\x8a\xfc\x3d\x93\xf6\x03\x6e\x46\xcd\xf4\x98\xee\x11\x0c\xdd\xea\xbd\x96\xf1\x5a\x3d\x62\x9a\x66\x44\xdf\xcc\xc6\x18\x43\x89\x9e\x19\xf5\x6c\x66\xd5\x33\x64\xd0\xd4\xa3\x7e\xe2\xcb\xdb\xc5\xf9\xca\xb7\x59\x6f\x7b\x80\x59\xa6\xeb\xc5\xc4\xf5\x22\x68\xd1\x8c\x8c\x8d\x7a\xe2\x8f\xd5\xc5\x44\x2a\xa8\x08\xb3\xe8\x84\x23\x56\xbf\xae\xf2\xb3\xec\x01\x22\xdc\x6c\x65\x0f\x3d\xeb\xb0\x57\x08\x7a\x5b\x31\xbf\xcf\xca\x9d\x42\x51\x5a\x2a\xdb\x8a\x59\xdd\x56\xb0\x9d\x9f\x15\xff\xcc\x59\x45\x85\x14\x80\xaf\x61\x08\x98\x6d\x03\x55\x13\xea\xb6\x39\xb6\x2d\x76\x91\x86\x4b\x99\xcd\xc5\xda\xb2\xf3\x18\x28\x07\x4d\x23\x73\x9b\x46\x06\x81\x5e\x1b\xd6\x81\xd9\xb4\x0e\x60\xf0\x9d\x0d\xab\xd2\x6c\xc0\x22\x70\xf7\x77\x6a\xa5\x98\x0d\xc0\x30\x23\x4d\x77\x18\xe7\xec\xc2\x1f\x09\xa8\xa6\x67\xc3\xc4\xb3\xa1\x73\x70\x31\xbb\xf3\xa4\x0b\x34\x07\xdf\x9c\x1d\x0f\x83\xd9\x27\x17\x74\x58\xc6\xdd\x32\xbb\xe1\x8d\xc4\x4f\xed\x77\x96\xc6\x15\x23\x62\xec\x12\x56\x36\x1e\xb0\x2f\xa1\x26\xbb\xe3\xd5\x1d\x2f\xc1\x65\x51\x51\xe2\x61\xa9\x44\xf4\x1d\x9c\x1f\xcc\x91\xc5\xc0\x15\x81\x1f\x35\x79\x0e\x0c\x26\x68\x2f\xc1\xda\x21\x19\xb3\x36\x31\x25\x46\x93\x26\x56\x9f\x50\x33\x1e\xab\x4c\x8e\x55\x3a\x41\xb0\xe6\x70\x62\x0f\x63\x8d\x09\xbe\xa8\xaa\x32\x55\x55\x06\xa7\x83\x73\x3a\x4d\xa6\xd3\x44\xf0\x3d\xf4\x91\x78\x98\x17\x66\xc4\xdd\xd6\x78\x08\x2b\x4e\x32\x1b\x31\xb3\x80\x10\xc2\x47\x67\xb3\xe6\x9d\x15\xc8\x66\x47\x62\x8a\x7f\x7b\x0a\xc4\x4d\x17\x4f\x42\x46\x8b\xc1\x31\x51\x06\xe7\x9c\x40\x4a\x12\x60\x78\xca\x27\xe7\x45\xc6\x2c\x86\x35\xf3\x66\x0a\xec\x2f\x88\xe0\xfc\x2c\x73\xc3\x7c\x0a\xd4\x2d\xb3\x9b\x22\x7c\x32\xfa\x73\x59\xe6\x12\xa9\x99\xaf\x61\xa3\x98\x73\xe3\x7a\x8a\xc7\xbe\xcc\xb9\x36\xd8\xb0\xf8\xc0\xd0\xae\x64\x70\x75\xb1\x56\x1d\xfe\xeb\xde\x08\xb8\xa4\xbb\x4d\x77\x7b\xbb\x58\x18\x56\x39\xf6\x45\x10\x79\x5c\x96\xe6\x85\x8d\x6a\x5e\x82\x49\x77\x81\x4c\xe9\xcb\x0b\x64\x37\xbc\x7a\xe6\xb5\x24\x2d\x41\x54\x84\x45\x93\x3b\xdf\x72\x67\xcc\xe6\xf3\x76\xf1\xdf\xc7\x2e\x54\x68\x4c\xf2\xde\xc0\xfa\x70\xe7\x7b\xde\x18\xad\xe6\x0d\x8a\x0f\x71\x76\xa7\x16\x9f\x89\xc5\xa7\x6f\xe4\x4c\xd7\xea\x9d\xbd\xe1\x2f\xdc\x9c\x6b\xf5\xde\xa0\x3d\x44\x9e\xbe\x9d\xac\x77\x01\x95\x47\x34\x52\x97\xef\xed\xf2\xc5\xcc\x34\x6f\x3c\x29\xe6\xdd\x36\xd4\x20\x59\x9b\x59\x9b\x1d\x5c\xc5\x81\x34\x6f\x37\xa0\x86\x10\x7b\x53\xda\x04\x00\xe6\x4c\xff\xb3\x3c\x6f\xf3\xff\x25\xce\x3d\x6b\x9a\x9c\x35\x75\x41\x9e\x6f\xb9\xd6\xfd\x0a\x9e\x27\x78\x1a\xec\xe3\x27\x54\x87\x20\x4e\x85\x16\x3e\x1b\xe7\x67\x63\x7d\xf1\xb5\xa7\x1a\x8e\x43\x80\xb3\x66\xba\x66\xa8\x10\xd1\xa3\x6c\x8e\xe1\x62\xe7\x21\x7a\x13\xbb\xc7\xf9\x1a\x9a\xf4\xd8\x38\x4c\xaf\xb4\x8d\x28\x28\x0e\x12\xbd\xfd\xaa\xc6\x08\xa0\xfd\x56\x69\x1b\x72\x59\x5c\x97\x6a\xde\x4a\x6f\x8b\xdf\x63\x8f\xbd\xbb\xc7\xc4\xeb\x41\xc5\x9e\xef\xdc\xb0\x3b\xa2\xd9\x58\x95\x8d\x4f\xb1\xa1\x56\x98\x45\xef\xc6\x32\x10\xa6\x82\xcb\x56\xf3\xe3\x64\x3a\x0b\x95\xf9\xc9\x07\x3e\x40\xe9\x70\x5d\x9b\xaa\x94\x93\xd8\x4b\xe9\x30\x68\x3e\x11\xfd\xe2\x41\x98\xf0\x8d\xb1\xf1\x49\x32\x0c\x39\xe3\xfe\x3d\xd2\x5e\xf1\x0d\xc4\x3a\x40\x1e\x71\x7e\x95\xb2\x40\x4f\x84\xb6\x89\x07\x17\x70\x8a\x70\x03\x16\x20\xe6\x89\xf1\xdc\x31\x51\xcc\x05\x64\x56\x31\x18\x3a\x1b\xa7\x89\x33\x4c\x3a\x76\x80\x74\xdc\x38\x27\xe1\x71\xa2\x00\x63\xd6\xd3\xc1\x84\x04\x4e\x59\xd8\x03\x4d\x5f\x73\x35\x02\xfb\xc3\xb6\x17\x57\x8f\xe6\x6a\xc6\x5e\x37\x5c\xba\x5f\x9b\x7e\xcd\x90\xf3\x2a\x0b\xeb\x31\x48\x8b\x11\x06\xf2\x63\xa4\xa0\xfd\xaf\x9e\xf5\x87\x81\x3d\x82\x90\xff\x79\xc7\x51\xe1\x31\x8f\xdf\x70\xe4\xf5\x9f\x77\xdc\x1e\x39\x5a\xfe\x7d\xd7\xff\x79\x87\x33\xfd\x09\x66\xd3\x8e\x36\xbb\x78\x17\xff\x3a\x65\xdb\x0e\x2b\x76\xbf\x8b\x2e\xdd\xff\x76\xad\x0d\x3f\x11\x9f\x5e\xcc\xa5\xfb\xdf\x69\x78\xa8\xdf\xc0\x4d\x98\x75\xf7\xbf\x46\x20\xe2\x62\xb7\xb6\xf3\x85\x24\x3a\x6b\x31\x40\x01\x73\x6f\xcd\x69\xd0\x01\x2f\xfb\xc7\xa7\x17\x18\xee\xa3\x7a\x3f\x9b\x5d\xc5\xba\x42\x5e\x0f\x1c\xd5\xd6\xc5\xb0\x2d\x76\xa5\xc6\xee\x5a\x60\x84\xc7\x63\x5f\xe6\x9e\x5c\x1d\x8e\xbe\x5f\x42\x1e\x93\x11\xc0\xe3\x78\x70\x73\x8e\xdb\xdb\x44\x11\x8f\x47\x2c\x77\x8e\x50\x17\xe1\x97\xe2\x31\xbc\x88\x41\xb2\x6c\x32\xae\x32\x0c\x2e\xfe\x7e\xa8\x9f\x0b\x07\x31\xcf\x90\x97\x3b\xaf\xc5\xce\xab\x13\xe9\x75\x11\xd4\x35\x1e\x17\xa4\x13\xd2\x2d\x29\x26\x3f\xd0\xf4\x8b\x68\x44\xf1\xf8\x48\xe5\xb7\x16\x24\x60\xdf\x27\x17\x97\xd9\xbd\xc5\xa3\x90\x91\x6f\x15\x2b\x81\xe3\x65\x6a\xdc\xd9\x26\x4a\x6c\x3c\xac\x85\xd7\x91\xe9\x57\x10\x35\x1a\xf7\xb2\xd9\xb9\xc5\x83\x6b\xd4\xde\x3d\xbe\xa4\x60\x38\xe4\x62\x2f\x3a\xd2\x5a\xbb\xee\x5c\x29\x96\x52\x63\x7c\xbc\x41\xcd\x32\x58\x58\x80\x4f\x8f\x1d\x16\x6b\xe2\xef\x45\x84\x72\x2f\xec\x13\x09\x31\x1e\x68\x1b\xff\x8b\x8b\x53\xfc\xf8\xcf\xd7\xbf\xff\xdb\xff\xfe\x7f\x5c\xff\xfe\x7f\x5e\xff\xf9\xfb\xeb\xf9\xef\xff\xf1\x1f\xdf\x7f\xf9\x6f\xef\x7f\x7a\xfe\xdb\x5f\xff\x5b\x50\xff\x7a\xbf\xf5\x9f\xfe\xcb\xf7\x1f\xdf\xff\xfd\x5f\xff\xfb\x7f\x3c\xdf\x5f\xff\xfe\x5f\xff\x3d\x72\xf1\xf7\xff\x04\x00\x00\xff\xff\x2d\x58\x41\x22\x3d\xd6\x02\x00"); -var _abggg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4b\xaf\x6d\x39\x72\x26\x36\xcf\x5f\x71\x86\xed\x41\xbb\x16\xdf\x0c\x20\x71\x00\x97\xd4\xd5\xd6\xa0\x6d\xc3\x92\x6c\x03\x86\x07\xe4\xde\x6b\xcb\x05\x58\x59\x85\xaa\xd2\x40\xff\xde\xe0\xf7\x58\x29\x18\x06\x6e\xde\xc9\xdd\x71\xc8\xc5\x67\x30\x18\x8c\xe7\xef\xfe\xee\x1f\xfe\xfe\x1f\x7e\xf9\xe3\xdf\xbe\x7e\xf7\xbf\xfc\xe5\x4f\xaf\x7f\xbc\xff\xf6\xf5\xf9\xe3\x2f\xef\xbf\xdc\x7f\xfd\xd3\xbf\xfd\xe5\x75\x7f\xed\xfb\x5f\xfe\xf8\xcb\x4f\x3f\xa5\xfc\xf5\xfe\xe3\xeb\x6f\x06\xf1\xdf\xeb\x5f\xd7\x9f\x7f\xfa\xe9\x7c\xff\x8f\xff\xfe\xd7\xbf\xdd\xff\xfa\x0f\xbf\x7c\xfe\xf4\x55\x58\xef\xfd\x6f\x7f\x56\xdd\xaf\xaf\xdf\xfd\xaf\xf7\xbf\xfc\xf1\xaf\x7f\xfb\xcb\xbf\x7f\xfd\xa7\xff\xe1\xfd\xa7\x7d\xff\x77\x5f\xef\xfb\x73\xfe\xfe\x3f\xff\xe5\x7d\xff\xe5\x8f\xbf\xfc\xcb\xd7\x7f\xfa\xaf\xbf\x4f\xcf\x5f\xff\xf1\xdf\xfe\xfc\xe7\xff\xe7\xfe\xd7\xfb\x97\xbf\x7d\x35\xfc\xed\xfe\xe5\x8d\xff\x7f\xfa\xdd\xdf\xfd\xb7\xf5\xe7\xff\x69\xfd\xeb\xfd\xf5\xbb\x7f\xfe\xe5\x8f\xff\xf5\xf7\xff\xf9\x9f\xff\xe9\x0f\xf3\x3f\xff\x8f\x28\x44\xd9\xff\x76\xff\xe5\xaf\x7f\xfc\xd3\x2f\x5f\xa9\xfc\xf7\x57\xea\xbf\xfe\xfd\x9f\xfe\xfd\xcf\xf7\x57\x52\x23\xff\xc7\x3f\xff\xc3\xdf\x7f\xfd\x9f\xe9\x2b\x5d\x5f\xb9\x95\x11\xff\x97\xfe\xfe\xbf\xff\xb7\x3f\xbd\xef\xaf\x8b\x50\xe5\xe8\x5f\x7f\x7a\xdf\x7f\xfd\xf3\x7a\xdd\x7f\x59\xbf\xfc\xcb\xfd\xd3\xd7\xd7\xcf\xd7\xf5\xfd\xc5\x7f\x3f\x8f\x3f\x7c\x9f\xbf\xfc\xdd\x35\xf5\xb7\x9f\xff\xfe\x0f\xbf\xe7\xdf\xfe\xcb\x35\xf5\xd7\x9f\xff\xcb\x1f\x7e\xef\xbf\xfe\x01\x7f\x3d\x7f\xff\xf9\x0f\xe3\xf7\xfa\xfb\xfd\xcb\xfb\xff\xd3\xcb\x4f\x89\x9d\xff\xf2\xa7\xbf\xbd\xef\x0f\xff\x86\x7e\x7f\x4e\x9f\xef\xaf\x74\xbe\xf8\x8f\x45\x3f\xa5\xeb\xd2\x68\xff\xf8\x7e\xfd\xdf\xeb\x2f\x3f\xfd\xfc\xca\xeb\x3a\x35\xcf\x8f\xfa\xfd\x95\xfa\xc0\xcf\xf6\xfd\x95\x73\x69\x15\xc0\xf8\xfe\x4a\x83\x55\xe6\xf7\x57\xba\x32\x7e\xc6\xf7\xd7\x18\xa9\x9c\xdf\xfb\x34\xd1\xf1\xe7\x9d\xbe\xbf\x52\x46\x23\x7b\x7c\x7f\x45\xfc\xf4\xf3\xab\xc4\x69\x21\xcf\xf3\xf3\xf4\xd6\xd1\x58\x59\xe9\xfb\xab\x77\x54\x38\xed\xf6\xd1\xf0\x33\xce\xcf\x82\x9f\xeb\xfb\xab\x07\x7f\xbe\xce\x5f\x59\xf7\x7d\x7e\x9e\x1e\xca\xce\xdf\x5f\x7d\xa2\xc2\x2e\xe7\x27\xda\xdd\xe8\x0d\x75\xf7\x69\x6c\xb2\xee\x69\x6c\xa2\x8b\x7d\x1a\x8b\x33\xdc\x3a\x31\x86\x33\xb2\x1a\xa7\x85\x81\xbf\xc6\x3e\x3f\xcf\xe4\xeb\xc2\xcf\xfe\xd3\xcf\xaf\x36\xeb\xf9\x8c\x3f\xcf\x78\x63\xe0\xe7\x19\xce\xbc\xce\x4f\xd4\x9d\xe7\xb3\x31\xef\xf3\xd9\xf9\xeb\x08\xcc\x78\xe2\x27\xc6\x9b\xf1\xf3\x34\x36\x3b\x7e\xf6\xf3\x93\x15\x4e\xbb\x33\xf0\x13\x93\x67\x0b\x18\xef\x99\xdb\xc0\x84\xe2\xd4\x8d\x38\x43\x8f\xd3\x5b\x60\x25\xb1\xd4\x7b\x9e\xc9\x5f\x09\x3f\xe3\xfc\x3c\x2d\xec\x88\xb3\x15\x57\xfc\xf4\xf3\xfb\xc2\x94\xaf\xf9\xd3\xcf\xef\x84\x26\x6a\xfa\xe9\xe7\x3b\xed\xb9\x3f\xa7\x91\xf6\xd3\xcf\x77\x9e\xd7\xcc\xd8\xdd\x4e\xe8\x4c\x21\x5d\x57\x9a\x02\xcb\x69\x2d\x5d\x82\x0e\xda\x5c\xfa\x2e\x1a\x8a\x92\xa0\x7e\x8a\x06\x81\x95\x89\x0e\xf8\xcd\x6a\x59\x10\xaa\xa9\x71\xe0\xd2\x50\xdb\x9b\xf5\x8a\xa0\xfd\xfd\x95\xce\xfa\xde\x79\xa6\x78\x7f\x7f\x35\xb5\x97\x0f\x7a\x1c\x7c\x65\xc5\x3a\xcb\xc1\xc7\x26\x80\x6d\x54\x41\x58\x89\xa4\x32\x0c\x70\x70\x18\xf5\xac\xe2\x99\x65\x17\xc8\x25\xe0\x77\xfd\x6c\x5d\x9a\x4d\xc0\x69\x7f\x72\xc0\xf3\xe0\x42\x2a\x43\xc0\x39\x76\x85\xdf\xcc\xb3\xbc\xa9\x14\x01\x18\x46\xbe\x04\xad\x53\x14\x02\xde\xdf\x5f\xa9\x25\x01\xf7\x01\xd4\x5c\x7c\xf0\x91\x8a\x70\x52\x6b\x16\x80\x4d\xc8\x86\xda\x29\x72\xbd\xb3\xf1\xa5\x0b\x40\x4f\x4d\xc0\x59\xc1\x6a\xe0\xf4\x54\x55\x6d\x9f\x5d\x6c\x1a\xd0\x59\xf6\xd4\x34\xbf\x7d\xd6\xa8\x68\xdc\x38\x5b\xc5\x25\x18\x37\x4b\x02\xcb\x50\x43\xc0\xeb\x00\xac\x16\x81\x8d\xcf\x5c\x87\xc0\x24\x5a\x16\x70\x56\xa8\x72\xb2\x8b\x2b\xa4\x65\x5d\x07\x65\x53\xe5\x4a\x2e\x4e\x8f\x3d\xad\xcd\x45\xe1\xc0\xf7\xfa\x10\x79\x0e\x71\x14\x51\xfb\xff\x21\x73\x77\x9e\x2f\x6c\x61\xc5\x30\xa2\x63\x18\x33\x09\x38\xc3\x98\x17\x81\x8d\x9d\x56\xb5\x8d\x9d\xc6\x68\x63\x4c\x60\x4b\x08\x00\x55\x9c\x02\xce\xba\x8e\x26\xe0\xac\xeb\x18\x02\xce\xf0\x06\xc6\x1a\xf3\xa0\x62\x1a\x55\x00\x5a\x2b\x02\x80\x96\x93\x1f\xc5\x04\x3d\x4d\x02\xce\x78\x3a\x06\xb7\xd7\x29\xc9\xb9\xe6\x29\x30\x1d\xf0\xe2\x0a\xee\x75\x28\x54\xce\x17\x51\x69\xaf\xb3\x25\x07\xac\x02\x37\xc1\x26\x10\x67\xe6\x72\xcb\x87\x46\x1f\x50\xdf\x2e\x82\x43\xdf\x1e\x2c\x3a\xa0\x3a\x3a\xa8\x93\xf3\x35\xf5\xed\x59\xa5\x03\x66\x81\xec\x88\x3b\xb9\xf7\xe4\xb7\x41\xf0\x75\xa6\x50\x71\x5b\x00\x4a\xdf\x5f\x75\x90\x46\xec\xd7\x99\x6b\x1d\xd9\x65\x05\x65\x21\xa8\x9e\xef\x78\x04\xf7\x0b\x4b\x79\xa5\x92\x04\x76\xa0\xaf\x9b\x19\xdf\x5f\x75\x76\x43\xf3\xfb\xab\xe4\xe2\xee\x03\x35\xdd\xc5\x3a\x65\x24\x37\xfb\x75\x56\x28\xa6\x8b\x5e\xa7\xf7\xee\xfe\xde\xa7\x49\x12\x9f\xfd\x3a\x5b\x5c\xe7\xf0\xc8\x3e\xdf\x5f\xf9\x0a\x0d\xe5\x10\xcb\x76\x25\x75\x0e\x1a\x50\x3d\xcc\x83\x82\xb9\x11\x07\xf7\xeb\x90\x91\x3a\xb5\x01\xaf\x43\x47\xeb\x48\x86\xda\x81\xaa\x21\x12\xd2\xa1\x39\x9c\xbd\x2a\xc5\xb3\x3d\x97\x46\xd2\x39\xdc\xaf\x73\x6e\x6a\xf0\x58\xef\x17\xe8\x4c\xce\xfe\x6e\x9f\xa1\x65\xd7\x3c\x13\xcc\xd3\x83\x79\x7f\x7f\xe5\xea\x8d\x38\x54\xa8\xb5\xec\xb2\xcf\xf7\x57\xe9\xde\xc0\x73\x74\x4a\x4d\x5a\x8a\x73\x76\x5a\xf7\x24\x0e\xd1\x4c\xa9\x79\xd5\x0e\x91\x2a\xb3\x69\x9d\xc0\x60\x94\xa7\x99\xc3\x63\x44\x56\x87\xe7\x0e\xa8\xbd\x69\xd8\x07\xfb\x5a\x14\x77\x01\x0a\x3b\x5d\x16\xdf\x5f\x25\xaa\x5b\x59\xdf\x5f\xad\x5c\xda\xb3\x43\xdf\x4a\x09\xf7\x7e\xee\xcd\xeb\x72\x2b\xef\x53\x96\xfc\xdd\xb9\xa0\xd3\x33\x4e\x9c\xd2\xa9\x71\x9e\x2b\x28\x5f\xa1\xc9\x6f\x9c\x31\xa3\x0f\xa8\xc3\x28\xea\x0f\x5c\x47\xea\xae\x59\x71\x47\xb8\xac\x01\x0f\x34\xea\x43\x45\x5b\x7e\xda\x3c\xf3\x2b\xdd\x65\x13\x74\xc5\x3d\xc4\x99\xbb\x67\x7b\xd8\x96\xd6\xbd\xd8\xe7\x64\xb5\x7e\x69\xb1\x0f\x1f\x53\xc2\x1b\x08\x6a\xfc\xe0\xeb\xbe\xc1\x04\x19\x0f\x0e\xcd\x2c\x95\xb7\xd4\x7e\xe3\x08\x36\x2d\xc5\x1b\x0c\x41\xd5\x31\x7b\x9f\x23\x58\x86\x96\xf0\x8d\x9b\xb4\x91\xd6\xee\x37\xe9\x8b\x90\xf2\x8d\x23\xd8\x9f\xb2\x7e\xb6\x9a\x57\xd5\x7e\x9f\x13\x58\x72\xfd\x31\x59\xde\xef\x73\x3c\x6b\x69\x6e\x34\x00\x79\xa0\x87\x74\xcc\xea\xa1\x9d\xdd\x4d\xb9\x0a\x3a\xe8\xdb\x8a\xbb\x7f\xe3\x86\x70\x2b\x67\x77\xdb\xf4\x77\x1f\x0c\x4d\x35\xc9\xcc\x90\xf0\xee\xf7\x39\x9f\x79\xb8\x95\x73\x3e\x4b\x2d\x6a\xe5\x9c\xcf\x72\x79\x29\xce\xf9\x2c\x55\xa7\xfc\x7d\xce\x67\xbe\x9a\x5b\x01\xf6\x26\x97\x91\x61\xf6\x77\x13\xe7\xda\x35\xcf\xee\x1a\xd3\xde\xe7\x78\x96\x2b\x19\xda\xdf\x5f\xf5\xd7\x91\x1d\xfa\x1c\xc9\x23\x3b\xd8\x9b\xbd\x49\xe7\x78\xd6\xab\xba\xbf\xcf\x59\x33\x51\x8e\x37\x6f\x36\x61\xe8\xfb\x1c\xcf\x32\x44\x00\xde\x8b\xd8\xab\x1e\x70\x3a\x8b\xa8\xd8\xfb\x9c\xce\x9a\xbb\x56\xf7\x9c\xce\xd2\xbd\x2b\xe7\x74\x8e\xf4\xf4\x30\xbe\xbf\xc6\x75\xb9\xcd\x89\xfb\xa9\xbb\x51\xdc\x64\x6e\x85\xf3\xd3\x38\xcf\xe9\x3c\xbc\xa5\xa0\x33\xbf\xf9\xf4\xf0\xc6\x3e\x68\xdf\xcf\xe9\x2c\x26\x46\xef\x73\x3a\x8b\xe9\xc6\x7b\x93\xfc\xa8\x3b\xbc\x37\x7a\x9b\xaa\x8a\xe3\x29\x5e\x63\xbf\xcf\xf1\xac\x97\xd1\xe7\x1c\xcf\xdc\x8a\xa1\x43\x60\x7d\x0f\xbc\xcf\xf1\xcc\x43\xf7\xd9\xfb\x1c\xcf\x51\xc2\x35\xe7\xf7\xd7\xc8\xdd\x35\x0f\xf9\x19\xde\xf8\x73\x3c\x6b\x7a\xfa\x3b\x1b\x58\xbc\x49\xe7\x78\xe6\x1a\x6e\x13\xcc\x92\xd1\xe7\x1c\xcf\x91\x8c\x22\xe7\x74\xa6\x26\xe2\x70\x9f\xd3\xd9\xbb\x08\xc0\x7d\x4e\x67\xc9\xba\x96\x6f\x30\x03\x59\x33\xba\x71\x41\x76\x1d\x96\x1b\x17\x64\x23\xcb\xb4\xef\x89\x27\x5c\xb8\xec\x9c\x4e\xf1\xc7\xfb\x3e\xa7\xb3\x99\xd8\xde\x38\x80\x4d\x77\xe0\x7d\x0e\xe0\x28\xba\xbb\x6f\xdc\x8f\xe5\x72\x19\xd8\x1c\x9f\xa4\xfb\x9c\xc0\x21\x5e\x6e\xdf\x38\x81\x39\x3c\x50\x60\x68\x33\x74\x76\x30\x74\x92\xee\x20\x07\xa0\x49\xe0\x86\x9c\x21\xb4\xb8\xcf\x11\x9c\x97\x67\x1f\xe4\x2c\xd4\x3f\xae\x48\x13\xe6\xfb\x1c\xc1\x34\xb3\x1b\x05\x07\x90\xdd\xca\xd9\xc1\x5a\x5d\x76\x76\xb0\xe9\x22\xb8\x03\x2f\xd7\xe2\xee\x71\x43\x4e\xd7\x3c\x3b\x88\x07\x21\xa0\x43\x62\xfa\xd0\x04\x71\x04\x4d\xb4\xef\x73\x04\xc7\xbc\x3c\x16\x4c\x50\xf8\x73\xe3\x08\xe6\x66\xe8\x4c\x30\x86\x78\x80\xfb\x9c\xc1\x9a\xbc\x4e\xe7\x0c\xd6\x3c\xd4\x28\x6e\xc8\x08\x61\xe5\x8d\x2b\xb2\x65\x43\x1d\xd4\xd7\x1f\x9e\x19\x0e\xef\xef\x39\x84\xb3\x24\x43\x01\x02\xa4\xf9\x82\x77\x6b\xd5\xad\xec\xb3\x16\xb5\xfd\x98\x32\xdf\xe7\x84\xd6\xe2\x29\xe2\x84\x5e\xbf\xb6\x7a\x2e\x98\x5e\x3c\xf0\xc3\x02\xf9\xd6\xb8\xf9\x86\x33\x46\x9d\x23\x3a\x4d\x8c\xef\x73\x42\x73\x7e\x20\x4c\x3f\x19\xaa\xdf\x5f\xd3\xa4\xf2\x3e\x27\x74\x84\x7b\x38\x27\x74\x84\x88\xff\x7d\x4e\x68\xa9\xba\xf6\xef\x73\x42\x4b\xd5\x15\x7d\xe3\x84\xea\xa5\xb5\xef\x73\x42\x67\xb9\xb4\x6a\x7c\x42\x3e\xad\xbc\xc0\xb6\x1b\x7a\x7f\x7f\x0d\x73\x32\x37\x4e\xe8\xf4\x39\x38\x27\xb4\x99\x50\x7f\x70\x7f\x0e\xe1\xd3\x67\x02\x81\x45\x1f\x3e\xe7\x84\xce\xa1\xf3\xfa\x39\x27\x74\x16\x31\x2b\x9f\x73\x42\x63\x76\x7f\x77\x76\xd7\xa7\xf0\x73\x4e\xe8\x2c\x7c\x47\xef\xcf\x39\xa1\xf9\xd7\x1e\x0e\x23\x9f\x66\x18\x3c\x13\xac\xdd\x55\x0f\x02\x87\x28\xe7\x67\x52\x74\xe1\xee\x5f\xdf\x5f\x31\x9a\x87\xc6\xf7\x9a\x27\x71\x63\x29\x5c\x13\x0c\x82\x90\xfb\xa3\x3b\x52\xdf\x9d\x13\x3a\x8b\x08\xd9\xe7\x1c\xd0\x31\x85\x06\x9f\x73\x40\x67\xd6\x03\xe4\x73\x0e\xe8\xd0\x13\x6e\x7f\xc0\xc3\x4e\xd0\x80\x32\x2f\xb0\x12\x40\xa6\x03\x80\x7d\xaf\x02\xc0\xdd\x5e\xd9\x20\x30\xdb\x35\xf9\x7a\x04\xbe\x14\x8a\x1e\x92\x01\xf0\x38\xd7\xd5\x0c\x7e\x28\x04\x18\x00\x73\x80\x59\x29\x78\x95\x1d\x90\x22\x2d\x6c\xd3\x01\x3b\x41\xf6\x09\x99\x51\xce\x9c\xe3\x01\x27\xc1\x2c\x30\x08\x26\x81\x8b\x60\x11\xb8\x25\xd8\x38\xbf\x5f\x94\x21\x10\xac\x38\xa4\x85\x03\x9a\x5b\xf2\x05\x82\x6b\x61\x3d\xae\x8b\x8d\xde\x92\x3e\x5c\x2c\x05\xaa\x1c\x70\x0a\xe4\x54\x2f\xb6\x8b\x95\x3d\x4d\x61\x7c\x91\x26\x1f\x6b\x20\xef\x25\x92\x9e\x63\x8d\xa5\x3d\xf8\x58\xe3\xba\xc4\x9c\x02\x83\x60\xf0\x75\x86\xd7\x7e\x59\x35\xf8\x66\xc4\x6d\x5e\x56\xd3\x43\x8f\xab\xb6\xf0\x9a\x3d\x60\x23\x18\x17\xc1\x29\x50\xa5\x1d\x60\x68\x18\x78\x86\x95\xf5\x56\xbf\x03\xf3\xdd\x49\x2d\x03\xc7\xca\x86\x5c\xf0\x80\xa7\xdf\x3a\x13\xb7\xe7\xc2\x83\xa7\xce\xa6\x96\xc1\xaa\xd4\xf9\xe2\x6e\x5d\x78\xbe\xd7\x79\x53\xfa\x73\x81\x07\xa8\xf3\x26\xc3\xce\x2b\xa4\xce\x0f\x1e\x36\xf9\x02\xd2\xd4\x28\x6a\x19\x3b\x5d\x23\xf4\x0a\xc6\x4e\xd7\x80\x40\x22\xeb\x2d\x57\x03\xef\x97\x03\x56\x81\x41\xb0\x01\xe4\x05\x9f\xaf\x40\x47\x81\x0b\xf0\x80\x18\xc6\x6a\xda\x14\x60\x46\x5d\x8d\x48\x03\x79\x1c\xc0\x37\x41\x74\xb4\x3a\x38\xeb\x79\xe1\xf8\xd7\xd5\x63\xb3\x74\x08\xfc\x10\xec\x04\xc1\xac\xe4\x74\xc5\x8f\x68\xf8\xa9\x3b\x58\x17\x0b\xb9\x93\x40\x70\x95\x75\xe7\x95\x09\x0e\x81\x85\x20\x16\x63\x77\x6e\x51\xc2\x0d\x5b\xf7\xfc\x0f\x0f\xf7\x03\x25\x10\x93\x2a\x28\x03\x21\x87\x0b\xc1\x39\xe3\x02\x38\xd0\x21\xd6\xa3\x0e\x41\x87\xdd\xa8\x6d\x0a\x3a\xb4\x2c\x4f\x43\x60\x37\x4a\x17\x74\xf8\xfd\x39\xfd\x1d\x2e\xe3\x70\xd9\x1b\x0f\x4d\x77\x7f\xe3\xa6\x32\xf4\xe1\x60\x54\x15\xec\x06\x5f\xaf\x07\x82\x50\xce\x55\x43\xe3\x56\x1f\x78\x91\x77\x5c\x40\x07\x3a\x1c\x3f\x05\x73\x07\xc2\x8b\xfc\x32\xd4\xc1\x85\x6a\x69\xc0\xf1\x5f\x42\xd7\x3d\xcf\x21\x2a\x94\x2e\x1d\xe8\xdc\xc6\x7c\xb6\x1c\x08\x1c\x63\xf3\xd8\x36\x44\x75\xee\xfe\x05\x41\xa0\x6b\x1e\x7e\xa3\x5d\x6e\xf3\x46\xf7\x1a\x1a\x18\xf9\xe6\x81\x8a\x94\x4c\xad\xfe\x02\xa3\xdb\xd5\xc5\x61\x22\xea\xe5\x15\xa6\xac\xf5\x9a\xfe\x12\xef\xb4\x50\x8f\x6b\x3e\xc2\x98\x03\x51\x7e\x3c\x5d\xb8\x70\xa9\xbb\x90\x6f\x15\x4d\xf1\x9c\xc0\x36\x9e\x3e\xde\x87\xa1\x04\x81\xa9\x7b\x52\x39\x60\xb4\x11\x11\xf4\xa6\x82\x5f\x2f\xd9\x55\x35\x0f\xb5\x43\x86\xdd\x83\xdb\xa4\x79\xd3\x75\xfb\x23\x2a\x3a\x10\x37\x20\x84\x71\x60\x08\x48\x78\x0f\x04\x51\xa2\x17\xeb\x1c\xc4\x32\xba\x9b\xd9\x78\x06\xb8\x47\x92\xef\xd0\xb4\x70\x48\xdb\x33\xba\x73\x1c\x4a\x72\x8f\x9f\x47\x38\x55\x77\x1c\x84\xcf\x53\x93\x0c\x11\x6f\xd2\x89\x1d\x62\xc5\x2f\x41\xdc\x01\x21\x72\x40\x56\x35\x52\x12\x74\xc8\xef\xa8\xfe\xf0\x3c\x86\xb3\x70\x35\x70\xd1\x5f\xa2\x2f\x3b\x26\x46\x9e\x5d\xf5\x75\xce\x4a\x72\xd9\xd9\x81\x9a\xfd\xe1\xb9\x3c\xa2\x1b\xfa\xe0\xbd\xc6\xd5\x08\x90\xf0\xea\x36\x83\xbb\xa3\xe5\x80\xe4\xb6\x5c\x45\xb3\x02\x2f\x1e\xdd\x1f\xe2\x70\x54\x4d\x4a\x17\x52\x68\x39\xc0\x8c\xcf\xe2\x56\xa9\x93\xb8\x5c\xf7\x3c\x18\xb3\x87\x03\x79\x15\xc5\x7a\x07\x82\xd0\xcd\x93\x22\xe9\x0e\xf7\x7f\x1e\x85\xde\xff\xc0\xa3\x37\x35\x8d\x06\x32\xa9\xa9\x4d\x05\x15\x2f\xe1\xe9\x2f\x1c\x55\x9d\xb8\x38\x58\x5d\x47\x16\x04\x51\xcf\x10\x6a\x04\x6e\x8e\xae\x73\x1b\xc0\xcd\x2b\xe9\x8c\xe3\x3a\x2b\xb9\x6b\x69\x0e\x32\x94\xf4\x7c\x08\x8a\x93\xd4\xea\x02\x0f\x98\xd5\xce\x3a\x1b\x9e\xdb\xbc\x7e\x48\xad\xf7\x92\xf6\x46\x2b\xbe\x28\x1a\xb9\xdc\xce\x19\x79\xbb\xdc\xc7\x62\xd5\x22\x70\x83\x1e\x0d\x41\xaf\x47\x1c\x7a\xa0\x37\x08\x60\x13\x74\x43\xec\xe7\xb2\x73\xb5\x54\x51\xdc\x45\xbe\x8f\x0a\x8c\x03\xa6\xd3\x7f\x57\xff\xa0\x95\x21\x1a\xb7\x40\x2a\x47\x56\x33\xc0\x86\x99\x5d\x06\x84\xd7\x6e\x2c\x0a\x40\x2e\xcd\x09\xd4\xf0\x4a\xc5\x1f\x2e\x50\xa7\x4b\xd0\x99\x45\x34\x8f\xe6\xfe\xfe\x9a\x7d\xba\x19\x1c\xb8\xac\xf9\x9e\x0d\x97\x88\xf7\x40\x90\x72\x88\x52\x2f\xdc\x6a\x64\xfc\x0e\x04\xa2\x62\x4c\x5d\x20\x8e\x49\x24\x86\x8a\x85\x29\x12\xb7\x20\x84\x4c\x42\x62\x88\xc0\x53\xf6\x92\x42\xcc\x11\xd5\xdd\x07\x04\x53\xee\x90\x7b\xf1\x80\x98\x45\x71\x87\xe0\x12\xba\xbb\x38\x44\xbd\x7b\x69\x70\xc3\x36\xdd\x93\xeb\x20\x5c\xf1\xd5\x00\xa1\x7a\x35\x4a\x2f\xc8\x16\xaf\x24\xca\xb0\x20\xbd\x98\xba\x6e\x17\x48\x1a\x45\x94\x95\xe2\xf7\x3a\xbc\x34\xa0\x53\x29\x38\xee\x3d\x21\x3c\x11\x46\x6d\xca\x16\xb4\x15\x9b\xc2\x77\x0d\x66\x53\xf8\x2e\x74\xdf\x90\x2d\x0c\xe1\xe5\x26\x41\xab\xfe\xee\x9c\x2f\x72\x9b\x07\x82\x86\xe8\xe9\x01\x0a\x63\x1f\x53\xa8\x24\xab\x69\xaf\x14\x03\xd5\x1f\x82\xe7\x11\xea\x6d\x60\xf0\xe5\x0b\x7e\x4f\x88\xbf\x9e\x1e\x6f\xdc\x9a\x5c\xa8\x1d\x3c\xb5\x2a\xe3\x8d\x4e\x0d\xda\x01\xcf\xee\xfb\x2a\xde\x10\x20\x74\x8f\xe6\xa0\x69\xa9\xd9\xcd\x9c\x69\x34\x4f\xf8\xd0\xac\x5a\xbb\xbf\x83\x84\x36\xf9\xbb\xc3\xb3\x4c\xdd\x4b\x3b\xa0\x19\xa8\x6e\x05\xd7\xf4\x70\xd9\x07\x54\x42\xad\x2c\x9e\x2e\x37\xba\xa0\xfa\xd0\x1e\xee\xc5\x71\x77\x83\x05\xf2\xcc\x26\xe8\x20\x6d\x4f\x86\x1a\x48\xa6\x66\xc8\x4b\x7b\xb8\x51\x1e\xaf\xee\xaa\xe0\x36\x3c\x1c\x5c\xda\x63\x68\x1a\x40\xcc\x21\xc4\xdc\x1b\xdc\x9d\xce\xf3\xe6\x35\x9d\xbc\x53\x07\x33\xeb\xb3\x36\xc0\xcc\x21\xf6\x6a\x0b\x33\x8d\x37\xc0\xcc\x31\xfc\xe1\xa1\x7d\xcf\x8c\xc1\x7d\x9a\x4a\xee\x83\xa7\x25\x57\x97\x71\xc3\x3d\x54\x88\xcb\x7a\x73\x8f\x37\x0b\x35\x2b\x90\xdb\x5e\xf8\x25\x14\x4a\xa7\xb0\x0b\x4c\x90\xda\x5e\x82\x80\x71\xe2\x8c\xa0\xee\xa9\x49\xf3\x80\x4e\xa7\xcc\xe2\xb2\x1b\x52\xff\x1f\x8a\xac\x2b\x15\x3e\xc9\x84\x09\x0a\x9f\xd4\x45\xdf\xa0\xf0\xa9\x97\xb8\x36\x68\x6a\x6a\xeb\xae\x39\x21\x62\xd5\x40\x0f\x1a\x65\x9f\x1b\x68\x6a\xf2\x55\xfc\x1d\x77\xaa\x09\xba\xc1\xa5\x69\x4a\x40\xaa\xa7\x0c\x48\x55\xb4\xa6\x2f\xbe\x22\x7d\xdc\xa1\x8e\xa9\xe6\xd9\x5e\xa2\x84\x42\x5c\xa8\x63\x4a\xf1\xf4\x81\x54\x43\x84\x18\xea\x98\x4c\x19\x64\xa5\x3a\xa6\x0e\x1d\x22\xa8\x5c\x8a\xb7\xff\x45\x9c\x9a\xee\xf0\xac\x8c\x09\x21\x14\x29\xc9\x4c\xc9\x8b\x38\x95\xc5\x06\x40\x93\x52\x47\xb8\x6a\x61\xa1\x41\x22\x95\xc6\x46\xd6\x2f\x7b\x89\x81\x54\xfd\x72\xb3\x83\x85\x1a\x01\x58\xbf\x22\xfc\x87\x32\xe5\x14\x6a\xca\x20\x94\x66\xb0\xa1\x4d\x39\x85\xae\xfb\x42\xa1\xa1\x37\x86\xc7\x2e\xa9\x07\xa9\x5a\x01\xe8\x3a\x52\xcd\x97\xa0\x83\x46\x43\x6b\x85\x67\x6e\xaa\xa2\x5b\x50\x3d\xd4\xae\x3b\xfb\xcd\x97\x88\xf0\x06\xaa\x87\x9a\xb5\xe2\x6f\xd2\x2d\x8a\xc2\xaa\x74\x0f\xbd\xba\x10\xcb\x91\xdd\x23\xb8\xad\x10\x97\xf4\xa6\x72\x30\x67\x0d\x0e\x28\x37\xc2\x55\x27\xa8\xd3\x14\x04\x86\x52\xd8\x01\xed\x43\x1d\xa2\x23\xd0\x3e\xa4\x3e\x0c\xf1\xb5\xa5\xe9\x83\xc6\x99\xbf\xa7\xf6\x61\xe8\xd2\xa4\xf6\x61\x78\x52\x78\xc7\x4f\x2f\x06\xa5\x9b\xba\x97\xa9\x61\x18\x62\x20\xa0\x61\xa8\xd4\xed\x54\x6a\x18\xce\x24\xd4\xa8\x30\x4e\x33\x94\xd9\x91\x27\x8c\xcb\x37\x74\xa6\xa9\x47\xa8\xe1\x3e\x70\xdd\x79\x2d\x0e\x02\x86\xb8\x59\x68\x03\x9e\xa7\x2f\xb4\x01\x75\xe8\x2c\xbc\x85\x61\x3a\x0c\x6f\x3e\x2e\xbc\x4e\xb8\x50\xa7\xf0\x16\xaf\xfe\x3a\x2f\xd7\x7c\xf3\x43\x2d\xdb\xc6\xd2\x88\x83\x78\x53\xeb\x26\x5a\x40\x69\xfd\x10\x53\x26\x69\xbd\xd8\xb7\x9b\xf2\x30\x13\x43\x88\xeb\x67\x1a\xfe\x90\x18\xae\x8b\x12\xf2\xfa\x94\xa7\xbf\x04\x81\xd3\x6b\xe2\x26\x57\x98\xab\x0b\x37\x54\x1e\x2e\x7c\xb1\xb0\x0a\x7c\xe3\xfa\xf3\x78\x6e\x16\x36\x81\xd8\x55\x2d\xdd\x4d\xbe\x30\xeb\x92\x83\xc8\xbe\x0e\x31\x94\x94\xca\x4f\x1d\x31\x4a\xe5\xaf\xac\x7d\x85\x58\x7e\xe6\xe9\xaa\x03\x42\xfa\x4b\x10\xd4\x09\xe1\x0f\x39\x3a\x5d\xce\x90\xb6\xd7\x24\x2e\xe6\x26\x7f\xef\x66\x20\xa7\xe8\xfd\x87\x32\xec\x2a\x89\xfa\x95\x75\x91\x50\xa2\x9e\xbc\x07\xe0\xf7\xaa\xb6\x19\x12\xf5\x94\x84\x48\x90\xa8\x17\x53\x32\x48\xd4\xb3\x1f\x54\x90\xa8\xd7\x79\xb9\x8c\x64\x44\xef\x5d\x4a\xcd\xe7\xe5\x46\x89\x1f\x5d\x53\x86\x62\x6b\x7a\xd7\x41\x2d\x43\xac\x0a\xe4\xdd\x25\x35\xcd\x11\x77\x9c\xdf\x4c\x90\x2a\x87\xf9\x54\x48\x95\x53\x11\xe7\x40\x51\x61\x9b\xae\x89\x63\x25\x9c\x83\x70\x38\x53\xb9\x5a\x29\xf2\xad\xf3\x81\xc0\x9c\x88\xa7\x82\xc8\x37\xb7\x62\xe8\xec\xf0\x14\xfd\xfd\xc0\xde\xa0\x15\x43\x50\xf8\x89\xc0\x7c\xc8\xcf\x67\x9d\xff\x4f\x70\x69\x0c\x71\x69\x9e\xba\x58\x1a\xb1\x43\x10\xcc\xa5\x4b\xc8\xf9\x01\x51\xb1\x24\xe2\x03\xa2\x32\xc5\x70\x7d\xce\xee\xcf\xae\x77\xf8\x87\xaf\x3b\xaf\x05\xf9\xa6\xac\x6d\xfb\x80\xe2\xcc\xa4\x0e\xb1\xc1\x53\x04\xfe\xb3\x78\x8e\xdc\x07\x18\xa7\x29\xda\xfc\xc1\x0e\xb7\x6a\x88\xd3\xd0\x6a\x40\xf5\x91\xbc\x6e\x0b\xaa\x2d\x4f\x91\xa6\x03\xde\xa7\xcd\x83\x22\x04\xfb\xe0\x41\x59\x24\xa4\xf8\x6c\x0d\x55\x7b\x43\x06\x3f\xb9\x2a\x46\xa3\xab\xe9\xc3\x7b\xab\x08\x8b\x3e\xe7\xde\x8a\xe6\xef\xb0\x8b\x4f\xa3\x1f\xd6\x3c\xcd\x34\x9a\x8c\x4a\x99\xd6\x28\x59\x9f\x19\x8d\x1e\x08\x8a\xaf\xe1\x32\x90\x8a\x82\xfb\xee\x80\xfb\xfb\x6b\x44\x77\x21\x76\x2a\xfb\x43\xec\x54\x73\xcd\x9b\x1f\x76\x81\xdc\xaa\x20\x44\x4a\x41\x4d\xd4\x01\xa1\x3a\x78\x0a\x69\x81\xa5\x56\x83\x0a\x81\xa4\x2e\x21\xaf\x2f\xc5\xd0\x39\x7e\xd4\xa8\x1f\x28\x20\xc1\x30\x04\x2e\x0e\x04\xf0\x40\xc0\x31\x2e\xf2\x01\x39\x72\x17\x52\x27\x20\x88\x0c\x78\xc9\x9a\x08\x98\x25\xd2\xfc\x46\x9b\xc4\x3a\x9f\xb2\x8e\xd1\x5c\x82\x06\x3f\xd4\x3c\x88\x39\x59\x0b\x00\x89\xc2\xf4\x3a\x42\xdb\x36\xa7\x1b\xdd\x20\x7f\x9a\x31\x49\x83\x27\x0c\x31\x19\x15\x30\x07\xe2\xae\xaa\x43\xe8\x95\x69\x36\xd4\x64\xf8\x78\x95\x6a\x90\x96\x0f\xea\x82\x37\x50\xa9\x06\x21\x98\xf0\x3e\x0a\x3b\x2a\x17\x20\xe1\x0a\xe2\x33\xfd\x40\x64\xc7\xab\x20\x4c\x4a\x33\x4e\x07\x57\x66\x8b\x2e\x88\x03\x37\xc4\x1e\x5b\x16\x88\x91\x6b\xac\x09\x54\xe5\xd2\x1c\x13\x55\x40\xf9\x87\x92\xea\x53\x75\x81\xe3\x50\x33\xda\xd5\xae\x3e\xce\xae\x96\xae\x59\x25\x52\x71\x97\x71\x55\xb5\x1c\xe9\xdc\xeb\x83\xbc\xea\x81\xda\xf7\xd7\x9c\xda\xff\x04\xc6\x31\xaa\xcb\x0e\x55\x23\x8f\x7b\x20\x5c\xf2\x4f\x4d\xee\xc6\x10\xf4\x81\x15\x15\x6b\x66\xd8\xe0\x55\x2d\x69\xa6\x4d\x5f\xca\x82\x26\xa8\x68\x13\x44\xe2\xcf\x56\xa0\x72\x9a\x30\xc2\x05\x04\x94\xaa\x97\x0b\xe7\xf7\xd7\xa4\x54\xfc\x40\x38\xa9\xda\x52\x48\xe9\x63\xea\xf8\x65\xbd\x0c\x93\x20\xdc\x6f\x55\x5b\x93\x89\xc4\x3a\x61\x99\x4c\x55\xd5\x61\x84\x21\x77\x9d\x1e\x1c\xad\xaa\x9e\x32\x20\x71\x71\x33\x2f\x5c\x30\x1a\xcd\x41\xd4\x39\x1a\x31\x23\x1f\x2a\x16\x43\x43\x3b\x34\x6c\x18\x69\x32\xf4\xb7\xe1\x29\x71\xed\xbd\x32\x9b\x63\x11\xb6\xc1\x38\x7c\xd6\xa1\x59\x00\xdd\x29\x2f\x3c\x10\xac\xb8\x92\x1b\xbd\x4f\xcd\xe7\xbb\x0f\x9b\xe1\x2a\x16\x48\xda\x42\xb3\x2f\x67\x2f\x66\xd2\x89\x2a\x40\xe1\xd0\x89\x2a\x34\x41\xd0\xca\x14\x92\xa9\xaa\x15\x2e\x20\x53\x55\x47\xb8\x1c\xa4\x9d\x45\x88\x01\x85\x51\x9d\xa2\x4b\x05\xcf\xb4\x36\xdc\xcc\x8d\x53\xc2\x71\x97\x85\xee\x45\x7b\x0b\xef\x1e\xf7\x00\x41\x3b\xe9\xf9\x81\x26\x86\xad\xfe\x88\xc0\x42\xcb\x42\xb2\x50\x35\x6c\x92\x05\x21\x1b\xac\xdc\x4b\xd3\x2e\x15\x3e\x92\xa8\x08\x3e\x20\x4e\xc5\xd0\x87\xe7\x06\x99\xd7\x53\xb6\x58\x55\xcb\x86\x15\xbe\x74\x2f\x54\xdc\x19\x43\x0b\x05\x93\xf8\x74\xd5\xe1\x42\xae\x70\x12\x54\x58\xd8\x04\x42\x61\x2f\x62\x5b\xa5\xd4\x1d\x5d\x20\x17\x2e\x04\x01\xf9\xaa\x5b\x3d\x0b\x90\xba\x21\x8c\x75\x7a\x00\x1c\xeb\x18\x02\x71\x30\xab\x7a\x0c\xdc\x6f\x22\x2f\x95\xf2\xea\x2a\x6a\x5b\x21\xaf\xce\x6e\x95\xf7\x4b\xd5\x3d\x51\x03\xc8\x99\x5c\xb5\x01\x52\x97\xe7\xf4\xc5\x6c\xea\xf1\x5c\x1a\x83\xbc\x6f\x9b\x95\x97\x46\x0d\x7d\x08\x0d\x61\xd3\x46\xd6\x43\xed\x27\xad\x81\xda\xac\x1b\xaa\x71\x9d\xf7\x0a\x14\x0f\x2f\x32\xec\x10\x42\x37\x61\x3d\x1b\x30\x23\xb9\xe6\x0b\x90\x5b\xf9\x3c\x16\xaa\x6d\xb6\x49\xed\xd5\x10\x44\x89\x6c\x13\x04\x86\xa2\x09\xfd\x1b\xa8\x7b\x11\x09\x83\xbb\x42\xbd\x44\x27\x1a\xf6\x86\x5c\xda\x81\xc0\xf8\x0e\x77\x31\xd8\xcc\xf8\x31\x95\x86\xe7\x43\x99\xe1\x3e\x02\x16\x8f\xee\x63\xb1\x9d\x29\xf0\x3c\x3e\xca\x33\x8f\x17\x0b\x3d\x02\xd8\x7b\x89\xda\x37\xec\x63\xd3\x32\x36\x58\x18\x98\x50\x36\x6e\x63\xcb\x2e\xac\xe7\xb5\x7d\x5d\x82\x40\xef\xba\x16\x80\x47\x55\xb7\x44\x83\x65\x4f\xcd\x86\x36\x9b\xd1\x42\x52\xd5\x26\xaa\xd2\xa8\x07\x6d\xea\x11\xb6\x6f\x59\x07\xa9\xe1\x21\x90\x2f\x75\x71\xe8\xe4\xcc\xd9\x35\x39\x63\x11\x2e\x38\x80\x84\x90\xb1\x81\x86\x8e\xf0\x77\x67\xbe\x3d\x1b\x22\x23\xee\xde\x3f\x6c\x45\x23\x85\x4e\xc2\xa4\xb1\x6d\xda\xa6\x6b\xf6\x64\x21\x9b\x0e\x55\xa3\x79\x7a\x75\xd5\x0a\x2b\x2b\x8d\x1b\x4f\x5a\x13\xc3\xb6\x21\xa4\xd5\xb9\x6d\x10\xc4\x99\xf3\x6a\xb0\x3f\xf5\x79\x6b\x87\x70\xd4\x5e\x5d\x93\x33\xac\x6e\x74\xe3\x79\xed\xee\xcf\xd3\x3b\x79\xf6\x1b\xef\x49\x7d\xd8\x27\x8d\x68\xbb\x20\xbc\x27\x74\xbd\x75\x4a\x9a\xbb\x6b\x1e\xba\x35\xd5\x7d\xc7\xeb\x76\x88\xe0\x75\xaa\x87\xb5\x4d\x1d\x38\x94\x84\x51\x1d\x6a\x8d\x22\xaa\x01\x07\x8d\x3c\xb4\x14\x1d\x1a\x88\x11\x2e\xeb\x8f\xf1\xf6\x81\xa0\xf3\xf4\x58\xf0\x9a\xb9\x9a\x6e\xd7\x0e\xd9\x6e\x74\x0d\x26\x38\xfb\xa6\x59\x40\x2d\x5f\xaa\x0b\x61\xa0\x29\xbe\x53\x0e\x05\x1e\x37\xe5\x70\xad\x6b\x00\x90\xc3\xf1\xf9\x7a\x20\x62\xb4\xd8\xd9\x0e\xb1\x48\x29\x6e\x07\x18\xad\xcb\xa7\x43\xba\x46\x43\xf3\x03\x51\x3f\xec\x66\x20\x85\xd4\x21\xee\x78\x79\x24\x8f\x66\x63\xbd\xbd\x36\xc0\x9a\xec\xd5\x80\x1c\xc4\xcc\x64\xe7\x25\xd2\x74\x33\x74\x5c\x22\x55\x3c\x02\x2c\x0d\x6a\x6a\x6e\xf4\x60\x4d\x4b\xfe\x70\xe3\x04\xb9\x0c\x77\xd8\x34\x44\x6b\x79\xd6\x1c\x74\x5a\x50\xd9\x38\x74\xa9\x5c\xc3\x65\xb8\x33\x9a\x58\x0d\xb8\x58\xd4\x2e\x12\x36\x78\x67\x4c\x43\xdc\x29\x2d\xc6\x98\x78\xb0\x75\xb7\xca\x9d\xd2\x8c\xe9\x90\x51\xc3\x9d\xbc\x20\x30\xf4\x87\x6f\x58\x76\x0d\x41\x37\x3f\x74\xd5\x0f\x9e\x7a\x6a\x95\x6c\x42\xf3\xd0\x69\x3b\x20\xfa\x32\x80\x0d\x2d\x0c\x91\xbe\x85\xab\xbe\x61\xbd\x2b\x68\x5d\x8f\x87\xc0\x81\x60\xb3\xaa\x6d\x1c\x72\xbb\xeb\x82\xb0\xe1\xba\xc2\x06\x36\xfc\xea\x3a\xfd\x03\xca\xa3\xab\xfc\x06\x3a\x3d\x60\x9e\x77\xf5\xcb\x0d\x9d\x69\x99\x9b\x1e\x34\x70\xd7\xb5\x31\x60\x9f\x97\x44\x7c\x07\x29\x4c\xbf\x34\x3a\x50\x98\x2a\x0a\x3f\x88\x2c\xfd\xf2\x97\xed\x71\x75\x38\x50\xc7\x85\xe3\x3e\x06\xab\xba\x10\xef\x39\xa1\x20\xdc\xd8\x7c\xc8\x06\x48\x4c\x79\x2a\x9e\x55\xbd\xba\x2b\xbe\xd0\x83\xd6\x18\x4f\x1d\x2a\x5e\x0e\xa4\x29\xba\x10\x56\xd0\x5a\x63\x18\xab\x24\x3f\xa0\x68\xac\xe2\x2b\x7c\x92\xfc\xd4\x29\x08\x7a\x5d\x1d\x5c\x7a\xe5\xf4\xe6\xef\x06\x44\x24\x21\x08\x9a\x96\x07\xc2\x13\xdd\x4f\xd4\x49\x49\x8b\x36\x0e\xe6\x29\xed\xba\xdc\x28\xa4\x82\x62\xa0\x61\x81\x52\xc2\x03\xa5\x56\x55\xd8\x08\xb3\x92\xde\x92\x6b\xe2\xc0\x89\x6c\xc0\xaa\x24\x77\x1d\x38\x58\x95\xd4\x7a\xb9\x0c\xc6\x19\xe2\xae\x64\x55\x52\x5c\x46\x24\xd2\xcd\x4b\x6f\xb3\xa2\x2d\x84\x4f\x59\xf1\x03\x9d\x96\x23\x7e\x67\xc3\x1c\x24\x87\xee\xc1\x49\x01\x89\x18\x68\x5a\x83\x5c\x5d\xb7\x2b\x1d\xcb\x92\x38\x98\x29\xb4\xcd\x6e\x15\xd2\x63\xaf\x29\x30\xd3\xcf\xc5\xc9\xbb\xaf\xeb\x05\x41\x63\x91\xaa\x9b\x70\x52\xd1\xa4\xc3\x48\x8b\x8f\xe6\xe5\xa7\x05\xe8\x30\x84\x4b\xda\xeb\x06\x0b\x50\x63\xd4\x24\x7e\x35\xd7\x24\x57\xa2\x91\x52\xeb\xd4\xbd\x54\x44\xb0\xee\xaa\x44\x30\xb1\xdb\xb2\xf8\xd0\x39\x09\xda\x80\xea\x0a\x0f\x5a\x43\x0d\x43\xe7\x2e\x4a\xe2\x51\x60\x1b\x52\x7c\xa1\xc2\x36\x64\xc6\xe5\x9a\x87\x47\xf4\xed\x0e\x0b\x8f\x12\xd5\xdf\x81\x9b\xd0\xb8\x83\xee\x48\xcd\xad\xbc\xa1\x58\xe4\x0c\x61\xc4\x91\xfc\x76\x85\x11\x47\x36\x6f\x4d\x3b\x8d\xfe\x94\x81\xdc\x3e\x83\x81\xce\xf3\xd2\x92\x46\x40\x04\xe4\x0e\x69\x8a\xa1\x6b\x32\x28\xac\xeb\xc2\xe1\xa0\x0a\x40\xf7\x62\x50\x93\x29\xf6\x39\xa0\x53\xbf\xdc\x23\xdf\xa0\xfd\xa9\x0a\xce\x23\x1b\x9a\x2c\xf4\x97\xd8\xb7\xe9\xc2\x05\x52\x9c\x04\xdd\x67\x70\xda\xef\x90\xd4\x4d\x83\xa3\x53\x8e\xb6\x2d\xa8\x4a\xea\x5d\x03\xd0\xa3\x54\x8d\xc2\xa8\xf8\x59\x2a\x2a\x79\x44\x6c\x42\xfb\xad\xab\x29\x68\x4f\xaa\x9d\x5a\xd4\x32\xfa\xba\x5d\xf4\x5b\xeb\x86\xc8\xd0\x24\x41\xe5\x3c\x67\xd2\x0f\xc5\xd3\xa7\xea\xd9\xff\x24\xe2\x03\x7b\x8f\x72\xe9\x4c\xc3\xde\x63\x52\xe6\x7e\xa0\x75\xe6\x1f\x1e\xcd\xe6\x68\x5c\x88\x07\xc4\xf3\xe1\x1b\xcf\x29\x2e\x07\x6c\x3a\xea\xd0\x6a\xc0\xa4\x63\x5e\xcd\x10\x89\xfd\x70\x55\xea\xfc\xd5\x07\xef\x37\x8f\x4d\x54\x44\x84\x6a\xd1\x1f\x45\xc4\x0f\x96\x1a\xe9\xd2\x8d\x06\x4b\x8d\x64\xde\x1e\x96\x1a\x39\x89\x84\xd3\x52\xc3\xaf\x5b\x58\x6a\xb4\x67\xc2\x10\xeb\xb7\xe9\x9a\x13\xcc\x8e\x21\x70\xa5\x97\xdb\x5c\x60\xbd\xfc\x1d\xad\x25\x55\x13\x32\xd7\x26\xfa\xb2\x68\x6e\x2e\x04\xa3\xa3\x62\x75\x0f\x67\xbf\xdb\x75\x19\x82\xb2\x46\xfc\xf2\xe6\x76\x0f\x0d\x0d\x96\x12\x33\x09\x6d\x37\xdf\x5d\xe3\x32\x08\x1b\x03\xb1\xc1\x30\x80\xa8\x59\xeb\x2d\x03\x88\x21\xca\x04\x03\x88\x3c\x74\x11\x6d\x32\x2d\x23\xb9\x4f\xd8\xd4\x89\xdc\x6d\xf9\x11\xea\x43\xbe\x74\x87\xee\x6c\x58\x39\xe4\x1a\x86\x80\xd4\xba\x27\x60\xc8\xd0\x2e\x37\x4a\x39\xd3\x10\x85\x87\x25\x43\x2e\xdd\x1f\x1e\x14\xeb\x22\x23\x9b\xdc\xae\x05\x01\xfb\xec\xff\xec\xe2\xcc\x36\xf7\x7f\x78\x7d\xce\xfe\x9f\x47\xbd\xa0\xfb\x2c\x4f\x78\x00\x1f\x18\xc7\xa8\xec\xec\xf1\x79\x61\x0b\x2a\x6c\xa6\x0a\xa4\x89\xa5\x06\xb7\x39\x65\x2d\x00\xf8\x92\x70\xa3\x90\x26\xe5\xcb\x35\x21\x2e\xf3\x92\xe3\xc9\x32\x75\x8c\x37\x94\xbc\x45\x77\x21\x4d\x07\xa6\xf7\x11\x9b\x6c\x99\x04\x5d\x51\x8b\xb6\x4a\x2e\xa5\x42\x1c\x7a\x94\xfa\xa5\xfd\xe2\x13\xd9\x3c\x03\x5c\x4a\xeb\x25\xd2\x20\xdf\xd0\xee\x0f\x71\x16\x7c\x4f\xc0\x56\xa0\x15\x21\x2e\x6c\x05\xea\x74\x8f\x34\x29\xd5\x16\xd3\xc9\x33\x84\x9c\x2f\xee\x5b\x73\x19\xd1\xa8\xb9\x30\x10\x65\xa1\x0b\x5a\x8f\xaf\xe8\x81\xf0\x2c\x12\x9d\x7a\xf1\xf4\x89\x2d\x86\x79\x40\xf6\x93\x98\xce\x9a\x97\x49\x83\x9c\x35\x9f\xaa\x50\x81\x56\x37\x73\x50\xa3\xbb\x0b\x08\x04\xc3\x73\xc2\x63\xd6\x2f\x36\x58\x00\xcc\x4b\xf7\x39\x2d\x00\xae\x21\x92\xfa\xe2\x96\x8a\x45\x84\x72\xbe\x78\xbb\xa9\x9b\x4f\xa2\x5a\x2f\x3e\x34\x45\x8a\x5e\x54\xab\x56\x43\xc0\x2f\xe1\x1e\x9c\x19\xa7\x39\x3d\x38\x33\xca\x35\xf6\x40\x9c\xe1\x74\xe1\x99\xa1\x05\x74\x6f\x5a\x69\x8e\x99\x7f\x4c\xa7\xe1\xeb\x58\x2d\x75\xa0\xfe\xff\x1a\x7a\x98\xd0\xd9\xb1\xe8\x91\xf0\xa6\x84\xa4\xb8\x2a\x8c\x3c\x8a\x6b\xca\x50\x4c\x10\xec\x32\x9f\x56\x20\xa0\x14\x12\xdb\x4b\xd1\x93\x94\xa0\x2b\x04\x65\xf8\x25\xe9\x43\x1a\x2d\x8b\x4b\x81\xa9\xc0\xf4\x75\x4b\x4b\x81\xea\x0e\x61\xfb\x3e\x44\xa6\x61\x28\x90\x2d\x3b\x81\x31\x40\x4a\x4f\x2b\xb8\x5f\xfc\x80\x86\x35\x80\x5c\x8c\x0f\xf4\x66\xa1\x56\x15\xc4\x3f\x69\x53\x61\x0e\xd0\x8a\x98\x46\x98\x03\x54\xcb\x04\xe0\x8c\x28\x07\x8d\x03\x1d\x1a\xd6\x85\x37\x34\x15\x18\xd5\x65\x30\x78\xd2\x71\x7b\x93\xa3\x30\xd9\x7c\x0b\x35\x35\x54\x48\x56\xa7\xc8\x9d\x4c\x05\x46\xb8\xd5\x5f\xbd\xa1\x0f\x44\x02\xa7\x4b\x14\xfe\x88\xe5\x99\x06\xd1\xd8\x4b\x45\x87\x26\x11\x0a\xd8\x11\xd4\xec\x3d\xdd\xb0\x36\xd4\xdd\x4f\x97\xc3\x6b\x18\xe5\x70\xc5\x5c\xde\x37\x88\x64\xb2\x57\x1c\x8f\xeb\x3e\xdd\x0c\xb1\x48\x94\xf1\x4d\x99\x4c\x71\xab\x13\xd8\xe0\xfe\x83\x55\x0d\x2e\xcc\xca\x7d\x40\x8f\xab\xaa\xf2\x10\xd4\x11\xbf\x29\xaf\x9d\xba\xa9\x6e\xa9\x8a\x9b\x20\xf8\x78\xea\xf8\xdf\x34\x53\x2d\x86\xc8\xed\x5f\x82\x16\x9b\x71\x1f\xb8\xa8\xba\x1b\x3d\x8c\x62\x7a\xba\x00\x4b\xe5\x66\x80\x7f\x3e\xd4\xf0\xc3\xcb\x4d\x07\x1e\x7e\x78\xe7\x8d\x23\x08\x6e\x4c\x42\x7f\x6a\xff\x87\x1e\x1b\x37\xd9\x0b\xab\xca\x6e\xfa\xbb\x0a\x55\x61\x1a\x30\x86\x16\x55\x6e\x34\x53\xaf\x24\x38\xdb\x15\x8b\x8b\xe9\x6c\x37\xc4\xec\xcb\x34\xc0\xaa\xc2\x9b\x06\x50\x4f\xab\x70\x67\x9e\xfe\x70\xb0\xaa\xc6\x43\xd5\x89\x57\x83\x5e\x21\xe1\xb2\x43\x1b\x2d\xaf\xbd\x89\x54\xba\xa7\xe0\xfb\x36\xb3\xe8\xcf\x4d\x3e\xd5\x2f\x21\x3a\xbf\xcd\x70\x61\x63\xa1\xe6\x01\xf7\xf1\x4b\x37\xf3\x4d\xcb\xb9\xcb\x10\x08\x87\x46\xf3\x21\xe3\x62\x0e\xeb\x43\x13\xcf\xe9\x42\xb8\xe7\x8b\x70\xc0\x8c\x60\x8c\xe1\x9a\xf3\x09\x07\x70\x20\x38\x2d\x68\x1a\x34\x23\xb8\x9e\xb2\x0d\x9f\xc5\x29\xe8\x75\xf8\xa6\x69\x08\x76\x7b\xe2\x28\x3e\x94\xeb\x0a\x6d\x3f\xf4\xa0\x16\x7f\x23\x1f\xa6\x29\xa2\xf2\xc1\x53\x24\x89\xa3\xa1\xc5\x81\x75\x6c\xb4\x38\x48\x57\xfa\x31\xa1\x86\x39\x42\xb5\xca\xed\x43\x8e\xc6\x02\x6a\x98\x23\xe4\xe8\x1e\x00\x7d\xfa\xd4\x07\xe3\x92\x5c\x86\x88\x46\x7a\x6e\xc1\xc8\x60\x58\x97\x03\x1b\x83\x6c\xcd\xdd\x07\x68\x64\x84\xfb\x40\x35\x59\xb2\x9b\x81\xa5\x9a\x68\x8a\xec\x0f\xa6\x68\x33\xec\x0f\x5a\x19\x2e\x0c\x40\xfe\x70\x41\xc5\xab\x45\x25\x83\xeb\x1d\x86\xba\xa8\x3e\xdf\xbd\xbf\xbf\xfc\x2c\x82\x69\x42\x6a\x97\x3b\x80\xd0\x47\x34\x1c\xa6\x09\xc5\xd2\x33\x58\x26\xb4\xa2\x7b\x19\x96\x09\xa5\xfa\x3b\x3a\x65\x3e\x35\x79\x4c\x44\xb5\x3f\xb4\xef\xac\xfe\x90\x02\x42\x97\x9d\x09\x5a\x1b\x07\x8b\x86\xd2\xbc\x4c\xb8\xec\xcd\xc0\x7f\xb6\x36\x46\x13\x44\x5c\x83\x22\xe9\xf4\x67\x33\x7a\x8c\xfb\x7f\xa3\x0c\xeb\x1b\x97\xd0\x9b\xcc\x56\x5c\xd4\x87\x70\x81\xe3\xe2\x75\x4f\x37\x8c\x03\x16\x70\x49\x45\x50\x85\xff\xca\x14\x44\xec\xeb\x2e\xec\xe8\xc4\x85\xdc\xa8\xee\x66\x61\xfa\x4d\xe6\x3f\x2e\xde\xe8\x14\x57\x07\xad\x28\x6a\xb8\xe6\xe6\x87\x4d\x20\xb4\xd6\x4f\xd5\xf7\xb9\x6f\x93\x9b\xa1\x53\x86\x87\xfa\x81\xa7\x89\x6a\x9e\xcb\xbf\x74\x1e\x9b\xb8\x28\x2f\x2a\x6a\xf3\xdc\xfd\xad\x0c\xb5\x02\x33\xc1\xc9\x2d\x0e\x85\x62\xd2\x95\x1e\x08\xc6\x94\xbb\xa7\x18\x9c\xa2\xbb\x80\x83\x69\xd2\x32\x4a\xb0\xad\xe9\x93\xd5\x9f\xc3\xad\x42\x75\x71\x19\xba\xa1\x7f\xf1\xd8\x0e\x29\xce\x59\xb3\xc0\x19\xea\xd5\x10\x50\x6c\x6a\xdc\x64\x36\xe7\x50\x8f\xe7\x0c\x35\xba\x99\x1f\x08\x52\x37\x2f\xff\x39\x27\xf4\xa5\x3e\x00\x9e\x81\x4d\xc3\x86\x79\x73\xaf\xea\x9d\xf7\xf9\x1c\x5a\x7d\x08\xa1\x66\xb8\x07\x9a\x0c\xb8\x8c\xe1\x4d\x5c\x86\xf8\x02\xde\x35\xc4\x17\xb8\xfc\x1d\x59\xd6\x39\x34\x6e\x48\xd2\xa5\xb6\x8a\x6b\x63\xf5\xa7\x21\x52\x70\x6f\xc6\xa6\x13\x84\x3f\x84\xc6\xad\x6a\x1a\x38\x0c\x22\x44\x71\xe1\x3e\xd7\x0d\x16\x97\x0e\xc3\x70\xab\x64\x4b\xb4\x18\x38\x0c\x12\xca\x84\x8c\x3d\xa6\x17\x07\xc6\x1e\xba\x96\x42\xc6\x1e\x12\xbb\x47\xc2\xeb\xe6\xd2\x2e\xc2\xf4\xa3\x15\xea\x40\x22\xf1\x75\x23\x0c\x4b\xc2\x77\x0a\x5e\x22\xd1\xc0\x50\x78\x93\x28\xe7\x14\xbb\x1d\x09\x08\x2f\x51\x47\xa4\xc9\x83\xab\x76\x60\x43\x76\xe8\xdb\x8f\xe8\x74\x24\x32\xb4\x93\x2c\x5d\xc0\x4e\x24\x4b\xf2\x15\x89\xa8\x3a\x35\x80\x40\xb0\x14\x0f\x0e\x06\xad\xe5\xa9\x09\xaa\xe9\xb1\x89\xdc\x87\x3f\x64\xbc\x10\x17\xd2\x43\x8a\xbb\x93\xc0\x7c\x7a\x93\x13\x5f\xa5\xd3\xeb\x71\x48\x7a\x2b\x42\x8f\x44\xee\x33\x74\x00\xd2\xc2\xe0\x9e\xaa\x83\x85\x5a\x8f\xc5\x58\x0a\x82\x48\x64\x3d\x1c\xe0\x4e\x4d\x6a\x06\xaa\xfc\xe1\xbd\x22\x91\x8d\xa7\x10\x06\xbe\x64\x5b\x02\x66\x2b\xad\x84\x21\x2c\x87\x17\x6e\x53\x46\xab\x79\xd0\x72\x42\x38\x9f\x88\x3a\xde\xc7\x4d\xf2\xc3\xd5\xa0\x11\x8b\x6c\x2c\x22\x53\xe7\x2f\x83\x84\xc8\x13\x58\x1e\x2e\x2c\x2c\xec\x02\xb9\x38\x6e\x87\x8b\xf3\x34\x0b\x0b\x1b\xf2\xa2\x91\xc1\x28\x54\x5e\x86\x91\xa1\xbd\x0b\x21\xab\x6c\x63\xa4\x3e\x8b\x4c\xef\xe0\xf0\x87\x20\x2b\xbc\x1d\x22\xe3\x2d\x34\xdc\x0c\x31\x27\x1e\x10\xae\x09\xc2\xc0\x4c\x65\xf1\xd3\x49\x70\xac\x49\x10\x9c\x7d\x3c\x49\x3c\x86\x4a\xd3\xac\x60\x8c\x2f\x89\x75\x64\x52\xc0\x10\xea\x64\xc4\x9a\xab\x42\x00\x18\xe0\xb4\x2a\xd2\x09\x03\x9c\x26\xb1\x51\x64\xe1\x4a\xd1\xe0\x80\x2b\xe2\x14\x02\xf6\x37\x4d\xb7\x6c\xc0\xfe\xa6\xf6\x6a\x68\x23\x9c\x9d\x9b\x01\x4b\x2d\x42\x0a\xfb\x9b\xc6\x60\x07\x07\xba\xd9\x85\xa6\xc8\x4b\xde\x4b\x45\xe2\xe5\xcb\x02\xd1\x18\xab\x5e\xa6\x91\xf9\x52\x09\x91\x9d\x4c\x3d\xa0\x68\x19\x6c\x77\x5a\xbd\xd4\x2a\xc9\x95\x37\x19\xd7\x33\x1d\x28\x0f\xf4\xfa\xfe\x8a\xcb\x7b\x0c\x11\xaa\x58\xc3\xc8\x14\xa1\x86\x47\x8e\xb0\x09\x7a\x7e\x46\x39\x38\xa7\xb7\x58\x14\xba\x69\xf0\x81\x11\xb0\xe3\x69\x95\xdc\x57\x14\x61\x5c\x35\x88\xa8\x18\xba\x9d\x8a\x30\xae\xba\x51\xc4\xfd\xe8\x6e\x15\xae\xc6\xd9\x65\x87\x90\x99\xae\x16\x86\x16\x1a\xae\xf9\xc2\xd0\x9a\xa0\x37\x3c\x06\x5d\xf3\x3e\x03\x75\x23\x98\x83\xd0\x0d\x86\x43\xcd\xf7\x48\xa1\xb3\x87\x3b\x08\x4e\x42\x4d\x1e\x6c\x6b\x95\x8f\x1d\xba\x9d\x9f\x51\x0f\x81\xe0\x94\xa6\x0b\x27\x0b\x35\x43\x3e\xbe\xa3\xba\x59\x8e\xd4\x85\x40\x86\xec\x2f\x6f\x40\x1a\x2a\x6f\x63\x7f\x47\xc3\x95\x68\x5a\xe2\x73\x1d\xcf\x21\x4a\x01\x5b\xa5\x74\xde\xb0\x3f\x24\xd5\x30\x64\xca\x46\xa9\x42\x24\x16\x33\x04\x43\xa6\x52\x3c\x2b\xd9\xd0\xba\x26\x2c\x21\x9b\x21\x5c\xc0\x3a\x35\x30\x6b\x2a\xb2\xc4\x0b\xc4\xf1\xac\x32\x40\x08\x18\x39\xb5\x6a\xcc\xc0\xe5\x28\x2d\x40\x14\x5a\x42\x86\x18\x2c\x86\x5b\x30\xb6\x95\xcd\xa5\xd1\x42\x09\x15\x8d\x19\x8c\xe0\x21\xbe\xa5\x92\x8d\x94\x0a\x32\x60\xf3\x54\xd3\x53\x58\x81\xe0\x53\x10\xf1\x4d\xf7\x28\xac\x9a\x8a\x74\xf7\x51\xe9\xed\x26\x54\xa9\x14\xf6\xc6\x70\x61\x1c\x34\x6a\x02\x80\x46\x22\x0c\x95\x1c\x9e\x3b\x3c\x68\xd4\x64\x17\x1b\x30\x54\x6a\xb2\x70\x0b\xc4\x22\x6d\x55\x4c\x05\x8c\x91\x5a\x15\x5d\x52\xc4\xca\xd0\x11\xae\x10\x9a\x48\x01\x1b\x95\x1b\x55\xfc\xe1\x02\xd4\x05\x71\x19\x75\xc3\x55\xe8\xeb\x62\xb8\x90\x94\x39\xfc\x25\x78\xa5\xea\x56\xe1\x7c\xe4\x75\x83\xc0\xb6\x36\x4d\x8a\xb1\x5f\x8b\x66\x2f\x6a\x13\x6a\x95\xbb\xda\xd4\x0c\x2e\xb1\x5a\xdd\x0c\x30\xbc\xba\xe6\x9b\x96\xef\x1a\x1c\x78\x9c\x91\xfd\x21\x96\x51\x0b\x0e\xe3\xa8\x53\xb5\x09\xc4\x3a\x6a\xa8\xb4\x8e\x4a\x97\xe8\x2d\xac\xa3\xb2\xef\x2d\x5a\x47\x75\x21\x20\xad\xa3\xd2\x75\xb9\x10\xd1\x92\xb4\x57\x30\x72\x6a\x55\x1c\x07\x8c\x9c\xe2\x01\x3e\xe7\xb1\xaf\x91\x36\xd2\x06\x6d\x38\xec\x96\xa6\x2f\x7f\x98\x2d\x9d\x27\xac\x06\x43\xe2\x50\x5d\x88\x6b\x42\xc7\xbf\xf1\xbc\x37\x37\xca\xd5\xd0\xfc\x9b\x7c\x62\x55\x95\x96\x04\x45\xc3\x86\x30\x5d\xfa\x8c\xa0\x15\x53\xd1\x81\x6b\x38\xc4\xb5\x1b\x22\x6e\xf8\x3b\x68\x53\x3c\x18\xaa\x72\x2f\xe1\x1f\xcc\x98\xea\xd0\x69\x6c\xbc\x8a\xbc\x6c\x70\x5f\x0d\xaf\x3e\x45\x56\xda\xe1\xc6\x3b\x43\xa7\x0f\x96\x42\xa5\x17\xb5\xa9\x1d\x2e\x1a\x29\xf4\x30\x55\x7c\x4a\x93\xe3\x83\xea\xd2\x8e\xa8\x88\x8a\x74\xee\xb0\xa6\xd1\x19\xab\x4e\x3c\x6d\x9f\xc4\xb0\x21\x08\xde\x6d\xd9\xd0\x79\xee\xfc\x5a\x36\xd1\xca\x25\x08\xc6\xe5\x62\x04\x3a\xf8\xdb\x19\xee\x0f\xb3\x78\x7a\xe7\x19\xe6\xb0\x7b\x10\xf9\xb4\xdf\x9d\x87\xb8\x1b\xc2\x21\x16\xd1\xa0\x91\x51\xc9\xfe\x10\x08\x25\x2a\xd1\xc9\x97\x3e\xd0\x1b\x9c\x9f\x26\x2f\xd1\x6a\x2b\x3f\x26\xd3\x08\x12\xd2\xaa\x1e\x94\x1d\xb6\xbe\x97\x76\xb8\xc3\x4c\xb1\xea\x11\xd1\xb5\xc3\x5a\x70\x58\x15\x4d\x5f\xd2\x7d\x71\x6f\xba\x41\x84\x41\xd2\x1d\x02\xb3\xa2\x26\x2b\x65\x46\x4a\x9d\xd2\x89\x30\x54\x6a\x7d\x9a\xd9\xc4\x77\x11\x0a\x98\x15\xb5\xea\x3d\x85\xe4\x33\x99\xc2\xd2\xae\x28\xbc\x8d\x9b\xc2\x9e\xee\xba\x58\x2c\x0f\x9d\xb7\x81\x1f\x35\x9d\x01\xd7\x74\xa8\x60\x83\x74\x0a\xb5\x94\x42\x24\x49\x0e\x60\x77\xd4\x64\x2a\x1a\xb0\x3b\xaa\xd2\x3d\x30\xb2\xeb\xac\x3a\x39\x83\x4a\x79\x11\x2e\x9a\x1d\x25\x3f\xf8\x07\xa9\x81\x9e\x9c\xb0\x1e\x9a\x32\xeb\x8d\x41\x14\x10\x1d\x1d\x64\x07\x9a\x21\x98\x99\x84\x6b\x12\x3d\x42\x10\xc9\x8f\xc7\x46\x72\xa0\x1d\x40\x20\xe8\xe9\xab\x02\x46\x47\xa7\xaa\x5b\x85\xf0\x2d\xbb\x55\x9c\x4e\xbd\x29\x86\x90\x47\x8f\xa3\x21\xfc\x10\xb4\x88\xbc\x22\x24\x83\x6a\x59\x5d\x1d\x83\x51\x3c\xa5\x41\x8e\x01\xc5\x50\xf3\x5a\x91\xe1\x15\xa7\x3a\x16\x36\x56\x7b\x37\xc8\xef\xea\x75\x3a\xe8\x50\x75\x85\x41\x9c\xba\xa7\xd1\x73\x39\x5e\x1e\x2b\xaf\x27\x6f\xd5\xc2\x50\xc5\x53\x0e\xa1\x92\x8e\x24\x8d\x8e\xaa\x1b\x3d\xa8\x14\x97\xb7\x83\xd7\xca\xf0\x87\x08\xa0\x22\x42\x36\x48\x65\xc2\x10\x90\x23\x89\x91\x83\xb9\x50\x6b\xe2\xf0\x27\xa9\x8c\x10\x00\x26\x41\xb3\x89\x1e\xc3\x24\xe8\x7c\xe8\x42\x4c\x2a\x5c\x18\xd0\x75\x17\x41\x20\xe4\x1a\x37\x4c\x82\xe2\x9a\xae\x89\x20\xc1\xd9\x65\x30\x2d\xd1\xcd\x89\xb8\x33\x53\x66\x66\x31\x89\x1c\x4f\xa3\x81\x09\x0b\x55\x60\x21\x34\x86\x47\x8a\xb7\xf1\x95\xdd\xcc\x86\x88\x47\x73\x0a\x70\xed\xc2\x38\x1a\x01\xa5\x94\xfc\x21\xd7\xc6\x5d\x60\xf9\xc5\x29\x4e\x3e\x77\xf4\xfa\x9c\xda\xfd\x21\x68\x60\xd9\xd4\x21\x44\x35\xb6\x41\x0c\x18\x0c\x4d\x1f\x31\x86\x88\x69\x5e\x36\xdc\x23\xed\x72\xd9\x8d\x39\x69\xa4\xd0\x20\x76\xd1\x5c\x58\x04\x85\xc9\xd1\xa4\x34\xc6\xdd\xd3\xae\xb1\x18\x2a\xec\xde\x1f\xe2\x86\x17\x82\x21\x7a\x4c\x5c\xc2\x0c\x98\x12\x95\x76\xb9\x51\x6e\xa9\x78\x5a\xd8\x12\x85\x2c\xe7\x03\xb6\x44\xed\xd7\xaa\x8b\x55\xdd\x25\x22\x14\x89\x3a\xc2\x40\x28\x9d\xe7\xd5\x0f\x89\x35\x23\x3c\xa7\xa4\x1d\x87\xf9\x50\xc8\x38\x9e\x31\xa9\x9a\xec\x2c\x03\xa6\x3e\x4d\x62\xd4\x40\x2c\x97\x9a\x44\x73\x61\xdc\xd3\x7c\x32\x11\x67\xa5\x35\x5d\xc7\x08\xb3\xd2\x24\xd0\x0e\x84\x59\x69\x4d\x54\x04\xb6\x3d\x4d\x66\x66\x01\xdb\x9e\x30\xd9\x44\x28\x95\x30\xd5\x64\x84\xee\x24\xeb\xc0\x08\x18\x6c\x34\x11\xca\x58\x5c\x71\x1d\x8d\x58\x1c\x8d\x21\xae\xb8\xab\xf2\x9c\x6a\x6c\xa4\x0c\xa9\x19\x84\xdd\x4b\xf8\x43\x78\xb4\x0a\x53\x60\x05\x54\x2d\xfc\x08\x3c\x93\x65\xf0\x1e\xb1\x48\xfd\xfc\xdd\x07\x58\xa4\x85\xa2\x3d\x6c\xd2\x5d\x85\xd0\x2e\x4d\xa6\xb3\x01\x83\xa1\xb8\x44\xa8\x43\x88\xa3\x3b\x86\x06\x43\x92\xc4\x47\xd0\x8c\x3a\x89\x59\x88\xcd\x88\xf1\xea\x52\x98\x23\x7e\x24\x10\x29\xd4\x52\xa4\x80\x91\xa3\x94\x06\x11\xc2\x1c\xdd\xcf\x30\x27\x0a\xdf\x63\xeb\xdc\x46\xcd\x42\x46\x04\x8c\x69\x4d\x07\x9e\x26\x42\x5d\x98\x02\x4b\x9f\xf0\x65\xb4\x18\x05\x2b\x89\xfc\x2d\xca\x94\x93\x1b\x45\xd4\x66\xf5\x0f\xdb\x9e\x46\xd7\xdb\x03\x55\x7e\x38\x05\x62\xaf\xc2\x85\xe7\xe0\x16\x61\x35\xac\x72\x8a\xdf\x58\x8b\xfb\xa8\x5b\x64\x69\x1f\x45\x38\x60\xb2\x33\xfd\xfe\x44\x70\x93\xb0\xdc\x70\x81\xa6\x37\xd1\x26\x18\xe2\xc4\x25\xd9\x30\x82\x9b\xcc\xee\x56\x64\xb8\x2e\xe2\xb0\x48\xe1\x75\x6d\x2c\x98\xfd\xc9\xfe\x3e\x16\x0d\xd0\xf5\xe1\xe6\x9a\x4e\x43\x09\x50\x17\x94\x41\x54\xb2\x20\x78\x7f\x64\xd7\xe4\x81\x77\x4d\x6c\x9b\x8e\x3f\x63\x94\xc8\x22\x30\x60\xa1\x93\x92\x1c\x2a\x03\x41\x4a\xc2\xf2\x05\x98\xe8\xcc\xe7\x43\x1e\x4d\xd1\xc2\xcd\xa3\xe9\x0e\x83\xa6\x0e\xae\xb9\x71\xbd\xba\xec\x45\x3b\x6e\x17\xe2\xf4\x0b\xdf\x60\x67\x93\xcd\x9a\x6f\x7a\xde\xeb\x30\x20\xba\x48\xcd\x12\xc4\x21\xb8\x48\x6b\x6e\x05\x6a\xd0\xa1\x15\xa5\x0d\x8e\xfd\xd9\x02\x36\x38\xc9\x2f\xda\xcd\x13\x96\xdd\x0c\x47\xa3\xa7\xd0\x86\x25\x67\x11\x1b\xb7\xe9\xa8\x20\x3c\x61\xc8\x10\xcb\x1e\x11\x15\xa4\x0c\xaf\x29\xee\xec\xe6\x0e\x49\x52\xc5\x0d\xc3\x5c\x27\x4d\xcf\x89\x16\x98\xa2\x13\x30\xde\x29\x46\x0c\x18\xef\x34\xdf\xe7\x2f\xc6\x98\x6b\x86\xb0\xdc\x7a\xa6\xd0\x94\x27\xc9\x76\x2e\x60\xcb\x53\x65\xf1\x1e\xb0\xe5\x89\x2b\x7e\xac\x4d\x0c\x85\x8e\xbf\xfc\x21\xc6\x4d\x95\x6c\x20\x96\x48\x93\x9d\x59\xbc\xe8\x3e\xab\x8b\xe9\x45\x47\x85\x5c\x0d\xbe\xe1\x26\xa6\xaa\x88\x70\x3b\x74\x66\x11\x04\x7e\x0e\x91\x22\xd8\x00\xcd\xf6\x94\xe1\x78\xe5\x66\x70\xa2\xd0\x55\x41\xc3\xb5\x33\xff\x31\x44\x7b\x63\xdc\xc2\x62\xed\x0a\xe2\xa7\xd7\xa2\x9b\x10\x41\x0c\xdb\xe5\x71\x83\xf1\xba\xdc\x0a\x5f\x06\x59\xc7\x1b\x01\xd4\xdb\xe5\x09\xe3\x65\x20\xed\x65\xd0\xb2\xc7\xcf\x1d\x84\xef\x68\x97\x24\x18\x0c\x61\x7e\x15\x97\x31\x06\xbd\x5a\xc1\xbb\xd0\xaf\x3b\x18\xf6\x28\xe9\xc0\x81\xc0\x94\x65\x51\x37\x85\x29\x57\xa3\xb0\xec\x39\x85\x53\x20\x4c\x07\xf5\x10\x87\x09\x4e\xb6\x1c\x86\x66\x36\x3d\x1b\xe2\xa4\x74\xdc\x10\x37\xbc\x5d\x4f\x21\x78\xc4\xa7\x0c\x21\xde\xba\xfb\xc7\x7d\xae\x6b\x49\xc1\x3b\x84\x8b\x8c\x1b\x6e\x91\x30\x4d\x69\x2c\x94\x83\x29\x4d\x4e\xc5\x10\x8e\x77\xb8\x26\x97\x54\x93\xc0\xcd\xfb\x14\x31\x36\x80\xbb\x83\x77\x87\xee\x5d\xda\xd1\xc8\x4a\x3a\x18\xd4\xfb\x12\x3e\xd3\x56\xc6\xb2\x14\xda\xca\xa4\x2c\xae\x13\xb6\x32\x45\x7e\xbc\xf1\x26\xbd\xce\x0f\x38\xb1\x86\xfe\x12\xbb\xf6\xb4\x8a\xd0\xdd\xc5\xfd\x63\xd7\xaa\x21\xa2\x77\xf8\x43\x18\xbb\x8b\x27\x81\x1d\xcd\x29\x34\x08\xe5\x9a\x17\x8a\x78\xd2\x0c\xc1\xaa\x41\xf7\x85\x0c\x60\x84\xa6\x6f\xe2\x89\x4e\xf0\x9b\x7e\x00\x7a\x6a\xd3\xc6\xc5\x3a\x20\xd8\xb8\x64\xbf\xd1\x61\xe2\x92\x65\xef\x1c\x30\x71\x69\x97\x2e\x2f\x98\xb8\xb4\x4b\x58\x02\x2b\x96\x12\xe1\x32\xf4\xa0\xf5\xbe\x99\xa8\x41\x5c\x1f\xa2\x50\xb7\x4b\xac\x04\xc3\x56\xc8\x61\x26\x60\x7e\xd2\x4c\x86\x60\x7e\xd2\x2e\x11\x3a\x58\x9f\x24\x59\xcd\x04\xad\x4f\x8a\xf6\x17\xd6\x27\x4d\xc6\x9e\x71\x73\xd7\x64\xfd\x13\x0c\xf5\x6c\xa6\x07\xd6\x27\xed\x6a\x6e\x74\xb2\xaa\x46\xca\x5d\x13\xa1\x47\x64\x8a\x53\xe8\x4e\xe0\x06\x33\x3c\x80\x17\x0b\x5d\x17\xdb\x26\xc9\x2a\x2c\x55\xb2\xa5\xcc\xb0\x54\x69\x97\x08\x0f\x2d\x55\x92\xe9\x3e\x2c\x55\xda\x25\x61\x0a\x82\x2f\x37\xb3\xcb\xb4\x30\x19\xba\x75\x61\x61\x62\xd6\x01\x66\x23\x59\x9e\xd2\xc1\x88\xb6\x59\x6c\x15\x62\x51\x34\x45\x18\x08\x84\x18\x6e\x87\xe7\xff\x21\x85\xfe\x30\xbe\x97\x6c\x38\x83\x26\x26\x1e\x1a\x4c\x4c\xda\xe5\x3e\x82\x03\x4d\x82\xb0\x6e\xcf\x77\x20\x83\x62\xce\x10\x99\xa2\x99\x39\xfb\xf0\x1d\xed\xf7\xd8\x47\xd1\xf6\xd5\x0c\xdf\xd1\x42\x1b\x98\x8d\x84\x25\xb0\x1f\x6e\xb1\x10\xe5\xc3\xe5\x16\x69\xa7\xa5\x46\xb2\xe6\x14\xa6\x1a\xcd\x6c\xd5\x87\x0b\xac\xcb\x13\x56\x15\x53\x9e\x65\xf1\xd1\x72\x6b\x30\x88\x4c\x1c\xc3\xdf\xc1\x4c\xc7\xb3\xd8\xec\x10\xdf\x2d\x18\x4e\x34\x31\xe0\xeb\x22\x31\x95\x8a\x6f\xc1\x70\xa2\xc8\xad\x67\xc1\x36\x62\x6a\xdc\x8b\xd1\x99\x1b\x11\x75\xc1\x34\xa2\xc9\x4c\x67\xc1\xfa\x61\xea\xd6\x5b\xb0\x7e\x68\x7a\x47\xac\x8b\x77\x20\x93\x71\x1c\x90\xa3\x51\x33\xb0\x69\xd0\x4b\x71\xc1\x50\x21\xe9\x62\x5b\x17\x5f\xb8\x3c\x7b\xeb\xe2\x3e\x0d\x75\xc1\xa7\x8a\x07\x8a\x67\xeb\xf5\x7c\xc7\xd8\x53\x97\xaa\xf2\x60\x0e\xcd\x82\xa2\xf2\xe2\xb2\x0a\xaf\x26\x2d\xcd\xa2\xeb\x8e\x06\x8a\xe7\xa7\x0c\x1c\xd6\xc5\xb0\x68\x1e\xcc\xe1\x71\x86\x6c\xc4\xd6\xc5\x50\x03\x9e\x20\x93\x26\xa9\x87\x04\x7e\x44\xaf\x9f\x05\xa5\xf9\x64\x9e\x90\x03\xed\x33\x89\xe4\x9a\x08\x3b\xd5\x0d\xbd\xbf\xbf\x7a\x7b\x6a\x02\x4b\x24\x7b\x5e\x88\xad\x10\xf2\x2a\x5a\x89\xf2\x47\x09\x63\x17\x34\xea\xe5\xe9\x1f\x61\xb3\x25\x18\x5f\x89\xa7\x44\x92\xf1\x95\x70\x4a\xa4\xa5\x5e\xd0\xaf\xcf\x36\x5c\x15\x8e\x5a\x9a\x70\x62\xe4\x31\x1e\xe7\x05\xa5\xf9\x94\xe3\xda\xa2\xd2\xfc\x59\x45\x28\xcd\x43\x22\xf4\x05\xa5\x79\xd3\x93\x7e\x25\x58\x5a\xca\x6c\x63\x25\xb2\x15\x53\xdd\xd3\x23\xc3\x23\x85\xdb\xba\x74\xa4\x2b\xd1\x42\x3f\xab\x4d\xb2\x07\x92\xbd\xad\x4c\x8c\xe6\xd5\xbd\xa0\xc2\x6e\x92\x8b\xac\x4c\xd9\xbf\x64\x18\x0b\x2a\xec\x9c\x9f\x0f\x2b\x0b\xbb\x40\x84\x01\x7c\x0a\x81\x6f\x7c\x44\xac\x0c\xaf\x8b\xe9\x32\xf8\x97\x17\xb2\x4e\x0b\xba\xe6\xac\x47\xfb\x82\x02\xb9\x30\x4f\xd6\x81\x40\x4f\xa6\xcb\xc0\x81\xc8\xff\x6c\x41\xbb\x3c\xa7\x87\x4a\x51\x8c\x84\x2f\x2b\xc3\xb3\xa6\x0a\xfd\x32\x88\x8d\x51\x05\x2a\xe3\x3c\xdd\x07\x6c\x61\xe4\x9b\xba\x32\xfd\x63\x84\x1b\x8c\xcb\x20\x7d\xe6\x82\xfe\x76\x3e\x6d\xf2\x2e\x25\xfb\xbd\x32\x65\xf1\xcd\x5d\x20\xda\x82\x0c\xba\x16\xa3\x2d\xd8\x09\x63\x15\x4a\x2d\xf4\x4e\x5d\xc5\x56\x03\x3f\x24\xd3\xab\xf0\x1e\xce\xfe\x10\xf2\x5f\x3d\x87\x16\x94\xb6\xb3\xf1\x22\x5a\xd0\xa9\x36\x29\x86\x17\x74\xaa\x87\xbe\xaa\x2a\xb8\xe5\xae\x3d\x2f\x7c\xc5\x8a\x43\x5c\x85\x61\xd1\x34\x4d\x28\x55\x27\x83\x79\x1e\x08\xc1\x20\x42\x13\x39\xdb\x13\xf2\x8d\x5f\x8c\xe2\x70\x79\x92\x67\xc9\x67\xf6\x68\x28\x0d\xb9\x34\x1a\x4a\x43\xe4\x0d\xbd\x0a\xce\x43\xb8\x0b\x9e\x87\x56\xfd\x25\x4c\x7f\x85\xbb\x85\xe9\x12\x3d\x63\x5e\xd3\x8c\x36\x74\xc0\xfd\x64\x54\x3a\xd0\x0b\x51\x39\x5d\xa6\x40\xd7\x6e\xe7\xa0\x87\x58\xdb\x55\x40\xab\xa6\xa8\x4c\x81\x85\x5f\x79\x20\xaa\xf7\x0d\xc1\xb9\x40\x54\x06\xc1\x21\xaa\xe9\x11\x54\xac\xf3\xf2\xba\x6d\x3c\x56\x44\x00\x10\xfe\x41\xe9\x9d\x0e\xc4\x29\x3e\x20\x12\x3a\xf1\x4d\xbf\xaa\xc2\x08\x0c\x41\x48\x47\x94\x5c\x76\xf3\xc3\x29\x10\x6e\x18\x7c\xd3\xaf\xca\x00\x62\xcd\x50\x7b\x72\x46\x1d\xa8\x23\x92\xb3\x9a\x09\x3a\x7a\x34\x41\x0b\x8c\x98\x3a\xe4\x21\x33\x1d\xab\x70\x5f\x4b\x1e\x29\xee\x06\xc5\x22\x59\x48\xed\x37\x9f\x71\x6b\xdf\x44\xab\xa0\x45\x6d\xdd\xfd\x83\x8e\x75\x4f\x6a\x11\x71\xa7\xbf\x1c\x4f\x42\xab\x03\x31\x0f\xd7\x74\x27\x30\x78\xac\xfe\x12\x91\x07\x9f\x32\xc6\xda\x73\x1f\xb4\xae\x17\xcd\xa9\x74\x97\x7c\xc6\x0a\x81\x1f\x1f\xf9\xab\x32\x62\x98\xc8\x63\xa5\x8c\xab\x89\xcc\x40\xff\x5a\x7c\xa7\x57\xbc\xc0\xa5\x29\x5c\x50\xb8\xd6\x24\x92\x5f\x61\x35\xa4\xb8\x30\xab\x6e\x4a\xad\xb5\x70\x9b\xab\xea\xef\xb8\xaa\xde\x2a\xd0\x0e\x3d\x2e\x96\x34\xb5\xed\xe9\x11\xe7\xc8\x4b\x2e\xda\xc1\x57\xef\x92\xaa\x56\xfe\xd1\x8b\xaa\x5a\x3d\x44\x56\xe3\x63\x4e\x38\xd7\x84\x65\xa2\x88\x0a\x64\xa1\x55\x46\xb0\x8a\x62\x7e\x00\xe1\x28\xb2\x11\x82\xe1\x28\xfa\x30\xc4\x43\xf6\xf4\x81\x35\x6f\xfe\x10\xec\x6e\xf5\xe0\x10\xa6\x51\x1c\x4f\x0b\x0d\xd5\x20\x03\x8a\x6a\xe0\xb4\xb1\xec\xfa\x10\x1c\x66\xf6\xd8\x60\x52\x24\xa1\xda\x6a\xb0\x61\x56\xc8\x87\xd5\xc0\x7d\x16\x11\x92\xc6\x98\xf0\x0c\x1a\x7a\xc0\x85\x66\xd4\x21\xf3\x3c\x8a\xc8\x51\xc7\x9b\xe4\xe6\xbc\x10\xaa\xa2\x48\x38\xb7\xa0\xe4\x0d\xb1\x78\x8d\x2a\x15\x51\x2e\x68\x75\x47\xb8\x07\xbe\xec\x7b\xfa\x31\x4f\xbd\xa0\xf2\x9d\xcf\x82\x93\x00\xf9\xd6\x6f\xbc\x67\x44\x9e\x11\x80\x42\x49\xdc\x0e\x04\xf7\x61\x11\x27\x05\xa0\xe8\xd9\x55\x3b\xb6\x4a\x63\xa5\xe4\xb4\xeb\x0c\x42\x77\x9c\x53\x75\xd5\x00\x7f\x62\x88\x2a\x51\xb6\xda\x89\x47\x5d\x5d\x76\x66\x33\x15\xf7\x40\x85\x30\x03\xac\x1e\xa8\xa0\xcc\x10\x24\x52\x7c\xc4\xad\x3e\x35\x38\x83\x88\x3b\x20\x7e\xb4\x33\xb7\xa3\xc6\xd6\x19\x93\x5d\x37\x2b\xb5\xc5\x49\x96\x62\xab\x33\x81\x60\xf5\xe0\xde\xe8\x51\x63\xc3\xdd\x25\x73\x98\x85\xa4\xa1\x99\x39\xb4\x0e\x04\xc3\x69\xdd\x5c\x08\x49\xd1\xe5\xb2\xb7\xa8\x2d\x4e\xbd\x68\x6c\x30\x4d\x9b\xee\x1f\x8e\x77\x8a\x96\xb1\xa0\x20\xee\x97\xd7\x66\x61\xc2\xee\xe2\x10\xb2\x2e\xa7\xcc\x85\xb8\x12\x45\xbe\x7d\xab\x33\x69\x57\x31\xb4\x51\x53\x3d\xe0\x25\x28\x13\xd3\x85\x28\x13\xdd\x97\x23\x54\xbe\xdd\xfc\x08\x74\xb3\x59\xee\xb3\x4b\xba\xd9\xee\x15\x66\x8c\x21\x9d\xa9\xbe\x31\x50\x77\x4f\xda\xd0\x75\x8a\xa0\x7e\xcd\x92\x94\x2f\x84\x72\xe8\xd2\x1b\xad\xa1\xc0\xe6\xaa\xc9\x8c\x23\xda\x35\xc6\x63\x50\xcc\xb4\xc5\xec\xba\xb2\xb0\x58\xd0\xb7\x56\x5f\xdc\x83\x51\x63\xc4\xc7\x0d\x2d\x77\x08\x9a\x18\x9a\xbf\xe3\xfe\x6a\x81\x07\x63\xcd\x55\x77\xcf\x53\x34\xdc\x3f\xc4\xcf\xc3\x85\xd8\x7c\x5d\xf1\x83\x7b\xc1\x77\xf9\x62\x90\x87\xd4\x45\xa9\xa1\x35\xcd\xe6\x07\xa1\x18\xad\x49\xb7\x01\x62\x3e\x28\xf1\x66\x5b\x4c\xf8\x6b\x0e\x98\xa1\x12\x92\x04\xb9\x0b\xb1\x12\x6a\x16\x9e\x32\x00\x82\x7c\xa6\x16\x03\x20\x24\xa9\x51\x16\x54\x9a\x65\xe8\x56\x9b\xf2\x03\x11\xa2\x32\x04\xc2\xc8\x86\x28\x41\x31\x84\x20\x71\x1a\x2a\xd4\x9d\x5d\xc2\xb3\x05\x75\x67\x37\x57\x07\x75\x67\x37\x5f\x89\x28\x07\x5d\xb2\xc3\xc5\x28\x07\x4a\x49\x75\x40\x2c\x4e\x31\x04\x22\x1e\xfe\x90\x79\xe1\xd4\x28\x7c\x49\x8b\xbb\x60\xb4\x02\xdd\x4d\x93\x4b\x2c\xd6\x70\x72\x89\x87\xf6\x91\x19\x71\x7d\xa7\x32\x78\x81\xbc\xc2\x16\xb5\x88\x45\xab\x38\x89\xd3\x3a\x0b\xd2\x22\x0e\x4f\x7f\xe3\x10\x89\xff\x60\x0e\x8a\x34\x74\x32\xa9\x46\x94\x93\xcc\x42\x2c\x81\x2e\xc9\xe6\x82\x86\xaf\x4b\x06\xba\xa0\xe0\x9b\xb9\x19\xa2\xdb\x7d\x15\x84\x8c\x72\xe2\x05\x83\xd8\xff\x1b\x62\x7c\x2c\x38\xf3\x77\xc9\x12\x57\x30\x80\xb4\x9b\x59\x98\x94\x08\x2a\xb4\x6f\x43\x96\x80\x0b\xda\xb7\x7e\x15\xd7\x5c\xb0\x0c\x32\x74\x1e\xd8\x72\x35\x59\x50\x85\x55\x49\xff\x17\x54\x61\x5d\x02\xc2\x05\x4d\x58\x91\x9a\x6c\x41\x13\xd6\x25\xa0\x5b\x50\x76\xf5\x67\x2c\x40\x4c\xef\xd3\x62\xa0\x1e\x8a\x96\x16\xe2\xff\x67\x99\x93\x2f\xb8\x9c\x77\x2f\x0c\xb4\x4b\x91\x45\x08\xe0\xf3\xdd\x25\x82\x5c\x8b\x9b\xa6\x17\x25\xd4\x49\x45\x0e\x0b\x8b\xb1\xf2\x93\x42\xb6\x2d\xe8\x93\x7a\xeb\x6a\x74\x03\x83\x25\xce\x58\x60\x76\x25\xc8\x5c\x8b\x44\xaa\x1a\x02\x91\x52\xe4\xb1\x45\x8f\xf0\x34\x35\x29\xa8\x97\xb2\x22\x21\xad\xcd\x8b\x47\x28\x4c\x2f\x6f\xd9\x56\x2c\x68\x89\x8a\x22\x3e\xac\x4d\x2a\xa5\xad\x70\x78\xfa\x6e\x10\xd8\xa6\x1b\x7c\xcb\x79\xae\x1b\xec\x28\x54\xff\x81\xc5\xd1\x09\xde\xa4\x61\x22\xbd\xd0\x21\x75\xc9\x24\x17\x14\x43\x5d\x92\xcd\xb5\x99\x72\x99\x32\xa2\xc5\xa8\xf3\x49\x21\xb3\xd6\xe6\x89\xd2\xde\xec\xc5\x0e\xd5\x05\x53\x1e\x0c\xd7\x04\x25\x9a\xc3\xad\x72\xe3\x54\xb8\x71\xf6\x85\xed\x50\xfe\x84\x02\x68\x2d\x44\x7d\x8f\xac\xbb\x06\x1e\xd8\x21\x8f\xb8\x05\x75\x4b\x28\x8a\xc7\x7a\x91\xba\x74\x43\xec\x30\x5c\x95\xcd\x54\x41\x2f\x44\xde\x13\xc4\x85\xd2\x14\x5f\x24\xf6\x5a\x44\x25\xcb\x0d\xf7\x88\xc4\xe8\x52\x9a\x2d\xb8\x47\x87\xbc\x35\x17\x54\x23\x91\x75\x9f\x40\xdf\x31\x4d\x16\x18\xcb\x3c\xf9\x81\xfd\x22\x36\x8a\xb7\x61\x2c\xf3\x64\x1e\x09\xb1\xcc\xab\x9c\x44\xd6\x8b\x07\x45\xd8\xf8\xa2\x1f\xbb\x9e\x05\x6f\xd2\x0c\x71\xb3\x50\x54\x84\x42\x2c\x2c\xa9\x1f\xb4\xfb\x6f\x52\xd7\xe1\x32\xec\x62\x68\xdf\xde\xa4\xae\x12\xb5\xc1\x21\x38\xcb\xb0\x7b\xc1\x21\xb8\x96\xe7\xc3\xce\x0f\xd5\x23\x42\x87\xfb\xe9\xf3\xa6\xd1\xda\x74\x19\x78\xb2\xa7\x7f\x1c\x46\xa1\x0d\x13\x97\x8e\xec\xef\x10\x3a\xbc\xb9\x0b\x58\x56\x57\x97\xdd\xec\xd0\xcd\xc0\xcb\xd6\x23\x25\xcd\x12\x4a\xc1\x21\x58\xd9\xb4\x0e\x04\x2f\x3b\x5d\xd9\x50\x72\x74\xf3\x16\xf4\x07\x36\xf2\x41\x8d\x91\xe4\x04\xb3\xa0\xc6\xc8\xbe\xb0\xa1\xc6\x98\x72\xab\x5b\x6f\x9a\x36\x8a\x77\x54\x5e\x51\x1d\x21\xf8\xf8\x36\xe9\x7e\x16\x7d\x7c\x95\x42\xe7\x80\x5c\xe0\x1f\x66\x74\x39\x55\x2b\xbf\x74\x27\xc8\x99\xeb\xfd\xc6\xee\x9b\xd5\xa0\x93\x6f\x0a\x2f\x2a\x93\x7a\x3c\x1f\x22\x9e\x94\x77\x71\x73\x19\xbd\x8d\x1b\x22\x0b\x31\x10\xc8\x1f\xaa\xe4\xc9\x07\x4a\x08\x44\x55\x04\x71\x22\x5a\x71\xa8\x4e\x8a\x54\x19\x0b\xaa\x93\x26\x43\xef\x05\xd5\x49\x95\x19\xf2\xba\x29\xb2\xf1\x53\x03\x21\xc9\xab\x22\xec\x2c\x44\x24\x2f\xb2\xee\x5b\x70\x1d\x8e\xe6\xa2\xc5\xef\x3c\x1a\x28\xc3\xb2\x5b\x79\xe1\x71\xef\xef\x18\x0d\x5b\x65\xd0\xb9\x84\xce\xdb\x4d\x49\x8f\x9c\xc2\x16\xdc\x8a\x9b\x1c\x19\xd6\x2d\x2c\xd6\x96\xdf\xc4\xe2\xee\x76\xe0\x03\x20\xde\x12\x3e\xc7\xb5\x3d\x35\xf1\xd4\x4d\x86\xe0\x77\x25\x72\xcf\xdc\x9f\x7e\xcb\xdd\x8a\x55\xad\x91\x06\xd3\xd3\x6a\x4e\x94\x3b\xcb\x98\x7f\x29\xf9\xa7\x58\x0d\x28\x84\x4a\xf1\x7a\x33\x33\x8d\xb0\x8a\x0a\x21\xdf\xdf\x50\x08\x15\x19\x88\x2f\x28\x84\x5a\x3c\x65\x1d\x96\xdd\x5a\x0c\xc8\x12\x9e\x2d\x5d\x8c\xa2\xae\x32\xc8\xab\x2d\x03\xa2\xe2\x46\x81\x41\x16\xf4\x36\x35\xe9\x3e\x65\xb8\xf1\xf0\x74\x99\xa8\x23\xb9\x15\x86\x42\x0f\x57\x9d\x18\x8c\x66\x8f\xd7\x59\xd6\x11\x46\xd6\xcc\x2c\x7f\x80\x75\x13\x31\x93\x6b\x7e\x20\x92\x26\xf4\x51\x54\xa4\x2a\x88\x44\x52\xf4\x1c\x41\xcc\x73\xd2\x23\x87\x41\xcc\x65\x03\xb1\x90\x1a\x33\x8f\x69\x08\xba\xd6\xcb\x8d\x22\xca\xa2\x9e\x27\x0c\x62\x6e\x2e\x97\xde\xc7\xd9\x0f\x40\x68\x95\x92\x9c\xc3\x16\x14\x47\xb5\xb8\x0b\x50\x29\x0b\xc4\xa0\xf1\xc9\xd2\xc4\x2e\x28\x7c\x52\xf6\xd0\xb8\xbd\x7e\x66\xd0\x51\xf8\xa9\xca\x58\x27\x62\xc8\xe1\x27\x7c\xaa\x0e\x81\x38\x5e\xd5\xed\x20\xb7\xeb\x70\x19\x0c\x50\x25\x57\x81\xa3\xf0\x94\xcd\xf3\x62\x9c\xf2\x2a\x4e\x1a\x7e\xc2\x53\x36\x9e\x0b\x7e\xc2\xa7\x0b\xcd\x1f\xf4\xcd\xd2\x3a\x38\x0a\xcf\xd4\xdd\xcc\x9b\x55\xb5\x38\xe7\x95\xd7\xe4\xe4\xb2\x18\xc5\x3c\xfb\x7d\x06\x5f\xe1\x26\x57\x9d\xf5\xa1\x84\xde\x7d\x20\x11\xab\x9c\xe8\x17\x5d\x7e\xb3\xdf\x39\xd0\x4e\x29\x55\xfb\x81\x28\xa1\x76\x19\x93\x6f\x68\xe4\x9b\xc1\x6e\x34\x7f\xba\xfc\x16\x43\x08\xc5\x43\xe6\x75\xd3\xe5\x37\xeb\x61\xb1\xa9\xba\xd2\xf1\xde\x17\xcd\xbc\xd9\xcc\xa6\x57\x6f\x16\xbb\xbe\xa1\xba\xca\x69\xfc\xd8\xc9\x65\x43\xaf\x35\x65\x82\xb6\xe1\xf1\x3b\xc5\x4f\xee\x8b\x0c\x3a\x45\x60\x1b\x3a\xaf\x2a\x11\xf4\x86\xce\x6b\x2a\xa4\xc3\xa6\xce\x2b\xeb\xd5\xb3\x2f\x46\x1a\x0c\x0f\x1c\xa6\xd4\xdd\x1f\x7e\x9e\x34\xf6\x6d\x33\x6c\xba\xe3\x84\x6c\xaa\xc7\x0a\xd7\x7f\xd3\xad\xb7\x79\x6c\xe4\xfa\xbb\xcb\x30\xc5\xe7\x3b\xee\x46\x71\x21\x1c\x39\x9b\x56\x83\x41\x63\xa4\x03\xdb\x88\xa2\x5e\xca\x03\x6d\x16\x7a\x3c\xe0\x20\xbb\x0b\x81\x3a\x59\x9d\xc0\x06\x50\xaf\xa7\x7d\x09\xc9\xab\x0b\x99\x45\x5c\x6b\x05\x2a\x26\xf3\xe8\x4d\x2f\xdf\x2c\xf6\x7e\xc3\xcd\xb7\x26\x0f\x00\x4a\x21\xe6\x65\x6c\xfb\x62\xe0\xfc\x4b\xcb\x0a\x7d\x28\x73\xe3\x1e\x08\xf6\x3b\x4d\xfd\x33\xdf\x4b\xb8\x0c\x09\x4e\xb2\xda\xa4\xe5\xc9\x74\x9b\x74\xb1\x73\x9b\x78\x66\x3e\x65\xc8\x34\xd7\xb4\x6e\x74\x39\x19\x6e\xe5\x83\xab\x97\xab\x98\xe8\x8f\x40\xf2\xb3\x13\xbd\xd8\xc8\x31\xee\xa4\xdb\xb5\x0a\x42\x28\x00\x52\x9f\x0d\xa7\xda\x22\x53\xb5\x0d\xa7\xda\x22\xe7\xbf\x9d\x98\x08\x4b\x2b\x91\x98\xf6\x92\x47\x71\x43\x05\x58\xea\xd3\x1f\xac\x29\x74\x32\xa0\x01\x6c\xa2\xd2\x9b\x0a\x40\xb9\x82\x6e\x46\x5e\x97\xc6\x6f\xd3\x4f\x36\xdc\x3b\xef\x2f\xed\x6e\x12\x7d\x1b\x2a\x5c\x74\x3e\x57\x21\x42\xb6\x28\xf0\xfa\xa6\x02\x30\x0f\x35\x0a\xcb\x60\xf9\x09\x6d\xe8\xff\x86\x62\xe2\x6c\x86\x68\xef\xee\x02\x76\xe1\x72\x05\xda\xf4\x99\xb5\x88\x63\xc3\x67\x36\x14\x67\x6d\x43\x39\x38\x65\x9a\xba\x93\x88\xd6\x70\xff\x78\xa0\x3d\x55\xe1\x8b\xe4\xaa\x9b\x47\x68\x68\xa5\x28\x0c\x4f\xfa\x90\x0a\x0f\xaf\xd4\x86\xe9\x56\x75\x19\x14\xfa\xc2\xae\x2c\x6a\x43\xb1\xf5\x86\x5a\xb1\x48\x37\xb5\xa1\x56\x2c\x7a\xd8\x6d\x04\x7b\x6f\xd2\x8c\xef\x4c\xab\x5d\x3e\x1e\x77\xa6\xd5\x2e\xd9\xde\x0d\x0f\xd6\xd6\xf8\xe8\xdb\xf0\x60\x6d\x22\x8b\x1b\x3e\xaa\xc9\xd3\xa7\x8f\xaa\x6f\xc9\x0d\x27\xd5\xf6\x74\x8f\xe3\x3d\x9e\x46\x31\x0b\xe1\x2c\x75\x8c\x72\xf7\xda\x99\xc6\x61\x22\x8b\xf9\x6c\xe2\x60\xfe\x88\xc6\xa4\xaf\x8d\xe9\x39\x1b\x73\xbe\x36\xbd\x8e\x37\xc3\xc0\x3f\x93\xe7\xed\x92\x92\x0b\x61\x1a\xd8\x35\x5f\x1a\x74\x77\x57\x45\x90\x80\xa4\x32\x5a\xdb\x8a\x46\xd3\xef\xd4\x21\xe0\x36\x74\x93\xb5\x78\xfa\x60\x90\xf3\x61\x19\x7e\x48\xa4\x33\xcd\x08\x3d\x0f\xa8\xb4\x72\xd2\x41\x41\x44\xf9\x26\x47\xd0\x0d\x07\xd6\xf0\xe0\x60\x09\x21\xad\xd5\xa6\x8f\xaa\xd2\xda\x1e\x90\x19\x10\xd9\x28\x55\x9c\xca\x51\x76\x40\x4e\xa4\x09\x82\x91\xa1\x90\xba\xc0\xdc\x41\x52\xea\x4d\xe7\x4f\xa9\x4d\x76\x21\x9f\x29\x0c\x2b\xf4\xae\x10\xad\x29\x34\x93\x16\x89\x84\x23\x66\x93\x2e\x7e\xd3\xd7\x52\x61\xfd\x76\x51\x06\xc2\x66\x10\xa1\x10\x86\x1b\x0d\x16\x6a\x34\xb4\x93\x4e\x86\xc0\xcf\x88\xbe\x14\xa5\x60\x35\x04\x45\xbd\x0e\x78\x61\x98\x82\xe4\x29\xe2\x76\x97\x94\x7e\x17\x06\xcb\x14\xc2\xd1\xdb\xd2\x11\xe6\x37\x15\x85\x92\xa0\xef\x4a\xa3\x65\x9d\x3e\xea\x02\xb3\xce\x1b\x74\x81\x21\xe6\x6e\x43\x17\x58\x64\x1a\xb0\xa1\xfc\x4b\x0a\x4b\xb1\xab\xd0\x7f\x1a\xc4\xcb\x4e\x24\xad\xc2\xd9\x41\x21\x33\x36\x1d\x23\xdb\xd3\xcc\x8d\xee\x35\x18\x2e\xb1\x1b\x5d\x6c\x34\x5c\xc8\x91\xaa\x51\xba\x30\x88\x16\x51\x87\x97\xa5\x35\xde\x95\xd9\xf4\xba\xab\xc2\xf6\xfa\x29\x43\x8e\x55\x4a\xc3\x36\xd4\x74\x4d\x26\x2c\x1b\xba\xb7\x26\xe1\xe3\xae\x44\x3f\x6d\x3f\xb4\x64\x4d\x9a\xc0\x5d\x95\x5a\x42\x37\x08\xb4\x5b\x5d\x8c\xd7\x6e\x34\x31\xd5\x69\x6c\xc4\x37\xdd\x5f\x88\xa7\x5e\x92\xee\x64\xa8\xac\x42\x2a\x9b\x4d\x5d\x93\x5e\x39\xbb\x69\xa1\xd4\x26\xec\x8b\x9f\xcb\xa6\xd1\xbe\x58\x14\x0d\x1a\xa4\x26\x1d\xdd\x66\x74\xf3\x2c\x7b\xee\xdd\x78\xfc\xa7\x21\x1c\x7f\xb1\x41\x8d\xd6\xdd\xda\xb6\xc6\xe9\xeb\xb6\xa1\xc6\x26\xcb\xa8\x74\x43\x63\x13\x49\xe4\x16\x1a\x9b\x66\xde\xa6\x33\x62\x4b\xd6\x29\x82\xca\x66\x2a\x64\xc1\xee\xb2\xdb\xe5\x3c\xa0\x32\x09\x45\x1d\xdb\x54\x99\x64\x19\xaa\x6c\x7a\xd8\x35\xdd\x4c\x9d\x73\xf4\x87\xd0\xe8\xcb\xf1\x67\xc3\x4f\x2e\x14\xaa\x75\x77\xd2\x10\x2d\x23\x3c\xd1\xc2\xa4\x18\xca\x8e\x94\x4b\xd2\xac\xa0\x34\x57\xd8\xe0\xcd\x60\xd8\x59\x81\x68\x36\x3c\xd1\xa6\x02\x69\xee\x41\xeb\x7e\xe1\x0d\x14\x1a\x53\xe1\xba\xf6\x20\xc7\x28\xd7\xc0\x3d\x98\x4b\x4e\x94\x0a\x1a\x8d\x29\x73\xd8\x0d\x8d\x46\xca\x32\xfc\xdb\x50\x69\x84\xfc\x90\x36\x34\x13\xdd\xa7\x98\xc1\xa8\xb3\x2c\x24\xf7\x60\xc8\xdf\xec\x0f\x6f\x44\x4c\xe0\xca\xc1\xf3\xab\x4a\x56\xb8\xe9\xf9\x95\x8b\x21\x38\x89\x4f\x43\xd0\x91\xcd\x1f\x26\x48\x3c\x55\x19\x37\xd9\x5d\x20\xe6\xa4\xb6\x11\x8e\x5f\x69\x78\x35\x88\x63\xa5\x6a\xe0\xb0\x84\x98\x5a\x46\x06\xb1\xce\x97\xcb\x60\x23\xe7\x59\x40\x1e\x67\x96\x02\x31\xac\xf3\x15\x2e\xcb\x48\x10\xa4\x56\x98\x34\xc3\xdd\x83\xfa\x3d\x45\x03\xa1\x75\x34\x4e\x46\x2d\xd7\xc5\x04\x7f\xb1\x9c\x75\x2f\xd0\x5f\xcc\x7e\xa8\xcc\x85\x9e\x1c\x3d\x42\xc9\xd0\x65\x34\xc4\x64\xe8\x45\x11\x09\x99\x0b\xdd\xae\x2e\x1b\xca\x95\xe4\x18\x78\x7b\xd2\xf6\x48\xc3\x51\xf0\x69\xca\x26\x99\x36\x3d\x39\xb4\x03\xf3\xa6\x17\x85\x6b\x60\x36\xf4\x32\x9f\xfe\x71\xfc\x8a\x9a\x81\xa8\x50\x2e\x93\x4c\x78\xde\x64\x17\xc6\x9c\xe6\x4d\x19\x44\x98\xd3\x3c\x9b\xdc\x30\xa7\x79\x17\x7d\x65\x4e\x73\x87\x0a\x65\x4e\xf3\x2c\x2f\x38\xe6\x34\x6f\xca\x73\xa3\x9c\xe6\x26\xbe\x53\xd6\x4e\x6e\x06\xc9\x8a\xaa\xbb\x7f\x43\xfa\xac\x9a\x48\x98\x22\xa7\x1c\xa5\x26\x57\x0c\x08\x66\x26\xaf\x72\x6d\x62\xba\xf1\x59\x3d\xf9\x45\xf4\xd6\xc1\x80\x33\x59\x99\x4f\xa3\x8c\x45\x2b\x88\x9c\x48\x31\x44\xf4\xd6\xa5\x01\x5d\xcf\x54\x00\x38\x66\x14\x1f\xd3\x23\x25\x29\x10\x79\x87\x4f\x58\x52\x1e\x02\xe5\x05\x57\x6c\xcc\x0d\x4d\xcf\x54\xf2\x9a\xcd\x48\xd0\x59\x21\x69\x36\x43\x41\xcb\x1e\x96\x69\xc2\x43\xa6\x04\x4c\x13\xde\xda\xd3\x0c\x45\x83\xae\x09\x2d\xa0\x78\x1b\xf9\x79\x89\xd8\x40\xef\x93\xa5\x88\x50\xae\x6d\x87\x36\x62\xb2\xed\x90\xb3\x24\x73\x6d\x87\x9f\xb5\xc1\x9b\xa0\x1a\xc2\x45\x54\x5d\x13\xa6\x44\xe2\x58\x82\x52\x0e\xd9\xe1\x31\xa1\x76\x6b\xee\x11\x44\x42\xb6\xca\x1b\x4e\x60\x63\x3c\x1f\x6e\x48\x07\x34\x6e\xdd\x98\x1a\x37\xc3\x34\xfb\x3b\x1c\x4b\x3f\x55\xa1\x69\xca\xf3\xa9\xc9\xd8\x49\x94\x55\x6c\x3a\x5d\x49\xd7\xb2\xe9\x74\x95\xab\xd7\x86\x6e\xe7\x62\x67\xe0\x74\x35\x24\xd0\xde\xd4\x43\x49\xac\xb3\x83\xa1\xe5\x75\xbc\x02\x19\x0b\xfc\x38\x64\x24\x68\x49\x5b\x99\xdd\x7b\x4a\x0f\xa3\xec\xde\x53\x7c\x3e\x3c\xb7\x9a\xfc\x0a\xf7\x62\x1c\x01\x8d\x65\x51\xfe\x20\x8f\x34\x66\xfe\x2e\x49\x68\xaa\xe4\xde\xd3\x65\x88\x4a\x2e\x62\x8e\x78\xce\xad\x4f\x43\x50\x98\x69\xbe\x08\xe0\x9c\x15\xb2\x9b\x39\xb9\x9b\x24\xc8\xca\xc9\x9d\x15\x2c\x83\x49\xb9\x73\xfd\x0d\x91\xa7\x99\xb1\xbb\xe6\xe2\x56\x11\x27\x54\x17\xd6\xc2\xab\xa3\x7b\xa4\x20\x04\xd5\x63\xe3\x4d\x6b\xea\xb6\x64\x9c\xe0\xe1\x20\x38\xd4\xf3\xe1\x66\x55\x17\x42\x54\x77\xb9\xc7\x37\x0b\xdd\x2c\x42\x09\x3c\x03\x80\xf3\x83\x10\x15\x11\xa4\x9b\x4f\xc6\xa2\x45\x96\x18\x0f\xf8\xa3\x25\x9f\x0c\x68\x0c\x6b\x0f\x7f\xc7\x9b\x56\x6b\x43\xa2\x61\x86\x4d\x89\xb8\xc5\xcb\x42\x81\xd8\x94\x9e\x40\xc9\xb6\xed\x52\xc1\x64\xdb\x4d\x96\x54\x1b\xfe\x68\x45\x96\xa5\x7b\xd1\x69\xe1\x69\x06\x31\x14\x45\x24\x17\xdc\x60\x14\x31\x7b\x33\xda\x74\x17\x09\xa3\x72\x31\x2b\x1e\x06\x13\x63\x67\xbf\xf3\xe8\x74\xe6\x15\xdf\xdc\xf1\x30\x04\x83\x3c\x91\x90\xcd\x0d\x6f\x2e\x63\xa6\x79\x43\xc0\x29\x2d\x06\x9c\xc5\xa6\xe2\x21\x30\x15\xf5\x98\x62\x7b\xa0\x13\x0c\x19\xa3\x30\x13\xf5\x50\xb8\x3b\x26\xa2\x1e\xa1\xe5\x46\xb2\xe9\xd6\xc3\x10\x58\x22\x09\x23\x99\x6c\xba\xf5\xf0\x87\xdc\x7d\x61\x2a\x3c\xc9\x66\xd6\x8b\x0c\x29\xa4\xa7\x5f\x4b\x9b\xf6\xee\x49\x1f\xea\xf0\x6b\xa5\x36\xd3\x4a\x78\xc2\x4c\xda\x26\x5e\x12\xbe\x63\xd9\xbc\x14\xbc\xc5\x5a\xf6\x42\xd1\x1c\x42\x7c\xc6\x4b\x61\x24\x0c\xd1\x4d\x23\x09\xca\xf0\x9c\x33\x04\xba\x24\x7a\x02\xbf\xb2\x2c\x4f\xc1\x0d\x05\x65\x53\xa8\x4f\xe6\x96\x4e\x59\xae\xd1\x4c\x2e\x6d\x8f\xfa\xfd\x62\x64\x34\xdd\x9e\x88\x02\x5d\x14\x0c\x48\x19\xa3\xb3\xdc\x9f\x99\x32\xba\x15\xcd\xe2\xc5\x23\x2d\xc7\xdd\x0d\xff\xb0\x34\xdc\x07\x85\x05\xb2\xce\xdc\x0c\x20\x2d\x73\x98\xcd\x00\xd2\x59\x0e\xc0\xcc\x3d\x9d\xbc\x1d\x54\x7c\x4a\x45\xc8\xfc\xd2\x49\x1a\x23\x66\x94\x4e\xd5\x03\x60\xcc\x5e\xd7\x84\x20\x67\xb8\x26\xdc\x89\xc2\x63\xc3\xfb\x54\xba\x9d\xfd\x5a\x92\x36\xaa\xfb\x45\x91\x93\x3f\x5c\x80\x34\xd2\x45\x3b\xa9\x4b\xd0\xcd\x0f\x5d\x08\xb1\x8e\x08\x03\xfd\xcc\xb2\x6c\x8e\x99\x44\xba\x64\x5d\xe0\x2f\xde\xe7\xf2\x6a\x65\x12\xe9\x30\xbf\xc8\x1c\xd2\xb9\x79\x97\x99\x8e\xee\x81\x02\xc9\xa1\x34\x74\xc6\x9e\x16\xa1\x62\x5e\xe8\x2c\xe7\x49\xe6\x85\xee\x72\xea\xd8\xd4\xd1\xfa\x15\x86\x48\xd0\x21\x4b\x83\xfd\x26\xc7\x66\x3e\x0c\x91\xa0\x87\x79\x34\xa8\x73\xa7\x99\x70\xf8\x9d\x9d\xaa\xbf\x81\x9b\x86\x57\xda\xf4\xfb\x91\x5e\x69\x59\x5a\x15\xe6\x94\x6e\x21\xe2\xc8\x38\xd1\x59\x06\xca\x4a\x2a\xad\x28\x9b\xcc\x29\x9d\xa4\xaa\x51\x4e\xe9\x6c\x0e\xe7\xcd\x60\x91\xcd\xad\x42\x60\x37\xfd\xe1\x00\x34\x04\x41\x1b\x34\x5d\x13\xee\xb2\xa2\x63\x4c\x14\xad\x70\xe3\x1b\x7e\x6a\x4d\xe1\x4f\xf7\x9b\xb1\x78\x75\x3c\xdf\x94\x1b\x5b\x44\x02\xfd\x6e\x91\x45\x2c\x73\x43\x9f\x42\x83\x30\x96\x4b\x6e\x95\x16\x5a\x2e\x63\x44\x10\x37\xc3\xad\xf3\x70\x68\x59\x2b\x8c\x84\x9f\x5a\xb6\x00\x98\x31\x9d\x4d\x80\xa1\xef\xad\x59\x97\xec\x5b\x78\xd5\x0c\xe2\x76\xb8\xfc\xe1\x00\xa4\x75\x23\x67\x68\x71\xda\x5b\x82\x46\x4d\x99\x02\x68\x4b\x9e\xde\x44\x2c\xb1\x51\x6f\xe6\x1e\x91\xc8\x00\x5a\xdb\x22\xb3\x98\x0d\xad\x6d\xf5\x31\xbf\x69\x84\x2d\x0c\x64\x4c\xe7\x6c\x91\x1d\x1d\xde\xfc\x48\x64\x22\x69\x45\x32\x61\x1e\xe9\x53\xb5\x09\xe4\xc8\x8b\x20\x50\x04\xe1\x11\xb4\xb6\xad\x3f\x3d\x22\x1a\xb3\x24\x0f\x4c\x23\xad\xd4\x17\x4c\x23\xdd\x94\x20\x88\xa9\xa1\xab\x5f\x65\xc8\x0c\x3d\xad\x8e\x80\x17\x5d\xf1\x0d\x44\xa5\xad\x9c\x8c\x98\x18\x3a\x65\x0b\xbe\x98\x19\x5a\x71\x9d\x36\x03\x45\x2b\x94\xd0\x86\xd2\xb6\x29\x93\x10\xf3\x44\x37\x3f\x92\xa8\x98\x75\x42\xc6\x0d\xcd\xec\x50\x42\xb4\x4d\xcd\x6c\xb6\xa8\xe7\xd6\xcb\x5f\xed\x2c\x86\x8e\x55\x3b\xbc\xd8\x24\x66\x87\x53\xdd\x50\xb0\x36\xa5\x7b\xbe\xbc\x35\xf0\xe3\xea\x42\x46\x26\x74\x96\xfd\x12\x53\x38\x37\xa5\x04\xda\x37\x05\x94\xa6\x15\x54\xaa\x2a\xe6\xd3\xbe\x85\x37\x5e\x62\xf0\xad\xd3\xcb\x0f\x33\x6b\x4b\x53\xa9\x62\x95\x81\x22\x93\x3f\x17\x45\x8d\x67\xf2\xe7\x26\xbf\x5f\x26\x7f\x76\xdc\x96\x0d\xbd\x69\x95\xe2\x72\x7f\xb8\xc1\xe1\x32\x98\x2e\x5e\xfe\x0e\xd9\x3c\x8a\xcb\xe4\x9a\xe7\x0f\xcf\xe3\x72\x08\xdf\xa1\x62\xed\x56\x08\x40\xc5\xda\x7d\x1d\xd3\x6f\xaf\x3c\x50\xc7\x77\x97\x20\xbc\xe7\xaa\x5b\x99\xc0\x76\xd7\x84\x75\x5e\x71\xd9\x59\x60\x65\x25\x60\xee\xe7\x6a\x31\x33\xd4\xad\xcd\x3c\x24\x35\xaa\x32\x71\x64\x7a\xe7\x6a\xd9\x11\x34\xa3\xcd\xca\x01\x46\x50\x56\x14\xb5\xfd\x21\x2b\xd8\x93\xab\xa2\xc3\xe4\x2e\x6e\x34\xaa\xee\x19\xd3\xec\x37\x04\x60\xda\x50\x93\x66\xc5\x4c\x64\x3e\xe7\x26\x2b\xfe\x0d\x6d\x67\x91\x89\xc0\xa6\xb6\x33\x5b\x74\xfa\xa1\x81\xb3\x0e\x29\xd2\x3b\x37\x99\x66\x2a\xbd\x33\xc9\x72\x67\x76\x67\xa9\xe5\x0f\x04\xdd\x04\x30\xe1\x40\x19\xa6\x15\x97\xa0\x82\x56\x5c\x93\x0b\x55\x05\x61\x69\x70\x13\x76\x26\x77\x6e\xd4\xa0\x77\x26\x77\xae\xa4\x1f\x9d\xb9\x9d\xdb\x80\xe8\xa4\x33\x7d\x73\x26\x63\xd8\x95\xbe\x39\x33\xef\x40\x67\xfa\xe6\xca\x30\x25\x07\xa2\x60\xc1\x10\xdd\x26\x34\x09\x1c\xe7\x91\x34\x6c\x3c\x19\x32\x43\x83\x75\x66\x73\x6e\x8c\x69\xd0\x99\xcc\x59\xd4\xfc\x40\xf0\xd5\xc6\xe6\x77\x25\x73\x66\x38\xd5\xce\x5c\xce\x8d\xfe\x35\x9d\xb9\x9c\x33\x9f\x5a\x9d\xb9\x9c\x1b\xd3\x1e\x74\xe6\x72\x2e\xe4\x4b\xba\x52\x39\x33\xf2\x71\x67\x2a\xe7\xc6\x5c\x29\x9d\xa9\x9c\xd3\xf4\xc8\x20\xfe\x1c\x5e\x5f\x30\x29\xc9\x23\xc3\xb9\xa7\x75\x6b\x67\xba\xe6\xda\xbb\xfa\x03\xfb\x40\xdf\x82\xce\x84\xcc\x8d\xd1\xec\xfa\x4c\x14\x23\x51\x61\x7f\x40\x9c\xa6\x51\x04\x65\x54\x9d\x82\x0a\x84\x4a\xfe\x10\xb9\x79\x9a\xcb\x88\x4f\xdd\x20\xe9\x05\xf7\x97\x41\x79\x29\x56\x39\x10\xf0\x99\x39\x8e\x0e\x88\xec\x63\xb5\x0b\xa2\x27\x9c\x9a\x39\xfb\xd4\xfb\xa8\x82\x16\x20\x7f\xf7\x06\xa4\x71\xc3\xac\x85\x46\xca\x07\x2a\x28\x6b\x82\xe0\xbd\x51\xf4\x1d\x4c\x4f\x79\x93\x1c\x08\x37\x50\x75\x19\xac\x05\xc2\x6d\x12\x49\x43\x10\x93\x0d\xba\x26\xa2\xc9\x35\xb7\x02\x4f\xa3\x30\x44\xe2\x35\xdd\x3d\x3c\x8d\x9a\x20\xd8\x78\x25\x9d\x8a\x44\x0f\x29\x61\x02\xa2\xec\xca\x97\xa6\x33\x39\x74\xca\xdd\xa3\xd9\x1c\x8d\x66\xb8\x89\x0a\x5a\x35\x6a\x92\x3d\x27\x08\xfb\x29\x00\xe9\xcc\x23\x7d\x9a\xd1\xc0\xf1\x26\xc9\x9d\x55\x33\xcf\x68\x69\x82\x90\x0a\xa7\x0c\x41\x81\x71\x1b\x7a\xa1\xa6\x21\xd0\x0b\xcd\x02\x4e\x89\x6d\xe8\x18\x32\x00\x6e\x1e\x3a\x24\x50\x2e\x66\xaf\xbe\x94\x8b\x24\x98\x9d\x09\xa9\xdb\x78\x0a\x31\xc5\xe2\x56\x31\xc5\x32\x05\x01\xc1\x86\x0e\x1b\xe3\xe1\x32\x3b\xc3\x81\x6e\x16\xba\x1d\xac\xb8\x36\x35\x33\x2a\x49\xd7\xc8\x69\xd3\x77\xb9\x0c\x61\x39\x84\xc4\x99\xca\x2e\x1f\x7d\xfa\x3a\xd2\x99\xef\x40\x1b\x78\xe3\xb2\x17\x70\xca\x65\x1c\xcd\x0f\x49\xf4\xa9\xaa\xa1\xfa\x4b\x24\x92\xf1\xac\xf8\xd2\xf0\x09\xa7\x0e\x73\x78\x1e\x8c\x66\x29\x3a\x01\x15\xe6\xa9\xea\x42\x90\x57\x9d\x22\x68\x29\x83\xbe\x2c\x9d\x79\xaf\x67\x49\xfe\x90\x93\xd4\xf9\xcf\x74\x7b\xf1\x7a\x10\xad\x9e\x0f\x61\x12\x23\x08\x0e\x94\x25\xe9\x30\xc2\x81\xb2\x31\x1f\xce\x81\x60\x3e\x20\x7a\x03\xb5\x64\x79\xca\x10\xa7\x82\x46\xc3\x9d\x99\xad\x0b\x53\xae\x1c\x08\x57\xd4\x03\x31\xa7\x50\x75\x55\xa0\x43\x55\xa3\x7a\x2f\x8a\xa0\x17\xc6\x2c\x14\xd9\x62\x48\x5a\x8a\x43\x3b\x73\x62\x9f\xaa\x53\x20\x03\x86\x0a\x62\x22\x4c\x61\x4e\xa1\x5e\x5a\x77\x46\xa1\xfc\x77\xba\x8c\x89\xe2\x0c\xc1\x6c\x77\xb8\x66\x90\xde\x09\xc2\x0d\xc2\x84\x4b\x07\x64\xa2\x5f\x77\xc8\x93\x13\x82\xe0\xcb\x34\xfc\xe1\x8d\xf7\x50\x12\x04\x29\x9f\x87\x0d\x64\x68\x22\x62\x05\x79\x8b\x8a\x70\x01\xe1\x6a\x23\x79\x2d\x20\xc7\x8c\xec\xef\x80\x0a\xcd\x35\x79\xe0\x9a\x66\x01\x23\xbb\x2b\xf9\x43\xd8\xd1\x79\x2d\xf0\x04\xe5\xab\xaa\x33\x41\x77\x24\xad\x3e\xa2\xd5\xb6\x21\x7a\xc7\x04\xdd\x59\x64\x0b\x7a\xd7\xde\xb5\x32\xd2\xbb\x8e\xee\x0f\x71\xbb\x25\x57\x85\x71\x4c\xb8\x2a\x49\xf8\x14\x04\xae\x43\x6b\x58\x19\x7f\x5b\x78\x09\xa5\x6c\xa3\xd9\xc1\x81\x16\x5a\x71\x19\xe4\xbd\x3a\x33\x70\xba\x8c\xf4\xd4\x44\x1e\x38\xad\x3d\x43\xd7\x1a\x83\xe0\x74\xd9\x98\x12\xf3\x40\xc8\x81\xda\x0d\x71\xd5\xa6\xe6\xcb\xeb\x5b\x1b\x03\x7d\x6d\xae\x5e\x19\x5e\xca\x5a\x5f\xa8\x5d\x23\x69\x9b\xe0\xf2\x18\x49\xf8\x0c\xb5\x6b\x24\x0f\x86\x36\x1f\x1a\x0c\xbc\x08\x53\xd1\x25\x41\x2f\xc2\x87\x2c\x50\x09\x3b\x9e\x42\x58\x10\xab\xd1\x46\x29\xfd\x53\xf3\xcd\x0f\x93\xc0\x1b\xa6\x9f\xaa\x4a\x93\x2e\xa1\x65\x93\x08\xdf\xd0\x44\x22\x96\x2a\x48\xfd\x87\xc0\x85\xc2\x22\x88\xbb\xe6\x32\x9c\xb5\x29\x72\xd2\xce\x82\x47\xd2\x81\x66\x52\xeb\xa1\x13\xd4\x24\xc7\x73\xd9\x59\xa9\xaa\xd5\x40\x38\x58\x59\xad\x75\x26\xbc\xce\x8c\xa8\xd1\x99\xf0\xfa\x74\xa1\xa5\x82\x51\x7c\xd2\xbd\xd0\x68\x4f\xad\x8b\x10\xae\x81\x33\x7b\x1a\x34\x29\x9c\xba\x09\x91\xd5\xba\x8c\xf8\xa1\xcd\x74\x67\x56\xeb\x48\x5e\x1c\x8a\x71\x98\xb2\xb1\x33\xad\x75\x1b\x22\x68\x70\x2a\x9c\xd5\x83\x93\x30\x96\xeb\x0f\xd5\xf2\x34\x6e\xc0\x51\x6f\x98\xd8\x75\xc6\x04\x4a\x59\x10\x98\x5e\x6d\x63\xa7\x80\x65\xea\x2c\x20\xcc\xeb\xcc\xda\x0d\x44\x79\x9d\x54\x20\x75\x26\x9d\x8e\xd4\x0c\x15\x7e\xa8\x1e\x83\xa4\x60\x0a\x42\x24\x81\xa7\x0c\xdb\x38\x35\x52\x98\x4e\x45\x31\x34\xf0\x9d\x3a\x04\xe5\x63\x22\xa2\x03\x81\x27\x73\xf7\xa4\x7c\x73\x18\xdc\x90\x30\xf9\x43\x50\x3e\x71\x10\x0c\xeb\x9a\xa7\xd7\x66\xf1\x34\xa8\x10\x81\x5c\xbb\xae\x0c\x44\x67\x9d\xc6\x1b\xaa\xc4\x87\x8e\x26\xdc\xf8\x52\x88\x30\xd0\x8d\x4f\x46\x74\x7d\x0e\x98\xbf\x35\x91\x37\x46\x51\x4d\x9a\x3e\xa2\xa8\x96\x50\xf7\x08\xa2\x3a\x4d\x19\xe0\xf0\x17\xc3\x8d\xe0\xa6\xd7\xd9\x87\x7a\x3c\x92\xae\x96\xc1\xd7\xa6\x70\x78\x30\x07\xa2\xce\x97\xb4\xe3\x0c\xdc\x7b\x40\x2c\x7e\x57\x7f\x81\x50\x74\xba\x84\x10\x09\x35\xaa\x70\x18\x8e\x7a\xe1\x7b\x76\x28\xd8\xb9\x3a\x24\x4f\x12\xc9\x85\x13\xa3\xd1\x48\x99\xed\x5f\x1c\x0a\xc3\x92\x0e\xb1\x76\x08\x4b\x7a\x58\x6f\x41\x30\x2e\xf5\xc2\xc8\xea\x5f\xb3\xa0\x59\x41\x64\x7f\xc8\xf3\xa5\x49\x51\x60\x14\xd9\x75\x61\xd0\xeb\xd5\xc0\xb3\x51\xee\xb6\x9d\xe9\x90\xa7\x99\xf7\xc1\x70\xe7\x42\x1b\xa8\xab\x27\xed\xa9\x3b\x73\x1c\xf7\xae\x5d\x83\x9a\x39\xaa\x88\xe6\x64\xfa\xf5\xee\x9a\x1c\x9c\xce\x30\x72\x1c\x97\x59\x5c\x78\x76\x8a\x01\xae\x0f\x04\x9e\x2c\xb9\x43\xe4\x82\x17\x4f\x8c\x60\xa7\x25\xeb\x5a\x98\x74\xfe\xd7\xbe\x4d\xca\xc2\xb5\x6e\xcc\x8d\xec\x35\x85\xd7\x60\xce\xd9\x50\xe1\x60\x34\x52\xd8\x3f\x94\xe1\x42\x2c\xbf\x16\x1c\x9a\xec\x7c\x89\x66\x43\x93\xdd\x69\x75\xdf\x99\x46\xb9\xd6\xea\xee\x35\x43\xf7\x8f\xa8\x57\x42\x14\x68\xb2\x7b\x09\x37\xf3\x01\xa4\x0f\x6d\xe6\x6f\x30\xa1\x50\x1f\xc2\x93\xa5\xe8\xa6\x9d\x4b\x03\x37\x58\xbf\xbf\x3a\x43\x87\x1d\xa8\xa1\xaa\xa6\x41\x13\xd9\x28\x6e\xe7\xec\x8d\xa9\x0d\x72\x2e\xe7\x9c\xdc\x0c\x71\xc3\x1b\x77\x8e\x7b\xaf\x97\x21\xe2\x86\x50\x05\x3a\xf1\xdc\xbb\x0b\x3f\x2c\xd4\xce\xc1\x92\xc2\xd7\xcd\xa4\xc0\x23\xea\x0f\x1d\xc5\x4f\x5d\xd0\x0d\x21\x20\x3d\x27\xfd\x94\x86\xe3\x64\xaa\x7a\xa4\x30\xc4\x6a\x78\x22\x1b\xd4\xaf\xfa\xbb\x1b\x90\x47\x03\x81\x87\xd8\x29\xe8\xd6\x4b\x13\xa7\x17\x0a\x38\x12\x82\x98\xd5\x5e\x6c\x11\x74\xeb\xbd\x8b\x31\x08\xe6\x64\xcc\xae\xba\x58\xd5\xed\xc0\xa7\x58\xfb\xc1\x70\xab\xe5\x72\x19\xdd\xdd\xab\x20\xde\x0c\x1c\x5b\x30\x12\x80\xc8\x7d\x80\xf8\xeb\xbc\x05\x90\xd3\x3b\xce\xa4\xcb\x59\x38\x16\x14\x76\x3d\x8d\xc0\xa6\x4e\xc7\x3f\x94\x4b\x4c\xad\x40\xbd\x92\xf4\x78\x0b\x9a\x40\x08\xdf\x99\x2b\x39\xc7\xf3\x61\x40\xf3\xa7\xc9\xe3\xb5\x5c\xc4\x49\x43\x09\x5f\xcc\xe8\x05\x93\x89\x88\x45\x0b\x0a\xc1\x93\xcb\x68\x2c\xe1\x32\x2a\x25\xd5\x03\x6e\xec\xac\x93\xa1\xac\xca\x1e\x1a\x1e\xcb\xa6\xc4\xc1\x44\x9e\x97\xa1\x17\x1e\xd2\x9a\xbc\xa8\xd4\x74\x33\x58\x50\xbd\x07\xa9\x59\xcf\x92\x8d\x40\xb3\x9e\x2f\x1d\xb7\x25\x4b\x99\x2a\x28\x90\x1d\xb1\x0b\x5a\x08\x2d\x4a\x00\x49\x38\x92\x38\x67\x68\xc4\x4b\xd5\x1e\x31\xa3\x71\x4f\x86\x2a\x39\x67\xb5\xc2\xd7\xd0\x1c\x82\xf0\xfe\x17\x8d\x84\xd2\x3b\x17\x5d\x4a\x8b\x34\x63\xf8\x3b\xd2\x8c\xf0\x87\x88\x36\x18\x1e\x0d\x73\xcc\x19\x62\xf6\x57\x41\x8b\xa2\x18\x35\x43\xd3\x6a\x91\x61\xa4\x42\x2e\x49\x5c\x0e\x82\xae\xa6\xe2\x97\xf2\x02\x7f\x1c\x62\xf2\x17\x93\xcc\x54\x97\xe1\xa1\xec\x59\x60\xeb\xaf\xcb\x8d\x22\xb6\x94\x70\x14\x99\x91\xd3\xa5\x9b\x8e\x61\x56\xab\xd8\x3c\xe8\xaa\x1f\x2e\x6f\x29\x25\xbf\xde\xe2\x8b\xe9\xd9\x44\x95\x11\x74\xb5\x5e\xdd\x55\x45\x69\x04\xdd\xfc\xd0\x85\x78\x60\x0b\x2d\x99\x36\xd9\x13\x66\xd6\xe4\x72\x09\x2f\x37\x0c\x29\x9a\x36\x7f\x53\x8d\x21\xfe\x6c\x53\x8d\xf1\x34\x83\xbc\xa5\x62\x1e\x36\x23\x80\x84\x6b\xf2\x54\x74\x41\x38\x15\xc9\x3d\x6c\x76\x98\x04\x42\xfd\x92\x0c\xe1\x58\x54\x37\x0a\x7a\x79\xb9\xec\xc3\x0f\xd5\x87\xb2\xad\x4f\x41\x89\x85\x45\x20\x3c\xbc\x24\x6b\x84\x7a\xbe\x58\x4c\x00\xef\xde\x98\x2e\x6a\xfc\x4e\xab\xc1\x38\x37\x9e\x30\x53\x5e\x3d\x10\x18\xf2\xcb\x3d\x20\x13\x76\xf9\xa1\x8d\x47\x67\x42\xe7\x56\x3c\x45\x78\x69\xd6\xee\xfe\x31\x7d\xdd\x42\x4a\xd9\xec\xb1\x31\x33\xab\x8e\x1e\x2c\x00\xb2\x9f\xbb\x8c\x16\x5b\x2e\x51\xd6\x8d\xac\x99\x59\xc7\x6d\x2b\xcb\x84\x96\x06\xcf\x8a\x48\x6e\x46\x71\x0b\x05\x05\xe4\xcc\x2e\x7b\x61\xdb\x34\x50\x98\x66\xd4\xe4\x56\x6e\x4c\xc2\xdf\x7d\x20\x66\x56\xef\x78\xa5\x17\xbf\x5c\x18\x82\x76\x7a\xdb\x20\xb2\x51\x08\xcb\x03\x22\x00\xbf\x8e\x22\xe3\xd3\x56\x11\x29\x9a\x1c\x14\xcb\x25\x36\x13\x6e\x79\x13\xf5\xaa\xf0\x87\xe7\x48\x59\xd6\x89\x70\xb5\xb5\x7b\xa3\xe0\x37\xe2\xbb\x7c\x13\xf9\xc5\xf1\xc3\x00\xe1\x74\x11\x02\x13\x25\x03\x82\xa0\xa7\x2d\x86\x48\xf7\x0d\xcd\x73\xb1\xab\xfb\x17\x9d\x2b\xdd\x08\x63\x36\x0a\xc2\xed\xd4\xc5\xf4\xbc\x88\x50\x42\x4b\xa6\x88\x6e\x62\x07\xa0\xfd\xcf\x96\x19\x20\x90\x6c\x52\xd0\xc4\xce\xfc\xd1\x65\x5e\x6e\xe6\x06\x05\x71\x33\xcc\x51\xcc\x05\x66\x6e\x69\xbf\x3e\x5e\x74\x2c\xd7\xc2\xbc\xe8\x24\xa4\xbd\x47\x3c\xda\xda\xc4\x0c\xbc\x98\xa7\x26\xfc\x1d\x64\xf5\xd9\x35\x27\x78\x73\x01\x48\x93\x77\x75\xd7\x44\x9e\x92\xe2\xde\x71\x9c\xc3\xd0\xc1\x8b\x2a\x22\x4c\x7f\xec\x2a\xde\x90\xe1\x68\x8b\x88\x19\x75\xfd\x16\x64\xbf\x90\x23\xc0\x52\x3e\x84\xa3\x9d\xdd\x2b\xb1\x79\xee\x75\x09\x20\xe2\x6c\x99\x42\xfc\x37\xf3\xe9\x09\x49\x99\x4b\x5a\x61\x89\x3a\xd3\x45\x17\x3f\x62\x60\x24\x90\x6b\xf5\x87\x3c\xbf\x6e\x94\x94\x56\x9c\xd1\x9b\x56\x23\xc9\xcd\x9c\xd7\xcf\xd3\x26\xc2\xef\x86\x5b\x01\xaa\x55\x7f\x46\x17\x25\xf5\x07\x89\x7f\xd1\x4e\x30\x05\xb4\x65\x32\x70\xc0\xce\x75\xba\x0c\x0e\x9a\x9a\x2f\x82\xcc\xa6\x72\x89\xa3\x67\xb6\x66\x3f\xc3\x99\xad\xd9\xf4\x82\xda\x7b\x6b\x23\xde\x3c\xe8\xe1\x9a\xf0\x69\xd7\x65\xc9\xa8\xb2\x25\xbb\x8c\xd3\x0d\xf7\x88\x48\x88\xcd\x1d\x12\x11\x9f\x76\x90\xf8\x53\x17\x32\xc2\xca\x66\x6f\x22\xdd\xb3\x8b\x08\x2b\xd4\xf5\x31\xf5\xd4\x64\x5e\xe5\x52\x0c\x0d\xbc\x21\x34\x52\xc8\xf1\xcb\x03\x6d\xdc\x1d\x6c\x93\x1a\xf8\x29\x84\x82\x06\x3e\x95\xa4\xcb\x83\x8e\xd3\x55\xe7\x00\x2a\xf8\x59\xbb\xab\xd6\xf3\xba\xd2\x6e\x43\xc9\x9e\x5a\xff\x0d\xf4\x59\x7e\xd3\xd5\xcd\xc0\x24\x25\xdc\x05\x47\x3a\x04\x6d\x8e\xc6\x85\x48\x01\xab\xa3\x8e\x94\xcb\xa7\xb0\x0a\x04\xc1\xcc\xae\x8a\xc0\xd0\x5a\x37\x68\xeb\x8b\x05\xce\x77\x68\x8e\x6a\x87\xfa\x3d\xd1\xf2\x9b\x11\x8a\xdc\x07\xf4\xf3\x25\x89\xd6\x50\x41\x5f\xc4\x41\x43\xb1\x9e\x8d\xee\x4c\xc1\xac\xbc\x8b\x5d\x29\x98\xbb\x10\xe7\xe6\x5b\x48\x5c\x3a\x53\x30\x97\x24\xec\x80\xd3\x73\xce\xc9\xed\x74\x16\xaa\x4b\x0a\xfe\x2e\x7f\x09\x9e\x5a\x77\xe2\x2d\xb7\x25\xd7\x04\x92\x85\x7b\xe4\xd2\x15\x83\xe0\xf6\x25\xb2\xa2\x32\xdf\x02\xd2\x9b\x57\xcd\xd3\xe1\x87\x1f\x6a\xb1\xce\x5d\xd3\xab\x0e\x2a\x3c\xab\x73\xd7\xa5\xc8\x88\xb8\x16\x56\x43\xd1\x5f\x9b\x88\x18\x15\xfd\xd5\x1b\xc0\xcc\x9f\x7e\xe0\xdf\x5b\x1e\x56\x82\x34\x54\xb7\x8a\xa1\x7a\xe0\x9b\xbb\x2c\xbc\x86\xa7\x75\x33\x01\xb8\xb7\xc6\xca\xa1\x23\x09\xf4\x34\x35\xa2\x8d\x40\xd1\x7d\x42\x1b\x81\x62\x29\xe1\x87\x99\x6f\x9f\x0f\xe9\xdb\x6d\x08\xb7\x9b\x08\xfc\x87\x78\x55\xdc\x28\x42\x37\xe8\x20\x7f\x98\xcf\x4c\xb3\xfa\x08\xaf\x44\x73\x3e\x0a\x4f\xe1\x42\xe0\x95\xd8\x10\x04\xde\x9d\xde\x47\x38\x5e\xb7\xf2\x34\xc3\x49\x79\x34\x10\x20\x17\x5d\xe7\x1f\xfa\x54\x09\x57\x3e\x34\x49\x4e\xba\x29\xe8\x79\xed\x63\x0e\x97\xe9\x5c\x9e\x32\xbc\xa2\xc5\xea\x40\xf7\x9f\xbd\x01\xd0\xfd\x4f\xdf\x45\x1f\x26\x7b\xd5\xfe\x7f\xf8\xbc\x4d\xc3\x60\x45\x34\x67\xcd\x9f\x0c\x44\x92\xc0\xe3\x43\x06\x42\xac\x2d\x7d\xa4\x4b\x12\xf1\xa0\x65\x40\x29\xae\x0a\xff\xf9\xe1\x2e\x6f\x56\x9d\x02\xf1\x7c\xe0\x5d\xa1\xdc\xc7\x0c\x8f\xd2\x99\xfa\x38\xd1\xc7\xa4\x33\xf5\x71\x66\xc8\xb0\xce\xec\xc6\x99\x56\x48\x9d\x59\x89\x5b\xe1\x86\x33\x29\x71\xa3\x6f\x71\x67\x52\xe2\x49\x63\xb2\xae\xa4\xc4\x25\x4d\x17\x22\xb2\x81\x1b\x05\xdf\xab\xb3\xc2\xcc\xc3\x89\xee\x08\x9d\x99\x87\x0b\xe3\x02\x76\x26\x17\x1e\x4c\xc3\xdc\x99\x5c\xb8\x31\x36\x7b\x67\x72\xe1\x22\x91\x31\x73\x0b\x9f\x36\x5d\x88\xac\x38\xcd\x1d\x72\xff\xdd\x2a\xf7\xbf\x1a\xc2\x0d\x50\x55\x95\x49\x59\x79\x1c\x99\x17\xb8\xd0\x42\xa9\x2b\x2d\x70\xa1\x1d\x4c\x67\x5e\x60\x65\x97\xeb\xcc\x0b\x9c\x4a\xfc\x58\x79\xc8\xf4\xbe\x4d\x22\x15\xa5\xf7\x2d\xcf\x6e\x50\x10\x4d\x3c\x62\x46\xdf\x12\x5e\x00\x3e\x91\x2e\x43\x37\x3f\xd4\x0a\x9c\x2d\xee\x34\xa1\xed\xcc\xd9\x7b\x0a\x87\x40\x4e\x32\x0b\xa2\xaf\x7b\x17\x04\xdf\xea\xea\x0f\xfb\xf7\x97\x5e\xa4\xcc\xe7\x5b\x45\x63\x94\xce\x57\xef\x7f\xa5\xf3\x2d\xf9\x01\x19\x97\x52\x55\x03\xf1\xab\xdd\x03\xcd\x79\xb4\xfd\x8c\x21\xac\x80\xa6\x07\x24\x03\xad\xee\xf9\x40\x7e\xca\x60\xf6\xdf\x0c\xc9\xfb\xa8\x0a\x24\xe1\x0a\x41\x8c\xb6\xaa\x1e\x19\x50\x73\x18\x62\xd6\x34\x4f\x9f\x01\x88\xc8\x0f\x44\x22\xe5\x6e\xea\x7f\x71\x51\xab\xbf\xa4\x33\x83\x20\x18\x1b\x8b\x8c\x30\x9b\x6e\xd0\x9a\xab\x33\x9b\x6e\x2a\xb9\xa9\x0f\xf2\x07\x64\x48\x98\x4e\x77\x0c\x2d\x0e\x9c\x7f\x73\xd3\x8c\x99\x15\xd7\xa4\xd2\x59\x71\x79\x77\x32\x2b\x6e\xf6\xb9\xcd\x4c\xb6\xcc\x58\xe7\x07\x44\x04\x4b\xcd\x03\x4e\xc4\xd3\x07\x20\xcb\x7e\x73\x0a\x42\x54\x29\xf7\xc8\x84\x82\x3a\xaa\x74\x1b\x2e\x92\x9d\x30\xb7\x6d\x69\xc2\x71\x6a\xf6\x8b\x26\x95\x99\x24\x59\x6b\xcc\x00\xc3\x3d\xbb\x26\x42\x4a\x37\x0d\x06\x4a\xa2\xe9\xef\x96\xcc\xe0\x05\xb5\xb3\x18\xdd\x10\x0c\xd6\x87\x6b\x2e\xe6\xb7\x33\x88\x64\x18\xcf\x87\xf0\x54\x7c\x20\xc8\xd7\x8a\x6b\x62\xdf\xa6\xe6\xcb\x1b\x37\x4f\x8d\x0d\x16\x9a\x62\x5d\x98\xcb\xf6\x14\xaa\x1d\xc8\x1e\xcb\x03\xc1\xb1\xc6\xeb\xb6\xb9\x36\x53\xb3\x92\x61\x96\x21\xee\x86\x77\x95\x17\x72\x26\x47\x1c\x59\x08\x60\x88\xda\x3e\x77\xf2\x02\x07\xee\x4e\x88\xd6\x1e\x3b\x9f\x0e\x97\x3b\xf9\xe0\x02\x66\x19\x9c\x8a\x9b\x74\x7f\xcc\x7c\x3b\xa5\x4e\x65\xe6\x5b\xd9\x6c\x77\x65\xbe\x2d\x79\xba\x10\x9c\x25\x65\x34\xcc\x7c\x5b\xc4\x65\x28\xf1\x6d\xc9\x64\x73\x98\xf9\x76\x4e\x11\x19\x98\x04\x4c\x3d\x36\x03\x26\x01\x63\x3e\xfd\xbf\xf8\xa1\x5b\x7d\x33\xae\x99\xa0\x1b\x76\x06\x49\x10\x37\x44\xd8\xc9\xe4\xb7\x45\x28\x5f\x78\xcb\x9b\xe8\xc3\x01\xba\x30\x15\xd2\x81\x38\x11\x5e\xfa\x81\x48\xcd\x63\x7a\xce\x14\x6f\xe8\x3c\xc0\x0c\xa1\x57\xe1\x0e\xcd\x10\x8a\xd4\xdb\x01\x33\x84\x29\x63\x0a\xa6\xbb\x2d\x2d\xff\xd0\x68\xba\x33\x17\x6e\x2a\x92\x9a\x30\x19\xee\x94\xe8\x96\xb9\x70\x4f\xa1\xe6\xc5\xc7\xaa\xc8\x35\xe3\x38\x97\xe2\x2d\x61\x32\x70\xcf\x0b\xb2\xb7\x22\x69\x31\x73\xe3\x2a\x39\xd4\x81\x60\xe2\x5d\xdd\xea\x07\x07\x46\xad\x42\xca\xee\x43\x08\x83\x82\x11\x3a\x4c\x30\x28\x98\x53\xb7\x57\x21\xa3\xa1\xb7\x73\xc0\xa2\x60\x8a\x79\x88\xc2\xe0\x17\x1e\xcd\x86\x52\x53\xa4\xa4\x10\x5b\x8b\x06\xa3\x34\xcd\xee\xfe\xcd\x46\xb5\xac\x54\x16\x55\x17\x72\xad\x74\x27\xc0\xdc\x20\x87\x68\x82\xb2\xe1\x6a\xd3\x99\x0d\xf7\x41\x42\x58\x1f\x4c\x33\x13\x30\x30\x68\xd2\x1c\x33\xe3\xed\x34\x65\xad\xc8\xd3\x5d\x74\xb4\x2b\xd1\xc3\x14\x12\x4e\xe0\x33\x4d\x57\x65\x1f\x45\x03\x60\x3e\x00\xad\x71\xe5\x43\x44\x3c\x62\x54\xc8\xd6\xe9\x01\x71\x20\x44\xd9\x9e\xfe\x50\x2e\x56\x43\x20\x1e\x9b\x1e\x1d\xa5\x1e\xbe\xdd\x2a\xc2\xaa\x32\x05\x71\x0f\x06\x88\x1e\x3a\x21\xb0\x55\x98\x59\x87\x19\xb6\x0a\xb3\x55\xd7\xc4\x2d\xac\x8d\x44\x94\xe7\x29\xf9\x3d\xb3\xec\xe6\x67\x1a\x8c\xc6\x33\xdd\x0a\xf7\xe3\x69\x06\x97\x62\x77\x55\x08\xb9\x92\xaa\x6e\xea\x8b\xb4\x01\x8c\x66\xa8\x73\x5e\xe9\x8c\xe4\xc5\xe0\x65\x66\xba\x8f\x28\xcf\xd5\xd7\x17\xa2\x3c\x27\x99\xb0\x05\xa3\x3c\x17\xdf\x74\x0c\xf3\x2c\xf5\x19\x53\xee\xa6\xee\xcd\xd9\x1c\x0d\x51\x8e\xa9\x72\x25\x28\x8e\x46\xb5\xae\x2e\x53\x58\x4e\x0c\xe9\xdf\x03\xc6\x11\xa9\x36\xd7\xa4\x28\x98\xb3\x60\x88\xe5\x42\x53\xe1\x03\x26\x64\x7f\x6f\x82\x38\xc5\x22\xe8\x6c\x3f\x45\x8a\xd1\x98\xef\x50\xdc\x63\x63\x84\xba\xa7\x43\x98\x11\xe7\xcb\xad\x70\x86\xba\xa2\xe0\x05\x2f\x8b\xfe\xce\x1c\xbb\x49\xd1\x2b\xbb\x92\xec\x5e\xd3\xa3\x81\x55\x45\xd6\x50\xf1\xb4\x90\x84\x28\x60\x46\x51\x64\xfd\xc2\xac\xba\xa9\x35\xd7\xdc\x18\xb7\x16\x03\x32\x4d\x49\xf8\x82\xe6\x0f\x12\x8a\x44\xe3\x5d\x56\xa6\x41\xca\xfe\x0d\xf1\x6c\x78\x34\x9b\x86\xb5\x5a\x00\xc6\x62\xf2\x72\x58\xd4\x61\x10\x1e\x3f\x7c\xa2\x32\x1f\xef\x6c\x22\x23\xb4\x86\x90\x1c\x84\xb9\x72\x87\x8c\x71\x98\x1d\xb7\x0c\x2d\x7f\x57\xd6\xfe\x29\x88\x2e\x14\x1c\x1b\x8c\x21\x7a\xd3\xc1\xe8\x4c\xc5\x2f\x5c\x64\xb8\xe3\xc2\xfc\x1b\x07\x2c\xa8\xfa\x63\x39\x08\x93\xe5\x9e\x2f\xd5\x25\xb2\xd1\x3d\x03\x80\x5e\xa6\x18\xff\xe1\xf7\x9f\xfc\x7e\x50\x62\x5d\x99\x6e\x30\xb3\x6e\x96\x0d\x67\x74\x62\x80\x99\xf2\x0e\x53\xa5\xf6\x54\x45\x54\xce\xee\xaa\x10\x1f\x6a\x3f\x3a\x05\x61\xd5\x4b\xa7\xa7\xa6\x3e\x84\xf4\x32\x57\x43\x8d\x76\x15\x82\x38\xd6\x64\x10\xf1\x5a\xbc\x3e\x4b\x63\xd5\xbc\x28\x01\xd7\x15\x4d\x53\x8e\x22\x59\x2e\x53\xf4\xf6\x1e\x6e\x07\x09\x23\x92\xf6\x07\xa4\xa3\x35\x0f\x00\x1c\x54\xcd\x06\x21\xd1\x73\x97\xc0\xba\x10\x03\x09\x53\x8e\x61\x3e\x88\x79\x76\x8b\x79\x76\x86\x37\xe8\x5e\x57\x18\x2d\xb7\x30\xf4\x86\x5c\x9b\x8d\x0e\xbe\x51\x24\xfc\x8b\xc1\x00\x83\x22\x5d\x43\xa9\x99\xf8\x4a\x8f\x31\x89\x04\x21\xa8\x02\x9a\x82\x18\x22\xa8\x0b\xea\x28\x1b\x82\x10\x1d\x4c\x8b\x0c\x2b\x90\x2e\x11\x52\x0c\x8a\xbb\x64\xbf\xc1\x14\xbc\x5d\xba\x9a\x18\x8c\xe4\xce\xe7\x34\x53\xf0\xf6\xae\xd5\x40\x5e\xdd\xde\x45\x57\x10\x04\xba\x5c\xba\x90\x90\x0f\xb7\xd0\x3b\xac\x33\x1d\x6e\x2a\xd2\xae\x32\x1f\x6e\x4e\x42\x6c\x44\x45\x28\x59\x2f\xcf\x41\xab\xc5\x64\x08\xd2\x46\xad\x1b\x03\x3b\xfb\x71\x8d\xc0\x07\x55\x66\x08\x31\x68\xc3\x2a\x7a\x34\x10\x4c\xe4\x12\xca\x23\x9a\x41\x0a\xcf\x97\x34\xfe\x81\x20\x06\x13\x6d\x86\xb9\x48\x91\x71\x1a\xb3\xd8\x76\x8f\x85\x41\x09\x8a\xb4\x31\x81\xa8\x04\xde\x26\x04\x25\xe8\x12\x4a\x31\xc3\x6d\xae\xd5\x15\x17\xca\x8a\x20\xbc\x9e\x25\xa0\x60\x4e\xdb\xe4\xd7\xe3\xd4\x56\x0c\xb7\x8a\xb8\x79\x94\xc9\x30\xa9\x6d\xbe\xf4\x5e\x87\xf5\x46\x95\x45\x0c\x53\xdc\x96\x29\x91\x04\x8c\x37\xba\x4f\x0d\x4c\x32\xba\x0f\x1f\x22\x06\x74\x19\x69\x32\x51\x6d\x2a\x75\xba\x51\xe8\x23\x74\x6c\x27\x6d\x8d\x3d\x0d\x72\x6a\xa2\xdb\x53\x27\xd3\xfd\x63\x9f\x2c\x68\x40\xe2\xda\x2a\x45\x30\x73\xd3\xd6\xda\xdd\x28\x7b\xd4\xa9\x81\xed\x44\xa9\x22\xa3\x93\xfa\xa7\xaa\xfd\x86\xed\x44\xaf\x7a\x5a\x31\x74\xf4\xaf\x55\x31\x47\xb1\x6a\x88\x35\xd0\xab\xb8\x28\x44\x8e\xae\x6d\xba\x26\x16\xd5\xf7\x08\xcc\x23\x4a\x5c\xfe\xf0\xc3\x42\x82\xcc\x23\x5b\x9a\xd8\x51\x18\x48\xf4\xaa\x9b\x0b\x06\x12\x53\x02\xe5\x80\x7d\x84\xc2\xff\x1d\x68\x23\xe0\x59\x12\xf4\x42\x2c\xb8\xdf\x40\xab\x63\x42\x5e\x21\x26\x33\x98\x11\x47\x7b\x05\x23\x88\x22\xaf\x0f\x26\xa7\xed\x26\xe3\xc1\xc0\xb3\x7a\xae\x22\x68\x41\xa7\x13\x79\x67\xe2\xda\x6e\x9a\x81\x40\xd6\x45\xe6\xc4\x4c\x4e\x3b\x67\xf3\x77\xd8\x8d\x96\x5d\x88\xc1\x88\x84\x31\x68\x81\xa2\x8b\x76\xa6\xae\xed\x26\x53\x48\x4e\x5b\x66\x71\xd5\xc6\xaa\x5a\x37\xc6\xd7\x14\xa7\xc6\xec\xb4\xa5\x3d\xcd\xd2\x53\xcb\xed\x20\x7a\x91\xb8\x51\x58\x4c\xe4\x2c\x06\x84\x16\x13\x7e\xe5\x20\xa4\x81\x45\x82\xca\x23\x5b\x9a\x2e\x79\x18\x50\x64\x99\x3d\x31\x8f\x6c\xf7\xa1\x46\xd4\x82\x6a\x02\x0f\x8b\x89\xdc\xbc\x70\xda\x7f\xad\xce\x9a\xe4\xaa\xab\xa0\xc2\xc2\x26\x10\x1b\x50\x0c\x0d\x04\xa1\x2a\x82\x26\x38\xdc\x4b\x50\xc0\xce\xc8\xcd\xc0\x94\x48\x23\x85\x79\x45\x91\xae\x23\x60\x25\x91\x65\xed\x1c\xb0\x92\x08\xad\xc5\xe2\x49\x15\x59\x86\x3d\xc3\x90\x2e\x96\x89\x62\xbb\x2c\x6e\x98\x27\x76\x58\x76\x48\x37\xfd\x21\xba\xb8\x98\x7d\xc0\x53\xc0\x4b\xfe\xf2\x6c\xa1\xc8\x8b\xa1\xef\x60\x37\xe4\x0b\x74\x69\x61\xc4\x0a\xc1\x9c\x20\xfc\xdc\xa0\x39\x41\x31\xdf\xb2\xe9\xb5\xab\xc5\x87\x3d\xc1\x79\x87\x0b\xa2\x2d\xb0\x86\x03\x83\x82\xd9\xc5\xe0\x42\x4b\x1f\x45\xd4\x07\x9a\xf8\x52\xdd\x0c\xb9\x8d\x2e\x3e\x05\x89\x5b\x8b\x5f\x1b\xf0\xb7\x9f\x49\xec\x2e\x03\x6b\xfb\xf5\x05\x55\x78\xaf\xd5\x35\x91\x8d\x5f\xd4\x67\x33\x9c\xab\x50\xc1\x29\x56\x45\x36\x36\xd9\x46\xf1\xa2\xd0\x6f\x57\xd9\x5b\x32\xff\x6a\x1a\x9e\x3f\xf1\x2b\xbb\x19\x30\x86\x97\x6b\x06\x23\x79\x0b\x7a\xc1\x68\xd8\xdf\xbd\xd9\xa1\xe6\x44\xe3\x9d\xe4\x0e\x99\x5f\x98\x10\xf4\xdb\x55\x16\x41\x4c\xce\x3a\x7d\x9f\xbd\x68\x86\xae\x97\xc0\x8b\x66\xe8\xc3\xd0\xb9\x6d\x9a\x78\x1b\x78\xcd\xdb\x40\x47\x69\x54\xad\x56\x60\x1a\xd5\x24\x5f\x9a\x78\x91\x15\xd5\xf1\x7e\x31\xa5\x99\x2e\xc9\x17\x5f\x10\xd5\x65\xa0\xfd\xfd\x01\x71\x83\x6a\x13\x5f\x8c\xfa\xab\x77\xb9\x74\xe1\xbd\x1a\x84\xe4\xd6\xfd\x93\xf8\x48\xe9\xa3\x94\xab\x97\x6e\x54\x78\xc6\x77\x0b\xc4\xe0\x19\x1f\xb2\x5f\x61\x02\xd6\x6c\xba\x20\xad\xb6\x71\x0a\x5a\xed\x32\x86\x0b\xa1\x92\xf4\xc2\x51\x56\x2d\x24\x7a\xf1\x62\x4a\x3f\xcc\x2f\x7e\xaa\x72\xa8\xcd\x83\xc3\xad\x25\x4e\x80\x2e\xf5\xa5\x7b\xce\xcc\xa9\x2e\x04\x80\xd7\x7c\xb1\x24\xed\xc5\xa4\x76\xa2\x6f\x2f\xe5\x17\xd4\x70\x60\xfb\x20\x03\x1a\x26\x6b\x7d\xe4\x22\x4c\xd6\xaa\x38\x0d\x9d\xc9\x5a\xab\xac\xa9\x02\xaa\xf3\x47\x1e\x0f\xed\x78\x92\x33\x11\x13\xb9\x26\xc5\xe5\x38\xe0\xfc\xfe\xea\x7e\xde\x43\x75\x5e\xa4\x1d\x67\x22\xd7\x2e\xa3\x56\x26\x72\x3d\x1f\xba\x55\x50\xcd\xec\xc1\x81\x4f\x10\xe3\xf9\x66\x7e\x1f\x4d\x83\x2e\xf3\xa6\x7d\xf4\x98\x2f\x66\x20\x19\x4a\x3d\xeb\x9a\x80\x57\x7c\xf5\x8b\x16\x71\xce\x95\x0b\xac\x33\x95\x6b\xb2\xce\x9f\xc9\x5c\xbb\x85\xe5\xd4\xb3\x57\x2d\x23\xf5\xec\xf2\x11\x51\x32\x57\x6f\xc6\x9b\x99\x41\x3c\x36\x66\x06\xd1\x9d\x0d\x55\x7a\xf7\xbb\x14\xaa\xf4\x2e\xf3\x3c\xe6\x60\x4d\x72\xa5\x51\x0e\xd6\x22\xef\x35\xe6\x60\x4d\x97\x90\x1a\x8e\xef\x39\x7b\x69\x20\x89\x9a\x9e\x3e\x0d\x27\x74\x1a\x19\xe7\x3c\xeb\x5e\x66\x28\xf3\xe2\xf3\x87\x50\xe6\xdd\x67\x43\x4a\xf7\xae\x37\x02\xb4\xee\x3d\x57\x57\xc5\x4e\x55\x97\x71\xa5\xc4\xea\x23\x96\x79\xb1\xb0\x03\xa1\xcc\xd3\x25\xda\x74\x93\xbd\x91\x6d\x5d\x30\x96\xb9\xa5\xaa\x50\xbb\x27\x3f\xcb\xa0\x76\xef\x59\x1c\x05\x7d\xdb\xad\x1f\x8e\x9b\x11\x7c\x75\x85\xd3\xb9\xbd\xc8\x1d\x96\x79\x60\xbb\x1f\x74\xd4\x90\xfb\xfe\xb9\x19\x45\x55\x97\x01\x7d\xd6\x6d\xc9\x19\xd0\x89\xcb\x83\xfb\x40\x40\xd5\xe2\xaa\xc1\xaa\x06\x91\xe6\x42\x94\x83\x19\x64\x8b\x3c\x52\x03\x1e\xed\x49\x06\xd1\x01\x8f\xf6\x2a\x2b\xfa\xb8\x89\x47\xba\x54\xa9\x4b\xaf\x6e\x86\x09\x65\x75\xa9\x49\x97\x2e\xdf\x36\x66\x94\xed\x59\x7c\x9a\x74\xe9\xf2\xd3\x61\x46\xd9\x9e\xc5\x19\x40\x97\xde\x73\x71\xab\x1c\xb9\xf0\x83\xc1\xc6\x93\x4e\x00\x95\xe9\x5d\xaf\x66\x26\x94\x2d\xf2\x66\x63\x42\xd9\x9e\x8b\x07\x70\xb3\xd0\xc3\x43\x98\x4d\xef\x16\x94\xe9\x66\xd5\x6f\xe2\x99\x64\x51\x37\xf1\xcc\x42\x9e\x9b\x78\xa6\xd3\xa2\x38\xe5\x3a\x57\xd0\xb4\x2b\x3e\x69\x67\x26\xda\x9e\x75\x3c\x3f\xc4\x1d\x13\x96\x0f\x58\x63\xeb\x60\x98\xa6\xb6\xc8\xf7\x92\x79\x6a\xbb\xb5\x50\x1f\xe6\x87\xd4\xc0\xa1\xe8\x0e\xb1\xff\x0c\x30\x2e\xdb\xbf\xa0\x9e\xfb\x69\x04\xbc\xf0\x25\x02\x84\xf8\xe2\xe5\x50\xa7\x1f\x12\x6b\x26\xad\x7d\x86\x46\x3c\xaa\x6e\x14\x67\xbe\xb9\x0c\x67\x5e\x78\xfc\x11\x1a\xe9\x5e\xf9\x10\x8d\xc4\x39\xc0\x8b\xbe\x67\x5d\x32\x1f\x2a\x7d\xc2\xcd\x80\x57\x1a\x6e\x15\xe6\x1b\x72\x72\x60\x0e\xdb\x53\x98\x04\x66\xb4\xa3\x19\x53\xdc\x71\xb9\x2a\x06\x27\x74\x84\x57\x7d\xb6\x9e\x07\x11\xc5\xb3\x19\xb0\x8f\xf6\xdb\xd0\xb9\x71\xfc\x9e\xff\xd0\x4e\x4f\xbe\x1a\xf1\xa1\x65\x85\xc8\xfa\x87\xde\x3f\xa2\x07\x50\x96\xf7\xfc\xd4\x24\x86\x0d\xb7\xc3\x18\x3b\x98\x3f\xf3\xdd\x76\x66\xdc\xe9\x4c\x69\x5b\xf5\x8a\x54\x4a\xdb\x32\x86\x0b\x11\xed\x9e\xb4\x73\x21\xf6\x77\x65\x24\x8a\x03\x71\x8a\x86\xb0\xfe\xd5\x5d\xc0\x29\x99\x07\x8e\xf9\x6e\xbb\x9c\x1c\x98\xee\xf6\x74\xe1\xaa\x38\xc6\xcd\x85\x38\x0b\x5d\x1d\x52\x16\xca\x70\xd3\x5d\xa9\x71\x2b\x27\xb5\x2e\xde\x47\x83\x34\x6f\x41\xeb\xee\xe7\x2f\x33\xe5\x96\xeb\x69\x07\xe4\x28\xbb\x26\x96\x6a\x68\xc6\xb8\x64\x64\xda\xb3\x2e\xee\xdb\x34\x84\xe7\x86\xdb\x64\xa2\xc0\xa2\x32\x08\x89\xe4\x9c\xb2\x2e\x8a\x90\xfd\x1d\xd4\x61\x4c\xde\x71\xa0\x37\xae\x78\xb7\x82\xf9\x7a\x4a\xe4\xcd\x27\x77\x71\x25\x6e\x8d\x96\x86\x4e\xef\xf2\x1a\x5b\x0c\xa1\xcd\x20\xe9\x07\x2a\x48\xa1\x97\x04\x55\xec\xbe\x5b\x41\x42\xb3\xa7\x26\x44\x18\xc5\x35\x07\x3b\x0c\x81\xf3\x3c\x53\x8a\x00\x4c\x7e\xb8\x08\x3b\x3a\xdc\x26\x4e\x94\xee\x14\xa6\xe6\xad\xcc\x84\xd5\x99\x9a\xf7\x14\xba\x0f\x4c\xb1\x7b\x16\x9c\x22\x39\x3e\xe6\xe6\x35\x17\xa1\xd4\xbc\x8c\x86\xdb\x99\x9a\xf7\x54\xd5\x78\xa0\x0a\x91\xea\x9e\xa9\x79\xb3\xe4\x2b\x0b\x0e\xf9\x3d\x6b\x89\x13\x8f\xa2\xb6\x3b\xc9\x04\x4f\x35\x17\xd7\x46\xb3\x82\x88\x4a\x86\x1b\x0b\xd1\xb7\x7b\x1e\xea\x8f\xb4\x5f\x1b\x05\x1d\x7b\x96\x63\xed\x82\x8a\xbd\xf6\xe4\x56\x70\x4f\xce\xac\x59\x40\x26\x29\xbd\xe9\x4a\x90\x6e\x48\x55\xcb\x24\xbe\xa9\xc8\x49\x6f\x41\xc7\x5e\xe4\xde\xb6\x12\x99\x01\xb2\x18\x4c\xdb\x7b\xf8\xad\x2c\x30\xe1\x79\x5b\x04\x71\x6d\xaa\x41\xd0\x65\x9d\x05\xe6\xed\x2d\xb3\xba\x21\x44\xa6\xe2\x1d\xb2\xa8\x64\x97\x78\x63\x65\x48\x29\xa4\x8f\x66\xa6\xde\x2e\x75\xf0\x52\x14\xed\xa9\xef\x10\x21\xb1\xe4\x1f\xe6\x08\xe8\xcc\xd4\x3b\x5b\x77\x33\x54\x5d\x7b\xe4\x50\xa4\xcb\x5a\x71\x65\x66\x69\x2c\x1a\x0d\xc4\x0b\x43\x67\x11\x8e\xee\x85\x51\x27\xbb\x72\xfa\xb6\x64\x08\x21\x2e\xba\x26\x2c\xed\xf8\x70\x21\x1e\x5c\x45\x93\xa2\x6c\x57\xa7\x01\x0a\xf0\x52\xbd\x18\xbc\x42\xc5\x52\xac\xcc\x2b\x54\xdb\x01\x6d\x74\x96\xfd\x97\x92\xf8\x96\x49\xf6\x7f\x41\x1d\xdd\xf3\x03\x21\x30\xcb\x03\x11\x1f\xc8\x0d\x2d\x3a\x9a\x5f\xea\x43\x5a\x65\x49\x97\x17\xb5\xca\x0a\x8a\xa0\x2c\xbe\xb2\x91\x67\x9e\xde\x2a\x6f\xa4\x55\xf8\xa6\x7e\xca\x06\x84\x01\x21\x68\x82\xe1\x33\x04\xce\x44\x66\xae\x4c\xe2\x9b\x15\x0c\x85\x69\x7b\xc7\x14\x76\x16\x06\xb1\x17\x49\x87\x46\xb7\x33\x3b\xd7\x81\xa0\x29\x4f\x86\x60\x48\xeb\x36\x69\x81\x10\x2e\xe4\xb5\xe5\x09\x23\xc8\xac\x6c\xcf\x17\x7c\xbb\xb3\xde\x0d\xcc\xa8\xdb\x7d\xc4\xa1\x97\x4d\x93\x2c\xe5\x2a\x34\xeb\x0b\xe1\x46\x21\x37\x4c\xe9\xc7\xaa\x3c\x0e\xcc\x24\x75\x40\x50\x43\x3e\x80\x17\xb4\xad\x35\x69\xe3\x2a\x19\x55\xad\x70\xe5\x82\xcb\x55\x8c\xf9\x76\x6b\x7b\x9a\xa1\x91\x87\x9b\x01\x6e\x8a\x38\xd6\xe0\xa4\x54\x93\xcf\x9f\x28\x06\x21\xea\xd6\xac\x2a\xa9\x0a\x39\x4c\x26\xa6\x35\x83\xc9\xe4\xb3\x55\x6e\x01\xcc\x36\xdb\xe5\x6a\xc1\x8c\xb2\xbd\x5c\xea\x50\x96\x12\x1a\x37\x6f\xed\x18\x06\x3f\x54\x43\x00\x42\x22\xd8\x2e\xa5\x3d\x33\xb8\x4e\xe9\x4f\x56\x0b\x78\x30\x93\x9f\x63\x1e\xd6\x22\x25\x35\x73\xad\x76\x79\x3c\x2d\xa9\xfe\x92\xcb\xde\x68\xd3\xdf\xe1\x61\xa8\x81\x36\x72\x42\x8a\x06\xc3\xcc\xab\xdd\xc8\x00\x5d\x5f\xd7\x73\x73\x41\xd7\xd7\x65\x80\xbc\xe0\x32\x9d\xea\xe5\x56\x61\xb6\x2e\xdb\x44\x26\x5b\xed\x7a\x0b\x33\x9d\xea\xa9\xea\x76\x0e\x15\xd1\xc3\x80\xe9\x54\xbb\x8c\x48\x16\xf4\x82\x9d\x69\x2f\x3a\x13\xa8\xce\x4b\x2b\x4c\x5d\x5f\xbd\x44\x29\xe4\xeb\xac\x43\x04\x5d\x5f\x97\x87\x0e\xf3\xa7\x76\xd9\xa6\xaf\x06\x91\x8e\x84\x28\xcc\x9f\xda\xe5\x29\xc6\xf4\xa9\xa7\xd1\x10\x08\x5d\xa7\x58\x08\x46\xe3\xae\xf2\xd0\x61\x02\xd5\x2e\xb3\x08\x25\x50\xad\xf2\xa6\x51\x02\x55\x23\x35\x92\xa4\x76\x6f\x00\xb3\xa2\x1a\xfd\x3a\xf3\x91\x4d\x43\x70\x7f\x14\xda\x42\x9d\xd7\xe5\x2e\xb5\x3a\xdd\x2f\x3d\x36\x3a\xac\xe4\x1f\x3b\x90\x2f\xe8\xdd\x7a\xf1\xb8\x99\x3f\x47\x3c\x0c\xd4\x6e\xa9\x4a\x2d\xb1\xa0\x77\x8b\x5f\xab\xa2\xc7\xa7\x2a\x37\x4e\xec\x1e\xf4\x6e\xdd\x84\x0a\x7a\xb7\x69\x82\xdb\xb9\x71\x42\xf1\x8e\x60\xb6\x3d\xb9\xec\xd0\x7b\x99\xf4\x31\x2d\x6a\x2f\x5e\xb6\xcd\x93\x49\x64\xa0\x66\x4d\xc1\xb8\x0f\xc8\x46\xbb\xa0\x05\x68\x08\x82\x89\x95\x0e\x11\x15\x64\x72\xf4\x59\x50\x90\x4d\xe9\x61\x17\xf5\x63\x12\xd1\x2f\xe8\xc7\x52\x95\x87\x2b\xf3\xa9\x26\x86\xc4\xeb\xcc\x92\xda\x65\xdb\xc1\x64\xa7\x39\x35\x43\xf0\x7e\x15\x6a\x0c\x1e\x14\x31\x1f\x83\x6e\xaa\xd5\x10\xb7\x5b\xdf\x41\xa2\x20\x33\x8b\x85\x58\xdc\x53\xe6\xff\x8b\x1e\xcc\xb2\x36\x5d\x70\x60\x4e\x55\xd6\x13\x4c\x67\xda\x65\x26\xab\x74\xa6\x35\xe9\x4c\x41\xb7\x35\xa7\xf8\x2b\xa8\xb6\x66\x52\xab\x88\xa9\x1d\x9e\x05\xb4\x59\xa9\x6b\x69\xa0\x85\x9a\x7a\x15\xad\x49\x73\x91\xa6\x36\x91\x06\xbe\xb9\x07\x6a\x84\xc5\x31\x4f\x05\x9b\xd2\xf4\xe1\xed\xeb\xb0\x0b\x0b\xde\xbe\xa7\x30\x04\x16\x50\x2d\x57\x05\x4a\x57\x43\xc0\xbe\xa4\xc5\x81\x47\x6f\x92\xa1\xdc\x82\x6e\xa9\x9b\x88\x50\xb7\x54\x65\xd2\xad\x9c\xa5\xd9\xcb\x81\x1b\xbd\xf8\x43\x08\x74\x65\x30\xb0\xe6\x39\xfd\xb3\x25\xd7\x04\x82\xf3\x8d\xba\xe8\x79\x2b\xab\x93\x45\xcf\x5b\xef\x1b\x55\x4b\x0f\x45\x0f\x1e\x77\x75\x4f\x7f\x5a\x8f\x3b\x26\xc9\x5d\x16\x84\xe0\xdc\x22\x4c\x81\xeb\xc5\x04\x3d\x78\xa2\xf5\x2a\x0a\x7a\x4e\x8a\x68\x41\xd1\x93\xaa\xa4\xe2\x2b\x78\xdc\xab\x9b\x81\x05\x9d\xc6\x16\x5a\x7f\xb1\x50\xc1\xe7\x8c\x56\x0a\xf1\xa8\xa7\x0c\x33\x57\xd0\xa1\x5a\x4c\x7b\x50\x64\xae\xcd\x08\x12\x46\x1d\x68\x38\xaa\x76\x09\xd7\xd7\xa2\xab\x31\xa5\x39\x0b\xba\x93\xa2\xc7\xf4\x92\x7e\xa4\xb8\x26\x97\xad\x09\xc2\xb2\xe9\x89\xba\x16\xa7\xcf\x27\xfa\x82\xf2\xa4\xcb\x4a\x75\x2d\x5a\xc1\x75\x43\xa0\x52\xc2\x45\x44\x47\x0e\x99\x35\xad\xc5\xf3\x55\x55\x53\xae\x55\xa2\x52\x50\xad\xcc\x4b\x67\x1f\xae\xa2\x61\x04\x5b\x78\xda\xc9\xac\x87\x39\x53\xcf\x87\x6e\x15\x2b\xdc\xfc\x21\x44\xfd\x5a\xfd\x75\x90\x2f\xa6\x16\x11\xf1\x90\xc3\x0b\xb5\x88\x5f\x6e\x14\x66\x66\x97\x78\x6b\xb8\x71\x0e\x73\x61\x70\x78\x8c\xb3\xdd\x3f\x24\xd2\xd0\x97\x84\x51\x18\xce\x89\x61\x5a\x47\xe7\xc4\xea\xc7\x15\x74\x29\x61\x54\xdc\x08\xe6\xe0\x6d\xdb\xe2\xbb\x55\x26\x4a\x34\x04\x91\xb7\x9f\x82\x18\xf2\x55\x44\x63\x8b\xf2\x27\x41\x9b\x85\x4d\x20\x76\x43\xb8\xb8\xb9\x1a\x22\xbd\x50\x9f\x84\xb7\x1f\xf9\x4c\xa7\xc2\x6f\x2d\x84\x0b\x9e\x66\xd8\xa0\xdb\x98\xf5\x29\xc3\x48\xb5\xa7\x08\xf3\x1b\x46\xd3\x17\x99\x60\x1d\x9a\x17\x67\x28\x9a\xa9\xe8\xbc\xe6\x43\xe0\x75\x57\x92\xc8\x1b\xbd\xee\xcc\x06\xc0\xeb\x2e\x49\x58\xb5\xe0\x75\x57\xa4\x2e\x5b\xf0\xba\xeb\x6d\xb8\x15\xb8\x6c\x79\x68\x48\x98\xe0\x5b\x90\x29\x4a\xe5\x35\xcc\x14\xa5\xa9\x9a\x9e\xc3\x99\xae\x37\x37\xba\x19\x2f\xc1\xcd\xe0\xe2\x49\x2e\x83\xab\x99\x56\x8d\xce\x74\x76\x98\x58\x6f\x1a\x86\x48\x94\xf0\xa6\xf1\x87\x96\x0d\x3a\x80\xc2\x0c\x92\x07\x62\xff\xda\x0b\xea\x00\x92\x6e\xda\x37\xd3\xff\xe9\x0d\x06\xc1\xfe\x94\x15\x1d\x33\x96\x76\x69\xd5\x99\x6a\x34\x3c\x36\x8a\xe0\xab\x4c\x3e\x17\x64\xf0\xf3\x7a\x0a\x33\xcc\x36\xba\x20\xf8\x2e\x8a\x61\x64\x1e\x52\x99\xf2\x32\x0f\x69\x4a\xcd\x35\x3b\x1e\x76\x1a\x37\x9e\x79\x12\x56\x33\x0f\x69\x51\x58\x38\xe6\x13\x9d\xcd\x6b\x81\xf0\x20\xf2\x41\x61\x52\xd0\x21\x7f\x6e\x25\x05\x95\xf1\x07\x73\x82\xa6\x2a\x03\xf9\x05\xff\xb5\xe2\x07\x09\xa4\xec\xd9\x92\x1b\x8a\xce\xab\x62\x47\x30\xd3\x67\x95\xa7\x17\x33\x7d\x76\x63\x8d\x62\xc6\x96\x69\x90\x8c\x66\x15\x04\x2a\xd5\xdd\x0c\x37\x43\x8b\x0a\xb9\x7a\xbd\x9e\xc2\x85\x37\x68\x08\x42\x88\x9d\xe1\x1e\x99\xe0\x4f\xf2\x82\x9b\x2c\x61\x57\x1f\xd0\xab\x34\x8f\x9c\xa1\x60\xe5\xbf\xc5\x04\x9e\xc3\x62\x26\xca\xd5\xab\xdc\x3e\x99\x89\x33\x4c\x6d\x6f\x06\xe1\x10\x45\x83\x40\x3c\x4c\x7b\x21\xc7\xee\x45\x7c\x0f\xe4\xd8\x61\xda\x0b\x51\x75\x98\xbe\x41\x52\x1d\xa6\x92\x37\xb6\xca\x32\x36\x4a\xaa\x9b\xd8\x5c\x48\xaa\x1d\xac\x83\x09\x35\x53\xf3\xf4\xc9\xae\x9b\x0b\xa3\x4f\x58\x4e\xae\x0a\xc2\x20\xb4\x85\xdb\xd7\x4c\x4f\x87\x38\x28\xda\x7f\x4a\xb1\x1d\x81\x62\x7d\xa8\x01\xd1\x4a\x41\x8a\xdd\x7d\x65\x29\x69\xa6\x1e\x2f\x1f\x5a\xe6\x76\x37\xc3\x9c\x72\x5d\x10\x43\xcb\xfd\x16\x5e\x1a\x3e\x60\xd9\x02\x19\x86\x86\x7d\x04\xa9\x72\x02\x13\xfe\xd3\xcf\xab\xe9\x56\x66\x82\x4d\xbf\x16\x21\xe3\x4e\x12\x8e\xaf\x4f\x30\x4e\xad\xa6\x01\xb5\x8a\x2f\x94\x0f\xed\xb2\xb4\x6e\x90\x86\x9f\x0e\xab\x40\x24\x64\x12\xa6\x7e\xc8\x40\xc8\xa8\x66\x41\x1e\x9e\x4d\x8a\x21\xc7\xae\xb2\xa9\x60\xa2\xcc\xae\xe0\x72\xcc\x93\x99\x42\x2c\xd2\x87\x36\x73\x62\x1f\x21\x7f\xee\x16\xb1\x52\xfe\x5c\x15\x6f\x8c\xa9\x30\xfb\xb3\x39\xa0\x85\x55\x8f\x37\x0a\xa7\x65\x43\xb8\x28\x9c\x56\x7c\xe9\xce\x94\x96\x21\x0b\x47\xe6\xa9\xec\x8c\x70\xdf\x99\xa6\xb2\x57\x6e\x23\x33\x51\x76\x19\x2a\x39\x13\x25\xb7\x9f\xf9\x25\x43\xa6\x90\x4c\x2f\xd9\x2b\xaf\x5e\xa6\x97\x4c\x55\x86\x1a\xca\x2f\x29\xf1\x20\xf3\x4b\x56\x29\x9c\x98\x5e\x32\x4f\x72\xba\x9b\x22\xe6\x2a\x3b\x86\x0d\x11\x73\x1e\xcf\x87\x50\x07\x87\x3f\xc4\xb8\x43\xa3\x81\x2d\xc8\x74\x87\x8a\xe0\xdc\x5d\x08\x4d\x51\x73\x33\x88\xea\xc2\x75\xdb\x0a\xdd\x2a\x01\xf8\xbe\x68\xa8\x13\x86\xe8\x47\x60\x08\x4e\x2f\x94\xc0\x30\xbb\x64\xaf\xa1\xf9\x83\xfa\x56\xa9\xb5\x95\x5e\x52\x06\x2e\xce\x2e\x99\x35\x47\x70\x02\xcd\x00\xb6\x2d\xfc\x19\x0c\x10\x2e\x0d\x94\x89\x66\xb2\x1b\xc1\x7a\x27\x97\xbd\xd9\x9f\xbb\xe7\x7b\xc5\xd0\x07\x3e\xf5\x5a\x0c\x06\x1a\x1d\x6a\x06\x4c\x68\x95\x4c\x7f\x5f\x78\x12\xb5\xcb\x55\x0b\x0b\x0d\xc2\xaf\xca\xc8\xc0\xa8\x52\x0f\x84\xf4\x12\x5e\x70\xa6\x2b\x22\xaf\xc3\xbc\x94\x45\xd6\x94\xcc\x4b\x59\x1b\x4f\x0d\xf3\x52\x16\x09\x75\x36\x44\xe5\x55\x4e\x3e\x1b\xa2\xf2\x2c\x3e\x9b\x59\x2a\x53\xad\x5a\x44\x3a\x8b\xc9\xf6\x8c\x69\x2a\x9b\x0c\x75\x98\x7c\xb2\xcc\x6e\x08\xf1\xb6\x84\x8b\x0c\x24\x2b\xc6\x6b\xa7\x20\x29\x7c\x0a\x11\x0b\xe8\xf2\x87\xb0\xf4\xd4\x9c\xe0\x39\xd6\x64\x78\xbf\xe1\x39\x66\x17\x27\x66\xad\x4c\x53\x1b\x05\xc7\xb1\xac\x80\x98\x4c\x5a\x99\xa4\x6f\x60\xd2\xca\x22\x09\x1f\x13\x53\x16\x99\x7d\xee\xc4\x8b\xb8\xaa\x4d\xec\x53\xf3\xca\x70\x9f\xf4\x04\xdc\x69\xc3\xe5\x7d\x1a\x2a\x2c\x54\x1f\xf0\x06\x94\xbf\xcd\xa6\xfc\xdb\x56\xda\x1b\xf2\xef\x36\xdd\x25\x62\xc2\x5f\x5e\x45\x18\xd3\xca\xc9\x7d\x33\x40\xac\xec\x34\x98\x8a\x32\x55\xd9\x6c\x2b\x17\x65\x6d\x3f\xce\xe7\xd2\x95\xa8\x52\x71\x8b\x98\xa8\xb2\x4a\xac\xbf\x21\x46\xb7\xc2\x61\x53\x8c\x5e\x1b\x25\x59\x1b\x62\xf4\x36\xc2\x10\x47\xee\x66\x06\xab\xba\x1d\xa4\xa0\x12\xa6\x66\x06\x07\x6b\xae\xca\x9d\x0b\x41\xb0\x8d\xd1\xee\x30\xfd\xa5\x7c\x85\x37\xa5\xf1\xa6\x05\x59\x88\x33\x05\xc1\xc2\xe3\x32\x04\xfa\x2e\x95\x16\x53\x5c\x66\x85\x30\xdc\x10\xb8\x27\x13\xb1\x4c\x92\x22\x73\x20\x66\xbc\xcc\x52\xf8\x33\xe3\xe5\x29\xd4\x97\x8c\x3d\x29\x9a\x06\x2f\x37\x47\xca\xda\x99\x69\x99\xab\xa6\xc8\x74\x8c\x53\xfd\x43\xe6\x27\x2f\x95\x0d\xc1\xfd\x69\x54\x73\x44\x9c\x03\x85\xcd\x50\xe6\x4c\xb1\xde\x4c\x9c\x99\xe7\x33\x36\xfa\x45\x14\x57\x7d\xe3\x43\xf7\xc1\x30\x07\x1a\x29\xc2\x1c\x28\x34\x17\xf3\x68\xb6\x67\x1b\x81\x8f\x0a\xcd\xc6\x7c\x97\x49\xd1\xaf\x76\x66\x1a\x5c\x2f\x3f\xb9\xc6\xe6\x29\x22\x3c\xb5\x82\x3e\x6c\x38\xb5\x3d\x34\x94\x4e\x6d\x3e\x39\x99\xf6\x5e\xc5\x35\x91\x95\x48\xbb\x08\xd7\xb4\xc2\x44\xf2\x07\x82\xc2\x69\xba\x0c\x5e\xe4\x5a\x0b\xaa\x0d\x24\x56\x60\xd6\xcc\x64\xeb\xc6\x0d\xb5\x41\x96\x9d\xda\xa6\x83\x99\xf7\x14\x3e\x64\x8d\x89\x70\x0f\xc4\x03\xa7\x66\xc0\x41\x74\x77\x01\x7f\x47\x19\xc8\x6f\xba\x97\x49\x15\xb7\x19\xba\x56\xfe\x8e\xbb\x30\xcf\xd0\x53\x93\xe7\x4d\xd4\x07\x5a\x83\x36\x75\xfa\xe0\x24\x96\x15\x97\x70\xc3\x47\x2c\x25\x6d\x1a\x34\x0a\x45\x01\x07\x98\xd1\xf3\x34\xa3\x1e\x81\x43\xbe\x88\x0a\x8d\x8b\x3d\x6e\x3e\x42\xa5\x44\x62\xd6\xce\x6c\xb2\x81\xd0\xb5\x6d\x26\x57\xbd\x01\xb9\xec\x83\xc5\xd0\x48\x45\xb7\xb4\x34\x42\x13\x97\x11\xdb\xb5\xa5\x70\x27\xab\x52\x3d\x33\xf9\xe7\x29\x34\x08\x46\xec\xa9\xca\xc0\x80\x86\x38\xd4\xe1\x4e\x16\x3a\xd1\xde\x30\xa0\xbd\x2e\xb8\xc2\xa0\x38\x42\x30\xf8\x9a\xd5\xea\x5d\x44\xa0\x02\xc9\xca\x76\x11\x85\x13\x0d\xa9\xa2\x70\x42\x23\x68\x3f\xb2\x4c\xba\x36\x3c\xcf\x9a\x02\xae\x30\xa5\x68\x93\x65\xdc\x86\x2e\xa4\xea\x15\xbc\xa1\x0b\x69\xf3\xf9\x0e\xf7\xb4\x57\x87\xa1\x6d\x67\x51\x8f\xf2\xa9\x55\x87\x60\x36\xa5\x60\xdb\x95\xcc\xa6\x6c\x48\x37\xbc\xc9\x9a\x02\x98\x6e\x78\x93\xb5\x49\xee\x92\xd9\x47\xf3\xb8\x5c\x76\xc3\x29\xe5\xc7\x5e\xe4\x4c\x46\x9a\x65\x09\xc1\x5c\xa4\xa9\x8a\xf7\x54\x32\xd2\xe9\x59\x91\x88\x88\x88\x31\xd4\xad\x89\x08\x1d\xc6\xa6\x88\x4f\xc5\xc5\x25\x77\x8d\x5d\xf1\x9a\x6f\x9e\x14\x92\x97\x48\x17\xc5\xcc\xa4\xa9\xf6\xcb\x1f\x36\x34\xa3\x85\x83\x7d\xad\x34\x93\x9b\x2e\x62\xb5\x0b\x39\x2b\xb3\xa7\x35\x2d\x23\x76\x5c\x36\x3a\xcc\x70\x5a\xd2\xe5\x0f\x71\xc6\x9a\xbb\x60\x72\x21\x31\xad\x8d\x3b\xae\x90\x6c\xbb\x61\xc7\x65\xd1\xba\x1b\xa3\xac\x48\x5a\xbb\xdb\x24\x01\xe8\x82\x38\x74\x9d\xeb\x46\x92\x93\xdd\x0e\x53\xbd\x17\x41\xb0\x0b\x0a\x97\x4d\x34\x33\x04\x05\x9b\x71\x55\xa4\x73\xaf\x1e\x00\x1e\xad\xe1\xb2\x17\xab\xba\x10\x94\xba\xb8\xf0\x86\x53\x88\x47\x83\xe3\x29\x52\x49\xf7\xb6\xda\x45\x66\xe8\xde\xa6\xe0\xe1\xbb\xc1\xad\x5e\x36\x44\x1b\x5a\xad\x1c\x3a\xd7\x8d\x44\xae\x68\xad\x10\xea\x4b\x8f\x96\x0d\xad\x56\xd6\x5b\x97\x59\x5d\x93\x32\xcf\x75\xa6\x75\x6d\xf3\xe9\x82\x69\x16\x9f\x56\x81\x2c\xd5\xa3\xe1\x86\xe8\x44\x36\x12\x3d\x31\x44\xd0\x79\xb5\xa9\x5d\x86\xce\xab\x98\x39\x63\x28\x60\x85\x0e\x64\x76\xd8\xac\xe7\xce\x86\x1e\x2b\xc9\xfc\x4f\xe9\x60\xa5\xe2\x67\x3a\xd8\x5a\xbc\xc7\x70\x52\x9b\xd3\x65\x13\x7e\x08\x1a\xda\x41\xc0\x48\x3a\xb8\x50\x5c\xb5\xa9\x9b\x02\xba\xa9\xd2\x85\xe3\x50\x3f\xe5\x10\x6e\x76\x8a\x2c\x64\x99\xab\x4c\xb1\x49\xb7\x6f\xa7\x8f\xa2\x76\xb8\xd3\x86\xb4\xb9\x0c\x49\x00\xbb\xbb\xe0\xb2\x3d\x3d\xd2\xf3\x82\x23\x85\xb3\x5b\x53\x5c\xfb\x4d\x67\xb7\xda\x29\x33\xd8\x5d\x81\xd5\xd5\x07\x6c\x8a\xbb\x16\x8a\x8a\xab\xda\xdd\x65\x20\xe0\x87\xb8\x8f\xae\xad\x71\x33\x1f\x38\x29\x0a\xd2\xce\xa8\x51\x32\xb5\xba\x47\x3a\x59\x9a\xee\x91\x2b\xb0\xbe\x16\x67\xe9\x90\x0b\x62\xa0\x3f\xed\x22\x7c\xd4\x8a\x2c\x5e\x98\xff\x36\xa7\x6e\x08\xaa\xb2\xe6\x66\xc8\x8c\xf9\x3b\x86\x39\xf4\xd8\x40\x8d\xba\xc7\x86\x59\x74\x7f\x07\x46\x41\xcc\x67\x67\x32\x56\xf7\x8e\x0b\x47\xe1\xfa\x98\x61\x37\x29\xa2\xd7\x86\x32\xac\x29\xe7\xc1\x96\x32\x4c\xf8\x35\x98\x67\x51\x3b\xc3\x8c\xba\x0a\xad\xb6\xe1\x3a\x56\x94\xc4\x62\x0f\xde\x13\x5a\xc3\xc1\x44\x19\xe1\x36\x91\x38\x22\xfd\x06\x3a\x3d\x68\x86\xe5\x2e\xf8\xd4\x1d\x86\x06\xf3\xa5\x69\x34\xf0\x41\x36\x87\x31\x78\x6b\x88\x17\x40\xea\xdd\xe6\x37\xf2\xe0\x6e\x0b\xdb\x87\xd3\xae\xa9\x55\x6e\x37\x45\x8b\xcc\xcb\x9b\xa4\xb5\xdc\x03\x59\x34\xb2\x17\x43\x3b\xea\x59\x21\xf8\x89\xa2\xf1\x33\xa3\xee\xfc\xb5\xea\x46\x86\x38\x77\x41\x23\x0d\x37\x0a\x74\x1f\xda\x60\x66\xdb\x0d\x6d\xf0\x60\xfe\x7c\x3d\xc3\x07\x79\x0a\x99\xcc\x32\xa5\x6e\x92\x08\x9c\x29\x75\x4f\xa1\xc1\xf6\xfd\x35\x25\xb0\xdb\xf0\x5e\x8b\xe4\xe1\x6c\xbe\x36\x43\xd0\xe4\x87\x2e\xc4\x3b\xe9\xa9\x0a\x19\xd9\xd3\x23\x8e\x94\xe8\xdb\x60\x4e\x15\xc9\x4f\xa6\x72\x23\x5c\x82\x90\x08\x5d\x38\x45\xf7\x35\x8b\xa1\x98\x36\xb7\xc9\xbc\x6c\x4f\xc6\x37\xd2\x8a\x4f\xf2\x09\x42\xfe\x49\xb5\x8e\x2c\x66\x99\x53\x37\x27\x61\x38\x73\xea\xca\x29\x89\x39\x75\xab\x0c\x2a\x98\x53\xf7\x7c\x58\x04\x72\x73\x0c\x21\x2c\xad\x8e\xc6\x24\x4b\x21\x8a\x0e\x4f\xb7\x2a\x2b\x95\x3d\x29\xe6\x17\x99\x80\xc2\x31\x29\x10\xc5\x96\xc2\xd1\x32\x1a\x28\x1c\xab\x8c\xb6\x37\xc2\x0b\x27\x85\xbd\x67\x8a\xdd\x36\xdd\xe1\xc1\x94\x69\x5e\x14\xca\xc8\xe2\xc7\x36\x75\x91\x75\x14\x83\x3c\xe0\xae\xfa\x82\x63\xbd\x46\x4a\x43\x90\xe9\xb2\x9b\x1f\x7a\x70\x88\xfa\xaf\x93\x3a\xf9\x66\x19\x1a\x0d\xdf\xd0\x4a\x64\xb2\xe1\x21\x97\x25\xcb\x65\x8e\x5d\x6b\x60\xf6\x24\xf7\x29\xbf\xeb\x0d\x35\x66\x96\x3b\xd1\x9e\xcc\xcf\x5a\x5c\x95\x5b\x25\x74\xa4\xa3\x5b\x88\x00\x30\xc9\xee\x14\xb9\x0b\xe6\xd7\x56\x33\xc1\x1d\x17\x2f\x1c\xda\x38\x9d\x55\xe6\xd5\x35\x87\x1b\x3c\xf2\x8a\xe6\xc0\xbc\xba\x45\x71\xb9\x99\x57\xb7\xca\x16\x80\x79\x75\x43\x3a\x20\xe6\xd5\x6d\x32\x84\x62\x7a\xdc\xa6\x90\x89\x3b\x44\x36\xf5\x1d\x82\xd6\xc8\x43\x9d\x29\x68\x6d\xbd\xcc\x14\xb4\x45\xa6\xde\x1b\x7e\x5e\x59\x21\xac\x99\x82\x36\x55\x3f\xaf\x17\x63\x3f\x75\x43\x40\xbf\xe1\x0f\x61\xc0\xa9\xb3\xb1\xc8\xb3\xb8\x51\x88\x08\xa5\x66\x61\x0a\xd8\xa9\x80\xa0\x4f\x0a\x58\x31\x6d\x08\x87\xdb\xa4\x2b\x64\x5e\xd7\xac\x30\x2d\xcc\xeb\x3a\xfc\x6a\x42\x5a\xd7\xf3\xa1\x41\xf6\xa8\x56\xa1\x67\xc9\x3a\xfd\xcc\xeb\xfa\xf4\xa8\x64\x20\xe9\xc7\x9a\x44\x66\x7d\x6d\x32\xfd\xda\xd0\x79\xda\x2c\x6f\x2f\xca\x76\xc5\x6c\x2d\xea\xd4\xcd\x51\x2e\xbe\x9b\xc4\x6e\x2c\xa1\xaa\x66\x45\x54\x35\xd7\xb8\x28\xee\x09\x17\x36\x16\xba\x59\x5c\xa9\xda\x39\xa4\x84\x6d\x53\xc4\x69\x11\x71\xc3\x7d\x60\xff\xa7\xbf\x03\x67\xe0\xa7\x09\x42\xe9\x36\x59\xe2\xed\xad\xfb\x4f\x18\xb0\x15\x8f\xb0\x08\xc2\x58\xc3\x65\x1c\xab\xce\x03\x7c\xdf\x86\x3c\x8a\x36\x7c\xdf\xa6\x65\x71\x0c\xa5\x5b\xfd\x8c\xd9\x14\xf0\x0c\xb7\x83\xc4\x55\xd5\x1f\xbe\xa0\xad\x36\x84\xcb\xc2\xef\x08\x44\xc8\x0d\x05\x31\xda\x5b\x98\x44\x24\x67\x80\xdc\x6a\x56\x89\x11\x72\x15\xf7\x96\xf9\x6b\x4f\xa1\xeb\x22\x40\x73\x73\x21\x44\x75\x7a\xf2\x6e\x7a\x71\x75\x43\x4a\x0f\xa3\x15\xe0\x23\x5f\xeb\x4a\xe7\x3b\xef\xdd\x66\x86\x7b\x51\xf2\xad\x13\xa8\x79\xf0\x96\x15\x25\xdb\x94\x13\x89\x4f\x46\xdc\xdb\x26\x5f\x18\x66\xbe\x3d\x1d\xfa\x43\x18\xf5\x78\xa9\xe8\xa7\xf3\x34\x0a\x39\xd1\x03\xf1\xb4\x88\x04\x2a\xf0\xad\x27\x05\xa2\x2b\x0d\x92\xb2\xe2\xca\x87\x6a\x6f\x86\xad\xf2\x77\xd0\x3c\x99\xfb\xdf\xc2\x47\x71\x47\x5b\xef\x78\xad\x1b\x35\x88\xdd\x55\x27\x08\x90\x21\x38\x4d\x8a\xe4\xc1\x69\x6f\xca\x52\x88\x59\x71\x0f\x8f\xd5\x04\x22\x32\x91\x68\x1c\x82\xd2\x3a\xea\xf1\x7e\x81\xc9\xba\x86\x21\x36\x3a\x04\x41\xf6\x2d\xd4\x40\xc6\x5a\x25\x6c\xed\xcc\x58\x5b\xfd\x4c\x82\x63\x5e\x93\x67\xfb\x46\x54\xda\x29\x9f\xe0\xad\x70\xb2\xff\x2f\x63\x67\x72\x35\x3d\xcb\x34\x69\x57\xda\x04\x89\x99\xcd\xef\x8b\x54\x55\xb7\xff\x26\xf4\x51\xc4\x15\xfa\x96\xcf\xbb\xcc\x03\x02\xc4\x90\x24\x39\x05\xf7\x0f\xe9\x64\x73\x54\x3e\xf6\x79\xe0\x2f\x3e\xce\xc8\xc2\xdd\x2c\xcb\x76\x27\x33\x6a\x70\x67\x8f\x7c\x27\xdc\x59\x78\x8c\xa3\xeb\xc8\x97\x73\x7f\x9c\x56\xe1\xed\xc1\xa7\x2f\xdd\x9b\x71\xed\x90\x7f\x6a\x86\xbf\x80\x8d\x70\xfc\x8c\x49\x4b\xee\x18\x63\xd2\xae\xe8\x3b\x04\x49\xdb\x1a\x97\xd1\x47\x7a\xe1\x7d\x84\xf2\x3e\xd9\xf9\x70\xc9\x37\x8a\x5f\x94\xee\x8d\xe4\x93\xf7\xc7\xf9\xa4\x60\x9c\x5f\x2f\x5b\xda\x51\xb0\xdd\xce\xce\x74\x0a\xd9\xa8\xd7\x6d\x20\x6f\x9b\x05\xff\xfa\xfe\xe3\xfe\xf9\x02\x66\x52\xa0\xe4\xbb\x00\x1f\xff\x02\xc1\x19\x4a\x0f\x33\xee\x66\x45\xbe\xd5\xec\x68\x47\xbe\xb5\xfd\x1f\x5c\xa8\x6f\xa7\x9f\x25\xc1\xae\x11\x61\x3b\xf9\x57\x41\x84\x6d\xe0\x0b\x1a\x11\x76\x65\xe6\x6c\x69\x6f\xbb\xe4\x4b\x21\x5d\x73\xe0\xbe\xf6\x9a\xde\xa9\xaa\xf4\x2d\xb0\x7c\xc5\xbe\xed\x13\xee\xa3\xd8\xb7\x45\x4c\xb6\x41\x5f\xcf\x86\x4b\xa9\x51\x5f\xfb\x86\xc5\x7e\x7d\xe0\x76\xcd\x97\xca\xfe\x77\x84\xd2\x0b\x73\xe7\x43\x21\xe2\x9e\x69\x95\x3c\xae\x0c\x40\x7a\xb3\x68\x1c\x0d\x01\xdb\x70\xb7\x35\x06\x6c\x27\x45\xf6\xad\xe0\xb7\x1d\x2d\xaa\x2c\xf8\x2b\x66\x39\x47\xbb\xe1\xfc\x1f\x98\xd7\x8d\xc8\x23\x93\xfd\xca\x21\xfb\x19\x79\x85\x69\xb5\xc9\x9e\x20\x1d\x60\x5e\x81\x55\x03\xca\x35\x9b\x43\x46\xf9\x4e\x1c\xd0\xad\x34\xb2\x05\x40\x2a\xe3\xb3\x2e\x52\x03\x1b\x83\xb5\x00\xef\x11\x5c\xd5\xd4\x34\xae\x2a\x5b\x55\x46\xf8\x15\x7b\x82\xe2\xce\x3a\xde\xd5\xc6\x5c\x3d\xdb\xce\x3f\x3d\x07\x77\x13\x15\x6d\x60\xd5\x1d\x65\xfb\xcf\x51\x8a\x88\x91\x3f\xbf\x46\x22\x64\xc8\x28\x8f\x2b\xa4\x41\x57\xfb\x86\x35\xfc\xcc\xfc\xe0\x45\x7f\x06\x18\xe0\x96\xf8\xb3\x0f\x21\x62\x83\x6c\xe9\x3d\x7a\x18\x05\x84\x2d\x1c\x24\x80\x4e\x8d\xe2\x43\x51\x5f\x7d\x73\x4e\x48\x6e\xfa\x96\x75\xa5\x5c\xe0\xbb\x6d\xbf\xa9\x94\xdd\x8a\x3a\x0f\xf5\x53\x7f\x0d\x4a\xe7\x9b\xd7\xa6\x33\x9d\xe2\x2f\x0e\xe6\x29\x31\x38\xc6\x3c\x5d\xd1\xde\xff\x19\xe2\x9e\x65\x31\x74\x69\xa4\xd2\x3f\xf3\x2c\x8e\x93\x22\xb0\x56\xce\x88\x22\xb0\x26\xa8\x3e\xf7\x9f\x9e\x5a\x07\xd7\xb7\xb0\x4a\xcf\x7e\xa4\x19\xe5\x11\x23\x23\x29\x58\xa5\xfd\xc8\xb8\x6f\x43\x3e\x31\x52\x09\xe2\xdd\x52\xc1\x5c\xb2\x72\x6f\x0f\xee\xa1\xfc\x10\x5c\x50\x8a\xab\xd7\x04\x4f\x23\x92\x9e\xdd\xa9\xda\x1f\x52\xe8\x67\xba\xdb\xa7\x41\x48\xf7\xb9\x28\x93\x70\xd1\x0f\x3d\x21\x1e\x52\x90\x1c\xba\xf9\xa6\x61\x47\xa7\xa1\x93\x1e\x4a\xf7\xe0\x4c\x4d\xc1\x4b\x1e\x2d\xed\xe8\x58\x96\x14\x8a\x69\x96\x7c\xf8\x71\xd5\xb4\xfa\x95\x7f\x4e\x81\xfa\xb9\x90\x9f\x34\xe6\x96\x0e\xdb\x34\x28\xe9\xf6\xab\xed\xa1\xaa\x5a\xe5\x97\x2f\x6b\xa5\x52\x53\x83\xdb\x94\x3d\xab\xb3\xfd\x2e\x78\x28\xbd\xf6\x1c\x84\xfd\x90\x42\x99\xda\x0c\x55\x2a\x5b\xeb\x4c\x1e\x4a\x5b\xb3\xe6\xc3\x9f\xdc\xcf\xe8\x82\xe5\x18\x6e\x46\xc1\x54\xfb\x9c\xff\x04\x76\x79\xaa\x0a\x48\x6d\x17\x28\x05\x16\xb6\x0d\xa5\x6d\x55\x29\x63\x39\xd6\x09\x79\x8a\x69\x37\xa8\xe7\x34\x38\xd0\xfb\xa1\x94\x76\xa0\x1f\x50\x5f\x75\x41\xa3\x3e\x0d\xac\xbf\x42\x9b\x96\x23\xd2\xa6\x11\x44\x97\xa3\xd5\xa6\x11\x44\xb7\x93\x1e\x4c\xe3\x82\x16\x27\x10\x9f\xc6\x05\x1d\x86\x92\x9d\xc6\x05\x2d\xb6\xc8\x4d\x70\x41\xfb\x79\xa4\x99\x3f\x5b\xdd\x4d\x29\x24\xda\x3b\xfe\xa1\x94\x98\xe8\xa4\xe6\xad\xa0\xef\x83\x0e\x75\x67\xf7\x33\xad\x5a\x7d\x99\xd1\xc8\x96\x36\x5a\x9a\xf9\xba\x2a\xc3\xd1\x85\x5e\x67\x7a\x54\x6a\xdd\xe9\xa5\x91\xa1\x77\x58\x29\xff\x50\x4e\x87\xb3\xa1\xb6\x84\xab\x01\x45\x56\x33\xa8\x9f\x4c\x72\x94\x89\x15\x39\xe8\x7a\x82\x04\xda\x4f\x7e\xaa\x38\xc8\xf4\x0c\xa5\xe0\x95\x99\x0f\x9d\x18\x29\xd4\x96\xf4\xcc\x60\xb6\x73\x2f\x75\x28\x21\xf7\x1c\x74\xef\x2c\x55\x27\x1d\xca\x9f\xb4\x72\xf8\x1d\xc9\xe4\xd4\x4b\xd3\xc0\x9b\xc5\xf0\x5f\x13\xdc\xcd\xc2\x89\x36\xee\x66\x3f\x33\x6e\xb9\xd2\x0f\x4e\x9b\x71\x37\xbb\x31\xaf\x26\xc0\x9b\x27\xa7\x56\x68\x9a\x23\x0b\x25\x13\x28\xce\x40\x0f\x65\xfd\x01\xff\x24\x5b\x46\x3f\x33\x8b\x72\xc2\xb7\x65\x63\x1a\x69\x13\x04\xf7\x87\x32\x52\x9a\xcb\x2a\x2b\xb3\xa1\x84\xb8\xcc\x5e\x70\xea\xce\x36\x53\x53\xb1\x8a\xa3\x43\x29\xac\x6b\x4d\x28\xf1\x9e\x93\x7d\x2a\x8b\xe8\xb0\x59\xe1\xa1\x1e\xde\x9f\x59\x54\xc8\xd3\xb9\x39\x6c\x0a\x79\x2a\x8e\x3f\x9f\xc6\xe4\x3c\xbb\xb5\x50\xd3\xa0\x9c\xad\xc3\x5f\x65\xcb\x6c\x07\x87\x46\x26\xc9\x62\x74\xac\x87\xea\x46\x66\xa3\x1d\x3d\xae\xfd\x62\x9f\x46\xda\xac\x95\x19\x96\xb9\x72\x0c\xf6\x89\xcc\x95\xe5\xa8\x69\xc6\xfd\xcf\xf4\x61\x35\x77\x28\xe5\xbb\xeb\xe9\xc2\x88\xe2\x29\xf3\xe1\x9b\xe9\x51\x08\x60\x83\x1e\x95\xe0\xb2\xc3\xfb\x94\xe0\xb2\x1a\x78\xf6\xa1\x96\x3e\x64\xab\xc8\x24\x59\x76\xd6\x46\x2b\x35\xf8\xd0\xe8\x96\xf6\x22\x7b\x28\xd9\xce\x60\x3d\x0e\x79\xca\x48\x9b\x1d\x10\xf8\x7d\xe5\x9e\x3c\x7b\x39\x52\x28\x38\x8a\x97\xd2\xc9\x38\x27\x94\x73\xcf\x1d\xf9\x52\x53\xd5\xe8\xdf\xae\x69\xec\x22\xe7\x9e\x1c\xcc\x46\x93\x7f\x69\x26\x55\x46\xbf\x12\x2e\xad\x64\x8f\xc3\x6f\xde\xb9\x88\xaa\x3a\xcf\x7f\x33\xe9\xc6\x41\xa1\x43\xeb\x20\x8a\x7f\x5f\xc6\xb1\x31\x38\xfb\x32\x79\x2d\x7b\x81\x4f\x03\x5a\x8e\xc1\x39\xb1\xc5\xab\x97\x96\x42\x23\x5a\x2e\xa8\xaf\x0b\x27\xa4\x4c\x5e\x95\xaa\xf2\x60\x6e\x5c\x3d\xdd\x7c\xa2\x9c\x50\xfe\x70\xa4\x50\x41\x76\x9c\x69\x65\x54\xdc\x6f\x1f\x12\xfb\x7b\xe1\x0a\x17\x32\x65\x71\xf4\xf9\x43\x75\x17\x32\x58\xc5\x60\x8d\x96\xc2\x29\x54\x26\xfa\xf0\xc6\xcd\x04\x18\xc1\xff\xed\x43\x7e\x5c\x5c\xef\xfd\x62\x70\x29\x94\xb6\x80\x33\xa6\x5c\x8c\xc3\x06\xc9\x69\x28\xca\x61\x23\xdb\x43\xb9\x0b\xfe\x5f\x1c\xa6\x97\x19\xd2\xd3\xca\x54\x39\x65\x1e\x1f\x0e\xa2\x09\x4e\xa8\x4b\xfe\x40\x13\x4a\xe7\x16\xd6\x20\xbb\xd2\x9a\x48\x1e\x46\x94\xec\x05\x06\x3f\xcc\xc3\x7b\x0a\x95\x63\x06\x41\xc0\xa1\x53\x03\x59\x43\x89\x10\x89\x94\x7d\x28\xf9\x02\xb2\x35\x65\x56\x1a\x83\x0b\x7c\x78\xda\xd2\x8a\x26\x6a\x50\x51\xa8\xb7\x2d\x8d\x98\x13\x57\xa6\x74\x30\x33\xa9\xda\x5c\x18\x52\xdb\x8f\xad\xa1\xd4\x82\x63\xc0\x60\x04\x21\x39\x17\x67\xd1\x10\x92\xe0\x5c\xcc\x65\xa3\x0f\x70\x21\x0f\x79\xea\x17\x0b\x94\x47\x40\x9f\xd3\x69\x64\xd8\xe3\x02\x98\x9c\x0b\xd6\x38\x9d\xfe\x85\xa5\x51\x1a\xc0\x65\xf0\x8e\x09\x52\x64\x0f\xc3\x73\xd0\x93\x93\x9d\x3e\x94\x22\x2e\x39\xfe\xb2\xe5\x2c\x2b\x92\x1e\x4a\xbb\xa8\xa6\x99\x3f\xad\x14\x14\x93\x1a\x4a\xe9\x06\xb8\xfc\x64\x9f\x99\x13\xae\x39\x0d\x81\x5e\x43\x29\xbd\xd9\xc8\x77\x8f\x18\x74\x70\x31\xc8\xae\xb2\x8e\xfc\xae\x67\x91\xc3\x07\x14\x64\x49\x4d\xed\xe8\xca\x51\x50\x24\xd5\x6e\xf9\x25\xa6\x98\xcb\x77\x39\x50\x1a\xf1\x75\x39\xff\x3f\xc7\x76\x19\xeb\x14\xc6\x2c\xf8\xc3\x15\x29\x70\x59\x28\xae\xec\x45\xe7\xe5\x1b\x08\x22\x8b\x5d\xb4\xa0\xb6\x33\xe3\xa4\x50\x26\x76\x2e\x38\xe3\x16\xf6\x76\xa4\xee\x47\xee\x57\x0c\x47\x01\xb7\x3d\x65\xcf\x06\xdc\x9c\x0c\x83\x0d\xf6\x8c\xc6\xd1\xb7\x5c\x4c\x4a\xa7\x77\xce\x33\x8d\xc8\xf5\x13\x41\x53\x66\x85\xbd\xd3\x88\xdf\xe6\x69\x5f\xf1\xa5\x67\x9a\xbc\xe5\x23\x9b\x9a\xce\xee\xc3\x5a\x28\x70\xaa\xda\x63\x77\x1a\xb2\x70\x3e\x2f\xe5\x7f\x72\xe9\x65\xc0\x7f\x3e\x74\x18\xd5\x71\x86\x5a\x4a\x76\x13\x4a\x33\x01\xe7\x93\xa5\x62\x74\x36\xa2\xf2\xec\x8d\xce\xc5\xe3\xec\x79\x9d\xe9\xb5\x69\xa2\xe7\x94\xc8\x34\xb1\x1b\xb3\xad\x88\xab\x76\xb0\xf5\x1d\x71\xd5\xb3\x85\x0d\x45\xb8\xcf\xb4\xea\x3f\x66\xdb\x6c\xa7\x73\x83\x49\x3a\xf1\x5e\x6f\x35\xe3\x51\x36\x5f\x56\xdf\xd1\x59\xbd\xb1\x37\xb7\xa3\xe3\xb8\x17\x15\x9d\x55\x32\x73\xdb\xa9\xcf\x46\x28\x41\xb9\x75\x46\x2e\x7d\x40\x6f\xef\x87\xe2\x61\xec\x29\xd9\x4a\x46\x1b\xe9\x42\x89\xff\xd8\xef\x5b\x89\xd0\x2a\x6f\x10\x65\xda\xab\x27\xc2\xb4\xb1\x09\xc3\x96\x95\x5a\xaf\x2e\xb6\x94\xb0\x09\x57\x76\xb4\x03\xc0\x16\x57\xcd\xe5\xbc\x04\x2c\x3f\xa9\xf4\x98\xc6\xcb\xcf\xd5\x9a\xb2\x5b\x65\xa1\x3c\x8b\xf0\xfa\xcb\x3e\xda\x33\x8d\x7a\x16\x39\x60\x97\x73\x29\xc2\xa5\x84\x5c\x38\x1a\x0f\x84\xcb\x59\xaf\x39\xe0\x97\x13\x1d\x0e\xca\x9c\x5b\x8f\x29\x95\xf9\x63\xe5\x8e\x32\xe4\x5f\x39\x52\xf6\xfd\xbf\xff\xd7\x23\xf8\x5c\x16\xc3\x1a\x92\x87\x6c\x23\x67\xae\x6c\xd9\x46\x7a\xa4\x22\xdb\x3b\x22\xf8\x5c\x09\x6d\xa0\x0f\x3d\x89\x22\x41\x5c\x38\x1b\x7a\x6e\x64\xb6\x58\x0b\xc1\x53\x56\x8b\x9e\x2e\x6e\x0b\xcc\x5c\x0b\xb2\x5a\xf4\x8c\xfb\xc6\x2b\x35\xdf\xe9\x64\xc0\x78\x65\x7b\xe8\x91\x66\x64\x7a\xe8\xb9\xe8\x0d\xce\xd7\x3b\xcb\x6d\xdb\x43\x1e\x1a\x36\x3d\xf4\x9c\x22\xd9\x1e\x7a\xee\x76\x59\x10\xce\x05\xaf\x11\xc8\xde\xd9\x3b\x8f\x09\xe5\xf6\x2b\xf5\x6d\xd5\x5e\x83\x69\xd5\x5d\x32\xab\xb2\x28\x9c\x9b\x5d\x6b\x8b\x42\xde\xb5\xd2\xfd\xf7\xcc\x94\x74\xff\x3d\x7b\x51\xba\xff\xb3\xd7\x94\x09\x76\x8d\xa5\xb9\x9d\x95\x80\x77\xa5\xec\x02\x3d\x72\x87\x73\x02\xbe\xff\xa4\xb8\xd0\x9a\x19\xbe\xfd\x87\xfc\x93\x5c\xbf\x72\xd3\xdf\x5e\x52\xae\x13\x99\x0c\x7a\xae\x68\x99\x0c\x4a\x67\xb9\x65\x32\x58\xff\x2b\x93\xb2\x6f\xa5\x95\xaf\x32\x47\xbb\x3f\x1b\x10\x7a\xa7\xc3\x8f\x97\xbb\xa6\xb0\xb8\x70\x43\x7a\x34\x15\xea\x12\x95\x32\xdd\xd7\xec\x68\x59\x10\x7a\xee\x96\x8f\x05\xf4\xce\x4d\x6b\x13\x42\xa4\x09\xe7\xf6\x2b\xfc\xbe\x52\xfb\xf5\xdc\x91\x86\xb9\x9b\xf3\x3f\x70\x69\xe7\xfd\x3b\x47\x9a\xd1\x7e\xcb\x3f\x4a\x37\x11\x31\x5f\x76\x89\x9e\x9b\xce\x30\x77\x79\xf1\x0b\xca\xae\x0f\xee\x32\x19\x22\x6a\x1e\x2b\x1f\xb2\xec\x84\x72\xa8\x4a\xbe\xfb\xe8\x3b\x86\x4d\x7e\x67\xc4\x3c\x59\x22\xea\x66\x9b\xca\xd6\xd0\xed\x07\xf1\x50\xc2\x05\xed\xa1\xba\x3f\x64\x16\x8d\xe3\xdd\x99\xc5\xdb\xd1\xa6\xf4\x21\x8d\xf5\x68\x29\xd3\xbe\x44\xd0\xfb\xf8\xad\xdc\x91\xdd\x3f\xb7\x94\x71\xec\xfd\x8f\x01\xc0\x57\xaa\x1a\x46\xdf\x6b\xf1\x65\x33\x20\xcc\xd8\x2c\x11\xf5\x87\x10\xf2\xd6\x84\x83\x09\x20\x6f\x85\x9f\x7c\x7d\xbe\xb9\xb0\x15\xc5\xd7\x07\x2f\xe0\x2f\x47\x18\x0e\xaa\xfc\x7c\xa3\xf2\x53\x5f\xaf\x37\x57\xa6\x82\xfa\xfa\xe0\x36\x51\xee\xbc\xb9\xd2\x85\x45\x92\x8e\x66\xee\x6b\x18\xfb\x33\x85\xfe\xc5\x7c\xa8\xd5\xe0\x8e\xc0\xb6\x30\x53\xf6\x73\x33\x03\x52\x07\x93\x95\xfa\x02\xf1\x10\xca\x03\x47\x6d\xe7\x90\xbf\x83\xad\xa9\xe4\x79\x2b\xcf\x63\x27\xcf\xeb\x03\xdd\x14\xc6\x05\x56\xfc\x4b\xb6\xce\x54\xdd\xae\xca\x2f\x4b\x82\xc9\xd1\x90\x71\x61\x65\xdf\x7e\xad\xb8\x3d\x33\x9c\xaf\x3f\xe4\x47\xe4\x95\x6b\xbb\xeb\x43\xfd\xb9\xd0\xed\xc8\xf2\xb0\xcf\x33\x54\x53\x2e\xee\x13\x6a\xca\xd4\x99\xb2\xe5\x0f\x37\xa4\x52\x5c\x33\xad\xce\xb3\xd7\xc7\x4b\x3a\xd3\x66\xa8\xe7\x3e\x3f\x11\x2f\x84\x44\x37\x4e\xc4\x02\xc5\x03\x96\xa8\x60\x7e\xb8\xda\x76\xa8\xe7\x26\x3c\x59\x0f\x25\xc4\x1b\x27\xec\xfe\x67\x87\x16\x66\xd5\x30\x70\x3d\x92\xfd\xcf\x47\x8e\x43\x26\xf3\xc2\x38\x11\x20\x0c\xf5\xb6\x59\xd5\x9f\x33\xeb\x20\x5e\xfd\xbc\x8e\xe1\x46\xb2\x3d\x94\x4c\xa3\xe3\x01\xa3\x62\x56\x90\xdf\x88\x96\x43\x41\x7e\x23\x0a\x6f\x63\xbb\x9d\xf0\x54\x59\x22\x46\xd4\x7f\xb2\x44\x9c\xef\x71\x74\x58\x5f\x94\x35\x7f\x4a\x81\x79\xae\x7c\xb8\x55\xb6\xa1\x2e\xbd\xab\x3b\x94\xfc\xae\x57\xa8\x9f\x71\x08\x43\x7a\xde\xbc\x6e\xca\x63\x77\x46\xe3\xf7\xe7\xd9\xe7\x88\x39\xe5\xdc\x09\xbf\x97\x9d\x62\x9c\x28\xb2\x9c\x39\xae\x0f\x8e\xb1\x0c\x15\xad\xc3\x0d\x94\x1c\x6e\x9c\x88\x61\x7f\xc6\x46\x18\xac\xd4\x9f\x9e\x3d\x51\x7a\xfc\x59\xd4\xcb\x36\x72\x22\xb9\x73\xfd\x33\xce\x65\x1a\xb0\xed\x3c\xd8\xa9\xca\x1d\x37\x4e\xee\x0d\x5b\x23\xc2\xa9\xb1\x46\xd8\x27\x75\xee\x43\xcf\x45\x34\x49\xfb\x90\xb8\xd1\xed\x4e\x3a\x01\x4c\x33\xb8\xdf\x43\xc9\xba\x58\x42\x49\x01\xeb\xbb\x71\x3b\x05\x9c\x8d\xeb\xd3\x08\x69\x03\x4b\x85\x11\xd2\x2a\xfc\x6f\x1f\x4e\xd6\x77\xa4\xec\x56\xcd\x6d\x4a\xae\x2f\xdc\x22\xfb\xf0\xc4\x6d\xda\x94\x88\x8c\xd9\x64\xcb\x6a\x70\xf6\x99\xc1\xe8\xa1\x85\x81\x61\x1f\xe6\x6a\xf6\x5f\x98\xc6\x3d\x1b\xe8\xc6\xc1\x3d\xeb\xce\xce\x38\x8d\x7b\x36\x30\x38\x80\x7b\xd6\xed\xa5\xf6\x90\x5a\xe5\xcd\x3f\xea\x38\xf4\x59\x18\x90\x1e\x65\x67\xa6\x4a\xf9\xf9\x7a\x7e\xd9\x49\xae\x3b\xad\x4a\xf4\xb6\x1b\xea\x34\x26\x5a\xd9\x2d\x65\x32\x1a\xcf\x50\x0a\xb2\x35\xcb\x05\xf6\xac\xdb\xdb\x69\x6e\x52\xc2\x99\xc7\x6d\x25\x65\xdb\x8e\x09\x9a\x9b\x94\x68\x07\x35\x0d\xda\x3d\xcd\xac\xf7\xe9\x34\x40\x47\xa8\xe5\xc2\xd4\x55\x8a\x26\xf3\x91\x7d\xea\x29\xb4\xfd\x9e\xd8\x27\xab\xc3\x70\xa4\xcb\x72\x24\xed\x04\xbf\xac\x3b\xc9\xfe\x34\x7e\x59\xb5\xc9\x6b\x1a\xbf\x0c\xb4\xa2\xb9\x31\x5c\x34\x06\xfe\xac\xce\x9a\x2f\x25\xbf\x4c\xe6\xff\x74\xae\x4c\xf3\x98\x2d\xfb\xc3\xb9\x32\x50\x89\xd7\x0e\x35\x99\x9b\xec\x69\xcc\xe9\xe9\xc4\x7a\x99\x0c\x6f\x71\xbb\xfa\x4c\x23\x94\x9d\x7d\xb2\x8d\x15\xf6\x55\xec\x34\x38\x0d\x3b\x36\x30\x00\x18\x76\xec\xa9\x9a\x42\x25\xb8\x78\x0b\x2f\x17\x76\x48\xe5\x9d\x3a\x53\x55\x23\x38\xd3\x87\x47\x60\x2e\xb7\x8b\x73\x4b\x9d\xa1\x3c\x8f\x8c\xce\xf3\xb8\x38\x10\xc5\x99\x4d\x4f\xfa\x70\x16\x0b\xe6\x43\x71\x57\xbb\xa6\x47\x67\xac\x3b\x69\x46\xb7\xec\xc1\x79\x90\x62\x7f\x20\xff\x19\x93\x6b\xdb\xbb\x65\x02\x82\xe5\x04\xf4\xd3\x58\x56\xbb\x32\x18\x65\x24\x1b\x85\x56\x8c\x56\x85\xc3\xfa\x34\x5a\xd5\x86\xad\x1a\x82\x6a\x3b\xf1\xd3\x43\xdd\xae\x4a\xab\x4e\xba\x59\xf3\xa1\x7f\xb1\xa5\x93\xe7\x17\x0d\x03\x38\x41\xa4\xc2\x9f\x7d\x1a\x91\x6a\x6c\x98\x85\x11\xa9\x70\xbc\x9f\x46\xa4\x02\x54\x7c\x82\x48\x75\x9c\xa1\xa4\x05\x2c\x8c\xc7\x1a\x52\xde\xd0\x06\xa4\xaa\x33\xff\x2c\xd9\x71\x71\x58\xaa\x1f\xcd\x9c\x8e\x0a\xac\x10\x65\x96\x1d\xed\xd0\xfd\x90\xf2\xf6\x81\x3f\x55\xe3\x0a\x75\x7a\x34\x62\xe1\xf1\x6f\x66\x6d\xec\xa8\xd6\xd8\x1c\x8a\xd2\xd9\x3c\xd3\xb7\xa2\x74\x7a\xe1\xe4\x36\xdf\x56\x6b\x85\x74\x1f\xee\xb1\xd9\xc8\xb8\xd8\xac\x4a\x59\x36\xd0\x2e\x19\x58\xea\xc4\x71\x70\x1a\x59\x6a\xa0\x5d\x32\x3c\xd4\x89\x9c\x6d\x78\xa8\xee\x1c\x00\xd3\xf0\x50\xd5\x49\xa9\xa7\xd1\xa1\x4e\x1c\xca\xa6\xe1\xa1\x2a\x92\xe5\x6e\x3a\xe5\x58\x53\x8c\x07\x35\x27\xcc\x42\x39\xd2\x4e\xbc\x58\xa6\x01\xa1\x6a\xe5\x08\xb6\xcb\x11\xbb\xf4\x21\xf9\xa4\xe5\x1f\x2d\x9f\xac\x9d\x56\x15\xa7\x06\x0b\x16\x5a\xd4\xd8\xef\x87\xba\xf4\x46\xca\x34\x57\xfb\x48\x1f\x32\xc8\x36\x28\x09\x2f\xc8\xd2\xbb\x39\x6b\xd0\x0c\xa5\xe4\x6e\x5c\x08\x0a\x0c\xaa\x95\x0d\xe8\xc0\x20\xfc\xc4\xa6\x61\xa6\xce\x5c\x88\xcd\x02\xea\x3e\xf2\xa5\xd4\x36\x19\x8e\xbd\xb8\x57\xca\xb6\xab\xa6\xd9\xe7\x7c\x3a\x0d\xea\x04\x66\xca\x78\x1d\xd3\x30\x53\x03\x6b\x96\x61\xa6\x4e\x5c\xb5\xe6\x56\x9c\xd0\x70\x52\xd4\x09\xea\x94\xb3\x19\x4f\xa3\x4e\x8d\xb0\x39\x59\x30\x46\x78\xa0\x0d\x18\x85\x03\x89\x01\x63\x73\x94\x65\xc0\x18\x93\x3b\x48\x31\x3b\x75\x32\x70\x85\xde\x14\x83\x19\x4c\xb0\xa4\x50\x5c\x18\x4b\xaa\x1f\x25\x35\xd5\xe1\x4a\x99\x80\x5c\x32\x34\xf9\x0a\x54\x78\xb7\x2c\x1d\x13\x99\x73\xcb\x98\x51\x06\xcb\x4f\x6c\x4d\x86\xed\xe8\x8a\x23\x94\x52\xec\xc0\xff\x6c\x92\x78\xc7\x29\x13\x68\xb7\x07\xd1\x34\x3c\xd4\x89\x85\xc0\xf0\x50\xe7\xbb\x19\x94\x33\x6e\xda\x67\x70\x02\x0f\xd5\x37\x17\x92\x43\x6f\x70\x9d\xd8\xce\x19\x37\x33\x38\x9d\xf1\x93\x32\x25\x82\x1b\xb9\x2b\x06\xa1\x56\x1d\x4a\xa0\x42\x30\x67\x61\x47\x4d\xde\x55\x7b\x38\x07\x01\x17\xe7\xf0\x29\xe6\xb5\x6a\xf0\xa8\x86\xb0\x6c\xf0\xa8\x79\x1c\x29\xf3\x3f\x76\x5a\x55\xde\x24\xf4\xa4\x86\x87\x3a\x7b\x56\x4a\xf8\x50\xf3\x48\x97\x4e\x82\x9b\xc1\x59\x02\x30\x60\xfd\x34\x3c\xd4\x39\x47\x3a\x51\x3c\xd5\x91\xb2\xaf\x9a\x29\x50\x3e\x62\x99\x00\xa9\x3b\xf1\xb2\x30\x3c\xd4\x3c\xb8\x65\x14\x97\xd3\x72\xa8\x1c\x97\xd3\x8d\xb3\xf3\x90\x55\x55\x69\x46\x19\x49\x98\xe2\xe1\x40\xc0\x9a\x8a\x8a\x67\x44\x3a\x90\x19\x66\x86\xe1\x03\xf8\x84\x52\x2b\x88\x4f\xef\x60\xa4\xc4\x1b\xcc\xcd\xad\xa1\x71\xad\xc9\x80\x33\x8f\x7f\xfb\x50\x3f\x55\x75\xe1\x64\x16\x01\x2b\x09\xb5\xd4\xcc\x84\x52\x50\x1a\x12\xa8\x80\xa2\xea\xc8\x60\x04\x66\x5c\x8f\x94\xfd\x14\x3f\x1f\xca\xe7\x9b\x05\x97\x31\x67\xe6\x48\xc9\x96\x33\x0f\x8e\x9b\x82\x7d\x26\x06\x42\xe3\x44\x9d\x67\x09\x65\x56\xc4\xb9\x51\xb4\x4f\xeb\xcc\x94\x8c\x40\x2d\x77\xca\x94\xe0\x5e\x66\x3e\xbc\xa4\x18\x9d\x50\x5a\x6e\x24\x5c\x19\x88\xda\xdb\x05\xbb\x0f\x36\x25\x03\x51\xeb\xec\x62\x19\x88\xce\x5d\x53\x55\x9b\x8f\x7b\xda\x71\x41\xdd\xb9\x7b\x1e\x52\xbb\x8f\xb9\xb1\x2d\xe9\xac\xe9\xf1\x72\xd5\xb4\x23\x53\xfa\x4a\x1f\xc2\x98\xc9\x4f\x49\x81\xde\xd3\xa3\x77\x54\xa1\xe6\xa5\x99\xca\xc0\x2d\x0b\x6c\x1e\x12\xb6\x3b\x1d\x85\xd1\x3c\x52\xd4\x0c\x9f\x12\x34\xd5\x3c\x10\x22\xa6\xdf\x11\x7b\xa7\x55\xe1\x3c\x1c\xe9\xff\x56\x55\x26\xdc\x91\xc7\x5c\x7e\xd3\x3b\xac\x86\x12\x2f\xe2\x46\x95\xc1\xea\xcc\xf2\xcb\x60\x35\xf1\xf0\xda\xb2\x49\xcd\x83\xc9\x50\x72\xbf\x89\x6e\x24\xb8\x55\x70\x77\x60\xab\x5a\xca\xf4\xf7\x56\x30\xee\xa5\x47\xdc\xc8\xae\x55\x1c\xd0\xc4\x33\xcc\x30\x56\xf3\x68\x29\x53\xbe\xc4\xb7\xcc\x83\x59\x50\xca\xc8\x89\x24\x24\x1b\xd8\x3c\x38\x97\x8a\xe6\x99\x38\x8d\x6d\x05\xf3\x9c\x23\xfb\x54\xd1\x3c\x13\xef\x88\xbd\x94\xa8\xe8\x40\x86\x74\x6e\x41\x5c\xc8\xf6\xb2\x3b\x40\xb6\xbb\x2c\x6b\x13\x1b\x9c\x41\xad\x76\xae\x6c\x63\x5a\x45\xba\x58\xe6\x35\x48\x9b\x0a\x03\x9a\x2b\xbf\xaf\xdb\xc5\xf9\x41\x1f\xaa\xba\x0b\x1a\xb5\xbb\x3a\x3b\x53\x61\x40\x13\x1d\x8e\xc1\xb0\x6a\xcb\xd8\x64\x3f\x88\x1c\x20\x4b\xde\xd3\x0c\x13\x6e\x34\x80\x1d\x4a\xa1\xfc\x67\x3e\x54\xfa\xa9\x95\xb1\x7d\xfc\x61\x86\xa3\x03\x96\x9f\x32\x5f\x42\x9c\x52\x18\xd0\x44\xbb\x6f\x9c\x2c\xf2\xc6\x4c\xe3\x64\x4d\xcc\xe1\x5b\xc6\xbb\x9a\xa7\x87\x2c\x74\x7b\xbc\xad\x68\x11\xb3\x33\xec\x0c\xf2\x6e\x22\x59\xe8\x0e\x0e\xed\xf2\x76\x43\x46\xde\xde\x6e\x08\xe9\xc2\xcc\x7a\x3e\x9c\x90\xc2\x49\xac\xa9\xea\x91\x36\x28\xcf\x0d\x7b\x6a\xeb\xd1\x34\xde\x76\x64\x1d\x5e\x10\xfe\x7b\xda\xf4\xfd\xc5\x6d\xb6\x49\x5d\x90\xef\xcc\x42\xc6\xbf\x3d\x3e\x8c\x93\x75\x8e\x4c\xaa\x2d\x7d\xa8\x6d\xb7\xcc\x77\xf3\x18\x29\xf3\x74\x64\xe4\xdb\xd3\xc1\xe8\x94\x2b\x79\x86\x32\xd8\x29\x72\xd7\x56\x30\x59\x36\xbc\x50\xb3\xf6\x78\xa9\xfe\x7f\xff\x6f\x61\x91\x33\x68\xd6\xd3\x05\x3f\x29\xc7\x3c\x94\xdf\x80\x66\x8d\xb7\x47\xf9\xf6\x8e\x8c\x06\x61\x27\x13\x62\x06\xc3\x33\x69\xcb\x2b\x7f\xcc\xb4\xa3\x95\x63\x73\x08\x60\x6b\xe1\x1c\xb2\x95\xdb\x71\xf5\xcc\xe3\x6d\x7c\x3b\xbe\x93\x50\x9a\xe7\xcc\xb6\xd7\x75\x16\x47\x1b\x67\x9f\x69\xf3\x79\x33\xee\x54\x7c\x8e\x22\xbb\xdd\x58\x5b\x23\x62\xb7\xb1\xb6\x1a\x52\xb7\xb1\xb6\xc6\x31\x43\x3a\x4f\x54\x87\xf2\x12\x73\x63\x2b\x08\xab\xe4\xe9\x7d\x39\xe3\xce\x99\xaa\x8f\x2c\xbb\x7b\xfa\x10\x0e\x6b\x4f\x4d\xbd\x1f\x99\x43\xe5\x92\xdc\x9c\x76\x19\x0b\x9f\x1e\x52\x56\x55\x73\x43\xe9\x11\xc8\xaa\x5d\xd2\x7b\x44\x5c\xba\xb6\x20\x83\xb9\xcc\x2f\x25\x54\x8a\x7c\x74\x19\xdb\x0c\xc1\xe6\x02\x17\x88\xef\x9e\xe9\x9d\xe8\xc8\xb7\xa3\xa3\xc6\xc9\x15\x21\x6b\xe1\x3c\xf3\x83\xb2\xb8\x0f\xe6\xfe\x32\xb0\xe4\xc9\xc5\xab\x78\xa8\xb5\xf2\x4f\xb7\x51\x61\x4d\xc9\x3e\xd8\xd0\xfb\x1a\xb4\xab\x61\x86\x30\x66\x57\xd9\xdc\x26\x8e\x5b\x1a\x27\x8f\xf2\xdb\xf7\x3e\x27\x41\x98\x5d\x4f\xe1\x84\xbc\x14\x66\x96\x2f\xbf\x8f\x2c\xbb\x43\x89\xf5\xa6\x15\xa5\x7c\x65\x7b\xcb\x92\xd8\x0e\xee\x72\x59\x12\xcb\x09\xe7\x75\x10\x13\xce\xc3\x5b\x31\x4c\xe7\x38\x91\xba\x6e\x27\x38\xae\x29\xec\x2e\xcc\x97\x46\x3b\x4a\x55\xe7\xcc\x2a\x50\x0e\xb9\xc8\x87\xb7\x1e\x92\x0c\x54\xc9\x69\x17\x8c\x50\x16\xc8\x12\x41\xd6\x06\xc8\x71\xc2\xb2\x65\x81\x5c\x27\xf7\x80\x62\x9a\x9e\x42\x5a\x95\x86\xea\x78\xbf\x6c\x0f\xeb\x67\x0f\x2b\xa6\x69\xcc\x9d\x66\xec\x24\x58\x52\x55\x21\x46\xec\xb0\xdb\x28\x6d\x3d\x1f\xda\xd1\x98\x1e\x6f\x0f\xa7\x86\x7c\x5e\xeb\x33\x6b\xa3\x27\xe8\x44\x98\xb8\xd9\x46\x30\xed\xdb\x50\xb7\xe9\x51\xbc\x7f\x67\x15\xfd\x3e\x69\xa1\xec\x2b\x91\x66\xc4\xec\xce\xcc\xe3\x6d\xcd\x77\x85\xfa\x73\xa1\x49\x5b\x2c\xc7\xc9\x78\x64\xb1\xac\x75\x85\x6a\xea\xa4\x43\x29\xfb\x7d\xcf\x87\x4e\x24\xfc\xef\xdc\xa6\x13\x18\xb3\x8a\x50\x6e\x18\xb3\x81\x43\x8a\x61\xcc\x46\x1e\x85\x1f\x9d\xce\xc9\xd5\xa4\x88\xa8\x31\x53\x13\x54\x5a\xff\xb3\xe3\xa3\xa2\x69\x73\x7c\xd4\xfb\x7a\x96\x21\x72\x84\x33\x1a\x8c\x2c\x8a\x4f\xe5\xfa\x3c\x63\xec\x30\x1a\x59\x6b\x25\x94\x1c\x44\x32\x1d\x52\x4b\xbe\xbf\xec\xa4\x0e\x58\x22\x8c\x22\x56\xe6\xa4\x50\x3e\x5e\xd1\x8a\xca\xd8\x58\x70\x2c\xd9\x1f\x27\x27\xe7\xb4\xc8\xd8\x38\x26\xd7\xfd\x07\x7e\x00\x5f\x71\x06\xd1\x01\x3f\x90\xb1\xf1\x8c\x0d\x61\x7f\xe4\x50\x8d\xcf\xb6\x21\xc6\x1a\x96\x5f\x43\x8c\xb5\x0e\x07\x12\xc2\xd8\x39\x4e\x8e\x8b\xd3\x8b\xce\x91\x0f\xa7\x06\xb0\xa1\x94\xe9\x36\x65\x9e\x71\x38\xe0\x57\xb6\xa6\xf2\x52\xf2\xa3\xe2\x17\x0d\xd4\xd5\x10\xcc\xbe\x9e\x70\x36\x99\x63\x97\x7a\x4d\x99\xe4\xd2\x68\x69\xbf\x3e\x57\xf0\x43\x87\x2e\x45\xd1\xf7\xf5\xda\x44\x47\x2a\xa3\xe5\x98\x23\xed\x68\x34\x25\x7d\xd8\x46\xed\x69\xc4\x10\x08\xb3\x92\x75\x6f\x60\x5d\x35\xa4\x56\x8b\xc9\x40\xc6\xbd\x31\x79\x91\xfe\xac\x57\x81\x01\xc8\xb6\x57\xe6\x0e\xa5\x67\x1f\x53\xaa\xe0\xa0\x31\xd9\xc4\xce\xd8\x39\xe9\x5d\xd6\xbb\xba\xb8\x7d\x6c\xbd\x9b\xec\xaf\x9f\x20\x04\xe6\x99\x32\xb9\x23\xb1\x15\x95\xaf\x73\x45\x97\xff\xf3\x1e\x2e\x2d\x64\xf9\xbf\xff\xd7\x4b\x3a\x94\x22\x2d\x72\xa8\x01\xac\x80\x81\x9a\x06\xb0\xaa\x67\x4d\xd5\xe5\xc2\x02\x29\x07\xf6\x9d\x2f\x9d\xfd\x8a\xc1\x59\xcb\x96\x27\xa2\x10\xac\x6a\x1e\xb3\x02\xb0\xda\x38\xe3\x81\x51\x95\xed\x2e\x4b\x5f\x1d\xbc\x5e\x8d\x51\x05\x2c\xd2\x04\xa3\x6a\x72\x4e\x64\xea\x6b\x39\x0b\x3f\x99\x61\x5b\xcf\x87\x9a\x46\xa4\x9b\x9f\xb3\xbf\x45\x3f\xa8\xd4\x9f\x93\x08\x89\xfd\xa7\x2c\x26\x8b\xe9\x90\x71\xaf\x47\x6a\xf8\x33\x0a\x3e\x73\xac\x3c\x98\x2b\xc2\x4e\xd2\x60\x4e\xa8\x8f\xae\x66\xca\x0c\x20\xc6\x5d\xfc\x27\x59\x0f\x9b\xdc\xfe\x63\xd7\x62\x78\x92\x35\xaf\xe1\x19\xb8\xff\x98\xff\x9d\x76\x9e\x13\x95\x57\xf0\x1f\xf3\xcf\x34\xca\x9a\x57\xa2\x85\xff\xb3\xb0\x17\x0d\x95\x22\x96\xca\xf9\x52\x52\x73\xb2\x8e\xb6\xed\xf5\x96\xd1\x3d\xa7\x2f\x93\xa1\xd0\xd8\x08\x11\x7f\x56\x5d\xb2\x6d\xff\x9c\xb6\x0a\xcd\xed\x9f\x41\xd0\xeb\xf1\xcf\x70\xc4\xa7\xae\xdc\x16\x31\x98\x29\xb6\xa9\x46\xb3\xef\x04\x9e\xc4\x21\x18\x5c\xaa\xe0\x63\x07\xb8\x14\x96\xc5\xeb\x90\xab\x18\x02\xf4\x75\x28\x6c\x16\x1d\x08\xf8\x51\xce\x9a\x32\x8d\x11\x55\x8f\x97\x92\xb6\xc4\x47\xd1\xb8\x4f\x03\x83\xa4\x71\x9f\xaa\xe3\x5d\xa7\x61\x9f\x4e\x10\x1d\x1e\x52\x16\x79\x5b\x3d\xaf\xc3\x12\x06\xbe\xb7\x06\x85\x22\x67\xd1\x43\x89\xdb\xe2\x88\x7c\xc9\x26\xd9\x98\xc6\x8b\x1c\x9d\x38\x0f\x5d\x8e\x6c\x02\xfe\xe0\x21\xc5\x37\x0e\x1a\x12\x18\x86\xb3\xda\x3f\x54\x73\x55\x46\x6b\x0e\x97\x19\xf0\xed\x93\x11\xd8\x4b\x3b\x83\xf5\x56\xc1\xdf\x17\x24\xaa\x79\xa4\x50\x1c\x27\xa3\xd3\x5d\x64\xec\xbf\x79\xc9\x08\x59\xd0\xc9\x5c\x36\x3b\xf2\x80\x36\x66\x55\x75\x32\xe7\x69\xcc\xaa\x66\x68\xff\x69\x94\xaa\x31\xb3\x1c\x96\x14\x88\x9f\x31\x4c\x55\xe9\x59\x55\x4b\x0a\xce\xbb\x3d\x0d\x53\x75\x62\xf7\x31\x14\xd5\x46\xcb\x6f\x28\xaa\x93\x04\xed\xd3\x58\x54\x27\x7a\x56\x63\x51\x9d\xa4\xc0\x9f\x06\xa3\x1a\xf3\x6d\x47\xe3\x39\x53\xd5\xe3\x69\x21\xa5\x9f\xb6\x3e\x03\x4c\x29\xb0\x03\xa6\x31\xa5\x06\x4e\xae\xc6\x94\x3a\xc9\xac\x3f\x0d\x2a\x55\x57\xda\x51\x3a\x22\xe7\x49\x7d\xa8\xaf\xb2\xe5\xd3\x8c\x9e\x74\x2d\xdf\x29\x0c\x8d\x77\x8b\xf1\x9f\xce\x51\x07\x63\x95\x3d\x19\x4e\x6e\xfc\xa7\x42\xbc\xc1\xa5\x58\xab\x56\xd2\xa1\xe5\x86\x93\xe9\xd0\x3b\xa2\xbc\xdf\x29\xbe\x85\x75\x3c\x0d\xd9\xd7\xe8\xc1\x72\x1c\x07\xc2\x26\x4a\x0c\xd6\x97\x4d\x94\xa3\x5a\xe0\xb9\x9c\x6e\xb2\xbd\x94\x92\x4e\xf4\x54\x7d\x18\xf7\x4b\x08\x50\xd2\x8c\xe3\x2a\x9a\x27\x94\x24\x97\x43\xa4\x46\x4d\x87\x7a\x36\x71\x51\x1a\x18\xaa\xce\x16\xca\xc9\x69\x3a\x94\x67\x66\xa7\x1d\xcd\x0c\x07\xa7\xd8\x20\xc0\xcc\xd8\xea\x89\x65\xdd\xb8\x50\x67\x96\xc2\x69\x2a\x07\x8f\xc8\x4b\x69\x2a\x07\x76\x76\x83\x46\x3d\x85\xb4\xea\x13\x57\x18\x80\x4f\x1c\x3e\xe5\x57\xf1\x89\x2b\xcc\x86\xb9\x33\xa6\x3d\x23\x4c\x9d\x4e\xc0\x34\x8d\x30\x75\xc6\xd2\x77\x29\x51\xe5\xea\xf9\x67\x5d\x79\xa8\x82\x8c\x29\x55\x76\x06\x2b\xbc\xa3\x93\xbd\x51\x6c\x85\xe0\xc4\x1b\x6f\xaa\xbf\x35\x8d\xd2\xc7\xc0\x6f\xef\xa9\xd4\xd4\x11\xe7\xc0\x17\x67\xf5\xa9\xf9\x4e\x0c\xa8\xfd\x3b\x21\xd3\x53\xf7\x23\xfb\x79\xbe\xfc\xfa\xcb\x0c\x5c\xef\x91\x1d\xea\xcf\x85\x1e\x79\xb5\xc8\xdf\x38\x81\x20\x5e\xb1\x5b\x94\xb9\xf2\x44\x11\x6c\xc0\xab\xe1\x04\x29\xd3\x80\x57\x85\x70\x2f\xe3\x5d\x9d\x46\xd9\x98\x97\x52\x55\x16\xde\xe6\x97\x2c\xc6\x83\x67\x8d\x01\xae\x0a\x4f\x37\xc3\x56\x0d\x9e\x7c\x46\xad\x5a\xce\x54\x31\x8d\x4c\xb5\x5b\xc6\x62\xd4\xe0\x9e\x32\xa1\x06\x67\x64\xe6\x8d\x35\x35\x95\x4e\xda\x6f\x9a\xab\x7a\x69\x6a\xa8\xea\x54\xa0\x34\x23\x3b\x2f\x4e\x51\x97\x4c\xb9\x05\xf5\xad\x71\xaa\x0a\x46\x8f\x4b\xf1\x54\x1b\x49\x09\x60\xaa\xe1\x2c\x62\xd3\xc0\x54\x05\xf9\xda\xc0\x54\x03\x7f\x0d\xa3\x4d\xcd\xc5\xd6\xb0\x05\xd6\x69\xb8\x1f\x4a\x18\x2b\x9c\x0d\x25\x4a\x1c\x44\x77\x01\x2f\x85\xa4\x72\xc9\x72\x7a\x92\xf9\xfa\x21\x15\xd3\x0e\x2b\x92\xb1\x74\x13\xaf\x79\xc9\x56\xba\xf0\x41\xb8\x64\x2b\x9d\xb8\xb1\x5f\x32\x79\x6e\x74\x3d\xe0\x52\x4d\xf6\x9b\xac\x91\xd5\xc9\xd4\x1f\x4a\x51\x80\x6f\x4d\x45\x01\x32\xdd\xc6\xac\x8a\xff\xbd\x41\xab\x6a\xcd\x5c\x78\x7f\xe1\x8e\x7f\xd9\x54\x89\x1e\xf0\x52\x46\xc3\x8a\xda\xfb\x52\x5e\xc2\x81\x6e\xf7\xea\x56\x5b\x74\xf8\xa4\xec\x98\xf5\xf0\xe3\xf3\xea\x16\x15\x58\xb6\xee\x20\xb5\x4e\x99\x2f\x75\x98\x91\xd1\xae\x06\xd7\x8d\x8c\x93\x03\xc5\x97\xd1\xae\x48\xda\x38\x2f\x02\xaf\x26\xdd\x4b\xb5\xdc\x53\xd3\x21\x2b\xec\xe0\x6e\x59\xbc\x97\x14\x2a\x0c\xaa\xf3\x87\x92\xc5\x77\x09\x35\x5c\x35\x5f\x6a\x34\xcc\x8d\xc2\xb0\x6a\xce\x93\x42\xad\xca\xc1\xa1\x25\x49\x60\x67\xa3\x76\x47\xbe\x75\x0a\x9d\x0d\x83\x6d\x83\x71\xf2\x2d\xdb\x8e\xa6\x63\x6e\x1c\x6a\xe5\x57\x9a\x11\xad\xda\x62\x6e\x86\x53\x88\x72\xa2\x14\x78\x55\xf2\x8f\xc3\x51\x71\x23\x65\x6e\xa5\x42\x7d\xe5\x9f\x99\x9a\x8e\xa0\x19\x50\x5a\x6f\xb8\xcb\xf0\x7c\x0f\x28\xb9\xaa\xe0\x36\x00\xf2\x14\x41\xa0\x80\x4b\xa1\x09\x02\x31\x0a\x47\x9e\x0b\xbb\x9d\x31\x2f\xe6\x25\xc3\xdd\x26\xbc\xc2\x70\x52\x73\xa5\x0b\x45\x5e\x81\x64\xf1\x90\xda\x19\x1c\x0c\x9b\xe3\x6a\x5a\x7d\x66\xa6\x45\x4a\x13\xd6\x54\xe9\x67\xa8\x8f\x9b\x09\xa9\x9c\x9d\x99\x0c\xfb\xf5\x72\x69\x0d\x36\x38\x42\x9b\xa2\xb2\xda\x71\xfe\x3b\x72\xdc\x98\x55\x35\x27\xc3\x11\x5b\x03\x67\xb1\xcb\x11\x5b\x88\xdb\x97\x2d\x79\xb9\x6e\x65\xac\x3b\xd1\x5a\x19\xec\xea\xf9\x30\xe4\x2d\xdf\xbd\x54\xf5\x8f\xec\x74\x22\xe4\x3b\xe6\x5c\x79\xfb\x4a\xb8\xb4\x0c\x7b\x05\x97\xa3\x4b\xb6\xbb\x81\xfd\xfb\x92\x79\xae\x60\xc6\x37\xbe\x55\x1b\xf0\x65\x59\xd9\xc6\x86\xbf\xca\xca\x76\x1a\x86\xf3\xa1\xc4\xa7\x88\xe6\xbc\x64\x65\xab\x27\x87\x71\x3a\xed\x3c\x53\x3e\x7d\xf5\x46\x18\x9f\x7e\x98\xf6\xf4\x71\xb9\x90\x81\x2b\x98\x7a\xb7\x54\xfd\xb8\x90\x7f\x94\x7c\xb5\x5b\x46\xf0\x73\x61\xfa\xfc\x93\x21\x9f\xaa\x52\xbf\xa1\xa8\xbb\xa6\x03\xd4\x33\x00\xbd\x4c\x71\x02\xbd\xa6\x37\x04\xf1\x08\x46\xe3\x2a\xd8\x41\x0c\xb8\x55\x71\x49\x33\xde\xd6\x99\x88\x3e\x03\x6e\x0d\x8c\x1d\x97\x8c\x72\x03\xcd\xf4\xa5\xf8\xb2\x41\x40\xd7\xe5\xfc\x7b\xc4\x6f\x5e\xcb\x2b\x37\xde\x3e\x14\x24\xc9\x7a\x28\xff\x5e\x6d\x88\x66\x4a\xaa\x37\x78\xfe\x5d\xb2\xb4\x9d\x79\x0e\xc9\x9a\xd6\x3a\x67\x7c\xd9\xcb\x0a\xf6\xbb\x8c\x34\x10\x8e\x6b\xe0\x2e\xbc\xee\x0c\xcd\x35\xfb\xa0\x7b\x1d\x48\x82\x81\x0c\xb0\x35\x51\x45\x5f\xcb\x67\x2e\x27\x59\x16\xab\x3a\xe1\x63\x0a\x30\x1b\x91\x37\x97\x53\x6f\x63\x82\x37\xfc\xd6\x20\x8c\xcb\xf0\x5b\xe7\x20\x48\xf9\x5a\x36\x44\xd4\x54\x15\x62\x4b\x49\x1f\x9a\xff\xb7\x47\xaf\xf1\x4c\x3b\xca\xaa\x07\x93\x95\x05\x6b\x47\xda\xdf\xcb\x1a\xa5\x0a\xf5\xf9\xbf\xff\xb7\xd1\x36\x5d\xdb\x6c\x8d\x29\x56\xc2\xbb\x35\xf3\x9d\x5e\x9c\x3b\xdf\x49\xfa\xcd\xa4\x2a\x86\x6b\x47\xbe\xb3\x89\x08\xd3\xde\x25\x63\xce\xc2\x59\xfc\xc2\x98\x93\x77\xa2\x8c\x39\xfb\x1d\x8c\x74\x28\x9b\x6b\x64\xdf\xf6\x24\xa7\x51\x39\x19\x0c\xc2\xef\xae\x7d\xdb\xe9\x3b\x55\xa5\xe0\x99\xa9\xaa\x5c\xb3\x47\x6a\x0a\xb4\x91\x2b\xe6\xb2\x35\x8f\x57\xb4\xc2\xb6\x6a\x5e\xe6\x97\xf9\x4f\x5e\x5b\x97\x5d\x80\x19\xdb\x65\xe7\x34\xb6\x34\x26\x9b\x3c\x76\x64\xb2\x99\x07\x6b\x7a\xf9\xde\x8e\x14\x23\x9b\xcd\xc4\xf4\x73\x29\xc4\xab\x9e\x1c\x86\xcb\x6e\x2d\xac\xb0\xcc\x34\xad\xf7\x94\xc9\xb6\xc9\x92\x5e\xf6\x72\x47\x88\x71\x8a\x3d\x54\xa6\x97\x32\xec\x95\x82\x64\xa0\x0c\x7b\x67\xe5\x86\x53\x86\xbd\x9a\x8d\xea\x0c\x7b\xaf\x60\xa8\x40\xb1\xd2\xce\x7f\x2b\x3f\x8c\x31\x36\x09\x0d\xbc\x2e\x27\x34\xcb\xb8\xed\x3a\x00\xc7\xbb\xac\xa4\x8c\xa0\x76\xd9\x77\x20\xc3\x61\x37\x30\x1c\x79\xb9\xe6\xaa\xba\xac\x6d\x8b\xbc\x77\xd9\xad\x65\xf2\x57\xb6\x10\x5b\xa3\x76\x5d\xc6\x53\x44\x82\xbe\x6c\x21\xe6\x05\xa3\x78\xb3\x1d\x79\xc7\x16\xa4\x33\xb3\x2f\xc5\x0c\x21\x47\x97\x53\xdf\x11\xf7\x7c\x39\xf5\x5d\x63\xf5\x9d\xfa\x2e\x7a\xe8\x4b\x26\xa4\x3d\x5e\x4a\x38\x2b\x5c\x14\x58\x90\x88\x9d\xb9\x6e\x3b\x92\xb2\x35\x6e\xa7\x94\x65\xa6\x64\xd0\xa9\x44\x06\x5e\xb7\x33\x36\x73\xc0\x1c\x36\x56\xb8\x61\x6c\xb4\x21\x8f\xc9\x25\xa3\x4d\x8b\x90\x2e\xb3\x4c\xa9\x2f\xa5\xb7\x1e\x5e\x73\x97\xec\x32\x75\xbc\x1f\x7a\x67\x76\x28\xcd\x37\x77\x91\x82\xc8\x4a\xe1\x64\xdc\xbe\x26\x70\x1c\xbb\xb0\xd2\xf0\x2c\xbb\x15\x1d\x84\x91\xe6\x92\x75\xa5\xe5\x59\x70\x3f\x33\x3c\x0b\x6c\xd2\x11\x5f\x44\xcb\x5f\x36\xae\x8c\x09\x9b\xb6\x75\x25\xc2\xfe\x87\x43\xc4\x2b\x59\x39\xe3\x36\xbf\xff\xe1\x0c\xc1\x8a\x3f\x3a\x43\x28\x7b\xaf\x0f\x13\xbe\x43\x6a\x00\x4c\xaa\xac\x29\x35\x87\x48\xc9\xe6\x26\xfe\xd7\xd7\xc7\x81\x0c\x0b\x66\xf4\xd9\xc6\x39\x0f\x65\xd0\xa1\x54\xed\xfa\xb0\x40\x6d\x51\x74\x68\xff\x8c\x75\x84\x34\x48\x01\x3d\xca\x78\x5e\x10\x29\x3e\x40\xd9\xc0\xb6\x64\x95\x99\x65\x85\x6a\xa2\x1a\x94\x7a\x5c\x8c\xc6\x62\x33\xe2\x17\x46\x99\xc5\x05\x2f\xa3\xcc\x89\x33\xde\xf5\xb1\x1e\x66\xb1\x73\x15\x3b\x36\x71\x64\xba\x14\x3b\x36\xf1\xb2\xb9\x3e\x46\x93\x18\xa9\xf9\xf5\x87\xa9\xea\x91\x7b\xe7\x28\x76\x6c\x66\x3b\x7e\x7c\xc3\xad\x12\xb2\xaa\x90\xb9\x92\xcb\x57\xe1\xfc\x61\xb2\xc9\x03\x4f\x26\x9b\x82\x27\xd3\x85\xc9\x66\x95\xd4\x35\xda\x6c\xba\xf4\x78\x78\x2a\x28\x7a\x6c\x86\xc7\x1b\x12\x6e\x2c\xce\xbc\x62\xc2\x66\x41\x56\x14\x24\xdc\xc4\x14\x67\x48\xb8\x49\xaa\x05\x20\xe1\xc6\xaa\x29\xdc\xc6\x97\x81\xf2\x52\xd6\xd4\x95\x0d\xa5\xa6\xf0\xa3\x3e\x0a\x94\x0d\xfc\x9e\x01\xc5\x9d\x95\x70\x20\xc5\x9d\x35\xf2\xde\x5c\x0a\x3b\xab\xb8\x6e\x5e\x5f\xab\x63\x57\x1a\xd5\x36\xab\x3b\x55\x75\x06\x08\x7f\xbe\xbe\x32\xf8\x9e\xf9\x2b\x7b\x70\xac\x96\x2e\x35\xcd\x6b\xfd\x9b\x5b\x7f\xad\x80\xc2\x45\xfd\x92\xd9\x6a\x96\x95\x11\xc8\x56\x7c\x66\x78\x1f\x57\x0d\xa9\xf3\xcb\x81\xfd\x7a\xbf\xf2\x96\xf9\xfa\xd5\xb7\x60\x0a\x32\x6a\xcd\xc2\xf1\x95\x6d\x6a\x4f\x78\xe2\xd7\x7b\x29\x7f\xe9\xbd\xc4\x79\x55\x70\xdb\x8c\x94\xa5\xe0\xb6\x49\x52\xa4\xcb\xc1\x6d\x83\xe4\x17\x06\xbb\x2b\x8d\x87\xc6\xd7\xb2\x13\xa9\x60\x40\xbb\xab\xe9\xd1\xb2\x13\xf6\x18\xa3\xdd\x4d\xec\x08\x97\x6c\x5c\x15\x4f\xd3\xeb\xcb\x56\x42\x06\xfe\x01\x71\xbe\xa1\x9e\xf1\x10\x5b\x60\x5c\xba\x95\xcb\xdb\xb8\x74\x63\xcd\x7c\x68\xfc\x13\x28\xb9\x82\x65\x38\xbf\xed\xc4\xca\xa1\x94\x27\x86\x73\xf7\xdb\x9c\xed\x02\x29\x59\x8a\x6b\x48\xd9\xf2\x26\x91\x07\xd7\x4f\xcb\x11\xfb\x80\x4d\x60\xab\x85\x7a\xe6\x91\xf8\xb9\x4b\x66\xad\x99\xa7\x9d\xac\x5a\x25\xf6\x01\x59\xb5\x26\x86\x34\xc3\xd9\x4d\x2c\x2e\x97\x8c\x5a\x93\xd8\xe5\x4b\x46\xad\x72\x22\x39\x2a\x9a\xad\x6e\x0e\xbd\xcc\x58\x93\x28\x9c\xeb\x77\xbb\x3f\x4f\xb7\x42\xd4\xd6\xc9\xeb\x44\x21\x6a\x93\x88\x8c\xeb\x4f\xd7\xec\x46\x1c\xfa\x33\xd7\xdf\x0c\x5b\xc8\x73\x8d\x84\x36\xd7\x1f\x19\x0f\x26\xd4\x72\xd5\x13\x72\xcb\x70\x95\xaa\xce\x30\xcf\x70\x84\x59\xb7\x23\x57\x0a\xb3\x6e\xd6\x0c\x67\x7b\x38\x0c\xd5\x5a\xdd\x9d\x4e\x94\x80\x94\xd0\x62\x20\xe3\x30\xb0\x1b\x32\x6e\xd6\xb7\xa6\xd6\x82\xe5\xfe\x33\x96\x26\x8c\xf5\xcf\xae\x4f\xec\x70\xd9\xb4\x56\xe3\xd6\xfd\xf3\xec\xa3\x43\x95\xa1\xaa\x90\xd3\xe0\xfa\x33\x4a\x7c\xda\x34\x97\xc5\xf1\xd0\xe0\x72\x7b\x22\xc8\xca\x54\x55\xf0\x3d\xba\x94\x68\x6f\x56\x4e\x86\x13\xed\xbd\xef\x28\x59\xa3\x66\x4c\x33\x0e\x6d\x1b\x4e\x79\x3f\x6f\x99\xa3\xf6\xf4\xc2\x19\x40\xee\x24\xdd\xc7\xad\x5c\x7a\x13\x43\x8d\x01\xe4\x26\x06\x1f\x03\xc8\xad\x62\x29\x07\x00\xb9\x08\xeb\x06\x90\x9b\x48\xd9\xc6\x7a\x9b\x24\xf7\xba\x65\x29\xda\xd8\x7b\x0c\xee\x36\x31\xe9\x00\xee\x36\xb6\x0f\x98\xc1\xdd\x16\x6e\xee\x06\x77\x7b\x0a\x19\xc0\xe5\xe9\x58\x50\xee\x23\x55\xed\x26\x45\xff\xcc\x78\x6a\x7a\x6b\xd0\xa3\xf7\x6d\xa5\x43\x83\x90\x1e\xa1\xa4\x74\xc9\x0f\x3b\xeb\x1a\x3f\x2c\x03\xcf\x34\x8a\xf1\x34\x64\xda\x44\x00\x37\x64\xda\x39\x8c\x6b\xfb\x90\x55\x89\xf5\xfe\xad\xa7\xbe\x4f\xa7\x4d\x2e\x69\x47\x8f\xba\x05\xa5\x0c\x32\x18\xa3\x0c\x61\xb6\xb1\xf6\x18\xc2\x6c\x95\x1e\x4a\xae\xe2\x93\x9a\x72\x9f\x73\xda\xf2\x69\x08\xb3\x8d\xd1\xec\x96\x59\xe6\x8c\x2b\xf3\x2d\xbb\xcc\x2a\x6f\xd5\xaf\x0b\xd3\x8e\x66\xc3\x57\x81\xf1\xcd\xb6\x73\x5a\x4f\xe3\x9b\x15\x82\x2a\x0c\x6f\xd6\x78\xc6\xdd\xa7\x15\x49\xcc\xf7\xe9\x8d\x3a\x53\xd3\x49\xf4\xdd\xbd\xad\x34\x48\xd5\x77\xf1\x31\xb5\xc8\x75\xcb\xf8\x52\xba\x19\xe8\xad\x14\x74\x15\xcf\xd6\xbb\xd8\x2f\x0a\x87\xcd\xbb\xf8\x35\xe4\x23\x75\xcb\x14\xd3\xd0\xc6\xdd\xc5\xec\x74\xd2\xa1\x8f\xb0\x45\xc5\x5b\x41\x65\x93\x97\x92\x21\xc2\x2a\x19\x16\x8c\x02\x36\xc9\x79\x67\x10\xb0\x73\x1a\xdb\x64\x1a\x05\xac\xd5\x8c\xdb\xb6\xef\x34\x13\x45\x0d\x94\x6c\x86\xa1\x7c\xda\x07\x83\xb9\xdd\xc5\x84\xaa\x72\x26\x09\xa5\xbb\x6d\xe5\x3b\x3d\x0d\x06\xfd\x59\x8a\xc6\x9b\xef\xb6\xc1\x62\xe6\xd0\x54\xef\x4c\x56\xa6\xfa\x36\xb3\xa0\x76\x57\x2b\xd1\x0e\x4b\x26\x77\x95\x9c\x94\x4e\x94\x84\x6e\xe2\xdc\x64\x54\xae\xa7\x6a\x48\x43\x94\x15\x28\xef\xa2\x34\x2b\x21\x86\xf7\x8f\xe1\xb5\x2a\x71\xdc\x86\xd7\x9a\xd5\x42\xdc\xed\x7c\x75\x13\x9b\xf6\x2d\x63\xc7\x79\xbe\xcd\x08\xdd\x6b\xa6\xea\x57\xfb\x3d\x8d\x2a\x87\x0e\xa7\xcf\xd9\xeb\x8c\xf9\x3a\x0d\xc4\x55\xb2\x6f\xaa\x5d\xcf\x38\xfb\xd5\xb7\xe2\xa2\x95\xcb\x91\x19\xf4\xee\x34\x9a\x99\x0c\x45\x6e\x4f\x02\xe9\x8d\x8b\xb5\xb1\x9f\x1a\x16\xeb\x29\x64\x8e\x95\x6b\x89\x7b\x11\x58\xac\xc4\xb1\x18\x17\x6b\x63\xc1\xbd\x1d\x0d\x37\xc9\x88\x70\x57\x73\x9f\x9d\x76\x9e\x93\x6a\x78\xa7\x69\xcc\xac\x33\x5e\x93\x80\x66\x2d\x76\x6e\x75\xb2\xce\x9a\x56\xff\x5c\xd5\xc3\x93\xf5\x65\xa1\xff\x36\x2e\xd6\x53\x38\x20\x8b\x3a\x49\x55\xff\x09\xf3\xda\x9c\x68\x81\xdd\x22\x43\xcd\x22\xae\xe6\x6e\x7a\x90\xe1\x27\x79\x2b\x63\xde\xe2\xb1\x7a\x2b\x63\x5e\xe5\x05\x6c\x7c\xad\x45\x98\xbb\xf1\xb5\x9e\x2e\xd2\x8c\x83\x9c\xf8\xd0\xa8\xcb\x19\xaa\x10\xc0\xf1\xd3\xb9\x9b\x11\xcf\x39\x81\xca\xad\xb7\xc3\xe2\x9a\x8f\x3c\x09\x2a\x0d\xc5\xb5\x1a\x27\x89\xc0\x3d\x12\x5c\x19\x8a\x6b\xad\xfc\xb1\x6c\x68\xe8\x91\x0c\xc5\x35\xc9\xb2\x7a\x2b\x70\x6f\x97\xff\xe0\xa5\x77\x37\x41\x6c\x60\x8d\xb8\x95\xa3\x6f\xee\x8c\x46\x8e\x32\x39\xd7\xc2\xe5\x2a\xef\x84\x2b\x56\x07\xdb\xf3\xad\xf0\xbb\xd2\x33\x53\xf2\x50\x26\xe1\x8b\x71\xb9\x36\x09\xdb\x8c\xcb\xb5\x71\x3d\x32\x2e\xd7\x6a\x59\x27\xa5\x5c\x21\x89\x90\xa1\xb7\x76\x49\x0f\x7a\x61\x4d\x3c\x18\x0d\xbd\xb5\x0b\xac\x4a\xb6\xa8\x8d\x23\x92\xd1\xb5\x76\x6e\xf4\xce\xb6\x41\x4c\x10\xba\xd6\x22\x52\xd4\xe0\x5a\x4f\x61\xea\x2a\x51\xb3\x65\x11\x83\x6b\x3d\x85\x69\x56\x8f\x31\x6e\x66\x45\xd1\x6d\x72\xfb\x19\xf9\xea\x9c\x27\xe3\x11\xf4\xd5\xca\x66\x94\x35\x6a\xa3\x8c\x36\x0e\xd5\xca\xc1\x91\xc5\x69\x21\xcf\xdf\x32\x38\x2d\xfc\xab\x0c\x3c\x35\x49\x44\x77\xcb\xc2\x74\x4e\xfc\x10\x6f\x99\x98\x16\xef\x3d\x23\x4f\x35\x42\x50\xee\x6e\x9f\xf0\x19\x4a\x39\xc3\x4a\x28\x6d\x4d\x38\x77\xb7\x02\x24\x7f\xf8\x1c\xea\x19\xa9\x41\xd6\xa7\x73\x12\xe5\x6f\x58\xaa\x85\x21\xfc\x1e\xe6\xce\x84\xd9\xdf\x32\x38\x4d\x4c\xc6\x46\xa9\x7a\x0a\x0b\xa4\xbb\xac\x50\x3a\x7e\x23\x65\xfe\xab\x9d\x66\x97\x0a\x1b\x94\xf3\x23\x4f\x28\x41\x83\xc0\x2a\x14\x1d\xb7\x48\x25\x61\x78\xa9\x45\x32\x28\xa3\x4b\x9d\x93\x64\xc5\x86\x97\xda\xc4\x7f\x1a\x34\x6a\x2e\xa6\x43\xb1\x69\x1b\x25\x8b\x61\xa1\x26\xbe\x07\x86\x77\x5a\x23\x7f\xac\xac\x80\x65\xa6\x4c\x29\xe3\xd8\x29\xb2\x6a\x4d\x54\xb3\x86\x7e\x3a\x67\x49\x17\xe2\xc7\xa8\x2a\x6e\x5b\xb5\x70\x36\x37\x2e\xd4\xc2\x1a\x75\xcb\xa8\x35\xf1\x12\xbe\x95\x4e\x70\x85\x8f\x2b\xfe\x6c\xa1\x7f\xb9\x87\x39\xec\x4c\x0f\x3a\x29\xdc\xa3\x32\x78\x2d\x23\x46\x3e\xd4\xc7\x83\x49\xe1\x57\xbc\x28\x94\x37\x31\x7f\x68\x58\x04\x8e\xad\xe2\xcf\x36\xba\x29\x03\x4a\x6d\x14\x4e\xb7\x2c\x53\xeb\x3c\x53\x76\xab\xa6\x87\x26\xdb\xd3\x42\x4b\x71\x3b\xeb\x20\x9a\xff\xdb\x41\x65\xb3\xb4\x90\xee\x62\x41\xb9\x8b\x34\x23\x20\x00\x16\x46\x71\x63\xfb\x7f\x8d\x5a\x9f\x1f\x4a\x86\xf7\x1d\xca\x93\x9f\x42\xbd\xf4\xf1\x34\x30\x9e\xd4\x46\xbf\x73\x2b\xa6\xec\xa9\x4a\x8f\xf2\x0a\x9f\xe9\x5f\x26\x4d\xf4\x44\xf7\xf4\xe1\x0b\xd7\x76\xe0\x18\x8e\xc6\xb7\x2c\x5a\x8b\xb0\x26\xc3\x4b\xad\xbc\x35\xa6\xf1\x6c\x36\xbf\x28\xb3\xd4\x2c\x08\x78\xd3\x9c\xf1\xbf\x08\xd4\xd3\x6c\x13\x61\xc8\xd0\x53\x33\xec\xcf\x39\x12\x0b\x6f\x8f\xe9\x7b\x3b\xfc\xcf\xd8\x53\xe8\xe6\x0c\x2f\xb5\xd1\xa2\x19\x5e\xea\x9c\xe1\x62\xb2\x8c\xed\xb0\xbf\xa5\xb3\x88\x31\xf8\x5e\x8a\xf3\x41\x6b\x65\x7c\xa9\x8d\x76\xc3\xf8\x52\x1b\x85\x9f\x51\xa2\x76\xfe\x51\x28\x51\x1b\x65\xd3\xed\x98\x2f\xec\x42\xb7\xb3\x29\xce\xb7\x51\xf3\x49\xb6\xb8\x03\xc2\x50\xee\xdc\xb2\x68\x6d\xa2\x22\x0c\xf6\xb4\x70\x82\xbe\x1d\xbb\x85\x6a\xd4\x98\x4d\x13\x6f\x4a\x63\x36\x9d\x51\x98\x18\xb4\x69\xa3\x5e\x33\x68\xd3\x8a\x2c\x2e\xdb\xd7\xca\x4b\x60\x79\xc2\xf3\x1d\x13\x8e\x80\xa3\x68\xad\x8d\xbe\xe4\x56\xb4\xd6\x46\x29\x74\x2f\xe4\x24\x46\x63\x50\x12\xb6\xb1\xad\x64\x51\xa6\x18\xde\x69\x97\xcc\xb7\x17\x83\x58\xdc\x5b\x56\xb2\x89\xb7\xc3\xed\x4c\x8c\xb3\xc2\x62\x64\x26\x5b\x2b\xff\x61\x24\xa8\x96\xaa\xd6\x46\xf3\x12\xde\xe6\xd4\x68\x42\x6e\x22\xbd\xce\x50\x1e\xfa\x82\xd2\x56\xb1\xe6\xeb\x56\x9a\xc6\xd9\xd2\x8c\x12\xdd\x66\x70\xdb\x07\x19\x5f\xcc\x5b\xb1\x5d\x0b\x85\x9e\x31\xa4\x16\x79\x09\xef\xed\xcc\x11\x47\x28\x59\x38\xb8\xc5\x65\x52\xdb\xa8\x66\x6f\x9b\xd4\x48\xcc\x77\xcb\xa4\xb6\x88\x95\xbc\xb1\xa8\x71\x72\xb7\x57\x95\x08\xf3\x7b\x8b\x19\x63\x52\x31\xa0\xd4\xce\x4c\x29\x76\x6a\xa3\x69\xba\x65\x8a\xdb\xef\x5c\x48\xfa\x88\x80\xab\x24\x89\x0b\x17\xa5\x5b\xf1\x51\x8b\xd0\xad\xdb\xf1\x51\x79\x33\x3a\x40\xea\x9d\x60\xe6\x9b\xe9\x77\x84\x14\x86\x8a\xfb\xf2\x85\xc6\xbe\x09\xf4\x14\xd2\xcf\xe5\x53\xc4\xed\x4b\xd8\x13\xa9\xb3\x6e\xe5\x50\x5c\x98\x3e\x6f\xd9\xd7\x36\xfa\xc3\xdb\x29\x14\x67\xed\xe9\x52\xa1\x6c\xec\x06\x85\x41\x2d\x5c\x0a\xee\x4b\x3c\x76\xbd\x54\xf7\x87\x8c\x47\x00\x57\x24\x87\x02\xe0\x6a\xe2\xe0\x63\x80\xab\x8d\xe6\xed\xbe\x74\x72\xf1\x9f\x33\xdc\xd5\xca\xed\xef\xc4\x8c\x47\x7e\x52\xef\x96\x1c\xe3\x4b\xde\x7d\x44\x2f\x18\xed\xea\xdc\x19\xb7\x1c\x0c\x4e\xf6\x94\xc2\xb0\x6a\xf8\xf8\xe5\x74\x40\xac\xa2\x4c\x71\x0d\xd3\x90\xb1\xae\x0a\xae\xbf\xc6\xba\x2a\x79\x5e\xc8\xda\x56\x23\xa5\x3a\x11\x24\xb9\x0e\x6e\x19\xdb\x06\x79\x6d\x6f\x27\x82\x9c\x75\x84\x94\x41\x95\x7b\xe3\x72\xba\x9f\xfc\xbc\x71\x00\x8f\xff\x20\x4f\x2b\x44\xec\x9c\x59\x53\xbd\x7e\x57\x66\x54\x1e\x82\x13\xcf\x52\x03\x68\xb5\xf1\x52\x86\xd9\xe6\xa7\xec\xc0\x8d\x98\xaa\x60\xb2\x16\x46\xa5\x60\xb2\x8a\x7d\xc9\xd8\x5a\x27\x19\x05\x0d\x9f\x55\x50\x4a\xde\x97\x93\x4b\x1c\xa9\xf9\xa7\x58\x22\xf7\x77\x3b\x31\x0e\x43\xbb\x0d\x2d\xc9\x44\xc9\x66\x58\xa3\x79\x90\xcd\xb0\x2e\x2e\xc6\xdb\xc1\xe6\x25\xad\x68\x64\x08\x6c\xb7\x13\x73\x21\xdb\xca\x62\x78\x1e\x6f\x7f\xf6\x73\x48\x9b\x8f\xc0\x8a\x4b\x86\xa1\xb3\x4a\x04\x01\x05\x9d\x8d\x33\x65\xf6\x5d\xe5\x76\xbd\x8d\x5c\xcc\xdd\xa6\xa0\xb3\x12\xd9\x46\x31\x67\x23\x8f\x47\xc5\x9c\xd5\xc2\xbc\x24\xe4\x2c\xbf\x24\xe7\xb1\x3c\x25\x1d\x73\x46\xb8\xe7\x7d\x5b\x57\x3a\x53\x53\x79\xaa\x5b\x1a\x55\x8a\xa4\x33\xdd\xeb\x65\x7f\x64\x68\xf2\x64\x7f\x5b\x91\x6e\xe3\x08\xf5\x27\xd3\x09\xbf\xa4\x60\xf6\x9a\xa1\x39\xd8\x34\x63\xb9\xbc\x47\xe0\x9e\x36\x7b\x76\xb6\x93\xcc\x9e\x15\xef\x63\x43\x6c\x95\x77\xb6\x9d\x14\xab\xe4\x3b\xe5\xac\xe7\xf6\x90\x81\xb4\x11\x69\x7e\xdf\x72\xb2\x21\x18\xcf\xe8\x5b\x4f\x87\x21\xbf\xaa\xca\x87\x12\x58\xde\x45\x73\xc4\x01\x12\xa9\x02\xd5\xea\xcc\x77\xca\x45\x4c\x8a\xdf\x5b\x86\xd5\xc4\xdb\x19\x99\xeb\xc4\x37\xc7\xc8\x5c\x67\xf8\xb3\x8c\xae\xe7\xab\x1e\xbb\x8d\x1e\x91\xfd\x64\x10\xed\xb7\x7b\xed\x66\x18\xf4\x6d\x9b\x37\x7f\xf8\x71\x58\x14\x0f\x10\x85\xb0\x15\xc0\x14\x6e\x19\x64\xcb\xe4\x9a\x95\x3d\xb6\x90\x61\xd6\x18\x5e\x05\xfb\xfb\xed\xf0\xb6\x57\x91\xe6\x20\x35\x42\x0a\xef\x8f\xb3\xf3\xf4\x34\xaa\xe4\x20\x48\x47\xb6\xc0\xbe\xfa\x38\xe5\xee\x3c\x71\x21\x36\xfa\xd7\xd9\x98\x28\x59\x60\x0b\x8e\x32\xb7\x53\x77\x1e\x9c\xe5\x8f\xb7\x65\xc6\x2d\x8d\x5f\x6d\x69\x53\x67\x0b\x99\xc7\xb6\x5a\xbc\xc4\xef\x8f\xb7\xe5\x5b\x53\x49\xce\xd8\x88\x1f\x07\x41\xe7\x97\xb6\x99\x5e\xa6\xcd\x89\x04\xd9\xdd\x1f\xfb\x09\x9d\xa1\x14\x4f\xca\x53\xc1\x89\x3c\x3b\xcf\x36\xe7\xe3\x8c\xb6\x59\x19\x38\x0b\xa9\xc2\x6e\xc7\xc4\x9d\xa9\xa9\xec\x2b\xe5\xa5\x7c\xc5\x64\xbe\x2d\x0f\xb5\x50\x6c\x05\x26\x43\x7e\xaa\x79\xc4\x29\xb6\x6d\xe6\x11\xf9\xf5\xbb\x3d\x0a\x40\x59\x34\xf7\xd8\xff\x36\x21\x1a\xfc\xeb\x9c\x75\xa7\xd9\x9f\xe4\x8a\x50\xbe\xca\xb9\xe7\x65\x0c\x3d\xf1\x30\x32\x50\x58\x25\x2c\xd0\x40\x61\x8d\x50\xb0\xdb\xf6\xce\xdc\x5d\x5f\x98\xcd\x4b\x2a\x5b\xe4\xdb\xa8\xf3\xf6\x30\x72\x33\x1b\x5c\xea\xef\x2f\x29\x12\x0e\x28\x05\x9f\x70\x93\xca\x68\x79\xbe\xaf\xcc\xaf\xdd\xe6\x91\x96\x64\xb4\x8c\xa2\x9e\x00\x3a\xce\xa2\xb2\x7e\xb6\x6c\xbf\xaf\xf3\x90\xc3\x89\xbe\x4e\xfb\xdf\xd2\x88\x7e\x9f\xb4\xd9\xc6\x09\x9b\x1b\x3e\xfc\x75\x08\xeb\x4e\x99\x62\xa8\xb2\x1c\x16\x8f\x5b\xd6\xca\xfe\xc6\xc8\x23\x32\x76\x4e\xfc\xfb\x0d\x13\xf6\x54\xe5\xff\xed\x18\x9f\x81\xeb\x84\xe7\xa4\xda\x9e\x39\x09\xd2\x34\x14\xd8\x43\x9e\x90\x1e\x4f\x85\x52\x2e\xd1\x9d\xaa\x43\x4e\xdc\x13\x6a\xfa\xc3\x0e\xe9\x60\xbc\x05\xb5\x5d\x38\x20\x15\x1b\x54\xd2\xea\xed\xc2\x34\xa4\xec\x7d\x68\x80\x6c\x26\x9d\xa4\x56\x03\x2a\x2c\xda\x62\xdb\x49\x71\xb3\xb9\x7f\xca\xb2\x83\x7b\xd0\x8d\xf1\x13\x1e\xa7\x68\xc0\x46\xfa\x8e\xfb\x67\x33\x12\x32\xc9\x8f\x25\x87\x21\xc8\x4e\x5a\x31\x0d\x1a\x55\xac\xc6\xaa\xa3\x48\xc1\x4d\xbc\xd1\xed\x48\xc1\x49\x48\x83\x21\xc7\x5e\xb9\xc3\x91\x82\x93\x78\x17\x43\x8e\xad\x99\xd9\xb1\xbe\x18\x9f\x1c\xa3\x8c\xbd\xd7\xa6\x8c\xa3\x8d\x88\x47\xe3\x8a\x9d\xd9\xc9\x3f\xa3\xb8\xb1\x91\x15\xe2\xd7\x30\xf7\xde\x0e\xf1\x9b\x24\xb6\xbe\x1d\xe2\x17\x3d\xf7\x1f\xeb\x3a\x42\x1a\xe2\xbb\x42\x29\xe7\x15\xbb\xfc\xcf\xe9\x4c\x98\xb9\x3f\x56\x07\xb1\xe1\xcf\x30\xe6\x67\x3e\xf4\xea\x30\x72\x25\x02\x9d\xe4\x92\x36\x5e\xd9\x22\x7b\xf6\xfd\xe7\xc7\x0c\xee\x4b\xf7\x9f\x00\x26\x36\xf3\x21\x30\xb3\x97\x5d\x08\xcc\xac\x86\x5f\xfe\x81\x5d\x4d\xa3\x5a\xac\xdc\x8e\xb2\xa3\xce\xca\x56\x56\x1c\xe1\xcb\x57\xfe\x6c\xe3\xe3\xc1\x28\xab\xea\xcb\x2c\x64\x47\x7d\xf9\xc1\x1f\x27\x32\xe3\x76\x8a\xc4\x14\x4a\x7d\x80\xa0\xf0\x87\xdc\x99\x81\x4a\x95\x44\x70\xe0\xfd\x67\xc5\x2a\x22\xc6\x9f\x1f\x9a\xed\x2d\x74\xb8\x71\xda\xf1\x2c\x3e\xcd\xac\x25\xa3\x6a\xb3\xee\xf4\xa1\x4e\x01\xf1\x1c\x50\xc5\x18\xc7\xa9\x2a\xef\x2d\x31\xef\x87\x52\x62\x3d\x4d\xc6\x32\x08\x5a\xb3\x9a\x77\x19\x04\x6d\x3c\x27\xee\x1f\xdc\x7a\x19\x04\x6d\x5a\x8e\x78\xa8\x8f\x13\x99\x41\x19\x8d\x80\x46\xe5\xb8\x62\x6f\xf1\x65\x44\xb4\x67\x6c\x1b\xd2\x79\x1b\x3a\x94\xd6\xdb\x59\xce\x1f\xd2\x79\x1b\xf8\x47\xbf\x90\x16\x3f\x25\x8b\xaf\xe5\xbd\x87\x9a\xc2\xfe\x4f\x33\xba\x9e\x47\x5a\xd9\xd2\x9d\x40\x38\xde\x74\x99\x92\x0e\xca\xda\xb2\x87\xf2\xd0\xd2\x9f\xd4\x91\x16\xdb\x96\x01\xd1\xa6\x9d\x61\x1f\x6a\x8b\xe2\x9f\xf4\xce\x71\x9e\x86\x87\x72\x92\x8c\xb7\x55\xdd\x80\x6f\xe1\xd7\xe6\xfe\xb4\xea\x04\x0f\xb4\x2a\x0d\xa4\xa5\x9a\x65\x5c\xb5\xa7\x2a\x2b\x95\xc4\x6a\x50\xe6\x62\x19\x81\x7c\x5a\x9c\x0c\xe1\xa1\x94\xa1\xb3\x31\x00\xa5\x52\xb7\xee\xe0\xa1\x9e\x73\xf2\x0e\x4e\x3b\xcc\xba\xb4\x87\xfa\xb8\xd1\x54\x15\x72\xe6\x99\xc2\x9f\x0b\xd3\x87\xf6\xff\x72\x55\xd9\xa3\x8b\xb3\xea\x2d\x43\xb9\x4d\x73\xe3\x87\xd2\x4a\xd5\x03\x4a\x41\x4b\x33\x35\x15\xb4\x47\x9b\xb2\x4d\xb7\x74\x2f\xdb\xf4\x74\x4e\x8b\xb5\x4e\x6f\x94\x5a\xa0\xbc\x51\x1a\x8d\x2a\xa7\x85\x23\x73\x97\x71\xdd\x9e\xc2\x7c\x39\xa4\xbc\xa0\x0f\x3f\xa5\x7b\x4b\x43\x8a\x07\x79\x3b\xb1\x33\x46\x63\x74\x4e\xc1\x76\x36\x28\xa5\xef\x3d\xa8\xea\x1d\x50\xa9\x29\x1b\xac\x43\x3c\x97\xd1\xdb\x56\x61\x37\x2a\x7b\xea\x5c\x19\xaa\xd7\xb8\xd2\x26\x20\xba\xa9\xa9\xfc\xac\x25\x14\x17\x15\x1d\x4a\x97\x35\x06\xbf\x21\xf3\x40\x65\x89\x15\xb5\xb8\x56\xfe\xc9\x17\x79\xcf\x68\xa4\xcb\xb2\xae\x7e\x19\xf6\x6d\xf5\x91\x0f\x65\x71\x6f\x69\x54\x11\x2f\xcb\xfb\x0f\xd4\x37\xc6\xa6\x6c\xad\x35\x73\x5a\xf4\x28\x3d\xd9\x53\x42\x84\x5b\x9d\xb9\x28\x7a\x94\xe6\x0c\x2b\x68\xb2\xb5\x99\x32\x86\xb6\x20\x1f\xd1\xb5\x8c\x34\x7a\xb9\x70\x43\xda\xaa\x9f\xd1\x08\xf9\x29\x1f\x2a\xfc\xc8\x7e\xa5\xcb\x00\x71\xd5\xba\xcb\x87\xf2\x0a\xcf\x54\xd5\x3b\x18\xee\x57\x58\xe1\x49\x1f\x20\x8e\x14\x28\x5f\x5b\xa9\xfa\x51\x1f\x29\xb3\x74\x9a\x32\x1f\x06\x58\x9c\x2c\xf9\xc4\x4d\xad\xe5\x28\xca\xc2\x36\x2e\x76\xa1\xe2\x50\xcb\xca\xdf\x6c\xf2\x79\x28\x6f\xe3\x95\x0f\x9b\xdd\x23\xa1\x1c\x38\xcd\x48\xf5\x6c\xf4\xab\xe6\xa1\x1c\xb5\x3e\xff\xcd\xa8\x8d\x82\xd7\xcf\x7c\xe8\x23\x9e\x55\x95\xde\x25\xdc\xa0\x98\x1b\x35\x88\x3f\xa1\xdf\x33\x6e\xeb\xc7\x7b\xf6\x86\x44\xce\x0e\xf7\x95\x5f\x41\xab\xf9\xa9\x9b\x9f\x4a\xe1\x73\xdf\x84\xe1\x19\x13\xcf\x61\xfb\x0b\xdc\xbb\xc1\x71\x73\xb8\xe5\xb4\x9b\xef\x32\xee\xdd\xe8\x9c\x3e\x45\x54\x8e\xf0\xe6\xe2\x80\xb7\xc9\x5f\x28\xcf\x7f\x87\xc5\xca\x3d\xa1\x35\x76\xbf\x31\xf1\x36\x1c\x56\x98\x78\x23\x1c\xc6\x98\x78\x93\xab\xb0\x2e\x0f\x74\x41\x99\x89\xec\x14\x0a\xde\xfb\xcc\x87\x1f\xe1\x7f\xa4\x0b\x0d\x0d\x06\x57\x1d\xdf\x3b\x19\x8c\xbc\xe8\x37\x87\x4f\xbe\x09\xa3\xc3\x6d\xf0\x4d\x18\x47\xaa\x6e\xf5\xbf\xa1\x74\xa7\xbc\xcd\x68\x11\x4b\xa8\x8f\x5e\xfb\x69\xd4\xdd\x33\x50\xed\xcc\x23\x83\xd1\xe6\xdb\x9c\x28\xa5\xe6\x6d\x33\x3f\x21\xc9\xe7\x64\xd3\x1a\x74\x6f\x8e\x97\x54\x87\xb0\x29\x47\x77\x1e\x1c\x93\xea\x4d\x53\xd3\xcc\xcf\x1f\xa6\x50\x1e\xfe\x2c\x70\x35\x5e\x1c\xeb\x54\xbd\x6b\x6a\x28\xad\x05\x7c\x11\x87\x87\x4c\x94\x37\x4d\xe5\x7f\x6d\x37\x19\x1c\x77\xf9\x3b\x94\x33\xbf\xef\x87\xeb\x60\x9f\xc8\xdf\xa1\x1d\x47\xaa\x3a\xa5\xe6\x99\x2e\xaf\x67\x83\x33\x52\x6f\xb7\x71\xa6\x13\x6d\xb7\x96\x81\x0b\x9d\x13\x36\x21\x8f\x86\x96\x9b\xd8\x4e\x0b\x8e\xda\x7b\xa8\x21\x7f\xb6\xd4\x54\x52\x1e\xa6\x58\x4e\x0b\xe5\x60\x43\x2b\x6b\x70\xcb\xb2\xc9\x2f\xa1\x1e\x1c\x76\x25\x0d\x2e\xb6\x86\x3d\x94\xa7\x86\xfe\xa4\x4b\xdb\x9c\x20\xf9\x2c\xb4\x35\x53\xe6\xa9\x29\x69\x54\xee\xbc\xad\x41\x79\x6a\xd8\xd2\x06\x04\xec\x2d\x94\xa7\x86\xfd\x26\xa7\x85\xe2\x0c\x9f\x0f\x75\x0b\xa5\xa9\x43\xfd\xf4\xa1\x27\xca\xb9\x7f\x73\xd9\x36\xcb\xc1\xcc\x77\x33\x9b\x18\x29\x94\x76\x76\xb2\x34\x8d\x05\xa7\x43\x29\xa2\x7a\xa3\x0b\x56\x11\x1e\xde\x0c\xf8\xd2\xe9\x51\x42\xf2\x2a\xa9\xaa\x34\x60\x47\x9a\x71\xe4\x11\x55\xe5\x0a\x50\xed\xee\xf5\x50\x6e\x75\x54\x48\x4d\x40\x3f\xa0\x3c\x01\x23\x75\x15\xc4\xd3\x37\x94\x42\xd1\x5e\x4a\xbf\xcc\xe0\x9c\xb5\x77\x46\x6a\x93\xbf\xc1\x8a\x40\x8d\xbf\x41\xe4\xbd\x6e\xf5\xd3\xf1\x1f\x24\xea\x6e\xc9\xf8\x60\x38\x72\x1a\x9d\xb9\xb6\x1d\x6f\xdb\xe1\x38\x4a\x06\x5c\x23\xee\x75\xe9\x53\x67\x0b\xa5\x17\x36\x67\xc5\x51\xb4\xc6\x63\x7e\x28\x05\x1f\x9f\xa1\x14\x36\xbb\x42\x59\xa2\x60\x72\x14\x29\x1a\x11\xa2\xfb\x5d\x3a\xb8\x52\x85\x5e\x38\x7a\x0f\x75\xb9\x90\xb9\x92\x6d\x7e\x65\x05\x7c\xdf\x8c\x95\x66\xc5\x3a\xb8\xf0\xbb\x13\x31\xac\x54\xf5\xcc\x71\x22\xba\x59\x07\x6c\xad\x9b\x75\x64\x95\xcd\x1e\x7a\xca\x64\xf3\xdd\xf4\xef\x23\x7f\xa6\xe6\xa5\x87\x39\xdd\xcb\x51\x70\x21\x0a\x76\x6d\xa4\x1c\x00\xe5\x14\xae\x76\x7e\x5c\xcb\x5e\x14\x07\x6c\x6c\xd8\x53\x65\x30\x55\xc3\xb7\x08\x4b\x3c\xbc\xab\x46\x3e\xf4\xae\xe2\xde\x50\x14\xef\x79\xb6\x14\xea\x17\x3b\x94\xf7\xc6\xe0\xcc\x29\xe3\xf0\xe8\x2c\xb8\x73\x03\x9f\xec\x72\x52\x03\xbf\xa3\x93\x9b\xf0\x86\x1f\x0f\x67\x67\x3d\xd2\xcc\x47\x71\xf9\xf4\xef\x68\x2c\x96\x4a\xa9\x81\xd7\x89\x08\x2b\x0f\x8b\x11\x71\x4b\x1e\x16\x23\xf7\xd6\xb0\x59\x7d\xc2\xd5\x05\xc3\x58\x9c\x80\xf5\xa1\xb6\xb6\x4a\xa8\x4b\x1f\x7a\x8a\x87\x35\xd1\xdc\x54\xf2\x7f\xe8\x03\x39\x51\xfe\x0f\xa3\xcf\x06\xa5\xad\x31\x4b\x0a\xe5\xff\xc0\x9a\xda\xff\xa1\x9d\x69\x46\xfe\x0f\x3c\xe8\x14\xef\x5b\x27\x37\x95\x42\x7a\x47\xe7\x8a\x71\x48\x6f\x38\xae\x22\x7a\x5b\xe9\xa1\xf4\x2c\xda\xa9\x69\xd4\xd1\x0a\xe5\x9f\x08\xa5\xab\x61\xd6\x7c\xa8\xe3\x3f\xd3\xa1\xdc\xcb\x78\x50\x4e\x1b\xfc\x66\xcd\x97\xca\x7c\x80\xb4\x65\x57\x89\x93\x39\x9d\x2c\x22\xcb\xa6\x1c\xbb\xbb\xc1\x1c\xc1\x6b\x64\xa6\xe4\x1c\xb1\x36\xb3\x28\xff\x87\xb3\xc0\x38\x8d\xd0\xd8\x78\xdc\xcb\xe1\x61\x95\x9a\x9a\xee\x22\x7f\x6c\x95\x62\x4f\xa3\xfe\x2b\xa6\x78\xda\x0f\xbf\xa6\xf0\x2b\xdd\x3f\x93\x03\x70\x4f\x28\x65\x8c\x42\xbb\xa0\xb8\xdc\x92\xf7\xa4\xb1\x1d\xe7\x84\x8b\x4e\x3b\x82\x67\x36\xcc\x9c\x27\x67\x63\xa1\xb3\xa8\x50\xd5\x85\x03\x52\xce\xfe\x35\x94\xd2\x4f\x73\x34\x14\xb4\xdb\x0a\xab\xba\x1e\xae\xbe\xe6\x48\x33\x4b\xae\x48\xe9\xc2\x69\x8c\x37\x94\xbc\x61\xf8\xc5\xc5\xaa\x72\xc2\x9c\x49\xb7\xa4\x7b\x73\xdf\xff\x00\xc7\xf5\xd4\x95\x8a\x95\x79\x5c\x7e\x8b\x4e\xb6\x87\x22\x83\xeb\x78\x0b\x6f\x01\x19\xa5\x13\xe7\xf3\xca\x00\x3c\x75\x70\x55\xb9\x55\xd4\x55\xd3\x8c\x64\x5a\x4e\x95\xe3\x84\xe7\x84\xc7\x2e\x3b\x99\x72\xcd\x2f\x16\x7d\x85\x34\xb6\x30\xad\x3a\xf6\x82\x95\xb4\xd3\xc5\x81\xc4\xe9\x24\xb8\x95\xfd\xb8\x2c\xc8\xcd\x95\xaa\x52\x05\x66\xb1\x94\x7a\xe5\xcc\x9c\x4b\x15\x79\xc2\xd4\x1d\x8c\x3c\x27\x6f\x83\xe5\x24\xef\x33\x55\x2d\x91\x84\x9a\xc2\x2e\xca\x87\xfe\x8d\x7c\x27\x0f\x64\xd8\x01\x3e\x17\x51\x30\xd8\xe7\xa2\xb6\x50\xda\x65\x3d\xcd\x78\x97\xb1\x3f\xb7\x37\x12\x97\xb5\x21\x2d\x0d\xf3\xb3\x80\xb4\x9c\x39\x66\x4a\x91\x3b\x6b\x4f\xa1\xbb\x64\xd3\x6d\x87\x26\xb0\x90\xdb\xf1\x06\x5c\x6b\xca\x6d\x5b\xf3\x8e\xd8\x4e\x22\x32\x43\x29\x16\x00\x26\xef\x64\xb6\x95\x0d\xe0\x84\xb5\x61\x5d\x4a\x58\x7b\xce\x05\xb7\x50\xc6\xda\x75\xac\x50\xd3\x85\x1b\x52\x73\xc5\x51\xb6\xd3\x45\xb8\xf3\xb6\x66\xf2\xfd\x50\x1e\x9f\x1c\x88\xed\x85\xe3\x40\x38\x27\xed\x91\xd9\x30\x30\x25\xab\x21\x9f\x8b\x76\x22\xc9\x29\x18\x7a\x1c\x5c\x15\x8a\x77\x5e\x83\xc7\xa0\xb3\xd7\xce\xbc\x69\xe5\x9e\xd1\x8f\x95\x2e\xa4\xa7\xcf\x60\x6e\xe5\x85\xcb\xd2\x88\xab\x67\x65\x04\x3d\x7a\xa0\x33\x94\x73\x46\x29\xfc\xad\xd3\xd7\xce\x1c\x06\xc5\x42\xf7\x03\xce\x2d\xcf\x8d\x36\x91\x7e\xf0\xdc\x58\x35\x85\xc2\x42\xe0\xfa\x95\xe7\x46\xab\xcc\x93\xc1\x2f\xf1\xb1\x5b\x06\xbf\xac\xd9\xe1\xf2\xdc\xe8\xc7\x4e\x99\x07\xc7\x87\xbe\xa9\x17\x8c\x44\x41\xd4\xfd\xd8\xa1\x9c\x33\x34\xd4\x54\x19\x83\x7b\xf6\x49\xb7\x99\xff\xa1\x34\x51\x08\x2a\xf2\xd4\xa8\xab\xa4\x0b\xa5\x89\xe0\xc2\x73\xd8\x34\x91\xc2\xcb\xf8\x9a\x3d\xca\xce\xcb\xcc\x60\x71\xa6\xe5\xc7\xd1\xa3\x42\x95\xaf\x46\x8f\xd6\xf2\x22\x8b\x3f\xd3\xa8\xdc\x8e\x83\xf3\x7e\xb1\xc1\x90\x1b\x15\x36\xdd\x8f\x4d\x8f\xc2\x82\x3c\x91\x22\xe5\xc8\xd1\xa3\x88\x95\x23\x47\x3f\x8f\x74\xa1\x10\xb5\x96\xb1\xc9\x89\x3e\x15\x7f\xaa\xc8\xff\x0a\x56\x7d\x73\x4a\x8c\xe7\x99\xdd\x26\x37\x8e\x73\x23\xfa\xe1\xa9\xb1\xb8\xf0\xc8\xe6\x8b\xf8\x6f\xe8\xcf\xf3\xdf\xd9\x3e\x9e\xaa\x53\x7d\xf0\x83\xb7\xd7\x22\x7d\x6c\xe5\x17\xe1\x27\xcc\x6d\x16\x9c\xe0\x92\xa3\xe6\xce\x5c\x58\x50\x89\x68\x22\x47\x8e\x96\x33\x24\x47\x8e\x7e\x1e\xa1\xac\x15\x85\x4d\xdc\x36\xa0\x2c\x78\x81\xe1\x46\x4f\x76\xa3\x1c\x3b\x7a\x54\xd1\x72\xde\xa8\x73\xa6\xcc\x63\x4d\x33\xde\xe2\x0c\x56\xde\x1b\xfd\x3c\xd2\xe8\x73\x8b\x9c\xdc\x0c\x46\x1f\x8d\x46\x5b\xde\x1b\x35\x9a\x89\x9b\x5d\x8c\xf4\x2d\xf7\x8d\x16\xee\x6b\xf0\xd1\xe8\x6c\xe5\xbe\xd1\x23\x7c\xcb\x7d\xa3\x46\x85\x26\xf7\x8d\x7e\xb6\x34\x3a\xdc\x28\x03\x97\x45\x75\xee\x34\xaa\xdf\x78\xfb\x57\xda\xd9\x95\x9a\x1f\x75\x98\x46\xbf\x6e\x86\x9f\xb2\x16\xe3\x1d\xcd\x9f\xa0\x50\xa9\x2a\x1c\xc5\x70\xb4\xdb\xbb\x1f\x41\xdd\xe9\x84\xc1\xd9\x7e\x48\xfd\xc6\x11\xca\x47\x83\x49\xd5\xeb\xa7\x64\xde\x74\x34\xf2\x6a\x92\xff\xc6\x3e\xce\xd4\x74\xf8\x6a\x5a\xf9\x93\xcb\x04\x7f\xe1\x07\x6f\x9e\xe3\x86\x3b\xcd\x79\x33\xa4\x69\x9e\x69\x86\x34\x3d\x4b\x6a\x9a\x87\xce\x14\x6e\xe9\xa1\xe9\x91\xed\x98\xc1\xdd\x3a\x70\x48\xa3\x1f\x36\x15\xd7\xbd\x52\x04\xb7\xa8\x09\x05\x6a\x5a\x26\x8b\xf3\x71\x16\xf0\x33\x65\x06\x43\x4b\x99\x7c\x2f\x6a\x5a\x19\xea\x62\x40\x79\xa8\xa1\xb4\x8a\xb0\x1b\xf9\x65\xf4\xb3\x64\x30\x5a\x45\x7e\xf8\xe3\x97\xf1\xe2\xd2\x36\x6c\x6a\x19\xe9\x50\x4c\x8c\x63\x8c\x5f\x46\xde\x62\x8a\x8c\xef\x51\x8b\x7f\xd8\x54\xdc\x0d\xc6\x4d\x3d\x7b\xaa\x6a\xfb\xd7\xb4\xa3\xb9\x61\xc1\x3f\xde\x54\x28\x71\x3e\x76\xc3\x81\xdf\x39\x86\x3d\x72\x01\x10\xa7\xac\x8d\xc3\xd4\xa3\xfd\x50\x98\x7a\x0f\x6f\x70\x9a\xe1\xb9\xd9\x45\x4a\x33\xdc\x4f\x38\xc5\xc7\xeb\xbf\xd9\x9b\xc6\x3f\x8d\xe5\xc5\x31\xec\x33\xa2\x98\x62\xd8\xfb\x39\xf2\xa5\x36\x47\x4b\x59\x97\x71\x8f\x9f\xb2\xd0\xb4\xd3\xcc\x74\x33\x21\x05\x3a\x90\x65\xbc\xad\x42\x4f\xa3\x9a\x1b\x4e\xb8\x63\xdf\x67\x5e\xbf\x8a\x7d\xef\x27\x9c\x5a\xe9\x8a\xfb\xd9\x43\x69\x6c\x30\xaa\xaf\x33\xc2\x33\xe1\x5f\xef\x06\x78\x9a\xa3\xdb\xe7\x3e\x53\xe8\x88\xaa\x50\x9e\x1c\xef\x71\x87\xac\x3f\xd4\x3f\x59\xf5\xd7\xeb\xcf\x52\x29\x9e\xbd\x44\xc5\xe3\x78\xf6\xb9\x39\xb8\x5f\x1b\x7b\xd8\x9c\x5f\xeb\xad\xce\x54\xd5\x06\xdc\x70\x1c\x65\x48\xee\x27\x4b\xfe\xf5\x2d\x8a\x28\x66\x38\xd6\x68\x78\x1c\x69\xde\x4a\x28\x2f\x1c\xdb\x5a\xe9\x93\x6b\x9e\x91\x4a\x9f\x5c\x0e\xae\x66\x65\x4f\xee\xe7\x08\xa5\x63\x84\x98\xac\x08\xf5\x56\x38\x8c\xf2\xfd\xe8\x27\x1c\xee\xeb\x0b\x96\xb7\xc8\xd7\x17\xec\x48\xf7\xb7\x36\x43\x06\xaa\x65\xc3\xf2\x21\x4f\x90\x16\x0d\x9f\x3c\x38\xce\xa8\x06\xbf\xbe\xe1\xe0\x45\x5f\x73\x0d\xa4\xf2\xaf\x17\x9f\x1b\x56\x09\x99\xfb\x09\x0b\x91\x8b\x46\x8f\x38\x2f\x17\x8d\x7a\xb0\x86\xf2\xc2\x28\xb1\x49\xc9\x09\x63\xad\x19\x4a\x5a\x78\x6e\xa9\x9f\x6f\x10\xee\x93\x9f\x6f\x10\xd8\x9b\x02\xd0\x57\x98\xfd\xcf\x7a\xc9\xdd\x53\xa8\x61\xaf\x14\x6a\xd8\x6c\xef\x9f\x0f\x34\x8c\xf0\xc7\xf2\xb2\xbf\x7f\x5e\xde\x95\x66\xfe\x5c\xe8\x65\xfa\x79\x7d\x11\x45\x1c\xc8\x3e\x37\x2b\xf3\x73\xc6\xa0\xb4\x03\xbb\x0f\xe5\xe1\xd0\xa5\xd7\x69\xe5\x3b\xad\x13\x37\xa1\x31\x5b\x17\x9b\xe6\x67\x89\x86\x1b\x5c\xde\x1a\x25\x56\x08\xc3\xb2\x46\xf5\xfa\xb3\x3e\x7b\xbf\x55\xb5\x69\x56\x28\xb9\xd0\x72\xda\x7e\x5e\x52\xde\x64\x3f\x63\x99\x23\x86\xfe\x7c\xd8\x91\xad\x7f\x1c\x76\x56\xdf\x4e\x1f\x27\x1c\x54\x4e\x1f\x25\xfa\x0c\xf9\x75\xf4\xc2\xf5\xf6\x67\xa9\x64\xa7\xac\xab\xac\x42\x0d\x37\xba\x21\x85\x49\xfe\x7e\x68\x84\xaa\x05\xe5\xfe\x57\xda\xf9\xc8\xe7\xb2\x43\x09\xc1\x96\x5b\x5a\x7e\x1c\xbd\xc0\x50\xff\xac\xc2\x8e\x85\xfe\xef\xd9\x2a\xbd\x1c\xa9\xea\xad\xc2\x4f\xfe\x79\xab\xf0\x10\xf8\x33\x2c\xf6\x4c\x99\xf6\xf4\x4e\x33\xe6\xda\xc8\x70\x72\x08\xe9\x05\x36\x6d\x87\x90\xdc\x5a\x72\x08\xe9\xe5\x4c\x99\x0e\x43\xbe\x93\x73\xdd\x01\x5f\x54\x60\x7d\x8f\x0b\x86\x93\x3e\x1f\x99\xaa\xdb\x93\xca\x4f\x69\xf9\xc7\x91\x32\xe7\x75\xa5\x15\x1d\x3e\x23\xaf\xae\x2d\x47\x8e\x73\x39\x75\xf6\x43\x7a\x35\x2a\x54\x71\xe1\x80\xac\xfa\x72\x43\x49\xd3\x50\xd2\x4e\x77\xd5\x09\xe9\x69\x4c\xab\xde\xe1\x05\xca\x29\x8a\x52\x53\x07\xee\xdf\x2e\x7a\x4f\x55\xb9\xd5\x8e\x34\xfa\x95\xcc\x12\xea\x27\x01\x36\x03\xf7\x7c\x2f\x53\x76\xd7\x3b\x32\x54\x31\x7b\x83\xa4\x3e\x94\xd7\x94\xd1\xe8\xc0\xdb\x63\xf1\xa1\xbe\x72\xd0\x3b\x4d\x89\xbb\x96\xcc\x94\x92\xac\x3b\x75\xc1\x32\xf2\x6c\x75\x32\x9b\x65\x34\xd9\x85\x09\x72\xcb\xaf\xa2\x97\x4a\x7f\x32\xa4\x3b\x7c\xe1\xa1\x96\xfa\x0b\xa5\xde\x0b\xc3\xbe\xdd\xbb\xa7\xfb\xf4\x8c\x96\x50\xf2\xcd\x62\x2c\xa7\xff\xe8\xa4\x4c\x11\x19\xd8\xe0\x8c\xfa\xda\x7a\x5a\x91\x5e\x37\x4f\x70\xa3\xbe\x76\xbb\x8a\x2d\xa3\xbe\xf6\x52\xf2\xa1\xf5\x55\x29\xd3\xd0\x7c\xed\xee\x53\x0e\x67\x70\x89\x7d\x5e\xde\x26\xac\xe8\xe9\x74\xff\x6c\x1a\xc7\xea\xe3\xe2\xb0\xcf\xcb\xdb\x64\xa6\x9d\xa1\x28\x28\x7e\x43\xcc\xae\x64\xe0\x52\x24\x2d\x4c\x54\xdb\x91\xfc\x7b\xe4\xc3\x8f\x8c\x59\xa1\xb4\xa5\x6b\x9a\xf9\xf9\x43\xfe\x51\x81\x1e\x0e\x01\x5c\x01\x93\x3d\x58\x29\xf9\x43\x9c\x86\x77\x7a\x28\xff\xc8\xe2\xbf\x24\x31\x39\x5c\xef\xa1\x9a\x0b\xe9\x45\x7e\xcd\xad\x31\x58\x31\xd1\x92\xbf\x94\xbe\x02\x71\x7a\x9f\x5e\xe3\xc2\xec\x48\xcf\xb4\x8e\xc5\xf4\xdc\x9e\x73\x37\x6a\x8c\xda\x66\x71\xd2\xb8\xb3\xdd\x5e\xec\x0b\xdc\xd9\xc5\xdb\xde\xb8\xb3\x85\x0b\x66\xcb\x3f\xa1\x1b\x98\xe9\xa1\xbe\xae\xba\x21\x7f\x2a\xf4\x4f\xca\x79\x61\x1f\x6c\xdc\xb2\xbd\x3c\x7c\x28\x51\x17\x55\xef\x76\x92\xe7\xc5\x03\x66\xcb\x79\xa1\xcc\x0c\x4e\xfa\x03\x8c\x84\xbb\x98\x89\x35\xca\x24\x25\x18\x52\x62\xed\x62\xf4\xbc\x4e\x99\x9e\xd3\x8b\x67\xc9\x96\x7d\xbe\xe3\x02\xb2\x8b\xe3\x19\xcc\x7d\xb7\x92\x02\x74\x87\xe1\x2d\x83\xd9\x76\x87\x67\x3f\xd4\xad\x66\x32\x70\x65\x5d\x98\x99\x0d\xb3\x38\xd6\x46\xd6\xfa\xa7\x2a\x43\x95\xe2\xa7\x30\x70\x99\xeb\x37\x4f\xbd\x2d\x73\x7d\x47\x9d\xbd\xab\xb1\xdd\x59\x9b\x6a\x6f\x11\x4b\x73\x86\xcf\xed\xc5\x12\xe3\xae\x06\x50\xe3\x3c\xd8\x3e\xbf\x78\xa3\xee\x6a\x2c\x57\x26\x5c\xa9\x91\x7b\xb1\x27\xc5\xae\xf2\x1d\xee\xcc\x94\x70\x77\x9f\x0f\x19\x9b\x84\x98\xd2\xe8\xd1\x1e\xe1\x33\x1f\x7e\x75\xc1\x33\xb6\xed\x5f\xec\x0c\x47\xc9\xd4\x50\xa6\x18\x4b\xb7\x3b\xf2\x65\x19\x2e\xb7\xbf\xbf\x21\x9f\x8f\x85\xe4\x6d\xbc\xdc\x8e\x70\x6f\xb8\xdc\xee\xec\x50\x0f\xe5\x6c\xe4\xff\x84\xe2\x7a\xaa\x92\x28\x28\x9d\xc8\xcd\x07\x86\xe0\xec\xcc\xdc\x5b\xbb\xfa\xde\x4a\xff\x66\x80\x83\xdf\x50\x70\x55\xd8\x76\x65\x19\x67\x3e\xd4\x32\xd2\x45\xf3\xfe\xe7\xff\x31\x67\xc3\xe1\x1b\xb3\xea\x4b\xdc\x18\xb8\x65\x96\x54\x35\xea\xe4\x86\x72\x3a\xfe\x94\x5d\x72\xd0\xc8\x77\xbf\x67\x34\xac\x46\xf3\x8d\xee\xf7\xcb\x56\xb0\xfc\xd3\xc5\x82\x94\x82\x1a\xd6\xd9\x2e\xfa\xa7\x0f\x83\x0c\x59\x47\xb1\x95\xc8\x79\xe7\x86\x6d\x16\xe9\x76\x3e\x94\xbe\xbe\xa5\x4c\x40\x7c\xb0\x98\xe6\x14\x90\x2f\x25\x16\xc3\xfe\x6b\x3e\x37\x1c\xb8\xe6\x73\xd3\x19\x9a\xc4\x72\x1e\xc5\xdb\xd1\xf2\x1c\x77\x67\x75\x76\x5e\x8d\x65\x88\xd9\x73\x21\x97\x6c\x45\xcb\xef\x03\x5e\xd4\x2d\x18\xe4\x3a\xe8\x16\x0c\x2c\x09\x6d\x19\xc1\xf7\x51\xd3\x8e\x84\xb6\xdc\x31\x32\x82\x77\x07\x72\x3f\x94\xdc\x8a\x60\xc6\xdd\x20\x94\x33\x65\x9a\xef\x7c\xe7\x4b\x0d\xae\xd1\xcd\xc3\x90\x44\x64\x8f\x3e\x57\x79\x0b\x7d\xc3\x76\x28\x6d\xe2\x9e\xaa\x8c\x26\xa4\x42\x59\xcf\x50\x9a\x37\x2e\x03\xc5\xe3\x77\x47\x2f\x2f\x83\xd5\xee\x83\x23\xdd\x75\xc5\xad\x9c\xe9\x2e\xd5\x0e\xb6\x9c\x2d\x73\x75\x2f\x1c\x4d\x59\xab\xa3\x3c\x33\x92\xed\xc2\x5b\x64\xcb\x1e\xbd\xf0\x3a\x30\x92\x6d\x2f\x33\x94\xbb\x80\xfb\xc9\xe6\xdc\x6a\x46\x73\x4b\xa0\xe2\x48\x3b\x20\x7f\xe5\xd8\x76\x2f\xff\x4c\x55\x2d\x3f\xf7\x66\xf7\xf2\x73\xfd\x77\x23\x3c\x1c\xf9\xee\xcf\xcd\xf8\xff\x95\x1d\xfa\xcc\x25\x36\x2c\x98\x73\x16\x14\xab\xff\x54\x5d\x90\xba\x36\xfc\x2e\xdb\x8e\xd5\x3f\x38\x60\xb6\x48\xaf\x2c\x80\x2c\xd2\x0b\xdf\x25\x23\xe2\x9e\x2b\xdb\x71\x28\x5c\xe3\x38\xd2\xaa\x8e\x18\x3c\xdd\xe6\xea\x95\xd5\x91\xb9\x7a\xaf\x9e\xc2\x26\x3f\x66\x9a\x79\x24\x97\x76\x30\x73\xc3\x92\x0b\xdb\x5a\x60\xb5\xfb\xfd\x2b\x2f\x1c\x2c\x65\x58\x38\x29\xb0\xd8\x81\x41\xe4\x84\xf2\xce\x49\x3b\x5e\xe4\x99\x76\xe4\x47\x0d\x17\x93\x49\xba\xee\x0c\x5c\x6a\xe8\xff\x35\x2a\xd4\xdf\xfc\xb0\xb9\x1f\xfb\x7f\xd8\x55\x16\xee\x33\x58\x55\x04\x97\xe1\x55\xcd\x68\xe4\x4a\x64\x68\xd5\xb5\x27\x67\x15\x39\x6a\xfa\x16\x5b\xff\xc4\x20\x5f\x41\x81\x45\xe4\xb2\x6d\x99\x97\xf8\x9e\x1c\xc0\x09\xa5\xec\x50\x0c\x75\x4a\xb7\x82\xd3\x83\x31\x61\x3b\x9e\x14\x86\x84\x3d\xc1\x31\x5a\xc6\x84\x2d\xbb\xa6\xaa\x56\x03\xe9\xc7\x01\xfb\xe1\xc5\xca\x24\x5d\xf1\x17\x32\x5e\xeb\xc2\x58\x05\x08\xeb\x38\x18\x8c\x92\x3c\x1d\x30\x2e\x87\xb9\x4f\x84\x41\x87\xb9\x2f\x8c\xc0\xdb\x61\xee\x07\x5b\x43\x61\xee\x73\x9e\xa9\xea\x66\x68\x54\x76\x66\x7b\xf4\x2f\x83\xb0\xf6\x82\x0c\x2f\xf3\xf0\x3e\x10\x53\x16\x87\x61\x43\x0d\xe5\xa6\x4a\x99\x82\xce\x61\xcc\x32\xfa\x2e\xdc\xb3\xf6\xf2\xbd\x04\x4b\x5b\xe6\x4c\x3b\x94\xc6\xc2\x19\x5e\x5c\x36\x9e\xa6\x65\xe6\x83\xb4\xaf\xb0\xf6\x5e\xf8\x5d\x43\x92\xae\x3a\x42\x6a\x9b\x70\xd7\xc9\xc4\xba\x78\xbf\x1b\x2f\xb4\x35\xa4\x0b\x1b\x3c\x17\x0a\xf1\xbd\x98\x8b\x14\xde\x2e\x0c\xa9\x55\xdb\xa9\x2a\x07\x63\x7e\xdf\x68\x9e\x11\x3d\x94\x44\xf9\xdc\xb0\x02\x99\x2d\xcb\x60\x9d\xb6\x51\x21\x4a\x28\xbd\x51\xb9\x34\x8c\x02\x8a\xea\xce\x28\xa0\x73\xbd\x35\x15\xa5\x58\x52\x53\x43\x6b\xbc\x2d\x85\xec\xb9\xc2\x6d\x8d\xec\xb9\x1a\x22\xab\xa2\xca\x5b\x66\x43\xc6\xd0\x75\xf0\xb8\x53\x8c\xf9\x20\x12\xc0\x00\x9d\x0b\x35\x97\x41\x37\xcf\x2c\x8d\xa2\xca\x27\x1a\xc8\xbd\x2d\xdc\xe0\x1c\xb2\x6d\xfd\x8c\x00\xb5\x1d\x10\xcc\xe5\x2e\xd3\xe4\xb9\x59\x53\x99\x26\x27\x2a\x4f\xa3\x6e\x4e\x14\x80\xa0\x6e\xa2\x63\x36\xea\x66\xc5\xff\xc1\xb0\x9b\x15\x6d\xbc\x71\x37\x49\x28\xb3\xb6\xf2\x3b\xd7\xc6\xfb\x51\xf9\x9d\x1b\xaa\x1c\x43\x72\x96\xc9\x91\x91\x65\xb2\x4e\x64\xc2\xcb\xf1\x13\x23\x35\x65\x97\x47\xd0\xbd\xbc\xa0\x48\x56\x8a\x1a\x9f\x99\x98\xcb\x67\xbb\xd5\x90\x42\x9f\x86\x0b\x5e\x06\x7b\x7f\x29\x37\x03\x75\xb9\x19\x86\xed\x84\x62\x3b\xd4\x54\x19\xdd\x3b\xd4\x01\x0e\x79\xd9\xd1\xdd\xaa\xc9\x2d\x4b\xe0\x44\x6d\xb9\x9d\x40\x79\x35\xb6\x9e\x13\x28\xa3\xfd\xdc\xb2\xf7\xcd\x68\x19\x64\xef\x9b\xef\x40\xed\x05\x0f\x83\x06\x9f\x13\xae\x77\x39\x96\x81\x1b\x52\xc1\xd7\x13\x1d\x8f\xe1\x39\x27\xfe\xa4\xfb\x76\x68\x29\xdb\xc9\xc9\x95\x23\xf3\xdd\x56\x87\x34\xa6\xcd\x91\xd2\x91\x40\x6d\x6c\xab\xfd\x9f\x69\xa8\x97\xb1\x3b\x9f\x76\x36\xa4\x66\x63\xa6\xd5\xcb\x52\x08\x94\xd2\xf2\x96\x0c\x4e\xdb\x72\xa6\xcc\x93\x41\x2b\x72\x3d\x41\x35\x6b\xf0\x4e\x72\xf2\x2c\xf0\x39\x23\x67\xc9\x82\x46\x32\x9f\x87\x52\x7c\x79\x7a\x90\xf3\xfa\x6a\xcc\xb0\xcc\x6b\xad\xbf\x8d\xaa\xfb\x95\x66\xd4\x7d\x7e\xdf\x91\xcc\x19\x9a\x17\x98\x7b\x4d\x51\xc6\xa4\x16\x5a\x00\x69\xce\x92\xef\x24\x9f\xb4\x8c\x46\x1e\x7a\x2d\x73\xa1\xb8\xa6\x70\xba\x9b\x25\xe5\x7f\x6f\xff\x45\xca\xa4\xc5\xe4\x18\xde\xf6\xc9\xcd\xd0\x0c\x8e\x99\x5f\xba\xe9\xd0\x5d\x7c\x7c\xd6\xd8\xd0\x32\x7c\x3d\x85\x1b\xd2\x29\xf1\x3b\x94\x46\x83\x1a\xcd\x99\x9e\x71\xdf\xdb\xb2\x6e\x4d\x34\x7c\xdb\x99\x9e\x4f\x4e\xc2\xc7\xeb\xfb\xb6\xa9\xed\xb6\xf3\x9d\xa6\x26\x83\x51\xee\x74\x3c\x1b\xf6\xc7\x87\x34\x3d\xf8\x90\xf6\x23\x55\xe5\xa0\x09\x4b\xb4\x71\x6b\x85\xef\xc9\xb8\x55\xd7\x5b\xa8\xf7\x77\x49\xab\xba\x21\x88\xa5\x30\xfc\xe6\x8c\x4e\xcf\x59\xa0\x17\x51\x07\xfb\xe3\x90\x77\x16\xce\xb1\xc5\x8b\xe8\x85\x4d\x8e\x68\x4e\x8a\xc0\x39\x4b\x83\xd7\x7d\x9c\x55\x17\x89\xf8\x23\x36\x11\xe5\xe4\xc7\xaf\xd3\xce\xc5\x47\xc6\x68\x98\x9d\x02\x8f\x67\xc9\xe0\x9c\x80\x97\x27\x1f\xc9\x9c\xf3\x8f\xda\x0d\xd1\x06\xca\x9e\x35\x4b\xc6\xed\xbc\xb9\x47\x28\xb7\xc2\x6c\x88\xd5\xa2\x6f\x35\x4e\x66\xcb\x6b\xfc\xeb\x0c\xdd\x30\x57\x9b\xa1\xfe\x57\x53\x79\x94\x99\x45\x07\x16\xaf\x68\x4a\x14\x58\x5c\x31\x3e\x6c\x19\x97\x26\x6e\x80\xfb\xcb\xc2\xb5\x14\x2a\x5f\x0a\x3b\xe5\xcb\xc2\x71\x99\x3a\x78\x38\xcf\xe8\xaf\x55\x35\x38\x17\xef\xaf\xf3\x77\x23\xba\x91\xd5\x18\xa1\xe7\xeb\x29\x2e\xb4\xea\x9c\xdc\xbc\xeb\xbe\x9e\xe1\x92\x9a\xca\x02\xf2\x96\x69\x6e\x10\x5e\x1c\x12\xbc\xf0\x42\xdd\x0e\x09\x8e\x06\x52\x71\xbe\xe7\x86\x6b\x7e\x6f\xf0\xdf\x42\x0e\xe1\xe1\x86\x9a\x2e\xa4\x59\x65\xb3\x22\x26\x61\x93\xd4\x98\x27\xa8\x6c\x48\x33\xaa\x32\x07\x01\x2f\xdc\x39\xf7\xcf\x61\xe0\x4c\xc7\x4f\xe7\x2f\x4a\x16\xe1\x78\xee\x01\x87\x73\xc2\xe3\x28\x0b\x7f\x5e\xc7\x9a\x56\xd4\x61\x49\x4d\xe9\x71\xfa\xfa\x0f\x2a\x0f\x05\xfd\xd6\xbc\x9d\x7e\x2c\xeb\x86\xd2\x8e\xe3\xb1\x18\x94\xcf\x03\x4a\x18\xcf\x19\xb7\xd1\xc6\xd1\x2a\x39\xc5\x71\x94\x8a\x4e\x63\x1c\x6d\x8c\xd3\x18\x67\x37\x2a\x8d\xf1\x8c\xde\xea\x67\x05\xe8\xe0\xa4\xfe\x74\x13\x46\xc6\xff\x39\x95\x39\xbb\xd1\x50\x9d\x6b\x70\x52\x7e\x4e\x4e\x9d\xfe\x95\xca\xfc\x9d\x37\xe3\xcb\xc3\xa9\x64\xe0\x39\xdf\x97\xec\xcf\x69\xf0\x91\x57\x65\xe1\x99\x51\xea\xfd\x39\x79\x1e\x9b\xd1\x81\xbb\x2b\x76\x03\x99\x78\x66\x74\x93\x58\x78\x06\x9b\x4c\x09\x91\xf7\xe0\x00\xfc\xf9\x25\x39\x58\x1d\xc7\xfc\x46\x57\xf9\xe7\x95\x6b\xa9\xaa\x50\x22\x38\xa7\xf3\x21\xe7\x25\xad\x18\xdf\x19\x55\xe9\x9f\x57\x0a\x51\x4b\xe8\xa0\x33\x0f\xe9\x3f\x9f\x1b\xc4\x0b\xe1\x81\x6e\x02\xd2\xc0\x03\x5d\xa3\xa5\xaa\x27\x2e\x94\x86\xc6\xbb\xfe\xcf\x62\xca\x48\x1f\x5a\x39\x3c\x0b\x41\xf5\x5c\x23\x33\xe7\x43\xc6\x36\x92\x89\x67\xc7\xfe\x20\x33\xce\x5c\x9c\x86\x3f\xc3\x3e\x70\xc5\x29\x90\xb7\xe6\xc4\x39\x90\x77\x11\x87\xb0\x15\xc8\xbb\x66\x26\xd5\x3c\x0e\x01\xd2\xc9\x92\x17\x4e\xba\x97\x4c\x3c\xcd\x29\x5d\x1e\xca\x3f\x69\x51\xf0\x92\x8d\x67\x39\xeb\xfc\x43\x79\x00\x03\xca\xbf\xcc\x87\x4a\xf5\x85\x17\xba\xc1\x3b\xf7\xd8\x7c\x67\x75\x1c\x82\xbf\xd1\x3b\xc9\x7c\xb6\x0c\xde\x79\x92\xdd\x68\x19\xbd\xb3\xf2\xe6\x37\x78\xe7\x44\xcb\x65\x7c\xce\xc9\xb3\xcb\x78\x9c\x0b\xd1\xec\x72\x9a\xe5\x45\x50\xc0\xa5\xd0\xda\x89\x0a\xe2\x72\x9a\x65\x9c\x39\x0d\xdd\xb9\x0d\x3c\xb0\x2e\xc7\xc0\xee\xfc\xbf\xa1\xe3\x76\x28\xe5\x79\xcc\xd0\xf4\x92\x44\x73\x71\x1d\xcc\xf8\x4e\x33\x7a\xf6\x9d\x29\xd4\x59\x65\x16\x4f\xe3\x45\xf5\x50\xf6\x3b\x5e\x50\x8e\x89\xe8\x50\x43\xb1\x0c\xa1\x2e\xe5\x16\x2b\x50\xda\x54\xce\x0e\xbd\x0c\x9c\x59\xf1\x90\x37\x70\x66\xc3\xd7\xec\x52\xb4\x6a\x2e\xea\x4b\xc1\xaa\x75\x59\xc4\xb8\x64\x1d\x2a\xd8\xb4\x2e\xac\x43\x44\x2f\x5c\xb2\x0e\x35\xe7\x40\x79\xa8\xcb\x85\x13\xd2\x39\x50\x0f\xa8\x8f\x0b\x19\x8e\x64\xff\x95\x76\x1c\x06\xc6\xbe\x91\xb5\xa8\x13\x4d\x75\x9d\x46\xd9\x1d\x0c\x47\xb7\x11\x3a\xee\xcb\xc6\x22\x5e\x96\x06\xe3\x3c\x4f\xe6\xd4\x01\xb0\x28\x2b\x2f\x6c\x45\xb3\xfc\xdb\x2d\xcf\x48\x9d\xd5\x59\xbe\x97\x91\x3a\xcf\xec\x5b\x67\x84\x26\xe7\xc1\x32\x54\x67\x5b\x33\x5d\xfe\xb9\x90\xbf\xba\x25\x0e\x2e\x46\x27\x43\xd2\xc2\x0f\xf3\x92\x25\x69\x1e\x8b\x2f\x6f\xd9\xe0\xd8\xc6\x0e\x90\x5d\x98\xc3\xaf\xd3\xe1\x45\xe6\x5c\x97\x02\x64\x27\x4a\xa7\xeb\xc4\xd3\x98\xf9\x90\x3c\x82\x5d\xeb\x2a\x56\xfa\x18\x5d\xe4\x21\xe5\x4f\xe7\x6b\xed\x92\x21\x89\xc4\xc7\x0f\x55\x5d\x75\x42\xda\x0d\x18\x42\x19\x08\x38\x1b\xc5\x49\x91\xd9\xd5\xc5\x4f\x8a\x23\x9f\x79\x8d\x5b\xfa\x57\x46\x29\xf6\xa3\xd2\x57\xd7\xce\xfe\x57\x48\x6c\x43\x61\x61\xcc\xcf\xea\x04\xa9\xcb\x40\x9e\x24\x5a\x5e\xc6\xf1\x3c\xd7\x4c\x8f\x97\xc3\xcb\x18\x9b\x38\xe7\xf1\x96\xb9\xff\xc1\x70\x2e\xc5\x96\x84\xd2\xfc\x87\xc7\x28\xce\x73\x62\x63\x33\x38\xe6\x3c\xcc\x71\x01\xbc\x5c\xc4\x5d\x02\x78\xc9\x4b\xf8\x52\x84\x66\xe1\x15\x63\xf8\xcb\xc6\x6d\x74\x55\xa3\x1e\x71\x38\x65\x0e\x9a\xb8\x4b\x1b\x0c\x73\xcf\x33\x6d\x3e\xcb\x86\x70\x7e\x55\xe5\x27\x45\x34\xbd\x64\xe3\x69\x4e\x73\xfc\x50\xfe\x7d\x38\xa5\x90\x32\x1b\xe2\xaf\x91\x32\x1b\xc1\x2c\x97\xe2\x35\x67\x85\x8b\x28\x5c\xb3\x22\x63\x5e\x0a\xc9\x9c\xc6\x2d\x7f\x28\x25\x01\x9c\xf9\xee\xe7\x2e\x52\xe8\x44\x22\xfc\x2f\x8b\xb1\xa1\x04\x2c\xb4\xe9\x42\x9e\x46\xe8\x39\x2e\xc7\x6b\xe2\x92\x6c\xf8\xcd\x89\x11\xe3\x92\x11\x67\x1e\xe9\x41\x3c\xf4\xc8\x2f\xd9\xa6\xba\x38\xb7\xd5\x01\x3a\x35\x55\x9b\xf6\x50\xa8\x25\x79\x23\x94\xae\x7b\x58\x71\xf5\x1a\xb2\xbe\xb6\x0c\xad\x97\xf2\x74\xa7\xe6\x9f\x3b\xf4\xd8\x9a\x4d\x15\x35\x94\x60\xc3\x5b\x28\x3d\xb0\xfc\xa0\xb8\x14\x12\x79\x3a\x5b\xf6\x43\xe9\x40\x2f\x8b\x4d\x97\x8d\x48\xd8\x49\x8d\xe2\x39\xc3\x60\x8d\xe2\x89\x47\xf2\x25\xab\xd1\xc4\xf8\x76\x39\xff\x32\x0e\xba\x97\xd3\x28\x63\x97\x35\xa6\x67\x45\xe1\x6f\x10\xcf\x8a\xba\xc6\x20\x9e\x13\x2f\xdb\x4b\x81\x8d\x3d\x1c\xb4\x99\xd7\xe0\x2e\x7c\x29\xb0\x31\xc6\xb6\x4b\x99\x93\xf7\xe0\x3c\x37\x3f\x84\xd9\x7b\xcd\x92\x38\xae\xc4\x57\xb3\x72\xe3\x60\x32\x2c\x89\xe3\x3c\x7c\xc9\xa4\xb4\xc7\x48\x1f\x72\x49\x86\x2f\x62\x1b\xc2\x95\xd7\xa0\x9e\x13\x37\xf3\x4b\xb9\x92\xeb\xb6\x94\x66\x50\xcf\x1d\x09\x42\xc6\x98\x39\xcb\xbf\x35\x1f\x86\xea\xdc\x83\xb3\xdf\x9d\xba\x1e\x0e\xda\x0d\x16\x05\xcb\x54\x90\xe1\x26\x20\xf6\xea\x46\xa6\x48\x4d\xab\xf4\xb1\xfe\x1b\x9c\x93\x9c\xe7\x0f\x65\x38\xae\x54\xd5\x8d\xba\x76\xc8\x8f\x0c\x83\xfc\xb1\x64\xe8\x95\x5f\xbc\x9d\x26\x86\x9f\xb2\x26\xef\xa0\x0b\x05\xf2\x65\x87\x39\x90\x6f\xe1\x3c\x69\xfc\xcd\x86\x2f\xeb\xe5\x74\xc8\x0b\x07\xc9\x6b\x58\x69\x50\x53\xe8\xdc\xf5\xf9\x50\xb8\x2c\x2b\xad\x3e\xa3\xd9\xa1\x74\xbf\x1b\x8b\xe2\xa1\xe4\x52\xc1\x86\x1b\xb6\x77\x65\xe1\x14\xd6\xb7\x1b\x3b\x75\x38\x1e\x33\x55\x65\x89\x6c\x6c\x15\xd9\x30\x56\x2b\xa9\xa9\xb9\x31\x38\xe4\x43\xca\x6c\x78\x84\x52\xd0\x19\x5b\x55\x99\x8b\x37\x0a\xd8\x4b\x26\x8d\x9d\x1b\x64\x18\x9c\x2c\x73\x73\x5b\x39\xcd\x1f\xda\xbc\x8b\x0d\xdd\x20\x9b\x1b\xc5\xa6\x31\x36\x27\x0e\xfa\x86\xd1\x2c\x28\x4b\x81\xd1\xcc\xfd\x39\x7d\xd5\x6d\x84\xa6\x69\x09\xf6\xa5\x9c\x8b\xae\x40\x09\x9c\xac\xe6\x43\xc5\xb5\xbd\x8d\x2e\x25\x83\xcb\x77\xc2\xec\xb7\x74\x6f\x48\xcd\xa7\x0b\xff\x86\x51\x34\xc3\xb3\xa7\x76\x78\x84\x2d\x05\xd9\x4d\x12\x45\x5c\xd3\x2a\x13\xbc\x00\x2f\x99\x42\x26\x19\x06\xae\x69\x95\x09\xf9\x0f\x2e\x27\x2f\x46\x81\x62\xc4\xcd\xc2\x7b\x1e\xc4\xcd\x45\x5c\xbd\x21\x37\x27\x4a\x12\x23\x6e\x9e\x95\x85\x53\xd0\x5d\x72\xca\x18\x0b\x73\x92\x37\xe1\x52\xb2\xe0\x41\xbe\x83\x4b\x46\x94\x1d\x11\x01\x23\xca\x46\x80\xb1\x11\x65\xc2\xb5\xa7\x39\xc5\xbb\x1c\x52\xaf\x19\xc5\x6a\x19\x1a\xb3\x85\xfb\x0b\x1a\x73\x6d\x06\x2e\x64\xcc\xb9\x56\xca\xaa\xc2\x48\x37\xd4\x23\x23\xe1\xc8\x7f\x39\xac\x0e\xc7\xb7\x6b\xf9\xe5\xb7\x77\x0a\x65\x44\x7d\x9b\xf1\xac\xbe\x3d\x7e\xd4\x63\x5a\xf5\xac\xc2\x8d\x85\xa2\xb9\x70\xb7\xb8\x96\x4c\x5a\x2b\x52\xb3\x22\xf2\xd6\xce\x7f\xe8\x54\x0d\xf6\xca\xf2\xbb\x64\xef\x14\x3e\x2f\x21\xfc\x7c\x2f\x19\x72\x56\x7d\x9b\xf1\xec\xc0\xe4\x97\xf3\x55\xb3\x59\xc8\x73\x7c\x84\xfa\x28\x56\xee\x48\x27\x32\x07\xef\xb4\xfa\x73\x21\xff\xa5\x07\x4e\xcf\xe8\xe4\x44\x80\x33\xf5\xb5\xb4\x21\xf6\x71\x84\xf4\xe8\xf8\x50\x8f\xd1\xf0\x63\x5b\x84\x1a\x72\xb3\x53\x1b\x8f\x11\xaa\xc9\x74\x45\x4d\x6d\x01\x19\xc7\xff\xc9\xac\x15\x66\xb7\x36\xac\x4b\xa6\xa4\xb5\x38\x58\x8e\x96\x23\x03\x08\x50\x9d\x71\x24\x30\x56\xe7\x19\x23\xe3\xb5\xbd\x5d\xf8\x52\x69\x87\xd7\xae\xa9\x2a\x67\xe3\x5c\xc1\x8a\xa5\x1b\x18\xfd\xc0\xee\xdc\x6f\x99\x3b\x61\xbf\xca\xee\xf4\x4a\x20\xb2\x3b\x9d\xf1\x4f\xb8\x94\xbf\x78\xed\x97\x52\x82\x46\xec\xfc\x97\xf3\x17\xe3\xe4\x77\x39\x7f\x71\x65\xdb\x2b\x08\x6f\xed\xb7\x0f\xc5\x9d\xb3\x09\xb7\x53\x8f\xa7\x4c\xb9\xfc\x31\x03\x01\x17\x9a\xa7\xe9\x76\x72\xf1\x4c\x87\xfd\xe1\x58\x72\xf2\x1e\xb3\xeb\x37\x81\x95\x3d\x85\xb7\xd4\x08\x4c\x95\x3c\x0e\x77\x4b\x33\xcf\x23\x62\x23\xc7\xc9\x42\xb5\x36\x7b\x45\xf1\x79\x4f\x33\x7c\x28\x48\x06\x63\xf9\x3e\x94\x02\xf4\x60\x17\x0a\xd0\x9b\x1b\x31\xc3\x49\x91\x0d\x08\xbe\x8c\x56\xfa\x34\xd3\x21\xb5\xe5\x5a\x28\x65\x16\xac\xa1\x3c\xb6\x74\xf8\x27\xca\x8d\x2a\xb4\xee\xbd\x57\x04\x33\xba\xc2\x03\x2e\x2f\x3f\x4b\x21\x94\xd1\x75\xbe\x65\x4b\xdd\x23\xfd\x2b\x0a\xaf\x19\x1d\xea\xa1\x1e\x49\xca\x39\x3f\x97\x11\x48\x17\x5e\x34\x97\xcc\x59\xb5\x59\x51\x79\xd9\x9c\xb5\x9d\x4d\x7e\x01\x41\x9a\xdb\x42\xd1\x73\x6b\x72\x23\x28\x7a\xee\xa9\x9a\x76\x2e\xad\x29\x7d\x48\xa7\x87\x67\xaa\x61\x46\xcf\x9d\xd7\x9f\xa1\x44\xb3\xfd\x14\x2f\xb7\x88\xbb\xba\xc8\x7b\x9c\xf7\xde\xe5\xfc\xe5\x70\x7d\x59\xc9\xd6\x78\xab\x6a\x8a\x7b\xca\xb4\x53\x60\x73\x0e\xa6\xdb\x79\x1a\xca\x84\xb6\x72\x52\x2e\x7b\xa3\xe6\x97\xb5\xe0\xb9\x03\x88\x7c\xcb\x03\xe0\xb2\x28\x09\xb3\xba\x7c\xaa\x91\xdd\x14\xb2\x36\x23\x49\x28\x2a\x6d\x11\xc0\x62\x9c\xd1\x44\x13\x5d\xb7\xa0\x34\x36\xa2\x9b\xf2\x09\x9f\x3b\xc2\xf2\x6d\x6d\x20\xfb\xf6\xb6\xb5\x9c\x3d\x6d\x6b\xd7\x8e\xb8\x2a\x6b\xd7\xda\xbc\xcd\x6d\xed\xda\x11\x89\x65\xee\x5a\x8d\x83\x73\xeb\x6d\xba\x23\xcb\x2a\x2a\x6d\xed\x96\xf1\xfc\x5c\x98\x86\xb4\x03\x59\x65\x87\xa5\xed\xc8\x84\xb2\x86\xbd\x77\xbb\xc2\xd2\x16\x1a\x58\xa3\x99\x2e\x0c\xef\x97\x62\xcd\xd6\xe6\x2e\x91\xf9\x6b\xa1\xd6\xbf\x14\x5d\x96\x00\xaa\xcb\xd1\x65\x9b\x18\x49\x03\x9f\xae\x3c\x9c\x15\x33\xb6\x72\x0b\x2a\x64\xec\xa9\x1a\x52\xc7\x63\x30\x1a\x09\xb3\x9b\xe8\x4a\x63\x9d\x2e\x74\x7e\x97\x82\xc6\xd6\x23\xf7\xff\x93\x5b\x2b\xa2\xec\x15\x43\x9c\xe7\x77\x13\x98\x66\x94\xd4\x45\xca\x20\xa3\xa4\xae\xe8\x0a\x6e\xb3\x87\x4c\x87\x5e\x76\x9b\xb0\x8a\x4b\x16\xb8\x57\x28\xb9\xd9\x3b\xfc\xa4\xde\xe3\x39\xca\xb2\xc7\xbd\xaf\x07\x27\xfa\xdd\x84\xe9\x19\x5e\x75\xe1\xf5\x7c\x29\xf6\xec\x29\x4c\x5d\xb1\x12\xde\xb9\xca\x02\xfc\x14\xa6\x13\x29\xd6\x11\xa0\x6c\xbc\xdb\x78\x7d\x5e\x32\xde\xad\xca\xcd\xf2\xf1\x3d\xc3\x79\x95\xed\x6e\xe1\x22\x7d\x7d\xd8\xaf\x6f\x55\x5d\x8a\x0c\xf6\x63\x0e\xc5\xf6\x90\x61\xef\xa9\x9a\x76\xa6\x5e\x69\x0b\x4a\x9e\x4e\x25\xfd\x6b\x70\xdc\xc2\x1f\x5f\x50\x44\x8a\x19\xa7\x75\x45\xeb\xf8\xf1\xa5\xc3\x7f\xc8\x7a\xf7\x54\xa5\x8f\xed\x45\x0f\xa5\x14\xaa\xf9\xc7\xed\xe3\x03\xab\x93\xf9\x6e\x45\x4a\xff\x98\x61\xcd\x94\xe9\x3d\x91\x5f\xb6\x1c\x12\x71\xe2\x63\x39\x84\xb5\x93\xb9\x6e\x4d\xd8\x97\x70\x5a\x93\x5d\x10\x9c\xd6\x8d\xf7\x83\x71\x5a\x17\x31\x20\x86\x62\x5d\x79\xdc\x7f\x0c\x7f\x91\xa1\x7a\x97\x71\x40\x3e\xde\x3a\x2c\xf2\xc7\x80\x32\x99\x2a\xaf\xea\x19\xca\x13\xc7\xe1\xf9\x1a\x22\x91\x7d\xf5\xb5\x10\xb0\x52\x26\x6f\x0f\x6e\xb6\xaf\xe7\x0d\x96\xfc\x25\x61\x23\x57\xab\xac\x67\xab\xa1\xcd\x90\xf1\xec\x95\x6e\x15\xe1\xb5\x48\x7d\x63\x2c\xd1\xe7\xc3\xb4\xaa\x9f\x82\x23\xc8\x5e\x56\x70\x83\xbc\xbe\xfe\x7d\x18\x9d\xc2\xa8\x6a\x6e\x56\x59\xcf\x56\x34\x62\x32\x9e\xbd\xaa\x43\x19\xcf\xe2\xde\x62\x44\xd0\x85\xfb\xd2\xa5\xc0\xa9\x15\x3d\x8f\x12\xdf\x26\x4c\xf1\x52\x70\x54\xd2\x6b\x5c\x0a\x8e\xda\xe4\x7a\xb9\x14\x1c\x35\x27\x5c\x5e\xd6\xa9\x85\xeb\x3a\xc8\x9d\x1b\xe3\x91\xa1\x3b\x17\xa6\x64\x43\x77\xae\x28\xa4\x15\x0e\xb5\x36\xba\x2b\x87\x43\x6d\xac\x45\x97\xed\x5a\x1b\xa9\xdc\xe1\x50\x60\x7d\xad\x4b\xe1\x50\x6d\xa5\x55\x59\x80\xc3\xc9\x65\xf4\x3a\xf3\xd4\xf9\x39\x29\x1d\x1b\x8c\x5c\xb6\xe9\x42\xf1\xe4\x04\x2f\x18\x01\xb4\x12\x98\x6d\x04\xd0\x8a\x95\xcb\x08\xa0\x6d\xed\x50\xf7\xff\xfd\xbf\x1a\x05\xcd\xcf\x0c\x2f\xea\x83\x9f\x13\x9b\x8f\x34\x2a\x8f\x21\x6e\x03\x99\xce\xda\x01\xa7\xfc\x39\x99\x01\x77\x8c\x13\xe2\x02\x34\xf6\x90\x45\xfe\xf8\x8c\x5b\xf9\xfd\x71\x16\xbe\x14\x62\xd5\x72\xc9\x2b\xc4\xaa\x3d\xa2\xe2\x3f\x39\xb5\xf3\xea\x1e\xb0\x66\xe7\xd5\xed\xec\xef\x58\xe7\xf8\x29\x33\x4a\x2c\x70\x97\xcc\x73\xb5\xbf\x1f\x3a\xd5\x77\x28\xc5\xcd\x8d\x8c\x46\x68\x99\xf0\x50\x59\xee\x0a\x39\x39\x8c\x6b\xda\xf2\xb2\x94\x1d\xaf\x46\x6e\xfe\xb3\x6e\x14\x7e\xf2\xe7\xb7\xf4\x91\x9a\x8e\x0b\x84\x9f\xc8\x8c\xd7\x72\x55\xcb\x8c\x57\x49\xbc\x66\x58\xd3\x96\xa3\x27\x2b\x5e\x5b\x2f\xa5\x84\x9c\x0c\xdb\x89\x7b\x49\x41\x71\xc9\xc2\xd7\x16\xef\x31\x05\x78\xb5\x85\x06\xf0\xcf\x57\x3a\xf6\x47\xc3\xa1\x36\x1c\x05\x2e\xc5\x7b\xd5\xc8\xa6\x0a\xf7\x6a\x9b\x07\x98\xc2\xbd\x6a\xe5\xb1\x28\x34\xd4\x13\xcf\xd9\xeb\xcf\xfe\x2d\x3b\xad\x7c\xf4\x5d\x5a\xd1\x49\xe0\x78\x39\xf6\xab\xc1\xf8\x8d\x9b\xba\x46\x28\xb9\x6d\x70\x7f\xc8\xa4\xd8\x70\x22\x30\xa6\x6a\x23\x5c\xf7\xfa\x73\x76\x8e\x4c\x9a\x12\xfc\xe7\x1d\xfd\x27\xb6\x8b\x9b\x82\xf1\x56\xcf\x8d\x25\xf4\x92\xb9\xb1\xe4\x38\xcb\xda\x58\x49\xe3\x71\xc9\xda\xd8\xea\xdb\xc5\x33\x87\x1b\x5d\x85\x8c\x8d\x75\x65\xe9\xe5\x5d\xb3\xcf\x50\x9a\xc2\x15\x4a\xf1\xb1\x6f\xcd\xaa\x9a\xfc\xa0\x92\xff\xb7\xac\xcb\x2d\x94\x02\x8e\xa8\x4c\x96\x6d\xa3\xf0\xf8\xb3\x07\x7b\x36\x90\x23\x3f\x32\x85\x7a\x40\xec\x6c\x3c\xed\xf4\xbc\x0a\x9d\x96\xb8\xe7\xff\x94\x96\x78\x9f\xa1\xb4\xd1\x39\x76\xb2\x74\x96\xbc\xcb\x65\xe9\x6c\x86\xc1\x5d\x46\x85\x6d\x84\x11\xdf\x0a\x7b\xab\xa4\x18\xba\x15\xf6\xd6\x8c\x95\xf1\x50\x0f\x43\x62\x87\xde\x32\x89\x36\x42\x5e\x6f\x59\x44\x0b\xce\x0b\xf7\x61\x6c\x5f\x1f\x25\x23\xcd\x36\x82\x0e\xef\x63\x29\x65\x8b\xc7\x72\x1f\x52\x68\x00\xf6\xf7\x90\x97\xf6\x41\x3a\x54\x10\x40\x4d\x87\xfa\xc1\x92\x46\xbf\x72\x9e\x08\xf5\x93\xb3\x56\x28\xfd\xa0\xf7\xdd\x2d\x13\x6c\x45\x74\xbc\x65\x65\xad\xbc\x96\x6f\xe7\x2b\xc6\xe7\xe6\x76\xbe\x62\x6e\xdf\x5b\xf9\x8a\x1b\xfa\x93\xfb\x90\xeb\x25\x89\x38\x6e\x99\x5c\x1b\x6a\x8f\xfb\x00\xbf\x32\x6d\x7e\x55\xc6\x58\xac\xbc\xc0\x04\x6e\x64\xdb\xca\xc5\x61\x60\xdb\x46\x78\xcc\x7d\x48\x79\x81\xc7\xd9\x7d\x08\x5c\x74\xe7\xe7\xb5\xed\x49\x59\x61\xd0\xdb\xc6\x6b\xfc\x56\xc8\x5d\xe1\x90\xdf\x4a\x89\x5c\x38\x2e\xb7\x02\xf0\xca\xca\xea\xca\x52\x64\x4c\xb6\x75\x1f\xe2\xe2\xa4\x84\xbd\x65\xf0\xad\x70\xff\x5b\x79\x8d\xeb\x59\xfe\xed\xf0\x71\x1f\x56\x82\x79\x6b\x1b\x2d\xf7\x04\xf6\x6f\x19\x2e\xb7\xe0\xcc\x7b\xcb\x8e\x7b\xa2\xba\xb9\x4f\xc3\x27\x31\xf9\xa7\x14\x5d\x38\x1d\xdf\x0a\xeb\x23\x07\xfe\x32\x58\x6e\xc5\x4e\x78\x9f\xf2\xda\x43\xab\x73\x2b\xcb\x30\xa9\xda\x1f\x4a\xf9\xc3\x1a\x6d\x3a\x1d\x3c\x73\x28\x7b\x6b\x39\x8e\x94\xf9\x15\x75\x42\xc9\xe5\x39\x23\x53\xbc\x5b\x37\x17\xbd\x65\xa6\x9c\x3d\xdf\xe9\xee\x41\x9a\xba\x15\xb5\x76\x66\xc3\xda\xd8\xd8\xcd\x0c\x6f\x1b\x14\x0d\x87\xbb\x80\xbc\x45\xa9\x76\x2b\x86\x6d\x92\x54\xf7\xb6\x79\x71\x93\xe1\xf8\x76\x8e\xdd\x49\x17\x0a\x4c\x4b\xa2\x6e\x83\xdc\x4e\x3c\xda\x80\xb5\x9d\x35\x65\x3f\xa9\x9b\x4e\x28\x09\x1e\x95\x0d\xac\x6c\xb8\x13\x99\xfc\x56\x98\xda\x9c\x23\x65\xd2\x6f\x58\x9c\xb8\x8b\x1e\x50\x75\xa6\xa6\x9f\xd0\xfc\xc5\xe5\xb7\xef\x01\xe5\xf4\x64\xa9\x29\x95\xde\xe2\x27\x24\xe6\xae\x83\xc1\x48\xce\x23\x1f\xc8\x5d\x0c\x32\xb5\x68\xd3\xf2\x03\x29\xc7\x8c\x8e\xbb\x9d\x88\x7e\x19\x1d\x77\xc2\x7e\x6f\x05\xc9\x4d\x34\x9c\x77\xb1\x62\xae\x66\x6c\x76\x4b\xe8\xa9\xaa\xbf\x60\xd5\x8a\x55\xb3\x19\xa9\x5f\x5a\x18\xdf\x6e\x05\xd4\x6d\x84\xd7\x5b\x01\x75\x93\x1b\xe6\x96\xc9\x34\xde\x5d\xb7\xe2\xe9\x36\x39\xe7\x8c\xce\xfb\x34\x13\x52\xd9\xf1\xd8\xb3\xd5\xd0\xac\x47\xa8\x53\x1f\x0e\x28\xbd\xa6\xfd\xb4\xbc\x95\xfe\x76\xe1\xcf\x74\x2b\xd6\x6e\xa1\x16\x34\x8c\xef\xce\xa9\x70\xf6\xdb\x8d\xfe\xdd\x30\xbe\x0b\x59\xd2\x30\xbe\x0b\x11\x0d\x18\xdf\x5d\x7d\x03\x18\xc6\x77\xad\x8c\x46\x7e\x28\x5c\xef\xb7\x0c\xb1\x0b\x15\xff\x2d\x43\xec\x9c\x83\xef\x2c\x13\x57\x26\x4e\x86\xd8\x8d\xbb\xf2\x5d\x0d\x5c\xb6\xf3\xa1\x37\x71\x67\x00\x7e\xf9\xe7\xaf\x2c\x18\x90\xb7\xcb\xa8\xbe\xab\xb1\xe1\x2a\x3b\xb5\xd3\x90\x92\xee\xd5\x14\xca\x36\xc3\xcb\xf2\xae\xd6\x19\xbe\x94\x0c\x3e\x9c\x22\x99\x69\x13\x96\x7a\x57\xeb\x08\xc8\xf8\x75\x57\x43\x85\xb6\x50\x53\x23\xe7\xaf\xb4\x8d\x49\x73\x74\x2b\xe5\xee\xae\x1c\xfe\xea\x6d\x5c\x18\xb7\xf4\x89\x2b\xcb\xa1\x07\x0a\x92\xae\x51\x7c\x17\x19\x68\x0c\xe2\xbb\x8d\xf7\xfb\x50\x1f\x1d\x30\x7a\x37\xf6\x78\xa7\x07\xbd\xeb\xc8\xd9\x0e\xc0\xef\x36\xba\xd1\x32\x4c\xef\xae\x3b\x94\x1e\xdd\x16\x9f\xef\xa6\x05\x5f\xff\x21\xa7\xa9\x31\x7c\x9f\x56\x27\xe4\xa5\x24\x87\x1d\x4a\xef\xb3\x23\x7d\x7c\x5c\x75\x41\x6a\xac\x30\x8a\x66\x05\x12\x61\x1c\xb7\x32\xe9\xae\xc9\xa4\xca\x6c\xbc\x2b\x87\xb3\x61\x7e\xa3\x26\xb0\x86\xf4\xaf\xe7\x13\xd9\x89\xee\xa6\xbd\x81\x3a\xf7\x56\x74\x61\xc3\xb7\xf9\x6e\x4e\x26\x81\xac\xe2\xe8\xc2\xf7\xfc\x39\xba\x70\x21\x03\x38\xba\x10\xe7\xf9\x5b\xc1\x85\x0d\xb3\xd9\xdd\x40\x4e\xe3\x9f\x84\x04\xb2\xd3\xc8\x50\x9a\x6a\xfe\xde\xc0\x69\x3d\x15\x25\x8b\x65\x64\x8e\xbc\x29\xa9\x79\x3d\x77\xe9\xca\xc8\x9e\x87\x15\xd1\xb3\x77\x73\x7a\xbf\xb7\x3b\x07\x81\xf2\x47\x92\x35\xc7\x3b\x30\x3b\x6f\xd2\xa6\x62\xb2\x7b\xbe\xbb\x6d\xdd\xa3\x07\xdd\xc8\x23\xe3\xb4\x59\x6a\xa4\xa6\xf0\x22\xb2\x0e\xba\x90\x31\x3c\xde\x4e\xe1\x3b\xb9\x11\x15\x11\x79\x8e\xb7\xe6\xe5\x33\x02\x75\xab\x95\xf4\xf7\xd1\x04\x86\xfa\xaa\x2c\xfd\x3d\xe2\x16\xc9\x9e\x8c\x2d\x5c\x0e\xd8\xb7\x4c\xe2\xa3\x71\x98\x64\x11\x2f\x68\x94\x0c\x2d\x5c\x06\xe7\x5c\xc1\x92\x2d\x3c\xb1\x1b\x5f\x8d\xde\x3b\x46\xc8\x06\x75\x29\x4e\xe0\x84\x32\xd0\xf1\x01\x25\xc8\x8b\x9a\x1e\x34\xce\xb7\x87\x9f\x12\x44\xa6\xcd\x3f\x79\x5c\xd0\xa6\xde\x46\x38\xf8\xdc\x8a\xa3\xec\x38\x18\xde\x8a\xa3\x2c\x28\x65\x6e\x85\x51\x8e\x06\x23\x91\xe5\xbe\xe0\xfc\x7e\x3b\x8c\xf2\x65\xd0\x0a\xa3\x6c\xa4\xb2\xbd\x15\x46\x39\xde\xee\x25\x41\x8e\x33\x94\x50\xf8\x56\xa8\x67\xb2\x71\x28\x34\x1c\x72\xcb\xad\x2e\x8b\x7f\xab\x2b\x65\xe6\x0f\x9c\x32\x99\xfc\x5b\xe3\x7a\x54\x5e\xe1\x5a\x11\xc5\x14\xa9\xd9\x50\x3c\xdc\x8e\xd4\xc4\x67\xe9\x96\x73\xc0\x59\xd2\x28\xbc\x92\x0b\x41\xce\x01\x35\xec\x58\x29\x88\xe7\xff\xba\x30\x97\x0f\x65\x66\xc1\x8e\x55\x18\xe7\x24\x7b\xd7\xed\xcc\xc1\x20\x25\x18\x56\x79\x66\x3f\x75\x83\x2a\xbc\x94\xd0\x4f\x60\x32\x82\x5c\x3e\xb1\xb1\x1a\x72\xb9\xe2\xb3\x04\xaa\xf2\x06\x0c\xc3\xa8\xca\x27\x2e\x9c\xb7\x02\x35\x67\x43\x36\x1a\x06\xc6\x41\x4c\x54\xb8\x65\x23\xc5\xe4\x2d\x2f\x82\x4a\x54\xc6\xad\x10\xca\x49\xd0\xe4\xad\x10\xca\xd9\x60\x5c\x43\xe2\xe5\x4e\x0f\x06\x18\x2f\xa1\x84\x59\x87\xd4\xa6\x34\xbe\x95\x90\x85\x7b\x18\x7d\xba\xfe\x3b\x8d\x29\x80\xc7\xef\x2f\x19\x7f\x1e\x2e\xa3\x34\xbe\x8d\xb4\x99\x06\x3c\x2e\x18\x90\xee\x21\x1f\xe5\x96\x5f\x92\x84\x93\xd3\x3b\x2c\xe1\xb4\x9e\x66\x2e\x55\xed\x50\xb7\x0b\xd3\xe3\x47\x85\x69\xf5\xeb\xc2\x34\x2b\xfc\xab\x9a\x66\xff\x54\xd5\x73\xea\xb4\xbe\xf5\xa5\x34\x6f\xcc\x94\x3c\x0c\x9e\x66\x42\x0a\x37\x9a\x53\x63\x3c\xe4\x95\xa2\x8f\x9e\x95\x13\xca\xdd\x23\x7f\x4c\x6b\x30\xc8\xdf\x63\xe8\xe4\x82\x5e\xf5\xb6\x53\x01\xa9\xc2\xef\x69\xfc\xcd\x91\xb2\x8f\x3f\x4c\xa1\xa0\x07\xcf\x50\x42\xa3\xe6\xec\x03\x88\xcc\xad\x2a\x0f\x03\x20\x93\x1e\x4a\x3f\x35\x53\x26\x67\x08\xd6\xc6\x91\x98\xbb\x71\xab\x4f\xbb\x5e\x22\xd4\xd9\xdf\x20\x0c\xd3\x39\x7e\x49\x52\x60\xc8\xe3\x82\x53\xb2\xa1\x8a\xeb\xc8\x5f\xd8\x9c\x88\x37\xa5\xa1\x8a\xcb\x99\x59\xd4\xc9\xd8\xe4\x38\x37\x54\xf1\x7c\x7f\x51\xcc\xbc\xcf\x7c\xa8\xfe\x11\x23\x94\x2b\xf8\xf9\x30\x5d\xea\x9c\x32\x8d\x0a\xe2\x9c\xe1\xd8\xcb\x2f\x2f\x9a\x59\x7e\x90\xd3\xbf\x3d\x0c\x76\x43\x70\x90\x87\xc1\x49\x06\xe2\x7b\x39\xc9\x21\x62\xa4\x7d\x08\x70\x6e\xbc\x97\xcf\xd4\x0c\xe5\xee\x53\x53\xca\x09\x26\x55\xd6\xfd\x99\x39\x55\xbc\x67\x1d\xb0\xec\xe5\xa5\x81\x2d\x3b\xdd\x2e\x21\x70\xf7\x72\x8a\x65\xf6\xc9\x32\x97\xc2\xdd\xc3\x18\xc7\x93\x00\x2d\x43\x1c\x3f\x85\x21\xb5\x19\x90\x77\x9c\x6e\x17\xcc\xa4\x5b\xe9\x76\x9f\xaa\x14\xfa\xa4\xb2\x71\xed\x25\x90\xf7\xc6\xf2\x69\xcc\x0f\x7b\x69\x58\xa8\xe5\xe3\xc7\x0e\x5b\x9e\x7d\x78\xaf\x0c\xff\x33\xeb\xbd\x6d\x73\xc9\x13\x79\x3b\xb5\x50\x0d\x65\xb3\xca\x84\x5a\xcf\xb9\x81\xbf\x39\x85\x6e\x5b\x29\x53\x87\x3b\x8d\xde\x5a\x99\x06\xf5\x11\x83\xa1\x7b\x49\xf4\x33\xfd\xc9\x81\x2f\x5c\x43\x26\xf9\x4d\x6a\xc2\x5b\x26\xf9\xf3\x60\xb7\xc9\x24\x3f\xc3\x42\x0c\x37\x1c\x01\xc4\x81\xa1\x84\x99\x19\x6d\xf8\xdc\xbd\x87\xd4\x04\x23\xfb\xc9\xea\x3e\x1b\xb7\xd9\xf6\x4b\x90\xf4\xf2\xb7\xcc\xee\x27\xf9\xed\x8d\x45\xfc\x14\xf2\x8b\x7a\x0a\x86\x6d\x6c\x3f\x05\xff\x57\x57\xec\x86\xfb\x4c\xf1\xa6\x1b\xb3\xc2\xbd\xcd\xfd\xc8\xa9\x6f\x18\xe3\xf9\x6c\xe9\x7f\x32\x6a\xe3\x18\x57\x8e\xcd\xe5\xab\x88\x04\xbf\xb7\x43\x4e\xf3\x6c\xb8\x7c\xa6\xb8\x17\x2f\xbf\xdb\x48\xf1\x7e\xcb\x82\x7f\xe2\x14\x7f\x63\xc1\x27\x2a\xc8\x08\xc8\x7b\xf2\xe0\x90\x05\x7f\xae\x92\x32\xa5\x1b\xae\xa1\x3e\xfe\xf0\x84\x94\x49\x64\x85\xf2\xac\x73\x8e\x0d\x80\x4c\x8c\xde\xad\x3c\xba\x93\xec\x32\xb7\xd2\xe8\xee\x68\x57\x94\x46\x77\x47\x7f\x24\x2f\x81\x4d\xae\x0d\x43\x25\x4f\x22\x96\x6e\x59\xfe\x37\xb6\x1b\xc3\x1f\x3f\x1d\xf2\xcb\xf6\xe9\x3a\xd2\xa8\x8f\xdc\x4c\x5d\x79\xc2\x20\x03\xcb\x11\x60\x63\xbb\x33\xac\xf1\x5c\x2d\x94\xfd\xad\x18\x8d\xa2\xdd\x27\xf2\xaa\x81\x8c\xeb\x48\xd9\xc7\xc9\xec\xa0\xfe\x74\x19\xd3\xbd\x37\x52\x66\x58\x58\x04\xf8\x16\xdc\x0a\x5e\x5d\xad\x86\xd2\x7c\x33\x32\x9b\xd6\x71\x76\xbc\x65\x5a\x4f\x0a\x34\xa3\xf5\x2e\xf2\xe3\x19\xad\x77\x44\x0c\xbc\xc1\xf4\x0f\xa5\x8d\x0b\xc0\x89\x41\x78\xdf\x77\xa9\xcc\xe5\x1b\x65\xbe\x51\x70\x57\xce\x9f\x8c\xde\x1b\x3b\xae\x41\x69\x37\x9e\x9f\xf7\x6d\x2d\x09\xfb\x1d\x43\x72\x5a\x11\xd2\x14\x76\x8d\xdb\x81\x9d\x99\xa6\xdb\xef\x52\x6e\x1b\x99\x91\x37\x3e\xd0\x37\x66\xe4\xc8\xe0\xb7\x41\xbc\x47\xa8\x3f\x17\xba\x47\x19\x87\x57\xf4\xa1\xb2\x0d\x9f\x7b\xc0\x0b\x3f\xd6\x5a\x30\xdf\x18\x87\x49\xc5\x7e\xcb\x38\xbc\x2b\x67\xe1\xe3\xdd\x9f\xcb\xf0\xe3\x74\x5e\x3b\xed\x78\xe8\x74\x69\x80\x75\xb6\x3b\x08\xb2\xe1\xf8\xb2\x15\x4f\xfc\x6e\x0c\x21\xbb\x5a\x49\xd9\x2d\x05\x0b\xc3\xd9\xfa\xe7\x99\x9a\x42\x46\x87\x1b\x3a\xb0\x12\x3f\xb8\x5b\x26\xde\x1d\x45\x84\xc3\x2c\x23\x96\x7e\xa4\x33\x20\x61\xc5\xfd\x71\x0a\xba\xcc\x8d\x3c\x8f\x2b\x77\x98\xf2\x84\xae\xa8\x01\x1d\x66\x89\x9b\xd1\x6d\x9b\x2e\x1e\xda\xb7\x6c\xba\x8b\x6c\x51\xc6\x73\xdd\x18\x8b\xc0\x73\x4d\xec\xde\xfd\x95\x96\x08\xb8\x99\xfb\xeb\x78\x24\x18\x93\xb2\x86\xbe\x6f\x7d\x2c\xc3\x33\xdf\xc9\x23\x1e\x76\x6f\x3b\x71\xb4\xca\x5f\x6f\x4c\x0e\xf0\x97\x1c\x01\x74\xef\x97\x37\x7e\xfd\x86\x56\xdd\xf8\xfc\x03\xad\x5a\x61\x84\x5f\x7b\x6e\x80\x36\x73\x7f\xd9\xc4\x07\x54\x77\x61\xea\x0e\x21\x2a\x30\x00\xa9\xb5\x81\x45\x31\x46\xeb\x89\x73\x04\x18\xad\xcf\x23\xf3\x9f\x6c\xfa\x6b\xcd\x2e\xc1\x3b\xb7\xcc\xcf\x23\xfb\x4d\xe6\xe7\x36\xde\xfe\x9f\xe7\x62\x36\xaa\x02\x3b\x0b\x81\x6d\xc6\x7a\xad\x25\x13\x67\x49\x80\xa3\x21\xd3\x74\x03\xa4\xc3\xf8\xad\xe3\x9d\xf0\x67\xbd\x47\x7d\xcb\xf4\xd2\x18\xa1\x3e\x4f\x19\xd2\xc5\xd7\x10\xa0\x30\x45\x43\xbb\xe2\x54\x67\x68\xd7\x82\x45\x0c\x64\xd7\x1d\x3d\x88\xa2\x3a\x0b\xb6\xd9\x5b\x51\x9d\xa3\x22\x79\x28\xaa\xf3\xc4\x6d\xc4\x38\xaf\x05\x30\x13\xe3\xbc\x8e\x3c\x25\x15\xf1\x79\x12\x7f\x65\x98\xd7\x92\x83\xf0\x73\x44\x3d\x13\xa3\x68\xd0\x91\x97\xba\xa3\x41\x37\x21\x4e\xf7\x4f\x22\x7a\x66\xed\x27\x09\x1d\x8f\xaf\x5b\xe6\xf6\xa7\x2a\xa3\xb1\xcf\x59\x7a\x54\xfa\xc9\x08\x29\x3f\xc7\x78\xd4\x34\x2a\x44\xf5\x95\x32\x6d\x8c\x96\x46\x35\xc1\x3b\x94\xc1\x7b\xd3\xc3\xa5\xb2\xf4\x70\x2b\x8a\x2c\x35\x9d\x8d\xac\x42\x89\xd9\xe5\xa1\x25\xa3\xfd\x19\xfd\xa4\x8d\xf6\x47\xba\x90\xd3\x71\x9e\x0b\x42\x8e\x9d\x91\x98\x7e\x76\xfc\xc8\x7d\xf9\x63\xef\x71\x30\x65\x6f\x3f\xb1\xef\xdf\xd8\xdb\xff\xf7\xa9\x94\x89\x35\x55\x7f\xd2\x5e\xa7\xea\x9f\x28\x86\xa3\xcd\x17\x23\x99\xec\xed\x35\xda\x63\x99\xdb\x57\x58\xb8\x73\x98\xe2\x44\x05\xfe\x2c\xc1\x29\x46\x9c\x2d\xb9\xa0\x8d\x38\x9b\x27\xbf\x8d\xdf\xf1\x7a\x06\x71\x36\x7e\xce\x20\xce\xe2\xd8\x7f\xff\xc9\x2a\x18\xdd\xc1\x9f\x19\x53\xb4\x15\xd8\xc6\xe9\xd2\xb6\xf1\x63\xa4\xaa\x2e\x02\xb2\x62\xdf\xc4\xb8\xce\xf4\x21\x3d\xd5\x99\x0f\xe5\x7d\x00\x63\x20\x6d\x69\x14\x8d\x32\x6b\xb7\xdc\x68\xb2\x6a\x17\x22\x45\x0d\x5c\xfb\x54\xe5\x47\xa4\xd7\xc1\xe3\xd4\xc0\xb5\x27\x7e\x84\x06\xae\xed\x78\x2e\x1a\xb8\xf6\xc4\xaf\xf9\xfe\xf3\xae\x5a\x69\xd4\xab\xfa\x36\x23\xc3\x32\x93\x6c\x0b\x38\x19\x56\x6f\x59\xc0\x2b\x30\x2c\xb7\x2c\xe0\xa5\xbf\x35\x9f\xdf\x28\xf9\x61\xbf\x6d\xb8\xb3\xff\xe0\x9a\xf9\x0d\xe5\x63\x22\x06\xc0\xe0\xb8\x1d\x8f\x47\x83\xe3\xf6\xa8\x24\xfe\xd8\x80\x6f\xd5\xa5\xc2\xf4\xb1\x45\x31\x36\x6d\xce\xf6\x7e\x28\x95\x65\x26\x8a\xbd\xf9\x56\xb5\x79\x95\xb9\x51\xe6\xa6\xfd\x8e\xcd\xab\x91\x76\x1c\xfe\x07\x7f\x95\x11\xbc\xef\xfe\x6f\x44\xc4\x5b\x16\xf2\xbd\x32\xff\xca\xb7\x0b\x78\xc7\x2d\x2b\xf8\x79\xc0\x7f\x64\x05\x2f\xff\xa3\xbe\x52\xb2\x3d\xbf\xb8\x0d\xc0\x5b\x1d\xfe\xb9\x0d\xc0\x5b\x8d\xeb\xb8\x0d\xc0\x5b\x9d\x09\x64\x1b\x7f\xb7\x8e\xb7\x4c\x33\xac\x43\xbd\x8d\xbf\xdb\xed\xc3\xb8\x8d\xbf\x5b\x1c\x2b\xf3\x50\xba\x7a\x5a\xbe\x53\x0e\x1e\x2d\xf0\x36\xfc\x6e\xb7\x67\xe8\x06\x7e\x77\xdb\x2d\x69\x1b\x7f\xb7\xef\xb7\xaa\x13\x02\x8d\xb4\x2a\xe5\x51\xfa\xd0\x96\x36\x70\xef\x36\x38\x6f\xb7\x5f\xe2\x36\x36\xef\xe9\xa7\xfc\x06\x9b\x77\xcf\x97\xd4\x0b\x71\xf3\x8b\x7a\xcd\x39\xbf\xc4\x36\x36\x6f\xb7\x73\xdf\x06\x9b\xd7\x8e\xb2\xdb\xd8\xbc\x4f\x33\xe9\x51\x52\x42\x4d\xa3\x92\x90\x67\xfa\x77\x82\x8b\x50\xfe\xc7\x99\x3e\x84\x31\x5c\xf2\xe1\x4f\x3b\x3c\x94\x61\x0f\xf8\x7f\xa9\x2a\x6d\x11\xd9\x06\xf9\xed\xb6\xca\x6f\x63\xfc\x9e\x23\x83\x91\x59\xc7\xd9\x0e\x1e\xca\x7f\x41\x7f\x97\xe7\x34\xad\xc8\xc3\xe4\x08\xf5\xf7\x94\xa5\x77\xbb\xf0\x16\x86\xed\x0c\xdd\x46\xd5\xd9\x86\xdf\x6d\xce\x36\xb2\x0d\xbf\x5b\x1c\x5e\xbf\x81\xdf\x3d\x32\x18\x0b\xc5\xf6\x18\xd8\x86\xdf\x6d\x25\xf3\x0d\xdb\x64\x15\x31\x7e\x1b\x01\xe7\x21\x9f\xe7\x6c\x67\xfd\x85\xcd\x5b\x3b\xd3\x78\xc2\x36\x59\xf1\xd3\xbb\x71\x86\x9a\x82\x4b\xe9\x50\x8a\x5a\x5f\x13\xca\xf3\xbf\x43\xea\xad\x7d\x0c\xa8\x9f\xe4\xd7\x05\xf5\x27\x37\x29\x6a\x2a\xdf\xa6\x5d\x0f\x36\xc8\xbd\xc6\x4d\xdf\x06\xee\x9d\x8e\xd5\xda\x06\xee\x5d\x3d\x7f\xb1\xcd\xb5\xd3\xa8\xee\xe2\x93\xe5\x57\xa0\x74\xb7\x61\xeb\xa1\x74\x1a\x66\x6a\x7e\x14\x38\x92\x0e\xed\x1a\x74\xa4\x47\x05\x06\xcc\xf4\xf1\xe7\x42\x5a\x95\x05\x70\xa6\x1d\x47\x4d\xfb\x51\xf6\x90\x45\x9d\xf0\x57\xd6\xba\x9e\x2c\x80\xe3\x3f\x9c\xf0\xf2\x21\xbb\xb0\xeb\xd2\x8e\xc7\xca\xac\x12\x53\x90\x0f\x25\x8a\x65\x1d\x65\xa3\x69\xa9\x49\xba\x01\xc6\x66\x35\x84\xc5\x88\x6d\x74\xe0\x6e\x11\x63\x1b\x1c\xb8\x39\x15\xc0\x36\x38\xf0\x53\x95\xd1\xd8\x22\x9d\x1e\x9d\xe0\x23\xcb\x61\x7d\xed\xca\x92\xcb\x96\x38\xf3\x57\xd6\x58\xf8\x99\xf0\x90\x4a\xf4\x55\x33\x00\x1d\x88\xc5\xb4\xda\x24\xbd\x38\x3b\x0a\x94\x3e\x1d\x83\xb4\x8d\x24\xdc\xec\x25\xfc\x50\xa7\x8c\xa7\xff\xe4\xd4\x4f\x55\x4d\xf9\xca\x87\x62\xf1\xac\x6b\xc1\x5e\x7d\x42\x4d\x31\xa0\x50\x9a\xf1\x95\xee\xfd\x8f\xf0\x8a\x82\x9b\x66\x28\x6d\x1d\x8e\x67\x71\xa4\x30\x87\xa3\xc8\xb0\x58\x58\xff\x22\x2f\xb6\xf3\x2d\x2b\x6e\x94\xd1\x78\x5b\x77\x46\x6a\xeb\xf5\xe2\x02\x28\x32\xe4\x58\x63\xb8\x8d\x56\xfc\x14\x0e\x48\xf9\xd4\xbc\x85\xcb\x85\x21\xe5\x0b\xc4\x6e\x35\x5a\xf1\x5e\xdc\x40\xc5\xce\x40\x23\xd4\xc7\x85\x1b\x52\xde\x40\xf0\x2b\xb9\x5d\xb4\xcd\xe1\x29\x76\x06\x82\xed\x28\x00\xbc\x18\x22\xf0\xa1\xa4\x6d\x63\x1d\x8b\x13\x29\x72\x21\x38\x1a\x7c\xaf\x9a\xaa\x72\x8c\x82\x77\x14\x6b\x37\x6d\x78\xdf\xc6\x12\x6e\xe5\x2d\x74\x48\x30\x65\x76\x6d\xe3\x98\xc9\x0d\xa3\x9e\x59\x64\xfb\xb4\xdb\xa3\x78\x1b\x4c\xb8\x85\x79\xc8\x0d\xa3\x6d\xee\x07\xb9\x61\x54\xbb\x08\x3c\x94\x7c\xdb\x38\x3b\xc5\x6c\x77\xc1\x67\x9c\xd6\x38\x67\x57\x6e\x18\x6d\x64\xca\x05\x58\x15\x56\x22\x2f\x8c\xd2\x77\x9a\x91\x83\xde\x4a\x2b\xe6\x16\xcd\xa3\x71\x1c\xfb\x36\x0e\xd3\x36\xd2\x70\xab\x9c\x4f\xa7\x2e\xce\x16\x74\x1c\x7b\x4e\x2b\xee\x14\x8b\x91\x57\xfb\xa9\xad\xb4\x2a\x40\x0b\xa6\x4a\x81\xec\xa5\xbd\x65\x72\x30\x9b\x94\xe9\xee\xce\xe9\x90\x6f\x45\xeb\x9c\xf9\xca\xf6\xec\x21\x35\x8d\xec\xf2\xea\x2d\x97\x2e\xbc\x8d\xe0\xba\xd5\x7e\x95\xdc\x3a\xb8\x4f\xe4\x9f\xec\x53\xb6\x90\x3a\xe4\x3e\xb1\xde\x0f\xfd\x52\x5f\xdc\x97\x72\x9f\x28\x95\x5b\x47\xee\x13\x6d\x73\x23\xc8\x27\xa2\x6d\xb8\x95\x7c\x22\x5a\x7d\xbf\x53\x92\x09\x76\xa3\x7c\x22\xda\xe6\xcc\x55\xcb\x8a\x6b\xa4\xd0\xb9\x22\xf8\xc5\x8b\xc1\xf1\x57\x72\x1c\x76\xc0\xe2\x36\x9e\xf0\x59\x32\xe1\x8a\x95\xb2\xc8\xb9\x8d\x18\x7c\xb6\x33\x94\x04\xd0\x4a\x8f\x5e\x7f\xf8\x18\x3e\x12\x8b\x65\x74\x60\x7b\x67\xaa\x9a\x2f\xd6\xc5\x8a\x37\xaf\x3f\x67\xac\xd9\x2a\xb5\x56\x48\x39\x75\x33\x38\x39\x49\x2c\x6b\xbf\xb6\xb1\x7f\xd7\x4a\x99\xa5\xae\xc5\x7e\x6c\x8e\x4c\x48\x97\x8e\x4c\x58\x48\x13\xf6\x7c\x88\xa4\x61\x7c\xdf\x83\xd9\xb1\x77\xc3\x4e\x4d\x2f\x47\x1a\x95\xcb\xc2\xe6\x62\x97\x27\xc2\x5c\x23\x94\xf4\x36\xf5\x9f\x41\x2d\x4f\x55\x2d\xc0\x66\x07\x36\x16\xc0\xcb\x21\x0f\x03\xd2\xf5\x6e\xe3\x02\xb7\x88\x0b\xcd\xf7\x5c\x3f\xa1\xaa\x9b\x61\x70\xb7\xff\x38\xcd\x74\x17\xf2\x1f\x8e\x71\xd9\xf9\x52\xf0\x6a\x07\xab\xa3\xab\x2c\x5b\xce\x09\x92\x0f\xee\x07\x25\x48\xee\x07\xb7\xbe\x13\x24\xef\x0d\xe7\x54\x82\xe4\x95\x35\x57\x82\xe4\x56\xe0\x0e\xdd\xf6\x8d\x33\x94\xad\xb9\xa1\xa4\xe1\x81\x71\x75\x27\xe7\x80\x73\xc8\xe8\x3f\x1b\x5c\xd5\x48\xbf\x7b\x23\xf5\x76\xc7\x2f\xa7\x43\x1d\xce\x83\xdb\x41\xc6\xfb\x73\xb0\x71\x6d\xa0\xaf\x23\x94\x90\xc6\xd3\x85\x3c\xeb\x1a\xaf\x0c\xd9\xe0\x67\x2b\x29\x53\x4c\x76\xe6\xc2\xb6\x45\xae\x43\xa3\x00\x67\xc3\x3b\x59\x72\xe3\x56\x53\x7c\x7e\x69\x19\x99\xd9\xff\x6e\x29\xb4\x15\xae\x43\x7d\x5d\x18\x52\xd8\xba\x33\x94\xac\x00\x5c\x87\xdd\xb6\x17\x04\xe4\x6e\x6f\x93\xfc\xc5\xed\x71\xf3\x87\xec\x05\xe4\xc3\x6e\xd3\x4b\xd6\x49\x26\xca\x72\xa4\x6c\xc8\xdd\x24\x65\x53\x99\x33\x18\xa9\x10\x93\x3a\x0f\xa9\x6e\x13\x59\x26\x5f\xfa\xae\xc5\x36\x1d\x36\x9f\x20\xa9\x38\x03\xc0\xde\x30\x8a\x61\xf3\x49\xab\x50\x7e\xb7\xf7\x01\xa9\x3b\x65\xe5\xcb\xcb\x85\x13\xf2\x96\x01\xe7\x80\x92\xe5\x87\x19\x1f\xca\x2a\xd8\x78\xac\x0c\x6f\x14\x64\x2c\x1c\x04\x2a\xfd\x6f\x5f\xdb\x74\xc8\x69\x67\xe0\x82\x41\x9a\x33\xad\xc8\xc9\xe3\x08\x25\x8f\x38\xe6\x5b\x79\x05\x66\xe3\x0e\x57\x5e\x01\xf2\x0d\x3d\xd4\x47\xf8\xc0\x8c\xd3\xd3\x9d\xff\xb5\x9d\x91\x49\xc4\xb0\xcf\x56\x98\x8e\xed\x82\x83\x29\x3b\xc0\x1a\x23\x65\xba\x89\x72\x4d\xc8\x76\xbf\x27\xdb\xd4\xd9\x01\x76\x4e\xb0\x8c\xf7\x7b\x96\x50\x9e\xfe\x9d\xba\x53\x76\xd7\x05\xe5\xe9\x67\x6f\x4e\x1f\xd3\x95\x2f\x2f\x3d\x0e\x53\xf5\x96\x22\x3c\x03\xf8\x08\xd0\x28\x8d\x0a\x76\x71\x64\xe4\x3f\xa1\x7e\xa7\x15\x03\x69\xd2\x8a\x3d\x02\xc2\xd1\xed\x11\x50\x90\x2f\x94\x62\x79\xb7\xfc\xf2\x66\xe0\x1d\x52\x29\x18\x10\xa2\x84\x09\x3c\x73\x87\x08\x13\x18\x37\x83\x87\x92\x2d\xe9\x48\xa3\xe6\xbd\x94\xc9\x08\xbd\x10\x61\xe4\x1f\xb0\x5b\xc6\x7d\xb9\x87\x7f\x2a\xa9\xb7\xf1\x82\xcb\x61\xff\xd0\x6d\xc0\xe0\xb9\x61\x4c\xb2\xfa\xe3\xbb\xf0\x50\x43\x55\xdf\x42\x77\xc2\x87\xb7\xdb\x39\x99\x1d\x99\x7e\xa2\x2b\x30\x7c\x70\xe5\x46\x51\x42\x82\xdd\xf8\x63\x25\x24\xc0\x79\x61\x1b\xf5\x77\x37\x44\x41\x25\x1d\xd8\x0d\xa1\xd1\x58\xbe\x76\xcf\x7d\x28\x85\x54\x1f\x29\xd3\x83\x13\x49\x50\x2e\x00\xe5\x38\x98\x2a\xf9\x00\xec\x3c\xa3\x94\xf3\x79\x37\x8e\x86\x3d\x02\xf2\xe0\x73\x1a\x81\x8a\xb4\x21\x8f\x80\x75\xc2\x43\x6c\xf5\xdf\x48\x30\xcb\xa8\x5f\x07\x7b\x5c\x11\xfe\xbb\xcd\x54\x55\xe6\x0e\xc4\xeb\xe5\xd5\x98\xa9\x29\x24\xeb\xcc\xc5\xe5\x91\x22\x97\xc9\xce\xbf\xc3\x60\x97\xec\x37\x11\xf6\x6c\xe6\xcf\x0e\x5b\x9e\xfd\x95\x9a\x9a\x28\x18\xfa\xf2\xe4\x73\x9d\x3a\x8f\x74\x5b\xf9\xee\x2b\x8a\x49\x94\xdd\x67\xf6\x50\x4a\xf1\xc1\xe1\xdb\x76\x1c\x66\x0f\xef\xe5\x1f\xac\x50\xea\x8f\x0d\x2d\x9b\xff\x6e\x3b\x35\xd5\x03\x6c\x49\xc1\xfd\x80\x3a\x3f\x94\x5a\x41\x24\xd9\xdb\x1b\x6a\xa6\x70\x2a\xce\x8e\x2e\x14\xe6\x57\x61\xd9\x8e\xe6\xaf\xfc\x92\xa2\xf9\x77\x43\xec\x51\xfc\x3e\xa0\xd2\xdb\xa8\xb9\xf8\xad\x6c\xc3\xd6\x96\x13\x8e\x2d\xa0\xda\x15\x25\xc5\xb6\x36\xef\x64\x0b\xd9\x3a\xdf\x8f\x7c\x28\xfb\x18\x07\x4a\x16\x77\x3c\x35\xf6\x92\xc5\x7d\x4d\x98\xb2\xb0\x69\x77\x18\x88\xe2\xe7\x9f\x46\x53\x55\x2a\x0c\x76\xb0\x8c\xe1\xb3\xf3\x2a\x94\xbd\x7b\x0d\xf8\xb0\x61\x63\x8f\x93\x03\x64\x83\x77\x87\x11\x5f\x02\xf1\xef\x67\x3e\x74\xa6\x51\xf8\xa2\xc3\xe2\x6b\x4d\xa1\xff\x2a\xe3\x91\x71\xbc\xf3\x82\x97\x71\xfc\x29\x4c\x9f\xd2\x8c\x70\xa2\x14\x16\xbf\x3b\xd3\xa1\xc8\xf7\xdd\xb9\xa3\x2f\x6f\xf7\x93\xbb\xf6\x22\x15\x3c\x3f\x79\x79\x74\x07\x14\x79\x50\x43\x2e\xb5\xd3\xa0\xb6\xaa\x86\xf2\x94\x33\x1a\x19\x96\x7b\xfe\x4a\x29\x6d\xc2\xa5\x85\x23\xfb\x34\x9a\x42\x4f\x24\x1f\x3e\x22\xc3\xee\x68\xdf\x2e\x63\x13\xbf\x65\xcb\x1f\xa6\x50\xb2\x35\xdb\x51\x16\xf8\x72\x9c\xc8\x68\x86\x79\xed\x30\x5f\x05\xd4\xef\x68\x0d\x65\x9e\x7f\xaa\x86\x7c\xd6\x2e\xcf\x59\xc5\xd7\x3f\x85\x1d\x52\x53\x47\x97\x37\x3b\x02\xa1\x45\x89\xa8\xd7\x80\xfb\x2b\x0f\xf5\x53\xf8\x1f\xb4\x1f\x0a\xcd\x9f\x93\xc1\x2a\x34\x7f\xf6\x9e\xf1\x68\xb0\x67\x5a\xd5\x76\x85\xa7\xcb\x0b\x60\xee\x1a\xea\xab\xc1\x85\x52\xc0\xd2\x39\x42\xea\xc3\x74\xe1\x2d\xc0\x56\x96\x17\xc0\x8c\x82\x43\xa1\xef\xbb\xd7\xd4\xd4\x0e\x80\x37\xdd\xec\x00\xee\x8d\xdb\x3b\x80\xe3\xa2\xf4\xd2\xe5\x38\x67\xbe\xd4\x31\x87\x23\x38\xd6\xbd\xf5\xb4\x23\x78\xe8\x23\x3d\x6a\x6c\x6c\x73\x25\x9b\xde\x11\x53\x6f\xef\x00\x2e\x78\x85\xba\xef\xce\xb6\xbe\x0d\xa0\x77\xc2\x7f\xed\xa2\x70\x66\xa8\x76\x88\x47\xfb\xfe\x61\x91\xe1\xb8\x0a\x4a\xdf\x1d\x16\xef\xa4\xd1\x1d\xf1\xc7\x11\xe2\xb9\xb6\x3f\xb6\x36\x46\x8f\x6b\x0f\x81\x08\x98\x72\x02\xd8\x1d\x99\xfd\xe3\xfb\x9e\x6d\xa5\x90\xf0\x9d\x55\xfc\xf8\xb0\x96\x34\xaa\xf3\xc0\xa6\xfa\x78\x69\xd8\xd6\x1f\xa7\xb0\x80\xcb\x39\x81\xf3\x11\x01\x4f\x19\x9c\x57\x3b\x52\x68\xac\x45\x1a\xf5\xda\x14\xec\x14\x0e\x10\x8f\x92\xc2\x01\xe2\x03\x66\xf1\xf1\xf4\xb7\x50\xca\x28\x91\xd1\xdc\x8e\x1c\xa1\x95\xdb\x09\xaf\xe8\x42\xd3\xbf\x78\xdb\x7d\x3c\xfd\xd1\xa2\xcb\x0b\x61\xf7\x12\xca\xe7\x38\x8d\xfe\x39\x7a\xce\xa3\x11\x22\xe9\xee\x9c\x9b\xaf\xa5\x48\x96\xff\xeb\x13\x57\xd8\x8d\x5f\x9f\x38\x74\x78\x76\x3c\x68\x0c\x4e\x69\xa2\xf1\xe5\x7a\x28\xf1\xf5\x1d\xea\xa3\x66\x6a\x3e\x74\x58\x05\xfd\xcb\x0f\xa1\x23\x0c\x38\x24\x7d\x1d\xa1\x6e\xd5\xa4\xfb\xcb\x35\x37\x94\xd6\x9b\x9f\xfa\x9a\xe3\xb5\xd4\x54\xbc\x55\x06\xa3\xc8\xd0\xa3\xb0\xa8\xf2\x09\x58\x0d\x2e\xff\xf5\x0e\x47\xb9\xa2\x9c\xcd\xeb\xe0\x86\xff\x7a\x87\xf7\x50\x8a\xf8\x80\x37\x7f\x0d\xaa\xce\x55\xf9\x65\x4e\xb9\xc8\x94\x95\x79\x55\xae\x15\xdb\xef\x8f\xd8\x49\x9c\x96\x39\xfc\xef\xe7\x79\x1b\xa9\x2a\x2d\x69\x4d\x99\xf2\x56\x31\x35\x8e\x49\xcf\x76\xff\xf9\x76\x2a\x1c\x69\x59\xc9\x77\xa4\x66\xe7\x53\x1e\x5c\x15\x32\x68\xef\x83\xb9\xf9\x99\x89\xc0\x53\x0d\xc2\xe9\xbc\x5d\xdb\x20\x9c\xe5\x28\x88\x4d\x3f\xae\x91\x34\xaa\x63\x33\xd2\xa8\x27\x75\xa7\xd0\x27\xbc\x42\x7d\x5d\xb8\x21\x1d\xa9\xc6\x50\x2d\x8c\x55\xee\x9c\x9f\x17\x00\x29\xee\xe7\x3d\xfe\x6f\x8c\x80\xa7\x6a\x73\x3b\xf4\x29\x29\xba\xcf\x50\x9e\x0f\x06\x60\xc1\x82\x05\xf8\xf3\x36\x5e\xa1\x34\x03\x08\x6e\xb2\x4b\xaf\x6c\xf8\x3f\x7b\x49\x54\x66\xc0\xa9\x97\xb3\x1f\x14\xb4\xfd\x14\x6e\x48\xdd\x0d\x23\x85\xe2\xff\x48\xd8\x32\x5a\xef\x0e\x1f\x51\xf0\xf5\x1c\xe9\x51\xef\x94\x18\xea\xfe\x58\x47\xfa\x97\x04\xd6\x67\xca\xe4\x25\x80\xe0\xa8\x2c\xcd\xe5\xa8\x1c\xaa\x3f\xe7\xd7\x61\xe7\xc8\xda\xbc\x3b\xb2\xb8\xac\xcd\x4f\xd5\x7c\xe9\x0d\x58\xa1\x96\x32\x26\x30\x6e\xcf\x22\x6a\xa0\x3f\xbf\x45\xf2\xc4\x94\xd1\x76\xf7\x95\xc2\xe5\x42\xfe\x51\xe2\x30\x36\x4d\x63\x66\x6e\x47\x3c\x6e\x83\x5d\xee\x6e\x8e\x63\x5c\xca\xe5\xdc\xe3\xdb\xb0\x94\xe5\xb0\xc7\xce\x43\x6a\xe4\x85\x0f\x2d\x9f\xf9\x3c\xee\xc3\xac\x62\xa5\x19\x7b\xc1\xd1\xa1\x59\xbc\x5f\xad\x46\xb0\xdc\x7d\xd1\x85\x45\xae\x45\x0f\xbe\x28\x7d\x17\xef\x03\x90\xb6\x65\x4a\x7e\x76\x0e\x99\x7d\x28\x79\xbd\xed\x94\x79\xbf\xe5\x0f\xc5\x2a\x58\x6f\x03\x5a\x6e\xec\x4b\xfb\xb0\xcc\x5b\xdf\x76\x2c\x80\xa5\x1d\x73\xe3\x54\xd5\xd6\xb4\x8c\xbf\x4f\x67\x09\xa2\x51\xa7\x3e\xee\x66\x94\xfb\xf4\x7e\x73\x4c\xc5\x43\x6a\xbf\xf9\x81\x65\xf0\x4b\xe0\x1d\x1f\x8a\x34\x0c\x21\x35\x6f\xe6\xc6\x5b\xe6\xb6\xdd\x98\xa9\xd3\xd2\xc7\xa6\x51\x50\x96\x4b\x48\xed\x86\x95\x0f\x95\x54\xcf\x0c\xc0\x50\x94\xe5\x40\x69\x62\x2c\xca\x8d\x5a\xd6\x70\x93\xcb\x19\x07\xb7\xd1\x26\x9f\xaa\xb4\xe3\x34\x92\x2d\x94\xec\x64\x2c\xe3\xe9\x4d\x85\xa5\xd2\xa8\x91\x1b\xdb\xe4\xc6\x14\x96\x91\x2b\xae\x6e\x65\xe6\x6e\x27\xfe\x48\xa3\xf2\xad\x63\xe5\x8a\x13\x31\xf0\x9d\x0d\x53\xc8\x5b\x86\x97\x1c\xbc\x4c\x8d\x2e\x39\xb0\x5a\x1a\x40\xb2\xf2\x90\xd9\xc5\x1b\xd5\x9e\xf3\x0f\x29\x23\x36\x53\x8c\x25\x8a\xc1\xc8\x12\x35\x56\xba\x90\x21\x6a\x1d\xf9\x4e\x67\xca\x5e\x9f\xdb\xd0\x93\x83\x0b\xcf\xd0\x93\x4f\x21\x03\x90\x36\xd9\x3e\xb7\x0f\x25\x25\xf9\x60\xa8\x36\xbe\xd7\xf4\xf8\x27\x8d\x0a\x65\xe2\x0d\x76\x10\xdd\x06\xa9\x3c\x79\xfc\xee\x62\x94\xed\xc6\x77\xb2\x99\xd6\xb7\x4c\x71\xe7\x2f\x35\x95\x14\x83\xdf\x57\xda\x11\xac\x92\x5b\x91\xc1\xe7\x3a\xfe\x99\x78\xfa\xa9\xaa\x19\x7e\x3f\xd4\x0c\x9f\xe9\xfe\x23\x8a\xbf\x97\x7f\x1e\xd6\xcc\x2d\x5b\x56\xd9\x29\xb3\xbd\x2a\xdf\x29\x43\xb9\x11\xa5\xb6\xb1\x35\xeb\x99\x1e\x6e\x4d\x7e\x61\x2a\xa4\xbb\x3e\x61\x36\xb2\x33\x35\x27\xa1\xdb\x46\xc8\x2c\x3c\xd3\x0c\x90\x39\x70\x8a\x30\x40\x66\xb3\x3f\xe0\x36\x40\x66\x75\x3a\xd7\x87\x52\xec\xa1\x5f\x1e\x5b\x01\xbd\x65\xb0\x4b\x64\x81\x1a\x8e\xca\x7e\xa8\xae\x1d\x34\xa1\xa4\x2d\xb5\x12\x70\xcb\x00\xf5\xac\x75\xba\xf8\x33\xe9\xd1\x28\xed\xf1\xc0\x46\xbf\x95\xf6\x78\x20\x16\x6e\x45\xe2\x3e\x55\x53\xa8\x29\x6d\x74\xa2\xac\xd3\x63\xd2\x89\xa1\x7c\x7d\x9f\x6c\x99\x87\x5a\x63\x4a\x65\x1e\x1a\x61\xa0\x8a\xae\xad\x2b\x3f\x7c\xb1\x4b\x69\xf4\x52\xff\x2f\xa5\x15\x4d\xf7\x5e\xd1\x9e\x46\xa5\x4c\x9b\x29\xfb\x2a\x21\x01\xe3\x76\x22\x99\x1d\x4a\x96\xdd\x41\x4d\x59\x20\xcb\x19\x6a\x3c\xb3\xcf\xca\x54\x79\x5c\xae\xfc\x84\xac\x8a\xe3\x08\xa5\x91\x8d\xb4\x79\x09\x73\x95\x5f\xba\xcd\x31\x33\x34\xc3\xfe\xe5\x27\xbc\xdc\x96\x98\x76\x93\x5f\x91\x1d\x75\x1f\x4a\x7e\x45\x34\x2a\x8b\xd3\xc0\x79\x61\xcb\xe2\x34\x30\x78\x6d\x19\x9c\xce\x6a\xf9\x69\xdb\xe0\xe4\xa0\xe0\x87\x52\x16\x9b\x33\xd4\x2d\xa4\x9c\x09\xa5\xc4\xf5\xac\x92\x62\x69\x2b\xe6\x0e\xc3\x78\xd6\xc1\xc9\x0e\x36\x27\x3d\x78\x5b\xc0\xe7\x6d\x6d\xaa\x30\xb6\x66\x6d\xf4\xfb\x9d\x96\x85\x2b\x50\x31\xb8\xcf\x54\x30\x6c\x0b\x0f\x0d\x5e\xae\xd0\xda\xba\xd8\x89\xcd\xfb\x02\x56\x2e\x3b\x55\xc1\xe5\x68\x2b\xb4\xf6\xac\x35\xcd\x38\x51\x38\xff\xe4\x3c\x50\x6c\x59\x62\x6b\x1b\x67\xa6\x99\x7d\x64\xa8\xde\x4f\x3b\x65\xe2\x02\x6f\x99\xd8\xdc\x99\xa1\xe9\x8c\xbe\xe3\xfe\x53\xf4\x10\xdf\x69\x3f\xcd\x2c\x05\xb9\x87\xe0\x81\xcd\x6c\x20\xe3\x7e\xd8\xc0\x70\xd8\xf5\x36\x52\x68\x3d\x33\x53\xcf\xa6\x19\xce\xaf\xb1\x8d\x14\x7a\xf2\x8e\x34\x52\xe8\xc0\x50\x61\xa8\xd0\xa7\x0b\x37\xe3\x7c\xd0\xbc\xc7\x0d\x15\x5a\xb0\x6f\x1a\x2a\x74\x6c\xee\x95\xbe\x18\x5b\x83\xd4\x9a\xd2\xaa\x4c\x5f\x4f\x61\xbe\xdc\xfa\x72\x42\x29\x09\x0c\xdc\xa5\x23\x03\x8c\x90\x1f\x55\x5d\x50\x32\x7e\xe5\x43\x69\xce\xe7\xbf\x13\xe3\x3d\x55\x75\x41\x20\x73\x29\x00\xf6\xe9\x23\xed\x98\xd9\x70\x50\x14\xc9\x3a\xc2\x95\x15\xc9\x5a\xb2\x71\x65\x28\x1b\x9b\xd5\xe9\xd9\x63\xfc\xa5\xf6\x11\x32\xb0\x21\x40\xcb\x3b\x03\x5a\xe4\x03\x45\xf6\x96\xe1\x6a\x6c\x24\x0b\x19\xae\x0a\xaf\xce\x2d\x8b\x53\x75\x92\x9a\x6d\x40\xd0\x89\x77\x14\x48\x9e\x46\xca\xd9\x7b\xd8\x3c\xc2\x6d\x32\x9c\x9a\x04\x7d\xf8\x56\x0e\xea\x8d\xcd\x61\x2b\x05\xf5\xca\x1f\xcb\x00\xb5\x4f\x4e\x83\x4c\x4c\x13\x13\x97\x71\x3c\x9f\x66\xd2\xc7\xad\xb0\x90\x54\xfd\xe8\xc3\x01\xe5\xcd\xb2\x42\xfe\x54\xd8\xa0\x1c\xfa\xc1\x87\xdb\x53\x85\x9c\x3b\xac\xb2\xac\xa1\x9c\x76\x88\xf3\xe8\xb4\xd7\xf8\xab\x19\x01\x94\x44\x74\x0f\xe5\xd7\x33\x63\xd5\x93\xe0\x60\xcf\x0f\xe7\x43\x41\xd5\xb7\x87\xf5\xec\x6c\x24\x01\x82\xee\x95\x9f\x74\x5c\x04\x5c\x5b\xb1\xad\x13\x5b\x30\x90\x9f\xbc\x3a\x0c\xf9\xf9\x34\x9a\x3e\x6e\x8d\x26\x55\x35\x1d\x30\x80\x21\x01\x11\x17\x83\xad\xb8\x57\xc0\x08\x1e\x4a\x33\x3e\x42\x49\x7b\x08\x73\x18\xd6\x1e\xa2\x74\xdb\x8a\x66\x5d\x61\x47\x0a\x66\xdd\x67\x16\x4e\x5a\xf7\xdc\x28\x8a\x65\xdd\x27\xec\xc0\x89\xb5\xd1\xc0\x6d\xdb\xc3\xb0\x6a\x6d\x99\xbc\xf6\x42\x3c\x9d\xbe\x97\x51\xe6\x6e\x99\xbc\xf6\xc9\xb5\xec\x94\xd8\x07\xca\xa3\x3d\xc1\xf4\x6f\x50\xfa\xfd\x91\x0f\x65\xd6\x83\x01\xcb\x90\xb5\x4f\x96\x6d\x7a\xd9\xd8\xef\xb6\x63\xe1\x64\xb7\x9d\x4a\x1b\x03\x94\x81\x43\x27\x3e\x2c\x06\x0e\x2d\x47\x7f\x0b\xf5\x8b\xdc\x37\xd3\x59\x5e\x76\xa8\x22\xdc\x94\x50\xea\x82\xbb\xcf\xe6\xa8\xc9\xd4\xc8\x1a\xd5\x67\xa6\x46\xce\x47\xb5\xa4\xec\x56\x19\x53\x63\x99\x1f\x9d\xeb\x9e\xe2\xd4\xc7\x4a\xa1\xf0\x1a\x91\x9d\x15\xf5\x7a\x56\xe4\xae\x79\xfb\x82\xa3\xfb\xe7\xe6\xef\x73\x84\x92\x81\x35\xdf\xc9\xa3\x78\x66\x65\x6c\x58\x80\x51\x4f\x3b\x0d\xb3\x4d\xa6\x61\x3d\xb3\x4c\x7a\x72\xbd\xbf\x0b\x2e\x0d\xb3\xa6\xa8\x8c\xc9\xfb\x47\xd1\xb1\x7d\x66\x25\x6e\x4b\x28\xa1\x7e\x2a\xe3\xe7\xad\xd5\x41\x51\xbb\x65\x51\x3b\x23\x78\xc8\xa2\x76\x62\xfb\xdd\xcb\xf6\x56\x24\x75\xc5\xd8\xb6\xda\x43\x0d\x35\xda\xa1\xbc\xbd\xb8\x35\x64\x7c\xeb\x8f\xbc\xf4\x4f\x36\xbd\xec\x99\xbc\xd2\xe3\x4f\x09\xc7\xd3\xea\xdf\xd3\x0c\x52\x82\x4c\x71\x67\x1e\xb5\x86\x5f\x0d\x73\x5d\x0f\x3b\xe9\x79\x9a\x2d\xbf\x14\xd1\x2a\x6d\xd9\xe9\x4a\x83\x49\x2d\xbf\x46\x50\xc6\xee\x65\xb3\x06\x4a\xb6\xed\x2c\xde\x0e\xfc\x79\x28\x79\xbe\xb5\x74\xf9\x73\x55\x46\x27\x87\xcf\x9e\x66\x7d\x31\xa0\x72\xdc\xcb\x5e\x72\xf0\xf7\x65\x27\x19\x38\x91\xe3\x7c\x37\x6c\x52\x46\xbd\x5a\x58\xe3\x65\x77\x16\x58\xf8\x92\xfc\x38\xb2\x00\x72\x60\x3b\xb9\x09\x64\xd3\x6b\x85\x33\xab\xd0\xdd\x16\x3e\xa8\x14\xde\x25\x72\xe7\xe2\x7d\x30\xa1\xe4\x95\x95\x61\xcb\x11\x1d\xcb\xe4\x96\x4d\xaf\x1c\x68\x51\x36\x46\x3d\x8f\x65\xdb\x49\x9d\x36\x37\x49\xb1\xb8\xfb\xb7\xb3\xac\xc1\xb1\xb7\x05\x83\x88\x9a\x8a\x00\x3e\x27\x23\x95\x35\xb0\x9c\xb0\x73\xa5\x05\x2f\x63\xa4\xec\xd9\x46\x11\x12\x1d\x1d\x5c\xde\x46\xe5\xbf\xd8\xd3\xbf\x19\xe8\x08\x29\xef\xe7\x77\xa8\xca\x18\xf6\x36\xf3\x95\x57\x88\xa7\x7b\x3b\x95\x1a\xd7\x80\x72\x82\x37\x7c\x2b\x8c\x54\x5b\x2b\x02\x3a\x39\xc1\x61\x04\x46\xaa\x3d\x50\x7e\x6c\x4b\x9e\x7d\xa6\xd0\x19\x66\x16\x94\x67\x71\xa6\x55\x79\x2f\x71\x47\x6c\xf6\xc9\x0c\x29\xff\x6a\x84\x4d\x99\x23\x5b\x65\x9f\x38\x9d\x78\x38\xf8\xb6\x90\xca\xce\xdc\x4e\x9f\xd6\x53\x73\xc9\x99\x27\x65\xc2\x0f\x3b\xf2\x9d\x64\x2d\x78\xed\xb6\x86\x13\xcd\xa0\xd1\x70\xdb\xce\xf4\x5b\xc1\x01\x1f\xde\x56\x70\xa0\x19\xdb\x8a\x64\x6e\x84\x09\x6c\x45\x32\xcf\x95\x3e\xec\x4c\x39\xf2\xe1\xb3\xc2\xe3\x4c\xcd\xa1\x90\x05\xc6\xa6\x54\x18\x3b\x7f\x21\x83\x4a\xe1\x6e\xd9\x4e\x88\x6a\xd3\xd3\xbe\xcc\x6e\xd8\xd1\x97\xf7\x09\x43\xbb\x60\x37\x88\x48\x0a\x3f\x6e\xe8\x69\xf7\xc5\x6d\x86\x9e\x84\xf0\xe3\xb7\xaa\xe2\xc8\x39\xa5\x97\x75\xf8\x1d\x89\x4d\xe1\xc7\x8d\x60\x87\x7d\x11\x59\x18\x4a\x81\x00\xbc\x47\x15\x7d\xdc\x0a\x07\xd3\x99\xc7\xc3\x0b\x95\x78\x7c\x4d\xf6\xcd\x65\xcd\xc8\x40\x98\xb8\x70\xd1\x4d\x55\x69\xed\xe8\x41\x28\x40\xeb\x6d\xe5\xf2\x77\x29\x54\x8e\xdf\x9e\xee\x95\xd8\x26\x03\x7d\xf6\x42\x0d\x23\x72\xbe\x70\x8c\x74\x86\xdc\x2d\xc7\x38\x43\x2a\x21\x33\x57\xdd\x65\xe7\xd9\xff\xe0\xeb\x61\x94\xdd\x95\x67\xd8\xe5\xa4\x91\x03\xa1\xf8\xe2\x7a\x63\x00\x76\x36\x80\xa5\x08\x82\xf7\xa9\xca\xca\x89\x33\x85\x33\x5f\x36\xf0\x60\xc7\xde\x97\xb7\xc3\x19\xea\x91\x51\xc3\x6d\xb1\xb7\x66\x1f\xc9\xde\xba\x31\xb7\xec\x4b\x7c\x2b\xcf\xde\xcb\x37\xdc\x80\x51\xca\xfc\x5a\x0b\x57\xea\x6d\xd4\x16\x5e\x17\x32\xb0\xb6\x83\x6d\x7c\x3b\xd4\x6b\xa6\x4c\x2b\x07\xdf\xb8\x1d\xe9\x85\x88\x78\xfb\x75\x43\x00\x8f\xa1\x7c\xc7\x6e\x29\xfc\x28\x0e\xaf\x42\x7d\x95\x7e\x22\x83\x91\x9e\xb4\xe5\x3b\xc9\x13\x27\x5d\xc8\xd8\x8a\xd1\x6c\xdf\xf2\xc8\x6c\x68\x09\x9d\xae\x1c\x8b\xb2\xc1\x7b\x17\x16\x7e\x83\xf7\x96\x23\xa2\xf5\x6d\xfb\x52\xfe\x9e\x3c\x55\x5e\xa9\x5b\xb6\xbf\xde\x43\xe9\x84\x87\x6d\x3a\x7b\x39\x91\x37\xfb\x76\x62\x32\xf4\x3a\xb7\x39\x0c\xbb\xd8\x38\xbf\x98\xdb\xb7\xec\xb0\xed\xe0\xae\xbb\x8d\x4b\xc2\x92\xde\x88\xc4\x8c\x5b\x5c\x03\x7f\x87\x2d\x5b\x6b\xc9\x0e\xb7\xad\x15\xcf\x13\xc3\xfc\x96\x63\xf4\x14\xca\x03\x95\xed\x77\xb3\x17\x32\xa7\xf2\xb7\xc8\xc1\xb9\x8d\xb0\x0d\xd7\xbc\xd9\x0b\x70\xdf\x8f\x01\x4d\xd8\x0b\x32\xd2\x4e\xfc\x14\xf6\xc7\x58\x47\x35\x65\xde\xb7\xf0\x3b\x59\x70\x27\xae\x08\x86\xfd\x6d\x38\xe2\x00\xfb\x1b\xed\xbe\xc2\xbf\x0b\x31\x01\x06\xfa\x2d\x39\xb7\x1f\xaf\x7e\xc9\x60\x3c\x53\x94\x49\x68\x59\x30\x66\xa5\x06\x2f\xd1\x92\x2b\xde\xbb\xe6\x25\xf5\xb1\xbc\x8c\x47\xa4\x01\x79\xeb\xfb\xa1\x53\xc7\xb3\x35\x3e\xb6\x19\xc2\xa7\x94\xa8\x7b\x62\x78\xdf\x1f\xf9\x4e\x62\x06\x37\xca\x6e\x39\xc6\x4e\xa1\xd3\x5c\xd1\xbf\x0c\x01\x3b\x35\x1f\x3e\x85\xc7\xeb\xfe\xe8\x79\x32\x5b\xca\xf4\x83\x35\x65\x9e\x7c\xd8\xab\xa3\xc1\x71\x42\xd8\x5f\x0b\x09\x93\x76\xbe\xc6\xb1\x6b\xa1\xc4\x09\x42\xc9\x5b\x31\xcf\x1c\xc3\xec\xe6\xb1\xa2\x5c\xe0\xa5\xa0\xfc\x54\xba\xef\x12\x61\xea\xeb\xec\x0e\x35\x65\x02\xc0\xe3\x74\x7f\xa5\x69\xc6\x7f\x65\x2b\x52\xbc\x1c\xb8\x0b\x1a\x64\xb7\x54\xee\x4c\x45\x8a\x97\xb0\x77\x45\x8a\x97\xb9\x43\x75\xe5\xb9\xa2\x51\xf1\xde\x28\x56\x64\xbe\x3d\x89\x72\xdb\x5f\x69\x72\x4a\x0f\x25\xc6\xc3\x3d\xf4\x35\x93\x0c\x7b\xb5\x89\x96\xd5\x36\x52\xee\xf8\x37\x1a\xe2\x06\x0d\x37\x7c\x4f\x11\xcf\x35\x22\xc2\xcf\x57\xdd\xe4\x40\xfd\x6c\xca\x4b\xcd\x9f\xcb\x42\x0a\x91\x8a\xb7\xc4\xcf\xcf\xf8\x18\x21\x7e\x96\xad\x31\xad\x6d\x05\x40\xcf\xf0\x41\x19\x6c\xeb\x89\x68\xfd\xf3\x2c\xb2\xc0\x32\xd8\xce\xc1\x76\xb3\xc1\x16\x17\x44\xe0\x70\x07\x1b\xf3\xe7\x07\x59\xd4\xad\x3f\x3f\xc8\x98\xf0\x9f\xb5\x2a\xf3\xfd\xf2\x4f\xfd\xf3\x93\x72\xf9\x8d\x94\x40\xde\xee\xc9\x32\xca\xb4\x3a\x07\x0a\x98\x9f\x51\xe7\x60\x45\xb6\x9e\x46\xf5\xfe\xe7\xa7\x33\xaf\x20\xd9\x4b\x37\x3e\xaf\x46\xaa\x2d\xff\x9f\xb1\x77\xc9\xbd\xac\x45\xa2\x7b\xfb\x35\x8a\x1a\xc2\xe1\x0d\x52\xa9\xe6\x02\xe7\xec\x7d\x7b\xb7\xe1\xf9\x37\x2c\xe2\xb7\x56\x5a\x96\x6d\x7d\xd9\x4a\x58\xb9\xff\x1c\x1e\x41\x40\x10\xaf\x8f\xb5\x30\x2f\x06\xa1\x7a\x47\x08\x75\xe9\xac\x3a\xb2\x5e\x1e\x35\x74\x83\x09\x77\xdc\xe5\x97\x9b\x97\x08\x0e\x62\x44\x2f\x3b\x5a\xfe\x59\x0b\x0d\xa9\x14\xb4\x8b\x70\xd1\x16\x10\xc3\x57\xb6\x64\x6d\xa2\x17\xdd\xb6\xfc\x91\xd6\x8b\x02\x63\xb9\x76\x5b\xcd\xee\x5b\x48\x0f\x3e\x06\x5f\xf4\x7e\xf2\x1c\x5a\xa1\x21\xad\xb2\x2a\x26\x1d\x6d\x29\x1e\x46\xa8\x9d\x3a\xc7\xd2\xfe\x60\xe7\xa2\xcb\xf5\x0e\x67\xd5\x49\x4c\x85\x5b\x23\x27\x54\x52\x2d\x1e\xa0\xb2\xbf\xe4\x17\xd9\x71\xca\x3f\xdb\xd9\x0e\xe4\x9f\x9d\x52\xca\xef\x8f\xf2\xcc\xf9\x17\xc3\xcb\xac\xfb\xff\x16\xcd\x0c\x55\x23\xbc\x46\x72\x33\x87\xff\xf4\xb7\x11\xf8\x34\xfb\x53\x26\xb9\xa8\xd9\x50\xd8\x0e\xff\x48\xbc\x4e\x49\x29\x48\x5a\xdb\x31\xfc\x87\xc1\x70\x08\x2e\x79\x6b\xa1\xda\x9b\x1a\xf1\x82\x51\x55\xd5\xee\xaa\xca\xe9\x94\x4c\xb5\x8b\x10\x2a\xb7\x16\xa1\x96\x3c\x44\xa2\xdf\xeb\x75\x7a\x87\x83\xe8\x12\x47\xdf\xe1\x20\x3a\x9b\x9b\x39\x18\x53\xea\xcb\x50\x57\x13\xaa\xfd\xd6\xc2\x22\xa9\x68\xc2\xc9\x54\x3b\xd4\xed\x13\xdb\x68\x7a\x84\x87\x46\xf9\x4f\xd2\xd1\xea\xe1\x8e\x8c\xb3\x53\x62\x1f\x19\x67\x07\xf1\xd0\x6f\x2d\xd2\x2f\xfb\xef\x42\x77\x2d\x45\x0c\xf9\x67\xa7\x9c\x4e\xc9\x38\x3b\x07\xac\x98\x84\xb3\x4b\x06\x01\x24\x9c\xcd\x1f\x91\x26\x09\x67\x87\xf4\x32\x3b\x1c\x29\x67\xd6\x04\x87\x73\xe4\xea\xd3\xb5\x16\x35\x7d\x89\x06\x87\x28\x98\xb7\x1a\xa9\x48\xdc\x1b\xb2\x28\xb9\x37\xf1\x50\xd7\xb5\x4e\x91\xef\x75\x76\x11\x46\x68\x72\x97\xdc\x3a\x49\xf7\x3a\x09\xf7\xbc\xc8\xf6\x9a\x3f\xeb\xe3\xff\x64\xc0\x1a\x14\xf9\x1c\x44\xfc\xb8\x4a\xfe\x99\x44\xe5\x42\x9f\xff\xc8\xa8\xc9\x21\x5b\xd2\x70\x33\x33\x72\x05\x76\xd5\x42\x7a\xd3\x92\x86\x17\x65\x91\x45\xec\x0e\x2f\xca\x4a\x8c\xf0\x5b\xfb\xfe\xf7\xdf\x3d\x79\x84\x27\xbc\xf6\xff\xb4\x12\x19\xf8\xb2\xc7\x1b\x4f\x15\x1a\x61\xf8\x50\x8e\xa4\x1d\x14\x3e\x94\x89\x74\x63\x8b\x5c\xb3\x45\x37\x3b\x72\xcd\x0e\x39\x9f\x92\x6a\xb6\x96\xec\x2f\x43\xca\x13\xe5\x67\xe4\x33\xf1\x81\x70\xa1\x2c\x04\x98\x5e\xe4\xa1\xcd\xd2\x3a\xee\xd0\x54\x0f\xe9\x19\x77\xc6\x45\x2d\xbb\x67\x87\xb9\x6f\xaa\x3e\x54\xbb\xaa\x97\xd7\xa7\xaa\x76\x42\x04\xd3\x6b\xe3\x0e\x3d\x76\xf9\x68\xbc\x79\x69\x0d\xd5\x55\x02\xa6\x6b\x45\x09\x46\x9d\xdc\x39\x14\x03\x52\x37\x28\xd9\xad\xd4\x3d\x3b\xf4\xd8\xb9\x4c\xd7\x22\x47\x85\xe7\x0d\x63\x59\xb2\x41\x2e\xf2\xe2\x56\xbd\x0f\x6c\x69\xb5\x45\xfc\xa1\xb9\x4e\xd5\x13\x80\xe1\xca\x12\xcf\xca\x84\xb1\x4c\x6a\x06\xf6\xfe\xf1\xa7\xf1\x4a\xad\x35\x0d\x5f\xc7\xfb\x87\xae\x5e\xf6\x22\x33\xc2\x9d\x45\xb6\x49\xbd\x0b\xb2\x95\x5b\xe0\x0e\x87\xc6\x25\x87\x1e\x52\xe8\x2e\x39\xcd\x6c\x82\x35\x17\x31\x94\xc2\xb5\x97\xe0\x98\x8b\x34\xb9\x4b\x3e\x3c\x5b\xca\x5d\xe9\x30\x76\xc1\x92\x5b\xfc\x3d\xdc\x0b\x93\xd9\x74\x04\x5d\xce\x1f\x3d\x1e\x91\xfd\xb6\x9b\xbd\x86\x1a\xb8\xc8\xdf\x76\x17\xe2\xea\xfa\x37\x74\x2f\x73\x33\x6f\xa4\xa2\x50\x6f\xc2\xc8\x43\xea\xf2\x8d\x5b\xe0\x47\x1e\x3d\x64\xbf\xb5\x97\xe2\x0e\x4f\xc0\xa6\x6b\xbf\x32\xdc\x4a\x5e\xd8\xa1\xf7\x5d\x49\x33\x55\xb8\x6d\xe8\xc9\x6d\x17\x5e\xf4\xdd\x37\x6e\x1b\x7a\xab\xdb\xe1\x09\x38\x96\xff\x13\xd9\xa6\xe8\x17\xb9\x6d\x2c\xff\x48\x44\x86\x90\x29\x35\x19\x6f\x67\xf3\x94\x1f\x42\x9e\xfb\x0f\x23\x8f\xe1\xc7\x8d\xc6\x4d\x54\x8f\x19\xbb\x12\xa3\x4a\x44\x56\x39\x43\x65\x5a\xbe\x43\x33\x3b\xc6\x9f\x4f\x63\x58\xd9\xb5\x70\xbf\xfe\xf8\x4b\x36\x16\x77\xba\x5d\x09\x03\x96\x5c\xfb\xc5\xec\x30\x8f\x64\xce\xd5\xbb\x3d\x99\x73\x95\x4f\x6a\x91\x38\x77\xca\x6d\x49\x89\x73\xbd\x73\x2a\xdc\x5f\x3c\x26\x14\xb5\x4b\x6f\x95\x3b\x5c\x06\xe7\x47\xcc\x3f\x14\xb3\xb3\xbb\x15\x69\x62\xf4\x7b\x61\x9d\x4d\x44\x91\xa5\xfc\xb7\xb2\x81\x20\xa9\xed\x4a\xd9\xb5\xd0\x92\xe8\x3c\x45\x89\x99\x24\xc9\xef\x88\xee\x3b\x49\xe7\x72\x6b\xa1\x26\x11\xe3\x6a\xa8\x49\xf2\x5f\xf0\xe9\x08\xe8\x9b\xd3\x47\x5b\xb5\xc5\x9d\xa5\x68\x31\x1a\x6a\x32\x4d\x69\x43\x4d\xa6\x7d\x13\xca\xc7\xa9\x78\x1b\xbb\x11\x9d\x5c\x7b\x21\xe2\xf4\x66\xfb\x45\xef\xc6\x0d\xba\xa9\xd1\x88\xd5\x6a\xba\x25\x50\x6f\x92\x67\xcc\x0e\x7f\xbe\xa5\x37\x88\x1d\x6a\xca\x25\xa3\x0c\x52\xec\xe6\xf4\xd1\xf2\x93\x63\x57\x11\x1f\x76\xb8\xf0\x29\x7d\xd6\xad\x45\xa0\xe0\xae\x3f\xdc\x8c\xd1\xb3\xc3\xc5\x44\x97\x86\x08\xa3\x9b\x93\xf9\x2a\x9e\x79\x7a\xcb\xd9\x0d\xbf\x6c\xad\x47\xe8\x37\xb3\x84\xb4\xdd\x88\xa8\x92\xd5\x4c\x04\x45\xfc\x68\x53\x87\x63\x5e\xd1\xeb\xc5\x0e\xc7\xbc\xfb\x13\xfe\xb4\x46\xe7\xfc\x69\x8b\x68\xd2\x6e\xb4\x47\x5a\x20\x75\xfc\xc4\x16\x77\x4f\xe3\x4d\x40\x5e\xfb\xa4\xf1\xcd\x4a\xf1\x7c\xab\xdf\x4b\xd3\xee\x69\x84\x1b\xe8\x3a\x39\x1a\xf6\x32\x1f\x4f\x0e\x47\x25\x97\x66\x52\xfe\x36\x05\xf5\x20\xe3\x6f\x9e\x62\x95\x11\xaa\xb7\xf9\x7a\xd7\xc9\xf6\x9f\xfc\x65\x8f\x3c\xb6\xfe\x32\x7a\xaa\xfb\x5c\x27\x1d\xad\x0e\xce\xd0\xc4\xde\x9f\xf7\xa7\x3b\x3e\xf5\x7f\x9e\x38\x1b\xfc\x87\x5f\x3e\x1d\xaa\x32\x8c\xa6\x9a\x86\x31\x55\x8d\xf8\xac\x3a\x57\xd1\xb6\x2a\x16\x03\x59\x85\x4b\xf5\x97\xf1\x22\xe9\x7b\x69\x28\x5b\xab\x6c\x62\x76\xc4\x0a\x2e\xcb\xad\xec\x30\x37\x10\x83\x0b\x0d\x6a\x93\x9e\x8c\x2c\xc2\xb3\x68\xfa\x43\x2d\x3a\x25\xf9\xee\x1e\x7b\x7a\xf9\xf7\xe2\xb6\x25\xf3\x4f\x32\x0c\xe7\xf4\xf1\x0f\xf2\xac\xec\x01\xc7\x6d\xcb\x57\xc8\xf0\x0c\xcc\xc9\xa4\x19\xae\x81\x43\xfa\xb6\x3d\xb0\xa9\xf7\xff\x05\xd7\x92\xa5\x0d\x49\x7d\xa7\x6f\x31\x43\xdb\x4f\x97\x3f\x94\x96\xd2\x2a\xed\x50\x5a\xce\x0f\x5a\x85\x1d\xfe\x75\x4b\x76\xb3\x1b\xff\x3a\x29\x5c\xc8\x06\x7c\x9b\xf1\xef\x47\x06\xc3\xe5\x1a\x2b\x35\xdd\x6a\x5c\xbd\xa7\xff\x92\x95\x9a\xee\xeb\x1b\x1d\x50\x6d\x33\x48\xb1\xca\xd0\x7e\x4e\x89\xd0\x1b\xed\x67\xd6\x4e\x1d\x4a\x0c\xaa\x3f\xe4\x12\xab\x9d\x12\x4a\xbe\x29\x4b\x00\xd2\xf8\xe6\xe4\x13\x2f\x94\x7c\x43\xda\xc1\x1d\x6a\xbd\xe5\x4d\x15\xae\x71\x4b\x46\xed\x4a\xb1\x2b\xe3\x50\x52\xec\x2e\x3d\x7a\x93\x28\x77\xc9\xe0\x75\xcf\x78\x91\x2c\x22\xc6\x88\x5d\xbb\x7c\xa1\x8f\xd0\xb5\x39\x49\xdb\x4c\xd6\xda\xa5\xd8\x1f\x1b\x9f\xb6\x2c\xf2\xc7\xa7\x2d\xf9\x4a\x3d\xc9\x6f\xd9\xff\x31\x02\xf5\x22\x6b\xed\xca\x3a\x9a\xc3\xc5\x6d\xca\x12\x68\xe3\xe2\x26\x8f\x71\x72\xd8\xce\xbc\xfc\x13\xfc\xa2\xf8\x56\x68\xb9\x96\x19\x77\x68\xb9\x96\xcc\x11\x77\x28\xb9\x56\x2e\xfe\xbf\x88\xcf\xa8\x61\x84\x3e\x6a\x99\x17\xe2\xc7\x26\x9b\x0d\xf2\xd9\xe6\x3f\x47\xea\x62\x1a\x91\xe0\x95\x87\x96\xb4\xf5\xb7\xd6\xf9\x74\xaa\x3a\xe2\x10\xf7\xa7\xa1\x97\xd7\xfc\x87\x42\x6a\x65\xf1\xe2\x50\x32\x4d\xe9\x86\x95\x96\x56\xb6\xf9\xa4\xa5\xcd\x49\xce\xe5\x3b\x14\x49\xca\xf4\x76\x6b\xb1\xfc\x3a\x9b\x42\x59\xb4\xb2\xd8\x3d\xca\xa2\xa4\x38\x25\xe4\xa5\xcd\x0a\x53\x45\x5e\xda\x5a\xdc\x9b\xd0\x62\xca\xab\x8b\xbc\xb4\xf5\xa3\x53\x6c\x11\xfa\x4d\xe4\xbf\xb0\x79\xd4\xf4\x2f\xf6\x3f\x51\x4e\x17\x79\x69\x53\xaa\xfe\xc3\x1a\xca\x41\xff\xdf\x65\x3f\x8a\x42\xb0\x51\x2b\xd5\xe4\x46\x23\xa9\xb7\x6e\x3b\xe1\x8e\xd7\x3f\xc3\xb5\x50\x7f\xea\xd4\x8e\x58\xb9\xc5\xec\x2e\x54\x4e\xfd\x33\xfc\x7f\x98\x4e\xfa\xff\xde\xf8\x3f\x6a\x3b\xbc\x46\x86\x5a\x09\xc7\xbd\xdb\xed\xa2\x6a\x9c\xa1\x9a\xa7\xd0\x5c\x75\x29\x0e\xc8\x7c\x9b\xe5\x88\x4b\xe6\xdb\x34\xb5\x14\xa1\xb8\xea\x32\x70\x26\xf1\xed\x6d\xb4\xaa\x1a\xa3\x98\xae\xc5\x51\x30\xdc\xcc\x37\x52\x39\xf9\xff\xc2\x80\x4c\x9b\x26\x74\x53\x9d\x1c\x22\xb7\x16\x82\x91\x7f\xf0\xd2\x57\x37\x5f\x0a\x65\x54\xf9\x88\xa3\x85\x32\xaa\x9b\x2d\xe1\x0b\x98\xd2\x72\xf5\xca\xa1\x79\xb9\x99\x08\xa6\x26\xa2\x89\xe0\xb7\xb9\x8b\xf7\x85\xbb\x5f\x6d\x1e\x53\x9c\x19\x9f\x3f\xff\xd7\x91\xf6\xf4\x8b\xf7\x92\xde\x3f\x12\xe6\x37\xc1\x32\xc5\x6d\x37\xd1\x03\xb5\x9f\x43\x53\x35\xa4\x18\x26\xd1\xed\xe8\x62\x3d\xa1\x52\x1a\x96\x18\x42\xa5\x34\xf4\xae\xbb\x43\xa3\x94\x2c\x23\x85\x46\x29\xa7\x9c\xdc\xe8\x8e\x4f\x35\x42\xae\x0c\x39\x69\xd9\x78\x76\xd5\x2e\x0d\x1d\xd2\xe8\xda\x33\xa1\x43\x1a\x52\x9b\x90\x21\x77\x58\x10\x3e\xbc\xc1\xea\x72\x8b\x37\x9d\x74\x31\xa4\xa7\xcd\xb6\xe5\x22\x3d\xed\x50\xb0\x0e\xd2\xd3\x2e\xd9\x0b\xee\x08\xb8\x5b\xa4\x0b\xda\x11\x6f\x77\x4a\xd9\xbe\x43\x33\xe4\xb8\x3e\x24\xb2\x75\x08\x20\x12\xd9\xde\x9f\x70\x75\x86\xbd\x9c\xff\x30\x1e\x4b\xc5\x24\x0e\x47\x8d\x19\x71\x28\x83\x86\x6f\x85\xe1\x95\x37\xbc\xf5\x0e\xef\xb3\xfe\x7d\xf8\xb9\x39\x48\x38\xde\x8d\xfe\x17\x5a\x44\x32\xd0\x3a\xca\xcd\x46\x53\x24\x77\x46\x52\xc7\x0e\x99\x92\x92\x39\x36\xa7\x2c\xc1\x0b\x15\x4f\x17\x93\x8e\xc0\xbd\xd5\xe3\xf8\xf2\x76\x28\xba\x09\xd5\x4c\x4e\x59\x3d\x47\x37\xe3\xeb\x64\x68\x63\xd6\x6c\xfe\x43\xb6\xbb\x7e\x12\x75\x8c\xef\x93\xa1\x8e\x19\xbe\x24\xe2\x5d\x27\xeb\xd1\xfd\x65\x1e\xb5\x17\xbf\x08\x9e\x3a\x16\xbe\x3c\x73\x0f\xd7\x2a\x1c\xa5\xa8\x1a\x81\xa1\xdd\x8c\x76\x83\x76\x38\x9a\x9b\x52\xfd\x97\x93\xff\xd4\x90\x91\x59\xbb\x3f\xc5\x0a\x4c\x9d\x8b\x98\x71\x52\x6a\xed\x2f\xf6\xc8\x59\x37\x88\x2f\x8a\x5b\xdd\x68\x42\xad\x53\xfd\x12\x12\x81\x7c\xbb\x6c\xe9\xf6\x37\x2e\xc9\x0a\xba\xb3\x7f\xdc\x19\x7c\xf5\x08\x17\xba\xac\x90\x0d\x5b\x2e\x74\xa2\xdc\xd0\xe4\x0c\x3f\x10\xff\x88\x9e\xa9\xab\xef\x4f\xdb\x61\xaa\xd6\x69\xb4\xa8\x1a\x7b\x55\xcb\xf1\x63\xa9\x9a\x7f\x22\xc8\x41\x37\x98\x9f\x44\x54\xff\x5d\x90\x51\xf6\x0f\xbe\x91\x0e\x8f\x89\xfa\x2d\xf5\x5b\x7d\x63\x8f\x69\x03\x84\x5b\x5e\xf6\x5e\x09\xb7\x3c\x87\xc0\x22\x53\x6c\x4e\xf2\x67\x54\xaa\xd8\xa1\xed\x40\x8e\xd7\xac\x59\x0c\xe5\xcd\x1a\x12\xd9\x22\x74\xee\x1a\x3a\xec\x1e\xcd\x5b\x75\x35\x02\x83\x6b\xa5\xc2\x85\xee\xfe\xe7\x52\x35\x02\x58\xe8\x37\x94\xe5\x55\xf3\x1f\x4a\x98\xac\xe4\x2e\x6b\x87\x16\x66\xf9\xb6\xfb\xe0\x19\x5f\x5c\x0b\xbd\x9a\x36\xc7\x83\xd2\x4b\x64\x1c\x21\x62\x97\x0c\xba\x48\xeb\xea\x80\x89\xe4\x55\x75\x14\x46\xf2\xaa\xae\x21\x21\x05\x1d\x4c\x2a\xd3\x9f\x46\x33\xda\x46\xb8\xbe\x49\x93\x42\x9a\xd1\x25\xdb\x2b\xd2\x8c\x2e\xe9\x6e\x48\x1e\xba\xa4\xfe\x25\x77\x68\x4e\xf5\xe3\xea\x8a\x67\xdf\xa6\x5a\xf4\x46\x3b\x25\xc2\x9c\x3a\x42\x20\x79\x3e\x73\x52\x10\x16\x12\x7d\x2e\x59\x58\x90\xcc\x73\x49\x21\x47\x32\xcf\xfb\xe9\x52\x35\x3a\x2e\xae\xfa\x12\xa6\x5d\x47\x1c\xfe\x64\x32\x2d\x24\x7f\x67\x4e\x7e\x16\xc3\x9f\x4c\x61\x10\x49\xd2\xe9\x48\x87\x3b\xb4\x2e\xd3\xf7\x84\x50\xba\xdc\x3f\x54\x77\xe2\x6d\xd9\xaf\xd0\x04\x08\x95\x95\x1e\x29\x2d\x1d\xc0\x51\x29\x2d\x93\x37\x55\xe8\x59\x1c\xf7\x8f\x1c\x93\x6b\x70\xfc\x92\x63\xd2\xe1\x03\x49\x1c\xe9\x30\x84\x24\x87\x5c\x93\x33\xf5\xe0\x79\xa6\x08\xa9\xb7\x1a\xcc\x89\x5d\x4c\xe6\xc8\x79\xff\xef\x9f\x58\xf5\xc1\xbd\x8c\x6c\x6b\x8b\x2c\x8f\x4b\x9a\x34\xb2\x3c\xe6\xa4\xe0\x1a\xa4\x79\x5c\x32\xd0\x25\x95\xe3\x92\xef\x0f\xa9\x1c\x17\xf9\xf2\x17\xc9\x1b\x97\x5c\x88\x48\xd7\xb8\x14\x22\xf1\xe0\xa5\x26\x8b\xa2\xf3\xe1\xfd\x32\xe9\x17\xb0\x98\xac\xfe\xfd\xf0\xe7\x93\x03\xc6\xf9\x84\x19\x41\x92\x33\x01\xb9\x1c\xd7\xf8\x53\x83\xe4\xa6\x26\x20\x5c\xaf\xa4\xa2\x38\x1f\x0e\x19\x45\xc2\x38\x1f\x6c\x4a\x92\x16\x20\x2c\x6d\xa5\x92\x3b\x1f\xc4\x04\xd9\x3d\x9f\x34\xe9\x81\x6b\x31\x64\x38\x87\xf2\x3e\x4a\x41\x7a\x12\x0b\x00\x39\x1e\x7c\xd8\x94\xf3\xf3\x56\xc3\x42\x99\xcb\x28\x69\x20\xef\x7f\xaa\x1d\x0e\xf6\xe4\x76\x46\xf8\x17\xfa\xd3\xa0\x0e\xc4\xad\x93\x44\xe4\xfe\x3f\x9c\x0b\x3e\xae\xbe\xb1\x75\xd5\xd5\x20\x64\xe9\x0b\x0f\xfe\x6d\xb2\x0c\x25\x49\xe4\xd2\x73\x22\x49\x22\xb3\xc3\x97\x91\x25\x72\x49\xed\x7a\x12\x97\x25\x29\xfa\x4f\x68\x22\xaa\x6e\x87\x27\xb4\x0d\x43\xde\xc7\x27\xc3\x10\x65\x90\x74\x42\xdd\x90\xc5\xf3\x9d\x6d\x12\x9e\x47\x0e\xc9\x21\x7f\x5f\xa5\x90\x4c\x32\x54\x3d\x39\xa2\x84\xca\xe1\xf7\x64\x2c\x29\xe0\x72\x27\xc3\x2c\x65\x7e\x7a\xb2\x66\xb9\xaa\xd9\xb0\x9e\x90\xd3\x04\xf9\x26\xef\x7f\x32\x92\x78\x7e\xcf\x7a\x99\x25\x1b\x64\xb6\xa3\x84\xd2\x41\xca\xff\x8f\x74\x90\xf7\x3f\xf5\xa3\xc8\xaa\xcd\x43\x09\x4a\xcb\x9a\xbd\xac\xd9\xe3\xfc\x22\x3f\x62\xd1\x61\x7e\x4a\x04\xf5\x49\x22\xee\x42\x80\x65\x4d\x5e\xe1\x6e\x81\x58\x47\xae\xc0\x21\xfb\x28\xf2\x01\x4e\x1d\x2d\x87\x67\xec\xae\x7d\x4f\x92\x3f\xbd\xa2\x9f\x42\xca\x49\xcd\x07\x49\xfe\xe4\x29\x7b\x8a\xf2\xf1\x68\xdf\x85\x57\xd2\xea\x62\x26\x11\x4e\x6e\xc9\x5a\xed\x54\x14\xb1\xa2\xd6\x0a\xfb\x96\x23\xe9\x51\xac\x39\xed\x88\x4a\xc0\x55\x35\x1a\xcf\xbf\x53\x07\x0d\xb9\xf2\x72\x92\x45\x20\xc9\xf2\x56\x17\x17\xa8\x90\x6b\xd7\x46\x8b\x6c\x79\xab\x8b\x78\xc3\x4f\x67\xc9\x44\x88\x3c\x77\x73\xb8\xab\xe1\x8b\xa3\x50\xd8\x8b\x44\x77\xb3\x4f\xb5\x1a\x11\x1f\xe4\x2c\x4e\x52\xba\xf5\xe7\x27\x42\x4d\xfa\xf1\xef\x07\xb5\xca\x22\x8f\xf4\x6e\x4b\x7a\xac\xc3\x33\xae\x02\x77\x9c\x78\xc6\x5d\xfe\xbd\x86\x26\x54\x4c\x88\xc7\x58\xbd\xb7\x91\xfd\x6c\x48\x85\x48\x82\xb3\xd5\xb5\x91\x1b\x5a\x61\x04\x9b\x13\x61\xd1\x96\x17\xb8\x21\x70\xeb\xf6\x48\x6a\xb2\x59\xc6\x3f\x9b\x7e\x9c\xc6\x78\xb5\xfc\xf1\xc2\x3a\xf5\xc2\x77\xba\x56\xb1\xa9\x16\xab\x28\x71\xed\xc4\xfb\xe3\x92\xcd\xc8\xe9\x0c\x4a\xd4\x17\x8f\x81\xab\x73\xb0\x91\x38\x2c\xa7\xa1\x55\x8c\x30\x61\x4b\x6e\x52\xa7\xa3\xa6\xe5\x4a\x76\x3a\xa4\xc9\x2b\xd2\xe9\xd1\x37\xbd\x70\x92\x00\x6c\x7e\x34\x37\x1d\x9e\x9b\x5d\x8b\x59\x14\x57\x89\x07\xbf\x25\xdb\x92\x13\xef\x7d\x39\x91\x52\xf6\x56\x63\x31\x44\xd3\x03\x79\x7c\x68\xa5\x06\x01\x5d\x5d\x63\x50\xc5\xb5\xb8\x66\x8b\x1f\xc6\x13\x5f\x4e\xba\x75\x1d\xde\xf8\x4c\xa8\x83\x21\x8a\x73\xe1\x6d\xa0\x77\x84\x33\xd0\xd8\x73\x05\x23\x1d\xd6\x92\xd4\x79\xc2\xf8\x7f\x49\x22\x25\x39\xd6\x52\x64\x8c\x13\x06\xfe\x4b\x42\x27\xe9\xaf\xe6\xf8\xf3\x65\xfc\x9e\x76\x6d\xa4\xa6\x5a\x92\x40\x4f\x84\x97\x5a\x72\xc8\x3c\x53\x3d\x2b\xaa\x9d\xf8\x32\xab\xf6\x25\x0a\x9e\x3f\x8d\xdd\xf6\xa7\x16\xda\x7c\x9d\x71\x61\xc2\x9e\x65\xd9\x70\xc2\x84\xbd\x7b\x27\x4c\xd4\x6b\x43\x3f\x11\xee\x73\xf2\xac\x21\x8b\x55\xf6\x49\x49\x3c\xab\xe4\x93\x2a\xe2\x59\x65\x79\x9e\x9d\x88\x67\x55\x3f\xe2\xe9\x93\x3d\xeb\x13\x6f\x2a\x5d\xff\x52\xed\xe1\x3f\x5d\x7d\xe3\x8d\x43\xed\x20\xd6\xf8\xe4\x0a\x3b\xf9\xbe\xdc\xbb\xf0\x9c\x55\x4c\xda\x83\x9d\xbc\xbc\x79\x48\x71\x75\xff\x50\xb3\x1a\x91\x5e\x87\xb6\x6d\xbc\x1a\x76\xc5\x84\x3d\xf1\x6a\xd8\x15\xbe\xf5\xc4\xab\x61\x57\x14\x58\x32\x5e\x25\x1f\xa3\xf1\x86\xd8\x15\x3d\xf5\x4c\x82\x79\x8a\xd7\xaf\xa9\x9e\x56\x55\x4b\x78\xf7\x4d\xd5\xea\xfd\x43\x5d\x47\xe2\x0d\x31\xe9\x2d\x9c\x8c\x57\x45\x56\xfb\xe7\x8f\xd9\x7a\x53\x35\x7e\x71\xfa\xd3\x58\x38\xed\xe1\xb5\xf4\x8b\xfa\xcb\x15\x73\xc3\xd5\x95\xec\x58\x5d\xc6\x7b\x47\x0f\x8c\xd2\x21\x9d\x78\x60\xec\x0a\x8b\x77\xc2\xe2\x7d\x98\xa6\x17\xfb\x5d\x0a\xa6\xb3\x38\x37\x25\xe7\x9e\x30\x72\xef\x0a\x86\x42\x9a\xad\xfe\xa7\x3f\x5b\x19\x77\x55\x6b\xfc\xa1\xff\xf3\xf2\x46\x29\xea\x48\x9e\x55\xb3\x3f\x8d\x87\x1d\x05\x94\x3b\x7a\x1b\x54\xfc\x5e\x92\x67\x0d\xb3\x6d\x45\xe7\x52\x54\x5e\x92\x67\x2d\x79\xd3\x9e\x78\x0e\x5c\x7a\x65\xfb\x93\x3b\xab\xa8\x76\xf8\x43\xff\xc8\x37\x3c\xcf\xfc\xe9\x2f\x0c\x5a\x34\xc6\xb0\x66\x24\x25\xd8\x22\x75\x56\x96\x9a\xf4\x6c\x5e\x7d\x86\x6b\xf1\x3e\x31\xfe\xd9\x2f\x91\xe4\x54\x43\xe6\x2d\x24\xa7\xca\x12\x73\xcf\xe6\x92\xa7\x21\x46\xc6\xa9\x21\xd3\x17\x12\x4e\x65\xe5\x4b\xbd\xd5\xb8\x27\xe8\xea\x4a\x50\xad\xa2\x89\xe3\x99\x4d\x4e\x2c\x87\xb8\x59\x52\xfe\x90\x55\x6a\x4d\x9d\xd3\x9b\xb8\x8c\x5a\x8c\xcd\x24\xea\xd4\xde\x64\x63\x74\x9b\x31\x6d\x7a\x39\x38\xf1\x3a\x96\x1d\x85\xf9\x60\x71\x6d\xc3\xb3\xe3\xb0\x55\x49\xb5\x15\x2a\xa5\xae\x1a\xf7\x94\xac\x5a\x84\xde\x17\xcb\x09\xe3\xe8\xac\x38\x1d\x27\xde\xce\xba\xac\xe3\x8f\xde\xce\xe4\x51\x75\x0e\x71\x4f\x45\x53\xf1\x3e\x56\xf4\x1c\x7a\xe2\xd1\x2b\x9b\x6e\x8f\xa2\xb4\x17\xd5\x98\x36\x86\x8f\x39\xb4\xef\x0c\x98\x43\x27\x59\x74\x9c\xc3\xdd\x6b\xba\x16\x0f\x19\xa2\x8c\xc3\xd3\xcd\x4a\xae\xc6\x43\x86\xf6\x58\xd8\x4a\x8f\xd9\xfc\x87\xf1\x90\xe1\xa9\x09\x83\xdc\xbe\xd4\x1b\x5e\xc0\x74\xa1\x22\x1f\x96\xc2\x3b\x9d\x83\x5e\x54\x4e\xa1\xe7\x90\x69\x42\xfc\x27\x8c\xa5\xd7\x14\xff\xc7\x58\x3a\xfd\x99\xd4\xf0\x1e\x97\x49\xee\xd1\x4b\xda\xca\xfe\x36\xae\xfc\xcd\x9f\x62\x8e\xee\x5a\x88\x0a\xbc\xb2\x90\xc7\x4a\x49\x39\x16\x79\xac\x72\x92\xed\xc7\xf9\x72\x55\xaf\xae\x7d\xf9\x4f\x7f\x1b\x76\xc6\xd5\xb5\x27\xec\xa2\x96\x6a\x2f\x9f\xb2\xc8\x11\x0b\xab\x0e\xf1\x4a\x12\x62\x99\x55\x47\x3e\xac\xfb\xe9\x54\x35\xa8\xd3\x3f\x09\x23\x93\xb9\xf6\xf9\xa2\xc5\xfc\xf3\x97\x4c\x88\x38\x47\x44\xca\x6a\x52\xd5\x9d\x88\x7f\x55\xe4\x6d\x7c\xbe\x5a\xf4\xea\xff\x8c\x45\x97\xac\xf0\x8d\x00\x40\x7d\xf9\x53\x56\x4b\x5f\xf2\xd0\x2c\x01\xfd\xab\x25\x70\xab\x3c\x66\x4a\x22\xfb\x6a\x09\xba\xff\x32\x5c\x89\x74\x5a\x7d\xd9\x4a\x8a\xbd\x4e\x02\xad\x5b\xa5\xdd\x78\x4d\x1b\x32\x92\x3e\xbf\x49\x30\xcc\x8f\x6a\x91\xda\x4d\xdb\x2c\x9e\xc1\x96\x82\x9c\x9c\x78\x06\x2b\xd2\x41\x9c\x78\x05\xeb\xbe\xb8\x87\x39\xf5\xf0\xe9\xfd\x43\x58\x5a\x7f\x3e\xc5\x0e\xbb\xa8\x16\x34\x20\x5e\xf9\x8b\x4b\xee\xa8\xfe\x89\xa0\x16\xad\x72\x98\x4c\x2b\xbd\xcd\x22\xb9\xd6\x94\x8e\x8b\xe4\x5a\x39\xf9\x0c\x8a\xec\x5a\x8e\xa7\x4e\xfe\xac\x35\x24\xd4\xfc\x78\x93\x6a\xfe\xc3\xc3\x1f\xea\x17\x37\xbf\xaf\xa9\xd1\x25\x57\xbf\xaf\x57\x38\x35\x8a\xd3\xb4\xc6\x14\x6f\x72\x43\x51\xe4\xc8\x3c\x35\x5a\xf9\xdf\x6f\xd5\xad\xfc\x9f\xac\x3a\x82\x5a\x65\x5f\x9c\xb1\xa7\x56\xe0\x1c\x32\x48\x0d\x4b\x9c\x61\x4e\x3d\xb3\x66\x26\x1e\xeb\x66\x11\x1f\xc5\x44\x5a\x81\xf7\xc9\x11\xb5\x14\x10\x83\xcc\x4f\xd9\x97\xe8\x78\xba\x4b\x7a\x90\x22\xf3\x53\x97\xb9\x3c\x99\x9f\x86\xc2\x75\x2b\xb9\x93\x59\x4c\x18\x5a\x57\xc5\xbc\x38\x84\x90\xca\x1f\x31\xdc\xc7\xb1\x8d\xab\xaa\x93\xa4\x5c\xfe\xdf\x30\x98\xff\xf8\x37\xb1\xa2\x48\x92\x9b\x9e\x60\xfa\x19\xc3\x89\x67\xc5\xfc\x67\x45\x62\x7f\xd6\x43\x6e\x96\x15\x95\x78\xe9\x63\xdf\xdc\x4a\x5c\x9d\x6e\x5f\xdf\x5d\xf9\xab\x4f\xf0\xe3\x77\x47\xcc\xe4\x8c\xc8\xff\xee\xc8\x4d\x9c\x3a\x16\x1e\xef\x8e\xe8\xb3\x93\x60\x74\x2f\x3a\xed\xfc\xe1\x3a\xfe\xee\x49\x54\xec\x20\x86\x77\xe3\x00\x9a\xf1\x09\xb9\x55\xc6\x15\xcc\xe2\x25\x77\x2b\x16\xb4\xb7\x12\xae\xb9\x4d\x95\x70\x15\xad\xaa\x2c\x0f\xe1\x55\xa6\xd4\x0f\xb1\x2d\x5e\xae\x98\x78\x91\xbd\x5c\xf1\x08\xbd\xf4\x72\xc3\xc3\x2f\xee\x55\xde\xc0\xd8\xf7\xef\xc1\xab\xe0\x43\x25\xde\x17\x6f\x7b\x55\xd5\x50\xe9\x34\x55\x2a\xff\xe7\x6a\x18\x53\xb6\x7f\xfd\xe7\xfd\xec\x0f\x29\x28\x72\x8e\x64\x7c\x02\x58\xa6\x4b\xfa\x01\x94\xc9\xa4\xde\x8d\x72\x81\x55\xe7\xff\x5a\xc8\x0b\xec\x1e\xf7\x35\x96\xf2\xfd\xec\x48\xb7\xc2\xca\xf3\x2b\x59\x36\x22\x39\x34\x85\xef\x67\xd7\x19\x8e\xc2\xf7\x4f\xd2\xff\xf3\x1a\xf3\x3f\xf6\xff\xff\xff\x3d\xff\xfa\x4f\xfe\xfc\xf7\xdf\xff\x19\x77\xac\xff\xfa\xcf\x37\x12\x4e\xde\x7f\xae\x14\x12\x36\x97\xdf\x78\xa0\xfe\xcf\xf7\x89\x0c\x39\xf7\x06\xfb\x0d\xf3\xff\xfb\xcf\x9d\xf0\x7b\xde\x7c\x23\x07\xd8\xfd\xe7\x8d\x14\x6a\xff\xfa\xcf\x37\x5e\x92\xef\x3f\xf7\xaf\x2e\xbd\x7e\xc3\x2e\xff\xfe\xb3\xc2\xd4\xe7\x5f\xff\xf9\xc5\x6b\xe7\xfd\x27\xf4\x8a\x39\x90\x1e\x08\xea\xe1\x75\x91\x23\xe4\x5e\x20\xee\x6f\xfd\x22\xab\xcd\xfd\xe7\x22\x71\xf6\x65\xd2\x07\x51\x20\xc5\x98\xd0\xaf\xd1\xc8\x4a\x93\x40\x2f\xaf\xa1\x50\xc2\x3c\x31\xd0\x10\xec\x29\x44\xa6\x87\x0f\xe8\x31\xca\x2d\x34\xe8\x35\x13\x8e\x9b\x42\xa4\xfc\xef\x42\xbb\xd1\x15\x2e\x36\xc0\x21\x27\x51\x98\xe1\x21\x16\x68\xdc\xab\x29\x84\xdc\xd0\x84\x76\xa3\x97\x05\xf2\x04\x74\x6b\x8f\xe1\xb0\x68\xa2\xcb\xa1\x47\xa2\xb0\x23\x39\xc2\x45\x89\x9e\x45\x01\x3d\x3a\xe8\xa9\x42\x39\x93\x40\xe3\x3d\x8f\x42\xd0\x53\x16\x3a\x85\x92\x43\x95\x6f\xab\xbf\xe5\x91\x25\xf6\x66\x26\xc2\x08\x85\x78\x88\xa1\x85\xb6\x8c\x86\xbc\xbc\x82\x27\x66\x42\x5c\x50\xb8\xc7\x0d\x76\x91\x99\x80\x11\x14\x2e\x3f\xc5\x04\x3c\x13\x3a\x81\xc2\xbd\xe6\x10\x33\x3f\x13\x36\x80\x42\x7c\x1d\xb7\xe6\xcc\x1d\x9e\x42\xf8\xe6\x60\xae\x96\xc9\x7c\x4b\x21\x86\x48\x7c\xf5\x4c\x5e\x5b\x0a\x1b\xbc\x0a\xff\x09\xc7\x19\x89\x98\x60\xb7\x3a\x8d\xc7\xe6\x44\x92\xc8\xe4\x99\x8d\x82\x82\xcb\xc4\xe1\x77\xab\xfe\x7e\xf3\x7d\x28\x7f\x32\x59\x62\x29\xfc\xc0\xb3\xf0\x57\x78\x48\x4a\x99\x7b\x74\xe6\x56\x4f\xa1\x81\x6b\x5c\xa7\x1b\x87\x15\x78\x1e\x8e\x7f\x17\xf6\xcf\xc3\x7e\xe6\x96\x4f\xe1\x05\x67\xbc\x47\x0b\xc8\xd5\xfe\xe2\x53\xb8\xfa\xc9\xdd\x35\x13\xdd\x23\x93\x5e\x8d\x42\xdc\x7c\x3e\x31\xae\x42\xde\x33\x0a\xf1\x60\x22\x70\x1a\x7c\x4d\xa1\x85\xe4\x62\x14\x48\x97\x2f\xb4\x1a\x25\x20\x96\xd0\x6e\x74\x44\x34\x31\xa1\x3f\xa3\xcf\xa5\x81\xa5\x3e\xec\x24\x38\xc4\x24\x44\xe1\xc2\x3e\xa7\x10\x53\x58\x96\x7e\xf1\xb8\x77\x4c\x15\x61\xa5\x0b\x79\xb2\xa2\x70\xc2\x4f\x98\xb1\x64\x0f\x30\x5e\xa4\xd1\x49\x15\x92\xed\x50\x88\x2c\x5d\x18\x60\x14\xf2\xec\x50\x78\xc0\xf9\xcd\xec\x2e\x46\x30\xaf\x5a\x68\xa5\xb8\x6d\xc2\x4a\x0d\xda\x08\xd3\x62\x0a\x6a\x83\xf1\x54\x48\xba\xcc\x78\x43\xc5\xa2\xe8\x56\xa6\xd1\x7b\x5f\x2d\x4d\xe8\x36\x1a\x87\x4c\x0d\x99\xab\xcc\xbe\xf5\x8b\x1d\xf2\x41\x8f\x57\xe6\x34\x1e\xe9\xcc\xb9\xf4\x95\x19\xea\x4c\x0a\x91\xc0\x09\x87\xc1\x32\x1f\x18\xec\x2d\xd0\x43\xb5\x12\xe1\x24\x29\xe8\xd8\x8c\x76\x96\x89\x84\xa0\x82\x39\xe3\xcc\x58\x56\x32\x1e\xae\x2c\x59\xbe\x92\xb7\x3a\x85\xb3\x29\x78\x20\x2f\xe6\x66\x45\xdc\x2c\x63\xa2\x51\xcc\xcf\x0a\xa1\xd2\x72\xc6\x4a\xbc\x2c\xcf\x2f\x31\xb5\xb2\xac\x27\x8b\x79\x5a\x81\xa7\xe5\x8c\xc6\xb2\x98\xab\x15\x02\xf6\xe4\x4c\xe8\xb2\x42\xc4\x9e\x28\x70\x20\x63\x22\x7a\xab\xaf\x70\xbe\xe7\xb1\xbe\xac\xe1\xef\x87\xf0\xd8\x74\x85\x40\x1d\x14\x7e\xc1\xa3\x83\x9b\x16\x82\x64\x44\x61\xc1\xbb\xe3\x78\x2b\x04\xb6\x88\x42\xb4\x53\x3e\x9d\x7e\x2e\xb7\xc3\x7b\x46\x49\x9a\x9f\x6d\x7c\x0b\xef\xfc\xee\x31\x8e\x2b\x6d\xc1\x38\xac\xe0\x4a\x1b\x05\xe1\xec\x9c\xf5\x33\x4e\xf8\xd8\xa2\xbd\xb0\x1e\xe3\x0f\x38\x49\x43\xca\x7a\x8d\xbf\xc2\xe3\x92\x55\xb6\xd7\x7d\xb3\xee\x05\x9d\x4c\xd9\x5e\x77\x9c\x5a\xb2\x92\x60\x97\xed\x75\xdc\x59\x78\xdc\x70\xcb\xf6\x3a\xca\xb2\xbe\x70\xa1\x2e\xdb\xeb\xb8\xab\x9c\x3c\xfe\x84\xfd\xe3\x8e\xf3\x7f\xbb\xf6\xc4\xd7\x4b\x7f\x46\x73\x98\x0f\x94\xed\xe5\xc7\x46\x3a\x17\xc2\x5d\x16\xcc\xa2\xa3\xc0\xf7\x24\x40\x2a\xdb\x64\xb1\xbb\xf0\x42\xb7\xbc\xfc\x3b\x12\x48\x64\xa5\xd6\x2a\x98\xb4\x52\x88\x34\x4e\x9f\xb8\xaf\x14\x0c\x46\xa3\x10\xed\x54\x0c\xc0\xcb\x36\xb9\xc8\xc0\xb1\x7e\x20\xeb\xed\xe5\x97\xe5\x5d\x25\xed\x5c\xc1\xd6\x8e\x42\x7c\x8f\x63\x4d\xd9\x26\x8b\xbd\x85\x4f\xa6\xdb\x64\xb1\x21\x0b\xb9\xcc\x94\x6d\xb2\xd8\x90\x45\xc5\x35\xaf\x6c\x93\x05\xa6\x1c\xb9\x16\xc8\x1a\xeb\x8d\x28\xe8\xfb\xc9\x7c\x9a\x5c\x36\xe4\x52\x6b\x61\x3e\x4d\x2e\xa8\xcb\x73\xc5\x6f\xa2\x1c\x93\x8b\x34\xb5\x95\xe0\x23\xe5\x98\x5c\xd0\x75\xde\xa3\x73\x81\x6b\x5d\xd0\x56\xe6\x8a\x1d\x75\x39\x26\xa3\x93\x85\x43\xd6\xc7\x64\x84\x82\x2e\x57\xfc\x61\xcb\x29\x62\xce\x07\xf2\xaa\x98\xdc\x97\x63\xf2\x42\xbf\x94\x2b\xaf\xda\xe5\x98\x4e\x4e\x13\x0e\xfb\x38\xa6\x87\x03\x3d\x54\x1e\x24\xca\x31\x3d\x1c\xd6\xb7\xf1\xaa\x56\x8e\xd7\x17\xc9\x24\xb7\x8f\xfa\xef\xf5\xd5\x73\x65\xc3\xd1\xaa\x1c\xaf\xa3\xce\xf2\x46\x2a\xba\xe2\xb3\xbc\xf0\xf8\x93\x1b\xd6\x50\xe5\x78\x1d\xf5\x20\xd1\xd0\x1e\x96\xe3\x75\x54\x76\xe7\xa6\x83\xf1\x78\xbd\x48\xc3\x9b\x1b\x41\xf9\xca\xf1\x7a\x1d\xd6\xab\xa1\x69\xad\x3e\xfb\x2b\xf9\x27\x73\x23\x1c\x6e\x9d\xc9\x38\xda\xf0\xc6\xd3\x68\x25\x67\x63\x14\xf8\x1e\x6b\xfa\xea\x23\xb6\x72\x38\xe6\xc6\xab\x67\xf5\xf1\x58\xc9\xb4\x95\x1b\x66\x06\x75\x56\xe3\xac\x4b\x9b\xf1\xf6\x55\x67\x33\xde\xa4\x8e\x0d\x21\xae\xfa\x8e\x5f\x95\xdd\xa7\xf1\xe4\x58\x67\xf7\xf7\x5d\x78\xdc\xb1\xea\x1c\xc6\x59\xaf\x8e\x5f\x41\x9d\xd3\xf8\x14\xbe\x68\x67\x19\xd7\xf3\x32\x91\xc5\xea\xdc\xc6\x59\xaf\x8e\xd1\x60\x9d\xc7\xf8\x11\x3e\xf9\xdd\xaf\xf1\x2f\x51\x15\x10\xd2\x2b\x41\xd3\x29\xc4\xf7\xf5\xc3\x3c\xfc\xfc\xfd\x4f\x78\x62\xbc\x8f\x71\x62\x61\x77\x6c\x2e\x2a\xd1\xaf\xa3\x10\x8a\x98\x8e\xbd\xdd\xad\x66\xe3\x3c\x8f\x67\xda\x7f\xdd\x0e\x06\x39\xbd\x69\x9e\xc3\xb7\x39\x0a\xfa\x3e\xee\x9a\xd5\xc7\x7c\xd5\x31\xdf\x79\x75\xa9\x3e\xe6\xab\x8e\xed\x8e\x7d\x5e\xf5\xb1\x5d\x75\x6c\x77\x52\x6a\x54\x1f\xdb\x75\x85\xcb\x59\xee\x98\x10\xdd\xea\x10\xce\xf7\xec\xc7\xea\xe3\xbc\xea\x38\xef\x98\x50\x57\x1f\xe7\x55\xc7\x79\x47\xac\xaa\x3e\xce\xab\x8e\xed\xce\x8b\x4c\xf5\xb1\x5d\x75\x6c\x0f\x8e\xe1\xea\x63\xbb\xea\x18\x1e\x38\x33\x55\x1f\xc3\x55\xa1\x8b\x46\x62\x9e\x89\x56\x14\x85\x30\xcf\x1c\x58\x46\x57\x42\x03\x45\x81\x76\xb0\x53\xad\x3e\xb6\xab\x8e\xed\x81\x55\x66\xf5\xb1\x5d\x75\x6c\x8f\x02\x3d\xfb\xd8\xae\xeb\x4b\x1c\x03\x7c\xbe\x6f\xb5\x1a\x8f\x30\x6a\x55\xf3\xff\xe5\x32\x58\x75\xcc\x0f\x2c\xae\xab\x8f\xf9\xba\x7e\x28\x06\x48\x74\x75\xab\x3f\xe3\x7c\xaf\xfe\x9b\xae\x14\x88\x60\x10\x55\xb8\x2e\x5d\x13\xab\xae\x05\x03\xb3\x95\xea\x6b\x41\xd5\xb5\x40\x01\xe3\xab\xaf\x05\x55\xd7\x02\x59\x4a\x54\x5f\x0b\xaa\xae\x05\x03\xbb\x84\xea\x6b\x41\xd5\xb5\x40\xc9\x3a\xab\xaf\x05\x55\xd7\x02\x3d\x87\x56\x5f\x0b\xaa\xce\xf7\x81\xa6\xa4\xfa\x7c\xbf\x85\x50\xae\x2c\xe6\x79\x37\xae\x9b\x55\xef\x5a\x83\x20\x5f\x15\x0f\x24\x0a\x31\x5e\xfc\x34\x2a\xee\x46\x14\x22\x5b\x18\x79\xe4\xaa\xef\x03\xd5\x4e\x46\x58\x65\xde\x6a\x36\x1e\x32\x55\xfa\x64\xe1\xcd\x38\xb1\xbe\x3e\x55\xf8\x10\x1e\x0e\x2a\x13\x45\xdb\xad\x7e\x8d\x47\xac\x1c\x02\x63\xd6\xad\x4b\x7d\xdd\x91\x94\xeb\xe2\xf4\xb3\x8b\x6f\xe8\x7e\x32\x09\x3f\x5b\x7d\x3f\xa9\xba\x6f\xcc\x4f\xe3\x7b\xd3\xb9\xee\x1b\x4a\x5a\x5c\x7d\xdf\xa8\xba\x57\xcc\x04\x9f\xf7\xbd\xa2\xea\x5e\x31\x73\x4b\xff\x7c\xfd\xaa\xbe\x76\x54\x5d\x3b\x26\x09\x86\xab\xaf\x1d\x55\xd7\x8e\x59\x06\xdd\x32\x99\xea\x7a\x31\x49\x41\x56\x7d\xbd\xa8\xba\x5e\x4c\x22\x67\x57\x5f\x2f\xaa\xae\x17\x4a\xbf\x53\x7d\xbd\xa8\xba\x5e\x4c\x8c\x02\xaa\xaf\x17\xf5\x84\xf7\x77\x3c\xe3\x80\x6b\xfa\x74\xbd\x98\xa8\x51\xaa\xaf\x17\xf5\x64\x96\x01\xc3\x83\x5b\x7d\x85\x87\x3e\x22\x23\xcb\x56\xcc\x93\xa2\xa0\x76\x16\xb8\xc9\x57\xd7\x8e\x89\xce\xa4\xfa\xda\x51\x4f\xb8\x6a\xe6\x39\x27\xfd\xac\xbc\x97\xdc\xc2\xa2\xfd\x29\x7c\x0b\xa7\x1d\x6c\x56\xaa\xaf\x29\xf5\x38\xa9\x1d\xe4\xee\x6b\x4a\x3d\xe1\xe2\x95\x97\xc8\x0b\x1b\x8f\x28\x04\x19\x2d\xb1\xbf\x13\x49\xb9\x28\x74\xdc\xcc\xe9\xff\xf4\x78\xe7\x96\xfb\x39\xf3\x36\x79\xb5\xaa\x68\xff\xd3\xe7\xa3\xfe\x9b\x8c\x4e\x38\xe1\xa4\xcf\x07\xb6\x72\x96\xfb\xaf\xf8\x6c\x64\x64\xaa\xc7\xec\x12\xed\xf3\xc5\x8b\xf0\x61\x7c\x82\x0f\xe1\x6e\x87\xdf\xe5\x39\xb0\x1e\x5d\x8b\x2b\x9a\xe1\xf4\x11\xfb\xf6\x75\xea\x16\xa2\xff\x38\x97\x56\x5e\x92\x28\xf0\xbb\x6c\x27\x5e\x86\x28\x8c\xc0\x45\x3f\x5b\xdb\x12\x65\xef\xc5\x59\x97\xed\xf9\xdc\xb8\x4e\x26\xcd\xbf\x9e\x70\x6e\x61\x81\xab\x3f\xc7\xed\x20\xf7\x27\xd8\x1c\x4a\xd4\x28\x84\x5b\xef\x87\x47\xc3\x5b\xdd\xc6\xbf\xe0\xfc\xee\xd9\x6a\x3f\x54\x9a\xe9\xc3\x53\xe7\xad\xfe\x8c\x33\x3f\x9d\xdf\x3d\xa6\xf3\x50\x33\xa6\x4f\xd2\x7e\xf9\x8a\x6d\x9d\x30\xc0\x4f\x4a\xa1\x53\xd1\x1b\x52\xe0\x77\x27\xf4\x16\x69\x6f\x28\x90\x34\x18\xf6\x7d\xbe\x9e\x9f\xaf\xe6\x67\xa9\xfd\xad\xdf\x8d\x07\xcd\x8b\x37\xe1\xfe\x7e\x33\x0f\x4b\xbf\x2b\xb6\xcb\x75\x36\x7d\xb2\xe8\xd6\xfc\xe1\xfc\xa0\x2b\x92\xdb\x54\xf4\x6e\x14\x62\x1d\xf1\x19\xb9\xd5\x61\xfc\x0b\xce\xfc\xfc\x10\x03\x2a\xba\xae\xf4\xe1\x5d\xb4\xa2\xcf\xa2\x70\xc0\xf5\xbb\x9e\xcf\x1f\xfd\x44\xaa\xae\xe7\x77\xdc\xce\xa1\x9d\xf2\x11\xee\xdf\x65\x9e\xf1\xda\xa8\xbe\x76\xdf\x82\xbe\xa7\x9d\xc7\xf3\x19\xf1\x7a\xd2\x07\xd5\xd4\xad\x4e\xe3\xb4\x23\x3a\x79\x74\x2d\x93\x66\xe9\x93\xc5\xaf\x1e\x8f\xeb\xd1\xb8\x1a\xfd\x7f\x8e\x7f\x37\xd2\xe1\x7e\x32\xd7\xd6\xf3\x98\x3e\x1f\xe8\x30\x8b\x4e\xcc\x57\xcf\xcb\x7e\xc9\xa3\x09\xef\xc6\x17\xf8\x10\x7e\x8c\xc7\xba\x93\x8e\xb1\x9e\xd7\xe3\x7a\xa1\x93\x2c\xfa\x79\xcd\x27\x5f\xf6\x7b\x16\x7f\x78\xb7\xdb\xd9\xac\x97\xe8\xe4\xf5\xbe\x8e\xf4\x1f\x49\x59\x5d\x2a\x2f\x94\x14\xe2\x77\x4b\xf0\xc3\x36\x3f\xbc\xef\xdd\x42\x03\x9f\xc2\x87\xf1\xa0\x73\xdc\x07\x1a\x0f\x92\x14\x06\xf8\x12\xfe\x33\x1e\xf3\x43\xb0\xc9\x36\x3f\xf0\xab\x5b\xa8\xe0\x5d\xf8\x2b\x5c\x11\xd0\x82\x1e\x9a\xc5\xa4\x46\x4a\xfe\xf4\x29\xb5\x0a\xaf\xc6\x3b\xf8\x10\xbe\x8d\x1f\x22\xa9\xa9\x9d\xe5\x76\x16\xbf\xdb\x8a\xf0\x6e\x5c\x91\xd7\xa6\x70\xf5\x3f\xa9\x9f\x5d\xdf\x6f\x7f\x0f\x9d\xa3\xfc\x6c\x24\xa5\x8f\x42\x28\x4e\x3e\x04\xa7\x69\x53\xe7\x63\x23\x4d\x7c\xfa\x94\xa9\xfe\xc3\xc7\x1a\x39\xe1\x2f\xce\xf7\xd9\xf3\x1f\x41\x48\x2e\xbe\x84\x77\xe3\xcc\xf3\x2a\xc2\x97\xf1\x2f\x78\x13\xfe\x08\x5f\xac\xe3\x52\x3b\x4b\xf3\xa3\xbc\x12\x55\xeb\x9b\xf7\x1f\x3c\xc6\x45\x9a\x81\x46\x4e\xf2\x28\xc0\x9f\x79\xcd\x6a\x64\x07\xa7\xb0\xc0\xf5\xbb\x1e\x57\x66\x5c\xe8\xe9\x9b\xc5\xd4\x46\xca\xef\xf4\xa9\x5a\xdf\xc2\x39\xd2\x48\xfe\x7d\xf1\x2c\xbc\x1b\x9f\xe0\x55\xf8\x36\xfe\x80\xab\xfd\x25\xba\x2a\xac\x2f\xf7\x9f\x36\x25\x0e\xdd\x02\xfd\xac\xfd\x9f\xaf\x5f\x8d\x04\xdf\x14\x64\x8d\xbd\x84\x8b\x4c\x0b\x64\x41\x0c\xf0\x5b\x5d\xc6\x99\x3e\x91\x51\x31\x59\x93\x21\x41\x01\xf5\x1b\x6f\xd9\x14\x18\x5e\xef\xc2\xbf\xc6\x83\x3d\xf1\xdc\xdd\x66\x04\xb2\xa0\x20\x9c\xf6\xab\xc9\xb7\xb2\xfd\xaa\xc8\x4b\xaf\x77\x8d\x24\xd6\x49\x71\xcc\x1b\x59\xac\x29\x30\x1d\x22\xa3\xba\x35\xde\xca\x32\xf3\xda\xd4\xc8\x2c\x4d\xa1\x83\xeb\x77\xbd\xfc\x95\xe5\x27\xed\xe2\xad\xfe\x8c\x3f\xe0\xf4\xa7\x99\x1c\x09\x6c\xaf\x10\xdc\x8d\xcc\xcd\x14\x68\x27\xeb\x7b\x6f\xbf\xa6\xf4\x27\x99\xdf\x8d\x90\x0e\x14\x62\xfe\xb1\x75\xb8\xd5\x6e\x7c\x80\x43\x8e\x92\x42\x1a\xaf\x1a\x49\x81\x9b\xdb\xec\x26\xbb\x0e\xd9\x35\x91\x4b\x37\xd9\x91\xb8\x58\x31\x90\x1b\xc9\x89\x29\x1c\xf0\x21\x5c\xed\xa3\xec\xfc\x34\xd1\x89\xd4\x76\xb7\x40\xfb\x62\x37\xdd\xe3\xea\x1c\x3f\xe4\xb3\x68\xb3\xbb\xff\x11\x93\x3d\x7d\x30\x1b\xb8\x55\x7f\xcf\xf1\x49\xc6\xa2\x36\xbb\xe7\xbf\xc3\x56\x9a\xe8\xa4\x7b\xbc\x5d\xe3\x1d\xfc\xee\x30\x5b\x09\x03\xe2\x8b\x33\xae\xe1\x6d\x33\x38\x26\x71\x67\xbd\xd5\xc7\x38\xed\x88\x4e\x86\xe9\x27\x52\xeb\x5e\x5c\xed\xec\x66\x9c\x76\x16\xfd\x9c\x66\xd3\x93\xe3\x04\xab\xe2\x5b\x3d\xc6\x83\x6d\x75\xd1\x8f\x1e\xf9\x1b\xf9\x68\x2f\x0e\x3d\x4c\xcf\xe7\x84\x9d\x61\xe6\xdb\x48\x3f\x4b\x21\xfa\xd9\x45\x57\x73\x6b\xbc\x93\x7e\x22\x3d\x37\x72\xd0\x52\x18\xe0\xf4\x7f\x1e\x7f\xcf\x3e\xc5\xde\xba\x91\x50\x96\x02\xbf\x2b\x7a\x5b\x53\xed\x2c\x8e\x9f\x2e\x36\xb4\xe6\x34\xbe\xc0\x97\xf0\xc7\x38\xfd\x14\x1d\x2e\xcf\xff\xe2\xfa\xd2\x45\x87\xcb\xfb\x62\xb1\x2e\xe4\x5b\xba\x55\xcd\x4f\xbc\x9a\xa4\x0f\xaf\x86\x6d\x2e\xaf\x0b\x26\xa9\x9f\x2e\x7a\x5b\xde\xd7\x8b\xe0\x82\x5d\x7c\x69\x1d\xb1\xe3\xc5\x7e\xef\xe2\x4b\xcb\x7c\x29\xcc\x45\x2f\xce\xfc\x6f\xaf\xe3\xd6\x78\x45\x57\xdb\xe3\xda\x1a\x97\x8e\xbd\xbd\xfc\xbd\xfa\x3f\x59\x97\xbd\x8d\x6b\xfe\xe7\x14\xfe\x35\xfe\x8b\x34\xf3\x5d\xb0\x9b\xc7\x64\x85\x47\xea\x5b\x75\x33\x9c\x32\x5d\x64\x78\xdc\xcd\x43\x37\x09\x0b\xd4\x48\xfd\x49\x21\xba\x39\x44\x6e\xc7\x64\x75\xd8\xa6\xf8\xf5\xb7\x79\xb6\xa6\xe7\xc0\x7e\x86\xc8\xe7\x98\x7c\x24\x1d\x0c\x91\xcf\x39\x9a\xfe\xc3\x2d\x91\xe8\x64\x8d\x2c\x9b\x14\x06\xf8\x12\x7e\x8c\x47\xff\x87\xc8\xe1\xeb\x6d\x8a\xb1\xcd\x67\xe8\xb6\xf3\xf5\x29\x2f\x69\x62\x88\xcd\x7c\x97\xbf\x57\xff\x9b\xbe\xf7\xf1\xf5\x45\xea\xc1\x85\xf3\x56\x1f\xe3\xf4\x5f\xcb\xfe\xf5\xb2\x7c\xb9\x55\x0e\x2d\xfb\x77\x0f\xe3\x0b\xbc\x0b\x77\xfb\xdc\x36\xf1\xc2\x6c\xa4\xbc\xa4\x10\xc7\x1a\x1e\x57\xb7\xfa\x35\xce\x78\x07\xdf\xff\xcc\x06\x7e\xdc\x7e\x87\x8e\xaf\xdf\xd2\x36\xfa\x71\x2c\x0c\x91\xc9\xcf\x64\xf2\x83\x9c\x87\xd6\xfd\xe7\xf9\xfc\x71\xec\xe0\x24\xd8\xfc\xc8\x7b\x0b\x09\xbc\x0a\x1f\xc6\x27\xf8\x10\xae\xf9\x79\x98\x4f\xfc\xf9\x1a\xd9\x1b\x29\x0c\x70\x7d\xef\x79\x7e\x98\xe7\xa9\xdb\xef\xe3\xdb\xd4\xc3\xfc\x4c\xd1\xc9\xe3\xeb\xc0\xc3\xb6\x9b\x3a\xd6\x9e\xe3\xfe\xc0\xce\xa7\xd8\xcc\xe3\x79\x93\x94\x31\xc5\x66\x5e\xd3\xf9\xcb\x31\x35\x45\x3f\xaf\xfb\xff\xc2\x3e\xa7\x8e\xaf\xd7\x6c\xe6\x85\xcd\x10\x2f\xad\xf1\x66\x4d\x81\xf6\x75\x9d\x79\x7d\x8c\xbc\x1c\x23\x18\xe0\xb5\x25\x53\xa2\x5b\xa0\x9f\x1c\x47\xeb\x23\xfa\x59\x1f\xe8\x87\x80\x87\x6d\x7d\x44\xff\xeb\x03\xfd\xcf\x31\xfe\xe2\xf6\xb5\x64\x64\x70\x0b\xc1\x8d\xc9\xe1\xda\x96\x2f\xfd\x2b\x71\x9a\x90\x1f\xa9\x91\x4d\x8f\x02\xdd\x85\x5c\xc8\xab\x47\xa1\xfe\xf7\xdf\x8d\x38\xb7\xb7\xf6\x13\xcc\xee\x26\x45\x69\xc3\x28\x28\x0a\x70\x1b\xf2\xff\x34\xf2\xd8\x51\x88\x51\xa3\xd9\x6e\x64\xad\xa3\xf0\x82\xc7\xaa\x61\x30\x44\x41\xdf\xd3\x9d\xbc\x8c\x47\xb4\x82\xcf\x82\x2a\x96\xef\xe4\xd8\x14\x49\xd3\xd4\xc8\x11\x17\x05\x44\xd2\x95\xd5\x8c\xbb\x19\x77\xf6\x86\xb5\x45\x23\x57\x1a\x85\x98\x6b\x14\x38\xb7\xea\xcf\xd5\xfb\xca\x2c\xf8\x26\xbd\xca\x54\xc4\x7f\x7e\xb6\x88\x27\xae\xb8\x49\x37\x09\x08\x24\x31\xa3\xc0\xaf\x76\x60\x1d\x3c\x4b\x17\x62\x9c\x43\x1a\x79\xc5\x28\x7c\xc1\xab\xf0\x57\x38\x3b\x80\x3c\x07\xb7\x5a\x8d\x63\xa4\x26\x8a\xab\x53\xed\x57\x2e\x2e\x98\x0f\xdf\xea\x36\x1e\x94\xbb\x44\x71\xd5\x4b\x5e\xa1\xf4\xc5\x81\xb4\xaa\xe4\x54\xf2\x6c\x5d\x5c\xed\x6b\x07\xac\x0a\x47\x5c\x93\x59\xf0\x45\x99\x0c\x5a\x0d\xcb\xa8\x46\xce\x2c\x0a\x71\xc0\x60\x5d\xd3\x96\x0c\x4c\xda\xd2\xbd\x1a\xf3\x9a\x46\x1e\x2b\x0a\xfa\x5e\xdd\x39\xfe\x3e\x2c\x85\x12\xc1\x73\x1b\xb9\xa5\x28\x4c\xf0\x29\xfc\x18\x7f\x02\x4f\xfa\x5e\x07\xc0\x0a\x9f\xbd\x8b\x57\xe1\x6e\x67\xd1\x3e\x0c\x6b\x35\xdd\x1f\xc8\xef\x94\x14\x46\xed\x56\xb3\xf1\x02\xde\x84\x4f\xe3\x0b\x5c\xed\x78\x19\x23\x8c\x59\x4a\x9f\xa2\xfe\x98\x08\x09\x5a\x26\xb1\x69\x35\xd3\x60\x44\x2f\x4b\x8a\x02\xd6\x96\x1e\xf7\x1b\x59\x9b\xd2\x15\x47\x85\x7f\x8d\x33\xdc\xca\x74\x76\xaf\x6e\xdc\xaf\x2f\xae\x76\xbc\xba\x11\xe4\xeb\xe2\x53\xf8\x36\xce\x34\x88\x3a\xa5\x0c\xb8\x05\x7e\x57\xd4\xd9\x3d\xdc\xae\xe1\x76\x7f\xaf\xe1\xf6\xc3\xb4\x75\xa6\xa7\x4b\xdc\x21\x5d\x51\xab\x22\x4e\xe9\x0e\x1a\x99\x8a\x52\xe2\x31\xb8\x91\x70\x88\x02\xdd\x19\xfe\xfe\x6b\xfc\xde\x7e\x88\x7f\x7e\x6b\xfa\xd5\x41\xa8\xc2\x8f\xf8\xd7\xf0\xe2\x86\x17\xdf\xc5\xd5\xbc\xf7\x5c\x64\xfa\x69\x55\xa4\x3f\x24\x43\x90\xe3\x27\x5d\x7e\x04\x7e\xdc\xcb\xd8\x8a\x09\xdb\xe8\x46\x4a\x1f\x0a\x41\xfa\xda\x11\xc3\x24\x3b\x08\x32\xf7\x59\xcc\xfd\xf4\x0e\xe5\x8a\x9f\x92\xb8\xe6\xf4\x60\x27\x83\xe5\x05\xba\x91\xde\x86\x42\x01\x5f\xc2\x97\xf1\x8d\xd7\x30\x6b\x32\xbd\x56\xe1\x9a\x97\x14\xdd\xeb\x56\x9b\x71\xbc\x8c\xb9\xfa\x93\x75\x86\x02\xbf\x2b\x12\x9f\x3a\x4b\x49\xfe\x72\x71\x26\x7f\xb9\xff\x4b\xfd\xe4\x05\x62\x2d\xcf\xfe\x52\x3f\x45\x83\xcb\xb4\xb6\xe4\xdd\x8c\x28\xb8\x96\x69\x8d\x17\xfa\x94\x44\xfb\xcb\x6c\x3c\xee\xee\x29\x25\xd1\xe0\xf2\xb2\x2c\x96\x25\x89\x13\x2e\xdd\x65\x56\x5c\xc1\x5b\xd3\x70\x97\x49\x2d\xf4\x4b\x29\xf1\x60\xdd\xd6\xf6\x59\x19\x57\xf4\x8b\x77\xe1\xd3\x38\xdd\x41\x42\x24\xa3\x07\x05\xa6\x13\x49\x70\xe9\xe1\xbe\x91\xab\xe3\xe2\x4b\xb8\x86\xb5\x35\xfd\x3a\x8b\x7d\x93\x5f\xe1\x92\x95\x14\x3c\xab\x91\x88\x83\x02\x76\xc5\x3a\x5c\xb7\xa9\x2d\x6c\x38\x93\x02\x2e\xb5\xb5\x4d\x56\x1b\x4e\x88\xbd\xc6\xad\xfe\x8c\xbf\xe0\xcc\xc3\x91\xe4\x4e\x4a\x8b\x94\xb2\x38\xe1\x91\xe4\xae\x04\x16\x8a\x6f\xd4\x48\x4b\x11\x05\x36\x51\x4e\x8c\xf7\x98\x95\x1c\x96\x37\xeb\x18\x3d\x5e\xde\xc3\xf2\x12\x69\xed\x56\xa7\xf1\x05\x4e\x3f\x2d\x12\x90\x1d\xe2\xe2\xea\xa7\x44\x17\xf2\x44\x5c\x2a\x64\x1e\x2c\x2a\x90\x23\xe2\xe2\x5d\xb8\xfb\x1f\x57\xe7\xc4\x03\x77\x5b\x16\x15\xd6\x51\x6c\x47\xae\x7a\xd6\x6f\xdf\x42\x06\x2f\xc2\xf5\xbb\x21\x1b\x5c\x7c\xfe\xcd\x95\xeb\x2b\x81\x6d\x7d\xb1\x30\x25\x20\xd1\xad\x2e\xe3\x2c\x4f\x6b\xc2\x7f\xc6\x1f\x70\xba\xfb\xf5\x6e\xfd\x42\x2e\x44\x9b\x6e\x56\xbb\x37\xf2\x36\x5c\x5c\xdd\xf5\x34\x29\xb8\x8f\x66\xe3\x2b\x79\x9c\xfc\x0c\xf7\x73\x35\xef\xf3\xf4\xab\x59\x12\x55\x5b\xc0\x20\x4d\xc3\xc5\xe9\xe6\xcf\xd4\xf2\xe3\x80\xc9\xa2\xea\x9f\x77\x47\x84\xdf\x49\x0a\x5c\xd4\xc8\xc0\x40\x81\xef\x79\x37\x5b\x16\x48\x48\xbc\x90\x52\x16\xb5\xff\x7c\x6e\xfe\x38\x37\xb3\x78\xe8\xcf\xd4\xfe\x53\xff\x45\xed\x3f\xf7\xff\xa7\xcc\xb6\x62\x96\x3f\xef\x02\xd4\x1e\x49\xcf\xf1\xb6\x32\x68\x58\x19\x24\x85\xfb\x69\xb6\x32\xb8\x85\x58\xe5\xa2\x5d\x60\xc1\x66\x45\x2e\xfa\xa4\x94\x2b\x8d\x34\x08\x51\x58\xfa\x9e\x71\x3d\x5e\x76\xd4\x24\xa9\x88\xda\x1f\x5f\x8b\x50\x93\xa4\x22\x66\x69\x01\x66\x21\xc0\xa4\xa2\xf5\x7a\x7c\xee\x87\x24\x93\x52\xd1\x41\xfe\xf8\xe0\x7f\xd4\x7f\x51\xe9\xeb\xfe\xbf\xea\x3f\xcf\xf4\xcb\x82\x0d\xe9\x07\x2e\x9e\x85\x7f\x8d\xff\xc0\x99\xcf\xd7\xdc\xec\xd5\xb8\x74\x60\xbf\xe6\x66\x2f\x17\x02\x52\x46\xdd\xea\x31\xfe\x05\xa7\xff\xaf\xd7\xf1\x65\x1d\x49\x68\x7e\xab\xcd\x38\xdf\x0f\xb5\xef\xf5\x7d\xd9\xc5\x16\x2d\x5e\xcf\x43\xa4\x16\xb8\xb8\x7e\xd7\xbb\xf8\x65\x17\x17\xd1\x95\x05\x2d\xac\x3f\x2e\x1e\xf3\x4c\x4a\x01\x0a\x95\x6c\xc5\x49\xf8\x34\xbe\xc0\x8b\xf0\x47\x38\x5c\xae\x70\x38\x13\xe0\x9f\x82\xda\x59\xc2\x87\xf1\xd8\x47\x44\x9e\xbe\xd5\x6d\xfc\x0b\x5e\xc1\xb7\xdb\x61\x7e\x24\x15\x10\xde\x9f\x42\xf4\x07\xab\x99\x5b\x3d\xc6\x1f\xf0\x06\x7e\xdc\x8e\x02\x20\x26\xf5\x47\xdc\x0f\x6b\x97\x7b\xd6\x32\x5e\xab\x7f\x76\xe2\x26\xa5\x7b\xf8\x4e\xba\x38\xee\xc4\x3c\x10\xa9\xbe\xed\xb4\x8c\xb3\x7f\xa5\x06\x20\x48\x3f\x85\x1f\xb8\xbf\x7f\x85\x87\x28\x98\x48\xec\xdd\xb6\xd5\x3c\x3b\xc1\xd5\x49\xaa\x77\xab\x3f\xe1\xdc\x7b\xb1\xfe\x6b\xc4\xc4\xa7\xc0\x7c\x22\x18\x13\xd6\x9e\x02\xbf\x0b\xbf\xda\x56\xe7\x10\x33\xfe\xe2\x43\xb8\xe6\x2d\x43\xcf\x58\xa5\x35\x62\xb9\x53\xe0\xfb\xa9\xef\xc5\x6e\x89\xa7\x7e\xef\x1c\x55\xf8\x36\x1e\xbf\xdb\xb4\xbe\x59\xfb\x97\x30\xea\x17\x87\x4e\xf2\x71\xfb\xf0\x9f\xa6\x75\x2c\xba\x1c\x11\x3d\x3d\x25\xbd\xdb\x13\x12\x3d\x0a\xd0\x9b\xde\xed\x77\xd1\xbe\xdb\x85\x7d\xa7\x77\xf8\x6d\x7d\xca\x46\x9f\x92\x1a\xc2\xe9\x2e\xa6\x9f\x88\x5c\x9e\x14\xca\xa6\xed\x22\xfe\x4f\xec\xf1\xa4\x40\x35\x6d\x5b\x4c\xdc\x05\xfe\xd9\xb4\x5e\x45\x0f\x28\x1b\x7d\x4a\x6a\xcd\xed\xf8\x77\xd9\x77\x4d\xeb\x58\xb4\xef\xb0\x8a\xba\x38\xf3\x50\x4d\x6f\x15\xbe\x84\x35\x56\xdb\xd5\xf4\x56\x39\x47\x08\xfa\x73\xab\xd3\x38\xed\x73\xac\x11\x5c\x9c\x42\x01\x5f\xc2\x87\x71\xfa\x39\xfc\xfd\xcf\xf8\x03\xae\xfe\x78\x7d\x2b\xf4\x49\xdc\x99\xb6\xab\xf7\x51\x65\x1f\xe1\xa4\x77\xab\xee\x27\xfc\xa7\x89\x4e\x9a\xfb\xdf\xd4\x7f\xd1\x49\x13\x5f\xdd\x0d\xbe\xaa\x77\x7b\x22\x79\x53\x88\xf6\x71\x2e\xb8\xd5\x63\xfc\x05\xa7\xff\xd6\xcb\x10\x65\xfb\xe2\x4b\x78\x37\x1e\xe3\xc5\xc5\xb1\xd9\x5a\xbc\x11\x23\xfb\xe2\x8c\xb7\x79\xbf\x28\x92\xb5\xde\xed\x6d\x4d\xd6\x14\xb6\x3a\xe9\xdd\x9e\xc0\xd1\x14\xf8\x1e\x39\x74\x5b\x2f\xb3\xd1\xcb\x24\x42\xad\xdc\x6a\x35\xde\xc0\xbb\xf0\x6d\x5c\xed\x2c\xe1\xea\x67\xe7\x3a\xd3\x45\x9f\xd6\xd7\xec\xce\xbe\xd3\xfb\xfc\xee\xba\xfd\xee\xd0\xe3\xf4\xcf\xe7\x6f\x2e\x5f\x04\x95\xa6\xf0\xa3\x35\x56\xb9\xeb\x94\x21\x96\x74\x4a\x5d\xd4\xde\xa5\x95\xc3\x78\xed\xe2\xea\xd5\x71\x3b\x70\x9b\x2e\xee\x64\x79\x74\x0f\x44\x34\xc2\x5d\xde\xea\x30\xbe\xc0\xa7\xf0\xaf\x71\x66\x9b\x53\x8f\xa8\xd1\x14\x3a\x78\x13\xae\xd9\x1e\x9a\xa5\xa1\xdf\xf5\x2c\x0d\xcd\x92\xa8\x74\x78\x96\x06\x22\x5a\x17\x95\x5a\x52\xdd\x43\xe3\xe2\x75\x65\x0f\x8f\x6b\x20\xba\x0d\x51\xdd\x34\x55\x87\xd1\x55\xff\xe8\xd0\xb0\xe4\xb9\x25\x79\x0e\x1d\x56\x53\x97\xa0\x3d\x15\xfa\x5f\x4c\x6e\x9a\x28\x26\x4c\x6b\xe8\xb0\xb2\x44\xba\x27\x77\xdf\xa1\xc3\x6a\xae\x3f\xed\xd0\x1d\x11\xa9\x95\x4e\x5b\x92\xea\x10\x53\x9c\x9e\x06\x9c\x1c\x13\xf9\x76\x6e\xd5\xfd\xe4\x55\x61\x88\x78\xa7\x99\xd9\x44\x24\x92\xd6\x60\xcf\xe3\xdf\x65\x13\x48\x3b\xb0\x2d\xc1\x12\xaa\xf9\xe2\x43\xf8\x30\xce\xef\x22\x79\xee\xe5\x4d\xb3\xb8\x14\x10\x08\xa1\x11\x94\x99\x42\x90\xc3\xe8\xc6\xfd\x3d\x4c\x68\xe8\x70\x5b\xde\xf4\xd8\x9e\x29\x9d\xee\xad\x4e\xe3\xb4\x33\xfc\xfd\x9f\x76\xbe\xe0\x4b\xb8\xc8\x47\x51\x91\x89\x69\x77\xab\x6e\xe7\xd0\x8e\xc8\xc4\x12\x32\x71\x8c\x2f\x4e\x3b\xdb\x64\xbe\xd9\xf4\x43\x97\xa3\xad\x17\x4d\x62\xfd\xa6\x34\xc5\x84\x64\x93\xd6\x08\xd7\x9b\x14\xad\xa7\xed\xed\xfe\x6f\xfa\x4f\x00\xce\x5b\xd5\xef\x62\xab\xa6\x88\x31\x6d\x6f\x1f\xfe\x9b\xcb\xef\xd4\x7a\x6d\x5d\x7e\x89\xb1\x9b\x14\xc3\xa5\x6d\x8b\xb0\xfb\xb0\x2e\x53\xeb\x75\x4c\xb7\x07\xba\x9d\x5a\x17\x8b\xb0\x04\xd2\xbd\x38\xf4\x79\x4c\x9f\x07\xfa\x9c\xda\xd6\x67\xfd\xf9\xfe\x05\xd7\xf7\x92\xc1\xf6\x61\xbd\xa6\x0e\xa5\x23\x2d\xcf\x3e\xd0\xe7\xd4\x76\x3f\x66\x4b\x07\xfa\x9c\x5a\x5f\x8b\xb0\x1b\x6d\x57\x9a\x5a\x47\x8b\xb0\x04\xb5\x4d\x49\xcf\xf6\xfb\x9c\x3f\xed\xd0\x1f\xad\xa3\xb5\x5d\xc4\xb2\x4d\x69\xea\x92\xfb\xf5\x78\x25\x8b\x4e\x5d\x5a\xbf\x66\xd2\x5f\x1e\x2f\x97\x0e\x99\xaf\x2f\xa7\x68\xa9\xd2\xd2\x61\x62\x2d\x15\x81\x63\x53\x5a\xda\x8f\x5f\x1f\x92\x5f\x0e\xc9\xa5\x75\xfc\x7a\xbd\xb0\x9d\x53\x0c\x90\x46\x4c\x58\x0a\x31\xcf\x7a\x41\xc7\xc3\x87\x02\xdf\x6b\x7f\xfd\x7c\x68\xff\xd8\x2f\xa4\xdd\xbd\xd5\x61\x7c\x82\x2f\xe1\x6e\x47\xfd\xd4\xe5\xe2\xe7\xf9\xfc\x41\x57\x04\xdd\xb8\xd5\x63\xfc\x0b\x4e\x3b\x16\xf2\x88\xb0\x9a\xd2\x12\x7b\x7e\x7c\x19\x79\x78\xf2\xd1\x9b\xf8\x7e\xdc\x9f\x47\xf3\x86\x10\x4c\x4c\x54\x0a\xf4\x07\x61\x65\x3f\xbe\x94\x3d\x1c\xda\x7a\xfc\xde\x8f\x0f\xed\x47\xfd\xd1\xbe\xb3\x90\xb7\x25\xe4\x2d\x09\x25\xaf\x2f\x4d\xaf\xe6\x53\xeb\xfb\xba\xff\x6f\xcc\x67\xfe\x88\xcd\xbf\xe6\xcf\x08\x6d\x99\xd0\x48\x6d\xbf\xee\x4f\x18\xb9\xa5\x6c\xfe\xff\x9a\x4f\x86\x74\x75\xf1\xf8\xdd\xf3\x11\x9f\x3c\x21\x5d\x5d\x7c\x81\x2f\xe3\x0b\x9c\xa7\x9a\xf3\xd1\xb1\x76\xc2\x77\xf6\xe2\xfa\x5e\xfc\xe1\x84\x94\x93\xf2\x07\x61\x82\xa8\x9f\x51\x20\x10\xfc\xa7\xea\xfb\xe3\xf6\x0f\xed\xb3\xaf\x09\xef\x49\xa1\x83\xd3\x4e\x12\x7f\x38\xa1\xef\x4a\xca\xaa\x79\xab\xdd\xf8\x00\x5f\xc2\xbf\xc6\x7f\x81\x43\x3f\xc7\xea\x2f\xc2\x6f\x5e\xbc\x08\x77\x3b\x71\x09\xcd\xa4\x81\xb8\xd5\x6d\x5c\xed\xa8\x7d\x1d\xd7\x27\x69\xbc\x43\xfd\xf4\xb8\x10\x7a\xb2\xde\xa7\x09\x9a\x49\x81\xf9\x67\xbf\x9f\xec\x71\x65\xf5\x1f\x25\xc9\xb1\x0d\x1b\x71\x31\x2f\xee\xef\x1f\xe3\x41\x0f\x78\x70\xb6\x93\x3d\xae\xcc\x7a\xe9\xc5\xf9\x64\x3d\xd2\x9c\x48\x59\xd5\x5a\x2b\x7f\x71\xf9\x3a\xf2\x46\x6e\x87\xec\x55\x39\x7d\x18\x9d\x2c\xd2\x6f\x61\x82\x2f\xe1\xee\x15\xab\x8c\xe7\x76\x3b\xd6\xb3\x9d\x30\x81\x4b\x99\xd4\x4a\xed\x58\x84\x22\x36\xe6\xc5\x87\xf0\x66\x7c\x83\x2f\xe1\x5a\xcd\x82\x07\x38\x16\xd4\xb7\x5a\x8c\xd3\x9f\xaa\xf6\xbd\x6a\x45\xfd\xaf\x6a\x7f\xfb\x77\x37\xbf\x8b\xe8\x73\xac\x99\x23\x92\xe6\xc5\xa7\xf0\xc7\x38\xb3\xcd\xcb\xdd\xb1\x28\x46\xac\xcd\x8b\x67\xe1\xc3\x38\xfd\x17\x15\x59\xb4\xc2\x62\x3f\x65\x2c\xa5\x9b\x2d\xf6\x6f\x81\x71\x21\xfa\x1c\x6b\xf8\x4e\x68\xf8\x5a\x43\x91\x77\xaa\x5e\x82\x4e\x88\x5e\xf7\xf3\x26\x7c\x1a\xa7\xfb\x30\xb3\x53\xf5\x5c\x8f\x07\x40\x52\x1e\xf4\x5b\xf5\xf7\x8b\x6e\xf2\xc2\x72\xac\xf8\x23\x4a\x67\x52\x52\x83\x46\x5c\xce\x28\x68\xda\x96\xba\xa9\xcb\xda\xa9\x6c\x82\x2c\x62\xac\xdb\xdf\x33\x3d\x59\xc4\x68\x49\xec\x54\xc8\x41\xef\xd7\x76\x38\xb8\x85\xd8\xf4\x84\xc1\xbb\xd5\x69\x7c\x05\xce\xfb\xf2\x69\x62\x8a\xa7\xb1\x09\xf0\x8f\x6b\xc7\x9a\xbf\xd3\x70\xfe\xc7\xb0\xfa\x56\x97\xf1\x18\x6f\x2e\xfe\x5e\xcb\x82\x24\x96\xf5\xbe\x7c\x9a\x99\x56\x64\x39\x4a\x4a\xdc\xda\x8e\xa2\x7b\xdc\x02\xe3\x42\xc6\x38\xd6\xf0\xe1\x30\x71\x71\xfa\x6f\x55\xde\xe9\x1a\x97\x98\x47\xf7\xb8\x22\x02\x48\xca\x59\xe4\x60\x89\xeb\x20\x71\xe5\x2c\x26\xd1\xdd\x4f\x2c\xe4\x32\xf1\xdd\xdb\xe9\xba\x5c\x1f\x54\x76\x39\x8b\x79\x58\x65\x77\xfa\x11\xce\xb8\xac\x9a\xc3\xcf\x34\xe5\xa2\x6d\x6a\x59\x88\xd8\x99\x17\x9f\xc2\xbb\xf1\x98\x37\x19\x2c\x9f\x61\x26\x34\xd8\x8e\x45\xdb\xd4\xb2\x10\xc1\x33\x53\x2e\x3a\x34\x86\xe9\x67\xb0\x1d\x8b\xb6\xe9\xd0\x65\xf9\x0c\xf2\xe0\xe9\x25\xf4\x0c\x1d\xb6\x27\x84\x9f\x8b\x33\x9f\xc3\xf3\x3c\x18\x17\xd1\x70\xdb\xb1\x1a\xee\xa0\x86\xcb\x7a\x39\x3d\xd3\x4c\x14\xa1\x27\xeb\x85\xf4\x58\xe8\x39\x91\xe3\x26\xe5\xa2\xed\x3b\xcd\x44\x51\xc3\x65\xbd\x90\x1e\x5b\xd4\x11\xed\xf2\xe2\xac\xcb\xf4\x3c\x87\xd4\x92\x32\x7e\xcd\x0d\xff\x95\x28\xc0\x0e\x0b\x2f\x14\xc7\x96\x73\x04\xa2\x4c\x99\x08\xeb\xb7\xea\x7e\xc2\x36\x48\x30\x7a\xab\xc7\x78\xa8\xbd\x74\xd6\x4e\x73\x93\xa9\x65\x44\x84\x3c\xcb\xcb\xb5\x34\x5c\x6d\xeb\xe5\xe1\x2e\x0d\x8b\x87\x0e\x82\x3c\x52\x88\x9f\xd5\x83\xe7\x59\x66\x03\x0b\x36\xa0\x07\xcf\xb3\xcc\xfd\xd7\xd6\xf7\x43\xb8\xdb\x0f\x19\x20\x13\xaa\xbd\x1d\xab\xe1\x70\x8c\x49\x59\x0f\x98\xc7\x6a\x38\x62\xaa\x5c\xbc\x09\xff\x1a\x7f\xc0\x69\x7f\x9b\xcc\x37\xd3\x2f\xbb\x67\x87\x4c\xb9\x05\xfa\xa3\xed\x6b\x0b\x39\x42\xa3\x24\x65\x2e\x68\x44\x38\xa1\xc0\xb8\x44\x3e\xc7\xe4\x8f\xec\x91\xab\xee\x22\x0a\x69\xd2\xe4\x3f\xa3\xd0\x2b\x8d\x88\x83\x14\x1a\xb8\xda\xd1\x43\x16\x0e\x36\x29\xeb\x61\x13\x37\x1b\x0a\x8c\x4b\x64\x62\xd9\x43\xfe\x36\x59\x0f\x9e\xf6\xb7\x69\x04\x05\x4c\xb9\x8a\x1c\x8e\xc9\x9c\x8c\xe8\xb9\x8a\x0d\x58\x1d\x46\x7c\xbf\x8b\xd3\xcf\xaf\xd9\x0f\xb2\x44\xc6\xed\xb2\xe1\x7e\x43\x81\xfe\x70\xd7\x3c\xd6\x6b\x9d\x2f\xfd\xd7\x43\xa8\xfd\x70\x6e\xe1\x01\x67\xbc\x5f\xaf\xcb\x97\x75\x69\xc8\x90\xc7\x32\x06\x0e\x39\x17\x57\x3b\xba\xbb\x13\x30\x2f\x65\x72\xc1\xdf\xea\xcf\xf8\x0b\xce\xf7\x96\x31\xe4\x87\xa3\xe8\x1f\xb7\xba\x8c\x07\x9d\xeb\x41\xf5\xfc\xcc\x3e\x7f\xb0\x4f\x3d\x9c\x12\x98\x2b\x0a\xb0\x1f\x19\x30\x1f\xcb\x1e\x07\xd9\x23\xeb\xe1\x14\xb7\x1c\x0a\xf4\x47\xf4\x60\x45\xd5\xf9\xc1\x7e\xf4\x40\x7a\xac\x90\x72\xe4\x39\x3d\x84\x1e\xcb\x1e\x87\x28\x28\xb9\xf5\xbf\xb1\xb3\xc7\x6b\x87\x02\xd3\xaa\x53\xe3\xf1\xf0\xc2\xc2\x2e\x65\xdf\x0a\x1e\x5f\x6a\x1e\xc8\x48\xef\xa4\xe7\xf1\x32\x3c\x5a\x86\xe9\xef\xc5\x9d\x70\xdf\xc9\x44\x36\x6b\xc7\x22\x0b\x91\xdf\x52\x6e\x22\xa3\xc7\xec\xe6\xd1\xf0\xc4\x3e\x2c\xca\x9c\x37\xb4\xad\x8a\x62\x7e\xab\xc3\x38\xd3\x2a\xf2\x7a\x25\xca\xe3\xdf\x93\x32\x61\xc7\xdb\x79\x3d\xde\x97\xed\xd4\xc5\x6e\x5e\x8f\x57\x22\x4e\x17\xbb\x79\xbd\x9c\x2f\xa7\x21\x81\xbe\xdb\xb1\xbe\x8a\x60\x6b\x17\xcf\xc2\x9b\xf1\x0e\xae\xf6\xcd\x3e\xc8\x9c\x9d\xf5\xde\x7a\x5e\xcf\xcf\x0b\xf7\x26\x7a\xf3\xad\xba\x7d\xe6\xad\x8b\x9d\xbd\x26\x6b\xdc\x89\x32\x81\xb8\x6f\x75\x19\xdf\xe0\xb7\xfd\x8e\x17\x11\x85\xfe\xdf\x7f\x37\x5e\xe2\xba\xbd\x89\x6e\x81\xee\x04\xb5\xdf\xea\x31\xce\x34\xc4\xb3\x6d\x77\x54\xa4\xee\xa8\x48\xc4\xb8\xee\x53\x6a\xac\x4e\x8c\xb3\x8b\x0f\xe1\x8f\x71\xa6\x2d\x24\xf6\x6e\xef\xa3\x2e\xef\xa3\xcc\x73\xee\xad\x7e\x8d\x3f\xe0\x0d\xfc\xf8\x77\x35\x0d\x55\xfd\x67\x1a\x3a\xd1\x91\x52\xc6\xdc\xfa\x56\x7f\xc6\x69\xa7\xf1\xbd\x0c\x17\x3b\xee\x49\x29\x63\x6e\x7d\xab\x8f\x71\xfa\xd9\x99\x87\x04\x99\x74\x79\x2b\x65\x02\xa5\x77\x7b\x2b\xdd\x02\xe3\x1d\x55\xf8\x31\xce\xbc\x8d\x21\xdc\xed\x23\xc1\xf2\x30\x7b\xab\xcd\x38\x64\x32\xe9\x7f\xe2\xae\x7f\x0b\x19\xbc\x0b\x77\xff\x39\xcc\x31\xdb\xee\xf6\x6e\xba\x85\x2b\x71\xf1\xe0\xd9\x1d\xab\xe2\x16\x68\x66\x65\xe1\xcd\x38\xdd\x5f\x4d\xf8\x36\xce\x6e\x59\x4b\xb8\xba\x8f\x36\x4c\xc9\xc5\x6e\x75\x18\x5f\xe0\x0c\x57\x01\xa4\x6e\x21\x7e\x17\x33\xef\x5b\xad\xc6\x1b\xb8\xfa\x89\x60\xdb\xf1\x7e\xba\xb8\xda\x39\xc6\x59\x5e\x42\x2a\x77\x7c\x9a\x28\xbc\xe0\xf4\xbf\x78\xbc\x68\xc9\xf2\xc8\x53\xf8\x30\x4e\x3f\x4b\x11\x2e\x72\x43\x7b\x96\x31\x17\xef\x76\x62\xea\x72\x62\xca\x98\x85\xdf\x6a\x37\x3e\xc0\xe9\x7f\x31\x39\x17\x8d\xab\x32\x6f\x12\xcd\xba\xbc\x8b\xf2\x68\xea\xe7\xf1\xef\xaa\xff\x8d\xf1\x4a\x04\xeb\x53\xb2\xd6\x10\x79\x56\xaf\x8b\x64\x2d\xcc\xbf\xfb\xac\xde\x8e\x55\xfd\x14\xd9\x56\xf7\xb3\x6a\x5d\x44\x9e\xd2\x6e\x75\x79\x23\x65\x62\x94\xf4\x59\xbd\x5e\x55\xeb\x35\x3f\xc2\xa7\x71\xe6\x5f\xe4\x59\xbd\x4d\x25\x6b\x0d\x91\xa7\x64\xad\x2e\x2f\xa5\x4c\x52\x9a\x6e\x2f\xa5\x8e\x5b\xd2\xc5\xf9\xbe\x79\xbd\x1a\x97\x05\x42\xf3\xdd\xea\x2b\x9c\x75\x99\xa2\x9f\xe6\x75\x69\x8c\x77\x8a\x7e\x9a\xc7\x2b\x19\x6c\x8a\x7e\x9a\xb7\x63\x63\x3b\x12\xcc\xbd\x3b\xc6\x4a\x97\x57\x53\x9e\xa2\xab\xe6\xed\xd8\xd8\x8e\x53\x74\xd5\x3c\x5e\xf2\xd1\xe6\x29\xba\x6a\xde\xa6\x68\xcf\x14\x02\xfa\x56\xa7\x71\xc2\xc2\x8a\x4d\x76\x8f\xb7\x23\x7a\x4f\xb1\x3d\x79\x41\xdd\xc2\x02\xf7\xf7\x5f\xe3\xfc\x6e\xa3\x7d\x99\x59\x76\x82\x38\x5e\xbc\x09\x3f\xc6\x19\x6f\xff\x08\xd7\xfe\xed\x9c\x52\x3c\x50\xdf\xaa\xdb\xd1\x78\xfb\x14\xae\xf9\x47\xdf\x95\xa7\xd8\x9e\xf4\x5d\xb7\xd0\xc0\xf5\xbb\x1e\x2f\xfa\xae\x3c\x45\x57\xc3\xe3\x1d\x1a\xef\x6c\xc2\x8b\x71\x7e\x77\x0e\xe1\xa2\xcf\xa1\x75\x5f\x8c\x77\x78\xbc\x03\xe1\x60\x8a\x7e\x86\xd7\x11\x7d\x57\x26\x8f\xfb\xad\x56\xe3\x0d\x5c\xfd\x31\x9f\xc1\xd2\x52\xa1\xd1\x6e\xd5\xfd\xe1\x78\x59\xa2\x93\x39\xb5\xbe\x98\x54\xe6\x25\x7a\x98\x4b\xeb\x82\xe2\x29\x2f\xf1\x93\xe9\xfd\x32\x39\xdd\x57\x59\xff\x7c\xf9\xea\xf8\x34\x51\x88\xe9\x58\x3a\xf5\xa6\xa7\x75\x22\x62\x12\xa2\xa9\xcf\xe5\x53\x0c\xa7\xa7\xbc\x74\xea\xc9\xe9\xa9\xe3\xf4\xd4\xd1\x85\xf6\xb9\xbc\x9b\x16\xb3\xba\xc4\x6d\x96\x67\x75\xb1\x6b\x78\x06\xbf\xd5\x65\x3c\x76\xfd\x12\xb5\x2c\x8f\x7a\x69\xb6\x3b\x54\xba\x3c\xdb\x4b\xb3\x3d\x98\xd5\xe5\xdd\xb1\xd8\x1d\x4b\x5c\x68\xf9\x10\x5b\x47\xdf\xab\x9f\xe6\x96\x0b\x6e\xb9\x44\x45\xeb\x6c\xe3\x71\x2a\x2d\x71\xa7\xed\xd5\x91\xa8\xb7\xc4\x9d\xb6\x4f\xb7\xcd\xe9\xb6\xc4\x9d\xb6\x2f\x35\x5b\xf3\xb0\xd4\x8e\xc7\xb5\xb5\x9a\x8b\xdf\xdd\x5b\x5c\x05\x1f\xa9\xf2\x11\x77\xda\xa6\x22\x44\xc0\x42\x40\xc1\x8e\xcb\x54\x14\xe2\x0e\x57\x70\x9e\xba\xd5\x6c\xbc\x06\x9e\xf4\xbb\xbe\xbc\x90\x34\xb2\x10\x07\xb8\x3b\xe2\xd2\x2d\x24\x70\xfa\x73\xcc\xbd\x11\xe9\xca\x47\xd4\x78\xbc\x0b\x70\x92\x2a\xd8\x86\xdf\xea\x36\x7e\x02\x2f\xfc\xee\x31\x59\x85\x0c\x77\x71\xda\xf9\x7a\x57\x46\x82\xc3\x54\x3e\xba\xac\x7d\x7d\xfa\x84\x3e\xe8\xe2\x55\xb8\xe8\x2a\x62\xaa\x5f\x9c\x7e\x7e\xcd\xa5\x51\x1b\x95\x88\x19\x1c\xd5\x61\x7c\x81\xab\x1d\xcf\xf3\x57\xf3\xac\xcb\xda\xd7\x5c\x97\xd0\x0a\xe5\xa3\xd3\xf0\xeb\xcb\x60\x18\x27\x5e\x5c\xed\x78\x17\x7f\x35\x9f\x3a\x25\xbf\xe7\x18\xff\x06\x2e\x6e\xf6\xf3\x3c\xff\x34\xcf\xe2\x66\x3f\xdf\x16\xc2\x38\xf1\xe2\xf4\xe7\xb7\x44\x6f\x11\xb2\x3c\x95\xcf\x4c\xc2\xbb\x71\xe6\x47\x5c\xee\xe7\x7d\x11\x11\xc7\x53\xf9\xe8\x34\xfc\x99\xbb\xfe\x44\x27\xba\x65\xfd\xdc\x7f\x6c\x12\x4b\xd2\x2d\xeb\xe7\xf5\xfa\x85\x08\x5e\x92\xe8\xed\xe7\x5b\x04\x22\x60\x49\xa2\xb7\xc7\xf4\xff\xb0\x8e\x49\x5c\xee\xf1\x65\xf6\x61\x5d\x08\x2d\x72\xab\xcb\x38\xed\x88\xfb\x3d\xde\xbf\xa8\x99\x4a\x92\x10\xf0\x98\x5d\x45\xec\x85\x8b\xd3\x9f\xd7\xfb\x31\x82\x28\xa7\x92\x44\x3f\xaf\xe7\x13\xd9\xac\xa4\xea\xef\xb7\xf1\x2f\x38\xfd\x79\xdd\xcf\x57\xfd\x14\xfd\xbc\xa6\x9f\x17\xfa\x49\x62\x7b\xaf\x4f\xbd\x97\xf9\xc7\x80\xbb\xcf\xd7\xf3\xff\x2a\xa6\xb1\xe8\x47\x21\x1a\x6e\x81\xdf\xed\xfe\x5e\xeb\xf2\x42\x57\x49\xa7\xe1\xeb\x5b\x28\x36\x83\x25\xc1\xc7\x96\x6c\x03\x6f\xa1\x82\x2f\xe1\xdd\x78\xf0\x87\x04\x9d\xac\x8f\xe8\x67\x85\x9e\xeb\xe2\x43\x78\x33\xce\x7c\x4e\xb5\xc3\x8b\x79\x97\x93\x57\xe1\x65\xbc\x2f\x0b\x4f\x72\xf2\x2a\x89\xd3\x70\x7d\x78\x5a\xb8\x85\x98\x1f\x5e\xc6\x6f\xf5\x11\x1e\xb7\xb5\x42\xb4\xf3\x8e\x2f\x18\x05\xbe\x4f\x6a\x5f\xfb\x65\x7d\x18\x6f\xe6\x96\x85\x13\x18\x05\xda\x81\x2f\xad\x24\xbe\xba\x12\x7c\x00\x4b\xed\x5b\x6d\xc6\x07\xb8\xbe\x17\xbd\xad\x90\x96\x92\xf2\xeb\x77\x07\x85\xbe\x85\x0e\xde\x84\x6f\xe3\xf4\x27\x5e\x6c\x3b\xde\x61\x14\x32\xf8\x10\x5e\x8d\xc7\xfc\xf0\x92\x7e\xab\xd3\xf8\x8a\xc8\x50\x4b\xf0\xd7\xf0\xcb\xe7\x34\x6f\xe1\x69\x65\xd8\x43\xe6\xd8\x5c\xd2\x92\xf5\x95\x35\x5c\xc8\xca\x5e\x65\x5d\x5e\x65\x05\x93\xe8\x6e\xaf\xb2\x5b\xf8\x81\x67\x70\x0f\x17\x21\xa9\x64\x8e\xc1\x95\xc5\x0e\x17\xfa\xae\x92\x45\x56\xd9\xcb\x15\x21\x1f\x1a\xd9\x97\xfb\x92\x05\xe0\x2d\xb0\x8a\xa2\x92\xe2\xd9\x27\xf9\x5b\xc9\x6b\x08\x3f\xc6\xa3\x3b\x45\x54\x52\x4c\x3d\x44\x4e\x28\x58\x38\xdf\xea\xcf\x78\x70\x61\x2c\x99\xfb\x2a\xc7\xed\xc3\x05\x78\xd7\xbf\x55\xf7\x07\xaa\x2a\xdc\xc5\x57\x15\x77\x90\x03\x59\x29\xa2\x92\x2a\xee\xb0\x2a\xdc\xa1\x70\xaa\xd9\xb1\xac\xcb\xb1\xac\x94\xac\x76\x24\xf3\xac\x1a\xb2\x68\x29\x70\xa5\x55\x75\xc7\x5d\x58\xe8\x95\xf2\x57\x77\x2f\xfc\xc7\x28\xd0\x5d\x11\x57\x35\x71\x21\xe2\x14\x9e\xfd\x6f\xf5\x6b\x9c\xe9\xd3\x32\x58\x94\x59\x0d\x66\x40\x14\xda\x5b\xed\xc6\x63\x13\x14\x51\x4b\xf3\xf0\xc2\xa3\xec\xe2\x45\xf8\xcf\x38\xc3\xee\x4c\x87\x45\x9f\x85\xe8\x53\x0a\xcc\xc9\x8e\x64\x7d\x35\x0d\x5b\xcc\xa9\x89\xf9\xad\x06\x93\x20\x0e\xca\xad\x0e\xe3\x1b\x7c\x09\xf7\xef\xc6\xfb\x63\x41\x1d\xd0\xed\x31\xd6\x09\x4b\x78\x71\xbe\xb7\x28\x43\xbc\xf4\x54\x8a\x98\x50\xd7\xdd\x54\x9e\x64\x85\x78\xd5\xb7\x3a\x8d\xc7\xef\x12\xe3\xf9\x56\x7f\xc6\x5f\x70\xfa\xaf\x00\x0d\xb7\x10\xf3\x50\x45\x76\xdd\xcc\x0f\x51\xa6\x54\x91\x5d\xd7\x61\xb5\x50\x3f\x95\x2a\xf2\xea\xba\x3c\xae\xce\x65\xa7\x8a\x09\x29\x40\x43\x27\xac\x62\x2a\xc4\x41\xe9\x6b\x98\x1c\x87\xfa\xc9\xe1\x86\xeb\x17\x85\x04\xbe\x84\x17\xe3\x31\xcf\x95\xa7\x82\x35\xcc\xbc\x09\xdc\x50\x6a\x55\x3b\xdb\xdf\xc7\xcb\x57\xa9\xe2\x36\xc3\x4c\x0e\x53\xbc\x52\x11\xe9\xf0\x15\x8b\xc2\x25\xc8\x8e\x5d\x77\xb7\x6f\xd8\x2d\xf0\xb3\x62\x4e\xc3\xbb\x6f\xb0\xfb\xaa\xc8\x6d\x98\xa7\x0f\x0d\x57\xe4\x36\xbd\x5c\x48\x38\x85\xc8\xed\xb7\x3a\x8c\xd3\x0e\x77\x7a\x3b\x8d\xdd\x42\x06\xef\xc2\xbb\xf1\x09\xae\x76\xcc\xfc\x42\x64\x4a\x85\xbc\xa8\x7d\xc9\x44\xef\x16\x98\x86\xa9\x76\x74\xb7\x5e\x13\x5e\x5f\xc5\xcd\xa6\xc7\x3b\xd9\x8e\x55\xdc\x6c\x9a\x29\x4e\x2d\x2f\x77\xa9\x65\x11\x69\x2d\x96\xb1\x89\x9b\x2d\x93\xdb\x62\x7b\x35\x9d\x6d\xcb\xe3\x5a\x2c\x2f\xea\x83\x5b\x9d\xc6\x17\xf8\x14\x7e\x8c\x47\x3f\xb1\xc7\xee\x8e\x9a\x79\x0b\x05\x5c\xed\x7b\x5c\xc4\x7f\x28\x4d\x64\x68\x19\x69\x61\x72\x57\x88\xa3\x72\xab\xfe\x5d\xd6\x11\x3b\xed\x6e\xa7\xb4\x8e\x1b\xda\xc5\x19\xef\xf6\x76\x24\x3c\x5c\x69\x62\x63\x96\x85\x16\xf1\x22\x4a\xe3\x8e\xb5\xb6\xd9\x0f\x5e\x69\x0a\x76\x7d\xab\x9a\x1f\x64\xa4\xd2\x74\x76\x6e\xb3\x9f\x0d\x99\x37\xb1\xbd\xed\xf9\xd9\x9a\x87\xa6\x76\xcc\x8d\x37\x6c\xa9\x89\xde\xb6\xc9\x1f\x53\xbf\x42\x1c\x95\x6e\x6f\xb5\x5b\x60\xbd\x44\x6f\x8a\x47\xd1\xe5\xc5\x56\xb0\xd3\xbe\x55\xb1\xbd\xad\x79\xe3\xee\xbe\xb6\x4f\x25\xc9\x54\x6d\xaa\xff\x66\x03\x5b\xf3\x36\xe9\xbf\x65\x2d\xdc\xd9\x2e\xbe\x84\xeb\xfb\xa3\xf1\xf2\x42\xba\x8e\x0f\x79\x12\xdd\x97\x2e\xba\x3a\xa6\x87\xd0\xbb\xf5\xca\xd5\x77\x1d\x4f\x03\x16\x80\xa5\x6b\xfb\x1e\x93\x3f\x16\x80\x8a\x29\x7e\xab\x6e\x9e\xb3\xbf\xeb\xf0\xb4\x28\xb7\x24\xca\x75\xdd\x5d\x8e\xb9\x36\xce\x6d\xa5\x8b\xeb\x1d\x4f\xc3\x81\x1b\x76\x1d\xaa\xc7\xd3\x20\xd1\xaf\xeb\x50\xfd\xfa\x70\xc6\x89\xad\x74\x71\xc3\xaf\xb7\x11\xda\xbc\x22\x3d\x80\x9d\xdb\x6e\x81\xdf\x15\x79\x7e\x7d\xc5\x25\xb1\x56\xe9\x22\xcf\xaf\xc9\x04\x2d\x5f\xe9\x22\xcf\xaf\xef\x40\x5f\xcd\x83\xc8\xf0\xeb\xed\xfe\x65\x79\xbb\xd8\x9b\xb4\x79\xb7\xb0\xc0\xd5\xbe\xb7\x85\x44\xbc\x2e\x72\xfb\x9a\xcb\xa3\xe5\x2b\x5d\xa7\xe9\xcf\xe3\x42\xcb\x57\xba\x4e\xd3\x9f\x97\x1d\x2d\x5f\xe9\x22\xc3\xdf\xf2\xf7\x90\x43\x17\xb9\xfd\x4c\x0e\xbf\xa5\xef\xe9\xe7\xcf\x6c\xe0\x07\x7b\xd3\xbb\xfe\xfa\xf9\xb6\xf1\x43\xd4\xd5\xbb\xfe\xfa\x49\x24\x21\xe3\xd1\xc5\xd5\x1f\xb3\x81\x9f\xd6\x6b\xd1\xce\xe3\xab\xf8\x03\xd9\xea\xa1\x7e\x59\xf4\x5b\x12\xfd\xf4\x50\x4f\x0c\x5c\x0a\x2f\x38\xfd\x7f\xbc\x5e\xa8\xfd\xca\xf8\xa8\x1d\xdf\x2a\x1e\xb6\xef\x10\x3b\xb4\x48\xb8\x24\x12\x4a\xd1\x60\xf7\xb2\x2e\xf7\xb2\x32\xf2\x5f\xc4\x97\xe8\xeb\x75\x77\x5f\xb8\xb1\xde\xdf\xd7\xeb\xbb\x2b\x5e\x63\x65\x88\x6b\xbd\xe6\x1e\x64\x33\x2a\x64\x95\xbb\xd5\x6e\x7c\x82\x57\xe1\xdb\xf8\x01\x1f\xc2\x7f\xc6\xf9\x5d\x91\xd1\xeb\x6d\x23\x49\x8f\x60\xa9\x7d\x2b\x18\x5f\x97\x17\x58\x21\xcf\x70\xdf\x4a\x07\x72\x0b\x0d\x7c\x09\x9f\xc6\x69\x67\xfa\xfb\x47\x78\x28\x85\x8b\xde\xcd\xed\xd5\x75\x0b\xf4\x7f\xaa\x1d\x91\xc5\xfe\x20\x91\xea\xdd\xdc\xde\x5b\x1d\xef\xad\x9e\xdd\xcd\xe3\xee\xb0\xeb\x49\xdf\x7e\xab\xdb\xf8\x01\xa7\x19\x6b\xb1\xf0\xbe\x4a\x45\xcf\xe9\xdb\x82\x18\xce\x58\x3d\x77\xc3\x5f\xc1\x6c\x4a\xbd\x8e\x6f\xcb\x55\x5b\x02\x94\x5e\xbb\xb7\xc2\x6f\xdc\x42\xcc\x32\x41\x50\xfa\xce\x3a\x6b\x77\xe6\x0e\x81\x79\x75\xb7\x6f\xd5\x2d\xd0\x7d\xae\xd0\x3b\x4b\x5e\xdc\xa4\x2f\x29\x04\x41\xe9\xf6\xb9\xba\x85\x98\x9d\xa9\x7e\x66\x51\xc9\x46\xcb\x54\xc8\x61\x78\xab\x6e\x87\x4d\x86\xd9\x75\xdf\x59\x44\x2d\x5f\xac\x82\x79\xf5\xad\x76\xe3\x8c\x8b\xcd\xbd\x15\x2a\xaf\xe3\x7c\x95\x0a\x51\x4e\x6e\x55\xab\x8b\xc1\x60\xd1\x2b\xf5\x96\xc1\xe0\x2d\x04\xf5\x90\xfe\xb6\xdb\x17\xeb\x16\x1e\x70\xe6\x41\x11\xfe\x6f\x21\x83\xeb\x77\x75\xa5\xdf\x85\xb3\x13\xb3\xeb\x8e\xcb\x16\x85\x38\xdb\x48\x12\xd9\x71\xd9\xa2\xc0\xef\x26\x7d\xef\x71\xa1\x95\x2a\xa4\x71\xbc\xd5\x9f\xf1\x17\x9c\xfe\x5b\x2b\xb5\x2b\xd4\x4f\xe6\x88\x8e\x0b\x16\x85\x0d\x4e\xff\xab\xc7\x5b\x35\xae\xaa\xef\xc5\x54\x70\xa6\xea\x18\x94\xf5\x6d\xe5\xd3\xc6\xd0\xaf\x2c\x36\xf5\x56\x88\x8f\x4e\x3e\xb7\x8b\x37\xe1\x8f\x71\xba\xd9\xf5\xb3\x5e\x46\x49\x6c\xe4\x15\xee\x76\xc5\xba\x05\x86\x0b\xaf\xdf\xd5\xbb\x02\xc3\xc0\x42\xe4\x92\xee\xc0\xdb\xb7\x90\xc0\xbb\xf0\x62\x7c\x81\x4f\xe1\x5a\x46\x42\x7f\x14\x22\x97\xdc\x6a\x33\xce\x72\xc1\xbb\x77\x33\x73\x20\xd4\x5e\x59\xcb\xdf\xff\x69\x87\xfe\x70\xc5\xdd\xcd\xf3\x13\xb1\x41\x52\xfd\x88\x7c\x2c\xe1\x6d\x24\xbc\xaa\xe7\xe9\xdd\x4c\xe6\x48\x78\x95\xec\xb6\xdd\xae\x5e\x7d\x87\x45\xe1\xc5\xd5\x7f\x93\x09\x21\x44\xaa\x9e\xa7\xed\x02\xd6\x89\x2c\x7e\xf1\x2a\xfc\x67\xfc\x05\x67\x7e\xba\xb7\x7b\x88\x7a\x5d\xef\x04\x5b\x11\xfb\xba\x3c\xc3\xea\x27\x1b\xd7\x32\x12\x42\xa4\xea\x35\x7b\x77\x33\x25\x42\x88\x54\xd2\xf8\xdd\xea\x32\xce\xb0\x44\x6d\x16\x14\x71\x05\xbb\xb8\xda\xf1\x70\xbb\x86\xcb\xeb\xd0\xee\x1e\x6e\x28\xb3\x2e\xbe\x84\x37\xe3\xb4\xd3\xf4\xbb\xe6\x6e\x44\xf8\xab\x1f\x71\x2b\xf9\x78\xdd\xc2\x03\xce\x34\x0c\xef\x16\x7c\xb9\x2a\xb9\xa7\xba\xf3\xa9\xdc\x02\xbf\x2b\xee\x63\xdd\xd6\x1e\x1a\x97\xc8\x70\x48\x2b\x81\x53\xd7\xc5\x59\xae\x61\x72\x18\x1a\xaf\xce\x96\x61\x2e\x10\x86\x8c\x17\x1f\xc2\x35\xcf\xe8\xbc\x2a\xc6\xde\xb7\x5a\x8d\xf3\xbd\xb8\xd5\x34\x99\x87\x68\x98\x6a\x12\xf7\x99\xde\xed\x48\x84\x35\x89\xfb\x4c\x93\x3f\x12\x61\x25\x90\x78\xb7\x33\xd7\x2d\x44\x3f\x31\xc3\xee\xf8\x76\x51\x08\x32\xd1\x72\x59\x50\xc4\xa9\xeb\x7e\x0e\xb5\x4d\x53\x39\x81\x02\x6b\x12\xf3\x99\x3e\x1a\x23\x80\xf7\xc5\xd5\x8e\x97\x77\x42\xcd\x7a\x84\xde\xd3\x4c\x2f\x24\xc6\x8b\xab\x9b\xc7\xed\x30\x0d\x49\x87\xd4\x32\x17\x88\x74\xda\x17\x9f\xc2\x9b\x71\x86\x25\x6e\xb5\xf4\x2a\xb8\x11\x38\x2b\x56\xde\xb7\xfa\x35\xfe\x82\x33\xcd\xcb\xe4\x80\xf2\xad\x26\x91\x89\x95\x6c\x7b\xb1\xec\x7a\x84\xb6\x8f\xd7\x2d\x30\x2e\x91\x89\x92\xf1\xf5\xbd\x20\xf3\x34\xfe\x22\xab\x50\x27\x19\x0f\x85\x19\x7f\x26\xa6\x65\x5d\x1b\xbe\x5d\xa9\x26\x51\xcb\xf2\xa6\x27\xea\x49\x25\x9a\x48\xdf\xd6\xc1\xed\xad\x69\x12\xd3\xb2\xdc\xb9\xd1\xc1\x55\xbd\x45\x6f\xcb\x9d\x3b\x04\xcd\x8b\xab\x1d\xc9\x97\xf8\x88\x5d\x7c\x09\x77\x3b\x50\x91\xde\xa8\xb7\xe5\xce\x1d\xa9\xed\x2e\x5e\x84\xff\x8c\xbf\xe0\xea\x8f\xc9\x28\xec\x37\x53\xd5\x1b\xf5\xb6\xce\x6e\x6f\xc8\x88\xa8\x21\x7d\x2b\x4a\xca\x2d\x64\x70\xf5\xc7\xbb\x06\x17\xb3\x9a\x11\x88\xec\x62\x76\x0b\x1b\xbc\x0b\xff\x1a\xa7\x3f\x85\xe5\xb4\xdc\xb9\xcf\xa4\x7d\x2c\x01\xb6\x02\x27\xf6\x7d\x96\x70\xd6\xe5\xac\x3f\x78\xec\xbe\x2c\x72\xb1\xee\x6f\x1f\xb8\x01\xd9\x74\x6e\x55\xe3\x3a\xea\xbf\x0e\xb1\xe3\xfe\x1f\xf5\x7f\xea\x77\xdd\xff\xa3\xfe\x4f\x7f\xff\x35\x4e\xff\x75\xd7\xf9\xba\xff\x5f\xd6\x3d\x8b\x4e\xbe\x5e\xf7\x2f\x5c\x22\x8b\xab\x7c\xcd\x25\x30\xff\xac\x05\xc1\x64\x7f\x7d\x17\x24\x4a\x4a\x2d\x3a\xac\xbe\xbe\x43\xa0\x43\xac\x7a\x8d\xde\xd6\x21\x6e\xc2\xb3\x2b\xdb\x53\xdf\x5f\x5f\x16\xbe\xcc\x03\xd6\xe4\xb7\x2a\x3a\x41\x57\x58\x4b\xd6\xf7\xc7\xed\xc3\xed\x4b\x31\xee\x7e\xc2\x0e\xcc\x9e\xac\x2b\xdc\x84\x6d\xaf\x45\xeb\x68\x41\x72\x23\x48\x56\xac\xcc\x6f\x75\x1b\x3f\xe0\x55\xf8\xcf\xf8\x0b\xce\xfc\x58\xb7\xb8\x23\xc0\xc9\xc5\x97\x70\xb7\x03\x3b\x28\x48\x30\x78\xae\x51\x88\x79\xd6\xf3\xf1\xb6\x20\xb9\x7f\x1a\xaf\x2e\x41\xd6\x2d\xe2\xcb\x96\x6a\x11\xfb\xf8\x79\x5f\xa3\x43\xac\x7a\x26\xde\x8f\xf7\x75\x48\x9a\x9d\x68\xdc\x7d\x3f\x3e\xb4\x1f\x2d\x17\xcf\x28\xfb\xf1\xf6\x0d\x1d\x63\x2f\x12\x48\x1e\x53\xed\xa3\x55\x14\xf5\x3c\x1e\x15\x29\x87\xdd\xc9\xc7\xbc\xef\xd1\xe2\x2e\x37\xa3\xa3\x3c\xf2\x0e\x5f\x5c\xbf\x6a\xb1\x29\x72\xbd\x5e\xbc\x0b\x6f\xc6\x99\x9c\xa5\x9f\xb5\x00\x13\xb9\x85\x52\xad\xba\x70\x3f\xde\xec\x04\x53\xa9\x55\x44\xf8\xf8\xe8\x0f\xf1\xf6\xe2\x6a\xc7\x9b\x82\x68\x90\x55\x8f\xb2\xfb\xf5\xd1\xf9\x72\x74\x56\xdd\x98\xac\x00\xdd\x04\x53\xa9\x55\x37\xa6\xd7\xc4\x4f\xd0\x94\x5a\x75\x35\x7a\x3d\x0f\x2f\xe3\xad\xba\x88\xbf\x1e\x2f\xc6\xa3\xb5\xea\x6a\xf4\xee\x3f\xdf\xd3\x1f\x5e\x5d\xf6\xeb\x71\xbd\x30\x81\x2a\x26\xf3\xfa\x2c\x7c\x61\xfe\x55\x44\xf8\x9a\xf9\x23\xfe\x56\xa2\xc6\x75\xe7\x22\xb9\x05\xc6\xc5\x15\xe8\x7c\x74\xe6\x9d\x0f\x44\x4e\xb0\xed\x7e\x2c\xfe\x9e\x50\x5c\x76\x62\x61\xdc\xda\xd7\x30\xdd\xec\xc2\xd5\x9d\x43\x70\xca\x5a\xa1\xcd\xf3\x39\x6e\x5e\xdd\x19\xfe\xfe\x31\xfe\x82\xf3\xb3\x72\xd7\xbb\x85\xa0\x36\x62\x76\xdc\xea\x31\xce\xf7\x10\xed\x49\xda\x73\x27\x71\xe6\x54\xa4\x6e\xbc\xf1\x28\xb0\x5c\x5c\xdc\x4f\xd2\xf4\x9f\x04\xb9\x55\xc8\xed\xd8\x88\xf3\x24\xae\x28\x75\xa9\x3f\xdb\xed\x44\x0e\x62\x62\xa1\x76\x9c\xf7\x28\x44\x77\x08\xf1\xdd\x4f\xd2\x53\xb6\xbc\xf8\x2a\x09\xec\x6f\x75\x1b\x8f\x69\xc0\xe2\xbd\x1f\x1b\x6b\xca\x5b\xaf\xea\x69\xfa\x64\xb1\x18\xdc\xf6\x52\xd5\xd3\xf4\xc9\x1e\x2e\x62\x77\xc5\x12\xfe\x56\x9b\x71\x7e\x97\x9b\xd7\xc9\x5e\x2e\xb2\x83\x56\x2c\xe1\xfb\x51\xe8\x92\x2e\xbf\xbb\xda\x38\xea\x8e\x42\x97\xdc\xc2\x00\xa7\x3f\x36\xca\x94\xdf\x5d\xd5\xd3\xf4\x51\x64\xf9\x5b\xe0\x77\xb9\xa0\x9f\xe2\xfe\x17\x96\xab\x71\x11\xc7\x0d\x8f\x02\xfd\xe7\x86\x85\x1b\x1e\x85\x0d\xde\x85\x7f\x8d\xff\xc0\xe9\x7f\xd9\xfe\x5d\x96\x4b\x4f\xd3\xb8\xe1\x51\xe0\xfb\xae\x76\xbc\x2e\x21\x2e\xb7\xa9\x65\xb1\x54\x8c\xbb\x5c\xaa\x6d\xfc\x85\x97\x63\x3f\x0a\x60\x72\x0b\x9d\x3f\x6b\xc2\xa7\x71\x46\x01\x23\xb6\x3b\x5d\x3f\xa8\x3b\x6b\xe3\xba\xef\xfc\x3a\xb7\x40\x3b\x22\xea\xea\x51\x57\x8d\x5a\x44\x6d\xe1\xfb\x54\xee\x8f\x6d\xa9\x1d\x13\x29\xfa\xcf\xda\x44\xbc\x36\xf1\x3c\x95\xd9\xe8\xa2\xde\xea\xd5\xaf\xac\x7e\x47\xea\x3c\xd5\x9b\x18\x29\xbb\x92\x4e\xad\x1f\x4b\xc1\xa7\x41\x5d\x18\xbc\xf7\x63\xa9\xf6\x48\xaa\xed\x98\x60\x1e\x4b\xb5\x47\x52\xad\x5e\xae\x8f\xf5\x96\x72\x9b\xab\x7a\xb9\x3e\xcd\xbb\xa9\xa9\x9f\xa2\x52\xb9\xcd\x75\xb9\xcd\x55\xbd\x5c\xdb\x6d\xee\x16\x3a\xb8\xfa\xe3\x5d\x26\x69\xb7\x8b\x7a\x2d\xed\xca\xcd\xae\xca\x82\xdd\x79\x89\x6e\x21\x81\x17\xe1\xc5\x78\x05\x6f\xc2\xb7\x71\xda\x47\x9e\x38\xdd\xeb\x1b\xe9\xba\x53\xed\xa2\xf6\xee\xf5\x8d\x48\x29\x6d\xc2\xa2\x8f\xa5\xe3\x23\x29\xb8\x6b\x13\x74\x2f\x57\xd7\x34\x70\x02\x9f\xee\x69\xc0\x92\xb3\x76\xf1\x5c\x5b\x72\x9e\x8e\x98\xd4\x45\xec\xdd\xcb\xd8\xd9\xc4\x7a\x18\x3f\xdd\xbc\x58\xd2\x6e\xc7\xb8\xe1\x28\x9e\xfd\x2d\x30\xcd\xdc\x33\xcf\x30\x39\xa3\x46\xad\x32\x78\x3f\xb6\xf0\x3c\x43\xc3\xe5\xfe\x79\x14\xff\xbe\xe3\xce\x77\x71\xb5\xa3\x9b\xc2\x09\x71\x38\xd5\x2e\xb2\x1d\xe6\xc5\xc4\xbf\xaf\xb2\x60\x3f\xc3\x64\x32\x20\xe7\x2e\x72\x1e\x26\xdb\x01\xd9\x0e\x91\xed\xf0\xf2\xa2\x17\xad\xb2\x60\x77\xb6\xcb\x7e\x24\x05\x13\xa2\xa4\x1f\x4b\xc1\x47\x52\x30\x21\x4a\xba\xbd\xf8\xba\xbc\xf8\xea\x40\xbe\x38\xd3\xcc\x69\x72\x6f\xd7\x83\xf9\x51\xb2\xdc\x5b\xf8\x82\x77\xe1\x8f\x71\xfa\x83\x9e\xf0\x4c\x8f\x8b\xd0\x25\x75\x14\xb5\xef\xf5\x9d\xac\x2f\x29\x95\xfb\xb1\x49\xe9\x91\xb8\x3b\x44\xce\x16\x77\x4f\xc4\x30\x49\x75\x70\x25\x70\xba\xab\xae\x74\x57\x55\x2f\xee\xc7\xe2\xee\x59\xbc\xde\xc8\xb2\xfd\xd8\xa6\xf4\x2c\x98\xb1\x5e\xd6\xf1\xf6\xa3\x10\x64\xab\x23\xdb\x26\xa5\xf2\xfa\xab\x43\x3c\xd7\xd2\xae\xbc\xfe\xea\xe0\x26\x78\xd6\x76\x77\xb6\xbe\x57\xf3\x26\x73\xd4\xa8\x55\x06\xec\x67\x79\x1a\x96\x86\xa5\xa3\xdf\x6a\x51\x32\xaf\xa7\x2a\x83\x74\xf2\xac\x53\x60\x3a\x45\x26\x16\x4f\xe5\x0d\x58\x7d\x66\x6f\x9f\x3d\xa8\x3f\xeb\x14\x77\xdb\x1e\x97\xc4\xd0\xa9\xb3\x79\xbb\xff\xa8\x3f\xeb\x14\x99\x58\xfd\x29\xaf\xc2\x2a\x43\x75\x7b\x15\x76\x12\xb1\xa7\x2a\x43\x75\x27\x62\xef\x47\xe2\xe9\xd4\x99\xad\x60\x9d\x5d\x59\xb9\xea\x14\xd7\xdb\xbe\x1a\x49\xdc\x9c\xe2\x7a\xc7\xdb\xf1\xb0\x1d\x89\x5f\xde\xcf\x31\x79\x4a\xac\x94\xe1\xf9\xb1\x3a\xf3\x1c\xd6\xc5\xec\xc7\x7a\xc8\x83\x1e\xb2\xca\x20\xdd\xde\x83\xb7\x40\x3f\x75\x43\x3c\x5e\x97\x03\x79\xca\x50\xfd\x58\x3f\x79\xd0\x4f\xd6\xa9\x9b\xa3\xf5\x93\xe7\xc0\x66\x64\xc0\x7e\x6c\x9a\x8a\x7b\xe1\xc5\xbb\xf0\x61\x7c\x82\x2f\xe1\xdb\x38\xed\xa0\xb0\x39\x16\x37\x49\xff\x75\x71\xb5\x63\xb6\xfa\xd5\x3c\x88\x5d\x7d\x3d\x0f\xc4\xe9\x57\xf2\xdc\x7e\x2c\x6e\x92\x16\xec\xe2\xfa\xde\x77\xa0\x08\x6d\x92\xea\x14\x5b\xfa\x9a\x7d\x12\x16\xb3\x4e\xd1\xdb\xcf\x97\x08\x89\x8f\x64\xc3\xbb\xd5\x6e\x7c\xdc\x6d\xc4\xab\xca\xf9\x79\x19\x7f\x2c\xa3\xec\xda\xcf\x4f\x62\xd9\xf9\xc1\x55\xa5\x01\x38\x3f\x73\xa5\x1f\x5c\x69\x89\x0c\x7f\x3e\x94\x7f\x3c\x3e\x2d\x91\xa1\xa5\xcd\x83\x3a\xb3\xca\x0e\xfe\xfc\x7c\x79\x20\x90\x4a\x5d\x3a\xac\x7f\xe6\x4a\xa8\x2d\xeb\x12\xb7\xfa\x79\x79\x25\x6d\x2e\x1d\xb2\x96\x36\x0f\xe9\x01\xaa\x34\x03\xc7\xd2\xe6\x41\x9d\x59\x97\xb8\xd2\xe3\x65\x7c\x38\x34\x97\xc8\xf0\x31\xf7\x79\xb8\xfc\xac\xbf\x89\xad\xda\x9d\x8b\xac\xcb\x99\xb1\x2e\xdd\x14\x1f\x3d\x1a\x29\x17\x59\x5d\xa2\x3a\xcb\x97\x47\xf2\xa5\x34\x0d\xc7\xf2\xe5\x79\x78\x6c\x90\xa6\xe1\x3c\xde\x1d\x92\x2f\xa5\x69\xb0\xf3\x63\x27\x89\x59\xaa\xd2\x34\xe0\x0b\x49\x81\xd5\xd7\x5d\xf0\xf1\x8d\xf3\xe1\x2e\xb5\x74\x17\x7c\xbc\x3b\xd0\xb2\xd6\x25\x2a\x55\xb0\xce\x2e\xe7\xc7\x2a\x0d\x84\x9d\x1f\xfb\x79\x45\x16\x68\x5c\xec\xfc\x78\x0b\x15\x7c\x08\xef\xc6\x21\x8b\xa5\xf6\xcd\xe5\xc2\x3b\x32\xb5\x8f\x24\x16\xcb\xa9\x07\xc3\xdb\x46\x9c\x98\x6e\xa7\xc8\x2e\xa7\xc8\x26\x0d\x84\x9d\x22\x6f\x41\xed\xe8\x77\xcd\xd5\x43\x2f\x9b\x9a\x0c\xe1\xed\xfc\xd8\xf1\x6a\xbc\xf8\x6d\x67\x38\x95\xf3\x2d\xd4\xc0\xe3\xf0\x1c\xf6\x66\x1c\xca\x8d\xd6\x50\x1d\x0c\x9c\x18\x29\x3c\xe0\x15\x9c\xed\x71\x0b\xb4\x13\x87\xe4\xad\x76\xe3\x23\xf0\xaa\x76\xb8\xb3\x0e\xdc\x17\x2f\xae\xdf\xe5\xce\x7a\x0b\x1d\x5c\xed\xa0\x89\x19\x24\x55\x4b\x0d\x95\xc2\x98\x1f\x2e\x5f\x43\xde\x8c\x8d\xf8\x31\xc3\xde\x8c\xb7\x40\xff\xbb\xbf\xdf\xc6\x99\x9f\x4e\xff\x93\xe7\x81\xf4\x0c\x0d\x95\xc2\xad\x36\xe3\x27\xf0\xa0\xb7\x5b\xfd\x19\x67\x1e\x86\xbe\xf7\x3c\x24\xcd\xc3\xd4\xf7\x9e\x87\xa4\x79\x98\x4d\xf8\x32\xfe\x05\x1f\xc2\x5f\xe1\x9a\x9f\x45\xff\x25\x20\x0f\x79\x39\xb6\xcf\x52\x3b\x9c\x7a\xb7\x00\x3d\x2c\xb5\x73\x34\xcf\x04\xf7\x6c\x18\xc2\x8f\xa9\xfc\x0f\xb7\x70\xc0\x99\x7f\xe5\x6a\x1b\xca\xd5\xd6\x52\x5c\xd6\x86\x73\xb5\x0d\xb9\x39\x36\x22\x99\x8f\xa9\xe0\x9e\xb7\xf0\x03\x1f\xc2\xd5\x7f\xdc\x1c\x1b\x86\xf0\xc3\x6e\x8e\xb7\x40\x3b\x59\xed\xac\x6d\x9c\xfe\x88\x0e\x95\x30\x62\xc8\x9d\xb1\x11\xe1\x7c\x4c\x49\xc8\xb7\x10\xf3\x80\x0e\xe2\x56\xfd\x7d\xec\xeb\x46\xe4\x98\x81\x17\x23\x85\x01\xbe\x84\x1f\xe3\xb1\x8e\xe8\x1a\x06\x5e\x8c\x14\xf8\xbe\x4d\xe1\x5f\xe3\x7c\xdf\xd5\xfe\xf6\xf7\xec\x53\x42\x93\x8f\x59\x8e\xf1\x23\x5c\xdf\x9f\x66\x9c\xfe\xcf\x24\x7c\x1b\xff\x82\xab\x3f\x1e\x57\xd1\xb8\x44\x27\xd5\x74\x5b\xb5\x2e\x73\x09\x3f\xc6\xf9\x7e\xd1\xff\xba\xb4\xbe\x91\x54\x22\x29\x95\xfc\xad\xfa\xfb\x78\x27\x6b\x84\x76\x19\x4e\xae\x76\x0b\x2d\xf0\xa4\xef\xf7\x30\xfe\x80\xeb\xfb\xe3\xef\x0f\xdf\xe7\x26\xdc\xdf\xd3\x7f\x94\x00\xc3\x6e\x8b\xb7\x10\xf4\x96\xc5\x37\x9a\xe9\x8d\xa4\x11\x2d\x6b\x7d\x9b\xe9\xaa\x41\x57\x59\xfc\xa1\xad\x62\x3c\xe8\x27\x8b\x3f\x34\xef\x23\x6c\x7a\x5b\x16\x1f\x68\x7b\x1b\xe7\xfb\xde\x85\xfb\xfb\xa3\xef\xd5\x4f\xd3\x5b\x24\x81\x48\x2d\x8b\x0f\x28\x55\xf4\x2d\x7c\xc1\x87\xf0\xc7\x38\xe3\x15\x7f\xe8\x1e\x6f\x08\xb7\xa9\x65\xad\x7b\x37\x9f\xc1\x6d\xb1\x65\xf1\x87\xee\x75\x24\x6b\x44\x43\xd3\x3f\x66\x37\x7d\x76\xcd\xc3\xaa\xc2\xdd\x4e\x1c\xe7\x2d\x8b\x0f\x74\xef\x2f\x6c\x80\x1b\xc1\xbb\xc7\xec\xe6\xc3\x04\xfd\x6c\x04\xe9\xbe\xd5\x65\x3c\xe6\xa7\x24\xf5\x73\x8b\xef\xa1\x0a\x6e\x45\x7c\xa0\x9b\xdf\x12\xbe\xb3\x15\xed\xf7\x6e\x7a\xc6\x9d\xb1\x11\x82\x66\xcc\xe1\xfd\x38\xd8\x8f\x28\x0d\x6e\x75\x19\xe7\x7b\x9d\x2f\xc3\xeb\x8e\xcd\x70\x2b\x85\xfe\x0f\xf3\xd5\x01\x3f\x29\xa2\x93\xe1\xf1\x0e\xe8\xa1\xe8\x7c\x19\xeb\x67\xfc\x01\x87\x7e\x86\xe7\x01\x5b\xe2\x46\x08\x9a\x5b\x9d\xc6\xbf\xe0\xea\x8f\xe9\x64\xb0\xaf\x8b\xce\x9d\xe1\x7d\x3d\x34\x0f\x3a\x5f\x86\xe7\x61\xc0\x6f\xb1\x39\x1f\x73\x9a\x1e\x30\x1a\x6e\x65\xe4\x7f\xbe\x7e\xdd\xaf\x87\xff\x8c\x6e\x0d\x37\xf7\x18\x0f\xb2\x2b\x62\x1f\xd3\xdb\x9e\x44\x14\x8d\x58\xdd\xc3\xb9\xe6\x86\x72\xc7\xb5\x22\x72\x99\x5e\x66\x52\x39\xb7\xfa\x61\x78\xd3\xc7\x2d\x2a\xe1\x86\x29\xf9\x98\xcb\xc3\x40\x95\xdb\xaa\xae\x17\xcb\xcb\x49\x48\x9b\xc6\xb3\xfc\x70\xee\xb8\x31\xb1\x11\x6e\x55\x6c\x62\x79\x1b\x87\x43\xe5\xc5\xf9\x5d\xa9\x6c\x87\xfc\x22\x1b\x29\x32\x6f\x75\x1b\x0f\x72\xa9\xba\x5e\x2c\xb3\x5d\x42\xda\x34\x62\x63\xdf\xaa\xdb\x51\xff\x75\x3c\x2c\x93\x2f\x3a\x5c\x25\x79\x19\x73\x79\x7b\x93\x3b\xae\x91\x1b\xf3\x56\xdd\xff\xbb\xbd\x3b\x26\xdd\x63\xee\x29\xee\x87\x0a\xb7\x55\x51\xcb\xf6\xee\x26\x62\x4e\xab\x8d\xe9\xdf\xde\xc5\x5b\xd3\xd0\x8b\xf0\x62\x9c\xe1\xf6\x26\x7c\x18\x7f\xc0\x59\xf6\xed\xd3\x07\x19\xb9\x61\x4a\x7e\xab\x6e\x87\xdb\x42\x1d\xfe\x7e\x1a\x67\x59\x74\x4b\xd9\xbe\x2d\x60\x0a\xac\xac\x2d\xb7\xea\xdf\x8d\x77\xdb\x9e\xd4\x8c\x89\x1a\x11\xb9\x55\x5d\x52\x8e\x87\x4b\xde\x8a\x56\x45\x55\xc7\xd4\x70\xa0\xda\xf6\x61\x93\x1d\x0f\x97\xfc\x14\xad\xe9\x32\x72\xbc\x89\x11\x9d\x5b\x13\x13\x3a\x3e\x94\x08\xbc\xd3\xb0\x30\x1f\xf6\xd2\x1c\xf2\xd2\x6c\x4d\xd4\x76\xbc\x29\x11\x91\x5b\xd3\xa5\xe3\xb8\xff\x61\xc2\xdb\x7a\x31\xfc\x18\x7e\xf9\x9c\xe6\xbf\xe6\x59\x28\x64\x5b\x13\xcf\xfa\x9a\x47\xe3\xd4\xd9\x78\xc5\x1f\x76\xea\x1c\x78\x71\x26\xc5\x7f\xba\xd5\x69\x3c\x36\x63\xab\x55\xb8\xbf\xe7\x0c\x6e\x22\xce\xaf\x57\x91\x38\x3d\xad\x89\x38\xe5\xec\x79\x0b\x41\xb4\x4d\x67\xde\xd7\xbc\xe9\x0b\x8f\x6e\x0d\xea\xf9\xfa\x6c\xc6\x12\xb8\x91\xa8\x73\x38\x93\xdd\x50\x26\xbb\xd6\x74\x46\xfe\x4c\xcd\x3f\xa8\xb9\x89\x97\xfd\x7c\x36\xff\xb4\x8c\x3a\x3b\x7f\xde\xd4\x28\x64\x1b\x06\xe6\x63\xfe\xbc\xbc\x3f\x2d\xaf\xa8\xf3\xe7\x79\x08\x99\x38\x35\x0c\xcc\xc7\xfc\x99\x17\xff\xb4\xbc\x13\x72\xfb\x79\xf3\xfe\xd8\xbc\x4d\x77\x9a\xc7\x77\x56\x44\xde\xd6\x75\x86\x3d\x26\x43\x2c\x78\x5b\xd7\x9d\xe6\xb1\x0c\xf3\xb0\x5e\x5d\x64\xf5\x78\xbd\x22\xb8\xe8\xc5\xe9\xff\xe3\x3b\x3d\xaa\xd7\xd6\xc5\xdc\x1e\xef\x46\x12\x4d\x34\x2c\xc9\xc7\x7c\x7c\x47\x7c\xd8\xa5\x5d\x67\xde\xe3\x5d\x8a\x25\x70\xeb\xa2\xab\xc7\xeb\xfb\xb0\x8e\x5d\x77\x5c\xe9\x58\x6f\x81\x7e\x16\xfd\xae\xef\x22\x38\x8d\xb6\xae\x3b\x93\x74\xac\xb7\x10\xf4\xd9\xc5\x0c\x1f\xaf\x2f\xb2\x6e\xeb\x3a\x23\xa5\x63\x1d\xca\xb8\xd7\xba\xce\xc2\xd7\xf4\x8c\x33\x69\x23\x12\xcc\x70\xc6\xbd\x5b\xa0\x9f\xe2\x62\xaf\xb7\xa9\x64\xd7\x2e\x2e\xf6\x7a\x1d\x31\x31\x6e\x5d\xdc\xea\xf5\x36\xc5\x69\xb4\x11\xf1\xe5\x56\x45\x3f\x38\x8d\xb6\xae\xbb\xd4\xeb\x75\x27\xaf\x77\xeb\xdc\x99\x96\x65\xd7\xf5\x41\x66\xc3\xa2\xfb\x56\x87\x71\xfa\x09\xfb\x59\x8a\xc4\x73\x0b\xac\x0b\x77\x20\x3b\x93\xde\x42\xcc\x1b\xa1\xb8\x6f\xf5\x2b\x9c\xf5\x22\xf4\xca\xad\x16\xe3\x15\x7c\x82\x1f\xb7\x13\x3a\xe2\x46\x28\x95\x61\xe7\xd0\x81\x37\xe8\xc5\xd5\x1f\x9e\x70\x6e\x21\xfa\x33\x0a\xed\xcb\x39\xf4\x16\x36\x78\x13\xae\xfe\x48\xb6\x24\x64\xca\xb0\xb3\xe7\x2d\xf0\xbb\xac\xcb\x4a\x92\xa5\x57\x82\xae\x30\xcd\xbe\xd5\x63\x3c\xe6\x9f\xcc\x98\xb7\xfa\x18\x7f\xc1\xd5\x8e\xc7\x85\x13\x68\x1b\xac\xa3\x9d\x40\x6f\x21\xd6\x65\xb0\xdf\xed\xed\x39\xf0\xf6\xec\xd8\x19\xdd\x5a\x35\x1c\x64\x3b\xa6\xf1\xaf\x71\x9a\xe1\x6e\xb2\xb2\x97\x45\x22\x21\x96\xdc\xb7\xfa\x0a\x67\xb8\xf3\xa3\x76\x3c\x5c\x6c\x95\x1b\x0f\xcb\x03\xdf\x4f\x0a\x2b\xba\xa3\xe6\x45\x85\x2b\x33\xda\xf9\xf9\x0b\x3b\xfb\xb1\xb2\x27\x83\x24\xe1\x6d\x26\x0d\x5a\x37\x85\x45\xa8\xd4\xc6\xf3\xf2\xad\x3e\xc6\xf9\x19\xce\x9e\x55\x3c\x49\xf8\x9a\xb6\x09\x33\x58\x16\x48\x97\x04\xd2\x59\x84\x2f\x7f\xcf\x55\x61\xc6\x7b\xdf\xb0\x6f\xea\x20\x99\xe1\xc5\xe9\x8f\x7c\x50\x07\x4e\xa7\xa9\xf1\x8c\x3c\x96\x05\xd2\x25\x81\x94\x67\xe1\x61\x5f\xd3\x5b\xe0\x77\xb9\x72\x2c\x0b\x98\xf2\x35\x6d\xc4\x2f\xb9\xd5\x66\xfc\x80\xd3\xcf\xba\xb4\x0a\x64\xef\x6e\x73\x1a\xff\x19\xa7\x7d\xee\x0a\xab\x9a\x78\xab\x56\x53\x9b\x58\xce\xa4\xb7\x40\x3b\xda\xc4\x72\x1a\x1d\x72\x1a\x6d\x3c\xf3\x8e\xd5\x74\x08\xc8\x69\xb4\x61\xe9\x3d\xec\x34\x3a\xe4\x34\xda\x96\xa8\xb1\xe9\x2e\x82\xf7\xe8\xc5\xf9\xdd\xe6\x79\x26\x4b\x44\x5b\x22\x97\xe6\x79\x46\xf9\xda\x78\xcf\xbd\x55\xad\xaf\x04\xcc\xa5\xf5\x6d\x66\x12\x64\x8f\x68\xbc\xe7\x0e\x3b\x8d\x0e\x65\x1f\x6c\x58\x80\xdf\xaa\xc6\x25\xc1\x13\x0b\xf0\xb1\xa4\x4c\xbd\x85\x98\x37\xde\x73\x87\x9d\x46\x6f\x21\x83\x0f\xe1\xd5\x78\xec\x82\x85\x20\x63\xa7\xd1\x21\xa7\xd1\x86\x69\xf8\x70\x5a\xc2\xa1\xb4\x84\x0d\xd3\xf0\xb1\x14\xff\xe6\x16\x82\x9e\x89\x5c\x32\x56\xf7\xba\x90\xd5\xbb\x2d\x31\x09\x69\x41\x6f\xa1\xfe\xf7\xdf\x43\xef\x8b\xcb\x72\xe1\x42\x09\xda\x96\xc8\xc7\x72\xa1\x7c\x49\x1b\x01\x4d\x86\xd3\x0c\xde\x02\xd3\xc0\x19\x40\x76\x41\x0a\x74\x87\xbb\xc2\x52\x28\xd3\x21\x5f\xd2\xb6\xb8\xc9\xae\x61\xde\x4d\x98\x9b\xb6\xc4\x3c\x86\x99\xc7\xd0\x72\x89\x0c\x87\xa7\x7f\xc0\x0d\x88\xeb\x3d\xec\x1c\x3a\x48\x1c\x98\x3a\x16\xe3\x63\x59\xce\xc3\x4b\xf4\xe2\xfa\x5d\x8f\x0b\x39\xaf\x13\xb8\xe4\x56\x7f\xc6\x1f\x70\xc8\x61\x9a\x3c\x51\x82\xf6\x8f\xc8\xd3\x82\xdc\x42\x90\xeb\x9e\x4f\x0b\x72\x2b\x6c\x82\x2f\x3e\x84\x7f\x8d\xff\x02\xe7\xce\xb1\xa6\x79\x3a\x82\x5c\xff\x88\x0c\xa7\xd9\x18\xc9\xc1\xfb\x47\x64\x38\xbd\x5e\x28\x3b\xfb\x47\x67\x92\x42\x9c\xde\xc2\x06\x67\xbd\x96\xc9\x8d\x3c\x0d\x5d\xef\xbe\x6b\x79\x5c\x91\xb0\x61\x75\x51\xe7\x9a\xdb\x30\xd3\xc3\x15\x65\x59\x1e\x54\x62\xc2\xfe\x11\x17\x93\xb2\x73\x28\x01\x61\xd7\xb3\xef\x5a\xe6\x1a\xa4\x6f\xe8\x1f\x51\xad\x42\x99\x0e\x12\x10\xae\x2e\x22\xb7\xd8\xb7\x96\x46\x25\xa6\xb7\x3c\xaa\xa5\x51\x89\xe9\x6d\x53\x21\x2e\xa0\xfd\xa3\x13\x6f\x9b\x69\x84\x72\x33\x75\xbd\x06\xaf\xed\x4d\x84\x29\x6e\xff\x88\x9a\xb7\x6e\x94\x72\x01\xed\x1f\x31\xc9\x6d\x26\x89\x7c\xd7\xf5\x7a\xbc\x2c\xdf\x29\x61\x61\xff\xe8\x88\xdc\xde\x8c\x21\xd0\x5d\x9c\xe9\xd9\x7a\x0d\x96\x4b\x67\xc7\x20\x7d\xd8\xa5\x73\x90\xa1\x30\x75\xbd\xfa\xda\xa5\xf3\x16\x06\xb8\xfa\xe9\xc3\x6b\x43\x9d\x49\xd4\x79\x3c\x0f\x84\xcf\xe9\x49\x37\x20\x65\x7b\x18\x4a\x58\xd8\xf5\x1a\xbc\x8e\x77\x29\x02\x5e\x4f\xba\x19\x1d\x2f\x23\x91\x55\x7b\xd2\xe1\x78\x4c\xb5\x08\x78\x5d\xaf\xc1\xb8\x6c\x52\x10\xce\xfc\x58\x90\x5b\x47\xfd\xe7\x19\xc0\xbe\x98\x43\xbe\x98\x3d\xe9\x70\xfc\xfa\x26\x85\x69\x6d\xc7\x22\xfd\x56\x9b\xf1\x0e\x3e\x84\x0f\xe3\xf3\xbf\xff\xee\x83\x0b\xb1\x5d\x34\x07\xbe\x97\xa9\x27\x51\xe1\xd7\xcb\x42\x60\xd5\x9e\xc4\x23\x2d\xb0\xc9\x15\xb3\xeb\x91\x78\x7d\x7d\xe5\x20\xb0\x6a\x27\x8c\xf8\x58\x5f\x9f\xc9\xa1\xf3\xbc\xb8\xba\x69\xa6\x81\xcb\x65\x4f\x62\x6e\x3f\x6f\xba\x9f\xba\xaf\x33\xf6\x67\x1e\x1f\x92\xd8\xc5\x99\xb6\x9f\xcf\xb4\x30\x8d\xed\x18\x18\x0c\x27\x06\x1c\x4a\x00\xd8\x93\x78\xde\xcf\xab\x42\x10\x9e\x9e\x45\x25\x3f\xf3\x4e\xe2\xb0\xf6\x2c\xde\xf6\xd3\x5b\xe1\xfa\xc5\x91\xd0\x49\x5f\x79\xab\xea\xfe\x0f\x1e\x99\x45\x3d\x3f\xaf\x16\xb9\x1e\x7a\xce\x7f\x61\x67\x3f\x96\xc5\x3c\x39\x6a\xf6\xac\x6b\xf4\x63\x56\x83\x66\xb3\x67\xb1\x32\x8b\x73\x0b\x71\xae\x67\xdd\xa4\x14\xbb\xe7\x16\x06\xf8\x14\xbe\x8c\x33\x6c\xf1\xa0\xc7\xc3\x0e\xf9\xad\x0f\x2d\x9a\xa5\xb6\xf5\xc4\x01\xdf\x33\x52\xf9\x7a\xcc\x71\xc9\x34\xd1\x33\x6f\x40\xf6\xf7\x1c\xf2\xf7\xec\x59\xb7\xf4\xc7\x1c\x97\x3c\xe9\x3d\xeb\x96\xfe\x7a\xef\xbd\x2c\x72\x16\x6f\x7a\xbd\xc8\x48\x67\x5d\x2f\xd1\xeb\x35\x91\x86\xea\xf1\xe2\x4c\xcf\xbb\xfc\x3d\xab\x9c\x45\x2c\xaf\x2f\x64\x2f\x2c\x14\x73\xf4\xe1\x34\x80\xb7\x40\x3f\x75\xf1\x7a\x25\x75\xe2\xd9\x99\x7a\xd1\x49\xf8\x9a\x87\x62\xe9\xda\x0b\xd2\x93\xd3\xfd\x0d\xf2\xfb\x5d\x7c\x08\xdf\xc6\x63\xb9\x4a\xf2\xf7\x8f\x70\x96\x8b\x20\x28\xc3\x69\xfd\x06\x9e\xa0\xbd\xf3\xd0\xbd\x2d\x9c\xed\xcf\x1d\x47\x97\x2c\x87\x37\x28\x85\xe8\xbd\xde\x9b\xf7\x67\xfb\x57\x37\xbf\xca\x39\xb8\x15\xd0\xe7\x16\x62\xb5\xf4\x0e\xbd\x2d\xcb\x29\xa9\x5f\x27\x34\xca\xad\x36\xe3\x1d\x5c\xbd\xd4\x2c\xe0\x17\xda\x71\x16\x1e\x5b\x59\xdf\x6f\x81\xee\xf0\x04\xb4\x93\x16\x71\x27\x4d\x02\xb4\xb6\x15\x24\xf5\x16\x82\xa8\xf4\x0c\x6d\xf7\xd2\x5b\x18\xb7\x79\x76\xd2\x96\x79\xed\x2d\x30\xf7\xcd\xb8\x46\x85\x79\x6d\xc7\xd4\xfd\x56\x9b\xf1\x20\x7d\x4c\xdd\xc7\x56\xf8\x9f\x41\xce\xbf\x8b\xeb\xfb\xe3\xf6\xe1\xab\x44\x44\x19\x64\xfe\xa3\xc0\xac\xf1\xae\xb8\x2d\xf9\x91\x0b\x30\x75\x02\xa4\xdf\xea\x36\x4e\x3b\x30\xa6\x6d\x2d\x21\x7e\xac\xa9\x93\x12\x72\xd8\x7d\x75\xc8\x7d\xb5\x17\x2d\xba\xf2\x5a\xdc\xc2\x03\xae\xdf\xf5\xea\xe2\x8e\xda\xb1\x3a\xbf\xd5\xc7\xf8\x0b\xae\xef\xbd\x8a\xd8\xd7\x2a\x14\xc8\x70\x6a\xc0\xa1\xd4\x80\xbd\x72\xbb\xda\xb2\xaf\x1d\x72\x53\xed\x35\xfb\xfb\xaf\x71\xda\x17\xb5\xc9\xbe\x76\xe0\xaf\x7a\x71\xb5\xe3\x65\x24\xdf\x45\xaf\xa2\x36\xb9\xaf\x0e\xb9\xa9\xf6\x5a\xd4\x8e\x44\x5a\xb9\xa9\x76\x3d\x6f\xef\x22\x8e\xbb\x09\x30\xd4\x89\x88\x32\xb6\x02\x0c\xdd\xc2\x03\xae\xdf\xf5\xfa\x92\xa1\xbe\xeb\x79\x7b\x5b\x0b\x89\x1f\x6b\xea\x7a\xde\xde\x16\x06\x37\x81\x87\xba\xde\xb1\x9d\x7a\x70\x28\xf5\x60\xd7\x3b\xb6\x53\x0f\x0e\xb9\xbb\x76\xac\xd7\x87\xdd\x5d\x87\xdc\x5d\x3b\x21\x54\x86\xdd\x5d\x6f\xe1\x07\x5e\x85\x8b\x1e\xd0\x4e\x76\xcc\xd7\x6f\xb5\x1a\x67\xde\xb8\x47\xed\xaa\x97\x27\x72\x0d\xa6\x5e\x45\x6f\xb2\xd0\x1d\xf2\x83\xed\xe4\xfb\xbe\xd5\x61\x9c\x71\x89\xde\xaa\xe7\x0d\x4b\x5c\x99\xd9\x0f\xa7\x24\x1c\xf2\x83\xed\x55\xf4\x56\x3d\x6f\x95\xf9\xd1\x43\xf6\x6e\x1e\x6f\xe3\x36\xdc\xc4\xf3\x9a\xe9\x1f\xbf\xd6\xde\xb4\x7f\x9b\xc7\xd5\xb8\x07\xb6\x9c\x84\x4f\xe3\xb4\x2f\xba\x6a\xa6\x93\xf0\x6b\xed\xba\xde\x3a\x53\xe1\x50\xa6\xc2\xae\x07\x6b\xbb\xaf\xde\xc2\x17\x9c\x65\x6f\x26\x07\x0c\x77\x7b\xe3\x32\xbf\xad\xcc\x94\x3b\x6a\x27\x00\xfb\xd8\xdd\xc3\x42\x69\xd9\xf5\x30\xbd\xbb\x97\x11\xa5\x65\xd7\xc3\xb4\x33\x18\x0e\xf9\xa9\x76\x02\xb0\x8f\x6d\xa5\x25\x0e\xa8\x17\x6f\xc2\xfd\x3d\xf7\xa5\xd6\x85\xeb\x1a\x48\x0a\xc2\xd4\xf5\x70\xbc\xfb\xfe\xf3\xfd\x0f\x9c\x65\xe9\x3a\xa2\x94\x43\xb0\x37\xae\xc9\xdb\xca\x46\xe5\x0a\xec\x4d\xcb\xae\x00\x45\xb7\xc0\xf7\xcb\xdf\x8b\x9c\xb1\xac\xed\x64\x90\x1c\x7b\x98\x3b\x0f\xb8\x73\xd7\xb2\x5b\x09\xb9\x07\x37\x0a\x0c\xb9\x6f\x75\x19\x7f\xc0\x99\xe7\xe1\x43\x8a\x58\xab\xbd\x8b\xfd\x0c\x1f\x3a\x03\xb6\x24\x3d\xcb\x1e\x3e\x5c\x06\x57\x04\x0c\xb9\x07\xa9\x03\x29\xbc\xe0\x7c\x3f\x3d\x5e\x94\x8a\xbd\x63\xbc\xb3\xad\x35\x24\x9b\xe0\xc5\xff\xc2\xce\xfe\x7e\xad\xdd\x84\x41\x6e\xd7\x7b\xf3\x9e\x7a\x12\x91\x5b\x6a\xd7\xbb\xf2\x9e\xa6\x5e\x0c\x75\x3b\x76\xdb\x63\x4f\x2f\xb3\x64\x54\x09\x85\xce\x31\x38\x94\x63\xb0\x63\xb7\x3d\xec\xaf\x7a\x0b\x7c\x2f\x32\x52\x7a\x8e\xa1\x1c\x83\x5d\xef\xcd\x7b\x7a\xf9\x89\xfd\xda\x31\xc4\x1e\x7b\xf9\x10\x96\x8c\xda\xc5\x55\x96\xa7\x43\xc2\xa8\xde\x9b\xf7\xf2\x78\x09\xf2\xda\x31\xac\xbe\xd5\x6c\x9c\xf6\x51\xae\xee\xe5\xf1\xae\xad\xef\xd9\x06\x56\x5a\x92\x3c\x30\xf5\x2e\xee\x21\xcb\xdb\x5b\x88\x65\x1b\x3a\xad\x96\x97\x9f\x00\x46\x9d\x08\x22\xc3\x39\x03\x07\x39\x03\xc7\xc7\xc3\xf2\x6e\x25\x65\x60\x1f\xba\x48\x59\x48\xdd\x9b\xdd\x37\x74\x58\x6d\x53\xb5\x84\x51\xec\xa7\x87\x53\x09\xde\x42\x05\x1f\xc2\xdd\x0e\xb2\xf7\x10\xf7\xd8\x5e\x2e\x0c\x6f\xfb\xd0\x61\x65\xa1\x53\x7e\x9e\x7d\xe8\xae\xb3\xbd\x2c\x9b\x8b\xe3\x10\x99\x58\xa9\x88\xc3\xe7\xc5\x9b\xf0\x63\x9c\x71\x21\x85\xd9\xcf\x73\x90\x6b\x30\xf5\x21\xee\x77\x7c\x08\x13\x5f\xa8\x0f\x1d\x3e\xc7\x17\x47\xe2\x0b\x75\x3d\x5b\x6f\x6b\x15\xb7\x84\xce\x81\xa9\xce\x3e\x1e\xd7\x81\x0c\x87\x2e\x3b\xc7\x87\xc6\x81\x0b\x0d\x91\xc9\x31\x17\x3a\x70\x57\x0c\xa5\xc7\x3e\xe6\xae\x47\xe3\x15\x17\x3a\x1e\x2f\xd9\xf0\xbb\xde\xb3\xf7\xf1\x78\xc9\x86\xdf\x87\xb8\xd3\xd7\xe3\x25\x90\x50\x1f\x3a\x94\xbe\xbe\x58\x87\x3e\x72\x64\x75\xff\xeb\x69\xc0\x4e\xb7\x4f\x31\xa7\xaf\xa9\x96\x38\x42\x7d\x8a\x09\x7d\xcd\xb4\x24\xd4\x12\xc9\xe4\x56\xdd\x0e\xd3\x33\xc5\x9c\xbe\x9e\x9e\x2f\x67\xaa\x1e\xbe\xb7\xb5\x8d\x1b\x6d\x63\x27\x16\xe4\xad\x56\xe3\xc1\xcc\xf4\x20\x6e\xf7\xcf\x81\xbf\x67\xea\x53\x77\x20\xb9\x73\xde\x02\xfd\x47\xb6\xdf\x3f\xdf\x65\xd1\x12\xf6\xa9\xbb\xce\xcf\xbb\x8b\x90\xb0\x7d\x8a\x9b\xfc\x7c\x68\xfc\xe0\x1a\x53\xdc\xe4\xe7\x7e\xfe\xd4\x4f\xdd\x89\xad\x55\xdc\x68\x15\x3b\x21\x51\xc6\x56\x48\xd8\x81\x5f\x67\xea\x53\x77\x14\x8b\xa1\xfb\x51\xff\x75\x57\xb6\x18\xba\x49\x53\xdf\xb1\x93\x1e\xf6\xf3\xbc\x05\xfa\x2f\xf2\x79\x7c\x47\x7c\xb4\x2e\xbc\x01\xed\xc7\xdc\x04\xcb\xda\x3e\x45\x3e\x8f\xe7\x01\xcf\xcd\x4e\xa0\xef\xb1\x2d\x87\xe2\xaa\x99\xfa\xc4\x42\x68\x3f\xdb\xfd\xb9\xf4\x3b\x8a\x24\x12\x8b\xa7\x78\x6a\xde\xcf\xd5\xbc\xaf\x3a\x0f\xcc\x87\x88\x2b\xb7\xda\x8c\xb3\x8c\x62\x62\x8f\xcf\x24\x94\x8a\x7d\xa9\xfd\xd7\x77\x05\x22\xd7\xf6\xa5\x2b\xf7\xeb\xe5\xc5\x80\xb6\xeb\xbd\xdd\x89\x10\x6f\x61\x82\xeb\x7b\x1f\x16\x64\x0f\xe9\x2b\xfb\x7b\xf5\x1f\x87\xce\xbe\x74\x16\xca\x50\xf6\x16\xf8\x5d\x9d\x85\xaf\x45\x9e\x08\x6c\x34\x8a\x9b\xf7\xa6\x26\xcc\x51\xd7\x33\xfc\x7e\xbd\xa9\xb1\x9f\xed\x4b\x72\xdf\x6b\xea\x21\xa9\x48\x5f\x92\xfb\x2c\x15\xe3\x08\x7a\x71\xb5\x6f\x9e\xfd\x22\x39\x2d\x6e\xee\x47\xe1\x8f\x6e\x81\xef\xa1\xda\xa3\x24\xf8\xb7\x10\xd4\x43\x1c\xf2\x71\x94\x25\xe4\x16\x1a\xb8\xbe\x17\x73\x3b\x1f\x76\x29\xf6\xd4\xe3\xd8\x7e\xf6\x10\xd0\xb6\xeb\xbd\xdd\xf9\x1d\x6f\x61\x81\x57\xe1\x5f\xe1\x2c\x2f\x11\x5a\x86\x1d\x46\x87\x1c\x46\xfb\xe2\x75\xe0\x28\xeb\xc7\x38\x12\x5c\x89\xc4\x72\xab\x8f\xf0\xa0\xda\x81\x5d\xf3\x20\xed\x22\x85\x27\x70\xa4\xfa\x93\xc4\x4d\xe4\x00\x3a\xf4\x8e\x6d\x07\xd0\x81\xc7\x67\x1a\x1f\x0e\x2f\x1c\x3c\xa3\x10\x12\xcc\x90\x9d\xf2\x49\xc7\xdf\xc7\xd5\x68\x90\xff\x72\x90\xa6\x91\xc2\x1b\x38\xeb\x75\x2c\xa1\x1e\xec\x58\xc7\x07\x2e\x63\x0f\xd0\x71\x90\x44\x87\xec\x91\x49\xc7\x48\xa1\x06\xae\x75\x51\x20\xa5\x5b\x60\xbc\x4d\xdf\x6f\xb7\xbf\xe9\x27\xdc\xe4\x28\x12\xed\x2d\xac\xc0\xfb\xdf\xd8\x79\x9d\x2c\x72\x3c\xe4\xbc\xf7\xd9\x6f\xc7\xd1\x21\xc7\xd1\x21\x73\x65\x3b\x8e\xde\x02\xc3\x83\x09\x9d\x7c\x3c\xbc\x43\x77\xb5\xcc\x59\x4c\xee\x44\x1a\x90\x21\x39\xde\xf9\x1d\x6f\x81\x51\x73\xb4\x39\x8f\xe3\xc0\xb1\x74\x14\x2e\x46\xa7\x78\xf1\x8b\x26\x89\x27\x26\xa7\x71\xbc\x05\x7e\x95\x13\xec\x14\x2f\x3e\x62\xed\x20\x5e\xca\xad\x2e\xe3\x41\x2c\x24\xc1\x1c\xa7\xb8\x97\x11\x56\x29\x0d\xe2\xa2\x8c\xa3\x78\xb7\x03\x8f\xcf\x95\xb5\x66\xd5\xdd\xc1\xf6\x75\x24\x4e\xa4\x63\xdb\xd7\x83\x74\x39\x08\xa3\x32\x8e\x55\x93\x38\x76\x5e\x1c\x5a\xa9\xe2\xac\xa7\xd2\x4d\xd9\x1e\xdb\xcf\x73\x90\x3f\x31\x0d\x82\x79\x0f\xfb\x79\xde\x02\xdd\x17\xcd\x55\x2f\x0a\xfe\x9c\x23\x15\xb5\x73\xfc\xbb\x87\xef\x39\xd9\x4e\xf3\xb0\x48\x60\x3f\x64\xab\xec\xf4\x88\xb7\xf0\x0d\x5c\xbc\xc0\x36\xae\x27\x72\x71\xa4\x91\x44\x0c\x16\x0b\xe5\xff\x39\xf4\xdc\x7c\x2c\x16\xca\xcf\x73\xe8\xb9\xf9\xd8\xf6\x15\x87\xcf\x34\x92\x56\xdd\xb6\xaf\x38\x7c\x5e\x3c\x0b\xdf\xc6\x99\x37\xa4\xec\x63\x15\x24\xf9\x13\xd3\x48\xe2\x11\xdd\x7b\x0c\x55\xe3\xd0\x7b\xf3\xb1\x58\x78\x3a\xeb\x92\xc5\x3b\x94\xd8\xfe\x16\x0e\x78\x15\xae\x7e\x76\xf6\x98\x6c\x92\x4f\x37\xef\x43\x8c\x1c\xd2\xf4\x9f\x2e\x5e\x7f\x50\x59\x0e\x82\x6d\x8f\xd3\xcd\x3b\xd0\x4d\x0e\xd2\x53\x0e\xa7\x53\x1c\x72\xc4\x1c\x7a\x68\x3e\x43\x5a\x03\xf2\x2a\xa6\x41\xb0\xed\x61\x07\xcd\x5b\x58\xe0\x6e\x47\xf4\x80\x18\x39\xb2\xe8\x41\x61\x8a\x6e\x81\x76\x74\x36\xd8\x66\x55\x0e\x9a\x43\x0f\xd0\x67\x78\x5c\x43\xe3\xe2\x42\x7c\x14\xe7\xf6\x16\x98\x9f\xa6\x76\xf4\x9a\x71\x06\x74\x98\xc5\xb3\x86\x2e\xa0\xe4\x5b\xbc\xb8\xda\xf1\xf6\x42\x8c\x1c\xb2\x91\xb6\xe3\xe6\x2d\x30\x3f\x88\xe5\x67\x7a\x5c\xe8\x26\x47\xc6\xee\xc3\x8e\x9b\xb7\xc0\x3c\x73\xd3\x39\xd3\x3c\x11\xf9\x6e\x90\x16\x73\x1c\xcb\x77\x67\xb2\xbf\x64\xdb\xec\xb4\x8c\x43\x69\x19\x47\x16\xfd\x58\xee\x53\x5a\xc6\xa1\x97\xe9\xb3\xcc\xad\x16\xdc\x8a\xc0\x27\xb7\xaa\x76\x30\x32\x1d\x85\xab\xc8\x51\x4e\xf8\x81\x2b\x65\x1a\x45\xfc\x41\x81\x68\x87\x3c\x28\x87\xde\x8e\xcf\x32\xbd\xa1\x6c\x1c\x45\x67\x8f\xe5\xbb\x83\x7c\x37\x8a\xce\x1e\xcb\x71\x87\x64\x1d\xa3\x14\x7d\xef\x7d\x84\x91\xe9\x28\xe2\x03\xcb\xfb\x88\x40\x41\x43\x8f\xc1\xf6\xb8\x1c\x24\x62\xbc\x78\x17\x5e\x8c\x0f\x70\xda\xb1\x35\xe9\xd9\xec\xa3\xa2\x33\xc9\x82\xdc\xd9\xac\x4b\xd1\xfa\x6e\xf3\x3d\xac\x49\x87\x5e\x83\xed\x41\x39\xf0\xa0\xec\xe9\x23\x58\x72\xca\x21\xf5\xfb\xd0\x23\xb1\xd3\x2f\xde\x42\x8e\xcf\xa7\xe0\x63\xf8\x7b\x61\x9e\xbc\xce\x31\x31\x84\xb8\x65\x0d\x21\xce\x8e\x14\xde\x0b\x67\x7d\xed\xa9\x8c\xd8\x3b\xd6\x0f\xda\xb7\x71\x90\x3a\xb1\x9b\x31\x7f\x7d\xb9\x0a\x11\xa9\x27\xed\x4f\x6b\xf5\xf0\x6c\xec\xe4\x58\xb8\xb5\x63\x38\x3a\xa8\x55\xfa\x9a\xcb\x86\xe0\xd4\x13\x52\xac\x93\x25\xde\xc2\xb8\xb0\xd6\xc2\x2a\xbd\xf3\xbd\x9b\xae\x27\x6d\x35\x0b\x45\x27\x4c\x2d\xbb\x39\xf5\xd7\x53\x88\x42\xef\xcf\x79\x6b\x99\x88\x94\x89\x69\x10\x31\xfc\x56\xab\xf1\x76\x45\x3d\x44\x10\xbb\x34\x0e\x25\x50\x1c\xb2\xe6\xb6\x8f\xe2\x90\x8f\xe2\xd0\xb3\x39\x2e\x88\x14\x58\xe8\xa5\x9f\x35\x01\x63\x68\x39\xaa\x56\xfa\xe7\x5b\x07\x22\xd4\xd0\xb3\xb9\x7d\x11\x87\x7c\x11\x47\x15\xe3\xb5\x42\x0f\xa7\xc4\x8b\xd3\x9f\xc7\x1b\x13\x51\x69\xc8\xfa\xdb\x3e\x87\x83\x54\x89\x17\x67\x8e\x1f\x33\xc6\x87\x8d\x59\xb5\x52\x8f\xfb\xff\xc0\x18\xab\xd6\x44\x4e\x85\x43\x4e\x85\x83\xa0\x2c\xc3\xce\x83\xb7\xf0\x80\xff\x45\xe2\xc6\x61\xdf\xc2\x81\x6f\xe1\x1f\xfa\x7e\x24\x20\xe2\x4b\x98\x86\x1e\xc9\xed\x42\x38\x94\x6f\x71\x54\x2d\xb2\x25\x20\x7c\x09\xd3\xd0\xa3\xf7\x79\xbd\x6a\x2f\xc7\x84\x1e\xbd\xcf\xeb\xd9\x20\x74\xcd\x20\xed\xe8\xb0\x0b\xe1\x90\x0b\xe1\xa8\xba\xb2\xbf\xde\xce\x2f\xab\xa9\xc7\x70\xbb\x0a\xde\x02\xbf\xab\x63\xda\xa2\x0e\x09\x13\x2f\xde\x84\x6f\xe3\xac\x9a\xd8\xb2\x45\x9a\x43\x48\x9b\x51\xc5\x7e\x5f\x5f\x57\x5e\x88\x97\xf8\xe0\xd3\xae\x82\xb7\x10\xec\xa5\x05\x15\xcd\x29\x85\xde\x2d\xbc\xe0\x03\x9c\x63\xee\x16\x62\xde\xb0\xea\xbe\xd5\x9f\x71\xbe\x4f\x6a\x07\x2a\x9d\x4a\x70\x38\x5a\x52\x3b\x88\x0a\xb7\x70\x05\x5c\x6e\x73\x13\x07\xc1\x28\x70\x4a\x34\xe3\x48\x34\x53\xf9\x0d\x47\x8b\x5b\xde\xb4\xe7\xdf\x2d\x24\xf0\x25\xbc\x1a\x8f\x53\xb7\x95\x24\x7c\x18\x5f\xe0\x45\xb8\x86\x9b\x58\x46\xac\xc0\xa7\xf3\x18\xde\x42\x4c\x33\xd6\xde\xd3\x1e\x7e\x73\x4a\xd2\xe1\x51\xfd\x56\xfd\x3d\xc4\x8b\x95\xf6\x9c\x8a\x5d\x73\x0b\xb1\x09\x88\xb5\x32\xed\xb1\x37\x95\x98\x70\x60\x8d\x3d\xa7\x62\xd7\xcc\x49\x8c\x9a\xd1\x82\xac\x6e\xb5\x1a\x67\x5c\x43\xdf\x23\xa1\xdc\x02\xfd\x09\xf2\x99\x53\xba\xb2\x29\x4f\xbb\x81\x35\xf6\xad\x4e\xe3\xcc\xc3\xa2\xfd\xe2\xf9\x29\x30\x27\xd2\x8d\xde\xaa\xc6\x5b\xf4\xbb\x22\x9f\xe2\x79\x20\xd7\xfb\xe8\x22\x13\x25\x02\x9c\xf2\xa8\x1b\xfd\xa3\xef\xb7\xdb\xbf\xf4\xdb\xb1\xf1\x9f\x76\x90\x9b\x72\x90\x1b\x5d\x54\x52\xbd\xbc\xa4\x68\x1f\x18\x69\xdf\x6a\x31\x1e\x54\xd5\x45\x26\xd5\xdd\xc7\xa1\x6e\x60\xbc\x3d\xed\x50\x37\x95\x37\x70\x74\x91\x4f\xf5\x34\x87\xd4\xd1\x89\xd4\x33\xa7\x62\xc7\x4c\xf2\x04\xa6\x41\x14\xf0\x5b\xd5\x68\x49\xb9\x3e\x88\xa5\x72\xab\x6e\x86\x55\xe7\xcd\x7c\x92\x15\x90\x42\x03\x57\xfb\xa6\x06\xcc\x20\x07\xaa\xa0\x69\x7f\xba\x5b\xe0\x7b\x51\x4f\x5b\x1a\x16\xe6\x8b\x03\x5b\xec\x5b\x5d\xc6\x63\x36\x5b\x15\x7c\x0c\x33\x9b\x22\x9e\xe6\x45\x41\xd3\x34\x08\xde\x3d\xa7\x02\x9f\xde\x02\x8b\x25\xe2\x69\x26\x1e\xdc\xe6\x06\x4f\xe6\x13\x6f\x39\x0a\xbf\xf8\x59\x16\xa5\x7b\x51\xfa\xd4\xe7\x53\xf8\x31\xce\xec\x88\xa6\xfa\xd2\xcf\x12\xe0\x74\x74\xd1\x94\x92\xf4\xdd\x42\x74\x7f\x7c\xa0\x71\x79\xbb\xdd\x42\x06\x57\xfb\xbb\x1a\x8f\x59\x23\x44\xc9\x9c\xdd\x7b\xb1\x73\x93\x1b\x62\x49\x52\x34\xdd\x42\xd0\xfe\x10\xf1\x0c\xf3\x0c\x14\x4d\x83\x90\x23\x73\x0e\x13\x15\x8a\xa6\x31\x44\x0d\xca\x84\x71\x0b\x03\xbc\x0a\x3f\xc6\x63\xbc\x3c\x99\x4f\x7b\xa9\x4d\x25\xe9\x1b\x43\x3c\x63\xb8\xff\x04\x32\x1d\x84\x16\xb9\x55\xcd\xc3\x50\xff\xb5\xbc\xc3\x54\x15\x91\x4b\xab\x59\xd2\xf0\x6a\x0d\x0d\x4b\xcb\x32\xcd\x62\xe6\x65\x31\xa3\xa8\x97\x92\x03\x6e\xe1\xf7\xdf\x7f\x97\xd2\x8a\xe0\xc7\x30\x93\x2f\x52\x93\xba\x68\xca\x07\x6d\x8c\x01\x8d\x4c\x0f\x6a\xde\x8d\x3e\x30\x91\xb8\xb5\x6a\x98\xb9\x99\xcc\xd9\x74\xdf\x43\xdd\xa3\xcb\xef\x24\xaf\x1f\x85\x1f\x9f\x83\x2f\x6f\x08\x82\x8f\x0e\x5e\xd7\x6f\xb5\x19\x67\xca\x56\x13\xfe\x35\xce\xd4\x8b\xa4\x96\x97\x8a\x20\xa3\x83\xfc\x9a\xb7\x7a\x8c\xc7\xf7\x53\xa4\x23\x0b\xc5\x89\xeb\xda\xc5\xab\xf0\x65\x3c\x66\x81\xf0\x24\xb7\xea\xdf\xe5\x34\x9e\xe2\x6b\xcb\x6b\xb2\x60\xbf\xd8\x8f\x4f\x7b\xa6\x4d\x79\xa6\x8d\x99\x21\x85\xed\xf1\x4a\x68\x98\x3a\xce\xb6\xc7\x2b\xa1\x61\x8a\xf1\x48\xfb\x73\x0b\xb4\x2f\x06\xb6\x7d\x4a\xa3\xfd\x19\xe4\xd7\x9c\x73\x9b\x03\x6c\x8d\xab\xb2\xb5\xb6\xfb\xb9\xd5\xcf\xf6\xf9\xe7\x3b\xd7\x9c\x67\xaa\x39\x94\x3a\x83\x40\xe5\xd3\x2e\x64\xb7\xa0\xe6\xa6\xf0\x63\xfc\xfb\xdf\x7f\xcb\x3d\x7d\xce\x63\x36\x86\x81\xe1\x98\x3a\x1c\x65\x48\x38\x71\x0d\xbb\xf8\x10\xfe\x35\xce\xaa\x89\xbf\x1d\xf3\xb1\x03\x1f\x23\xe8\xce\xb4\x07\xd9\x94\x07\xd9\x98\x3a\x34\x8f\xa9\x0e\x57\xb1\x31\x45\xa4\x0a\x9a\x32\xf1\x0d\xbb\x38\xd4\xf5\x35\xc3\x42\x19\x33\x08\x76\x72\xab\xd5\x78\xbb\xc3\x2a\x43\xf0\x34\x1c\x1b\x72\xae\x2c\x5c\xa7\x05\x21\x3a\xc7\x14\x3f\xfc\x9a\xb8\xbe\x0c\x17\xe3\xf8\x39\x65\x48\x78\x0b\xd1\xcd\xa5\x2b\xd7\xcf\x1b\x9b\x50\x9c\x63\x89\x48\x7f\xe6\x63\xc4\x52\x19\x18\xc1\xdf\xea\x36\xfe\x80\xd3\xfd\x9f\xb7\x36\x96\x84\x63\xe9\x70\xfc\x79\x73\x84\x49\xa1\x9c\xf4\xe7\xfc\xf9\xb0\x8b\x4c\xed\xf2\x95\x9f\xe4\xf0\xa3\x10\xa3\x5a\x22\xd1\x9f\x6f\x6e\x3f\x6e\x6e\x4b\x1c\xe2\xe7\x23\xff\xa7\x51\x55\x46\xf5\x78\x0b\x48\xec\x58\xfa\xd9\xc7\x5c\xf8\x81\x0b\x2f\xb1\x8e\xc7\x34\x85\x3f\xd8\xc0\x64\x7e\xda\x1f\x6c\x4e\x22\x74\x8e\x25\x06\xf7\x78\xb1\xf0\x07\x1b\x4b\x34\xfb\x98\x08\xf1\x07\x1b\x4b\xec\xf3\xf1\x05\x96\x18\x27\x83\x64\x9f\xd3\xfe\x5d\xb7\x40\xff\xc5\x28\x1f\x73\xb8\x70\xf4\x6a\x49\x34\xf8\x78\xb8\x8f\x86\x2b\xfc\xf5\x16\x92\xbc\xb1\x44\x9b\x32\x14\xbc\x05\x16\x45\xb4\xf9\xfa\xc6\xf2\x6a\x11\x27\xc3\x7a\xcd\xe1\x5e\x68\x73\x89\x66\x5f\x0f\xeb\x85\x13\x2c\x71\xd0\xd7\x9c\x40\xf2\xc6\x12\x07\x7d\x7d\x91\x94\xbc\x41\x0e\xd0\xe9\x5c\x81\x13\x3f\xaf\x34\x51\x11\x4c\xbb\x77\xdd\xc2\x00\x57\x3b\xbe\x60\x86\x85\x61\xcb\xda\xea\xaf\x6f\x3e\xd8\x1b\xce\xcf\x1f\xfc\x31\xfe\x82\xc7\xb0\x96\x34\x2b\xb7\xb0\xc0\x27\xb8\xb6\xe2\x22\x32\xc9\xfc\x70\x86\xe3\x04\x46\xe1\x80\x0f\xe1\x8f\xf0\x60\x7c\x13\x8b\xf9\xb9\xa4\x71\x99\xa4\x10\x54\x54\xe2\xb9\x14\xb0\xe4\x16\x68\x06\x71\x60\x7d\x44\xfb\x0b\xf1\x64\x7e\x20\xe6\xa5\x3c\x14\xb7\x50\x03\xaf\xea\x3e\xe6\xa1\x13\x2f\xb2\x8b\xab\x9d\xe3\xf6\x0f\xed\x57\xfd\xee\x71\x37\x35\x0d\x8d\x61\x59\xcc\x59\x88\x33\x13\x45\xc6\xad\x0e\xe3\x13\x7c\x09\xdf\xc2\x17\xfd\xec\x6a\x47\xe7\xc5\x0a\x93\xc4\x8b\x4f\xe1\x1a\x57\x78\xa3\xa5\xf9\x19\x6a\x7f\xbb\xfd\x4d\xfb\x43\xed\xeb\xfc\x52\xaa\xc0\x49\xe0\x93\x69\xe7\xb1\xa9\x54\x81\x13\x93\xf6\x5b\x2d\xc6\xf9\x5d\x58\xde\xca\xee\x7f\x28\x74\x1a\x6f\xb8\xb7\xf6\x0a\x0e\xe9\x67\xa6\x0f\xab\xa5\x08\x9d\xb7\xd0\xc1\xd5\x8c\x8e\x3b\x39\x9b\x4d\x42\xb5\xcf\x95\x3d\xac\xcc\xb0\x08\xd5\x3e\xf1\x3d\xa3\x10\xc4\x9c\x44\x6d\xf9\xb8\xfb\xa1\xa7\x9a\xc4\x31\xb9\x55\xff\x2e\xcb\x88\x45\xfb\x5c\xd2\xb4\xdc\x42\x50\x15\x8f\x53\xb7\xda\x8c\x4f\xf0\x2e\xfc\x31\x1e\xd3\x96\xe0\x79\xab\x88\x27\xe1\x0f\x76\x71\xb5\xa3\x7b\xff\x8a\xc0\x25\x17\x57\x3b\xba\x74\x2d\x2c\x0e\x67\x12\x39\x58\xba\x52\xea\xc2\x49\x8c\xf5\xb9\xca\xf1\xf7\x90\x1b\xa6\xee\xd3\xee\x61\x53\x6e\x60\x53\xcc\x6a\x59\x2c\x22\xc7\x60\x9a\x98\xa8\xdf\x6a\x33\xce\xfc\xc3\x4c\x56\xd5\x49\xb7\x48\xb3\x3e\xd1\x19\xdc\xea\x31\xfe\x03\x6f\xe0\xde\x75\xc4\x25\x99\x59\xeb\x5b\xdd\x7f\x74\x33\x33\x7f\xd4\x4f\xdd\x84\x17\xe9\xd4\x27\xb6\xeb\xb7\xfa\x07\x8f\xf9\xcc\x89\xf6\x9b\x4e\xc0\x85\x1c\x35\x33\x27\xdd\x52\x86\x8a\x49\x72\xc1\x34\x33\xd7\xb4\xd5\x4c\x6f\xc4\x25\x99\xc4\x3d\xb9\xd5\x6d\x9c\xef\xc5\x35\xa4\xb3\x99\x72\x1b\x9b\x59\xeb\xae\xb4\xe9\x13\x3f\xb1\x8b\x4f\xe1\xfe\xdd\x30\x36\x99\x59\xeb\xde\x3c\x2e\xdc\xc6\x66\xae\x7f\x61\xd2\x75\xbf\xf6\xcf\x68\x3a\xc4\x3d\x2c\x97\xad\x90\xcb\xd2\xcc\xe2\x1e\xdd\xcb\x8c\x05\xe0\xc4\xa8\x7d\x3a\xe5\xe0\x94\xf7\xd8\xcc\xe2\x12\x16\xcc\x16\x19\x29\x26\x2f\x97\xb7\xda\x8c\xb3\x3c\x3c\x56\x38\x45\xe1\x54\x8a\xc2\x89\x51\xfb\x5c\x7d\xfb\x77\x61\xba\x59\xe4\x65\xc1\x6c\x61\x01\x38\x33\x67\x9b\x53\x17\x4e\xa5\x2e\x9c\x99\xb3\x0d\x2f\x33\x0a\x2c\x33\x8f\x15\x6b\x78\xfb\x21\x98\x4d\x62\xac\x4f\x32\x16\x52\x88\xe9\xc6\xa8\x7d\x2e\x65\x9e\xb8\x85\x0c\xae\xef\x57\x37\x7e\xc0\x97\x70\x2d\x0f\xb1\x35\x67\x11\x79\x8d\xed\xef\xe1\x8a\x45\x87\xcf\xf0\xb8\x70\x37\x9b\x85\xdb\xfe\x92\xea\x66\xca\xdd\x6c\x4a\x04\x5b\xc3\xeb\x85\x5b\xd9\x2c\x62\x13\xd3\xeb\x35\x59\x2f\x09\x55\x6b\xfa\x30\xc4\x02\x70\x16\x9d\x32\x16\xe5\x48\x4a\x78\x71\xb5\xe3\x75\x9c\xb0\x95\x22\x7a\x98\x66\x2b\x98\xf8\xcd\xd2\x9a\xf0\x63\xfc\x07\x3e\x85\x8b\xdc\x27\xe4\x5e\x44\x27\x53\x57\xa3\x85\x0a\x68\x16\xd1\xc9\xdc\xdb\x38\xf3\xdf\xd5\x7f\x93\x3b\xee\x69\xb3\x88\x4e\xa6\x2e\xb8\x6b\x6a\x1e\x78\x67\x58\x96\xfe\xd6\xd2\x3a\x8a\x0d\x2d\x8f\x0b\x7f\xb3\x59\x90\xf2\xd6\xf2\x3a\xa2\x1a\x9a\xa4\xd6\x9c\xf6\x37\x9b\xf2\x37\x9b\x55\xc7\xc3\x72\xff\x17\xfd\xaf\x5a\xf7\x25\xb9\x63\x21\xe5\xcd\xaa\xe3\x61\xe9\x71\x72\x91\x62\x62\x62\x60\x7e\xab\xee\x0f\xeb\x5b\xc5\x6e\xb6\x4f\x3d\x02\x87\xcc\xaa\xe3\x64\xfb\x18\x40\xd5\x33\x31\x18\xbf\xd5\x6e\xfc\x80\xab\x1d\xd3\xe1\x86\xdd\x13\x0f\x65\xda\x81\x6c\x2a\x87\xe0\xac\x5c\x7d\xd7\xf6\x2d\x85\x60\x99\xb3\xea\x78\xd8\xee\x27\x01\x42\x66\xd5\xba\x6f\xd3\x27\xb6\x7c\x93\xb7\xf0\x69\xc7\xb2\x5b\x88\x7d\x57\x3b\xed\x1f\x09\x1e\xca\x15\x38\x09\x70\x32\xd7\x31\x1d\x1e\xd8\x2b\x6f\xe1\x73\x1d\xaf\xd7\x61\xbd\xaa\xd6\xfd\x98\x9f\x1c\x2e\x71\x55\xfc\x41\x8e\x65\x53\x8e\x65\x93\xc0\x27\x73\x1d\xaf\xe3\x61\x3f\x56\xf1\x8d\xe3\x79\x20\x59\xe0\xac\xa2\x9f\x63\x3a\xc4\xc6\x6f\xd6\xa9\x76\xcc\x67\x42\x60\x94\x46\x7c\xda\x3f\x6d\xca\x3f\x6d\xd6\x65\xfc\x18\xa7\x3b\x3a\xc5\xbe\x3e\x65\x88\xc5\x39\x9b\x4e\xb1\xaf\x4f\x99\x2f\x64\xdb\x74\x8a\x7d\xbd\xec\xa4\x78\x98\x4d\xb7\x97\xaf\xb7\x17\x91\x43\xa6\x9e\xce\xd7\xd7\x6c\x86\x08\x21\x93\x40\x29\xd3\x8e\x68\xb7\xf0\x03\x5f\xc2\xdd\x0e\xe4\xd9\x74\x9b\xfa\x7a\xd9\x89\x1c\x32\xf5\x76\xbe\xbe\x1e\x2f\xa9\x1f\x66\xd3\x5d\xf9\xab\xab\xfb\xfa\x86\xc4\x36\xf5\xa6\xbe\xbe\x66\x57\x44\x1a\x99\x0d\x09\x6f\xfd\xbc\x4d\x71\x68\x9b\x4d\xec\xcd\xf2\xa6\x72\x08\xce\xa6\x53\xef\xe7\xd3\xf6\x07\xf9\xeb\x01\x6b\xfd\x7c\xda\x62\x2b\x38\x9b\xd8\xd5\xcf\xb7\x9d\x1f\xe4\xaf\x37\xf5\xf5\xf3\x6d\xe1\xa7\x79\xd0\xe5\xf7\xe7\xe5\xfd\x69\xbc\x5d\xdf\xfb\xd2\xfd\xd3\xb8\x44\x86\x3f\xb3\x9f\x10\x49\x87\x2f\x11\x16\x44\x71\x5d\xbb\x9f\x1b\xef\xc6\x07\xf8\x10\xbe\x8c\xab\xf9\x25\x5c\xcb\xfe\x68\xb8\x22\x37\x0b\xa2\x8b\xd8\x9d\xb3\xe9\x0e\xfd\xf8\x32\x85\x27\xdb\xd4\xd3\xfc\x7a\x4c\xfd\x04\x20\x99\x4d\xa7\x9d\x05\xd4\xf5\x70\xe9\x20\xb0\xca\xad\xba\x3f\x70\xb1\xae\x53\xf0\xf1\x25\x17\x57\xb6\xd9\x75\x0a\x3e\x96\x55\x08\x40\x32\xb1\x6b\xbf\x55\xf7\x1f\x2e\xd0\x35\x3f\xaf\xb9\x00\xb6\x82\x53\x6f\xf6\x78\xb6\x51\x88\xfe\xeb\x0d\x7e\xbd\x5e\x76\x6c\x08\xa7\xde\xe0\xd7\xeb\x79\x20\xa8\xe6\xec\x22\xc3\xd7\x5c\xe0\x85\x1c\xba\xc8\xea\x35\x39\xbc\x90\x43\xd7\x25\xcb\x92\xeb\x22\x29\xc4\xec\x22\xb7\xd7\xe3\x25\x30\xc9\xc4\x70\xfd\x56\x8b\xf1\x06\xfe\x17\x79\xb2\xef\xd7\xc3\x7f\x16\xbb\x52\x6f\xf7\x38\xd0\x51\x60\xd8\x30\xd7\xad\x38\x27\xb7\x40\x77\x39\x54\xb7\x15\x6f\x5b\x92\x2d\x81\xca\xe7\x56\x9c\x93\x5b\x60\xd8\x5d\xed\x2c\x7f\xaf\x69\x1a\xfa\x5e\xd3\x44\x4e\xc5\x8b\x77\x70\xdd\xb1\xb7\x44\xd5\x0e\xb3\xdc\x8a\xb9\x39\x71\x86\x4b\x93\xb8\x2b\xb7\xea\xf6\x35\xae\xa5\x76\xb4\x3b\xb6\x44\x52\xbd\xd2\xdb\x39\xee\x16\x62\xf9\x09\x24\x7e\xab\xc3\xf8\x02\x6f\xc2\x1f\xe1\x6c\x03\xec\xe3\x6f\xb5\x19\x8f\x6d\x30\x78\xc5\xb2\x17\xdc\xdc\x12\x49\x47\xd2\xf7\x5a\x66\x79\xc1\xcd\x91\xf5\xbb\x1e\x17\x5e\x70\x53\xaf\xf7\xdb\x9a\xb7\x8d\xe6\x6d\x62\xf0\x3e\xb7\x62\x62\x4e\xb2\x33\x5e\x7c\x0a\x5f\xc6\x63\x9e\x47\xfd\x08\x57\x7f\x88\x89\x39\xf5\xaa\xbf\x65\x63\x78\x0b\x0d\x7c\x08\x1f\xc6\x83\xfb\x8d\xa6\x76\x74\x59\x56\xb2\xc6\x39\x44\x27\x59\x87\x18\xee\x70\x69\x0e\x2e\x59\xf6\x82\x9b\x1b\x63\xc1\xa9\x07\x79\x72\x34\x52\x60\xbc\x43\xdf\x8b\x7b\x6f\x8c\x05\xe7\x10\x3d\x64\xaf\x23\xa1\x4c\xa6\x5e\xe4\x9d\xc4\x71\xca\x6b\x6e\x0e\x0e\xcf\x6d\x4d\xa0\xbc\xe6\x26\x81\x5d\x6e\xf5\x18\xff\x81\xd3\x1f\x85\x38\x99\x4a\xfa\x38\xf5\x54\x6f\xaf\xb9\x5b\x60\x9e\x97\xda\x17\xb7\xc7\x7d\xee\xe2\x6a\x7f\xbb\x1d\xcd\x8f\xe8\xad\x78\xdd\xc9\x56\x31\x09\x1c\x33\xed\x4d\x77\x0b\x2f\x38\xeb\x22\xef\xb8\x5b\xe0\xfb\xa4\xef\x4d\x0f\x92\x85\xf5\xb4\xbf\x2d\x0b\x6f\x54\x8d\x93\x88\xe4\xb7\x5a\x8c\x77\xf0\x25\x7c\x1a\x0f\x3a\x9f\xb0\xb9\x6d\x55\x23\xee\x70\x17\x67\x7d\xe5\x05\x37\xe5\x05\x37\x27\x1a\xe9\x6d\x5d\x23\xc9\x20\x2f\xce\x3c\x28\x76\xe7\x2d\xc4\xba\xcc\xaa\xef\x3d\x0f\x78\xc1\x4d\x2c\xea\xe7\x96\xfd\xe2\x54\x36\xc8\x39\x11\x0a\x71\x72\xa3\x10\x74\x35\x45\x6f\x0a\xc5\x72\x0b\x7c\xcf\xa9\x6a\x2f\xb8\x49\x9a\xc7\x34\xa7\xf8\x52\xd3\x9b\xc6\x6e\x9a\x07\x2e\xfb\xbb\x79\x1e\xf0\x82\x9b\x44\x24\xbf\xd5\x61\x3c\xf6\x9d\x1e\xd7\x9d\xc5\x71\xe2\xf7\x76\x71\x7d\xbf\xfd\xbd\xc6\xb5\xfc\xfd\xcf\xf8\x03\xae\xdf\x15\x5b\xdf\x92\x9d\xa7\xe8\xa7\x99\x0f\x34\x8d\x97\xe3\x70\x5b\x38\xde\x84\x62\x99\x8b\x63\x6f\xcb\xde\xf1\x16\xa2\xff\x7a\x5d\x77\x16\xc7\x49\xde\xc6\x8b\x17\xe1\x5f\xe3\xb4\x23\x3a\xe9\xa6\x7f\xec\x20\x27\x21\x66\x6e\xd5\xed\x33\x3f\x4b\x74\xa2\x34\x8e\x73\x77\xd6\x9d\x24\xa3\xb7\x9a\x8d\xf3\x3d\xc7\xde\xee\x9e\x1f\xdc\xe9\xe6\x12\xbf\xea\x9e\x9f\xce\xfc\x10\x62\x66\xee\xee\xf9\x21\xe1\xc5\x5c\xa2\x93\xee\xf9\x91\x90\x4d\x28\xf1\xe9\xf4\x8e\xb7\x40\xfb\xe2\x57\x16\xbe\xc9\xf3\x78\x71\xda\xb7\x90\xbd\x43\xc8\xee\x95\xcb\x97\xbd\xef\x26\x69\x1e\x7b\x15\xf5\x0c\x73\xc9\xa1\x59\x10\xb5\x0d\x53\xc9\x40\x64\x23\xe2\xf8\xad\xbe\xc2\x39\xe4\x97\x4e\xc1\xe1\x59\x18\x70\xc9\x35\xf4\xbd\xa9\x7f\x68\x16\x10\x25\xf6\xf0\x2c\xa0\x43\x9d\x44\xa4\x99\x76\xca\x9b\x72\xbe\x9b\x44\x9e\x99\x76\xbe\x9b\x64\x79\xbc\x38\xc3\x52\xe4\x96\xa9\xe4\x8e\x73\x89\xda\xa6\x57\x11\xb5\xe8\x22\xc2\xcc\xdc\xd3\x5c\x0c\xab\xc9\xf5\xe1\xae\xbf\xa7\x77\x6f\xe4\xf7\xbf\xf8\x14\x7e\x8c\x7f\x03\x4f\xea\x8f\xb9\x3f\x56\x93\xeb\x23\x6e\x35\xcd\xfd\x43\xa1\x7a\xf1\x21\x7c\x18\xa7\x7d\x51\xe1\xf4\x2a\xa2\x60\x5d\x1f\x51\xe1\xf2\x6e\xc7\xbb\x6e\x7d\x74\x6a\x2e\x9f\x82\x6b\xf2\xbd\x4e\x4d\x8b\xd8\xca\xd6\xb8\x3e\xe2\x4a\xcb\xf3\xb0\x34\x0f\xd5\xdf\x7f\x8d\xd3\x0e\xa2\xeb\x5e\x5e\x5f\xbc\xee\xd6\xa7\xfe\x45\xfc\xae\x49\xce\x47\x0a\x74\x17\x55\xf9\x5e\x26\x0b\x8c\x39\x97\xde\xcd\xb7\x22\x83\x4e\x65\x77\x5c\x18\xfa\x4f\x67\x77\xfc\x9f\x8c\x9d\x4b\xce\x27\x2b\x72\xc5\xe7\x5e\x45\xed\xc0\x09\x99\x49\x12\x93\x9a\x78\x6c\xef\x01\xf2\x21\xf5\xa0\xbb\xaf\xae\xfb\xee\xdf\x0a\x7e\xe7\x94\x64\x7b\x52\x83\x52\x91\x47\x7c\xfc\x79\x04\x01\x41\x70\x88\xae\xe8\x8e\xa1\x73\x73\x47\x77\xec\x62\xe5\x85\xce\xcd\x87\xfd\xb2\x8a\xee\x18\x1b\x1e\xca\x31\xac\xec\x61\xeb\x85\xce\xd3\xcd\xd6\xeb\x62\xeb\xc5\x26\x31\x1d\x16\xa3\x65\xf9\x77\xf9\xa4\x86\x0d\xff\x31\xd4\xab\x92\x5e\xbd\x1c\xd3\x89\xe6\x98\x38\xa3\x3c\xbc\xe6\xf1\x02\x68\xf0\xa2\x4c\x77\x10\xc7\x0e\x9b\x2f\x71\x9a\x3b\x3c\xe7\x21\xf1\xc5\x26\xdd\x6a\xc3\x7f\x0c\x75\x8f\xf6\x82\xc3\xdd\x33\xd4\x3d\x58\xbc\x63\xb8\x7b\x86\xba\x27\xa8\xcf\x74\xf7\xf0\xd2\x4c\x6c\x5a\xb3\xed\x07\x1e\xf8\x81\xa3\x68\x8f\x38\xad\x0d\x20\xfd\x85\xce\xe5\x87\xa2\x70\x74\x58\x7e\x25\x4a\x71\x7e\x49\xcb\xba\x76\x9a\x38\xed\xb2\x83\x78\xe0\x20\x0e\xdd\x22\x1b\x73\x38\x3f\xb3\xa6\x68\x0d\x56\xd0\xc7\x2e\x72\x5f\x14\x49\xfb\xed\x35\x8c\xb7\x41\x43\xe7\xf5\x0e\xd6\x98\x89\x07\x5c\xf9\x3d\x8c\x38\x82\xa3\x48\xe7\xde\xde\xb3\x62\xc9\x47\xd1\x1a\x7c\x5b\xa7\xf3\xa4\x4c\x14\x89\xa7\x3d\xbe\xe3\x56\xfd\x25\x9e\xb7\x67\xfd\x32\xdd\x13\x57\x39\xae\xff\xcd\x78\x15\x89\xe1\xed\xf1\xc2\x32\x8f\x22\x31\xb4\x65\x3e\xd6\xdb\x32\x25\x0a\x6e\x1d\x07\x65\xec\xd0\xf6\x4a\xe8\x04\x64\x3c\x5e\xc3\x1e\x8d\x8b\xe4\xe7\xf1\x9e\xf5\x51\xfd\xb5\x06\xdb\x02\x1f\xbc\x1d\x13\x55\x7b\x2f\xbb\x88\xc7\x72\x11\x27\x8e\x9c\xd8\x32\x87\xb6\x97\x78\x08\x3f\x8d\x2f\x39\xa9\x1a\xf7\xc7\x6b\x12\x6f\xcd\x44\x95\xf6\xb3\xef\x58\xc1\x1a\x43\xe7\xfb\x66\xf7\x65\x62\x8d\x63\x95\x3c\xd8\x47\x3c\xf0\x11\x87\xce\xf1\x87\x7d\xc4\x8a\xe2\x18\x55\x5a\xee\xf5\xaa\x04\x8b\x2f\x2a\x1e\x7d\xb3\xf2\x3a\xac\xbc\xa3\x6b\xeb\xfb\x7a\x58\x16\xdd\xee\xe8\xda\xf9\xda\xb5\x0b\x99\xee\xf0\xc6\x45\x0f\x71\x76\xc8\x73\x47\xd7\x5c\xf9\x2c\xfb\xcb\x63\x7b\x84\xba\xf2\xb3\xe8\x2f\xc6\xdc\xe1\x5d\xcb\x67\xc9\x5f\xc6\xee\x41\x04\xf4\x3e\xf5\x18\x66\x26\x6a\xc2\x1c\x40\x4f\x85\xe7\xcf\x44\x5b\x70\x13\xfc\x09\xce\x69\x75\xf0\x68\x5d\x7e\x0d\xc3\x73\xc1\x5d\xf0\x6b\xf8\x4b\x18\xbb\x68\xda\xf5\x39\x97\x61\xa9\x88\x25\xf9\x75\x1a\x5e\x3f\x79\xa8\x26\x1a\x51\x85\x2c\x8c\xca\x6e\x62\xea\xd5\xcc\xae\x90\x85\x21\x57\xc4\xb4\x23\x53\x8c\xb5\x80\xc5\x90\x9f\x8f\x71\xca\xe1\x8c\xc7\xa1\x0c\x33\x71\x2c\x1c\xc5\x3b\xf5\x04\x4b\x26\x90\x0c\x34\xec\xf4\xfd\xce\x89\x95\x19\x95\xa3\x46\x88\x6d\x24\xc8\xdf\x95\x5f\xfb\x8c\x59\x98\x99\x35\x54\x4f\x89\x00\xc1\x0b\x13\x57\x39\xd3\xe5\xd3\xde\x1d\x0d\x68\x26\x5b\x26\x0a\xf8\x25\x7c\x37\x7e\x80\x87\xf0\x66\x7c\xcd\x64\x5e\x74\xef\x8e\x71\xd8\xa1\xba\x25\x4e\xff\xd8\x53\x3a\x2b\x2b\xca\x5e\xf5\xbb\x5a\xa7\x09\x6a\x98\xb8\xf2\xbb\xbd\xeb\x22\x69\x09\x5e\xd2\xe9\x30\xd7\x48\xbc\xe0\xf4\x83\xad\xc0\xb9\xb3\xc0\xed\x1a\x76\x5b\x7b\x93\x07\x2d\x83\xf0\xad\x7d\x2a\x34\x7f\x87\x25\x56\x82\x37\x6d\x3a\x5c\xb1\x95\x40\x23\xf0\x12\x7b\x7e\x9e\xc6\xc9\xaf\x71\xb7\x95\xa6\x60\x83\xb1\x63\xf5\xce\xc3\xfd\xb3\x6e\x80\x26\xae\xfc\x96\x87\x03\x8d\xb6\x63\x85\xcc\x43\x33\x7c\x1e\xac\x34\x7b\x57\x7e\x4b\xf3\xba\xba\xa9\xa7\x59\xfa\xb4\xf1\x33\x97\xf1\xd3\x74\xd0\x3e\x6d\xfb\xcc\xf5\x1e\xa5\x1e\x60\xe9\xa6\x7a\x65\x62\x09\xc9\x1e\xca\xee\x4e\x20\x20\x7d\xec\x2c\xab\xd3\x6e\x40\x38\x5c\x89\xd3\x09\xe7\x74\x39\x08\x9b\xfc\x19\xf3\xf4\x24\x82\xba\x15\xdc\xfc\xef\xb3\x79\x12\xe1\xe7\x0b\xde\x77\xcf\xcf\x66\x3c\xc0\x7f\xe3\xc9\xae\xcc\x2d\x59\x27\x22\x5f\x1c\xdc\xbd\x98\x76\x0f\x12\x9a\xaf\x04\xef\xe6\x74\x87\xe4\xcb\x44\x07\x3f\x85\x0f\xe3\x2f\xb8\xca\xd1\x1e\x79\x72\x9f\x33\xe4\x06\x31\x13\xac\x43\xfd\x4a\xbc\x09\x97\xec\x12\xbd\x20\x0e\x69\x20\xbd\x52\xd9\xc5\x04\x8b\x83\x55\xd7\x4c\xb0\x4c\x50\x3e\xbb\xad\xe9\xfb\x9c\x0a\xc9\x17\x72\x77\x4c\x9b\x2e\x73\x85\x2b\xd0\xcd\xff\xee\x88\x7c\x5d\x11\xf9\x82\x67\xde\xfb\xb4\xd7\x70\x2e\x1b\xe6\xfa\x55\x8a\xf4\xf8\xc4\xa2\x89\x43\x9a\xe9\x72\x6b\x2f\xb5\x56\x9a\xe9\xd2\xb9\x0f\x11\xfb\x12\x57\xf1\x9e\x79\x58\x34\x71\x5c\x2a\x67\xba\x1c\x09\x05\xc7\xcc\xe6\x87\x75\xf8\x61\xd7\x81\x19\x3e\xf5\xca\x48\x17\x3d\x2c\x0e\x09\xba\x7d\x8c\x8a\xeb\x17\xf0\x07\xba\xe3\xfa\x65\x82\x41\xc4\x09\x32\xbb\x15\xcd\xba\x20\x9a\x38\xe5\xdb\x30\x52\xbc\xbf\x38\xa4\xf8\x7c\x5f\x54\x71\xfd\xe2\x94\xec\xda\x30\x9a\xf8\x12\xe3\x94\x82\xf3\x85\x51\xc5\xf5\x0b\xf1\x0a\xa6\x0d\x9d\x29\x43\x47\xce\x8e\xd9\x3d\xe8\x9d\xad\x90\x88\x02\x8e\xeb\x97\x09\x7e\x57\x4b\x60\x77\x3f\x74\xfa\xe1\xd4\x1a\xa8\xe7\x45\x3a\x3c\xb4\x4b\x2e\x22\x87\xfb\xcb\x44\x23\x7b\x08\x57\x37\xf0\xba\x48\x88\x57\x30\xc3\xdd\xb0\x7c\x93\xd7\xa1\x19\xaf\x88\x08\x9d\x28\x80\x99\xfd\x14\xde\x8c\x53\x7b\x36\x18\x44\x05\x5c\x09\x84\xe4\x94\x88\xdb\xee\x99\xb2\x7b\x4e\xa9\x55\xdb\x3d\x22\xb1\x85\x5c\x26\x33\xc6\xaf\x72\x26\x38\x42\x15\x16\x92\x40\xad\xca\x65\x32\x6d\xf7\x4c\xd9\x3d\xa2\x27\xcc\x61\x8d\x32\x90\x12\xd1\x13\xe6\xf0\xe8\x0e\x84\xfc\x94\xd0\x0e\xef\x28\x06\xcb\xe9\x29\x75\xeb\x7b\xa7\x0a\xf7\x17\xf2\x81\xcc\xe1\xfa\x13\xee\x2f\x4e\x49\xa7\x0d\x19\x85\xfb\x0b\xd1\x16\xe6\xb0\xf0\xaf\x58\x07\x25\xe4\x1b\x99\x36\x70\x14\x06\x30\x4e\x49\xad\x3d\x98\x0a\x03\x18\xa2\x2d\x4c\x7b\x30\xe7\x44\x23\xf2\xb6\x4f\x7e\xaa\xfe\x93\x0d\x21\x8f\xc8\xe7\xe7\x69\x7c\x80\x5f\xc2\x6f\xe3\xab\x9e\xf2\x75\x98\x27\x97\x89\x1d\xbc\x09\x77\x39\xac\x00\x22\x16\x4c\xdf\x68\x55\x78\xc0\x68\x52\x79\xd3\xed\xc2\x25\x19\x4d\xcb\xec\xed\xd9\xcb\xeb\x22\xd1\x24\x0f\x36\x58\xe0\xc1\x95\x90\x13\xc2\x61\xfd\x32\xc1\xef\x6a\x7c\x6d\xb0\x10\xd6\x2f\x76\x0d\xe3\xed\xea\x13\xb3\x20\xc4\x37\x80\x3d\x47\x62\x89\x5b\xfb\x95\xdf\x3f\xcb\x70\x89\x58\x30\x6f\x0f\x97\xec\x98\x26\x5d\x65\x3b\x66\xde\x6a\x96\xc4\x41\xd1\x01\x33\x41\x35\xb1\x3f\xa6\x3d\x8f\x8a\x1a\x18\x62\x16\x98\x79\xd7\xc5\xbc\x8b\x26\x71\x78\xac\xe1\x65\xf7\xc8\xc7\x31\x6d\xf7\x4c\x62\x1f\x44\xd3\x02\x6c\x8f\xa4\xa8\x77\xd1\xa4\xc4\x7c\x33\x56\xd4\xbb\xb8\xb4\xd0\xda\x8e\x99\xcb\x8e\x69\xde\x84\xd8\x8c\x81\x61\xa7\xf7\xf6\xf2\x2b\x0c\x8f\x05\x53\xb8\x8d\x95\xa9\xc8\xf2\xea\x83\xd7\x1a\x66\x19\x27\x6d\x97\x5e\xb6\xf7\x0f\xda\x5c\x09\x91\x16\xe6\x6b\xcd\xc0\x03\x22\x71\x49\xdf\xbd\xde\x6b\x10\xfa\xbd\xa8\xe6\xbe\x9d\xaa\x48\x7b\x71\x49\xaf\xbd\x56\x0c\x44\xda\x0b\x5e\xb3\xef\xa6\xc9\x65\xe2\x06\xa7\xf8\x4f\xe7\x43\x13\x27\x5f\x5c\x9c\x03\x99\xf6\xd6\x45\x7b\x8b\x4b\x6b\xf1\xe7\xea\xf3\x5e\x65\x5c\x52\x54\x9f\x7b\x92\xf7\x2a\xe3\xd2\x2a\xfa\xb9\x2b\x79\x99\x23\x44\x66\x98\xbe\x3f\x3a\x3f\xd5\xa7\xb9\x9c\xd7\xf8\x07\x9e\xf5\x0c\xd3\xdb\x42\x91\xf0\x82\x57\xf1\xc3\x91\xea\x02\x1e\x5a\x09\x5e\xbf\x0f\xd8\x68\x24\x28\x7f\x49\x72\x40\x47\x23\x41\xfd\xd7\x5b\x75\xe1\x08\x76\xa1\x08\x76\xc1\x73\x41\xf9\x79\x1a\x6f\x3f\x7f\x9c\xd1\x7e\xe3\x78\x2b\xcc\x72\x0b\xb1\xdc\x02\x9f\x4b\x38\x8e\x5d\x26\xe8\x8d\xa5\xde\xf2\xb3\x1b\x27\x7f\xd0\x6a\x59\x41\x41\x40\x3b\x3d\xdb\x1d\x0e\x57\x97\x09\x65\x0f\x70\xcc\xda\x4c\xac\x41\xe3\xed\xfd\x20\x1a\x1d\x89\x1b\xfc\x12\xfe\x09\xa7\x33\x60\x4d\x44\xaf\xae\x26\xb7\x3c\xb3\x5a\xc2\x6f\xe3\x6b\x1a\xf5\x4a\xe7\x29\x3c\x5c\x74\xae\x67\x06\x8f\x09\xe5\xe7\x61\xfc\x04\xdf\x85\x5f\xc6\x03\x9c\x7a\xea\x1d\x8c\x4c\x2c\x61\x84\xed\x10\x5d\xd7\x33\x33\xb1\x83\x37\xe1\xdd\x38\xe5\x1c\x21\x7c\x1a\xa7\x9c\x93\x7a\xea\x7a\x66\x26\x68\xd7\x79\x0a\x77\x39\xf4\x27\x34\x87\x80\xf3\x46\x82\xfa\xb7\x5d\x78\x18\x27\xbf\x84\x71\xb7\x70\xc9\x08\x82\xcf\x10\x44\x97\x23\xc1\xb8\x5c\x87\x70\x97\xc3\x24\x80\xcf\x10\x66\xcb\x85\xd8\x72\xd1\x25\xa4\x87\x27\x01\xac\xb8\x80\xcf\x90\x9f\x1a\x5f\x42\xaa\x07\x8f\x12\xe5\xa7\xf3\xb3\x3b\xe1\xf5\xfe\xfc\xfc\x95\x9f\xfe\x91\xfc\x88\x16\x17\xfd\x60\x72\x73\x76\x91\x9f\x87\xf1\x06\xae\x7a\x8e\x6e\xfc\x06\x57\x39\xd3\xbf\x8b\x12\xc2\xb5\x92\x9f\xd3\xf8\x07\x4e\xfe\xd3\xed\x3d\x59\x05\x39\xee\x88\xae\xeb\x9f\x21\x1a\x5d\x44\xbd\x84\xbf\xc6\xd7\x06\x5f\xe2\xa9\xe8\x73\x99\xa0\x9a\x7b\x11\xde\x8d\x07\xf8\x29\x7c\x1a\xa7\xfa\xbb\x8a\x77\x37\xf0\x92\x47\xc0\x74\xc8\xcf\x66\x9c\x66\x1d\x2a\x7f\xaa\x3b\x89\x3e\x17\xbc\x26\x14\x5d\x91\xd6\x83\x30\x74\x17\xb7\xc6\xc2\xc1\xe7\x32\xb1\x54\x0d\x0e\x9a\x80\x55\x47\x82\xde\x91\x14\x36\x37\x0b\xc7\x53\xe0\x5a\x09\xd8\x76\x24\x68\x96\xa4\x53\xb7\x38\x03\x9e\x5d\xe2\xfa\xdd\x51\x8d\xef\x59\x9d\xdd\xf0\x61\x98\x62\xae\x22\xfc\x57\x31\xab\x93\xd5\x09\xcd\x32\xde\x90\x71\x1c\x31\xe1\xd0\x73\x21\x32\x5e\x84\x64\xb6\x79\xcc\x9b\xc6\x5c\x32\x2b\x6b\x2c\x13\xc7\xcf\x1f\x81\xdb\x29\x1c\x31\x2e\x14\x31\x2e\xf0\xcf\x44\xbf\xac\x62\x64\x75\x41\x67\xc8\xcf\xd3\x78\xfb\xf9\xa3\x6e\x9b\x44\xf6\xb2\xca\x5b\xdc\xba\xc4\x55\x8e\xab\xb3\xcc\xa8\xba\x6d\x12\xc1\x6e\x15\xb3\xae\x6a\xd6\x6d\x93\x08\x76\xab\xc2\xf5\xfa\x46\xe2\x4d\xf8\x30\x7e\x83\xab\x1c\x37\x6b\x99\x51\x75\xdb\xa4\xf2\x7a\x34\xe3\x0f\xf8\x29\x5c\xb2\xb6\xfc\x4b\x75\xc3\xdf\x92\x9f\xdd\x38\xf9\x0f\xda\xab\x88\x01\x99\x20\xbf\x54\x58\xf7\x3a\xb5\xec\xa9\xc4\x2f\xe1\xd3\x38\xf5\x54\x3f\xcb\x5c\xca\x04\xfd\xd3\x8a\xf0\x66\x9c\xf6\xb6\x53\xf8\x30\x4e\x39\xed\x12\xae\x71\x59\x76\x54\xdd\x36\xa9\xbc\x70\x3f\x2c\x83\x29\xf1\x5d\x78\x37\x1e\xe0\x2a\x27\x6e\xe3\xb4\xf7\x52\x3d\xdd\x3f\xeb\xca\x67\xdd\x36\x89\x55\x58\x35\x2f\x43\x2a\xf1\x43\xf8\x65\x7c\x82\xab\xfc\xe1\xf2\xb3\x3f\xe3\xe8\x2a\x7e\xb8\xfa\x93\xe1\xd2\x82\x1c\xee\xce\x65\x68\x25\xde\x85\xbb\x98\x9c\xd2\x75\xc3\x11\x12\xd0\xfc\x48\x54\xf0\x53\x78\x33\xfe\x80\x77\xe1\x6a\xd6\xa0\xdb\x70\x84\xe4\xe7\x61\xfc\x04\x0f\xe1\x8f\xf1\x25\xb6\x45\xe2\xa9\x57\x20\x03\x42\x60\xe2\x97\x70\x97\x3f\x29\x7f\x57\x3d\x67\x35\xde\xc0\x55\x8e\x55\xd5\x60\x5a\x14\xa9\x36\xc5\x8a\x0b\x18\x7f\x89\x77\xe1\x8f\x71\xfa\x41\x2b\xec\x0c\x69\x87\x65\x77\x25\xbe\x0b\xdf\x8d\xdf\xe0\xf4\x8f\xec\xab\x20\x98\x5c\xdd\x8a\x74\x95\x5e\x75\x0c\x28\x82\x75\x2b\x57\xf9\x9d\x7d\xd7\x74\xf3\x96\x5f\x28\xff\x4c\x3f\xef\x85\x76\x5d\x01\x4d\x5c\xcd\x70\xb3\xa7\x9a\x2d\xe9\xba\xad\x0d\xd6\x8d\xd0\xc4\x4f\xe1\x97\xf1\xfe\xf3\x87\xac\xf4\x20\x12\x1d\x09\x15\xc3\xa8\xdd\x6e\xf5\xcd\x24\x28\x5a\x7f\x6f\x2b\x83\x3b\x2e\x70\xe7\xbf\x8d\xaf\x5e\xe5\x09\xa6\x70\xe8\xb9\x4c\x9c\xe0\xaa\x8e\xf7\x21\xcb\xed\x94\xb8\xca\xb1\xb0\xdf\x28\x0f\x62\x3f\x45\xbf\xad\xbb\xef\x59\xc0\x77\xe1\x87\x71\xca\x2f\x2a\xdf\xdd\xb6\xcc\xb5\xc4\xe9\xb6\xc7\xeb\xf2\x43\xf7\x40\xb3\xc8\xcf\x6e\x9c\xfa\x48\x1a\x1f\x2b\x89\x07\xa5\x58\xb5\x30\xcb\x2c\xcb\xc4\x05\xae\xfc\xde\xdf\xae\x9b\xa4\x75\xab\xc7\x26\x5c\xed\x5a\x4f\xa6\x24\x8e\x54\x3f\x5e\x98\xd7\xab\x93\x75\xab\x5a\x51\x1f\x2f\x61\xeb\xd5\xc9\xc4\x91\xf6\xc7\x4a\xf4\x61\x71\xa8\x52\x96\x8f\xf7\x2d\xcb\xd2\xab\x5b\x95\x52\x7c\xac\x44\x1f\xf5\x83\x8c\x92\xd7\x2b\xf9\x32\x01\x13\xef\xc2\x4f\xe3\x6b\x96\x55\x2d\xa9\xaf\xfb\x67\xb9\xb5\x12\xdf\x85\x4f\xe3\x8c\xbb\x8c\x95\xd7\xb3\xe9\x45\x1b\x54\x29\xc5\xd7\xfd\xf3\xa2\x14\xab\xcc\x8b\xd7\x4b\xf9\x2b\x39\x09\x95\xe3\xf6\xbe\x2c\x1a\xbb\xe4\xea\xf5\x9a\xfd\xa2\xe5\x08\x3b\x1b\xfd\xf5\xb8\xbf\x68\xb9\x5d\x8b\xe7\xe7\xf6\x7e\x68\xb9\xbd\x54\xe1\x87\xf1\x06\x7e\x0a\xd7\xb8\x7f\x68\x39\xc2\xd1\x86\x43\xd8\x65\xe2\x04\xdf\x85\x87\xf1\x09\x7e\x09\xbf\x8d\xa7\xf2\x3e\xb5\x4d\xfe\xbc\xf6\xaf\xb7\x55\xea\xb6\x4b\xc9\x7d\x9e\x16\x1f\xc3\xbb\x6b\xad\xfd\xbc\x4f\xfb\x98\xed\xf8\x34\xc2\x11\xec\x82\x08\x76\x75\x83\x46\x91\x9f\x87\xf1\x01\xde\x85\xdf\xc6\x29\xa7\x29\xbf\xc4\x19\x2e\x63\xdd\x76\xd6\xc2\xd0\x53\x2b\x41\x28\xbb\xc4\x77\xe1\xaf\x71\xca\xa1\x5d\xa1\xa8\xec\x01\x97\x31\x71\xfd\xae\xc4\x3c\x96\x71\xab\xb3\xc6\x30\xc7\x31\x20\x35\xd6\x8d\x67\x8b\xf2\xf3\x13\xce\x6c\xdf\xbb\x8a\x99\x2e\x46\xa3\xce\x9a\x07\x85\x91\x04\xe5\x20\x3d\xe6\x2c\x66\x62\x07\xef\xc2\x4f\xe3\x4b\x9a\x0f\xd6\xc2\x90\x4b\x2f\x77\xf7\x05\x5c\xf9\xdd\x3d\x85\xe6\x1e\xcb\x09\x1c\x51\xdc\xdc\xc2\x1a\x80\xbb\x21\x3f\x9b\xf1\x01\xae\x72\xb4\x66\x13\x20\xaf\x6e\xbc\x4f\x14\xa1\x8b\xa3\x99\x68\xe0\x97\xf0\x61\x7c\x49\x15\xef\x13\x85\x39\x8e\x41\x48\xbc\xc4\x0f\xe1\xa7\xf1\x15\xe5\x41\xcd\xb5\xf1\x4b\x80\xbc\xc6\xf5\xc4\x30\xc5\x31\x62\x3d\x59\xd9\x64\x72\x9b\xc9\x98\x89\x3b\x61\x2c\xeb\x90\x7b\x2e\x08\x93\xa7\xd7\x7b\x23\xaa\x87\x6a\xdd\x0d\xd5\xe3\xbd\xf9\xd5\x0c\x8f\x84\xab\x72\x4f\xd7\x64\x3d\xdb\xd1\xd5\x2f\xb6\x86\x61\x27\x36\x9e\x16\x08\x87\xac\xcb\x44\x5d\x70\x08\xde\x0d\xd3\x7a\x74\xa3\x23\xd9\x05\x9c\xc5\x26\x13\x3c\x76\xcb\xea\xba\xd6\xd9\xb8\x94\x98\x5f\x87\xe1\x33\xe1\x53\xb9\xb5\x0b\x8b\xe5\x2e\x6c\xdd\x65\x8f\x5f\x85\x7c\x0b\x56\x55\x3c\x70\xcb\x59\xd8\x3a\x5a\x37\x76\x37\x73\xa7\x99\x6c\x0d\x42\x1e\xc2\x4c\xac\x0a\xa2\x5b\xe3\xd0\x1a\x1c\xcb\x18\x6e\x5d\x73\xec\xb0\x30\xae\x5b\x9c\xad\xa3\x59\xe3\x90\x06\x82\x00\xd9\xba\x66\x98\xde\xa0\xcc\xc4\xca\xdd\x95\x5b\xc6\x44\xac\xe7\x62\x1a\xcf\x05\x44\x1c\x52\xab\xb1\x9c\x8d\x7a\xc3\x37\xe0\x36\x92\x58\x8d\x0f\xd5\x7b\xbe\x86\xb3\xec\xd8\x90\x08\xdb\xb8\x84\xc8\x6b\xbc\x15\x90\x5f\xaf\x61\x72\xf3\x93\xa7\xeb\xbd\x62\x16\x34\xee\x38\xe6\x57\x33\x1c\x0b\x56\x21\x1e\xb4\x65\xd1\x36\x99\xdb\x71\x7a\xc2\xad\x77\x64\x5a\xd4\xdf\x78\x04\x35\x88\xa0\x47\xe2\x5e\x7f\xa5\xdf\x70\x27\xac\xfb\x9a\x2d\x76\xc3\xce\xcd\x96\xe2\xd0\x30\xc9\xe5\x19\x04\xd2\x4b\x9c\x4e\x6b\xee\x86\xc6\x96\x82\x18\x12\xf9\x79\x19\xef\xe0\xca\x6f\x31\x6d\xe8\x5a\x6d\xe8\x43\xb7\x31\x03\xce\x62\xdd\x0e\x29\xb7\x66\x65\xd2\x58\x2b\x70\x63\xe5\xa7\xba\xa8\xa1\x24\x4f\xf5\x7f\xb3\x4c\x36\xea\x7f\x4a\x89\xb5\xe9\xfa\xcc\x55\x9f\x53\x23\x70\x59\x99\x5c\xac\x21\xa7\x86\xe0\x72\xbb\x2e\xda\xc5\xb3\x59\xf9\xf9\x18\x5f\x4a\x0c\xb7\x57\x98\xda\x98\x89\x1d\x5c\xe5\xc8\xd8\x87\xda\x98\xb8\xca\x91\x7d\x14\x17\xed\xe5\x1d\xac\x80\xe9\x48\xe2\x00\x3f\x85\x37\xe3\xf4\x83\x94\xa4\x1e\x9d\xc9\x44\xfb\xf9\xe3\xbc\x1a\xdd\xd9\xbb\x8a\x59\xde\x45\xc5\x16\x8d\xb0\xf5\x1b\xcb\x9b\x78\xf2\x16\x7b\x44\xf7\xa0\x2c\x62\xe2\xa9\x33\xd4\xe8\x1e\x93\x75\xb7\x52\x91\x45\xc3\xac\xc3\x4c\xac\xf5\x83\xa7\xb7\xf2\x73\x1a\x5f\xeb\xd0\x29\xed\xd1\xad\x24\x3b\x36\x0d\xf4\xa1\x88\xee\x21\x59\x41\xf1\x12\xa7\xee\x36\x4d\x23\xd4\xc5\x98\xac\x11\xee\xe2\x50\x17\xab\xad\xe1\x49\x14\x88\x14\xb4\xa2\x70\xf4\xbb\xfc\x9f\xf2\x39\xbd\x8b\xd0\xf6\x03\xd6\x61\xe2\x2a\x47\xbb\x4e\x68\x86\x75\xc3\x47\x16\x0e\x73\x97\x89\x1b\xbc\x09\x77\x3d\xd9\x96\xe0\x0b\x0b\x87\xbf\xcb\x04\x43\x28\x51\x1e\xae\xff\xa0\xfe\x4d\x9a\xc4\x36\x22\x2c\xc2\xc4\x19\xf2\xe1\xfe\x1c\xd4\xa7\x61\x6b\xc6\xb0\x7e\x5d\xc6\xdf\x75\x72\xa8\x1a\x7a\x0b\x26\x20\x05\xd6\x0d\x97\x57\x7e\x0e\xe3\x13\x9c\xe6\xda\xe4\x0b\x99\x7c\x84\xb9\x88\xb0\xc9\x17\x93\x05\xa6\x49\x32\xa7\x25\x79\x5d\x12\x4c\xfc\x14\xfe\x18\xa7\x9a\x3b\x33\x6e\x5a\xef\x4c\x24\xb6\x69\x45\xb2\x89\x18\xeb\xf1\x98\xc4\x55\xcf\xe9\xfa\x30\xa3\x1b\xc6\x40\x4c\x6b\x24\xd9\x86\x4d\x6b\xd5\x74\x37\x4c\xb6\x3d\xc4\x53\x0e\x47\xad\x0b\xa2\xd6\x25\x1e\xc2\x87\xf1\x35\x8c\xf0\x7d\x22\x6e\xf7\xc3\x7a\x5d\x26\xf1\x53\xf8\x61\x9c\xdf\xc5\x48\x88\xdb\xfd\x70\x33\xa3\x9b\x76\x8b\xb7\x67\xf4\xad\x61\xd4\xae\xf0\xd6\x89\x50\xdc\x4c\x17\x1e\xf1\xca\xcf\x69\x9c\xfa\x74\xe7\x7f\x8d\xd3\x9f\xda\xfe\xdd\xd6\x6c\x37\xdb\xbf\x16\x45\xb8\xdb\x85\x78\x36\xad\x5b\x8f\xc5\xf0\xc1\xc8\xb9\x24\x6e\x8f\xb7\x49\x0f\x27\x45\x97\x36\x44\x8f\x17\xe2\x27\x94\x5f\xe5\xb8\x1f\x1e\xfa\xe1\xc2\x48\x88\xc7\xfd\xf0\x20\x0f\x97\x34\xa4\x8d\x3d\xe2\xdf\x25\x4e\xff\x3f\x56\x1b\x0f\x9a\x0d\xde\x50\x7e\x36\xe3\xd4\x47\x9a\xf3\xf1\xe2\xfd\x60\xfc\x5c\x92\x67\x1b\x7b\xf1\xb0\x2d\xbc\x76\xe3\x8f\xf1\xd5\x6f\x78\xc4\xc2\x34\xc2\x4c\xf0\xbb\xda\x2e\xbe\xde\x8f\xbc\x58\x09\x97\xac\x8a\xd7\xd3\x74\xd1\x05\x2f\x4f\xa3\xd7\x3a\xf2\x45\xcb\x5c\x32\x2a\x6c\xd3\x11\xe8\xae\x6e\x97\x76\x41\xaf\x17\xeb\x97\xdd\xf1\x25\xf1\xb1\xad\x17\xb2\xf5\x2e\x89\xcf\xeb\xad\xd7\xcb\xae\xf9\x92\x16\x7b\x3d\x2d\x5e\xa6\xc5\xa5\x2d\xcf\x6b\xc5\xff\x32\xec\x72\x88\x99\x2d\x18\xb0\x05\x13\xa7\x59\xb6\x01\x43\x36\xe0\x25\xf1\xb1\x0d\x18\x1f\x0b\x9d\x5c\x58\xf1\x79\x01\xff\x58\xc0\x2f\x89\xd5\xe7\x05\xf0\x0b\x95\xa3\xf2\x2d\x26\x1f\xe2\xe0\x0d\xf5\xe7\x0d\xb5\x6c\x43\xef\xa8\x3f\x4f\x97\x8f\x7e\xf0\x96\xfa\xf3\xb0\xaf\xf0\xe6\xad\x4a\x4a\x3e\xcf\x8a\x0f\x69\x90\x0b\xcb\x6c\xc0\x4c\xbc\xe0\x4b\x0a\x1d\x0f\x2f\x60\xf1\x85\x26\xe9\xd0\x45\xcc\x4c\xac\x49\x4a\x1c\xe8\xfc\x0c\xe3\xd4\x92\xe3\xdc\xa1\x57\x35\x83\xc8\x78\x89\xff\xc6\x5b\xa8\x41\xf8\x3c\x12\x4b\x07\xf5\x53\x3f\xa3\x41\x1e\x1b\x73\x9e\xb0\xd2\xe1\x38\x7a\x41\x1c\xbd\xc4\x03\x5c\x9b\x34\xe2\xe5\xd5\x4d\x5b\x6c\xc7\xcb\xcb\xc4\x00\x57\xab\xa7\xcb\x61\xf0\xe5\xc8\x1a\x36\x05\x47\x61\x90\x09\x43\x1d\xe6\x0a\x06\x81\xf4\x12\xef\xc2\x3f\xe1\x0c\x32\x51\x34\xc2\x5c\xc1\x20\x90\x5e\xe2\x97\xf0\xdb\xf8\x9a\xf3\xdc\xc0\xcd\x4f\x97\xc3\x81\x87\xb6\xda\x43\xb7\x3b\x33\x71\x80\x37\xe1\xdd\x38\xed\x42\xb8\x46\xd1\xd2\x3c\x0a\x6b\x46\x60\xb2\x0e\xdb\x76\x63\xd9\x76\x57\xd1\x68\xda\x88\x83\xfa\xa7\x97\xe1\x63\xd8\xdd\x39\x56\x0c\xf4\x8b\xc7\x5c\x02\x1e\x20\x89\xc5\x46\xc7\x44\x32\x1f\x30\x13\x2d\x61\x0d\x61\x95\xd5\x3e\x2a\xbb\x1c\x6d\xe5\x4d\x13\x0c\x82\xe5\x05\x31\xee\x62\x28\xa4\x40\x10\x34\x2f\xb3\xab\x74\xc9\x2d\x2c\xc1\xba\xc5\xaf\xfc\x8f\xf1\x0f\x7c\x4d\xa3\xb1\x7b\x04\x77\x56\x35\x02\x74\xe4\x67\x18\xa7\x3a\xec\xe3\xc7\xee\x11\xdc\x39\xc2\x91\x2f\xcc\xb1\xf5\x82\xd8\x7a\x8a\xf1\x15\x26\x09\x06\x24\xc1\xba\x71\x8b\x38\x3f\x5d\x3c\x0f\x5c\x6a\xbc\x77\x8f\xf7\xce\x78\x87\x7a\xd8\x8e\x57\xc8\x82\x89\x2b\xbf\x26\x35\x11\xf7\x42\xa7\xe3\x0e\xac\x17\x04\xd6\xab\x5b\x68\x3a\xe8\xf2\x69\x40\x11\x4c\x9c\x91\xb2\x7f\x95\xc8\x78\x75\xe3\x29\xb0\x70\x40\xbc\x80\x13\x98\x78\x17\xfe\x1a\xa7\x33\x25\xf6\x87\xb5\xc0\xa1\xd6\x5e\x2a\xc7\xad\x3d\xd8\x31\x86\xa6\xc3\xe1\xe6\x1e\x6a\x6e\xdf\x84\xab\x93\x0f\xb4\x03\x24\xa6\x30\x75\x30\x88\x98\x97\xb8\xca\xb7\xec\x1c\x92\x9d\x50\x39\xc3\xe5\xa0\xdc\x78\x0b\x2c\x3f\x5d\x4f\xa6\x7f\x68\x3a\x1c\x32\xc6\xc6\x72\xcc\xd6\xb2\x69\x3a\xd8\x1f\x0b\x87\x30\xf1\x4b\x78\x33\x7e\x2d\x5c\x32\xab\xeb\xb3\x41\x84\xbd\xe0\x55\xa5\xfc\x92\x0c\xae\x68\xee\x99\x9d\x61\xb1\x3f\x96\x40\x7a\x89\x2b\xbf\xbb\x61\x19\xa8\xb5\xc8\x07\x67\x46\x61\x10\x40\xef\xd4\x86\x6b\xd8\x94\x1c\xe7\x3a\xad\x2d\x3c\x05\x16\x8e\x93\x17\xc4\xc9\x4b\x9c\x62\x44\xec\xcb\x44\xc9\x62\xd8\x57\x0d\xbb\x57\xe1\xf5\x9d\x4d\x63\xd5\x3c\xf7\x97\x7f\x34\x4b\xa1\x92\x36\x24\xe1\xf1\xd5\xb2\x69\x3e\x37\x8f\xc9\x7a\x14\x27\xf1\x2a\x5c\x8d\x5a\x8e\xd3\xc4\x19\x93\x66\xd9\x5c\x7e\xd1\xc4\xf9\xdd\xcb\xb5\xc7\x30\x2c\x72\xa8\x39\xba\x5d\xc0\xb4\xab\x65\xe3\x6c\x62\xd8\xd0\x83\x39\x57\xcb\x26\x95\x79\x59\x8f\x5c\xfc\x2e\xc1\xa7\x63\x28\x94\x7a\x10\xb6\x2e\x71\x7a\xc7\x0e\x50\x98\x73\xb5\x14\x29\x98\xee\x31\xc7\xd1\x59\xa0\xe6\xc4\xe8\xee\xcd\x65\xf4\x25\xae\xfc\xda\xce\x11\x7f\xae\x16\x79\x98\xe0\xd5\xad\xc4\x52\xc9\x05\x6a\x4e\x0c\x3b\x34\xc7\xf2\x60\xd6\x22\xcf\xd0\xe8\x5e\x9a\x16\xd1\xad\x96\x82\xd7\x7b\x84\x2c\xd2\xb1\x1c\x97\xc1\xcb\x4c\xf9\xd5\x0c\x07\xd9\x9b\xf0\x69\x9c\xea\xab\x3b\xc3\xd5\xc7\x3f\x59\xe4\x29\x72\x14\xb9\x80\x08\x97\x78\x08\xbf\x8d\xd3\x6d\x6c\x93\x86\x9e\xa4\xc9\x44\x01\x3f\x84\xbb\x3e\x83\x72\xa4\xf1\xc2\xfa\x7a\x11\xd9\xda\xc6\x79\x94\x79\x69\x99\x28\x09\x4b\x31\x0c\xcf\xa0\xc5\x43\xab\xa5\x68\x42\x0f\x1d\x03\x11\x35\xae\x41\x0f\x8b\x61\xef\xe1\x18\x1a\x13\xfc\x4d\xa6\x9f\x05\xf4\xb3\xb6\x49\x5d\x0c\xcf\xb7\x75\xc9\xb3\x6d\x5a\x54\x87\xb5\xce\x7a\x5b\xb4\x6d\xfe\x4d\x0b\xf8\xba\xca\x59\x8b\x9c\x53\xc3\x2e\x45\x38\x69\x89\xeb\x47\xbd\x02\xe1\x52\x2c\x72\x36\x8d\xe9\x01\x9c\x08\x1a\xf1\x41\x02\x6a\x19\x89\x01\xde\x85\x4f\xe3\x77\xee\xa3\x8f\x53\xf0\x63\x98\xea\x54\x15\x6f\xdd\x3b\x43\xf8\xef\xdc\xd8\x22\xda\x1c\x09\x5a\x21\xb1\x9d\xd6\x3d\x13\xb1\xb5\xbc\xd9\xca\x24\x8c\x5c\x2d\x55\x1b\x3d\x5b\x93\x63\xaa\xd5\x5a\x8a\x6e\x0f\xf0\x8d\x4a\x95\xcb\x69\xe8\xed\x99\x4c\xf0\xbb\x12\x73\xbb\x14\x09\x28\x97\xb8\xca\xb1\xdc\x62\x65\x16\xb9\x9c\x86\xad\xcc\x71\x23\xb7\x72\x39\x8d\xdb\x43\x7f\xab\x3b\x2e\xfd\xae\xe5\xf6\x46\x6e\xab\xe4\xf9\xf6\x0a\x8b\xeb\xb0\xc8\xb5\x34\x6c\x35\x42\x51\xab\xa5\x4a\xcd\xdc\x1e\xe5\x5b\xed\xd5\xd2\xa2\x1b\x9a\x99\x58\xf5\x97\x6b\x69\x3c\x96\x5c\x5c\x81\x85\x68\x20\x31\xec\x0a\x1c\xb8\x02\xcb\xce\xf6\x7e\x3c\xae\xff\x83\xd4\xed\x45\xe5\xb8\xff\xd7\xcd\xcd\x5a\xf6\xdd\xb8\xcb\x59\x4b\x5d\xd9\x35\x5e\x8f\x17\x0b\xac\xba\xb2\x6b\x8b\xf7\xba\xff\xd7\x75\xcd\x5a\x76\xa9\xf3\xd7\xab\xc2\x4b\x7f\xee\xda\x31\xbf\xae\xcf\x0a\x82\x90\x78\x17\xae\xb9\xf4\x32\xdf\xe5\xfb\x19\xaf\xd5\xff\xab\xdf\xd5\xd2\xfe\x59\xdd\xe2\x32\x2b\xbb\xfa\xed\xb3\xb4\x7f\xf4\x0f\x31\x94\xf3\xf3\x32\xbe\xfa\xff\x28\xc6\xa5\xe6\xd7\xc5\xcc\x5a\xbc\x5f\xb4\x6f\x8c\x80\x6b\x89\x1f\xc2\x87\xf1\xdc\x41\x5d\x52\x4b\x9f\x3c\xc6\x44\x58\xcb\xec\xc2\xad\x9d\x3f\xba\xf9\xe0\x70\x67\x7c\xee\xe6\x75\x7d\x33\xf1\x55\xfc\xb4\x2b\x6d\x6e\xec\x10\x0e\xa6\xc5\x54\xb8\xf1\x4c\x90\x1f\xcf\xf9\xb4\x79\x35\x71\xa5\x15\x79\x21\x4c\x74\x0b\xa8\x6d\x89\x5f\xe0\xda\x63\xcf\x65\x19\xd5\x72\x70\x76\x37\xed\x1a\x9b\x1b\xab\x32\x2f\x53\x85\x29\x70\x41\x84\xb5\xc4\x55\xfe\xf0\xef\xb2\x3a\x42\xca\x08\xe2\xac\x91\x58\xe2\xc0\x0b\x54\x31\x6d\xf8\x10\x79\x2d\xf1\x4b\x78\x33\xce\xef\x72\x46\x67\xba\x5b\xc0\x63\x4b\x5c\xe5\x48\x3b\xcd\x82\xf8\xe8\xb8\x19\xd6\x1a\x89\x06\x1e\xc2\xbb\x71\xf2\xa3\x2c\xa7\x7d\x60\xd0\xd4\x6a\xd1\xf1\xf1\x54\x48\xf0\x20\xf2\x5a\x2d\x3a\x0e\x36\x1d\x2d\xa0\xa3\x25\xde\x84\x9f\xc6\xfb\xcf\x1f\x8a\x66\x90\x5f\x61\x78\x90\xbd\x83\x4b\xfb\xcc\xf5\x9e\xa7\x82\x19\xc4\xac\x1e\xad\xc5\x56\xbb\x20\x11\xe4\x57\x33\xbc\xe6\xc4\x79\x18\x1f\xc6\xe7\xca\x7e\x0a\x56\x9b\x96\x93\xec\x3a\x35\x24\xb6\x9f\x88\xd9\x76\xc9\xd2\x30\xa1\x2d\x20\xb4\x5d\x27\xc7\x13\x53\x2f\x7f\x66\xe2\x4a\x18\x35\xe5\xc8\x6b\xa1\x08\x6b\xd0\x07\xf2\xcb\x3f\xc9\xec\x3c\xd9\xb4\x4d\x5b\x49\x84\x60\x4b\xfc\x10\x7e\x18\xcf\xd2\x79\x89\x29\xbf\xba\x61\x1a\x2a\x69\xdd\x2d\x05\xcb\x78\x52\x4c\x85\xfc\x2a\x86\x55\x7a\x08\xdf\x8d\x67\x37\xb6\xa2\x1f\xd5\xd4\x87\x8a\xa7\x90\x0a\xe1\xb0\x6e\x41\x58\xb7\x5a\x4e\x34\xd4\xb4\x4d\x35\x97\x4d\x75\x35\x14\xc2\xdc\x2d\x61\x3b\x0a\xdf\x43\x6d\x53\x6b\xee\xec\x73\x89\xfa\x1c\x73\xf7\x8c\x5a\x2e\xbc\xc4\xf5\xb3\x9e\x51\x3b\xfb\x5c\xcb\xc0\xee\xf1\xd8\x27\x8d\xd2\x0c\xdc\xa7\x6b\xaf\x2e\x66\x43\x65\x02\x60\x26\xd6\xc2\x07\x33\x24\x3f\x55\xfe\xc1\xc6\xec\x64\xfb\x31\x0f\x0b\x13\x36\x55\xe1\xb5\xab\x98\x87\xdb\x75\xa0\x11\x60\x7a\xe4\xe7\x61\xfc\x04\x77\xfe\x30\xfe\x82\xab\x3e\xd2\x74\xf3\x60\x81\xe3\x55\xab\xfc\xbc\x8d\x93\x9f\xe3\xea\x69\x1b\x69\x9e\xeb\x58\xb4\xe8\xb8\x7a\x9e\x9e\x69\x32\x7a\x1a\x0b\xcd\x3c\x3d\x47\x64\xf4\x34\x89\x94\x7d\x74\xc4\x8f\xab\x45\xd6\xcd\x54\x8c\x87\x20\x4e\x5c\xe2\xca\xef\x7e\x3e\x55\x7f\x4d\xb6\xd3\x82\xbf\x1c\x72\x89\xab\x9e\xd3\xf5\xa1\xff\x9b\xa6\x95\x6f\xa1\x42\x2a\xac\x05\xca\x45\x38\x3c\x5c\xc0\x0e\x4c\x9c\x76\x35\xd7\x1f\x87\x5b\xb9\x24\xcc\x8a\x1a\x1e\x53\x76\xd2\x55\x7e\xc7\x9b\x38\x6d\x46\xcd\x86\x78\xe9\x14\x97\xe0\x70\x24\x5e\x70\x9a\xe1\x6b\xa7\xb3\xb1\x10\x11\xbb\x21\x1c\x3d\x2e\x13\x03\xfc\x10\xfe\x18\x5f\xcd\xbe\x34\x0c\x97\x15\xde\x45\xf3\x08\x77\x9c\x9f\x87\xf1\xd5\x1d\x97\xe6\xe4\xe5\xe6\x5d\x6a\x9e\xa6\x8d\xde\x2f\x09\x58\x7d\xb5\xc8\x33\x66\x56\x5f\x26\xd6\x30\xe8\x38\x75\x5e\xd3\xe5\xa3\xb0\xe5\x1b\x9b\xbe\x8f\x0a\xad\x2f\x71\xba\xb5\x7b\x78\xfa\x3a\x51\x2b\x62\x0a\x98\xbe\x17\xb3\x33\x3d\xba\x16\x10\xdf\x2f\x9d\x1d\x5d\xdb\x8b\xf2\x7b\x01\xe9\x78\x6d\x35\x8b\x6d\x5d\xcd\xe5\x33\x6b\xba\xc4\x6b\xd2\x5d\x40\xba\xab\xa5\x6b\x54\x7c\x5b\x14\x72\x5d\xd3\xb9\xc5\xb4\xd1\x35\x97\xd1\xd5\x42\x6d\xb2\xcd\x35\x97\xcd\xd5\x42\x4d\xf2\x95\xd0\x29\x93\x4b\x47\xac\xe6\xca\x65\x62\x65\x0f\x95\xa2\x1d\x15\x14\xba\x5a\x44\x1e\x98\xb6\xac\x66\xd0\x22\xc9\xa7\x6f\x72\x4e\xbc\x6e\xa5\x6b\x3e\xea\xe5\x90\x20\xdc\x5b\x2d\xba\xd0\xe0\xb0\x6e\x41\x58\xb7\xc4\x9b\xf0\xdd\x78\x03\xef\xc2\x2f\xe3\xb9\x52\x7a\x1a\x0d\xaf\x94\x83\x95\x52\x37\x20\xe6\xd0\x89\xe2\x1c\x6c\x00\x74\x05\x62\xda\x44\x9b\x03\x39\xeb\xec\xf7\xe7\x90\xdd\x39\x07\x1b\x03\x51\x0d\xe0\xdf\x91\xa0\xd3\xb4\xe1\x19\x96\xbf\xc1\xfc\x11\xa5\x60\x0e\xcf\x1f\x59\x69\xa2\x14\x98\x70\x17\x30\xec\x6a\x11\xa5\x60\x0e\x77\xcf\x40\x2e\x75\xe5\x01\xfe\x1d\x09\xda\xa5\x41\xb4\x55\x37\xd7\xcb\x21\x97\xb5\xcf\x74\x6f\xe2\x34\x2c\x3a\xb8\x9d\xd3\xd3\x6d\x76\xaa\x29\x6d\x6e\x67\x22\xf1\xe9\x12\xa7\x59\xd3\x32\x32\xd9\xfe\xea\x80\xd6\xbc\xbd\x4c\x5c\xe0\x87\xf0\x30\x3e\xc0\x2f\xe1\xd3\xf8\x5a\x04\xb5\x8d\x9b\x5e\xec\x26\xbd\x19\x58\x19\xd3\xbe\x44\x02\xe0\x25\xae\x66\xb9\xd7\xf0\x25\x16\x11\x19\xe6\xb4\xd6\x99\x58\x19\x3a\x75\x9d\xd3\xf3\x67\x99\x81\xed\x92\xac\xd9\xf8\x23\xf4\x5d\x66\xa7\x3a\xb7\x37\x02\x32\xe6\x42\xbb\xb2\xdb\x33\xe2\x66\x4d\x10\xd1\x60\xfa\x1e\x28\x3c\xbd\xc4\xbb\xf0\xc7\x38\xd5\xd7\xfe\xc3\xf7\x3d\xe7\xad\x6a\x4a\xa9\xd9\x68\x9b\xf7\x1a\x44\x79\xf4\xcc\xc2\xcb\x04\x9d\x7f\x19\x3f\x8d\x07\xf8\x21\xfc\x36\xce\xcf\x6a\x69\xb7\x2d\x37\xf1\xe8\x15\xeb\x85\xc7\xcd\x7a\x58\x02\xad\x18\xf4\x2a\x49\xc0\xce\x4b\x5c\xe5\x78\x09\x7f\x58\xc2\x43\x3a\xf0\xb1\xec\x3f\x2c\x8d\xa1\xcd\xb5\xaf\x7b\x42\xeb\x4b\x9c\xee\x79\xbc\x04\x62\x13\x56\x71\x04\xa6\x6d\xc2\xb9\x9e\x21\x49\x9c\xfa\xbc\xd6\x76\x8b\xd0\x57\xeb\xa6\x8d\x98\xaf\x75\xce\xe5\xe9\xbb\x74\xa5\x62\xbe\xb6\x61\x16\xd1\x2f\xb3\x33\x8a\x76\x00\x12\x5f\x2f\xf1\x2e\xbc\x19\xef\x0b\xd7\xde\xfd\x75\x37\xac\x18\xe3\x89\xeb\x67\x6d\xf3\xe0\xe9\xab\xa2\x20\x4c\xdf\xde\x84\xf3\x57\x2b\xd1\x87\x47\x97\x0d\x36\x3a\xce\x9b\xd8\xd6\xce\x61\x38\xc4\xda\xe8\x05\x9c\x13\xbb\xd1\xab\xf1\x2a\x7c\x75\xf3\xe8\xbb\x71\x76\x6e\x51\xd7\xe9\xf9\x30\x3b\x69\xc0\xe2\xa9\xc1\xad\xce\x61\x16\xcf\xe8\xa7\xf0\xce\xef\x36\xe3\x2c\xc5\xa2\xf5\x8f\x7e\x19\x67\xe9\x8b\xb3\xf0\xbb\xdd\x78\x17\x7e\xf1\xbb\x61\x9c\x7b\x12\xc1\xce\x6a\x38\xd6\xce\xd0\xdd\xf5\xb8\x36\x7e\x77\x1a\x9f\xc2\x1b\xbf\x7b\x1b\xe7\xc8\x22\xb8\x28\x37\xfa\x63\xfc\x11\x1e\xfc\xee\x6b\x1c\x13\x5e\xfc\x9b\xe1\xdb\xb0\x83\xeb\xa4\xbb\x28\x23\xc3\xd7\x49\x07\xb1\x1f\xf6\x6d\x5b\x3b\xdb\xe1\x7b\x94\x83\x58\x0b\xfb\x56\xd6\x52\x31\x7c\x0f\x71\x70\xc3\x70\xdf\x38\x10\x1b\x21\x63\x6b\x44\x25\x7f\x5d\xc7\xea\x23\x3c\x2e\xb1\xe7\x0a\xb5\x6f\xf5\xfa\x3f\x27\x5c\xf5\xfa\x7f\x1b\xae\x37\x44\x47\x7d\x63\x49\x23\x26\xda\xeb\xb7\x6b\x5f\xdc\xd2\xdc\x30\x79\x43\xb1\x0a\x5f\x9e\x56\x2d\x22\x8d\xbc\x43\x17\x5c\x5f\xb9\x05\xeb\xb6\xdc\x32\xaf\xdd\x82\xaf\xdc\x70\x95\x03\xc6\x6f\x68\xb3\x92\x09\xf2\xaf\x9e\xfe\x46\xc7\xd0\xc9\x04\xf9\x97\xde\xcb\xcf\x4f\xf8\xb2\x51\x2a\x67\xee\xf9\xe9\xfc\x2a\xff\x50\x39\xd4\xf3\xe3\x11\xb6\xc4\x73\x04\xbe\xe9\xf2\xd9\x15\x21\x3f\xf9\x71\x19\xed\x6e\xeb\x37\x15\xc8\x2a\x13\xc7\xcf\x1f\xdc\xa5\xc9\x8f\xd3\x68\x96\xd0\x8d\xba\x84\xb9\x4a\x50\xb9\x2c\x95\x1f\x7b\x29\x6e\xfb\x7c\xde\x4a\x7d\x6c\xa5\x08\xbf\x97\x1f\x8f\xd1\x37\xf3\x52\x82\xb6\x57\x1f\xa1\x73\xb1\x84\xbe\xa9\xa7\xdb\x3e\x36\x4e\x65\x23\x04\xca\xc7\xf6\x89\xc4\xb5\xf0\xdd\xb8\xf3\x2f\x96\xde\xc6\x93\x6e\xdf\xd4\x2b\xe8\x9f\xde\x10\x10\x65\xe8\x73\x9c\xd6\x8f\x38\xad\xb5\x55\xa1\x6a\x39\xb3\xa3\x51\x43\xcd\x8d\x0f\x5d\xcd\x63\x33\x9f\xc9\xc0\x9f\xc8\xc0\xad\xff\x6f\x39\xcc\x8f\xbf\x8f\x3f\xfe\xed\x3f\xfe\x73\xfc\xf1\x5f\xe3\xef\xef\x8f\xfb\xaf\x3f\xff\x7c\xff\xf1\xaf\xe7\x6f\xf7\xbf\x7e\xfc\x7b\xa2\x3f\x9e\xf7\xfb\xdb\x3f\xde\x3f\xdf\xff\xfe\xe7\x5f\x7f\xde\xef\x8f\x3f\xfe\xf9\x47\xfe\xd5\xfa\xf7\x3f\x01\x00\x00\xff\xff\x4b\x56\x88\x06\x41\x98\x03\x00"); -func _gea ()(*asset ,error ){_dfd ,_ecf :=_cg ();if _ecf !=nil {return nil ,_ecf ;};_bfg :=bindataFileInfo {_ag :"78ms-RKSJ-V",_bc :1875,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490915,0)};_eda :=&asset {_cd :_dfd ,_dce :_bfg };return _eda ,nil ;};var _cfbad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\x4b\xaf\x65\xb7\x71\x85\xe7\xf7\x57\x9c\xa1\x33\x70\xb4\x37\x59\x7c\x01\x17\x17\x08\x64\x1b\x16\x0c\x27\x41\x14\xc7\x01\x82\x0c\xf8\x14\x1a\x88\x6e\x37\x5a\xad\x81\xff\x7d\x50\xeb\x3b\x96\xe2\x24\x88\x33\x10\x4a\xbd\x9a\x45\x16\x1f\x6b\x55\x91\xfb\xf4\x57\x5f\x7f\xf3\xab\x6f\xde\x3f\x7c\x79\x7c\xf5\x8f\x9f\x3f\xce\x6f\xf7\x97\xc7\xf9\xf0\xbe\x3e\xef\x1f\x3e\xfe\xf8\x79\xee\xc7\xd8\xdf\x7d\x78\x7f\x79\xb9\xc3\x63\x7d\x98\x5f\xfe\xfc\x47\x99\xf9\x7d\xff\xf4\xf2\xe2\xfe\xdf\xfe\xe9\x87\x2f\xfb\xfb\x6f\xde\xcf\xc7\x47\xa4\xdd\xfa\xf1\xd3\xb3\xed\xe3\xf1\xd5\x3f\xed\xef\x3e\xfc\xf0\xe5\xf3\x9f\x1e\xbf\xf8\xbb\xf5\x71\xec\xbf\x79\xac\x7d\x1c\xff\x87\xcf\x6b\x7f\xfe\xf0\xfe\xdd\xe3\x17\xbf\xfb\xf8\x79\xf7\xfb\xa7\xbf\xf8\xf6\xc7\x4f\x9f\xfe\x63\x7f\xbf\xdf\xbf\x3c\x6e\x61\xfb\x7d\xc9\xbe\x7c\xf5\xf5\xef\xfb\xa7\xbf\xef\xdf\xef\xc7\x57\xbf\xfb\xf6\xeb\xef\x7f\xf8\xe5\x1f\x7e\xfb\xf5\x2f\x7f\xfb\xc7\x5f\xfe\x56\x7f\xad\xbf\xfd\x97\xfd\xf9\x87\x0f\x1f\xdf\x1f\xf7\xf5\xb7\xd7\x95\x7f\xc6\xff\xf9\x4f\x9f\xf6\xb3\xbb\x97\xaf\xfe\xf5\x0f\xdf\xfc\xea\xf1\x6f\xf7\xe3\xbe\x1e\x21\xd9\x9d\xff\xfd\x89\xff\xf1\xf7\x1f\xd7\x7e\x5c\xfc\x29\x30\x85\xf9\x71\xed\x1f\x3e\xf5\xb9\x3f\xf7\xf7\xef\xf6\xcb\xe3\xf1\x7a\x5d\x6f\x8f\xc7\xe3\xb5\x5e\x6f\xfe\xa7\x7a\xdb\xfd\xf6\x78\xfd\xcd\xaf\x7f\xf3\xeb\x37\x8f\xf4\xbf\xb5\x7f\xb9\xe9\xe6\xfd\xe3\x97\xb5\x0f\x98\x7a\x78\xbd\xcf\xdb\xa3\x5e\xcd\xdc\xe9\xbf\xfe\xed\xcb\x7d\x5d\xcf\xa1\x3f\xac\xa7\x43\x70\x87\xb2\x9f\x0e\x7f\x1e\xb3\xde\xa9\xbf\x3d\x5a\x8c\xd1\xa1\x0c\x54\x04\xa5\xe6\x50\x05\x3a\xdb\xa1\x9a\x5e\x5e\x6b\xc0\x31\xc8\x31\xdd\xb7\x43\x38\x06\x39\xa6\x58\x1c\xc2\x31\xc8\x31\x65\xef\x3e\xe2\x18\xe5\x98\xab\x77\x1f\x71\x8c\x72\x2c\xb7\x77\x1f\x71\x8c\x72\x2c\xe6\xdd\x1b\x8e\x26\xc7\x9a\xbd\x7b\xc3\xd1\xe4\x58\x9b\x77\x6f\x38\x9a\x1c\xdb\xed\xdd\x27\x1c\x93\x3b\xde\xd7\x65\xde\x7f\xc2\x33\x15\xb0\xe2\x03\x24\x5c\x93\xbb\xde\xd7\xd5\x7c\x84\x8c\x6f\xc6\x37\x04\x1f\x22\xe3\x9b\xf1\x0d\xe6\x63\x64\x7c\x33\xbe\xa1\xf8\x18\x05\xdf\x82\xaf\x5d\x3e\x46\xc1\xb7\xe0\x6b\xc1\xc7\x28\xf8\x16\x7c\x2d\xf9\x18\x15\xdf\x8a\x6f\x2a\x3e\x46\xc5\xb7\xe2\x9b\x2f\x1f\xa3\xe2\x5b\xf1\xcd\xd1\xc7\x68\xf8\x36\x7c\x4b\xf2\x31\x1a\xbe\x0d\xdf\x52\x7d\x8c\x86\x6f\xc3\xb7\x5e\x3e\x46\xc7\xb7\xe3\xdb\xa2\x8f\xd1\xf1\xed\xf8\xb6\xec\x63\x74\x7c\x3b\xbe\xad\xfa\x18\x03\xdf\x21\xdf\xfb\xbe\x7d\x8c\x81\xef\x28\x60\xd1\xc7\x18\xf8\x0e\xf9\xde\x77\xf6\x31\x26\xbe\x13\xdf\xd0\x7c\x8c\x89\xef\xc4\x37\xde\x3e\xc6\xc4\x77\xe2\x1b\xcd\xc7\x58\xf8\x2e\x7c\x2d\xfb\x18\x0b\xdf\x85\xaf\x35\x1f\x63\xe1\xbb\xf0\x4d\xc1\xc7\xd8\xf8\x6e\x7c\xb3\xf9\x18\x1b\xdf\x8d\x6f\x2e\x3e\xc6\xc6\x77\xe3\x9b\x9b\x8f\x71\xf0\x3d\xf8\xd6\xe0\x63\x1c\x7c\x0f\xbe\x35\xf9\x18\x07\xdf\x83\x6f\x2d\xe5\xe5\xb5\x5d\xf2\x6d\x97\x7c\xc3\x75\x45\xc7\x32\x58\x01\x0b\xcd\xb1\x0a\x26\xdf\x70\xa5\xf4\xf2\xda\xe0\x6c\xbb\xf1\xbd\xeb\xed\x18\xbe\x37\xbe\xe1\xf2\x31\x60\x6d\xbb\xf1\x0d\x4e\xee\x06\x6d\x5b\xc0\x57\xec\x6e\xf0\xb6\x05\x7c\x45\xef\x06\x71\x5b\xc0\xd7\x9c\xdf\x0d\xe6\xb6\x88\xaf\x08\xde\xa0\x6e\x8b\xf8\x8a\xe1\x0d\xee\xb6\x88\x6f\x72\x8a\x37\xc8\xdb\x0c\x5f\x71\xbc\xc1\xde\x66\xf8\x8a\xe4\x0d\xfa\x36\xc3\xb7\x38\xcb\x1b\xfc\x6d\xf0\x37\x88\xe6\x0d\xfe\x36\xf8\x1b\xc4\xf3\x06\x7f\x1b\xfc\x0d\xcd\x79\xde\xe0\x6f\x83\xbf\x51\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\xbc\x9d\xe7\x0d\xfe\x36\xf8\x1b\xc5\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\xc6\xe8\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\x37\x9a\xf3\xbc\xc1\xdf\x06\x7f\xa3\x78\xde\xe0\x6f\x83\xbf\x51\x3c\x6f\xf0\xb7\xc1\xdf\x98\x9d\xe7\x0d\xfe\x36\xf8\x1b\xc5\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\xc6\xea\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\xd7\x2e\xe7\x79\x83\xbf\x0d\xfe\x9a\x78\xde\xe0\x6f\x83\xbf\x26\x9e\x37\xf8\xdb\xe0\xaf\xdd\xce\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\x4d\x3c\x6f\xf0\xb7\xc1\x5f\x8b\xce\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\x4d\x3c\x6f\xf0\xb7\xc1\x5f\x4b\xce\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\x4d\x3c\x6f\xf0\xb7\xc1\x5f\x2b\xce\xf3\x0e\x7f\x3b\xfc\x35\xf1\xbc\xc3\xdf\x0e\x7f\x4d\x3c\xef\xf0\xb7\xc3\x5f\x6b\xce\xf3\x0e\x7f\x3b\xfc\x4d\xe2\x79\x87\xbf\x1d\xfe\x26\xf1\xbc\xc3\xdf\x7e\xf7\x4b\x58\xbd\x55\x15\xfc\x39\x95\xff\x6f\xd9\xbd\xdf\x1d\x17\x64\xd9\x83\x82\xf0\x1d\xc2\x27\x89\x72\x87\xf0\x1d\xc2\x27\x6d\x56\x87\xf0\x3d\x30\x98\x36\xab\x07\x7a\x0b\x3b\xbd\x3d\x6e\x5f\xda\x8e\x04\xf4\xf8\xec\xcd\xa9\xd3\x91\x80\x8e\x04\x24\xa5\xc8\x8e\x04\xf4\x48\x6f\xa2\x4e\x8f\xf4\x26\x59\x08\xd9\x5e\x5e\x3b\xa2\xd0\x11\x85\x14\x5c\xc8\x3a\xa2\xd0\x11\x85\x14\x5d\xc8\x3a\xa2\xd0\x8d\xde\x54\xa5\x74\xa3\x37\x5b\xf1\xed\x11\x53\x75\x64\x25\x21\xde\xbf\xf9\x21\xef\x08\x47\x47\x38\x52\xd4\x9c\x10\x8e\x9e\x9e\xfd\xfb\x01\xec\x08\x47\x4f\xf4\x6f\x7e\x00\x7b\xea\x4f\xac\xbf\x3d\x4c\xdb\x9b\xc6\x25\x64\xb4\xb7\x87\x65\x21\x93\x36\xab\xbe\x3d\xac\x08\xd9\x20\xc7\x11\xad\x18\x02\xd4\x11\xa0\x64\x5a\x09\x04\xa8\x23\x40\xc9\x8a\xda\x11\x43\x26\x86\xa4\xbd\xcb\xc4\x90\xb7\xbd\x3d\x92\x4b\x5c\x47\x92\x3a\x92\x94\x92\x56\x02\x49\xea\x48\x52\x4a\x49\xed\xe8\xad\x3c\x7b\x73\x49\xef\x85\xde\xca\x3e\x6f\x8f\xe4\x44\xee\x88\x54\x47\xa4\x52\xd6\xbc\x11\xa9\x8e\x48\xa5\xec\xc4\xeb\x88\x54\xaf\xf4\x96\x9d\x78\xbd\xf6\x27\x66\x6f\x8f\x9c\xb3\x90\x0c\x92\xdf\x1e\xb9\x5c\x42\x2a\xc8\x71\xc4\x67\x54\x07\x5e\xbe\x47\xd9\xc5\xae\x23\x76\x1d\xb1\x4b\x45\xf3\x46\xec\x3a\x62\x97\x8a\x8b\x67\x47\xec\x7a\x23\x86\xe2\xe2\xd9\x1b\x31\x48\x00\x55\xe6\x74\xe4\xaf\xf7\x67\x6f\x9a\x37\xf2\xd7\x91\xbf\x54\x3d\x95\x75\xe4\xaf\x77\x7a\xab\x51\xbe\xf4\xd6\x4f\x7c\x7b\x40\x68\x04\xb1\x23\x88\xa9\x6a\xde\x08\x62\x1f\xcf\xde\xb4\xc7\x08\x62\x1f\xf4\xd6\x82\x7c\xe9\x6d\x9c\xec\x25\xb3\x9f\x76\x24\xb2\x23\x91\xa9\x69\x06\x48\x64\x47\x22\x53\xd3\x8a\x20\x91\x7d\xaa\xb7\x7c\xb9\xfc\xf7\x49\x6f\xd3\x0f\xdc\x7d\x05\x5f\xdc\xb9\x80\x8e\x20\xf5\x86\x90\x76\x84\x34\x5f\x9a\x15\x42\xda\x11\xd2\x7c\x65\xb5\x63\x84\xf5\x1c\xc1\x13\x74\x47\x48\x3b\x42\x9a\x6f\xcd\x01\x21\xed\x08\x69\xbe\x5d\x34\x3b\x42\xda\x37\xbe\xb7\x8b\x66\x47\x48\x3b\x42\x9a\x83\x22\x46\x48\x3b\x42\x9a\x83\x27\xac\x8e\x90\xf6\x83\x6f\xf0\x1d\x1b\x08\xe9\xb8\x9e\xbe\x1e\xcb\x40\x48\x07\x42\x9a\xa3\x17\x0b\x03\x21\x1d\x17\xbe\xd1\x8b\x85\x71\x75\xb0\x67\x01\x9b\x5f\x5e\x07\xda\x3a\xd0\xd6\x1c\x3d\xbc\x81\xb6\x8e\xfb\xd9\x9d\x6b\xfa\x40\x5b\x07\xda\x9a\xcd\x35\x7d\x20\x9e\xe3\x7e\xd6\x69\xd7\xcb\xeb\x40\x3d\x07\xea\x99\x4d\x11\xa3\x9e\x03\xf5\xcc\xe6\x29\x76\xa0\x9e\x03\xf5\xcc\xc9\xd5\x67\xa0\x9e\xe3\x59\x42\x15\x7b\x79\x1d\xc8\xe7\x40\x3e\x73\xd2\x24\x90\xcf\x81\x7c\xe6\xe4\x15\xcf\x40\x3e\x47\x7c\x76\xe7\x15\xcf\x40\x3e\x47\x7c\x66\xfb\xfa\xf2\x3a\xd0\xcf\x81\x7e\xe6\xac\x49\xa0\x9f\x03\xfd\xcc\xd9\xcf\xf1\x40\x3f\x07\xfa\x99\xb3\x27\xa6\x81\x7e\x0e\x0a\x2d\xcb\xe1\xe5\x75\x20\x97\x03\xb9\xcc\x45\x93\x40\x2e\x07\x72\x99\x8b\xd7\x09\x03\xb9\x1c\xc8\x65\x2e\x2e\x85\x03\xb9\x1c\xd4\x5e\x29\xf9\x56\xa0\x7c\x23\x3f\xbb\xd3\x24\x50\xbe\x81\xf2\xe5\xea\x9a\x36\x50\xbe\x81\xf2\xe5\xea\x65\xdb\x40\xf9\x06\xe5\x58\x4e\xbe\x15\x48\xdf\x40\xfa\xb2\xb2\xeb\x40\xfa\x06\xd2\x97\x95\x5d\x07\xd2\x37\x90\xbe\xdc\x3c\xbb\x0e\xa4\x6f\x50\xa1\x15\xf3\xad\x40\xfb\x06\xda\x97\x55\xec\x0c\xb4\x6f\xd4\x67\x77\xae\x91\x03\xed\x1b\x68\x5f\x51\xb1\x33\xd0\xbe\x41\xd1\x56\xa3\x6f\x05\x32\x36\x90\xb1\xa2\x3b\xe6\x40\xc6\x06\x32\x56\xbc\xf6\xfc\x6b\xf9\x7b\xa0\x72\xa3\x3d\x47\xf3\xfc\x3a\x50\xb9\x41\x99\xd7\xa2\xef\x14\x32\x37\x90\xb9\x72\x6b\x8e\xc8\xdc\x40\xe6\xca\xed\x15\xc4\x40\xe6\x06\x32\x57\x74\x53\x18\xc8\xdc\x50\xe5\x17\xae\xe0\x3b\x85\xce\x0d\x74\xae\x04\xcd\x11\x9d\x1b\xe8\x5c\x09\x5e\x23\x0c\x74\x6e\xa0\x73\x25\x78\x3e\x1d\xe8\xdc\x50\x31\x18\x6e\x57\xa6\x81\xd0\x8d\xf9\xec\x4e\x93\x40\xe8\x06\x42\x57\xa2\x17\x09\x03\xa1\x1b\x08\x5d\x89\x9e\x1a\x07\x42\x37\x54\x1f\x86\x70\xfb\x4e\xa1\x6a\x03\x55\x2b\x51\x93\x40\xd5\x06\xaa\x56\xcc\xab\x84\x81\xaa\x0d\x54\xad\x98\xe7\xc6\xb1\xe8\x4e\x25\x63\x88\x97\xef\x14\x42\x37\x10\xba\x62\x9a\x04\x42\x37\xf6\xb3\x3b\x2f\x0a\x06\x42\x37\x10\xba\x92\x3c\x39\x8e\x4d\x77\xaa\x22\x83\x5d\xbe\x15\x68\xdf\x40\xfb\x4a\xd2\x24\xd0\xbe\x81\xf6\x95\xe4\xf9\x7d\xa0\x7d\x03\xed\x2b\xd9\xf3\xdc\x38\x74\x77\xe8\xae\xe5\x97\xd7\x89\x1c\x4e\xe4\xb0\x64\x9f\xc4\x44\x0e\x27\x72\x58\xb2\x27\xf8\x89\x1c\xce\xeb\xd9\x9d\x27\xba\x89\x1c\x4e\xc9\x61\x48\xed\x7a\x79\x9d\xc8\xe1\x44\x0e\x4b\xf1\x49\x4c\xe4\x70\x22\x87\xa5\x78\x86\x9f\xc8\xe1\x44\x0e\x4b\xf1\x4c\x37\x91\xc3\x79\x53\xaf\x55\x7b\x79\x9d\xc8\xe1\x44\x0e\x4b\xf5\x49\x4c\xe4\x70\x22\x87\xa5\x7a\xb2\x9e\xc8\xe1\x44\x0e\x4b\xf5\xe4\x34\x91\xc3\x29\x39\x0c\xa5\xd4\x97\xd7\x89\x1c\xce\xf8\xec\x4e\x93\x40\x0e\x27\x72\x58\x9a\x67\xeb\x89\x1c\x4e\xe4\xb0\x34\xcf\x6b\x13\x39\x9c\x54\x93\xb5\x84\x97\xd7\x89\x1c\x4e\xe4\xb0\x34\x4d\x02\x39\x9c\xf6\xec\xce\xd3\xf5\x44\x0e\x27\x72\x58\x2f\x4f\x75\x13\x39\x9c\x92\xc3\xd0\xbc\x9e\x99\xc8\xe1\x44\x0e\xab\x32\xec\x44\x0e\x27\x72\x58\x2f\xcf\xd7\x13\x39\x9c\xc8\x61\xbd\x3d\xfb\x4d\xe4\x70\x4a\x0e\xe3\x95\x7d\x2b\x90\xc3\x99\x53\x50\x33\x4d\x02\x99\x9b\x92\xb9\x78\x27\x5f\x62\xa4\x6a\x4a\xaa\x62\x30\x5f\x26\xe4\x66\x4a\x6e\x62\x34\x9f\x2a\x24\x9e\x22\x71\xb4\xe8\xe1\x42\xc4\x39\xe6\xf1\x82\x38\xfa\x90\x63\x5d\x82\xdc\xd8\x7d\xab\xd5\xa2\x95\xd7\xca\x31\xb9\x88\xce\xb1\x32\x50\x7e\x7b\xc4\xac\x8d\x19\xab\x08\xda\x59\xc5\xb5\x8f\x38\xf6\x13\x2a\x6f\x8f\xc2\x62\x8c\x5d\x05\x29\x88\xd4\xdc\x11\xfa\x4e\xd1\x37\x66\xad\x2c\x14\x9c\x6b\x3a\xa4\x8b\xff\x5c\x1e\xe3\xd3\x44\xd3\xea\x2c\x42\x5d\xde\x7d\x54\x4a\x99\x8b\xee\x65\x4a\xbb\xd4\x6a\x37\x41\xea\x5e\xd5\xdd\x84\x92\x73\xf7\xf9\xf6\x88\xd5\x85\x60\xee\xbe\x80\x96\xa0\x20\x68\x0b\x92\xa3\xd2\xce\x84\x7c\xf3\x9c\xfe\xf6\x88\x74\x7f\xce\x00\x1a\x82\x82\xa0\x09\xe4\x8e\xcd\x39\xb5\xa0\x19\x26\x36\x4f\x6b\xeb\xea\x01\x28\x38\x64\x59\x50\x14\x34\x8a\x5a\x99\x43\xa3\x02\xd5\x9f\x5b\xf9\x65\xe2\x75\x5d\xbe\x12\x76\xf9\xe2\xac\x4b\x2b\x81\x89\xc5\x25\x6b\x5d\x8b\x11\xd7\xf4\x56\x11\x68\x01\x2d\xdf\x5a\xaf\xae\xd6\xb5\xb6\x20\xee\x3f\x9e\x33\x17\x14\x5e\xb7\x5f\x92\xec\xf2\x4a\x65\xdd\xcb\x80\xec\xed\x61\xd1\xab\x92\x75\xeb\xe2\x84\xb1\xdb\x73\xf7\xba\x75\x26\xd6\xed\xe7\xc0\xee\x48\xab\x0a\x54\xe5\x98\x04\x35\xa0\xae\x56\x38\x0e\x41\xfb\x52\x2b\x41\x9b\x20\xdc\xd8\xad\xe8\xef\x1d\x80\x82\x5f\x45\x2e\x85\xba\x23\x90\x07\x11\xfd\xc8\xad\x7b\x13\x84\x1b\x8b\x95\xbe\x0a\x10\x71\x35\x41\xc4\xb5\x87\x5a\x15\x41\x13\xc8\xd7\xeb\x36\xba\x5f\x40\xbe\x5e\xba\xf5\xad\x7b\x6f\xa0\xad\x56\x40\x47\xd0\x51\xf4\xbc\xa8\xff\x9f\x09\x7b\xdd\x87\xc9\x1d\x4d\xce\x14\xf6\x61\x72\x6e\x2c\x36\x85\x7d\x98\xdc\xd1\x0a\x9b\xf6\xe1\x30\xb9\xa3\xc9\x35\xcd\xe4\x30\xb9\xd3\xd4\x0a\xc7\x0e\xe4\x2b\x6c\x17\x8e\xac\xb0\x1b\xbb\x0d\x47\xe6\x7b\x96\x5a\xe1\xc8\xe4\x74\x18\x74\x1b\x5e\x08\x30\xc6\x6e\x9d\x8f\xc0\xb9\x0d\x7e\x56\xcd\x6e\x20\x03\xca\x6a\x75\x0b\x2a\x40\x0a\xe2\x0e\x82\x06\xd0\x10\x44\xf7\x13\x48\x8b\xee\x5a\xb6\x82\x88\x88\x31\x0b\x74\xaf\xb8\xc2\x20\x08\x3f\x45\x61\x10\x84\x1b\xb3\x20\xc7\x11\x81\x74\xba\x93\xba\x1f\x4f\xc7\xad\xfb\xb8\xe2\x1a\xda\xad\x30\xd5\x57\x51\xf7\x93\xbe\x66\x54\xab\x28\x88\x09\xb9\x31\xa5\xf1\x15\x66\x02\xd2\x76\x14\x5a\x65\x20\xae\xfb\x55\x10\x73\x74\x63\x89\xb8\x26\x73\x9c\x9a\x63\x01\x62\x8e\x53\x71\x05\x4d\x68\x12\x97\x28\x96\x82\xfa\x82\x62\x41\x7c\x4a\x51\xad\xe0\x93\x8c\xdd\x05\xa8\x01\x29\x08\x9d\xc8\x00\x9f\x02\x3c\x17\x9f\x02\x3c\x0f\xeb\xa8\x95\x1c\xb7\x34\x43\xc6\xee\xa2\xf5\x82\x75\x32\xbc\x77\xad\x00\xeb\x64\x2c\x71\x00\x60\x9d\x8c\xe9\xca\xb3\xc2\x66\xbd\xb6\xa2\xcf\x9a\xe3\x26\x7a\x67\x9a\xa5\xac\x20\x36\xa1\x6e\x85\x5a\x14\xea\x26\x54\x11\x31\x11\x2a\x44\x0c\x4e\x2b\x53\xf9\xb9\xc2\x21\x54\x67\x84\xe5\x4b\xdd\x1f\x46\x14\x3b\x32\x67\x15\x76\xc8\xd8\x5d\x35\x47\xd8\x11\xf4\xb4\x92\x39\x00\x87\x20\x74\xc8\x6f\x09\x04\x65\xc1\x8a\x40\xcd\xcf\x2a\xa9\x7d\x99\x94\x25\xa8\x95\xa1\x2c\x86\xb2\x68\xb7\x0d\x65\x31\xd1\x2a\xea\x60\x1a\xb4\x92\x79\xca\x9b\x9d\x05\xb4\x7f\x92\x37\x52\xfd\x4a\x1d\x41\xad\x82\x12\x50\xfa\x49\xde\x92\x1e\x47\x16\xcf\x49\xc8\x5b\x82\x43\x32\x4f\x2d\x4b\x70\x28\x89\x30\x68\x59\x82\x30\x32\xcf\x09\xa5\xae\xf3\x95\x08\xc2\x6f\xcc\x8b\x42\x62\x65\xcf\x36\xa6\x2f\x20\x2b\x93\x6d\x64\xec\xf6\x6b\xe5\xca\x64\x9b\xac\xe3\x6b\xea\x2b\x73\x7c\x65\xec\x2e\x40\x1a\x51\x45\x89\x25\xd1\x9d\xa2\x64\x15\xd8\xe1\xd9\x79\x15\xd8\x21\x93\x52\x52\x2b\xd8\x51\x36\x5b\xeb\xb4\x2a\x1c\x26\x99\x0c\xb7\x0b\x87\x49\x05\x8e\x65\x2f\x17\x17\x05\xce\xaa\x40\x5e\x5b\x2c\x2e\x3d\x4b\x97\x1e\x2b\x3a\xbe\xd4\x3c\x4b\x35\x8f\x55\xb1\x83\x9a\x67\x0d\x71\x5b\x1f\xab\xd6\x80\xdb\x32\x09\xfd\x1a\x70\x7b\x28\xae\xa6\xb3\x3a\x88\x4b\xc6\x5a\x08\x82\x70\xf4\xee\xd3\xe5\xa5\xed\xa2\x9a\x59\xd3\xb7\x36\x5d\x0a\x75\xb2\xb5\x32\x05\x9d\x98\x6c\xed\xc4\x51\xa9\x98\x9a\x67\x2d\x39\xea\x52\xb4\x16\x8e\x32\x49\x85\xe3\x5a\x38\xae\x45\x2b\x5f\x9c\x85\x4e\xc8\xa4\x5b\x54\x58\xa4\xe2\xe5\x84\x49\xb7\xa2\x5f\x10\x46\xa6\x64\xaf\x79\xd6\x3a\x38\x2a\x88\xa0\xe8\xa9\x8c\xd6\xf6\x13\x9d\x82\x08\xb3\x39\xd1\x32\x29\x79\x49\xbf\x36\x27\x5a\x26\x45\xaf\x79\xd6\x26\x77\xc8\xa4\xa8\x93\x43\xb1\xb4\x8e\x6b\x74\x8a\xda\xda\x83\x46\xcb\x14\x6a\x8b\x33\x14\xd7\x71\x19\x4a\xd1\xab\xbf\x75\x90\x21\x99\x14\x73\x10\x14\x80\x8a\xa0\x2c\xa8\x02\xd5\xb7\x47\x32\xd1\xfd\x20\x30\x87\x20\x4a\xf8\xab\xa9\x78\x53\x97\xed\xeb\x68\x74\xaf\xb8\xf6\x75\x9e\xd0\xfd\xf6\xc8\xda\xd3\x7d\x29\x3b\x6f\x55\x49\xc9\x5c\xc2\x37\x55\xd2\xbe\x9d\x7c\xc9\x9c\x75\xfb\x56\xe6\xc2\x24\x55\xa8\xfb\x16\x11\xb7\x8a\x8a\x64\x9e\xb0\x37\x45\x05\x26\xe9\xbb\xc5\xa6\xa8\xd8\xca\xbb\x29\xf9\x7c\x37\x79\x77\x07\x20\xdf\xf9\x8d\x4a\xed\xe8\x1b\x98\xf4\xe1\x61\x47\x6d\x20\xa6\x5c\x97\x5a\x49\x04\xb7\xb4\x2c\xe9\x7d\x73\xa3\x65\x98\x12\x3d\xe5\x6d\x53\x0e\xdf\xd6\x7d\xed\x8a\x2f\xe7\xb6\xde\x80\x9a\xba\xaf\x82\xba\x20\xfa\xd2\x88\x08\xd7\x96\xd8\xa4\x9a\xaa\xa0\x0d\xb4\xf5\x44\x6c\x82\x8e\xa0\x71\x09\xf2\x25\x4c\x03\xc7\x67\xc2\x4e\x82\x22\x50\x55\x2b\x75\x2f\xb1\xc1\x98\x3e\x80\xed\x34\x3a\x50\x57\xab\x26\x68\x00\x49\x92\x02\x90\x56\x35\x79\x0e\x4f\xd5\x73\xd2\x4e\xca\xe1\x18\xb3\xa8\x20\xc4\xf3\x9d\xa6\xa2\xd7\xa6\xa5\x49\xf4\x4a\xc5\x16\x15\xd7\x24\xfa\xa9\x37\x6f\xaf\xc5\x76\x52\x7d\x8d\x31\x5d\x9d\x76\x5a\x4c\xc8\x4d\xaa\x4d\x7d\xad\x00\xa4\x39\x46\x20\xe6\x28\x6e\xd6\xa6\xf5\x12\x37\x31\x66\x51\xd1\xeb\xea\xb4\x93\xa7\xa6\xd4\x74\xe4\xd2\x61\xda\x4a\x2d\xe6\x35\xe2\x4e\x22\x22\x86\x02\x67\xa7\xc3\xb4\x45\xc4\x46\x5c\x87\x09\x51\xc4\x99\x6f\x07\x42\x8f\x31\x73\x5d\xdc\x99\x03\x90\xbd\x88\x4b\xba\x1c\xef\xac\x22\x0e\x63\xfa\xe6\xb0\xb3\xf4\x67\x67\xd7\x9c\xd4\x22\x50\x01\x52\xd2\xf0\x7a\x60\x67\xbd\xd8\xef\x2c\x2a\x34\xd7\xd8\x9d\xa1\x42\xa6\x88\x73\x71\xde\x99\x63\x22\x93\x74\x91\xd9\x99\x63\x92\x55\xd7\x99\xa7\xcf\x9d\x07\x71\x49\x33\x1a\xa1\x72\x4c\x64\xcc\x74\xe4\xf2\x20\xd4\xa1\xb8\x0c\x88\xb8\x94\xb9\x4c\x8b\x43\xe6\xda\xd9\x4f\x4b\x6a\x49\x71\x8d\x09\xa4\x93\x93\x15\x17\x27\x27\xeb\xe4\xb4\xa4\xf5\xe2\xe4\xc8\xd8\x2d\x22\x67\x4e\x8e\x4c\xd2\xc3\xdf\xce\xca\x10\x3b\x4f\xd2\xa7\xa2\x9f\xac\xc4\xd4\x3e\x8a\xc8\x79\x76\x20\x5d\x77\x9e\x8e\x3a\xbe\x59\x27\xa7\x65\x8d\xc8\xc9\xc9\x9c\x9c\xac\x09\x71\x72\xb2\x4e\x8e\x12\xd0\xce\x9c\x9c\xcc\xc9\xc9\x9a\x23\x27\x27\x7b\x41\x98\x5a\xa1\x2f\xa6\xbd\xc4\x21\xd1\x3d\x2f\x82\x58\x5a\x89\xa2\xb5\x5f\xac\x84\xae\x87\x37\xa1\x2e\x56\x62\x69\x87\x0a\x41\xb0\x43\x2a\x1b\x8d\x20\x54\x36\x62\x52\x13\xd3\xf2\xe6\x7c\xa9\x6c\xb4\xa2\xbe\x36\x13\xda\x5a\xd5\x8a\x23\xab\xaa\xf4\x89\x88\xe6\xcd\xaa\xaa\xca\x32\x29\x40\xde\xcc\x51\x55\x96\xbe\x72\xed\xbc\x99\xa3\xb4\xbf\x55\x5a\xb1\xd0\x2a\x2e\x8d\x09\x6d\xa6\xbd\xb5\xf6\x95\xee\x99\xb6\x8a\x4b\x63\x42\x9b\x69\xbb\xc9\x4f\x2a\x20\xc8\x79\x6b\xda\x95\x11\x99\xb6\x4a\x50\x23\xfa\xc3\xb4\x0f\xd3\x96\x23\x89\x42\xc6\xac\x6a\xda\x24\x0a\x99\x67\x0a\xc8\x87\x7d\x94\x6c\xb7\xaa\x20\x90\x6d\x19\x33\x26\x84\x6c\x67\x6a\x57\x0e\xe6\x61\xda\x47\xd7\x56\x69\x74\x3e\x4c\xfb\x68\xb7\x1b\xdd\x33\x6d\xdd\xff\x8c\xe8\x91\x0e\xd5\x62\xa9\xf9\xb5\x75\x53\x8b\x61\x8c\x6c\x55\x50\x80\xa2\xda\xa2\x49\xe5\x8a\x6a\x0b\x8c\x99\x42\x2d\xd0\xbd\x38\xc5\xf3\xe5\x55\xe9\x2e\x24\x0a\x19\x33\xaf\x24\x77\x21\x51\x14\x2e\x7b\xcf\x11\x07\xd0\x90\xe3\xff\x23\x15\x17\xd5\xb1\x18\x6a\xcf\x5d\x90\x91\x82\x8c\xb4\x28\x68\x03\x1d\xf5\x2b\x48\xdf\x58\x31\x66\xca\xe1\x85\x6c\x53\xfc\xe2\xc7\xd7\xb0\x5d\x74\xf1\xc3\xf0\xcd\x7f\x97\x89\xa3\x9b\x7c\xdd\x9a\xc9\xc4\xd1\x4d\xd1\x2f\x21\x76\x99\x2c\x94\x53\x3f\xeb\x33\xda\x2e\x50\x5f\xc6\x4c\xda\x5f\x26\x0b\x85\x1a\x34\xfa\xaa\x40\x5d\x8e\x8a\x0b\xea\x17\xae\x87\x12\x7a\x0a\x60\x4c\x56\xbd\xb8\xcb\x64\xda\xaa\xaf\x93\x97\x57\xbb\x90\xa6\x64\xf2\x15\xb4\x35\xa4\xa9\xa2\x9c\x94\x58\x09\x72\x52\x71\x19\xc9\xfa\x8d\xc0\x2e\xc8\x88\x8c\xa5\x4b\xdb\xac\xd7\x9c\x5d\x96\xfa\x52\x62\x2c\xeb\xd9\x97\xae\x87\x97\xba\x87\xe7\x2a\xcc\xf3\xa5\x04\x44\x61\x8e\x31\x7d\xaf\xda\x14\xe6\x98\x7c\x49\xd5\x0b\x0c\x96\xb1\x74\x6b\xbd\x60\x70\xf1\xd3\x9d\x2f\xb1\xae\x9c\x27\xe4\xa4\x2e\x2c\x21\xa7\x5b\x45\x3e\x1f\x1d\x37\x45\xfe\xae\x5b\x8e\xd2\xb2\x4a\x5f\x95\x7b\xa5\x54\xbd\x42\xfd\xea\x74\xcd\x7a\xba\xd9\x15\xba\xca\x58\x52\x02\xaa\xd0\xb5\xf2\xea\x52\x69\x15\x80\xb2\x1c\x8b\x20\xba\x17\xeb\x92\x72\x52\x25\x2e\x99\x7c\xfb\xad\x65\x57\x58\x27\xc3\x65\x6d\x57\x58\x27\x93\xef\xe7\x88\x03\x48\xbb\x9d\xb2\xa0\x09\xb4\xd4\xca\x04\x6d\x20\x5d\x9d\x54\xb1\x71\x91\xd9\x4d\x5f\xc5\xf5\xb8\xb6\x1b\x44\x94\xb1\x24\x65\x69\xe4\xdd\x26\x8a\x21\xe1\x0d\x0e\xc9\x70\xe7\xda\x0d\x0e\xb5\x49\x2b\xf5\xc5\x91\x93\x31\xfd\xfc\x6a\x37\x8e\x5c\x63\x25\xb4\x1d\x8d\x95\x90\x29\x08\x57\x63\x25\x74\xc1\xca\xfa\xbc\xb3\xb9\x60\xed\x2e\x0e\x05\x1d\x80\x3e\x9f\x90\x17\xd0\xfa\x55\xd4\xee\x70\xa8\xeb\x4a\x17\xa4\xc4\x9d\x93\x23\x63\x7a\x54\xde\x9d\x93\xa3\x8f\xe9\x39\xde\x72\xd4\xad\x05\x63\x77\x05\xc2\x51\xa1\x46\x11\xa6\x13\x6a\x67\xd3\x54\x23\x76\x42\xed\xbe\xf6\x39\x06\xa0\x09\xa4\x69\x4b\xd5\x3b\xf5\x93\x4c\xd6\x6f\x44\x76\x67\x3b\xb8\x31\xea\x19\x7b\x73\x63\xdc\xa3\x2b\xae\x68\x82\x0c\x48\x54\xa8\x40\x09\x48\x71\xa9\xa4\x1a\x6c\xda\x60\xd3\x6a\x16\x54\x81\xaa\x5a\x35\x41\x0d\xa8\xa9\x55\x15\xd4\x81\x54\x35\x3c\xbb\xd7\x61\x1a\x5e\xd4\xe4\xa8\x43\x3e\x28\x8d\xc7\xd0\xf9\x6a\x40\x13\xc8\xd5\x44\x2f\x12\x7b\x50\xe0\xc8\x58\x6a\x9a\x90\xde\xc5\xf6\xd0\xa6\x45\x9d\xaf\xc1\xa6\xc9\x98\x3e\x1e\xef\xc1\xa6\xc9\x58\x92\x62\x8e\x19\x81\x92\x1c\x15\x3d\x5a\x38\x24\x7c\xa9\xd1\x17\x73\xd4\x91\xd3\xfd\x6d\x0f\x8e\xdc\xe0\xc8\x35\x1c\x89\x4b\x92\xa6\x2b\xdd\x1e\x48\x9a\xbe\x37\x58\x16\xad\x06\x95\x91\x0c\x4f\x06\x7b\x20\x69\xfa\xde\x90\xf5\x51\x7b\x8f\xc5\x88\x7a\x17\xd3\x2b\xc2\x1e\x94\x41\xba\x9a\xf3\x4d\x7f\x73\x35\xdf\xba\x87\x67\xfd\x3c\x71\x73\x0f\xc7\x58\xbe\x4d\x50\x01\x2a\x82\xb2\xa0\x0a\xd4\xe4\x08\xd4\x81\xba\x5a\x55\x41\x03\x68\xab\x15\xd0\x01\x3a\x2a\x2e\x7d\x42\x93\x6c\x35\x55\xf4\xe6\x00\x14\x80\x82\x76\xbb\x08\x8a\x40\xbc\x81\x04\x41\x09\x48\x2f\x5e\xba\x41\xcd\x41\xf4\x5e\xfb\xf2\x52\xb2\xe7\x20\x54\xd5\xc1\x7a\x29\xd9\x93\x3a\x58\x26\x5b\xc8\x7f\x99\x8a\x4b\xfa\x1f\x99\x78\x72\xae\x64\x2c\x8b\x3b\x93\x2b\xd7\xf4\xec\x99\xb9\x98\x4d\xb2\xa7\x7e\x5e\x62\x39\x2a\x44\x4e\xcc\x9c\x8a\xfa\x09\x11\xb5\x9e\x4d\xb3\xb8\x33\x39\x31\x32\x96\x75\x69\x99\x64\xcf\xe9\x07\x27\x73\x0b\x9b\x93\xa8\x29\x9c\xc5\x8a\x49\xf6\x9c\x8b\xee\x15\xc4\xa2\xfb\x45\xf7\x6a\x45\x95\x3c\xd7\xcf\x25\xde\xa4\xb2\x9d\x4b\x6f\x45\xe2\xce\x24\xe3\x4d\xcf\x72\xd9\x24\xc4\x93\x32\x56\xc6\xb2\x32\xde\xa4\x8c\x9d\x4a\x82\x26\xa2\x4c\x92\xa0\x8c\x65\xc3\x91\x20\x94\xa5\xb8\xa1\x4c\xb2\xd4\x54\x96\xca\xa6\x09\x91\xa5\xa6\x74\x8b\xda\x70\xa2\x5b\x93\xe7\x49\x42\x3d\xcf\x56\xda\x2c\x55\xc9\x93\xcc\x22\x63\x99\x43\x44\x66\xd1\xf3\x51\xa6\x4a\xe6\xf9\x68\x2f\x3d\xcb\xeb\x3d\x6c\x2f\x44\x6a\x79\x81\x9b\xf5\x33\xd1\xbd\x78\x6a\x90\x49\x51\xd9\x73\x51\xec\xea\x15\x28\x93\x2a\x79\x05\xda\xdb\xaf\x0d\x39\xe9\xa2\xb1\xf5\xa6\x8c\xc9\x14\x59\x9b\x2b\x84\x9e\x7c\x32\x47\x8d\x27\x9f\x7d\x80\x9c\xf9\x87\x17\x96\x73\xf1\xeb\x2d\x5f\xc2\xc3\xdb\xc9\xd1\x7b\x47\xae\x3e\xa1\xc3\x7b\xc7\x09\xd2\xad\xe6\xab\x7a\xf4\x90\xff\x34\xa9\x78\x99\x72\x78\xcf\x3f\x7a\xc2\xcd\xcd\x2f\x1a\x27\x68\x71\x30\xa9\x14\xb5\xd2\xe2\x1c\xbd\x9d\x94\xcb\x4f\xe1\xe1\xed\xe4\x44\xe7\x5e\xb9\xfc\xc8\x9d\x38\x9e\x90\xca\x01\xaf\x59\x4f\x14\x0f\x4f\xc4\xd1\xb5\xe6\xf0\x76\x72\xcc\xf5\x81\xdf\x4c\x1c\x93\x3e\x60\xb2\xb9\x36\x1f\xbd\xa3\xbc\x1e\xf3\x85\x2e\xb7\x1f\xdf\x63\x5a\x68\x4c\xce\xb4\xd2\x42\x1f\x3d\xa7\x14\xfd\xe0\xe9\xf0\x9c\x72\x12\x50\xf0\x20\xb8\xac\x1f\x5d\x1b\x8a\x7e\xc6\x74\x74\x77\x78\x1a\x0b\xbe\x8f\x87\x2b\x04\xa6\xc4\x56\x05\x65\x20\x85\x1a\x69\x55\x80\xb6\x5a\x39\xc4\x4d\xe0\x14\x97\x0c\x7e\x03\x71\x8a\x24\x03\x63\xc1\x80\x9a\xa0\xa9\x56\xd1\x77\x88\x6a\x16\x63\xc1\xe5\xfa\x94\x49\x2b\xd7\xe6\x62\x7e\xc8\x0f\xe5\x26\xc6\x94\xa5\x0e\xe5\xe6\x51\x59\x57\x74\xcb\x3f\x94\x75\xa7\xfa\xf9\x2a\xa6\xe8\xab\xce\x17\xa6\x24\x6d\x6d\xd5\xf9\x3a\x2a\xeb\x8a\xca\xa7\x43\x59\x87\x49\x57\x95\xe3\xa1\xaf\xe7\xef\xf9\xbc\x15\xe5\xd3\x79\xfe\xc4\xcf\xf3\xe2\xa1\x4c\xc1\x14\xfd\x4a\xe9\x74\x5d\x80\x30\x31\x39\x6b\x4f\xd7\xf7\xd7\xa3\x9a\xa4\xb0\x69\xd4\x24\x98\x28\xba\x9f\x2e\x6e\x1f\x55\x08\xa5\x38\x87\x0e\x15\xc2\x19\x40\xce\xc7\x43\xb2\x39\x4a\x1d\x45\x3f\x03\x3c\xca\x1f\x4f\x13\xeb\x4d\x2b\x1d\x5f\x11\xb9\xe8\xf7\x49\x07\x22\x1f\xf1\xb1\xb4\xfc\x97\x37\x27\xff\xff\xef\xfb\xa7\x97\x9f\xfe\x29\xd2\xfc\xf1\xf3\xe7\xfd\xfe\x45\xff\xf0\x49\xff\xd4\xe8\xb1\xf6\xf9\xf0\xbe\x7f\xfa\x47\x54\x9f\x3e\x7e\x72\x2f\xfd\xf7\x9f\x01\x00\x00\xff\xff\xf8\x60\xf3\xef\x70\x35\x00\x00"); -var _bfdb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x4b\xab\x6e\xdb\x95\xa5\x07\xd7\xcf\xaf\xd8\xc5\xef\x2b\xa4\x35\xc7\x1c\x77\x10\x82\x71\x85\xc0\xa4\x6d\x1c\x4e\xdb\x60\x4c\xa2\xd0\xd9\x11\x16\x38\x8e\xc4\x91\xa2\x10\xff\xde\xac\xf6\xb4\x37\x09\x8c\x39\xbb\xb4\xe8\xeb\x9d\x73\x8e\x7b\xef\xbd\xf5\xdb\xf8\xdd\xfa\x87\xfd\x0f\xbf\xfc\xf9\xef\xdf\x7e\xf7\x3f\xfd\xfa\x97\x3f\xfd\xe3\xf7\xbf\x7f\xfb\xe7\x3f\xff\xf2\xf3\xaf\xdf\xff\xf6\x97\x7f\xfb\xf5\x4f\xdf\xbf\xfd\xd3\xf7\x7f\xf9\xf3\x2f\x3f\xfd\x14\xde\x6f\x3f\xff\xf9\x4f\x7f\xff\x90\xfa\xf3\xa7\x7f\xfd\xe3\x5f\x7f\xfa\xe9\xeb\xfd\x7f\xfc\xf7\xbf\xfd\xfd\xfb\xbf\xfe\xc3\x2f\xff\xfc\x97\x6f\x91\xe7\x7e\xfe\xb7\xbf\xfa\xd9\x6f\xdf\x7e\xf7\x3f\x7f\xff\x97\x3f\xff\xed\xef\xbf\xfe\xfb\xb7\xff\xdf\xf8\xf9\x2f\xff\xf4\xfd\xff\xff\xed\xe7\xef\xff\xfc\xf5\xff\xff\xf1\xd7\x9f\xbf\xff\xfa\xe7\x5f\xfe\xc5\xff\xff\xaf\xff\xfd\x5f\x7e\xfd\xfe\xc7\xf0\x5f\xff\xcb\xfa\xc7\xf7\xbf\x3d\xf3\x8f\xff\xf6\xd7\xbf\xfe\xdf\xdf\xff\xf5\xfb\x2f\x7f\xff\xf6\xea\x7f\xdf\x7f\xf9\x59\x7f\x7f\xfa\xdd\xfa\xcf\x7f\xfc\xeb\xff\xf0\xc7\x7f\xfd\xfe\xed\x77\x7a\xfd\x3f\xf1\xfa\x7f\xfa\x7a\xfd\x3f\x3c\xf1\xbf\x7e\xff\xf5\x6f\x7f\xfe\xcb\x2f\xdf\xf2\x7f\xf7\x3c\x59\xff\xd7\xbf\xff\x97\x7f\xff\xeb\xf7\x6f\x9f\xe7\xfe\xf7\xff\xf2\x0f\xfb\xdb\xff\x11\xbe\x85\xe7\xdb\x9b\x63\xcc\xdf\xc2\x1b\xde\xff\xd3\x3f\xfe\x6f\xff\xf9\x2f\x3f\x7f\xff\xf6\x40\x05\x46\xf5\xa7\xbf\xfc\xfc\xfd\x6f\x7f\xfd\xe3\x9f\xbe\xff\xfa\xc7\x5f\xfe\xe5\xfb\x4f\xdf\xbe\xfd\xfe\x79\x9e\xe7\x0f\xdf\x7e\x7f\xef\xbd\x7f\xf8\xea\xe3\xff\xeb\x89\x9f\xc2\xf3\xf0\xea\x3f\xfd\xf3\x9f\xfe\xaf\x3f\xfe\xfa\xd3\x7f\x78\x61\xff\xe1\x8b\x2a\x5f\xd4\xfb\x8c\x0e\x15\x44\x85\x07\xea\xfd\xc3\x57\x0b\x9f\xdf\xe2\xd7\x6f\xe1\x7d\xa1\xd2\x17\xf5\x9e\x0b\xd5\xf4\xe4\xac\x50\x93\xf7\x1a\xd4\xfa\xc3\xb7\xdf\xc7\xe7\x89\x50\x97\x16\x8a\xa8\x4a\x5f\xe2\x82\x52\xeb\xaf\xa9\x46\xeb\x33\x40\x45\x51\x9b\x16\x5a\x12\x75\x4d\x65\xbd\x57\xe8\x75\x6b\xa2\xc2\x81\xea\x7c\x33\x41\x0d\xbe\xe9\x27\xb7\x46\xe4\x9e\xb5\xc3\xf8\xa6\xa8\x1e\xd4\xb3\x93\xa1\xbe\xfa\xf2\x96\xc4\xd8\x7b\x84\xe2\x2b\x9d\x99\x78\x4d\xd1\x97\xe1\xf7\xca\x17\x15\x83\xdf\xab\xfa\xed\x31\x45\x3f\x1f\xc6\xd0\xe9\x67\x61\xb4\x7d\x88\xca\x7e\xd2\xf3\xe9\x27\x97\x66\x30\xba\x9f\x1a\x43\x79\x98\xcf\x7e\xa0\xdc\xba\xe6\x3a\x2f\x9e\x1c\x0f\x14\x2b\x36\x02\x14\xb3\x34\x5e\x28\x5a\x18\x11\x8a\x6f\x0e\x8d\x2f\x0f\x7a\x36\x32\x14\xa3\x1d\x1a\x5f\x9e\xcc\xe0\xa8\x50\xf4\x7a\x34\x28\xf6\xd9\xe8\x50\xac\xed\xd0\xf8\x42\xf7\x93\x57\x3b\x24\xf0\x95\xf9\xb2\x7e\x03\x2a\xb2\x7e\x7c\x65\x32\xd7\xc1\x14\x73\x1d\x19\xed\xf4\x7c\xb2\xeb\x26\xf3\xf9\x30\xf6\x79\x58\x23\x7f\xf3\x42\xb1\xaf\xd7\xcb\x4a\xd3\x97\xc5\x2e\xdf\xa6\x12\x14\xbb\x67\xd1\xde\xc3\xd8\x57\x81\xa2\xd7\xab\xb2\xb3\xfc\xa4\xce\xc3\xbb\x19\xed\xea\xa2\x3c\xbb\x6b\xf0\x1b\xfd\x5c\x13\x8a\x11\xad\x05\x45\x3f\xd7\x86\x72\x3f\x0f\x2d\xf8\xbd\xcb\x6f\x8c\x6f\x3f\xec\x10\xd6\x68\x07\x9e\x64\xa5\x37\xf3\x19\x59\xcd\xcd\x7c\xbe\xac\xfb\xf6\x7c\xfa\x3d\x8f\xcf\xef\x15\xbe\xc9\x88\x76\xe5\xac\xd0\x97\xdd\xd8\x83\xcc\xc4\x66\x6d\x97\xbf\x32\xa0\xfc\xdb\x64\xdd\x19\xfb\x5e\x50\xee\x0b\x7b\xb7\xd0\xc2\x79\xa0\x58\xcd\x13\xa0\x78\xef\x70\xfe\x0a\x73\x7d\x18\x43\xa7\x2f\x87\xfd\xb9\x98\x97\xe3\xfd\xe9\x27\xd9\x83\xde\x67\x87\xbe\x98\x2f\x1d\xfa\xe2\x53\x75\x36\x14\x3d\x3b\x07\xca\x2d\x5c\x5a\xe7\xbd\x4b\x3f\x3d\x4b\x97\x7e\x3e\xcc\xe7\xa5\x9f\x81\x75\xbf\xf0\x89\x2f\x4e\xf4\xfd\x97\x9f\xcd\x81\xff\xbf\x58\xf2\x85\x9d\x79\x5a\x2e\x53\xdd\x99\x88\xdb\xa0\xe8\xe6\xed\x50\x74\xec\xfa\x18\xf9\xbd\x09\xe5\x6e\x2e\x3a\xcd\xc6\xba\x1e\x82\x3a\x16\x24\x02\xe2\x5b\x2f\x54\x10\x15\xfc\x9b\x86\x10\x60\xd0\x5f\xbc\xf1\xdb\xef\x63\x64\xeb\x86\x27\xfd\x07\x11\x10\x9e\xcc\x6f\xa6\x8a\x28\xb6\x75\x78\x18\xc3\xab\x2d\x11\x52\xe4\x88\xf1\xcd\x92\xa1\xb4\x44\x2f\x4f\x66\x0e\xd5\xd7\xe9\x15\xf5\x42\xb1\xb1\x9e\x05\xc5\xc6\x0a\x7e\x92\xc5\x0c\x0d\x8a\xc5\x0c\x09\x8a\xc5\x0c\x7e\x8f\xc5\x7c\x4d\xc1\x14\x5f\x9e\x0c\x30\xc5\x68\x0a\xa6\x88\x00\x7a\x03\x4c\xf1\x09\x50\x30\x45\x8e\xfb\x1b\xd8\x74\x6c\x82\x37\xb0\xe9\x82\x7f\x83\x29\x86\x09\xc5\xf8\x42\x85\x62\x7c\xaf\x9f\x64\x7c\xd1\x14\xe3\x7b\xfd\x1e\xe3\x8b\xa6\x18\x5f\x32\xc5\xf8\x10\x39\x5f\x92\x4e\x94\xfb\xe2\xf1\x31\x2f\xaf\xc7\x47\xeb\xaf\xc7\xc7\x93\x2f\xe3\x83\x99\xbe\x2f\xe3\xe3\x48\xbf\x2f\xe3\x7b\x33\x14\xe3\x8b\xfe\x26\xe3\x43\x18\xbe\xaf\xc7\x67\x8a\xf1\xc1\x50\xbe\x38\xac\xa8\x01\xe5\xf5\xeb\x50\x5e\xbf\x02\xe5\xf5\x73\x7b\x8c\x8f\x43\xf5\xc5\xab\x44\xd1\xcf\x84\x98\xf6\x5c\x27\x89\x8e\xc8\x9e\x7f\xf3\xc3\x8e\x64\x35\x33\xbf\x2d\x5a\x2f\xde\xc9\x8c\xbd\xb0\x5b\x61\x1a\x6f\xb3\x6a\x43\x5f\xa4\x32\xc4\xb8\x4d\x0d\x9e\xa4\x67\x52\x12\x62\x84\xed\xbe\x9d\x6f\xc2\xbc\x5f\x29\x02\x31\x6e\x66\xb0\x73\x3a\x36\xfd\xec\x6e\xcf\x54\x85\x62\x26\xa4\x08\xc4\x88\xb0\x78\x3b\xad\x23\x7c\xdf\x8e\xc2\xf2\xa1\x50\x04\x3e\x2d\x2c\x18\x34\xe3\x93\x22\xf0\x7c\xc6\x20\x45\xe0\x09\x91\x55\x91\x22\xf0\x04\xaf\xbb\x14\x81\x27\x24\xd6\x68\x20\x2c\x38\xb7\xaf\x14\x81\x27\xa0\x78\xbc\x03\xa5\x6b\xd2\xc2\x80\x4b\x6d\x56\x45\x8a\xc0\x13\x0a\xed\x49\x11\x78\x42\xe2\xc9\x43\xcf\x10\xfd\xaf\xd8\xe7\xf3\x20\xfa\xdf\x8b\xa8\x9a\x7c\xe5\xea\x2b\x0f\x9c\xe1\xbd\x7c\xc5\xbb\xe7\x22\x52\x2f\xa3\x15\x1f\x7c\xc2\xcb\x4e\x16\x1f\x7c\x42\xf4\x93\x03\x8a\xd9\x15\x1f\x7c\x82\x77\xab\xf8\xe0\x13\x92\xbf\xc2\x2c\x7d\xed\xdd\xdf\x64\xc9\xef\x45\xda\x5e\x7f\x84\x09\xcc\x6a\x20\x3e\x0c\x61\x5f\x28\x26\xf0\x1e\x28\x26\x10\xb9\x15\xc5\x3e\x9f\xc0\xb1\x8d\x62\x9f\x4f\x48\x5a\xf6\x98\xac\x8b\x9a\xd2\x96\x7f\x6a\x82\x3a\x50\x6a\x21\xf1\xcd\x04\x23\x4a\x3a\xa8\x4f\xca\x50\xe9\xab\x2f\x63\x3d\x7a\x2f\xe5\x57\x14\x8c\x21\xe5\x08\xe5\xdf\xa6\x28\x98\x5b\xca\x4b\x54\xf2\x93\x1b\x6a\x42\x1d\xa8\x0d\x75\x45\x65\xbe\x52\x68\x2f\x37\xa8\x00\xc5\x37\x85\x09\xc6\xaa\x7e\xb2\x42\x69\x4b\xa4\x4a\xcf\x3a\xed\x55\x7a\xd6\x79\xb2\xd2\x97\xc1\x57\x1a\x5f\x41\x9b\x48\xd2\xed\xc7\xe2\x48\xa7\x56\xa0\x68\xbd\xd1\xc2\xf2\x7b\x4d\xd4\xce\x50\x1d\xaa\x42\xd1\xc2\xf1\x57\x18\xd1\xa1\x67\x9d\x11\x1d\xbe\xd2\x69\xfd\x46\x28\x7d\x65\x23\x9c\x92\x0e\xe3\xd8\x9e\x6b\x1d\xc6\xb1\xd1\xbc\x93\x0e\xdc\xd8\x08\x84\xa4\x03\x37\x36\x1b\x39\xe9\xc0\x8d\x8d\xa8\x4a\x3a\x70\x63\x23\x9c\x92\x0e\xdc\xd8\x5e\x31\x1d\xb8\xb1\xd1\x4c\x93\x34\xe8\xb1\xa3\xdf\xa3\x2f\x5e\xbf\xa1\x11\xed\xc4\xf8\xc6\x86\xf2\x7b\xf4\x25\xfb\x9b\xf4\xc5\xeb\x37\xe9\x8b\xd7\x6f\xd2\x17\x50\x47\x9a\xf4\x05\x2d\x2b\x49\xbb\x1e\xbb\xf2\x95\x49\x0b\xde\x91\x8b\x27\x1b\x7d\x59\xf4\xda\x6b\x2b\xbd\x78\x6c\xf4\xc6\x24\xbd\x78\x6c\xf4\xbf\xb4\x98\x41\xaf\xe6\x62\x06\xbd\x9a\x8b\x5e\xc3\x30\xd3\xa2\xd7\x30\xc5\xb4\xe9\xf5\xa1\x85\x4d\xaf\xbd\x9a\xd2\x61\xc7\xbe\x7e\x52\x2d\x1c\xf4\xfe\x24\xed\x73\x1c\x44\x47\x92\xf6\x39\x4e\xf0\x7b\x6a\xe1\x20\xfa\x93\x34\xcc\x71\x22\x7b\x42\x5a\xe4\x38\x89\xbe\x48\x8b\x1c\x27\xf9\x37\xbe\xe2\xd9\x95\xde\x38\x8e\x67\x57\x7a\xe3\x38\x99\x3d\x21\xb5\x6e\x1c\x34\xda\x24\x76\x36\x0e\x2a\x58\xba\x7c\x93\xd9\xcd\xe2\x28\xe3\x30\x9f\xf9\xe1\xbd\xe5\xdf\xe8\x0b\x73\x96\x1f\xda\xdb\x7e\x92\xf6\x4e\x83\x62\x44\x47\x63\xcf\x81\x6f\x9e\x0d\xa5\x39\x3b\x97\xaf\x04\x46\x0b\x77\xcb\x52\x6d\xc6\x61\x06\xb3\xd4\x97\x71\x1f\xbf\xa7\x5e\x5f\x94\xae\x2c\x15\x65\xdc\x68\x6a\x42\xbd\x50\x0b\xca\x2d\x5c\x28\xed\x97\x2c\x05\x62\x5c\xe6\x2c\xbf\x7c\xa5\x76\x28\xbe\xd2\x9e\x1f\xb0\xe4\xfc\xd2\x40\xa3\x01\xe9\x08\xe3\x36\x86\x10\x35\xd8\x8b\xce\x9c\x63\x80\x62\x40\x51\xd3\x79\xa7\x29\xba\xe2\xc9\x8d\x1d\x8a\x29\x8b\xb4\x00\xdc\xcb\x91\x16\x3c\xd5\x49\x53\x76\x3d\x81\xd2\x68\xc7\xf5\x04\xa6\xaf\x29\x9b\xcf\xe3\xdf\x2a\x94\xdf\x6b\xa2\x3c\x81\xa9\x43\xf9\xc9\x25\xea\xf5\x57\xae\xa8\x04\x25\x5d\x66\x3e\x6c\xba\x9c\x03\x14\xdf\x14\x9b\x9f\x4f\x3a\x50\xb4\x9e\x2b\x14\xad\x67\x26\x37\xd3\x7a\x66\x31\x25\x02\xe6\xd3\xe8\x4b\xa6\x75\xcf\x67\xa6\xf5\xc6\x82\x15\x5a\xef\x01\x2a\x41\xd1\x7a\xe5\x37\x0c\x33\xb9\xf2\x1b\xb0\x34\xd7\x0c\xe5\x27\xb7\x28\xcf\x67\x3d\x50\x7e\x92\xf6\x38\xd2\xb9\xf1\x4d\xcc\x2d\x59\x4c\x7f\x06\xcf\x99\x18\xf4\x0c\x9e\x25\x19\x66\x66\x40\x9b\xcf\x62\xd0\x33\x24\x5a\x10\x83\x9e\xc1\x33\x28\x26\x3c\x03\xac\x2e\x0f\xbe\x82\xa8\xca\x83\xaf\x60\x32\xca\xd2\x6c\x66\xa8\xfe\x8d\xd6\x3d\x4b\xd2\x6c\x66\x68\x6c\xf2\x41\x7b\x8d\xfd\x32\x68\xaf\x31\xbb\x62\xbb\xd3\xf8\x2b\x0f\x5a\xf7\x9c\x4d\x5a\x07\x7a\xe6\x49\xeb\xcb\xbf\x69\x35\x03\x5a\x5d\x96\xc1\x63\xda\xe4\xf0\x85\x94\x45\xb1\x2a\x93\xd6\x8f\xdf\xa3\xf5\xeb\xf7\x26\x14\xeb\x3e\x17\x14\xfd\x14\xf3\x9e\x01\x93\xdf\x17\x32\xff\xf6\xfb\x69\x43\x49\x96\x51\x63\xbe\xe0\x93\x2c\xe6\x3d\x5f\x74\xf4\x2c\xe6\x3d\x6d\xda\xca\x32\x6a\x4c\x9b\xd2\xb2\x8c\x1a\xd3\xc6\xba\x2c\xc6\x3e\x5f\xcf\xb5\x18\xfb\x7c\x3d\xd7\x32\x6a\x4c\x9b\xe7\xb2\x98\xf7\x7c\x3d\xd7\x62\xde\xf3\x4b\xe5\x16\x45\x7b\xa8\x05\x59\xe6\x81\xf9\x02\xe5\xf3\xa1\xd7\x68\xbb\xf9\xf0\x15\x54\x86\x2c\xe6\x3d\x5f\xcc\x7a\x59\xe6\x81\xf9\x62\x8a\xc9\x87\x11\x79\xae\x0f\x2d\x78\xae\x0f\x23\xc2\xd8\x93\x0f\xbd\x46\xb7\xcf\x87\x5e\xa3\xdb\xe7\x43\x5f\x30\x12\xe5\x4b\xeb\x66\xbb\x52\x0e\xe7\x97\x8e\xf8\xd3\xef\x9f\x22\x65\x6d\x46\x78\x41\x91\x02\x38\x23\x73\x5d\x84\x67\x67\x44\xf4\x17\xb1\xf2\x19\x99\xb3\x22\x44\x39\x23\x8a\x63\x11\xa2\x9c\xb1\x74\xa8\x02\x35\xa1\x2a\xd4\x81\xd2\xcc\x47\x94\xae\x22\x96\x3c\x63\xe5\x9b\xc2\x7b\x33\x22\x56\xca\x4b\xcf\x10\xd3\xe5\xa5\x67\xcc\x75\x79\x69\x61\xf8\x3d\x5a\xf8\x9a\xdd\xdf\x64\xc9\xe5\xa5\xf1\xe5\xd7\x18\x10\x36\xc5\x22\xd8\x36\x0d\x87\x4a\xa4\x2b\xe8\x63\x25\xd2\x15\x2c\x5b\x25\xd2\x15\x26\xbe\x44\x26\x82\x89\x2f\x91\x89\x38\xfe\x0a\xdd\x44\xf2\x97\x48\x37\x59\x86\x12\xb5\x98\x11\x29\x56\xc4\xd8\x67\x0a\x7e\x6f\x40\xf9\xc9\x09\xe5\x27\xb5\xd0\xe9\xf5\x93\x17\x8a\xbe\x48\xbb\x9e\x89\x2d\x5f\xc4\xf4\x67\xca\xa6\x12\x14\xdf\x84\xe9\x27\x74\xa7\x02\xd3\x4f\x48\xfe\x02\xd3\x4f\x48\xfe\x92\xe8\x0b\xec\xa5\x24\xfa\xd2\xfc\x15\xfa\xd2\x19\xbb\x30\xc1\x4c\xc3\xed\x1d\x28\x3f\x49\x3f\x39\x00\x05\x61\xf1\xa5\xb2\x89\x0a\x50\xcc\x35\xc2\x22\x81\x33\x4a\x66\x0c\x88\xbf\x92\x19\x03\xba\x45\xc9\x19\x8a\x16\x10\x2b\xc9\xeb\x87\x58\x49\xdb\x2d\x30\x06\xaf\x4a\xa6\x9f\x80\xb8\x82\xe8\x48\x78\x06\x4a\xa1\x2f\x37\x40\xd1\x17\xc4\x66\x91\x21\x68\xda\x84\x53\x10\x2b\x36\xc5\x14\xf9\x02\xa6\x4d\x0e\xa5\xaa\xbd\x8c\xfe\x50\xea\x84\xe2\x49\x81\xf7\x99\x3d\x4b\x42\x0f\xd3\x36\xbe\x22\x4d\x7f\xda\x16\x59\x10\x24\xd9\xa3\x15\x24\x9f\x19\x71\x54\x04\xc9\x67\x86\xb5\x16\x04\x49\x09\x7e\x72\x42\xf9\x49\xad\x51\xc1\x34\x52\x04\xbb\x67\x79\xfd\x9e\xd6\xa8\x78\x0c\x08\xa0\x82\x38\x2a\x08\x20\x5b\x3b\x0b\x02\xc8\x36\xc5\x82\x00\x2a\x58\xd5\x0b\x02\xa8\x78\x44\x42\x01\xb3\x20\x6e\x0b\x02\xa8\x6c\xff\x46\x3f\xaf\xdf\xa3\x9f\xd7\xbf\xd1\x4f\xcf\x35\xe2\xa8\xe2\x19\x28\x88\x9c\xea\x5e\x4f\x8d\xbd\x62\x6a\x2a\xb2\xa3\xcf\x8a\x48\x2d\x88\x9c\xea\x31\x20\x72\x6a\xf2\x7b\x1a\x7b\x85\xb1\x17\xd9\xd8\x67\xf5\xf8\x26\xed\x79\x7c\x8b\xf6\x2a\xa7\x43\x78\x61\xd6\x4a\x5f\x10\x39\xd5\xe7\x01\x91\x53\x51\x4a\xca\xe6\x3d\x84\x68\xd9\xbc\xe7\x59\x92\x6e\x3f\x2b\x8a\x47\x91\x6e\x3f\x2b\x86\xca\x82\xe8\xa8\x18\x58\x0a\xa2\xa3\x7a\x96\x10\x1d\xd5\xb3\x74\x34\xa2\x86\xb2\x56\x10\x01\xcd\x5c\x43\xda\xfc\x6c\x18\xf2\x8a\xcc\x18\xb3\x61\x2e\x2b\xb2\xf4\xce\x86\x52\x52\x64\xe9\x9d\xcd\xf3\x29\xe3\xc4\x6c\x60\xeb\x72\x69\xc1\xf3\x79\x69\x01\xf4\x5e\x64\x9c\x98\x0d\xbb\x42\x41\x90\x34\xe6\xb3\x0a\x13\xcc\xc6\x7c\x56\x04\x49\x2b\xf7\x07\x2c\xb9\x0a\x3c\xcc\x56\x03\xaf\x65\xa8\x06\x55\xa0\x16\x94\xa6\xba\xa1\xbd\x54\x59\x5e\x67\x1b\x7e\x92\x21\x4c\x77\x85\x21\x4c\x77\x85\x21\x4c\x3f\xc9\x24\x61\xd9\xaa\x0f\x43\xc0\x5a\x56\x03\x43\x40\xf6\x56\x41\x90\xd9\x60\x28\x35\x30\x81\x6c\xe4\x1a\x18\x1e\x4c\xbf\x22\x0b\x1b\x5a\x4f\x45\x16\xb6\xc3\x88\x02\xfd\x3c\xfe\x26\xfd\xbc\xfe\x26\xd3\x89\xd6\x53\x65\x25\x9d\xed\xfa\x9b\xea\x67\x7f\xdc\x9e\xfa\xd9\x39\xd2\x55\x56\xd2\xd9\x11\x01\x15\xc9\xd8\x93\xa9\x04\xc5\x7b\x02\x32\xb3\x73\x00\x2a\x52\xb3\x27\xfa\x89\xd4\xec\x2c\x6d\x45\x34\xf6\xec\x27\x35\x67\xdd\x4b\x8b\x68\xec\xc8\xf3\xfa\xd2\x17\x2c\xf5\x15\xd1\xd8\xbd\x62\x88\xc6\xee\x15\x43\xfc\xf5\x56\xa1\x34\xbe\xee\x35\x8a\x7c\xd3\x6b\x94\x02\x14\x3d\x4b\x7c\x13\x93\x4a\x4d\x8c\xc1\xab\x82\x90\xe9\x08\xdf\x8a\x20\xe9\x9e\x6b\xc4\x43\x47\xc0\x56\xc4\x43\xf7\xcc\xcb\x48\x34\xc7\xe3\xdf\x34\x86\x81\xfd\xb6\xc2\xe6\x07\xba\x61\x95\xe5\x75\x0e\xcf\x27\x58\x62\x60\x3d\xae\x32\x12\xcd\x81\xe1\xa9\x16\xf5\x65\x20\x52\x6b\xa1\x05\xcf\x60\xd5\xd8\x07\x7a\x4e\xad\xbc\xe7\x59\x42\x20\x0c\xcf\x8b\xcc\x49\x73\xa0\xf5\xd4\xa6\x99\x18\x9e\xa5\x46\xcf\x70\x51\x56\x70\xc6\x98\xb4\xde\x68\x01\xab\x65\x6d\xb4\x80\xb0\xa8\x32\x2e\xcd\x81\x68\xac\x8d\xf6\xae\x5b\x50\x7b\xf3\x71\x0b\x1b\xca\xef\x1d\x28\x7f\xf3\x42\xb1\x2a\x88\xa3\x89\x91\xa8\x82\x6b\xa6\x77\xa4\x1c\xce\x73\xa2\xa2\x54\xd9\x99\xe7\xf4\xfe\x94\x89\x6a\x4e\x8c\x44\x55\x76\xe6\x39\x51\x58\x2a\x78\x68\x22\x36\x2b\x22\x67\x62\x24\xaa\x88\x9c\x89\x91\xa8\x0e\x5a\xc0\xc8\x57\x11\x39\x13\x91\x5a\xc1\x3c\xd3\xeb\x20\xb7\xee\x9c\x18\x89\x2a\xe2\x68\xa2\xe8\x54\xc4\xd1\x44\xb5\xa9\x88\xa3\xd9\xfc\xde\x84\xf2\x6f\xcc\x12\xda\x67\x1d\xcc\xd2\x70\x7b\xcc\x92\x79\x0f\xa2\x6a\xa2\xda\x54\x90\xd3\xf4\xbe\x06\x39\x4d\x54\x9b\x8a\x18\x9b\x88\xf7\x0a\x72\x9a\x5e\xb1\xc9\x2c\x79\xc5\x26\xe3\x33\xef\x01\x55\x4d\x4c\x4d\x15\x11\x37\xbd\x9a\x20\xa7\x85\x07\xaa\x22\xb8\x96\x57\x0c\xc1\xb5\xbc\x62\x32\x4a\xcd\xf5\xd6\x1f\xb1\x64\x20\xcf\xf2\x82\x21\xd3\xd6\xcb\xc4\xcb\xe7\x3a\x17\x1a\x43\x95\xcf\x75\x2e\x2f\x1f\x32\x6d\x79\xc1\x64\xaf\x9a\x0b\x1d\xa8\x22\xd3\x16\xc0\xbe\x02\x79\x96\x27\x1e\xc8\xb3\xda\x81\xd2\xf0\x16\x0e\xc4\x8a\x4c\x5b\x9e\x78\x59\xa1\xe6\xf2\x04\x22\xb7\x6c\x6b\xad\xc8\xad\xb5\x68\xe1\xf2\x1e\xfa\x5f\x45\x52\x2d\x74\xa7\x86\xa4\x5a\x18\x4a\x1a\x02\x68\x5d\xff\xc6\xf8\xae\x7f\x53\x7b\x9b\x98\x87\x86\x90\xd9\xf8\x94\x1b\x42\x66\x23\x7b\x1b\x42\x66\xa3\x81\x35\xb9\xf7\xe6\x7e\x4d\x6d\x28\x7f\x53\x3d\xdb\xb0\x97\x86\x90\xd9\x30\xe8\x86\x90\xb1\x25\xb4\x21\x48\x36\x12\xb5\x01\xaa\x36\x1a\x4a\x43\x90\x6c\xf4\x8e\x86\x40\xd8\x3d\x42\xf1\x4d\x8c\x4b\x0d\x81\xb0\xd1\x49\x1a\x02\xc1\xd6\xce\x86\x40\xd8\x30\x9b\x86\x40\xd8\x08\xca\x86\x40\xd8\x9e\x33\x04\x82\xed\x9b\xed\x65\x7c\x87\x99\x00\x47\xed\xeb\xaf\x30\xbe\xeb\x16\x2e\x14\x5f\x91\xd9\x6b\x1e\x58\x4f\x03\x63\x1d\x5c\x94\x0d\x41\x72\xd0\xf8\x1a\x38\xea\x78\x76\x11\x24\xb6\x84\x36\xb0\xd2\x09\x17\x4a\x7d\x39\xc9\x2d\x6c\x28\xfa\x89\x90\x39\x18\x9e\x1a\x42\xe6\x60\x78\x6a\x20\xa0\xe3\xd9\x05\x01\x1d\xcf\x2e\x08\xe8\x14\x81\xf7\x06\x22\x39\x68\x7c\x0d\x44\x72\x3c\xf3\x98\xa8\x0e\xac\xa0\x21\x64\x0e\x4a\x42\x03\x4b\x1c\x50\x47\x03\x3d\x1c\xc4\x51\x93\x43\x6f\x5e\x7c\x24\x0d\x2c\x71\x11\xda\x0d\x2c\x71\x3d\x22\x0c\x56\x37\x33\x2f\x18\xac\x6e\xf7\x93\x7c\xc5\xeb\x87\x90\xb9\xcb\x4f\x6a\xfd\xee\xf6\x6f\x13\xca\xef\x2d\x28\xfa\x82\xd9\xeb\xa2\xbe\x34\xcc\x5e\xf7\xb8\x67\x5f\xeb\xb7\x1e\x44\x63\x93\xd9\x6b\x3d\xa8\x0c\x4d\xa2\x6a\x3d\xb0\xdd\x26\x51\xb5\x9e\xec\x27\xa3\x28\x14\x88\x26\x71\xb4\x1e\xf7\x5a\xbe\x8e\xf5\x74\xbf\xb7\x44\x61\x36\x69\x12\x47\xeb\x21\x1e\xa9\x09\xc9\xac\xc7\x23\x12\x5a\x59\x0f\x8a\x40\xeb\xf4\xcc\xe3\x13\xd3\x5f\x0f\xa2\xbf\x0d\xda\xf3\x5c\x0f\xbe\x42\xf4\x55\x1b\xb4\x87\xe1\xa9\x89\xb1\xaf\xe0\x1d\x29\xc6\xbe\x02\xc2\xb0\x89\xb1\xaf\x80\xca\xd0\xc4\xd8\x97\x8d\x7c\x4d\x8c\x7d\x05\x14\x88\xb6\xf8\x8d\x98\x95\x26\xb6\xbb\x82\xe7\x4c\x31\x39\xcb\x0e\xbd\x26\xe3\xd2\xb2\x91\xaf\x2d\x5a\xcf\x3f\x32\x5c\xb4\xcd\x27\x31\xbf\xb7\xcd\x27\xd1\x2d\x9a\x58\xf2\x0a\xe8\x16\x4d\x2c\x79\x85\x46\xc7\xe4\x5e\x58\xa1\xfb\xbd\x09\xe5\xf7\xe8\x0a\xd1\x18\x6d\x33\xd8\xce\x26\x38\x0c\x88\x00\x9d\x76\x18\xac\x17\xe5\xd0\x3a\xf2\xae\x1d\x5a\xf7\x16\x3c\xb4\x8e\x4e\xd2\x64\xbd\x5a\x01\x06\xdd\x64\xbd\x5a\x01\x09\xd7\xc4\xe6\x97\x6d\x8a\xed\xd0\x4f\x6f\xcf\xc3\xb4\xf8\xe0\x1c\x16\xe5\xf8\x37\xfa\xe9\x85\x16\xac\x59\x01\xf7\x57\x93\x77\x76\x39\xe0\xa9\xc9\x3b\xbb\x5e\x2f\xa6\x84\xc5\x72\xb0\x50\x93\xb0\x58\x0e\x24\x6a\xf2\xb2\x2e\x47\x94\x74\x59\xc4\xd6\x8b\x86\xd2\x05\x64\xd6\x8b\xf8\xeb\x12\x16\xeb\x25\x76\xa1\x0b\x91\x2c\x5b\x18\xbb\x84\xc5\x7a\x39\xb6\x5d\x02\x61\xbd\xd9\xbf\x2d\x28\xff\x46\x7b\x1c\x8e\x2e\x81\xb0\x5e\x8c\x2f\x5d\x02\x61\xbd\xac\x74\x0f\xf4\x85\x95\xee\x81\xf1\xe1\xd4\xea\x81\xf1\xb5\x00\xc5\xf8\xba\xdf\x63\x7c\x1c\xb1\x1e\xe8\x4b\x67\x44\x81\xbe\x60\xb4\xe9\x42\x16\xeb\x85\x81\xf5\x97\xf1\xa1\xaf\xf4\x97\xf6\x30\xc5\xf4\x97\xf1\xb1\x2a\xfd\xa5\xd7\x98\x4d\xfa\xcb\x57\x30\x9b\x74\xb1\xf9\xf5\xde\x02\xa5\xaf\x44\x56\xa5\x8b\x41\xaf\x88\xde\xd8\xc5\xa0\x97\x2d\x8c\x5d\x06\xab\x15\x13\x33\x21\x2f\xc5\x8a\xc5\xbf\x69\xae\xa3\xe7\x45\xec\x7a\xc5\xfa\x42\xf1\x4d\x58\x72\x4f\x7c\x13\xe5\xa2\xcb\xf0\xb4\x6c\x53\xec\xc2\x0b\x2b\xa2\x40\xf4\x4c\x7b\xdb\xbf\xd1\x1e\x36\xd3\x9e\x3b\x14\xb3\x24\xdf\xc3\x8a\x88\xb1\x2e\x03\xd2\x4a\x8f\x29\xb5\x67\xd3\x5d\x17\xb2\x58\x09\xd1\xdf\x65\x5c\x5a\x09\xd1\xdf\x25\x10\x56\xc2\x1d\xd5\x85\x3a\x96\x8d\x75\x5d\xe2\x61\x25\xef\x1e\x05\xa8\xae\x54\x4c\x75\x28\x7f\x45\x7d\x49\xb8\xa3\x7a\xa1\x2f\xcd\xdf\xa4\x2f\xdd\xdf\xa4\x2f\x88\xfe\x5e\xe9\x0b\xe2\xbd\x57\xfa\x32\xfd\x1b\x7d\x41\xa0\xf7\x4a\x5f\x10\xe1\x5d\x42\x66\xd9\x08\xd6\x25\x64\x56\xba\x03\x4a\x3b\xcb\x11\x4f\x5d\x62\x65\x39\xe2\xa9\x4b\xac\x2c\xc7\x38\x75\x89\x95\xe5\x18\xa7\x8e\xe8\x70\x8c\x53\x47\x74\x38\x96\xa7\x0b\xe5\x2c\x47\x12\x75\xa1\x9c\x95\x09\xa8\xec\xc2\x0b\x2b\x23\xb4\xbb\xcc\x5e\x2b\x7b\x96\x06\x5f\xf1\x4c\xc8\x35\xbd\xb2\xf7\x84\x0c\x56\x2b\x83\xb8\x3a\xc2\x22\xe3\x3b\xea\x08\x8b\x8c\xef\xa8\x0f\x5a\xf8\x52\x9e\x7e\x93\x25\x77\xe4\x48\xf6\xe4\x22\x47\x1c\x67\xda\x91\x23\x8e\xc7\xeb\x13\x0a\x56\xd7\x65\x69\x5a\x8e\x64\xed\x8b\x4e\xc3\xf8\x3a\x92\xc3\x36\xbe\xbe\x18\x3a\x81\x67\x7d\xd1\x69\x5c\x4e\x7d\x31\xf1\xe8\x5c\x1d\xa9\x92\xbd\x60\x8a\x6f\x5c\xc5\x8b\x82\x08\x28\x5e\x14\x58\x79\xc1\x0e\xd4\x61\xde\xc5\x13\x0f\x4b\x2e\x04\x5f\x75\x58\x72\x89\x8c\x41\x96\xa6\x55\xbc\x28\xb0\xe4\x82\xbe\xd2\x61\xc9\xb6\x1b\x76\xf9\x8d\x57\x31\x73\x93\xc6\xbe\x1c\xc8\xd7\x61\xc2\xa5\x30\xf1\x30\xe1\x82\xe9\xa7\xc3\x84\x4b\xf5\x93\xb4\xe0\xc5\xbc\xb4\xc0\x91\x1e\xd2\xdf\x57\xc1\x09\x33\x1e\x46\x84\x8b\x6b\xc0\xbc\x0b\x46\xa2\xf1\x30\xbe\xee\xf7\x0a\xd4\x82\xa2\x2f\xc4\x53\x8e\x87\xbe\x0c\x7f\x93\xbe\x00\xe2\x86\x8c\x3d\xab\x60\x32\x1a\x32\xf6\xac\x82\x4e\x32\x02\xa3\x45\x0b\x19\x81\xd1\x6e\xbf\x47\xaf\xd1\x42\xc6\x4b\xaf\x59\xb1\xf1\xf2\x4d\x8c\x3d\x43\x7a\xf8\xaa\x30\x94\x21\x3d\x7c\xd5\xc7\xef\xa9\x67\x15\x87\xd7\x90\x1e\xbe\x2a\x0e\xaf\x01\x13\xae\x30\x9b\x01\x13\xae\xac\xed\x90\x3e\xbd\x2a\x41\x46\x43\x86\x99\x55\x89\x3d\x1e\xf2\x59\xac\xca\x4a\x8f\x48\x7b\x68\x28\x43\x7e\x89\x65\x7b\xea\x90\xae\xbd\x2a\x6e\xdd\x21\x5d\x7b\x55\x0c\x48\x43\x86\x99\x55\xd1\xf8\x06\xec\xda\xd6\xd5\x01\xbb\xb6\x3d\x75\xc0\xae\x2b\x06\xa4\x91\x18\x03\x0a\xcb\x80\xed\x56\xd0\xdf\x80\xed\x56\x18\xd8\x80\xd1\xd6\x4e\xeb\x85\x27\x51\x35\x46\xa1\x05\xaf\x11\xac\xae\x72\xc6\x06\xac\xae\x72\xc6\x06\xac\xae\x7a\x8d\x60\x75\x95\x33\x36\x2a\xf3\x82\x21\x6f\x54\xe6\x05\x55\x63\xc0\x06\xeb\xf1\x93\xb4\xee\xd5\xac\xea\x67\x7b\xfc\xe4\x80\xf2\x93\x13\x8a\x5e\xc3\xf8\x1a\x01\x80\x03\xbd\xb8\x61\x1a\x19\xb2\xfe\xaf\xe6\xf5\x93\x09\x67\x35\x94\x8b\x81\xce\xdc\x08\x19\x1b\xe8\xcc\x0d\xa4\x3d\x1a\xed\xa1\x61\x8e\x46\x7b\x5e\x3f\x99\x69\x56\x43\xf1\x18\x9d\xf6\xaa\x29\xda\xf3\xcc\xcb\x14\xb3\x1a\x11\x4f\xa3\xd3\x5e\xa3\x9f\x68\xd7\xcd\xeb\x30\xf8\x26\x2a\xc3\x90\x61\x66\x35\x54\xc5\x01\xdb\x6d\xa8\x8a\x03\xb6\x6b\xb3\xec\x90\x61\x66\xb5\xe5\xaf\x30\xbe\xe5\xdf\x68\xcf\x2b\x86\x8e\xde\xf0\xb7\x0d\x78\x6b\xc3\xdf\x36\xd0\xc3\xbf\xf4\xce\xdf\x66\xc9\x03\x15\xfd\x4b\x0d\x14\xa5\xae\x74\xf4\x8e\x21\xab\xc9\xea\xe8\x7f\x43\x8e\x81\xd5\xd1\xff\x86\x7c\xd1\xcb\xd6\xd5\x21\x8b\xca\xea\xc8\xa6\x21\xa7\xc1\xea\x48\xe9\x81\xa2\xdf\x3d\xb9\x2b\x40\xf1\x1e\x8a\x7e\xc7\xd2\x34\xe4\xa7\x5e\x1d\xc6\x37\x60\xe5\x1d\xed\x65\xc0\xca\xbb\x17\x45\x7e\xea\x65\x9b\xe9\x80\xb1\xf7\x66\x8a\xbe\x74\xbf\x77\xa1\x38\x46\x9b\xbe\x78\x51\x40\x08\xdd\x53\x0d\x0a\xe8\xc4\x92\x0e\x04\x42\xc7\x7e\x34\xd0\xed\x3b\x7a\xdc\x40\x20\x74\xb4\x9e\x21\xcf\xf4\xea\x3e\x00\x87\x6f\x1e\x16\x05\x11\xd0\x31\x8d\x0c\xf9\x9b\xd7\xf0\xec\xa2\x87\x0f\x64\xfd\x90\x7b\x61\x0d\xcf\xa7\xc2\x8a\xd6\xc0\x9c\x34\x10\x0f\x23\xfb\xbd\x06\xe5\xf7\x74\x54\x86\x99\x06\x4c\x7f\x54\x8d\x6f\xc2\xf4\x07\xf2\x7c\xc2\xf4\x07\x8c\x7d\xa2\x95\x0f\xb4\xba\x09\xd3\xb7\x25\x74\xa2\x95\x0f\xe2\x68\x27\x4c\x7f\xec\x00\x35\xa0\x22\x94\x56\x7a\x1c\x7f\x85\xbe\x70\xdc\xe7\x43\x5f\x10\xb0\x53\x7e\x82\x35\x39\xee\x13\x8d\x7d\x22\x60\x27\x1a\xfb\x0c\x7e\x32\x42\xf9\x49\xad\xca\x24\x92\x75\xa2\xb1\x4f\x4c\x15\x13\x8d\x7d\x66\x7f\x65\x43\x31\x76\xf9\x02\xd6\x44\xeb\x99\x2f\xed\x21\xc6\xe6\x4b\x7b\x68\x75\x13\xb1\x32\xb7\x9f\xd4\xbc\xcc\x63\x2a\x43\x55\x28\xfa\x82\xc6\x37\x15\xf9\xbc\x96\xc7\x80\xc8\x59\x1e\x03\x82\x64\x71\x1e\x26\x82\x64\x91\x90\x31\x11\x24\x0b\x05\x62\xa2\xdb\x2f\x14\x81\x89\x6e\xbf\x3c\xbe\xc4\x93\x88\x87\x89\xe8\x58\x1e\x11\xa2\x63\x11\x9b\x3b\x11\x1d\x8b\x5d\x30\x11\x1d\xab\xfa\x3d\xfa\x89\x2b\x6e\xca\xfd\xbc\x96\x67\x02\x14\xb0\x50\xc1\x66\xa6\x05\xcf\x0b\x42\x66\xa1\xed\x4e\x84\xcc\xc2\xf9\x36\x33\xa3\xc5\xf9\x36\x65\xd0\x59\x6b\xfb\x2b\xb4\xe0\xf9\x44\x1c\x39\x2c\x73\xa2\xf7\x3b\x10\x73\xa2\xf7\x2f\xc4\xfb\x44\xef\xdf\x98\x77\xa6\x3c\x0a\x6b\x23\xd0\xa7\x3c\x0a\xcb\x86\xc3\x89\x18\xdb\x38\xed\x26\x7a\xff\xc6\x69\x37\xd1\xfb\x6d\x46\x9c\x65\x40\x31\x22\x25\xad\x2d\x1b\x15\x27\x98\x60\xa3\xac\x4d\x30\xc1\xce\xfe\x4d\xfd\xdc\x9e\x79\x04\xa5\x8d\x8a\x13\x61\xb8\x51\xc8\x26\xc2\x70\xa3\x90\x4d\x84\xe1\x46\x58\x4c\x84\xe1\x6e\xa6\xe8\xe7\xd7\xf9\xfb\x4d\x96\x3c\x91\x93\xb6\x3e\x4e\x00\xc2\x46\xe7\x9a\x00\x84\x8d\xce\x35\x91\x93\xb6\x45\x4e\xec\x4e\x8e\xbc\x9c\xd8\x9d\x36\xb2\x62\x02\x1e\xb6\x97\x08\xf0\xb0\x91\xd2\x13\xf9\xba\xbd\x28\xc8\x57\x5b\x26\x27\xf2\x75\xe3\x6e\x9b\xc8\xd7\x8d\x06\x36\x91\xaf\xe7\x71\x7b\x03\xca\xdf\x9c\x50\xfe\xa6\xc6\x60\x5b\xe4\xc4\x5e\x75\xd0\xc7\x26\xb2\xf7\x78\xc1\xe4\x22\x59\xc7\x0b\x86\xec\x3d\xe8\x63\x13\xd9\x7b\xd0\xc7\x26\xb2\xf7\x78\xc1\xb0\x73\x1d\xb4\xa5\x89\x24\x3e\xb8\xdb\x26\xd2\xf6\x78\x51\x90\xb6\x07\xd1\x31\x91\xb6\x07\x90\x33\x91\xb6\x07\x2d\x79\x0e\x46\x84\x3c\x9f\x48\xdb\x63\xf6\x89\xa0\x3c\xb8\xdb\xe6\xe4\x2b\x9e\x4f\x04\xde\xf5\xbc\x20\xf0\xae\xe7\x05\x81\x77\xd1\x6c\x26\x02\xef\x62\x11\x9b\x08\xbc\x0b\xdc\x9b\x08\xbc\x8b\xd6\x33\x11\x78\xd7\xb3\xa4\x38\xda\x75\xd1\x6c\xe6\xa6\x85\x6c\xea\x85\xe2\x2b\x18\xba\x2e\x21\x47\x13\x11\x77\x09\x39\x9a\x88\xb8\x8b\x48\x9d\x60\x9e\xeb\x59\xc2\xec\x75\xc1\x12\x13\xb3\xd7\xc5\x40\x36\xe5\x79\x5f\xb7\xb9\x05\xfa\x82\x2e\x33\x31\x89\x5d\x74\x99\x89\xd8\xb4\xad\x75\x22\x36\xaf\xf7\x27\x26\xb1\x6b\xc6\x00\xaa\xba\x9e\x41\xcc\x5e\x17\x13\xd5\x04\x63\x5d\x54\x94\x09\xc6\xba\x88\xd4\x29\x01\xbb\x9f\xc7\x2d\x2c\x28\x7f\x73\x8b\x42\x61\x99\xc2\x5f\xfb\xb1\x58\x11\xfe\xda\x0f\x26\xaa\x29\x51\xbc\x1f\xcf\xa7\x44\xf1\xb6\xfd\x76\xca\x24\xb6\x1f\x1c\x6c\x53\xa2\x78\x3f\xf8\x6b\xa6\x44\xf1\x7e\x2c\x80\x84\xd4\xf6\x83\x60\x9e\x42\x6a\xdb\x96\xde\x79\xe9\xa7\x19\xca\xa5\x2f\x66\xd0\x97\xbe\xb0\x0e\xeb\xa1\x2f\x98\xa8\x96\x04\xf3\x76\x9e\xed\x7a\xe8\x0b\x66\xc4\xf5\xd0\x1e\x86\xa7\xf5\xd0\x1e\x86\xa7\xf5\x30\x76\xe6\x7a\x05\x7a\x8d\x98\x5e\x81\x5e\x1f\xff\x46\x5f\x30\x55\x2c\xe1\xaf\x1d\x70\x66\x2e\x09\xca\x1d\x50\xe4\x96\x04\xe5\x76\xd2\xc5\x92\xa0\xdc\x81\x68\xea\x25\xef\xc6\x0e\xcc\xc4\x92\x77\x63\x07\x66\x62\xc9\xb4\xb5\x43\xbe\x50\x41\x14\xae\xc6\x15\x69\x01\xc1\xb5\x22\x2d\xa0\x00\xae\x48\x0b\xd5\x94\x66\x22\x34\x7f\xb3\x40\xf9\x3d\xcd\x44\x18\xfe\x6d\x40\xf9\x37\xfa\x42\xfe\xea\x92\x80\xdd\x81\x28\xaa\x15\x19\xed\x1c\x3f\x60\xc9\x2b\x31\x04\x64\xe1\x4a\x0c\x01\xdd\x69\x25\x86\x00\x38\x5a\x89\x21\xa0\xf5\xac\xc4\x10\x3c\xb9\x92\xe0\xdb\xe9\xc0\x4b\x12\x7c\xbf\xb8\xc6\x96\x24\xf8\x7e\x83\xbf\xa9\x21\xbc\xd1\xd4\x84\xf2\x37\x0f\x14\xd3\x29\x5b\xdd\x7e\xd1\x8f\x96\x6c\x75\xdb\xf6\xd4\xa5\x20\xb1\xed\x18\xcd\x25\x97\xcc\x7e\x91\x62\x2b\xd3\x17\x4f\x67\xa6\x2f\x9e\x4e\xc9\xfa\xfd\xe2\x0c\x5b\x99\xbe\x74\x7f\x85\xbe\xa0\x31\x2c\xc9\xfa\xfd\x7a\xe2\x25\xeb\xb7\x23\x36\x57\xa6\x9f\x04\x35\xad\x42\x5f\x3c\x83\x92\xe7\xfb\x25\xaf\x70\x15\xc6\x4e\x84\xf6\x92\x3c\xdf\x2f\xfa\xc3\x2a\xf4\xc5\xb3\x5b\xe8\xcb\xf6\x57\x18\xbb\xe7\xba\x32\x76\xcf\xb5\xe4\xf2\x8e\x38\xca\x96\xe4\xf2\x8e\x38\xca\x96\x24\xf1\x8e\x9e\x6b\x89\xdb\x1d\x83\xbf\x32\xa0\xa4\x57\x2d\x09\xd1\x1d\x09\x04\x5b\x8d\x6f\xa2\x3f\xac\xc6\x37\xbd\x46\x8a\x02\xd8\xb1\x99\xba\x50\x7c\x53\x81\x67\x3b\x7a\x06\x3b\xad\x7b\x06\xe5\xae\xd9\x71\x30\x76\x05\x9e\xed\x38\x38\x7e\x0a\x3c\xdb\x71\xfa\x2b\xb4\x80\x76\xb6\x3a\x2d\x78\x3e\x07\x7d\x41\xbc\x2f\x79\xfa\xb7\xf3\x34\x97\x44\xdc\x8e\x38\xa7\xd6\xa0\x2f\x18\xc8\xd6\x60\xb4\xd7\xef\xd1\x17\xcf\xe7\xa0\x3d\x62\x5e\x97\x00\xe5\x76\x82\xd2\x12\x6a\xdc\xb6\xe6\x2e\x39\x76\x76\x42\x03\x5b\xf2\xd8\xef\x04\xb4\x5e\x12\x94\x3b\x61\x1a\x59\xf2\xd8\xef\xe4\x1d\x29\x8f\xfd\x4e\xc5\x4f\x16\x28\x3f\x59\xa1\xfc\xcd\x06\x45\x5f\x84\x3d\x77\x32\x63\x90\xa9\x70\x27\xa2\xb7\xd7\xa2\x2f\x98\xb6\xd6\xa2\x2f\x98\xb6\xd6\xa2\x2f\x08\xf4\xb5\xe8\x0b\xaa\xd4\x5a\xf4\x05\x75\x69\x2d\xfa\xe2\xf9\x5c\xf4\xc5\x3b\x72\xd1\x17\xef\x41\xc5\x48\xef\x84\x23\x70\x29\x46\x7a\x27\xc4\xd8\x5a\xf4\xf3\xf8\x49\xad\x6d\xf2\x5c\xcb\x8d\xb5\x6d\x21\x5e\x8b\x31\x5c\xf7\x9a\xb9\x46\xcd\x5a\xc2\xac\x3b\x23\xd4\x96\x84\xfd\xce\x9e\x79\x09\xfb\x6d\x5b\xf2\x92\xb0\xdf\xce\x43\x5d\x4a\xe0\xde\xd9\xeb\x20\x61\xbf\xb3\xd7\x41\x02\x7d\x67\x8c\x52\x4b\x02\x7d\x67\x5c\x94\xeb\xd0\x9e\xd7\xe8\xd0\x9e\xd7\xe8\xd0\x1e\x7e\x97\x75\x68\x0f\xa5\x6b\xc9\x8f\xb5\xb3\x57\xec\xd0\x1e\xea\xc4\x92\xd0\xde\xd9\x2b\x76\x69\x01\x84\xbe\x2e\x2d\xe0\x29\x5b\x42\xbe\x5b\x86\xdf\xdf\x66\xc9\x97\xc6\xbd\x44\x48\xe9\x4c\x98\xf7\x42\x12\x67\x02\x9e\x16\x92\x38\x63\xaf\x5a\x97\xc1\x7a\x89\x90\xc4\x8e\x09\x5d\x48\x62\xdb\x84\xf7\x43\x37\xd1\x3b\xf6\x43\x37\xf1\x88\x6e\xa4\x74\xc6\x23\xba\x91\xd2\xe5\xf1\x7b\x05\xaa\x41\x69\xaa\x9d\x2f\xbe\x91\xcb\x05\xad\x6e\x0b\x30\xef\xf2\xfa\xbd\x0b\xa5\x7e\x6e\x81\xe2\x5d\xd0\x42\xb6\x40\xf1\x76\x3d\x8a\x2d\x7b\xea\x2e\x38\x7d\x36\xd2\xbd\x10\x60\xb5\x91\xee\x25\xf9\x2b\x9a\x89\xc2\xd2\xee\x40\x5f\xd0\x49\x76\xa0\x2f\xd9\x2d\xd0\x17\x34\xc5\x8d\x1e\x50\xd0\x14\x37\x7a\x40\x41\x43\xd9\xe8\x01\x05\xab\xd7\x46\x0f\x28\xe8\x86\xfb\xa5\x2f\x2c\xed\x7e\xe9\x4b\xf7\x7b\xf4\x05\xe3\xcb\x16\x60\xde\x05\x8b\xd8\x96\x8d\x76\x17\xb4\xc8\x8d\x36\x51\x90\xe0\x1b\x6d\xa2\x20\x56\xf6\x4b\x3f\xa7\x5b\xa0\x9f\x68\x3d\x1b\x4d\xa3\x10\xec\xb5\xd1\x26\x0a\xb6\xb3\x8d\x36\x51\x38\xe0\x1b\x6d\xa2\x60\xd4\xd8\x68\x13\xb6\x41\xef\xc8\x18\xb0\xab\xed\xc8\x18\xb6\x5b\x60\x0c\x68\x52\x1b\x4d\xa3\x1c\xbf\xc7\x18\x8e\xdb\x63\x0c\xd7\x4f\x32\x06\xef\x25\xd4\x89\x8a\xd6\xba\x51\x27\xaa\x77\x0f\xea\x44\x45\x6b\xdd\xa8\x0c\xd5\xbb\x07\x95\xa1\x7a\xf7\x08\xd8\xef\x8a\xd3\x75\xa3\x32\x54\xef\x1e\x01\xfb\x5d\xd1\xd5\x36\x2a\x43\xf5\x5e\x42\x65\xb0\xb5\x7a\xa3\x32\x54\xf4\xdb\x8d\xca\x50\xd1\x6f\xb7\x82\x03\x77\xcd\x7e\x52\xe3\xab\x18\xeb\x36\xa2\xbf\xc2\x0a\x36\xa2\xbf\x7a\xbf\x20\xfa\x2b\x7a\xdc\xce\xb4\x87\xb6\xbb\x0b\xed\x79\x2f\x09\xe6\xef\x8a\xb6\xbb\x0b\xe3\x03\x59\x6c\xd4\x82\xea\xbd\x84\xe8\xaf\x18\xf2\x76\xa1\x2f\xde\x4b\x82\xf2\xe9\x46\x53\x5b\x14\x91\xc8\x5b\x50\x3e\x5b\x7f\xdf\x52\x19\xb2\x23\x19\xb6\x54\x86\x6c\x65\x66\xcb\xe6\x9d\x23\xee\xd9\x2d\x98\x9f\x13\x66\x93\x2d\x75\x22\xa7\x63\xea\x6b\x5e\x72\x79\xfc\x95\xaf\x35\xca\x03\x2c\xb8\x65\xf3\xce\x93\x42\x0f\x5b\xae\xbf\x52\xc0\x97\x5b\xca\x45\xa9\x9f\x16\xbe\xc6\x50\x6c\xcc\xda\xc2\xf9\xd5\xa5\x16\xb6\x70\x7e\xcd\x1f\xea\x6b\x0c\xd5\xc1\x96\x5b\x38\xbf\x39\x89\x65\x4b\x45\x69\x4e\x46\xd9\xc2\xf9\xad\x11\xaf\xb3\x85\xf3\x5b\x43\xad\xdb\x52\x5f\xda\x20\xe2\x62\x4b\x7d\x69\xce\xb3\xdd\x72\x20\xb6\x8d\xc9\x6f\xcb\x81\xd8\xce\x75\x0b\x5f\x63\x68\x2a\xed\xf0\x9b\x2c\x79\xcb\x3c\xd0\x3b\x01\x64\x5b\xe6\x81\xfc\x46\x7f\x64\x68\x72\xbd\xec\x32\x0f\xe4\xf4\xe9\xf4\xd7\xd0\xcb\x43\xe8\xd0\x96\x79\xa0\x84\xe2\xdf\x8e\x26\x09\x3d\x67\x4b\xaf\xaa\xce\xf0\xdf\x32\x1d\xb4\x40\xed\x81\x2d\xd3\x41\xeb\xd3\x94\x86\xde\x11\x08\x5b\x26\xfd\xee\x92\x21\x5b\x66\x85\x74\xcd\xc0\x64\x56\xc8\xef\xe3\xf7\xb4\x7c\x8d\xdc\xf5\x2d\xcd\x2d\x3b\x52\x77\x4b\x73\xcb\x9d\x24\x88\x2d\xbf\x6a\x3e\xd5\x2d\x0c\x28\xb6\x84\xb4\xba\x12\xb0\x96\x6d\x69\x75\xc5\x1e\xf4\x2d\xad\xae\xd4\xe4\xaf\x1c\xb6\x04\xe3\x93\x56\x57\x1a\xd1\x0a\x5b\x2e\x84\x72\x09\xeb\xdb\x72\x21\xd4\x42\x60\xd6\x96\x51\xa3\x56\x92\x60\xb7\x8c\x1a\xd5\x56\xfc\x2d\x6d\xb0\x3a\x6e\x77\x4b\x1b\xac\xe3\xfa\x9b\x5f\xe3\xab\x8b\xaa\x1d\x5b\xda\x60\x7b\x7c\x8c\xe4\x5e\x68\x6f\x71\x0b\x5d\x54\xf5\x93\x43\x9b\xe7\xb8\xbd\xa9\xf9\x24\x78\x6e\xcb\xf5\x90\x6c\x7c\xd9\x72\xeb\xe6\xfc\xf9\xa6\xc6\x57\x2c\x36\xa5\x45\x16\x27\xe4\x6e\x69\x91\xb5\x79\x55\xa4\x45\xd6\x41\xf4\xc0\x96\x16\xd9\x52\xe6\x9b\xd2\x22\x5b\x47\x63\xdf\xd2\x22\x5b\xf5\x4c\x48\x8b\xec\xd5\xc2\x42\x5a\x64\x36\x5e\xd8\xd2\x22\xf3\x7f\x7b\x52\xeb\xd7\x28\x11\xb4\xe5\xdd\xc8\x0e\x23\xdc\xf2\x6e\x94\x40\x80\xdc\x9e\xac\x9f\x77\x81\xbc\x1b\xe5\xf5\x9c\xc9\xbb\x51\x72\x61\xdd\x27\xeb\x67\x41\x22\x47\x75\x19\x66\xad\x32\x04\x95\x83\x9d\x72\x4b\x33\xad\x4e\x85\xd9\xd2\x4c\xab\xcb\x2a\x6d\x69\xa6\xb5\x1c\x53\x5a\x3f\x3b\xed\xb6\x34\xd3\xba\x01\xda\x5b\x9a\x69\x7f\x06\xfd\x94\xf6\xd9\x9d\x13\xbb\x17\x67\xec\xf5\x57\x74\xc6\x9c\x72\xbf\xa5\x7d\xd6\x4c\x22\xef\x96\xf6\xd9\x1e\xb3\x10\x69\x9f\xfd\xb5\x72\x21\xed\xb3\x67\x0c\x5d\x7b\xc3\x22\xbd\x0e\xd2\x3e\xb3\x9d\x76\x5b\xda\x67\xee\x68\xc2\x5b\xde\x94\xbc\x2c\xc2\x15\x6f\x95\x37\xba\xe8\x96\x66\x9a\xcf\x34\xa5\x35\xba\x1e\x91\x32\x02\xf3\x4d\xa6\x9a\x66\xbe\xfa\xc9\xaf\xf1\x95\x85\xe9\x60\xcb\x44\x55\x73\xf5\x93\x53\x54\xe3\x1c\x49\xa3\xad\xcb\x82\x59\x1a\x6d\xdd\x16\x01\x32\x51\xd5\x3d\xdd\x33\xf1\x10\x9b\xaf\xf6\x81\x87\x58\xc4\x49\xdb\x6d\x9f\x95\x96\xb6\xdb\x1c\xe5\xb0\x0f\x7b\x30\x99\xd2\x1e\x9c\x5e\x5b\x69\xc2\xfd\xbd\xfe\xa6\xd6\xe8\xa3\x82\x29\xa2\xab\x2f\x0b\x20\x99\xb6\xd2\x59\x7e\xaf\x8b\xf2\xe9\x90\x96\x9c\x1f\x9f\x69\x99\xb6\x72\xb8\x6e\x6f\x69\xe6\xd1\xd8\xf7\x81\x47\xc6\x1f\xc5\x25\x6f\x59\xbd\x4a\x88\x6c\x64\x59\xbd\x8a\xad\x2d\x5b\x6a\x78\xc9\x18\xc0\xb7\xd4\xf0\xd2\xa9\x98\xb0\x65\x11\x2b\xd7\x5a\x88\x2c\x62\xd5\x2a\xfa\x96\x8a\x5e\x8b\x27\x5e\x7a\x78\x2d\xdb\x94\xd8\xcb\xb4\xbc\x93\xb5\xac\xbd\x9f\xf7\xc4\x5e\x92\x87\x2e\x1d\xbd\xc7\xe1\x27\x87\x36\x5d\xf3\x6f\x1a\xba\xc3\x52\xb6\x32\x68\xf2\x1c\x6c\x5d\xe9\xef\xb9\x5a\xa3\x95\xfe\x5e\x97\x8f\xd1\x65\x69\xd1\x06\x8f\xf4\xf7\x6e\x5b\xcf\x91\xfe\x9e\x9d\x88\x7d\xa4\xbf\xe7\x88\xa6\x78\x1e\xb6\x6e\xf2\x93\x6c\xdd\xe3\x27\xb3\x0e\x3f\x82\xe4\x48\xb7\x2f\x4e\xcc\x3c\x0a\x66\x2b\x89\x5a\x5e\x47\x6e\xb3\x92\x70\x16\x1d\x59\xe7\xca\x41\x57\x3b\xb2\xce\x55\x5b\xee\x8e\x02\xdd\x6a\xcf\x6e\x7d\x49\xf6\x82\x4f\x8e\x10\x42\x3b\xc1\x2d\xe8\x68\x3e\xd5\xbf\x5d\x0e\x2a\xfd\x94\x4b\xad\xdb\xe0\x71\xe4\x52\x4b\xa7\xf2\x9e\xd0\x43\x3a\x84\x93\x1d\xa1\x87\xfc\x14\xbf\xc7\xf8\xae\x9f\xe4\x68\x12\x9c\x74\xe4\x6e\x2b\xe1\xf1\x7b\x1a\x5f\x47\x9b\x38\x42\x16\x2d\x20\x10\x8e\x90\x45\x2b\x1c\x9c\x23\x57\x5c\x3b\xc9\x4f\x4a\x3c\xc4\xea\xf6\xbe\xc6\xd7\x07\x7a\xea\x11\xea\x48\x27\xbb\x75\xb4\xb3\xee\x6f\x6a\x7f\x5a\x53\x3c\x8a\xfe\x28\xf6\xd1\x1f\xb9\xf0\xb2\xab\x93\x1d\x21\x92\xfc\x02\xec\x8f\x10\x49\x7e\xa9\x01\x76\x84\x48\xca\x18\xa6\x32\xcc\x94\x99\x97\x0b\xaf\xdb\xcc\x76\x84\x56\xba\x63\x8f\x8f\xd0\x4a\x7e\x31\xc5\x1c\xa1\x95\xf2\x10\x59\x70\x84\x56\xda\xbd\xfe\xe6\x44\xa7\x64\xe6\x85\x56\x4a\x18\xee\x99\x8e\xa6\x83\xe0\x8e\xd0\x4a\x49\x38\x95\xcf\x8b\x78\x47\x8f\x3b\x42\x2b\xc5\xee\xd9\x23\xbb\x68\x71\xd1\x82\x23\xbb\x68\xb3\x7d\xf3\x44\x58\x0f\xac\xf5\x08\xc9\x74\xa3\xaa\x23\x24\x93\x1b\xa6\xad\x23\x24\x53\x5f\xef\x17\x21\x99\x6a\x83\xdc\x11\x92\xa9\x36\x24\x1c\x21\x99\xba\x51\x58\x8e\x90\x4c\xb5\xc7\xe4\x08\xc9\x34\x57\x85\x3c\x42\x32\xad\x73\x36\x8f\x90\x4c\x9b\xd5\x5f\x61\x7f\x82\x09\x8e\xec\xa9\x7d\x73\x36\x8f\x50\x4e\x71\xe2\xf7\x11\xca\x29\xae\x15\x73\x12\xfc\xc5\xbb\x47\x46\xd3\xea\x18\xfe\x23\xa3\x69\xb5\x78\x38\x42\x40\x6d\x20\xd4\x8e\x10\x50\xb6\x4d\xf8\xc8\x68\x5a\x5c\x92\xe8\xc8\xed\x59\x27\x8a\xc7\x11\x3a\x6a\x33\xb8\x75\xf1\x97\xd7\x3b\x39\xb1\x3f\x9b\xbf\x82\xfa\xe2\x59\x4a\xa0\x87\xed\xf6\xd8\x9f\x3e\x8d\x09\xf4\x80\x5a\x70\x84\x9c\xf2\xe7\xac\x08\x39\xe5\xf7\x0b\x05\xfc\x26\x4b\x3e\x99\xad\x4b\xd2\xc5\x51\x3c\x65\x8e\x68\x7c\x47\x80\x2b\x7f\x0e\x40\x66\x69\xd1\x53\x8f\x6c\xb4\xf9\x10\xd8\x73\x32\x52\xd3\x07\x27\x5b\x6a\xba\x2b\x9d\x0d\xc9\x80\x64\xbf\x2d\x69\xb9\xd3\x13\xed\xc5\xbf\x69\xeb\x3a\xb8\xec\x08\xc4\x15\xc3\xe7\x93\xad\xb9\xb1\x44\x99\xad\x8b\x2e\x7a\x04\xe2\xca\x6e\xa6\xa4\xd9\x3c\x98\x00\x8e\x62\x34\xeb\x83\xdc\x3a\x02\x78\x35\x01\xf3\x8f\xec\xbe\x35\x0d\x3f\xa9\xa3\xf9\x39\x1c\x02\x7f\x35\x03\xb4\x8f\xc0\x5f\x6d\xee\xa7\x6c\xc2\xd5\x19\x81\x47\x36\xe1\x3a\xb6\xbf\x39\xd0\x6f\x19\xbb\x80\x61\xdd\x66\x91\x02\x86\xd5\x49\x1e\xa7\xa0\xf5\x04\xff\x76\x44\x45\x7f\xe5\x82\x25\x18\x7b\x05\x54\x11\xe7\x7d\x04\x0c\xdb\x2c\xa6\x74\x34\xed\xb4\x3b\x02\x86\xfd\xf3\x4d\x01\xc3\x6e\x5b\xeb\x11\x30\xec\x0d\x1b\xf4\x11\x30\xec\x0e\x47\x3a\x02\x86\x7d\x64\xc6\x2e\x8b\x74\x9f\x16\x39\xb2\x48\xa7\x0b\xf8\x3b\x02\x8d\x39\x67\x7f\x45\xac\xa7\xf9\x70\x08\x34\x66\xe7\x23\x1e\x81\xc6\xec\xbc\xad\x23\xd0\x98\x57\x72\xaf\xb5\x7e\xae\xe1\x71\x1a\x47\x93\x8a\x6e\x47\xa0\xb1\xb4\x64\x4a\x47\xd3\x79\xa1\x47\xa0\xb1\x34\xf7\x4c\xa0\xb1\x1c\x2a\x34\x1c\x81\xc6\x9a\xd1\xa0\x8f\x40\x63\x2d\xd5\x4f\xb2\x7e\xde\x75\x42\x86\x75\x00\xd0\x8f\x90\x61\x5d\xc0\xcb\xd3\xcc\x7a\x4c\x69\xfd\xec\x9e\x3d\x42\x86\xcd\x48\xe6\x08\x19\xb6\x61\x36\x28\x64\xd8\x96\xd7\x4f\xc8\xb0\x17\x42\xe2\x8e\x90\x61\xb7\x2b\xfc\x74\x03\x7b\x53\x88\x7e\xa2\x38\x4e\x07\xd8\x9b\x85\x08\x19\xe6\x64\x11\x07\x32\x2c\x16\x8d\x20\xc3\xbe\xfd\x5b\x65\xae\xfd\x4d\x89\x8e\x05\xd6\x3d\x46\x86\x16\x24\x42\x86\xe5\x45\xc7\x3b\x20\x43\x57\xeb\x3b\x20\xc3\xec\xdd\x0a\x32\xcc\x20\xca\x03\x32\x74\xc2\xf8\x01\x19\x56\xf4\xfe\x03\x32\x74\xb6\xe7\x19\xb0\x56\x32\x08\x0e\xc8\x30\xa3\x8b\x1e\x90\xa1\x0d\x72\x07\x64\x58\xad\x24\x18\x19\x7a\x06\x41\x86\x4e\x93\x39\x46\x86\xde\xbb\x20\x43\x17\x1f\x3d\x20\xc3\xd0\xfc\x9e\x44\xe3\x0b\x2a\x3e\x42\x86\xed\xbd\xee\x8b\xd6\xcf\xfe\x85\x23\x64\xd8\xf2\xa7\xd7\x5a\x3f\x07\xeb\x1d\x21\xc3\xe6\xfc\xe3\x23\x64\xd8\x86\xf9\x84\x90\x61\x73\xad\x9f\x23\x64\xd8\x23\xd1\x34\x47\xc8\xb0\x17\x90\xf6\x11\x32\xec\xad\x98\xd2\xf9\x1b\xfb\x47\x11\x17\x47\xa0\xb1\xdb\x2b\x7f\x00\x8d\xc9\x12\x5c\xa0\xb1\x64\xec\x4e\x47\xa0\xb1\x14\xeb\x01\x80\xc6\xe6\x89\x10\x68\xac\x4e\x82\x3d\x02\x8d\x6d\x79\xa1\x05\x1a\xbb\x03\x4a\x8e\x40\x63\xb6\x6d\xf0\x08\x34\x66\x67\xd5\x1f\x81\xc6\xec\xba\x62\x47\xa0\xb1\xb8\xf6\xef\x59\x3e\x9a\xfe\x8d\xa3\x69\x41\xb2\x38\x9a\xd6\xea\x00\x8d\xc9\xda\xae\x40\x63\x6b\xdd\xbf\x55\x98\x8d\xdb\xd3\xf8\x1c\x3a\x74\x00\x94\x63\x98\x1a\x62\x44\x1e\x3b\x80\xd2\xde\xd9\x23\x40\x99\x3f\xda\xa0\x00\x65\x7e\xcd\xe6\x05\x28\xb3\x53\x4d\x8f\x00\x65\xde\xd8\xce\x8e\x00\x65\xb1\xcf\xfc\x08\x50\x96\xc7\x7a\x87\x00\x65\x71\x4a\xc4\x11\xa0\x2c\x46\x08\x47\x80\xb2\x38\xc4\xfd\x08\x50\x56\x57\x17\x39\x02\x94\x75\x58\xb7\x10\xa0\x6c\x05\xb3\xc2\x11\xa0\x6c\xcb\xda\xa0\x00\x65\xaf\x5e\x31\x01\xca\x74\xa2\x7f\xd3\xf8\xa6\x99\xf7\x06\xf4\x9b\xf5\x6c\x8c\x36\xde\x82\x00\x4a\xbb\x80\x0e\x80\xf2\xc3\x18\x00\x94\x2e\x0a\x79\x00\x94\x4e\x5b\x3e\x00\x4a\xa7\x26\x1f\x00\xe5\x07\x67\x08\x50\x76\x17\x7c\x3a\x00\xca\x88\x4d\xff\x00\x28\x9b\x59\xb9\x00\x65\x3e\x9f\x16\x1a\xb8\xcd\x5f\xd1\xd1\xcc\x18\x7b\x8e\x00\x65\x7f\xbc\x93\x0d\x28\xcd\x50\x00\x94\xb3\xfb\x3d\x44\x87\x05\xac\x51\xa3\x05\x09\xa8\xb1\x99\x0d\x82\x1a\x27\x88\xf2\x5c\x44\xbf\x45\x80\x50\x63\x4d\xd6\x99\x41\x8d\x09\x53\xcc\x01\x35\x4e\xb3\x10\x50\xa3\xab\x85\x1d\xa1\xc6\xe6\x02\x9c\x07\xd4\xd8\xad\x09\x5f\xaf\x1f\x33\x01\x6a\xcc\x9e\x79\x50\x63\xf7\x2e\x07\x35\xba\xee\xf1\xb9\x18\x15\x09\x07\x3c\x42\x8d\xe5\xf5\xf8\x2e\x5a\x2b\x09\xc0\x47\xa8\x31\xdd\xa6\xf1\xdd\x07\xad\x0e\x0b\xf8\x05\x35\x46\x0c\x02\x17\xd4\xe8\x18\xdb\x0b\x6a\x3c\x18\x6d\xae\x50\x63\xb1\x67\xe0\x82\x1a\x5d\xd7\xef\x0a\x35\xd6\xa7\xbb\x05\xb4\x72\xc4\xfb\x15\x6a\xac\x2e\x45\x7a\x85\x1a\xab\x43\x1a\xaf\x50\x63\xb3\x2a\x75\x85\x1a\xbb\x4d\x62\x57\xa8\x31\xc7\xe2\xf7\x40\x1d\xdd\xbf\x69\x7f\xde\x62\xea\x82\xb8\x78\x52\xa8\x31\xbb\x40\xd8\x0d\x18\x74\x10\x7f\x37\x78\x7c\x07\x2a\x82\x80\xfc\x9b\xc6\xe7\xe2\x9c\x37\x18\x15\xfb\x2b\x42\x8d\xfd\x43\xc1\x5f\x30\x94\x5c\xa1\xc6\x3c\x39\x71\x37\x80\x3a\xc2\x8f\x58\xf2\x05\x50\xba\x02\xd9\x15\xa0\x6c\x37\xfb\x23\x56\xd8\x13\x94\xb6\xee\xb3\xfd\xa4\x58\x8f\x8b\xe6\x5c\x01\xca\x9c\x4d\x09\x50\xe6\xf9\x98\xd2\xd0\x37\xc7\xe1\x02\x28\x37\xe0\xfd\x0a\x50\x96\xec\xa1\x03\x28\x33\x47\xf3\x0a\x50\x96\xe6\x2d\x21\x40\x59\x5c\xdd\xe0\xbe\x2c\xed\xf1\x6f\x0d\x43\x89\xdf\xd3\xd0\x6d\xfc\xbf\x02\x94\x75\x67\xff\x26\xd1\x71\x71\x4b\x5c\x01\xca\x16\x3e\x3d\x43\x6a\x7e\x5a\x97\xd4\x2c\xdb\x5f\x91\xd4\xbc\x48\xe9\x2b\x40\xd9\xae\x9f\x14\xa0\xec\x0f\xda\xf5\x15\xa0\xec\xfd\xf3\x64\x44\xfb\xcc\x50\x62\x3d\x93\x23\x76\x05\x28\xd3\xc1\x4e\x79\x05\x28\xd3\x49\x7e\xb2\xb2\x95\x36\x94\x6d\x59\xcc\x59\x44\x6b\xf5\x66\x15\xa0\xcc\xb6\xe3\xdd\xc8\xd1\xbc\xee\x19\x5b\x17\x41\x79\x05\x28\xb3\x23\x12\xae\x00\x65\x8e\xc7\xed\x69\xfd\x92\x67\x50\x80\x32\xbb\x64\xcf\x15\xa0\xcc\x2e\x31\x73\x05\x28\x73\x85\xcd\x5f\x01\xca\x3c\xdd\xb3\x84\xc1\xa3\x99\xc2\xe0\xe1\xcd\x9a\x30\x78\xa0\x2d\x5d\x00\xa5\xad\xc7\x37\x21\xfa\xd1\xae\xaf\x00\x65\x71\x31\x9a\x9b\xec\xca\x61\xc5\x04\x28\x4b\xc7\xb4\x75\x05\x28\xcb\xe7\x10\x0b\x50\x96\x49\x7d\xdf\x9b\xf0\x67\x1c\xb7\x27\xd6\xba\xd0\xbc\x6f\xc6\x5e\x0c\x80\xbd\x19\xd6\x8a\x3e\x7d\x85\x1a\xeb\x8b\x53\xf2\x0a\x35\x56\xe3\x93\x9b\x41\x55\x5e\xdb\x6c\x83\x07\x3b\x44\xa8\xb1\x7e\xfa\x29\xd4\x58\x47\xf5\x7b\x0d\x13\x80\x9f\xec\x68\x7c\x7e\x52\xe7\xef\x33\x2f\x19\xad\x0e\x23\xc3\x15\x6a\x6c\xf6\x98\x5c\xa1\xc6\xf6\x7a\x47\x66\xb4\xba\xe2\x11\x69\x7f\x4e\x02\x38\xaf\x50\x63\x73\xa1\x80\x2b\xd4\xd8\x5c\x02\xf3\x0a\x35\x76\x07\xeb\xdd\x02\xaa\xf2\xe9\x17\x6a\xec\x8e\x5c\xba\x05\x5b\x2b\x0e\xb6\x2b\xd4\xd8\xed\xe7\xb9\x05\x54\xe5\xdd\x2a\xd4\xd8\x97\xc7\x2e\xd4\xd8\xb7\x67\x50\xa8\xb1\x5b\xa7\xbc\x42\x8d\xd9\xde\x94\x2b\xd4\x98\x5d\x38\xf7\x82\x1a\x5d\x63\xfa\x0a\x35\x76\x17\x28\xba\x42\x8d\xbd\xfa\xe4\x08\x35\xf6\x83\x0e\x7b\x71\x27\xa6\xe0\xdf\xb4\x7e\x8e\xbe\xbf\x42\x8d\xf5\x9a\x83\x09\x35\xb6\x8f\x58\x11\x6a\x6c\x07\xb5\xee\x82\x1a\x1f\x73\x14\xa1\xc6\xdc\x70\x1c\xdf\x0a\xea\x48\xfe\x66\x47\x04\x98\x02\x15\xa3\x90\x5d\x50\xe3\x1c\x9c\x23\x50\xa3\xd5\xdd\x8b\xab\x71\xd4\xfe\x23\x96\x6c\x2f\xe4\xe7\x23\x78\x21\x7d\x34\xf1\x42\xda\x86\x72\x9b\x6d\xad\x2c\x51\xc3\xe0\x61\x59\xd8\xb0\xd5\x5d\x53\x09\xf3\x07\x8b\x22\x40\x99\x9d\xd3\x75\x05\x28\xcb\x4b\x14\xe8\x15\xa0\x2c\x4e\x5f\xbd\x02\x94\x65\x7a\x0b\x0a\x50\x96\xbd\xfc\xa4\x86\xee\x4c\xad\x8b\xab\x31\x02\x25\x6e\xc3\xcb\x9a\xfd\x1b\xac\xb5\xb8\x3d\x6d\xdd\xe3\xc3\x01\xa0\xcc\x38\x33\xaf\x00\x65\xa9\xc0\xee\x2b\x40\x59\x86\xdb\xeb\xd8\xb2\x30\xda\xdc\x8e\x97\x15\x8d\xf6\x0a\x50\xb6\x43\xd4\xc1\x15\xa0\xec\xdd\xc2\x42\x80\xb2\x14\x8f\x5d\x80\xb2\x4c\x1f\xf7\x8e\xd6\xe3\xad\x24\x40\xd9\x67\xf4\x57\x70\xf3\x1c\x7f\x85\xad\xfb\xba\x3d\x0c\x02\x16\x01\x00\x4a\x17\x1a\xbf\x00\xca\x7e\xfd\x1e\xae\x54\xec\xfd\x77\xe0\x8a\xf3\xc1\xc1\xd5\x38\xa6\x7f\x63\xeb\x2e\xff\x16\x01\xef\xb4\x20\x40\xd9\xec\x25\xbf\x02\x94\xad\x5b\xd6\x0b\x50\x36\x3b\x61\xae\x00\x65\x7f\xa2\x9f\x6c\x38\x64\x19\xed\xc0\x55\xec\x9e\x09\x50\x66\x47\x24\xdc\x81\x9b\xe7\x43\x69\xfd\x26\x38\xea\x0e\x1f\x4d\xe6\x65\xe0\xc6\x0a\xee\x19\xae\x38\x62\x5d\xee\xb4\x56\x47\x0b\x13\x5b\xdd\x87\xb2\x2d\x99\x16\x04\x28\xcb\x8b\x23\xf0\x0a\x50\x96\x66\x81\x20\x40\x59\xba\x47\x0b\x6a\x2c\x5c\xd4\x70\x41\x8d\xae\xbb\x70\xa7\x6d\xc9\xac\x1f\xae\xc6\xf7\x98\xc2\xd5\xe8\xdd\x83\xab\x31\x7f\x9e\x5c\x58\x88\xfd\xcd\xcd\x8a\xb9\x2f\xa0\x0e\xc0\xfb\x15\x6a\xac\xd3\x63\x10\x6a\x6c\x4e\x3b\xbf\x42\x8d\xed\xb3\x43\x16\xae\x70\x50\xc7\x15\x6a\x6c\xd3\x2d\x08\x35\xb6\x6b\xe5\x69\x79\x7f\xfa\x37\x44\xbf\x19\xdf\xc2\x15\x8e\x01\xf0\x82\x1a\x93\xd9\xee\x02\x15\x9b\x79\x0b\x35\x96\x61\xce\x20\xd4\x58\x9d\xb2\x7d\x71\x43\xf6\xe6\x27\xc5\x7a\x3a\x86\x8b\x2b\xd4\xd8\x5e\xac\xce\x77\xe3\xce\xb7\xca\xb7\x0d\xfa\xd9\xc9\x42\x86\xe9\x9a\x5d\xe3\x6a\xfc\x30\x68\x21\xc3\xf2\x10\xb2\x79\x37\x3c\x04\x94\x7a\x85\x0c\xcb\x32\x0f\xd9\x88\xbf\xe0\xf7\xd0\x4c\xad\x4f\x1b\x19\x9a\x99\x6e\x23\x5f\xbf\xa7\x31\x54\x30\xc8\xdd\x18\x15\x87\xfb\x79\xe8\x99\xdb\x03\x59\x70\xc9\xc1\x3d\xec\x41\xf3\x97\x83\x3f\xc3\x7a\xb8\x90\x61\x36\xae\xb9\x42\x86\x59\x95\x03\x7f\x9b\x25\x1f\xec\xc5\x80\xe2\x7b\x60\x9f\x00\xb5\x2b\xd0\x98\xab\xa5\x2d\xa0\xb1\x5b\x77\x3a\x44\x32\xf8\x50\x09\x34\xe6\x8e\x95\xf4\xe2\x85\x74\x8d\xa5\x0b\x68\x74\x51\xf7\x0b\x68\xdc\x9f\x01\x6d\x1c\x49\x0c\x56\xa0\x31\xdb\x01\x75\x05\x1a\xf3\xf5\xd1\xbc\x76\x05\xf0\x15\x5c\x8d\xd9\x92\x18\x57\xa3\x53\xb6\xaf\x80\x61\xa9\xd6\x8b\x05\x0c\x4b\xb3\x5e\x25\x60\x58\x9c\x1a\x79\x05\x0c\xcb\xf0\x06\x11\x30\x2c\xd3\x0c\x5a\xc0\xb0\xac\xd7\xdf\x9c\x2c\x3b\xdb\x0c\x60\xb8\x88\x17\xbd\x00\xc3\x6d\x4d\x11\x77\xe2\x47\x86\xe2\x4e\x4c\xda\x74\x81\x4b\xb5\x6a\x12\x26\x08\x8f\x80\x61\x25\xea\x34\x3c\x0f\xc0\x57\x26\x87\xf0\x3c\xb8\x4b\xc5\xca\xc3\x23\x60\x58\xb3\xb4\xac\xf0\x08\x18\xd6\xa6\x03\x10\x1e\x80\x61\x3b\xfe\x4d\xda\x19\x1e\xe6\xf0\xe0\x32\xec\xd5\xed\x4d\x9c\x1b\x19\x0a\xbb\xb6\xf4\x80\xf0\x3c\x78\xbb\xa7\x9f\x04\xfc\x35\xb7\x7e\xd1\xea\x18\x83\xc0\x5f\x23\xed\x21\x3c\x02\x7f\xed\x91\x1b\x24\x3c\x01\xe3\x44\xe0\xbd\x00\x9b\x48\xf4\x2c\x10\x2c\x94\xfc\x1b\xc1\x42\x12\x5c\xe1\x11\xf8\xeb\x40\xe4\xf0\x00\xfe\xa2\x42\x1a\xc3\x23\xf0\xd7\xdb\x61\x96\x04\xfe\x3a\xd6\xea\xf0\xd8\x2d\x58\x18\x91\x50\x5c\x3f\xdd\x4f\xe2\xb1\x5f\x8c\x28\x70\x8c\x2a\x63\x00\xc5\x25\xe9\xa9\xe1\x11\x8a\x2b\xef\x39\x50\x18\xc8\x32\xad\x0b\xc5\xf5\xb0\x69\x4f\x28\x2e\x67\xe9\x6a\xe1\x11\x8a\xcb\xa4\x2f\x84\x47\x28\x2e\x8f\xc0\x4c\xbc\xb8\x95\x8e\xdb\xd3\x3e\x7b\x17\x33\x81\x5b\x90\x4a\xc0\xe1\x79\x31\xb0\x78\xdd\x85\xe2\xda\xb8\xee\x0b\xbe\x95\xee\xaf\x68\x8d\x42\x36\x25\x51\x45\xbc\x47\x78\x70\x0b\x46\xcf\x35\x6e\xc1\xe8\x75\x8f\x18\x20\x32\x73\x2d\x14\x57\x30\x5f\x85\x47\x28\xae\x50\x71\x30\x3c\x11\x03\x60\xe5\x9b\x11\xdb\x7c\xf4\x7b\x85\xfd\xc2\xba\x0b\xc5\xb5\x56\x99\x6b\xa1\xb8\x5c\x3c\xd7\x42\x71\xf9\xb3\x0b\x22\x6c\x30\xf9\x9b\x66\x83\xfe\xa6\x55\x0d\x3f\x89\x81\xec\xba\x2f\xf8\x56\x82\x29\xf1\x82\xee\x9e\x81\xe2\x4e\x65\x8d\x70\x0b\xa6\x4e\xeb\x42\x71\xb5\xbb\x2f\xa0\x38\x12\x7f\xc2\x23\x14\x57\x9e\xc2\x1a\x25\x0c\x10\x8b\xd6\x41\x71\xb1\xb2\xb6\x09\xdb\xfc\xa1\x9f\x09\x03\xc4\x36\x85\x28\x1e\x6e\x61\xd0\x33\xf7\x45\xe3\xbb\x2f\x3b\x0b\x14\xf7\x04\x66\x49\x28\xae\xa6\xfc\x03\x2d\x39\x3c\x02\x78\xbd\x7b\xd3\x01\xf0\xee\x62\xe8\x99\x60\x93\xc9\xf2\x65\xcc\xda\x93\x06\x04\xf0\x0a\xb6\x9e\xf0\x08\xe0\x35\xae\x5e\x09\x0f\x6e\x41\x5c\x1d\xe1\xc1\x2d\x38\x0e\xdd\x14\xc0\x6b\xe3\x65\x92\x04\xf0\x4a\xf5\x44\x18\xe0\x79\x19\x0c\xf0\x2e\x9b\x40\x00\x2f\x73\x57\x48\x78\x70\x0b\xae\xe3\xaf\x00\xd0\x3f\xed\x69\x69\x8f\xd9\x8b\x00\x5e\xee\xc1\x94\xd8\x4b\x8c\xf4\x53\x00\x2f\x9d\x48\xcf\x0a\x11\x09\xd3\xbf\x29\x22\xe1\x26\x53\x91\xc3\xc8\x51\x29\x88\x31\x6f\xba\x82\xdb\x73\xb1\x60\x85\x60\x21\x1f\x1c\x01\xbc\xc2\x5d\x63\x81\x3b\x09\x4b\xf6\x41\x15\xc0\x2b\xa3\x31\x5a\x01\xbc\x32\x27\x23\x12\xc0\x2b\x27\x31\x76\xdc\x82\xf5\x98\x02\x00\x99\x09\x17\x22\x4a\x82\x7b\x26\x11\xb0\x37\x14\x6e\xc1\xb2\x98\x5d\xdc\x82\xcd\x2c\x4b\x00\xaf\x73\x1d\x4f\x78\x70\x0b\xc6\xec\x27\xb5\x75\xd3\x34\xa5\xad\x7b\xa7\xbf\xa9\xa3\xf9\x39\xee\x02\x78\x35\x4f\x66\x02\xb7\xe0\x63\x76\x26\x80\x97\xb3\x67\xa2\x5a\x4b\x66\x0c\xd5\x01\x6b\xfe\xca\x42\x3b\xf3\x7b\xb8\x75\x3d\x9f\x42\x71\x65\x1f\xf6\x19\x6e\xc1\xe3\x7e\xe2\x16\xbc\x85\x6f\xe2\x16\x24\x9a\x26\x70\x57\x63\xcd\x3e\xe0\xc4\x92\x3e\x66\x0c\xc4\x92\x52\xc2\x2a\x70\x57\x63\xcb\x16\x63\xc4\x92\xf6\xe6\x27\xc5\x7a\x86\xfb\x22\x14\xd7\x66\xa6\xd7\x8d\x88\xa0\xc0\x3a\x34\x44\x78\xf7\x7b\xa0\x80\x6c\x0a\x14\xe0\x79\x01\xc5\x9d\xc7\xef\x61\xdb\xcd\xee\x0b\x06\x40\x9f\x00\xa1\xb8\xdc\x1e\xd6\x08\xb7\x60\xcb\xcc\x35\x6e\xc1\x53\xfc\x1b\x28\xe0\xa1\x9f\x9d\xf5\xeb\xac\x58\xc7\x00\x78\xfc\x4d\xdc\xd6\x16\x4e\x42\x71\x75\x6d\x53\x1a\x5f\x9d\xf4\x1a\x14\x47\x96\x68\xe0\xfe\xc7\x74\x2c\x02\x8c\xe2\x2c\xb4\x41\x71\xb5\xb8\x3d\xa9\x59\xfd\x75\x5f\x70\xeb\x9a\x95\x0b\xc5\xe5\x35\x99\xeb\x01\x6b\xf5\x69\x14\x8a\xcb\x64\x6d\x06\xee\x7f\x2c\x24\x91\x05\xee\x7f\x2c\xc9\xbb\x00\xb7\x60\x74\x3f\x41\x71\xe1\xb2\x2a\xa0\xb8\xd6\xd8\x21\xb8\x05\x97\xf7\x27\x28\xae\x34\x3f\xc9\xf8\xb6\x9f\x44\x8d\xfc\xb4\x0e\x6b\xf5\xb9\x1d\xb0\xd6\x4f\x7b\x18\x70\xcd\x68\x85\xe2\xf2\x6b\xd5\x46\x28\x2e\x93\x08\x17\x1e\x50\x5c\x0d\x8c\x0f\x14\xd7\xe2\x0f\xca\x0e\x05\xae\x9b\xcc\xcd\x32\x74\x12\xec\xf5\x30\xb9\x13\xd6\x6a\x19\x2a\x80\x97\xd7\x75\x03\x05\xbb\x21\x03\x02\xe0\x9d\xe1\xdf\x24\x55\xae\x0f\x3f\x6e\x41\xee\xc4\x08\x0f\x00\x2f\x06\x26\x17\x80\x17\x1b\xc7\x08\x80\x97\x82\xfb\xa2\xa3\xd9\x7c\x8c\x88\x25\x6d\xd7\x4f\x02\x60\x17\x2d\x10\x4b\x4a\x69\xc9\xf0\xe0\x16\x3c\xd6\xb9\x70\x0b\x1e\x1f\x77\xdc\x82\x24\xd6\x06\xae\xb7\xac\xc1\x3a\xc9\x72\xb0\x1e\xfd\x5c\xd8\x06\x2b\xed\x2d\xb4\x4f\x6f\xa5\x65\x8f\x3d\x63\x17\xc0\x6b\xc4\x6b\x07\xae\xb7\x6c\x7d\xf8\x3d\x69\x3d\xcb\xcc\x74\x11\xcc\x76\x19\x11\x71\xa6\xc7\x3a\xc2\xb2\xdb\xc5\xbf\x5d\x2c\x7e\x7c\x53\x6e\xc1\xfe\xf8\x80\x6f\x6c\xd7\x16\x55\x06\x7f\x66\x75\x1b\x8f\xaf\x0f\x9c\xc0\x5f\xaf\x1e\x11\xe0\x6f\x6e\xe6\x0c\xb7\xe0\x47\xf7\xdd\xd8\xe6\x7d\xdc\x01\x7f\xef\xf0\x93\x02\x7f\xb1\xf8\x37\x0c\x48\xc5\x7d\x21\x58\xcf\x42\x1b\xf0\x37\x3d\xbb\xc4\x99\x9e\xce\x2c\x09\xfc\xb5\x69\x01\x24\xf0\x97\x9b\x67\xe9\xe0\xf6\x34\xe3\x3b\x20\x20\x8b\xf7\x03\x02\xf2\x68\x05\xfe\x4a\xb1\x78\x10\xc2\x2b\xcb\x3a\xba\x10\x5e\x0d\x16\x4e\x42\x78\x35\x2c\xb7\xc0\xd1\x34\x33\x3d\x68\xde\x81\x31\x38\xce\xd4\x8c\xfd\x60\x1b\x34\x06\x11\xc2\x4b\x67\xfb\x37\xdc\xba\xc3\xed\xe9\x68\x86\xe5\xdf\x38\x9a\x9b\x23\x0d\xc2\x4b\x0f\x4f\x82\xf0\xc2\x60\x7c\x20\xbc\x5a\x69\xe1\x5a\x2b\x67\x5e\x2e\x6e\xeb\xcd\x7c\xca\x2d\x58\xb6\x47\x04\xfa\xbb\xd5\xdf\x84\xb5\xfa\x54\x09\xfd\xd5\x0f\x33\xbd\xec\x4f\x2b\x2c\xd7\xaa\x0d\xab\x22\xf4\xd7\x92\xd7\x4f\xe8\xaf\xbf\x66\x44\x04\x93\x72\x47\x4c\x78\x40\x7f\xb9\xbb\xd7\xc4\x72\x7f\x7e\x23\xe2\x02\x01\xc4\x7d\x9a\x95\x32\x63\x81\xfb\x34\xab\xc5\x18\xf7\x69\xb6\x58\xfd\x64\x04\x2b\x15\x28\xdc\xba\xc1\x4f\x12\x11\x04\xfe\xe2\x3e\xcd\xbc\x14\x7d\x15\xb8\x4f\xb3\x91\x55\x1c\xc2\x43\x2c\x3e\x7a\x71\x90\x5b\xb0\x3f\x88\xd4\xf0\x80\x3a\x3e\xef\x31\xbe\xc7\xdf\xc4\xb6\xdb\xdd\x1e\x08\xbd\xfb\xb7\x03\x62\xee\x50\x97\xdd\xc3\x88\x84\x0c\x6b\x41\x71\x0c\x42\x86\x95\x3a\xd2\x21\x80\x0c\x33\x7b\x3e\x18\x19\x3e\xa6\x34\x3e\xdc\x82\x21\x04\x22\x2e\xe2\x0f\x2e\x7a\x0a\x41\xa0\x31\x53\x5c\x2e\x04\xe2\x4c\x03\x6c\x37\x04\xdc\x66\xc5\x8d\x77\xe0\x6c\x86\xd2\xd2\x16\x34\xd3\x80\x5b\xb0\xa2\xf5\x04\x01\xca\xd6\xae\x07\x24\x40\xc9\x65\x47\x21\x04\xb4\x9e\xe0\xe1\x69\xe8\xcf\xa6\x05\x01\xca\x1a\xd1\xf1\x82\x00\x65\xe5\xbe\xb4\x10\x5e\xd2\x10\x22\x13\x68\x40\x59\x68\x4f\x80\xb2\xf7\xeb\x27\x71\x9b\x61\x10\x08\x00\x4a\x22\x60\x43\x00\x50\x7e\xa6\x0c\x40\x39\x83\x9f\xd4\xf8\x9e\xe8\xd6\x75\x34\x5f\xf7\x13\x40\x59\xbc\x5d\x04\x28\x3b\x91\xc1\x21\xbc\x44\x5c\xc8\xf3\x1e\x02\x6e\xc1\x0b\x10\x0d\x2f\x11\x17\x1c\xb8\x00\xa0\x24\x77\x29\x04\xe2\x4c\x29\x23\x18\x02\x80\x72\x22\x51\x43\xb4\xe8\xa0\x75\x01\xca\xba\x10\x4e\x01\x40\x79\xba\xdf\x2b\x84\xf2\xd0\x33\x00\x65\x2f\x8c\x4f\x80\xb2\x61\xd5\x0b\x21\x02\x98\x61\x52\x21\xe2\x56\xf2\x31\x22\xce\xb4\xa1\xf1\x05\x00\x25\xf6\xc6\x10\x0c\x28\x7d\x70\x22\xeb\xe7\x99\x17\xa0\xac\x84\xdb\x87\x90\x30\xcc\x3c\x8c\x2f\x61\x98\xf1\xe1\x10\xa0\x6c\xd5\xab\x92\x70\x2b\x79\xa5\x93\xd3\x80\x18\x3b\x6e\x41\x43\xe4\x40\x9c\xe9\x1d\xcc\xa0\x00\x65\x4b\x0f\xad\x03\x28\x03\xba\x4c\xc0\x2d\x18\x3f\x4f\x92\xa2\x50\xdc\x17\x58\xeb\x70\x7b\x1a\x9f\xc5\x51\x48\xb0\x56\xef\x72\xe2\x4c\xcd\xca\x03\xa8\xd1\x46\xa2\x80\x5b\x70\x04\x53\x1a\xdf\xf2\x37\x71\x0b\x5a\xff\x0b\xb8\x05\x17\xc0\x37\x08\x35\xb6\xd7\x33\x91\x89\xa3\x45\x34\x06\x50\xe3\xf5\x3e\x13\x6a\xec\x61\xf9\x49\xb9\x75\x2f\xb8\x2d\x08\x35\xe6\x10\xfd\xcd\x81\xa5\x9e\xf1\x65\xd2\xb8\x92\xbf\xc9\xfa\x1d\x56\x25\x3b\x8d\xcb\xfd\x3c\x68\x9f\xa6\x34\xbe\xbc\xf8\x0a\xc1\xa4\x63\x33\xbb\x05\xd4\x81\xc2\x12\x08\x26\xed\xaf\x7f\x13\xeb\xc1\x4a\x1a\x42\xc1\x6d\xf6\xb2\x3f\x71\x0b\xe6\xc1\xfa\xe1\x16\x1c\x68\xf3\xc1\x6e\x41\xef\x1e\xdc\x82\xc7\x2c\x12\xb7\xe0\x59\x6e\x8f\xf1\x21\xd0\x03\xa8\xb1\x2c\x66\xa2\xe0\xd6\xad\x7e\x4f\xa2\xff\x09\x6e\xef\xd0\x4f\xbf\x87\x5b\xde\xad\xe3\x16\xac\x9e\x25\xa1\xc6\x42\x79\xe1\x10\x2a\x5a\xf9\x63\xca\x61\x07\x8c\x08\xd4\x78\x3f\x14\xa2\xdf\x2c\x19\xd4\x98\x9a\x29\x89\x46\xea\x87\x87\x50\x09\xd6\xf3\xba\x57\x54\xb7\xf3\x83\x1b\xaa\x43\xa8\x84\xb8\x63\xed\x0c\x02\x94\xfd\xf9\x34\xbe\xd0\xc0\x98\x40\xe2\x4c\x0d\xf7\x02\x71\xa6\xaf\x0f\x6a\x45\x61\x37\x23\x02\x50\x52\xc5\x29\x84\x86\x47\xdb\x12\xc7\xc9\x89\xe8\xb7\x01\xb7\xe0\xf1\x01\x20\xce\x34\xfb\xd8\x36\xb4\x3a\x6f\x79\xdc\x82\xf7\xf3\x1e\x80\xcb\x1b\x8b\x38\xd3\x0f\xdb\x6d\x68\x3d\x96\x5b\x8d\x60\x36\xc0\x51\xc0\x2d\x58\xae\xdb\xc3\xe3\x6b\x41\xd2\x90\x9a\x1f\xea\x60\x07\xf2\x18\x70\x9b\x61\xb4\x09\x02\x94\x75\x9a\x41\x0b\x50\xd6\x6b\x99\x2d\x40\x59\xaf\x37\x56\x37\x60\xa6\xf5\x6e\xad\xc0\xbf\xe1\xd1\x06\x9a\x85\x8e\x5b\xc9\xc2\x50\x80\xb2\x73\x39\x4f\x08\xdd\x5a\x9d\x29\xb2\xbf\x2c\xaa\x00\x94\x17\xb4\x12\x88\x33\xbd\xe8\x63\xa1\xe3\x76\xf1\x0c\x0a\x50\xf6\x30\xdd\x1e\xb6\x48\xb3\x33\x00\xe5\x6b\x16\x49\x9c\x29\x57\x57\x85\x40\x9c\x29\x57\x49\x85\x00\xa0\xa4\x12\x5c\x08\x00\xca\x9b\xfd\x5e\xe2\x70\xf8\xbd\x8c\x50\x63\x93\x13\x67\x5a\xcc\xa4\x3e\x71\xa6\x8c\x81\x38\xd3\x62\x16\x39\x9c\x62\xc2\xcc\x13\x67\xba\x31\xd3\x04\xe2\x4c\xaf\x99\xbe\x00\x65\xaf\x18\x5f\x82\x00\x65\x9f\x3e\x00\xb8\x05\x37\x70\x36\x08\x50\xf6\xe3\x1d\xe2\x0c\x44\xb4\xeb\x40\x06\x62\xc7\x52\x1f\x84\x1a\xeb\x36\x63\x27\x03\x31\x7a\x7f\x12\x67\x1a\x2d\xd0\x89\x33\x3d\x9f\xf7\x0a\xec\x85\x79\x99\x18\x3c\x30\x08\x04\x67\x20\x6e\x3f\x29\xd6\x7a\x3f\x5f\x21\xa2\xc4\x9a\x14\xc1\xa4\xcf\x87\xd2\xfa\x25\x33\x68\xa1\xc6\x6a\xcc\x1a\x26\xb6\xd6\xca\xcc\x13\x4c\xca\xad\xec\x21\x08\x35\x56\x92\x9e\x42\x20\x03\xf1\x35\x5b\x22\x03\xb1\x59\xdc\xe2\x16\x5c\x3e\x55\xb8\x05\x97\x59\xb2\x50\x63\x5b\x66\x2f\xcb\xfb\x93\x9e\x2d\x22\x82\x2c\x44\x85\x1a\xf3\xf3\x79\xaf\x63\x87\xa5\x67\x64\x27\x1e\xcf\xc4\xc2\xed\xd9\x99\x4f\xdc\x82\xc1\x67\x05\xb7\x60\x31\xc3\x14\x6a\xac\xd5\x8c\x7d\xe1\xcf\x30\x27\x12\x6a\x6c\xc9\x8a\x80\x51\x63\x35\x25\xd4\x38\x3d\x83\xa0\xc6\xdb\xf8\x0a\x2e\xc3\x66\x35\x84\xec\xc4\x61\xed\x7a\x5b\x2b\xa7\x75\x5c\x86\x03\x1c\x15\xc8\x4e\xdc\x1e\x1f\xd9\x89\x17\xc3\x53\x00\x35\x52\xee\x37\x04\x50\xe3\x7e\xfd\x9b\xc6\x77\x2c\x44\x71\x19\xe6\xf0\x43\x96\x0c\xa0\xec\xd1\xdd\xbc\x24\x17\xb0\x0c\x02\x94\x9d\xaa\x0f\x21\xe0\x4d\x7c\x2d\x0f\x0c\x28\x2d\xeb\x01\x94\x15\x48\x1e\x00\x94\xdd\x87\xff\x10\xa7\xe8\xa1\x0b\x50\x96\x8f\x8e\x27\x40\x59\x1f\x0f\x4f\x80\xb2\xda\xed\x12\x04\x28\x6b\xf2\x16\x04\x50\x66\x03\x0b\x01\xca\x4a\x55\x8b\x10\x04\x28\x6b\x2b\xee\x27\xd9\x43\xd6\x3e\x05\x28\x7b\x33\xd3\x00\x50\x06\x40\x6a\xb0\xcb\xf0\xe5\x37\x01\xca\x4e\x72\x41\x08\x17\x5b\x32\xae\x95\x70\xc9\x6e\xb3\xec\xbd\x4e\x3c\xa5\x2f\x00\xca\x7d\x58\x30\x00\x25\xb7\x75\x84\x40\x9c\xe9\xb5\x6e\x71\x31\xe8\x98\x7d\xe2\x4e\xe4\xd2\xd1\x10\x70\x27\x36\x8b\x38\x00\x65\xf1\x96\x07\x50\xbe\x9e\xeb\x8b\x37\xf8\xf3\x15\xb4\x3a\xeb\x2b\x97\xf1\xc9\x25\x1a\xde\x87\x10\x7e\xc6\xfe\x1a\x50\x06\xff\x06\xeb\x99\xfe\x0d\xd6\x03\xce\x78\x01\x94\x05\x06\xf6\x0a\x50\xa6\xcb\x86\x7c\x01\x94\x2f\x0e\x8c\x57\x80\x32\xe3\xcc\x0c\xaf\x00\x65\x4e\xac\xe6\xfb\x60\x4b\x7e\xdc\x02\xbe\x80\xe2\x6f\xea\x68\x3e\x88\x8e\x57\x80\xb2\x90\x42\x1d\x5e\xe2\x4c\xa9\x55\x1b\xde\xc7\x5a\xb9\x7b\x8d\x56\x8e\xd6\xfa\x02\x28\x89\xf3\x09\x2f\x80\x32\xc1\xd8\xdf\x80\xbb\x14\x9b\xf0\x1b\x70\x97\xe2\x24\x7c\x03\xa8\xc3\xdf\x0c\xc4\x09\x63\xa2\x7a\x03\x29\x0a\xd3\xdf\xd4\xfa\xd9\xb0\xf6\x92\x9d\xd8\x60\x91\x2f\xd9\x89\x5c\x28\x16\x5e\xa1\xc6\xfe\x99\x79\xb2\x13\xb9\x8c\x35\xbc\xb8\x21\xcb\xa7\x75\x44\xc7\xf2\x37\x09\x26\x45\xc7\x7b\xc9\x4e\xbc\x30\xda\x17\xd4\xf8\xf9\x0a\xa8\x31\x79\xae\x41\x8d\x19\x91\xf3\x0a\x35\x36\x92\x66\xc2\x0b\x6a\x24\x3a\x3d\xbc\x42\x8d\x7d\x61\x9a\x7c\x5f\x8b\x0e\xc6\x00\x6a\xac\xdd\xbf\xc1\x7a\xf0\x3d\xbc\xa0\xc6\x14\xfd\x15\x50\xd5\x71\xeb\x1a\x9f\xad\xa4\xef\xcb\xf9\xe3\xc4\xbd\xb8\x21\xc7\xe7\x2b\x07\xf5\xc5\x63\xd0\xfa\x2d\x4c\x9a\xaf\x51\x23\xf8\xe4\x8d\x46\x55\x8c\x21\xda\x17\xe0\x27\x29\x3e\x80\x99\xe6\x05\x35\x36\xf7\x25\x12\x51\x32\xfc\x9b\xc6\x67\xbb\xfd\x1b\xc9\xbe\xc4\x2b\xf2\x46\xbb\xe9\x98\x5d\xdc\x90\x27\xb3\x23\x85\x1a\xcb\x75\x3f\x41\x8d\x5c\xbb\x1b\x5e\xb2\x13\x29\xa0\x15\xde\x68\xd4\xef\xd6\x15\x8d\x71\xb0\xe2\xbf\xb8\x21\x6d\x46\x7c\x71\x43\x0e\x9f\x15\x82\x49\xf7\xd7\x29\xfe\x4d\x96\xfc\x12\x67\x7a\x7d\x1c\x04\x28\x0b\x81\x21\xe1\xc5\x43\x19\xa3\x1b\x10\xeb\xb1\x19\xe3\xc5\x43\x59\x90\x54\x2f\x71\xa6\x07\x2f\xf2\x4b\x9c\xe9\x85\x81\xbd\x09\x83\x00\xd6\xab\x17\x40\x59\xbb\xdb\xd3\xd0\x93\x17\x53\x80\xb2\xe5\xe0\x27\xc5\x7a\x5a\xf4\x57\x30\x08\x7c\x7e\xbb\x04\xf6\x30\x9d\x02\x94\x7d\xf9\x49\x12\x17\xb3\x59\x0f\x6e\x48\x02\x89\xc2\x9b\x11\x1d\xee\x59\xc6\x16\xe9\xa9\x06\x50\xc6\xc7\x4f\xe2\xe6\xf1\x06\x01\x50\xd6\x6a\x8a\x38\xe1\xc1\x61\x04\x50\xf6\xc6\x26\x20\x03\xb1\x06\x7f\xd3\x91\x0c\xcc\x67\x26\x92\xc1\xdb\x05\x57\xe3\xeb\xed\x49\x2c\x69\x74\xcf\x88\x25\x8d\x20\x92\xb7\x38\x43\x8f\x39\x73\x2c\x29\x9a\xc6\x6b\x57\xa3\x0f\x00\xae\xc6\xee\xd1\xe2\x6a\x1c\x9f\x16\xf0\x22\xfb\x80\xe3\x6a\x2c\x68\x13\x2f\xae\x46\x8a\xac\x87\xb7\x38\x0d\x88\xd9\x05\x34\x4e\x33\x22\x5c\x8d\x54\x33\x09\x2f\xa0\xf1\x9a\x79\x93\x81\xb8\xa6\xbf\x79\xb1\xa3\xb3\x62\x80\xc6\xc7\xcc\x54\xa0\xb1\x4f\xaf\x1f\x19\x88\x5c\xb2\x13\xde\x8a\xe6\x86\x13\xe6\x25\x03\xb1\x60\x16\x7a\xc9\x40\x24\x25\x29\xbc\xc4\x92\x9e\xe1\xaf\x30\xbe\x4c\x3f\x2b\x69\x40\xde\x2f\x15\x7b\xb8\x57\x85\x58\xd2\xe2\xe3\x5e\x11\xef\xdb\xef\x2d\x4c\x23\x6e\x0f\x64\x68\x56\x57\x51\x5f\xba\xbf\x89\xf8\xf3\xf1\x6b\x04\x43\x11\xcf\xf2\x36\x27\xcf\xb2\x0e\xce\x40\xfc\x50\x11\x47\x20\x33\xd8\xc8\x60\x7b\x4c\x11\xeb\x6c\xc6\xd0\x2c\xde\xe9\x19\xc8\x90\xb2\xb6\xe1\xa5\x36\x4d\xf5\x49\xc5\xd5\x78\xa6\x5b\xd7\xfa\x9d\x65\x6a\x72\xaa\x98\xf9\x66\x7b\xb8\x7f\xdb\x08\x51\x8f\x01\xf1\x50\x4d\x49\x3c\x14\x8b\x54\x02\x46\x29\x76\x15\x5e\x02\x46\xed\xc2\x7b\x09\x18\xfd\xb0\xf9\x4e\x86\x9e\x7b\xdd\x19\x5f\xa7\xf5\xce\x19\x0b\x7e\x4f\x67\x2c\xa1\xa3\xbf\x42\x86\xad\x7e\xbe\xd2\x30\x4d\x32\x67\x20\xc3\xd7\xe2\x48\xc8\xb0\x5b\x7f\x7f\x3b\x46\xb7\xe6\xaf\x50\x3a\x69\xb8\xd7\xac\x9f\x4f\x40\xb7\xbd\xdf\x2d\x10\xc5\x81\x31\xe4\xfd\xb8\x1a\x19\x1f\xc8\x30\x98\x5d\x0f\x52\x61\xfc\xcd\x41\x44\x97\xcf\xd1\x20\x5f\x02\x7c\xf2\x0e\x0c\xa3\xcb\x5f\xc1\x30\x8a\x03\xf1\x15\xfa\xab\x5f\xc7\xfe\x07\x2c\x79\x60\x33\x2d\xfe\x24\xf1\x86\xc9\x14\x9e\x7e\x34\xe8\x57\xc0\xb0\xd6\x4f\x03\x0e\x52\x61\x72\x49\x40\x7c\x2d\xc5\xa6\xab\x2a\x31\x20\x12\x10\xb9\xfe\x31\xbc\x94\xa6\x99\x80\xaa\x77\xfa\xf8\xf9\xbd\x04\xc3\xf4\x6f\x99\xad\xeb\xf7\xc8\xcd\x27\x7c\xe6\x15\x30\xac\x05\x70\xf4\x0a\x18\xd6\x8a\x43\xe8\x9d\x24\x38\x27\x53\x5a\x3e\x6a\x3e\x87\x17\x77\xe2\x04\x6c\xbe\xb8\x13\x3f\x32\x7b\xda\x53\x6c\x0a\x77\xc6\xeb\xaf\x68\x7c\xc9\x6c\x90\x2c\xc3\x08\x44\x7e\x17\x9e\x54\x1f\xd4\x45\x59\x97\xcf\x93\x18\x66\xbc\x09\xc8\x32\x8c\x66\x6e\x0b\x11\x87\xe1\xe2\x15\x30\x2c\xdc\x00\x1c\xde\x85\x88\x23\xc0\xea\xc5\x9d\xf8\x61\xd7\xcb\x09\xdc\xcc\x04\xee\xc4\xf7\x43\x91\x9b\xef\x19\x5c\xd6\xae\xdd\x17\x0c\x33\xc7\x5f\x21\x4b\xcd\xdb\x6c\x51\xdb\xc4\x8c\x9d\x2c\x43\x52\x14\xc2\x4b\x96\xe1\x8b\xbb\xe6\x25\xcb\x30\x59\x8c\x91\x65\x98\xf1\xe6\xbf\x64\x19\x76\x90\xcc\x6b\x77\xa2\x57\x85\x58\xd2\xf9\x69\x41\xeb\x67\xa0\xfd\xe2\x4e\x8c\xd7\x2d\x74\xf0\x10\xdb\x1a\x60\x78\xbc\x9a\x9b\x54\x0a\x0b\xa7\x8d\xf6\x42\x44\xc2\x6b\x60\x68\x21\x0a\xfa\x1b\xd6\x14\x37\xe2\xc1\x6c\x02\xf4\x67\x63\xc1\x2b\xf4\xd7\xed\xb3\x78\x89\x25\xfd\xe8\xe8\x42\x7f\xfd\x6c\x53\x09\x5f\xbb\x9f\x74\xe9\x2b\xfa\x42\xc0\x68\xb2\x5a\x40\xc0\x28\x25\x22\xc3\x4b\x96\xa1\xfd\x35\xef\xa1\x2c\x0f\x2e\xd8\x57\x08\xaf\x3d\x46\x32\x20\x3c\xc7\x04\xbc\x20\x3c\x2a\xb9\x84\xf7\x90\xa4\x8d\x09\xe7\xbd\x94\x16\xb2\x12\x84\xcb\x70\x59\x20\x90\x49\xf8\x9a\x9d\x81\xf0\x92\x77\x16\x08\x6f\x58\xf8\x5e\x5c\xf6\x18\x00\xdf\x8b\xcb\x1e\x54\xfc\x5e\x97\x16\xe2\x6c\x1a\xe1\x79\xbf\x80\xf0\xea\xeb\xaf\x20\xc2\xb1\x79\xbf\x04\x8c\x76\xab\x60\x04\x8c\x9e\xe8\xaf\x10\x0d\x05\x32\x7c\x09\x18\xad\x56\x82\x08\x18\x5d\xf4\x33\xe2\x32\xbc\x8a\x83\x0e\x51\x08\xaf\x79\x06\x23\x2e\xc3\xf9\xf8\x37\xf1\x90\x7b\xfd\x1b\x2e\x6d\x56\x33\xe2\x32\x3c\x30\xef\x68\x97\xe1\xf4\x93\x3a\x63\x0f\xbd\x8e\xd4\x9f\xa1\x76\x73\x88\x8f\x8b\x40\x4c\x28\x8d\xcf\xab\x19\x41\x71\x5c\x72\x1a\x22\x28\x6e\x1d\xff\x86\x81\x13\xb1\x12\x41\x71\x36\x7b\x45\x50\x9c\x62\x87\x7e\x93\x25\x47\x01\xbc\x9e\x91\xd9\x31\x38\x1b\x8b\x6e\x12\x4b\x4a\x49\xc3\x10\x89\x25\xe5\x26\x88\x10\x71\x0b\xbe\x1c\x9c\x18\x00\xb0\x78\xb4\x63\x70\x1c\xa6\x7f\xd3\xf0\x0c\x67\x63\xa0\xc6\x05\x7a\x63\x14\xc0\x2b\x35\xba\x75\x2d\xdf\x40\x04\xc4\xc0\xd0\x97\xbf\x49\xbc\xef\x72\xeb\xc4\xfb\xa2\x6b\x47\x00\xde\xf4\x18\x00\x78\xde\x9e\x51\x00\xaf\x52\xd9\x2b\x44\x00\x5e\x60\xcb\xc7\x17\xb7\x0b\x76\xe6\xf8\x12\x0c\xd5\xfc\x15\xdc\x2e\xc7\xef\x55\x2c\x69\x4c\xee\x4b\xf5\xbc\xc5\xa2\xbc\x64\xd3\x79\x0c\x2f\x29\x1f\xc9\x2d\x90\xd2\xe2\x99\x78\x09\xd6\xdb\xfe\x26\x89\xae\x40\xdd\xe8\xf2\x33\xaf\x29\xdc\x2e\x88\xb1\x08\xc0\xa3\xba\x55\x88\xb8\x05\x3b\x81\x8a\x11\xb7\xe0\x42\x38\x45\xbb\x05\x89\x9c\x88\x00\x3c\x0a\xdc\x84\xe8\x38\x53\x74\xf4\x48\x9c\x69\x41\x00\xc5\x68\x11\xe7\xdf\x70\xeb\x82\x80\x22\xe5\x67\xb8\x29\x3c\x44\xca\xcf\x70\xab\x77\x88\x91\x88\x0b\xf7\x3a\x12\xeb\x0c\xfb\x8c\x94\x9f\x79\x3f\xbf\x89\x45\xd6\xe3\xaf\xe0\x76\x21\x0e\x26\x0a\xe0\xf5\x86\x9b\x35\x0a\xe0\x75\x47\x5a\xc7\xe4\x1a\x2c\x8c\x16\x14\xf7\x7e\xde\x23\xd8\x0b\x8d\x2f\x82\xe2\xb8\x9e\x20\x44\x50\xdc\x25\x82\x39\x26\xc6\x87\xbd\x31\x0a\xc5\x35\x03\xf4\x28\x14\xd7\xc3\xf4\x93\x94\x9f\x29\xee\x8b\x44\xdc\xf0\xec\x0a\xc5\xf5\x99\xdc\x17\x82\xa1\x5e\x53\x94\x9f\xc1\x6a\x19\x29\x3f\x53\xbd\x0b\x28\x3f\xd3\x61\xf3\x11\x14\xb7\x5e\x53\x04\xb3\x25\xd8\x04\x35\x66\x6e\x35\x95\x70\xc5\x31\x13\x42\x71\x25\xc3\x3e\xa3\x50\x5c\xc9\xe0\xa1\x48\x30\x69\xf6\x8e\xa4\xc6\x0c\x45\x2f\x43\xa4\xc6\x4c\xc5\xd0\x15\xa9\x31\xd3\x81\xe4\x91\x60\xd2\x83\x9e\x1a\x33\x06\x08\xb4\xeb\x68\x84\xf7\xfa\x9b\xa8\x60\xc3\x23\xa2\x06\x0b\xc2\x22\x82\xf0\xb8\x53\x32\x44\x10\xde\x4b\xf4\x47\x04\xe1\x25\x10\x65\xc4\x2d\x58\x50\xc1\x22\x6e\xc1\x01\x63\x8f\xc5\xfc\x85\xb1\x17\x57\xcf\x63\x2f\xe1\x16\x2c\x78\x0d\x22\x6e\xc1\xdb\xdd\x7a\xc7\x59\xcb\xcc\x17\x7c\x2b\xd7\xad\x13\xac\xe7\x73\x5b\x1c\x71\xc1\xcc\x17\xce\xdf\x76\x5f\x74\xfe\x62\x77\x0b\x44\x94\xa0\x74\xc5\x4a\xb6\xa7\xd7\x5d\x08\xaf\x06\xcc\x96\x91\x6c\xc1\xe2\xfd\x09\xc2\x7b\x7c\xa6\xc9\x16\xb4\x8d\x3d\x56\x5c\xef\xe1\x47\x71\xc9\x11\xaf\xe0\xf2\x51\xc1\x2b\xe8\x50\xe7\x58\xb1\x8f\x01\xcd\x22\xae\xbf\x52\xdc\x00\x00\xe1\x75\xa7\x5d\x5b\xd5\x5f\x21\xe5\xc3\x6c\x90\x58\xd2\x8a\x6e\x18\x71\xfd\x35\xb3\x02\x81\xb8\x3e\x91\x9a\x91\xac\xbf\x63\x09\x87\x7b\x6f\xa0\xab\x45\x40\x9c\x81\x4c\x04\xc4\x05\x1f\x4d\xdc\x7b\xd6\x8f\x22\x65\x64\x4e\xf2\x57\xa4\x45\x66\x4f\xa7\x41\xdc\xf1\x57\x74\xc4\x9a\x17\xa5\x31\x06\x8b\x9c\x86\x0d\xcc\x92\x11\xf7\xde\x67\x7c\x94\x91\xc9\x66\x05\xc4\x8b\x06\x6c\x8a\xd1\xf1\xa2\x58\x34\x23\xf1\xa2\x6d\xfa\x49\x0c\x25\x3e\x54\xc4\x8b\xae\x64\x4a\x47\x6c\x99\x5d\x77\x57\xe8\xa2\xf5\x4e\x05\x2b\x1c\x6c\x51\x20\xae\x51\xc2\x3e\x44\xca\xc8\x70\x3b\x77\x88\xdd\x59\x55\xcc\x04\xf1\xa2\x8f\xd9\x27\x20\x8e\x62\xfe\x21\x02\xe2\x9a\x0f\x31\x65\x64\xa8\xc9\x10\x22\xee\xbd\x81\x85\x31\x92\xf5\x97\x86\x29\xb6\x20\xd1\xc6\xd1\x05\x46\x3f\xbf\x69\x0b\x16\x1f\xaa\x81\xe7\x1d\x0b\x6a\x14\xc0\xeb\x95\x18\xf0\x38\x2c\xc2\x19\xfb\x40\x03\xc3\xd9\x17\x71\xef\x4d\x8b\x4d\xdc\x7b\xd7\xec\xcc\xee\x3d\xcf\x0b\xee\xbd\xe7\xf3\x24\xe3\x23\xe2\x3d\x0e\xbb\x87\x4c\x49\xc3\xe4\x3e\xf5\x10\x85\xe2\x3a\x77\xaf\x84\x38\x89\x47\xf7\x11\x23\x28\x94\x1a\x10\x21\x12\x14\x1a\x30\xcc\x44\x07\x85\x12\x15\x1d\x09\x0a\x3d\x66\x9f\x13\x43\x1e\xfa\x7b\x9c\xd4\xf7\xf5\x3a\x50\x2b\xa6\x7a\xfd\x08\x0a\xfd\x30\xbe\x49\x05\x40\x33\x30\xdc\x7b\xd9\x33\x81\x7b\x2f\x7f\x9e\x24\x2b\xce\x3a\x17\x59\x7f\x83\xf0\xbc\x08\x8a\xbb\xe8\xfd\x51\x28\xae\x77\xcc\x1f\x51\x28\xae\x0f\x8f\x76\xe1\x23\xf1\x7b\xa0\xb8\x66\xb6\xbb\x70\x7f\x45\x53\x1a\xdf\xc4\xe1\x1c\x41\x71\x85\xb8\x8d\x08\x8a\x9b\x78\x06\x22\x59\x7f\xdb\x7a\x23\x59\x7f\x07\x23\x5f\x24\xeb\xef\x56\xb7\x37\x51\x12\x98\x09\x17\x1f\x35\x2b\x27\x28\x34\xfa\x6c\x92\xf5\xf7\x39\x9b\xb8\xf7\x3a\x66\xa8\x88\x7b\x6f\xe2\x00\x8e\x64\x04\x5e\x02\x46\xe3\x66\x7c\x56\x00\x29\x3e\xfa\xf8\x74\x38\x23\xd0\x27\x1c\xf7\x5e\xfc\x7c\x85\xfa\xcc\xdd\x2d\x80\x10\xc0\xd6\x11\xf7\x5e\x35\xd3\x07\xc5\x91\xcd\x1a\xe2\xc6\xc6\x5e\xfd\xe4\xc4\xfc\xe8\xdf\x6c\x88\x75\xcf\x34\xbe\xfe\xfc\xa0\x38\x67\x88\x76\xef\xe1\x48\x8a\x00\xbc\xeb\x83\x43\x19\x99\x0b\x18\x8b\x00\xbc\xee\x4d\x2e\x80\xd7\x97\x35\x1b\xbb\xf7\xac\x11\x09\xe0\x25\x92\x98\x43\x3c\xb8\x87\x70\xc2\x44\x00\x5e\xf7\xe1\x00\xe0\x2d\x6f\xc1\x43\xcc\x32\xc6\x89\x28\x17\x5e\x69\xdb\x2d\x68\xf9\x1c\x8d\x1b\x0f\x99\x4c\xc3\xbf\x91\x94\xea\xa5\x15\xc0\xab\xc7\xd4\xc5\x3b\x8b\x05\x2e\x0a\xe0\xb5\xea\x03\x77\xc9\xf7\xb7\x78\x10\xc0\xeb\x76\xa2\x45\x01\xbc\xbe\x2c\x6d\x2f\x81\x75\x5e\x94\x4b\x52\xaa\x19\x98\x00\x5e\xba\xd6\xea\x00\x78\xd4\xa1\x0b\xf1\x92\xe9\x63\x06\x76\x09\xec\xb1\xec\xa5\x54\x8c\x33\xfb\x22\x2e\xbc\x64\xc9\xef\x02\xa3\x16\x94\xb8\xf0\xfa\x67\x44\xd2\xc0\x06\x06\x81\x44\xa9\x18\xa7\x2f\x24\x4a\xc5\x4c\x58\x48\xa2\x54\xcc\x44\x66\x27\x97\x8a\xe9\xa6\xd0\xc0\xaa\xbf\x82\x06\x06\x7b\x49\x14\x18\xcd\xc3\x54\xc5\xc1\x76\xa0\xb4\x3d\x6d\xbf\x4d\x94\x8a\x31\xce\x48\x64\x0b\xce\xd7\x94\x8e\x9f\x13\x86\x12\xd9\x82\xf7\xf3\x24\x5a\x16\xf0\x39\x91\x11\x48\xed\xdf\x90\xc8\x08\x7c\x31\xfd\x24\xe2\x3e\xe3\x30\x45\x62\x3b\xe2\x28\x39\x23\x70\xf8\x3d\x22\x04\x48\xc4\x49\x42\x71\x8d\xfa\x6e\x21\xe1\xa6\xdb\xe4\x58\x25\xdc\x74\x8e\xad\x49\x64\x04\x72\x05\x7d\x48\x76\xd3\xc1\x0a\x12\x6e\x3a\x2e\x4e\x08\xc9\x6e\xba\xe4\xaf\xc8\xcd\xd3\xb7\x7b\x26\x23\x83\xc3\xde\x12\x35\x5f\x6c\x33\x4d\x64\x0b\xbe\x88\xe9\x44\xcd\x97\x84\xda\x93\xa8\xf9\x52\xdc\x33\x8a\x88\x36\x18\x74\x22\x5b\x90\x5b\x2b\x43\x22\x5b\xb0\x7b\x1d\x08\xee\xbc\x18\x2e\x92\xb3\x05\x87\x9f\x04\xa5\x7e\x9e\x74\x62\x34\xb3\xf4\x22\xc2\xab\x7f\x9b\x68\x7c\xcc\x04\x6e\x3a\x87\x9a\x25\xdc\x74\xab\xb9\x9f\xa4\x24\x6d\xbf\x47\x4a\x12\x4a\x57\xa2\xe6\x0b\x25\x3e\x43\x12\x8a\x6b\x0b\x61\x9f\xa8\xf9\x42\x99\xb1\x90\x22\x49\xd3\xd9\xef\x69\x7c\xd7\xb3\x44\x11\xd1\x8b\x51\x31\x45\x92\xa6\xd1\xdf\x93\x50\x5c\xde\x9e\xb3\x68\x16\xe9\xaf\x20\xe2\xd0\x45\x93\x51\x5c\x75\x5f\xa8\xe4\x87\x42\x96\x84\xe2\xba\x5d\xc5\x29\x52\x04\x36\xb0\x93\xa3\x8b\xc0\xba\x05\xaf\x1f\xbf\xe1\xa6\x8b\x68\xf3\x29\x39\x1b\x92\xf1\x81\xe2\x9c\x5a\x94\xc8\x16\x74\xc8\x5f\xa2\xe6\x0b\x17\xbb\x85\x04\x8a\x7b\xe6\x8f\xdc\x7b\xc9\xe5\x60\x9a\x9b\xa3\x1c\x0c\x0c\x33\xe1\xa6\x7b\xab\xa9\x0e\x7c\x66\x72\x5d\x0e\xe6\xd3\x1c\xf6\x23\x1f\x62\x97\x83\x41\x87\x4d\x44\x73\x3a\x83\x26\x11\xcd\x99\x22\x83\xcd\xf6\xab\xd2\x3a\xd1\x9c\x06\xb0\x89\x22\x2f\x0d\xb8\x9e\x28\xf2\x42\xa9\xfd\x90\x28\xf2\xd2\xb7\xbf\x49\x48\x9c\xa7\xc5\x39\x80\xc0\xd2\x94\x89\xa6\x3e\xfe\x0a\x45\x96\xcc\x50\x28\xf2\x42\xad\xe8\x90\x28\xf2\x12\xbc\x09\x28\xf2\x12\xaf\x29\x60\xb7\xb7\x2e\xb0\xcd\x1e\xdf\x04\x6c\x1b\x40\xc8\x54\x5c\x3a\x93\x65\x07\xb6\x2d\x3c\xbe\x09\xc7\x9c\x21\x4f\xa2\xc8\x0b\x89\xdf\x21\x11\xcd\xd9\xb6\x9f\xa4\x3e\x5f\x34\xa5\x0d\x59\xbc\xe5\x0b\x7e\x63\x6f\x10\x60\xdb\xfd\xb4\x87\xd5\xab\x99\xd2\xaa\x0c\x1f\x70\x47\x73\xa2\x61\x26\x60\x1b\xd7\x3f\x86\x04\x6c\xa3\x94\x51\x48\xe4\x00\x3e\xde\x90\x95\xb8\x06\x4c\x54\x09\xd8\xc6\x85\x4d\x21\xe1\x98\x5b\x5e\x77\x3b\xe6\x08\x90\x4b\x38\xe6\xec\x9e\x4d\xe4\x00\x06\xaf\x66\x05\x13\x44\xbf\x47\x48\x1c\xe6\x96\x44\x0e\xe0\x78\xfc\x24\x21\x8d\xc9\xed\x91\x43\xd6\xfc\x4d\xa2\x8d\xbb\x29\x8a\x64\x79\x87\x18\xb7\xa1\xa7\xa6\x4a\x95\x02\x2c\x9a\xa9\x3a\xbd\x9a\x99\x10\x6e\x4b\x77\x9b\xa2\x92\x8b\x59\x1d\x95\x5c\x3e\xbb\x80\x90\x4d\x2e\xf8\x0f\x09\x4c\x97\xcd\x68\xa9\xe4\x42\x52\x7f\x48\xc2\x74\xb9\x78\x35\x1b\x45\x6c\x8e\x29\x4a\x11\xf8\xd8\x36\xa7\x1f\x33\x5a\x2e\x8d\x98\x9f\x27\x29\x62\xe3\xd3\xe1\x90\x4d\x1c\x81\xc9\x21\x9b\xd7\xed\x81\x4b\x5f\xbf\x47\x29\x02\xb3\x17\x1c\x73\x8e\xdb\x4d\x38\xe6\x9c\xf8\x93\x70\xcc\x65\x8b\x69\x30\x5d\xf6\x0e\x01\xd3\x55\xb4\xe4\x04\xa6\xab\x16\x71\x60\xba\xe6\x5d\xf0\xa9\xe4\xe2\xdf\x70\xac\x7e\x5a\xc7\x72\x8e\xaf\x23\x81\xe9\x0e\xc6\x9e\x04\xa6\xa3\x00\x53\x48\x84\x6c\x46\x5c\xbe\x49\x98\xae\x3a\x73\x31\x75\xa2\x8d\x7d\x52\xa9\xe4\xd2\x2d\xc2\xa9\xe4\xe2\xa4\xf0\x04\xa6\xb3\x51\x31\x81\xe9\xb8\xc0\x36\x24\x30\xdd\xb6\x08\x20\x64\x73\x93\x14\x9e\xc8\x01\x7c\x50\x4d\x13\x39\x80\x4e\x31\x49\xc3\x71\x37\xb4\x4e\xc8\x66\xda\x6e\x81\x90\xcd\xe5\x6f\x0e\x74\x7b\x66\x10\x4c\xc7\x35\xc6\x21\x51\x1a\x74\xe4\x1f\x05\xc1\x25\x8a\xbc\x4c\x2f\x18\x4e\xbb\x65\x1d\x01\xa7\xdd\xb6\x3e\x86\xd3\xee\x7a\x19\x26\xd1\x80\xd8\x96\x12\x55\x43\x1b\xd6\xc7\x44\xd5\xd0\xee\x8e\x11\xcd\x49\xdd\xad\x90\x80\x7b\x6f\xf2\x7b\x38\xb5\x50\xed\x93\x8b\xbc\x60\xeb\x49\x2e\xf2\x62\xd6\x43\x34\xe7\x22\xe7\x29\x11\xcd\x99\x71\x21\x24\x9c\x76\x0b\xff\x68\x9a\xbe\xea\xc5\xef\x71\xd5\x8b\x37\x01\x70\x2f\x7f\xfa\x42\x91\x17\x00\x7a\xa2\xc8\x4b\xf2\xf6\x04\xee\x05\x42\xe2\x92\xe0\x5e\xaf\x24\x4a\x26\xc1\xbd\x64\xc8\x9a\x96\xd3\x57\x59\x5a\x9c\x76\xd3\x1a\x18\x39\x80\xc1\x6c\x57\x70\xaf\x65\x6b\x7c\x8b\xb8\x0d\x6f\x48\xe0\x5e\xb5\x30\x04\xee\xb5\xe3\xf7\xb0\xf8\x79\x2b\x91\x03\x48\x31\xd0\x90\x96\xa3\x1d\xdd\x4f\xd7\x07\xe3\x70\xe0\xb4\xb3\xdb\x2c\xe1\xb4\xbb\xc4\x3c\x24\xa2\x39\x5f\x8b\x3f\xa2\x39\x9b\x0f\x23\x05\x60\x0e\x26\xa3\x04\xdc\xe3\x22\xcc\x90\x80\x7b\xcf\xf2\x93\x14\x0c\x0f\xa6\xec\xd4\x62\xbf\x08\xee\xe5\xec\x1d\x22\xb8\x97\x6d\xd4\x48\x1b\xd6\xe3\x43\x45\x01\x98\x65\x51\xb5\x61\x3d\xc7\xbf\x6d\x3c\xe1\x8c\x6f\xc3\x7a\xac\x40\x90\x03\x78\xac\x25\x53\x00\xc6\x76\xd1\x44\x0e\xe0\x63\x96\x75\x9c\x23\xc7\xd8\xc1\x74\xa3\x98\xa2\xb2\x83\x05\x02\x39\x80\x2f\x9e\xf7\x44\x0e\xe0\x47\x7f\x3f\x2e\x2d\x69\xca\x16\x77\xbf\x07\x9c\x05\xca\x27\x42\x36\xe7\x74\x0b\xd4\x1f\xb4\x8a\x72\x9c\x48\xe5\x9e\x01\x67\xaf\x7f\xc3\x29\x59\xfd\x1b\x4e\x49\xf7\x13\xbc\xf7\xd1\x53\x09\xd9\xb4\x9f\x27\x5d\xe7\xe0\xfa\x37\x4a\x83\x12\xaf\x93\x2e\x58\xe2\x9a\x42\x74\x98\x85\x10\xb2\xf9\x99\x09\x72\x00\x37\xa8\x31\x51\x1a\xf4\x35\xcb\xba\xe0\xa1\x0f\x45\x48\xaa\xd7\xfd\x62\x6e\xc1\x64\x94\x2e\x39\x9c\x5e\x4d\xf0\x9e\xa3\x77\x12\x78\xcf\x9e\x88\x04\xde\xdb\x04\x05\x64\xf0\xde\xc1\x20\x90\xc1\x7b\x2e\x6f\x90\xc1\x7b\xb6\x1e\xe7\x87\xd2\x99\x9c\xf7\x6c\xbc\xc7\xf9\xcb\xe0\x3d\x2a\xbe\x87\x6c\xbc\x87\x40\xcf\xe0\xbd\x82\x5a\x90\xc1\x7b\x5c\x3d\x16\xf2\xe3\xd2\xc3\x0d\xca\x21\xa9\x6e\x1d\xbc\x7e\xdd\x82\xc6\x47\xb5\x9d\x90\x1f\x57\xae\x38\x50\x98\x3b\x8b\x29\xb0\x84\x29\x9c\x7d\x7b\xff\xe0\xa2\xa7\x90\xf1\x03\x5e\xa6\x3a\x03\x13\x1f\xf2\xcb\x32\x30\xd1\xc7\x36\x03\x13\x2d\x43\x33\x30\xd1\x01\xf6\x19\x98\x38\xb0\xc4\x64\x0a\xc7\x58\x2e\x67\x0a\xc7\x50\x31\x2b\xe4\xe0\x1c\x1d\xff\x46\xe9\x3e\xac\x5e\x59\x30\x31\xf7\xe0\xd6\x29\x4a\x52\xfc\x24\x47\xf3\x35\x45\x22\x07\xa2\x23\x13\xcd\x49\x31\xc9\x90\xb9\x6b\xa2\xb0\xad\x33\x45\x65\xaa\x17\x93\xa2\x32\x2b\x9b\xd2\xd2\x6e\x6c\x75\x99\xd2\xa0\x14\x26\x0d\xd9\x77\x4d\x5c\x7f\x85\xe2\x3e\x30\xd3\xfc\x92\x43\x06\xc0\xcb\x38\xfb\x1c\xad\x90\x5f\x2a\x1f\xbc\xa6\xd0\xea\xbc\xec\xbe\x6b\x02\x61\x91\x71\xf6\x05\xd2\x41\x32\x39\x80\x76\x2e\xe6\x97\xaa\xcb\x8f\xbf\xa2\xad\x3b\x89\x1e\xc8\x38\xfb\x5e\x1c\x42\xd9\x39\x80\x00\xd1\x8c\xb3\x2f\xbb\x2f\x38\xfb\xa8\x89\x1c\x32\xce\xbe\x80\x55\x2f\xe3\xec\xe3\x12\xd0\x90\x71\xf6\x71\xb5\x67\xc8\x38\xfb\x52\x73\x0b\x44\x8b\x13\xad\x90\x71\xf6\x15\xb4\xf2\x0c\x4c\xec\xb0\xdd\x0c\x4c\x74\x48\x7d\xc6\xd9\xe7\xb8\xcf\x1c\x09\x97\xc3\x26\x9c\x71\xf6\x85\xea\x27\x31\x63\xa0\xcd\xe7\x04\x0c\xc6\x78\x96\x05\x13\x5b\x01\x9f\x64\xe7\x00\x62\x86\xca\x09\x33\x06\x66\x9a\x2c\x98\xd8\xf6\xf1\x57\x32\x09\x04\xb4\x97\xb8\x2b\xc4\x87\x51\x58\xb0\xa7\xd7\xef\xe1\xac\xf5\xb1\xc5\xd9\xe7\x04\xa5\x4c\x51\x19\xeb\x94\x99\xa2\x32\x2b\xfb\x2b\x42\x1d\x36\x2b\xe4\x64\x67\xb4\x29\xa2\xa9\x5f\x8f\x81\xca\x1c\xde\x13\x54\x8e\x79\x09\xb3\xcb\x54\x8e\xa1\x26\x79\xc8\x99\xfa\x6e\xd1\x14\xe3\xf3\x9e\x27\x07\x70\x78\xae\x85\x1a\x7b\x39\xa6\x40\x55\x98\xfc\x32\x17\x4a\x38\x8a\x2a\xdb\xd9\x07\x8a\xcb\x38\xfb\x26\xee\xf5\x9c\x89\x67\x21\xfa\x3e\x83\x1a\x2b\xf9\x7a\x19\xd4\xe8\x2c\xca\x2c\xd4\xd8\x33\x48\x34\x67\x12\x8d\xb2\x7f\xc3\x19\xed\xf3\xfe\xb9\x50\x82\xf6\xb8\x50\x22\xa0\x5c\xe4\x42\x69\xd7\x65\x4a\xa8\xa3\x83\xaa\x32\xe1\x9c\x13\x2c\x98\x8b\x6b\xbf\x31\x22\xa1\xc6\xf2\x80\x17\x32\x95\x63\x9c\x84\x94\x1d\xce\x89\x78\xc8\x84\x73\x16\x9f\x62\x2e\x94\x88\x5e\x07\x2e\x94\x88\xd7\x14\x66\x1a\x90\x4c\x26\x9c\xb3\xfa\x3c\x14\xb3\x56\xf7\x85\x44\x15\xcc\x8f\x99\xca\x31\x8f\x39\x26\x95\x63\x02\xa2\x38\x83\x1a\x07\x4a\x42\xa6\x72\x8c\x43\xf0\x72\xc5\x9c\x1b\x7e\xc8\x92\xb9\x84\xf0\x3d\x7e\x8d\x50\xa5\x4f\x73\x58\x11\xd1\x6c\x72\x25\x73\xfe\x71\xe3\x14\x9c\xf6\xc1\x21\xd2\x73\x47\x77\x85\xca\x0e\xd3\x14\x71\x06\x3e\x46\x44\x7a\x16\x0c\xe0\x19\x47\xa0\xb5\x97\x4c\xa4\xa7\x4b\xef\x64\x22\x3d\x17\x86\xfa\x0c\xa0\x74\xe8\x49\x6e\xae\xba\x4c\x3f\x89\xf4\xb4\x2e\x93\xc9\x01\x8c\xde\x3c\x38\x09\x93\xd9\x35\x39\x80\x4e\x8c\xce\x94\x06\xb5\xe5\x2e\x53\x1a\x74\x59\x66\xbb\x34\x28\xce\xb0\xec\x48\x4f\x8b\x23\x8a\xca\x3c\xde\x04\x14\x95\x79\x86\x5b\xc0\xca\xbd\xdd\x33\xb4\x72\xac\xab\x19\x27\x61\xb6\x1e\x40\x0e\x60\x06\x0e\x65\x72\x00\x0b\xba\x45\x26\x07\x70\x7a\xb4\x44\x7a\x4e\xf4\xc6\x4c\xa4\xe7\xf2\x01\xef\xdc\xf2\x66\xa1\x46\x51\x99\xed\x55\x21\xd2\xd3\x29\xdb\x99\xa2\x32\xd9\x22\x0e\x27\x61\x21\xc4\x3d\x77\x6e\xe9\x23\x6a\x24\x77\x72\x38\x7d\x18\x3b\x4e\x34\x1f\x70\x72\x00\x1f\xaf\x11\x39\x80\xef\xf4\x57\xa8\x6a\x0b\xd4\xcd\x02\x94\x7d\x60\x9c\xc8\x02\x94\xe9\x6e\x53\x5a\x3f\x27\x6b\x64\x72\x00\xab\x8f\x11\x51\xa0\xdb\xec\x93\x1c\xc0\xd5\xfd\x9b\xc6\x77\x9a\xdf\xab\x20\x3c\xb7\x87\x85\xf8\x43\x61\x21\xf6\x1a\xb9\xa8\x0c\xe8\x21\x53\x54\x66\xa3\x37\x66\x8a\xca\x38\x36\x37\x83\x1a\x13\x9a\x70\x1e\x2e\x0a\xe4\xf6\x2e\xb1\x20\xf4\x8c\x1c\xc0\x68\xc1\x45\x51\x99\x89\x49\x25\x4f\x8a\x72\x61\x2b\xcf\x94\x06\xad\x16\x9b\x84\x7a\xba\x34\x54\x9e\xa4\x57\xbb\x9f\x13\xd5\x86\x38\x83\x3c\x51\x6d\xcc\x26\x26\x39\x9c\x66\xe5\x2e\x0d\xea\xd9\xb5\x93\xd0\xe7\x08\x27\x61\xf3\xce\x9a\xe4\xe0\x9a\xed\x4e\xa2\xfd\x71\x54\x67\xa1\xc6\x1e\xbc\x2a\x13\x83\x8e\xd9\xa7\x43\x3d\xfd\x1b\xa1\x9e\xae\x35\x92\x09\xf5\x2c\x16\xbe\x38\x09\x9d\x2c\x9f\xed\x24\xfc\x3c\x49\x8e\xdc\xf2\x6f\x38\xd1\x7c\xaa\x28\x0d\xea\xbc\x80\x4c\x0e\xe0\xf2\xcc\x93\x03\x78\x2c\x36\x41\x8d\xc1\x33\x01\x6a\xb4\x59\x21\x2f\x2e\x5c\x48\xfe\x0a\xa5\x6b\x3f\x2d\x10\xc7\x04\x96\xc8\xa0\xc6\x8c\x3f\x23\x83\x1a\x5d\x6d\x31\x13\xea\x39\x7c\x72\x08\xf5\xb4\x8b\x39\x13\xea\xb9\x7c\x3a\xb6\x2b\x8f\xf8\x49\x2a\x8f\xe0\x12\xcd\x54\x8e\x09\x78\x14\xb2\x2b\xc7\x1c\x3f\xe9\x1c\xe3\x1f\x14\xe7\x0c\x19\xff\x61\xf2\xd1\x24\x0a\xd4\x21\x6a\x79\x3b\x47\xce\x43\x20\x4a\xd9\x47\x73\xdb\xff\xcb\x04\x72\xd7\xc4\xc8\xfe\x8a\x58\xcf\xb0\x04\x17\xa0\xac\xcb\x52\xfa\x10\x9d\x67\xb6\x74\x9c\xbe\xca\x94\x09\x50\x56\x47\x5c\xe4\xc3\x0d\x5b\x04\xba\xe5\x43\xbd\x27\xcb\xbb\xc3\x5d\x0c\x9e\x08\x8a\xca\xd8\x35\x96\x8f\x6d\x3d\x6e\x9d\xbb\x26\x3e\x7d\xc1\xd6\xe3\xed\x79\xb0\xf5\x58\x74\x00\x28\xe7\xe7\x2b\x1b\xd7\x26\x0b\x46\x84\xe8\x43\xb2\x67\x26\x42\xf4\x31\xd3\xbf\xdc\xe0\x67\xf6\x02\xa0\x7c\xdd\x02\x0e\x44\x27\xaa\x64\x1c\x88\xc5\xc7\xf6\x92\xa2\xba\xfd\x24\xc9\x28\x84\xbd\xe5\xeb\xe3\x47\xeb\xdc\x27\xd1\x3f\xdf\x14\xb2\x70\x4a\x73\x26\xcf\x6f\x5a\x8b\xbc\x0e\xb3\x63\xf3\x18\x34\x9a\x15\xd8\x49\xe8\xad\x04\x68\x9c\x1c\xcd\x62\x27\x21\x9a\x70\x11\x68\x2c\x1b\x6b\x59\x79\x7c\x0b\xda\x80\xd2\x1a\x85\xee\x27\x29\xea\xfe\xfa\x49\x34\x6f\x46\x5b\x04\x1a\x9b\x1d\x9d\x85\xc2\x31\x91\x83\x5a\xc8\xf3\x73\x7d\xb7\x42\x9e\xdf\x85\xb9\x15\xf2\xfc\xee\x70\x7b\xe4\xf9\x31\xf3\x85\x3c\x3f\x6e\x42\x0f\xc5\x79\x7e\xc1\xbf\x51\x39\xba\xb8\x67\xae\xac\xac\x59\x2a\x81\xfb\x40\xd0\xdc\x4a\x60\x7c\xf8\x33\x8a\x90\x61\xb1\x55\xb6\x90\xe7\x47\xa1\xff\x50\xc8\xf3\x2b\xe8\x8d\x85\x3c\xbf\xca\x6e\x2d\xe4\xf9\x4d\xb4\xeb\x12\x00\xfd\x88\xfe\xe2\x5b\x08\x5f\x7f\xa5\x83\x36\xfd\x9e\xf6\x20\x17\x0b\x84\x42\x75\x98\x74\xfd\x1e\x3e\xfa\xe2\xf7\xb8\x4a\x0a\xab\x73\x09\x18\x35\x96\x9f\xd4\x1e\x0c\x9e\x33\x21\xc3\x1e\x89\xf7\x28\x2f\x61\x84\x58\xb9\xcb\xcb\xa5\x0a\xe4\xd2\x96\xd7\x35\xe3\xe8\x0b\x61\xa0\xcd\xb3\x44\x18\xe8\xc5\x15\x57\x7c\x0b\x21\xfa\x5f\x79\x71\xb0\x3d\x6e\x8f\xf5\x7b\x4d\x69\xfd\x36\xd1\x50\x85\xea\x30\x09\x01\x5b\x5e\xe7\xc1\x31\x4b\x5c\x1a\x51\x41\x1d\x85\x30\xd0\xbb\xdd\x02\xd5\x37\x3c\xd7\x38\x10\x2f\xaa\x4d\xc1\x81\xd8\x61\xa6\x05\x07\x62\xaf\xfe\x8d\x5b\x24\x3d\x76\x1c\x88\x36\x43\x15\x1c\x88\x0f\x2c\xb2\xe0\x40\x7c\x89\x36\x29\x91\xea\x37\xc9\xbf\xa1\x79\x83\xfa\x4b\x74\x18\xa1\x7f\x23\x86\xcb\xe3\xa3\x3a\x0c\x77\x19\x86\x12\x71\x00\x67\xb7\x4e\x1c\x5a\x73\x0b\x5c\x1a\x11\xfc\x1e\xf7\x29\xc5\x1f\x69\xc9\xc5\x95\x48\x81\xba\xc5\x29\x80\x68\x7c\x05\xdf\xe2\x82\x2d\x15\x7c\x8b\x0e\xda\x2a\xf8\x16\x97\x37\xa4\x7d\x8b\x18\xe3\x0b\x85\x63\xb8\x2a\x35\x14\x1c\x88\x2e\x8c\x58\x92\xcb\x55\xfa\x3d\xe7\x90\x31\x11\x38\x10\x9d\xe5\x5e\xec\x40\x9c\x6e\x8f\x08\x66\x6f\xdd\x84\xbd\xd8\x9b\x9c\x4a\xa4\xf5\xf8\x3d\xbb\x02\x38\xd2\x89\xa5\xc5\x38\x51\xb2\xed\xc5\x7c\x05\xd0\x98\x30\xa2\x14\x83\x46\x18\x5f\x31\x68\x2c\xa6\x00\x8d\x5e\x14\x17\x8e\x31\x43\x21\xcf\xcf\x96\xec\x92\xa9\x39\x06\x24\x2f\x02\x8d\xf9\xd3\x6b\xf2\xfc\xec\xf6\x2c\x14\x8e\x71\xb8\x4e\x21\x42\xd4\x25\x4a\x0a\x39\x80\xef\x71\xcf\x28\x7a\xfe\x98\xe2\xbe\x8c\x4f\x3f\x5d\xae\x92\x99\x28\xa4\xe0\x62\xfe\x28\x80\x46\xd7\x7e\x2b\xb8\x1a\xab\xfb\x49\x84\xe8\xf4\xd6\x25\x42\xf4\xf8\x38\x7c\x5c\x8d\xf4\x05\x57\x63\xfb\xfc\x46\x7c\x89\xf7\x44\xa1\x30\x0e\xf6\xe9\x52\x88\xd0\xf6\xbc\x50\x38\x26\xe1\xf4\x29\x44\x88\x0e\xb4\xf9\x42\x84\xe8\x9c\xfe\x0a\x85\x71\xa2\xc7\x70\xd8\x21\x7e\x12\xa3\x94\x0f\x31\xae\x46\xee\xe0\x08\x05\x57\x63\x26\xe5\xb7\x10\x21\xea\xf4\xf1\xc2\x7d\x12\xfb\xf3\x1b\xe5\x38\xbd\x77\xb9\x4f\x22\x98\xed\x56\xc4\x7b\x77\x0b\xb6\xf7\xb3\x7e\x84\x88\xe6\xe5\xf7\x3a\xf1\x3a\x7e\x0f\x64\xf1\xf8\x49\xb1\x1e\x6e\xb8\x0b\x85\x1c\x40\xae\x09\x0b\xa5\x22\xde\xbd\x07\x41\x86\x1d\x75\xa2\x18\x19\xfa\xc4\x81\x0c\x27\x51\x23\x85\x72\xa3\x8f\x05\x09\xc8\xd0\xae\xaa\xd2\x5c\xb3\x91\x16\x70\x35\xba\xa8\x6e\x01\x19\x2e\xaf\x0a\xc8\x90\x9a\xe4\xa1\x34\x97\x30\xf0\x7b\x84\x8f\x22\xd0\x4b\x43\x74\x80\x05\x0b\xe1\xa3\xdc\x22\x19\x4a\xc3\x95\x8a\x0a\x56\x9a\xef\xab\xf1\x37\x37\xca\x85\x7b\x46\xf2\x84\xf7\x75\xe3\xaa\x25\x14\xab\xd2\x71\xa5\x5a\xac\x38\x7c\x34\xb3\x3f\x09\x1f\xcd\x5e\x3f\x6e\x21\x74\x11\xdf\xc2\x2d\x84\x0b\x87\x7a\xc1\xd5\xf8\x9a\xbf\x80\x0c\x5f\x12\x94\x0a\xc8\xf0\x35\x7f\x01\x19\x46\xaf\xa6\x91\xa1\x77\x32\xc8\xb0\x7d\xde\x43\x3d\x0b\x7e\x8f\xd8\x1a\xa2\x85\x0a\xc8\xb0\x78\xfd\x40\x86\x0e\xc8\x2b\x20\xc3\x8d\x47\xa8\x80\x0c\x37\x06\x9d\x42\xb9\xd1\xe6\x1d\x62\x64\xf8\x85\xc9\x7f\x9b\x25\x0b\x34\xe6\xed\x21\x0c\x58\x2b\x36\xc5\x42\xea\xe0\xe3\x23\x46\xea\x60\xc0\xd2\x5b\x48\x1d\x8c\x9f\xdf\x28\x06\x6f\x96\x3c\x88\x4c\xf4\x74\x0e\xc2\x8a\x3e\xbf\x91\x5f\x96\xdd\x02\x91\xc1\x3e\x2a\x14\x8e\x59\xd8\x88\x0a\xa0\xd1\x61\xf3\x85\x4a\xa4\x1f\x3d\x87\x4a\xa4\x8e\xe2\x28\x13\x2f\xb2\xa7\x05\xd0\x58\x88\x28\x2e\x80\xc6\x96\xfc\x24\xe9\x9d\x3e\xfc\x14\x8e\x29\x78\x67\x0b\x85\x63\xaa\x25\x1c\xa0\xd1\xa5\xcc\x0b\xa0\x71\x5a\x37\x24\xb2\x34\x0f\xbf\xa7\xa5\x9d\x8f\x29\x8e\xa6\x45\x1c\xa0\xd1\x25\x14\x0b\xf9\x81\xd9\xda\x19\xb7\x10\xae\xe1\x5e\xe3\xea\x40\x67\x2e\x80\x46\x27\xc8\x16\xdf\x42\x88\x1b\xb2\x50\x38\xc6\x29\xc6\x65\xb9\x3a\x05\xfd\x14\x68\xec\x76\xde\x14\x40\x63\x43\x9f\x2e\x44\x96\x3a\xc3\xb2\x2c\xbb\xaa\x98\x79\x81\xc6\xbe\x49\x5f\x28\x8b\x28\x07\x6b\x4b\x14\x8e\xe9\xaf\x9f\x44\x74\xf8\xc0\x01\x1a\x5d\x74\xa5\x00\x1a\x67\x73\x7b\x88\x46\x6b\x28\x94\x1b\xdd\x20\xae\xc2\xb5\xf6\x11\xdf\x43\xe1\x5a\x7b\x1b\x0b\xca\xb6\xbd\xd1\xbf\xb1\x3f\x83\xdf\xe3\x16\x34\x82\xaf\x0a\xa0\xd1\x38\xa3\x90\x1f\xb8\xcd\x50\x00\x8d\xcd\xab\xb9\xed\xaa\x62\x0c\xdc\x42\x58\xcc\x84\x85\x0c\x7b\xf5\x9e\xc7\xd5\x18\x2d\xd4\x7c\x0b\x21\x21\x55\x65\xfb\x96\x37\xb7\x87\xbd\x18\x44\x59\x40\x86\x76\x89\x16\x5f\x6b\x0f\x98\x2e\x84\x8f\x36\xab\x2f\xb8\x1a\xc7\xf5\x6f\x5c\x45\xe4\xd5\xe4\x16\xc2\xcf\x18\xb8\x85\xf0\x98\x61\x1e\x42\x2f\xad\x7d\x12\x3e\xfa\x78\xe6\x8f\x6b\xe2\xd1\x33\x5f\x28\x61\x85\x85\xd0\xd2\x07\x0b\x6a\x21\xb4\x34\x9a\xd1\x1e\xec\xe1\x18\x1c\x0b\xa1\xa5\xaf\x95\x19\x5c\x8d\x8f\x35\x53\x90\xa1\x4b\x04\x15\x72\x07\x0d\xd7\x0b\xb7\x10\x6e\x62\x41\x8a\x90\x61\x7b\xf1\x47\x15\x21\xc3\xe6\x7a\x80\x05\x57\xa3\x2b\x71\x97\x4b\x72\xd6\xe7\x49\x89\xc6\xe3\x15\x73\x68\xe9\xe7\x3d\x0a\x37\x1d\xb7\x80\x6a\x63\x25\x8f\xdc\xc1\xc7\xac\x95\xdc\xc1\x08\x46\x2e\xe4\x0e\xda\xf9\x5d\x5c\x6e\xb4\xb8\x85\xc3\xa9\xf2\x6f\x12\xfd\x9d\xb0\x83\x4a\x75\x18\x6e\xbd\x0e\xd5\xa8\x11\x31\x56\xa9\x0e\x63\x73\x52\x35\x6a\x04\x23\x57\x5f\x36\x81\x12\x54\x41\x8d\x05\x55\xaa\x72\xd9\x44\xff\x21\x4b\xae\x8f\x6f\x09\x7b\x78\x4d\x52\x93\xeb\x11\x43\x15\xa0\x6c\x9d\xcd\x5a\xb9\xa0\xd0\xc1\xd4\x95\x4a\xa4\xae\x60\x5a\x1f\xa4\x4a\x75\xe3\x44\x6c\x3e\xfe\x8a\x58\x8f\xb3\xf8\xeb\x43\x80\x0e\xec\xac\x02\x28\xcd\xb2\x2a\x80\xd2\x29\x03\x95\xc2\x31\x05\x28\x5f\x01\x94\x1d\x2b\x5b\xc5\xd5\x38\x90\xbd\x35\xb8\xf0\x08\xad\x07\x17\x1e\xa1\x75\x5c\x8d\x0e\x12\xab\x5c\x50\x18\xdc\x17\xf2\x0a\xbd\x91\x2b\x79\x85\x76\x01\x55\xf2\x0a\x47\xf3\x37\x1d\x20\xe7\x27\xc9\xdb\x62\x4b\x54\x0a\xc7\xb4\xe8\x7e\x32\x3e\xb4\xeb\xea\xc2\x31\x08\x8b\x2a\x40\xd9\x86\x47\x44\xe1\x98\x81\xcb\xa2\x12\x91\x3a\x39\xfc\xf5\x75\xd2\x85\xbf\xe2\xc8\x6e\x3f\x49\x94\x43\xf4\x93\x04\xc8\x01\x4b\xeb\xeb\xbb\x5e\x4c\xb9\x5c\xa5\x5b\x1f\x68\x4b\xa6\xb0\xa7\x0e\x7f\x93\xa3\xc9\x66\xad\xb8\x1a\x43\x73\xeb\x14\x56\xc1\x3a\x57\x5f\xec\x8d\x1c\x80\x1a\xc9\x4b\xc3\x8a\x58\x71\x35\xba\xca\x44\x75\x5e\x21\x1a\x43\x8d\x8e\x02\xc8\x50\xda\xba\xdd\xe3\x13\xa0\x6c\x2e\xc0\x5e\x29\x37\xfa\x26\x3f\x89\xc1\x23\xba\xbd\x86\x39\xc9\x2d\x90\xd8\xf4\x69\x61\xa0\xbd\xd0\xcf\xe8\x72\x9c\x6e\x81\x22\xeb\xdb\xef\x69\x7c\x2e\x34\x54\x29\x37\x5a\xd0\x7a\x2a\xe5\x46\x7d\x73\x48\xa5\xdc\xe8\xf1\x93\xc9\x01\x8e\x7c\x25\x11\xd5\x8e\x79\xa0\x26\xdf\xb2\xe8\xf7\xa4\xda\x14\x82\x2d\x2b\xa8\xb1\x01\xf3\x2b\xe5\x46\x3b\xbe\xfd\xca\xfd\x15\xb6\x25\x57\xdf\x5f\xe1\xd5\xe4\xfe\x8a\x73\xdd\x02\x51\xfb\xb8\xa6\x2b\xa8\x31\x46\xb7\x67\xd6\xca\x4c\xd8\xd5\xd8\xdc\x1e\x5a\xeb\x74\x0b\x17\x1f\x09\x27\x87\x00\xd5\xed\x33\x9d\x61\x3d\x14\xfc\xac\x54\x87\x71\x0a\x46\x25\x40\xf5\xf1\x0c\x12\xa0\x1a\x60\xd7\x95\x00\xd5\xe0\x3d\x91\x5d\xa9\xda\xdf\x74\x52\x97\xbf\x29\xfe\xd2\x92\xbf\x42\x5e\xa8\xe7\x13\x57\xa3\x63\xea\x6b\xc6\x55\x7c\xfc\x15\x5c\xc5\xaf\x9f\xc4\x1e\x8e\x88\xab\x04\xa8\x9e\x4f\xcf\x24\x3a\x5e\xaf\x43\xa1\xfa\x8d\x67\xb0\x18\x75\xd0\x42\xc1\x60\xf5\xa1\x60\xad\xc4\xc8\x54\x02\x54\xf3\x87\x22\xa9\xc4\xfc\x05\x57\x63\x45\xd1\xa9\xdc\x5d\xff\x78\x3e\xb9\xbb\x3e\x98\x17\x14\x17\x6e\x32\x45\xe9\x83\xfa\x23\xc3\x45\x2d\x54\x0d\x30\x5f\x2f\xd6\xea\x3c\x20\xb1\x56\x97\xc2\xae\x5c\x50\x78\xcc\x76\x0d\x28\x81\x20\xd5\x80\x12\x7d\xb3\xe2\x85\x4c\x04\x74\xd5\x4a\x80\x0e\x1a\x43\xad\xd6\xca\xd9\x90\x15\xc0\x55\xfd\x1e\x5a\x0f\xe0\xb6\xe2\x6a\x2c\x1e\x2c\xae\xc6\xee\xc3\x41\x51\x19\x97\x9d\xac\x5c\x50\x68\x03\x4b\xad\x04\xc3\x63\x1b\xac\xdc\x5f\xe1\x9b\x0b\x2a\xf7\x57\xdc\xe4\xf6\x6c\xcb\x82\x2d\x71\x0b\xe1\x13\xdc\x4f\x62\x73\xbd\x09\x1a\xe3\xf3\x71\xa0\xdc\x68\xf0\x26\xe0\xfe\x8a\x68\xa1\xd6\x60\x3d\xde\x12\x14\x95\xf1\x7d\x19\x95\xa2\x32\x85\x32\xa5\x95\x7c\xc4\x01\x42\xa8\x00\x4a\x17\x77\xac\xdc\x5f\xc1\x7d\xd5\xa1\x02\x28\x47\x71\x0b\xe4\xb3\x2d\xbf\x07\xea\x48\xfe\x26\xe5\x2a\xb1\x5e\x55\xf2\x11\x0f\x86\xa0\x4a\xec\x2a\xb7\xee\x86\x4a\xec\x2a\xb7\x50\x87\xca\xfd\x15\xc6\x3c\x95\xd8\xd5\xe2\x19\x24\x76\x75\x99\x5d\x13\xbb\x7a\x89\x1a\xa9\xb8\x1a\xa3\x85\x2f\xae\xc6\x8a\x3d\xae\x76\x07\x58\xd1\xba\x01\xa5\x57\xcc\xae\xc6\xed\x6f\xda\xd5\xe8\x27\x1d\xdb\xc9\x9c\x19\x50\x16\xf7\x05\x7b\xbf\xf7\xa0\x00\x65\x5b\x38\xed\xea\xc7\xd5\xe8\x27\x71\x35\x9a\xd1\x0e\xa7\x6c\x33\x83\xb8\x1a\x0f\xe6\xab\x3a\x9c\xef\xc5\x37\x07\xc9\x0c\xe4\xc8\xd5\xe1\x00\x40\x7a\x36\x38\x9a\x9e\xeb\xe1\xaa\x16\x8c\x88\x7c\x44\xd7\x4d\xab\xe4\x23\x66\xef\x2c\x6e\x21\x6c\x9e\x09\x5c\x8d\x6d\xfa\x37\xa2\x8c\x88\x95\xa8\x42\x8d\x79\x78\x0f\x92\x8f\xe8\x2b\x01\xea\x20\xca\x08\xa4\x56\x87\xab\x92\xf0\x95\x89\x6a\x43\x4c\x40\x05\x35\x72\x57\x77\xa8\x46\x8d\x14\x8a\xaa\x46\x8d\x44\x92\x57\x5c\x8d\x2e\xed\x5f\xa7\xef\x8f\x61\x0c\x54\x95\x71\xb8\x63\xa5\xaa\x8c\xcb\xf7\x57\xaa\xca\x44\x4c\x0e\x95\xaa\x32\x9f\x55\x01\x35\x56\xef\x2c\x50\xa3\x4d\xa1\x15\xd4\xb8\xa2\xdf\xdb\x64\x51\xba\x2f\xa0\x46\xf3\x09\x2e\xa9\x70\xae\x41\xa5\xdc\x68\xb4\xaa\x41\xb9\x51\xd7\xe7\xab\x04\xa8\x5a\xb7\xaf\x5c\x52\x61\x03\x52\xe5\x92\x8a\x84\x3d\xbc\xfa\x92\x0a\x8b\xbf\xe5\xfd\xe9\xaf\x70\xfe\x82\x9f\x74\xb9\x58\x7f\x93\x4a\xd5\x58\xff\x2b\xa8\xd1\xd9\x97\x15\xd4\x98\xcc\xf9\xc8\x47\x4c\x38\x48\x2b\xe5\x46\xf3\xe7\x9b\xe2\x2f\xa5\xfe\xa8\x84\x7d\x5d\xb6\xb5\xf2\x49\xdf\x5f\x41\x7d\x88\x4a\xec\x6a\xc1\xd6\x5a\x89\x5d\x75\xd0\x4f\xc5\x0b\x79\x00\xa2\x75\x33\xf4\x63\x8a\x3b\x00\xcc\xca\x01\x8d\xb6\x34\xd5\x8d\x3d\x0e\x3f\x67\x25\x1d\xf1\xb3\x05\x01\x8d\xc3\xac\x9c\xf8\xd4\x89\x77\xbd\x12\x9f\x3a\xbb\x9f\xe4\x8e\x11\xeb\xda\x1b\xd0\x61\xed\x93\x3b\x2a\xb6\x0f\xf1\x71\x6a\x03\xdf\xc4\x9d\x98\x7c\x50\x01\x8d\xae\x2b\x51\x8f\x53\x53\xd8\x20\xc4\xa7\xee\xe3\xf7\x28\xd9\x48\x08\x7f\xc5\x9d\x18\xac\x8f\xe1\x4e\x74\xd5\xa8\x8a\x3b\x31\x5a\x7f\xc7\x9d\xb8\x92\x5b\xc0\x15\xf0\xfa\x37\x8c\x36\x58\xc4\xea\xe1\x7a\xa3\xeb\x31\x1c\x1c\x5e\xa6\xf0\x14\x5b\x4b\xa6\xa4\x68\xf5\x86\x74\xc1\x99\xe2\xdf\x10\x0f\x38\x10\xeb\xa7\xa4\x28\xeb\xe7\x82\x33\x58\x42\xeb\x75\x51\x20\xbf\xc7\x1d\x2a\xde\x4a\x14\x9c\xf9\xe8\xb0\x80\x46\xe7\x3c\x55\x40\xe3\xf6\x9e\xb8\x0e\x32\x62\xec\x8e\x4f\xb5\x0e\x84\xab\xd1\x01\x95\x15\x57\x63\xb0\x8e\xee\xf8\x54\x0b\x3c\x5c\x8d\x9d\x7e\x36\x5c\x8d\xb6\xe9\x37\xe2\x53\x3b\xcc\xad\x39\x1f\x91\x6f\x36\xf2\x11\x37\x39\x9c\xcd\xf1\xa9\x44\x08\xb4\xc7\x91\x36\xfe\x8a\xc4\x7b\x42\xe0\x35\xe2\x53\x13\x36\xc5\xf6\x89\x4f\x5d\x50\x5c\xbf\x05\xdb\x6d\xe4\x23\x06\x98\x5b\x23\x1f\x31\xc1\xdc\x1a\xf1\xa9\xa3\xf9\x49\x4a\x52\x0e\x3f\xa9\xe3\xe7\xca\x15\x8d\xf8\xd4\x83\x95\xb4\xf9\xf6\x42\x76\x6b\x23\x57\x31\x54\x53\x0e\xf2\xe3\x2b\x04\xa1\x72\xcd\x68\x68\x20\x43\x97\xb9\x6c\x20\x43\xc3\xf5\x06\x32\xe4\x3a\xfc\xd0\x40\x86\x1d\x86\xd9\xa8\x38\x13\xaa\x5b\xf7\x0d\x93\xfe\x0d\xe4\x44\xee\x60\x0b\xe4\xba\x05\xb7\x2e\xf1\xd7\x59\xdb\x86\xab\xf1\x4e\xf7\x85\xd4\x9b\x6d\x4a\xeb\xf7\xa0\x45\xb6\xd7\x35\xf1\x18\xfb\xeb\x9a\x78\xa6\x6c\x94\x32\x45\xae\x22\x3b\xb9\x91\xab\x38\xa7\x29\xd2\xd5\x51\xdd\x1a\xf7\xd3\x07\x94\x8b\x46\xae\x62\x87\x4b\x35\x97\x14\x85\x4f\x34\x90\xe1\x29\x6e\x81\x48\x29\x70\x70\x73\xae\x22\xa2\xb8\x91\xab\x98\x8a\xbf\xe9\xfc\x05\xb7\xe7\x48\x29\x7f\x93\x20\x38\xc2\x6a\x1b\xae\xc6\x88\x02\xd8\xa2\xfd\x51\xf4\x5a\xc8\xb0\xd9\x7c\xd5\xb8\x9f\x3e\xba\x3d\xee\xa7\xd7\x05\x1d\xbf\xc9\x92\x9b\xaf\xae\x47\x17\x6d\x5c\x5d\xef\x62\x2d\x8d\x34\xc6\x87\xa4\xdb\x46\xb5\xd1\xf0\xba\x39\x1d\xcd\xb8\xdc\x31\xe2\x37\xb1\xa0\x36\x2e\x3d\x8c\xd7\x43\x30\x6b\x65\x92\x00\x8d\x73\xfb\x37\x24\xe3\xeb\x4e\x23\xf9\xb1\x9d\xb5\xc4\xf5\x38\x80\xe2\x96\x2c\xf9\x79\x92\x4b\x0f\x0d\x4f\x5a\xc2\x4b\xee\x4d\x90\x10\x0f\xc8\xb4\x96\xac\x99\xfa\x2b\xd8\x73\xb2\x7f\xe3\xfa\x26\x4c\x15\x4d\xa0\xb1\xba\xb0\x65\xa3\xa4\xe8\x06\x96\x36\x4a\x8a\x5e\x2c\xee\x8d\x92\xa2\x6f\x73\xeb\x78\xc9\x81\x66\x8d\x92\xa2\xf6\xc0\x36\x97\x14\xfd\xb4\x4e\xa4\x86\x0f\x2a\x25\x45\x1f\x60\x62\xcb\xa4\xa6\x10\x19\xd2\x32\x69\xa8\xcd\xbf\xd9\x53\x4c\x5f\x32\xa9\xb4\xde\x74\x2e\x38\x83\x23\xb0\x39\x06\x15\x1b\x5f\x23\x06\xd5\x8c\xaf\x01\x0c\x7d\x8d\x4f\x03\x18\x8e\xe8\x6f\x12\xe8\xb6\xfc\xde\xc6\x63\xef\xbe\x60\xb8\xf0\x2c\x65\x47\x32\x30\x22\x62\x50\x27\x02\xa8\xf9\x1e\x0a\x62\x56\x1a\xf7\x50\x04\x1f\x38\xdc\x89\x2e\x6f\xdf\x70\x27\xbe\x3e\x70\x14\x9c\xf1\x4d\x75\xcd\x05\x67\xd0\x96\x9a\x0b\xce\xf8\xf8\x51\x70\xc6\x65\x35\x1b\xf7\x50\x38\xa3\xac\x01\x0c\xed\xaa\x6a\x85\x48\x14\xcf\x44\x21\xb3\xef\xd3\x33\x02\x15\x9b\x9f\x24\xc6\x16\xbc\xd7\x8a\x4b\x6e\xd2\x97\x6a\x9b\x37\x33\xe8\xeb\xe9\xc1\x12\x0d\xf4\x67\x3d\xbc\x81\xfe\x2a\xd1\x1f\x0d\xf4\x57\x87\x7f\x23\x10\x0c\x75\xa2\x55\x4a\xa6\xba\x3d\x97\x14\x5d\x7e\x52\xeb\xe7\xe2\xf3\x0d\xf4\x17\xa2\x5b\xc7\x70\xe1\x13\x00\xfa\x5b\xde\x21\xa0\x3f\x07\x3f\x36\xd0\xdf\xa9\xee\x8b\xd4\x97\xcf\xd8\x41\x7f\xbe\x1d\xae\x81\xfe\x7c\x6b\x65\x03\xfd\x25\xe2\xa6\x1a\x97\x4d\xbc\x66\xbb\xdc\x5e\xe8\xfb\x55\x1a\xb7\x17\x5e\x8c\x4b\xad\x21\x1e\x8a\xbf\x49\x24\x91\x59\x5d\xb3\x4f\x86\x11\x51\x52\xd4\x89\xd8\x8d\x40\x53\xeb\xd3\x0d\xf4\xb7\xbd\x2a\xa0\xbf\xd7\xe7\xa8\x11\xc9\x80\xa9\xa2\x35\x1b\x0e\x19\xad\xd1\xdf\xf6\x93\xa4\x42\x83\xbb\x1b\xe8\xcf\xd5\x29\x5a\xb7\x78\x67\x06\x71\x27\x3a\x4b\xb4\x75\xbb\x4b\xf9\x26\x99\x8b\x1f\x41\x89\x3b\xb1\x78\x06\xc9\x5c\x74\x86\x44\x73\x35\x1a\x8b\x38\xaa\xd1\x24\xef\xdd\x0e\x0f\xb1\x80\x05\xfd\x3d\xeb\x47\xb6\xe4\x06\x30\x4c\x14\xba\x6b\x00\xc3\x84\x25\xb4\x01\x0c\xb3\x17\xac\x93\x54\x9c\x4d\x91\x54\x6c\xa6\x38\x08\x52\xf1\x81\x1b\x2e\xc7\x49\x37\x07\x36\x37\xb4\xc8\x26\x60\xd8\x5d\xdf\xb7\x09\x18\x76\x17\xf7\x69\x03\xf1\x60\x69\x34\x10\x0f\x66\x05\x00\xc3\xe0\x2d\x0f\x30\xf4\x45\x4f\x0d\x60\x98\xcd\x7a\x00\x86\xce\x91\x6b\x00\xc3\x59\xfd\x24\xe2\x61\xb8\x2f\x64\x7f\x11\xd3\xd1\x00\x7f\x0f\x61\xde\x0d\xf0\x67\xdb\x59\x9b\x2e\xab\xc9\x62\x4e\xd7\xe4\x62\xb4\xce\x40\xf4\x62\x52\x70\xa6\x7a\xd9\x5d\x70\xc6\x3a\x9e\xb3\x0c\xcd\xf4\x29\x0d\xea\x40\xa2\xc6\x4d\x83\xe7\xf3\x4d\x12\x9c\x7d\xf8\x97\x8f\x0a\xcc\x14\xf7\x5e\x36\xb3\x59\x54\xa7\x35\x8b\x04\xa8\x6d\xeb\x2b\xcb\x17\x45\x32\xbe\x45\x75\x5a\xb7\x40\x26\x61\xb3\x20\x01\xa8\x8d\xee\xdf\x30\x94\x10\x44\xdf\x28\xff\x39\xcc\xf4\xb9\x4d\xf0\xf8\x48\x93\x49\x68\xd3\x48\x5b\xc4\x2c\xe3\x22\x69\xbe\x4d\x30\xba\x75\xc4\x91\xd7\x01\x34\xe6\xcb\x72\x1a\x68\xcc\x97\x2b\x35\xdf\x26\x48\xce\x53\xc3\xbd\xd7\x3c\xbb\xb8\xf7\x3e\x02\x7d\x3b\x09\xd6\xbf\x11\x74\x87\x91\xa1\x91\x49\x18\x30\x51\xb5\xed\x24\x66\x46\x44\x26\xe1\x32\x03\xdb\x14\xc6\xb1\xee\x4b\xe0\x67\x04\xd8\x37\x0a\xc7\x3c\xc7\xbf\xe9\x3c\x38\x10\xac\x6d\x0c\x25\xc1\xd4\x25\x95\x82\xfd\x72\x9c\x4e\x60\x8a\xf2\xa6\x3e\x63\x20\x35\xdf\x57\xd3\x40\x6a\x9b\x88\x92\x76\xa8\xbd\x88\x07\xa3\xf9\xbe\x78\xef\x48\x2e\x7f\x78\x00\xda\xed\x50\xd5\xc2\xe2\x9d\xf2\x9f\x73\x9a\x62\xfd\xbc\xaf\x0f\xb5\xed\xac\x41\x1b\xa9\x59\xdb\x3d\x88\x2a\xeb\xda\xdc\x26\x98\xac\x25\x1f\xdc\x97\x20\xc3\x46\x26\x61\x36\x23\x22\xf0\xb3\x98\x65\x39\x93\xd0\x2a\x18\x81\x9f\xce\x3c\x6d\xdc\x26\x18\xad\x4e\x70\x9b\xa0\x6b\x68\xb7\x0b\x2b\xf7\x09\xa7\x34\x68\xd8\x6e\x81\xf1\x79\x4f\x90\x49\xe8\xeb\x73\x1b\x41\xa1\xf6\x8a\xb4\x4b\xed\xb7\xee\xf7\x48\xc7\xb2\x60\xf6\x6d\x82\x46\x24\xd7\x48\x9b\x99\xc7\xbd\x17\x70\x54\x37\xdc\x7b\xc6\x43\xfd\xf1\x95\x6c\x0b\x8a\xda\x8b\x84\xbd\x75\x82\x42\xe7\x32\xc5\xe5\x08\x8c\xa1\xe3\xde\xab\x8c\xaf\xe3\xde\x73\xf1\xa2\x4e\x50\xe8\xfb\xb5\xcf\x7e\x93\x25\x77\xe2\x45\xbd\x95\x3a\x17\x0d\x5a\xef\xe8\xb8\xf7\x5a\x71\x03\x1c\xcd\xe9\x6e\x4e\xac\x7a\x0f\x94\xb4\x2c\xd7\x17\xed\x0f\x36\xcc\xe6\x27\xd1\xb2\x8e\x87\x80\x7b\x08\x0d\xac\x07\x40\x2a\x01\xef\x3d\x20\xc5\x08\x75\xe9\x81\x74\x10\x34\xa2\x4e\xd9\x50\xdf\x51\xd6\x03\x36\xe8\x6c\xca\x99\x3e\x4c\x0b\xf1\xa2\xbe\x5d\xac\x13\x2f\x1a\xdd\x3a\xb7\x09\x66\xf7\x9a\xdb\x04\x7d\x6f\x5d\x0f\x64\xa2\x79\xec\xc4\x8b\x3e\xc4\x6f\x76\x40\xdc\x83\xa5\xb0\x07\xdf\xeb\x91\xa0\x0e\x1e\x66\xb7\xae\xad\xeb\xa2\x24\xfd\x25\x09\x16\xed\xba\xe3\xde\x5b\xd8\xea\x3a\xf1\xa2\x0f\xe8\xa1\x73\x9b\x60\x43\x07\xea\xbe\x4d\xd0\xad\x93\x49\xf8\x78\x96\xc8\x24\xf4\x15\xed\x5d\x20\xae\xde\x0f\x85\x7b\x76\xf9\x3d\xea\x7b\x5c\x53\xb8\x67\x83\x9f\xc4\xfd\x35\x4d\x71\x34\x97\x7b\x4d\x4d\xb5\xc7\xfd\x3c\xe8\x1d\xcc\x19\x99\x84\x4e\xd6\xed\xb8\xf7\x0a\x49\x2c\x9d\xeb\xe9\x3f\x33\x18\x5d\xf4\x88\x99\x8f\x5e\x3f\x53\x0e\xda\xf2\x57\x28\xab\x09\x13\xee\xbe\x9e\x1e\x71\xdb\x3f\xee\x3d\xbf\x87\x11\x0c\x03\x44\xc7\xbd\x67\x17\x6c\xc7\xbd\x57\x8b\x29\xee\xbd\x20\x5e\xa7\x13\x2f\x7a\x1e\xf7\x93\xfa\x17\xd9\x2d\x00\xc2\xab\x5b\xd7\xf8\x7c\xed\x6e\x07\xa9\x39\x26\xa0\x83\xd4\x0e\x86\x92\x6e\xf7\x1e\x22\xae\xe3\xde\x8b\x84\xee\xf5\xc4\xfa\x4d\x7f\x05\x55\xc3\xf3\x82\x7b\xaf\xf9\xb8\xe3\xde\xeb\xe8\x86\x1d\xf7\x9e\x4b\x19\x75\x82\x42\x7d\xd1\x67\x07\xa9\x0d\xdc\x6d\x1d\xa4\x16\x51\x66\x3a\x48\x6d\xa1\x6b\xf7\xcf\x6d\x82\xee\x35\xeb\x97\xfc\x1e\x41\x69\x9e\x79\xca\x86\xba\xb2\x72\xa7\x6c\xe8\x44\x79\xea\x04\x85\xbe\xb8\x05\x7b\x26\xde\x17\x55\xa3\x73\x07\xbd\xed\xb7\x1d\x14\x97\xc8\xcc\xec\xa0\x38\x57\xac\xeb\x64\x12\x76\xb3\x3a\x82\x42\x27\x28\xb5\x3b\x28\x14\xad\xbc\x13\x14\xea\xfa\x6e\xfd\x13\x14\xca\x88\x08\x0a\x75\xa6\x6b\xf7\x1d\xf4\xa8\x75\x9d\x8b\x21\x5c\x30\xa8\x0b\xc5\x55\xdf\x34\xd8\x8b\xd3\x79\x0a\x14\xaa\x0d\x05\x06\x3a\x28\x2e\xe3\x70\xee\xb8\xf7\x5c\x19\xb1\x17\x54\x1b\xd2\xb1\x3a\x28\xee\x31\x4b\x16\x8a\x6b\xc6\xb3\xbd\xb0\x3f\xc1\x35\xbd\xe0\x23\x09\x6e\x81\x9c\x08\xcf\x44\xb1\x6a\xf3\x23\xc3\x45\xc7\xbd\xb7\x96\x3f\x42\xe4\x84\x8f\x74\xf1\xd6\x35\x45\x4d\xfe\xeb\xae\x68\xeb\x16\x33\x68\x2a\x8a\xda\x4f\xdd\xb9\x68\xb0\xb8\x9b\xc4\x8b\xfa\x6e\xac\x4e\xbc\xe8\x33\xfd\x5b\x82\x7d\x32\x58\x2e\x1a\x74\x40\x5e\x27\x5e\xf4\xf5\x81\x13\xc0\xeb\x21\xf9\x2b\x00\x58\xe2\x3d\x7a\x45\x6a\x02\xd4\x3a\xd7\xd3\x4f\xa0\x4b\x07\xe0\x35\x42\xb1\x3a\x00\x6f\x76\xb7\x8e\x7b\x0f\xcd\xad\xe3\xde\x2b\x00\xa0\x4e\xbc\xe8\xb2\xf4\xa3\xa4\x68\xf1\xf8\x7c\x3d\xbd\x05\x02\xee\x3d\x7b\xc9\x3b\xee\xbd\x85\x79\xa7\x03\xf0\x1a\xe6\x81\x0e\xc0\xb3\xd5\xb2\x37\x82\x9a\x80\x6d\xbd\x71\x9b\x19\x96\xd0\x4e\x69\x9a\x88\xdd\xb0\x53\x9a\xa6\x45\xb7\x60\xf7\x90\x5b\x9f\x1c\x70\xb6\x7c\x73\x12\xba\x5b\xd8\x80\x31\x7f\x93\xfa\x10\x16\x2b\x00\xbc\x63\xb1\xd2\x1d\xd4\xc4\x3a\xb8\x34\x8d\x45\x2a\xee\xbd\x82\xf6\xd9\xbb\x33\xed\x18\x11\x00\xcf\xf1\x02\x1d\x80\xe7\xb2\xf1\x1d\x80\x37\x2d\x56\x28\x4d\xe3\x58\x89\x0e\xc0\x7b\x93\xbf\xc2\x9d\x1f\x3e\xa8\x9d\x54\x03\xcc\x42\x9d\xd2\x34\xc3\x4c\x9f\xd2\x34\x2e\x73\xd4\x41\x71\xae\x43\xd2\x41\x71\x76\xba\x76\x50\x9c\xf3\xa8\x3a\x28\x2e\x9a\xf1\x81\xe2\x92\x67\x69\x70\x65\x12\x01\x4f\x5d\x28\xae\xb9\x7e\x78\xa7\xdc\x68\xc6\xc5\xd5\x29\x4d\xd3\xd0\xe3\x3a\xa5\x69\x76\xf0\x7b\xec\xcf\xe1\x6f\x6a\x7f\xba\xb2\x5e\x1f\x0e\xba\xf3\x6f\x5a\xbf\xe0\x7d\x0d\x8a\xb3\x2d\xb2\x83\xe2\x7c\x89\x43\xb7\x7b\xcf\x6c\x1e\xf7\xde\x9b\xfc\x1e\x25\x6f\x3d\x67\x20\xbc\x46\xc4\x45\x07\xe1\xf9\x52\x85\x8e\x7b\xef\x7c\x7e\xc3\x07\xb4\xfd\x1b\xb7\x25\x56\xff\x96\x89\x6b\x60\xcf\x93\x49\xf8\x61\x52\xdc\x26\xb8\x86\x29\x22\x5f\xc0\x2e\x7d\x72\x1b\x24\x70\xbd\x73\x69\x84\xef\x29\xea\x64\x12\xbe\xaf\x5b\xa0\xfe\x85\x15\x40\x32\x09\x87\xc5\x03\x99\x84\xd1\x2a\x83\x33\x09\x41\x01\x7d\x11\xcf\xec\x6f\x92\x49\x18\x30\x16\x74\x32\x09\x13\x28\xa0\x2f\x27\x69\x9b\x22\xa8\x17\xb3\x57\xa7\xfe\xcc\x6b\x26\xfc\xb9\x34\xc2\x14\xf6\x69\xb3\x72\xca\x8d\x0e\xb3\x56\xea\xcf\xf8\xe2\xdb\x4e\x26\xa1\x43\x13\x3b\xe5\x46\x7d\x4d\x44\xc7\xbd\xe7\x9a\x71\xdd\xee\x3d\xf3\x33\xdc\x7b\x8a\xc5\xff\x6d\x96\x8c\x7b\xcf\x99\x4c\x9d\x4a\xa4\xaf\x37\x32\x95\x48\x9d\x13\xde\x37\xc5\xa8\x2d\xd3\x36\x5b\xd7\x12\x67\x13\x94\x66\x26\x05\xa0\x5c\xb8\x3a\xfa\x76\xbc\xa1\x9f\x74\xfd\x0b\x7f\x53\x5b\xf7\xc3\xa0\x1d\x2f\x4a\x2c\x41\x27\x5e\xd4\x35\x27\x3a\xae\xbf\xd7\x90\x00\xd7\x9f\x6f\x2a\xee\xb8\xfe\x9c\xba\xd1\x29\x4d\x33\xb1\xdf\x76\x5c\x7f\x09\x5b\x56\x3f\x4e\xa2\x64\xb4\x00\x4a\xdf\x39\xd0\x01\x94\xef\x32\x85\x41\xc0\x2c\x0b\xd7\xdf\xf0\x71\xc0\xf5\x37\xad\xb1\xe3\xfa\x5b\x9f\xdf\xf0\xdc\x5a\x47\xa7\x34\x8d\xab\x8c\x75\xbb\xfe\xaa\xdf\x43\x6b\xb5\x24\x3e\x16\x8d\x8c\x88\x4c\xc2\x5d\xdc\x3a\x80\xd9\xe3\x23\x5e\xd4\xf1\xa9\x1d\x40\x79\x2d\xb3\x29\x4d\x73\xbd\x62\x00\x4a\x43\xdd\x0e\xa0\x8c\xd8\x06\xfb\x25\xb2\x00\x9b\x69\x17\xa0\x4c\x1f\xe1\x44\x69\x1a\xd7\xf0\xed\x06\x94\x40\xeb\x8e\xeb\xef\xc3\x06\x71\xfd\x7d\xd8\x84\x4b\x91\x5a\xbf\xa5\x14\x69\x2b\x6e\x0f\xd1\x61\xc1\x7c\x2d\x3a\x38\x38\xd7\xa2\xc3\xdf\xc4\xbf\x60\x5d\x0d\xd7\xdf\xc1\x88\x32\x00\x94\x4f\x37\x85\x41\x00\x23\xca\x00\x50\x36\x58\xe4\xa0\x34\x8d\xf3\x11\x07\xae\x3f\xb7\x30\x1e\x47\x16\x04\x28\x82\xb6\x38\xee\x83\xa0\xd0\xf4\xfa\x9b\xa0\xaa\x4f\x0b\xa0\xaa\xe8\xaf\xf8\x36\x48\x7f\x85\x4c\x57\xd4\x82\x81\xeb\x6f\xa2\x40\x0c\x5c\x7f\x4e\xb6\x1e\x2e\x4d\x83\x71\x69\xe0\xfa\xf3\xa5\x11\x83\xd2\x34\x2e\xbd\x33\x70\xfd\x0d\xd8\xc4\xc0\xf5\x77\xa3\x29\xee\xd2\xc0\xf4\x33\xb8\x9e\xde\xc5\xee\x07\xae\xbf\x17\x96\x3c\x70\xfd\x45\x8a\x09\x8d\xe0\xfa\x1e\xf4\x25\xd8\x36\x6f\xea\xff\x61\xec\xcf\x95\x2b\xd8\x7d\xa8\x5f\x2c\xbf\x4f\xc3\xb9\xc9\xaa\x9b\x10\x1c\xde\xc3\x81\xcb\x99\x03\xbf\x7f\xe0\x12\x7e\x6b\x9f\x96\x74\xae\xfe\xe7\x0b\x14\x6c\xaa\x07\x36\x07\x10\xc3\xc2\xc2\xc0\xef\x3b\xf9\xe5\xfb\x4f\x14\x56\x13\x9a\xd2\x11\xf5\x76\xea\xd5\x70\xd8\x4f\x8a\x4d\x88\x20\x6c\xc2\x3f\xa3\xa2\x4c\x13\xfe\x99\x8d\x6b\x64\x02\x0a\x15\xfa\x63\x52\x6c\x62\xb2\xe6\x27\xc5\x26\x0c\x35\x6b\x26\x1c\x3a\xc4\xb1\x26\xa1\xbf\xdc\xf4\x3f\x6a\xa1\xe0\x98\x99\x80\x42\x55\xe7\x7a\x26\x1d\xfd\xbc\x1d\xab\x31\x98\xde\xee\xf3\xb7\xd4\xb3\x84\x55\x45\x78\x7d\x52\x4d\xd0\xba\x9e\xe9\xaa\xe9\xd9\xfa\x05\x1e\x1d\x77\xe7\x54\xb1\x89\x47\xbd\xbe\xc0\x15\xe8\xa7\x5b\x8d\xe5\xe0\x9f\x9e\x59\xc8\x1e\xee\x53\x96\xe1\xd7\xbc\xff\x4f\x91\x3c\x31\x28\x95\xc5\x3f\x95\x80\xf8\xe8\x21\x18\x24\x98\x0b\x33\xcb\x20\x61\xa2\x09\xfd\x19\x59\xfc\x93\xd0\xdf\x21\xa4\x36\x55\x68\x50\x8b\x8e\xd0\xdf\x41\x78\x4f\x42\x7f\xca\xf7\x9a\x6e\x50\xb6\xb0\xf4\x3e\x3e\x3d\xeb\x99\x64\x71\x69\x99\x11\xfa\xab\xc4\x86\xa7\x0c\x4a\xb4\xf9\x89\x41\xd9\x34\x2c\x05\xad\x0e\xa1\x31\xa9\x43\x21\x2a\x95\x49\x1d\x8a\xd1\xf4\x3f\xb4\x3a\x7c\x91\x93\x2c\x43\xc3\x54\x9a\x64\x19\x2e\x7d\x11\x59\x86\x5b\xcb\x05\x83\x72\x1f\x3d\x45\xa7\x26\xfd\x04\x2f\xaa\xe8\xfa\x24\xcb\x50\x35\xa9\x27\x59\x86\x01\x4d\x63\x92\x65\x28\xca\xbf\x49\x96\xa1\x12\x8e\x67\x85\xff\x42\x23\x01\xa1\xe9\xc3\x81\x37\x21\x34\xed\x1c\x71\x13\xbc\xe8\xd0\x53\xc0\x8b\xce\xa0\x2b\xfd\xe8\x98\x8f\x9e\xc9\xd1\xa1\x85\x0c\x5e\x74\x7f\xee\x03\x74\x57\xf4\x4c\x1c\x02\xc4\x02\x66\x95\xc1\xa5\xbe\x70\x74\x0c\xdd\x87\xc3\x2a\xe9\x0d\x1b\x4b\x46\x57\x8a\x3f\x81\x51\x12\x5e\x94\x28\xc5\x04\x2f\xaa\x8a\x2a\xd3\x0d\xca\x21\x9b\x60\x36\x58\xf7\x82\xae\x24\xf6\x50\xf5\x4b\x84\xa6\xba\x8f\x2c\x43\xf5\x53\x84\xa6\x78\x6c\x27\x84\xa6\x62\x72\x9e\x10\x9a\x0a\x73\x3e\x21\x34\xad\x8f\x9e\xc2\xd1\x41\x88\x79\x92\x65\x78\xc8\xe2\x9a\xaa\x43\xa1\xb9\x25\xcb\x30\x74\xdd\x47\x1d\x8a\xad\x5e\xfb\xfa\x14\x97\xde\xc4\x6a\xd4\x51\x3c\xc9\x32\x14\xea\x7b\x62\x35\xaa\x5c\xef\x84\xd0\x34\x2e\xfd\x0f\xad\x1c\x77\xd2\x24\xcb\x50\x6c\x11\x13\xab\x71\x82\x67\x9e\x64\x19\x2a\xa9\x6b\x62\x35\x4a\xf3\x9e\x58\x8d\x1f\xc1\x47\x21\x8a\xa6\x63\x8c\x42\x14\x4f\xd6\x95\x4a\xd5\x52\x5f\x00\xa5\x69\xfe\x44\x68\x8a\x82\x34\x3f\x95\x06\x19\x4f\x55\x1a\xc4\x75\x30\x55\x69\x10\x9f\xe9\x24\xcb\x50\x15\x40\x66\x97\xc3\x8a\xbe\x28\xcb\x50\x62\x9e\x2c\x43\xe5\xd6\x4d\xb2\x0c\x95\x4b\x3b\xbb\xc2\xd6\x7a\x26\x61\x6b\x5c\x38\xb3\x8b\xb5\x4d\xf7\x4d\x7e\xe9\x4a\xb2\x7c\x35\x7f\x6e\x35\xb6\x3e\xf4\x8b\x04\x7c\x2c\xd1\x49\x96\xe1\xd0\xe8\x52\x69\x50\x8e\xb5\x09\xa1\xe9\xd5\x61\x08\xff\x4c\x24\xa0\x3e\xe1\x9f\x11\x9e\x6c\xc2\x3f\xf3\x39\x8e\x00\x85\x16\x7d\x91\x40\xa1\xda\xc5\x43\xd0\x82\xff\xc2\x25\x4f\x22\x86\x43\x27\x23\x06\xa5\x68\x35\x27\x06\xa5\x92\x60\x27\x06\xe5\x94\xcc\xc7\xa0\x5c\x3a\x9b\x64\x50\x7e\xee\xa3\x44\x8c\x96\x0b\x5c\xa7\xe7\xd1\x53\x00\x94\x48\xa0\x60\x50\x56\x9d\xd2\x18\x94\x0d\x0c\xe3\xc4\xa0\x9c\x55\xbf\x48\x70\x96\xd6\x83\x41\xb9\xf1\x1f\x4d\x0c\xca\x23\x31\x4f\xfd\x8a\xa0\x5e\x63\x50\x06\x6d\x07\x0c\x4a\xa5\xd2\x4e\x19\x94\x59\x6f\x67\xe9\x12\xf0\x9a\x64\x19\x2e\x0d\x3c\xd4\x34\x32\x60\x27\x55\x08\xe5\x10\x98\x10\x9a\x6e\xd3\x33\x5d\xf4\x64\x1d\x5c\x26\x82\x79\xb6\x11\xd4\x34\x0b\xdd\x7e\x52\xbf\x42\xd8\xce\x69\x2a\x61\xc4\x17\x61\x50\x66\x2d\x2c\x08\x4d\xc5\x8a\x35\x4d\xf5\x0f\xf4\x8b\xfa\x07\x12\x91\x84\x13\x03\xa6\xee\x24\xcb\x30\x6a\x03\x40\x68\xaa\x80\xde\x24\xd4\xb8\x3f\xef\x03\x10\x94\xf4\x14\x00\x5d\x9f\x5f\x87\xd9\x54\x3f\xb1\xaa\x30\xc2\x27\x78\xd1\x43\xa8\x71\x2e\xb1\x62\xf1\xbe\x05\x20\x48\x8b\x95\x2c\xc3\x83\x35\x36\xc9\x32\xcc\xf8\x6f\xa7\x1b\x94\xa3\x10\x1c\x9e\x4b\xa8\x1f\xbe\x01\x6a\x9a\xe7\xf3\x4b\xdc\x18\x08\x06\x51\xd3\xe0\xc6\x98\x18\x94\xe2\xe0\x9b\x18\x94\xb7\xe9\xed\xf8\x92\x35\xd3\x0b\x87\x1c\x7e\xd8\xb9\x10\x3d\xd2\x4c\x17\x80\x2e\xed\x07\xb2\x0c\x07\xae\x8a\x89\xd5\x18\xb0\xa3\x26\x59\x86\xaa\xa8\x3c\x09\x43\x16\x1d\xf6\x10\x9a\x56\x29\x02\x10\x9a\x0e\xbd\xef\x53\xbf\x82\x91\x27\x0c\x29\x12\xa2\x49\x18\xf2\x6c\x3d\x53\xac\x66\x7a\x3b\x04\x03\x1a\xeb\x2d\x82\x01\xfd\x42\xf4\x68\xac\xc9\x32\x54\xfa\xf1\x54\x96\xa1\x44\x24\x56\xe3\x91\xd8\x3d\x22\x6c\xe5\x0d\x00\x46\x45\xc3\x3a\xb1\x1a\x33\x2e\xa3\x89\xd5\xa8\xea\x77\x13\xab\x51\xe0\xce\x29\xc0\xa8\x8e\x46\xac\xc6\xad\x23\x07\xab\x51\x40\xc5\x09\x60\x34\xe9\x88\xc3\x6a\x14\x17\xdb\x3c\xa2\xbe\xd2\x2f\xf0\xcc\x20\x4a\xa6\xac\x46\xc9\x10\xac\x46\x51\xb4\x4e\xac\xc6\x8b\x43\x6e\x8a\x7f\x46\xa3\x24\xfe\x19\x59\x40\x58\x8d\x4a\xe0\x9e\x58\x8d\x62\x3f\x9c\x57\x84\xc2\xbc\xe1\xa2\xda\x48\xcc\x5f\xa8\xaf\xa4\x25\x53\xc0\x42\xd1\x9b\x29\xab\x51\x7a\x31\x56\xa3\x52\xca\x26\x56\xe3\x03\x2a\x6d\x5e\x71\x61\xff\x57\x39\xd4\x89\x41\xa9\xea\x0b\x93\x04\xc4\x26\x33\x83\x04\xc4\xa9\x13\x95\x08\xe5\xd6\x62\x25\x42\x29\x5a\x3f\xc3\xa0\xbc\x84\x2c\x8c\xf2\xf4\x31\xe8\x17\x6e\x74\x72\x74\x8c\x08\xe5\x44\x28\x5a\xc0\xd7\x8a\x51\x65\x14\x2f\x54\x98\xce\x02\xa2\x15\x8d\xdd\x02\x60\x28\xce\x65\x0b\x10\x2a\x5e\x3d\x53\xa5\x8f\x74\x1f\x84\x98\x68\x6e\x16\x08\x63\x5d\xbd\x01\xae\xda\xa2\x5e\xa3\xd5\x2d\x5d\xa9\x30\x96\x7e\x01\xf6\x62\xb9\x18\x59\x86\x8a\xd8\x1b\x59\x86\x8b\x33\xdb\x30\x28\x65\xc8\x18\x61\xc8\x8e\x88\xb4\x08\x98\xa6\xeb\x17\x60\x9a\xab\x5f\x24\x38\xe3\x05\x36\xc2\x90\x81\xcd\x6f\x0a\x43\x46\xbd\x41\x61\xc8\x87\x5f\x10\x2a\xb2\xb0\x4c\xb4\x35\xb8\x7e\x8c\x30\xa4\x61\xce\x5a\x14\x42\x40\xff\x23\xcc\x5a\xf4\x0d\x80\x85\xd0\x7d\x0d\x2c\xa9\x8a\x9c\x1a\x58\x52\xb1\x43\x9b\xb0\xa4\x45\xbf\xd0\x7a\xd0\x34\x0c\x42\xd3\xcf\xc8\x27\xb4\x9e\xa0\xff\xa1\xf5\x68\xde\x31\x28\x85\x8a\x31\xb0\xa4\x15\xa1\x61\xaa\x7b\xa1\x11\x04\x4b\xfa\xa0\xd9\x58\x42\xf4\x70\xe0\x19\x59\x86\x06\xc0\xca\x30\x28\x57\x53\xcf\xc8\x52\x1b\x7a\x0a\x5a\x0f\x82\xc1\xdc\xa0\x7c\x1e\x0e\x58\xa3\x3c\x7d\x4f\xfa\x05\x37\x86\xc6\x8c\x2c\xc3\x81\x7b\xce\xc8\x32\x14\xeb\x97\x91\x65\x18\x10\x2f\x46\x96\xa1\x88\x02\x8c\x30\x64\x04\x75\x60\x84\x21\x93\xbe\x81\x30\xa4\xf8\xf2\x0c\xda\x9a\x87\x03\xc8\xb2\x44\x8f\xfa\x29\x42\xcc\xc2\x2f\xe6\x0f\xbb\xc6\x32\x08\x96\x47\xef\xf3\xa3\xb1\xe1\x74\x33\xb2\x0c\xa7\xfa\x59\x70\x08\x10\x0e\x36\x00\xa3\xa7\xea\x4a\xc0\x88\x8f\xfe\x27\x1a\x7e\xfd\x82\x4b\x79\xeb\x4a\xc2\x90\xda\x7f\x58\x8d\x2a\x61\x64\x58\x8d\x45\xfb\xf6\xc3\x4d\xa3\xb7\xa3\xb5\x6a\x9d\x61\x35\x76\x54\x22\x53\x96\xe1\xd0\xff\x94\x80\xaf\xf7\x89\xd0\x54\xef\x43\xbe\xe0\x5c\x32\xac\x46\xd5\xb0\x34\x95\xc1\xe0\xf8\x33\xac\x46\x55\xf7\x33\xac\xc6\x8a\x45\x69\x58\x8d\xaa\x50\x68\x58\x8d\xed\xe8\x4a\xb0\xf8\x58\xb0\x86\xd5\xa8\x0a\x85\x46\x96\xe1\xe0\xe8\x37\xb2\x0c\xc5\x6c\x6e\x22\x34\x8d\xea\x0b\xb4\x4a\x57\xf7\x01\x88\xd5\x28\x29\xcb\x10\xe5\xc9\xc8\x32\x9c\x5f\x3a\xf3\xff\x14\xc9\x46\x85\x8c\x85\x87\xd1\xa8\x90\x71\x00\xbe\x18\x15\x32\x2e\x3a\x97\x35\x45\x98\x99\x06\x0c\x4a\x25\x19\x1a\x06\x65\xc3\xe8\x37\x0c\x4a\x31\x16\x1b\x06\xe5\xa3\x69\x17\x6d\x8d\xa6\x01\x83\x32\x5f\xbd\x9d\xdc\x7c\x89\x09\x0c\xca\x49\xe0\xc3\x3e\x06\xa5\x7e\xa1\x15\x70\xfa\x19\x38\x53\xf1\x17\x1b\x5c\xa7\x55\x0b\x99\x0a\x19\x03\x03\xc8\xc8\x32\x54\x19\x7d\x13\xd7\x29\xe1\x28\x83\xeb\xb4\x01\xf6\x32\x55\xc8\x50\x5f\x30\x28\x37\x86\xb6\x61\x50\xde\xcf\x95\xd0\x64\x83\x5d\x35\xb2\x0c\x1f\x0c\x20\x7b\x44\x3b\xc4\xb7\x83\x33\xbd\xda\xee\x22\x34\x95\x10\x86\xb6\x46\xb5\x0c\x0d\x83\x52\x4c\x04\xf6\x88\xf6\x44\xbf\x48\x23\x31\xbd\x41\xe0\x1d\xbe\xa8\x4b\xeb\x61\x74\xbb\xaa\xca\xe9\x17\x59\x6a\x78\xd2\x0c\x83\x52\xe4\x95\x86\x41\xa9\x5a\xba\xa6\x0a\x19\x5b\xff\xf3\xad\xb9\x25\x5a\xa9\x90\xb1\x81\x38\x19\x06\xa5\xe9\x10\xc5\xa0\xb4\xa6\xf7\x51\x72\x47\x87\x28\x84\xa6\x72\x74\x59\x17\x78\x4e\xef\x43\xeb\x59\xfa\x1f\xa2\xa7\xe9\x0d\xd0\xf0\xeb\x4a\x0c\x4a\x65\xcc\x19\x06\xe5\xe7\xb0\xc0\xa0\x9c\xfa\xf6\xc1\xfa\xd4\x78\xba\x41\x39\xca\xa3\x5f\xbe\x3e\xa5\x41\x1b\x61\xc8\xa2\x55\xae\x30\xe4\xd4\x95\x24\xc8\x6a\x6b\x62\x35\x0a\x59\x60\x0a\x43\x6e\x3d\x85\x30\xe4\xd2\xdb\xb1\x1a\x81\x6c\x1a\x56\xe3\xe9\xfa\x45\xc9\x24\xd3\x2f\xd2\x48\x34\x2b\x58\x8d\x9f\x51\xc2\x6a\xdc\x41\xbf\xd0\xea\xa4\x32\x00\x26\x1d\xe4\x23\x1a\x60\xd2\x81\xd6\x6a\x64\x19\x8a\x71\xda\xc8\x32\x34\xcd\x26\xdc\x34\x4a\xea\x32\xb8\x69\x1e\xa9\x2f\x94\xb5\xdf\x58\x47\x46\x18\x32\x68\x95\x13\x86\x94\xf5\x67\x84\x21\xfb\xa3\x37\x68\x0d\xd2\x4f\x65\x12\x12\xe8\x34\xe3\x78\xc0\x1a\x33\xd5\xa7\xd7\xfe\xa3\x3e\xbd\x08\xb4\x8c\xca\x86\xaa\x31\x62\x1f\xcb\x90\x95\x85\x65\x98\x74\x3c\x60\x19\x0a\x06\x6a\x94\xba\x98\x59\xef\xc3\x72\x42\xb7\x37\x83\xda\xeb\xd1\x2f\x3f\x1e\x22\x61\x72\x03\x84\x2a\x9a\x23\x03\x84\xda\xa4\x46\x02\x42\x6d\x59\x3d\x23\x53\x59\x47\xf1\x42\x3d\xd3\xf1\x00\xff\xcc\xd1\xbc\x2f\x92\xd0\x25\x23\x01\xa8\x66\xd2\x95\x0c\x80\x6a\x4b\xff\x55\xa1\xda\x48\x32\x14\xf9\xbc\x81\x5d\x8d\x9a\x4c\xb0\xab\xe2\x58\x32\xb0\xab\x42\x18\x1a\xd8\xd5\x02\xe2\xc2\x48\x32\x14\x8b\xae\xb9\xd1\x58\x1f\x32\xd1\x8c\xd2\xf5\x72\xdb\xdb\x52\x92\x28\x4b\x70\x21\x5e\x9a\xde\xc0\xf6\xd3\x79\xe7\x46\xe3\xd3\xc9\x0f\xb4\x0d\xb5\x89\xde\x40\xa8\x31\x83\x5d\x30\x85\x1a\x35\x7d\x6e\x34\x8e\x28\x9d\xd2\x8d\xc6\x11\xaf\xee\x23\x54\x85\xc9\x63\x1b\xf1\xf9\xf9\x9f\x6f\x3f\xab\x7a\xdf\x20\x44\xa9\x37\x10\x25\xd7\xc0\x13\x6a\x1c\x60\x1e\x0c\xa3\x31\x10\x57\xb5\xad\x54\x11\x3d\x13\x18\x7b\xd4\x53\x48\x62\x96\xbe\x42\x15\x8c\x85\xa7\xc9\x08\x35\x8a\x60\xde\xa0\xa6\x49\x51\xff\x93\x53\x83\x39\xa2\x0a\x46\x91\x10\x3e\x60\xa4\x31\xaa\x0c\xec\xea\xd1\xd1\x81\xd1\xa8\x04\x75\x53\x96\xa1\x36\x38\x46\xe3\x91\x86\x09\x76\x55\xc4\xdf\xf6\xc1\xae\xf2\x7d\xc2\xae\x6a\x4b\x83\x5d\xcd\x45\x7d\xf1\xef\xab\x12\x28\x47\x59\x78\xcc\x26\xd4\x34\x9f\x23\x87\x2c\xc3\x42\xd4\xc0\x2e\x49\xda\x3a\x02\xc0\xae\x6e\x6d\x69\x8c\x46\xe5\x3c\xd9\x95\x3f\x9c\xb7\x43\x4d\x93\x08\xac\xda\x15\x6b\x1b\x33\x06\x76\x75\x1d\xdd\xc7\xf7\x49\x64\x41\x68\xfa\xd1\x0d\x21\x34\x15\x1a\xc3\x2e\x24\x02\xd2\x9d\x2e\xc7\x9f\xd6\x92\x5b\x86\xe3\xd1\x61\x48\xa8\x31\xe2\xcd\x5d\x64\x19\x6a\x1e\x16\x59\x86\x15\xb8\xd5\x52\x15\x0c\xb4\xb3\x45\xa8\xb1\xe0\x90\x5b\x84\x1a\x6f\xd7\x53\x84\x32\xd2\xff\xfc\xfb\xe4\xbb\x5e\x00\x54\x95\x20\xb1\xb0\x0c\x55\x22\x6d\x41\x68\x1a\x96\xde\xe0\xeb\x73\x45\xbd\x5d\xf8\xf7\xc3\x2f\xf0\xef\xe8\x71\x2b\x28\xc9\x57\xbf\xfc\x78\x78\x4c\xbf\xfc\x78\x58\x58\xc5\x8b\x50\xe3\xe2\x80\x5d\x0a\x35\x22\x84\x17\x96\xa1\x58\x90\x97\x2c\x43\xf4\xcd\x05\x40\x75\xe8\xed\x91\x2c\x3c\xf5\x0c\xcb\x30\x33\x0f\x0b\xcb\x30\x55\x3d\x05\xcb\x90\xbd\xb9\xb0\x0c\x1f\xec\xd2\x05\xa1\xe9\x64\xbf\xaf\x28\x3e\x76\xfd\x82\x75\x2f\xea\x29\x94\xba\xc0\x5a\x59\x84\x1a\x55\xd9\x70\x29\xd4\xa8\xf9\x4b\xc2\x8e\xf3\xb5\x00\x54\x33\xf8\x92\x25\xfe\x19\xd4\x89\x95\x14\xcf\xd0\xff\xc8\xa5\x40\x0e\xae\xa4\x2a\x49\xbc\x0f\xcb\xb0\x61\xbd\x2f\x2c\xc3\x8d\xab\x77\x61\x19\x9e\xff\x74\x5c\xac\xa4\x0c\x93\xc0\x6d\x0a\xe5\xe8\x75\x50\x99\x73\x6a\x2e\xa2\x90\xa1\xea\x17\xfc\x17\x18\x39\x0b\xec\x6a\x8a\xfa\x3c\x44\x0f\xdb\x68\x81\x5d\x2d\x08\xe1\x05\x35\x8d\x92\x1a\x17\xd4\x34\xa9\xeb\x97\x44\x0f\x03\xe1\x46\x63\xeb\x9c\x4d\x0b\xec\xea\xd0\xc0\x53\x2c\x51\x1e\xf0\x05\xd7\xe9\xd4\x62\xa5\x0a\x46\x18\xba\xd2\xbf\x2f\x22\xd8\x97\x8a\x25\xe2\x9d\x5b\x2a\x79\x8f\xd9\xbd\xa8\x82\x31\x08\x0f\x2d\xaa\x60\x8c\xad\xa7\xc0\x07\x1d\x74\x1f\xfe\x70\x4e\xf7\xa5\x2a\x18\x84\x13\x17\xd4\x34\x09\x8f\xed\xa2\x0a\x86\x74\xbc\x85\xd1\x58\x3f\xbf\x28\xc0\x83\xee\xb4\xdc\x68\xec\x22\x41\x59\x54\xc1\x88\x4d\xff\x03\x60\x85\x51\xb5\xa8\x82\x11\x81\xe4\xac\x02\x21\x26\xda\xcb\xa2\x0a\x46\xc3\xe6\x59\x85\x04\x52\xf4\x9c\x45\xa8\xf1\xc1\xe5\xb0\xc8\x32\x14\x3f\xf3\x22\xcb\x50\x54\x38\x8b\x92\xf7\xa6\x5f\x60\x57\xaf\x96\x20\xd4\x34\x9f\xe5\x49\x96\x61\x98\xba\x92\xda\x74\x90\xa4\x2e\xb0\xab\x8a\xdf\x2f\xb0\xab\xc6\xf1\xb7\x28\x79\x2f\xda\xff\x45\x06\x62\xec\x7a\x26\x46\x31\x87\xc5\x92\xd1\x28\x31\xa1\xda\x89\x8f\xfe\x67\x1c\xc5\x7a\xe6\x22\x25\x82\x91\x00\xbb\x5a\x34\x4a\x95\xa3\x91\x03\x76\x55\x58\xf7\xb0\x1e\x16\x19\x88\x9f\x91\x68\x10\x2a\xe2\x2b\x5f\x50\xd3\x88\xea\x71\x35\xd2\x1e\xf4\xb5\x8d\x50\xb1\xd6\x0b\x55\x30\x86\x56\x01\xd4\x34\x53\x42\x8a\x2a\x18\x47\xe2\x05\x6a\x9a\x46\x08\x6f\x41\x4d\x23\x72\xdc\x25\x6a\x1a\x89\x48\x00\xaa\x2a\x9c\xba\x1a\xb5\xdb\x88\x67\xac\x86\x53\xe3\xd3\x17\xfc\xa9\x57\xfd\x84\xb5\x4d\x7b\xe5\x91\x3f\x95\x67\x3e\xf8\x53\xf5\x7d\x0f\x28\x1c\x0e\xae\x45\x15\x8c\x8c\x4b\x65\x51\x3b\x31\xa3\xb1\xaf\x47\x00\x4e\x3d\xc5\xd7\xa7\x72\x3f\x17\x00\xd5\xa5\xdd\xf1\x50\xc0\x0c\xa7\xdb\xa2\xd4\x45\xad\x7a\x1f\xd8\x7f\xed\xbf\x07\xcb\xe2\xea\x0d\xa0\x54\xb4\xb2\x1e\x50\x2a\x3a\x72\x00\xa8\x1e\x49\x22\xb7\x0c\x7b\x41\x41\x5a\x1d\xcb\x1e\xc5\x71\xb9\x65\xd8\x8f\x84\x30\x19\x88\x47\x2b\x99\x7a\xf8\x41\x5f\x4b\xa9\x8b\xa6\xd5\x43\xa8\x71\x00\x26\x58\x5d\x55\x76\x58\x4b\x58\x86\xb2\x02\x56\x97\x65\x41\x5f\x3a\x55\x92\x74\x58\x00\x50\x8d\x45\xcf\x04\xca\x20\xd9\x4a\xa8\x71\x8d\xff\x0a\xef\x2d\x8c\xc6\x47\x67\x7d\xa7\x76\x9b\x86\xac\x93\xa1\xa7\x33\x4d\x65\x15\x75\x9e\x0f\x8c\x7e\xb4\xd6\x35\xf0\xa7\x92\x5c\xb0\xdc\x68\xec\x3b\xe8\x7f\x18\xc5\xda\xd2\x03\x14\x07\x7a\xf8\x1a\x94\x8d\xcc\x7a\x26\xac\x58\x9a\xe8\x41\x95\x01\xcc\x93\x85\xd1\xa8\x02\xf1\x0b\xa3\xf1\xf3\xb1\x64\x20\x2a\x24\xb3\xc8\x40\x8c\x41\x4f\x01\xbb\x2a\xb1\x04\x76\x75\x4f\xf5\x53\x34\xe0\xf4\x45\x55\x30\xd0\x14\x97\x1b\x8d\x43\x89\x2a\x0b\xae\xd3\xa0\x89\x86\x9a\x46\xc6\xca\x82\x9a\x26\x93\x63\xb5\x44\x68\x2a\x9d\x64\x2a\xf9\x92\x09\x23\x03\xf1\xa3\x77\x4c\x71\x0d\xb3\x5c\xc8\x40\x0c\x49\xff\x23\x03\xf1\xe8\x17\xfe\xfe\xad\x7e\xba\xd5\x71\x3e\xfd\x04\x05\x40\x5a\xc0\x02\xbb\xda\x75\xe0\x61\x50\xaa\x18\xeb\xc2\xa0\xdc\xea\x35\x06\x65\x94\x2e\x63\xf8\xfb\x75\xc0\x1a\xfe\xb8\xab\x5f\x18\x5c\x80\xd9\x16\xd8\xd5\x89\xfe\xbe\x4c\xd4\x49\xf4\x0c\x6a\x9a\x8d\x7d\xb2\xa0\xa6\xf9\x68\x67\x50\xd3\x28\x86\xbd\xa0\xa6\x89\x9f\x37\x18\x61\x5d\x3d\x45\x5a\x0f\x63\x66\x72\xda\xe8\x7f\x70\xd5\xe2\x59\x5e\x6e\x50\x8e\x2b\x2d\x0b\x42\x53\xa1\x46\xd6\x12\xb7\x02\xe3\xb2\x94\x51\xc6\x2a\x20\xd4\xa8\xf2\x54\x6b\x51\x80\x47\x6b\x17\xec\xea\xa3\xa3\x18\xec\xea\xd5\x5a\x5a\x38\xdd\xb4\xe6\x09\x35\x9a\x0e\x20\xd5\x4e\x94\x46\x44\xa8\x71\x69\x6e\xa1\xa6\xd9\x12\xd7\xa2\xa6\x91\x9e\x0a\x76\x55\x2c\x71\x6b\x09\xa5\xa2\x7e\x12\x2a\x06\x19\xb2\x00\xa8\x3e\x9a\x3f\xac\xc6\xa1\x15\xb2\x71\xda\x68\xaf\x10\x6a\x14\x23\xcb\xda\x7c\x9f\xf6\xdf\x56\x5a\x87\xee\x6b\xb8\x00\x98\x15\x42\x8d\x5d\xc7\x98\x32\x1e\xb1\xbf\x16\xa1\xc6\x80\xe5\xbb\x08\x35\x26\x52\xe0\x17\xa1\xc6\xf4\x79\xc3\x22\x0c\xa9\x5f\x70\x7d\x57\x3d\x85\xb4\x2a\x29\x4f\x64\x3c\x36\x1c\x4f\xcb\xad\xc6\x31\xf0\x1e\x2f\xd5\xc3\xd7\x48\x1c\xf6\x9f\xf6\xd1\xe1\xe8\xd7\xdb\x0f\xfe\x70\xc2\x74\x4b\x19\x8f\x1a\x33\xac\xc6\x44\x78\x7d\x1d\x39\x6d\x98\x31\x32\x1e\x9b\x0e\xca\xc3\xfc\x7d\xde\x47\x46\xa7\x74\x66\x08\x4d\x55\x83\x7e\x1d\x85\xc2\xf5\x14\x9c\xa6\x59\x6f\xc0\x5f\x0c\x9e\x79\x11\x6a\xfc\xfc\x0f\xab\xb1\xd4\xff\x72\x5c\x2c\x37\x28\x6b\xd3\xa2\xa3\xac\xe2\xd3\xf4\x8b\xa9\x2d\x7a\x24\xa1\x2a\x9d\x9a\xa2\xad\xc1\x9b\xbb\xa0\xad\x51\x8d\xe1\x45\x59\x45\xd1\x90\xac\xcb\xd6\x94\x60\xc0\xa0\x14\x6e\x63\x11\x85\x1c\x4d\xcf\xc4\x55\x9e\x74\xe5\x42\x27\xe1\xd3\xaf\x6a\x63\xe9\x0d\xe2\x72\xd5\x1b\xf0\x87\xb3\xc5\x36\x06\xa5\x98\x8e\x37\xd8\xd5\x82\xb7\x6c\x83\x5d\x95\xcb\x61\x43\x5b\x63\xf4\x65\x07\x60\xe5\x9c\xee\x3b\x28\xa3\xec\xf2\xcb\x0d\xca\x8a\x83\x65\x07\x25\xeb\x2e\x7e\xc9\x1f\x1e\xf8\x85\x3f\x3c\xa9\x2f\x70\xb9\x26\xfd\x0f\x5f\x56\xd1\xdb\x09\x55\x61\xea\x6e\x2a\x64\xac\x47\x57\x12\xaa\xfa\x3c\x13\xec\x2a\x3a\xd7\x16\x6d\xcd\xd2\x2f\x69\xe5\x7c\x2d\x06\xe5\xc6\xd0\xde\x11\xad\x00\x2f\xe9\x06\xbb\xda\x59\xf2\x9b\x50\x63\x41\x7c\x6e\x0c\xca\x3b\xf5\x14\x96\xee\xd0\x95\x84\xe2\x82\xfe\x27\x56\x2c\xbd\x1d\x9a\xfa\xa8\x37\xe0\xb0\xc2\xec\xde\x18\x94\x33\xe8\x4a\x68\xea\xab\xfe\xc7\xd1\xf1\xa8\x9f\x10\x62\xa2\x81\x6d\xb0\xab\x86\xa0\xdd\x60\x57\x37\x89\x3f\x5b\x19\x8f\x1c\x08\x5b\xb4\x35\xac\xdd\x4d\xa8\x71\xe0\xb4\xd9\x54\xc8\x88\x58\x6a\xdb\x0d\xca\xfe\x99\x95\xa4\x02\x4a\xf4\x9a\xda\x89\x1d\x25\x61\x53\x21\x43\x35\xfb\x76\x62\x7d\xe2\xfd\xdf\x10\x9a\x8e\xa9\x37\xc0\xa5\xac\xd5\x83\xd5\x28\x1e\xe9\xed\x56\xe3\xb0\xcf\xfb\xf0\xb5\xa2\xe8\x6c\x42\x8d\xaa\xfb\xbe\xdd\x6a\x1c\x15\x71\xb6\xb3\xf6\x1f\x5f\x0b\x40\x75\x16\xfd\xcf\xd7\xe7\xe6\x18\xdb\x58\x8d\x09\x15\x65\x63\x35\x96\xa9\x37\x88\x56\x49\xff\x43\xab\x43\xb1\xda\x94\xd8\x5f\x88\xa5\x9d\xa1\x1d\x42\x24\xef\xac\xb4\x0e\xbe\x0f\xab\xb1\x64\xbd\x9d\xa3\x23\xeb\xed\xae\xb5\xde\xcf\x33\x7d\xff\x25\xbd\x1d\xab\x71\x6b\x36\x0b\x5c\xd1\x08\xa9\x4d\x19\x8c\x84\xe2\xb1\x29\x83\xf1\x80\xe5\xd9\x00\x54\xc5\x23\xb8\xe1\xa6\x49\xc8\x9e\x0d\x37\x4d\x01\x14\xb0\x8b\xd2\x56\x18\xc1\x42\xda\x0a\xee\xab\x4d\xed\x44\xd1\xdb\xef\x82\x43\x4e\xf3\x40\xed\x44\x21\x82\x76\x51\x01\x3a\xf5\x1a\x00\xae\xf6\x74\x01\x85\xa3\xfd\x8e\xd5\xf8\xd9\x01\x55\xd8\x78\xde\x87\xd5\x58\xb5\x42\x20\x34\x5d\x84\x2f\x77\xc5\x21\xa7\x2f\x22\xd4\x98\xbe\xde\xf0\x3f\x45\xf2\x26\x0a\x99\x30\x79\x36\x51\x48\x49\xf9\x4d\x85\x8c\xd1\xf5\x0b\x5f\xdd\xd0\x95\x14\xe7\x69\xfa\xc5\xa9\x02\xb2\x60\x43\x69\x23\xd2\xec\xad\x62\xfc\x98\x58\x1b\x83\x32\x6a\xa3\x42\x69\x73\x4d\x9d\x06\x80\x04\x58\x68\x63\x50\x26\x70\x0d\x9b\x64\x48\xe9\x40\xbb\x09\x56\xae\x5f\xc0\xca\x71\x8d\x6c\x92\x21\x2f\x01\xbd\x4d\xa8\x31\xe0\x8f\xdb\x0a\x35\x6a\xf1\x40\x69\xa3\x38\xf5\x26\x19\x72\xc1\x1a\xb5\x09\x35\x3e\x1c\x16\x9b\x50\xa3\xd8\x37\x76\x13\x0a\x80\x2d\x8d\x41\xa9\xda\x6d\x1b\x83\x72\xa2\x15\x6c\x32\x1e\x95\x78\xb0\xc9\x78\x54\xad\xb8\x0d\xa5\xcd\x21\x24\xba\xa1\xb4\x39\xda\x2a\x50\xda\x28\xed\x7c\xbb\x41\xd9\x54\x8a\x72\x13\x6a\x0c\xa6\xff\x41\xd9\xc3\xe1\xb4\x31\x28\x2b\x7a\xff\xc6\xa0\x6c\x44\x9f\x37\x06\xa5\x0e\xd8\xfd\x40\x1b\x85\x25\xb3\xc9\x78\xcc\xfa\x86\x87\x50\x8e\xc4\x0b\xb5\x13\x8b\x8e\x0e\x6a\x27\x7e\xb6\xfb\x23\x2e\x6c\xf5\x8c\xb4\x0e\xfd\x22\xd4\x18\xf4\xb5\x64\x3c\x26\x2d\xd6\x2e\x87\x00\x73\x4b\xed\xc4\xac\x31\xeb\xe2\x41\xd0\xff\x5c\xf4\xa8\x4a\xfa\xc6\xa0\xac\x9f\xfb\xa0\xa9\x27\x98\xb2\x21\x34\x15\xfd\xcc\x86\xd0\x34\x12\xde\xdb\x50\xda\xa4\xcf\xff\x70\x08\x48\xf0\x11\x6a\x54\x71\xb3\x8d\xd5\x28\xea\xfb\x8d\xd5\x28\x77\xd9\xee\x00\xac\x40\x7d\xef\x01\xb6\x9a\x00\xf0\x1e\x88\x1e\xed\x23\xb7\x1a\x87\xe9\x50\x83\xd2\xe6\x60\xce\x6e\x32\x1e\xc5\x70\xbd\x45\x69\xb3\x75\x1f\xaa\x8d\x04\x8a\x28\x6d\x74\xe4\x0c\xe6\xef\xea\x29\xa4\xe5\x3c\xba\x8f\x30\x96\x56\xeb\xe0\xe8\x47\x8b\xdc\x03\xad\xf5\xf3\x0b\x14\x95\xd6\xfc\x80\x4b\x05\xd4\xc8\x26\xd4\x28\x2d\x72\x7f\x8a\xf1\xb3\x5e\x08\x35\xf6\xcf\x2f\x3f\xfa\x97\x8e\x15\x42\x8d\x5d\xbb\x91\x50\x63\x47\x9b\xdf\x6e\x35\x8e\x89\x0b\x60\x8b\xd0\x14\xed\x73\x4f\xb8\xda\x75\x84\x13\x6a\x1c\xea\x27\xc5\xf8\xe7\xd5\x33\xc5\xa8\xc8\xf7\x01\x50\xed\x92\x28\x94\xc1\x10\x51\xef\x9e\xe2\xc2\x46\xb4\x2a\xe3\x11\x24\xd1\x9e\x1c\xfd\x9a\x69\x6a\x27\x36\xdd\x67\x7c\x9f\xae\xa4\xe2\xbe\x38\x4a\x36\x15\xf7\x55\xed\x68\x13\x86\x14\x83\xf7\x26\x0c\x79\x09\x2e\x6e\xc2\x90\xaa\x1f\xb3\xe1\xbb\x59\x52\x12\x44\x68\xba\xfe\x53\x24\x63\x50\xd6\xa6\xd7\x91\x91\xd4\xd5\x31\xa2\xe4\x3a\xa5\x31\x28\x55\x1b\x6b\x63\x50\x0e\x09\x68\x13\xc0\x4a\x9f\x20\x6c\x20\x5d\x59\xca\x68\xe1\x99\x6e\x50\x96\xab\xed\x47\x32\x64\xd6\x09\xa7\x64\x48\x89\x02\x25\x43\x82\xea\xdb\x18\x94\x0d\x60\xd6\xc6\xa0\x14\x5b\xc4\x86\xeb\xb4\x7c\x9e\x49\x18\x52\x27\x38\x61\x48\xe9\xfd\x1b\x0a\x1d\x95\x5c\xdc\x0b\x5f\x79\xd5\x2f\x71\x0d\xf3\x7d\x4b\x15\x4e\xf4\x4c\xc8\x24\xf1\xd1\xee\xa5\xba\x75\xf4\x0c\x83\xb2\xe9\x29\x60\x57\x0d\x3f\xe5\x86\x42\x47\xc1\x9b\x8d\x41\xa9\xc2\x4b\x1b\x0a\x9d\xa0\x45\x4e\x85\x8c\x20\x51\x40\x85\x8c\x0a\x12\x65\x13\x86\x5c\x3a\x89\xdd\xa0\x6c\x37\xe9\x29\xa0\x38\x70\xc5\x6c\x6a\x27\x7e\xb4\x48\x28\x74\x3e\x63\x4d\xed\x44\x55\x56\xdb\x32\x1a\xd5\x6b\x8c\x46\xd1\x72\xef\x83\xd1\x0f\xdc\x6a\x1f\xb2\xc6\x30\x0c\x37\x46\x63\x94\xe8\xc1\x68\x54\x2e\xd8\xc6\x68\x14\x20\x6f\x1f\x8c\x62\x1d\x39\x54\xc1\x50\xf0\x66\x63\x34\x4e\x59\x2b\x18\x8d\x0a\xdd\xee\x23\x24\x8a\x9e\x02\xeb\x9e\xe6\x0f\x42\xd3\x84\x27\x74\x1f\x9c\x1a\x9a\xe9\x23\x3e\x6f\xb6\x0a\xa1\xc6\x82\x55\xb5\x65\x34\x6a\x2d\x51\x05\xa3\x69\x1e\xae\x90\x36\x7c\x1f\xf8\xd4\x2a\x7b\xe1\x42\x65\x2e\x1b\x04\x9a\x9c\x86\x5f\x74\x83\x4f\x15\xe3\xc5\x56\x15\x0c\xf0\x02\x1b\x7c\xea\x00\x97\xb2\xc1\xa7\x2a\x42\xb3\xb1\x0c\xb7\x84\x0d\x55\x30\x82\x6c\x82\x2b\xcd\x5b\xff\x73\xf1\x29\xd6\x8e\x0d\x08\xb5\x4b\x45\xb9\xe2\x13\xf6\x67\x1e\x40\xa8\xa2\x78\x3f\x80\x50\x95\xc1\x76\xdc\x32\xec\xca\x78\x3c\x6e\x19\x76\xa5\x36\x9c\x80\xf8\xe4\x60\x3e\x01\x2e\x8e\xa9\x5f\x3e\x7f\xa2\x0b\x3b\x58\x86\x85\x1d\x77\xb0\x0c\x9f\xa1\x5f\x58\x86\x55\xcf\x04\x7f\x8b\x86\x79\x02\xb4\x5f\x9f\xfb\xe0\xaa\x58\xea\x19\x4e\x0d\xe6\xef\x60\x19\xee\xcf\x2f\xf1\x95\x73\x1f\x96\xe1\x83\x92\x77\xb0\x0c\xc7\xd1\xff\x08\xc5\xb1\x5a\x0f\x59\x8d\x93\xd0\xed\xc1\x32\x0c\x5d\xff\xa3\xd4\x05\x7a\xf1\x21\xab\x71\xb2\x5a\x4f\x24\xb5\x08\x47\xde\xc1\x32\xec\x1a\x41\x2c\x43\x29\x17\x27\x4a\x3d\xd3\xff\x50\xcf\x90\x7c\x07\xcb\x50\xf5\xfc\x4e\x14\xd5\xfe\xe2\x17\x32\xf2\x4b\xe8\xff\x4f\x91\x7c\xc0\xa7\x16\xce\xe5\x03\x3e\x55\x27\xc7\xc1\x68\xcc\x2c\xa5\x83\xd1\xa8\x42\x4f\x47\x51\x48\x62\x8b\xe7\x43\x93\xc3\x90\x25\x3e\x1d\x11\x72\x28\xab\x38\x86\xfe\x47\x15\x0c\xce\xc2\x43\x15\x8c\x3e\xf4\x14\xa0\xe3\x68\x75\x47\xa1\xc6\xac\x9e\x71\xf2\x73\xc2\x1d\x8c\x46\xd5\x05\x3b\x70\x9d\x2a\x51\xf9\x24\x55\x19\xd0\x95\x17\x07\x0b\x7d\xc9\x30\x58\xe1\xe2\x38\x18\x8d\x2a\xe2\x7a\x30\x1a\xe5\xf5\x3a\xe0\x53\x13\xc6\xed\xc9\x80\xe0\x30\x79\x8e\x1b\x8d\xe3\xd1\xa2\x13\xa1\x29\xdb\xf6\x90\xd5\xb8\xae\x7e\xf9\xf7\x5d\x82\x8b\x07\xa3\x51\x11\xfb\x83\xd1\xf8\xf9\xda\x4c\x94\xfc\xe8\x17\x59\x7f\x53\xbf\xf8\xbe\xae\x67\x92\xf5\x67\x7a\xbb\xb2\xfe\x98\x31\xf0\xa9\x0f\x01\xa1\x53\x04\x12\x63\x09\x82\x4f\xdd\xe8\x2b\xa7\x88\x81\x8c\x51\x82\xd0\xf4\x68\x03\x10\x6a\x54\xf5\xe3\x53\xe0\x3a\xa8\xba\x12\xa3\xf1\xe8\x97\x1b\xfd\xa9\xe8\x7d\x24\xe4\xe2\xec\x39\x45\x34\x32\xcc\x1f\xa1\xc6\x89\x37\xfe\x14\xe1\xc3\x19\xdd\x22\x32\x50\x5d\xe9\xc7\xdf\x44\xb7\x38\xd0\xe4\x28\x6a\x70\x08\x35\xaa\x4c\xd8\x81\x26\x67\x60\x76\x9f\x4a\x6d\x33\x0e\x8b\x83\xd1\x98\x3f\xff\x2b\x6c\x77\xfa\xf9\xb1\x0c\xf5\x4b\xf8\x62\xe6\x1d\xcb\x30\x02\xd9\x3c\x55\xb5\xdb\xf8\xda\x8a\x51\x4c\x80\xed\x54\x12\x8e\xb3\x7a\xa6\x2a\x26\xcc\x6d\x85\x81\xac\xa8\x9f\xd0\x38\x69\x8f\x11\x6a\x14\x02\xf6\x54\x55\xa1\xe1\x0d\x58\x86\x6b\xe9\x97\x00\x56\x7c\x43\x53\x81\x21\xfa\x89\x65\x28\x75\xe2\x60\x19\x06\xa0\x7b\xa7\x51\xe5\x63\xe8\x29\x8d\x5d\xcc\xd7\x52\x05\xa3\x68\xed\x62\x19\x66\xb4\xcf\x03\x4d\xce\xa3\xaf\x25\xd4\xa8\x84\xf8\x03\xd9\x69\xe0\x88\x3b\x70\xe1\x84\xcf\x95\x1b\x40\x2c\xab\x07\xb2\xd3\xa1\x91\x10\xd9\x29\x31\x84\x83\x65\x28\x18\xe8\x81\x0b\x27\x68\x6e\xdd\x32\x6c\xca\x91\x3b\x58\x86\x4d\xa2\x5c\x59\x8d\x84\xf0\x0e\x96\xa1\xd2\x5d\x0e\x96\x61\xd4\xb7\x63\x19\x7e\x46\x57\xa1\xc6\xa2\xb7\x53\xc0\x4c\xe3\xf2\xa8\x36\x24\xeb\x0c\xcb\x50\x89\x54\x07\xcb\xb0\x5f\xbd\xc1\xe7\x6f\x60\x91\x1c\x2c\xc3\x65\xba\x92\xf9\x23\x16\x70\xb0\x0c\x95\x33\x7a\x64\x19\x62\x97\x1e\x2c\x43\xa7\xc5\xff\xdf\x22\x19\xa3\xb1\x69\x20\x30\x1a\x4d\x82\xe1\x63\x34\x32\x10\x2a\xab\xa8\x05\x49\xc2\xe3\xa9\x7a\x39\x00\x0f\x09\x1b\xf0\xa9\x97\x20\xd3\x21\xe1\xf1\xb3\xa9\xba\x5c\xe5\x7a\x26\xa2\x07\x2f\xdb\xa1\xe0\x7e\xda\xba\xf2\xe0\x46\xe7\xd3\x29\xb8\x5f\x74\x12\x53\x70\xbf\xe8\x99\x2a\xb8\xaf\x33\x1b\x7c\xea\x40\x97\x39\x24\x3c\x8a\x3b\xe2\x90\xf0\xa8\x6a\xb6\x67\x00\xfd\xc7\x44\x3e\x03\x80\x15\x1a\xfb\xa1\x0a\x46\x91\x10\xa6\x0a\x46\xc1\xc1\x72\x54\x05\x43\x13\x0d\x0f\xaa\x00\x64\x87\x50\xe3\x23\xd1\xf3\xa9\x82\xc1\xe8\x7e\xaa\x60\xa8\x2f\xd0\xac\x4c\xf5\xf3\x22\x96\xf8\x22\x55\xc1\x20\x68\x77\xa6\x88\x42\xe9\xe7\x14\x40\x8e\x7e\x62\x34\x46\xbd\x81\x50\xe3\xd4\x28\x11\x6a\x6c\x58\x1d\x87\x50\xa3\xb4\xb3\x03\x3e\x55\x5c\x1c\x67\xc2\xf3\x9a\x75\xa5\x8b\x1e\xc3\x50\x3b\x84\x1a\x15\xcd\x3f\x13\xad\x6e\xeb\x0d\x44\xc9\x3f\x6f\xc0\xa9\x81\xc9\x7a\x26\x00\x47\xe2\xf7\x47\xa1\x46\xf0\x3a\x87\x50\xe3\x42\x2b\x3f\xd0\xe4\x6c\x69\x6e\x84\x1a\x03\x5a\xf2\x21\xd4\xa8\x50\xf1\x31\x0a\x60\x49\xb4\xaa\xe0\x3e\x58\xd2\x43\xed\xc4\x4d\xf6\xd7\x01\xbb\x2a\x4c\xe8\x01\xbb\x5a\xba\xae\x84\x81\xec\xf3\x4c\x5f\x9f\x33\xeb\xed\x38\xdd\x34\xef\x64\x35\x8a\x13\xe5\x90\xd5\x38\xb0\x64\x0e\x59\x8d\x02\x7b\x1d\xc3\x9f\x8a\x4b\xe5\x2c\x68\x8e\x08\x08\x9d\x25\x00\x99\xfe\x07\x36\xb7\xe8\x17\xf8\x77\x09\x30\xb2\x1a\x3f\xab\x07\xcb\x50\xd5\xab\x0f\x96\x61\xc5\x22\x39\x8b\xcc\x5a\xf5\x73\x91\x1e\x25\xad\x0e\x10\x6a\x25\xea\x73\x00\xa1\x8a\x23\xfc\x08\x84\xaa\x55\x8e\xf5\x77\xa4\xcc\x00\x42\x0d\x12\xad\x14\xd5\xcf\xf8\x84\x0f\x45\xf5\x4d\x02\x7a\xab\x52\x09\xe3\x42\x39\x0b\xd5\xb9\x3e\x58\x7f\xca\x20\x38\x9b\xe3\xe1\x73\x25\x3e\x61\x5c\x7e\x87\xfa\x88\x4a\x65\x3a\xe2\xbb\x91\xe2\x01\xdf\x8d\x6a\x7e\x1c\xf8\x6e\x96\x64\x01\xe1\xc4\xcf\x4c\x13\x4e\x3c\xda\x1d\x54\xce\xff\x1c\xc5\x84\x13\x95\xd4\x75\x44\xa0\x2a\x59\x00\x08\x35\x62\x35\x1e\x2c\xc3\x23\x8d\x96\x70\xe2\xd5\xac\x00\x42\x95\xf3\xf3\x00\x42\x0d\x52\x07\x01\xa1\xaa\xb4\xd3\x39\xa2\xda\xd7\x53\x5c\x0e\x2a\x40\x7a\x08\x19\xae\xf5\x5f\xe1\xbd\x73\xc4\xc9\xc0\xe2\xa1\x3c\xe2\x21\xbe\x7d\xa8\x74\xf1\x39\xc1\xdd\x30\x7c\xfe\x79\x1d\x22\x12\x13\xf2\x5c\xfc\x32\x78\x9d\x0f\x86\xa1\xe1\x31\x3a\x54\xba\x58\x3a\x47\x28\x8f\xa8\x34\xe2\x43\x79\xc4\x47\xa7\xa6\xf8\x53\xa5\x57\xa9\xa8\xbe\x36\x00\x45\xf5\x0f\x60\xaf\x73\xc5\x94\x46\xaf\x31\x0c\xc5\xe1\x76\xae\x38\x35\x98\xb0\x2b\x4e\x0d\xa6\x01\xc3\x30\xe8\x8b\x30\x0c\x83\x8e\x0e\xf1\xa7\x4a\x64\x61\x18\x36\x0c\xe6\x1b\x04\x94\xca\xfc\xf2\xe5\x39\xf9\xf6\x4b\xc8\x50\xc9\x13\x17\x0c\xea\x9d\xfa\x25\xa6\xad\xc0\x2f\x5f\x9e\x19\x91\x7c\xa1\xbb\x39\x9f\x5f\x68\x67\xa6\xfb\xd0\x5e\x08\xa6\xdc\xa0\xc4\x53\xfd\xc2\x7a\x60\xb9\xdc\x20\xba\x22\xfd\x0f\x3a\x98\xae\x7e\xca\x7a\x48\xfc\x82\x8e\x69\xe8\x8b\xc8\x4e\x64\x4b\x5f\x37\x0c\x47\x21\x80\x71\xa3\xa8\xda\xe9\x0b\x24\xa9\x0d\x13\xf9\x82\x41\x35\x0e\xd1\x4b\x76\x62\x45\x0f\xb8\x84\x0c\x2b\x40\xbe\x4b\xc8\x50\x58\x89\x4b\xc8\x50\xf6\xd0\x8d\xaa\x04\xa1\xa7\xe0\xb8\x58\x7a\x83\x3b\x2e\x52\x56\xcf\x40\xd3\x98\x7a\x06\xa7\xc6\xa3\x37\x00\xc4\x2c\x7a\x0a\x71\x89\xa9\x37\x10\x97\x40\x30\xdc\x24\x2a\x7a\xc6\x9a\xec\x44\x71\x84\x5f\xb2\x13\x0b\x6e\xb6\x4b\xc8\x50\xde\xf8\x0b\xdd\x4d\xc5\x37\x78\x55\xe9\x82\x83\xeb\x42\x77\x73\xbb\xee\x03\xe3\x8e\x4f\xff\x42\x77\x13\xb5\x7a\x00\x9a\xe6\xad\xff\x81\x91\x0e\x7a\x26\x74\x5a\x08\xbe\x9b\x98\x3f\x50\xb5\x17\x92\xd4\x0e\x42\xe7\x02\x34\xed\x4b\xbd\x86\x84\x52\x33\x46\xc8\x30\x92\x14\x7e\xc9\x4e\x54\x46\xd9\xa5\xd2\x85\x2a\x7e\xdf\x8c\x61\x0f\x39\xd3\x05\x68\xda\x40\x86\x5c\xb2\x13\xab\x56\x16\x9c\x36\x95\x74\xf5\x4b\xc8\x50\x34\x5c\x17\xa0\xa9\xd8\x4c\x2e\xd9\x89\x05\x7b\xf6\xaa\x9c\x05\x96\xd3\xcd\x3a\x1e\xf4\x8b\x90\xf6\xd2\x95\xf8\x7d\xab\xfe\xa7\x14\x28\x46\x09\x4e\x9b\xac\x35\x08\xa7\x4d\xd3\xac\x60\xfd\x89\x2b\xfa\x02\x34\x9d\x38\xf9\x2e\x40\xd3\x0b\x1c\xf7\x42\x92\x2a\x46\xf4\x0b\x49\xaa\x2a\xe7\x5f\x38\x6d\x0a\x47\xf1\xa5\x9c\x45\x00\x8c\x78\x29\x67\x51\x35\x7f\x85\xfd\xd7\xf4\x3e\x42\xf6\x9a\x15\x48\x52\x05\x73\xb8\x6e\xfd\x0d\x21\x9f\xaf\x48\x52\x3f\xfd\x3c\x1c\x01\xff\x05\x82\xbb\x44\x13\x33\x27\xd5\x55\x79\x44\x14\xef\x4b\x51\xfd\xa0\x17\x80\x41\xd5\x69\x74\x31\x0c\x1b\x6e\x8c\x8b\x61\x68\x18\xbe\x17\xc3\x30\x0c\xdd\x47\x48\x66\xeb\x4a\x7c\x52\x12\x6e\xf0\xa7\x2a\x4c\x70\xab\x2a\x79\xf0\x09\xa2\xbb\x89\xea\x8b\xf1\x06\x16\x16\xfc\xa9\xa6\x0d\x40\xc8\x50\x3e\xef\x8b\x61\x28\xe8\xc9\xa5\x0a\xc6\x47\x28\x36\x7d\x1f\xf7\x11\x32\xbc\xea\x19\x45\xf5\x55\x8d\xee\x36\xb2\xdb\x88\x84\x5f\x37\x0c\x6b\x44\xe8\x5f\xca\x23\x56\x89\xe4\x06\x90\x4f\xc2\x0d\xba\x1b\x15\xc7\xba\x4d\x3e\x45\x5d\x29\xed\x8c\xaf\x55\xc8\x30\xe8\x7f\x38\x66\xb4\x74\xc9\x4e\x8c\x1a\x41\xe8\x6e\x92\x96\x3c\x74\x37\xaa\x5b\x72\x55\x03\x11\xe7\xd2\x55\x0d\x44\x3d\x05\x22\xd4\xa4\x4d\x05\x11\xea\xf8\xfc\x02\xcc\x86\x56\x7e\x1f\x0a\x59\xe1\x16\xba\x50\xda\xa8\x44\xee\x75\x03\x2f\x05\x34\x94\xeb\x06\x5e\x10\x9a\xe6\xba\x81\x97\x82\x56\x81\x1b\x78\x29\x7d\xae\xfc\xea\xe7\xbd\xea\xa7\x5b\x47\x39\x48\x14\xb8\x75\x74\x55\xf8\xf6\xba\x05\x74\xaf\x46\xc2\x2d\xa0\x2b\xfa\xa0\xeb\xd6\xca\xbd\x12\xd0\x6e\xad\xdc\xab\xf9\x73\x6b\xe5\x8a\xf0\xf3\x5e\xfa\x82\x7e\x74\xfd\xb8\x0d\xe1\xd1\xaf\xe3\xbf\xb0\x9c\xae\x1f\xb7\x29\x3b\xcc\x2e\x05\x3f\x6e\x53\xf6\x20\x53\x0a\x7e\x54\x85\x90\x7a\xa0\xb6\x47\x0a\x7e\x5c\x85\x90\xc6\xd7\x1f\x2d\xf1\x5f\xd7\xa4\x7f\x5d\xc3\x73\xdc\x2d\x95\x42\xe2\x19\x7e\x90\xa5\xe0\x62\x3f\x35\xef\x69\x0a\x2e\xf6\x53\xcb\xfa\x5f\x65\xb4\x23\xbf\xda\x8f\x5f\x3e\x13\x90\xe6\xa7\xe0\x02\x3b\x05\xf5\xdb\x05\x76\xa2\x72\x64\x0a\x99\x1e\x6e\xae\x74\xa1\x9c\x52\xe4\x7d\x2e\x86\x43\x30\x9e\xe9\x62\x38\x25\x9f\x97\x14\x5c\x0c\x87\xa0\x9e\xb9\xa8\x4d\xc9\x11\xe2\x29\xb8\x38\x0d\xe1\xd1\x1b\x34\xbe\xf4\xba\xf0\x06\xf7\xd9\xa6\xe0\x62\x31\xb1\x93\x52\x70\xb1\x18\x70\x6b\xa4\xe0\x62\x31\x7c\xbe\xa8\xec\x17\x80\x98\x82\xdc\x52\x85\xff\xb9\x84\x09\x30\xbb\xa4\x50\xe9\x99\x5b\x52\x29\xb8\xdc\xf8\x67\x24\x5c\x6e\xbc\xff\x9b\xbe\x2a\x2e\x3d\xab\xfb\xf7\x5c\xd5\xf3\x7b\xae\xea\xbf\xe6\xbc\xfd\x6b\xce\x1b\xef\xc8\x31\x11\x40\x4e\xc1\xf7\x6f\x08\x39\xbd\x2d\xec\x8d\x9c\xdf\x16\xc6\x2c\x97\xb7\x85\xfe\xe4\xfa\xb6\xd0\x9f\xdc\xde\x16\xfa\x93\x9f\x7f\x5a\x1e\xfa\x93\x3b\x2d\xff\x4b\xa4\xa7\xf0\x30\xf9\x79\xbc\xb7\x27\x2d\xc6\xaf\x0f\x08\x21\x87\x7f\x96\xe2\x93\x7f\xfe\x27\xbe\xff\x29\x3f\xff\x93\xde\xff\xd4\x9f\xff\xc9\xef\x7f\xda\xcf\xff\x94\xf7\x3f\xcf\xcf\xff\xd4\xf7\x3f\xfd\xe7\x7f\xda\xfb\x9f\xf1\xf3\x3f\xcf\xfb\x9f\xf9\xf3\x3f\xfd\xfd\x8f\xfd\xfc\xcf\x78\xff\xb3\xde\xff\xa4\x9f\x63\xc0\x94\x38\xae\x23\x05\xf7\x3d\x25\x78\x2e\x52\x70\xdf\x53\xc2\x87\x9b\x42\x4f\xbf\x17\x41\xcf\xbf\x17\x41\x2f\xbf\x17\x41\xaf\xbf\x17\x41\x6f\xbf\x17\x41\x7f\x7e\x2f\x82\xde\x7f\x2f\x82\x3e\x7e\x2c\x82\xaf\x96\xf9\x7b\xa6\xbb\xfd\x35\xd3\x7d\xfd\x35\xd3\x7d\xff\x35\xd3\xfd\xfc\x35\xd3\xfd\xfe\x35\xd3\x23\xfc\x35\xd3\x23\xfe\x35\xd3\x23\xfd\x35\xd3\x23\xff\x35\xd3\xa3\xfc\x35\xd3\xa3\xfe\x35\xd3\x73\xfe\xb3\xd1\x4b\xfc\x67\x6b\x4f\x7b\x5b\xd3\xdb\xba\xde\xd6\xfc\xb6\xbe\xe2\xa4\x94\xb7\xf5\xbc\xad\xf5\x6d\x7d\xc5\x4a\x69\xff\xb4\x5a\x78\x5b\x9f\xb7\xf5\x3d\x52\x4a\x7f\x5b\xd3\xdb\xfa\x8a\x22\xcb\x6f\xeb\x7c\x5b\xcb\xdb\x6a\x6f\x6b\x7d\x5b\xd7\xdb\xda\xde\xd6\xfd\xb6\x3e\x6f\xeb\x79\x5b\xfb\xdb\x7a\xdf\xd6\xf1\x4f\x6b\x0d\x6f\xeb\x3b\xbe\xf5\x1d\x5f\x7b\xc7\xb7\xbe\xe3\x6b\xef\xf8\xd6\x77\x7c\xed\x1d\xdf\xfa\x8e\xaf\xbd\xe3\x5b\xdf\xf1\xb5\x77\x7c\xeb\x3b\xbe\xeb\x1d\xdf\xfa\x8e\xef\x7a\xc7\xb7\xbe\xe3\xbb\xde\xf1\xad\xef\xf8\xae\x77\x7c\xeb\x3b\xbe\xfb\xfc\xde\xfb\xfb\xfe\xde\xfb\x27\xfc\xde\xfb\x27\xfe\xde\xfb\x27\xfd\xde\xfb\x27\xff\xde\xfb\xa7\xfc\xde\xfb\xa7\xfe\xde\xfb\xa7\xfd\xde\xfb\xe7\xf9\x6b\xef\x9f\xfe\xd7\xde\x3f\xe3\xaf\xbd\x7f\xe6\x5f\x7b\xff\xd8\x5f\x7b\xff\xac\xbf\xf6\xfe\xd9\x7f\xed\xfd\x73\xfe\xda\xfb\xe7\xfe\xb5\xf7\x6f\xf8\x6b\xef\xdf\xf8\xd7\xde\xbf\xff\x92\xdd\xf7\x5f\xb2\xfb\xfe\x4b\x76\xdf\x7f\xc9\xee\xfb\x2f\xd9\x7d\xff\x25\xbb\xef\xbf\x64\xf7\xfd\x97\xec\xbe\xff\x92\xdd\xf7\x4f\xd9\x7d\xff\x94\xdd\xf7\x4f\xd9\x7d\xff\x94\xdd\xf7\x2f\xd9\x1d\xc3\x5f\xb2\x3b\x86\xbf\x64\x77\x0c\x7f\xc9\xee\x18\xfe\x92\xdd\x31\xfc\x3f\xcb\xee\xff\xa9\xd6\xc4\xf0\x97\x58\x8f\xee\xb6\x49\x04\x14\x53\x74\xd7\x4c\x4a\xee\xba\x48\x11\x0d\x1a\x64\x72\x8a\x09\xbd\xd1\xc3\x5a\x29\x26\xee\x73\xeb\x33\x45\x69\xc9\x68\xa6\x31\xa3\xc3\x3a\x24\x2f\x45\xd7\x99\x13\x09\xc1\x29\x4a\x67\x76\x47\x54\x8a\xee\xac\x48\xc9\xd1\x27\x29\x66\xde\x30\x79\x43\xd6\x24\x87\xcf\x24\xc7\x6c\xbf\x96\x61\x94\x5e\xfd\x2e\xc3\x28\xdd\xfa\x5d\x86\x31\x9f\x5f\xcb\x30\xe6\xfb\x6b\x19\xc6\x12\x7e\x2d\xc3\x58\xe2\xaf\x65\x18\x4b\xfa\xb5\x0c\x63\xc9\xbf\x96\x61\x2c\xbc\xeb\x3d\x20\x63\xe1\x5d\xef\xe1\x18\x2b\xef\x7a\x0f\xc6\x58\x79\xd7\x7b\x28\xc6\xca\xbb\xde\x03\x31\x4a\xa3\x7f\x0f\xc3\x58\x59\x08\xef\x41\x18\x2b\xb3\xfc\x1e\x82\x51\x9a\xff\x7b\x00\xc6\xca\x86\x7b\x0f\xbf\x58\xd9\x70\xef\xc1\x17\x65\x13\xbc\x87\x5e\xac\xcc\xc5\x7b\xe0\xc5\xca\x5c\xbc\x87\x5d\xac\xcc\xc5\x7b\xd0\x45\xd9\x0f\xef\x21\x17\x65\x3f\xbc\x07\x5c\x94\xfd\xf0\x1e\x6e\x51\xf6\xc3\x7b\xb0\xc5\xa6\x0d\xf4\x8e\x4f\xd3\xc6\x79\xc7\xa7\x69\xc3\xbc\xe3\xd3\xb4\x51\xde\xf1\x69\xda\x05\xef\xf8\x34\x29\xdd\xef\xf8\x34\x1d\x04\xef\xf8\x34\xc6\xa7\xbd\x7d\x96\x3d\xd3\xbe\xf5\x99\xf1\x69\xdf\xfa\xcc\xf8\xb4\x6f\x7d\x66\x7c\xda\xb7\x3e\x33\x3e\xed\x5b\x9f\x19\x9f\xf6\xad\xcf\x8c\x4f\x7b\xfb\x2c\x7b\xa6\xbd\x7d\x96\xd1\xd2\xde\x3e\xcb\x68\x69\xef\x9c\xca\x58\x69\xef\x9c\xca\x48\x69\xef\x9c\xca\x38\x69\xef\x9c\xca\x28\x69\xef\x9c\xca\x18\x79\xde\x39\x95\x11\xf2\xbc\xe3\x23\xe3\xe3\x79\xc7\x47\x46\xc7\xf3\x8e\x8f\x8c\x8d\xe7\x1d\x1f\x19\x19\xcf\x3b\x3e\x32\x2e\x9e\x77\x7c\x1e\xc6\xe7\x79\xc7\xe7\x61\x7c\x9e\x77\x7c\x3a\xe3\xf3\xbc\xe3\xd3\x19\x9f\xe7\x1d\x1f\x19\x23\x92\x57\x32\x44\xdc\xf1\x9a\xa2\x8c\x10\x6c\xe7\x28\x03\xc4\xd1\x87\x29\x76\x7c\x0a\x19\x79\xd5\x5f\xa5\xcf\xa5\xea\xdb\xab\xde\x7f\xfe\xe7\x5b\xef\xc6\xcf\xff\x7c\xeb\xe5\xab\x00\x7e\x1d\x38\xf9\x1d\xe1\x8e\xb7\x22\xa9\x7f\x47\xbf\xde\x96\x2b\x4f\xc7\xc7\xdb\x11\xdd\x90\xf8\x5c\xf3\xcf\x75\x32\x22\x26\x5f\x26\xc3\x21\x21\x97\x65\x2c\xe0\x07\x88\x32\x10\x3e\xbf\x5c\x4a\x87\xc2\x18\x8c\xfe\xe3\x7f\xf6\xe3\x7f\xeb\xc7\xff\xd4\x2f\xfe\xe7\xd1\xeb\x54\x67\x48\x14\xb7\x4c\xd1\x23\xd8\xa9\xae\xe7\x6d\xc9\x5c\x13\xdf\x16\x3f\x13\x5a\xfc\x0f\x60\x6f\x8a\x1e\x9e\x4e\x0d\x47\x4d\x74\x0b\x44\x8f\x56\xcb\x79\x1f\xad\x96\xcb\x35\xaf\xd0\x77\x3b\x20\x55\xfb\x3a\x3c\x38\x1e\xdd\x06\x48\xd5\xd2\xdb\xe2\x4b\xe0\x89\x7c\xa2\xeb\xfd\xe9\x71\x47\x6b\x8a\xae\xd9\xa7\x8a\xfd\x1b\x4d\xcf\x77\x57\x59\xdc\x38\xa7\x26\x53\xba\xf9\xac\xc4\x95\x1e\xc8\x7c\x7f\xd9\x8f\x5f\xd7\x9d\x7f\x9a\xc2\x5b\x7f\x2e\x9f\x77\xd3\xdd\xf6\xf3\x3f\xef\xe6\xbb\xbf\x96\xe9\xbb\x09\xef\xaf\x65\xfa\x6e\xc6\xfb\x6b\x99\xbe\x9b\xf2\xce\x9f\xff\x79\x37\xe7\xa5\xdf\x5a\x0a\xb8\x14\x93\xbe\xd7\x75\xad\x1c\x32\xe3\x74\x99\x8b\xc5\x41\x8f\x4b\xb1\x7a\xd8\x3f\xa5\xa0\x65\x12\xf9\xe5\x4b\x24\x3b\x86\x3e\xa5\xa0\xe5\xb1\xf9\x55\x7e\xfc\xea\x9a\x71\x7e\xa1\x9e\x38\xba\x3f\xa5\x40\x5f\x1c\xa8\xf1\x35\x93\x38\x2d\x7d\xce\x53\x44\x75\xa9\xbc\x3d\xa2\xba\x54\xde\x1e\xdb\x37\x07\x5f\x8a\x7c\xf9\x7d\x3e\x6b\x21\xa1\x3c\x65\x07\x3f\xbb\x8f\xd0\x5d\x7e\xf4\x35\xf1\x1d\xb8\x0a\x53\x92\x82\xa4\xff\xe9\x2d\x81\x5f\x6c\x36\x87\x36\xb8\x07\xf8\xeb\x99\x1e\xb1\x49\x49\x2a\x18\x0e\xc0\x94\xa4\x2e\xd5\x40\xad\xf4\x94\xa4\x86\x79\x24\x2f\xa5\xc4\x77\x76\xfa\x83\x93\x33\xb9\xcb\x3c\x25\x9c\x9c\xc9\x1d\xc5\x29\x79\x54\x2a\x41\xe2\x90\x52\x46\x64\xb2\x8a\x53\xc6\x6f\x53\xe9\x01\xaa\x5d\xd6\x48\x66\x89\x09\xde\xe0\x4e\xce\x9c\x06\x23\x99\x11\x05\x99\x37\x48\x35\xfb\x52\x8c\x33\xe3\xfe\x51\xc4\xee\xdb\x42\x2f\x16\x4f\x2b\xe1\xfb\x0c\x96\xf8\xe3\x7f\x49\x7b\x95\x5f\x5a\x07\xf4\xbe\x94\xef\x2b\xa6\xd4\x1f\xff\x6b\x12\x3a\xfc\x7a\xd8\x9f\x7a\x4a\xff\xb6\x0a\x53\x19\x3f\xfe\x37\xf9\x1f\xfd\xf4\xd8\x51\xa2\x52\x50\x4a\x65\x49\x4a\xf0\x6b\xf3\x4b\xbd\xd6\xca\x56\x5f\xfc\xfb\x9e\xc4\x33\x6b\xf8\xfe\xcc\x1a\xbf\xf7\xac\xf2\x45\x8b\x31\x77\xd5\x2e\x13\xb4\x48\xc9\xd5\xba\x0c\xa1\x5c\x4a\xae\xd2\xe5\xac\x5e\xbb\x3a\x97\x4a\xa7\x2f\x75\xfd\x21\x1d\xd2\x37\x57\xee\x4f\xe9\x90\xea\xf9\x43\x3a\xa4\x6f\xae\xdd\x9f\xd2\x21\xb5\xf0\x87\x74\x48\x2d\xfe\x21\x1d\x52\x4b\x7f\x1c\x96\xa9\xe5\x3f\x0e\xcb\xd4\xca\x1f\x87\x65\x6a\xf5\x8f\xc3\x32\xb9\x4a\x97\x40\x1e\xa6\xe4\xaa\x9a\x9f\x6e\xfe\xcb\x67\x27\x6e\xc6\xdc\x55\xab\x14\x35\x1f\xae\x56\x25\x18\x82\x53\x72\x95\x2a\xc5\xfd\x1f\x35\x53\xdd\x00\xfa\x9a\xe2\xc1\x32\x75\x6d\x21\x3d\x83\x2d\xe0\xe7\x6d\x7a\x8c\x49\x1d\x74\x6c\x33\xa9\x9c\xa9\x51\x42\x6f\xe8\x29\x6c\x24\x47\x84\xfd\xf3\x8b\x73\x13\xca\x8c\x94\x38\x33\xa3\xc4\x0a\xe7\x65\x34\xde\xee\x38\xaf\x14\xd1\x63\x92\xe3\xbc\x52\xd4\x32\x35\x9e\xa2\xe5\x6d\x3c\xe5\x20\x44\xdc\x55\x96\xa0\xff\x4a\xc9\x78\xe6\x61\x38\x4d\xcf\xe4\x8b\x38\x0e\xe3\xe2\x0d\xee\xb2\x7a\x7f\xd9\xf7\x2b\xe5\x1e\x72\x4b\x88\xef\x90\x6b\xc8\x2d\x21\xb5\x94\xd7\x12\x52\x4b\x7d\x2d\x21\xb5\xb4\xd7\x12\x52\xcb\xf3\x5a\x42\x6a\xe9\xaf\x25\xa4\x96\xf1\x5a\x42\x6a\x99\xaf\x25\xa4\x16\x7b\x2d\x21\xb5\xac\xd7\x12\x52\xcb\x7e\x2d\x21\xb5\x9c\xd7\x12\x52\xcb\x7d\x2d\x21\x5a\x76\x78\x2d\x21\xb5\xc4\xd7\x12\x52\x4b\x7a\x2d\x21\xb5\xe4\xd7\x12\x52\x4b\x79\x2d\x21\xb5\xd4\xd7\x12\x52\x4b\x7b\x2d\x21\xb5\x3c\xaf\x25\xa4\x96\xfe\x5a\x42\x6a\x19\xaf\x25\xa4\x96\xf9\x5a\x42\x6a\xb1\xd7\x12\x52\xcb\x7a\x2d\x21\xb5\xec\xd7\x12\x52\xcb\x79\x2d\x21\xb5\xdc\xd7\x12\xa2\x45\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xce\xa9\x5c\x7d\xed\x9d\x53\xb9\xf8\xda\x3b\xa7\x72\xed\xb5\x77\x4e\xe5\xd2\x6b\xef\x9c\xca\x95\xf7\xbc\x73\x2a\x17\xde\xf3\x8e\x8f\x5c\x77\xcf\x3b\x3e\x72\xd9\x3d\xef\xf8\xc8\x55\xf7\xbc\xe3\x23\x17\xdd\xf3\x8e\x8f\x5c\x73\xcf\x3b\x3e\x72\xc9\x3d\xef\xf8\xc8\x25\xf7\xbc\xe3\x23\x97\xdc\xf3\x8e\x8f\xd4\xc7\xe7\x1d\x1f\x57\x1b\x57\xb3\x7f\xbc\x23\xc9\xd5\x45\x4b\xb7\xbe\x2d\x5f\xe3\xb3\xfa\x5d\x6f\xcb\xd7\xf8\xd8\xec\xdf\xae\xf9\x1a\x1f\xfb\xfa\xaa\x7f\x5a\xbe\xc6\x67\xb7\xf8\xed\x9a\xaf\xf1\xb1\xdd\xbf\x5d\xb3\xfd\xc9\xe1\xdb\xdb\x8f\xb7\xc4\xf8\xb6\x7c\x8d\xcf\xfa\xb2\xd9\xd4\x92\x5d\x45\xb4\xbc\xc7\xdb\xf2\x35\x3e\x76\x4a\x79\x5b\xbe\xc6\xc7\xd6\xf7\xbb\xbe\xc6\x67\x3d\x23\xbc\x2d\x5f\xe3\xb3\xc3\xfa\xd6\xf2\x35\x3e\x73\xc5\x6f\x2d\x3e\x3e\xf5\xd9\x6f\xcb\xe3\xcf\x79\xbe\x3d\xf9\x6b\x7c\xec\xc9\xf6\xb6\x90\x00\xfc\x7c\x7b\xce\xa7\x0a\xc1\xdb\x62\x3e\xf2\xe1\xdb\x73\x40\x2e\xc4\xfb\xb6\x00\x4c\x99\xdf\x9e\x43\x2d\xb4\xfa\xed\x4b\x2f\x35\xb5\xff\xf1\x78\x65\x40\x62\x3d\xbd\x7d\x06\x28\x96\x76\xfd\x3f\x88\x81\x66\x70\x64\x25\x7c\xbb\x9d\xd2\x7e\xe7\xbc\x2d\xa2\x2c\xfe\x76\x8d\xaa\x6f\xae\xb7\x85\x0a\x8e\xe9\x5b\x0b\x49\x47\xed\xfd\xc0\x48\x61\x8a\xfe\xad\x65\x40\xe8\xf7\xed\x73\x44\x23\x1b\xdf\x16\x83\x03\xe9\x1d\xcc\x08\x1e\xf2\xdb\xe4\xc2\x7b\x68\xf5\x5b\x0b\x04\x80\xe5\x5b\x9f\x55\x4a\xee\xbd\x26\x01\x6f\x9d\xf5\x6d\xf9\xd4\x05\x7a\x5b\x1c\x47\x98\xc3\xf3\xb6\x64\x71\xe5\xbc\x2d\x64\x7b\xe4\x77\xc4\xc0\xa4\xdd\x96\xde\x16\x5f\x5a\xfd\xdb\x22\x71\xfd\xde\xec\x75\x31\x66\x77\xba\x7e\xdf\x8c\xd9\x31\x6a\xdf\x37\x63\x76\x68\xc3\x8f\xe5\x97\xec\xf7\x62\x73\xcb\x60\xee\x6f\xa3\xe1\xd6\xc1\xaa\xe7\x1d\x0d\xb7\x10\xd6\x53\xbe\x3d\xf9\xb2\x19\xdf\xb7\xbb\xa5\xb0\xeb\xf3\x2e\x3f\xb7\x16\x7e\x2c\x63\xb7\x18\x56\xf7\x6b\x36\x2d\xd9\x7b\xf8\xac\xb7\xe5\x6b\x7c\x6c\xac\xfe\xb6\x54\x36\xec\xb7\xbb\x7c\x7c\xc2\xfc\x76\x97\x6f\xbd\x5a\xbe\x5d\xd3\xdf\x4d\xad\x16\x1f\x9f\x95\xbe\x3d\xf9\x6b\x7c\xd6\xf9\xde\x1f\x7b\x37\xbe\x5a\xbe\xc6\x67\xe7\xf0\xed\x5d\x5f\xe3\x63\x71\xa4\xb7\xe5\x6b\x7c\x2c\xcc\xf3\xb6\xdc\x57\x0c\xd2\x52\xc2\x2b\x06\xd5\x12\x5f\x31\xa8\x96\xf4\x8a\x41\xb5\xe4\x57\x0c\xaa\xa5\xbc\x62\x50\x2d\xf5\x15\x83\x6a\x69\xaf\x18\x54\xcb\xf3\x8a\x41\xb5\x74\x17\x68\xfd\xfd\x2e\xb7\x73\x24\x18\xd5\xe2\xe3\x13\xfb\x7e\x5b\xec\x15\x71\x6a\x71\xd1\xbd\xee\xb7\x96\xfd\x0a\x46\xb5\x1c\x7a\xf8\xad\x3f\xbe\x7e\x9e\xf4\x7e\xa9\xdb\x40\x73\x7f\x1b\x1f\x32\xa8\x10\x71\x6a\x79\xfe\xb0\x62\x72\xed\x7f\x58\x31\xb9\x8e\x3f\xac\x98\x5c\xe7\x1f\x56\x4c\xae\xf6\x87\x15\x93\x7f\xdb\x51\xed\xfd\xcf\x7e\xf7\xac\x7a\x7b\xfc\x8b\xda\x3b\x0e\x6e\x37\xe9\x10\xa1\xa5\x85\xf7\x38\x50\x8b\x32\xfe\xf3\xdb\x92\x90\x96\xf6\xb6\x64\x7f\xce\xf7\xbb\xca\x2b\x0d\xd4\xc2\xae\xf9\xb6\x92\x1b\xbb\x66\xbd\x2b\xc7\x5d\xda\x2b\xe6\x77\x0d\xb8\x4b\x7b\xa5\xf3\xed\xae\x81\x34\xf8\x76\xcd\x7c\xf7\xb5\x5a\x38\xb0\xf6\xb7\xbb\x16\xbb\xef\xdb\xbb\x7c\x7c\xc6\xb7\xf9\x75\x9b\x6b\x07\x7b\x57\x85\xdb\x5d\xab\x7d\x5b\x5d\x6e\x7b\xed\x56\xdf\xb7\xbb\xfd\x35\xd7\xb7\x1d\xe1\x2e\xed\xb9\xbe\xad\x2e\x77\x69\xaf\x74\xbe\x5d\x53\xde\x03\x54\x2d\x00\xf1\xbf\x8d\xf3\xd3\xde\xe3\x52\x2d\xcf\x7b\x38\xaa\xa5\xe3\xd7\x28\xfc\x1a\xef\x59\xa7\xff\xcf\xf7\x1c\xfb\xaf\xd8\x5b\xa6\xb6\x40\x3c\xf3\xbd\x7d\xbd\x07\x91\x5a\xc8\xec\xbe\xef\xe4\x3f\xe7\x3d\x88\xd4\x72\xdf\x83\x88\x16\x52\xbd\xd6\x79\x07\x92\x22\x76\x79\xbd\x1f\xd7\xd3\x7b\x08\xab\x05\xc2\x13\x7b\xa7\xa8\x17\x25\x70\xbe\x2d\xdf\x0e\x2b\xb5\x40\x7e\x32\xbe\x3d\x99\x0a\x5a\xe1\xed\x73\x67\xd8\x3c\xb3\x21\xe5\x3e\xde\x43\x51\xff\xf7\x83\xea\xb4\x6f\x6f\xf6\x25\x95\xf6\xb7\xde\xb1\xa4\xbe\x89\x54\xf7\x7e\xaf\xe7\xdb\xf2\xed\xdf\x0e\x2a\xb5\xf8\x92\x1a\xdf\x16\xbd\x7b\xc0\x77\xf9\xb6\xa4\x86\x96\xd4\xfb\x76\xf7\x80\x5b\x18\xef\xf8\xb9\x17\xdc\xbe\x2f\x29\xf7\x84\xef\x5a\xbf\x5d\x53\x7f\x1f\x5d\x6e\xd9\xff\x38\xba\xdc\xba\xff\x71\x74\xb9\xd7\xfc\xc7\xd1\xe5\x36\xff\x8f\xa3\xcb\x73\xc6\x7e\x1c\x5d\xee\x5d\xff\x71\x74\xb9\x87\xfd\xc7\xd1\xe5\xde\x82\x1f\x47\x97\xe7\x90\xfd\xec\xf3\xfd\x7d\x30\xb8\x57\xe1\x87\x28\x99\xf1\xf7\xec\xcc\xf4\x5b\xe8\x4f\x8d\xcf\xb7\x96\xf2\x5b\xb8\xcc\xfa\x7b\x4e\x67\xfb\x2d\x5c\x3c\xcf\xec\x87\x70\x99\xfd\xf7\x2c\xcf\xf1\x7b\x96\x1d\x82\xf4\x63\x6d\x38\xfc\x68\xf5\xf8\xed\x9a\xf5\x5b\xf9\x98\xff\x12\x49\x1e\x0a\xf8\xb1\x36\x3c\x14\x20\xb5\x86\x16\x63\x7c\xbe\xcd\x8e\xfb\x4c\x7e\x28\x04\x96\x7e\x2b\x04\xee\x3b\xf9\x71\xb8\xba\xff\xe4\xc7\xaa\x73\x1f\xca\x8f\x55\xe7\x21\x85\x1f\xab\xce\xc3\x0a\x3f\x14\x26\x87\x12\xfd\x10\x9a\x36\xfe\x70\xa8\x65\x9b\x7f\x38\xd4\xb2\xd9\x1f\x0e\xb5\xfc\x0d\x52\xf4\xd3\xa1\x96\x09\x4e\xc8\xc3\x95\xdd\xea\x4d\x0f\xce\xd6\x7c\xce\x37\xaf\x52\x3e\xf7\x9b\x57\x29\xdf\xf0\xcd\xab\x94\x6f\xfc\xe6\x55\x2a\x6e\x55\xa5\xe6\xe0\xff\x54\xdc\xa2\x4a\x0d\x34\x6e\x71\x4b\xe9\xfb\x1a\x2b\x58\x4a\x2b\x7f\x6b\x59\xa8\x2c\xeb\x6d\x61\x96\x5f\x85\xa9\x04\xa4\xc4\xf3\xed\x1a\xd4\x91\x77\x96\x8b\x5b\x4a\xfb\xc9\xdf\x5a\x14\xf7\xff\xc7\xd8\x28\xc2\x27\xbf\x18\x83\x12\x15\xf7\xcf\x6f\x8b\xc0\x2f\xe5\x6d\x11\xf8\xa5\xbe\x2d\x02\xbf\xb4\xb7\x45\xe0\x97\xe7\x6d\x11\xf8\xa5\xbf\x2d\x02\xbf\x8c\xb7\xe5\x17\xb8\xe8\x1f\x2c\x47\x89\xbf\x40\x30\xf1\xfd\xcf\x2f\x10\x4c\x7a\xff\xf3\x0b\x04\x93\xdf\xff\xfc\x02\xc1\x94\xf7\x3f\xbf\x40\x30\xff\x40\x5d\x4a\xfa\x05\x82\x69\xef\x7f\x7e\x81\x60\x9e\xf7\x3f\xbf\x40\x30\xfd\xfd\xcf\x2f\x10\xcc\xff\x09\xd4\xa5\xa4\x6f\xf8\x98\x1f\x50\x97\x92\xa0\xfb\x78\x5d\x14\x25\xa1\x0b\xf4\xf5\xb6\x3c\x5c\xf3\x0e\x37\xfc\x10\x6d\xdb\xdb\xa2\x1c\xee\x77\xb2\x21\x17\x8c\x6d\xbf\x2d\x26\x70\xf6\xdb\x42\x3e\x7e\xfb\xf6\x1c\x00\xdc\xf5\xdb\x5d\x47\x20\xee\xb7\xe5\x33\xd4\x5f\xad\x5f\x7d\xff\xe7\x6b\x72\xf8\xf1\x9f\xbe\xde\xff\xc4\x9f\xf7\x8c\xf7\x3f\xe9\xdb\x7f\xbe\xbe\xe9\xfd\x4f\xfe\x71\xcf\x78\x27\x3b\x97\xef\xf7\xc4\xb6\xdf\xff\xd4\x9f\xef\x79\x97\x4e\x6e\x3f\xef\xf9\xf6\x9e\xe7\xc7\x3d\xf5\xdb\xd3\x3e\x38\xbb\xaf\x6f\xf9\xfa\xef\xfb\x9f\xf1\x7b\xde\xf2\xfc\x3d\x6f\xd9\x7e\xcf\x9b\x5b\x74\x3f\xe6\x2d\xef\xdf\xf3\x46\x26\xd3\xf7\x79\xcb\xf7\xf7\xbc\x95\xf0\x7b\xde\x4a\xfc\x3d\x6f\x90\x21\x7e\x9f\xb7\x92\xff\x9a\xb7\x52\xfe\x9a\xb7\x52\xff\x9a\xb7\xd2\xfe\x9a\xb7\xf2\xfc\x35\x6f\xa5\xff\x35\x6f\x65\xfc\x35\x6f\x65\xfe\x35\x6f\xc5\xfe\x9a\xb7\xb2\xfe\x9a\x37\x88\x18\xeb\x79\x45\x20\x75\xdf\x9e\xd7\x57\x50\xa8\x18\x1e\xbe\x8d\x2e\x69\x54\xeb\x9b\x28\x15\x9d\x7f\x7a\xef\x22\x9d\x2a\xee\x77\xbc\xa1\xf5\x7f\x5e\xd7\x59\x51\x0c\x6d\x04\x7e\xd9\xef\xbe\x90\x06\xf5\xbd\x2f\x75\xff\xab\x2f\xe7\x5f\x7d\xb9\xbf\xfb\x42\x15\xf0\xef\x7d\x81\x9e\xff\x7b\x5f\x14\x93\xe2\x60\x2c\x8a\x49\xe9\x28\x14\x74\x88\xc8\x70\x69\x4a\xf5\xe1\x28\x74\xfb\x2a\x07\x1d\x93\x0d\x18\x08\x31\xf4\xf2\x81\x0a\xf1\x7d\x0d\x94\x80\x27\x05\xa5\x22\x40\x50\xd2\xaf\x04\x82\x40\xbf\x14\x6d\x5b\xfc\x2a\xdc\xc7\xdb\xdd\xe8\x98\x2b\xd2\x4f\x57\xce\xe7\xc2\x51\x5c\x26\xea\x73\xe1\xbe\x85\xa3\x14\xf8\x5f\x59\x5c\x49\x0a\x4b\xd9\xfc\x22\x7c\x55\x0e\x76\x1b\xf1\xd8\xe2\x2e\xf2\xb9\x08\x89\x55\x77\xe4\xce\xe5\x89\x62\xa9\xfa\x11\x3e\x17\xe3\x52\x03\x7d\x71\xd2\x89\x54\x23\x6f\x77\x5e\xf5\x54\x23\xcf\xf4\x14\xf8\x54\xfd\x08\x9b\x90\x01\xa4\xea\x87\xc6\xdc\x9e\x02\x95\xaa\x9f\x06\x73\x3b\xad\x6d\xaa\x85\x2b\x0b\xef\x2b\x58\xee\x40\x11\x2b\xd6\x36\x6c\x34\xa9\x3e\xdc\xf7\xf0\x14\xb7\x22\xe7\xee\x3c\xc5\x95\xb3\xb9\x37\x57\x7a\x58\x62\x9e\xc0\x17\x79\x48\x62\x92\x98\x96\x9a\xab\x32\xf3\x10\xb9\x6d\xae\x6c\xcc\x03\x3e\xa2\xf1\x45\xd4\x3e\x4f\xcd\xd5\x85\x49\xc5\xce\xd4\x5c\x55\x98\xd0\xcb\xa5\x16\x79\x8a\xb3\x02\xa5\x96\x78\x8a\xa7\x86\xa5\xe6\x12\x7d\x9e\xe7\x3f\x18\x3d\x52\xf3\xe5\x32\x0f\x10\x88\xe6\x26\xed\x84\xd6\x25\x35\xb7\x9e\xe6\x39\x74\xda\x63\x67\xf3\x12\x7c\x6e\x1e\x37\x9b\x54\xc1\x4d\xcd\xa3\x56\xf3\x92\xe3\xd4\x3c\x62\x35\xaf\x53\xe8\xa4\xc7\x05\xdb\xa4\x7e\x6d\x7a\x5c\x98\xcd\x0b\xf8\xe5\x71\xad\xdc\x82\xa7\x9a\xa6\xc7\x35\x72\x0b\x7c\xec\x33\x71\xab\x79\x72\x70\x7a\xd0\xa0\x83\x33\x88\xa4\xc7\xb5\x67\x83\x8d\x3a\x3d\x07\x7d\xdb\x89\x50\xd3\x73\xb8\x92\x0d\xfe\x78\x7c\xc6\x60\xfd\x4a\xcf\x95\x66\x4e\x5f\x2e\x57\x12\x17\x7d\x2e\xcf\xf4\x7c\xbd\x2f\x75\xd7\x7f\x79\xba\x7a\xea\xc4\x11\x02\x30\x83\xee\xc7\x8c\x51\x20\x2a\x75\xdc\x7f\xd1\x93\x52\x53\x77\x01\x6f\x11\x18\x50\xf7\x10\xbd\x45\xb6\x66\xef\x5c\xd9\xb9\xd2\x2d\x48\xa3\xc4\x56\xea\x58\x8f\xd1\x93\x91\x53\xf7\xad\x62\xe4\x46\xa6\x7e\xb1\x30\x2e\x57\xf2\x0d\xf1\xfa\x95\x23\xe0\xfa\x01\xa2\x31\x3c\x4e\x61\x89\x8d\x3a\x1e\x9c\xc4\x4e\x85\x93\x86\xcf\xad\x09\x53\x3b\xdc\xb3\x60\xc2\xd4\x0e\xb7\x1e\x2d\x11\x83\x1e\xd8\x77\xc9\x59\x3b\xd2\x90\x6d\xb7\x79\xdf\xe4\x99\xce\x39\x96\xc6\xe4\x99\xe8\xf2\xc3\xad\x25\x4b\x97\xbe\x38\xcc\xc9\x72\xe4\xed\x1e\xd1\xb1\xec\x44\x01\x69\x2a\x52\xc3\x81\x30\xe9\x75\xf6\x64\xdd\x34\x03\xee\x4b\xe7\x03\x4c\xd3\x6d\x00\x23\xe5\x3e\x4d\x6c\x80\xec\x34\x4e\x69\x46\xfe\x87\x78\x99\x2e\xea\x8d\x02\xa1\x69\xba\x98\xb7\x4c\x10\x7f\xba\x83\xd0\x28\x1a\x91\xa6\x3b\x05\x2d\x03\xac\x99\x95\x67\xf2\xb5\xd3\x0f\x04\xa3\x60\x5a\xa2\x96\xbc\x15\x70\x6b\x54\xee\xb6\x82\x28\xa0\x72\xb7\x15\x4f\x23\x4e\x94\xeb\xb5\x42\xc2\x13\xe5\x7a\x0d\x06\xc0\x44\x81\x57\x2b\x5e\x7a\x36\x51\x9a\xd5\x48\xce\x4f\x94\x66\xb5\xe2\xbc\x12\x89\xba\x98\x56\x01\x86\x50\x29\xd2\x2a\x82\x81\xda\x89\x46\x65\xbc\x44\x49\x36\xab\xc0\xa8\x28\xad\x66\x90\x6c\x26\x8a\x8d\x59\x65\x17\xc3\x9d\x6e\xcd\x29\xa5\x12\x3c\xd2\x46\xd9\xfe\x04\x89\xaf\x3d\x4e\x30\x90\x20\xf1\x35\xf8\x44\x12\x44\xb6\xf6\xb0\xab\xa0\x7d\xb5\x87\x9d\x03\x85\xa9\x51\x69\x3a\xc1\x11\x69\xcf\xe5\x4a\x8f\xeb\x5a\x67\x07\xc0\xa8\x68\x9d\xbc\x50\x58\x05\xad\xb3\x1f\xe0\xcb\x33\xe8\xbb\x12\xbc\x70\xd6\x9d\x8e\x29\x41\xfe\x66\xdd\xf3\x65\x13\xd4\x50\xd6\x17\x57\xba\x9b\xd2\x20\x3b\x4d\x50\x20\x59\x67\xaf\x40\x81\x64\xfd\x70\x9f\xfb\x76\x0c\xb2\xa4\x04\xd7\x8f\x75\x76\x0e\x4c\x20\x06\xd3\x49\x82\x0e\xc3\xe0\xa9\x4f\xd0\x61\xd8\x68\x7e\x25\x94\x10\x36\x9c\x40\x21\x41\x09\x61\xc3\x53\xee\x13\x89\xfb\x06\xaf\x4b\x22\x71\xdf\x06\xc8\x07\x12\xe9\x8d\x9a\x84\x89\x14\x78\x1b\xfb\xbf\x44\x32\xd9\xf1\x36\x58\x82\x64\xc0\xdb\x70\x56\xb3\x44\xfa\xb8\x0d\xb6\x18\x69\xbd\x36\x49\xee\xbc\xb8\x9b\x26\x08\x31\x92\x7c\x6d\x72\x2e\x5f\xb6\xed\x64\x8b\x5d\xcf\xfd\xb1\xa9\x0f\xda\xfc\x62\x6a\x2f\xc2\x74\x02\x24\xb9\x87\xfb\x4c\xff\x23\xbc\xeb\x50\x8e\x4c\x0a\xac\x99\x9f\xa8\x39\x10\xcb\x31\x3f\x51\x73\x70\x2d\xd3\xa0\x47\xcf\x81\x5e\x9b\x67\xfc\x65\x52\x4b\x8d\xd4\xf2\x4c\x6a\xa9\x99\x9f\xb6\x99\x44\x52\x23\x1b\x3f\x93\xd8\x69\xd4\x7a\xce\x64\x80\xd8\x72\x5d\x26\x93\x8b\x61\x2b\xf0\x06\x16\xf9\xa2\x2f\xe4\x5c\xd8\xa2\x2f\x91\x65\xb6\x7c\x53\xe5\x88\x08\x59\x9e\x94\x9a\x63\x24\x7e\xe1\x5b\x2c\x03\x67\xb7\xe5\xac\x16\x19\xc0\xb9\x79\xd1\x9b\xaf\x5f\x91\x5f\xdc\xf7\xe0\x02\x33\xee\xeb\x38\xfa\x16\x6f\x9f\xfc\x72\x1e\x92\x1c\x71\x0f\xed\xc0\x53\x70\x0d\x41\x62\x93\xc1\xf4\xd9\x76\x4c\x52\x06\xd3\x67\xdb\x1d\x2a\x39\x11\xbd\xdb\x7e\x70\x65\x00\x44\x76\x02\xff\x73\xa7\xa1\x41\x4c\x95\x81\xd4\xd8\xf1\x83\x32\x03\x7a\x31\xa8\xb6\x32\x80\x17\x3b\x95\xf7\xf9\xc1\x6c\xc7\x69\x72\x32\x60\x0f\x3b\x0f\x6f\x77\x07\x8e\x1d\xdf\xee\x99\xa8\x83\x5d\xdf\xc4\x5f\x16\xbe\xff\xf2\x0d\x97\x71\x61\x18\x14\x5d\xb9\xf8\x1b\x16\x7c\x6b\xb9\xb8\x5a\xb0\x28\x8e\x95\x8b\xc3\x5b\x56\x70\x2e\x95\x5c\x36\x57\x1a\xbf\xfc\x7d\x0b\x6a\xa8\x5c\x08\xef\x43\x93\x93\x0b\xa1\x7d\x48\x12\x72\x75\x51\xb0\xa2\xa7\xc0\x67\x34\xb7\x15\x5d\xfb\xcc\x95\xa8\x67\x64\x65\x55\x22\x83\xb0\x5a\xe4\x5a\xf8\x9f\xaf\xf9\x5c\x89\x6d\xc0\xb0\x91\x2b\x11\x8a\x38\x78\xa6\xcf\xe6\x8a\x83\x67\x12\x3f\x88\x8e\xc0\xcb\xd5\xf8\xe5\x1a\x66\xae\x8b\x08\x09\xeb\xac\xf2\xed\x89\x75\x56\x37\x4e\x6b\xd6\x7c\x75\xf1\xb2\xa0\xda\xcf\xd5\x01\x31\x2b\xa9\xd7\x9b\x88\x58\xd6\x7d\x00\x19\x5c\x95\xca\x55\xb0\x06\xe7\xd4\xc8\x2d\xf2\x14\xd7\x37\x73\x8b\x3c\xc5\xf5\xcd\xdc\x32\x71\x0e\x07\x95\xe5\xa6\x38\xa0\x1f\x40\xb9\xb9\x65\xb8\x92\x1f\x40\xb9\x7d\x22\x22\x3c\xc5\x75\xd8\x95\x2e\x4f\x79\xf8\x06\x56\x6b\xf3\x08\xc6\x4a\x2e\x30\x73\xe3\x1b\xb2\x53\x51\xe5\xc7\x15\x9d\x95\x9d\x00\x2d\x77\xb7\xf2\x57\xf1\x63\x25\x77\x46\xb7\xfa\xb1\x92\xbb\xa2\x46\x8e\xf8\xcc\x9d\xd1\xad\xae\xd6\xe5\xfe\x10\xab\x65\x7d\x76\x0f\x82\xac\xea\xec\x45\xb9\x77\x9e\xc2\x8a\xec\xb8\xbd\x2b\x2b\xb2\xe3\xf2\xae\xae\xd6\xe5\xee\x8e\xeb\x55\xd9\x9b\xdd\xb8\xd2\x78\xbb\x67\x2b\x2e\xf0\x9b\xb9\x7b\x96\xe2\xaa\x2e\x84\x73\x5f\xf4\x65\xf1\xbe\xc5\x53\xbe\x64\xeb\xff\x12\xc9\xb9\x6f\x1e\xe9\xdc\xb8\xb9\x6f\x3e\xe1\xf0\x10\xa6\xbd\x3a\x45\x78\xee\x7e\x72\xac\xc6\xc6\xe9\xe0\x58\x80\x6c\xe7\x11\xf8\x9f\x9f\x7e\x79\x04\x02\xe4\x0e\xd8\xcd\xc3\x71\x29\xab\x31\x80\xc3\x3d\x89\xab\xf9\xc9\x98\x07\x8b\xbc\xf9\x59\x98\x87\x3b\x30\x56\xeb\x5c\x99\x79\x83\xeb\x8d\x79\x54\xde\x30\x79\x43\xe5\x0d\x93\x37\x34\xde\xb0\x78\x66\xe3\x0d\x6c\xe9\xc1\x70\x02\x57\xcf\xc3\x63\x00\x8b\xf2\xf4\x79\xb0\x01\x9e\xcc\x7d\xae\x79\xaf\x27\x73\x9f\xfb\xac\xd7\xa3\x2f\x5a\xfc\x8f\x89\x1e\x8b\xff\x21\xca\x87\xe3\xf5\xd6\x53\xf9\x86\x03\x56\xa6\x73\x1f\xa2\xe0\x61\x6b\x8e\x83\x7f\x96\xad\x39\x0e\x3d\x73\xf6\x8d\x3c\x2e\xcf\x44\xd8\x4c\x21\x6e\x10\x28\x33\xd2\x6b\x26\x7a\xba\x19\xb5\x1e\x26\x7a\xfa\x91\xba\xba\x43\x9e\xf3\x74\xe7\xc8\xea\x91\xa7\x14\x50\x4c\x0e\xd6\xce\x68\x83\xab\xb3\x51\xd1\x06\x17\x44\x9a\x79\x12\xbd\xa1\xbe\x72\x9e\x83\x90\x6f\xe7\x29\x03\x7c\x52\xe7\x29\x1e\x25\x58\x1d\x81\x32\x8d\xb7\x23\x50\x26\x9b\xbf\xbb\x2e\x9a\x27\x9b\xbf\xbb\x2e\x9a\xcd\x11\x43\x8b\xba\x7c\xd9\xfc\xe0\x5a\x54\x93\xce\x94\xbc\x5f\x83\xc3\x90\x7a\xe3\x6b\x38\x21\x52\xa6\xde\xf8\x1a\x88\x02\x6a\x4b\xaf\xe1\xc4\x4d\x99\xaa\xd0\x8b\x6a\x90\xd9\x14\xf5\x70\x2a\xaa\x4c\x55\xe8\x35\x9c\xbc\x28\x53\xf9\x79\x0d\x36\x38\x95\x9f\x17\xec\xc2\x99\x2a\xcd\x0b\x26\xe7\x4c\x39\xe2\x35\x39\x7c\x29\x56\xba\xa6\x6b\xa6\x99\xaa\x79\x6b\x2e\xfd\xf2\xf1\x9c\x0e\xad\xcd\x54\xcd\x5b\x93\xbe\x50\x46\x61\x51\xe2\x38\x43\x22\xbf\x96\xd7\xf1\xc9\x90\xc8\xaf\xc5\xce\x81\xe2\x7d\x51\x02\x38\xc3\x6c\xbe\x16\x22\x04\x6e\xf1\xb5\x9c\x33\x2e\xc3\x2d\xbe\x96\x53\xfd\x64\xf8\xa0\xd7\x1a\xfa\xc5\x1b\x5c\xd1\xc9\x10\x0a\xaf\xe5\x36\x5d\x86\x50\x78\x2d\xd7\x68\x33\xc4\xa4\x6b\xb3\x8b\xd1\x3e\xd7\x76\x1d\x36\xc3\x4d\xb8\xb6\xeb\xa9\x19\x6e\xc2\xb5\xd9\x9b\xf0\xc9\xad\xcd\xfe\x83\x4f\x6e\x51\xe7\x30\x43\x48\xb6\x36\xeb\x13\xf2\xa9\x45\x29\xdf\x0c\xf9\xd4\xda\xae\x99\x66\x94\xbc\x75\xd8\x71\x70\x04\xad\xc3\x8e\xbb\xcc\x34\xa4\x63\xf9\x7a\xa4\x77\x9d\xc6\x7d\x6e\x21\xac\xc3\xae\xba\x6e\x5f\xae\xe3\x7a\x6a\xbe\x44\xd6\x60\xe9\xce\x97\x3d\x76\xfc\xb8\x2d\xb0\xb5\xac\xeb\xbc\x8c\x25\x20\x97\x28\x13\x5b\x02\x72\xe9\xfa\xee\x28\x81\x99\xbe\xbe\x3b\x0a\x2c\x24\xeb\x36\x9e\xc2\x01\x74\xdd\x6e\x2b\x24\x9d\xaf\x7b\x79\x8a\x2b\x9c\xeb\xba\x63\xa6\x90\xc4\xba\x83\x2b\x80\x25\x0a\x6d\xe7\x0a\x60\x41\xe9\xda\x4e\x1c\xf1\x4d\x24\xb7\xfe\x53\x22\x17\xd4\xb1\x1d\x8c\xbb\x1e\x9e\xe8\xeb\xaa\xa0\x8e\xed\xe0\x6b\xb5\x44\x5f\x2d\x9b\x52\xdd\x25\xfa\xca\xdd\xb1\x70\xa5\xe3\x4b\x77\xac\x5c\xe9\xaa\xef\x8e\xee\x3a\x2b\x29\x71\x9f\xab\x78\x25\xb9\x0c\xde\x20\xaa\x0b\x49\x13\x3b\x7a\x9a\x44\x49\xbe\x8e\x37\xdc\x2c\x05\xec\xf5\x4e\xee\x0b\x29\x60\xaf\x77\x72\x5f\x48\x01\x81\xb7\x93\xa7\x01\x14\x80\x70\x3b\xb9\x67\xa4\x00\xff\xd9\xa4\xb4\x14\xa0\x3f\x3b\xbb\xc2\x57\x80\xe2\x6c\x8a\x83\x14\x00\x35\x3b\x3b\x43\x50\xc9\x6e\xe9\x6e\xd2\x56\x0a\x30\x8f\x9d\x33\xcf\x24\x7e\x99\x3b\xff\x5b\xbc\x61\xf2\xbf\xc5\x1b\x9c\x51\xb4\x10\xb1\xdb\xd4\x3f\x2d\x85\x19\x82\xba\xb9\x14\x66\xa8\x38\xaf\x51\xc1\x4d\xb9\x4b\xe3\x7f\x0e\x9b\xd8\xc5\x7d\x1a\xa5\x38\x82\x61\x17\x3f\x9b\x4a\x71\xcb\x6c\xc3\xa3\x59\xca\x21\xf2\x7e\xf9\x75\x89\x9f\xfb\x89\x53\xaa\x2b\xc2\xbb\xfa\x59\x51\xaa\xef\x8d\x5d\xfd\xac\x28\xd5\x03\x00\xbb\xfa\x8a\x2f\xd5\x9d\xfe\xbb\xfa\x8a\x2f\xd5\x9d\xcc\x9b\x62\xd2\xa5\x76\xe2\xdb\xee\xc5\x28\x55\x11\xfa\xcd\x7d\x83\x37\x6c\xee\x9b\x3c\x93\xf5\x5f\x27\xcf\x74\x75\xb3\x54\x8f\x78\xee\xc6\xfa\xaf\x8e\x13\xde\xad\xf0\x14\x3f\xb7\x76\x2b\x3c\xe5\x72\x25\x2b\xbe\xf9\x99\xbd\x21\x58\x2b\x2d\x71\xa5\x9f\x00\xa5\xb1\x96\x9a\x9f\x00\xa5\xf9\x99\xbd\xa9\xa2\x5a\x5a\xe5\xbe\xcd\x53\xe8\xf5\x93\xf8\x1f\xbd\x7e\x5c\x89\x2c\xcd\xe3\xdc\xfb\x61\xa7\x34\x97\xd6\xfb\x71\xf7\x5f\x69\xc6\xff\xfc\x74\x28\xcd\xa5\xf5\x7e\x1a\x7d\x39\x5c\x39\x78\xe6\xe1\x0d\x7e\x56\x94\x87\x84\x16\xd2\xcf\xca\x43\x42\x0b\x55\x46\xcb\x23\x17\xfe\xe7\x7f\xee\x66\x8e\xee\x90\x2e\x0f\x09\x2d\x50\xba\x14\x3c\x77\xe2\x89\x2a\x8f\xa8\x3b\x1e\xfd\x52\xa8\xea\xcf\x4c\xbd\xff\xdf\xff\xeb\xff\xfb\xff\xf9\x7f\xff\x5f\xff\x77\x08\x9f\x84\x78\xe5\x97\x7c\x75\x22\x04\x65\x74\xb8\x0c\xce\x54\xf4\x0a\x1f\xe6\xa0\xf6\x8d\x46\x2b\x7c\x68\x80\x9a\x58\x9b\xb2\x37\x2a\xe3\xd5\x05\x44\x0a\xae\xd2\x84\x0f\x0f\xcf\x43\xea\x9d\xcb\xf5\xf0\x21\xda\x79\x78\x91\x0b\xbc\xf0\x61\xd2\x71\x4f\x4c\x86\x62\x3a\x7c\xa8\x66\x3a\x59\x57\x8d\x2b\xc5\x12\xd3\xc5\x98\x95\x68\xe4\x53\x44\xbf\x75\xe8\xbc\xb8\x51\x48\x45\x8c\x43\x8d\x74\x9e\x6c\x44\xf2\x52\xc2\x87\xd7\x84\xac\x8c\xe4\x3b\x20\x7c\x88\x46\xc8\x30\x4c\x4e\xf0\x1a\x3e\x2c\x21\xa6\xb4\xaf\x46\x23\xf3\x67\xe4\x7b\x75\xba\x24\x2e\x8f\xc5\x33\x3d\x9b\x35\x04\xa1\xf3\x5d\x19\x49\xad\xd1\x25\x41\xe4\x0f\xc9\x51\x5b\x8d\x8c\xfc\x21\x0f\x6a\xf2\xed\x82\x8f\x5f\x31\x6b\x71\xa5\x68\x14\xc8\xe9\x6b\x6e\x73\x86\xe8\x0a\x4e\x20\x67\x5e\x5c\x65\x21\x12\xfa\x22\x31\x5b\x44\x64\x41\x29\xd8\x64\x95\xe6\x98\xb9\xd2\xb1\x31\x21\xba\x20\xcb\xd0\xc4\x86\x48\x02\x49\x5c\x8c\xa7\x9f\xc4\x21\x92\xa1\x11\x37\x11\x16\xbe\x28\x92\x02\x11\x41\xfa\xe7\xc1\x33\x41\xf9\x47\x00\xf8\x50\x6a\x85\x08\xf8\x9e\x14\xc4\x90\xdd\x19\x12\x48\x41\x0c\xc9\x1d\x94\x21\xbb\x6b\x38\x90\x31\x17\x48\x95\x4b\xd5\xa5\x70\x20\x55\x2e\x28\x47\xae\x26\x6e\x27\x96\x9a\xe0\x3d\xc0\xc7\x17\x12\xc1\xd2\x94\xc9\x47\x73\x68\x45\x48\x44\x43\x13\xbc\x07\xd5\x35\xa2\x40\x52\x5d\x48\x99\x91\xcf\x7a\xa6\xd1\x48\xea\x99\x17\xc2\x0c\x09\xae\x03\xf2\xea\x52\xcd\x7a\x26\xfd\x54\x32\x1d\x83\x4c\x32\x5d\xf8\x64\xd1\xf9\x21\x15\xc8\xa2\x0b\x9f\x54\xb7\xc2\x67\x12\xe8\x23\xab\x2d\xe7\xc1\x8b\x20\x28\x50\x5a\x9a\x86\x8e\xb4\xb4\x40\xfe\x58\xce\x83\xb7\x93\x19\x46\xb2\x57\xce\x9d\xb7\x93\xc6\x45\xce\x56\xce\xae\xa8\x84\x44\xa2\x7d\x72\x83\x32\x67\xcf\x49\x0e\xa4\x6b\x85\x44\xc4\x2a\x1b\xfd\x24\x62\x95\xd8\xb0\xb9\xab\xb1\xd3\x48\x3f\x5d\xc4\x86\x44\x7a\x78\xea\xdc\xce\x8e\x4b\xe4\x73\xe3\x59\xc9\x79\xa9\xb1\xd1\xc8\xdb\x3b\xb7\xb3\xb5\x53\xe7\x99\x93\xce\xb3\xb5\xd3\xe0\x99\x93\xcf\x9c\x74\x9e\xf5\x09\xc9\x5b\x50\x82\x13\x59\x32\xa9\xb0\x8f\x94\x21\x83\xd7\x25\x15\x5d\x79\xd4\x88\x10\xa8\x8c\x27\x39\x1e\x24\x6d\x38\xbf\xc2\xff\xf5\x7f\x07\x12\x12\x02\xb0\xf4\x4c\x29\x88\x00\x24\x3d\x80\x6b\x4e\x30\xfb\x06\x30\xcd\x01\x78\xaf\xc7\xf5\xbe\x1a\x8b\x1a\x25\x20\x12\x8d\x2c\x76\xd7\x37\x9d\xa5\xeb\xab\x11\x7e\x09\xc0\x5b\x39\x14\x1a\x27\x3b\xe0\x12\x94\x9c\x34\x42\xa8\x92\xd9\x32\x14\x8c\x0c\x78\x8e\x42\x41\xb2\x17\x84\x2a\xda\x45\x10\xc0\xa3\xb8\x0a\x10\x84\xcf\x20\x18\x1f\xa8\x49\x18\x08\xc4\x07\xa2\xef\x73\xf1\x99\xc4\xd9\x03\x01\xf3\xb9\x9c\xd9\x32\x28\x48\x4e\xd4\x79\x2e\xbd\xbd\xf0\xb0\x1a\x05\x11\xf5\x46\xf8\x31\x4a\x25\x52\xe9\x47\x6b\x28\x10\x62\x94\x0a\x2c\xda\xad\x8e\x50\x00\x0f\x17\x37\x09\xe7\x72\x43\x3d\x14\xf2\x15\xcb\x3f\x20\x5c\x1a\x79\xbb\xcb\xac\xb9\x1e\xba\x04\x41\x04\xfa\xd2\x5c\x5d\x57\x4e\x1a\x89\x69\x7a\x7e\x66\x50\xcc\xb6\x08\xdc\xda\xe9\x27\x87\x54\x21\xc6\xb8\x98\x4d\xd4\xad\x50\x1e\xfa\x39\xe8\x27\xbc\x0a\xe5\x21\xbe\x3a\xe9\x27\x24\x09\x9f\xd0\xed\xd4\x95\x4c\x4e\x27\xbe\x6a\x5c\x09\x0d\x42\xe9\x7c\x91\xeb\xb4\xa1\xc0\x3a\xf0\x89\xf5\x72\x72\x15\x58\xcd\x4a\x57\x08\x96\xcf\x84\x3d\xa0\x0c\x6e\x3f\xbc\x08\xbe\xb0\x32\x18\x10\xf7\x8d\x84\xe2\xf6\x73\x28\x83\xce\x5f\xbe\x08\x6a\x80\x32\x14\xac\xa5\x71\xf2\xed\x93\xf8\xaa\xe6\x88\x55\x57\x26\x61\xd6\xfc\x49\xc1\x44\x7d\xf8\x7f\x52\x28\x0a\xdc\x64\xc5\x0f\xdc\xb9\x0b\xab\x0f\xaa\xaf\x02\x00\x6f\x37\x9e\xcd\xa1\x5a\x1c\x3b\x37\xf7\xc3\xb4\x70\xa8\x16\x23\x47\xe2\x61\x60\xe0\xcd\x2a\x1e\xdd\x9a\x9b\x5d\x52\x38\x54\x8b\x1f\xaa\x73\x23\xc9\x0a\x69\x8c\x0a\x89\x6f\x4d\x20\x39\x89\x78\x4d\xe7\x46\xea\x14\x12\x0c\xcb\x62\x0c\x90\x10\x85\x4c\xc0\x42\x30\x15\x46\xda\x50\x48\xf4\x2b\x9b\x31\xb8\x0c\x36\x79\x7c\xf8\x57\xe7\x09\xba\x92\xb9\xda\xc4\x77\x33\xcf\x24\xc3\xae\x1c\x62\xcc\x99\x09\x24\x81\xae\x28\x44\x5d\x74\x25\x03\xe2\x47\xe5\xa4\x8a\x5e\x28\x1c\xfe\xb8\x6e\x27\xec\xe7\xa1\x70\x54\x96\xab\xf8\x33\x8d\x08\xad\x72\x09\x82\x57\xfa\x89\x9a\x50\x2e\x51\xec\x46\x3f\x61\x14\x28\x97\x60\xf6\xa3\x46\xa3\x71\xd3\xc8\xc8\xc3\xbe\x84\x73\x78\x1e\xd7\xb3\x43\x45\xb2\xd4\xc0\x8b\x3c\x32\x11\x2a\x27\x74\x0d\x74\x7e\xa9\xb1\xd3\xc8\x8b\xdc\x31\x14\xaa\x43\x08\x43\x75\xdc\xe0\x3c\xae\x83\x87\x0a\x6a\xaf\x12\x7b\xbf\x08\x98\x0a\x04\xaf\x46\xa2\xe0\x2c\x49\x20\x06\xa1\x7a\xe8\x6a\x52\x8f\x2e\x54\xc0\x6e\x35\x11\x13\x47\x64\x02\x3f\x08\xc2\x1d\x50\x0f\x32\x60\xe8\x84\xea\xb6\xc2\xbc\x55\xb7\xf3\xa2\xc4\x8b\xd0\x2e\xab\x1b\x9c\xa1\xba\xb2\x31\x2f\x27\x58\x05\xb6\x55\x33\xe1\x76\x76\x33\x3e\xf0\x80\xd5\x34\xef\xa2\xf3\x70\x26\x55\x3f\x0b\xe6\x75\x17\x44\xa8\x08\xd7\x8a\x70\xbd\x87\xdb\x61\x3c\xaa\x2e\x63\x27\x45\xd2\x42\x45\x41\xab\x05\x84\x6a\x50\x23\xcf\xf4\xa3\xc4\xa4\x44\x83\xa4\x08\x40\x28\x2c\xb0\xe3\x2a\x67\x48\x25\x18\x1e\x38\xd6\x2a\xc2\xb5\x12\x72\x09\x0f\xb7\x93\x8e\x5e\x89\x02\x85\x4e\x23\xb9\xe3\x00\x31\x0c\x06\xe4\x50\x91\xb8\x78\xf5\x2d\x20\x08\x2b\x6a\x42\x6d\x3c\x73\xea\x4a\xa6\x98\xd0\x2a\x75\x8b\x42\x05\x09\x83\xab\xdf\x82\xd1\x25\x84\x6b\x25\xf0\x19\x16\x9d\x47\xa1\xa8\x0f\xcf\xd4\x78\xc2\x52\x53\x1f\xe0\x0b\x6c\xd8\x8a\x1c\xad\x9d\xf8\x3c\xdb\xb0\xc2\x21\x53\x3b\xc1\xfe\xc0\xdb\xd1\x32\x2a\x31\xd5\xe8\x96\x66\xa8\x70\xc3\x54\x87\xc7\x5b\x8c\xba\x9d\x41\x76\xab\xc2\x62\xd4\xed\x8c\x92\x6b\x20\x16\x13\x9d\x87\xb6\xa5\x12\x25\x8e\x99\xce\xc3\xd7\x52\x89\x0c\x12\x25\x09\x15\x31\x5c\x09\x22\x45\xf6\x7b\x1d\x7c\x11\x40\x80\x58\xd5\xc8\x8b\x88\xf6\xc6\xca\x33\x27\x2f\x02\x16\x10\xd9\xb0\x15\xc5\x07\xbb\xda\x62\x57\x23\xcf\x9c\x9f\x8c\x29\x6f\x84\x53\xb1\x82\x76\x8e\x9b\x29\x86\x26\xb1\x1a\xb7\x6b\x29\x22\x69\x2b\x38\x82\x14\x78\x3b\xa4\x83\x95\x98\x57\xd2\x78\xa2\x61\xd5\x25\x2c\x84\xae\xa4\xf3\x04\xed\x13\xd2\xa6\x92\x94\x5d\x37\x28\x6e\xb4\xa1\x8a\xa4\xad\x44\xc7\x92\x04\x0b\x92\xb6\x6e\x30\xd8\xda\x71\x48\xda\xba\x81\x22\x6b\x29\x92\x10\x4d\xc0\xc7\xd2\xd4\x95\x74\x9e\x60\x38\xa9\x0f\x01\x14\x50\xa8\x07\x94\xc6\xe2\x76\x84\x6a\x05\xa8\x92\x24\x82\xb0\x46\x2a\x71\xe8\x74\xe8\x12\xb9\xbd\xf5\x0a\x16\xce\xb7\xc3\xe2\x52\xc9\xbc\x85\x78\x3e\x54\xc8\x58\x2a\x31\x52\x62\x3b\xa1\xa1\x8b\x35\xb0\x2c\x99\x5d\xdc\xa0\x8d\x6b\x82\x60\x44\x35\x36\x1a\x41\x4d\x60\x49\x03\x5a\x0a\xcd\x45\xa5\x51\xe7\x2a\x34\x47\x63\x85\x16\xc0\x7a\xa0\x9c\x02\x68\x0a\x20\x99\x2c\xbb\x73\x2d\x34\xe0\xd2\x78\x49\x2c\x23\xd6\x1a\x42\xb5\x01\x97\xc8\x28\x53\xc4\xbc\x02\xc1\x2e\x93\x5e\xdf\x40\x1d\x83\x72\xb2\x8c\xde\xd4\xd0\x19\x1b\x61\xd4\xcc\xc8\xe3\x6b\x09\x2d\xf1\x4c\x76\x71\x73\xdc\x6d\x68\x89\xce\x2f\xfa\x89\xe9\xd6\xb2\xd2\x86\xff\x5b\xa1\xc0\x73\x13\x5a\x16\x2c\xc4\xe7\xaa\xa1\x8f\x36\x21\x39\xd8\x3a\x84\xe3\x02\x71\x38\x93\x7e\xdf\xc8\x53\x6b\x04\xc0\x0b\x6b\xbf\x91\x6e\xd6\x1c\x77\x68\x14\xc0\x0e\x0d\xf6\x8d\x56\xc1\x98\x1c\xae\x84\x10\xa3\x01\xd3\xa8\x2c\xf3\x86\x9d\xdc\x40\x48\x54\x24\x44\x43\xf5\x6c\x2e\x0f\xad\x26\x5d\xc9\x04\x12\x54\xaf\x58\xfe\xe0\xbf\x42\x13\xf0\x04\x35\xa1\xe1\x34\x21\x6c\x68\x32\x0b\x09\x1b\x86\xe6\x42\xd2\x64\x16\x36\x68\xbf\x08\x22\x1a\x21\xbe\xd0\x60\xec\x6a\x00\x33\x2a\xc7\x5a\xc3\x06\x6b\xae\x7a\x1a\x01\xbf\xd0\x10\x99\x0d\x91\x59\x35\x81\x50\x6b\x35\x82\xea\xd5\xbd\x95\xa1\xc1\xa9\xd5\x5c\x48\x1a\xb5\x10\x42\x83\x34\xab\xb9\x92\x6a\x10\xaf\x84\x06\x29\x6f\x03\x6c\x55\x51\x67\x1b\x4a\x6a\x03\x01\x02\xf5\x52\x68\x70\x5b\xe1\x64\x33\x62\x82\xa1\x41\x63\xd5\xdc\xd3\x60\x4d\x1b\x02\x99\xd7\x90\x79\x0d\x55\xae\xa1\x8f\x36\x17\x7d\xd6\x38\x58\x1a\x7e\x9c\x06\x78\xed\xd1\x26\xc3\x8f\xd3\x80\x02\x3c\x5a\x36\xe8\xa1\x0d\x28\xdb\x83\xc9\xd1\xe0\x96\x6d\x26\x94\x8e\xae\x64\x85\xb8\x1e\x6a\x8f\x76\x1e\x2a\x67\x5b\x3c\x53\x5b\x07\x95\xb3\xb9\xca\x69\x0f\x87\x6a\x43\xe5\x04\xbf\x67\x4f\x57\x23\x8b\x41\xd0\x9d\xce\xdb\x21\xb1\x68\x9b\x67\x7a\x70\x35\x34\xd8\x26\xda\xe6\x99\x1c\xaa\x0d\x7a\x89\xb6\xc9\x70\xd7\xb7\xc3\x1e\xd1\x90\x8e\x8f\xd1\xcf\xad\x67\xfa\x02\x7b\xb4\x92\x61\x71\xc0\x31\x69\xcf\x55\x23\x2f\x3a\x7c\x3b\xba\x6d\xc3\x57\xd3\x40\x9e\x74\x74\xb1\x06\xa1\x42\x3b\x20\x7f\x38\x2a\x1b\xec\x08\x0d\xb0\x5c\xd7\x9a\x87\xea\xa0\xb9\xe6\x69\xd4\xb6\x0f\x0d\x4a\xac\x06\x9e\xa4\x73\x2a\x36\xdc\x55\x0d\x91\xd9\x59\xb4\x0f\xda\xe5\x03\x69\x40\x6f\x6a\x5c\x34\xf2\x76\x54\xf8\x87\x2c\x8e\x07\x48\x5a\xe7\x04\x7b\x48\xc9\x78\x3c\xff\xc2\x3a\x2a\xfc\x83\x95\xfe\xb8\x7a\x68\x03\x9d\xf1\x41\x68\x3d\x08\xad\x51\x75\x25\x2f\xf2\x7c\x00\xa3\x26\x74\x78\xc0\xf7\x3f\x42\x1a\x71\x82\x3d\x80\xf1\x1f\x72\xa5\x47\x57\xe3\x43\x63\xa7\x71\xd0\x38\x68\x04\x9a\x84\x23\xe6\xc1\x47\xf0\x64\x10\x51\x93\x2e\xe1\x30\x7a\x04\x5b\x42\xb3\x7e\xf0\x0d\x3d\xe5\x93\xa6\x4d\x23\xdf\x5e\x04\x77\x3a\x34\xf2\x4c\x12\x84\xc7\xd6\x95\x87\x46\xc0\x56\x9b\xb7\xe3\x45\x7a\xc0\xef\x11\x6f\x0c\x0f\x06\xf9\xe3\x39\xbf\x36\x2e\x5f\x84\xfc\x7c\xc0\xe8\x0d\x8e\xb5\x87\xa4\xdc\xc7\x55\x47\xa3\xf8\x42\x78\xf0\x37\x3d\x80\x76\x26\xfb\xe8\x41\x67\x7c\x9a\x70\x52\x6a\xe4\x99\x88\x4a\x4a\xd1\x84\x07\x51\xf9\x38\x4a\xc4\x26\x1a\xeb\x03\xe5\xe2\xf3\x00\xba\xe2\x04\x7b\x50\x24\x1f\x44\xe5\x6c\x74\x09\x51\xf9\xb8\xe9\x6e\xd4\x7c\x08\x0f\x8a\xe4\x83\x22\x39\x39\xc1\x1e\xac\xf4\xe7\x11\x04\x8b\x2e\x61\xa5\x3f\x88\xca\xc9\xe6\x7a\x50\x24\x1f\x14\x49\xaa\xb5\x86\x07\x01\xf8\x90\x40\x39\x35\xc8\x83\xa1\x43\xbf\x33\xd6\xfc\x33\xf8\xa2\x01\xa2\x2a\xf3\xcc\xc1\x74\x90\x05\x68\x68\xeb\xcf\xe4\x45\x6e\x82\x9b\x39\xd6\x38\x3c\x28\x68\x0f\x0a\x9a\x69\x25\x63\x1f\x3f\x2e\x9e\xcc\xae\xae\xe4\x8b\x4c\xf0\x2c\x5d\xc9\x17\x21\xac\x16\x5a\xdb\x83\xb0\x7a\x00\x2c\x2d\x8e\xb3\x07\x86\x9e\x07\xb9\xb4\xa2\xae\xa4\x9f\x20\x2e\x17\x5b\xfb\x81\x17\xe7\x71\xf1\x64\x8b\x93\xeb\xc1\xc3\xfb\x20\x97\x56\x51\x23\xcf\x04\x54\xbb\x38\xb9\x1e\xec\xe3\x07\xf0\x1b\xf0\xf5\xf0\xc0\x37\x23\x40\xf1\xd2\x3e\x42\x2e\x3d\x68\x6d\xab\xd3\x25\xe4\xd2\x03\x3e\x6e\x0d\x5d\xc9\x80\x00\xa5\x5a\x63\xfc\xa7\x42\xf1\x20\xc9\x1e\x24\xd9\xe2\x00\x7c\xb0\xa8\x1f\x94\xbf\x85\x0b\xf4\xc1\xa2\x16\x82\x79\x71\x00\x82\x60\x0e\x0f\xe2\x8d\x32\xe0\xe1\x41\xbc\x3d\xf0\xb5\x2c\x6d\x5c\x2c\xea\x07\x18\xee\xe2\xac\x03\xd6\x1c\x3a\xf8\x46\x60\xf3\xa1\xa3\xfc\x75\x80\xb7\x3b\xa8\xd1\xbb\xd4\x5d\xb3\x33\xa0\xf1\xa1\x93\xef\xd6\xdd\x5c\xb6\x5d\xd5\xf8\xd0\xe8\x03\x03\x34\x3e\x74\x04\x61\x47\xa5\xdb\x5e\x65\x2c\x74\x54\xba\x0e\xd2\x73\xa3\x61\x77\x9c\x82\xdd\xcd\x65\xdb\x78\x8f\x3b\xd2\xb1\x23\x1d\xf7\xa6\x4b\xb8\xd3\x3b\x8c\x11\x20\xeb\x43\x47\xe6\xf5\x2c\x80\x9c\x1a\x79\x3b\x30\x5c\x90\xf5\xa1\x23\xde\x3a\xe2\xed\x70\xa8\x76\xb8\x7c\x3b\xe2\xed\x54\xde\x8e\x2a\xd7\x51\xe5\x0e\xaa\x5c\xc7\xfa\xed\x58\xbf\xe7\x51\xe3\xa2\xf1\xd0\x98\x69\xe4\x45\x60\x20\xe5\xcb\xe8\x38\x21\x85\x0f\x3f\x9c\xc9\x1d\x99\xd7\x01\x2b\x1f\xce\xe4\x8e\x9d\xdc\xb1\x93\x0f\x26\x47\x47\xe6\x75\x64\xde\xc1\xfe\xec\xc4\xcd\x3a\xb0\xc5\xb3\x19\x64\xdc\x95\x1d\x9d\xf1\x20\x5c\x3b\x3e\x76\x40\x5b\x76\xd9\xa3\x80\xb6\x42\xc7\x78\xa6\x10\x63\xe8\x18\xcf\x1d\x9d\xf1\xb2\x1d\x3b\x3a\x63\x47\x67\x04\xe6\x1f\x40\x79\x85\x8e\x20\xbc\x55\x8d\x4c\x1c\xea\x21\xa0\xff\xd0\x71\xbc\x77\x57\xf3\x16\x75\xdf\x43\xc7\x24\xee\x9d\x04\x69\x2d\x06\xac\xdf\x4e\x36\x78\x98\x6a\xe4\xed\xa4\x76\x07\x0e\xab\x4e\x85\x84\x3e\x04\x38\x64\xe8\x30\x89\x81\xd6\x2f\x19\xf9\x1d\xe9\xd8\x95\x89\x6d\xba\x9d\x7e\x82\x38\x0b\xa6\xdb\x19\x64\x70\x3e\x81\xb3\xae\x4f\x5e\x34\x79\xd1\x56\x23\x2f\x22\xe7\x39\x6c\x46\x69\xb2\x6c\x00\xe3\x04\x4c\xb8\x3e\x19\x64\x32\x96\x83\x76\x1c\x25\x09\x3a\x20\x97\xa8\x45\x8b\xc4\xed\xe4\xf7\xca\xc8\xef\xe4\xf6\x0a\xef\x16\x09\x21\x75\xd4\xc3\x6e\x40\x1a\x93\x6e\xdf\x34\x0a\x3b\xc9\x17\x61\x3c\x0b\x04\x17\x39\x15\x3b\xdc\x6a\x7d\x09\x3b\xa9\x46\xde\x0e\xc0\x31\xa2\xd7\x77\x74\xc6\xee\x59\x3d\x4b\xee\x80\x8e\x6c\x16\x94\x2e\x72\x2a\x82\x97\x0b\x1d\x68\x0e\x75\x73\x03\xb0\xb9\xd0\x81\x81\x46\xad\x79\xc4\x70\x07\x2a\x13\xd1\xac\x3b\xea\x61\x3f\x02\x62\xd2\x25\x78\xb5\xfa\xe1\x33\xb5\xbc\x51\xfa\xc8\x90\x58\x54\x67\x0c\x1d\xa9\xd8\x2f\x48\x51\xb4\xcb\x8e\x9d\xdc\xaf\x00\x9c\x6a\xe4\x99\x17\x94\xa5\xd6\x3c\x7e\xc6\xfe\xe1\x97\xf2\xa1\x03\xbb\x17\x04\xda\x4b\xa8\xf0\xa4\x5b\x84\x01\x17\x14\xb4\x8c\x61\x38\x6a\x2b\x8c\x00\x92\x92\x8d\x30\x90\x9f\x03\x8c\x5a\x42\x91\x04\xe5\x17\x46\x04\x8f\xf9\xa8\xf1\xa1\x91\x7e\xe2\x49\x19\xf8\x19\x47\x04\x37\x4a\xd4\x75\xe0\x67\x1c\x20\x97\x12\x1b\x61\x20\x3f\x47\x02\xf1\x69\xba\xb2\xd1\xe8\x6b\x9e\x4c\x8e\x00\xaa\x30\x8c\x44\x3f\x91\x0c\x03\x3b\x79\x40\x02\x24\x17\xc3\x20\x9a\x39\xe0\xef\x49\x1c\xfe\x03\xf1\x3b\xb2\xc0\xa4\xba\x92\x17\xc1\xc7\x43\x01\xb4\x30\xc8\xe0\x1c\x10\xf0\x64\x46\x7e\x20\x93\x05\x66\x94\x8b\x61\x20\x93\x87\xcb\xe4\x95\x39\xe7\x07\xe6\xf5\x70\xd1\xbc\xb2\x46\x1e\x8f\xe4\x00\x73\x44\xae\x48\x18\x24\x30\x0e\x78\x6b\xf2\xa3\x46\xbe\xa8\x08\xca\xca\xdb\x51\x39\x07\xd0\x2a\x12\x41\xc2\x40\x26\x8f\xca\x33\x37\xf3\x0e\xe9\xcc\x70\x99\xbc\xf2\xd1\x95\x74\x1e\x74\x60\x66\x17\x83\xa8\x0c\xc3\x25\xed\xa2\x1a\x61\x18\x58\xe7\x03\x04\x19\xb9\x22\x61\xa0\x5d\x0e\x78\x53\x14\x92\x1b\x44\x33\x07\xe0\x5c\xf2\x41\x02\x19\x3c\x61\x00\xa2\x2b\x5f\x1a\xd6\x7f\x28\x14\x03\xdd\x71\x00\x0c\xab\x1a\x2d\x74\xc7\xe1\x82\x77\xd5\xac\x46\xbe\xac\x7f\x08\x28\x68\x64\x08\x91\xb8\x94\x85\x0c\x03\x8b\x7a\x40\xaf\x51\x51\x95\x06\xf1\xcf\x81\xc4\xad\xa8\xc8\x03\x89\x3b\x80\x9e\x55\x4f\xf6\x09\x83\x58\xd0\x18\xb0\x3d\x78\xce\x4f\x18\x38\x21\x87\xe8\x2f\x38\x54\x07\x4e\x48\xb2\x91\x56\x7d\xd4\xc8\xda\x17\xe2\x97\x43\x15\x88\x6a\x18\x88\xe1\xaa\x59\x45\xe2\x0e\xd1\x4a\x74\x35\x32\xd8\x53\xf0\x61\xba\x04\x26\x65\x00\xde\xab\xda\x25\xd4\x8b\x19\x06\x44\x18\x0d\x1b\xf4\x6b\x18\xc8\x66\x79\x13\x06\xb2\x79\x80\x71\xab\xb8\x98\x06\x06\xf9\x10\xde\x98\x33\x19\x48\x6c\x10\x16\xb6\x1e\x35\x32\xab\x60\xe5\x2b\x26\xf1\xc0\x5d\x39\x40\x56\x82\x4c\x0a\x03\x77\xe5\xd8\x8c\x27\x92\x6c\xe0\x99\x1c\x1b\xe6\x07\x4f\x6f\x0c\x03\x27\xe4\x00\xb1\xdd\x90\x64\x03\xe1\x3a\x10\xae\x8d\xd3\x7b\xc0\xbb\x38\x0e\x50\x61\x6d\x32\x24\xee\x70\x55\x77\x35\xce\x90\x41\x0c\x68\x1c\x5e\x94\x19\x79\x34\xd6\x71\xc0\x1d\x73\xf8\x0f\xc4\xf0\x40\x0c\x37\xc9\x3c\xdc\x95\x03\x31\xdc\xb4\x42\x88\x01\x0d\xd1\x0b\x62\x66\x0f\xc4\xf0\x40\x0c\x37\x36\xee\x24\x4a\x3c\x03\xb7\xa3\x61\x03\xf9\x0d\x13\x9c\x6c\x9b\x6a\x34\x1a\xb9\x1d\xd5\x78\xe2\x99\x14\x2a\xb8\x31\x9b\xa0\x82\xc3\x8c\x82\x42\x73\x25\x94\x0c\x13\x6c\x63\x43\x49\x99\xf0\x2b\xcc\x08\xdb\xd1\x56\x23\x2f\x02\x94\xdf\x8e\x6e\xdf\x34\x32\xc8\x48\x88\x89\x91\x3f\x13\x2f\xba\x6a\x2c\x34\x02\x62\x46\xb3\x9e\xe8\xb6\x13\x8c\xf7\x13\xd5\xb8\x68\x84\xe2\x06\x40\xcd\xc4\xf2\x9f\x10\xab\x3d\x59\x8d\x74\x9e\xcc\x87\x07\xa9\x33\x11\xae\x33\x83\xab\x2e\x6a\xa4\x9f\x80\x36\x1f\x67\xb2\x0e\x13\x91\x39\x11\x99\x64\x7e\x85\x89\x1a\x3b\xcb\x87\x28\x83\x46\x5f\x36\x13\x6c\xea\x83\xf9\x3a\xa9\x47\x31\x11\x99\x0f\x7a\xfd\x44\x64\x92\x73\xb7\x1e\x54\x39\x70\xd5\x61\x56\x31\x43\x35\x1a\x99\xa3\x0a\xc6\x1b\xfd\x6e\x62\xba\x4f\x00\xea\x0f\xa0\x92\x09\x54\x64\x36\xe1\xbf\xe9\x12\xa6\xfb\x24\xdb\xe0\x31\x35\xf2\x22\x51\x50\xa1\xca\x4d\xa0\x61\xb3\xf1\x45\xa8\x72\x13\xdf\xe5\x7c\xc0\x7f\xe3\x38\x98\xf8\x2e\xe7\x03\xb8\x3b\xaa\x91\x6f\x47\xa8\x76\xc7\x5d\x86\x89\xef\x72\x76\x58\xed\xd0\xda\x26\xbe\xcb\xd9\xa1\xf0\x4b\x6a\xe4\x99\x10\x16\x75\x84\xea\x44\x8d\x9d\xa8\xb1\x5d\x73\x84\x9b\x72\x0e\x31\xe5\xf1\x76\x34\xd6\x0f\xfa\xbc\xab\x91\x89\x23\x2b\xa2\x77\xba\x84\xc6\xfa\x0f\x16\xdd\xf7\xfb\x24\x96\x3e\xa1\xdf\xe9\x1a\x25\xf4\xd0\x89\x1e\xda\xb1\xa8\x26\xbe\xcb\x09\xf4\xba\x6b\x79\x23\x15\x27\x52\x91\xdc\xb9\x30\x09\xe2\x4c\xa4\xe2\xd0\x4a\x46\x2a\x4e\x13\x86\x5d\x57\xf2\x99\xe8\xa1\x24\xdb\x85\x09\x09\xf0\x5c\xe0\xcd\x9b\x1a\xe9\x12\x52\x91\xf4\xba\x30\x91\x8a\x64\x5e\xae\x81\xf5\x33\x61\xcd\x9d\x68\x97\x43\xbb\x18\x37\xe5\x74\xe1\xb8\x06\x71\xba\x89\xca\x39\x11\x95\x63\xeb\x4a\x56\x08\x79\x1b\x63\x33\x74\x70\xd8\xce\x2d\x78\xfc\xa0\x91\xce\x83\xd1\x1f\x12\x02\xb8\x03\xe6\xe1\x45\x47\x8d\xcc\x11\xa2\x72\x00\x82\x98\x44\x76\xe6\xe1\x8b\x24\x04\xc0\xf8\xcc\x23\x04\xbd\x1a\x59\x60\xc8\xcf\x89\x7f\x64\x22\x2a\x27\xa2\x72\x6a\x85\x10\x2e\x9f\x17\x58\x7d\x55\x23\x72\x89\x6c\x93\x89\x6f\xdd\x28\x22\x64\xd0\x9b\x92\xb3\x17\x0c\xe3\xde\xc8\x9c\x98\x6b\xfd\xa7\x42\x61\x08\x57\x43\xb8\xca\xc5\x64\x44\xc8\x2d\x02\xe0\x47\x3e\x19\x9a\x2b\x99\xb0\x8b\x84\xbe\x60\x88\x4c\x43\x64\x5a\x55\xa3\x7f\xae\x81\xc0\x37\xe4\xbd\x25\x6e\x4f\x80\xfb\x59\x3e\x86\x3e\x6a\x2e\x0f\xd7\x8a\x6a\xdc\x34\x2a\x45\x20\xd2\xc8\x33\x91\x8e\x14\x2b\x0f\x86\x74\xb4\xac\xf4\x01\x5e\x84\x8f\xc0\xa0\x7f\x5c\xb8\xc2\xc8\xd1\x0d\x86\x3e\xba\xd0\x86\x0c\x7d\xd4\xd0\x47\x17\x06\x0f\xf9\xbb\xc1\xe0\x66\x5c\xe8\x38\x86\x3b\xc0\x20\x48\x24\x49\x30\x18\xde\x4e\x83\xed\x50\xb8\x1c\xa3\xcc\x8f\xa1\x7a\x42\x7f\x10\x8c\x08\xb9\xb9\x06\xba\x16\xfa\x88\x21\x47\x0d\x39\x4a\x81\xf0\x60\x04\xc3\x8d\x64\x1e\xf2\x08\x83\xe1\xd8\xb4\x4f\xd6\x02\x8d\xd4\x83\x31\x77\x50\x2e\xe1\x5c\x8c\x10\xb7\x91\x84\x45\xaa\x61\x30\xaa\xb0\x18\xc9\x19\x9b\x43\xd5\x90\x64\xd6\x95\xa7\xc0\x33\x11\x5a\x86\xd0\x3a\x9a\x77\x94\x3e\x53\xf6\x41\x56\x23\x2f\x42\x68\x1d\xcd\x3b\x42\xcb\xc4\x5e\xa6\x75\x8a\xd0\x32\xcc\x6c\xa1\x42\x0c\xfd\xce\xd0\xef\x0e\xe7\x92\x21\xc9\x0c\x49\x26\x00\x88\x79\xc8\x39\x18\xac\x60\x87\xd3\x86\x9c\x97\xa0\x64\x97\x33\xd5\x48\xe7\x51\xfa\x0e\x07\x8b\x21\xde\x0c\xf1\x76\x38\x58\x48\x7d\x09\x46\x76\xd3\xc1\x74\x37\xc4\x9b\x21\xde\x0e\xa6\x91\x61\x90\x1b\x06\xf9\xb9\xba\x92\xb5\x84\x7a\x78\x70\x53\x9b\xe9\xed\x3e\x74\x97\xd3\xc6\x10\x84\x86\x20\xbc\x51\x8d\x3c\x13\x41\x28\xa4\x89\xc1\x4a\x6e\x8b\xb4\x0a\xec\x79\x43\x3d\x34\xb2\xd3\xae\xd6\x27\x7e\x51\xdb\x4a\xce\x50\x23\x9d\x47\x10\x5e\x0e\x16\x43\xe9\x33\xcc\x6c\xa1\x93\x0d\x49\x66\x64\x68\x09\x00\x62\xe8\x77\x76\x49\xba\xc0\xa5\x6c\xc4\x56\xcc\xc5\xd4\x16\xd6\xc3\x40\x01\x9a\x8b\xa2\x1d\x58\x75\x0b\xe3\x79\x05\x6e\x7f\xd4\x98\x69\x24\xfd\x83\x55\xb7\xd0\xef\x96\xeb\x77\x9b\xa2\xf1\x61\x21\x82\x56\xf8\x50\xdc\xd1\x78\x68\xbc\x34\xfa\xb2\x59\x44\x9e\x57\xe4\x45\xc8\xfb\x45\xe4\x79\x45\x5e\xe4\xcc\xfa\x61\xa1\xf4\x91\xba\xb4\x03\xa2\x7d\xa1\xf4\x2d\x57\xfa\x76\x38\x6a\xe4\xed\x91\x2f\x42\xb4\x2f\x6c\xef\x95\xc8\x1f\x61\xcd\xaf\xc4\x33\x49\x5f\x10\xb0\x62\x21\xd6\x96\xf2\x47\x70\x3e\x2f\x37\xba\xc3\x72\xe9\xb6\x23\xa2\x7d\x81\xf1\x59\x2e\xc8\x76\x44\xb4\x2f\x84\xd5\x22\x09\x82\x9c\xd4\xb0\x10\x56\x0b\x72\x5a\x78\xfd\xc3\x82\xd8\x67\xb9\x46\xb7\xc9\x3b\x0d\x0b\x55\x6e\x39\x2c\x67\x27\xd4\xc3\x85\xb4\x59\x24\x8e\x90\x4d\x1a\x16\xd2\x66\xb9\xb4\xd9\xc2\x3b\x2c\x5c\x8a\x8b\xa4\x1c\xb2\x49\xc3\xc2\xa5\xb8\x1a\x79\x2e\x68\x58\x0b\x11\xb4\x9a\x52\x5a\x74\x25\xfd\x74\x5d\x6c\x0b\xc5\xb0\xd0\xc5\x16\xfc\x9f\x64\xa1\x86\x45\x18\x65\x3d\xca\x81\x51\x23\xcf\x74\x61\xb5\xe5\x38\x20\x85\x2c\x2c\x32\x4d\xa8\x37\x1d\x16\x61\x94\xf5\x90\xee\x82\xcb\x66\xa1\xa0\xad\xce\x33\x31\x85\x17\x62\x6d\x75\xa5\xc9\xa8\x91\x6f\x77\xe3\x77\x67\x4e\x84\x85\xf3\x71\xb9\x29\xbc\x33\xcb\x7b\xa1\xca\xad\x0e\xb7\xa2\x56\x32\xce\xc7\xe5\xca\xdb\xce\x5d\x8d\x8c\x12\xf9\x1c\x19\x67\xee\xc2\x14\x5e\x83\xb7\x73\x4c\x2c\xa4\xe2\x1a\xe4\xf8\x70\x4c\x2c\x04\xe0\x9a\x3c\x13\xe1\xbf\xf0\x33\x2e\x32\x8c\xb2\x06\x19\x01\xb8\x48\x62\xc9\x5a\xb4\x08\xc0\x35\xe9\x27\x5a\xdb\x42\x58\x2d\x52\x45\x0a\xc7\xee\x22\x49\x60\x19\xb9\x3a\x0f\xfd\x24\x5e\xb3\x16\x29\x3b\xe8\x62\x0b\xc1\xb2\xb6\x32\x77\xe8\x12\x81\xe0\xe5\xf2\x65\x7b\xc6\xef\x7f\x28\x14\x0b\xf5\x6b\xb9\xfa\xb5\xe5\x4d\x58\x68\x5a\x6b\x5f\x31\x54\x7a\x23\xc0\xc4\x45\xc2\x4a\x6d\x6a\x64\xae\x4e\x17\x33\x23\x8d\x2c\x8a\xa3\x74\x20\x35\xb2\x28\x0e\xcf\xc4\x38\x59\x18\xa5\xcb\x5d\x84\xbb\x6a\x08\xf1\x0d\xae\xcb\x33\xb7\x1a\x79\x26\x49\x3e\xa4\xfe\x86\x8d\xd0\xda\x08\xad\xc6\x3a\xdd\x08\xad\x8d\xd0\x12\x64\x60\xe3\x06\xdc\x41\x6c\xf7\xbe\xef\x37\xf2\x69\x23\x9f\x48\xfd\x0d\x1b\x51\xb4\xa3\x32\x8d\xd4\x38\x69\xe4\x76\x44\xfb\x46\xea\x6c\xa4\x0e\xf9\xc0\x61\x23\x75\x36\x52\x87\x44\xe0\xb0\x71\xd9\x6d\x77\xd9\x6d\xb2\x7c\xc3\x06\xf0\xb7\x5d\xab\xd9\x8d\x45\xb1\x89\xe8\xee\x42\x56\x10\xba\xc3\x86\x3e\x6c\xbb\x48\xd9\x02\x2c\x6c\x3c\x69\x9b\x9c\x2b\x32\x80\xc3\xc6\x02\xdc\x55\xc9\x48\x74\x89\x14\x80\x8d\x2c\x79\x3c\x4f\x33\x6c\x02\x19\xbb\x2a\x51\x89\x2b\x51\x67\xb6\x8b\x94\x2d\x53\x13\x1e\x92\xb0\x1b\xc9\x4f\xac\xbe\x8d\xb1\xb7\xc9\x3e\x7b\xd8\x3a\x1b\xff\xd8\xf6\xf8\x42\x7b\x8c\x17\xe1\xbb\x26\x4b\x74\x14\x0c\xdd\xcb\x51\x79\xfd\xa8\xec\xdd\x53\x93\xc2\xc5\x51\x7c\xfd\x20\x6b\x8f\xe7\x6e\xc4\xe0\xd3\x18\x83\xcf\xdf\x33\x8a\x97\xf6\x0f\x3e\x1d\x31\xf8\x74\x8c\x49\x1d\xfd\xe4\x9f\x12\x93\xbb\x01\xeb\xf5\x65\x13\x93\xef\xd1\x48\x16\x60\x63\x93\x45\xaa\x44\x44\xd0\xfe\xcf\xf6\xb4\xd9\x08\xd1\x7f\x14\xbb\x7f\x75\x0f\x6a\x84\x98\x38\xc2\x46\xdc\xbb\x2b\x14\x11\xfa\xde\x08\x67\xef\xd3\xbc\x3e\x7c\xcc\xbe\x03\x62\x76\x23\xa3\x82\xbb\x8e\xd0\x5d\x46\x38\x2e\x3b\x30\xbe\x08\x0c\x3e\xc2\xa9\xd6\xcc\x13\x8f\x63\xf5\x8f\x8e\xd5\x4f\xef\xd1\x3c\xc8\x18\x1f\xb7\x9e\xe2\xe3\x9b\xfa\x99\x9e\xd4\x10\xbb\xcf\x6d\x24\x64\x35\x70\x70\xc4\xee\x92\x25\x76\xd7\xa9\xea\xf1\x89\x8b\x04\x32\x62\x77\x9f\x59\x03\x01\x19\x89\x59\x44\x62\x16\x6d\xb4\x48\xe3\xf5\x46\x17\x30\x4f\x76\xb4\x7f\x44\x5d\x8b\xe8\x69\x2d\xba\x10\x88\xdb\x2d\xb2\xb8\x5d\x40\x8c\xea\x39\x3b\xf1\xf8\x14\xc7\xe3\x53\xfc\x74\xcf\xf2\x88\xe7\xd0\xe8\xe3\xd2\x9a\x9f\xb4\xf1\xfa\xc1\x12\xaf\x1f\x2c\x4f\xb4\x41\x63\xa7\x71\xbc\xe4\x68\x91\xcc\xda\x48\x4a\xad\xf2\xbf\xe2\x65\xe4\xaf\x9f\x05\xca\xff\x8a\xd7\xa5\x7f\xbc\xae\x0c\xdf\xab\xc6\xc1\x95\x2e\xda\x2f\xc4\x19\xf1\xba\x4c\x8f\xd7\x75\xdb\x7b\x1d\x1e\x17\xaf\x9b\xe7\xf1\xaa\x34\x2d\x05\xdc\x42\x20\x17\xcd\xed\xb3\x1c\x60\x29\x0b\x10\xa0\xb2\x22\x73\x80\x6f\x8a\x85\x99\x42\xf8\xd6\xa5\x14\xa8\x6b\x16\xc2\x87\xad\xd5\x1b\xa3\xf2\xdb\xda\x8f\x46\x6e\x8f\xdc\x0e\x6f\x14\xeb\x3a\x05\xf7\x61\xfd\xd3\x48\x55\xb1\x40\x7d\xd7\x4f\x3f\x29\x10\x16\xf0\x45\x25\x08\x95\x02\xe5\x5a\x83\xa8\x1a\x29\xf4\x15\x48\x43\x09\xaa\xfe\xe5\x8b\x36\x05\xd2\x8f\x82\x8a\x78\xa9\x0c\x34\xe5\xb7\x42\x19\xdf\xf8\xe8\x82\x2f\xb7\x14\x28\x72\xc5\x74\xa4\x50\x79\x58\x5d\xdf\x58\xed\x82\xcb\x90\x14\xfe\x29\x24\x45\x23\x09\x7f\xad\x7c\xff\xa2\xc6\x80\x34\x06\x19\xf2\xb7\x40\xfd\xa5\x40\x51\xc2\x07\x3a\xae\xb0\x78\xbb\x2f\xbe\x24\x56\x27\xc8\x62\x52\x8c\xe4\xd3\xa9\x18\x6e\x84\xdc\x96\xb2\x6e\x28\x53\x29\x26\x58\x6d\xdd\xe1\xe7\x25\xa4\xbc\x11\x7e\x3f\xd7\xfd\x52\x7a\x78\x26\xa5\xd9\xa2\x6a\xb2\x41\x42\x15\xa9\x55\x16\xc9\xb8\x04\x3c\x98\xa2\xaa\x38\xcd\xe7\xdb\xbc\x93\xc0\x9c\x22\xe9\x78\xcf\xa3\xb2\x76\xde\xa5\x14\xe9\x52\xa2\x40\x54\xa4\x2f\xac\x89\x04\x11\x50\x8a\x24\x11\xb2\x26\xd2\x50\xb5\x38\x7e\xa9\x9f\xf0\x31\x25\x97\xe5\x09\x59\x97\x8a\xca\x5a\x35\x65\x40\xf6\x37\x93\xd1\xd3\x14\xbd\x91\x74\xd1\xc1\x8b\x16\x7d\x21\xeb\x30\xc2\xdc\xa4\x4c\xa3\xec\x61\xef\x4f\xad\xb2\xec\xf6\x47\x42\xac\xa5\xf8\x65\x94\xfc\x6f\x85\x22\x91\xc9\x93\x48\xd3\xc9\xaa\x4a\x4c\x9a\x4e\x22\x31\x27\x07\x78\xf7\x0a\xfd\x2d\xea\x2f\xec\xc4\x24\xd8\x24\x32\x6b\xe6\xfa\x30\x1e\x72\xa5\xf2\x6c\xa0\x10\x24\xcf\x26\x91\x59\x33\x41\xb1\x24\x52\x6a\xd2\x27\xa5\x86\xe2\x81\xa4\xd4\xa4\x4f\x4a\x8d\x18\x16\x3d\xfc\x92\xc8\xac\x99\x8b\x69\x29\xe4\x8b\x16\x91\x90\x67\xde\x3e\xe8\xbc\x52\x6a\xe0\xea\x2a\x83\xdb\x95\x52\x93\xe1\x7e\xa4\x5c\x58\x99\xbc\x1d\x22\xa8\x32\xb9\x9d\x44\x99\x55\xc4\xd3\xd8\x69\xe4\xed\x90\x06\x92\x19\x93\xca\xe4\x8b\x2a\xac\x8d\xe4\xa0\x92\xd3\x32\x97\x48\x3b\x99\xb9\xb2\x60\x58\x84\x30\xac\xb8\xdd\x9a\x48\x74\x99\x5f\xea\xba\x37\x32\x9d\x10\x04\xae\x87\x51\x22\x39\x53\x19\x2e\xcb\x75\xb1\x54\xd6\xf9\x64\xc4\x79\x23\x2f\xda\xbc\x88\xb4\x97\x35\xf8\xa2\xcd\xb7\x6f\x9e\xc9\x3a\x2d\x4a\xa8\x23\x99\x65\xc1\x72\x47\x32\x4b\x52\x32\xcb\xa2\x06\x64\x39\x4c\x31\x79\x2b\x0b\x6a\xab\x72\xd8\x5d\x87\xdc\x32\x08\xbc\xc8\x62\x49\xa4\xaf\xcc\x05\xdf\x58\xb9\x8c\xe7\xe5\x99\x8b\xb7\x5f\x9e\x79\x19\xe4\xc5\xd0\x5d\x06\x99\x14\x95\x05\xf1\x17\x29\x2a\x89\xfc\x93\xb9\x60\x9d\xab\x48\x71\x65\xa3\x2c\xd8\xbd\xc8\x46\x49\xca\x46\x59\xf0\xc5\x55\x76\x73\x85\x25\xf2\x4b\xa9\x75\x6e\xcb\x4c\x23\x6f\x77\x17\x43\x22\x45\x25\x29\x45\x65\x41\xc7\x56\x23\x69\x9c\x91\x24\x26\x44\x26\x09\x2b\x49\x29\x2a\x3b\x70\x3b\x15\x26\xab\xef\xfb\xb9\xe1\xed\xab\x14\x92\xac\x89\xd4\xa4\x08\x07\x67\x52\x66\x29\x45\x3b\xa0\x21\xad\x94\x87\x54\xe2\xc9\x66\xcd\x93\xae\x9f\xc8\x3f\x99\x1b\x1e\x3d\xd2\x50\x12\xa9\x26\x73\xc3\x23\x4a\xc6\x49\xaa\x85\x2e\x65\x51\x71\xf2\x99\x90\x46\x6e\xf8\x32\xab\x6a\x37\x92\xea\xb7\xd9\x08\x95\x92\x8a\xb5\x92\xd5\x05\x07\x1a\x19\x27\xa9\x56\xb2\xa5\x28\xde\x59\x91\x64\x24\x9e\xcc\xcd\x46\xa8\xc8\xb5\xda\x78\x3b\x1b\xa1\x36\x32\x75\x1b\xe9\x63\x10\xfd\xc1\x1c\x95\x2a\x09\x7c\xb0\x80\xa4\x4a\xce\x39\x39\x26\x73\x3f\xbc\x88\xca\x81\xe4\x98\xcc\xfd\x30\xc8\x0f\x9d\x7f\x78\x3b\x32\x8f\x74\x92\x44\x3a\xc9\xdc\x48\xb0\xea\x62\x26\xd5\x47\x89\x66\x7c\x66\xe7\x99\xc8\x90\xcd\xee\xa8\x9d\xdb\x07\xe3\x09\xbf\x6a\xa5\xc8\x20\xd9\x1a\x73\x53\x7b\xa1\x7e\xea\xe8\x72\x3b\xf4\x84\xa4\x69\xa4\x3a\x79\x3b\x6b\x9e\xa4\x8d\x54\x27\x6f\x67\xcd\x57\x8a\x05\x56\x77\xfb\xcf\xcd\x9a\x27\x69\x23\x55\x25\xc4\x6d\x46\x09\x79\x4f\x9a\xc6\xdc\x70\xa8\x93\xa6\x91\xaa\x12\xe2\x0e\x9d\x47\x5c\x90\x59\x31\xb7\xd6\xfc\x66\xd9\xb0\xdf\x21\x49\x49\xe4\x59\x24\xf2\x2c\xe6\xbe\x3c\x93\x13\xba\xc2\x26\x7b\x82\xb8\x57\x99\xf7\x43\xaa\x97\x28\x5f\x49\xb5\xad\x4a\x1f\x8b\xb0\xa6\x52\x55\x96\xf4\x87\x79\x58\x9f\x4d\x2c\xf4\x4a\x1f\x43\x26\x93\x0c\x91\x5a\x20\xc9\x2e\xeb\x76\xa3\x91\x67\x66\xb1\xb4\xba\xb8\x68\x51\xf9\x74\x0f\x8d\xe2\xb2\xe7\x76\x96\x62\x43\xed\x6a\x91\xdb\xe1\xc6\x6c\xe8\x0e\x0d\xbe\xda\x03\xd9\x24\x99\x0e\x89\x4c\x87\x79\x38\xbd\x1b\x45\x60\xa1\x9a\x98\x50\xc2\x24\xd2\x1f\x52\x63\x17\x9f\xb6\x69\xe4\x45\x99\xbc\x3f\xd6\x27\xfc\x61\xa9\xb1\x61\xcf\x23\xe2\xd8\x41\x23\x69\x83\x30\x04\xb6\x2c\x5e\x00\xd2\xf1\x58\x8a\xa4\x0c\xa4\x46\xd2\xea\xa1\xb2\x29\x99\x03\xa9\x71\x6e\x1e\x96\x0d\xa4\x62\xa9\xb1\x92\x0f\xfc\xb8\x24\x02\x24\x32\x00\xe6\x41\xf1\x21\x11\x20\x01\xe1\x9f\x87\x65\xd3\x28\x73\x0d\xa0\x7f\x1e\x68\x80\x1b\x95\xac\xc1\xee\xcf\x03\x99\x66\x43\x95\x03\xc2\x3f\xcf\xe5\xed\xd4\xd0\x6c\x83\xa4\xc5\xfb\x9f\xa0\xcc\xd4\xdc\x23\x9d\x1a\xd9\xa7\x87\x85\x06\xda\x3f\xb5\x49\x5a\x1e\xc5\x73\x61\xe4\x48\x8d\x04\xd3\xcb\x42\x6b\x10\x3b\x34\x5f\xd8\xf3\x46\xf1\xe5\x32\xff\x8b\xb4\x3c\x64\x5e\x5b\x4c\xcb\x26\xd9\x4e\x6b\x8a\xb3\xae\x91\xe2\x79\xc5\x03\xac\xba\xd0\xbe\xda\xe7\x45\xbc\x01\xad\x4f\xed\xf0\x4c\xad\x29\x14\xa7\x76\x48\x49\x14\x1d\x30\x15\x18\x1a\x6b\x1f\xc2\x9e\xf4\xb0\xf6\xc1\xb8\xcf\x8b\x7c\x02\xea\x9e\x1e\xd6\xfe\x7d\x20\xca\x65\xed\x3f\x1c\x56\x17\xfe\xda\x87\xb5\x0f\x0c\x7e\x5e\x2a\x0d\x3f\x6e\x78\xa6\x87\xb5\x7f\x3b\xbc\xbe\xe8\x9c\x60\xe3\xe7\xa5\x02\xeb\xc3\x61\xf5\x40\xd2\x7c\x51\x13\x1f\xce\xa5\x47\xc9\x8b\x03\xea\x5f\x96\x24\x90\xf5\x79\xa1\xa2\x04\xb2\x9e\x9e\xcc\xed\xa6\x2b\xb9\xbd\x90\x10\xc9\x92\x04\x9d\x9e\x40\xa7\xcf\x0b\x21\xac\x88\x4e\x80\x9e\xcf\xbb\xe9\x3c\xfa\x28\x80\xf2\x79\x59\x7d\xe0\xca\xd3\xc3\xc9\x70\x0f\x6f\xc7\xba\x78\x1a\x9f\x09\xfb\x34\xf0\xf2\xf4\x34\x3e\x93\xd5\x07\xbc\x3c\x3d\xd0\x2c\x5f\x48\x58\x41\x92\x27\x21\xc9\x45\xb2\x0d\x92\x3c\x3d\xca\x3e\x44\xe5\x04\x34\x9e\x04\x1a\x0f\x81\x2e\x71\x5c\x80\x1d\xb7\xc0\x02\x03\x42\x9e\x84\x0f\x0f\x88\xb7\x47\x75\x67\xc9\x85\x09\x28\xa7\x0f\x65\xe1\x1f\xb8\x7b\x55\xcd\xe3\x61\x25\x3f\x93\x6c\x4e\x98\xb0\xa1\x6e\x49\x8f\xea\x99\x40\x3b\xfd\x50\xeb\x15\x44\xb8\x05\xaa\x41\x03\x0c\x4f\xf8\x0f\x2c\xb0\xea\x70\x23\x24\x30\xd9\x06\x1d\x4c\x02\x9a\x9d\x1e\x92\x44\x82\xd6\x12\xa2\x1d\xf8\xb5\x05\xad\x25\xd7\xe1\xd2\x43\xea\x47\xd0\xb2\x51\x9d\x91\x43\xe6\xa5\x56\x08\xaa\x1c\x10\x69\x0b\x14\xc5\x06\x14\x9d\x40\x43\x5b\xc0\x84\x03\x14\x9d\x1e\xb2\xe5\x82\xf1\xed\x97\x6f\x87\x43\x34\xb0\x96\x3a\x1b\x41\x30\xe8\x00\x7b\x75\x67\x23\x74\x18\x45\xa1\x9b\x4a\xdd\xb7\x45\xea\x41\xc9\xa0\x95\x46\xef\x12\x10\x69\x0b\x1e\x4f\x4e\x20\xa5\x13\x10\x69\x0b\x1c\x80\x20\xa5\x53\xcf\x3c\xf3\x88\x62\xda\x68\x24\x75\x92\x79\x07\xb2\x9c\x00\x29\x5b\xc4\x24\x06\xab\x9c\x3a\x84\xab\x91\x29\xee\xb0\x3d\x00\x52\x36\x70\xa2\x09\xac\x72\xea\x85\x67\x32\xef\x60\x95\x13\xce\x1d\x8b\x89\x17\x61\x91\x75\xf2\x2c\x62\x16\x97\xf5\xa2\x91\xdb\x21\x25\xee\x95\xdb\xc1\x1c\xc7\xc2\xb7\x63\x90\x83\x32\xb6\x08\xb9\x37\x60\xe3\x04\xca\xd8\x22\x9c\xbf\x80\x8d\x13\x28\x63\x8b\x90\x7b\x77\x34\x2c\x50\xc6\x16\xab\x6e\xe7\xdb\x7d\x93\x58\xc4\x28\x01\x73\x9c\xa0\x8d\xb4\xd8\x18\xcf\xce\xb7\x93\x13\x11\x91\x60\x40\x88\x53\xef\x74\x1e\x67\x04\x10\xe2\xd4\x95\x32\x8b\x2e\x06\x3e\x38\x75\xf2\xbf\x22\xec\xc7\x00\x83\x53\x57\x76\x2c\xf6\x07\xc0\xe0\x04\x15\xa5\xc5\x41\x3f\xa9\xca\x0c\xc0\xd7\x22\xeb\xb3\xa3\x61\x75\x92\x1a\x22\x9c\xcd\x00\x67\x13\x50\x59\x53\x7d\xe9\x8e\xf5\xd3\x49\x45\x55\x4d\xe8\xce\x89\xd0\xd9\x32\x51\x0b\x0c\xeb\x07\x8c\xac\x45\xf8\x8e\x3b\x5b\xa6\x93\xaa\x10\x11\x56\x1d\x8b\xba\x1f\x25\xd7\xf2\x22\x8e\x09\xf0\xb3\x16\x2f\x2f\x72\x7f\x68\x02\x23\x6b\xf1\x8a\x7d\x5c\x57\x92\x9f\x4a\xbd\x77\x80\xb3\x09\xe0\xac\xa9\x94\x3c\x6c\x97\x09\xe0\xac\x25\x16\x2d\xc0\xd9\x34\xc8\x31\x80\x2a\x35\x81\x98\x4d\xc3\x8f\x10\x4b\x50\x45\x0f\xaa\xf1\x03\x72\xb5\x84\x01\x31\x70\xaf\x0c\x52\x3c\x13\x47\x24\x78\xd6\x04\x4e\xd4\x12\x16\x00\x38\xd1\x34\x20\x60\x87\x3f\x35\x81\x13\x4d\x03\xec\x7e\xaa\xba\xf2\xa1\xd1\xa7\x23\xb1\x6c\x06\x1b\x01\xbc\xa7\xc1\xb5\x94\x80\x7d\xa6\xc1\x9a\x97\xcb\x66\xb0\xe6\x87\x8a\xee\x3d\xfb\x3f\x15\x8a\xc1\xc9\x00\x0a\xd4\x60\x67\x4a\x83\x0d\x31\x80\xd6\xcb\x6d\x31\x9a\x9e\xcd\x10\x0e\x31\xb7\x33\x84\x70\x0e\xcb\x4b\x03\x5e\x34\x0d\x8e\x8b\x04\xbf\x3d\x40\xd1\x34\x1e\xa5\x22\x43\xcb\xce\xc9\x00\x24\xd4\x12\x26\xf1\xc0\x43\x01\x32\xd4\x12\x26\x31\x00\xd1\x04\x52\xd3\x12\x95\xc5\x41\x6a\x26\x90\x9a\x06\x59\x5d\x1a\x28\x55\x00\x36\x2d\xb1\x78\x41\x6a\x26\x40\x99\x96\xb6\x28\xe2\x79\x26\x59\x92\x09\x96\x6e\x40\x99\x09\x50\xa6\x25\x54\xba\x81\xde\x34\xa6\x92\x96\x59\x29\x98\x1c\x80\x32\x2d\x89\xf4\x9e\x52\xe4\x70\x91\x1a\x8c\x79\x09\x2e\xd2\x04\x36\xd3\x32\xe7\xe7\xe0\x5c\x1a\x64\x23\x65\xd6\x29\x48\xcd\x04\x28\xd3\xb2\xa8\xf3\xb1\x43\xc0\x20\x5a\xc6\xa6\x1d\x90\x57\x8d\xab\xf4\x66\xbf\x7d\x62\xcf\x03\x4c\xb4\x8c\x77\x0e\x44\x62\x9a\x9c\x0c\x19\xe2\x70\x80\x89\x69\x2a\x65\x1a\xa7\xc9\xe4\x64\x98\x4a\x99\xc6\x69\x02\x4c\x31\x81\x41\xb4\x4c\xf9\x8c\xc9\xc9\x30\x3f\x89\xd0\x90\xd7\xa3\x22\xcd\x4f\x22\x34\x6c\xf7\xd8\x0c\x93\xac\x19\x88\xad\x12\x70\xc3\x34\x13\xdf\xce\xb2\x99\xf8\x6f\x27\x59\x33\x19\xa7\x09\x20\xc2\x34\x33\x43\x87\x7c\x9a\xb0\x4f\x81\x02\x34\x58\x8f\x12\x28\xc0\x34\x2b\x6f\x5f\xe2\xd3\xe7\xed\xae\x3e\x59\xc6\x2c\x04\x13\x98\x00\x03\x5a\x46\x92\x01\xff\x4b\x93\xfd\x94\x59\x0c\xa0\x00\x13\xb8\x3f\x83\x5e\x38\x4d\xce\x10\x50\x80\x96\x31\x0b\x41\x01\xa6\x49\x0a\x72\x66\xd9\x00\xe3\x4b\x13\xde\x84\x8c\xb6\x3e\x5d\xfa\xa7\x09\x41\x7a\x41\x45\x02\x5d\x97\x26\xf2\xbe\xe0\xcb\x98\xb8\xd5\x00\xd9\x59\x61\xde\xc1\xda\x25\x28\x5e\xad\x24\xdd\xce\xb7\x43\xef\x5d\x28\x94\x32\x27\x57\x92\xd9\x56\x90\x4f\xe0\xdb\x12\xf8\x36\x2b\x55\xf5\x02\x78\xd1\xe2\xf6\xaa\x2b\x75\x3b\x2f\xd2\x02\xdb\x2c\x06\x94\xa9\xa2\xb2\x08\x28\x53\x20\xcc\xac\x60\xd7\x81\x30\x4b\xc0\xc7\x0c\x12\xc6\x34\xf1\x61\xcd\xab\x46\x2a\x04\x20\x86\x41\x83\x59\x19\x6a\x2c\x34\x92\x8f\x8e\xe3\xc0\x50\x67\x00\x7c\x59\xc1\x71\x60\x2c\x5a\x63\xd1\x16\x55\x1d\x60\xd1\x82\xfb\xb2\xc2\x0a\x31\xfc\x4d\x40\xbc\xac\xa0\xad\x83\xf4\x4a\x46\xce\x6b\x41\x31\x37\x5f\xad\xc9\x10\xed\x05\x5b\xd1\x10\xed\x00\xbe\xac\xb0\x96\x00\x7c\x25\x23\x51\xbf\xb0\x96\x40\x7a\x25\xb0\x5d\x56\x88\x44\x80\xed\x4a\x46\xfe\x57\x61\x81\x19\x06\x04\x80\x2f\x2b\x47\xb7\xfb\x52\x04\xdb\x65\x85\x0a\x16\x80\xba\x92\xa1\x4c\x15\xf4\x7a\x43\x99\x32\x96\x22\x84\xd7\xc9\x58\x8a\x20\xaf\x0c\x1a\xcb\x04\x00\x2b\xd9\x27\x17\x5f\x57\x76\x1a\xc9\x47\x67\x81\x01\xce\x4a\xf6\x90\xca\xef\x24\x7e\xc9\xf0\x44\x9b\x32\xec\xf1\x3b\x00\xd5\x4a\xa6\x0c\x7b\x16\x18\x88\xad\x64\x4a\xa6\xc7\x2f\x66\x18\xcf\xa6\xbc\xf9\xa2\x1a\x12\xdc\xae\xbc\x79\x7c\xc1\x86\x8a\x64\xca\x9b\xc7\x70\x34\x3c\xd1\xa6\x14\x79\xd6\xa7\xb1\x3b\x8c\x8c\xf0\x8a\x33\xc2\x36\x2f\x42\x49\xa9\x53\x8d\xba\x52\x59\xfb\xdc\x8e\xb2\x6f\x64\x5e\x56\x47\x57\x25\xc3\x65\x63\x28\xfb\x55\x15\x33\x0e\xcf\x44\x9d\xa9\x78\x63\x0d\x75\x06\x48\x92\x55\x2d\x1b\xf8\x08\x8d\x94\xc9\xaa\x65\x83\x81\x0b\x24\xc9\x2a\x8a\x39\xc8\xa4\x64\x6c\x84\x8a\x0e\x0e\x16\x29\x01\x34\x32\xc2\xfa\x09\xbc\x51\x02\x96\x63\x15\x15\x09\x74\x4e\x5a\x2c\x45\xf8\x40\xd3\x62\x29\x02\xd2\xb1\x86\x99\xb5\x20\xff\x03\x96\x63\x8d\x79\x07\x9d\x93\x16\xd5\x1c\x1a\x3a\xf8\x82\x69\x0f\xac\x8e\x35\xd4\x6d\x20\x3b\x69\xa1\x6e\xb7\xaf\x29\xfe\x0f\x85\x62\x21\x47\x17\x2b\xa5\xa1\x61\x83\x93\x49\xf0\x2f\x5b\x6b\x74\x8d\x95\x02\x1e\xc4\x60\x61\x4c\xc0\x42\xd2\xe2\xa4\x85\xa3\x34\x2d\x8c\xbd\x05\x49\x41\xa3\x90\xe3\x32\xfa\x6b\xe2\x38\xe0\x99\x1c\xaa\x8b\xbc\xdf\xc6\xbe\x07\x47\x92\x96\x4f\xae\x35\x2a\x91\x00\xeb\x48\x00\x2b\xac\xa1\xb9\x2e\x14\x4a\xf0\x15\xd6\x50\x3d\x81\x59\xa4\x45\xfa\x7d\xc3\x78\xde\xcc\xd5\x86\x9c\xa4\xe1\x06\xdc\xe8\x8e\x5b\xc5\xf5\x39\xfc\x41\x5b\xa4\xad\x92\xe7\x28\xa9\x9b\x09\xdc\x4c\x20\x94\xaa\x69\x33\x81\x9b\x53\xf1\x61\x06\x36\xa7\xe2\x26\x7f\xfe\xa1\xc4\xd1\x46\x96\x80\x9a\x30\xa0\xf5\x09\xf0\x44\xda\xcc\xea\x83\xc1\xb3\x99\x55\x30\x14\xf6\x30\x1d\x9b\x20\x1e\xa8\x09\x7b\x28\x63\x04\x78\x22\x01\x90\x30\x90\x11\x69\x63\x6e\x01\x97\xb0\x07\x7d\x14\xb8\x44\xda\x2c\x8a\x87\xd9\xdc\xcc\x3b\x70\x09\x7b\x98\x4d\x70\x12\x69\x93\xb8\xa9\x18\xe0\x6e\x7c\x3b\x19\xec\x0f\xb6\xf7\x26\x26\xb7\xd1\x2e\x1f\x8e\x8b\x8d\x28\xda\xac\xa5\x07\xdb\x1b\x60\x45\xda\xf8\x1d\x1e\xa7\x23\x4d\x1b\xbf\xc3\x46\xbb\x84\x4e\x36\x6d\xdc\xd4\xfb\xe1\x99\x18\x3c\x1b\xe7\xde\x46\x14\xa9\x28\xe8\xee\x3c\x13\x1b\xec\x99\xaa\x2b\x73\x68\xe4\x76\x84\xc1\xc6\xb9\xb7\x39\x7e\x1f\xac\xf4\xcd\xf1\xbb\x5d\x79\xb3\x07\x3d\x74\x13\x96\xda\xd0\x01\x3d\xb8\x01\x37\x7e\xe6\x2d\x16\x0c\x16\xd8\x46\xbf\xdb\x8b\xce\x6b\x81\x61\x83\x41\x21\x6e\x5d\x6b\x69\x73\x3b\x89\xe5\x9d\xa8\xfb\xde\x0c\x32\xbe\x8c\x8e\x6d\xb3\x11\x6f\x60\x13\xac\xa3\x65\x6c\x42\xb2\x1b\xa1\xd5\x31\xc8\x37\x42\x6b\x73\x7a\x77\x84\xc1\xe6\xf4\xde\xa4\x8b\x77\x0c\xf2\x7d\x98\x62\xf2\xbc\xbb\xd6\x27\xe4\x8f\x1b\xb7\x45\x57\xf1\x1e\xdc\x16\x1b\x8d\xb5\x13\xfb\xdb\xd8\x60\x1b\x99\xd7\x59\x9f\xd0\xa0\xa7\xc3\x96\x21\x01\x21\x1d\xce\xf9\x03\x4b\x4f\xaf\x14\xd3\xc1\x77\x7d\x70\x5b\xf4\xaa\x5a\x3c\x85\x46\xbe\x88\xf5\x79\x70\x68\x1f\x94\xd3\xce\xfa\x84\x53\x3d\x1d\x8e\xf4\x8e\xc2\x7b\x38\xd2\x4f\xe2\xed\xe8\xb6\x87\x20\xf3\xc9\x6a\xf4\xcf\x3c\x1c\xd4\x07\x45\xb2\x63\x7b\x1f\x87\x9f\xa4\x03\x69\x4e\x47\xf5\x38\x95\xce\x43\x9a\xd3\x31\x5f\x0e\xae\xba\x03\x69\x4e\xc7\x7c\x39\x8d\x2e\x41\xfa\xd0\x59\x4b\x87\x52\x7b\x87\x33\xb9\xa3\xc6\x1e\x5c\x0c\x07\x17\x43\xc7\xa6\x39\xb8\x18\x0e\x07\x75\x47\xf5\x38\x1c\xd4\x87\x8d\xd0\x11\x6b\x87\x40\xf0\xc1\x01\xd7\x89\xe8\x1d\x1c\x70\x87\x8d\xd0\x31\xc8\x0f\x67\xf2\x41\x63\xed\x9c\x36\x07\x8d\xf5\xa0\xb1\x76\x16\xed\x19\x7c\x3b\xb6\x57\xc7\x20\x3f\xd8\x5e\x07\xe3\x69\x60\xe8\x1c\x8c\xa7\x83\x9d\x34\x38\x82\x0e\x76\xd2\x41\xbb\x1c\xa8\xb1\x87\x35\x7f\x20\x53\x18\x94\x6c\x3b\xa8\x9c\x87\x8d\x30\x58\x4b\x87\x8d\x70\xa8\x13\x33\xb4\x96\x28\xfb\x7b\x38\xd2\x07\x62\x0d\xde\xfb\x74\xe0\x4d\x18\x2a\xe8\x44\x28\xf6\x1c\xb8\x42\x70\x14\x1e\x42\x33\x60\x75\x6c\x60\x90\x03\xd9\x49\x87\xba\x55\x43\x0b\x8c\xca\xc0\x07\xff\xdd\x50\x59\x28\xfc\x77\x87\x03\x65\x20\xeb\x0e\x07\xca\xe1\x40\x19\x5a\x60\x1c\x28\xb0\xee\xdb\x60\x81\x5d\x36\xc2\x85\xcf\x65\x20\x00\x2f\xd0\x9b\x4b\xdd\xb1\xe1\x59\x33\xe9\x02\xbd\xb9\x58\x54\xc3\xe1\x9b\xe9\x62\x51\x5d\x96\xf7\x40\x82\xc1\xe4\x9f\x2e\xcb\x7b\xa8\x6e\x12\xcb\xfb\xa2\x26\x0c\x96\xe2\x85\x0e\xf8\x62\x66\x0d\x02\x6d\x17\x33\xeb\xe2\xfe\x1b\x88\xb5\x8b\xfb\xef\x66\xf1\xa4\xb8\xf8\xbd\x9c\x32\x17\x07\xc7\xd8\x74\x89\x53\xe6\xe2\xe0\x18\x78\x0f\x2f\x0e\x8e\x5b\x78\xe6\xf9\xef\x90\xc7\x85\xec\xf7\x62\xd7\x0d\x96\x24\x95\x07\xd2\xad\x3c\xfb\x32\x30\x95\x67\xb3\xf3\x66\x50\x59\x2a\x9f\xff\x0b\xa1\xc0\xc4\xcc\xbe\x6c\xb2\x2b\x72\x12\x54\xe4\x8b\x23\xee\x42\x68\x37\x91\x64\x00\xaa\xd2\xe5\x10\x98\xf8\x73\x00\x54\xa5\x0b\x3b\xd3\x2c\x8c\xc1\x60\xb4\xf0\x3b\x4c\x3c\xd2\x97\x78\x0d\x28\x2b\x9b\x55\xb5\xb1\x7c\x99\x5f\xea\x99\x4f\x2c\xab\x3b\x79\x26\xce\x88\xc9\xea\xbb\x93\x7e\xa2\x0d\x4d\x3c\x3f\x17\x6d\xe8\x52\xee\x7b\x22\xc9\x2e\x44\xdc\x97\x5a\x84\x13\xd3\xfd\x1a\x8b\xc2\x78\x3b\xab\xef\x1a\xb7\x73\x2e\x4d\xd5\x0a\xe3\x5c\xba\xa8\x48\x13\xd3\xfd\xc2\xb9\x7d\xd1\x86\x27\xca\xd4\x65\xeb\x5c\x76\xc9\x34\xbe\x1d\x90\xcf\xc5\xd8\x9b\xaa\x38\x86\xb1\x77\x39\x2e\x26\xda\x30\xb8\xc6\x74\x59\xfb\x93\x3a\x20\x54\x79\xc8\x90\xac\xdb\xa4\xfc\x08\xe5\x1d\x72\x60\x99\x4f\x8a\x31\x85\x04\x68\x8a\x7a\x54\xd3\x2d\xea\x0c\x1a\x2c\x07\x38\x38\x4c\x45\xb8\x12\x28\x32\xc8\x88\xcc\x45\x51\x0e\x99\xdb\x59\xd1\x46\x95\x15\xd0\x60\x39\x40\x31\x64\x91\x2e\xb9\x7b\x3b\x07\x96\xb9\x45\x5e\x54\xe8\xa7\xaf\x61\xb3\xc4\x8b\x84\x0d\x63\x7d\x1a\x45\x95\x42\xa5\xf3\x10\x07\x59\xe6\x99\x90\x51\x87\x2a\xf6\x9b\x4b\xa3\xd1\x08\xfb\x4d\x51\x55\xb2\xeb\x8d\x70\x04\x59\xe5\x45\x30\x54\x83\x1b\x33\xab\x7c\x91\x50\x44\x28\x53\x46\x69\x26\x78\xe6\x33\x24\xf2\x66\x8e\x0e\xc8\x90\xc8\x67\x08\xdf\xcd\x1a\x5f\xe4\x2b\x39\x07\xfc\x0e\xd6\xb9\x7d\xd0\x4f\xfc\x0e\xd6\x75\x25\x83\x4c\x68\xc6\x06\x5d\x9a\x0c\x1d\x2a\xbc\x4d\xba\x34\x19\x3a\x4a\x2e\xda\xe4\x99\xc6\xd0\xc1\x1e\x66\x93\x67\x1a\xcf\x14\x75\x8f\x71\xbb\x31\x9e\x28\x53\x46\x99\x28\x38\xe1\x73\xc0\x6d\x61\x8b\xb7\x2f\xfa\x89\xdb\xc2\x16\xb7\x2f\x9e\xc9\xc1\x62\x5a\x60\x8b\x01\xe1\x60\xb1\xcd\xed\x9b\x2e\x51\xf8\xcf\x28\x3b\x13\x2e\xcf\x84\xb6\xc6\xae\x4a\xb8\x31\x74\xd0\xd6\x98\x56\xdd\xa5\x9f\xa2\xad\x09\x5e\x8b\x26\xfa\x12\xce\x11\x29\xbe\x58\x60\x14\x15\xc9\x54\x13\x31\xb8\x9e\x73\x74\xd1\x9e\x61\x9d\xb7\xe5\x10\xc6\x1c\xdd\x2b\x97\x23\xfc\x5d\x8b\x72\x5d\xd1\x03\x97\x39\x06\x51\x0c\x51\xc9\xcd\x1d\x1c\x39\xa2\x22\x01\xce\xca\xd1\x55\xa4\x1c\xa3\x78\x87\x2a\x8d\xbc\x08\xa6\xaf\xc5\x52\x04\x28\x98\x41\x08\xda\xa2\xde\x1d\x40\xc1\x0c\x42\xd0\x16\x4b\x31\x26\x9e\xc9\x36\x04\xb1\x95\x41\x0f\xe6\xc8\x19\xb2\x58\x9f\x31\x73\x3b\x06\xc4\xa2\xe4\x4e\x74\x09\x9d\x23\xbe\xb6\x45\xfd\x97\xe8\x3b\x20\x47\xf4\x26\x48\xa5\x73\x64\x23\x44\x54\xa4\x45\xc5\xa5\xc8\x9a\x87\x71\xdf\x16\x15\xe7\x22\x05\x17\x22\x22\x1d\x74\x55\x8e\x2e\xd2\x73\xc4\xd4\x58\x2c\xc5\x48\x6d\xe2\x88\xde\xb4\x58\x8a\x54\x64\xc9\x91\x12\xa4\x8b\xaa\x64\x11\xc0\x6d\xc4\xaa\x00\x72\x95\xe3\xa3\xdb\xc5\x4c\xc4\x67\x3e\x4c\x07\x65\xef\x80\x5c\xe5\xd8\xe9\x12\x7a\xd3\xda\xaa\xbd\x37\x69\x64\xe4\x11\x6b\xd1\x8f\x97\x1c\x89\x7b\xae\x4d\x97\xfc\x78\xc9\x71\xf2\xcc\x4d\x91\x3f\xe0\x94\x91\x1d\xb7\xa8\x66\x16\xd9\x71\x11\xe1\xbf\x58\x8a\xd1\xf8\x22\xf6\x11\x18\xee\x1c\xd9\x47\x11\x53\x78\x47\x3a\x6f\xbc\xdd\x11\x70\xb6\x23\x9d\x5f\x7c\x26\x9e\x94\x4d\x31\xbb\xb8\x19\x79\x54\xa4\x4d\xe9\xa3\x78\x58\x4b\x98\x05\xbb\xf0\xcc\xc3\x33\xf1\x7a\x6c\x2d\x9b\xc3\x28\x5d\xb1\x32\x71\xfb\x65\x77\xb0\x8f\xb6\x96\xcd\x65\x31\x70\x22\x6c\xd7\xc5\x32\xf5\x0c\x72\xe2\x44\xa0\xc2\x71\x4e\x9c\x08\x89\x7d\xb4\xa9\xaa\x94\xd8\x47\x89\xe5\xbd\xdb\x7f\x2a\x14\x39\x39\xde\x2c\xa7\x0f\xe3\x13\xcf\x06\x5f\x9c\xc4\xf8\xd4\x79\xb6\x38\xec\x13\x2f\xec\xd4\x3b\xe4\xb4\x49\x62\x7c\xa2\xcc\x5b\x72\x7b\x3e\x53\x5c\xc1\xf6\xa0\xde\x61\xa6\xbf\x1c\x2c\xe0\x9c\x32\x15\x10\x32\x95\x0c\x6c\xbb\x4e\x96\x93\x9b\xe7\x99\xc2\x04\xb6\x8d\x22\x88\x1c\x02\xd4\x27\xb0\xcd\xf2\x49\x7e\x24\xe4\x84\xc7\x6f\xb3\x7c\xa8\x56\x90\x13\xc6\x33\x90\xa6\x9c\x1e\x3a\xcf\x21\xb0\x0f\xe3\xca\x21\x40\x29\x02\xdb\x97\xb7\xb3\xf6\xd3\xc3\x10\x52\x2d\x2e\x3d\x8c\x12\xfc\x97\x9b\xd5\x97\x3c\x26\x93\xa9\x4f\x60\x87\x93\x96\xc2\x04\x99\x52\x04\x76\xa8\x26\x99\xba\x6e\x87\x06\x8a\xaa\x61\xa9\x33\xc8\x1c\x41\x87\x25\x99\x38\x82\x12\x45\x41\x01\x3f\xe5\x34\xe8\x12\xbc\x92\x64\x73\xe6\x64\x0c\x1d\x11\x93\x83\xd0\x4a\xc6\x28\xe1\xe5\x3e\x85\x7e\x2e\xfa\xb9\x78\xa6\xeb\x62\x39\x2d\x50\xb8\x9c\x0c\xb0\x81\xe7\xc4\xc9\x90\x38\x19\x8e\x16\x1a\x27\x43\xc2\xe4\x38\x5a\x68\x9b\x41\x86\xbf\xed\x34\x16\xc3\xe6\x99\x5b\xb4\x5a\x74\x69\xd3\x25\xea\xcb\x82\x5e\xca\xe9\xf0\x99\x78\x11\x4f\xe7\xdb\x0f\xcf\x84\x60\xf7\x68\xd5\xb1\x9f\x28\xae\x60\x47\x15\x38\x2f\x6b\x89\x5d\x72\xa8\xad\x96\xd9\x25\x19\x6d\xe8\x20\xde\x32\xeb\x33\xa3\xf4\x03\x69\xca\xd9\x57\x6b\xce\x38\xa1\x8e\x9b\x85\x39\xb3\x68\x33\x8b\xf6\xb0\x96\x32\x8b\x36\x53\x33\xf5\x50\x70\x2d\xa3\x37\x65\xf4\xa6\xe3\xaa\x7c\xa6\x98\x43\xce\xc4\x2a\x8f\x2b\xe6\x99\x02\x50\x99\xda\x0c\x76\x03\x6f\x57\x15\x0e\xd4\x99\x8b\x7c\xca\xbe\x84\x73\x66\x2d\x5d\x0a\x86\x66\x95\xbc\xc0\x28\xbd\xd4\x3e\xcd\x08\xd7\x8c\x70\xbd\x85\xce\x23\x5c\x33\x6b\xe9\x32\xef\x99\xb5\x94\x87\x98\xbe\xb8\x1d\x75\x26\x23\xde\x2e\xa5\xd9\x32\xe2\x2d\x03\xd6\xb8\x54\xf4\xcb\x2e\xc2\x32\x75\x22\xec\xb2\x37\x29\x10\x91\x0b\x36\xd8\xa5\x26\x5b\x71\x1b\x2c\x17\x4e\xef\x4b\x41\xb9\xe2\x9e\xbe\x5c\x08\x1d\xdf\xad\xdb\x7d\x36\x8b\x1f\xcd\x06\x9c\x27\x17\x77\x62\xe4\xc2\x41\x0d\x9c\x27\x17\x77\x62\xe4\x22\xee\xb2\x43\xd5\x52\x76\x31\x70\xed\x15\x32\x57\xfa\x98\xe5\xe2\x03\xb2\x02\x9f\x09\x78\x3b\x83\xda\x5e\x01\x4d\x90\xb2\x08\xb9\x88\x91\xac\x72\xfb\xe0\x99\xb0\xde\x84\x46\x3f\xd1\xef\xa8\x28\xb0\x02\x45\xdc\x0a\x3b\x8e\xc2\x02\x0b\x9c\x4b\xa6\xbe\x40\x06\x76\xbd\x02\x43\x07\xfa\x3a\x53\x43\x60\x05\x6a\x22\x52\x64\x3f\x83\xa2\x5e\x81\xd2\x73\x14\x0f\xc8\xa0\xa8\x57\xd0\x20\xb3\xb9\x28\x17\xb0\xbe\xf4\x42\x6f\xe4\x8b\x20\x8e\x09\x54\x87\xa4\x78\x40\xa6\x78\xc0\x0a\x9a\x0e\x76\x1c\x35\x04\x16\x88\x98\x0c\xfa\x3a\x03\xbb\x5e\x81\xe2\x76\xa0\xaf\x73\x81\xf8\x20\x68\x8e\xd8\x71\x40\xab\x57\xd8\xcc\x26\x3b\x8e\x3a\x01\x0b\xf0\x4b\x06\x68\x9d\xa9\x13\xb0\xc2\xe1\x33\x2f\x43\x07\xc7\x41\x60\x23\x54\xf6\x66\x0d\x30\xbc\xa1\x48\xc2\xfe\x9f\xc1\x5b\xaf\x88\xfc\x04\x6f\x9d\x41\x58\xaf\x88\xa5\x02\xd0\x3a\x57\xe8\x60\x22\xd5\x21\x81\x56\xe7\x1a\xc5\xc6\xc6\xed\xee\xed\xca\xa0\xa8\x57\xa4\x4e\x26\xec\xff\x19\x30\xf5\x8a\x58\x2a\xb0\xff\x67\xf8\xfe\x57\xa4\xcc\x30\xd0\xea\x0c\xb5\xff\x8a\x28\x92\x00\xad\x33\x08\xeb\x05\xca\x26\xd7\x44\x97\xe0\x36\x88\x2c\x45\x68\xff\x73\xa5\xe4\x6a\x44\x23\xa8\x99\x2e\xc1\x58\x10\xd1\x19\x2b\x07\x1f\xd4\xfe\x0b\x40\x4d\x86\xe1\x3f\x83\xb0\x5e\x00\x6a\x32\x40\xeb\x5c\xa9\x7e\x09\xa0\x26\xc3\xe9\x9f\x01\x53\xaf\xc8\xfa\xac\x95\x2f\x82\xb1\x20\x52\x0c\x16\x4e\xff\x0c\xc2\x7a\xc5\x87\xf1\x44\x0f\x85\xb0\x7f\x45\xea\x64\x82\xa9\xce\x15\x0a\xac\xd8\x55\x8d\x97\xe9\x80\x02\x2b\x7e\x19\x3a\xff\xa1\x50\x00\xb8\xce\x10\xf7\xaf\x48\x45\xc7\xea\x6e\xb9\x0c\xa8\x7a\x45\x94\x54\xf8\xfb\x33\xc4\xfd\x2b\xb2\x21\x2a\xc7\x2f\xb8\xeb\x15\x29\x01\x09\xee\x3a\x83\xb4\x5e\x11\x7b\xe9\xff\x4f\xd8\x1d\xec\xde\x8e\xdb\x76\x1c\xdf\xf7\x29\xe6\x0d\x7a\x8e\x49\xc9\xf6\xd2\xa6\xec\x5d\xfb\x0e\xc1\xe4\x16\xc8\x22\x93\xc1\x34\x79\xff\x62\xf4\xd1\x00\x45\x36\xb3\xb8\x9b\x8b\xbf\x8e\x65\x9b\xa2\x48\xfa\xab\x1f\x9b\xd0\x93\x0e\x7f\x7d\x2d\x1d\xc0\x75\x90\xdc\xaf\xaf\xc8\x15\x70\x1d\x94\xf7\xeb\x2b\x48\x25\xc0\x1f\xfa\xcd\xd5\x57\x6a\x44\x80\x3f\xa8\xeb\x17\xd6\x27\xa8\xeb\x07\x75\xfd\x82\xf5\x44\x3b\xbd\x2b\x1a\x07\x5f\xdb\x45\xbb\x0c\xbf\xdc\x91\xed\x42\xd7\xba\x40\x6f\xd7\xf7\x31\xfc\x62\x3e\xe4\x0c\xbe\x96\x0e\xc9\xfd\x68\x5a\x78\x7e\xe7\x99\xc2\xd0\xe6\x2e\x1a\x91\x02\xac\x4f\x90\xdc\x0f\xf4\x76\x6d\x6b\xe9\x48\x0b\x5b\x51\x8f\x5b\x4b\xc7\x3e\x4f\x4f\xbf\x36\x39\x18\x59\xfd\x68\xda\x3e\xc3\x7a\x82\xba\x7e\x50\xd7\xaf\x4d\x92\xdf\xb8\x22\x80\x77\x6d\x6b\xe9\x3c\x86\xbf\x74\xe6\x64\x56\xed\xf5\x3c\x67\x22\x58\x9b\x2d\x88\xbe\x7d\xb4\x59\xf1\xab\x8d\x6f\xd6\x8e\x2f\x88\xde\xd7\x26\x75\x07\x78\x07\xc0\xbb\x36\x81\x2f\xc0\x3b\xb0\xdc\x05\x00\x0a\xfa\xf6\x81\xe5\x2e\x07\xa4\x82\x94\x7d\x90\xb2\x2f\x67\xa1\x02\xe0\x1d\xfd\x0f\xdd\x3e\xc3\x65\x80\x90\xee\xda\x2c\x08\xaa\xf5\xd1\x97\x1a\x9f\x28\x18\xcb\x1d\x04\xea\x0b\xf8\x13\x78\xed\xa0\x45\x5f\x9b\xcc\x1f\xaf\x1d\x7d\x09\xef\xf1\xf7\x5d\x98\x00\xd4\xae\x4d\x8b\xd9\x1e\x6b\xb8\xab\xb3\xf9\x3e\x5d\x43\x60\xb9\x6b\xbb\xd6\xf0\x69\x60\x9d\x0c\xd4\xa6\x35\x77\x9f\xc5\x96\x20\x1b\x5f\x9b\x3e\xca\xd4\xe3\x83\x6c\x7c\x21\x77\xa2\x4b\xf6\x3a\x79\xa5\x8d\x29\x02\xc3\x03\xfc\x5d\x1b\x53\xec\xbb\x07\x62\x19\x6e\xfa\x67\x77\x2b\x8e\x34\x7c\x6d\x32\x2b\xd2\xf0\xd1\xc9\xd3\x05\xab\xa3\x02\x1f\x54\xe0\x2b\x84\x33\x54\xe0\x83\xe0\x7b\x85\x80\x17\x2d\x1e\x30\xf1\x82\xf3\x04\x5a\x3c\x60\xe2\x15\xca\x01\x54\xe0\xa3\x13\x25\xc1\xf8\x04\x5a\x3c\x60\xe2\x15\xba\xc4\xf7\xd3\xf3\xd4\x03\x37\xd4\x08\x88\xb3\x07\xed\xf3\x0a\xa1\x31\x4e\x3b\x00\xda\x15\x7d\x35\xce\xf6\xe8\x48\x0c\x85\x32\x10\x78\x3b\xfa\xdc\x31\x2b\xa6\x90\x5d\x50\x42\x0f\x4a\xe8\x15\xbb\xe1\xf6\x4f\x28\x77\xc5\x6a\xfe\xfd\x98\x12\xfd\xcb\x10\xc6\x92\x40\x0f\x7c\x77\x85\x24\x9f\x12\x7a\xa0\xbd\x0b\x22\x14\x68\xef\x20\x3b\x5e\x21\x79\xda\xa7\x61\xc6\xbe\xa4\x19\x6b\xf5\xf9\xbe\xfc\xa7\xc9\xab\x09\xd2\x06\x0f\xbc\x75\x85\x60\x8a\x44\x78\xe0\xad\x2b\x74\x0a\xa6\x0d\x1e\xb0\xeb\x0a\x29\xd1\xce\xc0\xf6\xa5\xc2\xa8\x8b\xb0\x8e\x92\x41\x14\xbc\x42\xef\x77\xda\xe0\x01\xbb\xae\x90\x12\xed\x9a\xc9\xed\x4b\x5b\xd1\x46\x8d\xb7\x0e\xc0\x74\x61\x7c\x02\x30\x1d\x68\xe8\x4a\x69\x36\x41\xed\xd8\x27\xf3\x56\x29\xcd\xde\x75\x83\x03\x4c\x57\x86\xe1\xac\x6e\x67\x60\x70\x9e\xd8\x19\xd8\xce\xa5\x67\x98\x3c\x97\xbe\x53\x93\x49\x7e\x69\x9f\x05\xe2\x00\x4c\x17\x72\x27\x76\x85\x03\xdc\x74\x65\x5f\x7f\xb9\x86\x97\xff\x34\x25\x91\x20\xb5\xec\x4a\x89\xce\x5e\x5e\x1c\x09\xc1\x64\x21\x7b\x19\xce\xea\x80\x3f\x41\xe7\x3a\x76\x72\x55\x29\x66\xdc\x39\x55\x8c\x73\xe5\x7a\xef\x3a\xb7\x51\x83\xae\x94\x0a\xef\xaf\x87\xcc\x6c\xf2\xd6\x30\x9d\xd9\x90\x5e\xae\xbc\xb5\x3c\xe7\xac\x8e\xcd\x5f\x7a\xc5\x87\xca\xd4\x41\x80\x09\x3b\x13\x87\x44\x87\x48\x73\xe5\xea\x91\x3e\x91\x9d\x40\x3c\x57\xbe\xfa\xb4\xb3\xba\x83\x2d\x35\x39\x0d\xb8\x39\x48\x2f\x57\xfb\x98\x12\x5b\xc2\x38\x57\xf3\xde\xa1\xce\x71\x68\x80\xde\xbe\x7f\xca\x50\x04\x41\xe6\x00\x39\x17\x2e\x27\x40\xce\x01\x72\xae\x66\xdd\x83\x9c\x03\xe4\x5c\xda\x31\x06\xc8\x39\x40\xce\xa5\x1d\x63\xe0\x99\x03\xac\x5c\x8d\xa5\x1c\xb2\x0b\xe8\x72\xe1\x72\x82\x4e\x72\x1c\x22\x97\x26\x79\x26\x97\x1c\x87\x20\xa5\xd9\xac\x0e\x35\x82\x83\xcb\x84\xe0\xc4\xc1\x65\x1e\x4b\xe6\x53\xf2\x7c\xe8\x52\xba\x34\x94\x1b\x43\x83\x43\xc7\xb1\xc4\x3b\xd9\x14\xf2\x39\xa8\x26\x57\xdb\x57\x87\x7d\xc3\xe9\x38\x35\x36\x75\xc8\xeb\x96\x86\x72\xe3\x75\x30\xd2\x81\x91\xae\xa6\xc3\x34\x38\x3a\x0e\xe1\x4c\x93\xc6\xc0\xa1\x83\x40\x72\x35\x3b\xd8\x71\xb9\x77\x31\x4e\x63\x92\x74\x92\x83\xae\x40\xb5\xcb\xd5\x2f\xb7\x79\xbb\x23\x51\x1b\x49\xe4\xa0\x2b\x50\xf8\xa1\x20\x82\x1c\x4b\xef\xb8\x2d\x3b\x55\xa1\x38\xf4\xa5\x47\x05\x05\xbd\xe3\xa0\x70\x5c\x4d\xd8\x75\x94\xdf\x5c\xea\x9b\xc2\x2e\x30\x76\x1c\xfc\x7d\x93\x9c\x1c\xc3\x5f\x8a\x5c\x9a\xe2\x0e\x18\x3b\x0e\x2b\x4f\x23\xe1\x38\xac\x3c\x62\xc6\xd5\x97\x45\x3f\xa6\x44\x3d\xae\xf3\x64\x08\xed\x38\x96\xd0\xe6\x32\xf3\xc7\x8b\xe3\xda\xfb\x32\x73\xc5\x3d\x62\xc6\xd5\x97\xd1\x2a\xee\x01\xb5\x0b\x69\x14\x78\xed\x58\xd2\xc6\x7d\x73\x21\x4b\x7c\x49\x1b\x77\x46\x0b\xcd\x8e\xa5\x62\xdc\x27\xe7\x12\xa7\xdc\xfb\x5c\x42\x9b\x6a\x04\xa4\x8d\x03\xb6\x5d\x5d\x8d\x00\xb6\x1d\xe7\xd2\xd4\xe4\x08\x69\x1a\xc7\xf9\x35\x25\x79\xc8\x49\x73\xe0\x14\x22\x75\xb5\xeb\x53\xa1\x10\xd2\x5d\x5d\x2c\x46\xa9\x38\x4e\xf9\x52\xe7\x1d\x29\x15\xc7\xc9\xeb\xf4\xdd\x94\x78\x1d\x12\xc5\xd5\x79\x47\x4a\xc5\xb1\xb4\x89\xe9\x65\xc4\x39\xb3\xa7\x38\x6d\x6b\x9d\x79\x9f\x33\x36\x0a\xd0\x78\xf5\xc3\x94\x78\x9d\x25\x2e\xdc\x15\x1f\x21\xe4\x71\xca\x97\x3a\x4b\xa6\x38\x1c\xa7\x7c\xa9\xb3\x64\xaa\xc2\x81\x24\xaf\xce\x68\x91\xe4\x71\x36\x0f\xe4\x36\x79\x47\xd6\xcf\xb6\x84\x4b\x3d\xcf\xe9\x7b\xe2\x94\x44\xf5\xa9\x38\x1b\x60\xf3\x38\x49\x5d\x76\x09\x39\x1d\xe1\x58\x3a\xc2\x5d\x7d\xe4\xec\x9e\x27\xa9\xcb\x2e\xf7\xc6\x93\xc7\xa9\xe1\x3e\x0e\x2b\x4e\x65\x4a\x04\x79\x75\xf1\x1d\xc5\xe1\x38\x79\x9b\xae\x3e\x82\x20\x0f\xda\xc2\xd5\xf9\x7b\x3c\x79\x9c\xf4\x2f\xbb\x84\x1c\x4f\x1e\x64\x84\x0b\xdb\x15\xa7\xe4\x89\x8c\x70\xc1\xb8\xe2\x54\x34\xa1\x18\x5c\x5d\xfe\x71\x4a\x9e\x96\x7e\x30\x8c\x2b\xe8\x07\x07\x0e\xbd\x76\x4b\x06\x8e\x1e\x27\x6f\xb3\x5b\x32\xc8\xf3\x58\x02\xc0\xbb\xfc\x03\x79\x1e\xa7\xe4\x69\xdf\xdc\x91\xe4\x69\xa9\x02\xef\xc2\x04\x00\x7a\x2c\x01\xe0\xdd\x92\xa1\xfc\x1b\x27\x6f\xa3\x23\x4f\x9c\xb7\x3b\x92\x51\xed\xfc\xfc\x79\xaf\xe1\xa6\x24\x4b\x3f\xd5\x71\x4e\x0a\x6f\xfb\x5a\x32\x3e\x9f\x9d\xd4\xd5\x77\x09\x39\x39\xe0\x38\x8b\x70\xa9\x84\x9c\x2a\x70\x9c\x92\xa7\x7d\xad\x0e\xc9\x13\x1d\xe0\x42\x81\xc5\x39\xcc\x93\x80\xe5\xde\xad\xe2\xe1\xc5\xf1\x4b\xd0\xb0\xa0\xfc\x1b\x24\x7f\x6b\x97\xa5\x9f\xfc\x12\xc9\xdf\xda\xa7\x0c\x54\x50\xfe\x8d\x53\x1d\x67\x57\x9a\x27\x00\x1c\x4b\x00\x78\xe7\xe7\x09\x00\xc7\xd2\xfa\xdd\x7d\x42\x22\xf2\x1b\xa7\xd0\x63\x9f\xa7\x11\x82\xd6\x6f\x2c\xad\x5f\x14\x58\x9c\xaf\xdb\xe4\x97\x76\x39\xf7\x25\xf4\xb8\xf8\xa5\xdd\xea\xc0\xd9\x07\x88\xbe\x76\xe5\x2a\x5a\xbf\x01\xa9\x2f\x68\x58\x10\xf9\x0d\x10\x7d\xed\x16\x02\x59\xdf\x58\x0a\xbe\x3b\x3f\x0f\xb0\x8f\x25\xd6\xbb\x5b\x08\x58\xfa\xf8\x43\xac\xf7\xf9\xf3\x80\xe2\x9a\x2e\x2c\x08\xfa\xd6\x2e\xf7\xa6\xeb\x1b\x7f\x48\xf1\x5a\x25\x97\x60\x9a\x22\x6f\xc1\xce\xe2\xe2\x8a\x2e\x62\x93\x87\x34\xfb\x52\xa5\xb9\x04\x40\xc7\x94\x9c\x08\xa2\xbd\x71\xa5\xe1\xdf\xdd\x7f\xae\xe1\xaf\xff\x74\x13\x4a\x37\xc8\xfc\x3a\xa4\xd9\x97\xd2\xcd\xc5\x15\x1d\x6c\x1f\x99\x1f\xb0\xfb\x3a\x54\xa8\x2e\xa5\x1b\xd8\x7d\x1d\xbe\x6a\xd2\xe0\x8d\x4b\xe0\x73\xa8\x50\x91\xe2\x8d\x25\xb0\x8b\x45\x8b\x8b\xd7\xb9\x76\x77\xe4\x9b\xd5\x35\xc3\xa0\xc0\xf0\xd7\xa1\x6c\x85\xe1\x0f\x80\x7e\x1d\x52\x77\x2a\xb8\x01\xd7\x2f\x30\x59\xc0\xf5\x03\xae\x5f\xc7\xbe\xfe\xd2\xd5\x95\x57\x8e\xdd\x53\x52\x49\xb9\x48\x48\x1e\x82\x94\xeb\xf2\x9b\x97\xc9\xf3\xf7\xd7\x65\xf8\xe5\xd1\x89\x9b\x09\xde\x06\x51\xdb\x3a\x94\x96\x68\xdb\xc6\xd2\xa8\xc5\xa2\xc5\xa5\x00\x8b\xda\xaf\x43\x6d\x88\x46\x6d\x5c\x16\xee\xa1\x36\x44\xa3\x36\xa0\xfc\x75\xa8\x0d\xd1\xa8\x8d\xa5\x3c\x0b\x3b\x8b\xcb\x1a\x5d\x22\xb3\x87\x1c\x8c\xc8\x6c\x5c\xa4\x19\x11\x66\xe1\x40\x40\x5c\xef\xfa\x4f\x17\x7a\xd7\x7f\xfa\x4d\x99\xd5\x65\xf3\x77\x2e\xa0\xc0\x64\xe1\x5c\x40\x10\x8b\xad\x53\xee\xed\x94\x40\x2c\x95\xd8\x73\xca\x43\x84\x73\x01\xe1\x08\x40\x9d\x2a\x3e\x8e\x00\x04\xb0\xbf\x60\x67\x01\xec\x8f\x5b\xce\x70\x8a\x97\x6f\xbb\xf7\xad\xee\x70\xca\xac\xee\xb9\xc5\xc6\xcd\xbc\x71\x63\x71\x8b\xef\x61\xf7\x75\xb6\xf5\x97\x86\x8b\xef\x4f\x2e\x93\x88\x6a\xdc\x2c\xf9\x84\x60\xdc\x6d\xfd\x65\xf9\x4f\x57\xb7\xa9\xde\x94\xa6\x4f\x25\x9b\xbb\x9b\x3c\xd9\xd4\x93\x2d\x81\xf7\x63\xc9\xa6\xe2\xc6\xe2\xd6\x78\xfc\xde\x09\x16\x2b\xd9\x80\xf7\x03\xae\x5f\x5a\x69\x05\x5c\x3f\x6e\xfb\xe7\xa9\x8e\x83\xd3\x8f\xa5\x66\x7a\x2a\xd9\xdc\x4c\xf1\xbe\xfc\x26\x4f\x46\xe2\x34\x96\xc4\xe9\xc9\x6c\x6e\x3b\xd8\x6d\xb3\x3a\x67\xf3\xc2\xa0\x92\x15\x37\xa3\x3d\x87\x77\x24\xff\x5c\x6a\xa6\x27\x4f\x46\xc6\x34\xee\x25\xd6\xcc\x42\xa8\x99\xc6\x12\x2e\x3d\xa7\xa8\x57\xdc\x76\xb0\xdb\x47\x87\x53\x0a\x47\xa3\x34\x96\x46\xe9\x69\xf7\xbe\x51\x21\xb7\xa6\x21\xa7\x3a\xce\x6d\x5b\x5b\x1a\xa5\xd7\xb2\xa5\x59\x21\x8c\x25\x47\x4a\x39\x2d\xee\x61\x4a\xd3\xf4\xeb\xf2\x39\xd2\x61\x81\x58\xca\xa3\xd7\xb2\x25\xe6\x8d\xe1\xaf\x4b\x42\x86\xe1\x8f\x52\xbf\xbb\x04\xa7\xc5\x3e\x89\x85\xd6\xc5\xb1\xd0\x0c\x0d\x62\xa1\x75\xf9\x18\x4e\x33\x34\x48\x80\xd6\xc5\xc0\x4a\x85\xbf\xec\x0c\x97\x34\x8b\xe8\x67\xe0\xfb\xeb\xb2\xd3\x96\xaa\x5c\x11\x15\xbe\x24\x4f\x74\x3a\x03\xca\x5f\x97\x3c\xa9\x18\x2d\xfd\xcb\xba\xc4\x8c\xf4\x2f\x83\xfe\x65\xc1\xb8\xa2\xb8\x4a\x32\x98\x75\x29\xc4\x50\xc3\x8c\x52\x41\xc3\x76\x05\xe1\xcb\x20\x75\x59\x17\xa0\xa6\x18\x18\x71\xcb\x5a\x18\x17\x8d\xcb\xa0\x4e\x59\x97\x52\x1d\x91\xca\x28\xc1\xd4\x65\x3f\x2a\xfe\xb3\xa8\x81\x5f\xb2\xf4\x9a\xe6\x16\xce\x03\xd4\x2d\xec\x72\x1e\x20\x4a\x5d\xec\x96\x94\x14\x03\x73\x48\xa0\x6e\x6f\xd3\x21\x81\x28\xd1\xd0\x02\xbe\xe8\x4a\x86\x43\x02\x75\x8b\xc5\x1c\x12\x08\x6a\x8f\x75\xaf\xb7\xa9\x04\x56\x1c\xe0\x22\xb6\x8a\x03\xa4\xfd\x58\x37\xde\xa1\xe4\x49\x64\x1e\x6b\x61\x5c\x25\x1e\xa1\xf6\x58\xb7\x4c\x9a\xe8\x63\x38\x8d\x50\xb7\xfc\xc3\x69\x84\x28\x06\x76\xcb\xa4\x1d\x3c\x08\xe2\x8d\x75\x0b\xa6\x06\x5b\x72\x80\xa0\x6e\xa9\x86\x73\x04\x41\x29\xb1\x6e\x19\xc0\xb0\x41\x0f\x12\xf6\xb7\xf2\x0a\x55\xc3\x18\x8a\xa4\xbf\xaf\x80\x3f\x0b\x28\x86\x1a\xc1\xd0\x12\xe4\xb6\x70\x71\xfa\x31\xbc\xc0\x5b\x2c\x3e\xbc\xc0\x21\x21\x2f\x8b\x6c\xa8\x61\x0e\xbb\x62\x79\x57\x98\xfa\x18\xbc\x4e\x79\x57\x83\xd7\x19\xe2\x66\x1a\x56\x31\x78\x9d\xc1\x28\x6a\x36\x20\x8a\xc1\x28\xc6\xe5\x37\x2d\xc7\x31\x7d\x50\x0c\x05\xae\x92\x55\x0e\x0e\x66\x08\x91\x0b\x87\x37\x38\x98\xe1\xa3\xc3\x22\xa2\x86\x8f\x0e\xc0\xfe\x2a\x09\x24\xb0\x3f\x68\x39\x56\x79\xd5\xa3\x3c\x57\x59\x7a\x79\xab\x83\x83\x19\x3e\x3a\x94\x10\x19\xbc\x1f\x43\x96\x5e\x16\xee\x18\x26\xef\xab\x66\xed\xeb\x2f\x0d\xf7\xfe\x4b\x88\xfc\xf8\x1c\xfd\xd8\x15\x0b\x08\xf0\xd8\x15\x1f\x9f\x12\xca\xab\x7e\x7c\x4a\x78\xc8\xa3\x97\xb2\xc5\x23\x1e\x45\xd1\x57\x89\x71\x51\xf4\xf1\xf0\x3a\x8b\x88\xc2\xd4\xc7\x23\x48\x2d\x96\xf2\x08\x52\x9f\xaf\x29\x29\xc4\x3d\x10\xb1\x47\x0f\x9f\x12\xe3\x62\xea\xe3\xd1\xc3\xa7\xc4\xb8\x0f\xe2\x00\x4c\x5f\x25\xd9\x7b\x94\xd7\x9e\x25\x65\xce\x96\x9e\x74\x9b\x4b\xca\x9c\x33\x78\x64\xbf\xb0\xfb\x2a\x29\xdc\xd3\xd6\x7f\xce\xdf\x1c\x22\x56\x10\x7e\x3c\x2a\x68\x8b\x88\x82\xe4\xc7\x33\x6b\x66\x35\x24\x66\x90\xfc\x78\xb4\x6f\x58\x98\xd4\x23\x66\x7c\xa6\x3f\xac\xc1\xea\x20\xf9\xf1\x88\x19\x17\x26\x05\xc9\x8f\xc7\xf6\x3b\x24\x66\x90\xfc\x80\xdd\xd7\x62\xa7\x1e\x8e\xf0\xb1\xd3\x0e\xdf\x54\x1f\x3b\xed\xa3\x3d\xd7\x90\x59\x3d\x73\x8b\x8d\x47\x24\x38\x98\xcd\x23\x12\x7c\x74\x40\x58\xf0\xd3\x63\x53\x7d\xec\x9f\x43\x1c\xfa\x30\xef\x47\x55\x76\x48\xa2\x1e\x55\x59\x30\x7d\x0d\xd5\xf8\x47\x24\x08\xad\xaf\x85\x32\x41\xeb\xe3\x91\xc2\x69\x73\x17\xcf\x58\xc3\xcb\x7f\x9a\x27\xfb\x44\xd1\xd7\x50\x4d\x40\xd1\x07\x1a\xbe\x16\xdf\x04\x8a\x8f\xc7\xf7\x2f\x92\x4d\x81\x78\x8f\x57\xdf\xaa\xa1\x46\x80\x7f\x8f\x97\xd5\x0d\x66\xf3\xb2\xba\x57\x75\x66\x48\x5f\x5e\xd5\x99\xd7\x27\xee\xc1\x42\xde\x69\x98\x01\x83\xaf\xc5\x37\xe1\xdf\xe3\xe5\x1d\x87\xe8\xf2\xe5\x1d\x5f\xfb\xe7\x23\xa7\x79\xed\x9f\xef\x84\x5f\xea\xb1\xb1\xbc\xbe\x6a\xbd\x44\xf9\x1f\x66\x03\x83\x8f\xd7\x07\xac\x45\x2d\x81\xe2\xe3\x15\x48\x3e\x92\x7c\x18\x7c\xc0\xe0\xeb\xb1\xb1\xc0\xe0\x03\x06\x5f\x0f\x5b\x42\xba\x07\xd2\xbd\x1e\xb6\xf4\x4a\x89\x5e\x9e\xf6\x99\xe2\x63\xf1\xfa\x80\xf5\x8a\xef\x1e\xde\xe6\x15\xdf\x51\x10\xad\x87\x2d\x2d\x21\xd1\xd7\x47\x87\xc5\x37\x91\x0e\x8d\xd7\x07\xac\xc7\xa7\xc3\xd7\x07\xac\x57\xd3\xa5\x85\x32\xbd\x4a\xb4\xd0\xf8\x7a\xd8\x12\x42\x3e\x5e\xf5\x91\x47\x1c\x0a\x86\x0f\xb2\xa2\xf5\x88\x43\xc1\xf0\x81\x82\xaf\x85\x32\x81\xe1\xe3\xd5\x35\xe9\x91\xd3\x80\xe1\xe3\xe5\xe7\x1f\x56\xf7\xb2\xf9\xf7\x0f\xad\x7c\x53\x12\x5d\xbe\x7c\xf2\xc3\x83\xbd\x7c\xf2\xab\x70\xf0\x88\x58\xa1\xea\xf1\xb2\xcf\x45\x2d\xbd\xec\xf3\x55\x4d\x78\x96\x2d\x3d\xee\x5d\xe1\x60\xa1\x4c\x68\xf6\x20\xc1\x5b\x8f\xe8\xf2\x7d\x0d\x07\x80\x2c\xbe\xe9\x05\x80\xbc\xaa\x9c\xef\xb2\x25\x55\x4e\xa4\x7b\x51\x65\xca\xcf\x74\xd4\x49\x36\xb5\xde\xf9\x41\x30\xc9\xa6\x26\xa1\xd4\x7a\x67\xe5\x34\xe9\xa5\xe6\x47\x78\xf8\xce\xfc\x38\x3f\x33\x3c\x4c\xea\xa9\xf5\x4e\xb3\xc9\xcf\x0c\x0f\xf3\x23\x3c\x7c\x67\x7e\x9c\x9f\x19\x1e\x26\xf9\xd3\x7a\xc3\xd5\xe7\x81\x8e\x84\xbf\x17\x12\x2a\xe1\xef\x09\x7f\xaf\xb7\xad\xbf\x34\x9c\xfb\x7d\x9b\x29\x4d\x13\xce\x8f\x4e\x12\xef\xfc\x9e\x98\x9f\x34\x4f\x19\xff\xbb\xbb\xfa\xcc\xf8\x13\x13\x5f\xbf\x5b\xeb\x9f\x04\x14\xf9\x99\x9f\x3c\xf2\xa3\x32\xf9\xee\x66\xd1\xcc\x97\x17\x27\xee\x94\x14\x56\x13\x1b\x5f\xef\xe1\x26\x66\x39\x20\x11\xef\xf5\x1e\xe6\xbb\x9b\xaf\xe6\x11\xef\x65\x6a\xbb\xe1\x6a\x83\xef\xe5\x42\x87\xd7\xe2\x53\x02\xf0\x2b\xf1\xef\x89\x5c\xaf\xb7\x3c\xec\xdb\x3c\xa5\x31\x20\xad\xfc\xdc\x86\x8b\x32\xde\x67\xfd\xe5\x1a\xee\xb9\x3e\x2e\x74\x7b\x81\xca\xfe\xef\x6b\xf2\xd3\x53\x27\x72\xbd\xde\xd7\xe4\xcb\xbd\xcf\x7c\x7e\xd0\x93\xcd\xcf\xcc\xe7\xf3\x33\xbd\xf1\x20\xc4\x94\x9f\xe1\xfd\x4f\xdf\x3c\x3e\x5f\x53\x1a\x5e\xe0\x0c\x36\xc7\xe7\xeb\xea\xaf\xc9\xbf\x86\x4f\x92\x3c\x51\xed\xf9\xa1\x30\xfe\x09\x53\x7a\x99\xe4\xac\x88\x8d\xcf\x32\x9f\xd7\xa3\x9b\x16\x3d\xb0\x68\xf9\x9d\x5e\x3c\x11\xef\xe3\x33\xcb\x2b\x09\x6e\xcf\xef\xc7\xe4\x67\x88\x9c\xe0\xf6\x04\xb7\x8f\x4f\x5b\x7f\x39\x2d\x05\xce\x3e\x3e\x33\xe1\x49\x54\x7b\x7e\xa7\x61\x0f\x28\x5b\x7e\xe7\x96\x90\x78\xf4\x81\x5a\x4b\x58\x7a\xe2\xd1\xc7\x67\x7a\xb2\xfc\x6e\xae\xbe\x19\xbe\xaf\xbf\x5c\xc3\x1f\xff\xe9\x42\xb3\x60\x9f\xdf\xe9\xf6\x07\x19\xa8\xfc\xce\x12\x7d\x7e\xe9\x86\x7f\x26\x19\x91\xdf\x19\x65\x24\xb8\x7d\x40\xd9\x12\xdc\x9e\x70\xf6\xf1\x61\x4b\xa8\xf6\xc4\xb1\x8f\xcf\xe5\x29\xb1\x4f\xe4\xfa\xf8\xdc\x1e\x48\x37\x25\xba\xe1\xf8\xb6\x04\xb0\xe7\x57\x63\x82\x0f\xab\xfb\xce\x40\x24\xbf\x7a\x10\xe0\xdb\xf2\xbb\x9b\xd2\x6e\xf8\x30\xa5\xdd\xf0\xdd\x8b\x1b\xee\x88\xcd\x23\xd7\x07\x71\xa7\xfc\xee\xee\xfd\x70\x47\x8c\x16\xc7\x9e\x20\xf5\xf1\x79\x4d\xe9\x70\xf5\xcb\x3b\x7a\xdd\xe6\xe5\x1d\xcd\x14\x7c\x7c\x3f\x2e\x54\x5e\xc7\x34\xef\x01\x26\xcb\x2f\xf3\xfe\x4e\xf3\x1e\xdf\x70\xa1\xf2\x94\x66\x42\x3e\xbe\x53\x9e\x30\xbf\x65\x4a\x64\xfc\xbf\xe9\x8e\x86\xe1\x6c\x1e\x4c\x96\x5f\x36\xff\x9d\x9f\x95\xc7\x77\xd9\xd2\x70\xef\xb3\x40\x35\xbe\xcb\x96\x1e\x53\x22\xca\xff\xed\xa6\xf4\xb8\xfa\xe4\xd8\xc7\xb7\xbb\xa3\xc7\x53\x9a\x7e\x7b\x7c\xbb\x17\xf7\x32\x5a\x36\x4f\x9d\x29\xd1\xe9\x89\x4e\x1f\x5f\x16\x82\x4e\x4f\x74\xfa\xf8\xce\x34\x3b\xd1\xe9\x89\x4e\x1f\xdf\x19\x76\x25\x00\x3d\x01\xe8\x03\x1a\x96\x00\xf4\x84\x9c\x8f\xef\x65\xf8\x3c\x8a\x91\x90\xf3\x41\x9d\x29\xa9\x1f\xe7\xb6\x19\x3e\xa3\xf5\xdc\x58\x32\x00\x7d\x7c\x6f\xf3\x64\xc9\x1b\xad\xfc\xef\x4c\xdd\x73\x9b\x31\x47\x22\xc8\x07\x8c\x2b\x11\xe4\xb9\xe9\x91\xf1\x7d\x5d\x7d\x5a\x6b\x6e\xbb\x3b\xf2\xde\x11\xe4\x09\x16\x1f\xdb\x8c\xac\x13\x2c\x9e\x9b\xe6\x11\xdb\xd7\x85\x4e\xc3\x67\x02\x38\x36\xde\x06\xd8\x9d\xdb\x69\x78\xac\xbf\x34\x7c\x06\xc3\x03\x5d\x95\xdb\xe5\xd1\xcd\x24\x6f\x6c\xe9\x29\xcd\x24\x2f\x91\xe0\x03\x72\x95\x80\xf0\xdc\x58\x1d\x25\xa5\xdc\x58\x1d\x16\x7b\x6c\xdd\x6f\x3e\x5e\xdc\xe4\x5c\xc6\xb6\x5e\xdc\xe3\x29\xe9\xe5\xb0\xad\x17\xf7\x18\xce\x42\xb6\xf5\xe2\x58\xc8\x36\xcf\x36\x0c\x12\x48\xb9\x3d\x9e\xfc\x6b\xf8\xe9\x75\xbc\x86\x4f\xdf\x3a\xb6\xd3\x94\xa6\x8b\xcd\x8d\x81\x6d\x97\x7b\x67\x60\xc0\xee\xb1\x79\xef\xc0\xee\x0c\x06\xb6\xcd\xc8\x3a\x83\x81\xc5\x34\xa9\x41\x2c\x29\x63\x26\x79\x49\xb0\x7f\x6c\xf3\xe3\x5d\xd2\xed\xcf\xe0\x69\x31\x53\x19\x3c\x6d\xe8\x4a\xb3\xb1\x90\xe0\x69\xe3\xeb\x37\x2b\xfc\xe7\xee\x3f\xdd\xe6\xec\x3a\x98\x31\x23\xeb\x0c\x0d\x1e\xb6\x61\x9e\x9b\x29\x71\xbf\x1b\x5b\x0a\xee\x17\x5d\x3e\xb6\xe1\x42\x9b\x29\x85\x0b\xcd\x58\x2c\x23\x4c\x3e\x3c\x25\xde\x26\x04\x29\xe8\xf2\xb1\x31\xc5\x98\xe1\x76\x46\xba\xfa\x9f\x2b\x65\x66\xcc\x20\x3c\x43\xcf\x99\xf8\xb8\x60\xae\x9f\x99\x0f\x26\xd8\x69\xa4\x3b\xe3\xef\x63\x7e\xb3\xc8\x68\x6e\x62\xc6\x23\x23\x36\x53\x13\x8f\x44\xf3\x9b\x9b\xdf\x9c\xa9\x66\xc6\x0c\x52\x06\x1e\x2b\x43\x90\x12\x33\xd5\x1c\xb1\x79\x06\xcd\x85\x34\x8f\x08\xb6\x1f\x16\x59\xf0\xf7\x31\xbf\xd7\x65\xf0\xf7\x61\x41\xc0\xb9\x32\x66\x61\x24\x63\xe6\x8a\x03\x7a\x95\x61\x95\xc4\x65\x9e\x42\xa4\xb8\xcc\xf3\x72\x75\x16\x1d\x37\x9b\xba\x5d\x9d\xf1\x86\x20\x25\x6e\xc3\x4f\x93\xbf\x0d\xd7\x8c\x05\x8f\x95\x71\x7b\x74\x33\xd0\x1e\xc1\x78\xa3\x3c\xe4\xf2\x40\x2e\x53\x2a\x0f\xa4\xdc\xd1\xed\xea\xe5\x8e\xa6\x87\x1f\x71\xb3\x94\x61\x4a\x5c\x7b\x2c\x93\xe4\xda\x63\x96\x5c\x07\x1d\xa7\x8c\xe9\xe8\x33\x86\x3b\xb2\x01\xc6\xf0\x3c\x1f\x77\x34\x4c\xe9\x71\x47\x8f\x57\xbc\x4c\xd2\x1a\x0d\x81\x4f\x4c\x65\x95\x0c\x81\x4f\x08\x7c\x80\x5f\x19\x02\x9f\x10\xf8\xc4\xeb\x37\x05\x3e\xce\x05\x8c\x60\x92\x69\x8d\xa6\xc0\x07\x0d\x96\xc9\xdf\xa7\xc0\x27\x67\x7a\x90\x0e\x04\x64\x5a\x4f\x10\xb1\x4c\xeb\x29\x67\xd5\x63\xe4\x2c\x31\x64\x4e\xfb\xce\x9c\x61\xf7\x48\xc1\x54\xb2\x64\x22\xf2\x23\xd3\xd5\x9b\xdf\x9c\x1f\x0f\x46\xf2\x79\x39\xcd\x2d\x53\x4f\xa4\x14\x22\x65\xf7\x9b\x33\xd8\x18\xc9\x11\xa6\x28\x23\x67\xf5\x62\xe4\xec\x02\x90\x39\xc3\x8b\xcc\xdd\xd5\x67\x15\x31\x53\x94\x41\x8a\x7e\xa4\x0d\x90\x06\x7d\xa6\x4d\x80\x3c\x7e\xe6\xee\xea\x87\xe1\x87\x3b\x3a\x0c\x9f\x7b\xc1\x00\x7e\x65\xce\x2d\x21\x73\x7e\xb8\x1e\xc9\xbd\xe5\x6d\x4a\x33\x5e\x1e\x59\x2e\x34\x1d\x7d\x3a\x72\x30\xc8\x2b\x25\xf9\xf7\xa4\xe6\x3e\x92\x2b\xca\x32\xa5\x72\x9b\xbc\x4e\x8a\x32\x1c\x40\x18\xf9\xb8\xcd\xe1\x81\x0c\xf3\x14\x98\x3b\x80\x90\xc9\x14\xf3\x31\x9c\x29\x3a\x72\x30\x92\x31\x38\x79\x90\x8e\x1c\x8c\x5c\xef\xfd\xf1\x9b\x8f\xe1\xaf\x7b\x7f\x0c\x9f\xc1\xc6\x68\xa2\x75\x27\x0f\x32\x57\x3f\xa0\x65\x0c\x8f\xdb\x5c\xad\x7f\x3e\xae\x6e\x0f\xa1\xd8\x3e\xda\x6c\x7f\x93\x8e\x15\x24\x3d\xf5\xd1\x66\xe9\x33\xc9\xaa\x27\x3d\xf5\x81\xed\xca\x36\x63\x8e\x74\x12\x60\x34\xb6\xe4\x40\x40\x36\x0e\xbb\xb1\xa5\x36\xc3\x8b\xc4\xf7\x8f\x36\x3f\x75\x25\x59\xf5\x44\xfb\x0f\xc0\x57\xa2\xfd\x93\x9e\xfa\xd0\x2f\x39\x9b\x28\xc3\x11\x80\xd1\x58\x5d\xe3\xda\x9d\x04\x18\x6d\xe2\x86\x49\x6b\x3d\x41\xff\xa3\x89\xd6\x69\xad\xa7\x23\x00\x03\x05\x96\x8e\x00\x64\xd3\xfa\xa7\x49\x07\x69\xad\x67\x9b\x4e\x7c\x34\xa6\xd8\xd2\x3c\xe7\xf7\xb6\xd1\x0e\xf3\x9c\xbe\x3c\x9b\x70\x46\x67\x96\x84\xf9\x67\x3b\x3c\x3a\x21\x3c\x96\x3e\x41\xf4\xa3\x71\x2c\x54\xcb\xb3\x69\xa5\xd5\x98\x22\xc0\x3e\x41\xf4\xa3\x0d\x4f\x5e\x8e\xd8\x84\x33\x4d\xb8\x8d\xa5\x4f\x10\xfd\x00\x67\x25\x96\x3e\x9b\x20\xba\xb1\xba\x26\x88\x6e\xbc\x37\x71\xa7\x24\x81\x9e\xf4\xcd\x47\x7b\x4d\x89\xf7\x6e\x33\xfd\x1c\x88\xad\xc4\xd2\x27\x88\x7e\x68\xb7\x9c\xed\xf6\x94\xa6\xbf\x1e\x30\xae\xc4\xd2\x27\xd1\xf3\xd1\xd5\x1d\x88\x9e\x27\xd1\xf3\x81\xd8\x4a\xa2\xe7\xd9\xac\xa3\xae\xee\xd0\xac\x23\x10\xfd\xe8\xea\x0e\x58\xfa\x04\xca\x8f\x2e\xbe\xa3\x84\x9e\x94\xd0\x47\x0f\x93\x97\x8c\x36\x4b\xa6\x4b\x1c\x21\xf5\xd9\x66\x7c\x3e\xfa\xb2\xcf\x19\x84\x25\x95\xf4\xd1\x6d\x7c\x6d\xc6\xee\x49\x33\x7d\x74\x19\x00\xcd\xf4\x6c\xd6\x51\x5f\x46\x6b\x1d\x35\x01\x1a\xb6\x2b\x1b\xe7\xdf\x74\x08\xec\xb2\x49\x24\x7f\xc2\xf4\x47\x6f\xff\xa6\x94\xd9\xe2\xdf\xe3\x89\xf6\xfa\x69\xab\xb1\x2b\x7e\x40\xf8\xb3\xdb\x03\xc0\x60\xd9\xd5\x78\xfa\x6a\xc4\xa5\x22\x82\xf2\x4f\x7c\xfe\xe8\xd2\x4f\x98\x7e\x52\x5e\x1f\x5d\x29\xa3\xcf\x55\x9c\x7d\xb5\xd7\xe2\x46\xbb\x94\x01\xb4\x3f\x3a\x83\x26\xce\x9e\x7d\xb5\xd7\xe2\x5b\xb1\xfb\xd9\xad\xdb\x2e\xb9\xe8\xd6\x2d\x68\x7f\x74\x79\x04\x76\x3f\x41\xfb\x83\x56\x56\xf6\x30\x4f\xfd\xfb\xba\x4a\x08\x4c\x3f\x7b\x7a\x2b\xb3\x5f\x6b\x76\xd5\x20\x7c\xfe\xc0\x7d\x65\x9f\xa9\x46\xf6\xf4\xaa\xca\x85\x44\x5d\x3d\x4d\xc9\x72\xea\xa2\xae\xde\x98\xd4\x30\x4f\x55\xa0\x6e\x31\x83\xc1\xb2\x4b\xbd\xbb\xa8\xab\x0f\x4f\x5e\xd4\xd5\x9b\x79\x4a\x69\xfb\xdc\x0d\xb3\x4b\xbd\xbb\x94\xb6\x77\xef\x88\x2f\xe8\x16\x5e\xe7\x0b\x1c\x20\x18\x60\xb0\x74\x80\x20\xfb\x6e\x4a\x8a\x33\x44\xe4\xd3\x01\x82\x01\x06\xcb\xbe\x7b\xc5\x36\xc5\x5d\x71\xa6\xcb\x8c\xc8\xc6\x8f\xdd\x6a\x24\x1b\x9f\x4e\x07\x8c\x5d\x71\xa6\x1f\x9e\x92\xa6\x7e\x60\xb0\xec\x87\x3b\x92\x7a\xef\x56\xa3\x93\x03\xd9\x39\x9d\xdd\x6a\xa4\x25\x9f\x64\xe3\xc7\x6e\xe1\x51\x86\xcf\xce\xe9\xec\xca\x38\x9d\xd3\xe9\x9c\xce\xae\x8c\xd3\x39\x9d\xce\xe9\xec\x56\x63\x17\x32\xd2\x90\x1f\x60\xb0\x24\x1e\x9f\xfd\x36\x5c\x19\xa7\xab\x80\xf5\xe9\x7b\xc6\x6e\xe1\x39\x8d\x90\xdd\x8e\xbe\xb7\xf5\x97\xa6\x34\xd3\xb3\xb1\xdb\x03\xba\x0a\x58\xd7\xbf\x6f\x5f\xeb\xa8\xfc\x66\xb9\xcd\xb5\x8e\x04\x97\xc4\xea\xc7\xae\x8c\x43\xac\x3e\xbb\xba\xc1\xbe\xd6\x51\xb9\x4d\xee\x89\xa2\x58\x92\xae\x4f\x47\x22\xc6\x2e\xd7\x73\x24\x22\x1d\x89\x18\x3a\x2a\xa5\x23\x11\xe9\x48\xc4\xd8\x15\x0f\xfb\x30\xf9\xc7\x6d\xae\x15\x27\x2b\x74\xde\x61\xec\xa7\x0b\xf1\x44\xce\x34\xac\xa6\x59\xe9\x4c\x43\xee\x9a\x98\x7f\xa4\xb4\x0e\x10\xe4\xae\x03\xe2\xfc\xcb\xff\xef\x74\x7e\xfc\xf2\xd7\x9f\xff\xfe\x97\x5f\xff\xa3\xfe\xeb\x2f\xbf\xfe\xf7\x5f\xfe\xfe\xe3\xa7\x9f\xff\xf5\xdb\x6f\x3f\x7e\xf9\xe7\x5f\xff\xf6\xf3\x3f\x7f\xfa\xcf\xdf\xff\xf7\xa7\xbf\xfe\xf8\x9f\xbf\xfd\xf2\xe3\xb7\x1f\xff\xfb\x8f\x7f\xfd\xf6\xf3\x8f\x9f\x7e\xfd\xc7\xaf\xbf\x8f\x9a\xff\xfe\x2f\x00\x00\xff\xff\x0a\x55\x10\x23\xa2\x34\x02\x00"); -func _aggg ()(*asset ,error ){_fdac ,_ecff :=_ebc ();if _ecff !=nil {return nil ,_ecff ;};_fdf :=bindataFileInfo {_ag :"Add-V",_bc :1483,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491110,0)};_ac :=&asset {_cd :_fdac ,_dce :_fdf };return _ac ,nil ;};func _gbe ()(*asset ,error ){_cbf ,_acc :=_gca (); -if _acc !=nil {return nil ,_acc ;};_fdfa :=bindataFileInfo {_ag :"Adobe-KR-4",_bc :1313,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491427,0)};_abeg :=&asset {_cd :_cbf ,_dce :_fdfa };return _abeg ,nil ;};func _bgaa ()([]byte ,error ){return _dc (_aaad ,"UniJIS-UTF32-H")}; -func _geda ()([]byte ,error ){return _dc (_bfde ,"GB-H")};func _ef ()(*asset ,error ){_cfbb ,_gebg :=_be ();if _gebg !=nil {return nil ,_gebg ;};_gfbg :=bindataFileInfo {_ag :"90ms-RKSJ-H",_bc :3820,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491019,0)}; -_aed :=&asset {_cd :_cfbb ,_dce :_gfbg };return _aed ,nil ;};func _acdd ()([]byte ,error ){return _dc (_aefa ,"Adobe-KR-UCS2")};func _aedda ()([]byte ,error ){return _dc (_edfa ,"NWP-H")};func _bb ()(*asset ,error ){_ad ,_bde :=_dd ();if _bde !=nil {return nil ,_bde ; -};_ab :=bindataFileInfo {_ag :"78-EUC-H",_bc :12552,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490820,0)};_cc :=&asset {_cd :_ad ,_dce :_ab };return _cc ,nil ;};func _ffg ()(*asset ,error ){_agdd ,_ebbd :=_edd ();if _ebbd !=nil {return nil ,_ebbd ;};_ceee :=bindataFileInfo {_ag :"Adobe-Japan1-0",_bc :1097,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491303,0)}; -_ggg :=&asset {_cd :_agdd ,_dce :_ceee };return _ggg ,nil ;};var _adeg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x4d\x6b\x24\x37\x10\x86\xef\xf3\x2b\xfa\xb8\x39\x6c\xac\xcf\x96\x04\x8b\x21\xec\x12\xe2\x85\x4d\x42\xbc\xbb\x09\x84\x1c\x5a\x2d\xb5\x33\x10\xcf\x0c\xe3\xf1\xc1\xff\x3e\xe8\xad\xb7\x66\x71\x72\x30\xee\xa7\x4a\x5d\x1f\x52\xa9\xaa\xe7\xe6\xfd\xdd\x87\xbb\xc3\xfe\x32\xdd\xfc\x7a\x3e\xae\xf7\xfd\x32\x6d\xfb\x43\x3b\xf7\xa7\xe3\xf3\x79\xed\x53\xed\x0f\xfb\xc3\x6e\x67\xdd\xd4\xf6\xeb\x45\x11\xff\xd6\xc7\xe5\xb4\xdb\xdd\x7c\x39\xec\x3f\xde\xdd\x3b\x63\xc2\xdb\x2f\x9f\x7f\xcc\x6f\x7f\x9a\x9e\x9f\x3a\x75\xef\xef\x3e\xdc\xbf\x3c\x5d\xfa\xe3\xdd\x61\x3b\x4e\x5e\x6c\xb4\xe7\x13\xed\x4c\xd3\xcd\x6f\xfd\x61\xff\x74\x39\xbf\x4c\x6f\x7e\x68\xc7\xda\xbf\x9b\x5a\xdf\x86\xfc\x97\x73\xeb\xe7\xfd\xe1\x61\x7a\xf3\x71\x39\x2d\x07\x7b\x55\xdc\x3f\x9f\x4e\xff\xf4\xc7\x7e\xb8\x4c\x09\xb2\x7e\x68\xf8\xbf\xbb\x79\xff\x69\x39\xfd\xbc\x3c\xf6\xe9\x7f\x31\x7d\xc5\x0a\x2c\xf8\xda\xcf\x4f\xfb\xe3\x61\xb2\xdf\x1b\x33\x7f\x13\x7f\x7e\x39\xf5\xc9\xd2\xd0\x1f\x5f\xee\x3e\x4c\x7f\xda\xc9\x9a\xc9\xc5\xd9\xbb\xbf\x28\xff\xfd\xd3\xb1\x5d\x57\x59\x63\x24\x8d\x75\xdf\xd6\xbf\x97\xf3\xee\xdd\xea\xaa\xb9\x9d\xb2\x9b\xcb\xee\x5d\x77\xd9\x14\x73\x3b\xa5\x5c\x3c\x29\x82\x1c\x69\x06\x45\xa1\x45\x74\x99\x24\xba\x24\x54\xdd\xb0\x99\x68\xa5\xfa\x41\x59\x68\x86\x07\x9f\x09\x76\xc0\x4c\x70\x03\x0a\xc1\x0f\x10\x7b\x29\x87\xdb\x29\x7b\x6b\x49\x11\x64\x48\x33\x48\x62\x4c\x23\x8e\x6c\xae\x94\x40\x81\x94\x41\xb4\xb2\x14\x90\x44\xd5\x4b\xbd\x9d\xac\xb3\x21\x13\x57\xe0\xac\xd8\x44\x9b\x88\x1d\x18\x0d\x71\x7b\xb5\x78\x31\xb2\xb8\x10\xad\x2c\x9e\x89\xee\xf5\x62\x2f\xda\x48\x0c\x82\xaa\x8d\xaf\x17\xcf\xa2\x65\x18\xc8\xee\x9b\x32\x83\x54\x57\x40\xea\x74\x79\x6d\xa7\x0e\x65\x72\xa4\x15\x64\x49\x0d\x84\xd4\x4a\xc8\xeb\xed\x94\x82\x1c\x79\x09\xb9\x81\x12\xa9\x83\x66\xd2\x06\xca\x42\x38\xe4\x68\x3c\xc9\x82\x68\x05\xc7\x1c\x4d\x20\x79\x10\xad\x94\x00\x2b\x96\x14\x41\x6a\x65\x06\x39\x52\x02\xa9\x95\x0c\x2a\xa4\x02\x9b\x6a\x65\x01\x31\xa3\x71\xd0\x29\x1a\xb5\x32\xf2\x8b\x4e\x3d\x34\x10\xf3\x1b\xa7\x9c\xa2\xd3\xa8\x37\x10\xfd\x2d\xc8\xcf\x31\xea\x05\xf9\x39\x7a\x5f\x90\x9f\xe3\x4e\xe0\x9a\x44\x4f\x2b\xb8\x26\xd1\xd3\xdf\x38\xc0\x14\x3d\x63\x19\x07\x98\xa2\x57\x0f\xc8\xc1\x33\x96\x05\x39\x78\xf5\x87\x1c\xbc\x7a\x40\x0e\x96\x1e\x2a\x22\xb3\x5c\x59\x03\xb2\xa5\x95\x0a\x0f\x46\xde\x8b\x19\x2b\x83\x25\x21\x87\x60\x48\xc8\x21\x38\x12\xce\x48\xaa\xbf\xc4\x0c\x9b\x52\xde\x25\x66\xe4\x17\x66\x12\xf2\x0b\xea\x01\xf9\x45\x4f\x82\xf7\x28\x36\xf3\xd8\xf9\xec\x9c\x25\x8d\xaa\x73\xb6\x90\x3a\x74\xba\x72\x03\x49\x64\x6b\x96\xfb\x93\xc4\x05\x6e\x57\x76\x66\xbc\xe8\xb3\xc1\x71\x66\x14\xc5\xa0\x71\x9c\x05\x17\x6f\xd0\x06\x4a\x20\x8b\x74\x8b\xcd\x24\x0f\x2a\xa4\x91\x52\x81\xc3\x41\x09\x64\x49\x05\xe4\x84\x16\xbc\x87\xf2\xf1\xa3\xc3\x81\x02\x49\xac\x44\x92\x58\x99\x49\x1d\x94\xc6\x20\xd0\x56\xbc\xcb\xf1\x3f\xbd\x79\xac\x1c\xe5\x9a\x5d\x72\x24\x6c\x5a\x92\x58\x1c\x1a\xcd\xec\xbd\x22\x52\x72\x99\x24\xc1\x14\x12\x82\xf1\x86\x84\x60\xae\xef\x21\x25\x2f\x2e\xbc\x24\xe1\x25\x25\x2f\x56\x7c\x20\x89\x95\x48\x12\x2b\x33\x09\x29\x79\xd9\x5e\x5f\xe5\x20\xc4\x43\xad\xdb\xed\xe4\xbc\x89\x12\xcc\x3a\x0a\x2f\xfb\x68\x48\x63\x3a\x78\x9f\x49\xa3\x01\xda\x32\xab\x12\xad\x9e\xd1\xac\xa3\xba\x86\xd2\x12\x93\x60\x24\x66\x41\x5d\x5c\x04\xd5\xf0\x22\x38\x13\x2b\x30\xa9\x9f\x55\xd0\x11\xa5\x72\xa8\x44\x53\x2a\x81\x5e\x0b\x42\x0a\xaa\xc3\xf4\xf1\x4a\x12\x51\x56\xcc\x50\x32\xed\x22\x01\x65\xfa\x40\x91\xfb\xc8\x68\x47\xd3\xc8\x9e\xc7\xb5\x2e\xd8\x93\xc0\xd0\x17\xd9\x13\xee\xe6\x8a\xa1\x60\x4b\xd1\x37\x67\xc4\xaa\x4a\x1c\x4a\xe0\x96\x8c\xb6\x91\x3d\x6f\xc0\x8a\xb6\x51\xae\x1e\x9b\x98\xa1\xcb\x6a\xb1\x94\x2e\x2b\x6e\x99\x31\xb4\x53\xe5\x8c\x02\x09\x1e\x43\x22\x25\x2c\xb5\xaa\xcc\x82\xf4\x59\x0b\x32\xa1\xcf\xba\x88\x52\x5f\xad\x50\x6a\x04\xab\x28\xb9\x79\xb5\x09\x4a\x44\x2d\x63\xaa\x1a\xde\xbc\x96\xad\x68\x0b\x11\xdb\xc7\x90\xda\x28\x8c\xec\xa3\x92\x44\xe4\x14\x51\xee\x3c\xbf\x36\xca\x22\x95\x18\x48\x38\x77\x46\xdb\x32\x4e\x88\x25\xdd\x30\xc4\x0a\xcf\xa4\x15\xd9\x20\x6e\x49\x2b\x5e\x50\xb5\x41\x30\x12\x11\x4f\xe0\xda\x8a\x4f\x0d\x73\x45\x49\x5b\x9d\x32\xed\xc0\x3c\x6b\x17\xb4\xc4\x0d\x65\x32\x5e\xdd\x2a\xaa\x36\x3b\x54\xf8\x20\x74\xcd\x44\x5d\x91\x91\x8f\x21\x38\x10\x99\x61\xe3\xb7\x8a\x8d\x4f\x05\xe3\x79\x10\x74\x86\x2f\x0e\x17\x29\x17\x03\x6a\x45\x56\x46\x92\x5c\xeb\x99\x24\xef\x29\xf5\x6b\xef\xdd\xea\x86\xc6\x91\x73\x79\xd5\xe1\x7c\xba\x76\xb8\xf3\x72\x78\xe8\xf2\xc5\x31\x26\x96\x3c\x58\xf4\xb3\xa8\xdf\x1e\x22\x2f\x01\xbd\x3a\x64\x8e\xf3\x71\xd4\xf2\x30\x5c\x84\xc4\xa9\x3b\x1a\x87\x3c\xe0\xa3\x21\xeb\x27\xcb\xac\x62\x7c\x2f\x64\x4e\xde\x51\x13\xf2\x50\x20\x56\x23\x8b\x8a\x2b\xc4\x3a\x7d\x3d\xc5\x0b\x46\x9f\x67\x80\xe3\x06\xc9\x03\xbe\x0d\xac\x4e\x59\x4b\x71\xc5\xd8\xe4\xe0\x0a\x35\xaa\x18\x53\xd1\xd0\xe5\xb8\x20\xf2\x80\xa1\x6e\xf9\x31\x50\xd5\x36\x8e\x23\x06\x9d\xa1\x5c\x1d\x51\xb7\x91\x1d\xca\x64\xb8\x1c\x0f\x0e\xdb\x9e\x28\xce\x14\x4b\xed\x1a\x8a\x4b\x50\x31\xfa\xb9\xb1\x14\xcf\x2a\x4e\x38\x07\xa7\x43\xf5\x6a\xa5\xa0\xa4\xd8\xcf\x5c\x89\x22\x77\xe8\x81\x6e\xe6\x90\xa8\x14\x7b\x69\x13\xbc\x12\x49\x4e\x79\x3c\x14\x99\x5a\x9e\xf2\x45\xe5\x1b\xe4\xbc\x16\xab\xa6\x24\x03\xdf\x16\xed\x4c\xa3\xca\xa5\x7f\x7a\x69\xd9\x6c\x2d\x65\x51\xb9\xf4\xb5\x4c\x3b\x63\xec\x4b\xbf\xb3\x22\xd7\xa6\x9a\x55\x2e\x6d\xb9\x68\x93\x54\xfb\x55\x1a\x8e\x61\xbb\xae\x41\xe5\x51\xe4\xda\x29\xaf\xeb\x37\x69\x33\xda\x58\xbc\xc8\x1b\x86\x96\x33\x4e\x9b\x4a\x55\xb9\xdc\x7b\xa7\xfd\x8d\x71\xb6\x22\x7e\x39\x52\x9a\xee\x72\x2b\x62\x07\xbb\x3f\x6e\x3b\xe2\x1f\x0f\x05\xf7\xae\xf0\x16\x6e\x22\x6e\xfa\x2b\xc4\xf2\x06\xca\x85\x03\x8c\xdf\xb9\xd7\xdf\x9d\xeb\xf3\xf9\xdc\x0f\x17\xfc\xca\xc5\xaf\xca\xf1\x4b\x71\x7f\xe8\xd7\x5f\xd3\xa7\xe3\x69\xbc\x85\xbf\x7f\x03\x00\x00\xff\xff\x7a\x11\xd0\xb4\x79\x0f\x00\x00"); -func _eefee ()(*asset ,error ){_bceff ,_fdcfg :=_fcbg ();if _fdcfg !=nil {return nil ,_fdcfg ;};_fffg :=bindataFileInfo {_ag :"V",_bc :905,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493073,0)};_cdcg :=&asset {_cd :_bceff ,_dce :_fffg };return _cdcg ,nil ; -};func _gfgd ()(*asset ,error ){_ddd ,_fage :=_fbcb ();if _fage !=nil {return nil ,_fage ;};_fdeg :=bindataFileInfo {_ag :"Adobe-KR-7",_bc :1853,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491445,0)};_gada :=&asset {_cd :_ddd ,_dce :_fdeg };return _gada ,nil ; -};var _fdcf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x4f\xeb\x2d\x3f\x92\xa0\x87\xef\xeb\x55\xdc\xe5\xfc\x16\xf3\xab\xcc\x54\xfc\x51\x42\x71\xc1\xcc\xb8\x71\x33\x8c\x6d\xdc\x1e\xdb\x60\xbc\x38\x27\x4f\x66\x53\xe0\xfe\x56\x51\x5d\xb3\x98\x77\x6f\xf4\x3c\xa7\xc6\xc6\x18\x6e\xad\x9e\xfb\xd1\xcd\xa3\x94\x94\x52\x28\x14\x0a\x85\x7e\xff\xef\xfe\xf1\xdf\xff\xe3\x6f\x7f\xfc\xeb\x8f\xdf\xff\x8f\x7f\xf9\xd3\xf5\x4f\xf7\x5f\x7f\x3c\x7f\xfc\xed\xf3\x97\xfb\x5f\xff\xf4\x9f\xff\x72\xdd\x3f\xde\xf7\x3f\xff\xf1\xb7\xdf\xfd\x6e\x3f\x7e\x7c\xfe\x78\xfd\xf5\x6f\x7f\x82\xeb\x5f\x5e\x7f\xfe\xdd\xef\xd6\xef\xff\xe9\xbf\xfc\xeb\x5f\xef\x7f\xf9\xc7\xdf\x9e\x3f\xfd\x18\x3e\xf7\xf9\xcf\x7f\xfe\x3e\xfb\xe3\xc7\xef\xff\xa7\xfb\x9f\xff\xf8\xaf\x7f\xfd\xcb\x7f\xf9\xf1\x6f\xfe\x9b\xcf\x9f\xde\xf7\xff\xef\xc7\xe7\x7e\x56\xfa\xff\xf0\x97\xcf\xfd\x97\x3f\xfe\xf6\xcf\x3f\xfe\xcd\x7f\xf8\xd3\x5f\xee\xd7\xfe\x5f\xff\xe3\x9f\xfe\xf3\x9f\xff\xfc\x7f\xde\xff\x72\xff\xf6\xd7\x1f\x3b\x69\xf7\x6f\x1f\xf8\xbb\xdf\xff\xbb\xff\xf8\xfa\xf3\x7f\xff\xfa\x97\xfb\xc7\xef\xff\xd3\x6f\x7f\xfc\x0f\xff\xf4\x6f\xff\xd3\xbf\xfb\xa7\xe3\xdf\xfe\x77\xfc\x27\xff\xf7\xbf\xdc\x7f\xf9\xd7\x3f\xfe\xe9\xb7\x1f\xfb\xf6\xff\xdf\xb6\xfa\xbf\xd3\xff\xe7\xff\xf2\xe7\xfb\x9b\xd9\xef\x7e\xff\xbf\xfd\xa7\x7f\xfc\xf7\x3f\xfe\xf7\xfd\xc7\xbe\xfd\x38\x32\xb6\xfa\x3f\xbe\xe9\xff\xeb\x7f\xfc\xd3\xe7\xfe\xb1\xf9\xd7\x61\x05\xae\x3f\x7d\xee\x7f\xfd\xf3\xeb\xba\xff\xf2\xfa\xed\x9f\xef\xdf\xfd\xf8\xf1\x87\x6d\xdb\xb6\x9f\x3f\xfe\xf0\xef\xfb\x1f\xfe\xe1\xe7\xfa\xfb\xbf\xf5\xef\x7f\xf8\x87\xf5\xf7\xfd\xdb\xe7\xff\xf5\x8b\xdf\xed\x66\xf4\xdb\x9f\xfe\xfa\xb9\x1f\xd3\xfe\x96\xc7\xb6\xed\xcf\xcf\x1f\xfb\xfa\xd5\xff\xf3\xbf\x7f\xb7\x6f\xdb\xf7\xed\x7f\xfc\xfc\xd7\x5f\x1c\xfe\xa2\xef\xf5\x8b\x3f\x6c\xdb\x6b\xe7\xef\x85\x63\x9b\xa4\x84\x29\xf1\xf3\xc7\xb1\x07\x29\x6d\x4a\xff\xfc\xb1\x67\x92\x32\x4d\x99\x3f\x7f\xec\x5b\x93\xf2\x32\xe5\xf5\xf3\x47\x95\xf9\xbc\x4d\x79\xff\xfc\xb1\x77\xad\x94\xb7\xef\x5e\xd8\x07\xcf\xbc\x7d\xfb\xc2\x3e\x36\x52\x0e\x53\xc6\xcf\x1f\x33\x06\x29\x96\x67\x61\x3f\x4f\x52\xca\x94\xfa\xf9\xe3\x08\x4a\xf8\xb6\x3c\x0b\xc7\xe6\xbb\x4e\x53\xce\x95\xcf\x41\x8a\x25\x5c\xa8\xa6\x16\x6f\x4b\xf8\xa6\x84\xd4\xe2\x7d\x99\x72\xfd\xfc\xd1\x49\xfb\xbc\x3f\xa6\x7c\x7e\xfe\xe8\xb0\xcc\xb7\x29\xf7\x7a\xc6\x9c\x1f\x53\x9e\xf5\x76\x4a\x78\x59\xc2\x85\x2a\xca\xf3\xb1\xee\x0b\x55\xbc\xeb\x63\xab\x2e\xec\x83\x77\x7d\xac\xc5\x42\x35\x75\xff\xf8\xae\x85\xb2\x0d\x3f\xbe\x6b\xa1\x6d\xe7\xdb\x77\x2d\x74\x92\xf3\xe3\xbb\x16\x3a\x29\xcf\xe3\xbb\x1e\xde\x45\x99\x1f\xdf\xb5\xd0\x96\xf0\xf1\x5d\x0b\x5d\xeb\x57\xfb\xce\xd7\x01\x9d\xeb\x5d\xfb\xc1\xbb\x40\xf9\xcc\xd1\xa6\xf4\xfa\xd5\xfa\x82\xfb\xf0\x57\x0b\x5d\x3b\x29\x87\x29\xc7\xaa\x85\xcf\x0c\x53\xc6\x7a\xe6\x20\x65\x9a\x42\x79\x06\x29\x8f\x29\xcf\xfa\x15\xf9\x04\xf5\x02\x5d\x41\x8a\xef\x5a\xa8\x26\x9f\xf0\x5d\x0b\x5d\x49\xca\x69\xca\xf9\xf3\x47\x7f\x9f\x79\x99\x42\x4f\xa0\x5e\xf1\x36\xe5\xbd\x9e\xe1\x5d\x69\x3e\x49\x99\x79\x57\x5a\xe6\xa4\xcc\xab\x9d\xf7\xb2\x35\x16\xaa\x4d\xb1\x35\x16\x9a\x9a\x1e\xf6\x28\x30\x0f\xba\xdd\x71\xf1\x10\x38\xb6\xf5\xb2\xc3\x0f\x0f\x8e\xed\x20\xe5\x34\xe5\x5c\x29\xfc\xea\xf3\x32\xe5\xb5\x52\x82\x94\xb7\x29\xef\x95\xd2\xa4\xf8\xb2\x85\x63\xe3\xf5\x9f\x8f\x29\x9f\x95\xb2\x9a\x75\x9c\x34\xd9\x58\x03\x3e\xa8\xea\x78\x0d\x53\xce\x9f\x3f\x62\xae\xe6\x18\x0e\xcb\x71\xad\x67\xce\xf5\xf6\x71\xf9\xcc\x75\xfe\xfc\x91\xfb\x2a\x61\x6c\x3c\x03\xf6\xed\x58\x3d\x28\x76\xbe\x4f\xec\x49\xd2\x46\x12\x4d\x14\xc3\xa4\x55\xc8\x18\x26\xc5\x92\x59\x1b\x5d\x26\xd2\xbc\x92\xbc\x56\x8f\x3d\xb6\x7d\xbd\xf0\xd8\xf6\x35\xea\x37\x53\xca\x94\xfa\xf9\x63\xdf\x77\x52\xa6\x29\xe7\x4a\x09\x52\xde\xa6\xbc\x57\x6b\x2f\x11\x73\x6c\xfb\x65\xd2\x67\x3d\x54\xa4\x3c\xa6\x3c\x3c\xd4\x2b\x09\xa9\x78\x6c\xc7\x92\x82\x91\xa4\x1c\xa6\x1c\x3f\x7f\xcc\xda\x7c\x28\x4d\x2a\x4a\xb9\x52\x86\x3f\x5b\x38\xcc\x7b\xf8\xb3\xd5\xb1\xf7\x41\xb1\x47\x98\x12\x3f\x7f\xcc\x9c\x07\x49\x66\xb4\x70\x8e\xc3\xdf\x59\xb9\x85\x73\x1c\xd4\x65\x9c\x26\xbd\x56\x09\x76\x7f\x68\xf5\x16\xf6\xf4\x77\xd6\x6e\x61\x32\x6e\x8e\x2d\x2c\xc2\xc2\xcc\x93\x32\xb4\x65\x58\x98\x56\xaf\x5f\xa6\xd8\x50\x3e\x64\x56\x4d\x4f\x0d\xda\xae\x3f\x26\xdd\x2b\x29\x37\x92\x6c\xbc\x85\x19\x14\x61\xee\xa4\x4c\x32\x5f\x0d\xb5\x6f\x7c\x3b\xb0\xc7\x4e\xca\x69\xca\xea\xce\xfb\x2a\xc0\xee\xf7\x05\x79\x6e\xa4\x94\x29\x4b\xaa\x2f\x69\x73\xec\x07\x39\x83\x83\xba\xed\x7e\x15\x70\x14\xbf\x3a\xfc\x15\x12\x29\x7c\xe6\x6d\xca\x6a\xa4\x25\xf9\x0f\x47\xee\xb1\x67\x2c\x19\x7e\x92\xe2\x33\x89\x0c\x1f\xcc\xb7\x7f\x9b\x23\xff\xbf\xa6\xcd\x63\x2f\xbe\xf4\x5e\x6b\x8c\x14\x55\x6a\x53\x7a\xa5\x24\x29\xa7\x29\x6b\x80\xed\x6d\x8a\xc5\x5d\xd8\x9b\xe2\x9e\x16\xe5\x5c\xdd\xba\x29\xee\x99\xa6\xe4\xea\x7a\x34\xdf\x69\x95\x4e\x1a\xc2\x5f\xb5\x29\x4b\x62\xf0\x65\xf6\x73\x9a\xb2\x24\xc6\xf7\xed\x36\xf1\xc2\x61\x25\xdf\x96\x67\x61\xce\xe2\x67\x6f\x5b\x74\x61\xce\xe2\x43\xbc\x2d\xe3\xc2\x9c\x4b\xaa\x1e\xfb\xdb\x42\x32\x07\xcf\x32\xaf\x30\x29\x48\xa2\x98\x48\x36\x31\xe7\xe4\x87\x97\x6f\xbc\x78\xe3\x24\xfb\xcb\x1f\x5e\xb9\x92\xce\x22\xe9\x63\xd2\x67\x25\xed\x26\x3d\x26\x3d\x24\xf1\xc3\x8f\x79\x7d\xc8\x8b\xd1\xbd\x7f\x2c\xfd\x87\xd2\xa7\x49\x96\x7e\x61\x3f\xfd\x9d\x85\xff\x50\xf8\x34\xc9\x32\x7c\xd0\x20\x78\xdf\x6d\xe6\x0b\xe7\x6e\xf7\xbb\xcd\x7c\xe1\xdc\x4f\xfa\xcd\x6d\xe6\x0b\xe7\x7e\xd2\xca\xb7\xb9\x2f\x9c\xfb\xc9\x07\xbc\xfd\x5c\x0b\xe7\x7e\xd2\xcc\xb7\xdf\x6b\xe1\x44\x10\x1f\xfb\xed\x07\x5b\x38\x51\x63\x8e\xfd\xf6\x8b\x2d\x9c\x4c\x04\xc7\x81\x3e\x27\xf6\xb3\x49\x39\x4c\x59\x15\x4c\x9f\x19\xa6\xac\xd1\xc5\xeb\x8e\xad\x4c\xa9\x25\x04\x68\xbd\x63\x6b\x93\x50\xd9\x0e\x52\xa6\x29\x4b\x65\xe3\x6b\x1d\x0e\x4a\x30\x1d\x17\xc7\xf6\x36\x69\x8d\x9d\x69\x46\x97\x29\x08\x18\x7a\xe3\xb1\x3d\x26\x2d\x75\x67\x5f\x4d\x70\xa0\x28\x88\x03\x49\x75\x38\xbc\xc1\x6c\x44\xdc\xb1\xbf\x4c\x7a\xad\xae\x4f\xb9\xf7\x8f\x29\x4b\x34\x4f\xb2\xde\x6f\x53\x96\x76\x3a\xfc\x95\x2f\x43\x58\xf7\x4e\x93\x28\xac\xc1\xce\x68\x38\x14\x0b\x60\xf6\x30\x29\x4d\xb2\x4d\xa8\xdc\x61\x9b\x1c\xab\x05\xf8\xc0\xc7\x61\x0b\x2c\xf8\x7d\x8f\xc3\x42\x2e\xd8\x2f\x0e\xc5\xc9\x71\x5c\xab\x90\xfe\xca\x42\x2e\x1c\x4c\x44\x87\x32\x1e\xec\x4c\x28\x87\x22\x1e\xec\xd3\x67\xfc\x48\x0b\xc7\x4e\xce\xc3\xf2\x2c\xcc\x71\xf8\x90\x2d\xb2\xb0\x37\x85\x0e\x1b\x72\x61\x26\x5d\xe9\x08\xf3\x5e\x98\x71\xfa\x94\x1f\x77\x61\xa6\x5d\x29\x6d\xa5\x85\xd9\x48\xf8\x23\xfd\x4c\x0b\xb3\x0f\xbe\x5c\xda\x72\x49\xf7\xa2\x57\x28\x2c\xc1\xec\x83\x0a\xa7\x8d\xb2\x30\x97\xb8\xfc\xc3\x71\x28\x0f\xc1\x3e\x4c\x31\xf3\x85\xfd\xfb\x8c\x79\x97\x5f\x85\xcc\xcb\x86\xaa\xd5\x2c\xdf\x14\x9b\x65\x69\x4c\xb3\x0f\x93\x6c\xdf\xe2\x93\x33\x5d\x1d\x0a\xdb\xa3\x59\x15\xd8\x9e\xed\x0f\xbb\x49\xa2\x7e\xed\xe7\x6c\x74\x7e\xbf\xa7\xf3\xdc\xc1\x3c\x17\x4d\x5e\xd3\xbc\xd6\xb4\x35\xc3\x46\x9e\x96\x74\xae\x21\x35\xe9\x3e\xd3\x82\x32\xa9\xb5\x9d\x6c\xda\xec\x0b\xb3\x91\xd4\xc7\xb4\x0c\x73\x8d\xb2\x49\x77\x9d\xbe\x6f\x61\xc6\x37\xc9\x0e\x34\x29\x82\xb9\x2b\xf3\x8f\xd3\x4a\x93\xd5\xcb\x66\x7f\xd1\xec\x4c\x5b\xc7\xcb\x32\xbc\xd0\x1c\x36\x9a\xf4\xe5\x0f\x17\x76\x47\xec\xdb\xdc\xdf\x8e\x4f\xea\x7c\xd9\x7e\x08\xd3\x68\x72\xff\x58\xac\x0f\x65\xb0\xef\xdf\x3e\xb5\x30\xc7\x41\xc7\xba\x1d\x6b\xb7\x9a\xd9\xef\xfe\x70\x0c\x25\xcb\x50\xb2\xd0\x3f\xc6\x4e\x5b\x81\x1d\x79\x30\xf6\x30\x85\xb6\x5a\x2b\x99\x23\xec\x1e\xb1\xbe\x64\x8f\xbf\x63\x7e\x8d\xe2\xd5\xc1\x07\x6e\x3e\x5d\xa8\xb4\xc4\xfa\x36\x93\x36\x8a\x39\x4c\x59\x62\x75\xa3\x8d\xe2\x44\x3c\xc5\x7b\x7d\x14\xfa\x7d\xb0\x38\x3c\x82\xda\x0f\x9a\x3b\x9c\x4a\x62\x09\xda\x46\x95\x4b\xe5\x2c\x48\x84\x43\xa2\xce\x8a\x5c\x2b\xd1\x23\x95\xbc\x20\x0f\x53\x86\x29\x4b\x67\xa1\x9e\xa9\x74\x04\x79\x98\xf2\x31\xe5\xf3\xf3\x47\xa2\xc5\xe4\x76\x9b\x72\xaf\x14\xdf\xfe\x98\xf2\xac\x7c\x56\x35\x72\xb7\x3c\x0b\x79\x98\x62\x79\x16\x32\x4d\xb1\x3c\x0b\xc9\x87\x4e\x85\x2c\x48\x06\x61\xfa\x29\x40\x32\x98\x72\x4f\x53\x72\xfd\xaa\x48\x29\x53\x6a\xa5\x24\x29\x6d\x4a\xaf\x7c\x4c\x99\xa6\xcc\x95\x8f\x39\x9f\xa6\xac\x05\x40\x9a\xf3\xcb\x94\xd7\x4a\xf1\x99\xb7\x29\xef\x95\x8f\xcf\xd8\x3e\x3b\xed\x63\xce\xb6\xcf\x42\x86\xe5\xb1\x7d\x96\x84\x4f\x74\xff\x54\xc0\x83\x44\x7f\x4c\x35\xc1\x5c\x02\x3e\xcb\x14\xeb\x7e\x50\x77\xf2\x39\xac\xfb\x41\xdd\x69\x67\xe7\x00\x90\x8c\xe1\x54\x5b\xcc\x35\x13\x24\x1a\x65\x1e\xd6\x74\x21\xc3\x14\x6b\xba\xa6\x80\x44\x45\x4a\xa7\x00\x90\xc3\x7c\xac\xd7\x41\xbd\x7c\xbb\xf5\x5a\x93\x42\x96\x6f\xf7\x2b\x2f\x24\x9d\x35\x5d\x2e\x80\x44\x80\xe4\xb0\x5e\x83\x7a\x51\xf7\x61\xbd\x06\xf5\xf2\x19\xeb\x35\xa8\x17\x6f\x77\x72\xc9\x35\x95\x24\x8a\x66\x3a\x95\x80\x0c\x5a\x7e\x58\xaf\x41\xbd\xcc\xd9\x7a\xad\xf5\x44\xa2\x7a\xa6\xcb\x09\x90\xc3\x67\xac\xd7\xa0\x5e\xa6\x58\xaf\xb1\xea\x85\xfc\xcc\x61\xbd\x06\xf5\x22\x25\xac\xd7\x5a\x85\x27\xf2\x26\x5d\x83\x80\x44\x48\xa4\xf3\x58\x06\x6f\x27\xe7\xf0\xed\x0b\x19\x3c\xa3\xba\x0c\x0e\xc7\xc5\xcb\x9c\x17\x76\xbf\xc5\xcb\x16\x5b\xd8\xd1\x56\x53\xc9\x09\x0e\xcb\xac\xe0\xcc\x25\x25\x0f\xc7\xc5\xcb\xef\xbe\xe0\x8a\x2f\x5f\xb6\xd8\xc2\x61\xff\x79\xd9\x62\x0b\x87\xa3\xe0\x65\x8b\x2d\xb8\x98\x4c\xf5\x67\x30\xdb\x9f\xa9\x3f\x83\xdd\x0f\xaf\xfa\x0c\xf6\xf2\x19\x3f\x18\x52\xaa\xd1\x74\x52\x31\x05\x0e\xa5\xcb\xdb\x12\x2d\x1c\xca\xa4\xb7\xef\xc7\x86\xd5\xcc\x7a\xa9\xd2\x0d\x76\x3b\xcc\xdb\x0f\xb4\xb0\x97\x85\xf4\x03\xbd\x99\x3f\x6d\x6b\x15\x73\x70\xec\x3c\x74\x59\x93\x0b\x95\x8d\x62\x5f\x16\xfb\x42\x04\xa3\xe9\xe4\x65\x21\x17\x76\x87\xcb\x65\x21\x17\xf6\xf2\x19\x9b\x6d\xe1\xb0\x7b\x5e\x16\x7b\xe1\x70\x20\x5e\x8a\x8a\x0b\x05\x62\x9a\xe4\xd7\xbf\x58\xca\x5a\x46\xab\xb6\x30\xcb\xee\xe8\x4c\x06\x76\x87\xbd\x0b\x05\xb0\xb3\x00\x4c\x85\x7b\xae\x45\xc1\xa1\xe0\x56\x21\x07\xb3\xed\xb3\xce\x6c\x60\x16\x5d\xa2\x36\xbe\x09\xd8\x11\xd4\xe5\x64\x07\x76\x04\x75\x29\xba\xc1\x81\x20\x2a\x45\x37\x38\xe8\xb4\xa5\x88\x03\x07\xc3\xbc\x14\x71\xe0\x3c\x0e\x93\xcc\x68\x27\x23\x5e\xaf\x5e\x0b\xce\x03\x11\x5b\x0a\x0c\x30\xab\xe2\xd7\xb3\x66\x39\xf0\xc0\x8e\x40\x29\x07\x1e\xd8\x11\xaf\xe5\x54\x5c\x4b\x2f\xfb\x16\xa6\x86\x29\x0c\x18\x9f\x09\x53\x62\xa5\x50\xcf\xb2\x75\x16\x0e\x26\x92\xc2\xb4\x25\x0e\x44\x79\xd5\x34\x85\x01\x73\x92\x72\x9a\xf2\x5a\xab\x52\xea\x54\xb6\xce\xc2\x91\xfe\xca\xd6\x59\x38\xd2\xf2\x58\x6f\xf4\xbd\x3c\xd7\xcb\xda\x39\x0a\xcc\x62\xaa\x6d\xa7\x1b\x30\x8b\x0f\xdd\xca\x26\x30\x6b\xe3\x87\xe9\x0f\xd3\x1f\xae\x26\x69\x15\xc5\xc6\x62\x81\x59\xf5\x68\xb5\xb4\x5e\x8b\xf1\x39\xd6\x47\x1b\x5a\xd2\xc7\xc6\x3a\x6b\x29\x12\x63\x63\xb6\x17\xfb\x36\x49\x99\xa4\xac\x39\x79\x5f\x63\x76\x6c\xcc\xc9\x62\xf6\x66\x92\x3f\x5b\xd8\x57\xe7\x1b\xd8\xb0\x16\x56\x4f\xdb\xc9\x88\xea\x0d\x0c\x57\x93\xb1\x3e\x36\x7a\xc8\xc0\x28\x75\x8e\x83\x22\x1d\x16\x69\x61\x62\x01\x1d\x9a\x89\xc4\x6c\x8b\x89\x09\x74\x6c\xd4\x25\x49\x79\x99\xf2\x60\x4b\x8a\x95\xf2\xbc\x4d\x59\x83\x6d\x33\xe5\x32\xe5\x5a\xcf\xac\xd6\x1c\xda\x6d\xc7\xbe\xba\xc5\x58\x03\x62\xec\x74\x0b\x61\x9b\xec\x74\x8b\xb1\xcf\xfb\xe7\x8f\xd8\x56\xb9\x5d\xb1\x8e\x63\xc7\x72\x3a\x56\x0a\x03\x42\x1c\x6b\x18\x8d\xc3\x9c\xc1\xec\xa5\x92\x8d\x83\xc9\x48\xcc\x9e\xe4\x54\xe6\xb4\x54\xf5\x6a\x52\xb0\x35\x89\x63\xe9\x2e\x43\xf5\x7a\x1c\x93\x56\xa2\x48\xc7\xe9\xcf\x16\xce\xc1\x27\x38\xce\x30\x29\x96\x9e\x38\x4d\xba\x4d\xba\xb1\x93\xf1\x43\x74\x69\x71\x6e\xe7\xca\x7e\xb0\x34\x18\x63\x69\xfd\xb5\x24\xd7\x18\x73\x9a\x72\xfe\xfc\x81\x0d\x6e\x0c\x8b\x30\xe6\xf5\xf3\x47\x85\xbf\xfa\x98\xf2\xfc\xfc\x51\x74\x94\x61\x99\xc6\x2a\x40\x0d\x53\xd2\x94\x35\x41\x4f\x72\x3e\xcd\x79\x21\x97\xc2\x3b\x06\x16\x9c\x31\x5e\x6b\xd2\x3c\x79\x86\xa9\x6d\x8c\x35\x6d\xe5\x39\x48\x69\x53\xe6\x2a\x4f\x92\xf2\xfd\xd5\x2a\x4f\x9a\x62\x79\x5e\xab\x3c\xf4\x88\xf1\xb6\x3c\x6f\x6a\x41\xce\x6f\x6b\xb1\xe6\x88\x1a\xd4\xeb\xf2\x99\x35\x21\xd4\x52\x21\xc6\xb8\x0e\x53\x30\xb6\x91\xcf\x65\x79\x16\xaa\xfc\x55\x98\xb2\x94\x93\xd3\x14\x6b\xba\x50\x6b\xea\x1f\x83\x59\x44\x54\x51\xc2\xcb\x5a\x60\x01\x5f\xc2\x7f\x8c\xcb\xd6\xb8\xa8\x97\x6f\xb7\x5e\x0b\x55\xd4\xfd\xb2\xcc\x0b\x58\x64\xc7\x60\x12\x11\xb3\x4f\x5f\xf6\x98\xb4\x2a\xb6\x53\xe8\x8f\x15\x73\xe7\x85\x67\x3e\x56\xe3\x43\x35\x7c\xc6\x22\x7e\xb0\x22\x52\xa0\x8f\x05\xc2\x24\x6f\x55\x3f\xbe\x6c\xa1\x92\x22\x62\x6e\x17\x4b\x5e\xaf\x7f\xda\xf4\x0b\xb5\x2a\x16\x37\xe3\x43\x54\xac\xd7\xc7\xcd\x52\x43\x54\xaf\xe1\x18\x37\xb2\x46\xf4\x28\x93\xda\xa4\xfe\xf9\x23\xd8\x35\x89\x1b\xf9\x23\x0a\x05\x3b\x6e\x6c\x38\x22\x59\xc5\xc5\xbd\xbd\x4c\x7a\xb1\x2a\xd8\x49\x7a\x9b\xf4\x66\x4b\xa6\x48\xfa\x98\xb4\xf4\x70\x0c\xec\x71\xef\x96\x8b\xed\x9e\x63\x0d\xd3\xb8\x11\x5d\xa2\xb7\x20\x2f\x16\x14\x22\x31\x6d\xc4\x8d\x38\x13\xc9\xea\x32\xee\xdd\xa2\x2e\x8c\xb9\xba\x6e\xdc\xbb\x45\x65\x05\xf1\xb7\xbc\x6e\x93\x50\x9a\x27\x3f\x3c\x2c\xd7\x42\x9d\x07\x49\xd8\xd4\xc5\x98\x9b\x49\x66\xcf\x6e\xd1\xf4\x87\xc3\xec\x17\x62\xb7\x10\xc3\x6a\x2f\xd4\xac\xed\x97\x13\x6a\xdc\xe1\xab\x16\x6a\x3b\x68\x95\xf0\xd3\x2c\x04\x26\x92\xb8\xc3\x26\x58\x18\xf3\x34\xc9\x57\x2d\xd4\x19\xbc\x3d\xac\xc9\x42\x1e\xd6\x37\xac\xef\x42\xcf\x8d\xaf\x15\x8f\x49\xec\xe7\xed\xe4\x95\x36\xe7\xc2\xc0\x82\x19\x77\x5a\xdf\x85\xac\x49\x73\xa6\xf5\x5d\xa8\x31\xc9\x2b\x7d\xe3\xc2\x98\xa7\x3f\xf4\x8d\x0b\xa3\x76\x7f\xe8\x1b\x17\x72\x16\x45\x2d\x4b\xbf\x30\xd2\x72\x95\x79\x2d\xc4\xb0\x25\xda\x96\x58\xa8\x61\x97\x69\x8b\xba\x90\x9b\x8d\xde\xf6\xdb\x66\x31\xb9\x53\x88\xb6\x10\x4d\x21\x36\x5a\x62\xda\xd0\x0b\x31\x26\x79\x4d\xf3\x5a\x08\x16\xb8\x71\x4f\xab\x3d\x91\x91\x76\xf8\x69\x51\x17\xf2\xb0\xa1\x97\x28\xfe\xa2\xc2\x3a\x4e\xdf\xb8\x50\x18\x52\xe3\x3e\x1d\x88\x0b\x85\xe2\x11\xf7\x69\x87\x5f\x28\x14\xfc\xb8\x4f\xcb\xb5\xd0\xd3\xa2\x9e\x8e\x01\x84\xf9\x16\x14\xf5\xb4\x03\x2c\x54\x6f\xd4\xf1\xb4\xa8\x0b\xb1\xa5\x79\x59\xd4\xd3\xa2\x52\xae\xd3\x72\x9d\xac\xa6\x9a\x1f\xbe\x2c\x04\xfb\x71\x75\x32\x36\x5f\x16\xe2\xc5\x1e\xa6\x43\xff\x65\x21\x16\x06\xb6\xfc\xb8\x5f\x16\x62\xa1\x6b\x9a\x97\x4d\xe8\x7c\x11\x54\xfb\x65\xb9\x16\x9a\xad\xcd\xb8\x5f\x96\xeb\xe5\x66\xa7\xd9\xdb\x84\x0b\xa3\x94\x52\x2f\x3b\xc0\x42\xf5\x66\xb9\x2c\xfd\x42\xc4\x41\xf6\x6f\xdf\xb8\x10\xbb\xe3\xfc\xad\xfc\x61\x9f\x3d\xac\xf6\x65\xdb\x2f\xe4\xb7\x10\x97\xd5\xfe\x4e\x37\x7c\xda\xcb\x3a\x2e\xf4\x57\x70\x5d\x76\xa6\x85\x31\x6d\x9c\xcb\xec\x17\x62\xf3\xa3\x5d\x56\xe8\xa2\xfb\x5a\xfa\xcb\xd2\x2f\x14\x46\xbe\xb8\x3f\x66\xbf\x50\xe1\x18\xfa\xd8\x84\x0b\x79\x58\x88\x8f\x15\x5a\xe8\xef\xb0\xfa\x58\x88\x85\xc2\x3e\x12\xf7\xc7\x56\x5d\xc8\xdd\x26\xfc\x38\x1e\x17\x32\x76\xca\xf5\xb1\x10\x1f\xc6\x90\x15\xfa\x38\xf8\xd8\xbe\xc7\x78\x1d\xf7\xed\xb0\x5a\x08\xf6\x7b\xe2\xbe\x2d\xea\x42\x84\xa3\xe3\xb6\xa8\x0b\x15\xca\x89\xc7\x56\x5d\xc8\x39\xa8\xd0\x63\xcf\x59\xa8\xf3\x30\xc9\x0a\x2d\x8c\x52\x7a\x3e\x56\x68\x61\x60\x4e\x89\xfb\xb1\x09\x17\x2a\xd6\xc2\x32\x1e\xa7\x29\x10\x1b\x72\xe2\x71\xb6\x01\x8d\x46\x1a\x8f\xb3\x0d\xa8\x60\xb8\x3f\xce\x36\x20\xb6\xf4\xa9\x8f\x49\xeb\x73\x6c\xd4\xf1\x61\x6d\x25\x62\x5b\x13\x7c\x3c\x2c\xae\x44\x6e\xbd\xea\xf8\x60\x18\x13\xb9\x31\xd2\x1e\xa7\x29\x30\xbf\x49\x87\x3f\x5c\x88\x93\x99\xeb\xc1\x6a\x22\xe2\xf4\x29\x94\x67\x11\x71\x52\x08\xe7\x11\x90\x3d\x7c\xca\x0a\x61\x26\x61\x2f\x38\x1e\xac\x22\x22\x8f\xa5\xf3\xc5\x33\xac\xd0\xc2\x88\x41\x92\x13\x05\x28\xb6\x22\xe3\x09\xdf\x18\x8e\x0e\x2a\x14\x6d\x12\x9d\xe9\xa4\x71\xc2\x42\x2c\x34\xd6\x9b\x78\x9c\x3b\x40\x1d\xd3\x24\xdb\x6b\xa1\x50\xb5\xe2\x71\xee\x00\x35\xf9\x8e\x4f\xda\x5e\x0b\xc5\x16\x59\x3c\x69\x7b\x2d\x14\x1b\x46\xf1\x64\x9a\x84\xe8\x58\x0a\x61\x3c\x4e\x27\x20\x4f\x5b\x22\x6d\x89\xe4\xd3\x7e\xb3\xf7\xd3\x2e\xe4\x6e\x07\x48\x1b\x27\xd1\x3f\x99\x15\x9e\x32\xaf\x85\x4e\xba\xdc\x53\x16\xb5\x98\x74\xfa\xfc\xf5\x54\xfc\xb4\x35\x59\x88\x93\x31\xf0\x38\x01\x81\x11\x83\x62\x3b\x01\x81\xd8\x0f\x93\x2c\x76\xe3\x89\x64\x73\x3a\x01\x81\x0a\xbb\x72\x5b\xa0\x85\x64\xdf\x35\x9e\x69\x43\x4d\xcc\x58\x7e\xd3\xe9\x1b\x27\x6f\x6c\x93\xec\x58\x13\x95\xc8\x0e\xef\xcc\x05\x22\x50\xc2\x1e\x67\x2e\xd0\xe3\x9b\x97\xe5\x5a\x18\x73\x50\x21\x27\x33\x10\xb9\xf9\x94\x5f\x7e\x21\xcb\xcf\x3c\x2d\xea\xf4\x33\x93\xe4\xcc\x05\x6a\x20\x7f\x9e\xd3\x42\x9c\x4c\x9f\xf6\x35\xe7\x24\xd0\xd8\xcb\xe3\x71\x4e\x02\xa3\x27\x6f\x3c\x7d\xe3\x42\x0d\x7f\xa8\xa0\x07\x81\xa7\x4d\x3c\x2f\x0b\xb1\xd0\x67\xf1\xc3\xb7\xbd\x68\xa1\x47\xd1\x84\x4e\x07\x20\x22\x28\xd7\xdb\x1f\x2e\x74\x22\x17\x1f\x16\x16\x62\x38\x7d\x3e\x97\x0d\xbd\xd0\x2a\x4b\x8f\xd3\x01\xc8\xb6\xed\x2f\x3b\x16\x6b\x82\xaf\x64\x71\x3a\x00\x75\xda\xd7\x2e\x4b\x7f\xe1\x34\x85\x72\xf8\x7c\x6c\xaf\x0f\x63\x40\xc9\xf2\xf1\x8d\x0b\xa3\xec\xdd\xce\x10\xa0\xd9\xb0\x8a\x47\xd9\x0f\x32\xed\x72\x1f\xdf\xb8\x10\xaa\x54\x8f\x82\x1e\xa4\x93\xff\xa3\xa0\x07\xc9\x9e\x7d\x3c\xb7\x3d\x7a\xa1\xf1\xcb\x8a\xe7\xb6\x5c\xb7\x5d\x8e\xec\x6f\x4b\x7f\xb3\x5d\x60\xab\xde\xe6\xb5\x90\xb8\xbe\xc4\xf3\xf8\xc3\x85\x31\x51\x70\x9e\xc7\x0a\x2d\xc4\x89\xd6\xf0\x3c\x7e\xa1\x85\x4e\x9b\xf0\xb1\x4f\x2c\xe4\xc6\x84\xfd\x3c\x56\x68\x21\xcf\x23\x7f\xf7\x87\xc4\x0c\xf2\x45\xd2\x73\x72\xc3\x3a\x26\x22\x8e\x49\xd2\x69\x12\xfb\x2a\xa7\x4f\xbd\x4d\x72\x2a\x36\xe9\x63\xd2\x9a\x05\xcf\x35\xb5\x24\x16\x94\x2f\x62\xae\xd1\x91\x5a\x52\x44\x1c\xdf\xa7\x7c\xe3\x42\xd3\x4d\x12\x8b\xc9\x17\x7d\xae\xc6\xc9\x0d\xbb\x90\xa8\x71\xfa\xd4\x65\xd2\xb5\x26\xd9\xf5\x1d\x53\xf3\x8a\x18\x65\xb9\xb0\xc0\x89\xde\x96\xbc\x4e\xfc\x7f\xbe\x68\x1a\x27\x37\xf6\x19\x44\x9c\xab\x63\xe6\xc6\x46\x83\xe8\x31\x28\xc4\x61\x51\x17\xc6\xb7\x8e\xec\x36\x8b\x9a\xdf\xa7\xa6\x49\x13\x0b\x0b\x45\x3d\x2c\xfd\xc1\x9a\x76\x6c\x24\xd9\x84\x07\x42\xc1\x0a\x1d\x56\x68\xa1\x19\xa2\xb9\x1d\xb6\x2a\xeb\x24\xdc\x07\x53\xef\x20\x91\xb3\x28\x7d\x58\xfa\xc0\xcb\x66\xa7\x10\x61\xb9\x16\x46\x0c\xbe\x63\x58\xae\x85\x81\xdd\x23\xb7\xb0\xa1\x17\xea\xb0\xa8\x61\x7b\x85\x03\x99\x3a\x32\x8f\x88\xae\xc9\x77\x4c\x2b\xc4\xa4\xf1\x2d\x44\x5a\x7a\x66\x08\xf6\xdf\x72\x2b\x7f\xb8\x30\x6a\xe3\xa9\xb6\x55\xdb\x56\xa5\x25\xda\xa7\x5a\x35\x9b\xa2\xb6\x0d\xbd\x50\xb8\x51\xe4\xd6\x96\x7e\xa1\xa3\x28\x2a\x76\x1c\x31\x66\x52\xae\x69\x5e\x93\x65\xeb\x4e\x07\x98\x36\xe1\xa4\x63\xda\xc9\x4f\x3b\xc0\xc2\x60\x35\x96\xdb\x69\xf6\xd8\x69\x86\x45\x3d\x6d\x9c\x13\x67\xb8\xc9\x0f\x5f\xd6\x71\xa1\x0f\xfb\xd7\xcb\xec\x51\xa0\xb1\x04\xa6\xce\xad\xa2\xb6\xe4\xa9\xb7\x5f\xe8\xad\xd6\xe0\x53\x16\x15\xb9\xba\x5b\x88\xb7\x1f\xed\xcd\xa2\x6a\xf8\x43\x7b\xf4\xdb\x1e\x4d\xb9\x2e\x7f\xb8\x10\xdb\x61\x92\x45\x5d\x68\x7c\x5c\x73\xbb\xfc\x42\x0b\x19\xfb\xaf\xa7\xe2\xdc\x2e\xbf\xfc\xc5\x7e\xe5\x20\xdf\x8f\x0d\xf5\x41\xfe\xd8\xe1\x3f\xbe\x1d\x65\x7a\xb3\xbe\x1f\xbf\xd6\xc2\xdc\x86\x49\xbe\x1d\xe9\x99\x36\xc1\xc7\x9a\xe0\xe4\x7a\xd8\x8b\x6e\xf3\x42\xdb\xdd\x83\xce\x70\xdb\x04\x37\x5b\x77\x93\x56\xb9\x6d\xe1\x85\xde\xfc\x0e\x8f\xf5\x5d\x18\x31\x28\xd7\xe3\xb0\x58\x48\xbc\x12\x73\x7b\xac\xd0\xa3\x70\x5e\x4f\xed\xd8\x69\x44\x8d\xb5\xd2\xc8\x1d\x05\x58\xd4\xc9\x97\xdf\xb7\x30\x09\x73\x17\xbd\x68\x57\x2e\x82\x81\x15\x28\xf5\x76\x13\x03\xf5\x6a\xf5\x38\x92\x16\x6a\x2c\x11\x9e\xbb\xf2\x07\xe4\x40\x4a\xe9\xf0\x26\x82\xdd\xc8\xdc\x15\x10\xa0\x70\x25\x4a\xdd\x69\x45\x61\x16\xcc\x9d\xfd\x3f\x11\x81\x94\xda\x87\x3f\x5c\x08\x5c\x34\x72\x47\x8f\x15\x79\x1e\xd4\x31\xac\xf6\x42\x6d\x93\x96\x08\x0b\x81\x4f\xed\x48\x93\x86\x49\x83\xb5\x73\x92\x64\x4b\x04\x73\x65\xd3\x12\x98\x45\x44\x8f\xcd\xec\x6d\x9c\xc0\x43\x76\x52\x08\xe5\x0f\x98\xdb\x6e\xd2\x34\x89\xbd\x4a\xbe\x90\x4e\xbb\x62\xcc\x30\xe9\x6d\x12\xcb\x8a\xdd\xec\xad\xd0\x42\x07\x42\x70\x47\x73\x16\x81\x46\x9f\x3b\x9a\xb3\xe8\xf0\x6b\xa7\x4d\xb8\x90\xcd\xb0\xd8\x95\x52\x20\xc6\x9a\xb0\x73\x2f\x9f\x5a\x88\xcd\x96\x50\x70\x81\x0a\x7f\x58\x56\x68\x21\x76\x1b\xa7\xac\xd0\x42\x61\x24\x4e\x3c\x07\xbf\x88\x38\xcc\xcb\x2f\x54\xcc\x5c\x76\xa6\xb2\x8e\x0b\x8d\x6b\x4f\xee\x65\xb9\x16\x06\x7b\x67\xb9\x97\x75\xc4\x36\xc3\x1a\x22\xf7\xb2\x8e\x38\x5c\xb4\x49\xed\x77\x5c\x18\x58\xdd\x73\x57\xa0\x82\x74\xca\xdb\x15\xa8\x20\x36\xbb\x6f\x5b\xa1\x76\xd1\xed\x0f\xad\x50\x5b\x21\x0a\xd1\x96\xab\x31\x19\x24\x3f\x54\xec\x82\xd8\x90\xc4\xfb\x34\xfb\xa9\x05\x9b\x37\x4e\xab\xbd\xd0\xbb\xbd\x50\x49\x0c\x2a\x9b\xaf\x7d\xda\xf6\x0b\xd1\xe6\x75\x5a\xfa\x85\x40\x3f\x4f\x1d\x23\x45\x71\xc8\x20\xf7\x97\x85\x78\x21\xfb\x99\xa6\xf6\x97\x3f\x7c\xf1\x43\x3f\xed\xcb\x42\x2c\x44\x5b\x2e\x45\x38\x08\x65\xec\xfe\xb6\xf4\x0b\x39\x6d\x1c\x25\x31\x88\x38\x4c\xb2\xf4\x0b\xf1\xed\x13\x97\xa3\x03\x53\x06\x07\x1b\x72\xbf\xcc\x0b\x2b\xf8\xb9\xf1\x43\x85\x33\x88\xf8\x3e\x65\x07\xb8\xd8\x04\x99\x3e\x65\xb9\x16\x02\xbb\x77\xea\x41\x29\x42\x81\xbc\x7f\x7c\xea\xe3\x53\xb4\xc4\xc7\xa7\x3e\x2a\xf6\x64\xaf\xa8\x05\x73\xb3\x09\x6f\xbb\x09\x2a\xe8\xb6\xd1\x5e\x8f\x4d\xc8\xf9\x81\x6f\x51\x1f\x9f\x42\xdf\xc4\x73\x22\xf7\xc7\x0a\x3d\x08\xf7\xdd\xa7\xec\x26\x1c\x2a\x60\x33\x3c\x77\x05\x32\xa8\x5d\xc9\xf4\xd8\xf6\x0b\xed\x8c\xba\x3f\x16\x75\xa1\xd9\xb3\x48\x37\x96\x44\x1c\xf4\x09\x3d\x1f\x45\x05\x73\xa5\xae\x8f\x22\x71\x74\x4c\x5d\x1f\x45\x39\x51\xe8\xfb\x28\x6a\x1b\x66\xff\x32\xe9\xc5\xca\xae\x49\xba\x4d\xba\xd1\x4a\x49\x52\x51\x05\xcd\xf6\x56\x1e\xbb\xd9\xef\x74\x80\x9e\x24\x7d\x4c\x5a\xa5\xe7\xc8\x4c\x1e\xea\x88\xa0\xb1\x35\xa4\x1e\x89\x22\x37\xb3\xc7\xd5\x44\xc4\x52\x37\x7e\x39\x15\xeb\x9f\x28\x72\x6c\xbe\xca\x62\x2f\x8c\x89\xc4\x3b\x86\x6d\x37\x6c\x3b\xea\x3b\x6c\xa8\x81\x24\x46\x96\xe9\x7f\x28\x12\x33\x50\x1e\xc3\x86\x5a\x18\xa7\x8d\x3e\x2c\xe3\xd0\x79\x8a\x62\x3b\xb5\x80\x0a\x5b\x58\xdd\x13\x0c\x95\x30\x3d\x17\x45\x73\x86\x61\xad\xb3\x4d\x6a\x56\x8c\x64\x1f\xe6\x15\x56\x88\x42\x28\xe8\x8f\xaf\xa0\xe7\x8d\x0a\x7a\x10\xe3\x34\xc9\x46\xc7\x44\x52\x0c\xea\x23\x6d\xf4\x74\xd4\xf1\xc6\xb4\xda\x49\xff\x60\xb6\x39\xd2\xec\x93\x25\x0a\x63\xe0\x48\xf3\x5a\x88\x89\x06\xa2\x3b\xa3\xc8\xa0\xc3\x1f\x8a\x70\x50\x31\x29\xbd\x22\x1c\x14\x1b\x47\x89\xdb\xe2\x17\xa9\xf6\x76\x34\xb2\x0c\xf4\xf7\x29\x25\x31\xe8\xed\xf4\x29\x0b\xb1\xd0\x69\x43\xb7\x79\x2d\x34\x7e\xf3\x89\x8f\xe2\x17\x7d\x5a\xed\x69\xab\x2e\xc4\xb6\x9b\xe4\x77\xc4\x70\xbe\x1d\xb4\xea\xb4\xf4\x13\x7f\x75\xb3\x57\xec\x82\x51\xfe\x50\x05\x18\x54\xfb\x85\x94\xc4\x60\x14\x02\xf5\x38\x6d\xc2\x85\x88\xf4\x87\x16\x75\x61\xb0\xa1\x9b\x87\x92\x18\x0c\x8c\x01\xa9\x97\xa3\x08\xcc\xb2\xa9\x97\xa3\x88\x0d\x81\x7a\xbc\x2c\xea\x42\x35\x8b\x8f\x43\x79\x0d\x02\xc7\x97\x3c\x5e\x16\x62\x61\x94\x3f\x54\x27\x06\xdd\x48\x96\xe3\xb2\x42\x17\x1a\xbd\x1d\xf3\xb2\x10\x17\x4b\x3a\xc4\xee\xa1\xe6\x0c\x7a\x38\x14\x2e\x5b\xf5\x72\x6a\xa1\xbd\x94\xd7\x20\xda\x11\xac\x24\x06\x83\x93\x5e\x79\x7c\x6c\xaf\x85\x28\x87\xa8\xaa\x31\x08\x55\xbd\x43\xd5\x18\x14\x6e\x4b\xe9\x29\x20\x31\x72\xa7\x5c\x1f\xdf\xf8\xe1\x68\x0e\x2a\x82\xa7\x7e\x44\x9f\x36\xa1\x82\x1e\x64\xd9\x5e\x0a\x7a\x10\x89\xbe\x79\x7c\xfc\x42\x0b\xd1\x16\xf5\xb6\xa8\x0b\x19\x68\x92\xc7\x6d\xe3\xdc\xee\x8d\x92\xfd\xed\x17\xba\xfd\x42\x64\xff\xf8\xd4\x43\x2f\x74\x28\x3c\xd6\x71\x21\x82\xd5\xd4\xe1\x74\x00\xc6\xa9\x18\x52\xf6\x83\xfa\xd6\x51\xfd\x1c\x84\x13\xd0\xf1\x58\xfa\x07\x91\x76\x9a\x64\xe9\x17\x62\xd2\xef\x07\x1e\x3c\xa2\xf1\x44\xcb\xa1\xa0\x07\x13\xe3\x5c\x0e\xcd\x0f\xa0\xf1\x38\xcc\x81\x9d\x59\x34\x8e\x78\x39\xb0\x33\x8b\xb5\xba\x24\xc9\xec\xbf\x1b\x9d\x83\xa4\x32\xa9\x7e\xfe\x68\x17\xb7\xc3\xe9\x00\x24\x0e\xfa\x39\x34\x52\x80\x2c\x5a\x75\x1c\x66\xbf\x50\xca\x9c\xa1\xae\x0f\xc6\x64\x62\x1c\xda\x1a\xc0\xc0\x09\x35\x87\xf2\x1e\x24\x6e\xfb\x39\x0e\x4b\x7f\x60\x89\xc3\x10\x33\x94\xd1\xa0\xed\x72\x63\xf8\xd4\x42\xe0\xd3\x9c\x43\x5d\x1f\x8c\x93\xa5\xc4\x50\xd7\x1f\x5f\xcf\xbd\x83\x24\x0b\x81\xd8\xc6\xc7\x38\x87\xba\x3e\x28\xa7\xbc\xa1\x24\x07\xe9\xca\x7f\xa8\xc5\x83\xda\x92\x6a\xab\xc5\x83\x3e\x91\x72\x43\x79\x0f\xe2\xdc\xfc\xa1\x5f\x08\x95\x9d\x5d\x85\x1c\x69\xb9\x16\x92\x83\x08\x39\x54\xd9\x41\x4d\xc6\xd0\x48\x8b\xca\x89\x3c\x4d\x3f\xc3\x29\x00\xb4\xf2\x6b\xa4\x45\x4d\xf4\x73\xbb\x89\x46\x0a\x10\x13\x9d\x7a\xa8\xfe\x83\x5c\xd3\xdc\x2f\xa7\xe2\xc1\xd6\xaa\x48\x95\x8a\x51\xb6\x70\xe1\x6a\x80\x41\x6c\x94\x5d\xa6\xdc\xcc\x35\xc9\x86\x2a\x96\x3b\x49\x19\x9d\x34\x40\x4c\x3f\x4d\x9b\x57\xe3\x38\x60\xbf\x55\xa3\x07\x75\x58\x6c\xad\x26\x60\x44\xf9\x94\xfd\xb6\x11\x36\xa7\x79\xd9\x04\x68\xf4\xa7\x9f\xd9\xd9\x06\x94\x6b\xc1\xe1\x6c\x03\x06\x67\x54\x13\x4f\x98\x2f\x72\xda\xbb\x4f\x1b\x7d\x21\x5d\x99\xe9\xca\x22\xa2\x1c\x75\xa7\x2d\xbc\xd0\x67\xd1\x65\x9c\x21\x40\xe1\xce\x93\xc3\x19\x02\xb4\x2a\xf7\x50\x57\x07\x43\xf1\x86\xfb\xcb\x17\xed\x34\xa5\x8b\x8b\x48\x36\x07\x72\xe0\x08\x2f\x46\xda\x23\x15\xf4\xa0\x37\x47\xf0\x65\x51\xf1\x33\xe1\xcc\x4d\xea\x68\x22\x7a\x0b\x3a\x96\x26\x92\xe1\x1e\xa3\x1f\x4d\xc5\x1c\x14\x67\x34\x73\x28\xfb\x41\x9c\x28\xe6\xe3\x63\x7b\x2d\x64\x39\x36\x15\xf4\xc3\x0d\x45\x96\xad\xe3\xe3\xe7\xd0\xa8\x6c\xe3\x28\xd5\x41\x9c\x98\xba\x86\x8a\x39\xa8\xcd\xc6\x51\x5e\x83\x3e\xfc\x1c\xca\x6b\x30\x4e\x2b\xa4\xbc\x06\xa3\x99\x5a\x86\xf6\x14\x30\x4e\x4b\x7f\x5b\xed\x85\xd1\x0a\x9b\xdb\x6a\xdf\xd8\xd2\x59\x1e\x8e\xdb\x72\x2d\x8c\xef\x08\xbe\x1d\x29\x0b\x99\xf6\x55\x0d\x31\xa0\xff\x96\xe4\xd7\x5e\x18\x5a\x24\x86\xcb\x0a\xd0\x61\x85\x5c\x56\x80\x76\x4d\x3f\x1e\xeb\xf8\xe0\x76\xef\xe8\x70\xb6\x01\xc5\x29\xd6\x1c\x4e\x2d\x20\x6d\x89\x70\x75\x00\xa6\xd6\xaf\xd0\x5c\x03\x46\xd0\xa3\xc3\x19\x02\xb4\x66\xb3\xd0\x5c\x03\x62\xe7\xa3\x85\xab\x03\x50\x85\x45\x22\x70\xf5\x17\x31\x50\x2e\xc3\xa9\x05\x04\x07\xa8\x32\x5c\x43\x80\xd6\x10\x1c\xce\x36\x20\x70\xbe\x49\x0f\xca\x8a\x56\x02\x84\x2b\x8d\x70\xa5\xc1\x84\x1d\xb8\xd3\x8b\x71\x22\x50\xc3\x95\x06\x08\x3c\xcb\x32\x34\x23\x81\x1a\x93\x1f\x3a\xdb\x80\xc6\x4f\x28\x43\x03\x35\xc8\x9d\x21\x1a\x2e\x3e\x40\xee\x66\xaf\xe9\x19\x74\xd1\xef\x63\xd8\xaa\x0b\xb5\x61\xdd\x08\x17\x09\x60\x6a\xb3\x0e\x27\x20\xd0\x03\x95\x3d\x5c\x11\x80\x98\x16\x55\xfb\x13\x68\x57\x17\x31\x6c\xaf\x85\xda\xb0\x22\x04\x3e\x38\x22\xf0\x1f\xc8\x70\x6a\x01\xd5\xa8\x08\xe1\x3c\x02\x06\x87\x4e\xd2\x53\xc4\xa2\x83\x31\x14\x8a\x5a\x50\xd3\x0e\xa0\xca\x0e\x6a\x22\x31\x43\xb9\x1a\x5a\x4a\xe8\x98\x1c\x44\xf9\x22\x14\x7c\xa1\x5c\x05\x43\x05\x27\xda\x3a\x2e\x64\x5b\x47\xcd\x22\xa0\x71\x56\xca\x50\xd4\x82\x68\xbf\xb6\x96\x12\x50\x6c\xd6\x65\x68\x29\x01\xcd\x69\x85\x8c\x69\x5e\x93\xbc\xca\xa7\x6c\xaf\x85\xa1\x4d\x32\x4e\xf3\x3a\x39\xcb\x62\xff\x52\xa7\x06\xfd\xed\x13\x2f\x5b\x02\xc7\xc1\x60\x46\x0d\x15\x68\x50\x27\x82\x2f\xb4\x81\x80\x31\xfd\x42\x1a\xa8\x41\x17\x93\x4e\xbc\xcd\xeb\xcd\x18\xb2\xe7\x68\x03\x01\x15\xa8\x54\x71\x59\x2e\x9c\x3e\x54\x70\x42\x65\x1c\x34\xa7\x7e\x33\xb4\x94\x80\x9e\xe6\xa5\x8c\x06\xfd\xf7\xf8\x41\x67\x28\xc2\x41\x71\x22\x22\x43\xe9\x09\x0a\x37\xd4\x0c\x85\x20\x18\xdf\x8e\x75\xfb\xaa\x85\x3e\x6c\x3b\x65\x19\x18\x6d\x97\xb9\x6d\xf4\x9b\x41\x6d\x19\x95\x52\xa0\x71\xbb\xcf\x50\xb5\x05\xcd\x91\x8b\x4c\xe5\x0f\x68\x4e\x70\x65\x6a\xb0\x00\x89\x1b\x52\xa6\x06\x0b\x50\x2a\xd3\x9e\x19\x12\xa1\x05\xd9\x23\x42\x22\x70\xb7\x4e\x4f\xd7\x88\x28\x66\x41\x0f\x9d\x88\x1a\xac\x77\x3d\x63\x22\x7a\x43\x4b\xf2\x00\x89\xc8\xc9\xf2\x30\x1d\x88\xa0\x07\xb6\xf4\x54\xed\x03\xad\x49\x3c\xb5\xe7\x82\x54\x08\xa6\xdb\x42\x20\xa6\xe5\x52\x2f\x03\x03\xd7\xa1\x4c\xd7\xe1\x20\x0e\x2b\xa4\xfe\x04\xb2\xd1\x2a\xb3\xfc\x61\xd1\xd7\x90\x06\xe9\x78\x02\x85\xe3\x6e\xa6\x83\x07\x0c\xce\x92\x64\xaa\xa7\x80\x0c\x2b\xe4\x78\x02\xed\x8a\x31\x5d\x28\x83\x18\x4d\xf6\xae\x8a\x41\xbb\x44\x49\xed\x93\xa0\xf1\xa8\xcd\x54\xc1\x01\xcd\xa1\xb7\x4c\xf7\x80\x40\x9f\xb6\xaa\x3a\x0f\xe8\x89\xba\x91\xa7\xa5\x5f\x98\xda\x7c\x92\xed\x76\x31\x38\xaa\x99\x9e\x45\x11\x7d\x32\x2c\x3c\x7a\x22\x6a\x60\x45\x48\x97\xc0\x20\x71\x29\xc8\x74\x04\x83\x20\xae\x47\xa6\x23\x38\xbf\x23\xd8\xec\x6d\x68\x76\xf3\x77\x8b\xea\x7a\x17\xb4\x0a\xa1\x27\x3b\x44\x0e\x16\xca\xa9\x36\x03\xea\x44\x8c\xa4\xdb\x37\xa0\x36\x94\xb8\xd4\xf2\x08\x62\x2b\x93\xec\x13\x1f\xb7\x56\xc9\x4b\x3d\x05\x24\x67\x03\x32\xd5\x53\x40\x0f\xa4\x67\x6a\x07\x04\x99\x7e\x34\xd7\x82\xa0\xf0\x7c\x4b\x0f\x6a\x88\xc6\x0d\x3d\xcb\x39\x1c\x0c\xdc\xc9\xb2\xf0\x5d\x15\x43\x2b\x66\xb9\x58\x2b\x0f\xba\xf1\x39\x3c\x74\x21\xd2\xcf\x51\xee\xaf\x94\xe1\x4a\xd0\x24\x6b\x98\xd7\xa0\xa8\xa8\xa0\xa5\x41\x0d\x64\x21\xc2\xcb\x7e\x0f\x9a\x33\xc7\xe9\x19\x09\x11\x1b\xd2\xa4\xb4\xf1\x83\x89\x03\x5b\x96\x5a\x3c\x48\x7c\x4c\xd7\x9a\x8a\x24\xba\xef\x69\x92\xaa\x31\xc8\x93\xb6\x2f\xbf\x36\x48\x4e\x91\x64\xf9\xb5\x41\x37\x26\x83\x7a\x9b\xfd\x5b\x27\x6d\x0a\xf1\xf6\x87\x6f\xbc\x76\x50\x37\x4a\xa5\x17\x84\xa6\xd4\x52\xc3\x05\x73\x63\x6c\x97\x1b\x7f\xa0\xf1\xbf\xcc\xb2\x4f\x80\xd4\x7a\x5f\xaa\xb3\x20\x0f\x4b\xaf\x45\x02\xf4\x89\x56\x5a\x38\x44\x88\x0a\xa6\xbc\x52\x47\x04\xa3\x19\xa2\xa5\x05\x19\x04\xa7\x7a\xb3\x14\xb5\x60\x68\xbd\x6f\xb5\x3f\xd0\x1c\x39\xcb\x56\xfa\xb6\x9b\x75\x4c\xc5\xad\xf6\x07\xc6\xd9\xfe\xf0\x6d\x12\x5a\x16\x33\x57\xab\xd7\x81\xc2\x11\x3a\xdb\xfd\x3b\x50\xb8\xac\x67\xef\xbe\x71\x77\x53\xcc\xa7\xca\x24\xa4\x1c\xc3\xaa\x77\xdf\xb8\x10\x04\x1f\xc8\x56\x63\x03\x4d\xe8\x88\x6c\x3d\x03\x40\xa5\x3f\x74\x83\x1f\x0c\x05\x4c\x6b\xd6\x05\x75\x86\x49\x96\x1e\x2d\x6b\x63\x74\xb4\xcb\x7c\x50\x27\x0b\xc7\x56\xa5\x02\x6d\x13\xb6\x0b\x78\x10\x1b\x86\x98\x56\xa5\x6a\x97\xe6\xcc\x8f\xed\xd2\x1c\xc4\xb1\xcf\x5f\x4f\xc5\xed\x66\x1b\x18\x76\xac\x4e\x0b\xf4\xf5\x49\xa3\xd8\xaa\x6a\x60\x24\x92\xa5\x35\xb8\x82\x0e\xbe\x7c\x97\x1f\xb0\x58\xc8\xb0\xa3\xdc\x2e\xa7\x41\x87\xc5\x56\xa1\x03\xcd\xa1\xc5\x6c\x77\xc3\x40\x38\xc9\xb6\xcb\x69\x30\xca\x86\x52\xa1\x03\x03\x17\xc1\x6c\x67\x1b\xd0\xda\x99\x7b\xda\x76\x93\xa3\x8c\x08\xd4\xd6\xba\x0a\xc2\xc5\x47\x4f\xbf\xc3\xc4\xa7\xd6\xd2\xbb\x50\x06\x5d\xf6\x22\xd7\xbb\xa0\x86\xdd\xef\x65\xf6\x0b\x43\x7b\x48\x6b\x24\x05\x45\x94\x93\x6c\x57\xb2\x20\x09\x67\x95\xad\xbc\xee\xaf\x7d\x92\xec\x55\x9c\x40\x7d\x2b\xe4\xb2\x15\x84\x2e\x14\x7d\xd9\x38\x0b\xf9\x6d\x68\xe5\x35\x48\x8d\xca\xed\xd8\x04\xb9\x33\x61\xb7\x63\x13\xb4\x6b\x88\x7e\xfc\x42\x0f\x3e\x5a\xac\x93\xfa\xb1\x5c\x0b\xed\xb2\xb5\x1d\xc1\x20\x9c\x64\xdb\x11\x0c\x62\x43\xd0\xf7\x63\xdb\x3f\xcc\x23\x88\x91\xe9\x1e\x10\x18\x27\xa3\x6e\xea\x99\x04\x82\x13\x78\x39\xb5\x03\x82\xc1\x99\xaf\x9c\xce\x10\xd3\x19\xe2\xfb\xc3\x69\x12\xd6\xd5\xef\x53\xa7\x49\x4c\xb2\x74\xcc\xe9\xc2\x0f\xac\x4f\xb7\x92\x74\x1d\x02\xbd\xa3\x00\x4f\x6d\x77\x20\xdd\x18\x9e\x6e\xf8\x80\x22\xa4\x55\x4e\x3d\x80\x40\x9e\xe9\x0f\xcd\x7e\x61\x10\x47\x29\xa7\x13\x10\x28\xe2\xd5\xe4\x74\x9c\x83\x3c\x99\x6d\xa6\x4a\x1c\x48\x82\x26\xe5\x74\x4e\x02\xf5\xad\x90\x7a\x1d\x88\x83\xfe\x35\xdd\xab\x01\x43\xe7\x9b\xe9\x38\x07\x63\x5a\x2e\xb7\x5c\x40\x6d\x88\xca\xa9\x5e\x07\x46\xb2\xf8\x98\x8e\x5a\x90\xe9\x53\xda\xdb\xa6\xa1\x75\x0e\x9f\xb2\xda\xd8\xdb\x8e\x36\xc9\xb6\x4f\x06\x0c\x4b\x81\xa9\x09\x0e\xb4\x43\x74\xaa\x10\x82\x1c\x36\xa1\x42\x01\x14\xa7\x89\x72\xba\x29\x0f\x6a\xb3\xf4\xca\x09\xd0\xea\x29\xd3\xb1\x0d\xea\x44\x9d\x9d\xed\xd7\x6e\xec\x3c\x98\x52\xa7\xc3\x1d\x94\xdb\x8e\xb3\x2d\x44\x73\x24\x05\x69\x32\xdd\x72\x01\x83\xa8\x67\x39\xf5\x26\x02\xe9\x40\x9e\x6a\x92\xd3\x93\x62\x68\xa5\x53\x09\x00\x82\xc3\x04\x39\x55\x08\x41\x1f\x68\x59\xf3\xf4\x8d\x0b\x75\x0e\x9f\xb2\xed\x17\xda\x61\x35\x5d\xbf\x81\xd0\xfc\x39\xd5\x11\x41\x0c\xd4\x8d\xe9\xe4\x0f\x7a\xa0\x82\x4e\xd7\x6f\x20\x75\x4f\x98\x6f\xdb\xfe\xad\x12\x47\xff\xd2\x7a\x06\x8a\x33\xee\x39\xdd\x4c\x01\x43\xab\xef\x74\xfd\x06\x72\x3b\x68\x55\x35\x49\x50\x1b\xba\xeb\x54\x32\x81\xe0\xf0\x45\x4e\x65\x0e\xe8\xef\xe7\x50\x91\x00\xcd\x79\xce\x9c\x1f\x8b\xfa\x41\xca\xd9\xf6\xee\x9c\x80\x9e\xac\xa0\xa6\xdb\x24\x20\xbe\x1d\xd3\x6d\x12\x30\x14\x8f\x53\x75\x03\x8c\x69\x1d\x95\x72\x20\x34\xc2\x4f\x55\x50\x90\x93\xa5\xd7\xd4\xe2\x05\x52\x5f\x97\xa9\xc5\x0b\x54\x28\x99\x34\x6f\x81\xe2\xec\x7c\x4e\xa5\x1c\x28\x77\x0c\xa7\x52\x0e\xf4\x44\x05\x9d\xee\x76\x80\x74\x0d\x32\x55\x7a\xa7\x4a\x2f\x93\xff\xa9\xcd\x08\xb4\xbb\x30\xa7\xea\x2c\x88\xad\xf7\x5f\x4f\xc5\xa7\x1b\x18\x20\x83\xb6\x3b\x55\x50\x40\xb9\x43\x7a\xba\x5b\x71\xba\x5b\xc1\x77\x38\x75\xa9\x04\x41\x14\x9c\x3c\x5d\x6a\x82\x24\x70\x54\x9e\x04\xdd\x11\xd1\x7c\xe6\x53\x89\x07\x42\x25\xff\xd4\xca\x04\xda\xfd\x91\x53\x21\x08\x3a\x86\x4f\xbd\x4d\xc2\xaf\x1c\x89\x77\xaa\xff\x9c\x3a\x38\x86\x4f\xdd\x26\xdd\x1c\x78\x58\x6d\x77\x2a\x17\x41\x12\xa3\x30\x4f\xb7\xb5\x41\x05\x6b\xfa\xd3\xc5\x2d\x68\x17\x91\xa7\x8b\x5b\x90\xee\xa2\x9c\xaa\x44\xa7\x2a\x91\xdf\x41\xc3\x13\x08\x22\xae\xe5\xe9\x9e\x06\x48\x77\x6e\x4f\x75\x1e\x30\xce\xd3\xa7\xfc\x80\x5f\xd7\x7c\x3e\xa0\x6a\x10\x68\xe2\x65\xe5\xa9\x40\x05\xc3\xd9\xf9\x54\xa0\x82\xfc\xbe\x51\x2f\x4b\xd0\x5a\x6a\x4f\x65\x2c\x68\xcd\xfe\xa7\x02\x15\xb4\xc6\x80\xd3\xed\x88\xd3\xed\x08\x64\xec\xa9\xf4\x04\xa9\x11\xfe\xd4\x7f\x09\x94\x93\xd9\xa9\x4a\x05\x3a\xfc\x1c\xae\x5a\x40\xb9\x75\x7f\xea\x99\x04\x8a\x08\x0e\x79\xea\x99\x04\x32\xe8\xf0\xa7\xba\x18\x48\x8e\xd5\xe7\xa9\x71\x0d\xc4\xee\x1b\x5d\x01\x81\x20\x54\x5a\x9e\xfa\x1c\x81\xe1\x5e\xf1\xa9\x25\x0d\xf4\x44\xc1\x39\x55\xcf\x40\x9e\x0c\xea\x53\x79\x0d\x92\xb0\x3c\x79\x6a\x1f\x00\x51\xf6\x55\x97\xf9\xa0\x08\x84\x98\xa7\xf2\x1a\xc4\x86\x54\x3f\x4f\x07\xcc\xc9\x80\x61\x5d\x79\xea\x73\x04\xc2\x45\xd1\xa9\x31\x00\x84\x46\xbf\xd3\xc5\x1a\xe8\xe1\xd7\x56\x84\x83\xd0\xde\x76\xba\x7e\x03\xad\x81\xfa\x7c\x9b\xd7\x9b\x4d\x66\x16\xb7\xa7\xc2\x19\xb4\xbe\xbe\xa7\xc2\x19\xb4\xdb\x7b\xa7\x3a\x22\x28\x8e\x75\xe5\xa9\xcf\x11\x08\x6d\x59\xa7\xa6\x32\x50\x61\xe3\xa8\x23\x82\x2c\x56\x1a\xe7\xc7\x9e\xf3\xd1\x3e\x69\x92\x7d\xf5\xa3\x91\x94\xd2\x2b\xaf\x41\x12\x5c\x29\x4f\x4d\x06\xa0\x0e\x7b\xa1\xc2\x19\x54\x38\xac\x5c\x31\x82\x72\x4b\xee\xd4\x8a\x00\x86\x13\xd0\xe9\xb6\x36\x28\xcd\x9f\xe7\x6d\x85\x16\x86\x2e\x18\xa7\x26\x3c\x50\x81\xa2\x7a\xba\x8f\x01\x7a\xfb\x26\x99\xfd\x8d\x21\xc6\xbe\xaa\x55\x0f\x74\x59\x2e\x77\x15\x40\x9e\x4a\x13\xe5\xf5\xe9\xc1\x28\xac\x7a\xa7\x5b\xd1\xa0\x02\x85\xf0\xa5\xab\x28\xa8\x03\x89\xf9\x72\x41\x0a\x4a\xdb\xcc\x4b\x1b\x3f\x48\x6d\x92\x2f\x97\x87\x2f\x97\x87\x48\xcc\x97\x66\x7f\x50\xaa\x7a\x2f\xa5\x2f\x08\x1d\xda\x5f\x2e\x22\x41\xaa\x1a\xbf\x34\xfb\x83\x24\xe2\x57\xbe\xf4\x39\x02\x49\x28\x90\x7c\x29\x90\x5f\xfa\x1c\x51\xed\x97\xa6\x0c\xd0\x2a\x12\x2f\x4d\xf5\xa0\x39\x1c\x9f\x2f\xf7\x8a\x41\x10\x18\x27\x5f\x9a\x03\x41\xdb\x01\x5e\x8a\x47\x50\x84\x06\xce\x97\x92\x09\xf4\xa4\xdf\xbf\x14\x43\x20\xd5\xa9\x5f\xae\xec\x40\xee\x16\x42\xcf\x93\x97\x3e\x80\xf4\xe8\x97\x36\x36\x10\x6e\xa7\xbe\x74\x46\x01\xc5\x39\xf5\x7c\x69\xff\x06\x59\x96\x5e\xd5\x05\x0c\x7d\xc7\x5e\x97\xd9\x5f\xae\xec\x68\x7b\xad\xd1\xa0\x74\xe3\x7e\x39\x60\x5e\x6e\x0f\x22\x0b\x5f\x7a\xe4\x81\x5e\x93\xce\x2f\xa7\xe2\x97\xd6\x68\x50\x85\x7d\xf2\x65\x57\x06\x5d\xbe\xdd\x2d\x39\x10\x1c\xad\xce\xb7\x6b\x1b\xd0\xce\xbb\x6f\x57\x2d\x60\x72\x8e\x3a\xdf\xda\x30\x40\x06\x7a\xd9\xdb\xed\x2a\x30\x26\x9f\xf9\xed\xe4\x0f\x9a\x73\x8c\xf9\x76\x2a\x06\x49\x9c\x8f\x7c\x6b\x3e\x00\xa9\x55\xee\xad\x4b\x00\xc8\x69\xb9\x9c\xcc\x40\x11\xd4\x2c\xdf\x4e\x66\xa0\x89\x15\x96\x6f\x27\x33\x30\x38\x9f\x9f\x6f\x27\x33\x50\xf1\xcd\xab\x4d\x62\xc2\x46\x66\xbc\x5d\x30\x80\x9a\x0c\x9e\xb7\xbd\x08\x24\xd1\x37\xf2\xed\x9e\x3d\xa8\xf8\x66\xff\x31\xe9\x83\xd9\x8c\x3a\x72\xde\x59\x04\xc1\xd6\xf2\xad\x9d\x19\x0c\x65\xec\xdb\x35\xc4\x5b\x5b\x83\x8d\xa3\xbf\x17\xe8\x32\x7b\x67\x41\x90\x3a\x93\xbc\x35\x2c\x80\x24\x54\x49\xbe\xdd\x4f\x02\x95\x7e\x0e\xd7\x23\x20\xf7\xc3\xa7\xac\x63\x1b\xf1\xd8\x24\xeb\xd8\x7a\x04\x53\x08\x97\x28\x20\x39\xd1\x99\x6f\x17\x1f\x20\x0e\x26\xff\xb7\x96\x6d\x50\x44\x07\xce\xb7\x46\x0a\x90\xd9\x26\x59\xa1\x85\x9c\x8c\xcd\xb7\x76\x0b\x90\x44\xf1\xca\xb7\xbb\x4e\xa0\x08\x7c\x92\xef\x69\x13\x2e\x0c\x25\xf1\xdb\xb9\x12\xe4\xc6\xea\xe0\xad\x7f\x2e\xe8\xb0\xa1\x9d\x3e\x41\x9f\xac\xdf\xde\x4e\x9f\xa0\xdc\x17\x7c\x6b\x5e\x07\x63\xfa\x69\x9d\x51\x41\xb9\x11\xf5\x76\xe8\x83\x72\x87\xf4\xed\xd0\x07\xb5\xfb\x1d\x5d\x60\x81\xd2\x82\xf3\xd6\xc4\x02\x46\x32\x69\xbc\x35\xb1\x80\x0c\x5b\x55\x99\x01\x52\x07\xc9\xb7\x73\x38\x28\xb7\xee\xdf\xfa\x22\x80\x26\xc2\x69\xbe\x9d\xc3\x41\x72\x46\x30\xdf\x2e\xc3\xc0\x38\x59\x0a\xbc\xdf\x76\x93\x37\x33\x6a\x9b\x64\x21\xdc\x59\xc3\x2a\xf7\xd6\x52\xfb\xd6\x52\x8b\xec\x7f\x7b\x1a\x04\xa4\x7b\x48\x6f\xdd\x92\xc1\xd0\x35\xe4\xed\x96\x1c\xc8\x0e\x7f\x68\x13\x1a\xf4\xc3\x6a\xbf\xfd\x8e\x0b\x59\x0e\x2b\x77\xe9\x40\xbb\x7b\xf8\x56\x2e\x82\x2a\xbb\xaf\xba\x05\xa8\xc3\x0a\x29\x2a\x41\x6c\xf6\x2f\xd7\x82\xa0\xdc\xd6\x7e\xab\x81\x80\x70\x4f\xe4\xed\xf2\x10\x0c\xdd\x26\xde\x0a\x54\x90\xbb\x6f\x54\x03\x01\xf1\xfd\xda\x3a\xd6\x81\x2e\x87\xa8\x1a\x08\x28\x7d\x4c\xdf\x6a\x20\x20\xdb\x91\xa6\xbf\x05\x08\x37\xeb\xde\x2e\x0f\x41\x78\x6a\xe3\xed\xf2\xf0\xed\xa6\x85\x3d\x5a\xb1\x0d\x86\xab\xcf\xb7\x2e\x18\xa0\x87\x79\xb9\x88\x04\xb5\x31\x01\xbd\xdd\x6a\x7c\x7f\xcf\xaf\xd0\xaa\xca\x7b\x90\x7a\x26\xbd\x3d\xd2\x02\x42\x77\xe9\xb7\xda\x0c\x68\xcd\x6e\x6f\x67\x05\x90\x5a\x96\xde\xae\x51\xdf\xdf\x35\xaa\x85\xb0\x09\x6f\xe4\xbd\xd5\x56\xc1\x01\xf1\x1d\xdb\x2e\x5b\x41\x69\x6d\x7c\xeb\xb7\x07\xda\x35\xdb\x5b\xcf\x6e\x90\xdf\x0a\xa9\x19\x81\xe6\xb8\x6c\xbe\x5d\xdc\x82\xd4\x24\x7e\xa9\x06\x81\x74\xab\xf1\xd2\x08\x0f\x52\x63\xe6\xe5\x7e\x27\x28\xe2\xfb\xe5\xa5\x71\x0e\x94\x3b\xca\x97\xd3\x1c\xa8\xe3\xf4\xa9\x97\x49\x6c\xdd\x0f\x9f\x7a\x9b\xc4\x0e\x7c\xfd\x3a\xd2\x64\x5e\x1a\xf7\x41\xb8\x35\x71\xb9\xdb\x0a\x82\x18\xed\x79\xb9\x00\x07\x99\x08\xd4\x4b\xed\xed\x32\x22\x23\x7d\xed\x72\x46\x05\xad\x0d\xf6\x72\x39\x0d\x72\xa0\x84\x5d\x9a\x06\x41\x71\x3b\x41\x5e\xda\xfb\x41\x68\xc9\xbf\x5c\xc9\x82\x26\x92\x4b\x5e\x3a\x5a\x80\x74\xd5\x72\xe9\x68\x01\x4a\x47\xd5\x4b\x0b\x1f\x68\x82\xe6\xe6\xe5\xae\x00\x18\xfd\x4d\xba\x4c\x42\x85\x9c\x26\x59\xed\x81\xbf\xbb\x8d\xae\xd7\xe0\xf5\xf5\x1a\xa4\x10\xea\x03\x97\x5e\x83\xd8\x86\x2f\x0f\xfa\x80\x41\x34\xa3\xbc\xd4\x04\xc1\x50\x55\xbb\x5c\x3b\x83\xa1\x2c\xbb\x34\x33\x5e\x9a\x19\x6d\x2f\x77\x18\x40\x16\xae\x9e\x97\xcb\x69\x90\xc5\xf9\x93\x4b\xdd\x02\xa4\x5b\x26\x97\x8a\x04\x28\xf7\x8a\x2f\x3d\xbb\x41\xea\xc9\x75\xb9\x04\x06\x71\x20\x9c\x2f\x75\x4f\x10\x59\x26\xf9\x85\xca\x9d\x48\x3e\x87\x07\x7d\x40\xe8\x74\x76\xb9\xde\x05\xe9\x12\xe5\xd2\x6f\x0f\x04\x41\xb3\xf2\x72\xf2\x07\x39\xec\x26\x5a\x1e\xc1\xd4\xc5\xf9\xd2\x69\x03\x84\x87\xe5\x2e\x5d\xaf\x41\x11\xc0\x32\xaf\x97\x49\x2f\xb6\x49\xec\x4c\x1a\xfd\x40\x4e\x44\xe5\xe5\x2e\x30\xc8\x34\x2f\xe7\x24\x30\x08\x55\x9a\xd7\xdb\xbc\x16\x42\xbb\xd6\xe5\x04\x04\xb2\x31\x65\x5c\xce\x36\xa0\xa7\x7d\xd5\x13\x2f\x20\x9c\x8a\x2f\x67\x1b\x90\x13\x15\xe1\xd2\xa6\x08\x82\x18\x40\x79\xb9\x46\x05\xa5\x1f\xec\xe5\x6c\x03\x32\xfd\x1c\x2e\x0f\x41\x7f\x07\x8c\x7b\x0f\x20\x07\x93\xd9\xa5\x5c\x04\xd9\x76\x4c\x65\xd9\x45\xf8\x0b\x97\x28\x97\xdb\x11\xa0\x55\xe2\x2e\x65\x19\x88\x03\x37\xee\xcb\x25\x1d\x28\x27\xa0\x4b\x13\x1c\x68\x65\xec\x47\x29\x05\x52\xaf\xd4\x8f\xa2\x03\x84\x5e\x06\x1f\x45\xc7\xc7\x28\x16\x54\xe8\xa3\x9c\x00\xa3\xbf\x49\x61\x52\x60\xf5\x1d\x24\x95\x49\x1c\x2d\x0a\x93\x7c\xe3\x4e\x58\x0e\xaa\xfd\x51\x9a\x80\x48\xea\xf8\xd1\xc6\xf6\x31\x84\x29\x8a\xfd\xc7\x25\xdd\x47\x4f\x2e\x3a\xc0\xc7\x91\x06\x82\x38\x10\xf9\xf1\x0c\x05\x18\x89\x6b\xc8\x47\x2d\x1e\xc4\x60\xf0\x7d\x54\x7a\x41\xba\x2c\xf9\xd8\xef\x41\x29\x60\x3e\xf6\x7b\xd0\x1b\xf3\xdb\x47\x15\x14\x0c\x3d\x18\x3f\x2a\x97\x20\x0e\x86\xfb\x47\xef\x07\x10\x7a\x19\x7c\xdc\x14\xfb\x78\x60\xcb\x37\xaa\xb1\x81\x22\xb0\x61\x7e\xf4\x7e\x00\xa9\x95\xfc\x63\x2f\x04\xb5\x31\x3b\x7f\xec\x85\x9f\x6f\x2f\x34\xc9\xd2\x2f\xe4\xb0\x71\x74\x56\x02\xd9\x4c\x53\x1f\x77\xba\x41\x11\xc2\x3b\x3f\xaa\x1b\x1f\xfd\xf8\x2d\x97\xbe\x9c\x20\xe7\x61\x92\x3f\x5c\x68\x77\xcd\x3f\xea\x16\xa0\x74\xc1\xf8\xa8\x48\x80\x2c\x3f\xad\x8a\x04\x48\x62\x3f\xe4\x47\xad\x01\x0c\x0f\xf1\x7d\xd4\x1a\x40\x79\x92\xf9\xa3\xd6\x00\xc6\x44\xf1\xfa\x38\x3a\xc0\x48\x56\x63\x1f\x55\x04\x10\xd3\xaf\xad\x3e\x00\x7a\xb3\x55\xf5\xbf\x04\xe1\xe1\x9e\x8f\x9e\x4d\xa0\xb4\xfd\x7d\xf4\xbf\x04\xe9\x0a\xfb\xe3\x48\x03\xad\xd2\xfb\x71\xe3\x0f\x74\xf5\xdf\xe1\xb6\xf5\x71\xd4\x7d\x34\x7c\x7f\x0b\x64\x19\x1f\x43\x45\xad\xca\xdd\xee\xf8\x81\x24\xc6\x62\x1a\x2e\x4d\x34\xa1\xa2\xf2\x76\xc7\x0f\xa4\xfb\xd9\xb7\x4b\x60\x30\x0d\x62\x60\x88\x33\xd1\x06\x31\x30\x78\x99\xe8\x9d\xd5\xa7\x91\xca\x44\x6f\xbb\x49\x6f\x93\xf0\xcf\x65\x2d\x78\xeb\x8b\x09\x8a\xab\x37\xf2\xd6\xdc\x02\xd2\x33\x36\xb7\x96\x6d\x90\x5a\x14\x0c\x71\x26\x32\x98\x21\x6e\xbd\x2c\x41\xa5\x45\xd5\x28\x03\x42\x4b\xad\x51\xcf\x44\x0e\x14\xa7\x7b\x98\xd7\xc0\xb7\x10\x75\xf4\x76\x0e\x07\xad\x8f\xc3\xed\x1c\x0e\x4a\x9f\x90\x5b\xfb\x37\xc8\x46\xb2\x18\xd6\x4c\xb4\x3b\xdd\xb7\x26\x71\x10\xfa\x12\xdc\x8a\x11\xd0\x6e\x32\xdf\x4e\xc5\x20\x3c\x63\x63\x90\x31\xd1\x8a\xf0\xdb\xbd\x3c\x10\x5a\xc9\x6f\xa7\x62\x10\x3a\x93\xdc\x2e\xcd\x41\xbb\x49\x73\x7b\x7c\x0a\x0c\x4d\x06\x86\x22\x13\xed\x49\x89\x5b\x0b\xf2\xad\x05\xb9\x4c\xb2\xf4\x84\x22\xd3\x0d\xe9\x76\xd1\x0d\x5a\xd7\xb4\xdb\xd9\x19\x8c\x60\x6f\xea\xd6\xaf\x13\xb4\xe7\xc1\x6e\xd7\xe1\x37\xfe\xf2\x7a\xb8\x1a\xd6\x4c\x84\xda\xcc\xad\x9d\x19\x94\x07\xb8\x6f\xe5\x22\x48\x2d\xb5\xb7\xa6\x67\x90\xc3\x6a\xbb\xc2\x06\x39\x18\x4f\x06\x19\x13\xa5\xec\xbf\x5d\x3b\x83\xd2\xe7\xe8\x76\x55\x0c\x06\xb1\xc2\xf2\x76\x09\x0c\x72\x47\x4a\xdd\xca\x58\x90\xc3\x72\xb9\x92\x05\x71\x60\x1a\xbc\xf5\x43\x03\xe5\xc6\xb0\xb1\xc2\xc4\xf0\xc8\x93\x81\xc1\xf2\x1b\x18\x0c\xc9\x72\xab\x35\x80\x9c\x28\x38\x06\x06\x13\x39\x1c\x0a\x2a\x12\x60\xa8\xf7\xdf\x8a\x70\x50\x5a\xbc\x6e\xb5\x06\x50\x1a\x23\x6f\x17\xa4\x20\x07\x7a\xdd\xad\xab\xc3\xad\x8f\x28\xda\xf2\xad\xa1\xee\xf6\x34\x2d\x4b\x4d\x63\x85\x89\x08\xfb\xbd\xeb\x4a\x30\x4e\x4c\x06\xb7\x8b\x48\x30\xb8\x7c\x24\x8d\x02\x26\x82\x70\xe7\x79\x6b\xb3\x06\xa5\x41\xed\xd6\xcb\x09\x94\x9e\x82\xc6\xf7\x12\xe1\x8a\xf1\x56\x9b\x01\xbd\xa1\xc5\xdf\xca\x7e\xd0\x6e\xdd\x1b\x05\x4c\x0c\xf5\x81\xdb\x25\x1d\x08\x7d\xda\x6e\x25\x31\x68\xb7\x56\x8d\xef\x25\xf2\x44\x38\x1b\xdf\x4b\x54\xef\xfe\xd0\xd2\xe3\x31\x55\x8e\x5a\xd5\x20\xd0\x1e\x83\x33\xe4\x97\x48\x7d\x37\x1e\xd7\x6f\x20\x2c\xaa\x21\xbf\x44\xab\x07\x1b\xb9\x4b\x24\x97\x46\xa4\x61\xba\x44\x12\xaa\x36\x1f\x3d\xa6\xc0\x38\x59\x74\x3f\x6a\x46\xa0\x3c\xdd\xfe\xb8\x6d\x09\x4a\x5d\xff\x51\x33\x7a\x3c\x64\xd5\x66\x3f\x4d\x22\x02\x64\x9a\xd7\xdb\x24\x4c\xf5\xf4\x9c\x47\x2b\x39\xa8\xf6\x8d\x7a\xc2\x83\x76\x6d\xf4\xa8\x52\x81\xd6\x2e\xf6\xa8\x52\x81\x20\xd0\x55\x3e\x2e\xd0\x40\xda\x01\x1e\xfd\x2d\x40\x11\xb9\x2b\x0d\x1f\x26\x86\x92\xdc\xf0\x61\xa2\x6d\x7b\x43\x7e\x89\x0e\xac\x1b\x8f\x5e\x19\x60\x28\x3a\x1e\x45\x2d\x08\x1d\xa7\x8c\x02\x26\x82\x7b\xc9\xf2\xd1\xb5\x16\x04\xf1\xbd\xf2\xd1\xa2\x0a\xba\xcf\xe3\xd7\x53\xb1\xe1\xbf\x44\x9f\x74\x2c\x63\x7d\x89\x32\x2a\xc3\xa3\xbc\x06\xad\x43\xd6\xa3\xd9\x1e\xe4\x69\xa3\xbb\xa1\x08\xea\xb0\x63\xa9\x55\x1a\x11\xcc\xfd\xdd\xc7\x3d\xc6\x47\xb7\xad\x36\xc9\x37\x96\x87\xdf\x4d\xb2\x09\x4a\x07\x47\xdf\xf8\x31\x89\xc3\x26\xc8\x1f\x63\x85\x89\xde\x6c\x02\x97\x61\xa0\x36\x14\x89\xc7\xe9\x00\x84\x9e\x7e\x8f\xb2\x1f\xe4\xc9\xee\xce\xa3\xa0\x07\x9d\xb6\x84\x07\xa3\x8c\x15\xc6\xad\x4d\xf9\xe8\x83\x0c\xca\x20\x06\x86\x0f\x13\xc5\x2d\x3c\xf9\x68\xa9\x7d\xb4\xd4\x22\x50\x1f\xa7\x03\x90\x85\x10\x34\x30\x98\x68\x55\x5b\x03\x83\x89\x28\x74\x9e\x47\xb3\x2c\xe8\xd3\x2f\xef\x22\x12\xe4\xb0\x09\x5d\x44\x3e\x06\xb0\xb1\xdf\xba\x8b\x02\xe2\x60\xe9\xf4\x38\x8f\x80\x18\x0e\x0b\x6d\xb0\x20\xf4\x08\x7e\xb4\xc1\x82\x74\xd5\xf2\xe8\xab\x02\x4a\x67\xef\xc7\xa9\x05\x84\x7b\x0f\x8f\xcb\x56\x90\x1e\x52\x78\xdc\xfb\x04\xad\xe1\xe9\x71\x25\x0b\x72\x6b\xf3\xb2\x25\x50\xf2\xcb\xc1\xa3\x29\xd5\x50\x64\x2a\xc0\xc6\x1d\x13\xad\x03\xed\xe3\xd4\x02\xe2\xc0\x92\xf6\x68\xfe\x04\xed\x8e\xf2\xa3\xde\x0f\xfa\xb4\x9b\x68\xd8\x04\xf9\x15\x10\x5a\x31\x41\x1b\x49\xe1\xd1\x3e\x09\xe2\x5b\x54\x17\x0c\x8f\x01\x26\xd1\xfb\x1f\x27\x0d\xd0\x84\xfc\x4a\xc3\x87\x89\xfa\x76\x39\xdd\x57\x1e\x8e\xf4\x6a\xdd\x30\x30\x98\xe8\xa1\xfc\x51\x7d\x07\x3d\x7c\xa3\x86\x3a\x10\xbb\x9f\x43\x05\x1a\xf4\xc4\xe0\xfa\xb8\x39\x09\x92\xb8\xf6\xb5\x21\x9c\x45\x12\x20\xa0\x8c\xb6\x25\x02\x81\x5a\x46\xdb\x12\x4d\x60\x9e\x32\x8e\x96\x88\x58\xea\x46\x71\x8d\xde\x17\x79\x14\x49\x6c\x3b\x8a\x8e\x61\xd2\x6e\x12\xc1\x3d\xd7\x42\xb9\xbc\x3c\x4f\x04\xa7\x43\xcb\x08\x59\x22\x09\xc1\x50\x46\xc8\x12\xf5\xb7\xec\x5f\x26\xe9\xad\x76\x92\x64\x85\x0e\x0e\x2a\x1e\x54\x28\x7c\x23\x41\x6b\xa2\xc9\x3e\xac\x23\x77\x50\x10\x8f\xb1\x0c\x87\x25\xb2\x37\xea\x18\x56\x28\xe8\x13\x1b\x85\x48\x2b\x94\xf8\x20\x9f\x3c\x95\xe6\x95\x46\x64\xe5\x8d\x69\x85\x52\x17\x30\xca\x85\x10\x15\x49\x54\xe2\xda\xd2\xec\x0d\xc9\xbb\x66\x9b\xda\xca\xbc\x10\xa2\xe7\xe0\xa9\xb2\x5c\x45\x60\x8b\x93\xf6\xc2\x24\x25\x26\xeb\x99\x32\x68\x96\x68\xd4\xff\xda\xca\xf6\x2a\xf7\x90\xcc\xde\x42\x10\xa5\x00\x07\xa3\xda\xca\x26\x2c\x62\x5d\x14\x7d\xa2\xfc\xb4\x85\x39\xd0\x86\x2e\x8b\x5a\x1c\x7c\x39\x69\xaf\xb2\xa1\xcb\x69\x9d\xa4\xb6\x71\x16\x26\xa7\x5e\xcb\xd0\x5a\x22\xcf\x49\xe3\x4c\x0b\x31\xb5\x59\xfb\x94\x6f\x9c\x1e\xe4\xf0\x29\xdf\x38\x89\xfa\x31\x68\xfb\xd3\x6a\x9f\xb8\xf2\x0d\xde\x78\xda\x31\xd9\x43\xc2\x14\x5b\xdb\x69\x85\x4e\x3c\xce\xd3\xa4\xb7\x49\xea\x62\xb4\xc4\x69\xe9\x39\x70\x4a\x00\xd3\xda\x5e\x96\x5e\x07\xdc\x83\x56\x7d\xd9\xf6\x0b\xcd\x59\xe0\xf2\x06\x5c\xd1\x87\xd9\xbf\xec\xab\x2f\xa2\x71\xef\x7c\xed\xb7\x79\xb1\xa3\xc3\x41\xd8\x32\xbe\x97\x48\xd6\x92\x65\x7c\x2f\x11\x47\xfd\x7a\xaf\xb8\xbc\xef\x56\x34\x61\x81\xca\x0b\x6f\x45\x60\x51\x28\x6f\xbc\x15\x83\xfd\x91\xf2\xf2\x5a\x11\xc7\x34\xc9\x16\x46\xe2\xed\xf6\xb5\xcb\xaf\xc5\x26\x4d\xef\x34\xd4\x65\xe5\x70\xd8\xfb\xb6\xca\xc7\xf1\x84\x77\xde\xb4\xaf\x7d\x6c\xf4\x0f\xdb\xf8\x69\x92\x6f\xfc\xb0\xf5\xb5\x91\xd7\xc7\x46\xff\x18\x58\x9e\xa7\x6e\x1b\xca\xb8\x87\x76\xac\xdb\xec\x8d\x7b\x78\xd2\xe8\x8f\x4f\xe1\x5d\x3c\xec\x45\x8f\x4f\x61\x9d\xc0\xbc\x5e\xdb\x63\x73\x62\x8a\x18\xe1\x53\x36\xce\xc3\x1e\xe3\xe6\x53\x76\xbf\x87\x81\x58\x94\xeb\xb1\xf4\xec\x56\xc4\x37\x2f\xbb\x0c\x0a\x30\x51\x74\xca\x90\x5f\x22\x51\x4a\xca\xf8\x5e\xf5\x8d\xef\x45\x1d\x77\x76\x2b\x6a\xd7\x6f\x78\x4d\x79\xb5\x63\x1a\x14\x81\x72\x58\x3b\xa6\x41\xd1\xb9\x56\x8c\xb5\x2b\x89\x41\x8d\x93\xec\xd1\x76\x45\xf6\x37\xe9\x65\x92\x21\xbf\xf8\x21\xaa\xad\x48\x5c\x28\xca\xf0\x61\x62\xe4\x4e\x92\x02\x15\x8c\xb9\x96\xc0\xb5\xe3\x4a\x2c\x9a\xe5\x4e\xed\xf8\x0d\x8b\xde\x4e\x93\xfc\xe1\x30\x20\x70\x92\x74\x99\x74\xb1\xa1\xb8\x93\x64\x85\x06\xae\xfd\xb4\xaa\x77\xf4\x8a\x3a\xfc\xa1\x62\x17\x14\xc1\xf1\xca\x58\x61\x22\x88\xff\x5d\x46\x01\x13\x85\x55\xae\x8c\x02\x26\x0a\x0b\x72\x79\x51\xaf\x18\x2c\xb0\xca\x28\x60\xa2\x63\x98\x64\x51\xb5\x48\x20\x2a\xbd\xf1\x53\x34\x47\xc4\x6a\x57\x5e\x83\xe0\x7e\xe3\xda\xd3\x37\xa6\x1e\xc1\xe4\xa5\xbc\x06\x8d\x57\x58\xed\x69\x1d\xd3\xe3\x1a\x74\x13\x45\xb8\x81\xc1\x9c\x0e\x76\x45\xb8\xb7\x67\x4c\xfb\x84\x22\x1c\x8c\xf0\x8d\x65\xb5\xbd\x1f\x98\x19\xd5\x58\x61\x62\x10\xef\xb3\x8c\x02\x26\xca\xc1\x67\x7c\x2f\x11\xb8\xaf\x94\x17\x90\x8a\x3a\x6c\xaf\xb6\xaf\x36\x7d\xd5\x5e\xd8\xbe\xb1\x5d\x74\xf3\xc6\xb6\x8e\xad\x50\xe0\x8d\x6d\xf6\x04\xc8\x65\x87\x74\xad\xc6\x49\x9a\x1c\xf4\xb1\xed\xa7\xd5\x9e\x1c\x82\xd9\x7c\xca\x2f\x84\x29\x03\x57\xd1\xe2\x72\x90\x2f\xca\xf9\xcd\x9b\x51\x45\x84\xdd\xe4\x34\xfb\x13\x5f\x28\x0b\xa1\xec\x07\x7d\x38\x60\x4e\x1b\xe7\xe4\xa8\xb1\xa5\x47\x2b\x15\x93\x18\x66\xb5\x3b\x1d\x80\x66\x99\x5f\xbb\x22\x1c\x24\x2e\x86\xb5\x2b\xc2\x41\x70\x7e\xae\xf6\x97\x79\xbd\x08\xd4\x77\x50\xa1\x97\x6d\xcf\x91\x3a\xac\xd1\x65\x60\x30\x31\xea\x9b\x64\x1d\xd5\x4a\x1d\x7c\xca\x7e\xd0\xce\x95\x86\x0f\x13\x79\xee\x26\x59\x54\x0c\xd4\xdc\xfc\x52\xfb\xdb\xbc\xde\x9e\x98\xa1\x71\x2e\x3b\x13\x11\x6a\xb8\x5b\xb9\x76\x65\x34\x18\x58\x37\x6a\xbf\x6c\x1c\x6d\x20\x76\x80\xcb\x0a\xe1\xdd\x37\x50\x24\xf6\xcb\x37\x7a\x6b\x46\xf9\x43\xeb\x78\x69\x1b\xe6\x8d\xb7\x45\xbd\x59\x44\x3a\xac\x1e\x2b\xc4\x11\x57\xfc\x1c\xcb\x90\x5f\x22\xbe\xa3\xf6\xb1\x5c\x58\x7d\x09\xd1\x5f\x46\x01\x13\xdd\x7e\x5a\xa5\xaf\x21\xbf\xb6\x69\x92\xad\xba\x30\xbe\xa3\xf6\x71\xa4\x3d\x8a\xc7\xf5\x46\xa3\x80\x89\xc0\xd1\xb5\x8c\xef\x25\x82\xb0\xfa\x65\x7c\x2f\x31\xf0\xb3\x2e\xe3\x7b\x89\xe0\x92\xd9\xf2\x2a\x53\x91\x55\xbf\x0e\xf1\x51\x87\x52\xfd\xf0\x32\xbf\xb6\x40\xb7\x49\x98\xa7\x18\xd4\xc7\x6e\x19\x77\xaf\x75\x33\x69\x37\x89\xf9\x8d\xa9\xf8\x50\xe5\x06\x03\x1b\x6c\x1d\xaa\xdc\x87\xe1\x64\xc2\x24\x8b\xbd\xbb\x99\x3b\x49\x7a\x4c\x7a\x38\xa9\x45\xf6\xea\xd7\x60\xa4\x95\x53\x4d\x06\x45\x0c\xa0\x32\x30\x98\x08\x22\x86\x97\x81\xc1\x44\xd5\x5a\x90\x96\x97\xf3\x88\x89\x91\xb4\xbc\xce\x54\x04\xee\x05\x65\xf8\x30\xd1\xec\xf8\xd5\xe1\x74\x00\x02\x2f\x94\x3a\x9c\x0e\x40\xb0\x57\x5c\x47\xf8\x46\xdc\xc9\x92\xc9\xec\x50\x57\x07\xcd\xcd\x8a\x65\x60\x30\x91\x1c\x23\x29\xaf\x34\x15\x3d\x99\xb9\x0e\x7c\x0b\x45\x72\x5f\x6b\x19\x2b\x4c\x24\xbe\x3d\x65\x60\x30\x51\x38\x3e\x95\x77\x9a\x8a\x1e\x93\xa2\x2a\xfb\x41\x3b\x15\x7b\xef\xa8\x48\x2c\xc8\x75\xb4\x45\x6d\xf6\x47\xd0\x04\xbd\x77\x54\xe4\x6e\x51\xdb\x72\xb5\xe5\xa2\xa1\xdb\xbe\x86\xdb\x16\x7e\x8a\x65\x30\x2f\x91\x1c\xa4\x2f\xaf\x22\x15\xb1\x59\xfa\x69\xdb\x4f\x85\x20\xe5\x52\x99\x06\xa3\x6c\x55\xc5\x2e\x68\x97\x4e\x46\xee\x12\x79\x22\x92\x8c\xdc\x25\x72\x98\x3d\x46\x65\xd1\x2e\x05\xb8\x85\xf4\x8b\xae\xa6\x71\x14\xbb\xa0\xca\xf6\x52\xbf\x06\x8d\x33\x49\x19\x80\x4b\x74\xda\x84\x6f\x0b\xf1\xe6\xd3\xda\x5e\x6f\xdf\xf8\xd6\x8c\x4d\x51\xdf\x56\xe8\xed\x12\x98\x72\xa9\xbb\x82\x9c\xc3\x24\xbf\x23\xba\xeb\xe1\xd0\xbf\xac\x10\x86\xe0\xdd\x4f\xab\x5c\x04\x31\x99\x34\x0e\xe5\x22\x08\x6e\x0d\x2c\x23\x77\x89\x08\x3b\xd3\xe5\x1b\x59\xd3\x9f\xdf\x24\xdf\x78\x19\x06\x8e\x0a\x5d\x7e\xb4\x0b\x87\x08\x26\x8d\xe3\xe3\x47\xc3\x82\x4c\xd4\xfd\x32\xe4\x97\x18\x89\xde\x7f\x7c\xec\x72\x1f\x2c\xb5\xc3\x24\x3f\xed\x87\x2b\x09\x86\x3f\xb4\x33\x7d\x6f\x9b\xa0\xf4\x1f\x2b\x84\xc9\x60\xf7\x6b\x7f\xac\x10\x81\xc1\xce\xdd\x1f\x5a\x21\x9c\xaa\x5d\xd3\x1b\x18\x4c\xb4\x53\xcb\xa1\x7e\x0e\x82\xad\xa0\x3a\x6e\x93\xf4\x13\x42\x38\x1f\xb7\xd5\xbe\xd9\x0e\xb5\x47\xdf\x0e\x05\x5c\x87\xf6\x83\xbc\x6e\x5b\x42\xd7\x21\x04\xfd\xa1\x7e\x0e\x86\xda\x8c\x81\xc1\xc4\x38\xfd\x42\xce\x10\x60\xb4\x22\xed\x31\xfb\xc7\xcb\x32\x4d\x32\xfb\xc7\x86\x5e\xe5\x1a\x2a\xe3\xc3\xf8\xbb\xb4\xc4\x50\xf6\x0f\x43\x25\xc4\x49\xd2\x69\x92\x4e\x8d\x24\x29\x7d\x41\x1c\xa8\xa0\x83\x6d\x38\x51\x1c\x07\x2a\xe3\x68\x89\x3a\x99\x51\x07\xc6\x5b\x51\x5c\x36\x5d\x63\xf8\x43\x82\x6a\xe3\xca\x57\x83\x3d\x37\x11\x0e\x98\xa1\x2c\x1c\xdf\x03\x26\x3c\xa5\xb0\x32\xf6\x15\x81\x53\x6a\xa8\xa8\x82\xe6\xac\x79\x8d\xb0\x10\x44\x4f\xe0\x94\x4b\x0d\xcd\x0f\x20\x4f\x96\xad\x43\xdd\x15\x74\x9a\x97\x9a\x24\x48\x4c\x9e\x65\x5c\x29\x91\x2a\xe3\x43\x91\x06\x06\x01\x37\x6a\xb0\x9b\x26\xc6\xc9\x1c\x6e\x78\x28\xd1\xfb\xf7\x29\x5b\xa2\x39\x02\x84\xe2\x35\xda\x96\x68\x82\x0d\x30\x1e\x8d\x18\x25\x92\x38\x23\x35\x38\x7c\x21\x32\x99\x28\xbc\x43\x4d\x64\x7e\x9f\xb2\x71\x08\x46\x78\xcc\x5f\xbb\x6d\xd5\xd0\x7c\xe0\xb5\x6b\x04\x7b\xab\xa1\x78\x03\x61\x5f\x1b\xda\x0a\x40\xe2\xd2\x54\x06\xa7\x12\x83\xfd\x91\x1a\xca\x32\x30\xbe\x4f\x69\x18\x18\x5f\x2b\x26\xd9\xbf\xec\x45\x0b\x8d\x43\x7a\x71\x35\xdb\x17\x8d\x49\xbc\x8c\x57\x25\xaa\xfd\xa6\x2a\x9a\x60\xe0\x5e\x50\xdc\xd7\xf6\x45\x63\x9f\x2c\xef\x6d\x13\xc9\x79\xf8\x1a\x2f\x1b\xfd\x45\xf7\x43\x8c\x78\x2b\x9b\x18\x84\xda\x2c\xaf\x5c\x13\x35\x0e\x93\xac\xf6\x45\xf8\x79\x64\xac\xf7\xa0\x89\x50\x25\xf2\x22\x34\x51\xed\x07\x54\xfe\x78\xef\x99\xf2\x67\xb8\xcc\x07\x39\x1d\x16\x4a\x16\xd0\xca\x45\x83\x53\x89\x6c\x54\x35\x83\x40\x89\x51\x56\x48\x31\x32\x0c\x9c\xe2\x53\x8f\xa5\x7f\xf4\xb0\xa7\x10\x6a\x95\x20\xa7\x8d\xa3\xcc\x00\x39\x8e\x95\x64\xb0\x25\x91\xc4\xc7\x29\x23\x2b\x89\x98\xb4\x57\xb0\x9f\x24\x92\xdb\x48\x2a\xd4\xb2\xc2\x33\x6f\x61\x52\x9b\x84\x0a\x49\xab\x86\xb6\x4e\x90\x89\xcc\x08\x0e\xb8\x89\x3a\x7d\xea\xf0\xa9\x03\x81\x8a\xd2\x1a\x87\xe5\x3a\x58\x31\xd2\x73\x42\x31\x02\xe6\x86\xc9\xc0\x38\x47\xa2\x89\x9b\x51\xa1\x06\x02\xaa\x58\x30\x78\x6d\xb6\xe8\xc3\xa7\x34\xe7\x81\xa8\x6f\x92\xd5\x2e\x04\x57\x52\x88\x36\xaf\xe6\xd0\x50\x9b\x64\x21\xf0\x25\xd7\xd6\x19\x0e\x44\x10\x9c\x3e\xae\x50\x6b\x00\x4d\xdc\x9e\xb5\xf4\x36\x09\xad\x01\xe5\x32\x70\xf6\x16\xb5\xfb\x46\xd7\x5c\x20\xb8\x9b\xb5\xe2\xb4\x8e\x27\x6e\x94\xc8\x0c\x03\x11\x89\x66\x1b\xad\xc2\x01\x03\xc2\xe5\xa1\x81\x88\x44\x4c\x74\x9e\x78\xd9\xaa\x2f\xd7\xe1\x26\x99\x3d\x67\x5b\x0f\xdf\xa8\x09\x0e\xb4\x16\xbe\x70\x19\x06\x62\x22\xcb\xe2\x6d\xf6\x6f\xdc\x90\xac\xf6\x65\xb5\xb9\x7d\x6a\x43\x93\x34\x10\x91\x08\xb6\x95\x2a\x34\x95\x81\xe6\x70\x4e\x85\xea\x06\x68\xd7\xe1\xe1\x02\x0b\x0c\x0e\x50\x56\xa8\x48\x80\x6a\x0b\x71\x59\xfa\x0b\xc7\x16\x84\x55\xa8\x35\x80\xe0\x4c\x52\x85\x2a\x02\x08\xae\x05\xae\x70\xf2\x07\xb9\xd9\x4d\x1c\xa2\x60\xa4\xa5\x77\x3c\x82\xc0\x19\xb7\xe2\x36\x7b\x3d\x95\x4f\x93\xac\xd0\x4d\x8c\xce\x8d\xec\x5d\xf8\x81\x66\x6b\xa3\xe2\xb6\x8e\x38\x18\xb9\x6e\x08\xb5\x86\xf0\x04\xac\x3f\x74\x79\xf8\x8d\x80\x64\xe9\x1d\xdb\xa0\x27\x5a\xa9\x41\x91\x44\xbb\x36\x0a\x27\x7f\x50\x9c\x08\x2d\xaf\x63\x17\xa1\x82\x63\xe8\x24\xd1\xc4\x06\x29\x2f\x25\x17\xc9\x01\xca\xf2\x36\xf1\xfa\xde\x26\x4e\xff\xf2\x62\x70\x11\x1c\xa9\xab\x74\x6d\x94\x6e\x21\x30\xe5\x79\xa5\xb7\xe8\x49\xff\xf2\x4e\x6f\x11\xb1\x99\xd7\x63\x92\x23\x8d\x24\x17\x42\xde\xbd\x9d\x88\x47\x2f\xdf\x16\x83\x73\x57\xe5\xed\xdb\xa2\x06\x42\xc1\xeb\xb7\xc5\x20\xe8\x5f\x79\xff\xb6\x18\xf8\xe0\x94\x61\x98\x44\xa8\xe0\x78\xdf\xb6\xa8\x66\x74\x24\x9e\x3a\x62\xe0\xed\x5f\xe9\x72\x09\x34\xc1\x61\x2a\x5d\x08\x81\x24\xa4\x53\x65\x98\x3d\x27\x55\x67\xfb\x94\xd9\x1b\xbf\xe9\xef\x70\xdb\xaa\xc4\x19\x57\x0c\x2e\x41\x28\xc3\x3b\x89\x22\x8a\x7c\x65\xda\x2a\xec\x41\xe3\x2e\x5d\x46\x7c\x12\xbd\xd3\x8b\x52\x4b\x1a\x18\x1a\x49\x0d\x02\x25\x92\x6b\x04\x2a\xcb\xec\x0b\xbb\x03\x46\xe5\x74\x03\x03\x0c\x4d\x70\xe9\x06\x06\x48\xce\x66\x54\xaa\xec\x80\xa1\x15\x33\xdb\x8e\xd5\x78\x1c\x30\xad\x67\xdb\x9c\x04\x0b\x20\x92\x70\xa5\x2a\x11\xc8\xdd\x0f\xa8\x8c\x05\x99\x76\x3f\xcd\x66\x20\x95\xfd\xa9\x8d\x0c\x84\x13\x76\xaa\x12\x81\x4e\xfb\x87\x5b\x26\xa0\x09\x0d\x51\x06\xa7\x12\xe1\x76\x42\xaa\xf3\x80\xe4\xa6\xe6\x4a\x2d\x69\x69\xb0\x37\x6c\xe9\xa9\x08\x07\xf1\xfd\x1c\x2e\xe9\xd2\xfd\x5d\x7b\x91\x66\x33\x10\xaa\x90\xa9\x1a\x94\xde\x05\x65\x8f\x3c\x7d\xe3\xe9\xbd\xf6\xbe\xd1\xfe\x41\x2c\x02\xa2\xfd\x95\x77\xb0\x8b\x74\xcd\xe5\x95\xeb\x22\xb6\xc3\x24\xeb\xc8\x09\xd8\xdd\xb6\x57\x33\x02\xb9\x5b\x21\x65\x3f\x28\xe7\x24\x43\x58\x89\xde\x50\x37\xf2\x65\x21\x5e\x5c\xd8\xe1\xa0\x56\xf6\x83\x6c\x8c\x27\xde\xa0\x2e\x82\xcb\x61\xca\x2b\xd4\x45\x38\x57\x7a\x85\xba\x48\xe2\x42\x95\x77\xa8\x8b\x24\x6e\x74\x79\x3f\xba\x88\xef\xd0\x77\x3a\x00\xe1\x5c\xe9\x2d\xe6\x22\xc3\x0a\xb9\xae\x04\x45\xec\x86\xf2\xd2\x72\x51\x13\x33\x63\x2a\xfb\x41\xb8\xd1\x90\x2e\xfc\x40\x6c\xa8\xc9\xe9\xce\x09\x88\x69\x5f\xbd\xed\x4c\xdc\x16\xb8\x39\xa8\x95\xea\xe9\xd5\x80\x0e\x3e\xa5\x3a\x88\xc3\x91\x76\xdb\x7d\x39\x27\x7b\xa6\x3f\xb4\x71\x6e\xe2\x6c\x9f\xbe\xd1\xd2\x13\xdc\x93\xcb\xd3\x2a\xd5\xeb\x40\x1d\x2c\x5b\xd3\x85\x1f\x68\xc2\x50\x56\x2a\xfb\x53\xbd\x0e\xc5\x2b\x95\xfd\xa0\x76\xfb\x84\x5b\x2e\x49\x8c\x97\xaf\x24\x7e\xcc\xfe\xf1\xa2\x51\xca\xe5\x5a\x10\x14\xf7\x48\x94\x21\xbf\xc4\xe0\xc2\x8e\x2a\xd7\x82\xa5\x83\x36\xdd\xc4\x28\x60\x22\xac\x63\x69\x07\x04\x3d\xd1\xd8\x4a\x3b\x20\x68\xee\xb5\x2e\x2f\x7a\x17\xd1\x69\xd2\x63\xd2\x83\x71\x8e\x42\x68\xe8\x03\xa9\xce\x53\x2e\x35\x41\x70\x18\xb3\x0a\x2f\x27\x91\x76\x39\x43\x91\x89\x0c\x8c\x60\xe5\xbe\x0f\x98\x5a\xf5\xbc\x24\x5e\x24\x4e\xd5\xe5\x2d\xf1\x22\x39\xef\x5c\xe5\x76\x3b\x28\xae\x3f\xac\x72\x6f\x1d\x34\x57\x60\x57\xb9\x15\x04\x42\x6b\x63\xb9\xb7\x5e\xc6\x98\x42\xc1\x29\x75\x57\x90\x69\xe3\x38\xe5\x19\x0f\x8d\xcb\x89\xab\x34\x1a\x82\xe6\xf0\x6a\x95\x46\x43\x50\x07\x4a\x9c\x21\xd2\x44\x4c\xcb\xe5\x5c\x09\x7a\xdf\x7c\xca\xcf\xc1\xed\x8a\xf8\x20\x57\x39\x0b\x96\xd7\x56\x61\x62\x29\x2d\x84\xa0\xdc\x81\xf7\x62\x7b\x91\x6d\xf6\xee\xe6\x17\xf1\x09\xd5\x1a\xca\x45\x37\x28\xb7\xa2\x4b\x0b\x61\x79\x33\xef\x34\x7b\xeb\x18\x38\x44\x58\x6d\xb7\xee\x41\xb9\x89\x58\xe9\x0f\xd3\x9b\xcd\x4d\xb2\xbd\x92\x13\xe9\xd8\x53\xca\x39\x0d\xcc\xef\x47\x73\xc3\x08\x24\xfe\xaa\xe5\x05\xfb\xa2\x88\x91\x57\xde\xb0\x2f\x5a\x45\xb5\x9c\xe6\x40\x9f\x23\x7f\x3d\x15\x7b\x29\xbf\xe8\x69\x13\x68\x05\x00\xd9\x58\x14\xbc\x96\x5f\x44\x39\x78\xdc\x62\x2a\x2f\x9a\xb1\xcb\x68\x2b\x00\xa9\x32\xed\xcd\xfc\x62\x68\xe9\xa8\xb6\xd1\x9b\x93\x93\x36\x94\x33\x2a\x68\x1c\xd0\xaa\x34\x92\x82\x6a\xbb\x8c\x33\x6a\x19\x83\xda\xfa\x3a\xa3\x82\xc2\x6b\xb0\xca\x55\x0b\x28\x42\x6d\x56\x69\x11\x05\x7d\x22\xa5\xca\xb9\x12\x0c\x25\x71\xb9\xb6\x01\x7d\x2a\x0d\x34\x32\x80\xb9\x59\x47\xf7\xa6\x40\xb9\x32\x2b\x67\xd4\xf2\x5e\x60\x66\xd4\x72\x46\x05\x49\x14\x9d\x2a\x0d\x0b\x20\xd4\x76\xcb\x49\xb6\xbc\xd2\x9d\xc9\xbf\xb4\x35\x80\x9c\xf6\xb5\xd3\x2e\x73\x1a\xfc\x95\x3a\x6a\x6b\x00\xc3\x99\xab\x34\x2c\x80\xde\x99\x80\xca\x89\xb1\x9c\x18\x99\x34\x0c\xed\x27\x82\x68\xed\x55\x2e\x77\x40\xa5\xdd\x4f\x8f\x03\xd0\x9a\x1f\x0c\x00\x28\x3a\xbf\x3f\xb4\x71\xde\x5c\x57\xcb\xa4\x51\xae\x93\xc0\xf8\x76\x13\xf7\xa6\x40\x0c\x16\x1f\xe5\x3a\xa9\xbc\xf1\x9d\x49\xb6\x34\x3f\x80\x20\xda\x56\x95\xeb\x24\x10\x87\x1d\x40\x1b\x2c\x68\x82\x2b\x54\x69\x7e\x28\xcf\x53\x28\x63\x35\x6c\x82\x24\x6e\x46\x95\x56\x4c\x50\xbb\x4d\xf8\xb1\x55\x3f\xde\x95\x41\xb9\x9c\x2b\xc1\x70\x8b\xbc\x9c\x05\xc1\xfc\x0a\x1b\xbd\x0c\x40\xa9\xd7\x95\x0b\x19\x30\xdc\x18\x2e\xad\x98\xa0\x36\x3c\x03\xca\xf9\x0d\x0c\x4d\x96\xa5\x91\xa2\xbc\x46\x57\xf1\xe6\xd6\x17\x48\x9d\x18\x0c\x5f\x28\x4a\x23\xa9\xe1\x0b\x45\xe9\x10\x51\xee\x86\x81\xf8\x5b\xf6\xb6\xfd\xe3\x3e\xaa\x4f\x39\x1e\x1f\xee\x03\xa1\xfb\xb6\x4b\x27\xd0\x7a\x4c\x19\x0a\x51\x34\x21\x51\xca\xb8\x87\xa2\x74\x0d\x69\xe7\xca\xfe\x3a\x31\xf8\xd4\xdb\x24\x6f\x77\x35\xe9\x63\x12\x37\x5b\x32\x01\xb5\x93\x19\xc8\x41\xb5\xdb\xc9\x0c\xb4\x4e\x41\xad\x89\xa5\xbd\x26\x87\xd9\xa6\x75\x62\x00\xc1\x41\x8e\x6a\xd7\x6f\xed\x19\x0a\xfa\x6a\x3b\x0b\xb6\xdb\x5d\x0c\xbe\xc6\x65\x57\x84\x3e\x12\xed\xfc\x06\x02\x1f\xe4\x32\x86\xa2\x08\xbc\x47\xab\x5d\xf8\x81\xc0\xa1\xbd\xda\x85\x1f\x08\x0e\x5d\x57\xbb\xf0\x03\xb9\x7d\x93\x2c\xd7\xe1\xcd\x72\x14\xd5\xdd\x34\xd0\xdc\xbc\x53\xed\x2c\x08\x8a\x93\x38\xd5\xce\x82\xed\x2c\x68\x5e\xce\x82\x6d\x74\x0d\xcb\xe5\x2c\x08\x86\x96\xa5\xd6\xa8\x0c\x5a\xb3\x6c\x87\x3f\x0c\x83\x9d\x98\xe4\x47\x0b\xaf\xfb\x27\x7b\x97\x74\xad\x47\x30\xfa\x66\x3b\xbf\x81\x26\xe6\x5b\x19\x83\x51\x54\x9a\xbd\xcb\x38\xd0\x5c\x82\x57\xed\x3e\x59\xeb\x36\x61\xb5\x5d\xd9\x81\xe2\x8c\x4e\x75\xda\x5e\xde\x94\x96\x3e\x65\x21\x92\xa3\x10\x16\xd5\x59\x10\xa4\xab\x9e\x76\x81\x06\x5a\x01\xd3\xce\x30\x20\xbe\xd5\xd6\xaf\xe1\x1b\xa9\x71\x37\xc9\xa2\xb2\x0d\x47\xdc\xd6\x6a\xe7\xa1\x36\x40\xb7\x43\xc1\x65\x1c\x28\xf7\xa3\xda\x49\x07\xb4\xfa\x53\x6b\xc6\x6e\xcd\xd8\xf6\x2f\x97\x71\x20\x5d\x1b\xb5\x96\x6d\xd0\xf1\x77\x78\x50\x57\x3b\x27\xb5\xe7\x3c\x18\xe7\xed\x04\xd4\x86\x84\x43\x84\x1b\x27\x52\x84\xf3\x5b\x4f\x5f\x35\xdd\x02\xa0\x26\xce\x49\x20\xdd\xae\x32\x9a\xa4\x88\x81\x86\xda\xee\xe5\x81\x76\x2b\xba\x9d\x93\x40\x94\x5f\x4b\x43\x1d\x88\x76\x20\xba\xca\x03\x43\x55\xad\x9d\xa6\x40\x11\x6e\xb6\xda\x35\x17\x18\x2a\x12\xed\x9a\x0b\x74\x3a\xce\x9d\x6d\x40\x9d\xb6\x9d\x6e\x0f\xfd\x76\x76\xa6\xda\x7a\xab\x81\xa1\x27\x44\x3b\xb5\x80\x6c\x3f\xa0\x53\x0b\xc8\xcd\x1f\xba\x74\x02\xe1\xe4\xdf\x9a\xb1\xdb\xc8\x00\xc8\xfe\xd6\x5b\x0d\x0c\xee\x18\xae\x76\x81\x05\x9a\x83\x86\xd5\x6e\xc9\x81\x54\x03\x69\xed\x6d\xa0\xb4\x33\xb7\xc6\x35\x50\xc3\x8f\xe6\x6c\x03\x5a\xcb\x50\xbb\x74\x02\xc3\xdd\xd6\x76\xe9\x04\x06\x91\x95\xaa\xdd\x33\x6b\x2f\x41\x70\xa4\x38\x01\x81\xd8\x15\x49\xae\xa6\x40\xb9\x28\x6a\x27\x20\x10\x3a\x1e\x18\x6a\xb3\xbe\xa1\x36\x1d\xd4\x8f\x1d\x80\xa3\xfb\x2e\xb0\x5a\x5b\x3a\xc8\x83\x35\x7d\xbb\xe6\x02\x79\xd8\x4d\x9c\x5a\x40\xe9\xab\x32\x75\x4f\x00\xc9\x3d\xa4\x35\x5d\xc8\x80\x2a\x26\xec\xa9\x2d\x1d\xa4\x1b\xe9\x53\x41\x0f\x82\xfb\xe5\xcb\xf0\x98\x62\x68\x07\x9c\xda\xd2\x41\x9c\xa7\x4f\xbd\x4c\xf2\x40\x0d\x79\xb9\xf8\x30\x16\xe6\xc1\x94\x37\xb5\xa4\x81\x76\x3d\x32\xb5\xa4\x81\xd8\xf8\x42\x53\x6f\x35\x30\x88\xa5\x52\x53\x81\x0a\x2a\xcd\x5e\x5f\x04\x30\xb8\x89\xa1\xa6\x2b\x0d\xd0\xce\xbb\xd3\x95\x06\x18\x0e\x98\xe9\x4a\x03\x04\xb7\xe1\xd6\xd4\xde\x06\x52\xcd\x7b\x2a\x89\x41\x73\xd1\x68\x4d\xc5\xee\xf4\x80\x2d\xd3\x94\x41\x34\x45\x0e\x86\xfb\x54\xec\x82\x76\xd2\x30\xae\xa6\x08\x2e\x10\xac\xa9\xf4\x04\x75\xb2\x57\x33\x55\xb3\x41\x07\xa3\x76\x2a\xb8\xc0\x08\x9f\xd2\x93\x0b\x44\xd8\x38\xda\x9f\x40\x70\x42\xa8\xa6\x62\x08\x0c\xb7\x10\x8c\x5f\x29\x2a\xfd\x8e\xfa\x68\x81\xe6\xe8\x5a\x4d\x65\x0e\x18\x45\x5f\x9d\x4a\x13\x50\x1a\x36\x0d\x69\x29\x9a\x78\x55\x35\x35\x23\x81\xda\x59\x86\x4d\xf5\x60\xd0\xda\xbf\xa7\x36\x23\x50\x44\xd0\x2e\x63\x61\x8a\x70\x41\x3a\xdd\x2f\x00\x79\x58\x7a\xe5\x17\xa8\xf6\x87\xca\x2f\x30\xbe\xd5\xd6\x63\x01\x8c\xb6\x03\x28\xd2\x8c\x98\x99\x7e\x5a\x9d\x18\x40\x6e\xdf\x24\xdb\x5e\x9f\x5c\x47\x87\xf2\x6b\x1a\x12\xc5\xb6\xd7\x66\x04\x72\x63\x92\x9d\xea\xc1\xf3\x7b\x8b\x98\x3f\x7c\x9b\x44\x14\x67\x87\x95\x5b\x08\x60\xb4\xad\xaa\x48\x03\xa9\xe3\xa6\xe1\x31\x45\xe9\x41\x34\x35\x23\x81\xd2\xb5\xd6\x88\x99\x22\xbe\x1d\x53\x29\x07\x72\xf7\xd3\xea\xb9\x6b\x78\x4c\x0e\xe2\xd7\x54\xa7\x06\x71\x28\x14\xdc\x1c\x00\x95\x8a\x0e\x2d\x4b\x60\x70\xf0\xa5\xa6\x1b\x7f\x20\x35\xea\x4c\xd5\x6c\x90\x6e\x35\x1a\x31\x53\xc4\x61\xb5\x55\x8d\xc1\xe0\x84\x75\x9d\x6a\xb8\xa0\xf6\xfd\xd7\x81\x2f\xeb\x24\x68\x96\x28\xe5\xf5\xa9\x1e\x0b\xb2\xd1\xfb\x4f\x6d\x3e\xa0\x15\x95\xa7\x42\x10\xb4\xab\x16\x43\x5a\x8a\x68\x26\xec\x53\x7b\x08\xc8\xe9\x0f\x15\x36\x20\x39\xd9\x56\xa7\x66\x7b\xd0\xc3\x42\xe8\xce\x0a\x52\x57\xf3\xd3\xa1\x7f\xaa\x71\x21\x17\x8d\x00\x29\x92\x93\x25\x65\x04\x48\xd1\x83\x8d\x4e\x23\x40\x8a\xc1\xad\xa0\x75\x6a\xc3\x00\x41\x18\xa5\x32\x28\xa4\xe8\xe3\x30\x2f\xab\x8d\xaa\x56\x2c\xe0\x8d\x13\x29\x82\xe3\xf6\x75\x72\x58\xb7\x88\x13\x59\x83\xcd\xdc\x53\xbb\x3c\x08\x0f\x62\x9c\xda\x1a\x40\xe9\x39\x62\x9c\x48\x51\xc4\xd5\x2c\x83\x42\x8a\x74\xc7\xcf\xa0\x90\xa2\xf2\x34\x2f\xdb\x8b\xb3\x06\xdc\x99\x5b\xa7\x0a\x1d\x88\xcd\xcf\xa1\x42\x07\x9a\x98\x12\x65\x9c\x48\xd1\xce\x6f\xa7\x0e\x59\xa0\x36\x1b\x47\x65\x09\x94\x6a\xdf\xa9\xfd\x1b\x94\x26\x83\x53\xcd\x08\x84\x6a\x90\x81\x1c\x45\xab\xba\x9c\x8a\xa4\x53\x33\x36\xab\x96\xd3\xa5\x39\xa8\xcd\x56\x75\xd1\x0d\x42\x65\xda\x40\x8e\xa2\x35\x17\x9f\xda\x99\xc1\x68\x96\xad\x06\x72\x14\xf1\x7d\xa3\x02\x02\x8c\x93\x21\x76\x6a\x67\x06\x1d\x78\xab\x9d\xca\x0c\xd0\x3b\x73\xa5\x81\x1c\xc5\x98\x18\x75\x0c\x98\x28\x86\x9e\x91\x06\x4c\x14\x23\x6d\x42\xb5\x06\x30\x38\x2b\x55\xa7\x96\x5a\x50\xfd\x4d\xf2\xa3\xe1\xb5\xb3\xd1\x4d\x5e\x1c\xd7\x17\xc9\x55\x66\xf5\xd2\x06\x0b\x42\xf7\x04\x43\x21\x8a\xe0\x2e\xa8\x7a\xa9\x6e\x80\xd0\x11\xfa\xa5\x6e\x01\xaa\xcc\x8b\xb3\xf9\xa2\x75\x26\x79\xb9\x62\x04\xad\xec\x37\x3a\xa2\x28\x9d\x05\x5e\x2a\x25\x20\x88\xd0\x5e\x2f\xb7\x0a\x41\xea\xd7\xf0\xe2\x44\xa7\x68\x2e\x54\xa8\x97\x1a\x08\x88\xc9\x10\x7d\xa9\x81\x80\xe4\x22\xff\x7a\xb9\xa4\x03\xed\x91\x83\x97\x42\x01\x94\x1e\x66\x2f\x3d\xe1\xc1\xe0\x0e\xfd\x7a\xa9\x48\x80\x72\x93\xf9\xa5\xc9\x12\x0c\x37\x27\x5f\x1e\x40\x02\xc5\xed\x2f\xf5\x52\x74\x80\x54\xd7\x7f\xe9\x52\x00\x82\xeb\x0f\xeb\xa5\x50\x00\x31\x2c\x97\x2b\x33\x10\xee\xaf\xbc\x1c\xee\x20\x87\x79\x39\x90\x41\xbb\x01\xf2\xd2\x5d\x11\x04\x97\xa7\xd5\x4b\xe3\x1c\x18\xe5\x77\x74\xd5\x03\x4a\x51\xfb\xf2\xa0\x0f\x48\xbb\xef\x4b\x4b\x1c\x08\x82\x33\xd4\x4b\x45\x02\x24\x61\x72\xea\xe5\x78\x04\x7d\xb2\xf0\x7b\xa9\x22\x80\xe1\x7a\xf7\xe5\x11\x1e\x50\xdc\xbc\x53\x2f\xe7\x70\x90\x07\xaa\xf1\xcb\xc1\x07\x5a\x4f\x0a\x23\x40\x8a\xe0\x42\xbd\x7a\x39\xf8\xc0\xd0\x82\xfc\x72\xdd\x00\xc2\x93\x16\x2f\xa7\x4f\x10\x2e\x71\x5e\x3a\xc9\x80\x3a\x7d\xa3\xca\x38\x68\xc5\xe3\xcb\x61\x05\x52\xad\xe1\xed\x4e\x37\x08\x7d\xb6\xdf\x0e\x18\x30\x4e\x74\x57\xe3\x39\x8a\xe2\x7e\x8b\x7a\x3b\x5b\x81\x18\x74\x4c\x43\x3c\x8a\x08\x94\xf1\xb7\xfb\x05\x60\xba\x33\xf7\x76\x28\x80\x76\x9d\xf5\x76\x28\x80\xa9\x8a\xf0\x1e\x66\xcf\x35\x28\x5c\xa0\x53\x6f\x3b\x39\x88\x6d\x9e\xbf\x9e\x8a\xdf\x8e\x01\x30\xd5\xd5\xdf\x6e\x71\x83\x41\xb0\x80\x7a\x6b\xe9\x00\x53\x31\xf2\xd6\x23\x18\x74\x5b\x6c\xdd\xe7\xc0\xe0\x60\x78\xbd\x55\xb9\xdf\x5e\xed\x8e\xa8\x34\x32\xa5\x18\x27\xe2\xcd\x08\x90\x22\xed\x45\x6f\x3b\x3c\x68\x5d\x87\xde\x6e\x45\x83\x72\x07\xdd\x38\x91\xa2\xfa\x30\xc9\xaf\x45\xa8\x28\x15\xba\xb7\x96\x7c\x90\x7a\xd8\xbf\xb5\xe4\x83\x20\x1a\x5b\xbd\x3d\x84\x07\x8a\xfb\xf8\xeb\xed\xee\x34\x48\xcf\x57\xbe\x9d\xdf\x40\x28\xd5\x8d\x13\x29\x86\x4b\xe0\xb7\x36\x0c\x90\xdc\xef\x5c\x6f\xf5\x7e\x10\x5a\xd2\xde\xee\x3b\x83\xd4\xd5\xf3\xed\x70\x05\x75\x5a\xed\x69\x51\xb9\x68\x26\xb0\x16\x1a\x27\x52\xa4\x0e\xc7\x6f\x1d\x8e\x41\x72\xbb\x62\x19\xdb\x51\xe4\xb7\x71\xb4\x7f\x83\x4a\x3f\xad\x4e\x41\xa0\xb8\xaf\xa1\x8c\x8e\x28\x42\xbb\xd6\x5b\x5d\xfd\xed\xfe\xae\xdd\x44\xcb\x36\x48\xcf\x8c\x18\x0a\x51\xc4\x61\xef\x76\xcb\x17\xd4\x70\xa4\x78\xc4\x02\x24\x91\x3a\xea\xed\x96\x2f\x18\x04\x70\x2f\x43\x21\x8a\x2a\xb4\x99\xb7\x53\x31\x68\x02\x94\x94\x11\x0d\xeb\x1b\xd1\xd0\x37\x6a\xec\x7e\xeb\x6b\x67\xf6\xce\xce\x6f\xcf\x53\x1c\x3e\x65\xbf\xc7\x95\x98\x93\xf2\xf5\xd6\x94\x01\x42\x35\xd9\x88\x86\x22\x06\x33\x84\x11\x0d\x45\x0d\x7b\xa1\x46\x0a\x23\x1a\xee\x96\x4b\xc3\xf9\x1b\xa7\x20\xe2\x40\xd4\x5b\xf9\x03\xa2\x6d\x89\xdb\x24\x0e\x11\x73\x7b\x70\x19\x26\x50\x0c\xae\x96\x28\x63\xef\xd5\x37\xf6\x1e\x5d\xce\xe8\x77\x22\x9d\x2b\x8d\x7e\x27\xc2\x35\xfd\xe5\x84\x0d\xa2\xf9\x68\x97\x62\x04\x04\xb7\x01\xd4\xa5\x45\x14\x24\xc1\xe2\xea\xd2\x61\x06\xe4\xc1\x0a\xc8\x50\x77\xa2\xb8\x04\xb8\x0c\x4f\x27\x72\xa3\xf4\xc6\xa2\x13\xa5\x50\xb8\x5c\xc0\x83\xd2\x8d\xf2\x72\x01\x0f\x06\x21\x09\xca\x90\x72\x22\x37\xe4\xc4\xa5\x9c\x00\xc9\x4d\x32\x65\x48\x39\x91\x9c\xc3\xae\x4b\x35\x1b\x74\x31\xef\x5e\xea\xd4\xa0\xb8\x72\xa7\x2e\xf7\x05\x41\x9e\x56\x48\x35\x1b\x34\xb1\x1b\xea\x52\x0c\x81\xa1\x0b\xab\xe1\xe9\x44\xe9\x07\x72\xa9\x53\x83\xd1\xd8\x86\x2f\x45\xc7\xa5\xe8\xb0\x8e\xea\xd4\xa0\x36\xbc\xb1\x2f\xed\xa6\xa0\x83\xe1\x7e\x29\x60\x40\xe8\x83\x7c\x69\x32\x00\xe1\xd9\xb2\xcb\x3d\x37\x30\xb8\x9e\xbc\x2e\x8f\x88\x81\xd0\x24\x7e\x69\x24\x05\xb9\xa3\x49\x5e\x1a\x16\x40\x7a\xa4\xf7\xd2\xfd\x05\xc4\x76\xfa\x94\x7d\x62\xb2\x99\xc2\x4a\xf6\xd2\xfc\x00\x4a\x77\x8e\x4b\x31\x04\xba\xbe\x4f\xd9\xf6\x58\x54\xcf\x6f\xf6\x36\x0e\xbb\x7c\x83\x81\x7c\xe9\x24\x03\x42\x77\x58\x83\xeb\x89\xd0\x8f\xf6\xd2\xa9\xf1\x32\x94\x34\x63\xe8\xd2\xba\x01\xe2\xb0\x09\xb5\x6e\x80\xd0\x93\xeb\x72\xdd\x00\x62\xda\x38\x0a\x3e\xd0\x03\x5d\xff\xd2\xbb\xe6\x32\x54\x02\x1b\x6c\x97\x76\x57\x50\x6e\x77\x5d\x2e\x38\x2e\xcf\x50\x60\xf2\x34\x76\x9f\x08\xcf\x70\x5d\x8a\x47\x50\x9e\x96\x34\x50\x9f\x68\x22\xb2\x96\x21\xf8\x44\x1e\xdb\xf6\xeb\xa9\xf8\x72\xc7\x0f\xd4\x18\xe6\xeb\xdb\x51\x89\x08\x0b\x54\x97\xa2\x12\xa4\xfe\x38\x97\xde\x31\x60\xb4\xfd\x56\xe3\xed\x65\xf8\x79\xbf\x96\x02\x15\xe4\x89\xa2\x79\x29\x50\x2f\x05\x2a\x8a\xd3\xa5\xc6\x05\x5a\x29\x75\x69\x35\x01\xe9\xf9\xca\x4b\x13\x09\x68\xee\x43\xab\x4b\x2f\x4b\x10\xf3\xf4\x29\x8b\x7a\x19\x57\x85\x5e\xa4\xf4\x04\x4d\xb4\x88\xba\x34\x91\x80\xdc\x94\x78\x9a\x48\x40\x72\x4d\x4e\x5d\x4a\x4f\x90\x9b\x45\xd5\xa5\x12\x74\x9a\x97\x2e\x95\xa0\xdd\xd9\xbf\xf4\xc7\x01\xe5\xee\xce\xa5\x3f\x0e\x88\x5d\x89\xe7\x9a\x0b\xd4\x57\x7a\x2a\x9c\x41\x7f\xfb\x9a\x56\x13\x10\xdf\xf6\xd2\x82\x0c\xc2\xa5\xc0\xa5\x05\xf9\xfa\x5e\xa3\x6b\x92\x85\x70\xbf\x12\x59\xf6\x71\x2f\x0f\xa4\x0a\xce\x47\x15\x12\x84\x9b\x21\xc6\x2a\x14\xa9\xdf\x9e\x51\x08\x45\x06\x8a\x84\x51\x08\x45\x12\x5e\xae\x3e\xee\xe5\x81\xd0\xb7\xf0\xe3\x32\x0c\x04\x21\xbf\xea\xa3\x63\x0a\x28\x2d\xee\x86\x2f\x14\xc5\x95\xcf\x65\xf8\x42\x91\x5a\x31\x3f\xda\x86\x41\xbb\x71\xf7\x51\x1d\x05\x65\x4b\x7c\x5c\xac\x81\x54\x70\x7d\xdc\x6c\x03\x93\x0b\x85\xeb\xe3\xd4\x02\x86\x9b\xcc\x1f\xd7\x6f\xa0\x34\xfd\x7c\xf4\x42\x01\xcd\x95\xf3\xf5\x51\x77\xfd\xa8\xbb\x5a\x54\xe7\x24\xd0\x61\xb5\x9d\x80\x3e\x86\xc5\xa7\x4f\x7c\x5c\x73\x81\xf2\xa4\xd7\xc7\x49\x03\x94\x8e\xe3\x1f\xb7\xd1\x40\x1e\x48\xf5\x8f\xfa\x26\xa8\x9d\xc1\xf7\x51\x93\x04\x9d\xb6\x84\xee\x1c\xa0\x09\xed\x57\x1f\x67\x08\x10\x41\xcf\x31\x6a\xa3\x08\x65\xc6\x47\xab\xcb\xc7\x03\x6e\x4c\x9f\x1f\x7d\x37\x40\x11\x25\xa5\x3e\xaa\xa0\x9f\xaf\x89\x85\xbc\x54\x41\x41\x0f\xf4\xcd\x8f\x26\x16\xd0\x6d\xcf\x51\x05\x05\xed\x51\xbf\x8f\x82\xfe\xf3\x0d\x0d\xc1\xe7\x50\xaa\x1b\x27\xb2\xec\x85\x4a\xf5\x8f\x07\x44\xac\x90\x2a\x28\x48\x2e\x8d\xa8\x8f\x82\xfe\x63\x5c\x72\x26\xc6\x8f\xeb\x4a\xd0\x84\x98\xad\x8f\xeb\x4a\x90\x27\x53\xcb\x47\x77\x0e\x90\x69\xc7\x54\xf6\x83\x3c\xed\x00\x0a\x7a\xd0\x9e\xba\xff\xa8\x95\x82\x9c\x98\xa4\x3e\x6a\xa5\x20\xa7\x7d\x55\xad\x14\xb4\x67\x2a\x3f\x9e\xda\x00\xa5\x66\xf4\x71\x5d\xf9\x71\x5d\xd9\x3e\x65\xdb\x5f\xda\xd2\xc9\x4b\x7d\x13\x24\x71\xa1\xea\xa3\xbe\x09\xda\xf3\x2b\x1f\x9d\x2b\x40\x6c\xc8\xc2\x8f\x2a\x28\x08\x55\xf6\x8f\xfa\x26\x68\xcf\x28\x7f\xdc\x27\x03\x59\xac\x41\x3e\xda\x86\x41\x1c\x8e\x6d\x5d\x30\x3e\x9e\x2d\x0b\x9f\xb2\x7f\xb1\xde\xd5\x79\xd9\x28\x97\x22\x15\x8f\x46\xb9\x14\xa1\xb5\xd1\xc8\x94\xa2\xda\x4e\xae\xb1\x09\x84\x07\x02\x0d\x56\x29\xea\x2b\x4d\x94\x85\x06\xab\x54\xa5\x32\x58\xa5\x48\xcf\xaf\x18\x99\x52\x24\xf7\x83\xd5\xc7\x4d\x31\x90\xdc\xc0\x5d\x46\xa6\x14\xfd\xfd\x8e\x3a\x6a\x80\xd6\x55\xf4\xa3\x35\x1a\x24\xf1\xd0\xea\xa3\x35\x1a\x34\x77\x67\xd5\xc7\x05\x3c\x68\x22\x24\xd7\xad\xc4\xbc\xbd\x55\xf4\xf8\x3b\x0e\x33\x19\x60\x52\xb4\x26\xa5\xdb\x83\xbf\xa0\xdc\x46\x33\xe6\xa4\x18\x9e\x93\xbd\xb5\x6b\xdd\xc6\x33\xa3\x8c\xb7\xeb\x7b\x30\x92\xce\x70\xbb\xbe\x07\xc1\x25\x2c\x75\xab\x98\x83\xe4\x52\xb6\xba\x09\x4b\x2d\x42\xff\x12\xe3\x57\x8a\xe4\xc2\xb2\xba\xf5\xbd\x00\xe5\xa6\x83\x21\x2d\x45\x06\xad\x72\xeb\x42\x01\x7a\x0c\xb3\xff\x98\x84\xdb\xe8\x69\x92\xa5\x3f\xb8\xd5\xca\xb6\x53\xaa\x83\xe4\xce\x80\xba\x5d\x30\x80\x41\xc0\xfb\x32\x16\xa6\x28\xb7\x5f\x8c\x85\x29\xca\xe0\x1d\xb7\xd6\x09\x10\x84\x71\xab\xdb\x7d\x41\x10\x46\xc4\x30\x62\xa6\x28\x3d\x6f\x6f\xa5\x3a\xe8\x89\xf5\xeb\x76\xc7\x0f\x84\x16\x18\x23\x66\x8a\xf0\xdc\xe7\xad\x41\x1f\xd4\x44\x0d\xba\x75\xba\xbf\xbd\x31\xd3\xd2\xeb\x42\x01\xda\xe3\xf6\xb7\x86\x3a\x90\x83\xe1\x7a\xeb\x6e\x08\x42\xcb\xe3\xed\x0c\x01\xd2\xe5\xce\xed\xb2\x02\x14\xd7\x9e\x97\xa1\x36\x45\x6b\x5c\xbb\x75\x0b\x04\xb5\x4f\x93\xcc\x1e\x73\x9e\x26\x83\xdb\xe9\x00\x94\x8a\xd7\xad\x11\x1e\x74\x30\x5c\x8d\xbe\x29\x4a\xf3\xba\xd1\x37\x45\x78\x44\xf5\x76\x0d\x01\x52\x97\xdd\x5b\x2d\xfc\xd6\xb1\x8e\xa9\xe5\x56\x73\x06\xa5\xc7\xa6\xc1\x2a\x45\x78\xee\xea\x76\xf7\x10\x8c\xd3\x7e\xef\xee\x21\x08\xee\x16\xa9\x5b\x3b\x20\x28\xed\x03\xb7\xa6\x7a\x90\xfa\x5b\xdc\x1e\xa9\x03\xc3\x68\x37\x86\xb4\x14\xa5\x83\xd1\xad\xa0\x07\xa9\x85\xef\x76\x5f\x10\x94\x56\x17\x43\x5a\x8a\x22\x84\x7a\xdd\xda\x1a\x40\x18\xf0\xc7\x60\x95\x22\x74\x88\xb8\x15\xf4\xa0\xf7\xcd\x24\x8b\x8a\x2f\x79\x23\x92\x8c\x5f\x29\x5a\xc3\xd5\xad\x54\x07\x15\x8e\x6d\x95\x5e\xd0\x5c\x17\x59\xb7\x47\x8b\x40\xeb\x1b\x7d\x2b\xe8\x41\x9f\x18\xce\x8d\x72\x29\x4a\x97\x82\x5b\xc3\xc2\xed\x69\x23\xd4\xb3\x5b\x7d\x13\xb4\x21\x3e\x6e\x1d\x0f\x40\x19\x6d\xeb\x56\x7a\x82\x76\x0b\xe1\xd6\xa5\x00\x8c\x76\x6c\xbb\x39\x00\xc2\x25\x9d\x01\x26\x45\x12\x3c\xb6\x1e\xf7\x0b\x40\xdb\x01\x1e\x9d\xbd\x41\x6b\xb3\x36\xc0\xa4\x08\x77\x28\x0c\x30\x29\x06\xd7\x0e\x97\xd1\x24\x45\x9e\xdf\xa4\x34\x89\xf3\x99\xc8\xaf\x47\x89\x09\xa2\xcc\x5e\xf7\x04\xd0\xc4\x67\xae\x47\x89\xf9\x7c\xcf\x11\x4d\x92\xde\x26\x31\xc9\x4e\x9f\xba\x4c\xba\x58\xe5\x91\xbd\x5e\x61\xc6\x89\xf4\x30\xf8\xa3\x94\x03\xbd\xb3\xf0\x7b\x94\x5f\xa0\xb8\x74\xab\x1e\x77\x0c\x41\x11\xd5\xb8\x1e\x95\x4b\x50\xda\x40\x1e\xfd\x07\x40\x78\x0e\xfb\x71\xc7\x10\x0c\x67\x41\x23\x40\x8a\xd6\x83\xf1\x51\xe6\x80\x50\x4e\x3c\x6a\xa5\x20\xeb\x9b\x97\x75\x4c\xdd\x4e\x29\xbd\x32\x07\x44\x7e\x7f\x68\x51\x75\x71\xb6\x5c\x9a\x4f\x8d\x0d\xa9\x5d\xec\xd1\x56\x0a\x8a\x0b\x3d\xcb\xe0\x8d\x22\xb8\x70\xa8\x1e\xc5\x10\x28\x37\x8c\x8c\xe7\x28\x86\x6a\xe3\xa3\x80\x01\x95\xf4\x42\x23\x35\x8a\x30\x1e\xda\xa3\xdd\x02\xe4\x56\xf5\xeb\xa9\xf8\xd1\xac\x01\x42\x03\x8f\x81\x1c\x45\xea\x01\xf4\x68\x37\x05\xed\x51\xbd\x47\xa5\x15\xb4\x21\xf4\x1e\xd5\x51\x50\xd3\xfe\xa1\x3a\x0a\x5a\xc9\x62\xd4\x46\x51\x87\xc5\xd6\xee\x00\xda\x03\x35\x86\x68\x14\x83\x0b\x96\xea\x71\x9b\x03\x74\xf9\x43\x8f\xdd\x80\x36\x06\xc7\xe3\xe6\x24\x08\xb5\x70\x63\x28\x8a\x3e\xad\xa3\x12\x0f\xb4\x36\xeb\x47\x89\x07\xaa\x98\xdf\x1e\xed\x0e\xa0\x36\x47\x9d\x56\x04\x10\x87\xdf\x41\x63\x00\x88\x03\xf5\xfd\x51\x01\x06\x43\x45\xf3\xd1\x18\x00\x5a\x53\xea\xa3\xa8\x04\xa1\xc7\x94\xf1\x18\x45\x10\xca\xbe\x1e\x57\xfe\x8f\x01\x6c\x08\x75\xf0\xb8\xa6\x07\xa9\x23\xe1\xa3\x86\xfa\x78\x31\xbd\x85\xd0\xa1\x01\x94\xe7\x9b\x8c\xb4\x28\xda\x93\xa6\x8f\x4a\x2b\x28\x55\x97\xe7\xb6\x55\x6f\xe5\x22\x2d\xa1\xbf\x17\x68\x4f\xe2\x18\xa2\x51\x04\xd7\x6b\xd6\xa3\x75\x15\x94\x47\xb1\x1e\x05\x2a\xe8\xef\x53\xea\xb1\x20\x89\x8f\x5a\x8f\xd2\x13\x04\xb7\xcc\xf5\x86\xa8\x14\xc9\xf9\x80\xde\xf0\x6b\x10\x8d\xaf\x4a\x6f\x88\x4a\x11\x63\xf7\xa9\xd3\x24\x6d\x51\x49\xd2\xdb\x24\x6f\x49\x69\x92\x1e\x93\x10\xa8\x6b\x16\xec\x6d\xf7\x8d\x04\x47\x27\x70\x4a\x6f\xbb\x6f\x24\x3a\x19\x67\x7f\x7a\xe3\x14\xa6\x08\x62\xcf\xf4\x86\xee\x2a\x9a\xb0\x9d\xbd\xed\xbe\xd1\x4b\xec\x76\xf3\xba\x4c\xe2\x66\xa6\xa6\xa8\xb8\xff\x8a\x88\x32\xfb\xdb\x24\x15\x1c\xf3\xb2\xa8\xbb\xb3\x33\x15\x42\x38\x8b\x46\x7a\xb6\xd1\x24\x45\xe0\x6f\xda\x46\x93\x14\x41\xec\xab\x36\x74\xa4\xa8\xcd\xbc\x86\x3f\xf4\xbe\xd0\x41\xe3\x0c\x0b\xc1\x29\xcc\x71\xd2\x38\x61\xe9\xc3\xfb\x75\xf8\x21\x16\x64\xd1\xb8\xe8\xf4\x96\x36\xa1\x37\x24\x17\xa5\x4f\x0b\x91\x86\xfa\xa5\x10\x69\xb5\x09\x32\x86\xa3\x46\x1b\x01\x52\x44\x4d\x5a\xa2\x6c\x42\x34\xb6\xe9\x47\x6b\xdf\x88\x89\xf7\x0c\x7e\xd8\x66\xef\xee\xd0\xc1\x0f\xdb\xa2\xb6\x77\xfb\xf3\xc6\xf6\x8d\x44\x2f\xc7\x17\xa1\x8d\xda\x28\xc6\xf7\x8d\xd3\xef\x48\x54\x99\x61\x5e\xd3\x96\x70\x39\x7d\x92\x84\x29\x55\x34\x22\xbc\xb7\xd3\x42\x18\xa6\xcb\x1f\x9e\xf6\x42\x2e\xf0\x62\x6f\xab\x8d\xda\x28\x06\xcb\xb0\xde\x5e\xb6\x17\x2e\x60\x5c\xe4\xdf\x06\x5f\x14\xf9\xed\x5f\x2f\x5b\x82\x40\x33\x6d\xb5\x5f\xd6\xd1\x0b\x4e\xcc\xfe\x65\x1d\x3d\x32\xee\xa7\x7d\xf9\xb5\x91\x72\x6d\xb5\xdf\x36\x34\x1b\xc3\x5b\x9a\x64\x07\x60\x0f\x69\xda\x12\x6f\x2b\xf4\xf6\xac\x14\x79\xbd\xad\x10\xe6\x53\xee\x14\xec\xed\xf2\x29\x02\xcd\x84\x3f\xbc\x2c\xea\xc2\xc4\xf3\xa4\xb7\xcb\x42\x70\xfa\x6f\xb3\xdf\x7f\xfc\xe1\xc7\xe0\xd5\x0c\xe4\x8f\xd9\x13\x16\x76\x38\x1e\x3f\x56\x88\xfb\x2f\xcf\x41\x21\x3e\xe6\xe5\x45\xed\xcd\x1b\x1f\x9b\x90\x20\x2c\x35\xe9\x72\x8f\x79\x3d\xf8\x48\x58\xfa\xc7\xbc\xb8\x6a\x81\xa3\xb7\xbd\xb3\xef\x2c\x9a\xf8\x27\xbd\x2b\x3a\x40\xa2\x79\xf7\x8e\xd1\x50\x14\xce\x28\xbd\xef\x3e\xb5\x7b\x9d\x7b\x93\xf4\x32\x09\x77\xb2\xf2\xa9\xdb\x24\x8f\x8e\xfc\xfa\x30\x53\xef\x2c\x5b\x45\xe0\xfb\xd5\x3b\xab\x4f\xd1\xcc\x36\x6d\x44\x43\x91\x78\x92\xf6\x3e\x7c\x8a\x33\xd9\xc4\x2e\x6e\xe3\x0b\x8a\xb9\xad\x95\x6c\xef\x61\xb1\x83\x18\x40\x6b\x32\x6b\xe3\x0b\x8a\xfe\xe6\xe5\x38\xff\x5b\x30\xc1\x49\x92\x35\x09\x0c\xf2\x0c\xea\xdd\xa1\x0f\x0a\x33\x63\xef\x69\x21\x0c\xc3\x1d\xbc\x31\x7d\x23\xf1\x60\x09\xbf\xd3\x7b\x9a\x3d\x57\x16\xb2\xe9\xd0\x7b\x9a\xbd\xd7\x9e\xfb\xc6\xf2\xd3\x14\xfb\x10\x66\xcf\x26\xb3\x68\xec\xdf\xbd\x97\x6f\xf4\xb8\x58\xfb\x94\xd5\x66\xe1\x37\xad\x76\x59\x08\x0e\x7f\xe1\xc8\xd3\x7b\x59\x08\x82\x6a\xe3\x6f\xda\xc6\x17\x14\x85\xd5\xb7\x0d\x13\x28\x92\xbb\x32\x7a\x9f\x96\x6b\x7a\xb7\x9a\x49\x66\x8f\xb7\x07\x57\x38\xb4\x31\x01\x45\x71\xa3\x58\xef\x38\x97\x8a\xe6\xc0\x43\xef\x8a\x11\xd0\x84\x48\x6b\x03\x00\x8a\xc2\x70\xde\x46\xfb\xeb\xbf\x45\xfb\xe3\x8d\xa7\x79\x9d\x5e\x62\x47\x51\x5f\xe6\xf5\x22\x2e\x94\xd5\x56\x40\x80\xda\x18\x29\xfb\xdb\xfe\xf5\x66\xf1\x61\xf6\x0e\x6a\xc2\xf1\x4d\x76\xf3\xdb\x70\x7c\xa2\x89\x30\xda\xfb\xe5\x0f\x8d\x16\xe1\xe0\x41\x4f\x11\x49\xec\x99\x36\x1c\x9f\x88\x81\xbc\x36\x1c\x9f\x08\xce\xd8\xf4\x7e\x99\xfd\xe5\xa5\x6c\x24\x7d\xec\x4c\x38\xb4\xb3\xf8\xe8\xfd\x63\x85\x70\xf5\xe4\x58\x7c\xef\x1f\x1b\xc7\xe8\x51\x27\x45\xfd\xd8\x27\x50\x83\x38\x3c\xd1\xbb\x02\x02\xd4\xe6\x0f\x6f\x9f\xe2\x78\x30\x97\x13\xb7\xd1\xfe\x44\x63\xf6\xef\xfd\xb6\xe7\x2c\x24\x91\x82\x7a\xbf\xed\x00\x37\x01\xb8\x82\xef\x78\x5b\x7a\xfc\x3a\xc3\x1e\x8d\x41\x4c\x34\x0e\x33\x6d\x68\x3f\x91\xf8\xb4\xf5\xfe\xf8\x43\x14\x9c\xc3\x91\xf6\x58\x54\x4e\xf9\xb2\xc9\xd3\x46\xfb\x13\x8d\x75\xa3\x0f\x15\x1c\xd0\x1c\x5c\x69\xe3\xed\x89\xb0\x71\x0e\xd5\x8d\xc3\xed\x08\xa6\x03\x03\xe2\x89\xe2\x26\x86\x3e\x58\xac\x89\x26\x86\x62\x1f\x58\xa9\x44\xb1\x3b\xdd\xc6\xc8\x13\x85\xa5\xa4\x0f\xd6\x6f\xa2\x0e\x46\xc7\xc1\xde\x83\x28\xa7\x29\x63\xe4\x89\x64\x9b\xb6\x8f\x61\x21\x38\xee\xca\x35\xe0\x7d\x0c\x8b\xca\x46\x03\xe1\x9d\xfa\x18\x16\x02\xef\x51\x8e\xeb\xb7\xc1\xf5\x44\x11\x55\xbd\x8d\xa4\x27\x92\x63\x37\x7d\x84\x6f\x0c\x0e\xe7\xa4\x4f\xb5\x49\x84\x5d\x60\x2a\x36\x92\x9e\x68\xac\x08\x7d\x28\xe5\x8e\x6f\x24\xaa\x35\xac\x8e\xb4\x8e\x84\xb8\x26\xb8\x5e\x1b\x23\x4f\xc4\xd8\x4d\x3a\x4d\x22\xb0\x33\xb3\xcd\x91\x56\x88\x15\xe3\x81\x0a\x7a\xa8\xe0\x80\xe4\x78\x70\x1f\xac\x18\x45\x60\xa4\xe8\x03\x1f\x1c\x11\xaa\xb3\x47\x59\x08\xef\x66\x63\xf0\x1d\x8a\x34\x10\xc4\x52\xe9\x43\x91\x06\x62\xda\x12\xed\x0f\x71\xa5\x19\x36\x74\xfb\x14\x3b\x14\x6c\x21\xf4\xa1\x48\x03\x83\x73\xeb\x6d\x08\x3e\x91\xec\xdf\xf5\x31\x2d\x17\xfe\xf2\x04\xe6\xe9\x43\x01\x03\x82\x98\xcc\x7d\xbc\x2c\xd7\x8b\x19\x26\x69\x1c\x65\xce\x61\xa0\x50\x54\xd0\x43\x0d\x04\xa4\xfa\xe6\x71\xf9\xc6\xcb\xef\xc8\x0f\x2f\xb3\x5f\x18\x18\x20\xfb\xc0\x66\x24\xaa\x10\x1d\x87\xa2\x03\xe4\x74\x74\x28\x3a\x40\x4f\xbf\xf6\xc7\x72\x7d\x38\x67\x6b\xcf\x51\xb7\x30\x58\x5c\x6d\xbf\x36\x50\xf7\x71\xdb\x04\x5e\x7c\x89\x6a\x7b\xdc\x66\xc2\x35\x94\x69\xff\x78\xec\x1f\x8f\x7e\xf8\x8c\x3a\x55\x0f\xd0\xb8\x04\xf4\xa1\x34\x00\xa1\x5e\x76\xa8\x8d\x80\x26\x4a\x53\x0f\x5c\xde\x44\x6d\x63\xd5\x77\xe0\xcc\x26\x9a\xab\xa4\x7b\x38\xce\x87\x47\x08\x19\x62\xc3\x65\x05\x48\xee\xd0\xef\xe1\xb2\x02\xd4\x34\x2f\x2c\xdb\xa2\x88\xab\xd9\x83\x6d\x47\x91\xec\xe5\xf5\x50\x66\x0c\x83\x68\x6e\x41\x92\x6f\xc4\xe6\x33\xcd\xde\x71\x3e\x86\x5b\x98\x49\xd2\x6d\x12\x2b\x6c\x26\xa0\x81\x35\x47\x14\x2e\x01\x3d\xb0\x20\x8b\xe2\x54\xe1\x9a\x60\x4c\x62\x81\xc5\x1c\x6e\xfc\x37\x51\x44\x5a\xec\xe1\xd8\x04\xb5\x99\x17\x06\x1e\x31\x4e\xf3\xc2\x73\x44\xc4\x40\x55\x1b\x65\x85\xb8\x64\xe3\x44\x29\x19\xae\x21\x40\xb1\x1f\xde\x86\x84\x13\x4d\xd0\x99\x1e\x6d\xb9\x70\xbd\xc6\xfc\xd0\xc3\x95\xc6\x30\xfe\x09\x22\xdc\x28\x71\x22\x0e\x56\x1a\x46\x89\x13\x8d\xf7\x67\x0f\xb5\x06\xd0\x6d\x21\xa6\x4d\xb8\x50\x81\x32\x3d\xa6\x15\xc2\xdb\x43\x59\x66\x94\x38\x51\x44\xc4\xe8\x31\xcd\x7e\x72\xe3\xef\xa0\xda\x2e\x51\x40\x71\x31\x7d\x0f\x15\x09\xb0\x34\x32\x92\x7c\xe3\x89\xdb\x16\x83\x7a\x9c\xbe\x91\xdb\x94\x0e\xc4\x9b\xc1\xe2\x44\x6c\xa7\x79\xf9\x1d\x4f\x77\xe0\x69\x1c\x87\x3e\xa8\x81\xb6\x6b\x34\x37\x51\xbb\x6d\xef\x7a\x64\x78\x24\x85\xb5\xcd\x78\xdb\xd0\x04\xa7\x52\xcb\x1a\xae\x47\xc6\x37\x3e\x3c\x15\x52\x29\x01\xcd\xf9\xf0\x36\x0c\x9c\x88\x69\xb9\x94\x19\x60\x84\xed\xa5\xba\x01\x62\xda\x27\x2e\xbf\xd0\x85\x33\x9c\xdd\xf7\x72\xc0\x7c\xdd\x26\x4c\xb2\xa8\xc4\xab\x52\x0f\x36\x7e\x9c\x18\x44\x56\x6a\x83\xc5\x89\x31\xd1\xc5\x86\x92\x05\x0c\x0e\x9b\xf4\x70\xd5\x02\xda\xd5\xc1\xf8\xf8\x85\xb8\x6c\x97\x33\xdd\x3d\x6e\x2b\x74\x13\x3c\xdf\xc1\x77\xdb\x12\xb7\x7b\x79\xbc\xf1\xf6\x3b\xde\x1c\x08\x44\xa5\x1a\x6a\x33\xc3\x60\x27\x7e\x47\xb5\x19\xd0\x6d\xdb\x2b\xac\x40\xf7\x37\x7b\x5b\x02\x1f\x77\xf5\x27\x23\xd6\x89\xc0\xe2\xde\x06\x9e\x13\x81\x73\x6a\x0f\x45\x1a\x48\xb5\x86\xa1\xfc\x1a\x7a\xc2\x2b\x01\x54\x70\x40\x73\x5a\xb2\x43\x0b\x0e\x48\x36\x53\x3a\x38\x9a\x2d\xc6\x49\xf6\xa1\x51\x07\x44\x50\x88\x50\xe7\x01\x81\xc5\xbd\x83\x60\x27\x22\xd9\xe5\xeb\x70\xb1\x06\x82\x78\x44\x1d\xbb\xd9\xef\xfa\x0f\x98\xf4\x36\xc9\x8b\x44\x56\x4b\x04\xf6\x6f\x51\x45\xf7\x0d\x97\x5e\x20\xb9\x47\xa2\x8d\x7e\x27\x3a\x90\x85\xa1\x10\x05\x8d\x9f\x63\x87\x0b\x34\x10\xdc\xf8\xdb\xa1\xd5\x05\x0c\x15\xfb\x50\xae\x82\xe0\xaa\xce\x0e\xe5\x2a\x48\x62\x83\xb4\xc1\xf5\x44\xed\xbb\x79\xdd\x26\x61\x1b\x0e\x0b\xf1\x98\xc4\x5d\xe4\x4c\x8c\xa1\xc6\x16\xdf\x25\x21\x15\x1a\xb6\xc4\xc0\x9e\x82\x48\x0b\xf6\x15\x45\x6c\x7e\x21\x95\x38\x90\x38\xb4\x77\x28\xdc\x41\x87\xad\x3a\xac\x10\x47\x10\xb9\xaf\xaf\x8d\xf0\x27\x92\xe8\x2d\x1d\xca\x7b\xd0\x8e\x8e\x50\x63\x03\x45\xe0\xb9\x8e\xb0\xa1\x43\x9d\xe7\xd7\x1e\xd4\x1d\x61\x4d\x82\xd8\xc5\x36\x94\xf3\x08\xc8\x40\x08\x46\xd8\x9c\x44\x39\x39\x6c\xe1\xb4\x72\x1c\x1a\x52\x8d\x09\x27\x0d\x50\x38\x3e\x75\xa8\xd0\x81\xd8\xbf\x49\x56\x8e\x43\x43\xf3\xfb\x43\xb3\x4f\xcd\x79\xd4\xd7\x95\x2c\x28\xce\x64\x77\xb8\x92\x0d\x57\xb2\xd3\xa7\x6c\x15\x36\x0a\x08\x7b\xd7\x06\x39\x14\xc1\xe1\x89\x0e\xd5\x3e\x50\xdc\x91\xd7\xe1\x12\x18\x14\x5b\xef\x1d\x2e\x81\x41\x6d\x7e\x1a\xa7\x3c\x50\xdf\x2f\xaf\x72\x08\xba\xa7\x49\x56\x08\xef\x18\x3c\x34\xda\x18\x8a\x22\x82\x35\x44\xb4\xa5\xf7\x3a\x3f\x5b\x75\x5a\xae\xaf\x37\x23\x4f\x4d\x3f\xc7\xa4\x63\xd9\xfd\x9c\xb9\x40\x72\xbe\xb2\xc3\x99\x0b\x04\x0e\xc7\x1d\xce\x5c\xa0\x08\x8d\xdc\xe1\x6c\x03\x02\x83\x7e\xc7\x69\xab\x7a\xe0\xc1\x86\x3e\x2d\x17\x61\x15\xa7\x43\xcc\x39\x09\x8c\xb2\x8e\x5a\xd2\x40\x9d\xcc\x10\xf1\xb2\xa8\x2f\x9d\x71\x69\xd5\x97\x4d\xf8\xd2\xe8\xe7\x53\x96\xfe\xe5\xa9\x0b\xb2\x7f\x59\x2e\xa2\x95\xb2\x99\xdb\xf1\xb2\x09\x5f\xae\xa6\xf8\xe1\xdb\xef\xc8\x61\x70\xe7\x24\x83\x2f\x8a\xcc\x6f\x92\x6f\xe4\xe4\x24\x7b\x0f\x1d\xce\x6f\x20\xcb\x9e\x83\x8b\xa1\x48\x67\xd4\x78\x5b\x47\xfc\x09\x39\x21\xd4\x71\x39\x36\x71\x85\xd1\xcc\x68\xf0\xc5\xfe\x06\x5f\xb4\x33\x39\x73\x81\xc0\xdd\xa7\x0d\xab\x28\x8a\xd3\x0d\x6d\x58\x45\x31\xe6\x41\x21\x3e\xe6\xc5\x05\x27\x04\xe9\xe9\xf8\xf8\x39\x3e\x9e\x94\x27\xc9\x99\x2b\xdc\x42\x50\x84\xdf\x56\xdb\xeb\xfc\xfc\x1c\x4e\x66\xa0\x35\x7f\x1a\x69\x51\x94\x26\xb8\x70\x39\x0d\x0a\x6f\xd9\x0e\x27\x20\x50\x41\x97\x4b\xe7\x91\xf4\x56\x3e\x26\x46\xa3\x23\x8a\xa1\xc9\x20\xb5\xde\x83\x22\xea\x47\xa7\xd6\x7b\x50\xf8\x09\xb5\x31\x14\xc5\x70\x79\x98\xda\xee\x40\xb2\x4d\xd2\xe9\xa4\x01\x9a\x6b\x19\x3b\x35\xc2\x83\xd4\x7a\x6f\xa4\x45\x91\x78\xaf\x77\x3a\x43\x80\xc4\x51\xac\xd3\x19\x02\x24\x67\xf3\x3b\x9d\x21\x40\xb1\x6b\xde\xc6\x63\x14\xb9\x59\x08\xa7\x83\x74\x3a\x60\xe1\x97\x0a\xfa\x34\x7c\x3d\x76\x8b\x1c\x56\x7b\xb8\x7d\xc3\x0f\x5d\xad\x83\x91\xf4\x9c\x74\x3a\x00\x89\x0b\x6b\x1b\xb5\x51\x04\x61\x61\xdb\xa8\x8d\xa2\xb8\xc7\xb4\x53\x41\x9f\x46\x84\xb6\x55\x5d\x61\x83\xc0\x19\xa5\xd3\xe5\x34\x18\xc4\x8d\x6e\xc3\x2a\x8a\x22\xfe\x77\x1b\x37\x51\x14\xfb\xce\x9d\x69\xb9\x52\x1f\x64\xde\x98\x7e\x5a\x4e\x7e\x9f\xe6\xa5\x8c\x06\xc1\xe1\x8b\x4e\x05\x32\xa8\xf3\xf4\x87\x16\x62\xa1\x0f\x5b\xd5\x75\x38\x08\x37\x2d\x0c\xb8\x28\xba\xfc\x68\xca\x55\x10\x9c\x4a\x6c\x03\x2e\x8a\xc9\x71\xc6\x4e\x85\x28\x48\x8d\x60\xa9\x10\x4d\x03\xd1\xa2\x6e\xa4\xab\x0b\x50\x04\xf2\x6f\xa3\x2b\x8a\x9e\x7e\xda\x36\x7b\x9c\xd0\x0f\x76\x02\x8c\xae\x28\x02\x3f\xa3\x4e\x57\x17\x60\xe4\xf7\x29\xdf\xc8\x29\x17\xc7\x50\xba\x94\x00\x83\x00\x25\x6d\x28\x45\x51\x84\x30\xee\xd4\x26\x09\x9a\x10\xfd\x9d\x0a\x64\xd0\xb5\xff\xda\x83\xba\xd3\x95\x06\x48\x1c\xb2\x3a\x35\x6c\xfe\x5f\x8c\x9d\xc9\xd5\xf4\x2c\xaf\x45\x53\xb9\x21\x18\xd3\x48\x4c\xfe\x5c\xc0\x4d\xfe\x21\xdc\x55\x7b\xfb\x1d\x3f\xdf\xe8\xac\x62\xb9\x6c\xc0\x58\x1d\xd2\x01\xe8\x14\xf4\x85\x7c\x8c\xc2\x60\xc7\x2f\xfa\xf4\x3d\x4c\xc4\x1b\x21\x12\xd9\x11\x85\xda\xfd\x52\xdc\xe6\x00\xfa\xf4\x3b\x37\x64\xd9\x3f\x3e\x7d\xe6\x4e\x19\x0b\x44\x77\xa2\xf4\x21\x80\xda\xb1\xcb\xba\x62\x17\x18\x6d\xfa\x47\x67\x78\x93\xe9\x87\x79\x25\x3b\xa2\x30\xa8\x78\x09\xd9\x11\x85\x46\x81\x7f\xc8\x8e\x28\x0c\xce\xaf\x8c\x6e\x90\x14\x88\xc3\x27\xea\x8f\xf4\xcf\x1f\x61\xd8\x97\x9d\xb0\xf8\xbd\x7b\x95\xaf\xe6\x82\xc0\x1d\xd9\xdf\x75\x3e\xba\x27\xe9\xb9\x48\x0d\x7f\x02\x3d\x7d\x5b\x8a\x70\x20\xaa\x8b\xc1\xf0\x27\x90\x5f\x27\x94\xea\x40\xab\x3e\x51\x17\x05\xa8\xc3\x8f\xe7\x76\xa2\xe1\xb3\x26\x81\x2d\xba\x22\x1c\x68\x03\x75\xd0\x5f\x97\x32\x4c\x1d\xa7\x9f\xc5\xeb\x55\x2f\x57\xf9\x3a\x5e\xfb\xf5\xda\x2f\xff\xe8\x5a\xe3\xa8\x29\xca\x94\xa2\x1b\x03\x01\x2a\xe9\x3e\x31\x8c\x75\x02\x9d\x13\x11\x63\x50\xa4\x2e\x74\x63\xfc\xc3\xbd\x96\x61\xea\x35\xf2\x5a\x4e\x40\x61\xc0\xb5\x13\x72\x02\x0a\x01\x8b\x7c\x0c\x2d\x7a\x20\x0a\x5f\xf0\xd0\xa2\x1f\x72\x70\x14\x9b\x9a\x4d\xd6\x28\x07\x4d\xc3\x26\xe4\x35\x92\x45\x86\x3e\xa1\x91\x69\x13\xd2\xf1\x09\x8d\xb4\xe4\x18\x0a\x41\xa0\x6b\x98\x0f\x77\x4e\x80\xda\x10\x49\xc3\x50\x06\x30\x60\x19\x88\xe1\xce\x09\xd0\x0f\xff\x68\x68\x10\x08\xf2\xe3\x42\x0a\x3d\x61\x40\xf7\x18\xf2\xda\x09\x8d\xe2\xaf\x18\x6e\x6d\x00\xbd\xe1\x74\x0f\x45\xd2\x30\xe0\x81\x2a\x1e\x06\x3c\x80\x31\xf0\x2b\xe5\xa2\x13\x6a\x38\x39\x86\x32\x80\x56\x87\x4d\xde\x9e\x94\x13\xb7\xe4\x86\x31\xc5\x81\xd9\xa8\x09\x2a\x63\x9d\x30\x5c\x4c\x43\x29\x35\x94\x52\xb8\x61\x92\xd8\x09\xe1\x66\x9b\xf4\x74\x42\xd5\x81\x97\x9e\x4e\xa8\xc1\xfa\x1a\x24\x2f\x0b\xa1\x54\x97\x19\x4e\x08\x0a\xa5\x63\x90\x9a\x26\x84\xf1\xa7\xa1\x49\x05\xb4\x60\xdd\x0f\xbf\x5a\x60\x90\xbb\x11\xc3\xad\x8d\x61\xf9\x39\x61\x59\x09\xde\x84\xce\x69\x81\x31\xdc\xed\x00\x86\xb6\xd8\xd0\x16\x03\x06\x85\x09\x31\xfc\x90\x81\x50\xa3\xca\xf9\x26\x54\xa8\xdb\x62\xf8\x3d\x02\x5d\x9f\x4b\xce\x37\xa1\x9d\xce\xaa\x51\x04\x60\x74\x97\x89\xbb\x1d\x40\x73\xbf\x60\x18\xb9\x04\x06\xb5\xe6\x31\xb4\xc5\x80\x0a\x65\x45\x0c\x03\x0b\x40\xd3\xcc\x1e\x6e\x80\x00\x4d\x3b\x65\x68\x9e\x01\x0d\x7e\xd4\x90\x2c\x4e\x68\x24\xe0\x86\xcc\x70\xc2\x70\x17\x46\x1a\xb8\xf8\x68\xe0\x10\x43\x12\xbc\x09\xed\x7b\xdb\x86\x0c\x86\xa7\x60\x70\x55\x68\xea\x85\x21\x03\xbe\xed\xd0\xd4\x03\x9a\x9b\xdf\xb2\xb9\x09\xc1\xf1\x9a\x21\x9b\x9b\xd0\xa8\xf3\x0f\xd9\xdc\x84\xda\xb0\x9f\xe4\x56\x13\x86\x7b\x81\xa1\xe8\x00\x9a\xc1\xb9\x30\x30\x0a\x84\xdb\x37\xa1\xb1\x04\x54\xd7\x44\x68\x2c\x01\xcd\xbd\x75\x69\xcd\x84\x01\xaf\x54\x04\x09\xb8\x42\xa7\x04\x31\x42\xaf\x18\x88\x03\xd1\x11\x24\xcd\x0a\xf1\x33\xcf\xfe\x54\xc5\xa1\xfd\x03\x0c\xce\x98\x8a\x50\x66\x00\x9d\xf3\xd2\x23\xcc\xaa\x00\x5a\xc5\x40\x09\x2d\x1b\xa0\x41\x2d\x1a\x61\xa2\x05\x10\x70\x2a\x47\xb8\x77\x00\x34\x92\x97\x43\x92\x30\xa1\x06\x22\x49\x92\x30\x61\x1c\x76\x42\xa3\x02\x18\x46\x99\x42\x7b\x00\x68\x41\x30\x32\x74\xe9\x80\xe6\x9e\x7d\x68\x0f\x00\x9d\x43\x6d\x23\xdc\x4e\x00\xfa\x40\xa3\x86\x31\x45\xa0\x69\x0f\xc8\xc9\x25\x54\x6a\x6e\x43\x4e\x2e\xa1\x51\xd6\x15\xb1\xed\xd7\xd6\xa2\xe7\x89\x6a\x7a\xa0\x0e\x57\x91\x02\x02\xa8\x13\xc9\x12\x6e\x27\x00\x71\xba\x18\xfc\x5c\xc3\x4a\x53\xbc\x83\xf0\x73\x05\xda\x41\x14\x33\xd4\xa8\x40\x0f\x0c\xcd\xf0\x43\x04\x86\x21\xa5\x30\x9c\x07\x8c\xf9\xfd\xd1\xb9\x97\x5a\x8b\xef\x3c\x0c\xd4\x01\xed\xfc\xfe\xe8\x14\xe2\x3a\x95\x6a\x93\xbd\x87\x6d\xcb\x3c\x0e\x79\xb4\x84\x4e\x7d\x78\x24\xf9\xa6\x42\x3f\x89\x4f\xca\x7d\x25\x74\x72\xb6\x7f\x62\x95\x26\x2b\x97\xc8\x4c\x4a\x15\x23\x10\x85\x2f\x38\xcd\x39\x02\xa2\x86\x7f\xbc\x6c\xa2\xec\x86\x8f\x3a\xf5\x47\x80\x9f\x11\x4f\x53\xb3\x89\xbc\x3d\xbe\xf3\x74\x27\x00\x68\xda\xd7\xa9\x0f\x01\x74\x37\xf8\x53\x8b\x1e\x08\x8d\x92\x74\xf9\x02\x8d\xea\xac\x48\xb5\x60\x4a\x8e\x8e\x5a\x4f\x6d\x75\xa0\x1b\x96\x4d\x95\x19\xd0\x39\x5e\x33\xa4\x8a\x12\x9a\x1b\xe9\xa9\x9a\x02\x06\x74\x45\x91\xe9\x1f\x29\xb9\x84\x9a\x34\x32\xed\x17\x0c\x0f\xee\x60\xa5\xca\x2c\xb5\x96\xf1\xe9\xd3\x4f\x21\x3d\xf4\x8f\xf7\x28\x7b\x94\x30\x0a\xe1\xcf\x34\x6e\x01\xd4\xee\x55\x06\x29\xf2\x0b\x52\x70\x7b\x23\xee\x40\x37\xaf\x2a\x55\x79\xb9\x25\xf5\x67\xa2\x5d\xe4\x40\x1b\xce\xbd\xbb\xf9\xc0\x68\xd3\x26\xe7\x9e\x6c\x6c\x4a\xff\x23\x55\x66\x40\xd3\xf9\x90\xa5\x49\x08\x53\x87\xd2\x2d\x39\xa0\x42\x26\x1f\xe9\x96\x1c\xd0\x4c\xc8\x92\x20\x49\x68\x54\x58\x47\x3e\xf6\xeb\xf1\x0d\x31\x85\x2e\x5f\xa0\x19\x11\xcd\xd7\x7e\xfd\xa0\x72\x2e\x70\xa4\xdb\xed\x40\x73\x7b\x6f\xaa\x34\x80\x80\xeb\x22\xe4\x36\x8a\x8f\xdb\x88\x37\x34\xdd\x4d\x03\xba\xb9\x63\xd3\xb0\x2c\xd0\xa0\xa7\x8b\xa9\x1f\x0e\xb4\x86\x1e\x99\xae\xe8\xe9\x99\x27\xa8\xcf\xa9\xa0\x07\x7a\xe0\xcf\x4c\x77\xc0\x80\x7e\xb2\x98\xa6\x82\x1e\xe8\x27\xaf\x63\x1a\xfe\x04\x1a\x3c\xb7\x31\x75\xa7\x67\xe3\xb4\x2e\xde\xf6\x34\x53\x67\xca\xe2\x6c\x27\xdc\x14\x03\x86\x3b\x4d\x53\xb3\x11\x18\xc6\x66\x24\x45\x12\x06\x87\x35\x85\x0c\x48\xc2\xa0\x28\x24\xa6\xba\x03\xa8\x5a\xb8\x53\xdf\x19\x08\x6d\xd7\xe9\x97\x36\xfd\xd2\x50\x9f\x52\x27\x09\x5d\x2b\x5e\xea\x24\xa1\x73\xb8\x7a\x4c\xdd\x69\xa0\x57\xc4\xb6\x3c\x49\x42\x18\xaa\x97\x14\x49\x18\xb0\xce\xc6\xd4\xdf\x9d\x9e\xb9\xe4\x80\xd4\x30\x40\x23\x1b\x3b\xa6\x9f\x28\xd0\x38\x12\x33\xa6\x1f\x1f\x10\x66\x19\x4c\x3f\xbe\xf9\x6d\x8a\xd9\xe4\xbd\x70\x55\xdd\x4d\x9b\x7e\x8f\xc0\xd0\x25\x9c\xcb\x59\x5d\x2c\x93\xe3\xef\x43\x12\x43\x36\x24\x21\xf5\xf2\xa6\xd1\x42\xa0\x73\x24\x78\x48\x90\x24\x34\x33\x0e\xa6\xce\x2d\xd0\xcc\xaa\x98\x6a\x2e\xa0\x1b\x53\x9c\xfa\xa8\xc0\x38\x11\x10\x53\x87\x14\x68\x1c\x59\x18\x53\x87\x14\x88\xc4\x45\x99\x2a\x33\xa0\x55\x07\xe7\x36\x1a\xd0\x29\x3d\x0b\xf9\x97\x84\x7e\x3a\x2b\x6e\xa3\x01\xfd\xf0\x05\x2a\x0d\x80\x56\x5c\x91\x4a\x03\x20\x8c\xa5\xcf\xdb\x7b\x41\x43\xf9\xad\x35\x0d\x60\x20\x4e\x5f\xa0\x6e\x2b\xd0\x4f\xac\xa4\xa9\xdb\x0a\xf4\xd3\x37\xaf\x69\x0b\x0c\xf7\x9d\xa7\x46\x2b\x10\x15\x11\x3e\x8d\x29\x4e\x13\x79\x50\x1a\x53\x3b\x16\xe8\x59\xfd\xa3\x03\x62\x37\xec\xf0\x0b\x56\x8c\x00\xc3\x98\xcf\xd2\x21\x05\xd2\x61\x2f\xf7\xa6\x80\xee\x36\xed\xd2\xf6\x04\x2a\xa7\xf4\xc6\xd2\xd0\x04\x86\x16\xea\xd2\x93\x05\x82\x14\xe7\x58\xd4\x66\x08\xa3\xb1\x13\x20\xbd\x93\x10\xd0\xcf\x87\xf4\x4e\xc2\x50\xe5\x2d\xe3\x93\x40\x98\x1d\xb3\xdc\xf3\x07\x9a\x41\x2c\x19\x9f\x84\x30\x3d\x61\x69\xda\x02\x23\xbd\xca\xfd\xa4\xf5\xed\x27\xfd\xe6\x7e\x19\x40\x04\xa2\x22\xb8\x96\x7b\x40\xc0\x30\x2a\xb7\x34\x80\x81\xa1\xfa\x5c\x7a\xc5\x40\x73\xcb\x65\x69\xed\x02\x95\x4a\xe6\x90\x04\x4a\xa8\x1c\x07\x11\xcb\x9d\x22\xa0\x86\x03\x52\x54\x02\x35\x88\x06\x2d\x73\x7b\x80\x06\x49\x74\x2c\xe5\x22\x10\x66\x00\x2d\x2d\x67\x60\x70\x82\x6d\x2c\x9d\x6e\x60\x18\x16\x59\xca\x45\xa0\xc3\x8c\x1b\x32\x3e\xc5\xc7\xf8\x44\x30\x72\x19\x1a\x04\x86\x26\xe8\xd2\xc3\x06\x06\xc4\x84\x21\x2f\x94\x10\x5a\x59\x4b\x0f\x1b\xe8\xee\x50\xac\xf0\x6d\xc3\x09\xaf\xab\xb9\x0c\xfa\x01\x15\x82\xa4\x58\x9a\xd9\x40\x85\xe1\x21\x96\x42\x10\xa8\x61\x57\xf5\xb0\x81\xa1\x8b\xb2\x94\x8b\x40\xc0\xa2\x1a\x4b\xb9\x08\xb4\xea\x92\xd3\x0f\x5f\x56\x6d\x60\x2d\xaf\x74\xf9\xa6\x6c\x5b\x0c\xc8\x44\x44\x20\xa0\x9d\x8a\xa5\x87\x0d\x44\x71\xe5\x4c\x3f\x05\xf8\xe3\xd2\xb5\xea\xf6\xcd\xf2\x64\x39\xdf\xb6\x1b\x33\x40\x55\x73\x2d\xed\x94\xc5\xce\x89\x26\xd5\x52\x16\x02\x75\x3a\xf7\xe6\x09\x01\xe3\x1b\x90\xd6\x0c\xd0\x4c\x61\x5d\x26\x05\x01\xe1\x7e\xf8\xd2\x74\x01\xda\x81\xd5\xb0\x8c\xb1\x2d\x8f\x73\xf7\x43\x56\x7e\x01\x63\x10\x88\x59\xca\xaf\x65\xc5\xb0\x57\x69\xeb\x03\xed\xfb\x60\x8c\x9e\x01\x71\xf8\x47\x37\xf8\x81\x7e\x38\x6c\x85\x15\x50\xbf\xdb\xbb\x4d\x02\x8c\xee\x02\xd0\xfc\x07\x06\x05\x48\xb1\x34\xff\x81\x46\x09\x74\x2c\xf7\xe9\x81\x6e\x7c\x73\x69\xfe\x03\x95\xa3\x84\x62\x69\x2c\x01\x4d\x21\x2a\xdb\x96\x50\x39\x55\x34\x96\x5b\xf7\xc0\xa0\x0c\x2e\x96\xc1\x39\x20\x4e\xe5\x84\x89\x88\x40\x35\x3f\x6e\x5b\x1d\xb1\x3d\xfc\x03\x9d\xb6\xdd\x5f\x01\xba\x41\xd6\xad\xb0\x02\xba\x7b\xeb\xdb\x9d\x13\x60\x70\x08\x5e\x6c\x9d\x6e\x20\x1a\xaa\x58\x4e\x2e\xa1\x0d\xa6\x70\xeb\x5d\x00\xdd\xc4\x96\xad\xe1\x05\x8c\x88\xff\x10\xa0\xde\x66\x33\x02\x4d\x79\xbd\xab\x7d\x84\xaa\xce\xfd\x24\xd9\xb6\x84\x18\x6c\x60\x6c\x25\x0b\xd0\x4c\x9f\xdb\xee\x28\x03\x0d\x4e\xf7\x90\x80\x4b\x18\x83\x80\xd8\x56\xfe\x00\xfd\x1b\x89\x5e\x0b\xd0\x39\x63\x21\xe4\xe4\x12\x2a\x24\x2a\xb1\xdd\x0c\xd9\xb2\x8f\xa3\x47\xb6\xa1\x41\x20\x5a\xf7\x8f\xcd\x26\x2a\x71\xaa\x4d\xf6\xbe\xeb\x86\xd1\x09\x8d\x30\xa0\x51\x25\x17\x5b\x0f\x68\x1b\x07\x44\x70\x6d\x53\x9c\x81\x5e\x59\x1f\xdb\xad\x09\xa0\x1b\xd6\xd8\x0a\x1b\x60\x1c\xa8\xf5\xad\x07\x04\x54\xeb\x62\xb6\x6e\x3e\x30\x86\xf3\xa5\x79\x05\x0c\xdd\xb0\x6d\x1a\x12\xd0\xd2\xd7\xa1\x18\x01\x9a\x39\x6d\x5b\x0f\x08\xe8\x66\x59\x6e\x2b\x25\x80\x70\xc7\x6f\xbb\x85\x00\xd4\xe1\xe4\xb8\xe5\x0b\xd4\x74\x26\x8c\x0f\x00\x63\x60\x06\x6d\xad\x2c\xa0\x57\xdf\xd0\xb6\x5f\x3f\x18\xdd\xb5\xe6\xe6\x00\x30\x86\x2f\x4d\x63\x09\x18\x7e\x4f\x32\x64\xc5\xc7\x90\x85\x6f\xb3\x15\x49\x5b\xce\xee\xe2\x1f\x7d\x43\x3f\x18\x23\xbc\xca\x31\x5e\x66\xa5\xf2\x86\xb4\xb2\x80\x30\xc2\x27\x1d\x96\xd0\xcd\xee\xdb\x8a\x11\xa0\x1b\xbb\xdb\x9a\x41\x40\xab\x3e\x51\x03\x07\xe8\x1c\xf8\x1a\x97\x09\x33\xc0\x48\xee\x75\xe9\xe6\x03\xe1\x1e\xe3\xe5\xb7\x09\x34\x0d\xaf\xcb\xc0\x39\x50\xdd\xb9\xbd\x74\xf3\x81\xd0\xe7\xba\x74\x9d\x80\x01\x13\x7a\x5c\xba\x4e\x40\x37\x10\x73\xa9\xfc\x81\x80\x74\x34\x64\xb5\x12\x1a\xfc\xcc\x71\x69\x0f\x00\xbd\x78\x2f\x93\x3e\x80\x66\xa4\xe4\xf2\xe3\x03\x06\xa7\xdf\xc5\xe5\xc7\x77\xa9\xfc\x79\x8f\x12\x4a\x09\xad\xa3\x2b\x2f\x03\xe7\x40\x14\xff\xe8\xd7\x71\x7d\xdc\x20\xcc\x44\xf8\x44\xf9\xf4\x71\x9d\x24\x6e\x12\x3a\x8c\x18\x71\x99\xd7\x00\x74\x8e\x56\x0e\x99\x95\x84\x36\xba\x4d\xdd\x26\x38\x93\x90\x39\x97\x8b\x1c\x18\xd0\x65\xc7\xa5\xfa\xbc\x3c\x64\xfa\xbb\xca\x99\x20\xb5\xff\xeb\xbd\x71\x31\x60\x98\x59\x79\xe9\x70\x00\xc3\x14\x7a\x39\x93\x84\x66\xd8\xff\x72\xdd\x03\x4d\x1f\xe4\x72\xeb\x0c\x08\x2b\x71\x64\x56\x12\x6a\x77\xe5\xe8\x70\x5c\xa6\x27\x1c\x5e\xe5\xed\x37\xde\x14\x9b\x62\xf2\x11\x09\x61\xfe\xc0\x65\x64\x1b\x68\x67\xb3\xc9\x3f\xde\x92\x66\xd1\x55\x75\xe5\xa5\x61\x8f\xb0\xba\x5c\xe4\x40\x85\xad\x34\x2e\xad\x78\xa0\x35\x4c\xd0\x4b\x93\x1d\xa8\x9c\xa9\x13\x97\x11\x64\xa0\x1d\xb8\xd3\xb7\x56\x3c\xd0\xdc\xf7\xb9\x8d\x78\x01\x83\x73\xf1\xe2\x36\xa8\x0c\x74\x0e\x32\x8a\x5b\x5b\x1f\x08\xe8\x7d\xe3\x36\x0f\x0d\x18\x27\x5b\xd1\xb7\x9f\x15\x90\x66\x8b\xdc\x7a\x04\x40\x68\xfd\xdd\x26\xf3\x42\x3e\xd4\xa0\xa5\x8e\x5b\x8f\x00\x68\x1c\x21\x1a\xb7\x79\xfc\x40\x73\x61\xde\x3a\x09\x40\x77\x31\xc9\x47\x24\xf4\x93\x6f\xe8\x36\x89\x01\xa8\x39\xbc\x6a\xda\x64\xc8\xc0\x7b\xd9\x89\x82\xfd\xc4\x32\x91\xb5\x48\xe8\x05\xfb\xe9\x56\x15\x03\xbd\x3b\x20\x25\x00\xd0\x20\x65\x8b\xdb\xad\x33\xa0\xd7\xf1\x1f\xbc\xe2\x5b\x69\x00\x8c\xce\x2a\xba\xd5\xe7\xc0\xe0\x74\xa0\xb8\xf5\x47\x80\xd0\x27\xbf\xcd\x6f\x03\x9a\x1b\xc3\xb7\x69\x0f\x40\x77\x33\xf7\x36\xa1\xe1\xfe\x12\x1a\xe8\xa3\xc9\x6c\xc0\x80\x0e\x2b\xe4\x39\x12\xba\x5b\x26\xb7\xa1\x1b\xa0\x7e\xe3\x75\x2f\x0f\x18\xd6\xe5\xdd\xca\x1f\x20\xe2\x6b\xf2\xd5\x90\xbc\x0c\xeb\x50\xdc\x86\x2c\x81\xca\x59\x2a\x71\x6b\x5b\x00\xcd\x04\xc7\x5b\xe5\x0f\x54\xf3\x3a\x6f\x03\x29\x40\x35\xfb\xf3\xd6\x1f\x01\x5a\x75\x91\xea\x8f\x00\xf1\x8d\xd1\xe8\x3d\xd0\xdc\x3b\xb8\x8d\xad\x00\xc3\x94\x13\xd9\x90\x84\xa1\x1b\x26\xf5\x91\xd0\xab\x5d\x0d\x9f\x18\x14\x24\x7b\x2f\xf7\x05\x81\x7e\xba\x22\x95\x8b\x40\x85\x5b\x36\x6e\x1d\x19\x60\x7c\xc3\xd6\x91\x01\xaa\x99\x5c\xb2\x21\x09\x15\x22\xec\x90\x9b\x48\x18\xe6\x88\xde\x5a\x0d\x40\x87\xec\x2d\xe4\x26\x12\x2a\x94\x70\x71\x9b\x15\x06\x0c\xa3\xab\xf7\x72\x56\x39\xb0\x5a\x1d\x7e\x5b\xa4\x00\x0c\xe8\xc5\xe3\x76\x0b\xe1\x76\x0b\x01\xef\xe0\xd6\x44\x00\x06\x34\x5d\x71\x2b\x2a\x81\xda\xfd\x36\x15\x95\x40\x0b\xfb\xa5\xd5\x00\x84\x99\x82\x52\x1f\x09\x51\x4e\xaf\xf2\x75\x90\x65\xa0\xab\x79\xeb\xc8\xdc\x92\x64\xe0\x56\xdc\x6e\x47\xdc\x12\x61\xa3\xc3\x6f\x83\x3a\xc0\xb0\xaa\xe7\x56\xec\x02\x6d\x14\xfb\xe5\x7c\xb9\x85\xa9\x64\xd1\xb6\x00\xc2\x7a\x8a\x5b\xe1\x7c\x1b\xae\x71\xdd\xeb\xee\x00\xfd\x54\x2e\x2a\xaf\x81\x5e\x9d\x68\x03\x31\x40\xb8\xc1\x2f\xf5\x91\xd0\x95\xc4\xb7\x1e\x10\x10\x90\x2f\x86\x6c\x48\x42\x53\x57\xde\x4a\x75\x20\x4e\x87\xed\xe6\xa4\x04\x49\xfa\xce\xb7\x4e\x11\xd0\x67\x78\x95\x9d\x78\x88\x16\x62\xf3\xdc\x1a\x38\xc0\x28\x4e\x8e\x11\x64\xa0\x7d\x8b\x49\xa7\x08\x18\x27\x1a\xf5\x76\x73\x12\x68\xa6\x71\xcb\x60\x24\x84\x9b\x93\x8f\xbb\x87\x40\xe8\x6a\x3e\x8a\x70\xa0\xc3\x5f\x19\x8f\xe9\x64\x8f\xe9\x64\xac\x2f\x29\x8a\x84\x96\xbc\xed\xc7\xe2\x0b\x20\x74\x48\x1f\xad\x2c\x20\x34\x54\x25\x32\x12\x06\x07\x43\x87\xac\x45\xc2\x80\x48\x2d\x64\x2d\x12\xc2\x3d\x37\xc9\x87\x84\x6e\x04\xf9\x51\x88\x02\xe1\x66\x9d\x4c\x43\x42\xb7\x3a\xe2\x31\xce\xf3\x78\x58\x93\xf7\x32\xa8\x03\x34\x37\xe5\x65\x07\x12\xe2\x44\x28\xc8\x0e\x24\x0c\xce\x16\x89\xc7\x30\x36\xd0\xbf\xf9\x52\x62\x02\x1d\x46\xc4\x78\x94\x85\x40\x33\xa8\xfc\x18\xec\x06\x46\x61\x7d\x3d\x7a\x3d\xc0\x80\xe8\x2a\x1e\xbd\x1e\x60\xe8\x96\x3c\x26\xf3\x02\x1d\x96\xde\x90\x0a\x48\x18\x05\x85\xfd\x28\x44\x81\x3e\x9c\x1c\x23\x38\x40\xd7\x35\x7f\x14\x8f\xcf\x57\x14\xc2\xb0\x0d\xea\x00\x95\x93\xf8\xe2\x31\x40\x0d\x54\x8b\xfa\x1f\xe3\x3c\xc0\x80\x51\x2c\x1e\x05\x1f\xd0\xa7\x8b\xc9\x6d\x25\xa0\x72\xb8\x4c\x3c\xe6\xd1\x02\x01\x8f\x44\x3c\xee\x21\x01\xbd\x7b\x7b\x65\x21\x30\x86\xaf\x43\x59\x08\x0c\x23\x97\x72\x08\x09\xbd\xfd\x07\x8a\x8f\x78\x34\x34\x81\xb0\x14\xf4\x99\x8e\x77\x92\xda\xc1\xf7\x24\x11\x91\xd0\xcc\xf2\x7e\x8d\x03\xbe\x16\xf4\x91\x48\x28\x6d\x8b\x10\x56\xcd\xbf\x6a\x54\xa0\xba\xe3\xf7\x6a\xab\xbf\xa6\xc2\xf0\x6a\x5e\xb5\xe0\xab\x0b\x7c\xda\xd4\x6c\x62\x67\x9f\x2f\xe5\xf5\x35\xbf\xe6\x6c\xf3\x51\xbf\xbe\x2d\x60\x7c\xf7\xf2\x6d\x01\x15\x12\xba\x90\x44\x45\x08\x63\x3e\x92\xa8\x08\xdd\x52\xf4\x57\xfd\xf6\x5a\x25\x37\xbd\xca\x27\x86\x27\xc1\x78\x55\xd8\xe4\xa1\x59\x83\xa6\x69\x13\x27\x48\xda\x7b\xf9\x03\x80\x66\x34\x5a\x4a\x14\xa1\x71\xa0\x4b\xbc\xe6\xdd\x01\x5d\x17\xf8\xf5\xcd\x03\x15\x9a\x9b\x90\x25\x45\x68\x89\xf5\x26\x25\x8a\x50\x03\x9d\xf4\xea\x15\x03\xcd\x50\xc6\xeb\x46\x3a\xd0\x2d\xd8\x92\x12\x45\xa8\xf0\x2f\xc5\x6b\x3e\x33\xd0\x65\x78\x78\x8d\xca\x01\xe3\x7b\xdb\xaa\x3c\x20\x8d\x6b\xbd\x2a\x33\xa0\xe9\x60\xc9\x7f\x22\x54\x73\x7d\x5f\x35\x17\x30\x4e\x32\x47\x24\x3b\x11\x86\x65\x11\xaf\x81\x3a\xa0\x07\x1e\x90\xcc\x26\xc2\x30\x32\xf4\x5a\x9c\x03\x8c\x86\x76\x7e\xdd\x63\x04\x9a\xd6\xdf\xab\xa3\x0c\x74\x98\x95\xe2\x35\x3f\x0e\xe8\xd5\x61\xbb\xd1\xf0\x9a\x1f\x87\x53\x24\x25\x8a\x30\x86\x2b\x5a\x35\x25\x25\x0a\x47\xb5\x84\x94\x28\x42\x57\x73\xc9\x7f\x22\x84\xce\xad\xfc\x27\xc2\x28\x0e\xdb\x94\x39\x20\x38\x3d\x38\x5e\x43\x70\x40\x35\x17\xf3\x35\x15\x06\x18\xed\x67\x2c\xe5\x81\xd7\x22\x8c\x32\x0e\x9a\x8a\x4d\xf0\x6a\x96\x49\x53\xb5\xa9\xb2\x26\xfc\x63\xb7\x89\x32\xdc\xc3\xa6\x61\x13\x85\xf8\xc5\xa6\x69\x93\x29\x05\xde\xeb\xb2\x89\x4e\xfc\xfc\xb7\x3c\x8a\x9d\xd0\x1f\xf9\x09\xe7\x94\xff\x44\xa8\x1c\x37\x92\x07\xfe\x88\xd0\x28\x2d\x4a\x29\x51\x84\x41\xa1\x74\x1e\x44\xe2\x84\x06\x93\xe7\xef\x0d\xd0\x54\xc9\x7e\x38\xb9\x7d\xb5\xab\x08\x18\x76\xad\xf2\xa8\xfe\x11\x05\x44\xe1\x6f\x1e\xc4\x07\x84\x0a\x21\x67\x1e\xcd\x7b\x79\x20\x95\xbd\x6f\xde\x0b\x6d\xc3\xb6\x76\x1e\xd0\x1b\x08\x8d\xc4\x83\x3c\xba\x57\x91\x6b\x47\xf8\x21\x25\x28\x11\x3a\x47\x4b\xe4\xd1\xfd\x63\x97\x08\x84\x01\xa1\x6d\x84\x46\x25\x4e\x1e\xc3\x7e\x59\x43\x11\x74\x35\x9c\x42\x08\x4a\x4e\xa7\x10\x99\x23\x74\x2a\x09\xf3\x08\x7b\x1f\x94\x29\x4d\xde\x50\x38\xab\xe1\xfe\x0a\x9d\x08\x67\x22\x50\xc5\x07\x93\x13\x76\x82\x5c\x3b\x94\x46\x1e\x61\x27\xc8\xc1\x21\x49\x2f\x0f\xc2\xfe\xc2\x68\xbe\xed\xf4\x3d\xc2\x43\x4a\xe1\x6f\x1e\xe9\x4c\x24\x27\xa5\xfd\x1c\x8e\x3c\xd2\x4e\x98\x37\x5c\x6c\x72\xe5\x50\x82\x58\x3b\xf3\x45\xec\x4f\x68\xa4\xc3\xe6\x91\x2e\x26\x12\x22\xa8\xfe\xcb\x63\x7a\x7b\x48\xa2\x61\xce\xc9\x63\xfa\x47\xe8\x9f\x87\x2b\x67\x3a\x46\xa2\x7a\x14\x04\xa6\x94\x28\x42\xe5\xc0\xd8\x3c\x96\x53\x88\x61\xcf\x36\x49\x1e\xcb\x01\x91\x2e\x44\xd1\x75\x1e\xcb\xae\x2e\x7d\x10\x3a\xb1\x7c\x8f\x8b\x83\x57\x7c\x1d\xcb\xf9\x5a\x1c\xfe\x31\xe8\xd7\xf6\x89\x98\xff\x1c\x5d\x92\xc7\xf6\x89\x1c\x2b\x5b\xfd\xe3\x76\x56\x31\xff\xd9\x5b\xcf\x63\x7b\x7b\x52\x0c\x7b\xfb\x3b\x40\x9d\xc7\xe5\x9b\xff\xc1\x38\x27\xf7\xbd\xbc\x2f\x85\xce\xe9\xe0\x2e\xa7\xf3\x22\xe3\xc0\xc5\x70\xf9\xe6\xe1\xb8\x43\x2e\xe6\x71\xfb\x74\x38\x49\xb1\xf1\xf2\xb8\x9d\xe1\x9b\x9d\xfd\x4a\x1f\x6f\xff\x78\x43\xc0\xa5\x64\x79\x1c\x2f\xc4\xce\xe9\xfa\x78\xec\xc4\x23\x53\x19\xab\xfb\x71\x86\x1f\xb6\xf1\xfd\xea\x5e\xff\x08\xd5\x0a\x75\xe7\x79\xbc\xfe\x11\xfb\x1a\xb6\x88\x3c\x5e\xbf\xa7\x17\x32\x9c\xc2\x92\x79\x7d\xcd\x9c\x71\x0e\x1f\x63\x16\x82\x32\xc2\x60\x0f\x28\x8b\xb2\xac\x48\xef\xf4\x35\x0d\x9b\x60\xc2\xfb\x89\xdd\x2c\x44\x60\x84\x80\xcb\x29\x0b\x11\x18\xa1\x61\xbd\x65\xc1\x7c\x17\xa2\xf0\xb9\x16\xa5\x14\x30\x0a\x02\x55\xda\x16\xa1\xfa\x05\x17\x2c\x7a\xa1\xc2\xac\x94\x05\x2b\x5c\xe8\x84\x9e\xb3\x90\x22\x28\x74\xbf\x81\x72\xfa\xc7\x53\x97\x8e\xdb\x63\x85\x0b\xd1\x59\x6b\xa5\xfa\xc7\x0a\xb3\x37\xeb\xb6\x60\x5f\x0b\x9d\x32\xdc\x2c\xcd\x7b\x35\x4f\x49\xe1\x89\xcd\xab\x9a\xb9\x17\xbf\x95\x23\x09\x4b\x16\xc8\x96\x38\x51\x23\x0b\x26\x95\x50\x29\x22\xce\xd2\x9d\xd5\x4e\xe5\xf7\xc9\x13\x87\x4d\x64\x68\x90\x96\x9c\x72\xa9\x08\x0d\xf3\x3d\xcb\xb0\x13\x9c\x64\xc5\xa6\x45\x16\xc5\x1b\x30\x8a\x03\x22\x8a\x20\x54\xaa\x69\xb3\x84\x13\xcd\xb1\xd6\xe4\x46\x67\x09\x87\x8d\x99\xcc\xa9\xfd\x59\xc2\xb9\x0f\xfd\x4a\xff\xe8\x7c\x79\xe8\xa8\xb7\x4f\x9f\xc8\x91\x3b\xf0\x0b\x66\x49\x6f\xff\x83\x0a\x69\x5f\xca\xb8\x22\x34\xc8\xab\x53\xc6\x15\xa1\x72\x6e\x59\x96\xe9\x55\x13\x92\x9e\xca\x4b\xc3\xe8\x15\xda\x70\x31\x29\x92\x80\x3e\x82\xab\x96\x9d\xe0\xc0\x6a\x42\xcf\x59\x96\x6b\x02\x2e\x3a\xe2\x80\x59\x96\xfd\xa2\x6a\x0c\x46\x8c\x2c\xdb\xab\x48\xe7\xc0\xc0\xc9\xb2\x9d\x7b\x42\x06\x14\xa9\x67\x51\x8c\x00\x03\x3f\x3c\xcb\xb6\x13\x5b\x9a\x40\x26\x67\xbb\x00\xc8\xf0\x98\xcd\x3f\x3a\x46\x82\x01\x9c\x57\x9c\xe5\xb2\xab\x14\x4a\x57\xe7\xeb\xf2\x4b\xbb\x08\xea\xa0\x8a\xcb\xe5\xdb\x26\x9f\x79\xda\xd5\xcb\x27\x52\x85\xc0\x0e\x7c\x96\xdb\x01\x51\x4c\xd0\x5c\xab\xb7\x4f\xbc\xa5\x68\xa4\x5f\x8f\x63\x7c\x8c\xc4\xf1\x44\x45\x87\x8c\x2b\xf8\xa8\x29\xbd\x8a\x30\x54\xc5\xe5\xf1\xf6\x66\x85\x21\x4d\xca\xe3\x4c\x3c\xec\x2a\x1c\x74\xf5\xb1\x5f\x90\xb0\x54\x27\xfa\xf5\x89\xb0\xbd\x4f\x5f\x9a\x62\xa8\x58\x85\xd0\x79\x43\xaf\xf7\x7a\xa9\xcd\x77\x31\xbd\xae\x68\x3c\xff\xc3\x7e\xbd\x2e\x00\x0a\x13\x20\x3d\x4e\xa9\x5a\x84\x01\xad\x62\x9e\x4a\x26\xa0\xce\x6a\x53\xd8\xc4\xe1\x0c\xdf\x55\x69\x13\x82\x8f\x85\x79\x2a\x86\x4e\x0f\x32\xfa\xd9\x9b\x79\x6a\x78\x01\x9d\x5d\xbe\x3c\x89\x0d\x0b\x9d\x73\x00\xf3\x64\xaf\x46\xe8\x15\x31\x24\xc7\x8b\x10\x9a\x67\x67\xf1\x5e\xc5\x0c\xd9\xa0\xe9\xb1\x09\x3b\xe5\xb4\xe9\xb5\x89\x88\x3b\x16\xc8\x49\xac\x41\xa8\x70\x2c\xa4\x7c\x31\x42\x50\x53\x99\xa7\x22\x0d\x68\x24\xa7\xa6\x14\x32\x42\x23\x43\x36\x65\x82\x11\x82\x7d\xc5\x94\x09\x46\x68\xec\x3b\xe7\x59\x9d\xaf\x8a\xd8\x66\x99\x9c\xca\xc2\xd3\xad\x59\x74\x9a\x1c\x2f\x42\x2f\x95\x99\x68\xde\x1e\x86\x08\xbc\xf5\x94\xe3\x45\x18\x24\x68\xa7\xbc\x2c\x42\xfc\x97\x43\x12\xf3\x64\x5b\x48\x18\xed\xe0\x51\x0a\x41\x20\x48\x96\xcc\x73\x38\x9d\x83\x0a\x8e\xe9\x55\x4e\xa7\x66\x9f\x7d\x54\x08\x02\x15\xcf\x2c\x25\x64\xc9\x7f\x84\x2c\x4c\x7a\x78\xfb\xe0\xab\x43\xa3\x9e\x8a\xca\xd3\xb3\xfb\x5c\x1f\xda\x78\x40\x27\x4e\x93\xa7\x16\x17\x30\x4e\x54\xcb\x99\x2e\x99\x34\x5a\xe8\x55\xfe\x31\xcd\xaa\xa0\x13\xd3\x4e\x78\xea\x07\x0b\xfe\x9c\x4e\x14\x27\x75\x94\xea\x55\xbe\x79\xfc\xca\xea\x6b\x56\x08\x9e\x1e\x87\x6c\xef\xa7\xc3\x66\x6f\x4a\x55\x7c\x6a\x84\x9d\x5f\x0d\x17\x8b\x61\x39\xc6\x05\xd7\x33\xdf\xd3\xa9\x5d\x06\xb4\xa3\x31\x5f\xcb\x55\x44\x58\xb6\x78\xfb\xe5\x13\x65\xaf\xc3\x30\x3f\x97\x03\xf2\x4c\x41\xa4\xa7\x74\x32\x42\x27\x6b\x30\x4f\xad\x37\x20\x12\xc1\x75\x2a\x76\x81\x46\xf2\x72\x9e\xdb\x25\xb3\xcd\x8c\xf4\x8f\xce\xfd\xd6\x6b\x61\x40\xdb\xae\x42\xee\x79\xf8\x3a\xb6\x73\xbf\x4d\x73\xf3\x2a\x7b\x4f\x4e\x6d\xf8\xa5\x28\xaf\x81\xfe\xaf\xc9\xae\x72\xc0\x12\xf4\x2a\x79\xde\x76\xf5\x26\xdd\xd0\x7b\xdd\xbe\x21\x3c\xd9\xe9\x77\x7e\xbb\x30\x6f\x39\x4d\xe9\xfd\xed\x44\xdf\x70\xf3\xa3\xe9\xa5\xb9\x11\x1a\xf9\x38\x79\x6a\xfd\x01\x95\xb2\xae\x3c\xb5\xfe\xce\xcf\xfa\xb3\x13\xf6\x8b\x5c\x95\xe9\xbd\x34\x08\x81\xd1\x7c\x69\x8a\x70\xa0\xa7\x5d\x7d\x7c\xb5\x3f\xa8\x70\x50\xe7\xa9\x54\x07\x86\xca\xff\xd4\x46\x04\xc6\xe1\x32\xd1\xfa\x03\x6a\xd8\x2f\x65\x2c\x10\x03\x9d\x54\xf5\x77\x81\xc1\xde\x7a\x56\x6d\x44\xa0\x11\x37\xcd\xaa\x0b\x0c\x74\x8d\xcb\xca\x5e\x9e\x50\x15\xa8\x55\x79\x0d\x34\xce\x10\xca\xaa\x0b\x0c\x34\x3d\xd9\xaa\x27\x5b\xf5\x64\x91\x9e\x95\xca\x5c\x61\xc0\xbd\x9e\x12\xe0\x08\x8d\x03\x98\xb3\x6a\xd7\x01\x1d\x06\xed\xac\xd5\xde\x57\x23\x8f\x74\xa2\xda\x2f\x72\xdc\x27\xeb\xab\x2a\x2a\x81\xe1\x1b\x92\x4c\x47\x68\xfa\x82\xb5\xda\x09\xca\x70\xa9\xd5\xcc\xaa\xa8\x04\xba\xca\xbf\x2a\x2a\x81\x4e\xa8\x3e\xab\x72\xb1\x7a\x66\xdc\x61\x93\x7f\x24\x65\x0e\xbe\xbd\xac\x7a\xc5\x40\x7c\x93\xd3\x1c\x10\xc5\xba\x8d\x0f\xb9\x76\x07\xd4\x5d\x13\xf4\xab\xfb\x3a\xc8\x4f\x21\x11\x3a\xab\x9e\x2c\xd0\xd4\xbb\x55\x4f\xb6\x7a\x7c\xc6\x69\x93\x53\x18\x64\x8b\xb0\xe4\xa4\xb6\x11\xda\xf0\xf6\x1a\x71\xc0\xd0\x53\x91\xda\x46\xe8\x9c\x4f\x98\xf2\xd8\x08\x15\x1a\xca\x94\xb4\x46\xe8\x84\xca\xb2\x4e\xff\xc8\xa9\x6b\xc5\xc5\xa4\x13\x09\x04\x65\xde\x29\x69\x8d\xd0\x21\x45\xca\xaa\xc7\x08\xf4\x6f\x72\x96\xbd\xf7\x88\x22\xff\xe8\xe7\x0e\xb4\xc0\xfc\xaf\x97\xf3\x45\x6a\x08\x54\x1a\x59\x2f\xdf\xf6\x0f\xaa\xb2\x50\x86\x1a\xa1\x75\x87\x7d\xf9\x44\x2a\xf8\x21\x1f\x4a\x19\x6a\x84\x06\x97\x6f\xd6\xdb\x89\xfe\x41\x4d\x5f\xed\xed\x4c\xdc\x24\x02\xf9\x0d\xdd\xfe\xf1\x86\x1c\x1d\x47\x48\x26\x18\xa1\x13\x7a\xce\xfa\x38\xa0\xc7\xcc\x26\x6e\xff\xb8\x00\x60\xe9\x4d\x1c\xa1\xfa\xba\xbe\x5e\x52\x32\xfd\xac\xfc\xb6\x81\x46\xe2\x54\xd6\xd7\x59\x7d\x35\x2e\xb9\x97\xb6\x18\xd0\x7f\x16\xc8\x9f\xaa\x58\x86\x19\x61\x90\xce\x9a\x32\xcc\x08\x1d\x2a\xb1\x94\x3b\x46\x08\x8a\x99\xb2\xf9\xe9\x03\x8d\x0d\x9f\x6c\x5a\x5c\x40\x83\x1f\x27\x9b\x16\x17\xd0\xa0\xd4\xcd\xa6\xc5\x05\x44\xff\x9a\x1e\x9b\x38\xa8\x0f\x1f\xa2\xe9\xe5\x01\x01\x93\x70\xca\xd1\x22\x34\xad\xa4\xe6\xa7\x0f\x04\x05\x90\x29\x63\x8a\x30\x28\x22\xce\x66\x5c\x0b\x68\x9c\x1c\x9f\xcd\x6f\x13\x18\xec\xa2\xa4\x04\x25\xc2\x60\xc7\x2f\xa5\x1e\x11\x2a\x87\x66\x65\x1b\x3e\x91\xea\x50\x2a\x4b\xb2\x0d\x27\xc7\x4a\xaf\xe6\x55\xc3\xa6\xf1\xeb\x04\x46\x58\xd3\xa5\x6b\xe6\xae\xb2\xfc\xda\x70\x40\x03\xb2\xdc\x61\xd3\x6b\x13\xc7\xbe\x38\x6c\xa2\xe4\x42\x3b\x10\x82\x4d\xff\x0d\x18\x5a\xce\x8d\x5a\x4d\xa1\xb3\x03\x9f\x6d\xfa\x86\x26\x8c\x99\x2c\xd2\xa6\x05\x02\xb4\x70\xa2\x75\xc3\x80\x5e\xbd\xca\x30\x10\xd0\xc8\x24\x4d\xd9\x35\x84\xe8\x04\x29\x9a\x3a\x1c\x18\xd3\x65\xa2\xc2\x06\x3a\xc7\xea\x67\x53\x61\x03\x61\x78\x4a\x76\x0d\x21\xd2\x05\xa0\xeb\xd4\x4c\x8e\xe7\x43\x6c\xba\x4e\x40\x0b\x64\x6c\x33\x5c\x03\x04\x49\xfb\x29\x2d\x87\xd0\x21\x78\xcb\xe6\x77\x0e\x8c\xe2\x9a\xb8\xec\x17\x47\x18\x77\xfb\xa5\xcf\x05\xf4\xb0\x5f\x9a\x08\x40\xe7\x38\x9a\x94\x96\x43\xe8\x2a\xd9\xf6\x38\xa0\x07\xfb\xc9\xd7\xf1\xb8\x7c\xa9\xd5\x84\x99\x32\x9b\x1f\x22\xd0\x35\x67\x9b\xee\x0e\xd0\x94\xb1\xf2\x66\x08\x8d\x2c\x83\xec\xd0\x28\x09\x0d\x96\x94\xec\x24\xa6\x08\xfd\xf8\x9a\xc2\x26\x5c\xba\xc3\xa6\xb4\x89\xba\x4f\xbc\x03\xd9\x35\x84\x71\x76\x9f\xf8\xd8\x44\x14\x93\xae\x76\xfd\x91\x6e\xb5\xf6\x69\x93\x9d\x38\x39\xaf\x81\x05\x20\xbb\x86\x10\x27\x03\x92\x24\x43\xe8\x1d\x77\xa7\x1b\x7a\x06\x06\x4c\xc2\xd9\x55\xd8\x40\xb8\x7c\xbb\xdf\x23\x10\xa4\x5a\x65\x37\xce\x0c\x0c\x4e\x2c\xcf\xde\xec\x57\xf3\x44\x1f\x9e\x68\xe8\x19\xe8\xec\xef\x66\xf7\x43\xee\x9f\x92\x65\xd8\x86\x6b\x80\x4a\xce\x51\xca\x75\x21\x0c\x0e\x93\x4f\x89\x2d\x84\xe0\x54\xbe\xec\x7e\xc8\x40\x1f\xbe\xa1\xe1\xac\x72\x22\xe2\x4c\xfa\x35\xfc\x23\x24\x3f\x5a\x6c\xf2\x53\x08\xcd\xa8\x5e\x1f\x8e\x91\x83\xc7\xa9\x53\xcb\x6e\x6c\x18\x68\xd3\x31\x1a\xf5\x05\x9a\x01\x48\x59\x1d\x84\xd1\xf8\x90\x65\x75\x10\x2a\xf4\x3d\xd9\xfd\xb6\x81\xa1\x18\xea\x86\x78\x81\x4e\x4e\x49\x76\x3d\x02\x20\x8a\x2f\xcd\x48\x09\x10\x9c\xc2\x9a\x5d\x55\x0c\xf4\x5a\x6c\x72\x40\xaa\x62\x76\x3b\xba\xe6\x3f\xd0\xab\xf3\x45\xf9\xa7\x10\x1c\x95\x90\xdd\x78\x0a\x30\x02\x65\xd6\xd5\xce\xdd\x53\xc6\xed\x97\x9f\x28\x30\x48\xaa\x4e\x99\x18\x84\xa6\x4b\xd8\x8d\xbb\x02\xdd\x68\x74\xbf\xec\x04\x7c\xd6\x8a\x21\x99\x18\x84\x71\x12\x63\xeb\xaa\x62\xa0\x35\x7b\x7f\x7b\x7b\xf8\xac\x39\x44\x21\xbb\x71\xd7\x6e\x2e\x67\xd8\xe4\xbd\x3e\xcb\x9b\xae\xaa\xc3\xbb\x3a\x1c\xab\xb4\x1b\x29\x01\xba\x2a\xb3\xbf\xbe\xc7\x57\xdd\xc1\x13\x8d\x81\x00\x6d\xb4\xf3\x6f\x55\xdc\x0d\x91\x00\x83\x93\x4d\xb2\xbf\x8e\x97\xf4\x70\x0e\x67\xc8\xa1\x61\x0e\x8c\x83\x8f\x67\x18\xa9\x05\x1a\xdc\x20\x39\x0c\x91\x0c\x39\xdb\x58\x91\x43\xed\x3c\x64\xb9\x44\xbc\x8d\xe2\x1f\xad\xcb\xc3\x5e\x1c\x4a\x16\xa0\x73\x68\x72\x0e\xc5\x08\xd0\x75\x8a\x86\xdf\x39\xd0\x0c\x91\x0c\xbf\x60\xa0\x51\xcb\x92\x52\x30\x08\x91\x18\x3b\xc3\xb8\x29\x10\x6c\x02\xe6\x30\x6e\x3a\x3c\x41\x84\xe9\x1c\xc6\x4d\x81\x28\xdf\x1f\xb7\x4d\x72\x3b\xd2\x09\x0a\xe7\x84\xd6\xbf\x26\x9f\x48\x5e\xc2\xf9\x35\xd9\xaf\xae\xb6\x61\x8c\xc3\x31\x0e\x09\xba\x79\xa2\x41\x52\x20\x38\xac\x29\x87\x36\xf1\x30\xb0\x89\xcc\x18\xee\xb5\x00\xcd\x7d\x08\x09\x11\x84\xa1\x07\x34\x8c\x4f\x02\x55\x25\x3b\x96\x63\x5c\x26\xb0\xf1\x1e\xfd\xea\x80\x60\xd3\x34\xc7\x65\xbf\x2e\xd3\x0d\xf9\xa3\x9a\x0b\x68\xa4\x0e\xe5\xd0\x47\x05\x62\xda\xaf\xdb\x7b\x41\xb2\xaa\x4e\x92\xd7\x40\x18\xe9\xbd\xf4\x3e\x81\x4a\x0e\x60\xca\x45\x20\x04\xb4\x40\x39\x0c\xfa\x01\x01\x23\x46\x4a\x16\x20\xf4\x40\xa0\x86\x9b\xa6\x40\x28\x50\xc3\x85\x09\x74\x4e\x1a\xca\xd0\x6c\x04\xba\x81\x60\xf9\x03\x84\x71\xe0\xdc\x86\x9a\x0b\x18\x9c\x9c\x93\xe1\x92\x03\x3a\x25\x97\x19\xc6\xdb\x80\x66\x20\x38\x5c\x5f\x40\xa5\xae\x2f\xc3\x95\x03\x74\x38\x12\x32\xb4\xeb\x80\x70\x91\x87\x6b\x02\x18\xf0\xda\xa5\xb5\xf9\x42\xc0\x7b\x98\xa1\xec\x07\xfa\xc0\x6a\x08\x4a\x8b\x84\x48\xb4\x4d\x18\x59\x02\x86\x71\x9e\x30\xb2\x04\x8c\x6f\x26\xd2\xc9\x81\xcd\xad\x11\x33\x0a\xc3\x48\xc0\xa0\x82\x23\xc3\x38\x4f\x7c\x47\x4d\xfd\x5e\x5a\xe8\x3a\x85\xae\x93\x73\x6f\x88\xc5\x12\xfb\x93\x28\x55\x28\x76\x81\x56\xd9\x42\x08\x8d\xa5\xf0\x84\x3f\x7b\xff\xf8\xd2\x1e\xcb\x83\x6d\x72\x56\xb1\x66\x1a\xd6\xb2\xa5\xec\xc2\xa0\xde\x30\x43\x4f\x03\x08\xd8\xb6\x32\xf4\x1b\x80\xd0\x17\x0c\xe5\x57\x58\xd7\xe7\xeb\x70\xe5\x00\xbd\x11\x17\x4b\xe3\x03\x40\x27\xb5\x3f\xd3\x20\x29\xd0\x38\x79\x30\x93\xa4\x57\x61\x18\x25\x4f\x8d\x92\xf4\x50\x24\xd4\x41\x6a\xfe\x03\x55\x1b\x31\xf5\xe9\x81\xa1\x77\x91\x14\xcb\x09\x0d\x9e\xb6\x4c\x1d\x78\x20\x74\xb0\xd2\x3d\x6c\x60\xb8\x4c\x92\x54\x1a\x21\xa0\x11\xc8\x24\xed\x5d\xe8\xda\x03\xa9\x6b\x0e\x84\x2e\x70\x6a\x6e\x00\x5d\xb7\x35\x5d\x85\x40\x55\x3b\xa7\x16\x48\x7e\x7c\xd6\x74\x42\x29\x07\x8c\xca\x62\xb2\xea\x5e\x08\xf8\x9b\x32\xf5\x41\x80\xf8\xfe\x38\xec\xc4\xe0\xdc\x69\xa4\x5c\x6a\xcd\x00\xa3\xd9\x7b\x57\x74\x7e\xb5\xc0\xcc\x84\x6e\x09\xd0\xa1\x89\xcf\x74\xa7\x09\xe8\x1d\xa3\x24\x8d\xa8\x02\xad\xa0\x51\xd3\x58\x03\x10\xd5\x97\x66\xf8\x34\xa9\x18\x3e\x30\x67\x2d\xea\x17\x86\x6e\x5c\xfa\x29\x00\x2d\x10\xa2\xe9\xb6\x12\x50\x9b\xef\xd1\xb8\x2b\xd0\x4e\x56\xa1\x75\xfe\x42\x7c\xfd\x32\xc8\x0a\xb4\xd3\x31\x1a\xa4\x00\xba\x6e\x9c\x75\xfe\x42\x1c\xc7\xdf\x14\x1f\x99\xc6\x30\x80\x6a\xa2\x45\x1a\x8a\x00\x82\x6c\xd9\x4c\xb7\xa5\x81\xea\xe7\x6a\x81\xbf\x30\xba\x7f\xd4\x91\xc9\xef\xa4\x21\x9b\x5c\xf0\xd0\x04\xaa\x05\x53\xa9\x9e\xd2\x04\x36\x9b\xfc\x52\xb0\x6c\xa0\xd2\xc8\x54\xd0\x03\x75\xba\x6e\x35\x76\x80\x4e\x61\x41\xa6\xc6\x0e\x30\xbe\x89\x52\xf6\x03\xfd\xf4\xab\x33\xf2\x08\x34\x23\x43\x92\x05\x08\x9d\x9a\xec\x4c\x37\x7c\x80\x5e\x7d\xa2\xbe\x0d\xcc\x00\xed\xfb\x06\xdc\x77\x06\x5a\x65\x3f\x3c\x8d\x22\xa4\x3c\xb5\x78\x1a\x53\xa3\x04\xe8\xb0\x47\xe5\x34\xef\x05\xa8\x9c\x18\x95\xd3\xed\x17\x20\x3a\x3a\x69\xea\x14\x01\x9d\x2c\xba\x9c\x2a\x0d\x60\x54\x54\xde\x24\x0f\x5f\x68\x1c\x2a\x92\x53\xaf\x65\x4a\xbd\x8d\x8c\x95\x78\x40\x08\x58\x06\x72\x2a\x33\x80\xce\xd9\x6a\x39\x8d\x22\x00\x8d\xba\xab\x9c\x8a\x11\xa0\xbb\x48\xa5\x14\x10\x2a\x85\x86\x39\x49\x55\x17\x3a\xf5\x27\x39\xd5\x36\x40\xe3\xa0\x87\x9c\x6e\x80\x00\x4d\x23\x7f\xea\x43\x4c\x89\x42\xd9\xa1\x98\x7e\x75\x40\x27\xe1\x2f\x2d\xca\x17\x7a\xf5\xf6\x7e\x62\xc0\xe0\xfc\x93\x9c\xe9\x7c\xa5\xd4\x7e\x0c\xc8\x94\x13\xa0\x53\x4d\x9b\x53\xe7\x03\x88\xce\x17\x3c\xfd\xea\x80\x4a\x12\x55\x5a\xba\x2f\xb4\x03\x65\x36\xb5\x79\x80\x06\xeb\x75\x4e\xbf\x3a\xa0\x07\x0a\x7b\x1a\x45\x00\x2a\x67\x65\xe4\xd4\xe6\x01\x9a\x29\x18\x96\xeb\x0b\x51\xed\xbd\xb1\x06\xa0\xb9\x97\x37\xd5\x6f\x40\xd5\xc3\xb6\x10\x5f\x68\x6a\x1b\x4b\xec\x85\x6a\x88\xc5\x1a\x78\xa1\x36\xdf\xa3\x9b\xa6\x40\x0c\xa7\xd0\x15\x0d\x74\x33\x6d\xa6\x2b\x1a\x08\x68\x02\xd3\x22\x75\xa1\x1b\x25\x5f\xda\x3c\xc0\x80\xdb\x31\x97\x36\x0f\xd0\x21\x5f\x4c\xeb\xd6\x85\x1a\xa8\x96\xa5\x31\x0e\x74\x03\xfa\xcb\x50\x19\x10\x9c\xf1\x99\xcb\xb8\x18\x10\xaa\xbc\xe5\xa7\x00\x04\x07\x89\xe4\xd2\x8a\x07\x52\x8b\xcd\xea\x76\x21\xf4\xa6\x96\x1f\x0c\xd0\xe0\x67\xce\xe5\xae\x26\x30\xca\x77\xd5\x6d\x93\x9b\x29\xde\xfe\xb5\x89\xc2\x28\x26\x67\xa9\x8a\x81\x4a\xfd\x6e\x2e\xbf\x34\xa0\x41\xf2\x93\xcb\x2f\x0d\x68\xd4\xc5\xe4\xd2\x6f\x00\x7a\x43\x62\x5a\x03\x2f\x84\x09\x24\xcb\xe8\x3d\xd0\xa9\x2f\x48\xcb\xe2\x85\xfa\xef\x8f\xde\xbe\x52\xa8\x68\xef\xfd\x44\x81\xc1\xb9\x65\xb9\x74\x38\x80\x4e\xcd\x6d\x2e\x1d\x0e\x60\x70\x10\x5b\x2e\xcd\x46\x20\x4c\xde\x59\xaa\x62\x60\xb8\x4d\xb2\xf4\x2e\x80\x4e\xdd\x68\xae\xe1\xed\x07\x04\x6f\x98\x8d\x96\xb2\x0b\x7d\xf8\x1e\x55\xc5\xc0\x80\xfe\x39\x97\xf6\x26\xd0\xa3\xf8\xc7\x69\x13\xf6\x00\x36\xcf\x32\x8a\x00\xd4\xef\x6d\xbb\x2b\x0a\x8c\xc1\xa7\x60\x0d\xbc\x90\x07\x62\x68\xb9\x2b\x0a\x44\x7e\x57\xd9\x2f\x98\xf6\x07\x1f\xdf\x72\x0b\x01\xe8\xa6\x5a\x2d\xa3\x8d\x40\x6f\x76\x55\xdf\x08\x08\x33\x88\x96\x39\x6d\xc0\x48\x67\x55\x69\x02\x54\x0a\xb8\x73\xe9\x2e\x01\x83\x13\xa3\x72\xa9\xc3\x81\xf1\x33\x83\xfe\x54\xc5\xd6\xc3\x0b\xbd\xda\xed\xe9\xd3\x39\x2e\x1b\x02\xe5\xb4\x1e\x5e\x18\x14\x73\xe7\x52\x87\x03\x7d\x22\x20\x96\xc9\x24\x40\x6f\xae\x0f\xa5\xd4\x32\xe5\xcd\x17\xa8\xff\x06\x34\xf7\x0e\x96\xfe\x1b\x30\x8e\xf0\x2a\x3b\xc1\x06\x6c\x0c\xaf\xf2\x9d\xc2\x5f\x62\x86\xc6\x32\xdc\xb2\x0c\xb7\x28\x46\x94\x78\x4b\x82\x12\xff\x68\x20\x05\xe8\x86\x0f\x96\x42\x10\xa8\xee\x31\x2e\x77\x48\x81\x7e\xba\x3e\x8c\xae\x02\xa3\x7d\x57\x39\x6c\xea\x05\xc9\x8d\xce\x65\xc0\x15\x18\x1c\x20\x98\x4b\xa3\x04\x08\xce\x93\x4d\x0b\xfc\x85\xce\x51\x53\x69\x35\xbf\xd0\x4c\x24\xb4\x74\x5f\x08\x08\x26\x73\x19\xba\x01\x06\x87\x8e\xe6\xd2\xc0\x01\x82\xa3\x25\x72\x29\x89\x81\x46\x22\x74\x2e\x77\x51\x80\xd6\xd1\x10\x4b\xb7\x15\x18\xe6\xb4\x2d\x0d\x9c\xe5\xc6\x0a\x8a\x71\x69\xba\x00\x3d\x5c\x00\xee\x90\x02\x61\x52\xe2\x72\x87\x14\x88\x81\x1f\x6e\x81\xbf\x30\xc2\xd7\xe1\x8e\x0c\x50\x9b\xeb\x4b\x17\x18\x18\xf5\xbb\xca\x59\x85\xf2\xcb\x9d\x80\xe5\x8e\x0c\x90\x06\x23\xa5\x01\x10\x7a\x60\x8b\x2d\x23\x43\x40\x40\x9e\x9f\x4b\xd5\x02\x8c\x40\x27\xc9\x0c\x20\xf4\xa9\x10\xd4\x75\x02\x9a\x7a\x64\xab\x80\x80\xa6\x2f\xb8\xdd\xb9\xdd\x9e\xd4\x88\x2c\xdb\xea\x24\x60\xd4\xc3\xab\x9a\x4d\x86\xba\x0a\x4d\x8f\x4d\xa6\xbd\xff\x06\xb4\xb5\xc5\x80\x66\xdc\x74\x1b\x7a\x06\x42\x1b\x71\xab\x6d\x80\xde\x9b\x4d\x61\x53\x20\xe8\xfd\xe3\xb4\x89\x84\x50\x94\xc6\xd6\xa7\x07\x86\xae\xa6\x8c\x05\x42\xa5\x9a\x36\xb7\x0a\x08\xe8\x94\x66\xa7\x8c\x05\xc2\x80\x01\x32\xb7\x7b\xc5\x40\xd3\x03\xda\xee\x15\x03\xc3\xd4\x34\x49\x0c\x84\xe6\xc2\xdc\x26\x42\x03\x15\x12\xcd\x94\xa5\x40\x68\x87\x4d\xda\x75\x40\xb8\x03\x2f\x4b\x81\x30\xa0\xb0\xca\x6d\xf8\x01\x48\xc8\x98\x53\xfe\x01\xa1\x71\x8c\x40\x6e\x53\x9c\x81\x0e\x4f\x64\x6e\x53\x9c\x81\x66\xe6\xc9\x36\x96\x05\x74\x4e\x59\xc9\xad\x86\x00\xaa\x76\x8a\xcc\x02\x42\xa7\x28\x36\xb7\x1b\x46\x5b\x6e\x35\x54\xf1\x56\x1d\x6c\x79\x90\xed\x97\x71\x0b\xa0\x0e\x3e\xab\xad\xff\x06\x04\x07\xd5\xa4\xfc\x03\xf9\xf1\x0f\x20\x44\xb7\x39\x80\x40\xab\xae\x2f\xe3\x62\x40\x77\x0b\x73\xbb\xf9\xb4\xdd\x7c\x42\x57\x6e\x3d\xb3\x2d\xb3\x09\xa2\x76\x2b\xc9\x81\x4e\xc1\x56\x6e\xcd\x46\x20\x0e\xf4\x88\xfc\x03\xf9\xf1\x0f\x30\x13\x97\xf9\x4b\x40\x8d\xaf\xe9\xb5\x89\x14\x43\x6c\x9e\xcb\x97\x06\xc4\xe4\x7b\xbc\xf4\xe9\x81\x66\x8c\xed\xe2\x40\x2a\xa1\xc1\xf9\x96\x97\x9b\xf2\x40\xc0\x1c\x9f\x16\xbc\x0b\xc3\xcd\xdc\x4b\x13\xe1\x32\xb2\xc4\x4c\x5c\xbe\x47\xa0\x55\x36\x40\x2e\x5d\xf3\x4b\x6a\x1b\xec\x94\x4b\xc3\x1e\x88\xac\x5e\xb5\x6d\xe2\x48\x03\x5e\xc7\xa5\x92\x05\x02\x9e\xed\xbc\xdc\xe5\x03\x3a\x04\x6f\x79\xe9\x3b\x03\x01\x27\x45\x5e\xbe\x0e\xa0\x51\xf2\x94\x97\x7a\x17\x68\x1a\x71\x97\x49\x45\x40\x74\xde\xd0\xa5\x7e\x04\x46\xb4\xff\xa0\x8a\x2f\xd5\x27\xd0\x0b\xdf\xc0\xa5\xfa\x04\x06\x25\x29\x79\x19\xb1\x02\x2a\x67\x2a\xa7\x55\xf3\x42\x37\x13\xe2\x52\x31\x02\xe1\x46\xe7\xa5\x77\x00\x84\x09\xe9\x97\xba\x12\x08\x77\x94\x2f\xfd\x70\xa0\xba\x7b\x78\x99\xd2\x04\x04\x87\x9f\xe5\xe5\x6e\x05\x30\x06\xdb\x7b\x97\x4a\x16\xe8\x16\x29\x58\x81\x2f\x0c\x4a\xf7\xf3\xd2\xa7\x07\x2a\xc7\xd1\xe4\xb5\x5d\x45\x9b\x63\xe0\x08\x89\x5f\xa6\x34\x01\xed\x5b\x0c\x6e\x87\x5e\x52\x5c\x0f\xef\x65\x57\xd9\x0e\x3d\xbf\xab\xec\xaa\xdb\xa1\x8e\x51\x47\x06\x18\xcd\x01\xa9\xb0\x81\xa6\x23\x73\xe9\xdb\x00\x31\x5c\xf0\xc6\x1a\x80\x5e\x48\x2f\xb8\x54\xeb\x40\x83\x90\x3c\x2f\xd3\xde\x81\xd1\xc2\x3f\x3a\xc6\xcb\x08\xb2\x57\x39\xa0\xcb\x0d\x45\x9b\x1c\xd0\x45\x50\x06\x3b\x45\xe2\x01\x61\xe8\xd2\x5d\x6e\x9a\x02\x71\xf8\x47\xf3\x25\x80\x7e\x7e\x57\xf9\xc7\x5b\x46\x43\x66\x42\xb5\x0e\xf4\xd3\xaf\xce\x8c\x29\x19\x0b\x4c\x86\x93\x9e\x40\x68\x1c\xde\x98\xd7\xe3\x18\x1f\xe3\x6d\x4c\x8e\x2e\x1d\xd0\xbe\x2f\xc5\xc8\x36\x10\xe5\xbb\x97\xef\xf1\xa1\xa4\xae\xf9\x47\xfb\xf5\x20\x6c\xfc\x82\x55\xfe\x97\x7c\x9f\x2e\x13\xdd\x43\xa0\xb9\x3b\x2d\x21\x82\xd0\x39\x0a\x3f\x2f\xf7\x77\xaf\x2f\x9d\x95\x89\x36\x06\x02\x74\x53\xfb\x65\x3f\x10\x06\xe7\x85\xa6\xec\x07\x42\x40\x16\x97\x52\x1d\x08\xa3\x0e\x9b\xd2\x26\xa2\xe4\xf4\x5e\xaa\x03\x21\xe0\x8b\x49\xa9\x0e\x84\xce\xc9\xf1\x79\xeb\x31\x02\xc3\x78\xca\xad\x0e\xbf\x3f\x1d\x4e\xbf\x8c\x48\xdc\x52\x5c\xd3\x7b\x0b\xde\x85\xee\x76\xfb\xad\xe0\x02\xc2\x74\x8e\x5b\x6d\x73\x5b\x98\x39\x6d\xf2\x89\x64\x26\xe9\x99\xdd\x2a\x20\xa0\xc3\x12\x9e\xb7\x0a\x08\x68\xd4\x15\xe7\xad\x5b\x01\xc4\x59\x6d\x72\x8c\x1e\xe8\x89\x5f\x79\x9b\xc4\x00\x0c\x8e\x30\xce\x5b\x93\x1d\x08\xa3\x98\xb7\x02\x06\x08\xb8\x56\xf3\xf6\x73\x07\x86\x86\xbd\xf5\xe1\x42\xb7\x56\xc1\xca\x6f\x61\x4c\x67\xd5\x2c\x03\x20\x34\x5d\xac\xe9\x16\x9a\x6f\xfb\x36\x75\x08\x08\xb7\xce\x6e\xed\xe0\xdb\x93\xac\xf0\x05\x6f\x2d\xdc\x5b\x02\x78\xb6\xe1\xac\xe9\x16\x2a\xec\xc1\x69\xb5\xb6\x30\x86\x33\xe1\x22\xb7\x5a\xbb\xd9\x55\xe3\x75\x40\x85\xd9\x24\xad\xc3\x16\x1a\x6c\x37\x79\x1b\xc2\x03\x9a\xc9\x28\x56\x58\x0b\x43\x9b\xfa\x81\x76\x4a\x68\xce\xfd\xa3\x41\x08\x84\x25\x07\x96\x53\x0b\x15\x16\xc3\x7c\x74\xf3\x1f\x0f\xbb\x24\xfe\xfd\x54\xff\xc8\x59\x19\x10\xd3\xe7\x63\xfa\x1d\x30\x92\xaf\xf6\x81\xfb\x41\x18\x10\xad\xe7\x63\xf4\x0c\x18\x81\x56\xb0\x6c\x59\xa8\xc6\x73\x1f\x75\x38\xd0\x4c\x16\x78\x34\xcf\x80\x80\x08\x32\x1f\xd5\xfa\x63\xae\x9d\x5d\x35\xe2\x0e\x04\xb4\x79\xf9\x18\x9c\x03\x86\xd5\x59\x8f\x3e\x3d\x10\x05\xed\xfc\xb8\x7c\x81\x30\xd9\xe9\x71\xdf\xe7\x91\x52\x8e\x85\xf9\x18\x89\x03\x06\x27\x22\xe6\xa3\x57\x0c\x8c\x41\xd4\xe5\x71\x45\x03\x03\xa6\xfd\x7c\xf4\x8a\x1f\x19\x6c\x23\xff\x56\xc5\x8f\x8a\x11\x68\x16\x5c\x3d\x2a\x46\xa0\x9b\xea\xf9\xa8\x18\x81\x6a\x2a\xf1\xa3\x1e\x01\xea\xf4\x35\x2b\xd5\x81\x80\x7c\x31\x1f\x57\x37\xd0\xf5\x18\x1f\x57\x37\x50\x67\x7a\x2f\xbb\x7d\x11\x9d\xc0\xc8\x7f\xf4\xf2\x80\xd0\x2e\x7b\x0c\x3d\x3f\x9e\x1b\xed\x44\xe9\x73\x01\xc1\x11\x1f\xf9\xe8\x14\x3d\xc6\xdb\xa6\x4d\x5e\x05\xe9\x8c\x91\xda\x47\xa7\xe8\x71\x27\x12\xf9\xf3\x1a\x6f\x03\x2a\xcc\x13\xf9\x2a\x50\x81\x06\x89\x41\xbe\xa6\xa0\x02\x03\x16\xd4\x7c\x8d\x33\x03\x51\x58\x0c\xaf\xa2\xf2\xfd\x92\x6f\x6c\x6a\x36\x91\x7c\x83\x34\x78\x2d\xcc\x7c\xbf\xc2\xcc\xa4\x69\xdb\x04\x75\x6d\xb5\xe9\xb2\xe9\x62\x7f\xd7\x7b\xdd\x36\xdd\x78\x8c\xde\xeb\xb1\x09\x9a\xf7\xc3\xab\x5e\x9b\xe0\x17\xc4\xf9\x78\x21\x68\x13\x5a\xfb\x9a\xc2\x26\x62\xe9\xbc\xed\xd7\x94\x39\xa0\x71\x1a\x6e\xbe\x7e\x9b\x40\x83\xd0\x2e\x5f\xf3\x71\x5e\xf3\x71\xd0\xce\xaf\x4e\x11\x30\x60\x3e\x4d\x6b\xcd\x85\xae\xfd\xf4\xea\x27\x01\xfd\x70\xa2\x8d\xb7\x01\xdd\x94\x82\xd7\x8a\xaa\x57\xc6\x02\xbb\xaa\xad\x0e\x74\x93\x71\x5f\xbf\x73\x20\xac\x3f\x79\xad\x35\x00\x86\x21\x83\xd7\x8f\x1a\x18\x96\x03\xbd\xee\xbf\x01\x51\xbe\x26\x9f\xf8\xa5\xfb\xd0\x09\xf7\xcc\x80\xee\x16\xf9\xeb\x77\x0e\x54\x4e\xb4\xcf\xd7\x40\x1d\xd0\x1a\x16\xdb\x6b\x0e\x0d\xd0\xdd\x17\x7c\xcd\x8f\x03\x6a\x20\x04\x5f\xb5\x0d\xd0\x0c\x49\xbd\x86\x7e\x80\xb0\x56\xc1\xca\x6f\xa1\x1b\xc6\x7e\x4d\xb4\x7f\x3d\x96\xf1\xbb\xca\x7e\x79\x48\xab\xaf\x43\x43\x15\x08\xd3\x13\x5e\x13\xed\x81\x51\x5c\x85\x06\x88\x80\x56\xd0\x6f\xaf\xd6\xdf\xeb\x81\x0a\xc8\x7e\x2b\xbf\xf3\xab\xfc\xee\x5e\xe5\x7c\x5d\x72\x74\xd2\x09\x8d\x38\xa0\x71\x00\x6a\x5a\xd3\x2d\x34\x18\x33\xf3\xd5\x7e\x02\xea\x37\x5f\xda\x4f\xc0\x30\x55\xd4\xd2\x6c\xa1\xe9\x86\xbd\x9a\x54\xef\x97\x52\xc0\x55\x66\xb8\x02\x1d\x12\xbb\x7c\xdd\x64\x06\xaa\x16\xee\x6b\xf0\xe4\xf5\x44\x44\x5f\x9a\xfb\xce\xaf\xf9\xaa\xf8\x20\xaf\x56\x16\x10\xd0\x3f\x4f\x6b\xba\x85\xa0\xab\xd3\x9a\x6e\xa1\x53\x05\x35\x0f\x22\x25\x42\x85\xae\x76\x5a\xe6\x2d\x34\x32\x03\xa6\x65\xde\x42\xcc\xef\xf6\xc3\x26\xf2\x66\x7a\xa3\x29\x6d\x4a\xf6\x64\x83\xa6\x6d\xd3\x66\x23\xcb\xa6\xdb\x26\xb2\xc2\x7e\x86\xfd\x3c\xd0\xbb\x42\x70\x34\xfc\xb4\x18\x5c\x08\x4c\xd0\x79\x14\x7b\xff\x83\x3a\xed\x2a\x92\x49\x68\xec\x15\x4f\x4b\xc6\xe7\xbf\x92\x71\xff\x18\x36\x49\xc8\x39\x68\x9a\x36\x31\x85\x3f\x7b\x73\x1e\xc4\x66\x84\x60\x6f\x6b\x1e\xc5\xae\x12\x88\xa9\xdf\xbd\x1e\x9b\xe4\x51\x3e\x68\xb2\xf7\x6e\x0e\x34\xee\x75\xda\x7b\xa9\x6f\x4f\xa6\xf0\xb4\xf7\xd0\xab\x70\xae\xd4\x3c\x4e\xe7\xfe\x34\x5b\x84\x7e\x9d\xce\xbd\x1b\xfc\xe1\xbd\x7c\xa2\xf4\x2a\x85\xf9\xaa\xde\x4b\x2e\x95\xc9\x55\xd5\x7b\x41\x72\x7f\x14\xfa\x55\x9d\x89\x6a\xd2\x2c\x4f\xac\xbe\x21\x12\x83\xdb\xe0\x89\x70\xe6\x0a\xf1\xcd\x44\xf5\x89\xc8\xaf\xda\xff\xae\x2b\x9e\x47\xb3\x43\xe4\x29\xd6\x41\x1f\x9b\x1d\x6a\x6c\x01\x14\xd6\x47\xf3\x3d\x50\x37\x75\x9e\xbc\xad\xe6\xa4\x37\x6a\x0f\x1b\x33\xdc\x5c\x32\x1e\xa5\xd8\xe8\x63\xf3\x3d\x20\xf1\x20\xcd\x9a\x47\xb3\x8f\x4a\xbc\xc2\x0c\x77\x27\xdd\xbc\xaa\x93\xf1\x76\xfb\xd5\x25\x4c\xe4\x8f\xdd\x19\xee\xae\x6e\xfa\xd5\x5d\x45\xb2\x5c\x16\x9e\xd8\x9d\x3b\xaa\x56\xab\xaf\xa6\xbb\x64\x3a\x09\x46\xc3\x7b\x39\x77\x44\xac\x20\x6e\x9a\x47\xb7\xab\x1c\xf9\x75\xba\x48\xbb\x5d\xed\xbe\x40\xba\x3a\xec\xea\xf0\x8c\x73\xba\x3a\xec\xaa\xc7\x67\x54\xaf\xb2\xab\x83\x2d\x26\x67\x62\xd8\x89\xe1\xa7\xcf\x44\x0f\x9f\x08\x93\x79\x3a\xab\xc3\x27\xc2\x46\x72\xf8\x6d\x0e\x17\x29\x55\x63\x75\x70\xfb\xf0\x0d\x71\x0a\x0f\x67\xe8\xcf\x23\x1c\x76\xc0\xf6\x57\xe8\x7d\xf8\xd2\x88\x91\x95\xef\x8f\xae\x22\x4e\x22\x6e\x2e\xf8\xf0\x3d\x92\x8d\x0d\x09\xd4\x3c\xc2\xc9\x09\x73\x7d\x6d\xb2\xab\xa1\x91\xef\xed\xed\x17\x35\xb7\x43\x61\x93\x4e\x4e\x1a\xeb\x64\xd8\xe9\xe4\x40\x2e\x0c\x8b\xf3\x3c\xd2\xde\x13\x06\x0a\x3f\xc4\x74\xbe\x20\x4c\xfc\x96\x72\xfa\x6a\xa1\x20\x86\xff\x64\xca\x32\x20\x0c\x88\x09\xe7\x91\x0e\x28\x3d\x20\x80\x55\x98\x0e\xe8\x8b\xf0\xf9\x47\xbb\xca\x2e\x70\x4d\x06\x34\xed\x17\x04\xee\x9c\xb8\x39\x8f\xe9\x14\x4e\x0f\xfd\xe3\x8f\xd3\x97\x66\xc6\xb9\x1f\xe2\xb2\xf7\x5f\x4a\x13\x33\xb1\xec\x3d\x1a\xb5\xb8\x72\x96\x32\x76\x51\xc7\xe8\x4c\x2c\xbb\xaa\x4b\xe7\x92\x5b\x76\x95\xcd\x14\x0c\xf3\x29\xcb\x80\x50\x21\x9e\x9b\xc7\x76\x56\xd1\xa8\x6c\x6a\x4d\x89\x07\x84\x4a\xf6\xfa\x3c\xb6\xbd\xe7\xb8\x48\x36\x01\xe7\xb1\x7d\xa2\xd4\xa4\x7e\x1d\x97\x7f\x24\xc3\xe3\x74\x72\x2e\x3b\x41\x19\x49\x3a\x13\xb7\xab\x10\x4e\x2e\x2a\xd2\xa7\xa5\xff\x42\x9d\xca\xd8\xc7\xdb\x93\x6f\x51\x5c\x4c\x8f\xcb\x04\xbe\xe1\x74\x15\xbe\xf6\xeb\x35\xc3\x95\x97\xf6\x7a\x15\x45\xfd\xc4\xf8\xa7\x45\xfd\x42\x4f\x16\x53\x29\x36\x61\xe1\x72\x08\xc2\x2c\x6a\x08\x20\xd8\xa7\x9f\x45\x75\x00\x74\x2a\x1c\x67\xc1\xb8\x14\x1a\xa9\x69\xb3\xb0\x73\x2b\x0c\x6a\xe0\x67\x51\xec\x02\x8d\x2d\x97\x59\x9a\xf7\x6a\x52\x56\xf0\x47\xa5\x1c\x30\x28\x3e\x9d\x96\xd8\x0b\xc1\xc1\x05\xb3\x10\x70\x15\x46\xb7\x13\x0a\x3e\xa0\x91\x5d\x3c\x2d\xc4\x17\x86\x2b\xba\x74\x3b\x01\x85\x15\xf9\x16\xb3\x0c\x9b\x86\x41\x52\xba\xaa\xe8\x00\x1a\x9b\x75\xb3\x0c\xfb\x45\xbe\x45\x4d\xff\x68\x27\x08\xaf\xfb\xb6\x8b\x42\x01\x08\xf6\xb0\x67\x51\x28\x14\x03\xe7\x2c\x26\xab\xee\x85\x4e\x61\xf9\x2c\x7e\x69\x40\xe7\xa0\xe3\x59\xd2\x4e\x24\x19\x9f\xc8\xe8\x92\xce\x04\xe7\x00\xc2\x7f\x32\x4b\x3a\xec\x34\x6f\x86\x4e\x4c\x07\x34\xa1\x31\x99\x85\x26\xbb\x3a\x3d\x70\x91\xa6\xe5\xbd\x16\xe9\x77\x88\xda\xb2\xbc\x6a\x59\x60\xc2\x13\x97\x53\xc8\x69\x5d\x67\x63\x26\xfc\x60\x80\x80\xf6\x7c\x16\xbf\x0e\xa0\xe1\x25\xce\x42\x60\x54\x68\x9c\x9b\x3f\xad\xa7\x17\x2a\x4e\xd5\xb4\x06\x5e\xe8\xb0\x01\xcc\x72\x39\x13\x70\xe4\x95\xd3\xab\x9c\x89\xcb\x65\xc2\xe4\x5c\xf6\x1e\x8f\xb3\x39\xf7\x97\xbd\xa7\x14\x6b\xd4\xf6\xb7\x2a\xb6\x90\x5e\x18\xaa\xbc\x72\x39\x5e\x92\xc8\x29\x51\x9d\xe5\x72\xbc\x97\x45\xc4\xf4\xf1\xb6\xdb\x1c\x9c\x42\x60\x73\x96\xdb\x29\xc0\x26\x86\x19\x77\x96\xdb\x91\xdc\x24\x55\x23\x92\xac\xd3\x17\x06\xc9\x7f\xb3\xdc\x76\x9b\xc0\x66\x69\x5e\x65\xbf\x20\xed\xab\x68\x1b\x4b\xf7\x85\x91\xce\xca\xe3\xed\x1f\xb5\x0d\xb3\xf2\xb8\x48\xb1\xaf\x4f\x07\xa4\x34\x00\xa2\xd0\x64\x0d\xbb\xd0\xc8\xa1\x99\xa7\x26\x24\x50\x07\x46\xd8\xa9\x09\x09\x04\x85\xd2\xd3\x4a\xf7\xf9\x55\xba\xff\x0c\xf3\x79\x6a\x2f\x02\x03\x6e\xfe\x69\x59\xbb\xd0\x0e\x64\xc6\x49\x86\x86\xd0\xa0\x3e\x9a\x27\xe9\x18\xc2\x80\x66\x62\x9e\x38\x7e\xc2\x20\x81\x76\x5a\x64\x2e\xd4\x8e\x02\xb2\xc8\x5c\xa8\xf8\xa8\xf3\x54\x8c\x00\x41\xe6\xff\x3c\xbb\xfd\x22\x7f\x92\x92\xcb\x79\x92\xa1\x21\x74\xf2\xbd\xe6\xa9\xb9\x71\x9a\xff\x6d\x93\xd2\x00\x68\x5a\xce\x96\x9f\x0b\x95\xbd\xbc\x79\x0e\x3b\x01\x2d\x07\xe4\xd5\xd3\x8a\x74\x61\x10\x67\x9e\xa7\xda\x19\x18\xe4\xb8\xcf\x53\xbd\x0b\x04\x67\xe8\xcf\x33\xbd\x97\xec\x64\x8d\x89\x56\x57\x02\xbd\xb1\x26\xce\xe9\x1f\x49\x1c\x1f\xe1\x55\x3e\xf1\x4b\x5d\xb4\x29\x6d\x62\xa3\x13\x43\xe2\xf4\xd3\x07\x62\xf8\xc4\xed\xbd\xb6\xf9\x25\xdc\x7e\x7b\xaf\x4d\x78\x0a\x63\xc9\x3a\x6c\xa1\x7f\x73\xbf\x9d\x68\xf9\x86\xd1\x36\xa7\x5f\x1d\x30\xbe\xb9\xf7\x83\x01\x82\xca\xef\x69\xed\xb4\xd0\xe1\x12\x9f\xe7\xe3\xac\x72\x60\x7e\xc3\x28\x39\x5d\xbe\x40\xf4\xc1\xed\x5f\x07\xf4\xc2\x20\xe2\x55\xaf\x4f\x7c\x25\x65\xfb\xdd\xcb\xba\x62\xa1\x69\x10\x56\x57\x74\xd5\x29\x4a\x9b\xd2\x26\xec\x01\xde\x76\xd5\x91\x01\x46\x9f\x07\x4d\x8f\x4d\xf0\xb4\x21\xc2\xab\x5e\x0b\xd0\xa8\xe9\x9e\x55\xaf\x05\x18\xa4\xaa\xcf\xaa\xd7\x02\x34\x48\xc6\x66\xd5\x6b\x01\xc6\x08\x9b\xec\x2a\xc7\x58\x42\x6d\x33\x2b\xe1\x1a\xa1\x71\x58\xd3\xb4\xb8\x59\x68\x44\x6a\xa7\xc5\xcd\x42\x27\x8b\x65\x56\xdd\x1d\xa0\x06\xf6\xa6\xf5\xce\x42\x1c\xb8\xad\xb5\x79\xaf\xe6\xf1\x87\xfc\x51\x25\x0b\x34\x36\x79\x66\x55\xc9\x02\x15\xce\xdc\x59\xd5\xa8\x40\xd3\xb0\xaf\x9a\xff\x40\x4f\x9c\xc8\xea\x67\x05\x34\x7d\xae\xaa\x4d\x0d\x0c\x4a\x8d\x67\x55\x31\x02\x75\x78\x95\x46\x2f\x10\x15\xff\xad\x86\x7f\x0c\x14\x36\x8b\xa9\xa6\x57\x41\xc1\x37\x1c\xd0\xb4\x13\x14\x33\xb1\x29\x36\x2d\x35\x16\x7a\xf7\xa5\x4d\xc7\xc8\xc6\x30\x04\xb9\xb3\x6a\x36\x02\x11\x18\x5e\x95\xad\x46\xa1\x76\x3e\xab\xaa\x16\x04\x42\x37\xbf\x2e\x67\x02\xc6\x83\xc3\xde\x6b\x23\x02\x83\x54\xf5\x59\x2f\x6f\x7f\xb9\x5f\xc0\x55\x6a\x05\x60\xc0\x4c\x39\xab\xa6\x1e\x30\x88\x23\xce\xaa\xa9\x07\x54\xed\xf3\xea\xd7\x01\xb4\xee\xe4\xbc\x8e\xf1\x65\xf3\x1b\x4b\xd2\xa2\x5a\x21\xa0\xb4\x9c\xcd\x45\x0e\x8c\x64\x61\x36\x72\xed\x84\xde\x10\x30\xcd\xc5\xd4\xcc\x7e\xc0\xd4\x6b\xba\xc0\x40\xc0\x50\x33\xad\x8d\x15\x82\xb4\xd3\xe9\x79\xfe\xc2\x60\x53\x7e\x36\x1d\xc7\xd6\x39\xc3\x9a\xf5\x65\x21\xac\x50\xb3\xff\x4d\xf1\x31\x9b\xee\x0e\x10\xd4\x79\xcc\xa6\xbb\x03\x04\x07\xf5\xcd\xae\x2d\x05\x0c\x05\x44\x57\xc6\x02\x0d\x46\xe8\xd9\x95\xb1\x40\x37\x44\xd2\xb5\xa5\x80\x80\x8d\x6d\x7a\xa6\xb2\x50\x7b\x78\xaf\xd7\x26\x09\xda\x7e\x23\xb1\x96\x6e\x76\xf2\x12\xc8\x84\x98\x5d\x49\x0c\x54\x36\x86\xa7\xe5\x75\x42\x83\x24\x7a\x76\x25\x31\x50\x49\x56\x9a\xdd\xe5\x07\x54\x03\x16\x7d\xf9\xc7\x65\x41\x0d\x4f\x24\x51\x4c\xe8\x04\xbb\xa7\x45\x78\x42\xfb\xd7\x74\xdb\x44\x3a\x2b\xaf\xd9\x03\x98\x85\x4e\xc4\x7d\xf6\xed\x18\xd9\x51\xe6\xd0\xe4\xe9\xa1\xc9\x42\x67\x37\x6c\x7a\xd0\xb1\xd0\xe1\x6e\x98\x5d\x17\x05\x88\xc9\x77\xee\xa9\xc6\x42\x0c\xe7\xfe\xb6\xab\x37\x5c\x3b\xe9\x55\xc3\x26\x02\x9b\x61\x93\x4f\xf4\x60\x7a\xa4\x67\x77\xc1\x03\x41\x8a\xce\xf4\x54\x63\xa1\x13\xf4\x9b\x83\x90\xb8\xd0\x0b\xeb\xd6\xa3\x82\xe7\x77\x54\x30\x81\x85\x41\xcc\x5a\x08\x12\xb2\xe6\x50\x2e\x02\x83\x12\xd5\x39\x74\x3e\x80\x06\xe3\xca\xf4\xa8\x60\x61\x70\x36\xed\xb4\x28\x4d\xe8\xba\x9a\x43\x0b\x04\x08\xd8\xb8\xa7\x07\x0a\x0b\x01\x75\xed\x1c\x7e\x16\x40\x2f\xcd\x3f\x7a\xfb\xe6\x49\xc4\x83\x26\x07\xd4\x48\xb4\xc0\x88\x1b\xca\x58\xa0\x92\x03\x38\xad\x79\x9b\x5f\xcd\x9b\xc3\xf6\x7b\xb2\x9a\x8d\x24\xaa\x69\x35\x9b\x10\xfa\xe1\xc3\x78\x0a\xd0\x1b\x46\x89\x05\x6e\x42\x1f\xf6\xbe\x3b\x46\x0a\xdc\xb4\x37\x87\x36\x0f\x30\x8c\x88\x0e\xe3\x29\x40\x70\x4e\xc9\xf4\x54\x63\x61\x04\xa2\x72\xe8\x14\x01\x8d\x7c\xd3\xe9\x11\xc6\xc2\xa8\x88\xdd\x11\xde\x2b\xbc\x17\xbd\x57\x1d\x00\x6d\x78\x7b\x36\xc8\x84\x56\x0f\xef\x15\x36\x91\x91\x87\x35\xe3\xd9\xc7\x42\x23\x3f\x6e\x7a\xaa\xb1\xd0\x61\x30\x9a\x43\x93\x0a\x18\x1c\x3d\x39\x3d\xd5\x58\x68\xdf\x4b\x33\x6e\x61\xc5\xde\xc9\x2a\x1c\x0a\x05\xa0\x0f\xb4\xf3\xd0\xc1\x02\x62\x7e\xf7\x72\x56\xa1\xef\x09\x24\xde\x50\x02\x00\x95\xfd\xf0\x39\x8c\x6e\x00\xe3\xf4\x3d\x2a\x14\x80\x0e\x4f\xdb\x1c\x06\x3c\x80\xc6\x11\x58\x73\x4c\x3b\x31\x39\xa4\xcc\xd7\xa1\x11\x07\x8c\xee\xdb\x56\x9a\x00\x8d\xdc\xfb\x39\x54\x66\x83\x2d\x84\xc1\xb7\x3d\x0c\x78\x00\x11\x7c\xdb\x43\x39\x01\x0c\x8a\xbf\xe6\xd0\xd4\x03\x1a\xa7\x9b\xcd\xa1\xe8\x18\x9e\xc2\x6a\xef\x75\xd6\x80\xd1\xbd\xbd\xd1\x0d\xa0\x6b\x35\x8c\xcb\x99\x80\x24\xf1\x44\xf9\x8f\xcb\x99\x70\x57\x01\xbd\xeb\x31\xcd\x42\x70\x1e\xed\xb4\x9c\x51\xa8\x14\xfa\xcc\xa1\xe3\x07\x04\x89\xf6\xd3\x0a\x47\x61\x4c\xdf\x90\x26\x28\x30\xa8\xeb\x9b\x43\xcf\x0e\x18\xc7\xf4\x8f\xbe\x34\xf6\x31\xb4\x96\x87\xf2\x0b\x18\xe9\xab\x55\x7e\x01\x5d\x47\xc8\x6a\x49\xa1\x53\x99\x32\xad\x96\x14\x02\x42\xce\xe9\x29\xd0\xc2\x30\x1a\x34\x14\x69\xc3\x83\xda\x5d\x13\xba\x71\x40\x23\x0f\x64\x0e\x83\x3a\x03\xbe\xf4\xd3\xc5\xa4\x1d\x0c\xf4\xe6\xba\x7f\xfc\x6a\xd9\xa7\x4f\x5f\xc7\xeb\xeb\x60\x4f\xa4\xf8\xb9\xbf\x3e\xf1\xe5\x43\x56\x0c\x69\x35\x00\xad\x1f\x7f\xd7\x15\xcf\xf1\xfa\x1e\xd8\x45\x31\x52\x3b\x5e\xa7\xe0\x65\xab\xd0\x8f\xe7\x75\x0a\xa8\xde\xa3\x08\x66\x5a\xe4\x29\xf4\x81\xd8\x0d\x77\x3e\x80\x41\xdd\xc2\x0c\x72\x55\x84\xd0\x3d\x0c\x5d\x4d\x60\xb0\x43\x3a\x83\xad\x55\x61\x50\x1b\x36\xa3\x78\xaf\xc2\x17\x8c\x83\x15\xc6\xa2\x80\x41\x0a\xc5\xb4\xee\x53\xe8\x86\xd7\x3d\x4a\x5a\x88\xe1\x55\x46\xac\x80\x46\x56\xd8\x8c\x6a\xef\x39\xb9\xa2\xda\x2f\x95\x06\xd0\x60\x12\x9e\x51\x7d\xa2\xbb\x9a\x95\x61\x43\x4f\x20\x8c\xe0\x7b\x0a\x35\x04\xd0\x1a\x92\x25\xd4\x10\x61\xa1\x0f\xb3\x1a\x1a\xe6\x40\x83\xc1\x68\x86\xb6\x54\x78\xd4\xd4\xd7\xe4\xb0\xbb\x53\xd8\x69\x72\x8c\x5d\x9f\x6b\xd0\xe4\x18\xad\x35\xe0\xdb\xf4\x90\x69\xa1\x25\x0a\x3b\x14\xf4\x40\x83\x8d\x6d\x86\xa1\x2e\x20\x82\x75\x1b\x46\xc9\x81\xe1\xee\x8e\x85\xac\xf3\x2b\x64\x45\x99\x85\xc2\x19\x18\x94\x58\xcc\x30\xb2\x0d\x34\x08\x39\xa7\x87\x4c\x0b\x41\x71\xf3\xb4\x90\x55\xe8\xe9\x44\x6b\x78\x01\x35\x89\x0f\xc4\xf2\x75\x40\xe4\x38\x9d\x2f\xcd\x20\xa0\x1a\x52\x0a\x83\x58\x40\x9d\xae\x09\x2d\x23\x20\x8c\xe7\x86\xc2\x06\x08\xa3\xe4\xa1\x18\x01\x86\xda\x26\x6e\x97\xdc\x4d\xa1\x0f\x1f\x8f\x67\x45\x0b\xad\x22\x59\x3c\xa6\x59\x18\x1c\xfe\x31\xc3\x4f\x0c\xe8\x9a\x7a\xd6\xb6\x0a\xe3\x44\xd0\xc7\xeb\x18\x5f\xbc\x62\x22\xee\xe9\x07\x03\x44\x12\x59\x4a\xb7\x1d\x81\x60\x03\x76\x7a\x0a\xb4\x30\xfe\x35\x55\x9b\x28\x19\x67\xbe\xac\x93\x15\x02\x22\x90\x99\x7e\x7c\x40\xe7\x44\xfb\x99\x6e\x3b\x02\x1d\xc6\xa7\x99\xe4\xf6\x08\x83\x44\x9e\x99\x94\x16\x09\x1d\xea\x91\x99\xba\xd3\xc0\x38\x98\x9c\xf4\xab\x05\x86\x81\x3a\x4f\xa7\x16\x1a\x07\x89\xcc\xf4\x43\x06\x5a\xfd\x9a\xc2\x26\x49\xdb\x19\xb6\x5e\x0b\xd0\x20\x28\x99\x69\x04\x39\xe5\x0c\x70\xd8\x7e\xa2\x40\x90\x2f\x3f\x53\x17\x05\xa8\x10\xd3\xcf\xf4\x13\x05\xc2\x8f\xcf\x92\x5e\xa1\x1b\x84\xb7\x7e\x57\xa8\xae\x42\xeb\x77\x85\xc1\x31\xf1\xd3\xfa\x5d\xa1\xa7\x9d\x30\xa8\x0c\xf4\xb4\xab\x7a\xc5\xa9\x57\xec\xab\xed\xf6\xab\xc3\x58\x87\x50\xc8\xee\x44\x77\x0f\x36\xe4\xa5\xf9\xd5\x02\xcd\xf0\x43\x1a\x59\x02\x22\x9b\x4d\xce\xd7\x50\x31\xf2\xc4\xe1\x80\x86\xd2\x97\x61\xbb\x6b\x05\x84\x11\x89\xf4\x83\x49\x69\x4e\xf9\x1e\xd3\xe0\x6d\x4a\xcb\x81\xfc\x4a\xed\x01\x20\x48\x14\x9b\xa9\x0e\x07\x82\x03\xe2\x66\xaa\x9d\xd3\x63\xd1\x30\xf5\x52\x2d\x08\x74\xd8\x13\xa6\xd5\xa5\xf3\xab\x2e\x75\x72\x6e\x9f\x48\x3e\x8f\x02\xc6\x52\x52\xa1\x43\xab\x3f\x53\x5d\x09\x34\xa8\x6f\x67\xba\xb5\x91\xd2\x89\x12\xdd\xc8\xc7\xf9\xa2\xac\x02\x66\xa6\xe9\x51\xd4\x42\x83\x2f\x7d\x5a\x70\x2a\x0c\x8e\x41\x99\x69\xcc\x08\xe8\xa4\x0b\x4d\x0b\x4e\x85\xd0\xa4\xca\xd7\xdb\x7f\xe9\x42\xbf\xde\x4f\xbf\xb4\x69\xba\x10\x6f\x68\x92\x1b\x24\x04\x75\x57\x73\xfa\x0d\x01\x1d\xaa\x96\x39\xfd\x86\xa6\xa4\xed\x2c\x39\x8b\x57\x85\x38\xe2\xef\xba\xe2\x69\x21\xab\xd0\xc3\xa7\xfb\xa5\x00\x9d\x0a\xa1\x39\xd5\x6f\xc0\x80\xe8\x6a\x4e\xc3\x53\x40\xe7\x40\xa9\x39\x0d\x29\x01\x35\x1d\x9c\xa1\x54\xa0\x71\xf6\xfa\xf4\x3c\x6b\xa1\x69\x97\x4d\x1d\x19\xa0\x42\x01\x33\xa7\x5f\x0a\x10\x07\xea\x60\xfa\xa5\x00\xbd\x21\x20\xa6\xca\x0c\x68\x30\xbb\xcd\xe9\xf6\x0b\x30\x38\xd5\x6a\x4e\x3f\x1e\x60\x1c\xd3\x3f\x86\x4d\x90\xe3\x61\xaa\x59\x30\x2a\x74\xf8\x16\xe6\xd4\x72\x06\x82\xa4\xea\x39\xa7\x9d\x20\x6d\x9d\x34\xa4\x39\x75\xa7\xa7\xee\xb4\xbd\xf7\xb3\x00\xe2\x9b\x55\x63\x3e\x40\xd3\xd3\x98\xea\x11\xa0\xcf\xc3\x3f\x3a\xd1\x6c\x86\x90\x78\x39\x3d\x18\x5a\x08\x08\x81\xa7\x07\x43\x0b\x41\x95\xdc\x9c\x6e\x86\x00\x1d\xde\x8c\xe9\x59\xd1\xc2\x20\xf3\x76\x7a\xbe\xb3\xd0\x26\x1f\xcf\x74\xa3\x01\x18\xee\x8f\x78\x72\xb3\xd0\xc8\xf7\x9a\x56\xad\x0a\x15\xde\xd5\xe9\xc9\xcd\x42\x55\x08\x4e\xed\x58\xa0\x97\xe6\xbd\x1c\xa3\x1b\x0d\x78\x53\x1e\xe6\x2c\x74\x93\x49\xa6\x1f\x22\x10\x6a\x9b\xf9\xda\x89\xd7\x23\xb0\xe8\xbd\xfa\x0d\x18\x93\x2f\x78\xa9\xcc\x80\xee\xe6\x91\xb5\xad\x42\xe7\x54\xac\x69\xd5\xea\x5c\x64\x92\x52\x3c\x31\x3d\x5a\x59\x08\x43\x4a\xcb\x88\x15\x50\xf5\x18\x97\xea\x00\x68\x15\xc3\xdc\xba\x4f\x21\xa0\xe7\x9d\x1e\x87\x2c\xf4\xce\x87\xe8\x11\xc6\x42\xa3\x88\x6f\x2e\xa8\xa2\x84\xa0\xf6\x67\x2e\xbf\x0e\xa0\x42\xe4\x38\x3d\xc2\x58\x08\x2a\x97\xa6\xa5\xa0\x42\xa5\xb4\x71\x7a\x84\xb1\x10\x9c\x0d\x39\x97\xb2\x1f\xa8\xb0\x7e\x4c\x0b\x46\x85\xce\xe1\x1f\x73\xe9\x9a\x03\xa1\xae\xb4\x3a\x54\x68\x9c\x0f\x36\x97\x1a\x02\x68\xea\x5d\x4b\x41\x85\x70\x57\x73\xe9\x9a\x03\xad\x79\x7b\xd7\x3d\x50\xa9\x07\x9b\xcb\x0d\x6b\x20\x54\x9f\x4b\x33\x08\xe8\xe4\x55\xcd\x65\xe8\x07\x08\x98\x03\xe7\x72\x23\x0b\xa8\xe1\x4c\x3c\xf6\x0b\x36\xa4\x69\x27\x94\xd7\x40\x73\xd7\xdc\xb2\x2e\xa1\x9b\x79\xb2\x35\xc6\x81\x06\x7d\xd8\xdc\x06\x75\xb6\x41\x1d\x34\xfd\x36\x91\x07\x18\x27\x4a\x63\x9b\x8f\x03\x54\xe8\xfc\xa6\xa5\x58\x42\xe5\x6c\xc8\xb9\x35\xc6\x81\xd0\xe9\xde\xbe\x6d\xa0\xb9\xa3\xb3\xb5\xcf\x81\x06\xbb\xeb\xdc\x2e\x00\xa0\xc1\x21\x34\x2d\xd8\x12\x86\x06\xa1\xe7\xbe\x0a\x6d\xd8\x7b\xdf\x36\xd0\x27\xee\xb4\x75\x57\x42\x33\x2d\x67\x1b\x45\x00\x86\xd9\x57\xdb\x68\x23\x10\xdd\x61\x4f\xff\x08\x97\x2f\x2c\x4f\x73\x6b\xf4\x6e\x4b\x5a\x90\x39\x5b\xc9\x04\xf4\xe6\x18\xf5\x9d\x81\x46\x4a\xf8\xdc\x3a\xb7\x40\x9c\x08\x18\x4f\x28\x15\x2a\x6c\xb8\x73\xeb\x90\x02\x15\x16\xd5\x79\xb9\x63\x78\x79\x46\x3a\x8a\xe2\x52\x99\x01\x3d\x49\x29\xf0\xd0\x52\xa1\x53\xc3\x35\x2f\xf3\x07\x80\xe0\x30\x9e\x79\x19\x8d\x06\xc2\x08\xf2\xa5\x9f\x05\x0c\xd5\xc9\xa5\xc5\x76\x7d\x24\x2c\x5c\x65\x4a\x14\x50\xcd\xc8\xbb\xd4\x56\x40\x87\x76\x78\x5e\x7e\x7c\x40\x33\x60\x7b\xb9\x30\x81\x01\xcf\xf6\xf4\xcc\x4a\xa1\x97\xff\x92\xb6\x75\x3d\x3e\xea\x81\x4a\x03\x2b\xe9\xd2\x15\x00\x3a\xe7\x57\x4e\x4b\x3f\x84\xe6\x8e\xcc\xa5\x77\x00\x74\x4a\x52\xe6\xad\x05\x01\xf4\x40\x66\x78\xdc\xa3\x30\xcc\x71\xb8\xdd\x16\x02\xba\xde\xc1\xad\x0e\x07\xba\x6e\xeb\xed\x44\x01\x91\x3c\xf1\x56\xef\x02\xd5\x00\xe2\x6d\x68\x10\xe8\xc1\x92\xb9\xcd\xab\x02\xaa\x61\x0d\x0f\x36\x14\x9a\x91\xda\xdb\x1c\x07\xa0\x17\xfb\x65\x2e\x14\x30\xe0\xd1\x9a\xf7\x72\x40\x4b\x9e\x48\xc6\xa8\xa1\x09\x74\x18\xb2\xa6\xa7\xf2\x09\x41\xc9\xe5\xbc\x35\x34\x81\x6a\x78\xea\x76\xd7\x1c\xa8\x24\xe3\xce\xdb\xb0\xc6\x2d\x9f\x10\xab\xe8\x76\x5f\xf0\xfe\x4e\xae\x60\x40\x06\x29\x80\xa1\x32\xbb\xa9\x93\x15\x9a\xbe\xe0\xa3\xfc\x01\x3a\xb4\x09\xd3\x22\x05\xa1\x41\x55\x37\x1f\xe3\x93\x40\x53\x01\x79\x7c\x98\x10\x7e\xe7\x8f\x91\xc7\xc7\xc8\x23\x4b\xf9\x71\xd3\x02\x68\x86\x81\x1e\xd3\x31\x80\xe6\x0e\xbc\x67\x85\x09\xcd\xad\xd5\x07\xd2\x19\xa1\x41\x0c\x36\x1f\xad\x19\xa0\x53\x88\x31\x1f\xa5\x01\xd0\x4c\x73\x7b\x34\x70\x80\x16\x8e\xd1\x89\x7e\x2c\x4a\x63\x5b\xe8\x31\xf7\x02\x68\x30\x4f\xcc\xc7\x08\x1f\xd0\x4c\x39\x79\xb6\x33\xb1\x29\x51\xe5\xd3\x7f\xdc\xd4\x02\x62\x3a\x13\x06\xd7\x80\xde\xb0\x07\x1e\x83\x6b\x8f\x07\x3f\xa1\xd6\x1f\xed\x14\x20\x0f\xcc\xb3\x47\x3d\x02\x54\x03\x44\x8f\x7a\x04\x68\x30\x64\xcd\x47\xb7\x02\x68\xe7\xb0\xe9\xb2\x89\xad\xc2\xc3\x26\x9f\xc8\x36\x9a\x7b\x66\x8f\x82\x0b\x68\x3a\xdd\x8f\xdf\x23\xd0\x12\x23\xff\x35\xfe\x04\x8c\x83\x30\xf6\xab\x51\xf2\x6a\x94\xa0\x0e\x5e\x8d\x12\x60\x40\x15\x35\xcd\xf6\x17\x2a\x67\x9e\xcc\x57\x33\x1b\xe8\x0d\xf5\x69\x8e\xbb\xd0\x49\xaa\x9e\xaf\xbb\xad\xaf\x29\x4d\x38\x7e\xaf\x36\x35\x30\x60\x56\x9a\xe6\xa5\x0b\x83\x8a\xce\xf9\x6a\x2d\x03\x41\x75\xe8\x34\x2f\x5d\x18\xee\xc0\xbf\x7e\xb5\x40\x83\x1d\x71\xbe\x7a\x8c\x40\xa7\x14\x62\x7a\x36\x9b\x10\x1c\xa6\x33\x5f\xbf\x6d\xa0\x4f\x76\x35\x3d\x4f\x4d\xe8\xc9\x96\xef\x6b\xb8\x06\x68\x50\x47\xce\x77\x3a\xec\x49\x95\x1d\xb6\xeb\x6b\xb0\x1b\xa8\x10\x08\x4e\x33\xe1\x85\x8a\xa7\xb2\x2e\x02\x1e\xeb\xfa\x19\x84\x05\x56\x99\x75\x11\xdd\x58\xd7\xcf\xc1\x9a\xf5\xf7\xc1\xac\x8b\x5d\x4d\xa1\x50\x26\xb0\x2e\xa2\x1b\xeb\x3a\x06\x57\x75\x9a\xc2\xa6\xc5\x55\x93\xa6\x6d\xd3\xcb\x55\xf1\x6b\x2a\x3e\xb1\xc4\xef\xaa\xc9\xed\xf1\xa0\x84\x09\xe3\xef\xba\xb0\x37\xd7\x55\xee\xff\xfd\x5f\x29\xbf\x15\xbd\x3c\x6e\x7b\x5d\x85\x7b\x35\xfe\x78\x7a\xaf\x1f\x14\x72\x90\x97\x27\x70\xaf\xeb\xa4\xf7\x8d\x7e\x9d\xf6\xfe\x07\x85\x54\x87\xa5\xca\x5b\x1c\xb7\x3d\xa9\x5c\x5a\x17\xb5\xe6\xeb\x3a\x7d\xa2\x4d\x3e\xf1\x07\x93\xea\xe3\x75\xb1\x9b\xbf\xae\x9f\xcd\x53\x38\x82\x66\xa9\x2b\x17\xc5\xcd\x93\x04\xed\x75\x55\x07\x54\x27\x57\xd1\x55\xb2\x6b\x16\xea\x73\xe2\x3b\xaf\xab\xfa\xc4\x1f\x14\x6a\xcd\x97\x67\x7e\x2f\xaa\xa2\x27\xf5\x86\xeb\x6a\x8e\xb1\x31\xc6\xc2\xed\x9b\x63\xfc\x2d\xdf\xc9\xae\xe8\xba\x9a\x13\xfd\x83\x42\x2d\xde\xb2\x04\x5a\x98\xf0\x48\x2c\xcf\xfc\x16\x0a\x09\x11\xeb\x6a\x8e\xb1\x33\x5f\x41\x53\x77\xbe\x3a\xf3\x55\xe6\x9f\xaa\x78\x59\x5a\xbd\x50\xf1\x93\x2d\xa6\x75\x75\xa7\xe0\x07\x85\xf0\xc1\xba\xba\xef\xb4\x33\x05\x49\x87\xba\x7d\xec\x4c\xc1\xc9\x6b\xee\xf6\x71\x30\x05\x93\x3f\x86\x53\x10\x4c\xfa\xc9\xdc\x85\x93\x1e\xbf\x6e\xc3\x8d\xb6\xae\xb0\xdb\x41\xb7\x4f\x3a\x11\xf6\x2b\x7e\x8b\x94\x42\xfa\x75\x85\x8b\x34\xec\x17\x93\x1e\xf6\xeb\x07\xb3\xf9\xb6\xc2\xb7\xf5\x83\x52\x4e\xba\x1a\xce\xf0\x4f\x8f\xcc\x56\xb8\x7d\xda\xaf\xb4\x5f\xcc\x5d\xda\xaf\x1f\x4c\xd2\x46\x97\x27\xa1\xaf\x2b\xc7\xef\xaa\xca\x80\xd2\x4e\xe4\x6f\xc1\x37\x27\x27\xed\x44\x32\x13\xd5\xdb\x3b\x13\xc9\x13\x1d\xf6\xf4\x89\x93\xc5\x50\x79\xe2\x74\x31\x4c\x66\xc2\x01\x4d\x67\x62\x32\x13\x95\x4e\x4c\x67\x62\x6e\xae\xf2\x8f\xce\xfd\x64\x31\x34\x3a\x31\x5d\x0c\x3f\x98\xcd\x8f\x7a\xba\xe0\x17\x63\xf4\xdb\x5c\x8e\x71\x05\x57\xb1\x22\x97\x6f\x7b\x31\x5f\x7e\x75\xcb\xf9\x5a\x3c\xf1\xfb\xa3\x4f\x5c\x8c\xd1\xaf\x6e\x39\xc6\xc5\x13\xfd\xa8\x97\x4f\xdc\x8c\xb1\xd1\xfb\xed\x18\x37\x4f\xf4\xf6\xdb\x27\x6e\x3e\xb1\xce\xab\xdd\xbe\xb4\x1f\x4c\xc8\x96\x96\x05\xdc\x8b\xd2\xec\x52\x3a\xb7\xdf\x8e\xf1\x3a\xb8\x8a\xa6\xcb\xdb\x5f\x8c\xd1\x2f\xf8\x72\x8c\x17\xb3\xfa\x35\x39\xab\x17\xb3\xda\x59\x13\x97\xb3\x7a\xd1\xaf\xce\x80\x2e\xfb\x75\xb1\xbe\xbe\x26\x5f\xed\xc5\x4c\x0c\xba\x7a\x39\x13\x17\x33\xd1\x19\xe3\xe5\x4c\xfc\x54\xf1\x6c\x7e\xfa\xb7\xb7\xff\x41\xa1\x04\x7a\x79\x4c\xbc\x30\x39\x74\x6b\x5d\xb7\x8b\xe9\x07\xa5\x78\xfb\xdb\x4e\xdc\xac\x9c\x60\x8c\x8f\x2b\xe7\x61\x8c\xca\x9f\xc7\x31\x3e\x8c\x31\xf9\xe3\xe3\x18\x1f\xc6\x68\x27\x1e\x3b\xf1\xf0\xc4\xf4\x5e\x3e\xf1\x61\x8c\x83\xd7\xf1\x38\xc6\x87\x6f\x28\x6d\xf2\x75\x3c\xac\x09\xa5\xd4\xe3\xeb\x78\x98\x09\xb5\xcd\xe3\x4c\x3c\xcc\xc4\x60\xbe\x1e\x67\xe2\x61\x4d\x28\x27\x1e\xd7\xc4\x6b\xef\x99\xaf\xd7\xde\xbf\x7c\x69\x6a\x9b\xd7\x2f\xed\x07\xa5\x38\x39\xaf\x03\x7a\x99\x55\xa5\xc9\xeb\x80\x5e\xbe\x47\x27\xe7\x75\x40\x2f\xfd\x9a\xcc\xc4\x6b\xbf\x5e\x56\x4e\x30\xa0\xd7\x95\xf3\x32\xab\x3f\xab\x74\x79\x60\xbe\x50\xa8\xe1\x5a\x37\x21\x96\x75\xa3\x3e\xc9\x7e\x58\x96\x8c\x0b\xa5\x84\x4d\xdd\xa6\xfe\xbf\xff\x9b\xe4\x5f\xae\x9b\xcd\x01\xa1\x70\x8a\xd8\xb2\x8a\x7c\x71\x14\xfe\xe4\x48\xa7\x75\x13\xc5\x5c\xd4\x87\x17\xcc\xff\x75\x63\x19\x09\x93\xd2\xff\x75\x53\x93\x24\x14\xc8\xbc\x96\x07\xe6\x0b\x93\x3d\xd9\x75\x17\xbb\x5a\x98\x55\x5e\xed\x8d\xc7\xb8\x38\x30\x7f\xb2\xa3\xb3\x3c\x30\x5f\x28\x9c\xb4\xbf\x3c\x30\x7f\xe1\x1b\xcd\x8e\xe6\xba\x8b\xfd\x2a\xbc\xc7\xb4\xe9\xb6\xe9\xe5\x2a\x9e\xa8\xc2\xbe\x55\xd8\x2c\x00\x0f\xcc\x5f\x78\x50\x13\xe7\x65\xdd\xa7\xb7\x3f\xf9\xb6\x59\x00\x37\xe1\x87\xc5\x89\xf8\x13\x6b\x66\x79\x22\xfe\xba\x55\xd8\xe9\xed\x9d\x89\xfa\x9b\x7b\xaa\xb3\xd6\x5d\x9d\xfb\xca\x37\xc4\x02\xb8\xab\x13\x8d\xc2\xee\x18\x25\xb7\x0a\x1b\x28\x9c\x1a\xb2\x3c\xfe\x7e\xe1\xc6\xcd\x8e\x10\xbd\x55\xd8\xb7\x0a\x1b\xd3\xe5\x56\x61\x73\xd6\xfd\x24\x8d\x69\x79\xd6\xfd\xe2\x60\xfb\x42\x69\xf6\xf2\x60\x7b\x61\xc2\x3f\xb0\xee\xe6\xab\x6d\x7c\xb5\x2e\xa6\x66\x27\x1a\x33\xd1\xe9\x6a\xb3\x13\x8d\x99\x98\x7f\x53\x7c\xac\xbb\x39\x51\x8d\x49\x47\x2e\x7a\x86\xbe\x50\x8a\x2b\xb2\x3b\xe9\x68\x7d\x32\x36\xd7\xad\xd6\xbf\xd5\xfa\x93\x3e\xaa\xd6\x6f\xd4\x3a\xbb\x4e\xeb\x56\xad\x03\x85\x73\x35\xd7\xad\x5a\xc7\x6d\x9d\x98\xa3\x4b\xb7\x55\x28\xa7\xab\x7b\xb8\xb0\x7e\x30\x7b\xd8\x54\x6d\xaa\x5c\xc5\xdc\x0d\x3b\x31\x98\xf4\xb0\xc9\x49\x1f\x37\x57\x79\x7b\x5f\x33\x26\x42\xf7\x1b\xd0\x44\x00\xca\x79\xb0\xfc\xc2\x4e\x04\x4f\xf4\x1b\x08\x9f\xf8\xb3\x07\xca\x89\xbd\x28\x89\xc1\xba\x7f\x9a\x7e\x76\x57\xb7\x9a\xfe\x0e\x9e\x58\xbc\xbd\x4f\x0c\x3e\x31\xd7\x5a\xf8\x89\xfd\xa0\x10\x82\x5b\xb7\xf6\x00\x30\x09\x59\xae\x3b\xed\xc4\xcf\x1e\x28\xf0\x20\xaf\x5b\x7b\xe0\x4e\x66\xd5\x15\x99\xce\xea\xcf\x06\x28\xd4\x70\x2d\x69\x13\xd6\x9d\xcc\xc4\x64\x40\xe9\x4c\x60\x22\x9c\x7e\x4f\x9a\x08\x37\x26\x02\xd5\xfc\xeb\xd6\x44\x00\x0a\xd5\x20\xeb\xd6\x44\xb8\x51\xfe\xc3\x97\xa6\xf2\xbf\x51\xfe\xec\x4e\xaf\x5b\xe5\x0f\x05\xc3\x24\x21\x74\xdd\xcb\xd7\xf1\x83\x82\xeb\xb4\xee\xe5\x9a\xd8\x83\xab\x78\xe2\x76\x0a\x7f\x50\xa8\x8c\x5b\x1e\xe4\xbf\x38\x69\x7f\x92\x8e\xbf\xee\xcb\x7e\xa1\x64\x29\x82\x59\xb7\x4a\xf6\x46\xc9\x52\x03\xbf\x0c\x3f\x08\x85\x3c\xa1\x75\xab\x64\x39\xa2\x7f\x12\x3f\x5a\xb7\x4a\x16\x28\x64\x68\xac\x5b\x25\x0b\x51\xc3\x64\xaf\x78\xdd\xb7\x4f\xbc\x7d\xa2\x4d\x3e\xf1\x07\x73\x60\xd1\xdf\xb7\xaf\xe3\x66\x15\x62\x9e\xdd\xb7\x9d\xb8\x99\x2f\x94\xff\x7d\x3b\x5f\x37\x73\xaf\x64\xb9\x9d\x7b\x94\x2c\x69\xc9\xcb\x53\xfb\x85\x02\x2f\xd4\x92\x07\x62\x41\xfa\x30\xc9\x27\x5c\xb7\x4a\x16\x28\x24\x2f\xaf\x5b\x25\x7b\xbf\x8c\x31\xe8\xc4\xeb\x18\x5f\xd6\x04\x06\xa1\xc1\x93\xc5\xe1\xfb\x73\xb8\xbe\x54\x53\x40\x61\x1f\x75\xdd\xaf\xfd\xfa\x69\xab\x49\x86\xd9\xba\x5f\xd7\xea\xcb\x5a\x45\xe2\x3d\x6a\xae\x07\xc7\x8f\x1a\x9b\xf5\xe8\xf8\x3d\x07\x9d\x40\xbc\x3d\xf8\xe1\x8b\xb3\xfd\x0b\xfb\x05\x4b\xe6\x09\x61\x12\x24\x5d\x8f\x5e\x1e\x50\x4e\x84\xe0\xa3\x9a\x02\x26\xc1\x80\xf5\x10\xb2\x14\x0a\x07\x1d\xaf\x47\xcd\xf5\xfc\x1c\xf8\xc9\x3e\xc6\x7a\x28\x8a\x15\x0a\x07\x8b\xad\x87\x90\xe5\xe2\x3c\xfe\x49\x05\xda\x92\x9f\x62\x71\x1e\x7f\x81\xbd\x7c\x3d\xba\x61\x0f\xb2\x9f\xad\xc2\xf5\x28\xfb\x81\x42\xbe\xd7\x92\xc5\x62\x3d\x3f\x15\x30\x83\xf9\xf2\x20\xff\xf5\x20\xfb\x49\xd1\x59\x8f\xb2\x1f\x98\xe1\xe4\xe8\xbf\x01\x85\xd2\xb5\xf5\x54\x87\x8d\xb3\x16\x68\x88\x47\x67\x8d\xb3\xfd\x0b\x21\xf1\x25\x49\x86\x30\xc3\x01\x11\xec\x16\xca\x89\x09\x2a\x6f\x86\x30\xc3\x01\x35\xbb\xda\x10\x56\xdd\x3f\xda\xd5\x46\xbf\x70\xe0\x25\xc9\x10\xca\xd9\x6d\xb2\x5f\x3f\x98\x14\x6c\xad\x47\x5f\xf0\xf9\x39\x7b\xe5\x44\xde\x3f\x04\xce\x85\x19\x0e\x48\x45\x01\x14\x4a\x21\xd6\xa3\xa2\x78\x50\x14\xe1\x80\x54\x14\x40\xe1\x6c\xc8\xf5\xa8\x28\x80\x19\x76\x95\x24\x19\xa1\x40\xff\xbc\x9e\x6e\xef\xf1\xff\xc8\x9b\x59\x8f\xfe\xdf\xd3\x59\x13\xe8\x8e\xa7\xbb\x26\x7e\x30\xe3\xeb\x84\x5d\x55\x9d\x60\x6f\x3e\xaa\x93\x67\x30\x5f\x76\x62\xd8\x89\x1f\x94\x13\x4b\xf2\x19\x76\x62\x04\x57\xd1\xaf\xe1\x8a\x1e\xac\x68\x2c\xc9\x67\x38\x85\x28\x1d\xc2\x48\xeb\x51\xe9\x00\xe5\x0c\x6f\xef\xf2\x45\xe9\xc4\xf8\x9b\xe2\x63\x3d\xea\xa4\x47\x9d\x84\x32\x7b\xd4\x49\x4f\xd0\x21\xef\x1b\x76\x28\xe8\x10\xe6\xe8\xa3\xf7\x09\x4c\xd2\x0d\xd7\xa3\x4e\x7a\xd4\x49\x98\xa3\x8f\x3a\xe9\x49\x5e\x0d\xf6\xe2\x93\xbe\x9a\x64\x0a\xfc\x63\x3a\x05\xe8\x11\xb6\x98\xd6\xa3\x1e\x79\xd4\x23\xa8\x4f\xf9\x4b\x16\x91\xc7\x49\xfc\x7b\x3d\xdb\xab\x36\x4b\x26\x6d\xf2\x3d\x20\xd5\xd3\xcf\x42\xa9\x0e\x14\x72\xfa\xd7\xa3\x37\x45\x7c\x72\xa6\x9f\x85\x52\xfd\x51\xaa\xdb\x09\xa5\x3a\x04\x25\x33\x95\x19\x3a\x45\x44\x31\x0b\x5b\x85\xcb\x28\xa6\x30\xd3\xa5\x7c\xd9\x09\xa5\x3a\xaa\x58\xce\x92\xf5\xfc\x3c\xa0\x99\x2e\x65\x3d\xa0\xe7\x66\x56\x1d\xd0\xed\xac\x22\xd5\xd3\x2f\x45\xa9\xfe\x28\xd5\x95\x78\x4a\xf5\xe7\xf1\x5e\xdc\xfe\xf1\x5e\xb8\x3b\x10\x5d\xad\x47\x77\xe7\xf9\xf9\x36\x33\x5d\x45\xfa\x36\x40\x81\x6c\x69\x3d\xfa\x36\xc0\x4c\xdf\xf6\xf3\xdd\x9e\x31\x62\xf6\x3d\x8f\x63\x7c\x99\x2f\x97\x89\x5e\x0b\x50\x28\x8a\x5d\x8f\x5e\xcb\x83\x86\x48\x5f\xad\x1a\x02\x28\xa4\x50\xac\xe7\xb5\x5f\x68\x88\xf4\xa5\xa9\x21\x1e\x35\x84\xf2\x5a\x0d\xf1\xe0\xc8\x70\x12\xc3\x7a\x55\x07\x2f\xe1\x3c\x48\x58\x96\x61\xd9\x45\x0c\xb6\x10\xec\x5e\x92\xb0\xac\x17\xa9\x0e\xcf\xc8\x7a\x95\xea\x40\x81\x6f\x61\x19\xa9\x5d\x2f\x41\x3f\xf6\x93\xd6\xab\xf3\x01\x14\xa8\x0e\xd6\xab\xf3\xf1\x62\xd1\x4f\x6f\xaf\x45\xff\x9e\xde\x8b\xdb\x6b\xd1\x43\x76\x32\x09\x76\xaf\x57\xd9\x0f\x14\x8a\x60\xd6\x5b\xbd\xd7\x0f\x26\x29\x27\xeb\x55\x1d\x00\x85\x74\xb2\x25\x4b\x8a\x30\x39\x74\x6b\xbd\x6a\x08\xa0\xb0\x7b\xb8\x5e\x35\x04\xe1\xe2\xc9\x71\xb5\xeb\xd5\xee\x7f\xab\xfd\xf2\xf6\xf6\xeb\x07\x93\xa2\xb4\x25\x4b\x8a\x50\xe0\xd3\x5f\xaf\xea\x00\x98\xec\xb6\xae\xd7\xd8\xdd\x8b\xec\xe7\xb4\xae\x25\x97\xca\x7a\x7f\xc2\x7d\xb2\xf7\xb9\x5e\x5d\x01\x88\x53\x0a\x8c\x62\xcb\x98\xf5\x7a\x91\xd7\x6c\x77\xad\x57\x79\x0d\x94\x8a\x2d\xf6\x2a\xaf\x5f\x64\x2c\x49\x7a\xeb\x55\xc6\xc2\xa5\x52\x60\x80\x5c\xaf\x32\xf6\x1d\xcc\x04\xd2\xf3\xd5\xf2\x7e\x91\x9e\x15\x83\xf0\x55\x7a\xbe\x3f\x01\x35\xc9\xd0\x5f\xaf\xa1\x32\xa0\x54\x0c\xc2\x57\x61\xf5\x12\x17\xa3\xca\x77\xbd\xda\xc1\x40\xa9\x18\x84\xaf\x76\xf0\x8b\xb0\x82\x95\x6f\xbd\x0a\x2b\xa0\x70\x26\xea\x7a\xd3\xb9\xc7\x34\x66\xcb\x77\xbd\x9a\xc6\x40\xe1\x54\xac\xf5\x1a\x2a\x7b\x31\x7a\xa7\xeb\x4b\xa3\xf7\xfd\x19\xba\x05\xfa\xb0\xf5\x4e\x17\x00\x41\xb0\x03\xde\xf3\x65\x4c\x5c\x28\x6c\xe7\xaf\x77\x3a\xc8\x9f\x6d\xfc\xbb\xcc\x36\x67\xec\x07\xa5\xba\x9c\xa6\xcb\x1c\x1b\xf7\x20\x49\x76\xbd\x1a\xb9\x2f\x21\xa8\xea\x7a\x32\x04\xf5\x6e\xef\xd6\x98\x59\x05\x29\x50\x2a\x46\xe1\xbb\xbf\xbb\xbd\x5e\xc6\x0c\x29\x49\x81\x62\xd8\xfd\x55\x92\xbe\xd7\xf0\x32\x86\x75\xf9\x55\x5e\x3e\x94\x7e\x5c\x3e\xf4\x22\xee\x0e\x77\xd6\x7a\xc9\xa6\x14\x8a\x81\xf7\x57\xf1\x0a\xfc\x2e\xf3\x09\x76\xe4\x27\x5f\x4b\x75\x19\x2b\x5f\x5f\xec\xe1\x03\xfe\x85\x25\x97\x8c\x50\xaa\x2b\xd4\xd8\xd4\x7b\x3b\x52\x42\x58\xaf\xe2\x14\x28\xd5\xc1\x2b\x4e\xdf\xc7\x79\x43\xb9\xbe\xca\xd3\xf7\x61\x08\x88\x7e\x69\x68\xd6\xfb\x38\x21\x04\x52\x64\x98\x59\x2f\x31\x9f\xea\x82\x37\xe6\xf3\xbe\xf6\x8d\x88\xc5\xab\xac\x04\x4a\x6d\xe3\x6f\xbd\xfc\x2a\x4a\x21\xa5\xf9\xdd\x85\x95\xa1\x2c\x05\x0a\x25\x9f\x4b\xa2\x9a\xf5\xbe\xf6\xe9\xa7\x69\xb6\xb4\x34\x1b\x0e\x9a\xc2\xbe\xc1\x96\x83\x66\x43\x38\x53\x8e\xe3\xb7\x68\xf7\x41\xc0\x47\x28\xf5\xf7\x15\x6e\x49\x68\x36\x5c\x32\xbf\xcb\x82\xb6\xcb\x36\xe6\xeb\x67\x5c\x6d\xf9\x65\x36\x64\x32\xe5\xe0\x24\xa0\x2d\x9b\x8c\x50\xa8\xc9\xdf\xb2\xc9\xec\xa3\x54\x2f\xe3\x6e\xc5\x87\x16\x1f\x5a\x69\xf2\xa1\x85\x87\xb2\x5d\xb1\x8f\xe2\x43\xd9\x59\xa1\x14\x70\x4b\x0b\xb3\x8f\x33\xbc\x8c\xbb\xb1\xb1\x2d\x14\x76\x35\xf6\x41\x58\x66\x1f\xcd\x87\x9e\x5c\xd6\x7c\x28\xc1\x0e\x72\x42\xf7\x41\xb0\x63\x43\x94\x52\x8e\xe2\x13\x9a\x77\x6b\xde\x6d\xd2\xf4\xdd\x6d\x7a\x19\x4f\x40\xc6\x09\x05\xfe\xc8\x2d\xa1\x8a\xf0\xbb\xcc\x27\x38\x84\xc6\xbc\x0d\xe6\xad\x39\x6f\xec\x6c\x1c\xc4\x5d\xb7\x2c\x2b\x42\x61\xcb\x65\x1f\x18\xbd\xfb\xe8\xa7\x97\xd1\x11\x38\x55\x36\x6c\x29\x85\xe2\xeb\x7d\x74\x87\x80\xf1\x7a\x94\xaf\x2d\x6c\x0b\x2e\xa3\xbb\xdd\x51\x11\x0c\x39\x08\x97\x6e\x89\x56\x84\xc2\xde\xcc\x3e\xba\xa3\x62\x93\xe3\x20\x5e\xba\x65\x5a\x11\x0a\x27\x5c\x6f\x99\x56\xf6\x11\x8e\xd4\xb6\x70\xa4\xe1\x65\x74\x37\xbe\xcb\x5c\x21\x93\xcb\xd2\x15\xa2\xc0\x0d\x26\x24\x5d\x21\xc9\xcb\x22\x52\xb3\xe5\x13\x11\x0a\xac\x10\xfb\x48\x57\x48\x6e\x2f\x63\xa4\xe9\x43\x93\x87\x86\x4d\x3e\xf4\x07\xe5\x38\x5d\x48\xe9\x5c\x26\xfa\x2e\x18\xd5\xb4\x1f\xc4\x1e\x0e\x4a\x4f\xb7\x2c\x23\x42\xe1\x18\xa3\x7d\x4c\x3f\x99\x19\x5e\x46\x47\xa6\x73\x39\x79\xf5\xc1\xbc\x4d\x5f\xbd\xa2\x99\x80\xc7\x3e\xa6\x7d\x53\x34\x27\xfd\x98\x4e\xe5\xfc\xfa\xc6\x24\x4d\xfb\xb6\xd0\xfe\x49\x3f\x96\xaf\x79\xf9\xd0\xd3\x36\x1f\xba\x78\x59\xc9\x10\x96\x2f\x8b\x9d\x8c\x83\x08\xc4\x3e\x96\x1d\x59\x8c\x34\xe9\xdb\x76\xa4\xdb\x91\xfa\x2d\x6c\x47\xba\x19\xe9\x64\x54\xdb\x91\xee\xd3\xcb\x18\xc2\xb6\x23\x9b\xf5\x36\x99\xde\xed\x7a\xdb\x5f\xdf\x18\xc2\xb6\x6f\x9b\x4f\x66\xd2\x8f\xed\xda\x52\xbb\x10\x85\xd8\xc7\x76\x42\xd4\x2e\x8a\x95\xed\x84\x5c\xbe\xfa\xca\xb2\xbc\x7c\xf5\x97\x0f\xa5\x1f\x97\x0f\x55\xbb\x9c\x8d\xbb\x5d\x2e\x72\xb4\x4b\x73\xd1\x5c\x4e\xc8\xf5\x7a\x19\xc3\xba\x1d\x3d\x36\x78\x73\xd1\xdc\x8e\x54\xb5\x71\x2a\x1a\x6f\x1f\x8a\xda\x68\x07\xd3\x7b\xbb\xde\x6e\x47\xaa\x68\xbc\x1d\xe9\x0f\x0a\x67\x5d\xec\xe3\x76\xa4\xb7\x0f\x55\x98\x3d\x3e\x94\xe0\x4a\x53\xe4\x3d\xce\x38\x91\x94\xe3\x54\x60\x3c\x3e\xe1\x07\x85\x63\x45\xf6\xf1\x38\x52\x25\x39\x75\x65\xbb\x28\xc9\xcb\x61\x47\xe6\x41\x5b\xda\xe6\xe8\x27\x4d\xcb\x26\x97\x03\x13\x57\x08\x77\xec\x82\xd8\x66\x57\x71\x17\xc5\x76\x51\x6c\x63\x65\xef\xa2\xd8\x06\x0a\xdb\x8a\xbb\x28\xb6\x81\x72\x60\x2d\x6f\x39\x5e\x76\x41\x94\xb3\xaf\xb8\x8b\x92\xbc\xb8\x45\x8e\xb9\xbc\x4b\xb1\x6f\x85\xbe\x95\x41\x93\x7d\x2b\xcb\xcb\x82\x36\xfb\x86\x74\xe7\x98\xb2\x5d\x94\xee\xe5\x3c\xbd\x8c\x36\x98\xba\x76\x39\x99\x24\xbe\x85\x42\x72\xd3\x2e\x2a\x81\x6a\x7f\x55\x02\x40\x69\x27\x7d\x53\x09\x94\x73\x7b\x59\xa7\xed\xb2\x8d\x09\x39\x6d\x72\x42\x6a\xf5\x32\x1e\x5a\x1d\x56\xf5\xa1\x0c\xa1\xfa\xd0\xca\x1a\xfc\x99\x77\x7f\x69\xef\x5d\x08\xd7\xec\xc2\xde\x3a\x3b\x99\xbb\x54\x27\x02\xcb\xfb\xa8\xde\xb9\x39\xfb\x44\x62\x38\x82\x7b\x97\xe6\x4c\xab\xbf\xb0\xc4\x76\x51\x7f\x01\x05\x02\xe9\x5d\x88\xbb\xec\xa2\xfe\xc2\xc4\xda\x45\xfd\x05\x94\xf6\x35\x39\x11\xcd\x87\x56\x66\xbf\xfb\xd0\xee\x43\x99\x88\xee\x43\xbb\x0f\x6d\xfc\xb5\xfb\x50\x34\x4e\xfb\xfe\xe9\x44\x74\x1f\xda\x18\x82\xea\x05\x28\xd0\x9c\xec\xa2\x76\x29\xdd\xd9\xe7\x2b\x2b\xdd\xd9\x47\xbd\xb4\xc6\x42\x56\xbb\x94\x6e\xdf\xb0\x2c\xca\xb0\x6f\x83\xe5\xd8\x6c\x72\x39\x86\x0f\x45\x53\xcb\x84\xb3\x0b\x16\x3e\xdb\xb6\xbb\x84\xd3\xab\x62\x52\x36\x17\x15\x13\x50\x9a\xa3\x0a\x1f\xaa\x62\xa2\x8c\x71\x17\x15\x13\x50\xd8\xb8\xdd\x45\xc5\x04\x94\xa3\x26\x4f\x48\x27\x89\x28\x79\x73\xf0\xe9\x0a\x4d\xfb\x96\xbc\x99\xb4\x6f\x69\xdf\xe8\x47\xda\xb7\xf4\x1b\xc0\x48\x93\x93\x47\x28\xa4\x5e\xee\xa2\x4a\x03\x7e\x97\xd9\x66\x7f\x51\x73\x0d\x49\x54\x54\x73\x65\xda\x37\x85\x82\xca\xaa\xe0\x47\x34\xa7\x72\xba\x42\xd4\x5f\x75\x32\x7a\xf5\x17\x50\x9a\x53\x39\x7d\x59\xea\x2f\x65\xb3\xb4\x3f\x42\x21\x09\x78\x17\xf5\x57\x51\x31\x29\x74\x8b\x8a\x09\x28\x6c\x3f\xef\xb2\xbc\x1b\x16\xfd\xf1\x89\x9d\xcb\xbb\x5d\xde\x8d\x07\x5c\xde\x4d\x71\xfd\xcd\xa5\xe2\x1a\x28\x6c\x53\x6f\xc9\x71\x76\x51\x5c\x7f\x93\xa4\xb8\x2e\x8a\xeb\x6e\x93\x23\xd5\xca\x67\x4f\x7d\x4b\x8f\xb3\xe1\xc2\x29\xd0\x8a\xef\x72\x3b\x6f\xf7\xe3\x65\xfe\xf5\xb5\xed\xe5\x32\xfe\xa9\x04\x2f\x3a\x03\xdf\x5f\x1f\x47\x8a\x33\x00\xd1\xe3\x96\x33\x67\x97\xc7\x87\x62\x08\x95\xc7\x87\xb2\x4d\xdc\x30\xa1\xca\xe3\x48\xf5\x19\x48\x49\xde\xe5\xf5\x09\x2f\x23\xc5\x48\x2b\xaf\x23\xc5\xb2\x3f\xd8\x0c\xdf\xe5\x75\x2e\x5f\x1f\xca\xbc\xbd\x3e\xf4\x65\x21\xb1\x1b\xbe\xcb\xeb\x42\x7a\x59\x48\xf6\xe3\xb5\x1f\x44\x53\x8e\xe6\xea\x7d\xed\xc8\xeb\x84\x30\xf8\xd7\x09\x51\xe3\xb0\x6b\xbe\x4f\x35\xce\xa9\xa3\xc0\x1e\xf9\x3e\x75\x14\xce\x03\x49\xc0\x10\x4e\xb6\x81\xf7\xa9\x62\x62\x63\x7b\x9f\x2a\x26\xa0\xb0\xeb\xbf\x4f\x42\x31\xfb\x54\x31\xb1\x67\xbd\x4f\x15\xd3\xa9\x62\x0a\x1f\x4a\xdf\x4e\x1d\x85\x86\xb5\x71\xaa\x5e\xce\xe2\x43\xe9\x47\xf1\xa1\x05\x39\x0c\x33\xe4\x96\x48\x48\x28\x8d\xaf\xfe\x54\x09\x01\xbf\xcb\x78\x68\xb1\x23\x2a\xa6\x48\x9a\x96\x4d\xaf\x97\xd1\xdf\xd3\xd1\xb3\xf3\xdb\x10\x0e\x27\x3b\xbf\xfb\x54\x47\xb0\x25\xbd\xe5\x25\x12\x4a\xc3\xbe\x3b\x09\xc8\xec\xb3\xb2\x1c\x48\xfd\xdc\x27\x11\x19\xa1\xf8\xb2\xce\xea\x48\x95\xa0\xa4\x70\xee\x53\x09\x7a\x2a\x41\x79\x59\xa7\x12\xf4\x54\x82\xc2\xec\xb7\x4f\x25\xe8\xa9\x04\xf5\x65\xf5\xef\x6e\x0e\x01\x93\xe1\x54\x82\x9e\x4a\xd0\xb4\xc9\x21\x0c\x1f\xca\x4a\x3a\x87\x0f\x25\xc2\xfc\xbd\xe6\xe1\x84\x84\x23\x0d\xfe\x1a\x8e\x34\x78\x0b\x18\x95\x67\xf8\x16\x14\xb4\xdd\x27\x28\x68\x4f\x05\xad\xab\x41\x41\x7b\x6a\xda\xb3\x83\xb8\x4f\x4d\x7b\x28\x8b\x4a\xfb\x9a\xbc\x5b\xfa\xb2\x10\x3f\x67\x3a\x7a\x25\x28\x26\xea\xa9\x04\x3d\x31\xe3\x8f\xe1\xab\xd7\x8e\x87\xed\xa8\x7c\x8b\x46\x31\x08\xdb\xd1\xef\xb2\x41\x9b\x0f\x55\x34\xce\xff\xa0\xbc\x4f\x25\xe7\xa9\xe4\x1c\xbe\x72\x25\xe7\x89\xe5\x4f\x5a\xc5\x3e\xb5\xfc\xcf\x69\x9f\x90\x75\xe7\xb2\x4f\xcb\x3e\x31\x11\xcb\x3e\x61\xe5\x1f\xf0\xbd\xed\x53\x33\x1f\x28\xdf\x0a\x5d\x76\x93\x5d\xcc\x83\x3d\xcb\x7d\x2e\x3b\xb2\x06\x97\x31\x11\xcb\xf5\x8e\x33\x70\x90\xc9\xb9\x4f\xbd\x01\xa0\x50\x05\xb9\x4f\x9d\x01\xa0\x1c\xe3\xf4\x09\xbe\x24\x12\x9b\x48\xf8\xdc\xe7\xf2\x25\x2d\x87\x70\xf2\x04\x9d\x06\xa0\x74\xa7\x50\x9f\x01\xe2\xa7\xdf\x65\xfc\x75\xdb\xdf\x1f\x14\xf2\x39\xf6\xb9\xed\xee\xe5\xbc\x61\xf5\x9c\x97\xf3\x86\xad\xfe\x7d\x3d\xda\xea\xa7\x3a\x82\x44\xf3\x2d\x1d\x94\x50\x60\x12\xd8\xa7\x3a\xe2\x54\x47\x0c\x84\xff\xa9\x8e\x00\x4a\x77\xc6\xd5\x11\x40\x39\x06\xc2\x5f\xda\x28\xa1\x70\x0c\xc9\x3e\x6f\x67\x5c\x93\x9e\xc3\xe4\xf6\xa9\x49\x7f\x12\x7e\xef\xc5\x26\xfb\x76\x2f\x2f\xa3\xbf\xb7\x73\x89\x7a\x21\x8f\x64\x9f\x6a\x17\xe0\x77\x99\x7d\xb3\xbf\x68\x9c\xee\x6b\x56\xe3\x9c\x8f\x7d\x43\x95\x9c\x8f\x7d\x7b\xec\x1b\x83\x7f\xec\xdb\xe3\xf4\xfa\x19\x3f\x4e\xef\xc3\xab\xf7\x35\x3f\xbe\x7a\x15\x13\x85\xb9\xfb\x54\x31\x01\xa5\xfb\x9a\x1f\xbf\x9e\xc7\x21\xa0\x5e\xce\xc7\x21\xa0\x85\xba\xaf\x59\x25\x74\xbe\x2e\x4b\xf4\xc6\xf9\xda\x91\xb7\x73\x19\x7d\x7b\xfd\x3e\xc9\x43\x3a\x06\x5e\xfb\xf9\xda\x11\x34\x0e\x07\xe7\x6d\xc9\xb5\xf6\xf9\x3e\x5e\xe6\x13\x5e\xdb\x78\x28\x76\x66\x55\xbb\x54\x22\x53\x14\x55\xed\x6a\x64\xaa\xaa\x70\xa0\xdf\xde\xf2\x72\x09\xa5\xd7\xa4\xa9\xdb\xe4\xe0\x11\xf4\x55\x85\x03\x14\x92\x5f\x76\x55\xe1\x54\x5d\x1c\xf8\x05\xb6\x94\x5e\xbb\xe2\xcf\xf4\x66\x93\x0f\x2d\x0e\x1e\xb9\x56\xc9\xd3\xde\x15\x85\x43\x92\xcc\xae\x2a\x9c\x6a\x64\x8a\x72\x92\x5d\x8d\x4c\x01\x05\x2a\xe2\x5d\x49\x21\xda\x55\xeb\x99\x43\x35\xb7\x8c\x57\xbb\x12\x9c\xe9\x18\x38\xd5\xd8\x4c\x55\xf6\xb3\xe5\xb9\xab\xb2\x1f\x28\xfd\x6b\x72\x08\x9d\xf7\xc7\x9e\xe7\x96\x2c\x6b\x57\x64\x7f\xff\x9a\xbe\x87\xde\x5e\x46\x7f\x0d\xce\x54\xf4\x41\xb7\x49\x75\x50\x49\x5f\x39\xa8\xef\xdd\x75\xd8\x37\xa2\xe8\x1c\xf4\xbf\xeb\x70\xa4\x63\x78\x19\x13\x32\xec\x2f\x6a\x83\x63\xb3\x76\x55\x6b\x00\xbf\xcb\x98\x90\x61\x7f\xd1\x24\xfd\xfb\xe7\xb2\xe9\x1b\x02\xc3\x1a\x0e\x61\xb0\x68\xbe\x7f\x3a\x95\xc3\x21\xf0\x79\xc8\x01\x26\x94\xfe\xfd\xf3\xb5\xe9\xf5\x32\x86\x15\x0e\x8b\x64\xdb\xee\x3f\xc3\x77\xaa\xfa\x82\x08\x64\x57\xd5\x17\x50\xfa\xf7\x4f\x17\x92\xee\x04\x25\x68\xbb\xea\x4e\x00\xa5\x7f\xff\x74\x54\xf1\x3d\x94\xfe\xea\x27\xd4\xf4\xa1\xcc\x9b\x3e\x01\x50\x8e\x70\xf5\xea\x14\x54\xb4\x1c\xfc\x8d\xbb\xaa\xe5\xaa\x01\x2c\xe8\x36\xb7\x0c\x65\x42\xa1\x90\x78\x57\x8d\xfd\xaa\x96\xe3\x40\xe0\x5d\xd5\x72\x40\xa1\xb6\x6b\x57\x83\x55\x55\x2d\xc7\x76\xe9\x96\xdc\x4c\x28\x64\x2e\xed\xaa\x1a\xab\xf3\xbb\x1b\x43\x50\x3f\x55\xf4\x13\xa9\x4b\xbb\xaa\x9f\xaa\x96\x3d\x5c\x0b\xbb\x6a\xd9\x03\x45\x4b\xa0\x6a\xd9\x57\x35\x0a\x95\x5b\x5b\xca\x33\xa1\x74\x07\xaf\x46\xa9\x86\x75\x12\x81\x5f\x0d\xeb\x54\xc2\x3a\xdd\xc1\x1b\xd6\xa9\xaa\x0a\x48\xcf\x76\x55\x55\x00\x05\x66\xad\x5d\x2f\x1f\xea\xa6\x41\xd6\xfa\xb7\xf2\xae\x97\xeb\x4c\x4d\x82\x09\x57\xaf\xaf\x4f\xb7\x77\xa1\x9f\x97\xeb\x8c\x3d\x85\x9e\x3e\xdf\x75\xa6\xc2\x49\xa5\x93\x0a\xa7\xaa\x70\x7c\x21\x2a\x9c\xaa\x53\xc2\x49\x5b\xbb\xea\x94\x54\x72\x60\x39\x9f\x6a\xd7\xdb\x11\xde\x7c\x51\xa9\xd8\xb9\xfd\xa2\x50\x42\xdd\xf7\xa6\x0e\x02\x7e\x97\xd1\x11\xe3\x4a\x55\xbd\x94\xf6\xc3\x2f\x4a\xbd\x94\x4a\x27\xf5\x52\x55\x2f\x29\xc3\xd4\x4b\x55\xbd\x04\x6b\xec\xae\xea\xa5\xaa\x5e\x72\x15\xa8\x97\xaa\x81\xab\xc4\x31\xae\xba\x3d\x40\x21\x2d\x6c\xcb\x2f\xb7\xab\x7a\x29\x15\x62\xea\x25\xa0\x68\xd5\x55\x63\x59\x55\xbd\x94\x0a\x31\xf5\x52\x55\x2f\x61\xf7\x57\xf5\x52\x7d\x5d\x40\x4a\x27\xd5\x06\x50\xfa\xb4\xc9\xee\xea\x94\xb0\x1f\xbd\x9b\x6a\xa3\x1d\x5f\xdb\xaf\xbf\x4d\xa9\x0e\x14\x18\x9d\x76\x33\x70\xd5\x8c\x48\x51\x75\xbf\xe5\xb5\x13\x0a\xa7\xae\xed\xa6\x2f\xd0\x94\xea\x94\xbd\xee\xa6\x54\x6f\x4a\x75\xb6\x47\x9a\x52\xbd\xe9\x1f\xb0\xf7\xbb\x9b\xfe\x01\x50\xa8\xe4\xde\x4d\xff\xa0\x19\x91\x82\xe4\x66\x37\x23\x52\x8d\xd4\x50\x6d\xda\x46\x6a\xa8\x50\x0e\x8a\x3b\xb7\x6c\x7a\x42\x81\x92\x74\x37\x83\x54\x4d\x6f\x83\xe2\x9a\xdd\xf4\x36\x80\xa2\xe9\x2b\xe9\xde\x6e\x86\x75\xa0\x33\xda\xcd\xb0\x0e\xb4\x7a\x85\x93\xc3\x77\x33\xac\xd3\x54\x4c\xd4\xd2\xec\xa6\x62\x02\xca\xb0\xbb\xdd\xbb\xa9\x98\x26\xf1\x9a\xa6\x62\x02\xca\xc0\xa6\x6c\x2a\xa6\xa6\xb7\x01\x6b\xca\x6e\xaa\x97\x36\x7c\x28\xf3\x36\x7c\xe8\x38\xbd\x8c\xbb\x91\x44\x29\x94\x81\xb1\xd8\x54\x42\xc0\xef\x32\x86\x30\xec\x08\x8a\x49\xbb\xbb\xa9\x98\x1a\x6a\xe3\x98\x48\xfa\xa6\xde\x00\xca\x38\xfc\xa7\x2f\x4b\x71\x0d\x8f\xf7\x6e\x8a\x6b\xa0\x0c\x67\xdc\xb0\x4e\x33\x5e\xc3\xe1\x25\xbb\x19\xaf\x01\x8a\x56\x7c\xd3\x01\x69\xc4\x3f\x0e\x36\x82\x77\x33\x00\x02\x14\x0a\xc9\x77\x23\x17\x71\x37\xac\xf8\x72\xd8\xa6\x19\x0f\x14\xa8\x04\x76\xd3\x8a\x6f\x08\xd8\x42\x49\xdb\x6e\x0a\x58\xa0\x40\xdd\xbf\x9b\x02\xb6\x21\x60\xcb\x81\x2d\xd7\x14\xb0\x40\x81\x6e\x7d\x37\x05\x6c\xdb\xd6\x09\x11\xee\x6c\x1a\xde\x40\xd1\xc3\x68\x06\xeb\x81\x52\x0e\xc2\x88\x8d\x14\x48\xa1\xe8\x61\x34\xe3\xf7\xc0\xef\x32\xfa\x6b\x00\x1f\x28\x7a\x18\x6d\xbb\x7a\xd9\x0a\x2e\x9c\x32\xb2\xdb\xe5\xf4\x5e\x4e\x2f\x6f\xe1\x72\x7a\x2f\x27\x04\x99\xd7\x14\xfe\x40\x81\x5c\x6c\xb7\xcb\xee\x5e\x4e\x08\x52\xaa\x29\xfc\x81\xa2\xbf\xd2\x14\xfe\xed\xf2\xa1\xae\x5e\xe5\x31\x50\xf4\x57\x9a\xf2\xb8\xdd\x4e\x08\x16\x4e\x33\x22\x04\x14\x2a\x06\x77\x53\x1e\xb7\xdb\xe9\xc5\x4e\x69\x8a\xcb\x86\x68\x1c\x4e\xa5\xa2\xb1\xdd\x3e\x14\x5b\xa0\x29\x1a\x81\x42\x69\xfb\x6e\x8a\xc6\x86\x15\xff\xf3\x00\x68\x73\x91\x3f\x8e\x94\x07\x28\x1a\x81\xdf\x65\xb6\xd9\x11\x2c\x7b\x6a\x9b\x77\xd3\xb2\x6f\x8f\x7d\xc3\xd8\x68\xc6\x92\x1a\x39\x38\x03\x23\xbb\x3d\xf6\xed\x07\xa5\x70\x4a\xd0\x6e\xd4\x1c\x08\x65\xf8\x9a\xb5\xec\x81\xdf\x65\x0c\xcb\xf8\x12\x50\x86\xaf\xf9\xf5\x3b\x7d\x7d\x0b\x68\xef\xf6\xfa\x16\x08\x43\x0d\x5f\xb3\x51\xa8\xf6\x3a\x21\x68\xca\xae\x3c\xee\xc5\xf7\x8c\x4e\xe9\xc6\x6b\x3a\xe6\x33\xc9\xb4\xbb\x6b\x3e\x77\xe4\x31\xd5\x6a\x7f\x6a\xef\xae\xb8\x06\x0a\xd5\xe7\xbb\x2b\xae\x3b\x1b\x08\x56\xb3\xed\xee\x06\x42\x47\x5c\x73\x9c\xd6\xee\x8a\xeb\x7e\x56\x2f\xfb\xcd\x44\x3f\xed\x13\x1b\x08\x9c\xe2\xb2\xbb\x1b\x08\x40\xa1\x6e\xec\xf7\x23\x6c\x5b\x5c\xe6\x3f\x7d\xc0\xc9\xa8\xa9\x0c\xdb\xbd\x3a\x6a\xd2\x39\x29\xa2\xdd\x9d\xfc\x9d\xdd\xab\x0f\xc5\x31\xee\x8a\xeb\xae\xb8\x46\x98\x76\xc5\x75\xaf\x4e\x04\x4b\xa3\x57\x47\x4a\x42\xa7\xde\x6d\xaf\x8e\xb4\xfa\x50\xde\x79\x77\x87\xa0\xb3\x43\xc0\x11\x46\xbb\xbb\x43\x00\xfc\x2e\xe3\x6e\x24\x6b\xee\xce\x0e\xb7\x4e\x70\x77\x87\xbb\x37\xe7\xcd\x49\x72\x9f\xba\xb3\x01\x4d\x66\xf1\xee\xee\x3f\xf7\xe6\x43\xf9\x18\xbb\xaa\x04\x28\x3a\xc1\x9d\x94\x9d\xdd\xbb\x23\xc5\xef\xe9\xaa\x92\xae\x2a\x41\x82\x77\x55\x49\xef\x56\xf8\x39\x7a\x03\x57\x1d\x4f\x45\x27\xb8\xeb\xa8\x00\xa5\x14\x3b\x42\xfe\xe4\xee\xaa\x12\x6c\xf5\xae\x2a\xe9\xd3\xbe\xe1\x82\x74\x2d\xd8\xbe\xbc\x8c\x7f\x6a\xc1\x76\xe5\xb0\x5b\xb0\x32\xa4\x0a\x85\x8c\xe6\x2d\x43\xea\xee\xca\xe1\xd3\x77\xaa\x1c\xee\xca\xe1\xe1\x3f\x7d\x0b\x44\x58\xcc\x14\xdf\xdd\x08\x4b\x47\x36\xc3\x9a\xb9\xbb\xa2\xb9\x13\x3a\x31\x55\x7c\x77\x43\x27\x50\xa9\x16\x7d\xe5\xee\xde\x2a\x50\xcc\xef\xde\xdd\xbd\xd5\xae\xb8\xe6\x33\xee\x8a\xeb\xbe\x2d\xe5\x43\x2a\xc8\xc2\xba\x3b\x65\x61\xf0\x9a\xef\xbe\x9d\x37\xe5\xb0\x9b\xa6\x5d\x39\xdc\x95\xc3\x18\xbc\x5d\x39\xdc\x95\xc3\x24\x5c\xef\xae\x1c\xee\xca\x61\x1c\xe3\xae\x1c\xee\x04\x62\x0a\xe7\x02\xec\x6e\x20\xa6\x63\x2b\x0f\xbf\x76\x4d\x65\xa0\x94\xd3\x85\xaf\xad\xdc\x89\xba\xc0\x1d\xb4\xbb\x41\x97\x6e\x85\x17\x89\xcc\xbb\x6b\xdd\x02\x85\x93\xce\x76\xd7\xb8\xed\xca\x3a\x37\x4d\xbb\xb2\x0e\x28\x7a\xe3\xdd\xb8\x79\x57\xec\x90\x97\xba\x87\x62\x67\x58\x2f\x44\xbe\xe4\x1e\x9a\x81\xa3\xd8\x91\xa4\xe9\xb4\xa9\x5a\xca\x18\xb4\x35\xdb\x18\x3d\x96\xe1\x30\xed\x64\x28\x9d\x48\x98\xdb\x43\xf1\x33\x14\x3f\xdf\x03\xe8\xef\xb0\x2e\x97\x5c\xb8\x3d\x4e\xff\xaa\x5c\x99\x36\x0d\x9b\x18\x16\x89\x62\x7b\x68\xcc\x01\x85\x54\xf5\x3d\xdc\x71\x1c\x0a\x0c\xd2\xb1\xf6\x50\x60\x0c\x05\x06\x26\xea\x50\x60\x0c\xeb\x6e\xdc\xb6\x1b\xee\xee\x01\x05\x96\xbc\x3d\xdc\xdd\x83\x6d\xb5\x7c\xf9\x2f\xd2\xad\x0a\x65\x4c\x9b\xbc\xdb\xf0\x6e\xbc\xad\xa1\x27\x0f\x14\x8e\x7d\xde\x43\x47\x1e\xfe\xd0\xdf\x65\xfc\xd5\x9d\xa0\xa1\xd5\xc3\xc6\xf2\xd0\xea\x19\x7e\x94\x6e\x0c\x0e\x3f\x4a\xa0\x90\x48\xbf\x07\x47\xf6\xee\xe1\x47\xe9\xc6\xe0\xf0\xa3\x04\x0a\x99\xf4\x7b\xf8\x51\x8e\xaf\x26\x13\xe1\x3b\x0c\x5e\x0e\xac\x1e\xd8\x65\xf6\xd0\xea\x19\x5f\xb9\x25\x72\x45\x42\x52\xa1\x40\x38\xb2\x87\x5f\xdb\xb8\x7d\x28\x72\x70\xe8\x9b\x01\x25\x30\x51\x25\xf0\xdc\xb0\x62\xfe\x84\x14\x23\x55\x6b\x02\x85\x23\xf2\xf6\x50\x69\x0e\x2b\xf5\x0c\x10\x8e\xd7\xbb\xbd\xde\x8d\xc1\xbf\xde\x4d\x45\x6a\xe4\x6f\xa8\x48\x81\x12\x58\xb2\x92\x61\xee\xe1\x8a\xe6\xf0\x91\x2d\xf5\xe5\x8e\xc3\x21\xd8\x74\xda\x64\x01\x27\xd6\x46\x18\xfc\x02\x4a\x60\xa2\xca\x90\xb9\x61\xa2\xfc\x5d\xc6\x5f\x75\x3b\x02\xb7\x23\x58\xa9\xa1\xdb\x11\x2e\x4b\x43\x1b\xe1\xb2\x04\x0a\x87\xb3\xec\x70\x59\xc6\xf9\x78\x59\xa7\x8d\x4f\x1c\x62\xcb\x12\xe5\x3f\xc4\xcd\x83\x04\xd7\x1d\xaa\x39\xf7\x19\x42\x35\x07\xf1\x65\x81\x93\x6b\x87\x1b\xe1\x40\xf9\xa2\x0b\x41\x95\x82\x50\xc2\xb9\x71\xf7\x24\x9a\xb3\x8f\x7d\x22\x1b\xa6\x50\x38\xa4\x68\x87\x1b\xe1\xe1\xa7\xa2\xef\x2d\x43\xa6\x50\x60\xe0\xd9\xe1\xa7\x12\x96\x9e\xeb\x54\x47\xfb\x9e\xc0\x44\x60\x4c\x86\x19\x5a\xa1\x9a\xd3\x0d\x0e\xd5\x5c\xb0\x11\xce\xd1\xd7\x5b\x72\xcd\x1d\xdd\x77\xc9\x57\x16\xba\x42\x40\x81\x1d\x6a\x4b\xa5\xb9\xc3\xef\xd3\xed\x88\xf0\xfb\x04\x4a\xf8\x7a\xfd\x3e\xc3\xef\x53\x87\x26\xfc\x3e\x81\x02\x57\xf0\x96\x72\x73\x07\x71\xb0\xcf\x05\x09\xe3\x60\x41\x1c\x0c\x22\x94\x1d\xc6\xc1\x80\xf2\x19\xe6\x41\x49\x99\x50\x02\xa9\x23\x35\xa7\x50\x3e\xc3\x3c\x8c\x8d\x01\x85\x43\xe4\x77\xb8\xdb\x13\xec\xf6\x7c\x86\x79\xb8\xdb\x13\xe4\x7b\x71\x3c\xe6\x0e\xf3\xbd\x22\xec\x9b\xfd\xd5\xff\x02\x0a\xb5\x2e\x3b\xf4\xbf\x22\x9d\x10\x57\xad\x9b\x42\x40\x09\x0c\xc7\x30\xdf\x0b\xf6\xcf\xf2\x59\xb5\x61\xb8\x0c\xfa\xcf\x42\x4d\xcc\x0e\x37\xc2\x81\xdf\x65\xde\xcd\x55\x3b\x4f\x2e\x63\x42\xa6\x83\x9f\x16\x28\x63\x06\xc6\x74\x58\x93\x65\x89\xd4\x89\xe9\xb2\x54\xfc\x51\xe8\xb5\x43\xf1\x07\x14\x4a\x59\x76\xe8\x07\x86\xe2\x8f\x4a\xaf\x2d\xe9\xa8\x50\x02\xcd\x17\x8a\xbf\xd0\xd8\xd0\x0c\x94\x88\x74\xc7\xf2\xa1\x36\xf9\x50\xc5\x9f\x16\x99\xe4\xa4\x1b\x26\xd2\x62\xfc\x37\x96\x23\xdd\xce\x1b\x82\x3e\xdc\x80\x09\xac\x08\x03\xbb\xa1\x15\x11\xdb\x87\x62\x43\x85\x1e\x1e\x50\xc2\x07\xe8\xe0\xc1\x6b\xfa\xbb\x8c\x37\x63\x4e\x15\x50\xc2\x07\xe8\x92\x85\x45\xe2\x1c\x43\xb1\xe3\xfa\xfe\xca\x10\x70\xa2\xc2\xed\x9c\x50\xa1\x6b\x80\x84\x0a\x3d\x1e\x87\xc0\x3f\x75\x5e\x42\x99\x1b\x08\xd3\x50\xe6\x86\x32\x17\xcb\x30\x94\xb9\xf1\x55\x47\xe3\xf2\x86\x32\x37\x94\xb9\x6c\x86\x86\x32\x17\xa2\xd4\xdf\x65\x3c\xc1\x60\x52\xb0\xc3\x6d\x98\x38\xdc\xe1\x06\xca\xbf\x8f\xd2\x6d\x09\xa0\x50\x6e\xb3\x25\x54\xdd\xa9\x18\x46\xfa\xc9\x9e\xba\xf3\xab\x73\xe6\x3b\x4d\x6a\x0d\x76\x92\x79\x15\x88\x37\x59\x50\x77\x1e\xf6\x83\x4f\x46\x1a\x54\xa1\x40\x37\xba\xd3\x0d\xee\xd4\x72\x81\xcd\x72\x4b\x8d\x2a\x14\xaa\x6c\xb6\xd4\xa8\x3b\x35\x49\x5c\xe4\x52\x9c\xee\x64\xe7\x3a\xb0\x83\xd2\x9d\xeb\xd4\x23\x8a\xe6\xdd\xb6\x6d\x08\x50\x64\x6a\x1a\xd3\x4a\x8b\x9d\x29\xea\xda\xa9\x97\x04\x14\xc3\xd5\x69\xe6\x55\xea\x38\x51\xd5\xb5\x53\xc7\x29\x31\x70\x0c\x57\xa7\x06\x4e\xaa\x70\x28\xb2\xda\xa9\xc2\x01\x0a\x25\x40\x3b\xcd\xbc\x4a\x15\x8e\xcb\x32\x55\x38\xa9\xc2\x61\x81\xc8\xd2\xba\x53\x3b\xc8\xf5\x96\xda\x41\x49\xe6\x15\x3c\xaa\x3b\xcd\xbc\x02\x4a\x31\xa6\x9f\xa6\x56\xa5\x1a\x85\x90\x6c\xaa\x51\x52\xc7\xe9\x7b\xa7\x3a\x4e\x40\x31\x46\x9e\xcd\xe9\x55\xa3\x7c\x6f\x46\x8d\x92\x6a\x14\xd4\x42\xaa\x51\xb2\x7f\xe5\xf2\x3c\x54\xf7\x07\x28\x9c\xbb\xb9\xd3\xe0\x1a\x50\xfe\x3d\xc1\x2c\x5d\xa0\x18\x71\x97\xe4\x75\xa7\x1e\xd1\xf7\x04\x3d\xa2\xc4\x23\x82\xd8\x7c\x4b\xe9\xba\x53\x8d\x02\x17\xd6\x4e\x35\x4a\xaa\x51\xb0\x46\x53\x8d\x92\x6a\x94\x40\xf1\xa4\x1a\x25\xd5\x28\x58\xa3\xb2\xc1\x6e\x78\x5e\x7f\x97\xfd\xcd\x8e\xb2\xd3\xa0\x5a\xb2\x19\x13\x18\xab\xe9\x5e\x0c\x50\x0a\xb4\x3e\x5b\xba\x58\xa1\x04\x56\x68\xaa\x83\x80\xdf\x65\x4c\x4e\xd8\x4f\xf5\x92\xdd\x54\x2f\x25\x1b\x2f\xc5\x9d\x81\x74\xe3\x05\x28\x1c\x9e\xbd\xd3\x8d\x97\x54\xe1\xc0\xb0\xbb\x53\x85\x03\x14\x8e\x0e\xdb\x69\x7a\x41\xca\x44\x92\x18\x16\x99\x5f\x9b\x43\x60\x5a\x55\x11\xa9\x18\x4e\x3f\x3c\xc5\x30\x50\x12\x63\x35\xf5\xf9\x52\x67\x2e\x71\x65\x53\x67\x0e\x28\x90\x4b\x6f\x29\x6f\x77\x2a\x86\x93\x28\x63\x2a\x86\x81\xc2\x81\x78\x3b\x0d\xc7\xa5\x62\x98\xc2\xab\x9d\x8a\x61\xa0\x70\x02\xce\x4e\xc5\x70\xea\xcc\xa5\x9f\xb6\xce\x5c\x52\x7f\x0c\x4b\xf0\xce\xcb\x79\xbb\x4e\x2f\xe3\x6e\x97\xeb\x0c\x07\xef\x7b\x31\xfa\x77\x29\xf1\x47\xfa\xf9\xe8\xe0\x01\xff\x5e\x8c\x1b\x2f\xa9\xcf\x47\xf1\xd5\x4e\x7d\x3e\xe0\xdf\x8b\x71\xcb\x24\x8d\xbd\xa5\x0b\xde\xd8\x1b\x50\x12\x2b\x25\x8d\xbd\xa5\xf6\xb6\x11\xf7\xd4\xde\x06\x4a\x16\x9b\xec\xc7\xed\xcb\x72\x71\xb9\x2d\x01\x14\x8e\x2a\xda\x69\xec\x0d\x28\x65\x3a\xe5\x26\x68\x01\x85\x43\x48\x77\x1a\x8e\x03\x7e\x97\xd9\x66\x47\xd8\x69\xe7\x40\x81\x2d\x35\xf0\xce\x47\xee\x02\xa7\xdc\x6d\x89\x24\x8f\xeb\x5b\x5b\xe6\x71\xa5\xea\x6b\x3a\x2c\xd5\x17\x50\x20\x4f\xdc\xb2\x0a\xef\x54\x7d\x19\x98\x4f\xd5\x17\xf0\x6f\x09\xaa\xbe\x52\x5f\x60\xfa\x04\x7d\x81\x7c\x7d\x28\xd3\x6b\x1e\x17\x50\xca\x3c\xbd\x9b\x12\x1c\x95\xc6\x09\x2b\x5b\xfa\x61\xe1\x77\x19\x23\x75\x7f\x04\x28\xf9\xfd\xd3\x79\xd3\xb3\x98\x58\xa8\x53\x95\x06\x01\xf1\xaf\xad\xd3\xd6\x6c\xe3\xcd\x70\xb7\xa9\x67\x31\xd5\x38\x14\xa5\x6d\xa9\x82\x85\x92\xde\x4d\x27\x78\x16\x9f\x80\xe9\x22\x57\xb0\x50\x38\x5a\x6e\x4f\xf7\x42\x66\x75\x2e\x31\x36\xa6\x66\xfc\xac\xf6\xd7\xa6\xc7\x26\xef\x86\x08\x9f\x8a\x6b\xa0\x40\xb6\xb8\xa7\xe2\x7a\x2a\xae\xa1\x40\xdc\x53\x71\x0d\x14\xce\x9c\xd9\xb2\x11\xef\xa9\x65\xcf\x69\x22\x5b\xa2\x61\xa1\xa4\xa3\xd2\xb2\x9f\xcd\xc5\x35\xbd\xdb\x6b\x1b\x8b\x0b\xb3\x78\x1a\xfa\x9a\x1f\x0d\x05\x92\x4b\x42\x62\xa1\xb8\x57\x29\x21\xf1\x86\x6a\xf8\x77\x19\x0f\x75\xcb\x64\x52\x54\x01\xcb\xe2\x9e\x16\x55\x4c\x84\xff\xc9\x59\xec\x7b\x2a\xfc\x81\x02\xa1\xf2\x9e\xee\xe5\x4f\x84\xff\x49\x15\xd8\x9e\x0a\x7f\xa0\xb8\x67\x39\x15\xfe\x13\x3f\xe1\xa4\x0a\x6c\x4f\xfd\x84\x39\x7c\x28\xdd\x75\xf7\x1d\x28\xe7\x51\xfc\xeb\xb6\x8d\xc5\x55\xfd\xa7\xfd\xb0\x7a\xf8\x28\xfe\xd5\x8e\xa0\x04\xa8\x8a\xdd\x53\x25\x30\x43\xfe\x0b\x56\xf9\xd4\x77\x98\xf8\x09\x6e\x6d\x4e\xfd\x84\x19\xf6\xcd\x55\xa3\x74\x07\x8a\x7b\x96\x53\xe9\x3e\xc3\x09\x71\x39\x28\xdd\x81\xe2\x9e\xe5\x54\xba\xcf\xfc\x48\x37\xe8\xaf\x7e\xc2\x4c\x1f\xca\xbc\xb9\xad\x0e\x94\xf3\x70\x92\x60\xad\x12\x8a\x7b\x96\xd3\x1d\x1e\xe0\x77\x99\x6d\x76\x84\x94\x5c\x0e\xc6\xd8\xd3\x8c\xdc\x69\xc5\x31\x24\xd6\x7b\xe6\xd7\x91\x87\xcb\x98\x10\x3d\x8c\xb9\x1c\x82\x93\x64\x30\x10\xd2\xe7\x92\xd8\x46\x92\x3e\xef\xb9\x7c\xa7\x84\x16\xa7\x2a\x65\xaa\x52\xb0\x8d\x24\x82\xde\xb0\x3e\x97\xf3\xc0\x26\x91\xf6\x59\x28\xd9\xff\x3e\x91\x72\x4f\x35\xce\xdc\xf6\x29\xbc\xb3\x7d\xda\xf6\x89\xb9\x31\x7c\x38\xad\x96\x3e\xd2\x87\x39\x1c\xb4\x10\x54\xf5\x7b\xaa\x84\xa6\xe5\xd2\x86\xfc\x25\x99\x16\x0a\x15\xc7\x7b\xaa\x98\xe6\xe5\x2b\xf7\x33\xd6\x67\x98\xf8\x07\xea\xd1\xa9\x7f\x30\x2f\xfb\x96\xfe\xd5\xbe\xa9\x71\x86\x0f\x70\xa6\xad\xab\x86\x06\x76\x4f\x23\x8f\x10\x54\x17\x48\x4a\xf7\x34\x8f\x6b\xde\x3e\x14\xa3\x68\x1a\x65\x84\xa1\xba\x70\x7e\xfb\x9e\xee\x97\x03\xbf\xcb\x78\xe5\xee\x97\x03\x9f\x56\x9e\x6e\x00\x4d\x4b\xab\xad\x77\x93\xdc\x7a\x4f\xb4\x50\xfa\x42\x54\x42\x53\xc6\x0c\xc8\xc6\xf7\x54\xe3\x4c\x35\x0e\xca\x7b\xaa\x71\x80\x72\x16\x2c\x8b\xe9\xa6\xd0\x64\x07\x28\x7d\x31\x6e\x00\x4d\x14\xd3\x09\x6d\xe0\x9e\x2a\x26\xa0\x70\x50\xc6\x9e\xee\x97\x4f\x4b\xb5\x8b\xb2\x43\xc5\x34\x55\x4c\x24\x41\xc9\xb2\xbd\x27\x0e\xd3\x09\xbd\xe0\x9e\x3a\x4c\xf3\xf5\xa1\x74\xd7\x3c\x2e\xa0\x9c\xb0\xfd\xed\x69\x1e\xd7\x44\x0b\x69\x31\x4c\x95\xd0\x94\x83\xa3\xa0\xbf\x96\xaa\x04\x3a\xee\x42\x21\xf6\x5e\x7a\x47\xeb\x70\x08\xc4\x18\xa4\xe8\x16\x4a\x62\xe7\x2e\xb3\xb1\x96\x34\x19\x6e\x8f\x2c\xc3\xae\xc0\x67\x58\x2c\xf7\x89\xa0\xda\x2e\xa7\x1b\x1a\xcb\xb8\xd1\xc2\xca\x4f\x16\xcd\xd2\xca\x5f\xd5\x09\xc1\x63\x5a\x6a\x17\xe0\xb3\x3f\x96\x29\xb6\xab\x3a\x04\xa6\x5c\xe6\x6e\xa1\xc0\xb6\xbd\x97\xda\x65\x49\x82\xc1\xc1\x75\x7b\xb9\xb3\x02\x14\x18\x92\xb7\x04\xdf\x7b\x35\xfb\xc6\x94\x2f\xc3\x4b\x8b\xa2\x40\xad\x99\x65\x4d\xe0\x92\xe0\x02\x2e\xab\xbd\xdc\x6c\x01\x0a\x47\xc8\xef\xa5\x5e\x02\x7e\x97\xf9\x57\xfb\x8b\x62\xe2\xb4\xe1\xbd\xd4\x4b\xab\xbb\x90\x9c\x72\x5d\x0b\x08\xc3\x0b\xf5\xea\x7b\x19\x85\x82\x30\xfc\x77\x99\x6d\xf6\x8d\x7d\x7b\x4d\xa8\xe5\xbe\xfd\x52\x09\x15\x27\x49\x25\x04\x7c\x26\xd4\x52\x09\x2d\x89\x8e\x8a\xc3\xd2\xb5\x80\x33\xfc\x33\xa1\x96\x1b\xf2\x40\x39\x2d\xd9\x5b\x66\x8a\xc1\x23\x5e\x26\xea\x4b\x1e\xf1\xbd\xf0\x13\xce\xd3\x8e\xe8\x28\xfc\x3f\x63\xef\x93\xbb\x3b\x8c\x9b\x6b\xce\xb3\x8a\xda\x41\x7f\xa2\xfe\xd9\x40\x21\x93\x1e\x77\xef\xc1\xa6\x6c\x20\x83\x24\x85\xea\x64\xff\x0d\x3d\x8f\xeb\x5e\xdc\x4c\x4e\x0d\x0e\xde\x03\x43\xdf\x4f\x94\x2c\x93\x14\x45\xbd\xbc\xd8\x14\x9c\x98\xaf\xcb\x4d\xc1\xa5\x75\x09\x5c\xd4\x4b\xeb\x02\x14\x33\x25\x2e\x03\x53\x97\xd6\x25\x70\xd2\x2e\xad\x0b\xf0\x39\x64\x97\xd6\xe5\x92\xc7\xc8\x2b\x7b\x97\xd9\x58\x17\x66\xe3\xfc\x1e\x39\x04\xcd\x06\x8c\x41\xf7\xa5\xd9\x00\xca\x89\xcd\xbc\x34\x1b\x17\x51\xa8\xf0\x20\xe8\x32\x0a\x05\x94\x13\x9b\x79\x69\x22\xae\x4b\xd9\x70\x5d\xa4\x4c\xbf\x2f\x22\x3d\x67\xf1\x91\x13\x42\xa4\x27\x60\x4a\xb9\x2f\x23\x3d\xd7\xe5\x5f\x63\x54\xd7\xf7\xd7\x9c\x37\xd4\xf6\xa5\xd9\x00\x3e\x67\xf1\xd2\x6c\x00\xbb\x19\x73\x69\xf0\x1b\xf8\x9c\xc5\xcb\x93\xa6\xeb\x23\x3d\x42\x1f\xcb\xdd\x7e\x5f\x1c\xef\xeb\x2c\x5e\x1e\xef\x03\x25\xbc\x7a\x76\x79\xfa\x04\x7c\xfe\xe3\xa5\x45\x01\x76\x33\x9f\x29\x2f\x56\x86\x32\x67\xf7\xa5\x95\xb9\xd2\x77\xca\x2e\xe9\x72\x77\x02\x94\xd3\x39\x72\x73\x72\x69\x3e\x3c\xe1\xb9\x34\x1f\x40\xa1\x10\xcc\x7d\x19\x71\xba\xd6\xd7\x8c\x4e\x55\xf8\xd7\x72\x08\x8c\x4a\x85\x7f\xbd\xbe\x2c\x17\xb9\xee\x33\x50\x20\x49\xb8\x2f\xbd\xe7\xeb\xe3\x18\xc2\x6b\xbd\xd5\x6f\x40\x39\xf1\xdb\x6e\xe8\xf1\xee\xfb\x27\xdd\x12\xf2\xde\x7a\xcf\x40\x39\xd9\x49\xde\x7a\xcf\xf7\x4f\x5e\x23\x1c\xc8\xdb\x50\x0f\x50\xce\x7f\xa2\x9c\xf4\x7d\xc3\x44\x21\xec\xbf\x72\xf0\xec\xf5\xd9\xcb\x5f\xd9\x83\xbe\x8d\x17\x01\xbb\xd9\xc9\x33\xe5\xe4\xf4\xeb\xc4\xb1\xb9\x3d\xfd\xba\xf1\xe8\x83\x6b\xf0\xf7\xad\x47\x0f\x14\xea\x6c\xdf\xb7\x1e\xfd\x4d\xbc\x28\xbc\xca\x75\x1b\x30\x02\xca\xa9\x1c\xc6\x8b\xee\xe2\x7c\xe1\x00\xdd\x3a\xfe\x40\x39\x95\x43\xc7\xff\x26\x10\x14\xde\xfe\xbe\x8d\x04\x01\xe5\x54\x0e\x4f\x23\x80\x12\x5e\x9d\xbe\x3d\x69\x07\x0a\x15\x84\xef\xdb\x78\xd1\x5d\x9d\x7d\xdc\x83\xdb\xe0\xd0\x4d\x24\x88\x5a\x15\xf7\x6d\x20\xe8\xd6\x6c\x78\xef\xf8\xd6\x6c\x00\x05\x16\xf0\xfb\xf6\x54\xfd\x96\x13\xa9\x62\xd0\x6f\x8f\x1b\xee\xbd\x11\x29\xe6\x45\xdd\xd5\x19\x97\xee\xc8\x7b\xc7\x92\xfb\xdf\x30\xf9\x17\x78\x2a\xee\xdb\x53\xf5\x5b\xbe\x23\xaf\x99\xdd\x4d\x41\xb0\x11\xa7\x83\xd7\x44\x00\xbb\x19\x73\xe9\x11\x04\x50\x4e\xbc\xbf\x5b\xb3\x71\x6b\x0f\xbc\x8d\x76\x6b\x0f\x80\x72\xa2\x27\x6e\xcf\xe8\x6f\x89\x91\xbc\x8d\x66\x49\x81\xfb\x66\xa3\xe2\x56\xeb\x76\x9f\x72\x77\x87\x80\x75\xb1\xcc\x80\x50\x4e\xdc\xbb\xdb\x33\xfa\x5b\xb3\xe1\x39\xdf\xad\xd9\xb8\x35\x1b\xa8\x93\x5b\xb3\x71\x0f\xd7\x1b\x51\xaa\xdb\x1d\x08\x50\xcc\xd9\xba\x3d\xa3\x07\x4a\x78\x7f\xec\x36\xdd\x0b\x28\xe6\x6c\xdd\x5a\x92\x7b\xb8\xde\xb0\x5f\xb7\x3b\x10\xa0\x9c\xbe\x66\x37\x20\x37\x6a\x38\xbc\x66\x7b\xab\x87\x81\x72\xe2\x05\xde\x7a\xef\xb7\xaa\xd9\x1b\x91\xb7\xaa\xf9\x56\x35\x0f\x1f\x7d\x7f\xed\xb5\x19\x7f\xcd\x7c\x5a\xa0\x50\x6a\xff\xb6\x7c\xc2\x7d\x73\x54\x19\x1e\x55\xde\x1e\x55\x02\x85\x92\x1d\xf7\xed\x51\xe5\xad\xa2\xf7\x86\xda\xad\xa2\x07\x8a\x69\x67\xb7\xb1\xa4\xdb\xfd\x41\x73\x58\xee\x0f\x6e\x15\x3d\x1e\xea\xad\xa2\xbf\x75\xfc\x9b\x82\xe8\xf8\x03\x05\x82\xec\xfb\xd6\xb3\xbf\xc9\xe3\x8a\x86\xd3\x73\x9b\xc7\x05\x94\xd3\x75\xaf\x52\xbf\x6f\x47\x8a\xd3\x73\xeb\xc6\x03\xe5\x74\xdd\xeb\xc5\xdf\xaa\x66\xaf\x24\xdd\xaa\xe6\x5b\xd5\x6c\x07\xaa\xe6\x5b\xd5\xec\x25\xa2\x5b\xd5\x7c\xab\x9a\xfd\x3c\x54\xcd\x77\xda\x29\xbe\xdc\x6d\x90\x08\x28\xa7\x72\x18\x24\xba\xf1\xe2\xa3\xb1\xf3\xbe\x75\xe3\x81\x72\x4e\x1f\x29\xc7\x6b\xa7\x38\x42\xb7\xa1\x93\x9b\xd0\xc9\x89\xee\xbf\x0d\x9d\xdc\x2a\xfa\xae\xba\x56\xd1\xdf\x2a\x7a\xbf\x49\x15\xfd\xfd\xca\x25\xc6\x36\xfb\x36\xf2\x0f\x94\x93\x6f\x52\x66\x71\xa1\x9c\x7c\x7f\xa9\xee\x97\x6c\x3c\xbc\xa4\x20\xdb\xb8\x50\x4e\x3c\x65\x98\xc7\x37\x4c\x9b\x4d\x9e\x1d\x3e\x43\x5c\x66\x37\x3d\x20\x90\x6e\x3c\xbc\x56\x20\xdf\xf8\x9d\x9a\x08\x3e\xd3\xd4\x06\xa4\x36\x80\x52\xad\x77\x6a\x03\x52\x1b\xc0\x67\x2a\x2d\xb9\xb0\x9b\x35\x9e\x29\xaf\x36\x80\x97\x60\x45\x8d\x3b\x8b\xd4\x6d\xa8\xc1\x34\x03\x22\xb5\x01\xf8\x8a\xd2\x97\xdf\x59\x3e\xd9\xfc\xa9\xb2\xa1\xf0\xa9\x8d\x72\xcb\x5f\x7e\x43\x56\xbe\x9b\x31\x49\x1e\x10\xc0\x50\x5e\x60\xb7\xb9\xd3\x03\x02\xa0\x44\xef\xfe\x74\xfa\x6c\xfe\xeb\x5f\xe2\x87\xaf\x98\x9e\x19\xa4\xa6\xc2\xdb\x07\xa9\xa9\x00\xe2\x87\xaf\x98\x9a\x0a\xf8\xce\x77\x33\x86\xe0\xa1\x01\x10\x3f\x9c\x56\xc9\xcf\x6f\x08\xcf\x77\x33\x04\x31\x4f\x0b\xf6\xf3\x2f\xe6\x22\xfb\xf9\x9d\x5a\x14\xef\x0b\xa4\x16\x05\xf8\x62\x2e\x69\xda\x45\x6a\x51\xfa\xf8\x73\xd5\xcb\x5b\x12\x75\x21\x7e\xe8\xab\xd4\xe0\xa4\x1b\x10\x0f\xd3\xe5\x47\xbf\xe1\x44\x8f\x1f\x6e\x6e\xba\xd9\x00\x4a\x98\x8b\x9f\xee\x36\x72\x1b\x9c\xf8\xe1\xe6\xa6\x06\x27\xb5\x24\x9d\x2f\xca\xfa\x25\x42\x98\x77\x9a\x5a\x12\xa9\xd5\xc3\x24\x7b\xb9\xd5\x6f\x88\xd4\x83\x02\xba\xb7\x44\xea\x77\x36\x65\xf3\x1b\x30\xe4\x05\x7c\xe1\xa2\xd4\x92\xc8\x78\x1e\xdd\x05\xef\xfe\x00\xf8\xc2\x45\xe9\xa1\x45\x1a\xa6\x31\x7f\x3b\x0d\xd3\xe4\xc1\x10\x70\x7d\x53\x7f\x3b\x55\xea\xe6\x32\xa6\x4a\x1d\x88\x1f\xae\xaf\xe4\xe2\x77\x12\x92\x09\x4f\x7d\xd3\x98\x0c\x84\xe3\xf1\x0b\x7f\xa9\x1c\xc7\xc7\xc6\xc7\x02\x3a\x3e\x41\x1e\x9a\xf9\x4b\xbf\x1e\x2e\x49\x84\x09\x89\x52\x8e\xdf\xd0\x8c\x7f\x31\xaa\xf4\x20\x18\x28\xe1\xe1\x70\x9e\xae\xda\x93\x55\x1b\xfe\x52\x71\xb9\x38\x1d\x03\x37\x25\xbd\x39\x9d\xe7\x45\x33\x26\xc4\x2b\x81\xd0\x91\xef\x66\x08\xe2\xe1\x30\xdc\xe4\x5f\x28\x4b\x6e\xf2\x3b\x35\x38\xde\x80\x4b\x0d\x0e\x10\x3f\xe7\x48\x83\x93\xd7\x27\x1b\x93\xe4\xfd\x3f\xa8\xcc\xe3\x87\x4f\x9b\x1a\x9c\x74\xcb\x40\x85\xd3\x3b\xdd\x32\x40\x49\x1e\xa6\xf5\xa6\xdb\x03\x60\x37\x43\x10\xf7\x07\x79\x33\x21\xce\x91\x67\xc8\x69\x28\xc9\xac\xbe\xd4\xf1\x87\xa0\x3c\x7e\xd5\x5f\x3a\xe3\x1a\x1c\xf3\xf0\x52\x83\x03\x84\xd9\xbf\x92\x96\xdf\xa9\xc1\x31\x0f\x4f\x8a\x72\x21\x7e\x4e\xa5\x06\x47\xa6\xf1\x80\x5a\xf4\x96\x6a\x5c\x88\x9f\x53\x69\x3c\x08\xd8\xcd\x10\xc4\x4c\xb4\x5c\x8c\x54\xc5\x69\x26\x1a\x24\xe5\xbb\x19\x43\xf0\x08\x02\x08\x73\x89\x65\x29\xbf\xa5\x24\x0f\xaa\x21\xde\x72\x92\x0b\xf1\xf3\xc5\x98\xb0\x96\xcb\x09\xc1\x18\xa6\x71\x23\x20\x28\x6b\x79\xa7\x61\x23\x69\xbd\xc3\x24\x36\x79\xbd\x6f\x48\xbc\xe3\xe7\xfb\x33\xe6\x92\x5a\xb9\xc9\xee\x36\xb5\x72\x40\xc0\x8c\x75\xa7\xc9\x42\xa9\x95\x33\xe5\x47\xb2\x6f\x21\xcc\x73\xce\xf7\xeb\xf4\xb5\xd9\x96\x4d\xb6\xef\x7b\xb9\x77\x31\xe5\x46\x6e\xef\x1b\x22\xef\x80\x2d\xeb\x96\xc8\x5b\x28\x61\x92\x8c\x4c\xde\x42\x50\xfe\xef\x5e\x9a\x34\x60\x37\x0b\x9e\x9d\x3e\x43\xfd\x74\x3b\xb8\x7c\xa4\x20\x7c\x5a\x72\x79\x0b\xf1\x63\xbd\xc9\xe5\x7d\x2f\x0d\x13\x35\xce\xee\xa5\x61\x02\x02\x8a\xae\x7b\x19\x23\x5a\x5a\x1c\x33\x4c\x96\x16\x07\x08\xca\xfa\xdf\x2b\xbe\x66\x4e\x12\x6f\x4b\xbe\x6d\x21\xa8\x57\x72\x2f\xcd\xc6\x52\x1f\x4f\x47\xaf\x3e\x06\xe2\x87\x4f\xb9\x0c\x08\xc9\x75\x1d\x1e\xfb\x4a\x76\x7d\x2f\x15\xed\xf0\x91\x23\x55\xd1\x7a\x4c\xbd\x54\xb4\x40\x98\x0c\xbe\xf4\xe2\x97\x8a\xd6\x63\x6a\x29\xae\x85\x80\x65\xec\x96\xe2\xfa\x5e\xfa\xe2\x1e\x22\xcb\x5e\x7d\xc3\x58\x1d\xe6\x8c\x2f\xcf\x11\x3e\x12\x6a\xcf\x78\x65\xa1\x16\xe2\x87\x17\xb8\x3c\xf6\x5d\x1e\x10\x78\x18\xb9\x3c\x20\x00\xbe\xf8\xf2\x32\x91\xe8\x23\x85\xf6\x2a\x97\xac\xd0\x37\x4c\xd0\xf1\xc3\x0b\x5c\xde\x6d\x5b\x6a\x77\x0f\x5b\x96\xda\x1d\xf8\xe2\xcc\xcb\x64\x9d\x65\x34\xc5\x53\x94\x65\x34\x05\x7a\xe8\x30\x03\x7d\xa9\xc9\x97\xbe\xb8\xc7\x23\xb2\x40\xdf\x30\x3f\xc7\x8f\xcf\x79\x79\x83\x1b\xd8\xcd\x18\xbd\x09\x3c\xc0\x17\xb5\x5e\x6a\x72\x60\x37\xf3\xa7\x0a\xa2\x76\x3f\xca\x9f\x8d\xf7\x52\xf9\x2f\xb5\xba\xe7\x1d\x4b\xad\xbe\xd4\xea\xbe\x37\xb5\x3a\x50\xc2\x83\x0c\xa9\xa9\x85\xf8\xa1\x14\x96\x99\x41\x4b\xad\xee\x41\x86\xdc\xd4\x42\xfc\x7c\xbd\x6a\xf5\xa5\xba\x86\x08\xf4\x5e\xaa\x6b\x20\x28\x70\x73\x2f\x23\x3c\x1f\x5f\xb5\x31\x72\x09\xab\x85\xf8\xa1\x62\x96\x87\xc8\x1f\x31\x34\xe5\x9a\x6f\x99\xa1\xef\xa5\xae\x3b\x7c\xe4\x48\xd5\x75\x06\x23\x97\xba\x6e\xa9\xeb\x88\x98\xac\xf5\xfd\x35\x47\xca\x66\x4e\x52\x69\xe1\x0b\xb8\x4b\x2a\x7d\xaf\x8f\x6b\x14\xbf\x6e\x19\xae\x06\xe2\xe7\x0a\xf5\x68\x75\x71\x66\x1a\xc6\xde\x96\x67\xa6\x40\x50\x58\xe7\x5e\x9e\x99\x2e\x35\xe7\xc9\x01\xe9\x52\x73\x02\xf1\x63\xcb\xb0\x4c\xf9\x59\x6a\x4e\xc3\x60\xd2\x4f\x0b\x21\xab\x9d\xe5\xbc\xee\x8f\x45\xfa\x24\xc2\x23\x8d\xb4\xf0\x1d\x06\x3c\x7a\xf9\xb0\x49\x97\x30\x38\xf4\xe8\xd2\x03\xdf\x61\xc0\xa3\xe2\x04\x76\xb3\xca\xb3\xee\x33\xa6\x17\xdf\xf7\x51\x99\x7e\xdc\xd2\x67\xb5\xd3\xf4\x19\xf6\x8b\x6c\x04\x99\xa4\xef\x47\x2d\x69\x4c\xe4\x51\x4b\x02\xdf\x61\xc0\xa3\x96\x7c\xd4\x92\x06\x3b\x64\x9c\x16\xa2\xfc\x7c\xa4\x1c\x86\x70\x0c\x76\x3c\x86\x70\x9e\xb2\x68\x86\xb8\xe6\xf7\x00\x25\x0c\x4f\x3c\xe5\xf5\xd9\x4b\x33\x7e\xa9\x97\xff\xd1\x3d\x1b\x9e\x90\xef\xf9\x86\xe3\xf9\x3b\x5a\x78\x74\x47\x1f\xb5\x24\x65\x5d\xef\x47\x2d\x09\x04\x45\x89\xee\x47\x0f\xf5\x51\x4b\x9e\xac\x1a\xe9\x9d\x85\x28\x3f\x7f\xb9\x7c\x24\xd1\x2c\xef\xf9\xd1\x45\x05\xc2\xeb\x1e\xb2\x40\xdf\x8f\x81\x0d\x28\x37\x6f\x09\x9e\x6f\xd8\x9c\xa3\x60\x20\x65\x73\x16\x4a\x75\xbb\x21\x9d\xb3\xf0\x1d\x7b\x3c\xea\x57\x60\x37\xf3\xa7\xca\xdb\x6f\x9a\x21\x87\x21\x72\x68\x9d\x77\x33\xe6\xcd\x43\x59\x38\x9e\x43\x0a\x42\x39\x9e\xef\x07\xd5\x5c\xdd\x01\x3c\xaa\x66\xe0\x3b\x1d\x91\xf7\xf9\x86\xe4\x79\x37\x63\x92\x54\xcd\x40\x78\xc7\xe4\x51\x35\x4b\xfc\x5c\x7f\x0e\xcb\x50\x3a\x10\x94\x1f\xba\x1f\x8f\x73\xa1\x79\xde\xcd\x90\xcd\xe8\x3a\xe4\xcd\x41\xfd\xa1\xfb\x31\xba\x0e\xec\x66\xc8\x6b\x2a\x28\x25\xea\xa2\xf8\x79\x78\x76\x0b\x93\xf3\x6e\x86\x6c\xd3\x1e\x26\x0b\x29\xfc\xa5\x2f\x66\xda\x29\x36\xfe\xd1\x6c\x00\xe1\x8d\x95\xc7\x1c\x4f\x18\x9f\x77\x33\x5e\x96\x66\x03\x88\xe2\xc7\xa6\xd9\x80\xf2\x79\x37\xa3\x53\x43\x38\xf0\x3c\x47\xc1\x44\x3c\x7a\xf6\x40\xa9\xba\xa8\x8f\xae\xfd\x83\xd9\x28\x7e\x6c\x9a\x0d\xca\xe0\xed\x66\xbc\x05\x7d\xf6\x67\x2b\xf4\xef\x54\xe9\x31\xc7\xf3\xb9\x6c\xe6\x97\x65\x08\x07\x08\xea\x10\xdd\x8f\x1e\x35\x24\xce\xa5\xea\x08\x3d\x06\x36\x60\x74\x8e\xe2\xa7\xab\x9f\xf9\x2c\x47\xea\xb2\x54\xf7\x02\x51\xec\x40\xd7\xf3\x59\x2e\x4b\xf5\x8a\x37\x81\x21\x80\x0e\x2f\xdd\x3c\xea\xde\x67\xd9\xa9\x0a\xc3\x54\x17\x20\xbc\x74\xf3\x78\xee\xf8\x70\xc8\x58\xbf\x8f\xd2\x43\xc6\xe7\xe1\x9d\x36\x1f\xf9\x4e\x39\x3d\xac\xdf\x47\xe9\xe9\x21\x10\xd4\x2c\xba\x65\x7a\xbe\x21\x59\x2e\xd5\x85\x2f\xcb\xb2\x50\x6a\x41\xe7\xbd\xaa\x4b\x20\x0a\x36\xeb\x35\x26\x02\x01\xf3\x6e\xe6\x4f\x0f\x9f\x31\xe5\xec\x44\x5e\x3d\xc3\xb7\xd8\x8c\x89\x7b\x8d\x47\xbf\xc5\x66\x74\x50\xbe\x66\x97\x5c\xc2\xff\x44\xdc\xfc\x35\x54\xf1\xaa\xeb\x88\x10\xbc\xea\xba\x7f\xb0\x1b\xfb\x4c\x57\x0f\x4a\xe3\x90\x73\xf3\x75\xeb\xfd\x0f\x7a\x63\x94\x98\xfc\xc6\x42\x50\xc6\xe8\x7e\xcd\x2c\x81\xf2\xb8\xd4\x82\x12\x93\xf3\x58\x08\xea\x18\xdd\xaf\xba\x0e\xce\xe3\xdd\x8c\x89\xd0\xd5\x83\xe8\x38\x28\x64\x74\x5b\x95\xef\x7e\xbb\x4c\xc2\xa8\x9d\xd7\x50\xec\xab\x12\x1b\xfe\x92\x17\xf7\xb2\x6f\xad\x54\x5b\xbd\x5f\xbd\x1d\x20\xa4\xe6\x94\x24\xf8\x7e\x65\x7b\xf4\x90\xe5\xd5\x8b\x00\xa2\x7c\x8f\x7c\x6f\x69\xa7\xd8\xdb\xd7\xcd\x16\x10\x94\x3c\xba\x5f\xb3\xc2\xfe\x41\xc4\x5b\x6c\x96\x3e\x63\x7a\x71\x2c\x5e\xf7\x5f\xaf\xdf\x45\x45\xb1\xbd\x7e\x17\x40\x14\xfc\xcb\xd7\x80\x9f\xe4\xbc\xb5\xa2\xb1\x24\xe7\x15\xbe\xb3\x5b\xc9\x79\x6f\xc9\x79\xab\x67\x31\x92\xf3\x0a\x41\x71\xa4\x5b\x72\xde\xfb\x5d\xb2\xff\x56\x7f\xfa\xfa\x0c\xfb\x85\x1b\xfa\xfa\xa9\x00\xbb\x99\xcf\x14\xe4\xe1\x2d\xe0\x86\xbe\x9e\xd1\xcb\x97\x5b\xe1\xcd\x4b\xf9\x72\xf3\x57\x15\x64\xf0\x8c\x83\x65\x21\xa8\xac\x94\x3f\x0e\x96\xf3\x27\x91\x35\x44\x83\xf9\xc3\x7f\x17\x3c\x44\x4e\x68\x5b\x37\x4c\x19\x81\x6d\x76\xf8\x8c\x55\x33\x27\x8f\x4e\x1f\xd1\x29\xcc\x6e\x09\xf9\xea\x07\x41\x09\xa6\x94\x82\x35\x7f\x5a\x21\x2a\x81\xe5\x6f\x28\xef\x70\xca\x4f\x1e\x29\x87\xe6\x05\x2e\xb6\xfc\x0d\x3b\x1d\x7c\x65\x07\x1d\x60\x4a\xf2\x63\x43\x85\xc8\x2c\xa5\x43\xcd\x9f\xda\x74\x3b\xbc\x29\xf5\x69\xfe\x5c\x83\xf0\x13\xe5\x8f\x35\x28\x78\x24\x9d\x3f\xd6\x60\xca\x90\x5a\xfb\xcf\xbf\x66\xa7\x27\x23\x3d\x98\xb7\xd3\x91\x12\x14\xa9\x30\x0a\xe5\xef\xb2\xd3\xcb\x4e\x7d\x64\xa7\xb2\xa1\x72\xdb\x26\xa5\x43\x15\x3c\xe0\xce\xdf\xa5\x1c\x97\x04\xc2\x05\x41\x2e\x05\xb9\x58\xd1\x07\x13\x72\x0d\x1f\xdd\x36\x43\x90\xcb\xe9\xbd\x58\xd1\x27\x13\x42\x96\x8e\x50\x2a\x04\x3a\x09\x83\xea\x5f\xf3\xe7\x67\x74\x32\x21\xb7\xd3\x7b\x2b\x5b\xf8\x4c\xd9\xee\x41\x33\xe4\x20\x30\x9f\x52\x9f\xd6\xee\x0a\xb9\xed\xf4\xb6\x53\x86\x70\xdb\xe9\xfd\x75\x8a\xbc\xb7\x9d\xe6\x9e\x10\x4e\xd5\xf3\x97\x4e\x48\x7e\x54\xc9\x3e\x73\xa4\x7c\xbb\xe1\x8c\xa7\x23\x4d\xdf\x42\xf5\x99\x6f\x21\x4f\x9a\x21\x47\xfa\xea\xfd\xc4\xa1\xe3\xc9\x5f\x2a\xdb\x86\x08\x5f\x4c\xba\xde\xfc\xc4\x09\x6b\xa7\x44\xaa\x82\x67\xf4\x09\xa9\xea\x06\x3b\x6d\xc8\xb6\xec\x74\xd9\x29\x23\x5d\x76\x4a\x1a\x4e\x25\xc2\x9c\x3f\xd2\x70\xf2\xb7\x3f\xeb\x80\xa4\x37\x7f\xcb\x09\x79\x5c\x6f\x8d\x9f\x3e\xbe\x67\x6c\x5a\xb8\x1a\x1e\x47\xfa\xd8\x69\x67\x58\x8f\x9d\x6e\x88\xf0\x35\x3f\xae\x37\x4d\x5f\xf7\x5b\x78\x1c\x29\xa6\x8f\xda\x45\xf9\x7b\x1c\xe9\x6b\xa7\x9d\xb7\xf0\xda\xe9\x6b\xa7\x88\xfb\xda\x29\x89\x33\x15\x3a\x97\xfc\xbd\xbe\xe7\x0d\x01\x97\x6f\xfe\x5e\xe5\x78\x3f\x26\x6a\x7f\xaa\x20\x2f\x13\x12\x8c\xf4\x75\x42\x54\x3f\x7d\x6b\xd5\x94\xe4\x55\x08\x28\x7f\xb3\x60\x6e\xb3\xfc\x94\x6d\x6b\xae\x2c\x6c\x45\x04\x93\x16\xb2\xb0\x13\x49\xe9\x61\x6b\x47\xaf\x48\x0f\x2b\x98\xb4\x90\x50\xc5\x6e\xb0\x53\x34\x81\xbc\xaf\x42\x70\x7b\x35\xe5\x7d\xcd\xf2\x51\x73\x1f\xfc\xb5\x62\x0f\x85\x09\xd9\xbe\x5c\x16\xb2\x75\x12\x0e\xd7\x52\xe1\xf6\xc8\xc2\xb6\x23\x4b\xf8\xd7\xfe\x4c\x6f\x9e\x25\xec\x2c\xfc\xa2\x4e\x3a\x83\xef\x35\x0b\x21\x1e\x88\x83\x13\xee\xd7\x0f\x76\xb3\x93\x67\x0a\xc0\xa1\x02\x95\x89\x52\x0a\xd8\x94\xef\xb5\xc2\x91\x91\xf2\xbd\x26\x1c\xaf\x11\xac\xf7\xc2\x69\x81\xb0\x9b\x31\x6a\xae\xb9\x65\xe1\xb4\x80\xaa\x43\x59\x38\x2d\x48\x29\x60\x2b\xac\x16\x29\x07\xac\x10\xd4\x18\x4a\x39\x5e\x85\xdd\x0c\xd9\xaa\x82\x54\x5e\x79\x63\x08\xa4\x2d\x65\xd1\xba\xc0\x43\x91\x45\xeb\x02\x04\x55\x86\xb2\x68\x5d\xa4\x87\xad\xdc\xee\x4a\xe9\x61\x85\xa0\xcc\x50\x42\x15\xbb\xc1\x4e\x59\xf0\xf2\xbe\x26\x5c\xaf\x41\x9d\xa1\x2c\xcd\x4e\x3f\x8e\x72\x57\x0b\xf9\x48\x59\x38\x0e\xe0\x7e\x6e\x96\xe6\x84\xb0\xb1\xb2\xb4\x72\xca\xfb\x9a\xf0\xbe\x06\xdc\xc7\x29\xef\x6b\x96\x8f\x55\x1c\x85\x25\xef\xab\x10\xd1\xe9\x40\x93\x26\xef\x6b\x1d\xbe\x40\x4d\x1a\x10\xdc\xf6\x4d\x79\x5f\xb3\xb8\x63\x22\x80\x9f\x65\xd8\xe9\xb0\x53\x1f\xd9\x29\x89\x46\x75\x38\x97\xc3\x29\xc7\xa4\x51\x47\x28\x8b\x26\xad\xb8\x15\x22\xe4\x9e\x65\x3a\x6f\x93\x79\xe3\xcb\x2e\xd3\x79\x9b\x76\x8a\x8a\x29\xd3\x4e\x27\xeb\x6d\x30\xd2\xe9\x7a\x9b\x8e\xb4\xd3\xe9\x74\xa4\x93\x91\x0e\x1f\x39\x52\x39\xca\x87\xf2\x1e\xfe\x94\x83\x0f\x6a\x09\x65\x39\x1c\x82\x7b\x1c\xa8\xd8\x52\x92\xd7\x84\xc4\x35\x28\x26\x94\xe5\x70\x09\x6a\x95\x21\x4f\xcb\xa2\x55\x06\xcc\xa1\x49\x08\x5f\x37\x38\x84\xc9\x4f\xb5\xca\x40\x04\x5a\x47\xde\x57\x61\x37\xf3\xa7\x0a\x72\xb2\x7a\xd5\x3a\xa7\x53\x79\x2a\x9b\xba\xe3\x54\xb6\x93\x15\x32\x98\xb7\xd3\x15\x72\xfa\xc9\x1c\xca\xa6\xbc\x1b\x82\xba\x43\x59\xb4\xe7\xc0\x6e\x86\x6c\x97\xf2\x62\xe3\xc3\x51\x69\xe3\x8b\xc6\x9b\x58\x7a\x16\x8d\x37\x10\xe1\xa8\x34\xde\x92\xcd\xd6\xa1\x26\xba\x7c\x0b\x17\xaf\x5e\x8d\x78\xf9\xea\xb5\xf1\x94\x1a\xcb\xa2\x8d\x07\x22\x1c\xfc\xe5\x7a\xd3\x55\x1e\x2a\xac\x5b\x79\xb1\xf1\xe1\xe0\xb5\xf1\x45\x8e\x72\xee\x61\x67\xb9\xfd\x29\xc6\x9b\x52\x45\x59\x34\xde\x85\x13\x8d\xca\x45\xe1\x2c\xe9\x5b\xe0\x44\x23\x70\xc8\x8a\x86\xba\x68\x95\xa7\x9f\xb3\x56\x19\x88\x50\x0d\xa7\x0b\x49\xab\x3c\xfd\x9c\xb5\xca\x45\xab\x7c\x20\xae\x56\x59\x22\xdc\xca\x75\xb7\x94\x08\x57\x88\xf0\xc5\x2c\x3b\x75\xa7\x39\x55\xd7\xcb\xf7\xbc\xec\x94\xe9\x5d\x76\xea\x4e\x93\xcb\xa5\x29\xeb\xad\x10\x14\x3f\xca\xf2\x38\x21\x5a\xe5\xe9\x77\xaa\x55\x06\x82\xea\x47\x59\x1e\x3b\xd5\x2a\x4f\x35\xa8\x56\xb9\x68\x95\x7d\x7f\x5a\x65\x89\x70\xeb\x54\x83\xbe\x76\xfa\xb2\x42\x70\xef\xca\xeb\x0a\x81\x96\xb0\x4e\xb5\xd4\xab\x5d\xd8\x60\x6a\x57\x16\x0d\xb5\xa4\xb7\x75\xfa\x39\xbf\xce\xdb\xcb\xcb\xf2\x35\xbf\xbe\xac\xf7\x63\xff\xdf\xf2\xca\x70\x2b\x04\x3b\xa2\x0c\xcd\xad\xa4\xb7\x95\xfb\x8a\x29\xe9\xad\x10\xd4\x53\xca\xd0\xdc\x42\x60\x5b\x2a\x17\x11\x13\x1a\xdb\x0d\x76\xda\x79\xf4\xf8\xe8\xb1\x99\x7f\xed\xf5\x19\x9f\x0c\xd6\x2e\xb4\xc0\x61\xc1\x8c\xc9\xd7\x16\x9a\x60\x20\xe0\x71\xcf\xe0\x2c\x3f\x25\xb8\xad\x5c\x5a\x4b\x19\x6e\x13\x36\xdb\x80\xc7\x3d\x65\xb3\xcd\xd0\x2a\x73\x65\x2f\x43\xab\x0c\x44\xc5\x8b\x0f\xf2\xb9\x32\x8a\xb2\x4d\x7b\x50\x36\x8c\x77\xfd\xfd\xf9\xd0\x3b\xe5\xc4\xcd\x08\x65\x62\x25\x87\x26\x38\x38\xc3\xa7\x2c\x52\x46\x28\x53\x58\x2d\x81\x65\x10\xa4\x7b\x09\x41\x5d\xa4\x0c\x0d\x35\xb0\x9b\x21\x53\x28\x27\xc6\x1b\x0a\x87\x0c\x8d\x77\x68\xbc\xb9\x35\x97\x11\x9f\xe8\x2f\xcd\xf8\x65\x75\x5a\x2d\xbc\x34\x59\x2d\x51\x95\x77\xdb\xf5\x80\xe9\x21\xe1\xf3\xfd\x60\x37\x63\x72\xaa\xaf\x9c\x8c\x00\x6a\x23\xa5\xb4\xbe\x19\x9a\x5b\x0e\x5e\x32\x34\xb7\x40\x40\x08\x91\x41\x08\x20\xc3\x10\xc0\xe1\x4f\xbb\x82\xb0\x35\x64\x4b\x9d\xe1\xd6\x30\x34\xb7\x5c\x05\xca\xd0\xdc\x02\x01\x53\x7d\x46\xb7\x53\xcd\x2d\x57\x81\x52\x92\x60\x21\x2a\x0e\xac\x24\xc1\x29\xfb\x6f\xe5\xa2\x4e\xca\xfe\x2b\x04\xc5\x96\x52\xf6\xdf\x0c\xae\x07\x56\xce\x67\x32\x86\x3d\x60\x6e\xab\x72\x68\x6e\x83\x04\xad\xca\xbd\x94\x8c\xe1\x9b\x19\xbc\x05\xfc\xdc\x18\xbe\x05\xcd\x2d\x77\x3f\x32\x34\xb7\x40\xb0\xdd\xcf\xd0\xdc\xca\x25\x5c\x39\x32\x49\xb9\x84\x85\xa0\x2c\x53\x86\xe6\x56\x2e\xe1\x7a\xe0\xba\xc8\x25\x9c\xf0\x07\x47\x75\x54\xd3\x4e\x27\xaf\x1e\xea\xb8\x8c\xe9\xab\x9f\xbc\x7a\x54\x5d\x1c\xca\x61\x81\x11\xee\x57\x64\x1c\x0a\xc2\xb9\x16\xa4\xfb\x19\x87\x6f\xe1\x70\x7a\x31\xde\xf0\x0f\x6f\x60\xf5\xa2\x11\xa5\x1c\x4e\x29\x87\xeb\x81\x7b\x20\xe5\xb0\x10\xd4\x5c\xca\xd0\x2a\x4b\x16\x5c\xb9\x13\x98\x92\x05\x0b\xa6\x85\x66\xb8\x09\x96\x3f\xb8\x72\x11\x20\x25\x10\x16\x82\xc0\x46\x86\x16\x38\xbe\xca\x21\xc4\x1d\xe2\xf4\x5b\xc0\x2a\x53\x10\x20\x43\xab\x2c\x7f\x70\x3d\xfc\xda\xdd\x18\xc3\x19\x1c\xc4\x3f\x32\xb4\xa3\xa1\x1d\x3d\xb0\x11\xa1\x1d\x05\xa2\xe2\x16\x43\x26\xbc\xc1\xb7\x80\x55\x96\x2c\x38\x21\x08\x8e\x5a\xed\xc0\x4e\x6f\x3b\xf5\x73\xbe\xed\xf4\xb6\x53\x16\xd2\x6d\xa7\x64\xac\xd5\x43\x05\xeb\xc6\x18\x30\x27\x35\xe3\x56\x0e\x2b\x87\x1c\x2a\xd8\x5b\x41\x6e\xde\x02\x1e\x5f\xdc\xbe\x05\x83\x44\x87\x0a\x76\x29\x1b\x3b\xc8\xea\xda\x72\x07\x19\x9a\xb4\xd3\x37\xa3\x49\x03\x82\x9a\x06\x19\x9a\x34\xc9\x77\xeb\xe9\x94\x3f\x6a\x02\x4c\x5a\x75\x09\x6a\xd2\xa4\xd0\xad\xa7\x73\xf9\xf8\xb2\x1e\x3b\x65\xf0\x8f\x9d\xc2\xc7\x55\xc9\x84\x4d\x28\x76\x3f\x08\x8a\x2a\xa5\x4c\xbb\x42\xa9\xa7\xa3\x7f\x15\x04\xcb\x47\xe9\x83\x0c\x2d\x9f\xe4\xbb\xf5\x74\xf4\x6e\x3e\x01\xd3\x6a\x53\xf2\x5d\x61\x37\x43\x5e\x37\x9f\xc1\x46\xb3\xba\xee\xdd\x68\x02\xbb\x19\x2f\xf0\x75\x08\x24\x10\xd4\xee\x2f\x5d\x5b\x1a\xc8\x93\x61\x49\xd2\x2b\x04\xd5\x92\xb2\x6a\x20\x65\xdf\xad\x64\xc2\xa6\xec\xbb\x09\xe3\x6e\x54\x6c\x66\x25\xd6\x9b\x55\x03\x79\x7e\x3f\x4d\x9f\x31\x6f\xc3\x5f\x32\x6f\xb2\xef\x56\xd2\x48\x53\xf6\xdd\x84\x7d\x37\x28\x83\x94\xb2\xef\x66\xd5\xf2\x91\xaa\x99\x55\xcb\x07\x44\x1d\x9d\x47\xa7\x8f\xec\x94\x0f\x50\x92\x5e\x21\xea\xf7\x88\x91\x56\x72\x0a\x2a\x59\x93\x59\xc9\x29\xc8\x1a\x76\x8a\xb8\x6e\x2e\xab\xa6\xed\xe4\xcb\xaa\x9a\xb6\xaa\x69\xfb\x7e\xe9\x48\xb9\x87\x58\xc9\x25\xcc\x4a\xb8\x58\x08\xea\x1b\x65\x6d\xfe\x35\xc2\x72\x8d\x24\xb3\x94\x43\x37\xe1\xcb\x35\xcf\x38\xe5\xcb\x4d\xb9\x71\x1b\x57\xca\x52\x72\x5c\x21\x2a\xfe\x2e\x44\xb9\x1b\x28\x56\x40\xe6\x4c\x4a\x84\x2b\x44\x9d\x7f\x66\x69\xc9\xaa\x6a\x96\x3a\xb7\xfd\xf8\x2e\xe4\xce\x15\xa2\x3a\xe8\xe9\x0b\x99\x8a\xce\x3a\x93\x27\x37\xe1\xc6\x35\xf7\x39\xeb\x54\xf4\xa9\xe8\xae\x0c\x35\x78\x55\x83\xe3\x0e\x57\x35\x38\xd4\xb8\xbb\x19\xa3\x3e\x9c\x7d\x0e\x85\x28\x7f\x94\xd5\x3d\x54\x3d\xec\xd4\x45\xa5\x6a\x06\xcc\x7d\xce\x7a\xf8\xca\xad\x9d\x41\x96\x47\x4a\xa7\x2b\x98\xfb\x9c\xd2\xe9\x66\xbd\x9d\x2f\x17\x50\x3a\x5f\xe4\x28\xd5\xc3\x47\x4e\x08\xb1\xac\x56\x30\xc1\xd2\xb2\x26\x14\xac\x41\xcd\xa5\x94\x82\x35\xa5\x5b\x6d\xf0\xa9\xa5\x7c\xab\x42\x50\x73\x29\xa5\x5b\x4d\x28\x56\x4b\xe3\xbc\x23\x21\x5a\xfd\x6b\x56\x35\x11\x0e\x8e\xdc\xaa\xc2\x6e\xc6\xb0\x1e\xdf\xc2\xc3\x5b\xc0\x73\xa9\x2a\x27\xb9\x55\x1b\x07\x45\x29\xb7\x6a\xc2\xa7\x1a\x15\xcf\xa5\x3e\xca\x66\xe1\x09\x68\xd7\xb2\x1a\xdf\xaa\x2a\xac\xd3\x5f\xfa\x16\x5e\xab\xf8\xa0\x76\xaa\x9e\x74\x25\xe4\x45\x95\x90\xac\x6a\x9d\xfa\xda\xa9\x9f\xb1\x2a\x06\x08\x0a\x3d\x65\x35\xbc\x25\x53\x6b\xa3\x4c\x59\xca\xd4\x9a\xed\xe7\x4f\xf9\xf2\x9a\x8a\x02\x30\x41\x3c\x9b\x11\x29\x09\x5d\x1b\x91\xf9\x94\xd0\x55\x30\x41\x3c\x25\x74\xcd\x16\xca\xcb\x12\x69\x7e\xb3\x40\x54\x7c\xdf\x66\x90\x48\x1e\xd5\x66\xf0\x54\x22\x55\x21\xda\xf7\x68\xf9\xe8\xb5\x19\x82\xe8\x2d\x02\xd1\x70\x91\x9b\xce\xa2\x14\xac\xcd\x00\xa5\x14\xac\x42\xb4\x5f\xf0\xc8\x4e\xab\x9d\xe2\xdf\x35\xc3\x3a\xad\x2e\x9a\xf9\x88\x29\x6f\x38\x90\xcd\x20\x60\xd3\x81\x04\x82\x8a\x53\xd9\x74\x20\x25\x48\x6d\x14\xf8\x4e\x19\x52\x13\x36\x54\x53\xe1\x53\x36\xd4\x6c\xea\x13\x4a\x24\x67\x53\x9f\x00\x41\x29\xa9\x6c\xe3\xfb\x6b\xca\xe6\x9b\x51\x9f\x00\x41\xd9\xa8\x94\x34\x35\xdb\xb4\x53\x94\x6e\xd3\x49\x6b\x1c\x0f\x37\x07\x3f\xed\x74\x5a\x5f\x09\xfd\xd7\x0c\x80\x00\xd1\x8a\xbf\xbc\x7c\xe4\xf4\xa2\xd8\xa4\x60\x15\xa2\x39\x47\x3a\x64\xed\xb4\x53\x34\x67\x33\x8a\x01\x04\xd5\xa5\xb2\x19\xc5\x68\xa7\x43\x70\xd5\xe8\x1c\x01\xd1\xf8\x4e\x65\x65\x4d\x29\x4d\x9b\xdb\x0e\x39\x4d\x85\xa0\x08\x55\x4a\x69\x9a\x8d\xc0\x7c\xd3\xd5\x6a\x06\xe6\x81\x68\xb8\xca\xcd\xed\x7e\x7b\xac\x65\x84\x0f\xdc\xdc\xb7\x02\x41\xad\xaa\x6c\x7e\x6d\x72\x6e\xb6\xea\x10\x34\xf2\x10\x6c\x46\xc3\x55\x96\x60\x33\x9b\x5f\x9b\xba\xa6\xf9\xb5\x01\x41\x49\xab\x6c\xaf\x23\xf5\x6b\xe3\x3a\x46\xca\xc3\x29\x44\xc3\x55\x96\x87\x53\xd8\xcd\xec\x41\x41\x36\x44\xc3\x55\x6e\xda\xf8\x46\xde\x7b\x53\x89\xc0\xdd\xf9\x41\x78\x6e\x25\x83\x67\x76\xce\x73\x29\x86\x95\x9d\xf3\xdc\xec\x3f\xe7\xe8\xb4\x59\xfa\x8c\x39\xc2\x2d\xee\xdc\x6f\xca\xee\xa7\xdb\x98\xf1\xee\xa7\x0b\x04\xd5\xae\xb2\xfb\xe9\x4a\x11\xda\x28\x84\x96\x52\x84\x0a\xd1\xf0\xd1\xba\xf1\x65\xf8\x3c\x4b\x73\xbd\x75\x8d\x37\x10\xad\xfa\xc8\x4e\xb1\xca\xcd\x97\xd5\xb5\xca\x1d\xab\x4c\xed\xac\xec\x5a\xe5\xae\x22\xf8\x04\x51\x11\x74\x15\x01\xae\x5c\x8f\xef\xaf\x39\x04\x7b\x50\x11\x74\x15\x01\x6f\xbe\xab\x08\x64\xed\x6c\xdf\x4f\x8d\xef\xc2\xd4\x19\xd4\xce\xca\x6e\x7c\x17\x28\x8d\xd2\x56\xd9\xb9\x5f\x24\x04\x14\x79\xd9\xd5\x0d\xbd\x7e\xb5\xa8\x90\xd7\x98\x6f\x57\x5f\xd4\x3f\xf3\xa3\x66\x57\x9d\x40\xf7\xb9\xff\xca\x5e\x19\xbd\x39\xad\xf8\x1d\xdc\x5e\x49\xb9\x3f\xb3\xab\x75\xa0\xcb\xcb\xae\xd6\x81\x0f\x34\xbe\xfe\x8d\x08\x03\xa5\x79\x06\xd9\x9b\x72\x92\x7e\xe3\xe9\x25\xdc\xa0\x7f\xcd\xde\x2d\x7c\x85\xd9\x80\x08\x74\x03\x9d\xe2\x37\x76\xa3\xc4\xc0\x6e\xc6\xe4\x90\x7e\x93\x9d\x5c\xc6\xaf\x83\xee\x7c\x7d\x95\xc0\x88\xc9\x74\x43\xc2\xf0\x81\x86\x87\x9c\xd2\x81\x0a\xbb\x19\xc3\x72\x77\x0b\x45\x68\x7c\x1d\x0c\x57\xad\x8a\x93\x6a\x4d\xd9\x55\x9c\x40\x50\x70\x2a\xbb\x1b\xde\xae\xe2\xa4\xd0\x53\x76\x15\x67\x57\x71\xe2\x6b\x74\x15\x67\xd7\xc3\xa2\x82\x53\x76\x3d\xac\x3e\xed\x14\x39\x74\x97\x80\xd2\x28\x75\x94\x5d\x7f\xa9\xab\x38\x71\x49\xba\x8a\xb3\xeb\x1b\x71\x29\x27\xbb\xbe\x51\xc7\x37\xe2\xd6\x4f\x76\x7d\xa3\xae\xe2\xa4\xea\x50\x76\x15\x67\x57\x71\x62\x46\xbb\x8a\xb3\xeb\x42\x71\x77\x27\xbb\x2e\x14\x10\x94\x88\xca\xae\x0b\xd5\x0f\xdf\x02\x5a\xa7\x1f\xbe\x85\x0d\x41\x89\xa8\xec\x7a\x55\xfd\x2b\x3f\x76\xd8\x83\xb2\x1d\xca\xa6\x1c\xca\x46\xfa\x4d\xa3\x64\x4f\x76\xc3\xd5\x80\x37\x92\xb2\xbb\x2f\x06\x76\x33\x9f\x29\x2f\xe7\xca\xdf\x1c\x79\xae\xdc\x2d\xc5\x43\x65\x9f\xec\x2a\x7a\x20\xbe\x39\x32\x5a\x0d\xec\x66\xbc\x05\xc3\xd5\x9d\x2d\x75\xc3\x61\xe8\x6e\xa9\xfb\xf9\x55\x50\x63\x08\x9a\x88\xae\x89\x98\x3e\x72\x6d\x9d\x4e\x2f\x1e\x83\x24\xb2\x42\x50\x35\x2a\xbb\xd1\xea\xfe\x15\x33\xc3\xc6\x4b\x05\x2b\x04\x55\xa3\x52\x26\xd8\x84\xc2\xb5\xb4\xae\xc2\x72\x13\x0c\x9f\x6b\x7c\xef\xcf\x4d\x70\xd7\x2e\xf5\xb0\x99\x53\xce\xee\xf6\x7b\x7f\xf7\xf7\xd7\x2e\x9b\xd1\xe9\xed\x47\x79\xf3\x2d\xe0\xc8\x76\x0f\x87\xe5\x73\x6d\x1d\x45\x2f\x9f\x6b\xf6\xe4\x73\xc6\xf5\x84\xc8\xf5\x83\xdd\x0c\x79\x0d\x26\x03\xde\xbd\xca\x6e\x30\x59\x8a\xd7\xe6\xf1\xb3\x1c\xaf\x42\x7c\x33\x9e\x5f\xa7\xcc\x9b\xc7\xcf\xdd\x93\x60\x68\x5f\xe3\x9b\xf1\xe5\x3b\x5d\xca\xa6\x1e\x36\x34\x0d\x44\xc3\x95\xeb\x86\xa6\x65\x87\x6d\x9e\x52\xcb\x0e\x2b\xc4\xf7\x62\x0c\x4d\xf7\xf5\x75\x4a\x0f\xee\xe3\x3b\x59\x1c\x54\xfd\xca\xae\xa7\x0c\x94\xc6\x75\xa9\xec\xba\xca\x40\x7c\xef\xcf\x68\x35\xb0\x9b\x31\x7a\xf7\xf6\x40\x98\xb3\xd0\x3d\x57\x96\x92\xb6\x71\x5d\x2a\xa5\xa4\xcd\xbe\x3d\xe6\xe8\x5a\x39\xb7\xf6\x5d\xb3\xdf\x55\x83\x9a\x7d\x20\xba\x56\xce\xad\x7d\xd7\xec\x53\x85\x25\xbb\x66\x1f\x08\xaa\x20\x65\xd7\xec\x03\xbb\x19\x9d\xea\x78\x77\xce\x95\x3b\x3e\x5a\xd7\x13\xe8\x56\x77\xf3\x30\xbb\x1b\xe8\x86\x1b\x37\xa8\x82\x94\x52\xe3\xe6\xc0\x9e\x9b\xed\x30\xb4\xe7\xe3\xe7\xe0\xd1\x8c\xc3\x08\xf6\xc0\x15\xa7\xf8\x50\x0e\x5d\xf1\xa1\xd9\x87\x21\x34\x87\x66\x1f\x08\x93\x22\x86\x66\x5f\xee\xdd\xe6\x31\xb8\xdc\xbb\x42\xb8\x78\x87\x66\x5f\x52\xdd\x46\x55\x93\x94\x54\x37\x21\xd2\x0d\x17\xef\x30\x5a\x0d\x94\xc6\x6d\xa5\x1c\xa4\x73\xe5\x28\x76\xca\x10\x34\xfb\x43\xff\xdf\xf3\xed\xa1\xff\x0f\xf7\x6e\x50\xa3\x28\xe5\xde\xcd\xa1\x77\x40\x45\xb2\x1c\x7a\x07\x40\xb8\xc6\x47\x38\x52\xbd\x03\x28\x40\x53\x8a\xde\x1c\xc1\x6b\x66\x8d\x0f\x63\xca\x43\xef\x00\x0a\xd0\x1c\x7a\x07\x40\xb8\x78\x87\xde\xc1\xa8\x2e\xc1\xf3\xf7\x67\xe3\x3d\x8c\x39\x43\xee\xeb\x95\xc4\x1c\x1e\x2b\x03\xfb\xaf\x30\x87\x9e\x2b\x03\x5e\x2c\xcc\xa1\xdb\x01\xec\x66\x0a\xe0\x70\x70\x45\x28\x92\x94\x43\x57\x64\xe8\x8a\x50\xed\x22\x87\xae\x08\x10\x14\x49\xca\xa1\x2b\x32\xaa\x23\xe4\x6b\x1f\x1e\x35\x0f\xb2\xe4\xcc\xe7\x18\xcd\x05\xa4\xaf\xe1\xd9\xfb\xd0\xd7\x00\xbc\xcd\x98\xc3\xb0\x87\x5c\xc5\x8d\xc2\x13\x29\x57\xb1\xe0\x6d\xc6\x94\xab\x38\x07\x21\xf2\xe6\xd9\xfb\x30\x44\x3e\xba\x9d\xfa\xc8\x4e\xf5\x35\x86\x8b\x5b\x5f\x63\xe0\x6b\x50\x4b\x29\x87\xbe\xc6\xe8\x16\x3d\x64\x03\x32\x3c\x6a\x1e\x5c\x50\xe3\x9a\x62\x0e\x2e\xa8\xe5\xd0\x89\xa0\x96\x41\x0e\x9d\x08\x20\xfc\x8a\x87\x21\xf2\xe1\x7e\x09\x2e\xd4\x1c\xee\x97\x80\xf0\x2b\x1e\xee\x97\x06\x7c\x78\xcd\xf3\xed\x31\x5c\x2d\x83\x6f\x11\xcf\x65\xe8\x30\x00\xbb\x99\xcf\xec\x01\x27\xc2\xcc\x95\xa1\x13\x31\x0c\xb0\x78\x0c\x3e\x0c\xb0\x0c\xb6\x55\xea\x84\xe1\xb6\x6a\xe8\x44\x0c\xdf\x8c\x4e\x04\x10\x94\x5c\xca\x31\x95\x4d\x27\xc2\x63\xf0\xa1\x13\x01\x78\x37\x32\x87\x4e\xc4\x30\xc0\x02\x7b\x69\x0e\x5d\x81\x71\xd8\x29\xf3\x66\xec\x1b\x28\x6d\x38\xfa\xc3\x85\x74\xb0\x90\x70\x70\x86\x0e\x03\xb0\x9b\x31\x52\x83\x2e\x00\x57\x28\xf7\xff\x7d\x0b\x6e\xf9\x3c\x2d\x1f\x6e\xf9\x06\x66\xff\xd3\x3a\x9a\xfd\x71\x2a\x9b\x0a\xcb\x48\x3a\xe0\x55\xca\x1c\x9a\x7d\x69\xaa\xdb\xb0\x07\xcd\x3e\x10\x9f\x72\xd2\xec\xcb\x3f\xdd\x86\x3f\x35\x44\x0e\xe7\x74\x98\xa3\x33\x0c\x91\x03\xa5\x79\xf6\x3e\x2e\x3f\xc0\x8b\x0f\x50\x1d\x66\xd4\x7c\xe8\x1d\x78\xf6\x3e\xf4\x0e\x80\xa0\x32\x53\x0e\xbd\x83\x71\xf9\x16\x70\x53\x86\x47\xcd\xd0\x54\x07\x95\x99\x52\x9a\xea\x1c\x3a\x11\x90\xb1\xe7\xd0\x89\x00\xbc\xe6\x99\xe3\xf6\xcb\xd2\x89\xf0\xec\x7d\xe8\x44\x8c\xed\x31\x44\xff\x3a\xf0\xc5\x18\xe6\x1a\x04\xab\x86\x61\xae\x91\x76\xca\x48\x4d\x27\x03\x4a\x83\x03\x3d\x47\xfa\x65\x25\x36\x13\xcf\x65\xe8\x57\x00\xbb\x19\xf2\x7a\x98\x0d\x78\x1b\x34\x87\x59\x67\x43\x5f\x63\xa8\xb8\xf4\x35\x06\x19\xa3\xd4\x54\xca\xa1\x5f\x31\x74\x22\x20\x10\xcf\xa1\x13\x01\x04\x84\xcd\x39\x4c\x27\x93\xb7\xbb\x41\x20\x9e\xf2\x76\x0b\xf1\x29\x75\x9d\x88\x61\x08\x6e\xfe\xfc\xa9\x9d\x2e\x3b\x65\xf0\x1e\x06\x0c\x9d\x08\xee\xd8\xe5\xd0\x89\x18\x3a\x11\xb8\x4b\x43\x27\x62\x18\x5b\xf3\x88\x7e\x18\x5b\x1b\xec\xf6\x3f\xdd\xef\x6e\x7f\xe8\x1d\x78\xf6\x3e\xf4\x0e\x80\x30\x05\x6a\x18\x6e\x93\x53\xbc\x4d\x75\x88\xde\xc1\xd0\x3b\x70\x8e\xf4\x0e\x24\x0b\x6f\x53\x6b\xa8\x8d\x87\x20\x3c\x3e\xe5\xee\xce\x7e\xbc\x5f\x91\x54\xff\x9a\x3d\x70\xbe\xfd\x69\x6d\xcf\xb7\xe5\x14\x6f\xf0\xca\xa6\x9c\xe2\x39\x7f\xce\x25\x7b\xd4\xe9\x61\x36\x04\xe2\x01\x5d\x75\x4a\x20\x9e\xd3\x48\xdd\xc4\x30\x4c\x23\x75\x53\xf7\x80\x97\x35\x75\x0f\xa6\xee\xc1\x64\xdb\x38\x75\x0f\xa6\xee\xc1\xe9\x2f\x91\x6d\xba\xdd\x87\x6b\x36\xa7\xdb\xfd\x49\x48\xdf\x9c\xac\x69\x48\x1f\x28\x0d\x12\xd9\x9c\x54\x70\x15\x62\xe0\xb7\x4d\x3d\x06\x60\x37\xf3\x99\x82\xe0\x45\x50\xb7\x28\xa7\x5e\xc4\x2c\x8e\x1e\xf5\x33\xc3\xd1\x47\xa1\x19\x72\x44\xf8\x48\xd9\x50\x70\x53\x2f\x02\x88\xf1\xfb\x27\x12\xd6\xa6\x41\x46\x09\xd7\x9b\x87\xff\x12\xae\x0b\x41\x59\xa3\x9c\x3a\x19\x53\xef\x01\x2a\xda\x9c\x7a\x0f\xd0\xa3\x07\x65\x8d\x72\x9a\x62\x36\xf5\x1e\x60\xff\xcd\xa9\x7b\x00\x84\x79\x62\xd3\xb8\xe3\xb4\xd0\x2c\xec\xbf\x39\x0d\x3c\x02\xa1\x81\x9c\x7a\x11\x53\x2f\x82\xab\x8b\x39\xf5\x22\x80\xd0\x40\xca\xc5\x9e\x92\xac\x37\x48\x82\x53\x96\xf5\x9c\x84\x20\xa8\x57\x94\xd3\x18\xc3\xd4\x3d\x30\x47\x60\xea\x1e\x00\x61\xd6\xd9\x34\x13\x4d\x7e\xf6\x66\x12\x80\xfc\xec\x42\x50\x88\x28\xe5\x67\x4f\xf8\xd7\x77\x33\x7a\x30\x3b\x0d\x08\x0a\x11\xe5\x34\x14\x21\x3f\x7b\x33\x09\x40\x7e\xf6\x84\x93\x3d\x34\xde\xd3\x84\x35\x60\x37\xe3\x5d\x1a\x9e\x00\x42\xe3\x3d\x75\x2c\x80\xd2\x4c\x02\x98\xa6\x6a\x4f\x4e\xd0\x21\x32\xcf\xe9\x09\xfa\xd4\x8b\x30\x09\x60\xea\x45\x00\x61\xaa\xdb\x34\x3a\x21\xdb\x7b\x83\x9b\x37\x65\x7b\x17\xbc\xd2\x9e\xb2\xbd\xa7\x34\xee\x0d\x36\xdb\x94\xc6\x5d\x08\x3d\x06\x69\xdc\x73\x42\xcf\xd8\x0e\x97\xe8\x70\xf4\x1b\xbc\xf9\x9e\x53\xff\x43\xca\xf6\x06\xc7\x6b\xca\xd9\x9e\xf0\xb3\x87\x8e\x85\xfc\xec\x39\xf5\x22\xa0\x34\xcd\xa9\x17\x01\x78\xf3\x3d\xa7\xf1\x5a\x69\xdc\xdb\xe1\x9b\x99\x5f\x0f\x0f\xcd\x7c\xe4\x54\x5a\xe2\xfc\x20\x8c\x09\x59\xfb\x06\x3b\xf5\x91\x9d\x1a\x63\x30\xf3\x60\x1a\x63\x98\x5c\xf9\xd4\xff\x98\x7a\x0c\x52\xb6\x37\x28\x42\x53\xce\x76\x21\x28\xa2\x93\x52\xb6\x0b\xbb\x19\xf3\x66\x40\x61\x12\x3c\xe0\x82\x7c\x4e\x83\x07\x53\x2f\x82\xeb\xa8\x39\xf5\x22\x00\x2f\xc8\xe7\x34\x9e\x20\xdb\x7b\x33\xdd\x41\xb6\xf7\x9c\x78\x11\x14\xd1\xc9\xa9\x17\x21\x01\x7c\x3b\x7c\x33\xa7\xcb\x92\xab\x9f\x7a\x33\xd3\x23\x7a\xd9\xde\xdb\xe1\x9b\x31\x78\x00\xc3\x7b\xe8\xcd\x4c\xf3\xda\x80\xdd\x0c\x79\xcd\x5d\x9f\xdb\xb3\x08\x28\xdb\x73\xea\x58\x40\xf0\xbe\x9b\x31\x04\x0f\xda\x61\x7b\x0f\x9d\x1e\xd9\xde\x73\xea\x45\x70\x91\x34\xa7\x5e\x04\x10\x3a\x3d\xd3\x84\x35\x49\xe1\x9b\xc9\x13\x92\xc2\x0b\x31\x86\xbf\x74\x42\x8c\x7d\x1f\xc4\x02\xa7\xb1\xef\x79\xdb\x29\x43\x30\xaf\x0d\x28\x0d\xbe\xc8\x9c\xc6\x1d\x26\x5e\x84\xe9\x8b\x53\x2f\x42\x9e\xf8\x76\x38\x2c\xf3\xda\x20\x85\x0f\xaa\xe3\xa4\xa4\xf0\x39\x75\x0f\x0e\xe5\xd5\x3d\x00\x62\xa8\xf2\x0c\x45\x4c\x43\x11\x87\x82\xe8\x32\x00\xa1\x43\x36\xf3\x93\xc3\x09\xc1\x97\x9b\x7a\x11\x40\xe8\x90\x4d\xbd\x88\x69\x8c\xc1\x54\x8c\x69\x8c\x01\x08\x1d\xb2\x69\x8c\x61\x2e\x8b\x55\x7f\x3f\x55\x10\xbc\x08\x8a\xd0\xe6\xd4\x8b\x98\x8f\xd3\x8b\x0f\x35\x0d\x28\x00\x61\x6a\xe5\x34\x9e\x30\xf5\x22\x0e\xf5\x9b\x5e\x04\x10\xe3\xfb\xa5\x9d\xea\x45\x40\x8f\x98\xb2\xe4\x0b\xb2\x19\xe4\xd4\x8b\x90\x9c\xbe\x1d\xe8\x37\xd9\xe9\x13\x76\x7a\xd9\x0c\x52\x76\xfa\x3c\xb4\xf1\x50\xe9\xe5\xa1\x8d\x07\x82\xca\x3d\x79\xb8\xdd\x3f\xb4\xf1\x50\xe9\xe5\xa1\x8d\x07\x24\x3d\xc8\x43\x1b\x2f\xaf\x7d\x3b\x31\x02\x12\xdb\x0b\x61\x3e\x27\x24\xf7\x1b\x5e\x9b\xed\xb9\x94\xc4\x3e\x21\xae\x97\x1b\x21\x0f\x13\xd6\x80\xdd\x0c\x79\x3d\xdd\x07\x82\x3a\x40\x79\xe8\x1d\x00\xa5\x9d\xa8\xed\xc3\xd3\x80\xa3\xf0\xc9\xe0\xa4\x1d\x7a\x07\xf2\xda\x37\x6e\xfd\xa6\xc4\xf6\x09\x89\x7d\x8c\xe3\xcf\xe4\xe6\x29\xc7\x7d\x1e\x7a\x0a\xd0\xd4\xe5\xa1\xa7\x00\x84\x7e\xee\x61\x5e\x9b\x54\xf8\x0d\xfe\xb9\x94\x0a\x5f\x08\xfd\xdc\x43\x57\x40\x8e\xfb\x66\x16\x89\x1c\xf7\x09\xaf\x7d\x50\xeb\x27\x0f\x13\xd6\x80\xdd\xcc\xbf\xf6\xfa\x0c\x5b\x85\x0f\x77\xe8\x1d\x00\xbb\x19\xf3\x65\x70\xe1\xd0\x63\xc0\x5f\x3b\xf4\x18\x0e\x4f\x23\xcc\x22\x39\x34\xe8\x40\x50\xc4\x27\x0f\xa3\x02\x87\x36\xde\xbc\x8f\x43\x1b\x0f\x84\x3e\xf8\xe1\xc9\x83\x8c\xf9\xed\x44\x73\xca\x98\x2f\xc4\x38\x7d\xa4\x1c\xee\xed\xb9\x3b\x9c\x87\x7b\xfb\x83\x6c\x73\x5d\xf5\x43\x7b\x7e\x68\xbc\x4d\xe8\x38\x34\xde\x07\xc6\x9b\x22\x3e\x79\x68\xbc\x65\xc7\x6f\x10\x7e\xa5\xf4\xf8\x42\x50\xc4\x27\x0f\xd3\xdf\xa4\x98\x6f\xb0\x65\xa5\x1c\xf3\x09\x9f\x7c\x50\xc4\x27\xe5\x93\xcf\x43\x03\xc9\xdd\xe1\x3c\x34\x90\x40\x50\x9d\x27\x0f\x53\xcc\xa4\x9d\x6f\xa7\x73\xa9\x81\x04\x62\xfa\xf5\x68\x20\x81\xdd\x8c\x21\xb8\xf5\x06\x82\xea\x3c\x09\x2d\xfd\x86\x97\x72\xe6\x8e\xde\x6d\xf6\x41\x8a\x99\xbb\x8d\xc3\x14\x33\x60\x37\x43\x5e\xed\x28\x10\xee\x36\x0e\xc3\xf7\xc0\x6e\x86\x6c\xc6\xef\x0f\x62\xf5\xd3\x6f\xd1\x0d\xfa\x71\x58\xdf\xdd\x61\x69\x5b\xe1\xba\x8f\x59\xfc\xa5\xd3\x8b\x81\xec\x3f\x05\xd1\x40\x02\x31\xfd\x16\x35\x90\xc7\x69\x19\x78\x7f\xea\x66\x19\x08\xf7\x2e\xc7\xf9\xfd\xb5\xc7\xda\xf3\x4c\xaf\x89\xdf\x80\x94\x21\x79\x68\x0c\x81\xdd\x8c\x91\x1a\x4a\x07\xa4\x0c\xc9\x43\x03\x29\x0f\x7f\xff\xf9\x01\xba\xa7\x06\xa4\x0c\x49\x79\xf8\xf3\xc0\x56\x75\xaa\x56\xe6\xa1\xad\x3a\x6e\x65\x43\x0e\x6d\x95\xf4\xf7\xfd\xc7\x36\x42\xfe\x7b\x21\xa6\x1d\xb8\x6d\x3d\xd2\x4e\x89\x93\x1c\xda\x2a\x20\x4c\x7d\x3e\xcc\xc1\x96\x12\xbf\x43\x2d\x92\x52\xe2\x0b\x31\x55\x04\xda\x2a\xb9\xee\x3b\x64\x20\x29\xd7\x7d\xc2\x6f\x2f\x9d\x49\x1e\x30\x2d\x08\xa5\x43\xb8\x91\x87\x39\xd8\x40\x4c\xf5\x85\x76\x09\xd8\xcd\x7c\xa6\x20\x24\x9d\x4c\x07\x6f\xd2\x89\xf4\xf7\xfd\x87\x35\x94\xff\x3e\xe1\xba\x0f\xf7\x7c\x72\xdd\xe7\xf1\x28\x1b\xa6\xe4\xd0\x56\x01\xe1\x36\xf0\xd0\x56\x1d\xaf\xeb\x0d\x97\xfd\x78\xbf\x67\x0c\x01\x2f\xf0\x30\x0c\x2d\x13\x7d\xff\xf9\xc9\x18\x73\x86\x76\x3e\x4c\xf2\x96\x76\x3e\xa5\x9d\xef\x70\x12\xa4\xb4\xf3\x42\xb8\xa9\x3c\xcd\x1d\x93\x89\xbe\x17\x3e\x71\x99\xe8\xf3\xdc\x7b\xd0\x30\x17\xfc\x84\x7b\x26\x4f\x36\x9a\xbd\xb0\xc8\x4f\x37\x9a\x27\xb9\x63\xd4\x39\xc9\xd3\xdc\x31\xa0\x74\xca\x3c\xe6\x69\x72\x35\x10\x14\x30\xc9\x53\xbb\x74\x5a\x1d\x98\x7b\xff\x79\x1a\x9b\x06\x82\x62\x3e\x79\x6a\xab\xa4\xbf\xef\x5c\x7f\x4e\xe9\xef\x05\x49\x65\x52\xfa\xfb\x3c\x2d\xd4\xcb\x4d\xfd\x3c\x55\xf8\x40\x98\x80\x7e\x7a\xae\x7c\x56\x47\xea\xe8\xdd\xc1\x01\x41\xcd\xf7\x3c\xdd\xc0\xc9\x3a\xdf\x8b\x82\xb8\x61\x81\x62\x3e\xa8\xf9\x93\x52\xcc\xe7\xd9\xfd\x6b\xb8\x29\xa7\xda\xf2\x54\x5b\xa2\x8e\x4f\xb5\xa5\x4c\xf4\xdd\x9b\xaa\x32\xd1\x0b\xe1\xbe\xf8\x74\xab\x23\xc5\x7c\xf7\x6e\xa9\x14\xf3\x09\xad\xbc\xbc\x38\x79\x7a\x9c\x0a\x94\xee\xfd\xcd\x13\x36\x47\x21\xcc\xa1\x3f\x3d\x61\x95\x4e\xbe\x7b\x7f\x53\x3e\x79\x21\x28\x0d\x94\xd2\xc9\xe7\x39\xec\x14\x15\x7d\xaa\xc9\x81\x98\xfd\x9f\x38\xf3\x3e\x8d\x9d\xca\x40\xdf\x0b\x66\x4e\x06\x7a\x21\xdc\xd2\x9f\x2a\x7a\xa9\xe5\xbb\x59\x40\x52\xcb\x0b\x41\x81\xa1\x94\x5a\x3e\xe5\x87\xef\x66\x01\x49\x10\x9f\x70\xc2\x87\x5b\xfb\xd3\x08\x28\x9c\xf0\xa5\x53\x53\x32\x4f\xc3\x9d\x40\x50\x8c\x26\xe5\x87\x4f\x38\xe1\x4b\x37\xbd\xe7\x74\xef\x02\x84\x11\x80\xd3\xb3\xd0\xf3\xb4\x53\x74\xdd\x69\x68\xf3\x3c\xed\x94\x99\x76\x03\x02\x94\x6e\x16\xd0\xe9\x0e\x04\x08\x8a\x0e\xe5\x69\xb4\xf3\x54\x83\x7b\x51\xee\x54\x83\x9f\x6a\x70\x8e\x78\x4f\x35\xb8\xcc\xee\x3d\xd0\x27\x52\xbb\x27\x34\xee\xe1\x9d\x03\x69\xdc\xf3\x54\x99\x7a\xd5\xe8\x54\x99\x9e\x2a\x53\x94\xd3\xa9\x32\x3d\x29\x1a\xd5\xbd\x43\x04\xf5\xfb\x06\xd6\xd9\xb4\x03\xd7\x19\x04\xf0\x3d\x50\x7f\x32\xc0\x0b\x61\xd8\xe1\xf4\xa8\xf2\x4c\x65\xb3\x07\x3d\xfa\x93\xc3\xc5\xe9\x42\xf6\x70\x51\x02\xf8\xee\x75\x1e\x19\xe0\x85\x98\x38\xd7\xa7\x6a\x18\xd8\xcd\x7c\xa6\xbc\x0b\x15\xe3\x7a\x57\x0d\x9f\xea\xdc\xf8\x9e\x29\xef\x42\x36\x34\xa2\x3c\xf1\x42\xe9\xf1\x3d\x73\xca\xd9\x1f\xc0\xe6\x94\xa7\xfb\x83\x53\xd5\xec\x3d\x9d\x53\xd5\x0c\xc4\xc4\x1d\x96\x27\x5e\xd8\xcd\x78\xf5\xaa\x6b\x40\xd2\xa7\x94\x27\x5e\xd8\xcd\xfc\xa9\xc3\x52\x83\xfb\x91\xa9\xc1\xa1\x90\xdf\xcd\xfc\xa9\xc3\x7a\xb0\x2e\x78\xcd\xd2\xc9\xa7\xdc\xf1\x3d\xbe\x67\x0e\xe1\x71\x08\x0c\xde\x7c\x40\xa0\x74\xaf\xcc\x9c\x9e\x72\x9e\x24\x32\x19\x39\x39\x4d\x64\x82\x2e\x7e\x37\x63\xf4\xc6\x2c\x4f\x62\x96\x94\x0b\xca\xd3\x98\xe5\xa9\xd9\xf0\xf6\xca\xa9\xd9\x00\x82\x72\x41\x79\x1a\xc6\x94\x62\xbe\x57\xbe\x53\x29\xe6\x85\xa0\x5c\x50\x5e\x9a\x0d\x29\xe6\x7b\x25\xe0\x27\xc5\x7c\x42\x2b\x1f\x06\x58\x2e\xf7\x29\x40\xe9\xb5\xf8\xd7\x6e\x9f\x31\x52\x5c\xb9\x4b\xb3\x71\x11\x9f\xec\xde\xed\xb8\xdc\x81\x00\x92\x65\xa5\xe4\xf4\x79\x69\x0f\xbc\x3f\x71\x69\x0f\x80\x38\x94\x43\x7b\x70\xc1\x61\xd9\x2b\x5f\xfd\x15\xdf\xb3\x93\x66\x8d\x47\xca\x86\x5b\xdc\x4d\xa2\x97\x01\x3e\x21\x7d\x97\x7a\x2b\x2f\xdd\xe2\x4b\x7b\x00\x41\x71\x5e\xda\x03\x20\xa8\xdc\x93\x97\xf1\xab\x4b\x7b\x60\xe2\xf0\xa5\x3d\x00\x82\xca\x3d\x79\x69\x0f\x64\x7b\xef\x95\xcf\x48\xb6\xf7\x84\xe1\x3d\xa8\xdc\x93\x97\x27\x63\x40\xe9\xa6\xd5\x5e\xa6\xdc\x5c\xd8\x03\x2f\xb1\x5c\xda\x03\x08\xde\x77\x33\x46\x6f\x4c\x0b\x08\x23\x4e\x97\x31\xad\x8b\x12\x1e\xdd\xe4\xb4\x4b\x45\x0b\xc4\x41\xc8\xf0\x32\xd3\x05\x4a\xf6\xd2\x4d\x42\xbc\xf4\x81\x81\x30\x30\x75\xe9\x02\x5f\x6a\x4b\x13\xfd\x2e\xb5\x25\x10\x87\x2f\xc6\x10\x8e\x0c\xe5\xdd\x9c\x2d\x29\xca\x13\x3a\xf2\xf0\x82\x8d\x74\xe4\x79\xa9\x06\x4d\x6b\xb9\x54\x83\x40\x78\xc1\xe6\x32\x0b\x58\xd6\xf2\x6e\x5a\x8b\xac\xe5\x42\x50\x6b\x27\x65\x2d\xcf\x4b\x67\xd1\x44\x94\x4b\x67\xf1\xe2\xdc\x83\xba\x3a\x79\x19\xc4\x00\x4a\x37\xd9\xe3\x32\x8a\x01\x84\xd1\xb0\x4b\x95\x07\xec\x66\xfc\xd4\x28\x06\x10\x14\xcc\xc9\x4b\x35\x78\xa9\x06\xcd\x09\xb9\x54\x83\x40\x1c\xf8\xbb\x97\x6a\x50\xaa\xf4\x6e\xea\x8f\x54\xe9\x09\x55\x7a\x18\x5b\x93\x2a\x3d\x2f\x15\x57\x43\x13\x5c\x2a\x2e\x20\x28\x98\x93\x97\x8a\xeb\x52\x87\x98\x3a\x72\xa9\x43\x00\xa8\xde\xfe\x68\xbc\x2f\x03\x1a\x17\xd9\x10\xbd\xbb\xe0\xcd\x86\x00\xc2\xd0\xdb\xa5\x17\x2a\x2f\x7b\xef\xb8\x75\xf2\xb2\xe7\xad\x06\x30\x71\xe0\x56\x03\x00\x92\xc8\xe5\x6d\xf4\x42\xaa\xf4\x6e\x02\x8a\x5c\xe9\x42\x50\xf5\x2b\xa5\x4a\xcf\x5b\x0d\xe0\x79\xf9\xad\x06\xb8\xd5\x00\x2c\xa0\x5b\x0d\x20\x7d\x7a\xef\xcd\xbf\x66\xa7\x6a\x00\x3c\x69\xe9\xd3\x53\x5e\xf4\xee\xd1\xb5\xbc\xe8\x09\x17\x7a\x50\x8a\x27\x6f\x8f\x1e\x6e\xea\x4e\x74\x0f\x9b\x6f\xf7\xd4\x80\xcc\x75\x79\xb7\xaf\x99\x9d\xb2\x0c\x64\x10\x4f\xd8\xc2\xa5\xa6\x4b\xd9\xc2\xf3\x56\x9f\xf4\xc3\x9f\xa6\xcf\x78\x23\x8a\x0b\xa9\x56\xde\xea\x93\x8e\x0a\xbf\xd5\x27\xb7\xfa\x84\xe8\xac\x6c\xe1\x29\x0d\x78\xf7\xd8\x49\x1a\xf0\x84\xfa\x5b\x06\xbb\xbc\x4d\xd7\xbb\x49\xd7\xeb\x1e\xe3\xdc\x06\xc4\x6f\xf5\x09\x0e\xf7\xad\x3e\x91\xf2\xbb\x7b\x3e\x23\xe7\xb7\x10\x94\xe2\xc9\xdb\x3c\xbc\x9b\xdd\x78\xf7\xce\xfc\xed\x6e\xfc\x9e\x76\x3a\x79\x64\xa7\x9c\xf1\xf6\xc1\xfe\xeb\xd6\xeb\x01\x82\x52\x3c\x79\xeb\xf4\x48\x84\xdd\x8d\x8a\xca\x84\x2d\xc8\xae\x97\xb7\xd9\xbf\x92\x4d\x77\xef\x09\xcb\x36\x2d\xc4\xe1\x8b\xd1\x63\xb8\x35\xc1\xee\xa9\x6f\x4d\x30\x10\x5e\x3c\xbb\x9f\xaf\x19\x26\xd8\xdd\xdc\xad\x09\x06\xc2\x8b\x67\xb7\x26\x18\xd8\xcd\x7c\xa6\x20\x9c\x2e\x7a\xf1\xec\xf6\x74\x51\x4e\xea\xee\x25\x5b\x49\xa9\x33\xdd\x0a\xe9\x71\xa7\x5b\x21\x38\xa3\xc3\xe8\xac\x9c\xd1\x29\x3f\x74\xd7\xe7\x93\x20\x5a\x08\xaa\xf9\xa4\xfc\xd0\x29\x19\x74\xf7\x02\xa9\x64\xd0\x42\x50\xcd\x27\xd3\x85\x0f\xff\xf3\x6e\x56\x79\x66\xa7\xc5\x4e\x4f\x1e\xd9\x29\xe4\xff\x5d\x87\x29\x0d\x9b\xe5\x5e\xec\x32\x15\x66\x4a\xe5\x20\x19\x74\xf7\xd4\x47\x32\xe8\x94\xe5\xf9\x18\x3e\xba\x7c\x64\xa7\xf8\x29\xe9\xc6\x0a\x08\x83\xb8\x12\x3f\x0b\xbb\x19\x82\xc4\x27\xc8\x43\x33\x7f\xf9\xfa\xc8\x09\x61\xe1\x4b\x06\x2d\x48\x8f\x98\x69\x70\x4d\x96\xe7\xee\xa9\x8f\x34\xce\x09\x75\x73\x50\x1b\x28\xd3\x64\x1a\x60\x37\xf3\xa7\xb7\xcf\xe8\x74\xfa\x4b\x3b\x6d\x4e\x2f\xde\x46\x7a\x0c\x26\x8d\xb3\x97\xf8\xa4\x71\xce\xf4\x13\xd7\x3f\x48\x3f\x71\x20\x0c\x30\xcb\xec\x9c\xd2\x38\x77\x4f\x7d\xa4\x71\x16\x82\x6a\x3e\x99\x7e\xe2\xa9\x2f\xa0\x45\x4f\x7d\x81\xec\x76\xea\x23\x3b\x25\x23\xb7\x6b\x5c\xd3\x8c\xdc\xf4\x13\xc7\x30\xa5\x9f\x78\xba\x37\xd4\xb8\xa6\x7b\x43\x20\xbc\x12\x98\x9e\x6f\xa5\x9f\xb8\xa7\x3e\xe9\x27\x9e\x7e\xe2\xb8\xa3\xe9\x27\x0e\xec\x66\x74\xea\xbd\x05\x20\x0c\x7e\xa7\x54\x0e\xa9\x67\xa1\x65\x4a\x3d\x8b\xd4\xb3\x70\x35\xe8\x59\xa4\x5b\x48\x4f\x7d\xd2\x2d\x24\x10\xd4\x06\xca\x74\x8f\x98\xd4\x8c\xe9\xea\xe8\x74\x43\x08\x84\xa1\xf4\xf4\xb4\x2c\xf5\x2c\xd4\xaa\x52\x3b\x27\x6c\xce\x71\xb8\x68\xdc\x87\xa5\xea\xc7\x13\x82\x54\xfd\xa4\xea\x07\x1f\x38\x55\x3f\xb2\x3d\xf7\xef\x3d\x1b\x0f\x03\xc2\xcb\x8f\x69\x38\x2c\x8d\x7d\x7d\x2f\xd0\xd8\x17\xd4\xcd\xe1\xe5\xc7\x34\x77\x04\x28\xfd\x9b\xcb\xcb\xf5\xc6\xe1\x10\xb5\x81\x32\x3d\x1c\x82\xb9\x79\x37\xe3\x99\xa7\x3e\xd2\x38\x1f\x2e\x41\x13\x50\x53\xd5\xf8\xc9\xab\x6a\x04\xe2\xfc\xfd\x99\x20\x35\x53\xcd\x29\x19\x74\xff\xe4\xd4\xc5\x02\x82\xd2\x41\x99\xde\x9b\x90\xe5\xb9\x43\x1b\x9a\xb2\x3c\x27\xcc\xce\x41\xe9\xa0\x4c\x73\x46\xd2\x2d\xe4\xe9\x37\xe0\x16\x12\x08\x4a\x07\x65\x1a\xa2\x03\x76\x33\x9f\x29\x08\x47\x4c\xa7\x9f\x85\xbb\xca\x74\x0b\xf9\x3d\xd3\x9f\x02\xe2\xc4\x6d\x4e\xdd\xa9\x54\xf9\x43\x42\x9a\xa9\xf2\x07\xc2\xd3\x13\xf9\xa1\x33\x9f\xaf\x19\x9d\xaa\xfc\x81\x38\xfd\xc8\x9e\xaf\x19\x13\x72\xb2\x43\x4f\x9d\x22\x20\x3c\x64\x49\xbd\x9e\x7c\x94\x8d\x70\x59\x9a\x0c\x02\x04\xf5\x8a\x32\x4d\x06\x91\xbe\xb9\x1b\xd3\x97\xbe\x59\x28\x9d\xc2\x1e\xb9\xdc\x0b\x01\xf2\xa8\xe6\xf2\x04\x68\xe9\x1c\x9d\xd8\x08\xb9\x9a\x53\x5e\x66\x8f\x71\xe4\x65\xce\xa5\x29\xa1\x78\x46\x2e\x4d\x09\x10\x8e\x74\x99\xbe\x21\x7d\x73\xf7\xaa\xa5\xf4\xcd\x42\x50\xea\x28\xa5\x6f\xce\xa5\x73\x64\x64\x7e\xe9\x1c\xad\x62\xa7\x3e\xb2\x53\xb2\x3b\x3b\xd5\x1d\x72\x99\xdd\x09\x84\x87\x42\x4b\xeb\x02\xec\x66\x08\x62\xc6\x27\x10\x1e\x0a\x2d\x2d\x8e\x64\xd0\xdd\x1b\x99\x92\x41\x0b\x52\xc1\xa6\x64\xd0\xb9\x42\xd9\xf0\xa1\x96\xf9\x19\x40\x50\x11\x29\x97\xdb\x34\x39\xa3\xfb\xc9\x57\x26\x67\xb4\x10\x54\x44\x4a\x39\xa3\x73\x55\xd7\x20\x3a\x66\x79\xb4\x02\x48\x2c\x9b\x4b\x1b\xb1\xd8\x6c\x0d\x8f\x03\x96\x9b\x2d\x20\x28\x9c\x94\x4b\x7f\x69\xa1\x60\xc7\x0f\x23\xbf\x54\xb0\x40\x78\x22\xb5\x54\xb0\xb2\x3c\x0f\x0a\x10\xa6\x2c\xcf\x42\x50\x38\x29\x65\x79\xce\x35\xec\xd4\x55\x63\xf0\x6d\x0d\xe7\x0d\x71\xbd\xa9\x0f\xec\x66\xfe\xf4\xf5\xd9\xde\x82\xb8\x7a\x97\xca\x14\xd8\xcd\xf8\xa9\xda\x14\x90\x1b\x37\x97\xa7\x2d\x0b\xc7\x6d\xc0\x65\x9e\x4b\xc7\x0d\x08\x0a\x27\xe5\xf2\x18\x05\xfe\xe7\x32\x7e\xae\x5e\xa3\x6b\x80\x14\xba\xb9\xbc\xc0\x09\xa3\x73\x19\x06\xc9\xa5\x74\x4e\xe9\x9b\x4f\xe7\xc8\x73\xfb\x75\xfa\xd7\x30\x56\x4b\x75\x0d\x04\x25\x8f\x52\xca\xe6\x94\x9f\x79\xfc\x70\x36\xe4\x67\x16\xc2\x0f\x50\x7e\xe6\x94\x9f\x79\xc0\xb2\x9c\xf2\x33\x27\x9c\xcc\xe1\x11\xdd\x32\x23\x10\x28\x03\x8a\xe2\x5c\x1e\xdc\x03\xf1\x7d\xa7\x6a\x70\x60\x37\x43\x5e\x8f\x2f\x80\xf0\x06\xf7\x52\xab\xcb\xf6\x3c\xe0\x08\x4d\xd9\x9e\x05\xe9\x7d\x53\xb6\xe7\x5c\x68\xd0\x01\x0d\x70\x2e\x35\x28\x10\x27\xce\xf8\x72\xf7\xb9\xd8\x7d\x0e\x03\xd1\xcb\xdd\x27\x10\x27\x3b\x91\xe5\x51\xc5\x42\x35\x8e\xe2\xaa\x51\x35\x2e\x55\x23\x3e\xfb\x52\x35\x2e\x8e\xae\x47\x71\x39\xe8\xb6\x02\xe1\xf1\xa1\xcc\xce\xb9\x1e\x3b\xc5\xbb\x5d\xea\xbc\xa5\xce\x73\x6d\xa9\xf3\x64\x7b\x1e\x45\x8d\xa4\xce\x93\xed\xf9\x74\x6d\xa9\xf3\xa4\x71\x1e\xde\x1a\x95\xc6\x39\xa1\x6e\x0e\x0f\x23\x97\xc1\x24\xa0\x0c\x2f\x92\x2e\xef\xb6\x01\x71\xe2\xb3\x2f\xe3\x4b\xc0\x6e\x86\x20\x06\x98\x00\xf9\x8e\x73\x79\x54\x21\x29\xf4\x80\xcc\x32\x25\x85\x4e\xd8\x9e\xcb\x80\xb9\x32\xa5\x7b\x16\xe4\x40\x4e\xd9\x9e\xf3\xf9\x29\x2f\xca\xec\x51\xd1\x02\x41\x89\xa6\x7c\xdc\x85\xca\x00\x3d\xa4\x78\x94\x01\x5a\x08\x35\xf9\xa3\xa2\x95\xda\x79\x48\xca\x28\xb5\xb3\x10\x6a\x72\xa9\x9d\xf3\x21\x01\x6e\x14\x3c\xa1\xc7\x2d\xe7\xa3\xa2\xed\xf3\xcf\xd6\xfb\x51\x0f\xc3\xf2\x5c\x06\xfc\xa5\x29\xcd\x73\x3e\x6c\x52\x29\xf4\x94\x8f\x9b\xd4\x27\x94\x09\xeb\xfd\xa8\x60\x1f\x15\x2c\x81\xf3\x47\x05\xfb\x84\x13\x81\x97\xf1\xa8\x60\x1f\x15\xec\xb0\x03\xc5\xc4\x09\x1f\x81\x7f\xf0\xe8\x84\x3f\x1c\x67\x6b\x84\x1e\x8f\xb3\x81\xdd\x8c\xbf\x66\x02\x1c\x10\x1a\xa1\xc7\xe3\x13\xa0\x0c\x2f\xe3\x3e\x9e\x9f\x00\x41\x69\xa6\x7c\x4c\x80\x83\xe5\x79\x37\x43\x10\xf7\xb2\x30\x3b\x87\xb4\x00\x8f\x8e\xee\xa3\xba\x96\x29\x4d\x9a\x67\x21\x4e\x57\x86\xea\xfa\x21\x36\x36\x64\x4a\x7b\x8c\x8d\xc9\xfc\x2c\x7b\x80\xcc\xcf\x29\xa5\xf3\x88\xe6\x33\x3b\xe5\x72\x3f\x55\x92\x52\xfa\x66\xa1\x8c\x70\x19\x98\xef\x05\x84\x06\xf2\x51\x83\x03\xbb\x19\xf2\x7a\x7e\xf2\xa8\xd5\xa7\xbf\x64\x25\xc3\xe2\xbc\x9b\x21\x9b\x87\x21\x52\x3a\x6b\x20\xa5\x74\xce\x47\x75\x2d\xcd\xd8\xa3\xba\x7e\x54\xd7\xb8\xa1\x8f\xea\x1a\xb2\xe7\xdd\x8c\x1e\x3c\x33\x01\x82\x92\x48\xf9\x18\xca\x93\xd2\x79\x18\xfb\x97\xd2\x39\xa1\x71\x8e\xd3\x85\x6c\x5a\x18\x50\x46\x28\xaf\x69\x61\x40\x68\x95\x1f\xed\x01\xb0\x9b\x21\xaf\x06\x01\x08\x4a\x22\xe5\xe3\x09\x0c\x64\xcf\xbb\x19\x23\xf5\x68\x45\xe6\x67\x2a\x42\xa7\xcc\xcf\xf9\x68\x4a\x8c\xaf\x3f\x9a\x12\x20\xa8\x9c\x94\x8f\xa7\xde\x12\x44\x0f\x03\xe7\x12\x44\x0b\x71\xfa\x91\x69\x4a\x9e\xd3\x4e\xb1\xfb\x8f\x2e\xfd\x73\xd9\xa9\x8f\xec\xf4\x72\xf5\xa2\xd5\x1f\xf3\xbd\x1e\x4d\x09\xfb\x88\x47\x53\xf2\x5c\x4e\x2f\xfe\xfb\x63\xbe\xd7\x83\x4b\x4f\x81\xa5\x7c\x74\xe9\x1f\x0a\x75\x8d\xea\x27\x63\x38\x12\x90\xf1\x3c\x1f\x0f\x6a\x20\x7b\x2e\x43\x9e\x9d\x47\x17\x55\xe6\x67\x93\x1b\x64\x7e\xce\x47\xad\x2e\xcd\xc7\xa3\x56\x7f\xd4\xea\x6c\x65\x1f\xb5\xfa\x03\xc7\xc9\x90\xe6\xe3\x91\xe3\x44\x82\x68\x73\x20\x24\x88\xce\xe7\xb5\x53\xd4\xf5\x63\xfc\xee\x79\xfb\xbf\xfe\x45\xfe\xf4\x7c\x3c\x32\x06\xca\x90\x71\xe3\x91\xa9\xe4\xd9\x5a\xbd\x52\x87\x29\x1f\xb5\xba\x74\xd3\x43\xc6\x0d\xe9\xa6\x13\x6a\x69\xf9\xd3\x53\x6a\xe9\x7c\x55\xcd\x95\xfd\xd7\xab\x6a\x06\xe4\x4f\xcf\x57\xd5\x2c\x03\xf5\x30\xd4\x2d\x03\xb5\x50\xa9\xa0\x94\xaf\xaa\xf9\xfd\xd9\x29\x0b\xff\xd5\xb9\x7d\x0b\x9d\xa2\x56\x5e\xcf\x82\x81\x32\xe4\x7c\x78\xcd\x5b\x02\xa4\x59\xcf\x57\x6d\x0d\xec\x66\xc8\xab\xba\x06\x2a\x85\x96\xf2\x35\xd3\x19\x8e\xea\xdd\x8c\x91\xea\xf0\x02\xf5\x47\xe0\xfc\xd5\xdf\x7d\x55\xd1\xb2\x34\xbc\xaa\x68\xa0\x52\x8f\x29\x5f\x23\x2c\xaf\x2a\x5a\xfa\x85\x57\x15\x0d\x54\xd3\x38\x5e\x55\xf4\x1b\x76\xca\x0b\x7c\x75\x6e\xdf\xed\xd0\x4a\x01\x9f\xaf\xa1\x13\xa0\x0c\x99\x05\x5e\x63\x27\x6f\x75\x42\xf8\xa5\x2a\xfa\x25\x4e\x32\xbc\xc2\xfd\x1a\x27\x01\x2a\x85\x96\xf2\xd5\x2d\x7e\x89\x45\x0c\x2f\xf9\xbf\xc6\x22\xe0\xb5\x96\x29\x3e\xe5\xb5\xce\x57\x15\xed\x35\xe9\x57\x15\x0d\xc8\x14\x9f\x6f\xff\xfe\xda\x6d\x33\x7a\x50\x45\x03\xd5\xdc\x91\x57\x15\xfd\xea\x2a\x37\x34\xf9\xab\xab\xfc\x0e\x3b\x45\x5c\xe3\x0e\x40\x19\x0d\x5f\xe0\x35\xf0\x00\xd4\x1f\xa1\xee\x57\xad\x0d\xec\x66\xc8\x6b\xe0\x01\xa8\xd4\x63\xca\x57\x4d\xfe\x12\x8b\x18\x0d\xbb\xff\xea\x3e\xbf\x93\x79\xc3\x55\x7e\x75\x95\x5f\x55\xb4\x57\x92\x5f\x55\x34\x50\x7f\xb5\xfe\xd9\x78\xbf\x46\x2f\x5e\x35\xb8\x37\x96\x5f\x35\x38\x50\xdd\x46\xbc\x6a\xf0\x77\x2a\x13\x1a\xfc\x35\x21\x09\x90\x32\x3f\x5f\xef\xfd\xbc\x64\x1a\x0d\x6f\xe3\xbe\x1e\xb3\x00\x52\xe6\xe7\xab\x06\x7f\x0f\x67\x7f\xfa\xcc\xd9\x3f\x98\x7d\x3c\xe9\xd7\x53\xef\x97\xa4\x9f\xe1\xb1\xc5\x6b\x94\x03\xa8\xd4\x88\xca\x57\x2d\xf9\x12\xf8\x18\x5e\xc9\x7c\x75\x9b\x81\x2a\xd3\xcd\xab\xd7\x2c\x95\xf9\xf0\x76\xa4\x54\xe6\x42\x75\x8b\x23\x95\x79\xbe\xba\xc8\xde\x71\x7c\x75\x91\x81\x2a\x21\x8e\xec\xe6\x09\x35\x78\x19\xde\xb2\x93\x1b\x3c\xe1\x01\x97\xf5\x3f\xe5\x01\xcf\x57\x65\xea\x75\xa6\x57\x65\x0a\x54\x89\x71\x5e\xf7\xfb\xaf\xca\xd4\x7b\x4a\xaf\xca\x14\xa8\x12\xe3\xbc\x2a\xd3\x57\xdf\xd7\x0b\x48\xaf\xbe\xef\xfb\xda\xa9\x8f\xec\x14\x72\xc3\xe1\x25\x9f\x57\x72\x43\xa0\xba\xfd\x7a\xd5\xaf\xc0\x6e\x86\x20\x1e\x90\xbc\xea\x5c\x7c\x8d\x57\x9d\xfb\x72\xde\x3a\xba\xea\x4f\x7f\x18\xa8\xb2\xf1\xbc\xba\xc3\x32\x9e\x0f\xae\xe5\x2c\x19\xcf\x85\x4a\xfe\xd4\xfa\x11\x63\x58\x3f\x75\x2e\xf7\x6d\xd6\x0f\x9d\x2b\x54\x48\x7b\xd6\x0f\x9d\xbb\x7e\x24\xd6\x0c\x2e\xd2\xac\x5f\xf1\xa7\x2a\xd3\xfd\xf5\xac\x1f\xca\x74\xfd\x8a\xf3\xb6\x35\xd1\xfa\x11\x29\x10\x2a\x45\xa8\xd6\x0f\x9f\x76\xfd\xa0\xfe\x1b\x30\xed\xae\x1f\x5b\x6f\xa1\xb2\x83\x5c\x3f\x14\xd6\xfa\x91\x58\x33\x46\xf0\xac\x2a\x5b\x65\x42\xb6\xbb\xb4\x7e\x78\x81\xeb\xa7\xc2\x22\xdb\x7e\xfd\xaa\x9d\xaa\xb0\xb6\xbf\xbb\x7e\xd5\x4e\x49\x91\x1c\xa4\xd1\x2f\xe9\xde\x85\x4a\x11\xaa\x25\xdd\xfb\xfa\x35\x3b\xad\xf4\xd0\xec\xb4\xd1\xe9\xfe\xb2\xd7\xaf\xd9\x29\x05\x61\xc7\x68\xfc\x35\x0a\xc2\x0a\x95\xea\x52\xeb\xd7\x94\x83\x32\x7e\x63\x34\x46\xdf\x14\xa4\xa1\x62\x86\xbf\xbc\x7c\xf4\xda\x8c\x91\x76\x5f\x56\xe7\x65\x0d\x7e\xd9\x9d\x71\x75\xee\xf0\x05\x76\x65\xeb\xbc\xac\xe1\x2f\x7d\x59\xea\xdc\xe1\x94\x77\x05\x51\xe7\x0e\x46\xd5\x95\xc3\xf0\xc4\xe8\xbc\xd3\x61\xa7\xc3\x4e\x7d\x64\xa7\xc6\x1d\x86\x82\x0c\xe7\x6d\xf0\xb2\x06\xd3\x3b\x7c\x59\x6a\x49\x72\xa9\xd7\x6f\xfa\xd7\x26\x7f\x6d\x32\x6f\xd3\xbf\xa6\x96\x24\x49\x7a\xfd\xa6\x43\x50\x4b\x4e\x46\x35\x1d\x82\x1e\x2a\x57\xe5\xd6\x6f\xda\xe9\xa4\xd3\xc9\xf4\x4e\x3b\x85\xfa\x6f\x0c\x97\xe5\x61\x0f\x07\xcb\x72\x22\xee\xe1\xb2\x34\x04\xc0\x1d\xb8\x25\xa1\xfc\x82\x3c\xbe\xfe\x14\xf7\xf2\x9d\xaa\xb8\xc8\x39\x5c\xbf\xcb\x79\x53\x71\x29\xee\xe5\xbc\xe9\xde\x91\x73\xb8\xe4\x98\x17\x2a\x89\x78\x0b\xbe\xf9\xbf\x2e\xf8\xe2\x77\x33\x16\xd7\x6d\xa7\xb7\x9d\xfa\xc8\x4e\xe1\xcd\x1b\xd3\xf5\x76\xbb\x90\x6e\x16\x92\x9f\xee\xad\x1c\xf0\xe6\x0d\x32\xf1\xd6\xef\x56\x90\x9b\x85\x74\x30\x21\xb7\x0b\x89\x53\xef\x31\x2b\x82\xa4\x6f\x21\x99\x90\x83\xf5\x96\x4e\x88\x4a\x75\xba\x2c\x53\xd9\x54\xaa\x07\x13\x92\xbe\x85\x74\x42\x1a\xb2\xa5\x82\xa4\x9d\xfa\xc8\x4e\x8d\x3b\x90\xed\xb6\x24\x8f\x5f\x10\xc6\x57\x8a\x51\xad\xdf\xb2\x53\x8e\xb3\xc7\xf4\x13\xe7\x38\x7b\xfd\x16\x13\xe2\x8b\x59\x4e\xc8\x72\x7a\xfd\xc4\x97\xd3\xbb\x78\xf5\x27\x43\x58\xbe\x7a\x15\xfe\xf4\x6b\x7b\xec\xf4\x61\xbd\x9d\x74\xf0\xb8\x1a\x54\xf8\xd3\xd5\xfb\x38\x52\x15\xfe\x49\x07\x8f\x23\x35\xd8\x31\x5d\xf8\x8f\x9d\x3e\x76\xfa\xe7\x9d\xf7\xfa\x3d\xca\x44\x62\xcd\x98\xae\x3d\x12\x6b\xd6\x4f\x7b\xa0\x46\x7c\x9d\x08\x63\x21\xd3\xb5\xf7\x3a\xad\x1b\x2a\x49\x95\x4b\x1e\xf9\x25\x69\xfc\x98\x2c\x03\x49\xe3\x57\xa1\xf4\xf8\x20\x9d\x67\x15\x82\x0b\x42\xa5\xf8\xd3\x2a\x9c\x11\xae\xe2\x6e\xfc\xf8\xf1\xd3\xea\x4f\x71\xf5\xc8\xc7\x5c\x32\x9e\xaf\xa2\x82\xe5\xf8\x64\x15\x15\x2c\x60\x9d\x99\x05\x23\xfa\x86\x69\xb3\xc9\xb3\xc3\x67\xca\xeb\xa3\xd3\x47\x27\xcd\xb6\xf5\x5e\xb2\xa0\x0b\x96\xa3\x59\x30\xa2\x6f\x50\xb6\x86\x6c\x4d\xd9\x9a\xb2\x9d\x3c\x52\x36\xea\xa4\x0e\x8e\x91\x57\xa1\x4e\xea\x2a\xe8\x61\x8a\x3f\xad\xa2\x1e\x86\xe4\x7c\x37\x43\x10\x4e\xce\x16\x8c\xe7\x16\xb7\x59\x32\x9e\xaf\xa2\x82\xe5\xa8\x76\x15\x15\x2c\x50\x4b\xa1\x03\x15\xac\xc4\xe8\x83\xf3\xd6\x25\x31\xba\x50\x29\xfe\xb4\x8a\x0a\x56\xc6\xf3\xc1\x41\xea\x92\xf1\x7c\xc1\x72\x5e\x4b\xf1\x91\x9d\x1a\x50\xe0\xfe\xca\x2a\x04\x14\x84\x4a\x24\x6f\x15\x75\x2e\xb0\x9b\x21\x88\x4a\x17\xa8\x14\x7f\x5a\x65\x38\x21\xc6\x1d\x38\xfa\x5c\x65\xf8\x16\x06\x6f\x61\xfb\xe5\x0b\x92\xf4\x0d\xca\x36\x19\xa9\xea\x1a\xa8\x25\x7c\xe4\xa2\x99\x5f\x33\x3a\x55\xc1\x02\x95\x1a\x51\xab\x4c\x9b\x19\x02\x38\x4e\x04\x39\x9c\x90\x83\x09\xc1\x2a\x4b\x82\xbe\x8a\xf1\xdf\xe3\x64\xf4\x87\xb2\x1d\xca\x46\x07\x87\xb2\xb9\xcd\x3e\x5d\x96\x97\xa3\xbf\x1c\x29\xa3\xba\x1c\xa9\xea\xfa\x54\x10\xd5\x35\x50\x0b\xca\x54\x06\xf1\x25\x5d\xf8\x38\xed\x41\x75\x0d\x54\x42\x9b\xab\xa8\xae\xe5\x01\x1f\xa7\x3f\xbd\xed\xf4\xa6\x53\x3c\x86\x72\xdb\x29\xb5\x3e\x06\x11\xe6\x55\x6e\xd7\xdb\x06\x2b\x22\xad\xa2\x06\x07\x76\x33\xe4\xbd\x15\x04\xad\x4e\x45\xa4\x55\xd4\xea\xe5\x3e\x6d\xc6\x84\xa8\x9b\x81\x5a\xfc\xd8\x6e\xbf\x05\x0e\xda\x06\x31\xe1\x05\x13\xf9\x07\xb5\x7c\x72\xf8\x16\xd4\xea\xc4\x84\x57\x51\xab\x03\xb5\x28\x47\xba\x68\x96\x13\xe2\x27\xb3\x9c\x90\xe5\x84\x20\xc7\x72\x42\xdc\xdb\x13\xd4\x5a\x12\x6b\x0b\x95\x14\xe6\x55\x5e\x47\xa5\x96\x22\xc8\xb0\x8a\x5a\xaa\xa8\xa5\xfc\xc2\xdf\xef\xaf\x29\x1b\x0a\x4e\xae\xed\x15\x14\x19\x9d\x6c\xee\x57\x90\xe8\x2d\xd4\xc2\x57\x1f\x6c\xda\x85\x32\xd9\x40\xaf\x60\xd7\x2e\x54\xf8\x11\x57\x70\x98\xb5\x20\xd1\xde\xcd\xf6\xfc\xca\xa2\x2d\x54\xf8\x11\x97\x24\xda\x0b\x8a\xe9\x32\x29\x1a\xbc\xe4\x98\x5e\xf0\x49\xd7\x82\x99\x93\x4f\x7a\xc1\x1d\x5d\x26\xe7\x23\x4b\xf2\x68\xa1\x92\x99\xbd\xe4\x8e\x5e\x12\x45\x4f\x3c\xef\x25\x51\xb4\x50\xcb\xf7\xcb\xee\x23\x3b\xc5\x57\x0e\x9d\xca\xa8\x76\x7a\xf0\xc8\x4e\x37\xec\x66\xfe\xb5\xd7\x67\x68\x82\x8e\xb8\xaa\x41\xa0\x4c\x1d\xcd\x68\x0a\xa2\x6a\xc4\xe5\x0b\x55\xa3\xec\xd4\x13\x1e\xcc\x25\x3b\xb5\x50\x8b\x72\xe8\x67\x46\x57\x36\x14\x46\xa8\xa5\x80\x4a\x4c\x7f\x05\x7b\xea\x15\xc3\x91\x62\xd1\x61\x8d\xfe\x80\xaa\x5c\xfb\xff\x8e\x74\x3a\x6f\xd8\x60\x99\x97\x17\x2c\xcb\x96\xdd\x5a\xb2\x2c\xaf\x40\x61\x4c\x15\x5c\xa8\x30\x42\x85\x81\x9f\x19\x2a\x0c\xc9\x98\xa7\x9a\x4b\x32\x66\xa1\x52\xb1\x6b\x85\x0a\x43\x32\xe6\xa9\xae\x91\x8c\x79\x41\xc0\x5c\x8b\x53\x79\xda\x29\x04\x53\x93\x0a\x72\x2b\x4e\x7b\x38\xf9\x28\xc7\x9f\x4f\xbd\x57\x70\xec\xb4\xe0\x65\xde\x7f\xc5\xce\x9c\xaf\x93\xf9\x1a\xfe\x61\xe7\xeb\x54\x26\x57\xb2\x4a\x0c\xa8\x05\x97\x3e\x2e\xdf\xdb\xe5\x44\xb8\xf6\x54\x62\xa1\x12\x1b\x3e\x52\xcc\xcb\x4e\x5d\x54\x3a\x93\x40\xa5\xee\xd7\x0a\x9d\xc9\xb8\x59\x19\xdf\x1b\xb9\xed\x41\x25\x86\xd9\x08\x95\x18\x84\xcb\xbb\x19\x73\xa8\xe7\x08\xbb\x72\x2d\xae\x02\x35\x51\xdc\x76\xaa\x20\xaa\x9d\x50\xed\xa0\x14\xe2\xfe\x3a\x7d\x6c\x66\x0f\xae\x5a\xd5\x0e\x2e\x7d\xa8\x76\x80\xdd\x8c\x4e\x75\x30\x81\x4a\x41\xaf\x15\x90\x4e\xac\x48\x65\xb3\x07\x9d\xc9\xc0\x99\xe4\xae\xc3\x0a\x9d\x49\xa0\x4c\x0e\x5e\x56\x90\x36\x2e\x54\xee\x3a\xac\x48\xc5\x5d\x4e\xaf\xcf\x96\xd3\xbb\x98\x5e\x4c\x5a\x2c\xa7\x77\xd9\x29\xce\x6f\xa8\x12\x43\x95\x88\x4b\x1f\xaa\x44\xe9\xa6\x67\xf1\x1b\x58\x5f\x0f\x4c\x08\x2e\x3d\xd4\xd3\x7f\x5d\x50\x47\xef\x66\x0c\x41\x67\x12\xee\xe8\x4a\x55\xae\x15\x8f\x0b\xe9\x71\x85\xa0\x39\x65\x83\x5e\x30\x3f\x57\x28\x4d\x97\xcc\xcf\x2b\xd0\xc3\x33\xd4\x92\xea\xe1\x50\x0f\x2b\xae\x7a\x58\xe6\xe7\x49\x81\xa5\x25\xf3\xb3\x50\xa9\xca\xb5\x42\x3d\x2c\xa5\xf3\xe4\x2c\x64\x49\xe9\xbc\xa0\x71\xae\xdc\xea\x58\x95\x18\xab\xb0\x9b\x1d\x3c\xab\x3e\xc3\xcc\xb1\x89\xaa\x86\x00\x80\xdd\xec\xe4\x59\xf7\x19\x23\x3d\xfc\xe5\xf0\x11\xf3\xc6\x3d\x88\x25\xf3\xf3\x82\xed\xd9\x22\x7b\xab\x72\x53\x47\xd8\xcd\xf6\x48\xab\x1a\xbc\xaa\xc1\xcf\xe0\x51\xf1\x91\x13\x82\x2f\x50\x8b\x82\x14\x26\x04\xad\x03\x59\xf4\x07\x65\x72\x5d\x62\x49\x1a\x2d\x58\x8b\x6f\x41\x20\xbd\x41\xd9\x30\xf2\x12\x44\x2f\x48\xa1\x6b\x61\x83\x50\xc9\x33\x10\x76\x33\x65\x53\xde\x60\xde\x4e\xe4\x08\xe7\x2d\x9c\x90\xea\x33\x05\xd9\x50\xb9\x79\xb2\xe4\x91\x5e\xf2\x48\x4f\x0a\x06\x2d\x79\xa4\x17\x3c\xd2\x16\x00\x5c\xf2\x48\xaf\xaa\xad\x0a\xcc\x5c\xd5\x56\x01\x95\x1a\x5f\xab\x1a\x13\xa9\xda\x2a\x2a\x01\xad\xaa\xad\x02\xac\x13\xb8\xaa\xb6\xaa\xd6\xaf\x53\x64\xd3\x3f\xaf\xd5\x4e\x19\xa9\xbe\x38\x50\x26\xd5\x76\x56\xd5\x19\xaf\xd8\x2a\x6e\xc5\xac\xaa\xad\xaa\xcd\xb7\x80\x56\xaf\x06\x40\xe0\xb8\xae\x1c\xc7\x2d\x39\xae\x97\x0c\xd0\x93\xfa\x38\x4b\x06\xe8\x05\x03\x74\x8d\xc2\xa8\xdc\xa1\x57\xcd\x06\x85\x0e\x56\xd5\x6c\x00\x35\xb0\xe7\xd5\x4d\xbb\x44\xd1\x93\x0c\xfc\x25\x51\xb4\x50\xe3\xfb\xa5\x33\x4e\xa0\x72\x56\xd7\xdb\x61\xa7\x87\x9d\xf2\xfe\x0e\x3b\x85\xbe\x70\x56\x17\xd2\xe1\x3b\xc5\x6c\x7c\xeb\x5e\xb3\x51\x39\x1c\x9a\x35\x7c\xe6\xbc\x9d\xcc\x1b\x8e\x77\x3d\x9d\x37\xed\x02\xf4\xb0\xab\x6a\x17\x80\xca\xc5\x9e\x55\xb5\x0b\x55\xbb\x50\x5d\x48\xda\x05\xa0\x52\x6e\x6b\x55\xed\x42\xbd\xec\x14\x57\xab\xea\xb5\xd6\xcb\x4e\x19\xe9\x65\xa7\xa4\x85\xcd\xda\xfc\x6b\xbe\xac\x0d\xf5\xfb\x3c\x34\x15\xc0\x6e\xe6\x33\x05\xb9\x98\x10\x47\x75\x39\x21\xb7\xd3\x8b\x4f\x52\xf5\x64\x81\x1a\xb8\xc5\x55\x47\xb6\x6a\x3e\xaa\x2b\x44\xf3\x01\xd4\xef\x63\x33\xee\x50\x35\x1f\x9c\x21\xad\xaa\xf9\x00\xea\xf7\xb1\x69\x3e\x6a\xda\x29\xde\x4c\x35\xc8\x50\x93\x85\x84\xa1\xae\xe9\x42\xd2\x2e\x70\x38\xb4\xaa\x76\xa1\x62\x17\xa2\xfe\xb9\x2a\xe8\xaa\x9a\x8d\x9a\xce\x3e\xd6\xa5\x1a\x83\x00\xea\xf7\x65\x2f\x67\x5f\x7b\xc0\xd9\xd1\x92\xf4\x5b\xa8\xdf\x97\xad\x3d\x80\xb9\xbb\x4c\xae\x49\x2c\xa9\xbb\x85\x1a\x78\xd2\x32\x77\x0b\x65\xc2\xba\xbb\xa4\xee\x16\x6a\xf8\x7a\x35\x11\xf5\x71\xbe\xd8\x44\x55\x83\x0b\xd0\x74\xd7\x4f\x4f\x18\x3d\xa8\x9a\x0d\x8e\x71\x56\xd5\x6c\x00\xf5\xd3\x13\xaf\x72\x68\x36\x9a\xfa\x44\xb3\x01\x54\x0a\x8b\xad\xaa\xd9\xa8\x84\x89\x67\x53\x51\xbc\x76\xfa\xda\xa9\x8f\xec\x14\xe2\xe0\xd9\x34\x1b\xaf\x9f\xca\x86\x1a\x2c\x3d\x09\xbe\x85\xdd\x2c\x78\x56\x7c\xc6\x84\xb0\xf4\x9a\xd6\x45\x1e\xf0\xc9\xa1\xd0\x92\x07\x5c\xa8\xc1\xd2\x93\x07\x7c\x35\x52\xc0\x26\xb4\xc9\xab\x71\x24\x26\x54\x4e\xd5\x57\x53\x35\x37\x22\x05\x13\x8a\xdb\xd5\x74\x91\x81\x4a\x99\xb2\xd5\xf4\x90\x9b\x0a\x0b\x2e\xd1\xd5\x54\x58\x40\x0d\xbc\xe6\x06\x23\xcd\x6a\xba\xc3\x1c\x72\xac\xa6\x3b\x0c\x54\xaa\x99\xad\xa6\x3b\xdc\xba\x9d\xf2\x16\x9a\x3b\x74\xa0\x52\xcd\x6c\x35\x37\xe8\x32\x77\x4f\x0e\x39\x96\xcc\xdd\x42\x55\xbf\x36\xbd\x66\xe8\xb7\x77\xb3\xce\x33\x7b\x20\x78\xaa\x7e\x6d\x06\x4f\x81\x32\xbb\xf3\x46\xd2\x96\x50\x49\x0c\x58\xcd\x78\x6a\xe3\x70\x68\x52\x04\x73\xc1\xcf\xbd\x81\x4f\x85\x6f\x51\x4a\xee\xd5\x54\xcd\x30\x34\xae\xa6\x6a\x06\x2a\xd4\xe0\xab\xb9\xb7\x6f\xd3\x4e\xc3\xbf\x66\xa7\xaa\x66\x3e\x59\x99\xbb\x85\xdd\x0c\x41\xf4\xf2\x81\x0a\x83\xf8\x6a\xdc\x73\x5f\x4d\x8f\x1e\x86\xc6\xd5\xf4\xe8\xdb\x81\x6c\xb8\xc5\xed\x50\x36\x2e\xb5\xcf\x5e\xfd\xe9\xed\x33\xf4\x1a\xfe\x6e\x53\xa9\x03\xbb\x99\x3f\x55\x5e\x15\xfd\x50\x0e\xe7\xed\xf4\x2d\xa0\x9a\x65\x15\x17\x2a\xb5\xd1\x96\xac\xe2\xab\x91\xb4\x35\xa1\x39\x5c\xcd\xb0\x40\x53\xe7\xe2\xb4\x36\x75\x6e\x4b\xe7\xcd\xd1\xeb\x67\x02\x15\x12\xf4\xd5\x52\x39\x54\x35\xd0\x2d\xae\xa6\xaa\x69\xaa\x1a\xdc\xe2\xa6\xaa\x69\x7a\xa8\x94\x3a\x5c\x4d\x0f\x15\xa8\x5c\x7f\x5c\x4d\x0f\xb5\xe9\x7a\x72\xd1\x62\x35\x5d\x4f\xa0\x42\xa9\xbe\x9a\xae\x67\xa3\xbe\xc0\x84\x74\x6a\xb5\xe5\xcb\x5a\xac\x10\xd7\xbd\x11\xd0\xc6\xc1\xd5\xe4\xa2\xc5\x82\xd7\xfc\x83\x4a\x09\xb5\x25\xbb\xf9\x6a\x6a\x24\xa8\x98\x56\x53\x23\x01\x95\x2c\x8e\xd5\x1e\x3b\x55\x23\xc1\xb1\xb4\x64\x3c\x17\x6a\xf8\x15\xa9\x91\xa4\x32\x9f\x94\x13\x5c\x52\x99\x0b\x95\x2c\x8e\x25\x95\xf9\x82\xb6\xbc\x4c\xc8\x93\x96\xbc\xe5\x42\xe5\x6a\xe6\x6a\x2a\x29\x60\x37\x63\xf4\xaf\x82\xa8\xb8\x70\xb2\x9b\x8a\xab\xe9\xef\x7a\x9c\x23\xbd\xf9\xea\x1c\x66\x4d\x28\x90\x56\xd7\x93\x05\x2a\xb7\x3a\x57\xd7\x91\xed\x6a\x29\xb8\x8d\x56\x57\x4b\x75\xb5\x14\xfe\x79\x57\x4b\xc9\x8c\x3e\xe1\x36\x5a\x32\xa3\x0b\x95\xea\x6b\x4b\x66\xf4\x25\xe5\xf9\xf4\xec\x46\xca\xf3\x05\xcd\x79\x25\x39\x65\x75\x3d\x54\xa0\x4c\xb8\x15\x57\xd7\x45\x05\x2a\xc9\x29\xab\x7b\x5a\xd6\x0d\x28\xc0\x46\xb4\xe4\x10\x5f\x5d\x27\x8d\xcd\x89\x84\xe0\xab\xab\x1a\xb9\xdb\xb2\xba\xaa\xb1\xab\x1a\xf1\xcf\xbb\xaa\x51\xde\xf0\x09\xdb\xc9\x92\x37\x5c\xa8\xf1\xfd\xd2\x09\x69\x76\xca\x8a\x96\x10\x7c\x75\x82\xa8\x54\x5f\x5b\xdd\x20\x2a\x50\xe6\xfc\xf9\xd7\x5e\x9f\xb1\x06\x71\xe3\xbb\x71\x55\x60\x37\xfb\x73\x65\xb1\xd5\x8d\xbb\x02\x96\xab\x5e\xd0\x8e\x6f\x98\xfe\x15\x9f\x39\x39\x9d\x6f\x56\x31\xc9\xed\x5a\x5d\xad\x0e\x5b\xc7\xea\x6a\xf5\xae\x56\x67\xfb\x25\xd3\xf8\x92\x56\x7c\x4e\xcc\x9c\xb4\xe2\x42\xa5\xd4\xc0\xea\x6a\x75\x28\xc4\x77\x33\x7a\x50\x85\x03\x95\xeb\xad\xab\x0f\xdf\xe5\x50\xb6\xe2\x33\x65\x1b\xca\x86\x1c\x43\xd9\x48\x01\x9b\xf0\x6b\xac\x4e\x0a\x98\x50\xab\x53\x68\x74\xb6\x6b\x23\xe0\xd7\x58\x5d\x1b\x01\x54\x52\x83\x56\xd7\x46\x40\x38\xbe\x9b\xf1\xcc\x93\x33\xd8\xc7\x6b\x75\x8e\xa6\xb2\x69\x23\xe0\xb0\x58\x5d\x1b\x01\xd4\x8a\x11\xea\xd3\xc5\xad\x8d\x80\x69\x70\x49\x52\x2e\x54\x8a\xb4\xad\xae\x8d\x90\x7d\x7c\x4e\xbf\x32\xfd\x72\x18\xc7\x2b\x45\xda\x16\xb4\xe3\x1f\x94\x09\xb3\xc3\x92\x7d\x7c\x75\x94\x7f\xf5\xc5\xa8\xfc\xbb\xe1\x1c\x58\x05\x97\x1c\xe2\x42\xa5\xac\xda\x92\x42\x7c\xf5\xcb\xb7\x80\x67\xd1\x8d\x93\x00\x56\x2a\x5f\xdd\xe3\xba\xae\xe3\xe8\x99\x4d\xd7\x71\xec\x38\x8e\xd5\xf7\xa7\x67\x28\x3d\xf6\xf4\x2c\x44\x7a\x6c\xa1\x52\x56\x6d\x49\x8f\xbd\xe4\xbd\x9e\x87\x73\xa9\x56\x07\xaa\x9b\x92\xae\x56\x07\x76\x33\x7e\xea\xc1\x16\x50\xab\xab\xc1\x73\x2d\x79\xaf\xe7\xe1\x24\xe9\x67\xc2\x75\x6d\x15\xf5\xd5\x97\xb2\x51\x28\x79\x1e\x8e\x7e\xb9\x42\x16\x2b\xc4\xd5\xa0\x3d\x00\x76\x33\x65\x53\x5e\x8e\xc4\xaa\xab\xc1\x23\xb1\x6e\x78\xe2\x70\xf4\xfa\x9e\xf0\x5e\x57\xca\xaa\x2d\x79\xaf\x57\xd7\x46\x1c\x2e\x4b\x6d\x04\x50\x29\xab\xb6\xba\x36\x42\x7a\xec\x79\xd8\x83\x36\x02\xa8\x94\x55\x5b\x5d\x1b\x21\xef\xf5\x3c\xfc\xa9\xee\x28\x24\xd7\xd5\xed\x97\x1c\xd7\x42\x99\x5c\xe1\x5c\x10\x5e\x7f\x50\x29\xab\xb6\xe4\xbd\x16\x76\x33\xe4\xd5\x6e\x00\xb5\xba\x52\x5f\xe7\x4d\xe5\xcf\x15\xce\x25\x17\xf6\x82\x0b\xdb\x7a\xf1\x4b\x2e\xec\x35\xb4\x07\x9e\x48\x0d\xed\x01\x60\xbd\xf8\x25\x3d\xf6\x1a\xda\x03\xae\x49\xae\xa1\x3d\x00\xac\x17\xbf\xa4\xcc\x5e\x72\x61\x4f\xee\x3f\x2e\xb9\xb0\x17\xfc\xd7\x95\xb2\x6a\x6b\x98\x03\x01\x94\xc9\xe5\xc1\x35\x48\x28\x5b\x03\x7b\x50\xd9\x62\x0c\xed\xc1\x30\x3c\xe1\x89\xd4\x30\x3c\x01\xd4\xaa\xb8\xba\xc5\xa3\xd8\x29\x8e\xdb\x08\x3b\x25\x53\x8c\x7a\x69\x6b\x90\x29\xb6\xa4\xcc\x9e\x10\xaf\x2d\x29\xb3\x85\x5a\x1d\x95\x11\x0b\xe8\xaf\x77\x33\xe4\x35\xc8\x00\xd4\xca\xde\x61\x18\x23\x1f\x06\x14\x3c\x43\x92\x8b\x7a\xc1\x3b\x5d\x29\xab\xb6\xe4\x9d\x5e\x43\x5b\x05\x07\xda\x92\x64\x5a\xa8\x6e\x5b\x87\x19\x15\xf2\x4e\x4f\x6e\x38\x2d\x79\xa7\x85\xea\xb6\x75\x68\xab\xe0\x98\xde\xcd\x0e\x9e\x29\x2f\x71\x07\xb7\xad\xc3\xb8\x83\xbc\xd3\x93\x1b\x4e\x4b\xde\xe9\x05\xd7\x74\xad\xec\x1d\x86\x19\x15\xc0\x6e\x86\xbc\x90\x4d\x0a\x95\xea\x6b\x6b\x68\xe5\x80\xdd\x4c\xd9\x94\x17\xcb\x57\x7d\x7f\x5a\xbe\xa1\x49\xe3\x46\xd6\x1a\xda\x2c\xa0\x56\xdf\x9f\x36\x0b\xe2\xea\xdd\x0c\x41\x3c\x3e\x84\xc5\xba\xba\xa5\x96\xc5\x7a\x0d\x4d\x9b\xc7\x60\x43\xd3\x06\xd4\xda\xed\xc0\xf5\xa6\x69\xe3\x2e\xd5\x92\xec\x5a\xa8\xee\xbc\x87\xa6\x6d\x90\xec\x36\xb9\x10\xb5\x06\xc9\x6e\x42\xa5\x48\xdb\x1a\xda\x27\xa0\x4c\x2e\xf6\xac\xe1\x59\x21\x50\xab\x6b\x4b\x9b\x05\xb1\xf5\x6e\xf6\x4f\x9c\x7a\x4b\x7c\xbd\x20\xb9\xae\x6e\xf3\x25\xb9\x5e\x43\x5b\xc5\xdd\x9a\x35\xb4\x55\x40\xad\xae\x50\xb3\x3c\x06\x7c\x59\x93\x4b\x33\x6b\xb8\x8f\x00\x6a\x65\xcf\x30\x34\x38\x40\x99\x50\xa5\xad\x71\x7c\x3f\x65\x5a\x89\x60\x0f\x8d\xd0\x30\x38\x74\xfa\xf9\xb8\x8f\x80\x96\xba\x56\xd7\xbb\x7b\x86\xa1\x11\xf2\x94\x6c\x68\x84\x86\x46\x08\x4b\x32\x34\x42\xb2\x57\xcf\xd3\xb5\xe7\xd6\x02\xa8\x75\xf8\x48\x39\x20\x65\x99\xa7\x8b\xca\x48\x10\x50\x0d\x45\x8c\xd3\x4e\xa1\xd5\x9a\xa7\x53\x0d\xad\x96\x50\xe1\x7f\x58\xc3\x78\x11\x50\xe6\xe9\x5c\x1a\x30\x02\x2a\xf5\xe5\xd6\xf0\x80\x74\x18\x43\x22\x01\x7f\x49\x55\x2d\x54\x68\x22\x96\x4c\xd5\x6b\x78\xb6\x70\x3a\x2c\x03\x46\x40\xad\x7e\xd9\xc6\x8b\x64\xaf\x9e\xa7\x82\x78\x40\x0a\x54\xca\xd0\xad\xe1\x71\x03\x4c\xd4\xbb\x19\x3f\x35\x12\x04\x54\xa3\x29\xc3\xb3\x05\xa0\xcc\x13\x4f\x5a\xaa\x6a\xa1\x52\x67\x6e\x0d\xe3\x45\xc3\xe0\x10\x19\xe2\x4b\x0e\xea\x05\xdf\x74\xa5\xce\xdc\x92\x6f\x7a\x0d\x6d\x3c\xe9\xd5\x6b\x68\xe3\x81\x4a\x9d\xb9\x35\x52\x39\xb4\xf1\xa7\x4a\x21\xbf\x1e\x18\xe9\xe1\x2f\x1d\xe9\x72\x7a\xfd\xda\x35\xe8\x40\xad\x8a\xab\x3d\x97\x96\x7a\x7a\xa4\x29\x2d\xb5\x50\x0d\x08\x49\x4b\xbd\x06\x94\x5f\xc7\xcf\xcf\x78\xf9\xe1\x2d\x3e\x3c\x35\xa2\x66\x1f\xd8\xcd\x7c\xa6\xbc\xba\x02\xc4\xef\x87\xae\x80\xec\xd5\xc7\x8f\x78\x8d\xec\xd5\x42\xad\x2a\x4e\xa3\x50\x03\x1b\x7f\x90\xc2\xbc\x86\x36\x1e\xa8\xa4\x26\xaf\x61\x3e\x8b\x24\xd7\x87\x47\xab\x92\x5c\x0b\x95\xd4\xe4\x35\xb4\xf1\xb2\x57\x1f\x3f\x95\x82\x1b\x3c\xa0\x56\xd5\xb0\x1b\xbc\x41\x66\xe2\xf1\xf3\x73\x36\xbe\x34\xb4\xf1\x6c\x23\x86\x36\x7e\x10\x72\x3a\x48\xc5\x5d\xc3\xdd\x1c\xec\xd5\xd5\x08\x99\xec\xd5\x4b\xf6\xea\xe3\x87\x09\x96\xbd\x5a\xa8\x95\xf7\x37\x0d\x2f\x49\x68\x7d\x90\xcf\xba\x24\xb4\x16\x2a\x69\xd3\x6b\x6a\xbc\x27\x99\x89\x07\x19\xa8\x6b\x7a\x90\x30\xb5\xca\xe8\xfe\xa9\x55\x86\x6e\xba\x1c\xa4\x48\x2e\xf9\xa6\x17\xdc\xd2\xb5\xb2\x1a\xe4\x96\x5e\xb3\x38\x04\xf4\xf0\xd4\x2a\x4f\xad\x32\xfb\x84\xa9\x55\x96\x82\xfa\x30\xbf\x50\x0a\x6a\xa1\x52\xc8\x6e\x4d\xad\xb2\xe4\xd1\x87\x07\xb5\x92\x47\x2f\x08\xa3\xab\x41\xbe\xe9\x69\x00\xb0\x9b\xf9\xd3\xdb\x67\xfb\x93\x31\xc8\x37\x3d\x20\x00\x76\x33\x7f\xaa\x20\x18\x6f\x2a\xd4\xad\xa9\xf1\x86\x4f\xba\x1c\x66\xdd\x49\x28\xbd\x20\x8f\xae\x54\xa8\x5b\x92\x47\x2f\x88\xa2\x77\x33\x46\xaa\x8d\x07\x2a\x15\xea\xd6\x34\xa9\x47\xf2\xe8\xc3\xcc\x36\xc9\xa3\x85\x4a\x1e\xf9\x9a\xda\x78\x59\xa1\x0f\x53\xd6\x64\x85\x16\x2a\x79\xe4\x4b\x56\xe8\x35\x9b\x9f\x0c\x8b\x6b\x9a\x35\x09\x54\x0a\xd9\xad\xa9\x3d\x07\xca\x61\x5a\xd8\xf4\x34\x1b\xa8\x70\xc8\x2c\xf9\xa4\x17\x0c\xd0\xbb\x19\x9d\xba\xf9\x84\xf5\xb9\x52\x58\x6c\x4d\xad\xf2\xec\xca\xe6\x0b\xd4\x2a\x03\xd5\x70\xe6\x34\xa9\x07\xd8\xcd\xe8\x41\x4b\x0d\x61\x74\x35\x9c\x39\xdd\x70\xca\x0a\x7d\x14\xe2\x35\xb2\x42\x2f\x98\xa0\x2b\x65\xca\xd6\x34\x5b\x07\xd8\xcd\x98\x24\x18\xd5\x84\x6a\xd4\x73\x1a\x32\x04\x76\x33\x7f\xaa\x20\x6c\x38\x5b\xd8\x81\x72\x60\xbc\x0f\xf3\xa8\x24\x94\x16\x2a\x35\xe5\xd6\xd4\x78\xc3\x27\x5d\x8e\x52\xfe\x89\x43\x6f\xf9\xa6\x85\x4a\xc9\xb9\x35\xdd\x7b\xce\xe1\x08\x1d\xb5\x36\x1e\xa8\x94\x9c\x5b\xd3\x4c\x4e\x99\xaa\x0f\xf3\xa7\x64\xaa\x16\x2a\x25\xe7\xd6\xd4\xc6\x4b\x41\x7d\x14\x47\xed\x46\x73\x72\x4e\x44\x19\xba\x35\x3d\x27\x9a\x64\x72\x1e\xa6\x0b\x4d\x23\x8f\x40\xa5\x0c\xdd\x9a\x06\x1e\x61\x9d\xde\xcd\xf8\x6b\x46\x19\xe7\xe1\x44\x30\x37\x6e\x34\x61\xa2\x2e\x87\x47\xf9\x53\x57\x00\xa8\x54\x7f\x5b\xd3\x88\xa2\x14\xd4\x87\x49\x34\x52\x50\x0b\x95\xfa\x72\x6b\xea\x0a\xcc\xd3\x4e\x71\x2c\xa6\xe7\x44\x10\x49\xd7\xc6\x76\x46\x1e\x69\x61\x37\xf3\xaf\xf9\x19\x9f\x7c\xc6\x6c\x23\xa6\x47\x47\xc0\x6e\x86\xbc\x7a\x0c\x40\x6d\x8a\xab\xc7\x00\x9d\xf4\x6e\x76\xfe\xcb\x5f\x5f\x69\x16\x85\xc6\x8c\xbf\xd2\x2c\x0a\x15\x32\xe1\xf7\x64\xd7\x23\x4c\xf2\xb2\x5f\x58\x18\x3f\xa8\x5c\x4d\x78\xe5\x62\x14\xe6\xf9\xf3\x51\xf7\xd1\x5e\x78\x30\x63\xbd\x50\x35\x7e\x50\xcf\xef\xd1\xf4\xd1\xfe\x5e\x71\x9f\xde\x93\xcd\x92\xf0\xbf\x1e\x9d\x3e\xda\xf3\x03\xd7\xea\x7b\x92\xc7\x23\x34\x92\xae\x5e\x68\x1f\x3f\x68\xb8\x19\xaf\xe4\x8f\x42\xe3\x3a\xe9\x0b\x11\xe4\x5f\xdf\x73\x6f\xa2\x1a\x5e\xc6\x7b\x16\xa5\xdf\xd0\x0f\xa5\x2f\x4a\xbf\x35\x7c\xc3\x42\xbf\x72\x3a\xbe\xe7\xd6\xd6\x96\x58\x7c\x4f\xce\x14\xde\x73\x6b\x69\xab\x1d\xbe\x67\x38\x85\x1b\x1a\x1a\xf9\x3d\xc3\x29\xdc\xd0\xd0\x97\xef\x19\x4e\xe1\xde\x4d\x35\x94\xde\x7b\x86\x3d\x6e\x1d\xdd\x50\x49\xaf\xf4\x90\x2f\x94\x90\x8d\x4f\xfc\x3d\xe3\xeb\xf1\xd9\x8f\xc2\x1e\x5f\x1f\xbd\xff\xfa\x97\x46\x25\xa7\xf7\xac\xbe\xda\x5a\x78\x44\x8f\x55\x21\xb6\x86\x6e\x54\x6d\x7a\xcf\xea\x80\xf6\xc6\xab\x75\xff\x56\x75\x0a\xf7\x4e\xca\xe2\x5f\xef\xd9\x1c\xd0\x56\xc6\xad\x57\xe6\xab\x39\x5f\x5b\xff\x36\xe8\x8d\xde\xb3\xf9\x6a\xb7\x92\xb5\xfa\xd5\x7b\x36\x5f\xda\x86\xd6\x3b\xb3\xda\x7c\x69\x8d\x1e\x07\x3d\xb6\xaf\xc7\x87\x47\xcc\x44\x73\x40\x1d\x21\x26\x7f\xbe\x2b\x44\x67\x40\x93\x56\xdd\x01\x6d\x0d\x6b\x29\xa0\xf7\xec\x0a\xb1\x15\x6c\x1b\x4e\x61\xb7\xc7\x0d\x8d\x68\xca\x7b\x76\x7b\xdc\xd0\x48\x89\x7b\xcf\xee\x44\x6f\xf8\xc7\x02\xe8\x2e\x93\x0d\x8d\x1c\xb6\xf7\xec\xce\xfd\x86\x46\x92\xc1\x0b\x15\xe6\x07\x8d\x74\x98\x57\x42\x4c\xa1\x91\xac\xf2\x42\x8e\xf9\x41\xa7\x0c\xd0\x2b\x47\xa6\x30\xbe\xf7\x38\x5c\x13\x1b\x3a\xb9\x59\xaf\x14\x99\x42\x83\x7b\xe0\x3d\x87\xcb\x64\xc3\xec\x0e\x68\x38\xec\x0d\x9d\x3c\xf0\xf7\x1c\x7e\x56\x1b\x7a\x71\x26\x86\x6f\x7b\x83\x21\xff\xf7\x1c\xbe\xa1\x0d\x9d\xdb\x1a\xef\x39\x9c\xaf\x0d\xbd\x7e\x03\x72\xbe\x36\x4c\x32\xbe\x5f\x69\x3a\x85\xce\xee\xeb\x95\xa6\x53\xe8\xed\x60\x01\x0c\xe7\x6b\xc3\xc0\xa3\x7d\x61\xf1\xfc\xa0\x7f\xaa\x63\x3a\x5f\x1b\x64\xcb\x7b\x25\xeb\x14\xe6\x4f\xe9\xa7\xf3\xb5\x61\xb2\xbd\x79\xe1\xf2\xfc\xa0\x7f\xca\x6a\x3a\x5f\x93\x0f\x59\x0d\x30\x9d\xaf\x39\xf9\x60\x90\x6b\x3a\x13\xf3\xe2\x91\x7f\xde\x31\x4e\xbe\x34\x17\xf9\x54\xfa\xc9\x97\xe6\x02\x98\x4a\xbf\xcd\x8a\x75\x33\xdf\xf3\x50\xd4\x0d\x96\x2f\x7e\xcf\x43\x51\x0f\x3e\xf7\x86\x10\x87\xa2\x6e\x68\x14\xba\x7c\xcf\x43\x51\xf7\x96\xb3\x35\x15\xf2\xe1\x7b\xdc\xd0\x9a\xaa\xf6\xf0\x3d\x6e\x33\x63\x35\xcc\x57\xb6\x50\xa1\xb5\xf1\x3f\x6e\x81\x9d\xed\x7f\x1a\xe5\xf7\x3c\x1c\xc8\xc1\xb2\x75\xce\x0f\x07\x72\x32\x90\xc1\x9f\x3d\x1d\xc8\xc9\x40\x06\x2f\xeb\x74\x20\x27\x4a\x6a\x30\xc1\xa7\xb3\xb9\xa1\x15\x5f\xfc\xa9\xd4\x27\x13\xec\xd7\x7a\x3a\xc1\x1b\x5a\xf3\x35\x9c\x2e\xb5\x0d\x56\xb1\x7c\x25\x2a\x7d\x21\x25\x6d\x4d\x45\x7c\xba\xae\x4e\xc6\xe6\x2b\x3d\x95\x7e\xc3\xf8\xa6\xee\x54\xfa\x0b\xe9\x0f\x7a\xbc\x94\x7e\xc3\x3f\xd6\xd5\xa5\xf4\x17\xaf\xc1\x65\x7b\xf9\x1a\x36\x34\x12\xeb\xde\xf3\xf2\x35\x6c\xb0\xd4\xf4\x7b\x5e\x8e\xf1\xe2\xcd\xb8\x92\x2f\xc7\x78\x31\xa0\x03\x21\x2e\x07\x74\x31\xa0\x53\x21\x1c\xd0\x75\xfd\x6f\x65\x70\xb9\xae\x2e\x06\x74\xda\xa3\x03\xda\x30\xe7\x27\xd7\x37\xa0\x97\x56\xfc\xf0\xf6\xab\xb8\x19\xa3\x66\xe4\x76\x8c\xf7\x16\xb5\xfb\x39\xdd\x8a\x7a\xa3\x88\x35\x23\xb7\xa2\xde\x28\x62\x4d\xe5\xad\xa8\x1b\xfa\xfc\xfe\xbc\xa2\xee\x7d\xb3\x55\x08\xdf\xf3\x76\x5d\xdd\x28\xbc\x83\x29\xbc\x15\xf5\x46\x37\xbb\xfa\x6e\x45\xdd\xf0\x0f\x4d\x99\x8a\x9a\xe8\x66\x6d\x6c\x3a\xf7\x89\xcd\xf0\x75\xa4\x13\x9d\x48\xef\xdc\xa7\xd2\x6f\x98\xdc\x89\x7e\x61\x86\xfd\x60\x90\x5b\xfe\xca\x0f\x2b\x58\xbe\xef\x85\x2b\xf6\x83\x56\x9c\xc2\x74\x8c\x89\xb1\x51\x07\xa6\x63\xdc\xdb\xf8\xd6\x5d\x26\xe9\xfa\x4a\x86\xad\xc2\x4b\x87\xbd\xc1\x7a\x7e\xef\x99\x0e\x3b\x19\xf6\x27\x97\xc3\x4e\xf4\xbc\x3f\x5c\x0e\x7b\x31\xc6\x93\x31\x2e\xc7\xb8\xf7\xf0\x96\xc4\x7b\xa5\x8b\x7d\xa1\x86\xb5\xfc\xdd\x2b\x35\xac\xf0\x0f\x6b\xb0\x94\x6b\x43\x1b\x7a\x08\x4b\xb9\x36\xb4\x51\xec\x51\xb9\x36\xb4\xa1\xc3\xb6\x94\x6b\x83\xa5\xe9\x5e\xe9\x63\x85\x7e\x6a\x76\x1f\x57\xce\xb3\x3f\x05\x0e\x5e\x5f\xa9\x62\x85\x56\x5c\xd1\x8f\xd2\x6f\x68\x43\x4d\xf9\xf8\x86\x1e\x6c\x6c\xd8\xca\x37\xb4\xa1\x0d\x95\xe7\xe3\x18\x1f\xcc\x6e\x65\x40\x8f\x73\xbf\xa1\x0d\x6d\xec\xe3\xb0\x1f\x5c\x31\x67\xf5\x71\x8c\x0f\x63\xac\x3e\x72\x8c\xef\x5e\xf7\x14\xaa\x7b\x61\x91\xdd\x80\x10\xea\xd3\x57\x21\x5e\x84\x70\x8c\xaf\x42\xbc\x08\xa1\xf2\x7c\x15\xe2\xc5\x96\xb9\xc8\x5f\x85\xd8\x30\x9a\x0e\xdb\xeb\xdc\x6f\x90\x89\xef\x95\x5d\x56\xe8\x53\x95\xf6\x7e\x72\x69\xfb\x7d\xe4\xdc\x6f\x18\x10\x65\xbe\x52\xd0\x0a\x63\x7c\x8f\x8a\x8f\xf6\xd7\xc1\x61\xf3\x7b\xe9\x52\x03\x53\xd7\xe2\xd2\xa5\x06\x1a\xd9\x2f\xef\xa5\x4b\x0d\x34\x12\x14\xde\x4b\x97\x1a\x68\x44\xf4\xdf\x4b\x97\x1a\x98\x1d\x6f\xe3\xd2\xa5\x06\x3a\xbb\xe2\x57\xce\x5b\xc1\x63\xcd\xf7\xd2\xa5\x06\x2a\x75\xfd\x5e\x69\x70\x85\xea\x44\xcb\x82\x2b\x54\xf8\x57\xdf\xd7\x01\xbd\xd4\x82\xc4\x85\x7b\xd9\xc1\x0b\x90\xa9\xbf\x2f\x1b\xf8\x97\x0b\xd6\x15\xe7\xe6\xd5\x77\x02\xd8\x04\xbe\xde\xa7\x7d\xb9\x4f\x4b\xce\xfd\xeb\x75\x5a\x81\xac\xcb\xf7\x75\x95\x02\xc4\xa7\x5f\xef\xd2\x0a\x05\x37\xf3\x75\x41\x02\x35\xfe\x4f\x73\xb8\xff\xff\xef\xd7\xdf\xfe\xe5\xff\xfe\x7f\xae\xbf\xfd\xbf\xd7\xbf\x3f\x7f\xc9\xff\xfe\xfb\xdf\x9f\xff\xf8\xaf\xf5\x6f\xf9\x5f\x7f\xf9\xbf\xf6\xd3\xbf\xac\xe7\xfd\xb7\xff\x78\xfe\xfe\xfc\x7f\xff\xf9\xdf\x7f\xcf\xe7\x2f\x7f\xfb\xcf\xbf\xed\x5f\xf1\xef\xff\x0f\x00\x00\xff\xff\x0a\xdc\xcd\xda\xad\x7f\x02\x00"); -func _bfgf ()(*asset ,error ){_agga ,_edca :=_acdd ();if _edca !=nil {return nil ,_edca ;};_aace :=bindataFileInfo {_ag :"Adobe-KR-UCS2",_bc :201011,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490603,0)};_aacec :=&asset {_cd :_agga ,_dce :_aace };return _aacec ,nil ; -};func _bfgd ()(*asset ,error ){_fca ,_gfd :=_fcb ();if _gfd !=nil {return nil ,_gfd ;};_fde :=bindataFileInfo {_ag :"Adobe-GB1-0",_bc :1052,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491245,0)};_aea :=&asset {_cd :_fca ,_dce :_fde };return _aea ,nil ; -};var _gcd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd4\x51\x6b\xdb\x3e\x14\x05\xf0\xf7\x7c\x0a\x3d\xf6\xff\xd0\x7f\x2c\x4b\xb2\x24\x18\x85\xd1\x3c\x2c\x1d\x5d\x47\xb3\x76\x83\xb1\x07\x4b\x96\x83\x61\x71\x8c\xe3\x0c\xfa\xed\xc7\x3d\x27\xcb\xf6\x50\x6e\xfb\x8b\x74\x39\x57\x4a\xb5\xbe\xdf\x6e\xb6\xe3\xb0\xa8\xf5\xe7\xf9\x98\x77\x65\x51\xfd\x30\x76\x73\x39\x1d\xcf\x73\x2e\x2a\x95\xfd\x30\xae\x56\xba\x56\xdd\x90\x97\x3f\x7f\xa2\xe4\x43\x3b\xad\x56\xeb\x58\x4d\xbf\x6e\x9f\x3f\xee\x1e\x6e\x3f\xa8\xf3\xa9\x5c\xf4\x7e\xbb\xd9\xbd\x9d\x96\x72\xd8\x8e\xfd\x51\x19\xee\xee\xce\xd3\xa5\x83\x52\xeb\xe7\xb2\x1f\x4e\xcb\xfc\xa6\x6e\xde\x77\xc7\x54\xfe\x53\x5d\xe9\xc5\x9f\xe6\xae\xcc\xc3\xb8\x57\x37\x0f\xed\xd4\x8e\xfa\xfa\xc1\xee\x3c\x4d\x3f\xcb\xa1\x8c\x8b\xd2\xb0\x32\x76\xa8\xab\xf5\xfd\x63\x3b\x7d\x6a\x0f\x45\xfd\x93\xe6\x15\x9f\xe1\xa3\xd7\x32\x9f\x86\xe3\xa8\x74\xf5\x7f\x55\x35\x7f\xfd\xcb\xdb\x54\x2e\xbd\x56\xeb\x97\xed\xe6\xa9\xef\x4f\x65\x51\xd1\x56\x5c\xf3\xed\x65\xbb\x51\xdf\xb5\xd2\x95\xaa\x9d\xb1\xf5\x8f\xcb\xd2\xaf\x8f\xc7\xee\xba\xd1\x69\xce\x94\x87\x6e\x6e\xc7\x7d\x59\xbd\x0b\xda\xea\x3b\x25\xa5\xbe\x53\x3e\x04\x2f\xe4\x2a\x90\xd3\xa0\x08\x4a\xa4\x4e\x28\x6a\xa1\x86\xab\x1a\x0b\xb2\xa0\x08\xf2\x2d\x08\x1b\x03\xdb\x4b\xf1\x51\x4b\xfb\x3a\xf6\x42\x28\x3e\xea\x20\xd4\x62\x15\x8a\x8f\x3a\x82\x0c\xc9\x08\xd5\x15\xc8\x91\x1c\x48\x83\x3c\xc9\x83\x6a\xa1\xcc\x5e\x19\xbd\x6a\x23\x54\x48\x85\x64\x41\x6c\x5f\xd8\xde\x81\xd8\xbe\xb0\x7d\x03\xca\xa4\x0c\x92\xf4\xc6\x62\x6c\x14\x1f\xeb\x00\xaa\x49\x35\x28\x82\x2c\x49\x0e\x27\x9a\x0a\xd4\x90\x1a\x90\x06\x05\x52\x00\x49\x7a\xd3\xb0\x57\x83\x5e\x46\xd2\x9b\x80\xa8\x28\x3e\x1a\x0b\x72\x24\x44\x35\x0e\xe4\x49\x38\x09\xd3\x80\x0a\xa9\x80\x90\x3e\x72\x63\x64\x08\x49\xef\x79\x1d\x9e\xd7\x61\x25\xaa\x6f\x31\x23\x4a\x30\x18\xc8\xf3\x86\x3c\x6f\xc8\x1a\x50\x4d\x42\x54\xab\x41\x86\x64\x64\xa3\x61\x2f\x4b\x72\x20\x6e\x6c\x48\x1e\xe4\x41\x81\x84\x93\xb0\xa4\x48\x6a\xb1\x8a\x21\x12\x29\x61\x95\x03\x65\x12\x6e\xc8\x62\xa0\xb6\x23\xc9\x77\x35\x3a\x0b\x2a\xa4\x5e\x7a\x31\x7d\xe2\x8c\x09\xf7\xe8\x10\x35\x71\xc6\x54\x63\x15\x42\x24\x0e\x94\x70\xf6\x0e\x33\x26\x0e\x24\x25\x18\x8b\x5c\xc9\x91\x70\x1d\x8e\xed\x19\x42\x4a\x30\x97\xf6\x0c\x21\x25\x98\xcb\x2a\x9e\x7d\x42\x2e\x27\x97\xe6\x33\x73\x65\x9c\xbd\xc3\x40\xfc\x46\xa3\x04\xe3\x90\xab\x6f\x41\x7d\xc6\x0d\x59\x79\x5f\xae\xff\xd4\xf2\xbb\xbc\x6c\xd7\x97\x26\x9f\xe7\xb9\x8c\x0b\xde\x35\x3c\x26\xf2\x1a\x0c\x63\xb9\xbe\x9c\xd3\x71\x92\x5d\xf8\xf9\x1d\x00\x00\xff\xff\xd7\xe6\x99\xe2\x65\x05\x00\x00"); -func _fdec ()(*asset ,error ){_abbc ,_dff :=_cga ();if _dff !=nil {return nil ,_dff ;};_fbe :=bindataFileInfo {_ag :"Adobe-KR-5",_bc :1333,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491432,0)};_ecb :=&asset {_cd :_abbc ,_dce :_fbe };return _ecb ,nil ; -};func _eged ()([]byte ,error ){return _dc (_gcfc ,"GBKp-EUC-H")};func _cdgb ()(*asset ,error ){_dfa ,_gdba :=_fff ();if _gdba !=nil {return nil ,_gdba ;};_bda :=bindataFileInfo {_ag :"Adobe-CNS1-3",_bc :1881,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491185,0)}; -_ddc :=&asset {_cd :_dfa ,_dce :_bda };return _ddc ,nil ;};func _dacd ()(*asset ,error ){_bedf ,_cged :=_beab ();if _cged !=nil {return nil ,_cged ;};_fbg :=bindataFileInfo {_ag :"UniAKR-UTF16-H",_bc :184302,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492659,0)}; -_geeea :=&asset {_cd :_bedf ,_dce :_fbg };return _geeea ,nil ;};func _ffcf ()([]byte ,error ){return _dc (_dfeb ,"UniJIS2004-UTF16-V")};func _fcgf ()([]byte ,error ){return _dc (_edgd ,"HKscs-B5-V")};var _ccfa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x49\xef\x6e\xbb\x95\x9f\x37\xd7\xa7\x38\x43\x67\xe0\xd4\xe6\xde\xec\x16\x20\x08\x70\x57\x88\x61\x38\x09\xdc\x24\x63\xf2\x6d\x2a\x02\x52\x57\x82\x4a\x1e\xf8\xdb\x07\xe4\xf3\xf0\x94\x13\x04\x38\xba\x93\x7b\x7e\x7f\xee\x97\xed\x6a\xc9\xb5\xc8\xbf\xfb\x37\xff\xfe\xdf\xfe\xfb\xdf\xfe\xf8\xd7\x1f\x7f\xf7\xbf\xff\xe5\x4f\xaf\xff\xfc\xf9\xeb\x8f\xef\x1f\x7f\x7b\xff\xe5\xf3\x4f\x7f\xfa\x6f\x7f\x79\x7d\x7e\xcc\xcf\x3f\xfc\xf1\xb7\xdf\xfd\x2e\xdd\x3f\xde\x7f\x7c\xfd\xf5\xc0\xfd\xbf\xd7\x3f\x8e\x3f\xff\xee\x77\xeb\xf7\xff\xf9\xbf\xff\xd3\x5f\x3f\xff\xf8\xef\x7f\xfb\xfe\xe9\xc7\xc3\x77\xef\xff\xf6\x67\xbf\xfd\xf1\xe3\xef\xfe\xd3\xe7\x1f\xfe\xf8\x4f\x7f\xfd\xcb\x7f\xff\xf1\x2f\xfe\xd5\xfb\x4f\xf3\xf3\x3f\xfd\x78\x7f\xbe\xeb\xef\xff\xdb\x5f\xde\x9f\xbf\xfc\xf1\xb7\x7f\xf8\xf1\x2f\xfe\xc3\x7f\xfa\xf9\xc7\xff\xfc\xdf\xfe\xfc\xe7\xff\xfb\xf3\x8f\x9f\xdf\xfe\xfa\x23\xf6\xdf\x3e\xbf\xbd\xf7\xff\x7f\xf7\x77\xff\xe6\x3f\x8e\x3f\xff\xaf\xe3\x1f\x3f\x3f\xfe\xee\xbf\xfe\xf6\xc7\x7f\xf5\x1f\xfe\xd3\xbf\xfc\xaf\xff\xe5\xef\xfb\xbf\xfc\x5f\x76\xe9\x2e\xfc\x3f\x3e\x7f\xf9\xa7\x3f\xfe\xe9\xb7\x1f\xe9\x7f\xbe\xae\xfb\x9f\xff\xfc\x5f\xfe\xfb\x9f\x3f\x3f\x92\x95\xfc\x9f\xff\xf1\x4f\xef\xcf\x8f\x0b\x94\xe9\xe4\xeb\x4f\xef\xcf\x3f\xfd\x79\xbc\x3e\x7f\x19\xbf\xfd\xc3\xe7\x77\x3f\x7e\xfc\xfe\xba\xfe\xf0\x83\xff\x7e\xdf\xfe\xfe\x0f\xeb\x2f\xff\xe6\xea\xfe\xed\xf7\xff\xf6\xef\xff\x35\x7f\xfb\x77\x57\xf7\xaf\xbf\xff\x77\x7f\xff\xaf\xcf\x5f\xff\x7e\xff\x75\xfd\xfd\xf7\x7f\xdf\xfe\xb5\x7f\xff\xfc\xf6\xfe\xff\xb4\xf2\xbb\x44\xe3\xbf\xfd\xe9\xaf\xef\xcf\x97\xbf\xed\x76\x7f\x9f\xbe\x7f\xf8\x91\xd6\x2f\xfe\xc7\xa2\xdf\xa5\xeb\xb2\xb7\x7f\x7c\xbf\xfe\xaf\xf1\x97\xdf\xfd\xfe\x75\x8f\x6b\x7d\xb9\xfe\x91\xfe\xf0\xe3\xbe\x73\xbf\x36\x88\x3f\xfc\x48\x17\xff\x1c\xfc\x3d\x6f\xf0\xfe\xc3\x8f\xc4\xbf\x3e\xeb\x0b\x7e\xf9\xe5\x8b\xb2\xc0\xec\x80\xbe\xc1\xaa\x26\xf5\x7e\x6f\x60\x45\xb1\x01\xbf\x89\xd5\xc4\x13\x6d\xd5\x55\xd7\x3f\xe7\xfe\x67\xfb\xdd\xef\x5f\x39\x76\x87\x4a\x79\x16\xa0\xda\x52\x62\x83\xfd\xe3\x52\xd7\x8f\x67\x6f\xb4\xb1\x7e\x33\xe3\x02\xf4\xdf\xfd\xfe\x7d\xf5\x5d\x41\xbd\xf3\xef\x7e\xff\x4e\xd4\x56\x57\xeb\x9f\xbb\x5f\xfb\xc3\xec\xbf\xd3\xff\xf0\xef\xba\x2b\x88\x02\x9c\xd4\x17\x55\x38\xff\xf0\x23\x3d\xb7\xe0\x45\x59\x13\x7e\x80\x7d\xc3\xd4\x33\x90\xf6\x12\x15\xc5\xf5\x08\xbf\x1b\xa6\x6b\x43\xa6\xfb\x79\x04\xab\xde\x87\xfe\xe4\xfe\x2c\x50\x04\xfb\x33\xfa\x92\xe3\xd9\x55\xdc\x49\x58\x81\x74\x2e\xaf\xd5\x5c\xf0\x11\xde\xeb\x97\x4d\xe0\xa7\x36\x31\x26\x90\x46\x5a\xdc\x1b\x96\x5b\x98\x81\x54\xd4\x3b\xe3\x28\x59\xc8\x6f\x4b\x08\x19\x56\x65\x58\x3d\xe8\x44\x4d\xc2\x55\x73\xee\x82\x41\x19\xcd\xf4\x41\xbd\xb5\x08\x0b\xb0\x0a\xf7\xdc\x46\xa3\x13\x61\x17\x1b\xad\xc6\xfe\x6d\x3e\x80\x36\x3b\x5d\x18\x11\x40\x4a\x87\xf5\x06\xa5\x73\xd0\xdf\xa0\x83\x2f\xeb\x8d\xdd\xa7\x78\x58\xa4\x7a\xed\x8f\xa3\xee\xd2\xfb\x62\x34\x51\x77\xab\xf7\xc5\x00\xa2\xee\x76\x99\xb4\x68\x7b\x5a\x98\xb2\x68\x7b\xba\x99\xb0\xe8\xf1\xda\xbf\xa2\x03\xd1\xe3\x03\xa4\xce\xe8\xd4\x69\x07\xa2\xd3\x62\x50\xd1\xbb\xaf\xdf\x96\x3d\x43\xf3\xb5\x3f\xcd\xf7\xd3\x85\x79\xc3\x7a\x60\xdd\xb0\xdf\xc2\xbe\xe0\x03\xf5\xcd\xd7\xa6\xa3\x48\xa9\x0a\xd7\x52\xe4\xc2\x38\xe7\x6b\x77\x3e\x97\xeb\x34\xf4\xda\x1f\xdf\x07\x7e\x37\xcc\xfe\x16\xde\x29\x3f\xe1\x5e\xe2\x12\x36\xb4\x89\x27\xd7\xc7\x6e\x6c\x1a\x8d\x14\x59\xd8\x76\x69\x3e\x70\x77\xb2\x16\x87\xb0\x67\x2a\xd7\x33\x84\xd8\x92\xa7\xfe\xac\xf9\xbb\x69\x89\x55\x9f\x2f\x49\xa0\x38\x84\xf1\x00\x4f\xe9\xee\x86\xc4\x35\x5f\x9b\x08\x72\x9c\x6e\xb0\x3e\x57\x3b\xbf\x5d\xdd\x28\xe9\x67\x55\xb1\x21\xab\x3e\x5f\x9b\x59\x4a\x3a\xf3\xbc\xe5\x61\x49\x71\x4a\xbf\x9b\x08\x4e\xaf\x36\xd3\x97\xfb\x2c\xd9\x84\x44\x4e\x55\xf3\xde\xb0\xc7\x96\xec\x4a\xe4\xff\x1f\x19\xbd\xbf\x5d\x53\x15\xed\x4c\xe4\xdc\x7d\x7c\xf2\xa9\x69\x13\x46\xbe\x0e\xdc\x9d\x2a\x3f\xdb\xf9\x6c\xd8\xec\xf2\xa6\xea\x52\x3a\x2b\xf6\xde\x74\x54\x1a\x94\x3b\xdf\x9b\xe4\x4a\xeb\x8f\xf0\x01\x36\x61\xde\x30\x4e\xe9\x9a\xc8\xd2\x6d\xf7\xbd\x89\xae\xf4\x74\x60\x03\x9e\x8f\x77\x9f\x15\x79\xf3\xbd\x69\xb0\x28\xa0\xe6\x7b\xd3\x60\x89\xe7\xf4\x6a\x4d\x73\x4d\xae\x18\x94\x5f\x13\x0c\x3f\xdf\xfd\xf3\x87\x1f\xf7\x75\xbb\x80\xef\x4d\x92\xf5\xbe\x2c\xdd\xa2\xbd\xde\xc9\xd2\x4d\xa1\xf5\x4e\x5d\x78\x6f\x78\x3b\xde\x4d\xa1\xf5\xbe\x6d\x37\xd6\x88\x6a\x79\xce\x6f\xd7\x88\x6a\x7d\x1c\xd1\x26\xd8\x5a\x1f\x67\x63\x13\x6c\xad\xcf\x69\x77\x6c\x98\xcf\x6f\xdf\x1b\xd6\x03\xd7\x2a\xd4\x26\x57\xbd\x37\xfd\xd6\x76\xd9\xab\x4d\xbf\xb5\xdf\x36\xb4\x85\x49\xed\xf2\xdc\x7b\x4b\xef\xda\x5d\xfd\xf7\xa6\xee\xda\x9f\x53\x9a\x81\x76\x63\x53\x77\xed\xf9\x7c\xbc\x87\xd0\x9b\xf3\xbc\xc9\xb9\xc6\x7d\x3e\xde\x7d\x8e\x33\xa2\x4d\xdd\x35\x7e\x56\xb5\xa7\x3d\xca\x69\x68\x8f\x28\xe2\xc0\x0f\xf0\xfc\x76\x8d\xa8\x5d\x97\xe3\xdd\xb4\xdf\x2e\xd9\xe8\xbd\x89\xbd\x5d\xfd\x94\xae\x21\xb4\x74\x46\x34\xf3\x86\xa7\xa1\x59\x36\xac\xd6\x3c\xd7\x10\xda\x7d\xc6\xbb\x78\xe1\x4e\x57\x39\x55\xad\x55\x68\x4f\x3f\x55\x8d\x0d\xc3\x21\x6c\x8d\xdd\xf2\xa1\xc9\xcd\x29\x2d\x9f\xe1\x6f\x4e\x69\xf9\x2c\xf7\xe2\x94\x3b\xa5\x7e\x3e\xde\x23\xca\x99\x21\x7c\x36\xa7\xb4\xac\x7c\xfa\x2c\xeb\x22\xb5\x5c\x1f\xe1\x1e\x60\xc9\x45\xf8\x00\x43\xb8\x07\x58\x4a\x12\x16\xe0\xf9\x78\x0f\xf0\x30\xec\x67\x33\x4e\x2b\x52\xce\x67\x33\x4e\x2b\xce\xc6\x67\x33\x4e\x2b\x8e\xf7\xb3\x19\xa7\x95\x7e\xaa\x9a\xc0\xf3\xf1\x7b\x8d\x28\xdf\xa7\xcf\x6b\xc9\x5a\x2f\xa7\xcf\x5f\xa0\xbf\xdd\x8c\xd3\x7a\x3d\x70\x8f\x48\x8b\x62\x7e\xb6\xbd\xd1\xe2\xf1\xb7\x9b\x71\xda\xa1\x9c\xcf\x66\x9c\x7e\x9d\xd9\xd8\x8c\xd3\x2f\xf4\xf7\xfc\x6c\xc6\xe9\x47\xc4\x7e\x16\xe3\xdc\xa9\x2a\xbe\x3e\x5b\x47\x2f\x73\x57\xb8\x46\xd4\xb5\x80\xe6\x27\x26\xf0\x34\xf4\xda\x30\x9f\x9a\xdf\x1b\xf6\xd3\xee\x07\x78\x4a\xd7\x00\xfb\x7d\xfb\xdb\xcd\x65\xfd\x3e\x35\x6f\xb6\xea\xcf\x19\xe0\x66\xab\xfe\x48\xb1\x9f\xc5\x56\x77\xea\xcf\x81\x7b\x80\x8f\xb4\xf1\xd9\x6c\xd5\x9f\xd3\xd0\x66\xab\x5e\xd2\xa9\x6a\x99\xba\xe9\x68\x98\xcf\x62\xab\x05\xcf\xc7\x7b\x08\xa5\xfd\x0d\x82\xff\xb3\x79\xae\xd7\xeb\xfc\xf4\x03\x94\xac\xb6\x46\xe9\x55\x39\xf1\x59\x4c\x76\xdf\x87\x33\x3e\x9b\xc9\x7a\x3d\x8b\xbf\x99\xac\xd7\xb3\x80\x9b\xc9\xfa\x91\x4f\x9f\xcd\x64\xbd\xd6\x53\xf3\x5e\xb1\xda\x1c\xee\xe6\xaa\x7e\xa4\xd7\x67\x73\x55\x6f\x87\xd8\x37\x57\xf5\x76\x88\x7d\x71\xd5\x7d\xa7\x7e\xda\xdd\xd6\xfa\x11\xc0\xdf\xc5\x46\x0b\x86\x70\x0f\xa1\x95\x2a\xdc\x6b\xd2\xec\xd5\x77\xb3\x51\x6f\x52\xf7\x77\xb3\x51\x3f\x2a\xe5\xbb\xd9\xa8\xf7\x74\x7e\xbb\x87\xd0\x5d\xcf\xef\x66\xa3\x7e\x84\xe8\x77\x33\x4a\x3f\xeb\xf9\x5d\x2a\xe5\xbe\x1f\x29\xf4\xbb\x89\xbd\xf7\xdc\x84\xbb\xdd\xee\x4c\x7e\x83\x76\xcb\x29\x2d\xfb\xb7\x5b\xc6\x3c\xf8\x69\x69\x49\x24\xe1\x03\xac\xc0\x10\xb6\x0d\xa9\xf9\xbe\xef\x22\xac\xc0\x2a\xec\xc0\xfd\x71\xdc\xb0\x42\xdf\x22\xe7\x09\xfc\xa4\xde\xb7\x59\xf3\x44\x86\xe7\xfa\xb6\xb6\x9f\xc0\xe4\xef\x7d\x4b\x91\x27\xda\x96\x5e\xbd\x6f\xfb\xf4\x89\x18\xc2\x67\xc3\x09\xfd\xf6\x4a\x43\x18\x4c\xbd\xd7\x2e\xf4\x63\x1a\x7a\xb1\xfa\xbd\xd1\x90\xcb\xdd\x37\x6d\x3c\xe3\xea\xc2\x1b\xb8\x87\xd0\x51\x38\xcf\xb8\x59\xc1\xde\x32\xf0\x54\xb5\x87\x3f\x9e\xc1\x88\x5a\x05\x6e\x79\xdc\x7b\xdb\xbd\x1a\x05\x7e\xed\xdb\x72\x59\x90\xf1\x6e\x2b\xe0\x19\xd5\x9a\xb7\xd8\x78\x46\x0d\x3e\xee\xf4\xaa\xfa\x71\xa7\x57\x15\xf2\xee\x9d\x5e\xf5\xed\x98\xf6\xde\xe9\xd5\x18\xac\x6f\xa7\x57\x13\x19\xd3\x3b\xbd\x9a\xe7\xb7\xf4\xea\x75\xda\xa5\x57\x67\xea\x3a\xbd\x7a\x5b\x73\xd0\xab\x2f\x3c\xd8\xb7\x81\xf8\xcc\x4b\x42\xda\x06\xfe\x33\x2f\xdb\xdd\xf6\xd4\x82\x0c\x7f\x8b\x8d\x67\x3e\xce\xf3\x56\xb0\xcf\xcc\xae\xfe\x76\x30\x9f\x59\x90\x6d\x38\x98\xcf\xac\x7c\x1c\xdb\x88\x7f\x66\x83\x8f\xe2\xa2\xdd\x09\xe3\xc4\x45\xbb\xb8\xc9\x1d\x6f\xf4\x99\x93\x76\xe3\xa2\xdd\x39\x85\x7b\x36\x74\x2d\x7a\x6c\x7a\xce\xfd\x82\x36\x62\xd3\x73\xee\xd7\xb4\xb4\x6f\x98\x86\xed\xc6\x86\x38\xb6\x1d\xa3\x2f\xf7\xa7\x0b\xd3\x86\x19\x21\x13\x5b\x6a\xe6\x5e\x91\x8b\xb1\xb9\x3b\xf7\x08\x3f\xce\x1b\x2a\x73\x22\x95\x0d\xe5\xee\x48\xf4\xea\x3b\x84\x4d\x38\x80\xbb\x57\x91\x1c\xef\x96\x39\x39\x32\xcc\x1e\xf7\xee\x55\xb4\x29\xdc\xbd\x8a\x0e\x01\xa3\xf7\x72\x0c\x3b\xb9\x0d\xd5\x05\x3f\xc0\xdd\xab\x98\x2c\x28\xce\xf3\x82\xfe\xb6\x0a\x99\xc9\xcd\xce\x39\x5e\xce\xf3\xdd\x7f\x25\xf8\x73\xbc\x9d\x8c\x9b\x2e\xbf\x5d\x93\x87\x2e\xab\xd8\x62\x1b\xa6\x79\x24\x68\x30\xb6\x39\x95\x0f\xcf\xa1\xaa\xf3\xb8\x51\xc6\xb1\xd5\x5e\x1e\xf7\x10\xee\x2e\x8f\x0c\xa3\x60\x79\xe7\x51\xd1\xa0\xe8\xf5\x7c\xd8\x28\xb6\x9b\x99\x07\x8e\x6d\xc7\x40\xcc\xa3\x3b\x91\xdb\x42\xca\xa3\x3b\xbe\x4c\xaf\xc6\x64\x32\x32\xbd\x9a\xf6\x39\xd3\xab\x39\x2c\xa5\x57\xd3\xe5\xcd\xf4\xea\x8d\x00\x8e\x4c\xaf\xde\x28\xba\xd8\xe2\x39\xcf\x8c\x4d\x80\xbb\x97\x67\xdf\xe3\xcd\x77\x3e\x90\x01\x6e\x63\x6b\xc1\x37\xa5\x15\x88\xc7\x7a\x5b\x15\x1e\x78\xbe\xb7\x49\xb4\x20\x9d\xdc\xee\x50\x9e\xdd\xb9\x3a\xa5\xc3\x76\xb3\x90\x9a\x0f\xdc\x74\x94\x71\xf7\x16\x84\x70\x8a\x0d\xed\x01\xe6\x7b\xcb\xf2\x3c\x03\xbd\x17\x3f\x61\xc1\x7f\x4f\x42\xe8\x77\x4b\xfa\x05\xf9\x6d\xa5\x57\x11\x78\xf7\xb5\x0a\xe9\x55\x65\xf8\x21\x2b\xd4\x47\xc8\x6f\x9b\xbf\x95\xae\x6a\x16\x32\x84\xe6\xc7\xb2\x42\x6d\x42\x26\xb6\xf9\xf1\x64\xae\x1a\xa5\xa3\x33\xde\xd6\x85\xf4\xaa\x85\x90\x6e\xd8\xee\x60\x0b\xe2\xee\x97\x90\xaa\xfa\x23\x64\xda\xed\xc6\x08\x3f\xb6\x2a\x25\x81\xdd\x18\xc1\x88\xc2\xaa\x90\xd6\xd1\x8a\x90\x9a\x23\x09\xad\x99\xb9\x1a\x83\x9a\xc3\x21\x28\x27\xce\x88\x26\x72\xe2\x8c\x68\x0b\xfe\xfc\x5c\x0e\x01\xd1\x1e\xdd\x9a\xb7\x2a\x73\x53\x65\x41\x88\xbf\xf3\x31\x12\x37\x3f\x48\xcd\x39\xa5\x49\xc7\xcb\xa6\x65\x7e\x10\xa2\x73\x42\xa2\x0f\x62\x72\x4e\xd9\xaa\x67\xa1\xa5\x7e\x2c\x87\xf6\x22\xfc\x52\x4a\x9f\x27\x56\x40\x74\xdb\x1d\x7e\xec\x6f\xf7\x00\x33\x26\xef\x82\x37\xd0\x5e\xa1\xac\xa2\x5b\x15\x16\x62\xb8\x0a\x70\x68\x7e\x6e\x6b\x76\xbc\xae\xc2\xc4\xdc\x08\xa7\x9d\xed\xa9\xce\x56\xda\x82\x89\xdf\xd2\x8d\x17\x76\x4d\x04\xed\x62\x6e\xe4\x07\x11\xe4\xb6\x49\xc7\x7a\x5e\x90\x99\x7c\xfc\xad\x8b\x82\x44\x72\x2b\x24\x3f\x48\xa4\xf9\x72\x51\x14\x05\x2f\xa5\x75\x30\x57\x6f\xb5\x62\x54\xe1\xc3\xc7\x8f\x90\xf5\x95\x36\xde\xca\xba\xa0\x21\xb6\x06\xf2\xa3\x64\xc0\x91\xce\x8f\xdc\x8d\x23\x1d\x97\xcb\x8d\x7f\x9b\x1f\x59\x12\xff\x36\xae\xab\xfd\x52\xf0\xeb\xed\xe6\x47\x49\xf0\x76\x40\xb2\x3e\x4e\x68\x5c\xe8\x48\x9d\xd0\xfc\xd4\x22\xf4\xb7\x5d\xc8\xdc\xd4\x10\x06\xbf\xcd\x42\xc8\xaa\x9d\x9a\x3f\x94\x9e\xaa\x58\x13\x39\x12\xdf\x30\x2e\xd4\xed\xfc\x20\x44\x1f\x39\x12\x57\x31\x2e\x29\x14\xdf\x30\x2e\x49\x12\x67\x30\x3f\x32\x28\xce\x60\x5c\xc9\x5e\xc1\xeb\x4f\x3b\x35\x33\x91\xe8\x66\xbd\xbf\xfc\xb4\x53\xf3\x8b\xd2\x24\x74\x08\x36\x34\x68\x57\xea\xde\xee\xd0\x82\x0e\x61\x32\xfc\xdb\x3e\x6f\x72\x8e\xeb\xb6\x57\x93\xf1\xca\xa0\xb8\x25\x71\x49\xec\x78\x1a\x71\x49\xbf\x5f\xa4\xd7\x23\x67\x7c\x9d\x0d\x59\xe1\xeb\x6c\xa0\x8d\xe7\x97\x6d\xce\x47\x62\xff\x06\x0b\x2a\x75\x7f\x83\x6e\xa0\x8d\xe7\xd7\x11\xc5\x81\x2c\x8a\x9c\xf1\xdd\x7a\x3e\x2e\x59\xe1\x3b\x59\x14\x59\xe1\xbb\x95\x64\x66\x1b\x70\xc1\x07\x68\x37\xa4\x41\x19\xe5\xbb\x99\x3b\x67\xa5\xd7\x77\x53\x5d\x5c\xf2\xcd\x17\xae\xca\x97\x9d\x84\x08\xf3\x65\xaf\x26\xbd\xda\x7a\xbe\xe8\xff\xc4\xb5\xf5\xfc\x82\x37\x1f\x57\x21\x53\xb7\x99\x6c\xc1\x4a\x69\x13\x42\x0c\xdb\x0a\x58\x30\x28\xed\xc2\x09\x0c\xe1\x9e\x9c\xbc\xc5\xe4\x82\x5f\x7e\x5b\x80\x90\x59\x4e\x36\xb4\xe9\x2a\xae\x6c\x55\x6c\x27\xe7\x64\xaf\x06\x73\x95\xac\x79\xb0\x64\xf9\x40\xfa\x5c\x6c\x68\x40\x39\xc5\xf1\x0e\x86\x5f\x1c\xaf\xab\x50\x6c\x17\x31\xc9\x16\x53\xe9\x09\x19\x93\x9f\x4b\xc8\x2a\x94\x2c\x84\xda\x4b\x11\x5a\x73\x15\x7e\xf9\xad\x1f\x07\xab\x5f\x9a\x90\x15\x7c\xfc\x2d\x9b\xeb\x57\xe9\x42\x96\xec\xb1\x2a\x87\xff\xf8\xdb\x41\x9f\x6b\x12\x32\xfc\x7a\x0b\xad\xd9\xaa\x06\x35\xd7\x47\x48\x9f\xab\xbd\x72\xf8\xd5\x6e\xc8\x74\xd5\x76\x25\x24\x69\xe3\xe6\xd4\x22\x4b\x0c\x18\xaa\x71\xd5\x26\xa4\x5d\x89\xe1\xee\xb0\x46\xed\x42\x56\xdf\xe5\xbe\x61\xba\x9c\xab\xd0\x76\x43\xc8\x3c\xb7\x4b\xc8\x10\x1a\xe3\xbd\x1d\x6f\xf3\xb7\x2e\x68\xb3\x1b\x72\x4a\xb3\x5d\x39\xc5\xf5\xbd\xb7\x59\x97\xb3\x2b\x78\x6f\x35\x18\x57\xb3\x5d\x4c\xa4\xec\x82\xee\x63\xce\x14\x57\xbf\x7e\x25\xf8\x4b\x7f\x3a\x9d\xea\x49\x48\x2f\xfa\x2d\xb4\x17\x55\x08\x69\x14\x9a\x7d\x9c\x8c\x7a\x09\xfd\xed\x23\x84\x16\xea\x81\xcc\x6b\xcf\x42\xba\xec\x7a\x3e\xce\x4d\x2f\x42\xda\xad\x07\x32\x91\xdd\x6e\x0c\x26\xa3\x1e\x08\xa3\xf4\x26\x44\x5a\xf7\x2e\x64\x01\xeb\x29\x65\xd6\xbb\x43\x98\xf0\x5c\x38\x84\x89\x24\x70\xf1\x1f\xb9\xaa\x9e\x8f\xf9\x6d\x38\x57\x08\xef\xec\x6a\x67\x6c\xaf\xdc\x1e\x21\x82\xa1\x65\x21\x22\x27\x0e\xa4\xa1\x56\x84\x4c\x4e\x08\xd5\x7b\x51\x85\xc8\xb6\x76\xa0\xed\x32\xa2\xac\x50\x91\x70\x38\x74\x0d\xf6\x85\x16\x6c\xc0\x53\xca\xa2\x48\x38\x9c\xc2\x46\x52\xd4\xe5\x2d\xcb\x23\x29\xea\x32\x86\xda\x3e\x9c\xdf\xf0\xa1\x34\x09\x0b\xf0\x16\xb2\x28\xfd\x94\xd2\x50\x3f\xa5\x34\x94\xec\xd5\x44\x30\x48\x2a\x19\x82\x4d\x8a\xc9\xc2\xf0\x53\x6a\x42\xba\x11\x07\x0e\x8e\x06\x6f\x21\x55\x05\x03\x2c\xc3\x8f\x43\x58\xfe\xf9\x94\x71\x41\x1a\xba\x69\xb7\xa0\xbb\x8a\xc3\x2f\xd3\x9a\xb3\x70\xd7\x5c\x12\xb0\x22\x45\x8a\x43\xa8\x30\x0e\x27\x94\x0b\x56\x4a\xab\x90\xc3\xce\xfb\x40\x0e\x3b\x1d\x51\x3d\xa7\x9b\x07\xbe\x29\xed\x42\x3b\x29\x0c\x16\x45\xd1\x5e\x3d\xec\x4c\x07\xb2\x28\x4a\xfa\x8a\x78\x2e\xf7\x81\x0d\x98\x84\x9d\x8f\x0f\xfc\x00\x99\x49\xce\x96\x73\xb9\x0f\xb4\xaa\x47\xc8\x10\x9c\x1c\xb6\x4d\x72\x39\xc3\x9f\x0c\xe1\xf4\x79\x5a\x33\x9d\x6c\xb0\x46\xb9\x0f\x84\x72\xf2\x25\x64\xea\x9e\x03\x03\x98\x84\x2c\x8a\x6a\x9f\x40\x81\x48\x8a\x76\x02\x05\x22\x29\xda\x9b\x67\xbd\xca\xf2\x86\xcc\x49\x0a\xef\x86\xfe\x49\x0a\xef\x06\xe3\x14\x15\x4e\x43\x8c\xa4\xdc\x84\x6f\xa0\xa5\x18\xc8\xe5\x74\xc3\xf1\x5a\x73\x97\x36\xac\xb9\x63\xc7\x25\x55\xb7\x3b\x05\xc5\x9a\xbb\xc4\xf0\xb3\xf4\x03\x64\x44\xee\x14\x14\x05\x7f\x77\x7d\x7f\x96\x32\xc0\x9f\xa5\xac\xaf\x6a\xa1\x63\xc7\x95\x52\x7e\x2d\xf8\x89\x6e\xc8\x45\xe1\xdd\xf1\xd1\x8a\xba\x39\xec\xb2\x82\x30\x50\x0b\x49\xc1\x1f\x9d\x5e\xf8\xdb\xc0\xaf\x2c\xf5\x94\x32\x91\xa7\x2a\x8e\xe3\x8b\x82\x30\x82\xc5\x57\xeb\xbb\xab\x50\x14\x84\x81\x99\x9e\x54\x1a\x21\xaf\xd7\xf3\x5b\x82\x04\x14\x84\xe1\x70\x15\x84\xe1\x7a\x2a\x08\xd9\x7b\xce\x45\x81\xc4\x26\x43\x2e\x0a\xa4\x40\xdd\x26\xd5\x42\xa0\x6e\x8b\x02\x29\xa6\xdd\xb0\x2a\x05\xc3\x19\xa0\x8b\xaf\x2a\x8b\x69\x43\x0c\x61\x28\x18\x54\x0b\xc3\x99\x54\x77\x0d\x79\x5d\x85\x33\x5c\x5e\x4d\x04\x37\x19\x88\x64\x28\x7d\x28\xbc\x9d\x3a\xb6\x02\x22\x39\x40\x36\x05\x73\xbd\xf8\xed\xc4\x2b\xab\xd7\x2d\x7c\x80\x8f\xb0\x00\xb3\x90\x28\x08\xb5\xc4\x84\xe7\xaa\xd6\xf3\x54\x3e\xa9\x25\xdc\x28\xa8\x5a\xcf\x6c\x14\xe4\xaa\x4a\x99\xf4\xb9\x6a\x01\xb3\xc7\x1f\xc9\x79\x9e\xb2\x91\x13\x8b\xef\x1f\xc9\xa9\xc3\xf7\xcf\x55\x71\x85\xef\x9f\xab\xe2\x6a\x62\xc6\x55\x05\xd2\xcb\x21\x28\x35\x0d\x2f\xa9\x8a\x9c\x97\x72\x42\xc5\x7e\x02\x48\x9c\xe7\x97\x43\x50\x02\xbd\x82\xf1\x6a\xc5\x1a\xb9\x51\x95\x04\x2f\xa7\x5d\x3d\xff\x42\xf2\x55\x85\x99\xfb\x06\x55\xe9\xf5\x52\x67\x86\x9d\x9c\x46\x9b\x3c\xc2\xfe\xcf\xc1\x27\x0b\xd2\xae\x52\x84\xa8\x88\x5c\x15\x66\x6f\xe5\xa2\x8a\xee\x6d\x9f\x95\x13\x6f\x03\x57\xb4\xc5\x38\xf8\xcf\x55\xbb\xfc\x6d\xe0\x8a\x86\x38\x07\xff\xb9\xca\xb0\x9c\xf4\xe7\x2a\xc3\x72\xd2\x1f\x49\x9d\xc9\x69\x7d\xae\x32\xec\x9b\xdd\xaa\x2a\x87\xba\xc9\x90\xe2\x54\xb5\x27\xf6\xbe\x4e\x55\x1f\xa0\xbf\xc5\x0a\xa8\x32\x0e\x1b\xc8\xb9\xca\x38\xef\xe9\xc7\xa7\x94\xe1\xcb\x29\x6c\x2b\xc4\xad\x36\xe6\xf4\x3a\x57\x59\xc3\x9d\x82\x5b\xdb\x84\xbd\x80\xb8\x35\x46\x38\x27\xce\xb5\xdd\xc2\x4a\xe9\x81\x8c\x48\xd3\xec\xe3\xd4\xc9\x56\xf8\xf3\x71\x4b\xc0\x1f\xc6\x7b\xab\xf6\x39\x0b\xcd\x55\x5e\xf8\x38\x5e\xad\x00\xdd\xfb\x5b\xd5\x8d\x7b\x9f\xab\x16\x13\x67\x56\x71\xab\xab\xbf\xb2\xa4\x12\x49\xf7\xfe\x96\xf8\xbf\x50\xec\x7d\x9f\x52\xda\x55\x6e\x7c\x0d\x6a\xd2\xc8\xfd\x06\xed\xca\x1a\x5f\x79\x30\xfe\x06\x8b\xff\xbb\xcd\xc7\xb8\xd5\xeb\x5f\xf8\xf5\x56\xaf\x7f\xf7\xe2\xc7\xad\x5e\xff\x3a\x5c\xed\x18\x3d\xf4\x86\x9c\x88\xcb\x15\x43\x55\x07\x8e\x73\xdc\xd8\x13\x71\xd1\xa9\xc6\xdc\xc4\x85\xb4\x6e\x4c\x46\x5c\x10\x5d\xbb\xfd\x98\x9d\xad\x46\xaf\xe2\x62\xff\xb8\xd1\xab\xb8\x24\xba\xe7\x94\xd2\xab\xc7\xd2\x69\x37\x8a\xf0\xe1\xb7\x07\x32\xc0\xc7\x3e\xe3\x3a\xdd\xf8\xa4\x41\x00\x65\x6e\x18\x1f\x91\xd8\x55\x20\xc0\x6d\xc1\x9b\xd2\x24\xb4\xaa\x10\x32\x1b\x8e\x17\xb7\x3a\x37\x3b\xa9\x5b\xcd\xf9\x40\x89\x84\x5e\x6f\xf6\x39\x49\x74\xd9\x9a\x5d\x94\x6c\x55\x18\xf1\x77\xb6\x2a\xb6\x98\xee\xec\x6f\x5d\x32\x8c\x8f\x48\xc3\x6e\x1c\x68\x37\xaa\x90\x45\xc9\x42\x1c\x67\x0e\x22\x16\xb4\x57\x07\x32\x75\x67\xf8\xc8\xe3\x76\xc6\xeb\x4c\xe6\x53\x6a\x9f\x29\xd5\xcb\x6e\xf6\xf9\xc6\x64\xb8\xd9\xcd\x88\x1b\x23\xaf\x39\x84\x1b\x77\xe8\x46\xb6\x85\x4e\xf7\x8d\x95\x13\xf7\x66\x85\xdc\x1c\x20\x3e\x78\x70\x5a\xb2\x20\x4b\xe6\x88\x6e\xcc\x65\xce\x43\x4a\xdc\x61\x37\x9a\x90\x3e\x17\xab\xc2\x04\xbc\x8b\xbf\x75\x9e\x8b\x1f\x13\xb2\xd7\x1c\xe0\xcd\x86\x0c\x87\x27\x0b\x32\xcf\x67\xbc\xc3\x76\x85\x68\xb6\xbb\x3a\x5e\x67\xf2\x8c\x48\xc6\x39\x43\x40\x2e\xb6\xd3\x67\x67\x12\xab\x27\x70\xc2\x73\xb3\x57\x7a\xce\x44\x59\x96\x78\x30\x73\x9a\x0d\xe9\x2a\x37\x84\x77\xe8\x2a\xdf\x48\xdc\x78\xec\x33\xb2\x3c\x74\x95\xef\xe6\x6f\x65\x9c\xe6\x6f\x31\x91\x1a\x5e\x77\x3c\xb8\x70\x0d\x37\x3b\x1e\x19\xa7\x59\x95\x7d\x46\xa6\x86\xde\x6f\xc3\x9e\x0a\xfc\xdb\xe0\x0c\x67\x41\x96\xcc\x76\xb3\x4b\x86\xd1\x17\xd9\x25\xb3\x1b\x19\x9b\xfe\xc6\xca\x8b\x8c\x66\x6b\xb6\x9b\xe5\x94\x66\x43\x92\x37\x36\x51\x64\x25\x03\xd2\x3a\x32\xba\xba\x9d\x4e\x4a\xed\xa7\x57\x38\xb4\x9c\x0e\x2d\xc8\x4c\x9e\x5e\x29\xda\xbb\xbd\x52\x96\x77\xbb\xa1\xdc\xb0\x93\x45\xb9\x81\x99\x13\x05\x1b\xf0\xc6\xcc\x89\xe2\xe4\xd8\xe7\x22\x2f\xd8\xe7\x82\xe5\x72\x63\x3f\x46\xe9\xf6\x99\x21\x14\x34\x5b\xb3\x93\x05\x7b\xb9\xd9\xab\x82\xbd\x7c\xf7\xfa\x4b\xc1\x1f\x78\xca\x8b\xf5\x84\x8c\xc0\x01\x95\x61\x3b\x8e\x00\x87\xfd\xee\xf6\x11\x5f\xb8\x39\x20\x7d\xe1\x66\x97\xab\xe3\x43\x57\x45\x95\x9b\xc3\x52\x55\x75\x58\xca\xee\x4d\xfb\x09\xb7\xc2\xe1\x40\x6b\xc1\xdd\x2b\xa2\x3b\x4b\x54\xc4\xd5\x73\xd9\xee\xf4\x63\x6a\x6e\xec\xe4\x3d\xaa\x23\xfc\xca\xdc\xb1\x80\xa3\x61\xe3\x76\x6b\xc6\xaf\x0c\x4e\xbf\x4a\x34\x7a\xf5\x60\x8b\x04\x8e\x64\xee\x36\xd4\x30\x11\xfa\x69\x08\x16\x7c\x30\x4d\xa2\x41\x92\xfd\xb4\x6b\x58\xf0\xa9\x19\x19\xc3\xb9\xda\x82\x37\x30\x09\xdf\x40\x3b\x89\xa7\xf1\x24\x3b\x09\x57\x3d\x18\x1f\xd1\x11\xa2\x0f\xd6\x46\x70\xc6\x9c\xbb\xbf\xed\x9d\xd9\x60\xcf\x21\x3a\x46\x7c\xb7\x2a\x8e\xc9\xe3\x51\xc1\x76\x07\x78\x6a\x46\x2e\x3e\xf7\xf9\x98\xb9\x3a\x0d\x21\x27\x1e\xd5\x6f\x47\xfd\x3e\xf7\x29\x65\xbc\xa7\x5d\xc4\x46\x67\x73\x23\xfa\xb4\xa1\x2e\xb4\xcf\x21\x64\x26\xef\x03\x19\xaf\xea\x57\xd7\xf1\x51\x85\x72\x02\x1d\x8f\x3a\x33\x60\x85\x7e\xfb\x31\x9e\xe4\xa3\xb2\x0a\x44\x1d\xd1\xac\x0b\x4e\xe0\x2d\xa4\x21\x55\x0a\xde\x60\x3c\xea\x90\xb0\xcf\xce\x46\xa0\xe8\x1e\x75\x48\x48\x75\xaa\x05\xbd\xc1\x47\x3d\x30\x60\xfd\x47\x45\x37\x5c\x32\x35\x9b\xe7\xd3\xdd\x99\xe4\x7c\x3a\x1e\xd5\x02\x27\xd0\xf1\xa8\x16\x48\x14\xc8\xdd\x79\xd6\xfd\x7b\x54\x56\x83\x2d\x97\x7e\x1f\x08\xa7\xe0\x0e\xc5\x40\x98\x3d\xe5\x40\x47\xd4\x85\x8c\xa8\x1c\x68\x55\x0c\x61\x62\xb9\x74\x57\x41\x7f\xaf\x6b\xf5\x4c\x2c\x97\xae\x99\x33\x9d\x76\xb5\x04\x07\xc3\xb9\x3f\x07\x32\x22\x95\xc6\xc4\xf1\xe8\xcf\x81\x2c\xa8\xda\x89\x73\xe2\x78\x54\x0b\x9e\x13\x77\x8d\x91\x29\x6b\xa8\x16\x38\xfa\x8d\x47\x3d\x30\xa5\x1c\x45\xfb\xcb\x89\x55\x1e\xeb\x1c\x76\xed\x29\xb3\x0b\x7a\x3e\x1f\x33\x40\x8d\x11\x32\x04\x72\x77\xb9\x4d\x09\xe8\x2e\x37\x29\x01\xf1\x28\x8f\xff\x5f\x39\x00\x25\x08\xeb\x8f\x47\xf1\xfc\x92\x08\xcb\x81\xfc\x56\xa1\x4a\x28\x4e\xee\xd2\xc6\xcb\xe1\x2b\x54\x5f\x0e\x5f\xda\x78\xe1\x4b\x74\x69\x83\x43\xe5\x78\x14\xb9\x44\xd0\xe7\x5e\xf2\xaf\x05\xff\x1b\x33\xfd\x51\x3c\x73\x1e\x9d\x7b\x39\x35\xc1\xfa\xe5\x94\x42\x0b\xd2\x11\x41\xf0\xf1\xf4\x03\x99\x75\xd5\x02\x8e\x64\xee\x9a\x17\x04\x85\xe7\xae\x1d\xa3\x5f\xd9\xd9\xbd\x09\x1c\xc9\xdc\x25\x9c\xb7\xf4\x2b\xa5\xbc\x65\xd0\xb0\x2a\x27\x43\x7b\x82\x50\x9c\xe0\x38\x73\x41\x88\x3d\xac\x19\xcd\xdd\xb5\x90\xde\xca\x98\x38\xbf\x85\xd8\x25\xba\x8f\xc3\x97\xe8\x3c\xae\xee\x52\xd9\x47\x4a\x91\xca\x3e\x0e\x1f\x4f\x39\x74\x33\xbb\x44\xf7\x91\x15\xc2\x9a\xd9\x4f\xcd\x97\x35\x4b\xfb\x5a\x1b\x9e\x13\x67\x35\xdb\x07\xa1\x92\x55\x56\x1f\xa8\x3b\xab\xac\x74\x15\xbb\x16\x03\x41\xa6\x91\xd5\x4e\x5f\xc4\x64\x56\x3b\x7d\xed\xb3\x34\xe8\x39\x71\xd7\x44\xf8\xb2\x64\x9e\x8c\xc6\x17\x72\xf6\x74\x33\xbe\xf6\x4a\x65\xf5\x45\xf0\x67\x95\xd5\xd7\x55\x90\x42\x39\xdc\x8d\x9c\x0e\x64\xb9\x25\x49\x4f\x73\x73\x3a\x10\xba\x92\xea\xbe\x2c\x8a\x47\xa1\xf1\x75\x51\xba\xdd\x70\xf8\xe8\x90\x71\x49\xdd\xec\xde\x0c\x0f\x77\x89\x67\x5c\x90\xaa\x6e\x4b\xb1\x81\xf2\x6d\x29\xae\x71\x46\xf0\x0f\xdc\xce\xc8\x88\xf6\x71\x29\xae\xc2\x86\xd0\xd5\x19\xf1\x3c\x3c\xa0\x25\xda\x71\x41\xc6\x8b\x3c\x1e\x97\xe4\xcd\x72\x0f\x3c\xd8\xc8\xc8\xe3\x71\x61\xd7\x10\x0b\xb9\xe0\x00\xda\xab\x61\x37\x6c\x77\x5a\x0a\xd4\xed\x24\x62\x7e\x41\x87\x10\xc2\x2d\x72\x88\x67\x2c\x83\xb8\xc2\xc8\xc8\xe3\xa1\x63\x49\x78\xe3\x82\x37\xa5\x8f\x90\x2c\xa4\x74\x3e\xa6\x66\x34\xea\xf0\xbc\x96\xf0\xc6\x05\x3f\x40\x46\x94\xcc\x60\x4a\x76\x43\xda\x78\xfc\x18\xa6\x0b\x57\x21\xb1\xb5\x15\xae\x42\x62\x7d\xc3\x55\x48\xae\xef\x63\xcd\x58\xcf\xe1\xa2\x70\x22\x9b\xc3\x55\xf0\x44\x36\x9c\xf6\xbb\x5b\x73\x15\x0e\xaa\xa2\x57\xb7\xb3\x81\xa4\x1f\x77\x58\x55\x13\xda\x8d\x2e\xa4\x1b\xd9\x76\xd9\x07\xf3\xe8\x77\xdc\x2e\x77\xb6\x5d\x94\x95\x67\xbd\x83\xf3\xda\x1c\x4e\xac\x0e\x5e\x38\x93\x1e\xc1\x12\xc1\x58\xc6\xc3\x66\x2c\x11\x8c\x0b\x5a\x73\x08\x19\xe0\x73\x20\x94\xc3\x4e\xc1\x78\xe0\x5f\x02\x1a\xcb\xf0\x94\x35\x1c\xe0\xe3\x00\xf3\xf3\x4b\xc1\x3f\x3c\x91\xcd\xc5\x8a\x39\x1c\x0a\x87\xcb\x01\x6d\xe4\x62\x3b\x4e\x46\xb1\xd4\xc5\x3f\x5d\xc6\xe6\x23\x44\xb1\x18\x33\x9d\x03\xa5\x31\xb2\xf2\x09\xa5\x31\x32\x86\x29\x49\x2b\x0b\xfa\x5b\x4b\x5d\x31\x1c\xe7\x41\x58\x65\x78\x8a\x3c\x74\xf7\x08\x24\x5c\x10\x99\x8a\x7b\x3b\x38\xdd\xcc\x04\x12\x2e\xc8\xcc\xa1\x52\x46\x46\xdd\xe6\x9f\xa5\x48\xbe\x53\x8a\xf7\x17\xcd\xaa\x30\x01\x3d\x45\x1e\x9e\x5f\x12\x39\xb8\x20\x43\xa8\xf6\x59\xe9\x55\x1d\x91\xe4\x5c\x1d\x82\x8b\x8f\x5a\x18\xba\x7b\x44\x0e\x2e\x48\xaf\x50\x38\x03\x87\x2e\xb2\xdd\xc0\x83\xcb\x84\xdd\x2d\x48\xbb\x76\xa3\xc8\xa0\x88\xd8\xa1\x0b\x97\x4f\x43\x26\x20\x22\x62\x87\x67\x9f\x84\xdd\x2d\x68\xcd\x5d\x08\xfb\x9e\x5e\x39\xfc\x66\xcd\x0a\xef\x66\x55\xec\x57\x10\xb3\xb6\x20\xcb\xad\xd4\xe4\x38\xb3\x5c\xca\x36\xce\x20\xcb\x85\x2a\x1b\x75\xcb\x98\x72\xa1\x9d\x46\x95\xe7\xba\x1f\x6f\x83\xa9\x10\xb3\xb6\x20\xc2\xdb\xe1\xe3\x0d\x96\x4b\xb9\xc8\x29\x63\xb9\x70\xd2\x46\x75\x41\x9d\x8d\xea\x10\x1c\xbe\xce\x61\x46\xa5\x8c\x3a\xed\xc6\x81\x3b\x87\xf2\x52\x88\x72\x42\x59\x2e\xa5\x66\xc5\x9a\xcc\x2a\x9c\x86\xc5\x94\x55\x38\xf8\x99\xe5\x52\x88\x72\x60\x59\x08\x87\x5b\x90\x76\xe3\x94\xd2\x2e\x4a\x72\x78\x7e\x99\xe3\x7c\x6c\x37\x8a\x90\xc9\x09\x3f\x56\x78\x87\xa5\x12\xbf\xab\x60\x4e\xef\xa5\x98\x6c\xce\x95\x62\xb2\x0d\x16\xe5\x3e\x1f\x6f\x8a\x2d\xae\x51\x73\x26\x95\x8b\x6d\x30\x7c\xe5\x62\xc3\xcd\x2e\xae\x20\xb1\xe9\x51\x2e\xfb\x8c\x21\x5e\x2e\xdb\x9d\xb6\x1b\x42\x46\xf4\x38\x75\xec\x93\x14\x57\x10\x87\xb6\x5c\xf8\x12\x83\x93\xd1\x72\xa9\xbb\xba\x13\xab\x4c\x25\x68\x3a\x8a\x6b\xc4\x51\x68\xb9\x14\xb1\x1e\x85\x16\x97\x8c\x88\xf9\x72\xa9\x8e\xfa\xb0\xd4\x8f\x25\x33\x65\x6a\x87\xcc\x3c\xbc\x1f\xf8\xb7\xc5\x58\xb2\xd1\x9d\x2b\xf5\x1e\x11\xd6\xe1\x69\xfd\xe8\x04\x3a\x78\x3c\x3f\x70\x68\x8b\x81\x67\xa3\x93\x06\x6b\xa4\xd9\xd0\xa1\xf5\x78\x7e\x90\x5b\x1d\x9e\xc7\x8f\x70\xf8\x4a\xe0\x90\x90\x54\x38\x9c\xa3\x86\xa7\xf5\x23\x24\x24\xf5\x0f\x67\xa1\xe5\xca\xbf\x0c\xe7\x2c\x83\xe4\xf4\x28\xd2\x42\x6c\xc1\x50\x8c\x4a\x1b\xe1\x54\x49\x0b\x21\x59\x29\xe9\xc3\xa9\xba\xcf\xc7\x4c\x86\x0b\xa8\xe3\x5c\x5c\x40\x0f\x4a\x8b\x0b\x18\x8e\xde\x15\xd3\x17\x2e\x2e\xd1\x70\x79\x35\x02\x06\x7a\xa0\xa8\x32\x47\xd0\x49\x95\x95\x27\xa3\x9e\xce\x8f\x81\xa9\x5d\x54\x99\x83\x4d\x95\xe2\x22\x90\x4a\x53\x8c\x86\x1b\x3a\xce\x25\x1f\x38\x80\xf6\x0a\x2b\xd6\xb3\xfb\x31\x5c\x5e\xa7\x99\x10\xea\x62\x34\xdc\x98\x30\xb7\xc7\xf1\x63\xba\x26\xaa\xb2\x89\x25\xea\xf9\xfb\xe0\xdc\xb4\x18\x0d\x37\x08\xa1\x0e\xcf\xd4\xc7\x74\x51\x70\x96\x06\x31\xd3\xe5\x52\x0d\x4e\x57\x41\x35\x38\xa5\xd0\x9f\xbf\xa5\x21\xd5\x11\xc9\x41\x51\xd4\x21\xba\xc6\x1e\xb1\x8f\x97\x44\xa7\x68\xe7\xdc\xb4\x18\x67\x37\x5e\x8e\x48\x49\xff\x72\x44\xea\x5b\x7c\xe1\x62\x24\xdd\xe0\xa0\x34\x3c\x62\x1f\x2f\x74\xb5\x47\xec\x43\xe7\xb7\xe0\x1a\x0f\x9c\xdf\x28\xf8\x21\xe3\xa5\x40\xb2\xcf\x2f\x09\x49\x3d\xf0\x52\xe4\x74\x7b\x25\x5d\x75\xbb\xc1\xf1\xbc\x47\xec\xc3\x7c\x71\x83\xf2\x86\x09\xe2\x86\xdd\x0d\xcf\x4d\x8b\x7a\x4f\x97\xb5\xa8\xf7\x48\xa7\x8e\xa2\x5a\x78\xcb\x46\x0e\xff\xed\x88\x14\xfc\x64\x48\x17\x03\xeb\x86\x07\xa5\x45\x3d\xf0\x76\x51\xec\x33\x89\xcb\xc5\x80\xb7\x81\x17\x5a\x8c\x52\x1b\x6f\xd7\x48\xd1\xfe\x56\x6a\x9e\x4e\x4e\xba\x71\x3a\xa9\x14\x39\x9d\x94\x8f\xd4\x03\x1f\x57\xd0\x4e\x92\x7d\x1b\x45\x2f\x85\xa0\xe9\x62\xb4\xd8\xf8\xa8\x8d\xd5\xd5\x9e\x6e\x16\x9d\x16\x72\x78\xa2\xea\xa5\x90\x15\x5a\x8c\xe9\x1a\x9c\x6e\x16\x63\xba\xc6\x87\xab\x04\x92\x8a\x8e\x68\xe5\x92\x14\x66\x5f\x16\x25\x29\xae\x38\xbf\x2c\x86\x2d\x8d\x6f\x58\x1a\xc2\x4a\xbb\x7e\xbc\xad\x9e\x92\x94\x1b\x64\x20\x86\xb1\x0b\xc3\xf0\x64\x63\x17\xc6\x17\xca\x31\x76\x61\x18\x80\x6c\xec\xc2\xe0\x4c\xd2\xab\x13\x16\x1c\x40\x1b\x9a\x8e\x77\x4f\xce\xe4\xc4\xb2\x18\x4e\x33\x2f\x98\xdd\x70\x9a\x49\x52\x61\x90\xe8\x5a\x26\x57\xb4\x14\x43\x55\x4c\xa3\x8b\x8a\x76\x9a\x44\xfe\x16\x43\x55\x26\x6e\x67\x31\x54\xc5\x24\xbb\xc2\x5d\x02\x0b\xd2\xc9\x6a\x37\x60\x67\x63\x26\x26\x07\x98\xc5\x60\x94\xe9\x11\x65\x45\x95\xcd\xe4\x3c\xb7\x5f\x47\xf5\xcc\x84\xe1\x52\xd1\x73\x33\xa1\x51\x2a\x8a\x6d\x72\x60\x59\x0c\x20\x99\x09\x5b\xc4\x30\x8f\xa9\x5f\x59\x51\x7b\x33\x39\x7a\x88\x7d\x12\xf8\x5b\x0c\xe4\x98\x29\xf8\x6d\xb7\x8f\x83\x3e\x76\xdb\x45\xe1\x90\x11\xbd\x20\xcb\x9b\x6c\x57\xa2\xeb\xb6\xcb\xfd\x15\x86\x6a\xcc\xe4\x64\xc0\x73\x93\x23\xc9\xa8\xc9\x8f\xb1\xea\x0c\xb7\x98\x89\xbd\x58\x03\x48\xe6\x8d\x6c\x33\x80\x64\xea\x2a\x1a\x40\x32\x6f\x97\x17\xaf\x73\x7a\x70\x58\x31\xa7\xa6\xb1\xbc\xa4\x35\x2f\xc8\x6a\xa3\x42\xa7\x9e\xa3\xc1\x27\x13\xcf\xb1\xa4\xf0\x63\x34\xaa\xb1\x28\xf3\xf6\xfa\x8e\xf0\xb7\xe8\x1f\x72\xa0\x17\xa4\xaa\xc7\x76\xcf\x78\x43\xb8\xd9\xd7\xf8\x8a\x49\x1c\x70\x31\xbe\x62\x92\xc9\x5a\xee\xeb\xfc\xf6\x03\xa4\x1b\x0f\x94\x72\x4b\xec\x0f\xda\xc9\x28\x97\xf9\x38\xc0\xc7\x52\x08\xf6\xc6\x50\x9b\xcf\xf0\xb7\x5d\xd8\x81\x21\x0c\x7e\x7b\x3e\x76\x08\x7e\xcc\xee\x9c\x11\x32\xf3\xd9\xc2\xbb\x18\x7d\x31\x1f\x0c\x26\xe3\x2b\x26\x41\xb5\xc5\xf8\x8a\x89\x27\x59\x0c\xa8\x98\x7a\x92\x46\xd7\x4c\xc2\x66\xcb\x2d\x01\xeb\x3a\x1a\x3f\x33\x33\x24\x6a\x7c\xc5\xe4\xe0\xb0\x18\x50\x31\xc9\x54\x0e\xa3\x6b\x66\x56\xc6\x60\x14\xcc\xec\xf0\xef\x03\x99\x2b\x6c\x84\xe9\x29\x63\xcd\xf6\x0a\x73\xa3\x66\xbb\xc1\xa6\x59\x65\xc3\x78\x72\xb5\x51\x54\xcc\xab\x89\x53\x5a\x8c\xa8\x98\x79\xd8\x90\x55\x4d\x7f\x6b\x9f\xe5\x75\xa4\xd7\xc4\x75\x8c\xaa\x40\x2a\xc4\x10\x54\xec\x8b\x49\x60\x6c\xb9\x25\xb3\x72\x6a\x0e\xe1\x66\xab\xfb\xb1\x2a\xaf\x85\xc1\x70\x9b\xc5\x35\xc2\x72\x99\xd5\x86\x30\x37\x66\x75\xda\x31\x37\x66\x75\xda\xb1\xf2\x26\x07\x7a\xc5\xf0\x8b\x59\x25\x24\xe5\x22\xfe\x5e\x54\x45\x1d\xfe\x5e\x31\x38\x63\x56\xe9\x4a\x22\xac\x48\x06\xa3\x31\xa6\xee\x5f\xad\x07\x42\xde\x92\x59\x55\x4c\xd6\x03\x99\x0d\xac\x80\xe9\xd9\xa0\xc1\x45\xb3\x62\x8a\x1a\x4d\x34\xf1\x06\x8b\x91\x1c\xb3\xca\x38\xcf\xf9\x98\xaa\x30\xa0\xa6\x67\x83\x86\x0f\xcd\x26\xe3\xe0\x66\x4f\x9c\xb4\x62\x70\xc6\xf4\xe4\xd0\xf0\xa1\x89\xcf\x56\x8c\xd5\x98\x0d\xbb\xb5\x62\x7c\x4d\x22\x52\x8b\xa1\x1b\x93\x73\xc5\xa8\x58\x1f\xd3\xa3\xc2\x8a\x79\x35\x9b\x82\x42\xf9\x8c\x0b\x57\xee\xf2\xeb\xad\x9e\xa9\x43\x67\x14\xc4\x6c\x18\xb5\x86\x1a\x4d\x3c\xb8\x62\xac\xc2\xd4\x47\xab\x0a\x6f\x8e\x15\xcb\x5d\x0f\x64\x32\x94\xe5\x1d\xbd\x7e\xbb\xbc\x3a\x65\xb7\x2b\xd6\x65\xb2\x7e\xa0\x55\x35\x21\x14\xea\x8a\x75\x47\xdf\x4f\x29\xe3\x73\x01\xbb\x84\xe3\x02\x76\xe7\xa6\xfb\x5b\x1c\x3a\x63\x15\x66\x57\xa5\xa8\x43\xba\x53\xe5\x02\xe2\xc1\x15\x83\x13\x66\x57\xa6\xba\x62\x7a\x70\x86\x1f\x98\x32\x1b\x55\xfd\xd3\x25\x1c\x97\xa8\x2b\x9f\x5c\x22\xfc\xbb\x62\xbc\xc1\x0c\x25\xae\x2a\x94\xb0\xd9\xa8\xea\xae\x90\x8d\x54\xa1\xe1\x4c\xaa\x42\x43\xe6\x56\x95\x85\x0a\x27\x2c\x45\xdf\x1a\x42\x30\x43\xe9\x15\x07\xfa\xdb\x22\xa4\x57\x2e\x59\x38\x39\xea\x1f\x8f\x33\xdb\x65\x43\xe8\xcc\x76\xd9\x10\x16\x52\x53\xa5\x78\x9c\xd9\x54\x29\x84\xaf\x86\x11\x5f\x13\x8f\xae\xdc\x2a\x2b\x8e\x33\xcb\xa3\xb2\x1a\xec\x0b\x3d\x2a\xab\x01\x1b\x35\x35\x0c\x87\x9d\xe5\xb1\x1b\x78\x74\xc5\x83\xff\x39\xc2\x4e\x76\xa1\x35\xdb\xab\xb0\x66\x7b\xb5\xf7\xc1\xca\x73\x7a\x85\x8c\x79\x4e\x43\xb8\x25\x4d\xdd\x45\xf6\x6d\x34\xed\xb6\x01\xa9\x3c\x3f\xe1\x1b\x68\x9f\x31\x37\xda\x4f\xf8\x06\xda\x67\xf4\xad\x27\xee\x93\x90\xdb\x68\x6a\xb6\xc9\x35\x56\x8f\x06\x94\xce\x61\x53\xd1\x4d\xcc\x8d\xa6\xa2\xe3\x36\x84\xf2\x68\xaa\x70\xc8\x1a\xed\xd4\x8c\x11\xef\xe1\xfd\xf4\xcc\xb5\x9d\x9a\xe1\x32\x0f\xef\xe7\x44\x00\x1b\x68\x67\x32\x6e\xb4\x53\x33\x6a\xc1\x23\xf6\x39\xa7\xa5\x56\x05\x6b\x3c\x6a\x09\x4f\x55\x9b\x1a\x86\x0c\xda\xf2\x28\xad\x5f\x12\x83\x0a\x87\x3b\x1a\xca\xa3\xb4\x7e\xb9\xfa\xcf\xf9\x2d\xc3\x57\x87\xbc\x5c\x7d\x05\x30\x57\xb8\x95\x47\x3d\xcf\x15\x6e\x61\xec\xdc\xc4\xcf\x2c\x1e\xcf\x7b\xef\x5a\xf1\x3c\x7e\xbe\x86\x1f\x67\x21\x93\xa3\x86\xf1\xee\x34\xcf\xe3\xbd\x2c\x2d\xda\x19\x02\xd6\x96\xc7\xf3\xa6\xf9\x46\x3b\x43\xc0\xda\xf2\x78\xfe\x9f\x2f\x40\x73\x44\xe8\x10\x4f\xeb\xcf\x05\x68\x8f\x22\xf7\x2d\xe3\x38\x40\xee\x25\x8b\xe6\x00\xbd\x88\xec\xe1\xd0\xf5\xdc\x3c\xe6\xd1\xbe\x57\x8d\x15\x0f\xef\xb9\x6a\x6c\xc1\x5f\x5e\xd9\x50\xbc\x4b\x2c\x9a\x26\x11\xd7\x83\x45\x53\x57\xbd\x11\xc0\x4f\x3d\xa5\xcc\x6b\x3d\xa5\xcc\x8d\xaa\x8b\x1b\xbf\xca\xa3\x47\x43\x2c\x6f\xf1\x84\x7d\x72\xc7\x48\x79\x14\xa2\x7a\xac\x8f\x42\x14\x8f\xb5\x78\xfe\xee\xc5\x54\x61\x8c\x9e\x57\x4f\x15\xcf\xd0\xbd\x6b\xaa\x78\x68\x7e\xf2\x6b\x0d\xac\xf3\x3a\xa5\xf2\x28\x8f\xb9\x21\x29\x5a\x39\x90\x35\x71\x01\xf5\x58\x1f\x45\xdd\x87\x1d\x62\x03\xeb\xbc\x8c\x28\x9a\xb3\xfe\x71\x79\x71\x8d\xbd\x6e\xa8\x78\xb8\x6b\xaa\x6e\xf1\x34\xd7\xfb\x85\xa2\xb9\x44\x1c\xd0\x16\x0f\x77\xbd\x23\xc8\xdb\xef\x8a\xa9\xba\xc5\xd3\x5c\x53\x75\xa3\xa9\x6f\xf1\x85\xc3\x90\x3d\x6e\xf2\x59\x90\x89\xfd\x22\xbd\x3c\x91\x9d\x5f\xd9\x57\x15\xea\x01\x6d\x53\x85\x1a\x9f\xdb\xea\xf9\x78\x2f\xa8\xc7\xb7\x26\xe3\x86\xf1\x6e\xa6\xdb\x16\x4f\x73\xcd\xaf\x0d\xc3\xdf\xe6\xd7\x11\x29\xdb\xf0\x94\x0b\x99\xac\xb5\x5f\xf8\x4e\xc4\xac\x55\xb3\x60\x83\x98\xb5\x6a\x16\x6c\xe1\x24\xb8\xf6\x0b\x1b\x88\xa3\xdf\x6a\x52\x6c\xe1\xac\x77\x41\x96\x6c\x1b\x23\x0b\x22\xae\xb6\x56\x5c\x10\x39\xd1\x6d\x17\x3d\xcf\x69\xee\x82\xb0\x51\xb7\xa1\xe1\x6f\x6d\x08\x7b\x91\xe3\xdb\xea\x2d\x31\x85\xf3\xda\x7a\x72\x64\x09\x4b\x5b\x10\x62\xe8\x8e\x08\x13\xb0\x75\x46\x64\x52\x6c\x8b\x5b\xc8\xe4\x6c\x51\x57\x3b\xbe\x71\x21\xa1\x76\x41\xc6\xfb\x24\x21\x7d\x7e\xfc\x2d\x4c\xc7\x11\x6c\x35\x29\x36\xb8\xbf\x70\x41\x6a\x7e\xe8\xb3\xf1\xb9\x84\xc3\xd5\xce\xa9\x6a\xb4\xa0\x93\xb7\x1a\x26\xba\x90\x86\x72\x15\xee\xc9\x21\x58\x6e\x41\xda\xcd\xe7\xb7\x5f\x4a\x69\x48\xff\x96\x90\xb6\x6a\xae\x6a\xe1\x6c\x70\xc1\x42\xa9\x35\xbb\x82\xc5\x9a\x59\x41\x22\xdc\xea\xc9\x64\xed\x97\xbd\xc2\xe1\xe1\xb8\xaf\xf6\x9b\x5d\x23\xce\xf7\x16\x4c\x7c\x7c\x20\x0d\x25\xdb\xc5\x16\x23\x4b\x74\xc1\x0e\xb4\xcf\x1c\xbb\x71\xb9\x63\x35\xcf\x35\x88\x7f\xab\x27\x59\xb5\x4b\xb1\x8f\x93\x53\x9b\x90\xc9\x91\x44\x39\x64\x2d\x9c\xe0\x55\x2f\x05\x8a\x2e\xc5\xea\x2a\x77\x29\xf6\x71\xea\x92\x55\xa1\xac\x38\xee\x5b\xf0\xa1\xd4\xaa\x9c\xba\x74\x4a\xa1\xc9\x76\x09\xa9\xf9\xb6\x93\x58\x2e\x9c\xfe\xd5\x93\xf7\x4a\x4c\x57\xed\x44\xe0\x46\xbf\x7f\xb9\xc7\xbf\xbe\x45\x02\xc9\xa0\x38\xdd\x41\xc0\xd7\x82\xcc\x6b\x3b\x70\x0b\xb3\x2e\xc1\x66\x74\x55\x97\x60\x33\x6a\x3e\xf7\x03\x19\x9f\xf4\x8b\x4b\x5e\xb2\x0c\x6a\x78\x6e\x97\x7e\xb3\xb4\xdf\x43\xc8\xac\x3f\x45\x68\xbb\x55\xc8\x02\x3e\x4d\x08\xbf\xca\x73\x7a\xd9\xfd\xe9\x42\x56\x4c\xbe\xc9\x48\x3e\x6e\x9c\xac\x3d\x4b\x65\x61\x37\xd8\x73\xe0\xe4\xac\x9a\x8d\x5a\xb2\x5c\x95\xbd\xab\x54\xae\x22\x3c\xb7\x90\x15\xba\x60\x06\x26\x21\x43\xc8\x8f\xf0\x0d\xcc\x42\x48\x23\xd3\x50\x91\xab\xe4\x48\x0e\x77\x4b\x91\x51\x8a\x73\x95\x0f\x2c\x94\x76\xe1\xa0\xf4\x40\xe6\x2a\x87\x90\x0b\x55\xa5\x7d\x6e\xde\x2a\x45\xda\x2f\xb8\x8a\x04\x8b\x2d\x38\x29\xb5\x2a\xb4\x62\x91\x24\x0b\x73\xc5\x29\x54\x35\xed\x35\x88\x2c\xab\x27\xed\x95\x88\xaf\x6a\xda\x6b\x74\xb9\xb9\x4a\x0c\x72\xb3\x47\xbf\x9c\x1d\x55\x53\x57\x83\xdb\xe0\x16\xa4\x5d\x89\xb0\x22\x63\x8a\x54\x57\xa5\x0d\x79\xbd\x0e\x4b\x8b\xb0\x01\xab\x90\xe5\x56\x12\x54\xac\xba\x22\xe5\x54\x07\x98\x6d\x17\xb5\x4f\x68\x59\xed\x1c\x0c\x17\x92\x35\x17\xac\xc0\x5b\x68\xcd\x36\x84\x55\x57\x5c\x6e\x0f\x86\x8b\xcb\xed\xd1\x6f\x71\xb9\x9b\xb4\x21\x73\x37\x76\x14\xbb\xdc\xdc\xa4\x8d\x46\x43\x4d\xc1\xd0\x1e\x21\x42\xb4\x59\x33\x76\x4d\x97\x7f\x3d\xdc\x2d\x4a\xdc\xe6\x10\x5c\xdf\x66\x27\x4b\x15\x72\x29\xb3\x4b\xe6\x21\x6b\x71\xc9\xc8\x46\x2d\xc5\x25\xeb\x2e\x59\xa5\x2a\x5d\xf4\xa2\x30\xc3\x27\x2f\xc5\x11\x75\x39\xb4\x9f\x8f\xa9\xd9\x01\x76\xb6\x3d\x8b\x03\xec\x32\xac\x92\xc1\x43\xd6\xae\xae\x36\x88\xb8\xab\xab\xfb\xb0\xa1\xf3\x31\x94\xa3\x72\xee\x2e\xa8\x93\x43\x10\x71\x29\x4e\x8e\x47\xb0\x5d\x21\xa3\x03\x5f\x14\x6e\xdc\xab\x17\x44\x8b\x55\x73\x57\x83\x68\xb1\x05\x21\x6f\x85\x0c\x31\xc5\xde\x44\xbc\x20\x5c\xa6\x51\xa0\x4f\xde\x95\x39\x21\x3b\x6b\x23\x98\x9d\xda\x95\x2a\xf8\xe4\xa5\xd8\x2b\x7d\x72\xc2\xc3\x6a\xf7\x94\x35\x14\x32\xfa\xe4\xa1\x90\x09\xc7\x7b\xfa\x8c\x5b\x52\x22\xfd\x5a\xf0\x73\x3f\x56\x70\xad\xde\x82\x4c\xc6\x19\x1f\x56\x6c\x39\x23\x80\xb9\xb9\x74\x6f\x41\x08\x47\xa9\xc9\xdd\x5a\x11\xd7\x81\xac\xb6\x42\x74\x48\x47\x0e\xd7\xad\x80\xb8\x4e\x29\x4b\xa4\x4c\x25\xd0\x39\xe2\x3a\x1f\x7f\x81\x96\x22\x08\x43\xc9\xa7\xef\x5f\x1d\x82\xbe\x7f\x68\x22\x90\x05\x5b\xea\x69\x08\x13\x30\xb4\x18\x74\xe7\x43\xb9\xa8\x3b\x5f\x4f\xbb\x84\x00\x85\x62\x92\x20\xe9\x08\x4d\x84\xc1\x34\xd7\xd3\x2b\xd4\x6d\x68\x22\x70\x12\x5c\xea\xe9\x24\x33\x59\xed\x95\xde\x7d\xb5\x66\x1d\xf6\x50\xa6\xea\xa1\x87\x66\xeb\xb4\x21\x55\xa8\x5e\x76\x55\x67\x12\xd9\x5c\xaa\x92\xcf\xe3\xdb\xd0\x8a\xd5\xe9\xae\xaa\xc1\x17\xae\x54\x68\xd4\x12\xe8\x5c\xaa\x6a\xd0\xe3\xdb\xaa\x20\x34\xed\x35\xb4\x27\x5e\x38\x1e\xa1\xb4\xd6\xe9\xae\xca\x45\x9d\xee\x50\x5a\x7b\x7c\x1b\x9a\xbc\x1c\xdf\x46\x68\xf2\x7a\x07\x79\x55\x88\x7a\xe9\x78\x55\x6a\x92\xd8\x1a\xa1\xa4\xd7\xf9\x0d\x07\xf8\x3e\x9d\xec\xc2\x17\x90\x86\xb8\x75\x2f\xc2\xf1\xbe\xa5\x0d\x25\x1f\x69\xaf\x11\xcf\xf9\x98\x5e\x39\x5e\x4e\x64\x23\x1c\x11\x27\xb2\x11\x76\x92\x10\xe3\x52\x8b\xdd\x40\xef\x85\x7d\xe6\x76\xe8\x52\x95\xa9\x9e\xd7\x86\x82\x5f\xef\xb7\x2a\x62\xf5\x6f\xab\x8a\xce\x1b\xb1\x42\xb5\xc0\xc5\xcb\x85\xed\xf3\x6a\xea\x6a\x84\x46\x01\xee\x6e\x84\x56\x80\xc7\xb7\xe1\x6c\x7c\x9c\x0d\x15\x1d\xb7\x5a\x95\xaa\x2a\x23\x93\xb5\x54\x95\x15\x99\xac\xa5\x6a\xe3\x7e\xe4\x14\x8d\x5a\x1d\xe9\x50\x87\x78\xd6\x1b\xce\x24\x97\x09\x97\xda\x0e\xf4\x63\x66\xe3\xa3\x28\x28\x74\xc3\xc3\xdd\xaa\x00\xfe\xca\xfb\xce\x24\x57\xe2\x96\xaa\x00\x26\x3c\xb9\x90\x23\xbb\x20\x8b\xe2\xc4\x7a\x33\x55\x38\x93\x5f\x47\xa4\x86\xc1\xdd\x2d\x55\x2d\xe1\x65\x53\xe1\x3c\x1b\x8f\x1c\x4e\xec\xd7\xf5\x55\x95\x7d\xe5\x5f\x0d\x0a\xe2\x91\x4b\x55\x5a\xe3\xfd\x06\xb1\x82\x35\x2e\x69\x92\x89\x8d\xcb\x4e\x32\xb1\x81\x7f\x5b\xd8\xb9\x5d\x90\xe5\x46\xa8\xc6\xe5\x10\x98\xf6\xe0\x24\xb8\xb0\x55\xbb\x20\x8c\xc3\x2a\x04\x97\x3e\x15\x76\x5f\x6b\x18\x62\x1c\xe8\xdb\xe0\xd2\xa7\x52\xc3\xaa\x64\xba\x76\xff\x52\xf0\x07\xb7\x9e\x06\xf7\x06\xd6\x93\xd8\xca\xbd\x81\x0b\x6e\xfd\xda\xd0\x37\x26\xb6\x96\x86\xbe\x89\x04\xe1\xb0\x07\xbc\x20\x13\xc9\x8a\x05\x81\xbf\xc1\xfb\x15\x35\x3c\xcd\x65\x87\x78\x41\xe8\xb7\x5b\x15\xa6\x18\x1b\xc6\x0b\x22\xbd\xba\x35\x23\x18\xd8\x3f\xae\x66\x94\x06\x57\x10\x2e\x48\xbb\xdd\xdf\x2a\xf9\x58\xfc\xc0\xbd\x0d\xe2\x19\x17\xb4\xcf\x74\xd2\x48\x5f\xc2\x1b\x17\xf4\xe3\x2e\x64\x3d\xfb\xf9\x98\xd9\x40\xf0\xc7\xed\x78\x51\xb7\xe1\x69\x6e\xb8\xda\x37\x3b\x4e\xec\xd4\x2e\x08\xdf\xb8\xf8\xb7\x34\xe8\x6a\x13\x16\x5c\xd8\x8b\xad\xa1\xb7\xdb\x6e\x6b\x46\xa8\xb0\xf9\xba\x20\x1f\xdf\x56\x85\x6d\xcd\x25\x83\x35\x88\x12\x2e\x24\x3d\x2f\xd8\x80\x55\x68\xbb\x4d\xc8\x88\x6e\xa1\xb3\xc1\xce\x40\x70\xb8\x5b\xc8\x63\x5e\x90\x37\x13\x90\xc7\xa1\x8b\x1a\x98\x26\x5c\xe9\x7c\x5f\xd7\x75\x3e\x66\x9e\xf1\x06\x43\x07\x96\xbd\xd8\x1a\xfb\x60\x78\x7d\x6c\x55\x8b\x41\x17\xf4\x63\x76\x97\xd9\xf5\x5c\xf0\x4d\xe9\xf9\xed\x17\xe8\x78\x97\x00\x5e\xb0\x08\xe9\x73\xb6\x1b\xb0\x2f\x3b\x99\xd5\xf4\xd3\xc2\x4e\xe6\x82\xac\x11\xc2\x3b\xb2\x2f\x48\x20\xad\x23\x2f\x25\xb9\x6a\xae\x42\xab\x2a\x42\xc7\xdb\x84\x03\xd8\x85\x76\x92\x21\x6c\xff\xf6\xbe\x08\x14\x5d\x90\xc9\xc9\xd6\xbc\xc8\x6c\x95\x26\xe1\x9b\x52\x6b\x1e\x74\x03\x1b\x21\xf2\xe0\x21\x8b\x6c\x43\xc3\x9a\x1d\x82\x9c\x52\xfc\x78\xfa\x5b\x47\x24\xe5\x14\x6b\x9e\x4c\x2c\xfb\x15\x51\x3a\xab\xc0\x7e\x45\x14\xb6\x3e\xd8\x60\x5c\x90\x3e\x23\x35\xa3\x74\xfb\x4c\x55\x05\x2b\xa0\x29\x08\xb7\x07\xbb\x4a\xbb\x90\x86\xa4\xc9\x22\x6b\x28\xdb\x0a\x5e\x0a\xa9\xba\x35\x8a\x2b\x88\xd5\x1e\xc5\x35\x52\xaa\xd4\xce\x72\x63\xd7\x44\xb5\x93\x0a\x0a\xcf\x98\xdd\xf7\x0b\xee\x44\x2a\x6e\xf4\x05\x37\x17\xf9\x06\xc8\x82\xc8\x1c\x99\xbd\x9e\x4e\x16\x21\x33\x29\x3b\xfb\x2a\x8e\x5b\x79\x26\x9c\x96\x16\x7e\x8c\x62\xef\x12\xbf\x61\xc2\xee\xa1\xc5\x0e\x04\x5e\x35\xd3\x50\xeb\x10\x3f\x36\x51\x10\x17\x5c\xdc\x52\x33\xe1\xb4\xb8\xa5\x16\xdb\x39\xbc\xaf\x4b\xc6\x69\x92\xd9\x73\x3e\xfe\xf2\xb1\x35\xc3\xb0\xfd\xfa\xe5\x7d\xfc\xeb\xdb\x42\x4d\xb6\x13\xbe\x71\xc2\x08\x38\x44\xf6\x05\x94\x05\x1f\x20\xa3\x6f\x58\xa2\xee\x4e\x71\xed\xf4\xaa\xaa\x0a\x37\xa3\x74\xa5\x97\x8e\x64\x77\x5e\xbb\xa3\xc7\xe9\x0e\x4f\x82\xbb\x32\x66\x47\xeb\xde\xd7\x25\xfb\x6e\xdf\x70\xc1\x47\xc8\xdc\xc8\xcd\xfb\x80\x76\x95\x56\xe1\x9b\x52\xe6\x46\x77\xcf\x9d\x90\xd8\xee\xde\xfa\xd8\x76\xf1\x70\xdc\x18\x89\x7d\x5e\xbb\x4a\xf9\x38\x16\xb1\x2f\x18\x42\xd6\x13\xe3\xc3\x14\xd2\xe2\xe6\x46\xec\x23\xd8\xfb\x22\xc8\x74\xc1\x0f\x30\x09\x19\x7e\xb1\x66\xc5\x24\x26\x51\x70\x35\x78\x71\x27\x24\x76\x3c\xee\x2a\x2d\x42\x1a\x92\x05\x49\x3f\x2d\x6e\x14\x44\x4c\x66\x52\x8e\xdc\x4e\xda\x82\xb7\x70\xf0\xb1\xed\x4e\xe6\x0a\xb3\x26\x42\xd6\xd7\x8e\x09\x29\x54\xf6\xd5\x0d\xeb\xf2\x1c\x57\x1c\x17\x5d\xf2\x18\x76\x52\xf6\x1d\x88\x2b\xfd\xe8\xd8\xb7\x16\xaf\x52\xa1\x84\xa4\x92\x24\xc6\xb6\xe8\x47\xc7\x50\xf0\xb7\x53\xca\x00\x65\xb2\xed\x77\xad\xd2\xf3\x31\xdd\x50\x67\x0e\x05\x7f\xf3\x63\xd7\xb7\x9d\x52\x56\x50\x29\xa2\xdf\xd5\xd5\x7b\xfb\xc6\xe3\x55\xea\x78\xa7\xed\x3a\xa2\x69\x43\x0e\xc1\xc9\x69\xac\xbe\xc1\xbc\xfa\xe0\xb1\x2f\x41\x5a\xa5\x21\xa4\xdd\x7e\x4a\x79\x1c\x48\xdd\xe5\x21\xab\xbe\x31\x97\xac\xaf\x8f\x4f\xa9\x1f\x17\x21\x33\xa9\xe5\x42\xa8\x6f\xd1\xdd\x8d\xe9\xd4\x29\xcc\x0c\xf5\xd5\xdd\x8d\xe9\xd4\x39\xcf\x64\xc1\xfa\x64\xd1\x82\x2f\x20\x55\x11\xdb\x5b\xf4\x33\x83\x13\xd9\x12\xda\x17\x2f\x45\x8e\xa6\x27\x47\xb0\x45\xd7\x31\x5e\x12\xbf\x13\x4b\x16\x6c\xd1\x57\x0c\x1e\xc6\x2a\xba\x7f\xe1\x11\xac\xee\x5f\xbc\xb4\x02\x9c\xf6\x7d\xc8\x7a\x5f\x49\xa9\xf9\x82\xbc\x93\x46\x81\x87\xac\xba\x61\xf1\x9a\x0f\xa5\x8f\x90\x45\xc9\x07\x32\x1b\x8a\x02\x0f\x59\xf5\xac\xc2\x67\xa5\x74\xa5\xc8\x82\x5d\x55\xf1\xf1\x9b\x05\x4d\xae\x82\x6f\x41\xe9\x68\xc5\x79\xed\x49\x41\x81\x9f\x59\x74\x78\xe2\xed\xfa\xca\xdd\x5c\xa0\x54\xf4\x70\xe2\x8d\x86\x49\xae\xe0\x7b\x38\xc0\x10\xd2\xae\x6b\xb4\x33\x5b\x17\x4c\xc2\x17\xf0\x16\x32\x84\x72\xaa\x62\x08\xe9\x97\x51\x3d\x35\xde\x48\xeb\xa4\x4d\x40\xda\x6b\xd1\xfd\x31\xed\xb5\xe8\xfe\x84\x1e\xeb\xf1\x77\xc8\x82\x2d\xc7\xdf\xd9\xe7\xb5\xab\x2a\xe0\x07\x03\x22\x69\x40\x78\x22\x7b\x5c\x98\x8f\x33\xa7\x60\xf8\x48\x47\xb2\xfe\xa7\x5b\x15\xd3\xfc\x09\x3b\xe9\x6f\x9d\x66\x99\x9b\x1c\xd9\x12\x32\xf7\x47\x2a\x93\x9b\xb9\x8a\xa9\x84\xfc\xfa\x71\xbc\x52\xf7\xc7\xf1\xf6\x03\x3f\x40\x7e\xfb\xc5\xbc\x48\xd2\xbe\x3e\xe9\x71\x1e\xbe\x92\x86\x76\xcc\x17\xce\x48\xda\x22\x5f\xdb\x55\x3e\x71\x01\x72\x39\x76\xf9\x17\x33\x2e\x69\x3d\xe3\x84\x96\xd0\x80\xf8\x62\xf2\x86\x4c\xf6\x45\x96\x27\xad\x67\xf2\x5c\xeb\x31\x79\xb9\xb5\xb8\x1e\x93\xf7\x8b\x7c\x22\xee\xb9\x8e\x0b\x15\xca\xeb\x8a\x75\xec\xf7\x21\x17\x6c\x40\xde\xc9\xd2\x9a\x1c\x97\x84\x83\xbe\x1d\x1c\x76\x56\xad\xc9\xb1\x9d\xc3\x55\x7a\xe0\x04\xee\x6e\x8c\x7d\x03\xf0\x82\x45\x58\x81\x55\xb8\xdf\x14\xe3\x0a\xeb\x4a\xfa\xe9\x2a\x6d\x42\x86\xc0\x4c\x0e\xfc\xbd\xaa\x85\x34\x12\x26\x3e\xf7\x24\xd6\x91\x4e\x37\x42\x58\xf9\xf8\xc0\xad\x51\x89\xd5\xae\xa4\x81\x2e\x98\x84\x8c\x08\x91\x33\x38\xfb\xac\xa4\x0e\x55\x92\x44\xd7\xc7\xb7\xb0\x50\x7a\x20\x23\x82\xb9\x07\x67\x9f\x55\x53\x6c\x70\x7e\x59\xb5\x7a\xc6\xf6\x06\xd7\xc7\x59\xc8\x88\x9c\x76\xdc\xbf\xca\x05\xd7\x75\xdc\xb2\x3e\x82\x81\x24\xd1\x05\xad\xca\xd9\x70\xda\x89\xde\xad\x5a\x2e\x03\x17\xae\x5e\xf6\xf9\x91\x08\xcb\x29\x85\x54\xec\xf3\x23\x5b\x21\x27\xc6\xd3\xa9\xd9\x4e\x3e\xd2\x06\xd6\xc7\xc0\xdf\xab\x5a\x1f\xa6\x76\xd6\xcb\x5e\x3d\xc1\x6c\x60\x8c\x98\xe9\x59\xaf\xf3\x5b\x87\x80\x31\x32\x1e\xc5\x55\xb5\x93\xbc\xb0\xa6\xb9\x31\x70\xd2\xaa\xe6\xc6\xc0\xef\xaa\x1a\x14\x23\xcb\x83\xec\xa2\x8c\x2c\x99\xb1\x4f\x32\xb2\x6b\x84\x18\x21\x4b\x74\x95\x9e\xdf\xb2\x0a\x3f\x4b\x21\x24\x84\xcc\xe0\x21\xd6\x8b\x9b\x11\x17\xa4\x1b\x58\x10\x43\x37\x2c\x1d\x38\x58\x5f\x64\xce\xe0\x6c\xb0\x6a\x50\x8c\x2c\x4d\xfe\x2c\xa5\x1b\x3f\x4b\x99\xe7\xe6\x00\x25\x42\x24\xd2\x28\x38\x96\x89\x3d\x97\xc1\x5d\x3d\xf5\xfa\x09\xed\x33\x23\x2a\x92\x19\xf2\x6a\xe8\x4a\x11\x5f\xbf\x20\x13\xdb\x7f\x79\x65\x43\xe5\xd5\xa1\xfb\x4a\x98\x26\xa3\x0c\x18\xb4\x5b\x93\xfa\xe6\xb4\xc3\x03\x7a\xa4\x87\x2c\xc8\x7a\xe2\x67\x8d\xa2\xf6\xc5\x70\x19\x65\xb2\x26\x88\xba\x51\x94\x13\xb8\x5d\xa3\x62\x10\x27\x2c\x95\x51\x5d\x04\xdc\xae\x51\x71\x8d\x93\xdd\xa8\x12\x5d\x9c\xd2\x6d\x21\x25\xbb\xb1\x9d\xb2\x05\xe9\x64\xc5\xf9\x25\x70\xbf\x9a\x06\x5a\x35\x20\x46\x1d\xac\x09\xf2\xd8\xac\xd0\xaa\x3d\x31\x2a\xbb\x0a\xc9\x3e\x73\xf8\x57\xb5\x27\x46\xdd\xf6\x44\xd5\x26\x18\x55\x19\x73\x7a\x85\xf9\x48\x78\x7d\x35\x0d\xb4\x6a\x31\x8c\x8a\x56\x24\xda\xbe\x0e\xdd\xbd\xdb\x9a\x71\xf7\x2a\x8f\x6a\x55\xd3\x40\x2b\x8f\x6a\x2d\xd8\xf8\x38\x0b\x07\x90\x9a\x1b\x0f\x42\x6a\x13\x8c\x1d\x16\xbc\x4a\xbb\xb0\x02\xe9\x55\x43\xe1\x70\xb9\x61\x35\xb3\xb3\x6a\x40\x8c\x86\xb1\x45\xc4\x7c\x35\xd1\xb3\x26\x05\x7f\x63\x72\x08\xa0\xaf\x43\x07\x8f\x88\xf9\x05\xfd\xad\x7d\x76\xf8\xa7\x2a\x68\x3f\xfd\xfc\xed\x17\xc8\x6f\x75\xff\xb8\xdc\x70\xc1\x9b\xd2\x26\x2c\x94\x86\xd0\x5e\x9d\x8f\x37\x5d\x11\x8b\x5f\x4d\xe5\xac\xe9\x7c\x8c\xc9\xc0\x5d\x87\xd5\xcc\xce\x9a\x7e\x7e\x9c\x29\xbd\x85\x10\xc3\xcf\x8f\x03\x78\x4a\x6d\x88\xd9\xe0\x84\xb2\x72\x2d\x73\x35\x2b\xb4\x72\x0f\x73\x25\xef\x73\x7d\x9c\x85\xfe\xd6\x8f\x61\x0d\xae\x65\x5e\xd0\x52\x7f\xeb\x5c\xa9\x8e\x02\x75\x74\xfb\x31\x37\xe4\x56\xad\x80\x11\x4e\x8e\x4a\x32\x24\x15\xd5\x60\xa0\x6f\x8f\x15\x10\xbe\x3b\xca\x46\xc1\x08\x24\xfd\xfd\x13\x42\x57\x38\xff\x83\x50\xdf\xca\xd5\xca\x75\x84\xe3\xd5\x28\x08\x09\x49\x45\x17\x30\xdd\xad\x66\x0b\xb8\xec\x56\xb3\xe1\xa3\x56\xae\x56\xae\xa4\x76\xae\x52\x6b\x76\xf8\xd9\x11\xe1\x85\xde\x2a\x3a\xbd\xd0\x5b\xfb\x82\xa3\xc2\x9a\xfc\x78\x38\x39\x9a\x1b\xc3\xc9\xf1\xb7\x03\xad\x78\x6c\x93\xe1\x78\x35\x46\x86\xab\xaf\x0a\x1d\xae\xfe\x4f\xc8\xa3\xac\x9a\x1b\x23\xec\x95\x10\x13\xe9\xd6\xa0\x20\x98\xb7\xa6\x9f\x90\xe1\xab\x8d\x87\xbc\xf0\x13\x22\x0a\xd4\xc6\x7a\x92\xb7\xea\x77\x4a\xa2\xea\xdb\xfd\x8e\xd4\x2a\x0d\x21\x6b\xa4\xbe\xd5\xa3\xbb\x55\xb0\x13\xef\xf7\xae\xbf\xde\xe3\x37\xb3\xb3\x1e\x23\x60\x22\xcc\xb8\x19\xb0\xfa\x5e\x55\x3d\x46\xc0\xb4\xcb\xaa\xea\x97\xd3\x6c\x2f\x5e\x72\xa4\xbd\x78\xf9\x9c\xad\x6a\xfe\x15\x76\xaa\x09\x61\x6e\x1b\x7a\xb1\xe3\x74\xab\xaa\xc9\x0a\xad\xe9\x34\x84\xb7\x7b\xab\xb9\x5f\x32\xd9\xa9\xca\xd1\xab\xc8\xc9\xec\xac\x47\xeb\xe3\xdf\xd5\xa3\xf5\x5f\x52\x99\xca\xf8\xe5\xac\xab\x8c\xdf\xd2\x91\xca\xf8\xe7\x8b\xbc\x59\x88\x1e\x38\x1f\x2b\x71\xcf\xc7\xd2\x91\xda\xd7\xb7\x6f\x8f\x22\xd7\xa1\xbb\xd5\x8a\xef\xc1\x3c\xab\x06\xdf\xca\x89\x6e\xcd\x4a\xdc\x53\xea\x88\x4e\xa9\x8b\xa2\x92\x7c\x2b\x44\x55\x92\x1f\x85\x28\x6e\xc9\xf8\x60\x4f\xdc\x2a\x58\xde\xce\xa9\x47\x2b\xf2\x72\xea\x75\x5b\xd5\xc7\x35\x3a\x55\xb9\x0a\xf8\x21\x83\xb3\xc0\x4a\x96\xd9\x82\xcc\x46\x58\xb3\x92\x40\x6d\xfc\x51\x12\xa8\x8d\x3f\x4a\xbe\xd3\xae\x3a\x44\xf5\xcb\x1b\x36\xf5\x68\xc5\x0f\x16\xc4\xad\xfa\x25\x8a\xb6\xde\xaa\x6e\xa2\x68\xeb\xad\xae\xe6\xd1\xce\x7a\x54\x28\x51\xb4\xf5\x28\xc9\x8f\x52\xe4\x0c\x61\xfa\x88\x32\xf0\xeb\x5c\x39\x22\x9e\xc3\xa9\xf7\x75\xa0\x43\x68\xc2\xf9\x87\x9f\x0f\x30\x2f\xb8\xc5\xf3\x51\xa1\x5f\x9f\x67\x56\xfd\x7e\x15\xa2\x1a\x05\x24\x98\xd6\xa3\xd9\xbe\xf8\x30\xb7\x36\xc2\x97\xf1\x3e\x0e\xff\xcb\xf6\xd4\xe3\x78\x75\xe1\x48\x63\xa8\xf3\x42\xd2\x93\xc6\xb0\xe0\x5e\x14\x35\xdb\xbc\xec\xc6\xed\xc7\x88\x3a\xb2\x1a\xaa\x09\xa6\x55\xdd\x35\x79\xb4\xb3\xaa\x9d\xe6\x85\x66\x23\xe7\xa1\x4e\x2e\x23\xaa\x2a\x2b\x12\x4c\x57\x69\x05\x9e\x3e\x37\xe1\xff\xf0\xc2\xf4\x82\x95\xd2\x2e\xfc\x50\x1a\x42\x47\x04\x4c\x30\x1d\x09\x12\x95\x2c\xd1\x05\x93\x90\xdf\xa2\xbb\x66\xc2\x02\xe6\x3a\xc3\x6a\x0e\x69\x55\x77\x99\x34\x5a\xd5\x5d\x33\x21\xcb\xd5\x4e\x33\x61\xc4\x93\x4d\xb1\x20\x94\x83\xb2\x9a\x09\x65\xf5\x24\x7b\x85\x4d\xa4\x3a\x9a\x09\x0e\x7d\x6e\x3b\x09\x87\xaa\x9d\xa6\x3e\xaa\xda\x69\x72\xe9\x6d\x55\x1d\xcd\x24\x79\x67\xdb\xc5\x3d\x78\x5c\x32\x5d\x56\xf5\x8f\x19\xa6\x55\x0d\x33\xef\xee\xc7\xb7\xd0\x6e\x3c\x42\xa8\xbd\x9c\x8f\xdf\x94\xfe\xda\xe2\x9f\xb7\x33\x87\x68\x9f\x37\xc6\xf4\xe3\x6a\x73\xe8\x58\x95\xc7\xf3\x46\xc4\x3e\x2e\x2f\x57\x13\x55\xe5\xb1\x29\xa4\x55\x01\x3c\x6f\x17\xdf\xd5\x26\x6a\xb6\x72\xeb\xe9\x82\x74\x19\x41\x38\x1f\x69\x10\x51\x37\x1f\x84\xe8\xf3\x1c\xc8\x7a\x22\xf9\xe6\xe3\x7a\x22\xdb\xe6\x23\x57\x21\xdb\xa6\x07\x87\x64\x7c\x2c\xc8\x6f\x91\x40\x26\x98\x56\x25\xd0\x7c\x1c\x60\xd8\x0d\x54\x26\xe9\x21\x0b\xd2\xab\xb0\x66\x09\x16\xc3\x65\xea\x75\x3e\x92\x86\xa7\x7d\x8f\xb4\xe0\x69\xdf\x23\x2d\x90\x33\x5a\x65\xee\x99\xb1\x44\x1f\x49\xc3\xc3\xbf\x47\xd2\xe0\xf5\xd3\x2a\xeb\x9b\x33\x5a\x0f\xeb\x93\x33\x5a\x0f\xeb\x13\xdc\x5a\x0f\x73\xe7\xb0\x93\xf4\x39\xe3\x74\x3f\xd2\x11\x0f\x60\xd6\xc3\xdc\x3a\xb0\x87\x9b\x33\xe6\x05\x57\x4c\x2e\xb8\xf5\x2d\x69\x29\x75\x72\x73\x51\x3d\xfc\x9a\xf1\x70\x48\x4b\x59\x90\x5e\x25\xbb\x81\x8d\x40\x96\x4a\x9d\x05\x99\x4a\x8e\xd2\x82\x96\xd2\x0d\x42\x50\xeb\xe1\xaa\xc2\x91\x0e\x59\x2a\x0b\x3e\x94\x26\x61\x05\xde\x42\xa6\x5d\x02\x26\x1b\xb5\x1e\x02\x26\x22\xb5\x1e\x8a\x2d\x48\x5c\x9e\xaa\xab\xb3\x60\x7a\x92\xa6\xb2\x60\xe6\x63\x3b\x89\x96\x20\x47\xa9\xce\xda\xfd\xf8\x16\x32\x93\xcf\x81\xd6\xcc\x6c\x54\x97\x5b\x22\xe4\xaa\xa2\x7a\xe8\x4a\x87\xf6\xc1\xae\x99\x3a\xb4\x87\xae\x88\x2a\xad\x87\xae\xaa\xd3\x2e\x5d\x55\xc5\x86\x5c\x56\xa7\xbf\xb5\x2a\xa7\xbd\x9d\x8f\xe9\x15\x96\xcb\x6c\x98\xcb\x87\xea\x1a\x07\x11\xe4\xd2\x54\xd3\x4f\x2b\x39\x4a\x0b\x5a\x55\x15\xd2\x2b\x89\xa1\xa9\x52\xb0\x6b\x4c\x4e\xad\x87\x18\x9a\xe4\xcd\x06\xc5\xd4\xed\x24\x0f\x67\x41\xe4\x93\xa2\xa0\x49\xc0\xc5\xaa\xe4\xdf\x6e\x37\x86\x35\x5b\x15\xfc\x7b\x96\xbb\x29\x91\xfa\xf9\x2d\x55\xb9\x46\x1c\x42\xd6\xb3\x28\x0d\x76\x3e\xd3\xde\x9c\xba\xea\xf0\x95\x57\xdd\x86\x9c\x49\x8c\xa0\xa9\xdb\x49\x76\xd0\x82\x4c\x9d\x52\xa5\xcb\xec\x4a\x15\x5d\x47\xae\x10\xad\x64\x98\xae\x52\xba\xd1\x31\x91\xb8\x45\xb2\x92\x52\xba\x60\x11\x32\xcf\xca\xba\xee\xea\x2b\xeb\xba\x24\xea\x78\x39\xa2\xac\xa7\xcf\x1e\x51\x3e\xf1\xcb\x6b\x99\xab\xf9\xa6\xf5\xe7\xf8\xd0\x37\x67\x7c\x81\x49\xf4\x28\xf9\xe2\x8c\xbe\x0b\xfd\xb8\x0a\xdf\xc0\xf3\x31\x62\x03\xb3\x66\x06\xd6\x64\x56\xf2\xf1\xf2\x4a\xfd\x59\x15\xd6\xe4\xcf\x8f\x11\x57\x59\x61\xc6\xa5\x40\xf5\x9f\xe1\x04\x32\x37\xc1\x79\xde\x3f\xc3\xdd\xab\xac\x01\x31\xe0\xc8\xac\x6c\xe3\xda\x9f\x9a\xb5\x27\x46\xf8\xdb\x26\xac\x94\xde\xc2\x4e\x69\x17\x7e\x29\xa5\x21\x4e\x28\xab\x79\x46\xe6\x7d\xd6\xac\x6c\x1b\x2c\x60\x56\x98\x11\xfb\x59\x4d\x2c\x9a\x03\x91\xf3\xb3\x1b\x0e\xe1\xb4\xcb\x7a\xe6\xfb\xc0\x46\xe9\x23\x64\x80\xf7\x81\x6f\x4a\x99\x1c\x02\x45\xab\x49\x49\x73\x62\x4e\x9d\x3e\x7b\xe8\x78\xfa\xcc\xa1\x63\xcd\x8a\xba\x89\x75\x65\x9e\x91\x59\xa1\xd5\x3c\x23\xd2\x40\xd7\x6f\xfd\x18\xfb\x29\x63\xc5\xce\xe9\x78\xd5\xd5\xd3\x01\x3a\xde\x09\xc1\x66\x4d\xb1\xe9\x78\x1d\xa0\x7e\xe6\x19\x11\x2f\xaf\xd4\xac\xa1\xa6\x9f\x79\x46\xf4\x42\xdf\x9a\x66\x35\x5f\xf8\x30\x59\xa9\xf9\xc2\x24\xca\x4a\x7a\x0f\x1d\xcf\x00\x49\x03\xad\x59\x99\xfa\x72\x80\xca\xd4\x17\xbb\x64\xdc\x83\x59\xe7\x3e\x74\x5c\xa5\x56\x85\xc9\x7b\x66\xe3\x85\xd3\x7d\x46\xf4\xc2\x87\x39\x7d\xf6\x48\x32\x6b\x4d\x7a\x06\xc9\xeb\x82\xd5\x07\x5c\x6b\x56\x4c\xbe\x1c\xa0\x5a\xc2\x53\xc6\xac\x96\xe0\x99\x96\x9a\x55\xa1\x5c\xa7\x5b\xb3\x3a\xf3\x2d\x79\x3b\xfc\xb7\x23\x52\x67\xbe\x11\xc0\x67\xbc\x64\x6b\xd6\xac\x88\x7d\xbb\x82\x0e\xff\x8d\xbe\x3d\xe3\x7d\x4b\xde\x8a\xc9\xb7\x2c\xa9\x41\xc1\x65\xbb\x35\x2b\x35\xdf\x98\xcb\x59\xfb\xe2\x3d\xec\x15\x23\xe2\x3a\xdd\x6a\xf6\xd3\x7c\x63\x5e\x99\xfc\xc5\x4b\xb1\x0b\x3a\x04\x1c\x9e\xac\x86\x79\x4b\xed\x5a\x97\x1f\x87\xaf\x66\xd3\xa1\x3d\x33\x49\xe8\x6b\xcd\x2a\x3a\x6e\xd7\xad\x59\xcd\xf6\x91\x36\x9c\x9c\x8f\xa2\x40\xed\xe4\x41\xa2\x89\x63\x3e\xe8\x5a\x73\x3b\x10\x11\xa4\xb2\xfa\x28\x19\xd4\x30\x1f\xac\x2d\xf3\xc8\xe6\xc7\x99\x74\xea\x3e\x6c\xa7\x9f\xb9\xfa\x28\xcd\xfa\xf9\xd8\xaa\xec\x95\x74\xc5\x76\xc6\xfc\x28\x37\x14\xfc\x9c\x49\xd6\xdc\x4f\x29\xd3\xee\xc4\x92\x43\x5a\x73\xff\x65\xe6\xee\xfa\x16\x5e\x57\xf0\x7f\x9d\x1b\x75\xd5\x17\xd1\x6e\x7e\xd3\xfc\x62\xa9\x70\x2f\x64\x35\x85\xb4\x9a\xee\x34\xbf\x4e\x86\x6b\xc2\xe9\x66\x35\xfb\x89\xd7\x5e\x57\xe9\xa9\x0a\xea\x76\x4d\x48\x30\xad\x26\x43\x4d\x0e\x3b\xab\xc9\x50\xf3\x3b\xfc\xb8\x0b\xbf\x94\x5a\x15\x73\x53\x14\xfc\x5f\x27\x43\x8b\xe1\x8b\x61\x6a\x5a\x99\x0f\xb8\xd6\xb2\xf5\x40\xeb\x5c\xc5\x54\x49\x95\x6a\xbc\xc9\xba\x3e\x7e\x84\x74\x63\xeb\x90\xe6\x9b\xac\x95\x64\xa8\x66\xfa\x69\x25\x19\xaa\x75\xfd\xe8\x92\xfc\x2d\x93\xc3\x55\x80\xcd\x37\x59\x2b\x77\xff\xb5\xae\x1f\xcd\x33\x77\x8d\x04\xd3\xd5\xae\xbd\x72\x80\xb7\x1f\x2b\x45\xba\x9d\x54\xa6\x6e\x35\xbf\x60\xe3\x63\x7f\x2b\xdf\xec\x05\x5d\x10\xa1\x12\x0e\xc1\xe1\xdf\x54\xe5\x89\x2c\x57\x4c\x2e\x48\x37\xe2\x16\xbe\xf8\xb8\x0b\x59\x85\x60\x80\x49\x31\x19\x59\xc8\x00\x1f\xab\xe2\x38\x93\x2b\xfa\x16\xf4\xb7\x8c\x28\x39\xfc\xc7\xaa\x1c\x7e\x54\x21\x44\x18\x76\x12\x3d\xcf\x7d\x7e\x0b\xc2\x64\x61\xaf\x10\x2a\x24\x70\x35\x5f\x5d\xad\x24\x70\x2d\x68\xbb\xcc\xc6\xcd\x49\x21\x64\xd6\xcc\x64\xad\xdc\xe7\xd7\xba\xc7\xb7\x50\xdd\x82\x9b\x80\x49\xef\x5a\x90\xa9\xcb\x96\xb2\x57\x49\x3e\x57\x23\x75\x75\xfd\xf6\xc0\x09\x64\x80\xdc\xd4\x54\xb9\xde\x6f\x41\xa8\x3d\x37\xa1\xed\x66\xe1\x07\x58\x84\x10\x43\xb1\x5d\x88\xe1\x10\xb0\x6e\x36\x29\x5a\x0b\x0e\x4a\xa9\xf9\x41\xf2\x91\xb1\xb5\xa0\xa5\x5d\xc8\xc4\x96\xf3\xb1\x0d\x59\x1a\x9b\x72\x0e\xb5\x3f\x2e\x68\x3d\x90\x8f\x2b\xed\x1a\x63\x7b\x78\xe1\x91\x25\xeb\x23\x84\x8f\x6a\x16\xd2\x8d\x74\x4a\xad\x99\xf1\x66\x4c\x95\xc3\x38\x44\xd1\xd6\x52\xab\x90\xb9\x4a\xe7\x63\x6b\x6e\x42\x28\xb6\x32\x84\x7c\x86\xe0\x6f\x71\x2d\xc8\x23\x6b\x3d\xe3\x5a\x70\xc3\x66\xf3\x09\xd3\x4a\x5a\xd9\x82\x15\x48\x27\x3d\xcd\x25\x35\xac\xf1\x48\xe9\x7d\x71\x4b\xe6\x82\x7e\x4c\xaf\x0c\x8c\x3d\xdc\x5d\xec\xf3\xfd\x08\x61\xd8\x56\x85\xf4\xb9\x85\x90\x4e\x76\xa8\x8e\xdb\x96\x2a\x17\x16\x36\x92\x37\x57\x55\xfe\x16\x43\x95\xfb\x0b\x17\x6c\x94\xfe\x32\x73\x77\x7d\xcb\xcc\x29\xea\x74\xba\xb9\xeb\xb0\x75\x4f\x8d\x0f\xeb\x7b\x6a\xcc\xeb\x82\x8d\xf7\x4d\x57\xa9\x5d\x46\x75\xf1\x76\xe6\x82\xd4\x1c\x07\x52\xb3\x32\x46\x1f\xbc\x28\x63\x8a\x8b\xaf\x50\xa9\x78\x1a\x47\x8a\x54\x17\x5f\x19\x53\x71\x3c\x8e\x50\xa9\x12\xac\x72\xa2\xca\x91\x0a\x06\xf2\x3e\x6b\x91\xf5\x09\xde\xad\x55\xd6\xaf\x32\xa8\x62\x83\xe0\xdd\x5a\x65\x7d\x2e\x88\xaa\x55\x6e\xf6\xd8\x98\x6b\x40\x9b\xcf\x8e\xd6\x2a\x73\x57\x69\x5f\xc1\x50\xa1\xfd\x2a\x37\x57\xa4\xf5\x91\x13\x64\x76\xd6\x2a\x83\x7a\xb8\x5b\xe5\x48\x0f\x77\xc9\xf6\x5a\x90\x4e\xe6\x47\xc8\x6f\x65\xb2\xd6\x6d\x97\x86\x3c\xeb\xad\x72\x15\xa1\xbd\xb5\xa6\x53\x0a\x0d\xe6\x22\x0c\x60\x15\xda\x90\xbd\x72\x36\xe4\x0c\x7d\xf0\x92\xed\x24\x5e\x76\xc9\x76\x92\xc3\xdd\x52\x2e\x21\x94\xa3\xb8\x22\x0d\xb4\x56\x15\x4e\x57\x00\x2b\xae\xb8\xf4\xa9\x56\xc9\xac\xa3\x7e\xb9\xe7\xb4\xf5\xee\x88\x24\x33\x4f\x64\x8f\xb8\xea\x12\xbb\xe2\xaa\xb3\xb9\x4e\xbe\xe9\x82\x5b\xb6\x55\x69\xb2\x63\x99\xf1\xd0\x68\xeb\x1d\x53\xec\x08\x33\x9d\xee\x23\xcc\x48\x12\xad\x55\x22\xe4\x55\xd2\x5a\xd5\x3f\xfa\xe0\x55\xca\xe9\xd8\xf4\x47\xd4\x85\xe3\x75\xb9\x03\xc3\xf4\x48\xaf\x70\x41\x15\x57\xdc\xc5\x54\xab\xab\x10\x2e\x99\xab\x10\x2e\x59\xbb\x84\x0c\x50\xe9\x15\x0e\xb0\x9c\xd2\x37\xf0\x94\xb2\x82\xce\xb3\x8e\xf4\x91\x6d\x3a\xd2\xa4\xa4\x2d\x08\x6b\xa8\x25\x42\x7a\x56\xf2\x85\xe3\x75\xda\x03\x33\xfd\x08\xc2\xc0\xdc\x38\x92\x8f\xc4\xcf\x5a\x5d\x14\x1e\x29\xad\xd5\x45\x19\xce\x86\x92\x6f\xb8\xdc\xad\x09\xa1\x9c\xc6\x6f\x47\xf8\xb1\xbf\x75\x36\x94\x8b\x43\xd1\xae\x5c\xd4\x09\xaf\xae\xe0\x70\x80\x2e\xca\x90\x61\xd5\x3f\xfa\xe4\x55\x85\x33\x5d\x32\xd7\x48\xcf\xb9\xba\x46\x44\xef\xd6\xaa\x4a\x99\x18\xc8\x47\x12\xea\x2a\x73\xfd\x5b\xeb\x53\x8a\x75\xc9\xa6\x43\xd0\xac\x9b\x38\x0f\xd5\x15\x9c\x4a\x24\x17\x85\x1b\x93\x6a\x75\xda\xa7\x32\x56\xa3\x6f\x4a\xb1\x1a\x7d\x1e\xfd\x16\xad\xbc\xe9\x0a\xb6\x5f\xee\xf1\xb7\x3e\x5d\x40\xc5\xb3\x4e\xf7\x11\xcf\x3a\xce\x47\xe2\x7a\x7c\x5b\x5d\x04\x5d\xe3\xa2\x19\xe7\x89\x6c\x75\x4d\x0c\xcf\x3d\x12\xf7\xc5\x08\x8e\xc4\xe5\x86\xa4\x5a\xd5\x30\x2f\x34\xe8\x11\xa2\x2f\x7a\x75\xa4\xa6\x67\xae\x55\x1b\xe8\x8d\xe9\x59\x35\x7a\x3c\x64\xad\x76\xf2\x2d\xdf\xd8\xab\xb7\xd3\x1c\xe7\xe3\xce\x6f\x9b\xf0\x05\x64\x22\x3d\x82\x3d\x12\xf7\x8d\xa4\xaf\x5a\xfc\xbc\x42\x5a\xab\x1a\xc6\x13\xd9\xaa\x49\xe4\x89\x6c\x8d\x53\xd5\x97\x52\x7b\xa5\xd8\x70\x36\x3c\xaf\x6d\xce\x06\x61\xb3\xb5\xa9\x70\xde\xac\x42\xd5\xac\xe1\x9e\xde\xda\xd4\x3f\x86\xcd\x56\xed\x98\x0f\x42\xf4\x88\x67\xbd\xdd\xe6\x5c\x7d\xd8\xdb\xe1\x9e\xd3\x05\x83\xd2\x03\x27\x30\x84\x9b\x7e\x9b\xe3\xd5\xf9\xe5\x9e\xd3\x05\xa9\xd9\xf1\x7e\x30\x3e\xb8\xe7\x74\x41\x16\xe5\x3e\xa5\x5f\x3e\xb6\x1b\x4e\xac\x36\xd0\x07\x1b\xb7\x6a\x03\xe9\xfc\xb6\x33\x22\xe8\xb7\x9d\x11\x71\x72\xd6\xce\x10\xa4\x0d\x8d\x9e\x8f\x73\xa5\x4a\xd1\xdb\x6d\xa7\x1b\x6c\x72\x1f\xe1\x4d\x0a\x69\x6d\x76\xe3\x0b\x73\x37\xbb\xf1\xc5\x32\xab\xcf\x29\x65\xea\x9e\x53\xca\x88\xd4\x4e\x5f\x27\x47\x3d\x40\x0a\x69\x6d\x6a\x27\x1e\x43\xad\x4d\x85\xc3\x7d\x4a\xb5\x9d\xaa\xe4\x85\xa7\x09\x27\xd0\x9a\x1d\x6f\x3e\xbf\x65\x62\x75\x4b\xbe\xec\x92\xd5\x53\x8a\xbf\xd7\x34\x37\x3c\x18\xae\x3f\x21\xdd\x40\xff\xf8\x38\x6a\x25\x07\x6d\xc1\x07\x58\x85\x4c\xec\xcf\x8f\xf9\x2d\x2a\x25\x3c\x09\xe6\x92\xab\xe6\x4b\xaa\x95\x4c\xb1\xc6\x4b\xaa\xeb\xb7\xd6\x8c\x82\xad\xa7\x66\xf9\x08\x55\x66\x82\x69\x6d\xa8\x85\xb8\x24\x6f\xa4\xa6\x49\xa3\x95\x87\x19\x17\x64\xda\x11\x93\x3c\x7f\x7a\x5f\x2a\xba\x48\x12\x30\x3a\x24\x12\x3b\x7b\xaa\xb2\xd0\x47\x55\x95\x85\x47\xbf\xdc\x1f\xb5\x20\x53\x87\x86\xe1\xf9\xd3\xf5\xb1\xa5\xe8\x10\x6e\x6a\x5a\x10\x11\x64\x9f\x49\x29\xad\xe4\x73\x35\x92\x46\xef\x4b\x1d\x12\xbc\x25\x53\xb9\x5e\xa9\xf1\x0c\xe9\x2a\xad\x42\xda\x8d\x03\x99\x67\xa4\x4a\xdc\x78\x65\x2a\x0d\x9f\x21\xad\xdc\xb6\xd4\x78\x86\x74\x95\x32\x1b\x37\x27\x2d\x2a\x8d\xb8\xf1\xba\x5b\xfc\x32\x81\x6b\x7d\xbb\xb5\x20\x39\x67\x8d\xf4\xd3\x55\x93\x5d\x46\xfd\xf0\x50\xe1\x82\x0f\x30\x0b\x0b\xb0\x08\x07\xd0\x3e\x4a\xce\xcd\x8f\x91\x7c\x5c\xb6\xb4\x20\xe2\xaa\xf9\x5b\x04\x21\x89\x63\x0b\x52\x73\x72\x7c\xec\xde\x54\x97\xf7\x96\xba\x5d\xc0\x1b\xea\x26\xad\xac\x91\xc9\xba\x4a\xed\x06\xd6\x06\x57\x31\x35\x1f\x34\xad\xdc\xbd\xd4\xe2\x71\x4d\x50\x65\xc1\xcd\x4c\x95\xbb\x97\x9a\x89\xad\x95\xbb\x97\x16\x64\x72\xd0\x6c\xa1\x6b\xcc\x55\x4c\x2d\x0c\x83\xe6\x62\xd3\x05\xa1\x14\xbc\x30\xd3\x5e\x2b\x37\x33\x35\x13\x5b\x2b\xb9\x6f\xcd\xc4\xd6\x4a\xb2\x5b\xe3\x5d\xd5\xf5\xdb\x47\xc8\x1a\xdd\xd6\x8c\x14\xe1\xfd\xc0\xe6\xbb\xaa\x95\xcc\xb8\xc6\x43\xaa\xeb\xb7\x0e\x10\xcf\x8a\x6b\x9c\x5a\x3c\xc8\x09\x9e\xe6\x6b\xc1\xf5\x4a\x95\xab\x99\x16\xb4\xcf\xa7\x94\x3e\x23\xcc\xc2\xf3\x69\x92\xec\x16\xe4\x63\x6c\x84\xe0\xb6\xa5\xca\x3d\x4e\xcd\xe4\xd4\xca\x3d\x4e\x2d\x74\xba\x6b\x1c\x08\x47\xca\x19\xdc\xb6\x54\xb9\x9a\xa9\x9d\x5c\x55\x35\xb9\xb9\xaa\x95\x9b\x9a\xda\xc9\x55\x55\xb1\x07\x97\x2f\x55\x2e\x5f\x6a\x91\x11\x1b\xe4\xeb\x35\x72\x55\xd7\xc7\xfe\x56\x3d\x20\x93\xe9\x92\xab\xab\x43\x1f\x9c\x6c\xbe\x05\x99\x76\x65\x4c\x41\x8a\xa8\x9c\x7d\x0c\xb5\x76\x05\x61\x71\x72\x14\x84\x3a\xd2\x5d\x09\x54\x30\xd3\x55\xdd\x51\x50\x83\x4d\xb6\xe2\x75\x9c\x4a\xfa\xde\x82\x99\xd2\x2c\x6c\x40\xab\x92\xcb\xea\xa9\x6a\x52\xca\x00\x79\x1d\xa7\xf2\x38\xdd\x82\x7e\xec\x00\x25\x7e\x45\x6c\x45\xb3\x71\x0b\x6a\xf3\x35\xd4\xda\xe5\x32\x4f\xa0\xb5\x11\x48\x6c\x5d\xa5\x7e\x8c\x20\xd4\x0a\x08\x83\xa6\xbb\x4c\x57\x21\xc2\x26\x4b\x72\x5b\x72\xed\x72\x99\xe7\xd3\x4d\x96\xf4\x7c\xba\x4b\xed\x46\x3a\x37\x39\xb4\xa1\x9c\x49\x0c\x6c\x3c\xac\xba\x4a\x8b\x90\xdf\x62\xb7\xfa\xb0\x6a\xed\xd2\xa4\x81\xcf\x1a\x14\xc1\x6d\xc9\xb5\x4b\x84\xcd\x05\x95\x7f\xf5\x8d\xbb\x34\x69\x58\xb4\xe6\x86\xef\xac\xd6\x1e\x07\xfa\x5b\x7b\xe5\x0a\xc6\x81\x2c\x99\x1c\xca\x1b\x36\x35\x94\xb1\x5c\xa0\x54\x43\x42\x6a\xf8\x8a\x5a\x1f\xe6\xbd\xd6\xb8\xce\x6f\x99\xc9\xdb\xd9\x60\x41\xe3\x3a\x1f\xbf\x80\xa7\xf4\xcb\xc7\xbf\xbc\x8f\xbf\x85\x3e\x78\x48\x56\xfa\xe0\x4d\x39\x61\x90\xb4\x86\x0b\x09\xb5\xeb\x63\x4b\x11\x75\x4d\x5e\xef\x98\x80\x4d\x5e\x37\x0c\x3a\x24\xab\xce\xbe\x66\x48\x0b\x1d\x71\x15\x2e\x7e\x77\xaa\x1e\x21\x21\x22\xe1\xe2\x07\x8b\x1f\xae\xb6\x91\xcd\x4d\x5e\xd7\x53\x0e\x97\x97\x1b\x92\x6a\xb8\x9e\x3a\xce\xe1\x02\x86\x9d\xcc\xd6\x1c\x76\xc3\xaa\xf0\x07\x8e\x49\x14\x88\xab\x63\x12\x19\xca\x1c\x8a\x67\x43\x99\x9b\x76\x4c\x38\x40\xc5\x73\x0c\x1b\xb2\x5d\xac\xd8\x90\x16\x02\xaf\x33\x5c\xed\x90\x34\x5c\xde\x40\x2b\x72\x49\x68\xf3\x2d\xd8\x1a\x8a\x76\x5e\x7b\xad\xe1\x1a\x19\xca\xdc\xb4\x54\x0c\x65\x0e\x17\x65\xb8\x82\x5a\x2a\xc3\xc9\xc1\x4e\x0d\x8f\xba\x43\x89\xab\x5b\xdd\x94\x40\xbc\x70\x53\x43\x89\x6b\x32\x6e\xd3\xac\x19\xca\x27\xed\x18\xf3\x6b\x9b\x22\x87\xfc\xda\xca\x73\x73\x8d\xd7\x5e\x57\xa9\xdd\x40\x93\x1f\x23\xcf\xfc\xda\x63\xe4\x79\x7a\xcd\x7d\x3b\x8d\x94\xd9\x05\xf9\x78\xa2\x9c\x43\xc3\x94\xf7\x6f\x2a\xc9\x9a\xcd\x97\x62\x6b\xb8\xbe\xd3\xd5\x77\x41\xa7\xcb\xed\x82\x7a\x3e\x7d\xec\x45\xbd\xec\x50\x96\xeb\x56\x1f\x03\x71\xe2\x96\x84\x8b\x62\x44\xf5\xb1\x17\x8d\xa8\x6e\xca\xb6\xe9\xf0\x15\xfc\x06\x58\x37\x4d\x86\xe9\x82\x6a\x89\x7a\xf2\x1d\xae\xa0\x67\xdb\xe1\x92\x4d\x59\x5f\x83\x62\xa2\xca\x9a\x06\xc5\x94\xf5\x5d\xb2\x89\xad\xc9\xed\x34\x8d\x37\x68\xd7\xc7\x4c\xce\x4b\x99\xaa\x51\xc0\x3d\x4e\x95\xbb\x6b\x16\x64\xf5\xd9\xbe\x08\x83\xb5\x43\x0d\xf3\x62\x43\xe6\x58\xc0\x26\xf2\x36\x6d\x04\x12\x79\x6b\xd4\xf3\x5b\x66\x83\x1d\x89\x78\x29\x28\x14\xde\xaf\xb0\x93\x56\x85\x7b\x70\xac\x67\xcf\xd4\x43\x42\x7a\xb1\x9b\xd1\xd4\xf3\x2f\xf9\x48\x42\x72\x6b\xe0\x58\xcf\x2f\xe7\x4a\xc5\x6e\x28\x77\x68\x1f\x1b\xca\x7d\xac\xe7\x97\x53\xa7\xb9\xec\x99\x7a\x53\x78\xbf\x15\x8c\x9a\xc0\x6e\x3a\x1c\x03\xf9\xad\x24\xd4\xaa\xf5\x10\xfd\x18\xc8\x6f\xf4\xfc\x31\x90\xb9\xd4\xb8\x86\x46\xee\x5b\x32\x93\xea\xde\xc3\xdf\x36\x21\x4c\xd7\x0e\x2c\x94\x76\x21\x04\xdc\x0e\xec\x94\xda\xe7\x61\x43\x7f\x83\xc5\x6f\x0e\xf0\x31\xb5\xdd\x64\x38\xa6\x36\x77\x29\xd7\xe8\xa7\xf4\x4d\x29\x53\xe5\x46\x41\x48\x56\x1f\x2c\x86\x90\xac\x3e\xec\xc6\x1d\xeb\xf9\x03\x93\x1d\xeb\xd9\x28\xf0\x90\xca\xdc\x0a\x38\xd6\xb3\x41\xe1\xc7\x3e\xe6\x46\xa8\x1a\x12\x9d\x07\xdf\xc7\x5c\xfe\xe0\x0b\x1f\x73\xf9\xa3\x10\x95\xca\x3c\x07\x8f\x38\xa5\x74\x43\xf1\x6c\x9c\xf7\xb1\x9e\x8d\xf3\x0e\xb5\xfe\x17\x62\xef\xf7\x81\xfe\x36\x0b\xfd\x2d\x43\xe0\xa9\xa0\x1a\xda\xa9\x9e\x5e\x1f\x63\xfa\xcb\x41\xff\xb1\x9e\xbf\x8e\x28\x0e\xa4\x21\x15\x2c\x67\xdb\xed\x92\xca\xbe\x9c\xe7\x1d\x63\x9a\xd7\x6d\xdb\x25\x59\xe9\xdd\x6b\x5b\xfb\x06\x6d\x23\x91\x77\x41\x6b\x6e\x42\x96\x1b\x99\x3a\x2e\xce\x07\x34\x97\xc7\x45\xe4\x55\x67\x1b\x61\x70\x9b\x54\xe3\xb2\x9a\x36\x2e\x17\x85\x6d\x84\x71\x6d\xdd\xd5\xb8\x7f\xa6\xf1\x70\xec\x2a\xb5\x1b\xf6\x19\x79\x3c\xf6\x81\xf4\xfa\xd8\xdf\x6e\x51\xd7\xc8\x18\x6e\xc3\x48\x6e\x6e\xd9\x58\xb0\x50\xfa\x08\xbf\x40\x4b\xb7\xe9\xd9\xb8\x61\xa6\x8d\x24\xe5\xa0\x7e\x47\x92\x36\x30\xd3\x47\x92\x36\x90\xe5\x24\x01\xaf\xdf\x32\xfc\x84\xb1\xa5\x99\xee\x5b\xb0\xed\x82\xae\xcc\xeb\x6d\x17\x74\x35\x8c\xa8\xe6\x36\xd2\x05\x1b\xa5\x49\xc8\x4c\xa2\x16\xc6\x1d\xfe\xb6\x08\x6d\xe8\x40\x7f\x5b\x85\xfe\x56\x38\x58\x5f\xbc\xb2\x71\x0f\xdb\x3d\xd0\xdf\x76\x21\xab\x5f\x0e\x84\x72\x6e\x87\x80\x30\xeb\x88\x76\x5f\x7b\x6d\x64\x1b\x37\x9f\x77\x6d\x5c\xfc\xb2\x20\x55\x21\xe9\x7d\xde\xb5\x5d\x52\xce\xe3\x00\xab\xbf\xdd\x26\x43\xbb\x24\xa4\x47\xca\xa9\x56\xc5\xc1\x8b\x8e\x07\x79\xbd\x0b\xfa\xb1\x4b\x86\xda\x1f\x8f\xc4\x8f\xda\x1f\x04\x5c\xb7\xeb\x39\xa5\xfc\xb6\x39\x04\xa9\x2e\x9f\x8f\x59\x50\x69\xf2\x41\x0f\x70\xb1\xe9\x82\x0c\x30\x1f\x68\x43\x0e\x61\x5a\xb3\x7d\xde\xc6\x66\xbb\xa4\xd8\xec\x5c\x49\x93\x59\xc6\x41\x1e\x8f\xec\xe4\x60\x50\x9c\x9c\x60\x1d\x9e\xc1\xe5\xc2\x8d\x4b\x64\xda\x49\x02\xe6\xa1\xeb\x46\x12\xf0\x82\xb7\x10\xc6\xe9\xb6\x8b\x8d\xc0\xe5\xa4\x0b\x8e\x5d\x95\xf4\x6c\x94\x34\x77\x95\x36\x1f\x74\x6d\x97\xe4\x5d\xd0\xc6\xcb\x3b\xfa\x95\xe0\x1f\xc5\x05\x94\xac\x0a\x26\xaf\xfe\xce\x28\x92\x24\xc2\xcc\x07\x5c\x1b\xc9\xd5\x6d\x78\xb8\xdb\xe3\x40\xa6\x19\x45\x3e\x74\x51\xb9\x7d\xb4\x99\x13\xdc\x2e\x69\xa1\x0c\xd8\x57\x5a\x28\xca\xe3\xb0\xd4\xe1\x4a\x1a\xc5\xe1\xc6\xf9\x98\xd5\x96\x52\x3c\x09\xd6\xcf\x1a\xd5\x15\x93\x52\xaa\x2c\x88\xba\x3d\x39\xc1\x7a\x52\xc3\xc3\x5d\x5d\xa7\xe1\x45\x4d\xba\x4e\x3c\xef\xba\xa0\xbf\x1d\xf4\xca\xe5\xad\xc3\xdf\x56\x21\x8b\xd0\xec\x06\x92\x4f\x87\x67\x70\xd6\xdb\xb8\xbc\x65\x41\x98\x5b\x5a\xd0\xf9\xe5\x02\x96\xe6\x5b\xb0\xed\x92\x34\x1a\x22\x47\x67\x69\x78\x6f\x93\xce\xd2\xe0\xda\xde\x76\xc5\x81\xcc\xb3\x4b\xa6\x4f\xaa\xef\x34\x38\xaf\x6d\x97\x4b\xd6\x06\x02\xd8\x35\x6a\x8a\x0d\x67\xb2\xb1\x9d\xac\x87\xc3\x43\xaa\x0b\x26\xe1\x66\x94\x84\x76\x22\xfb\x76\xc1\x24\x2c\xc0\x5b\xd8\x81\x8f\x70\x50\x55\x16\x5a\xd5\x81\x2f\x4a\x8b\xf0\x4d\xa9\x70\x6f\x9a\xb5\xe4\xb4\x13\x33\xdd\x92\xf3\xdc\xc3\x4e\x9e\xd2\x2d\x27\x92\xda\xa9\x3b\x1b\xca\x54\x23\xaa\x43\x21\xda\x11\xb1\xa1\xd4\xd4\x0b\xe5\x4a\x99\x05\x3f\x54\xe5\x10\x5c\xdf\xc7\xf1\xb2\xbe\xc9\x79\xf6\xac\x37\xd4\xc6\x1d\xf2\x8e\xe7\xfc\x76\xaf\x42\x72\x62\xc3\xa9\x73\x62\x3d\x09\xd6\x2b\x3b\xb9\xb9\x7a\x65\x3e\xc2\xda\xc8\x27\x6e\xbe\xba\xda\xb8\x37\x64\x41\xa6\x0e\x27\x6d\x44\x58\x55\x13\x32\x57\x4e\x4e\x0c\x87\xd0\x85\xd0\x95\x12\x17\x1f\xb5\xa5\xfb\x40\xd6\xc8\xd9\xc0\x47\x6d\xc9\xe1\x07\x9a\x3c\x39\x5e\x23\xac\x23\x9f\x8f\xe9\xb3\xc3\xe7\xac\xb7\xa5\xd3\x49\xb4\x53\xe4\x53\x15\x93\x63\x9f\x07\xdc\xad\x83\x37\x06\xdc\x9d\xec\x33\xfe\x6d\x4b\xf6\x79\x48\x66\xb6\x3b\x24\x33\x8d\x02\xae\xf1\x6d\x49\xd1\x3e\xc2\x8f\xb3\x90\x35\x52\xc4\x0e\x25\x83\x32\x95\x50\xee\x96\x94\xf4\xc3\xa9\xd3\x64\xf0\xb2\xa9\xd0\x28\xd0\xfb\xd5\x39\x24\xaf\x77\x41\x7f\x8b\xbb\xab\xbf\x37\x86\xb4\xa1\x04\xc6\xdd\x6d\xe9\x74\x63\xda\x0d\xc6\x3b\x31\x37\x92\x0d\x19\x9d\xad\xcf\x36\xa6\xeb\x5b\x7e\x19\xc7\xbf\xbe\x65\x79\x6d\x76\xb2\xb9\xa1\x7f\xe7\x5b\xb0\x2d\x9d\x66\x65\x14\xb5\xfe\xc4\x34\x49\xa7\x59\x04\x7f\x3a\xbf\x95\x8e\x34\x02\x26\x52\x33\xfd\xfc\x2d\x35\xff\x2c\x65\x5e\x55\x29\x1e\x39\xc7\x4f\x08\xe1\xa8\x52\xa6\x12\xe8\x27\x44\x5a\xab\x52\xa6\x84\xa3\xd2\x78\x29\x26\xd5\x30\xaf\x33\x55\xa7\x14\xd2\x50\x87\xe8\xa2\xea\x1b\x8e\x17\xbb\x80\x3a\x83\x83\x28\xf0\x96\xce\xc7\xa8\x94\x74\x3e\x96\xc9\xb4\x27\x5e\x4a\x20\xed\x89\x97\xf3\x7c\xaa\x0a\xd8\xe8\xe7\xc7\x08\x95\xf3\x31\x0a\x36\xa9\xac\x5e\xb8\x7b\xf1\x13\x32\x1b\xb8\x8a\xe3\xc5\x29\xb2\xde\xdf\x30\x64\x3c\xd4\x3f\x2f\x59\x50\x85\xc3\x8d\xc7\x2d\x59\xea\x4d\x54\xa1\xfe\x79\x2b\x54\xfc\xf8\xed\x5c\xa9\x7f\xde\xca\x98\xf3\x31\x56\xac\xfe\x1e\x89\xcb\xab\xd4\x9a\x31\x7a\xb8\x56\xa3\x91\xc7\xbc\x3e\x66\x80\x6f\x07\x18\x56\xc5\x96\x30\x97\xa2\x2e\x88\xb4\x0e\xdb\x55\xe2\xaa\xd9\x8c\x02\x8f\xd3\x90\xe3\x3d\x0d\x61\xe4\x25\xf5\xde\x5b\x19\xa3\xa2\xfb\xc8\x37\x2a\xba\x8f\x0a\x47\x73\xe3\xe3\xfa\x6a\x5f\x78\xb6\xad\xfb\x37\x88\xe4\x6e\xb7\x9a\x4d\x0f\x56\x07\x6f\x70\x25\x54\xbb\x55\x74\x1f\xf9\xe8\xb4\x0b\x1f\xdd\xea\x3d\xfd\xdb\x38\xdd\xd8\xbe\x7f\xbb\xd5\x7b\x1c\x66\xb7\x5b\x45\x47\x24\x77\xbb\x55\x74\x1f\x44\xec\xad\xa2\xfb\xec\x7d\xa1\x76\x6b\x32\x7c\x14\xa2\x8e\x88\xdb\xa5\xda\xad\xa3\xc5\x15\xc7\xed\x56\x3b\x71\xc5\x71\xbb\xf5\x9d\x08\xd6\x4e\x97\x03\xdc\xe7\xd3\x0b\xde\xc2\x09\x7c\x84\x6f\xa0\x55\xb1\xa0\xdc\xdf\xb1\x60\xa2\xd4\x9a\x87\xdd\xb0\x57\x5b\x32\xa4\xe3\x49\xea\xdf\xde\xba\x61\xdf\x6d\xe2\xa7\xcb\x01\x92\xd6\x9c\x2e\x07\xb8\x0f\xb3\x17\x0c\xe1\x67\x43\x14\xfb\xbc\xb6\x96\x48\x3a\x96\xf3\x62\xb9\xb9\xec\x63\x41\x46\x84\x01\x35\x77\x74\xf6\x82\x8f\xf0\x0b\xcc\x40\x27\xe7\xb6\x66\x38\x94\x0c\xe9\x36\x2f\x97\xec\xb6\x2a\xdc\x30\x52\xa2\x1b\xb9\xc8\x0b\xd2\xee\x4e\x2f\x5e\x35\x1f\x78\x6f\x68\xcd\xc9\x69\xb7\xe6\x14\x74\x03\x9b\xc8\x27\x6a\x1b\x6f\x5a\x2e\xc8\x4c\x3e\x36\xb4\x25\x43\xd2\xb1\x9c\xfb\xca\xe3\x05\x7f\x2d\xf8\x4d\x45\x4e\xfa\x95\xbe\x6e\xdb\x48\x81\x6e\x24\x1b\xaf\xd2\x2e\x64\x40\x8f\xed\x38\xeb\x8e\x8f\x20\xe9\xc4\x0d\x58\x0b\xfa\x71\x15\xb2\xbc\x28\x72\xb3\x8b\x13\xf7\x63\x35\xdf\xaf\x6d\x5c\xee\xb1\x60\x01\x5a\x33\xea\x96\xf4\xe9\x36\xf7\x0b\x3e\xeb\xb7\x07\x32\x73\x4e\x06\x47\xce\x8d\x6c\xea\x05\xa1\x32\x47\xa4\xa7\x4c\x72\xf5\x82\x9d\xd2\x22\x64\x79\xb3\x10\x31\x79\x67\xbb\x81\x63\x75\xa3\x8c\x27\x47\xbf\x8d\xfb\x3a\x1a\xe9\xc5\x77\xd2\x09\x9d\x0f\x92\x8f\xfb\x3a\x1a\xd9\xc6\xab\xd4\x8f\x1d\x02\xce\x20\xe9\xc5\x0b\x36\x21\x9d\x2c\xa7\x14\x5a\xe0\xb8\x60\x3e\x93\x3e\x63\x4f\x4c\x3c\xd6\xc4\x65\x5a\xcd\x17\x6a\xdb\x5d\xac\xea\xf4\x99\xdf\x72\x03\x56\x23\x51\x7b\x41\xa6\x9d\x2d\xe1\xc9\xe1\x6e\xba\x6c\x37\x63\x6a\x93\xb7\xdd\x7c\xbf\xb6\x91\xa8\xbd\xa0\x1f\x37\x21\x24\xd9\xac\xca\xd9\x38\xed\x6e\x41\x98\xae\xd3\xae\x84\x84\x1e\x98\x19\x69\x4d\x66\xf6\x82\x0c\x10\x0b\x82\xac\xdf\x05\x1f\x21\x14\x8b\xc9\x30\x8b\x84\x84\x8d\xe0\x2b\xb3\x8d\x54\xec\x05\xfd\x6d\x15\xfa\xdb\x10\x32\x39\x61\x55\x83\x11\x35\xdb\x45\xc1\x92\xb7\xbd\x20\x22\x16\xb5\xc0\xfb\xb5\xeb\x63\x1b\xc2\xae\xe1\x16\x86\x66\xc6\x70\x23\x51\xbb\xcd\xfd\x86\xcd\xfa\xd8\x86\x26\x93\xd3\xec\x33\x76\x0d\xb9\xd7\x0b\x06\xf0\x94\xb2\xbe\xcd\x21\x60\xd7\x90\x6c\xdd\x66\x75\xc9\xd8\x82\xe0\x29\xdc\x05\xe9\x24\x19\xc3\x8d\x64\xeb\x05\x99\xd8\x76\xe0\x66\xf6\x47\xa9\xc9\x63\xb7\xed\x51\x6a\x12\xcb\xdc\x1e\xc5\x64\x75\x72\xfa\xf9\x98\xe1\xbb\x82\x78\xbf\xe9\x72\x05\xb7\xf7\xbb\xa0\x9d\x74\xf8\xdd\x4e\xa2\xac\x1e\x05\x21\x0e\x6d\xe2\x35\xf9\x05\x37\xf1\x3f\x0a\xb3\xa6\x3c\xc6\x46\xf0\x49\xda\xf6\x28\x91\x9a\x6c\x85\x8d\x30\x75\x77\x1f\x25\x12\x0f\xd6\xb6\x47\x89\xd4\x24\x42\x69\x83\xbb\x86\xdb\x23\xef\x37\x05\x85\xc4\xd0\x90\x84\x8f\x12\xa9\x61\x99\x3e\x4a\x24\x8e\x60\xdb\x23\xb3\x93\xf5\x9b\x74\xa4\x27\x27\xb2\x49\x47\x7a\xea\x1b\x3f\xf2\x7e\x77\xc9\xa4\x2b\xce\x51\x93\x9e\xb3\x6f\xd2\xb6\x47\x01\x45\x3c\x72\x7b\x94\x48\xfb\x5d\xd9\xf5\xf1\x81\x89\xd2\x10\xde\x94\xfe\x0d\x82\xbf\x3b\x7a\x85\x19\x6f\xd0\xb6\x47\x61\xa6\x03\xfb\x28\x63\xb8\xd3\x38\x25\xe9\x88\x47\x67\xdb\xa3\xc8\xc1\x9f\x4d\xba\xd5\x93\xab\xa7\x52\x92\x8e\xa2\x5b\x55\x17\xda\x6e\x08\x3b\x1f\xd3\x10\xd7\x47\x25\xee\xf4\x5a\x10\x1a\x54\x12\xf0\x48\x4d\x7b\xe4\xf5\x70\xf4\x32\x77\x38\x7a\x15\x6a\x60\x3f\x3d\xed\xc0\x2f\xa5\xf6\x0a\x8f\x95\xe4\xea\xc6\x2b\xb3\xab\xd4\x86\x64\xc1\x76\x20\xb4\x20\xaf\x0f\x04\x52\x92\x42\x07\x42\xf4\x91\xb9\x71\x33\x53\x92\x42\x47\xf7\xb7\xe7\xe3\x37\xa5\x21\x84\xac\x64\xee\x21\xbf\xca\xcd\xdc\x26\x95\xf4\xb2\x4d\x2f\x6e\x8f\xcc\xad\xc7\xfa\xc8\xcd\x2f\xa5\x08\x66\x3a\xcf\x7f\xae\xdf\x26\x21\x1f\x63\xa6\xfb\x1a\x68\x7b\x64\xdf\x77\xf7\xe3\x26\x64\x05\xa5\xfd\xb7\x43\x90\xb9\x89\xa2\x6d\x8f\xcc\xbd\x4d\xfc\x3b\x25\xa9\x9b\xb0\xd9\x94\xd4\xd5\x5c\x45\x9b\xf4\xb2\x4d\x03\x4d\x49\x45\x47\xde\x67\x4a\x6a\x36\x8e\xac\x52\x92\x9c\xb5\xf8\x1f\x59\xff\xed\x92\xc9\xeb\x04\xc6\xb6\x47\x6e\xd6\xe2\x7f\x64\xdf\xb7\x24\x2a\x47\x92\x15\x9a\xf4\xa3\x7d\x0e\xb4\x3d\x32\x28\x69\xa0\x29\x49\xed\x3c\xf8\xd9\x1e\x19\x94\x34\xd0\xf6\x28\xf8\x79\x01\xa5\x3d\x4a\x7a\x5e\x40\x69\x59\xf6\x25\x30\xb6\xf1\xb4\x66\x33\x0d\xb4\xf1\xb4\xe6\x82\x03\xf8\x08\x99\x1c\xd5\x2f\xc7\x5f\x2d\xab\x07\x48\x03\x4d\xfa\xd5\xf3\x33\xac\xaa\x08\x59\x23\x59\xe3\x23\x79\xab\x24\xb9\x04\xa9\x91\x7a\xde\x4c\xf4\x4c\xba\xd9\x3e\x07\xda\xb2\x1c\x4a\xe8\x6b\xd2\xeb\x9e\xdc\x5c\xd4\xb2\x82\x9f\xd7\x41\x5b\xd6\x3e\x26\xb5\xb3\x65\x19\xf6\xeb\xf0\xd3\xf9\x2d\x43\xc0\x01\x98\xba\x16\xe4\x7c\x2f\x68\x37\x4e\xa9\x43\xb0\x54\x62\x90\x61\xf5\x07\xb2\xc6\x34\xaf\xa7\xb4\xac\x41\xbc\xef\xb1\x5d\x1f\x27\xe1\x07\x68\x9f\x21\x95\x2c\x87\xea\x3c\xe8\x66\x4f\x62\x5d\x1b\x49\xde\x0b\x32\x04\x4d\x60\x7d\x09\xfc\xea\xde\x09\x7d\x6d\x24\xb5\x2f\x08\x4b\x6e\x0e\xed\x66\x7a\x36\x5e\xcb\x5c\x90\xaa\xb6\xb1\xd9\xfb\x05\xa7\x90\xe4\xbd\x20\xbf\xdd\x1c\xda\xcd\xf4\x6c\xe4\x7c\x77\xde\x1d\x5d\xa5\x56\x85\xa9\xc2\xb5\x5d\x0b\xd2\xab\x6e\x55\xd2\x46\xf7\xb7\x4e\x5d\xff\x65\x02\xd7\xfa\x16\x56\xd8\xea\x76\x41\x26\x72\xfb\xd1\x0b\x42\x1a\x8f\x10\xcd\x8d\xff\xde\x7d\x85\xb4\x91\x5b\xbe\x60\x05\x26\x21\xbf\xcd\x8e\x0f\x4b\x85\xfc\xf0\xde\xf5\x86\x72\xce\x42\x7f\x5b\x84\xf4\x2a\x92\x10\x2a\xcb\x8c\x4f\x5f\x89\xad\x80\xce\x93\xa5\x0b\x5a\x73\x58\x55\x13\x76\x60\x17\x5a\x55\x08\xa1\xd0\xc2\x10\x92\x13\x19\xf6\x6a\x0a\xed\x15\x52\x84\x6c\xf9\xee\x1b\xa5\x8d\x3c\xed\xde\x39\xc0\x4b\x6c\x14\x74\x9f\x1d\x6d\x64\x62\x2f\xe8\x88\x42\xb8\xd5\x02\xd7\x92\x75\x12\x3d\xd7\xc7\x4d\xc8\xd4\x55\xab\xc2\x87\x21\x9d\xba\x9b\xe8\x99\xd8\x73\x58\x70\x02\x6f\xe1\x1b\x68\xaf\xb0\x54\x48\x98\xee\xfd\xc6\x52\xc9\x12\xec\x8d\x26\x67\x93\xa1\x93\xf7\xb9\x4a\x69\xf7\xe9\x36\x54\x84\xf6\xb9\x0a\xa1\xee\x9e\x84\xcc\xa4\xe4\xfc\x40\xb0\x5c\x69\xd6\x4d\x03\x4d\x5c\x69\xb6\xa0\x1f\x5b\x33\x76\x0c\x3b\x12\x0b\x22\x72\x24\x67\x1d\x9e\x3b\x59\xf3\xb4\xd4\x9a\x1d\x91\x34\xc9\x01\x5e\xba\xd3\x23\x64\xf5\x25\xa4\x47\x9a\x8c\x53\xd5\x87\x8f\x19\xbe\xfe\x4f\x96\x90\x32\xae\x05\x3b\x21\x0b\x32\x39\xae\x6f\x96\xae\x5c\x50\x62\x4e\x5b\x71\x15\x88\x39\x4d\x6c\x5f\x74\xde\xff\x5c\xf0\x7c\x1c\x7c\x6c\x43\x08\xb3\xe2\x2a\xf0\x98\x4a\x2b\x4e\x7b\x86\xe9\xd8\x73\x58\xd0\xdf\x56\x21\x8b\x72\x27\xe1\x87\x52\xd6\x57\x67\x89\x1d\x89\x6e\x0a\x69\x62\x47\x62\x41\x7f\x9b\x85\x76\xa3\x0b\xad\x8a\x3e\x17\xd7\xe8\xb6\x66\x07\x78\xfb\xb1\x43\x48\x55\x08\x11\xde\xfe\x76\xf2\xb1\x52\x53\xa7\xa5\xd8\xab\x8a\x17\x5a\xec\x95\x4e\xcb\xad\x20\xac\xe8\xdb\x62\x27\x79\xb4\xb3\x91\xd4\xbe\x20\xc4\xff\x34\xa1\x35\xfb\xdb\xf0\x63\x4b\x91\x9a\x6c\x2b\xf4\xae\x87\x53\xec\x55\x75\x05\x9f\x24\xa4\xdd\xc7\x4e\xe2\xe1\xdc\x4a\x42\x7d\x98\x5b\xd1\xe7\x91\x5d\x51\xf0\x57\xc7\xab\x24\x24\x5e\xb5\x15\xf5\x00\xaf\x74\xb6\xa2\x1e\x68\x0e\xdf\x9a\x09\x5f\x6d\xc5\x9a\x79\xa5\xb3\x15\xab\x6a\x2e\x99\x62\x93\x00\xd5\x56\x94\xb1\x7a\x47\x77\xfe\x65\x38\x67\xef\x0d\x5f\xf8\x56\xa6\xea\x2b\x15\xc5\x33\xd7\x29\xa5\x5b\x31\xe9\xd1\x60\x39\xcd\x4a\x0b\x4a\x4d\x5d\xa7\xa2\xf0\x6e\x88\xab\x72\x6a\xc6\x17\x2e\xa7\x2a\x34\x0c\xfb\x24\x0b\x32\x82\x53\x15\xa6\x09\xfb\x24\x0b\x42\x83\x85\xaa\x3c\x38\x24\x77\xb3\xfb\x1a\x68\x23\x1d\xb3\x93\xe8\xb9\x7e\xeb\xc7\x58\x1b\x45\xf1\xdc\xc3\x9a\xfd\x2d\xf2\x98\x9d\x90\xee\x6b\xa0\xad\x28\x71\x39\xa2\x4b\x6c\x8c\x2c\xc8\xc7\xa7\x21\x59\xb0\x15\x21\x73\x55\x19\x91\x27\x76\x45\x8b\x21\xec\xb3\x12\x37\xf0\x67\x8b\x22\x36\xba\xbf\x65\xbc\xe1\xa2\xd8\xe7\xb0\x93\x35\x0b\x6d\x37\x84\xd0\x42\x2d\x42\x16\x5f\x85\x43\x90\x69\x23\xd3\x71\x41\xe8\x48\x69\x1d\xc3\x9a\xed\x95\x04\xdb\xfc\x78\xfa\xb1\x55\x29\x53\xd5\x3f\x44\x95\x36\x72\x0a\xbb\x0f\x6f\xb6\xa2\x05\x41\x90\x69\xba\xdb\x2d\xa4\x93\xed\x11\x22\x27\x14\xde\xc3\x25\x53\x3b\x0d\x97\x4c\xf1\xac\xc3\x73\x3b\xcf\xc3\xd9\x70\x62\x79\x00\xa6\x95\x38\xa5\x90\x68\x58\xaa\x88\x55\x3c\x0f\xf9\x55\xfb\x89\x0b\x94\x5a\xbd\x0e\x7c\x80\x56\xa5\x5a\xe8\x07\xee\x9a\xab\xfa\x87\x97\x57\xd2\xed\xe4\x4c\xd4\xfe\xed\x6c\x78\xcc\x46\x56\xdd\x82\x13\xd8\x85\x10\xbf\x73\x35\xe5\x23\x67\x83\xa8\xd2\x56\x95\xe5\x3c\xb5\x92\x6e\x35\xdb\x54\x02\xc5\x29\x45\xf2\x39\x57\xd3\x11\x29\x17\x09\xe7\x4c\xb7\xca\x8a\x70\xce\x74\x3b\x1b\x9c\x77\xa5\x47\xeb\x83\x87\x37\x5b\x55\x7a\xbd\x1c\x82\xe2\x8a\xb7\x34\x5b\x55\x5c\x71\x55\x51\x7a\xd4\x30\xbc\xa5\xd9\xaa\xd2\x9a\xb7\x34\x5b\x55\x1e\xbf\xec\x95\x12\x97\xbb\x89\xd2\xa3\x15\x40\xe0\x64\xab\x4a\x15\x02\x27\xd3\xa3\x15\xf0\x86\x53\xaa\x52\xe5\x8d\x68\xaf\xda\x71\x6f\x28\xe7\x71\x51\xf4\x24\x1f\xd5\xfe\xdb\x05\x55\xc8\xe8\xfe\x55\xa5\xca\x1b\x9d\xf9\xa8\xf6\xb9\xf4\xb6\xd5\xc2\x6f\x75\xff\x1e\xd5\xfe\x87\xe5\x7e\xd4\x6c\x7a\x74\x55\x21\xc3\x3d\xb6\xad\x2a\x55\xb8\xc7\xb6\x55\xa5\x8a\x1e\xdd\xe3\x82\xea\xd1\x55\xa5\xca\x87\x2d\xb5\xaa\x54\xe1\xea\x9e\xf4\xa8\xe8\x3e\xec\x9b\x3c\x2e\xa8\x4e\x5a\x55\x14\x70\xbd\x6c\x7a\x54\xbf\x3a\x69\xb5\xfe\x0d\x82\xff\xeb\xf8\xd4\xcd\x3a\x74\x55\xb1\xa1\x07\x47\x2a\x72\xef\x5f\x04\xd2\xa3\x8e\xfc\xb2\x23\x51\xdb\x81\x99\xd2\x24\x64\x32\xda\x81\x0c\x48\x0d\xfa\x65\x7f\xb1\x2a\x18\x74\xe8\xaa\x82\x41\x87\xae\x2a\x09\x78\xff\xb2\x55\x45\x1d\xb7\xf1\xa4\x47\x2a\xd3\x65\xab\xca\xb6\xaf\x53\x25\xd1\x7d\x9d\x2a\x44\x5d\x5c\x68\x09\xf2\x9b\x16\xe4\x63\xf4\x6b\x5c\x76\x03\x8e\x0c\x23\x16\x2b\x1c\x19\x97\xf4\x1b\x7e\x8c\xb9\xcc\xd6\x5d\x37\x01\xb1\x91\xd0\xb4\x60\x50\x7a\x0b\x21\x76\x34\x6a\xe8\x0e\x91\xd0\xd4\x83\x4b\x72\x12\x1b\x7b\x0b\xd2\x0d\x4c\xcf\x48\x48\x4d\xf6\xf9\x7a\x24\x57\x01\x8d\x6a\x02\x62\x23\xdd\x69\x41\x3f\x6e\x42\x66\x32\xfc\xad\x42\x25\xfc\x2d\xba\x9a\x84\xa6\x05\x59\x32\xe4\x04\x0f\x60\xde\x89\x6d\xc0\x6e\xb6\x62\x23\x83\xa9\xf3\x00\xe6\x2a\xb5\x93\x98\x35\xe4\x28\x2d\xd8\x28\xb5\x57\x58\x39\xa4\x2c\xf5\xb8\xa5\x3a\x7c\x27\xb3\x15\x13\xd7\x71\x76\xdf\xc3\x6c\x64\x30\x2d\xc8\x78\xe1\xaa\xb8\xd9\x36\x21\xa1\xa9\xfb\x3c\x66\x23\x83\xa9\x9b\x90\xd8\x48\x4a\xea\xbc\x78\xb9\x7e\xcb\x88\x48\x48\x6c\x24\x25\x2d\x08\x4d\xc2\x82\xa1\xb3\xc4\xdd\x9d\x0b\xf2\x5b\x34\xb9\x39\x86\x8d\x2c\xe7\x05\xa1\x76\x74\x35\x49\x85\xa9\x91\xf4\xdc\x49\x1b\x5c\xa5\x76\x12\xa5\x41\xca\x52\x27\x6d\x70\xc1\x2c\x64\x80\x30\x5d\x3c\xd8\x7c\xe4\x28\x2d\xc8\x78\xd3\x29\xad\xc0\x26\x64\xf8\xa8\x94\xd0\x2b\x7b\xea\x29\x9d\x94\x86\x70\x53\x1d\x4f\x7a\xf6\x78\x88\x4e\x20\xcb\xb9\x9b\x72\x98\xd8\x14\x5d\x10\x9a\x6c\xa7\x94\x15\xc4\x4c\xf7\x79\xcc\x46\xda\x51\xf7\x79\xcc\xc4\xa6\x68\x37\x6d\xb0\x91\x76\xd4\x7d\x2d\x33\xb1\x47\xda\x7d\x2d\x33\xb1\x29\xda\x7d\x1e\xb3\xb5\xdb\xf1\x2a\x8f\xdb\x81\x36\xe4\xf0\x9d\x58\xd4\x3e\xaf\x65\x2e\xd8\x84\xf6\xb9\x0b\x3f\x40\x86\x9f\xcf\x78\xfd\x98\x9d\x02\x2e\x09\x5d\x90\x01\x22\xa0\xc8\x31\x5c\xf0\x11\x32\x04\xc5\x48\x96\x90\xd0\x8a\xe6\x18\xb6\x86\x56\x0c\xee\xc0\x6d\xed\xb1\x93\xb8\xe8\xec\xbe\x2e\xc8\x00\xbb\x35\xcb\x56\x8f\x9d\xc4\x36\x79\x14\x50\x3c\xe2\xd2\x9a\x02\x2a\x4b\x48\xca\x1c\x2e\xbd\x6d\x4d\x21\x53\xd8\x46\x69\xf9\x97\x2f\x70\xad\x6f\xed\x54\x11\x42\x47\x4a\x20\xdd\xbd\xa6\xc8\x29\x61\xc5\x55\xe8\xc7\x4d\xc8\x34\x2b\xcc\xb8\x5c\x37\x3d\x4a\xaf\xe2\xdc\xa0\xaa\x4d\x4f\x4c\x8f\xe2\x8a\x04\xc4\xf4\x28\x9f\x0c\xf6\x24\x21\xbc\x93\x8f\xb8\x4a\x6d\x57\xd2\x50\x5c\x95\x69\xbb\xd4\x5c\xa5\x05\xcc\x9a\xa8\xf2\x8d\xf2\x49\x47\x92\xbd\xd8\xee\x23\x9d\xad\x29\x9f\xf6\x23\x9d\xab\xf4\x7c\xcc\x34\x2b\x9f\x8c\x0c\x6d\xca\xa7\xaa\x04\x52\x20\x55\xce\x99\xb2\xe2\xaa\xb2\xd7\x91\xaf\xf3\x5b\x58\x50\x09\x44\xdc\x68\xca\x8a\xab\x8a\xc4\x6d\x4a\x20\x8f\xca\xb2\x32\x46\xdf\xb0\x29\x45\x9a\xab\xad\x9c\xe0\x99\x96\x94\x15\x39\xcd\x15\x94\xf5\xb9\x3e\x37\xb1\x8f\xdb\xc3\xd8\xcf\x26\x37\x37\x6c\xa0\x26\xa3\x78\x28\xc5\xb6\xee\x82\x74\x52\x71\xd5\x24\x3a\x69\x9f\xd7\x53\x52\x56\x7a\x75\xc5\x95\xd4\xdd\xd9\x04\xcd\x4a\x2f\xbd\xb2\xd6\x0f\x64\x80\x0a\x33\xfd\xae\xac\x30\xeb\xb2\xa0\xea\x97\x0b\x76\x52\x56\xb6\x79\x82\x95\x15\x66\x04\x5d\xa6\xac\x30\xeb\x52\x4e\x3f\xa5\xfc\x56\xf9\xd4\x51\xbf\x59\x81\x64\x58\x65\x53\x93\x07\x02\x38\x2b\x81\xc2\x21\x28\x72\x42\x5e\x50\xb1\x87\xda\x49\x6a\x0f\xa4\x66\x56\xa8\x70\x0d\x4e\x6b\x12\xa1\x27\x4b\xee\x10\x9b\xa0\x97\xb8\xe8\xb3\x93\x91\xb7\xa0\x55\x61\xc8\x74\x49\x74\x30\x75\x5d\x7d\x3b\x9c\x3a\x65\x8c\x67\x47\x5d\x7d\xeb\xd9\x91\x1b\xc6\xa6\xe0\xb5\x2e\x3d\x73\x17\x6d\xe2\xce\xd0\x1e\x63\xd8\x6e\x17\xda\xae\xbf\x45\x3e\xb9\xcd\x6b\x0a\x5e\x72\xab\x36\xa6\xab\xaf\xa0\x30\xcc\xb0\xab\x6f\xb9\xca\x26\xb9\xdd\x1a\x13\xfd\xd3\xd5\xb7\x13\xc6\xe9\x92\xb7\x81\x85\x5d\x02\xd6\x3b\xea\x52\x2c\x2f\x4f\x26\xb7\x6a\x63\xe2\xd1\x75\x49\x54\x77\xc8\x9d\xdb\x98\xf8\xb7\x5d\x8a\xd5\x3b\x72\x23\xd7\x24\xbb\xc4\x35\xa0\x0b\xbe\xf9\xd8\x21\x60\x30\xe6\x72\xe0\x87\x52\xe6\x99\x77\x29\x5b\x97\x62\x5f\x8a\x91\x72\x4a\x3b\xa5\x74\x83\xb7\x47\x52\x2e\x07\x52\x2a\x89\xbe\x20\xef\xae\xbe\x7d\x61\xaa\x74\x35\xea\x4b\xc9\xa0\xf5\xf1\x42\x8a\x66\xad\x0f\x02\xfc\x52\xd6\xdc\xf0\x04\xcf\x2d\xe2\xe0\x75\x91\x94\xdb\xf5\x6b\xc1\xff\x76\x01\x95\x04\x6f\x25\x9f\x9a\x9b\xa7\x47\x5a\x97\x6f\xde\x88\x8d\x2e\xdf\x70\x0d\x4e\xeb\x32\xca\x5b\x51\xd7\xce\xc7\x2c\x91\x7c\xc3\x35\x38\xc9\xcd\x66\x53\xd0\x5a\x97\x51\xb8\x06\xa7\x91\xee\xd4\x7d\x3c\x32\xb9\x15\x1d\x6f\x6c\x02\xb2\x9f\x16\xe4\xb7\xb2\x11\x57\xd9\xb4\x2e\x1b\x7d\x90\x40\x5d\x36\xe2\x05\xc8\xe4\xbe\xb5\x8f\x3a\xa6\xac\x11\xf0\xc1\x06\xea\xea\xf5\x8f\x12\x48\x23\xe0\x23\xd1\x29\xea\x3e\x8e\x48\x35\xaf\x8f\xd6\x65\xc1\x8f\x34\xa8\xe4\xe3\x3a\x9a\x94\xd5\xeb\x3c\x3d\x92\xb2\x8a\x9c\xb4\xb2\xd6\x65\xd0\x8f\x5c\xa5\x5c\xe4\x71\x91\xd6\x65\x50\xdd\x3d\xf7\xbc\x4d\x3a\x4b\x5c\xd6\xd9\x43\x77\x2f\x2b\x26\x8d\xe0\xeb\xcf\x81\x90\x86\x82\x90\x1b\x66\x92\x9b\xdc\x61\x14\x5e\x97\xb9\xbf\x0e\x41\xf5\xcb\x0b\x90\xad\x6b\x6d\x70\x29\x6a\xeb\x5a\x1b\x5f\x2c\xe0\xae\xb5\x61\x9c\x5d\x56\x39\xeb\x86\x75\xe5\x04\xcf\x45\xb6\xae\x9c\xf8\xca\x55\x18\x14\xe3\xc2\xcf\xec\x18\x14\x3e\x17\x99\xb8\x9d\xb3\x9b\x56\x96\xdc\x5c\x1f\x97\xd2\x0b\x99\x3a\x2e\x17\x25\xfb\x31\x8c\xc2\xfd\x9b\x7d\xe8\xa4\x91\xcf\xd5\xc9\x23\x5b\xa5\x49\x08\x21\x95\x03\x83\xd2\x5b\x48\x9f\xb1\x3e\x46\x92\xf5\xb1\x20\x7c\x6a\x32\xb9\x4f\x3f\x3c\xa4\x22\x81\x6b\xc1\x41\xe9\x81\x1f\x20\xe3\xd5\x49\xe3\x8e\x86\x05\x99\x2b\x78\x7d\xe8\xa4\x91\x75\xd5\x4f\xc2\x1a\x79\x55\x0b\x5a\x15\x73\x95\x64\x9c\x7a\xa0\xbf\x6d\x42\x3f\x16\x72\xd8\x49\x22\xd5\x82\xac\x60\xb5\x1b\x58\x01\x24\x52\x2d\xf8\xe6\xb7\x7c\x7c\x2b\xdb\x30\xc4\xc7\xad\x2c\xc7\xf2\x1e\xb7\x7c\x04\xc3\x0e\x83\xf4\x48\x68\xea\x3e\x44\x99\x3c\x2e\xe0\x21\xca\x3b\x71\xe9\xed\x82\x10\x03\x5c\x36\x8c\xd9\xe3\x56\xd0\x05\x99\x49\x24\xfd\xb8\x1d\x60\x17\x2a\x19\xe0\xb2\xc1\x0d\x2c\x89\x7b\x3f\x3b\x19\x6a\x0b\x66\xa1\x55\x15\xa1\xdd\xa8\x42\x08\xa9\x0b\xc3\x6e\x34\x61\x07\x76\x21\x4b\x06\x5b\x8d\x47\x22\x84\xad\x86\x87\x54\x64\x43\xf5\x93\x92\x46\x36\x54\x1f\xfa\x3f\x25\xf9\x5b\xac\x80\x82\x5a\x18\x9e\x4a\x75\xa9\xfd\x91\x26\xd1\x12\xc3\x43\xaa\x1e\xe7\xb7\xac\x2f\x4a\xc3\x77\x29\x53\xb9\x7f\x6d\xf1\x8f\x8c\xaa\x0e\x19\x25\x3b\x37\x88\x76\xf3\xd5\x92\x47\x29\xc3\x80\xbe\x90\x6f\x78\xb4\x32\x79\x94\x32\x74\x9d\x3c\x4a\x19\x39\xac\x8a\x11\xe8\xfe\x84\x04\xeb\x71\x17\x37\x7b\x2e\x38\x28\xf5\xb7\x98\xbc\x9e\xbb\xf0\x86\xe5\x2a\xb5\x2a\xe6\x26\xa4\x23\xcf\xb7\x3c\x59\x19\xbc\x08\xd2\x42\xb2\xd2\x1b\x0a\xe9\xa8\x20\x17\x43\x3a\x32\x18\xd0\x73\x97\x51\x5c\x6d\x64\xf9\x28\x78\xbb\xdc\xf1\xdb\xcd\x6e\x4b\x05\x79\x3c\x0a\x3b\xb5\x5c\xd6\xd9\x87\x0e\x8f\x87\x34\xe4\xbe\xad\x86\xe8\x95\x67\x63\x9e\xd9\x8c\x32\xec\x86\xed\x62\x7b\x79\x84\x33\x8c\x0d\x0c\x29\xd4\xa3\x32\x8f\x70\x46\x91\x70\xb2\x35\xc3\xbe\x21\xfd\x7a\x90\xe6\x39\xcc\x49\x76\x0b\xe9\xb7\x9e\xd9\xe8\xc2\x07\x18\x42\xa6\x4e\x3a\xd2\xe1\xe1\x5e\x89\x3e\x8c\x0d\x0c\x69\xa3\xb2\x95\x17\xd2\x46\x3d\x03\xb4\x2a\x68\x3f\xa4\x8d\xea\x00\x15\xc0\x15\xdb\xab\x28\x71\xab\x23\x52\xc4\x56\x47\x24\x6d\xe8\xf0\x84\xc4\x50\xa1\x7d\x32\xa7\x16\xf4\xb7\x74\xc3\xa3\x32\x32\xa7\xfa\xe0\x02\x96\x16\xd2\x46\x63\x37\xd2\xc3\xa2\xd1\x24\x51\x05\xb0\x87\x54\x21\x31\x34\xac\xab\xa2\xc4\xe5\x4e\x95\xc4\xed\xc1\x0b\xb2\x82\xcf\x81\xd0\xa4\xa4\xd2\x4f\x37\x9a\x10\x6a\xaf\xa7\x94\x8f\x25\x86\x8e\x7d\x5c\xea\xf9\x98\xf1\x4a\x0c\x1d\x9b\x3e\x5c\xfd\x8e\x2d\x16\xae\x7e\x77\x51\x5c\x6e\xa3\xff\x78\x04\x7c\x41\xe6\xca\x45\xe9\xd2\xa4\xab\xa0\xef\xc4\x65\x9d\xdd\xd7\x23\x5b\xb8\x28\x5d\x86\x2d\xa7\x94\x5e\xa9\xf7\xf4\xac\x42\x45\x67\xf8\x5f\xb8\x0a\xdd\xc9\x71\x9e\xbb\xfc\x5b\x1c\x20\x7e\x17\xf7\x7e\x2e\x08\xe3\x60\x12\x0e\xfd\x2e\x8f\xce\x48\x58\x5b\xb0\x0a\x91\x0c\x6a\x18\xfd\xae\x50\x67\x7a\x38\xe6\xd1\xd9\x08\x67\x83\xb3\xb2\x61\x34\x20\x99\x45\x9d\xfc\xb5\x05\x6d\x48\x93\x41\x95\xe2\x69\x58\xa8\x24\x4d\x67\x0b\x95\x64\xb0\xb1\x19\xa7\x57\x98\x39\x71\x7a\xe5\x00\xbb\x35\x4b\xa2\xaa\x14\x2e\x27\x4d\x1e\x8e\x91\x83\xb6\x60\x17\x5a\xf3\x81\x0c\x5f\x0d\x33\x14\xd7\x4d\xe8\x78\x71\x59\x87\x0e\x5e\xf4\x5f\x3e\xbd\xd8\x4f\x36\x5b\xa8\x32\x8d\x0d\x24\xd1\x66\x41\x38\x03\xf7\x76\x0c\x67\xce\x01\x0d\x09\x47\x3d\x37\x94\xe5\xea\xb9\x81\x9e\x8b\x9f\xa5\x10\xce\x29\xc5\xf8\x08\xb5\xe0\x90\xd7\xc3\x9a\x9d\xc8\x70\xaa\xd8\xe7\x0b\x4d\x40\x6e\x4c\xed\x97\xca\x8a\x1b\x53\xfb\xa5\x3a\xc2\xeb\xec\x97\x76\x9b\x5e\x67\xb1\x21\xbc\xce\x7e\x69\xa8\xcd\x6d\xa9\xf4\xeb\x3a\xa5\x5f\x20\xdd\xe0\xa6\x97\x7e\xa9\xac\xb8\xe9\xa5\x5f\x6a\x27\x0e\xe1\xfa\xa5\x86\x99\x6c\x5e\x79\x8e\x38\x26\x7b\x75\xf5\x74\x72\xfa\xb1\xbf\xdd\xc2\xac\x5f\x2a\x72\xde\x1a\x49\xf5\x74\x63\x1b\xc4\xfd\x52\x00\xbf\x1c\xa0\x42\x94\x5b\x53\x92\x67\x90\x26\x9d\xa5\x7a\x9d\x52\x7f\x4b\x43\xfb\x9a\x94\x05\xbb\x30\xf1\xf1\x29\xb5\xe6\x10\x5a\xd5\xf9\x98\xc9\x51\xb6\x91\x56\xd6\x2f\x65\xdb\x0b\xf7\xa0\xaa\x7e\x5f\x78\x38\xd5\xd9\xe0\x2c\xb0\x5f\x4a\xbe\x9d\x56\x96\xfa\xa5\xa8\xd3\x45\xad\x6a\x63\xd2\xca\xfa\x95\x0f\xa4\x1b\x2a\x67\x2e\x51\x49\x55\x15\xca\x4b\x24\xfd\x52\x10\x7a\x16\x58\x55\xa1\xef\x6e\x37\x8a\xd0\x9a\xcf\x6f\xad\x99\x21\x18\x82\x5a\xd5\x7b\x3b\x04\x75\x7d\x7c\x4a\x37\xe5\x54\x4d\xb1\x7d\x01\xcb\x2a\x6d\xc2\x17\x90\xb9\xc2\x83\xed\x97\x22\xf6\x8d\xe5\x52\xd5\x99\xa4\xa4\xf5\x4b\x89\x4b\x0e\x5a\xaa\xaa\x50\x1c\xda\x7e\x29\x53\x39\x83\xec\x57\x39\xa5\xac\x82\x32\xf5\x8d\x14\xf1\xf8\x96\x97\x36\x57\x69\x15\x32\x1b\xf7\x81\x0e\xa1\x09\x19\x42\x39\x90\xd9\x90\x36\x3e\xb8\x25\x55\x62\xf8\x48\x39\xc5\x52\x89\x5f\x3f\xe4\xe3\x6c\xa8\x15\x3f\x52\x8e\xca\x59\x57\x99\x4b\x51\xfb\xbc\x1c\x11\x02\x98\xa7\x17\x17\xdc\x03\x9c\xc9\x05\x45\x00\x4f\x7c\xa7\x4e\xea\xc5\x82\x90\x0a\x9a\x7c\xf2\x6a\x7f\xe7\x02\x80\x05\x19\x20\x8a\x7d\x26\x07\x88\xb4\x9e\x3c\x28\xd1\x49\xdb\xe8\x53\xbf\xcb\xe3\xea\x93\x57\xe5\x71\xb5\xcf\x36\x76\xee\x03\x58\x10\xda\x78\xec\x86\xe3\x65\x67\x64\x26\x79\xbf\xd9\x2b\x24\xa1\x87\xd9\x3c\xdb\xb8\xa0\xdd\x18\x4e\x8e\xdd\xc0\x82\xe0\x7e\xd5\x05\xf9\x18\xe2\x9f\xb7\xc2\x0d\x1d\x42\x36\xd4\x2a\xbd\x85\x76\xa3\x0b\x19\x20\x7a\xe0\x24\x47\xd5\xbf\x61\x8f\xdf\xb7\x16\x13\x17\xa8\xf6\xe9\x61\x18\x17\xa8\xf6\x79\xe3\x1a\x7b\x86\x3e\x39\xa3\xea\xa4\xe5\xf7\x69\xb8\x9f\x87\xe6\x26\x34\x75\xa2\xfc\xfb\xe4\xe8\xa8\x13\xd6\xdf\x7d\x5c\xb1\x13\xd6\xbf\x20\x2b\x86\x3d\x31\x39\x3a\xea\xbc\xfa\xdd\x79\x4d\x71\x95\x3e\xc2\x17\xa5\x07\x7e\x80\x2c\x20\xb7\x55\x76\x82\xfe\x17\x84\xab\xca\x29\x2d\xc0\x53\x5a\xf9\xd8\x4e\x0e\xda\xbd\xed\xa4\x4b\x04\x1b\xcd\x7d\x64\xb5\x4a\xed\xb3\x2b\x56\xfc\x2d\xfc\x4a\xd0\x7f\xe7\xad\xc5\xd4\x89\xb6\x5f\x90\x21\xd4\x03\xa9\x4a\x56\xc8\xce\x86\xe4\xcc\xd3\x8b\xa9\xca\x19\xdc\xf5\xd1\xd3\x73\xa0\x55\x31\x22\xbc\x85\x9e\x9e\x03\xfd\xb8\x08\x61\x94\x7a\xe0\xa4\x94\x11\xed\x4c\xa2\x05\x9b\x90\x15\x94\x51\x0a\x0c\x9a\x24\xc9\x8a\xed\xe5\xd1\xbe\x8f\x0d\xf6\x24\x85\x56\xc7\x2b\x49\x56\xb9\x4a\xbe\xa9\x72\x95\x8c\xc2\x33\x08\x9d\x38\xfe\x3e\x75\x0f\x3c\xda\x27\x39\x68\x95\x66\x61\x07\x16\x21\xc3\x6f\xfe\x56\x9a\x6c\x7e\x3c\xfd\x6d\x15\xda\xab\x26\x84\x54\x24\xe0\xd6\xfd\x6d\x11\x32\x75\x48\xeb\xd9\xce\x10\xaa\x10\x6a\x97\x44\xb9\x9f\xb1\x27\x69\xb2\xa1\x15\x93\x64\xd6\x64\x1c\x36\x09\x7d\x30\xb0\x27\xa9\xae\x39\x40\xe9\xaa\x39\x40\x04\xb0\xc9\x41\x9d\xfc\xf8\xce\x83\x81\xab\x2a\x7f\xeb\x00\xa5\xba\xa6\x56\xc4\x7c\x9c\x5d\x1e\xc4\x7c\xe4\x0d\xc0\xd4\x93\x54\xd7\xa5\xab\x38\x10\xc1\x80\x1d\x37\xbb\x7c\x24\xd5\x79\x96\x62\xc0\xc1\xec\xb2\x86\x54\xd7\xa5\x1c\xe9\xaa\x4f\x6b\xf6\xb7\x13\xda\x50\x5a\x77\xe9\x2a\xce\x6f\x07\xf0\xfc\xd6\x6e\xf0\x31\xcf\xfc\x25\x23\x0c\x26\x37\x32\xf6\x54\x0f\x84\xda\x25\xd1\x50\x59\xc5\x81\xf6\x99\xc9\xe1\x0a\xc6\xc4\x6d\xe7\x0b\x42\x75\x52\x0e\x77\x2e\x26\xa3\x13\x26\x6f\xbe\x27\x63\x08\x66\xc8\xce\xae\x3e\x21\x6d\xdd\x48\xfd\xc9\x8b\xf0\xc9\x90\x02\x72\x78\x56\x69\x17\xda\x6e\x15\xc2\x47\xca\xe3\x81\x76\x32\xe0\x80\x0c\x9f\xd4\x93\xa4\xe2\xa1\x8d\x01\x07\x64\xf8\xac\x52\x3a\xc9\x45\x12\xc9\xb0\x80\xc9\x45\x89\xc9\xb0\x80\x39\x90\x75\xc6\x01\xcc\x31\xfc\xf8\x97\x09\x5c\x9d\x27\x01\xd7\xb7\x76\x0a\xd9\x66\x90\xc0\x34\xa2\xcd\xa8\x80\xc9\x5b\x05\xdd\xf4\x81\x39\x21\x3a\x83\x04\xa6\xf6\xb1\x51\xfe\xd3\x53\x19\x63\x06\x26\xa7\x32\xdd\xd0\xfc\xc9\x13\x02\xc9\x20\x81\x39\x95\x4f\x12\x1d\x17\x14\x76\x43\xf3\x27\x6f\xbe\x77\xc3\xeb\x7d\x8b\x2f\x19\x06\x30\xb5\x8f\x8d\xb6\x9f\xaf\x0e\xa3\x48\x56\x2f\xc5\x95\x64\x45\xcc\x5a\x37\xda\x7e\xbe\x4e\x37\x0e\x7c\x03\x43\xb8\xfb\x6c\x04\xb9\xef\xe9\xa5\xa6\x68\xd7\x8a\x35\x64\x7c\xbe\xe8\x24\x59\xeb\x7d\x7a\x78\xd2\x94\xf4\x6f\x44\x8e\x31\x03\x53\xc3\xd4\x98\x81\xa9\x61\x6a\x34\xb6\x2f\xe6\x25\x63\x06\x78\x31\x6f\xc1\x22\x7c\xf3\xf1\x29\x65\x9e\x35\x2f\x38\x5a\xe9\xb7\x93\xf3\x96\x34\xb4\x36\x78\x4f\xaf\xf3\x28\x76\xf7\xc9\xb8\x64\x54\xc0\xe4\x6e\xbc\xd4\x14\xcf\x1f\xc4\x95\xd1\xd8\xf3\x83\x86\x31\x1a\x9b\x27\xe3\x16\x4c\x42\x7a\xf5\x9c\xaa\xe8\x95\xb2\xdc\x63\x0a\xa3\x04\x4e\xae\x90\x51\x02\xd3\x63\x0a\xa3\x04\x26\xd7\xe4\x77\x83\xb3\x4d\x1d\xea\x86\x5f\x4f\xee\xc6\x4b\xdc\x13\xdf\xcd\x15\xea\x06\x58\xcf\x2f\xe6\x86\x01\xd6\xf3\xcb\x99\x6b\xd3\x36\xf9\xe2\xe1\x18\x60\xcd\x13\x72\xab\x94\x3e\x7f\x1d\xbe\xa2\xfd\xeb\x78\xf3\x29\x85\x54\x14\xde\xa6\x0e\x79\xb4\x3f\xbf\x0e\xdf\x01\x92\x3a\xd4\xef\x33\xc0\xc9\x88\xce\x00\x91\x9a\x9e\xf4\x4f\xee\xd4\xef\x77\x3e\xd0\x86\x1c\x11\xee\x90\x21\xd5\xbe\x28\x97\x9a\xa2\xfd\x2b\x2f\x54\x47\x84\x7b\x70\x9f\xc9\x71\x9e\xb7\x5d\x1e\x3e\x30\x97\xda\x96\xf4\x0b\xb2\x82\x7b\x08\xe1\x03\x73\x9d\xd0\xe6\x20\x0b\x69\x7d\x9c\x85\xd6\x1c\x42\xd6\x77\xeb\x81\x38\x69\x47\x04\x1c\x2c\xc8\x88\x4e\xe9\x60\x8d\x9a\xd0\xe1\x57\xdb\x45\x69\xdc\xcd\x76\xa7\x55\x1d\x48\x27\x9b\xed\x6e\xe7\xbf\xf3\x74\x77\xf8\xa2\x5c\xbf\xb7\x98\x8c\x9e\x90\xb8\x84\xeb\x2e\x88\x20\xac\x21\x64\x36\x1a\xbf\x35\x1d\x88\x40\x87\x20\xe1\x67\xc1\x5b\xc8\xb4\x87\x55\x61\x7c\xb5\xc6\xd4\x11\x0e\xd7\x89\x84\x5d\x90\x11\x35\x3f\x96\x54\x1c\xef\xbe\x1d\x61\x7d\x6c\x43\x52\x4e\x63\xae\x38\x69\xe9\x24\x6a\x2f\x58\x80\xa7\x94\xd9\x68\x4d\x38\x28\x75\x44\xca\x67\xa7\x2e\x61\x98\x3f\xe9\x97\x5b\x3d\xc1\xeb\x73\xeb\xa7\x21\xa4\xe2\xfb\x12\x52\xd3\x4d\x97\xb9\xf7\x3f\x11\xb9\xb1\x60\xa2\xf4\x40\xba\x7c\x3f\x42\x86\x7b\x33\x19\xf7\xf0\xb7\x45\x58\x29\x6d\xc2\x0e\xec\x42\xbb\x61\xaf\x54\x47\xbd\x0a\x69\xe8\xb1\x21\x48\x83\x97\xd9\xa3\x73\x05\x61\x27\x13\x3b\xba\x7e\x08\xb1\x9f\x41\x9e\xd1\x9d\x08\xc6\x08\x33\x89\x3a\xb1\x9f\x61\xea\x50\x27\x4f\x7b\x41\x48\x23\xac\xca\x4e\x3e\x21\xdc\xac\x40\x28\x68\x9c\x3c\x23\x2e\x7d\x8d\xfe\xd8\xc9\x9c\x84\x7e\x4c\xbb\xe4\x0a\x75\xa2\x3b\xa3\xe7\x10\x66\xa1\xbf\x2d\x42\x66\x32\x57\xe1\x1e\x02\xa1\x1a\x41\x72\xd0\x2a\x6d\x42\x1b\xa2\x1b\x59\xb2\xca\x21\xcc\xfc\xf6\x94\xbe\x81\x94\x16\x02\xbb\x89\xaf\x88\x5e\xec\x55\xa1\x5d\xae\x8d\xef\x8f\x72\x82\x27\xd5\x3a\xc1\x8f\xd1\x79\xb8\x3c\x11\xf6\x10\x27\x67\x87\xeb\x56\x17\x64\x44\x35\x09\x2b\xa5\x5d\x18\x40\xba\xe1\x35\x04\x5d\x22\x24\xf2\xaa\x3f\x4a\xa0\x8a\x92\x7c\x14\x2a\x9c\x4b\xf4\x47\x91\x53\x91\x4f\x8f\x42\x45\xc7\xa3\x4b\xc0\xd5\x11\x29\x54\xb8\xb3\xa0\x3f\x0a\x06\x13\x7c\xba\xf4\x5c\x59\xfd\x2e\x3d\x57\x4e\x19\xbb\xf4\xcc\xad\x7b\xfd\x69\x07\xfa\xb1\xbd\x42\x1e\x13\xd9\x10\x26\xe9\xf4\x47\xf6\x6d\xb8\x52\xfd\x3e\xd0\xf1\x76\x21\xe3\x6d\x07\x32\x5e\x39\x54\xe7\x81\x3c\xe6\x05\xf9\x58\x7a\x6e\xd8\x7c\x5d\x5e\x68\xf2\x51\x3c\x42\x96\x5b\xd6\x68\x2e\x8a\xb2\x8d\xdb\xdc\x53\x97\x53\x3c\x97\xe8\xb2\x46\x77\x62\xe5\x05\xee\xc6\xeb\xc4\xce\x2d\xc8\x78\xe5\x05\x7d\x89\x7c\x1d\x48\xcd\xf2\x42\x67\x57\xb0\xcb\x0b\x1d\xdb\xb3\xcb\x0b\x9c\x0f\xf4\xac\x98\xf4\xb6\x80\x2e\x6b\xf0\x28\x78\x27\x07\x7a\xc1\x2f\x90\xdf\x92\x3c\xd3\x89\xac\x5b\xd0\x9a\x9b\x10\x9a\x94\x35\x48\xad\xe9\x59\x89\xcb\x75\x77\x3d\x2b\x71\x3d\x4c\xe8\x32\x0e\xf7\xdb\x75\x1e\xe7\x0e\x1f\x3e\xeb\x59\x3e\x8a\x33\x5e\x3f\x86\x53\xb2\x7c\xe4\x96\x7f\x57\xa3\x72\x29\x5d\xea\xaa\xd0\x61\x9f\x53\x16\x3e\xc0\x22\xa4\x93\xb2\x95\xee\x41\x97\xe9\x06\x12\x38\xcb\x65\xec\xf1\xf7\x9c\x7e\xf9\xe6\xee\xfa\x96\x79\x95\x23\xb9\x0e\xa0\x67\x59\x90\x2d\xff\x9e\xef\xd3\xce\x0b\xe8\xc7\x98\xbc\x59\x46\x31\xe0\xab\xcb\x91\xec\xd3\xf7\x2c\x2b\xe8\x1e\x74\x19\x74\x76\xab\x3a\x90\x05\x94\x15\x26\x5b\xd1\xbd\x1e\xc8\x44\xca\x19\xf3\xf4\xf9\x40\x28\x54\xf6\x9d\x52\x99\x7a\x9d\x08\xaf\x9e\xd5\x21\x5c\xb2\x9e\xba\x6a\x9e\xab\xe3\x3a\x71\x76\xd1\xa7\xec\xab\xd6\xd7\xf1\x20\xec\x6e\x41\xfa\xfc\x50\x6a\x3a\x4c\x97\x9b\xdd\x89\xcf\xaa\x23\x03\xbe\xba\xec\xfb\xea\xf6\x8a\x6e\xb8\xf5\x9e\x65\xd0\x97\x23\xd2\x8e\x79\x39\xed\x32\xe8\x0b\x77\xaf\x6b\xd6\x10\x0e\xd6\xb3\x0c\xea\x5e\x7b\x57\x1b\xbf\x1c\x6f\x3e\x90\x05\x95\xab\x5e\x6c\x04\x11\x05\x11\x66\xe5\xf4\x2c\x57\x99\x95\xd3\xfb\x81\x50\xb7\xfa\xe7\x85\xa5\xd2\x55\xdd\xef\xee\x6f\xbb\xd0\x4e\x56\xe1\x96\x13\x84\xce\x45\x7f\xbb\xa0\xbd\x09\xe9\x64\xb9\x85\xf6\xca\xaa\xe4\xaa\x42\x27\xb9\xb2\xa1\x13\x67\x17\xbc\x65\x76\xa7\xae\x04\xe2\x8e\x86\x4e\x60\x5d\xf0\x3c\xd9\x82\x76\x63\xfa\x5b\xda\xfd\x10\xbb\xc0\x8d\xb1\x0b\xfa\x31\xed\x7e\x4e\xaf\x42\xc8\xd4\xc9\x64\x1f\x3b\x19\x56\xe5\x2a\xc8\x38\x1f\x2c\xc2\xae\xda\xd7\x59\xca\x9a\xda\x1f\x2c\xc2\xb8\x0e\x44\x8a\x68\x79\x73\x91\x78\xcf\xb2\x86\xde\x51\x28\xcc\xbe\x4a\x02\x79\x41\x97\x26\x4b\xfc\x5f\x45\x8e\xc4\xff\x85\xf8\x43\x29\xf2\xc5\x90\xc9\xf2\x82\x2e\x4d\x28\x54\xbe\x92\x8a\xbc\xe0\x5d\x09\xa1\x8c\xd1\xc3\x09\x85\xca\x97\xad\x8f\x2c\x6b\x98\x2d\xc3\xcd\xad\xc1\x63\x5e\x0b\x26\xa1\x35\x3f\x40\xe9\x19\x25\x19\x5e\x43\xc0\xc1\x7f\xc4\x35\x58\x41\xec\xe3\xb8\x20\x42\x6e\x50\x5d\x10\x62\x68\x7e\xec\x72\x37\x4b\xb1\x20\xb8\x5f\x35\xcc\xa5\xe9\x84\xf0\x05\x8f\x79\xad\xd2\x3d\x39\xbe\xde\x95\x88\x12\x58\xd0\x4e\x9e\x52\x3e\x86\xd9\x7d\xcc\x2b\x11\x25\x10\xe1\xf5\x00\x44\x09\x84\xe9\x31\x9d\x10\xbe\x05\x3f\x94\x32\x40\xae\x0a\x4f\x1c\xfc\x07\x29\x2e\x77\xe2\x3c\x3e\x4e\x8a\x0b\xe7\xf1\x0b\xd2\x50\x3e\x1f\xc3\x38\xfd\x7c\x4c\xcd\x18\x7d\xa1\x4d\x4f\x70\x60\x84\x7b\xb3\x44\x03\x06\x91\xec\x0b\xfe\x72\xab\x67\x7d\x0b\x59\xc1\x91\x3e\xca\x93\xb8\xc8\x74\x41\x84\x37\x1c\x19\xd5\xb9\xc9\x07\x3a\xfa\x10\xda\xc7\x03\xe9\x63\x30\xcd\xd5\xc5\x0f\xfb\x88\x89\x40\x80\x41\x84\xdb\xba\xc4\xe8\x2d\xb8\x47\x4f\x50\x5e\x84\xd6\x15\x51\x78\x0b\xb2\xda\xc5\x4e\x62\x2f\x72\x73\x69\xf8\x46\x4f\xe2\xaa\xd2\xf0\x51\x9e\x4e\x60\xdd\x82\x0c\x10\x8e\xe4\x8d\x9e\x55\x5a\x84\xf0\x0d\x2c\xe8\x2b\x3c\x89\x7b\x3f\x17\x64\xf8\xd5\x86\x50\x83\x04\xa9\x85\x8f\xf2\x24\xce\xfd\x23\x4c\x6b\xe6\xde\xcf\x05\x59\x7c\x98\x2c\xba\xbf\x4d\x74\x83\x8c\xe1\x4e\x18\x5a\xf0\x68\xcd\xfa\xf8\x94\xd2\x49\xb8\x99\x50\xf5\x55\x5a\x85\x1f\x4a\x8b\x90\x21\xc8\x19\x3c\x0d\xdb\x89\x59\x0b\x5f\xb8\xe9\x04\xa9\x85\x81\xec\x9d\x20\xb5\x08\x0d\x26\x02\xcd\xc2\xf7\x6f\x7a\x91\xb9\xdd\x6d\x2d\x32\x37\x01\x15\x9d\x88\xaf\xe0\x49\x9b\xd5\xae\x55\xe1\x38\x87\x5c\x65\xc8\x04\x97\x84\x2e\xc8\x88\x64\x94\x40\xa5\x70\x49\x68\xf8\x2c\x4d\x2f\xf2\x8d\x7b\xb1\x21\x93\x05\xe6\x06\xa1\x56\x0b\x32\x57\x32\x4a\x48\x0c\x72\x86\xc6\x56\xf4\x53\x15\x74\x85\xe9\x19\x06\x54\xf0\xce\x43\x84\x31\x12\x21\x2f\x0c\x24\x7d\x48\xfc\x03\x59\x5e\xd0\x3f\xbe\x43\x93\x42\xe2\xff\x7f\x18\xfb\x73\xa4\xeb\x61\x20\x4b\x1b\xf3\x7b\x15\xb5\x04\x62\x06\x22\x2a\x6a\x2f\x04\x79\x29\x4f\x86\xf6\x6f\x28\x70\x9e\x93\x6f\x75\x87\xf4\xf7\x57\xd6\x65\x82\xbc\x18\x73\x00\x90\x93\xaf\x57\x97\xb1\xfd\xf6\x00\x8d\xa2\xf6\x18\x5e\xcb\xed\x1a\x9f\x8d\xb1\xb7\xf1\x79\xb9\x66\xa8\x19\x5b\xa3\x03\xb2\x64\xdd\x35\x7b\x44\xc8\x1f\x2c\xe6\xcf\x5b\x83\x1c\x0e\x9b\x59\xec\x36\xc6\x22\x8e\x9c\x00\x66\x36\x4f\xce\x66\x6b\xd6\x3c\x5e\x19\x1c\xe4\x7c\x99\xca\x7c\xbf\xda\x3c\xfc\xc7\xb8\xe1\xf1\x12\x9a\x76\x62\xd8\x71\x40\x26\x87\xa3\xc5\x92\xd1\x40\xce\xd8\x3d\x1c\xb0\xf3\xb6\x1a\xa4\x5d\xb3\x82\xc7\xb4\x80\x34\x76\x9a\x96\xd9\x3c\x40\xf6\x35\x99\x80\x9b\x07\xec\x80\x6e\x17\x11\xda\x3c\x40\x76\x2e\xf9\x32\x1d\x3d\x46\x24\x73\x95\x87\xe1\x77\x73\x15\xc5\xad\x3a\x1f\xbb\x57\xcc\x46\xf7\xf0\x1f\x50\x85\x7c\xdb\x6b\xbd\xd3\xff\x2d\x06\x2b\x60\x35\xe8\x5e\x35\x83\x93\xb7\x01\x2e\xde\x76\x83\x0f\x20\x03\x7c\x99\x49\x8c\x33\x96\x73\xba\xe4\xcb\x24\x29\x0b\xfa\x03\x2e\x83\x9d\x8f\xe3\xbf\x0f\x60\x7c\xfc\xea\xe3\xfc\xcf\x9c\xbb\xe7\xdb\x1f\x7f\x75\xc5\x62\x57\xf9\x32\x35\xbf\x9e\x66\xcb\x66\xa2\x67\xe5\xcb\xc2\xf8\xe5\xee\xaa\x7b\x11\x5e\xb8\x75\xf7\xac\x13\x2f\x37\x5f\x16\xc6\x36\x5d\xe8\x9e\x66\x6d\xd4\xce\x5b\xb7\x0b\xb2\xf7\x98\x39\x0e\x74\x3d\xa6\x6a\x33\x55\x16\xd5\x44\xd3\x9d\xdd\x33\x87\x2d\xfe\xec\x9e\x2a\x82\xeb\xce\xee\xa9\xc2\x34\x3f\x5f\xe6\x22\x3f\x34\xc1\xdd\xcc\xec\x67\xb4\x32\x17\xf9\x79\xbc\xc5\x35\x23\x8e\xba\x59\xdd\x8f\xcd\x07\x89\x63\x0f\xe8\x5e\xb9\x5d\x0f\x9f\x9b\x01\x9b\xe6\xe7\xcb\x3c\x46\xde\xd4\x07\xac\x06\x69\xd7\x62\xfe\x43\xcb\x88\x99\xc7\x01\xdd\x90\xdf\x2e\x16\xc5\xf2\x16\x87\xe9\xd9\xbd\x28\x84\xcf\xcd\x97\xe5\xed\x67\x5c\xf0\x1a\x91\xb5\x65\x76\xaf\xc2\xe7\x69\x6f\x01\xba\x5d\xff\xd7\xa4\xdf\x02\xa4\x1b\x9e\x76\xc2\x56\xe5\xab\x07\xc8\x3c\xb3\x43\xba\x7d\x61\x8c\x25\xc3\x01\x59\x41\xae\xc5\x48\x00\x93\x26\x96\x0c\xeb\xe6\x4a\x38\x63\xd7\x71\x40\xd7\xdc\x00\x6f\xe6\x0a\xf1\x7b\x5f\x5e\x94\xee\xaa\xa4\xeb\xcd\x58\x5f\x2c\x12\xc0\x9c\x9a\x87\x41\xaa\x1a\xee\x15\xa4\x8f\x75\xc2\xb2\x1d\x7f\xc6\x18\xe3\x80\x03\xb0\x18\x64\xbc\x2d\xfe\xcb\xfa\x0e\x77\x52\x37\x21\x99\x90\x9a\xeb\x66\xfb\x98\x09\x9a\xb9\x6c\xc7\x3f\x31\x56\x38\xa0\x3b\x49\x9f\x13\x67\x09\x8c\x06\x0e\xc8\x2a\x4c\x7f\xcc\x9e\x08\x87\xff\x85\x59\xff\x79\x5b\x0c\x32\x93\x2c\xd9\x9d\x16\xbd\x82\x79\x63\xd6\x7f\xde\xba\x21\x76\xcf\x98\x14\x1c\x90\xa9\x9b\xee\x33\x6c\xb2\xb3\x27\xb2\xd1\xff\x24\x35\xf9\x72\x96\x9a\x89\x85\xc1\xba\x7d\xfb\xda\xbd\x46\xb8\x35\xe7\x0b\xc9\x76\xe7\xf8\x98\x9a\x33\xa2\xac\x7b\xc9\xb2\xe7\x19\x41\x77\x93\x3a\x35\x13\x43\xf3\x80\xa0\xd9\x72\x43\x9e\xe7\xe5\x86\x3c\xcf\x88\x85\xbb\x78\x9e\x11\x0b\x77\x31\xc7\x45\xd0\xdd\xc5\x1c\x77\x05\xe8\x01\x4e\x83\xcc\xe4\x0a\x90\x45\x41\x0e\xd8\xf8\x7e\x76\xa3\x0a\xf6\xf4\x99\xa4\x10\xeb\xb6\xe9\x06\xf9\x5d\x17\x69\x5a\xce\x5b\x7a\x55\xd9\x2f\x13\x0f\x60\x61\xf6\x7e\x40\xfe\x8b\xd9\xfb\xec\x9e\xf6\x0a\x2f\x27\x83\xc4\x01\xfd\xdf\x00\x99\x67\xc4\xaf\xad\xe0\x33\x26\x32\x07\x64\x7d\x11\xbf\x77\x35\xfb\x9a\x7e\xeb\x35\xf2\xa2\xe0\x13\x9c\xd3\xff\xe0\x8e\xff\xae\x70\x2f\x0c\x66\x0e\xf8\x03\xf4\x08\x60\xde\x29\xb9\x53\xda\x4e\xe5\x04\x8b\xbd\x1b\x6b\x82\xd1\xcb\x01\x41\xba\x15\xe0\xe4\x6d\x36\x88\x94\xf0\xe2\x37\x98\x19\x09\x24\x0e\xc8\x34\x7b\x89\x1a\x94\x91\x60\x84\x77\xe3\x82\xad\x7b\xc5\x30\xa0\xcf\x84\xc5\x5c\x36\xa0\xcf\xa4\x97\x58\xb6\x2f\x9f\x68\xf6\x0f\xb8\x00\x93\x41\xff\x77\x19\x7c\x79\x9b\x0d\x0a\xe9\xb0\xcc\x59\x18\xa3\x1f\xd0\xff\x45\x4a\x60\x8a\x73\xc0\xc6\x7f\x8b\xc1\xc1\xdb\x00\x27\x6f\xab\x41\xd6\xa4\x18\xdc\x0c\x1f\x71\xe4\x34\x2d\x13\xcd\xfe\x01\x3b\x6f\x3d\x22\xf6\x22\xe4\x37\x5d\x37\x9e\xbb\x93\x84\xa6\xcb\x69\x5a\x32\x86\x3a\x07\x64\x08\x66\xb1\xb8\xea\x4e\x1c\xfe\x17\x69\x5a\xce\x5b\x57\xe5\xc9\xf1\xfa\xda\x52\x65\x78\x7d\x87\x27\x16\x61\xe5\x24\x2e\x13\x4d\xff\xba\x95\x67\xf4\xbc\x6d\x06\x5d\xb3\x1b\xf2\x78\xcd\x8f\x89\xc5\x34\xb1\x03\x38\xa0\x6b\x76\x43\x1e\xbe\x11\x89\x8c\x2f\x19\x63\x9b\x03\x8a\xe5\x24\xf3\x54\x1c\x88\xe7\x30\x5e\x4d\xcf\x86\x11\x09\x13\xf9\x39\x8c\x39\xb8\x08\xe7\x64\x9e\xaa\x8b\xea\x03\xd2\xee\x5c\xac\xaf\xb9\x26\x71\x9c\x72\x32\xd7\x9c\x9e\x2b\xb3\xc9\xe9\xb9\xca\xae\x6a\x51\xb3\xb9\x26\x61\x6d\x27\x56\x02\x0b\x33\xf7\xf3\xd6\xbd\x42\xfe\x0c\x63\x1d\xf7\xd6\x39\x99\xa7\x4e\x8f\xd7\x4c\x14\xbb\xf6\x9c\xcc\x44\x7d\x0c\x1b\xc6\x3a\xc2\xda\xce\x61\x34\x5b\x5e\x7d\x4b\x45\xdf\x5b\x0f\xa3\xd9\x9a\xac\x82\x85\x24\x26\x31\x39\x99\xd5\x2d\x76\x4c\xc3\x48\xb8\xcc\x9f\x2c\xe8\x96\x31\xc7\x48\xe8\x4b\xee\x61\x34\x5b\x9e\x9c\x11\xff\x65\x51\x8c\x75\xbe\xe4\x1e\x46\x33\x05\x8c\x3a\x1f\xbb\x2a\x13\x0e\xb7\x91\xb6\xfb\x9e\xc3\x88\x74\x1b\x73\xcc\x71\x6f\x53\x0a\x27\xc9\xfb\xde\xfe\xb8\x1b\x84\x23\x59\xc0\x72\x1c\xca\x18\xcc\x1c\x10\x5a\x30\x7b\xc6\xdb\x38\x27\xcb\x5b\x2e\x9f\x73\xb2\x80\xdd\x26\x1c\x33\xef\x6d\xdc\x30\xf3\xde\xcb\xed\x2e\x83\xfe\x98\x5e\x6d\x33\x0a\xf3\xe3\x6d\x46\x61\x7e\xbc\x3d\xde\x16\x20\xed\x9a\x4f\x12\x6d\x29\x27\x33\xc6\x6d\xcc\xb1\x54\x24\x87\xe7\x1c\xde\x8c\x6c\xcf\x86\x85\x24\x57\xd3\x39\x59\x48\x92\xc6\x24\xa7\xf5\xef\xab\x1e\x67\x31\xc9\xd9\x6c\x92\xbc\x9b\x39\x9b\x4d\x3e\xd3\x6f\x99\x66\x72\x67\x66\x92\x40\x2c\xa7\x1e\xc9\xd9\xec\xea\x81\x6e\xb2\x65\x95\xaf\xa2\x87\xe9\x95\xcc\x9a\x39\x9b\x5d\xf9\x8c\x86\x05\xc5\x01\xfd\x31\x03\x7a\xcc\x09\xb8\xb8\xbd\x1f\xc6\x97\xcd\x72\x1e\x76\x0c\xd9\x5c\x84\xdc\x99\x73\x78\x3b\x45\xfa\x90\x9c\xcd\x45\x88\x2d\x9c\xb3\xf9\x04\x41\x9e\xa6\xed\x1c\x6e\xee\x9e\x73\xb6\x0c\xf1\xdd\xb3\xcd\x1e\x30\xec\x3e\x6f\x5d\xb3\x47\x64\x7a\xf5\x71\x28\x9b\x13\xbc\xb7\x6b\x76\x55\x2c\x42\x36\x27\xf8\x81\x74\xd9\xa4\x8f\xbd\x75\xce\x96\x30\xc4\x7c\x9a\x36\x8a\xc0\x84\xfa\xbc\x4d\x06\x99\x0d\xef\x72\xb8\x6c\xce\xd9\xc4\xfd\x33\xcd\x79\x97\x43\x5e\xca\x9c\x4d\xa0\x3e\xa5\xd8\xb0\x81\x24\x1f\xe7\x6d\x7c\x4c\xbb\x66\x0c\xe4\xa5\xcc\xd9\xdb\x74\x9f\x52\xb2\xa9\xf9\x83\x50\xb2\xa9\x99\xac\x1e\xd3\x46\x11\xf7\x07\x8f\xc9\xa6\x66\x02\x37\x65\xb2\x22\x1c\x10\x69\x3c\xe2\x2d\x8b\x62\x91\xc2\xdd\x73\xce\x26\x7d\xdf\x3d\xdb\x82\xe2\xfe\xcc\x18\xcc\x90\x70\x11\xce\x18\xcc\xac\x7d\x79\xb9\x91\x30\xfb\x8a\x6e\x4c\x83\x0f\xe0\x32\x08\xab\x83\x5d\x6d\xe2\xe5\x4e\xdb\x57\x38\xf7\xc6\xb4\x05\xc5\xbe\x16\x6b\x04\xbd\xee\xcb\x8c\x70\xb8\x66\x98\x19\x51\x06\x0f\xe8\xb7\x6e\x88\xed\x63\x6e\x6e\x88\x4b\x06\x72\xee\x1e\xb0\xf1\xd6\xed\x72\xd2\x20\x16\xc6\x01\x7f\xbc\xa5\x2a\x5b\xaa\xd8\xa2\x02\xcb\xf5\x03\x16\x83\x90\x15\xc2\x6a\x27\xb3\x67\xb8\x17\x69\x3c\xce\x5b\x7f\x0c\x43\x22\xda\xdf\x72\xde\x8e\x6c\xdb\x1b\x1b\x94\x67\xc2\xfb\x1d\x90\x35\x02\xeb\x30\x8b\x3e\x35\x37\x83\x20\x03\x58\xe7\x0c\x12\xd3\xe6\x17\xbb\xdc\xee\xa4\xff\xcb\xc1\x92\xd0\x18\xcb\x69\x1f\x32\x89\x1d\x0e\xc8\xc7\x30\xc2\x5d\xbd\x64\xac\xfe\xf6\x76\x99\x00\x7e\xcb\x79\x1e\xb2\x0d\x84\xb0\x74\x3e\xff\xcd\x06\x99\x0d\xaf\x51\xf5\x78\xbd\x28\xf2\x21\x3d\x14\xe9\x6e\xdc\xee\x95\x1b\x32\x9a\x2d\x37\xc4\xe6\x2b\x7b\x9e\xab\xd7\x08\x16\xbb\x1b\xf2\x36\x7b\xbc\xcd\x14\xba\x02\x04\xcd\x38\x87\x6c\xef\x4c\x09\xc2\xb7\xb0\xbf\x3e\x9c\xe0\x32\x08\xd1\x79\xf8\xb6\x99\x20\x60\xc7\xda\xb8\x67\x4e\x02\x76\x2c\x0c\xae\xcf\xc7\xd5\x20\x6b\x14\xbd\x32\xe6\xfc\x0f\x18\xff\xee\x1e\x81\xfb\xd8\x61\xde\x36\x53\xda\x9d\x73\x87\x0d\x91\xb6\x77\xc0\x85\xfd\xf1\xee\xe0\x7e\x61\xcb\x4b\x6e\x86\xd3\xc7\x78\xfb\xf0\xb6\x1a\xfc\x78\xeb\x8f\x39\x49\xcd\x78\x0b\x29\xd8\xa6\x69\x77\x06\x54\x10\x29\x1b\xef\xcc\x6c\x23\x26\x32\x37\x9c\xff\x36\x83\x9a\x0c\x22\xf4\xad\xcd\xc5\x7c\x26\x42\xdf\x22\x73\xc3\x01\xab\xc1\xc1\x7f\xbb\xc1\xc5\x5b\x57\x75\xfb\x63\xbf\x8d\x59\x1f\x06\xa9\x39\xbb\x21\x64\xa6\xad\x98\xf6\x70\x27\xd9\x6b\xee\xe9\x5e\x21\x52\xf6\x9c\x7e\x4b\xcd\x24\xa6\xcf\x36\x6a\xda\x44\xa7\x99\xc4\x27\x59\x61\x60\x3d\x3d\x22\xdc\x04\xe7\xf4\x88\x88\x92\x99\x09\x95\xb7\x9c\x34\x60\x4e\x0f\xd0\xd7\xd8\xd3\x23\x22\x91\xdd\xb4\xb1\xcd\x26\x91\x5d\xb6\x41\x14\x39\x04\x0e\x58\x0d\xb2\xa0\x6c\x01\xc9\x12\x70\x40\x56\x81\x2b\xf0\x6c\xa3\xa6\x7d\x7b\x26\x53\x80\x62\x1b\xb6\x71\xda\x04\xcd\x9c\xb6\xcc\xb1\xfd\x71\xb6\x8d\xd3\x26\x86\xe6\xb4\xb1\xcd\xbe\x8d\x48\x08\x8d\x7d\xc3\x63\x6c\x5d\xb3\xef\x9b\x6e\x54\xf7\x0a\x12\xb4\xfd\xcc\xbe\xbd\x0a\x96\x03\x37\xda\x5c\x9b\xd3\x6c\xef\xf9\x6c\xf2\xb4\x37\xdb\x65\x9b\xd3\x6c\x22\x6c\x66\x5b\x40\xed\x0d\xcb\xb1\x05\xd4\xde\x50\xf3\xf4\x3c\x13\x61\x66\x12\x19\xe4\x80\xa0\x0a\xfb\x9a\xed\x1d\x21\x81\x42\x0e\x08\xe1\xb0\xaf\xd9\x9b\xcb\x57\x42\xd6\x2d\x2c\x9d\xcf\xc7\x0c\x81\xe8\x9c\xb9\xb4\x00\xe9\x95\xc5\xc2\xbe\x5d\xb3\x41\x36\x41\xc5\x62\x61\x9b\x8e\x8a\x47\xe4\xf1\x9a\x5b\x3f\x5e\x6e\xb3\x67\x6f\xeb\x6c\xc5\xb4\x1f\x2f\x37\x62\x7f\xdb\xf5\xcf\x96\x39\xdb\xbb\xbc\x62\x06\xec\x5b\x7c\x5b\xe6\x6c\xdf\xe2\xdb\xa8\x69\x3f\x6c\x46\x8a\xf9\xf1\x63\xb2\xb2\x44\xb5\xeb\x9f\xcd\x78\xf6\x83\x9c\xb7\x8d\x13\x46\xd3\x67\x2f\xe2\x76\xd9\x31\x15\x8b\x41\x5b\x49\xdb\xe6\x67\xe3\xcd\x97\x8b\x25\xdb\x1b\x7d\xa6\xa1\x17\xd1\x6d\x33\x9e\xfd\xba\x57\x33\x40\xb0\xce\xcb\xed\x6b\xed\x32\x03\x64\xb9\xbd\xfa\xde\xd6\x95\x19\x20\xd8\xee\x5d\x00\x39\xe3\x72\x59\x01\x42\xbf\xde\x05\xe0\xbe\x97\x6d\x79\xb5\xed\xbe\x37\x8d\x2a\xaf\x57\x70\x05\x48\x43\x96\x3f\xbe\xf4\x9e\xc6\x1c\xdf\x63\x4f\x63\x0e\x4e\x76\xd9\x86\x58\xdb\x4e\x76\xd3\x98\xf3\xf3\xa2\xac\x7f\xc6\xe3\x3f\xdf\x42\x64\xc6\xb2\xdf\x72\x1f\x87\x41\x10\x96\x1b\x98\xfd\xf3\x54\x71\xe5\x62\xb3\xef\x6c\xa3\xad\xfd\x03\x61\xb1\xc3\xba\xf7\x65\xb4\x32\xf0\xfc\xd7\x7f\x14\xdc\xfe\xee\x2d\x2d\x7f\xc5\x1b\xed\xde\x97\x6a\xfd\x03\x92\x5e\x35\x43\x59\x7f\x8b\x77\xbf\xf3\xae\xb9\xca\xcd\xbb\x80\x86\xde\x75\x43\x87\x84\x9b\xff\x76\x88\xa1\x70\x63\x7c\x6f\x85\x5c\xc9\xae\x43\x4e\x83\x05\x37\xc0\x1b\xbf\xbf\xda\xff\x3e\x3c\xab\xa7\x09\xbf\xf1\x01\x2c\xdc\x1c\x1f\xe8\x4c\x4b\xa3\x8f\xa4\x4e\x73\xc3\x18\x03\x37\xd7\xa7\x6b\x25\x5d\x2b\xdc\x24\x4d\x2b\xdc\x2e\xdf\xce\x99\x26\xe2\xbd\xc9\x73\x56\xf1\x67\xb9\x71\xec\x2b\xdc\x3b\x1f\xe8\xd4\xee\x09\x90\x79\x40\xe1\xd2\xf9\x40\x5d\x7f\x73\x63\x87\xff\x17\x6e\xa0\x0f\x74\x18\x4f\x07\x50\x5e\xf0\xc2\x6d\xf4\x81\xce\xe4\x73\x41\x75\x6f\x2c\x74\xc7\x34\x40\xd3\xc3\xd0\x69\x7a\x2c\x03\x67\xee\xf1\x14\xb9\xc9\x72\x56\xae\xf8\xdb\xa1\x91\xca\x15\xd0\x4d\x8e\xb3\x72\xc5\xff\x0e\x0d\x54\xae\x78\x0e\x74\x66\x64\xfa\x6f\x5b\x93\x3f\xfd\x6a\x6b\x7e\x66\x32\x74\xeb\x6f\xee\xc9\xa1\xf6\xc2\x95\xf8\x8d\x1b\x61\xf6\xb0\x15\x9d\xa5\x72\xc3\x72\xa0\x23\x9b\x56\x00\x42\x90\x59\x0c\x15\x7d\xb8\x0c\x9d\xb1\xad\x00\x34\x9a\x59\x0d\xcd\x03\x5d\x06\xb6\x5e\x35\x43\xc2\x02\xba\x58\x16\x1d\xee\x86\x54\x47\x36\xa0\x09\xa9\xf1\xa1\x56\x66\xba\xc3\xc6\x03\x03\xbc\x72\x87\x0f\xfb\x20\x58\xf1\x01\x68\xd9\x5d\x3c\x13\x47\xa4\xe2\x1b\xbf\xc2\x3a\x8c\xde\x8a\x84\x59\xb8\x7b\xbf\x77\x11\x2e\x0d\xe3\xb7\x5c\x0e\x8b\x17\x4d\xb7\xd6\x75\x18\xa3\x95\xb8\xa0\x70\x0b\x7f\x93\xd5\xad\x8e\x16\x5f\x9e\x6e\x25\x7a\xa5\x00\x98\x18\x74\xdf\x6c\xd6\x0b\xd7\xf1\x07\x3a\x63\xc9\xd9\x40\x3b\x55\xf4\xcb\x50\x3f\xaf\x8a\x01\x21\x8f\x09\x4b\x97\xda\x6c\x5b\x0e\xa0\x19\x58\xcd\xd0\x19\x66\x71\x5b\x4b\x74\x6b\xb2\xd0\xed\x36\xb1\x7d\x0f\x70\xb8\xc4\x18\xf1\xea\x2c\x74\x71\x5b\xb7\x96\xcf\xe8\xa1\xcc\x07\xec\x6b\x0e\x20\xa4\x9a\x51\x87\x26\xd8\xc8\xa2\x30\x30\xec\x69\x6e\xb6\xf7\xe5\x5a\x01\x9d\x4e\x55\xf7\x77\x6b\xee\x97\x1b\x13\x62\xa6\x2b\xde\x7d\x7a\xf7\x4f\xd5\xea\xbd\x15\x1b\xb3\x0e\xb7\xd0\x44\xa0\xb5\x18\x98\xaa\x33\x19\x3a\x03\xa8\x0c\x40\xf7\xe3\xc5\xbc\x51\xa7\x8c\x92\x8c\x72\xba\x2b\x67\xf7\x73\x80\xa1\x57\xae\x50\xf3\x5d\x99\x10\xd9\x64\x57\xac\xac\x6f\x72\xce\x11\x7d\xf7\xc6\x31\xb4\x4e\x2f\xbb\x32\xa8\x93\x90\xeb\xc6\xef\xb3\x18\x73\x74\xea\xa8\xd3\x94\xa4\x00\x9a\x05\xcd\xc8\xcd\x99\xa3\x4e\x2f\x93\xe2\xc5\x14\x33\x2f\x99\x1c\xd5\xe9\x65\x52\xb0\xcc\x82\xca\xe4\x40\xaa\xb2\x74\x43\x67\xc2\xfb\x34\xf0\xe9\x43\xbf\xd2\x0c\xf4\x65\xe0\xac\x27\x72\xfc\x40\x5b\x1f\xfa\x9d\xc8\xcc\xdc\x56\x97\xf2\x25\x99\xb2\x74\x09\x5f\x92\x89\x49\xd7\xea\x75\x1a\x37\x3b\x98\x9f\x80\x74\xc2\x28\x66\x87\x3a\x5f\x94\x94\x02\x3a\x95\x98\x01\xca\xe2\xba\xce\xbf\x0f\x45\xc6\x9e\x47\x05\x8d\xa9\xd3\x5c\x48\xa7\x92\x62\x26\xa7\x00\x32\x25\x99\x6f\xea\x52\xbe\x18\x39\x65\x38\x54\xfe\xfe\xf4\x9e\xef\xcc\x43\x65\x35\x54\xcc\xac\x94\x34\xbd\x98\x3d\x0d\x06\x66\x52\xd5\x75\x7a\x5d\x57\x40\x9a\x46\xd3\xea\x38\xeb\x59\xd7\x15\x90\x30\xc9\xc4\x2a\x0f\xd1\x62\x76\xa2\xc3\x4d\x5d\x9e\xab\x01\xba\x67\xb7\xad\xd5\x35\x03\x91\xe7\x68\xc5\x9a\xf0\x26\xab\x5c\x31\x69\x29\xe6\x4c\x5d\xe6\x42\xba\x6d\x2f\x46\x7c\xc5\x9f\x29\xc9\x6c\x5e\x87\xa3\x6a\x62\x52\x76\x85\xba\xbc\x12\xba\x94\x8f\x9d\x85\x32\x2d\x94\x64\x9e\xaf\x33\x54\x49\x46\x47\xdd\xcf\x57\x63\xa3\x4c\xa8\x4a\x32\xab\x51\xf6\xba\x92\xcc\x5d\x64\x53\x5e\x57\x54\x22\xa1\x95\xcc\x28\xe6\x99\xc8\xba\xa2\xca\xc3\x43\xaa\x31\x55\xc6\xe6\x58\x71\xdf\xa4\x9e\x2b\xe8\x6b\x6e\xdc\x54\xab\xa7\x4a\x56\x54\x75\x99\x6b\x28\x48\x4d\x49\xc6\x6f\x19\x4d\xd5\x65\xa2\x5e\xe0\x55\x19\x86\xd4\xb4\x69\x5c\x26\xe6\x85\x4c\x68\x07\x52\x03\x01\x08\xdd\xcd\xb1\xe4\xc8\x5a\x97\xe9\x5f\x76\x57\xd5\x6b\xad\xf0\xa1\x25\xb9\x27\xeb\xe0\x5c\xf5\x52\xeb\x36\xbf\x62\x8d\x77\xa0\x33\x23\x5e\x5c\x19\xa8\xd7\x65\x81\xa0\xbb\xfa\xba\xbc\xc9\xd1\x55\x7d\xf5\xac\x2e\x84\x96\x99\x97\x32\xb3\xd7\xe5\x8d\x8d\x8c\xb6\xaa\x29\x7e\x21\x8b\x62\xd4\x5b\xf4\x1f\xe3\x14\x4b\x59\x26\xc2\xa5\x89\x5c\xde\x95\xe9\xac\x5a\x31\x92\xbb\xf1\x9c\x2d\xc9\x03\x95\xa7\x6c\x5d\xe3\x9f\x91\x0a\xce\xa7\x22\x8e\x1a\x95\x6a\xf6\xcc\x3a\x6e\xf8\xa5\xe7\x41\x47\xd8\xba\x4c\x54\xf2\xa0\x2d\xc9\x3c\x52\xb9\xd6\x6b\xb4\xae\x59\x89\x1a\xb5\x37\x4b\x66\x98\x3a\x70\xb6\xcb\xcc\x42\x3a\x86\xea\x57\xfb\x8c\xa0\x5d\x5e\x46\x85\x9d\xa9\x16\xe5\xfb\x90\x43\xc3\xa2\xe6\xc6\x2f\xb6\x24\x73\x5d\xe5\x7d\xa8\xde\x4c\xea\x10\xda\x2e\xd3\x8d\xac\xdc\xab\xe7\x5c\x47\xce\x92\xbc\x70\x8a\x78\xda\x2e\xaf\x95\xd2\x41\x54\xf3\x63\x1d\x28\xab\xb7\xcf\x0a\x67\x5a\x52\x54\x7f\xd6\xb4\x5d\x46\x19\xe9\x22\x6a\x77\x37\xd8\x88\x44\x63\xda\x89\x78\x9b\xb9\x61\x23\xde\x00\xe8\x44\x5a\xbd\xa2\x9b\xc9\xf1\xf6\x5f\xc6\xf2\xd5\xcb\x2b\x1b\xb2\x92\xa2\x53\x5b\x3d\xa4\x1b\x32\x8c\x6f\x97\x77\xd3\xd2\x3e\x54\x73\x74\x9d\x4a\xab\xf7\xc8\x0f\xcb\xe7\x6e\x3c\x30\x7b\xb7\x2c\xfb\xae\x3a\x02\xa0\x87\xae\xf0\x74\xaa\xc5\xc6\xe9\x01\x21\xa3\xe9\x83\x90\x2d\x76\x47\x0f\x32\xce\x62\xe7\xa1\xc7\x23\xfe\xa7\x35\xf3\x8e\x48\x61\x52\xab\x99\xb8\x5c\x79\x5b\xec\x6d\x64\x0f\xd6\x62\x3b\xa3\xa4\xe7\x75\x06\xa0\x81\x7a\xcf\xf2\xc2\x10\x7c\xd6\x90\x29\x58\xf5\x36\xf0\x45\x18\x7a\x12\x5e\x58\xe4\x65\xe0\xac\x59\x88\xbf\x17\x61\xe8\xd3\xc0\x0b\x3f\x03\xf8\x41\x4f\xd3\x80\x66\xc4\x7b\xf0\x9f\x90\xd1\xbc\xf9\x47\x37\x2c\xab\x94\x86\xb0\x99\x37\x2b\x29\x79\x0b\x22\xd4\x11\xb2\x79\xb3\xa1\x03\x64\x33\xff\xfd\xc1\x71\x2d\xab\x94\x15\xb0\x24\x0f\xe5\xb7\xf5\xe1\x30\xa0\x71\x79\x28\x1f\xf3\x36\x0d\xa8\x87\x5e\x09\xe9\x15\x5a\xb2\x60\x94\x2d\x14\x06\xb2\x37\xb9\x00\x5b\x34\x26\x8d\x43\xb3\xf4\xf8\x10\x11\xcb\x1f\x1e\xfa\x6e\x26\xcd\x8f\x89\xf2\x7e\x4e\x06\x52\xcd\xa4\x29\x2b\xf7\x96\x3d\xe6\x0f\x09\xe1\xe5\x93\x27\x6e\x33\x1b\x95\x0e\xa2\x24\x2f\x9f\xdc\x70\x89\x79\xb8\xe7\x75\x58\x7d\x23\x2d\xd7\x26\x9b\x5f\xc1\x87\x7c\x93\xcc\x8f\x00\x87\x07\xa0\x8b\xcb\xd0\xe9\x47\x8e\xef\x8e\xc4\xa4\x1f\x9b\xac\x7e\x44\x3a\x3c\x40\xd1\xab\x64\xe8\x54\x58\xe2\xbb\x9f\x7a\xd8\x0d\x7d\xfa\x30\x03\xdd\xaa\xa3\xb8\xe9\xb3\x99\x2e\x24\x70\xdb\x24\xe8\x23\xfc\xe1\x26\x3d\x5f\x21\x5d\xdb\x26\x1d\x5f\x2b\xff\xdc\xde\x6e\xbc\x6d\x31\xce\xdd\x24\xd7\x23\xb0\xe1\xc6\xb5\xb6\xa1\x28\xd8\x24\xda\x23\xc8\xe1\x01\xb6\x1a\x1b\x86\x4e\x15\xf5\x32\xc0\x14\xc4\xbf\xce\xd0\x2a\x83\x56\x84\x9d\x86\x7e\xe0\x40\x87\x6e\xab\x1b\xd6\x42\xa3\x2b\xd8\x38\xe6\x92\x24\x6a\x93\x96\xaf\xa1\x37\xd8\x38\xe9\x16\x54\x95\x07\xd2\xe4\x8f\xf8\xf2\x3d\x7f\x73\xa7\x98\xd4\x11\x90\x26\x35\xb9\x8f\x9a\xd4\xea\x2e\x32\xa7\xc9\x7d\x3c\x82\x82\x60\x86\x07\x50\x63\xc9\xbd\x92\x54\x24\xe7\xdb\x81\x84\x12\xcb\x7f\x13\xd7\x24\x30\xc0\x9e\x59\x54\xd1\xb2\x01\xfe\x36\x0c\x9d\xbf\xb5\x62\x80\xfa\xa7\xa1\x9f\x70\xc2\xd0\xa2\xc6\x65\x48\x5f\xe6\xcb\xd0\x19\x76\x77\xfd\xe7\x60\xd0\x4a\x34\x7d\x73\xce\x4b\x86\x6e\x41\xfe\x52\x47\x03\xee\x79\x0e\x74\x84\x9b\x67\x5c\x96\x5e\x25\xe7\x80\xce\x6a\x0c\x3a\x22\xdb\xac\xc6\x49\x6f\xe3\x63\x5b\x50\xbb\x1e\xe8\xd3\x3b\xda\xd6\x31\x1b\x0b\xe3\x8d\x7f\x6d\x2b\x35\xa0\xd3\xc9\x55\x0c\x08\xf9\x3d\xc9\xd2\x4f\x61\x4c\x7c\x00\x9d\x45\xb3\x2b\x94\xa8\xcb\xa6\x3b\x1d\xac\x31\x33\xde\x53\x47\xdd\x56\x8c\x4b\x55\x9c\x27\x9b\x0a\x15\x9f\xa7\x64\x13\x5e\x95\xc8\xc9\xa6\x35\xd9\x65\x35\xb6\xe1\x1b\x77\xdb\x92\x3d\x36\x9d\x62\x1b\xe9\x6a\xf7\xd4\xe9\xb4\x7b\xed\xa5\x54\x6a\xc5\xec\x40\x67\xc9\xee\x59\xd5\x51\xb2\x04\xf5\xca\xa6\xaa\x55\x93\x79\x63\xed\x4d\xbd\xd2\x3d\x75\x4f\x5d\x63\xed\x4d\x6b\x72\xc7\x6d\xd5\xf8\xd9\xe0\x15\x26\x36\x1d\x0a\x09\x87\x75\x80\xe7\x00\xc5\x80\x68\xad\x1a\x3a\x58\x4d\xac\xab\x03\x88\xf0\x72\x40\xea\xa3\x17\x43\x47\xc4\x56\xa3\x23\x07\x0f\x7a\x09\x40\xd5\xc7\x77\xa2\x27\xb7\x2c\x77\x91\x56\xfd\x4e\xde\x22\xa4\x67\x3a\x80\x18\x80\xfb\x2b\x37\xdd\x6e\xc2\xee\xe0\x8b\x11\x5e\x27\xc4\x56\xcd\x2a\x38\x21\x72\x6f\x77\x20\x21\x7c\xf3\xff\x34\xe8\x16\x1f\x6a\xae\x5a\x37\x74\xfa\xd8\x98\x61\x0e\x8f\x5c\xe3\x1d\xa8\x9d\x57\xee\xb0\x84\x42\xfd\x83\x84\x06\xcd\xdd\xd7\xe2\x46\xaf\x40\xb3\xe6\xee\x9f\xd9\xe9\xd1\x29\x5d\x75\xa1\xa4\x3d\xd0\x14\x44\xd3\x3a\x72\x76\xf7\x57\x19\x16\x7a\xfb\xa7\x73\xe6\xf9\x52\x8b\x6b\xea\xd5\xc1\xb2\xbb\x69\x19\x6c\xb5\x6a\x5a\x90\xbd\x56\x8f\xef\x24\x9f\xd1\x07\x1f\xe8\xac\xd9\x1f\x20\x9a\xe9\xfe\xd7\x2d\xb6\x6a\xe9\xa4\x94\x7a\x5c\x93\x1e\x40\x58\xd0\xdd\x63\x8d\xb3\x0f\x03\x67\x71\x9b\x99\xa0\xf2\x90\x13\xdf\xe9\x00\x8f\x5e\xb9\x1f\x07\x27\xb0\xb5\xdc\x53\xc6\x5a\xdd\x2c\x64\xb2\x9a\x6e\x6b\x7a\x94\xc3\x50\x17\x43\x0c\x68\xfc\xd7\x7f\x10\x3f\x69\x93\x6d\xaf\x85\x00\x95\x91\x16\xe6\x98\x07\x50\xa7\x4c\xc7\x13\x24\xe8\xf1\xa1\x7a\x55\xa2\x92\xd3\xab\x99\x0d\x08\xe5\x7a\xfc\xed\xd3\x87\xae\x52\x34\x32\x8b\x01\x71\x0d\x8f\x73\x82\x49\x31\xb4\xc3\x10\x5b\x33\x69\x4d\x58\xbf\xe5\x8c\x0e\x96\x18\x89\x6e\x7c\x98\x4b\xc8\x19\x9d\x1e\xbb\xb9\x8b\xa2\x1f\x95\x6c\x3e\xba\xb8\x9c\x1b\xcb\xd0\x59\xea\x66\x54\x92\x35\x56\x37\xe3\x51\x2c\xa3\x42\xd6\xb8\x03\xa9\xc6\x00\xb4\x82\x66\xb1\x8b\xc1\x04\xa0\xc9\x8a\xea\x91\x5c\x33\x20\x4d\x96\x67\x5c\xf9\xce\x0b\x5a\xec\x03\xa9\x23\x9e\xf2\x05\x8a\x58\xaa\x2d\xf0\x7d\x31\xaf\x0a\x49\xda\xf0\xe4\x38\x90\xe8\xc9\x2c\x5d\x47\xb6\xd6\xcc\x1f\x15\x06\xa9\xc7\x87\x07\xc3\x87\xb7\x44\xb7\x0e\x39\xfd\x8a\x57\xda\xb3\x2c\xc6\xad\xe8\xa2\xad\x1b\x07\xe5\xa0\x33\xe2\x43\x49\x8c\x6e\x1c\xbc\x3d\x00\xbf\x3b\x78\x3c\xcc\xa7\x6f\x16\x2a\xfa\x71\x16\x6a\x58\x60\xcb\xb6\x6c\x58\x4c\xde\x2c\x8d\xa9\x44\x2a\xc8\xd6\x73\xbc\xfb\xce\x87\xd4\xae\xf3\x60\x29\xee\xbe\x0e\x84\xc3\xf2\x5a\xca\xc7\x61\x49\x2b\xd5\x63\x29\x57\x40\xf9\xbc\xaa\x06\xce\xca\x74\x33\x3d\x1d\xf3\x86\x29\x61\x23\xc8\x6b\xfc\xeb\x13\xc4\x28\xa5\x63\x1c\x46\x70\x19\xa8\xb5\x6e\x74\xdc\x67\xa6\x86\x51\x5a\xc6\x6a\xa5\x78\xe3\xb7\x45\xfe\xc1\x98\x75\x70\x1c\xe6\xed\xb2\x3d\x2b\x28\xec\x37\x59\x01\x5b\xf7\x6e\x49\x3a\xca\x42\x44\x92\x03\x75\x41\xf1\x4e\x37\xbd\xde\x97\xc8\xee\x6c\x58\x76\x2b\x2e\x53\x29\x57\x40\x67\xe2\xcc\xb3\xa5\xaa\x1c\xe6\xb0\x8a\x60\x5a\x4a\x8a\x57\xa7\x57\xe6\xb0\xb2\x45\x6b\xc1\x01\xa5\x86\x2c\xc5\x38\x20\x5f\xa2\xd1\x03\x78\xf5\x8a\xd9\x91\x82\x72\xf4\x7f\x5a\x48\x6f\x7c\xa7\x0b\xc6\x05\x1b\x5f\xe9\x52\x8c\x2e\x8f\x90\xbf\x7b\x6f\x29\xb5\x66\x29\x5e\x79\x1d\x47\x5b\x37\xcd\xeb\x3c\x3a\xcc\x71\x39\x64\x16\xe3\xc1\xc3\xfc\x78\xa7\x26\x1f\xe9\x52\xbc\x53\x93\x3e\xb3\x0d\xcf\x9d\xcc\xd2\x86\x79\xe2\xcb\x50\x8d\x3f\x9c\x09\x87\x67\x52\xae\x3f\x6d\x78\xbe\xa4\xd8\x2c\xc5\xfb\x0d\xe9\x35\x87\x99\xae\x8e\x8b\xa5\x78\x4b\x27\x1d\xe7\xf0\x68\xa4\xe1\x2c\x25\xc7\x87\x07\xed\x3c\x18\xa9\x37\x5b\x10\x86\x1c\x7e\x4a\xf1\x76\x40\xe6\x6f\xc3\xec\x40\xaa\xcd\x52\x4c\x18\xca\xb4\x31\xcc\x65\x95\x67\xa3\x05\x22\xff\x26\x5d\x0c\x88\xa6\xa7\xa1\x43\xf3\x81\xae\x72\xcf\x1e\x33\x5e\xd1\xf4\x32\xf4\xd3\x87\xd1\x80\x56\xc3\x04\x20\xbd\xe9\x30\x3f\xfb\x49\xb8\xc4\x96\x54\x3a\xd4\xb1\xe2\x3b\x4d\x48\xd4\x21\x81\x3a\x6a\x7c\x48\x8d\x0c\x54\x5e\x41\xc3\xfc\xeb\x87\xf2\xc1\x9b\x38\xb9\x04\x0d\x8b\xe1\x1f\x64\xe3\x3d\x9c\x72\x73\xb4\xe1\x0d\x81\xbc\xba\x4b\xa9\x01\x69\x5a\x8d\xaf\xca\xd3\x51\x8a\xdb\xfe\x84\xf3\x66\x59\x8a\x6f\xd5\x86\x05\x8f\xc2\x5b\xcd\x2b\x00\xf5\xd1\xf4\x2b\x97\xa1\x69\xa6\xf2\x31\x6a\x6f\xac\x64\x98\xd7\x86\x37\xc0\xdf\xc1\xb3\x79\xc5\xbf\xb4\x7d\x1f\x01\xad\xf3\x2a\xfe\xa5\x95\xf1\xd1\x4a\x27\xea\x79\x05\x20\x34\x36\x43\xf8\x0e\x06\x4e\x73\x00\xe5\x09\x99\x46\x62\xb9\x9f\x97\x62\x32\x97\xc9\xdf\x34\xda\xca\xe0\x6f\x1a\x6b\x15\x10\xab\x0d\x4b\x2e\x05\xb1\xc2\x5a\x66\xaf\x0b\xa6\xca\x7e\x6e\x29\xce\x54\x73\x37\x70\x2b\xc7\x34\x66\xe3\x54\x5e\x88\x2c\x73\x20\xd5\xd1\x0c\x68\xa2\xd8\x1e\x2d\x1d\x93\x31\x99\x39\x80\x28\x1e\x62\xc5\xf5\xbc\x11\xda\x65\x2f\x05\xa6\xc2\x4e\x65\xe3\x77\x5e\x08\x3e\xb3\xf1\x33\x2f\xc4\x9e\xd9\x64\x61\x6c\x18\x40\x1c\x48\x84\xc0\x8a\x2d\x8e\xc9\x18\x38\x6c\x12\x34\x16\x52\xe3\x1d\x48\xfd\x1a\xfe\xdf\x52\x73\xae\x92\xd1\x0c\xff\xed\x2c\x05\x71\x61\x36\xae\xe7\x05\xdb\x8c\xbd\x14\x5d\xb6\xa1\xd9\xdf\xe4\x65\xc4\x88\xe5\x00\x3a\x63\x35\xff\xed\xec\x77\x51\xe1\x1c\x40\x6b\x3b\xdc\xd8\x21\xf8\x36\x3d\x09\x0a\x48\x85\x42\x67\x93\xca\xb1\x60\xea\xb1\x57\x02\xbf\x87\x1b\x93\x28\x9c\x51\x89\xce\x36\x68\x3a\xf6\xd2\xb1\x76\xfe\x0f\x2e\x15\x56\xd6\x79\x0c\xa5\xc8\x81\xce\x92\x42\x76\x2b\x33\x5b\xec\x9e\x96\xe2\xd9\x16\x1f\xc7\x56\x86\x78\x61\x0e\x24\x73\x44\xd1\x74\x00\xad\xe2\x72\x8d\xc2\x4e\x48\x72\xe9\xc8\x4b\xc2\x9b\x03\x68\x49\xd9\xc0\x90\xd3\x91\xf4\x36\x07\xd0\x1c\x2f\x0f\x46\x33\x02\xe5\x92\xbf\xb1\x94\xa8\xfd\xa0\x05\x66\x33\x07\x38\x78\xb0\x8c\xb9\xd2\x61\x93\xb7\x66\x93\xaa\xb1\x60\xd9\xb1\x49\xcd\x88\x59\xcb\x01\x4e\xc3\xd0\xd2\x2a\xa2\x62\x0e\x5f\xe4\x59\x2c\x84\xda\x39\x50\xd6\xb9\xf8\x32\x24\x0a\x5f\xae\x43\xc7\xe9\xe5\x85\x97\xd6\x1a\x53\x97\xbd\x14\x08\x17\xeb\x94\x03\xa0\x0f\x75\x63\x12\x69\x2b\xba\x78\x44\x1a\x11\x65\xf6\x2a\x92\x68\x2b\xba\x78\x24\xda\x34\x69\x49\xa9\x3c\x4d\x4c\xe8\x94\x7d\xd8\x25\xe7\x62\xe0\x51\x01\x21\xd8\x37\x91\x70\x71\x9a\x7c\x74\xea\x6e\xeb\x0f\xda\xd2\xc4\x66\x43\x3a\xba\x9b\xb4\x14\x21\xb7\x10\xd7\x67\x2f\xe9\x98\x09\x0a\xb3\xc9\x8e\xd8\x96\x11\xa7\x72\xe2\x37\xae\x28\xfa\x55\x41\x61\x74\xa0\xc3\x35\x47\xfc\xed\xd3\x2b\xd7\xbf\x75\xd9\x30\x03\x3a\xeb\x82\x40\x23\x65\x62\x21\x96\xcf\x5e\x1c\xd6\x97\x91\x45\x69\x0e\x8b\xcf\xe0\xab\xe9\xa8\xba\x3c\xab\x52\xe7\x4e\xa3\x0e\xc7\xf3\x6a\x94\x90\x3a\x37\x10\x53\x16\xa3\x9d\x80\xf1\x7b\xc9\x24\xb4\x54\x73\x2c\x34\xb3\xd5\x4c\x4a\x87\xeb\x42\x74\x9f\x4d\x7e\xc2\xe9\x69\x55\xd8\x06\x32\xb3\x6c\xf2\x0b\xa2\x1a\xdc\xa4\x13\x5c\x9e\x54\x1d\x7d\x97\xc7\xcc\xf1\x16\x8d\xd3\x26\x00\xc3\x32\x47\xd5\xf1\xb6\x5f\x5e\x98\xce\x54\x25\x37\x75\x98\x74\x27\x7c\xf6\x5e\x0a\x65\xb5\xdc\x25\x45\x5e\x28\x44\x09\x3a\xd0\x69\x2c\xc5\x77\x1a\xa5\x27\x58\x3e\x49\xcb\xfc\x55\xe6\x99\x85\x60\x42\x9b\xa0\x0a\xa5\x9a\xdd\xea\x40\x5b\xd0\x68\xed\x25\x0f\xa3\x9e\xbc\x9c\x43\xc4\x49\xe4\xa0\x03\x3d\xa7\x4a\xd7\xcf\xba\x67\x77\x4b\xa4\x5a\xcd\x37\xe5\x6a\x54\x88\x03\xb4\x97\x92\xc0\x97\x6a\x6a\x9a\xe8\xe3\x4d\x3f\x68\x22\x7d\x99\xb1\x74\x3c\xed\xc9\x3c\x49\xc1\x73\x97\xab\xd4\xe9\xb4\x54\xf3\xca\xc9\xe0\x5c\x3f\x03\x30\x4b\x52\x1a\x8d\x9e\x2c\x21\x94\x45\x63\x45\xf5\x67\x69\x7a\xb2\x80\x50\x46\x8d\x15\x15\x1e\x2c\x58\x51\xc5\x19\xcc\x32\x1f\xd3\x01\xb1\xa3\x0d\xd9\xa4\x21\x2c\xb5\xfc\xd3\x30\xec\x7c\xca\x40\xa7\x21\xcd\xb9\x99\x9e\x32\xc1\xf7\x64\x82\x52\x68\xab\x42\x64\xa0\x03\x9d\x59\x36\x0b\x94\xde\x70\x99\xe9\x49\x6d\x58\xaa\x99\x88\x32\xc2\x2f\x8f\x53\xda\xc0\xee\xeb\xe9\x25\x25\x5b\x30\x1b\x1d\xd9\x0a\x41\x7b\x36\x21\x15\x82\xd9\xc8\x40\xb4\xfb\x46\x6b\xdd\xda\xd0\xd6\x16\xef\xc6\xf9\x70\x18\xd0\x62\xb7\x80\x74\xd1\xe6\x79\x94\x59\x29\x31\x46\x36\x41\x18\x7a\xf6\x50\x14\x83\x81\x0c\x26\x07\x50\xef\x2d\x23\xe5\x71\xb4\xcc\x2b\x6f\x0c\x44\x9a\xfb\x01\x37\x30\x7b\x94\xa6\x8e\x3c\x27\x07\x10\x62\x99\xed\xe9\xe8\x44\xce\x93\x03\xe8\xbb\x66\x40\xd8\xe2\x8d\xc1\xa6\x2d\xc6\x25\xdb\xcd\xee\xf3\xd6\x7a\x20\x27\xef\x12\x94\xc3\x61\xf5\x00\x34\x66\x6f\x19\x1e\xcc\x43\xbc\x4b\x78\xa0\x20\x6f\x0c\x94\x07\xb0\x54\x4b\x67\xc5\x6e\x0a\x86\xfb\x70\x8d\xe7\x19\x96\xe3\x4d\xa9\x16\xf1\x0a\x63\xbb\xcc\x62\x1f\xf7\x38\xa0\x5b\x97\x86\x6e\xed\xec\x67\x97\x07\xf3\x70\x17\x58\xa3\xfe\x4f\x10\x4d\xbf\x50\x1a\x57\x1b\x44\x48\x58\x23\x5e\x9d\x5e\xb9\x65\x0e\x39\x44\xe3\xd9\xeb\x15\x4a\x98\x15\xbf\x70\x2c\x2e\x25\x88\x49\xb0\xbc\xd1\x90\xbd\x65\x2f\xf1\xa1\x7a\x6f\x66\xa3\xe3\x49\x2f\x7f\x1f\x1e\xca\x9a\x6e\x4b\x9b\xf1\xea\x7f\x49\x77\x46\x3c\x8f\x03\x68\x35\xfd\x2f\x9d\x33\x7a\xc8\x37\xec\x28\x2f\x23\xb4\xbc\x70\x7a\x08\x01\x82\x38\x5d\x7f\x90\x66\xdf\xcd\x49\x47\x96\x2e\x4b\x01\x65\xf4\xeb\x24\x49\x3d\xd0\xd4\x3b\xa6\x4e\x39\xf9\x4a\x75\x5f\x88\x75\x7b\x59\x28\xc8\x37\xa7\xfb\x2e\x96\x74\x7d\xe9\xb2\x88\xd0\x99\xa1\x07\x4f\xc4\x6d\xe7\x32\x77\xd6\xc9\x20\x5d\x66\xc8\x04\xbd\xbd\xcc\xd4\x3f\xe8\x90\x13\xd1\x22\x4e\xed\x65\x1e\xfc\x09\x4d\x02\xe5\x15\x0b\xa0\x54\x0b\x40\x42\x01\x10\xe9\x61\xdf\xd2\x87\x15\x52\x05\x1e\x48\xe3\xeb\xf1\x4e\x23\x42\xe8\x91\xbf\xaf\x13\xad\xea\x40\x22\x6e\x76\x45\x8e\x18\x70\x95\x80\x44\x70\x6c\x7e\x6e\xbc\x78\x08\xe9\x70\x20\xcd\x3c\xcb\x77\x4b\xb7\x95\x48\xe3\xb1\xf1\xff\x2f\xbe\xd4\x24\x6f\x5f\xff\xab\x45\x24\x8d\xbe\xf3\x40\xba\x7c\x5e\xee\xa7\xc6\x47\xa4\xa1\x8d\xeb\x7f\x8f\x5a\x48\xe8\x77\xc1\x33\x6e\xcc\x4b\xc9\xfd\xb7\xc9\xee\x97\xae\xf6\xef\xeb\x85\x5b\x49\x25\x0a\x21\x87\x0e\x94\xf4\xc7\x62\x28\xeb\xa6\xda\x4d\xc8\x1e\x9b\x2c\x1f\x9b\x58\x02\xdd\xd7\xaa\x84\x12\x28\x64\xf5\xdb\xb7\xf4\x53\x09\x6d\xfa\x26\xc7\x5f\x41\xff\xba\xf1\xf6\x2f\xa8\x5c\x37\x19\xfe\xba\x6f\x4f\xed\xfa\x8f\x0d\xee\x26\xdd\x5f\xf7\xf5\xe9\x9d\xe4\x99\x87\x0d\xee\x81\xaa\x6a\x89\x77\xba\x36\x2f\xf1\x3f\x2d\x19\x72\xe8\xd6\xa6\xbf\x44\x3f\x15\x43\xb6\x5b\x6b\xe7\xb4\x7f\xd8\xe4\xee\x9b\x5c\xec\xde\x4b\xdc\xec\xe5\xd1\xdd\xee\x1b\x4b\x53\x62\x0f\x6d\xc7\x24\xb8\x8c\x30\x19\x04\x1d\x7e\x27\x22\x23\x2c\xd1\x76\x82\x3f\x8c\x79\x0f\xa4\x59\xca\xee\x8b\xd0\x80\x04\x51\x07\xa2\x85\x62\x48\x2d\xc0\x52\x09\x3e\xd0\x09\x94\x73\x20\xad\x03\xec\x8a\x48\x04\xc5\x4a\x60\x52\x06\xa6\xcb\x75\x16\x90\x17\x56\x49\xc2\xc0\x42\x84\xa4\x7d\x17\x90\x17\x0e\x78\xb3\x73\x27\x23\xde\x81\xe8\xf5\x32\x24\x04\xcd\xae\x45\x6e\x16\x98\xd2\x1e\xe8\xac\x5f\x37\xda\x11\xca\xe0\x32\x09\x68\x93\xdf\x89\x51\xb3\x9d\x54\x10\xc3\xda\x03\xa9\x67\xd3\x7d\xd1\x9e\x2e\xb0\xa0\x30\x9f\xd3\x7d\xd9\xf4\xcc\x7d\x11\xbb\xef\x5e\x07\x45\x43\x48\x18\xae\x1e\x48\xba\x02\xcf\x3c\x41\x6d\x31\xb9\xd8\x37\x96\xa5\xbe\x6e\xbf\xa5\x6e\xeb\xdd\x73\xa6\x78\xb7\xc5\x37\xec\x84\x54\xe8\xd6\x72\x91\x92\x30\x61\x9c\x71\x20\xad\x9f\xf1\xac\xca\xd5\xfb\x32\x83\x51\x26\x8c\x4e\x42\x95\x03\x69\x35\xff\x20\xbe\x2c\x86\x96\xde\x31\x5a\x42\x29\x5c\x66\x37\xb2\x36\x2d\x56\x53\xdf\xf5\xa6\x75\xf7\x05\x3a\xaa\x1e\x83\x64\x0c\x56\xe8\xfb\x6e\x30\x03\xb3\x0d\xd4\x76\x56\x40\x3b\x75\xe0\x65\xb6\xd1\x84\x13\xc9\xec\xa6\x81\x13\x6c\x5e\x6e\x9d\x20\xba\x15\x22\xb7\x4e\x10\x29\x99\xf9\x60\x10\x6a\xa5\xf3\x8d\xdf\x59\xf2\xba\x4b\xa9\x97\x92\x79\x88\x32\x08\x16\xeb\xa0\x49\x20\x98\x92\x39\x83\x32\x04\xf6\xee\x39\x23\xe5\x47\xba\xe2\x4b\xad\x9f\x67\x89\xe4\xe9\x18\x52\xee\x5b\xa6\x9f\x89\x28\x11\x07\x12\x0f\x69\xf1\x4e\xad\x27\xf7\x5a\xe7\x92\x66\xb6\xd8\x59\x77\x76\x4f\xb7\x2c\x41\xbb\x2f\x29\x6f\x62\xf7\x26\x53\x78\x47\x17\xe4\xf6\xa4\x1e\x2c\xd6\x73\xdf\xd2\x0f\xf6\x61\x3e\xa8\x04\xea\xa5\x99\x0f\x92\x3f\x3d\xe5\x80\xb4\x46\x6c\xae\x6e\x05\xed\x2d\xcd\x6b\xa4\xe0\x0e\x7d\xe4\xff\x01\x53\x56\x78\xdf\x3e\xcc\x0c\x3a\xa6\xb3\xcd\xdd\xd6\xde\x7c\x44\x83\xd8\xce\x76\x77\x5b\xa4\x93\x4c\xaa\x1d\xd2\xe9\xee\xf6\xa6\xa3\xd3\x90\xba\x66\x56\x2b\x77\xb7\x94\x4c\x02\xd8\xa2\x36\xb3\xda\x21\xe9\x48\x94\xfc\x03\x75\x7d\x19\xd0\xd0\xbb\x66\xe8\xd6\xff\xe2\x9d\x94\x70\x46\xc2\x01\xda\x99\x20\x86\x54\xac\xc3\x68\x27\x8d\x62\x1f\x46\xad\xc1\x84\x5a\x72\x2a\xca\x5d\x1f\x5e\x40\xb4\x88\xa4\x32\x3c\x90\x96\xd3\x8b\x34\x60\xd1\x66\xfb\x24\x2e\x49\x2d\x20\x21\x85\x19\xfd\x10\xe3\x1d\x1e\xbb\xf4\x83\x7d\xc4\x68\xc5\x36\x52\xd4\xe2\x59\x72\xcf\x24\x7f\x87\xc7\xa7\xdc\xf0\x29\x59\x08\x10\xf7\x21\x59\x08\x48\x97\x98\x92\xd9\xfe\x04\x61\xe2\x4b\x09\xd5\x61\xa6\x8c\x9e\xb1\xfd\xfd\x4f\x6b\x6b\xa6\x2c\x73\xd3\x94\x2c\x04\x26\xa8\xf5\x57\xa7\x98\x72\xbc\x13\x5b\xf4\xf5\xe4\x3d\x21\x0f\x76\xe0\x64\x2d\x4c\xc9\xe2\x42\x31\xf6\x8a\xcd\x26\x1c\xdb\x21\x59\x5c\x70\x64\x6b\xfe\x92\x78\x7b\xc9\xfd\x94\x41\x68\xc7\xf5\xee\x40\xd4\xe2\xff\x89\xbd\xa5\xe9\x2f\x59\xa3\xf8\x9f\xd6\xc8\x37\x77\x37\x16\x9c\xb6\xcc\xb8\x17\xe4\x6f\xf6\x26\x25\x5f\x9f\xc6\x2c\x94\x7c\x56\x07\xde\x64\x3c\xb1\x35\x13\x59\x0b\xbb\x2f\xb8\x6e\x99\x70\x16\x2b\x07\x49\x52\xd8\x7d\x73\x45\x16\xc2\xee\xab\x2b\x27\x21\xb4\x89\xd1\x2d\x95\x5f\xf7\x8d\xd4\x2d\x95\x5f\x69\x9c\x33\x6f\xf2\xd1\x67\x33\xb4\x1b\x26\x69\xf1\x7b\x6b\x6d\xb3\x19\x9a\xdc\x0c\xbb\xaf\x97\xee\x1b\xd6\x67\x81\x74\xa3\xdf\x34\xbe\xdc\xb0\x76\x0b\x24\x29\x0b\xfb\x34\x26\x73\xf2\x6c\x16\x33\x3a\x79\xf6\x69\x1c\xd4\xf1\xb2\xfb\x82\x89\xe8\x14\x7d\x1a\x23\xa5\x2e\xec\xd3\x38\x71\xb3\x29\xb2\x28\xb9\xc1\x09\xaf\x26\x3e\x8c\xb6\xe2\x21\x4e\x45\x9f\x5e\x3f\x29\x13\x93\xcd\x78\x6e\x29\x13\xbb\x6f\xa6\x08\x61\x51\x6c\xb5\x72\x6f\x04\x0b\x17\x7c\xce\x63\x68\x13\x9f\x7b\x23\x1c\xb9\x70\xba\xb7\xe8\xc1\x06\x3f\x24\x22\xec\xbe\x7f\xba\x15\x1b\xb9\xc4\xa6\x41\x7a\xc2\x64\xab\x1e\x92\x12\x96\xd8\x34\x48\xff\x57\xba\x57\x0c\xab\xcf\xee\x55\xc1\x0f\xd1\x26\x3f\x24\x24\x4c\xb6\xeb\x21\xb8\x44\xe9\x5e\x23\x82\x05\xda\x28\xe7\xe6\x20\x6b\x15\xae\x53\x15\xe6\xfc\xef\x6b\x0a\x12\x15\x76\xdf\x83\xdc\x8a\x9d\x9c\x6c\x96\x43\x80\x8a\xbe\x8c\xbc\x84\x23\xb4\x59\xce\x4d\xe0\xe4\xec\x5d\x03\x1a\xc2\xee\xfd\x2f\xd1\x06\x73\xd4\x29\xf4\xe9\x96\x4f\xf8\x30\xe6\xa8\x93\xa9\xb0\x7c\x7a\xe4\xf9\x9c\x7d\xf4\x50\x10\x8b\xee\x3b\x82\x9b\x08\xc9\x36\xe8\xb9\x75\xc8\xee\xbe\x16\xb8\x95\x3d\xa6\x58\x47\x4d\x56\xc3\xbe\x2c\x3c\xa4\x15\x4c\xb9\x06\x24\x1d\x78\x8f\x2f\x6f\xfd\xcf\x2d\x88\x11\x2e\x33\x50\xd9\x9e\x96\x6e\xd9\x2c\x03\xd3\xbe\x8c\xbc\x2f\x24\x67\x72\xd4\x39\xbb\xfb\x20\xef\x54\x87\x36\xea\xb9\x5f\x31\x98\xd5\x03\xda\xaa\xb3\x1a\xd2\x18\xcc\x40\x89\xe2\x9c\x6b\x40\x5a\x15\x33\x50\x85\xd5\x28\xc4\xef\xdb\x8e\xaa\x91\x3d\x2f\x2f\x68\x97\xdc\x33\x56\xc5\xf3\x22\xcf\xcc\xd2\x4d\x1e\x38\x66\xda\xb0\xe7\x56\x42\x9a\xee\xb3\xbd\x33\x23\xda\x0e\xe7\x7e\x3d\x9f\x86\x36\xb5\xb8\x67\x22\xc7\xd8\xab\x2a\xe8\xf3\xb8\xbc\x9b\x7a\xed\xae\x42\xeb\x3f\x88\xc5\x02\x5e\x39\x10\x8b\xb5\xf9\x4e\x81\x68\x0b\x9e\x5b\xba\xc8\x71\x19\x7b\x08\x15\x6d\x7b\x1e\xe7\x3f\xb4\x61\xce\x8d\x22\xb1\x7b\x2b\xf0\x53\xf0\x20\x9b\xdf\x90\x0b\x71\xf8\xb8\x7d\x2b\x4a\x74\xb2\xfd\xcd\xad\xa8\xd0\xc9\x46\x36\xb7\x1c\x2d\x4b\x37\x96\x13\x88\xd0\x26\x32\x44\xf8\x28\xdd\x58\xfe\x63\x5e\xbc\xb6\x3f\x88\xd3\xab\xf9\xdb\xd4\xe2\x9e\x1d\xf1\x3b\xae\x12\x5f\x0a\x43\xbc\xb6\xba\x78\x18\x57\x89\xff\xa9\xd7\x5e\x5b\xe5\xdc\x19\x97\x37\x1b\x1f\x64\x6c\xca\xf9\x20\xe3\x11\x90\x56\xda\x94\xf3\x31\xbb\x23\x20\xcd\x6e\x89\x5a\xe4\xff\x63\x5a\x41\x79\x19\x7b\xf8\x4f\x46\x10\x97\xb1\x87\x70\x87\xb6\x93\x21\xca\xc8\x88\x73\xb2\x8c\x7e\x93\x0d\x65\xee\x0f\x0a\x2f\x01\x69\x5e\x2c\xc8\xa4\x96\x2c\xdd\xfb\xfb\x0f\x0a\xb7\xe8\xfa\x60\x7d\x35\x20\xf5\xcc\x42\x8e\xdc\x3d\x79\x06\x24\x5c\x1a\x01\xa9\xd7\xd5\xfd\x94\x39\x49\x9c\x1c\x75\x5d\x92\xf2\x0c\x28\xeb\x4b\xf7\x1a\x96\xe9\x33\x18\x97\x27\xc4\x95\xd8\xfb\x82\x65\x22\xd2\xf7\xa5\x8d\x81\x8d\x32\xb6\x2e\x56\x92\x8d\x78\xb6\x2e\x56\x86\xcf\x75\x78\xe2\x16\x1b\xcf\x11\x13\x65\x5c\x7f\x75\xfe\xf4\x2e\x20\xb5\xb7\x5c\x27\xce\x56\xd5\xed\xc1\x3f\x57\xfb\x27\x53\xc6\xa3\xb7\x10\x58\xf1\x40\x42\x2d\x8e\x10\x5b\x9a\xd3\x71\x45\x13\x62\x8b\xb6\xbf\xd8\x97\xa7\x77\x19\x7a\xf5\x2e\xfe\xa7\xe9\x5d\x1e\x04\xd3\xcb\x61\x63\x5f\x5b\xc3\x5d\x1e\x84\xd0\xdc\x16\x17\x5b\xb1\x18\x87\x8f\x3a\xa4\x05\x2d\xb6\xf3\x73\xf4\x14\x1b\x29\x90\xc9\x33\xd9\xc0\x00\xb7\xde\x62\xb3\xbf\x2d\xc3\xdf\x81\x8b\xd4\x81\xce\x34\xd9\x54\x80\xb0\x2a\xc3\x87\x0d\xe7\xf4\xb4\xad\xc0\x46\x0f\x6a\x7b\xbe\xad\x78\xde\xc5\xc7\xc3\x9d\x90\x87\x5c\xc8\xec\xec\x9e\x4d\x43\x43\x46\x46\xd5\xd0\x54\x9d\xcd\x10\xff\x5b\x86\x7e\x7a\x17\xff\x93\x99\x51\xd4\xc9\x02\xc2\xa6\x76\x3e\xf2\x7e\xe0\x84\x71\xa0\x2d\x28\x1b\xd2\xcc\xff\xbd\xd3\xcc\x1b\x61\x32\x63\x87\x4d\xed\x2c\x67\xcb\x1e\xff\x93\x41\x15\x31\xcb\x0e\xa4\x99\xf7\xfa\xc9\xfc\x77\x10\x39\x6c\xe3\xa8\x9b\x8a\x7b\x5d\x60\x14\x30\x34\xbc\x71\x53\x71\x3f\x71\xc0\xb5\x7d\xe1\x96\x6d\xf0\xc0\x6b\x60\x6f\xa9\x36\x8b\x0d\x0c\x9d\x14\xb4\xc4\x97\xac\x18\xec\x0d\x87\xdc\x54\xfe\xbe\xd4\x0c\xfe\xbd\x13\x33\xe8\x51\xe7\xa3\x77\x86\xc0\xdd\xe1\xbe\x08\x5b\xbd\x3b\xb5\x4f\x2e\x99\x24\x37\x3e\xb9\xc3\xfb\x51\x9c\x72\x4b\x8f\xd1\xb2\xd2\xc3\xef\x24\xc4\xad\xa3\xc7\x35\x76\x78\x67\xb7\xab\x84\xb1\xaf\xa5\xb7\xae\x2f\x86\x77\x6f\x8e\x85\xe3\x7b\x69\x42\xe1\x0c\xef\xde\xc8\x08\x5a\xfa\x88\x5a\x7e\x7a\x17\xb5\x88\x3a\x86\x6b\x01\xaf\xa7\x5b\x47\x18\x4f\xd7\x22\x61\x6c\xc5\x39\x8e\xb4\xc3\x1b\x9f\x2d\x45\x69\xb2\xe2\x7c\x57\x30\x19\xc6\xb4\xb9\xda\x28\x5e\x95\xa6\x33\xa6\x8d\x06\xb7\x8c\x90\x87\xc5\xda\xe6\x6a\xc3\x0a\xf2\xdd\xe8\x59\xfc\x8f\x9e\x99\x33\x34\x09\x40\x8b\x8b\xdd\xa4\x55\x22\x7a\xe5\x81\xa8\xa5\x1b\xd2\xd8\xd9\x99\x3b\xa1\xa9\x55\xd5\xf6\x5b\xed\xd1\x9e\x84\xa3\x6f\xe5\x89\xa6\x53\x7a\xb4\x07\x9f\x58\xee\x0b\xe2\xd0\x7c\x49\xf9\x86\x46\x8e\x5a\x58\x4d\xf3\x1e\x5d\x7b\x8c\xfc\x57\x8b\x70\xc9\x3d\xeb\xba\xb6\xb2\x95\xe2\x56\xe4\xfc\x61\x3b\x3f\x62\xec\x24\x6b\xaf\x37\x97\x19\xdd\x3d\xc3\xa2\xb9\xbb\x2f\xb2\x68\x1e\x56\xf2\x6c\xe5\x20\x1a\x36\xa3\xb3\x9b\x2b\xee\xfb\x9b\x4c\xa8\xa9\xfe\x3b\x63\xe3\x26\x4b\x6a\x19\x46\x65\x5d\x58\x24\x6b\x8a\x09\xd2\x53\x46\x34\x28\xc6\x6b\xb5\xef\xee\x62\xbc\xe5\x0f\xfa\xf4\xa5\x3b\xb3\x69\xde\xdd\xd6\x51\xc0\xe6\x95\x0e\xed\x63\x55\xef\x96\x95\x73\xb2\x0a\xd7\x6e\xb6\xb6\x60\xdb\xca\x7d\x54\x7c\x03\x44\x94\x9f\xe2\x3b\x9f\x2d\xed\x71\xf1\x2d\xcf\x26\xca\xa5\x55\xbf\x38\xda\x0e\xbc\xbb\xf7\x96\xc6\x38\x59\xe9\x41\xba\xd5\x62\x83\x4b\xdc\x69\x93\x95\x1e\x76\x9a\xb5\xc5\xe5\x56\xd8\xfd\x64\x4d\x30\xa1\x7f\x46\x31\xdb\xe7\xfa\x62\x78\x7c\xc3\x86\x8f\xc5\xd0\xd2\xff\x5c\x0b\x33\x91\xfd\x25\x33\xe1\xb1\x0f\x66\xa2\x04\xa4\x3a\x3d\x13\x83\x79\xb1\x28\x99\x12\x56\xb6\xfa\xd9\x53\x77\xca\xd5\xe3\xd3\xd5\xc6\xb0\x0d\xd0\x96\x56\x3a\x55\x8b\x04\xae\x36\xac\xac\xdd\x5c\x5f\x0c\xcf\x92\xcc\xa4\x47\x90\x3f\x06\xcf\x23\xc7\xff\xb4\xb6\xde\x0b\x48\x13\x9d\x48\x00\xb3\x71\x97\x1d\xc5\xbb\x0d\xd2\x0f\x58\xc9\xbb\x27\xb6\xa2\x26\xf8\x09\x66\x79\x76\xa5\xa6\x1e\xc1\x1a\xa4\xa6\x2e\xb6\xe8\xc3\xe9\x76\x14\x13\x35\x4e\xb7\x23\x47\x2d\xc2\x02\xcf\x20\xc1\x31\xab\xf7\x1e\xba\x4a\x19\x36\xee\xc0\xb7\xb6\xd8\xa4\x0f\xdf\xda\x61\x0b\x0e\x92\xc3\xa6\xea\xad\x87\xbc\x69\x53\xb5\xb8\x57\x68\xcb\x61\xcb\x89\x2d\x63\xe9\x54\x2d\x62\xe5\xfc\x3a\x02\x3f\xe5\xfd\x3a\x02\xcf\x30\x90\xb6\xc5\xeb\x56\x18\xcb\x42\x04\xcc\x03\x15\x7d\x59\x0c\x69\xa5\x2d\x0e\x95\x95\x60\xc4\xda\xe2\xf1\x4a\xa8\xcc\x4d\xb8\xa6\x32\xbc\x62\x8b\xf1\x95\xf8\xdf\x27\x88\xf6\x48\xf7\x64\xad\xe8\x56\xb6\xa7\x42\x5a\xce\x4d\xa4\xa6\x64\x4d\xe8\xbe\x25\x04\xac\x60\xdf\xa4\x60\xaa\x5e\x3f\xe2\x69\x56\xaf\x18\x97\x12\x04\xe6\x3c\x90\x7c\xd9\xd9\xd5\x3a\xc0\x91\xd5\x77\x04\x25\x4a\x56\x8b\x6d\x59\x0c\x17\x62\x74\x1e\xe8\x8c\xcf\x5a\x9c\xad\x08\x96\x65\x18\x7b\xe4\x27\x9a\xac\x16\xc3\x4f\xb4\xf8\xba\x72\x4b\xf1\x9d\xac\x5c\x23\x0d\xeb\xb0\x2e\x81\xc8\x45\xc5\xa6\xc0\x04\x2e\x1a\xd6\x10\xec\x47\xd4\x6f\xc5\xdb\x96\xb6\x3b\x35\xaf\xbb\xe2\x4b\x0e\xdf\x84\x6f\x25\x08\x18\x2d\x6a\x61\xfd\x4c\xd3\x18\xf9\xfa\x9e\x7a\xa3\xfc\xf6\x75\xe5\xc6\xac\xd7\x56\xc4\x78\x6c\xa6\x18\x1f\x6e\x99\xc3\x1b\x34\xe2\xf7\x37\x6f\x4e\x15\x70\x68\xd8\x4b\x69\xbf\xda\x96\xb4\xff\x09\x53\xd6\x61\x78\xf8\x6e\x6a\x2b\x92\x7f\xb2\x7a\x6b\xa3\xe6\x1e\x2d\xde\x69\x80\x96\x3a\x1c\x8d\x7d\x5b\xba\x5f\x08\xd0\x12\xf7\x65\x39\x8d\x84\x1c\x6a\x87\x77\x5a\x24\x2e\x6a\x66\x7d\x3f\x48\xce\xbb\x22\x74\xc8\x56\x92\x6d\x74\xc1\x56\x61\x91\x0f\xb5\x8c\x11\xef\xce\xf4\x0e\x4b\x32\x65\x12\x4a\xb1\x80\x3a\x3e\x8d\x90\x4f\xa4\x15\x8a\x05\xfc\x60\x06\x66\x61\x32\xec\x2c\x36\x36\xdd\x1c\x98\xb0\x2f\x7d\xf0\x8d\x2c\x58\x1d\x3f\xf8\x2b\x26\x94\x41\x8f\xfd\x15\x31\x3b\x7e\x9c\xd8\x13\xf5\xcf\x33\x51\x95\xe2\xbe\xf8\xe0\x00\x98\x48\x21\xf2\xe0\x00\x58\x88\xc9\xf8\xe0\xe5\x97\xf0\x51\x7c\xec\xca\x47\x44\xc6\x07\x57\xbe\x44\xfa\x90\x03\xdd\xb2\x50\x76\x9d\xda\x03\x62\xcb\xfc\x90\x93\x73\x60\x07\x7a\xa0\x57\xff\x73\x0b\x10\xd9\xa4\x67\x28\x32\x5b\x0d\x48\xc8\x34\x8b\x21\xf5\xb3\x1a\x12\x59\x91\xa4\xec\xc1\x13\x2f\xa1\x36\x7a\xec\x89\x47\x40\xc7\x03\x69\xc5\xc4\x24\x0f\x44\xcf\x02\xfa\x09\x9a\x40\x87\xdd\x8c\xe9\xf9\x54\x3c\x9d\x31\x3d\x83\xa4\xe5\x27\xd3\xc8\x33\x0b\x68\xbe\xba\x21\x8d\x7d\x0c\x43\x6a\x61\x05\xa4\x19\xec\xd4\xa9\x14\xfc\x63\xba\xf5\x02\x46\x2e\xd7\x29\xe6\xd3\xdc\x3a\xbb\x68\x62\x9f\x3c\x38\xe0\xa5\xe6\xbe\x28\x36\xe4\x58\x57\x35\x34\xf4\xce\x5f\x0a\xaf\xb1\x69\x3e\xd0\x11\xbf\x6d\x06\x74\xeb\x7f\x6e\x41\x02\x02\x13\xe7\x03\xfd\xf4\x65\x40\x9f\xde\xb1\x0e\xa8\x12\x9b\xe7\x13\xe5\x61\x9b\xd4\xc2\xbe\xb9\xcd\x6e\x48\x73\xed\xf1\x29\x78\x64\x21\x8a\xe1\x83\x57\x5f\x99\xee\xb5\x62\xce\x8c\x65\x8c\x54\xd0\x99\x32\xdd\x33\x05\x9d\x19\xab\xc4\xff\x7e\x82\xfc\x3f\xe1\x0b\x26\xcb\x07\x6a\x7a\xe7\xf6\x14\x33\xb3\x47\xaf\xcf\xbc\x8c\x55\xa6\xa1\x47\xef\xdc\x82\x56\xb3\xbb\x16\xf6\xe9\xdc\xab\x1e\x48\xb3\xd4\x2e\x43\x3f\xb5\xe7\x77\xa2\x1c\x2e\x0c\x1f\x5c\x07\x0b\xd6\xd9\x0f\xae\x83\x83\xeb\xca\x03\x69\x8d\x5a\x35\x34\xf4\xe5\x32\x34\x55\x8b\x5b\xd7\x66\x03\xdb\xed\x07\x2f\xc3\xc4\x75\xde\x33\x15\xf7\x72\x70\x5d\xf9\x90\x0c\x74\x2c\xe3\x7c\xdb\x44\x49\x71\x7b\xda\x3e\xa1\xfc\x3d\x90\x5a\xc8\xb4\xa0\xfd\xf6\x58\xc6\x82\x2e\x0e\x46\xc6\x8a\x07\xbf\xc0\xb1\xbc\x62\xf2\x0b\x4c\xbd\xfc\x33\x54\xc4\x63\xa7\xc1\xe9\x41\x10\x3a\xbe\x97\x80\xb4\x64\xab\x18\xd2\x64\x9b\xe0\xb5\x19\x1f\xe4\xe8\x39\x90\x26\xb4\xba\x6b\x22\xea\xb5\x9a\x21\x06\x18\xff\x93\xaf\x81\x49\x8e\x08\xf2\xdc\x31\x3d\xf8\x1b\x16\xe2\x27\x3e\xf8\x1b\x8e\x65\x02\xd4\xae\x3d\x71\x03\xf4\xe0\x62\x98\xb8\xe5\x39\xd0\x2d\x23\x7f\xff\x4f\xbb\xa2\x6e\x26\x42\xe0\xcc\x6e\xb6\x21\x55\x62\x99\x9e\x5e\xc5\xb5\x49\x5c\xdd\x1c\x48\x0b\x98\xe3\x7f\xb4\x47\xaf\x51\x09\x76\x23\x53\x44\xaf\x71\x9d\x67\xce\x26\x46\x3f\x07\x5a\x7a\x67\x48\xcc\xb5\x1b\x99\xe4\x74\x58\xa6\x97\x4c\x3b\xf3\xd4\x8d\x5a\xec\xbe\x09\xbc\x78\x20\xf5\xac\xb9\x9f\x07\x61\xe6\xe5\x11\x4d\xd0\xbc\x17\x43\x9a\x5d\x8b\x0b\x54\x82\xa4\xaa\x38\x90\xfc\x22\xfe\x20\xad\x5f\xa7\xd7\x13\xc7\x08\x33\xb4\x09\x41\xf4\x69\x48\x58\x60\x04\x9d\x78\x46\x8c\xcb\x90\xe6\x65\x80\xca\x38\x00\xce\x12\x90\x88\xda\x04\x3f\x3d\x22\xb7\x7e\x6b\x8d\xcc\xde\x08\x16\xdf\xcd\x6a\xb5\x1b\x9e\x97\x11\x5b\x91\xe3\x13\x87\xfd\x03\x89\x70\x2d\xba\x94\xcd\x2b\xf5\xa8\x65\xe3\x55\xe1\xb1\x43\x48\xc6\x5d\x12\xa5\x76\x0b\x24\x7c\x0c\xa7\x19\xcc\x84\xb9\x9a\xa5\xac\xa9\xf5\x33\x96\x13\xa1\x66\xd6\x80\xb4\x0e\x33\x20\xad\xad\x71\x70\x81\x13\x66\x99\x0b\xd6\x60\x8c\x44\x21\xd9\x4d\x8e\x0b\x2c\xb0\x78\x5a\xcc\x99\x57\x53\x3b\xec\x49\x80\xa6\x03\x89\x1e\x26\xe3\x23\xf1\x17\xc7\xfb\x03\x69\x7c\x35\xde\xa9\xf5\xe8\xf5\x61\xfb\x33\xe5\x78\xa7\x59\x32\x8d\x69\x4f\x3d\x93\x31\x4b\x31\x65\x52\x37\x55\x49\x3d\x59\x66\x8b\x77\x43\x5f\x36\x43\x67\xa5\xc7\x15\xef\x24\x4a\x1a\xfd\x44\x05\x39\xae\x80\xa6\xa0\x6c\x48\xb3\xd4\x02\xba\xe5\x8d\xe2\xf6\x74\xd3\x3f\x2c\x4a\x6e\xdc\x51\x4c\x7f\x84\x4f\x1d\x16\x2c\xec\xe1\x87\x19\xb6\xac\x53\x27\x91\x58\x0e\x94\xcf\x3b\xcf\x19\x1e\x8b\x04\x75\x3c\x50\x97\x1f\x8b\x7b\x2d\xa1\x8a\x6f\xe3\x81\xe4\x19\xd3\xe3\x7f\x4b\xef\x3c\x5a\x29\xda\xe7\x5f\x0b\x9f\xbe\xe4\x7f\x52\x33\x96\xe9\x3a\xa5\x58\x2c\xd3\xb5\xc8\x51\x71\x26\x63\xf2\x26\xe4\x55\xfc\x4f\x86\xed\xc9\x98\xbc\xe1\x1a\xfd\x9f\x77\xca\xe7\x53\x75\xa6\x77\x43\xea\x8c\x25\x35\x87\x94\x61\x26\xa9\x43\xca\x4c\x46\x42\x1d\x52\xca\x34\x89\x73\x48\x99\x26\x6a\xf9\x35\xce\x34\xe3\x1d\x83\x58\x86\x84\x3e\xcb\x75\x8a\xdd\x10\x85\xe4\x40\x67\x4f\x36\x4a\xbc\xd3\x54\x8c\x80\x9a\xbe\xcc\x86\xba\xbe\x8c\xff\xa9\x3d\x23\xa8\x92\xa9\xcd\x64\x71\xa1\x83\x4f\x1a\x26\x55\xb4\xa3\xc3\xc4\xf9\x4c\x79\xf5\x18\x99\x1e\x98\xf2\x28\x86\x34\x2f\xde\x37\x4b\xc9\x59\x62\x9f\x27\x37\xc8\x99\xaf\x80\x84\x3e\x35\x20\x6a\x71\x7b\x62\x61\xc3\x04\xa8\x0c\x6a\x33\x5b\x52\xe3\xdd\x18\x7b\x40\xfc\x19\xa7\x17\xf0\xf1\xd8\x99\x33\x65\x40\x9b\xd9\xec\xed\x85\x0d\xcf\x80\xe4\xb4\x64\x42\x92\xa9\x6f\x1a\x16\x02\x52\x25\x96\xe9\xd5\x54\x58\x9b\x32\xbd\x7e\x3a\x21\x95\xd8\x57\xbe\xc4\x45\x33\xdb\x78\x61\x1b\x66\x0d\xf8\x26\x4e\xaf\x98\x7c\x13\x67\x36\x33\x47\x41\x38\x4c\x10\x2f\x63\xf0\x6a\x4a\x41\x98\x46\x73\x0b\x22\xab\x6c\x0c\x79\x21\xab\x16\x90\xd6\xc1\x73\x8d\x69\xf0\xf4\x4a\xcb\x75\x31\x0d\x8b\x20\x45\xf4\x9f\xd9\xf3\x82\x2a\x71\x18\x77\x7f\xac\xdf\x8a\x2f\xd5\x33\xe3\x27\xe7\xb3\xe1\xd6\x7f\x90\x87\x31\x44\x59\x66\x67\x76\xaf\x15\x9a\xb5\x4c\xef\xb0\x49\x5d\x36\x8c\xbb\x3f\xe6\x65\x05\xa4\x3a\x8d\x9f\xb2\x30\x9e\xc5\x3b\x3b\x29\x01\x13\xe7\xba\x07\x5f\xc3\x34\x2c\xc8\xf0\x35\x5c\xde\x49\x7e\x60\xa4\xb1\x0e\xf7\xc2\x62\x91\x8e\xcb\x5f\xf1\xda\xa2\x5c\x1b\xc6\x17\x9d\x00\x9d\x20\xff\x21\xaf\x6c\x8a\x73\xd6\x27\x01\x58\x2c\x3c\x3e\x9d\x0b\x56\xca\x86\xe4\x5c\x66\x6c\x45\xd5\x16\xe7\x25\x29\xd0\xca\x4a\x01\x69\x76\x8d\x2f\x4a\x4c\x56\x96\xd9\x1b\xea\x34\x9f\x89\x96\xac\x88\x27\xee\x7d\x07\x1a\xfa\x32\xde\x51\xcb\x34\xb4\xf4\x2e\x20\xf5\x93\xb5\x5d\x97\x32\xb0\xe1\x36\xfa\x2c\xec\x8d\xf1\x14\x3d\x10\x3d\x8b\x77\x07\x77\xc9\x7c\xfb\xac\x4b\x9b\xbe\x95\x5d\x0b\xab\xc2\x6a\xae\x0b\xfc\x5c\xee\x99\xae\x4b\xf0\x7e\x79\x16\x79\xca\x70\x2a\x3d\x10\xb5\x34\x43\xd4\x12\x5f\xfe\xe4\x7e\xe6\xf6\x88\xcf\xc7\xe6\x6d\x61\x99\xec\xb3\xdb\xc2\x32\x99\xcc\xb9\x0f\xae\x87\xc9\xa7\x35\xbb\x1e\xae\xfc\xcf\xb0\x13\x0f\xa9\x6f\x0b\x9e\x2c\x8f\x9d\x0f\xab\x27\x0d\xef\x43\x1f\x6e\x96\x8e\xdb\xce\x16\x7e\x20\x2d\xe7\x32\x44\x68\x6b\xd8\x1b\x3e\x86\x85\x8c\xb8\x0f\x3e\x86\xc9\x07\xad\xa5\x90\xb7\xb3\x16\x77\x5b\x37\xa9\xb8\xbd\x1c\x48\xde\x71\xc5\xad\x13\x0e\xfd\x8a\x77\x3f\x7d\x19\xff\x3b\xc2\x83\x7b\xce\x07\x07\xc4\xe4\x63\x90\x9d\x0c\x7d\xb4\x5a\x0a\xac\x53\x16\xfb\xfb\x95\x09\xb3\x7c\xf9\x1d\x4b\xcd\x81\x7e\x65\xb1\x5a\xdc\x54\x0e\xa4\x45\x8a\x16\x08\x19\x7e\x45\x2d\x4d\xef\xaa\x21\x8d\x8f\x7d\x3a\x2e\x88\x05\xd7\x97\x67\x65\xe2\x65\x23\xd3\xf1\x2d\x4c\x04\x83\x3f\x10\x5f\xba\x2f\x12\x56\xb8\x77\x3c\x0b\x3b\x65\x1f\x9f\x96\x8e\xfe\x05\x3b\x94\x03\x51\x8b\x5b\x07\x45\x60\xc3\xf8\x21\x16\x1f\xec\x96\x8e\xfe\xb3\x1a\x41\x39\xfa\x93\x4f\xf7\x40\x5a\x4d\xa3\x2b\x36\xcc\x24\xd7\x7d\xec\x6f\x48\x08\xc0\x07\x7f\xc3\x84\x7f\xed\x83\xbf\x61\xc1\xb6\xe5\x40\x53\x90\x5b\x90\xd0\x69\x9e\x25\xa5\x90\x28\x58\xac\x3c\x78\x23\xce\xe6\x59\x72\x3e\x89\xe4\x77\x84\x3e\x37\x66\xa1\x78\xc3\x9a\xe5\xc1\x03\x31\xf9\xf4\x84\x0b\xa2\x93\xd3\x1e\x48\xc1\xba\xff\x20\x05\x05\xcf\x8c\x48\xd6\xc7\xb3\x99\x74\x9c\xd0\xcd\x24\xa7\x2b\x83\xd9\x4c\x3a\x58\x1f\x63\x21\xf3\x2c\xe7\x7a\xfb\xfb\x9f\xe6\x05\xa6\xbc\x9c\xf8\x2d\xfe\xc7\xbc\x64\xff\x0f\x2c\xc8\xf1\xa5\xfe\x07\xc3\x5e\x0a\x27\x34\x7d\x01\xb4\x08\x8a\x4b\x8e\xe0\x67\x55\x5c\x36\xab\xeb\x14\xdb\x27\x25\xf0\x81\xce\xfa\x35\xaf\x26\xce\x8c\xcb\x18\x52\x49\x3d\x65\xda\xac\xb0\xd3\x11\x90\xfe\xd7\xe3\x4b\xb5\xde\xe3\x1d\x09\x9b\xe9\x59\x03\x5f\xd8\x6c\x2c\xec\x9b\xf1\xd1\x79\x16\x17\x08\xa4\x18\x3e\x50\x17\x34\x0d\xa9\x2f\x9c\x51\x16\xea\xbb\x69\xa6\xdc\x58\xf7\x19\x90\x13\x47\x02\x49\x74\xb5\x78\x77\x18\xfd\xf4\xf5\xcc\x6a\x50\xf8\x74\x5f\x44\xe1\xbe\xac\x89\x64\xd7\x9e\xb3\x4e\x3f\xfd\x3f\x94\x72\xd3\x73\xd6\x9d\x5d\xa5\x18\xd2\xd8\x97\xbf\x64\x44\x51\xe7\xc1\x72\x67\xa0\x7d\xf0\xa7\x2c\xcb\xc2\xa3\x3b\x37\xcc\x32\x24\xbc\x5e\xf1\x4e\xd4\x38\xe3\x1d\xe1\xd6\xdd\x3a\xf3\x62\x51\xd2\x1d\x2d\xdf\x7d\xd1\xe6\x74\xad\xf4\x6f\xa6\x1c\x09\x38\xaa\xa1\x5b\x1e\xb9\x51\xa9\xc8\xd8\x84\xab\xd8\xb7\xc5\x97\x19\xab\x6b\x77\xea\xfb\x99\x85\x1a\xce\x97\x19\x4b\x17\x01\xce\x6e\x7a\xa0\xd3\xed\x65\xa6\x2c\xbb\x61\xe7\x36\x7d\x16\xd7\x02\xcb\x4c\x52\x79\x36\x8a\xaf\x3d\x70\xea\x4c\xcb\x24\xae\x5c\x71\xb3\x9b\xd1\xcb\x57\xd3\x39\x41\x0f\x24\x17\x63\x23\x1a\xca\xb5\x90\xc6\x28\xd7\xd6\x0a\x48\xb5\x70\x5d\xb2\x06\xd2\xd1\x82\x05\xc5\x5b\x48\xe3\xa1\x9d\x79\x37\xc3\x96\xe2\xad\x5e\x96\x95\xba\x24\xa8\x18\x82\x3d\x38\x79\xd6\xcb\x02\x69\x32\xda\x62\x48\x42\xae\x9b\xbd\x49\x49\x56\x2f\xcf\x84\x8e\xf7\xce\x7b\x79\x20\x8d\xb6\xc6\xbb\xa5\x77\xdd\xd0\xad\xff\x31\xbb\x13\xaf\x69\x33\x2d\x45\x09\xaa\xd7\xe5\x5a\x24\xf2\x7c\x0d\xb1\xa6\x0e\x6f\xc1\xb0\x27\x0e\xd6\x66\x30\x8a\x46\x9b\x82\x7d\x13\x8d\xf6\xb2\x00\x24\xa9\xf7\x6a\x51\xa7\xbc\xaf\xcd\x60\x64\x7d\xec\x54\x97\x8f\x53\x78\x07\x33\xd7\xd1\xbf\x5e\x5e\x31\x8e\xfe\xc1\xda\x51\xa0\x05\x33\x97\xf5\xb1\x93\x5e\x3e\x4b\x69\xe3\xa6\xaf\x1a\xc8\xf4\x9d\x82\x99\x2b\x14\x51\xf5\xd5\xd4\xe2\x22\x20\x98\xa4\x02\x07\x39\xe3\xe3\x43\x6a\xee\x14\x4c\x44\x47\xf8\x7a\x59\xac\xa1\x16\x0b\x96\xa2\x23\xfc\x1c\xee\xa7\xec\x8d\xeb\x65\x21\x77\x4b\x90\xf9\x50\xbb\xee\xc5\xbb\x80\x0e\x19\xfb\xe4\xb8\x38\xb4\x07\x6b\xd0\xc1\xbc\x5e\x29\x20\xf5\xc5\xe4\xaf\x83\x79\xbd\x4c\x2b\x72\x3d\x9d\x3e\xe5\xe1\x7a\x9a\x82\x8c\x75\x68\x77\xa2\xbe\x87\x1c\xe0\x4e\xf2\x7d\xa0\x47\xb5\x78\x0c\x60\xab\x29\x4e\xb6\xc1\x4e\x87\xf7\xe0\x62\x5a\x2f\x63\xb2\x0e\xdf\x4e\x77\x77\xa0\xf6\x5f\xff\x91\x03\x07\x95\xc0\xae\x5e\x1e\xd1\x56\xfa\x99\xc0\x33\x1d\xd3\xe7\xb0\xb8\xd8\x60\xb9\x05\xe0\x56\x22\x80\xcb\xdb\x20\x45\x1e\x72\xb6\xb6\x07\x27\xd6\x7c\x99\xa6\x37\x21\x96\xbd\x3b\xd5\xb9\x7c\x0e\xe3\x84\xd4\x7e\x39\xe6\x6c\xdf\x5a\x31\x8b\x3c\xd2\xd4\xc5\x9c\x71\xfa\xb5\x86\x87\x4c\xe2\xf9\xaf\xd7\x8c\xd6\xc2\x91\xa4\x74\xd1\x4f\x9d\x8c\x9d\x77\xeb\x40\x8a\x0b\x6d\xc1\xa9\x18\x40\x39\x7a\xa6\x73\x72\x25\xf6\xed\x83\x73\xac\x93\x57\x3f\x78\xc7\x3a\x7d\xd5\x81\x7e\xfa\xd2\x2d\x28\xd2\xee\xe5\x15\x53\x1e\xbb\x19\xfb\x7b\x29\x08\xf3\xc5\x75\x1e\xa9\xc5\xeb\x55\xfe\x7d\x7d\xb1\x64\x29\x9c\x2f\x4b\x5c\x79\xd2\xce\xd8\x9d\xca\x93\xd6\x89\xa5\x0f\xa4\xd0\x02\x57\x40\x5a\x5c\xef\x47\x15\xa4\xb6\x5e\x25\xfe\xa7\xc5\x35\xcb\x94\xfd\xef\x8c\x9d\xa4\xec\x7f\xf3\x65\xe6\xf3\x82\x06\x46\x18\x59\xf5\xe6\xcb\x68\x20\xab\xde\x19\x3b\x34\x1d\xbe\x67\xec\xad\x5e\x48\xd5\xcc\x55\x87\x6f\xe7\x78\x3e\x90\x16\xd7\x08\x4a\x16\x95\xcb\x7b\x39\x05\x17\xaa\x7f\xad\x8b\x2d\xc6\xae\x48\xc7\xf4\x19\xfb\x20\x29\x2b\x9d\xbf\xf9\x40\x1a\x83\x47\x4b\xa4\xda\xcb\x3b\x65\x85\xaa\x9d\xd3\xa3\xfd\x41\xe2\xde\x29\xff\x40\x7a\x8f\xef\xc7\xc2\x7b\x7c\x3f\xa2\x8a\x7b\xa7\xac\xd0\xb5\x33\x76\x30\x3f\x96\xba\xba\x4e\xd0\xdc\xe4\xaf\xc3\xb7\x13\xdd\x1c\x88\x20\xe0\xf1\x3f\xcd\xa0\x91\x42\x79\x50\x9c\x6d\xe6\x40\x42\x8a\xe6\xff\x89\xfc\x67\xb4\x0e\x09\x58\x3c\xc9\xf5\xd7\xd9\x62\x1e\x27\x05\x4f\x16\x48\x3f\xed\xbb\x7c\xf7\xb6\x14\x1f\x37\x27\x93\xf8\xc7\xd8\xbd\x17\x97\xb5\x6c\x4e\x26\x4e\x45\x01\x9a\xbe\xee\x5a\x3a\xa6\x3b\x5f\xf0\x81\x34\x13\x66\xed\x64\x0e\x4f\xc6\x17\x85\xf7\xc9\xbe\x73\x25\x6f\x78\xbd\xdc\xba\xe2\xfb\x4c\x5f\x2a\xad\x0f\xb6\xd8\xe3\x7f\x8f\xde\x75\x43\xaf\x6a\x01\x27\x64\x3b\xeb\x2c\xc2\x07\xa2\x85\x6a\x88\x5a\xdc\x9e\xd8\x46\x32\x0e\x7e\xc4\x58\xf7\x8e\x90\xb4\xe4\xc9\x18\xa9\xac\xe4\x73\xae\xf8\x52\x73\xed\xfd\xa1\x2e\x02\xe6\x5c\xf1\xa5\xc6\xc0\xce\x15\x57\xe3\xe9\x2d\x0b\xae\xc6\x99\x88\xfa\x0f\xae\xc6\xd3\x4a\x47\x5c\x8d\xab\xb5\x00\xb7\xb2\x00\x4e\x6f\x59\xee\x8b\x79\x41\x90\xe1\x5c\x3c\x7d\x61\x71\x5f\x9e\x97\x01\x24\x7a\xc0\x25\xeb\x40\xc2\x33\x84\xf8\x4d\xb2\x40\xdf\x29\x93\x95\x7c\xfa\xb0\x7f\xcb\xb0\x35\x13\xf1\xfd\xc1\x45\xb9\x9a\x3a\x6e\xd2\x08\x12\xf2\xfd\x21\x5f\x79\xb5\x0e\x02\xf7\xe5\x8a\xf5\xf1\x43\xf2\xf2\x49\xf0\x89\xc7\xc9\xca\x89\x29\xf1\xe0\xb0\x5c\xb1\x45\x7e\x70\x58\xce\x38\x76\x3d\x38\x2c\x57\x72\xcf\x3c\x4e\x63\x4e\xc4\xf6\x03\x69\x0c\x23\x20\xcd\x3c\x38\x71\x2b\x8e\xef\xf4\x49\xfc\x4e\xb0\xd3\x61\x88\xd0\xfd\x08\x71\xbc\x97\xa7\x4f\xd4\x78\x2f\x57\xfc\x5d\x1f\xbc\x97\x33\xa1\xd6\x1f\xbc\x97\xab\xb5\x23\xe4\x41\xaf\xd6\x87\x90\xe8\xbc\x5a\xcb\x41\x26\xf3\xe9\x13\x2e\x89\xcc\xeb\x35\xff\x19\x51\xe8\xc1\x09\x7a\x7a\x37\x75\x27\xe2\xfc\x4f\x0f\x09\x72\x8c\x77\x20\xda\xf4\x90\xc4\xb4\xb0\xce\x3d\xd0\xd9\xd9\xad\x1e\xd0\xad\x77\xd4\x92\x75\x90\xf4\x51\xee\x56\xd4\x5e\x27\x1a\x3e\x90\xc2\xb3\x78\xc9\x48\xc4\x93\x8c\x76\xba\x5c\x98\xde\xf9\xe0\x04\xed\xdc\xbf\x07\xd2\xc4\x70\x84\xb8\x33\x53\xb1\xdc\x02\x04\xd8\xe3\x7f\x42\x2d\x4e\x02\x77\x56\x3a\xc4\x64\x24\xcc\xec\x5c\x97\x5b\x57\x4a\xbf\x64\x44\x53\x42\x1f\x27\x08\x7e\x70\xb3\x9e\x2b\xda\x83\x8c\xa3\xd7\xcc\x19\xe7\x89\x9b\xf4\x3e\xc9\xa8\x95\xd9\x61\x2f\x8f\x48\x09\x11\xb0\xd1\x7e\x6e\xd9\xf8\x3a\x9d\xef\x43\xf2\xf5\x4a\xfc\xf3\x07\x07\x69\xe7\xf6\x7d\x6e\xe5\xd2\x59\xde\x19\xdc\x45\xa9\xbc\x92\x17\xbe\x80\x14\x2b\xbe\x5c\x7a\x47\xeb\x05\x22\xf3\x6a\x2a\x2d\xce\xb2\x18\xc5\x7d\xb9\x9a\x9d\x92\xcd\x7d\x59\x8c\xde\x05\x76\xe3\x95\x96\x25\x41\x4d\x66\x0d\x15\x62\xf1\x4c\xe8\x5a\xa0\xe2\x60\x7b\xa0\x71\x6a\xa9\xf1\x6e\xea\x5d\x37\xf4\x53\x50\x9d\x62\x48\xeb\xe0\x79\xd1\xb5\xc0\xba\x8c\x4b\xb2\xce\xcd\xc9\xb3\x24\x87\xe5\x9a\xd8\x0a\xe0\xb0\x9c\xd3\x0a\x68\xe9\xdd\x34\xf4\x08\x72\xeb\x47\xc4\xae\x60\x06\xb2\x39\xa8\x66\xbc\xce\xed\x9e\x3c\x67\x0a\x7f\x54\xcd\x78\xef\x0a\xce\x2f\xd7\x72\x66\xa2\x9a\xf1\xde\x4a\x90\x53\x71\xcc\x7d\x6e\xe5\xaf\x59\x81\x83\x8d\x84\x63\x9c\x97\x48\xcc\x5e\x49\xc4\x7e\x20\x25\x04\xf4\x5c\x2b\xfd\xcc\x8a\x11\x35\x32\x72\x7a\x96\x74\x11\xb0\x62\x44\xb2\xe3\xad\xe4\x6f\x7f\xee\x46\x8a\x63\x8f\xaf\x39\xa5\xf1\x65\xc8\xd9\xea\x0d\x69\x44\xd9\x2d\x1c\x31\xba\xfe\x1b\xfa\xf4\x8e\x16\x3a\x81\x89\xfe\x20\xb2\x35\x67\x43\xd4\xd9\x0c\xf1\x3f\x5a\xef\xce\x52\xdf\x0d\x1d\xf6\x66\x55\xe2\xdd\x23\x5d\xb6\xa1\x72\x5a\x28\xf1\xbf\xaa\x2f\x93\xa1\xb3\x46\xc1\x78\xbb\x53\xe0\x46\x2d\x8f\xde\x55\x43\x64\xe9\x8d\xff\xfd\x54\x8b\xfb\xe9\xbc\xb3\x01\x69\xce\x8a\xeb\x54\xd4\xff\x10\x41\x32\x16\xa8\x21\x74\x74\xf2\x5f\x58\xff\x1f\x48\x2b\x66\xea\x90\xa9\xee\xc2\xde\xff\x21\xcf\x7c\x8d\x31\x38\xaf\xbc\xd7\x56\x79\x6f\x56\xb2\x48\x18\x4e\xb6\x3b\x0d\x69\xce\xd8\x68\xdd\x64\xc1\x49\xf5\xdf\xd7\x17\x64\xa3\x5f\xc9\x7c\x5f\x76\xbc\x35\x64\xd7\x60\xf0\x9e\x34\x85\x7e\x5a\xc9\x32\x61\x90\x9c\x2e\x1a\x3c\x0c\x6d\x05\xa3\x18\xe4\xb6\xf5\x84\x0e\x26\xe6\x0f\x12\x8a\x70\xb0\xbb\x07\x53\x51\x3d\x40\x50\xcb\x84\x3b\x40\x1f\x76\x99\xf7\x24\xa9\xa2\x09\x57\xf9\x6f\x56\xa0\xf9\x84\x20\xd8\x23\xe1\x32\x5c\xad\xef\x8d\x0c\xf2\xec\x7c\x48\x20\xbf\x02\xed\x74\xb9\x50\xad\xfd\x25\x9b\xfc\xca\x29\xea\xd4\x02\x9a\xc1\x4c\x16\xde\x0b\x38\x59\x78\x4b\x4e\x59\xd9\xae\x40\x18\x5d\x4a\x54\x12\x93\x1c\x48\xa1\xa7\x72\xfc\x4f\xf9\x0b\xbd\xd4\x13\x66\x60\x39\x3a\x21\x39\x8b\x35\xf2\xde\x84\x38\x5c\x90\x80\xc5\x8c\x32\xcc\xd4\x10\x87\xcb\x63\x9f\x86\xb4\x7e\x2d\xbe\x3c\x73\x1d\xbd\x5e\xee\x99\xbf\x94\x60\xb1\x72\xed\x5e\x12\x2c\xd6\x6e\xe3\x86\x5c\xad\xc1\xbe\x15\x4f\xb8\x5a\x67\x7d\x2f\xfa\xe9\x9d\x88\x2c\x69\x97\x15\x6f\xf7\x22\x2b\xa8\x77\x22\xba\x32\x58\xd9\x02\x42\x57\x06\x35\x84\xaa\x73\x9e\x5a\x20\xdd\xca\xce\x11\x62\xf4\x86\x99\x7b\x44\xb7\x04\x52\x36\x8b\xbe\x61\x76\xde\x31\x39\xfb\xe9\x88\x2f\x35\x06\x8f\x88\x6c\x31\x21\xf2\x6e\x70\x30\xbe\x94\x78\x2a\x66\x37\x37\xe2\xc9\xb8\x7b\x13\xce\xcb\xec\xe6\x86\x29\xc7\x18\x94\x6e\x8b\x40\x5c\x0f\x6e\xc1\x8b\xb8\xad\x4f\x24\xb6\x77\x2d\xba\x24\x58\xc5\xec\x94\x4b\x82\xe4\x8d\x81\xd2\xce\xac\x62\x96\xe2\x94\xf7\x16\x80\xba\x16\x58\xc5\x2c\x65\x33\x5a\x0b\x55\x05\x1a\xce\xd9\xc2\x5f\x2a\xf9\x1a\x82\xd3\xc9\x4c\x97\xff\x27\x81\x54\x8c\xd7\x24\x94\x09\x31\xca\x95\x01\x3e\x67\x0f\x99\xee\xab\xd5\xee\x91\xbb\xde\xa2\x72\x33\x76\x6f\x59\xc8\x22\x63\x45\xfb\xcd\xd1\x3f\x56\xc5\x49\x4b\x2d\x2a\x1f\x58\xb4\x6b\x71\xca\x52\x0b\xc0\x87\x11\xfd\xfd\x8f\x5a\xe8\x99\x12\x94\x2e\xac\xdc\x0f\xd4\x05\xc5\xbb\xc3\x51\x8a\x45\x1e\x59\x66\x48\xd1\xf1\x90\xaf\x7e\x95\xa8\x53\x79\x3e\x8b\xb7\x09\x44\xcd\x2a\xd1\x33\x51\x15\xf9\x3b\x0e\xf4\x53\xe8\xb4\xf8\xf2\xd3\x3b\xe6\x45\xe7\xf9\x55\x2d\x2a\x5f\x09\xab\xf2\x07\xdd\xfa\xb2\x19\xda\x8a\xb9\x56\x0c\x3d\xfa\x72\x19\xa2\x4e\xff\x4f\xb3\x54\xd2\xf5\x6f\xa6\x2c\x17\xde\x55\x53\xfc\x31\xab\x9a\x61\xe8\x56\x24\xb7\x6c\x68\xab\x52\x37\x4f\x34\xb8\x1c\xd0\xab\x77\x1e\x92\x58\x58\x20\xfd\x2b\x16\x96\x2d\xfd\xc9\x58\x13\xf2\x5e\xb9\x51\x57\xe5\x28\x7e\x2b\x7e\x70\xcd\xae\x85\x54\xfa\xb8\xa7\x1c\x28\xe9\x5d\x33\xa4\xe9\x75\xaf\x75\xf4\x5f\xd5\x2c\x45\x47\xff\x4c\x80\xe5\x03\x69\x9a\x2c\x7f\xa5\x5b\xaf\xd9\xbd\x96\x6e\xbd\x66\x1f\xd0\x94\x24\x7f\x55\x93\xf1\x4f\xac\x28\x7b\x67\xa0\xe3\xfd\xaa\x26\x6a\x1d\xef\x6b\xf6\xce\x40\x4e\xb4\xb9\x98\x29\xcb\x89\xb6\xe6\x12\xd0\x23\x88\x19\x94\xa6\xbd\x66\x93\x9c\x32\xde\xac\x6a\x84\x51\xc6\x9b\x9a\x7d\xd0\xd2\xd1\x7f\x55\xa3\xb2\x8e\xfe\x4e\x4b\xfd\xdc\x3a\xd0\x57\xb2\x44\x3c\xb8\xb1\x3a\x0b\xf5\x81\x34\xd7\x16\x95\xca\x73\xb3\x9a\x67\xe9\x03\xb1\x73\x40\x8a\x3d\x97\xa2\x96\xa5\x77\x01\x09\xed\xbc\x2a\x1c\xda\x43\xc4\xea\x28\x5e\x49\xe1\xff\xe0\x9c\xba\x6c\x6b\x8d\x73\x6a\xc5\xc5\xfc\xc1\x39\x75\xd9\xd6\x1a\x97\x53\xe7\xb4\x3e\xd0\x4f\x41\xf1\x8a\xa1\x4f\xef\x5c\x8b\x82\x04\x5a\xbd\x85\xe7\xa8\x33\x47\x3f\x78\x8e\x2e\xe2\xaf\x3c\x78\x8e\x66\xa2\xd1\x3d\x78\x8e\x56\x12\xf5\x3f\x5b\x07\xec\x6c\x0b\x04\xf2\xf4\x57\x5c\xd3\x0f\x74\xab\x16\x8d\x16\x3f\xd2\xea\xad\xc0\xd6\x61\x78\x11\x21\xe4\x40\x5a\x5b\xf7\x25\xb1\x46\x7f\x90\x7a\xc6\x79\x70\x2b\x5b\xcd\xb2\x0a\x6b\x4b\x61\xbe\x88\x6f\x71\x20\xfe\x17\x5f\xfe\x04\x75\x43\x8a\x52\x38\x0d\x89\xb9\x12\xc1\xf8\xc1\xe3\xb4\x92\xad\xe2\x21\xcf\x6c\xb6\x8d\x03\x79\x66\x17\xfe\x05\x07\xea\x7a\xe7\xf6\x14\x22\x91\xd8\x17\x07\xd2\x18\xba\x7b\xcd\xbc\x74\xf7\xc5\xf3\x32\x0d\x69\x35\x57\x40\x5a\xcd\xe6\x16\x08\x63\xb8\x02\x6a\xaa\xc5\xbd\x96\x46\xc2\x9b\xa2\x9d\x14\x15\x90\x28\x12\x07\x12\x05\x78\x44\x3a\xfd\x56\x6f\x13\xf0\x4d\x75\xb6\xea\x03\x69\xfd\x3c\x86\xcc\x4c\x78\x1d\x74\x52\xad\xde\xb2\x6c\xe5\xa9\x59\xd6\x0c\x6d\xa9\xc8\xab\xed\x81\xf0\x4d\xad\xd9\x3d\xcb\x84\x32\xac\xf1\x4e\x33\x01\x15\x6f\xce\xad\xde\xea\x6c\xa9\xcf\x73\x61\x7b\xe1\x9c\xb2\xde\xea\x6c\xe5\xb4\x59\xdd\x2b\x26\x3b\xfa\x5c\xbc\xd2\x3a\xef\xd6\xec\x31\x14\xb0\x1c\x31\xba\x0b\xa3\xf5\x18\xa4\x30\xcf\x65\xfe\xd3\x79\xe4\xc1\x55\xb5\xe2\x30\x79\x20\xc9\x04\xf6\xb1\x5b\x99\x72\x56\xff\x7b\xa7\x8e\xb2\x13\xc1\x71\xd5\x49\xab\x1f\x67\x93\xf5\xfe\x69\x17\x16\x1e\x19\xeb\x94\xb1\xde\x3f\x6d\x19\xd2\x2f\xdb\x5e\xee\x82\x7c\xf2\x54\xe8\x68\xbc\x6c\x7b\xb9\x2b\xf2\xc9\x5f\x56\x48\x00\xf9\x8b\x73\x6a\xc5\xbf\xfe\xc1\x39\x35\x5b\x56\x6e\x25\xd2\x59\xb6\x62\xdc\x15\x51\x62\x64\xd2\x11\x77\x8d\xe4\x3a\x25\x4a\x6c\xea\x42\xd2\xd7\x5c\x8d\x4c\x1c\x78\xbd\xf3\xc1\x8d\x35\x5b\xaa\xee\xca\x88\xbc\x2c\x3a\xe2\x66\x4b\xd5\x2d\x23\xfb\x85\x07\xda\x81\x84\x4c\x26\x4e\x1d\x7f\x97\x4d\xfe\x76\x3d\xec\x3b\x57\x04\x20\xce\xb0\x99\xa4\x90\x07\xa2\x05\xfa\x22\xa3\xf7\x4c\x6c\xe0\x07\xc7\xd5\x9a\xbd\x46\x8d\xc4\xd7\x1c\x63\xc9\xc5\x5a\xf1\xe0\x7f\x70\x6a\xcd\xd5\x33\xa1\xc4\x3b\xcb\x86\x59\x5b\x89\x77\x72\x4d\x6e\x81\xbd\x87\x49\x5c\x89\x77\x32\x3e\x6e\x0f\xae\xaa\xd9\x62\x1b\x57\xd5\x9a\xbd\xee\x0d\x92\xf3\x4a\x93\x9d\xd5\x7b\xb9\xad\xb8\x5b\x19\xef\xd0\x03\xf1\xbf\x62\x48\x6b\xf4\xf7\x3f\xcd\x35\xbb\x37\x32\xb7\xae\xf1\x57\x8b\x46\xeb\x75\x57\x14\xae\x8c\x3f\xe8\x83\x1b\x6b\xf5\x7e\x6d\x77\x66\x29\xbb\x4e\x09\x24\x6b\x32\xb6\x6c\xde\x33\x49\x87\x1e\x92\xb7\x2e\xdb\xc4\x6c\xa9\xba\x33\x3e\x9f\x0f\xde\xa8\x19\x2f\xcf\x07\x6f\xd4\xea\x3d\x20\xde\xa8\xd5\xbb\xbe\x3d\x24\x90\x6c\x6f\xb1\x15\x94\xb8\x16\xce\x6e\x24\x7d\xcd\xf8\x83\x1e\x88\x5c\x97\xb4\xae\x84\x3c\xb9\x1a\x0b\xa4\xea\xce\xf8\xf7\x1d\xe8\xac\x91\x6f\xfa\xf1\x15\xcd\x44\x06\x7e\xf0\x15\xad\xc5\x23\x1a\x60\x64\x71\x7b\x12\x48\xc5\x23\x1a\x8c\xa1\xb8\x3d\x89\x20\x1b\xbd\x6e\x65\xd0\xc9\xb6\x7e\x22\x4f\xeb\xf2\x4d\x3f\x89\x5a\xb3\xad\x9f\xf6\x64\xfd\xcc\xfa\xa4\xc0\xce\xd5\xc2\x91\xb3\xa9\xad\x9f\xc8\x9e\x5a\x4b\x8a\x77\x9a\x79\x8b\x19\x59\xb9\x57\x6f\xe5\xc8\xac\xba\x6c\x88\xb9\x75\x6e\xcd\xd5\x82\x93\xd3\x28\xde\x9a\x0f\x7e\x9d\xd5\xdb\x3c\xfc\x3a\xab\xb7\x79\x5b\xca\xed\xe5\x7b\xf8\x2d\xfb\xf4\x5c\x2d\x70\x09\x5c\xec\x7b\xf8\x3d\xa1\xcd\x16\x5f\x6a\x0c\x2d\xde\xbd\xaa\x93\x7e\x2a\x60\x56\x2d\xc6\x56\x29\xb0\xab\x37\x84\x78\x79\x2e\x1b\xdd\x39\x4d\xaa\x37\x61\xa4\x49\x5d\xbe\x79\xdf\x4b\x6c\xd8\xdb\xa7\xbd\xc0\x48\x0b\x55\x85\xc8\x5a\xab\xfe\x7b\xa7\xbc\x75\x38\x5d\xcb\x53\xcf\xe1\xb4\x5a\x42\x2c\x1d\x0c\x6c\x32\x86\x7b\x68\x2d\xd1\x35\xc9\x20\x5b\x0b\xec\x05\xe1\x72\x83\xb7\x65\x92\xbe\xac\xbd\x27\xe9\x69\xae\x66\xca\x1c\x4e\x8b\x07\xa1\x88\x59\xd9\xbb\xd3\x2d\x03\xf5\x65\x7d\xfd\xbe\x59\x78\x33\x5e\x0e\xae\xde\xcb\x91\xf3\x34\x57\xb3\x4c\xc5\xc1\x5a\x2b\x5a\x07\x95\xbd\xf0\xf7\x61\xae\xcb\xc6\x42\xfb\x66\x7c\x66\x29\x3a\xaa\xd6\xd8\xbd\xe9\x70\xba\x56\xfc\x4f\xe2\xc2\x07\x49\x32\xa2\x2e\x1b\xcc\x90\x12\x35\xdb\xd4\x8c\x94\xa8\xd9\xc6\x65\x7b\x33\x3e\x13\x84\xd2\xe3\xd4\xd8\x03\x6e\x7a\x66\x06\x83\xad\xf5\x65\x35\xee\x96\x82\xf9\x80\xae\x47\x72\xbc\x78\x9f\x49\x64\xaa\xeb\x8a\xee\x88\x7a\xda\x15\xd0\x4f\x9f\x0e\x43\x1f\x9f\xd2\x03\xc5\xa6\xca\xcd\x22\x43\x39\x68\xaa\xad\x5b\x37\x87\xd0\x66\xb1\x20\xeb\xeb\x74\x59\x2b\x89\x87\x6a\x25\x96\xf2\x81\x36\x2f\x03\x3c\xe8\xd6\x4c\x24\xca\x4a\x53\xc9\x00\xf2\xe0\xb0\x9a\xbd\x3f\xdf\x8f\xc4\x44\x31\x7e\xa1\x8f\xf6\xfe\x7c\x2b\xf3\x4c\xba\xac\x55\x23\x6d\x69\x6e\x46\x30\xc5\x8e\xaa\xb1\x45\x56\x1c\xe6\x1a\x9b\xe2\x17\x0a\x32\x35\xeb\x3c\x99\x2e\x2b\x5b\xb6\x82\x32\x65\x1b\xc3\x6d\xa9\x76\xd3\xe5\x4b\xf7\x2d\xdd\x6e\xb6\x6b\x26\x89\x46\xcf\xcb\x65\x70\xe9\x65\x36\xa4\x09\x68\xae\x55\xfb\xb1\xd2\xe2\x8f\x1f\x31\x91\xdd\x1f\x9d\xfb\xe3\xc0\x80\x8e\x38\x8e\x08\x1c\xf8\x9a\x57\x87\x03\x5f\x31\x07\xc1\x08\xfb\xf2\x9d\xf5\x96\x15\x76\x6e\x5e\x9d\x1f\x21\x37\x7d\x85\xbd\x7f\x32\x9b\xb0\xb3\xe6\x96\x19\x76\x6e\x9e\x72\xa5\x90\xa9\xc5\xbc\x47\x31\x9c\x6a\x6c\xef\x95\xfe\x25\x5d\xbe\x49\xdd\xca\xff\x52\x8b\x69\x0c\x3b\xec\x2b\x45\x5f\xb5\x27\x6b\x5e\x2c\xe9\x82\xb3\x5d\x40\xf7\x0f\x99\xe0\xed\xf0\x0f\x2e\xe9\x95\x43\x4f\x6c\x87\xd0\xfd\x03\x93\xad\x53\xda\x3f\x30\xd9\xbb\x5c\x6c\xb6\xaf\xe4\x6d\xe7\x0f\xce\xe8\x6d\xee\x07\xb2\x7a\x5d\x3f\x64\x99\xa5\xc9\x07\xb2\xd6\xf8\x92\xf6\x99\x1b\xe5\x81\x49\x57\xf2\xa6\xf0\x83\x57\x78\x87\xfa\x11\x38\x35\x99\x01\xa1\x2b\x2e\x66\x16\x1c\x34\x9b\xa5\xe0\x87\x24\xf0\xbe\xe5\xf3\xf8\x99\xaa\xcf\xa1\xae\xbd\x75\xf8\x24\x0a\x9a\x17\xf2\xdb\x8e\x3d\xed\x0e\x48\x16\xc4\x41\xf0\xd3\x41\xa2\x8c\x80\x44\x49\x5c\xbe\xbc\xf3\x02\x3d\xda\x3f\xf7\xcf\x2f\xe9\x58\x2b\xf9\x51\x5e\x5c\x8e\x73\x13\xc7\x7f\xc9\xc0\x9a\x71\x8a\x7d\x49\xc1\x5a\xc9\x82\xf2\x92\x82\xb5\x92\xea\xe4\x40\x5a\x63\x21\xc0\x81\x34\xc6\xee\xce\x78\x6e\x5c\x27\x44\xae\x35\x7e\x71\x6a\xce\x04\xfb\x3c\x90\xd6\x98\x3b\x80\x03\x8a\x21\xe9\x94\xf3\xce\x0b\x02\xe8\x6e\x90\xf5\x9f\xfe\x72\x53\x29\x4d\x28\xbe\x51\xba\x72\xbb\x0c\x8a\x3a\x47\x40\x93\x97\xc9\xa0\xa8\x73\x18\xd2\xd6\x86\xd8\x95\x2f\x7e\xd4\x95\xa0\x11\x07\xd2\xd4\x8c\x80\xd4\x1b\x4f\x1b\x67\xd1\xe6\xa9\xe1\x2c\x4a\x3c\x99\x03\x69\x89\x73\xb4\x0f\xeb\x9a\xf1\x69\xe5\xa5\xdb\x27\xa9\xf8\xec\x86\xc4\xf5\xa7\x47\x05\x39\x8c\x69\x28\xf1\xc7\x65\x30\xeb\x65\x40\x85\x70\xe3\x6e\x12\x46\xf2\x07\x35\x5e\xba\x49\xe9\xcc\xb9\xdf\x3b\xd0\x8f\x97\xd1\xa6\xe8\x7a\x52\x2d\x46\xe2\x57\xf6\xb7\xb2\x12\xcf\xcd\xd3\x93\xc1\x1c\x0f\x3a\x43\x57\x1e\xa5\x32\xd3\x54\xce\x5a\x07\x12\x95\x2d\xda\xcf\xe0\xd1\xca\x86\x84\x01\x5c\xea\xbd\x24\x67\xad\x1c\x9a\x5e\x92\xb3\x9e\x97\xc3\xa0\xf0\x71\xf9\x53\xe8\x2a\xfa\x76\xf3\x47\x7f\xa9\xbd\x66\x8b\x61\x20\x22\xb9\x07\x7a\xf1\x03\xaf\x44\xc7\x79\xed\x07\x7e\x21\xbe\xdf\x59\x18\x95\xeb\x91\x35\x78\xe5\x2c\xf6\x92\xa2\xb5\x56\x93\x5c\x41\xd0\x21\xda\x5e\x3c\xc1\x2b\xd9\x4a\x0f\xb4\x89\xd5\xce\xec\xe8\xcc\x9a\x89\xb4\x78\xa0\xc4\x4b\x37\x22\xe6\x41\xa8\xc5\x97\x1c\xae\x95\x43\xdd\x81\x7e\xc4\x75\x37\xa8\xb5\xe3\x54\xf7\xda\x51\xfc\x2a\x26\x42\x99\x7d\x67\x02\x0e\xbe\x78\x8a\xd7\xea\x79\x55\x40\xea\x5a\x3d\x91\x3a\xb6\xd6\xea\xee\x54\x04\x5f\x31\x11\x28\xdd\x4c\xe5\x0c\x76\x20\x96\xc0\x54\x20\xe3\xee\x8c\xa7\xf3\x3b\x65\xce\x9d\xb1\x9d\x3d\xd0\xd4\x1f\x5d\x8d\xc2\xfc\x5d\x41\x4c\x95\xe9\x49\x86\x84\xa0\xc4\x23\x7c\x71\xec\xae\x9c\xec\x0e\xa4\x61\x64\xb7\xcf\x30\x3c\xa8\x86\xa4\x8b\x6a\x14\x49\x29\x13\xf6\xef\xc5\x5f\xbb\x56\xf7\x0d\xed\x6c\x37\x67\x69\x88\xaf\xfa\xf7\xe9\xa7\x97\xae\x95\xf4\xf6\x1e\x46\x93\xf4\xc2\xf3\xf9\xc5\x61\x3b\x13\x87\xef\x40\x83\x6a\xe2\xa5\xba\x5a\xa6\x21\xba\x1a\xd0\xa3\x77\xcb\x90\x50\x27\x19\x12\x65\xf7\x7f\x6f\xac\xcf\xa7\x5a\x1c\x42\xbb\xbc\xe4\x91\xad\xdc\x3a\xbf\x53\x66\xdc\x99\x20\x7a\x2f\x7e\xe0\x95\x5b\xe7\x03\xa9\x6f\x46\x40\x1d\x51\x2b\xc7\xc9\x77\xa2\x93\xad\xa6\x87\x2e\x39\xc7\x01\xf2\x25\x5b\x6c\xba\x48\x41\x70\x40\x0d\x2a\x33\x7e\x14\xaf\xdd\x88\xdb\x91\x65\x75\x06\x78\x64\x19\xb1\xe3\x5e\xd2\xbd\x9e\x97\xd3\x60\xd3\x4b\x77\x0e\x8a\xac\x26\x50\xb9\x6d\xe7\x6e\x24\xef\x88\xb6\x6a\xee\xa1\x38\x49\x19\x0f\xe8\x17\x9f\xee\x1a\xeb\xa8\x38\x49\x99\xcb\xa7\x17\x0f\xef\x5a\xbd\xe4\xca\xac\x93\x2e\xb6\xb7\x07\xd4\x0a\x78\xc9\x07\x21\xe7\x9b\xc9\x6c\x88\xf1\xc7\xb2\x4a\x17\x9b\xbb\x65\xe2\x00\x57\x2d\x13\x65\x4e\x5d\xab\x97\x75\x80\xab\x2d\xa0\x73\x52\xed\x96\x82\x03\x92\xab\x40\x13\x11\xd5\x3c\x75\x53\x22\xaa\x5b\x28\xea\xe0\x5a\xab\xd7\x51\x76\xd8\xb9\x5b\x44\x4e\x70\xdc\x32\x71\xd2\x51\xaf\xea\x64\x1d\x6b\x33\x44\x2d\x0c\x62\x22\x85\x42\x7c\x2a\x5a\x51\xad\x75\x19\x22\x29\x83\xe5\xa7\x14\xa9\x19\x67\xf1\x17\x67\xea\xdc\xe3\x9d\x6e\x3a\xab\x45\xeb\x64\x32\xfa\x34\xd4\x48\xae\x10\xa0\x68\xc5\x98\x33\x91\x2c\x21\x20\x64\x6f\x9d\xbb\x99\xcc\x72\xc6\x08\xcb\x0b\x85\x7b\xce\xdd\x4c\x66\x81\xba\x16\xb5\xf2\xb5\xae\xd5\xe2\x7b\x81\xc8\x46\xb2\xc5\x04\x18\x37\x16\xb2\x84\x78\x11\x07\x14\x23\xf3\xc2\x71\xb4\xed\x23\x3e\x15\x1a\x79\xe1\x16\x68\xed\xad\xcd\x82\x03\x7b\x19\xa5\xa0\xad\xd5\x2b\xb5\x40\xdc\xe0\x5c\x4b\xb6\xa8\xdd\x3b\x1d\xb4\xa9\xdd\x62\x57\x07\xd6\x5a\x3d\x55\x37\x63\xb2\x0c\xbe\x91\x1d\xc1\x39\x6e\x38\x97\x27\xee\x76\xf2\x87\x12\xa0\x16\xc7\xd3\x78\x33\x0c\xcf\x1b\x06\xd9\xd5\x3b\x8d\x1b\x29\xe3\xcd\xc4\xcd\xa0\x4c\x9c\x37\xec\xc8\xd4\xa8\xd4\x40\xb5\x7a\x13\x72\x23\x64\x02\xc5\x6f\x78\x95\x57\xea\x26\x05\x42\xe0\xb8\xfc\xaf\x73\x9f\x01\x31\xe3\x46\x32\x59\x6f\xd7\xea\x65\xbc\x21\xdc\x15\xf5\x68\xfd\x17\xef\x50\xd3\x12\x77\xee\x25\x17\x6c\xad\x23\xa0\xac\x77\xcd\x50\xa1\x89\x65\x50\x2b\x3e\xe2\x25\xed\x8f\xa8\x55\x04\x68\xc9\xbe\x11\x5d\xfd\xaf\x5a\x89\x2e\xcb\x72\x99\x7a\xe7\x61\x59\x8e\xa9\xf7\xb0\xf0\x96\x7f\x76\xad\x46\x07\x19\x7e\xe7\x71\xfd\x33\x56\xfe\x4b\x0e\xda\x3c\xcc\x71\x36\x62\xc5\xc8\xb1\x39\x41\x76\xef\x82\xe4\x84\x5d\xab\x29\x67\x47\x16\x8f\x6c\x50\x28\xef\xcd\x1d\xea\xe0\x61\x69\xbd\x11\x96\x46\x32\xa9\x83\xf3\xf0\xde\xe1\x41\x3c\x12\x45\xee\x80\x87\x21\x0f\x0b\x64\xc2\x4b\x5f\xc3\x82\xfd\xd1\x41\x70\x58\x92\x3e\x70\xa0\x19\xef\x16\x9f\x56\x83\x92\xdd\x33\xea\xd9\xbc\x6c\x06\x3f\x40\x66\xcb\xc7\xff\x61\x61\xfa\x2c\x92\x80\x58\x28\xca\xac\x3c\x0f\xcb\xf6\x07\xa1\x3c\x2c\x95\x1e\x38\xd6\xb0\x58\xe2\xc8\x5f\xbd\x7f\x90\x1e\xba\xd6\x19\x9f\x0e\x3e\x75\xa3\x42\xee\x61\xa1\xf0\x80\x94\xc3\xc4\xf5\xc2\x6a\x08\xf4\x75\x40\xe1\x9a\x09\xe8\xf5\xb8\xbb\x21\x31\x17\x93\xcc\xcb\x71\x70\x58\xba\xbc\x88\x49\x4b\x25\x62\x36\x5f\xa3\xc5\xb7\x5a\x31\x2f\x2e\x1a\xdf\xbf\x16\xc1\x03\xaf\x2d\x07\xf9\x61\x0e\xae\xb3\x7a\xad\xa6\x0a\x9d\xd5\xf3\x30\x3f\x57\x6e\xa5\x5a\x4d\x23\x3f\x90\xd2\x54\xf1\x63\x22\xcd\x14\x7f\x6b\x90\x08\x25\x3e\xd5\x74\xb4\x80\x44\xce\xde\x35\xeb\xa8\x9e\x87\x39\xe6\x8f\xf3\xd7\x4c\xf1\x72\xeb\xe5\x34\xa4\xd9\xf0\x56\xf8\xa7\xb3\xd9\x30\x1b\x90\x3f\x75\xad\xa6\xb4\x1f\xc7\x8f\xe9\x75\x45\xe9\x3b\x2c\xc0\x50\xfa\xd6\x15\x7f\xa4\x45\xaf\x39\xa7\xfa\x66\x32\xd4\xa9\x3e\x0f\xcb\xba\x0f\x91\x39\x2d\xcf\x15\x49\xb9\x36\xd3\x28\x76\xdc\xc3\xdc\xf5\x93\x58\x6c\x66\xfc\x1f\xd4\x6c\x8e\xc1\x31\x3e\xb6\x01\x58\x7c\x0f\x73\x4c\x85\xed\xaa\xb1\x0b\x90\xd3\x76\x1e\xe6\x8a\x38\x6d\x5f\xb3\xc5\xa7\x22\x26\x73\xc5\x0f\x01\x3a\x5b\x7c\xdb\x54\x4f\x33\xf4\x13\xd4\x0d\x91\x89\xc6\xb3\xaa\xa0\xc8\x79\x98\x81\xe9\xfc\x5f\x9b\xf7\xe5\x1f\x94\x6e\xc6\xf3\x21\x40\x67\x8c\x51\x0c\x94\x40\x5e\x2f\x79\x5f\xcf\xcb\x00\xd5\x75\xb8\xc2\xd2\xa1\xbe\x92\xd8\xe8\x40\xa2\x74\x68\x1b\x6f\xf0\x8a\xc3\xe9\x8b\x37\x78\xba\xf0\x04\x3c\xe0\x59\x72\x3c\x4e\x5f\x9c\xbc\x2b\x39\x97\x0e\xc4\xca\x41\x39\x0b\xc3\xef\x06\x8b\x20\x9f\xec\x79\xd9\x0d\x0a\x59\xa6\x5f\xca\x06\x88\x6b\xbe\x17\x97\xec\x3c\x66\x40\x5a\x39\x10\x70\x25\x08\x60\x06\x34\xf5\x6e\x00\xc1\x59\xf0\x48\x3b\xa0\x66\x0e\x41\x4c\x72\xd8\xf3\xb2\x18\xd4\x7a\xe4\x7f\x1a\xde\xbd\xb8\x68\x67\x7c\xe5\x5f\x5c\xb4\x2b\x69\x91\xde\xc5\x29\x1f\xef\xf8\x97\xe4\xb1\x95\x8b\xc5\x97\xec\xb1\x19\x7f\xf8\x17\x87\xed\x4a\xdc\xb8\x97\xac\xb0\x19\xef\x99\x03\xfd\x48\x9d\x93\x0c\x6a\x1d\x97\x21\xc4\x2b\x66\xdc\x07\xd4\x74\x64\x4f\x0e\xf4\xb0\x5c\x2b\x08\x00\x07\xc0\x81\x3b\x13\xb1\xec\xc5\x81\x3b\x5d\x0b\xd2\x59\x32\xc0\xce\xb8\xbd\x1f\xe8\xe6\xe5\x32\x78\xa8\x9c\x88\x62\x2f\x69\x63\xd3\x85\xb1\xf6\x01\x5f\xbd\xa4\x77\x98\x60\xe3\xa3\xfe\xe2\xc3\x5d\xb9\x12\x7d\xc9\x30\x5b\xf1\x08\x7e\x57\x46\xbc\x2d\xcf\x95\x2c\xa4\x33\x0e\xec\x2f\x39\x61\x2b\x57\x99\x2f\x8e\xda\x95\xab\xcc\x77\x15\x72\x7b\xe0\x82\x75\x40\x4d\x32\xbb\x66\x12\xc1\x9e\x97\xd3\xa0\x3a\x00\x5f\xc5\x1d\x3b\x9b\xe9\xe1\x8e\x5d\xb9\x66\x7c\xc9\x13\x9b\x89\x3f\xf6\xe2\x8e\x9d\x71\x3c\x3a\x10\xff\x73\x83\xac\x38\x7b\xef\xa5\x24\x52\x29\x5d\x39\x5e\x7e\xfa\xd4\xcd\x3b\x7f\x50\x0e\x50\x6b\x55\xdd\xbe\xce\x82\xd3\x74\x25\x67\xed\xca\x35\xe3\x81\xd4\xa2\xc9\x4a\x29\xa6\x2a\xae\xcd\x2f\x99\x64\xf3\x34\x91\x71\x86\xc7\xdd\xfd\xc5\x75\xbb\xfa\xcc\x60\xd7\xed\x74\xfd\xfd\x51\xcb\x98\xdc\x71\x52\xab\x5c\x7f\xdf\x6a\x19\x4d\x9d\x72\xde\xce\xd3\x04\x58\x3d\x8b\xd3\x10\x2d\x76\x43\xa2\x6a\x8e\x09\x38\x76\xe7\x69\x02\xac\xb0\x03\xf8\xe1\x52\x92\xa9\x94\xf0\x34\x39\xe0\xd9\x09\xcf\x1c\x2f\x27\x2f\xdd\xa2\xd4\x66\x16\x0f\xb8\x6f\xe7\x69\x1a\xab\xcc\x62\x8b\x77\xc2\x94\x16\xef\x84\x29\x1c\x1a\x97\xd2\x4c\xa5\x74\x99\xab\x54\x58\x67\x73\xc7\x49\xcb\x72\x99\xad\xa0\xe2\x9e\xa6\x55\x54\xd5\xd3\x88\xdb\x40\x31\x24\xf7\x6a\xcc\x4d\x0e\xe8\x47\xaa\x27\xff\x71\x91\x97\xc9\xb8\x82\x5a\x9b\x10\x54\x2f\x0e\xdd\xd5\x97\x9e\x0b\xb5\xf6\x34\x8e\x37\x46\xc5\xa9\x61\xc9\xfe\x3b\xa5\xe4\x65\x45\xe7\xed\x3b\xd0\xa5\x1b\x86\xe4\x84\x52\x2f\xae\xe0\xd5\x77\xa0\x4b\x49\xaa\x92\x33\x4a\x1d\x50\x6b\x5e\xa3\x5a\x31\x9d\x1e\xef\xb4\xe4\x35\x6a\x95\x0c\xf2\x02\xe8\xfa\xe1\x54\x63\x10\x9c\x33\xce\x37\x78\x4e\x77\xcf\xb7\xfb\x1a\xa0\xd0\xc3\x68\xd5\x49\xb9\x94\x4c\x01\x52\x8a\x1f\x70\x19\x54\xef\xd8\x5b\xac\x4e\x9a\x25\x6c\xc4\x0f\x28\x3a\xeb\x51\x11\xf3\xcc\x96\x6d\x61\x4e\xde\xfa\x3f\x83\x6f\xbc\x38\x9d\x67\x4b\xd3\xd5\x61\x42\xe6\x6c\xdd\xf3\x6c\x92\x54\xbc\xb9\x8c\x37\xd9\x4b\x8e\xdf\xf3\xd2\xdd\xd3\x99\x77\x7a\xf5\xe4\x21\x5e\x7d\x0f\xbc\x3a\xf4\xea\xd5\xe3\x92\x61\x7a\xb9\x06\x34\xe1\x89\xe5\x56\xc1\x77\xc4\x0b\x45\xf9\xf4\x4c\x72\xa9\xe0\x1b\xe3\x25\x5b\xf0\x3c\x3d\xfe\x01\x2b\x1d\xae\x05\x5a\xc2\xa2\xf5\x80\x4c\xeb\x8c\x7f\x6a\x5a\x87\x7b\x23\x83\x68\x22\x47\x1e\x48\x8b\xee\x7e\xcb\xb7\xbc\x92\xef\xe8\x40\x5a\x3a\x8e\x18\x78\x9a\xd7\xf6\x07\x69\x14\xde\x4c\x28\x0b\x55\x72\x52\xa3\x03\x0a\x77\xfe\x5e\x8a\x07\x9a\xb0\x26\xe4\x62\x36\x3f\xd9\x93\x79\xdb\x81\xfe\x7d\x5a\x24\x2a\xb9\x54\x4a\xd9\xa8\x3b\xa1\x1d\x4b\xaf\x09\xd7\xf5\x9e\x64\x42\x3b\x96\x65\xa8\xd5\xa7\x85\x17\x8a\x74\x6c\xc7\x0e\xa4\xf1\xba\xa3\x0a\x09\x97\x9c\xb3\xe6\xc5\xf9\x3b\x39\x6d\xcc\x8b\xf7\x77\x6d\xde\x4c\xa0\x4a\x5f\x16\x6c\xa8\xd2\x9b\xa5\x3e\x57\x15\x29\xd7\x78\xa9\x45\xf5\x18\x75\x55\x91\x97\x65\xe0\x62\xbf\xe2\x31\xa2\x75\x6f\x16\xf4\x4b\x1b\xad\x65\xde\xb1\xa0\x95\x6c\x64\xc4\xa7\xbc\x59\xec\xaf\xe9\xae\x36\x83\x5b\xff\xec\x86\x1e\x5e\x06\xf8\xea\x25\x7d\x95\xc2\x3e\x2f\x8b\x24\xf9\x98\xe7\x65\xe9\xc1\x8d\x47\x5b\xee\xaa\x66\x7c\x99\xe9\x2c\xb6\xba\xcb\x9d\x83\xcf\x7a\x67\xa1\x1b\x8f\xbc\x52\xbc\xd3\x0e\xd1\x2b\xa5\xf0\x72\x99\x68\x02\x2f\x3e\xe6\xc9\x39\x44\x0e\x78\x28\x6c\x99\xeb\xeb\xfe\xa3\xf6\x2b\x20\x55\x6a\xa6\xaf\x38\x71\x79\x79\x83\xc4\x85\x47\xbf\xe2\x9d\x9a\xf0\xa6\x47\x37\x1c\xd5\x97\x38\xb8\x9c\xe7\x65\xd6\x7d\x23\x9e\xb3\x71\x43\x39\xae\xf2\x32\xef\xbe\x11\xcf\xd9\xc8\xa1\x24\x57\x79\xe5\x80\x34\x51\xe6\x54\x72\x48\xaf\xdd\x2b\xc5\xdd\xc8\x32\xa3\xe2\xfa\xa3\x7b\x5b\x81\xaa\x7f\x99\x4f\x29\x6e\x5c\xed\xde\x56\x28\x6e\x5c\x8e\x0d\x29\x77\x21\xa9\x98\x71\xea\x2e\x24\xc7\x86\xf4\x46\x3c\x17\x8b\x52\xa5\xb9\xca\x44\x09\x7a\x71\x50\xcf\xcb\x1b\x22\x5d\x62\xd4\x6e\x5c\x90\x95\x7a\xed\x57\xbc\x23\x39\x9e\x07\xa5\x90\x73\xd5\x6a\x85\xb5\xe1\x22\xc5\x63\x94\xd5\x7a\x5e\xc6\xb0\x8d\x44\xb6\x9a\x63\x6d\x49\xe4\x65\x0c\xc3\x6c\x7d\x99\xc9\x2b\x92\x5c\xed\xc6\x29\x65\xc1\xca\xcb\xbb\x05\x6c\x0f\x56\x5d\xff\x66\xd4\x38\xbe\x2f\x6f\x17\x94\x30\xab\x76\x23\xe3\x46\xc8\x94\x68\x51\xd2\x3a\x36\xc8\x0f\x04\xc7\xf1\x95\x64\xcf\xd5\x5a\x8d\x85\x1d\xc2\x6a\x01\x09\x1d\x8a\x99\xf1\x03\x69\x78\x47\x80\x71\xc1\x32\xf7\x57\x34\xec\xea\x7b\xbb\x85\x71\xc1\xea\x01\xb1\x72\x66\xbf\x4a\x5a\x95\x63\x2b\xad\xbb\x85\xe4\x64\x11\x07\xd4\xca\x59\xe6\x62\x6b\xb0\xcc\xd4\x65\x6b\x90\x9c\xd9\xe1\x25\xe9\x73\x26\x48\xce\xbb\x5e\xc6\xe1\x1d\xc9\xcb\x38\x2c\xb7\x14\x17\xae\x76\x13\xc7\x0b\xe3\xb0\x9e\xc9\x5e\xec\xb1\x3f\x27\x02\x77\xb2\x9e\x69\x29\x71\x55\x5e\x23\xa0\x57\xf5\x30\x1d\x2f\x64\x65\xf9\xa3\x28\xdb\xb5\x9b\x90\xb8\xa1\x58\x26\xe3\x17\xb2\xb2\xea\xc6\x3e\xee\xdd\x64\xf5\x22\x54\xad\x73\x59\x8a\xba\x9d\x97\xf9\xf1\x8b\x50\xb5\xee\x66\xbd\x30\x92\x19\x9f\x8a\x5a\x8c\xac\x98\x45\xac\x19\x5f\x6a\x72\x2c\x55\x94\xbb\xaa\x5a\x91\xb3\x5e\x30\xc7\x8c\x5b\x39\xab\xab\x15\x39\x24\xad\xce\xcb\x8c\xfb\x85\x71\xd7\x68\x42\x8c\xbb\x9b\xe6\x7e\x64\x14\xac\xa6\x07\xd9\x4c\xe4\x65\x5e\x8d\xe5\xc3\x5a\xf1\x29\x7f\xa4\x6f\x3f\x78\xd5\x0a\x68\xe8\x5d\x33\x24\x5c\xf1\x2d\xfb\xc2\x4a\xde\xca\xa2\xf5\x53\xac\x33\xa2\xab\x7c\xf8\x4d\xa6\x89\x6f\xf4\x47\xa6\xd7\xd4\xe0\xb2\x1f\xa9\x5e\x93\x03\x36\x7e\xb7\xa3\x2d\xe1\x07\xf8\x39\xd9\x6b\x47\xcf\xf1\x91\xed\x35\xd9\x4a\xfa\x80\x5d\x01\xf7\x57\x80\x8a\xdf\x33\x5b\x34\x34\xff\x4f\x50\x19\x1b\x08\x3c\x74\x40\x05\x80\x2a\x7f\xed\x6e\xe2\xec\x47\xbb\x04\xb0\x1f\xf1\x56\xa1\xbd\xd9\x81\x7f\x78\x74\xa6\xbe\xb4\x75\xff\x70\xe9\x4c\x03\xa5\xeb\x87\x4f\x67\x1a\x1c\x7b\x3f\x9c\x3a\xd3\x20\xd4\xea\x01\x89\x81\xb7\xdc\x90\xa2\xc5\x4f\x8c\xd2\x0e\xa8\xf1\x62\xa5\x72\x40\x45\x3f\xc5\x38\xf1\x23\xa1\x6d\xea\x6c\xb5\x3f\x1c\x44\x53\x27\xba\xc8\xe7\x94\xb6\x83\xcb\xd3\x0f\x17\xd1\x34\xd1\x8a\x1e\xf0\x26\xd4\x51\x34\xb4\xc9\x7b\x11\xdd\xd0\x78\x7b\xac\x91\x22\xb4\xf5\xf4\xd7\xd0\x8f\x00\xbb\x01\x6a\xbc\x9c\xf9\x3f\xa7\xcb\x9d\x1c\xd6\x3e\xf2\xe5\xa6\x86\x27\xe0\x01\x33\x81\x82\xe3\xad\x82\x67\x72\x61\xf5\x39\x9d\xee\x20\x60\xdf\x01\x15\x66\x1b\x2e\x77\x40\xc5\xcf\xe4\x50\x7a\x40\xc5\x2e\x65\x13\xfe\x91\x7c\x37\x35\xdc\x36\x0e\xa8\x90\xe0\x88\xb6\x0f\x2f\xd8\xd4\x31\x8d\xfb\x70\x83\x4d\x1d\x15\xc5\x17\x7e\xb0\x23\xe6\x8a\x9c\x27\xe5\xdf\x1b\xef\xf3\x2d\x99\x23\x72\xd4\xa4\xb4\x19\x7f\x5d\x26\xbb\xc1\x88\x66\x37\x71\xb5\x03\x61\xc5\xef\x7b\x8f\x3e\xea\xbe\xb0\xc3\xe2\x3f\x1c\x70\xd3\xa8\x7f\x6f\x89\xce\x38\x3d\x7a\x82\x89\x72\xd3\x71\xc0\x41\x68\x35\x4f\x24\xb1\xce\x7a\xd0\x1c\x01\xf0\x08\xfc\x7f\xc0\x9b\x25\x8a\xb7\x04\x9d\x0d\xfc\x25\x4c\x22\xc1\x04\x0e\xf8\x12\xb5\xd4\x98\x22\xde\x32\xfe\x50\xc3\x41\xc0\x0a\xbd\x22\xc4\xb8\x43\x86\x1c\x30\x89\xd6\xaf\x61\x30\x8b\x8c\xea\x34\x58\x88\xcf\x1f\x6f\x35\xde\x6c\xfc\x6d\x44\x05\xad\x2d\xde\x12\x73\xd9\x93\xd3\x44\xdc\x83\xd4\xee\x07\x24\xca\xdd\x15\x6f\x35\xde\x36\xa3\x1b\x37\xed\xc6\xc7\x9b\xbc\x07\xf1\x96\x50\xe4\x46\x1c\x25\x5c\x4e\xbd\xb4\x78\xfb\x23\xae\x76\xf4\x4a\xc8\x8e\xcd\xf8\x47\xce\xe5\x34\x8a\x17\x94\xb8\xe9\xb3\xe5\x78\xab\xf1\x76\x73\x2f\x69\xe2\xd3\x20\x23\xc8\x87\xa3\x74\xaa\x2d\x86\x20\xe2\xae\x2d\x66\x52\xc4\x3d\x92\xd7\x88\x23\xf7\xc0\x40\xf4\xc3\x91\x3a\x8d\xc0\xdf\x06\x71\xb7\x98\x49\x88\xfb\x8a\x21\x88\xb8\x1b\x39\x10\xbf\x3b\x42\xaf\xa7\xf8\xf8\x25\xe0\x62\xf4\xf9\x07\x4f\x8d\xb7\xca\x07\x90\x2a\xab\x4f\xae\xe8\x56\x8d\xde\x8d\xb0\xe6\x23\xd6\x17\xe2\x9e\x31\x40\x11\xb7\xe5\xc7\x87\x4b\x77\x1a\x97\xc9\xb7\x91\x6a\xa7\xcc\x00\x3b\xe9\x12\xe2\xe3\xa1\x6e\x54\x0f\x81\x78\xdf\xf9\xef\x63\x11\xf7\x30\xbb\xe2\x3a\x60\xe4\x3f\x50\xcc\xac\xcf\xe8\x33\xcc\x3b\x70\x92\xf0\xd9\x44\x1a\x3c\x20\xf8\xbc\xa2\xe6\x8f\x60\x94\x06\x89\x30\x9d\xaf\x00\xb5\xbe\x39\x46\x04\xfd\xfe\xcd\x95\xe8\xb7\x21\xf6\x3e\x1c\xd3\xd3\xe8\x31\xb1\x1b\x66\xd6\x97\xc1\xce\x5c\x79\x7d\x45\xbf\xb5\x5c\xee\x15\x99\x80\xda\x5f\xbb\x0b\xdc\x88\xb7\x62\x66\xd7\x1f\x28\xfa\xcd\xb1\xdc\xd0\x6f\x8b\xb9\xda\xac\xef\x15\x6f\x7f\x08\xba\x18\x02\xfc\xca\x72\xa0\x3b\xbf\x4c\x09\x30\x91\xb8\xa5\x1a\xcc\x10\xec\x65\xb0\x90\x75\xa1\x19\x74\x0c\xf8\x6e\xb0\xb1\xdc\xc3\x60\x17\x8a\x5e\xf1\x5f\x82\xeb\xd5\xa8\x19\xe1\x9c\x96\x41\xa2\xd6\xe5\x00\x45\xbf\xcd\x8b\xd2\xa1\xdf\x75\x45\x27\xc1\xe7\x19\xed\xbe\x04\x6f\x0c\xf0\x47\x42\x92\xf8\x98\xfc\x16\x51\x33\x69\x1d\x5a\x0b\x50\xc2\x6a\xa4\x7f\x26\x06\xf8\xf0\xee\x3f\x8c\x61\x1a\x14\xf3\x6e\xa6\x48\x92\x8e\xf7\xb1\x02\x64\x32\x66\xb4\x43\x24\xe8\xea\xc9\x80\xb8\x51\xe6\x7f\xa4\x28\x4f\x33\x5f\x51\xf3\x22\x10\xaf\xa7\x0a\xe2\xc6\x7f\xe7\x23\x58\x40\x9a\x98\x30\x7c\x44\x0b\x48\xb5\xb5\x78\xfb\x32\x73\x9e\x0c\x88\x7b\xfc\xbd\xfd\x88\xa2\xef\xb7\xc4\x0d\xe6\x4e\xe3\x80\xe9\x7f\x27\x05\x6e\x91\x5a\x89\x25\x72\x2a\x12\x8b\x05\xae\x91\x5a\x8f\x89\x24\x4e\x7b\xf2\xb6\xa6\x23\xb9\xb3\x85\xa4\xbc\x38\x0e\xdb\x88\xff\x92\xf6\xca\x0c\x98\x90\x85\x95\xc0\x4f\x07\xbc\xff\x77\x0e\xa4\x2b\xa9\xd4\x72\x89\x86\x1e\xba\x11\x35\x13\x1b\xff\xaf\x93\x3f\x56\x21\x6a\x16\x71\x57\x53\x15\x49\x12\x9c\x23\xe9\x80\x89\x78\x96\x6e\x48\xc4\x3d\x5b\xcc\x86\x88\x7b\xf6\x40\x76\x02\x8d\x76\xf3\x27\xd9\xf1\x24\x1b\xbe\x7e\x44\x54\x38\x22\xd4\xdd\x40\x38\x63\x32\xfa\x11\x53\x21\xa7\xb5\x02\x5c\x24\x6e\xf1\xa2\x88\xb8\xed\x4b\x75\x40\x31\xb3\xda\xa3\xcf\x0f\xb3\x11\xed\xbe\x24\x09\x8a\xff\x0a\xd9\x63\xdb\x4a\xd2\xf8\x3f\x4e\x3f\x9c\x18\xc1\x3b\xb3\xe1\x48\xf7\xe6\xe5\x83\x98\xd5\xc3\x74\x33\xd8\x79\x17\xcb\x1f\xd2\x44\xcc\x69\xcc\x19\xa4\x07\x9a\x66\xb1\xc3\xc4\xfd\x57\x95\x98\x59\x33\xb6\x93\x46\xa2\xad\x1e\x6f\x97\xb8\xd7\x15\x35\xb3\x33\xfb\xeb\xe4\x26\xe3\x45\x31\x48\x3a\x85\x16\x1f\x6b\x7d\x67\x8b\xaa\x7e\x84\xd9\x8f\x3e\x23\x9c\xcd\x62\xb1\x66\x9a\x81\x93\xba\x78\x4c\xd6\x2a\x7e\x44\xa1\x48\xad\x79\xea\x06\x3b\xef\x66\x92\x24\x72\xa5\xcd\xbf\x0e\x48\x3a\x24\x8b\xdf\x11\x69\x40\xe2\xe3\x41\xf4\x58\xcf\x86\x33\x0d\x79\x8f\xa0\x8c\x17\xa9\xb5\x2b\xde\xc2\xbc\xaf\xe8\xd5\xfe\xdf\x45\x28\xc9\xe9\x66\xec\x71\x87\xe9\xd7\xdb\xba\x61\xfa\x8d\x79\xb6\x70\xf6\x72\x93\x4c\xa3\x4d\x6f\x28\x06\x3b\xef\x65\xce\x30\x10\xce\x97\x37\x32\x43\xf4\xdb\x83\x2f\x3a\xd9\xc6\xa8\x51\x95\xf3\x2c\xc4\x7f\xe1\x57\x66\x23\xc3\x3b\xef\x19\x20\xd1\xb2\xcd\x28\xc8\x85\x37\x4b\xe0\x86\xe8\x77\x06\x63\x1c\x16\xce\x7f\xdd\x20\x8d\x48\x4c\x2c\x3b\xef\xa0\xdf\x01\xfd\xf6\x40\x86\xc8\x6e\xe1\xb7\xd0\xef\x18\x01\xb2\xf9\x0a\x14\x85\x7e\xc7\x0c\xb0\x20\x52\xdc\x2b\xd1\x6f\x5b\x26\x49\xd9\xaf\x9d\x4d\xdf\xff\xa9\x1a\x9d\xeb\xff\x97\xef\x73\x2b\xec\xec\x62\x1f\x31\x42\xd2\x88\x2d\x3d\x29\xfc\x46\xfa\xab\x77\xb1\xa7\x8d\x8f\xb5\xf6\x18\x06\x1d\x70\x93\xe1\x24\xba\x48\x78\xeb\x1a\x6f\x39\x85\x5c\xf1\x96\x8d\x4a\x8d\x01\x48\x70\x37\x57\x45\xd2\x13\xab\xa8\x0e\xe8\x54\x5b\xd3\xa0\x70\x3d\xa4\x3c\xb9\x04\x07\xbe\xcd\x07\xd4\x5c\x5c\xe6\x92\x64\x13\xec\xd1\x2e\x26\x7a\x6d\xae\x68\xc8\xb8\x1e\x20\x6b\xef\xe1\x4f\x6f\xbc\x73\xfc\xf7\x26\x92\x79\x34\xb4\x39\xa2\x19\xbc\xd9\x8a\x78\xd7\x4a\xee\x92\x69\x59\xbc\x7d\xfb\x42\x76\xbb\xcf\xce\x14\x19\x83\x8d\x6f\xcb\xee\x20\x25\x14\x0e\x1f\xc9\xc4\x52\xf6\xc6\x6c\x7f\x28\x8f\xa4\x72\xf8\xae\xf5\x61\xda\x9b\x48\x9e\xf1\x5d\xf7\x35\x89\x1d\x95\x95\x80\x53\x05\x1c\x01\xb3\x64\xc3\x29\x58\x8e\x60\x53\xe3\x2f\xec\x6f\x32\xce\xa3\xdf\x75\xa7\xa9\x1d\x7b\xc6\x63\x54\x05\xb7\xae\xa4\x71\x05\x3d\x05\xd6\xca\xe0\x0d\xaa\x82\xc7\xb1\x67\x0e\xf1\x9f\x82\x4d\x18\x45\xfc\x3e\xbf\xeb\xce\x2b\x13\xc1\x44\x72\x55\x05\x72\xc9\x3d\x05\xf4\x34\x73\x04\x39\x05\xf4\x34\x6f\x54\xe7\xf8\x80\xaa\xc0\xf1\x36\xb4\x4b\xff\xae\xbb\x4c\xf4\x9e\xf8\x7e\xaa\x40\xd7\x6e\x19\xa7\xce\x53\x80\x56\xe0\x14\xd0\xd3\x72\x73\x15\x9a\x65\x9b\xfb\x5d\x77\x9d\xba\xaa\xcc\xf8\x6c\xaa\xe0\x47\x28\x22\x39\x6a\x9e\x82\xbb\xb8\xeb\x39\xbb\x60\x4e\xff\xa5\x44\x01\x11\x91\x64\x70\xfb\x5d\xe7\x78\xe8\x29\xcc\xcd\x05\x0a\x7b\x91\xf1\xdb\x54\x81\x92\x12\x64\x5c\x30\x55\xf0\xc5\x17\xf4\xb4\x11\xfb\xee\x14\xac\xbf\x02\x56\xae\x5c\x2e\xc0\xf0\x1f\xe7\x4c\x15\xa0\xbe\xc3\x23\x53\x05\x3f\xa3\x43\xa1\xa7\x0d\xc7\xc1\x8c\xef\xe5\x77\xd6\x3e\xc5\x17\xf4\xb4\x2f\x47\x5b\x92\x75\xac\x0a\xb0\xa1\xc1\x25\xf3\xbb\x8e\x88\x8c\x3a\xe8\xe9\xb0\xce\x28\xcb\x4c\x56\x05\x58\x98\x66\x59\xc3\x9e\x82\x1b\x35\x06\xce\x9a\x2a\x90\xed\x5a\xc6\x5f\xf3\x14\xec\xe2\xc5\xae\xc5\x05\x0e\x6b\x23\xe3\x57\x15\x3c\x84\x8f\xd2\xb6\xe6\xbb\xee\x39\x15\x26\xf1\x14\xd0\xd3\x69\x55\x3f\x2e\x9a\xa7\x00\x37\xde\x53\x30\xa3\xe0\x76\x3f\xe8\xe9\x22\xa5\x53\xce\x32\x78\xa5\x80\x70\x5d\xda\xb3\x9e\x02\x6c\x04\x32\xfe\x9b\x2a\xd0\x0d\x5b\xc6\x69\xf3\x14\xdc\x97\x71\xac\xd1\xd3\x1b\x7b\xcb\x53\x40\x4f\x6f\xdb\x27\xe4\xda\xba\x0b\x96\x27\xb9\xd1\x53\x67\x5e\x3b\x05\xf4\xf4\x59\x4a\x46\x78\x0a\xe8\xe9\x6f\x35\xc2\x18\xd5\xfe\xff\x6c\x46\xfe\xff\xb9\xff\xdf\xff\xaf\xdf\xff\xfa\xcf\x7c\xfd\xd7\x7f\xfc\xe7\x38\x5c\xe6\x7f\xfd\xe7\xa3\x44\x7b\xe7\xa7\xfd\xd7\x7f\x1c\x1e\xf3\xc8\x74\xe3\xfc\xb0\xaa\x93\x8f\x36\x65\xba\xfc\x96\x0e\xf1\x11\xc1\x9e\x1f\x1c\x51\x54\x42\x55\x1b\x16\x35\x2f\x95\x55\xca\xe8\xfe\x54\x0b\x9b\x16\xf0\x57\xa8\x2a\xa1\x7e\xee\x6f\x15\xee\xfb\x51\x20\xfe\xff\x7c\x14\xfa\x2e\xe3\x17\xf9\x28\xd6\xdd\x7f\x3e\x85\x85\x95\xb5\xd1\x23\x1b\x89\xf3\xf3\x11\x89\xaa\xfd\xaf\xff\x7c\x2a\x63\xa8\x70\x1d\x49\xc6\x47\x77\x50\xe7\xa7\x50\x76\x7a\xd2\x68\xa3\x81\x6c\xd2\xcf\x3f\xba\x43\x39\x3f\x9b\xb2\xaa\xb2\x1f\x65\xb4\xd1\xc7\x29\x5b\x1a\x6d\x63\x1d\xa4\x73\x7e\x1a\xed\x36\xb7\x3b\x54\xdf\x99\xb4\xf3\xf3\x52\x76\xc6\xb6\x19\xc7\xd6\x2e\x27\x49\x45\xfa\xfc\x96\xfa\x87\xb7\x1c\xbe\x44\x8f\x6e\x90\xcf\x8f\x96\x56\x9a\xbc\xe7\xc7\x38\x7e\x1e\xef\xd9\x13\x3c\x1f\xe3\xf8\xc0\xbc\x7e\xe6\xe5\x95\xb9\xd6\x7f\xbe\x17\xdf\x49\x0b\xf0\xca\xd8\xea\xfc\x50\x26\x3d\x75\x42\x48\xe8\x81\x4c\xfb\xa8\x1a\x12\x79\xf3\xf4\xe0\x72\xdd\x6f\xa4\xd9\xa3\x9c\x7d\x76\x6e\xba\xe3\x4c\x98\xdf\xeb\xc1\xe5\xba\x56\xcc\x53\x91\x4f\x78\xc0\xbc\xcc\xa5\x2b\x4a\xb9\x43\xa7\x74\xc5\xb7\xda\x79\x4a\xda\x66\x1c\xca\x78\x38\x72\x56\x07\xa6\x8c\x2b\x19\x0f\xaf\xa4\x20\xa5\xf7\xe5\x52\x89\xca\xec\x7a\x0f\x7e\xf3\x70\x44\x64\x76\x1f\x76\xb4\x26\x9c\x2d\xd4\x2b\x87\x31\x1e\xa4\xc1\x59\x97\xcb\x85\xcb\x7a\x70\x39\x75\xe7\xe9\x16\xb3\xbf\xd7\x7e\x38\xe3\x81\xc2\x83\xd4\x22\xa8\x2d\x33\x19\x01\x79\xf8\x51\x4e\x6f\x5a\xf4\x9c\x6b\x1e\x47\x5b\xcf\xf8\x87\xf0\x40\x79\xa5\x5c\x87\x78\x1e\x48\x91\xae\xd2\x19\xb3\xcd\x6e\xc7\xf1\xce\x33\x3e\x06\x3c\x4c\xca\x07\xe5\x67\xf2\x78\xa0\x37\x3a\x71\x65\xd2\xb4\xf1\xf0\x50\xee\xef\x63\x16\x26\x66\x02\x68\x94\x0e\xf8\x44\xf9\x4b\x39\xdf\x8b\x95\xf1\xa0\xb3\xc4\xe5\xd2\x1e\xa5\xb2\xa9\x41\x1f\x71\xc0\x3b\xca\x37\xe5\xf4\xe6\x8e\x51\xdd\x1e\xd5\x6c\x2e\xef\x51\xee\x7a\x68\xf5\xb9\x8d\x5d\x68\xf3\x74\x8e\xc8\x58\xf0\xe9\x41\x18\xea\xa4\xc8\x79\xc5\x0a\x92\x0b\x24\x25\xcc\x8c\x33\xc9\x40\xf4\x80\x3d\x11\xb6\x57\x79\xd5\x28\xaf\xee\xcd\x2a\x2e\x7f\x5c\x4e\x3d\x24\x29\xcc\xab\xc5\xf7\x5c\xc1\x66\x3c\x9e\x33\x26\x29\x3c\x80\xd7\xcc\xfd\xea\xc6\xcb\xc5\xe9\x3b\x73\x27\x9d\xc9\x55\xc0\xc3\xa0\x3c\xbb\xfc\x89\xf2\x97\x72\xad\xc9\x1a\xd1\x2e\x67\xde\x4c\x38\xda\x03\xf6\x28\xa7\xdd\x31\x5d\xfe\x73\xf9\xe2\xfb\x49\xfd\xda\x1a\xf3\xd0\x29\xef\x2e\xff\x45\xf9\x47\x39\xf5\xac\x98\x67\xe5\xb4\x4b\xf9\x5a\xd5\xe5\x25\xca\x1b\xe5\xdd\xe5\x23\xca\x6f\xca\x97\xcb\x9f\x28\xd7\xb8\x30\xc4\xca\xeb\x8d\x79\x78\x99\x67\x4c\x07\x32\x29\xb2\x79\xe0\xea\x57\xa5\x0a\x37\xc6\x83\x82\xcb\x63\x91\x9f\xf7\x6b\x3a\x64\x33\x9a\x3a\x49\x1d\xf3\xfe\xb9\x37\xf8\x2a\x1f\xfe\xd8\x5c\xfe\xb9\x9c\xcc\x21\xe8\xc4\x0f\x38\xa3\x1c\x75\x03\xfc\x02\xe7\x62\x1e\x7c\xad\x37\x5c\xfe\xba\x9c\x6b\x73\x02\x71\x97\x29\xab\x5d\x1e\x32\x47\x80\xe4\xf2\xe9\x72\xae\xe9\x26\xa5\xab\x46\x29\x67\x56\x97\xf6\x28\x7d\xa8\xa3\x50\x7e\xff\x5c\xae\xd3\x46\x26\x07\x59\x99\x29\xda\x4c\x96\x13\x8b\xbe\x98\x22\xca\xcc\xc8\x5f\xb2\x94\x15\x9c\x2e\x79\xf8\x11\x2b\xb0\x53\x7e\xbb\x9e\x4c\x3d\x5c\x51\x97\x59\xa2\x9e\xc2\xf6\x15\x8b\xc8\x32\x91\xc6\x7a\xd0\xdd\x05\xad\xb6\xf8\x9a\x2b\xf4\x49\x1f\xdb\xed\x91\x5a\x0e\x1d\x09\xc2\x16\x87\x0d\xcd\xff\xbf\x3d\xce\xaf\x84\x98\x3a\x0f\x3f\xfd\xad\xd0\xd5\x19\xe5\x66\x78\x2c\x63\x99\xda\x83\xea\xc1\x48\x25\x36\x5b\xf0\x71\xe1\x81\xf2\xc9\x10\x7e\x51\x0f\x3e\xf5\x99\xe8\x92\x85\x44\x67\x7a\x70\x77\x1b\xed\x7e\xf1\xbd\xa2\x99\x25\x87\x59\x3d\xe0\xe7\x72\xdd\xdb\x64\x2e\x5b\x0a\x09\xc5\x78\x40\xbc\x49\x4c\x94\x25\x17\x18\x1e\x94\x62\x05\xb5\x43\xd9\x79\xb3\x34\x9b\x6d\x94\xe3\x83\xd7\x2d\xab\x55\x3d\xa0\xa1\x44\x0d\x55\xb7\xe7\xe1\x3c\xe8\x82\x88\xc3\xfa\x01\x47\x94\xa3\x1c\xd5\xc9\xbb\x12\x33\x85\x87\x4e\xb9\xbf\x47\x38\x57\xc2\xa1\x24\x87\x15\xab\x64\xaf\xe7\x41\x68\x8e\x20\x3a\x60\x7c\xbf\xfd\x7d\x57\xf9\x82\xc5\x9f\x87\x42\xf9\x72\xf9\x1b\xe5\x3a\xfa\x13\xf6\xaa\xee\x15\xed\x2e\xb7\x2b\x01\x75\xc0\xf8\x7e\xf9\x7b\xd7\x73\xbb\xff\x30\x9f\x89\x26\xe4\x80\xbf\x28\xff\x28\xa7\x9f\x0b\x26\x73\x1e\xd0\xc9\x8c\x28\xbf\xa3\xfc\xe5\x7b\xe6\xe1\x9e\x9b\x72\x12\x64\x3a\xf6\x52\xdd\xf7\xf2\x3c\xe0\xe6\xe5\xa8\x48\x95\x50\x24\x3c\xa0\xce\x9f\xf4\xff\x86\x94\x2a\x11\x48\x92\xe3\x11\x1d\x30\xbe\xbf\x99\xff\xe5\x7a\xee\x68\x17\x95\x2c\x16\x4f\x75\xdf\xb0\xbd\x4a\x44\x92\x34\x31\xef\xa8\x84\x1d\xe1\x21\xfd\xf7\x45\xcb\x01\xef\x28\xdf\x94\x53\xcf\x8e\x7e\x6e\xe6\x19\x8d\x68\xdd\xfb\x76\xfd\xdb\x1a\xad\xe4\xfa\x63\xde\xb6\x75\x3b\x99\xfa\x1f\x36\x7c\xe7\x81\xfa\xf3\x74\xb9\xd7\xeb\xe1\xa2\xb2\x14\xea\x7f\x10\x6a\xe7\x81\x0b\x21\xe3\xe1\x3b\x5d\x3f\xc6\x2f\x8e\xd8\x71\x40\xd7\xf3\xba\x9e\xca\x7c\xbe\xab\x44\x39\xf3\xb0\x96\xcb\xa3\x1e\x5d\x63\x2e\x12\xdf\x54\x52\xce\xf3\xa0\x75\x24\x02\xc6\x01\xff\xea\xff\xf8\xde\xe5\xb7\xe9\x8b\x1c\x8a\xb5\x34\xc6\xf5\x06\x9e\xbf\xe4\xa4\xb9\xae\x28\xdf\x51\xfe\xaa\x5c\x57\xcd\x07\xfc\x45\xf9\x87\x1a\x9e\xfa\x7f\xd3\xfd\x87\xcf\x38\x76\xc5\x01\xef\x28\x67\x3e\x07\xf5\xfc\x02\x9f\x7f\xe8\xe4\x8b\xd7\x5d\x37\x0a\x3c\x74\x34\x90\x8c\xf7\x0b\xba\xfb\x5c\xbf\xf1\xf3\x8b\xf5\x82\x5f\x39\x10\x41\x25\x4a\x06\x0f\xf4\xdf\xeb\x68\x3e\x56\x9d\x35\x7f\x91\x74\xa4\x92\x36\x9f\x07\xea\x5f\x6e\x37\xe8\x57\xc1\x33\xce\xf7\xc5\xe5\x51\xcf\xcd\x3a\x2e\xc6\xfb\xc5\xb8\x3e\x8f\x4b\xeb\xd8\x90\x8a\x3c\x88\x5e\x50\xcd\x1c\xb0\x44\x39\xd9\x98\x74\xbf\xd8\x38\x43\xf0\x70\xf3\x7d\x75\xf9\x2f\xca\x3f\xca\x07\xe5\x77\xd4\x73\xfb\x6e\xfc\x72\x79\x8f\xf2\x49\x79\x76\xf9\x1d\xe5\x2f\xe5\x4d\xe5\x3e\x56\x34\x1f\x2b\xec\xb5\xdc\x08\x25\xc1\x03\xf3\xd0\x18\x97\x8f\x1b\x8d\x10\x0d\xc9\x5e\xc6\x8d\x44\xf9\x3c\x50\x4f\x1d\x2e\xbf\xa3\x5c\x79\x8e\xd8\x1c\xb6\x10\xd9\x0d\x91\x7d\xca\x19\x6f\x66\x73\x75\x1e\xe8\x67\x75\xfd\x6c\x3e\xcf\x83\xf8\x30\x9b\xe4\x36\xcb\xf4\xbc\x15\xf0\x01\x0b\x85\x36\x95\xcf\x8e\x07\xfa\xd9\xf9\xde\x9b\xe4\xf3\xa0\x75\xc4\xbf\xf4\x80\x39\xca\x0b\x99\xb0\xe8\x67\x8d\xf5\xc2\xdc\x67\x11\x0a\xff\x80\x23\xca\x95\x99\x88\xec\x20\x8d\x18\x02\x3c\x3c\x94\xbb\x9e\xdb\xf3\x86\x19\xcd\x22\x00\x7d\x23\x92\x00\x0f\x9a\x67\x4c\xec\x5b\x6c\x3a\xce\x03\xfd\x9c\xd5\xe5\x25\xca\x99\xe7\xd9\x5d\xbe\xa3\x5c\xfc\x16\x77\xbd\xc6\x29\x8f\x87\x41\xfd\x93\xf2\xdb\xfd\x6f\x36\x99\xb9\x98\x87\xb6\x3d\x6f\xa1\xf4\x4e\x8c\x4b\x0a\x47\x1e\xc8\xdc\x55\xa8\xbf\x6f\xf7\x13\x0d\xdd\x62\x3f\xd3\xa6\x0f\x05\xe7\x01\xf5\x53\xa6\x7c\x44\x3f\x51\x1e\x55\x42\x10\xb5\x39\x96\xd7\xdd\x5a\x15\x0c\x31\xda\x1c\x51\x3f\x0a\x85\xda\x8c\x6f\x63\x97\x28\xa7\x3f\x7f\xe6\x9e\xff\x97\xed\x57\xc3\x19\x9e\x07\xb4\xd8\x95\xe6\xe7\x74\x77\x39\x87\xda\xf3\xa4\xe1\x84\xce\x03\x06\x21\xad\xbb\x3c\xbe\x27\xa5\x14\x21\xb6\x0f\xb8\xa2\xfc\xfe\x6f\x5d\x51\x9b\x73\x9b\x1d\xc8\x55\xfd\x7c\xef\x7a\x62\x9a\x38\x1b\xd8\xe1\xa2\xcd\x35\x8d\x46\xcb\xd3\x34\x58\x86\x15\xec\x80\x6d\xc4\x22\x2b\x45\x9b\x2b\xda\x5d\x6e\x77\x30\x4d\x77\x90\xf7\x0d\xba\x60\x4d\xde\xe6\x1d\xec\xc9\xe2\x1f\x9b\xef\x03\xc6\xf7\x46\x6b\x93\xeb\x0d\xfb\x6b\xf8\x6f\x27\x5b\x65\x1f\xb0\x44\x79\xfd\x6f\xdd\xf6\x01\x57\x94\x33\xae\x35\x5d\xfe\x44\xf9\x8f\xfa\xe9\xff\x0e\x72\xc5\x40\xb8\x12\x69\xa4\xe1\xd8\xcc\xc3\xc2\x94\x2b\xb9\xfc\x8d\x72\x9b\x78\xd1\x9f\x7d\x1b\x5d\x64\x20\x9c\x1c\x82\xbe\x91\x6b\x9a\x87\xca\xf7\xcc\xc3\xde\x9e\xe7\xcd\xfc\x63\xfb\x7a\xc0\x5f\x94\xdb\x24\x83\x7e\x3e\x41\x96\x0f\x6c\x82\xd3\x40\xc3\xc3\x58\x0f\x12\x33\x15\x73\xbc\x86\x6f\x31\x0f\x83\x72\xe6\xf3\x89\x7e\x3e\x88\x93\x6e\xb2\x79\xb6\xc7\xa5\xab\xf7\xb4\x08\xb3\xd4\x70\x10\xe6\x81\xef\x6b\x71\x79\x89\x72\xc6\x55\xe3\xfb\x11\xe5\x37\xe5\x8c\xf7\x8d\x75\x67\xdb\x51\x89\x84\xd1\xa6\xb7\x0b\x8d\x24\xcb\xa9\x12\xcb\xa1\x91\x65\x99\x07\x8d\x37\x9b\x9d\xbd\x21\x06\x5e\x74\xed\x28\xd1\x0e\x38\xa3\x7c\xf3\x3d\xeb\xf2\x0b\xfc\x41\x73\x54\xbb\xd7\xfd\x77\xb7\x28\x67\xdd\x07\xfd\xfc\x45\xbb\x3f\xb7\x9b\xa8\xdf\xa7\xd7\xf3\x60\xb3\x22\xfa\xf3\x2d\xd3\xd1\xe7\x79\x9e\xe0\xdb\x77\x7b\xbc\xe8\xa4\x6a\x37\x9e\x7f\x81\x9f\xa4\x2f\xae\xdd\x78\xfb\xc5\x3c\x7c\x88\x99\x61\xb6\xf8\xc5\x78\x3f\xd2\xfc\x61\x3c\xd1\xd6\xe5\xf9\xc7\x9d\xf5\x7c\x1f\xe5\x33\xca\x6f\xca\x97\xcb\x1f\x97\xb3\x1d\xc4\xf1\xfd\x80\x9f\xcb\x99\x1f\xf2\xde\xb5\x75\xed\xa8\x87\x63\x09\x06\x01\x07\xdc\x51\xfe\x50\xae\xf1\xae\x14\xe5\x89\xed\xe9\xa8\xd4\xc3\x5d\xb9\x1e\xf8\xbe\xb9\x3c\xbe\x27\xfb\xec\x22\xce\x6f\x8b\x3b\xa6\xf3\x40\x3f\x75\x4c\x6a\x78\x42\xf2\xc0\xba\xe8\x98\x77\xc0\x1e\xe5\xcc\x0f\xf8\xb0\x4a\xcc\x43\x81\xff\xe0\xb7\xdd\xd0\xa3\xf1\x80\x12\x1d\x7c\x5b\x35\xea\xc1\x5e\xb8\x62\x8b\xda\x56\x33\x5d\x90\x3f\x34\x2d\x82\xaa\xb6\xd5\xb9\x29\x68\xe4\x0e\x4d\x8b\x63\x49\xc3\x09\x8c\x07\xea\x81\xef\xad\xee\xed\x82\xdd\xc2\xea\x88\x7a\x2c\xe6\x51\x12\x9e\x7a\xfc\xbd\xf9\xcf\xc2\xd0\xa7\xe2\x12\xdb\x48\x0f\xca\x03\xf3\x0c\x3f\x5c\xdd\xfc\x99\x8c\xa1\xa7\x1e\xd7\x7f\x47\xfd\x88\x4f\x4c\xcb\x1a\x57\x6c\x3c\xb0\x2e\x6e\x77\xc4\xf7\x98\x02\x54\xdc\x3b\xdb\x1a\x31\x0f\x28\xa0\x2b\x56\xa3\x8d\x4c\x98\x7a\x60\x9b\x8b\x01\x47\x23\x2b\x25\x0f\x8b\x54\x99\xac\xcb\x8a\x79\xd3\xf9\x36\x2d\x8e\x37\x6d\xf9\x58\xdb\x48\x1a\x79\xca\x59\x77\x1f\x53\x9b\xef\xc8\x16\x11\xa5\x0e\xb8\xa2\xfc\x56\x79\x75\x3d\xe6\xf3\xbe\x23\x5b\x84\x33\x6c\xeb\xf6\x36\x77\xdd\x8b\xef\x91\x9b\x6b\x07\xbe\x11\x4a\x63\x61\x19\xdd\x70\x3b\xe1\x81\xfe\x1b\x4f\xb6\xb7\x59\x6b\x63\x2b\x3d\x8b\xcb\x2d\x97\xd7\x46\x2e\x13\x36\xaf\xad\xbd\xdd\x2e\xb1\x27\x6d\xcf\xd4\xc8\x52\xc8\x03\xf3\xc0\x36\x14\x8f\x0e\x1e\x98\x7f\xd3\xd1\x13\xf8\xa3\x78\x13\xe7\x7b\xea\x7f\x96\xe9\x42\x29\x0a\xcf\xf7\xcc\xdb\x13\xf3\xf3\x78\x7e\x26\xf3\xf3\xc6\x3c\xbf\x6c\xd7\xa6\xe9\xe2\x5d\x9e\x07\x1f\x17\xb1\x48\x6c\x24\xea\xe3\x81\x79\x30\xde\xbe\xb1\xbe\x62\xbc\x69\x11\x95\xac\x91\xf8\x8e\x07\xfa\x03\xbf\x5d\x9f\xe5\xc2\xfa\xd8\xe7\xe0\x79\xd7\xd6\x67\xb9\xb0\x3e\xed\x07\x56\x35\x1f\xfb\x82\x2f\x7d\xf0\x25\x12\xe2\x1e\xf0\x8d\x72\xc9\xa9\x9a\xf2\xff\x60\xfb\x45\xe6\x37\x1e\x58\x06\xc8\xf2\x0e\x36\x4a\xfa\xb7\x53\xdd\x74\x79\x8b\x72\x89\x07\x52\xfa\x1f\x70\x46\x39\xf5\x40\x7e\xe4\x68\xd3\x03\x62\x0c\x8f\xb8\x03\xd6\x28\x6f\x94\x6b\x3a\xc8\x8e\xc6\xc3\xa6\x7c\xba\xfc\x89\xf2\x97\x4c\xb1\x17\xe5\xde\x1e\x91\xf4\x2c\x55\x1c\x25\xda\x9d\x2c\x66\x6e\xe2\xea\x55\x52\xd7\xb7\xdb\x17\x96\xe7\x21\x51\x4f\x94\x3f\x51\x4e\xfd\xa0\x17\x69\xc1\x78\xd0\xb6\x03\x83\xf9\x46\x6a\x2f\x1e\x70\x94\x80\x5c\xef\xbc\xa3\xfe\x4d\xfd\xd5\xf5\x7b\x5b\x43\x6e\xaf\xf3\x3d\xe3\x2d\x66\x67\x64\xe4\x0a\x23\xec\x03\x3e\x51\x4e\x7f\xd8\x16\xdc\x25\xfa\x53\xdc\x1f\xd7\x5f\x2c\x4e\xee\x62\x73\x5e\xc4\xc9\x1d\x6c\xfd\x2e\x46\x8b\xe6\xfa\xbd\xee\x64\xed\x3a\xdf\x33\x6f\xd5\xa7\x13\x7b\x4f\x54\x92\xdb\x36\xfc\x23\x78\xc0\x58\x1c\xb1\x74\xc7\x29\xca\xce\x08\xab\xb2\x5d\xc6\xbf\x80\x07\xea\x47\xfc\xe0\x3b\xc0\xc3\x8f\x72\xe6\xb3\x99\x0c\x6c\x9b\x5e\xb1\x3c\x6a\xd8\x97\xeb\x01\xf2\x23\x89\x6d\xbb\xe3\x14\x15\x76\xe1\xb8\x16\x35\x6c\x9d\x79\xa0\xfe\xe9\xfa\x7d\x3a\xb1\xd9\xb1\x6d\x76\x1b\x36\xbb\x3c\xb8\x7c\xba\xfc\x89\x72\xe6\x1f\xb6\x82\x09\x2c\x0f\x90\x25\xdb\x7a\x4c\x56\x79\x18\x52\x5f\x5d\xcc\x67\x88\x19\x5b\x80\xae\xea\x7e\x76\x9f\xea\x6c\x0b\xb9\xaa\xe9\x6e\x98\xdd\xd8\x1c\xaf\x61\xbb\xd7\xb0\xbf\xe3\x01\x6b\x24\xd3\xe3\x88\x75\xc1\x6e\xae\x91\xfc\xad\xdd\x71\x7a\xb3\x89\x5c\xc3\x7e\xbd\x61\xe6\xc6\x03\xeb\xb5\xdc\x6e\xe0\x03\xc7\xb0\xd5\x4c\x8f\xd3\xec\xd5\xb6\x4a\xab\x99\x1e\x67\xb4\x3b\x11\x1b\x8d\x6d\x13\x79\x98\x78\x90\x25\x26\xf9\x57\x0f\x68\x3e\x30\xb1\xc2\x23\xbd\x5c\xbb\x97\x4f\x9f\x37\xee\xab\xab\xb9\x9f\x2b\xe6\x41\xd7\xed\xa7\x9c\xf5\x0a\xf1\x76\x5b\xbc\x35\xd3\xe3\x6d\xf1\x73\xdf\x58\xf3\x93\x53\xf4\x80\xbf\x28\xff\xc8\xf8\xcc\xfc\xdc\x41\x8f\xdc\xd6\xaf\x66\x3a\xda\x16\x3f\xf7\xc6\x26\x8c\x64\x73\xed\x8e\xe3\x10\x69\x7d\xd2\x6a\xa6\xa3\x1d\xf3\x80\xd8\x5b\x3e\x5e\xde\x71\xbc\xb9\xb9\xf5\x5c\xb8\xe6\x37\x72\xf6\xf0\x40\xbb\xdd\xdf\x47\x7f\xb6\xb3\x4f\x73\xcc\xbb\x9f\x98\x1f\xe5\xe4\x4d\x8d\xc8\x09\x8d\xfc\x37\x3c\x50\x0f\xc7\x9e\x3b\xc4\x15\x59\x68\x52\x43\x25\x78\xc0\x1a\xe5\xa8\x57\x5d\xff\x1b\xfc\x93\xd0\x44\xcd\xb7\x3e\x24\xa3\xe1\x01\xfc\x31\xfe\xbf\x81\xcf\xf8\xf0\x35\x02\x1f\x37\x52\xd2\xf0\xd0\xc9\x7b\xed\xfa\x83\x1f\x72\x8c\x69\xc4\x61\x68\x24\x9f\xe1\x21\xf3\x7d\x77\xf9\x88\xf2\x85\xd5\x5d\x72\xf9\x8e\x72\xe6\xc1\xf4\xfb\x8b\x75\xf9\x19\xdf\x4c\xbf\x21\x6e\x6f\x8e\x31\xcd\xb7\x3b\xf7\x2f\xf8\x00\xb7\x9b\x0d\x83\x82\x76\x5b\x39\xd7\xc8\x36\x73\xca\xa9\xe7\x0b\xfe\x20\x39\x9d\x5a\x32\x7e\x7e\x2b\xca\xa1\xc7\x64\x79\xf4\x05\xbe\x7d\x36\x3e\x2d\xd4\x1f\xc7\x9e\x9b\x00\x41\xcd\xb7\x32\x24\x9b\xe1\x81\x76\x4d\x17\x5f\xf0\xf3\xef\xb6\x45\x73\xd4\x13\xf5\xdf\xdf\x7f\x5b\x3a\xb7\xfb\x0b\x7e\xf2\x79\x5c\x5c\x97\xec\x90\xd7\x1b\x79\xbd\xf0\x09\x3e\xe0\x88\x72\xbc\x7d\xc0\xf3\x7d\x79\x1b\xb4\x2f\x3c\x01\xc8\x2a\xd6\x76\x1c\x87\xc8\x25\x93\x96\x8f\xfd\x3b\x8e\x43\xfb\xb2\xe5\x75\x77\xbb\xc6\xcf\x2d\xc3\x92\xd4\xc8\xfa\xd5\x76\x8a\xfe\x10\x7d\xb7\x11\x19\xf9\x80\x6f\x94\xff\x30\xda\xbd\x28\xf7\xfc\x90\x9d\xe5\x94\xd3\xff\x6c\x3c\x27\xff\x49\x6a\x89\xdb\xb5\x9d\x8d\x87\x3b\x93\x51\x1e\xe7\xb1\x03\xee\x28\xa7\x9f\xcb\xf5\x78\xbb\x46\x26\x93\xd4\x7c\x9c\xc6\x8e\x4c\x0f\xb8\xa8\x91\x40\xb1\xed\x1a\xfd\xac\x76\x9c\x60\x5f\xb1\xab\xf9\xff\xc6\xcd\xb0\xe5\xbf\x28\x42\xff\xb7\xed\xd7\x6e\x26\x83\x8d\xef\xd7\xea\xb0\xad\x1d\x97\x87\x1b\xef\xab\x86\xbb\x46\xdb\xb6\x15\x39\x0f\x95\xef\x45\xf6\x3b\x4e\x5d\xbb\x47\x3d\x2c\x43\x37\xd9\x6f\x3c\x2c\x96\x6f\x11\xb6\x2d\x01\xce\x83\xc8\x9b\xe8\x07\x6d\x0f\xdf\xe2\x90\xa1\xe1\x94\x53\xff\x30\xfa\x6e\xcc\xa4\x5b\x86\x5d\xee\x11\xd3\x8d\x91\x73\xcb\x5c\x0e\x93\xb6\x81\x07\x89\xcf\x3e\x5c\xbe\xa3\x1e\x0c\x8c\xb3\xfb\x1f\xb7\x80\x1b\x8b\xe0\xe5\x5b\x84\x1d\xa7\xab\xcd\xe9\xaa\x91\x11\xa7\x6d\x5b\xaf\x9c\x87\x42\x39\xdf\xcb\x2e\x91\x07\x2c\xd2\x8d\x46\x2b\xfa\xbf\xf0\xcb\x20\x65\x5b\xdb\xb6\x23\x39\x0f\x0f\xa9\xf5\x19\xd7\x32\xdb\x22\x0d\x41\x5a\xe8\xea\x1b\x79\x08\x78\xa0\xff\x6c\x2f\xd0\xfd\xf1\xb0\xf0\xa7\x71\x7f\x7c\x9a\xdf\xcb\xfd\xe7\x34\x80\x6e\x8e\x87\xf1\xdf\x96\xc8\x6d\xdf\x26\xe3\x7d\x83\x8e\x24\x9b\x68\x3b\x4e\x5d\x68\xdf\x4e\x39\xdf\xc7\xa9\x6b\x23\x7e\x1a\x4a\xb4\x03\xbe\x51\xae\x6d\x1f\x16\xe3\x07\x34\x5a\x6f\xc4\xb0\x4f\x9f\x3b\xc4\x15\xda\xba\x53\xee\xfa\x83\xfc\x2c\xc6\x46\x76\x7f\x7c\xfa\xd9\x9b\xd3\xcf\x88\x76\x7d\x7b\x6a\xa5\x5e\x23\x51\x5e\xdb\x21\xde\x48\x2d\x70\xca\xf9\xfe\x09\x36\xa4\x50\x82\xc9\x49\x63\xda\x7e\x02\xcf\x09\x05\xd8\x7c\x8a\xdd\xcf\x8a\xef\xed\x44\x50\x5d\x4f\xcc\xe7\xe3\xf9\x34\xfb\x7b\x83\x2c\x51\xde\x35\x9f\x62\xf7\x1b\xe3\x7a\x3d\x2e\xd7\xf3\x46\x3d\xaf\xeb\xe9\x51\xbe\xa2\xfc\xa5\x9c\x79\x0b\xf1\xb6\x2d\xde\xf0\x70\x69\xdb\x4a\xff\x46\xcc\xfd\x53\x3e\x5c\x3e\xa3\x9c\x79\xab\x51\x7e\x47\xf9\x83\x73\x84\xeb\x09\x36\xf7\xc3\x1d\x03\xa5\xdb\x01\x47\x94\x2f\xca\x5d\xcf\x1d\xdf\xe3\xdd\x80\x12\xad\x61\xa2\xc2\x03\xf8\x63\x76\xf9\x0b\x3a\xfd\x41\xa7\x83\x63\x46\xd8\xa4\x34\xdb\xa4\x2c\x22\x16\xb6\x50\xea\x35\x2b\xf5\x1a\xbe\x42\x6d\x87\x38\x44\x8b\x97\xd6\xe0\x78\xb0\xe3\x16\xd0\xca\xbb\x46\x10\xea\x03\xbe\x51\xfe\xf1\x3d\xe3\x8a\x53\xac\x95\x77\x8b\x90\x7b\x8d\xc0\xf5\x3c\x3c\x94\x9f\x7a\x7a\x58\xb7\x74\x5b\xb7\x2c\x9c\x1d\x7a\xd8\xfc\x75\xdb\xfc\xd9\x01\xaa\x87\xd5\xdf\x79\x48\x94\xfb\x7b\xf0\xb9\x5b\x49\xd7\x50\xd2\xf5\xb0\x7b\x39\x0f\xf8\x73\x89\x5e\x3a\xb1\xe3\x79\x00\x6f\x27\xf5\x24\xe8\xab\x13\xea\x3d\x2d\x6e\xa1\x3a\xd1\xdd\x79\x10\x3e\x13\x51\xb8\x13\xbb\x9d\x87\x9b\x72\xd7\x73\x3f\x51\x4e\xff\xab\xfb\x73\x47\xfd\x88\x25\x62\xfa\xf6\x99\x39\xae\x77\xe2\xab\x9f\x76\x97\xcb\xef\x28\xd7\xb6\x92\xa0\x6c\x7d\xfa\xb8\x7b\x1e\x5c\xff\xa4\x7c\xc5\xf7\xf0\x13\x8e\x9d\x07\x74\xbb\xd9\x1e\xae\xcd\xed\xde\xd1\x2e\xdb\x41\x99\x26\x1f\x70\x7b\xbc\x19\x3e\x49\x5c\xdc\x03\x46\xbb\xc8\x9d\xda\x99\x87\xb2\x3c\xff\x1c\x83\x17\x21\xc1\x0e\xf8\x46\xf9\x8f\xf2\xea\x72\xf7\xa7\x78\x1d\x07\xfd\x2c\xdb\xeb\x5b\xb6\xcb\x5d\xff\x8e\xfa\xb9\x95\xc1\x75\xb2\x4f\x1f\x83\xcf\x03\xe3\x35\xfe\xd4\xe9\x75\x21\x0e\x42\x43\xd9\xd7\xa7\xc5\xff\x79\xf8\x28\x67\xbc\x35\xe6\xad\x7a\xde\x16\xfd\xaf\x6c\x3b\xce\x83\xe8\x8b\x5b\xab\x3e\x2b\xdb\xa3\x6e\xbb\xa6\x46\x4c\xcc\x3e\x7d\x0c\x3e\x0f\x13\xaf\xa8\xec\xf2\x3b\xca\x1f\xca\xe9\x4f\x5b\xee\x67\x0b\x2f\x2a\xfa\xdf\x02\xcf\x71\x41\x5e\xc4\xa3\x3c\x60\x8e\x72\xad\x4b\xd3\x75\x49\x0f\xe5\x63\x27\x38\xf9\x29\x67\x5c\x3e\x36\x77\xb4\x90\xa7\x1e\xb7\xbb\x7b\x94\x8b\x4f\x36\xb9\xce\xf4\xe9\x5b\xe1\xf3\xf0\xa3\x9c\xfa\x7b\xd0\x91\x7d\x64\x89\x55\xd8\xc3\x36\xf5\x3c\xa4\xff\xfa\x73\x3c\x3d\x60\x8e\x72\xf1\x13\xa2\x6a\xf5\xd9\x63\xbc\xdc\xfe\x36\x94\x95\x7d\xf6\x98\x67\x3b\x3c\xb6\xf2\x3f\xb0\xfd\xea\x04\x0d\xe7\x81\xe5\xe9\xb0\x89\x11\xcb\x80\xbb\x5d\x23\xec\x5e\x47\x15\xca\x83\xd8\xd3\x34\x7a\x8d\x98\x0e\xfc\x9b\x1c\xfa\xe2\x80\x6f\x94\x83\xbe\x83\x65\x9e\x51\xff\xf4\x32\x9b\x3c\x66\x90\xe5\x64\x77\xc9\xa9\xb1\x13\xce\x9b\x07\xa6\xaf\x77\x97\xd7\x28\x67\x79\xa6\xeb\x09\x32\xc0\xa6\xaa\x35\xf7\x73\x06\x59\x5a\xe9\xc9\x6d\x5f\x27\xea\x36\x0f\xf8\xff\x9a\x0c\xd6\x74\x3d\x0b\x31\x46\xe8\xad\x03\x8e\x28\x07\xed\x26\xfd\xb4\x6d\xdc\x79\xd0\x36\x74\x9a\xfd\xad\xb5\xa3\xfc\xa1\x9c\x76\xef\x69\xf2\xbb\xd9\xd6\x34\x93\xc1\x1d\xf5\xa0\x0c\x6d\x04\x6a\xe8\xa1\x0c\xed\x56\x86\x36\x62\x31\x75\x82\x46\xf3\x20\xb6\xd2\x13\xdf\xef\xe9\xf9\xd9\x9c\x7e\x70\xe6\x3c\xe0\x88\xf2\xc5\xf7\xc5\xe5\x77\x94\x6f\xbe\x9f\x2e\x7f\xa2\xdc\xf5\x77\x97\x9b\x0d\x6d\x1c\xa5\x7b\x7c\x1f\xe8\xbb\x39\x1d\x76\xb3\xb3\xbd\x7a\x94\xd3\xae\xc9\x63\xc7\xfc\x6c\x4e\xb1\x44\xd1\xe9\x73\x87\x18\xe0\xb6\xa0\x75\x93\xc7\x66\x9b\x78\x1e\x18\x97\xc5\xd5\x8e\x75\x44\x49\x6a\x5f\xfb\x4e\x70\x63\x1e\x30\x78\xb5\xd8\x78\x02\x3f\x51\x6e\xb6\x6e\x3c\x7f\xa7\xfb\x8f\x12\x73\x2d\x93\xd9\x1b\xec\x8f\x4b\xf2\xb5\x4a\x7c\xef\x79\x78\x3d\x0f\x66\x37\x6f\xb0\x15\x92\x1d\xb5\x6e\xba\x78\xa3\x3f\xaf\xfb\xd3\x98\xb7\x5f\xb0\x5d\x9f\xfe\x09\x67\xdf\x09\x6a\xcc\x83\xe8\x0e\xa7\xcd\x3e\x7f\xc1\xe6\x7e\x1c\x4b\x88\x1e\x70\xc0\x11\xe5\xc2\x2b\x5c\x18\x7a\xd8\x50\x76\xdb\x50\xb6\x6e\x7a\xf9\x82\x7d\x7f\x8e\x05\x61\x7c\xfe\x42\xcc\x70\xd9\xbe\x96\xfb\xe9\x6d\x4a\x27\x68\xef\xf9\x9e\x79\xf8\x82\x0f\xa0\x94\x6c\xd8\x80\xf6\x65\x73\xdb\xf3\x40\x39\x74\x41\x8c\x5b\x1e\x44\xbf\xc4\x6b\x3a\xe0\x1d\xe5\xe0\x21\xfd\x5f\x97\xf1\x61\x61\x33\xd4\x08\x5a\x7e\xc0\xcf\xe5\x9b\x7e\x42\xef\x2b\x71\xac\x3a\x0f\x9a\x87\xa1\x5b\x90\xbe\xb2\xe9\x6b\x65\xb1\xd7\x46\xec\xef\xbe\x72\xf4\x27\xb3\x4d\xc1\x93\xf6\x80\x6f\x94\xe3\x41\x0d\x9e\xaf\x6c\x7c\xb3\x41\xfc\xc2\x67\xbb\x13\x81\x95\x07\xea\x41\x6c\x13\x6e\x95\x07\xea\xc9\xd4\x53\x6e\xf7\xa7\xb0\x8e\xa3\xf8\x7b\x8e\x97\xe7\x61\x50\x4e\xff\x6b\xcc\x4f\x85\xdd\x0f\xf0\x61\x55\xcf\xff\xc2\x76\xa7\x61\x8e\x7c\xc0\x5f\x94\x7f\x94\xd3\x6e\x8b\xfe\x10\xb7\xa4\x11\x7d\xba\x2f\xdf\x2e\x9f\x87\xf6\x5f\xff\x91\xaf\x8b\x6d\xe2\x6a\xb1\x8e\xd8\xee\xb4\x01\x1f\x5e\x21\x86\x97\xc4\x70\xbe\x2e\xc4\xe1\x0a\x71\x4b\xf0\xce\xf3\xbd\xeb\x89\x75\x24\xda\x46\x23\x40\x74\x5f\x6d\x47\xbb\x44\xc3\xf0\x36\x77\x35\x6f\x5f\x08\xac\x79\xca\xc5\x1f\x96\x6f\xaf\xbb\x95\xad\x8d\x50\xce\x7d\x85\x58\x5d\x11\xb1\x61\x36\x97\xef\x28\x67\xde\x8c\x9f\x3d\xd6\xbd\x7b\xdd\x57\x71\x79\x7c\xef\x79\x5e\xdd\xe5\xc6\xb7\xee\x00\x3e\xc6\xc3\xbe\x53\x94\x67\xe6\xc1\xdf\x9b\x3f\xdb\xf1\xa0\x79\x1b\xba\x46\xf4\x9f\x44\x92\x17\xb6\x80\x07\xdc\x51\xfe\xf0\x3d\xf5\x8c\xc0\x07\x3c\xae\x1b\x71\x6c\x3b\x41\x2b\x79\x58\x94\x37\x97\x3f\x51\x4e\xbb\x1c\x03\xd6\x30\xff\x41\x7b\x9b\xda\xf4\x7a\xcd\xe8\x8f\xae\x15\x4e\x7f\xa6\xcb\x7b\x94\x0f\xbe\xef\x2e\x5f\x51\x8e\xfb\x48\x8e\xef\x8d\x6f\xd3\xa6\xf8\xc5\xf5\x73\xac\x3d\x0f\x04\x08\xe0\x18\xb0\x66\xac\x0b\xf1\x2e\xaf\xab\xc6\xf7\x51\x4f\xf8\xae\xbb\xfe\x3b\xea\xb9\x99\x37\xf8\xf9\xb2\x33\xce\x79\x10\x9e\x10\xd7\xf5\x80\x5e\x2f\xef\x07\x50\x86\xf6\x35\x63\x1e\xec\x08\xe1\x6d\x62\x28\xa3\x3b\xa1\x2a\x4f\x39\xf5\xac\xc0\x2b\x1c\x31\xaf\xeb\xaf\xfc\x8d\x72\xd1\xd1\xd9\xae\xfd\x7b\xfb\x15\xfe\x1f\xe7\x01\x74\xe1\xf4\x10\xba\xed\x8e\x32\xfb\x54\x57\x5d\xfe\x44\xf9\xcb\xf7\xcb\xe5\xbf\x28\xa7\xf9\xc1\xf4\x2d\xef\x5e\x97\x6f\x6b\xa6\xd9\xe8\x0a\x36\xb1\x20\x27\x6f\xe3\x96\x6d\xb3\xce\x03\xed\x9a\x9c\xee\x40\x47\x99\x6c\xe7\xeb\x32\xd9\xdf\x31\x1d\xb7\x97\x99\x53\xc2\xba\x83\x4d\x78\x9b\x42\x24\x80\xbe\x6e\x6f\xbf\xd6\xed\xfe\x58\x0c\x58\xd7\x7e\x1e\x98\x56\x93\xf7\x0e\xb4\xdb\xa0\x1d\x21\x5d\xfa\xda\x81\x46\x64\xa0\xb8\xae\x19\xe5\x77\x94\x6f\xca\x5d\xbf\x4f\xc3\x0b\x4f\xc2\xb6\x4c\x4e\x3b\xc8\x66\x1f\x7e\x7a\xbe\x9f\x2e\xff\x45\xf9\xa7\xf2\xc5\x32\xef\xe8\xff\x76\x78\x80\xe4\x76\x83\x3d\xa1\xcb\x6f\x04\x28\x3b\x60\xd4\x03\xdb\x5d\x66\xa3\x4f\x88\x07\xd2\x49\x5c\x97\xe7\xe1\xb1\xf8\x47\xa9\x9f\x1a\xa9\x48\xfb\x7a\x82\x1d\xfb\x36\x88\xd8\x9d\x07\x7c\xa3\x9c\xfa\x4d\x66\x4f\xb0\x5d\x65\x83\xc8\xce\xb1\x78\xc0\x1e\xe5\x84\xdc\xb0\x98\x79\x42\x9c\x90\x14\xb2\x11\x54\xb3\xaf\x37\xd6\xfd\x65\xdd\x93\xe7\xed\x0d\xf2\xb6\x92\xc5\xdb\x11\x22\x22\xf2\x40\x7f\x8c\xcf\x6f\x90\x9f\x6f\x89\x96\xf1\xf6\x8d\xf9\x79\x3d\x3f\xc6\xab\x9f\xb7\x29\xc4\x14\x4c\x6d\x19\x9f\x7f\x21\x66\x7e\x88\x99\xe4\xf9\xfc\xc5\xfa\xfe\xbc\xbe\xc6\x9f\x5f\xb4\x8b\x27\x52\xc3\xb4\xff\x80\x3d\xca\x99\x87\xc9\xfa\xc6\xf6\x68\x59\xa9\x81\x97\xdc\x01\x7b\x94\xd3\x2e\xa7\xb7\xf5\xc5\x78\xb5\x4f\x3a\xe5\xd4\xff\x45\xbb\x9f\xc7\xbb\x5c\x4f\xd0\x23\x4a\x8a\xff\x2f\x63\xdf\x72\x35\x3d\x88\x6b\x9b\x4a\x87\x60\x63\x03\xd2\xa4\x73\x01\xdb\x95\x7f\x08\x77\x69\x3f\xfe\xbe\xb3\xf3\xcd\xf0\x5e\x2e\x0a\x0b\x21\x84\xd0\x43\x39\x4e\x86\x9d\x0d\x06\x9d\x0d\xda\xc1\x4b\x93\xb1\x14\xe5\x59\x8d\x8b\xef\x0f\xe1\xc3\xf8\x24\x1e\xc2\x5f\xe3\x1f\xfb\x11\x2e\xf5\x62\x1d\x4a\xf2\x71\xea\x7f\xb7\x71\x6e\x57\x4c\xa2\x53\x8f\x61\x9c\xb9\x58\x4e\x8d\x47\xdb\xd8\x3a\xb0\x6d\x0c\x5e\xce\x8e\x75\x6a\xfd\x2e\x5a\x89\x06\x2f\x67\xc7\x3a\xd3\x38\xf8\x64\x1c\x54\x83\xd6\xa9\xf5\xbb\x58\x80\x60\x68\x9b\x5c\xcd\x78\x13\x2e\x3a\x34\x8f\xbf\x69\xfc\xb4\x12\xad\x26\x71\x4f\x6f\x84\x73\x68\xdb\x58\x4d\xf4\x97\x13\xc2\xd0\xf6\xb0\x9a\x8e\x0d\xab\x89\xfe\xb4\xfa\x2c\xab\x6b\x8b\xea\xda\x38\xb8\x0d\x2c\x5b\x65\xe8\xa5\x50\xf8\x14\xae\xfe\x19\x2a\x34\x8e\xa1\xf7\x3d\x9e\x4b\xe3\xa1\x3a\x65\x67\x83\x6a\x30\xb9\x0b\xf9\x9c\xbe\x07\x6c\x40\x9e\x9f\x3c\xee\x2e\x5b\x59\x9c\x3a\x92\x97\x98\x83\x79\xfa\xd8\x80\xbc\xa2\xaf\xea\x58\xdd\x74\xa3\x33\xc0\x60\x9c\xe2\x60\xde\x37\x36\xf8\xbf\xe4\xf3\x65\xeb\x88\x52\xb0\x0d\xe6\x7f\x1f\xcc\x7d\xc6\x06\x32\xa9\xf0\xf2\x71\x2c\xab\x5f\x4a\x34\x36\x0e\xaa\xb9\xcc\xb4\xc5\x06\xe5\x83\xfa\xb1\x9a\xa5\x74\x53\x43\xf2\x67\xc9\x35\x7b\x2c\xa9\x47\xa7\xfb\x91\x1c\x60\x46\xa2\x76\x34\xca\xf9\x65\x35\xc8\x79\x7d\x4e\xf1\xb9\xe2\x2f\x07\x33\xfa\xd4\xfb\xa4\xa7\xd5\x23\x66\xa0\x69\x07\x33\xee\x8c\x65\x35\x82\xb7\xf0\xe7\x38\x29\x57\x57\x98\xcf\x99\x03\x7b\x30\xde\x79\xac\x94\x5a\xb3\xe0\xf4\xdc\x8e\x46\xb5\x8c\x77\xf4\x6c\xbc\xc4\x49\xcf\xf4\x3a\x4d\xae\x53\xd6\x7b\xad\xc7\x30\x9e\xc4\xc9\x3f\x29\x35\x77\x25\xe2\xfd\x0f\xde\x3e\x8d\xb5\x3c\xef\x8b\xf3\xce\xac\xeb\x63\x2d\xf3\x1b\x6b\x55\x1d\xbc\x65\xaa\xc7\x66\x9c\xff\x2b\x7c\x4b\x8d\x5b\xf4\x5d\x1b\x27\x8f\x01\xcb\xfb\xa3\x2e\xeb\x07\x7d\xbe\xeb\xf1\x31\x4e\x7a\x76\xfe\xef\xe3\x7e\x58\x13\xe9\x68\x43\xb8\xf9\x87\xbe\xc2\xe3\x34\x6e\x3e\x41\x4e\xdf\xa6\x7a\x9d\xf5\xf8\x1a\xe7\x77\x89\x9f\x15\xa2\x54\x8d\x49\xbc\x09\x4f\xe3\xa4\x3f\xe5\xf9\x7a\xcd\xcf\x2f\xf7\x77\xde\x6e\x8d\xf5\x5a\x3e\xf0\xf2\x7d\x9c\xf3\x2f\xd6\xaf\xf5\x7a\xb8\x74\x55\x53\x8a\xb8\xb1\x3e\x8b\x63\x46\x12\x8d\x93\xc6\x4c\x5e\xc9\xb3\x41\x76\xe1\x29\x61\x29\x92\xa8\x1a\xbf\xff\xa5\x35\x1b\xeb\x17\x62\x47\xd6\xe4\x19\xed\xe0\x67\xfc\xcc\x2e\xdc\x66\x06\x23\x1c\xeb\x71\x18\x67\x3a\x43\x6a\xf1\xbe\x0b\x1f\xba\x0b\x1f\x8d\xdb\xde\x3e\x34\x7e\x5e\x42\x9f\x83\x2e\xc0\x63\x5b\x1c\xef\x33\x98\x80\x90\xec\xbb\x4f\xfd\xef\x66\x8d\xd6\x83\xd5\xda\xeb\x71\x1b\x7f\x88\xab\x1f\x6d\x27\x9b\xc6\xfc\xc1\xc8\xc7\xb1\xcf\x6d\x9c\xd3\x29\x76\xdc\x4d\x5a\xf3\x6e\x64\x3b\x46\x38\xd6\x63\x37\xce\x71\xd2\x88\xba\x9b\xc7\xd3\x98\x2f\x8b\x97\x9b\xf5\x98\xc6\x37\xf1\x4e\x5c\xe2\x63\x43\xac\xb7\xe3\xd2\xf7\x36\x2d\xe3\xdd\x28\x9e\xc4\x76\x5b\xae\xc4\xd5\xf8\x11\xe7\xf7\x5e\x1e\xe7\x25\xfa\x50\x5c\xee\xcb\xe3\x84\xef\x70\x53\x75\xd3\x7a\x4c\xe3\x8b\x69\x26\xd9\xff\xa5\xed\x6d\x5f\x3c\x0d\xf0\xb2\xaf\x1e\xfd\x7e\x2e\xe2\x5d\xf8\x63\xfc\x25\xce\xf1\xfb\xf4\xbf\x2f\x25\xdd\x0a\x8d\x47\x7c\xa5\x3b\xf8\xc1\x48\xc6\xb1\x6f\x89\xc5\xcd\xbc\xc3\x83\x91\x8c\x63\xcb\xe7\xac\x1a\xcc\x99\x46\x7e\xdb\x36\xc2\x6f\x26\x31\x3a\x58\x56\x7b\xec\x5b\xdb\xe1\x66\xb2\xd8\xc1\x64\x6e\xf5\x18\xc6\x93\x78\x13\xfe\x1a\xff\x88\xf3\xbb\xbc\xcd\x6c\x6d\x33\xbc\x9c\x1d\x5b\x01\xc9\xd5\xe8\xfc\xdf\x29\xdc\xef\x3b\xeb\x2e\xe7\xc5\xdb\xcc\xd6\x36\xc3\x4b\xd8\xb1\x87\x8e\x25\x9b\x79\x1f\x07\x0b\xc3\xd7\xe3\x63\x9c\xe3\xa1\x75\x64\xcb\x17\xad\x1a\xd8\x06\x2e\xf1\xcf\x90\x9a\xbb\x87\xe8\x40\x6b\xf7\x1e\xfe\x5f\x66\xde\x3b\x2e\xf1\xcf\x94\x1c\xd8\x4c\x58\x37\x2e\x5a\x07\xf7\x94\x58\xdf\xca\xd5\x76\x89\x9f\xe5\x5b\x56\x0d\xf2\x0f\xb7\xdb\x3d\xfd\xbf\x4c\x6e\xa6\xbc\x70\x63\x4f\xff\xaf\x12\x7d\xf1\x52\x75\xec\x30\x3d\x83\xfc\xcf\x1a\xb3\xf5\xf8\x13\x4e\xb1\xcb\x84\x81\xf5\x78\x19\xe7\x3c\x8a\x9f\xc3\xf3\x1e\x4c\x7b\xe8\xf1\x28\x05\x45\x35\x48\x37\x6e\xf3\x0c\x28\x66\xe3\x26\xce\xef\xca\x34\x4e\x6b\x10\x53\x20\xd6\xe3\x36\xce\x2c\x6d\x54\x67\xb7\x42\x82\x86\x22\x8b\xc7\x4d\x6b\x87\x23\x88\x87\x22\x88\x07\xcb\xec\x0e\x3b\x15\x54\xe3\x22\xce\xf1\x2f\xaf\x97\xc5\x04\xd3\xb7\xe4\xd5\x92\x9a\xb5\x59\x9e\xe0\xb8\x79\xe9\xb3\x97\xe9\xcc\x10\x9f\x71\x8b\x0f\x6d\x05\xdf\x8c\x04\x1f\x8c\x34\x1c\x0c\xe0\x65\x43\x59\xe6\xf4\xbe\xbf\x97\xd6\xeb\x71\x6b\x5d\xdb\x1a\xbd\x37\x8f\xdf\xba\x3c\xdd\x3e\xe6\xa9\xfc\xff\xb8\xb5\xae\x1f\xcb\x19\xba\x72\x0f\x5d\x6e\x6e\x1f\xe7\x74\xb9\x3f\x74\x89\xb9\x1f\xcf\xfb\x43\xb9\xc1\xd4\xce\x63\xfb\x38\xc7\x7a\xfe\xf5\xbe\xfa\xd7\x71\x6e\x3f\xa2\x83\xc6\xf9\x78\xde\x1f\x65\xcf\x93\x7c\x7e\xb6\xc7\xc3\xc4\xb4\xb7\xe4\xb3\x7c\xe0\x06\xab\xf7\x17\x1e\xc2\x97\x71\xd2\x53\x7c\xfb\x7a\x5e\x98\x0f\xff\xf0\xf8\x7d\xfc\x53\xe4\xef\xa0\x2f\xec\xa0\xcf\x00\x1b\x4c\x96\x2c\x3e\x7f\xcd\x87\x4c\x48\x3f\x58\x91\x73\xec\x4f\x6a\xc1\x86\x33\x5c\x3b\x74\xd9\xba\x3f\xcf\x17\xd3\xd0\x1f\xb7\xe4\xc9\x27\xb5\x69\x7f\x4a\xc6\x3c\xd9\xbf\x7c\xe3\xaa\x81\xf5\xe8\xf1\x7f\x5e\x2f\x1f\xb3\x1a\xde\x92\xe7\xde\xc7\x15\x11\x3c\x74\xe9\xb9\x7f\xde\x4f\x7f\xdc\xd7\x74\xb9\xb9\x7f\x1e\xe7\x4f\xe3\xa4\x75\xd3\x91\xb9\x43\x91\xb9\x83\x3e\xa6\x83\x59\xe8\xd8\xe0\x78\x34\x4e\xef\xef\x5b\xfb\xbb\x2e\x3d\xb7\x8f\x8b\xac\x70\x5f\xef\x57\xff\x33\xe4\xd3\x56\x0d\x66\x78\xc7\x7a\x99\x4e\x0a\x34\x19\xd2\xdb\x0e\x8e\x7f\x32\x80\x97\x0d\x26\x74\xc5\xb1\x6d\xfa\xd2\x7f\xea\xd2\x7f\xf0\xb2\x72\x86\x8e\x6d\x33\x74\x6c\xe3\xa5\xe4\x8c\x93\xf3\x55\x0d\xac\x47\xe6\x93\x9e\x8e\xb4\x9d\x2a\x4b\x3e\xfa\x7d\xfd\xdf\xea\xd7\x0c\xb9\xa4\x4d\x05\xd6\x0e\x46\x38\xce\x90\x4b\x5a\x35\x20\xee\x79\x99\x38\xe3\xe2\xb2\xac\x06\xc8\xc1\xbb\xde\x7a\x0c\xe3\x7a\x9f\xb8\x5c\xb6\x27\x2f\xa7\xcf\xc1\x7a\x47\x33\xe4\x82\x5d\x0d\x68\xbb\xfd\xe4\xff\x32\xa3\x15\x1a\x7c\x7f\xf2\xf3\xba\xc9\xca\x1c\x56\x07\x5d\x71\xa7\xf3\x6d\x4c\xd5\xb7\x1e\x4c\x27\x3e\x43\xdb\xd5\x54\x31\xe9\x83\x29\xbb\xeb\x31\x8d\xb3\x7f\x9c\x7e\x66\x8c\x25\x72\x33\xab\xda\xc1\x8a\x6f\xf5\x18\xc6\x93\x38\xc7\x3f\xb6\xfb\x51\xba\xc8\x83\xfd\xcc\xd0\xfb\xca\xa0\xca\x4b\xc0\x19\x33\x35\x4e\x66\x29\x1d\x4c\x3e\x3f\x43\xa7\xa5\x6a\x4c\xe2\x21\xfc\x35\xce\xf4\x9a\x30\x0e\x4f\x16\x6a\x66\x83\x79\x60\xc4\x2e\x93\xe2\x6f\x2a\x9f\xd5\x60\x64\xe2\x8c\x08\xbd\x1f\x3c\x2d\x31\xf3\xe6\x64\xa2\x24\x36\x30\xef\x8c\x40\x9c\xac\x8b\xcc\x06\x73\xb9\x8b\x0e\x3a\xa5\x55\x83\x74\x18\xea\x67\x2f\xe3\xcc\xd6\x7f\x85\xf0\xd7\x38\xc7\x7f\x93\x0e\xc9\xe5\x3a\x59\x29\xb9\x70\x8e\x3f\xcd\x57\x29\xbe\x1a\x21\x3c\x8c\x93\x9e\xe2\x4f\xf9\xd2\x55\x83\xf9\xf9\xc5\x9f\x2b\x34\x8f\x8b\x99\x73\x59\xd2\x7a\x86\x12\x4c\x54\x03\xdb\x27\xab\x32\x4d\x56\xa1\x65\x83\xfd\xcf\x2e\x7c\x19\xc7\x29\x87\xae\xc4\xf5\xf8\x18\x27\xdd\xc4\x9f\xf2\x09\xab\x06\xe9\x93\x43\xf8\x36\xce\xf7\x83\xf3\xf8\x78\xd9\x6b\xdb\x60\x56\xa0\xe9\x5c\x50\xd5\x20\x3d\x83\xe3\x79\xb6\xe8\x86\xe3\x5d\xe1\x21\xfc\x33\xce\x79\x4f\x7e\xef\x1b\xe2\xb7\x97\xdb\xed\xd0\xf8\x5f\xaf\x77\x56\x31\x39\x98\x68\x78\xfa\x32\x74\xea\x32\x74\x30\xef\xd0\x8c\xcf\xf3\xf5\x85\xf2\x41\xf3\xbb\xbe\x34\xce\xed\x6a\xaa\x9f\x6f\xa9\x1f\x16\x64\x3d\x86\xd6\xa9\x22\x37\xa7\x22\x37\x95\xfd\x79\xb2\x8a\x2a\x1b\x2f\xdf\xe7\x77\xfd\xbc\x4e\x99\xd0\x61\x4c\xf5\x23\xdf\xaf\x6a\x30\x8b\x74\xe3\x78\x7e\xa6\x3f\x33\x3c\x1e\x2c\x7a\x32\x43\x3e\x5e\xd5\x60\x9a\xe9\x8b\x74\xfe\x2d\xf1\x03\xd3\x90\x0e\x5e\xf6\x4d\x47\x80\x56\x83\xff\x2b\x7e\xfe\x99\x9f\x59\xda\x74\x4c\xf2\x6d\x7a\x1b\x50\x39\xd2\x41\x5f\xba\xc9\x3b\x56\x36\x38\x1e\xbf\x2f\x39\x93\xb2\x02\xf2\x72\x70\xa6\x72\xbe\x55\x83\xe3\x81\x55\x60\xfa\x12\x76\xf2\xd6\xb5\xf0\x14\xfe\x09\xe7\xb1\x84\x97\x86\xf5\x78\x1a\x6f\xfc\xdf\x10\x7e\x19\x67\xff\x50\xc7\x67\xea\x98\x3a\x59\xcd\xf4\x1c\xbc\x04\xac\xc7\xcb\x38\x93\x0e\xc3\x25\xbf\x1e\xbb\x71\x6c\x9f\xf4\x15\x9e\x2c\x78\xca\x46\x12\xe7\x77\x9d\x92\xff\x2c\x56\x5a\xfd\xa4\x70\x8d\x5f\xc7\x5a\x96\xcc\x98\x29\x57\xeb\x6a\x74\xe2\x53\xb8\xfb\xd7\xbc\x84\xfa\x91\x9c\x64\xa9\xd2\xa6\x62\xdf\x93\xc5\x49\xd9\xc0\x7e\xc1\x7a\xf5\x93\xe5\x45\xd9\x20\x1f\xe6\x2d\xfc\x36\xce\xef\x1a\xfc\xdf\xe6\x71\x32\xf4\x6a\xb0\xbc\xe8\x4c\x59\x3d\xab\x11\xc4\x39\x5f\xd7\x52\xff\x3a\x46\xb2\x8e\xe3\xcc\x6b\x1b\xd7\x78\xb8\xae\x9d\x85\xad\x1a\x1c\x3f\xd7\x75\xca\x97\xab\x1a\x58\x8f\x8c\x64\x9c\x79\x9b\x4f\x58\x68\x65\xb0\x46\x4d\x3d\x6e\xe3\xa0\x33\x7d\xbc\x66\xde\xa6\x83\x0a\x97\xf0\x32\xae\x1e\xa7\x71\x8e\xff\xe6\xf8\xe5\xe3\x35\x99\xfd\xad\x1d\x2c\x3a\x3e\x53\xd6\xcd\xc9\x5b\xe9\x73\x84\xe6\x57\xf9\x01\xab\xa1\xac\xdf\xea\xc7\xe3\xec\xeb\xff\xab\xa1\x30\x59\xce\x11\x0d\xf2\x6d\x0c\xf5\xb3\xfd\xbe\x6b\x2e\x90\x3e\x8a\xd8\x9d\x8a\xd8\x1d\x31\x0f\xe1\xcb\x38\xe9\x23\xbe\x1d\xf1\x19\xe7\x7c\x89\x6f\x87\xf9\x70\x50\xad\x67\xe4\xf5\xf4\x65\xf1\x54\xf6\xba\xc1\xdb\xb6\x7a\x0c\xe3\x49\x5c\xfd\x48\xfe\x27\xd3\xb8\x0f\xde\xaa\xcd\xf4\xfe\x9e\xda\xdf\x23\xef\x3f\xa8\x5f\xa9\x53\x6c\x35\xf8\x37\xa9\xee\x24\x9e\x18\xe8\xdb\x0e\x06\x7e\xcf\x94\xcf\xd6\xe4\xa5\x6f\xe1\x9c\x7e\x9d\x4a\x67\x06\xc5\x0a\x23\x16\xa7\xef\x5c\x27\xef\x5c\xdb\x21\x31\x97\x61\x71\x10\xd4\x6a\xa7\xd8\xc8\xdb\x73\xa6\xfa\x17\x1b\xa5\xd9\x3d\xb9\x5d\xd1\xd7\x61\xf2\x0e\x94\x0d\xa8\x71\x53\xe2\x40\x2e\xe7\xd5\x50\xdd\x25\xf6\xef\xed\x39\x17\x2f\x19\x19\x40\x5e\x8f\xc3\x38\xa6\x99\xbe\x3e\xd3\x97\x98\xd5\x80\x76\x3f\xc5\x46\xcb\xcb\x63\xd1\x5a\x66\xf1\xb7\xbd\xbc\x65\x74\x4d\x8d\x7f\x7b\x99\x6d\x2e\x33\x56\xca\x9e\xbe\xc4\x9c\xbe\xc4\xb4\x98\xdb\x66\x6b\xfa\x42\x8d\x94\x58\xdf\x16\x07\x4c\x30\x31\x52\x74\xd8\x9e\x2f\x26\x92\x18\x2c\x8a\x3c\x7d\x99\x38\x75\x99\x38\x52\xec\xfe\x78\xfc\x4c\x04\x7c\xb0\xfa\xc1\xcc\xc7\xcb\xe6\xe1\xe9\x84\x3e\x10\x33\x1f\x2f\xd7\x87\xcb\x95\x11\x8b\x33\x5f\xd3\x8d\xa5\xd6\x0e\x8b\xa7\xd7\xfc\xf0\xd2\x58\xcd\xfa\x1f\xd3\x97\x7d\x53\x97\x7d\x83\xa9\x2c\x67\xea\xf4\x56\x0d\xd0\x87\x3e\x0d\x33\xe5\x9a\x5d\x0d\x56\x64\x91\x38\xf6\xb6\x9d\x1f\xd5\xd0\x4c\xf6\xf3\xf3\x32\xfb\x71\x99\xd1\x47\xa1\x1e\xb7\x71\xbd\xcf\xf1\xfc\x2c\x2e\x99\x2b\x7c\xf0\x92\x6e\x3a\x90\x78\xf2\x16\xef\x9c\x87\xbe\xeb\x27\x35\x25\x7f\x54\x17\x24\x16\x97\xb7\xcf\x75\x30\xed\x3d\xab\x19\xcd\x25\xab\x6a\x35\xc0\x27\xf4\x39\x98\xeb\x14\x3f\xaf\x93\xfc\x1c\xdc\x26\xd7\xb9\xfc\xfe\x7a\xfe\x57\xb5\x60\x3a\x32\xb7\x1a\xdf\xff\xea\x30\xcd\xa5\xbc\x44\xd5\xe0\x78\xb8\xfd\x38\xd2\xb6\x1a\xec\x07\x56\xcc\xb9\x2e\x89\xad\x75\xc5\xfe\x5f\x6d\xa4\xb9\x2e\x89\x8f\x75\xd1\xba\x23\xf1\xb7\x2e\x89\x1b\x5f\x4e\xd1\x49\x60\xb2\x42\x19\x1b\x8d\x38\xff\x57\x3e\x49\x93\xd5\xb2\x5c\xd9\x65\x2e\xe5\x0d\x9a\xaa\xf6\x34\xe9\x33\x31\x59\xcf\x89\x0d\xf0\x9b\xc4\x99\x23\x61\xa7\x22\x61\x27\x23\x10\xa7\x2f\xb9\xe6\x92\x4f\x52\x90\x6f\x97\x7c\x92\xa6\x6b\x20\x1d\x3d\x84\x2f\xe3\xa4\x1b\xd7\xef\xb2\xf8\xe6\xed\x55\x3b\x98\xb6\x76\x32\xd0\x95\x0d\xce\x3b\xc5\x3a\x8b\x93\xb0\xc1\xfe\x27\xc7\x39\x4c\x67\xc8\xe5\xea\x27\x85\xbb\x1f\xa5\x6c\xa4\x7a\xb1\xa6\xe9\x30\x45\x07\x7d\xef\x94\xba\xa9\xd2\x16\x93\x4e\x08\x93\x01\xb0\x6c\xa0\xf2\x06\x2f\xe3\xa6\x23\x58\x27\x4b\x34\xb4\x83\x3e\x9d\x93\x45\x18\xd8\xe0\x38\xc9\xcf\x6b\x7a\x5e\x58\xbd\xf6\x60\x24\xf8\x64\xf6\x75\x36\x30\x8f\x29\xbe\x92\xf5\x71\x2a\xb2\x75\xf2\xd2\x6d\x3a\x82\x75\x2a\x82\x75\x9e\x27\xc7\xa3\x84\x41\xd5\x60\xa9\x03\x8d\x27\xb4\x4e\x17\x13\xdd\xce\x53\xff\x9b\xa6\x73\x92\x9f\x99\x7a\x78\x2e\x1f\xab\x16\x8f\x55\xf3\x6c\x7a\x5f\xc7\xdd\x85\x84\x82\xe7\xe4\xe5\xf8\x5c\x4a\x75\x5b\x0d\xd2\x81\x6a\xee\x5a\x52\x13\xd7\x22\x5f\xa5\xd6\xdd\x4a\xbf\xcf\x3a\x5b\xbc\xec\xae\xc7\x61\x7c\xf2\x7d\x7e\xaf\x12\x06\x55\x83\xff\x4b\x35\x65\x2d\xa9\xbf\x6b\x51\x3e\x9c\x7e\x7f\x1b\xe7\x25\x66\x6a\x3d\x6e\xf3\x39\xad\x8f\x93\xf9\x2f\xeb\x71\x19\xdf\xc4\xf9\x5d\xdb\x74\xde\xa2\xb3\xfb\x31\x1d\xb6\xe8\x40\x35\x71\xf9\x38\xb7\x74\x9c\x4b\xf1\xe7\x63\xf9\x80\xe2\x9b\xe7\x3c\x79\x5c\x5c\x72\xea\xa8\x06\x71\x1e\x47\x97\x7c\x58\xe7\x7a\xc9\x6f\xbc\xcc\x9d\x8e\x6c\xad\x06\xe9\x23\xdc\x72\x7b\x49\x6e\x4b\x0e\xaf\xcf\xf2\xe4\x63\x51\xa3\x93\x6a\xdc\xfa\x99\xff\x7f\xe4\xff\x76\x18\x1f\xc6\xc1\x3f\xbc\x0d\xab\xc7\x65\x9c\x7c\x8b\x5b\x8e\xe9\x48\xcc\xc9\x48\xcc\x76\x1e\xe4\xb7\xed\xe3\xca\xa6\xcf\xe8\x6c\xe4\x2b\xdf\x92\x4d\xde\x92\xd5\xfb\x53\xf8\x6b\x9c\x65\x61\xb8\x5f\x6c\x65\x5a\x98\x0c\xc9\x3c\x27\x6f\xcf\xa6\x6f\xc9\xa6\x6e\xc9\x4e\xc9\xe1\xdd\x74\xdc\xda\x8d\x45\xd7\xda\x7d\xfc\x41\xfd\xe2\x1d\x16\x1b\xac\xb6\x41\xf6\xda\x8a\x10\x99\xcc\x53\xda\x4e\x06\x90\x4f\x5f\x4e\x4d\x5d\x4e\x9d\x74\xcd\x9b\xbe\x6c\x9a\xba\x6c\x3a\x59\xc0\x65\xfa\xb2\x69\xea\xb2\xe9\xa4\x0f\x44\x3d\x7e\xc2\xc9\x5e\x8d\xda\xf4\xbe\x3c\x1e\x1c\x17\xea\xfd\x14\x7e\x1b\xe7\xff\x92\x7d\xf7\x2d\xb6\xde\x2c\x9c\x39\x99\xa7\xa7\x1e\x97\x71\x4e\xc3\xe0\xf8\x6f\x93\x89\xa7\x8a\xc9\x4b\xba\xb9\x6f\x9d\x4a\x37\x4b\x3f\xce\x36\xf5\xbe\xb6\xc3\xad\xed\x84\x05\x8f\xea\x51\xe3\x67\xed\xc4\xc9\xcb\xb8\x7a\x3c\x8d\x73\xfc\x14\xf7\x5b\x3e\x13\xd5\x60\x15\x38\x8a\x5d\x06\x9c\xb2\xc1\xe2\x53\x14\xbb\xbb\xa7\xe8\x8c\x7d\xa5\xfa\x99\xc2\xb7\x71\x4e\x3f\x4f\x03\xbb\x4b\x6c\xed\xae\xf1\x53\xbd\xd8\xdd\xe3\x61\xd9\xb7\xc9\xfc\x3a\x73\xfb\x94\xb0\xb5\xcd\xf0\x92\x6e\xee\xa1\x65\xb6\xb1\xcd\xb4\xf3\xd0\x77\x0d\x2d\xe3\xcd\xda\x55\x93\x97\xb6\x73\xfb\xf4\xb0\x99\xe6\x6e\x5e\x5a\x06\xc3\xf3\xc5\x9a\x53\xf3\x12\xbb\x7b\xbb\xda\xac\x18\x35\x59\x4e\x6b\x6e\x6f\x57\x5b\xdb\xd5\x25\xb6\x9e\x9e\x47\x6d\x4b\x97\x96\xc7\xf4\xf2\x80\x4f\x46\x8d\x93\xf3\xa2\xc8\xd9\xa9\xc8\xd9\xc9\xfc\x3d\x73\x4f\xcf\x2f\xeb\x0d\x4d\x5e\xde\xcd\x2d\x97\xd5\x6a\x24\x71\xf6\xef\x63\xc6\x66\x5d\xf4\xf3\xd0\xb2\x97\xab\x69\x35\x16\x8b\xa3\x71\x9c\x0a\x0d\xa9\x46\xa9\xf5\xe7\x29\x3a\x87\xf9\x0d\x79\x77\x0b\xbf\x84\xbf\xc6\xf9\xbd\x5a\x77\x61\xbe\x62\x9d\x99\x79\x75\xf5\xaf\xd3\xf3\xc6\xb9\xa5\xfa\x99\xc2\xdd\x0f\x0b\xef\xb0\x20\xe4\x74\x04\xee\x64\x04\x6e\x3b\x4f\x8a\xb3\xed\xe3\xcd\x4e\x8a\xb9\x4b\xfc\x99\xe9\xf7\x29\x2e\x99\x4f\xa8\x1e\xfd\x3e\xb6\xa5\x93\x39\xfe\x27\xb3\xf8\xb2\xb1\x88\x93\x3e\x4a\x0c\x51\x0d\xce\x97\xf8\x36\x3d\x4e\x1c\x87\xda\x49\xdf\x97\xb9\x97\xe9\xbc\x48\xe7\x53\xf3\xbb\xcc\xe7\x38\xde\x9c\xf3\xe2\xa9\x74\xdb\xda\xb7\x61\xed\x6b\xe7\xc9\x63\xd2\x56\xbe\xb7\x6a\xf0\x7b\xb9\x3d\x3b\xcd\x6c\x35\xf8\xbf\xb4\x5e\xef\xd7\xdf\xfb\xea\x7b\xa9\xd6\x6f\x1f\x1b\x36\x9c\x39\xda\x79\x4a\x5e\xbd\x16\xeb\xaf\xbe\x4b\xfc\xf6\x5a\x4e\xbe\xfa\x2e\xc9\x25\x5b\x0d\x75\x79\x74\xb2\xf2\xd2\xdc\xb6\x1a\xee\x4f\xfc\xd0\xf9\xbf\x9f\xf9\xf0\x23\x1f\xf2\x52\x72\x3a\x5b\xf9\x54\xb6\xf2\xc9\x4b\xc6\xc9\xec\xac\x6c\xb0\x00\xa9\xe8\xff\xf3\xf8\x79\xe9\x33\x6f\xad\x2f\x5b\xfb\x36\x32\x1d\xb4\x93\x09\x02\xe6\xf6\x71\x82\xa1\x9d\xed\x64\x8d\xb6\x88\x83\xdb\x64\x30\xcd\x79\xf5\x13\xc2\xbb\x71\xc8\x2b\xa6\x45\x8d\x50\x22\x83\x60\xfa\xf3\xea\x47\xef\x53\x7d\x0c\xde\x0a\xb5\x93\x09\x05\xea\xd1\xef\x73\xbb\xe2\x65\x65\x38\xb2\x32\x14\x59\xa9\x6a\x83\xf5\xd8\x8c\xb3\x3c\x29\xf6\x8b\x7a\xec\xc6\x21\x27\x4f\x98\x0f\x22\xe4\x1c\x12\xcc\x94\x5e\xef\x13\x97\x95\xab\x1a\xaa\x66\x98\xc2\xb7\xf1\xe7\x7f\xe5\x4f\xc3\x99\xd2\xab\xd1\x88\xeb\x7d\xf2\x79\x35\x20\x07\x18\xf9\x18\xa1\xfd\x34\x18\x7a\x59\x78\x07\x7e\x91\x3f\xab\xc1\x7a\xb9\x93\xfd\x28\x1d\x6b\x30\x1d\x6b\x3b\xe9\x9c\x53\x8f\xcb\x38\xf8\x8d\x35\x0e\x22\xae\xa5\xf1\x23\x26\xa3\x70\xbe\x7f\x7b\x5e\xb4\x0f\xde\xc9\xf1\x2b\x21\x42\x30\x2f\x6b\x3b\x99\x2f\x30\x1c\x29\x19\x8a\x94\x9c\xac\x78\x19\xd1\x53\xf3\xce\x44\x3f\x93\x69\x4e\xc3\xb7\x4f\xa1\xdb\xa7\xb3\xb5\x2e\xfc\x36\xde\xf9\x3e\xe9\x20\xeb\x57\x35\x58\x88\xec\xe4\x78\x54\x1d\xa3\x1a\xea\x7f\x0a\x1f\xc6\x39\x4e\xf1\x55\x27\xff\x57\x63\xf1\x7d\xd2\x4d\x21\x17\xd5\xb8\xf9\x3e\xe9\xa3\xfc\x73\xd5\xc0\x3e\xd5\xc5\xb7\xc3\xfd\xc0\x9a\xd5\xce\x76\x37\xe1\xaf\x71\xf0\x09\x6f\xbd\x22\x94\xd0\xa7\x1a\x8b\xef\x73\x9c\x73\x89\x6f\x55\x4e\xae\x1b\xdf\x9a\x5f\x66\x54\x98\xbd\xff\xc1\xf5\x3e\x42\x11\x10\xa1\xcb\xac\xd9\xc5\xd6\x3a\x15\x05\xcb\x82\xb4\xb3\xfd\xc3\xa7\x71\xfe\x7d\x0f\xe1\x8f\x71\x7e\xf6\x20\xf9\x14\xd1\x50\x0d\xf6\x2f\xb6\x96\x2b\x62\x35\xf8\xd9\x83\x9f\x1d\x4b\xe3\x61\x19\x91\xd9\xc5\xee\xe1\x65\xa6\xd3\x55\x17\xbb\xa7\xdf\x87\xb8\x6f\x67\x1b\x21\xfc\x33\xce\xfe\x43\xef\x7b\x79\x24\x97\x47\x0f\x8e\x47\x2e\x87\xd5\xc0\x36\xd6\x93\x6c\xb7\x3c\x0d\x4c\x8b\x37\x59\x5c\xb5\x86\xa9\x7e\xe0\x72\xd8\x4e\xba\xe6\xd5\x63\x37\x4e\xb6\x4b\xe3\xd3\x38\xc4\x53\x93\x18\x5a\x1e\xff\xd2\xf8\x35\x4e\xa5\x63\xad\x06\xc6\x3f\xb4\x3c\xd6\x76\x3f\x14\xc7\xe3\x18\xc2\xb7\xf1\x97\x38\xe9\xb6\x2d\xfe\x36\x4f\x33\x8c\x70\x8c\xd8\x5e\x36\x9b\xcb\x86\x97\xa1\xf5\xf8\x19\xe7\xff\x8a\xdd\xb7\xbf\x8b\xe9\xfb\x54\xae\x37\x62\x9b\xed\x10\x0a\xd0\xce\x26\xfa\xe8\x94\x16\xba\xbc\x3b\xa9\x0e\x06\xef\xec\xd8\x60\x9d\xbe\xc6\xf1\x3f\xe6\xb7\x87\xa7\xc3\xa1\x65\xf3\x98\x7f\x1e\xaa\xef\x54\x1f\x23\x9e\xa5\xff\x85\xb9\xae\x70\xce\xe3\x63\x31\xfd\x50\x4d\x61\x42\x8d\x7a\xbc\x8d\x63\x5e\xc6\x95\xc2\xc3\x38\xe9\xa9\x65\x29\xd7\xcb\x50\x9a\xd6\xc9\x88\xc8\x70\x9a\xd6\x6a\x90\x9e\x37\xfb\xf9\xfc\xfe\xa7\xf7\x3b\xc7\xf3\x59\x6c\x7d\x14\x5b\x97\xc4\xcd\x67\xf1\xf7\xc1\xfa\x78\x5e\xa2\xb3\xd2\xb1\x06\x43\x1a\xdb\x79\x89\xce\x9f\xc5\xfd\xc7\xed\x7f\x68\x7d\x7d\x5b\xf3\xc5\x02\x4f\xe7\x25\x7a\xfe\x3c\x9e\x9f\xc6\x33\xf8\xbf\x3f\xf7\xff\xa3\x7a\x71\x49\x6c\xfd\xbc\xed\xfd\xb8\x2e\x78\x09\x1b\x4e\xa3\x1a\x4a\xa3\x3a\x99\x90\xa5\x1e\x87\xf1\xc9\x7e\x42\xf8\x63\x9c\xf3\x1b\xec\xe7\xd4\xf8\x79\x79\xd4\x4e\x26\xe6\xa8\xc7\x6d\x1c\xeb\x9d\x97\x1d\xe1\xcb\xa3\x6a\x70\x9c\xdc\x86\xb3\x89\xaf\x12\xe6\xbd\x76\x52\x4d\x0c\xa7\x4b\x0d\xa5\x4b\x9d\xf3\xe4\xfb\x17\x4f\xf3\xa1\x9a\x69\xe7\x45\xf9\x90\xca\x1e\x5e\x0d\x7c\x17\x23\x10\xeb\x71\x1a\x87\x7c\x63\x22\x92\xe0\x9d\x0e\x1b\x2f\x71\xd0\xd3\x97\x35\xa1\xcb\x9a\xf3\xc2\xb1\x2a\x52\xc7\xa7\x60\x48\x60\xe1\xec\xbf\x53\xcd\xaa\x06\xe6\x85\x56\xfc\x70\xfa\xd3\xe0\xad\x4a\x3b\xe9\x5b\x16\x8e\xc8\x0b\x46\xe4\x15\x3e\x85\x87\x71\xf6\x33\x0e\xe1\xfa\x5e\x55\xed\x9d\xa2\xcf\x94\x7c\x4b\x15\x7f\x9d\xa2\x83\xf2\xc3\x55\x83\xdf\x45\xb9\xca\x4b\x0f\x36\x58\x4f\x9f\x6a\x19\x03\xeb\xd8\xe0\xff\x4e\x7e\xaf\xf7\x91\xa4\x0f\x9f\xaa\x8d\x86\x23\xe6\x42\x11\x73\xaa\xcb\x1f\x19\x69\x3c\x85\xb3\x9f\x70\xff\x41\x3e\x41\xd9\xc4\x2f\x52\xc7\x83\x6a\x70\x3c\x94\x33\x29\xdf\xbb\x6a\x70\xde\x29\x67\x52\xbe\x77\xa1\x48\xb4\xc9\xf4\xad\x91\x69\x7e\x43\x0c\x59\xf5\x4f\x3a\xa4\xc7\x9f\x94\x57\xac\xd4\x5f\xdb\x8b\xf8\x84\x69\xb4\x67\x50\xce\xe4\x32\x9d\x17\xf9\x93\x79\x22\x83\x45\x56\xd8\x18\xc4\x39\x1e\x39\x39\x04\xf3\x9d\xb6\x93\x09\x35\x22\xe5\x5a\x1e\xcc\x6b\x7a\x4e\x46\x26\x86\xd3\x99\x56\x83\xe3\xa1\xfa\xc8\x88\x25\x36\xd8\x8f\xe6\xd7\xf2\x2d\x9f\x4d\x3e\x19\x5d\xf8\x32\xce\x7e\x34\xef\xaf\xe7\xf7\x15\x5f\x69\xbd\xff\xcc\xcf\x3f\xfd\x2f\xf7\xc1\x54\x64\x74\xf0\x1a\xa1\x70\xfc\x2f\x23\x69\xd8\xe0\xf8\xb9\xae\x9d\xa7\x33\x94\xa7\x53\x95\x4f\x63\xc9\xf7\x3a\x18\xfb\x52\xf8\x24\xae\xfd\x74\x9d\xea\x87\xdf\xb5\x4e\xc9\xb7\x25\x35\x9a\x21\x7d\xb1\xe4\x63\x5d\x8d\x46\x9c\xef\x37\xf1\xd5\x6a\xe4\x2b\x5a\xe5\x63\x5d\x7e\xff\xd2\xfb\xdc\xf7\x6d\xf5\x0f\x5a\xfd\x0b\x9f\xc2\x1f\xe3\x1c\x3f\xe9\xb0\x2e\xed\x77\xeb\xa2\x59\x81\x55\x73\x82\x97\x00\x6c\x60\xfc\x79\xfc\x21\xed\x6a\xbd\x1d\xfe\x59\xf2\x67\x1c\xd6\x2d\xf6\x5a\xb0\xee\xb4\x93\x25\xed\x63\xe9\x2e\x36\x54\x18\x7e\x66\x3b\x84\x87\x71\xb0\x45\x27\xdb\x31\x0b\x25\x1b\x41\x9c\x9f\xa7\xec\xc6\xa1\xb2\xe1\x93\x97\x83\xb1\x54\x1c\x20\x58\x8b\xbb\x9d\x52\x07\x59\xc9\x99\x0d\xe1\x53\xf8\x63\x1c\xdb\x33\x13\x58\xc4\x52\x71\x80\x60\xb5\xe1\xc2\xd9\x8f\x02\x6b\xc3\xb5\x75\x93\xdb\xc6\x92\xf5\xa2\x1a\x7a\xdf\xf8\x6d\x1c\x6c\xca\x6c\xfb\xf5\x38\x8c\x43\x4c\xa7\xbe\x57\xbe\x50\x41\xab\xfb\x39\x19\xa8\x5f\x5a\x9c\xfa\x91\xf8\x60\xda\xd2\x7a\x1c\xc6\x49\x1f\xb1\x4b\x9a\xad\x99\x27\x6c\x32\x22\xaf\x1e\xb7\x71\x88\x0f\x26\xbc\xa8\xc7\xd7\x38\xb6\xbd\xd4\x38\xd3\x74\xa0\x4b\xef\x4c\x8a\xd7\xb5\xbc\x3c\x16\x97\x47\x52\x1d\x64\x60\x0b\x1b\xac\x2a\x4f\xb1\xb8\x2c\x86\x96\xd4\xca\xe4\x76\x62\x63\x7b\x28\x7d\xe5\xa4\x71\x38\x96\x2e\x4f\x83\x21\x2d\x67\x30\x32\xae\x1e\x35\x4e\xd6\xbe\x3d\xbb\xd8\x57\xd9\x99\xab\x81\xba\xc5\x07\xb7\xcf\xb5\xa5\x9e\xae\x0d\xb5\x23\x0e\xaa\x8f\x4e\x5f\x59\x8d\x8f\xb8\xfa\x91\xfa\xb5\xa4\x0e\xd2\xa7\xaa\x1e\xdd\x3f\x2e\x4f\x83\x91\x71\xb1\x94\xb5\x3f\x18\x62\x73\xc6\xd1\xd8\xff\xe3\x79\x61\x76\xfe\xe0\xe5\x5d\x3d\xa6\x71\x8e\xe7\x22\x3d\x1f\xcf\x0b\x5d\x7d\xe3\x10\x5f\x29\x42\x33\x68\xd5\x3f\x83\xd6\xdf\x58\x2a\xf2\x13\xcc\x87\xd9\x4e\x56\x1d\xa8\x47\xbf\x8f\x08\xa0\x93\x3e\x7f\xb1\x5e\xaf\x47\x16\xed\x09\x5a\x7f\x63\x59\xbd\x5b\x1f\xeb\xa2\x33\x12\x39\xf6\x29\xba\xed\x53\x74\xa3\x78\xda\xa7\xd4\x97\xcd\x44\x0c\x71\x50\xec\x6e\x45\xfc\x55\x83\xe3\xe1\x38\xb7\x8a\xb1\x54\x83\x74\x26\x9f\xec\x26\x3e\xd9\xb4\x0a\x04\x23\xda\xea\x71\x1a\x27\x1d\x42\xfd\x6b\xfc\x8c\x1d\x39\x83\x97\x68\x41\xa3\x3b\x1b\x37\xf1\x4b\xf8\x30\xce\xf9\x4a\xf5\xe3\xf1\x4b\xfd\x92\xfa\xeb\x10\x93\xa0\xb5\xbe\xde\x07\xfd\xb7\xb2\xd5\x57\x03\xfd\xb3\xe8\x4a\x3d\x4e\xe3\x41\x7c\x12\xd7\xba\xdb\x30\x33\x9c\x41\x6b\x5f\x6c\xe5\x73\x0a\x9a\xe7\xdb\x39\xba\xde\xf7\xff\x5e\xfc\x5f\x5a\xf5\xc2\x56\xf9\x6a\x74\xe2\x43\xf8\x34\xce\xff\xe5\xf6\xbf\x6f\xa9\x89\xfb\xa6\x9a\x28\xf5\x7a\x2b\x12\xb0\x1a\x1f\x71\xf6\xd3\x4d\x37\xa6\x11\x0e\x46\x98\xc6\x56\xa4\x5e\xd0\x3c\x7c\x06\xeb\x57\xc6\x9e\x52\x07\xb7\xe4\x27\x7d\x16\xc3\x21\x11\xc1\xfc\x88\xed\xa4\x6f\x62\xd0\xe8\xcb\x46\x12\x0f\xe1\x1a\x27\xb3\xc9\xc7\xa9\x71\xa6\xbf\x0b\x91\x7a\x85\x73\x5e\x52\xea\xfe\x4e\x16\x73\x93\x75\x6d\xab\xb2\x62\xb0\xca\x59\x3b\xa7\xe6\x45\x91\xec\xd5\x38\x89\xa7\xf0\xcb\x38\xdf\xa7\x7c\x70\xa8\x41\x35\xf8\xbd\xe2\x43\x5d\xea\x55\x83\xf3\x42\x39\xb6\x7d\x2c\x64\x22\xc0\x76\x4e\xcd\xd7\xe3\xf1\x3f\xb4\xde\x4d\xcd\x97\xb2\xb7\x87\x42\x04\x82\x97\x68\xb1\x7d\x2c\xdc\x8c\xf8\x8e\x76\xa8\x1f\xc9\x31\xe5\xff\x8b\x46\xb9\xb7\xe5\xd3\x59\x8d\xc5\xba\xec\x9c\x17\x1f\xff\x36\x8f\x7f\xd1\x68\x25\xb2\x95\x37\x68\xe5\x2d\x9c\xf3\xf5\x9a\xaf\xe8\xd3\x19\x0c\x41\x0b\x5b\x79\x83\x56\xde\x33\x1a\x8f\x6d\x0e\x29\x08\x86\x14\xb4\x93\x89\x4b\x62\xbf\xa6\xff\x2b\xfa\x53\x7d\xdc\x9f\xbf\x8b\x69\x6c\x83\xa1\x6c\xe1\x5a\x92\xb1\x3f\x96\xeb\x97\xb5\x89\x9e\xf8\x6c\xa8\x1f\x7e\xaf\xd2\xc9\x06\x7d\xed\xdb\x39\x79\x1c\xdd\x3f\xcf\xd7\x8f\x72\xa9\xe1\xb2\x38\x6d\x6d\xad\x06\xe4\x18\x43\xd6\xd2\xd6\xd6\x94\xb5\x35\x18\x11\x59\x8f\x3f\xe1\xac\x49\xc9\x90\xb5\x74\x1e\xbe\x54\x1e\xbe\x60\xf1\xbd\x74\x11\xad\x54\x11\xad\xe0\x6d\x58\x86\x22\xb5\x53\xd5\x77\x83\xe6\x9b\x0c\xf9\x50\x26\x4b\xee\x9e\xc1\xdb\xb0\x74\x1e\xbe\x6a\x10\x07\xbf\xd5\xe3\x32\xce\xef\x8a\xfe\x7f\xab\x5f\xf5\xf6\xeb\x9f\x71\xda\xa0\xfd\xa5\x3d\xff\x53\x9e\xff\xc1\xf4\x9e\xf5\x78\x19\xe7\xe7\xe5\x29\xfc\x31\xce\x7e\x92\x64\x52\x01\xd9\x6a\xb0\x9f\x0c\xe1\xfe\x5f\xd6\x10\xbc\x0e\x7d\x06\xad\x3b\xd5\x08\xe2\x1a\xcf\x76\xff\x14\x73\x8c\x50\x4b\x97\xdd\x4c\xa5\xfb\x0b\x5e\x8a\x25\x6d\xcb\x6c\xb0\x9f\x33\x84\x3f\xc6\x21\x6e\x98\x27\x26\x43\x77\xb7\xc9\x10\x86\xc2\xd5\x0f\xc5\x71\x32\xbf\xdf\x19\x57\xeb\xc2\x35\xfd\x0c\x2c\x0f\x46\x08\x66\xa8\xa6\x64\x35\x3e\xf6\xc3\xf1\xcb\xf8\x5c\x0d\xb2\xa3\xe8\x79\x99\x6e\xba\x9c\xe5\xa9\x2e\xe3\x5a\x9a\xce\x8b\x56\x31\xe6\x9b\xc9\x90\xf6\x5d\x0d\xb2\x7b\xb2\x1f\x19\x99\xd3\x46\x66\xfa\x60\x65\xdc\x1e\xff\x4d\x2b\x1d\x4f\x6f\x19\x72\xc9\x4c\xd6\x15\x2d\x9c\xfd\x2b\xf4\x21\x55\xab\x2b\x18\x21\x98\xd1\xdd\x7f\x57\xff\x27\xfb\xef\x4b\xe3\x61\x64\xdf\x19\xa2\xbf\x22\xfb\xaa\xb1\xd8\x0f\xe9\xdf\x3d\xbf\x5d\xf3\x3b\x38\xef\xca\xaf\x93\x4a\x5b\x17\xac\xcd\x57\x8f\x9f\x71\xf2\xc9\xd4\xfb\x5b\xcb\x8c\x97\x9b\xc1\x08\xb8\x8c\xe9\xe5\x3a\x79\xfa\x64\x7a\xc3\x74\x6d\xaf\x0c\x66\x93\x8f\x4b\xf3\x3e\x3d\xef\x70\x82\x2c\x7c\x0a\x7f\x8c\x93\xdf\x34\x5f\xb2\x0a\x54\x83\xfd\x5f\xa4\x43\x78\xbd\x30\x2f\x5d\x5c\x9a\xaf\xb0\x38\x90\xfa\xce\xbc\x35\x19\x61\x3a\x04\x7d\x11\xe8\x13\x96\x91\x5e\x8f\xc9\xcb\x9a\x10\xfd\xd3\xff\x8b\x3a\xd0\x67\xdc\xa2\x7f\xba\x9f\x54\x3f\x9d\xff\xbb\x2c\x6e\x16\x4f\xab\x21\x3a\xaf\xad\x79\x84\x19\xf5\x8c\xbb\x71\xbe\xb4\x2d\x65\x68\x5b\xe2\x69\x32\x6d\xad\x4c\x5a\x2b\x0b\xe7\x38\x9f\xd4\xbc\x3c\x54\xbf\x78\x79\x54\x8f\xff\x70\xcc\xd7\x7d\x73\x3c\xaf\xc5\xd3\x4b\xf1\xc4\x48\xb4\x8c\xd7\x74\x66\x04\x19\x4b\xbb\xd7\xa3\xbf\x57\xa7\xf3\x90\x9c\x79\xcd\x27\x0c\x1d\x38\x43\xeb\x45\x56\xc3\x0c\x96\x83\x3f\x43\xeb\x42\xbe\x83\xd5\xc0\x3c\xf2\x52\x29\xe3\x67\xf9\xf0\xe3\x76\x9b\x87\xf1\x65\xfc\x21\xce\xf1\xff\xcc\xff\x74\xed\x3f\xe9\xe3\x55\x8f\x8f\x71\x8c\x3f\x4f\xd2\xf9\xc7\x6d\xb5\x1a\x49\x1c\xf3\x9e\xde\x36\xf2\xa0\x9a\x45\x5f\xab\x7a\xbc\x8c\xdf\xc4\x31\x9e\x3c\x69\x6d\xad\x06\xe9\x4c\xbe\x4d\xa5\x51\xad\x06\xd6\x35\xf3\xcf\x65\x4a\xed\x4e\x9a\x15\x0b\xe7\xff\xca\x9a\x58\x0d\xf0\x15\x7d\x52\x33\x87\xfb\x67\x71\xa1\xb8\x49\x67\xd6\x08\x42\x83\xc7\xa4\xec\xc2\xb5\xde\x95\x1f\xab\xe4\x8e\xf0\x34\x4e\xba\xe1\xd8\x9c\xa9\xbc\x92\x49\x9f\xe5\x62\xe7\x26\xfc\x35\xfe\xf1\x7d\xd0\xd3\xf9\xae\x32\xe5\x54\x40\x5f\xd5\xb4\x6b\x73\x35\x06\xfb\xe1\xff\x2a\x1d\x77\x35\x40\x1f\x5e\x96\xa5\xf3\x3f\x25\xcd\x69\xed\x64\xde\xb8\xcc\x74\xff\x2c\x5e\x17\x5d\xf4\x97\x15\x2d\x65\x2d\x0b\xd6\x04\xcc\x4c\xd3\x39\xa9\x8e\xd3\x0c\x51\xaf\x77\xe1\x94\x63\x8c\x80\xcb\x94\xcf\x59\xd2\x99\xf8\x0c\x16\xf1\xab\xc7\x65\x7c\x13\xbf\x85\xbf\xc6\x3f\xe2\xfc\xdf\xe5\xef\x65\xad\xdb\x60\x48\x5c\x32\x8f\x12\x1b\x50\xd7\x3a\xe5\x43\x2e\x8f\x9f\x97\xf5\xd1\xbb\xfe\xd7\x74\x58\x2c\xcd\xcd\x6a\x0d\x99\x0a\x45\x4a\x26\x60\x6a\x67\xa6\xde\xdf\xee\x5f\x7c\xcb\x7d\xdc\x89\x99\x92\x89\x99\x4a\xcc\x9c\xc2\x6f\xe3\x93\xf8\x25\x7c\x1b\xe7\x77\x51\xad\x49\x55\x8f\xa8\x06\xe9\x43\x79\x6e\x5f\xe7\x94\xaf\x73\x30\x4f\x67\xa6\x8e\xeb\x49\xa7\xe7\x1a\x0f\xf9\x64\x7b\x5e\xb6\x0a\x5f\xcf\x29\x3c\x8c\x2f\xe2\x7e\x5f\xfc\xbc\x79\xfc\xe3\x6d\x58\x3d\x0e\xe3\x1c\x7f\xf0\x7f\x1f\x7f\x17\x13\x33\xb5\x43\x7c\xfb\xc4\x30\xce\xf7\xf3\x10\x1e\xc6\x93\xef\xff\xc1\xf5\xbe\xde\x7e\xfc\xb3\x1f\x7f\xc6\xe9\x7f\x3d\xcd\xcc\x6f\xd1\x58\xcc\x24\xf3\x35\xbb\xbf\x64\xf7\x21\x76\xff\x3c\x3d\xc8\xb2\xdd\xda\x21\x36\xfd\xfc\x19\x9f\x3e\xe3\xe2\xf4\x7c\x16\x07\xdf\xd6\xfb\x29\x3c\x8c\xf3\x33\xc4\xbe\x3f\x8f\x13\x11\x4f\x85\x73\x9c\x3f\x4f\xcf\x8f\xd5\xcd\x0f\xb1\xe3\x4f\x6a\x5f\xf2\x92\xa5\x1d\x62\x47\xb9\x54\x27\x6b\x33\x15\xce\x65\xf0\x93\xb6\x9b\xb8\x7c\x29\x1c\xfd\x2f\x6b\xe5\x4b\x5a\x39\x23\x04\xd3\xc5\x97\x52\xc5\x97\x82\x11\x82\xf5\xf8\x1a\x27\x3d\xc9\xa6\xeb\x48\xf7\x43\x2b\xc5\xb8\x8d\x4f\xe3\x41\xbc\x13\x97\x98\x5b\xc8\x4b\x59\xfd\x4c\xe2\xa2\x8f\xf2\x21\x05\x4f\xff\xb9\x54\xaa\xb6\x1a\x81\xf7\xc9\x8e\x36\x02\x57\x03\xcb\x80\x11\x49\x69\x23\x70\xd2\x08\xdc\x1a\xad\x1a\xb9\x2c\xa6\xd7\xa9\x79\x89\x21\xfc\x32\xce\xf1\xe0\x34\x9c\xeb\xd2\xb2\xa1\xb5\xf6\x0c\xa6\xfd\xcc\xa5\x44\x12\xd5\x20\x9f\x70\x99\xad\x8b\xa7\xc3\x64\x82\xa2\xd6\x58\x1a\xb6\x1e\x97\xf1\x4d\xdc\xef\xbf\xc6\x7f\xec\xe7\x26\x2e\x75\x7c\x5d\x2c\x9d\x3e\x26\xc7\x73\x4b\x7d\x5c\x37\x4f\xe1\xbc\x2c\x4b\x17\x53\xaa\x46\x67\xff\xa4\xcf\xed\xf1\xdc\x1a\x0f\xf9\x79\x59\x3d\x5d\x54\x4f\x1b\x5d\x89\xeb\xf1\x31\xfe\x12\xe7\xf7\xaa\x4a\x44\x35\x20\xd6\x07\xd5\x02\xd6\x4a\x62\x83\x74\xe0\x76\x65\xab\x70\xca\x2a\xdc\xe8\x62\x9c\x4b\x3e\x76\xd5\xc0\x77\xcd\x83\xff\x3b\x4c\xff\x41\x6b\x07\xad\x02\xb9\x14\x69\x9b\xf4\xdd\x6e\x8d\x56\x90\x74\xf1\xa2\x94\xcb\x76\x4c\xaa\xc5\x6b\x7a\xbe\xa0\x5f\xb6\x76\x72\x7d\x2d\x5d\x1e\x55\x83\xf4\xe7\x3a\xb2\xb5\xb8\x1a\xa4\x9b\xf8\x47\x69\x15\xab\x81\x79\x99\x3c\x96\xd8\x05\x3b\xe5\x82\x1d\xbc\xbc\xab\x5d\x43\x74\x40\x4d\xbd\xd6\x4e\xf1\x73\xba\x9f\xe4\x7a\x39\xc5\x27\x99\x1a\x4f\xd2\xca\x38\xf5\x5d\xf2\x2d\x4b\x15\x1d\x0a\x46\x20\xd6\x66\x21\xfa\x30\x51\x42\x30\x02\xb1\x1e\x87\x71\xce\xaf\xf8\xd9\xea\x26\x8b\xfc\xb4\xc6\x22\x24\xb9\x1e\xaf\x6b\xc8\xd9\xd6\x9a\xf8\xf0\xd1\xf6\xc9\x2a\x40\x85\x93\x0f\x1f\xc9\x49\x9a\x45\x5b\x6b\xe2\x1f\x25\x4a\xa8\xc6\x45\xfc\x12\xee\xf7\x97\xde\xef\xc2\x3f\xe3\x3f\xe2\x1c\xcf\x6b\xba\xc9\xda\xc1\xec\xff\xb9\x5e\xcb\x19\xfa\xb4\xb5\x46\x35\xda\xd6\xd0\xa4\x35\xb4\x60\x8e\x5f\x69\x78\xab\x11\xc4\xf1\xbf\xfb\xd0\xfa\xda\x87\xfe\x97\x72\x72\x1f\xa2\xcf\x3e\xa0\x8e\xb7\xc6\xff\x75\xe2\x9e\x6a\xb0\x7f\xca\xb7\xed\x63\x21\x9d\x74\xcf\x98\x94\x0f\x5b\x35\x2b\x93\xd6\xbe\xd6\x1a\x8f\x55\x5b\xb7\x2e\xd5\x20\x1d\x68\x5d\xd8\xba\x75\x49\xfa\xd4\xb6\x46\x9f\xda\x74\x75\x96\xa4\xb3\x6c\xe1\x37\x71\xcd\x3b\xab\xb0\x14\xce\x71\x2a\xaf\x58\xd2\x29\xf6\x0c\xa6\x45\xad\x47\xf5\xdf\xd5\x3f\xd5\x8e\xad\xcb\xdf\x6a\xf0\x7b\xf5\xbe\x7c\x86\xaa\x81\x71\x5e\xdc\x1f\xf7\xf4\x78\x26\xc7\x23\x73\xc0\xd6\xe5\x6c\x32\xc1\x4a\xe1\x1c\x8f\x6e\x63\x92\x65\x57\x6a\x5a\xf4\xbe\xfb\x67\xb1\xaf\x60\x2d\xcb\xdc\x72\xda\xa9\xc6\xc3\xf7\x89\xeb\x92\x34\x59\xce\xa4\x35\xfa\xb6\x96\xd6\xa1\xf7\x99\x17\xb3\xd1\x87\x35\xf7\xf2\x7c\x31\xd4\x20\x42\xe3\x59\x1e\x27\xcc\x87\xad\xb1\x06\x65\xee\xa5\x63\x2d\xcb\x9f\x9c\xc1\xc8\xcd\xa4\x11\x91\x8d\x8f\x78\x08\x17\x3d\x91\x76\xbb\xd8\x8a\xdf\x65\x75\x6a\x4b\x9d\x62\x88\x52\x6e\xe5\xb3\xac\xc6\x8f\xef\x73\x3c\x4a\xa3\x9d\xac\x56\xd2\x1a\x7d\x52\xd3\xd5\x4a\xaa\xf1\x12\x67\x3f\xb2\x56\xa6\xaa\x95\x84\x8e\xb5\xfb\xf1\x3c\x3e\x9c\x47\x26\xd0\x49\x27\x22\x49\x26\x22\x29\x5c\xef\x9b\xfe\x8f\xe6\x97\xfb\xc5\xf6\x71\x71\xeb\xb8\x18\x54\x97\xed\x33\x9a\xf4\x19\xad\xf7\xb9\x8e\x3e\xc9\x79\x56\x07\x69\xed\xca\x3f\x58\xbf\x96\xd3\xdf\xad\xd5\x71\x3a\x69\x03\x6a\xc7\xda\x52\x3b\xaa\xc1\xed\x47\x68\x33\x7a\xfd\xf7\x3f\x17\x6f\x3a\x96\x0b\x4b\x2d\x16\x96\xba\x07\x4e\x02\xcb\x75\xa5\x16\xeb\x4a\x31\x06\x61\xb9\xaa\xd4\x62\x55\xa9\x9b\x4e\x38\x6b\x4b\x3f\xa9\x06\xe8\x6f\x34\x8d\x16\xf5\xdd\x31\x8f\xde\x8b\xf1\x0f\x2a\xb7\xbc\xb6\x54\x96\x6a\xd4\x52\xfc\x87\x7a\x70\x35\x03\x37\x9d\x78\xea\xe9\x31\x5c\x3d\x43\xeb\x59\x5b\xc9\xb3\xd7\x86\xf1\x91\xfe\x76\xf5\xe0\x8e\x8b\x39\x6f\xfa\xf5\xd4\x93\x7b\xae\x3d\xe7\x62\x39\xb6\xe5\x32\x58\x8b\x22\xac\x81\x1f\x17\xc5\x18\x1b\x18\x46\x77\xd7\xa6\x46\xa9\x11\xf7\x10\x45\x4f\x13\xfa\x24\x45\xc7\x29\x78\x1a\x4e\xfc\x63\x08\x16\x3d\x20\x13\x6f\xfa\xf9\xd4\x53\x37\x3c\x0b\x9e\x97\xe0\x34\x8c\x91\xcc\x21\x58\x23\xc1\x79\xfa\x66\x95\xa6\x7a\x1a\x86\x41\xeb\xd0\xdb\x5b\xd3\x45\x35\x6d\x1c\x42\x3d\x3e\xd8\x62\x86\xfe\x90\x27\xe0\x6a\xa0\x8b\xe4\xa8\x9b\x59\x8c\xb1\xde\x63\x08\x4d\xa3\x35\x2f\x1a\x73\xf3\x17\x36\x30\xcd\x3c\x48\x6a\xe5\x2e\x5f\x4c\x9f\x76\x33\x2b\x42\x3d\x75\xc3\x1b\xb0\xfe\x30\x1f\xc3\xd5\x75\x1c\x42\x35\xe5\xf0\xb2\xa5\x31\x79\x6d\x59\x3d\xab\x51\x53\x3e\x4f\xf5\xbc\xc2\x70\xad\xee\xe8\x42\x5f\xa3\x35\x89\x53\xab\xa5\x99\x99\x70\xe1\x46\xfb\x71\x3d\xb8\xe7\xe2\xaa\x9b\xb7\x1f\xf5\xe4\x31\x17\x33\xdd\x54\x67\x96\x6b\x92\x2d\xde\xba\xd1\xd6\xbc\x7c\xd5\xb6\x14\x18\x93\xa4\x86\xca\x3c\x2f\xde\xac\xdd\xd4\x7c\x96\x53\xb6\x2d\xa6\x6c\xbb\xe7\xd5\x04\x6b\xd0\xc8\x25\x73\x33\x24\xb9\x9e\xa6\xe1\x28\x16\xbb\x84\x2e\xa3\xa0\xff\xad\x3e\x24\x3d\x98\xb6\xed\x3a\xba\xd0\x66\x14\x3d\xdf\x21\xb8\x1b\xc6\x17\x6a\x61\x28\x51\x68\x35\xf0\x87\x7e\x59\xb4\xc3\x65\x1f\xb3\xae\xd5\x83\xbb\xc0\x8a\xd3\xa4\x5c\x5e\x5a\xb8\x09\xbc\x98\xa1\xb8\x9e\x1e\xc3\x6f\xbd\x9c\x42\x3f\xa3\xf8\x12\xc9\xbb\x3b\xc4\x49\x77\x80\x93\x7a\x08\x9e\x86\xc1\x49\x5a\x87\x4a\x17\xb0\x58\x02\xee\x92\x64\xd3\x05\xe2\xda\x70\x04\xa1\x17\x5e\x3d\x5c\x46\x31\x2b\x5a\x9c\xb7\x29\x7a\x93\x47\x67\x13\xfc\x1a\x06\x2b\x4d\x75\x6d\xd1\x86\x53\xc2\xcd\x9c\xef\x6b\xdf\x16\x62\xf0\x48\x63\x6e\xbd\xe5\xb0\xa0\xb5\x6f\x72\x58\x70\x0e\x6f\xee\xac\x8b\xb9\xee\x2e\xc9\x52\xa5\xc9\xaf\x06\x7a\x16\x97\x2a\x54\x68\x31\x54\x48\x95\xb5\xd7\xee\x5e\xb3\x3d\xd0\x75\x76\xc1\xb7\xe1\xea\xfa\xf6\xcb\xcb\x68\x91\x3a\x0e\x4e\xb8\xbc\xb8\x17\x55\xa7\x3b\xb4\x68\xbb\x17\x2d\x0c\xed\xaa\xa9\xbd\x9c\x50\xaf\x1a\xe8\xe4\x54\x27\xe6\x3c\xa8\x57\x97\x58\xac\x5b\x58\x75\xc8\xfa\xd0\x9c\x77\x93\x09\x57\xb9\x8c\x66\x59\xbc\xce\x65\x03\x3d\x6b\xc5\x29\x58\xa9\x1a\x0d\xf0\x14\x7c\x19\x2e\xd6\xeb\x7e\xd9\xa3\x03\x99\x42\x4b\xae\x7b\x7d\xa2\x06\xce\x25\xa1\x3e\xcc\x63\xc8\xd0\x7f\x49\x3a\x0e\xd3\x6e\x14\xed\xee\xd0\x3a\x94\x37\xcf\xa2\x62\x78\x49\x3a\x0e\x93\x14\x01\xbb\x77\x68\x12\x87\xd7\x32\x22\xaa\xee\xd0\x9e\x3a\x2c\x1e\x71\xd8\xbb\x43\xf3\xa2\xc2\x39\xd5\xa8\xae\x79\x12\xad\xa7\xc7\x70\x0d\x7a\x1e\x42\x45\x25\xd8\x3d\xef\xb8\xd5\xb5\x29\x8d\x10\xad\x3b\x44\x0f\x19\x41\x17\xf3\x0b\xde\xa1\x5d\x4e\x77\x1b\x8b\x11\x5c\xd7\xa9\xe5\x3c\x2c\x37\x71\xb8\xbc\xc3\x74\x32\xa3\xe2\x66\xe3\x62\x59\xce\xe5\xd4\x84\x8b\x2a\xf1\xa5\x9d\x61\x78\xf1\xc3\x77\xfe\x8e\x31\xff\xa0\xf6\xec\x69\x3e\x86\x1a\xcd\xab\x93\xb5\xa7\x77\x5d\x64\x3b\xbc\x43\x7f\x31\xad\xde\xe0\x46\x45\xd5\xba\x97\xef\xf9\xab\x81\x7f\x9e\xe4\xc1\x69\x45\x06\xf7\x2c\x97\xb6\x51\x39\x4f\x55\x03\x13\x17\xb7\xe0\xcf\x30\xfa\x48\x12\x5d\x36\xdd\x6a\x60\x20\x92\x68\xd3\x12\x74\x92\xe8\x5a\x7d\xd3\x44\x9f\xe4\x7a\xed\xaf\xd3\x5c\x0f\xbf\x82\x4b\x1b\xf7\xf4\xf6\x83\x8c\x8b\x77\x4a\xc0\x4f\x2b\x2d\x28\xba\x48\x4f\xd5\xb5\xa7\x89\x8b\x43\xf9\x4d\x93\xff\xda\x61\xea\xe1\x70\x7e\x69\x74\x11\x97\xd1\x1b\x22\xbb\x0b\xee\x86\x8b\x7a\x79\xfa\xed\x69\xb8\xfe\x50\x9f\x12\x16\x96\xb8\x35\x62\xb2\xc4\x7a\x18\x46\x31\xe6\x73\x0a\x4e\xc3\x18\x9d\x56\x7b\x58\x84\x22\xac\xe0\xe6\xfd\xc2\x62\xa2\x48\x36\x2e\xc0\xfa\xc7\x75\x1b\x06\xb3\x5d\x7e\x7b\x19\x46\x27\x5a\xd8\x61\xb5\x07\x89\x3c\x6e\x89\xae\x30\x4d\x11\x17\x77\xf3\x26\xa2\x9e\xfc\xe5\xd8\xd2\x79\x11\x51\x4f\xfe\xf2\xa2\xf9\x6d\x9a\x5a\x11\x44\xd9\xa5\x3b\xb5\x56\xd3\xa4\x86\xfd\xe2\x16\xf1\xd2\xa4\x46\x24\xdd\xad\x05\x92\xde\x95\x60\xd3\xb8\x45\x8e\xb4\x10\xc0\x7d\x9a\x8a\x84\x2f\x86\xd2\xb1\x01\xe2\x69\x37\x4e\x0b\x01\x94\x71\xb8\x45\xa4\xb4\x8e\x84\xc0\xf4\x5b\x22\x31\xbd\xcf\xc3\x93\xe4\x3a\x3d\x64\x8b\x06\x64\x2b\xb9\xb3\xfb\xed\x30\x9c\xff\xfd\x0f\x43\xb6\xea\xe1\x35\x5a\x63\x4e\x29\x92\xe9\xed\x1f\xce\x73\xb7\x64\x62\x5a\x34\x23\x70\xe3\xce\x21\x6a\x58\x5e\xe0\x4a\xe2\xce\xe1\xb7\xfd\x87\x1b\x7f\x38\x84\x6e\xa3\xf5\x81\x9a\x93\xb4\x56\x90\xa4\xbe\x14\xeb\x65\x81\x80\xb8\xfa\x9b\xb9\xf7\xeb\xe9\x36\x5c\xe4\xbf\x8d\xa6\xd1\x85\x97\x6f\xc1\x8f\xe1\xfa\xc3\xdb\xa8\xfe\x10\x21\xf7\x77\x4a\x09\x5f\xd6\x0a\x16\x79\x57\x8b\x76\x99\x77\x17\x79\x57\x2b\x6e\x59\x1e\xe0\xd0\x7c\xa7\x16\xd1\xf2\x96\x8e\x80\x90\x4e\x3f\xbe\x7a\xf2\x40\x70\xd4\xd0\x96\xb9\xfd\x89\x48\xd5\x72\x9d\xda\x1c\xb7\x57\x2d\xae\x31\xfa\x21\x66\xda\xfe\x18\x1c\xc7\x19\xff\xb6\x7c\x06\x5f\x1b\x91\x26\xb7\xf6\x82\xed\x55\x0b\xcb\x57\x3f\x9a\xfe\xd0\xbb\x0f\xea\x5e\xdd\x9a\xf0\xed\x45\x8b\x5b\x8e\x7e\x88\x3d\xb6\x19\x0f\xbe\x8a\xd7\x29\x6d\x6d\x9b\x1e\x70\x55\xec\xb4\xe9\x2f\x9f\xed\xd7\xc6\x15\x47\x3f\x34\x31\xdb\xcb\x13\x81\x2a\xfd\xd0\x14\x6c\x93\x09\x27\xfe\x7e\xe8\x60\xb8\xbd\xa5\xe3\xe4\xdf\x0f\xd3\xc9\xeb\x13\x89\x4d\xfb\xa1\xf5\xf2\x78\x7d\xc2\x77\xbb\x1f\xa2\xc8\x63\x0e\x81\x39\xef\x3a\x87\xe1\x69\x18\xdf\x9e\x42\x97\xd1\x07\x7d\x84\xe0\xcf\x30\xfe\x51\xba\xe7\xe3\xf5\x0c\xff\xc8\x7e\xb8\x6b\x93\xf5\x29\x81\xd6\x0f\xf7\xed\xc5\x08\xfb\x43\x3f\x74\xbc\x79\xbc\x37\x20\x21\xc2\x2d\x56\x7d\x4c\x3f\xd8\x00\xfb\xa1\x5d\xe0\x31\xfd\xe0\x60\x7e\x4b\xf7\x7c\x4c\xa7\x87\x74\x12\x4f\x3e\xe6\x32\x24\x3a\xbf\x75\xc8\x7a\xad\xfa\xbc\xdc\x59\x2f\xa1\x61\x34\xb1\x83\x0a\x5d\x46\x31\x64\x6d\x67\xaf\x75\x1c\x18\x1c\xfb\x29\x6d\xf2\x35\x39\xe0\x66\xd5\x4f\x6d\x19\xaf\xc9\xf1\x52\xc7\xd1\x56\xfe\x5a\xbc\xe1\xb2\xfd\x96\x56\xfb\x7a\x17\x86\x4b\x56\x3f\xa5\x63\xbe\xde\x1a\x70\x03\x4f\x6f\xf7\xe5\xb2\xb0\x8b\x65\x61\xfb\xa9\x43\xc8\xeb\x4d\x18\x41\xba\xaa\x19\xbe\xf6\x6b\xcd\xe7\xa5\xe6\x33\xfd\xb6\x3f\x06\x2c\x79\x36\xfd\xa3\x25\xd9\x4b\xcd\x47\x2a\xc5\x6b\x4e\x45\x96\xf6\x7e\x4a\xfe\xbe\x16\x70\x2f\x04\x5c\x8e\xbf\x68\x3e\xaf\xb7\x74\xa4\x1e\xea\xa7\x0c\x2d\x9f\xc5\x00\x12\xbe\xf7\x53\x47\x89\xcf\x62\x00\xa1\xc4\xfd\x94\xbe\xf9\x59\xd4\xa1\x3a\x49\x3f\xa5\x6f\x7e\x56\x7d\x60\x8c\xea\xc7\x29\xf4\x32\x0a\xbd\x40\x2c\xf8\x59\x3c\xc0\xdf\xad\x9f\xda\x97\x3e\x0b\x02\xf8\x33\xf4\x53\x0b\xea\xf3\x8a\x47\x75\xb7\x6e\x41\xf0\xf9\x5c\x84\xf4\xb5\xd7\xa9\x03\xf9\x67\xc1\x88\x48\xa9\x7e\x6a\x45\x7d\xe6\x7a\xb8\x42\x5c\xa7\x18\xee\x33\xdb\xe3\x2a\xb0\x33\x83\x7f\x3d\xb9\x6f\x52\x5d\x2b\xea\x33\xd5\x71\x41\xd8\x0f\xbf\xbc\x8c\xe2\x1f\xb5\xa2\x3e\x4b\x0d\xc4\x68\x75\x4f\xff\xcf\xd4\xfe\x91\xac\x9a\xe7\x9f\xc5\x03\x22\xb7\xba\x34\x83\x9f\x19\xff\x27\x62\x13\x35\xad\x51\x65\xb7\xfb\xcb\x7f\xa6\xea\x8f\xcb\x41\xc7\xb9\x9f\x55\x25\xc4\x70\xf4\x53\x8c\xff\x33\xb1\x7f\x64\x7c\xb1\xf8\xcf\x8c\xff\xa3\x4e\x24\xfb\xc2\xcf\x3b\x38\xb2\x33\x76\x6d\x09\x3f\x6b\x4a\x08\x1f\xeb\x4d\xb3\xfe\xb3\xa6\x84\x8b\xcd\xde\x8c\xfa\xc3\xc1\xf7\x4d\x47\x8f\x9f\x35\x25\x14\x83\xe9\xcd\x5f\x6e\x11\xf3\x03\xaf\xb2\x84\xc5\xb6\xa3\xe2\x66\x58\x38\xcb\x87\xee\x50\x34\x5a\x35\x36\x5e\x4e\xc1\x9f\x61\xf4\xe1\xb7\x29\x36\x36\x43\xc2\x3b\x7d\x2c\x37\x5d\x16\xd9\x40\x27\x4d\x9d\x50\x6c\x6c\xfa\x2a\xd2\x03\x62\x87\xe2\x5e\x36\x93\x07\x77\x96\x04\xa8\xa7\x34\x8c\x3e\xb0\xdd\xd4\xd3\x6b\x18\x03\xb9\xf5\x8f\xdb\x03\x01\x97\xd1\x5c\x58\x4f\x61\xb8\xe4\x57\x3b\x34\x6c\xb2\x59\x35\xd0\x77\x77\x27\xee\x9b\x84\xea\x1c\xf6\x69\x42\x21\x8d\xa4\x0a\xa3\xd7\xd3\x6d\xb8\xd7\xd7\x0c\xa1\xc3\x28\x06\x32\x0c\xff\x04\x93\x50\x43\x5d\x73\x51\x6f\x7a\x41\xd2\xc7\x63\xbb\xb4\x71\x35\xf0\x87\x33\x04\x77\xc3\x98\xde\x38\x04\x4f\xc3\x75\xa0\x63\xb2\x9b\x7a\x4a\xc3\x0b\x6f\x1b\xd6\x1c\xc0\x7f\xa7\xf3\xfe\x65\x33\xe4\x9e\x0d\x50\x24\xf5\xf6\xfe\xf7\x76\xcd\x98\xa8\xaa\x48\xa2\xcd\x80\xfc\xce\x3b\x96\x1d\x0a\x24\xaa\x46\x75\x7d\x1d\x87\xe0\x6e\x78\x01\x6e\x82\x1f\xc3\xe8\xfa\x16\x2a\x3a\xc1\x26\xd9\x3b\xa9\xa7\xb2\x0e\xd5\xb8\xd1\x45\x0a\x1e\x86\x27\xf8\x49\x3d\x67\x18\xae\x3f\xec\x7e\xf9\x35\xfa\xe1\x65\xfd\x61\xfa\x0f\x21\x11\xa1\x06\xd4\x83\xc7\xbc\xd8\xf3\x14\xec\x9e\xb1\x74\x87\xd1\x6d\xb4\xc8\xa1\xa9\x55\x3c\x40\x35\x6a\x6a\x67\x17\xea\x21\x83\x4f\x79\x7d\xb4\x43\xc1\x00\xd5\x00\x8d\x9a\xbe\x64\xbb\xe7\x9a\x07\xba\xa0\x6c\xbb\x86\x56\xe3\x87\x97\xf9\x25\x97\xd9\x14\x2e\xa2\xfd\xd2\x5a\xbc\xcc\xa6\x70\x18\x65\xb9\xd9\x7a\x98\x46\xeb\x4b\xe2\x12\xba\x8c\x62\x81\x5e\x1c\x86\xaa\x52\x54\xa3\x26\x25\x86\xd0\x66\x14\xff\x77\xe9\xff\xbc\xf6\x91\x05\xa1\x5f\x57\x0a\xf6\x1f\xd6\xec\xf4\x30\x9a\x46\xf1\x29\xb7\x46\xb7\xfc\x87\xb5\x5f\xf5\x34\xea\x2e\x6a\x1a\xfa\x25\x6e\x94\xcb\xc1\xa6\x87\x6b\xa7\x5d\xaa\x9e\x44\xa5\x8b\x54\x12\x83\xdd\xa1\x51\xc3\x26\xd9\xaf\x69\x38\x0c\x17\x3d\x72\x08\xdd\x46\x8b\xfe\xe2\x73\xd5\x52\xaa\x06\x38\x49\xeb\xf0\x36\xeb\xc2\x54\x39\xc4\xfd\x72\x58\xd8\x74\xac\xed\x97\x96\xe1\x6d\x1e\xc5\xbd\xe9\x90\x5c\xba\xd3\xff\x57\xcc\x3a\x0e\x52\xf4\x36\x35\x6e\x18\xe9\x9a\x66\xe5\xb6\x94\x40\x16\x55\x3a\xf0\xd4\xc3\x30\x8a\xef\x0b\xf7\x91\x86\xc1\x60\xa2\xff\x6d\xd6\x85\x09\x74\x9c\x7f\xb8\xec\xda\xce\x76\xbe\x03\x86\x51\x15\xc4\xaf\x27\x7f\xe9\xc6\x78\xf4\xc7\x7b\x1a\xad\x0f\xd5\x76\x72\x5b\x00\xdf\x10\x37\x57\x1a\x7e\x0c\xc3\x20\x7c\x71\x72\xba\x39\x1b\xb7\xc7\x4c\x12\x5e\x0f\xdd\x68\x51\xf6\x96\x5c\xe9\xe6\x6c\xd4\xfb\x66\x50\xfc\xb6\x3b\xf2\x66\x26\xf6\x7e\x1f\xee\xf9\x31\xfc\x03\xac\xb7\xcd\xf0\x70\xfb\x60\x00\xfd\x76\x7e\x8c\xcd\xfc\x18\xe3\x3a\x84\x0e\xa3\x45\xf0\x5b\xbb\x6b\x37\x67\x23\xcb\xd3\xc5\x7a\x4c\xf5\xf4\x19\xc6\x1f\x9e\xfa\x96\x25\xd1\x89\x94\x4f\xfd\x3e\xbb\xe0\xcb\xf0\x8d\x4e\x34\x6a\x4b\x27\xd8\x67\x55\x89\xbf\x9e\xfc\x31\x8b\xe6\x74\x7d\xcc\x16\x9f\xc0\x65\x5a\xf5\xf6\xb7\xb3\x71\x54\xa3\x26\xe6\x32\xba\x8c\x72\xd8\x29\xd8\xc3\xae\xc5\x74\x31\xa6\x61\xc7\xf0\xc4\x20\x85\xc7\xd0\x52\x1f\x71\x19\xc5\x1f\x5e\x97\xe0\x30\x5c\x7f\xa8\xbd\x6e\x58\x83\x80\xdf\xe8\xd0\x98\x87\x89\x3a\x48\x54\xc9\x85\x61\xa2\x22\xef\x6d\xbf\x6f\xf5\x6c\xd1\x0e\xe3\x6a\x67\xa0\x70\x3d\x2d\xc3\xa0\x75\xd7\xdb\x56\x15\x60\x2e\xed\xb7\xf6\x87\xb1\xbb\x61\xfc\xa5\x76\xf9\x61\xc9\x0c\xc3\xa8\xaa\xeb\xef\x98\xfe\x72\xd8\x38\x55\x2c\x7f\xdb\x6b\x7c\xd3\x4d\xbc\xb3\x1c\x43\x3d\x3d\x86\x6b\x5d\x77\xa3\x9f\x51\x74\x2d\x21\x3c\x4d\x11\xb8\xfc\xf4\x3b\xf4\x8f\x96\xab\x30\x7d\xf6\x5b\x0b\x7b\x5a\xa7\x82\x7f\x39\x13\xc4\xef\x98\x96\x0d\xb0\x75\xf6\x3b\xd5\x87\xf7\x2f\xd8\x3a\xc7\xb8\x85\x2e\xa3\x1b\x9b\xbc\xfb\x78\x0d\x7f\x80\xf5\x89\x26\x1f\x2c\x9f\x2a\x9b\xbf\x63\x9a\x9d\x60\xf9\x1c\x23\x84\xfa\x13\x41\xbd\x2e\x76\x0f\x53\x0f\xc6\xce\xde\xc5\xee\xe1\xad\x0a\xc6\xce\x21\x9a\x86\x35\x2a\xd8\x3a\x7b\x97\x08\x09\xaf\x68\x64\xef\x52\xb9\xfc\xed\x12\x01\x9b\xd9\x53\xc6\x74\xcf\x9f\x51\x8c\x43\x22\x24\x4c\x6a\x38\xdb\x77\xeb\xc0\xe1\x85\x0e\x5f\xfb\x21\xf5\x2b\x4c\x53\x58\x3e\x55\x27\xbf\x9e\xba\xe1\x01\xf8\x16\x3c\x0d\x43\x2b\xf3\xc7\x58\x0e\xc3\x20\xda\xad\x35\xca\x20\xba\x59\x5d\xfe\x6a\xda\x95\xc2\xda\x02\x62\x70\x7b\xbf\x0d\xfb\x6b\x48\x55\x6d\x84\x69\xfd\x0b\xbe\x59\xbd\x6b\x23\x4c\x2f\x47\xe4\x11\xbb\xac\x36\xa6\x59\x15\x9e\xcc\xdd\x0a\x58\x9a\x55\x93\x77\x72\xe1\x4e\xb4\xb9\xc1\x0e\x7a\x59\x6d\x4c\xeb\x00\xb0\x83\xf6\xae\x45\x23\xaf\xaf\xcd\x2a\xf5\xbd\x8b\x1b\xd2\xeb\x14\x29\x05\x3a\x23\x90\xb7\xab\x1f\x54\x03\x9d\x88\x54\x69\x66\x85\xa5\x73\x68\xc7\x4a\x53\x0a\x61\xc0\xbd\x7b\x7c\xde\x7c\x60\xbc\x1c\xda\x92\xd2\xf4\x4b\xf2\xaa\x34\x97\xf4\x9a\x86\x17\x4e\xef\xa1\xe1\x59\xdb\xca\xda\x86\xe8\xf9\x57\x0f\x1e\x34\x89\x9d\x1c\xf4\x32\x0b\x2f\xb2\xb0\xde\x5e\x66\x61\xf8\x6f\x0f\xad\xbb\x65\xbd\x0a\xee\x3d\x17\x6f\x9a\xeb\xe9\x31\xcc\xae\xf9\x89\xcb\xbb\x0f\x22\x07\x87\xb4\x8e\x65\x52\xc3\x03\x48\x75\xfa\xeb\xa9\x1b\x1e\x80\xf5\x8f\x56\xb7\x60\x0a\x9d\xc7\x29\xf4\x35\x0a\x4d\xf5\x50\xd7\x56\x30\x60\x20\x9d\xee\xc2\x8c\x0d\xd7\xef\xf9\xef\xdd\x30\x0a\x15\x58\x2b\x7a\x59\x86\x20\x7a\x71\x6a\x13\x54\x62\xd3\xcd\xd4\x3b\x7d\x68\x9d\x2f\x8b\x10\x54\xef\xed\x56\x15\x96\x25\x30\x0d\xae\xd6\x15\xb6\x35\x36\x78\x86\xab\x90\x7f\x3d\x85\xe1\xac\x7f\xf4\xcb\xcb\x28\xfa\xd0\xde\xb3\xad\xb2\xc1\xed\xa9\xb3\x9e\x42\x3d\x89\xab\xe1\xf5\x34\xdb\x1f\x12\x0d\xd4\xbb\x97\x7f\x54\xeb\xc9\xe7\x99\xed\x89\xa0\x9d\x76\x48\x1d\xde\x56\xf4\x60\xa7\x9d\x92\x30\xdb\x13\x01\x3b\xed\x94\x82\xb1\x97\x98\x07\x31\xe4\x53\x02\x66\x5b\x64\xc0\x13\xbd\x0f\xed\x6e\xdb\xaa\x1b\x3c\xb0\xa6\x04\xc9\xf6\xa9\x03\x8e\x58\x53\xfb\xe6\xb6\x12\x06\x2f\xc9\x29\x31\xf2\x98\x85\x91\x31\x68\x6a\x4f\x7f\x4c\x6e\x9a\x62\x59\x72\x61\xc7\x63\x71\x01\x87\xca\x3e\x24\x73\x1e\x4b\x61\x5a\x57\x87\x64\xce\x63\x16\x86\x99\x95\x79\xd1\xeb\xe1\x32\x5a\xdf\xa7\x53\xf7\x63\x56\x85\xed\xb5\x7b\x0b\x7b\x2c\x43\x10\xa0\xda\xc7\x70\xcf\x9f\x61\xfc\xa1\xf6\xb0\xc7\x32\x04\x7e\x9a\x7d\xe8\xd8\xfd\x98\x87\x61\xc0\xed\x43\x67\xb3\xc7\x4c\x4c\x73\xee\x98\xfa\x74\x2b\x50\x0f\xfd\x00\xc4\xae\x8f\x15\x28\xe4\x2d\xef\x0c\x38\xde\xf1\x58\x8a\x3c\x64\x57\x6d\xdf\x8f\xe5\x05\xe2\x5d\xfb\x90\xcc\x79\x4d\x6c\x14\x3e\xee\x16\x67\xaf\x37\x26\x84\xd1\xf7\x29\x66\x7a\xbd\x03\xbd\xa0\x94\x3e\xf2\xf5\xf1\x00\xf6\xd7\x29\xa9\xfa\xe6\xbf\x2e\x8a\x11\x24\x54\x5f\xaf\x69\x1a\x63\xbd\x22\x5f\xb3\x18\x8c\xb1\x53\xa2\xf6\xf5\x3a\x45\x35\xe5\xa9\x0f\x7c\xfd\xdd\xb4\xae\xd2\x79\xa7\x9e\xba\xe1\x01\x58\xc3\x30\x39\x68\x11\x9d\x3a\xd9\x7e\xfe\x6e\x04\x14\x4c\x11\xe9\xf3\x9e\x04\xcb\xe8\x94\x8a\xf3\x59\x75\x87\x61\xb4\x7b\x59\x7c\xde\xa5\xe1\x93\xd7\xa7\xd6\xf4\xe7\x05\xf7\x61\xc1\x4d\xad\xe9\xcf\x3a\x22\x0d\xa2\xf3\x72\x27\x8f\x61\xcc\xad\x3b\x31\x99\x60\x19\x9d\xda\x37\x3e\x6f\xf5\x70\xb7\xed\x53\xba\xea\x67\x21\x47\x7b\xe8\xd4\xd2\xf8\xac\x28\x21\xb4\xb8\x4f\x2d\x8d\xcf\x52\x8e\x86\xcf\x29\xf5\xf3\xb3\xa2\x04\xc3\xe7\x75\x79\x7c\xde\xd3\x3f\x92\x4f\xec\xfe\x33\xf9\x10\x9e\xdc\xcd\x09\x3f\x6f\x33\x28\x08\x3a\xb5\xcd\xfc\xac\x29\xc1\x02\x7a\x5d\xb7\xfb\x48\xc3\x0b\x7d\x84\xe0\x6d\xb8\xb8\x49\xdb\xcc\xcf\xc4\xfe\x91\xd8\x5a\x1a\x3f\x33\x24\x72\x54\x86\xd8\xf4\x67\xd6\x43\x2e\xac\xeb\x12\x41\x7e\x26\x1f\xed\xa1\x53\x4a\xd8\xcf\x8b\xf1\x47\xaa\x8a\xcd\x7e\x96\x6f\xb4\x7c\x4e\xe9\x27\x3f\x6f\xf4\xb0\x7c\x5e\x97\xc4\xd3\xcf\x02\xee\x47\xf7\x1b\x51\xf5\xe7\x9d\x1e\xb9\x2f\xfb\xd4\x96\xfe\xf3\x62\xa4\xe9\x93\xf5\x51\x76\x1e\xd2\x94\x12\x9e\x98\x9d\x19\x8d\xb6\x33\x74\x6d\x66\xe8\xba\xe8\xd3\xba\x5d\x15\xa7\x1a\xe8\x9b\xdb\xb4\xf3\x73\x55\x83\x5e\x43\x86\x7f\x82\x4b\x06\x06\x6d\x52\x69\x43\x29\x4b\xe9\xf4\x38\xd4\xb5\x84\x5c\xd2\x50\x1a\xa7\xc6\xa7\xed\x21\xe1\xa2\xd9\x83\x2b\x2f\x55\x74\xbb\x1a\x17\xe0\x10\xec\xf1\x81\xae\x41\x4d\x38\x0f\x09\xb9\x84\x25\x95\x0e\xc3\xf5\xb0\x8d\xbe\x85\x6a\xd0\x12\x00\xac\xac\xd3\xe9\xc4\xb3\x59\x5e\x87\x0d\xf4\x7c\xa9\x67\x2d\xf5\x84\x1d\xb5\xd3\x27\xb8\x9e\xdc\x75\xe9\x4f\x17\x9d\x6d\xea\xc9\x1f\x83\x39\x08\xae\x53\xd7\xea\xd9\x2c\xce\xd3\xe9\xf8\xbb\xd3\x56\x55\xd6\xe6\xb9\x98\x64\xac\x9e\x96\x61\x50\x84\x5b\x58\x2a\xba\x7c\x33\xbc\x91\x4e\xce\x3b\xe5\xdc\x5e\x0d\x74\xcd\x43\x6c\xca\x91\xb3\x1a\x25\xb8\x82\x1c\x95\xa7\xf6\x9f\x3c\x6b\xff\x61\x8d\x87\x9d\x8a\x43\xaf\x06\x46\xdd\xd5\xf5\xf2\x1f\x2e\xfc\xa1\x7a\x96\xd1\x85\xb9\xd9\x7a\x74\xc3\x9f\x61\xf4\x31\x34\x68\x09\x06\x86\x50\xf6\x10\x9d\x14\x9a\x53\x0d\x70\xdf\xd4\x97\x6f\x8f\x1a\x9c\x1d\x26\xc8\xf6\xf8\x60\x2a\x91\x11\xca\x15\x81\xaa\x81\x19\xe3\x01\x34\x9b\xc9\x87\xdc\xa8\x3d\xa8\x35\x67\x93\x5a\x94\x8d\x54\x8d\x3f\xc4\x9a\xd5\xcb\xe2\xf0\x56\xd4\xbf\xe8\x12\x53\x4f\xa7\x61\xfc\xf5\x3f\x78\x1b\x06\x57\x70\xe3\x73\x29\xa2\x9d\x8d\xbc\xac\x95\xd9\x4c\x49\x1a\x5e\x59\x49\xa1\x9e\xd2\xf0\x02\xac\xf1\x2f\x8f\x1f\x6c\xcb\xd8\xdb\x7a\x9a\x86\x8b\xf3\x6f\xbd\xbc\x4d\x03\xf0\x61\x6a\x65\x5e\xa6\x18\xcd\xa6\xa9\x45\x75\x79\xd1\xc3\x52\xda\x99\x1d\xaa\x9e\xd2\x30\x3a\x11\xc7\x5d\xb2\x57\x24\xe2\xa8\x3a\x0b\xbe\xd4\xd3\x63\xb8\x16\x5b\x57\x1f\xfe\x74\x1a\x3d\x53\x9c\x7f\x79\x75\xc3\xf1\xb3\x33\xb0\x76\xb3\xf4\x12\x1b\xb3\xfa\xd0\x1f\x9a\x20\x34\x7a\xa6\xbe\xf1\x5a\xfe\x43\xac\xee\xae\x9e\xb7\x3f\x11\xcb\x98\xbe\x2b\xf5\xb4\x0c\xa3\x0f\x77\xed\xf5\x0a\x1f\xcf\x9e\x54\xde\xf2\xb6\xcc\xa4\xe1\x34\x25\x1c\x6d\x38\x4d\x18\x4e\xaf\x5b\x13\x76\x4b\xaf\x61\x76\xc0\x9e\xe2\x71\x5b\x43\x13\xe1\x5b\xac\x0b\x52\x0f\xc3\x28\xba\xa6\x56\x92\xaa\xb6\xb8\x59\x3e\xaa\xd3\x13\x64\xa7\x8d\xa4\x79\x17\x75\xbd\x1e\x6e\x8b\x4c\xf8\x78\xf6\x14\xe3\xdf\xcb\x7f\x58\x42\x92\xf5\x96\xea\x61\x1a\xdd\x85\xea\xff\xb4\xe3\x24\xf2\xbd\x87\xd6\xdf\xed\xf5\x07\x17\xcf\x9e\x62\x6b\xdb\x35\x59\x72\xca\x0b\xea\xb6\x64\x84\x5d\xf3\x92\x3d\x31\x6d\xd7\xcc\x9b\x24\xe5\xee\x94\xb6\x6b\x26\xec\x9a\x74\x66\xab\x87\xcb\x68\x0d\x59\xff\xd7\xb5\xb7\x33\x4d\x62\xa7\xef\xca\x4e\xc5\xab\x55\xa3\x26\x5c\x8b\xab\x7b\x29\xc2\x49\xb4\x33\x95\xd5\x76\x26\xc5\xcd\x3a\x57\xe3\xd0\x5c\x75\x73\x29\xaa\x5e\x79\x25\x76\x5d\x8c\x24\x6c\x93\x2c\xe5\x54\x0f\xcd\xe8\x40\x17\xea\xd9\x04\x45\xba\x86\xeb\xd6\xda\xea\x52\x98\x12\x86\xca\xc1\x94\x57\xf5\xf4\x1a\xfe\x01\x26\x1b\x74\xcb\x45\x04\x51\x8c\x43\x2b\xd1\xb6\xc7\x84\xed\x71\x30\x7f\xd5\x4e\xdb\x1e\x13\xe6\xc6\x71\x68\xc9\x0d\xaf\x5b\x18\x1f\x07\x6b\x1d\x6c\x27\x85\xdc\x39\x68\x9c\xa7\xa9\x32\x87\x29\x02\x67\xce\x71\x68\x85\x0e\x6f\xcb\x88\x5e\x1f\x0c\x2e\xdd\x39\x2c\xfc\x51\x56\x93\x3e\x7f\xf5\xd0\x8c\xa2\xeb\xa1\x3e\xbc\x2b\x0f\x52\x6a\x68\x7c\x26\x09\x9c\x39\x53\x7a\xc0\xf0\xba\x45\xb8\xe0\x38\xb4\x30\x86\x39\x12\x36\x4b\xfa\x0d\xee\x1c\xde\x28\x60\xb2\x4c\x6a\xf6\x39\xbc\x57\xc3\x95\x73\xd0\x73\x65\x3b\x6e\x7e\x33\x50\x3e\xa5\x60\x0c\xd3\x74\x90\xa6\x5a\x5a\xd3\x6b\x1c\x2e\x9c\xe3\xd0\x22\xb2\x55\x93\x41\xf5\xe3\xd0\xca\xb0\x55\x93\x21\xf6\x29\x55\x62\x7a\x77\x80\x1d\x33\xa5\x8c\x4c\x6f\xc9\xc8\x93\x31\x0e\x71\xf5\x34\xa1\x27\x39\x52\x5c\x3d\xbd\x98\xe1\xd8\x39\x0e\xb1\xe4\x34\xfd\xe1\xb8\x39\x0e\xf1\xa4\xad\x9a\xcc\xa8\x79\xdd\xcd\x6f\xeb\x1b\x91\xcf\x79\x9c\x34\x6b\xe4\xf4\x7a\x86\xfd\x72\x9c\x22\xdf\xf4\xca\x85\xa5\x72\x9c\x22\x94\x2d\x95\x09\xdb\xe4\x38\xf5\x39\xb6\x49\x26\xb2\x4b\x8d\x53\x4a\x43\x78\x9b\x85\x99\x71\x9c\x52\x0f\xc2\x5a\x4a\x90\x24\x7a\xd9\xbc\x07\xbf\xcc\x71\x5e\x86\xd3\xf0\xaa\xaf\xb9\x34\x10\x4b\x3d\xa4\x7b\x1e\xa7\x36\x8d\x30\x49\xe0\x97\x99\x5a\x1b\xe1\x5d\x14\xf5\xba\xc7\x29\x6d\x29\xcc\x65\x28\x93\x9a\xee\xd9\x74\x82\x49\x72\x9c\x5a\x03\xe1\xd5\x18\x24\x1f\x4f\xf6\x19\x26\x5f\x90\x4e\xda\x1d\xd2\xbb\x28\x5c\x29\x07\xc3\x42\xeb\x69\x1a\x8e\xfa\xc7\x10\xba\x8c\x62\x78\x92\xbf\x69\x6d\x04\x8e\x97\xe3\x14\x53\xda\xf4\x98\x09\x75\xe3\xd6\xbe\x98\x96\x71\x30\x3d\x8e\x53\xbc\xaa\x12\xab\xd5\x00\x33\x68\x63\xb4\xe9\x31\xe1\x64\x39\x4e\xc9\xda\x34\xa1\x60\x7a\x1c\x67\xfe\x21\xd3\x77\xbd\x9c\xfe\xd5\xc2\xaf\x2e\xc1\xdb\xf0\x83\xbf\xd6\x88\x2c\xed\x92\x84\x4c\x51\x4c\x16\x4b\x66\x80\xb8\xe8\x48\x58\x4f\xa6\x18\x8e\x87\xb7\x66\x23\xbd\x57\xc3\x0a\x39\x9a\x64\x8f\xad\x90\xac\x40\x77\xe9\x8a\x23\x97\x67\x03\xd9\x1c\x46\x93\xe0\x58\x16\xf4\xb0\x03\xb2\xba\x51\x3d\x7c\x46\xd1\xb5\xf4\xf3\x65\x75\x64\x95\x7c\x1b\x0c\x1a\xdb\x69\xfb\x5f\xc2\xe2\x37\x74\xaf\x95\xcb\xdf\x0e\xfb\x5f\xea\x63\x96\x15\x0f\x78\x56\x0e\x86\x87\xd5\xd3\x30\x3c\x01\xfb\xed\x34\x8c\x51\xeb\xd3\x97\xf5\x11\x38\x5c\x8e\xa6\x6f\xdc\xfe\x74\x98\xfc\x46\x13\x23\x6e\x6f\x88\xf0\xb1\xbc\xee\x71\x0a\x56\x27\xb0\xde\x0d\xb9\x65\x38\x8b\x44\x35\x30\x92\xa9\xbe\xbd\x06\x77\xa2\xef\xe9\xb7\xdd\x77\xb2\xef\x5b\xb0\xfb\x06\x6f\xc9\x5d\x23\x6d\xcd\x4b\x24\xfc\xbe\x6e\xff\xa5\x59\x0e\x4e\x97\x83\xc1\x4f\xdb\xf9\x26\xaa\x81\x79\x1f\xee\x64\x19\xc6\xe4\xf0\xd6\x27\xb7\x17\x27\xec\x7d\xa3\x89\x03\xb7\x17\x27\x9c\x32\x47\x93\x80\xdc\x26\xec\x26\xf3\x48\x1d\xb0\xfd\x2f\x61\xff\xb3\x42\xf7\xf8\x00\x06\x8b\x5f\xea\x28\xf3\x58\xe0\x21\x6e\x7a\x5c\x52\x6c\x1e\xab\x79\x30\xed\x0d\x79\x60\xe4\x63\xb2\xc2\x76\x37\x2e\xed\xe4\x8f\x09\xf5\x94\xd4\x1a\x97\x4e\x99\x8f\x37\x50\x64\x9a\x1b\x97\xa4\xa6\x8d\x74\xcc\xcf\x9b\xda\x3f\x1f\x13\x04\xa6\xbb\x71\x5d\xee\xe3\x5f\xd7\x1f\x60\x7d\xcc\x92\xec\x78\x6a\x27\x4d\x6d\xab\x8f\x97\x1e\x32\x98\x8f\x4b\x3c\xac\x18\xd2\x6a\xe0\x0f\x35\x68\xb3\x1f\x12\xd9\xd1\x77\x79\xa7\xcd\x79\xf9\xf2\xe6\x53\x6b\xfd\xb5\xee\x86\xec\x76\x29\x76\x7a\x4d\x3c\xd4\x35\x1c\x97\xce\xa3\xaf\x75\x92\x97\x34\xed\xee\x5a\x7f\xf8\x92\xa6\x52\x3e\x6c\x12\x4c\x44\xac\x26\x8d\x27\xf9\x5a\x75\x86\xa7\xe6\xb8\xc4\xee\xaf\xf7\x55\xd8\x04\xc7\x25\x4e\xb5\x51\x90\xe9\x3f\x72\x6a\x1c\xa6\x3f\x4c\x85\xe3\x92\x92\xfc\x5a\x81\x81\xab\xe6\xb8\x24\xa5\x5f\x0b\x3f\x24\xf2\x1c\x72\xa0\xc8\xd7\xaa\x0a\x4c\x88\x19\xfa\x72\xaf\x74\xf8\x4b\x8e\xeb\x1f\xfc\x18\x2e\x41\x24\xa6\x7e\xad\x94\xc0\x82\x38\x2e\x69\xc9\x9f\x95\x92\x4f\x97\xcc\x87\xe0\xcb\x70\x91\xfa\x1f\xda\x8d\x82\xd4\x52\x28\x3e\x93\xfa\x23\xa9\x25\x83\x3f\x6b\x30\xa8\x3c\x96\xff\x5e\x16\xd3\xc0\xde\x98\x52\x3e\xe4\x7f\x59\x0d\x2c\x67\x7d\xca\xe7\x09\x80\xdd\xd1\x9a\xf6\x67\xfa\x7f\x5c\x00\x32\x19\x7d\x5e\x00\x1f\x36\x71\x66\x26\xaf\x27\xff\x21\x52\x4b\x1e\x12\xee\x9f\x25\x30\xac\x90\xe3\xfe\x07\x87\xe1\xc4\xdb\xfa\x16\x4b\x60\x26\xa8\x3a\xa4\x59\x7e\xde\xdd\x61\x9c\x1c\x72\x4f\xc8\xcf\x4b\xe0\x43\x7c\xf8\xa1\x85\xfb\x79\xbe\x60\xb3\x1c\xb7\xb4\xa0\xcf\x02\x04\xfe\x99\xe3\x96\x3d\xea\xb3\x6e\x89\xba\x99\x97\xae\xa4\xf3\xf3\x8a\x81\x29\x73\xdc\x5a\xfd\x36\x65\x26\x4c\x99\xe3\x96\x2a\xf5\xb3\x32\x00\xbf\xcc\xc1\xa8\x88\x9d\xb6\x43\x26\x1c\x33\x87\x9c\x08\xf2\x67\xc9\x02\x1b\xe3\xb8\xa5\x34\xfd\x2c\x6b\x91\x8c\x71\x78\xd7\xfc\x59\xe1\xf9\x91\x26\xcd\xf0\x67\x18\x7f\xa9\x63\xf2\xcf\xbb\xd5\x0f\xb9\x0f\x0e\x9d\xed\x7f\x16\xaa\x30\x2d\x0e\xef\x28\x3f\xf3\x30\x6c\x8c\xe7\x41\xad\xce\x89\x66\xaa\x71\x02\x4e\xc1\xd3\x30\x26\x8d\x96\xb4\x75\xe8\xe3\x17\x4c\x8b\xe3\xe6\xd2\x73\xf6\x99\x6a\x80\x4f\xb8\xf4\x96\x8d\x88\xcc\x36\x33\xe8\x6f\xbe\x99\x72\x86\x0d\xf6\xad\x91\x68\xb7\x5a\xb0\x26\xaa\xba\x5b\x3d\x7d\x82\x21\x84\xef\x50\xdf\xcb\x7d\x23\x0a\xe5\x4f\x6e\xd0\x9b\x59\x6d\xd8\x00\x1b\xdd\xfa\x2c\xed\x71\x2c\x60\x3a\xe4\xc2\xb0\xec\xd2\xb9\x50\x58\x6f\x88\x5f\x96\x4d\x92\x8b\x55\xc1\x19\x58\x50\x4f\x26\x02\x67\x29\x44\xc9\xed\x81\x62\xeb\xbb\x53\xe3\xdf\x1e\x09\x19\xfa\x16\x11\xb6\xe9\x8e\x3c\x3b\x0c\x43\xa8\x27\xd3\x9d\x73\xca\x8d\x72\x29\x5e\xbc\x1a\xd5\xb7\x3c\x21\x96\xca\x84\x57\x63\x00\x6e\x82\xa7\xe1\xf8\xef\x7f\xae\xce\xf5\xb9\x4e\xc9\x9a\x05\x9f\xcf\x21\x07\x89\x75\x4a\x50\xb0\x8a\xeb\x90\x2b\xc4\xb2\x9d\x71\x9d\x9c\x25\xaa\x31\xeb\xf4\x2c\xc1\xfc\x38\xe4\xf4\xe0\xdc\xee\xd5\x28\xf6\x97\xd3\x03\x33\xbd\xb3\x01\xce\x25\x43\x2f\x3b\x8c\xb2\x40\xec\x90\xd7\xc3\xb2\x67\xe8\x82\x67\xe8\xe8\xe2\x5c\x7b\x86\xae\x93\x8b\x65\xe8\xe3\xb7\x69\x02\x7a\xf7\xcb\xb0\x3f\xa7\x28\x7c\x31\x5d\x5a\x3d\x85\x61\xd0\x7b\xe8\xe3\x4d\x6f\x18\x31\x47\xbf\x34\x12\x49\x0a\xa6\xa4\x1f\x9d\x9b\xb9\x33\xd2\x57\x03\xe3\x16\xe7\x36\x99\x9a\x16\x82\xdb\x2f\x53\x50\xe5\x9e\x36\xcb\xda\x5e\x72\x26\x59\x8a\x75\xdf\x0b\x09\xa1\x47\x17\x43\x28\xa8\x7d\x33\xab\xfd\x90\x93\xc4\x6a\xd2\xf8\x16\x7c\x46\x47\xd7\x34\xd8\x78\xb9\x68\xbc\xec\xa7\x46\x22\x39\xbe\x60\xae\x1c\x4c\xe1\x5e\x4f\xee\x04\x1c\x2b\xff\xd0\xd5\x4c\xc1\x46\x0a\x6a\xd9\xda\xe7\x73\x35\x7e\x3c\x77\xf4\x65\x37\x4e\xe6\xd9\x3f\x99\xee\xba\x9e\x86\x61\x50\x50\x4b\xea\xf2\x57\x5e\x64\x36\x5e\x60\xad\xcb\x92\x02\x4e\x9a\x43\xde\x09\xcb\xbe\x99\x4c\xf7\x34\x98\xb2\x7c\x2f\x45\x9a\x6f\x26\x73\x1a\x43\x1c\x7b\x69\xa3\x59\x17\x37\x9a\x50\x27\xd2\xc0\x98\xe2\x69\xc8\xf1\xd0\x19\x9e\xaa\xf1\x01\x26\x61\x2f\x2f\x57\x18\x21\xc7\x38\xd5\xb7\x97\x2b\x4c\x92\x63\x70\x47\x59\x97\xd9\xe7\x22\xfb\x48\x42\x28\xda\xbc\x1a\xf5\x95\xac\x98\xb3\xd7\x6d\x9a\xc0\x24\x39\xe4\xeb\xe7\xdc\x51\x9b\xb9\xa3\x86\xdc\xf7\x96\x9d\x39\xd7\x4d\x3e\x11\x0f\xda\x9b\x93\xe5\x06\x86\xdc\xfa\x9c\x68\x6a\x33\xd1\xd4\x65\xd6\x54\xbc\x79\x35\x30\x12\xb1\xa6\x7d\x31\x17\xac\x8f\x63\x48\x84\xdd\x5e\x80\x37\x09\x2b\x1e\xb4\x33\x26\x6b\x13\x0c\xe6\xfe\xda\xce\x55\xb5\x99\xab\xea\xea\x12\xa6\xb7\xcc\x3d\x8b\x01\xe7\xfd\xd6\xb8\xbd\x00\x61\x6a\x1c\x43\x3c\x68\x53\x23\x13\x5b\x9d\xb2\x91\xac\xdb\x14\xbc\x49\x41\xfa\x39\xaf\xee\x95\x86\x74\x3c\x63\x50\x41\x5e\x76\xad\x64\x3a\xac\x31\xc4\xc8\x0a\x39\xdf\xac\x8b\x3c\xe4\x5c\xb5\xba\xf7\x1f\xf8\x3c\xaa\x2c\xe2\x76\xb5\xe4\x6a\xa0\x13\x7a\x1e\xaf\xee\xb5\x03\x57\xc8\xa1\x6b\xf3\x65\x0f\xc8\xd5\x49\x2a\xf1\x77\x37\x0f\xc2\xb0\xa8\x52\x89\xf5\xa4\xcf\x41\x3c\xf9\x18\xd4\xd1\x56\x37\x57\xa1\x00\xff\x29\xdb\xce\xea\x26\x15\x3c\x20\xc7\x94\x58\xef\x5e\x80\x70\x7a\x1c\xba\x7b\x5f\xb6\x37\x2e\xda\x1b\xa7\x56\xc3\x30\xa9\x68\x6f\x64\x92\x8c\x7a\xba\x0d\xf3\x2f\xbb\xe0\x34\xbc\x00\x87\x60\x7d\xfc\x40\xd2\x71\x06\x2c\xd5\x53\x33\x8c\xbe\xb5\x76\x6c\x9d\x64\x96\xb1\x31\xb5\x76\xec\x05\xb9\xe0\xf7\x38\x26\x6f\xf6\x96\xad\x93\x0b\xd6\xc9\xcb\x42\x69\x78\x2f\x86\xc1\x71\xc8\x03\xc5\x09\xca\xaa\xf1\x62\x24\x86\x3f\xc3\xf8\x78\xe9\x29\xf6\x99\x5c\x28\x0d\x3a\x74\x05\xbf\xec\x33\xb9\x60\x65\x1c\xba\x82\x67\xf9\x6a\x36\xd8\x37\xf9\xdb\x3e\x93\x2a\x57\xcd\x18\xe1\x7a\x6a\x86\xf1\xf1\xb7\xe1\x30\x8c\x99\x57\xdf\x76\x9a\x54\x42\x34\xd9\xc1\x96\xbd\x23\x59\x55\x63\x4c\x2d\xa9\x69\xd6\x9c\x64\x4d\xad\xcb\x69\xb1\x8e\x78\xf1\xf3\xd4\xba\x9c\xe6\x41\x56\xea\x61\xfd\xc7\x7a\x4a\xc3\xe0\x93\xfe\x97\x5b\xb2\x35\xad\xd5\x20\x80\x5c\xc5\x21\xeb\xc9\xe3\x07\xe7\x32\x71\x46\x3d\xdd\x86\xf9\xd7\x1a\xbf\xd5\x17\xd6\x02\x62\x8e\xfa\xbd\x6c\x95\x64\xc5\xed\x53\xd6\x36\x27\x79\xdb\x2c\x09\x32\xa6\x56\x73\x78\x35\xc3\x81\x72\xcc\x7f\x6f\xa7\x61\x4c\xb5\x74\xcf\xb0\x9e\x12\xa4\x24\x0f\x89\xae\xe1\x5d\x0d\x4c\xb5\x56\x73\x78\x35\x07\x97\x16\xed\x6a\x2b\x2c\xc7\x03\x72\xfc\xd4\x26\x16\xfb\xdf\xdb\xb5\xf6\x75\x39\xbe\xec\xa1\xb8\x60\x2e\x1c\xba\x05\x5f\x69\x0e\x48\x72\x00\xed\x2a\x2b\x2d\xc7\x59\xed\x9b\x55\x28\xf7\x4a\x19\x59\x17\x7c\x12\x47\x34\xc3\xee\x1b\xf9\x4f\x65\xf8\x73\xb5\x92\x6a\xe0\x2f\xa5\x1a\xa5\xbf\x12\x1e\x8c\x43\xf7\xe0\x2b\xcd\x2f\x2c\x8d\x74\x86\x46\xe2\x8f\x47\x60\xf7\x60\x8e\x8b\xed\xb2\xe3\x9b\x15\x4f\x46\x68\x47\x49\xeb\xca\x49\xee\x4a\xc3\xd3\x30\xbe\x52\xfa\x6c\x9a\x4f\x10\xc3\x3d\x74\x6b\xee\x2a\x28\xd5\xc0\xcc\x4b\xbc\xa7\x55\x0c\xda\x18\x99\xd0\xa2\x9e\xba\xe1\x01\x38\x05\xfb\x2f\x91\x73\x96\x95\x00\xea\xc9\x5f\x09\xc1\xa7\x7b\xd3\x65\x1b\xe3\xa2\x8d\x51\x11\x24\xac\x91\xce\x46\x7d\x0e\x03\xd6\xea\x69\x19\x2e\x3e\xd1\x9d\xe7\x5a\x5e\xb6\x70\x75\x1c\x21\xb5\x6b\x59\x4f\x59\x9c\x34\xda\x3a\xd6\xf2\xa4\x21\x7b\xed\x65\x65\xc7\xbe\x8e\x8b\x66\xcd\xd0\xda\xb1\x59\x73\xc1\xac\x79\x75\x29\x0d\xf6\x5f\x64\xa1\x97\xab\x8b\xb0\x36\x60\xb2\x1a\xbb\x8a\x74\xd6\xd3\x36\x8c\x0c\x5e\x34\x99\xae\x65\xad\x06\xae\x8c\x23\x86\xe1\x9f\x60\x24\xd5\x57\x48\xdd\xb2\x07\xe3\xa2\x61\x53\x17\x8b\x6b\x79\x35\xb0\xd2\x60\xd3\x1e\x61\x0b\xe6\x82\x87\xe3\xd0\x85\xe3\xda\xd6\x6a\x36\x57\x83\xe8\xbd\xbd\x5c\x69\xef\x0c\xed\x9b\xb6\x77\x2e\xda\x3b\x15\xa3\xb2\x6c\xef\x64\x42\xc5\x11\xa2\xe0\xb6\x56\x03\xc3\xe7\xa5\x20\x95\x65\x27\xc5\x05\xc3\xe7\xd9\x74\xac\xd8\xde\xc1\x37\xf9\x5b\x5a\xe4\x36\x7f\xd3\xde\x19\x62\x9f\x6d\x7a\xd3\xb0\xa9\x3b\xfa\x65\xf7\xc5\x85\x68\xf2\x91\x87\x46\x62\x8e\xa5\x05\x33\xa5\xcc\xdb\x82\xc9\x7c\x8e\x23\x4d\x2a\xef\xc9\xb4\x60\xa6\x14\xc0\xc7\x7b\x32\x9c\x16\x07\x73\x5d\x6f\x27\x7f\xdc\x4c\xf2\x38\x74\xe1\xb2\x94\x23\xb7\x1a\x2f\xbe\x92\xa4\x7a\xbc\xf9\xc2\x11\x71\xa4\x56\x9a\xfd\x0f\x59\x1f\x67\xa4\xb4\x31\xdb\x30\x17\x1c\x11\x87\x8c\xe8\xcb\xfe\x87\xac\x9d\x3f\x58\x44\x69\x3b\x1d\xe4\x5e\x0f\xbf\x52\xfc\x6d\x03\xe4\x62\x09\x45\xd9\xd6\xd7\xe3\x05\x08\x53\xe3\xd9\xf4\x97\xaf\xbf\x12\xd6\xc5\x91\xd2\xdd\x5e\x6b\x1e\x4c\x29\x29\xe3\xba\x8b\xee\xef\xf5\x42\xc5\x90\x15\x9d\x25\xf8\xd9\x40\x27\x53\x7d\x7b\x49\xc1\x90\x38\x64\xb1\x5c\xaf\xe5\x20\xed\x87\x29\x4d\xef\xf5\x39\x13\xb6\xc1\x53\x36\xf7\xf5\x5a\xc5\x40\x98\xf6\x90\xf1\x6f\xd9\xab\x90\x25\x7f\x46\xea\x00\xff\x5a\x97\x78\x49\x13\x1d\x59\xec\x56\xb8\x5e\xce\xbc\x54\x3a\x9b\x0a\x17\x4c\x85\xd7\x10\x6b\xda\xad\x70\xc1\x3a\x78\x0d\xcd\xfc\xe7\x1d\x10\xe6\xbf\x79\x88\x07\x3f\xaf\x06\x98\xf6\xe6\xa1\xc5\x6d\xc7\xc2\x05\x0f\xc2\x29\x23\xd8\xb2\xab\xe0\xa2\xab\xa0\xcf\x0f\x9f\x8f\xe4\x88\x96\x9e\x32\x26\xad\xcf\x1f\xff\xd1\x4d\x5a\xcc\xf6\x99\xed\xe1\x34\x38\x0f\x77\x62\x79\x82\xb0\xe8\xa9\xcb\xec\xf5\xf9\x7c\x0c\x93\xd9\xd4\xf5\xf4\xb2\xc9\x6c\xfd\xb0\xcf\x37\x4d\xda\xcf\xfc\x0d\x87\xbf\x69\x5b\x87\x2d\x69\x0b\x9e\x7d\xd3\xb6\x8e\x9f\x3f\xfe\x57\x32\x78\xea\x8e\x7b\xfd\xbc\x5f\xc2\xd2\x76\x36\x4d\xf1\xcf\x1b\x23\xf2\xd3\x4f\x5d\x7d\xaf\x9f\x57\x03\x8a\xd6\xcd\x43\xda\x8c\x1d\x00\x17\x1c\x00\xe7\xd1\xf3\x2f\xaa\xd1\xcf\x8b\xe5\x47\x4a\x4a\xab\xb1\x7f\xe0\x82\x11\x6f\xda\x76\x60\x8f\xbf\xf5\xdb\x20\xb0\x58\xf4\x67\xa1\xfa\xa3\x50\x0d\xc3\x1e\x28\x5c\x9d\x75\x57\xbd\xec\x08\xb8\x7e\x1b\x44\xa0\xd2\xe0\x94\x8b\x9b\x49\x16\xa7\x8e\xb8\xfb\x90\xe6\xb1\x69\xad\x63\xce\xb9\xcd\x04\x8c\x6c\x40\x80\x90\x73\xf7\xa1\xa5\xb5\x91\x13\x7a\xea\xd0\xba\x55\xc0\xa5\x1a\x81\xb7\x87\xe0\x34\x0c\xc6\x70\xdf\xe9\xbe\xa1\x92\xb2\x38\xeb\xde\x36\xcb\x6d\x44\x49\xcf\xc3\x7f\xa9\x85\xc8\xb4\x8c\xa7\xae\x63\xf6\x21\x5d\x62\xc3\xd2\x76\x2a\x4e\x76\x1f\x52\x1a\x36\x4b\xc0\x28\xf4\xd5\x89\x17\x37\x13\x2f\xce\x23\x35\xee\xed\x4e\xa0\x1d\xe8\xf2\xc6\x99\x64\xab\x81\xa9\xa6\xd4\xdf\x76\xe3\xdb\xa8\x27\x73\x2a\xa0\x75\x9f\xd2\x0e\x36\x6c\x67\xaa\xbd\xba\x9d\x79\xb1\x1a\xc5\x5d\x3a\xce\x6d\x7b\xf7\x6d\xd4\x9c\x99\xe7\xe1\xbe\x1f\xc3\x2f\x3a\x19\x82\x3f\xc3\x3f\xc4\x1a\x90\x26\xaa\x70\xb0\x99\xbe\x71\x9e\xdc\x51\x9c\xbe\x71\x33\x4f\xe3\x64\xa2\x89\x7a\x72\xdf\xc9\xbe\xf5\x97\x3a\xc8\x33\x61\xe3\xd4\xb1\x68\x3b\xc6\x7a\x33\xc6\x9a\xd9\xb7\xeb\x29\x0d\x63\x24\x97\x3e\x7e\x7b\x24\x20\x2c\xd3\x3d\xec\x6d\xdb\xd8\x86\xef\xde\x3c\x6f\x75\xb2\xfd\x39\x20\xec\xc9\x65\xeb\xbc\x8e\xd5\xc0\xe7\x70\xd9\x6e\x15\x3d\xaf\x06\x08\xcb\x93\x98\xf3\x3d\x56\x63\xe1\xed\x2e\x78\x1b\x7e\xf0\x36\x3f\xde\xae\x7a\x2c\x96\x36\x99\xd8\x61\xb3\x62\x1a\x1b\xec\x3b\x05\x4f\xc3\x75\x96\x55\x90\xae\x33\x3e\x6e\x66\x7c\x3c\x75\x05\xb6\x1d\x3a\xbd\x1b\x29\x38\x34\x12\x53\x10\x31\xd4\xe7\xe5\xcf\x31\x05\x1b\x29\xc8\xb3\x09\x53\x3d\xb2\x81\xbe\xa9\x2e\xba\xc6\xda\x66\x9a\xc7\x53\x57\x63\x2e\xb1\xb6\x99\xe6\x71\x9e\x53\x7f\x69\x7a\xc3\xd2\x76\xc9\xe6\xb1\xed\x07\xc8\xf4\x8f\xf3\x9c\xfe\xcb\xc7\x30\x18\xa2\x1b\xfe\x0c\x63\x80\x3c\x0e\x6d\x15\xc1\xac\x46\xad\xcb\x93\x4a\xda\xb6\xd7\x20\x73\x47\xce\x53\xf2\xc4\x5e\x83\xfb\x22\x7f\xd3\xfb\x65\x5f\xe6\xef\x8b\xfc\x3d\xdc\x89\x08\x0b\x2b\x9e\xea\xf2\xd6\xd3\x30\x8c\xbe\x79\x7e\x70\x4e\xc9\x6a\xa0\x6f\xaa\xb9\xfb\x92\x9e\xc2\x54\x93\x93\xc9\x27\xf6\xb6\x93\x21\xf3\x45\xce\x53\x6b\xde\xa6\xbe\x0d\x53\xdf\xa5\x80\x88\x7d\x69\x07\x67\x5a\xe8\xd9\x24\x66\x6c\xbc\x63\xfe\xc8\x53\x17\x86\xfb\xb2\x84\x80\x63\xe1\x54\x22\x02\x17\x96\xdb\x4c\x15\x79\xea\xc2\x70\xdf\xe6\xef\x1b\xfc\xdd\x4e\xc3\xb7\x61\x4c\xb1\xe8\x7d\x5b\x42\xc0\x8a\x77\x31\xdb\xea\xde\xb7\x45\x2f\x8c\x77\xb3\x49\xcc\xdc\x5e\xf3\xf0\x2c\x9c\xcc\x99\xbb\xf7\x6d\x46\x46\xf4\xf5\x25\x8b\xd4\xb6\x9f\xe1\x86\x4d\x6f\x36\x89\x19\x87\x5d\x6f\x86\x5d\xcb\x50\xe5\x1c\x92\xd5\xc0\x00\xa9\x59\x6f\xc7\x5d\x6f\xb8\x14\x4e\x85\x2e\x6f\xc7\x4a\x33\x21\xf6\x94\xbb\xc4\xbe\x2d\x21\xe0\x6a\x38\x9b\x44\x81\x4d\x7d\x4c\x32\x79\x29\x76\x64\xdb\x05\x71\xc3\x78\x37\xa5\xe9\x39\x97\x76\x35\x26\x42\x8b\x86\xe0\x30\x8c\x4d\x40\x7c\xd2\xa5\x06\x6c\x14\x64\x9a\x8d\xbb\xeb\xb6\xab\xe0\x86\x4d\x6f\xca\x31\x62\xdb\xa6\xc7\xc4\x91\xe7\x95\x7e\x5b\x0c\x81\xc8\xe4\xa9\x38\x45\x27\x8c\xac\x06\x3a\xd1\xee\xda\xbd\xb8\x3b\x69\xc2\xab\x26\x57\x02\xdc\x4c\x06\x39\xe5\x01\xb1\x1d\x7a\xbc\x3b\xbf\x52\x7f\x69\x3f\x3f\xe6\x7d\x3c\xe5\x60\xba\xed\xe7\xb7\x51\xc7\x75\x7a\xbf\x1c\xde\x60\x68\x77\xd3\x9d\xe9\x1e\x5e\x69\x30\xc0\xcd\xcb\x70\xba\xef\x64\xdf\x53\xf0\x65\xb8\x03\x4e\xc1\xc3\x30\x32\x27\x7a\x24\x66\x1f\x78\x0d\x9e\xf2\x7d\x74\x1e\xc8\xcd\x3c\x90\xe7\x7d\xfe\xc5\x6a\xe4\x3c\x91\xd5\x40\x54\x97\x47\xe4\x65\x0b\x67\xc3\xe9\x8d\xdd\x3e\x86\xcc\x0c\x39\x2f\xed\x84\x43\x67\x2b\x26\x84\x9c\xcc\xd9\xba\xb7\xad\x75\x4c\x01\x39\xaf\xe6\xb7\x97\x61\x74\xa2\xc5\xa2\xc2\x3a\xd5\xf8\x00\x93\x31\x6c\xad\xdb\x33\xd8\x49\x08\x0e\xc3\x25\x40\x64\xc1\x74\x72\xc7\x6a\x20\x19\xa6\x16\xb9\x8d\x78\x7b\x62\xd9\xca\x89\x63\x4f\xef\x3f\x93\x74\xa7\x51\xc6\x49\x1f\x37\x2b\x3e\x4e\xef\x3f\xd3\x74\x87\x13\xe1\xbc\x6e\xbf\xad\x71\x23\xe9\xe3\xbc\xb4\x58\x1c\xe4\xbc\x27\xc3\xe5\xb4\x75\x4c\x93\x6a\x92\x54\xbc\xf4\xda\x76\x12\xdc\x13\x3b\x38\x8b\x8b\xed\x6d\x27\xc1\x0d\x27\xc1\x29\xb7\x0a\x27\x72\xac\x06\xd8\x88\x86\xcd\x6d\x27\xc1\x8d\x98\xe4\xc9\x54\x9b\xf5\xf4\x18\x06\x63\x68\x4f\x76\x88\x32\x0b\x53\x4e\x0b\x3e\x87\x28\x6f\x84\x28\xcf\x4b\x32\xcb\x21\xca\x3b\x48\xaa\xcb\x6f\x4f\xc3\x60\x51\x51\xd0\xc6\xbb\x1d\x24\x55\x68\xdc\x66\xd1\x20\x8b\x8a\xb0\xe1\xcd\x00\xc1\xca\xaa\xbb\xbd\x9d\xcb\xb1\x1a\xf8\x9c\xf4\xdb\xaf\x61\x8c\x3b\xf5\x97\x96\x70\x41\x66\x93\xf6\x6b\xc3\xe0\x86\x61\xf0\x9a\xd2\x98\x1c\xd1\xcc\xb4\x8d\xf3\xa6\x91\xc0\x69\x1b\x37\x33\x35\x4e\xaf\xcf\xf4\x1e\x81\x18\xe6\x93\x25\xc0\x36\xb3\x38\xb2\x31\x11\xfb\x78\x0a\x4e\xc3\x0b\xf0\x25\x78\x1b\x2e\xd5\xe8\x96\x8a\x61\x6f\xc3\x0d\xc3\xe1\x94\xab\xc3\x4e\xd3\x9b\x66\xc4\x5b\xfa\x55\x9a\xde\x2c\x6f\x71\x4b\x69\x48\x13\x36\x99\x03\x56\x4a\x5a\x7a\x47\x81\x85\xf0\x54\x8a\x81\x9d\x5e\xc5\xf0\x46\x9c\xf2\x5f\xdd\x36\x0c\x6e\x96\xc8\x50\xe6\x81\x6d\x2f\x43\x26\x77\x9c\x4a\xe7\xb0\x6d\x18\x64\x76\xc7\x93\x49\xf1\xea\xe9\x32\x8c\x71\x6b\x63\xb7\x05\x90\xd9\x1d\xa7\x39\xd6\x16\x40\x26\x72\x3c\xe5\x60\xb0\x97\x37\x1a\xf8\x15\x4e\x73\xec\xb2\x08\x86\xa9\x6f\x32\x09\xe4\x76\xa6\xc6\xcd\x4c\x8d\xe7\xad\xcd\x60\x99\xb0\x8b\xb2\x56\x9b\x81\xc3\x9a\x37\x22\x96\xa7\x9c\x26\xf7\xf2\xfe\xc3\xf2\x54\xf2\x20\x70\x62\xc7\x6a\xe0\x2f\xbb\x3b\x11\x0f\x32\x54\xf9\xd6\xe2\x5e\xde\x7f\x50\xa4\x6a\x9a\x82\xb6\xd2\x6d\x58\xe9\xa6\x92\x34\x6c\xbb\x1f\xee\x45\x1e\xd4\x02\xb4\x95\x8e\xe9\x19\xe7\xad\x3d\x79\x7b\xeb\xd8\xfa\x1c\xbd\xed\xcf\x81\xdd\x6d\xca\x55\x60\xdb\xcf\x90\xd9\x1c\xa7\x7c\x02\x98\xd2\x91\x0d\x7c\x65\xfa\xed\x65\xf8\x87\xb7\xf5\x97\xd6\x3c\x60\x69\x3b\xe5\xb4\xc0\xe4\x8d\x6c\x6c\x84\xf1\x5e\x82\x3f\xc3\xe8\x44\xc7\x38\x7b\x0e\x32\x9d\xe3\xec\x3a\xaf\x39\x6e\x78\xa3\xda\xf4\x35\xb5\xe6\x6d\x8e\xdb\x0c\x1c\xee\xd2\xaf\xb6\x75\x65\xa4\x73\xbc\x58\xa4\x65\x6f\x87\x0e\x33\x41\xe3\x54\x82\xaf\xfd\x78\x6f\x40\xb0\xf0\x69\x9a\x3c\x56\xe9\x60\xa5\x9b\xfd\x72\x27\xaf\xe1\x0f\x70\x0a\x16\xfb\x20\xb4\xf8\x52\x90\xa5\xd3\x38\x56\x03\x7f\x29\x11\xf6\x98\x7d\x50\xce\xe5\xec\x92\x27\x8f\x0f\xd9\xb0\xe2\x9d\x5d\xf2\xc4\x0e\x88\x1b\xc1\xc3\xb3\x77\x75\xe2\x75\x09\x2b\xdd\xec\x3a\xf4\x3d\x5e\x3b\x0f\x45\x98\x44\xc1\xe3\x6d\x14\x71\xbf\xb3\x6b\xa5\xd9\x51\x90\xb9\x1b\x4f\xf9\x49\xec\xd7\xa4\x82\x4d\x6f\xea\xf2\x9f\xb5\x70\xd9\x60\x84\x74\x0a\x4e\xc3\xe8\x5b\x9b\xc0\x6b\x1e\x44\xf6\xc6\xb3\x6b\x77\xb5\x4f\x20\xb3\x37\x4e\x65\x2c\xd8\x8e\x1e\x66\xf6\xc6\x6b\x0e\xc3\xaf\x61\xf4\x2d\xb5\xeb\xb5\xc6\x01\xef\xc0\xd9\x75\x50\x70\xfc\x30\x73\x28\x4e\xa5\x2c\xd8\x0e\xfe\xdd\xf0\xe1\x9b\x0a\xdd\xdf\xb6\xd2\x31\x79\xe1\x1c\x3a\x4d\x3b\x72\x97\x79\x07\xe7\xb8\xff\x92\x76\x88\xb9\x09\xd9\xe8\x18\xff\x10\x3c\x0c\x17\x1b\x29\x7c\x7c\xdb\xd0\xc6\x7a\xbf\x73\xf8\x6d\x8b\x49\x44\xe7\x9e\xdd\x03\xb5\x1a\x40\xfb\x9b\xe2\xc4\xb7\xed\x6f\xfb\xc7\xfc\xd6\xff\xe0\x66\xf8\x46\x1c\xf6\x25\x78\x18\xc6\x48\x24\x29\x7e\x96\x87\x30\xc4\x9d\x5e\x43\x3f\xef\xf7\xf0\x7b\x9b\x43\x6b\xdf\x7e\x6f\x1b\xf1\xb7\x53\x37\xdb\xdb\xf1\xb7\x1b\x0e\x70\xa7\x32\x95\x38\x4f\x61\x35\xf0\x97\x12\x09\x3f\xef\x3f\x3f\xf2\x39\x2f\xa6\xb6\xe3\x72\x99\x99\x70\xea\x66\x7b\xff\x4c\x41\xc4\xe5\xce\x79\xf8\xed\x34\xfc\x01\xd6\xc7\x9b\x82\x08\xa9\x9d\x13\x16\xfa\xc7\xd9\x04\x1f\x96\x3d\x9e\xbc\x38\x7e\x5c\xf5\xf8\x89\x83\xc1\xe9\x97\xde\xe6\x48\x1e\x26\xe0\x9b\x8c\x76\x7e\x9c\x80\xef\x61\x02\xbe\xc9\x28\xde\xc7\x09\xf8\x1e\x96\x2a\x9e\x8c\xd2\x7e\x42\x36\xa6\x87\x99\xf8\x2e\xc6\x13\x3f\x71\xfa\x2f\x11\x1c\x3a\x19\xf3\xfb\x84\x82\x42\xab\x51\x5f\xc9\x7c\xf9\xf5\xb4\x0c\xd7\x48\x78\x25\x59\x4f\xaf\xe1\x0f\xb0\x3a\xe1\xaa\x78\x98\x74\x6f\x32\x30\xf7\x61\xe6\x3d\x36\x20\x6e\x2e\x8d\x84\x22\xf8\x09\xb8\x4e\x4d\xde\x26\xd6\x93\x07\x88\xaf\x0c\x91\xaa\xf9\x2b\x11\x5f\x39\x79\xfd\xf6\x44\x4b\xc3\x5c\xe4\x38\x41\x3e\x4e\x89\x57\x0d\xf4\xdd\x43\x70\x37\x5c\x02\x24\x86\xdf\x4e\xc3\xe8\x5b\xf4\x56\xed\xfb\x6a\xb0\xef\x5b\xf0\x30\x3c\x8b\xb0\xd1\x05\x87\xe1\x52\xa4\x18\x4c\x57\x4f\x8f\x61\x30\xdb\xad\x91\xf0\x8a\xec\x09\xd6\xc9\x67\x92\x9a\x87\x65\x8e\xd9\x68\xe8\xe4\x12\x7c\x19\x1e\x78\x5b\x03\xa4\xac\xad\x06\xf4\x59\xec\xb2\x4f\xc8\x84\xf3\x30\x41\xde\x65\x86\x90\x09\xe7\x61\x86\xbc\x93\xd9\x03\x1f\x27\xc6\xab\x06\xbe\xb2\xa7\xe0\x66\x18\xec\x93\x97\xe0\x6e\x18\x23\x19\xa7\xe0\x30\x8c\x29\x1e\x7e\xfb\x35\x0c\x3e\x99\x21\x58\x1f\x8f\xd4\x79\x67\x1f\x1a\x49\x9e\x86\xc1\x3e\x71\x08\x76\xdf\xdc\xad\x86\x3a\xa1\xc0\x7e\x58\xd2\xf9\xec\xd3\x6f\x8b\xab\xe0\xb6\x35\x43\x8b\xe4\xa2\x78\xac\x06\x24\x84\x08\x7b\x79\x2e\x69\xf0\x09\x7f\xe5\x4a\xc3\x98\xcb\xec\x82\xfd\x39\xe4\xd8\x24\x23\xcb\xe0\x53\x0d\xf6\x6d\xf8\x31\x5c\xa7\xea\xd4\x92\xba\x4d\xef\x9b\xf4\x8e\x26\xb8\x19\xbe\xf0\x76\x08\xee\x86\x27\x32\x30\x1c\x82\xd3\xf0\x0f\x30\xc7\x7d\x9b\x82\xf0\xcf\x9a\x0c\xcb\x7d\x5c\xb5\xfa\x61\x06\xbd\xc9\x8b\xc0\x7a\xd2\x00\x61\xcb\x39\xbb\x48\x75\x7b\x15\xc3\x6d\x6b\x32\x6a\xea\x09\x59\x76\xaa\x71\xd7\xdb\x22\xd5\x6d\x0a\xc2\x89\xeb\xec\x22\xd5\xbd\xfe\xf5\x8d\xd9\x11\xa9\x6e\xb3\xfd\xcd\x0d\x26\xc9\x6c\xf7\xf6\xc7\x83\xb0\x29\x39\x78\xef\x30\x5c\x33\xcf\xa4\x3e\x8f\xd3\xe3\x3d\x4c\x8f\x37\xf3\x72\x27\xaf\xe1\x62\x36\x5e\x49\x3e\x21\x3b\xd0\xc3\xd4\x77\x93\x57\x92\x4f\x74\x73\x2c\xed\x40\x43\xf4\x56\xc4\x68\x35\x6a\xdc\x43\xf4\xee\xe6\x58\xe4\xbe\x9b\x2c\xd3\xfb\x38\xe7\xdd\xc3\x9c\x77\xe7\x90\x1c\xec\x96\x27\x70\xf2\x9a\x8c\x11\xae\xa7\xd7\x30\x06\xd8\xa7\x60\xf7\x8d\xf4\xe3\x2c\xf9\xfd\x38\xe9\xdd\xc3\x34\x77\x33\xb5\x2e\xbb\x19\x19\x69\xee\xce\x71\x6a\xdc\x6b\x1a\xc6\xe7\x68\xe6\x15\x62\x5a\x0d\xf0\x89\xd6\x65\xdf\xe2\x41\x04\x95\x9e\xcc\x19\x58\x4f\xdd\x30\x48\xa5\x25\x25\x4f\xb0\x87\xe9\xed\x66\x6a\xed\x0c\x33\x32\x4d\x4f\xcc\x3c\xf4\x38\xbf\x5d\x35\x6e\x7c\xce\x2d\x78\x18\xc6\xa4\xc5\x29\xf8\x31\x5c\x67\xaa\x21\x66\x1b\x66\x64\xf8\x7e\xcd\x14\x6b\xca\xf4\xf4\x30\x1d\xde\x39\xae\x3f\x58\x8d\x9e\x50\x15\xca\x6a\x04\x46\xa4\x81\x7a\x96\x06\x57\x45\xfa\xaf\x3d\x22\xc8\x95\xa1\xdd\x6a\x58\xbc\x0f\x12\x58\xfb\xcf\x30\x81\x69\x63\x62\x84\x43\x3d\xbd\x86\x7f\xff\xfd\x4f\x30\x96\xf8\x71\x72\xbd\x87\x59\xf4\xe2\x10\x43\x0f\xf3\xf9\x60\x5d\x8c\x26\xda\xec\x6d\xf8\x01\xec\xb7\x3f\xc3\xe8\x5b\xfc\x32\x3d\x1d\x70\x14\x8b\x43\x22\x61\x9a\xee\xb0\x48\xc5\xa1\x8f\x9f\x16\x20\xb3\xce\x19\xc1\xd4\xfb\x0f\x33\xf0\xa1\x91\xe8\x44\x23\x99\xa6\x20\xcb\xb7\x8f\x6e\x78\x19\xc6\x48\x9a\x3a\xb1\xfa\x02\x1b\x53\x1c\x5a\xcd\x2a\x2c\xf2\xb0\xa6\x7b\x1c\x22\xec\xb4\xac\x9d\x24\x95\x56\xf3\x34\x8b\x4e\xb2\xa8\x76\xab\xe9\x9d\x90\x9e\x60\x43\x1b\xfb\xdc\xfe\xca\xa2\x59\x1c\xb7\xfa\xb6\x08\x9e\xd8\xf2\x86\x76\xab\x69\x0a\x4e\x52\xb0\x93\x54\x61\x49\x01\x4f\xb1\x38\xb4\x6c\xc3\x22\x18\x86\xaa\x38\xb4\x6c\xc3\x9c\x4b\x43\x15\x9d\x43\x1f\xe6\xca\x63\x03\xa9\x60\xb4\xb7\x85\x37\x31\x18\x9b\xce\xa1\xa5\x15\xa6\x20\xfc\xc6\xe2\x98\xa7\xe0\xd7\xf0\x07\x58\x03\xb4\xa4\x40\x5c\xeb\x39\x0c\x9b\xde\x41\x7a\x4f\x8d\xc4\xf4\x0e\xd2\x5b\xdb\x52\x98\x91\x69\xbf\x1a\x7e\xdb\xac\x89\x3a\x23\xe7\xd0\xe6\x1b\x26\x6c\x90\x63\xb5\x5b\x85\x45\x42\x6c\xb0\x4f\xdc\x82\xb7\x61\x70\xac\xe6\x32\x2c\x99\x83\xf4\x0e\xd2\x24\xcd\xb1\x49\x8e\x95\xfa\x22\xfb\xd5\xc3\x1c\x7c\x57\x48\x8e\x2b\x2c\xf6\x61\xb2\xbd\x38\xa4\xb8\xa6\x15\x40\x44\xbc\x9e\x23\x0c\x37\xc3\xd5\xf7\xa9\x05\x98\x56\x00\xe1\xe1\x16\x4c\xe4\x5f\x4f\x69\xf8\x07\x58\x9d\x78\xcb\x83\x73\xda\x15\xe2\xaa\xf4\x96\x07\x63\x53\x9c\x52\x8a\xd3\x5b\x1e\x42\x5a\xcf\x21\x79\x92\x56\x73\x61\x91\x8a\x53\x02\x3b\x4d\x6f\x38\xa7\xc5\x29\x81\x9d\x16\xc1\x30\x36\xc5\xd9\xd4\xb7\x19\x39\xc9\xc8\xfa\xf8\x65\xa5\x01\xc6\xa6\x38\xa5\x2b\x2f\xef\x6d\x8b\x7b\x9b\x84\xd2\x32\x05\x61\x91\x0a\x86\x54\xd7\xd3\x6b\xf8\x03\xac\xb7\x2d\x82\x61\x7a\x8a\x53\x9a\xf5\xb2\x7e\x85\x2a\x21\x71\xde\x9c\xb4\xe5\x6d\x09\x7e\x65\x27\xb3\xe4\xd5\xd3\x30\x8c\x4e\xba\xe1\x34\xbc\x00\x4f\xc1\xdb\xf0\x8b\x4e\x34\x12\x53\x70\x6d\x6c\x90\x5a\xae\xcb\x6a\x17\x8b\x78\x4e\x4d\xc3\xb2\x76\x80\x38\xd9\x2b\xdc\xb7\x29\x88\x80\xd9\x38\xa5\xe3\x6f\xf3\x20\x0b\xae\x4f\x1d\x59\xb6\x09\x8b\x82\x25\x71\x6a\x71\x6f\x8b\x02\x38\x9f\x05\xef\x63\x9f\xd8\x16\xa6\x30\x82\xc5\xa9\xc5\xbd\xcd\x9a\x30\x82\x5d\x3e\x56\x6c\x6b\x63\x08\x98\x0d\xde\x99\xd6\xd3\x63\x18\x1f\x2f\x3e\xd9\xe6\x41\x9a\xb5\xa6\x24\xf2\x36\x05\x37\x29\x18\x7e\x7b\x1b\x46\x27\xd2\xf4\xb6\xd5\x2e\xd8\xb7\xce\xa9\xad\x7a\x7b\xdf\x41\x08\xec\xc9\x94\x7a\x0f\xd3\xe0\xb1\xf1\x00\x56\x27\x5e\xc5\x70\x37\x8b\x53\x9a\xde\x63\xa9\x09\xfb\xd6\x15\x12\x61\x8f\xd5\x80\x87\xa4\x92\x02\xf8\x98\x35\x69\xed\x9a\x62\xb6\xc7\xc2\x94\xce\x67\x53\xcc\xf6\x58\xed\x82\x59\x2b\x9a\xf6\xcb\xc7\x6a\x00\x22\x69\xcf\xa9\xbd\xf8\x31\x61\x61\xed\x8a\x26\x85\xfb\xf1\xe2\x86\xcf\x5a\x34\x71\xd5\x63\x19\x0b\xb3\x56\x34\x69\x7a\x8f\x19\xf9\x21\xbd\xb5\xe6\x1f\x4b\x4d\x84\xdb\x9e\x53\x6c\xff\x78\xfb\x87\x2b\x5b\x34\x4d\xda\xe3\xcd\xeb\x21\xbd\xb5\x5f\x3e\x56\x73\xe1\xef\x16\x4d\x1b\xfa\xe3\x35\x0f\x4b\x5a\x34\x1d\x84\x1f\x9f\xee\x10\x79\x7b\xf9\x38\xf4\x58\xf4\xc2\x92\x16\x4d\x73\xf9\x9a\x91\x61\x49\xbb\x22\xfe\x90\xad\xb1\x5e\x1e\xfe\xd5\x46\x86\xa8\x21\xf8\x35\x8c\xff\x10\x81\x5f\x8b\x04\x78\xc9\x05\x6f\x5a\xeb\xa9\x1b\x46\x27\x3a\xe2\xbe\x26\x30\xe2\x6a\xa3\x69\xed\xbf\xde\xad\x50\xda\x24\x9a\xf4\xda\xd7\x04\x7e\x49\xe0\x7e\x0b\xfe\xd7\x09\x08\xac\xed\xf4\xb5\x1a\x00\x43\x5b\xb0\x60\x40\x3d\xb9\x13\x32\xb4\xfb\xf6\xda\x87\x97\xdc\x39\xa5\x06\xbc\x56\x03\x5e\x52\x52\x3b\xe1\x67\x4a\xc2\x79\x2e\x9a\xf6\xcd\xcf\xdb\x12\x82\x68\x4f\xe6\x9a\xab\xa7\x61\x18\x23\xd1\x2c\x7d\x16\x09\x1f\xf4\xab\xa6\x7d\xf3\x33\x61\x3f\x52\x50\xbb\xd5\x67\xfd\x0a\x61\xb2\x97\xcf\x9b\x9f\xb5\x03\xf8\xdc\x05\xcb\x0e\xd4\xd3\x67\x18\xe3\xf6\xdb\x26\xec\x47\x86\xd6\x8a\xfb\xac\x06\xc0\x14\x18\x4d\x47\xae\xcf\x07\x06\x04\xcc\x5e\xa9\x0d\xf2\xb3\x5c\x81\x61\x30\x78\x71\xfc\xc4\x67\x86\x86\x61\xf0\x4a\xed\x9b\x9f\xa7\x01\x01\xb3\x57\x6a\xdf\xfc\xac\x34\x20\x04\x36\x78\x1f\xfb\x38\x89\xdf\xc3\x24\x7e\x71\xc9\x36\xf6\xb3\x00\x81\x61\x30\x2e\x69\xa8\x3f\x8b\x04\x18\x06\x2f\xe6\x82\xa9\x27\x89\x04\x98\x02\xaf\x54\xdf\x3f\xef\xf7\x28\x49\x12\x57\x33\x1c\x86\x57\x4d\xda\xbc\x05\xbf\x86\x8b\xab\x2e\xb1\xfd\xcf\xfa\xd5\x0f\xfa\xd5\x94\xb9\xe2\x67\x11\x0c\x0b\x60\x5c\xd2\x6a\x7e\xe6\xd8\x1f\x39\x56\x27\x9a\x9f\x77\x2b\x98\x02\x83\x8e\x3f\xf5\xe4\x01\x62\xed\x5f\x12\x20\x3f\x6f\x62\x3f\x6e\x62\x62\x88\x9f\x29\x08\xaf\xbe\xb8\x24\x40\x7e\x5e\xfb\xf0\xe3\x8b\x4b\x3b\xe1\xcf\x92\xf9\x47\xc2\x72\xa5\xa5\x8d\x8e\xcc\xdc\x17\x17\x75\x65\xa6\xef\x63\xa3\xf4\x2b\x3a\x11\x3f\x4e\xd8\xf7\x30\x45\x5f\xf0\xf6\xf6\x49\xb9\xef\x55\x03\x9d\x0c\x75\xa2\x35\x9f\x07\x14\x29\x3a\xb9\x3c\xcc\xdf\xc7\x06\xb8\x8a\xbb\x55\xca\xab\xef\x49\x58\x36\x83\xc1\xf2\x8f\x53\xf3\x3d\x4c\xbb\x17\xcc\xfe\xff\x38\xdd\x5e\x35\x30\x12\xea\x85\xa9\xd0\xd6\x6a\xa0\x93\x54\xdf\xdb\x9d\x90\xd9\x68\x97\x60\x96\x3d\x36\xb0\xe6\xb9\x48\x52\x31\xac\xd5\x28\xc2\x32\xc6\xfc\x71\x02\xbd\x6a\x6c\xc0\x53\xf0\x6b\xf8\x03\x9c\x82\x7f\x82\x71\xdb\x22\x0b\x49\xca\xc5\xee\x61\xce\xbc\xe0\x0d\xeb\xc3\xc4\x79\x6c\xa0\x08\x21\x77\xd9\x54\x0c\xeb\x93\x08\x4f\x8d\xbb\xa9\x13\xed\x3f\x89\xf0\xd4\x93\xf5\x4c\x1f\xe7\xd0\xab\x06\xfa\xc6\xbd\xe6\x93\x72\xb1\xab\xc6\x02\x1c\x82\x3d\x6e\x30\xdb\xed\x01\x6e\xf7\xcd\xb2\xe7\x5c\xae\xa9\xf0\xd3\x87\xc9\xf2\x82\xb7\xe5\x8f\x93\xe5\x55\x03\x9d\xd0\xfc\x99\x2a\x58\x52\x8d\x01\x78\x08\x9e\x86\x31\xf3\xdc\xc1\x53\x9e\x77\x0f\xd3\xe2\x05\xf3\xb8\x3c\xa9\xda\x24\x0f\xf3\xdf\xc5\xdd\xd5\x89\x69\x02\x43\x6c\xf0\x0a\xf8\xc9\x26\x53\x48\xa2\x0a\x49\xdc\x62\xcd\xa6\x75\x99\x28\x9f\x7c\xa5\x47\x62\xae\x42\xe5\x91\x60\x66\x91\x7a\xd2\xa4\x35\x8a\xb0\x5b\x5f\xb9\xfd\x95\x58\x69\xbc\xd4\x7d\x9c\x0e\xaf\x1a\xe8\x24\xf4\x39\x5a\x69\x09\xc7\xb7\xb8\xc5\xb1\xf2\x77\x7b\x98\x0e\x2f\x6e\xae\xe2\xb4\x55\x94\x79\xf1\x2e\xd9\x81\x52\x51\xa9\x4f\x22\xfc\x34\x6e\x71\xec\x65\x9a\x5c\x64\x1f\x6a\xed\x79\x79\xed\xc0\x95\x2d\xba\x18\xc2\xe6\x4f\x66\xd1\xbb\x52\xa4\x92\x63\xdb\xc3\xc4\x78\xc1\xdb\xc4\x7a\xba\x0d\x63\xcd\x8b\x82\x0a\x56\xad\x46\xd1\xbb\x8b\x63\x2f\x49\xfb\x44\x78\xea\x29\x83\x89\x13\xe5\x55\x03\x7d\xff\x83\xbb\xe1\x01\x38\x05\x7b\x80\x20\x15\x2f\x76\x9e\xb4\xf9\x93\x19\xf3\x4e\x19\x35\x52\xc1\xaa\xd5\xd8\x78\x3b\x04\x7f\x86\x31\x40\xaa\xa2\x69\x3b\x27\xf3\xe7\x05\xf3\xc4\x3f\x79\x5b\x28\xc1\xce\x19\x5d\x8c\xac\xf0\xd3\x87\x89\xed\xa2\xdf\xf1\x07\xd5\x28\x6f\x89\xf7\x44\x3c\xea\x19\x5a\x43\xaa\x09\x52\x0d\x94\xfc\xd7\x6a\xbe\xbd\xe2\x50\x17\x39\xba\xa6\xda\x86\x4d\x26\xc4\x0b\x46\x1d\x3e\x69\xc3\x26\x33\xe2\x9d\x0c\x5f\x7a\x98\x16\x8f\x8d\x17\x30\xdf\xb6\x05\x33\x11\x86\x1a\x9d\x87\x91\xec\x96\xe3\x88\x47\x3d\x75\x4e\x76\x2a\xbc\x6a\xe0\x2f\x87\x3b\x09\xc3\x3f\xbc\x4d\xba\xab\x96\xc7\xc3\xa4\x78\xc1\xf2\x3c\xf5\x74\x19\x46\xdf\x5d\x7d\x5b\xbc\xd3\xef\x8d\x01\x49\xf5\xb4\x0c\xd7\x91\x8b\x99\x53\x1e\x67\xce\xab\xc6\x87\xb7\x35\x92\xe5\xbf\xc4\xb5\x8a\x2e\x61\x9c\x3b\xaf\x1a\x98\xd3\xa9\xbf\xf4\x6a\x86\x17\x5d\xc8\x70\x9f\xdd\x82\xaf\x93\x73\xa7\x68\x62\xce\xa5\x61\x33\xc4\xe7\xaa\xab\x5c\x0d\x7c\x8e\x44\x82\x22\x5f\xab\x11\xc8\x07\xa9\xbe\xb7\xfb\x2e\x21\x70\xe5\x3f\xd8\x9f\xc3\xd9\x11\xa9\x86\x67\x67\x70\x76\x78\x12\x73\xa6\xbd\x6a\x60\xdc\xb4\x06\xe4\xf0\x34\x0c\xf2\x39\x55\xba\xb4\x19\x34\xe1\x81\x77\x86\xa4\xd0\xf0\x46\x43\x0f\x3c\xe6\x2b\xad\xa7\x69\x38\x0a\x96\x70\x1a\x9e\x86\x41\xf6\x4f\x0d\xd0\x22\x01\xde\x73\x31\xb4\xe5\x0d\x0b\x55\x14\x57\x0e\x19\xd7\x9d\x6b\xaf\x1a\x18\x09\x6f\xb7\x72\x78\x4f\x86\xd3\x5c\x0c\x49\x8a\xe1\x1d\x65\x90\xb0\x31\x05\xfb\x2b\xe1\x29\x13\xda\xc1\x6d\xa2\x4c\x9a\x28\x65\xbb\xce\x69\x46\x86\x2d\xf2\x64\x32\xc5\x7a\xd2\x5f\x22\x55\xde\x29\xe5\xd2\xb9\xf2\xaa\x81\x4e\x9a\xe1\x6e\x78\x00\x56\x27\x96\x9e\x34\x51\x0e\xc9\x95\x69\x1e\x44\x50\xeb\xa9\x6b\x95\x9c\xde\x51\x18\xe2\xca\x24\xa8\xf5\x34\x0c\x17\x9f\x0c\x89\x1b\x5b\x2e\x13\xde\x73\x57\x7a\xdc\xa6\x20\x82\x59\x4f\xeb\x57\x36\x51\x32\xb3\xde\xa9\xbb\x19\x67\xd6\xab\x46\x4d\xda\xd0\xba\xb4\xe5\x92\x09\xf7\xce\x94\xf4\x0c\x53\x90\xbe\x74\xa9\xaf\x0c\x6f\xd5\x41\xc2\xde\x86\xbb\xe1\xc0\xdb\x21\x78\x19\xe6\x5f\x1a\x7e\x0d\x83\x4f\x78\x25\xc9\x64\x7d\x68\xe0\xb2\x2e\x2f\x0e\x30\x2c\x82\xe1\x54\x17\x4c\x6d\x5f\x4f\x61\x38\xf1\x76\x17\xbc\x0d\xbf\x80\xa7\xe0\xcf\x30\x66\x47\xa2\x20\xcc\x9a\x34\x68\x0e\xed\x6d\xe1\x4d\x0c\x06\xcd\xd3\x2a\x46\x58\x22\xa3\x4c\xc8\x99\xd2\x53\xc2\x6b\x1e\x39\xf9\xce\xf4\xe7\x78\x07\x87\x53\xdd\x7d\x48\xd3\xb3\x2d\x32\x93\x84\x95\x42\x92\x26\x2c\x4d\x94\x43\x8a\x6b\x9a\xb0\x70\xaa\x8b\xa1\xe5\x9a\x56\x76\x90\xab\x2f\x86\x96\xab\x4d\x94\x4c\xca\x77\x26\x8f\x9f\x99\x96\xb1\x74\x9a\xd3\xdd\x4c\xa6\xd5\x80\x24\x61\xc3\xf0\x32\x8c\x49\xd3\xba\x4c\xcb\xd8\x24\x61\x25\xed\xd3\x84\xa5\x41\x73\x68\x5d\xa6\x09\x8b\xaa\xca\x31\xb4\x2e\x6d\xe7\x4c\xd8\x39\x6f\xdd\x28\x64\x5a\xf4\xd2\xce\x39\xd2\xb0\xff\x12\x12\x42\xb7\x44\x99\xd6\xaf\xe8\x62\x97\x26\x95\x77\x40\x38\xd5\xc5\x90\x50\x4a\x4b\x08\x24\xf2\x3b\x53\xf2\x3b\xad\x76\xd1\xfc\x29\x33\x62\xa6\x27\x0d\x9e\x77\x31\x35\x69\x0a\xb2\xad\x46\xf5\x3d\xb5\x8a\x6d\xfe\x4c\x9a\x3f\xbd\x1d\x2d\x5d\xed\x25\x3d\xef\x74\x03\x95\xcb\x62\x06\x06\xcf\x90\x05\x30\x97\xae\xf6\x72\x71\x76\xa4\xd2\x2d\xcf\x0e\xad\xa2\x32\xc7\xe5\xb2\x98\x81\x0b\x5e\x4c\x69\x35\x36\x96\x26\x8d\xa5\xcc\x2e\x50\x4f\xee\x9b\x62\x46\x5b\xc6\xb2\x36\xb6\x98\x77\x57\x2b\x6d\x59\xb5\x40\x58\x6d\xc8\x49\x24\x97\xb7\xba\x45\x7a\x6b\x27\x59\xa6\x37\xbc\xfa\x42\x06\xb6\x5c\x56\xd2\x90\x5d\x30\x64\x60\x63\x8a\x41\x36\x16\x3a\xf9\x83\xaf\xd1\xe3\x9c\x83\xd5\xc0\x88\x24\xb3\x6c\x4b\x4d\x18\x4d\xcf\xd4\x54\x6f\x8b\x1b\x04\xe3\xc6\x94\xb8\xd9\xde\xf2\x10\x8c\xdb\x0e\x4d\xf5\xf6\x74\xd0\x96\x3a\xb5\x6c\xb7\xa5\x3e\x3c\x07\xef\x43\xf2\x70\x5b\xea\x6f\x4e\x47\xd7\x48\x3c\x1d\x34\xb1\x4e\xad\x66\x9b\x58\x99\x93\xb0\x1d\x3a\xce\xa9\xfe\xf3\x93\x08\xdd\x6d\x66\xff\x6d\x85\x64\x73\xf2\x24\x9c\xb6\x27\x0f\x06\xd9\xfb\xd0\x9c\x6e\xef\x11\x70\x38\x0c\xf9\xec\x38\x71\xe1\xc3\xc4\x85\xed\xe0\x6d\xa8\x13\x17\x56\x03\x03\x1c\x86\x5f\xc3\xe0\x73\xe9\x29\xdb\x27\x5f\x54\x2a\x89\xa9\x33\xb8\xcd\xb7\xcc\x60\xd8\x8e\xd3\xb0\x29\xc8\xd9\x91\x14\x7a\x2c\xca\x60\x99\x8d\xa9\x55\xf1\x78\xf3\x45\x58\x70\x33\x61\x1f\x6b\x91\x34\xdf\xca\xb8\x91\x8f\x25\x1c\xdc\x13\x63\x4a\x38\xd9\x4e\x9b\x88\x16\x8e\x19\xfa\x4b\xaf\x21\xd8\x69\xdb\xd1\x0c\x4f\xc3\x18\xb7\xb6\xa5\xc7\x12\xee\xe1\xa4\x49\xdc\x3c\x9e\x34\x18\x6c\xef\x43\xab\xe2\xf1\xd2\x42\xa5\x93\x90\x7f\x0a\x73\x27\xb2\x81\xb9\xbc\xd4\x89\xe7\x92\xc6\x5e\x5b\x03\x1e\x4b\x38\x14\x40\x09\x56\x3a\x78\x98\x52\x91\x0d\xf6\x2d\x52\x79\xc5\xc1\xaa\xdb\x74\xaf\xe9\xc4\x88\x0f\x13\x23\xde\xba\xd7\xcc\xc7\xa2\x0c\x71\xcb\x11\x87\xbe\xd2\x1b\x3b\xa2\x98\xdb\xa1\x85\xf8\x5a\x8b\x84\xeb\x63\xc8\x09\xc0\x19\x13\x1f\x66\x4c\x6c\x87\xf6\xb6\xd7\xfb\x0f\xec\xb7\xb7\xee\x4c\xf3\xb5\xe0\x83\x47\x64\x04\xaf\x80\xf3\xf5\x4a\x83\x35\xb7\x1d\x5a\x80\xb6\xe6\x32\x39\x62\x3b\xb4\x83\xbf\x9e\x06\x5a\x73\x7d\xf8\xb3\x35\x37\x51\x50\x25\x42\xa7\xbc\xd7\x3b\x0a\x62\x9e\x43\x57\xd7\x69\x6b\x2e\xf3\x21\xb6\x43\xab\xe1\xf5\x56\x0d\xb3\x6e\x3b\xc4\xf6\xaf\x95\x4b\x98\x75\x23\xc4\x10\xaf\x95\x4b\x04\x3f\xb7\x43\x7b\xdb\x6b\x45\x8a\xb6\xdf\xd0\x99\xf0\xb5\x22\x85\x64\x8a\x11\x52\xd2\x5e\x9f\xa9\x5e\xd2\x5b\xbb\xd5\x67\xc2\x7e\x64\x7b\xed\xe0\x9f\xad\x18\x30\xdb\x36\xdd\x99\x3a\x13\x62\x35\xd0\x89\x56\xc3\xe7\x8d\x1d\xa1\xd2\x4d\xb7\xa0\x4e\x7a\x58\x0d\x10\x56\x9b\xef\x67\x1d\x88\x66\x5b\x79\xb0\xe5\x67\x8e\xfd\xc8\xb1\x62\xfb\xcf\x7b\x32\xcc\xb6\xed\x10\x7f\xdb\x3e\xcb\x84\x86\xb7\x27\xed\xf3\x9e\xfc\x91\xb0\x62\xe4\xcf\x84\xa5\x35\x37\x64\xf3\xf8\xbc\x47\xc0\x7e\x7b\xeb\xa2\x9b\xc9\x0e\xd9\xc0\xcc\xbb\x6f\x73\x2c\x32\x17\xb6\x53\xe7\x87\x9f\xa5\x3d\xec\xb7\x4d\x77\xa6\x4c\x5f\xc8\x06\x66\x47\x52\xf3\x67\xd6\x44\xb9\x95\x76\xf2\x6e\xc6\xe9\x0d\xab\x81\xbf\xd4\xd1\xf6\x67\xd6\xa4\x35\x37\x24\xf0\x7e\x5e\xf3\xb0\xc8\x46\x68\x76\x7e\x5e\xc5\xb4\xcf\x86\x84\xd2\xcf\xa4\x42\xf1\xe8\x08\x09\xa5\x9f\x65\x2c\x0d\xb1\x72\x10\xcb\x9f\x97\x2b\x6d\xa8\xf2\xed\x72\xc2\xc2\x6a\xb4\x1a\xf7\x69\x78\x1a\xde\x05\x93\xed\x97\x6d\xa8\x8b\x36\x54\x66\x73\x78\xd6\x91\xee\x04\x7c\xc2\x7c\xd8\xf5\x74\x19\x1e\x80\x43\xb0\xfb\x46\xc5\x0d\x9d\x4d\x96\xca\x43\x3f\x4c\x58\xd8\x98\x1f\xe8\x71\xc2\xc2\x6a\xe0\x2f\xb9\xe6\x9d\xb0\xb0\x1a\x0d\xb0\x46\x22\x52\x31\xab\x60\xa4\x3f\x67\xb9\xef\xc5\xbe\x35\xc0\xed\x01\x16\x67\x44\x36\x75\x22\x81\xc7\xac\x81\x4d\x37\xc3\xce\x1a\xf8\x30\x6b\x60\x24\x4d\xf0\xcb\x5e\xab\xeb\x80\xee\x96\x94\xc8\x4b\x95\x4c\x1e\x66\x0d\x0c\x1d\x2b\x98\x2c\x90\x0d\xf6\xdd\x05\x6f\xc3\x18\x20\x6f\xe5\x96\x0d\xb1\x0b\x86\xd8\xd0\xb1\xc2\xc9\x04\xab\x31\x91\xb2\xff\x10\x9c\x86\x31\x40\x2e\xc0\x65\x67\x56\xe6\x09\x8c\xf4\x5f\x2e\x0f\x90\xfb\xfc\x9f\x2e\xd4\x98\x34\x90\x0d\x4c\x07\x2d\x24\xeb\xd4\xd6\xb1\x10\xfc\xdc\x98\x3b\xe9\x71\xf6\xc0\x87\xd9\x03\x23\x87\x06\xaa\x85\xc8\x34\x82\x21\xdb\x1e\xb3\x03\xb2\x81\xbe\xb9\x58\x96\x3d\x63\x99\x18\xb0\xb1\x6a\x7d\x3d\x75\xc3\x13\x70\x0a\x0e\xc3\xb5\x2a\xa4\xa6\x3b\x4d\x60\x35\x40\xe0\x61\xf8\x33\x8c\xbf\x9c\xfa\x4b\x69\x63\xcc\x1e\x78\x4b\xc2\x2d\x5b\x75\x99\x18\x30\x92\xf7\x27\xab\x2d\xbf\x8d\x3d\x22\x43\x9d\x98\x54\xb4\xd3\xca\xff\x6a\xa9\x6a\x49\x35\xc0\x2f\xa9\x91\xe8\x78\xb1\xe0\x30\x7b\x4b\x1e\x2e\x3b\xcc\x2e\x9a\x6f\x99\x17\xe3\x71\xf6\xc0\x6a\xac\xff\xfe\x27\x0f\xca\xac\x65\x17\xd8\xd5\x28\xca\xa6\x3b\xf1\x57\x16\x61\x53\x6e\x59\xce\x35\x58\x8d\x0b\x70\x17\x7c\x1b\xee\xe8\xc4\xf0\x30\x3c\xf1\x76\x0a\x4e\xc3\x18\x09\x37\xf6\x65\xcf\xd8\x85\xf2\xd0\x29\x6f\xad\x75\xa5\xfb\x4e\xf6\xad\x4e\xb4\x27\x2f\x84\x2b\xa7\xdc\xb2\x96\x0a\x41\x57\x03\x33\x1f\xea\xc4\xf4\x86\x0d\x38\x0f\xde\x10\xaf\xcb\x6b\x1f\x4e\xaf\x29\x6f\xad\xa5\xba\xd1\x0f\x13\x1a\xde\xcc\x5c\xf0\x2c\xbb\xc0\x2e\x98\x86\x53\x8a\xd4\xb2\x69\x98\x99\x0b\x6f\x6d\x06\xeb\xda\xfe\x78\xd2\x5b\x2b\xce\x2e\xb0\xeb\x22\xbd\xc5\x27\x97\xe9\x7d\x91\xde\x5a\x71\xaa\xa1\x52\x8d\x06\x78\x0a\xbe\x0d\x43\x4c\x8a\x4f\xec\x02\xcb\xcc\x85\xc9\xc4\x1d\x0f\xd3\x17\xb2\x81\xbf\x14\x9f\xdc\xe6\x58\xf8\xc2\xa6\xb6\x3c\x27\x2c\xac\x06\x3a\xd1\x02\xbc\x2d\x12\xee\x92\xae\x29\xf5\x85\x59\x0d\xd1\x28\xc2\xdf\xa7\x24\xb3\x1d\x66\x99\xc7\x30\xa5\xd5\x2c\x1b\x90\x99\xd0\xf0\x96\x9b\xd0\xba\xb5\x27\x33\x73\x61\x1e\x5a\x80\xb7\x29\x08\x4b\x71\x1e\x5a\x3b\xb7\x19\xf9\x26\x61\x43\x7f\x69\x51\x80\x84\x86\xb7\x9c\x8a\x96\x5d\x60\x99\xc7\x30\xe5\xad\xb5\xba\x19\xb9\x93\x91\xb5\x00\x6d\x40\x66\x42\xc3\x5b\x2e\x48\xab\x7b\x6f\x83\x67\xec\x2d\x17\xa4\xd5\xb5\x55\x2f\x18\x90\xf3\xd0\x34\xd8\x80\xbc\x60\x40\x6e\xed\x30\xdc\x0c\xe3\x2f\x69\x1b\x5b\xaa\xb1\x52\x0d\x4c\x03\xef\x38\x96\x1d\x66\x17\x7c\x61\xf3\x74\x27\xe6\x6f\x58\x8a\x5b\xa3\x8a\xb1\x14\x4f\x5d\x8d\x8d\xb7\x53\xf0\x63\xf8\xc5\xdb\x53\xf0\x67\x18\x7d\x6b\x27\xec\x16\x1c\xb0\x0d\xa7\x37\x76\xbb\xc0\x2e\x54\x78\x4e\xd3\x64\xe8\xf0\xb4\x10\x41\x9d\xa7\xd6\x8e\xad\xb9\x4c\x68\xd8\x9a\x56\xf1\x30\xa9\x60\xe4\x4d\x26\xe7\x7b\x9c\xde\xb0\x1a\x1f\x60\xfe\xe5\x30\x4d\x60\xd6\x4d\x6f\xa7\x23\xdd\x77\xb2\xef\x10\x2c\x1e\x44\x3d\x95\xf4\x06\x39\x4c\x13\x58\x73\xf3\xd4\x6a\x18\x5e\xc5\xac\xa7\xc2\x32\x15\xcf\xb2\x7b\xea\x1a\xfc\x78\xad\x06\x5b\x73\x99\xb9\xf0\xb6\x1a\x30\xbc\xb1\xc3\xe1\x34\x4f\xf1\xb7\xad\xb9\x4c\x58\xd8\xe4\xcd\xe2\x84\x85\x0f\x13\x16\xa6\x9c\xa1\xd6\xf4\x76\x04\x87\xd4\x3c\xc5\xf6\xd3\xcc\x86\x10\xe9\xd6\xa4\x1a\x4d\x6f\x47\x93\xa4\x92\x8c\x9d\x66\xb6\x49\x66\xd3\x34\x4c\x2b\x52\xf0\x53\x6d\x4d\xb2\xca\xb6\xdf\x05\x3f\xd5\x26\xe7\x96\x35\xad\x48\x21\x16\xba\x35\x5a\x48\x96\xbd\x56\xd7\xac\x8d\xbf\x31\xbd\xd4\xb3\xec\xb5\xba\x60\x04\xce\x53\x4b\xca\xb6\x5f\x26\x32\x4c\x26\xce\x7b\x96\x6d\xbf\x6b\x92\x07\x35\x3b\xd3\x9b\x17\x02\xaa\x5b\x93\x64\xb3\x33\xeb\x82\x6d\x38\xe5\xc4\xb5\xa6\xf5\x2b\xd8\x86\x5b\x93\xb2\x30\x3d\x0d\x93\xac\xa9\x8d\x71\x7a\xcd\xc3\xab\x35\x4f\xed\x80\x76\x66\x65\x5a\xc3\x3c\xb5\x00\xc3\x1c\x1b\xe4\x58\xcd\x7c\x98\xde\x30\x02\xb7\xc6\xab\x9a\x15\xde\xfe\x03\xab\xd8\x0b\x30\xbc\xcf\xc3\xf6\x9b\xed\x3c\xfe\xa2\x1a\xd9\xa9\x75\xc1\xaa\x9b\x4c\x69\x51\x4f\xcb\xf0\x53\xb0\xd8\x28\xbc\x6c\x11\x38\x9d\x66\x0c\xbb\xa9\x2e\x98\x77\xb3\x49\x67\x0e\x2f\x5b\x78\x98\xa6\x39\xc0\x56\x5d\x66\x45\x4c\xf9\x31\xad\xf4\x1e\x91\xfc\x5a\x29\x52\xe9\xaf\x85\x87\x69\x36\xe9\x6e\x2a\xa5\xf2\x30\x75\x62\x36\xe9\x57\x76\x25\x65\xb2\xc4\x6c\xf4\xae\x58\x69\xed\x1d\xa5\x56\x6e\x2f\x2d\x7b\x98\x32\x75\x62\x36\x6d\x34\x36\xdf\x32\x59\x62\x93\x1f\x13\x33\x26\xa2\x41\xc1\x37\xf5\x39\x66\x51\x78\xa0\x66\xa3\xc5\x78\xa5\x29\x08\x3b\x6d\xb6\xa1\x91\x78\x91\xc3\x03\x35\x9b\x16\xa2\x1d\x4f\x99\xe7\x30\x9b\x16\xa2\x0d\xb2\x0b\x06\xd9\xdb\x0a\x60\x7a\xa3\x49\x6e\x34\x5a\xfb\xe9\x1d\x3c\x49\x6f\x6d\x4b\xf6\x47\x65\xfa\xc3\x6c\x52\x48\x96\x55\x23\xd8\x69\xb3\x69\xff\x59\xde\xc1\xe1\x98\x9a\x4d\xda\x81\xed\xb4\x0b\xa1\xd2\xf7\x29\x9a\xd8\x4d\x95\xe9\x0f\x93\x59\xa7\x9e\x65\x3b\x2d\xd3\x1f\xde\xa7\x48\xb5\xbc\xb1\xa3\x6c\x4b\xca\x19\x6a\x2d\xef\x28\xa8\xdf\x72\x5b\xae\x2c\x13\x16\x76\xda\xbc\xa4\x00\x2e\xaf\x7d\x78\xaf\xe6\x75\xf8\x6d\x8f\x1b\xac\x79\xd1\xb2\xb3\x6c\x90\x5d\x8b\xaa\x91\x74\xb7\xe5\x8d\x1d\xfe\xa8\x29\xf7\xa6\x65\x7f\xd4\x05\x63\x6a\x6b\x7a\x7b\x7b\xd9\xc2\x03\x35\x99\x6e\xa2\x9e\x2e\xc3\x10\x4e\x92\x42\xdb\xd2\x13\xa6\xd5\xbc\xa4\xe9\xd9\xb4\xca\x3c\x87\x4d\x5e\x66\x6b\x9b\x91\x61\x43\x6d\xa6\xf7\x36\x05\xe1\x98\x9a\xd7\xe5\xb7\xc3\x30\x24\x85\xf6\xfb\x6d\xc2\xc2\xb4\x9a\xd7\xe5\x4e\x5e\xc3\x1f\x60\x7d\x8e\x55\xa3\x4d\x0a\x4a\xa8\xda\x2a\xca\xf4\x87\xb7\xf5\xc2\xed\x35\x8f\x78\xeb\x94\x8f\xd4\xda\xa6\x20\xcc\x9f\x29\xf7\xa6\xb5\xad\x1a\x6d\xa8\x46\x97\x64\x96\xbd\x57\xd7\x26\xc7\x4a\x01\xb4\xf7\x2a\x73\x24\xe6\xa5\xe3\xd0\x63\x09\x01\x3b\x67\x5e\x62\x7b\xdb\x39\x17\x2c\x9b\x29\xf7\x26\x27\x43\xac\x06\x06\x48\x03\xc4\x7a\x2c\x0a\x1e\x52\x50\x73\x69\xc7\xd3\x05\x13\x65\x32\x39\xc5\xb3\x6c\xa2\x64\x56\xc4\x76\x49\xd9\x79\x64\xf0\x59\x30\x4a\xde\x72\x98\x5d\x76\x3c\x5d\xa8\xe8\x92\x57\xfa\xed\xc7\xf0\x8b\x4e\x2e\xc1\x9f\x61\xfc\xa5\x36\x03\x7b\x98\x32\x87\x62\x5e\x52\xbb\x6c\x8b\x5c\xa8\xe2\x72\x37\x3a\x8b\xac\xd7\xab\x18\x05\x59\x52\xce\x50\xcb\xd6\xc5\x05\xeb\x62\xbb\xfe\xc1\xaf\xe1\x9a\xf9\x5b\x62\xfd\xf5\x9e\xfc\x62\x8f\xb8\xc5\xf6\xaf\xb9\x0a\x39\x14\xdb\xa5\xe3\xd0\x6b\x2b\x06\x72\x28\xe6\x2d\xb6\x7f\xad\xd5\xc0\x57\x34\xe5\xc7\xb4\x5e\x2f\xc0\xb7\x24\x5f\xde\x32\x85\xd8\xba\xb8\xde\x22\xce\x2d\x8f\xde\x65\x17\x52\x66\x54\xcc\x5b\xfc\x6d\xeb\x22\x53\x2b\xde\x4d\xea\xb9\x5d\x48\x17\xec\x89\xed\xe2\x75\xd0\x7a\xbd\xf9\xc2\x57\x34\x6f\xed\x24\x9f\x49\x05\x7b\x62\xca\xbd\x69\x7d\x56\x76\xe0\x1d\x9a\xb7\xb4\x31\x5b\x17\xd7\x57\xa4\xbc\x9b\x68\x62\x5f\x51\xe6\x5f\xcc\x5b\x4a\x9a\xad\x8b\x4c\xc4\x78\x37\x5a\x5c\xd7\xe7\xe5\x8a\x38\xf1\xbb\xe9\x2c\x68\xa3\xe3\x82\x99\x31\x6f\x6d\x30\xf6\x15\x5d\x30\x3a\xa6\x9c\xa1\xd6\xe7\x75\x09\xa7\xd1\xbc\xb5\x65\xd8\xe8\xb8\x10\x4d\x7e\xcb\x13\x79\xd9\x85\x74\xc1\xe8\x98\xb7\x56\x83\x8d\x8e\x4c\xdb\x78\xcb\x13\x79\xd9\xba\xb8\x50\x25\x25\x6f\xad\x86\xcf\x14\x84\x75\x31\x6f\x6d\x02\x9f\xd7\xe5\x47\xc2\x4a\x14\xd8\x29\x74\xfd\xc8\x83\x62\x7b\x9b\x11\x17\xcc\x88\x77\xd3\x5c\xfe\xbc\x73\xa3\x1c\x4a\xde\x3a\xc3\xfe\x4c\x2a\x84\x85\xb7\x4b\xaa\xc5\xcf\xa4\x82\x75\x31\xbb\xc4\xfa\xcf\xcb\x15\xbe\xa2\xd9\xc5\xdf\x3f\x99\x6d\x17\xc2\xc6\x6f\xab\x8b\x76\x21\x65\x96\xc6\xec\x3a\x84\xfc\xcc\x83\x28\x9e\x92\xfd\xfc\x8b\xaf\xd1\xfa\x79\xeb\x40\x35\xe7\xdb\x7a\x8a\x7d\x46\x99\xe4\x31\xbb\xc7\xef\xd5\x0c\xe7\xd0\xec\x9a\x25\x3b\x87\x2e\x58\x30\x53\x2e\x54\xdb\x16\xcc\x8d\x92\x2b\x77\xa3\x6f\x80\x73\x3b\x56\x63\x00\x4e\xc1\xd3\x70\xcd\x92\x62\xb5\xb7\x0d\x9b\xcc\xed\xd8\xae\x7f\x7d\x7f\x86\xf1\x97\x1c\xf7\x56\x25\x96\x87\xb9\x1f\x53\x81\xd3\xdb\xf6\x4e\xe6\x7e\x6c\x17\x95\xb4\x6d\x57\x52\x26\x79\xcc\xee\x01\xa6\xff\x12\xaa\x11\x53\xf9\x3d\x4e\xf9\xf8\x30\xe5\x63\x93\xeb\xae\x53\x3e\x3e\x4c\xf9\x98\xf2\xbf\xda\x2a\xb5\xf2\x30\xe5\x63\x63\x39\xf1\x7a\x5a\x86\xf1\x97\x5d\xb0\xe8\xcd\x24\x8f\xa9\xe0\xe6\x6d\x7b\x27\x93\x3c\x36\xe6\x4c\xaa\xa7\x6d\xf8\x07\x98\xa4\x72\x38\x3e\x53\x3e\xa6\xc2\x95\xb7\xed\x9d\x4c\xf9\xd8\x98\xb3\xaf\x9e\x86\x61\xfc\x25\xd5\x97\xad\x2a\x29\x0f\x73\x3f\xa6\xbc\x9e\xb6\xfd\x51\x99\xc4\x31\xe5\xf5\xb4\xcf\x74\xdf\xe4\x73\x6a\xa8\x5b\xa5\x9b\xab\x81\x71\xeb\x2b\x4f\x13\x16\x86\xcf\xec\xd4\x0e\x9c\xdb\xb1\x1a\xe8\x3b\xf4\x39\xcb\x23\x21\x43\xa7\x06\xb8\x3d\x6e\x56\x03\xe3\x26\xb6\x55\xb2\xe4\x61\xb6\xc6\x1c\x5c\x5a\xce\xd6\xf8\x6c\x84\xeb\xa7\x82\x6d\xb7\xcd\x88\xcc\xa1\x98\x4c\x80\x51\x4f\x61\x18\xe3\xe6\xbd\x0f\xf3\x2b\xb2\x51\x93\x36\xc4\x3e\xaa\x36\x52\x8d\x0f\x30\x49\x65\x9f\x51\x26\x5a\xcc\x71\xa9\xef\xe5\xbe\xc9\x10\xa2\x77\xd3\xb2\xdd\x8d\xdb\xe9\x74\x27\x3f\xc1\x28\xdb\xa5\xa0\xcf\xdd\xb4\x75\x30\xd1\x62\xbb\x78\xc3\xea\x44\x8b\x0f\x13\x2d\xa6\xbc\x70\xb6\x6d\x91\x4c\xad\x98\x72\xb7\xd9\x76\x25\x65\xea\xc4\x94\xbb\xcd\xb6\xd1\x91\xa9\x13\x93\xb9\x34\xeb\xe9\x36\x8c\xbf\x0c\xbf\x9d\x86\x17\x60\xbf\xbd\x0d\xb3\x6f\x52\xf0\x32\xbd\x69\x74\x94\x5f\xcd\xbe\xbc\x00\xe1\x81\x9a\x83\x3a\x3e\x13\x29\xb2\x81\xdd\x4a\xa4\xb2\x3f\x2a\x53\x27\x26\x53\x87\x3c\xdb\x1e\xa6\x1b\x66\xc6\xc6\xf2\x64\xf5\x34\x0c\x63\xd2\xa6\xfa\x96\x9e\xb2\x69\x5d\x1c\xfe\x1c\x9d\x4d\x98\x51\x31\x47\x68\x80\xdb\x03\xc4\xd6\x21\xdf\x97\x6d\xeb\xe2\xbe\xa8\xbe\x50\x1b\xdb\x8e\xa4\xdf\x08\x99\x4f\xc5\xca\x6d\x95\x62\xae\x06\x66\x9e\x7a\xa1\x53\x27\x3e\x4c\x9d\x98\x53\x8c\x7c\x7b\xa5\xc1\x03\x35\x59\xfd\xe2\xd9\x76\x3c\x65\xb2\xc4\x64\x8e\x90\x87\x19\x13\xd9\x60\xdf\x1a\x89\x36\xdf\x0d\x0f\xd4\x9c\xa7\xfe\xd2\xb2\x0a\x39\x12\x9b\x7c\xd0\x9d\x23\xb1\x1a\xe8\x9b\x06\x9f\x7d\x7b\x01\xde\x50\x76\x66\xd3\x00\x97\x07\x08\x52\xcd\xa6\x01\x6e\x7f\x0e\xb8\x4a\x89\x46\x9c\x0c\xb1\x1a\x78\x5b\x62\xbd\x7b\x13\x80\xb9\x2e\xe5\x15\xb2\xed\xfd\xb9\x11\xdf\x7e\xeb\xbc\xb6\x6d\xbc\xdb\x70\xf3\x4c\x85\xe8\x38\xeb\x61\x35\xf0\x97\x92\x9a\x8e\x5f\xdf\x9d\x1f\xcf\xc3\xea\xb6\x3f\x27\xb3\x1e\x26\xab\x30\xd4\xd3\x63\xb8\x16\x20\xd3\x04\x3e\xbb\x5b\x22\x23\x22\x3d\xa7\xd6\x65\xf7\x57\xd2\x4a\x27\x5f\x86\xdd\xbd\xa4\x3a\x3f\x9e\x0a\xf7\xb6\x87\x26\xd3\x1f\xa6\x62\x2c\xf6\xf0\xe6\x85\xa8\xf2\x94\x07\xc1\x1e\x16\xa6\xb0\xcb\xb5\x5b\xd3\xa0\xf4\x86\xd5\x40\x27\x54\x31\x9c\xde\xf0\x61\x7a\xc3\x0c\xcd\xa5\x7d\x2e\x37\xad\x74\x71\xa8\x6f\x2f\x92\xc1\x99\xd7\xa4\x39\x88\x7c\x23\x5a\x3c\x95\x65\xc5\x89\x0a\x1f\x26\x2a\xcc\xf0\x48\xbc\x1a\x50\xd3\x38\x43\x0c\x31\xe4\xca\xb3\xe1\x7c\x79\x37\x0f\xd0\xd2\x87\xc6\xbb\xd0\x5f\xda\x78\xb7\x61\xbc\xbb\x15\xe7\xb3\x1d\x2d\xce\xd4\x84\x29\xa7\xe7\x3d\xbd\xfd\x23\x3e\xbc\x29\xcc\xc0\x89\x0a\xab\x81\xbe\xb5\x17\x4f\x2f\x12\xd8\xe5\x32\xb4\xe9\xda\x43\x73\xa3\xbe\x48\xc6\xfd\x87\x6a\xb2\xf5\xb2\xff\x1a\xee\x1f\x3a\x83\xef\x29\x0b\xc9\x86\x03\xe7\xad\xc3\xc8\xb6\x11\x6f\xa3\x06\x72\xea\xc2\xdb\xe9\x0d\xab\x81\xbf\x96\x76\x30\xbd\x86\xe0\xa9\x99\x72\x50\xde\xd3\x52\x08\x9e\x9a\x19\x5d\x9d\x58\x0d\xa0\x59\xee\xd6\x8e\xe2\x60\x72\x66\x3d\x4c\xdd\x55\x3b\xeb\x61\x35\x40\x04\xea\xcc\x3b\x2c\xc7\xe1\x9b\xd9\x14\x6b\xe1\x64\x88\xd5\xc0\x5f\x4a\x4c\x86\xc5\x7b\x70\x3a\xb4\xd1\xd8\x53\x73\xd3\x2c\x17\x62\x7f\x07\x93\x6f\x78\x53\xa6\x6e\xb6\xb7\x8a\x20\x57\xa3\xce\x9b\xb7\xd4\x17\x47\x8d\x6f\x9a\xe3\x42\x62\xd2\x51\xe3\x1b\x4e\x96\x29\x67\x5c\x67\x3d\x7c\x98\xf5\xb0\xe9\xa0\xe3\xac\x87\x0f\xb3\x1e\x66\xa4\x61\x0f\x10\x0c\xad\xe0\xb2\x1d\xdb\x23\xc1\x2d\xa8\x8e\x45\xdb\x31\xe6\x1b\xe1\xe3\xa9\x5b\x73\x67\x3d\x7c\x98\xf5\x30\x59\xc9\xfb\xd9\xe9\xd5\x0c\x97\xcc\xd4\x85\xf7\xb6\x4b\x26\x33\x17\x66\xf2\xdc\xb6\x6d\xea\xdb\x30\xf5\xdd\x4c\xf6\xf9\x6c\x87\x87\x33\x45\x61\xea\x66\x7b\xa7\xe5\x38\xcc\x75\xed\xee\x86\x97\x61\xf4\x2d\xa1\x9a\x5e\xe4\xf0\xb6\x4c\x5d\x61\x6f\x1b\xef\x36\xcc\x75\xed\x96\xda\x65\x27\x4b\x66\x2e\x4c\x79\xc6\xee\x34\x61\x93\x84\xd5\x9e\x9c\x56\x48\x60\xbc\x6b\x0a\x79\xd9\x69\xcd\x03\x71\xe2\x8d\x79\x0c\xeb\x69\x18\x46\xdf\xb7\xdf\x4e\xc3\x0b\xb0\x68\x62\xc5\x15\x36\xbd\xc6\xfa\x89\xf5\xe4\xcf\x21\xbd\x35\xc5\xcb\x8c\x4c\x9b\x9e\x52\x9f\xec\x65\x46\x5e\x64\x64\x71\xac\x63\xcc\x99\xe7\x30\xe5\x47\xbb\x6d\xbc\xdb\xf0\xb6\xbc\x2f\xd1\x7b\xa5\xfb\x86\x3d\xff\x9e\xfa\x4b\xcf\x0e\x4d\x7d\xba\x16\xdf\xcb\x02\x04\x4e\x98\xa9\x6b\xf1\x6d\xdf\xcb\x4d\x53\x9f\x62\x5b\xb6\x4d\x7d\x7b\x91\xed\xa5\x4b\x2c\x4f\xc3\xa2\x08\x0e\xbf\x3d\x0c\x83\x82\xd3\x6f\xbb\xef\x62\xf4\xdb\xe7\x9e\xe5\xdd\x6a\x71\xb7\x0a\xc3\x9f\x61\x8c\x44\xea\xf9\xb2\x3c\x81\x4b\x66\xa6\xf4\x14\xbb\x64\x6e\x1a\x06\x53\x3a\x90\x0d\x83\x1b\x86\xc1\xdb\xa7\x24\x47\xa4\xef\xcd\x69\xa0\xf9\x73\x3b\x22\x7d\xc3\x14\x98\x99\x7e\x3b\x0d\xa3\x6f\x2d\xee\xed\x69\x80\x4b\x63\xa6\xf4\x14\xbb\x34\x32\x75\x62\x53\x40\xd2\xb6\x4b\x23\x73\x28\x9e\xc7\xa1\x9d\xc6\xb1\xe7\x1b\x5e\x8c\x85\x37\xe1\xdb\x38\xf8\x4a\xa2\xc3\x4e\x8d\xcc\xa2\x58\xaf\x6b\x30\xe6\xe5\x4d\x5e\x96\xec\xd8\xde\xc7\xe8\xd5\xa8\x78\xa7\x6d\x43\xdd\x46\xbc\x79\xeb\xd2\xbc\xec\xd5\xb8\xe1\xd5\x78\x1e\x72\xca\xdb\x8f\xe9\x02\x47\xc6\xc2\xa7\xf0\x34\xfe\x23\x4e\x3a\x3e\xe6\x44\xa4\x4c\x6c\x5d\x27\x14\x47\x9a\x6f\x7a\x30\x32\x3f\x61\x3d\x0d\xc3\xa4\x8c\xce\x7e\x8f\xe5\x07\x3d\x1b\xbb\x64\x93\x7d\x15\x37\x0c\x81\xe7\xa1\xbb\xea\xfd\x58\x45\x82\x7b\x62\xe1\x4d\xb8\x07\x5f\x14\x2d\x5c\x1f\x6b\xb6\xa3\xd1\xaf\x4b\x21\x78\x7c\x4a\xa1\x5f\x62\xd7\x34\x39\xda\x9c\x29\x19\xcf\x43\xb7\xd8\x4e\xc5\x58\x0d\xf6\xae\x1d\xeb\xf1\xfa\x47\x60\xf9\x79\xc8\x55\x6e\xdb\x35\x71\xc3\x1c\x58\xf8\x25\x3c\x8c\x67\x31\xaa\xf6\x95\xd7\x67\x8f\x97\x12\x57\xa4\x79\xad\x2b\xc0\x30\x78\x1e\xf2\xa1\xdb\xaf\xd5\xad\x97\x14\x16\x73\xbc\xa6\xf0\x2b\x0a\xeb\x38\xfa\x7a\xb1\xc3\x4d\xb1\xf0\x14\xee\x7f\x2d\x7d\xa1\x31\xa7\xdf\xe3\xf4\x8d\xcf\x86\x5d\xf1\x3c\xe4\x5d\xe7\x44\x8d\xd5\xe0\xbf\xaa\x17\x73\xf0\xcb\x22\x9f\xba\x88\xde\xaf\x37\xae\x97\x14\x96\xa4\x7f\x4d\xe1\x97\x9c\x2d\x1f\xb8\xfd\x7a\x65\xbf\xa4\xbc\xbc\xdd\x9c\x07\xb2\x1a\x3f\xe2\xfc\x5b\xc7\x90\x6f\xd4\x5f\x3e\x0f\x5d\xe7\xef\xcf\x34\xfb\xc8\xac\x67\xfb\x4b\xbe\xa3\xfd\x59\xff\x42\x85\xe6\xfa\xd9\x10\x7e\x19\x2f\xb5\x5e\x76\x74\xe7\x9b\xac\x06\xff\x5d\x42\xee\xb3\xe6\xf5\x51\xf3\x92\x76\xe4\x30\xf3\xfd\x51\x2a\xe8\x1a\x7b\x7f\x56\x05\x3e\x32\x2d\x0b\x38\x3c\x4e\x35\xf9\x30\xd5\x64\xe1\xfa\x5b\x4b\xc5\x4f\x44\xd2\x7e\xf3\x59\xcd\x42\x59\xe5\x5b\x16\xf9\xed\xe0\x71\xe6\xa0\x3c\x0f\xe5\x0c\x71\x12\xca\x6a\x70\x0e\xa4\xad\xfd\x4c\xd3\x1f\xb9\xf6\xd4\xf9\xe3\x67\x01\xf0\x13\xad\x75\x00\xf9\x59\x34\xfe\xc8\x9f\xa7\x56\x85\x6d\x88\x4c\x2d\x79\x5f\xff\xe0\x65\x98\xc3\x91\x50\xff\x79\xd7\x41\x15\x97\x66\x63\xd6\xcf\x44\xfb\x91\x0f\xe5\xaa\xb3\xed\xba\xc8\x2c\x93\x85\x6b\x34\x16\xb1\x3f\x11\x4d\xec\x6f\x43\xe1\xfe\x91\x11\x25\x48\x1c\x2e\xbe\x59\xed\xe5\xd0\x6d\xef\xfe\x79\x2f\x41\x84\x78\xeb\x92\x23\x3f\xd3\xf2\x47\x5a\xb2\x3a\xd9\x1b\x07\x57\x7a\x35\x1a\xf1\x4b\x78\x37\xbe\x89\x77\xe1\x9f\x71\xf6\x83\x83\xcb\x1b\x8a\x19\xaf\xc6\x24\x7e\x0b\x5f\xc6\xd9\x0f\x24\x55\x3d\xbe\xc6\xd9\x4f\x53\x3f\xcb\xe3\x21\xab\xd1\x1e\x5d\x8f\x61\x1c\x2c\x02\xb5\xa1\x9e\xb6\xe1\xa7\xe0\x50\xef\xcb\xa3\xe4\x2a\x6d\x97\xbe\x8a\xfb\x4f\x35\x20\x03\x86\x06\x49\x5a\x56\x83\x7f\x8a\x1d\xa2\x1e\xd3\x38\x24\x0f\x1d\x04\x5e\x67\xe5\x7c\x99\x95\xb3\x70\x76\x2f\x3b\xe0\xcb\x44\x9c\x85\x0f\xe1\xb7\x71\xfe\x6d\x08\x5e\x86\xd9\x4d\x27\x0d\x4e\xd3\xf2\x24\x5f\xf2\x9e\xb9\x1e\xbb\x71\x0e\x73\x1c\xc2\xd3\x38\xfb\x19\x1a\xce\xd2\x67\x9d\xa2\xe5\x54\xff\xcb\xef\x73\xd9\xb2\x68\x41\x3d\x3e\xc6\xc1\x3a\x53\xa3\x37\x31\x4f\x32\x26\x8d\x2e\x6f\x9c\xdc\xb5\xab\xc1\x6e\x42\xdd\x6f\x77\x43\x0e\x0c\x12\x4d\xb1\xe5\xd5\xe0\x57\x45\x0a\xef\xc6\x39\xca\xf4\xfb\xcb\x38\xbb\xcf\x5b\xf8\x6b\x9c\xc3\x49\x0e\x53\x25\x5c\xaa\xa1\x7e\xd4\x7f\x86\x71\x70\x4e\x5e\x82\xf5\x55\x8d\xcb\x93\x57\xba\xf5\x78\x1b\xc7\x5c\x85\x7a\x37\x2d\x1b\x69\x79\x89\xbf\x9b\x69\xd9\xa8\x18\xf1\xf2\xe8\x0d\xb9\x34\xbe\xcc\xe3\x59\xb8\xba\x37\x07\xd2\x8e\xc8\x18\xd1\xd7\x69\x3d\xab\x01\x2d\x22\x9b\x60\xd3\x80\xb5\x6b\x59\x73\xe0\x75\x02\xcf\x97\x09\x3c\x1b\x33\x30\xbe\x4e\xe0\x59\x0d\xfe\xe9\x75\x0a\xef\xc6\x07\xf1\x4b\xf8\x34\xce\x7f\x0d\xc1\xdb\xf0\xc7\xd7\xd5\x7d\xfa\x5f\xa1\x30\x0d\x89\x90\x8b\x7b\x4c\x35\x3a\x60\x75\x9e\xc3\x30\x8b\xb0\xdf\x87\xf0\xc7\xf8\x8b\xd7\xf5\x49\x9e\x8f\x8b\x4c\x4c\xdd\xe2\x0d\x79\x36\x56\xe3\xfa\xef\x7f\xee\xfb\x68\x82\xdd\x3b\x79\xf8\xba\x35\x76\xf3\x30\x12\x77\x36\x26\x73\xac\xa7\x9f\x60\x08\xd1\x21\xa9\xa5\xf0\xf6\x57\x69\x3c\x0f\xee\x8f\xf5\xb8\x8c\xb3\x77\xad\xb4\xcb\x0b\x9f\x95\x5b\x0e\xee\x54\x6f\xdc\x96\xa2\x37\x79\xf8\x1a\x5d\x78\x18\x4f\x0c\x3e\x05\xeb\x5b\x6f\x2e\xf0\x4b\x0b\xf0\xf6\x02\xbf\xc9\xc2\x16\x67\x77\x6a\x42\x6e\xae\x40\x96\x2b\x78\x43\xf5\x91\xff\x1f\x63\xe7\x93\xab\x3b\x6a\x44\xf1\x79\x56\x71\x77\x90\x0f\x8c\x0d\x35\xc9\x24\xe3\x64\x0f\x60\x6c\xa9\x07\xdd\xfd\xf4\xd2\xbd\xff\x08\xce\xf9\xbd\x28\x51\x06\x6f\x70\x25\x7c\xc4\xad\x0f\xca\xf5\xcf\x05\x14\x53\xa5\x35\xf3\x65\x19\x2b\xcc\xaa\x48\xf6\x8a\x6d\xb7\x6f\x4d\x59\x8d\x4b\x78\x35\xde\xc1\xc7\x22\x63\x53\x5c\xd0\xe3\xa2\xc9\x32\xfa\x13\xe1\xdb\x19\xc6\xac\xd3\xb8\xeb\xe9\x00\xde\x62\x60\x51\xf5\xd9\xf4\xa9\x32\x9b\xe9\x53\x12\xdd\x6f\xf0\xfd\xa2\x32\xc4\x1f\x60\xfd\xa8\xfd\xc5\x89\x76\x9f\x0a\x70\x8a\x07\x79\xc2\xb2\x53\xfe\xa5\x30\x1a\xa4\xec\x94\x94\x59\xe2\x4f\xa4\xe9\xf4\xf5\xfc\xc7\x4f\x6c\xf1\x9e\xd4\xd4\x5c\x0d\xfd\xca\x51\x8d\x4f\xf0\x47\xb8\x67\x31\x18\xad\x1c\x4a\xb1\xe3\x38\x47\x03\xdf\xf2\xc0\xe4\xc6\x00\x5e\x91\xec\xf5\xa3\x37\xbc\xf0\x0b\x28\xa2\x7e\xf1\x02\x2e\xa9\x79\x39\x93\xf1\x0b\x5c\xbf\x6a\x69\xf6\xd5\xcb\x53\x75\x38\x17\x5e\x8d\x7b\xf4\x97\xc4\xb0\x58\xca\x2f\x78\xba\x13\xa0\x0b\x77\x7f\x7c\xf9\x25\x15\xd5\xa2\xf0\x6c\xbe\x67\x79\x35\xb6\x40\x58\x73\x2f\x78\x7d\xc9\xc2\x16\xfb\x13\xdf\xd1\xb2\x1a\x22\x6f\x5f\x7e\xf5\x0a\xde\x36\x19\x60\x46\x2f\xe1\x2f\x56\x8a\x0b\xe1\xbf\x24\xfc\x27\x30\x54\xcc\x62\x53\x81\x97\x97\x79\x69\x2f\x53\xd1\xdc\x6a\x5e\xda\x3d\x54\x4c\x66\x35\xcf\xec\x65\x2a\x62\xbb\xd3\xa2\xa5\x58\xae\x2a\x2e\xbb\x4a\x73\x4f\xab\x5c\xc5\x35\x57\x09\x8e\xca\x6d\xac\x47\xc8\x74\x91\xa9\x86\x3d\xca\x2a\xcd\x3d\x0f\x4d\xaa\x12\xa0\xe8\x20\xf9\x47\xd5\x2f\xd6\x23\xe4\x15\xa0\x9c\x47\x33\x3e\xc1\xf7\x6c\x4f\xdb\xde\x86\xe4\x34\xcd\xf6\x74\xe0\xd2\x08\x50\x76\x8a\xb2\x20\xae\x0d\x17\xdc\x9a\xc9\x88\x7c\x63\xb6\x4d\x82\xa3\x20\x73\xaa\xfe\xa5\x1a\x1a\xe6\x79\x19\x0f\x70\xd1\x39\x25\xc8\x0d\xc1\xd9\x69\xca\x52\x4a\x35\x7c\x01\x8b\x69\x8e\x97\x1a\x4c\x6b\xb2\xed\x36\xb2\x0d\xa6\x35\x09\xc8\x69\x6b\xda\x50\x42\x95\xb7\xfc\x10\xcf\x34\x24\xa4\xc9\xb8\xeb\x4e\x81\xa9\x02\x96\x6a\x6c\xf2\x96\xee\xc0\xa9\x86\xb4\x8a\x88\x20\x60\x4e\x48\x42\xf0\xd9\x81\x56\xe9\x36\xe6\xcf\xe9\xb8\xc5\xf7\xa8\x4c\x95\xaf\x2c\xe5\x14\xeb\x03\xc3\x16\xe6\xa5\x05\x2d\xe0\x65\x98\x97\x0e\x67\x82\x70\x66\xe7\x2b\x4b\x39\xe9\x6e\x26\x84\x94\x0d\x2f\x1c\xf0\x32\x14\xb7\x5c\x36\xe2\x81\x56\xe9\x2e\x95\xcf\x65\xc1\x0c\x02\xea\x7d\xe4\xbb\x14\x3b\xb8\xc0\xd0\x85\x04\xf3\x4a\x26\x4f\x38\xb3\x93\x93\xa5\x38\xa0\x0e\xec\x9c\x76\x16\x6a\x0b\xca\x7a\x82\x65\x12\x4b\xdd\x5d\x3a\x5b\x47\x2c\xbb\x3c\x8a\x0d\x42\x87\xf3\x5d\xd2\xaa\x72\xc3\xb3\x75\x74\xb3\x2b\x9c\xc1\x77\x74\xec\x5c\x97\xb8\x5e\x0e\x7f\x3a\x71\x8b\x52\x8e\x97\xe3\xd4\x4e\x80\xd2\xe5\x3a\x2e\x2b\x49\x87\x95\x5d\xd2\x7a\x39\x8a\xef\x7c\x9a\x74\xb3\xd8\xda\xd0\xb1\x67\x5d\xe2\x7a\xd9\x1c\x77\xdc\x70\x97\xd2\x5e\x36\xaf\x1d\xe6\xec\xfb\x55\xf2\x15\xc0\x13\xf8\x51\x77\xcd\x76\x30\xdb\x21\xf9\x43\x2e\x07\xb1\xc5\x4e\xfc\xe5\xcb\x72\x33\x70\xa0\xbb\x14\xe5\xea\x2e\x2d\x19\xe8\xec\x90\x9c\xc1\xe4\x01\x17\x86\xe4\xec\xb2\x79\x1d\xe8\xec\x30\x77\xcc\xb5\xc1\x87\xdb\x30\x77\x9a\xe9\xc3\x9d\x61\xee\x34\xd3\x27\x9e\x56\xa2\x51\xcb\xa7\xb3\x0d\x3c\xea\x90\xd2\x5e\xb6\xbb\x03\xab\xbe\x0f\x40\xe7\xea\xe8\x70\xc0\x4b\x27\x14\x2f\x6b\xc3\x20\xa4\x19\x0a\x69\xaa\x63\xd2\x81\x61\x1c\x92\xb4\x6a\x75\xb8\x91\x34\xa5\x14\xab\xc3\xc3\x1b\xcf\x79\x8b\xc7\xd5\xf1\xe1\x8d\xb5\xdf\x57\xaf\xe4\xea\xd8\xe5\x46\xa0\x94\x39\xac\xa9\x1a\x3e\x80\xcb\x86\xc3\x70\x05\x1e\x22\x0e\x0e\xf1\x1d\xa2\x54\x47\x34\x77\xd8\x4e\x68\xaf\x60\x75\x40\x73\xc3\xc7\x5b\x7c\xb4\x2e\xdc\x7c\x17\xef\x03\xcc\xb9\x5a\x15\x6e\xd8\xeb\x74\xe2\x7f\xba\x4f\xf0\x47\x38\xfd\xf9\xd1\xc5\xff\xac\xb2\xa0\x53\xb5\x2c\xd5\x10\x5f\xac\x51\x37\x22\xbc\xcf\x3f\x67\x95\x0b\x5d\x4f\x03\x78\xcf\xe8\xb8\x7e\x26\xb8\xba\x71\xcd\x4e\x42\x56\x07\x51\x13\xf5\x9f\x52\x7f\xd5\xfc\x5c\x8f\x05\x7c\x73\xe2\x47\xf7\x0b\x58\x63\x2d\xc5\x78\x80\x8b\x15\x56\xe7\x89\x9d\x76\x76\xb2\x3a\xba\x72\x76\x72\xaa\xc6\x65\x29\x96\xe3\x49\xf0\xb3\xb3\x8d\xe9\x53\x4f\xf0\x07\x5c\xa3\xbf\xc4\xa2\x89\x3e\x4c\x79\x99\xea\x8f\xf2\x89\x97\x99\xe2\x11\x93\x82\x09\xce\x13\x56\x5b\x85\x87\xf8\xe4\x51\x7e\xa6\xda\xcb\x3c\x58\x05\xe7\x0f\xab\xbd\xcc\x83\xc4\xee\xb2\x93\x99\xc9\x3e\x38\x1f\x1d\x5b\xae\x36\x5d\x0f\x46\x61\xa7\x07\xd3\xa7\x59\x7d\x1e\x9c\xcc\x2e\x4e\x99\xab\x13\x13\x0f\x3c\x70\xda\xb0\x39\xca\x79\xb0\x09\x7b\xeb\xe1\xc2\x25\x6d\x0f\x3c\x70\xde\xb0\xd9\xf9\x3c\x08\xed\x23\xa1\xb5\x0f\x7b\x70\xe4\xba\x8a\xe6\xd3\xac\x57\x0f\x4e\x66\x9f\x56\xce\xd5\x76\xf4\x21\x28\x72\x36\xb1\x59\x81\x1e\x0c\xa9\xd3\x86\xcd\x29\xa4\x17\xdd\x77\xda\xb0\x39\x34\x7c\x91\xa7\x57\xf2\x64\x1f\xf6\x62\x5f\x75\x7c\xb9\xda\x87\xbd\xb8\xfd\x57\x4e\xa6\x39\x02\x7c\x61\xa5\x93\x89\xcd\x62\xf9\xe2\xc7\x5f\x05\xd3\xcd\xb1\xd5\x8b\x7d\x75\x36\xb1\x39\x14\x7b\x71\xd8\xaf\x34\xb7\x99\xf7\x2f\xc1\xcf\x3e\xcc\x9c\xb5\x2d\x62\xb6\x17\x0d\x7d\x15\xe4\x34\x87\x56\x2f\x86\xf1\x95\xf8\x35\x8b\xe5\x8b\xf8\x29\x3d\xa8\x2b\x62\x66\x7c\xac\x6b\xaa\x1b\x99\x3e\x5a\xbb\x5e\x8f\x0d\x7c\x33\x41\x4e\x20\x3e\x66\x42\x38\x3b\xa8\x4b\x4b\xd6\xe3\x04\xd7\xa4\xe4\x7c\xc2\xbb\x03\x67\x38\x3b\xa8\x5b\x41\xa6\x4a\x46\xaa\xb1\xe2\x84\x33\x99\xbc\x75\x2a\x3e\xf2\x25\xaa\x31\x35\x29\x1e\x39\xc3\x79\x37\xdd\xdd\x31\xa9\xf0\xb8\x1a\xbb\xbf\x0a\x2d\xad\xc7\x13\xbc\x0a\xcf\xc6\x03\xfc\x15\xae\x61\x26\xdb\x75\x95\x75\x2c\x5a\x6c\x59\x4f\x17\xf0\x9e\x6d\xc8\xdc\x51\xce\x71\x35\x44\xa6\xf8\x67\x2d\xf6\x91\xb4\xc6\xa3\x53\xc7\x53\xe5\x1d\xd5\x10\x9d\x62\x3a\x83\xe1\x4b\x90\xe3\xf4\xb4\x6c\x65\x23\xc9\xca\x86\xc9\x38\x8a\x0a\xe7\xdd\x74\x4d\xc4\x0c\x6f\xc4\x5b\x8d\xad\x85\x2a\x3a\x34\x55\xcb\x51\x0d\x91\x97\x80\x47\xe6\xdd\x66\xbd\x5b\x65\x7f\xc2\xe7\x7f\x67\x64\x09\xb2\x2e\xc6\x9f\xd4\x6f\x5c\x0d\x91\xb1\xe8\xf8\x26\x9d\xd5\xe8\xc2\xc3\xf8\x00\x5f\x91\xa4\xf6\xa6\xae\x27\x8f\xd2\x79\x37\xd5\xe4\x99\x41\xde\x4d\xb5\x1c\x8b\xbf\x7c\xc2\xb7\x24\xaf\x46\xdb\x70\x36\xdc\x81\xc5\xfa\xe6\x1f\x75\xf8\xa0\x8a\x8f\xe5\xf4\x9b\xca\x70\xd8\xd9\xb8\x50\xc2\x2c\xb2\xb5\x44\x95\x20\x17\xee\x39\x0d\xe6\xb4\x05\x2d\xe9\x32\x87\x19\xe4\xdd\x54\xfd\xb1\xf8\x73\x2b\x7c\x0e\x78\x35\x86\xba\x87\xf1\x07\x5c\x64\x92\x7e\xf6\x40\x1d\x76\xea\x6c\xe1\xd5\xf8\x09\x2e\x3a\x96\x63\x72\x60\xb1\x0f\xee\x2e\xdc\xf4\xe1\x82\x92\x60\x49\x2b\xa1\xeb\x71\x82\x3f\xc2\x4d\x7f\xf0\xbb\x43\x74\x0e\xd3\x19\x8c\xd3\xd3\x95\x7b\xa0\x70\xe3\x6a\x68\x9c\xfa\xc6\xa6\x72\xe3\x6a\x88\x8e\xbe\xff\xa2\xa0\x57\x7b\x87\xdd\xc2\x2f\xe3\x13\x5c\xf4\x4f\xd3\x87\x0f\xc5\x7c\xb0\xc4\x16\xbb\x60\x55\x77\xcc\x2d\xd1\xbd\x03\x8b\xcc\x65\xf2\xb0\x67\xef\xb2\x4b\x49\xe7\x6b\xd7\xe3\x09\xae\x61\x56\x0f\xb3\x33\xcc\x2e\x3a\x96\x64\xd2\x69\x51\x24\x3c\xcc\x6a\x30\xdb\x21\x2e\x37\xff\xac\x4d\xa9\x4a\x37\xe6\x96\xe9\xfe\x00\x8b\xba\xd5\xd6\xfb\xf1\xa6\x4a\x3a\x2e\xbc\x18\x3f\xc1\x45\x5e\x81\x7c\x90\x20\x0b\x25\xc8\xec\xad\xc2\xd7\xd2\x4c\x55\x6f\xcc\xed\xf8\x89\x83\x78\xab\x73\xe6\xbf\x96\xa3\x4f\x5a\xb6\x9c\x41\xfa\x2c\xf6\xe1\xdc\x72\xfa\xc5\x9c\xd8\xe5\x7d\x4a\x37\xdb\xc7\x51\xf4\x71\xaa\xe8\xe3\xa2\x42\xf7\x09\xbe\xe5\x4d\xa7\xa4\x67\x9c\xe8\xf4\xce\xb6\xe5\x66\x31\x3c\x3b\xd4\xbb\xa8\x4b\x0a\x5d\xb1\x71\xaa\x62\x63\x6e\xb6\x8e\x27\xec\x57\x2e\x2d\x25\x2b\xcb\x89\x8e\xee\x9d\x81\x0b\x87\xcc\x00\xbf\x37\x19\x8f\x11\xeb\xa8\x64\x5a\x52\xfd\x8e\x19\x24\xd3\x42\xc9\xb4\x94\xfc\x1a\x2f\x47\x05\xaa\xea\x98\x9b\x45\xdf\xd7\x29\xaf\xc6\x1e\xbb\xbc\x33\x55\x1b\x67\xec\x0b\x94\x73\xb3\xe0\x5f\xb0\x5d\x19\xb6\x94\x6c\xbe\xc8\xb0\xa9\xac\xe3\xc2\xfd\xa3\xd8\x52\x65\xd8\x52\x32\xc7\xc8\xb0\xa9\x82\x63\x39\xed\x9d\x7d\x02\x78\x35\xc4\x82\xe2\x9f\x45\xff\x2f\xcf\x55\x5f\xa4\x41\xb2\x2b\xaa\xf4\x36\x99\x4e\xc5\x13\x54\x4d\x4a\xa1\xaa\x6a\x33\xaa\xa1\xd7\x6d\x3d\xa9\xa8\xf3\xde\x0c\xb8\x70\x71\xde\x67\x72\x57\x43\x42\x66\xd3\xee\xab\x64\xa6\x2a\x33\x66\x6d\x97\x5b\x4f\x0f\xb0\x46\xa9\x2f\x49\x0a\x35\x4e\x15\x6a\xcc\xc4\x16\x2e\xd4\x38\x55\xa8\x31\x13\x5a\x54\x78\x50\xa5\xe4\xc9\xb1\x42\x45\xc9\xab\x79\x63\x0f\x51\xe1\x8d\x52\x6c\x29\x85\x07\xe9\x20\x33\xaa\xa4\xaf\x99\x35\x83\xb1\x6f\x1f\xdc\x1c\x00\x55\x7c\xb0\x6e\x99\x49\x49\xdf\xa3\x14\x6b\x9c\x2a\xd6\x98\x9b\x4d\x45\x23\x40\x51\xde\x2d\x79\x95\x95\x6a\x8d\xab\x71\x09\x3f\x8d\x07\xf8\x2b\x5c\x93\x6a\x04\x28\x4d\xca\xaf\x8f\x84\x68\x30\xbe\xc9\x5e\xda\xe2\x34\x3c\x76\x93\xba\x66\xbb\x9f\x06\xe3\x95\x8e\x4b\xd9\xaa\xd0\x88\x5b\x9a\xec\xa8\xce\xe5\xae\x47\x46\x29\x37\xa3\x83\xb9\xeb\xd1\x42\xdf\x64\x2f\x9b\xbb\xe3\x6c\x9b\x14\x36\x5b\xb8\x1b\xe1\x4c\x13\x2b\xcd\x32\xf2\x6b\xaa\xb7\xb8\xf4\x2f\x1b\x6f\xe0\xab\x7b\xd8\x62\x05\x3e\x75\xa7\xd1\x56\x77\xb1\x26\x50\x35\xe5\xd1\x52\xb6\xc2\x06\xbe\x64\x27\xd4\x72\xd8\x35\x07\xbc\x51\x7a\x2d\x79\xed\x35\x02\x0d\xdc\x1b\x00\x17\xee\x9f\xc5\xc4\x85\x79\x66\x0d\x0f\x78\x16\xe6\x99\x83\xb1\x20\x6e\xd1\x1e\xbf\x48\x26\x83\xc7\x0e\xb9\x9e\x7c\xf9\x67\x71\x3d\xfb\xa8\x6e\x0e\xdb\xb8\x80\x95\x4a\xbb\xa5\x6c\xd5\x09\xe2\x96\xbd\x0b\x30\xa5\x6c\x45\x0e\xa4\x75\x27\xe0\x8a\x73\x89\x11\x98\x4a\xe5\xdd\x92\x17\x82\x83\xbc\x5b\x74\x85\x33\x8e\x00\x3b\xee\xbd\x4b\xef\xb3\x75\xa1\xe3\x91\xf6\xd6\xbe\x4c\x34\xdd\x79\x23\xdd\xc2\x6a\xa1\xef\x78\xf7\xbd\xb7\x6f\xe1\x26\x8f\xf1\xeb\x16\x4b\x4b\x71\xc7\x8d\x77\x69\xb2\x17\x70\xa9\x91\x38\x55\x23\x31\xa5\xc3\x4a\xd2\xd1\xe4\xae\x28\xe7\xb0\x92\x74\xa2\x1c\xe5\xdd\xd2\xe1\x57\xde\x71\xcc\x5d\x5c\xf0\x92\x2c\x35\x0c\xa7\x6b\x18\xa6\xc3\x51\xd7\xc0\x03\xec\x0c\x5c\x0e\x07\x57\x03\xee\x28\x1f\x97\x0e\x3b\x8c\x81\xce\x0e\x05\x3f\x5e\xab\xa5\xe8\xe1\x74\xd1\xc3\x70\xcc\x38\x50\xe5\x7d\x44\x37\xf3\xed\x30\x50\xe5\x21\x71\xb5\x32\x0c\x3c\xaf\xb2\x71\xc9\x2b\xbb\x94\x37\x9c\x2a\x6f\x58\x9c\xdd\x8d\x81\x86\x2b\x49\x97\xbc\xe0\x4b\x7d\xc3\xa9\xfa\x86\x0b\xf7\x9c\xd0\x70\x6d\xfb\x4b\x87\xfd\xce\xc0\x88\x2a\x4b\x97\x0e\x46\x89\xab\xde\x1b\xfa\x8a\xb3\xc1\x31\x70\xd5\x43\x91\x92\x17\x65\x63\x10\x29\xed\x13\xb9\x39\xac\x6b\x83\x17\x32\xfc\x42\xac\x6b\x37\x6e\xea\x56\xa4\x74\x58\xd7\x6e\xac\xe5\x2d\xb9\x3c\x1c\xad\x90\xa5\x8b\x7d\x93\x4c\xb9\x12\xdd\x6d\x9e\x76\xba\xae\x78\x75\x34\x6e\x0c\x85\x36\xf2\xa5\xc3\x51\xe4\x4d\xcc\xa3\x8d\x7c\x71\xd6\xff\x0e\xac\xce\xff\x17\x57\xdd\xbc\x97\xdb\xef\xc5\x9a\x75\x63\x2e\x6e\x45\x44\x5e\xe1\x8d\x1b\x73\x71\x9b\xd1\xd5\x3f\x4e\x48\xa4\x34\x1e\x9f\x6e\x3e\xdb\x3b\xe3\x96\xfe\x1f\x76\x91\x37\xce\x6a\x9f\xf2\xcd\x2a\x0b\xb5\x9e\x2e\x60\x51\xb7\x6f\xbb\xf1\x56\x3b\x41\x57\x9c\x76\x8f\x9b\x90\xe8\x36\xff\x1d\x91\x4e\x14\x62\x9a\xff\xfe\x2a\x9a\xc4\x03\xbb\xba\x60\x4a\x5e\x8b\x8f\x89\x01\x98\x32\x00\x5e\x6f\x8e\x89\x88\x4f\x89\xb8\x79\x33\x79\x01\x4a\xbc\x25\x2f\x43\xc7\xc4\x24\xeb\x9c\x70\x54\xa8\xf0\xab\xe1\x5f\x95\x8c\x4f\xc2\x84\x9d\x69\xcb\x61\x23\x35\x89\x07\xa6\x38\x5c\xec\xf4\x26\x56\x64\x6f\xf8\x2b\x5e\x33\xa0\x0e\xe1\x6a\x68\xec\xb6\xbc\x13\x23\xb2\x37\xfc\x2d\xdc\xfd\xb1\xbc\x4a\xeb\xa5\x62\x5e\x92\xd6\x0b\xa5\xf5\xc2\xb6\xee\xc1\xb9\x3d\x32\x16\xc5\x9f\xb5\x0f\xce\xed\x91\x73\xf3\x8b\x7a\xe0\xb0\xb2\x7a\x49\x17\xcb\xaf\xc7\x09\xfe\x08\x37\x79\x4c\xec\x3e\x0a\x9c\x52\xb1\x7e\x92\xbf\x0b\xe5\xef\xf8\xdc\x7d\xf8\x24\xdf\x09\xbb\xcc\xd7\xee\x83\xb5\x78\x64\x2d\xbc\x0e\x17\xa4\xef\x62\xef\xff\x5b\xb8\x78\xf0\xe0\xac\x94\x60\xcb\x5e\x02\xa0\x3c\xe0\x6a\xac\xd1\x64\x27\xe3\x55\xe8\x6f\x37\x36\xcf\xb2\x2e\xf9\x7a\x39\x88\xbf\x1a\xe5\x6f\x5f\x87\x2a\x76\xbd\xc3\x41\xce\x6a\xc4\xfa\x59\x1d\x51\x7a\x39\x4a\xb0\x1a\x5b\x6e\x54\x27\x76\x3d\x9e\xe0\xaf\xf0\xb2\x71\x57\x02\x59\x8d\x1d\x8e\xea\xdc\xd1\x7a\xac\xe0\x6d\xe3\x55\x74\x6c\x76\x5e\x6f\x86\x4d\x75\xcb\xeb\xcb\x85\xe5\xaf\x76\x96\x26\x97\xee\x7f\x87\xd9\xf3\x6a\x9f\x62\x32\x15\x5f\x85\xfd\x6a\x13\xa2\x6a\x23\xad\x87\x0e\xba\xeb\x71\x5e\x42\x83\xbe\xbb\x88\x4d\xca\x46\xe9\xbb\xf7\xb5\x6e\xb3\xf5\xb2\xcb\xf0\xd5\xbe\xc2\xa4\x8a\x37\xef\x27\xde\x56\x36\xbf\xd4\xec\xe2\xd8\xe7\x7f\x6a\xfa\xae\x87\x5f\xfb\xb7\xbf\xfc\xfd\x1f\xfd\xdb\x3f\xfb\xaf\xcf\xd7\xfd\xe7\xf7\xef\xcf\x6f\x7f\xcc\x5f\xee\x3f\xbe\xfe\xba\xd0\xaf\xf9\xbc\xbf\xfc\xf6\x7c\x7f\xfe\xf5\xfb\x9f\xdf\xef\xe7\xeb\xdb\xef\xdf\xd6\x7f\xed\xbf\x7f\x07\x00\x00\xff\xff\x51\x1f\x69\x36\x9f\x52\x03\x00"); -var _eag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x93\x5f\x6b\xdb\x5c\x0c\x87\xef\xcf\xa7\xd0\x65\xdf\x8b\xbe\x91\xce\x3f\x3b\x60\x02\x6b\xbb\x96\x5c\x74\x1d\xeb\xba\x0d\xc6\x2e\x1c\x5b\x0e\x86\xc5\x36\x8e\x73\xd1\x6f\x3f\x24\x25\x19\xec\x22\x38\x79\x22\xfd\xf0\x79\x74\xb4\xba\xdf\x3e\x6c\x87\x7e\x81\xd5\xe7\x79\x6c\x5e\x79\x81\xae\x1f\xda\x99\x8f\xe3\x69\x6e\x18\x76\xbc\xef\x07\xe7\xc8\x43\xdb\x37\xcb\xe5\xa7\x3e\x9a\x43\x3d\x39\x27\xfd\xaf\xef\xc7\x85\x0f\xdb\xa1\x1b\x21\x58\x5d\x7b\x9a\xce\xb5\x00\xab\x2f\xbc\xef\x8f\xcb\xfc\x0e\x37\x1f\xda\x71\xc7\xff\x41\xcb\x9d\xf0\x97\xb9\xe5\xb9\x1f\xf6\x70\xf3\x74\x47\x57\xfa\x7a\x9a\xa6\xdf\x7c\xe0\x61\x01\x54\xc6\x43\xab\x4f\xb7\xba\x7f\xae\xa7\x4f\xf5\x81\x61\xa5\x41\xb7\x4f\x77\x74\x6b\x35\xfa\xd7\x37\x9e\x8f\xfd\x38\xc0\xfa\x7f\xc4\xfc\x17\x7f\x7d\x9f\x18\xe8\x1c\xf1\xb6\x7d\x78\xe9\xba\x23\x2f\x10\xc2\xb9\xf5\xc7\xdb\xf6\x01\x7e\x12\x10\x82\x4f\x21\x97\xbf\xce\xa5\xdf\x9f\xc7\x96\xcf\xef\xa0\xc7\xbc\x1f\x4f\xc3\x02\x45\x41\x85\x31\xb2\x23\x36\x63\xcb\xc7\xa9\x6e\x78\xae\x87\x3d\x3b\x80\x0a\x11\x71\x03\x15\x7d\x7c\x7c\xdc\xc8\xeb\xff\x53\xe1\xc2\xa5\xb3\x6f\x8d\x5c\x3a\x10\xbb\x6e\x03\x00\x80\xae\x42\x32\x44\x8a\x7c\xca\xae\x42\x6f\xc8\x2b\x4a\xe4\x5d\x85\xc1\x50\x50\x54\xe4\xd2\x55\x18\x0d\x45\x41\x84\x3e\xba\x0a\x93\xa1\xa4\xc8\x97\x12\x9f\x0d\x65\x45\x29\x48\x7c\x61\xa8\x50\x54\xac\x25\xbe\x34\x54\x0a\xf2\x18\x25\x7e\x6d\x68\xad\x28\xa0\xc4\xd7\x86\x6a\x45\x29\x4b\xfc\xce\xd0\x4e\x51\x49\x12\xdf\x18\x6a\x04\x05\x2c\x24\xbe\x35\xd4\x2a\x0a\x5e\xe2\xd9\x10\x2b\x4a\xa5\xc4\x77\x86\x3a\x45\x65\x44\x57\xd1\xd9\xb0\xfa\x8a\xb8\xce\xae\x22\xf3\x45\xea\x2b\x86\xe4\x5d\x45\xe6\x8b\xd4\x57\xcc\x58\xba\x8a\xcc\x17\xa9\xaf\x58\xe6\xe8\x2a\x32\x5f\xa4\xbe\x12\x79\x89\x37\x5f\xa4\xbe\x52\x28\x24\xde\x7c\x91\xfa\x4a\x39\x48\xbc\xf9\x22\xf5\x95\xca\x52\xe2\xcd\x17\xa9\xaf\x4c\x51\xe2\xcd\x17\xa9\xaf\x1c\x51\xe2\xcd\x17\xa9\xaf\x9c\x65\xb4\x64\xbe\x48\x7d\xe5\xb5\x8c\x96\xcc\x17\xa9\xaf\x82\x64\xb4\x64\xbe\x48\x7d\x15\x51\x46\x4b\xe6\x8b\xd8\xc7\x8d\xcc\x1f\xf5\xc2\x5d\x2e\x96\x7c\x97\x35\xbd\x6e\x4e\x73\x9a\x67\x1e\x16\x5d\x52\xdd\x0e\xb9\xca\xfd\xc0\xd7\x85\x9f\xc6\x49\xba\xf4\xf3\x27\x00\x00\xff\xff\xd1\xcb\xaf\x2a\x1c\x04\x00\x00"); -func _dfc ()(*asset ,error ){_cdd ,_dge :=_edc ();if _dge !=nil {return nil ,_dge ;};_afc :=bindataFileInfo {_ag :"Adobe-GB1-4",_bc :2711,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491274,0)};_ddcf :=&asset {_cd :_cdd ,_dce :_afc };return _ddcf ,nil ; -};func _adgb ()([]byte ,error ){return _dc (_ggfdb ,"NWP-V")};var _daf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x5d\xab\x26\xc7\x71\xc7\xef\xcf\xa7\x78\x2e\x9d\x0b\x67\xa7\x5f\xab\x0b\xc4\x01\x23\x45\x44\x0e\x8e\x83\x15\x27\x81\x90\x8b\x79\xa9\x11\x0b\xd1\xd9\x65\x77\x75\xe1\x6f\x1f\xea\xf7\x7f\xa4\xc4\x49\x40\x06\x53\xda\xff\x53\xdd\x53\x5d\x5d\xef\x33\xe7\xdd\xd7\xdf\x7d\xf3\xdd\xdb\xfb\x2f\x8f\x77\xff\xf4\xe9\xc3\xf9\x7d\x7c\x79\xdc\xef\xdf\xae\x4f\xf1\xf9\xc3\x4f\x9f\xce\x78\x1c\xf1\xc3\xfb\xb7\x97\x97\x52\x1f\xd7\xfb\xf3\xcb\xcf\xff\x84\x9c\x3f\xee\x1f\x5f\x5e\x72\xfd\xf7\x7f\xf9\xfc\x25\x7e\xfc\xee\xed\xfe\xf0\x68\xe2\xbb\x7e\xfa\xf8\xe4\x7d\x3c\xde\xfd\x29\x7e\x78\xff\xf9\xcb\xa7\xbf\x3c\x7e\xf3\xbb\xeb\xc3\x11\x7f\xf3\xb8\xe2\x4e\xfc\x8f\x9f\xae\xf8\xf4\xfe\xed\x87\xc7\x6f\x7e\xbf\x7f\xdc\xdf\xca\x2f\x3f\x7c\xff\xd3\xc7\x8f\xff\x19\x3f\xc6\xdb\x97\x47\x01\x8b\xb7\x0b\xfa\xf2\xee\xeb\x3f\xec\x1f\xff\x71\xff\x31\x1e\xef\x7e\x77\x5d\xbf\xfd\xd3\x3f\x7c\xff\xfb\xdf\xfe\x3d\x3f\xf1\xcb\xbf\xc4\xa7\xcf\xef\x3f\xbc\x3d\xca\xf6\xb7\xdb\x36\xff\x1b\xff\xe7\xbf\x7c\x8c\xe7\x56\x2f\xef\xfe\xfc\xdd\x37\x7f\xbc\xef\xcf\xf1\xe5\x51\xfa\x26\x9e\x7f\xfb\xf3\x77\xdf\x3c\xfe\xbd\x3c\xca\xf6\xa8\xa3\xd5\xf9\x1f\x4f\xd6\x7f\xfd\xc3\x87\x2b\x1e\x62\x7a\xe9\x3a\xd1\xf9\xe1\x8a\xcf\x1f\xf7\x33\x3e\xed\x6f\x3f\xc4\xcb\xe3\xf1\xd5\xb6\xbd\x3e\x1e\x8f\xaf\xd6\xf6\x9a\xff\x5a\xa5\x6f\xaf\x8f\xaf\xfc\xdb\x6f\xbf\xe6\xdf\xbf\xd3\xaf\xdf\x7c\xcb\xbf\xfe\x6e\xe3\xd7\x6f\xbf\xce\x5f\xe3\xed\xfa\x5f\xbb\xbd\x14\x3d\xe4\xed\xc3\x97\x2b\x6e\x61\xec\xff\x55\xb9\x5f\x1f\xb5\x95\x5c\xf3\x3f\x7f\x7c\x29\xdb\xf6\x94\xeb\xfd\xf5\xe4\xaf\xc9\x6f\x91\x8f\x7d\x3c\x58\xf4\xb3\x50\xab\x00\xcf\xd6\x12\x5a\x82\xf6\x33\x21\x9f\x09\x1d\x0b\xe8\xb8\x5f\x1f\x0f\xeb\x2c\x3c\x05\x9d\x01\xe4\x09\x5d\x3b\x50\xac\x84\x06\x0b\x6f\xed\x75\x5b\x42\xc6\xc2\xfb\x14\x74\x02\xe5\xc2\xda\xef\x84\xea\x60\xe1\xda\x12\x9a\x2c\xac\xe6\x09\x39\xd0\x2a\x40\xbe\xbf\x3e\x1e\xab\xe4\xf6\xd5\xb5\xf0\x2e\x09\xf5\x9a\xd0\x5d\x05\xf5\xd7\x87\xf9\x58\x2f\x5f\xad\xa6\x33\x36\xce\xe8\x75\x24\xa4\x33\x36\x9f\x09\x2d\xb8\xb4\x57\x3b\xe6\xeb\xa3\x6c\x25\x45\x6d\x87\xa0\x0b\xa8\xe5\xc2\xae\xbd\x7a\x8a\x57\xb6\x91\xd2\x77\x13\x94\xdb\x97\xcd\x53\x88\xae\xed\xbb\x97\xd7\x47\x29\x9b\x25\xa4\xed\x21\xd6\x39\x76\xdf\xc5\x95\xc4\xfa\x2a\x40\x45\x50\x49\xc8\x05\x55\x41\x15\x08\x21\xf6\x26\xa8\xbd\x3e\x6c\x6c\x0d\xa8\x0b\xea\x70\x69\xfb\x21\x68\xc0\x85\x10\xfb\x14\x34\x13\xaa\x5a\x68\x82\x2c\xa1\xa2\xed\x97\xa0\x95\x50\x93\x10\x2e\xc8\x81\xb4\xfd\x2e\x68\x47\xfa\x0d\xe8\x10\x74\x00\xa1\x89\xfd\x14\x74\x22\x57\x07\xba\x04\x5d\x40\x0b\x28\x04\x05\xa2\x4e\x20\xe9\x2b\x89\x8d\x8d\xbd\x0e\xe9\x2b\x89\x8d\xc2\x5e\x87\xf4\x95\xc4\x46\x43\x88\x43\xfa\x4a\x62\xa3\x6a\xa1\xf4\x75\xa0\xaf\xc6\x13\x0f\xe9\x2b\x89\x8d\xa1\xbd\xa4\xaf\x03\x7d\x61\x00\xfd\x90\xbe\x0e\xe9\x0b\xb9\x0e\xe9\xeb\x90\xbe\xd0\x84\xbc\x03\x62\xa3\x69\x2f\xe9\xeb\x40\x5f\x5d\x42\x48\x5f\x49\x6c\x6c\x12\x42\xfa\x4a\x62\xa3\x72\x43\x87\xf4\x95\xc4\x46\xd1\x13\xa5\xaf\x24\x36\x64\x85\x87\xf4\x75\xa0\xaf\x9e\xd0\x92\x7d\x41\x4a\xc1\xc8\x97\xec\x0b\x62\xf2\xed\x25\xfb\x5a\xbb\xb8\xf2\x89\x4b\x5a\x85\x98\xcf\x02\x24\xae\x3c\x50\x29\x9d\x85\x3a\x10\xc4\x26\x67\x5c\x3a\xd0\x8a\x23\xb9\x46\x9e\x71\xc5\x29\xe8\x84\x0b\x21\xe2\x12\x94\xde\x51\xb1\xd5\x15\x12\x35\x89\xf9\x64\xa1\xe2\x04\xa4\x54\x0c\x60\xdd\x12\x22\x89\xcd\x26\xa8\x0a\x72\xb8\x16\x90\x84\x48\x62\xb3\x71\xa0\xfb\x10\x74\x26\x57\x49\xc8\xe5\xb5\xde\x17\x90\x03\xb9\x20\x1d\x68\x01\xb1\x97\x8f\xf4\xda\x5a\xe1\x1a\x55\x50\x45\xd4\x06\xd4\x04\xb5\xe4\xd2\xc2\xd1\x05\x75\xf6\xd2\xc2\x21\xc8\x92\xab\x6f\x40\x4b\xd0\x62\xaf\x0e\x24\x21\xc6\x01\x97\xa0\x53\x10\x2a\xc4\x72\x7c\xa0\x42\x27\xe6\xd4\xce\x13\x67\x11\x84\x72\xb8\x21\x9f\x12\x95\x30\x54\x07\x90\xc2\x90\xaf\x3d\x21\xfc\xd1\xd7\x21\xe8\x60\x21\x4f\x5c\x7a\x62\xc6\x89\x52\x71\x51\x57\x9c\x80\xd8\xc4\xbe\x5c\x71\x02\x52\x5a\x2d\x40\x3a\x10\x71\x62\xf6\x09\xa4\x03\x5d\x17\x5c\x08\x71\x85\xa0\x80\x8b\xeb\xb8\x30\x00\x8f\x9e\x5c\x06\x14\xd2\x57\x12\xf3\xc9\x13\x43\x42\xdc\x3c\x71\x21\xd7\xad\x27\xde\x7a\x22\x9a\xb8\xf5\x44\x6e\xbb\x63\x5f\xbb\x6e\x1b\x52\x3a\x81\x6f\xef\x45\x10\xfa\x1a\x1b\x10\xfa\xda\xd1\x57\xdf\xf2\xd2\x76\xe9\x6b\x47\x5f\xdd\xe0\x92\xbe\x76\xe9\x0b\x23\xdf\xa5\xaf\xdd\x6b\x72\xa1\xd5\xdd\x9b\xa0\x06\x57\x23\x83\xff\x9c\x77\xff\xbf\x54\xbc\x76\xef\x5a\x91\xa6\xdc\xc9\x6f\xbb\xef\x82\x30\x65\x42\xd2\xee\x7a\x7a\xe6\xa1\xd2\x9d\x93\x9c\x92\xf1\xc4\xa9\xc7\x00\xd2\xe1\xce\x14\x5b\x01\x62\x3f\xb5\xf0\x94\xd8\x13\x48\x62\x47\x8a\x3d\xb8\xad\x3d\x24\x76\x48\x6c\xb6\x0f\xc9\x85\x3a\x07\x2a\x38\xa4\xce\x23\x3d\xa5\x0c\x12\xd0\x21\x4f\x81\xd8\x24\xc9\x1e\x9d\x27\x1e\x23\xd5\x39\xf1\xe0\x63\xdc\x82\x6e\xb8\x52\xc3\x87\xd2\xfa\x81\xd2\x27\xf1\xe7\x90\xd2\x8f\xcc\xee\xe5\xb9\xd7\xaa\x82\xe4\x75\xec\xb5\x9a\xa0\x34\x86\x49\x94\x3a\xd6\x12\x24\x7f\xd2\x5e\x18\xc3\x41\x10\x9c\x82\x14\x04\x0f\x05\xc1\xc9\x81\x14\x04\x0f\x4c\x79\x92\x64\x0f\x99\xf2\x21\x53\xd6\xf6\x32\xe5\x03\xdd\x4f\x32\xea\x21\xdd\x43\xcc\x27\xa2\x4a\xf7\x47\x2a\xb7\x18\x06\x7f\x9c\x97\xa0\x8b\xbd\x2a\x10\x3e\x70\x44\xde\x90\x11\xcb\x8e\x90\xbe\x82\x1b\x22\xb2\x1c\x8a\x9e\x47\x46\xbc\x62\x3a\xb6\x22\x1e\xc4\x26\x31\xe3\xb8\xa5\x89\xf4\x81\x62\xc6\x42\xf9\x00\xc4\x26\xce\x73\x28\x2e\x42\x8a\x4a\xaa\x43\x71\x11\x62\xf3\xb9\xfd\xf3\x89\x48\x8f\x29\x9f\xba\xed\x33\xe3\x57\xb1\x95\xdb\x9f\x63\x0a\x22\x1a\x70\xec\x73\x10\x0d\xce\x2c\x7d\xca\xe2\xb6\x4f\x2b\x82\x70\x31\x4a\xbd\xd3\xaa\xa0\xbc\xed\x45\x02\x3a\x75\xdb\xa7\xb3\x10\x2b\x3c\x5d\x0b\x5d\x0b\x3b\x90\x16\x7a\xca\xb5\xa6\xa0\x4b\xd0\x85\xee\x1d\x28\x04\x11\x59\x4c\x7b\x61\x72\x67\x26\xb0\xb2\x88\x2c\xa7\xea\x01\x88\xcd\x27\xd4\x04\x21\x97\x0b\x7a\x2e\xc4\x56\x8d\x33\xea\xb6\x4f\x94\xe3\x25\x55\x78\x49\x39\x17\xae\xe0\x9c\xf1\x92\x2b\x5c\x72\x05\xea\xba\x4b\xae\x70\x71\x6c\x47\xab\x97\x8e\x7d\x65\xe8\xa8\x1b\xe9\xf3\x5a\x97\x20\xcc\xe4\xc9\xc5\x81\xae\x0c\x23\x75\x23\xbc\x5d\x8a\x13\x10\x9b\x5c\xc7\xe5\x43\xd0\x4a\x2e\x22\xc0\xe5\x2e\x08\x03\x20\x54\x5e\x8a\x26\xd7\xb5\x25\x17\x76\x7f\x5d\x45\x10\x8a\x5e\x2c\xbc\x50\xce\x95\x5e\x5f\x0b\xe5\xc6\xa5\x48\x0c\xb1\xb9\x04\x61\x00\x57\x1a\x66\x2d\x98\xef\x25\xc3\xbc\x64\x98\xcb\x80\x9a\xa0\x3c\x63\xa1\x23\x08\xe9\x2b\xfa\x48\x68\x08\x9a\x82\x30\x26\x2a\xef\xe8\x26\x28\x0f\x54\x30\xcc\x50\x76\x0e\x65\xe7\xa5\x85\xbb\xa0\x1d\x2e\x41\x87\x20\x2c\x9a\x20\x1a\x1d\x8b\x8e\xb4\xcf\x5a\xb8\xa1\x50\xde\x85\x98\xdc\x3d\x94\x77\x23\x23\x53\x2d\xe8\x2b\x14\x99\x20\xe6\x04\xbe\x50\x92\x8d\xbc\xc7\x5a\x28\xec\x43\xf7\x18\x67\x1e\xa8\x52\x5c\xc6\xa9\x03\x9d\x1c\xc8\x1b\x90\x0e\x94\xfd\x50\xad\x82\x2e\x89\x7a\x91\xd6\x09\xa2\x71\x61\x00\x81\xbe\x1a\x95\xf7\x2d\x7d\xdd\x79\xec\xda\xc8\x95\xb7\x8e\x7d\xcb\xbe\x5c\x10\x7b\xdd\x59\x6e\xd4\x46\xc4\xbc\x55\x6e\x40\x6c\xba\x20\xe4\xba\x91\xbe\xa1\xaf\x5b\xd2\xdf\x99\xcc\x6a\xc7\xa2\x6f\x25\x33\x88\x29\xca\xdd\x32\xcc\x3b\xfd\xb1\x76\x42\xda\x2d\x7f\xbc\xc9\x6f\xb6\x15\x20\x0c\xf3\xce\xb6\xa4\x76\x2a\xef\x5b\x6d\x09\xc4\x8c\x54\x7c\xab\x2d\xb9\xb3\xb8\xac\x1d\x77\xbf\x55\x5c\x42\xcc\xb6\x0e\xa4\xed\x2f\xf6\xc2\x56\xef\x4b\x7b\x5d\xda\x8b\x85\x97\xf6\x4a\x15\x56\xb5\x12\xb7\x54\x08\x31\x23\xd3\xdf\x2a\x37\xee\x48\xe9\xc7\xd6\x7f\x3d\x15\xdf\xa1\xa7\x27\x31\xa3\xaa\xbc\x95\x18\x6f\xae\x66\x64\x6d\xe0\xea\xcf\x7d\xc3\x48\x49\xb2\xbe\x61\xa4\x22\x66\x4f\xae\x1d\xc8\xd2\xfc\x28\xcc\x7d\xb3\x25\x88\x34\x95\x16\xe9\x9b\x69\x21\x57\x33\xd2\xb0\x7c\x5b\xda\x3e\x89\x59\x81\x8b\x7e\xd7\xb7\x0c\x69\x75\x38\xdb\xef\xe2\xda\xc5\xd5\x80\xc4\x95\x12\xd7\xd9\x58\x48\x0e\x17\x31\x2b\x08\x81\x53\xfb\x96\x55\x78\x9d\xda\x8b\x2a\x5c\xc4\x2c\x5d\xdf\xb7\x5b\xdb\xdf\xf3\xf5\x51\x2d\xed\xc3\xb7\xac\xbe\x9e\xc4\xac\x2c\x20\x1d\xe8\xd6\x81\x90\xfe\xd6\x81\x92\x54\x2b\x6c\x7f\x4b\x13\x64\x1b\x37\x44\x25\xdb\x88\x54\x4b\xe7\xf1\xe7\x4c\xa4\x10\x20\x48\x9f\x5e\x08\x10\x22\x66\x75\x03\x42\x88\x82\x53\x5b\x03\xc2\xa9\x45\xcc\xb2\x1c\xf5\x82\x53\x7b\x99\xe9\x75\x96\xd1\xd3\xcb\x3c\x04\x1d\x70\xf1\xc4\x79\x0a\xba\x92\x2b\x4b\x04\x2f\x33\x04\x05\x5c\x08\x31\x51\x4e\x31\xb8\x8c\x27\x9a\xb8\x4c\x5c\x3d\x21\x5d\x5a\xc9\x0a\xa4\x5a\x86\x4a\x2f\x4b\x42\x2c\x6c\x22\xdb\x30\x2f\x0b\x4d\x94\x6c\x35\xab\x39\x5c\xb4\x9a\x22\xe6\x06\xd7\xa1\x63\x67\x53\x55\x57\xe7\x89\x87\xa4\x3f\x24\xbd\x16\x4a\xfa\x53\x5c\x40\xa7\xb8\x4e\x71\x71\xa0\x53\x5c\x57\x5e\xc7\x9a\x1c\xfb\x92\x10\x49\xcc\x2a\xca\xb9\xb4\x30\xd2\x37\xc9\x95\x5e\xa2\x08\xc2\x37\xb3\x03\xf2\x82\x77\x78\xc9\xda\xa4\xae\xc5\xb1\x69\xe9\x44\xec\x79\x1d\x21\xe5\xdc\xc8\xa5\x33\xde\xda\x1e\x03\xb0\x86\x56\x65\x00\x90\x4a\x46\xf5\x2a\x03\xa8\x18\x80\x63\xf7\x55\x06\x50\x65\x00\x99\x2b\xbd\xca\x00\x20\xd5\xb1\xc2\xda\x97\x20\x0c\x00\x7f\xac\xf2\xc7\x9a\xe1\xb1\x7a\xd5\xf6\xa7\x20\x89\x6a\x40\x88\x5a\x87\xb8\x58\x38\xc4\x45\xcf\x65\xd9\xbf\x79\xa5\xe7\xf2\x8a\x8b\x3a\xd7\x51\x75\xdb\x75\xa5\x3f\xba\x21\x97\x0b\x72\xfc\x51\x5c\x54\x33\x5e\x33\x3c\x56\x77\x0e\x44\xc2\x16\x31\xa6\x67\x5e\x5d\x67\x74\x84\x40\x5f\xd5\x25\x84\x23\x44\x36\x7e\x5e\x5d\x42\xa4\x4d\xb4\x2d\x03\xaa\x57\xd9\x44\x95\x4d\x74\x41\x5a\x98\x39\xa9\x6d\xd2\xd7\xa9\xed\xc9\x49\xd6\x05\x49\x85\x49\xda\x46\x64\xaa\xa7\x54\x78\xa2\xc2\x27\x24\x15\xa6\x01\xb5\xad\xa3\xaf\x53\x42\x50\xce\xda\x13\x92\x0a\x6f\xb8\xb2\x29\x72\xcd\xd8\x44\xda\x46\x80\x69\xf4\x5c\x22\x26\x7f\x6c\xf4\x5c\xde\xf2\xb6\x5b\xc9\x3c\xe2\x4d\xb7\xdd\x74\xdb\x5d\x0b\x4d\xd0\x09\xd7\x04\xba\x04\x21\x44\xf6\x6f\xde\x74\x8f\x2d\xb3\x60\x2b\xc4\xc2\x46\x16\x14\x31\x1b\x6c\x3f\xb4\x7d\x5e\x67\x2b\x55\xd0\x73\x21\x8e\x2c\xe9\xe9\x54\xbc\xcd\x99\x5c\x58\x74\x9b\x12\x62\x12\xf8\x06\xdb\xcf\x25\xc8\xe1\x42\xd4\xb9\x0b\xc2\xad\xb2\x67\xf3\xa6\x98\xd3\x32\x82\xb4\xc2\x3d\x36\x93\x72\x4c\xb5\x05\x07\x32\x29\x87\x6a\x99\x59\xa9\x37\x93\x72\xd2\xe4\x5a\x91\x26\x64\x72\x2d\x9b\x9f\x56\x70\xe4\xb6\xba\x20\x82\x7b\xf6\x6c\xde\x96\x8e\xed\x06\x17\x90\x4b\x54\xe7\x6a\x07\xba\xa7\x46\x74\x66\x9a\xad\x2c\xb8\x4e\x6d\x4f\x3f\x63\x93\x63\x9f\x92\x2b\x6b\xc4\x56\x89\x26\xed\x92\x5c\x17\xf9\x71\xa2\x42\xb2\xb3\xb7\x6b\x25\x17\x96\xd3\x2e\x6d\x7f\x11\xf8\x26\xfa\x52\xcc\x69\x99\x9a\x5a\x1d\xf5\x57\x53\xb1\x37\x65\xae\x46\xed\x49\x07\xe4\x2d\x74\x81\x91\x87\xab\x13\x0d\x87\x0e\x17\x1c\x6e\x72\xb8\xd0\xd3\x6f\x1e\x25\x15\xdc\xda\x8b\x41\xf0\x22\x4d\xb5\x5b\x8a\xc2\x6e\x6b\xd6\xea\xae\x79\xae\xf7\xce\xf6\x68\xa5\x2b\xb2\x74\x45\x96\x29\x2e\x17\xe4\x5c\xa0\xb8\x38\x5c\x1f\x2c\x74\x20\xe5\xa4\xae\x9c\x44\xd2\xe8\xca\x49\xdd\xd2\xe0\x5b\x49\x21\xba\x4d\x41\x18\x3c\xf5\x40\x37\x13\x94\x37\xdf\x30\x19\x4d\x90\xbd\xaf\xb4\xc8\x86\xc1\xf7\x25\xae\x85\x45\x9a\xb8\xf4\xc4\x24\x8d\x4a\xd0\xbb\x12\x50\x57\x02\x22\xef\x76\x25\xa0\x9e\x35\x5e\x6b\x53\x7b\x5d\x82\xf0\x27\x62\x59\xa7\xf9\x70\x46\xcf\xad\xa1\x68\x8d\x9e\x45\xcc\x48\x53\x1a\x3d\x3b\x23\xde\xd6\x96\xa0\x53\x10\x81\x0b\xeb\xd6\x88\x57\xa4\x35\x17\xd7\x73\x7b\xbc\x4e\x2a\x64\xc4\xeb\x0c\x36\x5b\x93\x0a\x0f\x71\x31\xd8\x74\xe3\x40\x87\xb8\xb0\xc8\x8e\x9f\x77\x59\x64\x97\x45\x8a\x4b\x16\xd9\xb3\x1f\x69\x9d\x6c\xd3\xef\x27\x44\x09\xb9\x38\xb6\x6c\xa2\x63\x00\x1d\xfb\x1a\x32\x00\x48\xeb\x9c\x71\x28\x70\x8d\xce\xf6\xab\x00\x35\x41\x17\x5c\x0b\x28\x04\x71\xa0\xec\xcc\x7c\xf0\x1e\xc3\xc7\x60\xaf\xec\x47\x7c\x0c\xed\x35\xf0\x73\xd2\xe7\x60\xa6\xe8\x63\x34\xb8\x58\xc8\x00\x51\xc4\x0c\xad\x0e\xc5\xb2\x91\x51\xaa\x75\x32\xc4\x18\xcf\xed\xa9\xd8\x28\x37\xc6\x94\xf4\x59\xd4\x34\x66\xfc\x3e\xe6\x25\x88\xab\x5d\x82\x24\x2a\xf6\x35\x08\x82\x43\xf6\x35\xd2\xf5\x1b\x23\x71\x1f\x72\x7d\x88\x59\xf6\x5c\x3e\x4e\x89\x9a\xe5\x46\x9b\x1b\xd2\xab\xdc\x18\x2a\x37\x74\x46\x95\x1b\x23\x5b\xcd\x36\x0b\x5c\x97\xf6\xa2\xd5\x74\x3c\x6d\xe8\xd2\xc6\x95\x0e\x33\xc9\xce\xe3\x5a\x82\x70\x18\x72\xe5\x50\x18\x19\x59\x82\x36\x06\x44\x3e\x54\x82\x0e\x95\xa0\x54\xcb\x43\x25\xe8\xe0\x1e\x99\x19\xf9\xd4\x3d\x4e\x1c\x99\x79\x8a\x4f\x39\xf2\x94\x23\x67\xc3\xe0\x53\x8e\x3c\x09\xe1\x13\x1f\x9a\x0a\xe1\x53\x21\x1c\x5b\x9d\x0a\xe1\x13\x7d\xd1\x7c\xf8\x94\xbe\x66\x26\xff\xa6\x5a\x6c\x2a\xf9\x4f\x25\x7f\x17\x54\x04\xa5\x10\xca\xce\x53\x91\x18\x62\x8e\x15\x4e\x45\xe2\x89\x56\x95\xa6\xa6\xb4\x3a\x9f\x5a\x35\x20\xb4\x3a\xaf\xd4\xc4\xda\x10\xf5\x32\x41\xd2\x04\xc7\x96\x0a\x67\x36\x45\x6d\xa1\xfb\x49\x53\x24\x62\x46\x2a\x9e\x34\x45\x3e\xaf\x94\x7e\xa1\xfb\x19\x92\x3e\x89\xad\x4d\x90\xa4\x4f\x45\xb7\x45\x1d\x3c\xa5\x68\x88\x2d\x12\xf6\x54\xad\x0f\x69\x8b\x7a\x60\xaa\xd6\x87\xd8\x53\x54\x55\x7f\x93\x1b\x5a\x24\x33\xd3\x0d\x19\xde\xb1\x38\xb6\xc9\x3b\x20\xb6\xb0\x2f\x93\x77\x58\x9a\x6c\x5b\x44\x5f\x53\x31\x0e\xb1\xb5\xe5\x0d\x99\x32\xaa\x65\xca\x6c\x8b\x33\x9a\x35\x41\x0d\xae\x09\xd4\x05\xe5\x5e\x4e\xfd\x64\xba\x47\x23\x62\x3a\xfa\x32\x45\x4c\x88\x2d\x7c\xc8\x14\x31\x0d\x4d\x38\xb5\xbe\x49\x13\x76\x8b\x8b\x27\xde\x4f\xae\x9d\xab\xe5\x40\x3a\xb6\xe5\xb1\xfb\x46\xbd\xb9\x74\x6c\x88\x2d\x2a\xdc\xa5\x00\xb3\x32\x5c\xf4\x8d\xb2\x71\x0d\x71\x0d\x71\x55\x20\x71\x65\x86\xe9\x1b\x25\xc2\x52\x86\x81\xd8\x22\x16\x2e\x65\x98\x95\x9a\xe8\x1b\x61\x5b\xaf\x82\x7c\x49\x08\x5c\x54\x2f\x40\x44\x7a\x59\xbf\xde\x15\xbb\x4b\x46\x88\x31\xc4\x72\x57\xf5\xc6\xdb\x8a\x5e\x88\x3f\x7a\x5b\x21\x62\x32\x3f\xbd\xad\x70\x4f\x1f\xea\x15\x19\x5d\x3d\x17\xc4\x56\x31\x20\x71\xe5\xd5\x74\xde\xb5\xb8\xde\x56\xb8\x67\x53\xd4\x2b\x86\xe5\x6a\x8a\x20\xe6\xc4\x58\xe7\xfd\x9b\x33\xef\xef\x0d\x5b\xd3\xbc\xdf\xf7\x8c\xc4\xbd\x99\xa0\x5b\x10\x26\x43\xc3\xb0\x4b\xc3\x7b\xea\xae\xb7\x25\xc8\x05\x71\xa7\xb4\xad\xfb\xe0\x4e\xf7\xac\x04\x7b\xc3\xc5\x76\x55\x82\x10\x73\x42\xf8\xae\x4a\x70\xb7\x14\xa2\x73\x5b\xbb\x5d\x82\xd2\xeb\x16\x31\x76\x57\xc7\x08\xe9\x9d\xc2\x5c\x6f\x18\x9c\x37\x0c\xbd\xd3\xb5\xe8\x0d\x83\x88\x2d\x7a\x54\xbd\x61\x10\x31\x5f\xe2\xd2\xf6\x19\x9c\x7b\xa7\x98\xde\x15\x9c\x21\x26\x77\xdd\xcf\x26\xa8\xb1\x70\x02\xe1\x03\x7b\x16\x48\x9d\x77\xc5\xbe\x87\xce\x18\xb2\x5b\x03\x92\x10\x68\x95\xf7\x95\xae\xb1\xbf\x1f\xdc\xf6\xa0\x6a\x38\x74\xdb\x87\x6e\x1b\xb7\x38\x74\xdb\x0c\xf4\xfb\x20\x69\x68\xa0\xef\x4c\xef\xfb\x44\x2e\x4d\xef\x45\x6c\xd1\x73\x1d\xaa\x63\x8f\x0c\x95\x5d\x81\xfe\x50\xa8\x3c\x9e\xa1\x72\x01\xb9\xa0\xf4\x14\x5e\xf8\xb8\x06\xfa\x22\xb6\x88\xc4\x1a\xe8\x3b\xc3\xee\xce\xdb\x0e\xd7\xb0\xdb\x99\x6c\x9b\x23\x97\x26\xdb\xce\x34\xba\xab\x1f\xd1\x34\xda\xcf\x5c\xdf\xe5\x9b\xa7\x6a\x1e\x88\x2d\x1a\xe5\x53\x35\x0f\x83\xe0\xae\xa6\x5b\x83\x60\xbf\xb2\x6b\xe9\xde\x04\x99\x20\xcc\x84\x64\x76\x29\x01\x31\x08\xee\x4e\x1b\xa6\x41\xb0\x88\x2d\xec\xfe\xd2\x9c\xe7\x4a\x03\x18\x1b\x91\xf8\x92\x01\x40\x6c\x35\x41\x28\xfa\x4a\x57\x18\x1b\x26\x77\xc9\x15\x20\xb6\x18\xfd\x5c\x87\x9e\x98\x81\x6b\x30\x1b\xf6\xeb\x7e\x42\x68\x95\xf4\x79\x29\x84\x33\xa9\x1d\x85\x74\xa0\x49\xad\xc7\x6c\x40\x29\x6a\xcc\x2e\x88\x02\x9a\x92\x2a\x26\x45\x09\x13\xd1\x51\x68\x05\x34\x11\xf5\x48\x8b\x1e\x6a\x2b\x42\x16\x1d\xb2\x68\x8c\x3c\x74\xa0\xd0\x13\x89\xd7\x9a\x75\x3a\xf3\xc9\xa1\xd2\x58\xf3\x49\x91\xd1\xa8\xc5\x6e\x29\x07\x62\x4e\xb1\x74\xf3\x76\xc8\xef\x6c\x48\x07\x6f\x0f\xfd\x56\x43\x0a\xb1\xd5\x04\x11\x01\x18\x20\x8e\x4e\x67\xa6\x01\xa2\x88\xb9\x0b\xe2\x40\xf7\x0d\x17\x46\x7e\xab\x46\xbc\xf5\x01\x09\xf5\xc0\x7d\x3f\xb9\x52\xfa\x9e\x2a\xc4\x06\x33\x9b\xf2\xbf\x96\x56\x18\x9a\x10\x06\x53\xbd\x31\xf2\x1e\x43\x53\xbd\xd8\xbc\x26\x94\x45\x49\x6c\xbc\x2a\x14\xb1\x95\x85\x57\x6c\x8c\x52\x63\x4b\x33\x1b\x63\xc1\xb5\x3f\x21\xe9\xde\x81\x06\x50\x66\xfa\x31\xb5\x3d\x99\x5e\xc4\x98\x19\xc5\x46\xa6\x0f\x66\x6c\x83\x57\x7a\xa1\x19\x5b\x94\x2c\x7d\x06\x13\xf7\x28\x34\x2f\x22\xb6\x7a\x01\x3a\x80\x90\x9e\x09\x61\x68\xbc\x15\x8c\x7e\x06\x75\x4a\x68\xf4\x23\x62\x2b\x1b\xbf\xd0\xe8\x27\x18\xea\x8c\x95\x36\x11\x1a\xea\x44\xcd\x28\x39\x56\x76\x04\x51\xb3\xe2\x7a\x12\xc3\x87\xa2\x52\x78\x45\xcd\xcc\x35\x18\xea\x44\x25\x87\x8b\x18\xb5\x45\x54\x72\x78\xd4\x6c\x91\x86\x57\x71\x2d\x41\xb2\x68\xf6\x32\x6d\x8f\xf4\x9e\xb6\x1a\x1a\xd7\x44\xc5\x61\x1c\x15\x56\x1c\x46\xc4\x56\x67\xaf\x43\x7b\x65\x0f\x32\xb8\xed\xa8\xf4\x20\x22\xe6\x8e\x10\xf4\x20\x51\xb3\x40\x9a\x5b\x26\x9d\xa8\xcc\xc5\x44\x8c\x02\x27\x6a\x48\xfa\x8c\xa5\x73\xe3\x6a\x2b\xaf\xf4\x44\x6c\x65\x1b\x17\x55\x2a\x64\x78\x32\xb7\xbe\x7e\x35\x15\x87\x66\x2b\xd1\xb2\x10\x98\xa4\xf8\x68\x14\x02\x22\x46\x2d\x15\x8d\x64\x26\x32\xb7\x8c\x78\xd1\x48\x66\x22\xb6\x46\x05\xe2\x9a\x5b\x3a\xf5\xdc\x9c\x85\x38\xb5\x88\xad\xd1\x80\x26\x50\xaa\x73\x16\xce\xab\x51\x44\xb4\x73\x26\x94\xf1\x3a\x1a\x23\x25\x11\xf3\xcc\x95\xd1\x4e\xc9\xc5\xe1\xf0\xf3\x50\x87\x1d\x34\xb7\xb3\x22\x84\x9a\xdb\xe8\x99\x0e\x26\x6f\x3e\xa2\x93\x0e\x44\x6c\x0d\x41\x43\xd0\x4a\xae\x8c\x52\xa1\xe6\x56\xc4\x56\x06\xfa\x50\x73\x1b\x7c\x6a\x35\x5b\x65\x21\x6f\x2b\x44\x6c\xe1\x03\x5d\x5e\xc7\x27\x3a\xb3\x65\x2a\x0e\x7d\xa2\x23\x62\x6b\x20\xea\xa1\xbd\xb2\x30\x9f\x2d\x7b\xe7\xe8\x14\xe6\x22\xe6\x3a\x10\x85\x79\xd0\x44\xce\x86\x0a\xd5\x44\x06\x0d\xd6\xec\x38\xa2\x1a\xac\x18\x7e\xbd\x3e\x26\x79\x37\x06\xef\x2b\x45\x16\x81\x3e\x06\xa5\x5a\x8c\x14\x62\xf2\xe9\x50\x0c\x09\x31\x8e\x03\x2e\xb6\x67\xc2\x17\x23\xad\x68\x2a\x8c\x0c\x59\xd1\x90\x23\x62\x13\x43\x8e\x48\x53\x34\x67\x16\x5e\xa1\xa6\x28\x66\x96\x3e\x73\xe2\x3c\x93\xaa\x52\xc4\xd6\x1c\x40\xe8\x8b\x76\x67\xf2\x1d\x47\xa8\xdd\x89\x99\x57\x30\x79\x67\x16\x73\x4d\x41\x93\x85\xe2\xc2\x00\x66\x4c\xb8\xd8\x3e\x9e\x10\x2e\x36\x05\x61\x13\xb4\x02\x93\x06\x2b\xd4\x0a\x84\x65\x41\x38\xf9\x94\x2f\x8c\x82\x50\xc4\x96\x6d\x40\x1c\x88\xf2\x7d\x32\xc6\x0e\x95\xef\x61\x7b\x3e\x71\x65\x5f\x19\xc6\x87\x29\x22\xb6\xb8\x34\xe3\x6d\x7e\x58\x6a\x72\x7a\x81\x8b\xb9\xa9\x88\x2d\xeb\x40\x68\x95\x5a\x7d\x2a\x40\xa8\x56\x8f\xc5\x8c\x7f\xcb\x7e\x24\x96\x9e\xb8\x48\x2d\xdb\x4c\x63\x5a\xa4\x16\x11\x93\x10\xeb\x12\x17\xe5\x46\x21\x70\xa9\xe4\x0e\xcf\xc0\x65\xbc\x3d\x0c\x57\xe0\x82\x2c\xe6\xb9\xe1\x0a\x5c\xd4\xc1\x56\x09\x23\xaa\x83\xc3\xf9\xb0\xae\xe2\x0a\xce\x87\x75\x22\xb6\x16\x7b\x31\x75\x09\xc7\x7c\x2b\x86\xe9\xb2\x1c\x88\x2d\xf2\x88\xeb\xd8\x8e\xf9\xb6\xac\xcf\xc3\x65\xbe\x10\x63\xa0\x1f\xce\x88\x37\xa8\xa9\xad\xb5\xdc\x5e\x35\x75\xec\xf4\x5c\x2d\xdb\xd6\xd8\x4d\x10\x53\xcc\x95\x55\x69\xec\x4c\x31\x45\x96\xf4\xb5\x33\xc5\x0c\x8a\x5e\xe3\xbd\x60\xa8\xe8\x8d\x9d\xc9\x76\xcf\xae\x38\x76\x26\xdb\x22\xb6\xb2\x50\x8d\x5d\xde\xb1\xeb\x3b\x47\xee\x71\xa7\xf0\x8a\x3d\xb3\xe0\xaa\x88\xaa\x22\x2e\xce\x6c\x45\xd6\x96\xbd\x60\x9c\x4c\x90\x45\xd6\xb6\x2d\x20\x13\xc4\x67\xa7\x53\xd0\x12\xc4\x37\xa6\x18\xd3\xc9\x30\x40\xe4\xc1\x60\x33\x4e\xe6\xcc\xc1\xe7\x0d\x6b\xcb\x2e\x2f\x4e\x45\xcc\x73\xf0\x9e\x1e\x7f\x3c\x99\x20\x8b\xac\x8d\xc8\x74\x32\x9b\x11\xb1\x99\x4d\x64\x9c\x53\xa2\x4e\x44\xad\x2c\x9c\x4d\x10\xaf\x69\xd1\xd7\xa9\x50\x7b\xa6\xa2\xd7\x56\x81\xa4\x68\x88\x3e\x9a\x0d\x7d\x5c\x21\xb2\x98\xf1\x87\x3e\xae\x10\x79\x30\x0e\x8c\x53\xe9\xf3\xcc\x94\xb9\xf8\x5e\x35\x4e\xd3\xf6\x86\x72\x1a\x72\xc9\x0a\x21\x36\xa8\x07\x4e\x59\x21\xc4\xc6\xd2\xc2\x5d\xd0\xce\x42\x71\x49\x13\xc6\xe7\x8a\x5c\xda\x69\xa7\x20\x34\x81\x0f\xa9\xa6\x16\xb1\xe1\x28\x67\x49\xfa\x85\xf4\x1d\x51\x97\xa4\xe7\x13\x1f\x5e\x81\xc6\xb9\x24\x3d\x4d\xc2\x20\xad\x9f\xca\x0a\x90\xb5\x61\x39\xa7\xb2\x02\xc4\x06\x31\xe7\x54\x64\x82\x18\x1f\x28\xc5\xa9\xc8\x74\x2e\x3c\xad\xa3\x2f\xe5\x0e\x88\xf1\x3a\x35\x4e\xe5\x0e\x3e\x46\x59\x5b\x9f\x7f\x9d\x8a\xdb\xf8\x3f\x99\xf8\x54\xa5\x76\x66\x57\xb2\x36\x52\xe5\xe9\xcf\x3d\x78\x3f\x5f\x38\xae\x4b\x4f\x4e\x04\x27\xb3\xe8\x53\x15\x91\xc5\xd7\x18\x71\x2a\x6e\x9d\x07\x0f\x97\xf5\x1d\x52\xca\x39\x12\xd2\xc5\x2b\xc7\x9e\xbc\xb7\x1b\x04\x83\xf3\xd2\xf6\x17\xdb\x13\x9b\xcf\x4b\xd7\xc0\xdc\x7c\x18\x5c\xa1\xe3\xa6\x4f\x2f\xbe\x4a\x0e\x35\x2d\x71\x65\x85\xb0\x4a\x01\xa2\xc6\x17\xd1\xd7\xd2\x71\xd1\xdb\xc6\x35\xe1\x6a\x82\x76\x41\x9c\x11\x7b\xbf\x18\x91\xc5\x95\xe1\x7a\x95\x2e\x28\x04\xf1\x39\x0e\x51\xf7\x62\x72\x13\x57\xda\xe5\xe2\x43\xd2\xb8\x54\xcf\x41\x6c\x52\xf5\x5d\x36\x04\x2d\xb8\x04\x9d\x82\x52\x5f\x7c\x5b\x1a\xea\x9c\xe2\xca\x3b\x5b\x05\x4d\x5c\x4b\xdb\xa3\x55\x3e\x1c\x09\x75\x15\x71\x33\xb6\x58\xd9\x8e\xc4\xcd\xd8\x42\x64\x55\x82\xc1\xcd\x38\x57\x64\x55\xb2\xc1\xdd\xbb\x20\x45\x24\x07\x0a\x41\x41\xf8\xa9\x40\xb7\xa0\x9b\x85\x29\xc4\x3d\xf4\xc4\x24\xab\x12\x29\x6f\xe5\x58\xc8\xaa\x86\x10\xca\xb1\xf7\xa4\xb2\xc5\xfa\x6e\xe9\xfe\xc6\xe9\x54\xff\xde\x72\xba\x3b\x3d\x6c\xf1\xb2\x23\xf4\x35\x46\xdc\x4e\x30\x68\x9c\xd1\xb5\x7d\x1a\xe3\x2a\xeb\xaf\xdf\xab\xe4\x7f\xff\xb8\x7f\x7c\xf9\xe5\x0f\x22\xce\x9f\x3e\x7d\x8a\xb7\x2f\xfc\xf9\x05\x7f\xf4\xf0\xb8\xe2\x7e\xff\x16\xbf\xfc\x29\xc7\xc7\x0f\x1f\x73\x15\xff\xff\xaf\x00\x00\x00\xff\xff\x9a\x9d\xb4\xf4\xf6\x31\x00\x00"); -var _gfee =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x14\x5e\x5b\x9a\xfe\x83\xd2\x85\x63\x8d\x83\xa1\x91\x8d\xe3\x2c\xf2\xed\xcb\xb9\xc7\x0e\xa5\x8b\xe0\xf8\x58\xba\x72\x7e\x27\xa3\xd1\xcd\xdd\xc3\xfd\xc3\xba\x3f\xa7\x9b\x9f\x4f\x87\xed\x63\x3f\xa7\xdd\x7e\x5d\x4e\xfd\xf5\xf0\x76\xda\xf6\xf4\xd4\x9f\xf7\xeb\x30\x88\xa6\x65\xbf\x3d\x5f\xdf\xc6\xcb\xf6\x65\x73\x1c\x06\x9c\xff\xf8\xfe\x7a\xee\x2f\x0f\xeb\xee\x90\x8c\xc7\x2d\x6f\xc7\xcb\xb1\x29\xdd\xfc\xd2\x9f\xf7\xaf\xe7\xd3\x7b\xfa\xf4\x65\x39\x3c\xf5\xef\xd2\xd2\x77\xc8\x7f\x3a\x2d\xfd\xb4\x5f\x9f\xd3\xa7\x1f\x36\xc7\xcd\x2a\x1f\x1f\x3c\xbe\x1d\x8f\xff\xf4\x97\xbe\x9e\x53\x8d\xac\xaf\x4b\xbc\x0e\x37\x77\xdf\x36\xc7\x1f\x37\x2f\x3d\xdd\xc4\xac\xcf\x3c\xf3\x33\x0f\x8b\x4f\x7f\xef\xa7\xd7\xfd\x61\x4d\xf2\x7d\xce\xff\x89\x7f\x7d\x3f\xf6\x24\x97\x29\x7f\xfe\xf6\x70\x9f\xfe\x92\x24\x39\x69\xa9\xe2\x7f\x5f\xf2\x3f\xbe\x1d\x96\x9e\xf2\xf5\x5a\x0f\xf7\x77\x87\xb7\xf5\x9c\xd4\x72\x69\x0c\x85\x7f\xd6\xf6\xb0\xf4\xd7\xe3\x66\xdb\x4f\x9b\xf5\xb9\x0f\x29\xcd\x39\xe7\x7c\x9b\xe6\xf2\xe5\xeb\xd7\x5b\x7c\xdf\xff\x1d\x31\x4c\xd7\x33\xf7\x0b\x93\xeb\x19\x39\xef\x76\xb7\x29\x0f\x73\x16\xbe\x17\xbc\xd7\x52\x87\x39\x2b\x13\x45\x52\x44\x87\x39\x1b\x13\x43\x32\xd6\x36\xcc\xd9\x99\x38\x12\xc9\xea\xc3\x9c\x0b\xa3\x12\x91\x36\xcc\xae\x8c\x6a\x44\xc5\x30\x7c\x64\x34\x46\x34\x4e\x98\xde\x18\xb5\xf8\x06\xd9\x31\x7e\x62\x34\x45\x64\x19\xe3\x37\x8c\x36\x97\xef\x89\xf1\x4f\x8c\x9e\x22\x6a\x82\xf1\x5b\x46\x5b\x44\x96\x47\x8c\x5f\x18\x2d\x11\x99\x62\x7c\x67\xd4\x23\x2a\x0d\xe3\x77\x8c\x76\x11\x35\xcf\xc3\x2c\x94\x92\x90\xf2\x3c\xd5\x61\x16\x62\x49\x60\xb9\x15\x1d\x66\xa1\x96\x84\x96\xd7\xdc\x86\x59\xc8\x25\xc1\xe5\xad\xfa\x30\x0b\xbd\xc4\x2f\xa6\x18\x4f\x2f\x09\xaf\x62\x23\xc6\xd3\x4b\xc2\xab\x54\xc3\x78\x7a\x49\x78\x95\xd6\x30\x9e\x5e\x12\x5e\x55\x1c\xe3\xe9\x25\xe1\x55\x3d\x63\x3c\xbd\x24\xbc\x6a\x45\xb1\x42\x2f\x09\xaf\x3a\xa1\x59\xa1\x97\x84\xd7\x28\xa8\x56\xe8\x25\xe1\x35\x3a\xaa\x15\x7a\x49\xbf\xf4\x8f\xf1\xf4\x92\xf0\x1a\x27\x54\xab\xf4\xd2\xf0\x6a\x82\x6a\x95\x5e\x1a\x5e\xcd\x51\xad\xd2\x4b\xc3\xab\x8d\xa8\x56\xe9\xa5\xe1\xd5\x26\x54\xab\xf4\xd2\xf0\x9a\x14\xd5\x2a\xbd\x34\xbc\x26\x47\xb5\x4a\x2f\x0d\xaf\x69\x44\xb5\x4a\x2f\x0d\xaf\x69\x42\xb5\x4a\x2f\x6d\xd7\xff\x55\xcc\x27\x98\x4e\xcc\x1c\xe5\x2a\xc5\x74\xc3\x6c\x44\xbb\x4a\x32\x0d\x32\xb4\x8f\x4b\xd0\x4c\xb7\xcc\x14\xfd\x2a\xd1\x74\x61\x56\x50\xb0\x52\x4d\x3b\xb3\x11\x0d\x2b\xd9\x74\xc7\x45\x92\x51\xb1\xd1\xcd\x32\x33\x45\xc7\x46\x38\x13\x66\x05\x25\x1b\xe5\x4c\xaf\x0b\x2c\x0f\xb3\x91\xce\x82\x4e\x2c\xa3\x66\xa3\x9d\x71\x6d\x9a\xa1\x67\x23\x9e\x71\x71\x5a\x41\xd1\x46\x3d\xe3\xea\xb4\x86\xa6\x8d\x7c\xc6\xe5\xe9\x19\x55\x1b\xfd\x8c\x7e\x6e\xe8\xda\xe8\x67\xf4\xf3\x82\xb2\x8d\x7e\x46\x3f\x6f\x68\xdb\xe8\x67\xf4\x2b\x82\xba\x8d\x7e\xb6\xbd\xde\x15\x70\x0d\xfa\x19\xfd\x4a\x45\xe1\x46\x3f\xa3\x5f\x69\x68\xdc\xe8\x67\xf4\xab\x82\xca\x9d\x7e\x4e\xbf\x6a\xe8\xdc\xe9\xe7\xf4\xab\x15\x9d\x3b\xfd\x9c\x7e\xb5\xa1\x73\xa7\x9f\xd3\x6f\x14\x74\xee\xf4\x73\xfa\x8d\x8e\xce\x9d\x7e\x4e\xbf\xb1\xa2\x73\xa7\x9f\xd7\xeb\xad\x0c\xd7\xa0\x9f\xd3\xaf\x09\x3a\x77\xfa\x39\xfd\x9a\xa3\x73\xa7\x9f\xd3\xaf\x55\x74\xee\xf4\x73\xfa\xb5\x09\x9d\x3b\xfd\x9c\x7e\x93\xa2\x73\xa7\x9f\xd3\x6f\x72\x74\xee\xf4\x73\xfa\x4d\x23\x3a\x77\xfa\x39\xfd\xa6\x09\x9d\x3b\xfd\x7c\xc7\x7b\xad\xa2\xf3\x72\xd9\x43\xf2\xf5\xfe\x9b\x87\xb9\xd0\xaf\x70\x57\xc8\x23\x3a\x2f\xf4\x2b\xca\x6c\x42\xe7\x85\x7e\x25\xfc\x54\x14\x9d\x17\xfa\x15\x67\x56\xd0\x79\xa1\x5f\x29\xcc\x46\x74\x5e\xe8\x57\xc2\x4f\x35\xa3\xf3\x42\xbf\x32\x32\x53\x74\x5e\xe8\x57\xb8\x3f\x68\x41\xe7\x85\x7e\x85\x1b\x84\x8e\xe8\xbc\xd0\xaf\x6c\x44\xb8\x69\xe4\xd8\x11\xaf\x3b\x1f\x7e\xc7\xb3\xc3\xc7\x5e\xbe\x7d\x3b\x9d\xfa\x7a\x8e\x27\x87\xd8\xac\xb1\xd7\xee\xd7\xfe\xf1\x14\x72\x3c\x1c\x71\x56\xfc\xfc\x1b\x00\x00\xff\xff\x0d\xf5\xe5\x1f\xb1\x08\x00\x00"); -var _acag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\xcb\x8e\x36\x31\x92\x1d\xb6\xef\xa7\xa8\xa5\xbc\x90\x27\x79\x0b\x92\x80\x51\x80\x25\x61\xe4\x59\xc8\x36\x2c\xc9\x36\x60\x78\x91\xd7\x71\x03\x9e\xee\x46\x4f\x6b\xa1\xb7\x37\x78\x4e\x7d\xe7\xe4\x18\x30\x5c\xff\xa6\x7e\x7e\x99\xc9\x4b\x30\x18\x11\x8c\xeb\xdf\xfd\xdb\x7f\xf8\x77\xff\xf0\xa7\x3f\xfe\xed\xeb\xef\xfe\xe7\xbf\xfe\xf9\xfc\x8f\xf7\xdf\xbe\x9e\x3f\xfe\xe9\xfa\xeb\xfd\xcf\x7f\xfe\x2f\x7f\x3d\xef\xaf\xe3\xfe\xc7\x3f\xfe\xe9\x0f\x7f\x48\xf9\xeb\xfa\xe3\xf9\xb7\x4f\x13\x7f\xce\x7f\xda\xff\xf2\x87\x3f\xac\xef\xff\xe3\x7f\xfd\xe7\xbf\xdd\xff\xf4\x0f\x7f\x7a\xfe\xfc\x55\xf8\xde\xf5\x5f\xfe\xf2\xf3\xee\xd7\xd7\xdf\xfd\x2f\xf7\x3f\xfe\xf1\x9f\xff\xf6\xd7\xff\xfa\xf5\xaf\xfe\xfb\xeb\xcf\xc7\xfd\xdf\x7c\x5d\xf7\xb3\x7e\xff\x9f\xfe\x7a\xdd\x7f\xfd\xe3\x9f\xfe\xf1\xeb\x5f\xfd\xfb\x7f\x93\xf4\xeb\x7f\xfc\x2f\x7f\xf9\xcb\xff\x7d\xff\xd3\xfd\xa7\xbf\x7d\x35\xfc\x76\xff\xe9\xc2\xdf\x3f\xfc\xdd\xbf\xfd\x0f\xfb\x5f\xfe\xc7\xfd\x9f\xee\xaf\xbf\xfb\xcf\x7f\xfa\xe3\xbf\xff\x37\xff\xfa\x3f\xff\xa7\xbf\x2f\xf9\x5f\xff\x0f\x78\x8a\x87\xff\xeb\xfd\xd7\x7f\xfe\xe3\x9f\xff\xf4\x95\xfe\xdb\x2d\x85\x7f\xfe\x4f\xff\xf5\x2f\xf7\x57\xfa\xe9\xe4\x7f\xff\xcf\xff\xf0\xef\xbe\xfe\x8f\xf4\x95\xb6\xaf\xdc\x62\x2b\xff\xe7\xcf\xef\xff\xdb\x7f\xf8\xf3\x75\x7f\x6d\x6c\x25\xce\xfe\xfc\xf3\x75\xff\xf3\x5f\xf6\xf3\xfe\xeb\xfe\xa7\x7f\xbc\xff\xf0\xf5\xf5\xdf\x6d\x3f\xff\xbe\xd7\x7f\xd3\xf6\xf7\x7f\xff\xf7\x7f\xff\xbd\x66\xf8\xff\x7a\xf3\xd3\xc1\x9f\xfe\xfc\xb7\xeb\x7e\xf8\xdb\xbf\xfc\x76\xfd\x4b\xcf\xf7\x57\x5a\x5f\xbf\x5f\xfb\x43\xda\xb6\x9f\xd1\xff\x78\x9d\xff\xd7\xfe\xd7\xcf\x87\xfb\xb6\xde\xfe\x34\xea\xf7\x57\x8a\xae\x66\xfb\xfe\xca\xb9\xb4\xaa\x1f\xfa\xf7\x57\xea\x7e\x7d\x7c\x7f\xa5\x2d\xab\x39\xbf\xbf\x7a\x4f\xe5\xd3\x3e\x56\xd7\xa1\xc7\x47\xfa\xfe\x4a\x59\x9d\x1f\xfd\xfb\x6b\xce\x4f\xeb\x5a\x3d\xe7\xf1\x69\xde\xdb\xf7\x57\x78\xa0\x3b\x7d\x7f\x45\xe8\xe5\x7b\xac\xa7\x4d\xcd\xb9\x9a\x1a\xf6\xde\xbf\xbf\x62\xba\x79\xae\xa7\xfe\xf6\x5a\x4d\xcd\xe2\xc9\xdf\x5f\x31\xf4\xf2\x53\x56\x53\xe3\x3e\x98\x95\xbe\x7d\xd6\x40\xc3\xdf\xae\x81\x86\xa6\xf1\xac\x81\xe6\x67\xb9\x69\xc3\x9c\x3f\x2b\x4a\x69\xf5\xdc\xf5\x34\x1d\xab\xf9\x01\x6c\xca\x68\xc6\xa7\x59\xeb\xea\xca\xcd\xb5\xde\xd9\xd5\x5c\x4b\x18\xdb\xa7\x19\xeb\xdb\xa1\xae\xce\x7b\x75\xa5\xa7\x17\x20\xa9\x69\x5c\x58\xaf\xa6\x71\xad\x81\x86\x06\xba\x62\x35\xfd\xf2\x1a\x77\x4c\x35\x01\x58\xf7\x8c\xf5\x7e\x60\x95\x00\x9c\xf9\xf9\x36\xb7\xb5\xfc\xf9\x99\x55\x0e\x34\x3f\x5d\xe5\x73\x01\x76\x4b\x6a\xce\xd5\xfc\xf4\x9c\xaf\xb9\x50\x63\xfb\xbc\x5d\x01\xca\xed\xd3\x75\x45\xd7\xf5\xe7\xe3\x74\x97\x67\x75\xfd\xb3\x0d\x79\xdb\x32\xb0\x30\x3e\xed\xb4\xa1\xef\x34\xf4\x43\x59\xbd\xa7\x4d\xed\x85\xf4\x9b\xbe\x4f\x0d\x8f\x93\xda\xb1\x1e\xf7\x4f\x33\x67\xa3\x6d\xde\x32\x5f\xce\x6a\xe3\x65\x0d\x55\xd6\xd8\x5d\x23\x15\xbe\x5d\xd4\x3e\xbe\xbf\xd2\x67\xe7\xf2\xd6\xae\xef\xaf\xe6\xbe\xf7\x93\xa7\xef\xf3\x7a\xda\xca\x3a\x4f\x4d\x4d\xf6\x56\xd5\x06\xd4\x92\x9e\x63\xe2\x1f\x8c\xcb\x29\x27\xc2\x21\xf4\x03\x01\xa5\xef\x67\x5e\xb3\xd1\xe7\x73\x8d\xf6\xc1\x85\x9c\xb7\x75\xd6\x4b\x57\x73\x11\x99\xf2\xf9\x36\xa7\xd5\x79\x29\x6a\x62\x6a\x79\x53\x7b\x5f\x8f\xa7\x9a\xd7\xf7\x57\x6a\x49\xcd\x7b\x35\xd5\xf5\xa2\x5f\x73\x66\x3d\xce\x0b\x88\x35\xab\x89\xed\xcb\x6e\xb7\xf5\xd8\x6f\x2f\x54\x2a\xa1\x26\x46\x6e\x6a\x2e\x88\x57\x37\xd7\xc8\x55\x2f\x97\x85\x09\x4d\xd3\x5c\xdb\x95\x9a\x20\x50\x16\x3c\x8b\xd6\x54\x16\x0a\x17\x3f\xc5\x9a\xf4\x74\x1d\xd9\x54\xd5\x55\x3d\x57\x53\x2f\x37\x20\x51\x16\xbc\x62\x2d\xb1\x69\x49\xeb\xb0\xa4\x2a\x80\x4c\x40\xd3\x5b\x31\xd7\x12\xab\x60\xbf\x03\x00\x1a\xf9\x20\xf8\xb4\xa8\xfb\x21\x4a\x2e\x76\xf2\x43\xfa\xff\x3f\x98\x41\x2e\x69\xa1\x40\xfd\x4c\xab\x81\x37\x7c\xa8\x61\x6e\xfb\x9a\xd6\x87\xee\xe4\x76\x00\x5f\xf4\xf2\x01\x7c\xf9\xac\xa1\x9d\xc0\xbe\xa9\x26\x38\xc7\x50\x73\xed\xc3\x87\x82\xe7\xb6\x68\x56\xfa\x10\xe5\xdc\xce\x35\xe5\x0f\x35\xcc\xb1\x10\x3d\x7d\x68\x65\x8e\x0d\x3d\x17\x35\x81\xf6\x1f\xaa\x9c\xa3\x82\xeb\x24\x35\xd7\x2c\xe3\x33\xe9\x7b\x6c\xeb\x50\xd5\x0f\xa7\xc9\xf7\x48\xeb\x87\x4d\xd0\xbe\x47\xc5\x0f\x42\xcf\x7b\x0c\xfe\x50\xf5\xc3\xc1\x1f\x9a\x7e\xc0\x49\xdd\x3c\xca\xec\xfc\x41\x7d\xec\xfc\x41\x8b\xb8\xf7\x9d\x3f\x68\xd8\xfd\xc6\x0f\x02\xef\xbd\xe0\xb9\x7e\xc8\xfa\x81\xc3\x0a\x0f\xee\x93\x7d\x7c\x68\x6e\x7e\x96\x10\x50\xc5\x71\xf3\xb3\xe8\x66\xed\xa2\x5d\xcf\x22\x8d\xb5\x67\x3f\x2f\x78\x3e\xd5\xae\xeb\x7b\x91\x80\x07\x80\xdf\x52\x49\xfa\x21\x70\x40\xdc\x61\xff\xfe\xaa\x23\xdc\x1e\xdf\x5f\x25\x17\x4f\x68\xe2\x7d\x0f\xb8\xaf\xe7\x22\x88\xcf\x76\x7c\x7f\xcd\xe1\xc7\xe7\x9a\x4f\x78\xfc\x6b\x75\x2f\x02\xf9\x6c\xf7\x6a\x77\xcf\xf7\xf9\xfe\xca\xdb\xd4\xf4\x16\xa9\x6f\x5b\xd2\x74\x40\x95\xaa\xa7\xbf\xd0\x3b\x37\xe1\xf7\xb3\x38\x41\x1d\xda\xb6\x67\x71\x82\xda\x93\xdb\x6d\xb5\xab\xdb\x64\x05\x42\xe3\x27\xf5\xef\xaf\x52\x0c\x8f\xb4\x4e\xbd\xa9\xc0\x93\xe6\xf7\x57\x9d\x22\x30\x0f\xe8\x60\xce\xfe\xfe\x58\x13\xce\x7e\x7f\x01\x20\x0f\x4f\xf0\xfa\xfe\xca\xd5\x1b\xb8\x28\x65\x6b\xd9\xcf\x9f\xef\xaf\x12\x46\x80\x45\x2a\x4b\x15\x49\x7f\x16\xcd\x6f\xe1\x05\x2e\x92\x9f\x52\x33\x84\x17\x31\x2d\x43\x24\xef\xc9\x15\x84\xda\x1d\x2e\x09\x70\x66\x4d\x60\xf1\xb7\x1a\x4d\x0b\xca\x7d\xb1\xac\xe2\x01\xc1\x25\x86\x9f\xcf\xef\xaf\x32\xab\xfb\xdb\xbf\xbf\x5a\xd9\xb4\xe3\x8b\x1e\x97\x32\x3d\x9f\x25\x53\x6c\x9b\xfb\xbb\xd6\xf3\xe4\xef\x97\x70\x93\x5e\xf3\x07\xa5\x18\x9a\xff\x62\xb8\x79\x9b\x02\x50\xc1\xe9\x36\x42\x96\x0c\xda\xa1\xf1\x4b\x41\x7f\x7e\xbf\x82\x07\xfa\x79\x03\x46\x69\x3d\x8b\x07\xb4\xfc\xea\x7f\xad\xbf\x84\x9f\x0f\x50\x3d\x8f\x37\x17\x7c\x0c\x8f\xb2\xd6\x1f\xde\xa0\x25\x01\xb4\xd8\xb4\x41\xe5\x5c\xf0\x32\x02\x80\xab\xbc\x4e\x44\xb9\x21\x90\x1a\xa3\x96\xf0\x53\xaa\xf8\xf2\xb3\xa8\x5f\x6d\x06\x58\x85\xac\xe4\x23\xbe\xc8\x61\xe9\x06\x78\x2d\xe0\x3c\xea\xaf\x82\xfa\x19\xe5\x6b\x83\x0c\xef\xe7\xb1\x10\x46\xcc\xf9\xa9\xeb\x04\xe4\xfa\x2b\xf6\xf2\x2c\xa6\x58\x8b\x8f\x47\x9d\x68\x7b\xf2\x8b\xa0\x8d\xea\xc9\x2e\xec\x48\x59\xd0\x5a\x5c\xb4\xb6\xe2\xc9\x5c\xe0\x7c\xee\x6f\x61\x47\x33\x36\xd4\x07\x93\xd5\xfb\x0d\xa2\xa0\x58\xc7\xb3\x04\xc9\xdc\xdd\xdf\x62\xcb\xa5\x8a\xc5\x3f\x6d\x9d\x8e\xcd\xc0\x6a\x75\x3d\x37\xbd\x69\xeb\x74\x6c\xcd\xfd\xe1\x74\x24\x3f\xe7\x75\xc9\xdf\x0f\xd0\x17\xbf\xbf\xb0\xe3\x85\xbd\x6d\x91\xc7\x2d\xb9\x7d\x7c\x7f\xd5\xf7\x7c\x17\x9f\x99\xc6\xc6\x25\x30\x96\xec\xcd\x6d\x8b\x3e\x6e\xd5\xe3\x3f\x0b\xbe\xa6\x67\x10\x33\x86\xb1\x7f\xc9\x19\xa5\x9b\x1c\x05\x4f\x87\xc6\x8b\xb5\xfe\x62\x7a\x1b\x8b\x3e\xe6\xd0\x7e\x44\x5b\xe4\xc7\xfb\x19\xf1\xfd\xd5\xd3\x6b\xbc\xfe\xfd\xd5\xb7\xcd\xfd\x0f\xf0\x62\x1f\xb7\x00\xef\x76\x7f\x5c\xbf\xe6\xbf\x6e\x36\x79\xbc\xbe\x5f\xeb\x1f\xaf\xf1\x2e\xec\x9f\xf0\x27\xee\xb5\x3f\x26\x97\xf1\x80\xba\xe8\xfb\x4e\xf2\xa8\xe1\x7b\x82\x40\x2d\xd9\xe1\xe9\x0b\x00\x96\xcb\x9e\x5e\x00\x50\x01\xa0\xaf\xd3\xd1\x8a\xdb\x8b\x41\xbc\xf8\x5b\x8f\x35\x21\xf1\xf0\xa7\x2f\x00\x94\xe9\xf7\xc7\xf7\x57\xcf\x66\xd0\x7d\x91\xc7\x6e\x04\xea\xfb\x62\xc0\xaf\xf1\x17\x02\x14\x6f\x70\x5f\x00\xa8\xd3\xfd\x43\xe8\x34\x42\xf6\x1b\x1b\x20\x84\xeb\x0f\x9e\xab\xbf\x25\xfd\x44\x98\x1c\x2d\xe1\xa7\x64\x89\x29\xcf\x58\xeb\xcf\x5e\xef\x28\x20\xf7\x82\xcf\x92\x8d\x6a\x93\xe8\xf9\x0c\x28\x08\xcc\xff\xc6\xa2\x0e\xbe\xb1\x3c\x63\x91\xc7\x17\xbb\x58\xa2\x54\x6d\xe6\xff\x63\x2e\xf8\x48\xa2\x79\xc6\x42\x80\xe2\x03\x3d\x20\x26\xbe\x4e\xf0\x92\xb4\xba\x25\xe5\x67\x5c\xa0\x87\x5e\x00\x4e\x40\x73\x7b\x61\xc0\xf4\x09\x9e\x94\x90\xb4\xc0\x09\x91\x76\x1a\xc5\xd6\x25\x68\x6c\x86\xd0\xa4\x14\xa6\x19\xcd\x05\x81\x17\x83\x59\xb2\x79\x1a\xd9\x03\x40\x42\xf2\x91\x5a\x92\x60\xaf\xd5\xcf\x17\x06\x34\x33\xb8\x09\x9d\x89\x31\x6a\x42\x42\xb0\x08\x36\x17\x06\x48\x8d\x90\x9f\xb9\x48\xa0\xf4\x08\xf9\x99\x60\x90\x66\x40\x73\x61\xc0\xd8\x3c\x3f\x00\xc0\x18\x09\x91\x3e\xfb\x08\x41\xa6\x9f\xdd\x32\xd2\xbe\x64\xc4\x64\x88\xee\x0b\x05\xb2\x84\xf1\x07\x2a\xa2\x39\x8d\xf3\x50\x12\x35\x0b\x95\x7b\x80\x83\xb8\x83\x05\x81\x6e\x1c\xd9\xc7\xf7\xd7\x28\x16\xd2\xf6\x09\x22\x29\x88\x40\x32\x6e\xd5\xfd\x1d\x0b\x62\xb5\xfd\x8a\xc3\xac\x3b\x73\x2d\x5e\xfe\xbe\x28\xc4\xf6\xee\x7d\x31\xd0\x30\xc9\xdf\x97\x08\xf9\xe2\x87\xd0\x59\x75\x63\xe8\x91\xbe\xbf\xc6\x8b\xa5\xac\x4b\x4f\xce\xaf\x36\xc0\x63\x92\x7d\xd4\xef\xaf\xf1\x22\xf1\x47\xfb\xfe\xea\xd3\xe3\x1d\x8b\x44\x4e\xb3\xb4\xa3\x83\x64\x69\xb5\xc7\x00\x0b\xd2\x7e\x1f\x10\xa0\x2c\x21\x1e\xfb\x82\xde\x26\xe8\x1e\x50\x21\xbc\xfa\x3b\x71\xb1\x72\xfb\xfa\xfe\xea\x2f\x09\xf0\x00\x7e\xf8\xc4\xad\xdb\x62\x7b\xb1\x9c\x73\xc3\x95\x40\xdf\x9f\x38\x20\xa6\x58\xe7\x3a\x1f\xdd\x14\xe3\x2c\x6b\x3e\x16\xf0\xce\xba\x24\x7a\xb3\x88\x73\x61\xc7\x8b\x02\xac\x6b\xe1\x28\xd2\xb6\x3c\xeb\x5e\x98\xdf\xe3\xad\xcb\x56\x1a\xe6\x09\xe7\x02\x40\xb5\x04\xb4\x2e\x3d\x69\x9a\xe6\x9f\x54\xa4\x79\x42\xe7\xf7\xd7\xec\xa6\x10\x27\xef\xe5\x5e\xe0\x0d\x80\xf9\x7d\x08\x50\x3e\x40\x17\x65\x04\x7d\x7f\x2d\x04\x28\x26\xb9\x57\x5e\x00\x34\x42\x5d\x0b\x00\x59\xd7\xc7\xe7\xaa\x6b\x83\x0d\xe0\x6b\xb1\x88\xf1\xa1\x48\x65\x83\x12\xe7\x83\xa0\x65\xe3\x15\xab\xaa\x89\x1b\xc6\x96\xfd\x03\x4e\x8f\xdf\x4f\xd0\x1c\x7c\xf0\xaf\x40\x99\x95\xdc\x84\x7c\xb8\x6d\xcd\x3f\x3c\x54\x22\xf5\xcf\x0f\x13\x02\x5e\xf9\xdc\xbd\x97\x78\x83\x1f\x3e\x5b\x5c\xb6\x19\xfc\x41\x73\x78\x70\x79\x15\x0c\xca\xf6\x0c\xfe\xa0\x4f\x9e\xc9\x1f\xb4\xca\x67\xe7\x0f\x9a\xf7\x73\x58\x6d\x56\xa0\x2a\x4d\x9b\xd0\xae\xa4\x0c\x46\xf9\x99\x64\x2e\x3f\xba\x2a\xfd\xb0\x03\x6a\xdb\x07\xef\x4b\xd9\xf9\xc6\x87\xd7\x97\x72\x56\xfe\x30\xf4\x03\x41\xf1\xd9\xf9\x52\xae\xc6\x4e\x3f\xb3\xae\x95\x97\xf2\x0f\xbb\x2a\xb5\x93\xd8\x7f\x90\xa7\xb4\xc9\x4b\xb9\xa0\x17\xdb\xcf\x0f\x9f\x4e\x23\xf1\x0e\xfe\xd1\x12\x95\x99\xa8\x2d\xf8\xc8\x38\x65\x06\x3f\x11\x7c\xe7\xf9\xf0\x87\xcf\x0e\xcc\x6b\xe3\x0f\xea\xe3\xfa\x79\xe3\x07\x29\xcb\xfe\x33\xb1\xcf\x45\xbb\x1c\x95\x9d\x7e\x34\xe4\xe5\xfc\x19\xe5\x83\xb7\xe5\xbc\xd9\xe9\x47\x78\xac\x5b\x0b\xfe\xf0\x33\x4a\x4d\x8d\xa3\x7c\xc4\xbb\x5a\x0a\xe1\xf1\x51\xf8\xd4\x42\x0d\xe4\xf6\x91\x8f\x6a\x39\xa8\x2c\xf9\xb0\xc7\x5a\xae\x8b\x3f\x7c\xfa\xa8\x17\x47\xf9\xe0\x4a\x8d\xca\x3e\x3e\xb8\x52\x23\xd8\xc7\x07\x57\x6a\xcf\x5c\xdc\xe7\xc8\xd7\x9e\x27\x7f\x68\x9f\x1f\xfa\x4f\x1f\x9f\x61\xfb\xe0\xb0\x1f\xa6\x52\xe7\xcf\x56\x7e\x30\xac\xce\x8e\x7d\x91\x4e\xb9\xce\x7e\xf1\x87\xcf\xb0\x13\x7a\x9e\xb1\x7d\x48\x51\x9d\xf3\xe0\x1b\xea\x74\x3e\xfc\xe1\x33\xec\x3c\x82\x3f\xcc\x5f\xf0\xa2\x3a\x8f\xce\xb7\x3f\x00\x3f\x3b\x7f\xf8\xc8\xef\xf5\xdc\x33\x7f\xe8\xfa\xa1\xf0\x87\x0f\xb0\x2e\x6a\x85\xd2\x47\xbe\xa8\xf7\xbf\x54\xf1\xd4\x7b\x4b\x20\x6f\x55\xed\x0c\x24\xef\x7e\x01\x77\x98\x0f\x43\xab\xf7\x22\x28\xa5\x7f\xe8\x55\xbd\xb7\x25\x92\xd5\x0f\xfe\xd6\x7b\x5b\xf4\x36\x0f\xb7\x21\x92\x7d\x18\x58\xbd\xb7\x75\x27\x1b\xc3\xdf\x43\x20\x99\x7e\x7e\x41\xc5\xe0\x09\xdd\xe0\xc8\x6e\x3f\x9c\xa0\x3e\x48\x1b\x3a\xd0\x80\x54\x25\xfb\x83\xf4\xb3\x22\x8d\x08\xad\x4d\x7c\x58\x6c\xbd\xd3\xba\x95\x49\x9d\x5c\x6f\x6a\x6d\x36\xb7\x03\x52\xbf\x40\x98\x3a\x3b\xf4\x88\x8b\xe7\x4a\xcf\x59\xef\xb4\x24\x12\x5d\x3b\xeb\x9d\x20\x95\x37\xcf\xf8\x80\x8a\xd9\x13\x3a\xa1\xce\xf6\xfb\x4b\x26\x6b\x9b\xfb\xbf\x31\x21\x4d\x18\x5a\x98\xe6\x05\x64\x12\xb7\xa1\x3d\xcb\xb8\x66\x84\x06\xcc\x6b\x45\x9b\xf7\x84\x56\x86\x6d\xb8\x07\xdc\xc2\x75\x82\xee\x3c\xde\x8a\xbf\x7a\x67\xda\x57\x86\x5f\xd8\x21\xe6\xf8\x05\xde\x34\x05\x82\x7c\xe2\x66\xea\x11\xaf\x25\xb8\x7f\xc8\x5e\xbd\x61\xd8\x08\xa3\xe1\x0f\xc1\x36\x5a\x40\xd1\x52\xb2\x3f\xf8\x59\xa3\x7a\x2c\x58\xa3\xa7\x5c\x48\x9d\x87\xbf\x88\xb7\xb2\xb2\xde\x85\xdb\x26\xca\x72\x97\xb5\x6d\x62\x1a\xf5\x2e\x50\x8b\x1b\xac\x65\x61\x6e\x0f\x77\x78\xe0\xb2\xe6\x19\x90\x09\x89\x10\xdd\xe5\x82\x24\xeb\x0f\xd6\xe1\x2b\xc9\x33\x78\xde\xea\xd2\x7a\xd7\x75\x5a\x87\x81\x50\xc9\x82\x44\xb7\xee\xca\xeb\x91\x66\x5c\xb9\x6f\x3e\x2c\x8b\x6c\xd5\x9e\x34\x83\xba\x98\x47\xaf\xee\x60\x2e\xe9\xd2\x67\xa1\xee\xec\x40\x6b\xae\x58\x93\xc9\xc3\xa2\xb6\x65\x24\x3f\x5f\xfb\x56\x8d\xca\x8b\x6f\xa4\x19\x6e\x3f\xb8\x91\x0b\x66\x6d\xc3\x05\x53\xdf\x37\xee\xab\x81\x06\x15\xc9\x56\xb4\xe6\xb6\x60\x30\xc3\x1d\xe0\x30\x56\x2d\xb9\x71\x5b\x45\x98\xef\xc5\x86\xd2\xf0\xae\x35\x5a\x02\x37\x7f\x31\xd6\x0d\xc5\x53\x6c\xf3\xad\x94\xae\x77\x83\x92\xd8\x4b\x6e\x20\xec\xd3\x33\xba\xd7\x0c\x8d\x47\x50\x82\xa4\xa6\x19\xc6\xb6\x40\x64\xb4\x80\x12\x64\x1a\x44\x01\x72\xe1\xd3\x1e\x13\xe3\xa9\xdd\x17\x88\xba\xd1\xac\x2f\x7e\x16\xa6\x1e\xd0\x21\x6c\xc9\xf4\x66\x31\xef\x92\x43\x20\x5c\x97\xf4\x92\xdc\xc1\xba\x74\x8f\xec\x0e\xd6\x25\x3a\xb7\x21\x80\x0c\x42\xa8\xe4\xdf\x70\x1d\x58\x2b\x6a\x31\xf5\x5b\x57\xec\xda\xc4\xc3\xee\xb1\xb3\x37\x0f\x7f\x80\x3c\x6a\x43\xc6\xf9\xd6\xf1\xd7\x7b\xf1\xda\x1a\x46\x6a\x5c\xb1\xb3\x4f\xfa\xba\x62\xe7\x6a\x06\x31\x37\x0e\x20\x80\xae\x3b\x76\x2d\xa1\x19\xc1\xce\x38\x4d\x7e\x27\xac\x10\x59\x1d\x2e\x09\xb5\x8c\xec\xe7\x38\x45\xde\xb0\x49\xe2\xa6\x0d\x87\x39\x6c\x4b\x46\xa9\x75\x87\xae\x9b\x01\xb8\x18\x7b\x99\xde\xd1\x25\xd5\x8d\x30\x86\x4c\x9c\xeb\x2c\x88\xac\x3b\xb2\xad\x1a\xf5\xde\xa1\x26\x33\x83\x01\xdb\x96\x04\x5d\x6f\x0a\xa7\x2f\xa4\x5f\x77\xe4\x9c\x4c\xeb\x60\xa1\x1b\xa6\xbe\xeb\x8a\x5c\x93\xcf\x04\xdc\x2a\xb2\xb7\x00\x7e\x15\xb3\x7a\x42\x13\x7a\x51\x4f\x80\x7b\xf8\xfa\x01\x2b\x2c\x9e\x00\x04\x26\x9f\xa1\x75\x0d\x2e\x61\x10\x42\xac\x68\x16\x0a\xd6\xad\xb6\xbc\x38\xdc\x41\xc3\x88\xde\x3f\x2a\x07\xd4\x92\x0f\xdc\x6a\x2c\x65\x1c\xfb\xdb\xf0\x53\x61\xab\xaa\xdd\x20\x3c\x70\x08\xa7\x56\x74\x42\x13\x67\x2c\x3d\xa1\x88\xf2\x16\x9e\xb0\x54\x79\x82\x27\x70\xc4\x67\xe8\x84\xa5\xc6\x64\x08\xd7\xcc\x6c\xa9\x66\x5d\x33\x8b\x04\xf9\x7a\xc3\xfc\xf8\x3a\x15\x27\x3c\x57\x5e\x54\xe1\xc4\x29\xf7\x8a\x69\x5b\xab\xee\x00\xc2\xa1\x91\xfa\x3c\xd9\x81\x7f\x80\x2e\xf6\x35\x83\x1b\x42\x82\x40\x7a\x91\x4c\xe8\xf9\x45\x32\xd1\xfc\xc3\xc2\xa2\x97\x14\xb2\x2e\x92\x35\x3c\xc3\x75\x7d\x29\xd5\x74\x68\x49\xda\xa5\x19\x24\xd7\xe2\x25\xd5\xc7\xec\x82\x29\xc2\x64\xe6\x5a\x82\xdd\x30\xc3\xbd\x60\x5c\xab\xee\x0f\x52\x4a\xf7\xf3\x07\x64\x4a\xfd\xdd\x3c\xd7\x1e\xe0\x86\x75\xd1\x38\x70\x73\x45\xe6\x87\x77\x81\x7a\x5e\x48\x73\xaf\x63\x11\x26\x8c\x77\x03\x65\x17\x04\x6e\x1c\x6c\x0b\x21\x37\x0f\x76\xf8\x03\x08\x62\x9e\xe2\x0d\x2c\xd3\x15\xe7\xbe\x17\xda\x77\xa3\xfd\x03\x61\xd9\x94\xe5\x49\xec\x50\xbb\xfc\x2c\x34\x7b\xc1\xf0\x01\x9a\x59\x36\x7d\x88\xf7\xc6\xc3\x07\xb2\x65\x77\x07\x8b\x56\xbf\x60\x82\xab\x72\xf2\x26\xad\x6b\x6f\xc9\x3e\xa8\xbc\xf8\xbe\x96\xf0\x5c\x54\x41\xab\x7d\xf3\x05\xad\xf9\x01\x87\xfe\xe8\xe7\x2a\x6c\xbc\xeb\x85\xd0\x0f\x09\x46\x8a\x4d\x6d\x60\xb2\x84\x49\xd8\x5c\x6b\xd2\x1a\x61\x54\x2d\x32\x02\x54\x18\x55\x6d\x44\xae\x30\xaa\xa6\x45\x1d\x7f\xc1\x6d\x60\x71\x4d\x21\x5a\x0c\x8b\x6b\xd5\x25\xbc\xc2\x40\x5a\x9b\x00\x0e\x03\x69\xcd\x3a\x15\x30\x90\xfa\xc2\x5d\x61\x20\xcd\x5b\xf1\xf7\xdc\xe1\xa6\xf6\x0d\x41\x57\x8b\x85\x01\xf4\xf5\x1c\xbe\x22\x45\xf0\x7f\xe8\xf4\x62\xc2\x03\x0b\x68\xb5\xe0\xfb\x50\xf6\x4e\x3a\x16\xb0\x80\x96\x62\xf0\x40\xf6\x96\x4a\xbf\xc2\x02\x9a\xa5\x42\xaf\xb0\x80\xd6\xae\x63\x0b\x0b\x67\x31\x0a\xc1\xc2\x59\xfb\xf0\x04\x16\x78\x4d\xba\x61\xb1\x4c\x96\xd8\x1e\x4a\xd2\xd2\x38\x57\x98\x2c\x6b\x9f\xfe\xa0\xf0\x05\xff\x40\x24\xd5\x8c\x29\x49\x67\x6f\x4a\xc1\x94\x37\x0f\xd1\xf9\x82\xe6\x04\x49\xba\xe8\x9c\xc1\x6a\xb9\x5e\x10\x50\x20\x4a\xfb\x86\x03\xb3\xe5\x7a\xc1\x5f\x9c\x78\xc1\xed\x0b\x93\xd6\x14\x60\x66\xac\x86\x12\x24\xe1\x9a\xb5\xc8\x25\xa7\x96\x6e\xa8\x42\x4e\xad\xa2\xae\xb0\xe4\xd5\x90\x14\x03\x4b\x5e\x35\x0b\x87\x25\xaf\x66\xef\x52\x03\x2d\x92\x5e\xb6\xd2\x94\x17\xd5\x2f\x00\x68\xd9\x33\x80\xa0\x3a\x25\x56\xc2\x96\xb7\x5e\xd0\x94\x1b\x36\xda\xa8\x07\x63\xde\xa8\x42\x55\xc8\xa9\xd9\x98\xd6\x76\x6c\xbc\xa0\xde\x0e\xf8\x56\xba\xcd\x8b\xb3\x40\xd4\x00\xb2\xe1\xfe\x40\x8f\x25\x34\xd0\x98\xd7\xbd\xe4\x25\xc7\xe6\x61\x90\x05\x34\xd1\x92\x52\x68\xac\x93\xaf\x42\x85\xb1\xae\xca\xb8\x5a\x61\xac\x5b\x0b\xd4\x00\x41\x4c\x16\x04\x82\xde\x9d\x06\xc9\x92\x84\xf3\x34\x65\x09\x5a\xa3\x3c\x22\x98\xbc\x21\xb6\x24\xe5\x69\xc2\x02\x25\x96\xb5\x1f\x30\xa6\xd5\xee\x93\xd7\x89\xb7\x3e\x7a\x1d\x37\x40\x43\x14\xd6\xb0\xe1\x93\xd1\x4f\xb4\xfd\xfe\xc5\x0e\x04\xe2\x0e\x10\x4a\xce\x82\x39\xac\x54\x53\x27\x98\xb7\x64\x9a\xa8\x3f\xe6\x2d\x89\xc6\x30\x6f\xa5\xcd\xe4\x1b\xf6\xad\x91\x0c\x53\x8a\xe6\x16\x13\x60\xe0\x4a\xd9\xa7\x1d\xd2\x77\xd7\x85\xef\xa1\xf4\x9d\xab\x5f\x38\x60\x51\xf4\x0b\x27\x5f\x10\x54\x96\xf8\x5d\x6a\xf6\x1c\x6f\xbe\xa0\x5d\x19\xc0\x0b\x83\x99\xf2\x77\x16\x63\x87\x8d\xab\xca\xc4\x51\x69\xc2\x1a\x3e\xdc\xf3\x67\x95\x02\xd3\x0c\x5c\x48\xfc\x41\x87\x4d\x4b\x70\x9f\xb0\xca\x79\xe3\x26\xe7\x2c\x51\x05\x46\xa9\x2a\x3f\xe2\x0a\xa3\x53\x19\xee\x10\x6a\xae\x30\xbd\xd9\x79\x18\xdb\x6f\xbc\x08\x2a\x0d\x4e\xc9\xbb\x06\x69\xba\x1a\x4d\x20\x4d\x27\xa3\xe5\x0e\xf5\x8e\x37\x11\xd2\xb4\xef\xc4\x30\x38\xd5\x61\x7a\xba\x93\xb8\x49\xd9\x41\xa3\xd2\x30\xb9\xdc\x89\x67\x21\x80\x2c\x71\xba\x0c\xe3\xcd\xbe\x68\xfc\x94\x68\x07\x23\x50\x49\x4d\xeb\x3d\xc0\x03\x8c\xc8\x4b\xda\x9d\xbe\x1f\xc0\xa8\x92\x8a\x24\x2b\x18\x55\x92\x6f\x84\x30\xaa\xd4\x61\x3c\x86\xb0\x2a\xbf\x8a\x0a\x1b\x47\x1d\xaf\x36\x44\x39\xc9\xa6\xb0\x71\xe4\xe6\x73\xb2\x64\xd3\x3a\xcc\x41\x96\x28\x59\x9a\x0f\x22\x44\xc9\x30\xe9\xbb\xc8\x1f\x4c\x8b\x2e\x82\xd0\x6d\x82\xf0\xf5\x05\x40\x28\x61\xf2\xb9\x00\x42\xa3\x3d\x84\x4f\x2b\xb0\x9e\x25\x7c\xd6\x21\xe1\xf5\x59\xc2\xe7\x08\xa9\x66\x9e\x1b\x97\x76\x43\x8c\xb2\x67\xf6\xa6\xdf\xb8\xc1\x24\x4d\xe0\x0e\xcc\x50\x5b\x70\xf3\xe4\x7a\x44\x08\x9f\xc3\x1c\x66\x09\x9f\xb9\xf9\x14\xdd\x5c\xa2\x60\x76\x5f\x0b\x0b\x0d\xe3\x1b\x96\x67\x83\x00\x6e\x97\xdd\x7b\xfc\xf0\x58\x1a\x6d\x97\x30\x9a\x8b\xf4\x5b\xcf\xf3\xb3\x04\xed\xea\xc3\x25\xf8\x03\xcc\xd0\x4c\xf8\xc1\x2e\x14\xe3\xe5\xb3\x7f\x7f\xcd\xe6\xef\x81\x05\xaf\x01\x1e\xbe\xff\xd3\x61\x43\xcc\x80\x6d\xdf\x0d\xc6\xa7\x91\x3f\x03\xb4\x6d\x83\x6d\xba\xfb\x39\x88\x57\xf9\x70\xf9\xb6\x6d\xc7\xf7\x57\x9f\xe1\x17\xb0\xcb\xd9\x1d\x60\x97\x9b\xdf\xbf\xd9\x41\xe8\x07\x6e\xf3\xfc\xb4\xe9\xab\x2d\xe3\x70\xdb\x12\xac\x6f\xaf\x17\xe8\xa0\xaa\x11\x12\xad\x69\x49\x53\x48\xeb\x8e\x51\x8a\xdb\xeb\xf0\xcb\x25\xa7\x6d\xd0\xed\xce\x70\x1b\xd2\xf1\x87\x60\xb7\x0d\xba\xdd\x4d\xdb\xd2\xb6\xc4\x35\xf9\x05\x1a\xd4\xd4\xce\x9c\x72\xd6\x22\x21\x72\x8a\x8b\x35\xb8\x88\xd7\xf1\x7a\x1e\x98\xe1\xa6\x76\x67\x07\x5a\x23\x94\xb7\xf2\x79\x68\x5b\x9e\x00\x92\x3b\x80\x97\xd4\xf0\x00\x07\xc8\xb5\x60\x92\x79\xd6\x04\x02\xe8\x6e\x65\xf1\x6c\x5b\x26\x5e\x68\x02\x4b\xb8\xab\xf2\x92\x6c\xf4\x4a\xdf\x4a\xf5\x0f\x74\xbb\xd2\x80\x85\x87\xb7\xfa\x07\x68\xb4\x8c\x07\x15\x98\x9b\xdd\xe6\xad\x48\x33\x84\x1f\xd8\x30\x08\xea\xfc\xfe\x1a\x6d\x6a\xc5\x95\x2b\x70\x9b\x03\x36\x0d\x58\xb1\x04\x4f\x19\x8e\x5e\x9b\x97\xdc\x08\x73\x81\x14\xb2\x98\x62\x15\xda\xd6\xb8\xc4\xf8\x8d\x4a\xad\x6d\x4b\x52\x2b\xe1\xe5\x05\x18\x50\x68\x36\x81\xe9\x1a\x3e\x4b\xb0\xe9\xba\x12\xb4\x6d\x09\x36\x63\x18\x65\xe0\x25\x34\x0d\xdf\xbe\xc8\xad\xae\x14\x6d\xa3\x9c\xf3\x7a\x9f\x1b\xa6\x43\x01\xaf\x9e\x6c\x04\x81\x4f\x73\xad\x7a\x1f\x62\x4b\x4f\x9a\x0f\x1c\x98\x5b\x11\x02\x0d\xf2\x2f\xf5\x07\x7e\xaf\x70\x8b\xb6\x81\xdf\x6f\xd5\x84\x62\x8e\xef\xaf\x21\x1b\x51\xdb\xe8\xb4\xe2\xfd\xdf\xc1\xbf\x7c\xce\x77\x5e\xfc\xb5\x40\xf2\xf7\xea\x0d\xdd\xb1\x3f\x3e\xc6\x7b\xf0\x05\x8d\xb8\xc3\xb1\xd8\x53\x86\x46\xec\x45\x17\x76\x9c\x89\xe2\x0e\x4f\x70\x4c\xcd\x70\xb1\xe8\xd1\x9b\x30\xec\x58\x33\xec\x9a\xf0\x51\xbe\xbf\xfa\x0b\x01\xe1\xb5\x31\xbd\xe0\x03\x3b\x66\x08\x1e\x9c\x9f\x31\xf8\xe8\x0b\x22\x5d\x2b\x3c\xc0\x1d\x8a\x3b\x80\x5f\x6b\xf2\x00\xf7\x7a\xdf\xdf\xc3\x8d\x62\x1a\x20\x8b\xa3\x8f\xe4\x33\x7a\xae\x13\x31\x7d\x46\xc1\xc1\xa7\x01\x46\x2f\x85\xea\x2d\x80\x9b\x42\x35\x91\xb8\x56\x87\xc5\x38\x75\x81\xff\x99\x2e\x5e\xf0\xb2\xe9\xee\xf0\xc6\x11\xd4\x02\x6e\x4c\xc8\xbc\x81\xfc\xd3\xe3\xdd\xf0\x7c\xde\x84\x73\x8b\x7d\x8e\xe9\xf1\x6f\x9c\x09\xe3\xf8\x4d\x6d\x93\x16\x04\x76\x39\x8c\xb3\x8b\xd9\x95\xe6\x0d\xa5\xe6\x45\x7e\x1f\x6d\x7b\x70\xe8\xba\x3a\x58\xdc\x6f\x6c\xaf\xe7\x3b\x3f\x10\x16\x43\xf5\xb2\x89\x9b\x25\x70\xbb\x2e\x90\x22\x3e\x2b\x6d\xb5\xfb\x05\xee\x49\x52\xbb\xf0\x85\xa6\x1f\xe0\xdb\x23\x56\x90\x7e\x7c\x37\x3e\x77\xfd\x96\x36\x02\x79\xaa\x0d\x2c\xae\x1e\x61\x01\x29\x85\xdb\x58\xc3\xf0\x94\xb8\x86\xcf\x1d\xb1\xa5\x0d\x94\xa0\x6a\x06\x09\x1c\x5b\x74\x2e\x25\xae\x41\xbc\x20\x2d\xfe\x58\xb2\x47\x20\x7f\xac\xe2\x6f\x29\x01\xd3\x93\x3f\x68\x68\x6b\x0a\x8b\x5f\xce\xd1\x34\x83\xc5\xee\xba\x6e\x17\x2d\x91\xdd\xd5\xa9\x0e\x16\xbb\xcb\x4d\x88\x90\x16\x77\x1a\x72\x69\x6c\xa9\xc0\x5f\x46\xc4\x26\x95\x8e\x01\x35\xc3\xc5\x7d\xc6\x14\x87\x4f\x8b\xfb\x8c\x99\xfc\xfe\x89\xb6\xfb\x7b\xde\x21\x05\x2d\x55\x9a\x8f\xf5\x7e\xa5\xb5\x41\x20\x43\xfc\xc7\xd6\x74\xd4\x12\x98\x53\x11\x75\x45\xac\x5d\x95\x67\x49\x4b\xf0\x78\x96\x6c\xdb\x52\xc5\xf5\xa2\x7b\xc0\xce\x0e\x3d\xe2\x80\x62\xd5\x1d\x4e\xf8\x90\xbb\xc3\x9d\x1f\xfc\xe6\x76\xd3\x52\x5d\x17\xc2\xf2\x5a\xdf\xc9\xaf\x3d\x1f\x38\xbd\x8a\x97\x25\x98\xe8\x9a\x01\xde\x16\xc0\x4d\xcd\x53\x03\x0a\x34\xa3\x2d\x4c\x74\x92\x4c\x5b\x22\xb3\x0c\x01\x08\x5e\xcc\x43\xec\x2e\x2d\xe6\x99\x14\x31\xd3\x12\x99\x67\xf3\x96\x36\x58\x8c\x44\xdc\x52\xc0\xad\xa1\x69\x06\x70\x13\x56\xd4\x47\x4b\x81\x28\x91\x4d\x03\xc6\x3a\x06\x39\xfb\x7d\x02\x4c\xd4\x14\x11\x8e\xd3\x48\x1e\xf0\x71\x9b\xfe\x7e\x41\x44\x3e\xea\x2d\x05\xaf\x3f\x9e\xcf\xc3\xfe\xb4\x02\x98\xf0\x4c\xbd\x53\x67\x60\x93\x20\x44\x13\x5e\xf3\x41\xee\xf0\xb2\xaa\xfe\xa0\xc2\xad\x54\x2b\x82\xea\xc2\xe4\x3b\x75\x98\x1f\x4c\x39\xe0\xf9\x61\x29\x35\x75\x44\x87\xf9\x9c\xf7\xc5\xce\xc2\xe7\xbc\x13\x02\xd5\x03\x1c\x50\xad\x78\x42\xe7\xa2\x86\x86\x50\x87\x96\xc0\x1d\x0c\xc6\x41\x08\x24\x03\x37\x3c\x71\xf0\x34\xf2\x3b\xd2\xa6\x25\x38\xf2\x0e\x4f\x08\x7a\x8c\x2e\xf2\x9c\x06\xbc\x42\xbc\xc5\x50\x53\x24\x63\x29\x8c\x84\xc5\x94\x6c\x66\x18\xb2\x05\x10\xd8\xf0\xba\x01\x36\xe3\x1d\xd9\xd3\xd2\x84\x03\x83\xe7\x37\x07\x6f\x0e\x9a\xe0\x84\x1f\x64\x68\x82\x93\x10\x6a\x5a\x21\xbc\x77\x4a\xf5\x0b\xf0\x95\x97\x1c\x9f\x18\xcb\xe6\x15\xd1\x81\xac\x85\xa6\x04\xc7\x57\x29\x29\x5a\xa2\x55\xaf\xe9\xaa\x90\x96\x14\x53\xa5\x19\x6e\x89\x42\x8c\x58\x6c\xda\x8f\x77\x74\x52\x4b\x3b\xdd\x42\xdc\x21\x14\xeb\x26\x24\x70\x35\x4d\x9e\xe1\x81\x3d\x32\x0c\x11\x5f\x97\x0d\x33\x04\x84\x59\x2c\x4f\x34\xca\x49\xb9\xde\xd2\x92\x5a\x72\x95\xd0\x94\x0e\x98\x19\x9b\x07\x58\x58\xd8\xcc\xe0\xe0\x3b\xda\x5e\x13\x00\xcf\xf6\x39\x3b\x18\x7e\xa5\xf7\x4f\xb8\x94\xf9\xf9\x59\x81\xe5\x7e\x0e\x7e\xd8\x24\x85\xa5\x13\xf1\x10\x26\xb5\x27\xf8\xa1\x99\x11\xad\x70\xcd\x20\x3b\x71\xe9\x0e\x8f\xc0\x5d\x36\x4c\x10\x37\x58\x4d\xfc\xce\x13\xaa\x6d\x77\x70\xc1\xbd\x55\x58\x40\x27\xc0\xf6\x5a\xc3\x83\x6b\xbb\x46\xa0\x20\xd5\xbc\xa8\x0b\xee\x47\xa6\x7e\x17\x14\x74\x66\x80\x17\xe9\xb1\x51\x1f\x2e\x70\x2f\x8e\x7a\x6f\xef\xa0\xb4\x96\x6e\x04\x19\x18\x0d\x6e\xc6\xd8\x0b\x6d\x60\xc4\x1a\x66\xd9\x37\x06\x08\x53\xa3\x25\x3a\x95\xcd\x67\xfd\xbe\xf9\x82\xbf\x58\x6b\x2a\x86\xda\x83\x19\xa4\xf8\x15\xbf\x79\x96\xe0\x98\xcc\x3e\xa8\x86\x88\x4d\xf3\x7d\x20\xcc\x9b\x9d\x51\x32\x0b\x93\xef\xa7\xbd\xa3\xee\x5a\x7a\x02\x0c\xd5\xd3\xe9\xfc\xc0\x2f\xe0\x4e\x6e\xc4\x5e\xa2\xdc\xeb\x68\x43\x92\x2b\xaf\xd7\xd7\x0e\x6c\x3e\xa8\xcf\x89\xf1\xb4\x23\x30\xa1\xc9\xb0\xd9\xd2\xf3\x03\x1f\xbf\x80\x30\x18\xed\x48\x86\x09\xcd\x17\xde\x0c\x49\xd0\x22\x4d\x66\x98\xe4\x47\xb3\xdf\x32\x5c\xe8\xa4\xb3\x6d\x19\x4e\xba\xd1\xfc\x7d\x87\x7a\x6d\xaa\x0d\x3b\xe6\xab\x0d\x45\x8d\x95\x10\x79\x83\xbe\x4e\x5b\x9e\xb7\x6b\xad\x68\xf3\x00\xd0\x5b\xeb\xf6\x82\xe8\xea\x32\xbd\x00\x68\x41\x14\xf2\xda\x72\x8a\xef\xaf\x68\xc9\xef\xe3\xa0\x8b\x94\x65\xf8\xa4\x86\x0e\x7a\x46\x58\xa2\x0c\xb3\x8d\xe1\xd9\x5d\x72\x6a\xa6\x83\x5b\xf1\x73\xa2\xa4\x64\x10\x06\x70\x17\xa1\x00\x42\xb4\x8b\xd5\x34\x19\x0e\x6c\xd6\xb2\xe4\xbc\x26\x30\x25\x01\x20\x48\x3b\x37\x5d\x67\x18\xa5\xbd\x85\x64\x0c\xc6\x69\xcb\x47\xa6\xe5\xcc\x19\x64\x8f\x00\x6b\x89\xf7\x00\x91\xdc\xd6\x08\x64\x98\xd9\xb6\xd0\x15\x2f\x17\x6e\xba\x46\x28\xd0\xfd\x8b\x10\x20\xba\xbb\x36\x6f\x5a\x81\x63\x7e\x77\x1b\x42\x8b\x61\x5c\x26\x2e\x40\xda\x83\xc2\x40\x73\xbf\x4f\x39\x4e\x2b\xa0\xb7\x59\x18\xa8\xd0\xa2\xc8\xc7\xa2\x65\xba\x6e\x2b\x34\xa1\xe5\x0a\xc1\x4e\xf7\x93\xbc\x24\x59\x7b\xb4\xb6\x5c\x69\xd2\x52\x87\x95\x97\x58\xbf\xbf\x24\x6d\x4b\x35\x79\xc9\xa1\x65\x56\x7f\x0f\xa9\xca\x33\x86\xd6\xa5\x37\xf7\x77\xc1\x01\x40\x2b\x6c\x8c\x1e\x53\x7f\x88\x9e\xf3\x6d\x26\x43\xae\x8c\xd7\x73\xb0\x83\xd7\x04\x1b\xa4\x22\x83\xb8\x41\x7d\xe8\x09\xd0\xb3\x4b\x42\x40\x6e\xd0\x53\x84\xcf\x01\x4d\x62\xe2\xf9\x88\x93\xaf\x5d\x97\x95\x1c\x18\xd1\x33\xa0\x89\x2b\x5e\x1f\x40\x0e\xcb\x6e\x0f\xbe\xe0\x1e\xb0\xab\xc3\x2f\xec\x60\x17\x42\xab\x25\x5a\xf6\x69\xac\x08\x6a\x79\x35\x65\x48\x8e\xdd\x9b\x0a\xc1\x71\x8b\xd0\x94\x3a\x37\x49\x03\x2c\xc9\xb1\xbf\x80\xda\x81\xd7\x22\x76\xb9\x13\x2b\xc4\x64\x73\xa7\xd7\xb6\xa0\x3e\x36\xbe\x20\x44\x86\xa8\xd7\xc3\x6d\x8a\x7a\xea\x60\x94\x75\xe9\x14\x3f\xca\x63\xa1\x49\x32\x75\x5b\xa2\x5f\xd9\x4c\x1c\x06\xa4\xf3\xaa\x19\x8f\x7d\x81\x60\x7a\x02\x07\x27\xf0\x2b\x76\x93\x07\xae\x73\xaf\xde\x2f\x5c\x81\x05\x30\x04\x68\x75\xc3\x6b\x2e\xf6\x24\x17\xfd\x96\x27\xd9\x93\x77\x80\xde\x63\xc6\x42\xc8\x81\xcd\xcb\xa1\x71\x2a\x4c\x2c\x11\x31\x95\x4d\x8c\x27\x3d\x2e\x34\xa3\x89\x2d\x35\xb1\x5d\x82\x63\x4e\x62\x37\x19\xde\x60\xd6\x64\xe4\x25\x37\xb6\x17\xbc\x60\xdc\x6a\xc3\xef\x0f\x88\x81\x6e\x43\xd6\xdf\xdc\xff\x0e\x41\xd5\xdf\xd3\x0d\x5d\xef\xc3\xe7\xbe\x99\xb2\x31\x02\xc9\x28\x0b\xb1\xb0\x7a\xbc\xe3\xc6\x7c\xdc\x86\xd1\x53\x77\x93\x7c\x32\xc0\xc5\x13\x3e\x21\x01\xf8\x50\x9c\x99\x2f\xf8\x07\x78\x26\x49\x00\x41\xf2\x96\x9a\xbd\x47\x14\xe3\xba\x69\x23\xc4\xb8\x6e\x86\x4a\x31\xae\x1b\xe6\x27\xdc\x8d\x4d\x7c\x2f\x06\xee\xab\x03\x08\x61\x9b\x92\xb8\xb4\x7c\x65\x98\x9a\xdd\xc6\xb1\x31\x87\xbb\x02\x1d\x68\x00\xa4\x13\xda\xba\x39\xd2\x35\xc0\x72\xdd\xc1\xc2\xea\x30\x71\xbb\x38\xc5\xec\x29\x1c\xeb\x05\xc9\xb2\x99\x72\x5f\x37\x1c\x97\xdc\x37\xaa\xf1\x0a\x1a\xb4\x34\x3d\xa5\x07\x4e\x7b\x7a\x7e\xe7\xf5\xbe\x04\xc9\x0c\xef\xa8\xad\xeb\x4e\x95\x6f\xfa\xb1\x6b\xca\x0f\x81\x22\x20\x41\x52\x9b\x1e\x60\xc9\x5d\x43\xd1\xbf\x2d\x3f\xd0\xd2\x7a\x9b\x9e\xf9\xce\x6e\xd0\xf2\x03\x4f\x7e\x73\x79\xc8\x49\xc3\x78\xf0\x20\x5a\x5a\x97\xde\x82\x50\x83\xa2\x6d\x2e\x54\x77\x09\x11\x0b\xc4\x20\x6b\x5a\xca\x46\x98\x4b\x6e\x2a\x90\x83\x14\xcc\xdf\x0a\xd3\x39\x84\x3b\xc0\xc9\xb3\xae\xa8\x6c\x0f\xb2\x03\xe8\x85\x44\x47\x4c\x3d\xa7\x67\xbf\xd0\xa4\x20\x1f\x83\x62\xad\x5a\xa1\x67\x7f\xf3\x73\x22\x66\xf3\x0b\x13\x29\xa8\x42\xed\xfd\x9d\xe0\xa1\x95\x84\x6b\xac\x68\x69\xc9\x38\xfb\xba\x7e\x14\x28\xbb\xac\x0a\x29\x99\x47\xc5\x33\x64\x3e\x85\xd7\x07\x70\x61\xa8\xee\x70\xa1\x59\x78\xc0\x25\xc6\x8c\xe9\x15\xc3\x36\xe3\x7b\x77\x59\x62\xcc\xd8\x24\xc5\x94\xc2\xc3\x2b\x76\x50\x0a\x90\x42\xc2\x76\x81\x58\x62\xa4\x29\xf0\xdc\x51\x80\x58\x2b\x70\x82\x37\xd3\x2e\x85\x03\xba\x0d\xac\x15\x56\x97\xba\x01\xa9\x34\xde\x12\x4a\x9c\xf1\xa2\x15\xaa\xd7\x6c\xec\x28\x90\x4a\xac\x38\x2e\x74\x8a\x97\x3f\x5a\x2b\x95\xe1\x19\x5a\x12\x9d\xe2\xe5\x21\xd5\x0a\x52\x0a\x94\xd7\x07\xd0\xaf\x19\x06\x15\x3e\x63\xa5\xfc\x86\xdf\x94\xfa\xe3\x2a\xab\x36\x1c\xe0\x5f\x83\x41\xb1\xae\x43\x52\x7e\x52\x04\x18\x00\xf4\x80\x97\xd0\x52\x5a\x46\x00\xae\x3a\x68\x88\x46\x91\xd4\x56\x96\x14\x34\x2c\x72\x94\xc6\xf4\x44\x9a\x00\xc2\xb0\x94\x13\xa0\x95\xd6\x11\x44\xe0\xf7\x77\x10\x5b\xb7\xc1\x5e\xad\x3a\x29\xd0\xb6\x25\x23\x39\xa5\x24\x33\xac\xb2\xa4\xa4\x94\x8c\x12\x0d\xa7\x4a\xc2\x77\x89\x75\xaa\xac\x2b\x2a\x08\xc8\x52\x84\x60\x2b\x50\xdf\x85\x71\x10\x8e\x45\x8a\x18\x6a\x25\xe0\xc6\xe9\x63\x4e\xa9\xcb\xe4\xbe\x04\x91\x5e\x4b\x58\x52\x57\x91\xf1\xbf\x15\x4a\x5d\x72\xec\x69\x25\xfe\x45\x9a\x94\x56\xa8\x00\x94\x87\x49\x2b\x71\x20\x6b\x85\x7b\x00\xd6\x1a\xa8\x81\x28\x5e\x93\xae\xbe\x96\x98\x8d\x32\x1d\x1e\xdc\x92\x89\x0a\x15\x7c\xdd\x68\x0c\xdf\xa4\xcd\xbb\x0e\x05\x5f\xf6\x2e\x75\x84\xb1\xfa\x5c\x77\x22\xad\xa8\x79\xa1\x86\xaf\x78\x84\x01\xbc\xf2\x8c\x26\x3f\xf0\x0f\x3b\xd6\xec\x11\xe1\xa3\xe1\x0f\x18\x8a\x6f\x52\x33\xc0\x2e\xe4\xa0\xd0\xca\xa0\x53\x88\xa6\x38\x90\x8c\xc1\xa4\x88\x61\x04\xc5\x6d\xde\xb9\xb4\x04\xba\x22\xc9\x69\xa3\x95\x01\xa6\x6c\x4c\x5c\xa2\x5a\x4d\xaf\x01\x21\x9a\xba\x43\xf8\x0d\xbd\x48\xcb\x84\x99\xd1\xa4\x67\x2e\x16\x3b\x0c\x63\xa8\xec\x5e\x47\x6d\xb2\x3f\x6d\x22\x05\x31\x1b\xaa\x0b\xfc\xf2\x8b\x8f\xc2\x92\xc4\x7a\xf7\x26\x50\x85\x27\x0f\x87\x56\x96\x28\x56\x6c\x1e\x29\x88\x5d\xef\xba\x72\x15\xda\x21\x6d\xcc\x2f\x50\xe1\xf5\xd7\x08\xc8\x6e\x62\x86\x02\x57\xa2\xcd\x1e\x0d\x85\x76\x48\xc3\x0c\xbe\x44\xd9\x88\x0a\xbb\xa3\xad\x11\x65\x07\xa2\x8a\x27\x97\x03\xb1\x1e\xa6\x8e\x07\x77\xd5\xf4\x15\x96\xc8\x61\xbc\x3a\x1a\x5f\xd0\x1a\x8f\x78\xa7\x0c\x6a\x05\x96\xc6\x6c\x72\x0a\x71\xcf\xea\xff\x42\x71\xcf\xf2\x6a\xa1\xab\xbd\xb7\x0d\xe2\x5e\x32\x41\x5b\xd2\x5e\xef\x26\x17\xe7\x78\xe7\x24\x6a\x05\xb9\xfa\x92\x97\x08\xe7\xa3\xed\xf5\xfc\x40\xc2\x00\xad\xe0\x3c\x97\xfc\x69\x98\x22\x20\xdb\x92\x57\x81\xac\xd7\x7c\x30\x2e\x24\x59\x91\x6c\xf8\x13\xb6\x3b\x4c\xf0\xe0\xf8\x9e\x24\x0b\x16\x78\x2b\xd9\xfc\x5d\xe0\xad\x94\xcc\x53\x97\xa8\x57\x6d\xee\x2e\x14\xf5\x6c\xa0\x29\x50\xf1\x4d\x53\x87\x8b\x31\xf1\xea\x10\x9e\xef\x6d\xfb\x1d\xc3\xb9\x89\x94\xba\x46\x97\x1b\x06\x30\x8b\x00\x77\x79\xe7\x74\x6a\x05\xfa\xc0\x17\x12\xdf\x0d\x77\x54\x8f\x0e\xef\x5d\xd3\x3a\x7a\x2e\x0d\x73\x98\x7b\x80\xbe\xfb\x85\x89\xb6\x3b\xd8\xe1\xbe\xa1\x0d\xb8\x99\x47\x4c\x00\x87\xa9\xb6\xbe\xbe\xbf\xbe\xbf\x7c\xc5\x2d\x50\x37\x36\x93\x01\x6a\x1b\xcd\x8f\x96\x98\x5a\xac\xc3\x2d\x4b\x4c\x5d\x14\x57\x6d\x24\xd5\xf1\xf7\x0f\x13\x4a\xf8\x7d\x1e\x4a\xf3\x1f\xfa\xd8\x57\x77\x40\x35\xb6\x9f\x2f\x00\xd8\x76\x5e\xa0\x4e\x6c\x06\xe8\x92\x7b\x8b\x2f\x58\xe5\xf9\xd9\x6f\x01\xe0\x39\x30\x43\xed\xd0\xc3\xe4\x7c\x9e\xd1\x85\xe7\x9f\x1d\xa9\x74\xb9\xb7\xe0\x8a\x7c\x94\xb5\x68\x4b\x2a\x83\x6e\x15\x09\xd8\x2a\x4c\xc7\x59\x5b\x50\xb7\x8a\x70\xcb\xa1\x36\x71\x3a\xfc\x42\x60\x48\xbf\xc0\x4d\x0e\x0f\x81\x90\x20\x5d\xd2\xea\x06\x21\x48\x06\x9b\x0a\xd3\x71\x9d\x7e\xff\x60\x07\x4d\x3f\xc0\x89\xe5\xf5\xc1\xb5\xe4\x8e\xe4\x0e\x19\x19\xe8\x25\x3c\x08\x86\xd4\xfb\x4b\x16\x2f\xca\xe0\xd9\x2a\x75\x92\xa2\xad\x35\x65\xac\x40\xfd\x25\x48\xc2\x42\x93\xca\x2c\x9b\x16\x74\x6a\x02\x4b\x35\x08\x12\x41\xe0\x01\x91\x19\x42\x52\x43\x4d\x34\xf0\x08\x44\x54\x4a\x8e\xee\x11\x60\x06\xdc\xdc\xbe\x61\xe7\xf4\x8c\x17\x3b\xc9\x3a\x68\x15\xa6\xec\xa8\x6e\x03\x71\xc5\x50\x2b\x85\xfb\x21\x4c\xae\x4b\xb8\x6f\xca\x56\xd3\x2a\xc2\x70\x7d\x45\xac\xb9\x7f\x7f\x29\xd5\x4a\xab\xc8\x85\xd6\x84\xb7\x15\x41\xb8\x21\x49\xb2\x52\xe9\x39\x74\xf0\x2a\x94\x9e\x63\x7a\x3c\xfa\x1d\xf9\x39\xb3\xc1\xf9\x39\xd2\x1d\x79\xcf\x33\xbc\xa0\xfc\x3d\x2f\x0b\x43\x88\x5e\xd7\x65\xa1\xda\x94\x5c\x0b\xf6\x6c\xb8\x4d\x6e\xe4\x4d\x2c\x0c\xc5\x73\x07\xb0\x8d\x8b\x97\x54\x28\x45\x4d\x49\x2b\x02\x07\xcc\xb1\x6b\xf9\x59\xa2\x47\xa0\x20\x27\x90\x41\x2b\x6a\x15\x60\xa5\x6b\x99\x2f\x50\x15\xae\x65\x66\xc0\xb5\x30\x9b\xa5\xee\x1b\x15\xf6\xff\xcd\x58\x50\xb9\x49\xfa\x00\xd7\x8b\x62\xbc\xa5\xf9\xde\x66\xbb\x5a\x19\x6f\x2a\x3c\x84\xf9\x7e\xf3\x15\xa8\xe2\x0a\x61\x05\x5a\xad\x24\x1f\xea\x11\x31\xb3\xa6\xc7\x95\x37\x86\x21\x79\xb8\x22\x4d\x98\x15\xaf\xb5\x01\xd3\xc5\x31\x6b\x43\x12\x39\xcf\x08\x91\x05\xa5\x6e\xbf\xe1\x37\x15\x39\xc4\x8a\x67\xdb\x08\xf2\xe9\xde\x99\x44\xcd\x2f\x30\x44\x58\x7b\x0a\x71\xff\x85\x24\x41\x24\x30\xc4\x96\xbc\xdf\x8a\xd1\x8c\xf2\xfe\xf4\x41\x0b\xac\xe7\xf5\x41\xe7\x0b\x82\x58\x30\xed\x93\xda\x1d\x27\xcd\x53\x5c\xe2\xf8\xa2\x30\x6a\x17\x44\x83\xf8\x7d\xd0\x8e\xf9\x7a\x01\xc1\x1a\x12\xf4\x6a\xe7\x0c\xdc\x06\x44\xbd\x03\x9d\xf6\x07\xad\xb1\xc3\x3d\xcb\x27\xab\x03\x0d\x8d\x03\x9d\xc4\x51\x30\x83\x39\xdd\xee\x5c\x75\x24\x4e\x48\x1d\x0e\x9c\x24\x53\x3b\x4a\xeb\x66\x52\x75\x10\x88\xee\x91\x40\x7c\x0d\x01\xa7\x40\xc9\xff\x15\xd2\x78\x95\x18\x50\x61\x71\x9f\x3e\x08\x74\xe2\xb3\x81\xbb\x0e\xa4\x8a\xf0\x2e\x20\x2e\xc0\x26\xf5\x8a\xb8\x00\x7b\x2f\xd5\xc9\x35\xbc\x7e\x40\x30\x9c\xf1\x7a\x72\x0d\x1e\x72\x72\x0d\xda\x16\xe6\xbe\x32\x10\x90\x38\xa6\xf8\x20\xac\x0b\x40\xb6\xcd\xa6\x52\x15\x3b\x8d\x8a\xeb\x06\xd0\xaa\x11\x69\xc9\xeb\x8b\xb3\xa8\xbd\x06\xb4\xea\xb2\xee\x04\x9a\xae\x20\x75\xc9\xeb\xcd\xb2\x54\x5d\xf2\x7a\xb3\xac\x51\x97\xb8\x5e\xa3\xba\x7d\x20\xc3\xb2\x3b\xc4\x15\xc7\x2c\x60\xe7\x84\xdc\xbe\x39\xa0\x40\x80\x74\x51\xc5\x40\x85\x0d\x7f\x7b\xb1\x41\x18\xf1\xad\xbc\xa8\x30\xe2\x6f\xd3\x24\x91\x56\x7c\xd3\xdc\x03\x6b\x94\x92\xac\x1e\xf4\x26\xd2\x92\x96\x7c\xdf\x94\xd5\xa0\xd5\xe3\xfc\xfe\x9a\x9b\xf1\x04\x46\x7a\x8b\xdf\xf5\xe0\x94\xbd\x26\x64\x78\xb2\x02\xa2\xae\x0b\x81\xef\xda\x15\xd7\x01\x6b\x98\xea\x89\xb3\x28\xab\x51\x3d\x89\x05\xd5\x3f\x20\x01\x98\xf9\x30\xad\xfe\xb3\x7a\x00\xa4\x40\x33\xa3\x3f\x91\x71\xc4\x68\x04\x75\xf1\x8b\x27\x20\xf4\xf6\x25\x39\xac\x0b\x43\xb3\x2b\x63\x45\x64\xed\x34\x1a\x9d\xf7\x5a\x80\xbb\xc3\xfa\x8c\xc6\xd0\x25\xbf\xb8\x24\x82\x1b\x36\x0f\x77\x71\x81\xea\x7e\xdd\x2f\x96\xf8\xa2\x76\x70\x3d\xda\x01\xe8\x92\xed\x7e\x54\x71\xbf\xd8\x5e\x10\x60\xb4\xc3\x34\x67\xbf\xb8\x02\xbf\x00\xb4\xf2\x51\xbd\x6e\xb4\xb5\x04\x44\x3b\x64\x7f\xcf\x50\xdb\xa9\x2b\x4f\x5d\x97\x8a\xd1\x4d\xbf\x6e\x78\xf8\x5a\x58\xc3\x1d\xe1\x85\x85\x37\xce\x81\xa5\xc5\x1b\x01\x7e\x5e\xd2\x4f\x70\x83\xdf\x87\x4b\x79\xfb\x4d\x8e\xb5\x56\x11\xf9\xf0\x3a\xa5\xeb\x82\x50\xec\xce\x5c\x11\x54\x6b\xe7\xa6\xfa\xe0\x54\x1b\xc3\x20\x8f\xdb\xa6\x56\x1f\x82\xcf\xa2\x2a\xe4\xf1\x17\x06\x3f\x04\x9f\xc0\x49\x03\xff\x34\x86\x3d\xb8\xb0\x49\xd2\x6b\x14\xd8\xed\x52\xd0\x20\xb0\xa7\xd7\x0b\x15\x87\x68\xa8\x4d\x1c\x96\x14\xd1\x36\x06\x57\x27\xb5\x11\x3f\x2e\xa4\x6b\x1b\x71\xa0\xfb\x85\xb9\x90\xb2\xa9\x09\xa4\x14\xa1\x6a\x94\x9e\x3d\x81\x25\x3d\x37\xc7\x31\xb4\x44\x4a\xe7\xe7\x38\xf5\x12\xbc\x5a\x06\x52\x8b\x72\x36\xc6\xb5\x2a\x0f\x58\x6b\xb0\xb8\xdb\xe9\xa2\x21\x31\xaf\x7d\x81\x1a\x12\xef\x2a\x4b\x43\x6b\x99\x40\x17\x57\x6f\xb0\xb0\xcf\xee\x17\xc8\x5f\xa6\x7b\x80\xb4\x59\x3d\x02\x42\x6f\x0d\xe3\x82\x29\x4a\x99\xdf\x0a\xe3\x20\x04\xa1\x42\x4a\xa8\x7b\x7b\x2b\xc0\x0b\x5d\xf4\x1b\x72\xe9\xd6\xea\x0e\x71\x8a\xaa\xdf\xbf\x18\x35\xa5\x29\x43\x36\x54\x86\x98\xd6\x0a\x80\xee\x4d\x42\x26\xf0\x64\xd3\x5c\xab\x80\xba\x97\x00\xe5\x75\xda\xc4\x2f\x1a\x32\xba\x98\x4b\x37\xf8\x86\xaa\xd4\x40\x6b\xf0\x0d\x4d\xca\x3a\xd6\x1a\xd2\xe1\xda\x99\xb4\x2d\xe1\x71\xc9\xa4\x6a\xef\x0b\x2d\xdc\x7c\xbe\xbf\x86\x3d\x77\x5a\x03\xcc\x8c\x36\x0d\xd9\xf4\x24\x18\x35\x44\xa9\x26\xe5\x1f\x6e\xad\x81\x58\x55\xbf\x00\x06\x28\x52\xd4\x1a\x60\xd6\x3c\x00\x61\x66\x18\x35\xe6\xbe\xd0\x07\x48\x35\x1f\x52\x50\xb5\x80\x4f\xd7\xe6\xe7\x0d\x9e\x1d\x82\xc0\x92\xf5\x72\xf5\xc1\x08\xe2\x99\xbf\x87\x35\xd3\x13\x8c\x83\x13\x10\xa2\x22\x58\xa2\x8b\x1a\xb4\xc0\xe1\x36\x88\x91\xc8\xcc\x06\xe2\x46\x45\xaa\xb1\xa4\xe3\x64\xe8\xec\xb7\x8e\x4b\x92\x54\xbf\xad\x73\xc5\x52\x77\xb4\x0e\x62\x2b\xd9\xae\x75\x06\xdf\xf9\x0b\x0a\x77\x52\xd8\xb4\x01\x2c\xf1\x12\x07\x52\x26\xeb\x46\xd1\x06\xf1\x56\x4b\x1e\x88\x18\xf7\xd9\x1c\xeb\xe2\xfa\x7e\x3e\xd0\x9f\x56\x3c\x10\x82\x24\x31\xa9\x41\x11\x3b\x7c\xd0\x06\x56\xf8\x9a\x0f\x69\x89\x16\x34\x89\xd6\xc6\x9a\xc9\x09\xbb\x0d\x62\x62\x62\x06\x67\xca\x92\xdd\x01\x90\xd4\xb4\x6b\xe2\x46\xf0\x6a\x5f\x90\xae\x05\xa0\x49\x83\x82\x8f\xf6\xc4\x8c\xc4\x7e\x1a\xa2\x35\xec\xa1\xd6\xf6\x1d\xf1\x22\xea\x60\x27\x12\x78\x0f\x96\xdc\x35\x96\x4c\xf2\x0b\x7e\xd3\x76\xee\xa8\xa4\xf5\xb6\x23\x87\xa5\xb8\x63\x3b\xb0\x7e\x09\x65\x28\x4c\x30\x6c\x87\x44\x65\x82\x6a\x09\xa8\x1d\x3c\x55\x26\x5d\x07\x4e\x95\x31\x02\xe1\x1e\xe9\xc5\x1f\xe0\x39\x39\x8d\x02\x07\x55\x8c\xe1\x2f\x00\x52\xaf\xf8\x00\x8f\xf3\xb5\xb4\x21\x21\x8a\x23\xdf\x1a\xf2\x74\x26\x3b\x4f\xb6\x13\x9b\x26\x29\xa3\x21\xc6\xd3\x86\x3c\xd4\x53\x18\xd5\x07\xf3\x84\x77\x8f\xa9\xe9\xc9\x29\x89\xed\xb6\x93\xbb\xac\x39\x2f\xb1\x69\x38\x62\xa3\x5d\x80\x9a\x09\x3e\xe5\x22\xa3\xe5\x05\xaf\x37\xd3\xa2\x8b\x58\xa5\x25\x5e\xa4\x85\x9e\x31\x6c\xf0\xd5\xdb\x74\xed\x20\x76\xfe\x80\x58\x30\x3c\x02\x34\xc3\xd9\x23\x80\x14\xe8\xda\xd7\x2e\xe2\x9d\xee\xb6\xed\x22\xde\xa9\x7d\xf3\x24\x98\x9a\x21\x2c\x74\x98\x0b\xde\x24\xf0\x66\x93\x37\xc2\x4c\x0c\xd5\x1b\x8b\xd2\x85\xa0\xdd\xc0\x04\x6f\xf4\x8d\x35\x49\x1d\xd1\xa0\x7c\x4d\xca\xb6\xd1\x1a\x94\xaf\xf5\x35\xc0\x92\x03\x36\xaf\xe1\x06\xdf\xed\x1e\x10\x4b\x90\xb8\xde\x1e\xe2\xa2\x4f\x3f\xbc\x29\xab\x07\x78\x62\x75\xe8\x6d\x7c\x40\x70\xbb\x3b\x40\xb2\x39\xd3\xd7\x07\xe4\x6e\xba\x0d\x72\x67\x75\x78\x2c\xe1\x68\x89\x48\x6a\x03\x0f\x84\x48\x28\xaf\x31\x9a\x58\x48\x40\xf4\x49\xb6\x03\xc5\x86\x25\x4f\xbf\x30\xe1\x20\x53\xd4\x06\x0f\xd2\x8a\x62\xbb\x00\x12\xbf\x8f\x62\x1f\xd9\xcf\x11\xc0\x2e\x41\x21\x10\xa2\x62\x0f\xdc\x48\x40\xb4\xd7\x00\x09\x20\x11\xe2\x45\x62\x86\x61\x4d\x10\x49\x46\xb6\xec\x0e\x0f\x68\x12\xb5\xe2\x84\x2b\x94\x30\x39\xe0\xcd\x98\x94\x99\xa0\x45\x22\x0c\x3d\x20\x36\x4d\xe2\x77\x40\x11\x68\x57\x8e\xc8\xc4\xa2\xae\x76\x07\x88\x35\x01\x68\x02\x5f\xae\xde\x91\x11\xf8\x93\xdc\x3e\xf1\x81\x26\xb0\x84\xaf\xd6\x36\x3f\xbf\xb1\x62\xad\x00\x6e\x01\x21\x16\x11\x4b\xf6\x9a\xa6\x90\x41\x45\x9f\x27\x04\xd9\x4b\x89\x11\x5a\x40\xd1\x97\x92\xf7\xa0\x40\xd0\x11\xda\x06\x2a\x15\x29\x79\x68\x8b\x02\x79\x78\xf3\x00\x44\x0a\xdd\x30\xa2\x0c\xcc\xc0\x1d\x4e\xac\xc0\x1f\xec\xfc\xc0\x53\x40\x1e\x49\x11\xf1\x80\x62\xcf\xf7\x64\x96\x71\x49\xc9\x68\xb1\x84\xb7\xe9\x60\x2a\x24\x16\x6d\xf6\x66\x8f\x4a\x98\x69\x00\xc4\x88\xaa\xe6\x4e\x8b\x25\x4b\xb5\x75\xf4\x7f\xc1\x73\xa2\x71\x07\xb5\x9c\x36\xd0\x16\x3c\x1a\x97\x27\x14\x6a\x9c\x8c\x56\xd3\x80\xf3\xa2\xee\x11\xd8\x20\x91\x01\x24\x41\x4d\xc9\x6e\xd7\x11\x19\x1d\x6a\xb6\xc1\x1d\xf2\x31\x0c\x4e\xdf\x6d\xee\x90\x3f\x20\x9d\xd0\x8c\x83\x3b\x64\x1c\x41\xd4\xcd\xe6\x63\xcb\xbc\x76\xc6\xb9\x25\xb9\x55\xeb\xd0\x62\x49\x6e\xcd\x71\x53\x11\xa4\xd6\xfe\xfe\x01\x4e\x0a\xde\x9d\x1b\x26\x36\x1c\xd0\xf2\x39\xfe\x21\x7a\xc6\x0c\xd5\x61\xff\x59\xa2\x80\x08\xdf\x48\x1b\xae\x82\x51\x35\x2a\xde\xd3\xa2\xb3\xa2\x95\xa6\xd0\xb9\x46\x89\x6a\x81\xfc\xfa\x56\x5d\x46\x9f\xc0\x19\x81\xbd\x13\x0b\x25\xb9\xc4\xe0\xbe\x68\x84\xd1\x30\x67\x75\x30\x02\x6d\x4d\x09\xce\x92\x61\xa4\x1c\x24\x25\x02\xc2\x20\x29\x11\xb9\x0e\xa4\xeb\xb0\xe6\x32\x90\x90\xde\x46\x87\x98\x05\x15\x5d\xf4\x7c\x56\x76\x20\x28\xa2\xf8\x93\x19\x4e\xc0\xaa\x5e\x7c\x6e\xf6\x82\xdb\xb7\x3a\xdc\x81\x07\xe2\x91\xc1\x6c\x18\xc9\xc4\x0c\xf9\xd7\xad\x6c\x88\x25\x4d\x4d\xab\xbb\x63\x7f\x30\x23\x2d\x71\x49\x4f\x73\x93\x59\x24\x60\xa1\x0e\xf7\x77\x30\xf6\xc9\xc4\xea\x20\x79\xd6\x00\x48\x71\xee\xf0\xae\x38\x10\xbb\xe4\x0e\xa0\x90\xb2\x06\x2b\xce\x84\xb6\xf0\x04\xb1\xb2\xa1\x1b\x40\x20\x56\xd6\x7a\xcb\x38\x49\x7a\xfc\x3e\x36\xdd\xa4\x08\x06\x6a\x3b\x5a\x07\x62\x48\x92\xf3\x1c\x04\x52\x86\x5b\x21\x15\x88\xa5\x7d\x75\x00\xc9\xc7\x71\x32\x71\xf5\x77\x15\x9e\x16\x17\x7d\xac\xfc\xfe\x01\x21\xc3\xcf\x4f\x06\xfa\xf8\x05\x90\x2a\xe3\xf1\x85\x14\x5c\x86\x10\xf4\x41\xf6\x7e\x8c\x1b\xee\x2c\xd2\x15\xc7\x8d\x93\xe5\xfe\x6e\xdc\x50\xbc\x03\x70\x2d\x7c\x45\x88\x07\x6c\xcc\x56\x67\xc4\x8d\xb3\x6d\x62\x7c\x73\x86\xba\xc7\x06\xc2\x75\x8b\x24\xe2\x40\x48\x49\x35\xd6\x3d\x8c\x92\xd1\x0a\x1e\xc4\x14\x7a\x0f\x20\xc5\x34\x4f\xe0\x01\xbd\xd4\x15\x24\xa0\x03\x72\x80\x7e\x30\x86\xc3\xd4\x6b\x49\x31\xe5\x85\x64\x0f\x91\xf2\xf3\x7e\x67\x56\xe3\xe6\x36\xb6\x48\xb7\xca\xbe\x11\x29\xa5\x3c\xe8\x08\xcd\x75\xf0\x54\x5f\x52\xcd\xb4\xad\xac\xb3\x72\xd5\xe6\x36\x26\x2c\xb7\x8b\xbe\xed\x68\xfb\x39\x7c\xd7\xc5\x61\xfb\x46\x08\x56\xff\x70\x21\xa0\x3a\xfd\x86\xdd\xf4\x84\x1b\x8b\xa8\x46\x4f\x05\x6d\xcd\x3e\x41\x26\x7b\x3d\xc7\xa1\xce\xcd\x3f\x0c\xbc\xe0\x0f\xc0\x8f\xb4\x9f\xfd\x5f\x16\x8a\x6a\xc8\xb9\x5d\x6c\xca\xec\xc8\x39\x51\xc4\xff\x91\x82\xbb\xd9\xd7\xb3\x43\x7d\x64\xcf\xfa\xce\xf8\x8c\x2c\x32\xd3\x21\xc1\x6c\x86\x17\xd4\x47\x36\x8a\x75\x86\x5f\xe8\x4c\x75\x28\x7f\x36\x29\xc0\x7a\xe1\x80\x7e\xce\x4a\x59\xea\x0f\x85\x92\x7c\x69\xef\xc8\xcd\xab\x02\x6b\xad\x43\x7c\x48\x59\x94\xb8\xb3\x10\x92\x07\x40\x34\x45\xb2\x5f\x4a\xaf\xf0\xdb\x96\x6e\xa6\x23\x49\x85\x55\x7c\x1d\x66\xbf\xc8\x6e\x73\xc9\x3a\xe6\x1d\x02\xc8\xf6\x7a\x01\x92\xf8\xeb\x39\xd2\x07\x1b\x44\xc8\xb5\x6b\x8d\x5b\x67\x0e\x33\xe1\x78\x47\x3c\x85\xad\x21\x1d\x9e\x81\xd6\x1a\xf7\x86\x58\x04\x83\x18\x86\xbd\x36\xfd\x3e\xb7\x40\x0b\x84\x0c\xf2\x7a\xcc\x24\x45\x1e\x1e\xe1\x88\x92\x40\x3a\xdc\x02\x1d\x30\xd3\x91\x17\x77\xf3\x89\x81\xdb\x9f\xd5\x73\x3d\x78\xc4\x24\xe7\x77\x24\xce\x75\x16\x8f\x4e\x09\x24\xbf\x7e\x18\x80\xb8\x7b\xc0\x9e\xbf\x46\x40\xf9\x1f\x23\x19\x24\x90\xad\xba\xcd\x33\xe6\x43\x07\xdd\xd1\x26\x11\xaf\xc7\xcd\x17\xfc\x03\x2c\xe2\x06\x69\x07\xd6\x35\xb7\xe1\x4c\x25\x5e\xd8\xe9\xc5\xe7\x63\xd0\x39\x03\xad\xa0\x03\xc4\xd2\xbc\x74\x38\xe9\x15\xe3\xd0\x80\x6f\x4f\xf3\x73\xb8\x4a\x7a\x45\x10\x2f\x36\x31\xeb\x3e\x38\xbe\xf6\x04\xb9\x78\x55\x5b\xa5\xf5\x81\xf1\xbc\x47\x08\xab\xb5\x54\xdd\x27\xd7\xa3\xf5\x22\x33\x97\x23\x42\xfb\x0e\x17\x72\x93\xc9\x3d\x01\x65\xb5\x9e\x1d\x25\x1c\x37\x3f\x67\x6c\xbc\xfa\x87\x01\xce\x7e\xfa\x1d\x06\xb8\x64\x37\xc7\x8e\x62\x2f\x16\x1a\x3b\x0c\x70\x9b\x8f\x3d\xfc\xe5\x92\x15\xa4\x7d\xc7\x9e\x8b\x75\xf5\x9d\xee\xae\xaf\x21\x11\xe1\xd9\x3d\xa5\x93\x2f\xf8\x0b\x6c\xba\xcc\x07\x1d\xb9\x6c\x6d\x6c\xe9\x07\xce\xb5\x49\xe3\xc1\xe8\x05\x93\x8e\x83\x8b\x12\x16\x1d\x40\x4b\x93\x26\x38\xc4\x29\x17\x61\xeb\xe7\x12\x80\xbc\x67\x27\x6f\x93\x6e\xa3\x24\x9b\x84\xd4\x0e\x7b\x94\x93\x1e\x75\xe8\x55\x7c\x37\xeb\xcc\xf3\x6a\xbf\xfa\x0e\x87\xb7\xd7\x7c\x60\x90\x72\xbc\x63\xbf\x38\x3f\x2d\xf8\x02\x08\x5f\xdf\x83\x36\xff\x2e\x97\x4d\x87\xe8\x61\x81\xb7\x53\xc7\xe2\xdb\x76\xbf\x58\x33\x4c\xa3\x51\xc7\x62\x14\xbc\x21\x9d\x49\xd6\xe8\xd0\xa0\x58\x13\xd6\x6f\x0e\xa0\xe5\xde\x1c\xc0\x1b\x0a\x0d\x88\x05\xd4\xfe\xb0\x03\x81\xfb\x81\x62\xcb\xa7\xfe\xe1\xf2\x35\x41\xd4\x1a\x99\x26\xf4\x28\x35\xa2\xf2\x1a\xad\x3f\x9c\xc0\xe7\xfb\x01\x7d\x87\x2f\x46\x03\xd1\x9e\xc9\xb6\xfa\xb1\x65\xd8\x66\x42\xed\x86\xcc\x22\x53\x6d\xd8\x33\x75\x08\xc6\x12\x1d\x9a\xfd\x0f\xc7\x86\x0c\x16\xa2\x4a\x63\x03\xd1\xd0\xdd\x6f\x50\x34\x50\x91\xc3\x36\x18\xee\xa9\xcb\xe0\x80\x2b\x95\xb5\x03\x03\x0a\x0f\x33\xf3\x41\x7d\x87\x4e\xfd\x48\x40\x00\x41\x60\x24\x5c\x36\xbd\x00\xa8\x2f\xb6\xd7\xf7\x4c\x39\xaa\xab\xf1\xc8\x04\x89\x56\x48\x6b\x52\xf1\xf3\x8a\x90\x5f\x81\x30\x33\x5e\x55\x0b\x80\xfa\xc1\x9e\x55\xa3\x20\xcf\xae\x27\x58\x12\x8a\x5a\x69\x02\x05\x09\x91\x0c\x00\x16\xd6\xf5\x78\x15\x28\x20\xd6\x3c\x16\xeb\x1d\xaa\xca\xd8\x06\x22\x15\x1d\x61\x3c\x90\xe5\xbe\x85\xdb\xd7\xf7\x57\xb4\xd7\xfb\xc0\x39\x9b\x61\x46\xc5\x5d\x55\xd7\xf7\x01\x2f\xff\x64\xab\xc3\x58\xbc\xb7\xbc\x66\x84\x02\xbd\xb6\x1c\x0d\x24\xd1\x48\x36\x1d\x0d\x04\x3b\xda\xa5\x65\x2c\x66\x3d\x9a\xb1\xac\x21\xc6\xd9\x20\x01\xf7\xcd\x22\x2a\x23\x70\xa9\xd1\xe5\x78\xf0\xbe\xff\x82\x79\xc0\x44\xe9\x3d\x0b\x50\x05\xa9\x80\x06\x5c\xe2\xed\x4d\x36\x02\xac\x42\xac\x6b\x30\xb0\xd0\x2b\x58\x57\xe1\x61\xd7\x88\x01\xb3\x88\xbd\x62\x07\xcd\x22\xd6\x17\x8f\x01\x24\x91\x38\x33\x60\x16\xb1\xd6\x6d\x80\xf7\x25\x6b\xc5\x06\x98\x5f\x7e\x75\x50\xf9\x82\x86\x84\x87\xfa\x7b\x04\xe0\xb1\x2e\x7e\x03\x91\x85\xf6\x87\x1b\x8b\xdb\x95\x22\x21\x74\xa0\x16\x9b\x35\x40\x03\x39\x21\x54\x91\xb9\x8d\x09\x42\x38\xfc\x1c\x12\x9b\x03\xbb\xc7\x3c\x17\x69\xf1\x12\x60\xe8\x48\x56\xf4\x8d\x79\x23\x30\x5a\x40\x85\x07\xfa\x0b\xf1\x16\x3b\xcb\x0e\x45\x19\xa8\x5d\xe6\x24\x14\x03\x96\x89\x69\x3c\x43\x9e\x29\xbb\x2e\x8c\xe3\xc0\x26\xb8\x4d\x11\x52\x88\x7f\xb0\x78\x8a\x07\x44\xde\x28\xfb\xbe\x8e\xf3\xc7\xf1\x48\x6d\x60\x85\x07\x80\xef\x45\xf2\xdd\x74\xc0\x4c\xd0\xc4\x2d\x07\xb4\xfe\x76\xf7\x18\x17\x2b\xc2\x8a\x41\x0f\xd4\xb3\x0a\x6f\xfb\x55\xf9\x82\xa0\x0a\xbd\xff\xfc\x55\x0d\x9c\x36\x2e\x64\x3c\x92\x42\x66\x20\xec\x4e\x39\x61\xdb\x58\xbc\x6b\x3a\xf9\xce\x40\x10\x9d\x63\xfb\xc7\xe2\x46\x23\x7b\xfa\x37\x74\x05\x12\xe8\x06\xbc\xad\x93\x13\xa5\x0c\x44\xd9\x4d\x0f\xc8\xab\x70\xf3\x49\x47\x94\x5d\x36\xde\xdf\xc8\x65\x66\x80\xdd\xf4\x4e\x90\xcc\x37\xee\xe3\x5d\x53\xb7\x8d\x75\x57\x2e\xd9\xc4\xed\xfe\x29\x78\xe3\x1e\x17\x12\xf9\xe2\x30\x16\xc3\x1b\xc3\xd4\x0d\x0e\xd3\xe5\xd5\xa6\x47\x90\xdb\x88\x6a\x33\x75\x43\x1c\xdf\x8b\x1a\x2e\x86\x37\xec\xed\x30\x1e\xdc\x34\x45\x6a\xe6\xe2\x67\x2e\xfa\xdb\xe6\x46\x10\xbc\x7e\x40\x91\x5f\x69\x78\x26\x9d\x8d\x85\x64\x13\x69\x1b\xed\x79\x3b\xa1\xb0\x4f\x4a\x93\xde\xe6\x86\x48\x41\x69\x78\x26\xea\x26\x3b\x92\x7c\x2e\x06\x56\xde\xed\x40\xa5\x16\x75\x98\x18\x99\xd8\xd4\xde\x21\xb6\x6a\x02\xc8\x3f\x90\x4c\x4d\x27\x92\x30\x5a\x11\x38\xc1\xd1\x9c\x9f\x6d\xe6\xb5\xeb\xaf\x15\x65\x2e\x59\xd4\x72\x42\x43\x1f\x9e\x51\x6e\x68\x6b\xc4\xcc\x73\x33\xdc\x43\x7f\x17\x42\x6e\x93\x2a\x7c\xe7\x09\x99\xa8\x6c\x1c\xd5\x3d\x20\x45\xf6\xeb\x39\xd3\x3d\x7b\x44\x86\x6d\x89\xda\x4d\x66\x30\x78\xad\x01\xfa\x6a\x29\x7d\x26\x32\x18\x38\x52\x7c\x16\x0a\x62\x22\x6f\xb3\x30\x14\x4f\x6b\x84\xb3\xae\x4d\xfb\xb3\x74\x64\xcb\xd7\x92\xca\x80\xa0\xac\x19\x17\xda\x6d\x04\xe4\xc2\x5d\xf0\xf7\xdc\x05\x6f\x33\x1c\x32\x7c\xe1\x9b\x74\xc8\x68\xaf\x19\xe0\xf4\x7a\x9b\xe0\x6f\xe1\x0b\xe0\xe4\x95\xdb\x98\x5a\xb9\x4d\xa2\xbf\x93\xb9\xb8\x0c\x75\x84\x02\x5a\xd2\x99\xa8\x8f\xf3\x42\x1c\xf8\xea\x86\xf1\xa4\xf2\xf0\xbe\x46\xc4\x2e\x78\x9f\x71\x27\x37\xdf\x9f\xcc\x2b\x2e\x59\x6f\x52\x30\x70\x34\xca\x6c\xcc\xae\xaf\x5d\x62\xde\x70\x09\xe3\x13\x0e\x19\xbe\x71\x4e\x84\xf7\x59\x7d\x3b\x1b\x72\x3b\xea\xc6\x35\x61\x48\x50\x85\xd3\x36\x1b\xa2\x69\x94\x41\xbf\xcd\x75\xcb\x6f\x76\xe3\x9c\xa8\xd9\x5b\x45\x8f\x27\x2d\x07\xce\x6e\x32\x03\x5c\x52\x77\xda\x09\xc3\x80\xc4\xdf\x89\x12\xbb\xbe\x2e\xcd\x40\xf8\xbe\xc7\xa3\x83\x86\xe3\x4b\xe6\x12\x24\xc6\x6b\x0f\xe2\xe2\x0b\x9e\x01\x98\x9c\x58\xc8\x44\xec\x9c\xbd\x3a\x27\x8a\xe4\xda\x6d\x74\x52\x8d\x1f\xd9\x1f\x04\x76\x51\x53\xa4\x1a\x3f\x7c\x7c\xe1\xae\xab\x7a\x2a\x6d\xa2\x4c\x6e\xeb\xbf\x72\x88\x46\xa1\xb7\xe4\x04\x73\x73\xc9\x2d\x61\x51\x6e\x0e\xa6\xc8\xd3\x8e\x2c\xb1\x25\x2c\x3d\xa3\x2e\x5c\x71\xcc\xf0\x1c\x3f\xd3\xf7\x0f\xc8\x6a\x24\x71\x7d\x22\x09\xb8\x03\xc3\x27\xd2\x6d\xaa\xdc\x57\x9b\x83\x5b\x2c\x26\x3d\x51\xe5\x56\x29\xbe\xdb\x1c\x17\x66\x20\x00\x22\xc7\x81\xbd\xf3\xe6\x64\xe2\x74\x81\x03\xc9\xb3\x54\x60\xa7\xcd\xd9\xd7\xf7\xa6\xd7\xf0\xf7\x48\x21\x4d\xd0\x84\x23\xae\x33\x81\xcc\x25\xf7\x0c\x67\xfb\x9a\x4b\xec\x09\x07\xc9\xce\x1d\x20\xf1\x80\x7b\x45\x5b\x13\xda\x1b\x1c\xaf\xfc\x1c\xf9\xa1\x8d\x11\xeb\x0e\x1f\x0e\xa0\x9a\xb8\xa2\xdb\xa9\x7f\xee\x0f\x9e\x6b\x7e\xeb\xca\x1e\x16\xb3\xe6\x81\xfc\x01\xa6\x23\xf4\xa6\x08\xef\x09\x82\xde\x7c\x45\x9b\x07\x16\xe0\x09\x9d\xc0\x30\x49\xeb\xf3\xdc\x31\x80\xdb\xe4\xe9\x82\x18\x2b\x30\x7a\x8b\x11\x93\xe6\x14\xb9\xf3\xe2\x04\x85\x23\x17\xea\x42\xfb\x14\xe3\x0a\x6f\xfd\xed\xbc\xb8\x23\x9a\xdf\x12\x83\xc2\x7a\x97\x79\x11\x25\xbc\x03\x48\xa0\x9d\x4c\x97\xe8\x2b\xe1\xd8\x92\x79\xc1\x68\x62\x62\x7e\x01\x67\x24\xb6\xcc\x1b\x5b\x26\xbd\xca\x84\xc6\x3f\x85\xb9\x05\xc2\xca\x2c\x0b\x4f\xe4\xbb\x4e\xe6\x4f\xa8\x9d\xe2\x7b\xfb\x5c\x52\x47\xf8\x7e\x30\xe9\xb5\x69\x23\xc3\x7c\x10\xe7\x67\xb4\x47\x96\x25\x87\x05\xef\x70\xc2\x4c\x36\x30\xee\x1b\xcb\x28\x4d\xb5\x19\x78\x28\xbc\xdf\xa1\xd4\x57\x21\xa8\xb6\x6f\xd4\x9e\xb9\x8d\x34\xc2\x5a\xc2\xbe\x11\xaa\x55\x6d\x4e\xd9\x03\x9c\x68\x6b\x46\x09\x94\x40\xca\xab\x3d\x71\x02\xc2\xfb\x3d\x01\x88\xc5\x6d\xb0\x9b\xe9\x0e\x58\x7f\x5c\x03\x20\x17\xb4\x33\x37\xef\x4c\x83\x24\x0e\xba\x67\xf6\x57\xd4\xc6\xa6\xa8\x96\x58\xdb\x33\x2e\xc2\xc3\x2f\x30\x71\x86\xda\xb0\xe3\x17\xc1\x7c\x2f\xc0\x43\x1d\xb4\x9d\x76\x7c\xc7\x97\xee\x05\x27\x55\x92\xd6\x8e\x9b\x76\xea\x22\x05\x7b\x61\xf0\xa4\x3f\x00\x8c\xa4\x1c\xdb\xeb\x86\x76\x53\x3b\x41\x00\x77\x9b\x39\x7c\x04\xa2\x8a\x0a\xe6\x92\x96\xf7\x8a\x93\xe6\x09\x2d\xfe\x18\x56\x4a\xef\x50\x62\x5b\xa3\xba\x07\x56\x24\x52\xbf\xa3\x84\xbc\x3d\x9f\xf7\xc0\x49\x2a\x7e\x7f\x87\xff\xa1\xdb\xd7\xf7\xd7\x74\x30\xe3\x8e\xa2\x12\x36\x64\xed\x1d\xe3\xeb\x60\xed\xc8\xcc\x68\x1b\xf3\xde\xd1\xbf\x68\xed\xde\x31\xff\xfa\xab\x64\x36\x7b\xc7\xf5\xd0\x83\x31\xeb\xa1\x54\x8f\xfb\xba\x90\x66\x47\x0e\xed\x13\x74\xd1\xc0\xdb\xfb\x9a\xbc\xc8\xd2\xbe\x73\x70\xf5\x47\xba\xa8\x3b\xfe\x7e\x20\xa6\x4e\xca\xbb\x9d\x8e\x6c\xce\xea\xbb\x1f\x0d\x8a\x10\x0d\x70\xe0\x84\x48\x75\xb5\xaf\xfb\xe5\xb0\x02\x7d\x27\xdd\x94\x10\xbb\x9f\x48\xe9\x64\x84\x3e\xc1\x2b\x7d\x00\x90\xd8\xc5\xfe\x56\x3b\x62\x7b\x9d\x72\x6a\x27\x9d\xf4\xee\xfd\xd4\xb4\x0a\xff\x00\xfc\x94\x34\xb2\xd3\x89\xcc\xa1\x95\xfb\x15\x78\x41\xfb\x7b\x01\x44\xa6\x11\xa4\xa4\xe2\x04\xfb\x05\xfc\xf5\x91\xbc\x81\xbf\x52\xa3\xec\xb8\x20\xda\x55\x71\xa7\x47\x98\xb3\x9b\xee\x24\x9c\xde\xb3\x9b\x13\xd0\x80\x70\x95\xf7\xed\x6d\xe7\xfd\x70\x18\x83\x6e\x6e\xaa\x5e\x78\x40\x65\x7c\x62\x9e\x86\x15\x68\x45\xa8\x84\x9c\xc5\x1c\x8f\x45\x27\xa7\x43\xc2\x8f\x45\xd5\xa6\x13\x8d\x1d\xa4\x6a\xe1\x36\x27\x30\xfd\x01\x3b\xac\x6a\x9f\x48\xdd\xac\x36\xb2\xc3\x59\x41\x7a\x24\xa0\xbc\x40\x7e\x20\x4b\x4a\x72\x1d\x80\x63\x5d\xcf\xa6\xcd\xcd\x47\x4e\x68\x37\xb5\x77\xb4\x3f\x2b\x3a\x0a\x32\x2b\xeb\xcc\x1f\xf0\xfc\x4e\x56\x7b\x1c\x24\x5b\x12\xf8\x0e\x92\x2d\x8b\x90\x07\xdc\x8f\x1c\x77\x78\x14\x4e\x51\x4b\x28\x48\x6d\xa3\xcb\xd5\x41\x2a\xa5\x7b\xc0\x51\x4f\xcc\x48\x4b\xa2\x69\x4d\x58\x74\x34\xec\x49\xf7\x73\x60\xc1\xd4\xae\x1f\x0d\x58\x20\x95\xec\xd1\x60\xec\x32\x0c\x91\x23\xb7\xbc\x3a\x08\x76\xa0\x19\xa0\x3a\x90\x2f\x98\x07\xaa\x58\x3a\x98\xf4\x68\x10\x61\x5f\x33\xc2\x51\x17\x1a\x1e\x0d\x65\xa2\x0c\x32\x56\x07\x6a\x1e\x10\x41\x30\xd5\xcf\x6f\x4e\xc0\x1d\x22\x05\x86\x57\x40\xc2\x2a\x34\x3d\x02\x19\x2e\x74\xf4\x8f\x40\xd8\xb9\x44\x94\x23\x40\x28\xc3\x6d\x64\x71\x14\x5a\x1f\x81\xac\xc6\xba\x20\x1f\x20\xc4\x16\x50\x8e\x75\x8f\x18\x8e\x32\x3f\xe8\xe7\x2d\xb1\xfb\xe8\xa8\xf8\xa7\x83\x7b\xc0\x3b\xc8\xd6\xd0\xa3\x73\x4b\xbc\xe7\x9d\x5b\x22\x1c\x41\x10\x60\x72\x98\xc8\x81\x7b\x45\x18\x29\xd6\xad\x61\x58\xa6\x3a\x3a\x13\x15\x18\xc6\x1d\x72\xf7\xab\x03\x64\xee\xf4\x26\x77\xc2\xd4\xbb\xdc\xa1\x7d\x92\x8c\x74\x40\x25\xea\x68\xb0\x63\x5d\x2d\xb2\x73\x53\x1f\x54\x89\x3a\xcf\xfc\x31\xe0\x6e\x6a\xa0\x22\x0a\xd0\x71\x3a\xc7\xba\x5b\xd4\x9a\x7f\xa5\x4b\x3b\x06\x71\xce\x5b\xba\x2e\x1e\xd5\x29\x08\x0f\x64\x6e\xb3\x1b\xf3\xb1\x2e\x1e\xaa\x42\xd3\x0e\xf8\x99\xa7\xd9\x3d\x7d\x18\x90\xb3\xfb\x3b\xa1\xa6\xf1\xf7\x2c\x63\xa3\xe7\xb0\x36\x4e\x9f\x73\xfa\x2a\x39\xe2\xf9\x98\x0d\x2f\x08\x27\x27\x67\x6c\xa4\x99\x38\x25\x26\x04\xb8\xa9\x58\x4e\x3f\x26\x8a\x95\xbe\xde\x87\x4a\xc2\xe7\x1a\x95\x3c\x55\x1f\xb7\x1d\x13\x7a\x21\x23\xe1\x64\xa1\x08\xad\x60\x22\x66\xc5\x3b\x8c\xdc\x6e\xaf\x58\xae\x03\x59\x81\xed\xe4\x7c\x20\xb9\x9b\x43\xff\x0f\x96\xfa\x34\x96\xc2\x40\x6a\x71\xe6\xd8\x91\xac\xa2\xf8\x7b\x42\xc0\xcf\x03\x61\x39\x02\xd9\x8e\x1c\x8c\xc6\x98\x9d\xa5\x94\xf4\xfc\x40\xce\x2d\x2f\x08\xc6\x4b\xe7\x39\x3b\x16\xc7\xaf\xaa\x0f\xde\x0e\x54\x16\x72\xdc\xd1\x81\x0a\xe5\xce\xd9\x78\x1c\xac\x85\x34\xfd\xc1\xc0\x04\x05\xa1\x03\x89\x9d\x4d\x46\x0e\x04\x77\x65\xb7\x6f\xba\x8f\xa9\xfd\xc0\x50\xa2\xf6\xc9\xa4\x94\x02\x10\x73\xc5\x59\xc3\x7b\x9c\xa8\x85\xaa\xbb\xe7\x01\xbf\x76\xfb\x42\x1d\xb8\xaa\x75\xaf\xf0\x84\xd7\xc3\xe6\x01\x90\xec\x5b\x77\xc5\x03\x57\x35\xdf\x22\x0e\x5c\xd5\xb2\xef\xef\x07\x34\xda\x8e\x7f\x3e\x70\x57\x73\x7d\x96\xe3\x42\x5a\x4b\xe3\x20\x9c\xaf\xec\x17\x71\x5c\xa8\xae\xe1\x09\xc3\x00\x9a\x7d\xf9\x3b\x20\x52\xbc\x3e\x60\x62\x37\x5d\x84\x0e\xa8\x9c\xb3\xaf\xb3\x07\x4c\xa4\x8e\x89\x39\x70\x15\x6b\x26\x54\x37\x5c\xfb\xa5\x57\x3b\xee\x0e\x17\x3f\xb7\x51\xa2\x5d\xf7\x96\xe3\x86\x29\xc7\xa7\x04\x22\x49\xf6\x7d\xfa\xb8\x91\xbb\xce\x22\xc3\x0d\x89\xc0\x84\x0f\x2a\xeb\xec\xfb\xe9\x71\xdf\x98\xa1\x97\x44\x18\xe8\x02\x7c\x20\x17\x9d\xa3\x46\x8f\x07\xd6\x25\x8f\xf8\x04\x2c\x7e\x1a\x01\x39\x3a\xb2\xef\xa3\xc7\x43\x7e\xe8\x0e\x68\x39\xf1\x73\x56\x18\xd4\x9a\x1e\x66\x08\x14\x8c\x98\xa3\xc3\xb4\x07\xc9\xea\x6c\xe1\x3b\x37\xee\x92\x2e\x7b\x27\xcc\xbc\x26\x35\xe7\x86\x28\x1d\x75\x78\xc2\x43\x2c\xfb\xaa\x74\x6e\xd4\xdc\x65\xb5\x3b\xf4\x60\x55\xed\x01\xa5\x89\x47\xc4\xcd\x47\xda\xd1\x13\x75\x36\x6d\x38\x39\x37\x6c\xc2\xf0\xfb\x27\x07\xf4\x00\xc8\x55\x3d\x3d\x63\x84\xb5\x84\x3b\x40\x26\x1f\x71\xe0\x33\x71\x89\x22\x36\x27\xec\xc6\x45\x9b\x72\x22\xc5\x46\xf3\x8c\x13\x59\xba\x9f\x63\x85\xbf\x4b\x9c\x76\x26\xee\x60\xf1\xd7\xc8\x93\x20\x89\xe4\x64\x2e\x3d\x5f\xf5\xce\x84\xfc\x82\xaf\xf6\xc1\x17\xbc\x00\xc8\xea\xe1\x17\x80\x86\xe2\x3f\x67\x46\x10\xbd\x6e\xbb\x67\xe6\x41\xaa\x7e\x01\x97\x3b\xb1\xd3\x13\x5a\x7c\x87\xb4\x9c\xd0\xe2\x67\x5f\xb0\x4e\x14\xe7\x74\xe6\xca\x13\x5e\x6a\x45\xd4\xea\x2c\x48\x7d\x26\x3d\xce\x59\x10\xe1\x2e\xa1\xe5\x2c\xf0\x12\xd4\xfd\xe9\x64\xa1\xcc\xe9\xe7\xa8\xf9\x28\x8d\xc5\x49\xaf\xb5\xe1\xfe\x19\x6f\xee\xfe\xa1\x40\x78\x3d\x47\xed\x72\x51\xdf\x93\x11\x8d\xdd\xfd\x3d\x90\x50\x04\xf3\x8a\x50\x35\x11\xc7\x13\xd9\xf8\xac\x98\x3b\x19\xd0\x68\x0c\x40\x01\x7a\xe7\x69\x3e\x91\x4a\xcf\xae\xb7\x67\xa5\x11\xc3\xcf\x51\xf5\xd8\xf0\xaa\x70\xd2\x17\x19\x38\x2b\xf9\xa9\xc7\x87\x7f\x95\x4f\x21\xe2\x19\xcd\x6d\x4e\x68\xcf\x9d\x77\xe1\x84\x18\x6d\x2b\xfa\x09\x37\xfa\xe9\xf9\xc0\x4a\xee\x00\x9f\xb3\x91\x0e\x49\xe4\x39\x83\x59\x68\xf4\x02\x72\xd7\xb9\x34\xd3\x09\xb3\x7a\xf6\x21\x0e\x88\x2c\xde\xb0\x60\x69\x26\xf7\xc7\x24\x34\xee\x2f\xf0\xbe\x00\x12\x3c\x05\x92\x99\xce\xc0\xed\xcc\x18\x04\x6d\xb9\x1d\xff\xcf\x20\x69\xed\x9e\x11\xae\xd8\xaf\x0f\x10\x36\xeb\x0f\x3a\x4f\xb5\x84\xcc\x13\xb9\xea\x5c\x2b\xe2\x44\x6d\x08\x6b\xbd\xce\x0e\x4f\x54\x93\x05\x28\x21\x5e\x38\x3b\xd8\xa1\x6c\xc4\xe7\x80\x6f\x83\x0f\x2e\x14\xe0\xbe\xc4\x9f\x88\x4f\xb4\x7f\xcb\x09\xa7\x33\xdb\x33\xcf\x01\x6f\x65\x5d\x3d\xce\x89\x00\x22\x5d\xf2\x4f\x84\x1f\x9a\x94\x9f\x10\x0b\x5f\x20\x42\x9a\x88\x97\x8c\x70\x4e\x38\xd5\x7b\x42\xa8\x37\xd5\x5f\x03\x60\x85\x3e\x15\xb0\xe3\x3b\x96\xf9\x9c\x98\xa0\x49\xf9\x12\xda\xba\x0a\xdf\xb5\x13\x19\x79\x9b\x44\x84\x13\x69\x25\xac\x15\x39\x91\x81\xf7\x05\x20\xf8\xa0\xe5\x94\xfc\x02\xdc\xa3\x75\x63\x3e\x77\x0c\x18\xfe\x00\x99\x86\x24\x85\x9d\x08\x40\xb4\xff\xc9\xc9\xca\x0d\xce\x19\x7c\x22\x02\xd1\x1c\xfd\x84\xe2\x26\x5b\xac\x3a\x11\x81\xd8\xbc\x04\x44\x20\xe6\xe4\x93\x77\xc0\xe7\xdc\xb4\x7c\xc9\x71\x4e\xb0\x7e\x1e\xd8\xa3\xf0\xeb\x37\xbf\xf7\x88\xac\xd2\xaf\x01\x90\x16\xce\x95\xaa\xdb\x79\x72\x0d\xfa\x00\xf1\x88\xb6\xc9\x9e\x27\x60\x62\xf6\x07\xb7\x36\x5b\x0b\x4f\x64\x59\x7b\xa1\x25\x43\xf1\xc6\xaf\x42\x3c\xcf\x9b\x83\x09\x1c\x08\xc3\xb3\x77\xcd\xc9\x1c\x68\xd2\x0f\x9c\x37\x0b\xe6\x1b\x45\x6e\xe4\x5a\xf2\xa9\x43\xe9\xf0\x6c\xc7\x89\x13\x49\xd0\x5c\x40\xec\x44\x51\x85\x64\xca\x87\xf2\x8c\x61\xf8\x3e\x70\xbf\x31\xa1\x79\x88\xc4\x86\x0f\x24\x1e\x1b\xb1\xce\x87\xe9\xa9\xb4\x04\x08\x2c\xaf\x82\x55\x27\xcc\xf4\x36\x23\x5d\x48\xf9\xe5\x74\x2b\x17\xac\xf0\x59\xe7\xfc\x42\xd8\x9c\x05\xe7\x6b\x89\x07\xc5\x0e\x40\x17\xb8\xbd\xf3\x65\x5d\x89\x33\x1c\xfe\x01\x37\x78\x11\xdf\x0b\x61\x72\xce\xf0\x75\x21\xc7\x40\x7b\x75\x78\x63\x42\x9a\x20\x6c\xe6\x16\x53\xaf\xcc\x01\xa6\x5f\xe0\x0a\x34\x00\xc3\xde\x44\x2b\x2f\xd8\xcc\xb3\xbd\x3f\xae\xcc\x42\x08\xfe\x00\xd1\x33\xaf\xe7\x17\xd8\x43\x52\x9b\x33\xfa\x6c\xca\x05\xf6\x6c\x75\xf9\x55\x80\xf5\x62\xa7\x57\xc1\xfb\xba\xdd\x5d\xb5\x7f\x7f\x85\xa5\xd6\xab\x82\xb0\xe8\xe0\x5f\xc8\xe4\x64\xfb\xf5\x05\xbf\xb2\x24\x81\xe4\x6a\xf0\x36\xf1\x82\x19\x05\x26\xc1\xfb\x6a\x84\xa0\xfa\x47\x6a\xd6\x17\xff\xbc\x1a\x27\xa8\x0e\xe0\xf1\xec\xda\x21\x57\xd0\xcb\x5d\x58\x73\x31\xe8\x6a\xb8\x0d\xca\x23\xa1\xf2\x0a\xc4\x41\x78\x8f\x3b\x20\x22\x06\x7a\x2d\x5a\x3f\x93\x98\xc1\x85\xbc\x44\x16\x09\x2f\xe4\x25\xca\x59\xc7\xf6\x1a\xc8\x37\xa9\x73\x71\x0d\xc6\x45\x68\x49\x8b\x36\x4f\x27\x93\xbd\x70\x63\xcf\x76\x64\xbb\x26\x97\xa4\x11\x91\xd3\xc7\x16\xf8\x6b\xdd\xb0\xa7\xc3\x4f\xaf\x9d\x1d\x0a\xe6\x24\x6c\x86\x31\x08\x9b\x99\xc5\x75\x4c\xa6\x91\xd0\x12\x8f\x1d\xf1\x4b\x6e\x1f\x7c\xc1\x5f\x2c\x96\xec\x8c\xf0\x17\x7c\xa4\x6c\xd2\xbf\x16\x25\x1b\xce\xb4\x7a\xe1\x86\x99\x1d\x1f\x7f\x21\xe1\x8c\xcd\x8f\xd7\x45\xa1\x42\x30\x82\x56\x3b\xdb\xa9\xf9\xba\x2a\xe6\xac\x35\x5f\xc7\xf7\x57\x98\x56\x5c\x17\x47\xa8\xee\x11\xf5\x33\x8c\x68\x28\x7f\xdb\x24\xb6\x5c\x37\x72\xd6\x88\x83\x5d\x37\xe3\x37\xdd\x46\xfe\x17\xa3\x09\xaa\xf3\xd9\xf5\xe3\xba\x59\x91\xc4\xfd\x21\xfb\xb9\x77\x19\xe4\xd1\xc9\x68\x2f\xde\x20\x8b\xf4\x08\x17\x9c\x9e\x86\x61\x0a\x2f\xde\x6c\xbc\xa2\x13\xaf\x17\xf0\xa0\x30\x9d\x77\x1d\xc5\x6d\x37\xe3\x25\x72\xc2\x24\x9f\x54\x96\xfb\xf3\x84\x40\x6e\x5f\x8f\x3b\x92\x0b\x6a\xfe\x0f\x32\x87\x8b\x7f\x5e\x0f\x72\x5d\x89\x9b\x5d\x08\x72\x46\x0e\x87\x5f\x70\x9b\x9b\x77\x45\x27\xaa\xba\x59\x0a\x50\x74\xe5\x86\x47\xb0\x93\x5e\xdf\x3f\x1e\x54\x4d\xed\xca\x0e\xba\x7e\x80\x67\xa3\xe6\x7f\xb3\x42\x8c\x34\xea\x37\x69\xbb\xf3\x46\xdd\x08\x37\x72\x16\xa8\x1b\xd9\x19\xc7\x6b\x46\x38\xe7\xd2\x31\xdc\xc8\x84\xee\xfc\x02\x37\xf2\xc7\xd8\x5f\xf5\x4e\x8c\x7f\xd2\xf7\x89\x29\xe7\xdc\x0e\xa4\x12\xcc\x6a\x73\x42\xe1\x17\x90\xbc\xb7\x79\x40\xc6\x3f\x69\xc9\xc8\x94\x6e\xe6\x70\xd3\x45\xab\xba\x43\xd4\x88\xad\x9e\xd0\x05\xbb\x8b\xde\x5f\xcc\x63\x38\x18\xf4\xc6\x55\xcd\x69\xa6\x6e\xdc\xd4\x1c\x98\x7f\xa3\xa8\xad\xe3\xea\xef\xcc\x23\xa4\x43\x78\x2f\x5e\x51\xc6\x6b\x00\x96\x71\x50\xbb\x10\x42\x6e\xf3\x08\x89\xdd\xdd\xa5\x2c\xca\x27\x14\xbe\x0b\x18\xba\x57\x80\x74\x34\x76\x1c\xbc\x0b\x29\x9f\x20\x84\xbb\x9b\x53\xbb\xdf\xc8\x94\xee\x12\xa0\x77\x65\xfe\x9b\xe1\x1f\x60\x1d\x14\xe5\xbc\x2b\x02\x2b\xa7\x3b\xc0\x1e\xbe\x3a\xa4\x7e\xdb\xef\xc3\x42\x2f\x91\xf0\x66\x40\xb3\x08\xe1\x8d\x34\x83\xc3\x7b\x0e\x1b\xc5\x2b\x5f\xe4\xdd\x48\xdb\xb5\x07\x0d\x81\x93\x62\x0e\x37\xd9\x59\x75\x1b\xec\xb4\xfa\x7d\x38\x32\x4a\xc4\xbb\xe1\x9a\x94\xed\x53\x7c\x07\x60\xee\x19\x04\xc2\x63\x74\x8c\xef\x40\x6a\xe1\x57\x07\x07\xb4\x46\x5a\x51\x50\x1e\xd0\x8a\x58\x4d\xc5\xdf\x23\x2f\xa0\x55\x12\x37\x3c\x8d\xc6\xeb\x7d\xa6\xa7\x94\x58\x7d\x23\x60\xd8\xf6\xcc\x1b\x9e\x46\xb9\x1a\x86\xcc\x2e\x23\x31\xef\x5e\x97\xad\x6e\xb3\xce\x0d\x73\xb0\x95\x85\x77\x47\x2d\x2a\x1f\xec\x7e\x22\x39\xb2\x40\x86\xf2\x2d\x36\x31\xdc\x1d\x1e\x71\xba\xea\xdc\xf0\xb2\x1e\xba\x6b\xdd\xb0\x28\x38\xee\xfe\x1e\x88\xc3\xf7\xfc\x06\x57\x64\xac\x1b\xb0\xdf\xfb\x18\x0c\xa6\xb3\xf4\x73\x94\x21\x12\x6b\xba\x91\x4c\x26\x4c\xda\x90\x15\xd0\x3e\x12\xf7\xba\xcc\x65\xd7\xe8\xb9\x71\x99\xb3\x51\xe5\x86\x2f\x52\x76\xf6\xae\x1b\xce\x48\xce\xce\x76\x4f\x1a\xdc\xdd\x46\xbe\x7b\x71\xdf\x1b\x97\x3d\xfb\xa1\xdc\xb8\xec\x39\x01\xc6\x4d\x81\xe2\x45\x6c\x7f\x9c\x95\x3c\x03\xa4\xdf\x7c\x75\x70\xf0\x03\xbf\x00\x0d\xf1\xe6\x19\x5c\x7c\xc1\x43\x20\xa5\xd0\x6b\x4a\x88\x7c\x33\x9e\xef\xdc\x04\xa1\x15\x94\xf8\xd6\xe4\xdd\xa8\x4e\xfc\x3a\x68\x48\x77\x13\xf3\x57\x57\x9b\x7b\xa7\xb4\x21\xf8\x21\x9e\xe9\xe5\x82\x78\xaf\xcb\x64\x09\xdd\x13\xee\x75\x57\x6c\xae\x8e\x76\xf3\xae\xe8\xc0\xbb\xfb\xe0\xf4\x84\x83\xeb\xae\x58\xec\x87\x7f\x23\x59\x4d\x79\x75\x88\x04\xde\x26\xed\xc8\x55\xe3\x82\x38\x37\x0a\xc6\x84\x49\x2d\x8b\xf0\x19\x67\x11\x3f\xfd\xda\x31\xb8\x90\x3b\x6e\xf1\xc6\x4d\x30\x4c\xc7\x2e\x06\xc1\xf9\x39\x12\xd1\xbf\xbe\x07\x4a\x9a\xec\xc0\xc7\xdb\xf9\x93\xee\x7b\x43\xe4\x82\xe6\x8f\x88\x23\xbb\xbb\xdd\x48\xa8\xed\x54\xc8\xf7\x0d\x27\x7b\x6f\x17\x52\xb2\x84\xc9\x1c\xef\x82\xd6\x97\xdf\xc8\xc9\x12\xd3\x1d\x10\xa3\x8c\xf4\xd0\x97\x67\xdd\xae\xef\x25\xad\x0c\xdf\x75\x6f\x86\x2c\xc9\x22\x70\xf3\x72\xf8\xe2\x56\x2c\x81\x67\x90\x40\x9e\xb1\x9a\xe9\x46\xcc\x92\x45\xd0\x1b\x49\x5b\x6c\x86\xba\xe9\x4b\x25\xf9\xec\xd9\x98\xa2\xca\x6d\xc6\xf1\x25\xb5\x33\x02\xc4\xdd\x06\xa1\x14\x59\x7b\x36\xba\x64\x16\xb5\x07\xc6\xab\x6a\x13\x44\x92\xc2\x1f\x56\x22\x1e\x6e\x23\xe7\xad\xc4\x85\x07\xba\x69\x27\x4d\x7c\xa8\x9b\x76\xc6\x92\x07\x02\x4a\xd1\x0a\x1f\xf8\x5a\xbd\xea\x04\x3f\xa8\x4c\xec\x4c\xc0\x0f\xae\xb3\xaf\xd8\xc6\x27\xd1\x50\xe4\x17\x82\x2f\x34\xfd\xb0\x28\x89\xb7\xf1\x81\x82\xda\x36\xfd\x87\xfa\xe7\xee\x29\x3c\xa0\x4c\x6a\x67\xca\x54\x7a\x3f\xa3\x46\xa9\xdf\x5f\x22\x4a\x71\x30\xc7\x03\x97\x70\x9b\x4f\x9f\xfc\xa3\x10\xd7\x84\x32\xb5\x99\xee\x60\x47\x5b\x2b\xc8\xf4\xf3\xdc\xd4\xbe\xd9\x81\x5f\x80\x6e\x50\x84\xeb\x29\x84\xaa\xf8\xd9\x53\x98\xbb\x5f\x3d\x50\xa8\x71\xfa\x88\x67\x09\x35\xd3\x72\xfa\x53\x08\x55\x63\x4a\x41\x65\xf3\x57\x7b\xa2\xb8\xaf\x16\xc5\x7a\x31\x22\xae\x0f\x9c\xc0\xb3\x73\x0d\x3c\x74\x18\xf3\x46\xc3\x15\xc3\x77\xe8\xa7\xc6\x92\xe4\x25\x77\x3d\xc8\xb7\xfc\xaa\xf5\xf7\x54\xe4\xe8\x90\xa8\xfb\x2c\xb1\x66\xf8\x2e\xf4\xa0\xd8\x7f\x6e\xaf\x1e\x50\x9a\x7c\xb8\x83\x87\x2f\x08\x2a\xd4\x3a\x8b\x7e\x3f\x48\xc0\x9c\x1d\x14\xf2\xc0\xdd\xc3\x09\xe0\x1f\x44\x73\xd9\xc8\xf9\x34\x42\x49\x34\xf9\x81\x28\x65\x6f\x8e\x07\x69\xf6\x5c\x68\xe8\x41\x7a\x18\x17\x60\x7c\xa0\x18\x70\x36\xc6\xa7\x21\x05\x85\xd8\xfc\xd3\x2e\x5c\x7f\x34\x21\x08\x4a\xf6\xb9\x7e\xe0\xc3\x6d\x3d\xf8\x83\x68\xb0\x6c\x6d\xda\x83\xb4\x7c\xd1\x7f\xe5\x28\xf0\x20\x32\x3b\x5b\x63\xfb\xc0\x97\xc3\x0e\xc4\x4f\xd0\xfd\xd4\xcf\x99\xad\xcc\xa3\x71\xd3\x3d\x7f\x46\x5e\x1b\xd3\x51\x71\xd9\x76\x8d\xa7\xf3\x28\xe9\xfd\x9e\x90\xd0\x54\xef\x77\xe2\x69\xf3\x0f\x60\x72\x3e\x0a\x48\xd8\xec\x9c\xfd\x4f\xe7\xd9\xf2\x0e\xfc\x68\xc1\x05\x31\x64\x72\xc9\xd6\x78\x3e\x9d\x44\x5c\x7b\xda\x59\xaf\x4b\xed\x25\x69\x15\xfb\xe6\x3d\x28\x93\xf7\x22\x37\xd0\x94\xd8\x0f\xff\xa1\xa6\xc4\x5a\xe3\x07\xb1\xdc\xd6\x02\x3c\x10\xcd\x9c\x90\xed\x19\xa4\x4f\x92\xfd\x9e\xc1\x35\x69\x53\x51\x53\xd9\xa6\xf7\x07\xe1\x6f\xf1\x9a\x01\xea\xa3\x48\x3b\xf5\x2c\xd1\x2d\xbb\xb0\xdf\x03\xbd\xbc\x0b\xb3\x3e\x28\x95\xe7\x3b\xf8\x83\x52\x79\xc9\xd4\x03\xe1\x73\xe6\xb3\x0f\xbc\x33\x1c\xe7\xfa\x4c\x4e\x58\x5a\xd6\x87\xa2\x59\xf5\x07\xc8\x9a\xed\x5d\x9d\x9c\xb0\x20\x30\x39\x21\x41\x80\x82\x97\x15\x80\xcf\x84\x45\xd3\xc7\x6a\xf2\xe4\x4a\x54\x79\x7e\x94\x43\xea\x71\x67\x61\x05\xf5\xb8\x83\x95\xcb\xde\xf4\xec\x10\xcf\xab\xdf\xdf\xa1\x27\xd1\x80\x88\x0d\x0f\x23\xfa\x0e\x7b\x9a\x18\xf9\x43\xd1\xc9\x7c\x92\x6a\xf6\x17\xf5\x3a\x08\x02\xc1\xf0\x20\x1e\x7a\x53\x96\xf0\xd4\x87\x37\x0d\x11\x7c\x36\x05\x3c\xf0\x9f\xb0\xa7\xf7\x73\x22\x3d\x8f\x84\x9f\x07\x6a\x75\x27\xe2\x78\x98\x3d\xd9\x94\x03\x25\x93\xed\x7d\xf0\x20\x8b\xdf\x4b\x12\x40\xc1\xe3\xd7\x51\x85\xae\xca\x9a\xa1\xe7\x13\x8d\xee\x0e\x9e\xef\xaf\xd6\x7d\xb2\xae\x45\xaf\x6d\x31\x7b\x96\x34\x17\x16\x4d\x1e\x48\x73\xe5\xd5\x0e\x7c\x2f\x08\x5d\xb8\xa8\x7b\x4f\xaf\x81\x73\xe5\xf7\xe1\xc2\x5c\xfc\x7c\x6d\x89\x2b\xa4\x3d\xc8\x65\x63\x5b\xca\x83\x5c\x36\x96\xde\x1f\x98\x02\xec\x35\xfe\xdc\x2c\x36\xa8\xf9\x42\x78\xb3\xfd\xec\x41\x35\x13\x67\xca\x7d\x90\xca\x26\x87\x71\x08\x01\xe9\x8e\x66\x7b\xe0\xeb\xe0\xf0\x8c\xe7\x21\xb7\x70\x1b\xd7\x68\xcb\x4e\x88\x3f\x77\x9c\xd6\xf3\x20\x47\xc3\x70\x9b\x03\x5a\x50\x41\x2e\x1b\xfb\xa9\x3d\x0f\x07\x74\x87\x4c\xbc\xf1\xb3\x65\x4b\x20\xc0\xb9\xcf\x6a\xc3\x5e\xf7\x41\x99\xc5\x6b\xe1\xa6\xb5\xa9\x5d\xd0\x9f\xdf\x27\xc4\xaa\xda\x80\xd0\x87\xc5\xc7\xb6\x11\x00\x43\x6d\x06\xb9\xba\x0d\x0c\xf9\xe8\xe2\x62\x5b\xa2\x5a\x5e\xf2\xf5\xff\x3f\xaf\x89\x0d\x62\x5c\x56\xfd\xb3\xd8\x10\x0b\xa8\x34\x6c\xb1\xfd\x68\xa2\xdc\x66\xa4\x9d\x56\x0f\x45\x53\x4f\x5a\x2d\x62\x01\xb3\x12\xba\xc6\x06\x33\x85\x92\x21\xc5\x06\x27\x7c\xf1\xa6\xd8\x12\xd2\xae\x7c\x10\x28\x36\x94\xf5\x50\x31\x81\xd8\x50\xd6\x43\x01\x9e\xb1\x41\xcc\xd3\x8d\x39\x36\x58\x31\x54\x90\x2d\xb6\x0c\xdd\xe3\xd4\xf8\x4c\x8d\x53\x05\xae\xcc\x09\xfb\x39\x52\x19\x79\xbe\x19\xf3\xf5\x76\x41\xa8\x4b\x9e\xef\x92\xc0\x9a\x82\x0e\x62\x43\x45\xbe\x08\x8d\x0f\x01\x4b\x21\x69\xb1\x21\xab\xb1\xb2\x1c\xc7\x86\xc4\x78\x59\xde\x3d\xb1\x55\x9c\xe0\xae\x05\x22\xca\xae\x67\x4d\x18\x15\xf9\x74\x5f\x8e\xad\xa2\x42\x6a\xf3\x73\x22\x70\xf8\x07\xd2\x30\x21\x10\x0a\x5c\x48\x57\x17\x1b\xe5\x2b\xd5\xa4\x8d\x0d\xf2\x95\xb4\x8d\xb1\x35\x06\x7a\xab\xc3\x25\x0e\x45\x74\x2d\x19\xce\xaf\xef\xef\x2f\xb4\xb5\x22\x94\xa4\x50\xec\x49\x6c\x4b\x1c\x0a\x85\xf9\xc5\x16\x08\x13\x2c\xfa\x1e\x41\x02\xe2\x94\xb1\xa1\xc0\x9c\x32\x92\xc7\x06\x79\x47\x54\x3e\xb6\xe0\x09\x11\x88\x83\x85\xf0\xfd\x3e\x72\x0a\x7b\xcb\x60\xd4\xef\x3e\xa1\x41\x22\x3b\x3c\x21\x04\xc4\x36\xb5\xe1\xec\x9a\x7c\x44\x3b\xf3\x4a\x6b\x40\xe8\xa5\x9a\x71\x90\x7a\xa9\xf0\x0c\x3b\x67\x28\x08\x74\x22\x95\x20\xdc\xe1\x48\xe2\x15\x77\x9c\xf1\xe2\xef\x39\xc3\xa9\x25\xc1\x4b\x20\x87\x3e\x40\x12\x63\x39\x6c\xc5\x86\xa8\x37\x79\xca\xc4\xb6\x84\x93\xa2\xa2\x4c\xb1\x41\xf8\xe8\xaf\xe7\x20\x72\x5e\xe1\x04\xd2\x99\x0c\x4c\x56\x40\xf2\xb1\x9c\x48\x50\xee\x3d\xa3\x57\x80\x08\x7d\x6c\x50\x14\xf5\xd7\x0b\x00\x81\xd1\x76\x02\x04\x45\x48\x05\xb5\x8f\xd3\x7a\xc6\x36\x09\x03\x01\x15\x69\x8b\x5d\x41\x28\xb6\x89\x5d\x32\x5a\xec\x48\xab\x16\x5a\x13\x2a\xf7\x2a\x18\x3d\xb6\x1d\x39\xc3\x7c\x50\x90\x4a\x2f\xbf\x48\x11\xd2\x01\xa8\xd6\x5a\x6c\x88\x7b\x93\x99\x3a\x36\x94\x97\xd8\x4c\x1a\x76\xce\x50\x07\x69\xff\x99\xa1\x5f\x40\xf5\x4d\x2f\x09\xe5\x25\xf2\x8b\x98\xc0\xd3\xa0\x7b\x09\x2c\x2f\x61\xe2\x74\x10\xec\x46\x65\x24\xbb\xe9\x3e\x9a\x4b\x02\x9a\x0a\xad\x8c\x6d\x49\x40\xa3\x98\x39\x1c\x5c\xa3\xc9\xcd\x81\x58\x4c\x03\x05\xf5\x28\xfa\xab\x03\x38\xe6\xb9\xbd\x04\x9a\x92\x7c\xd6\x4f\x6c\x6b\x75\x1b\x2e\x46\x26\x77\x27\x5d\x7a\x7f\xa3\x4c\x8b\xed\x82\x59\xa9\x69\x35\x17\x6a\x1e\x56\x01\x14\xa9\x72\xfa\xab\xcd\x7a\xaf\x5e\x3e\x72\xe5\xc8\x81\x38\xb6\x8b\x3a\x02\xb3\x27\xe4\x24\x1e\x26\xae\x14\x5f\xaa\xc0\x71\x71\xcb\x0c\xf1\x8b\x69\xf0\xd5\x5e\xf2\x4d\xde\x8c\x85\x37\x9c\x53\xcc\x0f\x6f\x18\x3e\x7c\xf4\x6f\x96\x24\x77\x1b\xd1\x18\xdd\xef\x4f\x52\x67\xb5\xc1\x1f\x55\x34\x37\x36\x68\xaf\x36\x63\xe9\xcd\x93\x2a\x9c\x62\x7e\x02\x23\x25\x4c\x79\xd5\x18\x02\x5f\xcf\xe1\x05\xc1\x13\xa2\x99\xd8\xa2\xec\x70\x31\xca\x3d\x19\x18\xa4\x09\xc2\x94\x37\xcd\x6e\xa0\x1c\x53\x65\xfe\xd8\xa8\x1c\xd3\xcd\x2b\xb6\x07\x3e\xd1\x96\x37\x50\xaf\x2d\x1b\x62\x70\x05\xd5\x65\x3a\x36\x04\xcc\x24\xed\x59\x42\x42\x1f\x55\xee\x8f\x04\xeb\x9d\x22\xa6\x23\x6d\x81\x53\xd8\xd5\x26\x4a\x87\x3b\x00\x47\x4f\xfe\x00\x5e\x7c\xd3\x1f\x90\x1d\x0d\xb5\x21\xc0\x09\xe2\x09\x09\x8b\x95\x2b\x30\x52\x02\x47\xaf\xea\x0f\xb6\xb2\x3c\xfd\x1c\x66\x0e\x1d\xe2\x84\xfc\xc3\xe9\xf5\x3e\x2a\x8e\x6b\xc7\x12\xd2\xf3\x18\x27\x13\xd2\x0d\xf7\xa6\xef\x11\x46\x68\x01\x20\xd1\x31\x43\x25\x76\x23\x51\xa4\xd1\x96\xa6\x0c\x9f\x6a\x43\x90\x22\x8a\x76\x24\x15\xd8\xaf\xb5\xc5\x09\x6e\x8f\x72\x8e\x89\x54\x6e\x68\x60\x35\xc1\x02\x97\x33\x4f\x10\x25\xb4\xe4\xde\x14\x09\x61\xf9\x2f\x3a\x96\xe0\x78\xd1\x5f\x2f\x20\x58\xc4\x03\xd0\xb4\xf5\x7a\xff\x62\x07\x9a\x11\x1c\x0f\x55\x23\x26\x12\x1c\x0b\x4d\x9a\xd3\x8f\xed\xcb\xed\x81\x22\x96\x5a\x61\xfb\x99\x91\x96\xb0\x44\x90\xde\x25\x34\xa5\x1f\x11\xc4\xcf\x71\xce\x55\x96\x31\x52\x7b\x00\x13\x7d\x00\x19\x45\xb9\x68\x23\x05\xb5\xd0\x7e\xbe\x60\x5a\x0d\xb3\x25\xa3\xd8\xfb\x37\x52\xb0\x20\xb9\xdf\xe7\x0c\xc5\xf2\xd3\x12\x52\x66\x12\xbf\x4b\x0c\xb0\x91\x08\x90\x96\x10\x32\xb2\x97\x18\xb8\x5c\x2b\x39\x4d\x24\x08\x21\x2a\x1c\x1c\x69\x09\x21\x33\x19\x46\x08\xa8\xc9\x43\xec\x28\x75\xe0\xb1\xa8\x6b\xea\xf0\x4b\xf7\x8c\x98\x1d\x4f\x62\x5b\x1a\xc8\x5a\x69\x34\x42\xfe\x1e\x53\xdf\x34\x0e\xe6\x7c\x56\x1b\x17\x0f\xef\xf2\xe0\x8c\x7d\xb0\xe6\xb6\x96\xe4\x4d\x82\x46\x43\x26\xdb\x48\x13\xa4\xc7\x07\x81\x42\xc6\xf0\x0c\x26\x69\x8f\x96\x38\x91\x51\xe8\xf5\x1c\xbb\x3c\x7e\x93\x94\x33\xd2\x5e\x91\xe7\x40\xcb\x45\x6e\x3b\x45\x1e\x44\x42\xd4\xbb\x8a\xc5\x46\xda\x21\xe5\x7a\xb6\x74\x2b\x94\xc7\x78\x24\x98\x82\x14\x2e\x1c\x09\x6e\x85\xba\x3a\x47\xda\x89\xf5\x06\xf0\xce\x73\xa7\x17\x50\xd8\x40\x86\xab\x48\x60\xde\x2f\x1c\x84\x2f\x4d\x37\x61\x80\x17\xe0\x34\xa1\x42\x66\x3b\x79\x5d\x44\x42\x72\xa0\x64\x70\x9d\xb0\x86\x7a\xfc\x73\x22\xb0\x4f\x13\x5e\xbc\x7b\x1a\xe3\x4e\x88\x3b\x26\x3b\x27\xe9\x9a\xda\x54\x2d\xf8\x48\xb0\x88\xbf\x0f\x31\xfd\x68\x54\xf9\x22\x12\x12\xed\x4a\x5d\x13\xe9\x42\x6a\x62\xf1\xd6\xb4\x78\xed\xac\x3e\x12\x37\x32\xf3\x49\xf6\x48\x3f\x65\x90\x34\x01\xba\x09\x4e\x63\xdc\x0d\xe7\x22\x03\xf0\x41\x6d\x56\x09\x70\x09\x69\x6b\x55\x57\x29\xd2\x62\x55\x23\xf9\x08\x21\x37\x9d\x59\x57\x7a\x18\x72\xa6\x15\x22\xaa\x21\x4f\x53\x8d\x87\x87\x58\x4b\x46\xad\x23\x5b\x62\x22\x3d\x08\xcd\x30\xcc\xa0\x3c\x70\xf6\x8c\x48\xcf\x3a\xe6\xbe\x4b\x25\xd6\x3a\x12\xd6\xe5\x0d\x67\xe6\xa3\xff\x88\x4c\xee\x27\xf9\x22\x23\xd1\xad\xcc\x8d\x91\x51\xb9\xc8\xcc\x30\xd3\xf4\xa3\x58\xcc\xc8\xdb\x8e\x3c\xa1\x7e\x61\xed\xb2\x6a\xd2\x44\xde\x20\xd4\x26\x4f\xe0\xc2\x65\x2f\xab\x8d\x4c\x67\xe2\x6e\x99\xc9\x82\xb4\xeb\x99\xa6\x22\xc1\x38\x27\xd6\x6c\xd0\xfb\x50\x3f\x28\x5d\x74\x64\x6a\x18\x7c\x0e\x73\x5a\x94\x55\x09\x05\x23\x93\xfd\x6a\x93\x32\xc2\x1c\x14\x80\x1b\x19\xf1\xae\x8a\xe1\x8a\x8c\xf2\x00\xaa\x2b\x14\x39\xfd\x40\xc0\x33\x42\x1e\x52\xa1\x5d\x4e\x84\x80\x3b\x7c\xd0\x56\x07\xf9\x27\x88\xcc\x3f\x24\xbc\xa0\x0e\x72\x46\xbb\xab\xfd\xb3\x24\xff\x50\xbf\xbf\x42\xa9\x5f\x23\x2f\x8e\x1e\xbe\x2f\x66\x06\x36\x28\xae\x2c\x32\x4a\x8d\x9a\x32\x66\x64\xe8\x53\xc8\x6e\xe4\x4c\x3c\xf3\xb6\xe7\x13\x23\xb8\x4d\x3c\x13\xe2\xe5\x7c\xc3\x13\xde\x2f\x3c\x7c\x41\xfb\x8e\x28\x5f\x73\xd0\xcc\xfa\x4e\x0a\x1a\x8a\x5c\x40\x9d\xb2\xdb\x05\xc9\x51\x35\x67\xd8\xa2\x54\x5c\x2f\x72\x61\x5d\x35\xad\xa1\x80\x38\xbf\xfa\xbb\xd1\xf6\x04\xa0\x37\x93\xa0\x99\x2b\x0a\x0f\x4b\x32\xce\x95\xb9\xd1\x34\x41\x04\x43\x58\x7f\x1d\xb9\x42\x8d\x20\x31\x28\x23\xbb\x90\xe9\x71\x46\xf6\xa0\xac\x98\xda\xc8\x08\x7f\xa8\xde\xa6\xca\xf0\x11\x3f\x67\x6a\x1c\xcd\xb8\x92\xc1\x69\xc6\x4c\x1e\xd4\x7e\x93\xb7\x26\x32\x52\x0e\xea\x9c\x67\xd8\xa8\x5e\x38\x83\x84\x83\xd9\x58\x8b\x04\x83\xfd\x35\x16\xfc\x8f\x45\x8a\x72\xb0\xcc\xb4\xfa\x43\x76\x5e\x79\x86\x46\x0e\xe8\x71\x7d\xaa\xa0\x33\xc9\xf3\xd5\xc1\x84\x19\x5f\xd0\x83\xd2\x44\xd1\xa6\x91\x91\x80\xd0\x52\x73\x46\xc0\xaf\x3c\xd6\x23\xd3\x46\x64\x94\x0c\x3a\x68\xf9\xf9\x43\x37\x8d\x4f\x1b\xe2\x4a\xf6\x29\x44\x79\x80\xcd\x13\x86\xce\xc4\xdc\x24\x23\x29\x90\x72\x3a\x46\x86\xc1\x47\xce\xb8\x91\x3b\x31\x7c\xb8\x43\xec\x8e\xae\xfb\x19\xbe\x38\x8a\x26\x8a\x8c\x3a\x50\x9b\x8f\xf9\xa0\x97\x9f\x76\x17\x05\xf4\x8b\x4f\xf9\x12\x77\xa6\x09\xf1\x44\x8d\x39\x5d\x5b\x32\xcc\x2f\x4a\x99\x1e\x79\x09\x2b\x35\xbc\x7e\x86\x49\x4c\x93\x91\x89\xcb\xec\xd0\xfc\x60\x9f\x69\xa6\xec\x93\xe2\x97\xe6\x33\x41\xc7\x4c\x58\x27\xe9\x98\x77\x04\x9e\x33\x61\x32\x34\x59\xe7\xdc\xed\x07\x3b\xaa\xf6\x4e\x3d\x9f\x3a\xdc\x11\x5c\x63\x56\x82\xf2\xfa\x32\x30\x45\xde\x81\xa2\x56\x98\x64\xd4\xd7\x57\x6a\xd6\xc8\xac\xd7\x69\x22\x44\x7d\x89\x57\xb8\x23\x8d\xcf\xe6\x01\x90\xd7\xd3\x67\xe0\xc0\x89\x16\x7f\xcf\x07\x7d\x8b\x34\x01\xe4\x09\xb2\xc8\x9c\x91\x27\xa8\xc8\x31\x23\x32\x94\x15\xc5\xbc\xe5\x00\xef\x32\x0a\x1c\x3f\x54\x50\xed\x9b\x1d\xf8\x05\x28\x64\x8c\xf4\x90\xa0\x5e\x20\x39\x09\x02\x63\xfd\x09\xf5\xb7\x91\x08\xf6\x1d\x39\x4a\x44\x3e\x19\xa2\xe6\x0e\x3b\xa2\x4f\x35\xc3\x93\x29\x67\xfc\x3e\x4f\xa1\x56\x74\xe2\x14\x1a\x8b\x50\xcc\xa0\x58\x59\x9b\xe1\xcd\xac\x64\x50\x91\x4f\x1c\x43\xb3\xe3\x13\x74\xde\x7b\x76\x3e\xec\x40\x23\x5e\x1b\xf4\xd9\xda\x04\x04\xd8\x16\xd9\x19\x23\x43\x8c\x2b\x52\x98\xe7\x8b\x69\x7b\xd4\x23\xbc\xa1\x87\x1f\x37\x7e\x2f\x98\xa1\x7e\x7f\x37\x48\x50\x4e\xa1\xbc\xda\xb8\x19\xf9\x60\x23\xb2\x24\x2c\x90\x5c\x04\x81\xc7\x43\xa5\x5c\x4b\x34\xf0\xb6\xde\xcc\x4c\x2f\xec\xa1\x27\x74\x67\xa4\x15\xd2\x7c\x50\x90\xdf\x0a\x8d\x8c\xd4\x49\x65\x33\x5f\xb8\xe1\x89\xe2\x93\x7c\xb3\x06\x9e\x20\x04\x15\x8e\x32\x8e\x45\xbe\x7f\x92\x5e\xab\x3d\x61\x70\xf1\xf3\x13\x7b\xaa\x05\x20\x16\xa5\x5a\xa2\x82\x85\xaa\x98\xb4\xdf\x0f\x4c\x2a\x9a\x0f\x34\x34\xc5\x77\xc9\x0c\x13\xd6\xd8\x7e\x75\xad\xc9\x4f\xe6\xd7\xea\x1e\x0a\x9c\x6c\x32\x80\x5a\x0e\xd5\x84\xf4\xe1\x06\x1a\x60\x0f\xaa\x2d\x1b\x01\x1e\x12\x26\x77\xb0\x8e\xb1\xd5\xf7\x19\xde\xdb\xe1\x0d\x46\x71\x87\x97\x74\xf3\x60\x83\x74\x4b\x2b\xdb\xcf\xfa\xa6\x7e\x48\x54\x21\xa9\x0d\x7f\x8e\xe2\x36\x79\x99\xdb\x63\x09\x3b\x9a\x50\x41\x71\xce\xe6\xee\x98\x31\x5c\x6d\x48\xa0\xaa\xa6\x14\x85\xe9\x2a\x85\xf0\x85\xbe\xcf\x12\x95\x4a\xa2\x61\xbe\xab\x7d\x62\xbe\xcd\x3f\xc0\x37\x79\x73\x87\x37\xe8\x9a\x3b\x44\x64\xaf\x64\xad\x92\x51\x41\x5c\x17\xc5\x82\x7c\xcc\xbe\x78\x17\x06\xc6\x0a\xc1\xca\x92\x1f\xab\x9c\xad\xa2\xb0\xf8\xe7\xf4\xf7\x30\x71\x65\xbf\x3f\x70\x6f\x52\x13\x55\xda\x95\x52\x26\x0a\xa4\x47\x4b\xd8\x05\xd2\xa3\x0a\x3d\x47\x59\xb2\x60\x95\x77\x58\x14\xe4\x73\x51\x8e\xf6\x28\x28\xde\xa0\xe2\x76\x51\xe0\x44\x64\xfb\x4e\x29\x08\xa8\xa8\x6e\xa3\x08\xa5\xe1\xb5\x24\xb5\xa2\x6a\x20\x51\x58\xc3\x5d\x07\xa2\x54\x9e\x48\x43\xbc\x92\x55\x0a\x00\x15\x27\xb2\xba\x03\x92\x0c\x01\xa0\x92\x31\x48\xd6\x2c\xac\xe1\x9e\xdc\xe1\xba\xba\xbe\xfa\x47\xf5\x8a\xe9\xfe\x80\xb1\xd5\x9f\x33\x2e\x57\xe3\xc3\x42\x56\xbc\x61\xad\x31\xb1\xb0\xda\xc0\xb8\xe1\xe7\xc8\xa2\x60\x00\x04\x31\x5e\x97\xac\x82\xb8\x56\xeb\x6a\x0a\x2d\x62\xa2\x69\x05\x0e\x42\xb6\xe9\x15\x68\x97\xa6\x77\x28\x90\x30\x47\xb2\x41\x41\xe0\x91\x42\x5c\xa2\x04\x01\x32\x3d\x03\xa4\xd8\x6e\x9e\x00\x71\xfa\xd5\xe3\x85\x1e\x84\xd3\xa8\xd3\xf9\xda\x73\xd6\x74\x17\x17\x28\xa8\xf6\x24\x9f\xab\x28\x10\xdf\x4a\x71\xbb\xe3\x9a\xa7\x15\xc0\xe2\x55\x5e\xed\x03\x8c\x50\xfd\xc3\x7f\x67\x18\x27\x51\x82\xbd\xc8\xa9\x29\x0a\x92\xaf\x54\x1f\xb2\x51\x16\x08\x7c\xc8\x10\xe9\x94\x8d\x33\xf0\x9c\x96\xbb\x4e\x14\x66\x4f\x31\x92\x22\x6d\x63\xf5\x96\x0c\x4e\x50\x10\x83\x76\xab\xa8\x2c\x5d\x94\x71\xc2\x09\xca\x1d\x5e\x7c\x41\x58\x38\x40\xd7\x4d\x57\x58\x0b\xca\x20\x9c\xb4\x1a\x6a\x06\xf3\x67\x89\xea\x11\xf9\xc5\x94\x1c\x6d\x5d\x41\x97\xc8\xe9\x11\xe1\xc0\x53\x92\x29\x1b\x3c\x78\x14\x92\x1f\x05\x12\xde\xeb\xdc\xec\x1c\xc1\x8b\xda\x99\x0b\x5f\x23\x40\xc4\x93\x23\x57\x14\x48\x78\x25\xe5\xf1\x1b\x56\x53\x96\xfc\x97\x95\xdf\x2c\x0a\x1c\xa9\x4b\xf2\x41\xdf\x99\xec\xc3\xdd\xe3\x52\x23\xd6\x5f\x7e\x22\x75\xfd\x3e\xd0\xd6\x84\x6e\xe7\x1e\x14\xff\x80\x1b\x9a\x94\xa4\x05\x16\x37\xab\xfa\xcb\xce\x2d\x70\xfb\x61\x07\x82\xf9\xb1\x2d\xd2\x66\x42\x81\x72\xed\x4a\xf3\x1b\x05\xf6\x34\x9b\x6b\xca\x41\x77\x18\xcd\x18\x0e\x43\xd5\x7b\x8a\xf0\xb5\x62\x0d\x50\x39\x7e\x82\x8d\xd5\xfe\x59\x82\x47\xc0\x12\xbc\xa4\x83\x68\xe4\x93\x03\x7f\xed\x17\x31\x3a\x7e\xd6\xa0\x45\x9d\xeb\xa6\xfe\xa2\x96\xf0\x39\x2a\x66\x8f\x90\x49\x8b\x75\xd9\x05\x36\xba\xf2\xea\x80\x49\x61\xdc\x06\x03\x37\x7f\x3a\x31\x03\x4f\xf9\x44\xee\x29\x13\x93\x0b\x51\xfa\x5e\x33\x45\xc8\x17\x3d\xbc\x7e\x92\x3d\xa9\x0d\x44\xf6\x59\x44\xe9\xd0\x17\x1e\x5c\x1c\xd0\xef\x73\xc9\x9e\xe1\xbd\xe1\x05\x7d\xc0\xe8\x63\x63\x1e\x02\xe8\x4a\x32\xcb\x43\x92\x96\x17\xb9\x41\x9a\xb7\xf2\x7a\x0e\x85\x8a\x84\xc6\x82\xa2\xe7\xaf\x6d\xbb\x11\xd8\x61\x3c\x78\xc0\xa2\x8d\x47\x0f\xfa\x4f\xe6\x81\x4b\xaa\xaa\x2f\x98\x51\xaa\x52\xbe\x91\x28\x94\xaa\x74\x93\x28\x0f\x0f\xb3\x09\x1a\x1c\x91\x8a\x69\xfe\x83\x54\x3d\xdd\x53\xb8\xf9\x81\x10\x05\xaa\x42\x95\x56\x89\xca\xb8\x37\x51\xcc\x0a\xb1\x4a\x81\x92\x51\x37\x0a\xc6\x43\xed\x86\x7c\x9b\x7e\x0e\xa6\x29\xb4\xa9\x28\xf4\xa9\xfc\x23\x51\x59\xf2\x4a\x68\x54\x37\x4e\x68\xf8\x05\xa4\x5f\xf2\x00\x50\x05\xfa\x74\x56\xa8\xfa\x14\x15\x17\x35\x41\xe7\xa1\xcb\x54\x45\x04\xf3\x90\xea\xb0\x26\x4e\x48\x13\x4c\xb8\x3f\xea\xf4\xd7\xc4\xa3\xe3\x15\x24\x94\x1e\x6d\x9e\x00\xf1\xc8\x23\xc0\xf4\xa6\x38\xc8\xa8\x70\x1e\xb2\x0e\xab\xc2\xb2\x66\xcb\x57\x45\xd6\x6f\xf9\x64\x46\xa5\xe4\x24\xff\xbd\xa8\x99\x97\x11\xcd\x00\x7a\x37\x6b\x53\x6b\x61\x6e\x20\x2d\x09\x09\x3b\xcb\x6b\x93\x0a\x8c\x30\x42\xbc\x0a\xd9\x6a\x1a\x06\x85\x09\x27\xdc\xbe\xd9\x81\x80\x50\x1e\x50\x34\x75\x00\xff\xa1\x62\x5d\x61\xad\x5c\xa3\x7a\xa8\xcc\x94\xa3\x0e\x2a\xb2\xac\x54\x77\x10\xdf\x5f\xd6\x32\xd4\xca\x1c\x2b\x7e\x7d\xb0\x1e\xa0\xda\x93\x27\xcd\x3f\x30\x53\xba\x3e\x68\xa8\x28\xe3\xf1\x1a\x8f\x92\x60\xde\x7e\x8e\x6a\xff\x0d\xcf\xa9\x8d\xb7\x17\xcd\xb6\x41\x4b\x22\x0e\x57\x1b\x62\xcc\x9a\xdb\x3f\xa1\xb8\xda\xa1\x46\xf2\x2a\x24\x6c\x2c\x41\xa0\xe9\x21\x25\x88\x4d\x91\x35\x58\x5d\xdb\xf0\x0b\x6a\x25\x84\x13\x94\x9c\x74\xdd\xab\xc1\x1d\xf2\xb9\x09\xc6\xd5\xa9\xdd\x0b\xcc\x32\x9a\x41\x47\xfd\x17\xdd\x8f\x2a\xbc\x85\x4a\x96\x6a\xae\x52\x76\x92\xf0\x56\x3b\x0c\xce\x86\xf0\x40\xd9\x28\xc3\x64\x10\xa2\x1e\x01\x79\xe9\x94\x43\x3c\xea\x40\xde\x18\xc3\x04\xbe\xcd\x45\x45\x8e\xa2\x0e\x24\x66\xf7\x1a\x07\xeb\x3c\xe8\x83\x49\xa7\x4a\xed\x21\x94\x61\xd9\x33\x98\x28\x74\x6f\x52\x31\x59\x92\x20\xfc\x43\x83\x57\x9f\x96\x04\xef\xa0\xe2\x25\xc3\x17\xf9\x85\xa4\x93\x45\x17\xfc\x3e\x2a\xbe\x48\x34\xaa\x4b\x90\xe9\xc3\xdf\xef\x3f\x51\x55\x6a\xb7\x05\x32\xd3\xc2\x1d\x41\x50\xdd\xef\xef\xac\xa1\xee\x1f\x50\x00\xf0\xd5\x01\x72\x07\xbc\xda\xd0\x0d\x17\xbf\x8f\x5d\x97\xba\xb0\x52\xf2\xc8\xd2\x67\x56\xa4\x7e\xb3\x34\x58\xa1\xfc\x2a\x8a\x2d\x8c\x0a\xeb\x5f\x79\xb5\x11\x3f\x6a\x18\x1f\x84\xa1\x78\x56\x3d\xe8\xc9\xea\x36\x77\xd1\x78\x41\xe1\x24\xeb\x5e\x52\x0f\x22\x92\xdb\xb4\xd3\x7b\xc8\x13\xf7\x22\x0f\xc9\xc3\xe3\x55\xa1\x5e\xc9\x8b\x1e\x2e\xd9\x64\x28\x1b\x4e\xd4\x13\xf4\xd5\x73\x3e\x13\x4a\xb5\x6b\xdb\x4f\x16\x38\xd3\xf7\xd4\xaf\x65\xb3\x84\x13\x52\xbc\x54\x80\x15\xee\x46\x96\xc7\xea\xc9\x35\x4a\x44\xac\xac\x93\x6e\xfa\x78\xa2\x7a\x86\x31\xef\x3c\x80\x18\x9e\xd1\xc9\x0e\x3c\x02\x36\xd2\x60\x5f\xc2\xcf\x8b\xb1\x57\x2a\xd0\xac\x44\xac\x17\xd7\xa8\x11\x28\xfd\xbc\xd8\xd8\x05\x3d\xaa\x6e\x26\xf5\xe2\x22\x25\x0e\xd5\xab\xc2\x6f\xde\x3d\x40\x43\xe6\xd3\x87\x24\xb8\xd5\xb8\x78\x71\x1f\xa7\x3f\x40\x01\xa5\xea\x0f\xa0\x80\xd0\xf5\xaf\x52\x7e\xb2\x8e\xad\xde\x10\x19\x4d\x00\x90\xe3\xae\x14\xf3\xad\x9b\x6e\xe1\x1a\x92\xf2\x53\xf1\x4e\xc1\x6f\xbb\x78\x51\x48\x51\x50\x6c\x2c\xa9\x70\x7c\xb2\x04\x56\x11\x64\xf7\x62\xde\xf7\x83\x13\xa8\x11\x90\x52\xe0\x75\xc2\x1f\x38\x52\xf9\x84\x2e\x89\x6b\x0c\xb3\x62\x4a\x5c\xd6\x92\xd4\x25\x71\x0d\xcb\x4f\xf5\x41\xf8\xb3\x67\xf8\xc0\x5d\xc1\x34\xec\x61\x06\x53\x4d\xf0\x01\xa7\xf8\x55\x5d\xb5\xa8\xb0\xdb\x96\x97\x2c\x43\xbb\xad\xb9\xc2\x43\x90\x8b\x0d\x36\xc4\xf4\x29\xd4\x38\xda\x86\x8c\x33\x42\x9b\xb6\x11\x80\x42\xed\x86\xc2\xec\x16\xb7\x1a\x4a\x94\xda\x83\xa4\x6d\x64\x54\x9f\x11\x5b\xca\xa8\xe9\xa9\xe7\x94\xae\x4c\xd5\x1b\x0a\xad\xa7\xe1\x0f\x38\xa2\x2e\x0a\x8d\x85\xc7\xb4\x65\x0d\x11\x77\xc5\x72\x78\x4b\xa8\x9a\x2a\xbc\x6a\x09\xc5\x74\x86\x3b\xf8\x89\x46\xee\xfa\x01\x6a\x06\xcf\x99\xaa\x33\x33\xfb\xb6\x44\xb6\x51\x75\x77\x69\xa8\xec\xa2\x8c\xe8\xd1\x72\x81\xd7\x8b\xde\xcf\x15\x14\xca\xef\x43\x58\x11\x96\xb4\x8c\x93\x20\x34\x6d\x19\x66\x32\x2f\x31\xc3\xfe\x3e\xdc\x1f\xf7\xf1\xd5\x21\xc4\x81\xf0\x07\x50\xc6\x4a\x37\xd5\x0a\x4d\xb7\xda\xb6\x82\x14\xdc\xa2\x37\x0d\x09\xd7\xab\x41\x56\x08\x43\x6f\x53\x59\x02\x8a\x99\x75\x43\x44\x9e\x5d\x7f\x5b\x21\x0c\xc5\xdd\x5b\x61\xce\x50\xed\x0a\x24\x3e\x2b\xbb\x5a\xe1\x0c\x3f\x78\xde\x90\x47\xc0\x56\x92\x86\x24\x70\x8a\x93\x8c\xb6\x04\xb4\x6e\xb7\x9e\x06\x7f\xf0\xda\xfc\x3e\x6d\x20\x5a\x21\x6a\xa4\x14\x85\x88\x44\x43\xe1\x52\xd3\xb7\xd6\x08\x02\x4d\xb8\x2d\x34\x92\xba\xbc\x35\x94\xeb\x97\x94\xde\x98\x2a\xf9\x35\x81\xb6\x78\x6f\xf6\x9e\x35\x42\x40\xcc\xb8\x35\x7a\xb0\xfb\x05\x62\x51\xf7\x88\xc8\x03\x3b\x3c\x43\x78\x73\xe9\xda\xdf\x90\x98\xc0\x0a\xc9\x16\x50\x81\x4f\xb7\x59\xf2\xcf\xef\x1f\x58\x91\x40\x16\x27\x62\xc1\x34\x01\x26\x37\x96\x4c\xd8\x3a\xc9\xa7\x37\xb5\xd3\x74\xe6\x36\xcf\xa2\x67\xd8\x19\x36\x21\x20\xb1\x7c\x9b\x81\xf6\x51\x9f\xf9\x07\x44\xbf\x4a\x51\xd1\x90\xfd\x58\xf5\xe1\xa3\xc1\x39\xcb\xfa\xb5\x36\x98\x7b\x41\x03\x42\x82\xeb\xde\xb4\x01\x2b\x8a\x8f\xf2\x60\xc8\x9f\x66\x3c\x19\xe7\x29\x10\x43\xc2\xdb\x8c\xe7\xf3\xa7\x14\xaa\x06\x58\x22\x5e\xd8\x12\xd6\x28\xe2\xd9\x22\xdd\x50\xd9\xfc\x35\x22\xec\x9d\xe5\x75\x94\xa0\xce\xf2\x75\xae\x21\x55\x40\xb1\x03\x59\x43\xaa\x00\xbb\xd1\x37\x18\x3c\x5d\xd7\x23\xda\x5c\xcc\xbd\xbd\x3e\x40\xbe\x7a\x53\x07\xd4\x77\xb3\xa9\xa3\x21\x1d\xb0\x8b\x7d\x45\xdb\xa9\x47\x50\x07\x3b\x82\x00\xab\xdb\x8d\x2e\x5b\x6a\x73\x0d\xc9\x3f\x20\xb7\x9d\xc1\xb4\xff\xac\x41\xab\x86\x8a\xcb\x7e\x82\x6d\xff\x59\xc3\x6f\x42\x3d\xa3\xd1\xe3\x7c\x7a\x38\x54\xb8\x93\xc6\xb0\x41\x0a\x55\xae\xbe\x68\x94\x42\xab\xb9\xd0\x0e\x4d\xb4\xe7\xb7\xa4\xd0\xa2\x8c\xcd\xd1\x0e\x5c\xb9\xbd\x8b\x07\xe7\x6f\x6a\x02\x19\x32\xbc\x49\x4b\x44\x0c\xe5\x7f\x8a\xb6\x44\xc4\x52\x64\xd0\x6c\x28\x31\x30\x4d\x4f\x4f\xe2\x8d\x54\x37\xed\x24\xde\x08\x20\x4b\xe2\x0b\x25\x88\x8a\x76\x32\x65\xa3\x06\x58\x12\xdf\xc2\x15\xb5\x91\x39\xd6\x5b\x74\x22\x9e\x66\x73\xfb\xe2\x80\xee\x10\x7e\x26\x52\xbb\xb6\x13\xc1\xf7\xd2\xab\x34\x14\x35\x08\x83\x08\x25\x0a\xc2\xe4\xed\xc2\x5d\xc8\x7c\xf6\x86\xa6\x5a\x9a\xf0\x46\x59\xca\x9e\x14\xed\x66\xce\x64\xcd\x78\x89\x4a\x25\x4b\xc9\xd0\xe8\x22\x6e\x14\x81\x7d\xd1\xe2\x61\x43\x3e\x60\xeb\x59\x1a\xec\x8b\x76\x70\x6a\x37\xac\xdc\x26\x8f\x28\xe6\xbe\xf9\xa0\xc1\x5c\x38\x0d\x91\x07\x2c\xea\xd5\x86\x56\xd6\x0c\x05\x0e\xd9\xf6\xde\x8d\x0d\x3a\x52\xcd\x2f\x36\x2e\x30\xfc\x43\x5e\x04\xdf\xef\x17\xbc\x1f\x6a\xd3\x5a\xe3\xd7\x77\x3c\x2f\x6a\x43\x89\x62\xcd\x56\x30\x75\xae\x90\x36\x36\x6e\x61\xf7\x08\xc8\xe1\x2c\x75\x5f\x2c\x51\x28\xab\xaa\x47\xc4\x12\x7d\xaa\xfd\xf8\x02\x8a\x25\xd5\x98\x8d\x40\xa6\x5c\x9f\xda\x58\x72\x4c\x98\x0c\xc4\x92\x4a\xc2\x3e\xf3\x91\x78\x8c\x86\x07\x80\x45\x4f\x84\x24\x90\x5b\xc0\x5b\x1a\x70\xd1\xb6\x0e\x25\x32\xe9\x84\x67\x04\x17\x6d\x6b\xa6\x02\x51\x67\x76\x06\x09\xa6\xc6\x0b\x0f\xc0\x19\xe8\x60\x06\xc2\xcc\x54\x2d\x3c\xa2\x90\x94\x09\x6b\xa2\x24\xac\x41\x6b\xa6\xe0\xf2\xfa\x00\x30\x90\x38\x1c\x4b\x70\x09\x65\x06\x88\x28\xc8\xf0\x34\xfc\x3e\x36\xc1\x4c\x31\x90\xbc\x76\x8a\x6d\x47\xe5\x80\x53\x6d\xe4\xc9\x16\x07\x89\x8a\x70\x9b\xe4\xe7\x07\x92\xe1\x0a\x46\x4b\x0e\x79\x49\xa3\x51\xa1\xc8\x92\x7c\x1e\x0d\x85\xcf\xbc\x49\x0d\x81\x08\xe2\x70\xd1\xb8\x40\x81\x94\x35\x1c\xa4\x62\x88\x86\x05\x4a\x65\x1b\x4b\x2e\x09\x13\xa2\x68\x40\x7b\x49\xf0\xd1\x50\x35\xab\xf9\x7b\x6c\x41\x33\x04\x1b\x26\x28\xd2\x18\xb4\xea\x35\x83\x3c\x00\x11\xe9\x04\x02\x51\xfd\x4a\x19\x15\x81\xc0\xfd\x97\x02\x33\x02\xae\x8c\x06\x01\x75\x4f\xed\x35\x04\xe3\x93\xdd\x23\x92\x44\x4a\x62\x8f\x78\x20\xa8\x68\x8d\x10\x54\x7c\xb3\x8c\x8e\xb0\xaf\xfe\xab\x3b\x4e\x74\x4e\x4f\x52\x4c\xa0\x90\x9b\x5d\x39\xa3\x13\x82\xda\x91\x0e\xc3\xb9\xb8\x4f\xf4\x75\x4c\x9b\x77\x60\xf0\x86\xa2\xf7\xa9\x97\x6a\x3e\xb7\x03\x5b\xe8\xf5\x43\x68\x19\x22\xb5\x01\xb5\x93\x45\xe1\x40\xc5\x83\x77\x87\xf0\x7a\xf4\x84\x97\xd0\x52\x6c\x13\x8c\x09\x87\x61\xa3\x08\xb2\x1d\x1a\x7a\x70\x17\x37\xa7\x88\x9d\xee\xc2\xfa\x7c\xe7\x7a\xb5\x1b\x8b\xb9\x77\xeb\xaf\x03\x0e\xdf\x5d\x84\x39\x58\x07\xcd\xcb\x83\xc6\x66\x33\x86\x21\x33\xcf\x94\x5d\x3d\x50\x9e\xc7\xb2\x41\x9c\xf0\x7c\xf5\xf2\x69\xc8\xb1\x50\x16\x27\x92\x6f\x78\x43\x4e\xba\x89\xba\xcd\x40\x0d\xcf\x08\x1e\xde\xa1\xbb\x40\x2c\xde\x36\x8b\xe9\xda\x35\x01\x30\x75\x70\x41\x3a\x51\x44\x7e\x04\xb2\xe9\xfb\x42\x17\x50\x24\x24\xdd\x0d\x02\xe5\x74\x7c\x0d\x8e\x1b\x94\xd5\x94\x17\x5a\x80\x17\x5d\x7b\x50\x00\xc1\x28\x03\x5e\x55\xec\x55\x1a\x0f\x24\x69\x89\xea\xf1\x80\xb4\x9b\x70\xae\x5b\x7f\xea\x86\xd1\x83\x3d\x32\xef\x80\xcb\xb6\x05\xed\x80\xcb\x76\x32\xa1\x5d\xb7\xfe\x6c\xe7\x8f\xe0\xc5\x3e\x4c\xc6\x1e\x3a\x79\x7a\x02\xb0\xe2\x8a\xb4\xf7\x0d\x7a\x3c\x4d\xa0\x2f\xee\x37\xcc\x7d\x3b\xa3\x8f\x74\xbd\xea\x8c\x3e\xea\x6e\x2f\x6e\xa8\xac\x32\xd1\x37\x78\xed\x89\x8e\x77\x30\xc3\x97\x75\xad\x83\x1b\x3a\xd4\xb3\x27\x48\xea\xa2\x32\x1d\xcc\xae\x89\xbd\x77\x30\x3b\xbb\xb3\x74\x44\x64\x97\x78\xfd\x00\xfe\x2f\x24\xe8\x09\x21\x7a\xd2\xc4\x74\x5e\xda\x95\x36\x3c\x3a\x13\xb9\x7b\x46\x64\x8f\xb6\x9a\x76\xb0\x47\x25\x7e\x8d\x9e\x21\xb3\xe9\x42\xd7\xe1\xce\x6c\x2f\xb9\x9e\xe1\x05\x27\x32\xd5\xe9\xb1\x62\x3c\xed\xb0\xbb\x28\x57\x4f\x74\x5c\xeb\x87\x81\x4c\xb3\x8b\xd0\xb2\x93\x7d\x4a\x04\xe9\x64\x9f\xf6\xf9\xe9\x64\x9f\x12\x61\x3a\xd9\x67\x78\xd1\x28\xc5\xa6\xcc\xab\xd1\x0b\xab\xf6\xfb\x03\x16\x6d\xd7\x2e\x14\x96\xa5\xd7\x0c\x0a\x84\x30\xa1\x4d\x87\xf7\xb2\xd5\x63\xbd\x12\xd1\x75\x72\x7a\x05\x71\x94\x10\xd4\x2b\xdd\xb4\xd4\x61\x0d\x44\x8d\xf9\x39\x78\x83\xad\xb4\x7d\xdd\xf3\xc3\xca\x99\x8e\x64\xef\xf6\x79\xe9\x8b\xbf\x86\x23\x07\x7a\x25\xa6\x77\x8f\x00\x72\x9d\x3d\x65\x08\x39\x92\xc4\x3b\x8b\xa5\x7a\x89\x88\x0b\x37\xf5\xed\x08\x0b\x2f\x96\xa4\x3b\xaa\x2c\xe5\xdf\x65\x16\xe8\x8b\x3d\x57\xab\x21\x3a\x2e\xf9\x4a\xea\x13\x9d\x86\x1b\x3b\x33\xf4\xc5\x8f\x43\xc9\xf8\xa3\xc3\xc9\xa6\x7a\x47\xc0\x8e\x1d\x98\xd8\x83\x6e\x5f\xda\x01\xe4\x82\xb7\x77\x69\x0f\x54\x48\x94\x7c\xd2\x63\xa2\x7f\xb7\xd7\x41\xb5\xc3\x72\x0f\x86\x44\x6b\x7c\xda\x79\x1c\xd4\xdd\xe1\xf1\xbc\xf9\xd8\x74\x56\x9d\xd4\x84\x7a\x5a\xec\xc5\xf0\xeb\x70\xb3\x32\x25\x40\x45\x24\xd5\xb6\x8b\x8e\x00\xae\xf2\x3a\xf9\x28\x76\xf7\x3a\x87\x54\x1a\x28\x35\x5b\x74\x30\xe8\x6c\x5a\xd5\x81\x02\x3e\xf9\x9d\x30\xd5\x65\xaa\x77\x28\x8e\x25\xea\x77\xf8\x4c\x2b\xff\x61\xf4\xc1\x63\x62\x9c\x40\x49\x24\x2b\xfc\xfb\x60\x99\x29\xc1\x60\x60\x06\x12\xba\x3a\x92\xe2\xbc\x5c\x3e\x3a\x02\xcf\x1d\xdd\xd9\x99\xd0\xd0\xe9\x2d\xfa\x38\x30\x67\xf5\x38\x29\xd2\x08\x4a\x13\x35\x06\xc4\xe2\x3a\xd5\x0a\xf6\x94\xef\xf0\xa3\x6e\x86\xda\xc4\x39\xf1\x41\x82\x1f\x75\x71\x86\x86\xce\x32\x7e\xa6\x66\xc8\x40\x58\x9c\x32\xa2\x23\x14\xdd\x21\x2e\x7d\xc9\x0d\xd5\x71\x56\x1d\xf5\x55\x95\xae\x36\x3a\xbc\x6c\xaa\x3b\x44\x55\x21\x1b\x85\x3b\xbd\x6c\x1c\x17\xde\x77\x6e\xac\xd6\x4c\x35\x83\x43\x4a\xfb\x4e\xb0\x6a\x46\x3b\xd7\xe4\x11\xb8\x26\xe3\x1a\x0a\x11\x29\xfd\x7b\x74\x78\xd2\x84\x34\x23\x1d\x69\x0a\x8b\xe3\xc0\xfb\x7e\xa1\x47\x4f\xe9\xe6\x0b\x9e\x34\x32\xcc\x7b\xa7\xe1\x49\xe3\x2b\x50\x3f\x80\xbd\x52\x63\x76\x9a\xab\xac\x07\xec\x28\x5e\x68\xf9\xbf\xb3\x96\x91\xcf\x33\xf2\x1a\xda\x9d\xaa\xa3\xb8\x61\x36\x81\x38\x97\x74\x6d\x1b\x65\xa7\x66\xc1\x39\x0e\xfa\xc9\x19\x68\xc0\x13\xf5\xab\xbc\x82\x75\xf1\x57\xad\x88\xe8\xa8\x34\x64\x47\xe8\x0e\x3b\xce\xab\x3b\x98\x71\x36\x93\x4b\xf8\x41\xbf\xe8\x29\x8a\xc2\xbe\xe6\x03\xab\x8d\x7d\xa9\xfa\x05\x7a\xd2\xfc\x1c\xf4\xc4\x98\x7f\x11\xcd\xcc\x05\xe1\xd8\x3c\x24\x2b\x75\xd4\x80\xcd\x66\x8a\xc8\x22\xfd\xa2\x37\xb4\xf2\x38\x70\xb8\x23\x36\xdd\xe1\x70\x9d\x9a\x89\x17\x49\xbc\x33\x7a\xd4\x92\x6f\x16\xc9\xf1\x07\x98\xb2\x11\x17\x9e\xcc\x36\x7a\xf6\x1b\x05\x51\x2d\xfb\x3c\xc4\x01\xb7\x17\x13\xb5\x2e\xa6\xd3\x17\xd9\x11\x7f\x1d\xb5\xf0\xc3\x30\x7c\x58\x4b\x42\x13\x7a\xb0\xe4\xd7\xfb\xc4\x42\x33\x3d\xd6\x05\x12\xa3\x1f\xd0\x55\xe4\x5f\x25\x86\x8e\xb1\xb1\x1c\x5b\x52\x9b\xc7\x4c\x7a\x86\x81\x50\x72\x6b\x6e\xc6\xc6\x50\xb2\xaa\x36\xe1\xe3\x36\xb6\xb4\x7a\x36\x48\x34\xa2\x73\x3d\x36\xd2\x5f\xb7\x2f\x0e\xe8\x0f\x40\x39\x9a\x5f\xc0\x21\x93\x90\x30\xe8\x41\xa3\x8a\x31\x31\xe0\xcb\x5c\x05\x8f\x91\x08\x61\x11\xe4\x91\x90\x0d\x46\xc2\xdd\x80\xb3\xf3\xf6\xea\x11\xd4\x31\xfb\x7d\x40\x5c\x5c\x74\x64\x94\x74\x11\x4e\x8d\x8c\x25\x0f\xb7\x71\xe7\x73\xff\xac\x42\x2f\xd2\x35\x90\x46\xd9\x11\x92\x83\xe6\x0e\x7f\x5f\x90\xcd\xb5\xfb\xf9\x05\x31\xc8\xfd\x01\x22\x5e\x30\xa2\xc2\xca\x10\x8a\x0c\x24\x24\xcc\x06\x21\xd4\x10\x8e\x93\x1e\x08\x0b\x53\x99\xa5\x18\x90\xab\xc2\x9b\x5e\x2b\x50\xcc\xfd\xa1\xd8\xf5\xeb\x7d\x68\xaf\x8a\xdf\xef\x9c\x80\xf6\xa8\xa2\x34\x47\x51\x13\x00\xea\x7e\x0c\x9c\xf0\x86\xa0\x44\xfd\x4b\xc7\x3c\x2a\x4a\x3f\x8a\x76\x0f\xca\x65\x0e\x86\x1f\x15\x20\x08\xaf\x90\x20\x90\xf8\x3c\x1a\xfc\xef\xbc\x64\xc4\xa1\xa9\xb4\x44\x0c\x0a\x66\x43\x2c\x71\xc0\xc5\xc6\x3e\x3d\x03\xe5\x2f\xad\x70\x1b\xb0\xe8\x64\x6f\x0a\x8a\x4b\x3a\x73\xca\xf8\x71\x47\xd6\xfb\x41\x18\x6a\xcd\x81\xa4\x20\x22\xa5\x23\x02\xfd\x69\x7c\x24\xf0\xb1\x3d\x65\x20\x38\xde\x49\x30\x46\xc0\x9f\xdb\xe7\x86\xee\xcb\x43\xb7\xc2\x01\x03\x8d\x3d\x1b\x46\xc7\x04\x44\x88\x06\x55\x17\x8e\x75\x1f\xa8\x03\xac\xc4\xcb\x31\x28\x19\x49\xf6\x1a\x90\x63\x9a\x77\x71\x10\x64\xd5\x3f\x80\x99\xf8\xa0\x41\xd0\x29\xc3\x67\x1f\x3e\x34\x4e\xc2\x30\xe0\x43\x63\x75\xd7\x18\x0f\x46\x14\x4c\x61\x2f\xb1\xf7\xc6\x60\x55\x1c\x19\x7c\xc6\x12\x53\xa6\x3d\x16\x07\x8a\xb8\xdb\x7f\x79\x4c\x3a\x98\x78\xca\x70\x81\xb1\xc7\xf6\x80\xd4\x61\x9f\x9b\x81\xda\x84\xdd\x27\x7b\x87\x72\x45\xec\x70\x20\x5a\xab\x19\x49\x90\xa8\x58\x19\x17\x63\xfc\x78\xb4\x78\x17\x61\x4b\x08\x09\xc4\x83\xb6\x04\x9f\x24\x94\x2f\xb6\xde\x77\x50\x02\xb0\xdc\x34\x28\x01\x78\x53\xce\x0d\xec\x45\x03\x9c\xbc\x60\xe8\x12\x36\x4e\xe0\xe1\xab\x8d\xe4\x73\xaf\x36\xf1\x44\xc2\xe0\x40\xb6\x99\xcd\x23\xd2\xdb\xc3\xf6\x8d\x01\xeb\x80\x13\x2b\x0d\x78\xaa\x3a\xf8\x69\x5c\x0d\xd9\xba\x34\x45\x2a\x4c\x5e\xcf\x3b\x54\x3e\xbf\xb2\xde\x0c\x44\x3a\x6d\x26\x0d\xf4\xe3\x70\x5c\xc1\xb8\x10\x98\xe1\x83\xbb\x38\x7a\x1f\x46\x73\x98\x1a\xc2\xfc\x08\xc5\x8c\x55\xaf\x39\x06\x2a\x09\xaa\x4c\x5f\x8c\x1b\x71\x0c\xee\x1f\xb9\x5f\xca\xf4\x0b\x64\xd8\x86\x17\xea\x38\x38\xf4\x68\x20\x39\x9e\xaf\x78\x03\x55\xe2\x5f\x94\x05\x55\xe2\x87\x84\xf3\xf1\x30\x92\xc4\x48\xf8\x80\xe3\x49\x45\x36\x19\xeb\xa3\x5a\xc1\x31\x37\x90\x6b\xa9\x3b\x26\x78\x72\x12\x4e\x4c\x84\xa3\xdb\xd8\x3c\xa9\x0e\x71\x68\xf4\xdc\x20\x7c\xbf\x3a\xa4\x67\x98\x3b\xc4\xb1\x10\xfd\x9e\x89\x4b\xd6\xfb\x29\xb1\x43\xff\x00\x73\x8d\xd6\x3c\x11\xac\x6d\x07\xa1\x89\x4a\x04\x16\xd6\x67\xd9\x50\xcb\xbf\xab\xbd\xde\x77\xc8\xde\x5c\x1c\x2f\x8a\xb4\x88\x93\x8a\x74\x81\x68\xd2\x83\x53\x55\xd3\x62\x92\xc5\xe9\x96\x36\x2b\xc2\xc9\x75\x65\x9a\x95\xde\xd2\x7a\xde\x90\x8a\x44\x17\x9a\x09\x97\x48\x7b\x9a\x4c\x28\xba\x1d\xb9\x3b\x69\x5f\x4f\x7e\x7e\xa1\x7f\x7f\x0f\x3d\x80\x17\xd0\x88\x35\x06\xd9\xba\x59\x87\xd1\x6a\x22\x5f\x9b\x35\x0d\x13\xe4\xde\xb1\x22\x13\x6a\xec\x6a\xaf\xd8\x89\xaa\x6a\x76\xdf\x9e\x20\xe7\x56\x8e\x4c\x44\xa3\x54\xd5\x51\x8d\xb9\xee\xda\xc3\x57\xb4\x89\x2a\x6b\xf6\x43\x9b\x1d\x11\xf8\x12\x34\xe7\xa2\xff\x63\xf3\x9e\x74\x96\x9f\x10\x71\x9b\xcc\x6d\xa2\x73\x3d\xfb\x40\x07\x5a\x62\xc7\xa6\x25\x0f\x70\xc2\x57\x5a\x33\x1c\x04\x81\x06\x40\x78\x4a\x35\xb9\x9f\x60\x20\xce\xca\x37\xa1\xeb\xae\x8e\x1c\x9d\xd0\x75\xdb\xa1\x6a\xfe\xe4\x97\x95\x60\x32\x07\x52\x83\xfa\xe8\x0c\x4e\xc9\x1f\x60\xdb\x8c\xd8\xc8\xb8\x66\x4f\xd8\x39\x91\x54\xc0\x07\x63\x72\x89\x9a\x11\xaa\xd3\xdb\x83\x69\xe2\x56\xfb\x9a\x20\xee\x98\xe5\xd5\xa6\x67\xad\x76\x1d\x77\xcc\x6a\xab\xdb\x5c\x77\xcc\xf9\xfe\x00\x03\xbc\x3e\xe0\xae\x4a\x3c\x9e\xb8\x63\x9a\x98\xce\x9d\x3e\x54\x9a\xe1\x81\x5d\xf5\x49\x59\x0c\xc4\xa9\x3e\x63\xae\x1b\xe2\xcb\xb3\x79\x1e\x1c\x50\x10\x38\x78\xf4\x85\x35\x28\x82\xe6\x3a\x3b\x31\x4f\x0e\xa0\x09\x2d\xfe\x11\x8e\xf9\x99\x70\x16\x7c\x9d\x4c\xd8\x96\x1d\x8a\x3a\x4f\x78\x2f\x19\x0b\x60\x5a\xb6\x89\x6a\xc2\x57\xb0\x3a\xb5\xc4\xbc\x98\xfb\x53\x20\x42\x7d\x7c\xfb\x7c\xcd\x75\x07\xcc\xa9\xb9\x8d\xd4\x13\xc6\x22\x94\xbb\x2f\xe5\x57\x19\x06\xe6\x0d\x6b\x80\x88\xf3\xbc\x89\x30\xea\xfc\x01\x5d\x31\x25\x45\xda\x7b\xc7\x88\xcd\x87\x9e\x90\x82\x0e\x2e\x5f\xd5\xce\x55\xf3\xc1\xec\x24\x00\xec\xdb\x4f\x2a\xce\xd0\x0f\x09\x35\x54\xab\xda\x19\x6e\xc3\x5d\xed\x06\x8c\xf1\x73\x44\xb0\x0b\xbe\x7b\x82\xf7\x97\xc0\xb1\xd3\xdf\x4c\x37\xfa\x3d\x21\x55\xb8\xc7\x4b\xf0\xef\xd0\x65\x65\xff\xc9\x0d\x2a\xf8\xed\xeb\x36\xf3\xca\xf2\xb4\xe7\xcc\x17\xa6\x7e\x28\xa0\xad\xfe\x00\x87\xa6\xba\x0d\xa4\x57\x75\x82\xd8\x91\x0e\xd4\x7e\xc1\x7b\x26\x4c\x3e\x38\xbd\x17\x4e\x41\xec\x65\x87\x62\xd9\x6a\xc4\x1d\x76\x58\xfb\x45\xee\xa8\x7d\x6f\x4f\xa1\x7d\xb1\x8f\xa1\x4a\x39\xb1\x17\x9c\x32\xa9\x25\x76\xa4\xd1\xb0\x03\xdb\x8e\x0b\x93\x77\x7d\xc7\xfd\xc6\x62\xe0\x8e\x2c\x18\xaf\x05\x54\xd2\x62\xf5\x8f\x5c\x5d\xb6\xce\xef\x0d\x28\x27\x6e\xb4\x37\x42\x44\xfd\x31\xd5\x96\x28\xe9\x0e\xee\x52\x6d\x12\xda\x1b\x4e\x65\x75\x87\xf0\x11\xf6\x04\x83\x10\x92\x60\xba\x43\x51\x3b\x0d\x42\x14\xf9\xb4\x3b\xfb\x8e\xd2\xf5\x76\x32\xdc\xe9\x7d\xe5\x3d\x23\xed\x16\x99\xd9\xa1\xf5\xb4\x8d\x69\x47\x68\xa1\x15\x82\x3b\x72\x61\x5a\xcf\xb2\xd3\xaa\x58\xfc\x3e\x21\x2a\x88\x23\x8f\x55\xb5\x96\x62\x87\xaf\x94\x5d\xfc\xf6\x09\xb2\x22\x35\xcb\x3e\xe1\xdf\x6b\x10\x4d\x50\x56\xa3\xf5\xa2\xbc\xd3\x6e\x96\xfb\x4e\x90\xeb\xfd\x9d\xf1\xc1\xa2\xac\xfb\x12\xed\x87\x4a\xfd\xc5\xbe\x17\x9c\x74\x4d\x08\xa9\xa9\xec\x42\xb8\xc3\xc9\xa8\xe6\xec\x11\xb0\x27\xcd\x1d\xc0\x0a\xe6\x3d\x5b\xa2\xfd\x1c\x06\xf9\xc1\x01\xf4\xfd\x01\x24\xf5\x00\x70\x1c\xdf\x74\xb9\xd9\x4f\x88\x24\x92\x13\xf7\x8b\xdf\x0b\x69\x2e\x20\xb1\x91\x7e\xd1\xbd\x69\x42\xbc\x43\xf5\x55\x7d\xe7\xdd\xaf\x0b\x20\x72\x07\xf7\x6a\x7b\x4f\x2f\x5e\x7e\xf4\xfc\x87\xf6\x69\x41\x37\x6f\x53\x82\xd0\xcd\x3a\x08\x26\x4d\x37\x99\x97\x56\x8c\x34\x8b\xd5\x77\xd4\xfd\xc6\x26\x19\x8d\x1f\x2c\x49\xbc\x62\x7f\x30\x82\xb1\x04\xee\xc5\xce\x90\x7a\x6c\xf4\xbe\x4d\x6a\x2f\x29\xae\xbe\x9e\x63\x05\xda\xf4\x63\x89\xa1\xd3\x58\x7e\xc0\x39\xd7\xe7\xf0\x48\x80\x80\xa8\xf7\xc1\x72\x17\x96\xc2\x8e\x8c\xf0\x52\x11\xd7\x23\xd3\xe2\xa4\x01\x40\xfb\xac\xff\x3c\x32\xfc\x29\x74\x3b\x39\x20\xf7\xb6\xfe\xab\x30\x9c\x03\xfe\x2c\x4e\x89\x74\x14\x58\xb3\x84\xb1\x47\xe9\xe8\x4c\xb3\x85\x5a\xa8\x9a\x19\x1d\x90\x92\x9b\x47\x2f\x4c\xca\xe4\x0e\xc1\x6a\x93\x9f\x23\xc4\x5a\xe0\x3f\x90\xec\x47\xd5\x2d\xe3\xa8\x30\x39\x1a\xdc\x20\x7b\xb3\xf9\x7d\x4e\x40\xfb\x79\xc0\x5c\xa6\x0a\xaa\x71\xc0\x2d\x56\x89\xcc\xe3\x68\xf0\x4f\xd7\xfd\xfb\x40\x92\x63\xfb\xc7\x1c\x48\x18\xf8\x9a\x20\xc9\x9a\x5d\xe8\x8f\x45\xd6\xc6\xf6\x7a\x21\xc3\xad\x4b\x2b\x0c\x44\xf9\x4b\xec\x3e\x02\xd7\x65\x29\x67\x0f\x78\x8b\xa8\x06\x6a\x1c\xc8\xf0\x63\x3f\xdf\x23\xe0\x97\x66\x10\x07\x6c\xa6\x22\x63\x47\x07\x19\x35\x42\x2d\x11\x78\x38\xc4\xf1\x58\x22\x70\x77\xb6\x96\xa3\x53\xbe\xf3\xf7\x3b\x4b\xb2\x6b\x02\xfd\x80\xa1\x59\x0b\x82\x8c\x6c\xd5\xdf\x31\x60\xaa\x97\xc0\x7a\x50\xe2\x35\x02\x52\xe2\x2d\xde\xa3\x41\x29\x5d\x38\x01\xe3\x91\xe3\x20\x8e\xc1\x3d\x33\xcc\x07\xe2\x85\x5f\x2f\xec\xd0\x38\x68\x46\xcc\x48\xd8\x3d\x03\x56\x95\x97\x9e\xe8\xa0\x0c\x2d\x33\xc8\x81\x08\x6b\xc7\x04\x1c\x2c\x91\xe0\x08\xe4\x63\x32\xd1\xa4\x66\x00\xe3\x51\x75\xee\x84\x63\x92\x30\xe9\x85\x1d\xbc\x40\x94\xf5\xd8\xe1\xd3\x21\xde\x70\xec\x10\x39\x25\x21\x1e\x3b\x28\xa1\x78\xc3\xb1\xb3\x3f\xcd\x18\x94\xd9\x94\xfb\x40\x94\x90\xf5\xb9\xc7\xc1\x73\x20\x10\x40\x66\xf6\x75\xf9\x40\x4e\x9d\x66\x10\x21\x48\xa8\x5a\x86\x3d\x10\xe1\x9c\x93\x3f\x00\x9d\xf2\x39\x00\xa9\x4f\xaf\x09\x80\xee\x18\x6d\x28\x64\x5b\x80\x38\xe0\x01\xba\x19\xa6\x50\xe2\x98\xfd\x1e\x27\xd2\xad\xe8\x36\x79\x9c\x88\x7b\xf0\x8a\x4e\x16\x25\x17\xda\x9d\xcc\x40\x6c\xda\x82\x94\x37\x56\xd5\x1d\xa8\x89\xf0\xd2\xeb\x1f\x8c\x57\xf6\xc9\x81\x92\xa7\x49\xc0\x38\x16\x77\xaa\xbe\xd1\x1f\x17\xfc\x74\xba\x9f\xb3\x68\x83\x06\xbc\xa0\xda\x33\x1a\xd2\x23\xd4\x20\xbc\x06\x27\xa0\x4d\x84\xa2\x67\x33\xa2\xc3\xad\xa6\xda\xf9\xee\x80\xdc\xff\x62\x16\x28\x08\x6a\xcf\xaa\xe3\x86\xcb\xe4\x70\x7b\x21\xf6\x94\x50\x78\xdc\x70\xeb\x95\x60\x7d\x3c\x70\xc1\x94\x72\xf1\x80\x5d\xa5\x3a\x25\xec\xf1\xc0\xfb\xcf\xbb\x06\xc5\x4e\xd5\x85\xfa\x80\xe1\xc5\x9e\xd2\x07\x65\x7f\x3b\xb5\x1e\x0f\xc8\x9d\x64\xa0\x73\x63\x87\x53\x6d\x38\x02\x69\x97\xcf\x0d\x7e\x39\x3a\x48\xe7\x36\xa0\xaa\x2a\x6a\x9f\xe8\xef\x57\x8a\xb4\x13\x19\x7b\xab\xc4\x8b\x73\xe3\xec\xc2\xa3\xc1\x2c\x24\x9c\x3b\x51\x4f\xd3\x16\xdc\x33\xe1\x1e\xa0\x8b\xc3\x09\xb3\x49\xb5\xe3\xd3\xb9\x6e\x1e\xb9\xbf\x3a\x80\xfb\xc7\x74\x07\x58\xae\x94\x42\x27\x92\x10\x5a\xc4\x3b\x13\x0b\x8b\x84\x5f\x80\xc1\xb5\xb9\x43\x64\xb7\xd3\x06\x9c\xbc\xaa\xd8\xd4\x73\x22\xa9\x60\x9d\x6e\x33\x8a\xcc\x6d\x84\x54\x4a\x75\x77\x32\xa7\xa0\x94\x34\x27\x5c\x50\xab\x5d\x5c\x4e\xf8\xa0\xda\x99\xee\x44\x09\x4e\x9b\x84\x4f\x64\x8d\x69\x6e\x02\x23\xa6\x3f\x87\x9f\x92\xd8\xc1\xc9\x8a\x9d\xd9\xdd\x61\x03\x93\x9f\x5f\x1c\xdf\x13\xe2\xf5\xd1\xed\x07\x69\x75\x04\xb2\x02\x79\x45\xa7\xee\x44\xc2\xc1\x6a\xdb\xd6\x89\x34\x34\x6d\xf3\x07\x85\x2f\xf8\x07\xc4\x02\x1b\xe7\x58\x7a\xe1\xd5\x46\x65\x3c\x6f\x12\x6c\x4d\x0e\x29\x3b\xe1\xa3\x63\x57\xf3\xb3\xc2\x07\x48\xc7\xf8\x44\xde\x1a\x6b\x06\xcf\x25\x63\x54\x07\x99\x9e\x15\x39\x7f\x75\xb3\x39\x29\x63\x54\x83\x1c\xb1\xd1\x76\x99\x3d\x99\x27\xd9\x7b\x08\x43\xce\x08\xb7\x91\x20\xd5\x78\xde\x18\xfd\xa8\x3d\x69\x24\xde\xaf\x17\x90\x63\x71\x73\x07\x70\x8e\xf7\x8a\x1b\x52\xd0\x1a\x6d\x1b\xca\xc9\x78\x8f\xe0\xe3\x3a\xbc\xc9\x4b\xa8\xc9\xce\xee\x7e\xb2\x04\xa8\x0c\x35\x67\x30\x5e\x42\x13\x62\xdd\x2a\xa9\x2a\x4f\xca\x20\xe2\x36\x27\xfc\x51\x1d\xc1\x71\xe2\xea\x56\x7d\x83\x3f\x3b\x12\xdf\x0c\xb7\x0b\x5f\xd0\x88\xa8\x80\xed\xf8\xce\x13\x96\x9e\x57\x24\xcd\xd9\x03\x2f\x68\x0a\xa8\x24\xe5\xbc\x82\x67\x87\x07\xa3\xf1\x1a\xa5\x13\xec\x19\x76\x8e\x84\x73\xa6\x29\xc2\x69\xd5\xb6\xa9\x73\x49\x35\x2f\x5b\xda\x09\x43\x50\x6d\xd2\x76\x9e\x83\x58\xe7\x36\x27\xe4\x0e\x3b\x3f\x70\x8f\x28\x0e\x6c\x34\x46\x26\x1a\x6b\x3d\x4e\xd6\x62\xf0\xc9\x46\x1e\x99\xcd\x9b\x32\x91\x3f\xdc\x94\x02\x96\xa5\x17\x69\x61\x96\x64\xaf\x78\xc2\x31\xcc\x10\x43\x18\x4d\xb5\x0d\xf8\x64\xe2\x40\xa3\x2d\xea\x38\xbd\xa8\x25\xc2\x66\xaa\x5d\x0e\x4f\x64\x0e\xb4\x13\xcf\xb9\x67\xbe\xa0\x1e\x76\xa4\x34\x37\xf9\x44\x5c\x8d\xd3\x20\x9c\xc8\x1c\xa3\x2a\x43\x71\xc2\x56\xa5\x9a\x97\x71\x22\xac\xc6\xa1\x8b\x27\xc2\x6a\xaa\xaa\xcc\xc5\xb9\x6e\xbc\xcd\x29\xb8\x4e\xdc\x78\x7d\x99\x39\x77\x38\x0c\xbe\x66\xcc\xa0\xb7\xf2\x2b\x47\x81\x13\x69\x65\x6c\x73\x3e\x77\x26\x43\xd2\xf2\x50\xa6\xc1\xb9\x52\xcf\x25\x94\xb5\x17\x8e\xa0\x4c\x83\x73\xee\x9e\x88\xaa\x71\x66\xd2\xf3\xa0\x4f\xa8\x56\x73\x70\x47\x0c\x9f\x25\x74\x55\x27\x90\x3a\x91\xd8\xf0\x45\xdb\x11\x98\xfd\x3a\x87\x07\x9c\x56\x8b\xdf\x47\x19\x58\xa3\xc8\x09\x13\x81\xc4\xd8\x93\x55\x1c\x8c\x32\xcc\x08\x63\x70\xc2\xb0\x66\x1b\xc7\x89\x34\x84\x2f\x57\xef\x13\x75\xaa\xec\x86\x7b\x22\x28\xfa\x85\x32\x4b\xc4\x6a\x43\x32\xdb\x79\xf1\x18\xab\x43\x88\x58\x0e\x24\x3f\x51\x86\xca\x81\x4d\x27\x42\xa2\x6d\xf2\x3e\xe1\x2c\xe3\xf8\xff\xf3\x42\xcd\xd7\xd7\xfb\x90\x4a\x9b\x29\x1f\x32\xc6\xa8\xc2\x79\x9c\x37\xe2\x92\x0c\x72\x64\x8c\x49\x52\xab\x9d\x37\x4b\x6a\x6a\x4b\x6f\x1e\x73\x4b\x08\x37\xa2\xed\xbd\x62\x44\xe9\xd8\x36\x77\x52\xc3\x60\x83\xed\x89\x14\x33\x2f\x42\xb5\x64\xb8\x36\x4c\x06\x90\x06\xf0\xb5\x87\xa8\xb9\xee\xb8\xa2\xf3\x21\xed\x14\x08\x1f\x22\x9d\x9f\xf3\xd0\x19\x29\xe0\x2a\x6d\x67\x92\xf3\xf9\x59\x82\x7f\x80\x5c\xfb\xfa\x80\xb9\xa4\xdd\xe6\x12\xcc\x81\x9f\x1d\x43\x6a\x57\x59\x1b\xcb\x2c\x9b\x99\x00\x8d\xb6\xc8\x04\xe8\x0c\xa3\x27\x4a\x63\x59\xfd\x7a\x3e\xdc\x25\x91\xbe\x8b\x1a\x64\x7b\x0a\x5f\x1b\x62\x4d\x25\x28\x5f\x28\x7e\xe5\xd4\x71\xd7\x06\xbc\x10\xe9\xba\xb6\x03\x42\x4d\x55\xfb\xc4\x73\x7f\x0f\xa9\xc4\x50\xbc\x50\xec\x61\xc8\x8a\x72\x25\x66\xae\xd0\x04\x12\xac\xe4\x5a\xe2\x95\x48\x79\x04\xa4\x0b\x05\xad\x9c\x86\xff\x4a\x80\x91\x44\xf9\x0b\xd9\x03\x55\x50\x2d\x2e\x38\x4b\x3b\x48\xe4\x42\xf2\x3e\xfb\x4c\x5d\xac\x94\x6e\x59\xfe\xca\x5c\xa2\x96\x44\x8d\xb3\x88\xed\x85\xea\x0e\x26\x6d\x57\xe6\x8a\xf4\x3e\xe4\x28\x47\xe8\x5d\x50\xcd\x38\x3b\xe1\x55\x70\x34\x25\xb5\x5c\xcc\xdb\xac\x42\x85\x71\x41\x8c\x72\xfa\xc5\x0b\xe9\xff\xec\x38\x70\x21\x62\xb9\xaa\x30\x60\x5c\x05\x55\xb3\x75\xc7\xbd\xca\x89\x04\x8b\x9e\xc1\x85\xc4\x67\xee\x00\x87\x57\x0c\xef\xaa\x48\x44\xeb\x15\xc3\x85\xa7\xda\x2e\x70\x55\x52\x13\x75\x58\x39\x65\x91\x87\x0b\x4e\x3c\x4e\x4a\x73\xc1\x89\xc7\xb2\xe5\x05\x49\xcd\x01\x62\xd7\x92\xd4\x9a\x75\x29\x17\x04\xb5\x1a\xc9\x1f\xec\xeb\x74\x57\x4f\x09\x9a\x85\xe9\xe7\x27\x3f\xf0\x0b\x60\x19\xc5\x2f\xdc\x08\x02\xfc\x55\xe4\xcd\x55\x71\xf4\x45\xbe\x2f\x78\x5e\xd7\x10\x79\xbb\x10\x82\xed\x3a\x40\x17\x72\xe8\xd8\x77\xf1\x6a\x05\x81\x2e\x02\x18\x04\x49\xa7\x9d\xbd\x1a\xa2\x50\x25\x87\x5d\x6d\x47\xc1\x61\xc1\xaf\x81\xbe\x87\x01\x08\xc1\x71\xbc\x06\x64\xbd\xff\xd7\x08\xc0\xba\xea\x19\xb2\xfa\xae\xce\xfa\x15\x20\xc0\x12\x05\xaf\xc0\x1e\x1a\x49\x82\x8e\x69\x6e\x43\x56\x16\x79\xbc\x82\x65\xa9\xb5\xe7\x70\xb7\xb6\xaf\xf3\x15\x80\x99\x68\xcf\x85\x08\x6b\xdb\x96\x2e\x04\x50\x0f\x1f\xec\x3e\x10\x7e\xa6\x09\x2f\x39\x71\x26\x13\x86\x8e\x15\x8b\xc3\x5d\x83\xe5\x35\x35\x3e\xfc\x7d\xa6\x91\x9e\xca\x2b\x07\x41\x5c\x03\x55\x55\x24\x82\x5c\x10\xf3\x6c\x29\xba\xe0\xf9\xec\xbc\x21\x17\xf2\x09\xda\x7f\xf4\x1a\x04\xf1\x6b\x06\x0c\xb8\xd3\x0a\x50\xbb\xdd\xf5\xad\xae\xc9\x63\x22\x5d\xd1\xc5\x0c\xd3\x1e\x71\xc9\x75\x25\x0c\xd2\x49\xa4\xf5\x14\x26\x52\x8c\x49\x4c\xbb\x26\x37\xd5\x1d\x3e\x08\xc4\x57\x7b\xe7\x9e\x6a\x00\x86\x4f\x8b\x07\x5e\x94\x03\x5d\xba\xe6\xfa\x29\xb9\x25\x20\xee\x3f\xb4\x46\x6d\x66\x7c\x36\x16\x2c\x41\xb0\xd8\x7b\xee\x42\x06\xc1\x14\x6e\xc3\x28\xdd\xdc\x21\x65\x5b\x7f\xcf\x9c\xd8\x9e\x31\x88\x65\x78\xc6\x58\x61\xf8\x7b\x08\x4a\x92\xf6\xaf\x03\xd2\xbf\xe7\x03\xf5\x99\xf3\x35\x5f\x07\x8b\xbc\xfa\x39\xb0\x50\x82\xda\x45\x6d\x98\xb1\x16\xf9\xa2\x5f\x7b\x7a\x82\xb6\x9a\xf4\x9d\x28\x42\x5d\xfd\x3e\x88\xbf\x21\x7e\x22\x15\x82\x99\xc3\x89\xd2\x75\xa6\x53\x17\xfc\x41\xdd\x1f\x8a\xb1\xdb\x02\x7b\x5d\x9d\x45\xb1\x35\x01\xd4\xf3\xb4\x20\x75\x5d\x20\xee\x12\x73\x2e\x14\xc4\xb2\x62\xe3\x42\x6a\x3e\x97\xbe\xbb\xae\x9f\x2a\xdb\x1a\x81\x82\x96\xd4\xd6\xd7\xfd\x63\xbc\x52\xbb\xc2\xad\x41\x2b\xbc\xb9\xe5\x5e\xd2\x0d\xd1\xcf\x38\xb1\xe4\xa6\xf1\xfe\xe0\x40\xa1\x70\x0f\x48\x9f\x2e\x0f\x80\x73\xd3\x8d\x03\xa8\x80\x35\x8d\x03\x0f\x8a\x09\x49\x93\x72\x51\x70\x72\xc8\xc1\xc5\xd4\x32\xa6\x65\x14\x9c\x5c\xdc\xee\x5a\x82\xd3\xb0\x16\xf8\x5a\x82\xd3\xb4\xa5\xfc\x7a\xa8\x08\xd0\xb9\x7a\x06\x3b\xf0\x0b\xb8\x94\xbe\x3e\x80\x92\xf5\x35\x03\x9c\x54\x93\x5b\xb8\x51\xa9\x66\x7f\xdc\x1b\xab\xae\x6d\x6a\xef\xc8\x36\x98\xd4\x06\xfd\xee\xbf\xcb\x2a\x70\x53\x48\x92\xa4\x7a\xc3\xa5\x2a\xb4\x85\x37\x65\x24\x1d\xb2\x1b\x79\xfd\xaa\xc3\x11\xee\x04\xc7\x3d\x9d\xa2\x1b\xd5\xe0\x1d\x3a\x7b\xa3\x48\xa8\x7d\xae\x6e\x64\x9e\xa9\x0e\x26\xb8\x13\xf7\xdc\x6d\x94\x6a\xd0\x31\xbc\x29\x54\x89\x3f\xdd\xe9\x42\x87\x9a\x21\x6d\x5d\x22\x5c\x37\x6c\x5d\x4e\x64\x75\xe7\x9f\x64\xb1\x9a\x31\x52\x2a\x3b\xd6\xe6\x46\x8d\x2d\x97\xc0\xba\x91\x57\x66\x78\x02\x4b\x2a\x1b\x96\xee\xef\x8c\xb0\x15\xe1\xd4\x0d\xa1\xac\xba\xd6\xdf\x4d\xa9\x2c\xfc\xc1\x89\x54\x39\x5a\x01\xbd\xc8\x86\x9f\xdf\xec\xc0\x53\x46\x95\x30\x51\x8a\xbb\x80\xc5\xcb\xfa\x72\x53\xfb\xe5\x12\x8d\xf7\x92\xdb\xb2\x2d\x11\x37\xb5\x5d\x32\x7e\xdc\x2c\xfd\xee\x2c\x28\x37\x42\xd6\x1c\xde\x7a\x23\x4d\xb3\xa3\x8f\x6f\x04\x6c\x4f\xd1\x9e\xbb\x42\x88\xf8\x7f\x18\x3b\x93\xb3\x69\x79\x5e\x09\xa7\x72\x42\xc0\xb3\xbd\xf9\x73\x81\x06\xf2\x0f\xe1\x5c\xbe\xf5\x7c\x55\x2c\xdf\xa5\xbb\xc1\x78\x94\x64\x59\xaa\x92\x2c\x7e\x2a\x5d\xf0\xfb\x35\x64\xa9\x66\xb9\xc5\x2c\x4b\x76\x3c\xb8\xab\x7c\x5c\x78\xf0\x56\x55\x63\x40\x3d\x90\x5c\x98\x2d\xe7\xc1\x7d\xe5\x80\xa0\xa7\x41\x90\x34\x5d\x21\xd2\x56\xfb\xf0\xe9\x0c\xba\xb7\x45\x8f\x16\xe9\x7d\x90\xf7\x0c\x24\xf3\x90\xee\xf4\x19\xf3\xf1\x02\x5e\xa1\xef\x4f\x48\x35\xbc\x2a\xc2\xd7\x63\x57\xcb\x83\x11\x60\xa7\xec\x13\xbe\x1e\xf7\x10\x57\x8e\x49\x2e\x9f\x49\x83\xfd\x01\x38\xbd\x7d\x09\xf9\xac\xbd\xcc\x8c\x5d\xff\xc4\xfd\x93\x83\xc5\x9f\x85\xa1\xea\x11\x58\xc4\xa5\xe9\x44\xf6\x6c\x0d\x3e\x7c\xac\x7d\x88\x12\xae\x3e\xf7\x3e\x2b\x5a\xa0\x2f\x6c\x15\x5d\xb3\x24\xd3\x73\xb2\xf0\xdd\x82\x33\xf8\x0b\xe5\xdb\x78\xa0\xc5\x72\x4c\xea\x43\x66\xd1\x67\xeb\x06\xc2\x88\x4c\xd1\xe7\x0a\x0d\x28\x63\xfd\x09\x67\x89\x0c\xad\x27\x9c\x25\x3a\x03\x3e\x38\x4b\xaa\x8d\xf1\x07\x0c\x5e\x43\x41\x3f\x41\x0b\xe1\x43\xdf\x73\x61\x24\x78\x5a\xaf\x68\xa2\x9a\x7c\xb1\xd0\x97\xbf\xc8\x32\x99\x7e\x1f\x3b\xc8\x87\xc0\xe7\x42\xe9\x79\x73\x46\x20\xb2\xb4\xec\xf3\xa3\xc9\xd2\x79\xcf\x2f\x9a\xec\xad\xb3\xd5\xfc\x70\xbe\xea\xb3\xd5\xfc\xb4\xe3\xf6\xf9\xc5\xa8\xea\x94\xf8\xfc\x62\x2b\xb8\x46\x58\x82\xab\x2b\xf8\x11\x42\xe2\x32\x4a\xce\xa7\xb6\xe7\xb7\xb7\x86\x11\x1a\x9f\x5f\xcc\xb3\xb6\xc6\x1d\xd3\xe0\xdd\x4f\x7a\x93\x79\x1b\x1e\x2e\xc5\xaa\x0d\xe8\x87\x5b\x31\x3b\x46\x1f\xf2\x9b\x1c\x7d\xf7\xdc\xe4\x15\x7b\x73\xdd\x7f\x4c\x97\xe5\x9f\x74\x4e\x38\x74\x3c\x27\x5c\x89\x7d\x56\x01\xc9\x4d\xcd\x3a\xe7\x8e\xad\xae\x01\x08\x33\xc3\xf2\x14\x7f\x8e\x13\xde\x1e\x00\xec\x9c\x5c\xf9\x3c\x31\x45\x1e\xd1\x87\x60\x42\x8f\x38\xfe\x9c\xfa\xf9\x00\x2e\xc8\x4f\x39\xb6\xa2\x05\x72\xd0\x3e\x78\x3c\x9e\x85\x7f\xc6\x2f\xfc\xb8\xef\x77\x8b\x80\xfd\xf4\xfb\x00\xda\xf9\x0c\xf6\xbc\xd1\x42\xd9\x8e\xcf\x9f\xbf\x46\x13\x00\x1b\x59\xee\x7e\x01\x76\xb3\x4f\x05\xc0\x09\x58\x1e\xbf\x2f\x5c\xaf\xff\x95\xdf\xe3\xcf\x16\x6d\xfa\x01\x34\x46\x89\xdf\x17\xe6\x71\x53\x83\xbc\x07\x47\xb2\xe1\x72\x7c\x60\xa8\xcc\x0d\x8e\xd6\xe0\xcb\xa5\x99\xd3\x9d\x5e\xd4\xbe\x69\x91\x5f\x98\xbb\x0c\x44\xf3\x6e\xad\x3e\x8d\xd0\xf1\x06\x2f\x82\x74\xe8\x1b\xbc\x08\xde\xa8\x2f\xe8\x70\x26\xa0\x79\x03\x1d\x4e\x76\xc8\x9b\x43\x52\xb8\xc2\x68\xb0\xdf\x3f\x29\x77\x95\xf1\xcd\x68\xd3\xbc\xa0\xc3\x7d\xbf\x17\x72\xc0\x0d\x0a\x69\xba\xfc\xc3\x4b\x85\xea\x61\x44\xfb\x59\x32\xbc\x25\xf2\xb3\x34\x64\x90\x66\xd9\x03\xf6\x16\xec\x10\xe9\xd8\xb7\x74\x2a\x74\x39\x56\xdd\x72\x05\x93\x20\x4d\x0d\xc1\x56\xda\xd5\x80\xe6\x6f\x21\xba\x4e\xf2\xfd\x05\xfe\xb7\x7e\x6a\xac\xe9\x7f\xff\xb7\xbc\xee\x5f\xa8\x11\x7c\x65\xf4\x86\x27\x63\x79\xd9\x84\x9a\x97\x52\x7d\x5b\xb0\x34\xaa\x0b\x8d\xc0\x26\xa9\xa0\xb7\xc1\xfa\xd3\x5c\xe6\x60\x2d\x3b\xe4\x6d\x20\xa7\x6a\xdf\xbc\xe1\x4a\x70\x8a\xd8\x4b\xfc\xb9\xe9\x22\xde\x1e\xd2\x56\x15\x46\xf6\xd1\xca\xfe\x61\xb7\xe0\x33\x88\x44\xca\xd4\x95\x5d\x43\x07\xdd\x55\xeb\xa2\x93\xda\xe2\x69\x0c\x82\x6f\xe9\xac\xb7\x43\xfe\x29\xd9\xf8\x0e\x50\x2e\xbc\x11\xe2\xda\xca\x21\xf7\xef\xd8\x4d\x5c\x52\x10\x6f\x5c\x5b\xad\xe2\x1a\xc0\x7d\x3e\x5c\xc6\x39\xe0\x75\x32\x26\x15\xf8\x0b\x7f\x6c\x04\x6a\x12\x98\xbf\x76\x70\xbf\xe3\x8a\x07\xd4\x27\xfc\x15\x66\xa5\x79\x47\xf4\x41\x63\x30\x0f\xe2\x38\xf4\x85\xa0\xbb\xea\xfe\x3f\x06\x4d\xa7\x9e\x77\x42\x86\xe8\xb5\x3d\x61\x8f\xf4\x34\x10\x8d\xe3\xe4\xd0\x77\xc6\x66\x53\x83\x66\x34\x48\xeb\x68\xde\x94\xb5\x8e\x26\x5e\x3f\xc9\xcb\x77\x41\xb6\xe8\x49\xc1\xb4\x31\xd1\xe0\x7b\x1e\x74\x48\xcf\x9f\x89\x2c\xea\x7f\xba\xc1\x79\xcf\x0a\x2c\xac\x46\x07\x2b\xc6\x89\x30\x6f\x5c\x28\x2d\x0f\xc7\xb9\xe0\x51\xf4\xd7\xc3\xf4\x54\xf9\x22\x79\x5f\xe6\xf8\x0b\x33\x77\xb5\xe5\xf5\x12\x32\xe9\x55\x7f\xb1\xb1\x2d\xaa\x02\xfb\xc5\xb2\x92\xdc\xa7\x43\xfa\xef\x05\x29\xd7\x66\xd6\x8b\xc9\x61\x8f\xde\xfb\xe3\xfa\xbf\xbb\x1c\xf5\xa9\xfd\x5b\xbd\xb7\xe5\x5d\x19\x10\xfc\x9f\xff\x1b\xe8\x4c\x7a\xff\x8e\x88\x4e\xff\x7f\x01\x2d\xe3\xf2\xc3\xf7\xd5\xbd\x1b\x39\x23\x47\xc3\x8b\x3e\x76\xe2\xcf\xfb\xf0\x7d\x6f\xea\x07\xe0\x4e\xd7\xff\x10\x46\xe4\xd9\x7e\xa2\x7e\x97\x91\xac\xde\xe3\xc0\xc3\x7e\xb6\x2c\xf0\xb0\xe6\x3e\x7d\x39\x41\x1f\xb2\x77\x5e\x32\x91\x9a\x33\xb9\x5e\xe0\x5d\x8d\x96\xff\x12\xdd\xde\x0c\xe9\xff\xbe\x41\xb0\xab\x1e\x70\x39\xd1\x64\x52\x8d\x83\x68\x75\x35\x79\x1c\x47\x9c\xfa\xa7\xca\x80\xeb\xfc\x37\x25\xe3\x20\x9a\xbd\x89\x79\x69\x1c\x07\xcc\xd6\xff\xd9\x3c\xe3\x38\x62\x8b\xea\x7f\xb2\x7b\xdb\xf1\xdf\x91\x6e\x1c\x64\xf7\x1e\xff\x69\xfc\x71\x24\x50\xab\xff\x3b\x57\x8f\x23\x61\x01\x0c\x3f\xbf\xa8\xa0\xba\x46\xa4\x46\xf6\x03\x08\xfb\xec\x0a\x7e\xf1\x82\xbf\x70\x13\x14\x98\x55\x7e\xe2\x01\x0d\x42\xa2\xcd\xff\x49\x81\x71\x64\x76\xe5\xd2\xff\x90\x57\x0b\x62\x69\x1c\x39\xbc\xa0\x7e\x9e\x26\x2f\xfd\xbf\x35\xe6\xd2\x91\x6d\x1c\x71\x5b\x21\xa0\x95\x71\x14\x48\x80\x97\xba\xc0\x6d\x84\x3c\x6e\xe3\xe0\x36\x42\x77\xab\xe3\xe0\x14\x2b\x5f\xcc\x38\x2a\x34\xc8\x43\x3d\xac\x90\x5f\x2f\xf5\x10\x7d\x27\xbb\x70\x1c\xf8\xde\xc5\x0e\x3a\x8e\x16\x93\x32\xf5\x41\xf4\x9f\x5c\x6c\xe3\xd8\xc7\xdc\x29\xa0\x96\x71\x34\x10\x87\x9a\x1a\xb4\xf5\xdb\x4a\x4b\x1f\xc0\x53\xbe\xbc\x2a\xb6\x3a\x9b\xca\xa0\x1e\x47\x0f\xe2\x1a\xbd\xdf\x43\x55\xe8\xfb\x3d\x6e\x57\xfc\x3e\xbe\xa1\xa2\xfa\x21\x62\xd4\x55\xf8\x38\x50\x6e\x2d\x1d\xae\xf0\x8d\xb8\x99\xff\xca\xe0\x92\x68\xa7\x8c\x63\x80\xb8\x98\xf4\xfc\x00\x99\xe5\x50\x03\xf0\xa4\xb7\xe4\x2f\x84\x2b\xdd\x2d\x1c\x64\x34\x7b\x15\x02\x33\xd2\xd2\xa1\x26\x42\xcd\x58\xbc\x6e\x81\x19\xd1\xde\x1c\x07\xd9\x55\xba\x81\x1a\xc7\x0c\xbc\x3e\xbd\x0f\x35\xa3\x00\x89\xc6\x31\xff\x10\x63\x55\x7e\xb8\xee\xd6\xff\x78\xc6\x85\x83\x32\x0e\x88\xa4\x5b\x72\x97\x17\xd8\x0d\xc9\x65\xf2\x1e\xbd\x6a\x57\x60\x40\xfe\x0b\x92\xcd\x38\xd6\xe2\xe8\xa2\xd6\xaf\x40\xa4\xd4\x70\x05\x2b\xf5\xa1\xd6\x06\xa8\x67\x52\xeb\x08\xc6\x2f\x96\x3b\x24\xe2\x0a\x90\x72\x1c\x44\x1f\x88\xb6\x79\x1c\x20\x71\x64\x8b\x11\x4e\xdc\x2d\xb9\xbb\xe4\x51\x75\x6f\xea\x2b\x78\xa1\xab\x7f\x28\x20\x63\xa8\x45\xfb\x00\xdd\x3f\x2b\xe0\x8a\xd4\x2f\xb5\xe8\x0a\x57\x92\x86\x87\x78\x85\x96\x3c\x21\x64\x62\xe9\x46\x70\x1c\xfb\x84\x9d\x9b\x05\x57\x10\x31\x5a\x74\xfe\x62\xc2\xf5\xff\xd6\x7e\xa5\x79\xc9\xfd\x82\x4a\xda\xcf\x93\xc4\xdf\xd5\x20\x68\x14\x85\xd6\x34\x8e\x1f\x82\x30\x79\x93\x90\xd9\xa5\xeb\xb9\x71\xec\xe3\xf1\xfc\x8c\x39\x21\x9b\xcb\x52\xe0\x86\x87\x71\xe9\xf9\x3b\x7a\xd8\xd5\x43\x58\x08\x9b\x95\xc1\xcd\xc5\x81\x77\x31\xc7\x4b\xb1\x16\x8f\x03\x37\x77\xfb\xc8\x21\x50\x3f\xe5\xb9\x19\xc7\x83\xcb\xd3\x73\xb2\x8f\x97\xbd\x7b\x49\xc2\x58\x73\x78\x9b\x3f\xd1\xa2\xe1\x2f\xc6\xed\x8e\xcb\x80\x16\x7b\x19\x42\x3b\x28\xcc\x98\x71\x3c\x21\x17\x3c\x8b\x04\x91\xca\xf5\x3f\x0e\x00\xd5\x9b\x45\xf3\x0b\x84\x70\xd1\x24\xe0\xd5\x6e\x1f\xfd\xb5\x0f\xa0\x79\x79\x56\x51\xb1\x42\xa8\x1a\xe9\x08\xaf\x77\x56\x99\x9b\x6c\x49\xce\x44\x6a\xae\x7b\x90\x12\x81\x4c\x1a\xa2\xb4\xcf\x93\xa9\x29\x2c\x65\xa4\x04\xf1\xdd\xa7\xcc\x36\xfd\xcf\xc8\x19\x29\x05\xa2\xf0\xe1\x1a\x18\xd4\xaa\x16\xa1\x30\x95\x10\x38\x12\x00\xe6\xc2\x1d\x1b\x69\x9f\x40\xa7\x27\x21\x65\xee\x91\xa5\x5c\x12\xd9\x5e\xf2\x89\x8c\x14\xb9\xc0\x5a\x56\xa9\xc4\xce\x53\xfd\xa0\x83\x0b\xa5\x79\xa4\xba\x05\x9b\x6e\x5f\x46\xaa\x8b\x03\xad\xea\x07\x3c\x42\xf8\x28\x23\x71\xed\xdc\x84\x30\x32\xd2\xd6\x5e\xf9\x70\x03\x00\x8f\x68\xb2\xca\x47\x8a\x7b\xe7\xa2\x17\xa0\x1d\x56\x64\xec\x48\x0d\xe1\x94\xd5\xe2\x16\x15\x74\x3f\x40\x0e\xb9\x84\x47\xda\xa7\xb1\xf5\xf9\x22\xa7\xb1\x26\xb7\xc4\x48\x5b\x7f\x65\x81\xcc\x8c\xc4\x69\xac\x65\x6d\xd6\x44\x7a\xb0\x10\xf4\x46\x82\x9a\xb8\x7a\x99\x74\x26\xc9\x83\xd4\xd7\xff\xfe\x6f\xac\xcf\x17\x89\x34\x95\x11\x93\xfa\x5f\x93\xfd\x00\xbe\x23\x6d\xde\x04\xb0\x96\xe2\x09\x46\x02\x58\x4b\x97\xdb\x23\x8d\xf8\xa0\xc6\x88\xc3\x57\x13\xa6\xc8\x48\x23\xa6\x41\x83\x4a\x0c\x61\x71\x05\x7f\x19\x64\xea\xd1\xd6\x47\x4e\x5f\x1e\x69\x22\x1c\x24\x8d\xd2\x02\xe5\x5e\x56\x57\x0a\x7d\xa4\x2c\xf8\x91\x42\x1f\xb5\xfa\x2f\xfa\x26\x81\x62\x29\x84\x92\x91\x56\x74\x47\xc3\x41\xbc\xdf\xfc\x7c\x8d\xe0\x68\x2f\x7a\xd2\xcd\x84\xe3\x30\x12\x60\x52\xdd\xf5\x6d\x7d\xb4\xba\x1e\xbf\xb0\x7f\x5c\x5d\x68\x93\xe2\xf9\xb9\x62\x78\xfd\x42\x8d\x07\xfc\x03\xab\xde\x6b\x70\xab\x93\x2e\x40\xc2\x91\xae\x67\x9f\xad\x2c\x07\xb6\x36\x58\xd5\x0d\xfc\xc5\x17\xfd\x85\x5f\x40\x31\x69\x7c\xb7\x3a\x18\xba\xd5\x1d\x09\x12\xdc\xe6\xf9\xbc\x71\xbd\x0d\x3d\x0f\x23\x87\x39\x91\x46\x22\x2f\x57\x18\xfb\x23\x01\x03\x61\x8b\x27\xdd\x24\x65\x36\x57\xc8\x92\x2c\xae\xf0\x65\x82\x55\x7e\x62\x88\x5d\x06\x79\x48\x2a\x3d\x6d\x65\x30\x04\x3c\x34\xd2\x83\x02\x2e\x2e\x83\x45\xdb\xfd\xfe\xb6\x21\x0f\xa9\xb3\x84\xa8\x3e\x3c\x20\x84\xf3\x77\xef\xfa\x17\xda\x03\xef\x80\x38\xfc\x14\xef\xb9\x7d\xf8\x59\xd5\x1d\x8e\xc3\x8f\x82\x52\x47\x06\x1b\xc9\xe7\x80\x1c\xe4\x5f\x92\x1b\xd0\xfc\x4f\x61\xc3\x0e\x48\xf4\xa7\xcd\xec\x1c\x27\x0d\xb1\xe8\x8f\x0c\xd0\x90\x60\x6f\x46\xce\xb1\xea\xa6\xca\x2b\xf0\xff\xfc\x00\x21\x38\x92\xad\xc1\x79\xdf\x94\x82\x30\xe0\xbc\xcf\xcb\x4d\x2c\x00\x63\xfa\xff\x2d\x8c\x75\x9d\x35\x82\xbf\xbe\xb9\x85\x25\x48\x90\x96\xca\x00\x2e\x26\x57\x47\xbc\xbc\xec\xfa\x5c\xf6\x49\x66\xb9\xba\xf0\xd8\xf8\x6b\xa0\x34\x24\x57\x7f\x91\x82\xe0\xe7\x03\xdf\x50\x73\x08\x1f\x7e\x51\x06\xc5\x80\x0f\x7f\xc8\x5f\x32\xe0\xc3\x6f\xc3\xff\x93\xd1\xa6\x7c\xb2\x91\x89\x36\x3f\x0e\x97\x19\x0e\xc9\x61\xd8\xeb\xbb\xb8\x76\x06\x04\xf4\x5d\xa1\xd7\x23\x83\x8f\xdc\x3c\xde\xdc\xce\x35\x6f\x3b\x28\xe8\x57\xf5\x04\x10\x44\xa4\x34\x99\x91\xc9\xfc\x6d\xde\x05\xc1\x51\x2f\x1f\xc4\xc8\x7f\x90\x8e\x5a\x65\x19\xe4\x09\x85\xb1\x8e\x4c\xf8\x79\x13\x00\xf0\xc8\xc4\x9f\x4f\x2f\x12\xe2\xcf\x9b\xb2\x26\x47\x86\x38\x55\xd7\x20\x23\x43\x9c\xfa\x19\x44\x74\x8d\x92\x10\x06\x34\xf8\x59\x17\xc9\x23\x68\xf0\x5b\xfd\x54\x80\xb0\xf4\x32\x04\x69\x42\x80\xb5\x03\x1a\xfb\x6e\x65\x95\x61\x7a\x50\x0e\xdb\xc8\x83\x9b\x79\x1d\x5d\x82\xb6\xde\xaa\x23\x0f\xae\xcb\xbc\x0a\xb7\x2a\x99\x9f\x6d\x11\xbc\xa7\x52\x96\x39\x80\x89\xbc\x4a\x02\x22\xd9\x83\xce\xd1\xa7\x79\x48\x81\x4b\xd4\x45\xd2\xc8\x33\xc6\x5c\xba\x29\x93\xf2\x26\x2c\xf5\x91\x67\x8c\xf9\x3f\xf1\xde\x8c\x3c\xa3\xfb\x6a\xee\x0a\x6a\x60\x75\x6f\x41\x21\x23\x41\x03\xe7\x7c\x57\x56\xcb\xc8\x01\xa9\xec\xf9\x39\xc7\x36\xb0\xa4\x49\x83\x12\x3e\x7b\x11\x13\x79\x6d\x93\x30\x9f\xd1\x5a\x59\x60\x19\x5e\x2d\xdb\x2f\x79\x1f\x7e\x9a\x6d\xc6\xcc\xe5\xa1\x4d\xc2\xfc\x5f\xfe\x9b\xbe\x78\x75\xf0\x62\xf4\x85\xbf\x58\x6c\x0d\x30\xec\x9a\xba\x78\x1a\x79\x2b\xa3\xf6\xf9\x60\x1c\x4d\xa4\xcc\xa0\x88\x6f\x9f\x1e\xfd\xe2\x16\xc7\xef\xb3\x4d\xa5\x3a\x20\x6c\x6f\x36\x01\x21\x6c\x6f\xb6\x7e\x82\xb0\xbd\x35\xaf\xa8\xc0\x90\xb0\x64\xe6\x22\xaf\x7d\x36\xf6\xd6\x6e\xcd\xe6\x0e\x84\xeb\x69\x5a\x0e\x72\xd6\x69\xcd\x92\x85\xc3\x4e\xf9\x7c\x21\x82\xa9\xfd\x85\x68\x82\x67\xe1\xa1\x09\xde\x34\x5c\xbe\xd9\xc5\x01\x23\x7a\xfb\x8c\xe9\x3e\xbb\xb4\xcf\x26\x78\x42\x19\xf8\x7f\x08\xb4\x3d\xa9\x81\x5b\x24\x87\x02\x8c\xe8\xcd\x06\x1a\x8c\xe8\xf5\xd3\x63\x70\x06\x8b\xe7\xe4\x8d\x11\x50\x8f\x5f\xe6\xc4\x92\xec\x65\x51\x48\x5d\xc2\x68\xde\x6c\x90\xe4\x37\xa0\xb0\xd4\xde\x17\xcf\xde\xe7\x7f\x5c\xd3\xd3\xf5\xdd\x90\xad\xfc\xf7\xfd\x60\x34\x6f\xca\xa8\x18\x30\x9a\x37\x9b\x54\xc1\x68\xde\x84\x5a\x34\xca\x11\x2d\x2c\x2a\x9f\x94\xfd\x3f\x16\x8c\xf6\x4d\x49\xf1\xfc\x50\x19\x1b\x4b\xc4\xb4\xa3\x70\xd7\x66\x9b\x0a\x92\xf3\x24\xf0\xd9\x51\x52\x74\xb9\xab\xcc\x55\x98\xe4\x5a\x90\x9c\x2b\xf0\x6d\xc0\x71\xde\x6c\xb4\xc3\x71\xde\x7c\x92\x82\xc3\xbc\x59\x7d\x07\x87\xb9\x7d\x40\x70\x94\x37\xa5\x3c\x0c\x48\xc9\x8b\xcf\x8a\xe5\x0f\x47\xd0\xe5\xc8\x88\xf4\xfb\x3f\xde\x57\x7b\x73\x30\x9d\xe8\xa8\x56\x72\x44\x47\xaa\x82\x42\x83\xaa\xcb\x95\xb0\x69\x97\x5b\x54\xa0\x21\x85\x79\x73\x34\x0d\x69\x09\x94\x06\x7d\xb1\xb0\xa8\xab\xff\x67\x51\xcb\x0e\x86\x05\x3d\x35\x01\xa6\x8d\x52\x70\xf7\x6a\x1b\x41\x83\x9e\xd6\xf4\x0b\x2f\xc1\x1f\x9a\xa2\x1a\xab\x46\x56\x5e\xe1\xaa\xce\x6e\x33\x78\xd1\xa7\x50\x1a\x06\xb4\xe8\xd3\xa2\x0c\x1a\xf3\xa6\xe0\xc2\x01\x4d\x79\x53\x10\xc1\x28\x2d\x24\x85\x64\x7f\xc1\x04\x28\xee\x72\x63\x51\xc8\x64\x80\xa7\xbc\x75\x69\x4b\x68\xc6\xc7\xf4\x07\x89\xd1\x6d\x22\xfd\x19\xf0\x8c\x2f\x91\x74\x8f\xa0\x19\x4f\xc9\x15\x30\x8b\xed\x5f\x42\x04\x46\x89\x5b\xba\xe1\x97\x9f\xf8\x9a\x66\x84\x90\x5f\x9f\xd6\xcb\x08\x0a\x39\x97\xa3\xbf\xf2\x1d\x43\x52\x3e\x0f\x2f\x7a\x60\xa2\xec\x12\x09\xd2\xf2\x26\xc0\xd2\x51\xe2\x9a\xce\x8b\x2a\x58\x97\x0e\xbf\xb0\xe2\x05\x8d\xd8\x56\xef\xf3\xb3\x0d\xc7\x36\x83\x3f\xdb\x66\x70\x0b\x91\xdc\xc4\x3b\x2a\x50\x27\x07\xfb\xaa\xf9\x0b\x6f\x3c\xa0\x1a\x27\x0e\xf7\xe4\x72\x85\xff\x46\x5f\x98\x83\xb8\x05\xff\x3f\xa3\x02\xad\x02\x92\xe6\x8b\xe7\x28\x2c\x88\xfe\xf9\x21\xf0\xdf\x5d\xde\x26\x90\x62\x6e\x07\x3c\xe5\x3d\xc9\xa6\x82\x96\x3c\xdb\x99\x57\x56\x64\x3c\xa8\x0b\xd8\x00\xc9\xf3\xb8\x6d\x80\x2e\xbc\x97\x01\xeb\xb7\x71\x7b\x47\xb0\x7e\x37\x9f\xbe\xa0\xfd\xce\xc3\x7b\xff\xa4\x41\x96\x55\xd8\x00\xcb\xeb\x22\x80\x08\x65\xc9\x16\xa8\x35\xbf\xd2\xf2\x82\xf9\xd8\x83\xce\x89\xd5\xf7\x28\xb0\x7c\x77\x7b\xc6\x20\xf1\xee\xbe\xe9\x09\x12\x6f\x21\x1d\x0c\x18\xb8\xbb\xfd\xd7\xe5\x17\x1f\xb4\xac\xf8\x45\x97\xd5\xa3\x6d\x04\x74\x05\x9b\x0f\x18\xb8\xbb\x62\xc5\x47\xf9\x9d\x38\x5d\x34\x24\x30\x72\x2b\x9f\x7b\xc0\xc8\x9d\xbe\xcb\xe4\x17\x63\xac\x59\xc7\x48\xe8\x32\xee\xa1\xe4\xee\x76\x16\x16\xc0\x88\x75\x9d\x39\x60\xdc\xee\xba\x2d\x1e\xc1\xb8\xdd\xba\x65\xcd\x83\xca\xb5\xf0\xda\x27\xd8\xae\x50\xbc\x51\x9e\xd8\x3a\x9e\x65\x8e\xb0\x76\x95\x95\x27\xd6\xa1\x9b\xf8\x44\x13\xd4\x24\xe2\x76\x0f\x2f\x74\xe0\xa9\x92\x55\x1e\xf7\x73\x1f\x8d\x13\x47\x54\x65\x00\x8c\xba\x75\x68\xb1\x3b\xb2\x1e\x35\x1e\xe8\xfa\x81\x10\x1f\x8d\x7a\x85\x98\xa8\x65\x97\xb9\x56\x90\xda\xaf\x47\x4c\x7b\x55\x99\x41\x96\xf8\x83\xcf\xba\x58\x5e\xd7\x04\xd4\xeb\xe1\xff\x2f\x9e\xff\xaf\x07\x75\xeb\xc4\x6a\x1d\x59\x33\x63\x28\x3f\x15\x6c\xd3\xdd\x17\x8c\x35\x73\x02\x1b\x6e\x20\x67\x64\x5f\xb6\xd5\x38\x23\x2b\xea\x69\xc0\x4f\xdd\x7d\x57\x14\xfc\xd4\x4d\xb0\xde\x03\x7e\xea\xee\xeb\xb7\xe0\xa7\x6e\x8a\xc4\x1d\x35\xb3\x10\x24\x32\x2b\x61\xa8\x6d\xc8\x9a\xac\x9c\xaa\x7d\x01\x58\x0b\x41\x3f\x1e\x14\x92\xb0\x45\xd0\x31\x60\xb8\x2e\x0a\xf9\x1f\x10\x5c\xe7\x55\xfd\x3f\xe1\x20\xc3\x65\x00\x2e\xa4\x32\x82\xbf\xba\x29\x48\x73\xd4\x00\xf8\x95\xc8\xad\x15\xc4\x0c\xc9\xe8\x1a\xe0\xb5\xb2\x66\x2b\x51\xa7\x6d\xfc\x9b\xd2\xa9\x01\x96\xa8\x55\x08\x9f\xf4\x7e\xdb\xd5\x01\x81\x29\xe9\x56\x39\xf5\x2e\x1d\x10\x6b\x8b\x49\x57\xfb\x71\xb0\x0a\xde\x62\x04\x01\x75\x13\xbd\xd6\x80\x80\xba\xe8\xde\x79\x40\x40\x6d\x72\xd7\x51\xe3\x7e\x50\x02\x1e\xbe\xe9\x39\x3e\x65\xe2\xe3\x3d\xa5\x1d\x04\x67\x49\xbf\xba\xb5\x62\x9a\xee\x00\xd7\x79\xca\x74\x1c\x35\xa0\x70\x3d\x41\x03\x6c\x45\x8f\x67\x68\x20\x05\x33\x0e\xe8\xa5\x53\x1b\xde\x47\x84\xc9\x2a\xda\x7a\xd4\x00\xfd\x97\x8a\xaa\xa1\x82\x86\x37\x52\x20\x6c\x7d\x1e\x38\xe3\x01\xb5\x29\x40\xff\x93\x5f\xa0\x4d\xc9\x5f\x8c\x36\x49\x22\x57\x20\xb8\x84\x5a\x32\xea\x8a\x51\x57\x9b\x17\xa3\x3e\xbd\x37\x03\xa3\x5f\x12\xb6\x06\x84\x96\x47\xed\x04\x6e\xc9\x2d\x08\xc4\x7d\x79\x5b\xa0\x6f\x9e\x87\xb7\x26\x2a\xc2\xf6\x35\x54\xc9\x4b\xc1\x77\x23\x78\x88\xc5\x4e\x35\xa0\x11\x5e\xc5\x0d\x84\x75\x2e\xbb\xbe\x70\x49\x2a\x1c\x73\x40\x12\xbc\xac\x12\x6a\x40\x68\xe9\xa0\x5b\xc9\x88\x75\x8a\xd6\xa8\x01\x1f\x5f\x5c\x41\x0c\x41\xf5\x27\xf7\x10\x88\x5a\x7e\x04\x4b\xb0\x53\x9e\x06\x2c\xc1\x7d\x59\xbe\x91\xca\xe1\x9c\xad\x01\x4b\x70\xf1\xcd\x71\xb0\x04\x1f\x9e\xd7\x07\x37\xb6\xce\x6d\x41\x12\xec\x38\xfe\x01\x49\x70\x19\x1e\x15\x0e\x7e\xd3\x7b\xf7\xc1\x7d\xe0\xdd\xf8\x06\xfb\xaa\xfe\x7f\xa3\xc2\xee\x1f\x08\x59\xb4\x88\x7d\x83\x41\x4b\x2d\x78\xa3\xc2\xff\x46\x11\x16\xde\x2a\xdc\x93\xd1\x80\x21\xb1\x3b\xa7\x1d\xdb\xa4\x16\x8b\xc1\x68\x20\x8d\x38\x24\x70\xc0\xc2\xdb\x95\xe2\x3a\x5a\xc4\x70\x28\xf0\x74\xb4\x04\x8e\x87\x16\x16\x34\xbd\xc9\x11\xd6\x03\x9e\xde\x6e\x37\x26\x24\xbb\xc9\x27\x1f\x48\x76\x9b\x10\x82\x06\x24\xbb\x45\x44\x31\x03\x8e\xdd\xe4\x50\xda\x01\xc9\x6e\xb1\x15\xdf\x60\xe3\xf1\x55\x24\x9c\xba\x43\xa8\x12\x03\x4e\xdd\xe4\x00\xbb\x01\xa9\x6e\x29\xda\xdf\x2d\x07\x6e\x86\xbe\xc8\xd9\xad\x7a\x0c\x48\x7e\x70\xdc\xe5\x80\x75\x37\x29\xa5\x67\xc0\xba\xdb\xd7\xa7\x02\x54\x7d\xf7\xff\x8c\xaa\x22\x43\x47\x8b\xb8\x4a\xe9\xfa\x06\x36\x88\x4f\x36\x2d\x40\x14\x87\xcb\x60\xf6\x4a\xcd\xb5\xad\x94\x8a\xb8\x92\x07\xac\xbd\xc9\xb1\xb1\x03\xda\xde\x64\x53\x00\xda\xde\xe4\x48\xce\x01\x6f\x6f\x9e\x6e\x62\x00\x96\x4d\xff\xbf\xe2\x05\x7f\x62\x0b\x00\x41\xf9\x8f\xa0\xed\x5d\xf3\x9f\x42\x06\xe0\xf4\xed\xbe\x5d\x86\xd3\x37\x39\x52\x75\x34\x50\xee\x85\xfb\x3f\x82\xe4\x57\x0c\x21\x03\x92\xdf\x6e\x91\xdc\xb6\x52\xec\x96\xd9\x90\xfc\x66\xa1\x4e\x8e\x16\xf7\x84\x8a\x27\x1c\x0d\x90\x79\xf1\x06\x0c\x58\x80\xcb\x70\x7f\x81\x88\x17\x57\xda\x08\xd2\x5e\xbb\xc1\x20\xed\x6d\x87\x67\x00\x35\x38\xbc\x91\x1a\x24\x95\x6e\x30\xec\x7a\x82\xb1\x1c\x50\xf4\x0e\xdb\xf8\x0d\x76\x9e\xee\x35\x16\xe9\xa1\xee\x10\x90\xf0\x3e\xd5\x40\xd9\x3b\x7d\x23\x02\x03\x6f\xff\xb4\x9f\x88\xcc\xa6\x78\xc9\x01\x03\x6f\xf2\x95\x1b\x0c\xbc\xe9\xbb\xe6\xb6\x9e\x1c\x0a\xc7\x1e\xc1\xc0\xdb\x96\x14\x2f\x14\xbc\xd9\xd1\x59\x0d\xdc\xc9\xe1\x26\x0f\xcc\x45\xff\x0f\x84\xbc\xb5\x60\x9b\x91\x94\xac\x21\x98\x70\xaf\x4a\xc5\x40\xd1\x3b\x7c\x98\x6e\x33\xee\xed\xf4\xfc\x42\xd4\xd8\xa5\x01\x47\x6f\xf5\xb1\x05\x8e\xde\x71\x58\xb2\xc4\x35\xe3\x92\xcb\x03\x8e\xde\xe1\x2b\x03\x28\x7a\x53\xfb\xcc\xf2\x3e\xda\x8d\xc3\x4d\x08\x2e\x1d\x37\x19\x8a\xde\xb6\xe4\x26\x82\xa2\x37\x0d\x0b\x2b\xb8\x74\x8a\xf7\x1d\xf9\x29\x87\xac\xbb\xb6\x62\xe7\x7b\x90\x48\x31\x75\x38\x17\x14\xbd\x43\x51\xf4\x03\x86\xde\xfa\xd9\xe9\xa4\x98\x36\xb1\x8f\x8e\xb6\x15\xf9\xf8\x2c\x04\x00\xd7\x3c\x29\x20\x8d\xf8\xc8\x0f\xa3\x6e\xb5\x41\x0c\xa3\xee\xb0\x0a\xfb\x63\xd4\xb5\xbb\xf5\x8f\x52\xf7\xd3\x40\x1c\xd0\x3a\x0d\xc3\xa8\x3b\x6c\x18\x34\x02\x45\x7d\x4d\xd3\x2e\x74\xa6\x87\xf4\x0a\x52\x3f\x97\x27\xcf\x6b\xd9\xe1\x8f\x56\x4e\xee\x80\x70\xb7\xd8\x17\x09\xe1\x6e\x2e\xd6\x68\xd7\x03\x82\x8e\xca\x3f\x16\x81\x07\x0c\x68\xce\xc3\x1b\x97\x54\x15\xdf\xe7\xc3\xb7\x9b\x04\x99\x3b\xe0\xdb\x4d\x66\x29\x1c\xed\x37\xc0\x29\xd4\x08\xfd\xd0\x0e\x56\x91\x80\xf2\x67\x4b\x12\xce\xb2\xb6\x47\x21\xe4\x1d\xbe\x22\x80\x6f\xb7\x7e\x3e\x18\x96\x8f\xc8\x55\x47\xbb\xe1\xca\xf6\xba\x07\x2b\x44\xa1\xd1\x03\x82\xde\x61\x2b\x04\x82\xde\x5d\x81\xbe\x18\x0e\x6f\x0f\x19\xb7\xb7\x82\xc0\x1d\x2d\x82\x7b\xec\x8c\x6c\x37\xa1\x34\x1e\xc3\x1b\x9a\x4d\x77\x19\x46\xdf\xe6\x16\x3c\x31\xa6\x7a\xfe\x61\x4c\xdd\xa5\xb0\x7b\x96\x4e\x7a\x50\xfe\x8e\x43\x0e\x71\x28\x7f\xc7\x47\x3a\x3e\x2c\x02\x19\x4e\x50\xfe\xee\x0a\xfc\x05\xe8\xe6\xac\x7d\x9e\x8b\x17\xfe\x25\xdf\x73\xb4\x40\x12\xb1\x01\x40\x2c\xed\x61\xe5\x10\x2c\x3c\xb6\x30\xde\x80\xaf\xd3\xc7\x5f\xf6\x88\x2d\x94\x6d\x54\x8d\x43\xe3\x09\x61\xf0\xb0\x9b\xed\x8f\x30\x58\xca\xe9\x8f\x2f\xb8\xfa\x7f\x86\x4f\xde\xf1\xce\xc1\xbd\x7b\x8f\xf4\x7d\x70\x1f\x8e\x8b\x85\x41\x78\x08\x68\x6b\xc0\x20\x3c\xd6\xe7\xff\x68\xe0\x54\x19\xf8\x78\x99\x8d\x3d\x45\x03\x9b\xca\xd4\x2f\xaf\x5d\xc7\x59\xde\xbd\x49\x7a\x8a\xf9\x59\x2a\x33\x3f\x32\xce\x21\x10\x1e\x0e\xa3\xed\x11\x47\xe4\x5d\xd7\x13\xf3\x53\xfd\xc5\x07\xca\x64\xf5\x00\x1b\xcd\x36\x19\x84\xc2\x43\x00\x0f\xa3\x67\xc2\xcd\x3d\x44\x99\x5d\x2d\x07\x53\xdf\x36\xdd\xfe\xa0\x3e\x90\x49\x6f\xd2\xa6\x80\x91\x78\xd8\x4d\x08\x23\x71\x71\x14\x07\x84\xc4\xd3\x16\x13\x84\xc4\xbb\x42\x4d\x52\x70\x32\x2e\x97\x81\x04\x4a\xae\x00\x34\xd0\xe9\x16\xff\xa2\x02\x37\x91\x7d\xef\x2e\x17\xba\x28\x33\xb5\x17\x56\x81\x4c\x75\x08\x8b\x8d\xa0\x37\x20\x2c\x1e\x0e\xa2\xe9\xdb\x22\x2b\x3e\x23\x76\xdc\xed\xfd\x53\x1f\x8b\xc0\xab\x0c\xde\x85\xfe\x59\x96\x5c\xb0\x8b\x37\x7b\xf4\xc2\x32\xd6\xe1\xa4\xd7\x98\x03\x4d\x3a\x94\x8d\xfd\xb3\x0c\x61\x38\xb6\x51\x05\xc3\xf1\x50\x4c\xfc\xe8\x35\xc6\xd0\xeb\xb4\x2e\x16\xbe\x6b\x24\x6c\x44\x43\x56\x63\x84\x54\x7f\x43\x8c\x48\x5d\xc3\x68\xbc\xeb\xf3\x0f\x88\x11\x69\x5f\x28\x8d\x53\xff\x8c\x31\x57\xf6\xbe\xa3\xe8\x8d\x31\xe9\xfe\x3f\xc6\xc4\x4d\x6e\x31\x26\x6a\x52\x7b\x89\x38\x57\x19\x2c\x6e\x25\xb2\x8f\x0e\x68\xed\x67\xe7\xf4\xca\x07\x5d\x6e\xff\xfb\xbf\xe9\xeb\x74\x18\x8e\xf7\x07\xd5\x47\xa2\x9b\x7d\x2f\x14\x0c\xc7\xfd\xd3\x82\xce\x98\xb9\x85\x7f\x86\x9f\x47\xa5\xb3\xb5\x74\x8c\xed\xfd\xf7\xbf\xff\x9b\x7d\xb8\x46\xa6\xd5\xeb\x88\x5b\x02\xc7\xa7\xf5\x91\xf0\xaf\xa8\xbe\x11\x6c\xe6\x7a\x7f\x9b\x79\xc9\x47\xcc\x1e\x99\x37\x9e\xb5\xf1\x23\x4e\xc3\xf5\xef\x93\xff\xf2\xe3\x7b\xa7\x7b\xdb\x00\x27\x27\x54\xdd\x11\x1c\xc8\xfd\x18\xfe\x21\xa0\x3a\xf5\xf9\x19\x93\x2e\x03\xa4\x63\x36\xda\xbb\x02\x49\x72\x3e\x92\x5f\xd8\x47\x81\xe5\x11\x06\x04\x77\x78\xdf\xe0\x4b\xb1\xd5\x08\x49\xf2\xb2\x24\x21\x56\xba\x0b\x47\x78\x74\xe0\xe4\x6c\x34\x42\xa2\x5c\xc6\x3f\xa5\x79\x8e\xbe\xed\xc1\x6e\x83\xb2\x6f\x7b\x70\x0c\x59\x37\x7d\x5b\x67\xdd\xf6\x23\x94\xc9\xc5\xe6\x5e\xbf\x82\x86\x55\xef\x6f\xeb\x69\xf8\x42\xa9\x13\xb9\xdc\x85\x25\x34\xe0\x58\x1e\xbe\x1e\xe9\x17\x3b\xc0\xb3\x47\xe8\x72\x17\xa7\xdb\xe8\xe0\xdb\x4e\x0f\xc7\x45\xc8\x89\x8c\xe6\xfe\x23\x41\xda\x72\x0d\xb8\x5a\xdf\xf2\xc1\xc1\x9c\x95\x47\x3b\xe0\x60\x4e\x5d\xf9\x70\xa3\x87\x7d\xe4\x3d\xf8\x8b\x16\x78\x0c\xb6\x81\x54\xed\x51\xec\xdb\x40\xea\x02\xcb\x1b\x9d\xd4\xde\xee\xfa\x20\x39\xf0\x96\xba\x0f\xa2\x6a\x55\xdd\xcd\x65\xbc\x55\x05\x99\x3f\xce\x01\xe9\x77\x0c\x99\x2c\xd4\x7e\x43\x1c\x62\xb1\x16\x58\x6c\xc9\xda\xef\x0e\xea\x59\xbf\x10\xe0\xa6\x9a\x84\x3b\x32\xfe\x5c\xc1\x85\xff\x40\x1d\xd8\xe6\xd3\x9c\x96\xd4\x37\x78\xbc\x3a\x24\x40\x22\xbd\x3f\xa8\x2e\x3e\x89\x70\x35\x55\x00\x38\x5b\x77\x80\x7a\x7f\xa0\xaa\xf8\xd4\x50\xb7\xf6\xf2\x26\xe2\x76\x62\x78\xd7\xfd\x05\x5b\x67\xbf\x40\x2e\xad\x17\xf5\x03\x55\xb7\x05\xe7\x13\xc9\x3f\x6a\xc1\x1b\x4d\xb4\xc9\xb0\x6d\xa6\xee\x10\x4e\x78\xaa\xf3\xd0\x85\x3e\x3c\xd5\xfb\x05\x35\xe1\xc5\x8a\x75\x0b\x5e\xb0\x0e\xbc\x0a\x08\xd9\x1b\xde\x87\x6f\x84\x6f\xb9\x42\x44\xb5\x83\xf6\x21\xa6\x4e\xbe\x7d\x80\x98\x7a\x3f\xf0\xdf\x0f\x30\x53\xef\x1f\xaa\x7e\x00\xf8\x64\xba\x5c\xf9\x64\x53\x19\x3a\xad\xe6\x0a\x82\x8e\x43\xa2\x31\xb8\xa9\x95\xb0\x3b\x82\x9b\xba\x3b\x26\x0e\x6e\xea\xee\x53\xfc\x48\x74\x4a\x2a\x75\x70\x43\xe2\xab\xc5\x11\x84\x1d\x5a\xbb\x83\x0c\x60\xbb\x75\x07\x19\xc0\x1f\xc7\xc8\xc8\x1c\xeb\x25\xbc\x83\x59\xda\xde\x79\x98\xa5\xd3\xe7\x6e\x10\x6a\x69\x83\x45\x0f\xa8\xa5\xab\x2d\x35\x98\xa2\xfb\xa7\xcf\xb8\xa2\x3e\x57\x75\x30\x45\xe7\xa1\x6b\x2b\x88\x9f\xbb\xdd\xf7\xa3\x04\x3f\xa0\xff\x87\x59\x48\xdb\x6f\x14\x3c\x33\x32\x6b\x46\x89\xed\x2f\x91\x06\x73\x74\x11\xda\xca\x18\x38\x8e\x3e\x57\x6b\x63\x1b\x32\xd5\xf9\x3b\x50\x49\x57\x87\x76\x8c\x80\xa9\x95\x08\x84\x49\x3a\x7d\x6e\xd6\xa0\x92\xee\xca\x95\x1b\x50\x47\x77\xa7\x91\x41\xf4\xbc\xa6\xff\x6f\xcc\x92\x84\xf2\x20\x8e\x2f\x7f\xca\x04\x8b\x7a\x08\x40\x81\x15\x0a\xed\x18\xd0\x05\x0a\x3a\x7f\x8c\x08\x11\x2f\xfe\x1f\xfb\xde\x57\x0c\x50\x31\xf7\x21\x21\x3d\xc8\xd7\xb5\x9f\x79\x40\x20\x85\x3b\xff\x1f\x74\x0e\x44\xce\x5d\x69\xed\x63\x90\x30\xe5\xe8\xe0\xd1\x23\xb4\x45\x33\x12\x97\xf8\x12\xa8\xb0\x22\x77\x87\x59\x40\x8a\x6c\xb4\x9b\x01\x29\x72\x17\x43\xe4\x80\x14\xb9\x5b\x9c\xc1\x81\x9c\x85\xb7\x3a\x06\x1a\xbc\x78\x7e\xe6\x8f\xe7\x35\xfc\x33\xbe\xa7\xf6\x80\xf3\x25\x9c\x95\x31\xb8\x6f\x77\x68\xce\x58\x88\x9a\xe4\xff\x89\xcb\xf4\x1e\x58\x5b\xdc\xfa\x42\x6c\x40\x1f\x62\x6a\xde\x01\x1f\x71\xcb\x6e\xc0\xc9\x15\x9d\xc4\x6f\xd0\x0d\x9b\x9a\x77\x40\x37\x5c\xc4\x61\x33\xa0\x1b\x4e\xe6\xae\x1d\xf0\x0d\x57\x47\x66\x8c\x20\x1c\xf1\x3e\x0f\xba\x61\x3b\x09\xe0\x1b\x2e\xf6\x6a\x40\x37\xbc\x1c\xe0\x1c\x6c\xc2\x9f\x5d\x07\x97\x60\x97\x6b\x2b\xd8\x84\x4d\x5d\x3b\x82\x4d\x78\x78\xdb\x82\x98\xfa\xd9\x96\x17\xa6\xb6\xb7\xe1\xc5\xa0\xcb\x4a\x1c\x17\xfb\xde\x4e\xee\xb1\xed\x80\xe1\x34\xbe\xb1\xf5\xfa\x9a\x1e\x34\xe2\xf6\x6c\x76\x0d\x94\xa2\xa3\xe0\xa1\xf7\x9d\x36\x1b\xc7\x1f\xc4\xbb\x56\xd5\xfd\xc3\x50\xd1\xff\xdc\xa5\xf8\x9e\x60\x3c\xb0\x27\xc8\x0b\x32\x9e\xe8\xb1\x6e\x87\x21\xeb\xad\x8e\xc0\x1e\xa1\xe3\x44\xe6\x37\x06\x37\xf0\xf6\x93\x8c\x27\x66\xcd\x83\x4e\x4a\x91\xef\xa8\x06\x29\x45\x26\xe3\x1b\xe3\x81\x8e\xea\x53\xc6\x8f\xef\x75\xc0\x95\x7d\xab\x6e\xf3\x16\x0c\x1e\x32\x10\x2f\x6c\x6a\xc1\xf6\x5b\x8a\x37\x46\xe0\x8d\xea\xe2\x62\x70\x59\x63\x62\xb9\x31\x5e\x62\xc2\x75\x9d\x0d\x1d\x70\xf1\x15\x57\xd0\x01\x3b\xb1\x0d\x36\xe0\xec\x88\xe5\x60\x03\x76\x84\xc0\x04\x4d\xd4\xa7\x97\x09\xe0\x85\x7d\x67\xc1\xe7\x2b\xb4\xb8\x01\x5f\x6f\x39\x3e\x65\x7c\x6d\xda\xe9\xb0\xef\x76\x07\x18\xc0\xbe\x5b\x84\x4f\x31\x20\xdf\x4d\xa6\x91\x1b\x13\x44\x8c\x43\x31\x0d\x13\x20\x2c\x93\xb0\x0d\xe8\x79\x0d\x23\x39\x26\x09\x4a\x66\x61\x1b\x73\x6b\xd0\xea\x31\x9d\x81\x2b\xef\xd8\xc7\x49\xc6\xae\x69\xd7\xc6\x4c\x88\x2b\x39\x3f\x66\x46\x1b\x48\x3c\x4c\xae\x7f\xcc\x82\x36\x26\x61\x09\x9f\x51\x0a\x1d\xeb\x36\x01\x1c\xef\x18\xeb\x19\xae\x02\x51\xe1\x8c\xe0\x08\x1e\x87\x1f\x40\xe0\xb9\xcd\xe8\x5c\x91\xc8\x8f\x59\xe0\xa9\xd6\x52\x9f\x84\x10\xd8\x59\x02\xa7\x70\x11\x93\xca\x80\x53\xb8\x16\x09\x07\x38\x84\xbb\x03\x8e\x66\x9c\xf4\x9d\x0f\x0a\x89\x70\xb6\x02\x0a\x12\x61\x53\x9f\x0d\x48\x84\x93\x2f\x53\x21\x09\x5e\x73\xfd\xd3\xe5\x0d\x0c\xc2\xc9\x7c\x4d\x03\x0a\xe1\xe4\x9b\x03\x28\x84\x93\x39\xb4\xc6\x0c\x05\xfc\xf9\x1c\x1d\x48\x7e\x21\x3a\x50\xfd\x03\xb7\x33\x72\x88\x05\x05\xb0\x79\xc9\x06\x14\xc0\xdd\xc9\x0a\x50\x00\x27\xd3\x74\x0d\x38\x80\xcb\x74\x8d\x40\xc9\x8b\x2e\x60\x4c\x90\xe0\x2d\x2c\xa0\xf4\x5d\xd5\xef\x43\xd9\xe8\x63\x29\x14\xbd\xa9\x17\x69\x2d\x38\x7a\xbb\xb5\x12\x14\xbd\xd9\xa9\x6f\xb3\x03\x6f\xe9\x06\x10\xa6\x30\x24\x7c\x66\x27\x0c\xe2\xf3\x3e\x19\x9a\x5e\x24\x30\x36\x3a\xc5\x74\xc2\x36\xe3\xfc\x8b\x49\xd0\x81\x23\x5d\xe6\x8c\x55\x29\x5b\x72\x82\xc5\x55\x3f\x65\xa0\xb3\x9a\x5f\xd8\x2a\xe8\x53\xdc\xed\xb1\xfc\x9f\x5b\x0b\x27\x7b\xdc\x66\x9c\x93\x8b\x1b\xc0\x39\xd9\x66\x02\x84\xbe\x65\x54\x97\x03\x04\x50\x23\xb8\x62\x04\x97\x6b\x64\x04\xbd\x93\x21\x68\x1c\x1e\x41\x62\x1a\x1c\xaa\x03\xe1\x6f\xfa\x4c\x21\xb0\xec\xdd\xbe\x85\x09\xf7\x8c\x43\x77\x60\x04\xde\x0f\xe8\x0b\x67\x34\x59\x4d\x02\x8e\xb3\x3b\x2f\x69\x9e\x88\x02\x1d\x5a\x66\x58\x06\xbe\x90\x87\x44\x38\x09\x2f\x73\xcc\xb0\x0c\x7c\x43\x3f\x4f\x32\xa5\x3c\x2a\x28\x7a\xfb\x1d\x21\x0d\xce\xcb\x9d\xb8\x38\xbd\x7a\x9d\x5d\xd8\x92\x16\x4e\x18\x02\xed\xf3\x7c\x30\xc6\xab\x4b\x57\xac\x53\x3f\x8f\x2c\xb2\x6c\x0a\x3a\x9b\xe2\xf7\x91\x9f\xa2\xab\x19\x73\x1b\x0a\x33\x7f\x3e\x70\xc7\x03\x6e\x31\x47\x45\xa9\xd9\x3f\x96\x62\x2f\x1c\x2e\x50\x7c\xbf\x01\x49\x71\x17\x06\xdc\x80\xa4\x38\x3b\xb7\x19\x8e\xe2\x24\xc2\xbf\x31\x6f\x46\x44\x96\xcd\x24\x17\xcd\x27\x4b\x28\x89\xb3\x4f\xd7\xb0\x08\x77\x9f\xce\x67\x18\x1e\xf2\x17\x41\x12\xbc\xaa\xdb\x07\x35\x5a\x6d\xfe\x7f\xc2\x89\xa8\xf6\xa2\xe4\x87\x85\xe5\x03\xd3\x8b\x8e\x95\x93\xb8\x3c\xc7\x27\xcc\x38\xe9\x7e\x2a\x24\x48\xc3\xf1\x9c\x13\x34\x4c\x5f\x37\x40\x1a\x9c\x7d\x07\x38\x5f\x96\x84\x76\x5a\x70\x04\x77\xa1\xc2\x0e\x38\x82\xb3\xcf\x33\x70\x04\x77\x47\x84\x41\xf9\x3b\x84\x30\x37\x16\x11\x15\x62\xd3\x19\x2b\x68\x23\xb5\x91\x56\x42\x9a\x4a\xd6\x05\xc3\xaf\x4d\xb3\x05\x75\x8a\xc9\x6a\xc6\x02\xfd\xd1\x27\x86\x95\x4f\x86\xc4\x2f\x5c\xa0\x66\xf8\xf9\x70\x09\xea\x79\x32\xcf\xec\x32\x0c\x8a\xe0\xa1\x45\xb8\x38\x02\xee\x35\xf8\x0f\xea\x66\x15\x72\xeb\x3f\x95\x91\x5b\xaf\xf9\x0b\x7e\xe1\x4f\xa2\x17\x04\xc3\xa5\x78\x38\x43\xfb\x39\xf3\x6b\x11\x5c\x60\xb7\xf4\xaa\xc0\x8e\x78\xbc\xe1\x52\xf3\x65\xc5\x82\x02\xbf\x37\xc9\xee\x55\x27\x2f\xa8\x09\x70\xe0\xdb\x15\x0f\x43\x71\xb7\x0f\x77\x35\xac\x1c\x89\xc2\x60\x28\x16\xe2\xd3\x80\xa1\xb8\xdb\x05\x0b\x43\xb1\x01\xc6\xc7\x8a\x9c\x64\x9d\x88\x60\x28\x2e\xbe\x21\x0c\x82\x62\x1f\xa9\x57\x47\x1b\xb6\xec\x07\xc8\x08\xd6\x69\x60\x41\x58\xbf\xbc\x82\xc2\x4d\x6d\x6f\x0d\x14\xc6\xbd\x7b\x0c\x3b\x3d\xf6\xa0\x03\xba\x21\xba\x80\xb1\x02\x9d\x5a\x0c\x18\x63\x91\x37\x26\xa8\xe5\x01\x01\x71\x72\x22\xdb\x8a\x60\x82\xcf\xff\x2b\x32\xd1\x35\x86\x91\x83\xac\x43\x38\x0c\xc4\x75\x7a\x0c\x49\x14\xf3\x91\x0c\x7e\xe1\xfc\x19\x03\x30\x34\x7a\xf7\xff\x51\x9f\x1a\xb8\xd5\xdf\xf4\x9d\xd9\x9a\x91\x11\xaa\x06\x12\x72\x27\x9c\xdf\xb1\x56\xbc\xaf\x32\x01\x73\x8e\x42\x0a\xfa\x60\x43\x34\x04\x3b\xb0\xbd\x8c\x41\xf6\xeb\xb0\xc3\x15\xf7\xe8\x62\xec\x1b\x6b\x6b\x86\xe5\x5c\xc0\x15\x88\x4b\xfe\x20\x79\xc7\x66\xe0\x1b\x2b\xf2\x8e\xbd\x4b\xb9\x39\x2f\xfe\xc2\x16\xfd\xd5\x86\x2f\x74\xc1\xb9\x25\x97\x7f\x51\xa1\x7f\x00\xa7\xde\x43\xc6\x19\x51\x18\x45\x03\x7e\xe1\x64\xb2\xb5\x01\xc1\x70\x75\xec\xc1\xfa\x83\xb1\x50\x0b\x7e\xd1\x64\x0f\x52\xe0\x58\xe8\x80\xb3\xb8\x6c\xb7\xcd\xb0\xf0\x15\xdb\x11\x0a\x41\xf1\xae\xc0\x3f\x5c\xc4\x3c\xfb\x85\xe8\xc3\xf2\x27\xa1\x47\xf7\x34\xe0\x1d\xb6\xb6\x59\x77\xc6\xdd\xad\x0a\x40\x75\x74\x90\xcb\xc2\xb7\xeb\x38\x1e\x18\x89\xab\x58\x9b\xc6\x82\x82\x7e\x49\x3b\xac\x27\xee\x8e\x35\x66\x5c\x7d\x7f\x70\x2c\x16\x21\x7f\xc9\x7b\xfd\x21\xad\xd6\xb3\x10\xa7\x54\x1f\x81\xd6\x13\x70\x2a\xfe\xe2\x19\x0f\xa8\x4b\xfb\x94\xda\x05\xac\x3e\x16\xd9\x65\x1f\xdc\x88\x20\x3e\x16\xdb\xcc\x58\x20\x5f\x7c\x70\x22\xd6\x56\x71\xf9\xf0\xca\xc1\xdb\x6b\xef\xf0\x22\x1f\xcc\x57\x8d\xeb\x25\x68\x44\x07\x90\xf5\xc6\x17\x65\x65\x40\x9d\x9c\x7d\x53\x08\x33\x72\x71\x0c\x2e\xc4\xc8\xe9\x93\x02\x0f\x33\x72\xf7\x55\xe0\x79\xc4\xb0\xba\x82\x4e\xb9\xa9\x7c\x81\xde\xe6\x72\xb4\xe0\xf3\x45\x20\x0a\x34\x8f\xe7\xd6\x91\x45\x84\x65\xe3\x4c\x5c\xbc\xb4\x7f\x61\x92\x1e\x27\x38\x1a\x3e\xd7\x9e\x1c\x42\x9b\x64\x0d\x3c\xcc\xdd\xe8\x29\x67\x90\x9b\x59\x63\x04\x11\xb3\x63\x94\xa1\x59\x1e\x4d\x2e\xb6\x33\x73\x43\x20\xf7\x10\x24\xc9\xc3\x97\x30\x67\x61\xe3\x58\x9a\x9c\x04\xf8\x89\x13\x69\x9c\x24\x6b\xd9\x7a\x87\x45\x79\xbf\xe0\x07\xb8\x88\xd2\x2a\x82\x46\x39\x75\x83\x93\x9c\xb8\x5d\x6d\x18\x9e\xa8\x55\x6f\x3d\x78\x96\xf3\xf1\x69\x41\x2c\xa2\xe1\x1a\x01\x6c\x96\x8a\x38\x2b\xc8\x56\x9e\xc2\x1a\x4e\x4d\xf5\x91\xcb\x5f\x3b\x3d\xcf\x8a\x00\xf6\x8c\xed\x33\xdf\xf4\x85\xc0\xb9\x8f\x74\xdd\xf9\xeb\xe7\x56\x9a\xe5\x33\x09\x9d\xf4\x76\x0f\x09\x57\xb5\xbe\x7f\x3f\x89\x1b\x77\x22\xd1\x19\x17\xa9\x76\x0c\x9c\x24\x6b\x7d\x1a\x38\x08\xff\x95\x92\x3c\x47\x64\x1a\xe9\x03\x44\xcc\x75\xa7\xb8\x9f\x23\x12\x81\xfc\x02\x6e\xc3\xe1\x17\xa0\x70\x38\xfc\xfc\x1e\x31\x51\x34\x0c\x88\x99\x87\x6f\x75\x4e\xa8\xb8\xec\xbe\x39\x09\x3c\xff\x9c\x93\x4f\xb8\xb8\x8c\xf2\x03\x93\x73\x75\x2e\xee\x39\xff\x5a\xe8\x1a\xe3\xc2\x5c\x2d\x82\x8b\xeb\x73\xc6\x3a\x27\x81\x1d\x5e\x15\x13\x15\xe0\x7d\x19\x21\x76\x5e\x25\x0b\x32\x95\xe6\xff\x09\x52\xf0\xa2\x88\xdc\x28\x59\x86\x50\x3f\x27\xdf\x0e\x9c\x0b\xc9\x22\xcb\x09\x2a\xe8\x54\xa4\xd5\xcf\x85\xc7\xcb\x1b\x81\x78\xb9\x8f\x75\x7e\x12\x2f\x57\x3d\x07\x11\x2f\x27\xd1\x74\x12\xef\xf6\x59\xd6\x27\x23\x30\xfc\x7c\x8c\x80\x05\xc7\x19\x23\xa0\x16\x9c\xb1\x6c\xd4\x82\x93\x0c\xb7\xe9\x0a\xae\xa8\xc0\x0f\x10\x63\x20\x4f\xec\x79\x12\xd5\x20\xd7\xed\x19\x2c\xff\x3a\xcf\xc0\x2d\x3d\x7c\x84\x3c\xaf\xce\xfd\xbb\xcb\x27\xe0\x9b\x1a\x42\x2e\x68\x9d\x4b\x7b\x12\xc0\x66\x78\x93\x13\xac\xe5\xea\x45\x82\x4e\xfd\xdc\xc0\x9c\x78\x72\xfb\xa7\x0c\x15\xa5\x54\xe0\x19\x17\xb4\xce\x04\x3d\x23\x76\xdf\xab\x28\x48\x18\x3c\xa6\x37\xb1\x34\x1e\xf3\x9b\x90\x3d\xef\x5c\xf2\xa9\xb3\x74\x28\x64\xd5\xd9\x08\x6f\x27\xb9\x55\x3e\x40\x9d\x5b\xa7\xe6\xf2\x29\x73\x2c\x77\x6c\xf1\xf9\x40\xec\xf1\xa9\x20\x96\xb5\xe6\x0c\xca\x04\x87\xe8\x9d\x5b\x01\xe6\xec\x8d\x16\x0a\xd0\xd1\xb1\x67\x5c\x77\xea\xd4\x7c\xbe\x1c\x78\x64\x7b\x9d\x6f\xf8\xf7\xf5\xfc\x3e\xc2\x8d\x6c\xf9\x4d\x02\xb4\x11\x78\xce\x70\xcc\x0e\xab\x1b\x2e\x27\xf7\x91\xec\x1f\xd4\xcd\x75\xc4\xb6\x95\x67\xe4\x02\x69\x51\xe3\x77\x1d\xb1\x66\xa5\x4e\xae\x63\xf2\xf9\xa5\x72\xcc\xe0\xf2\x0f\xb4\x57\x33\x74\x1d\x04\x2b\x35\x57\xf0\xf2\xff\x7f\xfd\xbd\x88\xe2\xef\x62\x11\x1c\x17\x48\x8c\x16\xbe\x57\x0a\x8a\x58\xbf\xd0\xa8\x20\xab\xbc\x28\xab\x01\x11\x10\x36\x0f\xff\x10\x0c\x6a\x6a\xc1\x56\xa1\x23\xcb\x2e\xbb\xfe\xf8\x41\xb5\xb1\xa1\xf3\x1e\x22\xa6\x1a\xd0\x73\x0f\x4b\x8e\x8b\x00\x2f\xa3\xc0\x5d\xf0\x48\x89\xcc\x6b\x5c\x71\x33\x2a\xf2\xae\x71\xe1\xb6\x75\xf8\xf2\x45\x80\x57\x17\x21\xd9\xb8\x72\x0c\x9a\x6b\xb8\x28\xfb\x85\xa0\x8f\xf1\xf3\x77\x54\xe0\x17\xa2\x4f\xff\x2d\xd3\x0b\xad\xee\x7d\x70\x85\x56\x17\xc5\xd9\xb8\x08\x01\xcb\x3a\x78\xc2\x12\x3e\x44\x37\x39\xae\xb8\x3b\xf5\x49\x1f\x96\xf0\xec\x48\xce\x2b\xee\x4e\x85\x1d\x3f\x2e\xb4\xb8\xed\xac\x2b\x0e\xc7\xc2\x8e\x1f\xf0\x88\x0f\xeb\xac\xab\x32\x8c\xb2\xd0\xe1\x11\x1f\xbe\x23\x87\x47\x7c\x18\x1a\x2a\x78\xc4\xbb\xa0\xdf\xc7\x15\xd4\x51\xd2\x92\x57\x8d\x99\x2f\x7e\x83\xeb\xc8\xe2\x07\x7e\x7c\x51\x13\x1b\xbe\x5d\x19\x5b\x10\x8f\x67\xcb\xcb\x6b\xdb\x01\xd5\x70\x82\x17\x9e\x5d\x47\xca\x5f\xad\xc4\x07\xfd\x02\x44\xe2\xcb\x2f\xb0\xbd\x0c\x9a\x72\x91\x21\xe7\xbc\xc6\x2b\xc2\xc8\x84\x15\x3f\xae\xc6\x3c\x78\x2d\xb5\x98\x07\x59\xd4\x57\x63\xa9\x4c\x7f\x92\x08\x90\xe4\x36\xfd\xe2\x05\xff\x80\xc0\x90\x7c\x80\x2d\x7d\xf8\xee\xea\x8a\x13\xfb\x94\x44\x82\x2d\x7d\x64\x8b\x04\xe2\xc6\x44\xab\x36\xae\xce\x3c\xba\x93\x83\xb5\x66\x09\x30\xe2\x7d\x75\x61\xc4\x3c\xab\x8b\x23\xb6\x4b\xf7\x0f\x83\x61\x57\x0b\x47\x4c\xb4\x4e\x83\xc1\x8f\x5e\xdc\x82\x11\x13\xdd\xfd\x06\xfb\x45\x47\xb1\x0b\xb6\x09\xc7\xf3\x5f\x23\xb6\xb8\x8e\x1d\xd7\x84\x46\xc5\x4b\x67\x9b\x2f\xc3\x39\x69\xd0\x99\x4f\x1b\x27\x41\x67\xde\xa7\x17\xe3\x0c\x1a\x48\x95\xd7\x41\x05\x7a\x61\x05\xcb\x89\xcb\xe0\xe7\x79\x07\xaf\x3f\x99\xa1\x3e\xe2\xc3\x76\x66\xdf\xb5\xcd\x93\xe1\xac\xb5\x8b\x70\x7e\x5f\xa0\xc1\x76\x9e\xa6\x77\x0b\x70\x2f\xce\x35\xbf\x30\x2e\x7c\x24\xbf\x4e\xb2\x48\x3c\x44\xdb\xb8\x18\xbe\xba\x86\x0d\x7d\xf8\x86\xf2\x3a\xe3\xfb\x6a\xcf\xb6\x2d\x72\x92\xcd\x7d\x5d\x88\x69\x0b\x14\xa2\xc1\x4a\xfa\x27\x6c\x9b\xeb\x8a\xc6\x69\xfe\x40\x7e\x11\x7f\xfd\x80\xc8\x7c\x38\x25\xf0\xc2\xf0\x10\x84\xf3\x80\xc8\x3c\x75\x23\x36\xc1\x64\x5e\x8d\x0e\x78\xfd\x02\xb1\x49\xc3\x0d\x14\x4c\x37\xd0\xca\xb5\x2d\x8f\x29\xbe\x92\x71\xc5\x71\x7f\x59\x09\x6c\xcb\x63\xd9\x64\x87\x0b\x7d\x38\x29\xf0\xba\xa3\x89\xea\x02\xb1\x5f\xdd\x51\x46\x50\x9d\x67\xe3\x8a\x04\x33\xb9\x03\x74\x60\x26\x1f\xe5\xf3\x3c\x13\xec\x15\x45\x0a\xa0\x93\xcf\xae\x87\x78\x4f\x6f\xb3\x7d\x58\x9f\x55\x96\x08\xc4\xe5\xc3\xd7\x97\x17\x71\x56\xc6\x63\xba\xde\x80\x37\x52\xfd\x6f\x34\x58\xe6\x28\x4c\xe6\x6b\xe8\xcc\x70\xe1\x4c\x76\x78\xe5\x45\x2c\x7a\xf1\x36\x8d\x30\x29\x9f\x94\x61\x2e\x1f\xbe\x0e\xbd\xde\x3f\x3f\xd6\x7f\x9f\xfc\xed\xb3\xf9\x1a\x9a\x76\x98\xca\x93\x91\xcf\x7e\x04\x97\xfb\x7a\x14\xa6\xf2\xe1\x0b\x57\xc8\xc8\x67\x96\xb5\x18\x64\xe4\x9f\x73\x13\x64\xe4\xc3\xc7\x1c\xb8\xc2\x87\xf1\x5d\x7f\xc4\x82\xfb\xbe\x15\x6a\xf0\xe1\xeb\xd4\xa0\x06\xef\x4b\xfb\x1e\x6a\xf0\xe9\x5c\x28\xa8\xc1\xf7\x03\x6a\x52\x8e\x41\x9b\x2a\xc7\x17\xfd\x42\x84\x8c\xaa\x45\x39\x66\xc9\xcf\xc7\x32\x53\x0b\xd0\xc3\xce\x79\x81\x38\x7b\xfa\xa2\xe9\x07\xe6\xb2\x93\x5f\x7f\x1c\x85\xed\xe3\x81\x58\x7b\x14\x1d\x5a\x20\xd6\x1e\x3e\x05\xfd\x22\x62\x69\x2d\x3f\x50\x00\x71\xd6\x9c\xa0\x23\x6d\x28\xfc\x2a\x87\x71\x59\x12\xf0\x5a\x2f\xdf\x00\xc3\x5b\xbd\x7c\x5f\x0a\x6f\xf5\xcc\xcd\x65\x92\x82\x64\xbe\xfd\x08\x32\x16\x95\xd1\x80\xb7\x7a\xf9\x06\xfb\xd7\x89\xa1\xb5\xbf\xf7\x47\x90\x71\xfe\xbc\x70\xc7\x03\xae\x91\x21\x91\x82\x83\xd8\x7a\x89\xc4\x66\x40\x6c\x9d\x9d\xb0\x07\xaf\x75\xf5\xe1\xfb\x37\x38\x63\x78\x0a\x88\x32\xb6\xcb\x1b\x1a\xeb\x6a\x97\x7a\x90\x46\xfb\x50\xf3\x5b\x0c\xb1\x0c\xd2\x1f\x41\x43\x4d\xa2\xff\x07\x37\xa0\x13\x0c\x7e\x88\xfe\x4f\x34\xfc\x2f\x4e\xaa\xda\xa9\xbf\x45\x20\x5d\xf1\x07\xa2\x41\x6a\x40\xa8\x02\x99\xd8\xbf\xc5\xbe\xf3\x10\xaf\xe0\x05\x52\x39\x54\x83\x74\x17\x14\xd1\xe9\x13\xcc\x0e\x47\x74\x75\xea\x2e\x1c\xd1\xd5\xb9\x67\x41\xf1\xdc\x3f\xcf\x73\xc9\xef\x32\x37\x89\x4d\xf6\x2d\xa4\xcc\xc3\xa0\xd3\x90\x32\x67\x9f\x61\x20\x61\x4e\x4e\xfd\x85\x43\x39\x67\x69\xe7\x5f\x88\x7f\xcf\xd8\x0f\xed\x2c\x63\xf5\x17\xbe\xdb\x63\xfe\xd3\x2d\xce\x6f\xeb\x82\xf1\xf9\x1a\x90\x95\x8e\xcd\x84\x81\x79\xd7\xe6\x1f\x82\xd1\x5a\x13\xfa\x8b\x25\xe9\xef\x13\xb6\xeb\x53\x2b\x14\xca\xc5\xb0\x2e\x50\x28\x8f\x22\x4b\xf7\x47\x56\xd4\x70\x74\xcb\x0f\x5d\x90\x3e\x15\xc2\xe9\xec\x19\xda\xba\x60\xd9\xfb\x02\xe7\xf2\x30\x52\x3a\x9c\xcb\xb5\xc8\x8c\x84\x72\x39\x7f\x96\x60\xc4\xdc\x5a\xca\x3c\xd1\x65\xd5\xf7\x44\xea\x9f\xda\xf3\xe2\x40\xb3\x10\xd8\xba\x22\x0d\xa3\xf1\xc0\x78\xbc\x1c\xf4\x00\xe1\xf1\x7e\x40\x6b\x16\x58\x4c\x9b\x03\x41\x78\xfc\x49\xa9\x84\xf1\x78\x39\x10\xe3\x47\x04\xd2\x30\x66\xd3\xef\xa5\x8d\xcb\x35\x6e\x41\x21\xb6\xde\x01\x23\x72\xfa\x04\xa4\x07\x25\xf2\xf4\xb6\x00\xb5\xc4\x61\xc0\x41\x79\x3c\x6c\x55\x40\x79\x3c\x7d\xf1\x03\xe3\xf1\x7e\xa0\xeb\x87\xcc\x27\xfd\x42\xf4\x52\xf3\x00\x27\xf2\xb4\x28\xb9\xf7\xf1\x79\x3a\xed\xf3\xe6\xf4\xec\x00\xf4\x1b\x9e\x02\xbb\x27\xee\x03\x48\xc2\xc3\xef\x83\x59\x24\x95\x0b\x87\xf2\xfe\xa0\x2b\x8c\xdc\x5d\x55\x90\x02\x77\x49\x5d\x48\x5b\xfd\x38\x7c\xf0\x4e\x78\x68\xb4\xf5\xef\x7d\x58\x5e\x96\xc6\x77\x0a\xa4\x4d\x29\x71\x48\x97\x67\xd5\xd6\x0d\xd2\xe5\x61\xfc\x52\x48\x97\xa7\xed\x4c\x48\x97\xa7\x5d\x93\x90\x2e\x0f\xb3\x10\xdc\xe9\xc7\x10\xe8\x7f\xf8\x02\x7d\x3b\x77\x93\x5e\xe5\x9b\x9d\x7b\x6b\xd4\x62\xd9\x01\x07\x73\xfe\xcc\x41\x86\x9e\x4b\x66\xd3\x4d\x90\x70\xf3\x90\x95\x03\x58\x43\x3d\xcf\x05\xb0\xb1\xb8\xe1\x60\x5e\x0e\x87\x84\x83\x79\x3a\x1d\x1d\x8a\xe5\x69\x14\x47\x28\x96\x97\x2f\xf7\x60\x58\x4e\xc3\xb1\xde\x50\x2c\xaf\x2c\x61\x79\x83\xa2\xe2\xf0\xc8\x1b\x67\xb4\x8d\x14\x28\x96\x77\x05\x7a\x81\x5c\x26\x23\x33\x40\xb1\xbc\x1f\xf0\x1b\x30\xa8\xc8\xf0\x82\x62\x79\x3f\xe0\x4f\x70\x52\x96\x91\x01\xe3\xf1\x32\x90\x34\xa4\xc6\x69\x24\xb7\xb1\x85\x7d\xad\x2f\x40\x94\xe0\x5b\x17\x28\x85\xa7\xf7\xe2\xbd\xcf\x84\xd3\xe7\xa9\x1b\x07\xb7\x63\x42\x61\x10\x1e\x06\x2a\xbe\x7b\x6c\x66\x8f\x62\x9f\x2c\x7c\x3f\x00\x4d\x80\x04\xd8\x1d\x99\x40\xc3\x65\x10\x62\xb3\xcb\xac\x6b\x69\x98\x7b\xe0\x25\xf3\x08\xec\x23\xe3\xb0\x59\x04\xc5\x70\x1a\x06\x10\x82\x63\x78\x3a\xb8\xe5\x9e\x90\x98\xc8\x0e\x82\x63\x38\x0d\x83\xc7\xdc\x33\xbe\xa8\x69\x9e\x6c\xe5\xee\xff\xa3\x8b\xff\x44\x82\x33\x60\x20\x5e\x0e\x71\x85\x81\x78\x1a\xe3\xe9\x9e\xd0\x23\x4a\x56\xdd\x0b\x2b\x4c\x66\x1f\x7c\xc1\xd3\xe0\x9d\xd0\x05\xa7\x61\xb6\x10\xf8\x82\x97\x61\x19\xee\x40\xfb\xf4\x00\x02\xb2\x62\x37\x1c\xec\xbe\xc3\xf1\x48\xb0\xf3\x4e\x27\x83\xdd\x20\x4f\xe7\xe1\xff\x01\x1d\xf6\x1a\xdc\x2a\x7f\xf8\x42\x01\xf6\xde\x34\x8c\xaf\x7e\x73\x87\x6c\x97\xd5\xcd\x1d\xb2\xd3\x8d\xa0\xf7\x9d\xbe\xf1\xbd\xf1\x45\x3b\xab\xe3\xbe\x58\xf4\x52\x41\xd0\xfd\x4e\x7b\xe9\xee\x0b\x75\xe0\x15\x73\xb1\x4f\x65\x33\xdc\xd7\x05\xdd\x97\x06\x84\x2b\xe6\x61\x44\x94\xfb\xba\x11\x8d\x2e\xc7\xa6\xd1\x08\x5c\x70\xb8\x59\x90\xec\x33\xe7\xb2\xa7\x13\x7e\xe0\x65\xc7\xe5\x8d\xab\x3a\x25\xff\x7f\xf1\xbc\x1a\x7c\xb3\x87\xbc\x67\xee\xd8\x43\x6a\x20\xc9\x41\x23\x57\xff\x10\x1f\xd4\x08\xdd\xf1\x41\x57\x08\x1f\x99\xa7\xf4\x8e\x11\xf1\x07\xe2\x56\xcb\x65\x62\x75\xbc\x89\xef\x98\x32\x3f\xb0\xad\x86\xe1\xf0\x25\xf8\x83\x97\x7d\x82\x37\xb9\x40\xc3\x81\x84\x37\xb9\x40\x86\xc6\x80\x3f\x78\xd9\xcb\x78\x43\xdc\x37\x3e\xea\x06\xbb\xc3\x39\x24\x37\x67\x56\xe7\xea\x42\x28\x3c\x7d\xe0\xbb\x09\x63\x6e\x72\x1d\xdd\xdc\x0e\x0f\xf1\x4d\x0e\x08\x85\x97\x5d\xaf\x10\x0a\x2f\x3b\x7f\x83\x4f\x78\x7c\xa4\x33\x76\x49\xd6\x09\xef\x0e\xbb\xe4\x23\x9e\xdf\xe8\x83\x9a\x14\x66\xc7\x70\x13\x30\x3b\x3e\xc2\xf5\xe5\xee\x4e\x3b\xe3\x39\xf6\x56\x77\x34\xc7\x73\x50\x81\x8c\x3f\x08\x83\x97\xdd\x5f\x10\x06\x2f\x7b\x93\x61\xf4\x5d\xee\x22\x8c\xbe\xcb\x4e\xca\x27\x14\xac\xc6\xf0\x49\xb1\xb0\xfd\x81\x84\x30\xd7\x4e\x79\x38\xe4\xda\x43\xf8\xc0\x23\x64\x97\x22\x84\xbc\xd3\x49\x2d\x0f\xf9\xc8\xf6\xd0\xc3\xa7\x3b\x1c\x7a\x0e\x9f\x6e\xfa\x78\xd7\x20\xd4\x5d\x76\xdc\x42\xa8\x3b\x7d\xe0\x79\x0a\x84\x5a\xee\x71\xa8\x60\xbf\x5f\x62\x92\x64\xea\xc1\xa7\xbb\xec\x5c\x7b\x0a\x56\x8b\x3c\x8c\x4f\x09\xdb\x51\x2d\x2c\x98\xb7\xda\x09\xf0\xef\xa6\x8f\xf7\x0d\x02\xde\x65\x1f\x27\xfc\xbb\xfb\x01\x37\x69\xf7\xd1\x61\x51\x0f\x10\xe1\xc3\xf1\xf0\x0f\xe7\x6e\xc7\xd8\xfc\x31\xf6\x4a\x5e\x3e\x91\xa1\xac\x73\xfd\x53\xa3\xc9\x6a\x62\x65\x59\xc9\x89\xfa\xd4\x50\x58\x6a\x32\xe4\x10\x9f\x06\xe1\x4a\x1e\x8e\x5f\x7f\xe0\xfa\x9b\x35\xfd\x8b\xba\x81\xff\x77\x1a\x2a\xfb\x69\x20\x56\x79\x3c\xd0\xef\x0e\x2c\x7c\x60\x96\xf0\x75\xc1\xc3\x85\xb5\xa1\x9e\x1f\x80\xce\x0c\x3b\xf0\xc4\x7d\xb5\x24\xc3\xd3\x63\xb8\x8a\x7f\x40\xf6\x48\xfa\x43\x07\xbc\x3e\xc3\xd9\x03\x83\x4b\xcf\x8f\x83\xb2\x9e\x1f\xe8\x3f\x9d\x16\x1e\xd4\xb7\x23\x2d\x9f\x01\xc3\xa7\xd7\xe8\x88\x25\xa8\x06\x8e\xf8\x9e\xca\xe4\xfe\xfa\xda\xee\x09\x7d\xec\x15\xf7\xc7\x16\xdc\xfc\x02\xbb\x54\x06\xc6\x13\xa9\xbc\x46\x38\x7d\x66\xe4\x3a\x6b\xc2\x66\xa4\xd1\xb8\xfc\xc4\x0b\xea\xe2\x24\x9f\xdb\x2b\x08\x15\xef\x80\xa3\x67\xb1\xe8\x3f\xe5\x16\x15\xa8\x8d\x30\x14\x1b\x9b\x33\x18\x8a\x87\xa3\x0b\x61\x28\x5e\x76\xf1\x3e\xeb\x62\x8d\xf9\x05\xa8\x08\xbc\x0f\x41\x07\x75\xe4\xdc\x73\x1e\x5c\x8e\x6a\x8d\x12\xc4\xec\xec\x37\x08\x8b\xd3\x72\x8f\x88\x61\x4e\x5e\xb3\x27\x5c\x1c\xde\xd7\x84\x30\x27\x4f\xfa\xb6\x39\xaa\x2f\x57\xe1\x33\xce\x4e\xc9\x80\xcf\x38\xfb\x40\xf7\x6c\x9b\xa4\xd8\xf4\x7f\xc8\x5c\x32\x50\xd2\xb3\x6d\x92\x6e\x6a\x88\xe7\x8c\x21\xef\xfe\x81\x28\x07\x29\x38\x08\x91\x7b\xf2\x00\xe1\xb3\xb6\x4f\x1d\x3e\xe4\x34\x3c\xe9\xf8\x29\x9c\x9d\x07\x1d\xf2\xfe\x80\x2b\x68\x7b\x59\x7d\xca\x30\xd7\xba\x47\x57\x84\x6b\xaa\x47\xb0\x39\x7d\x24\xe3\x15\x5c\xe6\x1a\x71\xd8\x9c\x8c\x45\x0d\x1b\x72\xb6\x9f\xfb\xb9\x00\xab\x3a\xfc\xfc\x4b\x26\xab\xbe\xff\x03\x0e\xd0\x0d\xde\x36\x4b\xed\x1e\xb1\x1f\xf0\x62\xb2\x61\x20\x43\x2e\xe2\x5a\x1f\x4f\x00\xcc\x64\xd7\x47\x7b\x65\xb6\x3e\x01\x96\xaa\x73\xc1\x83\x67\xe4\xf8\x7c\x3f\x42\x9f\x5c\xff\x36\xf3\x1d\xbd\x05\x35\x72\xb6\x49\x03\x35\x72\x77\x26\x56\x30\x23\xdb\x1e\x80\x19\xb9\x58\x39\x43\x8c\x9c\x6d\xc3\x41\x8c\xdc\x7d\xa2\x87\x18\xb9\x64\x8f\xdf\x5f\xfa\xb4\x3b\x7c\x03\x8d\xea\x06\x13\x63\x67\x10\x85\x27\x9c\xf2\xc3\xcf\x43\x27\xe3\x25\x78\x03\x31\x99\xdc\x20\x1c\x35\x5e\xe2\x37\x69\x4a\x9f\xfa\xf0\x64\x59\x0e\x6d\x9b\xab\x74\x2b\x7b\xe0\x6c\x8a\x1b\x4c\xea\xd9\x67\x40\x9f\x58\x71\x96\xe4\xc4\x1f\x34\x2f\xd1\x27\x5c\x4d\x6a\xf0\x43\xae\x86\x67\x08\x2e\x2b\x67\x9c\x3f\xc1\x65\x65\x45\xf7\xd0\x41\x0b\x15\x22\xfa\x52\xfe\x37\x35\xf3\x84\xd8\xb7\x10\x7c\x6e\x6a\x53\xed\xd8\x6b\x9f\xf5\x10\x69\x68\x32\xd7\xe0\x59\x2e\xc3\xef\x6f\x6b\x2c\x9b\x68\xe3\x21\x4d\xcd\xc9\xe7\xf0\x30\x27\x47\x0b\xc2\xc3\x9c\x3e\x6a\xe5\x0d\x31\x3e\xfc\x03\x7c\x78\x5e\xc0\x2f\x68\xbe\x9f\x06\xb1\xa1\xac\x57\x48\x63\xb3\x1d\x00\x71\x73\x75\xc4\xcb\x7b\x54\xee\x09\x5d\xa6\xc1\x32\x2c\xe0\x6d\xce\x26\x65\x80\xb7\x39\x3b\x02\xe7\x3d\xc2\xf0\x90\xa9\xf2\x92\xb6\xed\xfc\xfb\x37\x50\x0e\x9b\x3f\x00\x92\x99\xac\xc9\x97\xf0\x88\x8f\xf3\x17\xe6\xe7\xe4\x2c\x0e\x98\x9f\x53\xd5\x90\xc2\xfc\x9c\x1d\x8d\xf7\xe2\xf1\x39\x24\x72\xde\xc4\x8e\x70\x8f\x12\x19\x5e\xd5\xf5\xb3\xe5\x65\x1d\xc2\x1c\x9d\x9c\xec\xf3\x06\xd2\xee\xe7\x79\x60\x6e\xb5\x03\xde\x14\x4c\x64\x2e\x87\x90\xf6\x10\x93\x24\xe7\x93\xf9\x1b\x01\x8b\xc9\x65\x40\x1c\x74\x4e\x83\x59\xba\x34\x1d\xc4\x61\x86\x2e\xbe\x21\x79\xb7\xf1\x98\x8d\xfa\xfa\x92\x35\xee\x50\x62\x78\x9e\x47\xfe\x94\x43\x8d\x7a\x8e\xc2\x7a\xac\x2e\xff\x2d\x2a\x0d\x19\x39\x03\x3e\x7b\xbf\x95\x0b\x6e\xb9\x0a\xde\x70\xe0\xd8\x3f\x0d\xb1\xf3\x72\x42\x15\xbc\xce\x69\x94\xe5\x1a\x1e\xec\x29\x97\x23\x66\x47\xf6\xcc\x0b\x15\xa6\x23\x1a\x61\x82\x2e\xce\x9d\x87\x09\xba\x3a\x91\xf9\x25\xd0\xc0\xaa\xf8\x6d\x21\x08\x3f\x3f\x80\x55\xfe\xf9\x40\xa0\x18\xaa\xc9\x2d\x3a\xed\x75\xd2\x02\xfc\x45\xc3\xdc\xc8\x6d\x94\xb1\xf0\xc2\x0f\xf3\xf1\x08\xbc\x9d\x14\x28\xd9\x90\x70\x49\xfb\x9e\xe9\x8d\x54\x71\x6d\xf5\xb7\x13\xb9\xe5\x75\xdb\xe1\x1c\x92\xa4\x7c\x83\x59\xcc\xb3\x02\x95\xe6\x30\x27\x0e\x4c\xd1\x43\x2c\xcc\x03\xa6\xe8\x3e\x96\xff\x27\xcb\xd7\xb3\x04\x2c\xe1\x70\xfc\x1e\x44\xd1\xdd\x06\x1a\x44\xd1\xc3\x39\x5c\x6f\xf8\x94\xaa\x57\x66\xa0\x0e\xba\x4b\xc0\xf7\x7e\x84\xc1\x8c\x16\xe8\x8b\x13\xcc\x7b\x7f\x00\x97\x52\x95\x76\x7b\xc3\xa5\x64\xb2\x47\x78\x9e\x97\x23\x95\xde\xb0\x52\xab\xa5\x05\x6c\x67\xf6\xde\xbe\x61\xa5\xd6\xec\x2a\x81\x78\x96\x67\x10\x26\xe8\xfd\x80\xab\x7c\x00\x9e\xd0\x0b\xc4\x29\x38\x62\xef\x05\x45\xd0\x31\x88\x6f\xdc\x35\x49\xa0\xbe\x0b\x47\x9e\x0c\xf5\x77\x71\x83\x2a\x13\x0c\xea\xe8\x34\xaa\xe5\xcb\x49\x9c\x80\x47\xfd\x0c\xa0\xda\x7f\x52\x38\xef\xb6\x28\x97\xf3\x61\xdf\x33\x82\xf6\x2d\x7d\x4e\x6e\x5a\xbc\x0f\xce\x98\x33\x4b\x17\x62\x2a\x9d\x77\x07\x99\x74\x1a\x8e\x00\x7c\xe3\xae\xca\xf2\x12\x93\xcd\x90\x00\xb0\x47\xa7\xcf\x46\xb9\xe0\xda\xf6\x3e\xd9\x26\x5b\xb5\x4d\xf9\x92\xb9\x30\xcc\x42\xf3\x92\xdd\xee\xbb\x1a\xe8\xa7\xb7\xb8\xf1\x0f\x89\x4b\x01\x4d\x2a\xc1\x0d\x3e\xdf\xbf\x3f\x20\xd8\x3c\x05\x71\x1d\x65\x2e\xa7\xf7\x47\xbe\x67\x72\x05\x31\xe9\xee\xd3\x8f\x0b\x42\x6f\x8d\x70\x45\x59\xa6\x87\x2b\xca\x61\x95\xef\xb6\xb3\xca\xf2\xa8\xdd\x5c\xc0\x79\xe5\x6f\x33\xaa\x7c\x64\x38\xae\x25\x33\x1f\x41\x51\x9d\xac\xf7\xa1\xa8\x1e\xc5\x3b\xe5\x89\xfa\xfc\x3f\xb7\xe6\x3a\xf0\xbf\xdb\x6a\xf9\x4a\xaf\x27\x3a\xa0\x41\x7f\x42\x18\xb8\x47\x18\x1e\xd3\x0f\xe0\x27\x92\x15\xf5\xbe\x61\xe8\xbb\x03\xdb\x30\x19\xce\x8f\x7f\xa1\x9d\xa9\xb2\xc3\xde\xf0\xfa\xd4\xcf\x03\x01\x15\xe2\x1a\x63\xcc\xff\x2a\x9c\x07\x86\x83\x9c\xfc\xf3\x20\x91\x4e\x79\x6d\xf3\x80\x86\x66\xe8\xde\x62\x1e\x07\x91\xa7\xff\x29\x99\x79\x80\x10\x23\xa4\xdf\x09\x05\x76\xd5\x3d\xc5\x84\x02\xbb\x4b\x14\x4c\x18\xae\x87\x4c\xa5\x79\x70\x75\xd4\xfe\x1b\x91\x79\x1c\xc1\x71\xa6\xf7\xb7\x21\x91\x95\xd3\x33\x21\xbc\xde\x0d\x5a\xfa\x21\xf0\x9e\x9a\xca\x2c\x0a\x71\x17\xcd\x23\x05\xde\x93\x5a\x40\x46\xbd\x22\x5b\xe7\x41\xb0\x85\x6c\xe5\x79\x90\xca\xb0\x3e\x15\x62\x69\x74\xd7\xb7\x70\xa4\xa9\x18\x28\x0d\xf3\xbf\x32\x51\x98\xf2\xaf\xce\x23\x47\x83\xfd\x7d\x80\xf9\x64\xea\x4e\xf8\xae\x87\xd2\x08\xe6\xb1\x0d\x07\xdf\x64\xcd\x23\x9f\xe0\xea\xfa\xfd\x40\xeb\xfa\x7c\x01\xb5\xfd\x79\xe0\x8e\x88\x1d\x7f\x21\xe0\xa1\xf4\x05\xa2\x2c\x93\xe7\xa4\xc4\x24\x67\x4d\x62\xf9\x83\xc2\x55\x39\xa4\xad\xdb\x04\xd2\x9e\xc0\x92\xe6\x51\x40\x8c\xaf\x6a\xd2\x36\x56\x9a\xdc\x48\xf3\x00\x89\xef\xd3\x64\x6e\xa7\xe4\x81\x9d\x47\xf8\xb1\x9a\x97\x05\x51\x98\xd2\x9a\x13\xce\xee\xfd\x80\xbf\xc8\x56\x9a\x7a\x61\x1b\x37\x59\x60\xcb\x13\x52\xef\x21\x8d\x32\x0f\xee\x9e\x64\x41\xcf\xa3\x92\x63\x3b\xfc\x3c\xc9\xe8\xae\x7f\xdb\x42\xf5\xd3\x20\x90\xf7\x84\x99\x35\x8f\xc6\x2c\x16\xad\xa2\x70\x84\xe9\xcc\x3c\x0f\xe0\x90\x85\x7c\x31\x21\x01\xdf\x0f\xb8\x86\x8e\xf3\x4a\x5f\x24\xa6\x72\xb4\xea\x2a\xc9\x20\x2c\xff\xa2\x72\xe6\x11\x86\x90\x78\x65\xe6\xd1\xc0\xd5\x4d\x9a\x32\x7c\x69\x0a\x1a\x9d\x07\x9c\xa9\xa9\xe8\x79\x92\x3d\x04\xa1\x30\xe1\x00\x9f\xd9\xdb\x00\xbb\x65\xba\x7f\x84\x4f\x2a\xb0\x76\x1e\x5c\x85\x89\x80\x64\x1e\xb8\xc6\x9a\x97\xf5\xf8\xd3\xd8\x6a\xc0\x68\xac\x4a\xf5\x9f\xbb\xb2\xe2\x35\xb4\xed\x9a\x39\x3d\x1c\x61\xd7\x34\xb7\x70\x80\xfb\xd7\x35\xc2\x10\xe5\xb5\xee\x0a\x08\xb0\xa9\xfe\x00\x09\x96\x53\xcb\x3e\x38\xc4\xdd\x62\x72\x45\x3e\x13\x44\xae\x48\xf2\x22\xc6\x2e\x6a\x1e\xb1\x6d\x17\x95\x8f\xa0\x99\xc1\x52\xeb\xff\xff\x1a\xac\x06\x6c\xbb\xa8\x64\x8f\x00\xa4\x06\xe3\xd3\xe2\x19\x21\x3d\x6e\x21\xdc\xbd\xae\x00\x00\x01\x45\xed\x4f\x48\xc7\x8b\x7c\xec\xf3\x08\x57\x5b\x1b\x7e\x01\xc7\x88\xa5\x75\x80\x2f\xb7\xa1\x2f\xae\x60\x64\xd4\x98\xae\x50\xd2\x7e\xe1\xc7\x17\xfd\x7f\x1c\x09\xfc\x7f\xec\x4b\xcb\x6b\x9c\x75\xcd\x1b\x17\xc3\x2a\x7b\x1f\x45\xfc\xa7\x65\xcf\x49\x7a\x4c\xd6\x07\x22\xc8\xa7\x59\x34\x04\xe2\xc0\xa7\x1c\x80\x28\xea\x01\x01\xa2\x3a\x79\xce\x23\x82\x7e\x3e\x1f\xbc\x68\x90\xff\x0f\x51\xe3\x69\xc7\x3d\xf7\x91\x4d\x27\xd2\x52\xeb\x1a\xee\x74\xe9\xf4\x19\xdc\xe9\xa3\x79\x19\xc1\x9d\xde\xac\x3f\xb6\x65\x56\x8b\x7b\x74\xfd\xf5\xc8\x0f\x6c\x95\xf9\x11\xcf\x70\x09\x09\xa6\x67\x06\x57\x7a\xf7\x4e\xbe\x42\xe0\x2f\xd7\x18\x93\xa2\x26\x5e\xd1\x03\xb7\x28\x92\x9f\xd5\xc3\x6d\xca\xd5\x66\x05\x41\x12\x6a\xf5\x46\xc2\x92\x5b\xd6\x0f\x70\x11\x7d\x64\x1f\x39\xa8\xc3\x3a\xfe\x17\x1d\xd0\x90\xfe\x42\xb4\x59\x5f\x10\xe8\x54\x3d\x24\xe4\x9c\x0a\x37\x75\x1e\xe0\x17\x36\x0b\xe3\x1f\x48\x1a\x43\x0d\xbc\x41\x4c\xf4\xce\xc6\x1d\xd6\x2c\x7c\x23\x30\xa9\x7b\xa3\x80\x70\xd0\x2c\xed\x6f\x74\xe6\xa7\x42\x16\x81\x57\xdd\xfd\xc3\xc1\xe3\x0f\x44\x83\xd4\x81\x7b\x2f\xeb\xc3\x0d\x24\xa8\x75\x79\xa3\x3e\x9c\x63\xdd\x41\x0c\xc3\xe4\x55\x0f\xd2\xd2\xe8\x9f\x1f\x68\x80\xa5\x25\x10\x0a\x87\xf7\xdd\x13\x0d\x70\x85\x4f\x54\xe0\x07\xc8\xe2\xf2\x22\x81\xe0\x30\x79\x8e\x41\x1b\x54\xf0\xdc\x3c\xc0\x60\xf8\xa8\xa3\xb8\x61\xf4\x90\x02\xc1\xa0\x9b\xfc\x79\xc4\x05\x63\xff\x27\x84\x81\x79\xbc\xc1\x72\xee\xda\x46\xbc\xad\xfe\xbd\x13\x7e\x6b\x0d\x68\x78\xbc\xba\xd5\xc9\xb6\x54\x97\x97\x20\x76\xea\xe8\x5e\xc3\x2f\x6b\xdc\xc2\x98\x7c\x59\x91\x6c\xce\x74\x84\xdc\x28\x2a\x6f\xe1\xac\x64\xf6\x99\x60\x23\x2e\x9f\xe7\x41\x2e\xd4\x8c\xc1\x2c\x9f\x0f\xed\xa9\x74\x10\x9a\xa6\x1e\xc1\x34\x5f\x14\x3f\x3a\x53\x82\x46\x76\xb8\x1c\xe3\xab\xef\x6f\xb3\x33\x2f\x6d\x6a\x98\xe8\xeb\x1c\xfe\x3f\xc6\x37\xfb\x03\xa4\x54\xfc\x77\x24\x9c\xc1\x44\x3f\x6c\x81\x04\x13\xbd\x5c\xa8\x33\x98\xe8\x87\x38\x29\x27\x54\xf4\x59\xc0\xf4\x33\xa5\x0b\xf6\xdd\xa6\xf2\x43\x05\xff\x0d\x69\xca\x31\xa4\x6a\x01\xc4\x4d\x0a\x6b\x9e\x50\xd3\xa7\xd1\xfd\x40\xc1\x7b\xa3\x49\x4d\x25\xfa\xac\x06\x14\xf8\x80\xab\x3e\x18\x2e\x2a\xa1\x3a\xcc\x54\x60\xc9\x6c\x6a\x01\x41\x4b\x33\xfb\x05\xb0\x5c\x65\xcb\xa7\x8a\x97\xb8\xe9\x83\x35\x2a\xec\x6a\x22\x24\x16\x82\xdc\x99\xb0\xe1\xef\x07\xfc\x06\x09\xa4\xcd\x35\x92\x87\xfd\x29\x33\x06\x6e\x61\xb8\xb8\x6c\x1b\xc3\x86\x3f\x7d\x9e\x49\xe1\xe2\xb2\x75\x9d\x70\x71\x29\x16\x7b\x26\x70\x94\x14\x70\x3f\xa1\xcf\xdf\x2f\x68\x14\x81\xb6\x50\x16\xee\x4c\x0d\xfa\x2b\xcf\x33\x38\x4b\xc3\xf3\xdc\x70\xb7\x48\xc9\x27\xa0\x2a\x5a\x53\x7d\x64\xf1\x5a\xb8\xa6\x40\xa6\xf0\xca\xed\x61\x47\x69\x8c\x00\xa6\xb0\xd9\x04\x79\xfe\x96\x04\xfa\x60\x47\x78\x7a\xeb\x60\x09\x8e\xee\xbd\x03\x73\xc6\xf4\xb4\xc4\x35\xaa\xae\x29\x27\xfc\xfa\xdd\xa6\x5d\x0a\xa4\xa6\xe9\x17\x62\x10\xbd\x9b\x06\xd2\x4b\xf2\x36\xe1\x04\xfb\x2c\x14\x7c\x5c\xad\xf9\x7f\x02\x32\x96\x5a\x44\x66\x8d\xa2\x32\x27\xf4\xfb\x45\x79\x15\x33\x11\x1b\x3d\x65\x5b\x27\x12\x6b\x3e\x5b\x67\x00\xa6\x7e\x68\xd6\xb7\x29\x98\x84\xe6\x3e\xd3\x4c\xd1\x60\x0d\xea\x64\xe9\x7b\x15\x00\xa1\xdc\xbc\x6c\xc2\xe5\x25\x47\xe5\x84\xe0\x3f\x25\xef\x0d\xc0\x31\x04\x0a\x3a\xd3\x8a\xcd\xe6\xdd\x0b\x86\x63\xf3\xb2\x01\x0c\x2a\x79\x6f\x84\xe9\xf6\x69\x33\x40\xc9\xc2\x2c\x98\x69\x41\x49\x70\xb8\xc2\x1f\xa8\x3d\x6a\x51\x24\x0a\x7b\x9a\x4f\x82\xeb\x74\x20\x48\x5c\x93\xda\x18\x4d\x27\xbb\x5b\x3a\x34\x91\x07\x3c\x94\xcc\x3d\xd3\x09\xa8\xef\x52\x83\xf0\x59\x15\x77\x79\x5b\x62\xbd\x0d\x4d\x0a\xc0\x4c\x8a\x9a\x99\xe9\x82\xc1\x76\x8d\x7f\xd1\x38\xe9\x42\x81\x0e\x2d\xa9\x88\x93\x1a\x96\xa7\x11\x27\xe5\x25\x43\x9c\x54\xf5\x12\x89\x38\x29\x1d\xe3\xd3\x36\x82\x8a\xd0\xc5\x66\xfa\x31\xfe\x52\xa8\x09\x24\x8e\x8f\x82\xd8\x46\x50\xcd\xde\xc6\xa4\xee\x24\xf7\x9e\xcc\x9c\xec\xe1\xfe\x45\xef\x5d\x46\xc3\x29\x2f\x7b\xa6\x1f\xa2\xc8\x1a\xe5\x47\xcc\xac\x1c\x0b\x09\x06\xc7\x31\xbc\x49\x20\x04\x53\x92\xf1\x4c\x04\x56\x25\x4f\xd0\xdf\xa5\xa0\x57\x04\x04\x60\xd5\xf2\xfb\xde\x43\xa0\x6b\xdc\x99\x9e\x83\xe0\x67\x55\x00\x39\x57\xb6\x7c\x07\x1e\x52\xae\xf2\x99\x1e\x62\xdb\x8a\x9f\x8f\x0f\x7a\x4c\xb8\xa5\xeb\x16\x55\x4f\xf4\xd9\x93\xf2\x90\x12\x50\xfc\xc0\xcd\xc5\x98\x06\xf1\x0d\x72\x54\x97\xc1\xe8\x94\x3b\x2a\x01\x79\x6c\xbf\x42\x22\x97\x67\x0c\xcb\xff\xc8\xe5\xf1\x98\x45\x30\xb5\xa0\x58\x67\xfe\x73\x78\x15\x95\x4b\x3c\xd0\xf5\x03\x09\x61\xc5\x65\xe8\x60\xb4\x4f\xf3\x36\x2c\xaa\xe2\x9c\x66\x3e\x06\x94\xbb\xae\x70\x12\x32\xe9\x0f\x06\x95\xc8\x52\x99\xf8\x3b\x0d\x41\x3e\x62\x8c\xb4\xf1\x33\xd4\x13\xd9\x0d\x0a\x8f\x97\xd0\x5d\x67\x06\x43\xb2\x6a\x50\x73\x78\xbc\x74\x3d\x39\xf3\xb6\x3d\x4a\xff\x3c\x70\xc1\x18\xeb\x1a\x03\x5a\xd5\x5f\x8c\x51\x94\x46\xc8\x09\x7c\xd9\xe2\x0a\x39\x40\xb8\x05\xdc\x7d\x0d\xdd\x3f\xcf\x8c\x0f\x4b\xb7\x71\x33\xe7\x58\x19\xd3\x3f\x90\x9b\x20\xe1\x94\x09\xd6\xb2\xac\xc8\x04\x6b\x89\x03\x72\x66\xa8\x20\x84\x87\x38\x73\x8e\xcd\x30\xfd\x02\xee\x69\xcf\x23\x08\x91\xc9\xd3\xb0\x6d\x97\x24\xd8\x9b\x99\xc3\xc7\xa5\x7b\x9e\x99\x83\xdd\x79\xf8\x85\xb0\xc7\x5c\x1e\x50\xc4\xba\x82\xe8\xa2\xdf\x27\x19\x44\xf2\x27\x47\xac\x96\x3d\x52\xb9\x44\x17\x5d\x66\x69\xca\x76\xc9\x95\x85\x26\x53\x24\x6f\x63\xa7\x88\x1e\x75\x66\xf2\x86\x87\xb7\x6b\xae\x78\x97\x9b\x1f\x88\x2f\x7a\x69\x56\xbe\xe8\x79\xaf\x8c\x91\xf4\x76\xc6\xa1\xe4\x73\x5d\x6e\xa0\x9e\x0d\x97\x49\xf2\x92\x8e\xca\x2d\xde\x57\x97\xc9\x89\xb2\xc8\xcc\x3d\x3c\xa9\x92\x48\x19\xd3\xe3\x98\x2e\x8f\x78\x40\xeb\x04\x7a\x68\xd1\x49\xcf\x4c\x80\x96\x55\x4a\x26\x47\xb7\x7c\x2a\x20\x6a\xde\x9b\x69\x30\xcb\xde\x4c\x23\xf2\xdc\xf4\xfe\x08\xb8\x56\x8d\xf1\x00\x22\x57\x26\x6e\xc6\xae\x38\x8e\x7f\x72\xa9\x65\x1c\x50\x4a\x3d\x9d\x39\x1c\x50\xf6\x5d\xe4\x6d\x85\x34\x05\x06\xcd\x3c\xb8\xe6\x72\xeb\x07\x00\xc0\xcb\xad\x01\xfc\x56\xc3\xb7\x8d\x90\x76\xc8\xf5\x9d\xb7\x8d\x91\xb3\x07\x0b\xe2\x87\xf1\xd9\x86\xb3\xf2\x82\x46\x63\x1b\x21\x55\xd8\x8b\x33\x87\x11\xa2\x34\x8a\x99\x27\x94\x6b\x32\x4a\xf2\xbc\x20\x76\xd6\x70\x91\x1e\xec\xe0\xe2\x99\x67\x04\xc6\xf8\x85\x87\x0a\xfc\x7f\x34\x59\x15\x84\x15\x33\x2d\xcd\xb6\x15\xd3\x0e\xaf\xd9\x40\xa2\xf6\x92\x5b\x83\xff\xd5\xe4\x6d\xe5\x34\x45\x0a\xcd\xbc\x18\x52\x19\x7a\x79\x1b\x31\x45\xf1\xe1\x33\x2f\xc0\xaa\xa4\xd5\x73\xf8\x9f\xa6\x25\xcf\xda\x2d\xb4\x37\x3f\xc7\xc5\xde\xb4\xa4\x39\x13\x0f\xb8\xbc\x07\xd5\xee\xf8\xfc\x47\xff\xa5\x41\x3f\x89\x95\xb2\x24\x0a\x33\x48\x10\xc3\x33\x6f\x33\xa8\x1d\x4b\x2d\xd8\x66\x50\x13\xbf\xc4\xcc\xdb\x0c\x6a\xbe\x7f\xc8\xe7\x45\x97\xfd\x41\x72\xb4\x2d\x27\xc0\xbf\x1c\x7e\xfc\xe1\x71\x8d\xc8\x49\x2c\x95\x37\xed\x75\xf0\xbf\x3e\xc7\x4d\xa1\xa0\x30\x66\x8e\x60\x31\x91\x7a\xce\x1c\x84\x18\x3a\x84\xe5\x8b\x01\x90\x95\x90\xaf\x41\x85\xea\xdf\x15\x53\xe4\x0a\x17\x98\x67\x6a\x3f\xee\xaa\x31\x2d\x97\x08\x69\x5f\x1e\x90\x30\xd5\x6c\x9a\x65\xee\x1e\x3f\xbb\xf6\x8a\x2e\xaa\xfc\x8b\x29\x72\x39\x5a\xa8\x16\x91\x25\x3d\xfc\xfe\x2f\x5a\xa8\x0f\x46\x66\xdc\x74\x13\x7f\x4c\x81\xcc\x8c\xcc\x4d\x63\xb2\xfa\xfa\xd1\x00\xef\xbc\x5f\x64\x22\xea\xfd\x3b\x16\x91\x0e\x38\xf9\x4e\x44\x9f\x68\x92\xee\xcc\x22\x52\x05\x77\xd9\x65\x99\x21\x99\x8b\x49\xfb\x61\xf3\xdd\xf6\xff\xd5\x1f\xe8\xf1\x01\x75\xe9\x1e\x04\xec\xf8\x03\x74\xf1\xd3\x22\x78\x16\xa6\x9f\xff\xd1\x00\x7f\xe0\x8e\x0a\xd5\xe5\xf0\x68\x7d\x5a\xb8\x0d\xa3\xe9\x8d\xf7\xb0\x8c\x2c\x59\x1f\xe6\x40\x27\xa2\x1c\x41\xf5\xd3\x66\xc9\x43\x17\xad\xb1\x9f\xd8\x47\x9a\x04\x22\xc0\xb2\xc7\xf8\x21\xe4\xc8\xdb\x02\x90\xd1\xc3\xcb\xee\x09\x40\x08\xd7\xf7\x12\x43\xa5\x1e\x46\x4c\xbd\x3d\x2a\xf9\x85\xe1\xd3\x1b\xf5\x8d\x06\x68\x95\xbc\xac\xe3\xec\xe7\x43\x7c\xdb\xca\x79\x17\xf7\x2b\x6a\x41\x5c\x9e\xda\xc7\x94\x5f\x76\xaa\x2c\xf6\x72\x44\x13\x64\xd5\x94\x03\xa0\x0d\x0d\x5a\x39\x90\x76\x9a\xd6\x72\x04\xc5\xc7\xbf\x90\x12\xcc\x72\x04\x2d\xb6\x5f\x26\x66\xab\xf8\x63\x9d\xd6\x74\x95\xa3\x7f\x2e\xb3\x44\x24\xe8\xca\x81\x1c\xca\x6e\x3d\x4b\x44\xe3\x55\x8e\x58\x22\x32\x58\xca\x11\xe9\xac\x6e\x00\xa2\x54\x82\xa2\xa4\xbf\xee\x4f\xfd\xc0\x1a\x71\x0b\x23\x4b\x4f\x11\xf4\xb3\x24\x9a\xd8\xfc\x02\xfb\xb0\xb8\x46\x06\x58\x6b\xaa\x24\x9a\x28\xa7\x5f\xc9\x81\xe8\xac\x2e\x00\x48\x63\x93\xa9\x64\x10\xf3\x35\xe5\x05\x2b\xd2\x1e\xb1\xb2\xad\xc8\x66\x51\x55\xc2\x8a\x14\x69\xea\x2c\xb0\xc8\x26\x89\xae\x12\x2e\xb0\xa5\x6d\x51\x0a\x5d\x94\xf0\x2c\x61\x46\xda\x90\x2d\x85\x6d\xd0\x5d\x03\xab\xb0\xfa\xff\xc6\x85\xbb\xba\x1c\x66\xe6\x72\x85\x23\x2a\xf4\x0f\x90\x96\x79\x19\x94\xb8\x34\xf2\x07\x18\x43\x89\xa2\x12\x89\x7e\xf6\x7d\x94\x12\x83\xa8\x2e\x54\x76\x76\x73\x99\x16\xcb\xca\x2b\xa0\xce\x65\x4f\x52\x8d\x49\xd3\xac\x86\x1d\xba\x92\x1f\x88\x2c\x60\x97\x63\x10\xff\xdb\x68\x05\x38\x9a\x6f\x39\xc6\x50\x3d\x68\x19\x66\x42\xf5\x38\xae\x4e\x97\x44\x47\x89\xab\x53\xaf\xec\x16\x01\xd7\x7e\x81\x95\x2b\x0a\xd0\x59\x1a\xf2\xdb\xeb\xa2\x45\x8b\x54\x41\x8f\x21\x50\x05\x60\xc7\x08\x30\x67\x96\x1e\xb3\xea\xbd\xd1\x0b\x93\xa0\x26\x6f\xcb\x37\x8b\x13\x66\x96\x8e\xfc\xee\x2e\xb3\x37\x75\xfa\x28\xdb\xf0\xad\xd9\x82\xa0\xb3\x37\x25\x8d\x4b\x67\x6f\xea\xcc\x57\x7a\x4c\xaa\x1b\x74\xb1\x6a\xdc\x01\xe6\x54\x17\x81\x65\xdb\xc5\xd5\xce\xe3\x02\x56\xac\xbd\xcf\x65\xf0\x3d\xc9\xca\x32\xd8\x68\x3a\xfc\x94\x41\x7d\x32\x12\x0a\x96\x6a\xb2\x60\x9b\xf4\x4f\xa7\xa7\xc2\x55\xe7\xe1\x29\xdd\x96\x66\xf6\xe5\x6e\x99\x81\x28\xed\x32\x37\x50\xd2\xc8\x65\xa1\x1f\xa5\x2f\xcb\x62\x0d\x4a\x14\x17\x72\x06\xac\xbe\x4a\x5c\x64\x2e\x2f\xca\xb0\x13\x2d\xab\x16\x1d\xf2\x2e\x59\x74\x48\xa2\xbb\xc4\x3d\xe5\xf2\x36\x59\x2c\x11\x2f\x5a\xa0\xd1\x87\x6f\x20\xca\xc9\x1a\x91\xdd\x55\xb8\xa8\x1c\xcb\x73\x7a\x82\x96\xe8\x1a\xcf\x50\x60\x2e\x47\x13\xd5\x84\xb0\x03\xa7\xdf\x67\x8e\x65\x03\x94\x13\x1f\xa5\x17\x61\x18\x72\xb2\x6a\x0a\xe8\x04\xbe\xa5\x2b\x57\xe0\x33\xa8\x07\xd0\xc2\x8e\xf5\x79\x81\x45\x38\xff\x05\xca\x66\x96\x8b\xa4\x06\xef\xf2\xb0\xf2\x74\xbe\x2e\x40\xe3\x66\x19\xf6\x05\x67\x9d\x10\xa0\x66\x89\x4b\xc9\xe5\x25\x46\x80\x59\xb2\xec\x27\x27\xc0\xee\xae\xf2\xdb\xdd\x53\x8c\xfd\x2c\x61\xe4\x2d\xff\xdf\xf8\x5f\xf5\x05\x58\xc2\xf2\x94\x42\x9b\x36\x3f\x15\x04\x71\xb0\xc6\x23\x1c\x6c\x6b\xba\xc6\x1f\x41\xee\xea\xd2\xb6\xea\x92\x72\xfd\x67\xd9\x46\x59\xcb\x56\x06\x01\x8f\xe0\xd0\x9e\xb2\xad\xb2\x26\x08\x8f\x59\xee\x58\x95\x1e\x84\xb0\xca\x74\x20\x2b\x10\xea\x0b\x88\x70\x96\x9b\x6d\x65\x61\x7f\x87\xfe\x91\x69\x5c\xb6\x15\xd6\xb2\xd5\x0d\x01\x68\x1f\x1d\x8d\x15\x96\x93\xff\x67\x5f\xfa\xfd\x07\x13\xc6\xb2\xfc\x39\x79\x5e\x43\x40\x62\xe2\xe1\x41\x7d\x63\x12\xd4\x65\xc0\x75\x84\xf8\x39\x4b\x80\xeb\x58\x41\xbf\x90\xdb\xeb\xac\x52\xb1\x80\xa6\x38\x6d\x66\x3d\x62\x16\x8b\xca\x39\x1e\xe8\xfa\xa1\x50\xc3\x52\x19\xdf\x54\x76\x8d\x2d\x5e\x18\xfa\x21\x06\xdd\x5f\x88\x6d\x96\x55\x0e\xb0\x47\x3f\x8f\x24\x90\xce\xaf\x07\xa9\x0e\xdd\xef\xdf\x58\x79\x2e\x3f\x1c\x1e\xdc\xe2\x98\x02\xbd\x9f\xa2\x8b\x6e\x21\x56\x4e\x96\x2c\xab\x29\x26\x5d\x0d\xc0\x68\x51\x20\xf7\xac\xe9\x26\x64\xf9\xbf\x39\xac\x99\x0e\x79\xc8\x32\x8e\x25\xed\xac\x9a\x51\xf8\x92\x13\x75\x1b\x31\xd3\xe1\x02\x15\x13\x24\xcb\xca\xaa\x64\x19\x2a\xc9\x6d\xd6\x6d\x30\x34\xe5\x6e\xcc\x8a\xfe\x17\x88\xc6\xac\x25\xda\xa3\x19\xa8\xb4\x27\xbb\x4c\xa8\xa9\xdb\xd7\x62\xcd\xe9\x7f\x52\xfe\x7c\x17\x5e\x1b\xc9\x37\xae\xaf\xcd\x38\x49\x68\x00\xda\xe2\x03\x1a\x00\x88\xdf\xb3\x07\xb4\x85\xc7\xd3\xff\xd3\x60\xd9\x17\x15\xb2\x30\x8b\xa6\xda\x63\x4d\x79\xca\x83\x2d\xcc\x6b\x0c\xbf\x94\xd8\x81\x67\xed\xb1\xa6\x86\x6b\xec\xe4\xe7\xaa\x8b\xa8\xdf\xec\x2e\x71\xe3\x35\x7d\xdb\x5b\x41\xf3\x59\xdd\x15\xfc\xb8\x1d\x76\x99\x7d\xe1\x45\x05\x98\xfb\x3c\x24\x7b\x2a\x89\x83\x4a\x84\x9f\x75\xc4\xaa\xf2\x2c\x0f\x60\xb2\xba\xcb\xd1\x49\xa9\xe0\x3a\xd8\x38\x32\xdf\x2b\xf1\x53\x53\x68\x2e\xb3\x0e\x70\x5b\x65\x63\xd4\xc1\xbc\x7a\x14\x70\x5f\xf9\x78\x53\xb1\x09\x1c\x89\x53\xb9\x43\x9b\x87\x8c\x82\x3a\x62\x9e\xf4\x01\xb0\x06\xaa\xac\xf3\x3a\x63\x5e\x5d\x8e\x51\x5b\xf3\x5f\x14\x4e\x25\xb6\xc9\xfa\xb5\x4e\x66\x5d\xfa\xa1\x06\x32\x9d\x5d\x3f\x15\xdf\x53\xf6\x3a\xdf\x36\xc3\x3a\xbc\x6f\x56\xcc\xba\x2a\xc0\xb5\xe4\xdb\x8b\xca\x05\xda\xf4\x09\xb5\x2e\x42\x00\xdc\x1f\x7c\x4b\xbe\xc2\xaf\x78\x86\x94\x67\x3e\xeb\xb9\x8d\x2c\x91\xe0\xcd\x1a\xbc\xec\xb2\x2a\x2b\x8e\x94\xe9\x13\x67\xc5\x93\xe2\x80\xb3\x1a\x69\x74\xd2\x1f\xf5\x62\x00\x65\x99\x57\x74\xaa\x60\x57\x66\x45\xa7\x4e\x1f\x38\xeb\xd6\xa9\x63\x78\xcc\x2e\x96\x9d\xa7\x9c\xa0\xed\x69\x3f\x43\xbd\x10\x66\xee\xd2\x56\xba\xcb\xa7\xfe\xfa\x0b\x59\xa2\x0a\x49\xbc\x3b\x3c\xe5\x3f\x0e\x1b\x32\xa4\xeb\x2f\x5a\xa8\x06\xfd\x22\xa9\x5b\x2d\x26\xb0\x67\xda\x91\x51\x7f\xb1\x31\xd4\xc5\x1b\x85\xa3\xe8\xac\x7a\x83\x77\xef\x31\x05\x7e\x6e\xda\xed\x5e\xf1\x9c\x64\x1d\x01\x2b\x9e\x91\xcf\x56\x26\x73\xad\x5a\xbc\xdf\x31\x04\x32\xd5\x2b\xd0\xb9\x76\xc7\x55\x1c\x1b\xca\xce\x9c\x15\xbf\xc5\xa7\x8b\xa4\xae\x4d\x9f\x87\x2a\x3a\xd6\x07\xb0\xfa\xc4\xbe\x52\x93\x9f\xa0\x15\x72\x05\x7f\x90\x8a\xfe\x81\xb8\x43\x8b\x27\xe8\x51\xac\x84\x6b\x28\x61\x7f\xf0\x65\x27\xc8\xd0\xab\xb0\x9d\x7c\x14\xd0\x1b\x5d\xb4\xca\x7a\x99\x65\x7d\xb0\x71\xb2\xf7\x69\xa5\x45\xac\x8a\x34\x56\x4b\x31\xc8\xb2\x5b\x1a\xc1\x2a\x4a\x8e\x9a\x2d\x91\xd3\xab\x2e\xb6\x14\xfc\x5d\xfe\xff\x24\x00\xcc\xef\x3f\xbb\x85\x9a\xa4\x96\x68\x90\x8e\x98\x8d\xfb\xa1\x69\xa5\xdc\x08\x82\x4e\x12\xf9\x2d\xff\xb5\x48\x5f\x24\xb9\xdf\x8e\xe6\xb6\x95\xe6\xb2\x19\xd1\x38\xe9\xdb\xb3\xd0\x32\x57\x58\xd5\xff\xc3\xdf\x2e\xe1\xd7\x4a\xf0\x11\xba\x8c\xf0\xd3\xc2\x6d\x85\xad\xa8\xbd\xdc\x38\x55\xfb\x10\xdc\xf6\xa9\xba\xd9\x17\xd2\x40\xcf\x91\x6c\x69\x84\x27\x0b\x5f\x6f\xb6\x9a\x98\x32\x55\x07\x5c\xdd\xb4\x4e\x6b\x1c\xba\x85\x7b\x32\x1b\x79\xf6\x87\x47\x9c\x48\x17\x03\xe4\xcd\x56\x69\xb0\x4e\x98\xad\x12\xe6\x28\xfd\xd1\x2a\xc9\x5d\xc3\xff\x33\x25\x7e\x3f\xb4\xb6\x64\x53\x6b\x48\x4f\xd9\x61\x0d\xc8\x57\x63\x6d\xcd\xd6\xc2\xac\x68\x2a\xb3\xec\x9b\x5f\xf8\x6b\xa1\x7f\x00\x40\x22\xb9\xcc\x90\x4a\xa3\x35\x0e\xe5\x02\x16\x99\x8d\xc4\x2a\x51\x9d\xcf\x86\x16\x9f\x96\x15\xad\x23\x3e\x25\x9f\x5b\x8f\x21\x50\x8b\x88\x58\x9e\xfd\x5f\x08\x09\x66\x03\x0a\xc0\x01\x69\x8d\x4c\x7f\x87\x26\xb5\x01\xc3\xa5\x57\xe4\x88\xd6\x48\x38\x37\xe0\xf6\x8a\x9b\x3f\xb0\x43\x25\x47\x5a\x90\x7e\x5b\x4e\x34\x6e\x83\x84\x7b\x32\x5b\xa8\x53\xd9\x10\x8d\x33\xb8\x90\x60\x66\x1b\xa0\xd1\xc9\xb6\x6e\xd0\x7a\x5b\x5f\x37\xce\xe0\xd9\x9b\x6e\x9f\xc1\xf7\x07\x55\xe1\x44\xe1\xe9\xd0\xdd\x48\xc3\x3a\xbc\xab\xb9\x0e\x9a\x9f\x29\xe4\x94\xee\x30\xcc\x46\x1a\xd6\xfc\xac\xf2\xad\x93\x97\x70\xc1\x66\xe3\xba\x47\x50\x2d\xb3\x71\xdd\x33\x3f\x73\x0c\x33\xf8\xf4\x36\xda\x3a\x79\x9b\xd0\x2a\x5f\xe4\x25\x6b\x4c\x38\xa6\xdb\x29\xdc\x16\xa2\xd1\x7d\xe6\x32\x46\x08\x19\xb3\x11\xec\x3b\x05\x6b\x32\xdb\x19\x37\x8c\x9a\xb6\x33\x56\xa5\x6b\xe4\x14\xfe\xd9\x17\x04\xa5\x88\x89\x76\xb6\x93\x48\x21\x77\x89\xeb\x95\xef\x07\x5e\xd2\xef\xd4\x03\x4e\xe5\xb6\xce\x1b\xb7\x23\xd9\xa2\xf1\x8a\x65\x20\x4b\xaf\x85\x92\x77\x0b\x01\xfc\x39\xe4\x86\x6e\xa1\x82\x65\xc6\xb5\xad\x72\xb3\x6d\xd1\x46\x18\x88\x5d\x2f\xed\x17\x1b\x5b\x43\xc8\x29\xf6\x23\x08\x20\x03\x73\x68\x54\x0b\x05\x2a\x3b\xb2\xdd\x6c\x74\x9f\x93\x1b\xec\x60\xcb\xa2\x87\xab\x03\xe5\x6d\xcd\x06\x1e\xcf\x47\x39\x3c\x71\x62\xd3\xfb\x5b\x3f\x4e\xdf\x02\x37\xa2\x40\xba\xce\xb0\xed\xa1\xc3\x96\x95\x6f\x80\xcf\xe9\x7d\x22\x4d\xa7\x63\x34\xda\x1b\xb2\x5e\x3d\x7e\x83\x8c\xcb\x2f\x44\x85\xfa\x00\x41\x21\xca\xea\x9a\x2d\xd4\xa1\x0e\x4c\xfd\xc0\x30\x94\x19\xd6\x8f\xd8\x48\x4b\xe5\x0e\xd4\xa7\xff\x07\x48\x46\xba\xa2\x83\x6e\xe7\xd0\xd1\x1e\xea\x54\xa2\xb5\x27\x24\xe3\x72\x99\xf6\x49\x10\xf4\x3f\xed\xf8\xdf\x80\xf6\x8c\xe0\xd3\x01\xab\xe7\x58\x42\xfa\x3e\x5e\xed\x29\xd2\xd0\xd9\x33\x4b\x48\xea\xba\xe7\x58\x12\xaa\x00\x76\x4b\xc1\xa2\xcc\x4e\x28\xc2\xf4\x6d\x50\x2f\x31\x62\x7e\xe0\x8a\x07\xfc\x03\x73\xbe\xfc\x02\xc9\x1e\x1e\xa2\xc8\x76\x91\xa4\xe8\x15\x5e\x23\x89\x9a\x5e\xc9\x3f\xd7\x1c\x77\x5c\xbe\x2b\xbb\x8c\x5f\x41\xea\xae\x37\x72\xb0\xe4\x3f\xec\x5b\xd9\x8c\xf9\x79\x9e\xf4\xfe\xec\xe7\x69\x70\x95\x17\xa0\x37\xd0\x54\xbb\xcb\x77\x3c\xa0\x41\x6e\x40\x38\x78\xcc\x1a\x9e\x0f\x9d\xca\x3b\x7c\x5e\x4e\x1b\xeb\x7d\x40\xd8\xa6\x31\xe7\xc4\xf7\x99\xd4\x4e\x5a\x57\xab\xff\xa2\x6c\x7a\x8f\xd6\xc8\x5c\xe9\xc4\x31\xd8\xa6\xec\x03\x04\x0f\x99\x37\x9d\xb3\xd7\xf2\x92\xd9\xba\x62\xd8\x47\xdf\x01\x06\xb7\xc3\xba\x8f\x68\x8d\x5a\x3b\x6e\x8e\x2e\xae\x3f\x08\xa1\xfd\xfc\xcb\xf3\xfa\xde\x3c\xa0\x0e\xd6\xf8\x4f\x48\x4a\xbc\x60\x08\x3d\x10\x9c\xef\xec\x13\x83\x4f\x46\x74\x9f\xb4\xa7\xfb\x79\xc2\x75\x74\x6e\xe8\x93\xf5\x22\x8b\xb4\x2f\xb2\xaf\x3c\xba\xa4\xeb\xce\x5a\xfc\x43\xc3\x20\xd4\x07\xb6\x62\xa8\xc7\xa7\x1c\x15\xaa\x7c\x46\x85\xea\x50\x40\xbf\x7a\x40\x49\xa8\xb5\x83\xbd\x03\x23\xee\x9b\x9f\x7e\x92\xed\x24\x07\x7b\x07\x46\xdc\x0e\xf8\x7e\xc6\x82\xf3\x8a\x07\x47\xdc\x1e\xfd\x7e\x32\xa2\xd2\xee\xfd\x22\xcd\xcf\x0d\x06\x37\xce\xc7\xdb\x0e\xae\xb8\xc5\x78\xbf\xc8\x10\x90\xf6\xef\x17\xf9\x68\xde\x21\x17\x0d\xf2\x0e\x23\x47\xa3\x7b\xfd\x02\x25\x6e\x0b\xba\x93\x73\x31\xab\x87\x18\x8c\x14\xdb\xf8\x9d\x4b\x72\x47\x0b\x75\xa0\xc4\x67\xf5\x10\xfc\x18\x92\xe1\x0a\xce\xb0\xc7\x54\x86\x7f\xc2\x73\x4c\x36\xae\x4f\x21\xfd\x17\x23\xa2\xfa\x6e\x46\x44\x7a\xa4\x83\x34\x6e\x07\x6f\xbf\xb9\x43\x91\x1e\xe9\x37\x53\xe4\x1d\x77\x03\x32\xe3\xef\xdd\x67\x60\x09\x68\xc8\xef\x2d\xf7\xdb\xe7\x03\x34\xc8\x72\xf4\xa6\x41\x1e\x81\x00\x25\x71\x83\xc9\xce\xf5\xa5\x47\x7f\x58\x63\xd2\x94\x1d\xe4\xf1\x61\x21\xc4\x0d\xf4\xac\x6e\x21\x39\x17\xd5\x23\x46\x36\xee\x47\x2e\xbf\x31\xe7\x1a\x91\x37\x7a\xe8\xff\xf1\xa9\x7b\x97\x47\x0e\x84\x1b\xcc\x41\xcf\x51\x02\xfd\xfd\x6b\xc0\x7f\x1f\x1c\x90\x84\x09\xf5\x74\x8e\x23\xc0\xf4\xa5\xfc\xc7\x11\x2c\x58\x4d\x65\x5a\x28\xf7\xec\x00\xe8\xd5\x61\xcd\xe3\x60\xdb\x2c\x57\x18\x2d\xee\x2a\x33\x64\x9f\xfa\x59\xa5\xcb\xef\x33\x84\x6e\xe0\x3e\x69\x56\x47\x3c\x8d\x14\x23\xa4\xe7\x41\xfd\x98\xed\xf0\x0b\x04\xbf\x4b\x8c\x0f\xae\x90\xa7\xe5\xf4\xd8\x47\xd1\x32\x3f\x0f\xe0\x53\xc9\xfe\x02\xba\xcf\x59\x78\x23\x41\x34\x21\xcd\x31\xa0\x51\x99\xce\x48\x1b\x09\x07\xb1\xa6\x7d\x10\xfd\x38\x9d\xe3\x36\x82\x68\x45\x5b\x6f\x64\x2e\x62\x24\x7c\x07\x09\xbc\xbe\xc9\x18\x50\x95\xd9\x49\x3e\x72\x74\x52\x0a\x7f\x04\xf1\x8a\xa4\xef\x20\xc3\x37\xbb\xc9\xc1\x82\x72\xfc\x93\xae\x19\x41\x91\xe2\x01\x2a\xb0\xbc\x78\x44\x0b\xf4\x23\xee\x2e\x61\x88\xbe\xc4\x18\x41\x67\xe2\x01\x2d\x10\xdb\xb8\xf7\x35\xae\x2e\xf5\x7c\x85\xd9\x43\xaa\x61\x70\xfb\xfb\x7d\x1e\x72\x12\x4f\x48\x8d\xe1\x94\xf1\x31\xb6\xed\x50\x7c\x95\x37\x1a\xc3\x25\x39\x33\xe2\x24\xea\x8b\xad\x11\xa8\x70\x5e\x94\x2d\xd6\x84\xac\x8d\xd1\x02\x9c\xde\x35\x20\xda\x9c\x16\x32\x08\x6c\xb4\xab\x73\x04\x77\x88\x2c\xca\xd1\xa3\x09\xfa\x42\x67\x0c\x75\x7c\x1f\x9d\x09\xcb\x7e\x1e\x48\xb3\xcf\xff\x8c\xa1\x2c\xc2\x41\x7e\xc3\x74\x7a\xc0\x18\xf1\x41\xb5\x18\xe7\xad\x12\xfb\xe7\x18\x7f\xfc\xdf\xfe\x61\xf7\xd1\x87\xc1\xc1\x85\xee\x74\x74\xf8\x18\x84\x15\x7b\xda\x82\x3a\x44\xd7\x26\x63\xc4\x34\x68\xcd\xcd\x58\xa4\x1a\xa3\x49\x97\xa5\x80\xc7\x0c\x5a\x06\x4d\x23\x4c\x22\xf6\x68\x0f\x68\xce\x7c\xeb\x30\xb0\x00\xec\x8e\x1e\x58\x00\xd3\x79\x9a\x83\xd0\x41\x01\x16\xcf\xb1\x62\x8c\x35\x04\x8b\x75\xa9\xd3\xfe\x58\xcf\xb6\xb2\xdd\x63\x68\xca\xa6\x1b\xcc\x75\xab\x83\xd9\xc7\x19\x0d\xd2\xf7\x20\xfe\xb0\x5b\x6e\xa0\xb0\x3f\xeb\x16\x52\x31\xbb\x3a\x07\xa8\x6b\xb3\x5b\x30\xa0\xd1\x7d\xf0\x1a\x20\xbb\xda\x77\x3a\x40\x51\x9b\xdd\x3b\x0d\x15\x6e\x67\xe8\xb8\xc0\x1c\xf1\x10\x5e\x17\x43\xaa\x2f\x12\xf7\xf6\xf1\x41\x0c\x52\x14\xec\x60\x1e\x3f\x56\x89\x17\xfe\x0f\xec\x44\x2f\xdb\xd0\xf1\xbe\x2c\x1b\x3f\x30\x81\x74\x72\x1a\x71\x25\xda\xbd\x10\xb7\x92\x5f\xdd\x5b\x87\x48\x38\x43\x66\xcc\x01\x28\x87\x9d\xe4\x03\x87\xae\x5d\xd0\x83\xd3\x66\xb7\x80\x47\x89\xdb\x2b\x32\x6e\x96\x95\x3c\xd4\xe3\x8e\x41\xd3\xa0\xde\xd4\xe7\x9d\x08\x56\xab\x5d\x93\x03\xaa\x69\xe7\x5c\x8f\xf0\xbe\xf6\xea\x17\x62\x90\x5d\xa6\xc1\xf2\xdb\x0c\x52\x0a\x8c\x00\x3c\x07\x29\x05\x0e\xbb\x1e\xe1\x8e\xed\x1e\x65\x40\x38\x3e\x0b\x13\x77\xac\xef\xe7\xc6\x0b\x04\xb1\x77\xd2\x1b\x3a\x52\x43\x44\x98\xd8\x67\xef\x12\x26\x36\x9d\xa5\x36\xf6\x79\x74\x0e\x4f\xc2\x1b\x1f\x54\x03\x42\x8d\x3b\x2d\x62\x6e\xad\x5c\x05\x67\x37\xe7\x11\x83\x20\xf3\x79\x92\xcc\x28\x4a\xa9\x39\xff\xd4\x76\x57\x39\x06\x45\x15\x80\xc5\xea\xe4\xa3\x09\x16\x6b\x97\xe1\x31\xc3\x01\xec\xf3\xd8\x44\x2f\xe7\xf6\x2f\xa0\xd0\x73\x86\xd2\x16\x86\xe4\x9c\x28\x6d\x7b\x81\x26\x08\x1a\x76\xae\xce\x14\x8b\x60\xaa\xfc\x72\x65\xab\xe6\x84\x7b\xd8\x09\x66\x13\x70\x75\x3b\xaa\x26\xee\x61\x87\xce\xcf\x1c\xab\x46\x15\xa2\x03\x1d\x03\x3b\x49\x4c\x74\xa4\xfc\x04\x3b\xcb\x37\x8c\xb3\xa0\x0f\x74\x1a\x98\x25\xa6\x70\xb9\x42\x8e\xfc\xc9\x0f\x20\x4c\x3c\x21\x15\xda\xde\xe6\x72\x24\x89\xe8\xfd\x1a\x39\x78\xea\x61\xed\x64\xcc\xb9\x7c\x82\x14\x9b\x55\x66\x15\x8b\x7f\x65\xce\xad\x45\x8b\x73\xa9\xe6\xd6\xa2\xd5\x41\xb7\xb3\x81\xa6\x90\x5c\x0e\x0c\x4b\x8d\x18\x2a\xd1\x97\xcc\x33\x54\xa2\x33\xe4\xe6\x56\x89\x55\x08\x6f\x73\x82\x93\x35\x9d\x10\x3b\x5b\x60\xfa\x6b\x08\x20\xe4\x9a\x76\xc3\x4c\x08\xb9\xa6\x6b\x24\x88\x6a\x79\x91\xee\x13\x76\x13\x8d\xef\x9c\x9d\xd8\x7b\x9d\x37\x26\x4a\xd6\x37\x39\x93\x5b\x5a\xfb\x18\x26\x79\x89\xc9\x73\x80\xbb\xd7\x3e\xf6\x19\x97\xb4\x02\xba\x9a\xb3\x13\x31\xaa\x7d\x37\x49\x4b\xfc\xec\x8a\x38\x95\xfb\x44\x31\xc1\xe6\x9a\xde\x05\xa1\xb6\x87\xf4\xfa\x1c\xd8\xd7\x3a\x16\x4f\x2e\x69\xa7\xc3\xd7\x27\x1c\x61\x87\x4e\x75\x73\x70\x17\xee\x9d\x10\x4e\x61\x47\xbd\xcc\x11\x34\x04\x6a\xf3\x80\xea\x52\x5a\x73\x8e\x48\x0a\xd1\xa0\x70\x70\xf7\x3d\xf2\x24\x31\x71\x8a\xa9\x7e\x4e\x4e\xee\x42\xb0\x9d\x73\x46\x8b\xd4\x02\x92\x06\xa6\x11\x1a\xe6\x8c\xa4\x0d\x15\x81\x30\xf2\x56\x43\xcf\x3b\x2d\x6e\xe2\x13\xae\x87\x5f\x8f\x65\x50\xdd\x22\xb0\x3e\xbd\x94\x17\x44\x08\xde\x4a\xab\x83\xb4\xa5\x06\x72\xcb\x2a\xd0\xff\x39\xcf\x68\xb0\x46\xe4\x8c\x06\xbb\x05\x67\x64\x4e\xab\xc5\x1c\xcd\x8f\xcf\xff\xd1\x22\x9d\xdd\xe7\x49\x62\xa3\xcb\x44\xc0\x7f\xa4\xdf\x35\xf8\xa2\x86\x90\x5b\xd5\x43\x1a\x63\xfe\xb8\x9c\x92\x73\x63\xfe\x08\xb4\xf2\xf3\x3f\xd0\x53\xbd\xce\xd0\xc2\xbe\x88\x9f\x1c\xa4\x9d\xf5\x32\x7f\x50\x03\x79\x23\x70\x70\xf6\xa1\x68\xfe\x70\xb6\xe9\x7a\x6e\x6e\x9d\x5a\x45\x08\x32\xe7\x1d\x23\x62\x71\xbe\x4f\xce\xd5\x07\x8c\x79\x37\x10\x26\xd4\xc0\x3b\xe6\x50\x0d\xe4\x24\x6d\x93\x7c\xde\xa8\x48\xb9\x0a\x26\x1e\xde\x69\x59\x10\x77\xa8\x4e\x24\x9a\x77\xa0\xa3\x69\x44\x9e\x98\x33\xcd\xe1\x03\x21\xab\x54\xe8\xdc\x5a\x3c\xdb\xfd\x35\x51\xe2\x4e\x13\x99\xe0\xa9\x1f\xeb\x5f\xb8\x3d\xe7\x7c\xe1\xa7\x75\x63\xde\x44\x59\xa3\x41\x8c\xd2\xd6\x79\xfa\x81\xbc\x52\x0b\xe3\x7d\x0c\xcf\xcb\x82\x06\x6e\xee\x8f\xb0\x07\x8b\xe0\xa3\x7e\x21\x08\x73\x5a\xcd\xe4\xfe\x75\x7e\xca\x31\x7f\x7e\xfe\x8d\x06\xfc\xd7\xdd\x15\x41\x4f\xc5\xe5\x01\x44\xb2\xcb\x9c\x9a\x75\xfe\x5b\x84\x18\x89\xc6\x66\x2e\x32\xfc\xe6\x94\x29\xba\xd0\xd7\x0e\x6d\x58\x71\x8c\x96\x36\x58\x70\x87\x3a\x85\x64\x71\xe6\xf5\x9d\xf7\x42\x01\x3b\xa1\x62\xe5\x18\xc2\xa5\x72\xc4\xe6\xab\xbe\x8c\xbb\x4f\x9b\x7e\xe5\x78\xff\xbf\x11\x58\xe5\xf8\xdf\xff\x35\x8b\xfa\x55\xa2\xc1\x92\xdd\x6b\x2b\xe0\xcf\x15\xf8\x2a\x28\x6c\x49\x99\xc5\x21\xd5\x19\x1a\x8b\xe4\x3b\xd3\x79\xcf\x85\xc6\x76\xac\xc6\x22\x2c\xfa\x93\x73\xbe\x0a\x96\x6d\xf7\x17\x49\x32\x91\x6c\x5f\x10\x86\x39\x91\x68\xd5\x80\x82\xd3\xf3\x15\x4a\x5f\xb7\xb0\x05\x17\x89\xfe\x87\x5a\xa4\x4b\xca\xac\x86\x60\x96\x64\x5f\x0d\x48\x60\x09\xf2\xd5\x31\xb9\x24\xb8\x17\x31\x48\x46\x2a\x58\x11\x83\xe4\x08\xa0\xd5\xa3\x87\x7e\x21\x58\x92\xfd\x02\x26\xc1\x5c\xfe\xe1\xc7\xa5\xbc\x7a\xb8\xb5\xd5\x70\xc6\xc6\x1a\x81\x86\xa7\x1e\x85\xcf\x58\xc7\x95\x45\x8e\xfb\x67\x15\x86\x2a\x71\xa4\xf9\x0a\x27\xb0\x67\x95\x78\x9f\xe9\x48\xf2\xc5\x99\xd1\xe1\xfa\x6b\x06\x7f\x95\x2b\x80\x6d\x72\xfa\x0b\xbb\x85\xcb\x65\xa0\xc3\x45\x6b\x37\x17\x51\xbe\xc6\x92\x5b\x44\xf9\x7e\x27\x11\x64\xf0\xea\x75\x7d\x02\x75\xe0\x17\x4e\xa0\x11\xbc\x8c\x60\x9a\xae\xd9\xcf\x33\x86\x4b\x87\xc0\x05\x3d\x48\xf5\xc6\x39\x49\xa1\xf6\xc2\xbe\x32\x65\xb5\x78\xab\x8a\x65\xed\xb7\x82\x59\xda\x63\x78\xc5\x4d\x8c\x46\x20\x02\x70\x1c\x10\xb3\xae\xf8\x80\x26\x91\x23\x9e\xb3\xb1\xd6\xd6\x35\xd9\x8e\xfc\x45\x96\xb9\xed\x83\xf5\x2b\x51\xa1\x5a\xf8\x0b\xef\x88\xcb\x01\x3d\xac\x21\xc1\xed\x5b\x8b\x2b\x20\x67\xfb\xf3\x81\x09\xd2\xaf\xdf\x5f\x04\xc5\x6a\xc8\x48\x85\x9a\xe2\x22\x9c\xeb\x26\x0b\xd1\x73\x70\xef\x75\x6b\xcb\x73\xc1\xff\x68\x0c\xaa\x75\xc7\x98\x7b\xe5\xa3\x6d\x8c\x4e\xb4\xee\xf8\x42\xf7\x0f\x0f\x0f\xa8\x0b\x4f\xa0\x65\x6b\xd0\xe3\x4c\x68\xb4\x9d\x85\x3a\xb1\x3f\x6d\x81\xae\x53\x3c\xed\xfb\x4c\xf8\x41\xd8\x5b\xfb\x84\x37\x5a\xfa\x27\x60\x81\xf5\x02\x7b\x20\x5d\xb5\x5e\xec\x25\xd9\x4f\x2b\xae\x2b\x97\x6c\xbe\x15\x8c\x60\x52\x37\xeb\x8d\x55\xec\x39\xc6\xed\x2b\x02\xe1\x79\x92\x72\x6e\x05\x76\x1e\x09\xd1\x35\x54\xe6\x00\x3a\xfd\x7f\x01\xd8\x61\xa9\xbc\x8d\x4c\xe7\x86\x9d\x64\x98\x3b\xe8\xf7\x84\xcb\x7a\x0a\xb3\x76\x9e\x84\xc8\xf6\x4f\x85\x31\x45\x9f\x16\xfc\x68\x81\xbf\x10\x53\x24\x05\x72\x1e\x50\x63\x34\x3f\xf0\xc6\x03\xfa\x66\x0a\xe8\x00\xf5\x31\x41\xce\xa1\x65\x79\xc6\x99\x71\x2d\x3f\xb0\x8f\xb4\x4e\xd9\x38\x13\x28\x25\x9f\x0a\x63\x14\xa5\xa3\xce\x14\xbd\xec\x2a\x13\x7a\x76\xb8\xfc\x23\xa3\xfc\xf0\x27\x89\xf0\x58\xfe\xc2\x13\x0f\xa8\xd7\x1c\x43\x0d\x5b\x75\x12\x73\xe4\x44\x99\x13\xbf\xed\x3a\x0e\xff\x10\x6d\x56\x05\x90\x60\x5a\xa7\x9c\xdc\xcb\x56\x9d\x50\x4e\x08\x44\x84\x61\x3d\xcf\xad\xf5\x66\x93\x1a\x3f\xd1\x7a\x9f\x90\x99\x73\x6b\xbd\xad\x0c\x55\x26\x8d\x42\x9b\xf9\x2c\xb1\x53\xd4\xe2\xca\xca\xf1\xff\x35\xde\xd7\x98\x10\x45\xf4\x89\x89\x3c\x6b\xa0\x17\xbb\x82\x87\x17\xfc\xff\x1b\x2f\xe8\x01\x18\xb7\x6c\x5b\x9d\xa0\xdb\x7c\x02\x95\xce\x96\xa9\xc1\x65\x70\xbd\x1d\xd6\x73\x42\x00\xe2\xf0\xe6\x13\x6f\xae\x68\x0c\xe7\xb9\x4f\xa6\x5b\x9d\xab\x0c\xb8\x8c\xd7\x26\x8a\x77\xfa\x7f\x38\xbd\x7c\x55\x7a\xfe\x71\x7a\xa9\x01\x1d\x7e\x0a\x19\xc3\x67\xc4\xfa\x7a\xd6\x83\x23\xc4\x9b\xa3\x07\x12\x41\xf3\x03\x17\x0e\x24\x0d\x2a\xc4\x9d\x62\x7f\x9d\xe7\x3e\x46\x0e\xc7\xfb\x9d\xf0\x76\x2e\x2f\x9b\x1e\x63\x28\x1d\x70\x0e\xf6\x86\x1c\x89\x67\x24\xa9\x4b\x3c\x9d\x1c\x22\x97\x8c\xa7\x73\x04\xb1\x8d\x7a\x1c\xce\xe2\xcf\x06\x1f\xac\xc3\xea\x32\x18\xd4\x5e\x36\x23\x5a\xec\x06\xbc\x94\xf5\x81\xc9\x94\x48\x2b\x9e\x00\x19\x7e\x04\xca\x64\x19\x79\x0a\x67\xdc\x8d\xfb\xff\x49\x83\x74\xc2\x3a\xe7\xe2\x00\xa2\x1e\x72\x5d\x2c\xf8\xf9\x79\x4e\x36\x86\x87\x70\x1b\x02\xa5\x7a\xdd\xaf\xe8\xa1\xae\xe6\xce\x45\x3c\x80\x7b\xbc\x0d\x81\x39\xa4\xc5\x4e\xc0\x6f\x96\xdd\x17\xe7\x3a\x59\x15\xfa\x22\xde\x64\x47\xfd\x9f\x2b\x26\x45\x52\xfb\x3c\x81\xaf\xf4\xc2\xde\xa6\xc5\x74\x4e\xf1\x19\xa4\x21\x3e\x99\x9f\x27\xb3\x22\x2d\x75\xee\x63\xe9\xec\x9f\x17\x98\x14\xcf\x22\x91\x49\x2d\xff\x53\xae\xe7\x79\xc6\x46\xb5\xbc\x3c\x91\x76\xde\x98\x27\x49\x00\x1e\xb1\xeb\xa0\xac\x19\x88\x2c\x6f\x1f\xc9\x4e\x78\xca\x7c\xe3\x7f\x5e\xcc\xa9\xec\xdd\xf3\x5a\xc8\x2e\x0d\xd0\x3e\x04\x4f\xa7\x4e\x9e\xc0\x3d\x3b\x39\xf6\xfc\xb1\xcf\x65\x0f\x9f\x18\x26\xcb\x67\x90\x33\x9c\xd5\xde\x36\xbf\xa0\x63\xd2\x94\x72\xdf\xbc\x6c\xf3\x9f\x00\xe4\x2c\xb9\x67\xce\xa0\x2b\xf5\x29\xe3\xfc\x5d\x58\x73\xea\x02\xc1\xc5\xcb\x87\x82\x93\xd0\xa8\xe5\x8d\x02\x42\xce\xb2\xd1\x7f\x72\xb2\xb6\xf1\x74\x92\xb7\xbd\x6c\x74\x9f\x77\x08\x13\xd5\x08\xa2\xb4\x2f\x15\xce\x9b\xd0\x20\xcb\xcb\x7b\xf0\xbc\x46\xf9\xe6\xd4\xe1\x75\x89\xad\xe3\xb8\x8b\x13\x5b\x67\x19\x5d\xe0\xbc\x11\x16\xf2\x96\x9c\x0f\xc3\x6a\xdd\xfe\xc4\xb0\x7a\xa2\x1f\xf6\xaa\x6e\x92\xce\x07\x9d\x61\x7c\x82\xf3\x61\x62\x87\xcb\xa0\x54\xb8\x89\x0f\x4d\x94\x39\x76\x3e\x31\x8a\xb2\xc2\xcf\x87\x51\xf4\x66\x7e\xa2\x89\x1a\x83\x17\x71\xe5\x31\xe1\xbc\xbd\x9c\x9c\x77\x6e\x8b\xe9\x63\x9e\x9d\x6f\x2c\x35\xf5\x71\x1b\x44\xe3\x23\x4e\xb6\x3d\x34\x9d\x3c\x7f\x72\xfe\x5e\x4e\x66\x3f\x41\xfd\x71\x86\xca\x09\x18\xe0\x4a\x9f\x26\x20\xe0\xe4\xc0\x38\xdf\x18\x66\x6f\x17\x38\x54\x05\xf7\x3e\x4f\x8e\xe8\xcb\x81\xf1\x17\x1c\xaa\x45\x9a\xf3\x0a\x1b\x4c\xf2\xe2\x3a\xa0\xf9\x53\x13\xae\x23\xe6\xe5\xf3\x02\xba\x5c\x9d\xb8\x70\xd1\x3b\xf2\xf1\x02\x6f\x70\xf9\xb0\x74\x91\x9e\xed\xc5\x7a\x61\x94\x39\x0e\xf0\xc2\xc4\x32\x4c\xe8\x75\x44\x93\x25\xa5\xaf\x30\xb1\xe4\xa6\xb8\x52\xac\x0c\xb5\x28\xc5\xca\x90\x5a\xb8\x52\xac\x0c\x97\x21\x06\xf0\x18\xa4\xd8\x91\x12\xcb\x17\x1c\xa9\x3e\x1d\x5d\x70\xa4\x3a\x36\xf2\x4a\x9c\xef\x3c\x28\x61\x72\xd9\x62\xba\xc2\xe4\xd2\xcc\x5f\xd0\x8e\x8b\x54\x7b\x5e\x39\xce\x0e\xaa\x20\xff\x41\x6b\xab\x89\x19\x63\x40\x7a\xe0\xca\x2c\x5e\x49\xa1\x8b\x5c\x28\x87\x0a\x5e\x58\x5c\xce\x09\xbc\x60\x45\x75\xde\xee\x05\xc0\xa0\x73\xde\x2f\xe8\xcf\x0c\x78\x72\xd5\x70\xc7\xaa\x81\x61\x0f\x4d\xff\x4f\xd4\x98\x54\xf7\x05\x46\xb3\x6d\xff\xab\x45\x07\x64\x4d\x5c\x58\x33\x55\x77\x7e\x57\x43\xc8\x49\x8b\x5c\x8d\x53\x7e\xf3\xf3\xb1\xb4\x97\xbf\x40\x0f\x25\x71\xae\x4e\x36\xb6\xb6\xf7\x05\xf6\xde\x92\x98\xbd\xb6\x75\x52\x6c\x4c\x5c\xc0\x34\x8f\x7f\x53\x3b\x17\x96\x89\xdd\xd9\xd7\x20\x5c\x57\x12\xf8\x8a\x94\x21\xcf\x1f\x88\xca\x76\x1c\x5e\x13\x25\x2a\x53\xe8\xda\x7a\xff\x03\xef\x75\x4d\x78\xea\x3d\xbd\x2b\x63\x5a\x69\xba\x70\x08\x38\x65\xe9\x0a\x3b\xc0\x97\xb4\xd7\xb6\x03\xa6\xe3\x45\xae\x15\xe3\xef\x0a\x11\x04\x72\x95\x5e\xa4\xf9\x2e\xdf\xc9\x5e\x2b\x26\x54\x2d\x0a\x3b\xc0\xb7\xba\xd7\xb6\x03\xaa\x41\x0f\xae\x93\x03\xb9\x87\x00\x3b\xc0\x87\xd3\x2b\xf0\x88\xbd\x84\x83\x07\xc2\x1f\x04\x2e\xc6\xc9\x6f\xd7\x56\xe4\xc5\xe8\x2a\xd7\x89\x2f\x56\xb2\xee\x3a\xcf\xfd\xfd\xe5\xf2\xf5\xbf\xff\x2b\x76\xe5\x5d\x78\xb7\xcd\xc5\x3c\xaf\x13\xb0\x14\xef\xb1\x93\x40\x47\xa9\xb4\x8b\x2c\xa5\x43\xf2\xfe\xba\xc8\xbe\x97\xd2\xbc\xc2\x52\xf0\x15\xed\x45\x1e\xb1\xe3\xb6\x2e\xd8\xc3\x9c\xcc\x71\x5d\x38\xf0\xbd\x84\x2f\x8e\x9f\x5e\xb1\x64\x35\x89\xe8\x7e\x5e\x30\x4d\x34\xef\xa1\xbf\x6b\x71\xf5\x88\xac\xa6\xe5\x6b\xef\xeb\x22\xef\xea\x53\x41\x50\xef\xb8\x4c\xf2\xb8\x45\xed\x36\x4d\x52\x97\xb0\xbf\x7e\xb0\x86\x7b\x0a\x7e\x09\x4c\x20\x75\x70\x5b\x26\xc5\x47\x96\x2b\xfc\xf7\x16\x6b\xe1\x32\xf1\x94\xff\x22\x79\xde\x62\x0d\x3a\x31\x1b\x22\x17\x59\x51\xc6\xd2\xbd\xb6\xe5\x52\x3f\x9b\x7e\x1b\x2e\x75\x7e\xca\x60\xc7\xbb\x43\xf8\x58\x8c\x7a\x75\x41\x37\x36\x75\x36\xbe\xb6\xd9\x52\xc5\x02\x31\xaf\x30\x5b\x1c\x18\x70\x01\x37\xe3\x80\xa1\x0b\xfe\x30\x1f\x00\xae\x6d\xb6\xd4\xa5\xa3\xf0\x75\x13\xfb\xa7\xe3\xfc\x45\x28\x9d\x53\x11\xae\x88\xa4\xf3\x14\x6d\x33\xa6\x2e\x8f\x48\x98\x31\xde\xb7\x5c\x10\x54\xeb\x2e\xe0\x90\xa7\xd7\xdc\x43\xd8\x97\x95\x21\xf4\x60\x8e\x19\xba\x80\x4b\x36\x68\xc6\xf5\x04\x9b\xa9\x9f\x07\xc7\xdc\x72\x09\x42\x56\xc7\x28\x5d\xcf\x19\x03\xa2\x06\x6d\x23\x27\x7f\xe4\xc6\x03\x4c\x94\x77\xe9\x13\xec\x26\xfe\xe0\x1e\xf1\x25\x27\xd6\xf5\x84\x6f\x54\x03\x46\x64\xdf\xf2\xae\x0f\x6c\x19\xaf\xe9\x17\xc8\x8a\xcf\xf3\x85\xe7\x35\x00\x10\x84\x39\x50\xef\x7a\xa1\x3f\xb3\x14\x78\x99\x20\xf9\xc4\xae\x97\xf4\x24\x2f\x49\xe0\x92\x9b\x07\x9c\x48\x41\x73\x50\x5c\x2f\x78\xd6\xb6\x46\xb0\x90\x8c\xde\x7c\x41\xeb\xb1\xac\x15\x30\x90\xba\xf7\xf4\xb6\x8f\xb2\xbd\x2d\xd7\xb6\x8f\xea\xd2\x71\xe2\x77\x44\xff\xa7\xca\x89\xfe\x1c\x2a\x67\xfe\xff\x27\x2d\xf3\xc3\x76\xf2\xf6\xf8\x1d\xcc\x7e\x76\x65\x0d\xea\x85\xa4\x72\x07\x45\x27\xab\x3c\x78\xde\xff\x03\x5b\xa7\xc6\xff\xf0\x77\x99\x1d\x7e\xfe\xb6\x69\x55\x1d\x12\xf7\x3b\x48\x16\x2b\x6e\x00\xa3\x93\xfd\x81\x9b\x60\x2b\x97\x1f\x22\x53\x5d\x66\x74\xb4\xdc\x7f\x60\x41\xdb\x26\xff\xa5\xc0\x43\xd7\x68\xe1\xbb\x72\x40\xe0\x8f\x18\x45\x5b\x25\xbf\xc4\x6c\xca\xdd\xf6\x4b\xe0\xc4\x25\xd7\x7f\xf1\xbc\xfa\x13\x11\x8a\xc3\xf5\xdf\xfc\xaf\xf6\x85\x67\xcb\x41\x31\x3f\xc8\xe8\xad\x16\x7f\x99\xab\x77\x09\xac\x1f\x9e\x2d\x87\xde\xfe\x72\xa3\x42\x75\x28\x13\x3b\xac\xe5\xff\xcb\xcc\x80\x7c\x38\xbf\x6d\xa6\x65\xcb\xa3\x5f\x26\x93\x36\xfb\x7d\xa0\x66\xbd\x7c\x32\xe1\xe9\x92\x3f\x3f\xc0\x19\xcd\x8c\xf0\x03\x58\xda\x3a\xed\x57\x02\x12\x59\xfd\x89\xdb\x1f\x6d\x9f\x5f\x4d\x80\x55\xa8\x3f\x95\x68\x39\xf7\x27\x58\x6a\x3d\x01\x75\xe2\x5c\x54\xfd\x20\x27\x1a\x19\xfb\x47\xb4\x85\x6f\xe9\x7f\x0d\x2f\xbd\xcc\xcc\x1f\xe9\x09\x62\x63\x9a\xbf\x06\x96\xab\x74\xf2\x8f\x0c\xf5\xcf\xf8\xf5\x40\xb4\xf1\xff\x71\xb4\x55\x7f\x80\x73\x29\x6e\x2f\xb9\xdd\x4d\x02\xff\x07\xbc\x71\xf3\xfb\xa4\x07\xd8\x0c\xfd\x0d\xe4\xb7\x17\x38\x97\xfe\x4d\xf2\xfa\xc7\xa5\x7e\x93\xbc\xfd\xcd\xd8\x21\xfa\x1e\x76\x9a\x79\x25\x7e\x5c\xf2\x2f\x93\x83\xfc\x20\x9a\x18\xfe\xe0\x36\xcc\x3e\x24\x3b\xbf\x15\x0d\x54\x85\x84\xe7\x8f\xe2\xff\x1f\x1c\x97\xea\x70\x98\x5d\xc5\x4b\x1e\xf7\x8b\x4f\x43\xbf\x13\x5e\xfb\xee\xff\xf1\x89\xc9\x8c\xfa\x9d\x83\x1c\x1c\x3f\x1f\xfe\x11\xf5\xf0\x0c\x77\x86\x56\xc4\x19\xc0\xb1\x7e\x1e\x6f\xb1\xcc\xe6\x1f\xfe\x94\xa9\xa3\xce\x6f\x5b\x4d\xd3\x68\x66\x3f\x68\xe0\x0d\xff\xfe\x0b\xab\xc9\x30\xb0\x3f\x6e\x8a\xc4\x45\x35\x7f\x44\x0b\x5a\x63\xfc\x88\xf7\xb7\x8b\xfd\x07\x3a\xcb\x32\xd4\xed\x8f\x80\x7f\x63\xe5\xfe\x2e\x7a\xe8\x39\xbf\xb8\x35\x70\x0f\x30\xab\x96\xaf\xb5\x7f\x24\x92\xf9\xa4\xf0\xbb\xe8\x62\xf6\x07\x70\x19\x7d\xba\x74\xf3\xbc\x86\x98\xbb\xaa\x55\x3c\x69\x81\x88\xec\x5d\xb1\xed\xaa\x79\x78\x55\x6d\xbb\x6a\x15\x5d\xe7\xfd\x70\x09\x39\xa1\xf3\xf7\x2b\x38\x4f\x54\x1f\x1e\x21\x27\xc1\xfe\xb6\xdd\xb5\x3e\xbb\x10\x44\x97\xe5\xbb\xa7\x1f\x2e\x23\xdb\xe2\xbf\x1f\x93\xdc\xff\x89\x82\xe0\xf7\x8b\xf1\x91\x8e\xfb\x41\x6c\x3f\xdd\xfc\x9b\xe6\x5b\x08\xe1\xeb\xf1\x4d\xd8\x8f\xd0\xc5\x21\x33\xf3\x47\xa2\xdc\x2a\x9e\x81\x3b\xda\xaf\xfe\x00\xa7\x6c\x25\xfa\xbb\x63\x17\xe9\xf8\xf3\x0b\x6f\x90\x07\x24\xcc\x28\x03\xb0\xfe\xf0\x06\x55\xaf\xf2\x3b\xb6\x89\x0e\x4c\x3f\x10\x99\x8b\x1f\x80\xda\xde\x4e\x85\x1f\xee\xa3\xfe\x29\x73\xc3\xea\x8d\x8d\xf7\xc8\xa1\x29\xbf\xf0\x1e\x19\xc2\xf5\x07\x63\x99\x9d\xdb\x3f\x50\xf8\x44\x28\x36\x7f\x0f\x83\x28\x43\xeb\xb7\x0d\xad\x55\x2c\xa9\x60\xbe\x9f\xb2\xdd\x7f\xe4\x50\x4c\xcf\x31\xc9\x7e\x3e\x5c\xfc\xde\x00\x86\xd2\x10\xbd\x51\x9f\xff\xff\xb1\xef\xd5\x9e\x17\xcf\xb1\x4c\xe5\x1f\x8e\x1d\xd3\x3a\xfd\xc2\xb1\x23\xa2\xd9\x79\x93\xec\x27\x9a\xba\x79\x87\x5f\x46\xa7\x97\x9b\xcb\x32\xe7\x0f\xdc\x61\x3c\x98\xc0\xec\xc6\x2f\x33\x34\xab\x37\xd9\x7f\xc6\xfd\xbd\x21\x28\x5b\x16\x45\xf7\x41\x13\x25\xba\xee\x23\xf6\xd5\xf0\x0f\x1c\xc9\x35\xc6\x37\xd1\x99\x62\x8d\x9b\x77\x8a\x1b\x0a\x3d\xff\xc7\x94\xaf\x16\x25\x5c\xb3\xcb\xef\x93\x6c\xde\xfc\xfe\xc3\xf1\x43\x5d\x4c\x40\x59\xc9\x98\xbb\x73\x84\x97\x68\xe7\xdf\x64\xdf\x4f\xd9\x3b\x37\xe1\x95\x4e\x96\xba\x31\x17\x7c\x69\x7d\xe7\x08\x2e\x54\x8f\xb7\xb9\xe0\x9b\xb9\x7b\x5b\x0b\xd5\x29\xb2\x77\x0e\x28\x29\x3f\x8e\x31\xeb\xf6\x02\x06\xed\x28\xe6\x9b\x68\x13\x03\xdc\xdc\x79\x1f\x81\x0d\x52\x71\x07\x16\xf4\xe7\xf3\x01\xb0\xa0\xfe\xe6\x87\xd4\x28\xd7\x1f\xd1\xf7\xaa\x1f\x10\x3f\x47\xa4\xdd\x25\xee\xdc\xf5\x3d\xac\x0d\x87\x7a\xdc\x11\x8c\xd2\xfd\x3c\x94\x75\x9e\x3f\xac\x11\x07\x09\xdc\xb0\x5a\x0c\x59\x03\x37\xe9\x97\xfd\xf3\xfc\x19\x9b\x4e\xe5\x8b\xfa\xfc\xfd\x1f\xc3\xed\xf2\xcd\xff\xfe\xfe\x36\x47\x6d\x0d\xdd\x05\x44\x0b\xa9\xa2\xbb\x1e\x3c\xaf\xf1\xc2\x3a\xb2\xef\xf2\x86\x0a\xad\x4b\xa8\xdc\xb5\x00\x5e\xe3\xf7\x61\xdb\x76\x7b\x6a\x84\x0c\xa8\x3f\x40\x0b\x18\x65\xf1\x26\x58\xd5\x5e\xbd\xbb\x42\xd9\x57\xfc\x3d\xda\xff\xf9\xde\x03\x3e\xb9\xeb\x7f\x89\xcf\x52\xfd\x30\x68\x38\xe4\xf0\x6e\x05\x1e\x00\x7d\xaf\x45\xfc\x96\xea\xdf\xd6\x58\xaf\x92\x61\x77\x03\x49\xb4\xbb\x3e\xce\xef\x56\x34\x77\x9b\x04\xec\xb9\x82\x45\x05\x6a\x10\xd9\xa6\xfd\xdf\xe2\x03\xee\x06\xbb\xbb\x57\x6b\xdb\xb3\xe7\xd8\xec\xbb\x6d\xe3\xdc\xa6\xd0\x4d\x22\xaa\x48\x75\xe7\xdd\x42\x62\x79\xfb\x77\xb2\xc8\x64\x39\xdc\x18\x93\x45\xc6\xee\xbd\x8d\xc9\x6a\x8f\xd5\xdd\x83\xe5\xd2\xcf\x57\xb8\xf3\xfc\x7c\xc8\x78\x29\xba\xbb\x77\xe6\xcf\x0f\x84\x75\xec\x0a\x42\x6f\xb9\x1c\x12\xce\x1b\x86\x1b\x4f\x43\xb5\xde\xb0\x75\x98\xa9\xed\xde\xe6\xeb\xf8\x2c\xe0\xa0\x76\xfb\x94\xe1\x80\xb4\x84\x1c\xc1\xea\xeb\xf7\x07\xdc\x3a\x7a\x1e\xb6\x0d\x07\xcc\xdf\xb3\x52\xbf\x9e\x9f\x30\x8b\xca\x3c\xbf\xa1\x93\x75\x6a\xe3\x3d\xf1\xa1\xc9\x32\xba\x57\xa2\xfd\x5a\x60\x2b\xea\x53\x7b\xb8\x6d\xf4\x2d\xd0\xbd\x82\x96\xc6\x65\xd8\xcf\x65\x1d\xdf\x67\x21\xb5\x52\xef\x63\x8c\x56\x9d\xd7\xee\x2b\xbe\xa7\x05\x8c\xad\xe8\x44\xc2\x7b\xdb\x8a\xd5\xc8\xee\xf7\xc5\x02\xb7\x00\x21\xb1\xc4\xb9\xa7\x37\xa6\xe0\x47\x60\x84\x29\x58\x2d\xe1\x48\x16\xfd\xec\xb8\x70\xb1\x55\x6f\x59\x42\x5c\x3f\x5b\x1a\x17\xdb\xfa\x7e\x02\x9a\xe2\xe2\x4f\xbc\xbc\xa0\x21\x86\xed\xa2\x7c\xca\x0c\xa1\x87\x8c\xd4\x94\xf5\xfd\x61\x1b\x16\x9f\x4d\xf9\xdb\x8a\xde\x32\x87\xbb\x3c\x53\x0e\xdc\xbf\x68\x90\xac\xaf\x3b\x7c\x5e\x86\x3b\xbc\xb7\xf9\x96\x7d\x35\x70\xdf\xd1\x67\x4d\x02\x99\x26\xe2\x49\x9e\x37\xd8\x7b\xeb\xb3\xea\x82\xe3\x3e\xb9\xfc\xf0\x82\x06\xf1\x0e\x06\x49\xb5\x80\xa0\x56\x27\xd4\xde\x0f\x5d\x1e\xfe\x9f\x48\x2a\xcf\xea\x13\xb3\x22\xdb\xe5\x7e\x22\xab\x40\x7d\x24\x2c\xe9\x23\xd7\xc9\x54\x31\x74\xd1\x0d\xa5\x97\xf3\x48\x6e\xe2\x58\x7d\x93\x77\xbf\x18\xa4\x0e\x47\xbf\xa1\x9d\xf7\x1d\xef\xfd\xf6\x78\x40\x63\x00\x72\xc2\x67\x08\x48\x55\x69\x5e\x78\x2f\x2d\xb2\xf1\xf4\xc6\x98\x4d\x37\x81\x9d\xaf\x41\x7f\x8e\x38\x08\x2f\x95\xf9\x80\x2a\x7c\xc2\xf3\xa2\x16\x3d\x47\x2c\x44\x59\x53\x0f\xd6\x93\x09\x3b\x9e\x03\x64\x6d\x19\xe1\x0f\x97\x5c\x8e\x06\x7f\x52\x0c\xba\xcb\xd1\x20\x3f\x8f\x23\x4b\x93\xf0\x24\xd6\xad\xe6\xe0\xc1\x13\xd2\xa5\x6b\x1e\x72\x33\x1d\xa2\xf3\x60\x8b\x38\xef\xfb\xc9\xa8\x02\xad\xba\x07\x72\xd5\xe5\x58\xb2\x27\x33\x69\xc3\x2f\xdc\xf1\x80\x7f\x60\x59\xc9\x3c\x7c\x20\xa6\x30\x81\xed\x83\x35\xb2\x5a\xfa\x27\x94\xb4\x87\xcc\x96\xaa\x7d\xf3\x10\x42\xe4\x53\xe3\x03\xf1\xaa\x27\xec\x21\xb3\xc5\x2b\xe0\x29\xec\x12\x2d\xea\xa7\x30\x7e\x52\x16\xcf\xb6\x1d\x86\x97\xd4\x03\x07\xfc\xb2\x2b\xe5\x21\x6e\xb6\x17\x97\xe3\x1a\x53\xdd\x05\x0d\xb8\x4a\x16\x3f\xe1\x5a\x99\xfe\x9f\x06\x2c\x7f\xe0\x62\xc2\xd5\x60\x38\xe6\x9d\x93\xf1\x00\x3b\xe4\x38\x84\x87\xd4\x4d\x8b\xba\x67\x6b\xbf\x65\x14\xec\xa7\x83\x07\xa6\x25\xfe\xf4\x78\x5e\x1d\x46\x99\xd9\x78\x7b\x48\x02\x71\x0e\xf6\x03\x52\xdf\x6a\xcd\x3f\x30\x5f\xb2\xb6\x1f\x52\x37\xab\xd4\xf5\x43\x0e\xc8\x32\x37\xd5\x03\x52\x9f\xe9\xb2\x9e\x11\x43\x28\xf3\xe2\x19\xac\x61\xaf\x79\x92\x3d\xd7\xf7\x0d\x64\xa5\x14\xf6\x33\x48\x18\xc8\x7e\x21\x16\xa1\x57\x25\xc9\x9d\x9f\x5d\x35\x5e\xc8\xed\xd4\xc6\x19\x6b\x4c\xa2\xe5\x89\x2c\x11\x37\x01\x07\x91\xfd\xd3\x0f\x91\xbc\xcb\x64\x4f\x0f\x9c\xee\x4e\x80\x7a\x22\xe4\xc7\x09\xaa\xcf\x5c\xb4\x51\x6d\xc6\xa5\x34\xbd\x11\x27\x4c\x1e\xc5\xe5\x5f\x54\xa0\x89\x21\x26\xc8\xe2\xf6\x99\x31\x11\x96\x25\x33\x26\x42\x4d\x5a\x07\x3e\x27\xbd\x00\xd6\x90\x9d\x76\xcf\x0a\x2d\xab\x79\x59\xb1\x52\xfc\x7c\xf8\xb0\xd4\xa2\x15\xa3\xec\xfa\x63\x94\xbd\x73\x17\x81\xab\x87\x3f\x10\x5b\xdd\xc2\x63\x11\x8e\xa7\x83\xc7\x73\x46\x8b\x5c\x26\x8a\xa9\xba\x1c\x91\xa2\x6a\xe1\x49\x0b\x74\x30\x78\xb8\xfb\x13\x0b\xfc\x7c\x82\x9a\xd4\xd3\x0c\x16\x91\x2f\x9b\x1f\xa8\x1c\x3e\x73\x72\x11\x76\x25\xc3\xee\xc1\x81\x53\x3d\x42\x24\x7b\x4e\xb7\x97\x00\x1b\x47\x90\x3f\x3f\x0e\xdf\x3a\x3b\x3f\x01\x3d\xe4\xbd\xf7\x7b\xfe\xf7\x7f\xdd\x76\xf5\x13\xfc\xeb\x9e\x31\x12\x55\x96\x49\x1b\x9f\x9b\xc3\xb8\xb7\xca\xcd\x69\xdf\x3b\x03\x02\xaa\xcf\xe6\x7e\x78\x5e\x46\xc3\x13\xde\x06\xe9\xf4\xe7\xc5\xe9\xe6\x8d\x13\x91\x24\xae\x6f\xeb\xbb\xe5\x9b\xc2\x07\x40\x85\xcf\x80\x86\xb7\x41\x1a\xf5\xd9\xfa\x6e\x39\xaf\xe5\x89\x38\x12\x1f\x85\x9e\xf7\xe1\x01\x97\xdf\x78\xe0\xbf\x16\xbc\x07\x31\xa3\x32\x8d\x5f\x52\x37\x57\x97\x80\x7e\x0f\x9c\x46\x9a\xa3\x37\xe2\x42\x4c\xc6\xf4\x92\x1c\x22\xe2\xfe\xf9\x1e\x33\x1e\xa8\xfa\x01\x3c\xd6\xe5\x1a\xa3\x53\x6a\x42\x62\x50\xb4\xb1\xde\x14\xb3\xa0\x5e\xbd\xe8\xd0\x55\xff\x29\xb9\xf3\x25\x2e\xb7\x66\xbf\x7c\xe1\xd4\x53\xfb\x13\x43\x26\x05\xfc\x12\xf2\x61\xe4\x97\x17\x6c\x03\x07\x06\xbf\x00\xf7\xd9\x83\xf5\x82\x75\x60\xdb\xff\xdd\x0a\x77\x1a\x4f\xeb\xcd\x11\x71\xa1\xff\xc9\x1c\x29\x52\xe8\xef\x3e\x6c\x4f\xbb\xb6\x5f\xe0\x0c\x1c\x5c\xf9\x12\xe1\xe1\x5c\x9c\x17\x24\x23\x83\x76\xbe\x95\x08\x7f\x49\x89\x37\x14\x9e\xb3\xb6\xdf\x4a\x5c\x9f\x84\xef\x5b\xc9\xbd\x95\x6c\x7d\x6b\x74\xc8\xff\x73\x58\x70\x07\x2b\xc9\x54\x52\x60\x2f\x21\x25\xbe\x4b\x79\x1b\x6b\x5c\x52\xe6\xfd\x03\x26\x52\x83\x3a\xb2\xdb\xe9\x62\x2f\xfc\x8e\x4e\x27\x7b\xc1\xcd\x2b\x92\xed\x2f\xe7\xc1\x65\x5a\xce\xb7\xc7\x2e\xd2\x94\xc5\x81\xd0\x88\xbe\x2f\x3a\xd3\x31\x0b\x2f\xe8\xf4\x66\x90\x7c\xc9\xbc\x74\x80\xd6\xdb\xc9\x15\x2d\x6e\xe2\x19\x15\xfa\x87\x6b\x0b\x06\xaf\x61\xe0\x71\xfb\xe7\x83\xf7\xfe\xdf\x9b\x60\x2b\xdd\xec\xac\xef\x77\xeb\xdc\x62\x28\xbc\x77\x84\xf1\xaf\x06\x81\xbd\x67\xea\xc1\x77\x1f\x18\xfb\x67\x0e\xc6\xa4\xec\xff\x39\x00\x76\x97\x7f\xfb\x7f\xd9\x60\xef\xe0\x3a\x58\x82\xfc\x1d\x08\x36\xe9\xa2\x77\x90\xdc\xe3\x45\x36\xff\xe6\xc4\x3f\x90\xa2\xa0\x13\xe9\xbb\x4f\xa8\xbd\xc8\x0c\x7b\x39\xa1\x3a\x82\xed\xdd\xfa\x35\x9b\xcc\xf1\x9d\x74\xc0\x03\x80\x7a\x75\x3e\xf1\x0b\x9e\xfe\x67\x57\x05\xb4\xae\x07\x70\x32\xe0\x32\x0b\xdf\xd0\xae\x4e\xce\x7d\x41\xe6\xfb\x8c\xf0\xe2\xc6\xcc\x23\xb0\x72\xbc\xa0\x16\x46\x48\xae\x5b\xb0\xb5\x65\xb3\xdd\xf6\x2e\x72\x0c\xbd\x6f\xa1\x1a\x9f\xd3\xff\xb3\x86\xaa\x3f\xc0\x94\x2c\x97\x89\x51\xf6\x90\x6f\xed\xdb\x7d\x7f\xf2\xc2\x56\xb9\x3e\x0d\x0c\x24\x59\xed\x82\x50\xbe\x3e\x44\xbf\x30\x3d\xd9\x97\xfe\x72\xc5\xe4\xac\xca\x77\x1f\xd2\xb3\x8f\x77\xef\x19\x09\x5e\xea\x40\x84\xdc\xda\x5e\x78\xcf\x58\xd5\xde\xf9\x64\x0f\x39\x14\xe8\x8d\x50\x9c\x6f\x15\x38\xbb\x8b\x5f\x78\xb8\xd2\xf1\x0b\x2f\x65\x35\x11\xaa\x70\xdf\x53\xbf\x57\x22\x6f\x5e\xef\x13\xb3\x6b\x75\xf4\x02\xe0\xef\xe0\xd0\x97\x73\xbf\x41\x51\x5f\x20\xf5\x6d\xb0\xbc\xdc\xe8\xd8\xf1\xf3\xc2\xe3\xed\x0c\xb0\xf7\x87\x27\xc9\x8b\x22\x62\x78\xed\xab\x7a\x23\x52\xc6\x1f\x20\x52\xe6\xb0\xa8\x89\x1b\x1b\x13\xda\xbc\x01\x38\xe1\x16\x90\x5d\xb4\x05\xc3\xbf\xa8\x1a\xc2\x5e\x3e\x62\x28\xf0\xf8\xed\x28\x7f\xef\x03\xc8\x4d\x97\x13\xcc\x24\x5a\x13\x77\x2c\x62\xcb\x09\xb0\x0e\x9d\x1b\xf0\x72\x85\xe3\x18\xed\x17\x9a\x25\x47\x89\xbf\xf0\x86\x3b\x29\xe5\xbd\x59\xa4\x56\x46\x77\x2c\x89\x4f\x85\xc4\x99\x78\x46\x08\x94\x31\xa5\xc0\x7b\xdf\xff\xfb\xbf\x62\xfa\xc9\xf7\x06\xd3\xf3\xf3\xfc\xee\xa2\xd1\x25\xdf\x87\xe3\xa9\x0c\x98\x37\xc2\x7f\x1d\x41\xf7\xc2\xa2\xe4\x7c\xb2\xf7\x89\x1e\x68\xcc\x00\x23\xb6\xeb\xea\x7d\x62\x55\x7f\x5e\x98\x3c\xe0\x2f\x2e\xca\x6a\x31\x4e\x8a\xfa\xa9\x00\xe7\xbb\x87\x34\xc2\x85\x3f\x8b\xfa\x89\x60\x09\x8d\xe1\xf3\x50\xa1\x5b\x1c\xb3\xe8\x1a\xdf\x00\xa9\xd2\x18\xbc\x31\x49\xfa\x02\x09\x56\xd3\x93\xf2\x42\x75\x65\xe1\x0e\x4f\xd3\x61\xd9\xf7\x22\x1b\x3f\xe5\x1b\xef\xee\x5f\x0f\xd7\x01\x28\x96\xa0\x14\xd6\x41\xec\x4a\xfb\xcf\xa2\x59\xc7\x01\x5d\xe6\x7f\xb2\x75\x1d\x07\x6e\x96\xcf\xff\x0c\xf9\x7f\x82\x63\x1d\x47\x0c\xf9\x52\xb9\xc3\x25\xec\x32\xda\xb1\xfa\x7d\xb0\x0b\xff\x5b\x03\xeb\x80\x90\x40\x91\xf7\xeb\x88\x0b\x24\x45\x51\xae\xe3\xb8\x79\xc0\x2f\x04\xb8\x62\xf7\x17\xf0\x3f\xfa\x8b\xe9\x20\x5c\x4b\x35\xc2\x48\xa0\x10\xef\x75\x90\x2e\x2c\xb7\xce\x3a\xc2\x22\x1c\x9f\x1f\x38\xd4\x2f\x0d\xc1\x36\xfa\x96\x10\xae\xd6\x01\xa2\xa5\xa2\xa1\xd7\x41\x40\x8b\xe8\xf4\xd7\x11\x91\xc3\x02\xd4\x58\x07\x91\xc3\x4a\x58\x5e\x07\x00\xd1\x7d\xb8\x45\x01\xba\xe5\x72\x8c\xc1\xf0\x17\x6f\x26\xc5\x15\x3c\x6c\x14\x97\x83\x81\x4d\x63\x94\x11\x0d\x4b\x2d\xca\x31\x04\x5d\x65\x80\xcf\xdc\x40\x72\xbb\x04\x8f\xb4\x8e\x1c\x3d\xd4\xf7\x73\xcc\x81\xeb\x23\xc2\xed\x70\xf9\xdd\xff\xbb\x3d\x91\xe0\x9c\xd5\xa1\x12\xfb\x6e\x6a\xc8\xc0\xe4\x14\x72\xda\x3a\xb6\x9d\x9a\x85\xc4\xb3\x8e\xc2\xa5\x96\x1b\x58\x42\xbf\x4d\xad\x8a\x12\x00\x96\xaa\xb0\xa6\x3d\x07\x5e\x25\x15\x9c\x05\x0f\x69\x18\xb2\xc3\xab\xa2\xb2\x8e\xfd\x05\x80\xbc\x74\xbd\xbf\x8e\x0a\x4c\xcd\xd4\x90\xd4\x98\x93\xe5\x1f\x70\x95\x1c\xea\xc2\xb6\x64\x87\xa4\xe5\x3a\x48\x16\x6b\xae\xa0\x91\x15\x3e\xd4\x42\x52\xc1\x6a\x55\x03\x00\xfd\x54\x02\xf2\x3a\xc8\x04\x53\xd4\xe1\x3a\x5a\x68\x17\x7f\x00\x66\x89\xe4\x45\xd2\x90\x65\xc3\x15\xb0\xb3\xc6\xbf\x78\xd2\xd6\x41\x60\x75\x9f\x6e\x5d\xc4\x34\x1e\x6e\x1e\x89\x66\x9e\xe2\xb8\xa8\x99\xde\x15\x9d\x68\xe9\xa1\xe6\x05\xe0\x89\xce\xd3\xeb\x00\xf1\x44\x11\xfa\xeb\x80\x35\x4a\xb9\x1c\xeb\xe0\xa6\x66\x09\x88\x7d\x1d\xdb\x32\xaf\xa9\xb8\xc6\xe8\xa0\xa6\xe8\x2f\x57\xcd\x15\x60\xb7\x5a\x10\x00\x60\x52\xfd\xfc\x08\xe8\x22\xb5\x38\x5c\x51\xb2\xa2\xd6\x31\x58\x13\x53\x7d\xe4\x66\x46\x40\x42\xeb\xe0\x66\x66\x89\x54\x67\x1d\x44\x80\x7f\xf6\x59\xc0\x8e\x79\x8e\x03\xb8\x74\x7a\x55\x0d\xae\xcf\xdd\xe7\xf0\x5d\xe9\x40\xb6\x0e\x92\xd3\x74\x79\xb3\x0e\xa8\xa6\x14\x21\xbf\x8e\xf1\xc4\x0b\x1a\xc5\x11\x86\x9d\x5e\x98\xc1\x15\xaf\x4e\xce\x44\xcc\x83\x9e\x9f\xcc\xc2\xf4\xff\xe8\x1b\x4f\xfc\x8c\xb0\x14\x7d\x70\xdb\xe2\x2b\x7b\x1d\x4c\x26\x61\xfa\x7b\xd1\x45\xcb\xa6\xbf\x28\x77\x97\x59\x86\xde\xfa\x13\x3c\x0f\x6f\xc4\x6d\x8b\xaf\xec\x65\xb2\xc8\xb3\xff\xfc\x9f\xe3\x03\x6a\xe1\x62\xe3\x34\xf5\x20\xc2\xe2\xa7\x55\xd6\x36\xc6\xbb\xbc\xd6\xeb\x58\x31\x6d\x59\x83\x8c\x35\xbe\x3e\x0f\xcc\x78\xc0\x3f\x10\x82\xe8\xc5\xbe\xce\x78\x40\x4b\x11\xa4\xee\x65\x25\x85\x3d\xbe\xa6\x75\x00\xcc\xab\x1f\x89\x79\x26\x6a\x54\xa3\x4f\x62\x10\x2d\xf0\xb0\xc7\x45\x37\xbf\x8e\x13\xc7\xad\xa7\x39\x80\xb8\xad\xc4\xce\x58\x38\xde\x1c\x27\x51\x9b\x96\x67\x67\x6c\xe0\xe2\x16\x20\x31\x3f\x0f\x04\x2e\x87\xfe\xbf\x08\x6a\xf5\xfe\xc5\xfc\x4e\x5e\x28\x57\xcc\x43\xd5\xa0\x70\x4f\xf7\x11\x68\x17\x81\xab\xd6\x6a\x57\x83\x1d\xd7\x15\x12\xd5\xeb\xed\x78\x8d\xa8\x50\x2d\x22\x54\xfe\x23\x20\x20\xd5\xea\x9e\xa6\xeb\xe4\x7f\x4d\xe3\x75\x71\x93\xef\x0a\x09\x5b\xf6\x5e\x21\xd2\xbd\x78\x7b\x43\xdf\xf1\x59\xba\xd8\xef\x9f\xed\x1e\xf6\xfb\x74\x8b\x7f\xac\x13\xef\x0d\x38\xb4\x92\x87\x6c\x9b\xe8\xb9\x7e\xfe\x27\x12\x76\xe8\x7f\x2c\xf4\xcf\x5e\xbb\x23\xf4\x5e\xcf\x87\x85\x2e\xd8\x8e\x75\xdc\x0c\xa9\xf7\xca\x1d\x0d\x70\x85\x2c\x3b\xeb\x84\x88\x44\xb7\x56\xfc\x4b\xa8\x53\x0f\xef\x90\x16\xb6\xae\x70\x29\x7e\x2a\x80\x41\x6b\x4d\x6b\xfa\x67\x1f\x22\x8a\xf5\x26\xb1\xea\xcb\x5a\xec\x61\x12\x2d\x12\x1f\xd4\xe6\xe7\x7d\x60\xa9\xda\xbf\x29\x9d\x27\xba\xa3\xd6\x85\x35\x3d\xbd\xad\x02\x9d\xce\x4b\xec\xf9\xeb\x8f\x06\xe4\x61\xc4\x97\x3e\xcf\x25\x60\xf6\x0c\xbe\xb8\xa7\x9a\x06\x14\x6b\xb9\x5a\x1e\xe3\xd2\x14\x98\xf9\x3a\x5e\x96\x90\xa5\x69\x78\x34\xa7\xd6\x48\x02\xbc\xa6\x69\xc4\x53\x64\xbe\x09\x8e\x60\xa5\x08\xdf\xd6\xc6\x4e\x30\x76\x2d\x65\x7e\xae\x04\x9e\xba\x9b\x9c\x70\x60\xca\xa9\xba\xd2\x36\x4f\xe7\xf4\xff\x61\x9e\x0a\x60\x67\xa5\xc8\x6c\x73\x13\x22\xb3\x4d\x09\x15\x2b\x11\x31\x65\x63\x2b\x01\xfa\x2a\xb4\xe8\x95\x52\x74\x52\xcf\x67\xe6\xd8\x1f\x20\xc0\x69\xc9\xd2\x49\x79\xc0\x24\xe1\x32\x3e\x3c\x49\x96\x84\x35\xb8\x14\xaf\xbf\x52\x8e\x59\xd1\x03\xe5\x40\xa9\xa9\x82\x82\x30\x94\x25\x93\x0a\x8a\xf9\xbf\x33\xce\x4a\xa5\x44\x85\x6a\x51\x89\x2e\xbb\xc2\x16\x0f\xa8\x0b\x01\x0d\xb0\x5c\x03\xc4\xd8\x87\xa6\x0d\xa8\x00\x2f\xe3\x04\xc1\xc8\x21\xad\x96\x60\xf9\x12\x3a\xc2\x4a\x01\x0d\xa0\x20\xf4\x95\x88\x91\xf6\xc2\x48\x15\x70\x62\xc9\xa2\x14\x17\x79\x6e\x50\x8d\x20\x0b\x97\xf1\xf9\x49\x78\xa6\x0a\x2e\x98\x64\x55\x22\xa6\x5a\x4e\xc6\x95\x02\x49\x40\x51\xee\x2b\x41\x03\x9a\xdd\x00\xac\x3f\x85\x8f\xae\x04\x42\x9d\x5c\xef\x2b\x11\x68\x23\x3f\xf8\x4a\xdb\x7e\x2b\xcd\x1f\xec\x5c\x9d\xea\x5c\x97\xb6\x75\x36\x6a\xf6\xff\x40\xab\x78\xc4\xc0\xa3\xf3\x11\x24\x75\x72\x36\x8a\x9f\xe7\x66\x51\x5a\x3a\xf5\x2d\x2b\xab\xdb\x1b\x61\x34\x0a\xe3\x58\x29\xf0\xe7\xbc\xea\xb8\x7a\x5c\xca\xdb\x5f\x69\x9b\x6f\xa5\x0f\x97\xb9\xf1\x92\x9a\x4f\x71\xf5\xa8\x43\x46\x1a\x04\xae\xb9\x87\x23\x7a\xa4\x11\x08\x73\x4f\xd1\x9c\x2b\xc5\xcd\xa3\xe7\x18\x8a\x30\xe5\xd1\xac\xb4\xcd\xbd\x3c\xaa\xff\x1f\xe0\x76\xa9\x07\x83\x4c\x0b\x1d\x6d\xd3\x60\x08\x3c\x65\xf8\x49\xa7\xb7\x41\x5c\x2b\xca\x34\x4b\x71\xad\x28\x6f\xc3\x4a\x71\xad\x58\xd5\xa3\xb8\x56\x94\xff\x62\x25\x90\x04\x84\x1b\xb2\x12\x8e\xcf\x25\x6f\xc1\x4a\x84\xaa\xcb\x95\xbc\xd2\xe4\x2a\xd4\xb3\x04\xf2\xbc\xf0\x6f\x56\xe2\xd6\x50\xf7\xd3\x2b\x45\x2c\x50\x51\x8b\x56\x98\x29\x6a\xc0\x0a\xd1\xa2\x2e\x6d\xc3\x28\x0f\x8b\x16\xfc\x94\x02\x6b\x5b\x89\x4b\xc2\xe9\x39\x02\x48\x5e\xc0\xf6\x2b\x9d\x9c\xb2\xbc\x6d\x08\x3c\x4f\xde\xb7\xc4\x89\x57\x8f\x48\xc4\xfe\x78\xc8\x23\xb4\xa7\xfe\x0b\x16\xf4\x4a\x5c\xf8\x15\x4b\xda\x5f\x00\x90\xa8\xb1\xa0\x0b\x2d\x6b\xc7\xf4\xe3\x8e\xd4\x7b\x04\x74\xa1\xf5\x11\x33\xbf\xb8\x8e\x77\x39\x66\xd4\xc2\x1b\x0f\x60\xf2\x2e\x8c\x34\xff\x8f\x1c\xf9\x21\x47\xbc\x68\xb7\x89\x51\x3e\x8b\x96\x4b\xc8\xe6\x01\x81\xa5\xb3\x7d\x9a\x04\xc3\xbf\x65\x33\x5e\xc3\x64\x51\xba\x4d\x92\xdc\xdc\x80\x08\x1c\xfa\xe8\xa7\xf0\x1a\xca\x08\x4b\x84\x71\x57\x0f\xca\xfd\xd7\x25\x2d\x89\x1b\xd0\x27\x59\xa2\x09\x38\xbd\x8f\x86\xbc\x17\xff\xab\x85\x44\x1a\x0d\x8b\xda\x80\xd3\xf3\x2e\x20\x90\x48\xf8\x72\x2b\x71\xcb\x59\xdd\xa3\x27\xbe\xa7\x25\x42\x60\xd1\xa1\xc0\xfb\x95\x00\xaa\x5f\x16\x9d\x6f\xf4\x40\x6b\xf4\xed\xbc\xf0\x79\x20\x6a\x54\x05\x6f\xd4\x98\x34\x48\x5c\x94\xda\x43\x94\x08\xcb\x56\x7c\xc0\xca\xc7\x3e\xb2\x28\x68\x65\x9f\x8e\x78\xbe\xab\x4c\x17\x64\x4a\xe7\x03\xa0\x2e\x99\xde\x19\x95\xaf\x6c\x89\x95\xc1\x85\x5f\x87\xff\xc7\x95\x20\x4b\x3a\x1f\x84\xb4\x0a\xef\x62\x65\x62\xa4\x7d\xb2\xcd\x29\x1a\x50\x55\xc6\x97\x70\xf8\x79\x50\x65\x74\xba\xc8\x89\x5b\x37\x49\xb6\x4c\xdc\x8f\xbc\x94\x2b\xe7\x1a\x19\x3a\xea\x31\x31\xcd\xba\x9f\x58\x99\x7b\x4b\x45\x36\xad\x9c\x19\xd2\xe1\xe7\x1f\x08\xc0\x5c\x8e\x1e\xc8\xd2\xcd\x85\x1e\x68\x1f\x64\x2e\x32\x6d\x4a\x67\x34\xbe\x97\x65\x2e\x7c\x60\xfa\x79\x86\x54\xea\x29\x17\xa6\x4c\x26\x45\x86\xd3\x45\x91\x3d\x2b\x97\x9b\xb2\x86\x9c\x8b\x50\xb9\x61\x57\x2e\x20\x91\x69\x67\xe7\x4a\xa4\x95\xb6\x41\xae\x31\x00\xfa\x7e\xe5\xfb\xda\x15\xb9\xc6\xf7\xfd\x3c\xdf\x93\xe0\xcc\x2d\x32\x78\x5c\xa6\x3e\xd9\x68\xb9\xc5\x22\xf5\x1a\xda\xfa\x7d\x2a\xca\x7c\x65\x52\xe3\x95\x83\xb4\x32\x40\x40\xc5\x1d\x6e\x8c\xb8\xac\xc2\x8c\x3e\x17\xc4\xcb\xca\x9d\x19\x93\xea\xc8\x5b\xf9\x65\x61\x0b\xac\x8c\xeb\xc2\xee\xac\x3c\xf0\x23\x27\x2f\x4a\xc2\x6e\x9a\xd7\x14\x00\x7a\x3e\x44\xe7\xad\xed\x1c\xe9\xb5\xf2\xc4\x1f\x24\xd5\x92\xe7\x9e\x61\x4b\xae\x3c\x6b\x7c\xc0\x2f\xe0\xf0\xf2\x2e\x99\xc4\x8f\xe8\x9c\x9f\x17\xe2\x5a\xba\x24\x2f\xd2\xc8\x04\x4a\xb3\x32\x21\x2d\x0a\x46\x5b\x79\x2b\xab\xa5\xe4\xf4\x95\x57\x00\xe1\x4b\x5c\x67\x70\x73\x8a\xb7\xd5\x8a\x3e\xbb\x8d\x04\xc1\x08\x91\x61\xe5\xad\xde\xf6\x03\xff\x92\x73\xb3\x32\xe9\xf7\xdd\xdb\xfc\x3c\x18\x41\x7d\xfe\x8c\x11\xd1\x14\x9c\x31\x22\x32\x48\xf2\x19\xdc\x51\x1a\xa1\x33\x3a\x24\xb9\x73\xfe\x21\xfb\xfb\x87\x49\x8d\x5a\x24\xe7\xe2\x05\x97\x63\x0e\x35\x84\x5b\xfd\xae\xe6\x01\x01\x00\xd0\xda\x26\x9f\x77\x7c\xc0\x0f\xc4\x9c\xa8\x82\x2b\xf1\x82\x5a\x7c\x05\xbc\x8a\xff\x9f\x51\x81\x1f\xe0\xb4\xe3\x7d\x40\xfa\xfb\xa1\xe4\xcb\x95\x2f\x14\x9e\xd4\x47\xbe\x68\x92\x2c\x96\x8c\xd2\xb6\x1b\x23\xff\x62\x15\xc8\x6c\xcc\x28\xed\xe6\x2f\xfe\x62\x54\x65\xf6\xe5\xad\xb4\xa7\xb0\x27\x57\xfe\xf5\x78\x40\xc3\xfc\x03\x09\xc4\x4d\xfa\x91\xce\x67\xd9\xf5\xa3\x49\xc9\x15\xb0\xf2\xa5\x90\x32\xa8\xef\xca\x68\x58\x79\x6b\xbc\xd5\x3e\x65\x12\x68\x93\xf7\xe6\x4d\x05\xfe\x20\xb0\xef\xcd\x3b\x83\xd8\x5a\x7b\xc0\xf2\xd3\xa8\xd0\xcf\xb3\x2e\x2c\x2c\x9f\x58\x17\x52\x81\xf9\x61\x5d\x78\x2f\x3e\xb1\xd0\x87\x6b\x40\xba\x58\x1c\x3d\x91\x58\xe4\x1a\x1f\x5a\xe4\x16\xd0\x62\xef\x9c\x97\xa5\xed\x75\xf2\xb2\x2e\x64\xc6\x64\x50\x00\x9b\xb7\xc2\x1b\x2d\xb4\xc2\x20\x56\x29\xb9\x0b\x91\xe9\xa4\x6b\xa6\xb2\x55\x6e\x3e\x44\x3f\xb3\x0a\x3a\xb7\x69\xd2\xca\x11\x63\xf0\x5f\x17\x0b\xa1\xb2\x36\x4b\x0a\xb4\x64\x87\xaf\x1c\x0a\x81\x41\xb6\xde\x0b\xb7\x3c\xca\x89\x5c\x25\x61\xd7\x68\xe1\x95\xc4\x5e\x6a\x2e\xb3\x97\xb2\x3f\xc0\x5e\xd2\x3a\x2c\x89\x21\xd2\x56\x28\x19\x34\x10\x09\xe0\x02\x4f\xca\x61\x5b\xb9\x64\x32\xee\x0e\x3f\x10\x2c\xff\xfa\x40\x24\x0e\x29\xac\x62\x15\xe0\x60\xec\xdf\x2a\xc0\xc1\x74\x49\xab\x82\x12\xd6\xf5\xea\x2a\xc4\xda\x4e\xb7\xb0\x44\x86\xa2\xea\x2b\x01\x40\xaa\x0f\xee\x43\xf5\xd2\x05\xfe\x2a\x25\x1a\x90\xfc\x43\x88\x1b\x97\x43\x3a\xf8\x03\x6f\x64\x8a\xab\x85\x95\x65\xa2\xad\x58\x40\xe8\x53\x2e\xfb\x2a\xe4\xe2\x1c\xa2\x1a\x59\xa5\xb2\x13\xe4\x4c\x2e\x84\x17\x55\x37\x19\x9c\x5a\x45\x9b\xae\x52\x51\x4a\x9e\xe4\x7d\xec\xce\x87\x02\xb4\x56\xa9\x91\x81\xa7\x16\x11\x6f\xa4\x60\xd3\x55\x5a\x24\xc0\xb9\x7c\xf1\xbc\x1a\xd4\xe3\x79\x8d\x69\x67\xd5\xb8\xcb\x9d\x55\x52\xfd\x3c\xb9\xc4\x6e\x60\xbf\x22\x74\x45\x0d\x00\x3f\x4f\xe9\x26\xab\x0c\x86\x48\x1e\xbb\x02\x9a\xdd\x31\xff\x25\xfb\x66\x95\xc1\x26\xd0\x71\xb0\x70\xdd\x60\xaf\x74\x19\xac\x08\x19\x0d\x65\x12\x52\x21\x8d\x59\x08\xdc\x39\x7c\xb1\x58\x80\x43\xb7\x34\x2e\xdc\x06\x28\x6b\x76\x95\x70\xf6\x7b\x02\x89\x4a\xfd\x0c\x67\x60\xd8\x7a\x93\x85\x0a\x56\x90\xc5\x2a\x60\xd8\xfa\x7c\x52\xe0\x31\xe9\x52\x71\x05\x1d\x79\x78\x3c\x43\x05\x4a\xfc\x97\x93\x06\x25\x97\x51\x38\x0a\xa1\x5f\xe5\x4f\x05\xfa\x03\x6c\x5b\x0b\x96\x33\x26\xc4\x63\x72\x86\xe4\xd1\x04\x85\x0e\xcc\x3a\xc6\x97\x33\xb2\xb7\xd5\x85\x33\x12\xce\xa4\x35\x0b\xd9\xd1\x0a\xd5\x5d\xe5\x62\x5f\x35\x97\x6b\xbc\xa0\x4f\x5c\x2c\xa2\xe1\x72\x0c\x8a\xbe\x08\x4c\x6e\xf3\xac\x84\x8a\xb3\x6c\xfb\x31\x08\x32\x76\x0b\x99\xc1\x9f\x5d\x04\x8a\xed\x51\x3c\x08\xbf\x58\x95\x1a\xa4\xdf\x15\x0f\xe8\x8b\xa1\xe2\xba\x1f\x40\x85\xe9\x44\x53\xc8\x16\x6e\x16\x66\xc0\xde\x76\xb7\x80\x43\xa2\xaf\xc4\xcb\x1d\x3d\x52\x8b\x6e\x16\xe2\xf0\xff\xc4\x02\xc9\xfc\x2e\x0f\xe2\xbe\x78\xdf\x3e\x00\x10\x7a\xa1\x3d\x48\x6f\x9d\x80\x0a\xa8\xb8\x47\x29\xae\x21\x56\xae\xc6\x14\x15\x38\xdc\x65\x4e\x89\x82\xc1\x59\x25\x4e\x89\xf6\x0e\x94\x37\x06\xd5\x0f\xcc\x78\x40\x63\xc0\x29\xd1\x71\x06\xf5\x08\xad\xdd\x55\x0e\xe3\xea\xbf\x16\xd4\x14\x5e\xd0\xaa\x72\x8a\x44\xc5\xa5\x1f\xe8\x93\x5c\x7a\x35\xc5\x34\x0f\x95\xe9\xd2\x74\x85\x11\xdf\xab\x06\x84\x86\x92\xf3\xa1\x26\x26\x4d\x2a\xb3\x66\xd6\xa5\x9c\x37\x35\xc7\xa4\x34\x95\x83\x89\xfb\xbf\x0e\xd6\x42\x7b\x24\xfb\x2a\xfa\x41\xf4\x65\xab\x96\x58\xc7\x1e\x81\x82\x05\xaf\x55\x53\xe3\x90\xa6\x9d\x53\x4b\xac\xc3\x4f\x8d\x61\x8f\xba\xc6\x50\x20\x7e\x81\x85\xaf\x53\x56\x25\xfa\xd4\x9e\xe8\x0a\x51\x48\x93\x34\xaf\x95\x75\xac\x5c\xbb\x55\xc9\x9f\x50\x3e\xc5\xaa\xe0\xb1\x1e\x1e\xc2\xf6\x87\xe6\xe4\x1f\x18\x63\x29\x90\xda\xe3\x9c\xaa\x31\x25\xc1\x42\x58\x14\xab\xf6\x1a\x50\x37\xfe\x81\x75\x35\x5d\x01\x68\xcb\x92\x37\xb5\xa3\x91\xec\x72\xab\x3d\x66\x49\x63\x10\xa8\x63\xda\x5a\x15\xb7\xe6\x51\x65\x3b\xd5\x40\x32\xaf\x2e\x73\x09\xed\x65\x30\x58\xa8\x8e\x2c\xa8\x23\xd6\x85\x9a\x10\x77\xcc\xee\x13\xb8\x65\xbe\x60\xa8\x23\x70\xc9\xfe\x25\x4c\x6d\x55\xd0\x53\x1d\x95\x50\x27\x68\x50\xae\x9c\xfb\x61\xdb\xb2\x75\x6b\x8c\x6e\xd7\x44\x25\x56\xd3\x71\x06\x75\x9f\xfa\x8a\xcf\xa1\x35\x42\x33\x95\x54\xb5\xe7\x82\xa8\x35\x8d\x5f\x5c\x07\xbb\xf5\xab\x52\xa1\x3e\xc8\x6d\xf0\x3c\xfc\x3e\x1b\x5d\x61\xf5\xab\x6e\x9d\xd4\xad\xf2\xeb\x8a\xf1\xf3\x80\x02\xa7\xaa\x54\x88\x55\x09\xb6\xb4\x52\xac\xc4\x5a\x8a\x0c\x6c\xd5\xf5\xe2\x93\xd3\xff\xfb\xdc\x97\x15\x87\xbf\xea\x99\x08\x67\xd5\xa2\x04\x44\x4d\x39\xb2\xab\x9e\x04\x93\x7e\xfe\x07\x6f\xe6\x53\x1e\x20\x7a\x69\x88\x00\x51\x73\x0c\x41\x3d\x41\xb8\x3e\xfc\x3c\x43\xfe\xf9\x9f\x21\x4f\xfe\xde\x8f\xb2\x06\x60\x6b\xbc\xee\x10\x83\xba\x15\x5e\x5e\xfe\x3f\x6e\x86\xfd\xfe\x95\xf7\xf3\x3a\x45\xd6\x2b\x02\x3b\xf4\xbd\x8b\x19\xd1\xa9\xba\x02\xf6\x91\x2c\x08\xf7\x91\xaf\x0a\xa3\x78\xd5\x2b\x32\xba\x35\xc3\x5b\xfd\x75\x87\x4f\x55\xc8\x3e\x15\x0f\xbd\x2a\x81\x9c\x22\x2b\x58\x15\x3f\xae\xcf\x9c\x75\xab\xcb\xdc\xbd\xa4\x7e\xb4\xa7\xf8\xf9\xc6\x92\x53\x7f\x39\x10\x2a\x08\x7f\xd5\xdf\x88\x05\xe1\x0f\xbe\xf1\x83\x5a\xb8\xd5\x5b\x77\xec\x4e\xbd\x17\x65\x8d\xd0\x7d\xc6\x0b\x7e\x80\x29\x90\xb2\xa9\xf7\x8f\xbb\x0e\x7d\x92\x6c\x4c\xbb\xa6\xeb\x56\x7f\xb5\x7a\x0a\x1e\x86\xdc\x4b\x74\xab\xbf\x32\x3d\x24\xcf\xdf\x22\xd7\x07\x1e\x5a\xf4\x29\xb3\x26\xdc\xa0\x87\x06\x35\x7f\x00\xaf\xed\xf0\xff\x37\x98\x45\xea\xd1\x0b\x6e\x9e\x77\x1d\x10\x60\x8a\x29\x5f\x15\x18\xd4\xec\x35\x00\xa4\x97\x4f\x02\xf5\x65\xd3\xb9\x83\x40\x7a\x75\xaf\xd9\x97\xf6\x5a\x37\xbd\xe7\xff\xfe\xaf\x1c\xee\xf0\x1b\x92\xde\x0d\x06\xb3\xcb\x26\x4d\x7d\x59\x34\x32\x2c\x1b\x71\x8f\xca\x84\x58\x2d\xe2\x1e\xf5\x81\x76\x30\xa2\xb2\xb1\xda\xd6\xe6\xdd\x37\xcd\x8d\xd4\x95\x22\x43\xb3\x71\xaf\x2b\xa8\x8e\xad\xc4\x20\xf2\x71\xf9\x82\x5b\x74\xa8\x0c\x65\x95\x66\xb8\x81\x92\xe5\x0b\xc4\x96\x58\xc4\x12\x22\x2d\x11\x31\x2e\x8b\xaa\x25\x96\x98\x34\x57\xe3\x52\x57\xd9\x46\xab\x25\x6e\x62\x3e\xef\x33\xa1\x52\xfe\x2d\x85\xde\x91\x6e\x6d\x19\x13\x4b\x21\xe0\xab\xed\x03\x69\x11\x4b\xc9\x6a\x99\x11\x91\x62\x6a\x99\x6d\xa4\x29\x6f\xc0\x64\x09\x20\x67\xb5\x1c\xc4\x3f\xea\x71\x06\x9b\x53\x9b\xa2\xc5\xf9\x55\x49\xcc\xab\x65\xe4\xd6\xca\xff\xa2\x67\x5a\x66\x41\x2c\xbf\x8c\xd0\x72\xff\xc9\x34\xb5\x6f\xac\x65\x84\xc8\xa7\xbb\x2f\xa9\xb0\x7a\x1f\x90\x2d\x47\x91\xb6\x12\x96\x80\xa4\x76\x2b\x48\x09\x77\x77\x1b\x37\x5d\xd8\x2a\xab\x6d\x63\xa6\x24\x0f\xf8\xb6\x65\xba\x50\xc0\x56\x83\x45\xdc\xfe\x84\x56\xa2\xc1\xfe\xe0\x1d\x1f\x54\x85\x15\x20\x0e\xa9\xed\x06\x50\x85\x63\x17\xda\x3e\x1c\x77\xc1\x16\xae\x56\xff\x5a\xac\x29\x26\x84\xd1\xe6\x56\xab\xa1\xc8\xbc\xc6\xeb\xa2\x06\x35\xb1\x82\x93\x27\xc1\xd8\xfe\xcc\xa7\xee\x1f\x7e\xbc\xa0\x3e\xc4\xad\xb5\x2b\x00\x9b\x62\x78\x90\xb9\xb5\xf6\xa5\x74\x6b\x2d\x2a\xf4\x0b\x21\x08\xbd\x2d\xf7\xf9\xba\x5b\xb7\xb4\xf6\x03\xd0\xd5\x35\x6c\x5d\xb4\x3c\x6d\xfd\x6f\xd5\xea\x93\xdb\x20\xcb\x3e\x89\xb4\x6d\x4e\xe5\xcf\x20\x90\x4c\x73\xf8\x32\xa7\xf5\x97\x79\xd2\xb0\x6f\x7b\x2b\xdb\xc5\xd0\x06\xe8\x8a\x3a\x0a\xb5\x81\x37\x50\x16\x5f\x23\xe0\x4e\xd4\xa1\xfb\x18\xc6\x19\x5a\xff\xcf\x30\x58\x74\x3a\x6b\xfb\x90\xbd\x7c\x25\xd7\x26\xb0\xae\x1e\x93\xd9\xf9\x5f\x3d\x98\xe4\x80\xc9\xe0\x69\x33\xc6\x6c\xfa\x8b\x17\x89\x87\x7e\xe1\x47\x05\x1a\xb3\x19\x2b\x6b\xfa\x87\x87\x07\xb4\x50\x66\x24\x16\xaa\x82\x15\x83\xaa\x93\x46\x0b\x57\xbb\xd7\x72\xb8\xda\x7d\xbb\xd0\x80\xa6\x75\x7c\x6e\xdb\x46\x97\x91\x8a\x57\x5b\xe1\x46\x51\x1f\xc0\x8f\x3f\xbc\x79\xce\x1c\x10\x75\x1a\x24\x18\xcb\x1d\xa1\xdc\x4e\xc2\xde\x3d\x08\x24\x8b\x3a\x22\xa4\xc1\x6f\xea\x88\x90\x76\xc6\x95\x9a\xeb\x3b\xe3\x03\xfe\xe2\x45\x0b\xfd\x02\x83\x66\x61\xb4\x8d\x9e\x25\xaa\x99\xd5\xc8\x36\x19\x96\xb7\x17\xb3\xe4\xdd\x1a\x8e\xec\xff\x67\xec\x5d\x92\xad\x07\x75\x26\xd1\xa9\x9c\x21\x98\x97\x04\x9d\x33\x17\x3f\x6f\xef\x36\x6a\xfe\x8d\x0a\x67\x2e\x67\xee\x8a\xa8\xfa\xe3\xeb\x79\x6d\x6d\x30\x60\x10\x7a\xa6\xcc\x8f\x68\xc8\xb6\x55\x78\xc0\x90\xfd\x87\x5d\x1e\x7c\xa1\xd6\x14\x80\x63\xbe\x31\xc7\x81\x8f\x64\xfe\x03\xa5\xdf\x46\xe2\x01\xa5\xdf\xae\xe4\x71\xd2\x3a\xa7\xf6\x94\x52\xec\xac\x18\xa8\x6e\x5a\x24\xa4\x0c\x5a\x01\x6c\xb1\x1c\x80\x00\x53\x51\xf6\x35\x00\x42\x61\xab\xf1\x38\xe1\x8c\xf7\x15\x72\xbd\xba\x50\xf1\x47\x47\xfe\xaa\x8d\xc8\x03\xae\x63\x07\x24\x0f\x18\x05\xec\xe9\x1d\x00\xfc\x72\xbc\xdd\x80\x90\xb3\x8d\x3f\xff\x80\x25\xf0\x9d\x7a\xc3\x69\xb6\xfc\xbb\xa2\x2e\xa4\x7f\xe3\x85\xba\xf3\x07\x5c\xc3\xe9\x25\x44\x36\x87\x7d\x60\xe3\x06\x54\x4f\xfd\xb7\x0b\xe7\x95\x88\x86\x3d\x76\xe3\x3e\x39\x5a\x2d\x0f\x82\xd3\x36\x9f\xb2\xfb\x46\xed\x6d\x2d\x0f\x52\x3d\x04\xe4\xb3\xc6\xc3\x1b\x5f\xa3\x7d\x45\xa6\x91\xde\x10\x0f\x62\x2d\xdc\x1e\x99\x20\x4e\x84\x18\x28\xd4\xf6\xe7\xc2\x61\x26\x88\x77\x24\x44\xa8\xee\xef\x8f\x4c\x90\x3f\xab\xf5\xab\xc4\xaa\xe5\x7f\x45\xa8\x26\xe0\xac\x35\x9e\xf3\x7d\x9f\x3f\xef\x43\x91\xcf\xbf\x6f\xd0\xb5\xba\x0f\xa4\x60\xbb\x2d\x62\x43\x56\x9d\x64\xb8\x40\xbd\x75\x07\x87\x04\x62\xe7\x1c\x53\x15\x1b\xf5\x1c\xff\x0e\xbc\x60\xe8\x37\x77\xb4\x6e\xc4\x78\x65\xac\x61\xa1\x34\x98\x5b\x32\xfd\x82\x1b\xa5\x83\xdc\xc1\xf3\xfe\xbf\x64\xa8\x40\x25\x39\x1b\x38\x02\x16\x18\x5f\x0d\x51\x2a\xfe\xbf\xea\x77\xe3\x00\xfc\x07\x54\xee\x13\x23\x8d\x32\xf9\x0f\x4d\x7f\x38\xf8\x07\xff\x07\xe4\xe8\xe2\xdf\x88\x0b\xee\x1e\xc2\xcd\x06\x1a\x33\xe0\xc9\xec\x66\x08\x8a\x69\xb6\x99\x47\x45\xf0\x9c\xee\xab\x60\xf4\x9e\x38\x65\x00\xa3\x43\x39\x50\x2b\x5e\x41\xa8\x55\x6d\x83\x60\xf0\x9d\xae\xa3\x68\xd0\xa7\xfd\x55\x1a\xd0\x50\x75\xbf\x45\x43\x39\x45\x71\x8d\x78\xe5\xa0\x6e\xce\x1d\x0d\x62\x9e\x24\xfd\x68\xd4\xe6\x52\xbf\x11\xa3\xea\x09\x35\xac\xc0\xf0\x78\xb8\x02\xe1\x3f\xc0\x15\xaf\xf1\x75\x24\x2c\xb9\xff\x1f\xba\xa9\xc4\x9e\xe8\x58\x00\xdd\x3d\x41\xb9\xc8\xa2\x7d\x74\x00\x2e\x79\x06\x1d\xc0\x30\xba\x9c\xa2\x07\x94\x2d\xd3\xdf\x7d\x67\x51\x3c\x00\xe2\x51\xff\xbc\x00\xd1\xe1\xc3\x23\x22\xeb\x0f\xff\x01\xd9\x2c\x7f\xa6\x00\xc0\xd7\x3f\x1d\x5e\x88\x54\xd3\x27\x1a\xd0\x4d\x74\xb9\xc5\x40\x0c\xa9\xf8\x5a\x0c\x44\x52\x4b\x79\x0a\x16\x05\x12\xe7\x09\xc0\xe4\xab\xa0\xe1\x8a\x41\x56\xe5\x83\x32\x08\xc2\xa7\x5d\x37\xb8\xe6\xfe\x48\x03\x11\x9b\xba\xfd\x82\x62\x96\x0d\xbe\x81\x6c\x0e\xbb\x7a\x02\xb0\x5b\xcd\xbb\x0e\x75\x85\x7c\x1b\x45\x50\x5d\xd2\x90\x90\x44\xed\x34\xb1\x88\x89\xf0\x44\xd3\x51\x36\x7a\x73\x7b\x88\xa6\xba\x2b\x82\x7e\x13\xdb\xb8\x03\x49\xd4\x76\x10\x06\xcd\x66\xba\x4b\x82\x66\x33\xdb\x6f\x23\xb1\x4d\x74\xe1\x07\x60\xb9\xa6\xdf\x88\x2c\x6a\xe7\x3c\x05\xa2\x01\xa3\xf8\xff\x03\x89\x70\x1a\x31\x60\xb9\x1c\xf4\x1a\x08\xa0\xa8\xba\x3d\x83\xd5\x00\xb6\x7f\xc1\x15\x58\x31\xc1\x0a\x7d\xa8\x90\x11\x6d\xc7\x58\x4c\xb2\x42\x49\xa1\x01\x33\x9b\xbd\x14\xc1\x94\x68\xbb\x76\x82\x88\x23\x7f\x1a\x00\x59\xc6\x6c\x64\x72\x8f\x48\x50\x8e\xc9\x8c\x05\xcd\x67\x32\x33\xdf\xbf\x91\x63\x26\x93\x45\x2c\x58\x61\xcc\x37\x90\x86\xf1\x87\x7b\xa3\x38\x41\x7a\x93\xd2\xee\x26\x20\xc2\x15\xbf\x2c\x0c\x37\x80\x39\x5a\xef\x5b\x0b\x26\x0d\x93\x77\xb6\xf7\x3f\xa0\xde\x86\x4f\xc9\x02\x50\xa0\x27\xb0\x27\x52\xc0\xfc\x1b\xd8\x08\x3e\x85\x3b\x96\x2c\x7c\xec\x80\x8a\x1b\xba\xe0\x83\x19\x11\x3e\xd6\x07\xea\x75\xb8\x03\x94\x06\xd8\x54\x53\x72\xc5\xc1\x1b\x5b\x6f\x3c\x10\xc4\x64\x56\x77\x0c\x36\xd0\x67\x3d\x90\xf8\xee\xfb\xe5\x48\xfe\x83\x5b\x60\x53\x15\xff\x7e\x75\x83\x3f\xb7\x05\xa5\xce\x3f\xbb\x12\x55\xf5\xed\xdf\x0c\xd8\xd2\x6c\x06\x89\xe3\x61\x03\xf5\x70\x42\x2a\x91\xd4\x10\x48\x9a\x50\x0d\xa0\x15\x48\x9a\xd8\x7c\x4c\x98\xf4\x6c\xc6\xc0\xe8\x09\xf3\x32\xe6\x3c\x4b\x10\x0f\xe4\x3c\x6f\x4e\x40\x8d\x13\x4a\xa8\xa5\x06\x60\x9d\x39\xe3\x20\x10\xd1\xf8\x87\xdb\xa2\x1e\xb0\xf5\xe8\x40\x1e\xb4\x8a\x94\xac\x40\xb4\x85\xbd\xdc\xf1\x4a\xa1\x45\x60\xec\x2b\x50\xa4\xc8\x01\x24\x71\x2d\xd4\x86\xd2\x84\x68\x9b\xb3\xb2\x13\x80\x4a\x73\x3a\x51\x5c\x04\x18\xd5\x57\x46\x91\xfe\xe1\x0b\x14\x29\x13\xdb\x1f\x76\x0f\xd8\x59\xe7\x8b\x06\x61\x67\x65\x4f\x8c\x1b\xbc\xcf\x07\x01\x01\x8c\x8e\xc2\x89\x1b\x29\xb2\xbe\xe1\x59\xa0\xd1\x9b\xe2\xa1\x6a\xa2\x19\xbd\x82\x62\x3a\xb2\x2a\xe0\xca\xfa\x73\x50\x20\x28\x3a\x36\x2e\xe8\xc9\x0a\x9f\x0c\x94\x18\xda\xbc\xb1\x1f\x2e\x89\xbf\x01\x90\xd0\xfe\x9c\xc5\x07\xa2\xae\xb9\x3d\x45\x41\xd5\x77\x5d\xc9\x22\x8e\xda\x55\xf9\x8a\x82\xe9\x50\xa7\xdc\x50\x6f\xb6\x99\xce\x93\x21\xee\x9c\x1b\x6a\xe1\x68\x5f\xe7\x46\xdb\x46\xea\x37\x62\x72\x64\x69\xc8\x0d\x18\xeb\x5a\xb3\xdc\xa8\x5b\xf8\xff\xb1\x8b\xaa\x07\xc8\x35\x15\x1d\xa2\x9e\x80\x70\x57\x16\x9c\x4c\x9d\xa3\x7c\xe5\xb8\x66\x0d\x39\x0b\xfa\x77\x74\x7a\x16\x2c\x89\x3b\xa8\x88\x84\xd2\x36\x4b\x54\x43\xb4\x47\x34\xeb\xf5\xfe\xd6\x39\xc9\x86\x5d\x25\xa3\x74\x36\xee\xaa\xe5\x7f\x20\x4e\xa9\x46\x04\xe7\xda\xf2\xff\xbf\xec\x72\xdb\xfe\x49\xb7\x49\x44\x43\x66\x77\x63\xac\x8e\xae\x9b\x04\x0c\x8c\x23\xa0\x92\x22\x55\x6e\xfe\x07\x94\xfd\xec\xfe\x0d\x3e\xe5\xdf\xa3\x02\x62\x44\xab\x33\xb8\x45\xd5\xe1\x60\xdd\x1e\xad\xc6\x58\xf8\xad\xc9\x0d\x62\x3f\x99\x8e\x3a\xeb\xe2\x3a\xf9\x0a\x30\xc5\xa1\x75\x89\x7a\xc3\x9b\x23\xb1\x13\x02\x8c\x30\x4d\x56\x06\x8c\x69\xfe\x5c\xc0\xa0\x17\x78\xd4\x4a\xe4\x9a\xda\xe6\x9f\x01\x03\x86\x6e\xc7\x0c\xf8\x80\xa4\x2a\x64\x02\xe2\xc4\xfb\x0d\xd2\xc3\xa6\xeb\x35\x93\x85\x6e\x74\xa6\x12\xa1\x19\xde\x3f\xc0\x28\x33\xdf\x4e\xe4\x06\x98\x2d\x27\xae\x6b\xcb\x4b\xc9\xeb\x5a\xc8\x05\x2b\x27\xdc\x86\xfe\xff\x9b\x74\xff\x01\xd5\x85\xa5\xcd\x25\x6d\x3c\x8e\x78\xcd\xc5\x6f\xea\x23\x02\x04\x30\x33\xea\x7c\xef\xe3\x56\xa4\xdb\x24\xdc\x58\xcd\x7b\x00\x26\x9b\xf0\x8e\xdd\x39\x43\xf5\x07\x50\xf9\xf0\x0e\xdf\x39\x05\x49\xa5\x89\x14\x45\xab\x6b\xb9\x73\x0e\x7f\x7a\x78\x30\x22\x2d\xc2\x7b\xe1\xa6\xa5\xa2\x64\x2d\x9e\xf4\x57\x46\xba\x40\xc8\xb6\x97\xb0\xb1\xd8\xf3\x94\xb0\xa1\xd8\x53\x95\xb4\xa1\x48\x43\xcd\xf7\x6e\x5a\x4e\x57\x48\x24\xfc\x6d\xf6\x6e\x26\xc3\xf1\x65\x76\x4a\x98\x48\x54\xfa\x60\xe5\x05\xbb\x98\xe4\xb8\x44\x30\xbc\x8d\x83\x79\x01\x1f\xca\x7c\x91\x26\x10\xe7\x24\x27\x4c\x20\x8e\xd4\x48\xd4\x7a\xb1\x92\x9f\x77\xa2\xa0\x92\x5e\xc0\x68\x78\xa7\xdf\xe6\xcd\xf2\xb6\xfe\xfd\xbe\xa1\x7a\xc4\xa8\xc5\xe2\xfb\x3e\x61\x55\xd8\x9c\x1c\x9b\x0f\x44\x51\xef\xf4\x07\xf8\xb8\x9e\xe2\xcb\xeb\x67\xe8\xbe\x9d\x8c\xcc\xb3\x76\x33\x37\x96\x35\x6b\xfa\xcd\x82\xbd\x45\xbf\x61\xff\xac\xfe\x7f\x8e\x40\x87\x79\x02\x94\x3c\x74\xb6\x26\x32\xe6\x1c\xc2\x33\x37\x16\x27\xf7\x08\x90\x75\x1d\xa6\x2f\x76\x98\xfa\x03\x30\xc1\x8a\x3b\x3c\xf8\x0f\x6e\x81\x62\x00\xd5\x0d\xf8\x59\xc4\x7f\x26\x62\x37\xec\x2d\x98\xa5\x60\x1f\x68\xc8\x05\xd1\xd6\xee\x00\x25\xe8\x05\x8b\xbe\x66\x81\x8f\x5e\xd6\xc4\x59\xc8\x2f\xbb\x7e\xbf\xfb\xc2\x88\x10\xf3\x55\xf2\x97\xb0\xe3\xd6\xac\x00\xb6\xf4\x12\x54\xb0\x17\x3b\x6b\x26\x02\xf2\x7d\x1d\x4d\xe4\xe8\x39\xa4\x68\x36\xc6\xb3\xeb\xff\x11\x4f\xaf\x2a\x4f\x6b\x02\x38\xcc\x81\xbe\x13\x05\xe3\x85\x21\xb5\x66\xc3\xe1\xb5\x3f\x6c\x36\xbe\xe0\x9f\xe2\xd2\x26\x2a\xef\xda\x00\x3d\x3b\x8b\x2f\x68\x74\x9d\x09\x10\x1a\x7d\xbf\x31\x3a\xbd\x7d\xa0\x40\xbe\xd8\xff\x44\xd5\x5c\xc3\x45\x4c\x28\xc4\xa9\xeb\x64\xbe\xd7\xc9\x72\x38\xd2\xa4\xdb\xc1\xa7\x62\x32\xac\xcf\xeb\x3b\x10\xfa\xe2\xef\x05\x14\xb1\x98\xfe\x3d\xf0\x5b\xff\x1f\x94\x7a\xc5\x18\x26\x50\xa3\xed\xde\x9b\x2c\x93\xeb\x11\xa2\x3c\x7d\x78\x03\xa0\x10\x5d\x78\x07\x22\xec\xcf\xf8\x0b\x13\x55\x70\xab\xd4\xdb\x99\xd0\x35\xd6\xe6\x7f\xe0\x92\x68\xca\x2c\x4e\xe7\x53\x08\xec\x82\x3f\x4b\x0e\xec\x02\x87\xda\xcc\x64\x4d\x25\xff\xff\x44\xf5\x7a\x6d\x88\x84\x42\xee\x0d\x91\x48\x4c\x5a\xa6\x1f\xc8\x3f\xd4\x8a\x00\x44\xac\x78\x82\x09\xac\x9f\x3f\xfd\xa1\xf6\x7b\xf5\xfb\x61\xe7\xf2\x04\x51\x2c\xaf\xf8\xcc\x02\xe5\x5a\xd5\xa5\xd7\x9c\x00\xf4\x10\xeb\x9e\xbf\x6a\xfb\xea\x6f\x76\x14\x8d\xf1\xff\x43\x7d\xf7\x09\xa3\x46\x6d\xae\x34\x81\xaa\xdd\xfd\x1b\x45\x7b\xbc\x23\xe0\x85\x71\x10\xc1\x84\x17\xc6\xd1\xb8\x73\x1e\xfc\x20\x5a\x40\xde\xc0\x36\x61\x4c\xdc\xc0\x45\x32\xd1\x84\xc2\x6c\x73\xf9\x5c\x28\xeb\xe3\x15\x59\xbf\x4f\xac\x29\x00\x74\x2c\xfd\xc9\x71\x41\xfb\x42\x9e\x6b\xb0\x81\x7b\x80\x93\x5d\x42\xc8\x44\xb4\x65\x33\x97\xc2\x8d\x6e\x4d\x67\x32\xdf\x61\xc9\x12\x36\xa1\x42\xdb\x90\x34\x19\xe9\xe2\x73\xf4\x8a\x00\xc5\x69\x3f\x13\xa8\x05\xdb\x32\x67\xdd\x91\x7f\xad\xdb\x65\x42\x07\xb7\x2a\x34\xe9\xb6\xf1\xae\x40\xf9\xbd\xcd\x89\xbc\x13\x09\x05\x0e\xdb\x9e\xd4\xb1\x9d\xdd\x35\x0f\x5c\xe1\x52\x07\x27\xfc\x32\xce\x63\x9d\x70\xb3\x38\x2b\x74\xa2\xcc\x4a\x33\xa3\x3b\xb9\x68\x12\x22\xe6\xc9\x0e\x34\x67\xfa\x51\xec\x20\x9c\xf0\xa3\xfc\xb9\xaf\x50\x47\xf7\xcf\x75\x73\xe1\xfe\xb2\xc5\x72\xbe\x1a\x68\xfc\xb9\x1c\xae\x89\x0f\x6d\x3a\x4b\xd1\xe8\x8d\x17\x85\x59\x77\xf8\xa0\xe2\x9e\x46\x78\xc3\xef\x22\x3b\xc5\xa4\xc2\xe9\x44\xd6\x49\xbf\x88\xcf\xfa\x2b\x24\x0c\x6b\x63\xf3\x15\x12\xd2\xea\xdc\x7c\x65\x84\x55\xbc\xa6\x74\x6d\xd8\x26\x3c\x6f\xf8\xa6\x3c\xe2\x9b\x7b\xdb\xd7\x0d\x54\x52\xbb\x65\x27\x55\x52\x29\xd9\xf3\xe1\xc6\xf0\x2b\x01\x63\xe5\xcc\x9a\xf9\xf0\xc6\xd5\x22\x3f\x2c\x91\xe4\x0e\x50\x52\x7f\xf3\x0b\x20\xe0\xaf\x7f\xaa\x76\xb3\x16\x71\x47\xb5\xaf\x17\x45\x0c\x27\x2b\x2d\x20\x75\x5b\xac\x5a\x1b\x56\xa4\xfa\x37\x70\x5a\x36\xff\x3f\x4f\xbb\xc4\xe9\xb5\xc1\x97\x55\xfc\xfb\xc2\x12\x7f\x9f\x64\xc1\xd5\x60\x5f\xd8\x42\x86\x9e\xca\x0a\xaf\x85\x2c\x7f\xa7\xfa\xae\x9f\xc0\x30\xf5\x1b\x37\x9a\xd8\xe3\x42\x76\x81\xad\xf2\x0b\x19\x7c\xc2\xf3\x5b\x0b\xb5\x64\xc3\xfd\x55\xfa\x47\xf5\x7e\xe0\x6e\x0b\x4a\x6d\x2d\xe4\xdb\x39\x46\x6b\x41\x1e\x28\xd5\xbf\xe1\xad\x94\xc0\xb1\x10\xad\x50\x6c\x07\x5a\x48\xa0\x53\x9d\xcc\xb5\x60\xb5\x57\xd9\xe3\xb5\x10\xb9\x5f\xc4\xdd\x56\x87\xf7\x4a\xd5\x52\xd7\x02\x72\x68\xf3\x37\x02\xe0\x92\xbd\x8b\x0b\xa1\x9b\x8e\xf8\x5d\x03\x2e\xe4\xee\xdf\x48\x97\xd0\xa9\x5b\x08\xe5\xfc\x03\x99\xb2\x00\xa8\x24\x80\xf8\xb5\x50\xa6\xcc\xa7\x62\x41\x07\x2d\x4e\xfb\x5c\x23\xe1\x51\xd5\x08\xc7\x89\xdf\x7e\x03\xd7\xc0\xbb\x04\x98\x48\x06\xa5\x5a\x90\x1a\x54\x46\x79\xad\x40\xa9\x0e\x19\x35\x56\x70\x0d\xbc\x48\x41\xb3\x87\x86\x18\x1c\x92\x57\x0d\x49\xf1\x36\x18\x2e\x40\x1a\x55\x7f\xa6\x57\x8c\xa8\xd6\xb3\x57\x02\x4d\x4e\x1a\xd3\x02\x1c\xf7\x26\xd6\xb2\x12\xb7\xa8\x3f\x7b\x72\xd1\xfe\x34\xe8\x18\xb2\x1b\x0c\x54\x87\xf1\x0b\x02\x05\x5a\x35\xa5\x04\xab\xf1\x0c\x5e\x31\xa1\x1a\x2e\x68\xbd\x62\x42\x2d\x4e\x5d\x5d\xaf\x9c\x50\xfe\x6c\x34\x00\x1c\x85\x6e\xc5\x95\x37\x1b\x68\x11\x29\x28\x48\x81\x59\xaf\xa0\x30\x8c\x5d\xb6\x10\x6f\x31\xc5\xe0\xd7\xc4\x0c\x7c\xf2\x5e\x41\xa0\xfd\x39\xa9\xc8\xba\x77\xac\xde\x9a\x98\x81\x24\xe5\x05\x41\xa0\x4b\x70\x58\xb0\xac\x17\xe1\xbb\xae\xf5\x4a\x02\xc3\x20\x4f\x0b\x39\xf7\xb6\xd1\x2e\xa8\xea\x45\xd5\xd7\xd6\x9a\x9c\xa2\xd6\x70\xfe\xa6\xa8\x45\x9e\x28\x6d\x20\xd9\x62\x41\x12\x30\x4a\xd4\x02\x9a\xa8\xb3\xe6\x17\x2c\xe7\xd6\x06\xd6\x7b\xaf\x77\x07\xf7\x2d\x98\xce\x97\xfb\xdb\x11\xba\x24\x66\xbc\xde\x5b\x78\xd8\x73\xbd\x90\x75\xdf\xfc\xd1\x76\xb8\x2e\xfc\x4d\x90\xf5\xb7\xfc\x7e\x18\xc2\x1d\xbd\xbf\x58\x23\xd7\xd6\xb6\x85\x72\x6f\x06\xd6\x5a\x30\x84\x5b\x1e\x5f\x27\xb3\x61\xf5\xff\x17\x92\xb5\xbc\x8b\x90\x5e\xe0\x68\xc1\x05\x28\x6d\x0b\x7b\xeb\xe2\xb6\x95\xb8\xbc\x10\x8a\x60\xcf\xee\xba\x90\x35\x23\xd3\xfd\x42\xfe\x81\x33\x22\x16\xf4\x72\x3b\x35\x17\x8c\xc0\x45\x45\x56\xd6\x42\xe9\xfa\xbe\xfe\x49\xbd\x59\x17\xbf\xb8\x19\x01\x72\xdc\x9d\xa0\xb1\x2e\x7e\x71\x6f\x62\x64\xfc\x59\x4e\x5a\x37\xcb\x10\x9b\x9f\xdf\x84\xed\xd2\x2e\xc6\x15\x5f\xcd\x39\x50\x49\xcc\x10\x2b\x0b\x65\xe8\x8d\xa6\xb1\xa0\xa5\x3b\xe8\x68\x87\x96\x5e\x7c\xe7\xef\xb0\xc8\xda\xbb\xbf\x03\x89\xdb\x07\x7b\x7f\x2f\xb4\xe5\xc4\xa9\x9d\x05\xd8\x97\xe9\x98\x81\x18\xc7\x5e\x02\xff\xdf\xf5\x1b\x01\x39\xda\xf4\x7b\x3d\x00\xf3\xa5\xfe\x50\x04\xb3\x38\x3c\x65\xaf\x7c\xa1\x7f\xdf\xf8\x1d\xfa\xfd\xb0\x81\xde\x00\x95\xd6\x1a\xc4\x8e\x74\xb5\x2a\x99\x64\x6f\xc8\xa0\xfe\x43\xc7\x1e\xd0\xb1\xdc\x79\x83\x2d\xf7\xc7\x17\x88\x99\xee\xc8\x56\xf3\x8d\xb3\x77\xec\xca\x66\x3a\xbe\x49\x33\x1d\xe0\xe0\x9e\x01\xb2\x13\xcc\xac\x77\xe4\x84\x3b\x72\x6c\xef\xd8\x15\x16\x12\xf6\x8e\x35\x95\x71\x67\x07\x04\x60\x91\xa3\x60\xe7\x8d\x55\xa4\x65\xee\x48\x12\x4f\x2f\x2a\x92\xc4\x9d\x40\xbc\x0f\x2c\xba\xae\x8f\x7d\xb0\x8e\xa3\xfe\x3f\xe0\xa9\x48\xff\xc6\xb9\x32\x6c\xcd\x8e\x74\x37\xdb\x75\x77\xe8\xc1\x4e\xcb\xdf\x83\x53\xd4\x80\xe0\xa6\x2d\x46\x6f\xdb\x91\xee\x60\xb8\xd1\x9d\x18\x7d\x1e\x21\x40\x5e\x9c\xe2\xbc\x07\xea\x73\xeb\x92\xde\x81\x75\x5d\x75\x92\xf6\x44\xec\xb9\x3f\x1a\xf4\xe2\x22\xd4\xff\xb5\x03\xe5\xa5\x74\x77\xd0\xe1\xdc\x37\xfd\xe5\x85\x06\x43\xda\x71\xa1\xa9\xfa\xd1\xda\x91\xf7\x6e\xbc\xbc\xfd\xbd\xd0\x62\x4b\xff\x46\x78\x83\xc4\x96\x3d\x51\x1c\xb5\xf8\x7d\x17\xfe\xdf\x74\x06\xb3\x9b\xfe\x80\xae\xdf\x13\xbc\xde\xfd\x4d\x7e\x02\x79\x1e\x76\xe4\xc9\xff\x59\xd1\x89\x09\x48\xb2\xdb\xa1\xd8\x1a\x5f\x63\x07\x88\xcc\xf4\x27\x7c\xef\xb3\x70\xca\xcb\xce\xfb\xec\xcf\x12\x22\x23\xc3\xbc\x74\xe7\x7d\x96\xee\xf0\x44\xfd\x5d\xd3\x11\x49\xeb\x73\xf8\xea\xb5\xa1\x2a\x8a\x6b\xa7\x5e\xeb\x01\xbc\xb7\x57\x98\x39\xee\x0b\x9a\xb7\x78\xef\xbe\x38\x40\xad\xc0\xfa\x0d\xd0\x7f\xd8\x5f\x99\x63\xb9\x43\x60\xea\x7a\x13\xa2\x28\x7d\xc8\x37\xb4\xef\xc0\x43\xf7\x8c\x71\xfd\x6d\x7f\xe8\x41\x55\x5e\x23\x78\xb5\xd4\x50\x09\xbd\xb5\xef\x40\x78\xd7\x6d\xb1\x13\xa9\xda\x9c\xe5\xd5\x5a\xd3\x01\x22\x3b\x2a\x5a\x85\x79\x1f\x8a\x97\x5a\xa1\xdb\x8f\xc4\x6f\x4d\xe0\x40\xff\xde\xd4\xc7\x62\x09\xbb\xf2\x2f\xb7\xcd\x0e\xcc\x1b\xbb\xa9\x77\xc0\xe0\x95\x2a\x1b\xf2\x8e\x72\x56\xc6\x9a\xda\x4f\x0c\xd7\x87\x18\xb7\xaf\xfd\x95\xfb\x09\xb3\xba\x24\x9e\xfd\x84\xa0\x2c\x5d\x62\x47\x7e\xbb\x1d\xa2\xfb\x85\xbb\xe4\x0f\x23\xbb\xd8\xa1\x16\xf8\x82\x3e\xea\x33\xf9\x5e\xd7\xcd\x2e\xda\xfd\xbd\xad\xa7\x23\x78\x76\x04\x0e\x1a\x7e\x71\xbf\x60\x96\x37\xe3\xbc\x92\x2f\xf4\x1f\x26\xe2\x8e\xdd\x01\x1c\x05\xe6\x6b\xbc\x4e\xff\x5c\x26\x88\x24\xb4\x24\xbe\xa3\xb0\xe7\x1f\xae\x80\xe2\x53\xce\xb7\xd8\xa1\x11\x97\x3f\x8c\x0f\xf7\xad\x71\x0b\x76\x24\xc4\x3b\xc3\x63\xbf\x39\x02\xbd\x10\xb5\xa5\x1c\xfe\xbf\x3f\x34\x1f\x49\x83\xde\x1f\xbe\xf1\xeb\xe0\xd8\x50\xf5\x4c\x53\x38\x68\xf4\xd6\x1e\x3c\x36\xae\x81\x86\x7c\xc0\x03\x6a\x49\xfd\xc0\x85\xad\xba\x8e\xeb\xd8\xc8\x78\x34\x84\x63\xe3\x10\xbf\xaf\x70\x40\xe5\xb4\xe4\x7d\x20\xa1\xdd\xf1\xfe\x07\x8a\x45\x59\xd0\x3e\x2a\xbe\xaa\xae\xbb\xa3\xb2\xbd\x7f\x77\x72\xba\xa6\x3f\xa0\xc0\x8b\x3b\xac\x3c\x77\xe2\x34\x07\x7c\xa4\xad\xbb\x87\xc9\x7f\xd0\xa2\x54\xa8\xe5\xe1\x06\x8c\x91\xd5\x90\x81\x3b\x6c\x37\xf3\xd1\xf8\xdd\x25\x46\x1d\x0d\xbe\x08\x7d\xb6\xa3\xd5\x57\x72\x96\x49\xed\x40\xb1\x49\xc7\x25\x1f\xc0\x1d\x36\x1c\xe2\x81\x60\x33\xe3\x4d\x1d\x4c\x50\xd7\x4e\x3f\x3a\xd6\x40\x3b\xfb\x40\x3d\x28\xbb\x01\x8f\xce\xa3\xa4\x25\x40\xa8\x59\xb1\xef\xff\x40\x2d\x6e\xfb\x3a\x8e\x4e\x53\x8d\x5f\x88\x7d\x24\x39\xee\xe8\xb4\x33\xb8\x3d\xf6\x61\xf5\x00\x1e\x14\x5b\xd7\x0a\x8e\x8d\x2f\xd4\x88\x01\x44\x63\xdf\xff\x81\xf2\x91\x3e\x6b\xc7\x98\xe8\x50\x23\x86\x67\xb6\x18\x65\xe0\x80\x8c\xa1\x42\xc0\xeb\x80\x25\xbb\x7a\x89\x13\xae\x61\xa9\xdd\xc7\xab\x21\xae\xd4\x8d\x7e\x4c\x94\x01\xf2\x37\xc4\x05\x58\x1c\x4a\x76\x00\x28\xe6\xcf\x0b\x10\xbd\xee\xa8\xde\x03\xf7\x8f\x2b\x62\xae\x03\x08\xb2\xd6\x26\x0e\x80\x98\x65\xf3\x6f\x78\xb3\x7d\xd4\x58\xda\xc8\x07\x61\xc1\x1b\x2e\x91\xe0\x58\x78\xa1\x37\x3e\x0b\x11\xf9\xa0\x20\x94\x5c\x35\x4f\xd6\x01\xc7\x66\x51\x81\x8c\x75\x20\x96\xdc\x91\xbb\x07\x32\xc6\xed\x96\x3c\x4e\x0c\x58\x57\xf8\x81\xd2\xd1\x76\x8c\x1e\xc8\xe7\x76\x80\xc7\x81\x18\x9a\xd2\xbd\x6d\xcf\x05\x77\x85\x66\x74\x62\x84\x3e\x79\x50\x87\x9c\xb3\x70\x5c\x88\x78\x34\x74\xdd\x01\x0e\x9b\xf3\x9f\x52\x3c\x0f\xd4\x25\xb2\xaf\xfc\xa0\xba\xe3\x48\xe3\x03\x00\x27\xaa\xc1\xb3\x0e\xd4\x61\x36\x4a\xdc\x01\xe5\xc5\x71\xdc\x07\x92\xb5\x8b\x8d\xb4\xc7\xcd\xf1\x6a\x85\x81\xf9\xe5\x90\x9b\xe3\x86\x77\xca\x9b\x12\xf8\x25\xa5\x7b\xd7\x02\x7f\xc4\xee\x96\xe3\x61\x87\xa6\x63\x84\x3e\x16\xc8\x16\x2b\x7f\x0e\xf6\x83\x3b\x4e\x2b\x7c\x02\xb2\x2b\x25\x83\x9c\x30\x10\x1a\xcc\xfa\x24\xb7\x95\xd4\x75\x02\x91\x6b\x4a\xa4\x38\x11\x5a\xec\xca\x01\xeb\x44\x72\xb7\xf3\x5e\xcf\x02\x2f\xa8\xe9\x95\x1d\x0c\xfd\xc6\x29\x90\x8c\x70\x92\xbb\x1a\x44\xec\x04\x24\x97\x53\x2c\x4e\x64\x73\x3b\x8d\xf5\x04\xef\x9c\xc5\x1d\x70\xc4\xdf\x9e\x38\x1b\x37\x9d\xfe\xbf\x71\x80\x1a\x10\x2c\x84\x56\x10\xcf\xc6\x01\x78\x44\x0d\x03\x90\x59\xfa\x44\x20\x70\x71\xca\xda\xd9\xb8\x8d\xfd\x9b\xdb\x58\xfb\xfe\x04\x68\x97\xdd\x76\x67\xdb\xf9\x0f\x5a\xe5\x86\x68\x36\x6d\xdb\xb3\x81\xdb\x49\xd2\x39\x3b\x87\xa0\x31\x03\x95\xcb\x76\x87\x13\xdc\xd3\x21\x0e\xe7\xc0\x1c\xb5\x71\x4f\xda\x0c\x0d\x6a\x75\x22\xfd\xdb\xa9\xb0\xe7\x60\x0d\x49\x7f\xf7\x01\xd1\xa4\xb8\xc7\x44\x52\xbf\x1b\x60\xdf\x48\xed\x3d\x07\x8f\x86\xe9\x4c\x4b\xf3\x67\x7a\x55\xb2\xe5\x1b\xea\x0c\x18\x21\x25\x1d\x9f\x41\xe6\xa4\x11\x26\x5e\x20\x41\xe3\x84\xbe\xf2\x07\xc2\xf6\x64\x79\x3c\x29\x2c\x27\x2d\x70\x0e\xee\x39\x5f\x8d\xa5\x5b\x9c\x3e\x13\xa1\x50\xe2\xb7\xe7\xdc\xd8\x40\x73\x80\x85\xcd\x77\xd4\x39\x11\x71\x27\x86\x7c\x4e\xa6\xb8\x6b\x4a\x34\x80\x39\x31\xe0\x9c\x08\xf4\x90\x80\x79\x12\xd9\x4b\x0c\xf8\x24\x47\x77\xa0\xff\xb9\xf8\x5d\x74\x3c\xcf\x75\x22\x55\x50\x43\x5a\x17\xff\x41\xb3\x04\x76\x96\xfd\x09\x27\xf2\x7f\xfe\xa4\xdf\x9d\x88\x46\x71\x9a\xfd\xb9\xff\x06\xa9\x41\xec\x1c\x84\xa7\x09\xec\xaa\xea\x95\xa6\x94\xee\xc0\x3f\x54\xf4\x6f\x96\x56\x4e\x40\x25\x16\x9f\x18\x96\x37\xf1\x42\x53\x4a\x95\x36\x8e\xf2\xf4\xe9\x60\x4f\x94\x9f\x9f\x06\x98\x38\xe1\xa6\x09\xf3\x14\x54\x93\xb7\xdf\xe8\x44\xdc\x9f\xf5\x20\x56\x93\x37\x04\xc6\xf9\x2b\x80\xea\x23\x0e\x14\xa6\x10\xd3\xba\x36\xfe\x6e\xfa\x8d\xa0\x00\x9d\x06\x54\x83\xaf\xc5\x08\x10\x17\xb1\x8a\xa5\xda\x5d\x85\x90\x6d\x53\xbf\x01\xe7\x29\x1e\x85\xda\xec\xb5\x38\x88\x1a\xc5\xd9\x57\x6c\xff\x64\x56\x43\xe5\xf6\xb7\xb5\xc6\x03\x48\xa5\xd0\xd9\x41\x25\xf6\xe5\x40\x47\x94\x5a\x9f\x56\x85\x59\x6a\xdd\x15\x6e\x16\x6a\xad\xcf\x90\x95\x0f\xb5\xd0\x97\xd1\x66\x50\x0b\x7d\xfd\x79\x21\xa2\x20\xec\x84\x46\x6d\xf1\x74\xc8\x32\x6a\x87\x2f\x3b\x95\x2f\xf8\x28\x8a\x36\xfa\x35\x48\xd7\xfb\x19\xc7\x20\x96\x89\xea\xd8\xcb\x86\x5f\x54\xc7\x4e\x3b\xf9\x51\xfc\x7a\x85\xb8\x0d\x8a\x5f\x2f\x07\x1c\x5f\x30\xbf\x78\x07\x5d\x34\xbf\x58\x26\x47\xb1\xea\xd9\xd2\x1d\x62\xc2\xda\x42\x17\xb0\x24\x6c\x59\xbe\x26\x77\x80\x06\x08\x63\x78\xb1\x6e\x7d\xa1\xb0\xa5\xe3\xd4\x2e\x60\xee\x79\x4f\x5f\x08\xe2\x0e\x5d\xcc\x17\x95\xf9\xf4\x0e\x58\x1c\xb2\x3a\xdc\x11\x59\x21\x01\xf6\x02\x5e\x8f\xa3\xc6\xae\xf7\x58\x2e\x5b\xdf\x51\x0d\x7a\x6e\x5e\x22\x06\x3c\x7b\x46\xf0\xff\x3a\x46\xec\x82\xac\xe5\xa8\xb6\xeb\xc4\xc5\x9c\xd2\x6e\xaf\x13\xdf\x48\xa7\x06\xb5\x9c\xdf\x7f\x50\x8f\xf0\x20\x9b\x7b\x5d\x17\xa6\xdc\xfc\x1b\x5a\x8c\x38\xf8\x75\x61\xcd\x2c\xb0\x5e\x30\x36\xff\x39\x04\x17\x96\x40\xfc\xf5\x42\x1a\x9b\x4d\x4a\x17\xe0\xdc\xec\xa6\x47\xe5\xe3\x65\xf3\xc1\xf5\x70\xc4\x9a\xd2\xc3\x5d\xa5\xf6\x0f\xbe\x41\xf3\x6f\x94\x48\xfc\xf3\xff\x78\xbf\xf8\x06\xaa\x0e\x2f\xdb\x0b\xee\xc2\xf1\x84\x7e\x73\xbc\x4d\xbf\x0f\xfc\x7f\xd5\xef\x93\xc0\xcb\x6e\x80\x53\xfe\xe7\x37\xc2\x79\x74\x8d\xa3\x0c\x71\x75\x74\xd4\xfd\xca\x3e\xe1\x63\x75\x13\x1a\x4d\x02\x36\xca\x14\x87\x03\xf1\x51\xa6\xb8\x5a\x2c\xb8\x29\x1b\xf9\x56\xbe\x11\x1e\xe5\x5c\xec\xfb\x65\x0c\x7d\xd3\x0d\x75\x93\x31\xf8\x9e\x47\x9d\xe2\x6e\x47\xdc\xcd\xec\x71\x4b\x0a\xa8\x53\xdc\x6d\x3e\xbf\xa9\x69\xfa\x9e\x46\x29\xe2\x30\x66\xeb\xdd\x30\x66\x9d\xc4\x1b\x69\x55\x4e\x50\xbd\x29\x4e\x39\x16\x11\xb5\x8a\x9b\xca\x10\xae\xfb\x15\xa7\xc2\xe5\x15\xee\x57\x9a\x0a\x57\x3f\xb8\x5f\x69\x2a\x5c\x4e\x01\xb5\x8b\x8b\x05\x89\xfb\x95\x95\xc2\xc5\x08\xee\xf6\xb0\xb2\xf2\xf7\xbb\xff\x66\xa0\x17\x20\xc8\xb7\xe9\xa4\xa0\xb6\x71\xd8\x85\x7c\x77\xb8\x02\xdd\x61\x87\x59\xce\x5f\xf9\xcb\x6a\xd2\x88\x3a\x46\x30\xdd\x00\x9f\x5d\xbc\xe4\x1e\xbf\x11\xa8\x87\x81\x35\x94\x1a\x80\x6a\xc7\xe1\x18\xe7\x9b\xf6\x6f\x7b\x68\xef\x81\x35\x91\xe2\x71\x0f\x68\xcf\xfe\xee\x54\x5e\x67\xfb\x27\xc3\xda\x4d\xff\xae\x2d\x1c\xf7\xc0\x04\x74\x81\xa3\xba\x72\xfc\x99\x00\x2b\xd6\x88\x13\xdc\x70\xe7\x16\x07\x1e\xa2\x9c\x72\xda\x69\x8e\x6a\xc9\xdd\x4e\x12\x54\x4b\x4e\x43\x19\xdf\xb4\x66\xbb\xc6\x06\xaa\x25\xa7\x2f\xa0\x9b\xa8\xad\xae\x99\x81\x6a\xc9\xcb\x38\x1a\x37\xb0\x7e\x6c\xfd\xfd\x8a\x25\x6b\x5b\x52\x1a\xb4\xe1\x0a\xc5\x92\xa7\x71\x67\x6f\xa4\x2d\x85\x97\x34\x51\xb0\xbb\x9b\xce\x32\xec\xfa\x0d\x61\xd0\x81\x84\xa8\x6c\x9c\x8e\x4b\x43\xdd\xe1\x74\x24\x1d\xea\x0e\x57\x1b\x34\xee\x05\x01\xda\x33\x5c\x30\x70\x78\xd7\x2d\x9e\x44\x9f\xdd\x05\x29\x4a\x3a\x02\xca\x08\xcf\xe6\x35\x84\x75\xd7\x19\x97\x37\x2e\x14\x3b\x53\x51\x26\x78\xa9\x28\xdf\xba\x09\x31\xee\x6f\x04\x30\xb6\x29\x19\xe6\x7e\xc5\xc0\xec\xee\x1f\xe6\x56\x9b\x90\xee\x83\xdc\xcf\xdb\xfc\x07\x38\xaa\x0e\x00\xf1\x6d\xa8\x15\xd4\x11\x9e\x4b\x57\x26\xea\x08\x37\xa3\x34\xa0\x8e\x70\x35\x32\xd9\x7d\x02\xb0\x40\x16\x9b\x9b\xe6\x57\x27\x0a\xdf\x17\x6a\x05\x78\xd7\xbd\xda\x7f\xb3\xc1\xfe\xc6\x85\xe4\x38\x86\xfb\x62\x29\x27\xad\x20\xe5\x52\x89\xc6\x37\x12\x5c\x2c\x25\xdd\x88\x37\x2a\x0e\x13\xbb\x29\xb8\x7a\xc6\x37\xac\x5c\xde\x33\x40\x9f\x29\xab\xf8\x0f\xb0\x72\xf9\x20\x23\x20\x69\x0e\x77\x00\x2b\x97\x0f\xfe\x0d\x13\xb7\x0c\x06\x37\xad\xab\x92\x43\x59\xe9\xd8\xd8\x9c\x37\xc2\x8d\x8a\x41\x1b\x6e\x56\xcd\x33\x33\x7c\x18\xda\xa1\x0e\x91\x02\x53\xfe\x7c\x04\xe0\xcd\x38\x23\xe2\xa6\xbd\x76\xf9\xe0\xd0\x82\x30\xdc\x80\x69\x49\xfe\x0d\x3d\x4e\x86\x39\xd4\x25\x76\xa5\xc1\x85\xba\xc4\xb5\x38\xac\xec\xd9\xa0\x90\x74\xff\x3e\xf9\x0f\x6e\x81\x0c\x91\xee\xdf\x37\x22\x38\x97\x7e\x3f\x6c\xf0\x6d\x94\x07\x85\xef\x54\x74\x7c\xb1\xd4\xb1\x6f\x18\x54\x3a\x7e\x1b\x4c\xfd\x01\x5b\xdd\x43\x28\xfc\x6e\x92\x1c\x1e\x80\xd0\xe4\x9f\x1e\xb8\x6c\xe2\x4f\x4f\x41\x9d\x0d\x6d\x95\xa7\xb2\x9a\x61\xe8\x37\xb7\x4e\xf7\x3f\x60\xeb\x48\x91\x7b\x2a\x7c\x15\xcb\x0d\xf8\xa5\xf5\xff\x8d\x3b\x47\x23\xa2\x0d\xc1\xb2\xc0\xd3\xb8\x75\x34\x27\xda\x10\x1c\xea\x85\x12\xc8\x65\xd3\x45\xfc\x34\xae\xb3\x18\x0a\x4a\x1a\xa7\x73\x5b\x9e\x4e\xb4\x77\xcd\x11\x81\x49\x36\x84\x3c\xf0\xd2\x1a\xf1\xed\x41\xf6\xae\x1d\x72\x0f\x6e\xb1\x57\x69\xfa\x7b\xe7\xe4\xff\xf5\xca\x79\x06\x4b\x92\xe9\x93\xd1\x20\xb1\xfe\x74\xc6\x44\x1b\x7d\x22\x44\x36\x1b\x2b\xec\x81\x06\x91\x5e\x5f\x9a\x13\xbc\x69\xa0\x41\xa8\x68\xe8\x42\xb9\xe4\x69\x17\x33\xca\x25\xd7\xe2\x3b\x16\xf5\x92\xff\x14\x65\x42\x35\xe4\x95\x52\x4a\x51\xdd\xd8\x35\x3f\xd7\x43\x95\xc3\x97\x22\xaa\x1b\x2f\xc3\x97\x3c\x3f\x15\x43\x23\xfa\xd9\x83\xf5\x02\xe2\xa9\x78\xc6\x93\x89\x50\x9a\x31\x02\x7d\x9d\xbf\x87\x62\xc2\xd5\x2a\x0a\x8a\xfd\x36\xa3\x12\xa2\xd8\x6f\xda\x96\xf0\xa0\x92\x7e\xf5\x0a\x2d\xe0\xb5\x88\xbf\xa3\x94\x6f\xba\xd6\x17\x4a\xf9\x2e\x63\x7b\xa1\x34\x6f\xb5\xc2\x82\xd2\xbc\xc5\xc6\x4c\x94\xe6\x0d\xe7\x4a\xa1\x34\x6f\xba\x3c\x0f\x2b\xef\x9a\xd7\x3d\xfb\x86\xeb\x40\xef\x07\x1a\x68\xdd\x74\x3f\x3c\xc7\xaf\x0c\x89\x66\x4c\x43\x84\xef\x68\x54\xba\xad\xd5\x45\xdf\x1e\xa4\x81\xd6\x22\x45\xf6\xc1\x25\x55\x15\x66\x75\x27\xfc\xf0\x2e\xec\x74\xe7\x42\x89\xc7\xf5\xfd\x3c\x21\x49\x0d\xfd\x84\x70\xf9\x9b\xc3\xb3\x10\xac\x51\xb7\xef\x0a\x79\x16\xac\x4e\x32\x01\x3d\x6b\xa1\xa2\xb3\xe2\xc4\x9e\x75\xf3\x5a\xef\xdf\xef\x87\xe9\x6c\xdf\x29\x7a\xf6\x0d\x05\x71\xbe\x6d\xf3\xec\x30\x98\x56\x25\x21\x3e\x7b\xe1\xac\x3f\x6e\xf5\xdc\x2f\x7b\x53\x46\xc3\x73\xa3\xac\xe7\x27\xfe\x3e\x37\xb1\x1b\xba\x7e\xae\x3f\xd3\x7b\x20\xae\x97\x4d\xf0\x5c\x0f\xc4\x75\x65\x4b\x3f\x2c\x4c\xff\x31\x95\xe7\x41\x7a\xd9\xa6\x9f\xef\x7d\xf7\xb6\xee\xfa\x03\x1c\x9a\x43\x3f\x3b\xe9\xfe\x03\x82\xcf\xf9\xb3\x6e\xa8\xa1\x57\xeb\x57\xb6\xfd\xfd\x03\x3f\xe0\xef\x90\xd4\x6d\x3b\xb9\xc0\xbf\x63\xf5\x3e\xfc\x1f\x9f\xb8\x6e\x0b\x16\x2f\x7d\xe2\x5a\xc6\xc5\x4e\x7f\x2b\x50\x2b\xa3\xc8\xea\xe7\x88\xaf\xbd\xc0\xc8\x5d\xcb\xff\xe0\x56\xfe\x5f\xfb\xff\xff\xff\xdd\x1c\xf4\x86\xa2\xa1\xbf\x47\x04\xeb\xff\xfe\x5e\xcf\xfd\xfb\x7b\x05\x42\x8c\x22\xd4\xb7\xb6\xca\x47\x6a\xfb\xbb\xa0\x9f\xec\xbf\x01\xb7\xf7\x7b\x7c\x3f\xc5\x77\x51\x6e\xed\x70\x9b\x57\x17\x97\x05\x6e\x03\xac\xed\xf7\xb8\x10\x56\xf8\xa3\x00\x3a\xf5\x7b\x84\x33\xbf\x8a\x12\xa2\x34\xba\xf9\x3f\x4a\x33\xe5\xe5\xd8\xd2\x57\x2b\xea\xb3\x7e\x8f\xac\x19\x2d\xca\x69\x0a\xca\x7b\x96\x8f\xf2\xaa\x73\xdf\x63\x43\xb8\xf6\x8f\x52\xe2\x1b\x5b\x45\x8d\x23\xe5\x04\x56\x14\x28\xfa\x1e\x21\x96\x7f\xbb\xbd\xa2\xee\xce\xf7\x58\xe0\x72\x14\x25\x4c\x59\xc8\xf0\xfc\x48\x28\xb2\xf1\x3d\x4e\x24\x41\x7f\x94\x57\x11\xf9\x1e\xa1\xa5\x0d\x51\xc2\x94\x97\xf1\xca\x7c\x58\x6b\xdc\x26\x21\xc6\xf2\x9b\x52\xab\xeb\xa3\xb4\xba\xa3\x9e\xdb\x8f\xd2\x3d\xd9\x1e\x0c\x94\xf9\x28\xa9\x21\x74\x6c\xf7\x22\xca\xd4\x72\xf7\x85\x22\x50\x1f\x05\x98\x7c\xbf\x47\x00\x77\x7f\x67\xbd\x02\x58\xec\xf7\x88\x44\x97\xf5\xf1\xdf\x0a\x7c\xad\xef\xf1\xbd\xec\x04\x82\x50\x81\x4a\xf5\x3d\xbe\x5c\x5c\xf9\x38\x15\xe8\x4b\xdf\xe3\x2b\xc9\xa9\xf4\x56\x05\xaa\xd0\xf7\x88\x56\x9f\x6e\x51\xa1\xdc\x7c\x8f\x48\xf8\x54\x68\x6d\xbd\xe7\x30\x0d\x47\x51\x65\x96\xea\x3d\x97\x69\x3b\x69\x5d\xb4\x4b\xb4\x45\x84\xbc\xcf\xb2\x53\xef\x35\x4d\x03\x03\x90\xe2\x55\xef\x77\xed\x7e\x8f\x3b\xdb\x7d\x97\x72\xbd\x77\xb7\xdb\xd9\xee\xf3\x8e\xd6\x7b\xff\xd3\xee\x22\xad\x8a\xf6\x88\x86\x18\xce\x2a\x35\xa4\x42\x2f\xfa\x1e\x07\x69\x9a\xfb\x11\xa6\x91\x0d\x79\xcd\x0e\x8f\x85\xd7\x92\x7c\x56\xf5\xf6\x57\x80\x56\xf4\xd2\xb4\x2e\xa7\xc7\xf9\x70\xad\xbf\x3b\xb4\xa2\x48\xf6\xf7\x08\x71\x6e\xfb\xe6\xd7\x36\x6d\xa2\x86\xda\xd5\x9f\x28\xd9\xb6\x6d\x9a\xf0\xfc\xd9\xc5\x6d\x2b\x6e\xf2\xde\x22\x0a\xab\x6f\x28\xfd\xfc\x3d\x12\xa5\x54\x94\x30\x25\x81\xf7\x2a\xca\x65\xca\xfd\xee\x9f\xa5\xb1\xd5\x22\x12\xdc\x71\x32\x55\x34\x70\x91\xef\x11\xcb\xdb\x96\x46\xd1\x3c\x72\x88\xb3\x55\x75\x5e\x1a\x0a\x1d\xff\x1e\x91\x1f\x34\x34\x5f\x6d\x90\xc6\x72\xa4\x9b\x62\xac\x1a\xca\x91\x7e\x8f\x37\x69\x7a\xdb\xee\x1e\x81\xd2\xf9\x89\xff\x0d\xd5\x11\xbf\xc7\x5f\xab\x6f\xfc\xa8\x6b\xf8\x7b\xac\x01\x23\xc5\x47\xa9\xd3\x94\x57\x38\xff\xae\xf4\x56\xea\x6e\x0a\x2e\xbc\xfe\x29\xb1\xad\xec\xfa\x26\x85\x5b\x4a\xee\xee\x56\x75\x33\xb5\xfa\xf6\x28\xf1\xb5\xb5\xf9\xf1\xb0\x06\xe8\xf9\xb2\xa9\x86\x5f\x6b\xeb\x14\xed\x37\x67\xf5\x08\xfc\xf2\xef\xf1\x77\xb9\x7f\x7d\x76\x6f\xa8\x8e\x70\x8d\xaa\xac\xfd\xd6\xbb\xe6\x06\x18\xe6\x5a\xe5\x9e\x69\xe6\x80\x0d\xe0\xa3\x2f\x57\xfe\xf6\x88\x39\x5d\x1b\xbc\xc8\xe5\xac\x6f\x63\x3d\xa2\xb1\x9d\x5c\x3a\x2d\xdc\x2e\x90\x93\xda\x24\x0f\x35\xa0\x5b\xfd\x1e\x0b\x79\xf1\xa7\x9d\x36\xe0\x50\xfd\x1e\xd1\x67\xdb\x3e\x2e\xd9\xd2\x7d\x26\x69\x82\x82\x6e\xd3\x34\x66\xdc\x34\x79\xd0\xda\x32\x6d\x15\x26\x96\x69\x3d\x57\x59\xa2\x01\x80\xb1\x29\x82\xa4\x21\x47\xe1\xf7\x08\xd3\x46\x53\x81\xd2\xb6\xfc\x1d\x18\x23\xdd\xb7\xef\x32\x6e\x88\x89\xfe\x3d\x62\x2c\x5d\x99\x17\x6d\xf7\x58\x18\x01\xda\xb7\xef\xca\x6b\xbb\xbf\xc3\xce\x76\xca\xb9\x6b\x87\xdb\x21\x92\xe6\xe5\xd9\xa2\x75\x8d\xf3\x60\xbb\xf6\x31\xa0\x76\xba\xdd\x49\x80\x49\xc1\x4b\xb5\xd3\xf3\x83\x87\xaf\x76\x85\xfa\xb7\xf3\xd6\xfc\x4e\xf6\xa9\x6c\x91\x76\xb9\xcf\x8b\x34\x99\x9b\xdb\x6d\x1a\x0c\x0b\x75\x6c\xea\xf3\x31\xed\x21\x4d\x2e\xbf\x6e\x66\xd8\x51\x3f\xbc\x0e\xc1\xc7\x77\xd4\x0b\xff\x3d\xb2\x9d\x92\x1e\x7a\x71\x3b\x14\x8a\xac\x63\x7e\xe2\x52\xb7\x80\xd3\x0b\xdb\xc9\xd4\xd4\xab\xdb\x55\xd0\x1c\x66\xd9\x9b\x69\xa8\x24\x52\x43\xda\x47\x6f\xe2\x70\x9d\x05\x18\xa2\x7f\x5e\xbd\x8e\x82\x0b\xbf\x47\xa4\x07\xc6\xa8\x9f\x2e\x4d\x79\xf5\xff\x25\xc2\xf6\x76\x54\x35\x45\x90\x4a\x08\xf1\xa3\xa3\xe4\xc0\xef\x91\x43\x55\x15\x89\xee\x23\xdf\x3b\x42\x65\x42\xfa\x65\xef\x97\x96\x8d\xc7\x3a\xf4\x99\xba\x8f\x75\x1f\x3f\xda\x77\x2f\x75\x1f\xdd\x4e\x3c\xb0\x54\xb6\x55\x07\x00\xd8\xef\x11\x40\x15\xa9\x00\xe6\x0e\x64\xad\xdf\x23\xfa\x4c\x45\x76\x76\x1f\xdd\x9e\x15\x71\xc3\xca\xd3\xef\x59\xbb\x69\xc0\x41\x94\xcd\xb2\xa7\x18\x6f\x4f\x18\x80\x53\x01\xcf\x3d\x53\x63\x21\xc8\x44\x0a\xbc\xbd\xa7\xd8\x6b\x27\xab\x48\x05\x2e\x74\xb3\x8a\x4e\x56\x61\xcf\x76\x37\xab\xe8\x0b\x2c\x34\x65\x6f\xed\x4b\x2c\xb4\x53\x8b\x4c\x61\xd7\x75\x64\x0b\x7d\x8f\x18\x8b\x32\x1c\x3a\x12\x83\x7e\x8f\x4c\xf9\x51\xf9\xd6\xbe\x24\xa7\xf5\x45\x39\xad\x6c\x1a\x8b\xe4\xb4\x8e\xd4\x9f\x97\xd6\x45\xd3\xb7\x5d\x80\x97\x9a\xb2\xd5\xf7\xa5\xeb\xa3\x2f\xd8\xa0\xa7\x70\x6d\xfb\xda\x3d\x3f\xc8\x46\x53\x19\x54\x7d\x1d\x9e\x1f\xd6\x65\x0a\xb5\xba\x9b\x6d\x75\xb2\xa6\x29\x31\xa2\x9b\x35\x75\xb2\x9f\xd9\x3e\x23\x7a\x37\xfb\xe9\x27\x8a\x92\x4e\x79\x0f\x3b\x02\x42\x7e\x8f\x1c\xa7\x8c\x8e\xfd\xd4\xd5\xd2\x4f\x04\x49\x57\x09\x34\x1d\x11\x13\xbf\x47\xbe\x4f\x36\x8d\x6e\xd6\xd4\xaf\x57\xaf\xae\x73\x7e\x51\x0e\xfd\x2a\xcd\xb4\xc5\x3e\xa7\x68\xda\x67\x17\x64\xcd\x29\x5f\x76\xbf\x24\x6b\xf6\x0b\x6b\xb6\x74\x5d\xf5\x7b\xd3\x58\xee\x2d\x98\xf7\xfd\x8d\x05\xce\xc2\xdf\x63\xfd\xe5\x84\x7f\xeb\x02\x37\xdd\xf7\xc8\xeb\x5f\xe3\x84\x7f\xeb\x7b\xe4\x15\xaf\x7d\x7d\x0f\x8d\xf3\x26\x76\x9e\xea\xdc\xf5\xdb\xe7\x0f\xfe\x9c\x97\xa6\xb1\x44\x9a\x36\x49\x4b\xd1\xdc\x27\xd4\xa9\x4d\x7a\x65\xbf\xd3\xf3\x4b\xc4\xc2\x98\x17\xc0\xa1\xf2\x7b\x64\xce\xbb\xac\x36\x1d\x4a\xc7\xf7\xc8\xb1\x68\x9f\xdd\x52\x14\x3b\x7c\x28\x65\x13\x34\x68\xbf\xbd\x77\xe1\x4f\x79\x69\xdf\x37\xb2\xcc\xdf\xef\x83\xef\x13\xab\xb7\x5c\xdf\xef\x63\x91\xa6\xb1\x1c\xee\xf3\x80\x38\x55\x3e\x4d\xb7\xc3\x45\xf1\x7b\x44\x81\xd1\x4d\x1a\x68\xbf\x2f\xaf\x0b\x4a\x81\x6e\x02\xd9\xed\x70\x14\x7c\x8f\x9c\x43\x68\xad\xef\xcb\x34\xae\x67\x68\x2c\x8f\xf6\x3c\x0c\xf5\x65\x2b\xe2\xe5\xcf\xa6\xef\xf7\x6c\xfc\x46\x5f\x2c\x54\x87\xcd\xfd\x7b\xe4\x58\xbe\x20\xcb\xfe\x14\xb7\x2b\x2c\xbe\xff\x29\xe5\xfd\x91\x5d\xa0\x3f\x85\xeb\xb9\xf4\x3e\x89\xbb\xfd\xa9\x5c\xb3\x4f\x90\xef\xb0\x6e\x7f\x8f\x5c\x33\x5d\x8f\x4f\xd3\xde\x7d\xb8\x3f\x55\x79\xb8\xc3\x24\xfd\x3d\xe2\xbb\xd7\xa2\xf7\xf5\x34\xed\x24\xed\x5b\x33\x58\x77\xbf\x47\xf6\x29\x9e\xfc\x78\x7f\xc2\x66\xfb\xd2\xf4\xbe\xb8\x4c\xbb\x49\xfb\xbe\xd1\x93\xee\x33\xd9\xe7\xa7\xf4\x77\xd8\x72\xbf\xc7\x9d\x34\x8d\x65\xea\xfc\x3d\xf3\xd7\x4e\x7d\x2e\xaf\x35\xca\x77\x6c\xb2\xcf\xf6\x67\x79\x3d\x17\xfb\xd4\x3e\x7b\x96\xd7\x0c\x66\xd5\xad\x8a\xd7\x3d\xbb\xc7\xb9\xf3\x7d\x43\xf3\x3b\x3c\x96\xa3\x13\xa2\x5c\xeb\xe9\x3d\xff\x70\x5f\x2b\x96\xb9\x3f\xa7\xdb\x9d\x84\x36\x4f\x7d\xdb\xd3\xed\xce\x45\x9a\xe6\x70\x7a\x9f\x9d\xd8\x2f\xaa\xf0\xdb\x9f\xcb\x73\x47\xc0\xd8\x56\xbd\x07\x6f\x7f\xf7\x9b\xdf\x5d\x3c\xeb\xb9\xdd\xe7\xcd\xef\xee\x7d\xf6\xb8\xdd\x93\xa4\x2d\xd1\xdc\x0e\xd5\xee\x5f\x1d\x92\xb4\xb1\x6d\xdf\x9a\x8d\x0d\xf5\x0c\xb6\xf6\xdd\xef\x63\xdb\xd2\x34\x9c\x23\xc5\x80\x0f\xe8\xc6\xdf\x63\x92\xb6\x44\xbb\x4c\xc3\x7a\x0a\xb8\x74\x6c\xb5\x8a\x86\xea\x01\x5b\xfb\xf6\xe0\xd8\xea\x23\x5a\x23\x1e\xdd\xb7\xcf\xc6\xd6\x4c\xe3\x59\x51\xe6\xfc\xd8\x74\x56\xc6\xd6\x83\xb4\x14\x6d\x37\xed\x20\xc6\x9d\xfa\x94\x89\x69\x6c\x83\x63\x19\xea\x73\x84\x69\x3f\x6c\x3c\xad\xcb\xf0\xfc\x82\xed\x42\xed\xc2\xed\x78\xc6\xe4\x67\x18\x5b\xb8\x1d\x72\xd4\x36\xa1\xeb\x8c\x4d\x77\xf8\xd8\x78\x8e\xda\xd4\x37\xca\xd3\x34\x7e\x3f\x15\x83\xfb\x9f\xc5\xe1\xb1\x4d\x7f\xde\xc9\xa1\x4e\x7d\xa6\xe9\xa1\x4e\x7e\xc2\xa5\x69\xc8\x7c\x35\xb6\x79\x92\x36\x44\xbb\x45\x5b\xdc\x32\x4b\x7d\x2e\x2f\x37\x6b\xdc\x74\x6f\xa7\xfd\x0f\x0d\x4b\xa3\x6a\x26\x63\xdb\xdd\x27\xaf\x24\xd5\x99\x1f\xdb\xe1\xa5\xe1\x95\x24\x24\x8e\xb1\x1d\x5e\x9a\x83\x21\xa6\x55\x4b\x7a\x78\xcb\x9c\xbf\x3e\x35\x4e\x19\x9a\xc7\x86\x92\xde\x9b\x8a\xb2\x8f\xed\xf4\xba\xa0\x58\xf7\x26\xd3\xdd\xd8\x4e\xcf\x01\x20\x20\x5b\x6f\x7a\xdf\xe5\xad\x7d\xb1\x4f\x6f\xd1\xcb\x47\xe9\xe2\x1c\xba\xb6\xfd\x75\x98\xf6\x0b\x93\xd5\x38\x2f\xcf\x81\x2e\x06\x61\xf6\x8f\xed\xf6\x37\xba\xb9\x9e\xde\xa2\xb7\xdb\xa1\x0e\x8b\x8b\x6e\x0c\x98\x78\xbe\x47\xce\x2f\x34\x96\xc7\xeb\xf9\x80\xbd\x0a\x1b\x7b\x94\x4d\xb4\xb2\xfd\x68\xdf\xfb\x8a\x6c\x63\xa3\x90\x1d\xa8\x90\xf3\x28\xb2\x0c\x8c\x42\x76\xa0\xba\x04\xa3\x98\x1d\x14\x5e\x9d\x2a\x08\x3d\x4a\xd5\xba\x94\xc6\x7a\x49\x9f\x88\x36\x8a\x6c\x67\xa3\xb4\x20\x4d\x63\x91\x66\x39\x0a\xd9\x88\x0a\x00\x8f\xd2\x2e\xd3\x6e\xd2\x34\xce\xae\x3d\x58\x50\xd5\xc2\x40\xf9\xa3\x48\x73\x1e\x85\xec\x40\x79\x59\xa3\x98\x1d\x94\xe0\x38\xab\xc6\x12\x1e\x27\x59\x85\xdc\x9a\xa3\x98\x55\x94\x48\xd2\xbe\x7d\x5d\xd2\x63\x81\x77\xd4\x18\xe8\xa3\x4c\xf7\xc9\x33\xad\x10\x82\x51\x7c\xa6\x0b\xcf\xb4\x90\x62\x47\x99\xbb\x69\x07\x69\x29\x9a\xdf\xb7\x7e\xb5\xa9\xbe\x3d\x58\x96\xdf\xb7\xf8\x3e\xb1\xc9\xb2\x3c\x77\x5e\xc7\xaa\xbf\x33\xca\xee\xb1\xec\x60\x69\xf2\x16\x8e\xb2\xbb\xdd\xce\xef\x10\x6a\xe7\xf3\x8e\xe2\xfe\x65\x1b\xde\x83\x87\xc7\x79\xf0\x7d\xa9\xb1\x9c\xe2\x75\x28\xdb\xff\xd2\x34\x77\x9f\xcd\x72\xb1\xcf\xa9\x76\x97\xfb\xbc\xd8\xa7\xf7\xe0\xed\x76\x37\xfb\x14\x1f\x2c\xf7\x30\x8d\x7d\x7e\xa2\xdd\xa8\x52\x67\x46\xe5\xb5\x2a\xb7\xd4\xa8\x12\x41\x47\xa5\x08\xaa\x70\xe3\x51\x65\xd1\x1b\xa8\xf0\xfe\xd2\xbe\x7d\x56\xa5\x76\x0d\x54\x73\x7f\x69\x21\xda\x6d\x1a\xe6\xa0\x90\xe2\x51\x65\x82\x1e\xa8\xf2\x5e\x0c\x3f\x3c\x50\xd5\xfd\x7b\x4c\xd2\xbe\xf9\xd5\xe6\x76\x40\x88\xdf\x14\x22\x3b\x50\x9c\xfd\x7b\xe4\x58\xb4\xaf\xab\xaf\x6a\xd4\x50\xef\x0a\x89\x19\xa8\xa1\xfe\x3d\x06\x9b\x69\xc9\x64\x15\x18\x28\xa5\xfe\xd2\xb4\x64\x3e\x9a\xb5\x73\x7a\x3a\x0e\x75\xe8\x13\xd5\xc1\xe9\xe9\x38\x54\x1f\x5b\x54\x4f\x7f\x69\x5a\xb2\xe1\x61\x06\x97\x7a\xa8\xcf\x70\x9f\x3c\xb6\xe1\x39\x84\x3f\x1f\xb0\x59\x0c\x7a\x3b\xaa\xfc\x7d\xa3\x12\x77\x45\x09\xa7\xa3\x66\x98\xc6\xcf\x1e\xfa\xb4\xd3\xcb\x39\xb9\x2e\xda\xd6\xd5\x47\xb3\xd2\xc0\x2d\x54\xbc\x51\x97\xdb\x51\x52\x56\x98\xdd\xa8\xbb\x69\x3b\x3f\xed\xd4\x38\xf7\xd3\xb4\xeb\xbf\xff\x19\x32\x7a\x8c\xea\x9b\xb8\x1e\x5c\x96\xa5\xdd\x72\xb8\x4b\xde\xb6\x8a\x17\x18\x28\xb2\xfd\x3d\x62\x0a\xc2\x4e\x1a\x28\x97\xfd\x3d\x62\x0a\xe9\x1d\x7f\x79\x57\xf3\xd6\x14\x14\xc0\xa8\xb7\x97\xf3\xc6\x72\xa6\x77\xae\x4f\x5f\xa5\x72\x98\xde\xb9\x8f\x3f\xdf\xc3\x3e\x9b\xe6\xe7\xdb\xaf\x52\x50\x4e\x6f\xb3\xc7\x9f\x96\x82\xb2\xc2\xc1\x46\xb3\xa0\xdc\x36\xf6\xf9\x85\xd8\x8c\xb6\x2d\xd3\x4e\xd2\xbe\x3e\x51\x75\xfa\x7b\x64\xbb\xa1\x76\xb2\xd1\x8f\x56\xd8\x6e\xb8\xdd\x6d\x1a\xe7\xa7\xad\xd4\x64\xe8\x1b\xad\x0e\xd2\xd4\xa7\x5c\xc4\xa3\xf1\x46\x55\x40\xf0\x68\xbe\x51\x5b\xe5\xfb\x42\xef\x93\x7b\x7b\xc0\x34\x5b\x36\x65\x1c\x8d\xd6\x4e\xd3\xb8\x2e\xa9\x76\xdd\x7d\x76\xd2\x74\xf3\xa3\x94\xf2\xf7\xc8\xb1\x68\x0b\xa2\xea\xf1\xf7\xc8\x76\xda\x4b\x2d\xdd\x27\xe2\x10\x36\xa5\xd5\x8d\x26\xa5\x72\x34\x1a\x4b\xe6\xf6\x6f\xb6\xe1\xd1\xa6\x97\x66\x4e\x36\x4d\xd1\xbc\xdc\xbc\xe4\x94\x37\x37\x9a\xec\x2c\xa3\xd1\xce\xa2\x38\xf3\xd1\x96\x87\x4a\x97\x9b\x6c\xc3\xa3\x59\xe0\x45\x49\xe1\xb2\x29\x32\x7a\x34\xd9\x60\x46\xa3\xc0\x2b\x77\xc9\x68\x87\xc7\xc9\x0b\x50\x61\x8b\xa3\x59\xe0\x6d\xd4\x55\x15\x6b\x3c\x9a\x8f\x20\xea\x01\x97\x6d\x7a\xfb\x9e\x9e\x1f\xed\x33\x0a\x00\x1e\xcd\x97\x63\xbb\x1a\x69\x1a\xcb\xe5\xf7\x5d\x7c\x9f\x04\xd0\xf6\xb8\x4f\x0a\x8b\x8a\x71\x1a\x5d\x11\x16\xa3\x17\xce\x41\x17\x7c\xf7\xf6\xed\xdc\xbe\x82\xe1\x1c\x8e\xd9\x18\xbd\x71\x0e\xe2\x76\x5d\x8e\xcf\xd1\xa9\x03\xaa\x96\xfa\xe8\xd6\x01\x3b\xed\x25\x2a\x7c\x37\x50\x02\xf6\x7b\xe4\x38\xb5\x0d\xbb\x6f\x0f\x14\x7e\x1d\x02\x8c\x1e\xdd\x72\x5d\xa7\x5c\xa7\x22\xe0\x03\xa1\x0f\xbf\x47\xe0\x93\x6c\xaa\xca\x36\x50\x6c\xf5\x7b\xc4\xd4\x05\x3d\x35\xba\xe5\xba\x4e\xb9\x4e\x9e\xb0\xd1\xbd\x3d\x51\x22\xf5\xa5\x69\x98\xcb\xb4\x85\xad\xbb\xb4\x95\xba\x75\x2e\x44\x57\x0c\xab\x6a\x7d\xf9\x75\xb4\x88\x2c\xed\x32\xd4\x08\xfd\x1e\xf7\xff\xfe\x67\x28\x9b\x77\xa0\x3c\xe7\xf7\x88\x8f\x20\x7f\xcf\xe8\x87\x9b\x71\x73\x2a\x16\x74\x74\x6b\x47\xfd\xfc\x15\x24\xd1\x50\xcc\xe7\xfb\xcb\xe7\x87\x15\x43\xd4\xca\xfc\x1e\x39\x92\x8f\x63\x75\xcb\x5f\x9d\xfa\x8f\xd2\x17\x46\x97\x39\x64\xb0\x56\xe5\xa6\x08\xe9\xd1\xad\xff\xa0\x2e\xe5\x4b\x53\x9f\x8f\xb7\x0a\x61\xef\x05\xb2\x3d\x86\x4c\x87\x03\xe5\x1f\xcb\xa6\x28\xd1\x31\xb6\xdd\x34\x1c\x05\xe5\x76\x8c\x51\xdc\xae\xb0\x9d\xb6\xed\xb0\xa9\x64\xf0\x28\x28\x25\x63\x0c\x99\x15\xc7\x20\x97\x5f\x9f\xf9\x7a\x0c\xeb\x46\x28\xbc\x38\x14\x5d\x32\x86\xc5\x36\xd4\x58\x2c\x9b\x22\x0e\xc6\x90\x35\x72\x0c\x5e\x00\x0a\x39\x18\xc3\x62\xdb\x68\xbf\x76\x1a\xa6\xd5\x26\x16\x2e\x2c\x02\xb1\x1e\x43\x16\xc7\x81\x92\x82\x2f\x4d\xcb\xe2\x0b\x60\xbc\x62\x5a\x31\xc2\xdf\x40\x35\xc0\xef\xb1\x92\xd6\x45\x73\x9f\x83\xef\x13\x57\x1d\x96\xcd\x50\xee\xaf\x18\x72\x6f\x0c\xcb\x66\xa8\xfc\xf7\xd2\xb4\x64\xe1\x39\x00\xae\xdd\x48\x7b\x63\x84\xfb\xcc\x0e\x9a\xac\x4b\x23\xbd\x9e\x80\xb3\xb3\x06\x3e\x7c\x9a\x07\x4e\xb3\x71\xe0\xc6\x98\x6e\x06\xb1\xad\x6c\x3a\x0b\x28\xc9\xf7\x3d\x72\x59\xba\x3e\xc3\xf2\x14\x16\xa7\x20\xb1\x14\x61\x4b\xdf\x63\x92\xa6\xa5\xf6\x49\x1f\x8b\x4b\xa6\xd3\x30\xe4\x90\x1a\x63\xe7\x58\x74\x1a\xc6\xee\x65\xd9\xb9\x2c\xe1\x76\x5e\x96\x83\x4b\x1d\x5a\xce\xe3\x32\xed\x7e\x97\xc5\x87\xc1\xc6\x15\x94\xa5\x2b\x8e\xaf\x1e\xc3\x6c\x00\x05\xe5\x5e\x9a\xda\x59\x14\x1c\xe7\x2b\x79\xaa\xa0\xc2\x18\xa7\xbb\xbc\x38\x12\xf1\xe2\x61\xfb\xc9\xb8\x38\x03\xe9\x6f\xc3\x7c\x00\x15\xda\x46\xf7\xd1\xbb\x3d\x81\x9b\x1f\x61\x69\xe2\x8f\x17\x0c\x2c\xa2\x28\x9a\x76\x0c\x0b\x90\xac\xc1\xd6\x7d\x2a\x1f\xaf\xe5\x73\xb2\xd9\xf7\xed\xc2\xdc\x03\x95\xcd\x4a\x91\x13\x72\x84\xb9\x47\xa0\x30\x6c\x91\xe3\x68\x84\xa2\x91\x06\x0a\x8e\xbd\xb4\x25\xda\x32\x6d\x67\x76\xf1\xf7\x5d\xa3\xba\x5d\xad\xa4\xa9\x4f\xb3\x88\xa8\xcc\x4a\x96\x46\x18\xd5\x63\xa9\x1c\x8b\x8e\x57\x58\xd6\x43\x5d\xae\x97\xf6\x7d\x3c\xd4\xd9\xfa\x1e\xd9\x4e\x56\xb3\x50\xec\xc4\x88\xc1\x39\x68\xbf\xa3\x7a\xd5\xf7\xc8\xb1\xc8\xf2\x10\xc3\x63\x21\x1b\x28\x3a\x7b\x28\x52\xf5\x3d\x22\x7e\x4b\x70\x76\x23\x6c\x4c\x8d\xe0\x38\xc5\xe1\xc3\xf2\x63\xbc\xaa\xd6\x18\x5e\x96\x74\xb3\x64\x97\xb2\xdd\x86\x8d\xa5\x01\xc3\x4a\x91\xbf\x69\x84\x42\x18\x07\xea\x28\xbd\x2b\xad\xe5\x5c\xfe\x0c\x8b\x9f\x41\x86\x87\xb0\xec\x88\xea\x46\x2f\x4d\xd3\xf3\x71\x8e\x9d\xed\x24\xcf\x84\xb5\xb7\xd8\xb9\x95\xb4\x73\xc3\x37\x77\xec\x8c\x51\x5d\xff\x28\x02\xc7\xe1\xa1\x1e\x7c\xa5\x6c\xb7\x61\xbb\x0b\x6a\x08\xbd\x1b\x46\x4b\x63\x4e\x80\xfa\x41\x2f\x4d\x4b\x6a\x5b\x2a\x4a\x05\x95\xa2\xc8\xcf\x11\xb6\xa5\xb2\x2c\x90\x41\xaa\x06\xca\xfc\xfc\x1e\x79\xde\x6b\xd1\xb2\x59\x24\x0d\x88\xa4\x46\x94\x1e\x28\xef\xf3\x3d\x62\x37\x09\xf1\x6f\xc4\xe5\x39\x90\x4f\x54\xef\x6c\x6b\x8c\xa8\xaf\xf3\xd2\x34\x87\xdb\x3b\xed\xe6\xfc\x64\xf3\x0d\x33\x03\xd4\xd9\x79\x69\xda\x16\xd6\x26\x51\x53\xe7\xa5\xe9\xb4\x58\x9b\x0c\x72\x0a\xa1\xe6\x0d\x87\x71\x8c\x44\x4d\xc4\x52\x65\xb4\x40\xa1\x9a\xdf\x23\x62\x13\x4b\xd5\x0d\x90\x8a\x4e\x1c\xc9\xe8\x44\xe1\x49\x8d\x34\xa7\xc8\xc2\xef\xf7\xb9\x60\x47\xda\x25\x83\x32\x35\x2f\x4d\x7d\x9a\x8b\x24\xb9\x88\x40\xe7\x87\x43\x4a\x06\xca\xd9\xbc\x34\x8d\xb3\x7a\x9c\x44\x61\xd2\xb2\xa4\x4d\x47\x28\x5a\xf3\x36\xd3\xeb\x2c\x83\xa0\x80\x4d\x29\x42\x1f\x1c\x69\xe6\x83\x02\x35\x2f\x4d\x53\xe8\xda\x66\xd9\xf9\xd9\x75\x92\xd2\xb6\xa3\xec\xfc\xec\xba\x1e\xd2\x12\x7e\x92\xf9\x54\x99\x9f\xd3\x0a\x2a\xea\xcf\x94\x52\x75\xca\xd2\x72\x46\x52\xce\xa8\xba\x1f\xd2\x76\x9e\x4c\xce\x4f\xc7\x28\xd3\xf3\x4b\x06\x90\xea\x12\x48\x7b\x79\x92\xc2\x84\x3d\x71\x8e\xc2\x19\x09\xc5\xd6\x90\x4d\x23\xad\x1a\xe4\x64\x3b\x1d\xa3\x9c\x6e\xb7\xd8\x4e\xe2\x73\xda\x3e\x94\x8b\xed\x74\x54\x72\x79\xad\x61\xba\x2d\x4a\xfc\x1d\x69\xa1\x20\x0f\xf6\xe9\x6f\x6b\xe5\x20\xa1\x1c\x94\x26\xa1\x27\xad\x1c\xe4\xc9\x76\xde\xd6\xd6\x4e\x51\x54\xa5\x94\xe6\xad\x6b\xa9\x20\xe1\x2d\x2d\xaa\x09\x3a\xf2\xf2\x5a\x5f\xec\x53\xc2\x4b\x5e\x61\x1a\xc7\x22\x43\x48\xda\xad\x82\x9a\x2b\x2f\x4d\x73\xb0\x5a\x91\x30\xeb\x96\x26\x43\x48\x9a\x4d\xe4\xcd\x76\xf2\xe0\xa5\x65\x86\x24\x2b\xb0\xba\x88\xaa\x29\xdf\x63\x90\xa6\xb1\x98\x15\x24\x59\x41\xf3\x1e\xb4\x16\x8d\x08\xab\x97\xf6\x7d\x07\x14\x4a\xf9\x1e\xc1\x5a\x05\xbf\x3a\xa6\x82\x9b\x07\xca\x9d\xbc\xb4\x26\x9a\xfa\x9c\x84\x21\x6f\x12\x52\xa6\x55\x95\x59\x7e\x7d\x2e\xd1\xd2\x34\x9c\x4d\x61\xd0\x8f\xa9\xc8\x9e\x81\x5a\x25\xc5\x68\x54\x63\x5a\x55\x99\x95\xe8\x9b\xd2\x0f\xa6\x05\x91\x09\x7d\xa4\x28\xf2\x6c\x4c\x1b\xa4\x26\xa2\x23\x4a\xd7\x15\x30\x6d\x90\x9a\x8d\x7d\xea\x0a\x98\xb6\x12\xcc\x4e\x9a\xf6\xf5\xb4\x8d\x79\x92\x17\xa8\x24\xc6\x98\x16\x44\x26\x79\x81\x5d\x74\xa8\x18\xf2\x3d\x5e\xa4\xb9\x9d\xce\xc3\x84\x29\xa0\x74\x79\x91\xa7\xdd\x38\x33\x76\xd2\xb4\x2e\x16\x52\x26\x75\x0e\x55\xdf\x1f\xd3\xf6\x60\x54\xde\x28\x45\x05\xc1\x07\x4a\x6d\x7c\x8f\x1c\x8b\x78\xe4\xb4\x8b\x07\x15\x2b\x5e\x9a\xda\x4d\xaf\x27\x79\x81\xc0\x9a\xc6\x34\x2f\x98\x94\x44\x2c\x7a\x4f\x2b\x0f\xa8\xd7\xf0\xca\x60\x9a\x83\xad\x58\x93\xd2\xc6\xf0\x9e\x30\x9f\x98\x14\x27\x86\x0c\xc9\xd3\xc6\xe2\x79\x30\x85\xc4\xdf\xdd\xda\xc3\x3c\x37\xd2\xb4\x5f\x4e\x7f\x77\x8a\x13\x76\xc3\xa1\x10\xc3\xef\x91\x22\x83\xdd\x70\xd3\xbc\x60\x92\x17\xd8\x9d\x36\xcd\x0b\xe6\xc5\x39\xc8\xa0\x31\x7d\xde\x51\x25\xa1\x18\x74\x68\xcc\x47\xf7\x18\xea\x1b\x14\xc3\x09\x8d\x69\x33\xc2\x7c\xc0\xe7\x87\xf7\xc4\xe3\x73\x44\xb1\x60\x0c\xf7\xe9\xb1\x90\x17\x0c\xef\x17\xf3\x82\x49\x5e\x30\x24\xd4\x3a\xa2\x72\x2c\x94\x55\x2e\x43\x57\xf8\x52\x28\xfe\x58\x88\x9e\x2b\x02\x73\x1a\xcb\x7c\x02\x25\x0b\x5e\xda\xb7\xe7\x97\x15\x8f\x45\xc5\x43\x90\x4c\x63\x99\x17\x2c\xf2\x02\xbb\xda\x96\xc5\x89\x45\x71\x42\x95\x66\xc7\xb2\x38\x81\x92\x04\xc5\xf0\x43\x63\xf9\x4c\x2f\x9e\x69\x55\x67\x1d\xab\x79\x0e\x8d\x73\xd0\xfe\x5c\x76\x29\xad\xce\xef\x2e\x3e\xb8\x7c\xde\x17\xe5\x82\xf1\xaf\xd2\xf0\xb2\x61\x70\x75\x6e\x0b\x99\x43\x96\xc5\x86\x45\x7d\x46\x71\xfe\x63\x8d\xc3\xb4\x87\x34\x2d\x8d\x3d\xbe\x00\xfb\x7f\x69\x5a\x52\xb3\x8a\x85\xe0\x41\xe3\x22\x0d\xc7\xc8\x8f\x45\x91\xc2\xde\xbd\x65\x76\xf0\x03\xcf\xb7\x07\xcf\x41\xb1\x03\xb8\xf8\x2f\x4d\x4b\x6a\x76\x00\x48\xfa\x57\xd7\xd1\x1c\x6c\xf0\x5e\x64\x15\x42\xcc\x19\xcb\xac\x82\x69\x9d\xae\xb3\x37\x96\x95\x16\xc4\xc7\xbe\x34\xcd\x6f\x79\x0e\x54\x68\x94\x72\x37\x96\xbd\xc1\x8b\x2c\xc6\xae\xb8\x65\x85\x66\xed\x80\x22\xd6\xed\xb1\xec\xa9\x5a\xe4\x3e\x82\xd2\x1c\xcb\xca\xcc\xa2\x94\x22\x84\xb2\x01\xfc\xf9\xef\x91\x4b\xad\x13\xb8\x6c\x43\x5f\x07\xfb\x14\x57\x5e\xe6\x4c\xeb\xe4\xd4\x7d\x92\x4e\x9f\x08\xc4\x7b\xb9\x04\xcc\x58\x96\x60\xd6\xc9\x2d\x21\xa9\x61\x59\x61\x59\x54\x58\x94\x1e\x30\x96\x9d\xcf\x00\x78\x7f\x69\x1a\xcb\xed\x25\xbb\xb9\x64\x3e\x2d\x0e\xfe\x58\x08\xfe\x28\xe1\xd3\x62\xab\xc7\x22\xf7\x11\xae\xc2\x58\x0e\xf0\x58\x48\xe8\x29\xa9\xad\xbb\x9b\x8b\xec\x1b\x10\x9b\x75\xa9\xee\xb6\x5e\xec\xb4\x5e\x08\xd0\x7b\x00\x27\xfe\xf7\xf8\xab\x79\x22\x46\xbf\x5b\x5f\xd9\x11\x17\x52\x04\x6f\x33\x76\xeb\x2b\x3b\xf5\x15\x41\x74\x8c\xbd\xfc\xe9\x93\xc3\xd4\x8e\xdf\xed\xcf\xde\xa9\xaf\x08\xf0\x60\xec\x35\x4c\x9b\xa4\xa5\x68\x9e\x43\xe3\x38\x75\x1a\x80\x14\xff\x3d\x72\x2c\xda\xd5\xbb\x63\x46\x00\x10\x5f\x8c\x0c\x35\x76\x5b\x44\x80\xfd\xfe\xd2\xf4\x3e\x1b\x4d\x77\x1a\x4d\x95\xf2\x3e\x76\x1b\x4d\x77\x84\x9e\x15\x3b\xc9\x77\x87\x9e\xed\x54\x4a\x84\xf5\x37\x76\x73\x9e\x9d\x82\x88\x40\x4f\xc7\x6e\xce\x03\x90\xf6\xe2\xc2\xfb\x63\xb7\x61\x74\xa7\x61\x54\xf0\x80\x63\x8f\x3f\x7d\x9e\xa4\x69\xee\xca\x10\x1d\x3f\x58\x75\x81\x39\x8e\xdd\xca\x0c\x20\xd3\x5f\x9a\xfa\xb4\x05\x06\xf0\xe7\x2f\x4d\x7d\xda\x83\xb7\x93\xf3\x28\xec\x7c\xec\x8e\x35\x01\x08\x78\x29\x42\x5d\x18\xbb\x15\x96\x9d\x16\x4e\xa1\x37\x8d\xdd\x16\xce\x9d\x16\x4e\x01\xe2\x8e\x7d\xf7\x58\xc8\x26\x04\x84\x32\xf6\xc3\x6b\x4d\x65\x66\xfa\xbb\x5b\x99\x01\x9e\x76\x31\xe8\xce\xd8\xcd\x26\x76\x0a\x30\x76\xa7\xed\xb6\x87\xec\x88\x1f\x2b\xd3\x7b\xc2\xa6\xd1\x9d\xa6\xd1\xe9\xef\x6e\x7b\xc8\x4e\x45\x67\x4a\x7f\xdf\xed\x22\xd9\x2f\xb6\x53\x2c\xcd\x7e\xfd\x69\xf7\x90\xa6\x76\xb7\xcf\x1f\xc2\x49\x8b\x4a\x6c\x8c\xfd\xf6\xfe\xa4\xe0\x23\xc8\x9b\x01\xf4\xeb\xdf\xe3\xc3\xf9\x79\x2f\xd9\x1e\xb2\xc3\xbb\x5e\xa6\xf7\x8b\xed\x21\xc0\xbb\x2e\xc5\x2e\xba\xfd\xf9\xd3\x27\xc7\xa9\xfd\x72\xd8\xbb\x0e\x98\xeb\x52\xa6\x2e\xf8\xc3\xfc\xe5\xa0\xcd\x43\x45\x59\xc7\x61\xa5\xe4\xa8\x18\xa7\x30\x6a\xc6\x61\xa5\xe4\xa0\xe2\xa1\x44\xea\x71\x58\xf1\x00\x82\x74\x29\xca\x8a\x1e\x87\x05\x91\x83\x82\x88\x6a\xe0\x8d\xa3\x2d\xd3\xd8\x4e\xae\xd9\xc3\xee\xc9\x83\xd6\x51\x7b\xc6\x8e\xee\x39\x74\xb6\x13\x2f\x38\x94\x5d\x35\x0e\x9e\x69\xd5\xfd\x1f\x87\xd2\x0d\xc6\x41\x89\xc1\xbe\xaa\xc3\xca\x05\x10\x98\x4b\x51\x69\xfb\x71\x58\xb9\x00\xfa\x72\x31\x5e\xca\x38\x7c\x36\x0f\x4a\x13\x4b\x7b\xe2\xb0\x31\xe1\xa0\xd7\x42\xf0\x62\xe3\xb0\x99\xf3\xa0\x99\xd3\x3e\xae\x63\xf7\x38\x79\xfe\x94\x42\x3d\x0e\x5f\xe1\xc7\xce\x71\x4a\xf9\x3d\x0e\xaf\x19\x15\x08\x3b\xb2\x8e\xc3\xdf\x96\xe7\x6f\x89\x4f\x1c\xa7\xc7\x42\x43\x83\x30\xba\xc6\x61\x25\xe1\xe0\x19\x5b\xde\x2f\x3e\x63\x07\xae\xe9\x2a\xe4\xef\x01\xc8\xe4\xef\xf1\x24\x4d\xf3\xb3\x22\x00\x60\xe1\x52\x7d\x37\x1e\x8f\xfb\xc4\x95\x5a\x95\x26\x34\x4e\x7b\x04\x4e\xf8\x13\xab\xd2\x84\xc6\x69\x45\x1c\x50\xc0\xa5\x6e\xb2\x39\x9e\x8e\xfe\x38\x21\x44\xd7\x4d\x7c\xe9\xb4\x83\xef\x84\xf5\xbe\x6e\xe2\x3d\x80\xf8\xfd\x3d\xe2\x8e\x03\xc2\xc4\x3f\x09\xc3\xa7\x65\x73\x00\xff\x96\xba\x89\x35\x9d\x3e\x12\xc0\xf8\x7d\x69\x7a\xa5\xed\x72\x67\xe7\xd2\x68\xfb\x9e\x3d\x4c\x4b\xd2\x34\x0d\x0b\xdf\x27\x84\xef\x6a\xa7\xd4\x69\xe1\x1b\x78\xbc\x2f\x4d\x63\xf1\xf5\x08\xa8\xdd\x97\xa6\xe5\xb6\x33\x01\xb0\xbb\xc5\x95\xb5\xc6\x69\x97\xfd\x19\x5c\x36\x6d\xed\x33\xfd\xbe\x64\x9f\xd2\x9b\x4f\x1f\x97\x33\xf9\x79\xc5\xb6\x4e\x87\x62\x9e\x93\xf3\x93\xaf\xf5\x74\x08\xf5\xc9\x7a\x1a\x4a\x8c\x1c\xa7\x85\x6f\x20\xdf\x96\x5a\xa4\x5c\x9c\x76\x0e\x02\x04\xb7\x38\x93\x6d\x9c\xcb\x9f\xfe\xbd\x1e\x87\x23\x31\x4f\x47\x62\x9e\xa8\xd1\x58\xcb\xa6\xe9\xd9\x99\x70\xa2\xb0\x45\xb5\x7f\xe9\x74\xbc\xd7\x79\xb0\x9d\x24\xb4\xd3\x37\xe0\x89\x13\x58\x55\x10\x70\x9c\x56\xd3\x81\x82\xfb\xd2\x34\xbd\xd3\xdb\x05\xa6\xbe\x5a\xbc\xeb\x2d\x28\x9f\xb8\xe5\xaa\x92\x96\xc6\xe9\x18\x81\xf3\xe2\x38\x75\xe3\x9e\x97\x3f\xed\xcd\x71\xea\x56\x3d\x6d\xce\x3b\x6f\x8e\x45\x2a\xf5\x69\xef\x20\xd0\x73\x5f\xda\x14\xcd\x73\xbf\xf9\x19\x64\xf9\x3e\x7d\xe2\x81\xb2\xfb\xd2\xf4\x19\xac\xde\x9f\x0f\xe7\xe7\x2d\x68\x15\x1e\x49\x75\xa5\x16\xdd\xaa\x4e\xaa\x1b\xd7\xc6\xb9\x4b\xa5\xbe\xcc\x29\xae\x97\x53\x8c\x21\x7f\xea\xe5\x60\xd2\x0b\x6e\xc5\x6a\xff\xd2\x65\xed\xfe\xda\x38\x3d\x31\xe5\xcb\xc1\xa4\x17\x19\x8c\xfd\x4b\x97\xe3\x73\x90\xb2\xf7\xd2\xa6\x68\xa7\x69\x17\xab\x79\x6a\x0a\xc5\x7d\x56\xf6\x29\xa6\x7c\x59\xc0\xbe\xc8\x98\x54\x60\x65\x5c\xce\xed\xb8\xc8\x5d\x54\x12\x74\x5c\xe6\x2e\x17\xaa\x2f\x54\x3b\x97\x2e\x6b\xfe\x17\xb4\xfb\x6a\x27\xd1\x65\xab\xff\x05\x4b\x5f\xb5\xb3\xe7\xf2\x85\x7b\xe1\xc2\xad\x2a\x56\x32\x2e\x47\x25\x5c\x23\x49\xd3\xdc\x6d\x05\xbc\x10\x31\x5a\x55\xed\x69\x5c\x76\x47\x5e\xb8\x8c\xab\x9d\x3d\x97\x2f\xe3\x0b\xee\x48\x57\x86\x1f\x97\xbd\x05\x57\x72\xee\xd2\x45\x2f\x47\x1e\x5c\x50\xdf\xab\x72\x96\xc6\x35\xff\xd0\x38\x77\x71\xb3\xcb\xfe\xc8\x6b\x91\xe6\x6d\x66\x15\xfd\x5a\x5c\x4f\x71\xac\xcb\x11\x41\xd7\xe2\xba\xe8\xc2\xbd\x76\xaf\xcb\xce\x3e\xc5\xcd\x2e\x0b\xd8\xd7\xf1\xa3\x69\xee\x76\x0e\x02\x29\xb7\xd4\xe6\x6f\x64\x07\xe0\x45\x56\xe0\x5c\xa0\xcb\x31\x69\x17\x59\x81\xaa\x42\x8d\xcb\x3a\x33\xc0\x72\x4b\x6d\xba\x1c\x2f\x27\x45\x5c\x64\x05\x4d\x6c\xe2\xba\x9b\x69\x1c\x8b\x2c\xbc\x97\x85\xda\xeb\xbe\x48\xd3\x5a\xdb\x7a\x7f\xc1\x7a\x5f\x85\xc2\x3d\x2e\xbb\xfc\x2f\x58\xec\xaa\x73\x88\x6e\x87\x7e\xde\x50\x8c\xab\x3d\x17\xb7\x05\xd7\x1b\x01\x43\xb5\x89\x85\xdc\xbe\xfc\x6f\x9e\x4d\x7b\x2e\x6e\x5f\xfe\xc0\xb5\x7d\x69\xdf\xf7\xbb\x7d\xf9\xdf\x95\xeb\x22\xc1\xfc\xf6\x19\x23\xda\x55\x6d\xb2\xbc\xdd\xf6\xba\x01\x66\xb6\x54\x15\xab\x18\xb7\x85\xda\xbb\xb1\x4f\x09\x6f\x77\x3b\x4c\x83\x2b\x5d\x72\xc8\xdd\x3c\x4c\xc8\xc2\xb5\xc9\x3c\x71\xfb\xe2\xbf\x3b\x97\x45\xec\xe5\xf6\xd1\xbc\x07\xa7\x2e\x63\xf3\xed\xe3\x77\xf3\xf8\xd9\x01\x71\x8f\xd3\xb4\x8b\x34\xb5\x0b\x4f\x2f\x7e\xed\xb4\x64\x3e\x9a\x40\x5b\x2d\x55\x55\x30\xc6\x6d\x97\x3f\x32\x6d\x4b\xb5\x23\xe1\xf6\x11\x03\x9a\xcf\x4b\xd3\xfc\x1c\xdd\x73\x43\x4e\xae\xce\x3b\xba\x7d\x8c\x6e\x16\x43\x76\xfe\x90\x61\x7a\xc6\xbd\x73\x9c\x62\x21\xb7\x6f\x62\x40\xf1\x14\x57\x9d\x19\xb7\x65\xe1\xfb\xe0\xdc\xb5\x3d\x6f\xeb\xa2\x37\xf4\xcd\xea\x1c\x21\x43\xea\x0c\xa6\xe5\x1a\xfa\x67\xdc\x96\x77\xef\x6b\x90\xa6\x3e\x1d\x6f\x73\xf3\xf8\xd9\x01\x71\x3b\x24\x14\x38\xa2\xc5\x10\x3e\xe3\xb6\xbe\xc9\x74\xde\x6a\xe7\x84\xd3\x79\x07\xd0\x3b\x4b\xed\xde\x66\x3e\x62\xc0\xe1\x2c\xb5\x8b\x2d\xdd\x36\x98\x03\x82\xf3\xa5\x7d\x73\x78\x6c\xb2\x7a\x36\xbe\x4f\xc1\x8f\x8f\xf3\x95\x08\x9c\x59\xfb\xfa\x47\x59\xf8\xb1\x69\xea\xe1\xed\x68\xbf\x86\x33\x81\xc7\x03\xd3\x54\x75\xea\xd1\x63\xd3\xd4\xc3\x93\x3b\x64\xbe\x78\xac\x72\x22\x29\xf8\xa5\xa9\x4f\xfb\xb3\x00\x6f\x59\xea\x90\xb9\xeb\xb1\xf9\xe9\xe1\x31\x1b\x52\x2f\x1e\xab\x9c\xcc\x12\x36\x50\xcd\x78\xba\xe7\xc0\x23\x68\x7f\xc8\x63\x39\x19\xf0\x91\xa5\xda\xe7\xf1\xf8\x96\x03\x74\xe4\x4b\x53\x3b\xab\xa3\x0f\x6f\x40\xfb\x3c\x9e\xf8\xd3\x8e\xe3\x94\x70\xfa\xd8\x27\xfe\xa0\x0a\x7d\xb5\x5f\xe3\xb1\xdf\xfb\x07\x04\x69\xdf\xc5\x63\x75\xf4\x99\x3f\x9a\xda\xd9\x54\x04\x00\xc7\x97\xa6\xb9\xfb\x06\x04\x38\x63\xa9\x96\xa6\x90\x1a\xfc\x3d\x26\x69\xea\xd3\xa6\xa2\x67\xe7\xba\x4c\xb7\xd3\x31\x63\x06\x71\x1d\xf2\xef\x3e\x3e\x9e\xc0\x5d\x2c\x75\x78\x8b\x3a\x65\xe9\x39\x2b\x69\x6a\x67\x8b\xf2\xc3\xa3\x2b\xc0\xc2\xf1\xd8\x54\x84\x64\xe2\x52\x55\xb6\x61\x3c\x16\x94\x1f\x1e\x5d\x95\x40\x18\x8f\x05\xe5\x87\x6a\x6c\x88\x15\x3e\xb6\x36\x3f\x30\x15\x55\x55\x3e\x18\x8f\x85\xe8\x87\x42\xb4\xd3\x92\x1e\xfb\xc8\x9e\x3b\x48\xd3\xfb\xee\x69\xda\x22\x4d\xeb\xe9\x30\x5c\x00\x78\xbd\x34\xcd\xcf\x66\xa4\x87\x2a\xb5\xaa\x1a\x8c\xc7\x66\x24\x66\x33\x57\x15\x2c\x18\xcf\xe3\x7d\x4d\xe1\x5b\xb5\x06\x62\x13\x3b\x88\x6d\x8b\xff\xfe\x67\xc8\x4a\x1d\x4e\x66\x8e\x6d\xe3\x30\xbf\xa3\x12\x9b\x32\xb2\x62\xa3\x10\x2d\x5f\x48\x18\x29\x2c\x7e\x48\x61\xc2\xfd\x8f\xad\xb8\x4f\xb8\xc8\xaa\xd2\x99\x62\xd3\x25\x1e\x5b\xe1\x52\x7f\xd6\xa0\x70\x12\x74\x30\x09\xba\xca\x4f\x12\x9b\x00\x03\x62\x83\x4b\xbc\xc6\x77\xfc\x62\x6b\x1e\x4b\xfb\xb5\xd3\xfc\xc4\x42\x62\xe3\x25\xae\x94\xa5\xd8\xc4\x42\x62\x6b\xec\x73\xa8\x9d\x02\xe7\x03\xb9\xd2\xa5\xca\xe1\x11\x5b\xf7\x1c\x28\x44\xab\x76\x5c\x6c\xa3\x89\x46\x15\x5d\x35\x27\xc2\xc9\xd3\xb1\x51\x45\x57\xad\xe4\xd8\x86\xd7\x9a\xac\x47\xe9\x4c\xb1\x0d\xbf\x2f\xb8\xd6\xa9\xf7\x85\x3f\x6d\x70\x0b\x4e\xcd\x4f\x00\x05\xb1\xc1\x77\x56\x55\xa0\x24\xb6\xf4\xfc\x92\x47\x65\x6a\xee\xb2\x60\xc7\x96\xaf\x3a\x2d\x47\x42\x6c\xd3\x4b\x3d\xd9\xe5\xd2\xf4\xa6\x87\x32\x39\xbd\xa5\x4f\xa4\x24\xcb\xd8\xa8\xf5\x0b\xb9\x38\x9c\x38\x1d\x1b\x0c\xdf\xae\xd9\x19\xdb\xf2\x56\x82\xe1\xbb\x2a\x7d\x2a\x0c\xcf\x16\x1b\xdc\x6a\x55\xe9\x53\xb1\xed\x9e\x1e\xe2\x04\x8d\x7b\x1e\x9b\xdc\x6a\xb1\x51\xd8\x50\x6a\x55\x6c\x87\x69\x07\x69\x55\xcb\x79\x78\xbb\x50\x9e\x57\x6a\x55\x6c\xa7\xc7\x79\x72\x9c\x4d\xed\x4e\x6f\x5d\x0a\x1b\x4a\xbb\x0a\x27\x47\x07\x93\xa3\xab\x52\xab\x62\xbb\xbc\x5d\xe0\xb9\xaf\x72\xb0\xc4\x76\xbb\xdd\xcd\xf9\x75\xad\xe7\xe3\xb1\xc0\xcf\x55\x73\x68\x9c\x8f\xc7\x42\x35\x5c\x35\xa0\xa2\x48\xd5\x8e\x42\x7d\x5a\xa9\x55\x51\xe4\xe8\x8a\x42\x56\xa0\xf4\xa9\x28\x66\x05\xa5\x70\x0e\x3a\x0e\x4e\x80\x0e\xe4\x3b\x97\x2a\xe7\x4b\x14\x39\xb3\x82\x09\xd0\x55\x35\xb7\xa2\x48\x62\x08\xe4\x42\x97\xaa\x82\x5f\x61\x18\xbd\x28\x94\xf5\x05\x19\x17\xc5\x6c\xa2\x50\x9f\x4e\x6d\xf9\x22\x7d\x3a\x98\x1c\x5d\x55\x16\x2d\x9c\x1c\x1d\xc8\x85\x7e\x69\x6a\xd7\x3d\x3f\x5a\xeb\x54\xac\x2c\x8a\xc2\x7b\x83\xc9\xd1\x55\x35\xb8\xa2\x0c\xaf\x27\x59\x81\xe0\xac\xa3\x98\x15\x14\xea\xda\xca\x9d\x8a\x62\x56\x50\xc8\x0a\x54\x4c\x23\x0c\x39\x16\x4c\xaa\xae\x53\xfb\xb3\x98\x15\x14\xb2\x02\xe5\x55\x45\x09\xaf\x0b\xd2\xca\xaa\xf2\xaa\xa2\x98\x4d\x14\xb2\x09\x39\x82\xa2\x98\x15\x94\xc9\xf7\x89\xcd\x3b\xe1\x3a\x0a\x15\x81\xd9\x4d\xf3\xfb\x26\xdf\x37\xd4\xe7\xf2\x38\x79\xa6\xe5\xd0\x89\xb2\x3c\x77\xea\xe8\xc2\x0d\x8b\x22\x1d\x3d\xca\xde\x48\xd3\x5a\xef\xee\x93\x3a\xba\xea\x22\x44\xd9\xfd\x8d\x0e\xce\x41\x2c\xb9\x1c\x9e\xc3\x31\x48\x1b\xff\x24\x0c\x87\xf3\xb1\xa3\x50\xf7\x98\xde\xbe\x87\x5f\x79\xf2\x95\x53\x4b\x73\xfa\x95\x27\x87\x3a\xf5\xe9\x4f\x1f\x09\xb2\x0a\xf9\x7b\xa2\x5c\x9e\xe2\xc5\xf7\x79\x8b\xde\xde\x16\x70\x97\xd7\xb5\x69\x49\xa5\x7b\x44\x21\xab\x58\xba\xfd\x8b\xdc\xe5\x51\x10\xec\x5f\x95\x93\x15\xe5\xf1\x38\x29\x88\xa8\x6e\x7e\x54\xf9\xa5\x82\x79\xdc\x55\x79\x57\x51\xa5\x08\x44\xe5\xb1\x96\x2f\x28\xaa\x8f\x2e\xf0\x2a\x5f\xda\xc7\x2a\xaa\x8f\x67\xe5\xf1\x54\x96\x54\x54\x1f\xcf\x4a\x53\x98\x80\xf3\xa3\xfa\xa6\x66\xf2\x74\x5d\xba\xe1\x9d\x3c\x1d\x48\x9e\x0e\x05\x57\x44\xf5\xc9\xad\x3c\xb9\x72\x2f\x45\x1d\x1e\x0a\x4f\xa7\xdc\x4b\x51\xa5\x8a\x07\x73\xa7\xeb\xd2\x2e\xac\xc3\x53\x0f\x7e\x86\xcf\x7a\x11\x46\x22\x0e\x22\x11\xd7\xf5\x59\xa6\xa2\xfa\x04\x56\x9e\x40\x55\xb7\x89\xea\x8b\xba\xe6\xaf\x9d\xe6\x20\x94\xa1\xa8\xb4\xcf\x0b\xd7\x37\xaa\x82\x63\xa2\x26\x6e\xdc\x25\x0e\x5a\xa7\xdf\x47\xf5\x5e\x6e\xa9\xa8\xbe\xc5\x2b\x6f\x71\xb9\xa5\xa2\x2a\x70\x26\xea\xe2\x9a\x2d\xf5\xb9\x3c\xf7\xc5\xcf\xbe\x34\x16\x05\xb9\x04\x73\xae\x9b\xc0\x48\xa3\xfa\x36\xae\xb8\x8d\x9b\xc0\x48\xa3\x0a\x0e\x21\x98\x74\xdd\x94\x90\x1d\x55\x88\x86\x81\xfc\xeb\xd2\x94\x5f\x15\xf5\xf0\xfb\x10\xe5\xd2\x84\x6f\x1e\x55\x2e\xb2\xa8\x38\x9a\x6d\x2b\x1a\xe7\xe5\xf7\x41\x85\x6f\x9b\xb7\xb5\x8f\x18\x93\xae\x9b\x72\xa8\xa2\xde\x5e\x6b\x44\x9d\x34\xe5\x50\x45\x7d\xbc\x05\x9f\x1f\xed\xeb\xb3\x29\x8e\x35\x1a\xe2\xd3\x9a\x12\xa5\xa2\xf9\xc6\x6d\xdb\x45\x5a\x17\x4d\x7b\xb7\x15\xae\x8b\x04\xde\x26\x0b\x5a\x34\xb8\x85\xdb\x87\x9d\xfe\xfe\x21\x4d\x5b\xa4\xa9\x4f\x85\x88\x04\x72\xa5\x5f\x9a\xfa\xf4\xad\xda\x2a\xd7\x45\x92\x41\xb3\xf0\xdd\x1a\xd7\x45\x7b\xbe\x35\xcf\xaf\xf1\x3b\x48\x6a\x68\xb2\xa0\x05\xf2\xa8\x4b\x53\xa6\x54\xb4\xe6\xf9\x75\xf6\xa9\xf3\xd0\xba\xe7\xd0\xd9\xa7\xf6\x7c\x93\x05\x3b\xda\xe0\x9e\x98\x1a\xa7\x6f\xdc\x36\xb8\x9e\x53\xdf\xc1\x67\xb3\x05\xbf\x83\x24\x83\x16\x1e\x4b\x72\xad\x25\xb9\xb6\xf4\xfc\x70\x36\x9b\xd0\xf2\xa2\xf9\xe6\x6c\x08\x03\x69\x42\x57\x8c\x96\x5e\x4f\xe8\xf6\x4d\x90\xfa\xd1\x7c\xfe\x1a\xac\xdb\x4d\x58\xeb\xd1\x96\xdf\xb7\xf8\xbe\xa2\x76\x6b\x99\xc6\x3e\xc5\xae\x8d\x2c\x1f\x00\x02\x2d\x4d\x09\x4a\xd1\x0e\xbf\xef\xe0\xfb\x74\xc3\xb7\xd3\xed\xe0\xcc\x6a\xc5\xfb\xd3\x12\x6f\x3b\x89\xb9\xee\xfd\x79\x7a\xef\x9e\x27\x69\x1a\xe7\xe5\x39\x5c\x9c\x83\xf7\xe7\xe5\x3e\x2f\xae\x99\x58\x79\xbb\xbc\x5f\x70\xfd\x35\x25\x36\x45\xf3\x15\xd7\x6e\x8e\xc5\xfb\xf3\x76\xbb\x9b\x63\xf1\x1e\xbc\xfd\x6d\x71\xfd\xb5\x22\xa9\xa1\x3d\x5e\xcf\x87\xed\xb4\x07\xbb\xcf\x6d\x47\xfc\x79\x53\xf6\x52\xf4\x2d\x4c\x03\x3f\x2b\xda\x83\x5d\xa0\x07\xd1\x0b\xbf\x83\xae\xfe\xae\x74\xd8\x00\x74\xff\x4b\x53\x9f\xf2\x4a\x05\xb3\xc6\x9b\x3c\x4f\xd1\xad\x34\x33\x6b\xbc\x15\x89\x05\x5d\xa0\x07\xd1\x71\xdd\x36\x79\x9e\xa2\x2b\x4d\x25\x3a\x24\xe5\xa6\x9a\x14\xd1\x9b\xdb\x35\xb6\xd3\x1e\xec\x3e\xb7\x9d\xe7\xb6\x4a\xaa\xed\xdd\x63\xe9\xec\x53\xbc\xb5\x77\xb7\xc3\x7d\xdb\x94\x9e\x14\xdd\xf7\x6d\xc7\x7d\xdb\xe4\x79\x8a\xee\xfb\xb6\x23\x11\xae\x55\x49\xa7\x06\xdd\x8f\xce\x73\x2b\xaf\x54\x74\xa1\xfa\x45\x0f\x8e\xf3\xf3\x78\x44\x4f\xb7\xc3\x7d\xdb\x84\xb2\x17\x06\xab\x8e\xce\x33\x2d\x8f\x55\x74\x9f\x69\x64\xb3\x57\x81\x1a\x44\xf7\x91\xee\x10\x94\x5b\xd5\xd6\xed\xd3\x53\x58\x9c\xba\xb6\xa7\x33\xd8\x83\x19\xec\x4d\x69\x3f\xe1\x0c\xf6\xe8\x00\xab\x6c\x55\x2c\xb2\xef\x9e\xc2\xce\x29\x48\x2c\xe8\xbe\x6e\xfb\xfe\xeb\x53\xe3\x3c\xfc\xbe\xf7\x6a\x1c\x4d\x37\x40\x3f\x3d\xbb\x93\x5f\x7d\x95\x7f\x93\x85\xbb\x65\xd3\x7e\xf1\x43\x2c\x2d\xa8\x0f\x6e\xe7\xc1\x6d\xde\x84\xb7\x47\xc3\x8b\x53\xc9\x3d\xd1\x65\x17\x8f\x8e\x24\xd5\xa6\xe4\x9e\xe8\x8f\xdf\x07\xb7\x54\x93\x6b\x2d\xba\x2f\x5c\xe6\xb1\xb7\x26\xd5\x6a\x58\x6e\x65\x1e\x7b\x53\xe2\x4f\x0c\x5b\xc2\x06\x60\xfd\x5a\xd3\xe5\xef\x1c\xf7\x60\x8e\x7b\x6b\xba\xfc\x87\xd5\xdf\x01\x4b\x58\x6b\x62\xae\xc3\xd6\xae\x51\x7f\xb4\xef\x4b\x0c\x5f\xb8\x4c\x48\x6f\x72\xc9\xc5\xf0\xa5\x3a\x78\x38\xe5\x76\x8b\xa1\x64\xb0\x18\x8d\xeb\xa9\x4f\x38\xac\xaa\x0e\x04\x9d\x34\xa1\xe0\xc7\xe8\x7e\x1f\xd4\xd8\xa6\x84\xa1\x18\xdd\xf3\xeb\xfc\x0e\xa1\xb1\xc8\x2f\x15\x4c\x64\x6f\x2d\xb4\x2e\x56\x71\x07\x2f\xdc\x26\x06\xea\x64\xf5\x18\xc1\xb9\x8b\x81\x0e\x5f\xb8\x03\xc2\x70\x13\xe4\x5f\x8c\xf0\x77\x80\xcf\xaa\x09\xee\x37\x46\x78\x2c\x30\xa6\x37\xb9\xe4\xc2\x19\xe9\x31\x78\x02\x85\xe9\x17\x63\xfa\x7d\xbc\x54\x55\x37\x20\x86\xfc\x59\x31\x90\x44\xd6\x84\xbd\x1f\x63\xfa\x7d\x30\xb4\x37\xf9\xd6\x62\x2c\xd3\x20\xf0\xb6\xae\xfd\x39\x76\xaf\x0b\x54\xd5\xa6\x04\x9e\x18\xbe\x8c\x07\x2f\xdc\xee\x3d\x78\xf8\x3b\xc0\x60\xde\xba\x18\xe1\x38\xbc\x97\x10\x5b\xd9\xba\x84\xcc\xe1\xcb\x18\x59\xe6\x2f\x4d\xe3\xbc\xbc\x27\xe0\x4e\x6e\xdd\x7b\xd0\x97\xf1\xe0\x65\xdc\x65\x7e\x1a\x97\xd7\xe5\xe2\xdc\x75\xc1\x8f\xdb\xed\xe0\x4e\x6e\x2a\x0b\x15\xc3\xc2\xf0\xe0\x99\xee\x52\xef\xc7\xed\x39\x3c\xdb\x7f\xff\x13\xca\x79\x0a\xe7\x96\xc7\x78\x38\x14\xe9\x63\x4e\x2e\x8f\xc1\x23\xdd\xbd\x75\xe5\x06\x0b\x20\x8d\xbf\xb4\x6f\x28\xa1\x08\x91\x60\xe2\x79\x53\xa5\x8e\x08\x1f\xf7\xd8\xd8\xa7\xf4\x31\x27\x9e\x47\xf0\x9e\xee\x62\xae\x61\x8b\x56\xc0\xb8\xdd\xba\xb6\x67\x28\xec\x32\x02\xb9\x60\x4d\x25\xdd\x23\x6c\xd1\x8a\xca\x25\x93\x5e\x15\x2a\x2b\x13\x51\xd9\x4e\xf7\x7b\x28\xfe\x2c\x82\xac\xa0\x8b\xb5\x86\xef\xe9\x68\x5c\x6a\xc9\xa6\x61\x19\x3a\x90\x1b\xd2\x86\x4c\x02\x61\x95\x39\x60\xdc\x6e\x43\x6c\xd7\x08\xec\x11\x3c\xee\x82\x02\x8c\x18\x5e\x97\x51\x48\xd3\x1c\x94\x33\x1a\x81\xf0\xec\xa6\xdc\xa5\x08\x5b\xb4\x02\x16\xad\xa6\xdc\xa5\x30\xaa\x7b\x04\xf2\x49\x9b\x72\x97\x22\xc2\xeb\x02\xab\x55\x13\x84\x60\x84\x75\xe6\x48\xb6\x93\x99\x21\x7c\x4f\x07\x65\x6f\xe5\x35\x85\x93\xe0\x03\x49\xef\x2f\x4d\x6b\x96\x5e\x33\xb2\x10\xf9\xff\x22\x2c\x97\x07\x59\xc8\x90\x4c\x1b\xb6\x6e\x33\x0b\xde\xc5\x21\x22\xcc\x42\x82\x97\xbf\x7c\x83\x11\xcb\x73\xa7\x3c\xaf\x9c\xa7\x88\xe5\x39\x2c\xae\x99\xf4\xb1\xb0\x25\x2c\x76\x8e\xd3\x7b\x5e\xf5\xa5\x22\x76\x8e\x33\x34\x77\xeb\xda\x41\x5d\x7b\x78\xcf\x2b\x1c\x35\x98\x3d\xdf\x94\xd7\x14\x61\x0b\x5a\x1c\x5c\xeb\xd4\x5e\xb2\xfe\x10\xd4\xb5\x87\xec\x0c\x61\x76\x86\x4c\xf9\x97\xa6\xf9\xd9\x44\x16\xd4\x2d\x54\x82\x3e\xc2\xfa\x43\x90\x2d\x09\x5e\x30\xc2\x3a\x02\xb2\xda\x4b\x0b\xef\x5d\x8b\x1a\x71\x9d\x2f\x7b\x91\xba\x12\x97\x97\x8c\xdc\x4c\x2e\xbe\x88\xdb\x5b\x09\x16\xb2\x26\x17\x5f\x84\x25\x94\xa0\x6a\xa1\xa2\xe3\x11\xe6\x74\x41\x4e\x27\x37\x5e\x84\xa5\x17\x66\xce\x37\xb9\xf1\x22\x2c\xbd\x04\xa5\x17\xe5\x26\x45\x3c\xee\x93\xe6\x02\x15\xd8\x8b\xb4\xf4\xc2\xec\xf8\xa6\xbc\xa5\x48\xb3\xba\x84\xc7\xbf\xd9\x57\xe7\xcc\xf9\xc8\x8d\x63\xd1\x71\x48\xab\x24\x89\x80\x9b\xa6\xbc\xa5\x48\xab\x1d\x49\xb5\x43\x10\x82\xe1\xec\xf8\x48\xaa\x1d\xf6\xb9\xa5\x59\x56\x92\x65\x85\x58\x79\xda\x1f\x97\x54\x2d\x94\x64\x14\x69\xd5\x22\xa9\x5a\x84\xb6\x75\x36\xcf\xa1\x71\x0e\x92\x42\xd2\xec\x2c\x3b\xc7\x22\x29\x24\x2d\xd9\x24\x25\x1b\x25\x20\x45\x0e\xb7\x1b\x6c\xa7\x6d\x9d\x82\xe1\x89\x1c\xbf\x76\xff\x06\x2e\x1c\xce\x90\x8f\x44\xaa\x5b\xb3\x4b\x2e\xc3\xd3\x0f\x7e\x26\xdd\x02\x19\x9e\x3e\x35\x16\xbb\xe4\x9c\x21\x1f\xa8\x53\x51\x9a\x6a\xc0\x46\x4e\xbf\x6f\x72\xb9\x75\x0b\xa4\xb9\x56\x92\x6b\xd9\xb7\x96\xb6\xd1\x27\x85\x9b\xd4\x0d\x91\xcb\xdb\x02\x51\x04\x2d\x37\xf5\xa9\x74\xb6\x48\x72\x9f\xd4\x2d\x90\x16\x6e\x92\x96\x06\xfb\x0e\x9d\x05\x1f\x49\x01\x26\xbd\xb5\x4f\x8f\x13\x00\xc2\xcd\x3e\xb2\xb4\x72\xc1\x6c\xf6\xa6\xaa\x9d\x91\x16\x44\x92\x82\x88\x0a\xd1\x46\xde\x5e\x6b\x1e\x5d\x41\x0c\x46\xfa\xe8\x26\x8f\xae\xfd\x60\xe9\xa3\x9b\x54\x3c\xd2\x5b\xd4\x47\x97\x19\xeb\x4d\xd5\xec\x63\xfa\x78\x32\x2b\xbd\xa5\xb6\xda\x54\xc2\x57\x4c\x5a\xe5\x94\x4c\x14\xd3\xc7\x8c\x19\xe4\x4d\xc9\x44\x31\xad\x40\xcc\xca\x35\xd3\x7e\x71\x76\x79\x4c\x56\xbd\x53\x32\x51\x38\x83\x3c\x26\xad\x72\xf6\x67\x39\x83\x3c\x90\x41\x1e\xd5\x53\x68\x1e\x26\x6c\xf0\x6d\x7e\x79\x00\x31\xdb\x6e\xda\x41\x9a\xba\xb4\x71\x0d\x39\xe1\xa5\xd9\xd5\x35\xad\xa4\x23\x49\x3c\x6a\x98\xa4\x1d\x38\x79\x87\xdb\x63\x35\xbd\xe3\x27\x22\x40\x9b\x3d\x4f\x53\xb8\x0f\x31\x11\x66\xd6\x94\x66\x14\x73\xf9\x75\x48\xc7\x68\x4a\x25\x0a\xe7\x7a\xc7\x5c\x9c\x9e\xd4\xa3\x69\xfb\xd9\xe4\x7d\x2b\xd4\xbe\x70\x1e\x78\x4c\xee\xf8\xe9\x39\xf8\xbe\x9d\xf0\x34\x37\x15\x57\x8e\xe9\xfb\x76\xee\xec\x53\xf2\xe7\xf4\x49\x61\x8e\x78\x53\x2a\x51\x4c\xdb\xaf\x91\x12\xfe\xd2\xbe\xdd\x39\xed\x3e\x9a\xb4\xbb\x09\xb5\x2f\xe6\xe9\xdd\x42\x51\xdf\x2e\xa2\x69\x51\x7f\xc2\xd3\xdc\x96\xd4\x70\xe7\x81\xc7\xa4\xdd\x7b\xf9\xb3\xfb\x72\x9c\x70\x2d\x35\x55\xb9\x8c\x69\xbb\xdb\x44\xfc\x4b\x53\x9a\x51\xcc\xdb\xdf\x0f\x51\xa5\x4d\x55\xaf\x63\x5a\xd6\x47\xba\xf8\x4b\x53\xbb\xc7\x73\x87\xf7\xba\xa9\x16\x75\x4c\xa5\x94\x04\xf3\xc0\xdb\x52\x8c\xcb\xb2\xf7\x7a\xf1\xf4\x2d\x5d\x8e\xcb\x36\xb9\x45\x9b\x9c\x5d\x52\x4b\xf0\xc1\xc1\x9c\xed\xa6\xf4\xa4\x58\x8a\xea\x0e\xa4\x6f\x87\x82\x82\x63\x59\x9c\x5f\x08\xf8\x6e\x4b\x8c\x67\x09\xda\x21\x16\xc5\xf9\x25\x0d\x68\xd9\xec\xb6\x2a\xa7\xa0\x3b\x6e\x35\xf7\xc9\x7b\x73\xe9\x8e\x73\x1a\x78\x2c\x9a\xd2\x85\xc0\x17\xcb\x27\x73\xf1\xde\x14\x02\x5f\x2c\x5b\x04\x16\x4d\xe9\x76\x1f\xad\xee\xa9\x23\x50\xbc\xd9\x7d\xb4\x6c\xae\x43\xca\x77\x69\x42\xe0\x8b\x65\x73\xdd\x1a\xfc\xec\xba\x8c\x96\xd5\x80\x45\x35\x60\x2d\xb7\xfb\xd3\x27\xc7\x29\x55\x66\x85\xe7\x0e\xd7\x59\x17\xcc\x5e\x2c\x5b\x0b\x16\xac\x05\xdd\xee\xa3\x65\x15\x61\xc1\x5a\xd0\x37\x5d\x62\xce\x1d\x8f\x05\xd3\x7d\x57\x02\x75\xac\xf4\x76\x01\x04\x45\xb7\xfb\xc8\x79\xe5\x81\xba\x4b\x2f\xad\x8b\x76\x99\xf6\x90\xa6\xf5\x34\x5b\x5a\x73\xfe\xf7\x3f\x61\x83\xd5\xb2\x86\xc0\x94\xf3\xae\x82\x81\xe1\x94\xf3\x58\xc8\x6c\xe9\xf6\x3a\xad\xe5\x9d\x0b\xd8\xbb\xae\x52\xc3\xb1\xcc\xb1\x90\x7d\xfe\xd2\xf4\x19\x6c\x9c\x40\x86\xf9\x4b\x53\x9f\x96\xe6\x91\x2a\x5e\xfa\x26\xeb\xe7\xb2\x57\x0d\xa9\xe2\x2f\x6d\x89\xe6\xcf\x7e\xb0\x4f\xf9\xf4\x5d\xdb\x29\xd6\xc1\xb1\x88\xeb\x3a\xaf\x3c\x16\xb0\x59\xbb\x4a\x3a\xc7\x3a\xfd\x3e\xd8\x1c\xbb\xea\x57\x86\x4b\xe0\xc5\xba\x38\x16\x71\x4f\xe7\x8e\xc7\xba\xf8\x3e\x6f\xf9\xcb\xef\xbb\xf8\x3e\x6f\x6b\x73\x33\xa4\x91\x97\x6e\x0f\xd1\x32\xc7\x5a\x37\xbf\x91\xac\xf3\xcb\x86\x0b\x14\x6c\x2e\x5d\x19\x4d\xb1\x1e\x6f\xcf\x87\xed\xc4\x75\x77\x7b\x0a\x76\x70\xa5\x2e\x78\xbb\xd8\xcd\x95\x76\x58\x20\xba\xd2\x8f\x62\x77\xe8\xdd\x0e\x0b\x44\x57\x7d\xaa\x70\xf2\x78\xec\xf0\x14\x74\xa5\x1f\xc5\x6e\x0f\x1f\xca\x44\x47\xd3\x67\xdf\x6d\x9c\x40\x1a\xf9\xdb\xec\xdb\xd5\x7b\x75\x97\x70\xfe\xf5\x22\xe6\xb9\x5b\x94\xd8\xe1\xfc\xeb\xa5\xfd\x63\x88\xc4\x6e\x49\x63\x6f\x9c\xbd\x78\xeb\x6e\x45\x00\x59\xe6\x2f\x4d\x33\xb4\x22\xb0\x83\xa1\xf5\xa2\xfb\x7d\xb7\x5d\x63\x87\x8f\xa1\x2b\xe1\x29\x76\x61\x5e\xc4\xde\xb9\x32\x62\xca\xbb\xe2\x7e\x63\x87\xcd\xa3\x2b\x19\x2a\xf6\x7e\x9a\xf6\x90\xa6\x2f\x68\x9f\xe2\x3e\x38\x4e\xed\xd0\xdd\xfe\xfe\x7d\x70\x69\xc4\x94\x9d\x76\x1e\x7b\x70\xee\xda\xa1\xbb\xb5\x80\x9d\x8c\xc9\xbe\xa5\xdd\x8c\x09\x99\xe4\xa5\x17\x31\xde\xdd\x8c\x69\x27\x63\x52\x75\xbc\xd8\xcd\x98\x76\x32\xa6\x22\x1f\xe6\x6e\x7f\xff\x3e\xb9\x66\x62\xbc\xbb\x35\x84\x1d\xfe\xfe\x6e\x1f\xd1\x6e\xae\xb5\x23\x8a\xa7\xdb\x47\xb4\xdb\x76\xb1\x93\x6b\x55\xef\x5e\x47\xf8\xec\x90\xb3\xba\xfd\x47\xbb\xed\x1a\x3b\x62\x90\x7b\xf5\xce\x36\xd7\xda\xe1\xc3\xec\x55\xca\xf6\xee\x88\x3e\x64\xb5\x97\x6e\xff\xd1\xee\x38\x81\x1d\x65\x13\xba\x20\xec\x62\x17\x1a\x46\xec\x90\xb3\x7a\x55\x80\xeb\x7e\xb8\x4f\xa4\xb9\xf7\x2a\xa5\xd9\x69\xee\xb1\x93\xa3\x09\xde\x2e\x76\x73\xb4\xfd\x64\x9f\x4d\xdf\xfd\x74\x9f\x17\x69\xde\xbb\xd7\x1f\x1a\x4e\x7c\xf5\x5e\x72\x7c\xc1\x4e\xce\x54\x65\xb7\xd9\xad\x91\x20\xcb\xbc\x74\x3b\x7b\x76\x73\x9f\xfd\xe1\x1c\x64\x73\xdc\xed\xc3\x64\xda\x79\x17\xc6\x5b\x38\xed\x3c\x98\x76\xde\xab\xe4\x48\x57\xdc\x8b\x63\xe3\xb7\xd5\x3e\x3b\x1c\x4b\x7c\x90\x6b\x55\x71\xbb\xc3\x5c\xeb\x80\x9b\xa4\x37\x69\x9b\x87\x6d\xaa\x07\xdc\x24\xbd\xe9\xa2\x3e\x2c\x83\x31\x95\xbd\xdb\x0d\x74\x98\xa3\x1d\x64\x5b\x2a\x4c\x1a\x87\x05\xad\x03\x60\x9e\xbd\xc9\xe6\x78\x38\xd4\xe8\x68\x7c\x9f\x6c\x8e\x87\xe3\x12\x98\xca\xde\x55\x51\x29\x0e\xf3\x9e\x83\xbc\xc7\x2c\xf4\x30\xef\x39\x80\xb4\xdd\x9b\x0c\x29\x87\x8d\x10\x47\xe7\x1c\x64\x4a\x3f\x6c\x84\x60\x0a\x7c\x6f\x32\xa5\x3b\x05\x3e\x98\x02\xdf\x95\x7d\x15\x87\x79\xcf\x81\x80\xe1\xde\x74\x1b\x1f\xc3\x7d\x92\xf7\x34\x69\xb0\x47\x78\xee\x80\xb5\xe8\x76\xe7\x1c\xb6\x32\x1c\xc9\x75\x91\x90\x79\x38\x9e\x01\x99\xf2\xa5\x37\xf1\xac\xc3\xfc\xe5\x80\x3e\xd6\xed\xb2\x39\xcc\x5f\x8e\x59\xdf\x5b\x47\xa6\xca\xc3\xc2\xcd\xb1\xf8\x3a\x99\x00\x0f\xb3\x90\xe3\x65\x21\xa1\x3c\xb0\x38\xac\xa9\x1d\x8b\xab\xe9\xdd\x69\xb7\xe8\xf1\x72\x90\xf8\x33\x01\x07\x21\x1d\x8b\x9b\xc5\x1b\xd7\x66\x8b\x63\xe7\x04\xc4\x20\x0f\xfb\x6b\x0e\xf8\x6b\x7a\xf3\xa6\x76\x68\x21\x73\xf8\xbb\x7d\x47\xce\xe1\x8f\x03\x46\xd3\xde\xa5\x38\x1d\x66\x3c\x48\xe7\x7f\x69\x1a\xa7\xc5\xa5\x03\xb5\x9b\xba\x80\xe1\xe2\x30\x73\x39\x28\x2e\xd9\x49\x72\x58\xf9\x3b\x10\x82\xdc\x95\xb3\x15\x87\x7d\x40\x07\x7c\x40\x5d\x78\xe1\x71\xd8\x07\x74\x5c\x1c\x8b\xc4\xcf\xc3\xe2\xd2\x81\xb4\xc1\xde\xa5\x54\x1d\x0e\x33\x3e\x6e\x8e\x53\xe2\xe7\x71\xff\x69\xc7\x71\xca\x72\x78\x3c\x7e\x1f\x19\x96\x72\xb6\xe2\xb0\x82\x77\x40\xc1\xeb\xdd\x1b\xde\xd6\xcf\x83\xa2\x94\x10\xa7\xc3\xa5\x3e\xe3\xa4\x28\x65\x9f\xd3\xa9\x74\xc3\x38\x91\x6e\xd8\x55\xf3\x29\x4e\x9b\x57\xce\x57\x04\x0a\x61\xb8\xc5\xe9\x50\x45\x20\x0b\x94\xde\xa5\xd7\x9f\x96\x4f\x4e\xca\x27\x5d\x67\xe1\x6c\x7e\x1d\x79\x84\x52\xbd\xe2\xb4\xa1\xf2\x84\xa1\xb2\xab\x1c\x54\x18\x13\x20\x4e\xf2\x08\xe1\xd0\xc5\x69\x85\xeb\x24\x1f\x50\xa9\xa8\x38\xcd\x07\x4e\xa4\x06\xf6\x2e\x4b\xcf\x69\x85\x0b\x69\xfe\xa5\xab\x54\x54\x9c\xb6\x44\x9e\xc1\x76\xda\xd6\xa7\xa3\x85\xcf\xe0\xfc\xb4\xad\x4f\xf3\x0f\xc0\x03\x0c\xd5\x99\x88\xd3\xec\x03\xe5\x9d\x4b\x57\xf5\xa9\x38\x1d\x8e\x48\xb8\x80\x3e\x24\x12\x9c\x16\x5d\x4e\xa0\x6b\x74\xa5\x80\xc5\x69\xb7\xcb\x49\xd6\x62\x97\xd3\x69\x11\x84\x70\x01\xdd\x6e\xa5\xd3\xae\x15\x20\x07\x94\x6e\xb7\xd2\x69\x03\x26\x90\x03\x5e\x9a\x3e\x9f\xc5\x13\x20\x07\xbc\x34\xbd\xcf\x1c\x04\x45\x63\x5f\x9a\xe6\x60\xc5\x89\x98\x00\x7d\xb4\xf8\x37\x49\xf8\xb4\xa4\x71\x52\xd2\x18\x92\x18\x4e\x47\x24\x12\x32\xa0\xab\x70\x55\x9c\xa7\x77\xe1\xc9\xa1\x4a\xda\x3d\x1d\x2c\x7c\x9e\xfc\x14\xd2\xc7\x4e\xeb\x4e\x27\xa5\x10\x7b\x96\x4e\x3b\x76\x4f\xea\x4e\xca\x3a\x8b\xd3\xcc\xe0\x44\xb0\x46\x1f\xb2\x82\x9d\xb6\xa7\x9e\x37\xe7\xa0\x5b\xe5\x34\x33\x38\x6f\xb6\x93\x15\xcc\xb0\x00\x71\xbe\x07\x7e\x4c\xed\x0a\x67\xf7\xc7\x45\x41\xc3\x4e\xa7\xcb\x82\xc6\x85\xe0\xc8\x6e\xa7\x93\xd3\xfb\xe3\xda\x38\x05\x5d\x46\x4e\xef\x8f\x8b\x82\xc6\x90\x8a\xe7\x12\xbd\x71\x51\x75\xb2\x43\xca\xe9\xfd\xc1\xf4\xfe\x3e\x74\xc8\x9c\xde\x1f\x17\x9c\xb7\x5d\x40\x7b\x71\x59\xd0\xb8\x10\xc7\xd1\x87\x0e\xd2\xe5\xc0\xc9\xab\xa2\x4f\xa1\xe5\x85\x53\xff\xe3\x42\x5a\x72\x0f\x59\x35\x2e\x33\x9f\x0b\xd6\x9e\xae\xb2\xdb\xe1\xd4\xff\xb8\xfa\xaf\x9d\xc6\x69\xcb\xcc\x45\x81\x41\x49\x67\x71\xd9\xc2\x72\xd1\xc2\x12\x4a\x1d\xb8\x6c\x61\xb9\x68\x61\xb1\x47\xea\x72\x3c\x06\xd3\xfb\xbb\x3d\x52\x97\xb9\x01\x32\xfd\x5f\x9a\xc6\xe2\x20\x2b\xa6\xf7\x77\x7b\xa4\x9c\xde\x1f\x17\x05\x0d\x21\xe9\xc5\x65\x4e\x71\x51\xc9\x09\x1d\x95\xcb\x42\xc8\x05\x07\x6d\x77\xf6\xd8\xe5\x74\x84\x0b\x30\xe5\xdd\x19\x62\x97\xb9\xc8\x45\x2e\x62\x6f\xd5\x35\xbd\x9e\x8b\xeb\xa9\x63\x74\x39\xe0\xf2\x7a\x25\x92\x31\x75\x55\x5d\xb6\xcc\x5c\xb4\xbe\x84\x4e\xd8\x65\xb1\xe0\xa2\x58\x10\x92\x6c\x2e\x8b\x05\x17\xc5\x02\xd5\xbb\x8a\xcb\xd9\x08\xd7\xc1\x29\xe8\x14\x5d\xb6\x09\x5f\xe4\x20\x76\x72\x5d\xd6\x55\x2e\x8a\x0c\xa1\x20\xb2\xcb\x31\x9c\x17\xb9\x4b\x48\x77\xb8\x1c\xf1\x45\x14\x82\xee\xc4\xb2\xcb\xdc\xe5\xba\xb8\x2c\xd2\x2b\x2e\x67\x2d\x01\x90\xe0\xa5\xa9\xcf\xcb\x4b\x8d\x3c\xcb\x1e\x3e\x2a\x16\x27\x00\x48\xf0\xd2\xf4\x89\xec\x68\xbd\x28\x6a\x84\x8f\x91\xe3\x34\x2f\xe4\x4b\xf6\xf4\x51\xb1\x4d\xf8\xa2\x1e\xe3\x0c\xb1\xdb\x22\xc3\x4d\x91\x41\x10\x7c\x71\xdb\xfa\x72\x53\x8f\x11\x04\x5f\x18\x85\x20\x88\x42\xd0\x53\xba\xe6\x6d\x71\xe2\x2e\x6c\xa7\xcb\xe3\x56\xe1\xaa\xb8\xe1\xc9\xe9\x29\x51\xca\xe8\x05\x81\xc2\xdd\x2f\xed\x9b\xdf\xed\x38\x4d\x00\x19\x94\x9e\x12\xb3\x6e\x87\x82\xdd\xd4\x63\x52\xfa\xc8\x6d\xa3\xf0\x4d\x19\x25\x75\x54\x8c\x50\x10\x37\xc2\xc4\x7a\x4a\x04\xbb\xcd\x42\x58\x01\xbc\xa7\x8e\xca\x6d\x1b\xca\xdd\x39\x07\x89\x60\xb7\x73\x26\xee\xc1\x76\xd2\x39\x6e\x27\x3e\xde\xa8\x18\x64\x77\x86\xd1\x0b\x82\xe8\x05\x5d\xc8\x7d\x61\xf4\x82\x20\x7a\x41\x4f\x49\xf3\xb7\x3d\x47\x44\x2f\xe8\x42\xf5\x8b\xdb\xae\xa3\x9b\x9c\xc7\xc9\x63\xb7\x39\x0f\x8b\x8a\x77\x27\x8f\xdd\x4e\x60\xbc\x27\xa7\x20\x71\xf0\xb6\xfd\xf6\xa6\x29\x24\xb5\x05\x6f\x73\x10\x22\x1b\x74\xcb\x44\xb7\x65\x8d\x9b\xca\xca\x14\xb7\xbe\x6d\xa4\xbd\x69\xee\x10\x72\x5f\xdc\x76\x2b\x01\x1c\xe1\xa5\xa9\x9d\xdd\x4a\x44\x4b\xe8\x4e\x10\x33\x5a\x42\xdc\xd4\x48\x9c\x20\x76\xef\xfe\xec\x34\x85\x4c\xc9\x3d\xb7\xb5\x0e\x16\x31\xef\x42\x03\x8c\xdb\xd1\x65\x37\x9c\xb3\x7d\x8a\x5b\xdf\x66\x13\x37\xd9\x84\x8a\x6b\xc5\x6d\x61\xe2\xa6\x49\xc3\x49\x60\xb7\xdd\x4a\x37\x85\x09\xb3\xcf\xdb\x0e\xd8\xfb\xe6\xba\x88\xeb\x1a\x11\x21\x6e\x6a\x16\x76\xe1\xdd\xd6\x2c\x6e\x1a\x62\x9d\x3c\x76\xdb\x39\x7b\x23\xae\xa2\x4f\x69\x01\xb7\x35\x8b\xfb\x61\x9f\x32\xbd\x3c\x36\xd2\x02\x38\xe1\xa5\x85\x68\x69\xda\x24\x6d\x89\xb6\x9b\xc6\x3e\xe5\xf0\x7d\x6c\xee\x78\x68\xc0\x9d\x62\xbb\x8f\x43\xc8\x1e\xb2\x10\x21\x05\xc6\x63\x16\xf2\x90\x4d\x4c\x05\x0f\x3c\x36\x77\x3c\x64\x13\x53\x12\xca\x63\xcf\xed\xd3\x38\x07\xb1\xd6\xc7\xea\xca\x43\x56\x30\xb5\xaf\x1f\x87\x6c\x13\x2a\xa1\x2f\x99\xf8\x1e\x47\x8c\xa2\xb6\xfa\x98\xb2\x1a\x3e\x4e\xac\x7a\x68\x4d\x5d\xdb\xfc\x37\x51\xf8\x71\xf6\xf4\x83\x40\xf0\x6e\xc7\xe0\xe3\x78\xd2\x87\x8a\xce\xd2\x89\x78\x2c\xdb\x3c\x34\xc4\x2e\x9d\x08\x03\x37\xc4\x83\x68\x8d\xee\x5c\xb5\xc7\x71\xa8\xa8\x02\xff\xd2\xb4\xa2\x96\x6d\x1e\x84\x5c\x74\x15\x02\x8b\xc7\x32\x0a\xc1\x19\xfa\x92\x8c\x62\x70\x86\x78\x00\x7e\xd6\xed\x34\x7c\x6c\x0c\x79\x68\x6c\x5d\x62\xbc\x8f\xb9\xc8\x43\x39\x64\xe9\x44\x3c\x96\x43\x1e\x1a\x4d\x97\x64\x14\x97\x7e\x0f\x02\x37\x74\xd5\xed\x8a\xc7\x46\x53\x96\x7e\xef\xcb\x3b\xdb\x76\x8d\x87\x76\x0d\x7b\x1b\x1f\xdb\x35\x1e\xba\x88\xec\x6d\x7c\x76\x8f\x93\x02\x8c\xbd\x8d\x06\x7c\x88\x87\x5a\x90\xbd\x8d\x8f\xd5\x9c\xe7\xe0\x6e\x92\xcc\xfe\x38\xf2\xfc\x41\xa0\x58\x17\x4e\x62\x18\x28\x22\x9e\x83\x73\xf0\x89\xb0\x41\x95\x60\x10\xdd\x9e\x48\x83\x41\xc4\x43\x21\xc5\x09\x69\x06\x83\x88\x07\x0e\xef\x6e\x6f\xe3\xe3\xd4\xea\xe7\xe2\x5e\x52\xc8\xcc\x73\xf9\xb4\x40\x3d\x1a\x9b\x34\xdc\xc7\xea\xd1\x03\x8e\x36\x84\x93\x18\x06\x8a\x08\x02\x45\x0c\x7b\x22\x0d\x14\x11\xcf\xfd\xeb\x53\x63\xb1\xea\xf4\xdc\xec\x53\x06\x71\x83\x41\x04\xf0\x1d\x5e\xda\xaf\xcf\xdc\x24\xdc\xe4\x06\xe1\x66\x08\x5f\x31\x8d\xea\x90\x2c\x51\x3f\xe4\x36\xcc\x4d\xf8\x2f\xb9\x81\x6b\x0d\xe1\x2b\xe6\x26\xc1\x27\xb7\xc2\x3e\x3f\x81\x22\x37\x71\xad\x64\x69\xfb\xb1\x75\xf5\x29\x6f\x78\x02\xc4\xe1\xa5\x69\x2c\xf2\x2d\xe5\x06\x23\xed\x50\xb2\x5a\x6e\x0a\x7c\x4d\x54\xb9\x2f\x43\x2e\xc5\xdc\x64\xa4\x4d\xa2\x3a\x0c\x81\x24\xa6\x51\x1d\x72\x6b\x9c\x5f\xb8\xdd\x6e\x1a\xd7\x33\x34\x3f\x09\x3e\xc9\x72\xf9\x63\x0b\x8d\x45\x82\x4f\xb2\x24\xfe\x90\x4b\x31\x37\x19\x69\x13\xe0\x0f\x2f\x4d\x63\x19\x5e\xb3\xc1\x71\x4e\xb5\x1b\x1e\xe7\xe0\x9a\x4d\x7d\xbf\xe1\xb9\xc3\x1b\x3e\xe4\x6e\xcc\x6d\x78\x9c\xc1\x71\x2e\xcd\x2f\x3c\xce\xe0\x7a\x2e\xf5\x29\xc3\x4d\x6e\xc1\x7d\xb6\xd4\x67\xfa\x1b\xc1\xe3\x3d\x94\xac\x96\x5b\x7a\x2c\xd0\xb9\x86\x12\xd2\xd2\xb5\xf2\x93\xb5\xf2\x47\xf9\x84\xe8\x74\xad\xfc\x24\xe4\xc3\x50\x15\xae\xdc\x94\x2c\x9a\x1b\x9c\x47\x43\x55\xb8\x72\x9b\x9e\x1f\xac\xc2\x43\xc9\x6a\x69\xc8\x87\xdc\x16\xfb\xac\xea\x73\xf9\xdb\x2e\x8e\xd3\x7b\x5e\x41\xb1\x49\x58\x87\xa1\x0a\x5d\xb9\x1d\xde\x83\x70\x5d\x0f\x39\x1b\x73\x3b\xdc\x0e\xbc\x67\xc8\xa1\x98\xdb\xe9\x76\xa8\xd3\x34\x54\x85\x2b\xb7\xd3\xf3\x43\xc8\xda\x90\x43\x31\xb7\xcb\x67\xf3\x62\xbb\xa1\xb1\x5c\x3e\x7f\x17\xdb\x85\xde\x77\xbb\x1d\x79\x88\xca\x69\xe5\xf6\x98\xf6\xfc\x68\x6a\xf7\x78\x4f\x3c\x9c\xdf\xd4\xb7\x7d\xbc\x66\xb0\xa9\x8e\x32\x35\xce\xc7\x73\x7f\x38\x77\xed\xc1\x62\xfe\x52\xc8\x43\x94\x90\x96\x45\x8e\x9e\x64\xcd\xfb\x51\x3e\x89\x22\x8b\x22\x4a\xb3\x40\xf2\x19\xaa\x97\x95\xa5\xb8\x1d\xc2\xd9\x86\x20\x0d\xd3\x35\xef\xb3\x20\xa2\x74\xc8\x31\x98\x45\x0a\x52\x16\xf8\xa0\x87\x1c\x83\x59\x9a\xdb\x35\xb6\xfb\x6c\x17\x59\x9a\xdb\x21\x1f\x66\xc8\xf9\x97\x45\xd2\x4d\x16\x24\x92\x0e\x25\x88\xa5\x61\x1d\xb2\x20\xd0\x7d\xa8\xd6\x54\x16\x29\x3a\x09\xa4\x86\x32\xaa\x78\x56\xf1\xb9\x25\x3c\xc3\x50\xa6\x57\x16\x25\xa4\x65\x09\xb6\xfb\xa4\xcc\x2c\xe1\x76\xf9\x6b\xa7\x71\x2a\x21\x2d\x0b\x30\x8b\x87\xb2\xc0\xb2\xa4\xd7\x13\x56\xd5\x51\xb5\x27\x5c\x2b\x3f\x81\xd4\xf0\xd2\xd4\xa7\x9c\xbe\x49\xe8\x86\x51\xc5\x97\x8a\xcf\x2d\xca\xdf\x97\xa1\xa8\xa7\x2c\xcb\x7b\x82\xe7\xb6\x7e\xda\x53\x1a\xd6\x21\x0b\xe4\x97\xa1\x1c\xb0\x2c\x3e\xb7\x40\x71\x78\x69\x1a\xcb\xee\xfd\x82\xe4\xf0\xa1\xe2\x4f\x59\x14\x40\x97\x65\xc7\x9a\xb5\xa2\xf5\x94\xd3\x37\x0b\xe4\x90\xd1\xc4\x7b\xca\xe1\x6f\x0b\x59\x63\xc8\xf9\x97\xe5\xf0\x58\x10\x94\x3e\x04\xbd\x98\xc6\x6d\xc8\x72\xb2\xcf\xaa\x39\x98\x17\x14\xf2\x02\x39\x0d\xb3\x9c\x1e\xe7\xc9\x3e\xdb\xbf\x15\xdb\xc8\x72\xfa\x95\x70\xcd\x0c\xa5\x88\x65\xb9\x3c\x8d\x8b\xd3\xf0\x16\xbd\x3c\x8d\x8b\x4b\xa3\x2b\xb7\x5c\x5e\x1a\xb2\x98\xe6\xed\x7b\x7b\xb9\x11\x31\x3b\x84\xda\x98\x45\x11\x30\x59\x10\x01\xe3\xec\xc0\x2c\xb7\xc7\x49\xf6\x23\x44\xc7\x2c\x66\x3f\xe5\xe1\x38\x75\xe5\x16\xb3\x9f\xf2\x70\x9c\xba\x72\xab\x59\x0c\x61\x24\x86\xfc\x8d\x59\x2d\xc2\xd4\x8d\x63\x49\xb7\xbb\x4d\x03\xfb\x91\x53\x31\xab\xd9\x4f\x45\xd0\xfa\x50\x4d\xa9\xac\xc5\xed\x2a\x3f\xa1\xb6\x68\x15\x44\x74\x56\x8a\x22\xfd\x33\xab\x66\xb5\x28\x52\x29\x8a\x28\xd5\x2b\x6b\xf7\x1c\x10\x73\x32\x94\xea\x95\x55\x31\x27\x59\x29\x52\xc8\xed\x96\xae\xdd\x9f\x95\x2c\x46\x30\x8a\x59\xcd\x62\x00\x45\xf1\xd2\x34\x96\x30\x2d\x48\x6b\x9a\x83\x59\x0c\x6b\xf0\x0f\xa5\x73\xa5\x6b\xf0\x27\x6b\xf0\x0f\xd5\x71\xca\x9a\xee\x93\xa2\x41\xd7\x15\xe8\xfa\xfc\x49\x8c\x09\x17\x81\xcd\x6a\xf6\xc3\xda\xfd\x43\x10\x8b\x59\xcd\x7e\x6a\x3e\xff\xfd\x4f\x28\xbd\x2a\xab\x02\xd6\x93\xf0\x13\x43\xa5\xa1\xd2\xf0\x13\x59\xc9\x99\xfa\xd0\xe7\x33\xf7\xa9\xe4\x3e\x4a\xf5\xca\xba\x3c\x85\xc5\x65\x09\x4d\xcf\x12\x05\xa1\x29\x5c\xb0\x35\xeb\xee\x3e\x77\xf6\x99\x7a\xdf\xee\x3e\x77\x7e\x5a\x6f\x41\xd9\x60\xb2\x92\x33\x29\xd5\x2b\xeb\xe1\x2d\x78\x70\x7e\xba\x55\xeb\xe1\xb1\x20\xff\x36\x8a\xba\x34\x63\xaa\x14\x44\x94\x05\x96\xf5\xf4\xb2\x90\xf9\x74\xef\x5c\x33\x9f\x8a\x6c\xfb\x31\x3e\xd3\x54\xd6\xcb\x53\x40\x62\xee\x10\x62\x63\x56\x73\x90\x4a\x65\x46\x2e\xb9\xac\xb7\x3f\x11\x7c\x3d\x43\x99\x5e\x69\xb4\x8b\x24\xda\xc5\x18\xde\xd5\xe6\x04\x95\x82\x88\x5c\x6b\x59\xcd\x09\x80\x84\x31\x84\x18\x97\xd5\x72\x48\xa5\x1c\x22\x30\xc7\x6c\xca\x6c\xc9\x06\x43\xed\x18\xe2\xbb\xcd\x72\x08\x41\x32\xc6\x68\x6e\x27\x86\xd5\x28\x87\x28\xd1\x2b\x9b\x8c\xb8\xd9\xc8\x24\xc6\x67\xb5\xca\x56\xdc\x8e\x32\x8a\x5c\x6e\xd9\x6a\x33\xad\x93\xa6\x3e\x95\xcf\x9b\x0d\xd6\x99\x21\x77\x5c\xb6\xea\x3e\x1b\xfb\xfc\xac\x56\xd9\x2c\xbf\x00\x2f\xe3\xa5\xe9\x7d\xca\xf5\xcd\x46\x5d\x46\x20\x90\xd9\xba\xdb\x75\xb6\x13\xd3\x6d\x96\x6d\x5a\xe7\x96\x90\xac\xd1\xcc\x78\x5a\xe7\x5a\x7f\x3e\xb7\x6c\x66\x3c\xc0\xcb\x78\x69\x6a\x37\xbc\x66\x83\xed\xa6\xbe\x83\x7c\x4b\xd9\x82\xdb\xe5\x0b\xd7\x48\x83\x64\x64\x23\x73\x91\x7f\x2c\x9b\x75\x8b\x46\x4e\x20\xc0\xc6\x34\x10\x46\x12\x08\x63\x28\xd1\x2b\xdb\xf4\xba\x50\xb7\x50\xc5\xa8\x6c\xd6\x2d\x1a\xfc\x39\x23\x24\x47\xb6\xe5\x35\x23\x97\x08\x31\xeb\x66\x2e\xd1\xe0\xd0\x19\xca\xe6\xca\xb6\xfc\x3e\x72\x10\xf9\xce\xb2\x99\x83\x34\x72\x90\xf0\xde\x35\x07\x69\x08\x5a\x1b\x21\x9d\xa4\xed\xee\x73\xe7\x1c\x9a\xc6\x62\x7d\x85\xa0\x1c\x43\x3e\xb0\x6c\x87\xbf\x03\xac\xb8\x23\xc4\xe4\xdb\xe1\x3e\xc9\x42\x94\xb1\x95\xed\xf4\x58\xc8\x42\xe4\x03\xcb\x66\x5d\x86\x80\x1d\x43\x28\x89\xd9\x2e\xaf\x19\x85\x90\x10\x47\x6e\x66\x21\x04\xe5\x18\xca\xd8\xca\x66\x41\xa3\x51\xd0\x90\xc3\x2a\x9b\x59\x08\x41\x39\x86\x90\x10\xb3\xdd\xde\x9f\x0f\xd7\x53\x32\x6d\x7b\x3c\x87\x87\xef\x93\x9e\xd3\x2d\x4c\x74\x64\xc7\x0d\xa5\x48\x65\xb7\x30\xd1\xa9\xcb\x84\xd8\x67\x37\x0f\xe9\xb4\x87\x28\x7d\x2a\x0d\xd8\x91\x1d\x96\xda\xa1\xb2\x50\xd9\xe5\x2f\xce\x8e\xdc\xfe\x21\xf8\xc1\xec\xe6\x13\x9d\x7c\x22\xc5\xe6\x7b\x73\x9f\x28\x02\x3b\x04\x23\x98\x06\xde\x48\xe0\x6c\xbc\x34\x8d\x53\x68\x95\xd9\x81\x56\x39\xb2\xe9\x7d\xe6\x05\x1d\xe6\xd8\x21\x27\x51\xf6\xee\x71\xd2\x3e\x21\x18\xc1\x34\x80\x46\x76\xda\x19\x52\xdf\xb6\xcb\x27\x9c\x1d\x7e\xdf\xa1\x34\xa8\xec\xe1\x35\x83\xdd\x74\x64\xb8\xcf\xdb\xb4\x87\xb4\x7f\x8b\x92\xc8\x6e\x13\x05\xb1\x37\x46\x6a\xcb\x18\x7b\x23\x3b\x9c\x3a\x23\xc5\xb6\xfa\xf4\x34\x26\x52\x8c\xc4\x0d\xfa\xf4\x2c\xc8\x45\xd2\x3b\xc6\x5c\xa4\x93\x8b\x28\xb9\x2a\xfb\xf2\x50\x68\x69\x50\x72\x55\x76\x45\x92\x25\xb1\x37\xc6\x94\x25\xa5\xef\x7e\x1f\xd2\x81\x86\x7c\x41\xd9\x2d\x33\xf4\x57\xb1\x89\xaa\x3b\xb5\xcb\xe0\x9a\x1d\xc5\x60\xc6\x14\xb3\xeb\x16\x27\x3a\x0f\xfc\x14\x43\xeb\x87\x3f\x04\x4a\x51\x0c\xb9\x7b\xb2\xdb\xb0\x41\x3c\x8f\x31\x75\x17\x77\x1f\xf8\x4e\xe3\xc5\xd4\xc5\xd9\x6d\xbc\xe8\xd4\x48\xe6\x67\xdc\x4e\x03\x7d\x64\xbf\xd8\xa7\x18\x8c\xc1\x3c\xb2\xd3\x90\x29\xb7\x4d\x76\x1b\x2f\x3a\xb5\x07\xb9\x5f\xd2\x80\x1d\xd9\x1f\x8e\x45\xa2\xdb\xf0\xa1\x26\x60\xc7\x10\x76\x5f\x0e\x05\x88\xe4\x40\xd0\xd7\x90\x8b\x25\x87\x62\xe4\x73\xd0\x58\x39\xa7\x69\x97\x69\x7c\x9f\xe4\xac\x51\xfd\x3e\x1a\x32\xa7\x98\x88\x01\x3b\x72\x50\x7b\x90\x3f\x24\x0d\xca\x91\x04\xe5\x18\x72\xa3\xe4\x10\x1a\x75\x12\x94\x63\x28\x83\x2a\x0d\xca\x91\x04\xe5\x18\x02\xe0\xcb\x61\xed\x61\xf0\x50\x2f\x7d\xf7\x31\x3c\x4e\x38\x4a\x86\x8a\x38\xe5\x18\x5e\x17\x04\x81\x0c\x39\x43\x72\x08\x4a\x36\x09\xca\x31\x54\xe0\x29\x87\x35\x0b\xe0\x73\xbc\xb4\x29\x5a\x9a\x86\xef\xae\xec\xaa\x1c\xe1\xb9\x53\xb3\x50\x76\x55\x0e\x05\x73\xe4\x80\xa3\x64\xc8\x19\x92\xc3\xa7\x76\xc0\x15\x3b\x04\xea\x97\x06\xec\xc8\x31\x71\x8c\x96\xb4\x54\x03\x76\x24\x01\x3b\x86\x52\xaf\x72\xf8\x48\x0f\x1a\x2f\x94\x7a\x95\x43\xd8\x92\x39\x90\xe1\x37\x84\xdc\x97\x63\xf7\x77\xa0\xf1\x50\x85\xa1\x72\x1c\x5e\x97\xf7\x5e\x4e\xdb\xe0\x87\xed\x0c\xe3\xe0\xe7\xf3\xf6\xb4\x38\x4f\x2c\x8f\x21\x50\xbf\x1c\xb6\x33\x8c\x93\x4b\xe6\xad\xeb\xa3\x39\x78\x17\x0b\xb8\x2f\xc7\xe9\xcf\xc7\xa3\xb9\xa4\x75\x0c\xdb\x15\x07\xef\xe2\x25\x8e\x35\x2e\xbf\xef\x66\x3b\x6f\xf9\xdb\xed\x90\xa9\x3e\x54\x33\x2a\x0d\xca\x91\x03\xc7\x36\x94\x95\x95\xc3\xa2\x3e\xf0\x39\x5e\x9a\xc6\x62\x51\x1f\xf8\x1c\x2f\xcd\x7d\xfa\xf8\xe1\xb8\xbb\xac\x65\x86\x82\x32\x92\xa0\x1c\xb1\xe9\x38\x84\x95\xfe\x80\xd2\x1f\xfe\x0e\xe1\x7b\x3a\xe0\xb7\x88\x4d\xf6\xc1\xf0\x3d\x1d\x88\xeb\x8a\x4d\xb2\x5b\x54\xf7\x59\xd9\xa7\xb6\x7c\xf8\x9e\x06\x06\x47\x09\x81\xfa\x65\xd8\xff\x00\x0c\x8e\x97\x56\x45\x5b\xa6\xed\xa4\x7d\xdf\xdd\xc0\x1b\x19\xf0\xb6\x86\xfd\x2b\x61\x56\x10\x2f\x2b\x58\xa1\xd3\x10\x8a\x1f\xcf\xe8\x5c\x4e\x89\x7c\x61\x71\x3e\x06\x3f\x91\x38\x72\xd8\xc5\x00\x08\x8e\x12\x76\xaf\x84\xaf\xfe\x00\x27\x08\xd5\xae\xca\x10\xcc\x4e\xc6\x7b\x9b\x2f\x15\x09\xcd\xb0\x34\x1f\xc9\x99\x8b\x91\x87\xbd\x08\x91\x9c\xb9\x18\xb9\xa1\x35\x92\xd0\x1a\xb1\xc9\xea\x1d\xd3\xed\x26\xdb\xe9\x14\x85\x0f\x34\x90\x34\x5e\x9a\x56\xd3\x92\x3e\xa1\x35\x62\xd3\x29\x8a\xe5\x95\x5e\x5c\x69\x59\x3f\xc3\x92\x3e\x50\x36\x4a\x28\x09\x2c\xc3\x4c\x02\x48\x1a\x2f\x4d\xcb\x29\x8f\x69\x12\x22\x23\x94\x04\x96\x86\xc8\xc8\x80\x35\x32\xec\x5d\x31\x44\x46\x06\xb8\x44\x08\x0a\x30\xc3\x17\x78\x20\x74\x2b\x8a\x4f\xc3\xe9\x4f\x04\x2e\x11\x45\x12\x66\x58\x9a\x0f\x44\x82\x87\x3d\x2f\x61\x0e\x12\xe0\x20\x51\x24\x7d\xc6\xe5\xb5\x86\x77\x33\x8a\x04\x86\x30\x07\x09\x70\x90\xb0\xe7\x25\x6c\x1a\x04\xb4\xc5\x4b\xd3\x7a\x9a\x13\xc4\xc3\xf9\xc9\x24\x65\x3c\x8b\x24\x9e\x45\x28\x05\x2c\x53\xd1\x9f\x99\xb8\xdc\x43\x69\x5e\x99\xbe\xdc\x13\xd1\x9f\x61\xaf\x4c\x5a\x9a\xcf\x57\x9a\x8f\x94\x22\x63\xa8\x8b\x04\x7a\x45\x89\xa2\x1d\x9f\x76\x3e\x64\xe1\x52\x8b\xff\xa7\x05\x76\xc2\x59\x84\x9d\x32\xa9\xfa\x4d\x99\x95\xcb\x29\x53\x56\x2a\x3a\x2b\xb3\xf1\x33\xa4\xa6\x60\x81\x9d\x90\x15\x51\x66\xfd\x37\x41\xd8\x88\x16\x99\x9d\xb3\x97\xf8\x92\x0a\xbd\xc8\xec\x9c\x86\xf8\x7c\x5a\x2c\xc8\xf1\x0a\xc2\x8a\xcf\xca\xb4\x9b\x32\x91\x98\x1b\xc2\x09\xcc\x54\x10\x56\x26\x82\xb0\x42\x79\x5e\x99\x76\x69\x24\xea\x5e\x44\x15\x2b\x4f\x25\xdf\x66\xc2\xdd\x18\x55\xae\xc1\x34\x0f\x01\x78\xc5\x4b\xd3\x6a\x5b\x2a\x48\xd8\x0d\xa3\x6a\xa3\xa5\x4d\x02\x44\xb3\x08\xe5\x72\x65\xda\xdd\x98\x08\x9f\x88\x2a\x96\x9c\x66\x06\x49\x66\xa0\x7c\xad\x4c\x1b\x07\x13\x59\xb4\xa1\x7c\xad\xcc\xe5\x39\x2c\xce\x5d\xfc\xd3\x48\x17\x99\xaf\x96\x1f\xe9\x0f\x6f\xcd\x3e\x11\x9f\x15\x55\x96\xa0\xdc\xbd\x09\x21\xcc\x47\x95\x7d\xd3\x00\x19\x49\x80\x8c\x50\x61\xab\x4c\x4b\x13\x79\x70\x39\xa5\x71\xa5\x79\x41\x02\x35\x3a\xaa\x78\x6b\x9e\xde\x11\x3c\xef\xf6\x10\xa5\x25\x86\xbc\xd8\x4e\xda\x74\x5e\x6e\x07\x61\x3e\xaa\x77\x99\x5d\x08\x09\x89\x21\x94\x1e\x96\x69\x61\x3e\x1f\xce\x41\x82\x70\x3e\xde\xb9\x80\xf1\x0a\xa1\xfd\x65\x3e\x5e\x6a\x78\x22\xa3\x49\x9b\x9e\x8a\xc1\xca\x09\x0d\x3d\x94\x02\x96\x53\x71\x56\x39\x21\xe8\x47\x2b\x6e\xa7\xf9\x4d\x40\xe1\x86\x90\x00\x73\x2a\x75\x2c\x81\xb1\x11\x21\x67\xd5\xb4\x50\x30\x5f\xa1\x20\xac\xf3\x4f\xab\x00\x40\xd8\x28\x61\xff\xd0\x34\x2b\x00\xc2\xc6\x4b\x9b\xa2\x79\x24\x94\x25\xec\x1f\x9a\x96\x25\x00\xb9\xf1\xd2\xaa\x68\xc3\xb4\x20\x4d\x33\xb0\x2c\x01\xcc\x8d\x10\x7a\x4b\x4e\x6b\x15\xb3\x73\x98\x32\x6f\x4e\xb3\x88\x49\x79\xc1\x7e\xa3\x69\x13\xdf\x84\x39\x20\xec\xff\x31\x8c\x47\xce\x91\xef\xeb\x74\x64\xa7\xad\x7f\x73\xf0\xdb\x0d\xd3\x3c\xf3\xe0\xec\xc4\x76\xa6\xa3\x15\x26\x2c\x83\xa1\x54\xb4\x9c\x76\x49\xcc\xe4\xcc\xc5\x74\x0d\xff\x91\x33\x39\x05\xdd\xfb\x53\xd1\x57\x39\x27\xdb\xc9\x2e\x3f\xa7\xbf\x10\x59\x84\x50\x00\x73\x9a\x45\x4c\xb2\x88\x26\x29\xd8\xd0\x20\x49\x68\x90\x68\xde\x2c\xcb\xef\x83\xf5\x2f\x94\x01\x96\xd3\x8a\x3b\x21\x3e\x42\x59\x5e\x39\xcd\x07\x26\xf9\x80\xb2\xbc\x72\x5a\x26\x98\x94\x09\x94\xe5\x95\xd3\xda\xc1\x84\x17\x32\xec\x52\x9a\x4a\x98\xcf\xc9\x7b\xbf\x4b\xd2\x9d\xa7\x3f\x1f\x22\xa5\xa2\x4b\xf1\x9b\xa7\x37\xfc\xc9\xb1\x78\x57\x5f\xde\x4a\x48\xb4\x0f\x55\xed\xca\x69\x17\xe4\xbc\xd8\xa7\x77\xb5\xe2\x3b\x93\xd0\x20\xd1\xa5\xf8\x19\x1a\x24\x09\x0d\x12\x76\x45\xcd\xdb\xbb\x1a\x0e\x84\x10\xb2\x60\xce\xdb\x6b\x8d\xd8\xcf\xb0\x2b\x6a\x9a\xef\x4c\x58\x06\xc3\xae\xa8\x69\x19\x04\x08\x22\x25\xec\x8a\x9a\x36\x30\x4c\x44\x51\x85\xfd\x4d\xf3\xf1\x1c\xc8\x93\xec\x6f\x9a\xf6\x4a\x10\x6e\x24\x94\x55\x96\x86\x1b\x49\xc2\x8d\x84\x20\x09\xd3\x70\x23\xb9\xe0\x95\x08\xa5\x95\xe5\xb2\x57\x62\x15\xae\x99\x78\xf5\xb2\xd1\x62\x51\x78\xb1\x2f\x6a\x29\x7b\x3f\x17\xb5\x98\x2e\x99\xd5\x30\x25\x49\x2c\x92\xe8\xf2\xe6\x2f\x47\x4e\xac\xca\xb9\x6b\xcf\x2f\xbb\x3c\x57\xe3\x3e\xd3\x9e\x5f\xf6\x4a\x10\x8b\x24\x94\x1e\x96\xc6\x22\xc9\x05\x0c\xaf\xb0\xc3\x69\xd9\x12\xb9\xa8\xe1\x08\x5a\x30\x97\xd5\x18\x62\x8a\xc4\x10\x7f\x59\xc3\x73\x1f\x6c\x57\x35\x4e\xf3\x1e\x62\x8a\xc4\xd0\xde\x35\xa6\x48\x02\x53\x24\xac\xaa\x2c\xdb\x33\x80\x20\xf2\x36\xd3\x72\x5a\x72\x59\x30\x60\x86\xd2\xbc\x72\x99\x2d\x2d\xb2\xa5\x21\x05\x6e\xd9\xe3\x49\xf8\x8f\x10\x42\x60\x2e\xbb\x35\x17\x25\x17\x3b\x8e\x96\x25\x97\x35\x39\x05\x6d\xdd\xe5\x80\x0b\x62\x83\x84\x2a\x84\xe5\xb2\xcb\x13\x70\x1f\x2f\x4d\x9f\xd6\xaa\xca\xda\xb9\x64\x12\x09\x96\x4d\x8d\x6b\x67\x3b\x6f\xa5\xfd\x4f\xbb\x8b\x34\x7d\x5a\x3b\x1e\x00\xe9\x51\x62\x48\xfd\x59\x0e\x80\x58\x27\xdf\xe7\xad\x74\x7a\x9b\x91\xf5\x8c\xe5\x76\x3a\x46\x0b\x41\x9a\x31\xd6\xbf\x41\xa9\xe5\xb2\xfb\x72\x21\x86\x33\xc2\x3b\xcd\x9c\x69\x21\xc6\x2a\x94\x3f\x95\xcb\x5a\x0e\x21\x40\xc2\x7e\xa5\xe5\x18\xab\x45\xae\x25\x24\xc0\x5c\xaa\x6e\x9b\x8b\x9a\x8c\xdd\xb3\xcb\xd2\xcb\x42\x32\x7d\x28\x47\x2a\x97\x39\xc5\x22\xa7\xb0\x9f\x67\xb7\xff\x72\x47\x90\x43\x84\x62\x31\x77\x6b\x32\xfb\xc6\x3e\xc5\x41\x77\x73\x8a\x1d\x49\x28\x61\x1f\xd0\x2e\xb0\xf0\x24\x04\x48\xd8\xcf\xb3\xdb\xb7\xb9\xc3\x67\x11\xca\x83\xca\xdd\x2a\x10\x31\x40\xc2\x46\x86\xdd\x31\x9c\x3b\xe5\x1e\xe5\x41\xa5\xf1\x41\x72\xaf\x6c\xa7\x2d\xba\xdb\xb7\xb9\x93\x8b\xd8\x07\xb4\x37\xb7\xa3\x6c\xa3\x84\xa6\xdc\x2d\xc0\xec\xe4\x14\xaa\x94\x95\x7b\xf7\xba\x50\x80\xb1\x0f\x68\x77\x6c\xd6\x3e\xf8\x3e\xd9\xc0\x76\x2b\x39\xfb\xe0\xfb\x14\x18\xb2\x9b\x8b\xec\xf1\x6b\xf7\x1d\x41\x83\x75\xe4\x0e\x5f\x47\x28\xf9\x28\x77\x9b\x37\x77\xf8\x33\x42\x30\x79\xb9\xdb\x61\xb1\x23\xc7\x2d\x04\x93\x97\xbb\x25\x98\x3d\xd7\x7f\xff\x93\x9b\xa7\x6e\x2e\xb2\xc3\x2a\x1a\x29\x81\x76\xb7\x31\x64\x27\x37\x48\x5d\xe2\xbb\x92\xe9\x73\xa7\x00\xa3\xdc\xa3\xdc\xad\xe3\xec\x40\xec\x0b\xbb\x8e\x76\xeb\x38\xc4\xdc\x88\x14\xb7\xdb\x1d\x7e\xb5\x53\x91\x49\x6f\x41\x1b\x35\x88\x9d\x11\x29\x19\xd3\xd8\x19\xb9\x23\xd4\x3b\xd2\x5b\xd0\x41\x0e\x80\xd1\x78\x69\x5a\x32\x1b\x3c\x76\x1a\x3c\xac\xbd\xef\x56\x72\xf6\x93\xcb\x29\x6e\xbe\x5b\x80\xd9\x2f\xbe\x4f\x97\xf1\x7e\xf9\x7d\x14\x52\xec\x37\xda\xed\xa2\xdc\x69\xd4\x48\x85\x54\xee\x76\x51\xee\x64\x05\xaa\x4e\x95\xbb\xbd\x19\xfb\xcd\x39\x78\x0b\xde\x9e\xc3\xcd\x6f\x24\x13\xed\x6e\x21\x65\xa7\x02\xa4\xea\x54\xb9\x3f\xee\x93\x26\x53\x3b\x95\x76\x0b\x22\x3b\x05\x91\x14\x77\x35\x1e\x47\x1e\x1b\xc7\xa9\x8b\xfa\xb0\xe2\x74\xbc\x9c\x26\x85\x1f\x9f\x87\x23\xbd\x09\xc7\x11\xca\x59\xca\xc3\x91\xde\x07\xb9\xcb\x14\x87\x3c\x1c\xe9\x7d\x50\x0e\x11\xd2\x5f\x1e\x56\x9c\x08\xc7\x11\x53\xdc\xf3\x30\x07\x39\x28\x87\xd8\x51\x75\x98\x4b\x1c\xe4\x12\xc2\xce\xcf\xc3\x5c\xe2\xa0\x35\xd5\x4e\x2c\x43\x6e\x24\x10\x36\x5e\x9a\xda\x39\x2a\xfb\xa0\x25\x44\x79\x49\x79\x58\x27\x39\x10\xad\x10\xca\x4b\xca\xc3\xa7\xfd\x40\x04\x75\x4c\x71\x41\x43\x67\xe4\x11\x9c\x9f\xb8\xe0\xe1\x28\xcd\x23\x39\x07\xe9\x39\x86\xce\xc8\x23\x39\x4e\xe9\xee\x47\x7a\xcd\x92\x7d\x4a\x1e\x34\x74\x46\x1e\x93\xed\xa4\x03\x1d\x16\x1a\x0e\xda\x45\x95\x5f\x94\xc6\xd5\xc8\x63\x72\x7e\xda\x9e\x87\x7d\x97\xc0\xd5\x78\x69\x1a\xcb\xf2\xfc\xc8\x0a\x94\x5f\x94\x87\x23\xa8\x89\x90\x11\xaa\x4c\x95\x87\xed\x1d\x07\x85\x8d\xa9\xa8\xd0\xc3\xce\x93\x63\xcf\xff\xfe\x27\x85\xfa\x92\x87\x55\xa0\x83\x66\x51\xfb\xd3\x8e\xc3\x5b\xf0\xe0\x30\x65\x91\x3a\xac\x1e\x1d\x54\x8f\x94\xb2\x94\x87\xb2\x5d\xf3\x40\x90\x43\x2c\xbf\xcf\xea\xd1\x41\x0e\xa2\x62\x57\x79\x9c\xde\x2e\x94\x43\xec\x4f\x3b\x2e\x6f\x41\x72\x90\xa5\x8b\xff\xb0\x9a\x03\xac\x8c\x12\x4a\x20\xca\xe3\xf2\xfc\x6e\xf6\x29\xa1\xc0\xe0\x19\x79\xdc\x1c\x8b\x84\x82\xe3\xf6\xfc\x5e\xf5\x28\x9b\x5f\x67\xc6\x73\xdc\x1c\x8a\x34\xae\xc3\x8c\xe7\xa0\x15\x76\xc9\x8e\x70\x38\x40\x13\xf0\x1b\x2f\x4d\x43\xb1\x55\xe6\xa0\x76\xb4\x24\x4b\x1c\xd6\x8e\x0e\x5a\x68\x97\x34\xb5\x53\x90\xa6\x79\xd2\x0a\x6b\x17\xdd\xa9\x1c\xfc\x3c\x29\xbb\xa8\xee\x56\x9e\xca\x7e\xcb\x13\x80\x3e\xa1\xe2\x5a\x79\xda\x2a\x73\x92\x83\x28\x27\x29\x4f\xcb\x19\x27\xcd\xb0\xf6\xa7\x9d\xd5\xef\xa3\x26\x63\x7f\xda\xa9\x3c\xfb\x24\x58\x47\xd8\x9f\x66\xb0\x8e\x24\x58\x47\x2c\x59\xb2\x4e\xdb\x59\x4f\xca\x19\x42\x32\xcc\xd3\x8e\x95\x13\xce\x93\x54\x1e\x50\x9e\xe3\x32\xed\x06\x4d\x1a\xfa\xe9\x58\x28\x82\x6e\xa4\x7d\x51\x06\xdd\x48\x60\x6c\x94\xdc\xea\xf6\x6f\xa2\xf0\x69\xe6\x73\xc2\xcb\x9a\x4e\xf7\x39\xd3\xdd\xc2\xf1\x92\x9b\x98\xe4\xe9\x38\xcc\x73\xf2\x95\xda\x16\x06\xd7\xc8\x13\xf2\x44\x3a\x6d\xe7\xb4\x3c\x71\x42\x9e\xc8\xcd\x9f\xd7\xf2\xc4\xb9\xb8\x34\x52\x9a\x4f\x87\x43\x9d\x3b\xc7\x29\x46\x78\x9a\x51\x9c\xd0\x4a\x72\x93\x05\xfe\xb4\x56\x72\x42\x2b\xf9\x23\x2f\x19\x78\x23\x09\xbc\x91\x42\x02\x4c\x23\x6b\xe4\x79\x70\x7e\x62\x92\xa7\x5d\xb0\xe7\xc1\x71\x7a\x5b\x38\x54\xea\x3c\xae\xf7\x04\x4a\x09\x3a\x6d\x7f\x01\x36\xc7\xdb\x4c\x34\x33\x98\xf3\xe4\xb2\xe8\xea\x3f\x2d\xa2\x00\x9b\x23\x9b\x04\xd3\xd3\x3a\xd0\x79\xfd\x9a\x69\x24\x96\x50\xce\x8b\xa3\xd4\xed\x7e\x5a\x42\x01\xfc\xc6\x4b\x53\x3b\x9b\x51\x4e\x98\x4a\xb2\x48\x01\x3a\x1f\x0f\x05\x81\x52\x29\xfc\xc0\xbc\xac\x74\x00\x47\x63\x55\x7d\xf4\xcb\xd6\x54\xc0\x68\xbc\xcd\xbe\x85\xbe\xec\x63\xbd\x60\xb9\x48\xc1\x0e\xe6\xe5\x90\x0a\x40\x65\xbc\xb4\x6f\x93\x5d\x76\xad\x5c\xc8\xff\x4a\xe7\xe5\x18\x3b\x23\x2f\x94\xf2\x4c\x15\xa6\x4a\x63\x67\xe4\x55\x39\x3d\x6d\xdc\xcb\x12\x03\xf1\x31\xb2\x88\x9f\x5d\x76\xbb\x5c\x8d\xed\x74\xf3\x5f\xd6\x2b\xae\xce\x65\x91\x1a\x7e\x0d\xcf\x0f\x16\xce\x2c\xe2\x59\x97\x9d\x20\x17\x74\x87\x2c\xda\x80\x97\xa5\x09\x62\x67\x64\xd1\x06\xbc\x6c\x66\x20\x3e\x46\xda\x3d\x74\xf9\x40\x03\x2a\xa3\x64\xd1\x4e\xba\x9c\xf3\x01\xa8\x8c\x97\xa6\x75\xb1\xf3\xe4\x9a\xbf\x76\xea\xd3\x61\x13\xd7\x64\x3b\xf1\x33\x63\x60\xe4\x35\xb9\x2e\xda\x4a\x97\xcd\x0c\x17\xd0\x72\xb2\x8a\xd7\x5d\xb6\x8c\x5e\x3c\xec\x76\x0e\x5d\x76\x90\x5c\x3c\xec\xce\xd9\xb9\x1c\x09\x75\x41\x62\x48\x87\x3b\x5d\xbb\xbf\x03\xc2\x2d\x52\x85\xa2\xf2\xf2\xd5\x4f\xa0\x8b\xac\xba\x6e\x2f\x2b\x08\x04\xb3\x48\x3b\x87\x2e\x87\x48\x5f\xf0\x90\xa4\x0a\x45\xa5\x81\x2e\xf2\x42\x28\x54\xd6\xe6\x3e\xbd\xcf\x20\x16\x64\xf5\x3e\x73\xb8\xd3\x75\xb1\x4f\xdd\x8d\x06\xba\x48\x02\x5d\xa4\x1d\x47\x97\xad\x9f\xd7\xcd\xb9\x4b\xc9\xb9\x1c\xfb\x78\xdd\x5c\x4f\x49\x98\x97\xad\x9f\x17\x8f\xb4\xaa\x48\xe5\x65\xe5\xe1\x82\xf2\x90\x55\x0a\xd0\xe5\xe3\x4e\x10\x8c\x74\xde\x91\x41\x30\xf2\xde\xb8\x9e\x32\x13\xdd\xd6\x10\x6e\x9e\xf7\xaa\xa0\x3a\x83\x60\xe4\x5d\xf8\x8d\x24\x61\xde\xf6\x91\xdc\x95\xfb\x65\x9a\xd6\x4d\xe3\x9a\x49\x52\xbc\x7d\xde\x6f\x9e\xf7\xaa\xfd\x79\x5b\x43\x00\xe6\xc5\x4b\x53\x9f\xd6\x02\x6e\x60\xde\xa4\x3d\x47\xb7\x2d\x8e\x37\x34\x84\x14\xb0\x60\xde\x76\x84\xdc\x48\xb2\xc8\x26\x71\xf0\xb6\xb3\x03\x00\x15\x25\x9b\x78\xdd\x6d\xab\x22\x51\x29\xd2\x3e\xa0\xdb\xbc\xe0\x0e\xf6\xa9\x8b\xf8\x36\x2f\xb8\x79\xbf\x37\x5d\xc4\xb7\x6d\x05\x37\x8a\x8e\x65\x93\x83\xf2\xf6\x79\xbf\x93\xed\xc4\xcf\x6e\x9f\xf7\x1b\x9e\x90\xb4\x33\xe7\x76\x54\xc5\x3d\x39\x16\x29\xda\xf7\xf4\x58\x66\x92\xa6\x3e\x7d\xde\x6f\x9e\x77\xd5\x89\x4a\x23\x56\xe4\x8d\x38\xe8\x6c\xde\x4b\xf6\x84\xdc\xf0\x84\xa4\xbd\x39\x46\xa5\x48\xa0\x52\x44\xf1\x27\xb2\xce\x7f\x23\x4a\x31\xed\xe8\xb9\x7d\xa4\xef\xf7\x6e\xfd\x13\xff\x70\x3b\x8e\xe1\x7e\x0f\xe9\x9f\xf0\x87\xdb\x46\xbc\xfb\xbd\x22\xff\x44\x38\xdc\x8e\x1f\xbe\x5f\x91\xf8\x4f\x80\xc3\x6d\xf3\xde\xfd\xe0\x5d\x32\x9f\x18\x1f\x22\xef\x57\x0a\x0e\x5f\x52\x8f\x85\x60\x20\x45\x44\x11\x5f\x31\x3a\x44\x02\x1d\x22\x54\x3b\x31\x1f\x87\x15\x3f\x1b\x06\xaf\xaf\xfd\xf8\x26\x05\x36\x44\x14\x59\x55\x1e\xab\xd0\x4f\xcd\x97\xa4\xbb\xf9\xb1\xef\xf1\xa9\xd7\x4b\x12\x6b\x78\x7c\x74\x1e\x20\xfa\xfb\xe6\x7a\x9a\x87\xd1\xb9\x43\x24\xcb\x3c\x96\x7e\x81\xfd\x90\x42\xe6\x4f\x43\x3f\xe4\xd3\xb9\xe9\x24\xaf\x18\xa4\x21\x09\xd2\x90\x76\x95\x3d\x3e\x38\x0f\x05\x63\xbb\xca\x1e\x1f\x0e\xe0\x2e\x94\xec\x5b\xfb\x37\xe1\xf7\x71\xbc\xf1\xc3\x7b\xd4\x9e\x34\xe3\x34\x24\x71\x1a\xb2\xeb\x0e\x7a\x7c\x76\x00\xd9\xf0\xd2\x34\x0d\x9f\x9d\x87\xf7\xa8\xbd\x65\x8f\x4d\xf9\x0f\xb4\xf2\x74\xe2\x96\x71\x1a\xf2\x81\x76\x9d\x4e\xce\x7a\x9c\x03\xf9\xc0\x5c\x9f\xdd\x1b\xc2\xe6\xfa\x07\xe1\x87\xd9\xfd\xd9\x77\xbf\x6f\x67\x9f\x72\x2b\x18\x8b\x21\x1f\x20\xba\x64\xf7\x9e\xb0\x60\x0c\x2c\x86\x3f\xe7\xea\x71\xd4\xe2\xc3\x6b\xd4\x0e\x31\xc3\x2d\xe4\x43\xb9\xb8\x7b\xc3\x58\xc0\x7d\x28\xe0\xda\xb1\xf5\xd8\xc1\xf8\xf0\x1a\xb5\x63\xeb\x71\x1e\xe3\x83\xd0\xc4\xec\x32\x44\x19\x6e\x21\x09\xb7\x90\xc2\x4b\x4c\xc3\x2d\xe4\x73\x71\x7a\x92\xd1\x0d\xa9\x90\xcf\xcd\xb1\x48\x0c\x7a\xac\x26\x3f\x50\x93\xd3\x4e\xaf\xc7\x57\x2c\x21\x15\xd2\x09\x58\x8f\x55\xe1\x87\xd7\xa8\xf0\x12\xf3\x71\x68\xe2\xc3\x6b\x54\xf5\xb4\xa6\x21\x15\xe6\x06\x75\x37\xc7\xc7\xdf\xe6\x26\xb1\x79\x6e\xbc\x46\xe5\xf4\x9a\x9b\x1c\x77\x73\x2b\x58\x6b\x65\x59\xcd\x4d\x62\xf3\xdc\x28\x36\x8f\xa2\x3e\x25\x36\x4f\x20\x28\xbc\x34\xf5\x29\x20\x98\xb9\xbd\x5c\xc2\x92\xf8\xdc\xc4\x0a\xe6\xc6\x5b\x74\x98\x26\x4d\x78\x02\x24\xe1\xa5\x8d\x8f\xa6\x34\xc6\xb9\x91\x4f\xc8\x21\x36\x37\xf1\x89\x09\x90\x84\x92\xa3\xa9\xcf\xee\x65\x41\x0d\x81\x54\x19\xae\xb9\x75\x2f\x0b\x6f\x5f\x65\x67\xcd\x4d\x8c\x62\x6e\xbc\x61\x95\x81\x35\x8d\x7e\x30\x37\xde\xa2\x72\xa4\xcd\x2d\xdc\x2e\xb0\x5d\x94\x2d\x35\xb7\xf4\x52\x23\xac\x28\x05\x50\x38\x8d\x62\x30\x37\x04\x1b\xa7\x32\xa2\xe6\x36\xfd\x19\x78\x1b\x8e\x6f\xeb\xce\x6d\x79\xee\x8b\x73\x4f\xb5\x93\x3a\x3b\xb7\x9d\xe3\xfc\xb6\xe7\xdc\x0e\x7f\x22\x64\xf0\xa4\x32\xa2\xe6\xa6\x0c\x9e\xb9\x1d\x5c\xb3\xa5\xf7\x9d\x5e\xcf\x93\xdb\x65\x69\x5d\x4e\xaf\xcb\xc5\xb1\x78\x7b\x5e\xa6\xc1\x10\x95\xe1\x2d\xa8\x63\x34\x89\x2a\x90\x42\x0c\x9c\xdb\xed\xf7\xbd\xa7\x26\x94\xcb\x37\x0d\x0e\x30\x09\x0e\x90\x2a\x7d\x35\x0d\x0e\x30\xcb\x56\x48\x5b\xa2\x35\xd3\xb0\x73\x55\xfa\x6a\x16\x9f\x22\x82\x0a\xa4\x12\xa9\xa6\x41\x05\x66\x41\xc6\x6f\xca\xc1\x36\xcb\x76\x99\x76\xbf\xc3\xfc\xe4\xa3\x59\x64\x91\x9e\x05\xf6\xa4\x54\x55\xac\x59\xe4\x19\x9f\x05\xf1\x3a\x29\x0c\xc2\x59\xaa\xbb\xa4\x7e\x29\x3f\xd9\x2c\xcd\x53\x00\xa6\x40\x2a\x57\x6a\x16\xe1\x8b\xcc\xd2\xf8\xbe\xa1\x3e\x9b\xdf\xc7\x93\xa2\x5c\xa9\x59\x86\xa7\x3e\x38\xf5\x50\x9f\x0a\xd4\x9d\x65\xe0\x2b\x7c\x01\x0a\xb3\xf8\xa0\x00\x5d\xa0\xa4\xb0\xfd\x66\x11\xbe\xeb\x2c\xc1\x95\x4e\x4d\x21\x4d\x4b\x7e\x74\x6d\xce\xa2\x2b\x73\x12\x52\x20\xe5\x26\x9b\x25\xbd\x9c\xef\x95\x19\x02\x00\x9d\x65\x7a\x55\xe6\xaf\x99\x66\x30\x3d\x4c\x6a\x97\x0a\xb6\x9a\x65\x79\x28\x8b\xed\xb4\x6f\x8b\x6c\xce\xb3\x00\xbd\x28\x73\xd3\x8a\xc9\x35\x35\x0b\xf2\x6c\x32\x37\xbd\x4f\xda\xe5\x2c\xd4\x2e\x05\xed\x37\xcb\xee\xb1\x1c\x6c\x27\xb6\x5a\x0e\xb7\xe3\xd9\x4b\x6f\xce\xd3\xb4\x93\x7d\x56\xbd\xcf\xe7\xb2\xc0\xc1\x9d\xe9\x5d\x76\xf9\x30\xf0\x7a\xcb\xa6\xb9\x5f\x1e\x0b\xaf\x37\xb9\xc9\xa6\x53\xf1\x67\xb9\x39\x4e\xf1\xb9\x72\x7b\x2c\x34\xfc\x08\x86\x6f\x96\xdb\x6b\xf6\xb0\x9d\xb7\xcb\xe3\x6f\xf4\xde\x74\xdd\x6c\xd5\x59\xfa\xb3\x3c\x9c\xba\x3e\x6d\x95\x8c\x3b\xeb\x56\x5f\x41\x42\x33\xa8\xd2\x11\x67\x7d\x4f\x61\x6b\x9f\xdc\x39\x9d\x87\x3f\x99\x87\x9f\xf2\xbb\xcd\x2a\x17\xf5\x64\x1e\x7e\xe6\x67\xca\x9d\xb5\xfa\x6d\xef\x35\x97\x0a\x5d\x9b\x55\xda\xe3\x64\x8a\x7e\xca\xb5\x36\x9d\x86\x3f\x91\x86\x6f\x85\x66\xd6\xe6\x41\xf2\x50\xe6\x34\x4d\x87\xb2\x22\x51\x36\x53\xec\xb6\x76\x8f\xb2\x73\x99\x3f\x30\x9d\x59\xbb\xfb\xec\xfc\x74\xda\xb6\x55\x81\xb6\xb3\x02\xd8\x27\xe7\xa6\xd9\xf9\xc4\x56\xca\xc0\x72\x91\xcd\x1a\x6e\x47\xe3\xf0\x2c\xff\x06\x14\x31\xab\x6c\x49\x13\x79\xfe\x25\x85\xfa\x37\x6b\x78\xa8\x94\x8f\xe5\x41\x9b\xd5\x87\xbd\x52\x3e\x56\x1a\xd8\x74\x02\xff\x64\x02\x7f\xce\xcf\x9e\x32\xeb\xf4\x50\xa9\x5b\xca\xf3\x36\x9d\xa5\x3f\x2b\x39\x81\xd0\x02\xa7\x33\xf1\x67\x5d\x7c\x9f\x78\x75\x15\x0e\xc8\xac\xb4\x25\xcd\xae\x76\x92\x81\x67\xa5\x0c\x2c\xb4\xc0\x59\x7d\x9b\x56\xde\xa6\x73\x68\xee\x87\x3f\x2f\xad\xb5\x53\xa7\xa1\x9e\xee\x93\xf6\x22\x15\xfc\x9a\x4e\xa9\x9f\xf5\xfc\xf5\xa9\x71\x9e\x5e\x97\x57\xf3\x34\xe4\xd1\xac\x97\x3f\xc3\xc5\xcf\x20\x21\xa3\x2a\x48\x7e\x22\x49\xfe\xa5\x69\x39\x6f\x7f\x22\x9a\x76\xa6\xf8\x78\x7d\x3c\xcc\x87\xc3\x4c\x4d\xc1\xa7\x96\x19\xf5\xa9\x2c\xb7\x59\x1f\xf7\xc9\x1b\x7a\xea\xb0\x34\x05\xcd\x4e\x64\xc9\xbf\xb4\x6f\x67\x37\x99\x76\x66\x2b\x7c\xdf\xe7\x87\x9e\x4d\x41\x68\xb3\xbd\x47\x78\x28\x96\x7f\x3a\x6b\x7e\x36\x44\x96\xe4\xfc\xf2\x1f\x66\xb3\x28\xdb\x68\xf5\x99\xe2\xff\x4d\x28\x5f\xb3\xd1\xea\xa3\xe4\xb8\xd9\x9a\xdb\x21\x48\x3e\x95\x00\x37\x9b\x22\x44\x26\x92\xdd\x5f\x9a\xda\x59\x26\x6d\xbc\x69\x95\x00\x37\x5b\xf7\xd4\x79\x70\x55\x5e\x6c\x36\x25\xc7\xcd\x46\xab\x8f\x1c\x76\xb3\xf9\xe0\xb6\x81\xaf\x2e\x56\xdd\xc2\xc3\x7c\xc5\x4e\xe3\x32\xcd\xa6\x70\xb1\xd9\x78\xbe\xe4\x93\x9b\x2d\x3d\x73\x3a\x66\x96\x38\x5d\x93\x63\x66\x36\xea\x98\xf2\xbb\xcd\x26\x24\xd2\xd9\xe8\xb4\x11\x16\xe0\x6c\xbe\x69\x99\xfb\x9e\x4a\x8d\x9b\xce\x7d\x9f\x0d\x08\x19\x29\x9f\xdc\x6c\x96\x64\x99\xfb\x9e\xc2\x10\x9c\x6d\x79\x9c\xb4\xf9\x2c\x5d\x0d\xce\x61\x9f\x6d\xe7\xfc\x42\x5f\x41\x39\xec\xb3\xed\xfc\x7a\xba\x00\xda\xe1\x76\xef\xa5\x3b\x54\xe3\x66\xb6\xc3\x53\x3f\xd8\xcc\x34\x1f\xd9\x46\xfd\x53\xae\xbc\xd9\x4e\x6f\x40\xea\x9f\xcb\xfb\xfd\xf4\x17\x3a\xf9\xd1\xa7\xa6\xee\x0b\xba\x21\xc0\x35\x97\xcf\x82\xcf\x73\xa3\xf7\x45\xa9\x71\xb3\x59\x70\x66\x0a\x7b\xaa\x98\xd9\x6c\x42\x43\x9f\x8d\xfa\xe7\x5a\x9a\xfa\xed\x4f\x84\xb3\x3e\xe5\x3a\x9c\x4e\x61\x9f\x0d\x21\x66\x53\x30\x81\xb3\x3d\x9e\xdf\x7b\x43\x0f\xa5\x53\xcc\xf6\x78\x4f\x23\x3c\x64\x6e\x7f\x68\x5e\x4e\xb0\x81\x29\x04\xc1\xd9\xe5\xa5\x9d\x1d\x19\x75\x73\xfb\x2c\x65\xb3\x9b\x0d\xf4\xc2\xa1\x48\x16\x42\xba\xfb\xf7\x78\x90\x96\xa2\xe9\x7d\x48\x74\x2f\x53\x99\x71\xb3\xfb\xfe\xee\xaf\x96\xea\xca\x38\xb3\x9b\x0d\xf4\xca\x2e\xa5\x0e\x76\x0b\xe3\x1d\x6a\xeb\xab\xac\x7e\xb4\xe6\x61\x22\xc7\x66\x2a\xc3\x6d\x76\x25\xe2\x4d\xe4\xce\xbf\x34\xf5\x69\x75\x97\xc9\xf4\x53\xc0\x83\xb3\x37\x4f\x01\xec\x63\x2a\x33\x6e\x76\xab\xb4\x1d\xc0\x60\x53\x1e\xcc\xd9\xcd\x5a\xfa\xe0\x38\x43\xed\x14\x59\x3f\x3b\x82\xcf\xa6\xc0\x05\x67\x1f\x9e\x5f\xb0\x5d\x6a\x0e\xe1\xf7\x05\xdf\x97\x7a\x9f\x2f\x68\x64\xb6\x97\x29\x90\xc0\xd9\x2d\x8e\x33\xb5\x7d\xca\x6f\x38\xbb\x19\x48\x7f\x19\xc8\x90\x0f\x65\x76\xf3\x88\x0e\x6d\xf7\x55\xe6\x3e\x9a\xec\x57\xb3\xe3\xee\x9e\xca\x54\x9b\xdd\x77\x37\x33\xe2\xa7\x4a\x99\xcd\xbe\x3c\x3d\x44\x8e\x4c\x95\x32\x9b\xdd\xf7\x7a\x87\xfd\x6a\x16\xef\x4e\x81\xa1\x4f\x64\xb9\x97\x29\x3c\xbf\xd9\x7d\xe7\x77\x18\xb0\xe6\xff\x66\xec\xcd\x71\xf7\xc9\x95\x24\x41\x7d\x4e\x91\x37\x98\x20\x83\x8b\x9b\xf2\x94\x91\xa7\xef\xc0\xe0\x02\x94\x50\x55\x0f\xaf\xab\xee\xdf\xa0\x7b\x7e\x66\xd9\x8d\x16\x52\x48\xe0\x97\x7f\x47\xf0\xe3\xea\x34\xdf\x8c\xac\x38\xb3\x22\x25\x51\xfc\x5e\x37\x3a\x5e\xad\xe8\x5e\x2f\x8e\xd4\x2d\x69\x9b\x4d\x2d\xbb\x67\xc1\x5b\xa2\xce\x2d\x4b\x3b\xd7\xad\x6b\x63\xdc\xd0\xca\xd2\x74\x7a\xac\xc7\x92\xb6\x99\x50\x7c\xd9\x31\x9f\xd4\xb9\x2a\x89\xb7\xb2\x63\xce\xa8\x73\xcb\xd1\x77\x27\x64\xbf\x60\xb8\xa9\xec\xdd\xa2\xb4\xdd\xa4\x3c\xab\x4c\xe1\x9a\x62\xae\x7f\xae\x59\xab\x02\xdd\x35\xc5\xfa\x51\x99\x55\xdd\xde\xd5\x6f\x6f\x63\x6c\xd0\x2a\xf3\x42\xcd\xab\xe3\xaf\xec\xa7\x94\xaa\x4e\x74\xf5\x9c\x0c\xe3\x03\x61\x56\x99\x5d\x6e\xd5\x6f\xf6\x6b\x3d\x50\xc6\xb9\xae\x9e\xfb\x69\x2c\x1c\xb3\xaa\xe3\x57\x3d\x9e\x73\xcd\x85\xbf\x07\x83\xab\x2e\xfe\x1a\x27\x37\xf3\x72\xaf\x45\xc3\xf0\xf0\xae\x65\xc2\xe0\xca\xb4\x51\xab\xee\x8c\x32\xd2\x04\x5a\x25\x7d\xb0\xd5\x1a\xdf\x51\xa1\x55\x39\xa3\xa2\x62\xfe\xda\x1e\x3f\x59\xd3\x74\xbb\x47\xdb\xa4\xed\xaa\x1c\x55\x5e\x20\x9f\x8c\xa1\x43\xab\x4d\xc3\xef\xd1\x26\x35\x5a\x15\x5c\xaf\x3d\xa6\x8d\x5a\xab\xca\x36\xaf\x3d\xfa\x49\xad\x55\xbb\xfa\xe9\xd9\xe7\xc6\xd0\xa1\x55\x39\xb8\xa2\x2a\xde\x18\x1e\xb4\x2a\xe3\xbc\x22\xbe\xe3\xf5\x5e\xa5\x0e\x2a\x62\x79\xe9\x34\xab\x3a\xf2\x15\xd1\x26\xed\xbb\x3a\xb4\x7d\x47\xb4\xa9\xed\x2b\xe3\xbc\x8e\x18\x03\xef\xf0\xca\xe2\x38\xf3\xca\xfa\x2b\xe3\x18\x3e\x7d\x37\x63\xcb\xd0\x8a\xab\x52\x07\x35\x8e\x3c\xdf\x24\xb3\x3a\xb5\xb6\x5e\x1c\x67\x0c\x1d\x5a\x5d\xfa\x3d\x7f\x25\xc5\x5e\x6d\x51\xfa\xac\xad\x3a\x2e\xb0\x97\x2a\xad\x2e\xad\x9f\x3b\xd4\x8c\x45\x67\x56\x85\x0b\xaa\xe3\x02\x7b\x79\xa9\x56\xe1\x82\x28\xa7\xb7\x97\xa6\x58\x3d\x3a\x4a\x27\xbe\xd3\x3e\x13\xce\x8f\x92\x79\x63\xe8\xd0\x9a\x54\x45\x7b\xa2\x4d\xde\x9c\x4d\x97\x7f\x73\x9f\xb5\x31\x74\x68\x4d\x66\x7d\x0b\x35\x42\xfe\x40\x6b\x02\x06\xcd\xd3\xb7\xec\xe5\x3e\x6b\x4c\xdf\xb2\x16\x6a\xe4\xfd\x55\x24\x58\x93\x1a\x89\x52\x7b\xe3\x43\x60\xd6\xe4\x8a\x6b\x4e\x97\x63\x0c\x2b\x5a\x93\xaf\xbb\xb9\xf1\x60\xe4\x0f\xb4\xc6\xb0\x97\xb5\x1c\xeb\xd7\x38\x3e\xa9\x98\x28\xc3\x37\xf2\x07\x5a\x93\x61\xd1\xde\x98\x33\xfa\xb8\x9a\x9c\xdd\xad\x44\x9b\x54\xa1\xad\x6a\xec\x35\xe6\x93\x56\x7f\x63\xc8\xd8\xbc\xb4\x3e\x59\x21\xae\x53\x3d\xbd\x45\x3d\xbd\x15\x5e\x8f\xad\x69\x7c\x9e\x70\x6a\xe4\x16\xb4\xd6\xb4\x46\x6e\xd6\x1b\xc3\x57\xd6\x9a\xe6\xcc\x53\x44\x8c\xc5\x5e\xd6\xe4\xdf\x6b\x1e\x32\xbe\x90\xed\x27\x13\x32\xf0\xda\xfa\x64\x7c\xd2\xcb\x9a\x69\xce\xe2\xfa\x67\xd1\x96\x35\x68\x7c\x71\xc5\x17\xed\x25\x39\xea\xda\x88\xef\xe8\x2e\x55\x61\xbc\xb5\x11\xe3\xa3\x49\xd2\x86\xd6\x21\xae\x7f\x3e\xdb\x65\xed\xd3\x18\x3c\x03\xd4\x8a\xf6\xd2\xa7\x7d\xf6\xc5\x18\xe8\xe8\x57\xd1\xbc\x35\xb7\x1f\x2e\xa8\xfa\xc9\xf8\xde\x89\xb5\x80\x06\x24\x02\xb4\x36\xb5\xe7\x9d\xa6\xd3\x18\xa3\xb2\xb6\xd4\x97\x15\xdf\x69\x2f\x2d\x8d\xcf\x1d\x7c\xc6\xf8\x95\xa9\x68\xde\xa2\x68\xde\x48\x12\x68\x6d\x6b\x4f\x84\x9e\xe0\x7b\x5f\xd6\xb6\xda\x0c\x3d\x51\xb4\x3f\xb7\xf6\xbc\xe7\x97\x5f\x10\xf7\x93\x09\x36\xb4\x93\xff\xf1\x87\x32\x83\x4c\x75\xf8\x16\x75\xf8\x17\xe0\x51\xa6\x29\x3b\xd1\x4d\xde\xf0\x9d\x15\x2a\xe6\x65\xf7\xc9\x58\xcf\x65\x5d\x4e\xf9\xee\x4e\x79\xab\xbc\xe1\x55\x6c\x6f\xdd\x5f\x5a\xb2\x4a\xb4\xd8\x75\xdc\xbb\xb3\xe8\x99\x42\x5b\x9d\x44\x3a\xd6\x9d\x29\xcf\x48\x2e\x68\x2a\xb6\xb7\xee\x95\x26\x17\xac\x50\xa6\x36\xc3\x48\x60\x1d\x98\x75\x19\x09\xdd\xeb\xd5\x4c\xb1\xad\xce\x7a\x35\xeb\x81\x44\x2a\x6d\x99\xfe\x9a\x64\x23\x64\xfc\x3d\x39\x15\xbd\x96\x3f\x59\xa5\x65\xdf\xa5\x42\xa2\x42\xdf\x58\x24\x66\x5d\x46\x42\xf7\xe0\xb9\x55\x5e\xfd\x5d\x30\xc4\x2b\xf2\xaf\x8c\xdf\x09\x86\x78\xd5\x7d\x32\x32\x08\x5a\x67\x56\xa9\xf5\x16\xdf\xf1\x38\x74\x19\x10\x5e\x75\x7f\x65\x1c\x43\xd7\x77\x3d\xe6\x85\x2e\xa9\x2e\xef\x84\x57\xe4\x27\xab\xdc\xf2\x9d\x35\xb6\xd6\xfb\xfe\xc7\x1f\x3d\xf3\x86\xeb\x42\x1a\x3d\x6c\x92\xca\xd3\xa0\x0a\x7d\xeb\xee\x18\x34\x3e\xcc\x65\xdd\xf4\x73\xf6\xe7\xcf\xb1\x9b\xd2\x4a\x3d\xb4\x92\x42\x69\x5d\x8e\x8b\x1e\x46\x49\xa5\x0d\xd4\xa1\xe5\x43\x0c\x9d\xa8\xa0\x0b\x85\xf4\x11\xfd\x24\x2a\x50\xf9\xbe\xf5\x11\xfd\xa4\xf5\xde\x87\xfa\xe9\xc9\x69\xf7\x62\xfd\xc9\x64\xb0\x44\xf9\xbe\x35\x22\x06\x95\xef\x5b\x0f\x8d\xc5\xc2\x32\xeb\xf2\x78\xf4\xd0\x58\x4d\xf3\x29\x8d\xd5\x43\x63\xb5\xf4\xf7\xea\xe3\xac\x4b\xa1\xf5\x50\x68\x0a\xa7\x75\x45\x0b\xbb\xe7\xb5\x99\xc2\x69\x5d\xb6\x4e\x5f\x31\x44\x9d\x08\x29\xb4\xbe\xa2\xab\xda\xd9\xb2\x75\x7a\xd8\x3a\xac\x49\xb3\x2e\xe0\xd3\x77\x0c\x5f\xbb\xfe\x68\xda\xbc\x72\xd7\x58\x77\x66\x5d\x0e\x91\x60\x0c\xb0\xc6\x48\x47\x17\x28\xea\x01\x8a\x14\x6b\xeb\x02\x45\x3d\x34\x5a\xe3\xe5\x61\x02\x45\xf6\x44\x3f\x09\x44\x4c\x21\x48\x0b\x8f\x08\x1f\xe7\x32\x93\xb6\xb3\x27\xc6\xce\xcb\x43\x6c\x02\x66\x29\xe6\x8c\xa7\x45\x74\x02\x66\x4e\x2d\x62\x7c\x64\xcb\x4c\xf6\x93\x85\xd6\x6a\xbc\x04\x4c\x11\x0d\xa7\x01\x48\x46\xce\x42\xb3\x57\xbf\xf7\xc6\xd8\xb9\x7d\x4d\xe0\xc6\xde\xe8\x27\x41\x8a\x88\x01\xcc\x3c\xdc\x61\x7c\x2c\xcb\x4c\xae\x0d\xf3\x68\xbd\xb1\x96\xcd\x4c\xd1\x7a\x0b\xcd\xc4\x5a\x36\x33\x79\x4d\x2d\x5c\x1b\x9d\x9e\x58\x55\xff\x9b\x85\x6b\xa3\x53\x63\x1b\x1f\xba\xb6\xa8\xfe\xb7\x4e\x83\xcc\xba\xc6\x1e\x86\x8e\xa2\x6d\xa6\x48\xbe\x79\x5c\xc2\x58\x94\x66\x26\x15\x63\xa1\x62\xf8\xe8\x95\x99\x54\x8c\x85\x8a\xe9\x85\x73\x2d\x15\x63\xee\x1b\x35\x45\xe2\x4c\x31\x0b\x73\xdf\xa8\x29\x12\x67\xd0\x9c\x05\x28\xea\x04\x37\x62\x06\x30\x0b\x15\xd3\xb5\x07\x05\x8a\x2c\xd4\x48\x27\xe0\x15\x33\x80\xd9\x17\x73\x46\x57\x91\x09\x14\x59\x18\x41\x64\x1d\x31\x53\xe6\x80\x7d\xd1\x17\xed\xb3\x4f\x7d\x09\x03\x49\x91\x33\x9b\x1a\x9f\x3b\x55\xad\x13\x6c\x98\x22\x9b\xc1\x1a\x60\x64\x41\x34\x53\x1c\xc4\x42\xbf\x28\xac\x66\x72\xaa\x3a\x81\x40\x32\x16\xac\x99\x58\x03\xcc\x02\x30\xb1\x60\xcd\x6c\x69\x6d\xc3\xb0\xea\xda\xd7\x02\x4c\xb6\xff\x6c\x93\x7b\x49\xfa\xc5\x9c\x92\xd8\xc8\xba\x68\x62\x14\x30\x73\x0e\x33\x33\xaa\x6c\x31\x03\x98\x05\x2a\xe2\x0b\x5c\x66\xf2\xaa\x5a\xf8\x60\x8c\xfb\x1a\xd2\x21\xf0\x14\x07\xe3\x0b\x5c\x06\xa5\x38\x78\xb1\xff\x95\x81\x32\x93\xcc\xcf\x98\x51\x27\x43\xfa\x05\xa1\x5f\x8c\x3a\x59\xd5\xff\x16\xd5\xff\x66\xcc\xb2\x81\xf4\x0b\x02\x4d\x91\xae\xd1\xc0\x77\x13\x0c\x9e\x28\x74\x35\x00\x65\x4d\xb2\xe8\x0b\xd1\x06\xf2\x5f\xda\x8c\xbe\xd0\xd1\x00\xb9\x4e\x11\xa8\x88\xaf\x6c\x19\x84\x8a\x10\xbe\x1b\x56\xc1\x99\xaa\xff\x0d\xa1\x7b\x8c\xba\x15\x0a\xb5\x22\x10\x13\xab\xe0\x0c\x45\x73\xe6\xd5\xff\xc6\x17\xb8\x0c\xca\x9b\xf0\x0a\xff\x64\x0a\x72\x41\xa8\xc8\xab\xfd\xaf\x8c\xdf\x09\x15\x79\xb5\x7f\x32\x56\xac\x19\x14\xce\x81\x67\x11\x99\xa2\x55\x2a\xff\x37\x84\x73\x86\x65\x69\x06\xe9\x2c\x04\x62\x62\x59\x9a\x41\xce\x19\x78\x51\xef\xdd\x1a\x3f\x99\x69\x6d\x3d\x2f\xdf\x14\xe5\x82\x5c\xb5\x08\x9d\xc5\xb2\x34\x83\xa9\xcd\x70\xdc\x40\x7b\x10\xea\x67\x40\x26\xd2\x3c\x1a\x04\x99\x10\xfa\x0c\xda\x83\x8a\xf5\x20\x7c\xb5\xa0\x71\x08\xf9\x6a\x83\x52\xc0\xc0\xbb\x1f\x43\xfd\xf4\xe2\x1d\x63\x0d\x99\x41\x46\x1e\xc2\xc8\x23\xcd\xa3\x41\x90\x09\xe1\xe3\x85\xf6\xa0\x62\x44\x08\x5d\xc7\xf7\xb0\x0c\xd2\x75\x08\x38\xa5\x38\x17\x64\x00\xc2\x13\x8a\x8d\x14\x90\x06\x39\x7c\xe0\x59\xc3\x85\x60\x58\x4c\x04\x86\xab\xb2\x5a\xd1\xee\x5c\xea\x49\x78\x7f\xa1\x5d\x2d\xef\xaf\x13\x0b\x24\xe3\x0b\x5b\x06\xe5\x5d\x05\x9b\x80\xf1\x15\x2d\x83\xbc\xbf\xd8\xb1\xb2\x34\x37\xa1\x70\x30\x22\x44\xa4\x10\x18\x84\x96\x70\xa2\x4d\x82\x68\xb1\x10\x58\x30\x0d\x18\x19\x20\x4d\x4c\x03\x36\x42\x2b\x91\x01\xd2\x06\x73\x8e\x6d\xa4\x68\x93\xbb\x7a\x28\xd6\x33\x1c\xd9\x80\x2c\x8f\x36\x98\xe9\x6f\xc1\x0a\x80\x87\x36\xde\x90\x76\x19\xae\x5d\x40\x26\x47\x1b\xf9\x93\x6c\xba\x2c\xb1\x9f\x72\xdb\x04\x63\x00\x1e\x6a\xdd\x21\x3b\x6e\xb8\x1d\x87\xe7\xef\x82\xe1\x21\xc0\x34\xde\xe8\x0e\x0f\xc4\x78\xd5\x1d\x37\xe5\x40\x12\x48\x1b\xca\x0f\x19\x25\xba\xc3\x03\x31\xa4\xd0\x82\xa4\x00\x24\x88\xb4\x51\x34\x6d\x25\xda\x24\x48\x19\xf2\x14\x0d\xcf\x0f\x01\x19\x1b\x6d\x28\xd9\x6b\xd4\x98\xee\xa2\xef\xa6\x64\xd1\x26\xbd\x2c\x43\x9e\xe8\x20\x30\xc0\x43\x90\x32\x9a\x96\xbe\x45\x3f\x09\xa2\x87\x14\x61\x90\x1b\x40\xb1\xae\xd1\xd5\xcf\xfe\xa7\x8c\x63\x17\x08\x73\xc2\x82\x2b\x63\x9b\x32\x0f\x83\xc1\x00\x8a\x83\x0d\x25\x8e\x0c\x8b\x25\x64\x86\xc4\x50\xf0\x3a\xd8\x0d\xa0\x18\x99\xd8\x0d\x2c\xd8\x0d\xf0\xf0\xb8\x0c\x68\xfb\x5e\x65\x67\x8a\x6b\x0f\x39\xad\x06\x62\xaa\x79\x92\x06\xf4\x73\x88\xe9\xe4\x49\x1a\x32\xf3\xc6\x88\xe1\xd1\xd9\x3c\xa4\xcf\x9c\x03\xe1\xca\x38\x2d\xd2\x59\x41\x7c\x80\x87\xf7\x8a\x88\x0f\x6c\x7c\x31\x9d\xc4\xf3\xe3\xd3\x74\x7e\xf1\x7b\xf4\xc0\x0c\x61\xb7\x20\x45\x00\xdf\xed\x32\x91\x22\xd8\x70\x16\x48\x3c\xc4\x44\x43\xb1\xae\xe1\x39\x2c\x60\x09\xa0\x0d\x69\xb4\x20\x4c\x80\x62\x72\x83\xcc\x6f\xe6\xfc\x08\x09\x49\xa7\x53\x1a\xcd\xf9\x11\xae\x8c\x63\x57\x82\xcb\xd8\xf1\x1d\x9d\xdb\x63\xeb\x3b\xaf\x3f\x06\x6b\x00\x6d\x1c\x6d\xcf\x13\x7d\xe1\x31\xfa\x84\x97\x3e\xc7\x4b\x50\xbc\xee\x13\x5e\xfa\x9c\x49\x09\xac\xf3\xb3\x4f\x1a\x2d\x18\x0c\x90\x78\xe7\x7c\x8a\x50\x7f\x39\xfa\x42\x6c\xf3\x09\x2f\x7d\x39\xfa\xc2\xe3\xf0\x29\x44\xfd\xe5\x18\x1f\x8f\xc3\x27\xad\xf5\x39\x1f\x2c\xf8\xa6\x97\x89\xc1\xc0\x3e\xb7\xd5\x90\xb8\xe5\x3f\xe5\x8b\x7e\xa1\x7a\x52\xd3\x77\x9c\xb3\xaf\xc4\x77\xb4\x29\x3f\x79\x91\xbe\x50\x2f\xf2\xf4\x7d\x4a\x3f\xfb\x6a\x8c\x81\xfb\xf3\x53\xa8\xf9\x0b\x55\x90\x88\x6d\x3e\xa9\x82\xcf\x9d\xcd\xe0\xdb\x5c\xf6\xb5\xbf\x7c\xb7\x43\xf6\xdb\x83\x9f\xbc\x48\x4e\x74\x70\x65\xa0\xac\x4a\xe6\x7b\x90\x44\x8f\xf6\x75\xad\xad\xdb\x71\xc8\xd4\xf4\x9f\xf2\x5f\x3e\xa7\x52\x82\x02\x79\x62\x45\xb0\xcf\x1d\xd8\xc8\xdc\x67\x9f\x54\xc8\xe7\xf9\x2f\x50\xb0\xee\x53\x6c\xdb\x49\x10\xae\x8c\xe3\x93\x1d\x17\xcc\x07\xc8\xcc\x6c\x12\x83\x81\x39\x83\x41\x31\x9a\x39\x9f\x12\x46\x9d\x94\xa0\x90\x2c\xdc\x44\x36\x60\x4e\x36\x50\x04\x22\x3f\x79\x93\x9d\x5a\xa0\x18\xcf\xec\xa7\xb3\xf7\x5d\x34\x51\xa0\x25\xd0\xd1\x73\x36\x81\x22\x04\xf9\xe9\xe4\x7d\x3b\xbe\xfa\x35\x38\x75\x10\xe6\xbd\xda\x0b\x29\xbd\x6d\xca\xa6\x98\xa9\xb9\xa8\x51\xc4\xdf\x9a\x39\x5d\x11\x67\x6a\xca\x07\x3b\xef\x35\x5e\x04\xf4\xa6\x0e\xc1\xbc\x46\x83\xde\x3d\xb5\xa9\x9b\x7b\xde\x9b\x5b\xcf\x9e\xda\x94\x03\x76\xbe\xde\x0d\x22\xc0\x29\xff\xeb\x8c\xcb\x37\x13\xc9\x4d\x5d\xbe\x33\x2e\x5f\x85\x2d\xa7\x4e\x47\x54\xee\x83\x55\x8d\x36\xc9\x0b\x62\xb3\xc4\xce\xa2\xcf\x73\x56\x4d\x96\xd3\x1f\x82\x7c\x29\x36\x75\x69\xcf\x1a\xbb\x8e\x37\xc9\x54\x6e\xd8\x8c\xcb\x37\xd3\xcd\x3f\x15\xde\x99\x2d\xbe\xa3\x75\x3d\x95\x99\x39\xbd\xea\x0f\x99\xfb\x67\x76\xad\x8e\xa7\x61\x23\xd3\x9a\x98\x4a\xfc\x98\xee\x64\xc5\x4b\xcd\x3e\x15\xde\x99\x9e\x39\x06\x85\x26\xa7\xbc\x23\x51\xee\x0f\xbe\x98\x66\x53\x61\x60\xaf\xee\xbf\x32\xce\x99\x42\xbd\x33\x6e\xd1\x97\x9e\x1a\x95\xfb\xdb\xf4\xca\x25\xbc\xd4\xec\x53\x8e\x54\xaf\xee\x4f\x20\xeb\xa5\x4d\xdd\xa2\xd3\xad\x02\x28\xa4\x39\xe5\x59\x98\xee\x9d\xc4\xab\xed\x22\xef\xc1\x74\xbc\x8d\x97\x60\x66\xea\x1c\x78\xfd\x7b\x02\xb9\x26\x6d\x2a\x2f\x7a\x9e\x18\x1f\x01\xcb\x94\x17\x60\x9e\xf8\x8e\xfb\x65\xc9\xd2\x5f\x4f\x7c\x47\x8f\xcb\x22\x97\x9f\x79\xdd\xfc\x95\xf1\x3b\x1d\xbc\xe5\x61\x52\xbc\xb4\x4c\x97\xbc\x85\x2b\x30\xf5\xcb\x94\xb3\xa5\x93\xb2\xbc\x5c\x8f\xf4\x87\xb6\x64\x24\xaf\x6b\x24\xb7\x52\xff\x1e\x3f\x84\x2d\x99\xd0\xeb\x02\x53\xf1\x1f\x9a\x2a\xdb\x6d\xb9\x67\x0f\x2f\x11\xcb\x52\xf8\x71\xc5\x8d\xf0\x12\x95\x2c\xa5\x29\x78\xb1\xfa\x95\xfd\xe6\x73\xe9\x46\x58\xb1\xaf\x15\x0a\x5d\xd2\xfa\x51\xa1\x8e\x42\x15\xb7\x4c\x63\x0f\x70\xc8\xa7\xd4\x6c\x69\xef\xae\xd0\xfa\x85\xb7\xc5\x92\x25\xbc\x02\x1c\x16\xe6\xb1\x2d\xa5\x30\xac\xd8\xd7\xe4\xb6\xb4\x25\x74\xb8\x9c\xeb\x1b\x7c\x66\xcd\x96\x32\x9a\x96\xa7\x30\xa0\x10\x95\x2c\x05\x0f\xd6\x88\xf1\x51\x3f\xaa\xb2\xdd\xbc\x90\xfd\xca\x1a\x65\x3c\x2b\xeb\x8b\x7e\x52\x43\x2e\x05\x08\xa2\xb2\x1d\x85\xa8\x44\x95\xed\xb6\x66\xfc\x1e\x11\xee\x92\x87\x6e\xf9\xfb\xeb\x50\x28\x74\xc9\xa4\x5d\xf3\xfc\xe3\x0f\x55\xeb\xd9\xd2\x1d\xb4\x02\x00\xf2\xb9\x34\x5b\x3a\x62\xeb\x5a\xb7\xfd\x2f\x2d\xea\x7e\x5a\x71\xfa\x0a\xb5\xe7\x92\x7f\x6e\xed\xe8\x25\xb5\xe7\x52\x40\x73\xed\x18\x1d\x53\xdc\x54\xd7\x6e\x51\xd7\x8e\x42\x1c\xbe\x64\xed\xae\xf3\x67\x9b\xdc\x65\xf2\xff\x7b\xcd\x7b\x2f\x74\x0b\x2d\x25\x3d\x46\xc9\x3b\x58\xff\x67\x2a\x79\xb7\xed\x15\x48\x60\xfd\x9f\x6d\x1d\xe8\xfd\xc4\x86\x60\x90\x74\x2b\xb5\x6a\x3f\xd1\x4d\x1a\xc9\x5b\x87\x7d\x07\xdc\x24\x21\xa6\x6d\xa5\x5d\xed\xe4\x0a\xb2\xf2\x30\xa8\x54\xde\xb6\xe7\x3d\xa0\x52\x59\xab\x54\xde\xbc\x32\x3e\x41\xb5\x81\x5b\x4a\x62\x87\x21\xac\x40\xe8\x56\xd6\xe3\x0e\xb8\xa9\x22\xbf\x2d\x4b\x77\xbf\xd1\x17\xc2\x81\xad\xb4\x2b\xaf\xa8\xbf\x32\x8e\x4f\x61\x03\xaf\xa8\xef\x0a\x39\x6f\x29\xa5\xed\x9e\x3b\x28\x46\xba\x75\xd7\x6e\x4f\x88\x84\x6a\x03\xb7\xf4\xce\xae\xde\x24\xd5\xce\x56\xae\xe4\x8e\x6b\xb8\xbe\x5c\x3d\x5d\xc3\xbb\xc6\xe8\x08\xd4\xb6\x42\xa4\xdb\xc3\xa0\xa8\x3c\x5e\x5b\x36\xf0\x0e\xe0\x4b\x8e\x4d\xdb\x02\xbe\x51\x98\x0f\x85\x56\x77\xfb\x4b\x9b\x5f\xc8\x7e\x1b\x77\x77\x7d\xd7\x11\x32\xb6\x29\x1b\x78\x87\x0d\xac\x72\xc3\x2d\x35\xb7\xe3\x8a\x56\xb9\xe1\xd6\x55\xeb\xb5\xf6\x09\x7c\x80\xcd\x36\x09\x35\x6c\x8f\x98\x4e\x5e\x29\x5b\xce\xb9\x3d\xa2\x4d\x1a\x04\x5b\xce\x39\x2f\xbe\xbf\x32\xce\xa7\xae\xe1\x1d\xd7\xb0\x4a\x11\xb7\x9c\x73\xfb\x8b\xdd\xa9\x35\x92\xa1\xbb\xbf\x68\x53\x27\x45\x0e\xb8\xfd\xc5\x4e\xe2\xd5\xb0\x15\xcf\xdc\x9e\xa5\x0d\x92\x6f\xda\x56\x50\x72\x7b\xd0\x00\x7c\x9c\xcd\xb6\xb2\x2c\x76\x18\xa5\xaa\x37\xdc\x0a\x4a\x6e\x2f\xa3\x82\x02\x9d\xe2\x02\xb0\xed\x59\x16\x68\xda\xd5\x52\x4a\x3b\x0c\x56\x15\x07\x6e\xb9\xe0\x9c\x18\xe0\xca\xf8\x9d\x82\x92\xdb\x83\x06\x68\x84\x27\x47\xda\xe5\x78\x70\x11\x0a\x58\xaa\xea\xdf\xbc\xca\x3f\x41\x41\xc9\x43\x5a\x3d\x3b\x01\x09\x48\x94\x69\x47\x06\xeb\xb9\xc0\x1c\x2f\xb7\xc4\x91\x02\x39\xee\xdf\x87\xea\x06\x8f\xf2\x2f\x4f\x28\x90\xf6\x97\xef\xd4\x95\x1c\x53\x46\xe4\x72\x5e\xb5\x19\xb6\x6c\xa3\xce\x3d\xb2\x65\xcf\x1b\x43\xe7\x36\x3b\x8a\x0b\x9c\x37\x86\x40\xbb\xf3\x28\x2e\x70\xc2\xce\x55\x75\xe0\x51\xb6\x44\xb0\x10\xa0\x71\x9b\x1d\xc5\x24\x4f\xd8\xc0\x8a\x81\x1e\xa1\xfc\xe3\x89\x5a\x68\x44\x27\x47\x99\x14\x41\x43\x00\x72\x76\xda\x51\xbc\x32\x68\x08\xc0\x77\xdb\xec\x08\xb9\x9c\x6b\xcb\x36\x81\x3d\x51\x09\x98\x53\x09\x88\x73\xdc\x8e\x72\x25\x9c\x54\x40\x94\xe3\x76\x64\xac\x3a\x6f\x40\x7b\x35\x5f\x42\xdc\x4e\x1b\xd0\x5e\xde\x43\x47\x00\xe3\x04\xc0\x50\x21\xe2\x11\xc0\x38\xee\x86\x07\x79\x3e\xed\x90\x66\xc3\x8e\x9f\xf4\xa4\x91\xe9\xc0\x9e\xef\xcf\xcf\xb8\xaa\xf2\x4c\x9d\xf0\x4c\xf1\xf5\x38\x13\x1d\x80\x1d\xf7\xa6\x43\xf5\x8b\x47\xd5\x55\xc7\xa3\x8a\xe8\x54\xc6\x67\x6a\x4e\x3c\x3a\x88\x4e\x27\xa7\x4a\xfe\x2d\x4a\xfe\x41\x9a\x4f\x3b\x3a\xb0\x27\x3c\x4c\x9d\xca\xf8\x28\xbd\xe9\x04\x1a\xe8\xf5\x6f\xfa\x7f\x8f\x20\xfe\xf1\x4a\x29\xa8\xbe\xf1\x28\xd0\x77\x4e\x0c\xb1\xe9\x27\x75\xf6\x02\x49\xf0\x31\x3b\xa8\xea\x1f\x4f\xa0\x85\xfe\xd3\xe3\x78\x78\x7b\xe3\x09\x47\x12\x5f\xa4\xc3\x93\xf5\x5d\xb8\xbf\xfb\xef\xf0\xe1\xe1\xe1\xc3\xf3\xc6\xf0\x7f\x54\xde\x78\x98\x10\x80\xc7\x6b\x1d\x40\xf6\x50\x3c\xb4\xa2\xf1\x5c\x00\x50\xf1\xc3\x65\x50\x65\x3f\xa2\xb2\x1f\x8c\xe1\xe2\xa1\x8f\x09\x4f\x58\xd8\x24\x1d\xc5\x53\xd4\x64\xdc\xec\xfd\xa7\xe2\xf1\xd0\xa0\xc0\x53\xa2\x4d\x70\x5a\x78\xb3\xe3\xb9\x37\xbb\x9e\xbd\xc2\x53\xd5\x95\xfa\xe7\x67\xfc\x39\xa6\x03\xe0\xf1\x74\x00\xf0\x71\x3c\x3c\xbc\x85\xf1\x78\xbe\x34\xf8\x02\x1e\x9e\xa6\x21\x78\x48\x0e\xac\xa8\xc4\x63\x1a\x82\x57\x41\xc0\x7e\x86\x01\x1e\x1a\x0d\x78\x3c\x7c\x06\xcb\x9c\x69\xe6\x33\xe2\x89\x9b\xd6\x5e\xb6\x39\xb4\xb2\x71\xfe\xec\xe5\x2a\x0c\xad\x6c\xdc\xb4\xf6\x72\x0c\x9f\x7e\xcf\x9f\x16\x07\xcb\x1b\xf1\x7c\x1a\x43\x1c\x24\x86\x62\xf1\xd0\x91\x84\xc7\x33\x80\xc0\xd2\x47\x3c\x53\xcb\x10\xb7\xa9\x15\xce\x27\x8d\x68\x3c\x71\x00\x49\x56\x8a\x67\x69\x0c\x2b\xe6\xa5\xb2\x9f\x4b\x6d\xc6\x4d\xcb\xd2\x47\x38\x43\xc0\xef\xcf\x18\x7b\xe3\xd8\xb7\xd6\x36\x6e\x53\xd3\x69\x38\xda\xd5\x61\x7c\xb3\xbe\x11\xcf\xd1\xba\xc7\x6d\xca\xfa\x46\x3c\x47\x6d\xc6\xc9\x64\x7d\x23\xc4\x32\x80\x60\x19\x80\xf1\xa4\x88\x49\x00\xc1\x24\x00\xd6\x37\x22\xb1\xf6\x11\x29\xfd\xf9\xdd\x6f\x2f\xa5\xa4\xef\x52\x7c\x07\xc9\xfe\xf2\x5d\xcc\x27\xf7\xae\xa8\x04\x90\x02\xc7\xd3\x6f\x87\x24\x4d\x90\x3c\x7f\x19\x74\xdc\x21\x91\xf2\x0a\x29\x34\x01\x3d\x77\x48\xaf\xfa\x12\x38\x9e\xe1\x5d\x24\xe2\x78\x24\x2f\x7e\x04\x8b\x18\x91\x8a\x7e\x2f\x1c\x63\xc8\xfc\x8e\x69\x3c\x48\xc5\x0d\x42\x1e\x87\x44\xd0\x8d\x54\xa3\x9b\x2f\xa7\xb3\xaa\x9b\xe1\xfb\x22\x7b\x28\x44\x41\x80\x54\x63\x08\x2f\x7f\xae\x6a\x5a\xc2\x2f\xc6\x0a\x47\x24\x1d\xf7\x14\xa0\x9b\x15\x8e\x48\x5d\x53\x1d\x9e\x61\x32\x8b\x22\x11\x58\x23\x79\xee\x21\xb3\x97\x91\x4c\x3b\x22\x70\x35\x83\xc2\x48\xa6\x91\x3b\x25\x2e\xc0\x5d\x9d\xa0\xa1\x23\x66\xac\xf1\x3b\x68\x15\x02\x8f\x93\x90\x14\x09\xea\xca\x88\x55\xe7\x8e\x4f\xc4\xe3\x48\xe3\xbd\xdd\x7c\x25\xd2\x02\x85\x92\x40\xe7\xc8\xc7\x5f\x9a\xf4\x05\xd2\x84\x7d\x1a\x9d\xe7\x43\x83\x81\x5f\xa4\x4f\x93\x19\x68\x1c\x3a\x0b\x9f\x16\x28\xd0\x38\x74\x16\x96\x7a\x79\x55\x02\x18\x0e\x47\x5a\x5a\x03\xcf\xc4\x01\x63\xc2\x48\x4b\x93\x19\x96\x3e\xcb\x1b\x91\x08\xaa\xe1\xdc\x04\xf9\x79\x74\x14\xb6\xda\x3c\x25\x64\x6c\xf3\xa8\x9b\xf7\xa2\xcd\xcf\xc3\x2d\x9d\xf9\x9e\x06\xf2\xf3\xba\xec\x07\x79\x90\xf9\x16\x18\xf2\x3d\xf5\x57\xd6\x28\x1b\x92\xcd\x90\xb1\xcd\xa4\x36\x53\xb4\x49\x35\x9e\x09\xc6\x91\xef\x51\xbf\xb2\x4a\x19\xf7\x74\xce\xd9\x65\x85\xdf\xe9\x38\xe7\x1c\xdf\xfd\x70\x0d\x32\x5f\xf9\x41\x7e\xe3\x3b\xaa\xdc\xac\xcb\x3b\xbf\x31\x67\x3f\x8f\x0b\xb2\x8e\xba\xf3\x18\x5c\x19\xc7\x50\xd4\x66\x89\xf9\xfc\x01\x17\xe4\xa2\x31\x94\x98\x97\xc6\xdf\x2b\x9a\x97\x12\x6d\x12\x2d\x64\xa9\x08\xe7\x31\xc8\x0f\x03\xad\xc8\x55\x73\x56\xe3\xf7\x08\x6a\xb2\x74\x44\xbe\x3a\xe2\xca\xd8\x26\x03\xd7\xc8\x35\xe6\xa5\x73\x0c\xd2\x11\xb9\x25\x97\x71\xeb\x66\xfa\xce\x91\xaf\xd1\x7e\x65\x5c\x77\x1a\xed\xc8\xd7\x30\xbf\x32\xfe\x5e\xd3\xef\xb5\x75\xb7\x35\x41\x4d\x6e\x1a\x5e\x8f\x65\x27\xa8\x11\x19\x02\x72\x8f\x29\xe3\xb6\xce\x5d\x4d\x5e\xb5\x93\x1f\x06\x53\x91\x4d\xcb\x60\x39\x64\x9c\x6a\xd3\x32\xd8\x0a\x19\xdb\x34\x0d\x1d\x3e\xd5\x0c\xa6\x22\x33\x49\x07\x19\x35\x64\x1c\x83\xf4\x4e\x86\x1f\x95\x94\xff\x1e\x4f\x04\xf2\x50\x57\x47\x74\x95\x97\x43\x1e\xea\xce\x17\xdd\x79\x39\xc4\x4f\x2b\xff\xb5\x90\x71\x25\x3e\x75\x67\xc6\x77\xd4\xe4\x99\x56\x00\x9c\x36\xe1\xca\x38\xfc\xf9\x97\xef\x62\x4a\x09\x50\x32\xf3\x07\x91\x57\x0a\x19\x77\xda\xd2\xae\x58\x33\x64\x9c\xee\xad\xef\x76\x8c\x8f\x2a\x39\x6f\x9d\xa4\x1d\xdf\x51\xef\x8a\x64\x01\xce\xa9\x70\x65\xfc\x3d\x81\x90\x7c\x62\x0c\x9d\x63\x38\x1a\x43\x68\xad\xc4\xdd\xfb\x4a\x6b\xbd\x4f\xb4\x49\xc5\xfb\x0a\xa0\xbc\x4e\xb3\x4b\x8f\x13\xde\x07\x12\xfd\xd9\xe4\x6f\xe5\x9d\x90\xe1\xf7\xa7\x1f\xc0\x44\x7c\xf2\x4a\x69\xbd\xa9\x87\x4c\xdf\x4d\xc9\x7c\xaa\x49\xe1\x8a\x37\xab\xcd\x5c\x43\xc6\x6e\x66\xf5\x25\x8f\x90\xb1\xcd\xac\x36\x43\xd9\xf1\x61\x6d\xbc\xb2\x62\xde\x37\x85\xec\xa5\xac\x48\x16\xbf\x97\xf8\x7b\x32\x55\x9c\xfb\xe1\xca\x7e\x53\x2d\x52\x07\x38\xa9\x43\x7e\x58\xa3\x89\x57\xe6\x88\xf3\x3b\x5c\x19\xe7\x45\x0a\xed\xad\x7e\xe2\x49\xfd\x0a\x11\x3e\xe0\xad\x3d\x64\xfc\x4e\xb6\xca\x5b\xa3\xcd\x9f\x37\x11\xaf\x14\xda\xdb\xa2\x4d\x62\xf9\x57\xc0\xe6\xbd\xc0\x26\x3f\x99\x28\x44\x4c\x11\x78\xdb\x09\xd9\xef\x18\xbd\x74\x3d\xe0\xed\x25\x64\xec\x4b\xd7\x76\xe9\xae\x5c\x19\xec\xc4\xcb\x60\x20\xde\x1e\x73\xd6\xd4\x26\x8f\xf4\x6b\xb1\x0e\x54\xf4\xaf\x6c\xa3\xd7\xfc\x48\x67\x1e\x87\xd7\x34\x9f\x16\xbf\xc7\xe3\x20\x8a\x09\xbc\x16\x7b\x89\xd6\xeb\x0b\xad\x7b\x68\xad\x4c\x45\x2f\x1a\x09\xbc\x23\xfa\x42\x33\xf4\x15\x24\x7a\x47\x7c\x07\xb6\xf9\x69\x5e\x3e\x3f\xd2\xaf\xf6\xae\x70\xcf\xfb\xf5\x90\x71\xec\x9f\x7e\xef\xdb\x21\xe3\xef\x4d\xf5\x73\x46\x9b\x89\xeb\x37\xd5\x97\xd9\x42\xc6\xbe\x4c\xed\xa5\xe5\xaa\xee\xcd\x5c\x5b\x61\xa9\x77\xd5\x90\x71\xce\x96\xfa\xb2\xbe\x90\x71\x1d\x96\xf6\xd2\xba\x97\x15\x39\xe4\xf0\x0a\x4b\xbd\x3b\x86\x47\x8d\xfc\xca\xdc\x7a\x03\x4b\xf1\x65\x40\x88\x0f\x02\x6f\x68\x25\xc6\x48\x51\x64\x36\x95\x27\x86\x4e\xed\x59\x98\x23\x88\xf2\x8c\x90\x19\x65\x53\xb2\x68\x93\x78\xa2\x30\xc4\x81\x12\xaa\xe7\x25\x66\x28\x32\x9b\x4a\x9a\x21\x7b\x29\xdb\x92\x45\x9b\x1c\x7b\x21\x0d\x14\x4a\xa8\x25\x3a\xd5\x50\x98\x5b\x88\x92\xfb\x9d\x32\x9e\x5a\xf1\x48\xa0\x84\x56\x7a\xe9\x23\x29\x2c\x11\x43\x09\xad\xf4\x1a\x9b\x7c\xd5\xe4\x1b\x43\x20\x2e\x28\x82\x60\x25\xb4\x12\xc3\xa0\x28\x45\xd3\x59\xde\x90\xb1\x4d\x39\x50\x4a\xf1\x53\x54\x88\x19\x0a\x43\x23\x28\x35\x85\x8c\xdf\x49\x2b\x95\xea\xd3\xc2\x50\x27\x4a\xd3\xb4\x34\x5f\x3e\x86\x2c\x51\xa4\x79\x4a\x1b\x21\x63\x9b\xc2\x3d\x25\x34\x0f\xc9\x47\x51\x98\xb8\x8c\xd2\x5b\xc8\x38\x9f\x32\xc5\x9c\x6e\x22\x3f\x24\x1f\x45\x91\xbd\x55\xac\x84\x8c\x6d\x4a\xbb\x38\xdd\x44\xeb\x9a\x16\x39\x5e\xca\x85\x44\x8d\xe9\xf8\x10\xfd\x04\xca\x55\x25\x4d\x2e\x20\x31\x4c\xa0\x60\x5e\x11\xbd\x3c\x65\xa8\xff\x57\x91\xe8\x65\x19\x14\x61\x1a\xa7\x93\xd0\xc3\x32\x28\xd2\x1d\xe5\x1b\x57\xc4\xe3\x5a\xe4\xaa\x29\x9f\xf7\x50\xf3\x28\x8f\x8b\xf3\x45\x34\x72\x5b\xa1\x08\xb3\x94\xab\x0b\x9a\xd1\x76\x2b\x82\x2c\xce\x24\x91\x1f\x3e\x32\x88\xb2\x34\x53\xeb\xce\x94\xdc\x42\x45\x76\x56\xd9\xde\x7b\x82\xa7\xb2\x75\x54\xaf\x96\x68\x56\xf9\x15\x33\x8b\x51\xb6\xb9\x88\xbf\xb5\xff\xd2\xe0\x71\x11\xbb\x78\xd4\xc5\xe3\x0d\xf2\x86\x29\x47\xd3\x71\x7c\x3a\x88\xa9\x2a\x03\xa6\xa8\x8f\x77\x9e\x77\x48\x15\x8e\xa9\x8f\xcf\x2f\xcf\xbd\x58\x2a\x50\x1f\xef\x06\x6f\x90\x2a\xb3\xcc\x49\x2a\x9a\xf1\xd4\xd7\xa4\xaf\x92\x7f\x65\x7f\x8f\x16\x02\x95\x39\x4b\xa8\xf9\xf3\x2f\x7f\xc3\xae\x32\xcb\xea\xeb\x8b\x06\xf6\x52\x2a\xa1\xbe\x3e\x8f\x34\x80\x45\x51\x81\xfa\xde\xae\xe0\x97\x13\x0d\x51\x50\xa0\x7a\x92\x06\xe9\xac\x50\x85\x44\x9c\x70\xa2\xc9\xd9\x53\x65\x59\xd5\x6b\x59\x35\x96\x00\xa0\x56\x75\xe3\x42\x92\x46\x9e\x2b\xd4\xaa\x06\xab\x37\xc8\xdd\x5d\xa5\x27\xea\xd5\x13\x0d\xbf\x8c\x1d\xd4\xa6\x1e\x5e\x43\xa9\x31\x25\x0c\x55\x18\xa4\x7a\xf8\x83\x19\xfe\xa8\x5d\x5f\x75\xd7\xc7\x45\x4b\xcd\x9c\x0e\xd4\x30\x8e\x8a\xd6\xda\xf4\x9d\xc5\x77\x44\xc8\x95\xd5\x0d\xa8\x66\x21\xe3\x77\x0c\x84\xa2\xa2\x87\x8c\x83\x13\x94\x70\x36\x89\xfc\x30\x4c\x8f\x3a\x34\x5d\xc3\xbf\x63\xb8\x1d\x75\x68\xbe\xbe\x14\x32\x8e\x8f\xf1\x11\xd4\xaf\x86\x8c\x3b\xef\x53\x3f\x3f\xef\x67\xd5\xf2\x08\x4a\xd4\x80\x12\x55\xeb\x23\x28\x51\x67\xb4\x49\x17\x5e\x95\xf5\x53\xa7\x2b\x64\x86\xe9\x21\xea\x09\xd4\xf5\x86\x8c\x6d\x2e\xf5\x25\xa0\x04\xeb\x95\x51\x99\x22\x88\xba\x7d\x5e\xc8\xb7\x8b\x2a\xd7\x6d\xdd\x25\x64\x3c\x74\x5b\x73\x16\x38\x43\x17\x6a\x3d\x5a\x87\xd3\xfe\xf1\x47\xed\x3f\x86\x05\x34\x16\x3a\xa1\x5d\xe4\x50\x15\xe2\x68\xf2\xbc\xb4\x7b\xd8\x2b\xdf\x47\x43\x13\x58\x70\xba\x88\xaa\x20\x46\x63\xad\x01\xda\x85\x0d\x55\x81\x0a\xb1\x40\xa0\x65\xbf\x4b\x49\xfb\x8b\xc6\x60\x26\x5a\xdc\xf9\x64\x48\x45\xd3\x9d\xdf\xde\x98\x12\xa2\xea\x26\x0f\x6b\x7b\x47\xc8\x38\x36\x9d\xd5\x56\x62\x79\x88\x9c\x9b\x02\x1c\x2d\x2c\x8a\xaa\x39\xd1\x69\x6d\x61\x51\xb0\x6c\x1a\x4d\x16\x45\x0b\x8b\x82\xb5\xd1\x68\x4d\xb3\xd2\x5a\xc8\xd8\xa6\xac\x86\x16\x77\x37\x63\xfb\x68\x5d\x6d\xf6\x19\x32\xce\x59\xd7\x18\xe2\x7e\x66\xfc\x1e\x0d\x1a\x03\x7c\x0c\x7c\x3c\x13\x4d\xfe\x05\x67\x6c\xb8\xb2\xdf\x56\x69\x43\x73\x3d\xbc\x2f\x8d\x3e\x8b\xa6\x6b\xb3\xf9\xab\x39\x95\x81\x8a\xa6\x20\x86\x13\x2f\xe4\x87\x61\x78\xb4\xa9\xbd\x12\x3e\x82\x46\x2f\x5d\xd3\x9d\xda\xc2\x0f\xc0\xf7\x31\xd1\x74\xa9\xb6\xb8\x54\xf9\x3e\x26\x9a\x4e\x49\x5b\x16\x32\x0e\x61\x69\x78\x2b\x86\xf0\x4b\x61\x45\xd3\xb5\xda\xe2\x24\x30\xb4\x8f\x26\xff\x41\xdb\x3b\x64\x1c\x83\x02\x1c\xce\xc1\x90\x9f\x46\xa3\xaf\x1d\xb5\x19\xbe\x05\xd6\x29\xa3\xe9\x6a\x75\xe6\x85\x2b\xfb\xb5\xd9\xe5\x3f\xe8\xe1\xf5\x6c\xdc\x9e\x5d\xe7\xab\x87\x67\x93\x75\xca\xe8\x7c\x5f\x0b\x3d\xe5\x90\x55\xca\x8a\x64\xd1\x97\x5f\xbe\x00\xba\x82\x1f\x3d\xc5\x3a\x10\xc5\x8b\xb1\x01\x4e\xd0\x70\x65\xec\xa7\xbc\x9e\x3d\x8e\x26\x09\x83\xd1\x75\x34\x7b\x8e\x7e\x9a\xbe\xdb\x92\xc5\x3a\x10\x8e\x77\x85\x3a\x7b\xc0\xf1\xf6\xcb\x8c\x45\x7f\x35\xf6\xf0\x88\xb2\xf6\x19\x5d\xf1\xcc\x5e\x62\x1d\xe8\x04\xe9\x82\xe3\x3d\x3c\xa2\x8c\xfb\xa3\xb3\x5c\x07\x3d\xe0\x38\x99\x86\xd1\xab\xe6\xac\xfa\x9c\x75\x1a\x84\xbd\x6a\xce\xaa\x85\xac\x53\x36\x25\x5b\x21\x63\x5f\xe4\xd9\xec\xcd\xf7\x2e\x6b\x9f\xd1\x05\xe3\x9d\xbc\xe1\xca\x38\x9f\x0a\x84\xf6\x9e\x43\xc6\x7e\xca\x49\xd0\x03\xaa\xf7\x57\x32\xee\xf9\x1e\xaa\x80\xd1\x78\x88\x96\x01\x4e\xbd\x70\x65\xec\xa7\xd4\x84\x53\x2f\x74\x1d\xdb\xae\x0b\xba\xc7\x05\xcd\x37\x37\xd1\x75\x41\xf7\xf0\x50\x32\xa2\x8e\x2e\x17\x64\x0f\x17\x64\xd7\x16\x94\x1f\xa0\x87\x1f\xa0\x6b\x0b\x2a\xb6\xea\xcc\x0b\x57\xc6\x29\x53\x6c\xa4\xc7\xc5\xde\x09\x1b\xfb\xa7\x7e\x7e\xbe\x5d\x14\x51\x17\xf3\x02\x7a\x5c\xde\x0a\x7f\x77\x5d\xde\x3d\x2e\x6f\x85\xb8\xfb\x54\x5f\x66\x2c\xbb\xb6\xa0\x2e\xf6\xbe\xa2\x4d\x6d\x41\xc5\x5d\x7b\xa8\x25\x19\x38\x5d\x01\x97\x1e\x17\xbb\x2c\x9c\xae\x8b\xbd\xef\x1a\xb2\xbf\xf7\x3a\x06\xba\x62\x2e\x7d\x5f\xb4\x97\xb5\xd1\x64\x0d\xf4\xe3\x3d\x55\x04\x5c\xe4\x0a\xe8\x67\x87\xec\xb7\xb1\x8d\xd4\x2e\x70\x22\x04\x48\x4f\x98\xf4\x8b\x25\xd7\x13\x56\x24\x83\x64\x31\x40\x46\x4e\x4c\xd8\xde\xf2\x13\xb2\xdf\x84\x1a\x6b\x72\x60\xd9\xf5\x20\xf9\x7d\x61\x4a\xa5\xb0\xd0\x2f\x46\x3f\xb1\x49\xbf\x58\xe8\x17\x59\x3b\x26\xd8\x6f\x11\x71\x91\xb9\x63\x72\x42\x5a\xc0\x02\x12\xf5\xc2\x04\xfc\x2d\x9c\x90\x0a\x64\x8b\x3f\x01\x56\x62\x7c\xdc\x84\xc6\x7c\x24\x38\x7f\x42\x7e\xf8\xb2\x26\xc4\x9f\x00\x0b\xc8\xa0\x80\xb4\x49\x87\x58\xe8\x10\x56\x98\xc0\x14\x39\xb1\x88\x9c\xc8\x76\x31\xe9\x17\x0b\xfd\x22\xe3\xc5\x98\xd5\x0d\x0b\x37\x81\x02\xd9\x26\xa8\x61\xcd\x97\x1d\x74\x59\x98\xec\x76\xbb\x76\x7b\x4f\x5a\x5a\x19\xe7\x4e\x83\xa0\x57\xd5\x60\x4a\xa5\xb0\xab\x0a\x7a\xd2\xc2\x4a\x13\xd8\x70\xb6\x22\x9a\xb7\xe2\x47\x80\x5d\x08\xd2\x93\x96\x7c\x68\x79\x86\x4f\x89\x6c\x25\x51\x27\xc0\x2e\x3a\x01\x5f\x6d\x81\x7d\xda\x99\x81\xef\xf9\x88\x27\x4c\xf8\xde\x99\x13\xf2\x83\xbf\x7c\xa7\x19\x09\xe4\x42\x4e\x60\x98\xa2\x1b\xce\x80\x90\x1f\xd9\x4b\x36\xb5\x3a\xe1\x2a\x54\xec\xdb\x84\xef\xed\x82\x18\xbd\xa3\x0e\x91\x23\xc0\xc9\x11\xf2\xc3\x4a\x19\x98\xbc\x88\xce\x93\xd0\xaa\xf6\x89\x9c\x88\xb6\xa2\x27\x5a\x01\x21\x7f\x8b\x88\xac\xa2\xe9\x26\xed\x60\x17\xde\x40\x51\x26\x13\xa4\xb1\x80\x34\xd0\xd1\x92\x51\x60\x11\x12\x21\x5d\x30\x44\x8d\x00\x84\x83\x91\x94\xc0\x80\xdc\x05\xce\x84\x70\x65\x46\xd9\x96\xcc\x8f\xab\xf2\x86\x44\x7f\x00\x84\x83\x91\x05\xd1\x80\xd4\x0a\xd2\x08\x19\xdb\x54\xdc\x03\x11\xc8\x25\x27\x30\x20\x48\x83\x50\x39\x2c\x96\x86\x68\x13\x80\x1c\xbf\x47\x48\x03\x79\x18\x11\xd6\x06\x88\xaa\x21\x6b\x03\x11\xe4\x25\x27\x30\xa0\xb8\x07\x42\xe5\x80\xc7\x0e\x2c\x74\x02\xde\x3b\x9f\xe9\xe1\xb1\x83\x3c\x8c\xce\xa0\x70\x65\x9d\x32\xcd\xa7\x43\x9a\xf4\xf0\x2c\x88\x36\x01\x28\xe3\x2e\x2d\x51\x35\xe4\x7c\x84\xc7\x78\x13\x39\x81\x01\xc5\x71\x51\xa3\x2b\xdc\x12\x90\xc6\x71\x72\x85\x9c\x14\x87\x17\xa3\x02\xd0\xe6\x3f\xfe\xa8\x02\xa4\x90\x7b\x00\x1e\xbd\x48\xa4\x04\x06\x4c\x33\x6d\x6f\xc8\xd8\xa4\xa2\x09\xb8\x38\xa4\x0a\x73\x42\x29\x1b\xce\x61\x50\x9b\xd6\x5c\xba\x08\x17\x4e\xdc\x16\x39\x00\x39\x07\x9c\xb1\x20\xa7\x87\x7a\x05\xd2\x2b\x18\x31\x70\xc2\x74\xc8\x8d\xe8\x8c\x05\x57\xc6\x75\x15\xbe\xc0\xfc\x53\xc6\xbe\xc8\xec\x81\x1b\xf9\x49\xc1\x74\xe8\xa4\x3b\x87\x40\x4e\x0f\xc3\x83\xd0\x91\x75\x2e\x80\x9c\x1e\xaa\x7d\xe8\xd6\x76\x2e\x80\x9c\x12\x1d\x1c\x50\x18\x13\x7e\x6b\x27\x52\xf4\x62\xc8\x9c\x70\x2e\x80\x9c\xf8\x2c\x1a\x86\xce\xe5\x70\x73\x22\xb1\x74\x17\x43\xe6\xc4\x70\x93\x21\xb1\x3c\x17\x43\x26\xc3\x48\xe6\x32\xae\xde\x90\xe3\x7f\x78\xec\x30\xb1\x74\x17\x43\xd7\xef\x78\xa3\x4d\xce\xe7\xd0\xf5\xeb\xd5\xf8\x39\x25\x66\xe3\x8c\xc2\x79\x19\xa5\xfc\xe3\x0f\x90\x52\x15\x43\x47\xc1\x6b\xef\xef\x67\xfc\x39\x52\xbf\x62\x94\x18\x1e\x97\x61\x54\x0d\xaf\xc6\xb4\xd0\x8b\x31\x74\x16\xbc\x2e\xff\xca\x40\xd9\x94\x2c\xa6\x9a\xb0\x72\x34\xb5\x19\xe7\x24\x51\x7d\x0c\xa1\xfb\xd1\xa2\x4d\x6a\xf1\x21\x04\xef\x05\xf7\xed\xa1\x5f\x54\x75\xf3\x18\x96\xae\x88\x8a\x6c\x30\x8f\x18\x5e\x25\x9f\x13\xf9\x79\x31\xa0\x45\xbf\x47\xa6\xb1\x54\x1d\x43\x19\x06\x03\xb1\x06\x8c\x25\xab\x34\x1e\x5e\x1a\xdf\x58\xc5\x8e\xc1\x22\x04\x8c\xf1\xb8\x88\xd3\xa5\x9c\xa7\x31\xfc\xc7\xd4\x0f\x1d\xae\x31\xbc\x8f\x0a\x40\x0f\xe5\x16\x78\xcd\xfc\x95\xb1\x23\xba\x7d\xc7\xe7\x07\x28\xff\x5d\xe0\x3b\xa6\xf6\xca\x2c\xf1\x29\xc7\x3e\xb5\x08\x73\x84\x8c\x1b\x49\x79\x93\x63\xce\x6b\xf2\x14\x8e\x42\xd0\x7e\xcc\x18\x05\x63\x06\x43\x97\xf3\x58\x7f\xca\x38\x8a\xad\x11\xee\x18\xa1\x8e\x89\xbc\xf5\x5e\x35\x7f\x65\xec\x8a\xae\xe0\x71\xfc\x78\x91\x0a\x18\x43\x9e\x83\x71\x62\x66\x78\x3d\x7f\xba\x82\x3f\xbf\x82\x93\x42\xc9\x9f\x62\x7c\xdf\x13\x7d\xe1\xf1\xfa\xe4\xb2\xff\x42\x0d\x64\x26\xbb\x7d\x52\x03\x5f\x8a\x36\x79\x75\x7f\xba\x9e\xbf\xe4\x7b\x5a\xa1\xe4\x8f\xb4\xaf\xf0\xc2\xfb\x2b\x63\x5f\xb2\xda\xcc\x7e\x4e\x32\xcf\xd0\x27\x9f\xfd\xe7\xd7\x6c\x52\xb8\xf8\x93\x77\xc0\x0b\xe8\x73\x62\xdd\x2c\x3e\xb2\x9f\xe1\x2b\x4f\xc8\x7e\x67\x56\x55\xf3\xf8\x42\x0f\x28\x5c\xfc\xc9\x03\xff\xb9\x53\x2f\xf1\x35\x50\x7c\x42\xe8\x9f\x23\xf4\xf4\xd2\x34\xfb\x94\xff\xe8\x95\xf1\x57\xc6\x36\xbb\xc6\xd7\xa3\xcd\x57\x32\xb5\xe9\x41\xb7\xc4\x57\x3d\xa1\xca\x78\x7c\xe6\x63\x78\x09\xb5\x3f\xf9\xd3\xbd\xc2\x3d\xa7\x97\x57\xd8\xa7\x5b\xf1\x83\xaf\x03\x69\x74\xf1\xe9\x48\x7f\x88\xb1\x6b\xfd\x74\xa6\xbf\x11\xdf\x51\x3f\x7e\xba\xfa\xbe\x38\x81\xac\x60\x80\x6a\xdc\xf1\xcd\x18\x83\xe6\x5a\xc7\xe8\x73\x1f\x76\x2a\x34\x75\x3f\x79\xe7\xbe\xe5\xeb\x57\x92\x64\xbc\xde\xbc\xcc\x3d\x27\x61\x78\x3d\x8c\x0f\x7f\x18\xff\xca\x38\x9f\x42\xb2\xfe\x10\x3e\x3a\xd5\xea\xc7\x5a\x1e\xf8\x3b\xf8\xf7\x33\xca\x58\x52\x80\xef\x44\x37\xe9\x60\xfc\x84\x72\xbf\x33\x43\xf6\xfb\xb9\xa9\x23\x36\x3d\xed\x30\x15\x1e\xcd\x29\xe7\xdc\x8c\x63\x54\x98\xdd\x33\x85\x72\xe7\x13\x7d\xa1\xaf\x5a\x05\xf9\xf0\x02\xfc\x2b\xfb\xf5\x73\x2a\x1c\x3e\x3d\xed\x30\x15\xfa\x9c\xa7\xc2\xe1\x33\x47\x5f\x88\x9c\x55\xae\x0f\x7f\x07\xff\xca\xf8\x7b\x32\x90\xe7\x1b\x53\xcd\xa3\x39\x59\xb0\x83\x19\xb7\x30\x19\x68\x31\xe5\x64\xf3\x37\xf2\xaf\xec\x77\x34\xa7\xae\xe1\x19\x88\x54\xa1\x19\x95\xe5\xc3\x2b\xed\xaf\x8c\x6d\xca\x37\x3e\xab\xf7\x53\xa1\x99\xa9\xeb\x74\xba\x6f\x3c\xb1\x4a\x12\x53\xc6\xac\x57\xd3\xe7\x44\xba\x58\x4c\xc5\xbc\xbd\x84\x3e\x27\x85\x58\xa6\x1c\x62\xfe\x08\x7e\x4e\x0a\x95\xa8\x84\x1e\x5e\x42\x7f\x65\x6c\x53\x71\x6d\x2f\xa1\xd7\x2b\x82\x98\xa6\x21\xb8\x1f\x2d\xf1\x1d\x3a\x4c\x41\xd9\xe9\x7e\x34\x3e\x22\x88\xa9\x7b\xd8\xeb\xec\x3b\x0b\xfe\x30\xa1\xc9\x8c\xf3\x5c\xb5\xc9\x04\x73\xfd\x99\xfd\x5e\x89\x15\xa6\x4c\x6e\xaf\xc0\xef\x55\xcb\x2a\xbb\xda\x1f\xd9\xef\xb2\x3c\x55\x90\x0f\x2f\xc8\xef\x95\xae\xb0\x29\xf7\xda\xbc\xa6\x72\xaf\x54\xb7\x7a\x45\x1f\xf1\x52\x3e\x4b\xfd\x30\xe5\x5c\xf3\x87\xf1\x73\xaa\x04\xd4\x53\xce\xb5\x39\x6f\x8b\x64\x51\xc5\x54\x84\x7d\xce\x18\xb4\x4e\x81\x42\x05\x4e\x0c\xa0\x77\x0c\x31\x65\x53\xcf\xf5\xe7\xaf\xb1\x27\x8a\x14\xcc\x75\xa7\xb8\x51\x45\x4f\xa9\x22\xa7\x13\xd0\x33\x86\xd0\xd3\xfb\xf0\xa7\xf7\x73\xaa\xd4\xa6\x53\xf6\xf6\xbc\xf6\x76\x6f\x54\x52\x53\x29\x88\xfe\x40\xff\xfd\x8c\x63\x13\xae\x9f\x3b\x76\x16\x5d\xf3\x53\x41\x38\xe7\x31\xb8\x32\x76\x45\xca\x6d\xee\xe8\x8a\xf6\xcf\xd6\xba\x9d\x18\xb8\x4e\xbf\xbc\x78\x33\x40\x82\xa2\x4a\x22\x36\xc0\x0a\x20\xc0\xca\x4f\x2c\x69\xb0\x95\xa2\x9f\x84\x72\x4b\x79\x86\x4e\x5e\x90\x13\x59\x6e\xb1\x74\xa1\xaf\xd0\x52\xac\xe0\xc4\x52\x1d\xc4\xf2\x84\x9e\xa4\xc8\xd1\x92\x4d\xbd\xf2\x0e\x19\xfb\x29\x5b\x61\xc5\x65\x4f\xaa\x5a\x2c\x69\x29\x7f\xce\x3f\x27\x85\x79\x96\xec\xe6\xe5\xa1\x80\xa4\x30\xcf\x92\x1d\xb1\xc2\x00\x6e\xbc\x60\x97\xdc\xfd\x2b\x0c\xe0\x46\x0d\xbd\x14\x70\xf7\x57\xff\x73\x92\x95\xbb\xf8\xde\x22\x56\x00\xfb\x46\xbf\xc7\x92\x5b\x6d\x05\x48\x60\x29\x26\x96\x40\x82\xf3\x26\x5c\x19\xc7\xa0\xcc\x1c\xe7\x3f\xb8\xb2\xbf\x57\xf0\x06\xbd\xe8\x0f\xa7\x40\xc8\x89\x15\x90\xd0\xab\xfd\x58\xee\xba\x4f\x9d\xe7\x68\x09\x27\xac\x30\x9f\x3b\x53\xe3\x96\xcc\xe7\x35\x7c\x8b\x2a\x6a\xb1\x86\x7e\x2f\x10\x7e\xd7\x32\x49\x7f\xac\xcf\x2f\x59\xbe\x8f\x08\xbd\xe8\x8f\xf5\x8d\x90\x71\xda\x84\xfe\x57\x60\x8f\xae\x65\x9a\xfa\x2e\xce\x7b\x27\x4e\x5f\x72\xb3\x3b\x97\x41\x4e\x2c\xf6\xc3\x5a\x1a\x5f\x1c\xc1\xce\xe3\xb9\x84\xc5\x9d\x89\x20\x27\x45\xb4\xc5\x44\x80\xe5\xee\xb0\xa4\x30\xc2\x52\x84\xcf\x49\x09\xae\x4c\xdf\xe9\xf7\xe2\x08\x0a\x98\x88\x8a\x00\xfb\xf1\xad\xa6\x0a\x3b\xd1\x0d\x60\xc7\x11\x34\x5e\x88\x5b\x47\x70\x07\xde\x36\xae\x91\x5e\xd1\xc7\xce\x9e\xdd\x41\x2d\xb2\x65\x59\xef\x7b\x92\x9a\x0a\x48\x44\x0c\x00\x27\x06\xc8\x89\x6f\x04\x42\xc5\xff\xf0\xe2\xff\x26\x1f\xda\xd6\x6d\xbf\x9d\x57\x84\xcf\x6a\x61\xcb\xe6\xde\xc5\xfb\xa1\x61\x0b\x6a\xef\x30\xb9\x15\x5b\x50\x0d\x3f\x76\xf5\xcf\x68\x5e\xea\x6d\x7d\x78\x79\x7f\x4e\x2a\xbc\xdb\xb2\xaa\x77\xe4\xb4\x70\xb3\x6f\xa1\x80\xed\xd1\xf3\xc4\x27\x07\xb1\xbb\x3e\xeb\xbe\xa1\x95\x7c\xb5\x65\x71\xfb\xf3\xf9\x57\xd6\x28\x7b\x25\x6b\x21\x63\x9b\x4a\x6a\xd9\x8e\x10\x9a\x66\x59\x08\x61\x07\x42\x50\xd6\xd6\x96\x77\x7d\x23\x7e\x8e\x6a\x67\xeb\xbc\x6e\xc4\xcf\xd1\x66\xdb\xd0\x7a\x07\xae\x57\x49\xde\x1e\x1a\x42\x9c\x65\x23\x68\x14\x29\x00\x76\x9c\x65\x95\xdd\x6d\x9d\xe5\x1d\x67\x59\x65\x77\x22\x05\xc0\x8e\xb3\xac\xb2\xbb\xad\x94\xba\xed\xe9\xb8\x49\x65\x77\x5b\xe9\xb8\x3b\xce\xb9\xa2\x1c\x5b\xe7\x7c\x5f\xd0\xd0\xa5\x1d\xb7\x2a\x23\xf7\x8c\x9f\xa3\x2b\x62\x4b\x05\xec\x19\x43\xe0\x2d\xb5\x85\x14\xb6\x27\x15\x24\x05\x39\xb6\x32\x75\x77\x98\x26\x0a\x72\x88\x67\x00\x3b\xbc\x72\xca\xdf\xda\x32\xf1\x77\x98\x2d\xa0\xda\xdc\x52\x2b\x3b\x00\x01\xe1\xf2\xd6\xa5\xbf\x43\xe3\x80\xd6\xe3\x56\x4e\xc1\x0e\x8d\x43\x7e\x57\x6c\x69\x9c\x1d\x1a\x47\x05\x80\x5b\xa6\xc9\x3e\xbe\x23\x14\xb1\xd8\xd2\x38\xfb\x9a\x2d\xad\x73\x4f\x8b\x9d\x00\xc7\xfd\xef\x49\xb9\x5f\x87\x1c\x26\x38\x61\xe0\x83\xa8\xf7\xc8\x97\x77\xc2\x32\x51\xb1\xde\x51\x66\x8e\xb3\x0a\x5c\x99\x51\xb6\x24\x8b\xe1\x11\xcb\x89\x66\x00\xe7\x8d\x21\x50\x49\x1f\x19\xf1\xe7\xde\xeb\xbd\x33\x39\xe5\xc8\xf8\x38\x25\x16\x8f\x7b\xfa\x28\xc2\x7f\xc2\x07\xa8\x30\xc1\xe1\x83\xad\x38\x25\xba\x42\x28\x24\x46\x00\x9c\x1a\xd3\x42\x3d\x76\xa4\x90\x4e\xc0\x01\x29\xb2\x53\xd5\xcd\xf0\x01\x92\x53\x15\x47\x59\x76\xc7\x6b\x97\x12\xa8\xdb\x8f\x7c\xe5\x27\xa0\x02\x68\x08\x1d\x41\x85\x13\x70\x40\xaa\xec\x08\x0e\x38\x05\x41\xce\xaa\xad\x3b\xf2\x19\x1c\x37\x68\xb2\xc2\x04\x22\x21\x80\x93\x10\xe4\x4c\x4e\x55\x1c\x19\x34\xe7\xea\xa4\xae\xb4\xb0\xa3\x9a\x49\x27\x28\xb8\x9f\x71\x47\x28\x31\xe0\x78\xfe\x50\xe6\xd3\x81\x38\x32\x5b\xce\xd5\x4e\x39\xf3\xe9\x40\x1c\xe5\x16\x1d\x44\x37\xb5\x03\x15\x0f\x74\x66\x83\x2b\xe3\xef\x49\xb5\x38\x5b\x41\xce\xcf\x6f\xd9\xc7\xc3\x5d\x3d\xfc\x2d\xf2\x8c\xe7\x87\xbc\x86\xaa\x84\x47\x94\x15\x82\x19\xfb\x23\x4b\x16\xc5\x3b\x4a\xbd\x1f\xaf\x64\x91\x42\x0f\x26\xfa\x0e\xa5\xd0\x0f\xcf\x65\x7e\x9f\xe7\x87\x9c\x47\x81\x64\xb3\x5d\x59\xfe\x85\x5d\x76\xa7\xa3\x76\xf7\x3b\x67\x34\xf4\xb6\x5e\xb1\xd8\x9e\x56\x41\x2e\x95\xdd\x09\x49\xb6\xbf\x85\x90\x54\xfe\xb7\x8d\x99\x74\x3b\x82\xbc\x99\x9c\xaf\x67\x10\x3e\x9c\xf1\xc4\xda\xfd\xfa\x7f\x06\xab\x88\xce\x48\xf1\xdd\xef\xa4\x9f\xc1\xa8\xd8\x19\xee\x92\xcb\x8c\x9e\x9c\x91\xf5\x5d\xfe\xf3\xf7\xd8\x26\x03\xf1\xc7\xe9\x7e\xaf\xec\xcf\x35\x38\x5b\xbf\xe7\xc8\x85\xb3\x7c\x36\xe3\x07\x67\x27\xfb\xcb\xb8\xcf\x7e\xf5\xcd\x5b\xfe\xf1\x47\x7b\xfe\x4f\xaa\xb3\xf2\x7f\x83\xbd\x67\xb3\x94\xf2\x38\x11\x12\x19\x72\xce\x7e\xf5\x5b\xaf\xff\x16\x7b\x41\x5c\x74\x1c\x17\x31\xbb\xee\x08\x16\x1d\x87\x45\x7c\x6e\xff\x6c\x6a\xa8\xe3\xc4\x49\xcc\xba\x3b\x9b\x0a\xea\xec\x6b\x82\x54\xe3\x37\x04\x52\x67\x97\x72\x25\x46\x89\x7a\xe0\x24\x6c\x0f\x1f\xd4\x3c\x9b\xf6\xc8\xd9\xce\x16\xfc\x3c\xaf\x64\xfa\xce\xdf\x8e\x7a\xc8\x24\x7c\x36\x3d\x23\x27\x98\x8b\x54\x70\x7a\x0e\x5f\xf4\x3e\xc7\x53\xcb\x7e\x56\xcc\x39\x2c\xa7\x3d\xae\xdd\xf8\xa6\xdb\x11\x31\xc7\x09\x62\x8e\x66\xff\xfb\x8a\xdc\xff\xf9\xf7\xf1\xcf\xff\xe7\xff\xfb\xff\xc7\x3f\xff\xc7\xf8\xf7\xfd\xc7\xfc\xef\x7f\xfd\x6b\xff\xc7\x7f\xad\x7f\x9b\xff\xf5\xc7\xff\x7b\xff\xf5\x8f\xb5\xcf\xbf\xfd\xc7\xfe\xd7\xfe\x9f\xff\xf9\xdf\xff\x9a\xfb\x8f\x7f\xfe\xe7\x3f\xef\x57\xfe\xdf\xff\x0a\x00\x00\xff\xff\x6a\xcb\x90\xcd\xbb\x0d\x04\x00"); -func _ece ()([]byte ,error ){return _dc (_bbga ,"UniKS-UTF8-H")};func _ggdd ()(*asset ,error ){_bce ,_gef :=_cagc ();if _gef !=nil {return nil ,_gef ;};_cefb :=bindataFileInfo {_ag :"GBT-H",_bc :44433,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492211,0)}; -_fggf :=&asset {_cd :_bce ,_dce :_cefb };return _fggf ,nil ;};func _bdac ()([]byte ,error ){return _dc (_fffa ,"KSCpc-EUC-V")};func _baaa ()([]byte ,error ){return _dc (_cecf ,"Hiragana")};func _dcbc ()(*asset ,error ){_cgede ,_gfbbc :=_ebaa ();if _gfbbc !=nil {return nil ,_gfbbc ; -};_dcab :=bindataFileInfo {_ag :"UniJIS-UTF16-H",_bc :185917,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492927,0)};_bcdf :=&asset {_cd :_cgede ,_dce :_dcab };return _bcdf ,nil ;};func _abegeg ()([]byte ,error ){return _dc (_abggg ,"UniGB-UTF8-H")};var _cedb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xd2\xcd\x8e\x9b\x30\x10\x07\xf0\xbb\x9f\x62\x8e\xdb\xc3\x16\x8f\x0d\xdb\x44\x8a\x90\x2a\x72\x28\x87\x4d\xab\xd2\x6c\x2b\x55\x3d\x10\x3c\x8e\x2c\x15\x83\x0c\x1c\xf2\xf6\xd5\x0c\x94\xaa\x87\xe8\x1f\x7e\xfe\x18\x3c\x26\xab\xea\x73\x1d\xc3\x0c\xd9\x97\x34\x74\x0d\xcd\xe0\x43\x74\x89\xa6\x61\x49\x1d\xc1\x8d\xee\x21\x2a\x85\x06\x5c\xe8\xe6\xbf\x8f\x12\x5d\xdf\x8e\x4a\x65\xd7\x18\xaa\x4b\xf3\x7c\xad\x1a\xf3\xfc\x09\x96\x89\x36\xaf\xea\x73\xf3\x98\x66\xea\xeb\xe8\x07\xb0\xeb\x7a\xb7\x8c\xdb\x1e\x00\xd9\x57\xba\x87\x69\x4e\x0f\x78\xfa\xe8\x86\x1b\xbd\x03\x47\x9e\xfd\x73\x72\x94\x42\xbc\xc3\x53\x75\x69\x70\xe7\x66\x19\xc7\xdf\xd4\x53\x9c\x79\x37\xf2\x8a\xa2\x93\x54\x59\xf5\xda\x8e\x97\xb6\x27\xf8\xef\x6d\xde\x64\x54\x06\xdf\x28\x4d\x61\x88\x80\xe6\xbd\xd6\x2f\xff\xfc\xdb\x63\x24\xc0\x6d\x97\x1f\xd7\xfa\x0c\x3f\x11\x50\x83\x29\xec\xd1\xfe\xda\xfc\xfb\xeb\xe0\xf6\x59\x68\xd7\x03\x74\xc1\xa5\x36\xde\x49\x9d\x8c\x46\x5b\xc2\x16\x68\xb4\x48\xbe\x4a\xce\x62\x58\x4c\x21\xc2\x81\xfa\xa8\x4e\x56\xeb\x43\x09\x1c\xc7\x12\xb0\xd0\x22\xed\x2a\xb7\x12\x30\x7f\x11\xe9\x56\x71\x3c\x27\x17\xa1\x55\x3c\xcb\x81\x05\xb5\x08\x22\xaf\x32\x22\xf9\x2a\x5c\xcb\x1e\xd4\xc9\x53\xee\x4b\xd8\x02\xed\x87\xbc\x50\x27\xef\xa5\xbe\xf7\x52\xdf\x6a\x96\xe2\x26\xc2\x81\x36\x17\x71\xab\x70\x7d\x5b\x70\xc7\xf7\x73\xf3\x7f\xbe\xe9\xbd\xf7\xdd\x92\x12\xc5\x59\xee\x59\x9a\xcb\x0d\x0b\x91\xf6\x6f\x69\x1c\x46\x5e\x25\xbf\x3f\x01\x00\x00\xff\xff\x94\xb1\x9b\xdd\x77\x02\x00\x00"); -func _cdfc ()([]byte ,error ){return _dc (_dbcc ,"EUC-V")};func _ddge ()(*asset ,error ){_bbea ,_eeed :=_gfgdc ();if _eeed !=nil {return nil ,_eeed ;};_cdagd :=bindataFileInfo {_ag :"UniGB-UTF8-V",_bc :780,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492788,0)}; -_efb :=&asset {_cd :_bbea ,_dce :_cdagd };return _efb ,nil ;};func _agg ()([]byte ,error ){return _dc (_daf ,"Add-RKSJ-H")};func _gegc ()(*asset ,error ){_cfbg ,_ggfca :=_beb ();if _ggfca !=nil {return nil ,_ggfca ;};_abg :=bindataFileInfo {_ag :"Adobe-Japan1-6",_bc :2225,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491338,0)}; -_eedf :=&asset {_cd :_cfbg ,_dce :_abg };return _eedf ,nil ;};func _aecc ()([]byte ,error ){return _dc (_cfbad ,"KSCms-UHC-HW-H")};var _dcfg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4f\x6f\x1b\xbd\x11\xc6\xef\xfa\x14\x7b\x4c\x0f\xa9\x49\x0e\xb9\x4b\x02\x86\x81\x22\x41\x51\x07\x48\x5b\xd4\x49\x5a\xa0\xe8\x61\x25\x91\xae\x80\x5a\x16\x64\xfb\x90\x6f\x5f\xcc\xef\x91\xfd\x3a\xef\x41\xe0\x33\xc3\xf9\xf3\x90\x1c\x0e\xb5\x57\x9f\x6e\x3f\xdf\x1e\x0f\xcf\xd3\xd5\xdf\xcf\x8f\xbb\xbb\xfe\x3c\x8d\xc3\x71\x7f\xee\x4f\x8f\x2f\xe7\x5d\x9f\xb6\xfd\xfe\x70\xdc\x6c\x62\x9a\xf6\x87\xdd\xf3\xab\xc8\xb0\x7b\x58\x4f\x9b\xcd\xd5\xf7\xe3\xe1\xcb\xed\xdd\xc7\xef\xdf\xfe\x1c\xe7\x8f\x7f\x99\x5e\x9e\xfa\x65\xe2\xd3\xed\xe7\xbb\x9f\x4f\xcf\xfd\xe1\xf6\x38\x1e\x27\x53\x80\xfd\xcb\xe9\x12\x64\x9a\xae\xfe\xd1\xef\x0f\x4f\xcf\xe7\x9f\xd3\x87\x3f\xed\x1f\xb7\xfd\x0f\xd3\xbe\x0f\xd7\xff\xed\xbc\xef\xe7\xc3\xf1\x7e\xfa\xf0\x65\x3d\xad\xc7\xf8\x36\x71\xf7\x72\x3a\xfd\xaf\x3f\xf4\xe3\xf3\xb4\xa0\xeb\xc7\x3d\xe3\xe6\xea\xd3\xd7\xf5\xf4\xd7\xf5\xa1\x4f\xbf\x12\xfa\xc1\x34\xb3\x3f\xfa\xf9\xe9\xf0\x78\x9c\xe2\x1f\x43\xa8\xbf\xa9\xbf\xfd\x3c\xf5\x29\x5e\xa2\xfc\xeb\xfb\xed\xe7\xe9\xdf\x71\x8a\x61\x4a\x65\x8e\xe9\x3f\x17\xfd\x3f\xbf\x3e\xee\xdf\xac\x62\x08\x5a\xc3\xee\xb0\xdf\xfd\x77\x3d\x6f\xae\x43\xd8\x86\x9b\xa9\xa6\xb9\x6d\xae\x53\x88\xe1\x66\x5a\x6a\x33\x70\x01\x27\xf0\x0c\x2e\x8e\x93\xf4\x15\x2c\xfd\xe2\xd8\x92\xc7\x59\xf0\x35\x73\x5c\x1d\xc7\xe6\x31\xad\x02\xa3\xc3\x19\x98\x1c\x36\xa0\x39\xf4\x18\x71\x97\x6f\xa6\x6a\x31\x82\x0b\x38\x80\x67\xb0\x73\x89\xdd\x71\xb8\xe0\x05\x9c\xc1\x15\x8c\x6f\x6f\x60\xcf\x6f\x6d\x7b\x33\xc5\x14\x73\x45\xd8\x21\xcc\x12\xf6\x9a\x59\x10\x3a\x42\x09\x08\xe3\x9d\xd9\x1a\x64\xd6\x10\xa2\xcc\x66\x84\xf4\xde\xcc\x34\x53\x10\xb2\x04\xcd\x94\xf7\x66\xb3\x66\x48\xba\x3a\xff\xd7\x89\x0a\x96\xbe\x81\x95\x64\x7d\xef\xbd\xf5\x89\x25\x81\x77\xe0\x08\xde\x83\x9d\x7c\x09\xbb\x9b\x69\xc9\x1c\x56\x09\x7b\xf0\x02\xee\xe0\x19\x3c\xc0\x1e\xb3\x70\xe8\x25\x18\x38\x82\xf1\x8d\x09\x9c\xc1\x06\xc6\x37\x66\x7c\x23\xb8\x80\xe5\x3b\x83\x13\x78\x01\xcb\xb7\x82\x1b\xb8\x11\x47\xbe\x2b\x18\xce\x71\x0b\x96\xaf\xf3\x2f\x49\x31\xf7\x60\xf8\xc7\x0e\x16\xb7\x01\x26\x7e\x82\x7f\x82\x5b\x82\x7f\x22\x57\x82\x7f\x62\x8d\x14\x6d\x31\x7c\x29\xda\x62\xc4\x4f\x0b\x98\xbc\xa9\x82\x15\x13\x9e\x14\x65\x49\xf0\x34\xc5\x87\xa7\x29\x26\x3c\x23\x31\x0d\x0e\x11\x1b\xcb\xac\x05\x5f\x23\x66\xc0\x3e\x63\x93\x59\x7b\x86\x67\x66\xed\x19\x9e\x19\x0e\x99\x7d\xa6\x22\x4b\x26\x0e\x65\x57\x32\xfc\x33\xf1\x33\xfc\xb3\x62\xc2\xbf\xb0\x96\x4c\xae\xe2\x71\x66\xdf\xc3\x9a\x52\x04\x7b\x6d\xa4\xd8\xc0\x1d\xbd\x6c\x06\xd8\x39\x2c\x41\x95\xbc\x78\xd0\xc5\x6b\xbc\xa6\xd0\x36\xd7\x16\x38\x8c\xea\x07\x69\x81\xc3\x68\x5e\xfa\x16\x38\x80\xe6\x55\x6c\x81\xc5\xb4\x58\xc1\x06\xc6\x17\xd2\xcd\x13\x58\x80\x68\x73\x42\x16\x72\x03\x27\xc7\x33\xf6\x7e\xd8\x16\xaa\x30\xb9\xaa\x7c\x0b\x58\xbe\xe4\xad\x1d\xbc\x78\xff\x7c\x6d\x62\x9b\x9a\x7f\xd7\xd5\x2c\xf8\xad\xaf\x69\x21\x47\x63\x33\x16\x72\x73\x99\x67\x33\x09\x10\x4f\x10\x5f\x95\x1c\xe2\x2b\xc9\x0d\xe2\x2b\xc9\x2f\xf6\x10\x37\x82\xee\xb0\x37\x88\x77\x61\x88\x77\xf9\x42\xbc\xcb\x17\xe2\x1d\xe2\xc6\x86\x0d\x6d\xaa\xc7\x4c\x63\xdc\x4c\xc9\x42\xf1\xc4\x16\xbc\x17\x9b\xf7\x20\xb3\xe0\x3d\xd4\xbc\xd4\xcc\x82\xb7\x93\xd8\x66\x4d\xd0\x18\xc9\x6c\x61\xd6\x44\x44\x58\x24\x14\x84\x2a\x41\x66\x4d\x82\x82\xad\x12\x66\x84\x2d\xc2\xa2\xc8\x3b\x09\x09\x41\xa7\xcd\x04\x57\xbe\x65\xb2\x44\xd2\x67\xe9\xe9\xcb\x26\xac\xec\x55\x42\x65\x82\x45\x45\x25\xaf\x44\xa5\x00\xad\xc0\xca\x2f\x68\x35\xb6\xdc\x12\xab\xcd\x10\x4c\x5a\x2d\xfb\x63\x7e\x73\x5d\x90\xc7\x0c\x27\x4d\xb0\xb9\x99\xc5\xfa\x15\xad\x46\x65\x1a\x57\xb4\x5d\x32\xec\xe5\x4c\x0a\x8b\x18\x91\xc2\xa8\xf7\x10\xf0\x36\xed\x74\x06\x93\xc1\x2f\xa0\x99\x2d\x18\x45\x4d\x54\x09\xe4\xb0\x06\x5b\x72\xd8\xaa\x09\xb9\x6c\x99\x50\xbe\x9d\x26\xd8\x10\xdb\x4b\x20\x7b\x8e\x12\x30\xcb\xec\x82\x32\xfa\x2d\xa9\x56\x84\x95\x30\x49\xa0\xf2\xb4\xe9\x79\x65\x81\xb0\xca\x1c\x92\x88\x64\xb6\x96\x0a\xb3\x42\x65\x6b\x3b\x8b\xd6\xaa\xf5\x15\x93\xa0\x99\x2c\x81\x5d\x28\xe4\xce\x58\x2d\xbc\x99\xe1\x22\x68\x1d\x4a\xb2\x68\x1d\x99\xc3\x5c\xba\x04\xce\x63\x19\x9c\x66\xde\x5c\x8f\x11\xb8\x71\x5e\x6e\x63\x04\x5a\xce\x82\x3e\xea\x2d\xf3\xfe\x3f\x86\xda\x89\xef\xdb\x18\xc6\xa1\xf9\x1b\x34\x86\xa1\x0f\x38\xd8\xe0\xa6\x04\xc7\x45\x36\x05\xac\x1b\x34\x83\x65\x2f\xdc\x5f\xdb\xd5\x18\xdc\xca\x5a\xdb\x2f\xad\xc2\x96\xb7\x56\x71\x5e\x8f\xf7\xdd\x1f\x4f\xff\x07\xe4\x43\xa4\x35\x14\x3d\xa2\xe8\x4a\xf0\x7d\xcc\x95\x9e\xed\x3d\xd2\x07\x0f\x9b\x17\xda\xb2\xdf\x4b\x1f\x78\x05\xab\x5e\xdc\x59\x2a\x1e\x40\xfe\x01\x15\xbf\x8a\x3e\x34\x54\x72\x5c\xa5\xda\xa2\xd2\x33\x63\xa8\x12\x5d\xdf\x20\xe1\xe5\xeb\x03\x8f\x5d\xd4\x83\x12\x51\x19\xef\x04\xbd\xbb\x58\x91\x8a\xa7\x20\x10\xde\xeb\xd3\x07\x5e\x2b\xfe\x2a\x15\x53\x2c\x36\xb4\x64\x3d\x18\xb2\xa2\x9e\x0a\x17\x3d\xf8\x7a\x7d\x48\x6c\x1d\xcd\x0a\xf6\x16\xf8\x67\xd0\x02\x2a\x6f\x07\x3e\xd0\xea\x02\xad\xd1\x3b\x81\x0f\x0b\x7b\xa8\x36\x1a\x2f\x9e\x8d\x43\xa7\x19\x84\x56\xd0\xb5\x99\x02\xa1\x63\x0e\xa9\x06\x37\x8f\xc2\x8c\xc3\x77\xdf\xe2\x68\x6a\xd6\x86\x6e\x95\x6e\xa0\x53\x69\x8a\xae\xf1\x7a\xc5\xa6\xab\xed\xf5\xe6\x8d\xc6\xd4\xcb\xa8\xda\xb8\x4a\xa7\x76\x50\xf1\xf5\x17\xcc\x5b\x44\x94\x4e\x9d\xa7\x4a\xa7\x8e\xd5\xd4\x4f\x14\xcf\x82\x3a\x06\x85\x6f\x59\xba\x22\x9d\x5a\x8a\xec\xb2\xec\x92\xae\xaa\x49\x37\x4b\xa7\x6b\xba\x95\x4e\xb7\x2a\xa9\x21\x88\x4b\x91\xaf\xfa\x69\x29\xd2\xc9\xd7\x77\x6f\x0c\xce\x62\x0c\x2a\xa9\x36\x54\x65\xa0\x9a\x2f\x7f\x52\xe3\xa5\xda\x55\xdc\x08\xfe\x4d\xf3\xf6\x8d\xb1\x7b\x39\x9f\xfb\xf1\x99\x2f\x1a\x3e\x22\xfc\xc3\xe0\x70\xec\x6f\x9f\x4d\xa7\xc7\x93\x7b\xf1\xfb\x7f\x00\x00\x00\xff\xff\x03\x19\x3b\x09\x62\x0d\x00\x00"); -func _bgb ()(*asset ,error ){_adbgb ,_dcdca :=_cace ();if _dcdca !=nil {return nil ,_dcdca ;};_abfd :=bindataFileInfo {_ag :"Ext-H",_bc :13186,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491886,0)};_eedc :=&asset {_cd :_adbgb ,_dce :_abfd };return _eedc ,nil ; -};func _aeae ()([]byte ,error ){return _dc (_ebfa ,"KSC-H")};var _fcba =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\x5f\x6b\xdb\x3c\x18\x05\xf0\x7b\x7f\x0a\x5d\xf6\xbd\xe8\x1b\x4b\xb2\xfe\x41\x29\x8c\x66\xb0\x74\x74\x1d\xcd\xda\x0d\xc6\x2e\x14\xe9\x49\x30\x2c\xb2\xb1\x1d\x58\xbe\xfd\xd0\x79\xb2\xf4\x22\x28\xf9\x59\x3a\x39\x96\xa3\xac\x1e\x36\xeb\x4d\xe9\x17\xb1\xfa\x3a\x0d\x69\x4b\x8b\xd8\xf7\x25\x4f\x34\x0f\xa7\x29\x91\xd8\xd1\xa1\x2f\x4d\x23\x95\xc8\x7d\x5a\xfe\x7d\xc4\x90\x8e\x71\x6c\x9a\xd5\xc7\x3f\xcb\xed\xcb\xe7\xed\xe3\xed\x27\x71\x9a\xe9\x82\x0f\x9b\xf5\xf6\x3c\x2f\x74\xdc\x94\xfd\x20\x34\x2f\xce\xa7\xf1\x12\x20\xc4\xea\x85\x0e\xfd\xbc\x4c\x67\x71\xf3\x21\x0f\x3b\xfa\x4f\x64\xda\x57\x7f\x9e\x32\x4d\x7d\x39\x88\x9b\xc7\x38\xc6\x22\xaf\x17\xb6\xa7\x71\xfc\x4d\x47\x2a\x8b\x50\x30\x2a\x19\x63\xb3\x7a\x78\x8a\xe3\x97\x78\x24\xf1\x5e\xe6\x0d\x97\x70\xe5\x8d\xa6\xb9\x1f\x8a\x90\xea\xff\xb6\x35\xef\xfe\xed\x3c\x92\x90\x97\x88\xd7\xcd\xfa\x79\xbf\x9f\x69\x11\x5e\xb6\x3c\xe7\xc7\xeb\x66\x2d\x7e\x4a\x21\x5b\xa1\x8c\xd6\xfa\xd7\x65\xea\xf7\xa7\x21\x5f\x17\xea\xc0\xb7\x94\xfa\x3c\xc5\x72\xa0\xe6\xce\xcb\x4e\xde\x8b\x3a\xa8\x7b\xe1\xbc\x77\x20\xcd\xa4\xef\x85\x57\xd6\x83\x3a\xa6\xae\x92\xeb\x40\x91\x29\x82\x14\x68\xc7\xb4\x03\xc9\x4a\x86\xc9\xe4\x1a\x1f\x40\xb6\x05\xd9\x0e\x84\x2c\x6b\x98\x4c\x5d\xe8\x79\x96\x65\xb2\xc8\xb2\x20\xc7\xe4\x40\x01\xe4\x99\x3c\x08\x55\x6d\x00\xb9\x88\x78\xcc\xf2\x5c\xc2\xa3\x97\x65\x4a\x4c\x09\x0b\x35\x28\x33\x65\x94\x00\x45\x9e\x15\x79\x56\xdb\xdc\x79\x15\xf6\x95\x30\xb8\x20\xeb\x37\xaa\x88\x2d\xc4\xe0\x82\x0c\x20\xcd\xa4\x2b\x29\x2c\x8c\x86\xc9\x80\x24\xc8\x31\x39\x50\xdd\x42\x95\x38\x2b\x21\x4b\xd5\x12\x8a\x98\x88\xa9\x03\x71\x3c\x71\xbc\x01\x71\x3c\x71\xbc\x05\x25\xa6\x04\xaa\x8f\x56\x77\xd8\x7b\x0c\x2e\x28\x0f\x52\x4c\x0a\x14\x40\x1d\x53\x7d\x42\x41\xb7\x20\xcb\x64\x41\x12\xe4\x99\x3c\xa8\xb6\xd7\x96\xb3\x2c\xb2\x74\x6d\xaf\x3d\xaa\x62\x70\x41\x77\x20\xc3\x84\xaa\xda\x80\x1c\x13\x76\x42\x5b\x10\x31\x11\x08\xed\x03\x2f\x0c\x5c\xa2\xb6\x77\x06\x8f\xc3\x59\xcc\xea\x6a\x55\xe7\x71\x8f\xce\x63\xbf\x8c\xad\x47\xef\xfa\x83\xaf\xef\xeb\xa1\xbf\x1e\xc2\x74\x9a\x26\x2a\x0b\x8e\x3c\x0e\x5a\x3d\x29\x7d\xa1\xeb\x7f\xca\x38\x8c\x75\x15\x5e\x7f\x03\x00\x00\xff\xff\x3b\xd9\x46\xc4\x7f\x04\x00\x00"); -var _aacf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x41\x6b\xf3\x46\x10\x86\xef\xfb\x2b\xf6\xf8\xf5\x90\x7a\x67\x66\x25\xad\x40\x18\x4a\x42\xc0\x84\xb4\x25\x29\xed\x59\x96\x56\x46\x50\x4b\x42\x96\x0f\xf9\xf7\x65\xe6\x95\x53\xf8\x0e\x41\xd1\xe3\xdd\xd7\xcb\xf3\x7a\xe7\xf0\x7c\x7a\x39\x4d\xe3\xe6\x0f\x7f\xae\x73\xf7\x99\x37\x3f\x8c\x53\xbf\xe6\xdb\x7c\x5f\xbb\xec\xcf\xf9\x32\x4e\xce\x11\xfb\x7e\xec\xb6\xc7\xab\x3d\xba\x6b\xbb\x38\xa7\xfb\x3f\xbf\x6e\x5b\xbe\x9e\xa6\x61\xf6\x82\x75\xfd\x7d\xd9\xd7\x7a\x7f\xf8\xc8\x97\xf1\xb6\xad\x5f\xfe\xc7\x6f\xfd\x7c\xce\xbf\xf8\x3e\x0f\xca\xff\x58\xfb\xbc\x8e\xd3\xc5\xff\x78\xfb\xf8\x86\x9f\xf7\x65\xf9\x37\x5f\xf3\xb4\xf9\xd2\x58\x9e\x7a\x7b\xba\xc3\xf3\x7b\xbb\xfc\xde\x5e\xb3\x3f\x58\xce\xd3\xdb\xc7\x13\x96\xd8\x27\x7f\xe7\xf5\x36\xce\x93\xa7\x5f\x43\xe0\xff\xf1\x5f\x5f\x4b\xf6\xb4\x27\xfc\xf3\x3e\xf7\xd9\x87\x47\xde\xe9\xe5\x79\xbe\x4f\x9b\xa7\xc8\x92\x00\x09\xc7\xee\xe6\x3e\xdf\x96\xb6\xcb\x6b\x3b\x5d\xb2\xf3\xbe\x09\x21\x84\xa3\x6f\xa4\x7a\x7d\x3d\xea\x99\x7e\x5a\xe1\x8a\x72\xdf\x39\xf6\x20\x8f\x1d\x21\x0c\xc3\xd1\x07\xd7\x04\xc2\x3b\xe9\x3b\x17\xa5\x6b\x02\x83\xb0\x92\x82\xd8\x35\x41\x40\x44\x49\x55\x26\xd7\x84\x08\x12\x95\x50\xe0\xe8\x9a\x50\x00\x15\x86\x38\x69\x76\x09\x54\x1a\x2a\x44\xc3\x2b\xa0\xca\x50\x55\x6b\x7a\x02\x4a\x76\x82\x10\x35\xbe\x06\xaa\x0d\x49\xd0\xf8\x16\xa8\xdd\xcf\xa9\xf1\x67\xa0\xb3\xa1\x44\x1a\xdf\x01\x75\x8a\x24\x54\x1a\xdf\x03\xf5\x86\x84\x35\x3e\x03\x65\x43\x45\xd2\xf8\x01\x68\x30\x94\x62\x70\x0d\xc1\x14\x99\xa9\x18\xea\xd2\x35\x04\x59\x64\xb2\xa2\x14\xec\x1a\x82\x2d\x32\x5b\xb1\x0c\xc9\x35\x04\x5d\x64\xba\x62\x2a\xa3\x6b\x08\xbe\x28\xee\x4e\x35\x1e\xbe\xc8\x7c\x15\x52\x69\x3c\x7c\x91\xf9\x2a\x4a\xd1\x78\xf8\x22\xf3\x55\xa4\xa4\xf1\xf0\x45\xe6\xab\xa4\xa8\xf1\xf0\x45\xe6\xab\x8c\x41\xe3\xe1\x8b\xcc\x57\x59\x6a\xb1\x04\x5f\x64\xbe\xca\x5a\x9b\x25\xf8\x22\xf3\x55\x91\x56\x4b\xf0\x45\xe6\xab\x8a\x5a\x2d\xc1\x17\xe5\xbd\x7f\x8d\x87\x2f\x32\x5f\x55\xad\xd5\x32\x7c\xb1\xf9\x4a\xa4\xd5\x32\x7c\xb1\xf9\x4a\x51\xab\x65\xf8\x62\xf3\x95\x2a\xad\x96\xe1\x8b\xcd\x57\xaa\xb5\x5a\x86\x2f\x36\x5f\x35\x6b\xb5\x0c\x5f\x6c\xbe\xea\xa8\xd5\x32\x7c\xb1\xf9\xaa\x2b\xad\x96\xe1\x8b\xcd\x57\x5d\x6b\xb5\x0c\x5f\x9c\x1e\xbf\x55\xcd\x87\x30\xae\xc1\xa2\x96\xcb\x30\xc6\x2d\x58\xa5\xed\x32\x94\xb1\x29\xd3\xf6\xf5\x2b\xe0\x8c\x3b\x30\xd6\x7e\x19\xd2\xb8\x07\x2b\xb4\x60\x86\x35\xce\x60\x95\x36\xcc\xd0\xc6\x03\x2e\x49\xd0\x8a\x65\xbf\xc3\x01\x8c\xb5\x63\x81\x38\x21\xb0\x42\x4b\x16\x98\x13\x7e\x5c\xb0\xe0\x1a\x81\x3a\x31\x75\x24\x41\x6b\x16\xb8\x13\xdc\x4d\x11\xed\x59\x20\x4f\x70\x39\xa5\xd0\xa2\x05\xf6\x04\xb7\x53\x92\x36\x2d\xd5\x3e\x4f\xea\xfe\xe8\x29\x86\x14\x6c\xaa\x3c\xa6\x87\xfe\xaf\xf3\xf5\x7b\xe6\x75\xf7\x75\xcd\xd3\x66\xd3\xd5\x06\x9b\xce\xab\x71\xca\xdf\x93\x7a\x99\x17\xdd\x65\x7f\xff\x05\x00\x00\xff\xff\x7c\x8a\x82\xe4\xd5\x05\x00\x00"); -func _dcag ()(*asset ,error ){_fbde ,_daae :=_aeaa ();if _daae !=nil {return nil ,_daae ;};_ecdb :=bindataFileInfo {_ag :"HKdlb-B5-V",_bc :613,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492332,0)};_gffa :=&asset {_cd :_fbde ,_dce :_ecdb };return _gffa ,nil ; -};func Asset (name string )([]byte ,error ){_gffe :=_c .Replace (name ,"\\","/",-1);if _ebbgbc ,_face :=_fcbe [_gffe ];_face {_cdff ,_cebb :=_ebbgbc ();if _cebb !=nil {return nil ,_d .Errorf ("Asset %s can't read by error: %v",name ,_cebb );};return _cdff ._cd ,nil ; -};return nil ,_d .Errorf ("Asset %s not found",name );};func _dggg ()(*asset ,error ){_cdb ,_cae :=_gdc ();if _cae !=nil {return nil ,_cae ;};_abcc :=bindataFileInfo {_ag :"Adobe-KR-6",_bc :1493,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491438,0)};_acfa :=&asset {_cd :_cdb ,_dce :_abcc }; -return _acfa ,nil ;};func _caebb ()(*asset ,error ){_ffggd ,_dgfcd :=_gggf ();if _dgfcd !=nil {return nil ,_dgfcd ;};_aae :=bindataFileInfo {_ag :"RKSJ-H",_bc :2884,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492632,0)};_dbcg :=&asset {_cd :_ffggd ,_dce :_aae }; -return _dbcg ,nil ;};var _cebg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x90\x4f\x4b\xc4\x30\x10\xc5\xef\xf9\x14\x73\x5c\x0f\x6b\x93\x4a\x15\x61\x59\xd0\x56\xb0\x87\x5d\xc5\xae\x7f\x40\x3c\x74\x93\x69\x09\xd8\x49\x48\xd2\x43\xbf\xbd\x24\xad\xdd\xc3\x30\xcc\x6f\x78\x33\x8f\x97\x95\x75\x55\x93\x0e\x90\xbd\x3a\x23\x1b\x0c\xd0\x69\x52\x0e\xbd\x19\x9d\x44\x38\x63\xaf\x89\x31\x91\x83\xd2\x32\xfc\x8f\xa9\xc9\xa1\xb5\x8c\x65\x4f\x27\xa4\xed\x63\xb1\x7d\x86\xd1\xe3\xc2\xca\xba\x6a\x26\x1f\x70\xa8\xa9\x33\x70\x33\x6b\xd5\x68\x17\x3d\x40\xf6\x86\xbd\xf6\xc1\x4d\xb0\x79\x50\xe6\x8c\x57\xa0\xb0\x8b\xfc\xc5\x29\x74\x9a\x7a\xd8\x94\xc7\x46\xac\xb8\x19\xad\xfd\xc5\x01\x29\x00\x4f\x0c\x49\xa5\xce\xb2\xf2\xd0\xda\x63\x3b\x20\x24\x27\x83\x9f\xbd\xc4\x5d\x5a\x7d\xa0\xf3\xda\x10\x08\x7e\xcd\x79\x71\xe1\xa7\xc9\x22\x88\xe5\xc6\xd7\x7b\x5d\xc1\xb7\x00\xc1\x21\x2f\x8a\xfb\xdb\x9f\x85\x7f\x1e\x8c\xc2\xe5\x23\x13\xb3\x7b\xa9\x95\x6b\xa9\x47\xb6\xcb\xf9\x1e\x76\x77\xb8\x07\x11\xed\xac\x3c\x0d\x31\x87\xd5\x99\x1c\x9d\x43\x0a\x29\x85\xf4\x3c\x1e\xd4\x84\x6b\xca\xd6\xd8\xa8\x4a\xf5\x17\x00\x00\xff\xff\x0d\x7d\x06\x62\x91\x01\x00\x00"); -func _ccgab ()([]byte ,error ){return _dc (_fdb ,"Adobe-GB1-1")};func _fegc ()(*asset ,error ){_afgc ,_ceagf :=_dcgg ();if _ceagf !=nil {return nil ,_ceagf ;};_edfg :=bindataFileInfo {_ag :"HKm471-B5-H",_bc :14260,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492427,0)}; -_egec :=&asset {_cd :_afgc ,_dce :_edfg };return _egec ,nil ;};func _bf ()([]byte ,error ){return _dc (_fb ,"78-H")};var _bbdac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x98\xc1\x6e\x23\xb9\xd5\x85\xf7\x7e\x8a\x5a\xce\xbf\xe8\xdf\xe4\xbd\xa4\x48\x02\x0d\x03\x41\xf7\x22\x1e\x60\x92\x20\x4e\xcf\x04\x08\xb2\x28\x49\xac\x86\x80\x58\x16\x64\x7b\xd1\x6f\x1f\xdc\xf3\x29\x0e\x26\x8b\xc1\x99\xfe\x4c\xde\xba\xe7\x90\x45\x96\x7d\xff\xe5\xf1\xeb\xe3\xf9\xf4\xb6\xdc\xff\xe5\xfa\x72\x78\x9a\x6f\xcb\x76\x3a\x1f\xaf\xf3\xf5\xe5\xfd\x7a\x98\xcb\x7e\x7e\x3f\x9d\xef\xee\xb2\x2d\xc7\xd3\xe1\xed\x3f\xff\x94\x1c\x9e\xd7\xcb\xdd\xdd\xfd\xb7\xf3\xe9\xe7\xc7\xa7\x4f\xdf\xbe\x3c\xd9\xa7\x3f\x2e\xef\xaf\xf3\xc6\xbf\x3c\x7e\x7d\xfa\xf1\xfa\x36\x9f\x1f\xcf\xdb\xcb\xe2\xcc\x3f\xbe\x5f\x6e\x35\x96\xe5\xfe\xaf\xf3\xfb\xe9\xf5\xed\xfa\x63\xf9\xe9\x0f\xc7\x97\xfd\xfc\xbf\xe5\x38\xb7\xe0\x7f\xbe\x1e\xe7\xf5\x74\xfe\xbe\xfc\xf4\xf3\x7a\x59\xcf\xf9\xe3\x07\x4f\xef\x97\xcb\xbf\xe6\xf3\x3c\xbf\x2d\x45\x6c\x9e\x8f\xd2\xbb\xfb\x2f\xbf\xac\x97\x3f\xad\xcf\x73\xf9\x7d\x3f\xbf\x7d\xfa\x55\x03\xf4\xf3\x5f\xe7\xf5\xf5\xf4\x72\x5e\xb2\xfd\x7f\x4a\xbb\xff\xf2\xbf\xfd\xb8\xcc\x25\xdf\x0a\xfd\xfd\xdb\xe3\xd7\xe5\x1f\x79\xc9\x69\xb1\x5a\xca\xf8\xe7\x8d\xff\xf6\xcb\xcb\xf1\x63\x54\x4e\x09\x1b\x87\xd3\xf1\xba\x9e\xbf\xcf\xbb\xcf\x29\x59\x7a\x58\x3e\xa7\x54\xf7\x0f\x8b\x79\x0e\x52\x0f\x90\xc3\xc3\xd2\x5b\x1e\x42\x47\xa1\x36\x1f\x16\x1b\x16\x64\xad\x22\x21\x36\x34\x6d\x4f\xa1\x90\x6e\xbb\x71\xf7\xd9\x52\x0e\x84\xb4\x3e\x5c\xa8\x82\xaa\x90\x09\xed\x40\x3b\xa1\x2a\xd4\x41\x23\x6a\xf5\x2c\x74\x00\x1d\x03\x35\x95\x37\x6a\x19\xb5\xba\x10\xb5\x8c\x5a\x2d\x90\x9b\x50\x48\xb7\xa6\x26\xdc\x41\xae\xf2\x81\xf2\x50\xab\x92\xe6\x5d\x24\x43\x72\x90\x9d\x88\x41\x2c\xc8\x10\x71\x88\x07\x69\x22\x15\x52\x1f\x96\x6c\x96\x4b\xb0\x43\x11\x0b\xe9\x9e\xb3\x10\xc3\x42\xba\xe7\x24\xb4\x03\xed\x84\x22\x99\x3c\x41\x21\x3d\xdd\x50\x03\x35\x21\x95\x9f\x1d\xd4\x85\x54\x7e\x0e\xd0\x10\x0a\x83\x46\x58\x76\x0b\x2b\x52\x36\x57\xa4\x92\xd6\x47\xd4\xb2\xb9\x09\x85\xdc\xf2\xab\x49\xc9\xd4\x14\x39\x14\xad\x45\x4d\x06\x0a\xdb\x45\x6b\x51\x53\x01\x55\x8d\xaa\x42\x3b\x50\x13\x72\xa1\x0e\x1a\x42\x4c\x5c\x41\x7b\x21\x9e\x78\x00\x45\x5f\x65\x50\xeb\x08\x3a\x0a\x31\x6a\x82\xa6\xd0\x4e\x68\x03\x6d\x42\xb1\x8a\x95\x2d\x28\x69\x35\xa9\x89\x9c\x41\x59\x48\xe5\x33\x86\x42\x5a\x4d\x45\xc8\x41\x2e\xa4\xf2\x19\x8f\x21\xad\x0c\x25\xc1\x76\x96\xb4\x32\x28\x8f\x6d\x6d\xe7\xa2\x1d\x5e\x73\x03\x29\x89\x41\x79\x92\x08\x69\x65\x28\x89\x3c\x40\x43\x4f\xa4\x3c\xe1\x84\xb4\x9a\x92\xd0\x1e\xb4\x17\xa2\x3c\x79\x85\xb4\x6a\x34\x41\x5e\x21\xad\x9a\xf2\xca\xe4\x15\xd2\xaa\x61\x9b\xbc\x42\x5a\x35\xf5\x65\xe4\x65\xca\xcb\x64\xdb\xc8\xcb\x94\x97\xa9\x55\x23\x2f\x53\x5e\xa6\xa0\x8d\xbc\x2c\xc2\xa9\xae\x56\xd9\x72\x92\x56\x5d\x4f\xe4\xfd\x94\xb4\xea\x6a\xd5\x08\x27\xa4\x55\x97\x21\x23\x9c\x90\x56\x9d\xbe\x08\xc7\x14\x8e\x5e\xb5\x6a\x84\x63\x0a\xc7\x69\x95\x70\x4c\xe1\x38\x7d\x11\x8e\x29\x9c\x4c\x13\x84\x63\xb2\x9d\x55\xcb\xb1\xed\xb2\x9d\x55\xcb\xb1\xed\xda\x00\x26\x43\xce\x06\x70\x79\x4c\x4c\xc4\xa3\xab\xfb\xa4\x70\x9c\xee\x5d\xdd\x27\x35\xe1\x74\xef\xea\x4b\x2f\x72\x75\x9a\x70\x35\x51\x94\x44\xa1\x89\xa2\x26\x8a\x36\x40\xa1\x89\xa2\xec\x8b\x9a\x28\x64\x5f\x94\x7d\x51\xad\x42\xf6\x45\xad\x16\xf5\x55\x68\xb5\xa8\xd5\xa2\xbe\x0a\xad\x16\x2d\x47\x91\xc7\xc2\x72\x14\x2d\x47\x51\xab\x85\xe5\x28\x32\x54\xe9\x0b\x43\x45\x86\x2a\x4f\xc4\x50\x51\xf6\x35\xfa\xda\xb1\x0b\x25\xdd\x2c\x0b\x1d\x41\x3a\xb3\xe3\x26\xb1\x1d\xbb\x50\xd2\xcd\x4c\x68\x03\x6d\x42\x51\xab\x71\xc0\x48\xb2\xe5\x16\x8d\xb5\x55\x51\x48\xba\x45\xd2\x9e\xe2\x4c\x0a\x89\x28\x7a\x9c\x1d\x9e\x74\xc2\x78\xd2\xcb\x3d\x92\x90\xde\x64\xa4\x5b\x4b\x42\x05\x54\x35\x2a\x0b\x1d\x40\x1f\x87\xa1\xeb\xae\xb9\x49\x1b\x75\x27\xb4\x81\x36\x21\x95\x2f\x34\xa1\x25\x1a\xb9\x0b\xf1\x44\xad\xc7\xc8\x23\x2e\xfc\x8f\x2b\xf7\x6e\x8c\xff\xbd\x84\x3d\x69\x69\x90\x36\x4c\x2d\x6a\x1d\x90\x36\x4c\x2d\x2a\x74\xa4\x8d\xc8\xce\xd3\x8e\x27\xed\xf4\xa4\x78\xf5\x3d\x75\x50\x07\xc9\x48\xa7\x7c\xa7\x7c\x15\xa2\x7c\xa7\xbc\xbc\xf5\x09\x9a\x42\xf2\x36\xf6\x42\x21\xdd\x9a\x9e\x38\xc8\x69\x68\x99\x9b\xfa\x5a\x49\x60\x55\x02\xa6\x04\x56\x9a\x58\x69\x42\x8b\xb5\xd2\xc4\xaa\x26\x5c\x1e\x57\x9a\x58\xd5\x84\x53\x0b\x8f\xab\x3c\xba\x9e\x78\xa0\xd6\x41\xb5\x5c\x1e\x27\x68\x82\xe4\x71\x52\x7e\x52\x5e\x1e\x27\xe5\x27\xe5\xe5\x71\xe2\x71\xca\xa3\xcb\xe3\xc6\xc4\x6d\x27\xa4\xee\x37\x3c\x6e\xec\x85\xe8\xcb\x75\x0b\x22\xdd\x63\xc3\xbb\xb3\xfb\x5c\x9b\x34\x8f\xda\xc5\x1c\x16\x7b\xcd\x1d\x54\x40\x45\xc3\x76\x4c\xad\x30\x5d\xff\xb2\xe4\xba\x2d\x91\x18\xc6\x43\x1b\xac\xc1\xaa\x58\x87\x75\x18\x73\x07\x6c\xc0\x78\xec\x0a\x5b\x61\x3b\xb1\x3d\x6c\x2f\xd6\x68\xe5\x00\x3b\xc0\x4c\xec\x08\x63\xe3\x33\x4c\xc1\x79\xbc\x44\x31\x4c\x8f\xe5\x2d\x92\xb4\x51\xd4\x71\xc6\x58\x96\xb1\xa2\x99\x19\x63\x59\xdf\x35\x0e\xc2\x57\xc6\x57\x87\xe1\x2b\xa4\x7b\x7c\x5d\xb9\x67\x6c\x65\x6c\x75\xb5\x96\xb1\x15\xef\x64\xb0\x22\x76\xeb\x6d\x6a\x6d\x68\x4d\xef\xa9\xc7\x9d\x15\xc3\x94\x88\x2e\x2d\xa4\xbb\xf6\xa4\x1b\xcb\x65\x5a\xae\xc2\x28\x4c\x19\xcb\xc5\xe2\x1b\xae\x42\x82\xe9\x09\x86\x2d\xdd\x64\xa3\x32\x0c\x5b\xba\xc9\x46\xd1\x6a\x19\xae\x0c\x0b\x43\xab\x60\x58\x08\xe9\x5e\x41\x2c\x8c\xee\xad\x81\x03\x63\x0d\x0c\xa3\x83\x76\x31\x1a\xb7\x54\xb6\x94\x14\x88\xb3\x0b\x43\xba\xb3\x09\x1d\xa3\x6e\x0c\x53\x23\x8e\x53\x67\x63\x2a\x36\xc7\xa9\x57\x86\x31\x15\x57\x2e\x57\x71\x93\xb8\x3b\xae\x42\xb2\xe9\x93\xd3\xdd\xb1\x15\x12\x4c\x1e\x9c\xd5\x0a\xe9\x5e\xe4\xc1\x71\x1a\x12\xc3\x28\x87\xd5\x90\xee\x45\xb6\x9c\x2d\x18\x12\xc3\xb4\x1d\x1c\xfb\x21\xc1\x68\x0e\xfb\x05\xfb\x3a\x26\x9d\xd3\x57\x12\xe3\x54\xaf\xe0\xbf\x68\xa1\x31\xc1\x89\xec\x71\xd1\xc5\x54\x75\xc7\x09\x2b\xe9\x5e\x19\x86\xaf\x82\x2f\x83\xe1\x8b\x53\x97\x2d\x5d\xf0\xa5\xdb\x6f\x54\x25\x52\xb0\x55\xf0\xa0\x43\xd0\x0b\x1e\x8a\x5e\x23\x12\x29\x37\x0b\xda\xaa\x4e\x7d\xb6\x6a\xc5\x15\x2f\x48\xc5\x55\xd5\x89\xca\xbe\xac\x98\xaa\x2c\x2a\x2b\x58\x71\x15\x12\x8c\x71\xac\x6a\x48\x30\x2d\x7e\x65\xff\x56\xdc\xf3\x72\x55\xdc\x57\xb9\x2f\x2a\xd7\xe8\x24\xa4\x7b\xdc\x1c\xdb\xa6\xd3\x66\xdb\xf4\xc1\xde\x63\x13\x6e\x9b\x0e\x0c\xa4\x5b\x9c\x35\xdb\xa6\xc3\x01\xe9\xd6\x34\x51\x77\x27\xd2\x46\xac\xfc\xb6\x69\xe5\x91\x36\xe2\x53\x7c\xdb\x9c\x51\xae\x51\x49\x13\xe3\x83\xe8\x26\xad\x8f\x14\xa8\x32\xb1\x32\xb1\x0a\xd1\x44\xe5\x84\xde\x09\x51\xab\x52\x0b\x44\x5f\x21\xdc\xe9\xdb\xa6\x9b\x03\x69\xbd\xff\xfe\x6a\x8e\xff\x7f\x5e\x2f\x77\x1f\xbf\x95\x1f\xde\xaf\xd7\x79\x7e\xd3\xdf\x00\xf4\x3b\x77\xfc\x1e\x7d\x3a\xcf\x8f\xbf\x33\x5c\x5e\x2e\x31\x4b\xff\xfd\x3b\x00\x00\xff\xff\x6b\x9e\x52\x81\x93\x10\x00\x00"); -func _cfe ()(*asset ,error ){_deaa ,_dbeb :=_ccag ();if _dbeb !=nil {return nil ,_dbeb ;};_ffeg :=bindataFileInfo {_ag :"ETenms-B5-V",_bc :709,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491804,0)};_gaag :=&asset {_cd :_deaa ,_dce :_ffeg };return _gaag ,nil ; -};func _bbcb ()([]byte ,error ){return _dc (_cebd ,"HKscs-B5-H")};var _bfdbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x41\x6f\x1c\x37\x0f\xbd\xef\xaf\x98\x63\xbe\x43\x3e\x4b\xa2\x34\x23\x01\x85\x81\x22\x41\x51\x07\x48\x5b\xd4\x49\x1a\xa0\xe8\x61\x76\x57\x72\x17\xa8\xd7\x8b\xb5\x7d\xc8\xbf\x2f\xf4\xb8\x7a\x74\x8d\x1c\x82\xcc\x23\x29\x8a\x8f\x12\x49\x79\xaf\xde\xdd\xbc\xbf\x39\x1e\x9e\xa6\xab\xdf\xce\x0f\xbb\xdb\xfa\x34\xb5\xc3\x71\x7f\xae\x8f\x0f\xcf\xe7\x5d\x9d\xb6\xf5\xee\x70\xdc\x6c\x7c\x98\xf6\x87\xdd\xd3\x80\xf8\x6f\x77\xbf\x9e\x36\x9b\xab\xcf\xc7\xc3\x87\x9b\xdb\xaf\x2e\x78\x79\xfb\xf9\xd3\x4f\x12\xde\xfe\x3c\x3d\x3f\xd6\x8b\xf6\xdd\xcd\xfb\xdb\x6f\x8f\x4f\xf5\xfe\xe6\xd8\x1e\x26\x51\x2f\xfb\xe7\xd3\xc5\xd3\x34\x5d\xfd\x5e\xef\x0e\x8f\x4f\xe7\x6f\xd3\x9b\x1f\xf7\x0f\xdb\xfa\xbf\x69\x5f\x5b\x97\xff\x7a\xde\xd7\xf3\xe1\x78\x37\xbd\xf9\xb0\x9e\xd6\xa3\xa7\xe2\xf6\xf9\x74\xfa\xa7\xde\xd7\xe3\xd3\xb4\x40\x56\x8f\x7b\xfc\xbf\xb9\x7a\xf7\x71\x3d\xfd\xb2\xde\xd7\xe9\x3b\x51\x7d\x81\x0d\x4c\xbe\xd4\xf3\xe3\xe1\xe1\x38\xf9\xff\x3b\x97\x4d\xfc\xe9\xdb\xa9\x4e\xfe\xe2\xea\xeb\xe7\x9b\xf7\xd3\x9f\x7e\xf2\x6e\x0a\x69\xf6\xe9\xaf\x8b\xfc\x8f\x8f\x0f\x7b\x5a\x79\xe7\x94\xc8\xee\xb0\xdf\xfd\xbd\x9e\x37\x3f\x38\xe7\x5c\x70\x3e\x5d\x4f\x4b\x2e\x81\x78\x06\x4e\x03\x07\xd5\x67\x62\xd5\x2f\x17\xec\x8b\xbb\x9e\x16\xc9\x84\xbe\xc3\x99\x30\x74\x58\x08\xa5\x43\xae\xdd\xc5\xeb\x29\x8b\xf7\xc4\x09\xd8\x11\xcf\xc0\x23\x36\x5f\x3b\x76\x2f\xf0\x02\x1c\x89\x33\x30\xfd\xd5\x02\x2c\x17\x2c\x65\x7b\x3d\xf9\xe0\x63\xa6\x60\x07\xc1\x6c\x82\xbd\x5a\x2c\x14\x54\x08\x92\xa3\xa0\xbd\x5a\xb2\x3a\x5d\x52\x28\xf0\xba\x64\xa6\x20\xbc\x5e\x22\x6a\x91\x28\x88\x2a\x30\x8b\xf4\x7a\xc9\xac\x16\x0c\x6c\xed\xdc\x5f\x1a\x64\x60\xd3\x17\x60\x0b\x62\x7d\xed\x71\xdb\x0d\x96\x40\xbc\x03\xf6\xc4\x7b\xe0\x41\x3c\xb9\xdd\xf5\xb4\x44\x5e\x8c\xe4\xf6\xc0\x0b\x71\x05\x9e\x89\x1b\xf0\xd8\x2f\xf9\x7e\x51\x92\x13\x62\x0f\x4c\x7f\x3e\x00\x47\x62\x01\xa6\x3f\x1f\xe1\xcf\x13\x27\x60\xf3\x37\x03\x07\xe2\x05\xd8\xfc\x65\xe0\x42\x5c\xe0\xdf\xfc\xad\xc0\xe4\xeb\xb7\xc0\xe6\xaf\xf3\x4f\xc1\xf6\xdb\x03\x93\xbf\xaf\xc0\xc6\xa7\x01\x73\xff\x00\xfe\x81\x7c\x02\xf8\x07\xc6\x13\xc0\x3f\x30\x5f\x28\xbc\x24\xf4\x87\xc2\x4b\xc2\xfd\xc3\x02\xcc\xf8\x42\x06\xb6\xfd\xc0\x8f\xc5\x96\x02\xf8\x89\xed\x0f\x7e\x62\xfb\x81\x9f\xe7\x7e\x82\x78\x3d\xed\x25\x22\x1f\xf4\x27\xd8\xcf\x71\x7d\x84\x7d\x64\x3e\x23\xf8\x45\xe6\x33\x82\x5f\x64\xbc\x11\xe7\xcb\x4a\x4b\x11\xfe\x59\x46\x29\x82\x7f\xe4\xfe\x11\xfc\xa3\xed\x07\xfe\x89\xf9\x88\x88\x27\x0d\xff\x73\x3f\xaf\x1c\x82\x27\xee\xf7\x39\xf8\x42\x5c\xa1\x37\xfb\x06\x3c\xe2\x5d\x9c\x56\xed\x32\x36\x5c\x7a\x5d\xe7\xe0\x2e\x0e\xc4\xe1\x42\xe4\x71\xc1\xc4\xe1\x42\x94\x51\xf6\xe2\x70\x01\xca\xa8\x58\x71\x48\x48\xf1\x99\x58\x80\xe9\x0f\x84\xcb\x08\x40\x1c\x08\x96\x41\x40\x5c\x2c\xc0\x61\xe0\x19\xeb\xc7\x85\x14\x97\x15\x33\x9e\xac\xfe\x12\xb1\xfa\x63\x7c\xb9\x02\x33\xbe\xde\x1d\x73\x58\xe8\xbf\x20\x81\x0b\xf7\x47\xa3\x9b\x45\x4c\x00\x42\x21\xf7\xa9\x36\xa6\xca\x26\x7f\x6f\xcc\x88\x5b\x35\x38\x92\x5d\x11\x9c\x90\xec\x8a\xe0\x5e\xf8\x06\x59\x61\x30\x3b\xac\x17\x92\xad\x8a\x49\xb6\xaa\x3f\x92\xad\xea\x8f\x64\x2b\xc8\x0a\xc9\x36\x3d\xbc\xb1\x5f\x68\xed\x7a\x0a\xe2\xd2\x08\x50\x9c\xeb\xb3\x67\xf4\x7d\x11\x27\x1d\x8f\x72\x11\x71\xbd\x65\xfb\x32\x9b\x01\x86\x17\x23\x14\x37\xab\x81\xa7\x60\x51\x41\xa2\x20\xab\xc0\x96\x14\x15\xd8\x26\xab\x0a\x66\x0a\xb6\x10\x2c\xb6\xeb\x4e\x05\x81\x02\xbd\x85\x34\x40\xdb\x2c\x91\x51\x78\x84\x19\x4d\x8f\x19\x2b\x86\x35\xca\x6c\x82\x0c\x03\x26\xc6\x6b\x90\x99\x3b\xa2\x90\x24\x91\x45\x6f\x64\x59\x78\xd4\x12\x90\xb9\x48\x52\x41\x33\xc7\xdc\x4b\xef\x74\x5d\x60\x1e\x66\x70\x30\x03\x1c\x66\x64\xe2\x7a\x2b\xcb\xc2\x4a\x13\xb4\xb2\xf2\x22\x82\xbd\x3a\x64\x08\xe2\xb1\x80\x21\x08\x6a\xdb\x39\x7a\x14\x3d\xdd\x48\x8c\x08\x46\x73\x12\x91\x05\x0b\xbc\x19\x64\x15\x30\x06\x29\x60\xc9\x18\x64\x55\x03\x73\xb1\x85\x81\xc5\xb4\x53\x03\x26\x5a\xf6\x2a\x60\x94\xd1\xab\x80\x4b\x22\x32\x6b\x51\xf5\x0e\x91\x25\x19\xd6\xa0\x82\x09\x50\x45\x76\xd8\x71\x45\xa2\xc8\x22\xe2\xb2\x58\xd0\x11\x47\xc9\x2a\x91\x84\x0a\xb7\xa3\x4b\x9a\x37\xcb\x53\x12\x15\x98\x45\x54\x01\x33\x9b\x10\x63\xe4\x8a\x05\x6f\x30\xf7\x42\xa0\x79\xb0\x20\x16\xcd\x43\xe4\x05\x5b\xaa\x0a\x78\x1f\x96\x86\x1b\x76\x71\xd1\x9a\x43\xa7\x1a\x65\xd3\x9a\x43\x6b\x5f\xa8\xf7\xfa\xf6\x19\xb3\xbe\x35\x6d\xd5\xe3\x6c\x5a\x13\x5c\xa0\xf1\x36\x69\x4d\xa0\x77\x74\x20\x0d\xdd\xc2\x0d\x9c\xd4\x3e\x11\x6b\x37\x99\x89\x75\xbd\xe1\xfa\x72\x54\xb4\x86\xee\x95\x73\xf9\x4f\xe7\x94\x85\x9d\xf3\xbc\x1e\xef\xea\x65\xee\xc8\xd6\x5d\x4f\xe3\xd3\xa3\x05\x27\x7b\x94\x51\x97\x5c\x3f\xab\x98\x39\x7f\xfb\xfc\x1a\x9f\x7d\xbb\xb8\x70\xb4\xf6\xde\x35\x3e\xf1\x8a\xca\xf6\xaa\x9b\x4d\x85\x07\x54\xe6\x80\xed\xed\x6a\x7c\x16\xa8\xcc\xe1\x6a\xaa\x2d\x54\xf6\xec\x10\xaa\x02\x26\xbc\x30\xf8\x5e\xa6\xe3\x13\x8f\x25\x6f\x8f\x0b\x4f\x95\xe0\x9d\xc0\xb9\x9c\x24\x99\x0a\x4f\x00\xc7\x30\x7a\x0d\x8e\x4f\xbc\x6e\xf8\xa7\x42\x12\xdb\x0b\x87\x99\xa2\x3d\x1c\x6c\x15\xea\x23\xb1\x79\x3a\x37\xc2\x10\xd7\xd3\xb9\xe4\xcc\x01\xc2\x6c\x88\xc3\x4b\xb6\x38\xaa\x7c\x34\x15\xc6\x92\xe3\x58\xf3\xb3\xa9\x16\x9c\xa5\x8d\x44\xff\xc2\x63\xc1\x85\x65\xd3\x75\x25\x51\x57\x66\x5c\x76\x4e\xbe\x66\xaa\x86\xae\xc5\x62\xf4\x6d\xdc\x0e\xf1\xad\xe8\xf0\x16\xea\x56\xd3\x35\xe8\xac\x24\x8d\xb6\xe0\x15\xe4\x8b\xb5\xce\x5e\x5b\xa3\xf1\x8b\xce\x1e\x56\xae\x5f\x4d\xa7\x2d\x38\xd3\x67\x7f\x0d\x8d\xf6\xec\x55\x67\x13\x21\x9b\x4e\xa7\x4b\xb1\xde\x6e\xfb\x89\xd3\xae\xcd\xc6\x20\xd1\x74\x49\x75\xd6\xe2\x6d\x5d\xd4\x75\xc1\xda\xa0\x98\x6e\x56\x9d\xb5\xc0\xad\xe9\xb4\x33\x05\x6b\xc8\xc6\x21\xa9\x4f\x9b\x9b\x29\x99\x4e\x7d\x8e\xd3\x6b\x8d\x77\xa5\x35\x54\x4e\x2e\x54\xa5\x46\xd5\x7c\xf9\x43\xd2\x5f\xba\x82\x36\x01\x80\xfb\xf5\xb4\xe1\x0f\x06\xbb\xe7\xf3\xb9\x1e\x9f\xf0\xf3\x04\x7e\x0c\xe8\x7f\xe0\x1f\x8e\x95\x3f\x84\x9c\x1e\x4e\x7d\x15\xfe\xfd\x1b\x00\x00\xff\xff\x3c\x91\x84\x09\x34\x11\x00\x00"); -func _agbc ()([]byte ,error ){return _dc (_fgga ,"Katakana")};func _cbfe ()([]byte ,error ){return _dc (_acag ,"UniGB-UTF32-H")};func _edaa ()([]byte ,error ){return _dc (_gagb ,"KSCms-UHC-HW-V")};func _cfa ()(*asset ,error ){_ege ,_ccgd :=_dgc ();if _ccgd !=nil {return nil ,_ccgd ; -};_ffdd :=bindataFileInfo {_ag :"Adobe-CNS1-4",_bc :1901,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491191,0)};_adbg :=&asset {_cd :_ege ,_dce :_ffdd };return _adbg ,nil ;};func _aebf ()(*asset ,error ){_becb ,_cfc :=_egc ();if _cfc !=nil {return nil ,_cfc ; -};_dege :=bindataFileInfo {_ag :"B5-H",_bc :5259,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491473,0)};_dfcd :=&asset {_cd :_becb ,_dce :_dege };return _dfcd ,nil ;};var _ged =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd5\x4f\x8f\xdb\x36\x10\x05\xf0\xbb\x3f\x05\x8f\xe9\x21\xb5\xf8\x77\x48\x20\x58\xa0\xd8\x3d\xd4\x29\xd2\x14\xd9\x26\x2d\x50\xf4\x40\x4a\xf4\x42\x40\x2d\x0b\xb2\x7d\xd8\x6f\x5f\xcc\x7b\x5b\x37\x87\x60\xb2\x3f\x93\xa3\xe1\xb3\x64\xed\x1f\x0f\x4f\x87\x65\xbe\x9a\xfd\x6f\xdb\x79\x7c\xee\x57\x73\x9c\x97\x69\xeb\x97\xf3\x6d\x1b\xbb\x69\xfd\x65\x5e\x76\x3b\xeb\xcc\x34\x8f\xd7\xff\xfe\x44\x19\x4f\x75\xdd\xed\xf6\x65\x38\x5d\xde\x7f\xf9\xe5\xf9\xe3\xfb\x9f\xcd\xed\xd2\xdf\xf4\xf1\xf0\xf4\xfc\x7a\xb9\xf6\xd3\x61\x39\x9e\x8d\xe7\xee\xe9\xb6\xbe\x75\x30\x66\xff\xa5\xbf\xcc\x97\xeb\xf6\x6a\xde\xfd\x34\x9d\x5b\xff\xc1\x4c\xfd\xa8\xfe\x79\x9b\xfa\x36\x2f\x2f\xe6\xdd\xc7\xba\xd6\xc5\xde\x3f\x78\xbe\xad\xeb\x3f\xfd\xd4\x97\xab\x71\xb0\xbe\x4c\xa8\xbb\xfd\xe3\xa7\xba\xfe\x5a\x4f\xdd\x7c\x37\xcd\x37\x7c\x86\x8f\xbe\xf5\xed\x32\x9f\x17\x63\xed\x8f\xc3\x90\xfe\xf7\xdf\x5f\xd7\x6e\xec\x5b\x8f\xaf\x87\xa7\xcf\xc7\xe3\xa5\x5f\x8d\x1d\xdc\xc0\x45\x7f\x7e\x3d\x3c\x99\xbf\xac\xb1\x83\x71\xd1\x87\xf0\xf7\xdb\xda\x3f\x3e\x9d\xa7\xfb\x4e\xc9\x3c\xd4\x38\x4f\x5b\x5d\x5e\xfa\xee\x43\xb6\xc1\x3e\x18\x2d\xee\xc1\x48\xce\x02\xf2\x24\xff\x60\xb2\x4b\x19\x14\x48\x41\x49\x82\x52\x1c\x40\xd1\x62\x63\x01\x35\xd2\xa4\x54\xac\x52\xe2\xaa\x14\x40\xd8\x98\x0a\x48\x2a\x08\x1b\x33\x87\xd0\x22\xc5\x62\x88\x9a\x41\x5a\x8c\x78\xac\xaa\xdc\xa8\xc5\x88\xc7\x5c\xb5\x92\x1a\x28\x81\x46\xd2\x88\x51\x87\xdd\x87\xec\xca\x51\x09\x45\x8a\xd5\x8d\xae\xe2\x8a\x28\x52\x6c\x01\x79\x92\x57\x72\xd8\x58\x23\x29\x82\x2c\x48\x48\x02\x72\x4a\x23\x7b\x8d\xe8\xe5\xbc\x52\x27\x75\x52\x00\xb1\x7d\x67\xfb\x08\x62\xfb\xce\xf6\x09\x34\x92\x46\x90\x26\xe1\x03\x22\x44\x91\xe2\x32\xc8\x91\x1c\xa8\x80\x02\x49\x83\x2e\x7e\x00\x25\x52\x02\x59\x50\x26\x65\x90\x4e\xef\x13\x7b\x25\xf4\xf2\x3a\xbd\xcf\x18\x15\x45\x8a\x0f\xa0\x48\xc2\xa8\x3e\x82\x84\x84\x24\x90\xbd\xcf\x9d\xd4\x41\x98\xbe\x70\x63\xe1\x10\x3a\x7d\xe0\xd7\x81\x22\x21\xeb\x5c\xa1\xe2\x8c\x28\x12\xa4\x80\x2c\x49\x23\x0c\x25\x82\x1c\x49\x47\x8d\x83\x07\x79\x92\xc7\x2a\x6e\x0c\xa4\x00\x62\xfb\x48\xd2\xe9\xa3\xe3\xc6\x44\xd2\xb9\xa2\x65\x7b\x21\xe9\x81\xa2\xe7\xc6\x4c\xca\xb8\xa2\x80\x0a\xa9\x60\x15\xaf\x58\x49\x15\x07\x72\xa0\x46\x6a\xa0\x01\x34\x92\x46\xcc\x85\x24\xea\x44\x9a\xd0\x3e\x81\x3a\xa9\x83\xd8\x8b\x79\x55\xe4\x85\x67\x28\x34\xe6\xa5\x45\x22\xbe\xed\xd0\x98\x97\x16\x89\xb8\x31\x43\x63\x5e\x0d\x79\x31\xfb\xc6\xbc\xb4\x48\xb4\xec\xc5\xbc\xb4\x48\x8c\x24\xe6\xd5\x98\x17\xe6\x6a\xcc\xab\x31\x2f\x1c\xbb\x31\xaf\xc6\xbc\xb8\x91\x79\x35\xe4\x65\x11\x61\x63\x5e\x0d\x79\x05\x04\xdd\x98\x97\x16\x89\xb8\xc9\x43\x63\x5e\x5a\x24\x5a\x5e\x91\x79\x69\x91\xe8\xb9\x91\x79\x35\xe6\xc5\x03\x31\xaf\x86\xbc\x82\x1e\x5b\x22\xf2\x92\x84\x07\x26\x68\x38\x92\x2c\xc9\x3e\x98\xec\xf1\xc0\x08\xef\x7b\xe1\x7d\x1f\x3c\xc8\x93\xf4\x87\xcf\x7b\xae\x0a\x24\x3c\x56\x98\x5e\x52\x24\x45\xac\xca\xa0\x44\xc2\xa3\x10\x04\x94\x49\x59\x57\x85\x00\x2a\x24\x3d\x76\x89\x9c\xab\x91\x1a\x56\xb1\xd7\x48\x9a\xb0\x8a\x73\x75\x52\xc7\x2a\xcc\x95\x71\x03\x08\x7f\x31\x63\xd2\x37\xcc\xfd\x57\x5d\xff\xaf\xef\xb6\xfb\xbb\x66\xbc\x6d\x5b\x5f\xae\x78\xb3\xe1\x75\xa2\xaf\x83\x79\xe9\xf7\x77\xe7\x7a\x5e\x75\x17\xfe\xfd\x1b\x00\x00\xff\xff\x59\x2d\x4a\x62\x67\x07\x00\x00"); -var _befe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\xcb\xee\x6f\xbb\x91\x98\x37\x3f\x4f\xb1\x87\xce\xc0\xe9\x75\x21\xab\x8a\x80\x20\xc0\xb1\x22\xc4\x30\x9c\x04\xdd\x76\x32\x5e\xd7\x8e\x80\xf4\x91\xa0\x56\x0f\xfa\xed\x83\xf5\x7d\x94\xda\x08\x82\xec\x33\x39\xff\xda\xeb\x47\xb2\x78\xa9\x7b\x15\xf9\x77\xff\xf1\x3f\xfd\xee\x3f\xfd\xfa\x87\xbf\xfc\xf8\xbb\xff\xfd\xcf\x7f\xbc\xfe\xe1\xf9\xcb\x8f\xf7\x0f\xbf\xde\x7f\x7e\xfe\xf9\x8f\xff\xf2\xe7\xeb\xf9\x71\x3e\xff\xf8\x87\x5f\x7f\xf9\x65\xdd\x7e\xdc\x7f\xb8\xfe\xf2\x57\x90\xff\x5d\xff\x74\xfc\xe9\x97\x5f\xbe\xf6\xff\xf0\xaf\xff\xfc\x97\xe7\x9f\xfe\xd3\xaf\xef\x1f\x7f\xec\xfe\xee\xfe\x97\x3f\xcd\xdf\xfe\xf8\xf1\x77\x7f\xff\xfc\xe3\x1f\xfe\xf9\x2f\x7f\xfe\xd7\x1f\xff\xee\x3f\xdc\x7f\x3c\x9f\xff\xe1\xc7\xfd\xbc\xdf\xbf\xff\x6f\x7f\xbe\x9f\x3f\xff\xe1\xd7\x7f\xfc\xf1\xef\xfe\xf3\xdf\xff\xed\x1f\xff\xe1\x5f\xfe\xf4\xa7\xff\xfb\xf9\xa7\xe7\xd7\xbf\xfc\x18\xfc\xdb\xf3\xeb\xcd\xff\x7f\xf9\xbb\xff\xf8\x5f\x8e\x3f\xfd\xaf\xc7\x3f\x3d\x3f\xfe\xee\xbf\xfd\xfa\x87\xff\xf0\x9f\xff\xfe\xdf\xff\xb7\xff\xfa\xfb\x35\xfe\xfd\xff\xc2\x67\xbe\xfe\x1f\xcf\x9f\xff\xf9\x0f\x7f\xfc\xf5\xc7\xfa\x3f\x2e\xcb\xf6\x6f\xff\xfc\x5f\xff\xf5\x4f\xcf\x8f\x75\xf6\xf2\x7f\xfe\x97\x3f\xde\xcf\x8f\x45\x68\x17\xcb\xeb\x8f\xf7\xf3\xcf\x7f\x3a\xae\xe7\xcf\xc7\xaf\xff\xf8\xfc\xf2\xe3\xc7\x6f\x96\x65\x59\x7e\xfb\xe3\xfb\xef\x37\xbf\xcb\xdf\xff\xfe\xb7\xdf\xbf\xfd\xae\x96\xe5\x77\xff\xf1\xfb\xf7\xdf\xfc\xee\x7f\xfa\xfd\xef\x7f\xf7\xfb\xf9\xef\xff\xf3\xbf\xfd\xf6\xf7\xfc\xdb\xf3\xeb\xfd\xff\xea\xf1\x97\xd5\x81\x7e\xfd\xe3\x5f\xee\xe7\xf5\xdf\xe6\x18\xbf\x59\x96\xf5\xfd\xed\x8f\xf5\x6b\xf5\xdf\x7f\xfe\x65\x5d\x96\x89\xdd\x1f\xee\xeb\xff\x3a\xfe\xfc\x35\x38\x96\xef\x97\xdf\x1f\xeb\x6f\x7f\x6c\x5b\xab\x05\x60\xfc\xf6\xc7\xba\xf8\xe7\xe1\xbf\x37\x80\xfb\xb7\x3f\x56\xff\x7a\xbe\x5f\xd8\xf2\xf5\x17\xfd\x03\xce\x12\x28\x80\xaf\x9b\xb5\x6a\x03\x98\x1d\x8d\x0f\xb8\xf3\x6b\x1e\xdf\x9f\x2f\x7f\xe6\x2f\xbf\x59\xd6\x15\x1c\x7a\xdf\x3f\x60\x2f\x81\xef\xf7\xdb\x95\xf6\xf4\xfd\x6c\xbb\x17\x81\x6f\x8c\xb6\xd0\x26\xb6\x0f\xab\xd6\x05\xbe\x31\xb6\x65\x5d\x44\x76\x5b\xbe\x7e\xe7\x5f\x41\xd3\xd1\x3f\x60\xb7\x9f\x11\x00\xe7\x6f\x7f\xac\xfb\xc6\x9f\x97\xff\x9e\x00\x8f\x40\x7d\x40\x6b\x02\xf4\x9f\x34\x1f\xcb\xfe\x01\xac\xd8\xee\x9f\x5f\xf3\xfd\x1b\x6e\x5d\xf6\xef\xcf\xce\x9f\xfc\xe0\x1b\x6a\x5d\x77\x1a\x6e\x2b\x40\x08\x7c\x23\xaf\xdb\x2a\xb0\x03\x6c\x5f\x8b\xe4\xcf\xf9\x23\x3a\xdd\x4e\x01\xba\xbd\x37\x80\x4e\xf3\xbb\x09\x7c\xcd\xb7\x45\xf4\x7a\x03\xb0\xcd\xb7\x98\xdb\xb6\xbc\x00\xb1\x7c\xc0\xea\x90\xb1\x02\x7c\xbd\xb5\xe2\xcf\xc3\x7f\xff\x3a\xde\x36\xfb\x8a\x0e\xd0\x05\x02\x80\xe5\x19\xc9\x90\x5d\x64\x92\x51\x82\xe5\xf7\x4f\xc7\x28\x06\x1c\x43\x80\x2f\x87\x7d\x0d\xbe\x3c\xe2\x35\x3e\x54\xf6\xd5\xbe\xc6\x37\x7e\x7b\xf9\x12\xdf\x89\xdc\xfa\xf8\xbe\x6c\x0b\x18\x77\xce\xef\xb6\x80\x66\xff\xce\xf0\xca\x52\xf4\xeb\x9b\x30\x0b\xd1\x9f\x6f\xf1\x58\x86\x58\x2f\x7e\xcd\x70\xb1\x3e\x02\x5f\x3f\xd1\xec\x87\xe1\xa2\x39\xc2\xf8\x9a\x67\xfb\xda\xf4\x6f\xe6\x2f\x4b\xda\xb6\xbd\x00\x1a\x40\x08\x04\xc0\x77\xd2\xb7\x77\xa9\x0f\xd8\x39\x18\x2f\xfb\x3e\xd6\x35\x00\xbe\x45\x6d\x9d\x79\xbc\xec\x49\xeb\x8b\x5d\x5f\xfc\x6c\x13\x78\x01\x1a\x6d\x3c\xbc\x7d\x02\x6c\x50\x07\xb3\x77\x05\x83\xe0\xd0\xbe\x9c\xa3\xb1\x8e\x06\x90\x7c\x69\x02\xa0\x13\x1d\x44\x59\x81\x16\x22\xba\x42\xce\x31\x7b\x7b\xd9\x7b\x76\xec\xdd\xdc\xbc\x0e\xa2\xdb\x2e\xe0\x17\x06\xf5\x28\xbc\x1c\x85\x36\x1c\x94\x43\xda\x97\xb4\xcd\x37\x68\x5f\x67\x07\x03\x80\x1d\x7b\x39\xbe\x7d\x75\xdd\xb6\x1b\x60\xf8\xe5\x65\xfb\xc4\x00\xe2\xec\x9b\x0b\xbf\xbb\xb1\x76\xb0\x6f\x00\xe5\xcf\xbe\x99\x8e\x74\x0d\x76\x06\xdd\x9b\x3f\x63\xdf\xda\x02\x1f\xfc\x2b\xc7\xfb\xff\xe0\x81\xdb\xbb\x83\x44\x9f\xbd\x3f\x00\x09\x7a\x3b\x18\xf5\x62\xed\x39\x22\x3d\x39\x5f\x2f\x47\xa4\x67\xb1\x74\x6d\x17\x48\x80\x06\xe0\xa2\xb6\x6f\x81\x7a\x2d\x74\xdd\x58\xa0\x5a\x05\x52\xc0\x9f\x81\xf8\x58\x59\xad\xc6\x6a\xc9\x04\xde\x76\x00\xec\x62\xf0\x2d\x5d\xac\xae\x3d\xe7\x32\x56\x88\xed\x6d\xcf\x6f\x7f\x6c\xcb\xe6\x46\xb4\x0f\xeb\xd8\x16\xbe\xf4\x05\x00\xf6\xf7\x7e\xfc\xf1\x03\x98\x1c\xd4\x1a\x1b\x9c\xe7\xed\x4d\x80\x71\xfa\x87\x75\xf4\xdd\x36\x1f\xd6\x11\x3b\x58\xf7\x14\x60\xa6\xbd\x04\x1c\xe7\x00\xf0\xc8\xf5\x1b\x20\x04\xbe\x15\x8d\xf4\x9c\xf7\x57\x00\x0c\x60\x11\x51\x30\xc2\x17\x26\x11\x25\x05\x04\xb8\x95\xdb\x1a\xbb\x80\x5f\x9a\x00\x83\x06\x88\x56\xf3\x67\x20\x5a\xb0\xa2\x37\xbe\x45\x8c\xb1\xf9\x33\x70\x1b\x62\x1d\xa7\x80\x5f\x58\xc4\xe1\x29\x0b\xb0\x1e\x43\xe0\x11\xb0\xcd\x87\x75\x2e\x0b\xf3\x81\xef\xe7\xe2\xd1\xce\x0d\xa0\xfc\xf2\x21\x9a\x4a\x91\x37\x1b\x80\x5d\x67\x07\x08\x7a\xcb\x0f\xd1\xdc\x9c\x4f\xe6\x6f\x7f\x6c\xeb\xd2\xed\xe0\x5b\xd1\xdc\xa5\xce\x3c\x00\x10\x36\x6f\x7e\x58\x67\xf3\xec\xe4\x05\xe0\xe4\xf2\x06\x70\xb3\xf2\x3b\x07\xeb\x5a\xfe\x0c\xac\x5b\x03\xd1\x02\xeb\x26\x17\xa8\x15\x20\x58\xaa\x62\x0a\xbd\x81\x4e\xed\x02\x74\x5d\x4c\xa1\x77\x7a\xab\x2e\xe0\xcf\x98\xc2\x24\x99\x4a\x01\x30\xa8\x12\x60\xa6\x35\x00\x9c\x4f\x1d\x02\x76\x70\x0a\xf8\xb3\xfb\xc3\xba\x6d\xe2\xf6\x2d\x7c\x56\x17\xb7\x57\x80\x36\x83\x29\x94\xc7\x1f\x29\x90\xca\xcd\x77\x80\xf5\x40\xfe\xbe\xa3\x09\xd0\xf5\xf8\xb0\xae\xc5\x99\x8e\x10\xe0\x90\x8f\x04\x90\x5d\x8d\x4f\xd9\x58\x43\xce\x81\x84\xaa\xa5\xfc\xf2\x61\x5d\xca\xf3\x77\x9c\x02\x76\x7d\x01\xc8\x98\xc7\x0d\x20\x3f\x18\x8f\x80\x5f\xbe\x29\xd4\xb6\xd1\x06\x71\x55\x9b\xbd\x1d\xdf\x14\x6a\x77\x0a\xc7\x0e\xe0\xa9\x3a\xda\x87\x4e\xed\x02\x4c\x61\x77\x4f\x8f\x10\xa0\x6b\x94\x8e\xea\xab\x1d\x7c\xfa\xd5\x3a\x79\xf1\x71\x0a\xf8\x33\x10\xed\x72\x0a\x54\xb8\x8a\xc5\x2f\x8f\x00\x5f\xce\x15\x60\xeb\x3f\x65\x98\xe7\xf6\xa9\x59\xf3\xcc\x9e\xbb\xcd\xd8\xbc\xb3\x01\xb8\x11\x27\x88\x4f\x2e\x70\x86\x80\x43\xb1\xf6\x91\x4c\xe9\x64\x85\x27\x7f\x38\x59\xe1\xf4\x30\x9e\x97\x80\x6d\xbe\x43\xb2\xad\xc5\x38\x17\xb8\x66\x67\x16\x17\xeb\x98\x8e\x73\x81\x4e\x7a\xca\x2e\xd0\x99\x4c\xf6\xea\x02\xb6\x01\x9d\x72\xed\xd1\x2e\x6b\xb2\x9e\x0b\x74\xe6\xda\x5f\xd7\x37\xe8\xee\x89\x41\xd7\xaa\x6a\xec\xe4\xcd\x38\xe5\x1a\xdc\x8e\xd3\xfd\xd2\x69\xf3\xd1\xed\x8e\x42\xbe\x7e\xf4\x0d\xb0\x0b\xc4\x07\xac\x13\xc8\x5f\x7e\xb3\xef\xf4\xf6\xa9\x56\x00\x21\x10\x00\x25\xf0\xfd\xac\x79\x18\xeb\x23\xe2\xbd\xdd\x62\xfd\x89\xe5\xbd\xaf\x4e\xee\xd3\xe9\xf6\x8e\x1a\x59\xf5\x51\xe7\xde\xd1\x9d\xaa\x3e\x0d\x69\x8f\x98\xc0\xfe\x01\x8f\x6b\xf0\x91\xea\x9e\x9b\xf3\xf9\xc4\xf2\x9e\xdb\xfc\xd9\xd7\x75\xee\x0e\xfa\x11\xca\x9e\x6e\x49\x7d\x3b\xb7\xd7\x32\x81\xaf\xeb\x42\xcd\x28\xd8\xef\x5e\x65\x6f\xd9\x3e\xe0\x9c\x1d\x7c\x93\xab\x47\xac\xf3\x9b\x5c\xbd\xb7\xc0\x87\xc1\x40\x1a\x54\x7d\x92\x77\x1f\xe1\x7c\xbe\x33\xbb\x8f\xd9\xdb\x47\x90\xfb\x18\xfe\xec\x23\x87\x7d\x48\x1b\x58\x18\xfb\xf0\x88\xd5\x47\x83\xfb\xb1\x0f\x81\x0f\x83\xe3\x70\x7f\xbe\x43\xb1\x1f\xb7\x58\x7f\x24\xb4\x1f\xef\x6c\xf3\x61\x70\x2e\x73\x9c\x0f\x83\x73\x2e\xc8\xa7\x66\xec\x67\xda\xdb\xa7\x38\xee\xe7\xeb\x97\x4f\x69\xd9\xaf\xd5\xae\x3f\xc5\x71\xbf\xb6\x09\xec\x00\x4e\xee\x23\xc8\xfd\x7a\x1d\xf4\x13\x27\xfb\xbd\xba\x06\x9f\x4d\xb1\xdf\xdd\xb5\xe6\xb8\xdc\x2e\xef\xf8\x14\xc4\xfd\xf6\x5c\x8f\x4f\x79\xd8\x1f\x8f\xf2\x58\xbe\x71\x1e\x2c\xa0\xc2\xf4\xd8\x9f\xe7\x16\xf8\xc6\x79\xde\x09\x7c\x33\x55\x45\xad\xf1\x9d\xb7\xb6\xb8\xa7\xe3\x3b\x6f\x6d\xd9\xe7\x97\xfa\x80\x98\xe3\x8c\x0f\x90\xa7\xa0\x8a\xb4\xe5\x9a\xc0\xfa\xcb\x6f\xda\x8a\xaa\x55\xe3\xe3\x36\x6d\x95\xa7\x8c\x8f\xb2\xda\xd6\xe7\xcf\xda\x2f\xbf\x69\xbb\x14\x3c\xd6\xfe\x01\xd7\x6c\xf3\x61\xb0\x3f\x13\x48\x80\x43\xe0\xc3\xa0\x75\xe7\xb3\x7e\x18\xf4\x55\x74\xb6\x0f\x83\xfe\x4e\xe0\xc3\x20\x3c\x62\xf0\xfc\x16\xf2\x10\xd4\xa4\x16\xe7\x23\xf0\x61\x10\x52\x23\x06\x52\x8b\x7b\xb6\x09\x00\x57\xe7\x23\xa6\x96\xdb\x04\x3e\x0c\x32\x9c\xcf\x27\x52\x5b\xa6\x5f\x3e\x16\xd0\x52\xfe\x3d\x3e\xfd\xa7\x15\xaa\x48\x8d\x4f\xc2\xb7\x79\xc8\x3f\xa9\xf3\xff\xcf\x30\x5b\x29\x78\xc6\xc7\xf6\x5b\x1d\x13\xf8\xd0\x1b\x68\xd0\x85\x7e\xd7\x86\x72\x03\xc9\xd5\xe6\xd1\x1e\x9f\xb1\xd1\xc6\xe5\xa2\x7e\x4a\x4b\x3b\xe6\x02\x7d\x72\xbd\x1d\x73\x16\x9f\xe4\x6a\xc7\xe9\x64\x3f\x7d\xa8\x1d\xb7\x88\xb7\x6f\x81\x8e\x67\x7e\xf9\x30\x38\x5e\x7b\xfb\x98\x6c\x3b\xbb\xb3\xf8\xc4\x58\x3b\x73\x15\xf8\x30\xb8\x57\x7f\xf6\x89\xa4\xf6\x40\x1b\x6d\x6b\x02\x4e\xe1\x53\x0c\xda\xb3\xdc\x7e\xf9\x3a\x78\xb4\x56\x36\x3a\x78\xb0\xb0\xda\xf6\x89\xf2\xf6\xac\xa2\xf3\xa9\xcf\xed\xd9\x66\x07\x7c\xd9\xe6\x38\x0d\xc0\xde\x04\x50\xf5\x1b\x46\x40\x7b\xe6\xf9\xeb\x74\x8d\xb9\xde\xb6\x8f\x13\xb6\xa7\x89\xf5\x04\xba\x76\x19\xb8\x35\x4f\xd9\xc7\x23\xdb\xd3\x6c\x13\x60\xd0\xb5\xd8\x02\xac\xbb\x18\x04\x93\x0b\xc7\x09\x70\x0b\xdb\x24\x6d\xe6\x21\x09\x70\x0b\x11\x4d\x7e\x96\x6e\x49\x80\x5b\xba\x54\xc9\xcf\xd2\x35\x48\xbe\x94\xf3\x49\x10\x2d\x31\x48\x70\x2b\x07\x75\x1c\x74\xa8\xb6\x15\xe8\x94\x1d\x14\xe3\x94\x8b\xe8\xa0\x63\xfe\x8c\x0e\x54\x5a\x86\x83\x0e\xb1\x1e\x74\xa0\x9e\x32\x92\x45\x1c\xf6\x36\x58\x9d\x79\xb4\x93\x35\x38\xec\x6d\x80\xe8\xe1\xba\x89\xf5\x29\x75\x8a\x35\x4c\xb6\xed\x0b\x88\x9e\x0e\x5a\xf4\x06\x9b\xd7\xec\x6d\xcf\xe9\xb1\x2c\x7e\x06\xef\x6a\x3b\x7c\xe8\x51\xf2\x0e\xe7\x03\x7f\x68\x3b\x4c\xe9\xb9\x58\xd1\x1d\xd6\xf3\x28\x6c\x47\x31\x9f\x7b\x7e\xe1\x67\xb7\x54\x52\xcc\x87\x43\xde\x76\xd8\xc8\xf3\x78\x0e\x8a\x71\x9e\xf9\x33\xda\xbc\xd8\xb3\xa8\x5a\xed\x81\xa7\xb4\x1d\xce\xf1\xc8\xcc\x47\xd1\xc1\x2b\xcd\xb9\xa2\x50\x49\xdb\xe1\x1c\x7f\xe5\xab\xae\xa8\x22\x15\x47\x45\xd3\x29\x50\x38\x2a\xda\xbb\xac\xb6\xf9\x06\x7d\x57\x17\xf1\x93\x06\x4d\xe3\xb6\xed\x10\xba\xc6\x6d\xa1\xab\xb5\x77\x77\x75\xa0\xfa\x77\x77\x79\xa1\x7a\xed\xd9\xb6\x43\xf5\xef\xee\xf2\x42\x80\x5a\xa9\x85\xa9\xd2\xb4\x45\x0b\x65\xaf\x69\x8b\xb6\x1d\xaa\xd7\x94\x2c\x8c\x98\xa6\xf5\x58\x63\xd0\x35\x26\x5e\xdb\xa1\x46\x8d\xa5\xb6\x43\x59\x1a\x4b\x63\x61\xb3\xb4\x68\xda\x0e\x61\x68\xd1\x8c\x85\xcd\xd2\x88\x69\x3b\x64\xa6\xa9\xd2\x76\x28\x4b\x4b\x63\x2c\x88\x06\x2d\x8d\xb6\x07\x88\xd6\x6c\x53\x3f\x63\x98\x5a\x11\x6d\x0f\x66\x8e\x15\x31\x16\xc4\x0b\xb6\xc2\xda\xf6\x74\xa8\xc7\x2f\xf6\xee\x0a\x43\x1b\xda\x0a\x63\x41\xf0\xbc\x43\x24\xa0\x0d\x0d\x87\xb1\x70\x96\xb4\x15\xc6\xc2\xf1\xd1\x3c\x68\x3b\x84\xa2\x79\x30\x16\x44\xd2\x2b\xa5\xed\x69\x6f\x2e\x10\xf2\x49\x8b\xa0\xed\x69\x6f\x97\x5f\x58\x93\x31\x11\xa5\xeb\xc3\x71\x38\x7f\xa8\xcf\x1f\x00\xa2\xa7\x93\x43\x72\xa9\xfd\x8e\x05\xc9\xf5\x9e\xce\x07\x42\x51\xe1\x1d\x0b\x87\x51\x4d\x76\x2c\x9e\xb2\xeb\xf1\x67\x20\x7a\x3b\x53\x8e\xa9\xfa\xea\x58\x10\x56\xef\x2d\xa5\x79\x18\x6f\xf7\xcb\xf3\x77\x3b\x28\xf2\xe8\x9d\x94\xe6\xc1\xba\x5d\x5e\xcf\xec\xb3\x0b\x30\xe8\xeb\xf2\x7a\x4c\x5f\x06\x6d\x0b\xd3\x86\x9e\x5a\x83\x3f\xbc\xaf\xd3\xf6\x00\x43\x5c\xad\xc1\x1f\x5e\xf4\xae\xb1\x78\x9a\xdf\xf2\x0b\xe8\xbc\x87\x00\x18\xbc\x62\xf0\x49\xb7\xae\x2e\x3d\x96\x4f\xba\xf5\x65\xd9\xfc\x59\x00\xb8\x20\xdf\xa1\xef\x8b\xbe\xb8\xf6\x1d\xd3\xbe\x2c\x6e\xe3\x27\xf7\xfa\x82\x2f\xae\xb5\x4f\xeb\xe9\x8b\xee\xb7\xf6\x69\x3d\x7d\x51\x86\xb5\x8f\xf5\xf4\x45\xf7\xdb\xf2\x89\xc7\xae\xc7\xb8\xb5\x95\xae\x51\x40\xc6\xd2\xe8\x40\x57\x5a\x5b\xc1\x60\x73\x0d\x56\x7a\xdb\x5c\xf8\x26\x20\x6e\x9d\xae\x37\x77\xbb\x33\x9f\xcd\xc9\x75\xe6\xb3\x3b\xb9\xce\x38\x4a\x37\x0c\xfc\xbe\x48\xd1\x6d\xa7\x83\xe6\x8a\x76\xe6\xd3\x3c\x89\x1d\x44\xdb\xec\x0d\x74\x70\x01\x35\x9c\x02\x7d\xe9\xee\x5c\x67\x41\x24\xfc\xb6\xd3\xa6\xbb\x0b\x9d\xf9\x74\x17\x7e\xa7\x83\xee\xe4\x76\xda\x84\xb8\x05\x58\x87\x93\x0b\xb0\x8e\xd9\x1b\x1d\x84\xbd\x05\x53\x98\x6c\x24\xc0\x20\x67\x07\x0c\x9a\xb3\x03\xc6\x49\xb7\xde\x3d\x85\x73\xb4\xe6\x36\x96\x58\x07\x18\x94\xe3\xb8\x8d\xe5\x81\x0d\x06\x95\x1f\x34\x37\x4b\x42\x6f\x8d\xae\x27\xa1\x07\x8b\x38\x09\x3d\x59\xc4\x21\xa2\xc9\x7c\x0e\x7f\x96\xb4\x39\x5c\xc4\x64\xd0\x73\xb6\x61\x9c\x53\x0c\xdc\x1f\x74\xcf\xd6\xdc\x05\x44\xdd\x58\x92\x71\x50\x44\x5b\x73\x4b\x4e\x0f\x52\x31\xe8\xe5\x38\xc5\xa0\x97\x5d\x17\xd3\xbe\x66\xd7\x60\x70\xb9\x73\x9d\xde\x24\xe7\x16\xcb\x4f\x18\x66\x5f\xee\xd9\x21\xe8\x49\xde\xcd\x8d\x98\xe4\x5d\xe0\x7a\x8b\x9e\xbb\xf2\x4c\x8c\xc0\xf5\x11\x09\xb7\xe8\x71\x81\x0a\x8c\x1e\x27\xeb\x7e\x3d\x1e\xe0\x62\x81\x1e\xf9\x5d\xb1\x40\x8f\x1b\xe1\x7e\x3d\xae\x63\x31\x8b\x57\x0a\x18\x2c\xc3\x2b\x0d\xba\x79\x8a\xd8\xe6\x16\x4d\x5a\x1f\x2c\xd0\xeb\x32\xb0\x5f\xab\xae\xf6\xf6\x71\xf6\xbe\x4e\xf2\xfe\x98\x79\x5f\x27\x79\x0f\x01\xbb\xfe\xf8\x77\x5f\x17\xa7\x3d\x00\x56\xcf\xdf\x27\x21\xfb\xaa\x0f\xbd\xa5\xc0\x1c\xe7\xc3\x7a\x9d\x44\xcc\x86\x1b\x7e\x19\x58\xee\x7d\xdd\x52\xc0\x2f\x2e\x2f\x1b\x6e\x34\x66\xac\xb0\x91\x15\x3f\xf5\x58\x61\x23\xab\xca\x2b\x11\xb5\xbe\xee\xbb\x5f\x56\x80\x2e\xb0\x01\xb8\xbc\xe5\x17\xbb\x2e\xbf\xd8\xf5\x0a\x06\xbb\x04\xc9\x06\xaf\xfb\xfb\xb7\xa0\x42\x5f\x31\x9e\xc6\xba\x32\x85\xee\xa0\x43\xe0\x30\xa8\x40\x6f\x93\xa2\x07\x53\x88\xf9\x33\xb0\x96\x88\x89\x4a\xf4\x35\xec\x7a\x63\x9c\x34\xf6\xe0\xe4\x72\xf6\xc6\x5a\xe3\x82\x6c\x7d\x05\x90\x6e\xbb\x88\xd6\xf6\xb7\x48\x46\x5f\x95\xf8\x5d\x44\x95\xe3\xeb\x26\x60\x28\x44\xac\x6b\x46\x3f\x04\x6e\xbf\x80\x68\x4d\x74\x00\x86\xcb\x0b\x5b\x5c\x87\xa1\x90\x55\xc0\xe5\x85\x47\xae\xc3\xf9\x6c\x02\x29\xc0\xf2\x22\xc7\xc7\xba\x0b\x3c\x02\xac\xce\xe1\x14\x5c\xaa\x63\x76\xc0\x1a\x1c\x22\xea\xb4\x0f\xa7\xed\xe4\x4e\x11\x15\xb7\x73\xf6\x06\x3a\x2a\xbc\x5d\x44\x95\xd6\x6b\x03\x9d\xcb\x05\x11\x51\xcc\xeb\xd6\x45\xe7\x72\x79\x11\x75\x86\xf5\xc6\x0a\x5b\x34\xac\x37\x56\xd8\xe2\x7a\x1b\xe7\x81\x13\xae\xd2\xf6\x0a\xf3\x5b\x9f\xe5\x6f\x51\xa3\xbe\x3e\xee\x1c\x8c\x79\x95\x68\xd7\xc6\xf2\x42\xa7\x83\x28\x5f\x5f\x5f\xd1\x71\xd0\xd7\xf9\xd0\x9b\xe1\x43\xc3\x4e\x7d\x5b\x5c\x78\xc4\xd6\xa6\x25\xd8\xe9\x6d\x9b\x11\xad\xf9\xe5\x11\xf8\xb0\xde\x66\xdc\x0a\x86\xb9\xad\xee\xcf\xfc\xe2\x14\xe6\x17\xf7\x07\x56\xba\x19\x90\xc2\xc7\xdc\x0d\x2d\xb6\xfe\xe9\x9e\x7d\xdb\x45\x07\x11\xb4\x29\x11\x3b\x3c\x64\x53\x22\xae\x30\xcc\xad\xd9\xf5\xcf\x19\xe6\xd6\x1c\x37\x6c\xe6\x02\xd9\x7b\x77\xf3\x60\x30\x5b\x77\xf3\x90\x76\x9b\x36\x63\x87\xc1\x6c\x5d\x96\x00\x93\xdd\x26\xa5\x85\x6d\x0c\xec\xc1\x60\xb6\xee\x94\x60\x30\x06\x42\x1b\xc1\xa5\xbe\x41\x69\xad\x43\xf8\x5b\x7a\x9a\x21\xfc\x4d\x45\x9b\x68\x41\xdf\xd2\xc3\x08\xe1\x6f\x39\x07\xa5\x83\x49\x90\x4e\x21\x1d\x07\x36\xbf\xe5\xec\x1a\x44\x27\x41\xc2\x4a\xb7\x72\xe9\xe0\xec\xdb\xa4\x34\x18\xf3\x36\x49\x08\xa1\xb8\xa9\xd6\x12\x67\xec\xdb\xe1\xa0\x2e\x88\xfa\xea\xea\x14\x94\x76\xb1\xd0\x06\x15\xb5\xc5\xc2\x14\x70\xc3\xb6\x58\xe8\x40\x01\x17\x0b\x1d\x68\xf2\x05\x7c\x75\x93\x02\xf0\x46\xf7\xed\x92\x0b\xc0\x57\x37\x8d\xc1\x40\x8b\xdb\x20\x87\x16\xb0\xdf\x8d\x43\xdf\x02\x8d\x6c\x53\x52\xad\xae\xdb\x3c\xda\x2e\xd5\xeb\xb4\x5d\x10\xb5\xd2\x80\x25\x6c\x2a\xa2\x01\x4b\xd8\xd4\x3d\x03\xc2\xdf\x97\xf9\x25\x01\xe6\x97\x02\x70\xad\x11\x68\xfb\x0c\xd6\xb2\x6e\xbb\xaa\x63\x40\xeb\xfb\xea\x7c\xd0\xae\x76\xe3\xa6\x01\x0d\xee\x53\x82\x20\xdd\x76\x25\x08\x91\xb3\xbe\x6b\x19\x06\xfc\x61\x9f\x12\x64\x80\xce\x3e\x63\xba\x3b\x40\xfd\x2d\xc0\xdb\xf7\xdd\x71\xa0\xdb\xbd\x79\x46\xe1\xf9\x7b\x13\x1d\x08\x72\xef\xae\x35\x9a\xc5\xae\x7e\x17\xa8\x81\xbb\xd2\x80\xa0\x70\xdf\xbb\xdb\x08\x09\xed\xc6\xed\x03\xb2\xdb\x63\xa2\xc3\xcf\xd0\xef\x5a\x40\x25\x7b\xb8\x3a\x10\xc6\xae\xb2\xb7\x0e\x3b\x60\x75\xb6\xc5\x0e\x1e\x01\xda\xa4\xe8\x70\x7a\x77\x0f\x2c\x01\x81\xbe\xe7\xfc\x99\x5f\x5c\x10\x0e\xec\x8e\x01\x39\x08\x66\xf6\xbd\x8c\x78\x73\x46\x77\x8d\xbf\x0d\x61\xbb\x2b\x1a\x36\xe4\xeb\x3e\x5c\xf8\x04\x37\x95\xbd\x6d\x15\x10\x6b\x34\x89\x7d\xb8\x20\x9c\xeb\x1d\x73\x6d\x6c\x9c\xaa\x1d\x9e\x3f\x08\x9a\xf6\xdd\xa4\x97\xe0\x58\xee\xc7\x1c\x94\x0d\x96\x16\x08\xa7\x76\xfd\x9e\x2d\x10\xf7\xfb\xe9\x1a\x20\x9c\xf6\x49\x0b\x10\xfa\xae\x34\xd8\x38\x89\xbb\x27\x7e\xdb\xfc\xe2\x38\x90\xe6\x7e\x3b\x53\xf4\xac\xfd\x76\x1c\xcf\xe8\x3c\xfe\x1e\x3e\xdc\x1f\x63\x43\x52\xed\xd2\xc2\x86\xa4\xda\x71\xf8\x0d\x22\x0a\x7d\x57\x1d\x23\xa2\xd0\x77\x4f\x7c\x42\x73\x4d\xce\xbe\xed\x3f\x8b\x92\xf7\xa6\x42\xb5\x21\x2e\x1b\xae\xc1\x96\xcc\xbc\xc9\xb5\x93\xc9\x36\x3c\x7b\x2d\xc1\xb5\x61\xee\xb4\x04\xbd\xb6\xd9\x06\xf4\xda\xe6\xcc\x77\xbf\x88\x1e\xd6\x4a\xdb\x27\x46\x1d\x60\xb7\x8d\x80\xf3\xc3\x40\x69\xbb\xfb\x85\x81\xd2\x70\x87\xb4\x44\xaa\x36\xe2\xf4\x83\x2c\x8d\xde\xf0\x8d\xb4\x44\xc4\xb6\x36\x3b\x00\xd1\xe6\x32\x38\x1f\x2c\xa9\x96\xa2\xa3\x25\x85\xab\xb3\x93\x52\xf4\x7d\x01\xb7\xee\xa0\x90\x5d\xeb\xae\x3d\x32\xba\x69\x15\x6d\xc8\xe8\x46\x8c\x7a\x6c\xc8\xe8\xa6\x55\xb4\x21\x55\x5b\xcc\x41\x05\xe6\xa0\xcc\x27\x5c\x5e\xe4\x6d\xd3\x5e\xc2\x8b\xda\x5b\x4e\x0c\x04\x5c\x10\x27\xa7\x68\x48\xe7\x93\x73\x1c\xbf\x4c\xdc\xf8\xa2\x7a\x96\xe2\x56\xe2\x86\x39\xda\x54\xcf\x52\x44\x71\x41\x8e\x0d\xce\xd1\xb4\xb1\x36\x04\x76\x43\x3d\x6b\xe9\x14\xca\x35\xe8\xf6\xe6\xc2\x8b\xb5\xba\x1a\xae\xdb\xde\xc6\x1c\x14\xac\x27\x0d\x22\xd7\xdb\xe1\xe4\x60\x4a\x4d\xeb\x6b\x83\x29\x35\xbc\x24\x2d\x9d\xc2\x21\xa1\x74\x01\xd7\xcd\xf9\x1c\x73\x1c\x00\x9d\x29\x1b\xec\xaa\x9d\xae\x8e\x58\x9f\xb6\x11\x51\x75\xb5\x14\x37\xed\xb2\x0d\xd1\xdd\xd4\xd5\x52\x0c\x54\xa8\x48\xea\xe9\x4d\x1d\x2a\xed\x5a\xfb\x28\x61\x7e\x6d\x52\x1a\xbc\xab\x3d\x8e\x03\x27\x6c\xaa\x5a\x1b\xbc\xab\xbd\x1e\x65\xd8\x55\xd3\xeb\x98\x18\x58\x4d\x27\x47\x62\x53\xb5\xd7\x15\x85\x5d\x99\xea\x34\x70\x2b\xf7\xae\xe1\x93\x28\x02\x7d\x99\x5d\x37\x00\x17\x9e\x71\xfa\x32\xdb\x7c\x5d\x77\xd3\xde\x92\x41\xfb\xea\x6e\xa3\x8a\x74\x1d\x16\xc9\x38\x7d\x9d\x6d\xe8\x5a\x23\x06\xbf\x74\xef\x93\x1a\xe1\x77\x5d\xe1\x94\xa2\xb3\xbb\x20\x62\xa0\x45\x83\x93\xba\xf7\xdd\xd5\x11\x83\x5d\x44\xe1\x77\x7d\x97\xd0\x11\xd0\x7d\xd2\xa9\xe8\x4c\x3a\x45\x5a\xf7\xe6\x36\x22\xad\x7b\x73\xda\xe2\xd6\x3c\xa3\xe2\xa6\xc7\x63\x43\xb1\xe9\x6d\xe2\x06\xa2\xdd\xad\x17\x1d\x15\xb5\x14\x03\x15\xb5\x0d\xbe\xda\xfb\x44\x87\xae\x95\x7b\x29\x6e\x31\x3b\x00\x9d\x74\x41\xb0\x6c\xbb\xb6\x4e\x8a\xdb\x24\xa6\xfa\x59\x94\xbc\x77\x85\x55\x3a\xee\xa4\x27\xcc\xd1\x3e\x85\x15\xe6\x68\x47\xbb\x6a\x39\x01\xb8\x36\x3e\xf4\xde\x91\x35\x8d\xe4\xa1\xde\x71\xc2\x8f\x1d\x1d\xaa\x9f\xf3\x67\xf4\x86\x78\x19\x78\xd7\x7b\x57\xd5\x2a\x94\xb0\xae\xaa\x55\xf6\x86\xaa\x35\x70\xb5\xf7\x8e\x63\x61\xec\xc8\xdb\xae\xac\x29\xbb\xd6\x77\x50\x76\x2d\x39\xec\x08\xdf\x4e\xdc\xb4\x95\xe3\xe8\x77\x2f\x7b\xd3\xf2\xc0\x71\xdf\xbb\x5e\x85\x1d\x49\xdc\xd5\xc8\x76\x84\x6f\x27\xd3\x73\xec\x88\x58\xc3\xd2\x63\x47\xc4\x06\xe7\x7c\xec\x48\xd5\xd0\xc0\x2f\xda\xc4\xe2\x4c\x31\x20\x43\x03\x9f\x70\x7e\x8f\xd5\x71\x10\x34\x61\x2a\x5c\xd9\x9b\xf6\x05\xfe\xfd\x1e\xda\x17\x65\xd7\xba\xdf\x76\x44\x50\x28\x82\xf6\xcd\x2f\xce\xc7\x71\xb4\xdc\x0b\xdb\x34\xf6\xd9\x75\x01\x4c\xdc\x06\x80\xab\xb3\x09\x38\x1f\x44\x50\x68\x4f\xec\x88\x93\x68\xfe\x0c\x09\x12\x1e\xd3\x42\xfc\x87\xc6\x05\xce\xfe\x1e\x8a\x06\x92\xa1\x7a\x18\x76\x2a\x27\xa7\x49\xbe\xc3\x7e\x43\xef\xd9\x0e\xc7\x8d\x14\x37\x67\xaa\x00\xd8\xe1\xb8\x91\xae\x1b\xac\x34\x34\x14\x76\xb8\x67\xe8\x9e\x27\xd1\xa4\x87\xd2\x60\x87\xe7\x87\xd2\xa0\x5c\x1d\xa5\x01\x01\x82\x1e\x72\xf6\x1d\x56\x1a\x5a\xc7\xe5\xba\x1d\xf3\x67\xa0\xa3\x75\x5c\x9b\x80\xa7\x17\x5d\x3a\x4e\xcf\x68\x17\x98\x58\x83\xdb\x29\xd6\x5d\x60\x76\x00\xa2\x97\x27\xd1\x15\x55\x39\x2a\xe4\x78\xe8\x16\x23\x3b\xac\xc7\xed\x22\xc2\x57\x43\xff\x16\xa9\x62\x3d\x54\x8e\x48\xde\xe8\xc1\x19\x6d\xb5\x0b\xb8\x25\xf0\xef\x50\x39\xda\x61\xa5\xf1\xce\x9f\x81\xe8\x3c\xb0\xb0\xd2\x90\x4b\x13\x78\xe8\x31\x4f\x2f\x6c\x31\x97\xf9\xb3\x00\x70\x1b\xd1\x0a\x52\x1f\x73\x35\x7f\xe6\x14\x10\xb6\xa9\x5b\x99\x5c\x92\x9e\xeb\x6c\x53\x00\x1e\x4b\xb8\x5a\xfe\x77\x49\x99\x3d\xf5\x24\xef\xb0\xb8\xdc\x6c\xd3\x05\x6c\x03\xef\x32\xae\xdd\x8a\x3d\x4d\x99\xf9\x0e\xef\x4a\x8d\xe8\x62\x4f\x53\x1f\x33\x79\x56\x3d\xf7\xf9\xb3\x6f\xdd\xb2\xcd\x9f\xd1\xa6\xc9\x29\xe0\x62\xa9\x36\x45\x3a\x56\x4f\x2d\xe8\xea\x7e\x71\xb3\xd8\x60\x53\x66\xc7\x5e\x02\x2e\x55\xfd\x2c\xe8\xd3\x53\xeb\x98\x4c\x95\x9e\xe1\x21\x41\x46\xa7\x96\x47\x61\x5e\xa7\x6a\x13\x69\x60\x3d\xc3\x0d\x67\x8f\x73\x12\x0a\xc6\x53\xa6\xb3\x40\x76\x66\x3a\x0b\x2c\xa9\x4c\x0f\x23\x96\x54\xaa\x43\x91\xf7\xd2\x53\xb6\xbf\x0f\xdb\x78\x18\x39\x24\x69\xe4\x96\x24\x98\x9e\x46\xa7\x48\x82\xe9\x59\xae\x23\xe7\x22\x75\x64\xed\xd8\x4b\xa9\x19\x52\x1e\x92\xe1\xe6\x61\x22\xa5\xae\xa7\x86\x89\x94\xba\x9e\xc8\x95\xe9\x69\xa0\x88\x58\x4a\x4f\xd9\x3c\xb1\x94\x9e\xba\x99\x09\x9f\xf4\xbc\x66\xd7\x20\x8a\x4f\x69\x10\x3e\xe9\x29\x9b\x27\x7c\xd2\xf3\x12\x37\x4f\x8c\x81\x22\x12\x67\x7a\xe2\x66\x1e\x86\x4f\x12\xce\x3e\x0c\x85\xe4\x23\x06\x30\xf3\x54\x9d\x21\xed\xb0\xe7\xa4\x0d\xcf\x12\x16\xf5\x68\xab\x80\x9b\xe5\xf1\x31\xb4\xd3\x56\x01\x0f\x89\xc7\x07\x77\xef\x30\x62\x92\xaf\xcb\x8b\x45\x9d\x12\x57\x83\xe3\x96\xae\x27\x92\x6d\x7a\x19\xe7\x21\xd9\xa6\x97\x36\x48\x83\x7b\x16\x9c\x7d\x34\x18\x66\xad\x22\x0a\xc3\xac\xd5\xde\x60\x8b\x65\x12\x02\x99\x37\xbd\xc8\x6b\x1e\x0d\x16\x57\xba\x7b\x49\xc3\xe9\xb5\x39\x1f\xb8\x5a\x99\xe4\x4c\x4e\x4e\xaf\xcd\xf9\xc0\xd5\x0a\x33\xbe\x91\xa0\xd3\x4b\x33\x9e\x04\x9d\x5e\xdb\x1c\x94\x71\xf6\xf9\x05\xa0\xcd\x41\x19\xa7\x4d\x44\xe9\x5a\x0d\x86\x64\x9b\x5e\xfa\x71\x1b\x5c\xad\x34\x3b\xc8\xbc\xe9\x85\x53\x77\x34\xc4\x49\xe9\x9e\x22\x0d\xa7\x57\xb7\x37\x64\x4b\x69\xe0\x93\x79\xd3\x4b\xdd\x86\xcc\x9b\x5e\x31\xdb\x30\x68\xcc\x36\xfc\xcc\xe3\x3f\x5c\x51\xb2\x9c\xda\x70\x45\x3d\xfe\xc3\x15\x4d\x27\x07\xf7\x2c\x53\x1a\x86\xcb\xab\x43\x69\xb8\xa2\x35\x7b\xa3\xeb\x9a\xbd\xd1\x06\x77\xef\x68\x98\x2a\x65\x70\xd6\xa0\x4f\x8d\xd9\x01\x4b\x35\xe6\xa0\x2c\x95\x26\xb9\xe1\xa0\x22\xb7\x7f\x18\x01\xaa\xc3\xcd\x42\x22\xd6\xe1\xa1\x40\x22\x96\x52\x67\xb8\x54\x9a\x03\xc3\xd5\x39\xe7\x17\xc6\xd1\x57\x45\x72\x4d\xaf\x6b\xf6\x06\x6e\x2a\x50\x43\x44\x55\xa0\xc8\xb4\xe9\x25\xfd\x90\x69\xd3\x4b\x11\x34\x9c\xc2\xed\x38\x22\xaa\xb7\xb6\xc1\x98\xeb\xb6\x37\xb1\xbe\x5d\x03\x18\x73\x3d\xce\x07\x26\x5b\x8f\xfb\x23\x06\x8f\x87\xa2\x6f\x3f\x63\x98\xa6\xcf\xb5\x01\x07\x1e\x8b\xc7\x14\x0e\x3c\x54\x9b\xc8\xf6\xed\x63\x99\x1d\xf2\xc5\x50\x88\xf1\xa5\xb1\xba\x74\x58\x38\x43\xf3\x80\xbc\x97\x3e\x56\x39\x14\xe6\xce\x20\x14\xd2\xc8\x7b\xe9\x63\x52\x00\xec\x77\x28\x78\xda\xfc\x22\x4f\xf1\x8b\xb6\xc2\x80\x47\x8e\xdd\x03\x0c\x97\x1e\x06\x3c\x48\x75\xe9\x43\xaf\x96\x51\xa3\xb1\x4f\x74\xc0\x5a\x03\xdf\xd8\xd0\xd0\x70\x20\xef\xa5\x0f\xcd\x03\x52\x5d\xfa\x50\xd6\x18\x28\x1a\x46\x3a\x9b\x83\xea\xfc\x22\x83\xa4\x8f\xee\x38\x0e\x3a\x09\x05\x76\x35\xfa\xec\x80\xae\x67\xd1\x0a\xec\x6a\x18\x24\x21\x83\xa4\x8f\x98\xbd\x81\xdb\x24\x21\x31\x50\x23\x33\xec\x34\x54\xc2\x0c\x2e\x0d\x83\x9b\x24\x66\xf4\xa1\xbf\x8b\x5c\x8c\x3e\x20\x87\xbe\xc0\x39\x06\x14\xd0\x17\xd8\xfc\x20\x8f\xa7\x2f\xf0\xef\x31\x29\x00\x96\x6d\x42\x58\x27\x31\xa3\x0f\xf5\xae\xe6\xe4\xb0\x1a\x3a\x89\x19\x7d\xa0\x84\xf5\x05\xd5\x7e\x68\x2a\x37\x67\xaa\xa9\xdc\x9c\xdc\x94\x2d\xb0\xdf\x71\xce\x41\x05\x28\xd0\x58\x60\x4a\x03\xaa\xe9\x0b\x7c\x68\x68\x37\x37\x18\xf3\x30\x23\xa1\xc1\x98\xc7\xe5\x14\x60\x4a\xe3\xb2\x10\x04\x35\x7d\x5c\x8e\x33\xfc\xe2\x38\x08\x8d\x61\xc0\xa3\x0d\x7f\x36\x07\x05\xd1\xcb\x69\x23\xa0\x87\xa1\x90\x86\xe5\x34\xcc\x48\x68\xae\xa8\x85\x3d\xa4\x4e\xf4\xf1\xb8\x06\xb0\x9e\xf1\xb8\xbc\x9b\x3f\xe3\x54\x75\xd7\xfa\x71\x75\xe0\x36\xe3\x71\x72\x70\x9b\x61\x4a\x43\x77\x17\x74\x1e\x77\x84\xed\x50\x0d\xec\xc8\xd7\xf1\xce\x71\x58\xaa\x57\xac\x51\x51\x07\x02\x6d\x74\x77\x01\x05\xb1\x2f\xe8\xab\x07\x4e\xb6\x4e\x22\x46\x3f\x16\x97\x0a\x0e\x75\xa0\x13\x8e\xce\x5a\x1f\xeb\xfc\x59\x03\xd8\xfd\x42\x07\xab\x83\xc2\xb2\x8f\x6d\x7e\xe1\x67\x9b\x87\x02\x0e\x75\xe8\x63\x36\x0e\x77\x58\x74\x63\xea\xc4\xa1\x81\x6f\x1c\xce\x94\xc1\x61\xe8\xed\x30\x16\x69\xb4\xed\xd8\x5d\x51\xb8\xda\x61\x01\x8d\x49\x15\x47\x13\x37\x18\xd9\xd1\xe6\xcf\x18\xa7\x39\x28\x42\xe3\x68\x73\x50\xc6\xe9\xee\x02\x3a\xee\x61\x0e\x41\x67\x4b\x0e\x28\xab\x9b\x47\x71\x84\xf3\xd9\xfc\xd9\xec\x7a\x00\xcc\xae\xfd\x99\x58\xbb\xa2\xd2\x5c\x77\x45\x0d\x8a\xf4\x9f\xe6\x61\xf6\x43\xb7\x58\x77\x85\xb5\x7d\xba\x8b\x5a\xb3\x77\xd0\x53\x3e\x75\x44\xc5\x31\xc4\x15\x7e\x7e\x18\x24\x31\xac\x76\xa8\xd2\x75\x44\xc5\xa1\x23\xab\xbb\x74\x68\x71\xdd\x64\x8e\x43\x52\xed\xae\xa3\x9e\xe5\xee\x3a\x6a\x15\x19\x70\x3b\x4e\x7b\x73\xe9\xae\xd9\x81\x00\x24\x64\x24\xed\x98\x24\x04\x33\x3f\x2e\xb7\x15\x21\x72\x5c\xee\x17\x3c\xff\xb8\x9d\x0f\xfc\xfb\xd0\x3e\xef\x28\xd6\xc7\xe3\x4e\x22\x00\x8e\x49\x42\x08\x80\xe3\xb1\xeb\xd9\xc6\xae\x61\xcc\x66\x49\x8f\x0e\x5f\x3d\xd4\xd5\x8c\x8f\x9d\xe6\xe4\x18\x12\x3b\x17\x0f\x23\xe3\x9c\x8a\x20\xa3\x60\xe7\x32\xbb\xfe\xa6\x70\xae\x73\x50\xbe\xa8\xb8\x19\x1f\x3b\x95\x47\xc6\xc7\x4e\xcd\x1d\xca\x16\xfa\xb9\xd9\x1b\x9a\xec\xb9\x79\xb0\xc0\xed\x9c\xa7\x19\x1e\x79\x9a\x45\x63\x18\xed\x54\xea\x18\x39\x3b\x77\x77\x1b\x86\x79\x5a\xca\x65\x06\xc9\x69\xf5\x96\x79\x22\xa7\xb1\x14\xea\x52\xfa\xa9\x6c\xe9\xf0\xfc\xd3\x5c\x99\x0e\xc3\x3c\xe7\xd1\x76\x72\x5d\xac\x61\x8b\x67\x97\xf0\xc5\xda\xf0\x49\x87\x47\x9e\xe1\x1a\x88\x5b\xc8\x39\xc4\x2d\x5d\x37\x18\xf3\xa9\x04\xe9\x30\xbf\x33\x25\x7c\xd1\x49\x07\x15\x9d\x74\xb7\x45\x67\x9e\x6b\x78\xe4\x59\xf6\x26\x3a\xea\x5d\x1d\x1d\xf7\x2c\x71\x83\x7b\x9e\x53\xea\x20\x8f\x4e\x05\x4d\x47\xe1\x3d\x49\x0b\x1d\x54\x5b\xf6\x53\x71\x62\xe2\xc2\x89\x76\xd5\x4d\x5c\x38\xf1\x48\xf5\x15\x36\x7f\x7a\xf8\x8c\xd3\x9f\xb7\x5f\xe0\x91\xa7\x01\x6b\x63\x84\x27\x59\x68\x9d\x42\xd9\x7e\x92\x9a\x3d\x0c\x18\x9e\xba\x9a\x0c\x18\x9e\xba\x8d\x0c\x18\x9e\x32\x66\x03\x86\xe7\xfb\x6f\x75\x85\xfd\xc4\x8b\xda\x0d\x4b\x9f\xef\xc4\xfa\x9b\xdc\x25\xc7\x35\xde\x7c\xe1\x5d\xea\xc6\x9b\x2f\x63\x77\x94\xbc\xf4\x4b\x8e\x6b\x74\xd7\x4c\xfe\x11\xf0\xe2\xcb\x33\x6a\x74\xf7\x5a\x67\xfd\xe2\x87\x8e\x39\xfe\x9d\x22\xbc\x7e\xcd\x32\x47\x8e\xf2\x25\x93\x35\x30\x79\xed\xb3\xeb\x04\x70\x3e\xb0\xec\x4b\x8b\x3a\xe0\xd2\x97\xdc\x33\x60\xcc\x97\x65\x80\xc6\x56\xaf\x66\x9d\x24\x07\xe9\xd2\x36\x08\x58\xf6\xd5\xed\x9a\x83\x74\xe1\x43\xea\xc6\x3c\xaf\x6e\x1b\x0e\xf9\x15\xee\x02\xb2\xff\x92\xe3\x52\x92\xd4\xaf\x70\xe1\xd7\x9f\x9a\xe4\x57\xb8\xad\x9c\xb2\x0b\xf3\xba\x1b\xf6\xbc\x72\xfd\x5b\xe5\x66\xbf\xb4\xa8\x03\xfb\xe2\x4a\x57\x0b\x89\x7f\xe9\x7a\x32\xf0\x7a\x95\xe3\x22\x2a\xae\x9a\x5f\xf8\x99\x76\x73\x60\x52\x5c\x7a\x9b\x28\xe9\xee\x97\x59\x5c\x81\x5c\xbf\xcc\xe2\x0a\x84\xc8\xe5\x99\x35\x58\x7b\x1d\x13\x1d\x7e\xa6\x79\x60\xe4\xf6\x3a\x26\x3a\xb4\x91\xfd\x52\x9f\xd4\xaf\xc3\x0e\x90\x06\xd7\x39\x3b\x60\x0a\x30\xe6\x6e\x08\xf3\x82\x31\x77\x43\x98\x17\x49\xce\x7d\x5b\x6c\xf3\x08\x30\xe8\x65\xc1\xaa\xe7\x4f\xc6\x6c\x1c\xf8\x52\x83\x09\x64\xcb\x45\x2c\xaf\x6f\x68\x09\xd7\x33\xdb\x80\xa8\x1a\x8c\x91\xce\x4b\xc3\x9b\x42\xcb\x7e\x4d\x72\x40\xea\x5c\x06\x15\x8c\x1d\x5f\x18\xde\xdd\xe0\xe6\x05\x97\xee\x86\x30\x2f\x55\x13\x43\x98\x17\x2c\xbb\x1b\xb5\xbc\x35\x14\x8c\x37\xdf\xf8\xae\xfa\xc6\xf9\xbb\xb5\x0d\x8c\x2a\xdf\xd2\x86\x21\xcc\x7b\x75\x1c\xb6\xf1\xa6\xd6\x68\x04\xa2\xee\x36\x25\x32\x90\x6e\xb7\x84\x62\x38\xd2\xf2\x81\x41\x45\x68\xbf\x0d\x37\x04\xa2\xee\x36\xb5\x2a\x10\x75\xf7\xe6\x9e\xa2\x25\xdc\xdb\xc4\xad\x00\xc4\x8d\x73\x70\x6f\xb3\x6b\x3a\xd8\x67\x1b\x70\x9b\xc4\x05\x4b\xb8\xcd\x06\x09\x68\xfd\x36\x90\x17\x88\xc7\xbb\xbb\xd6\x1c\x8a\x3b\x66\x6f\x74\xe0\x21\xdf\xd0\xe2\x6e\x0f\xf9\x86\x9a\x71\xeb\x36\x32\x64\x7e\xab\x2f\x18\x18\xbf\x4b\x44\x91\x95\x77\x89\x28\xda\xc8\x5d\x2e\x3c\x47\xec\x9e\xa7\x17\x06\x73\x0f\xf7\x14\xce\x71\x0f\xb7\x84\xc3\x77\x1f\xe2\xc6\x71\xb9\x0f\xeb\x9b\x39\x2e\xb7\xca\x43\x84\x80\x87\x8f\x43\x71\x6b\xf6\x46\x08\x38\x53\x04\xda\x6d\xa8\xc0\xc8\xfa\x7d\xda\x01\xf6\xd1\x7d\x7a\xc4\x76\x7f\x36\x7b\xf3\x67\x76\x80\x84\xbf\xf5\x21\x19\x3f\xbf\xe7\x51\xc6\x3e\xba\x2f\xb1\x76\xeb\x0d\x22\x18\x3f\xbf\x6f\xb1\xf6\x1c\xdc\x12\x20\x5a\xc1\x7d\x7b\x2c\x3d\x07\xda\xc0\x81\xe0\xbc\xd5\x4b\x02\xd9\x7f\x3f\xf3\x0b\xb8\x3d\x2e\xa2\xdb\xa8\x9a\x6e\x5c\xf1\x36\x99\xd0\x60\xfa\xfd\xba\xf0\xe8\x32\xb7\xfa\x77\xc0\xfc\xac\x50\xe9\x5b\x08\x38\x1f\x38\xe1\xb3\xb8\xdb\xec\xc2\x33\x0f\x39\xcb\xfb\xcc\x73\x5d\x02\xb3\x83\x04\xf0\xb8\xfc\x34\x71\xbd\x3f\xab\xb3\x28\x9b\x39\x0b\x36\xe2\x59\x5d\x3a\x36\xe2\xd1\x0f\x15\x88\xf2\x47\x1d\xde\x30\xe1\xa3\xa2\xc3\x15\x16\xdd\xca\x98\x6e\x64\xd0\xca\x98\x6e\x64\xf0\xd9\xe5\x50\xac\xfd\xa3\xda\x6e\xfc\xcf\x32\x99\x61\x7e\xc0\x63\x45\xbc\xf1\xbf\x67\x9f\x1d\x80\x5b\x73\x8b\xe0\xdf\x8f\xc5\xe8\x06\xe9\x1e\x2f\x3c\x30\x2e\xf7\x4c\x12\x82\x99\x3f\x5d\x0a\xc0\x62\x7b\x14\x3c\x46\xec\x1e\xcd\xeb\x18\x02\xb3\x0d\xe8\xa8\x0f\x19\xb1\x7b\xa6\xe0\x81\x17\x3f\x2a\x3a\x89\xf8\x7f\x94\x13\x89\xf8\x7f\x4c\xfd\x35\x43\xe1\x29\x59\x0f\x8c\xd9\x32\x99\xbe\xc3\x98\x1f\x8d\xe8\x1d\xc6\xfc\x18\x60\x4b\xf8\xaa\x65\x32\x7d\xb7\x6b\xd4\xf4\x6e\x4c\xed\x19\x73\x50\x16\x7e\xcc\xde\xc0\x7a\xcc\xde\x40\x14\x3f\x54\x37\xa6\xf6\x48\x9d\x46\xce\x1e\xc3\xd2\x09\x97\xb6\x66\x66\x24\x2a\xc3\x73\x78\xe5\xc4\x04\x6e\x01\x70\x53\xcf\xcf\x09\xdc\x02\xe0\xa6\x04\x31\xbc\xf5\x68\x51\x27\xfc\xfb\x21\x5d\xb8\x53\xf2\xd2\x1f\x69\x30\x61\xe6\x8f\xae\xdb\x84\x99\x5b\x09\xd8\x77\x44\xea\x73\xcf\x0e\xe8\x0d\x1a\xec\xc6\xc7\x1e\x83\x24\x69\x6f\x12\xa4\xf1\xb1\xc7\xdc\x12\x33\x39\x2c\xa0\x19\x69\x6f\x9a\xca\x46\xb4\x9e\x77\x7e\xa1\x83\xd7\xae\xe1\x91\x16\xc3\x8c\x84\xaf\x5a\xff\xd2\xa9\x72\xe9\xef\xe2\xb4\x61\xb2\xd6\x22\x76\xaa\x5c\xba\xf7\x60\x74\x03\x5f\xde\x83\xe1\x15\x0e\xdd\xab\x2f\x3a\x25\x2f\xdd\xab\x2f\x3a\x25\x2f\xdd\xab\x2f\x86\x29\x1a\xaf\x94\x65\x14\xcc\x9b\x2b\xba\x81\xaf\x77\x9b\x3f\x6b\x00\x4e\x1b\xbe\x3a\x6f\xa1\x30\xf0\xe5\xc5\x13\xc3\xdc\x8b\x79\xbd\x84\x51\x30\xcb\x71\x86\xe9\x16\xef\xee\xd9\x41\x8f\xfc\xdb\x5d\x13\x60\xbd\x3b\x05\x38\xd4\xbc\x6b\x62\x87\x43\x79\x4f\xc4\x30\x2b\xc3\x3b\x1f\x46\x3a\x05\xf5\xbb\x9d\xf0\xc9\xbc\xd9\xc1\xc8\x99\x97\x39\x74\xe3\x63\x5c\xe6\xf0\x01\x8c\x23\xcd\x25\x32\xd9\x1b\x17\x46\xc2\x7e\xdf\xee\x7c\xc2\x2f\x2e\x48\xf8\xc5\xc9\xc1\x8b\xbd\x4a\xa1\xef\x68\xb2\xdc\x36\xb0\x76\xe3\x56\xaf\x8a\x1a\x65\x31\xdd\x3b\x05\x3a\xc5\x2f\xdd\x2b\x01\x86\x69\x1d\x16\xfe\x77\x03\x52\xef\x24\x40\xec\xb0\x59\xef\x62\x56\x86\x45\xef\x9d\xd2\x93\x6e\x35\xfb\xc8\xfe\xd3\x3c\xcc\x57\x01\x97\xae\xfd\x31\xfb\x60\x5c\x7d\x57\xa6\x6c\xbc\x93\x84\x5c\x3a\x35\x32\xc3\x34\xd6\x92\x77\x43\x2e\x56\xd3\x74\xa3\x2c\x96\x8f\x8f\x74\x85\x21\xbb\x6e\xc8\xc5\x22\xf1\x6e\x94\xc5\x6a\x9a\x6e\x94\xc5\x6a\x9a\x91\x48\x94\xf7\x76\x27\x91\xf8\xef\x24\x21\xd7\x51\xc5\xcd\x88\xc9\x3b\xa9\x06\x51\xf1\x1a\x3e\x49\x24\xf1\x6b\x12\x56\x86\x3f\x63\x8b\x0c\xac\xbc\x93\x9e\xdc\x88\x57\x0c\xe0\x0f\x16\xc3\x0c\x93\x2c\x5e\x15\xb7\x06\xb3\x78\xf5\x29\x51\x8a\x12\x8b\x09\x89\xe4\x48\x84\xe5\x2b\x83\x1c\x89\xb0\x7c\xa5\x13\x99\x89\x05\xaa\xe9\x04\x63\xc2\x5a\x96\x4e\xfc\x25\x16\xc3\x27\xe4\x48\xc4\xa2\x15\x4e\x26\x44\x2c\x2a\x6e\x64\x42\x84\xe5\x2b\x9d\x28\x4b\x2c\xaa\x67\x64\x42\xc4\xac\x65\xa1\xd2\x3e\x16\x4d\x72\x02\x2b\x61\xa9\x71\x27\x96\x12\xb3\xb0\x85\x34\x88\x58\x4c\x1a\xe1\xa6\x94\xf0\x6a\xa5\x91\x05\xd6\x66\x76\xe4\x00\x83\xe6\xb4\x3f\xce\x11\x8b\x8a\x1b\xf5\x2f\xb1\x74\xe7\xb3\x83\x8e\x22\x88\x88\x49\x2c\x92\x03\x41\x92\xb0\x96\x65\x70\x09\x4b\x2c\xdd\xde\x76\x70\x33\xcf\x8a\x74\x8b\x58\xd2\x3d\x1d\xa0\x63\xa6\x61\x0e\xd0\xf1\xd0\x13\x54\x88\x45\x65\x8f\x44\x8c\x58\xca\x71\x9a\x6d\x5e\xbf\xd0\xb5\xca\x1e\xa9\x13\x61\xc1\x49\x27\x0c\x10\x8b\x9e\x22\x52\x27\xc2\xea\x93\x4e\x18\x20\x16\xcb\xcc\xc8\xa3\x88\x59\x8a\x52\x0b\x18\x40\x18\x1d\x17\x7e\x2c\xda\xda\x78\xed\x63\xc1\x54\x19\xb5\x08\xd8\xf5\xca\x38\xa7\x5d\x07\xd3\x56\xd9\xc3\x37\x1f\x8b\x95\x65\xdc\x3d\x13\x16\xa9\x0c\x32\x2c\x62\x96\xa2\x94\xa7\x6a\xd2\x42\x80\x8e\x71\xc5\xf2\x20\x5d\xa2\x13\xa0\xa3\x82\x58\x9e\xaa\x6b\x76\xcd\xe4\x14\x4e\xa4\x4e\x84\xe5\x2b\x1d\x17\x7e\x2c\xea\x84\xe4\x51\xc4\x72\x4f\xac\xfd\xe2\xd9\x49\xa6\xa0\x1f\x80\x94\x86\x58\x6e\xef\xf0\x49\xb0\x36\xb1\x84\xec\x82\x58\xde\x09\x30\x8e\xf2\xa8\x49\x0b\xd6\x9c\x91\x5d\x10\x8b\x26\x51\x93\x30\x54\x10\xc9\x21\x88\x55\xc7\x15\x39\x04\xb1\x2a\xb6\x28\xbb\x08\x2f\xed\x1a\xc5\x41\xb2\xda\xa4\x53\x76\x11\xab\x1e\x82\xe2\x20\xad\xab\x4b\xf5\x29\x6a\xe1\x2d\x5e\x83\xbc\x83\x58\xd7\x39\x4e\x00\xb8\xd6\x9f\x38\x09\xab\x4d\x3a\xce\xf0\x98\x05\x26\xf5\x89\x93\xb0\xc0\xa4\xb7\xf1\x33\x1f\x66\xac\x2a\x88\x5c\x80\x13\xab\xb7\x24\xe1\x29\x8f\x75\xf7\xc8\x0d\x90\xd8\x67\x87\x20\x31\xef\x42\xe2\x9c\xaf\x5e\x5d\x44\xb9\x47\xac\xde\x56\x84\x73\x3c\x56\x85\x15\xe9\x0a\xb1\x42\x83\x83\x74\x85\x58\x0d\xe2\x57\xa3\x6b\xc3\x91\x05\x6d\xac\x84\x5c\x3a\x5e\xef\x58\x15\x56\x64\x35\xc4\x2a\x75\x76\x4e\xf3\x2c\x45\x21\xc5\x21\x2c\x45\x19\x64\x35\xc4\x2a\x75\xe2\xe8\x8e\x55\x6d\x91\x1b\x4d\x62\x35\xab\x98\x74\x85\x58\x75\x98\xe1\xa7\x8e\x35\xbc\xa4\x89\xe3\xb3\x12\xe8\xef\x94\x7b\x84\x15\x2b\x83\xac\x86\x98\x15\x2b\x24\x25\x84\x15\x2b\x83\xbb\x33\x62\x55\xc3\xe4\xee\x8c\xb0\x14\xa5\xe3\x80\x0e\xab\x4f\x06\x17\x69\xc4\x5a\x8e\xc3\x59\x5a\xa5\xe8\xee\xf1\x51\x8f\x24\x3d\x21\xd6\x63\x7e\x61\x75\xa4\xdb\xee\xee\xab\x20\x92\xb8\x10\xab\x9e\x88\xee\x51\x50\xd4\xf5\xc6\x38\x8a\x3a\x52\x1a\x62\x3d\xdd\x9f\xc6\x38\x52\x34\x6e\xe5\x58\xcf\xd9\x1b\x5d\x6b\xbe\x75\x37\xeb\x9c\xbd\x31\x8e\xd2\xad\xbb\x59\x93\x88\x21\xae\xd5\x7c\x63\x12\x17\x62\x9d\xa4\x9a\x74\x3d\x09\x32\xe9\xed\x96\x29\x25\xbd\x59\xf7\x49\xaa\x41\xac\xfa\x8b\x29\xf7\x88\xf5\x15\x51\xf7\x47\x5f\x5c\xef\xe0\xf6\x7a\x67\x9a\x0b\xaf\xd8\xea\x2c\xbc\x65\x25\x9d\x5b\xfd\xc2\xe2\x91\x8e\x5f\x3a\xac\x0a\xe9\x14\x64\x84\xb7\xcf\xf5\x0e\xd6\xdb\x24\xa1\xf2\x67\xf6\xc6\x14\x36\x22\xf8\xbd\x33\x85\x6d\xd2\x13\xa4\xba\x19\x0a\x21\x57\x21\x36\x25\x15\xe9\x09\xb1\x6d\xb3\x6b\x7f\xe6\x6e\x23\x9c\x2c\x38\xe9\x38\xb6\x63\x93\x98\xf0\x4b\xc7\x66\x90\x84\x5c\x85\xd8\xb4\xb6\x70\x52\xc7\x66\xae\x23\xb9\x0a\x61\x5d\xca\x20\x57\x21\x36\x05\x1a\x17\x83\xc4\xa6\x33\xaf\x3b\x8e\xd2\x0d\x1f\x73\x6c\x1a\x58\x5c\x19\x12\xdb\x24\x26\x24\xe2\x2c\x30\xe1\x7a\xc2\xd8\xd0\xfc\x7a\x17\x83\x3e\xdb\x00\x18\x3e\x21\x23\x21\x36\x0d\x2c\x32\x12\x62\x9b\x54\x22\x6e\xfa\xeb\xba\xb8\xe5\x6c\x03\x6e\xe9\x7c\x44\x54\x9d\xb0\x8b\x8e\xf4\xc3\x35\x23\xb1\xa9\x20\xe2\x97\x8e\xcd\x7c\x7d\xee\x1c\x09\x6b\x4a\x06\x77\x8e\xc4\xa6\xb9\xd6\x61\x35\x9b\x82\x93\x0b\x48\x62\x53\x56\x92\x13\x11\x9b\x9e\x3c\x2e\x20\x89\x4d\x0b\x2d\x44\x67\xcc\x36\x4c\x8e\x3a\x94\x1e\x76\x7d\xf8\x05\x51\xb7\x49\x59\x63\xfd\x59\xe2\x7a\x6c\xc7\xec\x03\x24\x70\x67\x0f\xb2\x27\x62\xd3\x6b\xc2\x25\x26\xb1\xe9\x00\x0c\xd1\x33\x54\xca\x8d\x26\xb1\x9d\x13\x3d\x70\x55\xc3\x0c\xd1\xd3\x48\x0b\x7b\xd3\xfa\x22\x95\x22\x36\xe9\x89\x54\x8a\xd8\x5e\xbb\x46\xa2\x58\x8a\xd2\xf1\x3a\xc6\xa6\x03\x03\x3f\x61\x6c\x06\x56\x48\xa5\x88\x7d\x99\x6d\x0a\x40\x74\x50\xa8\xf6\x65\xb6\x19\x00\xa2\x03\x1b\x99\x75\x29\x64\x5c\xc4\xae\x33\x8f\xbc\x8a\xd8\xb5\xa4\xf0\xec\x85\x57\x2b\x0e\x92\x2c\x62\x57\x9c\x70\xf1\x49\x58\x97\x32\xb8\xf8\x24\x76\x9d\x0f\xb8\xf9\xc2\x22\x95\x8e\x9b\x2f\xac\x3e\x19\x5c\x89\x12\xbb\x42\x83\xeb\x4c\x62\x6f\x13\x1d\xba\xd6\xa8\xc1\x4b\x17\xbb\xa1\xf9\xe1\x7c\x14\x0d\x01\xe7\xb0\x48\x65\x0c\xe7\xa3\x9c\x18\xce\xc7\x30\xfb\x10\x6b\x15\xb7\x21\x3a\x1e\xed\xe8\x0c\x2a\xcf\x1f\xe2\x96\x6e\x09\x7c\x68\xd7\xc5\x40\xfa\x45\x58\x7d\xd2\x71\xe6\x85\x35\x26\x1d\x67\x5e\xec\xa6\x44\x72\x1f\x4a\xec\xe5\xfe\x04\x83\xea\xf3\xe3\x72\x94\xd8\x4d\x89\xe4\x72\x94\xd8\x6b\x22\xca\x7c\xca\x99\xc2\xe6\x77\x03\x86\xb8\xf9\xc2\xea\x93\x8e\xff\x2e\xac\x3e\xe9\xb8\xec\x62\x9f\x47\x1b\x85\x6a\xd7\x92\xe2\x42\x95\xd8\x8d\xbf\x0c\x57\xc7\xa8\x3f\xbe\xb8\xd8\xe7\xe9\x45\xba\xed\x6a\x71\x5c\x9b\x12\xbb\xde\x67\x5c\x69\x61\xc1\xc9\x18\xae\x8e\xa1\x44\xfc\x6a\xb1\x1b\x9a\xa7\x96\x25\x76\xb5\xb8\xe1\x52\xe9\xa4\x1e\xae\x8e\x1e\x02\x6e\x89\x8c\xdd\x80\x21\xde\xb3\xd8\x95\x06\xc3\x75\xd3\x49\x3d\x5c\x2a\x03\x86\x5c\x18\x1a\xbb\xea\x19\xb9\x24\xb1\xeb\xa4\xc6\xd9\x15\xbb\xfe\x3b\x72\x49\xa2\xe9\x8a\x26\x97\x24\xda\x32\x7b\x0b\x00\x78\x24\xee\xa9\x68\x5a\x34\x38\xa1\xa2\xcd\xd3\xcb\x22\x36\xfd\xd2\x78\xa4\xa2\xe9\x8a\x1e\xac\x68\x5b\xdd\x12\xb8\x67\xd3\xdd\x36\x90\x2d\x6d\x73\x7f\xe0\x50\x6d\x1e\x7f\x96\xb7\x69\xfa\x73\xeb\x49\xcc\x6a\x13\x6e\x3d\x89\xa6\xb5\x9f\x30\x59\xab\x4d\x7a\xc2\x64\x9b\x8c\x19\x2f\x56\x34\x23\x81\x5c\x80\x1a\x4d\x2e\xcd\xad\xa7\xd1\x0c\xc6\xe0\xdf\x8a\x66\x5c\x9b\x6b\x53\xa2\xe9\x8a\x4e\x58\x69\x33\xc8\xcd\xb5\x29\xd1\x74\x45\x73\x31\x5a\xb4\xc9\xb2\x91\x6e\xcd\x3c\x45\x52\x5b\xa2\xe5\x6c\xc3\xcf\xca\xe5\x45\xd0\xb4\x9a\xb8\x81\x8e\x41\xed\x51\xf9\x33\x86\xd9\xc6\xec\x83\x99\xeb\xb4\xe6\x4a\x94\xf0\xfe\xb1\x8e\x87\x2a\xda\x10\x09\xc4\x4b\x33\x18\x33\xdc\x2f\x5d\x01\xb8\xab\xa2\xcd\xd3\xec\xe6\x1d\xf6\xe6\x7e\xc9\x98\x71\x4a\x45\xd3\xc2\x49\xb8\xa7\x45\x1d\x1d\x3f\x54\x34\xf3\x51\xa8\x28\x8a\xa6\x4d\xcf\xcd\x29\xd1\x70\x98\x75\xca\x8b\xa2\x69\xa0\x24\xcc\xaf\xcd\xa3\xed\x1e\x5f\x62\x0d\x27\x6c\xda\xf4\xdc\x82\x12\x4d\xa7\x35\x75\x43\xd1\x6e\x2f\xee\x84\xab\xb5\xc9\xbf\x11\xb1\xdc\xb4\xb6\x2d\x8b\xbb\x7f\xbb\xa8\x18\x0e\x4d\xd3\x05\xa7\x54\xb4\x67\xf1\x67\x74\xf0\x11\xca\x07\xf0\x33\x5d\x69\xb8\x84\xa2\x3d\xb7\x5f\x6c\xf3\x0a\x30\x9f\x4f\x4e\x7c\x00\x3b\xa9\x76\x85\xe7\x28\x9a\x24\x84\x17\x28\x2c\x1e\xe9\x78\x81\xa2\xbd\xae\x35\xcc\xaf\xab\x5d\x51\xcf\x13\xfd\x13\x1a\x5f\x6f\x01\x30\x3b\xe8\x00\x73\x3e\x09\x70\x08\x14\xc0\x44\xe7\x43\x94\xe2\x91\x6d\x21\x11\x28\xba\x29\x28\xb8\x84\xa2\xaf\xc3\x2f\x2b\xc0\xed\x17\x7a\xdb\x1c\x14\x89\xd8\x37\xef\x45\x85\x47\xf6\x6d\xf6\x06\xa2\x8a\x13\x0a\x75\xa2\xef\xb3\x0d\x58\xef\xee\x36\x7c\xa8\xef\x2e\x15\x76\x66\x6f\xae\x28\x76\x66\xf7\x62\x55\x5c\x33\xd1\xf5\xab\x51\x9b\x13\xbd\x4d\xdc\xe8\xc0\x50\x29\x45\x37\xd1\xfb\x1c\x07\x74\xba\x5d\x73\x76\x2c\x04\xe9\x38\x6d\xa2\x9b\x82\x42\x01\x4d\x74\xc5\x09\xde\x98\xe8\xe9\xcf\x20\xef\x5e\x6e\x16\xd2\xba\xeb\x2e\xd0\x7f\xd2\xf5\x91\xe9\x3f\xe9\x8a\x06\x5d\x26\x7d\xcc\x2f\xe0\x66\xa6\x97\xee\x8f\x3e\x26\x3a\x20\x3a\x5c\x1d\x88\x69\x5e\x6a\xac\x63\xc4\x62\x91\x9e\x98\x78\x5d\xcf\x57\x71\x2c\xbb\x7a\x89\x3e\x8a\x2e\x61\xe8\x96\xb0\x24\xa4\xeb\x96\xe8\x9f\x00\xd8\x16\xb2\x8f\xa2\x5f\x6e\xfd\xee\xcf\x5e\x7f\x06\x3a\x12\x86\x2e\x86\xce\x85\x86\x0b\xd9\x47\xd1\xef\x79\x6f\x2d\x83\xea\x06\xd3\xab\xd0\x11\x0d\x5d\xaf\x42\x57\xe5\xd1\xc0\xe7\x12\xb7\xaf\x03\x76\xce\xa3\x4c\x05\x44\x58\x05\xd2\xa9\x25\x88\x58\xa4\x1f\xec\xa3\x30\x4c\x43\xf6\x7f\xc4\xe2\xea\x40\x0b\xb1\xb9\xf0\x9c\xf8\xd0\x3d\x55\x10\x46\x7c\x1a\xcb\xf7\x25\x00\x6e\xbf\x7c\x93\xb3\x88\xa3\x6b\x7e\xc6\xee\x7c\x38\xb0\x56\x74\x74\x6d\xd1\xd8\x25\x0c\x7f\xf6\x9d\xaa\x0f\x18\x3f\x63\x98\x96\x7b\x74\x32\xe1\xc3\x72\x8f\xae\xd1\x19\x9f\x0a\xb4\x2d\x24\x0f\x45\x78\x49\x2f\x97\xbf\x44\x34\x67\x8e\x55\x14\xdd\x71\x11\xe5\xd1\x67\x6f\x60\xd4\xdd\x22\x44\x79\xe8\xe4\xd5\x36\xb5\x44\xa4\x6b\xd8\x45\xba\x74\x50\x40\xa4\x14\x80\x24\xb6\xf6\xa3\x73\xab\x62\x44\xba\x40\x88\xe5\x48\x17\x15\x49\x1c\x29\xe1\x43\x28\x56\x85\x74\x2e\x5f\x8c\xd0\x06\xd6\xac\x8a\x21\x3a\x10\x4a\x18\xc2\xd4\x2a\x8a\xe1\xe4\x10\xb1\x61\xc4\x44\xab\x28\x8c\x67\x6a\x15\xc5\x21\x11\x8b\xb5\x02\x40\x13\x89\xe2\x91\xef\x8b\x3f\x73\x50\xe4\x44\x9c\x6e\x38\x32\x3a\x4e\x37\x2f\xfd\xe2\x16\x41\x9d\x31\x29\x00\x9e\x1f\xa7\x88\x26\xf3\x39\xe7\x38\x60\x7d\xce\xae\x41\x54\xe5\x48\xe3\x29\xae\xd9\xb5\x5f\xec\xba\xfc\xe2\x95\xcc\xb0\xec\x50\x39\xd2\xf6\xe1\x7a\xc1\xef\x67\x7e\x99\x3f\x63\xd0\xdb\x05\x41\x12\x5b\x7d\xd2\x35\x77\x62\x8a\x06\xb8\x80\x97\x70\x76\xcd\x9d\x78\x5c\x03\x97\xea\xb5\x0d\x94\x16\x5a\xd4\x5c\x97\x18\x29\x9b\xd7\xb8\x48\xf3\x09\xc9\xd3\x8e\x9c\xcc\x1c\xad\xc7\xea\x93\xae\xd5\x90\xcb\xec\x3a\x01\x6e\xbf\xf0\x33\x1c\xc1\x5d\x0b\x20\x0d\xac\x68\x01\xe4\xe6\xa9\x62\xdd\x72\xe3\x54\x71\xe7\x7f\x50\x49\xf2\x01\x0c\x6a\xf8\x44\xcd\x3c\xf7\xdd\x2f\x3b\x80\xcb\xdb\x04\x9c\x29\x04\xe9\xa5\xa2\x5d\x95\x3b\x0d\x4c\xaa\x65\x53\x8a\xf2\x75\xc0\xcf\x5a\x17\xe0\x67\x6d\x76\xc0\x14\xe6\x2d\xd9\x90\x6a\x6a\x37\xab\x17\x67\xf7\x67\x10\x53\x76\xd7\x0d\xfa\x49\x79\x3e\xb7\xb8\x44\xc6\x9c\x02\xd3\x0e\xc7\x61\xad\x29\x30\xf9\x00\x66\x1a\x97\x00\x93\x0b\x11\xed\x76\x20\xa2\x08\xb4\xcc\x4d\x80\x41\x53\x74\x20\x40\x0b\x4c\xba\xaa\x70\x6a\x83\xa8\xfd\x5a\x6d\xd2\xd5\x7e\xa9\x36\xf9\x3a\x00\x28\x17\x11\x51\x97\x35\xdb\x30\xa8\xde\x67\x35\x59\x4b\x4f\xfa\x80\x98\x28\x3d\xf9\xda\xb0\x3a\x63\xa2\x43\x1b\x33\xbd\x48\x9e\x0e\xeb\x50\x3a\xc9\xd3\x91\xca\x23\xae\x06\x8c\x54\xb9\xe3\x36\xc0\xc8\xd3\x0e\x3c\x62\xa6\xc3\xa8\xaf\xa6\xf4\xa3\xba\x99\xd7\xea\xcf\x98\xe9\x24\xa6\x8a\x9f\x31\xcc\x94\xd2\xb8\x64\x26\x52\x29\xc4\xbd\x32\x91\x2a\x54\x2a\x88\x79\xbb\xdc\x28\x7b\xf9\x88\x11\xea\x99\x75\x29\x9d\xfb\xef\x22\xd5\xae\x86\x87\xfe\xf5\x98\xa2\x9e\x59\x70\x12\x6a\x57\x89\xa6\x14\x6a\x57\xf9\xbe\xfe\xec\x1b\xa7\x14\x2f\xbc\xce\x10\xb5\x7a\x2e\x90\x42\x56\x78\x84\xea\x4c\x6d\x6e\x38\x52\xa8\xd0\x60\x42\x75\xa6\xf6\xe6\x17\x81\x53\xe0\x1b\xb4\xda\xfc\xd2\x01\x42\x80\x71\x50\x5a\x82\x2b\xe1\xa2\x54\x5a\xb8\xa1\x25\xaa\x89\x28\xab\x53\x5e\x4a\x4e\x8e\x72\x54\x88\x35\x87\xbe\x72\x76\x3d\x00\xc2\x9f\x09\x20\x4e\x48\x92\x0b\xaa\x35\x3e\x60\x05\x10\x6b\xc8\xbb\x08\x78\x04\x39\xca\x51\xf3\xc8\xa1\x91\x59\xc7\x11\x24\x2c\x47\x95\x58\x43\x5c\x55\xb3\x03\x00\x8e\x4f\x28\xd7\x6b\x38\x6d\xc8\xce\xd2\x8d\x50\x94\xd7\x98\x6d\xc0\xfa\x70\x79\x21\xc8\x3a\xe6\xa0\x74\x70\xd8\xc6\x45\xe4\xc8\x85\x32\xba\x60\xbf\xb1\x88\xdb\x3c\x2e\xdd\x2f\x6e\xb0\xb8\x5d\x52\x00\xd4\x59\x97\xbd\x89\xce\x3d\x07\x65\x75\xd0\x6d\x42\x91\x6a\x81\x46\x2c\x62\x70\x3b\x53\xe4\xab\xd5\x1a\xb1\xd8\x46\x96\xcd\x05\x31\x51\x72\x69\xb2\x06\xa3\x1e\x37\x0b\x8a\xae\xd7\xae\xa1\xe8\x01\x97\x0e\x65\xe5\x58\x24\x14\x8c\xdb\xb1\xb8\x73\x98\xb0\x63\x11\x03\x28\x9a\x22\x8e\xef\x8b\x6d\x5c\xd1\xf9\xc5\xad\x87\xd6\xc7\x6a\x6f\xc8\xca\xb1\x3a\x28\xe2\x71\xa8\x99\xaf\x02\x9b\xfb\x03\xe1\x8f\x5d\x74\x20\xfc\x31\x0f\xec\xfc\xe2\xa0\xf3\x8b\xeb\x06\x4b\x18\xbb\x3b\x07\x4b\x18\x4d\x02\xc4\x3a\x1e\xcd\xd5\x99\xc0\xc4\x0d\xac\x7d\x22\x80\x7b\xce\x62\x4c\x8e\x8b\x48\x1d\x3e\x04\xc0\x4d\x64\x31\x26\xc7\x45\xbe\x8e\x90\x16\xd0\x24\xc6\x64\xbf\x76\xe0\x6d\xfd\x24\xb3\xc6\x98\xbc\x18\x2d\x7b\xa4\x5b\x82\xe4\x1d\xe9\x22\xc2\x29\x86\x5a\xce\xea\x38\xe5\xf1\x47\xd8\x8e\xe1\xba\xa1\x72\x8f\xe1\x1a\x38\xe8\x98\x1d\xf8\x05\xa1\xbe\x3a\xe8\x70\x72\xc8\xe4\x71\xd8\x06\x8d\xc5\x82\x8c\x50\x22\x8e\xc3\x45\x84\x71\x59\x9d\x11\x8a\xc7\x71\xb8\x06\xe2\x86\x62\x13\x8a\xc7\x41\x21\x6c\x7c\xa2\xee\x27\x0c\x73\x9c\x52\xb4\xe8\xa9\xdb\x90\xaa\x18\x56\x6b\x84\x12\x72\x9c\x2c\x10\x79\x8b\x61\x81\x46\x70\xdb\x78\x58\xa0\x11\xdc\x36\x1e\xe3\x4a\x7f\x06\x46\xd2\xd3\x66\x07\x58\xc7\xa1\xe8\x1b\xf7\xee\x17\x06\x95\x36\xc8\x4e\x8c\x21\x2f\xe6\xea\x95\xb0\xf2\x22\x94\x90\xe3\x19\x7e\xa1\x6b\x52\xba\x42\x09\x39\x34\x7b\xc9\x41\x8c\xf1\xce\x0e\xc0\xed\x9d\x6d\xc0\x4d\x96\xad\x20\x1d\x78\x44\x63\x9d\x6d\x5e\x81\xaf\xcd\xa1\xad\xc0\xd5\x2b\x71\xe0\x1e\x0d\x45\xdf\xb1\x74\xbf\x0c\x80\x89\x81\x3f\xe3\x5c\x90\xc4\x18\x16\x5b\xc4\xea\xcf\x56\xd1\x41\xda\x59\x79\x11\xeb\xfc\x59\xf3\xcb\x06\xe0\xb6\xce\x9f\x0d\x01\xbf\xcc\xae\xbf\x99\x1e\x9b\x5d\xa3\x77\x59\xad\x11\x5c\x7a\x16\x87\x3a\x14\x19\x8d\x71\x6c\xb3\x0d\x3f\xdb\x3d\x4b\xf8\x28\x8e\x7d\x7e\xa1\x8d\x04\xa9\xdc\x3b\xb4\x81\x37\x7f\xd6\x3c\x3e\x70\xe9\x43\x4d\x89\xf4\xc6\xa0\x26\xe3\x03\x98\x9c\x82\x46\x51\x77\xcc\x27\x44\x30\xf9\x8e\xee\x22\x4e\xc0\x73\x80\x95\x77\xf8\x4c\x07\xb7\x99\xc5\xe1\xcb\x1c\xca\x3d\x4a\x37\xbe\x9f\x81\x5b\xb8\x3a\xb0\x79\x4a\x37\x3e\x00\x0c\xa4\x5b\x6e\x33\x8b\x23\x67\x1b\x7a\x93\x3a\x49\x21\x8c\x43\x1b\x84\xac\xc1\x38\xb4\x41\x48\x14\x8c\xa3\x3c\x89\xfe\x4c\xe1\xc4\x1d\x2a\x61\xdd\x46\x28\x6c\x8f\x72\x17\x6c\x33\x9c\x0f\xf2\xf5\x90\xbc\xb9\x43\x25\x0e\x25\xd5\x3a\x01\x5f\x4e\x41\x8a\x1e\x63\x62\x00\x70\xf8\x8c\x0a\xb2\xd2\xea\x8c\x58\x27\xe0\xe4\x10\x41\xc7\xa4\xb9\x09\x48\x73\x88\xa0\xe3\x74\x0a\x48\x9d\xe3\x9e\x1d\x80\xf5\x53\x7e\x61\x0d\x1e\xd7\x1a\x41\x73\x28\x4e\xb8\xb0\x3a\x0e\x5d\x40\xdc\x51\x1d\x96\x5d\x84\x02\xed\x78\xdd\x53\xf4\xc8\x63\x52\x89\xbd\xbd\xb3\x83\x6f\xd0\x73\x71\x75\xe8\xfa\x9c\xc7\x9f\xae\xcf\xc5\x69\xd3\xf5\xb9\xce\x71\x12\x40\xfa\xa1\xeb\x73\xf5\x20\x21\x82\x2c\xd5\x88\xd5\xae\x57\x57\x07\x79\x74\xce\x73\x6d\x07\x9b\x18\x20\x9c\x2c\xbb\x08\x65\xd8\xb9\x4f\x0c\x68\x33\xcf\x35\x82\xe6\xdc\x5d\x2a\x04\xcd\x39\xcf\x35\x82\xe6\xfc\xeb\xcb\x36\xfc\x4c\x65\x68\xf5\x67\x3e\x66\xb3\xe6\x4f\x35\xcc\xb3\xbb\xfb\x08\x9e\x73\x9e\x66\x84\xd5\xa9\xde\x4f\x7a\x63\x9c\xe1\xa2\x22\x2a\x28\xd0\xf8\x00\x86\xf2\xcd\x18\x85\xc8\x99\x4e\xc9\x2f\xe9\xda\x23\x44\xac\xbc\x08\x85\xc8\x59\xb3\x6b\x66\x51\x1e\x7a\x04\xcf\x59\xae\x23\x72\xe3\x2c\x8f\x9c\x1d\x28\x92\x36\x3b\x18\xf3\x67\x8c\x33\xa4\x5b\xd4\xda\x73\xb8\x0c\x98\x6f\xe7\x61\xd7\xc8\xa7\x53\x91\xc4\x8d\xde\x71\x1e\xae\xb0\xe3\x28\x78\x36\x44\xd2\x79\xfa\xda\x0f\xa2\xe1\x3c\x5d\x6e\x44\xd2\x49\x78\x2b\xc8\x6f\x8f\x13\x9f\x52\x6c\x48\xae\x93\x10\x73\x6c\x8b\x1d\x5c\x02\xb6\x99\x5d\x83\xe8\x39\xdf\x1b\x02\xb8\x5c\x03\xb1\x56\x04\x91\x13\x1f\xe7\x35\x11\x65\x0a\x2a\x6e\x8a\x93\x53\x5d\x4d\x71\x72\x5e\xf6\x86\x08\x3a\x6f\x09\x05\xb9\x67\x89\x88\xaf\x17\xc5\xa9\xe3\x94\xb4\xd0\xe0\x45\x86\x6d\xd9\x9d\xdc\x5b\x02\x74\xa0\x9e\x4f\x26\x68\x5c\x8a\x06\x32\x41\xe3\xa2\x3e\x29\xe4\xf9\xd7\xe2\xa0\x30\xf3\x4b\x0b\x80\xb4\xd0\xb0\x44\x24\xe4\xec\x97\xa2\x41\xfe\x7d\xc9\xf3\x49\x18\x8d\x6b\x9b\x5f\x04\x9a\x5f\xbe\x69\x5f\xfb\xc4\x2d\x01\xfe\xed\x99\xa5\xb8\xd4\xbb\xb8\x84\x25\x2e\x82\x0a\x21\xcb\xbe\xf6\x89\x35\x80\xb4\x41\x5e\x69\x50\x15\xf2\x01\x60\x2d\x6d\x90\x6a\x1e\x97\x4a\x18\x57\xad\xc4\x35\x5f\x7d\x82\xb3\x5b\x22\x12\x72\xf6\x4b\xf5\x4c\xfe\x7d\xf5\x61\x1b\x01\x77\x1b\x66\x7e\xc9\xcc\x77\xc4\xa3\xf5\x22\x21\xcb\xbe\xa4\x92\x1d\xf1\x78\x49\x25\xf2\xef\x4b\x53\x45\xfe\x7d\xa5\x18\xc0\xb2\x2f\xe9\x47\xc6\x7c\x69\xb7\xec\x2e\xbc\x76\x8b\x5c\xda\x62\x91\x90\x17\x5f\x35\x7f\xc6\xa0\x35\x07\x65\x9c\xf2\x24\x76\x7f\x76\xfb\x85\x41\x87\x83\xc2\x16\x2f\xb5\xb8\xdd\x2d\x39\x3c\x3b\x30\xa5\x4b\x57\xd3\xee\x2e\xa8\x91\xc9\xd5\x2c\xfc\x08\x19\xd9\x25\xcf\xdf\xdd\x92\xcb\x9d\x43\x5f\xbd\x2e\x31\x80\x87\x5c\xb2\x79\x79\xc8\x75\x8b\xb5\x0b\xaf\x71\x21\x43\xb9\x6e\x17\x1e\xe6\x70\xcd\xa3\x0c\x73\xb8\x8c\x1b\x90\xf3\x1a\xd7\x63\x1b\xc8\xd9\x92\x90\x90\x9c\xaf\xc7\x36\x90\xf3\xa5\x9c\x20\x35\x36\xae\x57\x0c\xa0\xac\x6b\x9e\x78\x24\xef\xad\xa5\xb1\xb7\x9f\xd5\x92\xc7\x6d\x4c\x80\x7b\xe3\xe3\xd6\x8d\xb4\xb3\x93\x16\x82\x84\xc4\x75\xab\x29\x71\x17\x4d\xdc\xeb\xec\x3d\x00\xd2\x9f\x31\xae\xca\x91\x64\x67\x21\x48\x48\x76\x37\xc9\x1c\x21\x71\x51\x15\xf2\x75\xf0\x21\x7e\x6f\x9e\x73\x76\xff\xc6\xaf\x1b\x12\x97\x85\x20\x21\x3d\xdd\x9b\xdb\x8a\xd9\x7b\x6b\x92\x93\x9f\x1b\xb7\x82\x47\xaa\xb9\x77\xa7\x80\x58\xbe\x77\x31\x40\xa9\xbc\x77\x77\x1f\x19\x7d\x37\x27\x87\xea\x78\xb7\xf9\x85\x41\xf1\x1c\x85\xe7\xfc\x0e\x97\x1b\x33\xf1\xf6\x3d\x32\x0f\xf0\xed\xab\x63\x1e\xd3\x5b\x71\xb2\x73\xfe\x2c\x2b\x09\xcf\xdf\xed\x73\x62\x1e\xb9\x5b\x33\x9e\x5b\xf5\xe3\x56\x39\x22\x8d\x37\x6e\x2e\xf4\x09\xde\x0f\x88\x5b\xd9\x42\x9a\x75\xdc\x35\x7f\xc6\x38\xda\xe7\xfb\x2e\x30\x7b\x63\xa6\xc3\xf9\x70\x96\xee\x21\xa2\x1c\x92\x5b\x7d\x68\x47\x94\xdf\x9a\x3b\xf3\x90\x1c\x8e\x03\x79\xdf\xca\x89\x79\x0e\x4e\xdb\x40\x0e\xf7\x39\xdb\xd0\x81\x5a\x0f\x89\xc4\x71\xab\xf5\x90\x48\x1c\x37\x91\xe8\x98\x27\x44\x2f\x2a\x59\xc5\x61\x25\x49\x90\x66\x1d\xf7\x35\x3b\x60\x41\xe4\xf9\x73\x1b\x35\xd6\xb9\x52\x3f\xac\x31\x89\xb9\x8d\xb7\x6b\x80\x9d\x79\x6b\x90\x90\x96\x1c\xf7\x2d\x17\x80\x3a\xef\xdb\xb5\xc6\x43\x70\x4f\xe2\xc2\x9a\xbc\x9f\xd9\x1b\x1d\x48\x5c\x73\xb3\x54\xc2\xb8\xb2\x26\x2c\x38\x89\xb9\xd6\xaf\x6d\x5c\x5e\x29\x6d\x2e\xe2\xeb\x82\x60\xed\xdf\xaf\xe8\x20\xd4\xef\x77\xf6\xf6\x75\xfd\x4c\xa9\x83\xb4\x7e\x16\x17\x04\xf2\x7e\x26\x99\x41\xde\xcf\xa4\x1f\x6c\x7a\x8a\x45\xbe\x2f\xdf\xa0\x8f\x31\x35\xee\xab\x89\x67\x1e\x7f\x24\xef\xa3\x13\x8a\x6b\x7b\xe2\x99\xc7\x1f\x06\xf3\x28\x68\x9c\x8f\xf5\x21\x21\x6e\x8f\x31\x0e\x72\xac\xc3\xfa\x90\x98\x88\xaa\xab\x4d\x44\x9b\xeb\x06\x4f\x79\xda\x9c\x02\x1d\xb4\xf9\x33\x3a\x20\x97\x29\xfe\xfa\x33\xa9\x11\x99\xfc\xf0\x16\xeb\x42\xc2\x75\xf8\xda\x4a\xcc\x0e\x7c\x37\x70\xfe\x2c\x76\x7f\xc6\xe4\x08\x8c\xc7\x5f\x81\x53\x80\xc9\x65\xf7\x67\x02\x60\x40\x26\x75\x3c\x1e\x7f\x6e\xb2\x89\x47\x01\x40\x26\x75\x50\xf8\xf1\x7d\x01\x37\x55\x2b\x32\xa9\xe3\x51\x34\xf0\x10\x40\xf8\x0a\x4a\x98\x22\xfd\x10\xac\x88\xb6\xfe\x54\xc3\xb4\x10\x24\xb8\xb2\x26\x1e\x49\x88\x8b\x69\xe2\x21\x93\x28\x4c\x99\x7e\x74\xa4\x4e\x8c\x0c\x5e\x4c\x24\x4e\x31\xda\x04\xd2\x2f\x6c\xb8\x7a\x17\xf7\xd7\xc4\xa3\xaa\x65\x3a\xb7\x55\x21\x61\x9a\xf5\x73\xb9\x74\x22\x2e\xa5\x99\xdb\xfd\xe8\x30\xe3\x2e\x9a\x78\x48\x69\x0f\xf3\xa7\x2d\x11\x09\xf3\xa7\x9f\x7b\xa2\xc3\xcf\xee\x21\xc0\x9a\x3c\xce\x07\x31\xf6\x68\xac\xcf\xf9\x10\xbe\x0b\x6e\x8f\x09\xde\x4b\xf9\xbe\x30\x05\x0d\x94\x89\x35\x59\xec\xc1\x85\x31\xf1\x48\x0e\x62\xfd\x2a\x92\x4c\x0e\xf7\xdd\xd4\x68\xf0\x21\x9e\x4a\xfd\xbe\x04\xc0\x6c\x93\x00\xa2\x03\x87\xb2\x2a\x24\xb8\x16\x26\xde\xd5\x35\xc0\xec\xf5\xd5\xd2\x30\x69\xfb\x55\x09\x73\xa6\xef\x76\x08\x30\xe8\xe6\x8a\x82\xdb\x6b\x24\x83\x87\x0e\xe2\x55\x57\xe3\x39\x83\xf0\xf5\x95\xe0\xc6\xff\x78\x15\x1a\xdc\x5f\x13\xaf\x21\x0a\x1e\x56\x0c\xdf\x08\x0d\x2e\x72\x89\x57\x71\xc2\xf5\xff\xf1\xaa\x91\xcd\xc9\xf5\xf9\x85\x41\x8d\x44\xcf\xf9\xf8\xf4\x26\x17\xb7\xc4\xab\x46\x36\x27\xa7\xd4\x99\xf3\xf1\x49\x4c\xd3\xb9\xdf\x49\x35\x08\xce\xf9\x24\x26\xf7\xae\xc4\xab\xe2\xd6\x90\xa2\x6f\x4c\x0c\xc0\x5a\x8d\xcc\x0c\xee\x37\xed\x1a\x17\xf1\xab\x46\x66\x46\x3a\x6f\x50\x7e\x00\xb8\x4d\x4a\x43\x39\xf2\x2d\x97\xe0\xa6\x94\x78\x95\x47\x73\x75\x34\xc9\xb9\x0f\x25\x7c\xbb\x25\xb8\x0f\x25\x5e\x15\xb7\x39\xed\x49\x9d\xf0\xef\x77\xcc\x0e\xe8\x7a\xcc\x0e\x04\xe4\x02\x30\xf3\x77\x92\x2a\xbc\xf8\xd5\x17\x67\x7e\xfb\x7b\x38\x05\x17\xe4\xf0\x24\xba\x06\xc7\xec\xc0\x9f\xcd\x0e\xc0\xe0\xf0\x1c\x60\xb5\xbe\x93\x4e\x61\x98\x16\x98\x44\x2b\xbf\xb8\x88\x2e\xd5\x29\x31\x95\x80\xc4\x04\xc3\x7c\x2f\x27\x07\xcb\xf6\xdd\xc0\x30\x15\xfb\x55\x0d\xe4\xba\x99\xb0\x72\x24\xcc\xcb\x7e\x0d\x18\xce\x45\xbc\x67\x1b\x30\xb8\x4f\xbf\xd8\x81\x47\xcc\x45\xa4\xa6\x24\xcc\xd8\x7e\x09\x7d\x84\x19\xdb\xef\x33\x7f\x06\x6e\x12\x2d\xf7\x94\x84\x05\x26\xc1\xeb\xc2\xf1\x2a\x9c\xb8\x47\x26\x78\x60\xe5\x03\xc0\xcd\xa0\x48\xff\xb8\x67\x2e\xcb\x6c\x93\x00\x92\xf3\xb7\x88\xe9\xcb\x29\xc1\x3d\x25\xe9\xcb\x29\x41\xc6\x76\x5a\x6d\x12\x7d\xfd\x99\x86\x99\xbe\xc2\x1d\x7d\xa5\xc3\xd5\x27\x66\x3f\xae\x96\x3e\xab\x12\xdc\x5b\x92\x8b\x96\x14\x37\xf1\x27\x05\x27\x1f\x12\xa0\xa7\xb4\xe3\xf2\xfd\x5c\x26\xdd\x16\xb8\x9a\x41\xc2\x16\xe5\x42\xe6\x7b\x70\xd3\x48\x2e\xbb\xcb\xfd\xed\x57\x2e\x93\x88\x07\xb3\xd0\xe0\x22\xeb\x3b\x17\xc3\x34\x5c\x66\x93\x8b\x61\x1a\xb2\xf4\x73\xd1\x19\x41\x0a\x78\x2e\x0a\x38\xae\xac\x49\x9e\x55\xf9\x00\xa6\xa0\x4c\x23\x39\x3c\x2d\x38\x09\x6e\x27\xc9\xa5\xcf\x36\x60\xad\xea\xd8\x77\x3a\x98\xa4\x3a\x40\x54\xb3\x8a\x14\xfd\xb4\x48\xc5\x07\x78\x73\x99\x44\x3c\xc0\x40\x22\x26\xd5\x3c\x7d\x3c\x25\x48\x35\xcf\x25\xe7\x38\xcc\xd4\xe4\x14\x4e\x4c\x5a\xcb\x12\xdc\x53\x92\x8b\xd1\x1c\x8e\x4f\x2e\x24\x31\x06\x49\xe8\xb9\x94\x0b\xd2\xf8\x42\x12\x63\x90\x77\x9e\x8b\x82\x94\xab\x71\x72\x31\xce\xc3\xd5\x38\xc9\xab\xf1\xdf\xcf\xc0\xe0\xf0\x98\x36\xa6\x70\xcc\x71\x98\x82\x7e\x35\x0e\x63\x2e\xca\x4a\x72\xc8\x93\xc2\x96\xef\x0b\x1d\x48\x83\x24\x94\xa7\xef\xc5\x2f\xf3\x30\x5e\xce\xb4\xf3\xb3\x6b\x7e\x61\x41\x54\x2a\x49\x35\x4f\xab\x4f\x82\x54\xf3\xa4\x78\x64\x5b\xe6\x31\xbd\xdd\x92\x10\xf0\x67\xc1\x38\x3a\x12\x28\x39\xc8\x65\x52\x4d\x30\xb9\xd7\x43\x1f\x4c\x41\xaa\x99\xa7\xf7\x9d\xbd\x7d\xf3\xa1\x5e\xe4\xfb\xd2\x00\x5c\x83\x8f\xdb\xe4\x6a\x34\xc7\x73\xbd\x4e\x12\xfa\x58\x4f\xae\xfa\xe2\x78\xc1\x20\xa9\x17\xf9\x7e\x46\x1b\xed\x23\xf2\xdb\x73\x35\x00\xcf\x4d\x3d\xe9\xeb\x24\x41\xb2\x7b\xfa\x22\x7c\x90\xc5\x9e\x56\x81\x04\x89\xeb\xc9\x1b\x24\xdb\xc2\x7d\x3c\xb9\xee\xf3\x67\x60\xa0\x23\x41\xca\x5a\x3d\xe4\xbc\x71\x91\x6b\x93\x64\x12\x0c\xe6\x89\xff\x78\x71\xae\xba\x18\xb8\x77\x25\x7d\x69\x24\xb8\x6a\x25\x29\xef\xf8\x3a\xa0\x8d\xfa\x1d\xf7\xae\xe4\x6a\x36\x8b\x94\xb5\x76\xa7\x0d\x1b\xb1\xf0\x23\xb8\x84\x25\x57\x63\x43\x52\xd6\xda\xe7\x38\x20\xaa\x8f\x99\xe7\x33\x72\x0d\x28\x98\x17\x33\x72\xf5\x59\x67\x52\xda\x73\xd5\xc0\x22\xa5\x3d\x2d\x09\x09\xb2\xd8\x73\x4d\xf7\x07\x3a\x5d\xf5\xca\x49\x9a\xab\x92\x8a\x2c\xf6\x5c\xcb\x29\x40\xa7\xbe\x34\x12\x24\xae\xe7\x3a\x8f\x3f\x34\x67\xe1\x47\x70\x39\x4a\xae\x64\x6d\x05\x97\xa3\xe4\x3a\x69\x01\x6a\x5c\xd5\x23\xb9\xe8\x24\x57\xf5\x48\x52\xda\x73\xd5\x45\xc7\xad\x41\xe9\x13\x22\x11\xcb\xcf\x2a\x7d\x92\xaa\x90\x6d\x91\x20\x57\x85\x15\x57\xa2\xe4\xaa\x52\x29\x75\x5a\xfb\x11\x24\xae\xe7\x7a\xcd\x9f\x31\x94\x41\x1f\x72\xd5\x73\xbd\xc4\xb5\xb1\x26\xea\x84\x24\xae\x27\x85\x20\xdf\x17\xba\x36\x02\xc4\x25\x26\xe9\x33\x24\x11\x1e\x6d\x0d\x2e\xca\x4a\x72\x55\x5b\x94\xf0\xd7\x7b\x76\x0d\x06\x12\x57\x78\x66\xb5\xbe\x7a\x03\x1d\x6d\x2c\xde\x96\xce\xd5\xa0\x4f\xef\xac\xe3\xeb\x51\x80\x25\x58\x22\x12\xdc\xeb\x91\x9b\x71\x53\x59\xc2\xa6\xb6\xc8\xbd\x1e\xb9\x29\x9f\xb8\x15\x29\xb7\x75\xb6\x19\x00\x2e\x37\x2c\x81\xf7\x45\x3e\x80\x36\xab\x44\xdc\xfd\x19\x9c\x23\x38\x58\x9b\x9e\x08\x1e\x1b\xc9\x6d\xf3\x5c\xc0\x2c\x36\x0d\x2e\x99\x85\xc5\x23\x3e\x86\x9e\xbe\x49\x12\x64\xf2\xe7\xa6\xf5\x45\x26\x7f\x6e\xea\x91\xb2\x91\xad\xf9\x33\x36\x6b\x33\x88\x2a\x7f\xd8\x74\xe6\xc9\x12\x36\xc9\x8e\x4b\x31\x72\xf3\x6d\x76\x2e\xc5\x48\x9e\x1d\xd9\x16\x8a\x61\x72\x33\x4c\x23\x7f\xf0\xa5\x91\xe0\xea\x8b\xdc\xe6\xa3\xeb\x2e\xa2\x2e\xef\x70\xdd\xd4\x16\xe5\x1c\x9b\x36\x16\xa9\xf3\xb9\x49\x4f\x64\xcb\xe7\xa6\xa0\x91\xa7\xf8\x20\x49\x84\x8b\xa8\x82\x28\x83\xd9\x54\x10\xe5\x29\xd6\x8b\x44\xb8\xbc\x39\x31\x60\x79\x55\x10\xe5\x29\x5b\xb9\x0b\x49\x6f\xba\xec\x28\xa0\xc9\x6d\xcc\x9f\xd1\x66\x38\x53\xb8\xcd\x36\x3c\x2e\x70\x9b\x6d\xd2\x93\xbb\xa0\x7e\x17\x2e\xef\xa4\x27\xb8\xf4\xa6\x6c\x21\xf7\x3e\x37\x3d\x11\xe1\x5a\x5f\xb3\x03\x30\xd0\x99\x47\xee\x7d\x6e\x6a\x71\xb2\x9e\x6d\x12\x46\x80\xce\xa4\x05\x17\x5e\xe7\x03\x25\x3c\xb9\xe9\xcc\x0b\x77\xe1\x76\x0d\x5c\x5e\x5d\x0c\xe1\x22\x3e\xb3\x0d\x83\x3e\x9e\x2a\x94\x94\xcd\x70\x10\xf5\x3c\xb9\x3d\xb3\x03\xa6\xf0\xba\xd6\xb0\xb8\x4d\x9b\x4a\x16\xb7\x6b\x1f\xc9\xbb\x7c\x90\x24\xc8\xe4\xcf\x5d\x2b\x88\xfb\x9f\x72\x37\x66\xc3\x43\x14\xb9\x4f\x09\x02\xef\xda\x75\x24\xc8\xbb\x76\x3d\x6c\x5c\x97\x91\xbb\x42\x83\xdb\x97\x72\x37\x39\x40\x56\xb3\x2b\x34\xa8\xc0\xc9\x5d\xfd\x87\x52\x9a\xdc\x95\x06\x21\x3a\xf3\xc0\x8a\x81\x3e\x66\x72\xef\x73\xef\x65\x9b\x04\xb8\x04\xbe\x35\xd8\x8d\xc4\xc8\x9e\x76\x43\x89\xdc\xbe\x94\x3e\x2e\x12\xa4\xe8\xe7\xae\x66\x14\x3f\xad\xf4\x49\x9f\x21\x89\x18\xf6\xfe\xda\x0c\xf4\x72\xe2\xca\x50\x1e\xed\x74\x19\xcc\x1c\x20\x99\x3f\x77\x13\x67\xb8\x9a\x29\x77\xb5\x2b\x32\xfb\x73\x37\x3d\x8b\x7b\x9a\x72\x57\xbb\x92\xc5\x59\x22\x12\xe9\x02\x95\x93\x5d\xc1\xc0\xd8\x64\x3a\x59\x72\xb5\x22\x9d\xac\xaa\x56\x3a\x59\x29\x80\xcb\x93\x72\x57\xd6\x70\x55\x44\xee\xea\x5d\x5c\x9e\x94\xbb\x09\x96\x5c\x9e\x94\x96\x88\x44\x8a\xa8\x29\x35\xdc\xa4\x94\xbb\x7a\x17\x37\x29\xe5\x2e\xa1\xa4\x58\x1f\xa2\x23\xd6\x26\xdb\xa4\x88\xea\xe6\xe3\x5a\xa5\xdc\xf5\x44\xc8\x7e\x7d\xe1\x24\xd2\x41\x75\xf3\xc9\xfc\x2c\x38\x89\x74\x50\x89\x2b\x1d\xd4\x14\xe3\xd8\xfd\xe2\x82\xec\x7e\x11\x6b\xf8\xf7\x2e\x3d\xc9\x3d\x2d\x38\x09\xae\x8a\x48\x9f\x3b\x09\xb2\xf2\x73\x7f\x1c\xc7\x0e\x9e\xd9\x06\xdc\x9e\x53\x80\xde\x1e\xe7\xd3\x6c\xe3\x52\xa1\xf0\xee\xfa\x28\xc2\x2f\xaf\x0b\x82\x48\xdd\x0d\x14\xc5\x04\x1c\x14\x2e\xed\xab\x28\x41\xb6\x7c\x36\x12\x2c\x83\xcc\xf7\x6c\x7a\x2f\x62\xfe\xcc\x36\xb0\xdf\x66\x6c\x88\x8b\x0c\xd2\xf7\x51\x82\xfc\xf6\x6c\x3a\xf3\xc2\xde\x14\x34\xb2\xf9\xb6\xcd\xde\x12\xc0\xf3\x06\x2b\x6d\x3a\x1f\xb8\x39\x20\xad\x3e\x09\x1e\x7b\xc8\xa6\x04\x91\xe7\x37\xc3\xf9\x3c\xa8\x90\x4d\xf7\xb5\x9c\xbd\x4d\x52\x85\xb3\x37\x23\x40\x5c\x16\x90\x4d\xea\xe4\xb2\x80\x6c\x2a\x61\xb2\x79\x1f\x31\x09\x4a\xf5\xb3\x29\x34\xe4\xec\x96\xa2\x04\x49\xe8\xd9\x0c\xda\xcb\x64\x5b\x7a\x94\x51\xb5\x9a\xaa\x96\x1c\xd7\xf7\x44\x82\x4a\xfb\x6c\x93\x16\xa0\xe8\x56\xc8\x30\xf9\x6a\x9b\x84\x01\xd1\x36\x93\x18\xe5\xab\xcd\x70\xbe\x7c\xb5\x19\x0d\x4d\x28\xb8\x19\xc1\x27\xf3\x3d\x9b\x11\x7c\x39\x6e\xd3\x20\xe1\xc9\x83\x6c\xdc\x42\x11\xa4\xc1\xa7\xef\x89\x04\x69\xf0\xd9\xb8\x49\x29\x48\x76\xcf\x66\xd0\x54\xf6\x6b\x1d\x4a\x90\xf9\x9e\xcd\xcc\x63\xee\x31\x4a\x8b\x52\x82\xcc\xf7\x6c\x3a\xc3\xc9\x7c\xcf\xa6\xbb\x20\xdc\x05\x73\x92\xc3\xb5\x96\x7e\xc8\x89\xcf\x76\xce\xc9\x31\x28\xf7\x51\x04\x65\xf7\xe9\x83\x24\x41\xa5\x7d\xb6\x6b\x4e\x1b\x0c\x28\xd8\x0a\x2a\xed\xd3\x42\x96\xa0\xd2\x3e\xdb\xe5\xb4\x61\xf3\xed\x9a\x1d\x30\xa8\x0e\xf4\xa8\x9f\x32\xcc\x66\x86\x0f\x75\x5e\x69\xfd\x4b\x50\xa0\x9f\x56\xb9\x04\xf9\xfb\x69\x95\x4b\x90\xb2\x9f\x4d\x65\x2f\x50\xe8\xdb\xed\x46\xc0\x1f\x9a\xa4\xca\xa3\x05\xe9\x13\x29\x41\x66\x7f\x36\xb3\x82\x94\x35\x4d\xef\x3a\x75\xfc\xd9\x24\x48\xea\xf8\xb3\x4b\x76\x94\xee\x67\x5f\x26\x6e\x7e\x11\x37\xf8\x43\xd7\x91\x40\x69\x40\x76\x45\x1f\x85\x62\xd9\xf5\x2a\x50\xe1\x9f\x56\xac\x04\x15\xfe\xd9\xb5\xb1\x28\x21\xcb\x6e\x22\x03\x55\x63\xe9\x43\x28\x41\xe9\x7e\xce\xf2\x15\x65\x9a\xe5\x2b\x41\x1d\x7f\xce\xf2\x15\x05\x5c\xdf\x66\xd7\xa0\x23\x75\x52\x5b\x90\xdd\x14\x07\x45\x5f\x37\x8c\xab\x18\x9b\xe5\x2b\x0a\xa7\xae\xc1\x45\xd5\x41\x76\x35\x3f\xae\xf2\xcf\x2e\xdd\x2a\x8f\x7c\xe1\x24\xb8\xca\x3f\xad\x65\x09\xca\xe1\xb3\x6b\x56\x71\x13\x7f\x76\x75\x42\x25\x55\x57\xaa\x52\x69\x96\x5d\x8a\xa6\x96\x20\xbb\x22\x96\x4a\xb3\xec\x86\xaa\x14\x5b\x5d\xc1\xc9\xcd\xfb\xd9\xe3\xf4\x0b\x53\x50\x08\x72\x8b\x7e\xf6\x9c\x3f\x63\x0a\x46\xa7\xb8\x1e\x3f\xbb\x72\x8f\xdb\x97\xd2\xe7\x4d\xa2\x20\x87\x3e\xe6\xa0\xb4\x31\x2d\x94\x5a\xf2\xec\x26\x7f\x2a\xea\xfa\xa4\x4e\x68\xa3\x1f\xc3\x2f\xa0\x63\xe4\x96\x62\x84\xec\x4a\x2a\x0a\xd0\xb2\x4f\x1a\xe4\x24\x76\xa9\x86\x9a\xb3\xec\xca\x23\x2a\x13\xb2\x5f\x73\x1c\x66\x7a\xd9\x06\xed\xca\xf7\x51\xa2\x3c\x3b\x7a\x15\x94\x95\xdd\x8c\x84\xf2\xb8\x5c\x6e\x09\xc4\x65\x65\x4c\x94\x67\xe7\x9e\x5d\x83\xb5\x31\xdd\x72\x83\xef\xd9\x06\x0c\x9e\xd9\x46\xc0\x85\x87\x4a\x3a\x39\xfe\x41\xfd\x41\x76\xb3\x47\x87\x5b\x6f\x4a\x83\x22\xd5\x9a\x99\x18\x6e\xb0\x96\x13\xef\x68\x65\xa7\x16\x2c\x86\xbb\x4d\x91\x40\x0c\x37\xd8\x38\x30\x4f\x67\x65\x2c\x73\x1c\x81\xd5\x2f\x01\xe0\x6e\x43\x4c\xd4\xd9\x7c\x3f\xe3\x8b\x69\x10\xd4\xc3\x65\x98\x15\x44\xd5\x5b\x86\xd1\x5d\x2a\xb9\x33\x36\x71\x63\xb3\x42\xb7\x04\x15\xd5\x19\x9b\x33\x45\x74\xfb\x58\x4a\x50\x51\x9d\xd1\x9c\x29\x5b\x12\x12\x06\xc5\x71\x19\xd2\x02\xd7\xd6\x67\xe8\x7c\x18\x2c\x7c\xf4\xd9\xa6\x00\x44\x07\x93\x35\xfa\x1c\x94\x0e\x54\x37\x15\xdd\xa1\xba\xa9\xe8\x0e\xd3\xd8\xa8\xcf\xce\xd0\xc5\x40\xd1\x5a\x86\x0e\xf4\xb1\xfd\x94\x61\x46\xcc\x71\x41\x42\xe3\x89\xca\x8b\x0c\x9d\x11\x5c\x8a\x9f\xa1\xba\x49\x25\x77\x86\xae\x76\xee\x31\x4a\x9f\x6f\x89\xe1\xae\x48\x5c\xc3\x8d\x30\xc7\x8d\xc2\xb7\xb4\x02\x27\x86\x6b\x5f\x6e\x11\x92\xd8\x72\x9c\xe0\x4e\xfb\x0c\x1d\xea\xd4\x5e\x67\xa8\x47\x72\x75\x51\x86\xa1\xdf\x01\xef\x9a\xb5\x39\x54\xc1\x65\xe8\x8c\xe0\xe9\xa9\x9c\x45\x37\x5c\x5d\x94\x16\xdd\x04\x37\xe4\x67\x4c\x4a\x83\xd6\x43\x01\xa7\x36\x32\x8b\x6e\xd4\x46\xc2\x50\x15\x65\xdd\x19\x8a\xb1\xe1\x4e\x2a\xb9\xa8\x0a\xc9\xd0\x7f\x47\x21\x48\xfa\xb0\x4b\x0c\x37\x4f\x7a\x1a\xee\xd7\x3d\xdb\x80\x9b\x2e\x06\x75\x9b\xd0\xac\xa2\x40\x3a\x43\x4b\x4a\x75\x26\x78\x9e\x38\x86\xcb\x6b\x62\x9d\xba\xcd\xac\xa6\xa1\x5c\x2f\x7d\xe5\x25\x28\x04\xc9\x30\x7b\x82\xc7\xa2\x32\x26\xd9\xa1\x29\xc5\xa4\x34\x77\xc1\x20\xd6\x70\xe1\x27\xd9\x61\x8e\xc6\xeb\x96\x20\x38\x63\x92\x9d\x0b\xaf\x43\x9d\x02\xe9\x8c\x49\x83\x70\xa8\x34\x65\x95\x4a\xc0\x4c\x45\x1d\xa5\xd3\x99\x56\x6a\x72\x93\x52\xa6\xa2\x8e\xe2\x91\x4c\x9d\x1c\x6a\x64\xb3\xb8\x87\xea\xc1\xb4\xb8\x27\x28\x1e\xc9\x59\xdc\x43\x29\x61\xe6\xa4\x5b\x98\x5f\xae\x13\x1d\x3a\x50\xf7\x54\x8b\x4b\x83\x65\xd4\x51\x67\xea\xe4\xa0\xae\x30\xa9\xf4\xf9\xbe\xd0\x9b\xc6\xa0\x5a\x5c\xee\xae\x01\x02\xcd\x12\x9e\xe0\x86\xff\x4c\xe5\x9e\x5a\x5c\xee\x2e\x08\x8a\xdb\xac\xe7\x51\x71\xf3\x69\x99\xa0\x14\x25\x53\xc2\x57\x8b\x4b\x03\xc9\xd4\xa5\x64\x1a\x1f\x53\x8b\x4b\xa5\x9b\x5a\x5c\xea\xf1\xa0\x62\x25\x73\x52\x34\x27\x24\x63\xb6\x01\x37\xfd\xec\x54\x72\xe7\x2c\xee\x51\xd9\xf3\x29\x99\xa0\xac\x3b\x53\xdf\xa2\xca\x5e\xc6\xec\x5a\x80\x15\x55\xd9\x4b\xcd\x42\x95\xbd\xd4\xe3\x41\x59\x77\xa6\xaa\xb0\xfa\x9d\xe5\x38\x31\xdc\x6d\x85\xe0\x70\xb7\xf5\x6b\xa8\xc5\xe5\x18\x02\x60\x6d\x5e\xdf\x70\xeb\x35\xe4\xd4\xe2\xd2\x24\x3f\xd5\xb1\x54\x3c\x0e\xcf\x81\x41\x2c\x75\xb3\xd4\xb5\xae\x6e\x96\x2a\xaf\xc3\xad\xd7\x9b\x4e\x7d\x76\xe6\xe9\xa0\x28\x6a\x69\x48\x59\x45\x2d\x27\xd1\x22\xd0\xd2\xcc\x70\x6e\x5f\xca\xbc\x66\x1b\xa6\x70\xcd\x36\x20\xaa\xfb\x63\x8c\x9f\x25\xae\x67\xde\x13\x3d\x66\xf1\xac\x02\xa0\x67\xa2\xd3\xf0\x5c\x28\x14\x55\xe9\x2c\xee\xc9\xc5\x73\xf1\xba\x26\x70\x42\x1f\x9d\xc9\xc5\xa3\xa0\xf9\xa6\x7e\xe7\x33\x31\x49\x71\x4f\xd6\x32\x7b\x4b\x00\x77\x12\x0e\x55\x56\x51\xa8\xb8\x95\x39\xb0\x85\x65\x58\xeb\xec\xe0\x5b\xe1\x52\x0d\xa4\xaa\x34\x8b\x37\x2e\x92\x32\xe8\x2c\x63\xc7\x3c\xef\x94\x65\x0c\x8a\xfb\x92\xb2\x76\x3b\xe0\x90\x50\x10\xf4\x01\xfc\x6c\x9e\x73\xf8\x5d\x51\xb8\x9c\xd4\x0d\xa5\xef\xbf\x24\x95\xcf\x59\xf8\xef\x92\x62\xe7\xac\x98\x5d\x33\x05\x2b\x22\x54\x10\xcb\xb2\x33\x75\x42\x0a\x82\xbe\x36\x4c\xce\x8a\x08\x15\x44\x9f\x6f\xc9\x85\x43\x62\xa5\x4f\x2e\x1c\x92\x32\xb1\x8e\x2b\x92\xb2\x30\xd2\x72\xe1\x5c\x94\xa9\x14\x3c\xfc\x94\x35\x66\x1b\xd0\x19\xb3\x6b\x81\xd9\x86\xa5\x1a\xb3\x0d\xc0\xe1\xfe\xa0\xcd\xd7\x31\xc7\x11\x98\x6d\x40\xd4\x90\x2c\xb5\xaf\x59\x87\xbb\xcd\xa1\xe0\x91\x96\x6d\x29\xd8\xa2\x8f\xb4\x24\xb5\x46\xe9\xbb\x2c\x49\xad\x72\x96\x5e\x05\xf5\x55\xdf\x65\xc9\xc5\xdd\xd6\x97\xcd\xbd\x4c\x49\xd9\xcf\xf7\x85\x71\x6e\x77\x1b\x3f\x61\x59\xd1\xaf\x5a\x5b\x26\x99\xaa\xd6\x96\x1e\x6b\xd5\xda\x9a\xc7\x12\x51\x57\xe4\x0b\xe5\xe2\xd9\x51\xd0\x70\x93\x52\x52\x10\xb4\xe6\xe2\x41\x7a\xdc\x12\xcf\x8e\xce\x3c\xee\x58\xca\x7a\x9d\x82\x67\xe7\x9d\x5d\x83\xe8\x3b\x7b\x03\x37\x72\xbb\x93\x3a\xa8\xa4\x6e\xe8\x03\x1a\x80\x47\x19\xae\x36\x16\xa7\x8d\xe0\x9c\xd5\x41\xaa\xcf\x03\x07\x60\x52\x06\x9d\xb3\x20\x88\x57\x9f\x72\xa8\x91\x71\x93\x52\x8e\x79\x94\x61\x57\x43\x07\x20\xf7\x25\xe5\x80\xb3\x27\x55\xcb\x39\x0c\x9a\x72\x79\x52\xfa\x0e\x4b\x52\xc2\x9c\xd4\x00\x7d\x5f\xbe\x05\x19\xdd\xb5\x66\xb7\x87\x4a\x98\x4a\xf2\xe8\xe2\x86\x4d\xe5\x03\x2b\x49\x85\x54\x8e\xc9\xb2\x87\x80\xab\x83\xa4\x1a\x5a\x27\xdc\x7d\x94\x56\x07\x25\xd7\xfd\xe7\x08\xa9\x84\xcd\x1a\x56\x3a\x53\xf2\x9b\x23\xc5\x9a\x9d\x1b\xfa\xeb\x54\xc6\x47\xba\x25\x6c\xe3\xd0\x47\xa1\x32\x3e\x26\x61\xb0\x8d\x63\x9e\x78\x64\xcb\xac\x0e\x52\xe5\x1e\xc6\x79\xd4\xb2\x87\xfe\x06\xb5\xec\xe1\x51\x56\xb1\x1e\x87\x18\xb8\x0b\xc7\x6c\xc3\x14\x0e\xd7\x2d\x7f\x56\x4b\x9e\xc3\x80\xa8\xba\xf5\x38\xc5\x08\x59\x33\x4e\x89\xcb\x9d\x3c\x27\x7a\x0c\x75\x4a\x42\x6e\xab\x69\xd6\xea\xe3\x43\x5f\x9c\xfa\xf8\xb8\x5d\x61\x77\xe5\x76\x51\xdd\x15\xb9\xb4\xca\xf9\xb8\x5d\x2d\x77\xe5\x91\x91\xb9\x11\x93\x31\xbb\x74\xfa\xd5\x54\xa7\x87\xbc\x98\x8a\xe4\xb4\x84\x27\x57\xf8\x37\x85\x3a\x1f\xb0\x02\x74\x81\x0d\xa0\x04\x76\x80\xc3\x0e\x1a\xc0\xec\x40\xe0\xf2\x4b\x07\xb8\xfd\x02\xc0\xe5\x2f\x49\x81\x53\x5a\x9b\x93\x14\x38\x25\xef\xa5\x7c\x6d\xfc\x02\x75\x52\xdb\x9b\x87\xa6\x3f\xb7\x22\xe5\x21\x9b\xe7\x22\xa4\x3c\x34\xf0\x29\x83\xce\x43\x42\xa1\x0c\x3a\x0f\xee\x05\x4b\xca\x98\xf2\x90\xe7\xab\x99\x1f\x54\x3e\x27\xc5\x4a\x79\x18\xf4\x19\xc8\xa3\x43\x4d\x89\x77\xa8\xf2\xd0\x65\xa7\xce\x3e\x0b\x75\xd4\xd9\x7d\x49\x25\x29\x22\x4a\x1f\x4f\x49\xaa\x62\xf3\xd0\x99\xa7\x02\x7f\xf4\xd9\x01\x58\x77\x67\xea\xe4\x62\xa2\xc3\x14\x4c\x28\x50\xff\x3e\x62\xf6\x26\xe0\x8a\x3a\x9f\x74\x4b\x9c\x42\xba\x88\x62\x6d\x96\x1d\xb7\x2f\xe5\x91\xe2\xe6\x14\xd2\x85\x17\x1d\x53\x0d\xb8\x97\x29\x7d\x53\x25\x57\x71\x93\xb8\x54\xfa\x0f\x89\x6b\x15\xb7\x9a\xe3\x80\x4e\xb9\xf5\x8e\xa3\x37\x90\xb2\xee\xf4\x4d\x95\xa4\xb8\x27\x8f\x31\x7f\xc6\xba\xa9\x36\x0d\x98\xd2\x31\x09\x12\x3e\x74\x0c\x31\x80\x13\x1e\xea\x50\x5c\x9e\x94\x87\x2e\x06\xea\xc2\xf3\xd0\xd6\xd1\x50\x38\xce\xf9\x85\x36\x9a\x37\x5a\x00\xc7\x39\xc7\x01\x1d\xcc\x9b\x5c\x1d\xf4\x9c\x83\x32\x9f\xcb\x5d\xb0\x6b\xe5\x91\xda\xfc\x71\xcf\x2f\xf4\x76\xbb\x0b\xf6\x66\x46\x82\xaa\xbd\x2f\xb4\xe4\x6a\x6f\x3a\xb6\x29\x12\xcf\x83\x8b\x34\x72\xb5\xb7\xc7\x05\xb1\xcd\x23\xa2\xc8\x30\x8a\x88\xbe\x2f\xb6\xb1\xb7\xf9\xc5\x05\x81\xc9\x1e\x8a\xa0\x31\x01\xf7\x14\x26\x7b\x4c\xa2\x9d\x80\x5c\x0d\x26\x7b\xbc\xb3\x83\x6f\xb3\xce\x65\x0e\x5a\x00\xb3\x8d\x5f\xdc\x39\xf8\xea\x39\xe9\x14\x56\x7a\x2e\x9e\x10\xe4\xde\xb9\xd8\x9b\x3f\x5b\x3d\x14\xfe\xcc\x6c\x72\xcd\x81\x73\x12\x2d\x42\xd0\x67\x61\x72\xcd\x9f\xa6\x15\xf9\x66\x4c\xae\xb3\x0f\x49\xd5\x3e\x36\xcf\x39\xfc\xfc\x34\xa6\x3b\x26\xe0\x32\x60\x38\x9c\xdb\xeb\x17\xe6\x37\x89\x18\x23\xe0\xf4\xa2\x10\x55\xfd\x73\x9f\x18\xf1\x65\x12\x31\xbc\xf8\x9c\x44\xec\xcf\xbc\x35\x84\x1b\x9c\xf2\x9c\x14\xed\xcf\xcc\x17\xd2\x3c\xa0\x3e\xe9\xfb\x42\x6f\xdd\x0e\xd0\xd4\x4f\xc5\xa5\x86\xc3\xa9\xb8\xa4\xf8\x34\x67\x7d\x12\xf7\x32\xe5\x19\x72\x35\x6c\xb9\x33\x9c\x36\x9c\xfd\xd4\xdf\xa0\x11\x70\xaa\x13\x6a\x04\xf8\xce\x4c\x52\x89\x9a\xe7\xa4\x68\xd8\xfc\xa9\x1a\x48\xad\x51\x9e\xe5\x8a\x22\x55\x7d\x33\x26\xa9\x3c\xcd\x53\x17\x83\xb6\xc2\xa9\x1a\x48\xdd\x50\x9e\x93\x3a\xed\x9a\x9b\x04\x92\x22\xa2\x3c\x0d\xe3\x0e\xc7\xc1\x01\x98\x54\x14\xe5\x39\x49\xd5\x41\x71\xdc\x27\xe5\x45\x49\xe5\xd2\x07\xd0\xe6\x9c\x5f\xf8\x19\x25\xb3\xc9\xf3\x19\x79\x72\x1f\x66\x52\xa0\x9a\xa7\xaa\xe3\x10\xeb\xcb\x9f\xa1\x8c\x9f\x64\xc3\x26\x35\xa9\x79\xe2\x6f\x48\xca\x50\xf3\x24\x4d\x6f\x5d\x9c\x02\xfe\x86\x75\x11\x6b\xbc\xdc\xeb\x22\xa2\x64\x97\xaf\x9a\x1d\x27\x5e\xee\xa4\x74\x35\x4f\x2c\x9a\x55\xb3\xe3\x7c\xe6\xa0\x60\x00\xa9\xae\xda\x13\xe7\x33\x31\x00\x51\x54\xc7\x75\x71\x0a\xb8\xf9\xd6\xc5\x29\xa0\x13\xae\xdc\xbe\x94\xe7\xfb\x00\x20\xb6\x2e\x7c\x07\xab\xc6\xc5\xb5\xb8\xf0\xa8\xf6\xd7\x22\xd6\x88\xfb\x6b\x11\x6b\x24\x15\x35\x4d\x1f\xf0\x61\x7d\x69\xde\x50\xfb\x9a\x97\x54\x42\xe9\x53\x5e\x9b\xcb\x8b\x08\xba\x36\xbb\x46\x04\x51\x78\xf4\x01\x8c\xd3\x27\x06\x02\x1b\x80\xbd\x75\x17\xd1\xde\xba\x83\x22\xc7\x7d\x81\x26\x79\x17\x23\xaf\x70\x75\x10\x27\x17\x26\xf9\xaa\x71\x71\x85\xd3\x46\xa0\x59\x5e\xb4\x6a\x42\xf8\xfc\x4c\x52\xc6\x94\x14\x11\x7d\x5f\x0a\x40\xdc\x90\xa2\x57\xba\x54\x22\x5a\x6e\x09\xa2\xee\xaa\xf9\x33\xba\x2e\x77\x01\x49\x65\xdd\xd0\xca\xe5\x07\xe9\x23\x33\x49\xe9\x6a\x5e\x8a\x20\xaa\x55\xf3\x52\xb6\x50\xfa\x94\xd7\x21\x06\xce\xe7\x70\xda\xce\xe7\xb0\x4d\x13\x70\xeb\xc5\x5a\xc3\x87\xa2\xa8\xbc\xd0\x16\xd7\x45\xac\xd5\x09\xa9\x90\xca\x4b\x15\x8e\x07\xfb\xd3\x77\x65\x92\x37\xfa\xf3\xba\x24\x26\x44\x1d\x15\x45\xdb\xaa\xa5\x71\xe1\x2d\x4b\x6a\x52\x93\xf2\xa2\xef\xcb\x4f\x7d\x98\xd7\xe3\x2c\x30\x0f\x28\x37\xfa\x00\xd6\xe4\x11\xd7\xee\x17\x77\x12\x57\xe7\xf5\x8a\x38\xb2\xf3\x7a\x3d\xc0\xc8\x4e\xdf\x99\x49\x1e\xf0\xcf\xeb\x9d\x88\x7f\x6d\x6e\x35\x3f\x8a\xb1\xf2\xd6\x3e\xa7\xe2\x35\xef\xc5\x43\xcf\x38\xb7\x2a\x1d\x95\x59\xe9\x0b\x34\x49\x31\x56\xde\xeb\xfc\x59\x02\x78\x7c\x10\x22\xbc\x40\xf3\x7d\xb1\xcd\x25\x40\x9b\xdd\x0d\x87\x7b\xde\xbb\xbb\x82\xe9\x72\xef\x4e\x01\x41\x4a\xd9\xcf\x07\xec\x00\x1e\x39\x64\xe7\xdd\x3c\x17\x88\x4b\xdf\x8c\x49\x4a\xae\xf2\xee\xb3\x0d\x58\xf7\xd9\x86\x41\xbb\xd3\x86\xf9\x51\x1d\xb4\xad\x5c\xc7\x90\x56\x07\x25\x95\x59\x79\x6b\xc7\x50\xcc\x98\xf7\x3c\xe7\x88\xad\x3b\xdc\x63\x14\x6b\x4b\x85\x92\x7a\xab\xbc\x53\xb2\x43\xa0\xdd\xe9\xb4\x91\x61\xb7\xea\x19\x85\x54\x79\xe3\x94\x4a\xca\xa5\xf2\x4e\xf7\x07\xe9\x66\x11\x51\x52\x3b\x95\x77\x4d\xdc\x40\xa7\x3c\xa6\xc8\x3d\x4b\x85\x92\xda\xa9\xbc\x87\x4b\x95\x02\xd0\x20\xe5\x87\xe9\x43\x35\x49\xf9\x61\xfa\x50\x4d\x52\x71\x98\xf7\x61\xd7\xe5\xcf\x9c\x9c\xbb\x70\xc8\x94\xdc\x85\x43\x52\xc5\x91\xc5\x43\x35\x1f\x00\x3a\x32\x73\x2a\x0e\xf3\xbe\x24\x2e\x44\xdd\xad\xaa\x45\x21\x55\x52\x2a\xb4\xad\x5c\x91\x94\x3e\x2d\x93\x3b\x2c\xe1\x9e\x14\x80\x44\xbc\x35\x6f\xa8\xdd\x4b\x1f\x9d\x49\x5e\xb2\xc8\xfb\xf6\xb8\xb8\xa7\xaa\x5a\x3b\x04\x79\x4f\x96\xed\x36\x6a\xd3\xf3\x44\x45\xde\x2a\x54\x54\x55\xe5\x8d\x8b\x38\xa9\xaa\x4a\xcb\x7e\x56\x8d\xa5\xfb\x75\xda\x08\xb4\x5b\xc2\xa0\xc4\x2a\x9f\x79\xe2\x39\x07\x8f\x5c\x5a\xfb\xc8\x47\x67\x92\xaa\xaa\xf4\xc1\x98\xa4\x76\x2a\x79\x23\xe6\xfb\x99\xc0\xea\x97\x01\xb0\xf9\x25\x00\x9c\x02\xcc\xc2\x07\x63\x92\x12\xab\x7c\xb4\x4e\x28\x74\xcb\x07\x5d\x66\xe5\xba\xa3\xf4\x8d\x98\xa4\xd0\x2d\x1f\x4c\x95\x55\xfb\xe8\xd9\xc5\x8d\x0d\x7e\xda\xec\xa0\x00\xe6\x38\x74\x80\x96\xb3\x6a\xf8\x3c\x8a\x06\x6e\x69\xc8\xa7\x7b\x28\x20\x33\x5f\x82\x49\x2a\xa4\xf2\x09\x7b\x83\x7e\x9e\x70\x0a\x48\x90\x47\x9b\x9e\x32\xb3\x7c\xc8\xdb\x59\xb9\x64\x21\x1f\x4d\x15\x8a\xa2\x92\x07\x63\xbe\x2f\x74\x3d\x4f\x7c\x0a\xb8\x59\x10\xd3\xa3\x00\xe0\xfa\x85\x7c\x4a\x74\xa0\x1f\x1e\x8c\xf9\xbe\x30\x9f\x9a\x6d\xfa\xcf\x18\xe6\xa3\xa8\xd0\x92\xf2\x69\x99\xa4\x6e\x2d\x9f\x49\x35\xd0\xd3\x83\xc7\x60\xd5\xc6\xb2\xdc\x28\x29\x55\xcb\x47\x3b\x86\x52\xb5\x7c\x77\xbf\xa0\x20\xf2\xa4\xc8\xd7\x66\x05\xf0\x67\x28\x88\xbe\x2f\x92\x3c\xdc\x9e\x6f\x9b\x3f\x4b\x00\xb7\x88\x93\xe9\xc3\x21\x49\x05\x58\xbe\xb2\x2b\x2a\xc0\xf2\xed\xae\x16\xe7\x8f\x87\x43\x3e\x80\x41\xbb\xf3\x41\x58\x59\x49\xb2\x72\x33\x42\x5a\x3c\xb2\x72\x33\x42\xbe\x31\xdb\x80\xf5\x64\x4a\x90\xdd\x3b\x77\x05\x4a\x7b\xd3\x15\x86\x9e\x5e\x35\x4c\x4a\xd5\xd2\xc7\x46\x92\x52\xb5\xb4\xac\x64\xd5\x92\x7a\xe7\xe6\x41\x28\x56\x92\xac\x5c\x1c\x94\x3e\x36\x92\xd4\x93\xa5\x95\x24\x49\xd5\x58\xbe\xe5\x82\xc0\x23\x5f\x37\x8f\xe2\xb2\x7c\x09\x89\x25\xaf\x79\xa4\x95\x24\xc9\x6b\x1e\xf9\xaa\x88\xf2\x66\x7a\xbe\xc3\x69\x23\x82\x7c\xad\x24\xa9\x34\x4b\x2b\x49\x56\x0d\xae\xf7\x98\x1d\x80\xb5\xbc\x4b\xeb\x8b\x07\x49\x3e\x80\xde\xc8\x06\x49\x4a\xc8\xd2\x7a\x91\x55\xeb\xcb\x97\x46\x92\x8a\xaf\x7c\xcf\xd9\x86\xde\x74\x68\x52\xfe\x95\x3e\x3b\x92\x54\x7c\xa5\xc5\x23\x49\x91\x57\xbe\x97\x93\x5b\x6d\x23\xa2\xa8\x9b\xaf\xca\x2b\x05\x5b\xf9\xde\x73\x50\xbf\x4c\x44\xf9\x22\x23\xd3\xe0\xb2\x5e\x24\x29\xcb\x4a\xdf\x20\x49\x2a\xb1\xf2\x25\x3e\xb6\x6a\x8a\x59\x49\xb2\x72\x71\x50\xbe\x84\xa5\x93\x1a\xad\x7c\x55\x51\x35\xb0\xde\x77\xf6\xc6\xa0\xaf\x88\xa2\xab\xbd\xef\xec\x20\x7e\xf9\x4d\x2d\xe4\x4c\x25\x35\x67\xb5\x2c\x12\xc6\x47\x25\x65\x25\x49\xf2\x4c\x47\x2d\x8b\x1d\x7c\x9a\x52\x2d\xca\x7e\x6a\xb4\x6a\x59\x6d\xf3\x51\x49\x59\x2c\x92\x14\x6c\x15\x8f\x98\x7c\x5f\xe8\x60\x95\x77\x95\x1d\x88\x41\xd1\xc1\xe6\x9e\x16\x6d\xb6\xd9\x06\x0c\x36\x4f\xe2\x27\x5b\x6a\xd9\x5c\x83\xcf\x58\xaa\x65\x73\xe7\x76\x80\x5d\xae\x36\x98\x82\x6a\x05\x15\x5f\xb5\x48\xc1\xd4\x75\xd5\xb2\xdb\xa6\x81\x28\xb5\x60\x49\xf5\x56\x2d\x6d\xb6\x01\xb7\x36\xdb\x80\xdb\xe4\x9e\x83\x0e\x9a\x5b\xdf\x40\x54\xc5\x1a\xab\xae\x78\xde\xe4\x03\xe8\xad\xcf\x0e\x98\x02\xd5\x26\x49\x91\x57\xf9\xd6\x49\x52\xe4\x55\x8b\x1c\x97\xba\xae\x5a\xc2\x35\x18\x60\x90\x13\x00\x03\x49\x93\x3a\xb5\xf2\x45\x93\xa4\xaa\xaa\x96\xe1\x6e\x0f\xba\x96\x8b\x51\x3b\x55\xcb\x98\x58\xff\xcc\x87\x59\x0b\xb7\x44\xae\xdc\x35\x51\xd4\x8b\x7c\x7d\x80\xb8\xf6\x1f\x85\x55\xb5\xa8\x34\x53\x3e\x55\xd6\x8b\xac\x58\x93\xb5\x48\x76\x18\x90\xb5\x70\x8d\xc5\x8a\xcd\x58\x16\x8f\x24\x45\x52\xb5\x68\x0c\x36\x0f\x16\xb5\x95\x2b\x06\x64\x2d\xfa\x6d\xa8\x8b\x2a\xde\x31\xf9\xbe\x30\xd9\x6b\xe2\xc6\x94\x26\xa5\x15\x83\x4e\x4a\xf3\xc8\x69\x0c\x72\x3f\x45\x59\x49\xb2\x72\x3f\x45\x2d\xf7\xfc\x19\xbd\x11\x2d\x58\xb1\x33\x6b\x79\x24\x6f\x8f\x9c\xea\x33\x2f\x33\x96\x65\x25\xd9\x3c\x65\xea\x0f\xcd\x83\xa5\xc9\xc7\x9b\x8d\xb5\xbc\x6e\xab\xe7\xe2\x75\xa9\x3c\x0a\x12\x17\x26\x6c\xad\xea\xd2\x54\x21\xd5\xaa\xfd\x87\x3d\x5b\xeb\xe2\xb4\xd9\xbc\x75\x9d\xbd\x7d\x83\xae\x6a\x09\x94\xf0\xd4\x8a\xab\x73\xc5\x1c\x2d\x5e\x1e\xf9\x00\x7f\x36\xfc\x19\x5d\xab\x4c\x50\xc2\x53\x2b\xc5\x57\x49\x09\x4f\xad\xd2\x06\xd6\x64\xad\xfb\x6c\x13\x00\x2e\xef\x27\xbd\x6b\x35\x5a\x40\x09\x4f\xad\xaa\xdc\xd8\x99\x65\xf5\xc9\x8a\x9d\x59\x6b\x9b\x6d\x18\xa7\xcd\x41\xc1\xad\xcd\x0e\xc0\x2d\xe6\xa0\xf4\x16\x4e\x61\xe3\x67\x7a\x37\x29\xa0\xa9\x35\x3c\x2e\x1b\x6d\xd2\x9f\xc1\x87\x56\x15\x5e\x8c\xc1\x5a\x95\x2d\xdd\x41\x95\x2d\x54\x96\xd5\x5a\x1e\xbe\x9d\x71\x14\xf7\x54\xb9\xd4\x3a\xe6\xcf\xf8\x32\xdc\x92\x1d\x0c\xd4\x8b\xbb\xe3\x18\x05\xa3\xe0\xa4\x7c\x01\x24\xa9\x31\xa9\x55\xbd\x18\xd3\xb2\x56\xb5\xdf\x0d\x9e\xb2\x9e\xb3\x0d\x0b\x72\x8a\x35\x0c\x66\x25\xcb\x29\xa9\x05\x2b\x1f\xfd\x48\x0a\x4e\x6a\x25\xcb\x29\xbb\x1d\x90\x6e\x91\xdd\x36\xf3\x90\xc3\x7a\x56\x72\x99\x92\x62\x91\xb2\xd6\x63\xc5\xe8\xac\xf5\x76\x4b\x60\x3d\xab\x1a\x33\xf5\x21\xb5\xea\xf1\xc0\x1c\x2d\x2b\x3a\xb2\xdb\xdb\x3c\xf1\x30\x18\xdf\x06\xc9\x6e\x6f\x7a\x2a\xbb\xbd\xe9\x9c\xec\x76\xa0\xa0\xc1\x84\xad\x55\x4f\x65\xb7\x03\xd5\x67\x4c\xd8\x5a\xb5\x1e\x29\xf2\xaa\xcd\x50\x01\x45\x1c\xe5\x43\x21\x49\x75\x46\x51\xeb\xf1\xb5\xe1\x67\xfa\x35\xa8\xb4\xa8\x6d\x9d\xbd\xd1\x06\x77\xe2\x8a\x2d\x5a\x3e\x14\x92\xd4\x5b\x95\xd5\x19\x2b\x86\x69\x6d\x9a\x85\x9b\x5d\xcf\xa3\xfc\x19\x58\xb5\xed\xae\xc1\xa7\x15\x94\x45\x1c\x49\x35\x43\x6d\xc6\x70\xa9\x66\xa8\x8d\x54\xbe\xa4\x9a\xa1\xb6\x36\xdb\x7c\xf3\xd9\x34\x18\xb7\xf8\x59\xa5\x4f\x6d\x7d\x22\xd1\x00\x26\x12\xa0\xd7\xdd\xc9\x00\x23\x9d\x2b\xbc\x56\x59\x9b\xfe\x14\x6a\x25\x6a\xd3\xce\xa4\x56\xa2\xb6\x98\xbd\x81\xde\xa4\x80\xe4\x67\x39\x7f\x46\x07\x29\xe1\xc3\x7e\x29\xea\xf8\xbe\xd8\xc6\x8d\x40\x42\x6e\xda\x8c\xbc\x41\x59\x9b\x1a\x34\x6f\x50\xd6\xa6\x9f\x90\x1a\x86\xda\x86\xbb\x02\x63\xde\xf4\xa7\x50\x8c\x55\xdb\x98\x18\x30\x05\x85\xc8\xe6\x3a\x2a\x0d\x28\x5b\xa8\x4d\x4f\x4b\x1f\x7c\x31\x28\x4c\xd9\x42\x6d\x93\x50\x10\xf2\x3e\xd3\x91\x14\x27\xd4\x26\xd5\x50\x9c\x50\xdb\x29\x41\x96\x00\xbd\x51\xe0\x54\xdb\xa5\x68\x70\xda\xb7\xf3\x71\xa6\xfa\xea\xc9\xe4\xaf\x8d\x04\xbe\x24\x79\xbf\xb6\xc9\xf3\x5d\x83\x79\xe8\x9d\xa9\x6c\x9e\x44\xfc\xda\x1e\x7b\x83\x99\x53\xc7\xf1\x01\x7e\x91\x8d\xb8\x06\xef\x6c\x03\x6e\xaf\xdb\x08\x97\xde\xf5\xec\x61\xfa\xd7\x8e\x77\x7d\xc5\xf4\x2f\x9f\xf6\x48\x52\xe7\x6b\x37\xbc\x45\xb6\x7c\xf9\x66\x47\x52\x6b\x54\xbc\xd9\xf1\xb5\x49\x00\xa7\x00\x8b\xf3\xcd\x8e\x24\x5b\xbe\x76\x8d\x41\xb2\xe5\x6b\x27\xa6\xbb\x62\xd3\xd7\xee\xd1\xe6\x9d\xde\xb2\xdc\x63\xc5\xc0\xaf\xdd\xa3\x4d\xe2\x7a\xed\xe6\x2a\xf0\xb4\x47\xed\x9a\x7c\x98\xfe\xb5\xc7\x6c\x03\xa2\x3a\xe6\xa8\x42\x2a\x9f\xdc\x48\xaa\x90\x6a\xd7\x2d\xc1\x25\x2c\xb5\xa7\x88\x76\xda\x68\x01\xec\xc8\xb0\x9d\xa2\xbc\x95\x3b\x89\xca\x42\x89\x24\x8b\xbd\x7c\x4b\x23\xc9\x55\x2f\xdf\xd2\x48\xd2\xd3\x6b\x57\xb5\xe7\x46\x96\xda\xc7\x6c\xc3\x8a\xea\xa3\xe0\x9d\x8f\xda\x75\xbf\x71\x57\x50\xed\x44\x73\x56\xbc\x0a\xb5\xab\xb3\x53\x44\x54\xbb\x6a\x3a\xf9\xed\x45\x69\xc3\xf7\x33\x7a\x53\x67\x27\xbf\xbd\x76\x95\x07\x4a\x85\x6a\x97\x95\xe2\x62\xa8\xfd\x76\x0d\x52\xa0\xf9\x05\xdc\x74\x58\x90\xdf\x5e\xfb\x2d\x3a\x88\x86\xfd\xb6\x37\xc8\xcc\x87\x35\x92\x94\xf6\xf2\x61\x8d\x24\x3d\xbd\x7c\x4b\x23\x49\x0e\xaf\x5d\xee\xb9\xbb\xdb\x6a\xe6\xe4\x83\xd7\xfe\x3a\x39\xb7\x5e\x4d\x82\x27\x73\xab\xc9\x4a\x49\xc5\xae\xa6\x27\x02\x57\x46\xb5\x6d\x76\x50\x00\xa2\xc3\x89\x6f\xf3\xec\x70\xc8\x9b\x8e\x04\xfc\x1a\x65\x99\x42\x92\x7d\x5d\x4d\x47\x02\xf7\xc8\x54\x9b\x47\x0c\x71\xd2\x54\x92\xc9\xbe\xae\xa6\xec\xc7\xe3\x51\xcd\x08\x09\xa9\xd8\xd5\x54\x04\xf6\xf6\x33\x93\xbc\x9a\xac\x95\x9b\x87\xca\x82\x86\x24\x69\xbb\x5a\x9f\x7d\x24\x80\x4b\x07\x83\x69\x31\x67\x41\x9b\x70\x8b\x06\x3f\x93\x7b\x92\x9a\x5d\x4d\xfd\x01\x7f\x4a\x59\xf7\x90\x64\x63\x17\x4f\x70\x7c\x5f\xc0\x55\x4b\x97\x9c\xeb\x6a\xb2\x52\x3c\x2d\xd5\xcc\x43\x20\x01\xbb\xda\x3c\xda\x28\xda\xd6\x3d\xac\xdc\x22\x54\xbe\xc7\x91\x64\x63\x57\x1b\xce\x87\xa3\xdd\x34\x61\x49\xcd\x2e\xdf\xdf\x48\xb2\xb1\xcb\xba\x87\x24\xcd\xba\x78\x58\xe3\x6b\x03\xd6\x86\x4f\x48\xb3\xae\x36\xcf\x39\x14\xd0\x54\x9f\xb9\x6c\xa8\x9a\x26\x2c\x97\x0d\x95\x05\x0d\x49\x49\x52\x35\x75\x0e\xfc\x36\xd5\xf4\xc5\x51\x9f\x54\x54\x2a\x7c\x5f\x40\xe7\x12\x51\x28\xa0\xa9\x80\x90\x59\x5d\xcd\x90\x0b\xf9\xd3\x65\xd9\x42\x92\x32\x5d\x3e\xc6\x91\x64\x49\x57\x53\x35\xd9\xc3\x2f\xa7\x5f\xc0\x40\x3d\x85\x17\x40\xaa\xdd\xce\x07\x8a\xb6\x4c\x61\xc5\x3f\x54\x4d\xb3\x17\x97\x50\x59\x99\x90\x24\x53\x97\xaf\x6c\x24\x29\xd3\xe5\x2b\x1b\x2b\xfe\xa1\xb2\xe4\x20\x49\x99\x2e\x9f\xdc\x58\x71\x16\x95\x4f\x6e\xac\xf8\x87\xca\x57\x36\x92\x94\xe9\x6a\x7a\xb9\xb9\xba\xa8\xda\x3b\xbb\x66\x72\xef\xec\xfa\x03\xba\xfc\x1b\x17\x50\xf5\x65\xe2\x56\x00\x8f\xc0\x37\x39\x6b\x16\x92\x37\x48\xaa\xeb\xbe\xe6\xb6\xa2\xea\xab\x53\x80\x0b\x74\x23\x33\xa4\x4c\x17\x95\x09\xdf\xcf\xbe\x99\x76\x35\x18\xde\xb5\x2d\x2b\x13\x92\x77\x6d\xab\x6f\x9e\x44\xb8\x40\xd7\xd2\xc5\xbb\x54\x7d\x8a\x06\x4c\x65\x9f\xdc\x48\xd2\xac\xab\xab\xc0\xe3\x5d\xaa\x2e\x75\x52\x3b\x55\x5d\x13\x96\x0a\xa9\xea\x3a\x00\x29\x8a\xaa\xae\x3d\xcb\x4b\x23\xd5\x27\x11\x23\x6c\xbb\x44\x4c\x36\x76\x75\x75\x76\x12\xb0\xab\xf7\xd9\x06\xdc\xfa\xfc\x19\x6b\xd0\x5d\x1d\x58\x42\xd7\x50\xc5\x87\x54\x3d\x66\x1b\x16\x51\x3d\x1f\x87\x52\x59\x99\xb0\xe2\x50\xaa\xae\xd3\x90\x12\xab\xea\x7a\x97\x70\x28\x55\x9f\x82\x06\xda\xee\x39\xc7\xa1\xb7\x72\xda\x08\xdb\x6e\x46\x42\x42\xce\x5d\xdb\x00\x87\x52\xf9\x80\x47\x92\xb1\x5d\x3c\xe0\xf1\x7d\xf1\x67\xae\x0e\xe4\x6c\x9d\x43\xf2\xbe\x6c\xf5\x49\xb4\x50\x30\xef\x7c\x7c\x6d\xe8\x80\xd0\xe8\x8a\x43\xa9\xba\xd6\x30\xb9\xdc\xe5\xa3\x1f\x2b\x57\x17\x55\x3f\x24\x19\x88\xb6\x6b\x00\xf3\xbe\x6c\x75\x95\x7e\xd2\xb7\xcb\xa7\x3d\x92\xf4\xed\xa2\x80\x61\x5b\xdb\xfa\xb3\x67\x76\xab\x4f\x1a\x84\xec\x3a\x05\x42\x2b\x1e\xaa\xea\x66\x05\xf1\xdc\x49\xf5\xd7\x99\x7b\x80\x75\x67\xe3\xae\xaa\xee\xa1\xc7\x5d\x55\x3e\xdb\x91\xe4\x42\x97\xcf\x76\xac\xf8\xae\x2a\xb4\x4d\x49\x8c\xae\xd0\xf1\x83\x23\xab\x42\xc1\x43\x92\x73\x59\x75\xb0\xe2\xd5\xaa\x50\x53\xc7\xab\x55\x31\xc9\x01\x29\x14\x52\x00\x77\x12\x55\xe8\xf5\x6e\x30\x0b\x6b\x0b\x56\x2e\x5c\x2a\x9f\xfa\x48\x32\x9e\x2b\x36\xdb\xc0\x05\x42\x29\x84\xbf\xab\x62\x1e\x6d\xc4\x58\x68\x8e\xe2\xe2\xaa\x68\x22\x0a\x79\xc7\x3c\xc0\xc8\xb4\xd0\xa5\x4a\xca\x74\x05\x11\xfc\x15\x7f\x57\x45\xb8\x54\x9c\xa5\xd0\x69\xad\xbf\xcb\x84\xff\x95\x9b\x87\x2a\x3c\x99\xbc\x51\x5b\xa1\xdf\x93\x8c\xe7\x0a\x8d\x4e\x5e\x6c\x29\x73\xfc\x57\x9d\x5f\xa1\x77\xb3\x90\x2d\xa1\xf7\x59\xe7\x97\x69\xfd\x49\x62\x74\x05\xe5\xa1\x2b\x57\x17\x55\x1c\x73\x1c\x96\xea\x98\xe3\xd0\x86\x74\xe1\x55\xaf\x96\x69\xfd\xab\x1e\xaa\xb8\xdc\x39\xe8\x36\x8c\xb2\x90\x3f\x5d\x3c\x78\xf1\x7d\x11\x38\xfd\x42\xd7\x54\x89\x25\x29\xd3\xe5\x83\x17\x49\x96\x74\x85\xea\x33\x59\xd2\xe5\xeb\x17\xab\x1e\xaa\xd0\x80\x24\x4b\xba\x7c\xfd\x62\xd5\x5d\x15\x86\xcc\xa9\x82\xab\x50\x7d\xd6\x77\x65\xf2\xfe\xca\x9d\x44\x15\xda\x8c\xe5\x11\x53\xb7\xe1\xc2\xa5\x32\xdd\x3e\xc9\xac\x2e\xdf\xc5\x48\x32\xab\x2b\xe5\xc5\xba\xb8\xd2\x5c\x33\x52\xa6\x2b\x57\xf7\xa7\x0b\xf8\x85\x83\x94\x1e\x3e\xb2\xa4\x2b\xcd\x1b\x23\x4b\xba\x72\x75\x17\x90\xa2\xa9\x6f\xb1\x21\x45\x73\x73\x17\x10\x9c\xa9\x3f\x5f\x67\x57\x36\xa7\x80\x08\x4a\x4f\x15\x99\xd5\x95\xd4\x63\x26\x99\xd5\x95\xaa\x2f\x64\x56\x57\x1a\x57\xe4\x7a\xa0\xca\xee\xba\x71\x2c\x7d\xaf\x62\xd5\xf3\x65\x16\x7b\x52\x36\x57\x19\x73\x0a\x05\xe0\xc2\x23\x8f\xd2\xe4\x2e\x12\xae\x2b\x35\xfe\xc8\xb1\xae\xd4\xde\x23\xad\xba\xd2\x20\x09\x99\xd4\xe5\xdb\x13\xab\xae\xb3\x9c\xcc\x0f\x19\x96\xe5\x2e\x20\x9c\x52\x43\x8e\x4b\x9a\x2a\xf5\x85\xe8\x47\x4b\x0d\x39\x5e\xc9\xad\x3c\x66\xd7\x4c\xce\x18\xa1\x1e\xb6\xd4\xe1\xc7\xfd\x42\x95\x2a\x29\x0d\x79\x64\xe2\x7a\x52\x77\x57\x39\x0f\x2c\x6c\x23\xe5\x84\x24\x76\x57\xaa\xc0\xeb\x6e\x33\xa5\x7d\xe5\x3a\xa0\xca\x79\xae\xe1\x21\xbe\x4a\x91\xe4\x7f\x57\x4e\x86\x59\x3f\xf5\x61\xe6\x2d\xb7\x81\xf0\xd3\x9c\x0f\xd2\xc6\x2b\xe7\x01\x46\x0a\xf9\xf6\x44\x92\x43\x5e\x69\x98\x90\xb4\xf1\xca\xd7\x99\x23\x3b\x53\x37\x1f\x57\xfd\x54\xaa\xa9\x93\x36\x5e\x3e\x51\x91\x24\x87\x57\xce\xd3\x8c\xec\x2c\x3d\x20\x3c\xb3\x5b\x3e\x51\xb1\x72\x3d\x50\xd5\x3c\xc0\xc8\xb4\x52\x99\xd0\xcd\x57\xeb\xc4\x80\x9f\x79\x4c\xb9\x04\xa8\x4a\x1d\x9e\x1c\xf2\x22\x57\xfd\xfb\xb2\x02\x78\x2e\xba\xc0\xf0\xcb\x06\x20\x6e\x88\xd8\xd2\x4c\x24\x6d\xbc\x7c\xd6\x62\xd5\x4f\x58\x6d\x76\xd0\x00\x0e\xbf\x08\x3c\x02\xcc\x67\x9e\x73\xc8\xae\xd4\x05\x78\xca\xa8\x4a\x35\x9d\xac\xef\x9a\x69\xf0\xe4\x76\x57\xf5\xd9\x01\x6b\x30\xcf\x79\x08\xcc\x36\xcc\x34\xe6\xcf\x00\x8c\x4e\x91\xce\x5d\x65\x74\x8a\x74\xee\x2a\xcd\x51\xd2\xb9\xab\x28\xdd\x58\x75\x34\x96\xde\xc0\x42\xd9\x2b\xfd\x1a\xd4\x2f\x56\xcd\x43\x0f\x3d\x95\x7e\x0d\xd2\xac\xcb\x07\x2f\x56\x9d\x93\xa5\x28\xe7\x82\xac\x2a\x2d\x50\x72\xae\xab\x4c\x1a\xe1\x1a\xa2\x2a\x79\x31\x97\x0d\x55\x1d\x8e\x03\x39\x94\xbe\x6c\xb2\xb1\xab\x3c\xc0\x5c\x36\x54\xa5\xf7\x82\xfb\x85\xca\xd7\x2f\x56\xae\x14\x2a\xde\xb8\xf8\x00\x10\xbd\xdc\x7a\xc8\xa1\xee\x39\x28\x58\x6b\x67\xf2\x74\x72\xd5\x64\xd9\xc8\xca\x9a\x8c\x99\x43\x5e\xfa\x35\x48\xda\xae\x99\xec\x4e\xd2\x76\x95\x1a\x33\xcf\x2d\x57\xa9\x31\xf3\xdc\x72\xd5\x3b\x7f\x46\xd7\xea\x0b\xdc\x3c\x54\xa5\xd1\x59\x1e\x4b\xdd\xd7\xdc\x3c\x54\xbe\x7e\xb1\x72\xf3\x50\x0d\x73\x99\x28\x80\xac\xb1\x38\x39\xd8\xa2\xc9\xee\xab\x3e\xd9\x61\x6c\x88\xd2\xc8\xf2\xf5\x8b\x55\x9f\xec\xf0\xf8\xeb\x93\x1d\xeb\xec\xe0\x43\x67\xa8\x17\x93\x80\x5d\x66\xbe\xaf\x5c\x29\x54\x83\x5b\x5c\x92\x1c\xeb\x1a\x9b\xdb\x08\x5b\x1c\xd2\x02\x69\xd5\x35\x34\x6e\x79\x9a\xa9\x86\x8e\x6d\x1d\xb4\x43\xc2\xe0\x69\xa6\x1a\x2a\xc9\x83\x0d\x1e\xdc\xc9\x9f\x64\x5f\xd7\xd0\x1b\xa8\xeb\x76\x18\xda\xd1\x75\x3b\x0c\xce\x72\x73\x57\x99\x2d\xbf\xf2\x2e\x74\x8d\xee\xb4\x61\x57\x63\x1e\x7f\xf8\xce\x50\x1a\x90\xcb\x5d\x43\x69\xa0\xef\x77\xc4\x1c\x94\x71\xf4\xfe\xe9\x08\x1e\x26\x96\x50\x68\x59\x43\xcb\x56\x47\xf0\x50\x63\xd1\xdd\x3b\xa4\x12\xaa\x2e\x6b\xe8\x31\xd4\xdd\x3b\x53\xe7\xc7\xfa\xb3\x57\x23\x6b\xa6\xd2\x53\x9f\x59\xc3\xbc\x2b\x4a\x32\x6b\x48\x4f\xc3\xdd\x57\x83\x1e\xee\xbe\xea\xcc\x70\xc3\x75\xef\x0c\x37\xfc\x98\xf3\xa3\x03\x8d\xdb\xe1\x86\xab\xe8\xe8\x3f\x1e\x87\xab\x05\xef\x1a\x1a\xb7\xdc\x15\x54\x43\xe3\x76\xb8\xe1\xca\x8d\xe1\x1e\xeb\xeb\x21\x83\xbb\xc6\x39\xdb\x30\xe8\xe5\x29\x43\x0e\x0e\x63\xad\xc3\x0d\xd7\x89\xa3\x6b\x7a\xdc\x1e\x05\x18\xd9\xd0\x05\x3e\xdc\x63\xb3\xa9\xb8\x2b\xa8\x86\x71\x53\x2e\x09\xab\xa1\x69\x39\xdc\x7d\xa9\x86\xdc\xee\x9a\x09\xf2\xe4\x76\xd7\xb1\x78\x4c\xc3\x2f\xfe\x8c\x3d\x3e\x8c\xf3\x70\x57\x50\xf9\xac\x45\x92\x80\x5d\x87\x41\x54\x72\xae\xeb\xb0\x2a\x84\x42\xcb\xf2\x25\x8b\xa4\xd0\xb2\x0e\x73\x4b\x78\x30\xab\x8e\xd5\x35\x60\x79\x0f\x85\x06\x99\xd5\x65\x4e\xfc\xca\x5d\x41\xe5\xe3\x15\x49\x9a\x75\x1d\x93\x9e\xba\x5f\xc4\x00\x69\x70\xa8\x7f\x93\x59\x5d\x33\x27\x9e\xcc\xea\x3a\xac\x83\x22\xb3\xba\x8e\x49\x5c\x98\x48\x87\x9a\x39\x97\x0d\xd5\xb1\x7b\xce\xd1\x6d\x0e\x35\x73\x9d\xf0\x87\x76\xa6\x7e\xf7\xc3\xcc\x07\xfd\xee\x87\x9a\x39\x85\x96\x75\xf4\xd9\x86\xc9\x29\x4e\x48\xa6\xae\xc3\x80\x28\x29\xd3\x75\xc4\x6c\x43\xd7\x1a\x9d\xdc\x59\x56\x87\x0a\x15\x49\xce\x35\x53\xe7\x49\x72\xae\x43\x47\xcf\x10\x03\x15\xf8\x21\x06\xe9\x14\x50\x4d\x7c\xbc\x62\xd5\xb5\x7e\xe8\xf5\xd1\x9b\x4e\xe6\xfb\x07\xd0\x75\xcd\xde\x04\x9c\x1c\xbc\xf8\xd0\xe8\x24\xf3\xb8\x0e\xfd\x41\x5c\x02\x54\xc7\xa4\x12\x11\x35\x3b\x91\x2c\xe2\x9a\x09\xf2\xe4\x0a\xd7\x61\xd4\x95\xbb\x82\xea\x50\x04\x0d\x71\x9b\x22\x08\x36\x7f\x1c\x1e\x31\xd8\xfc\x61\x74\x6a\xcc\x2f\xee\xa9\x5f\x4e\x97\x0a\x01\x70\x4c\x62\x42\xe5\x39\x4c\x55\x24\x6d\xb7\x78\xfd\xe2\x03\x98\x29\xfe\xa0\xa2\x70\xaf\x0e\xf4\xae\x22\xb7\xb6\xcc\x96\x2f\x72\x6b\xeb\xd0\xb8\xe8\x76\x8d\x71\x51\x24\xda\xd6\x81\x0b\xa8\x48\xb4\xad\x03\x81\x56\xe4\xd6\xd6\x71\xcf\xae\x19\x14\x2f\x6a\x91\x41\x5b\x07\x62\xab\xc8\x93\xad\xe3\x71\xad\x91\x3a\x07\xa5\x83\x6b\x88\xce\x3b\x7f\x46\x1b\xaa\xe6\x8b\x94\xd5\xf2\xf9\x8c\xd5\x88\xc2\x81\x06\x56\xbc\xca\x55\xbe\xa5\x51\x24\xa6\xd6\x29\x69\x1a\x6b\x30\xd9\x7d\xe5\x22\xa4\x22\xd9\xfd\xfb\xd9\xd7\xf5\x89\xa4\xaa\x65\xab\x9f\x31\x4c\x9f\xe0\x58\xb9\x18\xa9\xce\x75\x0e\x35\x00\x66\xef\x05\xe0\x9a\xc0\x39\x4c\x69\x2f\x5e\xdc\x2a\x9e\xe0\xf8\x7e\x46\x1b\x1d\x3f\xdc\x9f\x54\x27\x01\x82\xa2\x24\xae\x48\x69\x5f\x8b\x9c\xd1\x3a\x35\x50\x02\x61\x65\x4a\x7b\x51\xaa\x56\xa7\x04\x69\xc4\xe4\x94\x20\xb9\x05\xae\xce\xe6\xd2\xc1\x60\x7c\xa9\x63\xe5\x5a\xa5\x3a\xdb\x1c\x14\xdc\xda\xec\xcd\x36\xb3\x37\x10\xed\xf3\x67\x20\xda\xc5\xad\xf9\x85\xa3\xc0\x0d\x47\x75\x76\x77\x05\xe5\xf5\xe4\xaa\xc0\x22\xfd\xb4\xce\x70\xc3\x61\x57\xa7\x5e\x20\x6e\x38\x2a\xd3\xe0\x8b\x52\xb5\x32\xf3\x7d\x0d\xc4\xc9\x99\xae\x28\x1c\xea\x4c\xcf\x5f\xf7\x8b\x2b\x0a\x87\x3a\xa5\x5b\x23\x33\x3c\xe0\xf1\x7d\x01\x37\x0d\xa1\x70\xf7\x6b\x22\x0a\x6e\x25\xa2\x5d\xc0\x99\xa2\x73\x9c\xe5\xba\xb9\x8d\x63\xf6\xc6\x97\xe1\x14\xd0\x71\x4d\x90\x2f\x72\x51\xcb\x04\xf9\x95\x7b\xe8\xea\xd4\x92\xe2\x8e\xa5\xba\x76\xb1\x86\x91\xf1\x26\xc4\x07\x7c\x53\xb8\xe6\x96\xc0\xc8\xae\x36\xbb\x0e\x00\x37\x18\x19\x76\x35\xd7\x1a\xa1\x71\x99\xe6\x6a\x3c\xe9\x6a\x13\x83\x02\x70\x11\xe1\x77\x57\x9b\x18\x30\x8e\x71\x1e\x23\x4d\xbe\x23\x51\x94\xd1\xd5\x35\xf7\x94\x93\x78\xcd\x9d\xc3\x87\x74\x85\xb8\x21\x41\x2e\xf3\xfc\x8c\x41\x5d\xaa\x26\xc6\xa0\xc8\xed\xfe\x00\x06\xd5\xb5\xce\x25\x4d\x75\xe9\x32\xe1\x5e\xa6\xba\x4a\xc2\x87\xe3\x5e\x73\x4b\x38\x89\xd7\xdc\x05\x58\xa9\x6f\x42\x14\x29\xab\x35\x73\xbb\x79\xac\xbe\x7c\x06\x62\xe5\xc2\xa5\xba\xf4\x99\x73\xe1\x52\x5d\xa7\xb8\x71\xc4\x2e\x93\x44\x8c\x5b\x99\x73\x5d\x24\x4b\xd6\x85\x2b\xba\xc8\x8f\x2c\x1f\x7b\x28\xf2\x23\xeb\x32\x49\xc4\xf0\xd6\x75\xdb\x66\x15\xf0\x8c\x72\xf8\x2e\x42\x3b\x45\xfd\x58\x5d\xa4\x8f\x14\x99\x93\xc5\xcb\x0f\x1f\xc0\xf2\x5a\x4b\x10\xdd\x2f\x5d\xc0\x2f\xe1\xcf\x40\xe7\x71\x1c\x48\xe6\xd2\x4b\x62\x7c\xec\xc2\x4b\x52\x64\x4e\xd6\xa5\xf6\x61\x14\xec\x42\xfb\x28\x32\x27\x8b\xc7\x1d\xd6\x22\x4f\xb1\x6e\x1d\x71\xc6\xc7\x4c\xc5\x2e\xb2\x11\x8b\xec\xeb\x0f\xa0\x8d\xe9\x58\xdc\xb8\x57\xf7\x2a\x3a\xbb\xc0\xec\xe0\xc3\xfa\x0e\xc7\xd9\x05\xe6\xcf\x3a\x80\xc7\x32\x04\x4e\xbf\x7c\x58\x93\xe1\xfc\x01\x3f\xd5\x30\x6f\xf3\x3f\xb9\xb5\xaf\x6e\x29\x9a\x12\xb2\xba\x4d\xf9\x34\x14\xe7\xe3\x08\x45\xe2\x63\xdd\x1e\x12\x12\x1f\xeb\x9e\xd4\xc9\x01\xbe\x0d\x58\x1b\x8a\xbb\x89\xb2\x14\x29\x91\x75\x1f\xf3\x0b\x6d\x0e\x97\x01\x1d\xea\x46\x5c\x16\x95\x66\x35\xf3\x9a\x0d\xd2\xdd\xf3\x2c\xa1\xc1\xdc\xe7\x6c\xc3\xfc\xce\x89\x41\x02\xb8\xfb\x1c\xb9\xfb\x9a\x6d\xe8\xed\x72\xb5\x60\x71\xf7\x35\x11\xa5\x03\xe5\x20\xaf\x4d\xd5\x7d\xbb\x74\x1c\x2c\x5e\x3d\xf8\x00\x06\xbd\x3d\xda\x38\x64\x7c\xe8\xa0\x78\x7a\xaa\x4c\x72\x2e\x0a\xd2\xca\x57\x0f\x8a\x82\xb4\x32\xaf\xb9\xa8\x41\xab\x5b\xc3\x8e\x77\xfe\xcb\x87\x0e\x8a\x07\xa6\xea\x9e\x12\x12\xdd\xe6\xd1\xaf\xc6\xbd\x4c\xf5\xcc\xb3\xc4\xf1\x79\xe6\x21\x19\x02\xd2\x20\xda\xc8\xb3\x3a\x6d\x8e\xcf\xa3\x53\xd7\x60\xe0\xb3\xcd\x0e\xbe\x29\x3c\xbb\x47\x81\x43\xc2\x0b\x06\xdf\xcf\x68\xb3\xbb\xa7\xb0\x38\x9e\x33\xf8\xbe\xd8\xe6\x10\xb0\xcd\x1c\x94\x9f\x35\xb7\x11\xd5\xe4\xe1\xc6\x99\x22\x3f\xb2\x9e\xe6\x31\xe5\x20\x3d\x53\x52\x0d\x81\x89\xdb\x37\xed\xc7\xfc\x3b\xee\x09\xac\xa7\x7b\x42\xd8\xed\x47\x23\xcd\xb0\xe0\x63\x5d\x8a\x81\xbc\x47\xa9\x63\x16\x24\x09\xcb\x1f\xc0\xa0\xbc\x7b\xb6\x1a\xd5\x23\x47\xf9\xfb\xc2\xa0\x35\xc7\xa1\x4d\x79\xae\x61\x64\x8f\x52\xc7\x78\xdf\x33\x8f\x32\x1b\xfc\xd4\xec\xcd\x0e\x3c\x07\xf8\x1b\x1e\xc3\x0d\x5c\x91\x54\x8f\xe2\x84\x5b\x91\xea\x31\xcd\xd5\x70\xdd\x73\xcc\x9f\x31\xe8\x39\xbf\x30\x0e\xa5\x91\xab\xe1\xba\xe7\x9c\x1d\x80\xce\xe5\xfe\x70\x42\x1e\x19\xa6\xe1\xba\x47\xf5\xcc\x64\xc9\x47\xdf\xaf\xb1\xbb\xe7\xf6\x88\x79\x0e\xb8\xf5\x72\x35\x5c\xf7\x3c\x1e\x65\xcf\xc1\xeb\xb1\x74\xb7\xdf\xf9\x05\xac\x3d\x7c\x06\xe5\x1e\xd5\x33\x93\x18\xdf\xc5\x33\xca\x6e\xbf\x8b\x27\x84\xdd\xe6\x25\x81\x0f\xf8\xa6\xf0\x6e\x73\x50\x81\x5b\x60\x00\x80\x9b\x39\x7a\x3e\x04\xb0\x72\x11\x52\xbd\xea\x4c\xa6\xe5\xbd\x58\xfb\x45\xc5\x57\xbd\x6d\xfe\x6c\x05\x70\xeb\xe1\x91\xaf\xca\x90\xb1\xbb\x57\x65\xc8\x3c\x38\xaf\xfb\x5f\x8d\xdd\xbd\x96\x4b\x19\xbb\x23\x15\xfb\xfb\x99\x5f\x5c\x37\xc4\xe3\xdb\xc5\x8d\x69\xfb\x10\xc0\x6a\xec\xce\x87\x00\x6a\xdb\x7e\xf6\x44\x45\x79\x5d\xfe\x6a\xf8\xee\xd5\x08\x30\x7c\xf7\xca\xd5\x4c\x92\x7b\x89\x3c\x95\x49\x72\xaf\x2c\x6e\x73\x7e\x87\xe8\x39\x3f\x4b\x37\x8c\xf2\xbd\x3a\x5f\x8d\xf2\xbd\xea\xfd\x66\xcc\x99\xd7\x5c\xe6\xc5\xbd\x7a\xa8\xb8\x21\xb1\x4c\x65\x2e\xb3\xdf\x5e\xa5\xaa\xd9\x6f\xaf\x01\x5e\xee\x4e\x2c\xee\xce\xff\xbe\x08\x48\x1b\x30\xbf\xd7\xca\x25\x23\x76\xaf\x42\x71\x73\x72\xf3\x60\xc1\xe2\x66\x5e\xb3\xa1\xb8\x57\xa1\x68\xc2\x9b\x79\xcd\x65\xc2\xdb\xfb\x8a\x35\x8c\xf9\x7d\xdd\x15\x38\xe1\x4b\x14\xac\x78\x87\xaa\xde\x77\x76\x0d\xd6\xaf\xdb\xda\x04\x60\x3d\x09\xf3\x7b\xe7\x31\x45\xbf\x7b\x5f\x07\x75\xda\xa6\xfb\xe4\xa7\xec\x0d\x6f\xd5\x5f\xf3\xe3\x84\x63\x59\x5c\xeb\x0f\xd1\xe1\xad\xfa\x45\xbe\xda\x58\x96\xd9\x5b\x03\x98\xbd\x0d\x00\x77\xe1\xe3\x91\x63\xe6\x42\x13\x0c\x1c\xcb\x2a\xd6\x7e\xd9\x5c\xeb\x04\x90\x95\x12\xfc\x1b\x8b\xac\x74\x4b\xc6\xd9\x67\x07\x02\xa2\x93\x8c\xc3\x1d\x3e\xc5\x7b\x57\xc3\xbb\xf2\x6b\xfb\x18\xcc\x58\x9a\xe3\x14\xb8\xa9\x54\x72\x33\xd4\x58\xe4\x9e\xdc\x0c\x35\x66\x2a\x33\x71\xc5\xb1\xe8\xe2\xca\x64\x0d\x64\xa5\x94\x4b\x8d\xa5\x7b\x90\x92\x05\x21\xf4\x5b\xe4\x3f\x8d\xc5\xd0\x6f\x26\x3f\x8b\xd9\x01\xf3\xc1\x3e\x2f\x9e\x9a\x1a\x8b\x7a\x24\xd7\x44\x8d\x05\x47\x56\x51\x07\x35\x16\x2c\xf7\xa2\xf4\x69\x2c\x2a\x0f\xdc\x19\x35\x16\x52\x34\x8a\x6a\xa7\xe1\xc5\xf9\x6b\xba\x20\x93\x17\xbb\x06\x72\x5c\x9e\x80\x1a\x0b\x8e\xab\x22\xc7\x68\x2c\x2a\x0f\x84\x39\xc7\x42\x1c\xb8\x78\x02\x6a\x70\x57\xfe\x07\x30\x1f\xd5\x0a\x12\x8e\xc6\x72\xcc\x36\xe0\x26\xcd\xf1\xd0\xd3\x58\xa4\x39\xca\x98\xc6\x72\xcc\x41\xc1\x60\xf2\xe2\x62\x0a\xa7\x5d\xef\x74\x7d\xda\x66\xa7\xeb\x4b\x0c\x76\xba\x56\x79\x25\x2b\x68\x2c\x6a\x12\xc4\x2f\x87\xa9\xcb\x45\x56\xd0\x30\x5b\xb9\x28\x70\x1a\xcb\xa4\xac\x41\x07\xcf\xec\x1a\x0c\xa4\x1f\x52\x84\xc6\x4c\x6a\xe6\x96\xa7\xb1\xbc\xa2\xd3\x58\x90\x77\xfe\xec\x1b\xc7\x04\xe5\x22\xf7\x67\xac\xeb\x04\x1a\xc0\x6c\xd3\x01\x5c\x9d\x8f\x1a\xc7\x6a\xf2\x3e\x91\xcd\x41\x4e\xf2\xf7\x25\x01\x66\xd7\xdf\xa0\xeb\x3e\x7b\x1b\x00\xcd\x36\x7e\xb9\x05\xf8\x62\x86\x3d\x81\xc9\xb1\x76\xdb\xf4\x9f\x31\xcc\xb1\xc6\xfc\x25\xe3\x6a\x5a\x92\x38\x33\x56\x85\x3c\xa1\xc5\x31\xb3\x8a\xb9\xa7\x69\xac\xf3\x94\x7d\x84\x3f\x56\x4f\x19\x97\x36\x8d\x95\xdb\x49\x56\x82\x8e\x63\xd5\x74\x21\xce\x38\x56\x85\x3c\xcf\x48\x8d\xb5\x5c\x06\xe8\x96\xe4\xe3\x0f\x60\x1c\xe5\x3a\xb9\x32\x63\xf5\xc8\x11\x9b\x1c\xde\x4f\x5f\x3b\x74\xbb\x8e\x89\x28\xe3\x28\xf1\x89\x5a\x8e\x55\x9e\x4f\xd0\x71\xac\xc6\x1e\x08\x3a\x0e\xaf\x93\x2f\xf2\x5e\x86\xd7\xc9\xaf\x44\x20\xc7\xca\x2d\xa5\x2b\x41\xc7\xb1\x2a\xf1\xc9\x6e\x19\xab\xb9\x3f\x04\x1d\x07\x77\xcb\x7f\x00\x18\xe8\xde\x21\xef\x65\xac\x97\xf3\x81\x84\xcc\x10\x2e\xea\x86\xc6\xfa\xf8\x33\x0e\xe3\x6a\xb4\x97\x30\xe1\x30\x5d\xb8\x48\x00\x19\xab\xa9\x3b\xc4\x0c\xc7\x3a\x4f\x19\xcc\x62\x95\x95\x12\x19\x1c\x5e\x00\xbf\x12\x0c\x1c\x9b\x3c\x92\xd4\x90\xb1\xad\x73\x9c\x01\xe0\x7c\x38\xc0\x9b\x8a\x28\x69\x1e\xc3\x3b\xdf\x57\xc2\x75\x63\xd3\x7f\x42\xb8\x6e\x6c\xbb\x33\xe5\x00\x6f\xf8\x30\x8b\xf2\xa2\xb1\x99\xfd\x46\xb8\x6e\x6c\xd4\x68\x15\xb5\x46\x63\x6b\xb3\x0d\xe8\x18\x1f\xe3\x4e\xd0\x61\xba\x70\x91\x00\x32\x36\x15\x03\x72\x3e\x86\x17\xc0\xaf\x5c\x03\x3a\x36\xe2\x63\xc5\x73\x55\xc3\x9b\xdd\x8b\xf2\xa2\xb1\xf5\x89\x35\x3f\xf3\x8c\xf2\xf8\xd5\xd8\x74\x41\x72\x93\xd2\xd8\x64\x64\x04\xd8\xc6\xa6\x2b\x83\xac\x8c\x41\x0e\xef\x07\x80\x81\xf6\x11\xb9\x17\x63\x53\x8f\x24\x0e\x37\x36\x19\x19\x89\x18\x63\x1b\xb3\x0d\x5d\x9b\x6a\x40\x84\x6e\x6c\xba\x32\x48\xc4\x18\x24\xf4\x7e\xcb\x66\x07\x97\x00\x3f\xd3\x0a\xe2\x71\xa8\xb1\x19\xc6\x2d\x0e\xf9\x76\xba\x06\x9c\xb7\x4d\x3d\x92\xa8\xde\xd8\xae\xd9\x81\xc0\x2b\x00\x3a\x26\x58\x12\xef\x1b\x9b\xea\x26\xaf\x3e\x8d\xed\x9e\xb8\x09\xfc\x3f\x84\xbd\x49\x0e\xec\x3c\xb2\x66\x39\x8f\x55\xc4\x12\x9c\x3d\x09\x5c\xc4\x5e\xd8\x48\x35\xab\x41\xed\x7f\x50\xe0\x39\xfa\x03\x2f\x91\x99\xb8\x23\xc9\xe9\x14\x7b\x23\x8d\xd6\x7c\xe6\xa2\x80\x16\xa2\x57\x22\xf4\x7d\x23\x3e\x4e\x23\xfb\xaa\x58\xec\x01\xf8\xa6\x11\x5d\x7c\x18\x6f\x8c\xf8\x4a\x0b\x9c\x54\x51\xae\x14\x4b\x8e\x11\x5f\xdb\x76\x99\xa1\xf1\x99\xed\xa2\x16\x1c\x49\x39\x21\x3e\x4d\x23\x79\x3f\x42\x47\x38\xd2\xef\x6b\xc1\xad\x34\x29\x1a\xc4\xdb\x69\x24\xf5\x56\x9d\xf3\x35\x85\xaf\x9e\xc2\x0f\x09\x83\xc3\x36\x85\xaf\x6d\x77\x40\x92\x02\x3f\x14\x86\x23\x45\x2b\xcd\xfe\x70\x4a\x58\xb0\x49\x5d\x17\xaa\xc4\xa1\xad\x70\xc7\xc6\x63\x7c\xb6\xc2\xa0\x3c\x0d\x6d\x85\x3b\x2e\x49\x23\xe9\x07\x05\xca\xd3\x48\xf9\xfb\xe6\x6f\x32\xcc\x91\xf2\xd7\x56\x9a\x07\x84\x5f\xc7\x64\x63\x24\x25\xf2\xbd\x33\x40\xc5\xb6\x16\xda\x5a\xbe\xe6\x31\x40\xdf\x3a\x2f\xb4\xb5\xba\xce\x0b\xcd\xd3\xf3\x19\x70\xa8\x21\x4a\x7b\xc7\x98\x63\x80\xc5\x7e\x7f\x50\x69\xfb\xbe\xa1\x1e\x0d\x2c\x81\x8d\x1a\xa9\x7f\xd9\xa8\x67\x7c\x2d\x60\x22\xbe\x05\xcc\xa2\x4f\xda\x6a\x81\x21\x35\x92\x82\x39\x2c\x3b\x46\x52\xc1\x8b\x72\x73\x24\x39\x66\xcc\x3c\x46\xd2\xf7\x1f\x70\xa8\x21\xc8\x7a\xc7\x7d\x6a\xa4\xe5\x1c\xb3\x9a\x3f\x13\x63\x60\xa3\x46\xda\x5f\x01\xd4\x23\xf7\x8b\x1f\xd4\x48\x1e\xcb\x04\xd9\x1a\xc9\x35\x8b\x2e\x6f\x24\xcf\xe8\xcc\x02\x16\xfc\x3c\xa0\xcb\x1b\xe9\x5b\xcd\x2c\xe0\xa4\xbf\x1f\xea\xbb\x91\x64\x85\x01\x4d\x1d\x58\x08\xdf\x6c\x34\x54\xc3\x19\x10\x9b\x46\xd6\x23\x19\xc4\xa6\x91\xbf\x05\x0c\x13\x96\xbf\xc5\xc8\xd1\x90\x5d\x8c\xa8\xde\x46\x8e\xce\x02\x4c\x58\x76\x2d\x81\xa4\x34\xf2\xb7\x96\x60\xc2\x72\xfa\xb2\xf1\x8f\x1c\x26\x18\x4b\x43\x73\xe1\x8e\x6d\xc9\xc8\xe9\x2b\xe0\x76\x5b\x54\xf3\x80\x86\x6e\xe4\xfc\x35\xc7\x7f\xcc\x06\x0d\x0a\x71\x1e\xd0\xd0\x8d\xec\xfd\x1c\x0d\xdd\xc8\xdf\x42\xea\xfe\xf3\xf8\x0f\x5d\x50\x55\x8a\xea\x6d\x64\x5d\xe8\xd1\x8f\x8d\xcf\x6c\x17\xfd\xd8\xc8\x6e\xa5\x00\x91\x8e\xac\x88\x18\xe3\x94\x91\xdd\x57\x41\x25\x1d\xb9\xb9\x29\x41\x42\x45\x21\x14\xc6\x29\xa3\x7c\x3b\x2e\xb4\x50\xbe\x1d\x97\xe5\x2f\x3a\x72\x00\xe1\x68\x14\x8f\x7b\x8c\x53\x46\x71\xc1\xa2\x94\x1b\xa5\x7f\x5d\x18\xfc\xf8\x2a\xf5\x87\x95\xde\xeb\xf5\x28\xdf\x8e\x0b\x61\x14\x85\xc7\xe8\xee\x46\x99\xdf\x3f\x7c\xe3\xdd\x0d\xeb\x8f\x51\x3c\xee\x31\xf8\x18\x45\x6f\x55\xf4\x70\xa3\x2c\x27\x18\x2a\x11\x2a\x39\x80\x63\x34\x44\x47\xee\x58\x72\x8c\xb2\xed\x02\xcb\xbf\xc8\x61\x62\xd6\x31\x8a\x1e\x45\xa0\x08\x0d\x01\x91\x03\x28\x42\xa3\xa8\x27\x45\xa7\x36\x8a\x42\x50\xac\x25\x86\xe8\xc8\x01\x05\xdb\x28\x3a\x57\x80\x22\x34\x8a\x1b\x33\x28\x42\xa3\x06\xbf\xb9\xf7\xf3\x51\xa3\x5d\xb8\x57\xf2\x51\xf5\x60\x03\x5f\x68\x54\x65\x48\x18\x48\x8c\xea\x05\x1f\x75\xdd\xa8\xde\x82\xb0\x96\x18\x9f\x61\x20\xba\xbb\x51\xe5\x23\x31\x9d\x18\x62\x13\x77\xac\x25\x86\xd8\xc4\x1d\xfb\x86\x51\x5d\x89\x98\x34\x0c\x6d\x01\x3b\x16\x09\xa3\x2a\xff\x46\x91\x37\x04\x1d\x0e\xe3\xaf\xf0\x6e\xa3\x7a\x93\x07\x52\x68\xd4\x6a\xc3\x59\xa6\xd5\x7b\x0c\x90\x42\x43\x00\xe1\x8e\xb1\xc0\xa8\xf2\x9e\xe8\xff\x46\xc5\xbf\xa2\x63\x39\x30\xaa\x8c\x28\xca\xc0\x51\x65\x37\x51\x06\x8e\xfa\xad\xe6\x6e\x01\x2e\x05\x18\x9d\xda\xbf\x6f\x28\x60\x7c\xcd\xa1\xe7\xee\x84\xe0\x0b\x8d\xea\x7e\x57\xd8\x8b\xeb\xb7\xdf\xb1\x32\xab\x92\x23\x20\x85\x46\xf5\xb6\x82\x9b\xd6\xa8\x3a\xea\x0c\x98\xbd\xfa\x2d\x39\x16\x56\xfd\x96\x1c\x5c\x5c\x5d\x2e\x2c\xf6\xe2\xba\x1c\x7b\xf6\xe2\x2a\xef\x89\x36\x71\x54\xf9\x48\x34\xde\x43\x4b\xc3\x8e\x86\x78\xd4\x6f\x61\xb1\x31\x0b\xdf\xdb\x8b\xdd\xf6\x7e\x5e\xec\x0f\xf7\xf3\x88\x06\x72\x54\x65\x4a\x68\x61\x87\x86\x82\x1d\xc5\xeb\xc0\x1c\xf0\x72\x4d\x91\x1f\x76\x1b\x46\xb4\x21\xd0\x8c\xa8\x16\x47\x53\xea\x8d\xd6\x72\x34\xaf\x2e\x78\x2e\x8d\xf6\x2d\x53\x4e\x1d\x01\x77\x3b\x61\xa4\x46\xe3\xc0\x8e\xc0\xf6\x8c\x06\x87\x19\x41\xea\x19\xcd\x1b\x0e\x01\xa6\x46\x8b\x36\x94\xa5\xdd\x14\x82\xa2\xc2\x1c\xcd\x65\x8a\x0a\x73\x34\x5c\xd5\x22\x80\x3e\xa3\xa9\xbb\x23\xda\xd4\x68\x58\x70\x77\xa2\x4d\x8d\x96\xbf\x6f\x28\xcd\x05\x8c\x72\x73\xb4\xfc\xb5\x80\x56\x7b\xc8\xa3\xcf\x1c\x8d\x73\x3c\xfe\x20\x07\xed\x16\x23\xaa\xd2\xd1\x40\x9d\xef\x68\x3a\x87\xb8\xbc\x11\xb8\xd1\x81\x11\xe3\xfd\x41\x43\x71\x4f\xee\x28\x33\x47\x53\x77\x87\xfe\x72\x34\xd0\x06\x22\x88\x40\xa3\xc9\xc9\xa2\xb2\x1c\x5a\x34\x46\x40\x80\x06\x16\x8d\xf7\x07\xf5\x54\x7b\xca\xd9\xd2\xbc\xed\x57\xc7\xad\xda\x53\x87\xaa\x39\xbc\x9c\x2d\xda\x3a\xf6\xea\xe8\x34\xdb\xc6\xd9\xd2\xdc\xa5\xab\xdd\xf6\xea\x5f\xed\x69\xb3\xa7\x9c\x3a\xc2\xf7\xf6\x6a\xb7\xfb\x57\x0f\x45\xbb\xfd\x56\x7b\x3a\x6c\x1b\xa4\x09\x62\x6f\xe8\xe8\x2f\x87\xe6\x8d\x11\xe5\xec\xd0\xbc\x31\xa2\x82\x1d\xcd\x8d\x19\x97\xb1\xd1\xa6\xf5\xc0\x17\xb7\xf9\xb5\x80\x7a\xdc\xb2\xd1\x6c\x0e\x0d\x1f\x23\xca\xd9\xd1\xb8\x7a\x45\x60\x40\x47\xdb\xd6\xc3\x49\xd5\xd4\x1b\x54\x87\x77\x7f\x45\xf3\xcf\x71\x78\x39\x5b\x9a\x7a\xab\xea\xf0\x1e\x67\x9b\xb3\xa5\xb9\x31\x57\xc7\xfa\xfd\xb2\xf1\xcd\xeb\x20\x16\x7f\x7c\xf5\xf0\xcd\x47\x59\xc5\x1f\x56\xea\x20\x62\xe9\x15\x7f\xd5\x1f\x8e\x1b\x47\x77\x57\xd8\x85\xf2\x6f\x74\xf5\x06\x35\xfd\x75\xc3\x04\xbe\x37\x74\x34\x83\xa3\x07\x07\x95\x7b\x73\x0f\x5f\x55\xb7\xb3\xda\x3a\x46\x74\xa0\xa3\x7f\x94\xc6\xf1\xd2\xb1\xef\x8a\x68\x2d\x47\x57\x96\x80\xfe\x6f\xf4\x68\x01\x9c\x35\x5d\xb2\x43\x19\x38\xb4\x8f\x8c\xa8\x30\x47\x47\x65\x1e\x41\xea\x19\x9a\x44\x76\xd4\x84\xa3\x27\x27\x8f\x4d\xa9\x13\xec\x21\x02\xce\x33\x7a\xfe\x0a\xa0\x39\xea\x67\x51\x13\x8e\x9e\xbf\xe6\xd0\x36\xf9\x62\xd4\x77\xa3\x7f\xf4\xc4\x36\xdf\xd5\x92\xe3\xeb\x36\x30\x96\xbc\xff\xd0\x02\x75\xad\x38\xbe\x8d\x5e\x6c\x01\x9b\x5f\xff\x88\x8b\x59\xe9\xc0\xa9\x76\x14\x7b\xa3\x7f\xc4\xc5\x69\xd0\xab\xe4\xc0\x21\xaf\x19\x65\x27\xae\xd6\x10\x4d\xb8\xa3\xe5\x1b\xfd\x5b\xb3\x8e\xf5\x94\x88\xd9\xf3\xfb\xfc\xb2\x51\x9a\xdb\x7c\x75\xe0\x97\xdd\xe6\x00\xe8\xcb\x4a\xd9\x57\xfb\x72\xc5\xb0\xaf\xf6\x65\xab\xd9\x4a\xfb\x72\xdc\xd8\x4a\xfb\xfe\x0a\xa0\x34\x2d\x48\x08\xd9\x35\xfa\xfe\x4a\xf3\xc7\xd7\x05\xc6\x60\x3b\x3a\xc3\x1f\x0e\x2f\xbb\xa7\xe6\x8d\xbd\x3a\xc1\xa8\xb7\x22\xa0\xa2\xa3\xab\x10\x25\x48\xcb\x00\x70\xf7\xfe\x73\x5b\x30\x54\x2a\xe0\x2c\x37\xc6\xb7\xf8\x18\x5e\x6d\x10\x3b\xfa\xb1\x31\x40\x2e\x8c\x40\xf0\x8c\x11\xbe\x6f\xfc\xe1\xb8\x71\x04\x69\x90\x18\x51\x24\x8f\xe1\xd1\x80\x83\xdd\x18\xf1\x2b\x8d\x7f\xbc\xa4\xa1\x39\x1b\xc3\xd3\x00\x45\xf2\x18\xdc\xcb\x22\xba\xe3\x31\x5c\xb0\xe8\x8e\xc7\xc0\x8b\x39\x06\xb6\xab\x81\xd9\x6e\x0c\x6c\x57\xc3\xc5\x87\x1e\x78\x0c\x85\x0f\xe8\xe1\xc6\x40\x2c\x16\xd1\x03\x8f\xa1\x24\x02\x3d\xdc\x00\xbe\xf7\xfe\x43\x3d\xdf\xb2\x64\x44\x87\xcb\x32\xb0\xc1\x0c\x65\x14\xe8\xc7\x86\xa6\x8a\x11\xa0\x9d\xa1\xa9\x62\x04\x95\x74\x68\xca\xd7\xd1\x9c\x8d\xa1\x10\x14\x65\xd9\x18\xe3\xfb\x86\x02\xf0\xff\xed\xf8\xd0\x8d\x81\xb2\x22\xa2\x96\x1e\x58\xfc\xdd\x1f\x7c\xe3\xbe\x8a\x26\x7a\x0c\x40\x23\x3a\xde\x75\x63\x60\xcb\x14\xd1\x44\x8f\xe1\x82\x45\x0f\x37\x80\xe2\xbd\xff\xf0\x63\xd9\x39\xb6\x6c\x31\x75\x3b\x9a\xb3\x31\x5c\xa3\x68\xa2\x87\x30\xba\x9d\x80\x24\x63\x28\x52\x6d\xce\x02\x70\x54\x11\xfc\x9d\x31\xb6\x0d\x65\x47\x12\x53\xb7\xa3\x46\x1b\x60\xea\xde\x7f\x28\xe0\x7c\xa5\xf1\x8d\x9a\xda\xe6\xfc\x1c\x87\x8a\xcd\x5c\xb4\xdd\x8e\x82\x6d\x8c\xc7\x99\x63\x67\x1f\xcf\x57\x1a\x45\x3f\xf6\x27\xff\x4d\x4b\x3e\x86\x02\x5b\xf4\x72\x63\x3c\x5f\x55\xd4\xab\x09\x54\x73\x5d\xbc\x5f\xe9\xd4\x8b\x73\x4f\x44\xc5\x3c\x86\xbb\x36\x4a\xba\x31\x7f\xdf\x37\x89\x1f\x8e\x30\x4b\x01\x90\xde\xfb\x4d\xe3\xc7\x57\xc0\xad\x67\x06\x27\x8f\x7d\x68\xba\x65\xa3\x21\x1e\xe2\xf2\x46\x80\x76\xc6\x94\x87\xc2\x25\x6e\x60\x9d\x78\xff\xa1\x52\x6f\x93\x68\xec\x06\xc6\x85\xf7\x1f\x5a\xe0\x2e\x8d\xfa\x6e\xcc\xe4\xca\x64\x87\x9a\xe9\x2b\xba\xf0\xc3\x6e\xb3\x29\xcd\xec\x37\x2c\x9f\x89\x13\x5b\x47\x49\x37\x66\x76\x5a\x39\x27\xa6\x84\x82\x92\x6e\xcc\xec\x70\x73\x68\x08\xc5\x1b\xc1\xc9\x19\x53\x21\x07\xea\xbb\x21\x2e\x6f\x04\x6e\x74\xcc\xf2\x15\x40\xa5\x12\x4a\x63\xc5\xcc\x62\xdb\x9a\xdf\x38\xbc\x2c\x9f\xa9\x30\x0f\x6f\xbb\x31\xab\xcd\xe1\xd0\x98\xee\xdf\xe8\xee\xc6\xfc\x96\x36\xeb\x62\x7e\x4b\x9b\xbd\x6b\x7e\x4b\x9b\x6b\xc8\x5c\x5f\x36\x0a\x58\x6e\x09\x1c\x34\xd3\x1d\x17\xdd\xf1\x98\x6e\xa5\x20\xe8\x8c\xf9\xad\x66\xb6\xb8\x79\x9c\x39\xb6\xb8\x79\xbe\xd2\x28\xe0\x7c\xd9\xa8\xe7\xf9\xb2\xf1\xcf\x23\x75\xb2\x77\x89\x56\xdb\xd1\xf7\x0d\xd1\x6a\x23\xaa\xdf\x31\x1f\x27\x98\xdd\x06\xb4\xda\xfb\x83\x16\xe0\x9c\xd9\x51\xfe\x0d\x6d\xf6\x22\xaa\xdf\x31\x5f\x87\x97\xa3\x41\x1c\xdb\x88\xb6\x77\x88\x56\x1b\x41\x98\x19\x8b\xf0\x19\x11\xe8\x98\xb1\x7e\xdf\x3f\x37\x1b\xc6\x78\xf7\x47\xe3\xc7\x97\xad\xf3\xa3\xfa\x63\xf0\x63\xda\x82\xc8\x0f\x7a\x8a\x52\x78\x2c\xd9\x74\x34\x8e\x63\xc5\x2f\xdb\x6d\xdb\x4a\x12\x06\x12\xa9\x25\xbf\x00\x86\xca\x58\xc8\x35\x22\xe0\x28\x63\xa9\x46\x43\x31\x39\xc4\x86\x8d\x28\x85\xc7\x92\x11\x00\x0f\x65\xac\xec\xa2\x60\xf9\x2f\x44\x67\x11\xd5\xef\x10\x28\xb6\xab\x30\x5c\xe5\x2b\x80\xd2\x64\x04\xd4\x11\x2e\x4f\x78\xc0\x51\xc6\xaa\x5f\x69\x14\xc0\x1d\x31\x82\x94\x32\x30\x70\xbb\x3f\x68\x28\x2a\x89\x88\xde\x77\x60\xb9\x76\xbf\xa1\xe8\x61\x36\xb6\xdf\xa5\x54\x58\xed\x21\xa0\xaf\xf7\x1f\x2a\x1d\x5f\x3d\x14\xed\xb2\x44\x09\x3c\x96\x3c\xae\x6a\xc1\x25\xf3\x80\x46\x78\xac\x69\x3d\x50\xd6\x72\x8d\xa2\x11\x1e\x4b\x1e\x17\x8d\xf0\x58\xae\x51\x94\xc0\x43\x00\xd7\xae\x2a\x71\x6d\xeb\x81\x30\x04\x70\x8d\xe0\x6e\x8e\xa5\x59\xa8\x4a\x46\x01\x5c\x63\xcc\x7f\x0b\x51\x31\x96\x9b\x2e\x1a\xe2\x21\x86\x6b\x57\x1d\xb9\x54\x84\xa9\x81\x14\x9c\x35\xa2\x3b\x1e\xfb\xe7\x44\xc0\x47\xee\xdf\xd7\xa2\xce\x8f\xed\x8f\xc1\x0f\x37\x0b\x08\x7f\xcb\x3f\xa8\xa8\x14\x8f\xb5\xab\x8e\xdc\xc1\x89\x80\x6a\xb6\x2a\x32\xd5\x91\x3b\xda\x3f\x68\x63\xc7\xef\x1f\x8a\x4e\x8e\x16\xeb\x6f\x7b\x4d\x24\x9e\xcd\xd8\x6e\x8b\xe0\xa3\x8c\x2d\xbf\x8a\xa7\xe6\xd8\x6e\x8b\x2a\x92\xb7\x6a\x5c\x55\x98\x5b\x5e\x80\x40\x35\x63\x67\x29\x80\x2d\x7b\x7f\x1b\x19\xfb\xc3\xf6\xc6\x16\x59\x8c\xbb\xda\xea\xea\x3f\x8e\x0e\x4b\x4e\x03\xbe\x08\x4e\xc9\xd8\xcd\x89\x60\xf9\xec\x6f\x7f\x60\x83\xd9\xee\x0f\x20\x7f\x0e\xb1\x47\xbb\x9a\xce\xfd\x7c\xcd\xe1\x1b\x6f\x1e\xb8\x6d\x0e\xa1\x43\x23\x00\xa1\xe3\x68\xe6\x81\xa7\xe6\x38\xdf\xc0\x33\x73\xe7\xa3\x75\x66\x4e\xb4\xd0\xa8\x2e\x1c\x7b\xb5\xfb\x4d\xe4\x87\x3d\x65\xac\x8f\x97\x75\xd5\xdf\x27\xfa\x0d\x23\x7a\xe2\xd7\x02\x8a\x96\x57\x6b\xec\x50\x27\xd9\x05\xc6\xed\x7c\x63\xcd\x76\x75\x3c\x5b\xc0\x1c\x19\xc7\x4b\x34\x41\x74\xc6\xd1\xe6\x83\x20\x3a\xe3\xc8\x36\x81\x2c\x32\xce\x47\xc4\xf6\xb4\x4a\x1b\x76\x4e\x5d\x24\x8e\xa3\xe3\xa8\xe4\xc6\x71\x74\x60\x07\x77\xb3\xd1\x9c\x6f\xac\x6d\x41\xb3\x68\x2b\xed\x36\xc7\x4a\x09\x47\x13\x55\xb3\x1f\xcc\xc6\xa3\xca\xf4\x23\xdf\x95\xe0\xc8\x0e\x52\x9f\x98\x60\xb5\x80\xf4\xbc\x95\xfa\xcf\xf6\x1f\x2a\xf5\x3a\xa0\xe6\xf6\xe0\xc6\xd4\xbb\xff\x00\xc9\x15\xd5\xc6\x1f\x84\xe1\x31\xb1\xfd\x1e\x99\x7e\x15\xf0\x67\x7f\xdf\x90\x0d\x0f\xbd\x08\xb2\xc8\x38\x88\x13\x23\xc8\x22\x03\xb0\xcf\xfb\x83\xa2\x01\x6e\xe9\x78\xb8\x8e\xe3\x7d\x16\xfc\x90\x21\x8a\x67\x04\x3f\x64\x9c\xf7\x1b\x2a\xba\xfd\x5a\x1a\x3b\xee\xf1\x04\x51\x4f\x7f\x5e\x9b\x03\x63\xf3\xfc\x6c\x01\xdb\xef\xf3\xfb\xfe\xb9\xa5\x3d\x2e\x24\x95\xf6\x8f\x87\x06\xee\xae\xe3\x33\x70\xc3\xc3\x75\x3c\x2a\x2b\x70\x6a\x1d\x8f\xf3\x03\x30\xc8\x10\xb4\xb2\xe3\xc7\x3a\x1e\xa5\x72\xb8\xae\x8e\x47\xb1\xb2\xfa\xe5\xc7\x5d\x5a\x45\x3f\x08\x96\xf7\x07\xdf\x38\x8d\x2a\xfa\x81\xa2\xbc\x3f\xee\x88\x3e\xc3\x99\x63\x2b\x7d\x86\xa3\x13\xfc\x01\x35\xaa\xc1\x7f\x64\xb9\x55\x43\x6b\x1d\x16\xd5\xe0\x3f\x6e\xe6\xfd\xaf\x41\xd0\xc6\xf3\xad\x0b\x76\xe0\x47\x7e\x5c\x7d\xf3\x33\x6d\x11\x5b\xe9\xa3\x64\x4f\xad\xf2\xb3\x1c\x6e\x76\xcf\x47\x2b\x48\x55\xcc\xcf\xb7\x14\xd8\x4a\x1f\x95\x24\xaa\x98\x9f\xed\x70\xb3\xaf\x3e\xdb\x25\xc7\xbe\xfa\xa8\x3e\xe9\x0e\xaa\xf6\x42\xb8\xb2\x8e\xe7\x5b\x24\x1c\xe5\x8f\x1c\x0c\x7e\xad\xe3\x39\xae\x73\x8e\xf2\xe7\xd8\x1c\x8e\xf2\x47\xfd\x8b\xfa\xe6\xe7\x71\xec\x8b\x3f\x6c\x01\x5b\xe9\xf3\x7c\xa5\xf1\x43\xd6\x04\x88\x8d\xf1\xbc\x5f\x0b\x68\xf5\xb7\x96\xd8\xef\xde\x9f\xa5\xb1\xc5\xbd\xf2\x29\xea\xe9\xdf\x9f\x83\xc8\x39\xf8\xea\x41\xa0\x8e\xfa\x95\x69\x01\x9f\x62\xbc\x5e\x2d\xd5\x51\xbf\xe1\xfb\x26\xf3\xc3\x85\xc5\xae\xf6\x06\x29\x80\xb3\xe5\xf5\x6a\xa9\x2a\xfb\x8d\x56\xca\x41\x83\xc1\xdb\x3d\x88\xa9\x27\x59\x1a\x47\xc3\x67\xe3\xa6\xc6\xfb\xf5\x9c\x00\x1d\x62\xbc\xf9\x6b\x1b\x45\x6b\x4a\xa1\x92\xfb\x2d\xb6\xa0\xfb\xc3\xe5\xc3\x64\xbd\x9e\x13\xa9\xfb\xc3\xc9\x62\xe6\x44\x18\x8d\xa9\xfb\xc3\x65\xca\xb9\xf7\xba\xdf\xa5\xe1\x0f\x89\x8b\x73\xef\xad\xee\x1c\xc3\x1f\xee\x84\x4c\x30\xd8\xa3\xf7\x1f\x7f\x58\x34\xbb\xb4\xd8\xa3\x1d\x6f\xd5\xf1\x2a\xcc\xc3\x41\x75\x80\x16\x7a\xb3\xf1\x43\x13\x7d\xe2\x1a\x0d\xa0\x43\xef\x3f\xf4\x47\x3b\x1e\xe2\x1a\x8d\x77\x7c\x95\xfa\x8f\x6b\x87\xdb\xf1\x3b\xed\x29\x17\x62\x4d\xec\xa2\xd6\x05\xef\x2c\xfe\x08\xff\xfa\x33\xf7\x37\xdb\xbc\xee\xff\xfc\x3b\xe1\x07\x30\xf7\xbd\x0f\x65\xcc\xd9\xe7\x06\xee\xf7\x7b\x0d\x24\x17\xde\x23\xd9\x4d\x7f\x6e\x7a\xa1\x98\x64\xba\xef\x8d\xf4\xca\xfb\xa5\x93\x42\xf6\xf4\x92\x85\x64\xcc\x16\xfd\x32\x07\x92\x1b\xef\xf3\x7e\xf9\x65\xb9\xc3\x7c\xc7\x68\xe2\x10\x90\x10\x8c\xcd\x8d\x13\x63\xa1\x2d\x98\x2e\x5a\x0d\x9c\x68\xa1\x0c\xc4\x00\xf7\xe6\x37\xc1\x78\x4f\x88\xcd\xa6\x10\xef\x97\x3e\x26\xc8\xed\x19\xab\xdc\x89\xa5\x7f\x42\x98\x36\x37\xac\xa9\x5d\xbb\x7b\x66\x42\x92\x36\xf7\x9d\xc8\x8c\xdd\xee\xdc\x77\xc7\x4c\x08\xd5\xe6\x06\xd7\xa3\xf2\xda\x1b\xc9\x94\xd8\xef\x20\x22\x10\x98\x1b\xc6\xb5\xd1\x96\x61\x45\x94\xc2\xcc\x36\xda\x72\xf7\xbc\x8c\x0d\xec\x04\xb5\x3d\xfd\xcc\x3e\x2b\xe9\x7f\x13\x48\x4e\x00\xdd\xd3\xcf\xc2\x2e\x9b\x9b\xb9\x6a\xcf\xcd\x99\xd8\x29\x6b\x31\xc2\x9d\xe4\xc5\x90\x74\x86\x72\x4d\xb2\xd3\xa4\xbb\x07\x26\x84\x7d\x73\xb3\x05\xda\xdf\xfd\x23\x0b\xc5\xc0\x10\x0f\x5f\x99\xed\x4e\x1f\xef\x1e\x99\xb9\x02\xcf\x8d\x60\x62\xf8\x4a\x67\x3a\x23\xb8\xfb\x7d\xa7\xfe\xbd\x48\xa6\xbf\x9b\x69\xa5\x29\xc7\x66\x31\x80\x87\x2f\x69\xc9\x61\x14\xb2\x59\x18\xfa\x4e\xb3\x1e\x27\x96\x57\x93\x69\xd6\x33\xff\xf3\x6f\x50\xc4\xe6\x7e\xac\x87\xa6\x3c\xb7\x9e\x40\x21\xf7\xa6\x97\x9b\xeb\xf1\xa1\xcb\x83\xec\x77\xff\xcc\xcd\x05\x79\xcf\xe5\xe4\x8c\xdc\x9d\x34\x37\x17\xe1\xcb\x40\x0f\x8a\x79\x99\x63\x57\xe1\x7b\x1b\x10\x6e\xfd\x40\xcc\x63\x91\x37\x61\x0c\x13\x22\xc5\x79\x2e\xb5\x71\xcc\xcf\xf3\x2b\xf7\xc3\xcb\xca\xce\xf3\xab\x37\x39\xf1\xca\x2a\x60\xdd\x9f\x4b\x84\x9c\xcf\xf3\x04\xfa\x76\xd9\xa7\x09\xac\x3c\xa8\x5d\x13\x36\x31\x21\x94\x9c\xe7\x92\x29\x90\x5d\xf3\x40\xa6\xf0\xf3\xf3\x40\xa6\x89\xb2\x23\x83\xcf\x74\x9e\x78\x0b\x4c\x34\x2a\x32\xf9\xdd\x2f\x19\x2c\xa6\x16\x5c\x7a\x8e\xed\x09\x03\x99\x90\x5d\xce\x73\xe9\x98\x33\x7b\x9e\xc4\x18\x0e\x0a\xbf\x5b\x73\x02\x3a\x7c\x9e\xcc\x64\x99\xfd\x72\xf3\x18\xdc\xcd\x73\x6f\x99\x89\x80\x4b\x13\x68\x7b\x4c\xef\x26\x58\xf6\x9c\xcc\x13\x76\x34\x11\x85\x69\x9e\x4b\xd3\x1c\xcb\xf3\xdc\xfd\x3c\x11\x8f\x69\x9e\x4b\xdf\x9c\xc9\xf3\xd4\x3b\x55\x18\xbb\x4d\xc0\xed\x81\xc6\x9a\xf8\x7a\xe4\xee\x3c\x5c\x5a\x07\x74\x7c\xe2\xce\xc1\xb9\x3a\x61\x4d\x33\xe0\x13\xf3\x34\x1b\x65\xfa\x1d\xfc\xee\x18\x5e\xbe\x07\xd0\xa9\x79\x2e\xd7\x93\xbb\x63\xd8\x2b\xd9\x69\x6d\xa7\x98\x44\x13\xfb\x1d\x95\x4a\x9d\x97\xfb\x49\x08\x60\x27\xbe\x1c\x9c\xab\x13\x76\x36\x73\x0c\xcd\x33\x16\x59\x48\xbf\x4c\x0b\x68\x50\xf3\x40\xf6\xf8\xf3\x4c\x3c\x3a\x12\xee\x3c\xf3\xac\x3b\x9e\xdd\x45\xb1\x58\x64\x81\xf7\xcd\xa7\xf4\x7f\x33\x44\x8e\x05\x44\xc6\xe6\x71\xee\x05\x35\xf7\x2f\x0b\x34\xe1\xb8\x1c\x86\x0e\xb2\x85\x97\xe5\xb0\x9d\x07\xe2\xc3\x9d\x67\x1e\x88\xcf\x55\x71\x6e\xe7\xbe\xcc\xe7\xe6\x60\x63\x39\x97\x23\xe1\x2c\x9e\x07\x32\xec\x7f\x83\x47\x9b\x38\x79\xa4\x20\x61\x5c\xaa\xcb\xc3\xe5\xf0\x30\x66\x52\xc6\xfb\x23\xdd\x77\x16\x84\xa4\xf1\xde\x56\x40\xa4\xf0\xc8\x79\x38\x38\x2f\x0b\x2f\xd2\x8c\xcb\xe2\x70\x1c\x4f\x1c\x40\x32\xd6\x2a\x13\x5c\x7b\x8e\xc5\xf9\xdc\x43\x2e\x63\xaa\x32\x9f\x7b\x09\xe6\x80\x9c\xcf\xcf\x42\x1a\xef\xef\x7f\xfe\xcd\x51\x39\x9f\x40\x53\x18\xec\x27\x5c\xa2\xa2\xb5\xcf\xbd\xc4\x25\xd0\xda\x27\xac\x77\x42\x6c\x3c\x1f\x4e\x4d\x96\xd2\x03\x91\x22\x33\x9e\xe0\xe5\x27\x44\xc6\xf3\xb9\x37\xb6\x3c\xfc\x34\x32\x67\x10\xe1\x73\x69\x33\x0f\x8b\xb9\xb4\x89\x51\xde\xc4\xd7\x04\x5b\xbb\x09\x1a\x7e\x42\x54\x3c\xf1\x2d\x01\x25\x69\x82\x8b\x9f\x71\xc5\x9e\x4f\xb2\x52\x9a\x9b\x23\xe9\x14\x9e\xad\x88\xde\x65\x2a\x82\xdc\x9e\x6c\x91\x14\xcf\x81\x1b\x7c\x65\x75\x42\xf9\xf8\x9d\x64\x2c\x4c\x26\x70\xfa\x58\xcd\xcd\xa7\xb0\x33\x5a\xeb\x25\x54\x50\x8d\x26\x8e\x29\x19\xd3\x90\xf9\x94\xdb\x53\xa6\x05\xb4\xfd\x8c\xe3\xf5\x7c\xa0\x4e\xfc\xae\xe7\x73\xa9\x33\x3b\x46\x95\xc5\xc9\x3e\xf1\x54\xba\xc4\x09\xfd\x5c\xae\x0a\xfb\xb5\xf9\x34\xeb\xa4\xc4\x06\x19\xda\x0b\xa8\x19\x33\x8f\xf9\x34\x66\x1d\x16\x02\x57\x96\x14\x6c\x3a\xa4\x4a\x38\xa7\xf9\x74\xd6\x60\x36\x0f\x5d\x85\x28\xb9\x9b\xa4\x60\xe3\x07\xa3\xc4\xe1\x84\xdf\x4a\x02\x1f\x7e\x3e\x97\xab\xca\x16\x79\xe9\x36\x5b\xca\x62\x0d\xb0\xcd\x70\x6b\x28\xa8\xa8\x27\x6e\x29\xd9\xe4\x7b\x64\x96\x9f\xe3\x7b\xc9\x16\x93\xb3\xf9\xec\xe7\x26\x47\x0a\x3c\xac\x2a\x76\xa8\xe7\xd2\x24\x06\x62\x93\x5b\x44\xf9\xb9\x34\x2f\x4d\x66\x07\xe6\x30\x60\x8e\xe9\x59\x37\x8b\x03\x79\x69\x15\x63\xb0\xc9\xbd\x00\xeb\xaf\xf9\x3c\xf6\x81\x02\xef\xd9\x58\x7e\xce\xdd\x3d\x1c\x73\xa5\x4a\xcf\x46\x0b\xe7\x70\x84\xa1\x79\xa4\x40\xce\x29\xae\x13\xd9\x81\x7e\xe9\x32\xcc\x22\x2e\x32\xd9\x31\x7f\x19\x4f\xab\x7f\x69\xc9\xad\xf2\xbd\x07\x5c\xc1\x2d\x75\xbe\x3f\x0e\x8d\x9b\x83\x0b\x05\xb6\x5d\x93\x4b\x43\x42\x48\x3e\xdf\x68\xd9\xb7\x1e\x9c\x5f\xb0\xde\x9a\x6f\xb2\x25\x14\x92\xca\x2d\x90\xcd\x80\xb8\x05\x29\x58\xd1\x65\x38\x8b\x47\x33\x51\x0b\x12\x32\xf4\xc9\x2d\x22\x21\x35\x9f\x5c\x22\xca\xef\xaf\x21\x62\xe7\x7b\xd9\x54\xec\xb6\x26\xce\x35\xc5\xf3\xf7\xcd\x4c\x08\x87\xee\x9b\x0b\x3b\x33\xaf\xf4\x91\xd3\xf5\x95\xe0\x60\x53\x09\x84\x80\xe9\xd4\x7c\x33\xbb\x9c\x7d\x2f\xee\x72\xbc\xde\x09\xf1\x34\x78\x8b\x0d\xa5\xa2\xca\x22\xe4\x95\x23\x88\x1d\xec\x75\x59\xc3\xc3\xbd\x1d\x62\xe2\x43\x18\x4f\x3c\xad\x26\xe1\x09\xb0\xaf\x9a\xef\x88\xb7\x6c\x56\x2c\x37\x07\x90\x71\x26\xf7\x06\x0c\xa8\x26\x17\x85\x84\x98\x7d\x12\x3b\x20\x05\x1b\xbb\xc8\x42\x77\x16\xed\xb6\xb1\x9b\x91\xa0\x25\x9b\x96\x38\xd8\x9b\x3e\x70\x46\xbc\x97\xb3\xc3\x36\x6a\x12\x31\xa0\x7c\x85\xb3\x90\xd9\x4b\x71\x9e\x49\x88\xdc\xe7\x7b\xef\xc2\x58\x38\x4d\x62\x05\x24\x84\xef\xf3\x3d\x7e\x79\x5f\x9f\x3b\xb2\xd1\xfe\x3c\x74\xd3\xc1\xbf\xcb\x11\xb4\x96\x89\x63\x4c\x0a\x0e\xfe\x5d\x8e\x40\xb5\xac\xdf\xbd\xd8\x16\xe0\xc4\x17\xc8\xff\x09\xcf\xab\x05\xf0\x3f\xc8\x2c\xeb\xf7\xb3\x29\x83\xf7\x5b\x67\x34\xc7\x3d\x1b\xa8\x73\x81\xff\x0f\x40\xcb\xfa\xdd\x5b\x6f\x42\xa0\xbf\x88\x04\x00\x3a\xcb\x02\xe0\xbf\x80\xdf\xbd\x7e\xf0\x64\x20\xc4\xaf\x5f\xe4\xcb\x44\x45\x97\x29\x4b\x80\xc5\x2f\x90\xfe\x41\x6c\x59\xe0\xfc\x27\xc0\xe1\x17\xc8\xfe\x18\x5d\x2d\xbc\x5c\xb0\xb2\x5a\x80\xf2\x03\xbb\xb2\x70\x6a\x29\xc8\x25\x17\xf0\xfc\x00\xb0\xac\x1f\x1b\x36\xca\x84\xf5\xbb\xcb\x0d\xf4\x95\xf5\xcb\xf6\xc1\xdc\xb7\x85\x99\x76\x17\x86\xb3\x51\xfb\xe5\xac\x40\xc9\x5e\x78\xc2\x14\x04\x93\x0b\x47\x18\xf0\xb2\x17\x20\xfe\x05\x11\xe5\xc2\x25\x26\xa1\x9a\x58\xbf\xc2\x58\x35\xf3\x9c\x9b\x9d\xea\x0b\x23\xd1\x7c\x67\x24\x02\x6d\xb9\x17\xef\x92\x69\x4a\x65\x20\x02\x6d\xb9\xa7\x01\x58\x2a\xeb\x57\x29\x3c\x50\x3f\x5b\x3d\xd0\xf1\xeb\xd7\x98\xab\x41\x76\x2e\x63\xf8\xbb\xad\xdf\x25\x09\x20\x55\xd6\xaf\x9b\x9d\x4a\x2f\x49\x94\x42\xe7\xba\x25\x52\xe9\xbd\x5c\x97\xe4\x58\x0c\x4b\xa1\x56\x38\x31\x54\x22\xeb\x07\x51\x54\x4a\x9c\xe9\x66\xb7\xa2\x29\xd3\x4e\x03\xe6\xe4\x9d\x3c\x0b\x1e\x3f\x52\xd5\xbd\x58\x15\xc7\x0e\x1a\x8a\xae\xbf\x75\xc7\xb4\x51\xe9\xae\x4c\x39\xa5\xdc\x5d\x3f\xa1\x46\x59\xbf\xfd\x92\x4e\x4d\x50\x48\x27\xfb\x13\x59\x0a\x7f\x33\x74\x5e\xbf\xe7\xb6\x74\xd0\x88\x87\x05\xe9\x68\x3e\x97\xd6\x07\x8d\x78\xb8\x5d\x44\x6a\xe0\x1c\x88\xae\xfc\xbb\xe1\x63\x28\xb6\xc2\x8f\x85\xc7\x92\x08\x3f\xa6\x07\x2a\x00\xb6\x3f\xa1\x94\x59\x81\x1d\x1a\x9d\xcc\x0a\x81\xb5\xd7\xf9\x36\xd0\x19\x3a\x16\x02\x9d\xb9\xfb\xe1\x0a\x77\x8d\x63\xf4\xb4\x42\xa2\xef\x90\x1e\xd0\xfb\x98\x18\xad\x80\x18\x40\xaa\x09\x97\x5d\x29\xb0\x57\x2b\x64\xa6\x13\xaa\x09\x77\xb3\xc5\x6c\x68\x05\x57\x39\x84\x80\xe7\x4c\xc1\xd5\x60\x85\x62\x76\x1a\x79\x17\x31\x10\x03\x2b\xdc\x05\x0a\xa6\xc0\x0a\x05\x42\xc8\xbc\xdf\x85\x08\x86\xc0\x0a\x15\x9a\x88\xbe\xd3\x16\x16\x68\x68\xac\x55\x2b\x6d\xe1\x66\xf7\x95\x02\xcd\xc1\x82\xb7\x9e\x3e\x79\x27\xfd\xae\x38\xf0\xaa\x57\xe8\xd0\xa1\xad\xea\xe7\x26\x53\x48\x67\xb4\x58\x9f\x40\xf8\x17\x42\x77\x2c\x9c\x68\x12\x42\x8e\x15\x5c\x9f\x85\xfc\x97\x11\xa9\xc5\x2c\xf4\xbf\x30\x5c\x77\xa9\x62\xeb\xb3\x82\xcb\xb3\x30\x5a\xf7\x02\x81\x39\xcf\x0a\xb3\x42\xd9\xbe\x33\x75\x85\x26\x4e\x0a\xa4\xfe\xc9\x62\x28\x34\xf1\x2e\xe6\x6a\xf5\x08\x06\x50\xb2\xac\x70\x17\x70\x02\x69\x7e\x85\xcb\xb6\x54\x5b\x75\xc8\x4d\x79\xdc\x1e\x90\x95\xac\x70\xc8\x41\x79\x87\xb1\x65\x01\x02\xd3\x5f\xcd\xc1\x95\x01\x35\xcd\x0a\xcf\x1d\xda\xef\x95\x25\x5a\xc9\xfd\xb0\x25\xb1\x21\x83\xcf\x8f\x10\x68\x05\x6e\x08\x08\x59\x56\xb8\x37\x04\xac\x6f\x56\x78\xef\xe8\x83\x61\xb6\xc2\x65\x3e\xf0\xa1\x5f\xe1\xf2\x1e\x85\x33\x68\x85\x7b\x59\xc0\xd4\x66\xc5\xdf\xed\x3c\x64\x0a\x58\x7f\x42\x13\xb4\xa2\xbb\x3a\x05\x02\xd5\x5f\x3c\x1b\x70\xd7\xc1\x6f\x7d\x01\xda\x5f\x3c\x1b\xe2\xbd\x8c\x63\x87\xb3\x22\x84\xe0\xd9\x10\x03\xf3\x53\xcd\x42\xfd\xc9\x4f\x6f\xfd\x97\x8d\x58\x51\x5a\xa9\x66\x7f\xc9\x42\x31\xf7\x9c\xa8\xf7\xf0\x5c\xd1\x63\x82\x5e\xc4\xc8\x4c\xd8\xf4\x74\x57\x3c\xa8\x58\x8b\x38\x01\xc9\xbd\x17\x27\x20\xec\x80\x16\x2e\x40\xc9\xbd\x37\xde\xf3\x03\x8b\xa0\x45\xb8\x80\x84\xec\x69\x11\x2d\x20\x21\x70\x5a\x91\x23\xa1\x30\xb7\xe0\xfc\x63\x26\xb4\x40\xf9\x4f\xa0\xd0\xaf\x08\x0d\x7d\xaf\x8c\x3f\x9b\x53\x84\x86\xbe\x57\x06\xe0\xaf\xf6\xc5\x2b\xba\xbd\x77\x6a\xae\x8c\x8e\x03\x5b\x69\xdd\xf0\x9d\x16\x39\xb2\x12\x24\xdb\x3e\x31\x00\x12\x80\xf5\x2b\x76\xe6\x67\xd0\x26\x78\x1e\x82\xe0\xad\x08\xcf\x83\xd9\xea\x8a\xfd\x4e\x90\x59\x46\xfe\xcf\xbf\x31\xf7\x59\xf1\xd2\x4f\xc1\x10\x74\xe1\x0f\x94\xd0\x40\xad\x38\xef\xc8\x02\x3c\xb3\xe2\xdd\xf7\x9b\x59\x2e\x5d\x15\x8c\x3b\x57\x9c\x36\x92\xf4\x4b\x29\xf8\xad\x2f\x1c\x89\x52\xb4\xce\x4b\x35\x48\xef\x56\xbc\x9c\x13\x86\x37\x2b\x2e\x3f\xa4\xd7\xeb\xe1\x78\x31\xfd\xbd\x59\x28\x6f\x23\xb7\xb1\x89\x97\xa3\xc2\x16\x67\xe1\x70\x84\x45\xcc\xc2\xc3\x28\x21\x1e\x5b\x38\x18\x61\xe7\xb2\xe2\xbd\x01\x14\xec\x0f\x17\x11\x02\x9a\x8b\x16\xc6\x09\x8c\x92\x85\x9f\x51\x41\x8c\xbb\x08\x15\xd0\x5c\x91\x97\xf2\x4a\x75\x2d\xdd\x83\xa6\xb9\x0a\xef\x51\x92\xd0\x9d\xad\x08\x15\xba\x95\xc5\x7b\x8f\xc0\xae\x64\xc5\xd7\xc6\xfa\x6e\x29\x54\xfa\x22\x65\xfa\xd1\xb7\xb7\xf2\x6e\x3a\xb2\x2a\x8e\xdd\x78\xe9\x10\xa3\x8d\x15\xb9\xb3\xa3\x64\x5b\x04\x1d\xc0\x2e\x63\xe1\xae\x84\xe8\x6d\xa5\x5f\x43\xc8\x65\xf2\xad\x9f\xbd\x29\x05\xe6\x8a\x2d\x06\x77\xa4\x84\x34\x6f\xa5\x4b\x6f\xb8\x38\xaf\x74\xc9\x2d\xa1\xa6\x5b\xe9\xd2\x15\xb6\x0b\x0b\xaf\xa4\x84\xc2\x6e\xe1\x87\x94\xd0\xd7\xad\x14\x99\x15\xf8\x1b\xe2\x12\xa4\xc4\xb4\x24\x78\x31\x80\x2e\x16\x21\x0a\x30\x74\x58\x49\xa1\x18\x53\x44\xb0\x82\x44\x5c\xc0\x85\x8b\x51\xc2\x21\x77\xe1\x47\x54\xb0\xe3\x5a\xe9\x12\x16\x16\x0a\x2b\x41\x58\x08\x05\x57\x82\xab\x02\xe0\x7c\x25\xb8\xa7\x66\x57\x2b\x63\xc7\xf1\x98\x6a\xfb\xcf\xbf\x51\xf1\xaf\x54\xa9\x15\x56\x23\xd5\x71\x93\x69\x2f\x97\x66\x94\x83\x2b\x5d\xfa\x6a\x36\x17\xf2\x72\x2d\xa6\x6a\xbb\x78\xbf\x9c\x14\x0a\xf7\x45\xfc\x83\x84\xf2\x70\xa5\x4b\x5d\x88\xff\x16\xf1\x0e\x8a\xeb\x28\x75\x9b\xe2\xbb\x15\xd1\xa3\x7b\xc6\x15\x57\x0c\x9e\x4c\x20\x22\xaf\xd4\xad\x88\x1e\xc1\x6c\x61\xd7\xb4\x12\xd2\x30\xa4\x98\x2b\xdd\x43\x0e\x30\xe4\x95\x10\x82\xcb\x0e\xe1\x02\x85\x16\x7d\x11\x3c\x21\x25\xbf\x1c\x94\x92\xcd\x62\x29\x74\xe3\x9e\x60\x08\x1d\x57\xe2\x04\x93\x79\x4a\xf3\xb6\x85\x03\x07\x5f\xa7\x84\x37\xf1\x4a\x8b\x91\xe6\x34\xc3\xed\x29\xa5\xfc\x37\x50\xea\x95\xb8\xfb\x7c\xeb\x09\x12\x4e\x36\x63\x53\x35\xe5\x6e\x66\x8d\x7d\x3a\x5d\x7e\x0e\x15\xf8\x4a\x9b\x86\x42\x37\xe9\x9e\x92\x28\xc3\x17\x81\x17\x12\x42\xce\x45\xa8\x85\x82\x21\xc7\x4a\xa7\xdd\x2c\xe6\x86\x57\x74\xbe\xcf\xb8\xc9\xe6\x66\xe8\xe1\xc5\xd3\xa5\x72\x34\xcb\x8b\xa8\x0c\x09\x39\xe8\x4a\xe7\xdc\x64\x5e\x1f\xaa\x64\x42\x1e\x76\x0d\x09\xeb\x72\x86\xdd\xd5\x76\x89\xb9\xbb\xd8\x5e\x66\x9b\xed\x3d\x5d\x42\x45\x65\xbc\x32\xb2\x6b\x54\x8b\x2b\xff\xee\x1c\x58\x25\xee\x57\x68\x88\x57\x96\xf4\x18\x9f\x1c\xf8\xb2\xf0\x4a\xe7\xa1\xb7\x7c\x49\x0f\xad\xf1\xca\x92\x1e\xf4\x83\x73\x56\xc1\xd5\x77\xe5\x7b\x74\xa1\x9f\x5d\x78\x66\x25\xdc\x8e\x57\x96\xc4\x38\xe9\x09\xc9\x50\x50\x18\xae\xcc\xa5\x1a\xbd\xe4\xca\xdc\x89\x50\x0a\x2e\x22\x35\x24\x60\xf7\x57\xe6\x86\x8d\x34\x75\xe5\x42\xf1\x14\x23\xe9\x31\xe4\xc4\x61\xc0\x3b\x78\xe1\x9a\x95\xd0\x5a\xae\x5c\xef\x60\xa0\x48\x5b\xc4\x60\x40\x6d\xbb\x32\x17\x14\xdc\x58\x57\xae\xe5\x26\x53\xb6\x94\x07\x15\xe6\x4b\x79\xa5\xdb\xbd\x4b\x7a\x48\x8a\x57\x96\xf2\xa0\xc8\x8c\xec\x19\x49\xed\xc2\x69\xab\x74\x3f\x45\xc8\x8c\x90\x75\xe5\x7b\x9f\xc1\xe9\x78\x65\xae\xf8\x08\x5c\x57\xbe\xe7\x1a\x1a\xe0\x95\x3b\xbd\xe8\x66\x61\xfe\x39\xe0\xb3\x44\x03\x19\x12\x95\x01\x91\xf4\xca\x83\xa1\x86\x50\xf2\xb8\x4b\x04\x82\xc8\xf7\x5c\x03\x74\x78\x65\xe4\xcd\xc8\x4b\x17\xa1\x19\xc0\x11\x5e\x79\x32\x2c\x1c\xb7\xf9\x52\x15\xea\xdf\x45\x20\x86\x94\x2c\x6f\xdd\xa1\x80\x26\xf2\xba\x53\x34\x5c\x3a\xf7\x2c\x03\x24\x78\x11\x8f\x21\xa1\xcc\x5c\x44\x60\x40\x4f\xbb\xf2\xa5\x20\xb4\xb4\x2b\x43\x1e\x70\xdc\xd9\x13\x8e\xbb\x48\xbe\x27\x5c\xc1\xdf\x6e\x65\xc9\x86\x63\x3a\x73\x39\x1a\xce\xca\xa1\x7a\x1a\xcb\x8a\x87\xcd\xcd\x8f\x0a\x0b\x0a\x7f\x1e\xee\x3f\x94\x78\x59\x47\x1c\x89\x57\xbe\xe7\x57\x19\x36\xe5\x9e\x5f\xdd\x35\xfc\xde\x56\xb9\x6e\x51\xe2\x78\x57\x21\xb8\xc2\x37\xb1\x48\x96\x11\x16\x2f\x22\x2b\x74\xd6\x6a\xb9\x17\xa4\x32\xbe\xf7\x85\x62\x24\xf2\xce\xdd\x8a\x35\x5c\x10\x25\x00\xd3\xbf\x0a\x34\xc4\x71\x40\x40\x84\x82\x87\xd4\x2a\x91\xec\xcc\x6c\x89\x66\xff\x9b\x78\x6a\x95\x7b\x72\x21\xda\x5f\x84\x50\x48\x88\x8c\x57\x49\x5c\x08\xbb\xef\x77\xe0\xd9\xf1\x09\x9f\x90\xf0\xd4\x5e\x85\xcb\x16\xde\x50\x8b\xa8\x08\xc9\x9b\x54\xb9\xd4\x53\x70\x72\x5a\xa5\xdc\x4e\xb2\x06\x88\x95\x90\x10\x37\xaf\x02\x51\xb1\x06\x08\x94\x50\xc1\x3a\x5c\xa5\xa2\x14\x62\x17\x28\x2c\x76\xbc\xb8\x57\x69\x74\x86\x13\x95\xb0\x06\xdd\x11\xbc\x8b\x1a\x68\xdd\x45\x78\x02\x94\x00\x8b\x78\x04\xc3\xf1\x9b\xa4\x52\x1c\x97\x17\x24\xd3\x0b\x3f\x42\x70\x73\x57\xb9\x5b\x7f\xfd\x39\xf2\x93\xbe\x71\x10\x97\x7b\xfd\xae\xc0\xc7\xad\x72\x97\xe3\xb0\xf2\x4d\x1f\x38\x9f\xcb\x5d\x8e\xc3\x02\x37\x7d\x70\xb0\xee\x06\x0c\xe2\xeb\x2a\x68\x18\xf1\x16\x5f\xf8\x07\x26\xc4\xde\xab\x1c\x2a\xe2\x1c\x2e\xcf\xbc\xf7\x5b\xf6\xee\x82\x8e\x11\xe7\xf0\x55\xee\x9d\x05\xac\xd8\x55\x1e\x7a\xcf\x11\x5a\x5e\xd4\x59\xec\x3b\xe5\x45\x87\xc5\x59\x59\x91\x3f\x21\x04\x5f\xf5\x47\xb5\x2c\xf1\x8a\x8e\xc1\x2b\x66\xbd\xf7\x93\x8a\xe8\x7f\xd5\x70\x1b\x4f\x31\x35\xa8\x5a\x4b\xbc\xd3\x78\x4a\x64\x17\xc6\x31\x7b\x11\x9a\xa0\x02\x32\xb6\x6a\x4c\xff\xf9\xf7\xb0\xc0\xbb\x23\x57\xa4\xed\xab\xc6\x72\x93\x79\xbd\x3c\xcf\xf0\xc3\xbb\x72\x80\x7e\x5d\x04\x24\x48\xf9\x7b\xb7\x85\x54\x8f\x2e\xde\x1b\x6e\x2d\x0c\x06\x8b\xb9\xb2\xab\xe2\xd7\xbd\xea\xbd\x40\xa0\x9c\x58\xf5\xee\xa4\x00\xc3\xae\x8a\x56\x0e\xff\xee\x55\x2f\x6b\x33\x6c\x60\xab\xf7\xae\xcf\x02\xa8\xf3\x36\xc5\x1c\x93\xa9\x2b\xbe\x53\x08\x2d\xe4\xae\xeb\xb5\xbf\xde\xcb\x6e\xc2\xef\x7a\xd5\xbb\x5e\xf0\x68\x5d\x15\xb6\x1d\x0f\xec\x55\x27\x72\x07\xbb\x7c\xd7\x0b\x9e\xa9\x0b\xcf\xc0\x1a\x6d\xec\x0a\x37\x99\x16\x22\xd1\x47\x00\xbf\xea\xbd\x03\x03\x2e\xbb\x70\x03\x4c\x08\xe0\x57\x45\x28\x8a\xab\xf6\x22\xf6\x00\x90\xb3\xab\x1e\xe6\x96\x4d\xa3\xde\xdd\x06\xf0\xd9\x55\x5f\x72\xd0\x07\x64\x95\xb8\x4e\xaf\xfa\x52\xf6\x6d\x77\xfb\xdd\xa9\x92\xb5\x6e\xc8\x2a\xf1\xa1\x5e\xed\x6e\x25\x38\xbe\xae\xe6\x4e\xc2\xe9\x86\x0b\x60\x42\x78\xbe\xf0\xf3\x4b\xf8\x45\x2f\x42\x00\x24\x3c\xa1\x57\x8b\x7c\x4a\x72\x42\x8e\xc1\x68\xe1\xbb\x97\x10\xaa\xaf\x76\x77\x0b\xf4\x25\x8b\x10\x01\x09\xe7\xe8\xd5\xd2\x44\x4a\x42\xe9\x69\xfd\xe7\xdf\x38\xc1\xae\xc6\xad\x52\xee\xa6\x65\x86\xa8\xfd\x55\x42\x85\x3f\xdf\xb0\x41\x77\xc9\x0c\x2b\xe6\x48\xc6\x93\x7a\x35\x96\x06\xdb\x54\xab\x34\x82\xab\x21\xce\x76\x38\x97\xae\xd6\x18\x1c\xb3\xb4\xdb\x64\x48\x16\xd7\xba\x9a\xbe\x2c\x77\x1d\x73\x85\x6d\x8d\x15\x68\xee\x7b\xac\xe2\x1f\xba\x1a\x8a\x9f\x6c\xee\xcb\xa2\x56\xb7\xf9\x86\x11\x0d\x10\xb0\xab\xcd\xdb\x71\xb7\xc3\x86\xcb\xfc\xef\x7b\x67\x58\x2d\x1e\xd0\x59\x7c\x27\x17\x21\x01\x2a\xc1\x47\x56\xc3\xca\x1d\x2f\xc8\x05\xb8\x7f\xca\xd6\x0b\xf0\x14\xce\x8d\x0b\xaf\xb8\xaa\x6c\x09\xcc\xff\x80\x6b\xe3\x6a\xf7\x5c\xac\xee\x20\x0d\xab\x62\x54\x48\x0b\x5f\xb9\x80\xde\x68\x35\xec\xc9\x70\x6b\x5c\x60\xfd\x27\xf4\x07\xab\x01\x1e\x05\x32\xec\x6a\xf7\x50\xab\xae\x4a\x5c\xde\x12\x41\x3b\x97\x1e\x6f\x38\x24\xae\xfe\x63\xfe\xd9\xdb\xfb\x8f\xf6\x57\xd3\x69\x33\x9b\x3b\x18\xff\x15\xcf\xff\xd5\x31\x4f\x50\x96\xa3\xd7\xdb\x2f\xf9\x0e\x05\x70\x6a\x77\x6c\x88\xf1\x3d\x5c\x3d\x30\x86\x0c\x7f\xc7\x28\x15\xe8\xd5\x85\x27\x5b\x52\xb2\x03\xb6\x7f\xfd\xbe\xe5\x1e\x85\xbe\x62\xf5\x84\xa8\x8c\x79\xe9\x98\x14\xe0\x1a\xbe\x70\x62\xab\xdf\xb7\xf8\x4d\xfc\x20\xd4\xce\xe6\x44\x54\x80\x05\xf6\x7f\xf8\x41\xa9\x1d\xa3\x02\x1c\xc1\x57\xc7\xc8\x15\xbc\xd5\xd5\x4b\x44\x70\xc6\xb7\xc4\x00\x02\x7a\x75\xe1\xf0\x56\x15\x18\xe1\xef\x96\x80\xf6\x5f\xbd\x5a\x57\xe3\xbd\x93\xee\xfb\xe2\x9d\x76\xd6\x07\xa9\x9b\xef\x8c\x33\xac\x04\x78\xff\x55\xe1\x50\x6f\xb4\x81\x6d\xa1\xdf\x55\x9b\x70\x38\x5f\xbd\x21\xb1\x4b\xe6\x67\x6c\x11\x49\xf5\x4e\xfb\x6d\xcf\xbd\x7d\x55\xa5\xf4\xa2\xfe\x63\x23\xb5\x3a\xd0\x11\x1e\x75\x1d\x1e\x10\x35\xca\xea\x9c\x98\xf8\x89\x2f\x9d\xe5\x7e\xce\xa3\xeb\x19\x4a\xc6\x3b\x2e\xe1\x3e\xbe\x44\xf8\xc7\xa8\x6a\x75\x36\x3e\xf0\xf0\x17\x7e\x72\x15\x84\xeb\xd5\x97\x65\xd2\x7e\xd7\x39\xdb\x10\x7e\x71\x15\x1f\xe7\xd5\xb1\x91\xc4\x24\x6a\xe1\x22\x97\xd4\xc2\x74\xd7\xbf\xe5\x80\xa3\x82\xf1\xd3\x22\x4a\x40\xc2\x6b\x7d\x75\xd7\x39\x42\xaa\x0e\xd7\x07\x8a\xfe\xea\xae\x79\xb6\x89\xce\x49\xac\x68\xae\xe3\xb7\x84\x25\xd3\xea\xe7\x8e\x7f\x75\x0d\xe0\xb5\xf4\x73\xed\x3d\x88\x09\x61\xbc\x8c\x21\x80\x55\xd3\xea\x84\xc6\xf0\xd0\x27\x82\x40\x2a\x7f\x05\x45\x5e\x5d\x22\x63\x03\xe8\xaf\x0d\xa4\x51\xef\x44\xb8\x49\x43\x70\x38\xc5\xd4\x68\xf5\x17\xd1\xa5\x03\x0c\x06\x15\xda\xca\x35\xb8\x5d\x29\x19\x1c\x3f\x24\xa0\x0c\xd2\x80\x28\x15\x07\xe2\xea\x57\x95\x7a\x13\x94\x20\xa0\xd1\x5c\x03\x5e\xc1\xc5\x32\x70\x79\xc2\x87\x71\x8d\x50\x91\xa4\x36\xde\x99\xa8\xef\xdd\x3c\x89\xf7\x41\xfa\x1d\x60\x5d\xfc\x30\x49\x5a\x83\xf3\x42\x3d\xd2\x88\xd6\x45\xbd\x18\x0b\xa9\x48\x1a\xf7\xc0\xa8\x98\xf1\xad\x21\xf1\x41\xa0\x03\x41\xbd\x7a\x22\xe3\x0b\x60\x22\xb4\x06\xb0\xbd\xd8\x02\x2d\x42\x0d\x24\x95\x43\x23\x33\x51\x9c\x53\x03\xc7\x12\x8c\x81\xd6\x90\x58\xb9\x0a\x0c\x88\x15\x13\xa0\x85\x1f\x5f\xc0\xd8\x66\x11\x64\x20\xa9\x2a\x22\xc6\x40\xc0\xc2\x66\x11\x48\xa0\x56\xc7\x01\x9f\x51\x14\xa9\x6b\x54\xc6\xdf\xbe\xe3\x9b\x8d\x5d\xcd\x1a\xc4\x97\xc1\x6d\x71\x0d\xce\x09\x00\xfb\xd7\x80\xf8\xf0\x60\x5c\x03\xae\x15\xec\xfe\x35\x24\x44\x36\x95\xd1\x2b\x02\x66\xca\x07\x29\x0b\x83\x9b\x35\x3a\x62\x65\xcb\xef\x96\x49\xf9\xf7\x92\x56\x71\xdb\x5b\x63\x30\xce\x6c\x36\x03\xc2\x0d\xce\xbb\x84\x0b\x67\x30\x06\x1b\x9e\xe3\x3c\xee\x86\x87\xaf\xdb\x1a\x33\xf2\x4e\x99\x70\x43\x40\x14\xac\x71\xb9\xa1\xaa\x34\x10\xf7\xc3\x04\x5a\xc1\xc2\xad\x30\x60\xcd\xb2\x06\x32\x4a\xa5\xbc\x63\x59\x2f\xe3\x8c\x99\x9f\xda\xae\x21\xb1\xb2\x39\x8d\x4b\xac\x15\x2c\xc5\x35\x70\xe1\xc6\x40\x65\x8d\x7b\x58\x55\x1c\xbd\xd6\xc0\x92\xa8\x54\xd3\x11\xba\xbb\x06\x20\xee\xe0\xda\xdb\x48\xdd\x9d\xf7\x4b\xd0\xb5\x39\xbf\x10\xb4\xac\x27\xf1\x0a\x6a\x73\x6c\xd1\x0c\x10\x93\x60\x8d\x87\x71\x76\x0c\x51\xf8\x12\x77\x60\xe1\x78\x18\x82\xe3\x03\x6f\x0d\x06\xc3\x1a\x2f\xf9\xed\x0b\x74\xa7\xb0\x0e\xef\x41\xe3\xd0\xaf\xf1\xda\x5f\xda\xf0\x32\xb6\xb4\x7f\x42\x5f\x58\x09\x2c\xdd\x08\xb1\x12\x58\x93\x03\x0d\x15\xfe\xc2\x6f\x30\x15\xf3\x04\xe6\x82\x0d\x8c\x30\x06\xa9\x7c\xf9\x99\x0b\x36\xb0\x89\xa7\x0c\x7a\xfe\x85\x67\x61\x2a\x5f\x39\x6c\x60\xa6\xc3\x61\x29\x71\x99\x58\x27\x10\x71\x60\x11\x7e\x20\x60\x00\xb0\x26\x77\x36\xd5\x8a\x3a\x0b\xe2\x82\xb7\xa6\x87\x9e\x79\x00\x55\x08\xb6\x27\x5b\xe6\x5f\x85\xf1\x33\x5b\x30\x85\xe1\xd0\x4d\x04\xfa\x45\x18\x82\x54\x2c\xac\x56\x74\x12\x34\x0a\x71\x87\x8a\xcc\x29\x91\xb1\x49\x4c\x88\x4c\xa1\xc5\x44\xde\x41\x70\xe0\x35\x81\x3c\x50\xd7\x4e\x64\x82\xaa\xac\x60\x36\xca\x61\xd7\x26\x14\x41\x55\x14\x40\xbc\x81\xaa\x2c\xc0\x70\x03\x2a\xc4\x27\x84\xe5\x45\x7f\x22\xfd\x28\x5c\x31\x26\x08\x4a\xc4\x4d\x5f\x13\xc1\xa3\x27\xd0\xc4\x6a\x1a\x17\xbb\x45\xa0\x81\xea\xed\x7d\x22\x3e\x04\x55\x63\xcd\x89\xf2\xc2\xc9\x9f\x0c\x24\x1b\x33\xb1\x08\x2a\x38\x60\x6b\x4a\x64\x6c\xba\x13\x22\xc3\xf8\x6e\x11\xa2\xa0\x7a\x7f\xc7\xdb\xb1\x02\xee\xb5\x26\x5c\x60\x77\x92\x11\x93\xa8\x7a\x9d\x8b\x3c\x4e\x14\x5e\x07\x2a\xa9\xf1\x7a\xac\xdd\xf1\x27\xea\x87\x5a\xea\xb9\x68\xb3\xe3\xcf\xfd\x42\xfd\xec\xdc\xb6\x87\xfc\x38\xa5\xa8\xbd\x9e\x98\xd6\xaa\x0c\x99\x97\x83\x34\xf2\xf9\x22\x0e\x41\xf5\xf6\x3e\xcf\x25\x20\x4f\xc7\x09\xac\xb7\x2a\x6b\x22\x12\x24\x4f\xc7\x89\xe4\xa4\x3a\xe6\x18\xfc\x54\xc7\x16\xff\x01\x75\xd9\x44\x23\x08\x2a\xad\xf1\x72\x4c\x40\x6f\xac\xf5\xb3\x4c\xdf\x13\xe9\x8d\x77\xbf\xf5\xfd\xf6\xcb\x4b\xe6\xba\x5c\xa3\x81\xcf\x17\x6e\x90\x15\x34\xa4\x45\xd4\x81\xa0\x1e\x79\x71\x70\x81\xee\xba\x16\x07\x17\x90\x1d\x8b\xf8\x03\x21\x5a\x0e\xd7\x5c\x00\x3b\x96\xd1\x07\xa2\xe5\x70\x70\x11\x6e\x60\x2d\x22\xc7\x46\xb8\x52\x9c\x24\xab\xf7\xb8\x85\x1f\xaf\x9a\xe7\x75\x2f\x49\xd5\xcb\xdb\x42\xf6\xa2\x2a\x88\x80\x04\x95\x28\x1e\x6b\x01\x0f\x85\x03\xe0\x22\x36\x41\xf5\x42\x86\x47\x65\x52\x47\xb4\xe0\x50\xc1\x21\x5a\x0b\x35\x1b\x58\x20\x8b\x50\x04\x15\xf3\xb4\xb5\x70\x6d\xc3\x39\x6f\xe1\x73\x59\xbd\x7a\x19\xa1\x40\xed\xf3\x82\x88\xc1\x26\x5a\xb8\x62\x26\x95\xe8\x04\x2e\xa8\x20\x13\xad\x85\xaf\x2f\xae\x7c\x6b\x71\xa8\x7a\x3f\xc3\x41\x33\x81\x27\xb2\xf4\xcf\x8c\xf6\x17\x03\x5a\xa0\x45\x96\x61\x0e\xd4\x40\xaf\x6a\x3b\x69\x03\xde\x10\x6a\xa0\x57\xbd\xb4\xe0\xd5\xcb\x40\x06\x2a\x8f\x57\x75\x7c\x78\x6f\x7e\x4b\x1b\xe0\x68\x65\x82\x56\x7b\xd0\xb8\x31\x3e\xdd\xba\xc8\x03\xfd\xaa\xfe\x32\x4e\x81\x2a\xe6\x75\x0f\xcc\xf6\x73\x7e\xa5\x6b\xc7\x56\x5a\xae\xf1\x6f\x9b\xd9\xe2\x04\xad\x2e\x34\x5c\xfa\xd5\x2f\x13\xcb\xa0\x79\x5d\x5a\x44\xb7\x54\xc1\xbc\x26\x03\x03\xa1\x2f\x4e\xcd\xea\x62\x84\x55\x56\x23\x8c\x9b\x68\xaa\x2e\xc6\x69\xa3\x28\x7f\xf9\x2d\x8d\x5d\x7e\xcb\x20\x5d\x56\xb9\x81\xa9\xb2\x16\x28\x42\x2a\x79\xd7\x65\x95\x1b\x20\x2a\x0b\x9f\x52\xe3\x9d\xaf\x75\xd9\xe6\x06\x50\xca\x5a\x10\xb7\x96\x0a\x4b\xe2\x6e\xbe\x33\x69\x2e\x6a\x89\xbb\xf9\xce\x40\xba\xa8\x31\x9c\xaf\x2e\x64\x54\x0f\x72\x81\x0b\x35\xa1\x57\xa1\x05\xc2\x8a\x6a\x61\xdc\x52\x9b\x57\xa1\x05\x42\x80\x7a\xe1\x75\x2c\xd3\x77\xfa\xcb\x46\xbe\x30\xf7\x25\x14\xc2\x5a\x6e\x1e\x6c\xde\xcb\xcd\x43\x82\xc0\x70\x50\x85\xe3\xc2\xc7\x1f\x38\xde\xb5\x1e\x16\x42\xf3\x9d\xb6\x21\xe6\x59\x97\x93\x6e\x5e\x1f\x16\x9e\xff\xd1\x85\x86\x0e\x51\xad\xe4\x72\xb3\x81\x45\x5f\x5c\x5d\xf1\x57\x5c\xdb\xcd\x86\xc3\x6a\x63\xa8\xa2\x8a\x72\x03\xec\xaa\x76\x7a\xff\xd0\xe1\x52\x26\xee\x2d\x49\xd3\x0b\xbc\x61\xdb\xef\x2b\xe7\x21\xdd\x77\xca\x67\xc3\xc6\x15\x36\xa9\xd3\xdc\x6e\x48\x6c\xc0\xf8\xc0\x24\x30\x58\xd6\x8e\xcc\x35\x9c\xe5\x8e\x94\xe9\xb7\x6c\x2a\x2a\x1e\x77\x74\x4c\x06\xef\x87\x74\xf3\x33\x26\x5f\x99\x8c\x09\xdc\xe7\x4e\xb4\x99\x0d\x7e\x03\xeb\xa9\x16\x72\xdf\xd3\xbd\xc9\xe9\x12\x4d\x23\x69\xf4\xa1\x5b\xac\x6a\x3d\x42\x61\x04\x95\x73\x38\xc2\x24\x2d\x40\x76\xb9\x75\x61\x3b\xbd\x36\x4e\x50\xaa\xdb\xf0\x95\x6d\x72\x9f\x86\xc4\x50\xdf\xb6\x25\x68\x38\xd1\x8d\x7e\x50\x8e\x7f\xc3\x0d\x03\xf8\xb2\x76\xb7\x0d\xd4\x75\x0f\xea\x86\xbd\xea\xc2\xd5\x25\xa8\x9f\x23\xc8\x45\x52\x47\xbb\x71\xde\xc6\x11\x70\xed\x8e\xce\xdb\x72\xb4\x8b\x67\x03\xd8\xa3\xa2\x2e\xa7\x6d\x97\x4e\x1b\xf6\xa3\x6b\xa3\xa3\xaf\x5f\x3a\x63\xe8\x3c\x0e\xfa\x05\x8d\xef\xc9\x9a\x31\x3f\xba\x7b\x40\x17\xd6\x86\xc6\x35\x85\x22\x9a\x46\x03\x0a\x61\xe1\xc5\x62\xfc\xe9\xb5\xa5\x3b\xf6\x01\xdc\x55\x0c\x45\xbd\xf4\x51\xd1\xea\x64\x6f\xea\x82\x71\xd8\xc7\xba\x68\x3f\x34\x95\xcc\x83\xd1\x3c\x90\x2f\x0b\x8f\x15\x63\x48\xaf\x8d\x93\x5f\xfa\xd2\xa1\xaf\xfa\x57\xce\xcc\x90\x1c\x78\x0c\x2c\x82\x70\x24\x0d\x5a\x70\x68\x69\x72\x45\x7a\xb4\x10\xde\x61\xe1\xd1\xd2\xe4\x84\x70\x69\x49\x5e\xaf\xf4\x51\x51\xad\x8d\x8f\x8a\x61\xa5\x17\xae\x26\x4d\x6e\xe3\x10\xe2\x4e\xa1\xda\x41\xc7\x2e\x57\xa1\xf7\xb2\x52\x35\x9c\x97\x9b\x5c\x05\x51\x38\x52\x6d\x7e\xfb\x90\xee\xb7\x2c\x64\x36\x8c\x03\xdb\xac\xea\xea\xc0\x36\x6b\x3f\x43\x9c\x0e\xc3\x3a\x2f\x5c\x52\x9a\xa7\xf8\x21\x9c\xbb\xba\xab\x83\x7c\x48\xa3\x95\x93\x2d\x87\x32\x33\xa7\xac\x79\x32\x86\x0e\x4c\xfe\xe1\x9a\xa9\x9e\xea\xc0\xd1\x56\xf3\x4b\x10\x10\xe8\x29\x8c\x9b\x7d\x47\x30\x0d\x96\xcd\x3a\xc5\x6f\x2b\xef\xf4\x0b\x6e\xcf\x40\x21\xea\x90\x74\x1e\xf1\x6a\x79\x08\xf1\xa8\xbc\x10\x9f\xe7\xe4\xd5\xf2\x34\xf3\x53\x6f\x33\x3f\x7d\x6c\x8c\xb3\xdf\x4a\x4c\x10\x3d\xee\x26\x2d\x7e\xdf\xb2\x28\x6c\x43\x67\x71\x59\x6f\x4f\x58\x6a\xd0\x4e\x62\x41\xab\x54\x3a\xdd\xf6\xd3\x06\xec\xc8\xaa\xf5\x42\x58\x4a\x8e\xcf\xc0\x9c\x83\x0d\x43\x2f\x13\xfc\xcf\x16\xa1\x43\x0c\x6b\xbc\x88\x1c\x92\x80\xa3\x59\x78\x9f\x18\xe1\x78\xe1\x3c\x9d\x9a\xe5\x80\xf8\xa5\xd6\xe5\xcc\x07\x13\x11\xdf\x5f\xf2\x50\xce\xb2\x4c\xda\x80\x3c\x49\xcb\x19\x5d\xad\xd5\xb5\x1c\x64\x45\x6a\x52\x74\x5d\xd1\x2e\xe2\x2c\xeb\xe2\x5b\x10\x6d\xd4\xb0\xe0\xa4\xd2\x70\x4c\x5a\xe7\xf8\x2d\xed\xc1\x34\x58\x8b\x19\xdc\x51\x8c\x89\xbc\x74\x3c\xd1\x64\xe6\xe0\xc3\xaf\xba\x05\x67\xeb\x86\xb7\xed\x3a\x5c\x21\x9b\xed\xfc\x6c\x59\x18\x13\x9c\xf9\x55\xc9\xe0\x74\x12\x54\xc9\xe8\x74\xd2\x6c\x3f\x1c\xb0\xea\x99\x03\x4d\x69\x93\x73\xa0\x29\x55\x35\xcf\x8f\x31\x6f\xbe\x27\xd2\x33\xef\x99\xf4\xc8\x3b\x6d\x63\x83\xc4\xab\xc4\x80\xc8\xeb\xe1\x0a\xe9\x35\xff\x09\xb4\x19\xda\x79\x30\x26\x23\xb6\xc4\xc2\x87\xbb\x69\x55\x49\x8c\x12\xa3\x24\x2f\xfc\x4a\x1a\x5e\xae\xeb\x01\x84\x52\xa5\xcb\x03\x7d\x49\x53\x4f\xb4\x7c\xbe\x8d\xb4\x07\x1a\x79\xb0\xb1\xd7\xd2\x03\x9f\x94\x86\x67\xcd\xd2\x27\x05\x37\xbf\xf5\x70\x88\xe1\xcf\xb7\x8c\x80\x82\xbb\xc3\xc2\xfb\xa4\xe5\x5f\xfa\xdb\x66\x86\x6f\x4a\xd2\x0e\x04\xdf\x94\x86\x73\xcc\x22\x1a\x8a\x21\x98\x17\xfe\x28\x46\x53\x5e\x4f\xc6\x42\x08\xf6\xf5\xc1\xbb\x17\xc4\xdd\x85\x2b\x49\x73\x11\xe1\x4b\xd2\x5c\x2c\x0f\x32\x21\x2d\x93\x9e\xcb\xb2\x26\x30\x6e\xd6\x53\x13\x79\x18\x24\x08\x1a\x17\x87\x45\x40\x94\xf6\x4d\x1a\x1e\x24\xc0\xe0\x2c\xbc\xdf\x53\x73\x42\x1a\x9d\x73\x02\xdb\xcb\x3b\xe5\x03\xa2\x0a\x40\xec\x7a\xb0\x37\x26\xe8\xc5\x7a\x24\xd0\xe6\x3b\x6d\xe3\x94\x7a\x50\x2a\x64\x27\x07\xce\x32\x3b\x21\x5c\x0f\x01\xd9\x59\x0f\xd6\x95\x5a\xb8\xe8\x2c\xae\xb0\x1e\x57\x6f\xe3\xf8\xae\x07\x33\x0e\xd0\x76\xd6\x83\xad\x96\x42\xe1\x07\x93\xc9\xe6\x42\x40\xa0\xa9\x70\x1c\xd7\x8d\xa4\xfc\xe6\x61\x51\x2b\x58\x27\x40\x49\x53\x66\x89\x27\x78\xd2\x14\x0b\x47\xf0\xa6\x3c\xf2\x05\x53\x49\x81\xfb\x8b\xa0\x1f\x17\x81\xf5\x86\x89\x01\x56\xe7\x9d\x72\xfc\x96\x2b\x98\xf2\x1b\x7c\xbb\x9b\xb2\xb4\x17\x99\xa2\xf2\x9b\x17\xe3\x0f\xad\xb7\xf0\x9c\x30\xc6\xec\xd2\x45\x82\xb0\x16\xeb\x65\x0d\x00\xa0\xba\x70\xe4\x6e\x1a\x41\xbf\x08\xe8\x71\x19\x58\x44\x27\x69\x5e\xe1\x5f\x00\x8d\x14\x76\xbf\xe8\x91\x08\x82\xb1\x70\xa4\x68\x1a\x43\xe3\xe9\x9d\x94\x09\xbd\x38\x07\x2a\x13\x7a\xb1\x25\x54\xf6\xf3\x62\x7e\x01\x1a\xcd\xc2\xc7\xda\x50\xb4\xeb\x75\x23\xe4\xe4\x36\x6a\x88\x82\xf2\x17\x21\xb5\x42\x6d\x22\x83\x24\x90\x5f\xd6\x7b\xee\x98\x80\x16\xb6\x5e\x04\xd0\x8e\xf3\x8b\xc9\x9d\x1b\xf0\x8b\x00\xfa\x1b\xe7\x07\xe2\x63\x63\x20\x40\x48\xd2\x1a\xe8\x85\x4b\xc6\x04\x68\xe3\xa2\x90\xb0\xf3\xda\xb8\x11\x04\x64\xc3\x5b\x37\x02\x0c\xbd\xb6\xa1\x30\x90\x07\xef\x5f\xb1\xfc\xc4\x3b\xe3\x99\x28\xc7\xf1\xb9\xeb\x73\x63\xb3\x6f\xa0\xd7\xad\x71\x3e\xc0\x2c\x1b\xe3\x7c\x63\xbe\xee\x5f\x9d\x58\x83\x51\x0e\x4a\x0e\x2c\xc6\x36\xd1\x2c\x0c\x0c\xbe\x7f\xc8\x53\x91\x19\x6f\xcc\xf3\x13\xe6\x63\xfb\xe7\x18\x66\xdf\x99\xdf\x4e\x39\x00\x03\x63\xbb\xba\x7f\x97\x63\x33\xec\xf1\xc6\xca\x3e\x20\x3f\xde\x5a\xd9\x83\xe6\xb2\x7f\x40\x37\x20\x33\xde\xbf\x69\x1b\x7c\x7f\x78\xef\xf7\xfd\x1e\x26\xc6\x45\xde\xbf\xf5\xf0\x4e\x39\xdc\x9a\x00\x34\xd9\x04\x9c\x30\x42\xf2\xfe\xe1\x6e\x8c\xed\xd6\xfe\x21\xa7\x44\xd6\xb8\x7f\x87\x3c\xfd\x6f\xf0\x65\x1b\x43\xfb\x44\x84\x89\x6d\x20\x8a\x62\xe5\x8f\x05\xd3\x21\x08\xb1\xd8\x90\xb7\x62\xd5\x46\x87\x88\xdb\x52\x9c\x04\x94\xff\x58\x8b\xed\x1f\xa8\xb0\xc5\x49\x78\x27\xf9\x29\x13\x37\x2a\x4c\xc7\xf6\x8f\xc8\x42\xc5\x49\x80\x70\x81\x3a\xd9\x01\xf9\x0a\x72\xaf\x1d\x10\x5c\x12\xef\x73\x07\x4e\x17\xc2\x7d\x6e\xa3\x5a\x00\x3a\xbb\x03\x3b\x3e\x60\x28\x1b\xdb\xfc\x84\xdd\xd9\x0e\x71\x60\x4e\x47\x99\xf7\x3a\x93\x30\x3c\xdb\xe1\x5e\x67\x8c\x32\xbb\x03\xd7\x16\xe4\x34\x9b\xd8\x16\x09\x93\xb0\x1d\x52\x21\x9d\xf2\x09\xa2\x5a\x6d\x5b\x6a\xa4\x77\xde\x37\xe9\x94\x99\xe9\xe3\xdd\x24\x76\xc0\xf0\x04\xb3\xb5\x1d\x58\xbc\xc8\x4b\x36\xa6\xfd\x09\x1b\xb6\x8d\x69\xbf\xb1\x5c\x77\xe0\x10\x40\x9b\xbe\x03\xf2\x0c\x0c\xda\x36\x26\xff\xc6\x73\xdc\x01\x0e\x0f\xeb\xb6\x8d\xfd\x7f\x40\xb6\xb1\x43\xe5\xdb\x4a\xdb\x38\x04\x90\xa3\xec\xd0\x74\x7d\xa5\x7c\x38\x39\x94\x2e\x3b\xa0\x24\x40\x56\xb1\x43\x27\x3f\x73\x14\x88\x50\x00\xd4\xe8\xc6\x7a\xbf\x0d\xc7\x16\x59\x45\x75\xac\xb0\xde\xef\xb6\x07\xb8\x41\xae\xe7\x9b\xf8\x17\xc6\x30\xdd\x01\x48\x13\xae\xd5\x3b\x5c\xce\xcc\x70\xa6\x3b\x10\x4f\x98\x6b\xf5\x26\x44\x86\x91\x4d\x77\x98\xb6\xd3\xfc\x58\x4b\xb2\xc0\xb1\xf7\x37\x1e\xe1\xc6\xe0\x3f\x81\x9f\xb2\x31\xf8\x37\xf6\xe9\x0e\x88\x2f\xb8\x26\x6f\xac\xfc\x03\xd7\xe1\x1d\xd6\xc4\x3a\x91\xfc\xc8\x20\xb9\x0e\x6f\xcc\xfc\x0d\x44\xb8\xc3\xd6\x07\x98\xfc\x88\x20\xb8\x02\xef\x00\x31\x75\xc7\x67\x5b\x3e\x6d\xe3\x10\xab\xce\xef\xe7\x3f\x4c\x39\xa7\xde\xba\x22\xdf\x72\x15\xea\xbe\x73\xd0\x55\xe7\x97\x83\xae\x3b\xb6\x8f\xe5\xd0\x66\xb8\x37\x10\x55\x76\x80\xee\xb8\xa2\xee\xf0\x46\x4c\x27\x6f\x1b\x22\x62\x01\x7c\x09\x76\x44\x06\x89\xf5\xde\x8e\xd0\x08\x48\xa1\x3b\xfe\x30\xd2\xfc\xde\x19\xff\x7b\x4d\xdb\x38\x02\x18\xb0\x72\x47\xae\xfc\x5c\xe5\x36\x8e\x00\x46\xee\xdb\x38\x02\x18\x5f\x72\x63\xda\x6f\x0c\xbe\xad\xb1\x3e\x26\x81\x5b\x63\x7d\xe4\xe5\x3b\x46\xdb\x4c\x5d\x91\x71\x86\xf6\x23\x22\x02\xc0\x3d\x77\xbc\xdc\x55\x47\x83\xb9\x23\x22\x02\x6e\x56\x3b\x46\xe8\x82\x4d\x3a\x12\x07\xac\xfa\x6d\xd2\xb4\x93\x7e\x25\xfb\x48\xdf\x11\x17\xe0\x5f\xb0\xf5\x00\xe8\x7f\x8d\x58\xb8\x23\x36\x96\x58\x01\xee\x98\x99\x1c\x16\x66\xe4\x54\xc6\xae\x72\x47\x4e\x65\xbc\x12\x36\xc1\x41\x12\xc1\x45\x76\x2c\x56\x48\xe5\x12\x22\x0b\x2a\x4a\x88\x10\x04\x1e\x02\x81\x2b\xdb\x8e\xf8\x7b\x75\x27\xea\x72\x69\x06\xa9\xdc\x11\x20\x41\xae\x6c\x3b\x02\x2b\xce\x55\x6b\x47\x89\x32\x9b\x4e\x5d\xb6\xad\xdd\x09\xc4\xd3\x7a\x47\x50\x89\xb8\x3a\x6d\x02\x8a\x18\x35\x72\x47\xc2\xd7\x71\x8d\xda\x78\x0a\x24\x30\x5c\x36\x9e\x02\x46\x7c\xdc\x11\x21\x23\x3e\x01\x3b\x62\x9d\x0c\x9a\xcb\x8e\x10\x31\x68\xa0\xdb\xe0\x21\x9c\xe8\x3b\xe2\xff\x8b\x89\xe1\x8e\x63\x62\x03\x4b\xf9\xc8\x14\x39\xdd\x37\xfe\x04\x46\x4f\xdc\x11\x59\x05\xd7\xab\x1d\x0d\x63\xcc\x26\x17\xef\x15\xc9\xc0\x85\x3b\x1a\xb7\xd8\x71\x40\x43\x07\x9e\xcb\x8e\xab\x62\x35\x4b\xdb\x90\x23\xe2\x69\xb0\xe3\xc2\xf6\xb6\x9a\x9f\x30\xc7\x81\xbe\xa0\xc5\xeb\x5f\x99\x2f\x79\xc8\x8f\x46\xaf\x5b\x0e\xf2\x8c\xee\xb7\x87\xf1\x77\x01\xea\xf7\x6f\xfe\x4b\xb8\x46\xfd\xdb\x51\xc2\x95\x20\x0e\xe5\x57\xda\x76\x28\x9f\x43\x06\x67\x02\x43\xec\x6d\xbc\x09\x7a\x70\x3d\x3c\x6c\xde\x12\x16\x1c\x6a\x97\x98\x1e\xc6\xdf\xb5\xf1\xd8\x1e\xda\xfc\x30\xa7\x83\x72\x20\x68\xdc\x49\x77\x04\xee\xb9\x39\xa7\x58\xce\x75\x89\xef\x2d\xe4\x61\x2e\x80\x5f\x6b\x12\xfa\x4b\xf9\xae\x93\x97\x39\x62\x43\xc5\xb9\x20\x70\x2b\xd8\xc9\x78\xe6\x1c\x56\xe9\x87\x11\x30\xf3\x9b\xb0\xdb\xec\x97\x03\xdb\x09\xb9\x60\x87\x03\x4b\x88\x2f\xe4\x30\xf0\x3b\xe8\x88\x59\xb6\x31\x51\xd0\x84\xee\x14\xfc\x96\xf2\xd9\x18\xd0\x84\x6e\xc2\x9e\x74\x94\x3d\x5b\x6f\x03\xb9\x10\x3d\x0c\x08\xc1\xb2\x93\x07\x29\xc4\x9d\x32\xe5\xb3\x61\x24\xb4\xea\x84\x42\xd9\x29\x63\xc3\xcc\xba\x4d\xe0\x80\xc2\x55\xef\x84\xed\x1d\x41\x51\x76\x42\x7b\x4e\xa4\x93\x4d\x3c\x93\x44\x6c\x93\x9d\x8a\x79\xa8\x4b\x1a\x84\xd6\xf4\x1a\xe8\x8c\x39\x5e\x03\x46\x66\xdb\xb8\x0d\x18\xa9\x6e\x27\xbc\x6f\x3a\x73\x41\xbc\x13\x83\xd6\xed\xd4\x02\xf9\x29\xd3\xd8\xfc\xc5\x77\xc6\xd3\x71\x43\xab\x8e\xf2\x69\xe3\x50\x60\x50\xb9\x9d\xee\xad\xc9\x20\x6e\x3b\x21\x2f\x04\xe6\x64\xe3\x50\x90\xb0\x29\xdd\x86\x46\xc1\x5f\x62\x1b\x19\xe5\x72\xe1\x7f\xd9\xcc\x92\x27\x2e\x13\x4e\x04\x95\x1e\x6d\xf8\x25\xc4\x44\x94\x94\x9d\x90\x7f\x00\xfb\xb8\x13\x5a\x3f\x2c\x51\x37\x01\x53\x0c\x0c\xb7\xd3\x25\xca\x8e\xb3\xca\x4e\x84\x34\x83\xbd\xdf\xc9\x50\xe2\xec\xf8\x7a\x03\x60\x82\xba\x93\x51\xf9\x5d\x38\xb8\x00\x20\x84\xdd\x9a\xe9\x27\x27\xed\xf8\x2d\x1d\x82\x50\x10\x86\x6e\x62\xa6\x04\xd9\xef\xf4\x4c\x2c\xbf\x69\x3f\xdc\xe4\x08\xd4\xf5\x60\x4c\xee\x42\x43\xb0\x2e\x3b\x9d\x90\x4f\x8c\xe0\x3b\x03\xe9\xe4\xbf\x7e\x4b\x39\x08\xd0\x65\x9b\xf3\xaf\x62\x13\x1e\x79\x6f\xe4\x31\xdd\x6f\x3b\xef\x83\x74\xdf\x69\x0f\x93\x96\x09\xfe\x87\xcf\xc6\xce\xc1\xc8\xeb\x3f\xde\x6d\x83\xe9\x77\xd1\x11\xbd\x65\x67\xe4\x0d\x83\xeb\x03\x76\xff\x01\x10\xc4\x9d\xa3\xe1\xd8\x69\x03\x5a\x36\x2c\x6d\x77\x4e\x96\x49\xfe\xe4\xb7\x85\x77\xbf\x35\xcf\x83\x0d\x3a\xe5\xa3\x12\x27\xea\xcb\xce\xd9\x6f\xe9\x0b\x2a\x71\x62\xbe\x6c\x9c\x03\x8c\x05\xb7\x75\x0e\xc0\x5e\x76\x13\xa3\x25\x61\x24\xbb\xf5\x02\xc8\xf6\x17\xae\x51\xee\x36\x17\xec\xdd\xed\x17\x78\x88\x72\xf6\xb9\x1a\xb0\x9a\xf6\x57\xf3\xd3\xce\x2f\xcc\x37\xed\x6f\x77\x9c\x31\x94\xdd\x44\x70\x49\xd8\xd2\xee\xdc\xb0\x79\x67\xde\xb3\x40\x7b\x3f\xd3\x1f\xf2\x98\xff\x6e\xae\xc8\x75\x76\xfe\x82\x7d\x93\x8e\x2b\x80\x9c\x74\xee\x8c\x33\x5c\x63\xfe\x42\x78\x93\x8e\x69\x09\x36\xb4\x3b\x8f\x88\x05\x3e\x6d\xc3\xc7\x66\x58\xa6\x61\x86\x7e\x7e\x5b\x48\xa7\xbf\x02\x88\xc1\x05\xe2\x24\x90\x30\xba\xdd\x79\x7e\x01\xa0\x79\x37\x0f\xe5\x4f\xf3\x50\xef\x64\x5e\x58\xff\x59\x84\xdf\xe0\x3b\x63\xce\x81\x99\x97\xdf\x52\xd7\x66\xcc\x5d\x0f\x70\x90\x44\x7a\xd9\x79\x33\xe6\xae\x0d\x6c\xc2\x08\xfa\xb2\xb5\xfe\x07\x07\x64\x67\xb1\xf4\x38\xf4\xb0\xfe\x4f\x68\x66\x77\xc6\xdc\x16\x6d\xec\xce\xf7\xc0\x31\x90\xcb\xce\x70\x8d\x68\x5d\x37\x7e\x01\xbd\xd8\x47\x01\x3c\xe1\xce\xf3\x17\x7c\x9a\xfc\xaf\xf9\x69\x8f\xc1\xb5\x5c\xcf\xf7\x86\x66\x98\x95\x9d\x0d\xce\xff\xbd\x7f\x51\x50\xff\xf5\x67\x97\x5f\x24\x4f\xe5\xdd\xf8\xa5\x85\xf7\x4c\x7a\xe3\xdd\x36\xff\x75\x33\x2b\x22\xbb\x7f\x85\x31\x18\x6c\x5a\x45\x90\x56\x0b\x33\x26\x3f\x8b\xba\x18\xe3\x23\x9a\x87\xfc\x6c\x66\x25\xdc\xc9\xf1\x6e\x5d\x90\xd3\x10\xba\x66\x17\xfc\x72\xbc\x5b\x17\xd8\x57\x62\xd5\xec\x02\x9b\x8a\x7d\xd2\xd6\x9d\x00\xb4\x94\x5d\x04\xb6\x86\x38\x4a\x32\xbf\xef\xe4\xaf\xe6\xa1\xae\x6a\xba\x11\x81\x68\x03\x6a\x70\x4c\x7f\x77\xe1\x54\xc3\xf6\x77\x17\xae\x78\xc4\xbb\xd9\xe5\x5e\xeb\x12\xd1\x6a\x76\x41\x26\x81\x21\xf0\x2e\x46\xec\x66\xd3\x2a\x18\x05\xa3\x8e\xde\xa5\x7e\xd1\x1a\xee\x7b\x63\xe0\x4d\xbf\xa7\x4e\xf7\xda\x5b\x24\x2c\x4e\xc7\x02\x61\x79\x05\xfe\x02\x21\x39\x0e\xc8\xf0\x86\xf9\xbb\xd8\xba\x94\xd3\x3f\x7c\x6c\xde\xe9\x17\x5c\x66\x19\xb4\xd9\x72\x2e\x61\x19\x49\x65\xe3\xbf\x90\x08\x4d\xb3\x8b\xd0\x7c\x9c\x70\x85\x83\x08\x7f\xd4\x8d\x63\x43\xc2\x08\x79\x97\x0f\xb1\x8f\xba\x30\x4b\x21\x5e\xcd\x2e\x12\x1c\x1b\x3c\x6e\x0e\x09\xff\x8c\x5d\x3e\x78\x53\xc6\x76\x4e\x3c\x56\xcc\x0f\x01\x41\x34\xc4\x4d\x4a\x5e\x2d\xcb\xe5\x1a\x8d\x15\xb2\xcb\xb2\x7c\xbe\xbd\x04\x67\x6c\x8f\x5d\xb8\xb2\x11\xfd\x6b\x97\x4b\x70\x46\xf6\xd8\x05\x22\x1b\x6c\x2a\x05\xb3\x11\xaf\x9f\x78\x46\x84\x01\x61\x95\x7b\x70\x75\xb4\xcf\x1b\xb7\x87\xee\x35\xb6\xe8\x64\xe3\xbc\x23\x77\xf4\x30\x29\x1e\x56\x8e\x03\x1c\x9e\xd7\xd5\x82\x0d\xe5\x60\x73\xc5\x37\x22\x78\x98\x14\x38\x3c\x34\xc5\x1b\x3f\x89\xfc\x63\xe3\xaf\x3f\x90\x90\xe0\xce\xf1\x93\xc8\x18\x6c\xef\x0a\xbd\x28\xbe\xa8\x81\xf1\x61\xc3\xa8\x77\x9d\xe7\x1f\x7d\xac\x91\x31\x81\xcb\xa9\x18\x24\xbb\x29\xd6\x38\x48\xaf\xbc\x4f\xf2\xdf\xb1\xaa\x09\xcf\x20\x36\x03\xe2\x31\xe5\x1f\x9c\x5f\x4d\x95\xf4\xce\xfb\x5d\x27\x8a\x26\x6a\xc2\xab\x07\x3a\xad\x84\xbf\x51\x4c\x51\x93\x65\x52\x3e\x38\x96\x78\x00\xec\x9a\xf0\x2b\x82\x4e\x6b\x62\xdc\x58\x93\x06\x75\x72\xf3\xab\xf7\x26\x96\x7f\x8c\x79\xe5\x40\x73\x23\xac\xc8\xc5\xdd\xfc\x6a\xe6\x5b\xe8\xa5\x16\xc6\x96\x75\x45\xd4\x27\x03\x5f\xed\x5a\x18\x2b\xd6\x4c\xe5\x56\xe6\x7e\x52\xeb\x5d\xdb\x28\x93\x36\x31\x99\x8c\x3f\xb5\x6b\x03\xfd\x8a\x8d\xbc\x42\x2f\xd2\x66\xbd\x07\x51\x6f\xb6\xa7\x33\x26\xe1\x6f\x2e\x4a\xbb\xf6\x3b\x21\x5e\x55\xea\xf0\x23\xdf\x2f\x01\x79\x7d\xa8\x5c\xb5\x24\xc4\x7a\xaf\x54\x19\x8b\xf8\x5d\x21\x14\x09\xae\xde\x93\x29\x63\x11\xbf\xf1\xf5\xe8\xb2\xfd\xf8\x7a\x18\xf0\x69\x57\x1c\xd8\x9a\x0b\x01\xa2\x91\x80\xea\x3d\xbd\x32\x16\xf4\xbb\xa2\x99\x92\x20\x88\xef\x24\x8c\xfd\xc6\xaf\x23\x63\x2a\xb2\x2b\xce\x6a\xb2\xf1\x15\xa0\xd7\x6f\x11\xed\x7a\xf3\xd8\x66\xb0\x80\xbf\xc5\x82\x47\x1b\x86\x8e\x9b\xc8\x50\xf9\xc7\x09\x51\x89\x72\x83\x7b\xd4\xae\x87\xc1\xe3\x44\xc4\x57\x24\x62\xef\xb2\x71\x16\xc9\x44\x20\xda\xf5\xe0\xce\xe5\x24\x13\x28\xfa\x1b\x87\x87\x09\x61\xe3\xc7\xa1\x24\x7e\xe3\xc0\x35\x47\x01\x31\x31\xa4\xe2\xd7\x36\x60\x97\x94\xb5\x54\xb0\x84\x6d\x0f\xa1\xa5\x44\xef\xde\xed\x07\x96\x19\x87\x46\x03\x31\xdc\x36\xb4\x1f\xe3\xcf\xb5\x0b\xbf\x13\x63\x20\x6d\x1c\x4f\x04\xc7\xde\x0d\x84\xc2\x1f\xe3\x4f\x50\xaa\xfc\x63\xcc\x09\x43\x25\x18\xf6\x6e\xa0\x83\xff\x90\x85\x10\x50\x2a\xe3\x19\xb0\x1b\x11\xcf\xf1\x1e\xd8\x78\xa1\x88\x93\xbc\xf1\x42\x31\x24\xd1\x6e\xfa\xac\xfd\x7c\x67\xfc\xe1\x7e\x5a\x62\xfc\x93\xf9\x19\x7f\x36\x9e\x06\x01\xc9\xc1\x34\xc0\x44\xf1\x36\xd8\x2d\x93\x87\x79\x6c\x44\x4d\xf8\x31\x47\x2d\x2f\xf2\xd3\x1e\x9c\xdc\xe4\x06\x9a\x84\xc2\xe6\x44\x9c\x28\x63\x05\xed\x56\x18\x7f\xd6\x89\x81\xa1\x80\x48\xdd\xc4\x85\xca\x5f\x5d\xf7\x80\x12\x36\x78\xb7\x7b\xbd\x12\x28\x78\x37\xf0\xc6\xb1\xbe\xdf\x8d\x83\x48\x91\x0b\x4e\x29\x99\xa0\x49\xbb\x41\x58\xdd\xbe\x48\x58\x70\x60\xad\x5b\x3e\x65\x76\xe6\xc5\xf6\x77\xdb\x43\x39\x70\x7b\x1e\xb6\x6d\x30\x17\x88\x4d\x1a\xb0\xa2\x98\xba\xec\x76\x0f\x25\x71\x7a\x77\x1b\x22\xcb\x99\x9f\x31\x71\xbe\xa6\xe5\x50\xfe\x64\xbe\x10\x89\x10\x1e\x4a\xe8\xdc\x8d\x37\x8c\xf1\x6b\x36\xde\x30\x82\xe0\x6e\xc3\x41\x61\xec\xbd\xdb\x7a\x48\x27\xcf\xa6\x2f\x70\x78\x0d\x8c\xe4\xc0\x9a\x6f\x1c\x38\x8a\x08\x9a\x41\xa0\x7f\xe6\xa7\x5f\x6c\x7e\x46\x88\x0a\xce\x29\xb1\x4b\x14\x19\x11\x1f\x2a\xff\x2c\xff\x30\xce\xac\xff\x76\x18\x1f\xe7\xeb\xde\xb8\xba\x57\xf2\x06\x9a\x32\x01\x6b\x76\x7b\x68\x27\x1b\x5b\x33\x14\x25\x5c\x69\x7b\xfc\xf6\x6f\xe8\xd2\xbb\x19\xbd\xdd\x85\x03\x12\x1a\x6e\x1e\xdb\x68\x54\xc1\x45\xf4\x5e\x22\x20\x34\xe8\x6e\x2f\x03\x09\xa7\xd2\x70\x30\x25\xfc\xe7\x6e\x2f\x9d\x80\x5b\xc2\xfd\xa6\x7b\x12\xe3\x7e\x13\x81\x56\xdc\xb8\xdf\x74\x95\x07\xb8\xdf\x64\x05\x94\x1d\x39\x84\x27\x71\x0f\x96\x53\x79\xbf\x83\xe1\xb5\xb1\x07\x3b\x74\x07\xb8\x83\xdd\x8b\x05\xf7\xee\x91\x05\xc2\xe9\xd5\x0d\x53\x08\x51\x12\x6d\xaa\x7b\x1d\xeb\x86\x22\x64\x91\xe2\xae\x93\x5d\xbc\xdd\xb8\xc3\xc9\x77\x26\x96\xd3\xab\x4b\x94\x9c\x5e\x84\xa3\xea\x5e\xb5\x0c\x40\x85\xdf\xe1\xc6\x75\x27\x63\xef\xb5\x71\xdd\x89\x58\x7f\x6f\x5c\x77\x32\x80\xbb\xdb\xb0\x54\x60\xfb\xed\x9e\x69\x67\xf3\x9d\x31\x64\x92\x7b\xa6\x8f\x6c\x00\x3d\xb3\x09\x31\xc9\xb8\xf7\x64\x5c\x4a\x36\xee\x3d\xdd\x2b\x12\xee\x3d\x19\x97\x92\x8d\x7b\x4f\x04\xc3\x6f\xe3\xde\x93\x15\xc8\x12\xcd\x2a\x2b\x84\x25\x64\x55\x56\xc0\x4a\x5c\xaa\xee\x15\x86\xb0\x54\x19\xfc\xda\x8d\x0b\x50\xf7\xd4\xef\x95\xf1\x67\x53\xec\xc6\x3b\x34\xbd\x99\x9f\xb6\xb1\x01\x60\x23\xb5\xfb\xbd\xfa\xf5\xe1\xbc\x83\x18\x0c\x7a\xdf\xee\x9d\x36\x3b\x9e\x06\xe3\x86\x08\xba\xfe\xb2\x8e\xad\x31\xb6\x5d\x03\xf7\xba\xd7\x3d\xad\x71\x01\x32\x9c\xcc\xee\x83\x7e\xc1\x65\xf6\x41\x5f\x20\xee\x0e\x2c\x74\x70\x3d\x0c\xe6\xda\xbe\x10\xd7\x28\xb8\x1e\xc0\x35\xc4\xcb\x64\x77\xa0\xf6\x83\xf3\x3e\x0d\x4e\x4f\x39\x93\xf9\xb5\xfc\x69\xd4\x7b\xf3\x33\x0e\x70\xa2\x7d\x1a\xf3\x9e\xf7\xc5\xd8\x42\x0b\x7d\xb1\x26\x59\xff\x7d\x7f\x11\xf3\x79\x37\xdd\x77\xbf\xa5\x3d\xa7\xe2\x0a\x4c\xbd\x5f\xe4\x64\xea\xf2\xc0\x1c\xe6\x31\xc4\x2f\x75\x49\xdc\xce\xc5\xe5\x32\x87\x87\x06\x9e\x3a\x39\x48\x5f\xb8\x60\x7a\x68\xf4\xf7\x0b\xcd\xcc\xfb\x22\xcf\x1d\x93\xf1\x45\x4f\x1e\xbc\xfb\x6d\xe1\xbd\xdd\x6f\xb3\xe9\x9d\xf4\xca\xfb\x83\x9f\x72\xe2\xdd\x30\x9e\xe4\xbf\xb7\xb5\x81\x6b\xd9\x1e\xc1\x50\x96\xe4\x0f\x8d\x6f\x1b\xef\x5f\x6c\x4e\xde\x07\xe9\x9d\xf7\xcd\x3b\x75\x5d\xae\x74\x48\x5f\x23\xd2\x4e\x36\x2d\xa3\x6f\x61\x60\xbf\x47\x3c\xa4\x53\xaf\x81\xe7\xc7\xdf\xec\xcc\xf6\xb8\x27\x6b\x76\xd3\x1a\x89\x0e\xc1\x55\x8c\xcc\xc0\x3b\x00\xc5\x40\x7f\x91\x77\x1a\x0e\x37\x30\xca\x17\x68\xf0\xbe\xd7\x3b\xd8\x5f\x87\x8c\xbb\xe1\xc0\xe0\xd2\xf9\x75\x08\x98\x4f\x02\x70\xed\xd1\x8c\xfd\x47\xf9\x06\x80\x61\x97\x1f\xed\x0b\x27\xc6\x3b\x1d\xe2\x04\x1d\xf7\x2a\x37\xfe\x79\x7f\x49\xa7\x4c\xdc\x3a\xff\x79\x37\xea\x0f\xed\xec\x96\x43\x3b\xbb\xf9\xa9\xcb\xc0\x31\xf6\xf7\x12\x50\x56\x61\x30\xc6\x17\x28\x89\xf7\x74\xcb\x4c\xe6\xcf\xe4\xa1\x3d\xf7\xa4\x1c\x6e\x5a\x63\x18\xc8\xc2\x6f\x37\xe9\x4c\x88\xd8\xeb\xd1\xfc\x0f\xdf\xd2\x9e\xf9\x05\xb9\xe1\x9d\x71\x80\x2b\x22\x26\x58\x76\x63\x1e\x70\xa8\x6e\xc6\xc4\xfd\x1a\x18\x40\xee\xb1\x18\x73\x16\xf2\xc0\x09\x19\xa3\xc7\x4d\x38\xb0\xfc\xb5\x73\x7f\x71\x58\x78\x1f\xb8\xbb\x53\xe6\x17\x8c\x86\x6f\x39\x59\x01\x6b\xdd\x03\xe0\x5f\x02\x81\x6d\xa2\x82\x0d\xe2\x30\xed\xc1\x09\xea\x86\x4d\x18\xb0\xfc\xf5\xf7\xbc\xf8\xca\xf3\xad\x11\x08\x2c\xe7\x09\xa4\x53\xce\x03\xdc\xbe\xe3\x00\xe6\xe8\x37\x26\x0f\x73\x07\x07\x3f\x38\x0c\x01\x6c\xdd\xb8\xe8\xc4\x28\xd1\xbc\xb6\xed\xce\xcb\x34\x26\x01\x44\x33\x7f\x77\xcc\x5d\x63\xd3\xe8\x02\x9c\xee\xb8\xd6\x64\x15\x30\x5f\xd0\x2e\xb8\x31\x62\x76\x0d\xd7\xc0\x0c\x40\xd9\xc2\xb5\x10\xbe\x6b\xc4\x60\x39\x8c\x33\x44\x3c\x8d\x5f\xc3\x38\xcf\x48\x99\x1c\x0e\x33\xde\xf1\x77\x1e\x27\x9c\x2b\xb0\xae\x7b\x46\xfc\xeb\xa3\xf9\x09\x08\xc0\x5c\x4c\x89\x8f\x83\x82\x18\x60\x86\x9d\xd9\x13\xe0\x5e\x0f\x84\x69\x08\x3b\x36\xe0\xc9\xa1\xe4\x81\x30\xa5\x2f\x36\xe0\x59\x18\xff\x62\x9e\x3b\x6e\x5f\xdb\xaa\x6d\x20\x8f\xc1\x47\x99\xdf\xc9\xe1\xa3\x32\x09\x2f\x9c\xac\xd2\x68\x56\xc6\xd3\x31\x91\xd6\x38\x3c\xf1\xbc\x19\x0a\xdf\x67\x63\xad\x72\x78\xce\x0e\x2d\x54\xdf\x69\x0f\x1b\xf3\xec\x8c\x89\x6d\x06\xc7\xde\x83\x62\x0e\xc6\x87\xcd\x6c\x0e\xda\xc6\x01\x3e\x8d\xe5\xd1\xcc\x43\xdb\x6c\x27\x28\xb9\x6e\xf6\xd3\x35\x6f\x9e\x75\xf7\x0d\xb0\xd5\x37\xde\x33\xd9\xb5\x84\xf7\xcc\x00\x78\x71\xcf\x45\x1b\xfa\xdf\x3c\x00\x36\x6e\x33\x19\xf4\x81\x8d\xdb\xcc\x00\x2a\x69\xcf\xcd\x00\x58\xf0\x06\xe6\x80\x4d\x88\x38\x63\x19\x54\xd2\x3d\x2f\x0b\x3a\xb0\x80\xde\x5f\xc8\x31\x4e\x85\x79\xc0\x42\x80\x58\x71\xa1\xc9\x9e\x2e\xf3\xb0\x78\x39\xed\x88\x3d\x96\x3d\x45\xa6\xc4\x81\x0c\x66\x3e\x77\xb0\x93\x0b\x10\xf6\xd2\x13\x65\x3e\x7e\x4b\xbd\x40\xec\xaa\xf9\xfa\x22\x88\x71\x72\xcc\x97\x4e\x73\x12\x4f\xe4\x1f\x6a\xbb\x96\x81\x9d\x18\xf8\x2f\x7a\x18\x27\x07\x6e\x33\xd9\x53\x67\x49\x28\x9c\x0a\xcb\x93\xe6\xcb\xef\xb7\xb7\x0d\x2b\x32\xf0\xc8\xab\x16\x8b\x1d\x83\xc0\x4d\x40\x31\xe3\xeb\xec\x05\xe7\x07\xf8\xe9\x26\x9c\xd8\x48\x96\x43\x34\x31\x0c\x4d\xf7\x02\x38\x20\xd9\x06\x16\x3b\xa8\xa8\x7b\xa5\x07\xc4\x07\xf3\xbc\xa4\xdf\xfe\xe2\x12\x33\x32\x87\xc3\xba\x9c\x5f\x4c\xdf\xfb\x24\x0f\xf9\xef\xd5\x6c\xe0\x4c\xbf\x71\x77\x31\x0e\xcf\x26\x08\x59\xf6\x60\x59\x10\x13\xc0\x60\x1b\x77\x97\x81\x51\xeb\x5e\x97\xf3\xcb\x60\xa0\x6e\x02\x90\x0d\x6c\x04\xf7\xba\x84\x65\xa0\x9e\xbd\x44\xa3\x88\xbe\x1f\xd2\x69\x1b\xf1\xed\x5c\x8c\x8b\xc3\x0a\xd0\xd4\xbd\x00\xe0\xf5\xb0\x5a\xed\x8e\x55\x66\xe3\x5c\x70\x78\xd1\x6f\xbb\xed\x21\x3f\xc4\xe4\xe1\xb3\x80\xe6\xf5\xc0\x59\xf7\x90\x19\xc0\x46\xec\x75\x0f\x99\x08\x68\xd8\x5e\xc4\x9c\x04\x34\x6c\x2f\x44\x1c\xd1\xb6\x4d\x81\xb6\x29\x7f\x32\x9e\x10\xd0\x9a\x8c\x03\x07\xda\x5a\x8c\x27\xc4\xb4\x16\xf5\x72\xa0\xe1\x71\x12\x41\x19\xdb\x78\x9c\x64\x5c\xaa\xf6\x42\xc4\x81\x4b\xd5\x5e\xe0\x52\x63\x80\xbd\x89\x5a\x36\xb2\xf3\x08\x37\x86\x5b\xd4\xc6\xb3\x64\x64\xd7\xd2\x66\xac\x1c\x4f\x38\x30\xc0\x39\x37\x5e\x20\xc6\x23\xda\xeb\x61\xdc\x38\x1c\xd6\x53\x01\xd2\xa0\x1c\x0e\x07\xe9\x8e\xb0\x65\x03\xbb\xbd\xbd\x9e\x41\xba\xef\xac\x01\xc7\x96\x9b\x95\x87\xc9\x62\xfd\x13\xff\x6c\xe3\xe1\x31\xb4\x5d\xc3\xc3\x23\xe3\x2e\xb5\xf1\xf0\x18\xda\xae\xe1\xbd\x61\x44\xa3\xbd\xc3\x03\xe0\x46\xe2\xfd\x25\x9d\x6f\x23\x98\x1c\x6c\xc0\x78\x69\x18\x2e\x68\xe3\xa5\x31\xf0\x9f\xdd\x78\x69\x44\xd0\x2f\x36\x5e\x1a\x99\x38\x67\x7b\xb3\xc1\xab\xa8\x23\xcc\x59\xc6\xbd\x6a\xef\x34\xf9\xf6\xf6\x05\x8f\x8d\xec\xe1\xb6\xef\x4d\x66\xe0\x1f\xba\x37\x21\xf6\x52\xf9\xab\xcc\x8c\x68\x27\xd9\x53\x70\x4b\x04\x5c\x13\x76\x61\x50\x61\x77\x37\x0b\x1c\x5f\xc8\xbd\x8b\xf9\xcd\xf3\xf0\xce\x60\x14\x40\x4e\xd8\x9c\x0c\x8f\x06\x5e\xd7\xc6\xe5\x23\x83\x17\xba\xb7\x0b\x9f\x93\x86\xb0\x28\x03\x03\xcb\xbd\x09\x86\xa3\x06\x90\x00\x6a\x03\x1f\xc9\xbd\x39\x81\x80\xe9\xda\xb8\x8b\x44\x60\xba\xf6\x6e\x96\xc9\x84\x34\x26\x6a\xf8\xce\x44\xb1\xf0\x89\xa9\x32\x88\x1e\xbe\x09\xaa\x12\x71\x9f\xd8\x04\x4f\xc9\x9e\xee\x84\x64\x1b\xf8\x21\xee\xdd\x58\xb0\xb6\x19\x8e\xcd\x13\x71\x4b\x34\x5c\x4f\xf6\x60\x72\x6c\x27\x01\x6f\x92\x83\x8d\x0c\xc3\x93\x78\xcf\x09\x08\x0a\xe5\x4c\xc6\xc7\x36\x2f\x26\xca\x36\x2c\x50\x50\x5c\x68\x12\x10\x84\xb5\xb9\xb6\x78\x72\x6f\x22\x55\x26\x4e\x50\x23\x9d\x78\x72\xef\x7b\x98\x8c\xea\x98\x23\x17\x4c\xce\xd1\x66\xf1\xda\x4e\xe4\x19\xa0\x75\xed\x7d\xe8\x8b\xed\x44\x16\x98\x9c\xa3\x07\xa2\xe4\x34\xdd\xc4\xb1\xc4\xb2\x7b\xef\x27\x82\xd0\x62\x3a\xf5\x72\xb2\xe2\xf9\x61\x54\xa2\x6d\x30\x13\x4f\xfa\x8d\x8c\x10\x50\xaf\x6d\xd4\x12\x4f\xfa\xfd\x5e\x82\xd0\xc4\x66\xc3\x75\xc9\x0d\x10\xaa\x64\x68\x62\x73\x7e\xd4\x4b\x1e\xc3\xd6\x81\xc9\xb5\xf1\xf0\xc8\xb8\x7e\xed\x23\x91\x71\x20\x9c\xcb\x69\x0d\xcd\x58\x88\x5f\x67\xbc\xa1\x4d\x88\x92\x41\x88\xda\x7d\xc2\xdd\x3c\xd4\xde\x12\x81\x24\x62\x04\xbe\x09\x35\x92\x3d\x9c\xf1\x02\x89\x1e\x1a\xc7\xc3\x84\x31\x3c\xc8\xff\x3c\x34\x88\x68\x37\xb0\x46\xdf\x87\xb8\x42\x04\xb7\xdb\x84\x29\x19\x9a\x8a\x1c\xa2\x0d\x67\x0e\x01\x3c\x48\x22\xb1\x13\x36\x31\xef\x72\xe4\xc0\xc7\xf3\x23\x02\x84\xb5\xf1\xfc\xc8\xb8\x93\xed\x03\x8d\x80\xfc\xb2\x89\x26\x92\x71\x27\xdb\x78\x84\xc4\x6c\x1f\xeb\x1d\x43\x2d\x01\xce\xe5\xb4\x62\xe6\x10\x20\xb6\x48\x06\xdc\x74\x9f\x4b\x0b\x11\x23\xf6\x8d\xb7\x47\xf4\x80\xc2\xdb\x23\x03\x74\xba\x8f\x6b\x9b\x39\x32\xba\x88\x0c\xc5\xe9\xe6\xa7\x3d\xdd\xfc\xf4\xb1\x33\xce\x5f\x7e\xc6\x0d\x26\x82\xa8\x23\xa3\x7d\xdf\xd2\x17\xe7\x0b\x6e\x0c\x0f\x8c\x8d\x17\x48\x96\x71\x38\xd0\x0e\x86\xf4\xfb\xdc\xab\xfd\x50\x6e\x7a\x08\x57\x0c\x12\xf2\x26\xf0\xc8\x50\xf3\x4b\x6c\xbd\x88\x07\xc6\xc6\xdb\x23\xe2\x75\xb1\x8f\x07\xce\xf8\xab\x9d\x19\xae\x20\x59\x8e\xe4\xec\x08\x9c\x0f\x83\x04\x01\x11\xc0\x6f\x13\xc5\x24\xe2\xb6\xb1\xcf\x36\x22\x04\x0d\x81\x68\xb2\x13\x0b\xa1\x60\xb9\xbf\xcf\xbd\x9e\x0c\x85\x92\xb8\x73\x44\x50\xb2\x36\xee\x1c\x59\xce\xe0\x40\x1c\x40\x63\x6d\x62\x8b\xe4\x64\x87\x5e\xcb\xa4\xfc\x77\x02\x18\x44\x87\x10\xa0\xab\xba\x27\xce\xc8\x50\x40\x69\x30\x3e\x55\xf7\x0f\x1c\x98\x1c\x00\x61\x44\x62\xe6\xe4\x78\xe0\xba\x54\xdd\x13\x0d\x24\xe3\x03\xb8\x71\xe7\x18\xda\xe5\x3c\x70\x63\x72\x21\x44\x09\x19\xda\xe8\x3c\x84\x47\xc3\x6d\x63\xe3\x9e\x11\x71\xb1\xd8\xb8\x61\x64\xb9\x13\xdc\x30\xb2\xdc\xc9\x73\x39\xb0\xa1\xbc\xf0\x41\x68\x0e\xc2\xf3\x26\x4e\xc8\x50\x5e\xf8\x48\x34\xc5\x3c\xb4\xb3\x98\x7e\x28\x87\xf6\x5c\xe2\xc8\xf8\x18\xee\x07\xe2\x90\x83\xc1\xeb\x62\x68\xbe\x61\xe8\x0f\x39\x09\x42\x7f\x0c\x65\x84\x0f\xf2\x36\xb9\x81\x47\x62\xe2\x30\x21\x84\xc7\x00\xec\x6b\x3f\x97\x38\xc6\x70\xac\x38\x28\x80\x18\xda\xcf\x25\x8e\xa1\xa9\x02\xde\x18\x59\x4e\x9d\xd8\x1e\x43\xad\xdc\x23\xd1\x20\xf3\x78\xfa\x1d\x43\xb5\x66\xc4\xf0\x88\xc0\x56\x6d\x62\x78\xe4\x64\x7b\x3a\x63\x08\x87\x44\xe4\xc1\xa1\xa6\xec\x41\x36\x06\x94\xd4\x26\xb6\x47\x96\xdb\x30\xec\x20\xf0\x44\xfb\x99\x8c\xa7\x75\x4d\xd3\xc9\x33\x17\xe9\x94\xef\xc2\x87\x70\xf1\xde\xc8\x72\x18\x04\x0b\x1c\x2a\xa8\x88\xfa\x91\xbd\x2d\x10\xf5\x63\xa8\x11\x26\xec\x47\xd4\xe4\xe1\x71\x9d\x43\xac\x0f\x87\x03\x6e\x4e\x9b\x00\x82\x59\xee\xe4\x71\x3d\x43\xc4\x0f\xf6\x6d\x3f\x35\x2d\x0f\xb6\x07\x3f\x55\x2d\x44\xd9\xc8\xc0\x9e\x6e\xa2\x6c\xdc\x3f\xa8\x9a\xe5\x5a\x5c\x1e\x77\xbf\xcf\x80\xa0\xee\x47\xf4\x27\x15\x2f\x06\xf8\x03\xde\x68\xbf\x3f\xc6\x85\xf5\xfd\xb2\xbe\x81\x37\xda\x2f\x51\x60\x7f\x6a\x1f\x70\xff\xc8\x60\x87\xed\x97\x28\xa5\x3f\x25\x61\x6f\x20\xc0\x1a\x2b\xf3\x0d\xac\x2e\x66\x1f\x5f\x90\x28\xff\xf7\x22\x75\x06\x3e\x75\xe3\x0b\x12\xe5\xff\xde\xcb\x63\x85\x9f\xba\x14\x42\x75\x44\xd0\x85\xf6\x9b\x20\x63\x96\xc8\x9b\x18\x1a\x96\xc5\xeb\x92\x85\x54\xde\xec\x68\x30\xb7\xaf\x11\xdf\xd8\x98\x88\xe2\x17\x7e\x0a\x08\x89\xe2\x17\x75\x9b\x20\x96\xc6\xfd\x83\x76\x13\xd1\x4f\xbf\x09\x02\xfa\x65\x60\x52\xf7\x5b\x19\xb2\xf2\x57\x55\xc0\x2b\xca\x93\x72\xc5\x17\x31\x96\x9c\x29\xde\x25\x51\x6e\x94\x98\x1d\x11\x24\x9e\x4d\xd0\x8e\x8c\x3b\xda\x7e\xfb\x07\x1f\x66\xa6\x44\x26\xda\xdb\xc5\xf7\x72\x7c\x3a\x51\xea\x1c\x74\x84\x5a\xc5\xb1\x65\x9b\xc7\x81\x6d\x13\x24\x30\x13\xd3\x6a\xbf\x83\xf1\x54\x8a\xf4\xc2\x17\xe1\xe6\xba\x89\xef\x71\xff\xa0\x3a\x64\xbb\xc5\xd9\x60\xbd\xeb\xad\xf1\x22\xc3\xc5\xff\x75\xe3\xfd\x92\x65\x16\x5f\xd6\xbe\x9e\x1b\xef\x9a\xc2\x98\x51\x03\x9c\x91\x9c\x20\x91\x42\xee\x1f\xd4\xb0\x68\x1f\x2c\xd6\xcb\x8a\x2f\x4e\x99\x3b\x3b\xbb\xed\xbb\xad\xd9\x3c\xd6\x46\x9f\x89\x93\xfc\x03\xfc\x64\xbf\x5c\xba\xe5\xe7\x88\x11\x72\xff\xe0\x6b\x94\x40\xb8\xdb\xed\xf7\xb1\x06\x86\xef\xf1\x03\xfa\xf3\x58\x03\x03\xf0\x3a\xde\x9c\x98\x2f\xa1\x56\x8b\x13\xf1\x7e\x78\x6a\x54\x87\x44\xd8\xfb\xc2\xfb\xb2\x26\x9a\xef\x2c\x78\x2e\xc3\xe7\x87\x84\x0a\x80\x9e\x43\x3c\x91\x0c\x78\xec\xf9\x49\x52\x77\x1b\x3c\x04\x11\x89\xe5\xf2\xc2\x87\x28\x22\x19\x98\xd8\x43\x14\x91\x0c\x1e\xec\xf9\x21\x12\x06\xc4\xe7\xfc\xb8\x9c\x73\xf1\x38\xbf\x60\xd7\x28\x47\xe2\xba\xd3\x70\x7e\x12\xd4\xe5\x7f\xcf\x8f\x60\xdf\x3f\x6e\x72\xe7\x47\x0c\x7a\xac\x70\xce\x4f\x22\xaa\x54\x40\x54\x28\x18\xd1\xf3\x33\xf0\x62\xa5\xd0\xcc\x08\x13\xd0\xf9\xfc\xd0\x90\x72\x3d\x39\x04\x19\xb9\x7f\x50\x5d\x86\x3e\x1a\xef\xdc\xb7\xc1\xac\x39\x3f\x77\xfe\x4e\x6d\x86\x5c\x6c\xbe\x1b\x73\x91\xa1\xa8\xe6\xa7\xcb\xd5\xfc\xa6\x33\x0b\xd1\xda\xe0\xaf\xe0\x87\x0f\x21\x40\xee\x1f\xd4\x66\x44\xa8\x4e\x1f\xb8\x7d\xc3\x04\x9f\x5f\xb3\x54\x06\x55\x28\x35\xb8\xd7\xf3\x23\xd0\x66\xf9\xde\x93\x18\x77\x54\x21\x55\x7e\xef\xc5\x3f\xa8\x82\x20\x8e\x08\x40\xce\xaf\x3d\xfe\x61\x1d\x10\x4d\xa7\xa8\x2e\xa4\x9e\xb9\x90\x2f\x17\xbb\xdd\x2d\x96\x2e\xc1\xad\x15\x7b\x01\xb7\x06\x37\x7e\x7e\x9d\x25\x3d\xa8\x4d\x12\x1d\x0c\xdf\x60\xe6\x90\x7b\x1c\x02\x8f\x64\xd8\xeb\xf3\x13\x80\x10\xc8\xf4\xf3\x43\x10\x00\x7f\x7d\x7e\x92\xa8\xad\x98\x7e\x40\x9e\x69\x64\x4b\x9a\xba\x98\x52\x6e\xe1\x07\x4f\xa8\x8c\x9b\xf2\xf9\x2d\x36\x29\x0e\xab\xf3\x93\x14\xfd\x7a\xb3\xbc\xff\xaa\x24\x38\xc4\x26\xc9\xd9\xa5\x7f\xa2\xa5\x51\xe7\x99\xfc\x41\x0f\xcf\x12\x11\x90\x21\x41\x0a\x06\x58\xcb\xf9\x09\xb9\x06\x46\xf5\x21\x36\x49\x04\xad\xe5\x10\x9b\x24\x73\x0b\x38\x3f\x62\xec\xff\xd8\xc3\x0e\x2e\x53\x99\x6b\xc0\xd1\x65\xea\x97\xa4\x91\xf7\x8e\x03\xb8\x26\x07\x9f\xa9\x9c\x1d\x44\x6c\x1d\xe0\xf7\x0f\x31\x4c\x32\xfc\xfe\x21\x6e\x49\xf8\xb1\x17\x9c\x80\x51\x03\x0c\xfc\x09\x1f\x7c\x21\xcb\x36\x10\x91\x1f\xcf\xa1\x13\x60\xe2\x30\x9b\x3a\x81\x30\x6e\x39\xf0\x71\x00\x8b\xd1\x35\x4f\xd8\x93\x8c\x7c\xea\xe0\x06\x15\x81\x3c\x39\xb8\x3b\x65\xae\x02\x27\x40\x85\xe0\xbe\x9d\xc0\x51\xc6\x55\xe0\x10\xe0\x24\xfc\xbe\x8f\x21\x2a\xe0\x45\x0e\x3e\x4e\x39\xdb\x0a\x88\x0a\x48\x91\x13\xca\x23\x72\xa2\x99\x5e\xfe\xa0\xa4\x4a\x47\x6d\xea\xa5\xb0\x88\x83\xd1\xc1\xc9\x29\x82\xff\x71\x02\x01\x6c\x7f\xf9\xfb\x83\x26\x25\x46\xa6\xda\x24\xdf\x37\xe9\x83\x77\xa6\x3a\xf0\x0e\xb1\x61\xca\x75\x42\x63\x24\xf1\xd5\x3d\x84\x3d\xc9\xc8\xd5\x4e\x80\x10\x40\xeb\x38\xb8\x45\x65\xe4\x6a\x27\x40\x14\xb8\x1b\x1d\x62\xa0\x64\xae\x15\x27\xa0\x50\xe1\x2a\x71\x02\xdc\x18\x57\x89\x43\x80\x93\xf0\x03\x69\xf2\x04\x24\xc7\x5c\x05\x0e\x7e\x4e\x11\x3f\xa4\x13\x44\xdc\x84\x37\x3b\xe1\x5e\xd6\x23\x18\x17\x27\x08\x5d\x88\x6b\xed\x09\x44\xf5\xc6\x9b\xe8\x04\xa9\x02\x00\xce\x83\xab\x53\xc4\x9d\xe8\x04\x60\x98\x7e\xb0\x73\x27\x70\xa7\xc7\x9f\xe8\xe0\x03\x95\xbf\xe1\x46\x70\xcc\x9d\xfe\xe0\x0f\x95\xb3\x73\xb2\x99\x13\x18\xac\x13\xa4\x0e\xe7\x44\xf8\x42\xdc\x65\x4f\xe0\x86\xff\x8d\x3d\xd6\x0b\x80\x67\x9c\x80\x98\x17\xf0\x8c\x13\x10\xf3\x66\xc7\xde\xd5\x5d\x7c\xbf\x17\x11\x80\x31\x4e\x70\x75\x33\x0f\xf1\x57\xc5\xaa\x6c\xfc\x68\x64\x0a\xbc\xb3\x58\x99\x87\xf8\x1b\xa4\xdf\xa6\xe2\xd6\x14\x71\x89\x3a\xb8\x35\x65\x6e\x19\x27\x06\xba\x73\xcf\xde\x13\x5d\xe8\x97\xc9\x3b\x31\x32\xc4\x1e\x1f\x11\xa6\x2d\xdf\xe3\xf3\x44\x41\x01\x3d\x3f\x22\xd1\xe7\x71\xa8\x3a\x38\x24\xc5\x6a\x7a\xe2\x03\x8e\x95\x28\x65\x5c\x7e\xff\xe0\x90\x14\x7e\x6e\xdc\x91\x98\xf4\x98\xc9\x9d\x98\x1c\xc9\x6e\x49\xac\x6e\xa8\x35\x7e\xe0\x9e\xec\xaa\x11\x41\x31\xb2\x8f\x83\x3b\x52\x04\xdd\xe2\xe0\x8e\x94\x71\x1a\x3f\x91\xf8\x6a\x5c\x83\x0e\xae\x49\x19\xeb\xe7\x13\x0b\x2b\xb7\xfe\xfe\xa6\x3e\x38\x11\x09\x1a\x60\xbf\x87\x88\x27\x11\xdc\x8c\x13\x91\x0e\x20\xb6\x3d\x11\x29\x00\xe1\x20\x0e\x8e\x4b\x19\x8c\xd5\x13\x39\xa4\xb2\x53\xd1\xaa\xd8\x9f\xfc\x41\x78\x75\x5c\xbd\x4e\x94\x56\x38\x8b\xf0\x44\xca\xd9\xd1\x91\x56\x38\x96\xe2\x88\x02\x84\xf2\x07\xb6\x3c\xd2\x44\xfc\x50\x3e\x93\x3f\x18\x7f\x47\x8d\xcb\x7c\x75\xa0\x38\x34\xc0\x14\x3e\x11\x41\x18\xfe\x59\x27\x4a\x44\xd0\x4d\x9c\xe6\xa7\x82\x69\x7e\x6a\x9e\x4c\x85\xeb\x32\x22\x62\xce\x4e\x85\x78\xa1\x2e\x4c\xbc\x97\x22\xde\x5a\x27\xca\x09\x56\xd7\x0a\x9c\x60\x76\x8e\xa4\x27\x4e\x3b\x62\x99\xe4\xec\x7c\xdd\xab\x7f\x04\x01\xe3\x44\x51\x42\xbf\x65\x20\x71\x39\xdc\xdb\x52\x2d\x69\x43\x07\x1c\x64\x51\xcc\xd0\x6f\xea\x91\x45\x03\x7c\x71\x08\x8c\x12\xf1\xe4\x3a\x78\x30\x45\xbc\xb7\x0e\x1e\x4c\x39\x3b\x59\x10\x20\x9e\x5c\x87\xd0\x28\x11\x8f\xad\x83\x07\x53\xce\xce\xcf\xe3\xc4\x71\x62\xe3\xaa\x94\xb3\x2b\xf6\xf9\xd0\x53\xf9\x1a\xf9\x02\x9e\xfe\x07\x9f\xa4\x08\x94\xc5\xc1\xf7\x28\x67\x67\xf7\xb5\xb6\x9b\x27\x81\x49\xf4\x03\x16\xf2\xa4\xcb\x2d\x46\x24\x62\x27\xfd\x3e\xbc\xd5\xc0\x8f\xc2\x1f\x89\x77\x16\x53\x37\x7d\x98\x29\xf3\x83\x83\xa7\xfb\xf5\xf2\x8f\xc2\x8f\xd7\x1f\xb7\xab\x29\x7c\x15\x36\x7e\x08\xba\xca\x4e\x9f\xc2\xa5\x3c\x90\x2b\x4e\x0a\x8f\xe8\xad\x14\x2c\xd5\x83\x33\x71\x92\x54\xcf\x51\x87\x03\x53\xce\xdd\x4c\xcd\x4c\x54\x82\xa8\x0e\xf3\xcb\x93\x12\x33\x06\x70\xc2\x49\x98\xf3\x64\x96\x63\xca\x76\x84\x0f\xa4\x4f\x96\x60\x2a\x55\x84\x58\xfe\xc0\xa4\xc0\x8d\x98\x30\x29\xf7\x0f\x73\x31\xd0\xcc\x06\xc1\x51\x22\x10\x09\x27\x79\xf0\x31\x19\x89\xcb\x15\x30\x07\x07\xc7\xa2\x0c\x6e\xf1\x49\x90\x1a\xce\x59\x87\x30\x24\x19\xdc\xe2\x83\x8f\x50\xe6\x62\x7d\xf0\x11\x8a\x8d\xdd\x23\x8d\x26\x8e\xac\x99\xe8\x5b\xf1\x1d\x42\x80\x0d\xc3\x79\x28\x12\xe4\xf9\xa4\x39\x05\x98\xf5\x8f\xc5\x1f\xf4\x9f\x6b\x13\x8a\x94\x93\x26\xad\x86\x70\xf0\x2a\xca\x28\x52\x4e\x5a\x49\x14\x5a\xaa\x46\xd0\x0c\x42\xc1\x49\xcb\x2e\xfb\x81\x35\x38\x41\x50\x17\x10\x0e\x07\x3f\xa4\x88\x33\xd5\x49\x40\x73\xfe\x70\x3d\x3d\x69\x37\x32\xfd\xed\xde\x7a\x88\x48\x12\x01\x36\x38\x89\x53\x0a\xe4\xe4\x93\x24\x1e\x48\x92\x90\x24\xd9\x23\x2e\x49\x3c\x6c\x2b\x84\x16\xc9\x9e\x70\x78\x32\x45\xbc\xa3\x8e\x9e\x4c\x3f\xfc\x2c\x4f\x7a\x58\xe6\x6c\x1f\x04\x1d\xb9\x7f\x98\x8b\xc8\xa5\xb0\x76\x89\xc0\xbf\x08\x20\x4e\x7a\xc4\xeb\x75\x08\x91\xce\x61\xd2\x7a\x12\x96\x3b\x48\x23\x4e\x92\xda\xa0\xe7\x84\x3b\xfc\xaf\xdb\x87\xf7\xe5\x8f\xdb\x6e\xc2\x96\xdc\x3f\xfc\x41\x03\xa1\xc9\x8c\xe5\x38\x50\xcd\x27\x4b\x6d\x50\x18\x6e\x51\x19\x77\x91\x83\x5b\x54\xf8\xe1\x02\x70\x32\x31\x82\xf1\x17\x39\xf8\x3c\x65\xf0\xa2\x4f\x0e\x4e\x0c\x4b\x3c\x63\x65\x57\x20\x4f\x42\xa0\xdc\x3f\x2a\x3f\x98\x7b\x28\x07\x0f\xa8\x8c\x80\xe4\xe0\xad\x14\x9b\x1f\x43\x2b\x08\x48\x4e\xce\x74\xce\x6f\xa1\x1b\x04\x24\x27\x97\x28\x78\x2f\x4d\x82\x49\x04\xd2\xf9\x10\xd7\xe4\xfe\x91\xf8\xc1\xb8\xb2\xa0\xf0\x5d\x8a\xf8\x7c\x1d\x7c\x97\x32\x38\xce\x27\x57\x6b\x66\x00\xaa\x05\xf1\x6d\xb5\x66\x06\x00\x1b\x02\xa0\x2d\x0e\x91\x4b\x22\x96\xbc\x27\xd7\x47\x48\x60\x2a\x40\xe4\x8d\x18\xfa\x10\xd2\xe4\xfe\x41\x0d\xe8\x7f\x40\x72\x3e\x19\x4b\x1e\x3c\xb7\x0e\xde\x4b\xe1\x37\x58\xb2\xb9\x47\xfe\xa0\x79\x00\x00\xfe\x86\x93\xd5\x2f\x15\x81\x88\x70\x88\x6b\x12\x7e\x58\xc3\x9d\xdc\x0f\x7f\x50\x1f\xd2\x3c\x1c\xb0\x0e\x0e\x4c\x19\x89\xcf\x21\xf8\x49\xc6\xc9\xe6\xe4\x59\xc5\x26\xa6\xa7\xc8\xae\xf1\xcc\x3a\x84\x2e\xc9\x88\x65\x0e\x9e\x4a\x19\xb1\xcc\xc9\x3b\x0a\x54\xec\x0f\x86\x06\x76\x8b\x88\x25\xf7\x0f\x4a\x42\x74\x81\xd0\xe4\xe0\xab\x14\xdd\x2e\xf0\x55\xca\x08\x50\x0e\xc1\x4c\x22\xc8\x09\x07\x5f\xa5\x88\x65\xf3\xc9\xc7\xfc\x54\x70\xcc\x4f\x8b\xce\x23\xcc\xb1\x7f\xbc\x64\xa2\xb2\x47\x6c\xe3\xe8\x0f\xc6\x95\x5d\x0e\x2f\xa6\xd8\x5d\xae\x1c\x45\x08\x50\x4e\x46\xd4\xdd\x5d\xad\x88\xba\x71\xfa\x39\x84\x3a\x89\xdd\x95\xcb\xb1\x84\x07\xd7\xc1\xa3\x29\xcb\x48\xea\xd1\x14\x7e\xdf\x07\x4c\x03\x27\x11\x91\x4f\xee\x1f\xe6\x62\x1a\x58\xea\xf8\x34\x45\xac\xa7\x0f\x3e\x4d\x19\xe1\xcb\x29\x3f\x6b\xa8\xbc\x43\x1a\x70\x8f\xb8\x33\x45\x62\xb4\x9f\x22\x2d\xb1\x51\x14\xbc\xeb\x03\x56\xb0\xa7\x84\xcb\x2b\xe1\x70\x75\x88\x90\x72\xff\xa0\x06\xc4\xe3\x6e\x97\x38\x2e\xc5\x1e\xff\xca\xce\xe1\xd5\x94\x41\x6f\x3e\x45\x02\x64\x91\x16\x42\x6c\x23\xe1\x39\x25\x39\xf1\x50\x29\x11\x53\xb2\x52\x1d\x22\xa6\x04\xc1\xc1\x4f\x41\x92\x0e\x16\xca\xc1\x97\x29\x62\xe2\x7d\xf0\x65\xca\x8a\x7b\x0a\xe4\x8b\xb9\xf7\x21\x96\x4a\x08\x88\x05\x4f\x29\x02\x44\x33\xf5\x05\xd2\xc4\xa9\xff\xe0\xe5\x94\x15\xf8\x14\x48\x13\x47\xfe\x53\x90\x96\x28\xf0\x29\x48\x4b\x02\x96\xcb\xa7\x48\xb3\xd5\xf7\xea\x1f\x54\x81\x71\x90\xd2\x9f\x52\xa7\x7f\xd0\xa3\xca\x54\x66\x8b\x82\xb2\x1d\x68\x28\x9b\x70\x4a\xa7\x20\xec\x2c\x8e\x33\xf2\xcc\x10\x9c\x56\xae\x7f\x60\x00\x9c\x22\x61\xc3\xe8\xe1\x6d\x75\x33\xf9\x83\xf9\x66\x7d\x94\x6e\x9b\x58\xb2\xa5\xdb\x8e\xc8\xec\x4b\xd9\x1c\x9c\xa5\x0b\xb0\x8d\x38\xa2\x20\xc5\xf4\x4e\x81\x97\xd5\xfd\x83\xd6\x0e\x2b\xa4\x28\x49\xbe\xf8\xce\xe4\xb1\x5f\x94\x69\x43\x20\x8b\x32\x13\x99\xfc\x23\xfb\x07\xf5\x4d\x26\xcf\x61\x46\x76\xa2\x10\xab\xc0\x06\x77\x87\x99\x7b\x5e\x77\x64\xa5\x6c\xc7\x83\xab\x9d\xc2\xad\x22\x65\x3b\x04\x9e\x99\x30\xa2\xe5\x44\xd2\xe9\x82\x71\xb9\x39\xb8\xca\x71\x34\xba\x1f\x3b\x1a\xae\xb3\xc3\x68\x70\x6a\x12\x55\x26\x83\x14\x73\x0a\x56\xea\x9e\x3d\xb8\x57\x65\x10\x98\x4f\x91\xe2\xe1\x44\x71\xb5\xca\xe5\x7b\xa7\xa5\x9c\x7a\xe5\xb5\x36\xd8\x8b\x82\xc8\xbf\x7c\x7f\xb0\xa7\xb0\x8e\xab\x44\xcb\xb6\x58\x91\xf8\x2b\x17\xab\x12\x2d\x07\x00\xf1\x66\x42\xc0\xa8\xe5\x54\x64\x8f\x98\xb1\x9f\x8a\x60\x1f\xfc\x99\x53\xa5\x41\x98\x22\x62\xc8\xc4\xce\x76\x5e\x51\x51\x61\x9b\x70\x2a\x22\x49\xbc\xae\x4f\x45\xc8\x2f\x60\xef\xc1\x1b\x2a\x88\xa2\x7b\x70\x87\xca\x58\x27\x1c\xdc\xa1\x22\x31\x80\x4e\x4d\xd6\x46\xa9\xc9\xaf\xb3\x7f\x30\x25\xf6\x01\x5a\x24\x52\xd0\xa9\x1e\xa5\xf6\x01\x4d\x16\xa6\x0a\xa7\xe6\x42\x1e\x6a\x46\xea\x19\x30\x2a\x39\x3a\x56\x81\xed\x7c\x6a\xfe\x9a\x44\x47\xf3\xe2\x0b\x9a\x24\x82\x7d\xcc\xfe\x38\xfc\x41\x9b\x4a\xe0\x9d\x66\x20\xf6\x24\xf2\xd5\x21\xe8\x4d\x2e\xf0\xa6\x04\xbd\x89\x18\xe3\x1f\x5c\xae\x32\x90\x54\x87\x08\x38\x19\x64\xe8\x43\x08\x9c\x88\x0f\xf7\xa9\x78\x92\x14\x47\x1b\xb1\xe5\xf8\x2b\x84\xf7\xc1\x07\x2b\x08\xd3\x7a\x2a\x5a\x04\x3c\xb0\x4f\xc5\xf0\xa8\xfe\x7c\xa7\x16\xf6\xcf\x8a\x05\x2c\x2a\xbc\x83\xff\x55\xae\x8e\x38\x54\x86\xd7\xf5\xc1\xe7\x2a\x57\x07\x16\x8b\x56\x3c\xad\x4f\x1d\xce\x84\x93\x8d\xdd\x38\xae\xd6\x87\x30\x3d\xf7\x0f\xc6\x03\xe5\x02\x0e\x00\x07\x6f\xac\x88\xaf\xf5\xc1\x1b\x2b\x57\xa7\x02\xea\x23\xba\xd7\x21\x0c\x4f\xc6\xda\xe3\x10\x87\x27\x12\xdd\xeb\x10\x70\x27\x83\x18\x74\xea\x65\x8c\xa3\x4c\x50\x85\x31\x0e\x68\x30\x0f\xee\x5b\x51\x26\x08\xf7\xad\x20\x64\xea\xa9\x8b\x76\x27\x4a\x45\xd1\x80\x87\xf5\xa9\x18\x37\x55\xa7\x77\x3f\xbc\x9b\xce\xde\x97\x6c\x36\xe6\xb1\xca\x2f\xab\x84\x9c\xec\x03\x46\xe8\xc3\x85\x82\x36\x22\x28\x58\xad\x58\xa1\x0f\x17\x0a\xd2\x4f\x62\x0f\x9d\xca\xd1\x5d\x5d\x1c\x08\x3f\x71\x9a\x3e\x15\xa2\x1e\x1c\x8e\xba\x73\x01\x87\x74\xea\x6b\x7e\x3a\x8a\xc6\x22\x28\x39\xad\x28\x26\x64\xc0\xf0\xe1\x8a\x38\x17\x1e\x62\x04\x65\x65\xa2\x0d\x02\x47\x4d\x7a\xf0\xcf\x0a\x01\x0d\xcc\x69\x28\x1a\x08\x30\x74\x88\x12\x14\xd1\x8d\x9e\x16\x18\x7a\x16\x4c\x83\xa8\xf1\x28\x3c\x2d\x3a\xc4\x6c\x5e\x2d\x32\xc4\xd5\x77\x87\x98\x8d\xac\x41\xe2\x78\x32\x9c\x86\xbc\x13\xc7\xe9\xd3\xf0\x7d\x14\x79\xf3\x34\xa9\x9a\x9d\xbc\x71\x60\xe2\x64\x7a\x1a\x07\xa6\x9c\x1f\x31\x84\x32\x01\x30\x4e\x93\x48\x95\x36\xeb\xbc\x25\x17\x48\xfc\xa0\xfb\x07\x23\x80\x6a\x02\x85\xed\x69\x97\x2e\x33\x88\x4d\xa7\x21\x39\x45\x61\x7b\x5a\xb1\x54\x3a\xcd\xfd\x71\x40\x25\x0d\x89\x6a\x50\xb0\xab\x5b\x17\xa8\xd1\xa7\x79\xda\x2a\x9b\x6d\x58\xb1\xe3\x6c\x7c\x08\x4c\x74\xff\xa0\x58\x49\xd6\xa1\x41\xec\x53\x59\x33\x0d\x6d\xe2\x70\x64\x10\xa9\xe2\x79\x7c\x5a\xa5\x79\x2c\xe9\xc6\x99\x8a\x93\xe3\x21\x7e\x51\x56\xc8\xdb\x24\x77\xb6\xbb\xd6\x6c\x9e\x85\xa2\x8c\x00\x51\xea\xe0\x2d\x16\x04\xa7\x3c\xb8\x8b\x45\x5c\x1e\x4f\x43\x2f\x38\x1c\xee\xee\x07\xb4\x42\x52\x1f\xbe\x37\xd2\x69\x11\x0a\x88\xa0\xc0\xaf\x61\x64\xa8\xe8\xb8\x81\x2f\x85\xa3\xed\xe9\x69\x1f\x6c\x82\x82\x18\x36\xa7\xe7\xdf\xd9\x47\x13\x6f\x76\x86\x9b\xa0\xc5\x4e\x24\xaa\xdd\xe9\x39\x9c\xa3\xc1\x79\xfe\x3e\x89\xe7\x68\x4d\xac\x34\xbf\xe7\x7c\xce\x9d\x96\xa8\x35\x0f\x09\x0f\xec\xbd\xe6\x3a\xa7\xe7\x72\xce\xf8\x3e\xe9\x5f\xc2\x1b\xbf\x6a\xff\xba\x1d\xf6\xdc\xce\x5b\x6c\x13\xac\x70\xcf\xe3\xec\xa5\xc1\x3a\x44\x48\xc2\x63\x8d\xc1\x6e\xcc\x03\x6c\xec\x4d\xb0\x1b\xeb\xec\xfa\x25\xe4\x2f\xe1\xf9\x8c\xde\x83\xdd\xd8\x67\xbf\x5f\x19\xf5\x4b\x78\x73\x32\xc1\x6e\x9c\x03\xec\xe5\x4d\xb0\x1b\xcf\x79\xd8\x23\xa2\xd2\xf5\x5e\x7e\xe7\x79\xf1\x58\xc0\x40\x87\x84\x57\xf7\x01\x2c\x73\x4e\x2f\xf1\x68\xc5\x15\x95\xb5\xdf\x84\xe7\xf7\x7d\x92\xfe\x49\x08\xd1\x04\x5a\x5a\xf2\xd9\xdf\xf8\x42\x0f\x37\xe1\xbd\xe7\x67\xd4\x64\xc7\x84\xf5\xe5\x68\xff\x24\xbc\x5f\x0e\x5a\x5a\xea\xd9\xe9\x2b\x74\xfc\x37\xc1\x69\x4d\xbf\x7f\x12\x74\xda\x50\x4e\x7e\x13\xb4\x71\xd2\x06\x87\x84\x77\x38\x69\xc9\x96\xb6\x83\x81\x49\xd4\xea\xe6\xf4\xd2\xcf\x2e\x5f\x0e\x5b\x3a\xce\x99\x5f\x8e\xfa\x25\xa0\xf0\x8d\x1a\xe4\x9c\x5e\xf6\x39\xff\x94\x61\x4b\xcf\x39\xaf\x13\x95\xc6\x97\x00\xa2\x69\x8c\x8a\xcb\x7b\x79\x0e\x76\x2a\x51\x83\x1d\x12\xde\x9f\x9d\xcb\xb6\xf4\x3d\xfb\xb1\x8c\x9c\xbe\x84\x47\xcb\x78\x25\xe5\x37\x01\x73\x87\x9b\x40\x4b\xeb\xef\xbc\x97\xdf\xba\x09\xb4\xb4\x86\xb3\xb5\x07\xc7\x6c\xe7\xf4\x9a\x0e\xb6\x5a\x37\xa1\xff\x93\x30\xbf\x76\xd0\xd2\x9a\xcf\x39\xb6\x94\x7d\x9f\x84\xc7\x15\xc4\x1e\xdf\x6b\x39\xfb\x38\x2f\xdc\x5b\x6e\x02\x90\xcc\x51\xa3\x9e\xd3\xeb\x9d\x17\x1b\xc6\x51\xd0\x6b\x3f\xcf\xb4\xe9\xc5\x96\x8e\xa3\xcd\x61\x24\x28\x1e\x09\x20\xa1\x46\x8d\x75\x4e\x6f\xbf\x73\xc2\xd7\x0e\x5a\xda\xc2\x01\xd3\xf2\x26\xd0\xd2\x36\xce\xa9\x56\x7b\xcf\x86\x17\xdf\xa8\xd0\x71\x2c\x7c\x87\x50\xa1\x30\x30\x2f\xb1\x8b\x82\x10\x50\xef\x10\x01\x03\xd7\x9f\xd7\xe8\x45\x95\xd5\xf2\x0e\x31\x70\x31\x55\x7d\x07\x0a\x8d\x8c\x4c\xf8\xc5\xbd\x2a\x74\xa2\xaf\xbe\x46\x36\xfa\xef\x0f\x30\x7a\xc1\x84\x78\x07\x6a\xbd\x9e\xbe\x7a\x96\x80\xac\xd6\x23\x02\x6a\xf3\x1f\xe0\x29\xb9\xe9\xbd\x78\x68\x85\x3a\x2e\x21\xbd\xb8\x68\x85\x86\x12\xf5\x1d\xc2\xd9\x20\xe7\x78\x71\xd2\x0a\x8d\x10\xa9\xef\x08\x82\xf3\x0c\x8a\x0e\xf4\x07\x3b\xa8\x77\x80\xbc\x51\x31\xd1\x78\x07\x22\xd6\x8a\x15\xdb\x3b\x84\x8b\x2b\x0e\xd5\xbd\xd0\x86\x8a\x33\xfa\x6b\x14\xa6\x86\x10\xf9\xc5\xd1\x2b\x74\xd4\x9a\xef\x40\xa0\xd4\xdb\x57\xf4\x12\xbd\xd8\x4a\xe9\x4f\x75\xac\xc3\x11\xe1\xd0\xa2\x1f\xa1\xee\xfc\x41\x7f\x10\xe1\xbc\x46\x75\xea\xdc\xf2\x5f\xc2\x3a\x85\x82\x03\xd0\x3b\x90\xf2\x56\x64\x7d\xef\x88\x40\x6b\x21\x04\x7c\xc7\x3f\x10\x3d\x99\x1f\xa0\x45\xc2\x52\xbc\x23\x82\xae\x85\xb4\xe2\x1d\x48\x80\x1b\xd7\xbd\x97\xc8\x50\xa1\x60\xb6\xfe\x0e\x22\x6c\x14\x18\xbd\x17\x6f\xb5\x50\x31\xcb\x7a\x87\x58\x77\x68\x40\xde\xcf\x5f\xad\x39\x06\xa0\xdd\xe5\xf4\xb5\x40\x9c\xdf\x68\x36\xd0\x8d\xbf\x16\x80\x3c\x52\x5a\xfc\x9b\xc9\xf4\x3b\x92\xf0\x91\x2e\x2c\xae\xf6\xb5\xda\xa2\x7b\xb5\x0f\x15\x8e\xe9\x1d\x62\x0a\xe5\xef\x1f\x01\x9e\x3a\xfd\x03\xbb\xb2\x81\x1a\xfa\x0e\x90\x1d\x3a\x3e\x37\x2f\xbe\x71\xa1\xc3\x4e\xbf\x03\xfe\xa6\x03\x18\xfb\x0e\xae\x33\x3a\x9e\xbf\x23\x89\x05\xe7\x2a\x4b\x02\xcc\x35\xff\x39\xa2\x94\x31\xc7\xdc\x68\xda\x37\xad\x1f\x52\x4a\xa2\x05\xf9\x9b\x3c\x5a\x70\xef\x34\xa1\x23\x96\x7a\x07\x8a\xe3\x0c\xf7\xf8\x12\x71\x2b\x94\xe4\x32\x05\x2e\xa2\x45\x57\x99\xe8\x60\x59\xaa\xc9\x62\x17\xda\x6d\x82\x8e\x34\x3c\xf0\xdf\x91\xc5\xe9\xf9\xf9\x0f\xfd\x29\xd2\x13\x77\xa1\x0c\x8b\xfb\x8e\x7b\x17\x0a\xe5\xa3\xe8\x2c\x92\xa6\x13\x4e\xe8\x91\x4a\x78\xe8\x97\x80\x5e\xa1\xb2\xa3\xbe\x46\xf4\x6a\x58\xee\xbe\x84\xf4\x0a\x2d\x39\x25\xc0\x7b\xf6\xe2\xe8\x20\xd7\x94\xc7\x7e\x07\x08\xbf\x0d\x78\xe6\x17\x7f\xc3\x90\x8b\x0d\x05\xe3\x37\x17\x47\x07\xbd\x41\x0b\x8e\x35\x82\x95\x86\xe1\xe0\x8b\x2f\x62\x68\xdf\x2a\x2b\xf6\xc7\xd1\x41\xff\xd7\x7f\x36\xb4\x2c\x97\xb6\x95\xee\xff\x41\xc4\x80\x3c\xf5\x6f\xe6\xe0\x10\x35\x8e\x7f\x89\x38\x16\x0a\xbe\x72\xaf\x21\xc7\x4a\x76\x65\x12\x35\xa1\x36\xe7\x07\xe6\xd1\x80\x42\x2f\x2e\x90\x41\x36\xec\xc5\x07\xf2\x32\x51\x34\xb4\x0a\x00\xee\x7a\x43\x8a\x53\x88\x8e\xfc\x0e\x74\xf5\x99\xbb\xe6\x3b\xaa\xc8\xa3\x5f\x36\x88\xab\xb9\x25\x20\xe0\x69\xdf\xfe\x40\x10\xa6\x5c\xdd\x16\xab\x9b\x9f\x6b\x07\x6c\x5e\xe3\xd3\xbc\xa3\xba\xde\x86\xa5\xbd\xc2\x59\xf1\x43\xc0\xc5\xe8\xde\x85\x45\x8d\xf0\x73\xef\x40\xcc\x53\xbf\x31\xc0\xa4\xa6\xc0\x25\xbe\xf8\x6b\x86\x56\x1d\xaa\xe6\x66\x51\x21\x26\x34\x9f\xb5\xbb\x43\xb5\x26\x64\x3a\x2d\x68\xc2\x7b\x7f\xf5\x0c\xe7\xd4\x7f\xd8\x2c\x7e\xdf\x0f\xe8\x27\x3a\x59\x4d\x20\x3a\xc7\xa0\x39\x3f\x3f\xff\x79\x3c\x00\x6c\xa8\x9b\x85\xbb\xe7\x07\xcf\x6d\x69\x88\x9d\xf3\x70\x78\xb9\x28\x97\xe4\x86\xd9\x93\x80\xbb\x4c\x63\xff\xd0\x4a\x29\x1a\x68\xd7\xf6\x73\x8b\x43\xa2\xd5\x8b\x54\xff\x21\x02\x65\x4b\xf3\x70\x0a\x74\xbb\x8b\xcd\xe3\x86\x82\xe0\xcb\xab\xfe\x4b\x14\xb8\x50\x86\x63\xd0\x5d\x6f\x12\x13\x01\x1c\x3b\xf1\x92\xde\x81\xe8\xab\x60\x08\xfe\xe2\xae\x1a\x4a\xb1\x34\xf0\xbd\x4a\xf1\x9c\x18\x6c\xe6\xcd\xc3\x16\x45\x71\xcd\xee\x07\x83\xfd\xad\xb8\xfc\xd1\x14\xd7\xf6\x57\xb3\xec\x77\x0c\x3b\xeb\xb9\x31\xc4\x51\xcc\x74\x16\x7d\x58\x83\x15\x79\x89\x4d\x17\x7a\x94\x54\x09\xad\xd3\x9a\x9b\xfb\x10\x0a\xab\xf9\x63\xb1\x91\x65\x4b\x63\x31\x16\xb7\x1e\xa0\x30\x73\x71\x5f\x45\x88\x90\xdb\xf7\xcf\x2b\x92\x2b\xff\x08\xce\x87\xb0\xea\x1d\x60\xe0\xfe\xb3\x4c\xa7\x93\xe7\x70\x7f\x70\xd1\x6e\xa5\xc8\xfa\x4a\x75\x80\xc4\xc1\x0d\x1e\xd8\x68\x01\x5a\xf4\x44\x99\x9e\xc4\x4e\x84\x38\xec\xdf\xc9\x05\x46\x4c\x06\x90\xe3\x1d\x68\xf5\xfe\xa1\xf5\xc9\xe4\x11\x5a\xf8\xc5\x39\xf7\x56\x6a\x69\xe2\xb4\x7e\xcd\x79\x1c\x6e\x4b\x83\xb8\xb2\xeb\x1c\xc5\xb9\x40\xf0\xef\x58\x41\x40\x2c\x8a\xc6\x90\xa5\x17\x7b\x8a\x36\xb0\x57\x17\xe3\x12\xef\xca\x5d\x60\xb9\x59\x34\xbf\xa9\x1e\x27\x54\x0a\x28\x68\xc7\xa4\xf0\xc5\x29\x38\x86\x21\x0f\x05\x2c\x68\xc9\x4e\x09\xa2\x12\x3d\x3c\xde\x81\xc9\x4b\x26\x26\xf1\x3b\x90\x95\x94\xf0\xd5\x73\x04\x52\xf7\x1b\x16\xe3\xc7\x50\x61\x3c\xf6\xcf\x1e\xb9\x85\xd7\x95\xb3\xd8\x42\xac\xba\x13\xa2\x40\x69\xcd\xd5\xbc\xe5\x94\xdc\xa5\xd1\xa0\xf4\xee\x6c\x0b\xa2\xde\xdd\xae\xb6\xc4\xf5\x15\xc0\x66\x51\x5c\x89\x40\x0c\x1b\x36\xfd\xc5\x9b\x39\xd4\x9f\x34\xb8\xe5\x2c\xbe\xe6\x2c\x51\x8f\xe9\x8f\xf0\xc3\xad\x98\x8d\xf9\xe9\x9e\x3a\x18\xeb\xb4\x9f\xdb\xe2\xf6\x70\x72\xbb\xc2\x5a\xa7\x7f\x6b\xe7\x04\x77\x28\x8a\xc6\xca\xad\x14\x07\x84\x20\x2f\xbd\x48\x18\xe2\xf3\x67\x7b\x7a\x04\x85\xf7\x08\x3a\x1f\xc8\xb3\xd9\x9a\x18\x71\xf4\xf4\xc8\x29\x79\x22\x1e\xe6\xa7\xb8\x0e\x8e\x9b\xdf\xcf\x16\xac\xff\x71\x9c\x00\x18\xd9\x3f\xbe\xeb\x48\x3f\xb2\x22\x47\xfa\x71\xdc\x84\x99\x0f\x4e\xd6\x23\xe4\xb7\x07\xa7\x40\xf3\x43\x6a\x44\x39\x5b\x7f\x1e\xd0\x4f\x12\xbd\x9a\x16\x08\xb1\xdc\xdc\x46\x9e\x0f\x8a\xd7\x6f\xdc\x0f\x24\xda\x47\xce\xcf\xbd\xeb\x11\x30\x52\xd2\x14\x49\x2f\x39\xa7\x0f\xfb\xc1\xb7\x0f\x3d\x1e\x4e\x5f\xa5\xc2\x43\x3b\x54\xa0\x58\xe6\x8f\x7e\x1e\x39\x59\xa7\xf1\xf9\x90\x8e\xf9\xe7\x95\x33\x77\xf5\xbe\x32\x0f\x2e\x24\x24\x63\xbd\x79\x00\x00\x12\xdb\xbb\x07\x00\xc6\xbc\x65\x48\x18\xaf\x9c\xb9\xbb\xd8\xfb\x71\xb2\xf4\xf4\x15\x54\xd7\x15\x22\x78\x66\x68\xe5\x7f\xd9\x30\x63\xfd\xdf\xf6\x4b\x70\xda\x5b\x74\xaf\x40\x69\x56\xb1\x7e\x79\x07\xe6\xc1\xb5\x78\x38\xbc\x82\x41\x4a\x5b\xaf\x5c\xae\x9c\xd6\xeb\x41\xec\xfe\x82\x35\xbe\x5a\x95\x17\xa7\xf7\xa0\xb6\xec\x9d\xbf\x2f\x48\x40\xe7\x07\x6b\xd1\xf3\x6d\x72\xab\x6a\xf8\x1b\xbe\xc6\xac\x2c\xc0\x7b\xbc\xf3\xf7\xdd\x42\x32\x3f\x60\x2c\x90\xd0\xbf\xf3\xf7\xad\x45\x7f\x38\x77\x74\x7c\xfe\x64\x94\xa2\xdf\x4c\xa1\x39\x2d\x7a\xc9\xdc\xf3\x23\x7a\xdc\xc2\x4f\x4d\x78\xf3\xee\x89\xf4\x2a\x4a\x23\x04\xc6\xab\x85\x79\xc4\x56\xe2\x7d\x59\x64\x01\x3d\xca\x4b\xa0\x83\x10\x65\x2c\x5e\xd6\x55\xe8\xb5\xfe\x5f\x8f\xa7\xff\x6f\xfe\xbf\xff\xcf\xf3\xaf\x3f\x3f\xec\x9d\xff\xfc\x34\xcf\xbd\xbf\xef\x31\x70\x1f\xe5\x3f\xff\xbe\xb5\xfc\x7e\x77\x8f\xbf\x0f\xc5\x04\xdd\x4c\xcb\xb4\x6d\x3c\xcb\x7e\xd3\x96\x05\x2d\x4d\x86\x49\xb1\xa8\x65\x33\xfb\x8f\xb4\x6c\x9a\xf7\xe1\x4e\x0d\xcb\x1a\x96\x86\x94\xa4\x58\x3e\xdb\xa4\x48\x7d\x3f\x6c\x6c\xff\xfc\x7e\x47\xa9\xc0\xa0\xb4\x4b\xf5\x7f\x7e\x3f\x25\x05\x58\x08\xfc\x30\x60\xbd\x8f\x57\x84\x83\xf2\xaf\x3f\xbf\x10\xa9\x21\x28\xe3\x62\x7d\xff\xc2\xbd\xc9\xdc\x47\x32\xad\x92\x46\x1d\x18\x90\x46\x0d\xc5\x7f\xe1\x72\xee\xf7\xb1\x4c\xe3\xdb\xcb\x8c\xdf\x87\x75\xdc\x3b\xc6\x0f\x30\xfd\xfb\xb0\xbc\xbb\xfb\xfd\xb0\x13\xbd\x0f\xeb\xbd\x67\xcc\x0f\x53\xd0\xfb\x38\xa6\xdd\xbe\x45\xfb\x11\xd9\x83\x02\x5a\xa2\x5f\x1a\xb4\x2f\x29\xd2\x40\xe1\xf5\x4b\xf7\x58\xbe\x0f\x64\x05\xa8\x40\x7e\x69\x99\x6f\x7f\x69\xf7\x5b\x4c\x29\xfe\xfc\xb2\xed\x43\x6c\x1b\x30\xda\xfd\x13\x82\x21\xde\x90\xfd\xc6\xdf\x5d\xf7\xf7\xa1\x49\x06\x29\xc3\x14\xc5\x97\x37\x25\x98\xc7\x40\xab\x95\x94\x6e\x0a\x41\xf6\x28\xe7\xde\xa1\xef\x83\x90\x74\xf1\xa6\xb0\xac\xe2\x8f\x1b\x70\xa4\x9c\x7b\xe5\xbd\x8f\x4a\xf8\xb8\x9b\x92\x2c\x99\x8b\x63\xa2\x9c\x7b\x7f\xba\x0f\x84\xdb\xc3\x36\x5e\x56\xf8\x3e\xbe\x34\xca\xba\xfc\xe8\x9f\x88\x25\x78\x08\xe3\x9e\x82\x91\x81\xbf\x0f\xe3\xa1\xde\xc3\x23\x12\xa4\xe0\x3e\x1e\xd3\x6e\xad\xd8\xf4\xde\x87\xdf\xde\x1b\x5d\xc4\x0c\xf7\x3e\x4c\xcb\xa4\x0d\xd3\x86\x11\xba\xfe\xf5\x27\x46\x47\x0b\xd4\xfb\x20\xbe\x60\xc4\x3e\xf4\x3e\xba\x69\xed\xa6\xdd\x61\xb8\x0f\x6b\xbd\xbc\x40\x04\xa6\xfe\x3e\xb6\x69\xe4\x4b\xf4\x0c\x5b\xcd\x10\x10\xa8\xc7\x98\xb6\x69\xc7\x34\xf2\x55\xf3\x71\xad\xb9\x87\x6f\x8c\xac\xab\x18\xb9\xce\x04\x24\x36\x31\xde\x4b\xcb\x7d\x18\x33\xb6\x53\x6b\xb7\xc5\xdd\x16\x77\x5a\xdc\xfd\xb6\x7f\xdf\xde\x1a\x52\x64\xd6\x13\x42\x85\x7b\x02\xc6\xec\x28\x89\xdb\x6a\xcc\xa0\x58\x58\x41\xb1\x7c\xfd\xbf\x47\x53\xc4\xe8\xe0\x4f\x2c\xd9\x5a\xc7\x2d\x0d\x3d\xf1\x7d\xb8\x3e\xe8\x7f\x61\x2f\x88\x85\xbd\x20\x72\x5f\x8f\x60\x69\xde\x87\x51\x68\x5b\x24\xcd\xf2\x8c\xd4\x0a\x32\x55\x44\x75\x7c\x1f\xc1\xb4\x4a\x9a\xdf\x6e\xeb\xb8\x3b\x50\x2c\x97\x0b\xf9\x13\xd1\x1c\x87\x48\x54\xc2\x58\x7f\xac\xba\xca\x66\x2d\x4c\x5b\xac\xbf\xc7\xb4\xd7\xb4\xfb\x6d\xb5\xbf\xd5\xc8\x9c\x44\x19\x8c\xb5\x26\xd3\x8a\x69\x7c\x5b\x9b\x69\xd3\xb4\x41\xda\x36\xcd\xe8\xb2\x97\x2f\x8d\xad\xd1\x3e\x74\x0b\x21\xa0\xfe\x8b\x04\x73\xba\x0f\x2f\xc8\xff\xfa\x13\xdf\x44\x0d\x2f\xd2\x92\x81\xb5\x64\x7c\x5d\xb3\xaf\x37\x67\x82\x3d\xc4\x77\x52\x2b\x6e\x44\xa1\x63\xf8\x17\xdf\x09\x0d\xe0\x36\x14\x3a\xda\xaf\xf8\xae\x6e\x9a\xc2\x13\xe8\xe7\x5d\xe6\x13\xa0\x83\x70\x74\x11\xaf\xa0\xfb\xf8\x2e\x55\x8d\x34\x56\xed\xcb\xe8\x09\x74\x97\x7e\xf7\x90\xbc\x0f\x03\x1f\xdf\x1b\x5f\xfa\xdd\xa5\xfe\x27\xe1\x57\xc3\x5a\x49\xbf\x90\x4d\x91\xb3\x21\xa5\x9a\x62\x80\xe5\x94\x6e\xda\x3d\xe1\xee\xe3\xf5\x9c\x2a\x37\x2d\x5b\x3e\x56\x82\x91\x70\x71\x09\xa7\x8c\xfb\x78\x44\x48\xa9\x37\x6d\x9a\xef\xfd\xd2\x6e\x1d\xee\xdf\x29\x20\x06\xb8\xeb\x29\x05\xe8\x24\x05\x6e\x7a\x42\xe0\x25\xc2\x55\xfc\x49\x1f\x2d\x32\x4a\x29\x16\xbe\x8c\xdf\xdc\x5c\x6a\x4f\xd8\xdc\xde\x87\x69\x77\x07\x4e\x18\x3e\xde\x87\x51\x80\x2f\x0d\x24\xd0\xd4\xff\xa4\x04\x93\x1c\x99\xc5\x94\x2e\xc3\xfb\x27\x61\xf1\x17\x22\x9c\x6a\x02\x98\xfc\x3e\xdc\x11\xef\xce\x93\xea\x65\xda\xef\x03\xe8\x5a\xa4\x18\x69\x2f\x7a\xbb\x39\xe9\x44\xb3\xcb\xfb\x32\x9c\x7f\x32\x5e\xea\xa1\x8f\xfc\x0f\x90\xb1\x47\xf6\xff\xe9\x14\xcf\x0f\xdd\xcc\x68\x2e\x42\x86\x79\xca\x0f\x5b\x53\x7e\x14\xde\xa2\xda\xcf\x38\xd0\xde\x47\x35\x8d\x7c\x6c\xe7\x19\xff\xd8\x20\xfc\x42\x26\x06\xd9\x7d\xb0\x18\xd8\xea\xf2\x93\xcc\x97\xbe\x7c\xf5\xa6\xdd\x93\xf2\x3e\x92\x69\x83\xb4\x63\xda\x6b\xe8\xb8\x74\xd3\x8a\xdf\x16\xbf\xbd\xdb\x5f\x7e\x8a\xf9\xca\x97\x8f\x6f\xab\xed\x83\xe4\x3a\x92\x95\xfc\xd4\xc7\xb4\xd7\x34\xda\x02\x79\xe5\x47\xf9\x07\xde\xf8\x99\x70\x62\xf7\x71\xcc\x47\xdf\xfa\x22\xad\x1b\xc6\xae\x53\xde\xb0\x6f\x5c\xee\xf5\x54\xcf\x38\xb0\xde\x87\x62\xf3\x4e\xfb\x58\x74\x19\xbf\xd5\xa0\xd7\x78\x7e\xa6\xf9\xa6\xe3\x37\xf8\x76\x5a\xc7\x54\xa0\x35\xa8\xf7\xee\x73\xf7\xc1\xcd\x0c\x9d\x68\xc6\x59\xf5\x3e\xc2\x7f\x99\xd5\xfc\x6c\xdb\xcc\x35\x2b\xc3\x8c\x66\xc2\x93\xdd\xc7\x30\xec\x1d\x6d\x7e\x2c\xcf\xb0\x7b\xdc\xd1\x33\x4e\xab\xf7\xa1\x0c\xe8\x1e\xb2\xf9\xe5\xf8\xce\xaf\x73\x8e\xa2\x3d\xbf\x3f\xc6\xf9\x0d\xd6\x7b\x89\x38\xe3\xed\x79\x1f\x32\xce\xac\x8d\x37\x53\x9e\x11\xc2\xf4\xfe\xcc\xaf\x73\xf9\x16\xbf\xcd\x77\x5c\x08\x15\x76\x1f\xf6\xed\x6e\x81\xf9\x2d\x7e\x8b\xbc\x70\x00\x1d\x9c\x09\x17\x76\x1f\xdb\x70\x7c\x89\xb4\xaf\xbc\xd7\x7c\xa4\x55\x96\xfb\xdb\x0c\xd5\x57\x68\x73\xeb\xa6\x0d\xf3\x99\xb6\x4c\x3b\xa4\xdd\x43\x3f\xbf\xed\x31\xed\x55\xcc\x4d\x79\xdd\xf6\x19\x2d\x0e\x37\xc8\xfc\xf6\x69\x9a\xe3\xd2\xf8\x76\xfa\xed\xf4\x5b\xe6\x08\xb5\xdd\x7d\x54\x25\x88\xf4\x63\xb3\xc6\xf1\xb0\x0c\xba\xd8\x65\x76\xce\xfb\x98\xa6\x31\x2e\xdb\x31\xdd\xb6\xcf\xb1\xdf\xf6\x8d\xad\x61\x80\xf6\x9a\x51\xfd\xdc\x87\xe5\x0d\xea\x38\xf6\xf7\xd8\xdf\x44\x3f\xdc\x06\x8c\x66\xa6\x97\x5a\x7e\x1f\xdb\xfc\xd8\xe6\x3b\xf6\x85\x9d\xf8\x3e\x58\xa7\x88\x6c\xca\x2f\x24\xd3\x44\x99\xbe\xb7\xa4\x02\xbf\x76\x1f\xd3\x7c\x99\xb4\xc7\x34\x43\x1d\xde\x3b\x7f\x81\x67\xbb\x8f\xef\x16\xfe\x23\xad\x9a\xd6\x4d\x8b\xa4\x4d\xd3\x8c\x30\x78\x99\xcc\x22\x03\x57\x64\xe0\xf4\xf0\x29\xb8\x2c\xde\x87\x7d\x2b\xb4\x19\xa6\xae\xe0\x20\x18\xf4\xcd\x29\x84\x2e\xbb\x0f\xbf\xcd\xb4\x65\x58\x07\x62\xaf\x01\x8b\x50\x3c\x20\x0a\x07\xc4\x4d\xa3\x1f\xf7\x26\x72\x1f\xb6\x25\x53\x1e\x2c\x47\xf1\xfa\xa1\x07\x4b\xf9\x6d\xc7\xc0\x79\x43\x82\x5f\x7e\xa7\x90\x76\x6c\xcb\xdd\x73\x8a\xcc\x72\x09\xee\xa7\x38\x6f\x94\x00\xfb\x57\x02\xec\xcf\x00\x84\xb1\x04\xc7\xd9\xe0\x5f\x03\x70\xc5\x12\x42\x33\x0d\xb0\x65\xd0\x5a\x0b\xee\x6c\xf7\xb1\x4d\xe3\xdb\xc8\x18\x10\x2c\xec\xa6\xdd\x39\xc2\xa5\xed\x3e\x18\x2b\x4c\x0f\x4b\xc8\xb6\x25\xdb\x96\xbb\xfe\x4a\xc8\xd6\xfb\x8d\x73\xe7\xdb\xcb\x83\xdd\x07\xfb\x10\x36\xfa\x05\x6e\xf8\x3e\x9a\xe5\xf5\x9b\x56\x6d\x5f\x55\x1b\xf4\xa3\x6f\x8d\x31\x08\x9f\x08\x39\xd0\xe6\x69\x7f\xa7\x88\xe1\x89\xf2\x96\x6d\x41\xb6\x36\x70\x74\x2e\xf8\x7f\xdd\x87\xe2\xa5\x48\xda\xb6\x2d\x5b\xa1\x4a\xa2\xbf\x87\x39\x0a\xca\x56\x50\x3d\x94\xf0\x5a\xde\xab\x60\x88\x75\x10\x5e\xfb\xf6\x21\x95\x67\xd3\x1c\x97\x57\xc1\xef\x3d\xb2\x0b\x7e\x5a\xf7\x61\x9b\xef\x59\x56\xa2\x63\x8a\xef\x54\xd0\xce\xb4\x44\xd7\x2e\x1c\x78\x18\xe0\xc1\x95\x08\xc3\x5b\x08\x18\xf5\x09\x7d\x4a\x84\xa1\x28\xf8\x57\xdd\x7c\x7c\x9b\xfc\x16\x96\x4d\xbb\xd0\x12\x33\x73\x19\xb3\x7d\xbb\x7b\x49\x89\x05\x3a\x8a\xee\x6b\x80\x87\x96\x58\xad\xa3\x5a\xc7\xdd\x5f\x0a\x5c\xf7\x7d\x28\x9d\xbf\xfb\x46\x89\xc3\x7a\x3d\x8f\xca\x08\x7f\x3d\xee\x4b\x1c\x16\x23\x9e\x37\x18\xa0\x25\x8e\x97\x34\xa3\xcf\x62\xfa\x56\x22\x9c\x78\x89\x46\x9e\x45\x36\x5c\xe2\xb4\x59\xd3\x2e\x0d\xba\x2e\xf9\xe8\x9e\x34\x70\x0a\x2f\x51\xb2\x88\x92\x05\xee\xa4\xc5\x7b\x6a\x89\x1e\x4d\x70\x53\x85\x4b\xeb\x7d\x7c\xfa\x44\xea\x7d\x98\x56\xc2\x15\x05\x21\x0d\x0b\xf1\x8a\xee\xc3\x20\xa1\x6c\x35\xc4\x0f\xba\x0f\xa5\x58\x97\x73\x2a\xf1\x75\x28\xdf\x4f\xe5\x70\xdb\x92\x24\xc7\x24\xe9\x81\x0e\x57\xf0\xc7\xf9\x53\x92\x11\x5e\x51\xd2\x16\x3c\x71\xee\xa3\x99\x76\xc7\x25\x45\xbf\x35\x6a\x2b\xea\x95\x92\x12\x6d\x4e\xc9\xfe\x0e\xca\x4b\x96\x27\x99\xc1\x15\x96\x24\x99\x11\x1a\xe8\xa6\x91\xcf\x2d\x2e\xa9\xc3\xc3\x69\xb2\x24\x38\xca\x92\xd4\xaa\xe1\x2f\x59\x88\xeb\xf3\xa7\x10\xc6\x27\x64\xbc\x03\x0b\x71\x7c\xee\x83\x7e\x00\xf7\x59\x92\x5b\x61\x42\xc9\x93\x11\x75\x95\xc4\xf1\x57\x08\xef\x73\xf3\xdd\x31\x4d\xce\xaf\xd1\x75\x32\x6e\x73\x25\x4d\xfb\x2b\x3b\x82\x66\xae\x24\xb7\x3d\xfd\x5f\x06\x12\xa9\x92\xb6\xe5\xed\x4f\x95\x45\xbd\x87\xa5\x8d\x0f\xca\x4d\xbb\xeb\x00\x67\x93\xfb\xb0\x2d\xf7\x68\x2a\xe9\x19\xa6\x1d\xd3\x28\xef\xb1\x2d\x48\x05\x33\x12\xff\x82\xe7\xc8\x7d\x40\x66\xa8\x04\x4a\xfe\x31\x7e\xb8\x85\xdc\x7c\xa6\x75\xd3\xa6\x69\x83\x34\xd6\x5f\x96\x45\xc1\x75\xab\xe4\x40\x1d\x39\xaa\x6d\xe2\x18\xca\x6e\x8f\x59\x16\x14\x51\x78\xc9\x69\x99\xb6\x4d\xbb\xfd\xc8\xcd\xb4\xa6\x0c\x34\xf3\xed\x34\x6d\x9a\xaf\x90\xb6\x4c\x43\x50\x3f\x00\xc0\x2a\x19\x36\xad\x64\xd9\x34\x3c\x91\x0a\xce\x0b\xf7\xe1\x98\x5e\xce\xbd\x64\x6e\xa0\x25\x6f\xfb\xcb\xbc\x65\xc7\x39\x6f\xdb\xc7\xb6\x92\x1f\xd6\x5a\x7e\x14\x29\xb3\x0e\x8a\x5b\x57\x41\xee\x92\xb1\x0f\x28\xa5\x91\x8f\x20\x1a\x61\x00\x70\x54\x4a\x67\x3e\x08\xa0\x11\x06\x2c\x68\xc1\x04\xfc\x3e\xfc\x96\x2d\xa4\xf4\x61\x9a\x63\xea\xb7\x83\xb1\xc7\xb2\xfb\x7e\x4b\x3e\x8f\xd8\x32\xcc\xc7\xfc\x12\x25\xe3\x3e\x1c\x2b\xf6\x8d\x32\x1e\xd3\x6c\x0b\x6c\x86\xb7\xfa\xa2\xe1\xf7\x40\xe5\x58\x8a\x7b\x49\xf9\xc6\xd4\x3a\x1e\xf3\x49\xe7\x78\x5a\x94\xf2\xda\x37\x44\xb3\x19\x3d\x7e\xa9\xce\x79\x85\x7e\x07\xea\x86\x42\xa4\x87\xfb\x18\x06\x9a\xb8\x63\x8a\xd5\xf1\x7d\x70\xe4\xc0\xbe\x16\xcc\x84\xef\xe3\x35\xed\xce\x11\x26\xbf\xf7\x51\x4c\x1b\xa4\x0d\xd3\x26\x69\x99\x6f\xab\xf5\x72\x5b\x1f\x00\x9e\x94\x3a\xcc\x37\xcc\xc7\x11\x51\x5d\x07\xd5\x39\xc7\x8a\xa4\x54\xe7\x97\xd8\x03\x61\xc0\x6e\x96\x7a\xd8\xc3\x2a\x9a\x85\x4c\x50\xc2\x52\x1f\xe6\xa8\x22\xd1\x1f\x20\x6e\x94\xfa\x5a\x87\x47\x18\xba\xb0\x42\x70\x80\xfb\xb0\x6f\xb0\x32\x4d\x9a\x69\xd2\x0c\xf7\xf0\xd2\x60\xeb\x4b\xfb\xd9\x3e\xe8\xbc\x21\x97\x2b\xc4\x05\xb8\xf9\xee\x18\x34\x8f\x35\x4d\x4b\x07\xec\x6b\x69\x8e\x55\x93\x2d\xc0\xc4\xbf\x00\xc6\x7f\x1f\xac\x71\x74\xc9\xa5\xc9\x16\x60\x62\x19\x44\xaa\x2c\xad\x99\x06\x5b\x30\x40\x50\x28\x4d\xb6\x00\x3b\xc6\x90\x01\x85\x2f\x6d\x9b\x6f\x1b\x7c\xb9\x51\xc7\xb1\x6f\xa8\x79\x06\x96\x87\xa5\xc1\xd2\x96\x66\xd0\x65\x22\xb3\x94\x26\x7d\x34\xe8\x63\x60\x2f\x58\x9a\x63\xd5\xbe\xb1\x62\x8d\x77\xc7\x05\xe8\xf6\x9b\xaf\x93\x56\x4c\x63\xff\x23\x0e\x5a\xe9\xee\x2f\xdd\xfd\x85\x50\x65\x05\xac\xf5\x3f\x05\x68\xf5\x90\xb1\x66\x2f\x1d\xe9\x5b\xe9\x18\xa7\x64\x82\xc1\x96\xee\xd1\xde\x91\x66\x65\x4c\xcf\x4b\xcf\xdb\xb4\x63\x30\x93\x3b\x56\xbd\xd0\x5f\x20\xcd\x43\xc6\x32\xab\xf4\x4a\x7f\x7b\xd5\x86\x84\xf5\xdc\x91\x20\x94\x8e\x92\x7c\x60\x62\x57\x7a\xb7\xbc\x6e\x79\xf9\xf7\xf7\xe3\xbe\x4b\x8e\xa0\x88\x87\x8c\x01\x50\x01\x16\xfc\x3e\x34\xda\x82\x2c\xba\xdc\x59\x5f\x56\xc7\xd1\xd4\x97\x5d\x52\x31\x49\x24\xad\xd2\x3d\xc6\xbb\xc7\x38\x66\x28\xa5\xcb\x9d\xf5\x63\xb3\x38\xc2\xfa\xb1\x5e\x8f\xf6\x61\x79\x0f\x5b\x66\xff\xe2\x60\xb3\x8d\x76\xa7\xb0\x7f\x53\xc8\x96\xd9\x9d\xc2\xee\xd1\x0e\x8c\x7b\xc1\xa4\xeb\x3e\xaa\x69\x9d\xb4\x61\x9a\x26\x31\x6c\xc1\x43\x2e\x4e\x23\xa9\x91\xe1\xba\x86\x4b\x5b\x53\xa7\x4c\xc0\x95\x82\x75\xd3\x7d\x3c\xa6\xdd\x71\x19\x1e\xcf\xda\xdb\x64\x74\x54\x05\xdb\x99\x3f\x45\xdb\x98\x4c\x90\x95\x32\xe4\x8c\x3f\xdb\x17\x6c\x90\x0b\x76\x1f\xf7\x61\x79\x90\x00\x66\x19\xf7\x61\xcc\x70\x96\x13\x76\x0e\xf7\xf1\xa5\x51\x9e\xd3\x3a\xbe\x69\x85\x44\x87\x9c\x9d\x66\x04\x03\x77\xe6\x82\x09\xc0\x7d\x34\xe3\x85\x33\x2e\x6e\xad\xea\xd9\x47\xb6\x2d\xdc\x44\x8b\x1a\xe9\x81\x4f\x6f\x41\x99\x7a\x1f\x5f\xec\x70\xc6\xe0\xf8\xed\x51\x4f\x05\x59\xa0\xff\xbc\x0f\xc4\xb9\x40\xbb\x97\xe1\xfc\xaa\xe6\x2c\xd8\xe0\x94\x21\x4b\xa6\x4a\x52\x60\xd2\x32\x9c\x37\x35\x6f\x03\x2f\xd2\x32\xdd\x7e\xd4\x5e\x0d\xdc\x3b\xcb\x74\xde\x00\x80\x0e\x83\x40\xe3\x05\x04\xe8\xfb\x30\x9e\x39\xac\xd6\xf4\x18\x9f\xc6\xd5\x06\x2a\xbe\x4c\x59\xad\x89\x21\xd6\x28\xe1\x8e\xcb\xf4\xf6\x32\x31\x80\x1a\xd8\x2f\x95\xe9\x36\x35\x99\xb7\x81\x0a\xad\x4c\xb7\xf4\xe9\x96\x8e\x05\x47\x99\xde\x12\x27\xb7\xc4\x42\x3c\x8d\x32\xa5\x99\xe9\x11\x86\x62\xb9\x4c\x69\x01\xdc\xe2\x9b\x76\xfb\x3b\x37\x73\x34\xd1\xae\x17\x60\xe4\xcb\x94\xf5\x05\x8b\x38\x8c\xc2\x7a\x9e\x8e\xe9\x3c\x5f\x6c\x21\xfa\xe1\xf8\x4d\xc7\x0f\xe7\xb0\x32\xa5\x85\xf9\x58\x07\x47\xfb\x94\xcd\x9d\xaf\xdf\xc2\xae\xaf\x1f\xfd\x5d\x5f\xec\x77\x58\x0a\x00\x7d\xef\xc3\x6f\x61\x73\x97\x63\xb0\x8c\x39\x8e\xe0\xbc\x2c\xd7\xee\x32\x36\xbb\xb7\xe2\xe5\x96\xb4\x8c\x47\xee\xad\x18\x10\xde\xfb\x70\xce\x59\x93\x0b\xa1\x76\x01\x87\x37\x14\x60\xbd\x0a\x40\xbc\xf7\x51\x8d\x7d\x44\x79\xcd\x7a\x9b\xf5\x72\xeb\x5c\xb2\x23\x0b\x33\x9f\xe1\x75\x62\x79\xa3\x59\xdc\x68\x0a\x61\x0d\xca\xea\xf6\xad\xdb\x37\x68\x66\x0d\xeb\x18\x5f\xda\x1d\x97\xe5\x51\xb2\x60\x5f\x8b\x37\xe0\xb5\x6c\xdf\x32\x8d\xeb\x04\x40\xbb\xf7\x31\x4c\xe3\x5b\xc4\xda\x05\x7c\xdd\x50\x50\x43\x95\x25\x9b\xb6\x60\xc9\x0a\x8a\xa8\xb2\x8e\x69\xd2\x07\x6a\xa6\xb2\xdc\xd7\xd6\xa7\xd8\x4f\xd4\x21\xeb\xbb\xd0\xe2\x17\x6f\xb6\x80\xee\xde\x87\xf5\xb2\x76\x97\xfb\xdf\x7a\x3e\xdb\x0e\xbf\xb5\xbc\xe7\xfd\xaf\xbd\x47\x59\xaf\xfd\x7d\xed\x07\xb7\xd3\xed\x71\xb5\x39\xae\x06\x3e\x31\x65\x23\xa5\x2d\x5b\x65\xb0\xb7\xd3\x8d\xc4\xae\xec\x9f\xe5\xc1\x7a\x6c\xe9\x08\x4c\xdd\x30\xbc\x7a\x6d\xd9\xe1\x6d\x6c\x7a\x44\xef\x65\xbb\x86\x76\x76\x5c\xda\x5d\x93\x3b\x5b\x6f\xb6\x2d\xad\x92\x66\x1d\xb0\x05\xc5\x2b\xda\x96\x85\xda\x2a\x9a\x40\x93\x2f\x1b\x69\x69\xd9\xda\x45\x11\xf6\xb5\x6c\xaf\x1d\x7b\x1a\xfb\x0a\x1a\xdc\xb2\xd7\x5b\x1b\x1e\x42\x2d\x94\xbd\xec\x1b\x01\x0b\x8b\xd7\x9d\xed\xd5\x01\xa3\xfb\x50\x88\x48\x50\x8e\xfd\x3d\x3f\x4d\xb4\x38\x3a\x0f\x2a\x84\x72\xb8\xca\x15\x50\xe2\xcb\x91\x15\x3c\xb2\x82\xb5\x98\xb6\x4c\xdb\xe6\xbb\x7d\x3b\x48\x28\xcb\xe1\x3a\x36\xc0\x9c\x29\xc7\xb5\x7b\xfa\xf7\xed\x1d\x2b\x9c\x20\xee\xa3\x18\xc3\xeb\xf6\xed\xa0\x80\x2a\x47\x73\x1d\x3c\xe8\xca\xf1\x8a\x0b\x1a\xe6\x4d\xa3\x3c\xd7\xcb\x71\xbd\x44\xf6\x92\xf3\x14\xd3\xec\x2f\x92\x0b\xe0\x31\xef\x83\x73\xa1\xb6\xf1\xf7\xe3\xfe\xbc\x16\xad\x99\x45\xb4\xf9\x0a\x40\x0e\xd6\x11\xc3\x1b\xdc\x91\xab\x3e\x46\xad\x07\xd6\xb7\x3c\x0a\xa9\x1e\x6e\xca\x05\x18\xdf\xf2\xb8\xdd\x3e\x2e\x09\xac\x1a\x0b\x8e\x02\xf7\xa1\x75\x0d\xd3\xff\xc8\xc1\x3c\xd5\x6f\x11\x2a\x3d\x1e\x89\x0f\x76\x8f\x83\x68\xcf\xe5\x71\x6b\x00\x60\x32\x0c\xb4\x4c\xe5\xf1\x66\xfb\x34\xdb\xcc\xd1\xf9\xc8\x3d\x3e\x08\x71\x8b\xb7\x97\xc7\x9b\xd9\xd3\x3e\x6b\xbc\x42\x9a\xed\xfb\x42\xa0\x71\xdb\x45\xc2\x7e\x1f\xed\xbf\x56\x1a\xe5\xf1\x48\x7c\x5c\x4e\x20\x7f\x96\x47\x8e\x1c\x39\xfa\x4d\x23\x9f\x1c\xf9\x73\x3e\xfb\x0a\xca\x73\x0a\x1f\xa6\x70\x60\x15\x53\x1e\xb9\xd1\x47\x93\x1e\x6f\x1b\x8f\x5b\x3a\xf2\xf6\x9b\x46\x79\x6e\x03\x0a\xdf\x47\x63\x5b\x79\x1e\xfb\xc6\xd6\x30\x9a\x75\xbc\xb6\xf9\xb5\xcd\x48\x1f\x1e\xb7\x7e\x60\x24\x6f\xda\xcd\xf7\xff\x33\xf6\x26\x37\xb8\xeb\x38\xdb\xed\xbc\xa2\xa8\x10\x2c\xdb\xea\x80\x8d\xca\x45\x94\xed\xfc\x43\xb8\xe0\x5a\xef\x77\xfe\xd1\xc5\x3e\x23\x01\x82\xad\x5e\x14\xdb\x87\x9f\x57\x1e\x10\xc8\x22\x9c\x6e\xfd\x54\x24\x7e\x28\x12\xab\x92\xca\xa7\x22\xf1\x2b\xce\x17\x52\xf3\xa9\xcc\x22\x5a\x27\xeb\x72\x7c\x2a\xdf\xab\xca\xf7\xaa\xa4\xf2\x79\x95\x3f\xa5\xa1\xee\xbf\xcd\xef\x9a\xdf\x35\xeb\xa6\x75\x8f\x75\xb9\x06\x9f\xfb\xfb\x49\xfa\xf1\x8c\xab\x9f\x7b\x04\xb8\x62\xd6\xf1\x1d\xb6\xb0\xfa\x0d\xd7\x80\x2b\xa0\xa2\xbd\x7e\x92\x7e\x25\x90\x4f\x12\xf2\x4d\x1d\x0c\x79\x4a\x3e\x35\x58\x1f\xca\xde\x8a\x02\xbd\xe2\xdc\x92\x85\x7d\xf0\x94\x7c\xb2\xb9\x9f\x4e\x83\x84\xbb\xd5\x4f\x6d\xd5\x87\xb2\x77\x92\xea\xad\x6a\xd1\xac\x5a\x34\x27\xe0\x26\x55\x85\x7c\x55\x21\x5f\xf1\x17\xac\x9f\xcf\x01\x3a\xf8\x32\x3b\xec\xe6\xa7\x26\x44\xe5\x7b\x25\x8a\xaa\x7e\x9e\x17\x74\xf0\xf9\x1d\x63\xf6\x69\x57\xf9\x3e\x81\xea\xa8\x60\x16\x66\xf1\x4b\xeb\x57\xff\xf3\xa7\x69\x0f\x6d\xda\x43\x27\xae\x55\x4d\x0f\x89\xa6\x87\x84\x2e\x8e\x4d\x1f\x89\x76\x18\x3f\x40\xc8\x52\x3b\xf0\x13\x68\x2a\xda\x2b\x8a\xf6\xa6\x95\xb4\x1d\x3a\xa4\xe3\x16\xd7\x40\x17\xcc\xc2\x33\x34\xf8\xb7\x7e\xd4\x99\x7a\x10\x49\xbe\x81\x05\x98\x05\xe7\x8a\x30\xa0\x06\xda\x5f\x16\xcb\x3a\xfe\x6d\x8e\xcf\x73\x80\x97\x79\x3b\x9a\xed\x75\xfd\xb1\x6f\xda\xc3\xb8\xd2\xc0\xe6\xcb\x3e\xf8\x97\x3d\x6f\x07\xc6\x95\x09\x6e\x44\x03\x98\x2f\x8b\x5f\x7b\x23\xeb\xa6\xdf\xc9\xa6\x21\x62\xb4\x63\xda\xc7\xb2\x8f\x4a\x1f\xcb\x3e\x74\x3b\x25\xaa\xa6\xa9\xcc\x6f\xb8\x0f\x95\x4a\x94\x4c\x3b\xc2\x3e\x24\xd5\x77\x63\x6e\x8f\xeb\xa7\x21\x05\x9c\x83\x76\xb0\x97\xed\xf0\xee\x03\xf6\xd2\x8e\xc7\x7e\xf5\xe0\x03\x84\xa9\x1d\x9f\xfb\xf1\xfd\xea\x68\xef\xb3\xbd\xcf\xcc\x89\x27\xf3\x85\x45\x6e\x87\x77\x1a\xb6\xbe\x15\xa4\xce\x56\x0e\xcf\x50\x9e\xf1\x06\xe8\x5d\x16\x9f\x75\x39\x0f\x0d\x01\xad\x14\xff\x9d\x39\xbe\x92\x32\x4d\x16\x9c\x67\x24\xfe\x56\x78\xc6\x1b\x0e\x49\xf9\x5d\xae\x5f\x41\xb4\x69\x85\x3d\xaf\x84\x98\xb4\x72\xdb\x9e\xcf\x1f\x90\x31\xad\x54\xc7\x52\x7f\x5e\x90\x8c\x0f\xff\x86\x06\x88\x5d\x99\x20\xc8\xb4\xe2\xd9\x28\xb2\x82\x35\xa5\xd8\xa6\x71\xa0\x81\x63\x97\x75\x8c\x19\x11\xa8\x61\x23\xc8\x7f\xe9\x03\x03\x6c\x2b\x18\x60\x2b\xa0\x28\x0d\xcc\xba\x2c\x5e\xeb\x68\x8f\x67\xb7\x15\x3d\xc3\x81\x2d\x69\x7a\xd6\xb4\x22\x4b\x01\x0b\xdf\xca\x74\x2c\x38\x59\x4f\x20\x03\x1a\x78\x75\x59\x70\x4e\x31\x22\xb4\xb2\x5c\x2b\xd9\x0c\xc0\x5c\x1b\x38\x73\x59\xb8\x7e\x2d\xef\x56\xd9\xce\x03\x8d\x67\x05\xa6\xa3\x61\x79\xc8\x82\xfb\x8b\xe6\xa2\x95\xcf\x79\x7c\xce\xb7\x32\xe6\xcf\x79\x7c\x9e\x97\x7c\x2f\x9b\x7e\x3e\x4d\x63\x43\xc5\x33\xac\x9d\x68\xb0\xda\x29\xdb\x02\xfb\xdf\xc0\x82\xcb\xc2\xf9\xfe\xe3\x80\xf7\xff\xff\xdc\xb7\x53\x72\x71\x4a\x2e\x70\x93\x6b\x00\xbe\x65\xe1\x12\x31\xd4\x13\x77\xa9\xf6\xb3\x4f\xa0\x14\x69\xa7\xc7\x04\xf0\xb6\xfc\x2e\x97\xf2\xf4\x98\x00\xdc\x56\x2a\xae\xfd\x4d\x97\x87\x76\x12\x10\x32\x51\x8a\x34\xb0\xd8\xb2\x30\xf9\xe7\xa4\x3d\xc8\x7c\x3b\x87\x2e\xf1\x93\x7e\x51\x2e\xb6\x73\xb8\x0d\x1c\x45\x6d\x16\x4d\x9b\x45\x25\x64\xa7\x69\x94\x68\x1a\x25\x2a\x31\xe8\xed\xf4\x8a\x9e\x5e\x51\xd2\xe9\x36\x80\xc8\xb2\x80\x0b\xc6\xb9\xb9\x9d\x6e\xd7\x09\xf9\xae\xf8\xa9\x36\x40\xca\xb2\x08\xbf\xa3\xdf\x6d\x7b\xfb\xd7\x5e\xa3\xce\x31\x63\x63\x35\xee\xa4\x9d\x8f\x6b\x25\xd7\x4f\xf0\x75\xc3\x92\x91\x85\x7d\x70\x3c\xcf\xc7\x35\xc0\x13\xb8\x12\xa2\xdc\xce\xd7\x3e\xe4\xe6\xe1\x6e\xdb\x09\x37\xdf\xce\xcf\x31\x43\x96\x35\x54\x34\x0d\x15\xc6\x6d\x34\x60\xba\xb2\xd0\xc5\x07\x92\xa9\xb1\xa1\x69\x6c\xa8\x78\x9d\xb7\x0b\xbf\x89\xa6\x61\x61\xe2\x84\xd6\xae\xdb\xef\xcc\x3a\x3b\x6d\xef\x66\x6e\x57\x75\x6e\x5c\xdb\xcb\x2b\x7a\x79\x45\xc1\x60\x6c\x57\xb7\xdf\x6e\xbf\xc9\xdd\x36\x5d\x55\xda\xa5\x64\x06\x54\x61\x03\xa7\x2b\x0b\xae\x00\x8e\xcb\x0d\x8b\x42\x16\xee\x65\xb3\xce\x3e\x7c\x76\xc1\x89\x6b\xba\xb9\xb4\xeb\xb7\xce\x9c\xd3\xeb\xb1\x5f\x59\xad\xc6\x59\xbb\x24\xad\x80\x58\x95\x39\x1d\xcb\xeb\xdc\x5e\xd7\x00\x52\x78\x79\xf5\x34\x18\x54\x5c\x6e\xda\x0d\xd7\xdf\x6e\xb9\xfe\xc6\x39\x05\xd9\x29\x0b\xee\x07\x81\xea\xed\xc6\xf6\xdc\xee\xd3\xb3\xc1\xf8\xc8\x7b\x9f\x85\x67\x83\x73\x7a\xa3\xf8\x6b\xa6\xbe\x9f\x68\x83\x1a\x39\xe2\xb3\x60\x6e\x3d\xa5\xce\x76\x7b\x9e\x49\xe3\x5e\x2a\x38\x72\xed\x5e\xf6\x4b\xc0\x43\xc5\x17\xbc\x91\x93\x3d\x0b\xfd\xf7\x39\x6b\x77\xb0\xa6\xb7\x5a\x05\x22\x04\xda\xed\x19\xbf\x75\xc6\x87\x3d\x6c\x60\x18\x65\xe1\xbf\x27\xff\xbe\xf6\xab\x14\xd1\x2f\xbe\x43\x8a\x68\xa4\x55\xcf\xba\x1c\x5f\x75\xbe\x15\xf7\xc1\xda\xd9\xb7\x8a\x6d\xb2\xd5\xcb\xc8\x25\xce\x41\x95\x1e\x98\x19\xbc\x62\x80\x68\xd5\x73\x55\x6f\xeb\x38\x07\x15\x0d\x42\xab\xd5\xa4\xbb\xb0\x1e\xa4\x07\xcf\xc2\x7e\x1b\xfd\xfa\x94\xd4\x7c\x4a\xce\x83\xec\xb6\xad\xfa\x6c\x54\xc5\x04\x90\xcc\x5a\x95\x7d\xa8\xb2\x0f\x80\x92\xb5\xda\xed\xc3\xe8\x25\x59\xa3\x8a\x48\xd0\x80\xb4\xc9\xba\xbc\x6f\x75\xd8\x9e\xf1\x42\x00\x89\xb5\xea\x13\x51\x7f\xd1\x38\x83\x7f\x67\x58\xe7\x1a\x70\x5e\xaa\x7b\x54\x7f\x7b\x34\x59\x03\x9f\x08\x8d\x12\x95\x40\xc3\x56\x71\x96\x6b\x35\x8c\x73\xe4\x6c\x54\x5c\xbe\x1a\x9e\x89\x39\x37\xbe\x93\x5e\xe9\x7e\x58\x65\x65\x48\xed\xfd\xa7\x09\x60\x73\xe0\xd7\xd1\xea\x76\xcc\xdb\x04\xc3\x17\x63\xde\xf6\x4b\x94\x44\x05\x93\xaa\x55\xf7\xb2\xbe\xfa\x8a\x43\xd7\xc0\x9a\xc9\x62\x5a\xc7\xdc\xa4\x39\xf5\xb5\x5f\xd8\xc3\xfa\xb9\xe7\x9f\x75\xac\x7d\x43\xbc\x6b\x0d\x88\xc3\x03\x6d\x5a\xc3\xb7\x31\x8b\xee\x77\x8d\xba\x69\x9d\x0e\x9d\xa7\xdf\x71\x36\xda\xcf\x71\xef\xa2\x3d\xc4\x8e\xd6\x14\x3b\x88\x6a\x68\x0d\x2d\x5e\x13\x98\xe6\x20\x4b\x6f\x6b\xc5\x7f\xcf\x5f\xf4\x03\xed\x9d\xfe\x6b\x02\x62\x32\xec\xb6\x26\xfb\x6a\xe6\xef\x0a\xfa\x51\x6b\xde\xc1\xe6\x5b\x86\xa1\xa2\x35\xe9\xa4\x99\xba\xab\xec\x88\x86\x9e\x66\x66\xee\x3a\x60\x0f\x1b\xda\xaf\x26\x14\xcc\x71\xfc\xea\x1e\xeb\x38\xcf\xb2\x0a\xba\x6f\xb6\xd6\xdc\x4b\x58\x46\x0d\x42\xad\x19\xd9\x87\xbb\x5d\xd3\xf8\xd3\x30\xfe\xe4\x77\x93\x3a\xe7\xd6\x6c\xaf\xd3\x9e\x2c\x4f\x53\x9c\x25\x45\x7d\x6b\xb2\x3c\xcd\xb3\x2b\xfb\xd0\x86\xf3\x95\xc6\xe6\xdb\xfd\xd7\xe7\xbe\x0d\x97\x77\xb8\xbc\x5c\xb3\xe6\x71\x6f\x1e\x77\x32\xd0\xb7\x36\xed\xce\xe7\x94\xa8\x90\xd6\xe4\x82\xcd\xad\x5d\x7d\xc6\x9b\xc7\xb3\x6d\x97\xa8\xf3\xdd\xf6\x5f\x15\x61\x84\xc6\xb5\xf6\x38\xa5\xff\xcb\x89\x6d\x9d\xdb\x00\x5a\xd2\x71\xd8\xef\xe3\x12\xa9\x28\x06\xa3\xa7\x35\x8f\x6c\x7b\x97\xdf\xb1\xfd\xaf\xcb\x46\x60\xff\x81\x3b\x4c\x03\x4d\x25\x0b\x03\x44\x0a\x7d\xc8\x41\x6b\xf7\xaa\x84\x3f\xb7\xe6\xd3\xd9\x7c\x3a\xc9\x46\xdf\x30\x78\x65\x21\x49\x62\x6e\x5d\xae\xba\x1f\xbf\xc8\xe7\xdc\x86\x2e\xbb\xd4\x3d\xb2\x60\xe3\xb4\x8e\xc7\x75\x03\x6a\xa5\x54\x8c\x21\xad\x9f\x8c\xa5\x9f\x5e\x15\x24\x95\x8e\xf4\xdc\xba\xc7\x13\xe0\x9a\xd6\x25\xad\x1d\x23\x42\x05\xc0\xa6\x91\xb8\x3a\x0b\x73\x83\xb3\x06\x18\xd0\xfe\x34\x6d\x66\xc6\xfc\x34\x60\x4e\xb2\xb0\x5f\x8e\x5d\x57\x6a\xea\x4a\xcf\x60\xc0\x34\xf0\x46\xb2\xf0\x3b\xf6\x1c\x14\x91\x3f\xad\x1b\x7d\x08\xcc\x4a\xeb\x72\xbc\xe4\x8e\x3e\x8f\xe2\xba\x60\x9f\x6d\x7d\xba\x1f\x90\xcc\x2e\x39\xeb\xf1\xfb\x97\xef\xc2\xb9\xa9\x1d\xc1\xa0\xd1\xba\x4f\x76\x97\x0d\xc2\xd7\xbb\x75\xd9\x20\xf2\x3b\x9f\x07\x69\x46\x5b\x97\x33\xc6\x3c\x97\x75\xb4\xf7\xfa\xaf\xd2\x10\x9e\xdd\xad\xe3\x9a\xd3\x48\xbd\xfc\x8b\x17\x6b\xda\xe5\x9a\x29\x95\x0f\x94\xa9\x8d\xdc\xc9\x59\x5c\x7e\xd7\xa8\x6b\xd6\x75\xeb\x06\x75\x8f\x75\xaf\xff\x52\x77\x42\x06\x86\x81\xf4\xb8\xf9\x35\x0c\x77\x59\x70\xbd\x09\x1d\x6c\x03\xe5\x67\x1b\x97\xb1\x6b\x9c\x2b\x72\x21\x67\xf1\x58\x47\xbf\xb8\x4f\x35\x52\x1d\x67\x1d\x7d\x48\x56\x48\x67\x5c\x1a\x09\xd9\x1b\x39\x8c\xb3\xb8\xad\xe3\xdf\x69\x9d\xd1\x9e\x87\x73\x5b\x8e\x65\x39\x3e\xa4\xe7\x21\xbb\x84\x4d\xae\x34\x49\xe6\x70\x8f\x34\xc6\x35\xc9\xe3\x40\x83\xd5\x46\xb8\x7e\x48\xc5\x43\x56\x61\xc0\x2a\x34\x12\x86\xb7\xa1\x14\x8b\x9d\x2e\xeb\x3a\x75\xb6\x07\x5b\xd5\x48\xc0\xdd\xc6\xeb\x77\xaf\xdf\xf1\xb4\x6b\x78\x6b\xc3\xd0\x29\xe9\x0b\x56\xb8\x2c\x1e\x73\xdd\xe7\x3d\x9a\x4a\xa7\x3f\xd0\x06\x0c\x0b\x8d\xa8\xfb\x2c\x96\xb9\xef\xf3\x6c\x4c\xd7\x45\x43\x59\xc3\xd3\xbe\x11\xfd\x9d\x85\x7d\x70\xd6\xa6\x24\xd8\xb0\xec\x06\xaa\x5f\x23\x42\x3a\x0b\x22\xce\x30\x0e\xb4\x29\x0b\x60\x80\x72\x23\x67\x71\x9b\xd2\x44\x33\xca\x1e\xc5\x7f\x7d\xee\x0d\x72\x6d\xde\x5f\xa2\x3d\xb3\xf0\x1c\xf8\xaf\xec\xd7\xf4\x79\x26\x33\x62\x9b\x3e\xc5\xbf\x18\x45\x3c\xc1\x1b\x31\x8a\x59\x7c\x7e\x97\xeb\x32\x7d\x9e\xcd\xaa\x7a\x10\x49\xd8\x96\x4f\x1d\x76\xab\xd2\x0a\x34\x67\x79\xd6\x16\x38\x04\x8d\xe8\x95\xb6\x88\x0b\x6a\xcb\x7c\xf7\x64\x04\x6c\x58\xaf\xb2\x78\xac\xcb\x75\x59\xc4\x05\x35\xb2\x91\x96\x46\xd2\x90\xb6\x64\xab\x16\x12\x7a\x2b\xd0\x9c\x25\xbb\xb4\xc8\xd7\x76\xa0\x78\x6e\x6b\xb0\x7e\x0b\x8f\xf6\x06\xd8\x5e\x5b\x6a\x4c\xd6\x72\xbe\xd0\xa1\xb5\xec\x63\xd9\x87\x75\xb2\x28\x6b\x5b\x07\x7b\xb8\xa4\xf7\x1a\xb1\x1a\x2e\x6e\x6d\x49\xef\x97\x77\x1f\x6d\x73\x0b\xd9\x8c\x90\xcd\x20\x89\x5b\x0b\xb5\x55\x71\x0a\x00\x61\x1d\xfe\x1a\x2d\xc8\x05\x66\x5e\x89\x16\x8a\x3b\xd8\xb2\x4a\xc3\x33\xbf\x85\xda\xaa\x00\x1e\xa1\xe1\xaf\xd6\xc2\xf5\x8b\xdf\xfa\x41\xd7\xc2\x73\x65\x22\x49\xb3\x4b\xb4\x40\x2b\xdd\x34\x4e\x35\x52\x9a\xb6\xf0\x0c\x05\x4f\xb1\xd1\xde\x2d\xd4\x4c\x85\x91\xe6\x64\xfb\x6c\xa1\xe8\x1a\xc3\x7d\x83\x3d\x24\xcb\x63\x16\xdf\x3f\x71\xcc\x2d\x36\xe7\x20\x10\x49\x1b\x99\x2d\x9b\x86\xa3\xa6\xe1\xa8\x91\xee\xb6\x85\xb4\x33\xbc\x97\x67\xa9\x7f\x7f\xee\xb5\x17\x35\xed\x45\xed\x84\xa4\x6f\x97\x0d\xf3\x4d\x69\xb8\x4a\xb5\x2d\x99\x22\xa7\x61\x69\x1e\xa7\xed\xd1\xd9\x00\x6e\x1d\xa4\xb4\x6a\x5b\xa9\x7d\x03\xc0\x74\xe0\x36\xd3\xb6\x1c\x11\xa9\x07\xf3\xdf\x9c\xd2\x56\x19\xb3\x51\xc6\x34\x8f\xc9\x56\x19\xb3\x87\xc1\xa9\xb5\x50\x57\xad\x73\x2c\x28\x77\xb6\xca\x98\x3d\x5d\x0e\x48\xcd\xc6\x45\xa6\x6d\x94\x77\xcd\x23\xb1\xbd\x8e\x1b\xbc\xf2\xe3\x72\x1e\xd8\xea\xda\xc6\x56\xd7\x3c\x12\x5b\x05\xcd\x36\xd0\x99\xbc\x7b\x6d\x6f\xc7\xb2\x9d\x2f\xdb\xba\xdd\x06\xd2\xfc\x9d\x66\xd3\x68\x7b\xdb\xaf\x51\xc9\x78\xf0\x37\xf0\x76\xb2\xb0\x5f\xae\xd9\x7e\xfc\xee\x59\xd6\x31\x3e\x8f\xf6\x06\xf4\xf1\x20\xb6\xb2\x6d\x25\xae\xfd\x0b\xd0\x85\x95\xd9\xb2\x32\xda\xa4\x1a\x5e\xfd\xed\xc1\x3e\xdb\x48\xcd\x97\x75\xf9\xdd\x83\x0f\x42\x7b\x7e\xd8\x2b\x1c\x93\x47\xe5\x9d\x20\x5d\x07\xc9\x8d\x1a\xb9\xf4\xb2\x30\x5a\xb9\x58\x37\xac\x9b\xd6\x9d\xd4\x3d\xd6\xbd\xd6\xe5\x98\x1f\xaf\xc0\x53\x7f\x51\xd8\xf4\x2b\x27\xfb\x80\x8a\x76\x5c\x3c\x07\xe0\x05\x65\xf1\xc3\x81\xc9\x35\x7d\xbc\x16\x8f\xa4\x15\xe3\x45\x7b\xe4\x50\x49\x71\x57\x1a\x69\xb3\xda\xa3\x72\xf6\x91\xac\x90\xdc\xaa\x3d\xb2\x9b\x0f\x88\x52\x07\x90\x76\xed\x59\x90\x8b\x67\x39\x37\x14\x6b\x4f\xd8\x1e\xf1\xf0\x07\xc6\x81\x46\x8a\xb9\x2c\xb8\xde\x17\x1a\x8e\xe7\x71\xbe\x46\x5f\xe3\x52\xd5\x30\x96\x65\xe1\xfe\xf2\x6c\x3c\xaf\x7d\x10\xc8\x6c\x64\x77\x7b\x64\x19\x9f\xef\x57\x97\xed\x11\x9e\x92\x85\x75\x90\x90\x17\x9b\x68\x7b\x25\x49\x04\xea\xb7\x57\xa9\xe4\x3d\x5d\x7b\xce\xd5\xeb\x1e\xbd\xa7\x78\x2a\xf4\xfb\xca\x2a\xbc\xbf\xb5\xe7\x69\x22\x8c\x25\x8b\xdb\xba\x1c\xf3\xeb\xf3\xf7\x2a\x29\x03\x2d\xd0\x5e\xef\xe0\x6b\x88\x16\xa1\x94\xed\x95\x15\x34\x9a\xa5\x81\xde\xd6\x8c\x5c\x69\x46\xae\x34\xd0\xd8\x9a\x86\xb2\x46\x16\xb6\xac\x63\x7c\xb2\x78\x2f\x2c\x9e\xc1\xf6\xed\x95\xa5\x30\x53\xda\x41\x0e\xc5\xf6\xba\x1f\x04\x9c\xe4\x77\xfc\x2b\xfb\xf0\xca\x3e\xe0\x85\xdf\x5e\x9f\xbf\x77\xff\xe2\xc1\xf9\x4e\xf6\xff\x7d\x7e\x28\x51\x8c\x4f\xa9\xf3\x05\xaa\xed\xd0\x00\xf1\xca\x9a\x9b\xc6\xac\xe1\xb2\xd4\x3e\xdc\xd4\x1a\xa0\x5e\x59\x97\xdf\x7d\xb2\xe1\x1a\xac\x9a\xc6\x81\xcf\x3d\x22\x89\xd9\x79\x00\xfe\xd3\x3e\xd9\x70\x72\x93\xe5\x77\xb4\x27\x1b\xfe\x9d\xce\x8d\xb1\x7c\xee\xd1\x77\x3a\x66\xe8\xd5\x27\xdb\xf7\x09\x33\x84\x07\x7f\xc3\xca\x95\xc5\xb0\x6e\x50\xb7\xac\x73\x5d\x38\x43\x84\x9d\x64\xe1\xdc\x1c\x9f\x7b\xf4\xfd\xf6\x08\x76\xe9\x93\x45\x21\x1f\x59\xd6\xe5\x1e\x7d\xdd\x7f\xa5\x9d\xa4\x7a\x68\xdf\x70\xcc\x64\xc6\x3b\x34\x54\x7c\xb2\x2d\xe6\x0c\x3b\x88\x26\x68\x9f\x4f\xf6\x37\x7e\xff\xd2\x1e\xbe\x0f\xed\x23\xcc\xed\xf8\x8d\x4f\x23\xc7\xb7\xdc\x0f\xe8\x9a\x11\x29\xcd\x88\x94\xa6\x11\x81\xb8\xbd\x2c\x5c\x3f\x9e\xb5\x4f\xf1\xee\xdb\x8e\x05\x0d\x8c\xd1\x22\xcd\x68\x91\x86\x2f\x4f\xfb\x64\x6f\x3e\xef\xdb\x6f\x2c\xbe\x47\x9f\xef\x91\x46\x84\x4f\xb6\x9e\x24\x5d\xf9\xdd\xfc\xcf\x9f\x7e\xe0\xab\xd0\x8f\x43\xac\xad\x3c\xa7\xdd\x50\xe0\x4e\x70\xc9\x79\x30\xbe\x4e\x38\x49\x16\x82\x8c\x24\xcb\xdd\x35\x62\x75\x8d\x58\x0d\x43\x40\x27\xb9\x55\x16\xc5\x3a\xfa\x60\x9d\xfb\x81\x9b\x6e\x03\x4b\xa8\x1b\x05\xd2\x4d\xe0\xd4\xc0\x66\xe8\x86\x9b\x77\xa3\x3b\x1a\x9e\xfe\x9d\x68\xf1\x2c\xa0\x6b\x28\xee\xfb\xc1\x19\xef\x87\x22\x2e\x86\x8f\x6e\x88\x78\xd7\x20\xd4\x08\xa9\xef\x64\x1a\xca\xc2\x3e\x1a\x75\xf8\x92\xf5\x72\xc2\x06\xd5\xbc\x5b\xdd\xd0\xef\x8e\x8d\x45\xe4\x97\xbf\x3d\xf7\xdd\x28\xf0\x6e\x14\xf8\x81\xcb\x52\x37\x2e\xb1\x9b\x28\xa8\x01\x01\xd5\x0b\x64\xb9\x9b\xc2\xe7\x00\x7a\xa9\x97\x61\x77\x72\x2b\x28\xdf\x7b\x41\x39\xdb\x0b\x51\xe0\x07\xb0\xea\xbd\x60\x13\xed\x85\x28\xf0\x83\xa0\x89\x5e\xc2\x7f\x43\xc0\x84\x83\x7f\xb7\xdf\x89\xee\x81\xf2\xbd\x97\xc7\xb1\x80\xaa\xd1\x40\xff\xea\x85\x63\xd2\x0b\x0a\xc7\xd6\x9c\xfa\xeb\x72\xfc\x80\x23\xce\x92\x75\x48\x11\x9d\x5c\x39\x59\xc7\x98\x21\x17\xdd\xa8\xf2\x86\xb7\x7e\x3f\x79\x3a\xfb\x49\xce\xa7\x83\x68\xfb\x4e\xe0\x73\x16\x6c\x21\x9e\xf9\x9d\x8c\x35\x59\x88\xa0\xc5\xdc\x4e\x9e\xc9\x7e\xca\x51\x12\x6d\xdf\x4f\x94\x45\xdd\x20\x8c\x46\xda\x96\x4e\x80\x74\x16\x8e\x2f\xb9\xe5\x7e\xc2\x65\x76\xb2\xd7\x64\x5d\x8e\xef\x84\x7c\xf7\x53\x16\x0a\x77\xac\x7e\x56\xfb\x90\xfb\x6e\x1c\xa7\x13\x2e\xb3\x9f\x22\x4c\xa1\x54\xef\x58\x41\xb2\xe0\xc8\x92\x28\xa8\x9f\x61\x7b\xe0\x17\x1c\xc0\x30\x77\x32\x91\x64\x61\x7b\x9d\x35\xf8\x1c\x33\x40\xef\x07\x2e\x55\xfd\xfc\x5c\x83\xcf\x35\x48\x8e\xb7\x13\xaa\x90\x85\xf3\x9d\x8d\xba\xb0\xce\xef\x92\x34\xf4\xcb\x2b\x75\x49\x32\x89\x27\xee\x46\x6d\xf7\xeb\x87\xfe\x96\x52\x53\xbf\x50\x0a\xf7\xeb\x72\x2f\x93\xbd\xe9\x58\x1e\xb2\x70\x8f\x92\x84\x74\x2c\x0f\x59\x78\x0e\x18\xdf\xd5\xec\x17\x60\xd5\x03\x08\x9a\xae\x61\xa1\x6b\x58\x68\x44\x28\xf7\x6b\xd8\xc7\xf8\xe1\xfd\x30\xe6\x69\x1d\xda\xaa\xd6\xfd\x77\xf9\x2f\x99\x3b\x0e\xa0\x67\xbb\xd1\x09\xdd\xe8\x04\xd1\x7d\x3a\x89\x37\xb2\x78\xfc\x8e\x31\x6f\xe7\x26\xdb\xd7\xfd\x17\xe3\x4f\xbf\x94\xea\xf0\xfe\xef\x84\x2f\x64\xe1\xba\x5c\xac\x01\xf6\xde\x7e\x3d\x82\x06\x5d\xac\x15\x5e\xe9\xfd\x42\x11\xdb\x50\xb4\x77\x23\x1b\xfa\xf5\xda\x07\xe7\xea\xfa\xfc\xf7\xf3\x5f\xce\xd0\x2d\x29\x34\x71\x45\xc3\xcf\xa1\xdf\xee\xdb\x5d\xec\xd7\xef\x90\x90\xfa\xad\xe6\x02\x85\x7c\xc7\x6a\x91\x85\xfd\xa6\xc4\xd5\x35\x5e\xf4\xfb\xfc\xc1\xe9\x4c\xea\xd8\x23\x0d\x15\x0d\x25\x7d\xbf\x79\xfe\xfa\xad\xd6\xc3\x73\x7a\x13\x31\xde\x6f\xef\x0c\xf0\x78\xfd\xc6\xbf\xa7\x93\xe9\xa2\x34\x52\x85\xf4\xfb\xf6\x3b\x59\x99\xde\x6f\xea\x1c\xcb\xcd\x73\x80\xfb\x54\x27\x0d\x46\x16\xd3\x3a\xc6\x0c\x0b\xda\x6f\xd9\x1b\xfc\x17\xfa\x5d\x1d\x9f\x22\x06\x50\x7e\xfd\x96\xae\xdd\xf8\x16\x34\x22\x11\xfa\xdd\x6c\x4f\xb6\x14\x25\x7d\x27\xc9\x45\x16\xaf\x7d\x50\xd7\x5d\xab\x0e\x9d\x24\xbf\x56\x27\x6b\x45\x16\x9e\x8d\xc9\x98\x87\x7d\x0c\xc7\xdc\xe8\x63\x3a\x16\x71\xad\xc8\x59\xd1\xef\xe5\x7e\xa8\x81\x41\xf9\xde\xb1\xaa\x64\x41\x7b\xe4\x16\xe8\xf7\x67\xdd\x67\xbf\xdc\x19\x31\x0c\x7a\x3d\x1c\x1f\x77\xa6\xfa\xac\x55\xd9\x4d\xbc\xfa\x7b\x75\x2f\xab\x7b\x09\x7e\x65\xaf\xb0\x2d\x5d\xc3\x4c\xc3\x76\xdf\x2b\xc6\xdb\x5e\x05\x44\x44\x09\xde\x2b\x22\x5f\xaf\x8a\x7c\x23\x59\xe4\x5e\x6f\xfb\xb8\xbd\x1f\x33\xd7\xa5\x4a\xaf\xaa\x5a\xa8\xc1\x7e\xd4\x6a\x1f\xf5\x87\xb8\xc4\xbf\xcd\xb1\xb4\xff\x87\x06\xd7\x49\x2d\xf0\xa7\x57\xf1\xe6\x46\xe3\xdf\xee\x77\xff\x87\x1a\xc7\x7c\xbd\xbf\x46\x90\xb4\xd1\xf9\x77\x38\x96\xe1\x7c\x3b\x63\xc6\x58\xd8\xeb\x70\x9d\x39\x43\x15\x31\xb0\x13\x41\x72\x1e\x44\xef\x74\x0d\x29\x5d\x6c\x87\x86\x01\xbb\x57\xc4\xc0\x5e\x7d\x9e\xd1\x68\x77\x8d\x2b\xbd\x12\xeb\xde\xd0\x68\xf7\xea\x7b\x54\x9f\x1f\x2a\x12\xdf\xf9\x64\x57\x9f\x6c\x00\x76\xba\x51\x25\x9d\xa8\x92\xf3\x20\x1a\xa8\x63\xf1\xc8\x62\x5a\x97\xfb\xd1\x10\x09\x7a\xf3\x0e\xe2\xc1\xdf\x35\x40\x74\x0c\x10\xe7\xe1\xdd\x6f\xde\xa3\x76\xd9\x1e\x7b\xd9\x7c\x3f\x9a\x77\xa1\xff\x0b\xcf\xfc\x2e\x1c\x44\x6f\xa4\xfd\x3b\xb0\xcb\xf5\xe6\x71\xc7\x9e\x70\x1e\xe4\x3e\xea\x0d\xb7\xb7\xde\xfa\x0f\x21\x95\xee\x7c\x5e\xda\x70\x58\xb5\x52\xe7\x10\xdc\x1a\xec\xc2\x5d\x43\x40\x6f\x4a\x66\x9d\xad\x26\x52\x25\x8b\x6d\x1d\xdf\xa1\xf0\xe9\x06\xac\x34\x92\x43\xf7\x26\xc9\x04\x84\xfd\x3c\x24\x0d\x1a\x02\xfa\xcf\x10\x20\x69\xc0\x02\x90\xc5\xf6\x5f\xc6\x87\x52\xb8\x37\xdc\x25\xda\x74\x6e\x6e\x43\x13\xd1\x8a\x8c\x34\x5d\x25\x7d\x57\x49\xdf\x80\x3b\xe9\xdd\xeb\xd3\xc1\xf4\x3d\xc0\x6d\xeb\xdd\xeb\x83\x0e\x3e\xeb\xf8\xce\x6b\xd1\xbd\x16\x78\xf0\xf7\xee\x36\x88\x4b\x7e\x78\xbd\xd1\xb0\xff\xe9\x9d\x1c\x1e\x07\x98\x82\x5d\xa5\x7a\x57\xa9\xde\x00\x41\xe9\x1d\xee\xbb\xf7\xc1\x7c\xb1\xb7\xf5\x8e\xbb\x58\xef\x72\x8f\x28\xc1\x7b\xf7\xc9\xe9\xe1\x7c\x27\xff\xa2\x41\xe8\x5d\x0d\x02\x76\xb4\xde\x5d\x97\xfe\x5b\x17\x58\xb2\x2e\x59\xe9\x92\x15\x14\xe3\xdd\x20\x96\x8e\xce\xbc\xf4\xc3\x31\xcb\x02\x74\x95\xae\x92\x90\xe1\x1a\x0c\x41\x5e\x41\x1d\xed\xc3\xeb\x3d\xd4\xe8\x60\x1f\xeb\xc3\x73\x35\x3c\x57\x24\x60\xef\xc3\xe7\x79\xb4\xfd\x0f\xd6\x5a\x37\x98\xa4\x8f\xf1\xfe\x83\x89\xda\x87\xf3\x1d\xcb\x7e\x21\xb7\x46\x81\xf4\x11\xfe\x7b\xe5\x7e\x8c\x6d\xdd\x8e\x7f\x30\x4b\xfb\xf0\x3a\x0e\x60\x93\x0f\xc9\xc5\x90\x6d\xf9\x29\x8f\xb1\x7b\x75\x30\x7c\xb3\x38\xad\xcb\x3e\xa6\xcf\x1a\xf8\xb3\x3f\x74\xc7\x0e\xd6\x6a\x16\x00\x0d\x62\xbf\xeb\x53\xd6\x63\xfa\x0c\x49\x06\x8c\xda\xe8\x46\x6d\x74\xbc\xf0\xbb\x8a\xe7\x3e\x95\xbc\x07\x67\x08\x74\xd2\x2c\x5c\xbf\x94\xfe\x3a\x5a\xe8\x2c\x5c\x03\xee\xc7\x94\x9c\xa1\x57\x3e\x0f\x80\x84\xfa\xf4\x6c\x88\xfd\xd8\xf1\x9a\xef\x00\x18\x66\x61\x7b\x9d\xb1\xb8\x56\xa0\xf7\xe5\xbf\xcc\x2d\xfc\x77\x3b\x0f\x9e\xbf\x29\x8b\x32\x7f\xeb\xc7\xb3\x41\x68\x46\x16\x60\xf5\xa1\xf0\xee\x46\x59\x74\x20\xe1\xce\x03\x7f\x97\x0e\xf0\x5b\x16\xf6\xcb\x19\x02\xd8\x2d\x0b\xfb\x2d\x59\x07\x4a\x59\x16\xac\x33\x7e\x27\xdd\xc8\x8b\x6e\xe4\x45\x47\xb9\xdd\x8d\xb2\xe8\x46\x59\xf4\x52\xb2\xdf\x25\x2b\xb8\x2e\x61\xd8\xe8\x77\x11\x2c\xd9\x97\x48\xb9\xc5\x3e\x64\x1f\x8c\xc6\xe8\x78\xd2\x77\x34\xd8\x59\xbc\xd6\xe5\x7e\x2c\x59\xe4\x05\x8b\xdc\x0b\x34\x6c\x75\xc7\xd2\x1d\x0b\xa4\x75\xf9\x8c\xaf\xe1\x7c\x61\x8d\x16\x5a\xc6\xbe\x7c\xc6\x89\x38\xea\x6b\xfa\x1d\x3e\x17\x1d\xa3\x4e\x5f\xd2\xba\x25\xad\x03\x88\xb7\xaf\x65\x1f\xcb\x3e\x78\x3a\x17\x92\x72\x5f\x42\x41\x16\xbf\x0b\xeb\x02\xba\x8b\xe1\xad\x2f\xb4\x23\x7d\xa1\x1d\xe9\x40\xb8\xf4\xe5\xb9\x5f\xee\x1b\x1e\xf7\x1d\xed\xf7\x9f\xbe\x5e\xd7\xc0\x7f\x3f\xfb\xfd\xec\x17\xd6\x23\x64\xc3\x43\x36\x1c\x0c\xec\x1e\x8a\x36\x71\xba\xa6\xb0\xf5\x81\x01\xb1\xc7\x6d\x1d\x62\x42\xe0\xcb\xd3\xa3\xba\x7e\xb0\x1e\x46\x5e\xf4\x68\xce\xd7\x3a\xcf\x69\x48\xc3\xa4\x4d\x81\xa7\x7a\x0f\xc1\x44\x0b\xac\x02\xa1\x0f\x59\x70\x26\xcf\xc3\xba\x66\x1d\x7b\x8e\xd2\xba\x87\xf3\x8d\xed\xb9\x9a\xb9\x56\x46\x13\x74\xa2\x09\xce\x72\x70\x36\xb6\xf7\x77\x9f\xe2\xc3\xb2\xe7\x6a\xaa\x3b\x9a\xea\xfc\xae\x53\xf7\x58\x27\xcc\x23\x74\x72\x63\xf8\xe8\xdb\xf9\xa2\xbd\xee\x6a\xaa\xbb\x9a\xea\x22\x6d\xda\xd3\xf6\x10\x13\x3a\x46\x8e\xbe\x65\x1f\x76\x08\xbb\xc7\xfe\x6e\x59\x05\xd0\x71\xce\x42\x24\x51\x57\x3b\xdc\xd5\x0e\x17\x7c\x1f\xba\x5a\xdf\xae\xd6\xb7\x80\xbd\xd8\xd5\xfa\x76\xb5\xbe\x05\xc3\x5b\xdf\xbe\x65\x42\xea\xa4\x50\x98\x75\x9f\xfd\x26\x47\x98\xdf\xfd\xdd\x33\xbf\x6f\x62\x9c\xfb\xfe\x1c\x02\xc7\xe9\xc1\x6e\xdd\x1f\x41\xff\x88\x21\xee\xcf\xb1\xac\x73\x29\x5b\x0e\xff\x51\x62\x78\x8a\x75\x3c\xc5\x8f\x12\xc3\x03\xb7\xd2\x4f\x8e\x93\x0a\xe5\xfe\x48\x46\x81\x15\xed\x8f\xd2\xc1\x73\x39\x7c\x9e\xba\x47\xe9\xe0\xb9\x1c\x3e\x64\x0f\xed\x72\x16\xe2\x17\x43\x5a\x89\x96\xc8\x42\xa8\x56\xc8\x14\xf9\x21\xb2\x70\x1e\x1c\xed\xc7\xed\x7a\x7e\xdb\x05\x57\xf8\x78\xe5\x1f\xaf\x3c\xde\xfa\xfd\xe9\xd6\xa1\xc0\xec\xc4\x01\xf7\x47\x4e\xf1\x91\xb4\xa2\x18\xef\xcf\xb2\x8f\x24\xad\x67\x39\x1c\xb3\x4f\xd3\xb3\x7e\x40\xdd\xb9\x0d\x8f\xdb\xff\x00\x29\xd1\x51\x82\xf7\x27\x5c\x53\xb0\x59\x3b\x46\x8e\xfe\x48\x96\x1f\x02\x19\x3b\xc0\xb2\xfd\x91\x2c\x3f\x61\xbf\x1c\xb1\xc7\xe3\xfe\xec\xdf\x77\xac\x81\x6c\xd0\xb3\x3d\x12\x48\x25\x06\x75\x74\x83\x3a\x3a\x71\xc5\xfd\x79\xdd\x0f\x94\x68\x1d\x65\x79\x27\x9a\x23\x8b\x69\x5d\xb6\x27\xb4\x52\x7f\x0f\xaf\x05\x57\xea\xc5\xe5\xa6\xbf\x42\x3c\x5e\x1c\xc5\x17\x6f\xd0\xfe\x92\x1a\xa6\x14\xd6\xea\xf5\x1c\x80\xba\x74\x9a\xc0\xac\xbf\xd8\xc1\xfb\x2b\xc6\x3c\x0a\xf4\xfe\xba\xe7\xef\x69\x1d\x4f\xe7\x8b\x0b\x68\x7f\xc1\x2c\x34\xdf\x59\x7f\xbd\x8e\x2a\xb2\x3b\x60\xe1\xdd\xe8\x8e\x4e\x74\xc7\x69\x6a\xb3\xfe\xca\x56\xbd\x42\x94\xa3\x68\xef\x6f\xf5\xbb\xea\x3a\xc3\xba\xbd\x3e\xb1\x2f\x89\x23\x4c\x41\xd6\x5f\x25\xc2\xb7\x2e\xeb\x98\x6f\xb3\xae\xb9\xce\x9c\x21\xb0\x97\xb2\x78\xf9\x0e\x89\xeb\x55\xd3\xf5\x0e\xe7\xcb\x7e\xbc\xd8\x76\x3b\x7a\xef\xd2\x2f\x24\x86\x4f\x2d\xc5\x47\x82\xe2\x52\x60\x7d\x3f\xa5\xd8\xef\x37\x0f\x9e\x17\x21\x89\xfa\x77\xdb\x07\xda\xaf\xcf\x79\x7c\xbf\x79\xc0\xe2\x7d\xb2\x8c\x5f\x73\xed\x21\x03\x1f\xd1\x2c\xfd\xfb\x8d\x99\x73\xa0\xb2\xb7\x7f\xbf\x31\x73\xa7\x55\xf6\x76\x95\xbd\x05\x04\xd3\xfe\xf9\x34\x7d\xd3\x79\x54\xfa\x50\x13\xf7\x11\x84\xdb\x51\xf0\x77\x31\xd8\xba\x18\x6c\x1d\xc5\x7d\xff\x64\xab\xbe\x47\xe0\x78\xd6\x4f\x85\x6d\x57\x61\xdb\x81\xd9\xe9\x9f\xec\xf5\x87\x94\x53\x08\xe8\xea\x9f\x6c\x24\x81\x06\x67\x01\x3f\x78\x1c\xe0\x61\x0c\xe0\xd9\xf2\xdf\x41\x5d\xb5\x8e\x7b\x0e\xf4\xce\x00\xd8\x31\x0b\xc7\xdc\xf9\x0e\xd6\x6d\xa0\xcb\x3d\x0b\x81\x5f\xe3\x28\x7e\x67\xfa\x04\x94\xfe\x43\xef\xff\xa1\xf7\xbf\x28\xd5\xe3\xc0\x78\x31\xcc\xfe\xdf\x49\x91\x31\xc8\xf8\x9f\x05\xb4\xa4\xa4\xb4\x36\xd0\xe8\x66\x21\x52\x73\xa5\x0e\x49\x7e\x1c\xe3\x87\x7a\x3d\xa9\x0b\xeb\xf6\x3f\xd0\xf4\x43\xac\xb7\x01\x0e\x69\xd6\xf1\x1d\x2c\xc0\x38\x64\x01\xf0\xd6\x1f\x00\x8d\x66\xe1\x77\xc9\x96\x8e\x03\x43\xd4\x20\x03\x7f\xd6\xf1\xef\xe3\xf8\xc0\x0d\x2d\xd8\x76\x07\x49\xf5\xb3\xe0\x1c\x90\x86\x77\x90\x36\x3f\x0b\xf7\x28\xcf\xd0\x28\xae\x69\x91\xb6\x93\xde\x76\x14\xfc\x58\x06\x28\x3f\x67\x01\x5f\x63\xe8\xd5\x3f\xf4\xea\xef\x60\x99\x0f\x12\xcf\x67\xc1\x1e\x01\xa9\x33\xd4\x0e\x0f\xb5\xc3\xe5\x3c\x2b\x75\xb7\x75\xd5\xef\x72\x6e\xa5\xd9\x6f\x13\x4e\xb7\xd0\x6f\xb7\xbd\xfe\x6b\x8f\xf1\x75\xc7\xd2\x1d\x0b\x7b\x0e\x86\x4f\x16\xcb\xef\x26\x75\xec\x65\xc1\xad\xbb\x13\x5c\x3b\x70\xc9\xcf\xe2\xf6\xdf\x5c\x83\x82\x21\x6a\x14\x0c\x51\xbd\x72\xae\x4a\xd8\x1e\xd9\xc1\xca\x79\xf3\x2f\x74\x77\x90\xbb\xbd\x74\xb4\xd2\xa3\xf0\x14\x8f\xe2\x53\x4c\x40\xdc\x40\xa5\x9c\xc5\x10\x16\x98\x3a\x8c\x0d\x43\x78\x9f\x4e\xee\xc8\x01\xae\x4f\x16\xa2\xd1\x73\xae\x4e\x58\xdf\x01\xda\xe6\x59\xce\x5f\x5d\xb7\xce\xf6\x92\xfd\x1f\x7a\xe1\x0f\xb4\xcd\xa5\x93\xd3\x71\x9c\x68\x50\xc7\x59\x6c\x8f\x73\x05\x04\x60\x16\x9f\x75\x7f\xf7\xcc\x1f\xc0\x03\x65\xf1\x6b\x26\x97\x52\xa5\xf5\x38\xe5\xaa\x89\xe5\x1d\x42\x6f\x0e\xa0\x37\xcf\x72\x36\x86\xd5\xec\xce\x4c\x00\x28\x8a\xc7\xd9\x9d\x12\xb0\xff\x9d\x84\xec\xe3\x84\xdb\x1b\xa7\x12\x1c\x09\xf5\xc6\x89\x92\x65\x9c\xd3\x2d\x9c\x4c\xdd\x6b\x01\xa2\xcf\x59\x70\x97\x18\xe7\x72\x2c\xa2\xb0\xd7\x69\x9d\x4b\x84\xdd\xb0\xe0\x42\x31\xce\xe5\xf8\x96\xe3\x73\x2c\xcb\x65\x93\x83\xc6\x83\x7f\x9c\xe1\xbf\x92\x2e\xf2\xb7\x0d\x72\x8e\x67\xf1\x58\xc7\x1a\x3c\x8e\x45\x29\x07\x6f\xfd\x81\xab\x7d\x16\xd5\xba\x4a\x9d\x6b\xf0\xd8\x07\x47\xf1\x7c\x1d\xb3\x92\x0f\x09\x0e\xc6\xe9\x91\x30\xd3\x77\x39\x9d\xef\xe7\x1a\x48\xf6\x60\x3d\x06\x9a\xf3\x2c\x44\x78\xce\xa7\x64\x5c\x1e\x13\x72\x7b\x67\x5d\xae\xbd\x0a\xf4\x81\x02\xfd\x2c\xb0\x28\x83\x8c\xdb\x59\x54\xeb\x72\xed\x2f\x9e\xd3\x71\xf9\x9c\x12\x64\x38\x2e\x60\x21\xc6\x65\x9a\x12\x52\xc1\x8f\x0b\xa3\xc4\xb8\x2e\xd7\x85\x2b\x70\x61\x1b\x1a\xc2\x00\x75\xbc\xfa\x87\x30\x40\xe3\x92\xc3\x07\xba\x73\xe0\x7e\x9f\x85\xdf\x55\xfa\x9d\xf6\x3b\xed\x97\xab\x7c\xa1\xd1\x19\xd7\x0c\xeb\xf8\x17\x57\x9f\x61\x4e\xec\x02\x7b\x33\x2e\x49\x21\x4a\xf5\xd2\x51\x9c\x8e\x0b\xc9\x67\x5c\xfb\xf7\x1d\x63\xd9\x7e\xb7\xed\xb7\xd1\xc7\x63\x7b\xa4\x94\x2e\xb0\x37\x43\x28\x9f\x71\x7d\x8e\x19\x32\x2a\x6c\xcf\x10\xb6\xa7\x13\x6c\x3a\x48\xe1\x9c\x45\xf7\xdf\x41\xdd\xb6\xce\xfd\x18\xfc\x0b\x5b\x30\x50\x00\x9f\x85\x00\xc5\x71\xa3\xb9\x18\xb7\x9a\x0b\x14\x9d\x43\x05\xf0\x20\x9d\xf1\x59\x80\x0f\x1f\x77\xf8\x6f\xf8\x6f\xb2\x23\x43\x88\x9e\x21\x44\x4f\x27\x91\xfb\xc0\xd5\xfe\xcf\xb8\x25\x3f\xe4\x6a\x18\xf7\xb6\xee\x71\x0d\xb8\x83\x15\xef\xe6\x51\x41\xc1\xeb\x78\xdc\x8f\xea\x53\x67\xee\xdb\x4e\xf0\xe5\x40\x7b\x9b\xc5\x63\x5d\xae\x95\xca\xd9\xa1\x72\xb6\x90\x07\x69\xe0\x2e\x9f\xc5\xb0\x8e\xf6\x50\x78\x0f\x73\xc2\x76\x34\x80\x43\x38\x9e\x81\x4e\xf5\x34\x9b\xde\xd0\x53\x7d\x98\x2a\xb5\x00\x87\x32\xea\xf2\x5f\x9f\x35\x34\x7b\x43\x4f\xf5\xa1\xa7\x7a\x07\x2e\x68\x54\x22\x07\x46\x15\x58\xbf\x3b\xb7\xc7\x31\x3f\x8e\x19\x3a\x54\x7d\xc2\xaa\x4f\x18\x9a\xbd\x81\x9b\x79\x16\xf6\xd1\x99\x87\xe4\xb6\xe2\x5f\x21\xf6\xfb\xd0\x8b\x7c\xe8\x45\x6e\xae\x9e\xd1\x7c\xea\x5a\xf9\xd5\xe5\xbf\x0d\xa3\xd3\x68\xa7\x73\x3b\x73\x6e\xcd\x27\xac\xf9\x84\xa1\xd9\x1b\x64\xe9\xcc\xc2\x7d\xe3\xfe\x36\x8c\x08\x43\xcf\xed\x0e\x5c\xd0\x68\x9e\x0d\x1c\xb3\x4f\x33\xf2\x8d\x86\xd1\x69\xa0\x34\x3d\x0b\x59\x7b\x46\xc3\x5e\x3e\x1a\xf6\xf2\x4e\x56\xe8\xd1\x5c\xab\x86\xff\x51\x21\x1d\xd9\x00\x5d\x35\x8b\x66\x1d\xfd\x62\xa0\x1b\x20\xf0\x9c\x85\xc0\xc3\x01\xe6\x4e\x16\xb0\x32\x78\xdc\x0f\x61\x76\x46\x3f\xec\x17\xb6\x05\x5f\xe1\x2c\xfc\x97\xfd\xe8\xd2\x88\x7e\xb9\x97\xad\x52\xb7\xac\xf3\x5f\xf6\xa8\xa3\x59\x19\x9d\x1c\xaa\x05\x3f\x82\x41\x9e\xc3\x2c\xfc\x97\xfb\xd6\xb7\xff\x6e\xff\xe5\x0d\xe8\xb2\x28\x28\x20\xb3\x2e\xfb\xc5\x27\x36\x0b\xc7\xcc\xdd\x12\x9e\x66\x08\x4f\x23\xe6\xfc\x18\xb2\x19\xc3\x8c\x3f\x64\xf7\x1a\xc2\xd3\x8c\x21\x5c\x2e\xc6\x81\x31\xd0\xa0\x8e\x21\x9b\x86\xe7\xfb\x00\xab\x26\x0b\xf3\x72\x75\xbe\x83\xf5\x1d\xc3\x84\x25\x68\xfb\xc6\xd8\x7e\x67\x56\x0a\x14\xfc\x43\xed\xe1\x18\xbe\x01\x44\xa8\x0d\x71\x65\x86\xb8\x32\x1d\x2d\xde\x18\xd2\xfb\xf1\xf9\x1d\x67\x03\x55\x62\x16\x8c\x0f\x88\x9e\x41\x3a\xaf\x2c\xa6\x75\xd9\x07\x79\xab\xfe\x0c\x32\x56\x9d\x85\xfc\x36\x83\x1c\x32\x59\x30\x3e\x72\xb3\x0e\xb2\xc7\x64\xc1\xbe\xd5\xfb\xef\xae\x7a\x03\x4c\x96\x2c\x86\xbf\xe4\xf0\xa7\xe4\xd6\xa4\x25\x1d\xc5\xfd\x00\x93\x25\x0b\x48\xa1\xdc\x0a\x99\x29\xb2\xf8\xd5\xf1\x9d\x53\x9f\x2a\x22\x88\x19\x1c\xe4\x5b\xc8\xa2\x58\x97\xff\x2e\x8f\xe2\x2f\xef\xc0\x84\xb4\x2e\x24\xc7\xb1\xca\xef\x3b\xeb\x6e\xeb\x38\x3a\x00\x0f\x8e\xe5\x15\x5d\x92\x33\x14\x6b\x63\x79\x14\x97\x89\xb2\x08\xc0\x1a\xcb\x2b\xba\xbc\xa2\xc0\xec\x8c\x55\xfd\x57\x72\x46\xf0\xe0\x40\xbb\x97\x85\x63\x69\x8d\xba\xb0\x8e\x2b\x4a\x40\xe1\x58\x18\x39\xc6\x32\xeb\xd1\x74\x2c\x92\xf4\xa5\x74\x30\x21\x49\x0b\x05\xf5\xc0\x91\xb5\xf4\x09\x3b\x82\xeb\x6a\x16\x66\x9f\x81\xac\x2c\xaf\xf7\x92\x95\x21\xad\xfc\x50\xa1\x37\x84\x6b\xe9\x28\xae\x06\xae\xab\x59\x98\xfe\xe1\xb0\xce\xb1\xbc\x1e\x09\x8e\xd3\x7a\x9d\x1b\x6c\x46\xca\x3c\xd4\xb9\x2e\xb8\x9a\x8d\x83\x67\x43\xb8\x96\xb1\xf0\x73\x18\x28\xc2\xc6\xfa\x5c\x03\xd9\x11\x6c\xed\x63\x7d\xb6\x47\x9c\xe8\xc0\x8b\x7c\x84\x52\x58\x98\x92\xef\x48\x69\x77\x84\xfb\x11\xc5\x7e\x79\x5e\x02\x85\xed\x88\x62\xbf\x29\xd9\x8e\x40\xcb\x33\xd0\x1d\x66\x1d\xed\x11\x61\x30\xd0\x13\x96\x81\xe2\x6a\x04\x4a\xf0\x01\xe2\xcb\x59\x40\x4d\x1c\x21\x19\x8d\x8a\xa4\x8c\x6f\xc6\x08\xa5\x35\x50\x5b\xca\x40\x33\x35\x42\x36\x23\x50\xb0\x0e\x82\x5d\xc6\x96\x55\xdd\xcd\xb1\x70\xbd\x37\x4a\xdc\xb1\xbb\x59\xbc\x20\x49\x1b\xcf\xf7\xb1\xa7\xfd\x32\x96\x0d\xf0\xea\xd8\xd3\xb5\x62\x2f\xb7\x7b\xb9\x97\x6b\x00\xab\xb0\x65\x41\x85\x02\x19\x78\x82\x8f\x2d\xa9\xde\xa2\x95\xa3\x18\x1f\x68\xfc\xb2\xb8\xad\x63\x2c\xde\x2d\x21\x43\x06\xde\xe1\x63\xcb\x16\x6c\xd9\x02\xd9\x2a\x5d\x4a\x07\x0a\xc2\xfc\x6e\x50\x67\x1f\xa6\xc3\x41\xdb\x32\xf6\x76\x2c\xfb\x97\x8b\x2d\xd7\x6f\xa3\x90\x1f\xfb\xf5\x3b\x24\xb8\xed\xbd\xdc\xde\xcb\xc6\xfd\xdd\x9f\x7d\xe0\xaf\x31\xd0\x66\x0c\xb5\x7d\xe3\x81\xdd\x1c\x68\x33\xc6\xa3\x54\xa2\x06\x70\xe0\x1d\x3e\x1e\xd0\x29\xc7\x53\x38\x93\xb2\x69\x8f\x77\xe6\xc1\x0e\x5e\x40\x7a\x1c\xa8\xd1\xb2\x70\x2c\x9c\x03\x54\x57\x59\x6c\x93\xe3\xe5\x3a\x3f\x4a\xb1\x8f\xf4\x05\xdf\x91\xa1\xeb\xe4\x00\x5a\xe4\x2c\xf8\x89\x0c\x54\x52\x59\x4c\xeb\x06\x75\x8c\x05\x65\x54\x19\x85\xb1\xa0\x06\xca\x62\x59\x97\x6b\x8a\xef\xe2\x9f\xf1\x36\xbf\x83\x7d\x00\x0c\x24\x0b\xce\x41\x87\x2c\x0b\xa0\x3d\xde\x59\xac\xe3\x5f\xcf\xcb\xeb\x79\x91\x4d\xd3\x5d\x71\xbc\x9e\x03\x94\xe0\x43\xc0\xeb\xf1\xee\xe7\x9f\x34\x96\xe3\x95\xd5\x07\x2a\xe3\x2c\x9d\x75\x16\x23\x63\x7c\x6a\x2e\xf0\xf5\x18\x9f\x4f\x84\x2e\x87\x03\x25\xf8\xf8\x64\xf5\x3f\xa4\xba\x41\x8e\xb5\xa1\x7b\xe1\x10\x23\xc3\x94\x5a\xe3\x93\x6d\xf9\x4e\x93\x69\x21\x8d\x7f\xb2\xf5\x9f\xa9\x06\x49\xc7\x3e\xd4\x42\x8d\xcf\x84\x81\x40\xd1\x8c\x0f\x6d\xda\x40\x0b\x95\x75\xf4\x8b\x16\x6a\xa0\x85\x2a\xe3\x84\x35\xd7\x35\x71\x7c\xd2\x53\x02\x37\xc7\xe7\xfa\x7d\xbf\xf5\x83\x45\xf9\xa6\x63\x46\xfb\x35\x70\xff\x1e\xa2\xf9\x8f\xcf\xa4\x55\x4a\xe3\x22\xf7\x0f\x91\xfb\x4b\x47\xc4\xf8\xd4\x70\x00\x46\x9d\x75\xcc\x4d\xb6\x0f\x6f\xbf\xb3\x90\xf4\x6b\x7c\x9e\x8d\x4f\x5a\x77\xde\xd7\x7f\xfe\x4c\xb5\x46\xf3\x30\x6b\x28\xee\xdf\x53\xad\xd1\x54\x6b\x34\xf0\xfe\x9f\x07\xe7\x65\x8a\xf0\x3f\x70\xff\x9e\x62\x5a\x4c\x31\x2d\x06\xa0\xee\x53\x40\xe9\x29\xa0\xf4\x40\xcb\x3d\x01\xb8\xf8\x33\xcd\xfb\x31\x10\x85\xe7\x81\xa6\x7a\x92\xee\xa3\x0c\xb4\xdc\x53\x4c\x8b\x79\xdc\xd6\xe5\xd9\x98\x07\x2c\xf7\x3c\x6e\xc7\x3c\x18\xcb\x6d\x7b\xbf\x75\x4e\x96\x62\xea\x4a\x38\x75\x25\x1c\x60\xcd\xcc\x03\x3a\x39\x8f\xea\xf8\xfe\x05\x88\xee\x3c\xf0\x10\x9d\x47\xb5\xe9\x49\x77\xcd\xa6\x9b\x4d\x4f\x86\xdf\x1c\x82\xf8\xf3\xd7\xc1\x50\xf1\xb4\x9e\x07\x01\x08\x03\x85\xf7\xd4\x9b\x71\xea\xcd\x68\x6a\xae\x69\xa2\x92\x29\x5c\xc6\xc0\xeb\x7b\xa2\x01\xcb\xc2\x7f\x0b\x7d\x0c\xff\x25\x4d\x73\x21\x06\x76\x1e\xd3\xef\x64\x47\xe0\xc8\xa7\xd9\x79\x26\x08\x19\x25\x85\x59\xea\xec\xc3\xe4\x67\x78\xcd\x4f\x30\x31\xb2\x78\xfd\x97\xf1\x6d\x97\x68\x7b\x4c\x5c\xb6\xc7\x7e\x65\x51\xe0\xdc\xe7\xf1\xba\x0d\x6f\x58\xc7\x76\x7d\xfe\xeb\x93\x08\xec\xc7\x54\x11\x36\x7f\x8a\x30\xec\xf4\xb3\xc0\xa1\xce\x42\xd0\x5d\x81\x4b\x9f\x05\x77\x98\x49\xbe\x86\xac\xcb\xf6\xf4\xac\x9c\x62\x55\x0f\xbc\xe6\x67\xa9\xb6\xa7\xe2\x79\x14\xda\xe3\xfa\xcc\x22\xb7\x8c\x3d\x7f\x92\xb9\x25\x0b\x33\xd4\x26\x7b\x33\x8b\xfb\x51\x7e\xfb\xd1\x72\x9d\x85\x8a\x98\x42\x45\x0c\x30\xdf\x67\xc1\x6e\x38\xcb\x72\x2f\x3b\xdf\x61\x6c\x98\x05\x63\x83\xe9\xde\x66\x41\x8a\x98\x45\x29\x02\xd8\x8f\x29\xa6\xf5\x2c\x26\xc8\x40\x69\x3d\xcb\x63\xbf\x8f\xfd\xb2\xce\xe2\x5c\xcf\xf2\x78\x0e\x58\xe7\xf2\xda\xc7\x6b\x7b\xc9\xb5\x4e\xa1\x22\xa6\x50\x11\x03\x7c\xf7\x29\x16\xc4\x3c\x65\xf1\x88\xb3\x9d\xa8\x9a\xb2\xe0\x1c\xe0\x1f\x30\x4f\x24\x8b\x79\x9a\xca\x14\x68\x9b\x79\x7a\x55\xc0\x78\x38\x0b\x31\xb5\xd3\xd4\x31\x93\x7c\x31\x65\x80\x0d\x3f\x4f\xd7\xea\xec\xb6\x57\xe9\x17\x8d\xd3\x3c\xd5\x3e\x0c\xd6\xef\xe4\x29\x9e\xa7\x69\xf0\xc8\x2a\x36\xd5\xca\xcc\x53\x52\x8d\x74\x30\xd5\xca\x4c\xb4\x32\x59\x97\xe3\xbb\x50\xb6\xcd\x0b\xc3\xd6\x40\xa1\x3c\xaf\xf3\x57\x67\x2e\xd6\x24\x67\xf3\xf2\xca\x5f\xf7\xff\x4b\x6b\x38\x2f\xef\xe5\x85\xe7\xb6\xc9\x90\xe6\xe5\x3c\xae\xdf\x39\x48\xf6\x61\xea\xae\x38\x75\x57\x2c\x64\x4a\x9b\x6a\x4c\xa6\x49\x93\x0a\x49\xd6\xe6\xb5\x6c\x0f\xa3\xd3\x40\xc9\x3c\x2f\xd8\x82\x09\x2e\xf2\x69\x52\xa1\x89\xaa\x24\x8b\x6d\x1d\xe3\x83\xad\x9f\xba\x17\x16\x7c\x01\xe6\xe5\xfe\x5e\xde\x99\xc9\x9d\xbe\x90\x30\xe7\xa5\x84\x09\x56\xc5\xbc\x25\xa3\xb7\x2c\x00\xb6\xfb\x79\xa3\x91\x98\x77\xb9\xad\xcb\x7e\x6f\xb4\x46\xf3\xae\xae\x15\xe7\xea\x86\x0d\x9f\x37\x09\xf2\x0b\x58\x10\x13\x95\x4a\x16\x61\x1d\x7d\xc0\x72\xcf\xbb\xb3\xe7\xf8\xfc\x4c\x82\xe6\xb3\x80\xe6\xdc\xac\x55\x75\x5d\xaa\x9a\xa4\x09\xe9\x17\xd0\x77\x1a\x3b\x3f\x48\x29\x36\x05\xf4\x9d\xc4\xce\xe7\x77\xb9\xa6\x15\x56\x6b\xe2\xbd\x95\xc7\xea\xa4\xee\xb1\xee\xf5\xbb\x5c\x17\xe3\xdf\x67\xd5\xc8\x86\x1f\xd0\xd4\xbd\x6b\xd6\xe7\x97\xe4\x93\x3e\x5e\xc7\xf7\x9a\x9f\x11\x3a\x69\xdc\xf8\x6c\x4a\xd9\xe0\x39\xcc\xe6\x19\x6f\x9e\x71\x3c\xb2\x67\xc3\xae\x3e\xc1\xff\xfd\x65\xb9\x9d\x6a\x1a\xa6\x5a\x85\x01\xfe\xfc\x6c\xae\x1f\x21\xe0\x65\x20\x25\xce\x86\xa1\x62\x1a\xbf\x6d\xe6\xda\xd9\x86\x75\xbf\x24\xa4\x37\xed\xe1\x3b\x32\x89\xd3\xce\xba\x9b\xba\xc7\xba\xd7\x3a\xfa\xc0\x26\x3f\x1b\x36\xf9\x81\x57\xfa\x24\x5a\x3b\x0b\x93\xbe\x71\x07\xdb\x74\x7c\x3e\xf7\xb5\xd2\xc7\x72\xbe\x26\xf4\x01\x61\x72\x36\xd8\xe1\x49\x70\xf7\x59\xe6\xe4\xbb\xb0\x3d\x95\xef\xf8\x1f\x4d\x81\x89\x27\x01\xdf\x79\x7d\x99\xdb\x76\x2c\xd8\xfd\x07\x62\xe5\x6c\xee\x07\xbe\x5f\x59\xc7\xf8\x1e\xe7\xfb\xdb\x0f\xe8\x9f\xbe\x5f\xb3\xfd\xb2\x21\x72\x7f\x89\xfe\xce\xc2\xfd\xe5\x1e\xb5\xd7\x35\x7d\x4d\xd5\xd8\x59\xbf\xd7\xf1\xfd\x5f\x4e\x42\xbf\x73\xdf\x3e\xf7\x8d\xa7\xbd\x21\x3e\x4d\x62\xc1\x7f\x39\x39\xa7\x01\xdf\xd3\x80\xef\xf3\xe0\x5c\x75\xb4\x50\xb3\x9b\x4e\x0f\x6d\xf8\xd4\xbf\x6c\x76\xf3\xb2\x1f\xdc\xd5\x8e\xe6\x71\xf6\xe3\xb3\xee\xef\xca\xfc\xd9\xab\xcd\x10\x5b\x78\x02\x8a\x3a\x3b\x4a\x91\xd9\xb1\x6f\x0f\x3c\xe4\x67\xc7\x2d\x6f\x76\xdc\xf2\x4e\x72\xe6\xce\x3e\x1c\xea\x70\xa8\xc9\x9d\x4d\x82\xaf\xb3\xf8\x7d\x37\xa9\xb3\x8f\x70\xa8\x1c\xa7\xbe\x1d\x2a\xd7\xe2\x24\x15\xc7\xec\x2e\x6f\x37\xf7\x3c\x31\xbf\x13\x50\xe4\x2c\x6c\x8f\x63\xa2\x5b\xd9\x04\x1b\x39\xeb\x98\xfa\xe7\x98\x71\x5b\x38\x81\x3a\x98\x43\xce\x6e\xc8\xd9\xe1\x5d\x3f\xc5\x46\x9e\x62\x23\x0f\xbc\xeb\xe7\x20\xe6\x77\x8e\xdf\xb2\x71\x74\x86\xcf\x90\xb1\xda\x83\xb4\x89\x93\x20\xed\x2c\xcc\xc8\xcd\x93\x83\xd6\x29\x8b\xdb\x7f\x73\xfb\x8d\xc1\x9e\xc6\x60\x0f\x24\xb3\x39\x6e\xff\xbd\xc9\x17\x08\xe8\xe8\x54\x49\x35\x87\xcf\x3d\x5e\xc6\x53\x25\xd5\x1c\xe6\xcb\x43\x9a\x9c\x43\x72\x36\xba\x6b\x30\x18\x73\xb7\xdf\x6e\xbf\x29\xd1\xcc\xe1\x91\x1d\x1e\x59\x20\x6b\xe6\x90\xac\x0c\xc9\x4a\xe3\x68\x0f\xb4\x00\x93\x30\xe9\xf3\x24\x15\xc7\x1c\xb2\x37\xe0\x18\x67\x9d\xdf\xb9\x2e\xb8\xef\x8d\x96\x92\xcf\xd4\xed\x6d\x8e\xcf\x31\xf7\xec\x97\x14\xf9\x59\x70\xdc\x51\x8c\x4f\x41\x8d\xe7\x34\xc3\x3f\x12\xe6\x24\xa3\x7b\x16\xf6\xcb\xb9\x9a\xb2\x41\x24\x50\xcf\xba\x4a\xdd\xb6\xee\xb1\x2e\xe7\x31\x25\x71\x26\xff\x1e\xe4\x93\x9e\xd3\x27\xc2\x7c\xde\x03\x0c\xfe\xa9\xb6\x6a\xaa\xad\x3a\x71\xc7\x9a\xd3\xa7\xce\x74\xb9\xa3\x1f\xf4\x21\x59\xf9\x25\xbd\x45\x5a\x9b\x64\x7f\xcd\x82\x73\x8a\xd4\x39\x05\x17\x9e\xba\xae\x0d\x94\xea\x73\xba\xce\x28\xb2\xce\xb3\x70\x9e\x41\x06\xce\xc2\xf5\xe3\xec\xaa\xc1\x9a\xcb\xab\x4c\xac\xf1\x5c\xc0\x8d\xcc\x05\xfa\xd9\xe8\xb0\xaa\xba\xa4\x4d\x5d\xd2\x06\xca\xf7\xb9\x94\x04\x96\x39\x17\x71\xb3\x9a\xf8\x9d\x65\xc1\x39\x25\x5e\x78\x2e\xdc\xfc\xe6\x22\xc8\x6b\xe0\xad\x3f\x05\x03\x9e\x82\x01\x0f\xbc\xf5\x27\xea\xa2\x3f\x73\x99\xef\xac\xa4\x54\x3c\x17\x2e\xaf\x73\x3d\xae\xc1\x4d\x1f\x3e\xed\x80\xfc\xe6\x77\xb9\xa6\xba\x7c\xcd\xf5\x9b\xdb\xcc\xef\xc2\x7b\x14\x07\x39\xca\x00\x31\x9d\x81\x7f\xcf\x04\xc3\x37\xeb\xf2\xbc\x04\xca\xca\x89\xb2\xe7\x3c\x91\x30\x67\xc8\x0e\x07\xec\x70\x2e\x34\x75\x7e\x77\xfe\xbe\xab\xd4\xbd\xd6\x7d\xd6\xd1\xaf\xeb\x12\x4a\x9d\x20\x1a\xce\x90\xc5\x43\x51\x74\x9a\x69\x6c\xaa\xe5\x99\x68\x79\xb2\x8a\xf1\xf9\xbc\x84\x39\x3b\xc9\xb5\x36\x37\x01\x4e\x73\xff\xfa\x80\xbe\x6c\xfc\x85\xe6\x26\xde\xff\x24\x0f\xf9\x34\xe8\x78\x6e\xef\x25\xfe\x4c\x73\xcb\xfe\xe3\xfe\x54\x06\x69\x8b\xe7\x23\xa9\x46\xeb\x71\x9e\x27\xec\xf5\xe3\x1a\x3c\xbf\x35\x40\xd2\x7b\x50\xd8\x4e\x7c\x97\xce\x13\xdf\xa5\x29\x90\xeb\x7c\xdc\x73\x52\x70\x4d\x41\x5b\x27\xa0\xad\x59\x97\x63\x79\x14\xc7\x1e\xc5\x31\x60\x7b\xe6\xd3\x6c\xaf\xdb\x1e\xcf\x24\xd1\xad\x59\x38\x0f\xbf\x93\x16\x3f\xd2\xe2\x0b\xd6\xe3\xd9\xf6\xbb\xe9\x57\x11\x0d\xc7\x9e\x2c\xc2\x3a\xfa\xfd\xec\x17\x6d\xd0\x89\xaf\xd1\x14\x81\x75\x3e\xb8\x03\x0e\xf2\x1a\x4c\xa2\x51\xb3\xd8\x7e\x47\x1d\xc6\x8b\x09\xd0\xe9\x79\xe2\x57\x34\x4d\x43\x36\x49\x43\x96\x75\x39\x96\xd7\x7d\x7b\xd5\xce\x61\x80\x98\xaf\xec\x17\x8a\x93\xf3\x24\x37\xc1\x7c\x15\x4f\x5e\xc5\x13\xa2\x18\x26\xea\x93\x2c\xcc\x1a\x67\xbf\x18\xc0\xe6\x8b\x01\xec\x54\xa4\x7a\xbd\xbf\xaf\x74\x12\x17\xe4\xf9\x12\xec\x3c\x5f\x70\x5b\x4e\x82\x89\xe7\x0b\xbc\xd9\x04\xb9\xf4\x3c\xf1\x0d\x9a\x22\x97\xce\x17\xb7\xdf\x13\x63\xdc\x54\x2b\x33\x45\x2e\x1d\x8a\x27\xa6\x1c\x9b\xdf\xe1\x98\x7b\xce\xd7\x60\xce\x49\x30\x67\xd6\xf1\x9d\x6f\x05\xda\x96\xf3\x24\x08\x77\x7e\xb2\xff\x9f\xec\xff\x80\xd5\xd2\x97\x67\xe2\xcb\x93\xdf\xe5\xd9\xfd\x64\x69\x41\x10\x3d\xcf\x6b\xfe\x5d\x99\xbf\x84\xa3\x58\x26\xb8\x3f\x5b\x3e\x93\x6b\xf3\x4c\xae\x7d\x48\x82\xa9\x39\xad\xb9\xfe\xf7\xdf\x0b\x0d\xe9\x12\xa4\x79\x01\xd2\x7c\xb7\xe4\x12\x97\x18\xcd\x6b\x7b\xdd\x6f\x6a\x1e\x6b\x3e\x3e\xe2\xbf\x62\xe3\x88\xc3\xa7\x35\xd3\x9a\x5c\x41\x1b\x42\x2c\x5a\x78\x5f\xde\x04\x0d\xad\xcd\xb3\xba\x36\xcf\xea\xaf\xc6\x01\xe4\x1a\xde\x18\x96\xd7\xc6\x40\xb9\xb8\xc2\xc0\x0f\x2f\xae\xf1\x9f\xb5\x79\x4d\x6e\xda\xbe\x6c\xe8\xba\xf3\xb7\xca\x28\x2f\x5b\x4a\xaa\x7b\x01\x31\xbe\x84\x8c\x5e\x5c\xfc\x33\xcf\xc8\xe2\xf2\x67\x41\x77\xd5\xa6\x9c\xdd\xf5\x52\xc5\x5c\x6e\x17\xea\x66\x55\x1a\x6b\x77\xbb\x2a\x29\xca\x5f\x47\xb2\x97\x0b\x34\xe9\x3f\x0b\xda\x71\x63\x73\x5e\xbb\x3a\x86\x94\xea\x6f\x80\xe4\xd6\xae\xae\x4b\xa5\xc7\xce\x04\xab\x3d\x36\x7e\xec\xf4\x08\x5a\xed\xda\x8d\xb5\x1a\x7c\xd5\x5d\x62\xd8\x83\xc6\xe0\xbb\x63\x40\x96\x6d\x34\x4e\xa4\xc5\xda\x9d\xdf\x26\xa3\x1a\xfe\x86\xf3\x71\xa3\xa1\xe1\x08\x50\xb7\x38\xa6\xe1\xc8\x47\xfe\x06\x04\xf1\x02\xf2\x3a\x8b\x93\x2a\xfe\x9b\x4e\x26\x39\xfa\xbb\x1f\x34\x3e\xdd\x9a\x99\x4d\x0d\xc6\x34\xdd\x1a\x64\xd0\x3c\xe6\x0b\xed\x78\x16\xb9\x35\xbd\xd0\xd2\x72\x1f\xb8\xe9\x83\x1d\x5d\x2e\x41\xbe\xdd\x77\xf7\x74\x2e\x5b\x4a\x4e\x13\x35\xd7\xda\x61\x4b\xf9\xa6\xdf\x68\x4a\xd7\x0e\xc7\x94\xd2\xfa\xcd\x33\xbb\xc4\xdd\x5e\xe8\xcd\x49\x41\xbe\x54\x97\x2f\xfd\x69\x27\xb3\xdb\x2e\x6f\x4a\x0c\x37\x2f\xf1\x12\x6a\x61\x01\xb5\x70\xf7\x8b\x91\x6f\x07\xf5\xd0\xdf\xc5\x8f\x8f\x8d\xa7\x48\x7c\x1d\x8c\xe0\xf1\x04\x3d\xac\xdd\xcd\x7f\xaf\x4b\x9e\x3c\xd9\x75\x30\xa6\xd7\x91\xbf\xb4\x74\xb3\x74\xaf\x23\x7f\x19\xb9\x87\xf1\xb5\xf1\x97\xc6\xfd\xc8\x35\x48\x52\x8c\xfe\x6c\xed\xcf\xdf\x52\xa4\xb8\x5c\xcc\xcf\x01\xe4\xb3\x7d\x81\x44\xb5\xf6\xe7\xb6\x24\xf5\xc2\x99\x62\xed\xcf\x1d\xfe\x18\x25\xf4\xe0\xc1\x77\x64\x3d\x07\x3b\x5c\x07\x55\xdd\x2a\x76\x98\x73\x0e\x04\x44\x16\xd9\x14\xb7\x5f\xe5\xfe\x7a\xca\x99\x35\xb4\x84\x5c\xbf\xf0\xf1\xbd\x3b\x07\xff\xc1\x27\x6c\xe1\xef\x7b\x63\x9f\x5f\x0f\xca\xd1\xf5\x14\xb6\xb8\xd3\x94\xd7\xff\x39\xf9\xb1\xf3\xa3\x97\xfd\xc9\xcb\x0e\x8e\xc5\xd2\xfd\x77\x3d\x17\x6b\x37\x72\xcd\x1f\x4c\xd0\x0b\xa4\x09\x80\x2d\x16\x68\x13\x59\xd0\x12\xa7\x45\x77\xe0\x85\x3b\xb0\xd9\x7e\xd6\x73\x39\xf4\x9b\xa6\x38\x09\xcf\x6d\x53\xc9\x68\x00\x3c\xbd\x9e\xdb\xa1\x27\xfb\x75\x8f\xe4\x9a\xd7\x03\x57\xb0\x78\xa4\x6f\x74\x78\x4b\x27\xe2\x85\x13\xb1\x79\x7e\x96\xe0\x15\xeb\xa9\xfc\x58\xf8\x51\x3a\xcc\x13\x8e\x37\xc8\x7a\xbc\xd8\x4f\x0b\x3e\x62\xa0\xcd\x29\xb7\x9c\x72\x65\xa9\x9a\x53\xe6\xf6\x0f\x4e\xb5\x8e\xc7\xeb\xe9\x27\x55\xcc\xb9\xbb\x7a\x3d\x8f\x42\xf5\x23\x47\x90\x8f\xf0\x3d\x38\xd6\x8f\x14\xe1\xe9\x34\x4e\x77\xc3\x96\x46\x52\x7d\xa8\xc6\x33\x5c\x83\x14\xf0\xee\xc1\x39\x7f\x30\x20\x2f\x58\x0b\x20\x28\x16\xec\x45\x16\x0c\xdc\x45\x1f\xee\x68\x52\x8f\x7b\xf0\x0e\x3c\x92\x0d\x80\x34\xee\xe1\x7a\x4e\x9b\x9a\xd9\x14\x12\xc2\x7a\x24\x1b\x4f\x92\x0d\x54\x93\xeb\x99\xce\x78\xb1\xc2\x37\x4d\x2d\x57\x6a\xd1\x94\xf3\x5b\xce\x6f\x31\x3f\xa8\xf5\xb3\x9c\x5f\xf2\xfe\x17\xbe\xbe\xeb\x91\x96\x3c\x90\x89\xe1\x9c\xc3\x19\x26\xb5\xb8\x48\xab\xb0\x84\xf2\x58\x30\x4a\x17\x54\x50\x1f\xeb\x85\x3f\xf5\x3d\xda\xdf\xe3\xdd\xd7\xb3\xdd\xde\x64\xac\x50\x9d\x2e\x98\xab\x2c\xe8\xdb\x66\xb7\x27\x65\x73\x52\x7e\x5f\x39\xe8\x4d\x4f\x9d\x73\xf1\xd8\xd4\x43\x53\x8c\xf9\x71\xfe\x0f\x0b\x3e\x18\xf3\xe3\x2a\x41\x6b\xf0\x26\x58\x22\xf1\xaf\x07\xca\x42\x0e\xa0\x25\x10\xff\x7a\x5e\x16\x6e\xd2\xe1\xeb\xc2\xbd\xb4\xc5\xbb\x20\x34\xff\xc2\x7e\x86\x83\xcf\x7a\x3e\xc7\x9e\x7c\xd0\x3d\x21\x6e\xb2\x7d\x0b\xe0\x7d\x3c\x7e\xd6\x23\xb5\x01\x9d\xe4\x46\x25\xb8\x4c\xbf\xbb\x00\xdf\xbf\x18\x01\x00\xfc\x59\xdc\x90\xad\x4a\x55\xb5\x2a\x57\x01\xb5\xe1\xd2\x8f\x7c\x61\xad\x23\xbb\xd2\x7a\x25\x24\xe4\xe9\x05\x44\x64\x91\xab\x37\x0b\xc6\x94\x6c\xe2\x12\x0b\x65\xc1\x7d\xde\xa0\xe7\x2d\x3d\xc8\x17\x1e\xe4\x37\xba\xc6\x05\x2c\x4a\x16\x17\x55\xb4\x0e\x94\xea\x7a\x4f\x0e\xc1\xe5\x57\xcb\x2a\x7e\xe4\xc2\x98\xfc\x77\x91\xfc\x17\x9f\xe6\xa5\xdf\xf9\xc2\xef\xfc\x46\x1b\xb9\x5e\x79\x8b\xf7\x62\x36\xc9\x09\xae\xf7\x72\x36\xc9\x62\xdc\xae\x8b\x8c\x04\x09\x08\xee\xc9\x5d\x20\x0b\x41\x16\xd9\xb8\x8b\x70\x3b\x65\x58\x0b\x0e\xe6\x8b\xba\x60\xbd\xc9\x4d\xdc\x4e\xaf\x3a\x97\xa4\x42\x26\x22\x5a\x38\xa8\x67\xc1\x22\xf0\x7a\x00\xc8\x92\xc5\xf3\xbf\xff\xde\x4e\x18\x93\xe6\x22\xb3\xc1\x0d\xc9\x78\x9b\x53\x49\x4e\xe3\x2a\x0e\x49\x82\xf4\x36\x56\xb8\xfa\xd5\xb0\x6a\xfe\xef\xbf\xb8\x52\xaf\xb7\x39\x95\xa4\x4b\xf7\x84\xf9\x00\xd7\xe5\xcf\x22\x1d\xc2\x0d\xcd\x78\x25\x51\x60\xbc\xdc\xb3\x31\xbb\xee\x92\xf7\x4a\x95\x5f\xd9\x78\xa7\x71\x16\x53\x12\x85\xfb\xfc\xed\x5a\xe2\x9a\xb3\xc8\x89\x70\x93\xcb\x78\xbd\xc3\x91\x0f\x36\xa1\x33\x28\xc9\xd6\x9b\x9c\xcd\xed\x5c\xe4\x6c\xde\x24\x55\x37\x29\xe5\x17\x52\x47\x16\xd9\xf8\x6d\x8d\x8d\x4f\xf6\x0e\x06\xec\x9d\x1e\x83\xc9\x4e\x71\x19\xcc\x7f\xbc\x5e\x08\xd2\xf4\x54\x2f\x37\x3d\x69\xc9\x3d\x3d\xb0\xe1\xe2\x25\x83\x51\xf1\xb3\x58\x6f\xd8\x61\xe4\x52\x41\xf2\x5f\x69\xc2\xbb\x59\x74\x08\xfc\x2b\x4d\x00\xaa\xa6\x1e\x6e\xf2\xf6\xbf\xe4\x39\xf0\x2d\x5f\xca\x34\xeb\x4d\x92\x40\x5a\xa9\xf5\x4a\x12\xde\x64\x42\x2a\x58\xac\xeb\x7d\x5c\xce\x27\x97\xd3\x8d\x79\xdc\xab\xa4\x15\xf5\x70\xfb\x1e\x5b\x4a\xbe\xe4\x02\xf8\x6c\xbd\xd2\x0d\x32\x39\x54\x74\x7a\x4b\xd9\x68\xbd\x29\xfe\xd5\xc3\x05\x95\x24\xbc\x29\x01\xd7\xc3\xe5\xfb\x1c\xc3\xc7\x8f\x30\xe8\x9a\xb0\x17\x32\x53\x3d\x9c\xf3\xe7\x20\x92\xdf\xa8\xa8\xf8\xd6\x27\x99\xf8\x0e\xda\x62\x86\x1f\x4a\xd0\xf5\x1d\xdc\xc8\x66\x55\xb7\x8a\xf9\x4c\x6a\x96\x35\x9b\xff\x06\x55\xaf\x55\xb4\x0e\x9f\x42\x82\xe7\x2c\x1a\x55\x34\x85\x3c\xbe\xbe\xbc\xf6\xf5\xb0\x2d\x54\x53\x0b\x09\xad\xe2\xaf\xb1\x3e\x19\x8e\x2f\x19\x8e\x9b\x23\xf3\xc9\x70\x7c\x27\xad\x43\xf5\x3e\x49\x00\xa9\xea\xc9\x6e\xb5\x3e\xb9\x8b\xef\x62\xce\x9c\x0f\xd3\x4a\x2f\xd2\x4a\x63\xc8\x58\xdf\xed\xa0\xe0\x37\xe0\x5c\xc8\x2f\x9d\xc5\x84\xf2\x53\xe3\xf4\x6e\x86\x04\x69\xd6\xbc\xbe\x30\xaf\x57\xf4\x76\xeb\x93\x04\x60\x64\xaf\xa8\xed\x16\x96\xf6\x2c\x78\x57\x79\x6a\x84\xfd\x59\xc0\xfe\x60\xfa\x58\x82\xfe\x2c\x0c\xf1\x15\x55\xdc\x32\x39\xc6\x22\x39\x06\x9e\x75\xcb\xd4\x18\x8b\xd4\x18\x15\x8f\x90\x65\x66\x8c\x45\xc8\x88\x39\x87\x16\x71\x23\x59\xf0\xd2\x76\xbf\x72\xa0\x9d\xd6\x4f\x5a\xf7\xc6\x7f\x9d\x2d\xe5\x69\xfb\xba\xcd\x77\x9a\x87\x0e\x99\xe1\x7a\x91\xe1\xfa\x9e\x7f\xd7\x5f\xaf\xaf\xbb\x4a\x29\xd8\x54\x20\x3a\xd7\x27\x45\x20\xe1\x75\x05\x59\x70\x7d\x18\x34\x16\x01\x2c\x15\x60\xc1\xf5\x49\x12\xbe\xc1\x8f\xf0\x28\x66\xe4\x58\x88\xd5\x24\x00\x5e\x1f\xfe\x1b\xeb\x9b\xbc\x57\x1e\x8b\xe9\xa0\x53\xd8\xa9\x05\x9a\xfb\x4d\x67\x3b\x69\xca\x03\x2c\x95\xf8\x52\xc4\xa9\x5e\x2c\xa1\x8d\x16\xd0\x46\x17\x71\x8e\xeb\x93\x70\x7c\x8b\xb6\x3c\xc1\xcb\x9d\x5a\x70\xe8\x1e\x84\xe5\x56\x45\x0e\x0b\x84\xc1\xf5\x85\x6d\x05\x2b\xe7\x09\x0e\x57\x2e\xa5\x1b\xf2\x93\xad\x4f\xb6\xe5\x83\x06\x15\x4f\x70\x38\xd2\xe0\x00\xb9\x55\x12\xa1\x6f\xb3\x34\xee\xcb\xf6\xaa\x6d\x9a\xa2\x71\x05\x1e\xf2\x76\x93\x11\x61\x7d\xb2\x25\x64\x0c\xa9\xbf\xd9\x48\x84\x3e\x88\x50\x81\xd5\x26\x79\x48\x16\x9c\x16\x0f\x9e\x54\x88\x98\x1e\x13\x27\x2d\x3d\x35\x16\x9e\x1a\x57\x81\xfb\xfe\x5e\x67\x93\xec\x09\xc1\x1a\x4b\xd7\x8d\x45\x9a\x91\x7a\xba\x3b\x9f\x63\x48\x21\x88\x5c\x0b\xeb\x93\x2c\x81\xdc\x54\x09\x6a\x59\x9f\x72\xd1\x97\xd4\xa9\x9e\xce\x46\xb2\xf4\x41\x83\x80\xb7\x0c\x9d\x40\x82\xd0\x21\xd2\x31\x04\xbe\x1f\x59\x04\x1f\x4d\xaa\x5e\xab\xf8\xcf\xaf\xa0\x2e\x41\xd8\x50\xc5\x67\x25\x70\x06\xc9\x82\x1f\x4f\x7e\x24\xcd\x49\xe0\x05\x82\xd5\x2d\x0e\x54\xa0\x01\x24\x54\x05\x9a\x30\x0e\x7c\x71\xe2\x80\x04\x9d\x49\x52\x83\x24\xe2\x59\xd0\xe1\x4d\xeb\x97\x1d\x5e\xfc\x98\xf4\x33\x0e\x94\x17\x71\x24\xe1\xb9\xce\x83\x61\xa1\xbd\x88\xe3\xa2\xad\xea\x8f\xb6\x75\xb3\x34\x95\x61\x21\xe2\xc4\x91\x22\x0e\xd1\x2a\x61\xfe\x94\x20\x5f\x79\x45\x29\x10\x07\xf1\xb9\x71\x54\x66\xd8\xf8\x0f\x9d\x64\xe0\x55\x82\x71\x30\xcc\xa7\x12\x07\xd4\x04\xd4\xc2\x20\xb7\x4a\x16\xac\xfb\x60\xa0\x84\xef\x07\x89\x56\x2e\xa2\x70\xe3\x68\x4e\x1a\x72\x82\x5a\x20\xcc\xb9\x12\x04\x55\x55\x94\xa0\x41\x14\x55\x16\x4c\x67\xf2\x55\xff\x7d\x95\x4b\xea\x32\x74\x77\x07\x4a\x80\xb2\x33\x8e\xe1\x62\x25\x41\xa8\xd7\xc1\x57\xc3\x61\x25\x27\x50\xf1\x5a\x09\xbd\x4c\x02\x2f\x13\x60\x99\xe2\x18\xce\x19\x42\x50\x59\x85\xe9\x04\x93\x10\xd4\xeb\x60\x15\xa6\x83\x4a\x89\xc6\xb4\x4b\x21\x4a\x57\x80\xd2\x55\x5d\xe2\xe9\xaa\xa7\x14\x53\xaf\x42\xe3\xd3\xc6\x21\x0d\xf9\x1e\xc5\xb1\x1c\xd3\xb2\x25\x76\x6b\xd9\x52\xca\x35\xb5\x59\x13\xd6\xe4\xf4\xdc\x86\x70\x1b\x52\x76\xc1\x3e\x19\x47\x38\x24\xc8\x02\xfa\xd9\x00\x09\x2c\x0b\xe6\x7b\x32\xca\xb0\xa5\xe4\x47\xb0\x4d\x86\x7e\x31\x81\x2b\x8c\x99\xa1\x82\x60\xb1\x2c\xb2\xf1\xc1\x91\xdd\xee\x1e\x54\x61\x30\xee\xed\x29\xdb\x1c\xeb\x8b\xb6\x1f\xef\x51\xb2\x26\x40\x7a\xc5\xf1\xb8\x72\x10\x0a\x64\xf2\x30\xf6\x2c\x88\x3d\xab\xa4\xa4\x0d\x13\xd4\x04\xb0\x64\x75\x58\xe3\xc0\x93\x43\x31\xf3\x53\x1c\xaf\x8d\x27\x87\x52\xa7\x35\xfe\x96\xd4\xa2\x5e\x1e\x83\xd7\x41\xa5\x44\x53\x91\x9a\xe3\x78\x9d\x1e\xf7\x1d\xcc\xc5\x30\x6b\x7d\x94\x83\x95\xea\x56\x0d\xab\x72\x7e\xb3\x51\x13\xd6\xe4\x42\x71\xa0\xcc\x5d\x13\xe5\x60\x3b\x39\xd4\xe4\xb1\xf9\x13\xa4\xbc\x27\x5e\x28\x0a\xa6\xaf\xc0\x11\xa8\xa2\xd1\x0d\xb2\xde\x67\x31\xf3\xa3\x4a\x8d\x6d\x27\x49\x20\xe5\x5d\x14\xa2\x9e\xa3\xa4\x7c\x72\x61\xb0\x08\xfd\x86\x82\x5c\xf8\x98\x61\xa3\xc0\xa7\x44\x81\x6e\xe0\x58\x13\x45\xba\x51\x4e\x76\x98\xb5\x33\x75\x4e\x94\xe4\x60\x88\x39\x0a\x71\xdc\xa2\x5c\xec\x02\x6b\x57\x2e\x87\x79\xd1\xf8\xdf\x85\xda\x28\x08\x32\x41\x16\x7e\xa2\x96\xa2\x48\x66\x0a\x64\xe6\x9a\x56\x6d\xab\x50\x0b\x5d\x2c\xec\xed\xc4\x92\xe7\x01\x1e\x2d\x0a\x90\x4b\x51\x92\xda\x54\xe4\xb9\x30\x8b\x4f\x90\xc5\x87\x10\xa6\xd0\x19\x2a\x80\x99\xab\xf7\x61\x4b\x36\x9e\x24\xa9\x22\x83\x85\xf1\x84\x41\x3c\x21\x61\x4e\x61\xe4\x60\x10\x39\x48\xfe\xf3\xd0\x85\x2a\x70\xa1\xaa\x78\xfb\x04\x59\x80\xb2\x08\xb4\x57\x7e\xf5\x5a\x45\xe3\x85\x71\x62\x08\x0f\x32\x02\xd5\xdb\x85\xc4\xf5\x2a\x00\xaf\xbb\xa4\xd2\x86\x25\x46\x49\x36\xc8\x1c\x56\x51\xa4\x61\xa5\xa9\x1c\x63\xa0\xdd\xbd\x84\xd9\xb9\x9d\x61\xf7\x54\x24\xb3\x83\x25\x3a\x08\x4f\xcc\xc2\x61\xb1\xa0\x92\x35\x62\x15\x2f\xbc\x13\x83\x80\xc5\x2c\xce\xfc\x8f\x8f\x86\xa3\x1a\x34\x7e\x31\xf6\x61\xe3\xc9\xe6\x10\x9b\x15\x64\x16\xca\xe2\xce\x1a\xba\x93\x84\x15\x48\x18\x92\x52\x94\xe9\xc2\x40\xc2\xee\x9b\x96\xa4\x61\x25\xf9\x97\x4a\xe8\x48\x94\xe5\x38\x21\x46\x08\x25\x51\xc2\xd6\x83\xaf\x20\x7e\xf8\x8e\x65\x41\xf3\x8d\x31\x48\x8e\x0a\x94\x86\x10\x91\xd0\xa9\x2c\xf0\x23\xab\xa0\x31\x46\xd9\x2e\x5f\x12\x16\x6c\x14\x51\xb6\xab\x00\x03\x02\xc7\x1c\x78\x9c\x65\xc1\xe6\x0c\x9a\x92\xb0\x94\x87\xa6\xbc\x1d\x8f\x4d\x25\xd7\x01\x56\x5d\x94\xd7\x8d\x78\x79\xbd\x26\xff\xbd\xae\x55\x72\x1b\xad\xb1\xa7\x52\x91\x02\x15\xa9\x5e\x6b\xa9\x08\xd8\x7f\xa6\x99\x8a\xf2\x39\x04\x44\x9e\xea\x11\xfd\x6c\xea\xa3\x29\xce\xe3\xe7\xd0\xa1\x3e\x30\x4f\x71\xca\x6d\x10\xc4\x59\x2b\xe7\xea\x44\xe2\x89\x33\x25\x1e\xac\xf4\x71\xca\x80\x10\xdc\x59\xe1\x81\xe2\xc4\xa8\x14\xe7\xc1\xfb\x92\x1c\x4f\x88\x2a\x18\xc4\x79\x12\xa6\x16\xa7\x5c\xca\x09\x97\x02\xca\x64\x9c\x72\x29\xf8\xd4\x99\x6d\x2a\x74\xa9\x0b\x5c\xea\xb0\xe2\xc7\x29\xb1\x39\x4f\x06\x05\xfd\x39\xb1\xb9\xc4\x99\x44\xa7\x56\x2e\xf3\x89\x4b\x52\x9c\x27\x6f\xb8\x03\x95\x00\x9d\x70\x29\xf2\x11\x26\x6a\x0a\x12\x35\x5d\x27\xe4\x15\x3c\xc3\x2c\x58\xd1\xdb\x2a\x47\x7a\xf1\x23\xd4\x9b\x94\x4d\x59\x30\x52\xa8\xf7\x89\x22\x24\xce\x9b\x1b\x37\xfc\xca\x71\x21\x1a\xf9\x64\x9f\x92\x06\xbc\xfd\x2e\x19\x89\x53\xce\x85\x24\x4f\x97\x8c\x04\x5e\x80\x59\xb0\xa6\x9c\xc8\x13\x03\x7a\x90\xf6\xa9\xe2\x0e\x14\x27\x66\x97\x38\x2b\x3b\xdd\xe9\x51\x4a\x70\x22\x09\x55\xa7\x8d\x32\x24\xce\xe4\x60\x48\xd3\x13\x67\x77\xd6\x48\x3d\xd5\x31\x74\x97\x39\xa5\x9e\x06\xd9\x3d\xe5\x65\x70\x37\xac\x3e\x91\x67\x77\x01\x3b\xdb\x3a\x18\x42\x77\x5b\x93\xcb\xc1\xd9\x21\xce\xee\xa0\x90\x6a\x70\x01\x8a\x73\xd8\xf8\xa0\x71\x76\x75\x38\x99\x01\xfd\x98\x4c\x59\xee\xe6\x44\xce\xa9\xd0\xe8\x73\x3a\xce\xa4\x07\xd8\x82\xe2\x94\xbd\x39\x53\xdc\x31\x47\x55\x9c\xd3\x35\x4e\x12\x51\x7d\xb3\x4c\x65\x15\x04\xe0\xf6\x83\xc9\x48\x1a\x4e\x24\x9f\x76\xd0\xd4\xb2\xf1\x14\x80\xba\xbf\xc9\xde\x10\x82\xdb\x7f\xdf\xb8\x74\x72\x37\x5e\x09\x29\x0a\xf1\xb7\xf8\xc9\xc7\xb9\x3c\x1d\x32\x3c\x5e\x12\x69\xcc\x19\xb0\x4e\x50\xda\x53\x1a\x43\x3c\x6e\xf5\x55\x3a\xb7\x93\x49\x7e\xc5\xe4\x55\x71\x6e\x3b\x4c\xde\xa5\xff\x3e\xb2\x3f\xa8\x4e\x83\x62\x92\x3e\x2b\x8b\x97\x2a\x3a\xdc\x1e\xa1\xe4\x6a\xc8\x70\x19\xe7\xe3\x69\x7c\xf2\x34\xca\x3f\x9e\x52\x9d\x13\xb9\x07\xd3\x68\x9c\x8f\xfd\x25\x0f\xd3\xbd\x6f\x8f\x8d\x3f\x6f\xd6\x8c\xbf\xbf\xb6\xe7\xeb\xe6\xbe\xed\x7f\xff\xed\xde\xc6\xd7\x63\x92\xa4\xa9\xe2\x7d\x14\xe7\xeb\x31\x49\xa1\xa8\x7b\xf3\x3e\xc7\x97\x52\x4f\x87\xa2\x9f\x9f\xbb\xf6\x45\xd6\xe4\x91\xb8\x24\x3f\xc4\x08\x03\xc4\x16\x97\xec\xd0\x05\x41\x02\x52\x31\x08\x1d\xce\x82\xfd\xe7\x72\x5e\x92\x9f\x0b\xca\xd2\xb8\x9c\x57\xb1\xa9\x42\x53\x95\x9a\xcb\x9a\x1c\x37\x92\x87\x60\x9e\x71\x25\x0f\x54\xa5\xc1\x17\x56\xa0\x20\x22\xd9\x1c\x5c\xa1\x6f\x6c\x5c\x85\xc6\x21\xc2\x17\xaa\xda\x20\x46\xb9\x12\x18\x12\x97\x14\xe9\x82\x22\xe1\xe1\x14\x80\x7f\x66\x41\x5b\x9d\xe9\xa0\xba\x89\x4b\x5b\x11\x47\xc7\xa0\xe6\x00\x01\xb4\x12\x28\x12\x04\x2e\x67\xc1\x8f\xbc\x29\x26\x25\x8b\x2b\x89\x89\xf9\xb8\x82\xc4\x63\x7f\xe2\x4a\x99\xa7\x12\xe9\x11\x97\x1c\xc6\x95\x6c\x45\x77\xa4\x38\x5b\x06\x3e\xba\x04\xa2\xc6\x55\x7f\xbf\xe5\xce\x40\x42\xae\xe6\x52\x21\x23\x79\xc4\xf5\xdf\x0d\xfc\x77\xb1\x85\xc5\xd5\xfc\xad\xe7\x7a\x3a\x4a\xf9\x86\xab\xfb\x1b\x43\xea\x2e\x42\x52\x12\xb3\x6d\xc5\x25\x09\xb9\x10\x7e\xc0\x01\x8c\x4b\x2e\xe1\x4a\x19\xa8\x3b\x3b\xb9\x84\x2b\xe9\x05\xc9\xa3\x02\xb0\xd2\x2c\x26\xbf\xd1\x92\x5c\x02\xc1\xd8\xb5\x73\x31\x2e\x49\xc1\x05\x9b\xd0\xb9\x18\x97\x6c\x02\x71\xd9\x15\xaf\xa3\xb8\xa6\x8b\x8e\xed\xe6\xf2\x47\x69\x01\x7e\xc7\x18\xda\x82\x74\x6a\x59\xd0\x14\x6c\x89\x78\xa8\x41\xe8\x76\xed\x9e\xbd\xe5\x36\x70\xf5\xbb\x67\xcf\xab\x7f\xc1\x4b\x00\x22\x1a\x57\xb8\xf1\xc9\x52\x5c\x97\x63\x08\x97\x0f\xf6\xa2\x7b\xae\x14\x64\xae\xe4\x32\x88\xb7\x8d\x0b\x1b\x6f\xe0\xec\x7c\x5d\x8e\x61\x3b\x9d\x24\x0a\xf5\xb7\x81\xdb\x2d\x4d\x56\x04\x17\x9b\xb8\x64\x38\x2e\x18\x8e\xee\x41\x7b\x6c\x3c\x29\xc0\xf0\x6c\x3c\x8e\x20\xc5\x96\xeb\x72\x36\x32\x1c\x60\xad\x9a\xf0\x2b\xae\xd7\x15\x45\xc9\xfa\xdb\x67\x6f\x37\x81\xe7\xa6\xfb\x8a\xeb\x73\xf9\x30\xf2\x5e\x5e\x54\xaf\xf7\xf5\x61\xe0\x74\x19\x3e\xa7\xf3\xb1\x7e\xbc\x1e\xc2\xb5\xc6\x05\xcb\x81\x39\x33\x6e\x8c\xba\x71\x1f\x0c\x7e\x76\xaa\x2e\xab\x20\x65\xd5\xaa\x6a\x15\x6d\xf1\x58\x18\xcd\x1e\xf7\xa1\xdd\xd5\x2a\xa8\x22\x2e\xdc\x03\xc1\xf7\x96\xc1\x00\xfe\xb5\x0e\xc4\x99\xdb\x2b\x7e\x73\xc5\x07\x92\xef\x8d\x35\x26\xee\xbc\xe9\x75\x70\x94\x6f\xaf\xf8\xcd\x15\x1f\x1c\x65\xb1\x61\xe3\x46\xc4\x21\xbf\x57\xdc\x5e\xf1\x3b\x19\x0d\x5c\x82\xe2\x56\xc2\x21\xab\x1d\xc6\xd2\x10\x2a\x36\x40\x82\xad\x98\x46\xe3\x96\xe5\xb8\xb9\xf3\x44\x17\xc4\xed\x9d\xbf\xd1\xce\xe2\xf9\x13\xf7\x65\x53\x29\xb8\x5c\x98\x34\xe3\x96\x0c\x80\x16\x6b\xfa\xaf\xb8\xd5\x95\x00\x16\x7b\x11\x47\x1f\xf7\xed\x0c\xd1\xc6\xe2\xa5\x13\xb7\xd2\x08\xbe\xeb\xf8\x24\xc5\x2d\xc7\x71\x43\x3e\xb0\x5f\xc6\x5d\x9d\x60\x92\x8f\x3a\xd8\xd6\x1b\xab\x4d\xdc\x75\xe4\x7f\x0c\xa1\xba\xec\x48\x23\x00\x9e\xc6\x2d\x01\xb9\x1b\x8d\xd3\x52\x73\x82\x0d\x91\xdc\xbd\x91\x80\xdc\x8d\xff\x20\x4e\x80\x09\x64\x71\x52\x45\xeb\xdd\xad\xef\x6c\x3d\xec\xdf\x2d\x51\xb9\xd1\xb1\x0c\x27\xa8\x8e\xe5\xc6\x44\xac\xb4\x2b\x18\x6d\xdc\x08\x1a\x03\x66\xfd\x96\xe7\xb8\x07\x3f\xc2\xf5\xdc\xc3\xf5\x1b\xac\x0c\x9c\xd7\xad\x4a\xe5\x4e\xd6\xe3\xc2\xac\x18\x66\x17\x8c\x1b\xb2\x32\x7e\x55\xee\xc5\x64\x2f\x60\xaa\x84\xb5\x8d\x1b\xe9\x63\x78\x96\x97\xd3\x86\x88\x80\x62\x18\xf7\x72\x5f\x93\x96\x54\xc2\xa4\xc3\xa4\x84\x71\x23\x90\xcc\xe3\xfe\xfb\x93\x7b\x87\xbb\x90\x04\x05\x7c\xda\x00\x73\x21\x8b\x0f\x8d\x03\x55\x72\x17\x37\x24\x66\x7a\x62\x95\x60\x6e\x18\x0e\xe2\xac\xe3\x96\xa0\x00\xbf\x60\x86\xae\xb8\x1f\x47\x8d\x70\x02\x86\x69\xdc\x0a\x27\x77\xf2\x06\x44\xa6\xc4\x2d\xf9\xb8\xd1\x7a\x60\x3f\x0c\x93\x21\x06\xb0\xbd\x95\x58\x86\x00\xbb\x37\x8b\x9e\xff\xd1\xb8\xd4\xe3\x46\x5e\x99\x8e\xfd\xb5\xf1\x97\xc6\x69\xe9\x73\xe8\x88\x2b\x98\x0b\xe3\xfe\x9c\x20\xc4\x63\xda\x94\xc4\xe3\x4e\xb1\xa5\x4e\xde\xf4\x2a\xf1\xa8\x88\x22\x98\x02\xa3\xaa\x2d\xa9\xd8\x68\xc9\xf5\x10\x55\xc1\x03\x78\x09\xb3\x79\x45\x55\xca\xa8\x29\x65\x00\x9b\x19\x15\xbb\x6d\x80\x37\x51\x09\x86\x8e\x8a\xdd\x36\xc0\x16\xae\x18\xe7\xa2\xaa\x1d\xa9\x65\xe7\x7f\x83\x1a\x46\x55\x21\x14\x18\xe7\xa2\x9e\x36\x9e\xf4\x02\xb8\xde\xa8\x0a\x27\xa0\x0f\x0f\xdb\x56\x10\xa9\xf9\xfa\x63\x4f\x8f\x8a\x85\x36\x48\x13\x59\x31\xe9\x85\x28\xc4\x01\x0a\xb1\x07\xb8\x4a\x26\x6a\x92\x86\x4b\x45\x43\x55\xb1\x41\x2a\xc9\x4a\x24\x76\x54\x15\x1b\x35\x65\x16\x4f\x79\x55\x56\xa9\x49\x25\x3c\xd1\x55\x8d\x2a\xb8\x19\x15\x73\x61\x00\x9e\x91\x45\x6e\x0c\x67\xbc\x56\xd7\x17\x1d\x2b\x11\xdd\x21\xa8\x46\x00\x72\x6c\x4a\xb1\xa8\x92\x04\x00\x8f\xbd\x08\x15\x3b\x6e\x54\x28\x02\x2a\x2b\xb3\x50\x06\x00\xc8\x66\x13\x8b\xaa\xd6\xb5\x36\x76\x8a\x33\x0c\x2c\x47\x16\x34\x0e\xff\x4d\x8e\xca\x2c\x3e\xaa\xd8\x2a\xe9\x46\x45\x06\x21\xb6\x3b\xaa\xca\x08\x92\x52\x36\xc2\xb8\xa3\xaa\x50\x05\x36\xb9\x01\x49\x18\x02\x7d\x44\x9d\x7e\xc5\x0c\x65\x21\xea\x1c\x28\xc0\xf8\x71\x3a\x88\x49\x8f\x08\x71\x55\x7e\xa1\x26\xbf\x80\x9f\x41\x54\xf9\x05\x82\x72\xcc\xee\x15\x55\x71\xa2\x2e\xa6\xc8\x1b\x5f\x65\x21\x48\x71\x39\x79\x7d\x08\xd5\xc9\xe2\xe5\x23\xa6\x13\x36\x1e\x34\xce\xa0\x54\xa0\xd6\x14\x21\xc8\xca\x17\x55\x05\x6a\xcd\x6b\xdf\xb0\x0c\x86\x71\x3e\x41\x68\x0f\x69\xfa\xa2\xca\x64\x90\x00\xb3\x1d\x9e\xd7\xed\x52\x25\x6d\x68\x87\xa7\x53\xa2\x40\xf8\x8f\xf9\xc1\xa2\xaa\xd6\x20\x14\x08\xff\x84\xa8\xca\x17\x35\x39\x8b\xc9\x53\x57\x55\x97\xd6\x87\xe5\xf4\x08\x3d\xce\xee\xa1\x25\x8f\x90\xd2\x44\x7d\x98\x9e\x67\x41\xe5\x68\x7d\xf9\xd1\xc3\xa0\x5a\x03\xac\x93\xeb\x3e\xfd\xca\xb1\x27\x1b\xd1\x0a\xe2\x59\xfd\x1c\x68\x52\x85\x56\x5c\x86\xcf\x0d\x4c\xfe\xa1\xe1\x15\x13\x4d\x99\xa1\x25\xb3\xd0\x0a\x43\x15\x1b\x25\x5a\x52\x82\x46\xcc\x77\x90\x59\x33\x0b\x7e\xe4\x8d\x6a\x4a\x08\xe4\xd7\x9c\x7e\xa4\x81\x04\x18\x95\x56\x2e\xab\xa6\x55\x2b\x47\x8a\xa2\xc1\x7c\x9b\x41\x8a\xcd\x86\x2f\x7e\x34\x35\xa4\x2d\x79\x06\x7c\x32\xa2\xa9\x0e\x6d\x79\xe1\x1b\x60\x76\xd1\xe4\xfd\x5b\x72\x06\xd3\x96\xe4\x0c\xc0\xbb\x6e\x78\xe6\x47\xd3\x8a\x02\xdc\x75\xc3\xf2\x1e\x4d\xba\x40\x5c\x55\x03\xdb\x2e\x1a\xde\x9d\x01\x00\x76\xc3\x05\x3f\x9a\x6a\xca\x76\x8f\x6c\x9d\x41\xc9\x05\x10\x82\x65\x0e\xaf\x20\x0e\x2b\x0b\x86\xce\x01\x69\xea\x22\x48\xdc\x79\x01\xc9\x12\xcd\x4b\xdf\x2a\xeb\xce\x99\x69\x58\x6e\xa3\x61\xb9\x25\xdb\x7c\x98\xd6\x33\x5a\x63\xa4\x10\x99\xe6\xab\x0f\xc8\x76\xc3\xa8\x16\x4d\x33\x4a\xcb\x7b\x6d\x42\xaf\x10\x41\x26\x40\x90\xb9\x08\x2b\x0c\x21\xb8\x83\x2c\x9e\x8d\x34\x71\xd1\xd4\x4f\x10\x04\x76\xe1\x95\x10\xad\x3b\xc5\xce\x20\x5c\x2e\xd5\x92\x2d\xa5\x8b\x46\x34\x79\x08\xd3\x1d\xc0\x74\x5f\x6a\x00\x9b\xbc\x01\x81\x5d\xed\x3c\xfe\x0e\x1c\x1a\x4d\x91\xa1\xa5\xc8\x00\x22\x6e\x34\x5f\xfb\x06\x51\xc0\x43\x3f\xda\x72\x9d\x92\x12\x34\x1c\x86\xa3\xa9\x3f\x68\x79\xed\x9b\xda\xdb\xa6\x79\xa4\xe5\xbd\x9f\xce\x23\x1c\x4e\xdc\x7c\x44\x53\x5e\xef\x96\xef\x7c\x3b\x7f\x5f\xb9\x72\xc1\xa0\x9d\xad\xd6\x90\x96\xd7\xbc\x9d\x4e\x6d\x3b\xdb\x4d\x87\x1e\x0e\xe5\x03\xa0\xc4\xaf\xbb\xb1\x0b\x2a\x10\x40\x12\x6f\x5a\xcf\x8c\x2c\x8b\xc6\x75\xc6\xa7\x36\x9a\x86\x0d\x92\x8c\xb6\xd3\x7d\x7f\x6c\xeb\xb1\x2d\x36\xd9\x1b\x4e\x58\x99\x79\xc0\xa2\xa9\x11\x68\x98\x49\x6f\x9b\x7f\x9d\x10\x97\x1e\x87\xd9\x30\xf6\x2c\x9a\x97\xbe\xf9\xa3\xdb\xf7\xb2\xa8\xa8\x45\x9b\x9a\xcb\x06\x1d\x38\x3d\x30\xd2\x01\x62\xd2\xda\x09\x01\x69\xd2\x01\x12\x92\x9a\xec\x2b\xba\x74\xa0\x27\x47\x20\x27\x60\xc0\x5a\x10\xb0\x46\xc8\x63\x18\xae\x16\x00\x06\x35\x42\x0c\xa2\xcb\x1b\x74\xac\x24\x1a\xcb\xba\x64\x00\x30\x74\x33\x7a\x85\x09\x4b\xa3\xe7\x3d\x6f\x84\x71\x87\xf9\x4a\xa3\xe7\xcb\xde\x2e\x28\x8a\xd8\x43\x01\xf6\x10\xde\x44\x61\xb2\xd2\xe8\x90\x01\x9c\x43\xa3\x9f\xbf\xa6\x5e\xaa\x18\x28\xce\xe1\xd1\x93\x25\x98\x3c\x09\x22\x16\x45\x4f\x5e\xa0\x5d\x9c\xa3\xae\x31\xb5\x5f\x34\xce\xa0\x14\x06\x7a\x3e\xfc\xf8\x17\x85\x00\x46\xd1\x6f\xf4\xef\x9c\xac\xee\xc3\xdf\x53\x4a\x20\x4e\x33\xc4\x6b\x0f\xf0\xda\xdb\x05\xe3\xdf\xb5\x68\x90\x46\xb5\x29\xcf\x75\x49\x45\xaf\xac\x0b\x8f\x60\x57\xbb\xd0\x93\x01\x20\xaf\x69\x74\xed\x17\x84\xea\xb5\x8b\xa3\xd6\xd5\x5a\x02\x00\xdf\x2e\x4e\x4c\x57\x3c\x20\x78\x8f\xdc\xa7\xd1\x65\x06\x3a\xb4\x03\x77\xca\xe8\xda\x2a\x3a\xfc\x01\x81\xde\xd1\xa5\x1d\x24\x68\x6d\x9a\xc2\xba\x8a\x4c\x92\xb5\x4e\x54\x07\x5d\xad\x65\x4f\x42\xd0\xae\x5f\xd5\xb6\x2a\x2f\x2f\x87\x4a\xe8\xf9\x00\x7a\xbe\xe1\x15\x18\x5d\x0b\x6c\xff\x99\x2a\x18\x82\x5a\x08\x82\x07\xe7\xaf\xc6\x41\xc1\x42\xe0\x28\x18\x5d\x16\xa2\x0f\x96\x0a\x52\xd5\x55\x64\x82\x65\x3f\x7f\x1f\xb9\x0f\xf3\xcc\x1a\x06\x3e\x6d\x7b\x72\x45\x1c\xa6\x36\x0e\x92\xc7\xca\x5a\x75\x19\x8f\x3e\x6d\x9b\x95\x52\x8f\xd9\x93\xfa\x34\x90\xc9\xa2\x6b\xa6\xed\xc9\x92\x94\x03\x9a\xd7\xa5\x44\x3d\xe5\x8e\x76\xff\xaa\x3c\x2e\x40\x9d\x1e\xbc\xa7\x5d\x4a\x24\xb0\x3e\x58\xf6\xd1\x55\x65\x92\x9f\xb6\x69\x80\xea\xe1\x2e\x13\xbf\x72\x78\x21\xa4\x4e\x1d\xea\x84\xcb\x5f\x74\xa9\x53\x87\x1f\xb9\x91\x98\xc5\xe8\x0f\x30\xfa\x2f\x6d\x1c\x5d\x82\xd5\x53\x24\x31\xff\x59\x88\x9d\x15\x64\xba\x6d\xb8\xf8\x45\x57\x7d\xd1\xa1\x4e\xda\x88\xba\xd4\x09\xe8\xfe\x86\xcf\x5d\x74\x89\x4c\x4f\x41\xa2\x49\xfd\xbb\x82\x04\x51\x97\x85\x08\xd1\xe8\xb2\x11\x00\xfb\x9b\x6d\x2c\xba\xc2\x45\x27\x18\x0a\xd4\x9f\xe8\x52\x94\xfe\xd1\x96\xe7\xf6\xb3\xad\xcf\xb6\xb2\x47\xa3\x34\x63\x80\xda\x7a\x70\xc3\x07\xbe\x5e\x31\xc8\x9d\x80\xa7\x5a\x0c\x39\x8b\x01\x4d\x01\x33\x2c\x0c\xdb\x8c\x71\xb0\x69\x9c\xe5\xa1\x1e\x82\x40\xcd\x86\xd3\x56\x0c\x4d\xaf\xa3\xd8\x16\x3d\xca\x5a\x90\x66\x57\xc4\xec\x18\x6a\x1f\x07\x94\xe7\x46\x06\x30\xe3\x6e\x10\xe0\x79\x11\x07\x1e\x43\x89\x83\x74\x05\x05\x47\xb8\x18\x72\x20\xa4\x2e\x68\x5a\xa1\x86\xf6\x90\x71\xb2\x69\xec\xd0\x50\x5d\x31\xc0\x35\xc2\x5d\x2e\x86\x04\x6a\xc0\x95\xdc\x88\x01\xe6\xf3\x8d\x01\x57\x72\x73\xc4\x87\x14\x6a\x5c\xf6\xc8\x20\x94\x56\x8c\x2e\xc5\xa9\x2e\x86\x76\xd8\x71\xb1\x38\xff\xc2\x6d\x2a\x86\xac\x0d\xe9\x7f\x9b\xf6\xad\xa1\x51\x65\xc0\xed\x68\xdf\x32\x68\x35\x08\x5a\xbd\x2a\x07\x7e\x48\xc3\x46\xf2\x33\x4d\x93\xd7\x90\x3c\x91\xb0\xa1\x69\xe0\x1a\x8a\x2a\x83\xdc\x2c\x07\xef\xe5\x50\x21\x3a\xa0\x58\x9a\xb3\x04\x5f\x8b\x91\x64\xaa\x69\xce\x1a\x9a\x57\x07\x11\xea\xf8\xf4\xc5\x90\x64\x91\xfb\xc1\xac\x69\x31\x24\x59\x03\x76\xa7\x7a\x8a\xb4\xb8\x0e\x52\xed\x2b\x28\x0c\x35\xa7\x44\xca\xb6\x7a\x59\xe5\x50\x93\xc5\xb9\x88\xb1\x8f\xa1\x11\x76\x90\x1d\x92\x68\xa0\x18\xb2\x3b\xa3\x33\x21\x6e\xca\xd0\xfa\x02\x26\x5c\xab\xbc\x30\x42\xc2\xc5\x80\x6a\x55\x4f\x91\x36\xd7\x81\x73\xfc\x6f\x25\x86\x3b\x9f\xc4\xeb\xd2\xd4\x47\x5a\x8a\x3f\x41\x16\xe5\x56\xdd\x53\xc5\x23\xa0\xe4\x9a\x66\xaf\xa1\x86\x75\x4c\xe6\xe8\x12\xaa\x1d\x19\xd3\xb6\xe8\x51\xc2\x35\x10\x86\xc0\x57\x8b\xa1\x2a\x84\x44\xcb\x4d\xdf\x91\x21\x2b\x34\x82\x1e\xbd\x16\x52\x96\x81\x10\x43\xd4\x7a\x0c\x99\x1c\x20\xec\x0a\x18\x58\x31\x54\x95\x92\x0c\xa3\x55\x4f\xb7\x96\xd8\x01\x65\xd1\x0b\x63\x48\x59\xc6\xc3\x3e\xc2\x4c\x0c\x29\x0b\x11\xc9\xe6\x6c\x8b\xa1\x1a\x94\xa8\xe3\xd6\x3c\x39\xf2\x2a\x03\x10\x71\xd2\x47\x84\x71\xc8\x41\x1c\xb2\xc9\xd9\xc2\x30\xe4\x18\x49\x73\x1a\xf9\xb7\x62\xc8\xbe\x8c\xa4\x39\xad\x41\x2a\xc7\xe7\x4d\x41\x8c\x69\x90\xca\xa1\x2d\x96\xd4\xcf\xe5\xf0\x22\x6a\x8c\x1d\x70\x34\xc0\xac\xc6\x94\x5b\x99\x07\x3f\x72\x98\x0c\x68\x0e\x02\x9a\x9b\x5e\x05\x53\x3b\xeb\x3c\x58\x7b\xce\x84\xa9\xa2\x03\x6c\xbe\xa6\xa7\x81\x51\xcf\x41\xd4\xf3\xe5\x31\x99\xea\x41\x67\xa1\x47\x8e\xc9\x94\xa7\x99\x27\x3f\x42\x0d\xa6\x4a\x4f\x42\xa3\x9b\xc6\xf9\x29\x19\x01\xd9\xaf\x11\x44\x1e\x06\x4b\x07\xc1\xd2\x57\x85\xfe\x4c\xe2\xdb\x62\x12\xf1\x42\x5e\xc0\x98\xaa\x3d\x27\xd4\x80\xd0\xb5\x30\xa2\x3a\x88\xa8\x2e\x0a\x87\x53\xe3\xeb\xbc\x68\x1e\x3f\xa4\xa9\xf1\x75\xc2\xd7\x34\x38\xa4\x29\x51\x20\xfa\xba\x11\xba\x16\x53\x8d\x26\xc9\x46\x4c\xeb\x16\x53\xb9\x85\xfc\xd7\x62\xb7\x87\xe9\x47\x62\x42\x14\x00\xe1\x8a\xa9\x28\x43\x46\x92\xa6\xbd\x65\x4a\x01\x26\x77\x1b\xa4\xd4\x98\x9a\x55\x67\xb3\x2d\x7a\x54\xa7\x39\xb9\xc8\x8d\x87\x7e\x2a\xb7\xcc\x94\x5b\x8a\x42\xeb\xf4\x6e\x93\x48\xbb\x75\x48\xda\xd4\x2a\x32\xe1\x5a\xb4\xdd\xcc\xfe\x6b\xeb\xa3\x8a\xb6\xbc\xc8\x13\xa5\x06\x11\x6d\x31\xb5\xac\xce\x61\xf3\x8c\x4b\x8e\x84\x14\x2a\x62\xbd\x87\xa9\x53\x62\x92\xab\x1e\x2f\xd7\x98\x1a\x52\x27\x77\x9b\x7c\x6f\x31\xbd\xdb\x04\xa6\xb7\xce\x59\x9d\xde\xed\x39\x31\xda\xa3\xd0\x9e\xaa\x3e\xe6\x62\x6b\xdd\x34\xd5\x9c\x33\xf9\x89\xa6\x15\xd1\x48\xf6\x98\xf0\x16\xe5\x57\xe5\x84\xb8\xee\x64\x75\x8b\xa9\xad\x84\x7c\xe0\x4d\x13\xce\xd4\x4c\x3a\x11\x73\x34\xe1\x90\xc9\x25\x0b\xdb\xe2\x7c\x11\x24\x1e\xe6\x73\x29\xb6\xa5\xba\x73\xc2\x5b\x68\xb0\x31\x4c\x3e\x08\x93\x2f\xc5\xb6\x24\x0a\x46\xc9\x2b\xac\x4f\x29\x00\xd0\x8f\xad\x7b\x7c\xb5\x8a\x4e\x32\x58\x29\xad\x1b\x4a\x1f\x13\x2c\xe4\xe2\xb9\x57\xdf\x49\x12\x72\x81\xe7\x63\xaa\xdd\x24\x15\x4c\x03\xc9\x2b\xa6\x96\x4f\xd2\xc2\x08\x3b\x1f\x53\xa6\x64\x22\xd3\x10\xca\x16\x53\xa2\x30\x3f\xdb\x62\x10\x9a\x43\x09\xd4\x2f\xa0\xbe\xc5\x92\x03\x21\xab\x4c\x51\xce\x37\x74\x3f\x00\x9f\x34\x9f\x5c\x2c\x6d\x23\x0b\x3a\xd1\x7f\x5f\x4d\xab\x58\x7b\x98\x12\x91\x27\x63\xc1\x81\xf4\xfe\x2f\x84\x60\x13\xd7\xc4\x42\x0e\xea\xdc\x94\xa5\x1c\x04\x20\x40\xeb\x08\xfd\xe6\x5a\x8f\xc5\xab\x8f\x53\x77\xac\xeb\xf7\x55\xde\x27\xed\x30\x4b\x31\x64\x21\x74\x68\x74\x59\xb7\x3f\xde\xfe\x38\xa8\x0a\xab\xde\xac\x42\xaf\xbf\x34\x5c\x90\x95\xbd\x8d\xd3\x2a\xdb\x02\x3b\x4c\xcd\x83\xd0\x98\xb1\xb8\xfa\xda\x37\x96\x8e\x54\xc0\x10\x34\xcd\x2e\x4b\x63\xe8\x02\xe3\xb6\x20\x06\x2c\xaf\xfe\xe2\xf1\x27\x48\x2d\xcc\x9b\x13\x40\x6a\x36\x42\xd2\x62\x69\x0e\x5d\x64\xce\x23\x55\x79\x2c\x95\x97\x4b\x6a\x00\x4b\xb4\xa4\x06\x0b\x79\x45\xe3\x8c\x10\x9b\xb1\x00\x81\x07\x6b\x3f\x96\x8f\x3f\xa8\x9b\x26\xa5\x8b\xa5\x85\x63\x25\x9d\x68\x44\xa5\xc5\x52\xd7\xb1\x00\xbf\x01\x3a\x2f\x96\x9e\x17\x0b\x02\xa1\x15\x60\xa9\xeb\x58\xe8\x3a\x74\x86\x5c\x0a\x31\x24\xf0\x29\x78\x23\xc7\xd2\x0e\xb2\x10\x59\xd4\xe6\x2f\x5f\xfa\x35\x68\x8b\x67\x7d\x69\xf4\x20\xcb\x4f\x1b\x1c\xe5\xa5\xd0\xb2\x70\x32\xf7\x91\x5d\xd2\x8c\x35\x6d\x8b\x09\xa9\x2b\x59\x98\x57\x2b\x8f\xd9\x52\x13\x0a\x3a\xe8\x55\x5d\x1c\xe5\x11\x92\x03\x89\xea\x1f\x4b\x79\x64\x01\xf8\x85\x03\x74\x2c\x4d\x23\xa4\x0b\x6a\xa3\x59\xc5\xd5\x5f\x20\xed\xe9\x13\xbd\xa4\x19\x0b\x79\x44\x75\xfa\xd2\xe4\xba\x80\x42\x07\xa4\x21\x96\x5c\x03\x79\xf5\x9b\x2a\xf6\x25\xd7\xb0\x36\x3f\xba\x5e\xda\x43\x48\x32\xd4\x06\xb4\x7f\xa9\x40\x59\x28\x50\x74\xaf\x5c\x2a\x50\xc0\xa5\x68\xc3\x95\xd0\xc2\xba\x92\x9a\x5c\xfa\x57\x2e\xc9\xc8\x82\x8c\x10\xb0\x1e\x66\xf0\x0f\xf2\x15\x35\x30\xaf\x62\x49\x46\x16\x0a\x94\xe1\xd6\x6a\x75\x05\xfd\xb4\x69\x24\x5a\x52\x96\xf5\x1d\x54\xd1\xa3\x82\xcc\x82\x8c\x4c\x98\xb8\xa5\x20\x03\x00\x46\x9b\x4e\x5b\x46\x62\xc1\x48\x10\x59\x16\xa1\x95\x04\xe0\xd3\x06\x88\x55\x88\x92\x11\x20\x62\x34\xb5\x9f\xa1\x3d\x35\x00\xe6\x3f\xe1\x2d\x02\x04\xc7\x00\x1d\xb5\x4d\x4e\x74\xc8\x35\x00\x8e\xda\x08\x11\x8b\x90\x28\x04\x0a\x51\xb5\x65\xa1\x88\x42\xfa\xa5\x06\xca\x6d\x88\x99\x11\x81\x0c\x31\x39\x5f\xa1\x0c\x11\x60\xb7\xab\x40\x0b\x6d\x9e\x41\x76\x94\xd3\xe6\x7d\xfc\x03\x89\x00\x98\xaa\x08\x6d\x9e\x62\x6d\xa8\x41\x33\x5b\x53\x44\x92\x8b\xa2\xba\x2c\xe4\x07\x80\x64\x6d\x2a\x48\x42\xe3\x45\x24\xb9\x68\xaa\x43\x42\x3a\x01\x3a\x6b\x9b\x70\x0d\x21\xaf\x4f\xb2\xa7\xa2\x52\x2d\x54\x6d\x06\x86\x09\x35\x0f\xe1\x75\x07\xc9\xb5\x4d\xe4\xa4\xd0\x30\x11\xdc\x6d\x32\x41\x45\x78\xb7\x03\x96\x5d\x5d\x40\xa8\x9f\x08\xac\x97\xc0\xc1\x46\x74\x47\xcf\x45\xd6\x15\x35\x54\x5a\xc6\xc0\x39\x89\x33\x61\xa6\xa9\x88\xbc\xb5\xfd\xe0\xc2\x84\xb7\x36\x26\x5f\x41\x6a\xc3\xfb\x18\xd3\xe6\xd9\x47\x95\x97\xb1\xae\xfc\x0a\x22\x1a\xbe\xe1\xa1\xef\x93\x07\x40\xfe\x3c\x16\x5e\x54\xfe\xe8\x7d\x8c\xe0\x47\x68\x61\x68\x79\x8c\x60\x10\x10\x2b\x33\x5b\x85\x99\xad\x4e\x17\x5a\x23\x03\xf9\xad\xba\xe2\xa1\x79\xad\x22\xf2\x76\x75\xc5\xc3\xf0\x5a\x45\x3e\xd2\x5d\xe3\x4b\xe8\xa7\x1d\x8f\x6d\xb1\xf6\xda\x27\x23\x6f\x97\xb9\xe6\x22\xbc\x56\xf1\xd0\x16\x8f\x6c\x68\xa0\x8c\x87\x71\xf1\xa2\x86\x37\x2d\x5e\x46\xcf\x8b\x1a\xde\xb4\x78\xf9\x11\xa1\x2a\xf4\x5c\x88\x8f\x95\xf0\x4c\xc8\x9f\x07\xfc\xf9\xe9\x6e\x6b\x8f\x0c\x9c\x95\xb4\x9a\x84\xf6\xc8\xf8\x18\x3d\xaf\x95\x60\x14\x01\x00\x85\x69\xe7\x62\x6b\x8f\xdc\x87\x6d\x4d\xaa\xc2\x2a\x6e\xda\xbf\xc0\xbe\x8c\xed\x45\xdc\x85\x99\x40\x63\xb7\x1c\xfd\x06\xf3\x49\xad\xa8\x00\x16\xb1\x0b\x1b\x68\x57\x6a\x14\x40\xb0\x30\xb3\x42\x6c\xef\xe6\x4e\x5e\xdf\x94\x77\x21\xa8\x45\x80\x64\x51\xd4\x8b\x6e\x2d\x96\x3b\x79\xfd\x62\x5c\xc1\x96\xc9\xdf\xe0\x82\x1a\x32\x20\x62\x45\x80\x58\x61\x5a\xbc\x30\x05\x59\x00\x5c\x51\xd4\x9e\x0a\x5b\x13\x64\x20\xeb\x07\x14\x6f\x6b\xa1\xdc\x24\x1a\x34\x20\x60\xcb\x22\x6c\x2e\xb5\x01\x01\x42\x56\xc4\x4e\x4e\xa1\xcb\x72\x6f\xad\x1a\x3b\x39\x85\x5e\x1c\x97\x1e\x96\x26\x33\x23\xbe\x3f\x04\xb6\x88\x9d\x44\xc1\xf4\x7a\xb1\xb5\x6a\x80\x75\xd1\x0b\xd4\x53\xac\x8b\x00\xd8\xa2\x13\x45\x16\x5b\xfd\x00\xf8\x16\x45\xad\xee\x56\x59\x09\xbe\x45\x97\xb5\xdd\x3e\xfe\x9b\x78\x11\xe0\xb1\x62\x2b\xf9\x03\x7f\xd1\x0b\x37\x65\x4b\x0d\x76\xe7\x47\xc8\xdb\x56\xa6\xdf\x1d\x67\x42\x48\xe5\x96\xef\xdf\x83\x71\x71\x2d\xb6\x4c\xfe\xe6\x0d\xd7\x61\x49\x04\x8c\xd8\xf9\x94\x77\x8d\x40\x5b\x01\x7e\x93\x8c\x07\x8c\x9a\x10\x02\x23\x00\x83\xee\x84\x6d\x05\x88\xd0\x59\xd8\x16\x13\xd2\x5b\x72\x93\xae\xc4\x00\x06\x31\x30\x02\x0c\x8c\x42\x3e\xab\xd8\xbe\xe1\x7b\x31\x7a\x18\x4d\x81\xa2\x03\x2c\x8c\x62\x50\xc3\x96\x66\x80\x7c\x61\xce\xbd\xd8\x9a\x33\x49\x13\x57\x8c\x73\x10\x39\x3a\x80\xbe\x28\x2a\x93\x05\x8e\x0e\xa0\x2f\x7a\xe1\x9e\x6f\xdf\x70\x60\x30\x2e\x05\xbf\x2d\xb1\x01\x0e\xc3\x54\x7d\x61\xaa\xb9\x10\x49\x5a\xe7\xa0\xad\xdd\x13\x3c\xe9\x5e\xd0\x30\x6f\xed\x9e\x3b\x1f\xff\x0e\xa8\x54\x98\x8f\x2e\x40\xd0\xe8\xc5\xbb\xe9\xe3\xbf\x21\x49\x40\x4a\xc5\xd6\x14\x0a\x90\x46\x51\xa5\xbd\xb5\x85\x6e\x48\xd2\xe5\xb8\x24\x49\x60\x6b\x74\x19\x42\x51\x35\x62\x43\x92\x64\x08\xb7\xa6\x12\x80\x36\x3a\xe1\x63\xb1\x25\x49\xe0\x66\xf4\xe2\x85\x51\xd7\xb0\xb1\x8b\xe8\x26\xb8\x15\x18\x80\x71\xea\xa7\xf7\x51\x81\x01\x14\x8d\xa2\xca\x7c\x6b\x04\x01\x4d\xc3\xdc\x81\x21\x04\x76\x00\x9a\x51\x54\x99\x3f\xca\x10\xcf\x41\x5b\xc5\xaa\xdb\x2a\xb6\x83\xf5\x32\x03\x5e\x80\xa3\x71\x81\xf1\x12\x8f\x34\x07\xa8\x8c\x0e\x62\x72\x3c\x5a\x46\x1e\x5c\x28\x41\xd6\x09\xd3\xe4\x05\x48\x52\x97\xe2\xf4\x23\x19\x7a\x92\xe6\x98\x6f\x30\x4c\x9c\x17\x0f\x21\x24\x4a\xd8\x22\x69\xc4\x23\xcd\x81\xa5\x7a\x54\x59\x92\x51\xaf\x1b\xa2\xf1\xa8\x8c\x04\x94\xca\xfc\x83\x61\x22\xbd\x20\x91\x5e\x07\x82\x27\x1e\x75\x0d\x80\x6c\x5c\x7a\x47\x3e\x52\x26\xf0\x33\xba\x2c\x82\x28\x56\xf1\x24\x51\xe9\x27\xbc\xeb\xa3\x0c\xf2\x20\x83\x68\x05\x78\x34\x7c\x3c\x37\xfe\xb0\xbc\x10\x8f\xa4\xe3\xa9\xfc\x88\x7d\xeb\x51\xb1\x00\x80\x46\xb9\xa6\x5f\xb1\x69\x4f\x63\xbd\x5c\x7b\xb9\x86\xa7\xf1\x23\x2f\xc4\x23\x9d\x00\x4d\xa3\xeb\x0e\x2e\xce\x78\x00\x8e\xd1\xb5\x95\x3d\x2a\xfa\x9e\xce\xe8\x6d\x5e\x5e\x1f\x2c\x8c\xa2\x5f\xcb\xa3\x79\xe2\x19\x78\xe2\x42\xdc\x1f\xfd\x26\x81\xbe\x28\x5a\x02\x1e\xcd\x13\x40\x5f\xf4\xcb\x2a\xfd\xac\x81\xbe\x30\xb7\x49\x3c\xf2\xfa\x0f\x74\x02\x34\x80\x78\x34\x50\x80\x86\x71\xa9\xb7\x78\xd4\x0f\x3c\x90\x0e\x5d\x36\x44\xc6\x08\x90\x31\x8a\xc6\x01\xa1\x31\xe2\x99\x38\xff\xda\xbc\x16\x8a\x67\x9d\x54\xd1\xbc\x04\x06\x38\x8c\x7e\x41\xa3\x1f\xd5\x81\xe0\x60\x74\x60\x60\xe2\x91\xd7\x07\xfb\xa2\x5f\xa7\x5f\xb9\x38\x10\x05\x83\xc2\x4c\x2c\x18\x4f\x12\x02\x73\x08\xc6\xa3\xca\x00\xc0\x8b\xab\xa3\xaf\x13\xea\x22\x9e\x6d\x5b\x83\x2a\xf7\x31\x09\xc1\xd5\xcb\xf9\xf7\xa7\x58\x24\x8c\x20\x37\xe1\xa5\xd6\xe4\x51\xc9\xf0\x3c\x0c\x1b\x36\xf9\x51\x3a\x00\x06\xbe\x80\xc5\x1b\xa2\x63\x04\x90\xf0\x5d\xb2\xfb\x68\x71\x7d\x92\x74\xf4\xcb\xa3\x2c\xcd\x00\x1d\xa3\x6b\xc2\x13\x37\x3e\x1e\x7d\xa9\xa1\x9e\x02\x5f\xc4\x03\x81\x00\xff\x2b\x1e\x45\x81\xe7\xe3\x30\x60\x7d\x7c\x24\x10\xcf\xa7\x13\x76\xfe\x28\xf2\x45\xbc\x68\x14\x6e\x7c\xbd\x5e\xd5\x8c\xef\xc1\x72\xc2\xff\xbc\x8a\x02\x2f\x0c\x8a\xe6\x97\x57\x3b\x29\xd8\xf4\x5d\x9a\xf1\x6a\xd3\x78\x0b\x7b\xca\xd5\x7f\x65\x4a\x5e\x60\xc7\xef\xcb\xaf\xba\x55\x9c\x22\x56\x42\x3c\x8c\x78\xe1\x53\x2e\x04\xf8\xd7\x40\x54\x60\x31\x8a\x01\x3f\xaf\xd6\xd4\x17\x0e\xc4\xe8\x1e\xc1\x2f\xe2\x85\x40\x18\x2c\xf6\x4a\x20\xc0\xc3\xe8\x17\x02\xd6\x2b\x81\x00\xde\xa2\x83\xd3\x1c\xaf\x4a\x8a\x97\x48\x54\xd0\x93\xe2\x55\xcd\x08\x9a\x45\xbf\x11\xb0\x4c\xc3\x18\xa4\x61\x2c\x80\x1b\x87\x59\x18\x03\xf8\xfd\xae\x81\xec\xd5\xd0\x00\x14\x7f\x37\x1c\xeb\x55\x6f\x01\x0e\x86\xf9\x6a\xe2\x55\x1e\x79\x61\x37\x34\x90\x99\xbd\x31\xcc\xde\x08\x3c\x42\x08\x8a\x11\x80\x62\x94\x9b\xc7\x4c\x50\x8c\x00\x14\xe3\x52\x47\xf6\x6a\x40\x05\x15\xa3\x18\xae\xf4\x6a\x7b\x00\x0a\xa3\xeb\x41\xf3\xca\x94\xbc\x80\x2b\x1a\xc1\xf4\xea\x6a\x01\xf0\x45\x37\xb4\xeb\x55\x23\x01\xf2\x45\x01\xae\x20\x5e\x7d\x2e\x81\xbc\x28\x37\x0f\xd0\xab\xfa\x01\xe4\x8b\xfe\x3b\x26\xaa\x1f\x00\xba\x28\x5a\xb0\x5e\xf5\x93\x00\x5d\xf4\xdf\x31\x91\x24\x01\xa0\xd7\x81\xc6\x08\xf1\x2c\x02\x3c\x8b\x02\xca\x40\xbc\xda\x47\x5f\xe9\x0f\x44\x50\x78\xbd\x78\x11\x64\xf4\x0a\x79\x0d\x5a\x7d\x01\xe7\xd5\x82\x25\xec\x45\x90\x8f\xb2\xff\x16\x5a\x43\xc3\x8b\x20\x73\x73\x3b\x84\xe5\x8b\x17\x32\xf2\x5b\x09\xc9\xc8\x0b\x19\x31\x96\xeb\xd5\xd0\x00\x66\x85\xb9\x07\xe3\x55\xf8\x00\xbf\xa2\x68\xfa\x7a\x75\x7b\x7a\xb9\xdb\x1a\x9f\x5e\x15\x88\x40\x5b\x74\x2d\x4d\xaf\x51\xa2\x60\x5a\x14\x0d\x64\xaf\xfc\x00\x40\x16\x1d\x24\xe5\x78\xf5\x8e\x7c\x51\x20\x6a\xb8\x7b\x8d\x13\x7d\x91\x47\x34\xcc\x08\x6a\x11\x00\xfe\x75\x8d\x29\xaf\x56\x05\xb0\x2d\x7a\x85\x5b\x7e\x95\x5a\xde\x64\x0b\xae\xee\xed\x90\x02\xbc\x88\x28\x60\x2d\xc7\xab\x55\x13\x6c\x8b\x0b\x1c\xcd\xf8\x54\x20\x82\x5a\xd1\x8d\xf9\xfe\x14\x51\x40\xb0\x28\xce\x51\x08\x8b\xf8\x20\x0a\x60\x2f\xc7\xa7\x55\x01\x24\x8b\x5e\xb9\xdb\x9f\xfe\xd6\x5f\x81\xc6\xc2\x10\x8a\x6a\x11\x5f\xa1\x79\x2e\xb2\xa8\x16\xf1\x15\x9b\xaf\x54\x85\x55\x0f\x55\x34\xaf\xed\xe1\x3b\x59\x68\xb4\xab\x9f\xb6\x87\x0f\xe9\x82\xbc\x3d\xf1\x29\x5d\x7c\x5e\x64\xee\xd0\xa7\x8d\x91\x14\x10\xbd\x72\x7c\x3f\xa5\x0b\xc0\x2c\x8a\xd6\xb4\x4f\xbb\x22\xc0\x16\x5d\xb3\xd2\xa7\x09\xe1\xbb\x0d\x08\x61\x42\xde\xed\x0f\xb9\x41\x85\xda\xa7\x02\x12\x38\x8b\x42\x6a\xc7\xf8\xd4\x36\x02\x67\x61\x0a\xc0\xf8\x54\x2d\x02\x67\x71\x91\x19\x2c\x3e\x55\x8b\xe4\x35\xed\x95\x37\xfc\x53\xb5\xf8\x35\xf6\x11\xee\x4f\x6c\x8b\x00\x6a\xa2\x1b\x05\xf5\x69\x1c\x20\xc3\xa9\x59\xf8\xe2\xf3\xf1\x07\xf5\xa1\x37\x64\x90\x4f\x4d\x1c\xe0\x0d\xdd\xa0\x1b\x10\x1c\xb2\xa8\x0c\xa2\x51\xe5\x50\x79\x64\x0d\x71\xf9\x94\xe9\xc9\x60\xd1\x0d\x5e\xf9\x64\xd9\x01\x72\x28\x9a\x40\x3f\x9f\x62\x72\x5a\x74\xe3\x59\x3e\xc5\xfc\x4f\xec\xa8\x5f\x95\x5f\xed\x9b\xf0\x12\x76\x48\x1d\xdb\x07\x4f\x2d\x2f\xf6\xc9\x53\x83\xd5\x50\x3c\x98\x9f\x4f\x26\xb8\x0d\xbd\x71\x61\x3e\x8d\x75\x5f\x5e\xb8\xde\xe6\xbf\x70\x8b\x36\x4d\x6b\x98\xa6\xd5\xe8\x41\xa1\x1e\xe2\x83\x0b\x07\x78\x37\x3e\x7d\x99\x81\x77\x28\x15\x15\xef\xa7\xc5\x0f\x78\x87\xae\xad\xe5\xd3\x61\xe9\x83\x31\xef\x9e\x48\x55\x70\x5f\xde\xc7\x0e\x10\x6f\x08\xec\x10\x00\x34\xf4\x5e\xea\x7f\xfe\x6c\x01\x1a\x36\x59\x3a\x3a\x66\x8e\x6d\x92\x8e\x7d\xc0\x00\x63\xd3\xd8\xc2\x2a\x6c\x70\x0f\x3a\xf1\x1f\x5b\xdc\x83\x4d\x4a\x8d\x4e\x78\xc4\x06\x03\x21\x0b\x2e\x75\x1e\xd2\x0d\x06\xc2\x9f\x4d\x0e\x8d\x4e\xc4\xc4\x06\xf1\x20\x8b\x1c\x2a\xd8\x6e\xfb\xc0\xa8\xb5\x0f\x24\x59\x34\xee\xfb\xa8\x36\x9f\x5c\x69\x47\xe3\xbe\x49\x93\x91\x05\x3f\x16\x7e\xc4\xa8\xb5\x41\x3b\x28\xdc\xf3\x7d\xa0\xd7\xda\x24\x8d\xed\x28\xce\xb7\x39\x63\x37\xe8\x03\x7d\x38\xc7\xe9\xb4\x21\xe1\x35\x19\xf3\x2d\x14\xc1\x3e\x38\xa4\x38\x76\xef\x63\xfa\x63\x72\x92\x7d\x34\xbf\x9a\x56\xd1\x96\x2b\xb1\x6c\x6b\xd9\x16\x43\xe5\xdc\x6e\x90\x07\x2e\x42\x82\xb6\xc8\x03\x9b\xa4\xb2\x1d\xb7\xea\x7d\x60\x75\xda\x07\x56\x27\x10\xdd\xb7\xd9\x35\xf6\x41\xe2\x22\x42\x37\xb7\x99\x67\x37\x99\x67\xcd\x90\xb6\x45\x28\xd8\xc0\x12\x14\xcc\xda\x1b\x6c\x82\x2c\xe0\x53\x92\xf6\x6f\xb0\x09\xb2\x08\x10\xce\x98\x76\xd8\x23\xd2\x27\x08\x0c\xfb\x08\x7b\x44\xfb\x55\x9d\xf6\x76\x25\x36\xfb\x38\xe9\x71\xbb\x12\x9b\x1e\x1b\x6d\x6d\x27\x84\xb9\x0a\xc0\x85\x0d\x62\x41\x16\x6c\x5a\xb7\x2d\x9b\x7f\x98\x50\xa3\xc7\xc7\x09\xc1\x49\x8e\xc1\x1c\x1f\xdb\x7a\x6c\x8b\x1f\xb1\x60\xed\xc3\x73\xef\x7a\x3d\x6e\xed\xcb\x4a\x78\xe4\x70\xab\xd9\xa6\xd1\xad\x2e\xce\xeb\xda\x73\x15\x86\xa3\x7f\xdd\xb4\x97\xb5\x9f\x6c\xc7\xeb\x50\x61\x41\xc7\xe4\xe4\x7c\xb6\xf5\xd9\x96\x55\xae\x57\x3e\x40\x9d\x1c\x0d\xbb\x78\x61\x0a\x2c\x28\xc1\xa8\x5b\xd0\x83\x5d\xb8\x43\xf3\x18\x54\x55\xab\x3a\x11\x5a\x07\x55\xd3\xaa\x8f\xaa\x1c\x57\xe1\xb5\xd9\x00\x1b\x98\x48\x6e\x9b\xe6\x64\x03\x63\xd0\x51\x76\xef\x02\x73\xb9\xc1\x31\x28\x84\xb1\x6e\xc0\x0c\xb2\xc8\x95\xc0\x65\x77\x93\x04\x25\x8b\x3b\xbf\x62\xda\x82\x1a\x6c\x40\x0d\x4c\x54\xb6\x81\x2e\xc8\x82\x55\x65\xda\x05\xf7\xbd\x4d\xc2\x94\x02\x09\xdf\xe5\x72\x42\x17\x13\x82\x02\x14\x58\xd0\x0d\x48\x41\x21\x92\x75\x8b\x52\xb0\x41\x29\xe8\xf3\xf2\xc7\xc7\xaa\x3c\x00\xa8\xd7\x77\xb9\x6c\x9e\xbc\x0a\xcd\x25\xbc\x1d\x3d\x5c\x29\x1a\xf7\x0d\x3e\x41\x16\x36\xcf\x1c\xe1\x4a\x77\x41\x2f\xd6\x5c\xc2\xdb\xb6\xa0\x26\xa4\x95\xd8\xa2\x12\x6c\xf3\x19\xe3\xb1\xb0\xc5\x20\xd8\x25\x89\x4a\x27\xd0\x62\x17\xa9\x09\x50\x04\x1d\xf7\xca\x0d\x1e\xc1\x9f\x5d\x92\x39\xbd\x48\xff\xb2\x85\x25\xd8\x40\x11\x74\x5c\x2e\x37\x78\x04\x59\xd8\x3c\xe3\x82\x51\xdd\xe4\x85\x29\xcd\x4d\x6b\xae\x04\x8c\x2a\x3a\xfe\x6d\xfe\xe4\x6d\xfe\x64\x54\xe2\xbb\x48\x86\x40\x2a\x30\x87\xdd\x06\xa2\x20\x0b\x7e\xe4\xf8\x0a\x42\xb0\xcb\xf0\x47\x86\x3a\xdc\xda\x71\x33\x54\xe6\x38\xdc\x5a\x18\xd5\x39\x18\xfd\x70\x6b\x49\x1a\xd1\x3c\x13\xd3\x09\x4d\x8e\x89\x27\x67\xda\x16\xe9\x3a\xda\x45\x5b\xd3\x09\x21\x28\x13\x06\xb6\x45\x2b\xd8\x05\x46\x15\x67\xc2\x6d\xb2\xe6\x6d\xb2\x66\xa2\x71\x77\x91\xa4\x15\x8c\x62\x60\x21\x6c\x01\x0c\x36\xc9\x70\xcc\xa1\xb7\xcb\x72\xed\x93\xb2\x0d\x22\x2e\xb6\x98\x06\x1b\x00\x83\x71\x78\x98\xc2\xb6\xd0\x9e\x11\x9d\xb6\x4b\x78\x00\xf0\xc8\x1b\x2e\x21\xaa\xb2\x0d\xcc\x81\x69\xf6\x36\x49\x73\xb2\xa0\x2d\x47\xbf\x1d\xfd\x5e\x54\xfd\xdd\x56\xbc\x8b\x84\xab\x3c\xb4\x6b\xef\x8f\xab\x42\xae\x9d\xe6\x59\x7b\x9c\xdc\xc3\x4c\x4e\xce\xc7\xeb\x4d\x79\xf9\xd1\x9b\xf2\xba\xcd\x49\x86\xc6\xe1\x42\x49\x7f\xca\xcb\x8f\xde\x94\xcf\x6d\xfe\xd8\x66\x28\xb1\xa9\xaa\x77\x81\xfe\x34\x28\x71\xf9\x9c\x5c\xf2\xc4\xe3\xb8\x69\x4b\x92\x54\xf0\xf4\x03\x1a\x79\x8b\x84\xb0\x41\x42\x18\x00\xbd\x6d\xd3\x59\xef\x33\x29\xd3\xc0\x51\x6c\x9f\x92\x24\x80\x0d\x06\x46\x87\x6d\x32\xeb\x6d\x32\x6b\x1c\x53\x36\x58\x06\x59\x10\x79\x09\xbd\x3e\x61\x80\xf7\x09\x03\xdc\x38\xb7\x27\x66\xb4\x4d\xe2\xeb\x71\x24\xd3\xba\x4f\xcc\x68\x9b\xbc\xd7\x66\xfa\xdb\x24\xbf\xfe\xb3\x4f\x08\x57\xb3\x4a\x46\x02\x30\x04\x73\xff\x6d\xc1\x10\x36\x60\x08\x83\x04\x0e\x1b\x14\x84\x2c\xec\x91\xaf\x2e\x27\x84\xf6\xbe\xf1\x68\x88\x7c\xb0\x49\x58\x64\x2e\xc0\x7d\xa2\xaa\xdf\xe7\xc5\xce\xa7\x68\xbe\x01\x46\xc8\x82\x53\xc4\xda\x9f\x52\x29\x00\x10\x06\xb1\x20\x1b\x14\x84\x2c\x92\xf7\x04\x46\x75\x9f\xb7\x73\xbc\x59\x55\x58\x97\x13\x66\x7a\x83\x7c\x50\x9a\xcd\xcb\xcd\x9c\x29\x28\x0f\xa0\xe3\xf6\x59\x9d\x50\xb2\xd9\x03\xe8\xb8\x7d\x4a\x92\xce\xa4\x39\xa3\x1c\xfc\x88\x95\x6e\x93\x32\xe9\x1a\x6c\x2d\x79\x93\xb2\xc8\x55\x05\x5a\x75\x9f\xcd\x1d\xc2\xfd\xae\x71\x11\x4d\xf5\xbd\x49\xf5\x3d\x70\x98\xd9\x66\xfa\xde\x64\xfa\x1e\x38\xcc\xec\x53\x62\x03\xde\xc1\x28\x27\x6d\x75\xdb\xea\xb6\xc5\x20\x86\xa3\x4f\xb1\x77\xe0\x98\xb2\xcf\xe1\xda\x0f\xd6\x9e\x1b\x2c\xfa\xc1\x06\xfd\x60\x10\x58\xb2\xcd\x23\xbe\xc9\x23\x6e\x1e\xc1\x7d\x4a\x6c\x00\x33\x18\x05\x96\xea\x9c\x0e\x75\xb1\x38\x37\x6b\xbf\x5c\x68\xd2\x00\x81\x63\xb0\x4f\x99\x25\x70\x0c\x46\xf1\xac\x2e\xd7\x2b\xa9\xc9\x28\x9e\xd5\xe5\x3e\xc2\x2c\x01\x77\xb0\x45\x32\xd8\x67\x40\xc2\x3d\xf7\x61\xf3\xa8\xea\xbb\x4b\x28\x1b\x04\x92\xc1\x35\x6c\x4b\x36\x88\x2c\xe3\xa3\xc0\xc4\x9d\xdb\xad\x85\x0d\x22\x1c\x7c\x8b\x77\xb0\x4f\x88\x4d\xf1\x76\xc8\x06\x01\x81\x30\xb0\x17\xec\x53\x62\x03\xa2\xc1\x28\xde\x8e\xc7\xb6\x80\x96\x95\x47\x3c\x1f\xe7\xf8\xb0\x84\x9d\x95\x78\x1c\x84\xa9\x6a\xdd\xc7\xd7\x33\x61\x46\x65\xc8\x90\xe0\x04\x1b\x70\x82\x81\xd3\xc7\x16\x9c\x60\x9f\xf8\x0d\x77\x58\x04\x80\x0a\xfe\xec\x13\x6a\xd2\x79\x34\xce\xcf\x7d\xc4\x08\x08\xd0\xc1\x06\xaa\x20\x0b\x92\x24\x43\xfb\xcd\xa6\xb5\xc9\xa6\x35\x08\x5d\xd9\xa6\x38\xdf\x40\x17\x5c\x64\xe9\xdd\xe0\x17\x64\xc1\xb4\xe1\x1a\x2e\x84\xee\x0d\x74\x41\x21\x50\x7d\x5f\x52\x93\xcb\xd4\xf8\x1c\x00\x20\x0d\xfe\x6c\xd0\x0c\x4c\x97\xb8\xc5\x31\xd8\x17\x3a\x36\x1c\x9f\xf6\x25\xcf\x03\x9e\xc1\xc0\x5e\xb0\x2f\x74\x6c\x1b\x3c\x03\x73\x2a\xee\x4b\x02\x03\x6a\x81\x29\x15\xf7\x85\xdf\xf0\x06\xbc\xa0\xa0\x1f\xd8\xa2\x16\xec\x0b\xd2\x81\x7b\xd4\xbe\x50\xbb\x6d\x12\x82\x8d\x93\x85\xbe\xb0\x05\xee\x0b\x9e\x07\xa8\x86\x2d\x90\xc1\x26\x3b\xfb\x20\xd7\xc5\xbe\x50\xc2\x6f\x92\xb3\x0f\x70\xe9\x36\x38\x07\x59\xf0\x56\x42\x86\x84\x3b\xd8\x57\xf2\x39\xa6\x57\xdc\xd7\x6d\xf3\x37\x07\x00\xca\x74\xdd\xce\x31\x99\x9a\x71\x72\x87\xae\xdb\x09\x41\x60\x4e\x57\xa2\xba\xf6\x50\x13\xd4\xfe\xfb\x92\x9a\x80\x84\x30\x88\xad\xd9\x97\xdc\x0c\xc0\x07\x26\x51\xdc\x57\x73\xf4\x8d\x25\x84\x75\xb9\x94\x8d\x2e\xf8\x14\x9c\xbb\xf6\xd5\x7e\x3f\xb2\x12\x10\x77\xf0\x0f\xb2\xe0\xc7\xc6\x8f\xdd\x1f\xbb\x3f\x5a\xe5\xd6\x76\xd3\xf2\xb3\x5e\x18\xfe\x36\x30\x08\x03\x4b\xf7\xbe\x86\xdb\x31\x4c\x8e\x4f\x8f\xf2\x29\xe0\x21\x8c\x73\x1c\x7f\x7f\x8a\xcd\x60\xbf\xc9\x60\x6f\xa6\xc6\x7d\x49\x6c\x48\x60\x3f\x00\x9c\xd9\x97\x3c\x0b\x70\x09\x97\x1c\xbd\x29\xed\x37\x70\x09\x03\x30\xbb\x7d\x49\x7f\x48\xd3\x66\xca\xc5\x2d\x50\xc2\xbe\x20\x49\xa7\x47\x79\xb9\xc2\x8b\x6d\x86\x01\x06\x47\x21\x8b\xdc\x66\x22\xa1\xb7\x99\xf0\x37\xd8\x09\x03\x6b\xc5\xbe\xc2\x6d\x4e\x6e\xe6\xc2\xef\x65\x5f\x4a\x66\x57\x92\xa1\x8b\x44\x6f\xfb\x0a\x97\x20\xe9\xcf\xc0\x76\xb0\x85\x53\xd8\x57\xd0\x16\x72\xf8\xb5\xdd\xf9\xcd\x57\xb0\x31\x40\x24\x64\xf1\xd0\x96\x55\xde\xa7\xc7\x1e\x69\xeb\x71\x42\xc9\xae\x0c\x4c\xbe\xfb\x52\x9a\xba\x9e\x5f\x92\x78\xaa\x5c\xc2\x94\xa0\xc6\xe5\xf1\x7b\x6c\xeb\x35\xf5\x3b\x07\x4b\xfa\x03\x7c\xc2\xc0\xda\xba\xaf\xd7\xb6\x70\x25\xc6\x8b\x6e\x5f\xaf\xa3\x4f\x0e\x66\x60\x6d\xdd\xe4\xf3\xcf\xe2\xa2\x8a\x1f\x95\xa6\xae\x5f\xd6\x6d\x06\x21\x37\x73\x7d\x34\xef\xad\xfb\x5c\xd5\x6f\x51\xc5\xad\x93\x24\x01\xb2\x30\x80\x59\xdf\xb7\x32\x17\xc0\x0a\xa6\x60\xdc\xa0\x2b\x64\x91\x0f\x36\xae\x43\x5b\x44\x85\x0d\x8a\xc2\xc0\x5e\xb0\x6f\xb9\x19\xf2\xe0\x0d\xd0\x05\xf6\x8d\x11\x70\xdf\x49\x73\x4c\xd3\xb8\x81\x57\xc8\x82\xdd\x86\xec\xde\xd2\x9f\x3b\xd9\x15\x13\x37\x6e\xf1\x13\x36\x08\x09\x03\xf8\xb9\x2d\x36\xc2\xbe\x4f\x7a\x44\xe8\xbe\xe5\x53\x6e\x02\xa3\xd1\xf1\xef\x5b\x32\x02\x1e\xc2\x40\xc7\xbf\x01\x45\xc8\xc2\x3c\xd5\x8c\xfe\x76\xa8\x29\x14\x0d\x42\x65\xb6\x40\x08\xfb\x86\x66\x60\xe7\xda\xb7\x34\x03\x6c\x84\x81\x9d\x6b\xdf\x0a\x45\x40\x24\x5c\xca\x82\xe6\xf8\xdb\xa0\x1f\x98\x86\x71\x03\x81\x90\x05\xd8\xdf\x3c\x07\x77\x75\xf4\xc9\x88\x8c\x1b\xae\xe1\x56\xdc\xb9\x11\x77\x80\xe2\xdf\x62\x21\xec\x1b\xca\x82\x12\x7e\x83\x8b\x90\xc5\xa2\x8a\x55\x95\xb2\x80\x7f\x30\x6e\x07\xd1\x6d\xab\xdb\x16\xdb\xd1\x9d\x50\x92\x91\x81\x7d\x65\x0b\x7c\xb0\xef\xc1\x8f\x28\x4f\xee\xe1\x7a\x25\xe9\x30\x71\xe3\x06\x17\x21\x0b\x76\x88\xa7\xe5\x96\x4e\x80\x7f\x30\x88\xb0\xdc\xf7\x74\xa8\x93\xf5\x82\xa7\x16\xe5\x60\xdf\x50\x00\x6c\x0f\xfb\x5e\x2e\x4e\x12\x02\xf3\x33\x6e\x40\x10\xb2\xe0\xd6\xda\xa3\x44\xe1\x5e\xb4\xd5\xac\x72\xa1\xbd\xee\x1c\xf2\x3b\x1c\x3d\x82\x0c\x56\x85\x2d\xb4\xc1\xbe\xb9\xee\xd8\x0b\xf6\x1d\x2e\x4e\xb0\x69\x9e\x1c\xb5\x2e\x37\xe6\x3d\xf0\x01\xf6\x2d\x05\x00\xed\x60\xdc\x5c\x98\x5b\x15\x0b\xa0\x07\x97\x92\xec\xbd\x9d\xd0\xc3\xe8\x3d\x4c\xf2\x16\x37\x14\xe0\x86\x63\xbb\x1f\x17\x27\x29\xc0\xa8\xee\xa3\xfa\x14\xa0\x11\xae\xe9\x4a\x48\x14\x40\x3d\x30\xd3\xe2\xbe\xd5\xa7\xdc\xc4\x42\x4e\x17\xe7\x75\x42\x08\x2f\xd5\xc3\xa4\xf0\x72\xc3\x6e\x28\x31\x8a\x81\xb0\x6f\x28\x40\xfd\x55\xb9\x84\x79\xeb\x07\x6a\xd9\x7d\xcb\x81\x80\x81\x60\x3e\xc5\x5d\xbd\xdb\x40\x21\x14\xa5\xbc\x8a\x49\x6f\x57\x24\x95\xca\xf9\x12\x03\x61\x57\xee\x36\x88\x69\xbb\xaa\x3c\x01\x16\x61\x00\x8f\xb6\xab\x77\x1b\x94\x83\x81\x8e\x7f\x57\x05\x0e\x10\x0c\xcc\x9a\xb8\xab\x2c\x42\x85\x45\xc0\x43\x76\x83\x6c\x90\x85\xc9\x5b\x19\x17\x96\xb9\x5d\xe1\x1a\x88\x13\xd9\x55\x16\x01\x58\x83\x81\x2f\xf9\xae\xaa\x45\xaa\x29\xe9\x2e\xbf\xb2\xad\xcb\x84\xac\x7c\xa5\xc2\xa3\xe6\x15\x1f\x15\x4e\xb2\x2a\x70\x54\xf3\x6d\x21\x70\x08\x69\xb0\x2b\x14\x80\x00\x93\x5d\x55\x8b\x54\x73\xb4\xa3\x29\xa9\xca\x20\x40\x1b\x0c\x00\x4b\x77\xc5\xa3\x78\x57\xb3\x11\x43\x57\x2b\x96\xb9\x5d\xab\x99\x21\x59\x2f\x95\xac\x20\x1f\x5c\xf3\x5f\x78\x50\x6f\x81\x11\x76\x35\x65\xb1\xf3\x6d\xf6\x6e\x8a\x2c\x34\xa2\x42\x23\xec\x0a\x19\xc1\x80\xb1\x6b\x73\x1f\x1a\x3b\x8f\xe0\x57\xa5\x19\xe0\x20\x98\xf5\x71\x57\x55\x24\xc0\x21\x14\x20\x55\x76\x95\x1b\xa9\xd2\x0c\x6e\x5d\xed\xae\x4a\x32\x25\x03\x7c\xd4\x5d\xd5\x9a\xd4\xa4\x26\xd7\xfc\x55\x39\xd4\xfe\x4b\x63\x97\x55\xc3\x45\x1f\x2c\x3a\x9c\xb3\x98\x0a\xbb\x42\x59\xb0\x7c\xec\xaa\xb8\x53\x91\x6d\xf0\xf5\xdd\x55\x45\x4a\xc5\xe2\x37\xb8\xd4\x15\x8b\xdf\x26\xd7\x69\x01\x9e\x65\x57\x39\x10\x90\x17\x8a\x9c\xa0\xc8\x0b\xbb\x4e\xdb\x62\x10\xd3\x53\x94\x64\x68\x90\xdb\x7f\x57\xe9\x4f\x45\xdc\x51\x93\x26\xaa\xc2\xae\xe6\x8c\x45\x5d\x5c\x95\x6d\x80\x52\x18\x8d\x5b\x57\x95\x6d\xea\x2f\x35\x17\xdb\xa1\xd6\x04\xe4\x04\x73\xd7\xee\xaa\x20\x53\xb7\x3f\x32\xed\xed\x8f\x9b\x5c\x62\x93\xd1\x4b\x46\x00\x48\x30\x21\xed\x16\x21\x61\x57\x74\x20\xed\xb4\xca\xf5\x4a\x02\x33\x08\xe1\xd9\x55\xca\x52\xd1\x81\x34\xef\xe6\x6b\x8f\x2f\x6d\xc1\x98\x57\x19\x89\x8a\x20\x03\xbe\xcb\xae\xaa\x65\xc1\x4e\x30\x3f\xe4\xae\xca\x36\xf5\x65\x1f\x1d\xd7\xeb\x4a\x24\x8b\x51\x7c\xd6\xab\x5c\x03\x38\x0a\x45\x25\xa9\x38\x0a\xbb\xa2\x16\x69\x5e\x0b\xd5\x22\x40\x2b\x98\xfd\x76\x0b\xad\xb0\x1b\x94\x05\x27\xe1\xdd\xd4\xd4\x36\x18\x09\xc2\x81\x76\x53\x2d\x02\xda\x42\x99\x4c\x48\xb4\x85\xdd\x0e\x9b\xb7\xea\xb1\x8a\x7d\x44\x2f\xdf\x94\x6d\xc0\x61\x28\xf3\xca\x41\x34\x49\x52\x43\x90\x01\xc8\x6d\x37\x95\x27\x00\x31\x14\x55\xa9\x22\x30\xec\x86\xf5\x70\x42\x20\x40\x63\xc8\x82\x55\xe5\x5a\x35\x55\xbc\x0d\x71\x07\x28\xb7\xdd\x14\x77\x00\x67\x30\xfb\xee\x6e\x12\xae\x76\x31\x08\x9e\x4f\xc0\x17\xb2\x60\xed\x1d\xaa\x0a\x8f\x46\x86\x2d\x42\x67\x77\x53\x44\x69\xd8\x18\x27\x6f\xa5\xb0\x0c\xbb\xa1\x16\x01\x2b\x73\x37\xcd\x37\x20\x35\x98\xa8\x72\x37\x6c\x8c\x1b\x2c\x86\x81\xab\xd5\x6e\x92\x24\x80\x17\xca\x44\x3a\x68\x92\xa4\x06\x49\x52\x23\xda\x30\x3b\x6e\x70\x19\x06\xc6\xb6\xdd\x24\x49\xa4\xd4\x1d\x84\x29\xed\x26\xcd\x01\x9e\xa1\x4c\x88\x60\x93\x4f\x21\xe3\xee\x68\x9c\xfb\xa6\xa6\x96\xbc\xbb\x03\x90\xc8\xdd\xd4\xa7\x90\x83\xf7\x56\x35\xd8\x24\x43\x20\x36\x0c\x50\x22\x77\x53\x9f\x02\x62\x43\x51\x07\xdb\x9a\xfb\x08\x19\x9a\x4e\xbb\xbb\x12\x08\x45\x8d\x8b\xdc\x14\x8a\x40\x6f\x28\xf8\x59\x6f\xd1\x1b\x76\x43\xc5\xa2\x2a\xa3\x75\x17\x3a\x65\xa3\xd1\x5d\x68\x95\xb7\x0d\x09\x08\x47\x9e\xdd\xa4\x39\x6d\xd8\x16\xcd\x0f\xf7\x11\x9a\xa3\x3e\x97\xec\xbf\x7f\x76\x4b\x9a\x33\xd4\x48\x98\x03\x78\x9b\x03\x78\xc2\x22\x34\x79\x9e\x86\xd6\x45\x95\x41\x53\x79\xdb\x92\x1a\x0d\x5c\x56\xb6\xf0\x0f\xbb\x21\xf5\x10\xf2\xb4\x9b\x8a\x98\xb6\x6c\x8b\x43\xae\xf2\x16\xc8\x87\xd1\x3d\xd1\x2a\x6f\x1b\x52\x8f\xb6\xc0\xa6\xd4\xd3\xb0\xb6\x12\x30\xbe\x85\x84\xd8\xa4\x14\x36\x57\xe6\x6e\xe1\xda\xa7\xf0\x33\x54\x06\x34\x4d\x54\x2d\x19\x24\x93\x0b\x6f\x21\x21\x76\x43\x10\x22\xa1\xe6\x16\x12\x62\xb7\xa4\x5f\xa6\x02\xde\xc0\x43\x64\xc1\xb8\xbc\x8f\xca\x46\x20\x43\x9c\x87\x6b\x2f\x49\x6b\x28\x62\xba\xe7\x5e\x92\x06\x70\xc4\x7d\x48\x14\x24\x69\x00\x47\x0c\xf0\xee\xb6\xc0\x11\x1b\xb0\x88\xd1\xbd\x0a\xea\x66\x00\x8b\x38\x71\x55\xdf\x4d\x71\xa9\x91\x30\xf7\x77\xbe\x54\xfe\x82\x25\x31\xba\xb7\x56\xfe\x09\x2c\x89\xfb\x70\xa1\x25\x7c\x60\x49\x0c\x6d\xa7\x62\x49\x6c\xb0\x24\xce\xa3\xfc\xdd\x56\xbc\x85\x9a\xd8\xed\x65\x8c\xbc\x95\x4d\x0b\x56\x7b\x39\x6b\xbc\x95\xa2\x4f\x6c\xf2\x1e\x0f\xe0\xf6\x76\x53\x0d\x04\xe2\xc4\x09\xd8\xd0\x6e\xaa\x8b\x41\x9f\x18\x9d\x1b\xdc\xa5\x8b\x1d\xba\xd8\x39\x91\xc2\x4f\x6c\xf3\x25\xbb\x76\xe2\x4f\x6c\xd2\x25\x0f\x65\xc1\xae\x51\xab\x1f\x9c\x35\x2e\x75\x97\x2e\xf6\x22\x34\x14\xcd\x17\xdb\x2a\xb6\x65\x55\xb7\x8a\x71\x41\x76\xbb\x4a\x65\x80\x2b\x86\xf6\xca\xae\xe9\x0b\xfc\x8a\x9b\xa4\x29\xbb\x4b\x2a\x3b\xa4\x52\xe3\x24\xb8\x16\x59\xb0\x35\x68\x31\x85\xb7\xd8\x1d\xea\xa9\x80\xd5\x95\xdf\x3a\x7a\x66\x90\xfa\x36\x50\x17\x59\xd8\x16\xd3\x56\x33\xd4\x2f\xdb\xe2\x47\x79\x3c\xa0\x2b\x6e\x15\xfa\x5d\xd3\x57\x47\xa4\x23\x19\xd9\xee\x8a\x74\xc0\x59\x9c\x07\x07\xbe\xcb\xf6\x81\x67\x31\x34\x31\x89\x67\xb1\xc1\xb3\x38\x09\x58\xdf\x5d\x1a\x0b\xae\xc5\xad\x71\xa0\xcb\xf6\x81\x6b\x31\x06\xa6\xc2\x7e\xdb\x3c\x39\x6a\x09\x3f\xd8\x5d\x29\x0f\xf8\x0a\x33\x38\x6f\xe1\x2b\x36\x59\xa7\x4d\xf2\xb9\xbb\xca\xa2\x9e\x44\x74\x00\xe9\xb7\xcd\x43\xbd\xc1\xac\x18\xda\x5a\xba\xca\x22\x30\x2b\x4e\xc0\x9f\x76\xc7\xfb\x6a\xf7\xc6\x1d\xe0\xc8\x75\x55\xcf\x1d\x29\x6f\xb8\x69\x4a\x79\xbd\xb3\xb5\xd0\x6b\x31\x2d\x76\x87\x7a\x92\xdd\x6c\x77\x39\x36\x60\x2e\xc6\xe0\xf1\xef\xdd\xe6\x3b\xeb\x05\x25\x16\xc1\x62\x9b\xf7\x1a\x00\xa8\xdd\x15\xfc\x3a\xa9\x56\x35\x0e\x88\x57\xb1\xfb\xe0\x47\x4f\xa1\xd6\xfc\x3e\xd9\x34\xe8\xa2\xf0\x14\xbb\x93\xaf\x98\x90\x83\x0d\x30\x45\x16\x1f\xb0\x62\xcc\x51\xd3\x3d\x00\x14\xe7\xe1\x91\x53\x16\xec\xab\x51\xc5\xda\xab\xfa\x01\x80\xe2\xfe\x2d\xb4\x1c\x1b\x60\x14\xe7\xe1\x61\x92\x63\x03\x8c\x62\x80\x48\xb8\xbb\x74\xb1\x93\x18\x4d\x2b\x4c\x97\x2e\x82\x36\x31\x86\x6d\xa9\x8d\x06\x6d\xe2\x2c\xf0\x88\x5d\xf1\xb0\xa7\x48\x78\x12\xf8\xbb\x41\xa1\xc8\x82\x55\x85\xd8\x74\xc5\xc3\x4e\x5e\xe5\x82\xde\x54\x7c\x8a\xdd\x21\x95\x20\xc3\x6d\xf1\x29\x76\x7f\xfc\x91\x4d\xd3\x90\xde\x21\x5c\xc3\x55\xd5\x6a\xd5\xa1\x52\xc3\x8b\x2c\x7b\xd6\x51\x3d\x0f\x2f\xb2\x34\xa7\x23\xe5\x69\x81\xef\x9f\x3d\x42\x4d\x34\xa4\x8b\x3c\xb1\x47\x12\x95\xb3\x14\xab\xba\x55\x91\x55\x1c\xb9\xa1\xba\x86\xec\xe0\x83\x10\xb1\x6d\x72\xf0\x0d\xda\xc4\x09\xf2\xd5\x1e\xaa\x8b\x47\x69\x54\x0d\xaa\x6c\x2b\x39\xab\x21\xbf\x39\xa4\x13\x20\x4f\x9c\x64\x1a\xdb\x22\x4f\xec\x01\x9d\xd0\xdc\x2e\xf2\xc4\x1e\x28\x75\x64\x2e\x87\x44\x01\x1c\x89\x31\x1d\xaa\x26\x72\x70\x24\x4e\xad\x1d\x43\x96\x0a\xb4\x88\x41\x6e\xb3\x6d\x2e\xf2\x0d\x5a\xc4\xa9\xb5\x43\xb4\x88\x0d\x5a\xc4\x98\x68\xe2\x86\x8c\xd7\x48\xa2\x30\x26\x94\x69\x28\xf8\x01\x07\x31\x64\x1b\x87\xd7\x1d\x08\x88\xb3\xa0\xf5\x1d\x1a\xbf\xc7\xcd\x20\xd0\x6c\x0f\xf5\x3c\x23\x99\xad\x21\xdb\x28\x42\xc4\x1e\xb0\x54\x32\x84\x43\x4b\x13\xa0\x11\x03\xc0\xc2\x3d\xa4\x00\x40\x40\x8c\x69\xf3\xea\x79\x80\x80\xb8\x35\x9d\x0d\x6d\xd8\x03\x01\x8d\x00\xb7\x6d\x7e\xf4\x6d\x7e\x74\x22\x86\xb7\xd8\x0f\x1b\xec\x87\x41\x5e\xb2\x3d\xb4\x34\x01\x01\x31\x54\x2c\x0c\xef\x36\xa8\x0e\x03\x48\xa0\x3d\x34\x6b\x03\xee\x70\x92\xb8\x67\x0f\xa5\x31\x80\x1e\x4e\x82\x88\xb7\x40\x0f\x7b\xa0\xfc\x95\x17\x13\xe8\x61\x0f\x92\xa7\x6a\xab\x11\xe8\x61\x0f\x54\x3f\xf2\x62\x43\xe7\x1d\xb0\x1f\x6e\xaf\xfb\x90\x02\x00\xee\x30\x26\xfa\xcd\xa1\xf2\x77\x2c\xf6\x11\x7e\x73\xc8\xf3\x0c\x78\x9e\x39\xff\x85\x82\x7a\xc8\x12\x8d\xc5\x9e\xc2\xff\x0c\x35\x43\x23\x39\xa3\x5b\x9a\x31\x34\x71\x0f\x34\x43\x04\xce\x6d\xa1\x21\xf6\x48\xfe\x67\x1e\xdc\xf3\xe1\xd5\x1f\x5e\xfd\xee\x8f\x4e\x2e\xaf\xfb\xd4\x36\x3e\x94\xdf\xc6\xae\x7c\xc5\xb0\xb5\x7a\x8f\xa4\x06\x53\x06\x65\x68\x88\x1a\x9b\xe6\x79\x6d\x86\x66\xed\xf1\xd0\x96\x77\xe0\xb1\xad\xc7\xb6\xf8\x51\xb3\xf6\x48\x06\x67\x6a\xfc\x1e\x8a\x74\x24\xb9\x3f\x09\x36\xd9\xc2\x4c\xec\xf1\xd2\x16\x66\x8e\x21\xcd\x20\xed\xfd\xd4\x1e\x0e\x0a\x45\x16\x26\xe5\xb3\xca\x71\xbd\x34\xef\x1d\x50\x7f\x04\xda\xc4\x2d\xc5\x1b\x4a\x79\xe3\x63\xf4\x1e\x65\x45\xba\x41\x4a\xe8\xe2\x9e\xca\xba\x00\x33\x31\x0f\x8e\xf2\xd4\x5c\x35\x93\xd8\x4c\x4d\xe4\x53\xd6\x05\x00\x8a\x93\xf0\x96\x2d\xf2\xc4\x06\x6d\x62\x12\xaa\xb7\xa7\xf4\x07\xb4\x89\x13\x6c\xb7\x3d\x55\x17\xcf\xc2\x84\xa0\xd7\xc2\x4c\xec\x59\xf8\x91\x03\x3f\x35\x44\xcd\x24\x30\xd3\xb7\x72\x6a\xe9\x9e\xc9\x88\xdc\x64\xfd\xda\x53\x62\x03\xf2\xc4\xf4\xf9\x9c\x2a\x9e\x00\xa0\xb8\xb5\xef\x4e\x35\xc8\xa0\x4d\xcc\x83\x03\x2f\xcc\xc4\x9e\x17\x3f\x72\x6e\xa7\x26\xa6\x79\xb1\x38\xe8\x1a\xa6\x5a\x26\x00\x28\x6e\xad\xc0\x53\x62\x33\x6f\xda\xe2\x52\x4f\x89\x0d\x68\x13\xb7\x86\xe1\x49\x50\xda\x9e\x24\x44\xd3\x30\x3c\xd5\x33\xcf\x9b\x55\x75\xbd\x14\xe9\x66\x25\x77\xf5\x61\x95\x8b\x53\x69\x1e\x69\x7d\x6a\x9b\x9a\x95\xf5\x42\xf3\x38\xa5\x3f\x33\x85\xb5\xa9\x3d\xdc\xdc\xd8\x1b\x4c\x0a\xb3\xd7\xef\xa9\x52\x79\x26\x8b\x31\x09\x83\xdb\x53\xc9\x6c\xc2\x6e\x10\x61\xbd\xc5\xa7\xd8\xb3\xd1\x16\xf4\x7a\x6a\xe9\x06\xb2\x62\xfa\xb4\x4c\xe9\xcf\xec\xb4\xe5\x1c\x55\x2a\xcf\xa4\x2c\x13\x08\x86\x3d\xa5\x2c\xa0\x4d\x98\x1a\x7f\x4f\xcd\xda\x73\xf0\x23\xac\x9e\xc8\x13\x7b\x26\x81\x99\xc4\xbc\x6d\x61\x26\x36\x30\x13\x53\x42\x3f\xa7\x6d\x4d\xdb\x62\xda\xd3\x03\xb0\x18\x97\x07\x53\xb3\xf6\x5c\xfc\xe8\x91\x93\x91\x00\x79\x62\x02\x8f\xb8\xa7\xd4\x64\x06\x3f\x7a\xe4\xd4\xf3\x00\x2d\x71\xfb\x00\x4d\x95\xca\xe0\x48\xcc\xe2\x61\x52\x4e\x02\x53\xc2\xdc\xfc\x5b\x4c\x89\x0d\xa6\xc4\xd4\x14\x3d\x35\x58\xcf\x24\x17\xb3\x78\xbe\xb6\x07\x60\x9b\x49\x9f\xe6\xb7\x87\x69\x33\x6d\x08\xcc\xd4\x86\x3d\x1f\x9b\x67\x09\x81\xe8\xdf\x20\x4f\x9c\x27\x17\x79\x2a\x3a\xcd\xc7\x6c\xec\xb4\xa5\xe8\x34\x1f\x13\xb9\xb3\x38\x92\x8e\xf9\x92\x6b\x1f\x5d\xe7\x94\x74\x4c\x48\x47\xf1\xac\x4a\x27\x00\xa0\x98\xe0\x22\xec\xa9\x36\x68\xbe\xb4\xe5\xaa\x6a\xe9\x9e\x1f\xb9\xd9\xbd\xee\xfa\xcd\xcc\xcf\xb6\xe8\x51\xa9\x67\x22\xf5\x90\xdc\x65\x4f\xf9\x14\xf0\x29\x26\x01\x6e\x7b\x6a\x69\x9a\x1f\xd3\x86\x46\x2f\xa9\x09\x60\x14\x13\xc4\x83\xbd\xb4\x74\x83\x49\x71\x6a\x6d\x5d\x44\xc0\xee\x05\xe9\x20\x0d\xd8\x5e\x2a\xa8\x57\xb2\x2b\xd3\x43\x2e\x64\xc5\x06\xb2\x62\x6a\xb0\x16\x80\x62\xaf\x93\xaf\xf0\xe4\x5a\x5a\xa7\x57\x72\x1d\xd3\x7d\x5c\x12\x85\x95\x62\xc9\x74\x87\x96\x66\xa5\x05\x9d\x20\xba\x7d\x2f\xcd\x4a\x80\x4e\x4c\xb7\x63\x29\x24\x2c\xb8\x86\x93\x77\x17\x30\x8a\x2c\x68\x8b\x67\x7d\x29\x37\x80\x49\x31\x09\x24\xdb\xcb\x8b\x0c\x0e\xc5\x3c\x31\xb0\x2d\x35\xc8\x2b\xa5\x8b\xdb\x83\x29\x26\xc5\x06\x93\x62\x92\x11\x7d\x2f\xd5\x35\xe0\x50\x9c\x9a\x8f\x97\x8e\x75\xcb\xeb\x8e\x3e\x78\xa9\x22\x5e\x8d\xe6\xd1\x06\x2d\xd9\x8d\x05\x05\x38\xe1\x4a\x97\x36\x24\x70\x28\xe6\xd9\xff\xc5\x53\xbc\xa4\x06\xa0\x4d\x4c\x92\xa6\xec\xa5\x9e\x66\x91\xe8\x50\x76\x41\xe4\x89\xbd\x3a\xa4\x92\xcb\xb3\x34\x5e\x03\x40\x31\x89\x6c\xdb\x4b\x9a\x01\x00\xc5\x24\x68\x7a\x2f\x8d\xd7\x0b\x32\x42\x64\xdb\x5e\x5a\x9d\xc0\xa4\x98\x40\x3e\xee\x25\x83\xb2\x86\xcd\xb3\x04\x92\x11\x00\x28\x26\x41\xd3\x7b\xa9\xba\x01\x80\xe2\x2e\xae\x8a\xea\xe2\x35\xd9\x1a\x38\xe7\xa5\x3c\xb2\x16\x0f\x23\x17\x71\xc9\xb3\x2c\x28\x0b\xf1\x6f\x5b\x7c\x8a\xbd\xa0\x2c\xe4\x3b\xdf\x4b\xca\x02\xda\xc4\x24\x95\xf9\x5e\xea\x69\x56\xd8\x16\x83\xd0\x14\xbd\x52\xf8\x98\x1a\x99\x97\x1c\xc8\x82\x03\x39\xfd\x4a\x43\x14\xc8\x13\x93\x00\xb5\xbd\x14\x3e\xd6\xe6\x06\x73\x5d\x97\x64\x04\xb4\x89\x79\xc1\x0f\x2c\x95\x32\xa0\x4d\x9c\xda\xe9\x97\xc2\x07\xc8\x13\xe7\x6f\xbd\xe4\x40\xd6\x93\x87\xe1\xba\xfc\xca\x4d\x7b\xb8\x62\x3c\x40\x22\x4f\xec\xf5\xd0\xfc\xe5\x8f\xae\x6a\x0a\x2f\x53\xeb\xb4\x60\x14\x1b\xe4\x89\x49\x50\xda\x5e\xea\x56\x00\xa0\xb8\xe5\x1a\x96\x06\x6b\x90\x27\xa6\xd6\xe9\x25\xbb\xb1\x3e\x7e\xf4\x74\xab\x54\x5e\x70\x20\x97\x97\x5a\x73\xd5\xfa\xd8\x5a\x58\x84\x25\xcd\x00\x9f\x62\x02\xdb\xbf\x43\x71\x27\xa0\x19\x84\xae\xed\x90\xdd\x88\x83\xaf\xa0\xc4\x82\x51\xec\x80\x40\x5c\xc8\x5c\xa1\xb9\x2a\x60\x37\x08\x4a\xdb\xa1\xdd\x39\x0a\x3f\x22\xdc\x86\xda\x0d\x30\x29\x4e\x92\xed\xed\xd0\xd7\x37\x4e\x0e\x13\x27\x27\xe4\x2d\xe2\x64\xbd\xa6\x5f\x6d\xab\x1e\x7e\xbc\xa8\x7a\xad\xa2\x79\x28\x5e\x48\x46\x40\xae\x98\x17\x6f\x78\xa8\xca\x08\xf2\xaa\x9e\xd8\x05\x43\xdd\x70\x24\xf3\x30\x35\x45\x87\x52\x4b\x20\xb5\x5c\xbf\xaa\xc7\xaa\xdc\x21\x82\x29\x77\xa8\x08\x8e\xca\x8f\x1c\xb9\xd0\x14\x0d\x72\xc5\x49\xe4\xe4\x0e\x55\xbc\x20\x57\x4c\xe2\xc1\xb6\x90\x15\x3b\x1a\x3f\x62\xa5\x0b\x6d\x48\x91\xa4\x63\x12\xd6\xb5\x43\x25\x45\x24\xf3\x70\x4b\x63\x43\x32\x02\x8a\xc5\x04\xf3\x78\x87\x4a\x0a\xc0\x2c\x6e\x42\x8d\x77\x48\x27\xa2\x3b\x88\x46\xd5\xb2\x2a\x17\x07\x94\xe0\x2d\x8a\xc5\x0e\x88\x82\x46\xe6\x50\x6a\x89\xa4\x0d\x13\x20\xc7\x1d\x2a\x29\x22\x59\x8c\xfb\x74\x8e\xd2\x09\xb0\x2e\x26\x91\x5e\x3b\x54\x52\x00\x79\x71\x93\xf8\x72\x87\x44\x21\x20\x0a\x20\xae\xec\x50\x6a\x89\x94\x5a\x26\xf9\x85\xb7\xf0\x17\x3b\xa0\x13\x9a\xa2\x43\x1b\x52\x24\x6d\x98\x80\xd1\xee\x50\x6f\x11\xeb\xa6\xad\x4a\x95\x43\x85\xdd\xb8\x3d\x85\xea\x2d\x00\xc6\xb8\x75\x56\x0a\x95\x14\x11\x2c\xb4\xa7\x50\x76\x23\xa0\x13\x84\xae\xfd\x7f\x8c\x9d\xcb\xce\x26\xa7\x76\x40\xe7\x79\x8a\x7e\x83\x14\x14\x97\x42\xb2\x3c\xc9\x38\x79\x87\xaf\xd8\x20\x79\x60\xbb\xd5\xb1\xdf\x3f\x62\xad\xdf\x83\x9c\x33\xb0\x07\xad\xaf\x7f\x54\xc5\xad\x60\xb3\x2f\xb0\x98\xaf\x9e\x5a\xb8\x19\x03\xf8\xe2\x7c\x95\x13\x2f\x36\x48\x71\xc8\xe9\x91\x78\x8f\x29\x52\xb2\x7d\xaf\x5b\xf6\xc5\x06\x29\x58\x04\xaf\x12\xe0\xc5\x06\xb9\x59\xf2\x84\x64\xcc\xf7\xe8\x16\x83\x43\x56\xf3\x55\xb7\x80\x95\x31\xaa\xe3\xcb\x18\xf6\x1b\x7c\x6d\x74\x8b\x57\xa1\x00\x24\x63\x70\xa9\xea\x7c\xdd\x1f\xf7\x62\x70\x70\x02\x6d\xbe\x1a\x1c\x2f\x06\x87\x5b\xad\x5e\x03\xd6\xe0\x33\x46\xb5\x12\x06\xac\x41\x69\x8c\x6a\x17\x2a\x14\x5e\xa6\xbb\xa1\xe8\xe9\x74\x9f\x97\x79\x35\x92\xaa\x49\x8d\xa4\x41\x52\x37\xe9\x74\xa1\x27\x53\xa6\x06\x07\xdc\x8c\x7c\x7f\xe5\xb5\x4c\x22\x7b\xea\x35\x8d\x21\x81\xcc\x18\x9e\x26\x99\xfa\x40\x40\x66\xe4\x9b\x95\x7e\x2a\x3a\xe0\x63\x8c\x6a\x25\xf4\x81\x4c\x7c\x20\x60\x17\xa6\xac\x8c\x09\x2b\x23\xbb\xeb\x47\x56\xc6\x84\x95\x31\x0c\x6b\x4f\x8f\x09\xc0\xca\xc8\xdc\xf7\x32\xa7\x4a\xc9\x44\x9a\xd4\xfa\xf7\xd7\x2a\xcd\x69\x6c\x1c\x7c\xc6\xf0\x80\xc8\xd4\x45\x02\x3e\x23\x73\x16\x78\x4e\xad\x16\x50\x1a\xf9\x46\x7b\x13\xa5\x31\x41\x69\x0c\x8f\x7e\x4c\xad\x16\x50\x1a\x19\x04\xc3\x9c\xc6\xc6\x21\x6a\x0c\x83\xcc\xd3\x40\x14\x44\x8d\x61\x90\x79\x2a\x7f\x80\x64\x0c\x83\xcc\xd3\xf3\x01\xb0\x32\xf2\x8d\xb2\x33\xd5\x6c\xa6\xf2\x07\x65\x47\x6e\xc6\x84\x9b\x31\x2a\x2b\x97\xdc\x8c\x39\x11\x49\x70\xa1\xa6\x90\x8c\x09\x24\x63\x80\x68\x9c\x53\x5f\xe7\xec\x60\x8d\x11\xce\xd3\x18\xd0\x1c\xe0\x90\x19\xca\x53\xef\x04\xe4\x8a\xc1\xf9\xb7\x39\xb5\x21\x26\x36\xc4\x8d\xdf\x74\xaa\x0f\x4c\xa6\x7e\xf3\x33\x8f\xaf\xbc\x16\x49\xb4\xd1\xa9\x0f\xd8\x62\x70\x9b\xd6\x9c\xee\xc3\x07\x66\x91\x6f\x3b\xc7\xdd\xb2\x13\xff\xe4\x6d\xe7\xe8\xa4\x00\x6c\x31\xdc\xad\x3f\xb5\x34\x00\x5b\xe4\x9b\x48\x80\x60\x8b\x09\xd8\x62\x18\x21\x9d\xfa\x2d\x80\x59\x0c\xc3\xa1\x53\x69\x00\x9f\x62\x18\x0e\x9d\x3a\x29\xc0\x54\x64\x2e\x35\x99\xf2\x29\xe6\x9c\x1f\x92\xa8\x84\x96\x06\x4c\x8a\x01\x43\x71\x4e\x83\x34\x13\x01\x61\xa0\x73\x1a\xa4\x01\x53\x31\xb8\xb3\x6a\x4e\xb7\xe3\xcf\x40\xc6\xda\x46\x05\x04\x7c\x8a\xc1\x49\xc0\x39\x0d\xbf\xcc\x65\x25\xa8\xaa\xe1\x97\x89\x59\x61\x08\x53\x3e\xc5\x9c\x08\x08\xf7\x92\x4f\x23\x27\x20\x2b\x46\x43\xc1\x99\x4a\x03\x98\x14\xc3\xe0\xe4\xd4\x23\x31\x37\xd2\x93\x35\x3c\x8c\x9c\x04\x8b\xbf\x9b\xaa\x43\x83\x21\x30\x18\xdc\xef\x25\x9f\x62\xc2\xa7\x18\xb0\x08\x66\x18\x51\x8e\x0b\xfc\x35\x8b\x6c\x38\xf5\x61\x52\x0c\xce\xf5\xcd\x30\x7c\x0c\x93\x22\xdf\xac\xf4\xa1\x63\x33\xce\xa4\x1e\x1d\x4b\x56\x18\xc5\x04\x46\x91\xdd\x3b\x26\x8c\x62\x06\xee\x07\x77\x17\x87\xd1\x8e\x38\x73\x7b\x70\x97\xd5\x94\x4f\x31\x01\x50\x0c\x2e\x62\x9b\xa1\x17\x13\xf2\xc4\xf0\x40\xa0\xe4\x89\x19\x38\x16\x3a\xb2\x2c\x0c\x5a\x04\x36\x84\xe1\xbd\x70\xa5\x8f\xca\x02\x44\x7f\x45\xfd\x7a\x8a\x66\x63\x7c\x88\x99\x98\x81\x7f\xc0\x9d\xa4\x61\x38\x22\x1a\x79\x61\x1d\x84\x91\x5b\x30\x13\x03\x4c\xe0\x0c\xfd\x03\xd0\x26\x32\xec\x86\x19\x3a\x23\x03\xf5\xbf\x33\xc8\x25\x4f\xcc\xc0\x19\x60\x20\x2b\x9c\x8f\xc0\x28\x86\x51\xab\x70\x6b\x08\xb4\x89\xe1\xde\xc4\xd0\xa7\x08\x47\x62\x18\x56\x0a\x57\x67\x98\x12\xb9\xd8\x85\xae\xce\xc1\x44\x36\x60\x24\x53\x62\xc2\x94\x18\x8f\x7d\xef\xac\x0d\x54\xf6\x07\xc5\x2b\x8c\xb6\x02\x8d\xc8\xc5\x8e\xd6\xf3\x18\xa8\xec\x1e\x7a\x14\x20\x31\x01\x48\x8c\xc7\x12\x8d\x17\xc4\x99\x96\xe3\xf1\xa3\x19\x47\x8d\x97\xa9\x60\x25\x9c\xa2\x40\x23\xc6\x63\xf6\xfa\x07\xe2\x2c\xd2\xc5\xfd\xaa\xa1\xd3\x10\x04\xc4\x70\xe3\x53\xa8\xb2\x83\x83\xc8\x6e\xe5\x13\x07\x31\x83\x29\x6a\xac\x26\xd4\xe2\x21\x44\x8c\x87\x15\x22\x9c\xa2\x81\x7e\xee\xfe\xa5\xd0\xf2\x07\x01\x51\x34\x4b\xc2\xa0\x69\x2c\x2b\xc1\xc8\xd1\x19\x10\xa8\xec\x86\x49\x24\x44\xcc\x60\x8a\x3e\xac\x49\x61\xa0\x21\xce\x4c\x1d\x6e\x3d\x0a\xa7\x68\xb0\x3a\x73\x29\xd3\x0c\xcd\x7c\x40\x11\xb9\x20\x0b\x43\x0f\x21\xd0\x88\x61\xb4\x43\x68\xc4\x5c\x17\xb5\x47\x0d\x5a\x7a\x08\x17\xc1\x4d\x37\x22\xca\x91\x98\x8b\x89\xec\xae\x9f\xa5\x16\x0f\x5a\x62\xb8\xeb\x67\x39\x6b\x57\x32\x2f\x5e\xd4\x43\xb8\x50\xd9\x8d\x89\x2c\x55\xf6\x85\xca\x0e\xfb\x61\x2e\x03\x92\x0b\xcb\x9f\x5b\x66\xe6\x32\xf6\xb0\x32\x9f\x16\x5f\x83\xd0\x88\x09\x34\x22\xab\x6f\x0a\x8d\x98\x40\x23\xc6\x33\xfe\xc1\x52\x2c\x53\x62\xc2\x94\x18\x6e\x5e\x5e\x46\x35\x41\x4b\x64\x95\xd6\xa5\x9b\x71\xa1\xf7\x1b\x7e\x91\x29\x31\x17\x53\x9f\x8b\x5b\xe6\x72\xea\x83\x99\x18\x46\x51\x96\x53\x1f\x68\xc4\x18\x68\xce\x4b\xbf\xc3\x2a\x7c\x79\x54\xdb\xa5\xb7\x10\x42\xc4\x30\x64\xb2\xd4\xfb\x17\xeb\x2e\x00\x89\xb9\x8c\x57\x02\x90\x18\xc6\x47\x96\xd1\x8a\x75\xe4\xc4\x30\x3e\xb2\xf4\x28\xac\x23\x20\x32\x54\xf4\xb9\xdc\xed\x01\x34\x62\xb8\xad\x66\x19\xc2\x5c\x84\x30\xdd\xea\x29\x40\x62\xae\xb6\x48\xa2\xd3\x35\x05\xa0\x45\x64\x00\x12\x73\xb9\x86\x03\x8d\x18\xee\xa1\x59\xc6\x2b\xd7\x91\x26\xc3\x0d\xa1\x02\x24\xe6\xea\xf3\xbc\x88\xaf\x61\x29\x59\x16\xd6\xc1\xf0\x6b\xb9\x05\x1e\x8e\x44\x76\x43\xe8\xd2\xcd\x08\x47\x62\xb8\xd3\x66\x3d\x5f\x2f\xae\xd3\x5f\x76\x8e\xd6\x01\x4c\x89\x5c\xf0\xfa\xca\x94\x98\x0b\x91\x64\xac\x65\xe9\x8c\x5c\x47\x0c\x0d\x63\x2d\x4b\xf9\xb3\xb0\x0e\xdc\xb1\xb9\xf4\x22\x2c\xa2\x9a\xee\x37\x5d\x5a\x07\x4b\xf9\xf3\xf8\x94\xcd\xc6\x8b\x60\xac\x45\xf2\xc4\x5c\x47\x32\x15\x35\xd4\xa5\xc1\xb0\x50\x24\x8a\xa3\xdb\x40\xe7\x42\x70\x19\x7e\x59\x46\x3b\x40\x56\x0c\x2e\x57\x98\x22\x2b\xe6\xc2\x86\x18\x2c\xb2\x4b\x5f\xc3\x7a\x19\x26\x7e\x6d\x5d\x96\x0b\x97\x25\x14\xc2\xb9\x74\x59\x2e\xcc\x0a\x28\x84\x73\xa9\x48\x2c\x04\x97\xc1\x94\x65\x68\x03\x26\xc5\x18\x2c\x8c\xcb\xc5\x1f\x3e\x45\x76\x6b\xec\x72\xf1\x07\x53\x91\x2e\xd0\x81\x73\xe9\x67\x5c\x47\xe8\x9c\x34\x1a\xae\xc9\xb0\x16\x1f\xd7\xa9\xa8\x04\x02\x54\x71\x1e\xa3\x50\xf7\xb4\x43\xaa\xc8\xee\xb4\x5d\x60\x6f\xe7\x42\x04\xb9\xd3\x76\x2b\x6f\xf6\x31\x10\x32\x80\x8d\x29\xb5\x62\xee\xcb\xcc\x18\xaf\x5b\xa3\x61\x1f\xb9\x73\xd2\x3a\x69\xc3\xb4\x6d\xda\xe9\x8f\x6d\x50\x14\x32\x45\xae\xb8\x76\xb6\x06\xc1\x66\x3f\x05\x80\x88\xb9\x75\x36\x02\xae\x48\x97\x71\x10\xc9\x15\x13\x72\x45\x86\xce\x31\xb7\xca\xc3\x4e\x16\x80\x24\xd8\x5a\x09\x10\x2c\x4e\x5a\x26\xcd\xca\x1d\xa9\x73\xd2\x68\x84\xfe\x84\x8d\x3f\x41\xbb\x6a\x7b\x76\x78\x23\x57\x20\x7b\xcc\xad\x21\x00\xe9\x22\x5d\x86\x47\x64\x5c\xcc\x7d\x9b\x1b\x52\x79\x1b\xad\x80\x7b\x91\x2e\x37\x00\x6c\xa5\xcd\x2e\xbe\xcb\x8a\xbe\x75\x33\x80\xb6\x28\x5a\x11\xdb\xe0\xe8\x56\xdc\xd8\x54\xdd\x9c\xbb\xda\xc1\xac\xf2\x5b\xd5\x7f\xa3\xfa\x57\x3e\xa0\xe8\x8b\xb9\xab\x05\xa0\xd5\x6f\xbd\x9a\xbb\x3a\x1e\x18\x83\xf2\x30\x26\x3c\x8c\x0c\x74\x61\xca\xc3\x98\xbb\x59\x02\xe3\x52\xfa\xc5\xdc\xcd\x12\x78\x53\x91\xb3\xe5\xe5\x1b\x00\xd9\xc6\x51\x37\x71\x54\x18\xe7\x73\xab\xba\xec\x7e\xfb\x18\x95\x33\x90\x01\x4b\xe3\xa4\x35\xd2\xac\x5c\xdf\xa6\x51\x84\x6e\xc9\xfd\xd0\x9b\xc6\x7e\xb6\xea\xcb\x7e\x7c\xce\xc6\x7a\x20\x6f\x8f\x6c\x1a\xf9\x79\xfc\x77\x1f\xd5\xa6\xe8\xf7\x92\xc4\x31\xf7\x30\x3b\x66\xfd\xf6\xb0\xef\x1e\xf4\x30\xcb\xef\xd6\x0f\xb9\x3f\xd6\xce\xe1\xaa\x0a\x03\x9e\x23\x5d\x00\x01\xa7\x7c\x8e\x09\x9f\xe3\xa4\x51\x84\xe2\x61\xbf\xbe\x8b\xa4\xdc\x6e\x5d\xdd\x2f\xdf\xd5\x61\x62\xe8\x73\x4f\x3b\xc5\x62\xd5\x59\xf6\xf4\x55\xb4\xc3\xad\x38\x80\xd1\x71\xd2\x28\x42\x79\xb0\xc3\x77\x1d\x62\xfa\x19\x00\x6c\x94\xfb\x2b\xc9\x1a\x87\xb5\x43\x52\x6d\x83\x9d\x9b\x60\xa7\xb6\xb4\x84\x8d\xb9\x97\xb9\x61\xba\x6c\x43\x16\x90\x36\x4e\x1a\xa5\x2a\x4b\xf6\x32\x3b\xc7\x93\xbe\x86\xbd\xc9\xae\xfe\x03\x37\xf6\xd6\x19\xb9\xe5\xe9\x1b\x75\xd8\x9a\x1a\x9b\xe0\x67\x75\xfe\xa9\xda\x40\xef\x48\x17\x70\xe4\xb8\x88\x57\xc4\x75\x65\xd3\x6e\xd2\xaa\x69\xaf\x69\x95\xb4\x65\x9a\xef\x1e\x6d\x33\x2e\x3c\x92\x71\x29\x32\x88\x46\xc4\x85\x32\x13\x57\xf2\xdd\x33\xa3\xe3\x22\x68\x11\x97\x32\x03\x94\x5e\x5c\xd9\x72\xb3\xef\x66\xca\x40\x79\x89\x8b\xf0\x26\x97\x5f\xc6\xc5\xf6\xd4\xb8\x8e\xe4\x28\x18\x85\x71\x65\x6b\x72\xdf\xde\x67\x42\x8d\x21\xe9\xc6\x75\x33\x8f\x1a\x15\x41\x3d\x89\x4b\x31\x92\x8f\x24\x8c\x8b\x30\x68\x5c\x37\x33\x95\x40\x52\x88\x21\x09\xd0\x23\x27\x8d\xec\x8a\xd9\x15\xb3\xa3\x22\xc5\x76\x15\xdb\x50\x69\x43\xb5\xfd\xca\x0c\xa2\x1e\x71\x55\xfb\x4e\x01\x41\x8c\x23\xae\x6a\xb1\xd5\x77\x1b\x45\x34\xab\xd7\x7c\xae\x93\x5f\xf3\xb9\x66\xdf\x75\x9a\x81\xd5\x12\x17\x56\x4b\x3d\x2a\x64\x08\x28\x89\xab\x99\xdd\x19\x82\x71\x01\xac\x8a\xab\xfb\xea\x43\x76\xdd\x57\x3b\xaf\x3e\x34\xf6\xb1\xc6\x8f\x35\x7e\xe8\x94\xc7\x1a\x3f\xd6\x64\xf8\x9c\xad\x55\x42\x00\xe0\x8b\xeb\xb1\xa3\x94\x10\x10\x57\x03\xfc\xc9\xf9\xf9\x7a\x97\xfc\x86\x5f\x71\xf0\x15\x07\x8d\x1d\xd6\xf8\x43\xb1\x44\x17\xe2\xfa\xd8\xc7\x28\x14\x5c\xb7\x1e\x42\x4f\xe2\x52\x42\xdc\x8e\xa7\x8f\x7d\xf2\xf9\x98\xe6\x73\xd6\xe4\x35\xbb\x44\x76\xaf\xd9\xe1\x89\x60\x67\x7e\x48\x34\x89\xeb\x65\xf5\x1a\x74\xc9\x6b\xbb\x5e\x2f\x98\xc9\xe4\x86\x9d\x13\xf0\x4b\x32\x90\x8b\x90\x5f\x12\x97\x72\x04\x45\x23\x04\x98\x84\x00\x93\xeb\x76\xd8\x4d\x4b\x98\x96\x40\x3d\xa6\x03\xf6\xd8\x40\xe7\x31\xb2\x0b\x4b\x20\x14\xda\x9c\x76\x84\x42\xe3\xc2\x83\xd9\x9c\x75\x61\xeb\xc3\xfb\x70\x0a\x4d\x08\x3f\x21\xb1\x50\xd8\x17\x21\xc3\x24\x2e\x05\x10\xeb\x59\x00\x34\x39\x3f\xf7\xcf\xdf\x4a\xb9\x68\xe9\x32\xb7\xf5\xfa\x18\x75\x5b\xe6\x46\x34\x14\x20\x46\x5c\x44\x43\xe3\x42\xd6\x34\x67\xf5\x36\x33\xce\xdd\x5d\x88\xf8\xb8\xb6\xfd\xb6\xcd\xcd\x51\xbd\xfd\x0a\x4a\x13\x04\x70\x24\xa5\x09\xd4\x92\x93\x56\x49\x7b\x4c\x1b\x54\x6e\x90\x44\x1b\x52\xb2\x7f\x19\xe8\x09\x87\x64\x24\x85\x89\x53\x1d\x88\xc9\x4f\x01\x60\xe4\xa4\xf1\x1c\x96\x48\x40\x1b\xc9\x1c\x4f\x08\x69\x23\x91\x94\x08\xb0\xec\x22\xdd\x66\x07\x5b\xfb\x22\xe0\x10\xf2\x46\x02\xde\x48\xe6\x8e\x91\x48\x44\x2a\x22\xa9\x44\x7c\xd5\xae\x58\x42\xa1\x84\x4c\xa1\xec\xba\x8c\x84\x40\xe0\x1c\x43\x24\x1c\x8a\x01\x64\x24\x5d\xc4\x2a\x22\x15\x73\x23\x7c\xda\xb2\x99\xd9\x54\xe5\x06\x87\xe4\x22\x55\x7b\xa9\x66\xd3\xa8\x88\x72\x23\x55\xb3\xb3\xd4\x6a\x76\xc4\x46\x71\xde\x45\x6a\x36\xb5\x79\xed\xd0\xcd\xab\xcd\x66\x29\x36\xca\x4d\x53\x89\x61\x44\x6a\xcb\x34\xaa\xd2\x2d\x56\xf5\x00\xc8\x60\xa4\xee\xc7\x21\xda\xf9\x55\xbb\x6e\xa7\x63\xa7\xb4\xaf\xa7\x6c\x84\x62\x03\x32\x60\x08\x10\x89\xa4\xd8\xc0\x1a\x8b\x44\xd0\x22\x92\x62\x03\x9e\x5f\x24\xc5\x06\xd8\x90\x74\x11\x90\x88\x34\x6c\xec\xf0\xe3\x34\x9e\x1b\xb6\x62\xd8\x51\x9d\xe7\x3e\x7e\x09\xec\x10\x18\x5f\x91\x3e\x76\x80\xa2\x04\x92\x5d\xa4\x8f\xd9\x7d\xcc\x8e\x85\x23\x71\x00\x37\x20\x8c\x64\x7c\x8e\x91\x14\x25\x49\xc5\xa2\x38\xc2\x5e\x4b\x78\x29\xa1\x9a\xe4\x9b\xaf\x5d\xc2\x9b\xaf\xed\x7f\x7d\x13\x11\x99\xa6\xbd\xa9\x8c\xc0\x5a\x88\xa4\x8c\x48\xea\x15\x98\x01\x91\xa6\x1f\xf1\xa8\x17\xa5\xdc\xf7\xdf\xae\xe6\x91\xc2\x26\x06\x3d\x5b\x1d\xce\x61\xdd\x9d\xce\x1c\xa2\x8b\xe4\x74\x4e\xcb\x9c\xe9\xc4\x65\x45\xb5\x39\xb8\x5a\x29\x44\x80\x44\xda\x66\x77\x53\xa9\x6d\x76\xfb\x63\x1a\x8d\x74\x3e\x27\xe7\x33\x48\xab\xc8\x58\x22\x91\x35\x3b\xb8\xc5\x26\x32\xae\x8f\x80\x06\x52\x1c\x45\x19\xef\x64\xe4\xeb\xeb\xd5\x93\x9d\x1c\x90\xc8\xce\x71\x14\x90\xc8\xce\xf1\xec\x1c\x07\x1f\x15\x50\x41\xce\x8f\xef\xd6\x33\xb6\x00\x7e\x9c\x9f\x44\x11\x9d\xa4\x66\x92\x1d\xc0\x9a\x9c\xb1\x27\x22\x63\x4f\x40\x1f\x89\xac\x72\x90\x95\x18\xdc\xa8\x14\x92\x3f\x42\xf2\xc7\xe5\x1a\x0a\xf3\xe3\xfc\x98\x5d\xa7\x54\x65\x01\x70\x8f\x0c\xa6\x24\x72\xb1\x11\xda\x13\xae\x52\x62\x3d\x22\x3b\xf1\x5d\x57\x32\x71\x83\xc8\x5c\xdc\x71\x01\xbb\x0b\xb8\x1f\x3f\x05\xc8\x8f\xc2\x45\x9c\x91\x9d\xf8\x59\x85\xa1\x32\x3e\x84\x7d\x44\x56\x61\xe0\xd0\x57\x64\x1c\x1d\x01\xf4\xa3\x14\xbb\xa9\xda\x30\xad\x07\x57\x0c\x71\x1f\x91\xd5\x21\x1a\xc2\x2b\xab\x43\x64\x28\x98\x17\xe7\xbe\x02\x1e\xc8\xf9\x39\x4a\x14\x8e\x8d\xc8\xca\x87\xac\xf9\xd0\x12\xd9\x75\x3f\x2c\x41\x4e\x9c\x1d\x91\x15\x0f\x59\xf1\xd0\xa8\x48\xb7\xf9\x1a\x14\xe0\xfb\x23\x3f\x7e\x2f\xf6\x66\x36\xe6\x9f\x60\x90\xc8\x8a\x0c\x30\x44\x91\xd5\x34\xf2\xd3\x4c\xa3\xbe\x8a\x8c\xac\x56\x41\xd0\x22\xf2\x30\x3b\x5c\x19\xf8\xd2\x23\x0f\x9b\xaa\x8d\xd1\x1c\x9c\x6a\x15\x59\x89\x41\xa8\x21\xf2\xc7\x1e\x56\x3c\x38\xef\xb3\xe2\x21\x6b\x64\x40\xe2\x89\xfc\x5a\x3d\x0d\x0a\x0e\x4c\x45\x7e\x6d\x2c\xfa\x02\xa8\x94\x00\xf0\x71\x7e\x96\x8f\xd1\x8a\xd7\xef\x7a\xd4\x86\xdc\x98\xf7\x52\x3d\x22\x6b\x63\x7c\x0d\x9d\x69\x6e\xd3\xdc\xa8\xdc\xb4\xc2\xa0\xcc\x2e\xb0\x34\x91\x9d\xec\x59\xb3\xe3\xab\xef\xd4\x04\xb2\x02\x80\xf8\x42\x64\x05\x00\xfc\x8f\x93\x46\xa7\x84\xb5\x53\x15\x20\xc2\x10\x79\xd9\x01\x1a\x1e\xed\x21\xbf\xe5\x87\xc5\xaf\x41\x58\x20\xc0\x81\x9c\x1f\x5f\xb5\x15\xdb\x6e\x47\x17\xe0\xba\xa5\xc8\xea\x02\x59\x79\xd2\x1c\x9c\xdb\xc6\x42\xe2\xbe\x3a\xea\x4c\x56\x9e\x64\x65\x47\x67\x74\xde\xca\x0e\x68\x20\x99\x73\x4b\x71\xe3\x22\x8d\x5b\xf5\x00\xba\x4a\x08\xfd\x88\xfb\xa8\x04\x19\x9e\x70\x40\xfb\x38\x3f\xbe\xd9\x49\xba\x4d\x2a\x24\x0d\x92\xba\x49\xaf\x99\x99\x66\x66\x84\x30\x09\x47\xc4\xcd\xce\xca\xb8\x71\xa5\x02\x3b\x09\xa9\x1f\x01\xf5\x23\x03\x3b\x09\xa9\x1f\x01\xf5\x23\x77\x46\xa6\xd4\x8f\xb8\x95\x38\x7f\x3d\x16\xa6\x2d\xd3\x7c\xce\x02\x8e\x5e\x92\xe1\xa4\xc4\xad\xc4\xb9\xb5\x3d\x88\x81\x04\xc4\x8f\xf3\x43\x09\x37\xf5\x20\x98\x19\x37\x02\xa7\x23\x98\x6f\x3c\xa8\x01\xff\xe3\xbc\x49\x01\x0a\xa1\x5b\x0b\x05\xe2\x49\xdc\x5a\x28\x37\x0a\xc9\x5f\x8f\xd9\xb9\xca\xaa\x5e\x28\x81\x10\x67\xdc\xca\xaa\xce\x14\x91\x1a\x12\x77\xfd\xca\x8e\x77\xab\xd9\x55\xa6\x3e\x83\xe6\xae\x36\x9f\xcb\x82\xae\x5e\x4d\xb3\x76\x1a\x32\x04\x5f\xe2\x6e\xb6\x55\xcb\x83\xe8\x4b\x48\xfb\x08\x68\x1f\xf9\xab\xc2\xaa\x10\xb7\x62\xa3\x33\xbb\x40\x7f\x9c\x9f\x6c\x1a\xcf\x29\x23\x6e\x55\x08\x80\x8f\x71\x3f\x66\xf7\x98\x1d\x8d\x78\xec\x74\x44\x04\x27\xba\xe2\x1e\x76\x13\x60\xb2\x8b\x40\x4a\xdc\xda\x22\x50\x3e\x72\xc7\x68\x93\xf2\x11\xb7\x92\xe4\x61\x75\xbd\x87\x5d\x32\x96\x69\x7c\x6a\x25\xc9\xad\x31\xf2\x20\x5c\xc1\x79\x9c\x1f\xb3\xfb\xfb\xeb\x1c\xe3\xfe\xd8\x6c\xce\xba\x5d\x8f\x63\x59\x53\xe5\xc6\x54\xe1\xd4\x57\x88\xf8\x88\x5b\x71\xf4\x38\x70\x95\x3d\xb7\x0a\x06\x20\xca\xb8\xa7\xaf\x4e\x5f\xa5\x73\x94\x33\x37\x72\x86\x53\x5c\x71\x4f\x9b\x38\xe9\xeb\x07\xc5\x51\xca\x47\xdc\xca\x99\xc7\x11\x13\xf6\x75\x30\x93\x89\xc1\xc4\xad\x9c\xb9\x95\x29\x9c\x18\x8f\x5b\x5b\xe2\x56\xf9\x78\xec\x46\x95\x8f\x1b\x5b\x82\xd0\x59\xdc\xdb\x1e\xdb\xd9\xc7\x28\x42\x61\x71\x6b\x38\x3c\x8e\x98\xed\xab\xdb\x57\x4f\x97\x14\xdc\x9b\x51\xd4\x33\x08\xb1\x44\xd1\x6e\x28\x44\x41\x3b\x02\xaf\xa8\x67\x14\x1d\x13\xa0\x2c\xa3\x10\x50\x89\xa2\xee\xf1\x20\x54\x0b\x71\xd0\x28\xea\x19\x70\x24\x03\x38\xc7\xf9\x39\x4b\x59\x45\xf4\x14\x7c\x99\x51\xb2\xa5\x3e\xd4\x04\xbf\x65\x14\x0d\x02\xe8\x8f\x21\x59\x23\x8a\x13\x90\x13\xc4\x51\x8a\xcf\x39\xdb\x38\x2f\x1c\xc5\xd9\x56\xd4\xf5\x89\x59\x04\x54\x8d\xf3\x93\x28\x96\x9a\xe0\x43\x8c\xa2\xaa\xcf\x55\xe8\x21\x4a\x23\x8a\x33\x8b\x93\x18\x51\x9c\x59\xa5\x65\xd3\x28\xa2\x59\xac\xba\x3e\xb1\x86\x28\xdd\xea\xa9\xd7\xc3\x82\x88\xe2\xc2\x5d\xd8\x9d\xe4\xcc\x92\x9d\x11\xc5\x89\x0a\x9d\x30\x00\x69\x9c\x1f\x06\x3e\x27\x6f\xa3\x70\x17\x4f\x94\x07\x79\x86\x3d\x0c\x5c\xe3\xfc\x58\x02\xe3\x0e\x94\xc6\xf9\xb1\x04\x1a\xf6\xd8\x08\x55\x7d\x6e\x1c\x0a\x91\x1a\x51\xf4\x10\x0c\xbf\xf6\xb0\x9f\xa0\xe8\x5f\x9c\x5f\x0d\x98\x1b\xe7\xe7\xe8\x28\xec\x93\x89\xe2\xac\x2c\xae\xe5\x9c\x69\x8d\xa2\xd7\x00\xb8\x46\x51\xbf\x2d\x6a\xfa\xe5\xcc\xcd\x52\x91\xbf\xe5\x63\x53\xd5\xf4\x89\x0a\x44\x51\xd3\x07\xbe\x51\xaa\x9d\xae\x12\x50\xf4\x23\x0c\x9b\xfa\xda\xc1\xce\x44\xe2\x02\x51\x5e\xeb\x8b\xfa\x9f\x20\x10\x46\xd1\x6b\x00\x73\xa3\xa8\x40\x97\x69\x53\xd1\xfe\x13\x67\x2a\x42\xda\x46\x94\xe9\xab\x89\x22\xc2\xef\xca\x54\x4c\x10\x07\xa3\x38\x15\x61\x6c\x24\xef\xf2\x8d\xa2\x55\x5f\x88\x3d\x78\x01\x6f\xc8\xd2\x88\xb2\x7c\x0e\xf7\x42\x59\xf6\x13\x47\xde\x13\x71\x80\x28\xce\xc5\xb2\x7d\x97\xe9\x0e\x34\xe3\xfc\x58\x17\x84\xa6\xf0\x8c\xa8\x97\x75\xc1\x00\x92\x9e\x11\xf5\xf2\x5d\x34\xf7\x4a\x5c\x21\xea\xf5\x31\xad\x91\x16\xa6\x99\x1f\x2b\x84\x4c\x8d\x80\xa9\x91\x12\x77\x0e\x45\xe5\xf0\x66\xc0\xd6\xc8\x04\xa5\xa3\xea\x25\xac\xc9\x57\x91\x5a\x82\x36\xa2\x66\x5f\xc5\x23\x56\x9d\x8d\xc0\x37\x4e\x1a\x55\xc9\x56\x25\xfb\x2e\x23\xaa\xea\x14\xa8\x37\x5f\xc3\x1a\xeb\xff\x03\xa6\x91\x12\x90\xbe\xa8\x6a\xf8\x90\x35\xf2\x93\x7d\x6c\x99\x64\x6e\xcc\x14\x69\x1b\x01\x6d\xe3\xa4\xf1\x9c\xf3\xbd\x16\xb3\x43\x9f\xab\x9a\xfb\xb5\x98\x1d\x0d\x53\xe9\x07\xae\x91\x89\x90\x47\xd5\x4b\x58\xcf\x12\x9b\x12\x9e\xfa\xa8\x2a\xfd\xf5\x48\x82\x52\xed\x39\x75\x7e\x80\x1b\x59\x99\x2d\x70\x23\x00\x6e\x9c\x37\x7d\xcc\x4e\x07\xa9\x91\x38\x29\x12\xb5\xd9\xc1\x44\x11\x00\x86\x44\x6d\xe6\xd6\xcc\xed\x7c\x7e\xd1\x18\x01\x1a\x23\x3f\x48\x0e\xd1\x18\x51\x91\x1c\x89\xd3\x10\x21\x1b\x23\x60\x63\x9c\x34\x5f\x7d\x4d\x9b\xbc\x4a\x3d\x94\x1c\x15\xfd\x3e\x71\x20\x2f\xea\x63\x3d\x88\x5d\x3e\x8e\x25\x76\x36\x46\x45\x4a\xb8\x72\x88\xc2\x88\x7a\x94\xfc\xfc\x38\x92\x5c\xba\xeb\x30\x33\xe6\x70\xd5\x47\x00\x25\xe3\xa4\x51\x5f\x05\x47\x45\xe3\x4f\xc9\x96\xea\x23\x00\x8a\x51\xc0\xfc\x46\xd5\x8f\x58\x3f\x36\x01\x85\xa1\xea\x33\xac\xce\x61\xce\xa2\x45\xd5\x84\xaf\xd3\x22\xfe\xc1\x86\xf1\xa8\xae\xb6\x95\xd5\xf6\x41\xd9\xa9\xae\xb6\xd5\x69\x9f\x1c\x8f\xd3\xd2\xa6\x5f\x09\x09\x57\x75\xf9\xd5\x70\x1c\x20\xce\x6a\xd8\x3d\x61\x76\x74\xac\xfe\xbd\xea\xc5\x9b\x44\x09\x42\x40\x46\x00\xc8\xc8\x2e\x7b\x02\x32\x02\x40\x46\x76\xd5\x13\x90\x11\x55\x79\x41\x2c\x21\x24\x64\x04\x84\x8c\x93\x46\x45\x94\x17\x75\xdb\xdb\x78\x33\xea\xf6\xd3\x11\x98\x04\x46\x12\xf0\x32\xce\x0f\x75\x63\xfd\xad\xba\x01\x2b\xe8\x50\xaf\x65\x0c\x21\x19\x01\x24\x23\x73\xc8\x33\x84\x64\x44\x53\xa8\x18\x53\x90\x92\x11\x8d\x60\x65\x32\xa6\xd0\x14\x2a\x4d\x01\xc2\x91\x9d\x68\xea\xfe\x80\x30\xf2\x83\x9a\xd8\xd4\xfd\x9b\xf2\x83\x19\xda\x08\x56\x06\x20\x8c\xe4\x7d\x87\x21\x02\x23\x9a\x32\x85\xcd\xb0\x21\x03\x23\x9a\x32\x85\xc3\x11\xd1\x94\x29\x80\x2f\x4e\x1a\x35\x56\x87\x6f\xca\x8f\x87\xc7\x74\x2a\x36\x74\xf8\xc4\x56\xd4\x68\xea\xf0\x0d\x1d\xfe\xb1\xf9\xea\x06\x30\x2f\x52\x62\x67\x68\xb4\xe2\x63\x6c\x6c\x86\x8d\x12\x4d\x37\x20\xa0\x8b\xf3\x18\x4d\x55\x30\x40\xba\x48\xde\xd9\x17\x4d\x45\x1c\xec\x45\x86\xcf\x16\x62\x2f\x02\xec\xc5\x79\x8c\x12\x8c\x28\x80\xbf\x38\x69\x14\xa1\x64\x80\x72\x71\xd2\x68\x97\x2a\x04\x68\x8b\x93\x46\x7e\xe0\x87\xa3\x21\x1a\x06\x06\x57\xd3\x83\x08\xc8\x22\xa5\x8c\x87\xa0\x75\x3f\x04\x31\x47\x0e\xb6\x86\x54\x8b\x68\xdd\xdc\x18\xae\xad\xdb\x9b\xdd\xef\xca\xfc\x6b\x06\x23\x20\x5e\x14\xbd\x1c\x4d\xa9\xd2\xba\x25\x20\xdc\x9b\x5e\x83\xf6\xd0\xe9\x68\x10\x4d\xa7\x22\x30\x8b\x94\x38\x57\x11\x4d\xed\x1f\xb2\x45\x56\xd1\x92\x6c\x11\xed\x31\x37\x07\x9d\xa1\x88\x46\xb0\x32\x65\x6c\x98\xa6\x0c\x69\xc3\xec\x1c\x4d\x3a\x10\xdb\xc7\xee\xf4\x23\xaa\x2f\xc0\xad\x48\xe9\x76\x70\x2a\x30\xda\x67\x99\x46\x07\xbc\x96\x81\x72\xe0\xad\x70\xd1\xf4\x0d\x8a\x9b\xf0\xc2\xb7\x68\xaa\xe9\x0d\x35\x9d\xcd\x25\xd1\x54\x0e\x9a\xb2\x86\x43\x11\xd1\xa6\x9d\x02\x56\xc7\x9b\xdb\x42\x2e\x45\xc8\xa5\x18\xe8\x15\xcd\xf0\x41\x23\x7c\xa0\x6a\xd8\x94\x25\xb0\x28\xb2\x9a\x61\x0b\xdb\xa0\x06\x61\xcc\x42\x0a\x45\x40\xa1\x28\xfa\x87\x9a\xe2\xa5\x29\x5e\x0c\x63\x88\xa1\x08\x30\x14\x27\x8d\xfa\x2e\xbb\x4e\x61\xc2\xf9\x89\x68\x0a\x93\xb6\x7c\xd7\x9a\x6c\x6b\x72\xe4\x47\xd1\x8f\xd4\x74\x38\x36\x2f\xf2\x35\xf4\xd0\xd4\xf9\x1b\x3a\xff\x70\x0c\xab\x8e\x34\xd5\x11\xee\xf5\x89\x6e\xfc\x00\x9a\xc4\x49\x6b\xa4\x55\xd3\xcc\x8e\xc5\xb2\xeb\x34\xe8\x17\x0d\x4b\x3e\xc6\x14\xee\x47\x7e\x14\xe3\x02\x5d\x17\x24\xa4\x88\x94\x6e\xb4\x8c\xae\x19\x20\x36\x02\x90\x77\x88\x8d\x88\xae\x30\x81\xd5\x17\xdd\x90\x25\xac\x88\xe4\x4d\x62\xd1\x15\x26\x5d\x65\x84\xdd\xae\xd1\xf5\x1b\xc0\x81\xc8\xea\xcf\x5d\x17\x64\xbf\xed\x4d\x04\x78\x37\x3e\xd9\x89\x4f\x72\x9e\x39\xba\xfa\x49\x57\xbe\x00\xfa\x0b\xa9\x10\x01\x15\xa2\xe8\x5a\xeb\x86\x27\xbb\xba\x08\x27\x2e\xa2\xeb\x81\x84\xe8\x90\x92\xf1\x9e\xae\x80\x01\xef\x70\xd2\x28\x42\xdb\x03\xcc\x43\x1e\xb6\x4b\x99\xd3\x95\x39\x86\x45\xba\x02\xa6\xa3\x79\xb0\x1d\x27\xc4\x40\x44\xaf\x5f\x25\x9c\x91\xd3\x9b\xb9\x71\x2c\x8b\xfd\x38\xd1\x75\x40\x76\x1c\x90\xa9\x20\x86\xbb\xb2\x04\xf8\x43\xd1\xc7\x27\xf5\x21\xba\xe2\x85\x33\x1c\xd1\x0d\x46\xf4\x9e\x4d\xe3\x39\x65\x09\x60\x87\x94\x8a\xed\xd7\x95\xd0\x71\x25\x40\x99\x89\xae\x6b\x11\xb2\x43\x4a\x9c\xec\x88\xae\x35\xd2\xd1\x33\xc6\xbf\x5e\x29\x99\xf3\xbf\x2d\xe4\xdd\x08\x67\x57\xd2\x70\x79\x4f\x74\x43\x15\x80\x21\x4e\x1a\x85\x29\x56\xa0\x41\xa4\x54\x18\xf3\x5d\xaf\x42\x1f\x16\x46\xab\x35\x5f\xfa\xa0\x9a\x58\x0d\x5d\xf7\x64\x57\x59\xd1\x8b\xdd\x75\x2a\xf4\x8f\xad\xc6\xf7\xd2\x35\x4c\x3a\x81\xc5\xac\x17\xaf\x1b\x45\xec\x4c\xa1\x0c\xac\x38\x9e\x7b\x46\xb8\x3a\xf2\xdf\xec\xbd\xd1\xe7\x4b\x6f\x4f\x10\xed\xf7\x2a\x3f\x7f\xbb\x39\x19\xbe\x17\x8f\x6e\xee\x9a\x4a\xd2\x74\xb7\xbb\xf8\xf6\x72\x68\x82\xb8\xd9\x8b\x40\xd9\xe6\xee\xa7\x24\xe6\x75\x73\xdd\xd3\xf9\xe1\xf6\x65\xee\xcf\xde\xec\x46\xfa\x69\xb3\x8b\xe5\xa4\xe5\x93\xf6\x31\x0d\xf7\xa8\x4f\x11\x39\xdd\xec\xb6\xe0\xd4\xef\xde\xa8\x47\x9b\x9b\x4e\x40\xf3\x6e\x6e\x38\x39\x3f\x1c\xdb\x27\x9f\xf0\x99\x23\xae\x38\x0e\xbb\xdd\x52\xb1\xd9\x46\x91\x38\x2b\xfa\xff\x3e\xe8\xf9\xe3\xd7\xcf\xf7\xff\xf8\xaf\xff\xfe\x7c\xff\x9f\xcf\xaf\xeb\xdb\xfc\xf3\xc7\x8f\xf5\xdb\x1f\xf1\xcb\xfc\xe3\xdb\x7f\x9e\xd4\x6f\xb1\xf6\x2f\xbf\xad\x1f\xeb\x7f\x7f\xff\xf3\xc7\x5c\xdf\xbe\xff\xfe\xfd\xbc\xc5\xbf\xff\x0b\x00\x00\xff\xff\x96\xe6\x36\x40\xee\xcf\x02\x00"); -func _ggff ()([]byte ,error ){return _dc (_efe ,"CNS-EUC-V")};func _bgccc ()(*asset ,error ){_fac ,_dcee :=_gfda ();if _dcee !=nil {return nil ,_dcee ;};_dab :=bindataFileInfo {_ag :"UniJIS2004-UTF8-V",_bc :3961,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492834,0)}; -_gfbgc :=&asset {_cd :_fac ,_dce :_dab };return _gfbgc ,nil ;};var _eggb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x5f\x6b\xe3\x46\x1b\x05\xf0\x7b\x7d\x0a\x5d\xee\x7b\xb1\x6f\xe6\xf9\x33\x9a\x19\x10\x0b\x65\x97\x85\xb0\x6c\x5b\x92\xd2\x5e\x3b\xd2\x38\x18\x1a\xd9\x38\xce\x45\xbe\x7d\x39\xcf\xb1\x53\xe8\x45\x70\x7c\x22\x3d\x12\xbf\x93\xd1\xe8\xee\xeb\xfd\xb7\xfb\xed\x70\x19\xef\x7e\x3f\x1f\x97\xc7\x7e\x19\xf7\x87\x6d\x3d\xf7\xd7\xe3\xdb\x79\xe9\xe3\x53\x7f\x3e\x6c\xc3\x20\x3a\xae\x87\xe5\x72\xfb\x1a\x1f\xcb\xcb\xee\x34\x0c\x38\xff\xf1\xfd\xf5\xd2\x5f\xee\xb7\xfd\x71\x34\x1e\xb7\xbe\x9d\xae\xc7\x8e\xe3\xdd\x43\x7f\x3e\xbc\x5e\xce\xef\xe3\xa7\x5f\xd6\xe3\x53\xff\xdf\xb8\xf6\x3d\xf2\xdf\xce\x6b\x3f\x1f\xb6\xe7\xf1\xd3\x8f\x87\x8f\xf0\xf1\xed\x74\xfa\xbb\xbf\xf4\xed\x32\xb6\xc8\xfa\xb6\xc6\xe7\x70\xf7\xf5\xe7\xee\xf4\xeb\xee\xa5\x8f\x77\x31\xe7\xf3\x8f\x87\xcf\x3c\x24\xfe\xf2\x67\x3f\xbf\x1e\x8e\xdb\x28\xff\x4f\x49\xff\x8d\xff\x78\x3f\xf5\x51\xae\x13\xfe\xfa\x79\x5c\xfb\x98\x6e\xf3\xee\xbf\x7d\x3d\xbe\x6d\x97\x51\xb5\xb6\xc2\x50\x78\xdb\xcb\x71\xed\xaf\xa7\xdd\xd2\xcf\xbb\xed\xb9\x0f\xe3\x38\xa7\x94\xd2\x97\x71\xce\xed\xfb\xf7\x2f\xb8\xa7\xff\x1c\x31\xb4\x74\x3d\xf3\xb0\x32\xb9\x9d\x91\xd2\x7e\xff\x65\x4c\xc3\x9c\x84\xdf\x05\xdf\x35\x4f\xc3\x9c\x94\x89\x22\xc9\xa2\xc3\x9c\x8c\x89\x21\x29\x53\x1d\xe6\xe4\x4c\x1c\x89\x24\xf5\x61\x4e\x99\x51\x8e\x48\x2b\x66\x4f\x8c\xa6\x88\xb2\x61\x78\x61\x54\x22\x2a\x0d\xd3\x2b\xa3\x1a\x77\x90\x1c\xe3\x1b\xa3\x16\x91\x25\x8c\xdf\x31\xda\x5d\xef\x13\xe3\x9f\x18\x3d\x45\x54\x05\xe3\x17\x46\x0b\x22\x4b\x05\xe3\x57\x46\x6b\x44\xa6\x18\xdf\x19\xf5\x88\x72\xc5\xf8\x3d\xa3\x7d\x44\xd5\xd3\x30\x0b\xa5\x24\xa4\x3c\xb5\x69\x98\x85\x58\x12\x58\x6e\x59\x87\x59\xa8\x25\xa1\xe5\x53\xaa\xc3\x2c\xe4\x92\xe0\xf2\x3a\xf9\x30\x0b\xbd\xc4\xaf\xa6\x18\x4f\x2f\x09\xaf\x6c\x05\xe3\xe9\x25\xe1\x95\x27\xc3\x78\x7a\x49\x78\xe5\x5a\x31\x9e\x5e\x12\x5e\x93\x38\xc6\xd3\x4b\xc2\x6b\xf2\x84\xf1\xf4\x92\xf0\x9a\x26\x14\x2b\xf4\x92\xf0\x9a\x1a\x9a\x15\x7a\x49\x78\x15\x41\xb5\x42\x2f\x09\xaf\xe2\xa8\x56\xe8\x25\xfd\xda\x3f\xc6\xd3\x4b\xc2\xab\x34\x54\xab\xf4\xd2\xf0\xaa\x82\x6a\x95\x5e\x1a\x5e\xd5\x51\xad\xd2\x4b\xc3\xab\x16\x54\xab\xf4\xd2\xf0\xaa\x0d\xd5\x2a\xbd\x34\xbc\x9a\xa2\x5a\xa5\x97\x86\x57\x73\x54\xab\xf4\xd2\xf0\x6a\x05\xd5\x2a\xbd\x34\xbc\x5a\x43\xb5\x4a\x2f\xad\xb7\xff\x55\xcc\x27\x98\x36\x66\x8e\x72\x95\x62\xba\x63\x56\xd0\xae\x92\x4c\x83\x0c\xed\xe3\x12\x34\xd3\x85\x99\xa2\x5f\x25\x9a\xae\xcc\x32\x0a\x56\xaa\x69\x67\x56\xd0\xb0\x92\x4d\xf7\x5c\x24\x09\x15\x1b\xdd\x2c\x31\x53\x74\x6c\x84\x33\x61\x96\x51\xb2\x51\xce\xf4\xb6\xc0\xd2\x30\x1b\xe9\x2c\xe8\xc4\x12\x6a\x36\xda\x19\xd7\xa6\x19\x7a\x36\xe2\x19\x17\xa7\x65\x14\x6d\xd4\x33\xae\x4e\xab\x68\xda\xc8\x67\x5c\x9e\x9e\x50\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\xcf\x28\xdb\xe8\x67\xf4\xf3\x8a\xb6\x8d\x7e\x46\xbf\x2c\xa8\xdb\xe8\x67\xcb\xed\xa9\x80\x6b\xd0\xcf\xe8\x97\x27\x14\x6e\xf4\x33\xfa\xe5\x8a\xc6\x8d\x7e\x46\xbf\x49\x50\xb9\xd3\xcf\xe9\x37\x19\x3a\x77\xfa\x39\xfd\xa6\x09\x9d\x3b\xfd\x9c\x7e\x53\x45\xe7\x4e\x3f\xa7\x5f\x11\x74\xee\xf4\x73\xfa\x15\x47\xe7\x4e\x3f\xa7\x5f\x99\xd0\xb9\xd3\xcf\xa7\xdb\xa3\x0c\xd7\xa0\x9f\xd3\xaf\x0a\x3a\x77\xfa\x39\xfd\xaa\xa3\x73\xa7\x9f\xd3\xaf\x4e\xe8\xdc\xe9\xe7\xf4\xab\x0d\x9d\x3b\xfd\x9c\x7e\x4d\xd1\xb9\xd3\xcf\xe9\xd7\x1c\x9d\x3b\xfd\x9c\x7e\xad\xa0\x73\xa7\x9f\xd3\xaf\x35\x74\xee\xf4\xf3\x3d\x9f\xb5\x8a\xce\xf3\x75\x0f\x49\xb7\xe7\x6f\x1a\xe6\x4c\xbf\xcc\x5d\x21\x15\x74\x9e\xe9\x97\x95\x59\x43\xe7\x99\x7e\x39\xfc\x54\x14\x9d\x67\xfa\x65\x67\x96\xd1\x79\xa6\x5f\xce\xcc\x0a\x3a\xcf\xf4\xcb\xe1\xa7\x9a\xd0\x79\xa6\x5f\x2e\xcc\x14\x9d\x67\xfa\x65\xee\x0f\x9a\xd1\x79\x6e\xd7\x7d\xaf\x24\x64\xa5\x7a\xec\x7e\xb7\x5d\x0e\xbf\xe3\x3d\xe0\x63\x6f\x5e\xde\xce\xe7\xbe\x5d\xe2\x2d\x20\x36\x60\xec\xab\x87\xad\x7f\xbc\x51\x9c\x8e\x27\x9c\x15\x3f\xff\x04\x00\x00\xff\xff\x4b\x3b\xc9\x6a\x7d\x08\x00\x00"); -func _gfaee ()([]byte ,error ){return _dc (_gefc ,"HKdla-B5-H")};var _gacbb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x53\x4d\x6b\xdb\x40\x10\xbd\xcf\xaf\x98\x63\x7a\x68\xbd\x1f\x96\x76\x05\x83\xa0\xc4\x04\x5c\x48\x13\xea\xa6\x29\x94\x1e\x64\xed\xc8\x08\xe2\x95\x90\xe4\x83\xff\x7d\x99\xb1\xe3\x42\x0e\x1e\xf9\xed\x7b\x6f\xfd\x66\x34\x5e\xdd\x6f\x37\xdb\xdc\x2f\xb8\x7a\x9e\x86\x76\xc7\x0b\x76\x7d\x4e\x13\xcf\xc3\x69\x6a\x19\xf7\x7c\xe8\x33\x80\x75\x98\xfa\x76\x79\x87\xfa\x68\x8f\xcd\x08\x20\xfe\xdd\x79\x5e\xf8\xb8\xcd\xdd\x80\xfe\xa2\x4b\xa7\xf1\xaa\x45\x5c\xfd\xe0\x43\x3f\x2f\xd3\x19\xef\xbe\xa6\x61\xcf\x9f\x30\x71\x27\xe7\x4f\x53\xe2\xa9\xcf\x07\xbc\xfb\xd6\x8c\x4d\xb6\x37\x62\x77\x1a\xc7\x37\x3e\x72\x5e\xd0\xe8\x19\xe7\xa4\x4f\x58\xdd\x3f\x36\xe3\xf7\xe6\xc8\xb8\x7a\x7d\xfe\xbc\x3b\x1f\xf7\xc3\x9b\x32\x4a\xfc\xe2\x69\xee\x87\x8c\xd6\x7c\x31\xa6\xfc\x7f\xfe\xf3\x3c\x32\xda\xeb\x0d\x2f\xdb\xcd\x53\xd7\xcd\xbc\x60\x2c\xe3\x45\xf3\xfb\x65\xbb\xc1\x3f\x16\xad\x41\x57\xf8\xc2\xfd\xbd\x4a\x5f\x1f\x87\xc4\xd7\x08\x60\x2f\x0d\xb5\x43\xe2\x79\x6c\x5a\x9e\x9a\x7c\x60\x40\x24\x63\x6a\xa4\x87\x87\x5a\x52\x7e\x60\xc1\x85\xab\xab\x4f\x97\x13\x32\xb6\x46\x2d\xd1\x14\x25\x90\x71\x02\x9d\xc2\x08\x64\xbc\x40\x5f\x63\xb4\x95\x05\x32\x6b\x81\x6b\x85\x22\x2e\x6a\x24\x1b\x45\x5c\x5a\x20\x5b\xd5\x48\x4e\xbd\x95\x03\x72\xe2\x75\xea\x8d\x25\x90\x13\xaf\x2b\x84\x75\x06\xc8\x95\x02\x4b\x65\x03\x90\x0b\x02\xf5\x2a\x27\x5e\xbd\xaa\x52\x36\x02\xb9\x46\x60\x23\xac\x17\xf1\x5e\x60\x52\xf1\x1a\xc8\xb1\xc0\x4e\xc5\x15\x90\x97\xfe\xbd\xd5\x90\x0e\xc8\x4b\x47\xde\xd7\x18\x62\x25\xac\xc4\x90\x12\x62\xb5\x06\xf2\xd2\x82\x94\x68\x15\x4a\x2a\x29\xd1\xf8\x02\xc8\x4b\x2a\x5f\xe9\x0f\x05\x20\x2f\x31\xa4\x44\x5b\x09\x2b\x31\x0a\x9d\x86\x75\x40\x85\x5c\x55\x24\x65\x03\x50\x21\xa9\xa4\x44\x5b\x58\xa0\x52\xe6\x1c\x24\x95\x33\x25\x50\x90\x54\xe1\x32\xe7\x00\x14\x64\x56\x21\x08\xeb\xbc\xbe\xb8\xf7\x17\x24\xdf\x65\xb1\x6f\x8b\xd6\x9e\xa6\x89\xf3\xa2\x6b\xad\xdb\x24\xeb\xd0\x67\xbe\xfd\x45\xc6\x61\x14\x97\x7e\xfe\x05\x00\x00\xff\xff\x81\xaf\xf4\x15\x4e\x03\x00\x00"); -func _bcf ()(*asset ,error ){_gad ,_bdc :=_fed ();if _bdc !=nil {return nil ,_bdc ;};_bbd :=bindataFileInfo {_ag :"78-V",_bc :892,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490959,0)};_ea :=&asset {_cd :_gad ,_dce :_bbd };return _ea ,nil ;};var _bcd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x5d\xab\x65\x37\x72\xfe\xef\xcf\xa7\xd8\x97\xf3\xbf\x98\xbf\x97\x5e\x4b\x82\xc3\x01\x33\x63\x13\x07\x26\x09\x71\x26\x09\x84\x5c\xac\x25\xd5\x32\x0d\xf1\xe9\xa6\xdd\xbe\xf0\xb7\x0f\xf5\x7b\xf6\x38\x99\x21\xe0\x0b\xf3\xb8\x9f\x2e\x69\x95\x4a\xa5\x7a\x91\x76\x7f\xf5\x87\xef\xfe\xf8\xdd\xfb\x87\x2f\x8f\xaf\xfe\xe9\xf3\xc7\xf5\xbd\x7f\x79\xdc\x1f\xde\xf7\x67\xff\xe9\xe3\xcf\x9f\x97\x3f\x2e\xff\xe1\xc3\xfb\xcb\x4b\xca\x8f\xfd\x61\x7d\xf9\xcb\x1f\x81\xf5\xe3\xf9\xe9\xe5\x25\xc6\x7f\xff\xcb\x4f\x5f\xfc\xc7\xef\xde\xef\x8f\x8f\x22\xb9\xfd\xf3\xa7\xa7\xec\xe3\xf1\xd5\x3f\xfb\x0f\x1f\x7e\xfa\xf2\xf9\x97\xc7\xef\xbe\xde\x1f\x2f\xff\x7f\x8f\xed\x77\xf0\xff\xf8\x79\xfb\xe7\x0f\xef\x3f\x3c\x7e\xf7\xf7\xe7\xa7\xf3\x3d\xfd\xfa\x17\xdf\xff\xfc\xe9\xd3\x7f\xf9\x8f\xfe\xfe\xe5\x71\xc0\xf9\xfb\x06\x5f\xbe\xfa\xc3\x9f\xce\x4f\xff\x70\xfe\xe8\x8f\xaf\x6c\xfc\xfe\x9b\x3f\xff\xe1\xf7\x7f\xc7\x5f\xc0\xff\xab\x7f\xfe\xe9\xc3\xc7\xf7\x47\x3a\xfe\xff\x71\xf4\xff\xe1\xff\xe5\x97\x4f\xfe\x48\xcf\x09\xfe\xfd\xcf\xdf\xfd\xf1\xf1\x1f\xe9\x91\x8e\x47\x6e\xa5\xda\x7f\x3e\xf9\x7f\xfb\xd3\xc7\xed\xcf\xcf\xbd\x14\x29\xbf\x3e\x6e\xff\xe9\xd3\xb9\xfc\xf3\xf9\xfe\x83\xbf\x3c\x1e\xaf\xc7\xf1\xf6\x78\x3c\x5e\xc7\xf1\x16\x7f\x1a\xdf\x7c\x7d\xbc\x05\xfc\xf1\x5b\xfe\xfc\x75\xfa\x3a\xbd\x3d\x5e\xbf\xfd\xe6\xdb\x6f\xde\x42\xe7\xbf\x19\xff\x92\x34\xed\xfb\xc7\x2f\xdb\x6f\x71\xcc\xf8\x9a\xee\xb7\x47\x2e\x29\xc6\xfc\xef\xbf\x7c\x49\xc7\xf1\xd4\xe4\xc3\x7e\xca\xe7\x90\x37\x97\xfc\xeb\xf0\x13\x0d\x7c\xdf\x6f\x8f\x92\xfb\xcb\xeb\x99\xce\xd0\xe1\x4c\xb7\xbf\x3d\x7a\x29\x2f\xaf\x67\x16\x93\x4f\x7f\x7b\x58\xb6\x97\xd7\xb3\x5c\x31\xea\x2c\xd7\x7c\x7b\xd8\x38\x82\x59\xc8\x94\x7d\xbe\x3d\x6c\xc2\xb8\x98\xfb\x7c\x7b\x8c\x14\x33\x57\xcd\x53\xef\xf2\xf6\x18\x35\xbf\xbc\x9e\x4d\x4c\xbb\xfb\xdb\x63\xe6\xf6\xf2\x7a\x76\x31\xfd\x1a\x6f\x8f\x74\xa4\x14\x94\xa6\xee\x1b\xaa\x84\x94\x49\xca\xe2\x6f\xd2\xd1\x66\x50\x5b\xd4\x0d\x35\xf3\xcb\xeb\x75\x20\x25\x48\x29\xa6\xbf\x8e\x33\x8b\xca\x6f\x0f\x63\x75\xd7\x71\x16\x51\x03\x29\x83\x9a\xa2\xe6\xdb\x63\xe4\xde\xa1\x4e\xa8\x8b\xb9\x4a\x0d\xea\xd2\x5c\x01\x36\x7b\x82\xd2\x5c\x01\x56\xca\x01\x55\x45\x9d\x31\xb0\x6a\xe0\x25\xea\x42\x09\x51\x0b\xca\x77\x48\x35\xb4\x77\x17\xe5\x48\xa1\xbd\xdf\x50\x77\x7e\x7b\xa4\x7c\xa0\xfd\xad\x2f\x06\x58\x2f\xa8\x7a\xeb\x8b\xf7\x85\xd4\x80\xd2\xf4\x01\xd6\x0b\x6b\xbc\xb7\x28\x0f\xa9\x14\x94\x76\xfe\x4a\xb1\xec\x94\xd3\x84\x3a\x45\x9d\x0c\x1c\x50\x68\x9f\x62\x5d\x29\x67\xa4\xae\x26\xaa\x21\x25\xaa\x8b\x0a\xab\xe6\x7a\x40\x4d\x51\xe1\x34\xfd\x49\x69\xfa\x58\x7d\xca\x18\x27\x5d\x5b\xd4\x46\x2a\x43\x61\x89\xc4\x6e\xe7\x8a\x12\x2b\x8b\x62\x1f\x6b\x81\xc2\x12\xc9\xc3\xd0\xb9\x41\xb9\x54\x75\x0c\xad\xe9\x1d\x4b\x24\x2d\x7b\x06\x25\xf7\xbe\xf2\x69\x6f\x8f\x54\x52\x81\x1a\xa2\x06\x03\x1b\xd4\x14\x15\xda\x97\x3e\xa1\x4e\x51\x18\xa7\x76\x28\xbe\x98\xe3\x38\xa5\x92\x99\xcb\x0f\xa8\x00\xeb\xd5\xa0\xf4\xc5\x3b\x0c\x5d\x0c\xea\xd6\x5c\xb7\xe6\x1a\x50\x9a\x2b\x36\x2d\x55\x76\x3b\x6b\xd3\x00\xeb\x15\x25\x6e\x17\xe5\x48\x85\x12\x45\x0b\x02\x52\x3d\x0c\x2a\x8b\xc2\x5e\xed\x80\xc2\x5e\x1c\xdc\x54\x8f\x98\xab\xc8\xaa\x40\xaf\x93\x81\xeb\x29\x15\xfb\x58\x6b\x82\x9a\xa2\xe6\xdb\xa3\x1d\xac\xb1\x2c\xb4\x2f\x5e\x91\x0a\xed\x8b\x37\x51\xf8\x44\x63\xa0\x77\x51\xb1\x43\xd5\x50\x55\x3b\x54\xb4\x43\xf8\x7d\xd1\x0e\x15\x9c\xbc\x0e\x28\x39\x79\x91\x93\xb3\xb5\x45\x4e\x5e\xee\x16\x52\x93\x05\xdd\x9a\x3e\xa0\x4d\x9c\xbc\xdc\x26\x6a\x22\xa5\x81\x52\x55\x86\x6e\x15\x4a\x4a\xc8\x84\x2c\x5b\xa1\xea\xaa\x18\xa7\x1d\xa1\x7d\x95\x71\xaa\x5c\xae\x35\xa8\x22\xaa\xbc\x3d\x9a\x94\xa8\xab\x8a\x8a\x4d\x6b\x9c\xc7\xba\xb6\x28\x36\xad\x89\x62\xd3\xea\x66\x7a\x3c\xa7\x6e\x4d\x1f\xd0\xfb\x18\x50\x9a\x1e\xab\x36\x4c\x58\x65\xd5\xfa\xb4\x2a\xaa\xca\xaa\x15\xed\x9b\x85\x12\x0a\xab\x57\x0b\xc7\x4c\x6d\x36\xa8\x4b\x94\x0c\x3d\xa0\x30\x74\xbb\xc2\x57\x3b\x9e\xd3\x16\xbe\x0a\x58\x8f\xb8\x7a\xb5\xa5\xb9\x98\xbe\x13\x1e\x15\xa3\x05\xa9\x8f\x09\x95\x45\x61\x9c\x7e\x40\x15\x51\x61\xfb\x3e\x13\xd4\x29\x0a\xdb\x77\x51\xe8\xd5\x57\x43\x8a\xb9\x56\x17\xd5\xdf\x1e\x56\xad\x42\x99\xa8\x50\xc2\xa4\xc4\xba\x45\xdd\xcc\x15\x6e\xd2\x37\xda\xf7\x70\xa0\x64\xd8\xbe\xfb\x16\x85\xed\x7b\x81\xc2\xf6\x3d\x9c\x29\x19\xc1\xbd\xcb\x99\x00\xeb\x9d\x2f\xde\x4d\x54\x98\xd0\x8c\x81\x72\x13\xc0\x7a\x6f\x50\x4b\x14\x5f\x1c\x07\x49\xfb\x2f\xa9\xf6\xff\xca\xbe\x57\xd7\x09\xee\x3a\xc1\xcf\xaf\x3f\x15\x62\x71\x38\xbc\xf2\xdb\x65\x27\x3a\x8e\x02\x55\x45\x49\x47\x83\x42\x47\x8b\x50\x9b\x6c\x40\x5d\x26\xca\x90\x1a\x50\xc4\x32\x0b\xc7\x4c\x83\x6d\xb6\xa5\x81\x0b\x2f\x22\x96\x99\x8c\x6e\xe1\xa4\x69\xe4\x03\xca\x45\x91\x80\x4c\x14\x46\x27\xd7\xa6\x41\xec\x37\xf9\x2d\x60\xdd\x12\x54\x11\xc5\x17\x49\xb2\xb6\xf5\xc5\xcd\x17\x8d\x35\x6e\x7d\x31\x2a\x86\x34\xd8\x2d\xdb\x97\xa8\xb0\x70\x1a\x9a\x0b\x0b\x9b\x87\x25\x28\x1a\x2e\x73\x59\xc2\xb1\x04\x5b\x63\x3a\x16\x76\x1f\x21\xc5\x49\xa1\x10\x78\x82\x75\xbc\xc8\x6e\xa9\x7a\x47\x2c\x1b\x5d\xd4\x14\x45\x4e\xb2\x06\x75\x8a\xc2\x12\x52\x55\x3b\x04\x58\x27\x70\x0d\xed\xd0\xb8\xd0\x8b\x10\x3e\x94\xe9\x01\xeb\x4f\x0a\xbd\xc6\x42\x2f\x22\xcb\xd0\x79\x02\xac\xdb\x80\x42\xaf\x81\x03\xcc\x14\x86\x9e\x9a\x7e\x72\x82\x27\x56\x9d\x3a\x29\x53\x27\xd8\x26\x14\xc6\x99\x38\xc0\xc4\x73\xa6\x1c\x60\xca\x01\x06\x73\xc9\x01\x26\xb1\x6c\x92\xf2\xa6\xbe\x38\x15\xcb\x30\xf4\x54\x2c\x9b\x61\xfb\x7c\x1c\x61\x89\x29\xdb\x03\x6d\x10\x76\xe7\xc6\x7d\x67\x1c\xb1\x7c\x14\x06\xfa\x93\xc2\xa3\xa5\x84\x8e\xd8\x8c\x23\x96\x0f\xd2\xc1\xd4\x11\x9b\x3a\x62\x78\xf4\xd4\x11\x9b\xb1\x1d\xf9\x20\xa0\x4e\x6d\xc7\xd4\x76\x0c\x54\xd5\x76\xcc\x30\x4e\x3e\x88\x2c\xa7\x8c\x73\x86\xcb\xe5\x83\x83\x78\xca\xe5\x00\xeb\x43\x14\x5f\x3c\x23\x3c\xe6\x14\x05\xe8\x75\xba\x89\x92\x71\x44\x61\x9c\x13\x55\x13\x5e\x78\x4a\xd5\xf3\xa9\xaa\x41\x35\x51\xa1\x44\x22\xef\x5e\x52\xe2\x3a\x99\xbe\x89\x32\x51\x9a\x7e\x40\x0d\x51\x33\xa4\x38\xee\x97\x82\xe0\xa5\x20\x38\x34\xf0\x12\x75\x21\x25\x6a\x89\xa2\x62\x23\xb5\x5c\x27\x86\xbe\x62\x3b\x73\xc2\x27\x2e\x95\x54\x97\x4a\xaa\x29\x4a\xd3\x4b\x55\x4c\xb8\xa4\xea\x8a\x20\x9a\x55\x19\xad\x35\x44\x51\xe0\x4c\x51\x53\xd4\x8c\xe4\x4f\xa6\x5f\x4a\xeb\x2b\x4e\x6a\x56\xb1\xb4\xb6\x89\x62\x8d\x4f\x4a\x73\x85\x9b\xe4\x42\xbd\xb9\xe4\x26\x6b\x73\x60\x48\x40\x6b\x13\x3a\xd6\xad\xd6\x23\xa8\x2d\xbd\x76\x58\x22\x17\x2a\xa3\x2d\x4b\x6c\x39\xf9\x14\x85\x25\x76\x1c\xa5\x5c\xc8\x5c\x5b\xc5\x25\x60\x7d\x8a\x42\xaf\x1d\x85\x44\x56\x79\xb6\x55\x48\x6c\x39\xe6\x14\x85\x63\xee\x08\x0a\xb9\xe6\xd0\x7e\x2b\x28\x6c\x6a\x0b\x23\xd3\x6f\x39\xc0\x46\xd5\x4a\x15\xef\x52\xd5\x23\xfa\x66\x19\xc7\x15\x7d\x01\x33\xca\x33\x3f\xd1\xcb\xa3\x23\xc8\x95\xb4\xee\xea\x08\x00\xb3\xa3\x42\x55\x51\x4c\x8f\x47\xfb\x75\x8b\xba\x91\x0a\xe3\xb8\x52\xb1\x6f\xbe\x48\x18\x72\x05\x51\xc0\x8c\x48\xee\x0a\xa2\xbe\x99\x8b\xed\x70\x19\x1a\x30\xa3\xfa\x73\x95\xa0\x1e\x41\x34\x37\x29\xa1\x20\x0a\x98\xb1\x69\xae\x20\xea\x2c\xbb\x51\x10\xde\x5a\xf6\x8d\xfb\x36\x7a\x90\x5b\xee\x0b\x98\x3d\xa5\xd8\xb4\x3b\xfc\x20\x37\xaa\xe5\x7b\x4f\x51\xe1\x98\x46\x48\xbb\xb7\x06\x86\x5e\xb9\xd1\xa0\xdd\xd2\x0b\x30\x8b\x66\xef\xba\x55\x1a\xdf\xce\x5c\x6c\xda\xed\x9a\xcb\x35\x97\x06\x6a\x2e\x54\xed\xa1\xfd\x52\xb3\x27\xc8\x3d\xcf\xdf\x4c\xc5\x4b\xbd\xa0\xc0\x2c\xea\xfe\xa5\x5e\x70\x1d\x8b\x49\x22\xbc\xad\x63\x49\x6a\x49\xaa\x42\x49\x2a\xec\x95\x29\x2a\xd6\x41\x11\x26\x30\x0b\xef\x5e\x07\xc1\x66\x1d\x91\x93\x32\xee\xb7\x8e\x5b\x3a\xde\x9a\xab\x43\x69\x2e\x82\x20\x26\x58\x07\x41\x70\x1d\x54\xa8\x96\x58\x1c\xa5\xc7\xa2\x59\xcb\x16\x9d\xd9\x52\xb3\xb6\x12\xf1\xc7\xa2\x0a\x5f\x89\xf8\x23\x30\x8b\x1c\xbe\x12\xf1\x47\xd0\x29\x76\x16\xed\xdd\xeb\xa2\x33\xcb\xc6\x1a\xd5\x99\x09\xcc\xb2\xa8\x13\x6a\xc5\x79\xb2\x08\xe1\x2b\x45\x4d\xfb\x04\xb3\x9c\xa1\xb6\x28\xf4\x8a\xa2\x64\x25\x4a\x04\x81\x3d\xf5\xa2\x2e\x5b\x09\x27\x35\x43\xaf\x2d\x29\x39\x69\x1c\xc4\x95\x5c\x52\xec\xbc\x0d\x54\x75\xe9\xa5\x9d\x8f\x06\x7e\xd1\xde\xbd\xae\x24\x4b\xcc\x90\x52\xff\xb6\x72\x34\x91\x79\x44\x27\xbb\x32\x4d\xa4\xc0\x2c\x23\x45\x13\xb9\xf2\x42\xaa\x42\x49\x7b\xc0\xa8\x2a\x57\x5e\x92\x22\x0b\x8e\xa8\x2a\x57\x26\x0b\x0a\xcc\xf2\x80\xd2\x40\x8f\x73\x4e\xf2\x5f\xd9\x8b\x28\xce\x79\x54\x46\x2b\x73\xc4\x56\x8e\x98\x93\x47\x44\xe2\x95\x69\xe0\x05\x66\x11\x59\x56\xbe\x59\x76\x8e\x98\x93\x87\x16\x44\xb6\x59\xf9\xc6\x99\xd8\xa1\x4c\x23\xb3\xe8\x05\xf3\x8c\x60\xb3\xd4\x0b\x0a\xcc\x8a\x28\x69\x8f\x71\x28\x24\x96\x7a\xc1\x55\x70\x93\x89\x7f\x15\xb9\x49\x91\x9b\x94\x0a\x35\x44\x0d\xa4\x06\xd4\x14\x85\x17\xc6\xd1\x5f\x85\x73\xbe\xca\x89\x12\x59\x73\x6d\x51\x8e\x94\x41\xb1\xc6\x72\x49\x8a\x81\xda\x8e\xa2\xed\x28\x13\x0a\x55\x4b\x58\x22\xcf\x8a\xaa\xb2\x04\x60\xf6\xa4\xa4\x3d\xc6\x99\x93\x2f\xca\x38\x80\x59\x15\xd5\x45\x5d\x48\x75\xa8\x25\x8a\x4d\x8b\xb2\x71\x15\xd9\x8b\x2e\xaf\x1c\x98\x50\x5d\xde\xaa\xa1\x6a\xa1\xe6\x59\x55\xaa\x56\xa9\x5a\x91\x92\xaa\x35\xd2\x67\x39\xb0\x57\x25\x7d\x0a\xcc\xaa\xa8\x29\x6a\x86\x54\x65\x2e\xd2\xa7\xc0\xec\x49\x5d\xa2\xf8\x62\xa4\xbc\xa5\xf6\x50\x60\x86\x63\xaa\x3d\x14\x94\x23\xba\xf5\x55\x75\xac\xaa\x8e\x95\x06\xea\x58\xd1\x25\x96\x23\x7a\xe7\x55\xa9\x79\x04\x23\x77\x49\x35\x51\x27\x52\xa2\xa4\x44\x40\x6d\x78\x4e\x95\x93\x57\x19\x27\x4a\xe3\xa5\x26\x52\x50\x0e\xe2\x57\x53\xc4\x6c\x8a\x98\x04\x85\xa6\x88\xd9\xc2\xbf\x4a\x8a\xf4\xb9\x9a\xfc\xab\xc9\xbf\xaa\x06\x0e\x51\x1b\xa9\x0e\xe5\xa2\xf0\x1c\xd6\xd8\xe4\x39\x2d\x32\x7d\x49\x04\xe4\x46\xa6\x17\x98\x35\xa6\xbf\x34\x7d\xec\x4a\x49\x59\xd4\x73\x20\xc6\xc1\x12\xea\x64\x57\x63\xd3\x12\x27\xad\x69\xd3\x9a\x36\xad\x31\xbd\x36\xad\xc5\x0e\x95\x84\x63\x36\xed\x10\x60\xd6\xb0\x84\x02\x5f\x0b\x7b\x97\x84\x33\xb5\x2d\xe3\xd0\xf5\x58\xd4\xae\xab\x6d\x59\x62\x63\x09\x2d\x7b\x4b\xd5\x80\x36\x9e\x52\x52\x22\xe2\x44\x49\x9a\x5e\x71\xa2\x29\x15\xb3\x43\x8d\x54\xbc\x9a\x63\xaf\x2e\x4a\xf6\x0a\x68\xf9\x60\x41\x8a\x26\x2d\xd2\x49\x49\x84\xa1\xa6\x74\x02\xb4\xaa\x65\xdf\x9a\xfe\xc6\x12\x03\xed\x6f\x29\x71\xcb\x12\xec\xa3\x92\x0e\x6d\x7e\x49\x51\xf4\x2e\xb5\xf9\xab\x5f\x28\x11\x35\xe2\xea\x3a\x0a\x80\x59\x14\xbd\xab\xcb\xf6\x5c\xd2\x96\x4c\xbc\xef\x4a\x99\x5d\x29\xb3\xff\x76\x57\xbc\xba\x32\x6a\xc7\x95\x33\x91\xb8\xcb\x95\xbb\x8a\x9d\x9e\xa0\xba\xa8\xd8\xad\xcc\x49\xe9\x72\xe5\xae\xe0\x4c\x2a\xee\x0a\xce\x3d\xd2\x49\xa1\xda\x5d\xdd\xb5\x92\x00\xb3\x68\x18\x56\x77\xe9\x18\x86\x2e\x19\x13\x74\xe5\xf0\x4e\x77\xa0\x5c\xd9\xe9\x0e\x56\x8f\x04\x54\x32\xc7\xa2\x2b\x01\x01\x66\x5d\x03\xa5\xc4\xcd\x5c\xec\x56\x57\x48\x02\xfa\x90\xed\x14\xc2\x69\xf3\x4b\x8e\xfe\x6d\xa9\xcd\x5f\x16\xa7\xa3\x64\x8c\x6e\x0a\xbb\x80\x59\x97\x14\x5f\xa4\x8f\x2f\x99\xf0\x66\x4a\xd8\xa6\x84\x4d\x46\x35\x25\x6c\xba\xea\x52\xa2\x4a\x5a\x26\xf7\x03\xcc\xa2\x61\x58\x26\xf7\x33\x47\x0a\x57\x36\xd5\x29\xa6\x65\x9b\xa8\xa7\x54\x54\x0d\x8d\xa8\x6e\x4a\xc5\xa6\x54\x1c\x4d\xf7\x32\x59\xc2\xa2\xcc\x2e\xa5\xa3\x04\xbd\xa0\xc0\x2c\x9a\xee\x65\xf2\x5b\x7a\xe7\x52\x30\xa1\x7a\xe7\x35\x22\x74\x94\x12\xdd\xe7\x1a\xdc\x6e\x08\xcc\xa2\x0f\x5f\x83\xfa\x7a\x0d\x62\x46\x19\xa2\x5c\x14\xee\x17\x7d\xf8\x1a\x8a\x19\x40\x29\x13\x29\x1e\x27\x04\x66\x1c\x8b\x71\xe9\x8b\xf8\x57\x99\x50\xf2\x2f\xc0\x2c\xfa\xf0\x35\x14\x2a\x47\xb8\x49\xa9\xc4\xc5\x21\x37\x01\xcc\xd8\xb4\xa1\x4c\x3f\xe2\x58\x95\x4a\x24\x1e\xca\x49\x43\x39\x29\x9a\xee\x35\xe4\x00\xf4\xf4\xa5\xe2\x4c\xea\xe9\x05\xa5\xb2\xc6\xa9\x80\x3a\x4f\xaa\x06\x2c\x31\x65\x89\x79\x32\x10\xbd\xa6\xd6\x08\x18\xb7\x41\x6b\x6a\x8d\x40\x4b\xe8\x35\xb5\x46\xa0\x54\x72\xe5\xbc\x34\x3d\x2f\x14\x46\x05\x32\xe9\x47\xd6\xbc\xd0\x7e\x6a\xae\x26\x4a\xda\xa3\x97\xc2\xee\x8c\xb3\x5d\x2a\x2e\x37\x15\x50\x01\x53\x79\xc6\x8d\x42\x40\xec\x50\x8b\x4e\x63\x4d\x65\x2e\xc0\xb8\x92\x5a\x53\x99\x6b\x12\x3d\x1b\xf1\x7a\x2a\x7a\x02\x66\x83\x35\x6e\xa9\x8a\xbd\x1a\x05\xa1\xda\xfc\x75\x46\x18\x29\x8d\xa3\x70\x2a\x4e\x00\x66\x43\x54\x15\x15\x5e\xd8\x0f\x06\x2a\xa3\x9e\xca\xa8\xd1\x3b\xaf\x53\x7a\x9d\xd1\x8f\x94\x4e\x15\x7f\xd2\x8f\x08\xcc\xb0\xd7\xa9\x68\x72\x46\x5c\x2c\xdc\x75\xae\x53\x71\x11\x30\x8b\xae\x65\x9d\xb7\x06\xa2\x2a\x57\xa9\x4b\x97\x01\x82\xa2\x8e\xe0\xd2\xd6\x5e\xca\x95\x53\x54\x11\xc5\xf4\x84\xa1\x4b\xc7\xfd\xd2\x71\x8f\xfe\x6d\xe9\x7e\x60\x5d\xe4\x24\xae\xca\xd6\xa5\x9c\x74\x29\x27\xe1\xe4\x97\x72\xd2\x45\x64\xa2\x17\x5c\x97\xce\x23\x60\xf2\xaf\x4b\x91\xe9\x8a\x44\x51\x54\x9e\x5d\xaa\xb2\x2e\x55\x59\x6c\xed\xa5\x2a\xeb\x22\x43\xa8\xe6\xb9\x94\x21\x00\x9b\x78\xf4\x25\x4b\x00\x35\x3d\xa5\xf4\x45\x2c\xa1\xbc\xab\xbb\x86\xb5\xd8\x0e\x25\xb3\xa5\xed\x58\xcf\xed\x10\xc5\x76\x70\x73\x50\xc6\xc1\x40\x3a\x46\x81\x59\xf4\xf4\x6b\x69\x87\xb8\x45\x28\x83\x4d\xd3\x2d\x82\xc0\x8c\xa2\x64\xa9\x6f\x58\x9c\x5a\x6e\x2e\xd7\xd2\xa9\x05\x6c\x1c\xa2\xb0\xfd\x62\x6b\x07\x69\x6a\x69\x41\x40\xaf\x4d\x94\xbe\x48\xeb\x35\xa8\x66\x96\x5a\x2f\xa0\x0c\x8e\xfb\x52\x71\x09\xd8\x53\x7b\x15\x97\x40\x19\x24\xff\xa5\x62\x1c\xb0\x41\xbd\xa9\x0b\x8f\xb5\x39\xa2\x5c\x53\xae\xad\x23\x0a\xd8\xc0\x7d\xb7\x8e\xe8\x8e\x73\x53\x06\x7e\xbf\x55\xea\x01\x36\x28\x54\xb7\xce\xd0\x26\xa4\x8d\x29\xa9\x2a\xaa\x22\xd5\xa1\x9a\xa8\x70\x93\xe8\x1b\x7e\x33\x15\x6f\x19\x1d\x30\x1e\x69\xd6\xd6\xb1\xd8\x91\x0e\xca\x3c\xf8\x94\xd2\x01\x60\x83\xa3\xbf\xe5\x7e\xdc\x9a\x94\xc9\x09\xd6\xad\xc9\x72\x5c\x79\x52\x00\xbb\x5c\x19\xb0\x41\xe7\xee\x72\x65\xbf\xd1\x91\x68\xe0\xda\x07\xbf\x25\x35\xa1\x9e\x52\xfe\xf6\xa8\x47\x09\xbd\x74\x3b\x21\xb0\x41\x6f\x73\xeb\xd4\xdd\x11\x17\xeb\x41\x0f\x71\x2b\x2e\x02\x36\x48\x8c\xf7\xf5\x94\x6a\x21\xd5\x98\x4b\x11\x0f\xe8\x07\x0b\xba\x55\x68\xde\x91\x77\xeb\x41\x05\x72\x2b\xef\xde\x7a\xf7\xa6\x42\xbd\x95\x77\xef\xd8\x87\x4a\xe5\xbc\x75\x15\xb1\x8f\xcd\xf4\x11\x7f\xf6\x41\xe9\x22\x28\xd4\xb1\xfb\x20\x3b\x6f\x7a\xfa\xca\xc3\xf0\x56\x4f\xbf\x79\x0e\xad\xdc\xdd\x6d\x3d\x87\x0a\x8c\x33\xb0\xf5\x1c\xba\xd3\xea\x6f\x8f\x9a\x43\x89\x9d\x78\x1f\x11\xd8\x48\x0d\x6a\x88\x3a\x43\x2a\x4b\xea\x12\x85\x55\x53\x87\x5a\xa2\x16\x52\x06\xa5\x2f\x2e\x7d\x51\x94\xbe\x88\xaa\x3c\xf9\x6e\x35\xdd\x3b\x8b\x8a\x34\xb5\xd5\x6a\x6e\xfa\xbf\x5a\x22\x70\x6d\xfd\x4e\x40\x60\x23\x21\x75\x49\x2a\x4c\x58\xcb\x10\x75\x8a\xe2\xd4\xa5\x09\x85\xaa\x25\x6a\xb9\x5a\x26\x52\xdb\x45\x71\x9e\x22\x8f\xec\x42\x34\xd8\x3c\x28\xd6\x1a\x9d\xd9\xd6\x83\xa2\xc0\x46\x46\x09\xee\x01\x37\x8d\x5f\x25\x61\x6f\x35\x7e\x9b\x87\xbb\x4a\x76\xde\x7a\xb8\x13\x18\x01\x62\x57\x9e\x49\x76\x8d\xd0\x51\x5b\x9c\xf3\xcd\x5b\xdc\x13\xca\xd1\x91\x72\x49\x31\x7d\x43\x09\xb5\x4e\xbb\xb1\x8f\x2d\x2a\xa3\xdd\xb4\x8f\x4d\xfb\x98\x91\xd2\x3e\xb6\x88\x52\xb5\x45\x32\xdb\xb4\x05\x4f\xb0\x11\xbd\xf3\x56\x77\xb0\x29\xcc\x2b\x39\x69\xab\x30\x17\x54\x9e\x30\xb7\xde\xdf\x04\x36\x72\x87\x62\xae\xae\x81\xe1\xe4\x5b\xf5\xe6\xa6\x16\xab\xf4\x6f\x5b\xb5\xd8\xa6\x16\xab\xbc\xaf\x6c\xd5\x62\x02\x1b\x59\x52\xac\x91\x6a\xa6\x72\x79\xb2\x55\xcd\xec\x19\x5b\x50\x67\x81\x22\x12\x0b\x8c\xd7\xa1\x3d\x5d\x52\xb1\x1d\xed\x88\x48\xbc\xa7\xb6\x03\xb0\x51\x44\x61\x9c\x19\x09\xa8\x1d\x71\x44\x37\xaf\x02\x4f\x48\xda\x34\x3d\x0e\x6c\x4a\x84\x76\x60\x42\x95\x08\xfb\x8c\x23\xda\x0e\xe6\x3a\x39\xa2\x02\x1b\x25\x41\xe1\x5f\x94\x08\x8d\x87\x86\xad\x12\x41\x60\xa3\x64\x28\xb6\xe3\xd4\xf4\x91\x3e\xb7\xd2\xfa\xbe\xc2\x27\x5a\xe2\x8b\x97\x7c\x02\x30\xde\xb6\xf6\xc5\xd3\xd9\xbe\x78\x0f\x4f\x11\x27\x36\xc9\xfb\x09\x36\x8a\x06\xe2\x98\x17\xbd\x20\x2f\x01\xfb\xa2\x18\x17\x14\x9e\x8f\xf7\x45\x16\xdc\xe4\xf0\x96\x06\x94\x3c\xfa\x92\x47\x17\xf4\x92\x09\x81\x96\x22\xf6\xef\x4b\x26\xbc\xd4\x31\x1a\xd3\x53\x79\xef\x8b\x5e\x30\x1f\xe8\x45\x2f\x28\x30\xde\xdc\xf6\x75\x6b\x41\xb7\xfa\xca\xd8\x6d\xe5\xf0\xbd\x44\x71\x6a\x95\xb9\x36\xc1\xbd\xd1\x5d\x6c\x05\xf7\xed\xd8\x9e\x1f\x1e\x6c\x97\xed\x81\xc2\xfb\xdd\x76\xd9\xde\x23\x99\xb5\xca\x76\x38\xc9\x4c\x60\x23\x8a\x92\xed\x5b\x73\x85\x5e\xad\xe2\xd1\x2e\xbd\x80\xc4\xd5\xf3\x76\x6a\xea\x4d\x0a\x68\x54\xb8\x5b\x29\x60\x73\x11\xdc\x5a\xf8\x97\x2b\xfa\xfa\x11\x2e\xdb\x5a\x94\x54\x7e\x70\x2f\x2f\xb0\x11\x6d\xbe\x1f\x5c\x52\xf8\x11\xd1\xa4\x75\x0d\x24\x9a\x08\x6c\x54\x28\x3c\xda\x8f\x50\xa2\xf1\xdc\xee\xc7\xad\xb9\x6e\xbd\x4e\x8b\xd2\x5c\x28\xc1\x9b\x9b\x2b\x92\x3b\xbf\x9b\x69\x3c\x05\xb9\x7e\x37\x23\xb0\x51\xd3\x6f\xa6\x62\x4f\xbc\x7c\x78\x8a\x80\xda\xb8\x41\xf6\x44\x40\xf5\xa4\x64\x16\xc7\xd5\x13\xc9\xcc\x09\xce\x8d\xb7\x03\x57\x70\x76\x7e\x98\xd2\x78\x51\x76\xfd\x30\x45\x60\x23\xb2\x8d\x67\x4d\x9f\xa3\xf1\x6b\x54\xa8\x9e\x69\xfc\x04\x99\xf3\xe4\x99\x4c\x2f\x68\xa3\x31\x90\x4c\x2f\x28\xa9\x69\xa0\xa6\xe7\x76\x62\x44\xb0\x71\xdd\x75\x0a\x6c\x54\xf4\xa2\xf6\x74\x92\x46\x1b\x71\x52\x5c\x49\xc3\xf5\x63\x92\x11\x7e\xeb\xfa\x31\x89\xc0\x08\x36\x5e\x38\x3c\x5e\x22\xc9\x36\xee\x27\xbd\x50\xec\x08\x8c\xba\xcc\x0b\xc5\x8e\x93\x34\xda\xcc\x92\x72\x51\xfa\x69\x47\x86\x42\x2f\xd2\x41\x9b\x25\xa4\x94\x0e\xbc\xe2\xca\x33\xda\x69\xaf\xb8\xb2\xc0\x46\x45\x0a\x57\x76\xb2\x42\x9b\x51\x85\x7b\xe5\xe8\x0b\x2a\x8f\x93\xce\x35\xe1\xab\x93\x34\xfa\x71\x30\x90\x10\x2e\x30\x8a\x43\x57\xd2\xf0\x1a\xc7\xb5\x1f\x52\x82\xe3\x2a\xb0\xd1\x98\x4b\x26\x24\xb5\x74\xde\x51\x5d\xa9\xc5\x5b\xa8\xda\x29\x37\xbc\x49\xd5\x26\x55\xa3\xb6\xf0\x26\x55\x81\x7e\x44\x6a\xf1\x46\x46\x15\xd8\x88\x5a\xdd\xc9\x4f\xaf\xde\x62\x41\xfd\x98\x0c\xd4\x82\x00\xe3\xc9\xd7\x9b\x16\x44\x02\xea\x29\xb2\xa0\x2b\x01\x39\x3f\xda\xe8\x29\x3a\x20\xd7\x8f\x36\x04\x26\x37\xd1\x8f\x36\xbc\x6b\x60\x74\x1a\xae\x04\xe4\xbc\xe6\xf7\x8c\x12\x7a\xcd\x17\x18\x77\x64\xae\xd7\x7c\xd7\xf5\x43\x89\x8a\xde\x75\xfd\x20\x30\xf9\x97\xae\x1f\x9c\x07\xfe\x5e\x32\x03\x79\xcb\x13\xd8\xe0\xb8\x1a\x17\x62\x6e\xcf\x5f\x33\x86\x5e\x4a\x79\xce\xd3\x7d\x2f\xf8\x97\x9e\xee\x05\x36\x58\x90\x9e\xee\x7d\x60\xc2\xd2\x25\x75\x89\x92\x09\x27\x14\x26\x1c\x37\x73\x59\xd8\x8b\x8b\x81\x27\xd8\xc0\x27\x74\x3f\xe0\xa4\xcf\xce\xad\x9c\x2b\x7d\x0a\x7a\xad\xa2\xb2\xa8\xcc\x6b\x6b\x81\x2a\xa2\x36\x52\x19\xca\x45\xd1\x14\x71\xac\x74\x3f\xe0\x73\xab\x91\x89\x35\x4e\xaa\x78\x41\x7a\x4e\x4f\x15\xef\x53\x4a\x44\x49\xe5\x4a\x9f\x7e\xc6\x57\x3a\xa5\x8b\x9f\x24\x7f\x41\xe1\xb5\xd5\x4f\x92\xbf\x9f\x11\x3d\x7b\x2b\xa2\x4c\x14\xf5\x66\xcf\x50\x84\x8e\x33\x0c\xd2\x5b\x0d\x67\x3a\xa9\x79\x04\x36\xa2\x58\xf2\x93\x9a\xc7\xcf\x70\xf2\xde\x44\xc9\xc9\x4f\xc5\x09\x3c\xfa\x54\x9c\x20\x15\xf7\x1e\x15\xae\x2b\x15\xfb\x15\x81\xaf\x77\xce\xf6\xa5\xc0\x77\xa9\x75\x8a\x76\xda\x2f\x5a\x27\xbf\x76\x28\xc1\x2f\xf2\xfc\xe2\x3a\x50\x90\x1a\xc7\xea\x52\x50\xb8\xc2\xcd\x3a\x2f\xf0\x7e\x71\xf7\x27\xb0\xc1\x6e\x5f\xdc\x8b\x39\xf9\xb1\xf3\xc8\xec\x97\x62\x3f\x60\xa3\x1b\xd4\x53\x2a\x54\xe5\x79\xd0\x95\x3e\x9d\x16\xb8\xf3\x4e\xe6\x6a\x81\x05\x99\x77\x1f\x57\x0b\xec\xcb\xf5\x32\x17\x73\x2d\x39\xf9\x92\x93\xf7\x01\xc5\x3e\x2e\xfc\x8b\xce\xdf\x97\xfc\x6b\x3d\xfd\x6b\x42\x35\x51\xa1\x04\x8d\x9f\x2b\x61\xfb\x8e\x2f\x76\x6a\x7d\xdf\xfa\x22\x60\x83\x28\x47\x8f\xf9\xea\xbc\x9a\x77\xed\xa3\x5e\xcd\x05\x36\x2c\x41\x6d\x51\xcc\x35\x25\xa5\xb9\x14\xac\x4c\x94\xe6\x92\x12\xe4\x5d\x95\x08\xee\xbc\x3e\xf2\x1e\xe5\xce\x85\x87\xc0\x06\x07\xc6\xb9\xf0\x70\xc7\x73\x66\x94\xff\xee\xf2\x1c\x97\xe7\x18\x73\xc9\x73\x78\xf0\xee\x93\x1c\xee\x74\x50\x02\x1b\x51\xb1\xb9\x53\x52\x39\x25\x42\x9f\xf8\x84\x4a\x04\xa7\x44\xb0\x23\x3a\xec\x5b\x25\xc2\x7d\x50\xeb\x1f\x73\xfc\x75\x2a\xce\xed\x6f\x33\xf1\x7d\x50\xf5\x09\x6c\x44\xb7\x73\x1f\x04\xbc\xfb\xa0\x8a\x49\x51\x9f\xdc\xc7\xd6\xb4\x5c\x6b\x0d\x9b\x50\x59\x54\x78\x4c\x8a\x2c\x75\xab\xef\x13\xd8\x88\x6a\xe1\x3e\xd0\xfa\xd6\x8f\x78\x49\xa8\xb7\x7e\xc4\x2b\x48\x51\x2d\xc4\xff\x4b\x09\x6e\x19\xc7\x10\x25\x25\x58\x5b\x1a\x31\x50\x95\xc7\x9d\x44\xc5\x66\xdd\x2a\x07\x6e\xf2\xbd\xe5\xd1\xa1\xb6\x28\x0c\x3c\x24\xe5\x50\x44\xb7\x1c\xd5\xc6\xcd\x93\xea\x13\x6c\x30\xbd\x5e\x56\x6f\x9e\x51\xad\x84\xbf\xdf\x7a\x46\x15\x24\x2e\x86\x6e\x3d\xa3\x0a\x8c\xa7\xcf\x3b\xe3\x6a\x77\xbe\xf5\xd3\x68\xbe\xa8\x35\x02\xa9\x44\x47\x77\xeb\xe9\xf3\xa6\x42\xb0\x12\x3e\x7a\xab\x42\xb8\x0b\x86\x2e\xd8\xab\xec\x27\x85\xa1\x47\x83\xc2\xd0\x7a\xf0\xab\xd1\x7b\xdc\x7a\xf0\x13\xd8\x60\xd9\x24\xfd\x27\x58\xb5\xbf\xbe\x0e\x89\xff\xff\xf1\xfc\xf4\xf2\xeb\x3f\x11\x58\x3f\x7f\xfe\xec\xef\x5f\xf8\x07\x09\xfc\x43\x80\xc7\xf6\xfb\xc3\xbb\xff\xfa\x8f\x1b\x3e\x7d\xfc\x14\xa3\xf8\xef\xbf\x03\x00\x00\xff\xff\xd2\xfa\x91\xdf\x08\x31\x00\x00"); -func _aefd ()([]byte ,error ){return _dc (_dae ,"ETHK-B5-H")};var _eggf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x6f\xdb\x46\x18\x04\xe0\x3b\x7f\xc5\x1e\xd3\x43\xea\x7d\x3f\xf6\x83\x00\x61\xa0\x89\x91\x40\x87\x34\x45\xd3\xb4\x05\x8a\x1e\x64\x71\x69\x08\xa8\x29\x41\x92\x0f\xfe\xf7\xc5\xec\x48\x2e\xd0\x43\xa0\x68\xbc\x7c\x29\x3d\xe3\xe5\xfa\xee\xe3\xe6\x61\xb3\xee\x2f\xe1\xee\x97\xd3\x61\xf7\xad\x5d\xc2\xb2\x5f\xe7\x53\x3b\x1f\x5e\x4e\xbb\x16\x1e\xdb\xd3\x7e\x1d\x06\xd1\x30\xef\x77\x97\xdb\xdb\xfe\xb2\x7b\xde\x1e\x87\x01\xd7\x7f\x7b\x3d\x5f\xda\xf3\x66\x5d\x0e\xc1\xb8\x6e\x7e\x39\x5e\xd7\x86\x70\xf7\x6b\x7b\xda\x9f\x2f\xa7\xd7\xf0\xee\xa7\xf9\xf0\xd8\x7e\x08\x73\x5b\x90\x7f\x3d\xcd\xed\xb4\x5f\x9f\xc2\xbb\xcf\x1f\xe4\x2d\xfd\xf6\x72\x3c\xfe\xd3\x9e\xdb\x7a\x09\xda\xb3\xb6\xce\xfd\x75\xb8\xfb\xf8\x65\x7b\xfc\x79\xfb\xdc\xc2\x5d\x1f\xf4\xfe\xf3\x07\x79\xcf\x35\xfd\x47\xbf\xb7\xd3\x79\x7f\x58\x83\xc8\x8f\x31\xe6\xff\xf2\xdf\x5e\x8f\x2d\xc8\x75\xc6\xf7\xcd\xc3\xd7\x65\x39\xb7\x4b\x28\x29\x72\xcd\x9f\xdf\x37\x0f\xe1\x2f\x09\x12\x83\x26\x4f\xfe\xf7\x75\xe9\x1f\x5f\x0e\x73\x0b\xf1\x76\xf3\xcd\xc3\xc7\xc3\x0b\x3e\x95\x8a\x16\x86\xc2\x2f\xb9\x3b\xcc\xed\x7c\xdc\xee\xda\x69\xbb\x3e\xb5\x21\x84\x29\xc6\x18\xef\xc3\x94\xf2\xa7\x4f\xf7\xf8\x02\xff\x5b\x31\xd4\x72\xbd\x72\x3f\x33\xb9\x5d\x11\xe3\xb2\xdc\x87\x38\x4c\x51\xf8\x5e\xf0\x5e\x53\x1e\xa6\xa8\x4c\x14\x49\x12\x1d\xa6\x68\x4c\x0c\x49\xc9\x75\x98\xa2\x33\x71\x24\x12\xd5\x87\x29\x26\x46\xa9\x47\x5a\x31\x3b\x33\xca\x3d\x4a\x86\xe1\x85\x51\xe9\x51\x19\x31\xbd\x32\xaa\xfd\x13\x44\xc7\xf8\x91\xd1\xd8\x23\x8b\x18\xbf\x65\xb4\xbd\x7e\x4e\x8c\x7f\x64\xf4\xd8\xa3\x2a\x18\xbf\x63\xb4\x43\x64\xb1\x60\xfc\xcc\x68\xee\x91\x29\xc6\x37\x46\xad\x47\xa9\x62\xfc\xc2\x68\xe9\x51\xf5\x38\x4c\x42\x29\xe9\x52\x1e\xc7\x3c\x4c\x42\x2c\xe9\x58\x6e\x49\x87\x49\xa8\x25\x5d\xcb\x73\xac\xc3\x24\xe4\x92\xce\xe5\x35\xfb\x30\x09\xbd\xc4\xaf\xa6\x18\x4f\x2f\xe9\x5e\xc9\x0a\xc6\xd3\x4b\xba\x57\xca\x86\xf1\xf4\x92\xee\x95\x6a\xc5\x78\x7a\x49\xf7\xca\xe2\x18\x4f\x2f\xe9\x5e\xd9\x23\xc6\xd3\x4b\xba\x57\xce\x28\x56\xe8\x25\xdd\x2b\x8f\x68\x56\xe8\x25\xdd\xab\x08\xaa\x15\x7a\x49\xf7\x2a\x8e\x6a\x85\x5e\xd2\xae\xfd\x63\x3c\xbd\xa4\x7b\x95\x11\xd5\x2a\xbd\xb4\x7b\x55\x41\xb5\x4a\x2f\xed\x5e\xd5\x51\xad\xd2\x4b\xbb\x57\x2d\xa8\x56\xe9\xa5\xdd\xab\x8e\xa8\x56\xe9\xa5\xdd\x6b\x54\x54\xab\xf4\xd2\xee\x35\x3a\xaa\x55\x7a\x69\xf7\x1a\x0b\xaa\x55\x7a\x69\xf7\x1a\x47\x54\xab\xf4\xd2\x7a\xfb\x5d\xc5\x7c\x82\xe9\xc8\xcc\x51\xae\x52\x4c\xb7\xcc\x0a\xda\x55\x92\x69\x27\x43\xfb\xb8\x05\xcd\x74\xc7\x4c\xd1\xaf\x12\x4d\x67\x66\x09\x05\x2b\xd5\xb4\x31\x2b\x68\x58\xc9\xa6\x0b\x37\x49\x44\xc5\x46\x37\x8b\xcc\x14\x1d\x1b\xe1\x4c\x98\x25\x94\x6c\x94\x33\xbd\x6d\xb0\x38\x4c\x46\x3a\xeb\x74\x62\x11\x35\x1b\xed\x8c\x7b\xd3\x0c\x3d\x1b\xf1\x8c\x9b\xd3\x12\x8a\x36\xea\x19\x77\xa7\x55\x34\x6d\xe4\x33\x6e\x4f\x8f\xa8\xda\xe8\x67\xf4\x73\x43\xd7\x46\x3f\xa3\x9f\x27\x94\x6d\xf4\x33\xfa\x79\x45\xdb\x46\x3f\xa3\x5f\x12\xd4\x6d\xf4\xb3\xdd\xed\xa9\x80\x7b\xd0\xcf\xe8\x97\x32\x0a\x37\xfa\x19\xfd\x52\x45\xe3\x46\x3f\xa3\x5f\x16\x54\xee\xf4\x73\xfa\x65\x43\xe7\x4e\x3f\xa7\x5f\xce\xe8\xdc\xe9\xe7\xf4\xcb\x15\x9d\x3b\xfd\x9c\x7e\x45\xd0\xb9\xd3\xcf\xe9\x57\x1c\x9d\x3b\xfd\x9c\x7e\x25\xa3\x73\xa7\x9f\xe7\xdb\xa3\x0c\xf7\xa0\x9f\xd3\xaf\x0a\x3a\x77\xfa\x39\xfd\xaa\xa3\x73\xa7\x9f\xd3\xaf\x66\x74\xee\xf4\x73\xfa\xd5\x11\x9d\x3b\xfd\x9c\x7e\xa3\xa2\x73\xa7\x9f\xd3\x6f\x74\x74\xee\xf4\x73\xfa\x8d\x05\x9d\x3b\xfd\x9c\x7e\xe3\x88\xce\x9d\x7e\xbe\xf0\x59\xab\xe8\x3c\x5d\xcf\x90\x78\x7b\xfe\xc6\x61\x4a\xf4\x4b\x3c\x15\x62\x41\xe7\x89\x7e\x49\x99\x8d\xe8\x3c\xd1\x2f\x75\x3f\x15\x45\xe7\x89\x7e\xc9\x99\x25\x74\x9e\xe8\x97\x12\xb3\x82\xce\x53\xbe\x9e\x5d\xb9\xdd\x07\xd5\x28\xb9\x9f\x60\xb7\x93\x0a\xff\xc7\xc9\xff\x76\x18\xef\x5e\x4e\xa7\xb6\x5e\xfa\xb9\xdf\xcf\x5b\x9c\x8d\xfb\xb5\xbd\xfd\x0d\x71\x3c\x1c\x71\x55\xff\xf7\x6f\x00\x00\x00\xff\xff\xe0\x07\xe7\xdd\x6f\x08\x00\x00"); -func _dacf ()(*asset ,error ){_cfdd ,_eea :=_ddb ();if _eea !=nil {return nil ,_eea ;};_eff :=bindataFileInfo {_ag :"GBTpc-EUC-V",_bc :789,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492242,0)};_eaca :=&asset {_cd :_cfdd ,_dce :_eff };return _eaca ,nil ; -};var _fcf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4b\xab\x2e\x4b\x92\xa6\x37\x3f\xbf\x62\x0f\xa5\x41\x2b\xc3\x3d\xfc\x0a\x4d\x81\xa8\xa6\xa0\x04\x2d\x09\x95\x5a\x12\x08\xd1\xc4\xc5\x3d\x95\xa0\x3c\x79\x38\x99\x35\xa8\x7f\x2f\x96\x3d\xcf\x97\xec\x12\x62\xef\xd1\xc2\x57\x7c\x11\xee\xe6\x17\x33\x7b\xed\xe6\x7f\xf8\xc7\x7f\xfe\x4f\xff\xfc\xeb\x9f\xfe\xf6\xed\x0f\xff\xf3\xef\x7f\x79\xfe\x65\xfd\xed\xdb\xfe\xd3\xaf\xef\xef\xeb\xaf\x7f\xf9\xd7\xdf\x9f\xf5\xed\x5e\x7f\xfc\xd3\xaf\xbf\xfc\x92\xf2\xb7\xf7\x4f\xcf\xdf\x3e\xcd\xf8\xf3\xfc\xf9\xfa\xed\x97\x5f\xbe\xde\xff\x97\x7f\xfb\xeb\xdf\xd6\x9f\xff\xf9\xd7\xfd\x97\x6f\x27\xbf\x7b\xff\xf5\x37\x7f\xfb\xed\xdb\x1f\xfe\x97\xf5\xc7\x3f\xfd\xf5\x6f\xbf\xff\xdb\xb7\xff\xe6\xbf\x7f\xff\x72\xaf\xff\xf6\xdb\xbb\xf6\xd7\xff\xff\xa7\xdf\xdf\xf5\xfb\x9f\x7e\xfd\xa3\xff\xff\xaf\xff\xc3\xf5\xdb\xf5\x6b\xfa\xaf\xff\xe5\x1f\xff\x25\xff\xfd\x37\xff\xf2\xaf\xbf\xfd\xf6\xff\xac\x3f\xaf\x5f\xff\xf6\xad\xc7\xff\xd6\xaf\x6f\xfc\xfd\xe5\x0f\xff\xf8\x9f\xaf\xdf\xfe\xc7\xeb\xcf\xeb\xdb\x1f\xe2\xf5\xff\xc0\xeb\xff\xe1\xeb\xf5\xf8\x45\xfc\xe0\x7f\x5b\xbf\xff\xf5\x4f\x7f\xf9\xf5\xdb\xfc\xef\x8e\xe3\xbb\x7f\xff\xaf\xff\xf6\xdb\xfa\x96\xfd\xd0\xff\xf1\x5f\xfe\xf9\x3f\x7d\xfb\x3f\xd3\xb7\x74\x7c\xcb\xf5\x3c\xeb\xb7\x94\x53\xfe\xbf\x7c\xf8\xbf\xff\xe7\xbf\xbc\xeb\xdb\x41\x2b\x41\xd4\xf3\x97\x77\xfd\xf5\xb7\xeb\x59\xbf\x5f\xbf\xfe\x71\xfd\xf2\xed\xdb\x7f\x3c\x8e\xe3\xf8\x87\x6f\xff\xf1\x9f\xfe\xe9\x9f\xfe\xe9\x1f\xbe\x86\xf8\xff\xf9\xc5\x2f\xe9\x38\x78\xf5\xde\xcf\xff\x7d\xfd\xfe\xcb\xe7\x85\xbd\xf7\xfb\x0f\x5f\xad\xf3\xfd\x87\xaf\xaf\x5c\x35\x5a\xd5\x56\xa3\xb5\xa2\xd5\xf9\x65\xdd\x5f\xad\xf3\x38\xa3\xd5\xbe\xbe\x92\x8f\x34\x69\xa5\xf8\x65\x7d\x68\x65\x9e\x0d\x5a\x27\x5f\xf1\x59\xa1\xb5\x68\x8d\xf8\x65\x29\xb4\xe6\xd7\xb3\x34\x33\xad\x8b\xb1\x74\x5a\x37\x2d\x7f\xf9\xd0\x83\xdf\x74\xd4\x77\xb4\xba\xbd\xf3\x95\x5e\xe3\xd9\xcd\x57\x7a\xa3\x05\x7d\xbd\xc7\x2f\xb3\xbf\x64\x2c\xe9\xa2\x35\x69\x31\xce\x7e\xd1\x62\x26\x3a\x63\xb9\xed\x8f\xb1\x64\xbf\xf9\x46\xeb\x3c\x68\x31\x83\xf7\x8e\xd6\x60\x96\x2e\x5b\x95\xf9\xa4\xbf\xe1\xc8\x98\xb3\xd1\x79\x46\x0f\x63\x44\x2b\xfb\x6c\xf2\x0c\xda\x47\xcc\xd2\x79\xd2\xfb\x60\x64\x8f\xad\x87\xfe\xec\x21\x66\x29\x95\x44\x8b\x91\xbd\x7e\x33\xd6\x36\x55\x66\x62\x1e\x8c\x85\xf7\x26\xa3\x5e\x7c\x73\xe6\xf8\xe5\xc9\x57\xe6\xc9\x37\x7d\x8f\xb5\xdd\x7c\x73\x56\xbe\xc9\x7e\x99\xd0\xf7\x42\xfb\x0c\xfa\x8e\xcc\x7c\xce\xc1\x38\xd9\x4b\x73\xd2\x82\xbe\xe9\x2e\x60\x1d\xe6\x66\x64\xec\xd6\xcb\x71\xf2\xde\x0b\x0d\x8d\x99\x5f\xf1\x2c\x75\xc6\xb2\x12\x2d\xfa\x5b\x99\x19\xe4\x2b\x0b\x1a\x1a\x14\xad\x2f\x1a\x72\x72\x4f\x2c\x68\x70\xb7\x2e\x68\x60\x6d\x53\x3e\xbf\x3b\x39\xa9\x54\xd6\x3d\x7e\x99\x62\x35\xf7\x2e\xfc\x32\x56\xec\x3c\x96\xcf\xae\x68\xb1\x5b\x53\xac\xd8\x79\xdc\x89\xd6\x13\xad\x5d\x68\xbd\xfc\xf2\xa1\xb5\x68\xf9\x95\xcd\x7b\xf4\x10\x2b\x76\x1e\x77\xa6\x95\x68\xf1\x95\x58\xb1\xd3\x3d\x9f\x62\xc5\x4e\xf7\x59\x8a\x15\x3b\x5d\xe9\x14\x2b\x76\x1e\x37\xfd\xc5\x8a\x9d\xc7\x4d\x7f\xb1\x62\xe7\xf1\xd8\xdf\xa0\x65\x7f\xd0\xf7\x30\x13\x13\xfa\x9e\x4e\x0b\xfa\x9e\x58\xa3\x74\x31\x2f\xac\x51\xda\xce\x19\x5f\xd9\xcc\xee\xc5\xc8\x36\x67\x93\x7d\x9d\x36\x3b\xa4\x32\x67\x9b\x1d\x52\x63\x35\xf3\xf1\xfd\x79\xcf\xc7\xf9\x5d\x0f\xf9\x80\xbe\xe9\x33\xe8\xe3\x04\xe4\x03\xfa\xca\x49\x0b\xfa\x4a\xa5\x05\x7d\xa5\xd3\x82\xbe\x32\x69\x41\xdf\xf0\x3d\xe8\x1b\xbe\xc7\xfa\x0d\xdf\x63\xfd\xda\x19\xac\x59\x0e\xfc\xff\xc3\x92\xf3\xc1\xd2\x16\x87\xc9\xd2\xc2\x14\x73\x62\x69\x4b\xa3\xc5\xd2\x96\x41\x0b\xf2\x0a\x13\x91\x24\x6f\xd3\x82\xbc\x0a\xb1\x09\xf2\x38\x8c\x39\x41\x5e\x65\xd0\x09\xf2\x2a\x83\x4e\x90\x57\x21\x36\x41\x1e\x13\x9f\x13\xe4\x39\xf1\x09\xf2\xaa\xfd\x41\x43\xb3\x3f\x68\x68\xd0\x90\xa1\xa1\x41\x43\x86\x86\x06\x0d\x99\xb1\x74\x68\xcf\x8c\xa5\x33\xb2\xcc\x58\xba\xbf\x64\x2c\x9d\xb1\x9c\x7c\x65\xd0\xc3\xc9\x26\x1f\xf4\x70\xf2\x95\xc1\xc8\x4e\xbe\x32\xa1\xfd\x64\xd4\x63\xd1\x72\xe6\x1f\x5a\xce\x3c\xcf\x0a\xa3\xae\x6c\xa5\x42\x7f\xb0\xc8\x5c\xe8\xaf\xd2\x7b\xe1\x50\x55\x7a\x2f\xac\x4a\x65\xd4\x85\x55\xa9\x17\x2d\x57\x85\xfe\x8a\xab\x62\x7f\xcc\x84\x5b\xb7\x40\x43\xb3\x3f\x68\x68\xcc\x4b\x61\x26\x1a\x2b\x56\x58\x95\xc6\x8a\x55\x58\xeb\xc3\xc8\x2a\x07\x67\xfb\x8c\x83\xb3\x6c\xc1\x5a\x17\xab\x59\xef\xef\x18\x74\xae\x88\x8e\x45\x0f\xaa\x05\x8f\x2d\x45\x07\x2b\x8d\x5a\x70\x6c\x5a\x21\xfa\x8f\x63\x33\xd7\x8a\xfe\x0d\xed\x8a\xfe\xcb\x5f\xd6\xef\x44\x63\x6e\x8a\x3f\xc6\xd2\xa0\xe1\x65\x3e\x1b\x34\xbc\xcc\x59\x93\x06\xe8\x53\x49\x58\xec\x09\x95\x84\xe5\x37\xa1\x61\xfb\x95\xf7\xdf\x7d\x05\x1a\x16\xb3\xdb\xa0\x61\x31\xce\x8e\x58\x81\x5d\xe7\x8e\xf8\x83\x25\xe7\x2e\x7d\x7c\xa5\x43\xdf\x62\xc5\x7a\xf9\x7e\x76\x43\xf1\xc8\x15\x96\x9c\x55\x3c\x16\xb4\xf7\xfe\x9d\x12\x94\xfb\xf8\x4e\xac\xe4\x50\x27\xf6\x3e\xec\xe1\xa5\xe5\x2f\xd9\xad\x1b\x6a\x43\x9d\xd8\x3b\x41\xed\xc8\xfc\x92\x1e\x86\xb3\xcb\xa8\xff\x9d\x38\xca\x28\x17\x32\xda\x1c\xca\xc5\xde\x08\xae\x3c\xe6\x77\x62\x2c\x87\xa8\xda\xfb\xb4\x07\x4e\x07\x0a\x60\x0e\x91\x53\xd6\xcb\x8a\x29\x48\x9c\x97\x09\x63\x4f\xec\xd6\x10\x24\xf9\x48\xf4\x1e\x82\x64\xef\x83\x6f\x4e\x7b\xf7\xbd\x19\x2d\xcf\xc3\x54\xe9\x62\xfd\x42\x90\xec\xed\xc9\x99\xdf\x2b\x5d\x79\xa2\x74\x65\xfa\x53\xc8\x9c\xcc\xd2\x45\x7f\x27\xe3\xbc\xe8\xef\x8b\x9f\xfd\x98\x25\x5f\x0e\x85\xd7\xee\xc2\xa0\xf9\xe4\x5d\x69\xf9\xcc\xad\xcb\xc4\xdf\x6e\x5d\x8e\xca\xed\xf1\xb3\xc5\x37\x93\xef\x05\x79\xd9\xe3\x7e\x43\x1e\x1a\x6d\xbe\xd9\x04\x68\x9f\xf9\xde\xf1\x4b\x5b\x4f\x68\xde\xf9\x64\x69\x9f\xaf\x4d\x90\x9b\xa2\xe3\xc9\xb4\xf8\xe6\xc3\xf6\xbc\x6d\xc5\x32\x24\x97\xef\x61\x5a\x16\x53\xf6\x30\x2d\x87\xdf\x64\x2c\x87\xcf\xdc\x90\xbe\xe7\x86\x64\xe2\x9f\x45\x8b\x83\xf3\xec\x68\x65\xfa\x7b\x8f\xef\xf4\xf7\xfc\x32\x4e\xdf\x7b\x19\xa7\x3d\xbc\x67\x1c\x95\x87\xd9\x7d\x0b\x2d\x36\xc8\xcb\x31\x7a\xa0\xfd\x6d\xb4\xfc\x66\xa7\xe5\x37\x43\x7f\xaf\xb2\x97\x77\xd2\x72\x2c\x17\x87\x11\x1a\xde\xfb\xfb\xa3\xf9\x3e\xb4\x58\x95\xf7\xa5\xc5\x3a\xbc\x8b\xe3\xe0\xc8\x38\x00\x6a\x1a\xa1\x61\x66\xd1\x4a\x0e\x2d\x32\x27\x85\xcc\xe2\x38\x24\x5b\x41\xc3\x97\x52\x11\xad\x46\x8b\x6f\xae\x18\xcb\x97\xa4\x8b\xd6\x43\x0b\x16\xb2\xf6\x77\x9a\x70\xde\xf4\xf7\xd2\xdf\x4e\xb4\x58\xb1\x9d\xf9\x26\xd4\xee\x93\x16\xbd\xef\xc2\x37\x7d\xc6\x58\xd0\x5a\x73\xe8\x5c\xf9\x94\x22\x74\xae\x2f\x85\x2a\x5a\x83\x16\x73\x1d\x3a\x57\xce\x8a\xf7\xcd\xde\x55\x18\xee\x97\xfd\x09\x0d\x7b\xb1\x3f\x99\xcf\xed\xde\x8d\xd6\x79\xb8\x77\x2b\x2d\xe6\x2c\xdf\xb4\xca\x77\xc8\xe9\x0c\x5d\x2d\xb7\xb6\x69\x35\x5a\x7e\xa5\xd3\xba\x68\x5d\xdf\x61\xba\xf3\x60\x6d\x11\x01\x25\xd4\x89\xa3\xc0\x14\x4b\x08\xd1\xa3\xa0\x12\x95\x10\x40\x65\xcd\x87\xd6\x57\x0f\xb5\xc2\x6c\x4a\x08\xa0\x7a\x31\x83\x25\x04\xd0\x6c\xb0\xc1\x12\x02\xa8\x16\x34\xe1\x12\x02\xa8\xa5\x74\xd3\xfa\xea\xbd\x89\xd4\x4a\x08\xa0\x3a\xb7\xdf\xfc\x9a\xa5\x29\xda\x2c\x21\x80\x46\x41\xd1\x29\x21\x80\xc6\xc9\xe9\x2f\x21\x80\xfa\x85\xe2\x51\x42\x00\x35\x51\x5c\x09\x01\xd4\x4e\x04\x49\x09\x01\xd4\x16\x8c\xaf\x84\x00\x6a\x15\x81\x5e\x42\x00\x8d\x82\xd2\x55\x42\x00\x8d\x7c\xd9\xfa\xa2\x6f\xde\xdb\xf7\xbe\xe8\x6b\x83\xbd\x5b\x02\xf9\xd6\x9e\x3b\xad\xa0\xcf\x53\x55\x02\xf9\xb6\x2f\x99\x18\xad\xa0\xef\x9e\xd0\x1e\xa2\xaa\xce\xd7\x51\x07\x7d\xad\xfb\xec\x8b\xbe\x39\x10\xa2\x65\x04\x7d\x2f\xaa\x4d\x09\x31\xd6\xdf\x2f\x9c\xf1\x43\x96\x5c\x42\xc2\xcd\x1b\xcd\xad\x8c\x20\x3d\xbb\x60\xe3\x8b\xf4\xfe\x4c\x96\x28\xa4\xdf\x18\x80\xfe\x12\xd2\xaf\xde\x63\xd2\x8a\xa5\x5d\x40\xc8\x12\xd2\xaf\x9d\x87\xcf\xbe\x48\x6f\x6d\xfa\x5e\x90\x3e\xd0\xb5\x4b\x00\xb5\x29\xeb\x29\x01\xd4\x66\x1f\x4c\x75\x00\xb5\xd6\x8b\xbd\xaf\xd8\x58\xcb\x1e\xbe\x48\x2f\xb2\xc8\x82\xd4\xdc\x68\xec\x25\x80\x5a\xd9\xd3\xd6\x17\x7d\x55\x98\x51\x02\xa8\xd5\xb6\x99\xa4\x90\xaf\x75\x9e\xf4\x1e\xf2\xb5\x4e\x0e\x7f\x09\xf9\x5a\x2f\x37\x79\xc8\xd7\xfa\x48\x51\xc8\xd7\xa6\x56\x57\x42\xbe\xb6\x74\xd8\x62\xeb\x76\x16\x2c\xe4\x6b\x6b\xb0\xac\x12\xf2\xb5\x4d\x18\x74\x09\xf9\xda\x85\x89\x65\x7e\xd1\xd7\xab\xd4\x06\x24\xef\xd5\xaf\x04\x24\xef\x13\x0d\xa5\x5c\x2c\xed\x05\x7d\x57\x8e\x96\x47\xf3\xfa\xa2\x6f\x1c\x0f\xfd\x5d\x25\x36\x2b\x7a\x4e\xb9\x58\xbf\xe6\xb3\xd8\xba\x37\x6c\xa9\x84\x3c\x9f\x62\x97\x12\xf2\x7c\x1e\x9d\x91\x85\xd0\xae\xe7\x69\xef\x17\x07\xdc\x5f\xde\xd1\xba\x6c\xc5\xd6\xed\xce\xcb\xf5\xc6\x58\x6e\x7b\x58\xf1\xcd\x87\xf9\xbc\x82\xbe\xe1\xa8\x6f\xb4\x1e\x18\x6d\xb9\xbf\xe8\xab\x03\xdd\xb7\xdc\x71\x34\xd7\xc5\x57\xee\x33\xbe\x72\xb2\x7b\x42\x81\xe8\xd7\xe9\xb3\xa0\xef\xc3\x26\x6e\x8e\xe6\x60\xd4\xa1\x40\xcc\x27\xdb\xdf\x17\x7d\x55\xa3\x4d\xb9\xa1\xcf\xb9\x0e\x05\xa2\x16\x04\x57\x09\x05\xa2\x16\x19\x43\x28\x10\xb5\x2d\x7f\xc9\xd1\x74\x55\xee\x2f\xfa\xea\x46\x3b\x2b\xb7\x47\x93\x91\x85\x72\xd1\x5e\xf4\xe9\x12\xca\xc5\x50\xd7\x2e\xa1\x5c\x8c\x8a\xd1\xa6\x84\x72\x31\x9b\x87\xf8\x29\xd1\x72\x64\x4f\x8d\xd6\x65\xab\xc5\x59\xb1\xf7\x50\x3c\x6a\x39\x6c\x05\x7d\x27\x78\xa1\x3c\x93\x93\xca\x2e\x7f\xae\xd8\x75\x28\x02\x25\x94\x92\xbe\xa5\x36\x94\x92\xb1\x1f\x7b\x0f\xd6\xda\x16\xf3\x19\x4a\x49\x3d\x9b\xef\x05\x7d\x2f\x7a\x63\x79\x61\xad\xee\xe4\x50\x4a\xca\x4a\xcc\x59\x28\x25\xfd\xc3\x06\x43\x29\x19\x69\xfb\x5e\x81\xd1\xc2\x6d\x42\x29\xa9\x0d\x03\x67\x79\x11\x1d\x28\x4f\x25\x94\x92\x76\x23\xf0\x4a\x28\x25\xa3\x26\xfb\x9b\xb1\xb6\xee\xcf\x50\x4a\xea\x94\x4f\x84\x52\x52\x4f\x8c\x60\x25\x94\x92\xf6\xca\xbc\x43\x29\xe9\xe5\x75\x2c\xb1\x3f\x2b\xe8\xb6\x84\x52\x52\x55\x00\xcb\x62\x7f\x4e\x28\x0a\xb3\xd7\x3c\x0a\xfd\x85\xd9\x6b\x7e\x38\x4a\x28\x2c\xe3\xf4\x14\x87\xc2\x32\x27\xa8\xa3\x84\xc2\x52\x43\xc8\xfc\x98\x25\x2f\x48\x47\xf6\x96\x15\x4b\x7b\x23\xc1\xcb\x8a\xa5\xdd\xca\x8a\x05\x6b\xcd\x3e\x0b\xd6\xd3\x5c\xf6\xd0\x81\xda\x70\x02\x43\x07\x6a\x8f\x07\x67\x05\x6b\x7d\x3e\xbf\x5c\x31\x2d\xe8\x47\x25\xf4\xa3\x5e\x30\x4e\x94\xd0\x8f\x7a\x7b\x78\x2f\xf4\xa3\x7e\x01\xe5\x4b\xe8\x47\x73\xa0\x33\x97\xd0\x8f\x46\xf6\xd8\x86\x7e\x34\xc6\xe7\x2b\x71\x34\x2f\xb4\xf2\x12\xfa\xd1\xcc\x4a\xd4\xd0\x8f\xda\x2b\x9b\x08\xfd\xa8\xd7\xcb\xf7\x26\xbd\xb3\xd0\xa1\x1f\xcd\x89\x45\xac\xec\x1b\x09\xce\x2c\xed\x07\x76\x66\xef\xc1\x7a\xde\xe1\x7b\x2c\xed\xa7\x87\x1d\x4c\x18\x81\x57\x43\x77\xaa\x27\xcc\xb4\x1e\xc1\x7a\x12\x06\x8f\x1a\x36\xb0\xda\xd1\xe3\x6a\xe8\x55\x75\xb0\x0e\xf5\x40\x74\x60\x4e\xaa\xa1\x57\xd5\xfb\xb6\x15\xeb\xb7\xb6\x5f\x09\xfa\x0e\xd8\x52\x3d\x10\x8d\x6c\xc8\x1a\x36\xb0\x76\x6e\xdf\x8b\xf5\x7b\x00\xef\x35\x74\xae\xb6\x93\xcf\x9e\x38\xb6\x9f\x51\xc7\xd6\x4d\x9f\x67\x21\x3a\x52\xf5\x9b\xb1\x7e\xe9\x8d\x59\xaa\x61\xe8\xea\x27\x5a\x56\x0d\x43\x57\x5f\xcc\x52\x4d\xc1\x7a\xbe\x50\x74\xb4\x58\xbf\xd7\x67\xb1\x7e\x15\xa1\x5d\xc3\x08\x36\x35\xa2\xd4\xc4\xfa\xb1\xb6\x35\x8c\x60\xf3\x4d\xb6\x62\x7f\x0e\xcc\x26\x35\x8c\x60\x4d\xbd\xbf\x26\xe8\xc3\x68\x53\xc3\x08\xd6\x6b\x76\x9c\xc1\x5a\xd3\xf6\x3d\x58\x6b\x86\xda\x30\x82\xd5\xd9\xfc\x65\x1c\xcd\x3d\x18\x4b\x18\xc1\xea\xe6\x10\xd7\x30\x82\xb5\x6c\x7f\x39\x44\x47\xc5\x50\x52\xc3\xb2\xdc\xae\x6c\x2b\x58\xcf\x8d\x3e\xf6\x35\x88\xaf\x96\xeb\x97\x5b\xcc\x19\xa2\xa3\xe6\x1e\x2c\x12\xc1\x55\xc3\xb0\x36\x26\x46\xa9\x1a\x9a\xf0\x7c\xb3\xfd\xc5\xfe\x7c\x11\xb7\x35\x0c\x6b\x73\x3d\x7e\x33\xe8\x7b\x2e\xbf\xc2\xf9\x9b\x7e\x25\xb4\xba\xb3\xdb\x5f\xd0\x97\x38\xb7\xf5\x0c\xfa\x1e\x98\x4d\x0d\xf3\x5c\x4b\x70\x86\x1a\xe6\xb9\x91\x1e\x5b\x41\xdf\x70\x35\xcf\x10\x8d\x22\x8b\x7a\xa2\x95\xbb\x43\xce\x16\x0a\x92\xf3\x72\x76\xc4\x1f\xfb\xf3\x44\xb5\x71\xfd\xc2\xe4\xd7\x56\xb6\x75\x71\xfa\xd9\x4b\xe7\x8d\x00\x3a\x69\x3d\x88\x70\xc7\x19\xeb\x77\x26\xc7\xa2\xea\xc6\xbc\x9c\xa8\x6e\xa8\x1a\xb5\xa0\xba\x81\x6b\x6a\x41\x75\x73\x96\xc2\x1c\x58\x76\xa7\x87\x30\x07\xd6\x8c\xf8\xab\x61\x0e\xac\x27\x0a\x44\x2d\x88\x0e\xd4\xb3\x1a\xe6\xc0\x3a\x0f\x9f\x81\x3a\x5c\xbf\x30\x07\xd6\xdb\x19\x2c\x88\xc6\x9f\xb2\xe4\x1a\x20\xa7\x4f\x0f\x47\x41\xab\x43\xa2\xd6\xb0\x14\xb6\x0e\xe4\xa9\x05\xad\xf5\xd3\x41\xb0\xd6\xbb\xf8\x6c\x73\xc0\x21\xa8\xc6\xd1\x3c\x1a\x53\x56\xe3\x68\x9e\xc8\xde\x5a\x43\x6a\x4e\x34\xe1\x5a\xcf\x68\xe1\x34\xa8\x55\xad\x87\x6f\xd6\x2f\xd2\xbb\xd2\xbd\x56\xb4\x1e\xcc\x26\x35\xac\x96\xe3\x0b\x99\x47\x2b\xb6\xee\xe9\xc6\x0a\xab\xe5\x38\xbb\xef\x5d\xd1\x72\x3a\xc3\x6a\x39\xce\xd7\x71\x06\x6b\xed\x48\xcd\x1a\x56\xcb\x71\xdd\x8e\x33\x8e\x66\x73\x83\x84\xd5\x72\x3c\xd8\xc0\x6a\x38\x33\xc7\xc6\xc5\x55\x9b\x52\x13\x1a\xc2\xa2\x39\x7b\xb2\x15\xac\xa7\xc1\xae\x6b\x58\x34\xcb\xf6\xe0\x04\xa0\xac\xcf\xf2\x9b\x0d\x7c\x02\x7d\x01\x28\x7b\x76\x5b\x37\x44\x07\x7a\x40\x0d\x40\x39\x12\x7a\x40\x0d\x40\x39\x32\x7a\x4e\x0d\x40\x39\xda\xb6\xf7\xa0\xef\x01\x7a\x56\x00\x65\x7b\x7c\x2f\x44\xc7\x44\x7f\xaf\x01\x28\xe7\x94\xb5\x76\xb4\x02\x0c\x2c\xb5\xb3\x75\xd1\x49\x6a\x00\xca\x31\x17\xef\x75\x50\xc7\x4b\x7f\x01\x28\xeb\x28\xfe\x32\xe8\x1b\x8f\x2d\x45\x87\xdf\x8c\xad\xbb\x97\x2d\x8e\xa6\x0c\x2c\x00\x65\x3b\x26\xb3\x04\xa0\xd4\xae\x5d\x01\x94\x09\xd0\x58\x03\x50\xb6\xac\x18\x0b\x40\xd9\xf2\xe7\x59\xec\xcf\xaf\x73\x1e\xad\xa0\xef\x46\x2f\xae\x01\x28\x5b\x73\xdd\x03\x50\xb6\x81\xd9\xab\x06\x6a\x6c\xaf\xbb\x27\x50\x63\x3f\xba\xcf\x0a\x48\x86\xfd\x19\xa8\xb1\x37\x45\x6a\xa0\xc6\xfe\x02\xd0\xeb\x60\x7f\x5e\xb6\x62\x7f\x76\x45\x40\xa0\xc6\x59\x65\xc2\x81\x1a\x67\x53\xfc\x05\x6a\x1c\x0f\x08\xaf\x0e\x45\x87\xa3\x0e\xd6\x93\x3d\x2b\x03\xd1\x21\x23\x0a\xd4\x58\x8b\xe7\x2f\x50\x63\xbd\x3f\xad\x10\xfd\xaf\xbf\x0c\xd4\xd8\x12\xde\x94\x1a\xa8\xb1\xcd\xc1\x0c\x06\x6a\x6c\x2f\x0e\xe7\x1a\xa8\xb1\x0f\x4f\x6a\xa0\xc6\x51\xdc\x13\x81\x1a\xc7\xc0\x07\x54\x03\x35\x8e\xab\xfb\x95\xa0\xef\xbc\x7c\x16\xf4\x5d\xb7\xfd\xdd\xe8\xa9\xcc\x60\xa0\xc6\x39\x3d\x55\x81\x1a\x47\x7b\x99\xa5\x40\x8d\xb5\x5f\xd2\x10\xfc\xa5\x6f\x46\x16\xa8\x71\x34\x8c\x7c\x35\x50\xe3\xcc\x0a\xa7\x40\x8d\x35\xe3\x6e\xab\x17\xfb\x53\x1e\x12\xa8\xb1\x16\xf9\x44\xa0\xc6\xba\xe4\x05\x17\xe7\x0f\x3c\x54\x03\x35\xb6\x82\xab\xb8\x5e\x18\x3c\xe4\x4b\x81\x1a\xdb\x40\xe1\xac\x81\x1a\xdb\x8d\x73\xbf\x06\x6a\xec\xa7\x33\x11\xa8\xb1\x0f\xd0\x43\x0d\xd4\xd8\xaf\xf6\x33\x5b\x72\x0d\x40\x39\xe6\xf4\xb5\x60\x3d\x13\x3b\x5e\x0d\x40\x39\x5e\x59\x6b\x00\xca\xa1\xad\xb5\x06\xa0\x9c\x3a\x68\x2a\x80\xb2\x3a\x81\x37\x80\xcb\x43\x15\x80\x72\x76\x65\xe1\x8d\xc1\xc3\xe3\x70\x63\x10\x70\xf3\x04\xa0\x6c\xb3\xfb\x4d\xec\x55\xd3\xde\x83\xbc\x1b\x1d\xbd\x06\x68\x6c\x57\xf6\x59\x1c\xbf\xab\xb3\x60\x01\x1a\xdb\x50\x74\x04\x68\x9c\x0f\xf6\xf0\x1a\xa0\xb1\x6d\xdc\x82\xf5\x61\xf9\x9c\xc0\x00\x8d\xb5\x7a\x1c\x02\x34\xb6\xcf\x61\x0c\xd0\xd8\xf2\x62\x51\x02\x34\xb6\x57\x16\x19\xa0\xb1\x2d\x6c\x91\x35\x40\x63\x5b\x8a\xb8\x00\x8d\x43\x14\x50\x03\x34\x8e\x99\xfc\x66\x1c\xbf\xad\xee\xfb\x20\xf9\xd5\x45\x01\x8d\x8f\x0c\x45\xd0\xa8\x26\xfc\xa0\x79\xab\x29\x06\x68\x6c\xd7\xc9\xfa\x05\x68\x9c\x1d\xc7\x63\x0d\xd0\xd8\x86\xac\x2e\x40\x63\x4d\x80\xcd\xfa\x22\xfe\x30\x71\xd4\x17\x7b\x9c\xe2\x28\x40\xe3\x4c\x6a\x83\x01\x1a\xe7\x39\x6c\x85\xe4\x6f\x52\xf4\xaa\xb9\xb1\x3d\x5f\x8c\x52\xd9\xaf\x20\xfe\x30\xd3\xd4\x00\x8d\xa3\x10\x9b\x51\x01\x8d\x8f\x2c\x2b\x40\x63\xd5\x06\x5d\x03\x34\x8e\xac\xe8\x08\xd0\xd8\x8b\xe2\x6f\x01\x8a\x71\x4e\xd5\x85\x66\xe3\xf1\x5b\xd0\xa7\x66\x13\xa0\xb1\xde\xee\x64\x40\x63\xc6\xd0\x55\x41\x86\x99\xf8\x92\x0a\x32\xcc\xb8\x13\x2b\xc8\xf0\x55\x74\x04\x32\xac\xd5\xd3\x11\xc8\xb0\x7e\xe6\x33\x90\x61\x9d\x9f\x91\x61\x6f\x74\x96\x02\x19\xd6\x7b\xda\xc3\x62\x2c\x7e\x33\xd8\xe7\x72\xd7\x05\x32\xac\xab\xb3\xd2\x5b\x7b\x2a\x14\x6d\xd8\x27\x4e\xb4\x1a\xc8\xb0\xa5\xe6\xb3\x82\x0e\xcb\x4c\x04\x32\x6c\xa7\x3d\x04\x32\x6c\x55\x31\x06\x32\xec\xee\xc8\x0d\x7b\xa9\x7e\x05\xf6\xa2\x0e\xbb\x61\x2f\xa7\xdf\x8c\xf3\x77\x7f\x7e\x09\xf2\x95\x09\x07\x32\x6c\xdb\x95\x0e\x64\xd8\xb6\x28\x07\x64\xb8\x89\x56\x68\x07\xeb\x87\xc0\x6b\x81\x0c\x7b\xc5\x38\xd1\x02\x19\xf6\x86\x78\x6f\x81\x0c\x7b\x47\xf7\x6d\x07\xfb\x13\x26\xdc\x0e\xd4\x33\x34\xda\x16\xc8\xb0\x3f\xd9\x56\xc7\x74\x37\x69\x85\xfa\xb2\x89\xcd\x68\x81\x0c\xfb\xde\xf6\x1e\xe7\xef\xe0\x84\xb7\x40\x86\x23\x37\x7f\x19\xfb\xf3\x9c\x8b\x56\x88\x87\x79\x3b\xb2\xe0\x91\xd7\xf3\xd0\x52\x3d\x63\x9c\x81\x0c\xa7\xae\xfe\x16\xc8\x70\x6a\xc5\x6f\x81\x0c\x67\xc5\x68\xd3\x12\x3c\x72\xfe\x4c\x4b\x6e\x01\x1a\x67\xc5\x56\xd7\x00\x8d\x0d\xd8\xd6\x00\x8d\xfd\xf5\x93\x71\x34\x27\xc7\xaf\x05\x68\x1c\xd9\xc9\x0d\xd0\x58\xd6\x69\x0b\x7b\x5c\x76\xd0\x37\x6c\xd7\x67\xb1\x75\x5f\xc9\x0b\xd0\xd8\x85\xd6\x2d\x40\x63\x6f\xc5\x67\x01\x8a\x3b\xb2\xa9\x01\x1a\x1f\x7f\x19\xa0\xb1\xab\x65\xb5\x00\x8d\xe3\x75\x31\x33\xf6\x38\xc0\x43\x0b\xd0\x38\x47\xb2\x15\xf4\x0d\xa2\x15\x5a\x80\xc6\x39\x88\x4f\x68\x01\x1a\x8b\x7e\xe3\x16\xa0\xb1\xe8\x6f\x6e\x59\x7b\xa3\xcf\x2e\x0e\xaa\x23\x0b\xfa\x5a\xf3\x2b\xd8\x53\xd9\xe4\x2d\x03\x8a\x09\x9f\x69\x99\xa3\x79\x48\x43\x1c\xcd\x1b\x9d\xb9\x09\x1a\x27\x9b\x27\x40\x63\x5d\x58\xa1\x5a\x80\xc6\x2a\x23\x6a\x01\x1a\xeb\x76\x06\x03\x34\xb6\x73\xf9\x2c\x8e\x66\x87\x41\xb7\x93\xa3\x89\x0b\xb6\x05\x68\x6c\x15\x4f\x7f\x03\x34\x76\x8e\x7b\x03\x34\x0e\x74\xa0\x76\xc2\x5a\x3f\x23\x8b\xa3\x79\x55\x7f\x19\xf4\xad\xd3\x71\xc6\xd1\xbc\x61\x9f\x2d\x40\x63\x7b\x92\xfd\x81\x9c\x10\xb0\x2d\x40\x63\xaf\x88\xcd\x16\xa0\xb1\x4f\x3c\x0a\x2d\x40\x63\xbd\x61\x36\x2d\x40\x63\xbf\xb0\x2c\xb7\x00\x8d\xfd\xfd\xb4\x82\xb5\x6a\xfb\x6c\x01\x1a\xc7\x1c\x7e\x33\x34\xb7\xcb\x1d\x19\xa0\x71\x3c\x98\x07\x5a\x80\xc6\xa1\xee\xdb\x02\x19\x8e\xe5\x0c\x16\x44\x63\xf2\x9b\xa1\xb9\x0d\x67\x29\x90\xe1\xbc\xdc\x05\x81\x0c\xe7\xed\x8e\x0c\x64\x58\x16\x46\x8d\x16\xc8\xb0\x1a\x22\xda\x2a\x46\x29\x47\x1d\xc8\xb0\x4e\x8f\x66\x20\xc3\x7a\xbb\x7b\x02\x19\xb6\x8c\x95\xbb\x55\x44\xff\xe7\x9b\xb1\x7e\x65\xf9\x4b\xec\xa9\xae\x6d\x20\xc3\x2e\xb4\x6e\x81\x0c\x7b\xc5\xda\xd9\x2a\xc8\xd7\x5d\x57\xb1\x17\x7b\x72\x44\x86\x88\x9c\xf6\x41\x86\xf6\x10\xac\xe7\xee\x7e\x73\x63\xf6\xe2\x19\xc8\xf0\x04\xf3\x34\x90\x61\xb7\xf7\x40\x86\xb5\xb8\xaf\x03\x19\xd6\x82\xea\xd6\x02\x19\x56\x8d\x83\x2d\x90\x61\xfb\x9c\x3f\x90\xe1\xe5\xf9\x6b\xac\x9f\xbd\x83\x0c\x07\xc6\x9e\x16\xc8\xb0\x75\x30\x48\x0b\x64\x38\xd7\xc3\x5c\x37\xec\xc5\xdd\x6f\x22\x1a\xe5\x67\x81\x0c\x47\x4a\x8e\x1a\x57\x5c\xb5\x87\x40\x4e\x07\x8e\xf8\x26\x32\x74\xf7\x80\x0c\x97\x62\x25\x90\x61\x59\x78\xbc\x5a\x20\xc3\xb2\xe5\x28\x20\xc3\xcf\xbc\x80\x0c\x8b\x7c\x10\x64\x78\x13\xa8\xd8\x44\x86\xe9\x67\x41\x70\xed\x03\x1a\xed\x1c\x7b\x9c\x5c\x1e\xd0\xd8\xb1\xbd\x34\x40\xe3\x83\xc9\xbb\x01\x1a\x9f\x6e\x0b\x7b\x95\xf2\x2e\x40\x63\x37\x80\xac\x75\xec\xc5\x2e\x11\x5e\xc8\x0b\x2b\x54\xc3\x0b\x79\x39\xe8\x00\x8d\xfd\x46\x5b\x6a\x80\xc6\xd7\xe9\xd4\xd5\xb8\xfd\x65\xc5\x97\xe9\x57\x60\x3d\xe8\x39\x6d\x08\xfa\xd9\x04\x03\x57\xc7\x6d\x6b\x62\x2d\x83\xda\x00\x8d\xf5\x5d\xf6\x87\x97\x15\xbd\xaa\x0d\x40\x31\xae\x9c\x86\xab\xf1\x24\xee\xba\x05\x68\x6c\x2b\xfb\x6c\xb3\xd0\x8c\x33\x40\xe3\xb8\xd0\x06\x5b\x80\xc6\xf1\x12\xae\xd3\x02\x34\xce\x4c\xa4\x6e\x03\x34\x7e\x44\x40\x80\xc6\x3e\xb1\x56\xb7\x00\x8d\xf3\xfe\x7c\xb3\xe1\x44\xf3\xbd\x89\xfb\x12\x8a\x02\x18\x96\xed\xe1\x08\x60\x58\x0d\x12\x6b\x13\xe0\xeb\xd1\xc4\x9d\x78\x6d\x7b\x08\xf1\x90\x14\x32\x13\x9b\xa2\xcf\x2e\x6c\xde\x1e\x9c\x00\x86\xf5\x54\x27\x01\x18\x9e\xb2\x56\x80\xe1\xa9\x68\xbc\x3c\x7e\x1c\x62\x80\xe1\x40\x87\x6d\x01\x0c\xeb\xb3\xfc\x0a\xdb\x13\xc7\x6a\xbb\xf0\x59\x60\xf0\x68\x00\xc3\x43\x26\x05\x30\x34\x1c\xb0\x5d\xd8\xf4\x89\x48\x68\x01\x0c\xdb\xa9\x58\x09\x60\xd8\x2a\xc6\x9e\x76\x81\x9c\x8a\x23\x43\x3c\x28\xa6\x03\xfd\xf5\x8c\x29\xad\x05\xfa\xeb\x7a\x1b\x5a\xa0\xbf\xde\x31\x74\xb5\x1b\x77\xa9\x2b\x16\xe8\x6f\x24\xf4\xfe\x86\x3b\x51\xdd\xbe\xe1\x4e\xac\x98\xaf\x1a\xee\x44\x23\x90\x5a\xa0\xbf\x69\xf4\x40\x0b\x77\xe2\x14\x84\xb7\x1b\x9f\x45\xf5\x97\x61\x33\xbd\x5c\xf7\x1b\xe4\xa4\x8e\x87\x3b\x31\xb9\x97\x70\x27\x3e\xd9\xd6\xc6\xe0\x48\x0f\xb8\x13\xa7\xb3\x14\xc8\xb0\x3e\x44\x27\xb5\x40\x86\x4d\x77\x54\x7b\x30\x5c\xc8\xea\x02\x19\xf6\x13\x97\x7d\x7b\x64\x9f\xbe\x87\x66\xfa\xe9\x21\xd6\xcf\xd8\xe3\x86\x3b\x31\xe3\xb0\x6c\xb8\x13\xbb\xbb\xee\xe1\x8c\x79\x6e\x03\x19\xce\x13\x87\x5e\x0b\x64\xd8\xea\xe5\x7b\x88\xf7\xcc\x7e\x79\x30\x8c\xca\x7b\x1e\x78\x08\x9e\xa4\x86\x3b\x71\x3a\x96\x17\xf1\xae\x98\xc6\x9d\x78\xbb\xee\x2f\x3c\x44\x86\x19\xc8\x70\x64\xcc\x11\x0d\x64\x78\x2a\x98\x03\x19\x8e\xe1\xbe\x0e\x64\x38\xa6\x6a\x08\xee\xc4\xfb\xf4\xbd\x10\xef\xdb\x33\x16\xc8\x70\xa6\x4f\x0b\x77\xb0\x3b\x32\x90\xe1\xfc\x08\xd8\x40\x86\x65\xd5\xf7\x67\x2c\x19\xd0\x68\x10\x76\xc3\xd3\x78\x62\xa7\x6c\x8b\xa3\xa9\x5c\x5e\x6c\x5d\x75\xae\x00\x8d\xfd\xc4\x69\xd0\x16\xa0\x43\xf0\xb0\x20\x7d\xf9\x2c\x48\x5f\x58\xa8\x5a\x80\xc6\x39\x1f\x9f\xa1\x79\xe3\xd0\x6b\x01\x1a\xa7\x66\x93\x06\x68\x4c\x6a\x36\xcb\x20\x1c\xc7\x82\xcd\x94\x28\xc2\x06\x68\xac\x82\xa3\x05\xeb\xe9\xfe\x12\xfa\x14\x01\x80\xc6\x5b\xbd\x7f\x03\x3a\xdc\x3c\x01\x1a\x67\x23\xcc\xbb\x6d\x24\x23\xde\xfc\x06\x68\xbc\x00\x86\x2d\x40\xe3\x4c\x8a\x80\x8d\x4d\x58\x31\xb6\x61\x3d\xea\x7f\x80\xc6\x73\xda\x0a\xc9\x7f\x11\xc1\xd2\x00\x8d\x8f\xba\x13\xee\xc4\xae\xac\xdf\x68\x6e\xcd\x6f\x3e\x08\x2e\x28\xda\xb8\xdb\x86\xad\xc5\xa8\xed\x61\x73\x70\x62\xd4\x3d\x40\x63\x1b\x68\xad\x1d\xd0\xb8\xd0\x42\xfa\x81\x51\x83\x51\xf7\x00\x8d\xf3\xc4\xc6\xd7\x71\x27\xe6\xed\x57\x90\xfc\x18\x4a\xfa\x01\xeb\xb9\x6c\xa9\x99\x9e\xb4\x00\x8d\x1c\xb1\x1e\xa0\x71\xa8\xcb\xf4\x00\x8d\xd3\xe8\xd8\x7e\xa0\xd9\x20\x52\x3b\xa0\x71\x40\x43\xc7\x9d\x38\x8b\xbf\x5c\xd8\xdf\x1d\x4b\xac\x9f\x09\x0b\x3d\x40\x63\xd5\xfe\xde\x13\x9a\x29\x86\xa0\x1e\xa0\xb1\x56\x60\x77\x0f\xd0\x58\x3b\x0c\xac\x27\x58\x0f\xb1\xc0\x3d\x90\x61\xed\xd8\x76\x7b\xc2\x5d\xe3\xbc\x24\x44\x07\x26\x80\x8e\x3b\x71\x0f\x7b\x40\x74\xc0\xce\x7a\x32\xd2\x06\x8a\x12\x36\x6f\xa2\xb7\x7b\x20\xc3\x96\xd0\x53\x7b\x42\xbc\xdf\x7e\x33\x58\x4f\x39\x1d\xcb\xc6\xe4\xc0\x3a\x64\x6d\xde\x9b\x16\x36\x6f\x54\xa2\x8e\x3b\x71\x39\xf3\x81\x0c\x7b\x75\x3e\xb3\x3e\x19\xa8\x0d\x64\xd8\x1f\xf4\xe2\x8e\x3b\xf1\x2d\xf6\x00\xe8\x9f\x8c\x2c\x90\x61\x5f\xc5\x5f\x02\xfa\x9b\x2d\x7c\x32\xe0\x85\x9e\x31\x4a\x21\x44\x7b\x20\xc3\xd1\x5c\xe9\x8c\xe6\x8d\xa8\xea\xb8\x13\xaf\xe6\x38\x43\x7d\xd1\x6c\xd9\x03\x19\x8e\x45\x9a\x5a\x0f\x64\x38\x07\x27\xbc\x07\x32\x9c\x2f\x08\xa8\x9f\xb8\x83\x41\xda\x3d\x90\xe1\xd8\xd8\x92\xfb\x89\xfa\xb2\x7c\x86\x51\x0a\xeb\x71\x07\x19\xe6\xe4\x57\x42\xfd\x2c\x28\x09\x1d\x64\xb8\xf1\xb4\xf4\x13\x9b\xbe\x33\x01\x32\x1c\xee\x41\x90\xe1\x31\x6d\x29\x3a\x7c\x0f\x64\xd8\x1d\x35\x46\x1b\x94\x99\x5e\x54\x3f\x6d\x11\x29\xf5\x25\xe2\x7e\xc8\x92\x7b\x80\xc6\x31\x90\xa1\x3d\x40\xe3\xb8\x90\x54\x3d\x40\x63\xeb\x4e\x6e\xc1\x93\x8a\x26\xd5\xf1\x34\x1e\x48\x8e\x8e\xa7\xd1\xf0\xe9\x8e\xa7\xd1\xe4\x82\x5e\x64\xad\x6c\x82\x00\x8d\x35\x9f\x7e\x33\x8e\x66\x76\xc1\x0a\xac\x15\xc7\x40\x0f\xd0\x58\x3b\xbe\xcc\x1e\xa0\xb1\x8e\xc3\x6f\xc6\xd1\xd4\xba\xd3\x01\x8d\x0b\x63\x41\xaf\x7a\x8a\xd9\xba\x15\x7b\x1c\x7a\x4e\xaf\x04\xf9\xe1\xb9\xed\x80\x46\x8d\xf1\x1d\xd0\x38\x93\xdf\x04\x54\xe1\xde\xeb\x15\xcd\x1b\x58\xda\x3f\xa0\xd1\x5f\xc6\xd6\x3d\xf1\xd8\x77\x40\xe3\xc0\x26\xdc\x01\x8d\xc3\x43\x15\xa0\xb1\xbf\xdd\x6f\xbe\xd8\xce\xfc\x4a\x6c\x5d\x73\xd6\x3a\xee\xc4\x29\x9b\x00\x34\xde\xe8\xe8\x3d\x40\xe3\x78\x80\xd6\x3d\x40\xe3\x58\xaf\x2d\x82\xc4\x9c\xcf\x00\x8d\xf3\x94\x69\x34\x8c\x52\x6e\x9e\xa6\xd1\xc6\x67\x21\x1a\x3f\xac\x95\xf8\xd4\x05\xca\xe9\xc4\xa7\xa6\xe2\xb3\x58\xbf\x13\xb1\xd2\x05\x8d\xb7\xcf\x30\x6a\x74\x47\x1d\xeb\xb7\xdd\x13\x0d\x64\x21\x63\x0f\xd0\xd8\x16\x66\x9a\x4e\x7c\xea\x29\xab\xeb\xb8\x83\xd1\xab\x7a\x27\xc8\xcf\xde\x3b\x47\x13\xed\xba\x07\x68\x1c\x9a\x38\x3a\xf1\xa9\x97\xbb\x20\x40\xe3\x14\xa4\xf6\x00\x8d\x65\x15\xbf\xc9\xfe\xc4\xd0\xd5\x89\x4f\x3d\x97\xbd\x63\x74\x73\xb7\x76\x8c\x52\x9f\x6f\x12\x7f\x8b\x46\xd4\x89\x4f\xbd\x9b\xef\x2d\xb4\x41\x9f\x61\x2f\x56\x70\x0d\x22\x35\x00\xe1\x1d\x77\xe2\xe7\x04\xe0\x4e\xac\xe0\xb6\x4e\x10\x6a\x47\x7d\xe9\x83\x20\x31\x22\x2e\x3a\xc8\x50\xf7\x65\xc7\x9d\xf8\xa0\xff\x75\xdc\x89\x03\x33\x4d\xc7\x9d\x68\x62\x4c\x0f\x64\x38\x3e\xc2\x70\xc0\x5a\xb7\x5f\x41\xb5\x71\x5e\x02\x19\x8e\x4b\x76\x36\x88\x24\x92\xd5\x05\x32\x9c\x9f\x99\x0f\x64\x38\x1b\x50\xbe\x07\x32\x9c\x43\x01\x14\xc8\x70\x6e\xf7\xd2\x44\xb5\xc1\xaf\xd4\x03\x19\x96\x45\x8c\x7b\x9f\xb8\xbb\xf1\xf3\x74\x82\x50\x4f\x94\x99\x4e\x10\x6a\x21\x78\xb5\x13\x84\x5a\xb0\x72\xf7\x70\x27\xd6\x0b\x1c\xd5\x03\x35\xd6\x8d\x15\xbf\x07\x6a\xac\xc6\x51\x74\xdc\x89\x87\xbb\x95\x20\xd4\x21\x7f\x99\xf8\xa3\x86\xdf\x5c\xc4\x7e\x31\x9f\x04\xa1\x0e\xf4\xf0\x8e\x3b\xf1\xc2\xce\xdc\x03\x35\x8e\x4b\xc5\x23\x50\xe3\xb8\x51\x1c\x7b\xa0\xc6\x99\xdc\xd7\x81\x1a\xcb\xaa\xbe\x87\xe8\x78\xe6\xcf\x58\xf2\x25\x28\xb6\x03\xec\xa9\x6e\xc8\x0b\x7b\xaa\x1b\x84\xf8\x54\x93\xa6\x7b\x00\xca\x6a\x7e\x4b\x0f\x40\x59\x93\x13\x48\x7c\x6a\x52\xd6\x5f\x78\x8a\x9d\x96\x0b\x57\xce\xed\x2f\x37\xfa\x18\x83\xbe\xd1\xca\x71\xa6\x74\xe2\x53\x4f\x8c\x21\xfd\xc6\x5e\xa5\x46\x74\x6b\xaf\xf2\x3d\x00\x33\x80\xab\xdf\x68\x3d\xea\x39\xb8\x13\x3b\xb6\xa5\x8e\x3b\x51\x07\x62\x27\x3e\xf5\x56\xa6\x11\x9f\x7a\x57\x9f\x05\x7d\xb7\x52\x9a\xf8\xd4\x17\xf4\xd0\x89\x4f\x7d\xd1\x92\x3b\x80\xf2\xdd\xb6\x16\x6c\x89\x8d\x75\x73\x34\x95\xcb\x0f\xa2\x43\xfa\x00\x94\x8b\x38\xef\x8e\xab\x71\x63\xcb\xea\x00\x4a\xf3\xf5\x3a\xae\xc6\xa4\x66\xa3\xab\x71\xfa\x1e\x9e\xe2\xd7\xf7\xd0\xca\xdd\x74\xb8\x1a\x8d\xd4\xe8\x0f\x41\x8c\x87\xdf\x24\x88\x51\x56\xf7\x10\x69\x43\x80\x5c\x07\x50\x76\x80\x6f\x07\x50\x0e\x0c\x17\x1d\x40\x39\x3e\xbd\xe3\x6a\xc4\x06\xdd\x71\x35\x3e\xc0\xbd\x1e\x80\xb2\xbd\x38\xc3\x3a\xae\xc6\x17\x27\x6f\x7f\x0d\xfd\xf7\x97\xb0\x1e\xdc\x2e\x3d\x00\x65\xaf\xe0\x93\x1e\x80\xb2\xeb\x33\xef\x01\x28\xfb\x70\x67\xbd\xa0\x8e\xd3\xaf\x84\x68\x7c\x30\x35\xf5\x00\x94\xfd\x55\x84\x07\xa0\xec\xaf\xb3\xfb\x22\x1a\x3d\x2a\xb8\x1a\x5f\x62\x79\xfa\x8b\x68\x4c\xbe\x17\xa2\xd1\xac\xb1\x1e\xa8\x71\x98\x02\xdf\x17\xf1\xc5\xbe\xb7\x08\x12\x73\x2f\x11\x9f\x9a\xdc\x3d\xa2\x46\x67\x02\xd4\x78\xba\xb6\x0b\xc0\xec\xda\x2e\x58\x6b\xf3\x9b\x00\x66\xc5\x58\xa0\xc6\xf1\xb8\x93\x03\x35\x8e\x67\xfb\xde\x4d\xd4\xb7\x3d\x04\x60\x4e\x8a\xe2\x40\x8d\xd3\xb4\x87\x1e\xa8\xb1\x0f\xe7\x2c\x50\xe3\xcc\x7e\x05\xd4\xa8\x21\xa1\x8b\x1a\x89\xf6\xef\x06\xa1\x3a\x9f\x81\x1a\xe7\x54\xa7\x04\x35\x5e\xee\xc1\x40\x8d\x53\xe7\x77\x07\x35\x6a\x46\xec\x1b\x57\xaa\xa2\x6a\x1b\x3f\xcd\xda\x6e\x52\x53\x54\x00\x37\xae\xd4\xd7\xfe\x30\x2a\x7e\x7e\x19\xfb\x73\xbb\xd2\x04\xa1\x3e\x24\xd4\xf4\x40\x8d\x43\x07\x7e\x0f\xd4\x38\x17\xdc\x66\x10\x84\x9a\x40\x01\x83\x20\xd4\x7c\xda\x82\xbf\xa0\xf7\x8f\xc3\xfc\x85\x97\x16\xa8\x03\xb5\x75\x04\x6a\x9c\xa2\xf7\x11\xa8\x71\xbe\xcd\x67\xa1\xda\xa8\x20\x0d\x50\xe3\x09\x6e\x1b\x04\xa1\xee\xe3\x67\x2c\x79\xe0\x85\x34\xb5\x61\x1c\xc4\x6f\xc2\xf8\x46\x00\xca\xba\x3f\x03\x8b\xa3\x79\xbc\x0e\x3a\xa4\xe6\x85\x7d\x73\x10\x9f\x6a\x50\xda\x48\x04\x89\xe1\x34\x18\x01\x28\x9b\xda\xc4\x48\x2e\xed\x49\x0b\xa9\xc9\x56\x1a\x01\x28\x6b\x43\x82\x0f\x01\xe5\xe7\xbd\x58\xda\x01\x64\x1d\x00\x4a\x6d\x6e\x23\x19\xdf\xc8\x58\x00\x94\x09\x09\x3e\x00\x94\x0d\x5d\x7b\x00\x28\xcd\xad\x1b\x00\xca\x81\xa6\x3f\x00\x94\x83\x23\x36\x00\x94\x32\xda\x81\xab\xb1\xb2\x41\x46\x26\x2b\x07\xb0\x39\x02\x50\x8e\xdc\x18\x59\x26\xf5\x06\x78\x39\xb2\x5a\x01\xf3\x92\xd1\x0a\xd0\xdc\x46\x46\x2b\x20\xdf\x7f\x64\x43\xe3\x19\x59\x00\xca\xfa\xa2\x5d\x8f\x4c\x14\xc0\xf2\xd9\xa4\x65\x7f\xd8\xfb\xb7\x3d\x60\xef\x9f\x7e\x33\x58\x4f\x21\xd6\x72\x04\xa0\xec\xe3\x70\x64\x00\xca\xcf\x58\x62\xeb\x6a\x86\x1a\x00\xca\x41\xca\xc7\xc0\xd5\xd8\xfd\xa5\xae\x46\x98\xfe\x20\x3e\xf5\xc4\x91\x3b\x02\x50\x56\x6b\x4e\x8c\x00\x94\xd5\x9c\xbc\x01\xa0\x4c\x84\x54\x0d\x00\x65\x3f\xfc\x66\xd0\x57\x9c\x89\x00\x94\x75\xc0\x30\xc7\x49\xe8\xff\x6d\x0f\x21\x1a\xef\xdb\xf7\xd8\x9f\xcd\xf7\x08\x82\x2b\xf6\xb0\x10\x4e\xac\x26\x80\x72\x00\xe5\x47\x00\xca\x76\x3b\x2f\x01\x28\xdb\x82\x15\x8c\x40\x8d\x5d\x37\xdd\x28\x68\x3d\xee\x25\x5c\x8d\xda\x06\x47\x21\x48\x0c\xe6\x3d\x02\x35\xf6\x01\x26\x18\x81\x1a\xbb\xd6\xdc\x51\x10\x8d\xe8\x63\x23\x50\x63\x7f\x4f\xbf\x82\xd6\x4a\x74\xcb\xc0\xd5\x38\xb0\x79\x8f\x42\xea\x06\x6e\xb3\x81\xab\xb1\xb9\x97\x40\x8d\xd9\xd3\x01\x6a\xec\xb8\xde\x47\xa0\xc6\xf6\x59\x31\x82\x50\x37\x2c\x6b\x04\x6a\x1c\xc6\x2c\x0f\x5c\x8d\x09\xed\x7a\x04\x6a\xac\xdd\xbd\x5b\x41\x55\xd9\xf7\x38\x7f\xee\x79\x5c\x8d\x73\xd8\x42\x2b\xff\x7c\x05\xd6\x7a\xfb\x15\x6c\xc9\x28\x4f\x23\x50\x63\xed\x88\x80\x01\x6a\x1c\xa4\x1d\x8d\x40\x8d\xf3\xdd\x7e\x13\x83\x55\xf5\x97\xa8\x6e\x32\xcc\x40\x8d\xb5\x80\x21\x47\xa0\xc6\xa6\x06\x3d\x1a\xb6\x72\x67\xa2\x81\x3a\xc0\xac\xa3\x81\xfa\xc9\xe5\x1b\x81\x1a\xfb\x35\x7c\x16\xeb\x77\x83\x48\x06\x41\xa8\x2f\x11\x25\x03\xd4\x78\xa2\x40\x0c\x5c\x8d\xc3\x91\xe1\x6a\xbc\xc9\x35\x18\x81\x1a\xbb\x56\xe7\x01\x6a\xd4\x03\x35\x40\x8d\x61\x70\xfc\x31\x4b\x6e\x2c\x2d\x80\x64\x34\x6d\xad\x74\x1e\x80\xb2\x65\x4c\x15\x83\x84\xc7\x82\x2b\x6e\x90\xf0\x68\x70\xd2\x20\xe1\x51\x5b\xdd\x20\xe1\xf1\x26\x1e\x6f\x00\x28\x2b\x90\x7c\x08\x28\x01\x7f\x23\x00\x65\x6f\x28\xfa\x23\x00\xe5\xbc\x5f\xbf\x49\x6a\x03\xfa\xc3\x08\x40\x39\x4f\x59\x56\x00\xca\x79\x23\x6d\x47\x00\xca\xde\x6e\x47\x1d\x47\xb3\xa1\x85\x8c\x4e\xe8\xb8\xdb\x1a\x40\x79\x60\xdb\x1d\x00\x4a\x23\xa6\xc7\xc0\x0d\x82\x36\x31\x00\x94\xc7\xf2\x97\x41\x5f\x99\xfe\x92\x84\x4e\xcc\x03\x63\xe8\x06\xa1\x77\x00\x65\x72\x5e\x70\x35\xea\x8f\x1d\x83\xf8\xe2\xec\x7b\x71\x34\x6f\xf4\xcd\x11\x80\xb2\xaf\x61\x0f\x00\x4a\x37\x2b\x80\xf2\x1e\xbe\x87\x56\xa0\xf8\x03\x50\x5a\x50\x67\x00\x28\x0d\xb3\x1b\x01\x28\x9b\xee\xb6\x11\x80\xb2\x35\xe7\x8c\xf8\xd4\xdb\x6d\x2d\xa0\x54\xe4\x00\x28\x17\x79\x8c\x23\x00\x65\xd9\x1e\x46\x5c\x8d\x1b\x37\xc8\x00\x50\xe6\xcf\x33\xb5\x1e\xc6\x02\xa0\x3c\xb1\x48\x0f\x00\x65\x05\xf3\x0c\xdc\x90\x4d\x1a\x70\x43\x8e\x65\x8b\x28\x95\xc7\x16\xf1\xb7\xb2\x6b\xdc\x90\x13\xd7\xd8\xc0\x0d\x79\xcb\x7a\x2e\xdd\x58\xec\x41\xdc\x90\x4b\x01\x84\x1b\x72\x29\x3a\x70\x43\x6e\xbc\x22\x23\x00\x65\xb3\x88\xd4\x20\x3e\xf5\x3c\x7c\x46\x94\x8a\x87\xf1\x12\x55\x31\x9f\xb8\x21\xeb\xe5\x33\x12\x72\x6f\xbf\x72\xe3\x70\x66\x26\x2e\xe3\xfb\x7d\x86\x2d\xb2\x39\x32\xdc\x58\xdd\x91\xe1\x86\x54\x81\xc0\x0d\x79\x62\xd4\x18\xb7\x51\x2a\xcc\x04\x6e\xc8\x29\xf3\x0e\xd4\xd8\x1f\x67\x9e\xac\xc6\x57\x56\x70\xe3\x0a\x97\x76\xdc\x90\x07\xba\xf6\x08\xd4\x38\x92\xb3\x14\xa8\x71\x24\xcc\x7a\x23\x50\xe3\x98\x8a\xe9\x40\x8d\xe3\x52\x50\x06\x6a\x1c\x97\xc2\xf0\xc6\xe0\xd1\xfc\x25\xb6\x64\x0c\x09\xe3\x46\xf4\xab\x40\xdc\x04\x90\x29\xe2\x02\x35\x8e\x47\x71\xf4\xa0\x95\x3f\xb6\x50\xdd\x64\xde\xa0\xc6\x5b\x15\xe5\x61\x7f\xba\x77\x1f\xf7\xa7\xbf\x64\x7f\x2a\xfa\x71\x43\x26\x77\xc8\xe3\xfa\xd9\x3b\xa8\x58\x11\x00\x6a\x4c\x98\x4d\x06\xa8\xf1\xc4\xf5\x3e\x40\x8d\xe6\xf2\x8d\x8f\x1b\xd2\x67\x18\xe4\xdc\xad\x8f\xf9\x19\xb4\x70\x43\x66\x85\x05\x6e\xc8\xc8\x0b\xfd\x31\x4b\xc6\x43\x59\x3d\x7e\x78\x28\x3f\x52\x9a\xd8\xd5\xe9\x81\xc3\x43\x79\x60\xfb\x1c\x78\x28\x8f\x93\xe5\xc3\x43\x99\x96\xbf\x8c\xa5\x2d\xd3\x6f\xe2\xa1\x9c\x0e\xcc\xac\x2a\x26\xe9\x25\xeb\xc8\x03\xfe\xa2\xf5\xb8\x21\x03\x50\x8e\x9b\x10\x99\x41\xc2\xe3\x67\x63\x05\xa0\xec\xda\x0d\xc7\xd2\x4d\xc0\x2f\x03\x50\xd6\xdb\x45\x31\xe1\xd1\xe3\xbe\x60\x3d\xea\xe8\xc4\xae\x9e\xd8\xff\x06\xb1\xab\x5d\xbd\x98\xd8\xd5\x79\xfa\xcc\xac\x1c\xb6\x20\xb1\xab\x37\x00\x6f\x90\xd5\x78\x0c\x9f\x05\x7d\x1f\x8a\xc8\x6a\xb4\x52\xc6\x08\x40\xd9\xab\x9a\xfe\x82\xb5\x3a\x67\xc6\xae\x4e\xdf\x8b\xad\x5b\xd5\x22\xc9\x6a\xbc\x97\xad\xa0\xcf\x62\x49\x83\xd8\xd5\x8e\xc9\x61\x98\xd5\xe8\xe1\x0f\x40\x59\x1f\x60\xf0\x20\xab\xb1\xaa\x69\x04\xa0\xec\x8b\x94\x96\xb1\x49\x6d\x50\x97\x01\x50\x26\x75\x6d\x00\xe5\x73\xd8\x43\xd0\x77\x8a\x48\x70\x43\x1a\xf9\x32\x00\x94\x06\x07\x0e\xdd\x90\xa2\x87\x00\x94\x7d\xba\x3d\x71\x43\xbe\x38\x1e\xe7\x81\x41\x00\x50\x3c\x03\x50\x0e\x93\x67\xe7\x81\xad\x1c\xa1\x36\x0f\x6d\xe5\x8b\x56\xc1\xad\xe4\x57\xc8\xfa\xbb\xfc\x25\xbe\x0e\x1c\x3b\xf3\x40\x74\x6c\x9f\x05\x7d\xcf\x69\x8b\x00\x2b\x1c\x81\xf3\x20\xe1\x18\xd3\xdd\x04\x35\x5a\xab\x62\x1e\x18\x04\x8a\xcf\x5e\x34\xe8\x41\x6b\xa1\x49\xdd\xb4\x88\xad\xc6\xd0\x35\x71\x43\xde\x88\xfe\x89\x1b\x72\xb3\xb3\x66\x42\xf4\x93\x46\x32\x45\x8d\x80\xe9\x09\x6a\x3c\x51\x51\x26\xa8\xf1\xc6\x09\x3a\x13\x06\xab\xe2\x2f\x41\x1d\x9f\x6f\x0e\xc4\x2d\xf4\x05\x6a\xec\x79\xd9\xc3\x85\x6b\xf3\xa0\x15\xf4\x5d\xf8\x41\x66\xa0\xc6\x91\x9a\xdf\xc4\x96\x4c\x8c\xf4\x4c\x88\xfe\x2a\x0d\x88\x7e\xd8\xf5\x24\x40\x35\x91\xb2\x33\x33\x06\x47\x04\xde\xcc\x18\x04\xd0\xd1\x67\x26\x00\x10\x91\x3a\xc9\x6a\x3c\xa5\x88\xac\xc6\x0b\x0d\x73\xea\x86\x44\x9d\x98\x81\x1a\xa7\xa8\x6a\x82\x1a\xdb\xeb\x37\x11\xfd\x38\xfb\x26\x01\xaa\xa5\xf9\x4d\x50\xd5\x74\x2c\x64\x35\x3a\x4b\x04\xa8\xbe\xaf\xef\xa1\x95\x2f\x5b\xc1\x5a\x13\x2c\x79\x9e\xaa\xa6\x3c\x23\xab\xf1\xc5\xb0\x36\x4f\x45\x23\x23\x3b\x49\x7d\x83\x41\x4f\xb2\x1a\xdf\xe2\x2f\x2b\xce\xd3\x9f\xb1\xe4\x19\x80\xb2\xef\xd7\xd7\x64\xad\x1c\x87\xd3\xd8\x63\x26\xf0\x24\xed\x61\xda\xf9\x85\x0d\x8c\x45\x09\x40\x39\x66\xf7\x2b\x68\x75\x9f\x5f\xc6\xd2\x2e\xfc\x8e\xf3\xc4\xd6\x93\xfd\x26\xb1\x81\x4e\x52\x00\xca\xa9\xad\x67\x06\xa0\x9c\x5a\xa4\x67\x81\xb5\x12\xa9\x31\x05\x94\xd3\x67\x48\x4d\xa7\x05\x37\xe4\x26\x15\x73\xe2\x86\x4c\x68\x1a\x13\x37\xe4\x59\xec\x0f\x0f\x3a\x31\x0f\x33\x00\x65\x93\x2d\xcd\x82\x41\x00\x51\x35\x8b\x01\x80\xbe\xf7\x00\x75\x1d\x27\xb1\xd5\xcd\xaf\x04\xeb\x31\x6f\x7f\x06\xa0\x9c\x09\x5f\xf4\x0c\x40\x39\xcd\x2c\x9a\xd5\xad\x4b\x0f\xc6\xae\xa2\xd9\x4c\x63\x57\xd1\xfb\x27\x6e\xc8\x17\x64\x31\xc9\x6a\x9c\xd5\x6f\xc2\x5a\x3d\x54\xb8\x21\x1f\xc0\xed\xac\x24\x1c\x77\x9f\xc5\xd1\x4c\xd3\x6f\xc6\xd6\x4d\x32\x29\xb2\x1a\x4d\x20\x98\xc4\xae\x1a\x60\x3f\x03\x50\x96\x2d\x53\x24\xab\x51\xff\xfd\x24\x76\xb5\x11\x42\x39\x03\x50\xf6\xee\x31\x6a\x04\x38\xa2\x17\x4f\xdc\x90\x39\xf9\x0c\x5b\xa4\x47\x93\xd8\x55\x93\x75\x27\x59\x8d\x5b\xd6\xda\x0c\x70\xf4\x3d\x00\x73\xf3\x3d\x59\x0f\x73\x06\xa0\x7c\xb7\xfd\x21\x1a\x65\x1a\x94\xc9\xd9\xc0\xfc\xd9\x40\x55\x1e\xb1\x86\x2d\x39\xf9\x0c\x37\x1d\xce\xb0\x69\xec\x2a\x56\xd9\xd9\xd9\x9f\xd8\xb5\x67\x27\x42\x00\x71\x3b\x03\x35\x56\xd1\xd1\x24\xab\xd1\x22\x44\x13\xd4\x98\xb1\x45\xce\x40\x8d\xad\xe1\xbf\x9f\x81\x1a\x9b\x39\x6b\xb3\x93\x76\x44\xd4\xc1\xc4\x0d\xb9\x6e\xbf\x89\xc1\xc3\x93\x1a\xa8\xb1\x6f\x4f\x5c\xd7\x17\x00\x23\x0a\xd4\x38\xd4\xdf\x67\xa0\xc6\x51\xb7\xa3\x46\x6b\xfd\xfc\x12\x83\x00\x08\x76\x8a\x1a\x1d\x0b\xa8\x71\x62\xde\x99\x03\xd4\x81\x75\x7c\x0e\x62\xe3\x3d\xe1\xa0\x46\x2b\xa4\xcc\x40\x8d\xd3\x90\xb8\x39\x40\xc5\xce\x3c\xb5\x70\x2c\x8e\x3b\x09\x50\x35\x15\x66\x12\xa0\x9a\x09\xf2\x9b\x04\xa8\x9e\xd9\x1e\x70\x23\x17\xdf\xc3\x20\xe0\x9e\x20\xab\xb1\x80\x48\x26\x59\x8d\x55\xbe\x44\x56\x63\x95\xbf\x90\xd5\xd8\x54\x04\xc8\x6a\x9c\x32\x6f\x6a\xe1\x98\x47\x3c\xa9\x85\x63\x1e\xf1\xa4\x16\xce\x8d\x41\x6e\xe2\x86\x7c\x5c\x77\xdc\x90\xe2\x9a\x69\x2d\x9c\x64\x7f\x88\x7e\x57\x13\xd4\xb8\x46\xf9\x19\x4b\x06\x50\x2e\x25\x2a\x80\x72\x29\x43\x01\x94\xbb\xdb\xc2\x56\xd7\xed\x3c\x14\xf6\x8c\x25\x66\x92\xf0\xa8\x2d\x79\x06\xa0\x6c\xe6\x7b\xcd\x00\x94\xcd\x04\xe7\x79\x61\xeb\x39\x6c\x9d\xb4\xfc\x65\xe1\x80\xb3\x28\x00\xca\x46\x58\xd1\x04\x50\x76\xd9\x0b\x80\x72\x00\xbf\x26\x09\x8f\x97\x4b\x0b\xa0\xbc\xd4\x6c\x2e\x6b\x39\xd8\x03\x09\x9d\xca\xe5\x4b\xd6\xca\x16\x04\x50\xae\xea\x33\x6a\x39\xb8\x28\x94\xc9\x49\x32\x5a\x00\xa5\x21\x4e\x13\x40\x69\xe9\xa4\x69\x5c\xab\xf2\x15\x40\x39\x64\x9f\x00\xca\xf9\x79\x06\x6b\x25\x2e\x65\x06\xa0\xec\x53\x36\x18\x80\xb2\x5f\xae\x43\x00\xca\x7e\xbb\xd0\x37\x6e\xac\xcb\xfe\x70\x63\xa9\x5b\x00\x28\x0f\x19\x11\x80\xf2\xa3\x65\x01\x28\xb5\xc0\x4d\x00\x65\x2d\xbe\xb7\x61\xc9\x8c\x13\x40\x39\x64\x6e\x94\xc9\xf9\xcc\x2e\x65\x72\x3e\x9b\xf5\x21\x42\x07\xa7\xd6\x7c\x88\x80\xf0\x10\x07\xa0\x1c\xea\xe8\x33\x00\xe5\x78\xd4\x49\x02\x50\xce\x74\xf9\x5e\x18\xac\xcc\xa3\x9a\x0f\x09\xb9\xae\x74\x00\xca\x59\x70\xcc\x4d\xe2\x5a\x9b\xa2\xf8\xa1\x4c\xd5\xf4\x19\x71\x9f\x64\xe8\xcd\x47\x83\x95\xcf\x48\xeb\x00\x13\xcc\x97\xb4\x00\x00\xec\x7c\x09\x9e\x53\x93\x7a\xcd\xe8\x64\xe6\xc9\x78\xec\x6a\x60\x2f\x09\xe3\x44\xc7\xce\xd7\x84\x71\xc6\x42\x99\x9c\x1b\xeb\xe3\x7c\x29\xc3\x45\x54\xc5\x7c\xf1\x75\x10\xc5\x3b\x03\x35\xb6\xa2\x40\x00\x35\x76\x67\x29\x50\x63\xeb\x58\x34\xa7\x65\x72\x8a\xfd\x85\xe8\xc8\x32\xe8\x97\x32\x55\xce\xb5\xa8\x51\xb5\x00\xd4\x58\x08\x19\x9b\xb8\x21\x6f\x99\x37\xa8\x31\x7d\x9e\x11\xfc\x28\xe3\x03\x35\x36\x19\xd8\x07\x35\xd2\x3b\xc1\xab\xc3\x51\x2f\x82\xcb\x54\xdd\x16\x59\xb7\x87\xad\xa0\xef\x76\x0f\x06\x6a\xec\x1f\x25\x2f\x50\x63\x5f\xee\x97\x40\x8d\xe3\x90\x33\x80\x1a\xf3\x67\x9c\x64\x15\x2b\xe2\x70\x43\xea\xdd\x98\x81\x1a\x47\x57\x04\x6c\xb2\x8a\xf1\x01\xcd\x40\x8d\xd5\x22\x44\x73\x93\xd6\xe1\x3a\x6c\x7c\x39\x8a\xdb\x8d\xea\x26\xa3\xdd\xfa\x72\x18\x0b\x6e\xc8\xcb\x79\x01\x35\xde\x0a\x8b\x6d\xad\x0a\x4e\x0e\x6e\xc8\x4d\x16\xec\xc4\x0d\x99\x88\x60\x99\xa0\x46\x6d\xd0\x93\x8c\xc7\x08\xd5\xfd\x31\x4b\x26\x19\xb2\xa9\x99\x92\x0c\x39\x50\xdf\x2f\xe2\x5a\x27\x3a\xd7\x75\xa0\xb0\x63\xb5\xbc\x88\x6b\x35\xe8\xe7\x22\x19\xb2\x62\xc6\xb8\xf0\x50\x56\xfc\x9c\x17\xc9\x90\xe6\x89\x5d\x24\x43\xce\x6a\x0f\xb8\x41\x98\xf8\x0b\x0f\xe5\xfb\xf9\x8a\xb5\x1c\x6c\x51\xcb\xe1\xf2\x2b\x37\x7a\xc0\x45\x2b\x96\x76\x7e\x5a\xd8\xb2\x4e\x5b\xb1\xb4\x86\x23\x5d\x00\x4a\xd3\x2c\x2e\x93\x21\x81\x20\x17\xc9\x90\x86\xe2\x5f\xb8\x21\x3b\x4b\x74\x09\x28\xb1\x8e\x5f\x49\xad\x1c\xda\x93\xc9\xba\x8c\x53\x37\x24\x7a\xd5\x85\x1b\x72\x20\xcf\x2f\xe2\x5a\x9f\xc3\xde\xc9\xb8\x4a\x7e\xf3\x62\x2b\xd9\x7b\xd0\xe7\xd2\x5e\x00\xca\xeb\xf0\x97\x2f\x51\x99\xf6\x40\x5c\x72\xb3\xf7\xd8\xba\xc6\x4a\x5c\xb8\x21\x6f\x74\xd8\x0b\x37\xe4\x45\x0d\xb0\x2b\xeb\x66\x65\x35\xc9\x78\x4c\xd8\x37\xaf\xac\x9b\x95\x6f\xea\x86\xbc\xfc\x65\x1c\xcd\x03\x4d\xe3\xca\x06\x27\xb1\xd2\x00\xca\x3e\xfc\x0a\x5a\xc1\xa7\x77\x0c\x1e\x9f\xaf\x80\x3a\x60\x6e\x57\xb6\xcc\x11\xf4\xe1\x86\x94\x49\x5d\x01\x28\xfb\x83\x20\xb9\x02\x50\x76\x7d\xed\x97\x6e\xc8\x6e\xcb\x5a\x23\xf4\x4e\x5c\xab\x11\x10\xd7\x09\xeb\x49\xfe\x92\xe0\x40\xd8\xfc\x45\x5c\x6b\x43\xff\xbb\x40\x8d\xc5\xfd\x79\x12\x1c\xf8\xf8\x15\xdc\xac\xee\x09\xdc\x90\xc6\x90\x5c\x64\x3c\xd6\xcf\x58\x60\xad\x97\x63\x79\x30\x01\xd8\x1f\x6e\x3a\xd4\x97\x4b\x37\x64\xb3\x3f\x6a\x39\x20\x28\x2f\xdc\x90\x22\xa7\x2b\x50\xe3\x38\x5d\x77\x50\xa3\x31\xe7\x57\x31\x63\x95\xde\x0b\x65\xb8\x60\x9f\x57\xa0\xc6\x66\x34\xf5\x55\xc8\x08\x24\x14\xf2\x02\x35\xde\xe8\xcc\x57\xa0\xc6\xb2\x88\xa2\xba\x70\x43\x1e\x94\x39\xba\xa8\x85\x53\x11\xda\x97\xb5\x70\x60\x36\x17\xc1\xab\xc9\x59\x22\x78\x35\x9f\x7e\x05\x5f\x15\x21\x9b\x17\x6e\xc8\x49\x5e\xc0\x45\xf0\xea\x26\xd4\xec\x22\x78\xf5\x20\x54\xf0\x22\x78\x35\xbb\x62\x04\xaf\x56\xe2\x44\x2e\x50\x63\x05\x77\x5f\x04\xaf\x36\xf9\x0b\xc1\xab\xed\xf3\x0c\xd5\x0d\x7f\xc6\x55\x49\x26\x97\xbe\x8a\xe8\xf0\xe4\x54\x50\x15\xc6\xb3\x8b\xe0\x55\xc5\xc3\x85\x1b\xb2\x7e\x7a\x88\xfd\xf9\x59\xbf\xca\xfe\x44\xbb\xbe\x08\x5e\xb5\x7a\xf9\x85\x1b\x72\xa0\x66\x5d\x04\xaf\x8e\xfd\x33\xc3\xc5\x05\xa0\x9c\xe8\xbe\x17\x65\x72\xae\xcb\x8f\xa0\xf5\x00\xec\xaf\x46\xdc\x27\x76\x92\xab\x79\x34\x59\x22\xe2\x5a\xad\xa9\x7b\xe1\xa1\xec\xd5\x16\xd9\x4a\x64\x55\x5d\x00\x4a\x03\xd6\x2e\x3c\x94\x26\xac\x5e\x94\xc9\x49\x87\x04\xb1\x75\x6f\xfb\x23\xb8\x2c\xdb\x5f\x6c\x5d\x8b\x82\x5f\xba\x21\x65\x6e\xb8\x21\x2b\xf5\x13\x2e\xdc\x90\x0d\x58\x7a\xe9\x86\x04\x70\x5d\x01\x28\xbb\xf5\xa5\xae\x8e\x07\x16\xf7\xd0\xd5\x89\xfb\xfc\xb4\x42\x74\x2c\x2c\xa1\x57\xc7\x0d\x22\x8b\xec\x06\x27\x39\x96\x0b\xeb\xaa\xfd\x61\x6b\x45\x2e\x5f\x00\xca\x85\x23\xf0\xea\x44\x40\x00\x1a\xaf\x6e\x9d\x07\x36\x64\x17\x75\xf0\x8c\x32\x39\xa7\x14\x11\xd7\x5a\x64\x3d\xb8\x21\x33\x9a\xe2\x35\x8c\x2b\x67\xd4\x64\x3c\x5e\x18\x4a\x2e\xe2\x5a\x6f\x8f\x6d\x00\xca\x71\x39\xea\x00\x94\xb3\x61\xd7\xbe\x70\x43\xbe\xe0\x93\x8b\xb8\xd6\x7c\xf8\xcb\xa0\xef\xc3\x34\x06\xc5\x39\x3f\xe3\x34\x5b\xd0\xb1\x50\xa1\xab\xd8\xbb\xc5\x1d\xed\x1d\x37\x32\x76\xca\x0b\x40\xf9\xe0\x64\xba\x00\x94\x8f\x07\x07\x40\x69\xfe\xe3\x45\xc6\x63\xce\x3e\xd3\x20\xc0\x9c\x05\xa0\x6c\x56\x53\xb8\x02\x50\xb6\x91\xec\x81\xa3\xa9\x08\xa0\xb8\xea\x83\x67\xe0\xa2\xb8\xea\x8b\x69\xeb\xa2\xb8\xaa\x56\xee\x8b\xb8\x56\x4b\x0a\x5c\xc4\xb5\x1a\x05\x70\x91\x0d\xf9\x11\x9b\xc4\xb5\x7a\x53\xc9\x05\x6a\xb4\x32\xf6\x75\x99\x32\xc0\xba\x53\x5c\x55\x1f\xfd\x65\x71\x55\xec\xa2\x57\xa0\xc6\xbe\x8a\xad\x58\xbf\x2d\x2b\xa7\xb8\x6a\x92\x99\x52\x5c\x35\x27\x7b\xc0\x17\xa0\x68\xbc\x28\x5e\x49\x26\xe8\x15\xa8\x71\x5c\x32\xfd\x8b\xe0\xb9\xc7\x16\xfb\x93\x18\x84\x2b\x50\xe3\x34\xeb\xf6\xba\xa8\x7b\x8c\x0e\x7b\x51\x5c\x35\x7f\x46\x4d\xf0\x1c\xc6\x97\xeb\x26\x78\xce\x7d\x16\xa8\x71\x9a\x46\x7c\x11\xbc\x6a\x1c\xcc\x45\xf0\x6a\x55\x3c\x04\x6a\x6c\xea\xb0\x17\xa8\x31\xc9\xca\x09\x5e\xb5\x3c\xd2\x05\x6a\x9c\xa4\x71\x5d\xa0\xc6\x55\x6d\xa1\xba\xdd\xf6\x1e\xa2\xe3\x43\x1f\xc1\xab\x96\x68\xb8\x08\x5e\x35\x3d\xea\x22\x78\xd5\x52\x62\xd7\x6d\x84\x0e\xb3\x6b\x36\xa4\x42\x8d\x6c\x48\x43\xe2\x2e\xea\xe4\x4c\xa2\xbd\xae\x40\x8d\xfd\x73\x52\x1f\x54\x53\xc5\x3b\xd9\x90\x46\xda\x5c\x0f\xa8\xf8\xf8\x59\xbd\xe4\xeb\x51\x6b\x65\x22\x1e\x48\x7f\xfd\xe4\xc0\x32\xc9\xa2\x3c\xd8\xb2\x50\xe6\x2f\xea\xae\x0a\xaa\x2e\x4a\xe8\x68\x8e\xb8\xa8\xbb\x7a\x79\x00\xac\xbb\x0a\x94\xb8\x1e\xea\xe6\xaa\x03\x51\x77\xd5\x62\xf0\xd7\x4b\x9d\x00\xe2\x7d\x2f\x00\x65\x56\xdf\x04\x50\x9a\xfe\x78\xbd\x26\xf2\x72\x88\x01\x94\x07\x06\x88\x0b\x40\xf9\xd1\xa0\x01\x94\x1f\xbd\x1f\x40\x39\xb1\x33\x5f\xc4\xb5\x5a\x84\xfc\x7a\xad\x2b\xcb\x38\xa9\xbb\xfa\xc8\x5a\xad\xbb\xaa\x00\x02\x50\x1e\xea\xef\x2f\xc1\x81\x32\xf6\x97\xa5\xf5\xd8\xbe\xd4\x09\x70\xb3\x2e\x58\xab\xb2\x7e\x61\xd0\x51\xe4\x2c\x22\x58\xb0\x3a\x5f\x0b\xad\x00\x70\x74\x2d\x0c\x3a\xdb\x56\xc5\xda\xe9\x37\x83\xf5\xcc\xcf\x7b\xd8\x5a\xdd\x3c\x00\x4a\x6b\xf8\x5e\x0b\x5b\xf2\xb2\x45\xdd\x63\x45\x23\x80\xf2\xef\xfd\x69\x6b\x65\xb3\x9a\x0d\xa9\x60\x26\xae\xf5\x71\x87\x50\x5c\xf5\x55\xf3\xc6\x0d\xf9\x62\x56\xb8\x00\x94\x9f\x95\x0e\x40\x39\x4e\x59\x39\x6e\xc8\x13\x23\xd1\x45\x71\xd5\xd2\x7c\xcf\x12\x48\xb6\xc8\x16\xc4\x76\x7d\xe1\x86\x1c\x6a\x8a\x01\x28\xc7\xab\x66\x1a\x80\x72\x1e\x87\xfd\x91\x2d\x28\x5e\xd8\x24\xf2\xba\x93\x37\x06\x8f\x64\x0f\xd4\xb1\xc0\x39\x75\x6d\xb2\x3d\x3f\x14\x85\xe8\x30\x0a\xfb\x06\x35\x26\x8e\xd8\x8d\x1b\x32\xc1\xae\x6f\xdc\x90\x15\x73\xd9\x1d\xa8\x71\xbc\x60\x90\x3b\x50\xe3\x3c\xd8\xe5\xf7\x01\x60\x7e\x7c\x0f\x37\x24\x5a\xdd\xad\x1b\xb2\xd8\x1f\x11\x2c\xdd\x5f\xe2\x46\xc6\x8e\x7e\x53\x5c\xd5\xf9\xbc\x0f\x0d\x1e\x3e\xc3\x20\x87\x7e\x7b\x83\x1a\xdf\xdb\xaf\x70\xfe\x92\xbf\xa4\x78\x25\xae\xb8\x1b\x37\xe4\x03\x42\xb8\x13\x29\x49\xf8\x10\x6e\xdc\x90\x5e\xb8\x70\x27\x12\x95\xa7\xcf\x70\x43\xa2\x82\xdd\x89\xba\xdc\x18\x2e\x6e\x50\xa3\x59\x8d\x37\x6e\xc8\x53\xda\x93\x11\x10\xcc\x52\xe2\xfc\xe1\x5c\xbc\x45\x8d\x87\x3d\x04\x7d\x05\xd3\xc8\x4d\xf0\xaa\x99\x07\x77\x42\x74\x70\xe2\xee\x84\xc1\xea\xb5\x3f\xb4\x72\x94\xb5\x1b\x37\xe4\xcc\xb6\xe2\xfc\x3d\xec\x9e\x9b\x3a\x39\x97\xdf\xc4\x0d\x59\x51\xc1\x6e\x50\xa3\xe1\x8e\x37\xa8\x71\x5e\xb6\x1a\xa7\xdf\xaf\x60\xd0\xc1\x27\x73\x67\xea\xc8\x3c\x7e\x13\xd5\xe6\x6b\x87\xfc\x90\x25\xdf\x00\xca\x59\xed\x00\x5b\x5d\xb1\x03\x8a\xe7\x01\x48\xee\xcc\xd6\x25\xe2\xef\xd6\x43\xf9\xe9\x9c\xad\x8b\x7e\x7b\x53\x42\xe7\x46\xc6\xdc\x27\x47\x13\x08\x72\x13\xd7\xfa\x60\xf9\xb9\x4f\x83\x93\x58\x68\xe2\x5a\x37\xb2\xf0\xa6\x84\xce\x67\x23\x53\x42\x47\xd7\xdf\x6d\xa2\x24\x4c\xff\x26\x51\xb2\x6d\xbf\x42\xa2\xb2\x93\x04\xa0\x5c\xaf\x63\xc1\xd6\xfa\xd8\x42\x2b\xef\xbe\x87\x2d\xeb\xf5\x9b\x61\xf0\x18\xc3\xfe\x08\xde\xc1\x02\x77\xe3\x86\x3c\xf0\xff\xde\xb8\x21\x0f\x1c\x6c\xb7\x6e\x48\x40\xf8\x0d\xa0\x5c\x80\x9c\x3b\x00\xe5\xbc\x3f\x2d\xb2\x21\x61\xad\x37\x6e\x48\xb3\xaa\x6e\x00\xe5\x04\xc4\xdd\x05\x5b\xb2\x47\x2c\x00\xe5\x34\xc2\xf7\x0e\x40\x39\x4d\x35\xb8\x03\x50\xce\x17\xe6\x7d\xeb\x86\x7c\xfd\x25\x25\xf3\x3f\xdf\x44\x6b\x75\xfd\x00\x94\x15\x01\x7b\x03\x28\x6f\xd7\x01\x40\x99\x3d\x38\x02\x4a\xe2\x67\x6e\xb3\x21\x65\x4b\x00\x4a\x93\x19\x6e\x00\xe5\xa6\x5a\xc4\x8d\x1b\xb2\x64\x9f\x99\x88\xcd\x58\x02\x50\x4e\x8b\xb5\xdc\xd5\x44\x57\x76\x08\xc5\x55\x2f\xf7\x92\xc5\x55\x3f\xbf\x44\x2b\x5f\x7e\x85\xe2\x8e\xdb\x67\xd0\x87\xde\x7f\x57\x0b\x05\x30\x2f\xcd\x2b\x0f\xd8\xad\x16\x57\xc5\xc4\x71\x83\x1a\x37\xba\xf6\x4d\x09\x9d\x49\xbc\xc0\x0d\x6a\xf4\xa6\xc1\x1b\x37\xe4\x8b\xf8\xbb\x89\x6b\xbd\xec\x8f\x12\x3a\x1b\xf7\xec\x8d\x1b\x72\xbc\x3e\x03\x55\x11\x76\x7a\x07\x6a\xec\xd6\x3d\xb9\x03\x35\x4e\xd3\xf1\xef\x40\x8d\xcd\xc4\xe8\xbb\x59\x22\xc8\x91\xc1\x7a\x4e\x29\x82\x3e\xd7\xa8\xe3\xc6\xf2\x34\x76\xe2\xca\x9b\x2d\xd6\x0f\xa1\x76\x83\x1a\x4f\x57\xec\x73\x5b\x87\xbf\xa4\xae\x33\x28\xe0\xc6\x0d\x29\xde\xbb\x75\x43\x92\x00\x72\x07\x6a\xec\x07\x1a\xf4\x8d\x1b\xb2\x2f\x5b\xd4\x3d\x76\x17\x74\xe2\x76\x51\x97\x6e\x82\x57\xdf\xdb\xaf\x70\xe5\x81\xd4\xe2\x86\xf4\xde\xc8\xbb\x53\x47\x06\xd4\x71\x0f\xb3\xe9\xa0\x21\x50\xe3\x3c\x1d\x0b\x6e\x48\xab\xcb\xdd\xb8\x21\x07\x7e\x9e\x7b\xc0\x5f\x64\xb4\x04\xaf\x56\x47\x4d\x9d\x9c\xa6\x20\x09\xd4\xd8\x2e\x22\xd0\x6f\xae\xe4\xd0\xbd\x77\x13\xbc\x5a\x5d\x3f\x50\xe3\xf5\xe9\x81\x1a\x33\x99\xbd\x14\xa8\xb1\xf7\xe5\x7b\x64\x23\x9f\x3f\xb3\x25\xdf\xc3\xdb\x10\x24\x08\x83\x00\x2e\xa7\x9b\xb8\x56\x53\x70\x6f\xe2\x5a\x1f\xa0\xe7\x3d\x09\x9e\xc3\xf8\x7f\x4f\xaa\x77\x29\x8d\x28\xa1\xb3\x81\x4a\xf7\x04\x70\x7d\x7e\x19\x5a\x4f\xc7\x8e\x77\x4f\xca\xb3\x14\xfb\xa3\xc6\x85\xf2\x7c\x12\xb7\x0b\xbc\xbc\xa7\xb6\x2c\x58\xcf\xc4\xe0\x21\xeb\x99\x14\xee\x54\xc2\x51\x77\xb5\x28\x48\xa6\x5a\x81\xa3\xde\xd8\xae\x79\x4f\x40\x89\xb9\xe5\x26\x51\xd2\xab\x44\x6f\xe2\x5a\x2f\xb7\x20\x80\xb2\x2b\xaa\x4c\x94\xc4\x3c\x70\x5f\x26\x9a\xfb\x15\xdc\x3c\xd3\x1e\xac\x0b\xec\x7b\xb1\xb4\xd6\x36\xbe\x71\x43\x36\x1c\x65\xf7\x65\xca\x87\xfd\x61\x6b\xc5\x8b\x7c\x5f\xd4\x10\x50\x7f\xe0\xb6\x8e\x01\xa0\xbc\x29\xae\x7a\x9d\x3e\x23\xc2\xc3\x63\x04\xa0\x34\x7d\xfc\x06\x50\x7a\x41\xcd\xcd\x6d\x1d\x1f\xa6\x88\x1b\xd2\x84\xf8\x1b\x37\xe4\xa9\x36\x61\x79\x1d\x19\x1f\x71\xad\xa5\xda\xea\x18\x6d\x38\x70\x37\xb6\x48\xf4\xd4\xfb\x36\x11\xdb\x6f\x12\xe1\xe1\xa1\x02\x50\x5a\x33\xf8\x06\x50\x7a\x1d\xcf\x0d\xa0\xd4\xa2\x79\x9b\x0d\x79\x4a\x83\xd9\x90\xf4\x40\x36\xa4\x85\xf7\xef\xc7\xe0\x32\xbe\x62\x36\xa4\x73\x46\xe1\xd5\x7d\xfb\x4b\xb2\x21\x5d\x31\xb2\x21\xcf\xe4\x37\x39\x9a\x32\x29\xb2\x21\x3b\xe8\xe8\x26\x1b\xf2\xb3\xaf\x41\x8d\x5e\x02\x75\x83\x1a\x2b\x1e\x8c\x9b\xdb\x3a\xfa\xa7\xa5\x1b\xcb\xde\xa9\x4e\x26\x33\x0d\xd4\x38\x8c\x2b\xbf\x03\x35\x8e\xae\x4e\xf9\xc2\x7a\x64\xec\x2f\xbe\x00\x8c\x75\xf7\x4b\xf5\x43\xc5\x26\xb7\x75\x18\x6d\x72\x07\x6a\x9c\x59\x1d\x36\x50\xe3\xac\xee\x17\x0a\xaf\x9a\x30\x74\x53\x78\xf5\x91\x69\x50\x78\xf5\xc3\xae\x71\x43\x9e\xae\x34\xd9\x90\xe6\x77\xde\xba\x21\xd5\x1b\x41\x8d\x0f\x4e\xf3\x1b\x37\xe4\x09\x6e\xbb\xc9\x86\x7c\xd4\x8b\x5f\x52\x92\x30\x6a\xdc\x81\x1a\x67\x13\x05\x2c\xb3\x3d\xf9\x66\xa0\xc6\x3a\x40\x5c\x37\xa8\x71\x1e\xbe\x57\x40\x86\x3e\xab\xc4\x07\xd1\x1f\x6e\x48\x33\x80\xef\x40\x8d\xbd\xaa\x04\x51\x43\xc7\x2b\x8e\xef\x65\x4a\x92\x2d\xaa\x1f\x3a\x2f\x04\xaf\x9e\xee\x17\xae\xe4\xf0\xfe\x98\x7b\x11\x81\x54\x1c\x35\x85\x49\x55\x97\x16\xbe\x00\xf2\x18\xef\x6d\xca\x1c\xef\x81\x1a\xeb\xd7\x19\xfb\x31\x4b\xde\xd8\xb2\xec\x9c\x44\x49\x6b\x80\xdd\xd4\x64\x9d\x00\xed\x9b\x9a\xac\xc6\x5f\xdc\x78\x28\xbb\xfa\x03\x1e\xca\x41\xa0\xcd\xad\x87\xd2\x61\x6e\x0d\x1e\xb6\xd0\x0a\x3c\xee\x9b\xca\x49\xc2\x13\x00\xa5\x0e\xbd\x1b\x40\xf9\xf7\x91\xa1\x15\x28\xd3\x36\x80\x0b\xd6\xf3\x90\x28\x29\x74\x79\x0e\xe3\x76\x2b\x2d\x6d\x59\x27\xad\xd8\xba\xcf\xf4\x3d\x4a\x5a\xa3\x93\x3c\x94\xd7\x19\x48\xb8\xe7\x90\xb5\x5e\xb4\xf0\xa0\x73\x34\x1f\x00\xa5\x97\x1d\x3d\x07\x6e\xac\xcb\x67\x44\xb0\x30\x13\x0f\xe5\x75\xbc\x36\xf2\x01\x50\x1e\xc3\x71\x12\xc1\x72\xfb\x15\x0c\x1e\xa7\xfd\x61\xf0\x80\x7d\x3e\x89\xf2\x41\x30\xbe\x87\x6c\x48\x2b\x7b\x3d\x89\x8b\x74\x08\xcc\x7a\x00\x94\xde\x62\xf2\x50\x5e\xe7\xc2\x9d\xf8\x24\x52\x06\x96\xef\x61\x8b\x2c\xbe\x87\xd6\xca\x86\x7c\x28\xbc\x7a\xa1\x2d\x3d\x89\xf2\x41\x68\xd0\x4f\xc2\x20\x80\x8d\xf6\x49\x24\xf2\x82\x1e\x9e\xc4\xfa\x21\xaa\x1e\x00\x65\x7a\x7d\x16\xa2\xd1\x62\xa7\x0f\xe5\x75\x64\x05\x0f\xe5\x75\x0a\x3a\xde\x03\xa0\x2c\x18\xa5\x1e\x6f\xeb\x70\x35\xb9\xad\x63\xc1\x18\x1e\xca\xeb\xb4\x61\x0b\x5b\x39\xca\xc5\xa3\x1b\x12\xe7\xdb\x43\x5c\xeb\x49\x18\xe1\x03\xa0\xd4\x59\xfb\xe0\x86\x2c\xdb\xfe\xf0\xa0\xdf\xbe\x07\x60\xbe\xec\x81\xe0\x40\xec\xa2\x0f\xe5\x75\xf6\xb2\x85\xad\xd5\x59\xf2\xb6\x0e\x18\xed\x03\x6a\x1c\x88\x87\x87\x6c\xc8\x49\xf5\x94\x47\xd4\x08\x4a\x7d\x44\x8d\x18\x4a\x1e\x0a\xaf\x5a\xbb\xf9\x31\xae\x15\x3b\xe5\x83\x1b\xb2\x62\x7c\x79\x08\x5e\x35\xae\xe8\x21\x78\x75\x39\x83\x81\x1a\xa7\x77\xee\x3c\xdc\xd6\xe1\x3d\xde\x4f\xa0\xc6\x62\x61\xd2\x27\x50\x63\x33\xf4\xf2\x21\x1b\xd2\x48\x86\xe7\x24\xc2\x83\x9c\xc3\x87\xe0\xd5\xe6\xc8\x8a\x89\xca\xac\x6d\xa0\xc6\x5a\x50\x82\x1e\x0a\xaf\x0e\x04\xe5\xc3\x6d\x1d\x96\xbe\x7f\xb8\xad\x63\xe2\xcf\x78\x28\xbc\xaa\xca\xf7\x80\x1a\x37\xea\xd2\x53\x48\xd9\x71\x5e\xc8\x86\xec\x9e\xf7\xe2\x6d\x24\x8c\x13\x37\xa4\x77\xe1\x3d\xc5\x2b\x2b\xa0\x88\x6c\xc8\xc7\x15\x23\x1b\xf2\x40\xa0\x3f\x14\x5e\x3d\xb6\xcf\x10\x1d\xae\x34\x57\x72\x0c\x84\xc5\x43\x36\xa4\x79\x8c\x0f\xc1\xab\xf9\xb2\xc5\xfa\x61\xc5\x7f\xcc\x86\xf4\xf4\x57\x0c\x1e\xfd\x67\x41\x70\x0f\x1e\x4a\xaf\xbe\x7c\x2a\x71\x83\x9f\x16\x71\x83\xd5\xee\xd0\x7a\x9c\x40\xe3\x5a\x1f\x07\x4d\xf9\x20\xa0\xfc\x03\xa0\xac\x2e\x4a\x00\xca\x6a\x8d\xd4\x07\x40\x69\x8d\xe2\x07\x40\x69\x69\xc2\x07\x0f\xe5\x2d\xab\x6b\xb8\x79\xc8\x1d\x7c\xa8\xc9\xfa\xa2\x57\x3d\x24\x4a\x7a\xa1\xf9\x43\xa2\x64\xfe\xbc\x87\x9b\x47\xc6\xd0\x0c\x9e\x63\xc1\x88\x6b\x1d\x32\x68\x01\xe5\xe7\x2b\x24\x4a\xba\x7c\x00\xca\xf6\x3a\x32\x82\xe7\x64\x2f\x00\xca\xd5\xfc\x65\x6c\xdd\x77\x3a\x32\x0a\x93\x7e\x9e\x11\x3c\x47\x3a\xc1\x03\xa0\xd4\xd8\xf3\x50\x5e\xa7\xfa\x4d\xca\xeb\x4c\x74\x99\x27\x00\x65\xbf\xb1\x14\x3e\xb8\x21\xad\xc5\xf1\xe0\x86\xbc\xd1\xce\x1e\xdd\x90\xd8\xce\x1e\xdc\x90\xaf\xd4\x12\xd7\x9a\x3d\x46\xb8\x21\x4b\xb3\xf7\x00\x5c\x55\x96\x85\x1b\xb2\x2e\x7b\x30\xc2\x83\x23\x06\xa0\xbc\x0f\x9f\xa1\xf5\x14\xfb\x0b\xad\x6e\x11\x95\xf9\x0c\x0d\x3a\xf4\x00\xa0\x3c\x3e\xcf\x32\xc1\x6c\xf4\x37\x88\x10\x40\x1b\x7c\x06\x35\xad\x5d\x31\xe2\x5a\x2f\x47\x4d\x5c\xeb\x67\x96\x8c\x6b\x75\xd7\x11\xd7\x9a\xc9\x39\x7c\x86\x35\x12\x58\x4d\xe2\x5a\xd5\x7a\x1e\x00\xe5\x23\x45\xc3\xca\x6c\xcc\x35\x85\x57\x8b\x62\x9a\xc2\xab\x6f\xb2\x45\xcd\x6e\x70\xdb\x33\x41\x55\x0a\x12\x0a\xaf\x7a\x7f\xf4\x13\xa8\x71\x78\x63\xc5\x33\x49\x69\x71\xa5\x27\x5a\xeb\xf0\x3d\x6f\x93\x81\xbe\x49\x8d\x04\xbc\x30\x0f\x71\xad\x7a\x1b\x9e\x69\xdc\xbc\xcf\x28\xaf\xf3\x19\x0b\x6e\x48\xb4\xc8\x67\x1a\x21\xc0\xec\x82\x1a\xbb\x2b\x8d\x1b\x72\xca\x68\x71\x43\xde\xae\x34\x6e\x48\x0b\xfd\x3f\xa0\x46\x2f\x6a\x78\x3e\xe5\x75\x98\x6b\x82\x57\x2d\x84\xf0\x10\xbc\x7a\xe1\x27\x78\xc8\x86\xb4\xb4\xd7\x73\x99\xa8\xec\x33\x7c\x1d\x98\x18\x1f\x50\xe3\x83\xfb\xf2\xe1\x8e\xc7\xcf\x09\xc7\x0d\x99\x49\xea\x7a\xa8\xa1\x63\x25\xee\x27\x50\xe3\xb4\x86\xce\xc3\x6d\x1d\x87\x6b\x44\x0d\x9d\xa6\xf8\xa3\x86\xce\xe3\xf9\x23\x1b\xd2\xfb\xcd\x9f\x9b\x6c\x56\x4c\x38\xcf\x8d\x6a\xa3\x82\x74\x93\x68\x2e\xaf\xf3\x8e\x47\xf2\x10\x9e\xdb\x9a\xeb\xd0\x4e\x0d\x1d\xcb\xd4\x3f\x37\xa8\xea\xd3\x43\x88\xfe\x8c\xcd\xfb\xa1\x86\x8e\x55\xc1\x1f\x8a\xb2\xc6\xf5\x04\x3f\x66\xc9\x02\x4a\xb7\xcb\x8d\x07\x5d\xe9\x70\x6b\xab\x73\x98\x84\x9c\x03\xc9\x1f\xe2\x5a\x6f\x37\x79\x00\xca\xee\x65\xf5\x0f\x1e\xca\x13\x83\xc7\x43\xa2\xe4\x89\x15\xf8\xa1\x5e\xeb\x24\xdc\xea\xe1\xfa\xc7\x89\x26\xfc\xe0\xa1\x5c\x6e\x6b\x3c\x94\x02\xae\xe7\xc1\xd6\x2a\xf3\x7e\x4c\x19\x60\x5b\x3f\x68\x05\x32\x53\xe2\x5a\xb5\x26\x3d\x8f\xd9\x82\x50\xf4\x40\x9f\xcb\xf0\x98\xcd\x63\x8b\xca\x65\x0a\x12\x00\xe5\xc6\xc4\xf1\x3c\xd8\xea\x3c\xe0\xaf\x89\xa0\x2c\x0a\x80\xd2\xec\xbd\x07\x40\xd9\x3c\x1c\xb8\x21\x17\x56\xee\xe7\xd5\x56\xc7\x5c\xbf\x18\x3c\x80\x6d\xcf\xab\x87\xd9\x67\xd8\x92\x87\xfd\x99\x6d\xe6\x57\x88\x60\xc1\x61\xf9\xbc\xb8\xe9\xd4\x57\x70\x43\x5a\x7b\xe0\x31\x1b\x52\x06\xf6\x9a\xe8\x6a\x0b\xc0\xb5\xa4\x01\x83\x0e\x76\xca\x87\x9b\x3c\x3e\x6b\x64\x36\x24\x86\x8b\x87\xf2\x3a\x45\xa6\x4f\x51\x56\x73\xd6\x9e\x00\x94\x3d\xa9\x57\xe1\x86\x34\x45\xe8\x21\x1b\x72\x63\x9c\x78\x70\x43\x7a\x03\xdc\x83\x1b\xb2\x88\x48\x74\x43\x02\x75\x1f\xe2\x5a\x1f\x22\x4a\x9e\xe5\xfe\xf4\x19\x95\xe7\x48\xba\x7d\x00\x94\x96\x96\x7c\xc8\x86\xec\xaf\xcf\x62\xfd\x34\x47\x3c\x01\x28\x9b\x55\xf7\x1e\x6e\xf2\xd0\xdd\xf6\x88\x1a\x3d\x54\xdb\x7a\xc9\xb6\xb4\x25\xfb\x4b\x0c\x72\xb2\x3a\xdc\x90\xfb\xb6\x07\xea\xed\xca\x4c\x71\x43\x36\x75\x6d\xe2\x5a\x5f\x59\x39\xd9\x90\xd9\x15\xdb\x6a\xe5\xf6\x47\x70\xa7\x08\x88\xb8\xd6\xee\x79\x20\x78\xd5\x7a\x80\x0f\xc1\xab\x2f\x56\xd2\xd7\x9b\x3c\x30\xc1\xbd\x87\x5a\x5d\xa1\x85\x41\xae\xf8\x2c\xd6\x6f\x83\x41\x5e\xb2\x21\x8d\xaa\x78\xc9\x86\x54\x87\x7d\x0f\xef\xd0\x3b\x69\x81\x1a\x1f\x5b\x18\xe4\x5e\xdf\xc3\xe0\x81\x7e\xfb\xe2\x86\xac\x9c\xdb\x57\x37\x24\x0c\xf3\xe5\x8e\xc7\xf6\xf9\x0a\x71\xd7\xc5\xfe\xb4\x25\xdb\x22\xb8\x0c\x5c\xf3\x5a\x43\x07\x9c\xf1\x1a\xbc\x0a\xcf\x7a\x29\xca\x7a\x1c\xb6\x88\x2b\xdf\xfe\x32\x44\x87\x86\xca\x37\x51\x08\x01\xce\xf7\x92\x0d\x69\x62\xcc\x1b\xa8\xb1\x27\x9c\xfb\x6f\x22\x0c\x60\xfb\x4d\x7c\x01\xa4\xbb\xbc\xb8\x21\x0d\xb3\x7b\x09\x5e\x55\xdc\xbe\xa0\x46\x6f\x18\x7f\x75\x43\xa6\x9f\x95\x1d\x7a\x03\x50\x8e\x8e\x8b\xeb\x4d\xda\x5a\x19\x0a\x71\xad\x9d\xc3\xf8\x12\xd7\x5a\x9c\x88\xcc\x25\x3b\x38\xe6\x5e\x3c\x94\x19\x86\xf2\x66\x3d\xb0\x0c\x85\x44\xc9\x0c\x63\x78\xf1\x50\xf6\xc7\xf7\xe2\x68\xea\xd5\x7d\xa9\xd7\xda\xba\xbf\xb4\x06\x84\x63\xf1\x68\xda\x03\x97\xb4\xb8\xe9\x00\x94\x86\xd6\xbc\x1f\x40\x79\xd3\x22\xee\xda\xed\x42\xa2\xa4\x11\x1e\xef\x89\x56\x80\x1b\xe4\x3d\xa9\x27\x0c\xf0\x7d\xb9\xfe\xf1\xbc\x6c\x21\x3a\x70\x39\xbd\xc4\xb5\x0a\x4f\x5e\xca\xeb\x24\x17\x0c\x40\x79\xdf\xfe\x92\xca\x65\xc4\x37\xbe\x27\x6e\x3a\x60\xfe\x4b\x36\xe4\xc1\x81\x7b\x01\x94\x77\xf1\x19\x37\x79\x2c\x5b\xb0\x9e\xe6\x37\x71\x83\x20\x56\x5e\x01\x65\xf5\x19\xe5\x91\x10\x55\xaf\x80\x12\xc0\xfc\xe2\x86\xcc\x30\xda\xb7\x50\x6f\xd7\xaf\x70\x93\x87\x5e\x83\x17\x37\xa4\xc9\x13\x6f\x41\x6b\x5d\x3e\xe3\x68\x26\x7b\xe8\x1c\x69\x5b\x1c\xcd\xe9\x37\x59\x3f\xa2\x5b\x5e\xdc\x90\x86\x26\xbe\xb8\x21\x1f\x04\xde\x4b\x5c\xeb\xdf\x7b\x17\x55\xf9\x8c\x9b\x20\xdc\x91\x00\xca\x06\xae\x79\x2b\x6e\x3a\x99\x0d\xd9\x90\x39\xdb\x22\x42\x07\x7d\xec\x05\x50\x6a\xdf\x7c\xab\x89\xca\xcc\x0b\x80\x72\xb9\x0b\xbc\xc9\x23\xdb\x83\x80\x99\xd9\x25\xae\xf5\x73\x56\x70\x43\x3e\xb2\x41\xe2\x5a\x9f\x62\x0b\xad\xd5\xd5\x24\xae\xd5\x98\xfa\x97\xb8\xd6\x73\x39\x16\xd7\xcf\x51\x6f\x82\xe0\xe8\x8f\xa2\xac\xd9\xb1\x10\xd7\x6a\x54\xcc\xdb\x2c\x1f\x64\x0b\x54\x85\xff\xe4\xa5\x28\xab\xd9\x90\x2f\xe5\x75\x52\xf3\x97\xd8\x92\xc1\xc1\x2f\xc1\xab\xde\x14\xfe\x82\x1a\x4f\x1c\x6c\x2f\xa8\xb1\x7d\xde\xc3\x56\x2e\x7b\x21\x78\xf5\xb3\x2a\x64\x43\x0e\xcc\x6c\x2f\x6e\xc8\x8a\xd8\x7c\xbd\xc9\x03\x05\xe2\xd5\x0d\x89\xd9\xf2\xed\x5e\x95\x00\xb5\xb8\x21\x0b\xfe\x8c\x97\x6c\xc8\x49\xac\xd2\x4b\x36\xe4\xf2\xac\x70\x93\x87\xf5\x2a\x5f\xdc\x90\xde\x84\xfe\x76\x13\xcd\x19\x35\x6e\x48\xd1\xc3\xcb\x75\x1d\xd6\xa1\x7b\xbd\xae\x83\x80\xd8\x97\xeb\x3a\x6e\x9c\xfb\xaf\xd7\x75\x28\x10\xba\x85\x10\xec\x81\xb8\x64\xec\xe1\x2f\xd7\x75\x0c\x77\x08\xd7\x75\x4c\x30\xdd\xcb\x75\x1d\x2f\xfe\x93\x97\xeb\x3a\xf6\x97\x48\xfd\x31\x4b\x0e\x40\x39\x0e\x8f\x0a\x71\xad\xc3\x41\x0f\xe2\x92\xb1\x3b\xbd\x83\x6c\xac\xdb\x67\xd8\xea\xdc\x9e\xc4\xb5\x76\xc2\x67\xde\x00\x94\x73\xb8\xe5\x07\xd9\x74\x87\x2d\x58\xeb\xe9\xa0\xf1\x50\x4e\x7b\x50\x6b\xf5\x2b\x68\xad\x92\x0e\xa0\xec\x2e\xca\x10\x70\xf1\x95\xa9\x56\x00\x0d\x01\x28\x7b\x27\x24\xee\xc5\x0d\xb9\xb1\xae\xbe\x00\xca\x8d\x33\xec\x25\xae\xb5\x2b\x10\xb8\xfe\x51\x87\xd7\x4b\xa2\xe4\x79\xfa\x15\xdc\x04\xc3\xf7\x06\x4c\x8a\xad\x2b\xa0\x04\x0e\xbd\x93\xca\x7a\xd3\x67\xd8\xb2\x70\xda\xbd\x13\x37\xcf\x74\xd4\xd0\x87\x8e\xfe\x52\x5e\xc7\x04\x90\x77\xca\x5a\xd9\x04\x00\xca\x5b\xcd\x86\xeb\x1f\x0f\xdf\x13\x50\x92\x49\xf8\x52\x5e\x67\x2a\x8e\x2e\xb5\x02\x5b\xd8\x92\x65\xa6\x17\x45\x2f\xc9\x91\x7b\x89\x6b\xd5\xfa\xff\x5a\x94\x15\x8d\xf6\xbd\xa4\x8f\x59\xc2\x0d\x79\x61\x80\x78\x75\x43\x9e\xf6\x4e\xdc\xee\xe1\xa8\x63\xeb\x6a\x13\x7e\xc9\x86\x34\x7d\xf5\xe5\x8e\xc7\x61\x8b\x3b\x1e\x2f\xec\xa9\x2f\x77\x3c\x3e\x1e\x23\xe2\x5a\x45\x40\xef\x4d\x84\x80\x02\x1d\x37\x64\x75\xce\xcc\x86\x04\x84\xbf\xb8\x21\xbd\x70\xe1\x05\x50\x9e\xd9\xfe\xc8\x16\x54\xb3\xb9\x2d\x14\x00\xed\x94\xd7\x69\xae\x2d\xb7\x7c\x78\x77\xc7\x0b\x6a\x2c\x0a\x66\xdc\x90\xbb\xf9\x5e\xec\xcf\xaa\x88\x23\xae\xd5\x4b\xf5\xdf\x40\x8d\xdd\x82\x9f\x2f\xd9\x90\x66\x5f\xbe\x64\x43\x3e\xc4\xac\xbc\xa0\xc6\xe1\xfe\xc4\x0d\x59\x15\x6a\xa0\xc6\x02\xcc\x7f\x29\xaf\xb3\xd4\x06\x1f\xea\x41\x7b\x1e\x28\xaf\xd3\xd5\xd5\x28\xaf\x33\xb3\xdf\x0c\xad\xce\x12\x41\xef\x43\x0d\x08\x59\x0f\xa8\x31\x5d\x7e\x05\x37\xeb\xe1\xc8\x70\xb3\x3a\x4b\x94\xd7\xb1\x34\xef\x4b\x51\x56\x6f\x1f\x7f\x29\xca\x2a\xba\x7d\x29\xca\x6a\x0d\xf4\x97\xa2\xac\x0d\x07\xe9\x0b\x6a\x7c\x3f\x2d\xea\x41\xab\x66\x51\x94\xf5\x96\x41\x5b\x43\x87\xca\x38\x2f\x35\x74\x12\xa8\xea\xa5\x86\x4e\x96\x87\x04\x6a\x1c\x96\x86\x7a\xb9\xff\xf1\xb9\x7c\x4f\x5b\xb2\xdf\x24\x38\x10\x14\xf7\x52\x43\xa7\x25\xdf\x43\xf4\xe3\x19\x78\x17\xa2\x5f\x4e\xb4\x2c\xbf\xc6\x7c\x12\xbc\x6a\x51\xfe\x97\xa2\xac\x39\xf9\x4b\x83\x3b\xd9\x2f\xb8\x21\x43\xa8\xfd\x98\x25\xe3\xa1\xb4\xe2\xd9\x4b\x79\x9d\xe7\xf0\x23\x24\x4a\x62\x11\x7b\x17\x6e\x02\x17\x8c\x7a\xad\x66\x01\xbd\xdc\xf2\xf1\x81\x27\x01\x28\x8b\xe5\x83\x5e\xae\x86\xcc\x82\x15\x00\xa5\x37\x81\xbd\x5e\x0d\x49\xc4\xc5\x0b\xa0\xec\x6e\xb3\x4d\xe5\x2b\xdc\x19\x2f\x71\xad\xc9\x83\x0a\xa0\x9c\x58\xe0\x5e\x00\xe5\xe4\xae\xe0\x17\x37\xa4\xe1\xef\x2f\x6e\xc8\x2d\xa3\xdd\xc6\x0d\xfa\x8c\x94\x01\xb5\xd6\xcd\xfd\x81\x1e\x77\xdd\x90\xea\x08\xc4\xb5\xde\x42\x9e\x00\x94\xf5\xa3\x5d\x6f\x72\xec\x3d\x46\xc4\xb5\x9a\x3d\xf4\x1a\xd7\x8a\xfd\x6f\x19\xd7\x0a\x80\x5d\x64\x43\x5a\xd4\x73\x71\x35\xa4\xb7\xa6\xac\xc3\xe0\x2b\x9f\x71\xc9\x15\xa6\x91\x45\x36\xa4\xa9\xc9\x8b\x6c\x48\xaf\xd1\x5f\xd4\x6b\xb5\xbc\xe9\x3a\x2c\x0a\xd9\x69\xa1\x95\x57\xdf\xc3\xe0\x91\xfc\x26\x6e\x1e\x00\xec\xa2\x28\x6b\xfa\xb4\xd0\x5a\x8b\xdf\xe4\x68\x36\x29\x62\xfd\x80\x7b\x8b\xb8\xd6\x8d\xb3\x76\xe1\x86\xec\x68\x6e\x2b\x51\xca\x9c\x23\xb6\x02\x50\x8e\x8a\x3e\xb6\xbc\xff\x51\xfa\xbc\xff\x11\x77\xd4\x4a\xd8\xca\x3f\x3d\xa0\xd5\xb1\x3f\x17\x71\xad\xc7\xf6\x97\x78\xd0\x1f\x9f\xe1\x0b\xa8\xf6\xc7\x55\x02\x30\x86\xc5\xfd\x8f\x19\x77\xcd\xe2\xfe\xc7\x7e\xd9\x22\xd1\x3c\xf9\x95\x10\x8d\x37\x3b\x6b\x11\xd7\x7a\xc0\x22\x17\xe5\x75\x26\xa2\x7f\x65\x52\x06\x70\x97\xae\xac\xd6\x6a\x8b\xf2\x33\x9c\xb1\x95\x89\x10\x00\x84\xaf\x8c\xc1\x03\xed\x6c\x65\x23\x90\x98\x17\xef\x7f\xbc\xed\x8f\x1a\x10\x8f\xfd\xc1\x5a\xb3\x2d\xdc\xc8\xce\x0b\xc1\xab\xfd\xf2\x2b\x44\x08\xbc\xb6\x16\x4c\xc3\x91\x91\xf2\x01\x02\x5a\xb8\x21\x3b\x4c\x78\x51\x5e\xe7\xe4\xac\xac\x53\xd6\x43\x7f\x94\xd7\xa9\xb0\xf9\xc5\x2d\x1f\x03\x23\xd1\x3a\xa1\x0f\xb7\xd9\x02\x35\x5e\x24\x36\xad\x93\xb8\x6b\x04\xec\x22\x1b\x72\x4c\xfb\xa3\xa8\xee\xa7\x3f\x0c\x3a\xee\x25\x50\xa3\x9a\xe9\xd2\x0d\x09\xe6\x59\x81\x1a\xbb\x66\xbd\x45\xf0\xaa\xe1\x8e\xeb\xa4\xf2\x23\xb5\x17\x57\x81\xb5\x62\xf3\x5e\xb8\x21\xbd\xae\x77\x15\xeb\x25\xb3\xd2\xba\x21\x09\x77\x5c\xba\x21\xd1\xbc\x17\x6e\xc8\x1b\xa5\x6b\xe1\x86\x34\xe4\x76\x11\xbc\xfa\x80\x3a\x16\x35\x74\x5e\xd7\x88\xab\x3c\xa2\xea\xca\x0f\x59\xf2\xa2\xbc\x8e\x97\xf1\x2f\x12\x25\x4f\x74\xae\x45\x5c\xab\x01\xd3\xab\x98\xa3\x6d\x07\x68\xad\xe8\xbe\xab\xe0\x41\xc7\xd1\xb2\xa8\xd7\xea\x3d\x6b\x0b\x0f\xa5\xb5\xae\x56\x25\x42\x80\x24\xe6\x55\xc9\x56\x72\x69\x03\x50\x8e\x43\x66\x53\x09\xbe\x92\x9d\x55\x82\xaf\x70\xde\x2c\xe2\x5a\xbd\x28\x72\x51\xaf\xb5\x1f\x7e\x93\xa2\x82\xc9\x16\x71\x83\x40\xa5\x45\x5c\xab\xee\x85\x55\xc9\x56\xc2\x00\xb1\xa8\xd7\xea\xdd\x7b\x2b\x00\xe5\x1c\x98\x23\x56\x00\xca\xf9\x60\x49\x5b\x01\x28\xa7\x57\x9f\xaf\xe6\xd5\x89\x2c\x43\x83\xf5\x50\x8f\x76\x11\xd7\x7a\x60\xbf\x5d\x94\xd7\xc9\xb2\x09\xe2\x5a\xbb\x63\x69\x54\x9e\x43\xe0\xad\x66\x8d\x04\xdf\x63\x8d\xdc\x74\xb8\x1a\x1b\xf6\xf7\x85\xab\xb1\xcb\x92\x71\x35\x76\x20\xe4\xe2\x26\x8f\x21\x45\x80\x46\x33\x2c\x17\x37\x79\xbc\xf8\xa9\x57\xc7\x1e\x8e\xdf\x78\x75\xc4\x9f\x63\xe1\x26\x8f\x1b\xd7\xed\xe2\x26\x0f\x9d\x22\xab\x8b\x9c\x18\x19\x85\x57\x33\x9a\xf7\xea\x88\x07\x57\x1a\x57\x63\xc9\x7e\x05\xf1\x9e\xfd\x0a\x25\x66\x64\x13\xdd\xfb\x03\xd9\x4b\xdc\xe4\x61\xea\xcd\xe2\x26\x8f\xf1\x19\x19\x97\x24\xdd\xf6\x40\x00\x12\x66\x8c\x05\x68\xcc\xee\x64\x40\xa3\xb1\xb9\x8b\x3b\x1e\xb5\xa7\x2e\x5c\x8d\x16\x0c\x5a\xc4\xae\x66\xec\x9b\x8b\xd8\x55\xab\x0b\x2f\x62\x57\x3f\x0c\x1a\x57\xe3\x70\x5e\x70\x35\x2e\x2c\xa1\x0b\x57\xe3\xac\x8e\x85\x00\x47\xa9\x0d\x64\xd8\xb7\x82\xc4\x8c\x47\xcf\xca\x00\x14\x3f\xf6\x00\x7d\xb2\x41\x5c\x8d\x43\xc6\xce\x4d\x1e\xba\x7c\x17\x37\x79\x2c\x10\xec\x22\xe3\xb1\x3f\xb6\x10\xef\x9e\xdb\x69\x1d\x19\xe6\x85\x8c\xc7\x8e\xbe\xb9\xc8\x78\xbc\x89\xda\x5f\xde\xe4\x21\x73\x23\xe3\x71\xbe\xb6\x60\x2f\xb2\xcf\x0f\x32\x84\x3e\x33\x1e\xa7\xcf\x1e\x72\xf9\xec\x81\xfd\xb9\xed\x21\xce\xd8\x83\xa3\x7a\xe1\x6a\xb4\xce\xca\xba\xa8\x43\xe2\xd9\x0c\x64\x58\x36\xfe\xa1\xe5\xfd\x8f\x38\xcd\x17\xae\x46\x2f\xc5\x58\xd4\xc9\xe9\x72\x94\xcb\xf5\xb3\x85\xf8\x53\x49\xf0\xba\x0e\x05\xd7\x45\x46\x60\xb3\x35\x99\x4f\xf6\xf5\x85\xfa\x82\x02\xb8\x2e\x2f\xf1\x62\xd4\xd6\xc9\x21\x82\x79\x51\x27\x67\x7f\x7a\x57\xbc\x3b\xea\x38\x7f\x51\xbd\xfc\xc7\x2c\x19\x2f\x64\x97\x65\x99\x0c\x89\xd6\xba\x00\x8d\x46\x3b\x2e\x62\x57\x8d\x87\x58\xdc\xe4\x61\x1a\xf1\xc2\x0b\x79\xbb\x95\x6e\x63\x8f\x7d\x46\x58\xb9\xac\x87\x9a\xac\x05\xd7\xd8\xa2\x84\xce\xa5\x44\x05\x34\x26\x72\x9e\x16\xb1\xab\xde\x5c\xb0\x02\x34\xf6\x47\xe6\x16\xa0\xb1\x59\x71\x69\x05\x68\xec\xdd\xe3\x4e\xec\xaa\x29\x8e\xeb\x31\x63\x87\x09\x0c\xd0\xd8\x93\x8c\xc8\x64\x48\x72\x9e\x16\xc9\x90\x1d\x73\xcb\x0a\xd0\x38\xbb\x5b\xf7\xe1\xa6\x84\xe6\x7b\xb8\x02\x14\x47\xd4\x64\x35\x5d\x76\x01\x1a\xbd\x27\x79\x3d\x46\xa9\x30\x67\x80\x46\x73\x90\x16\xa0\xb1\x74\x5b\xd4\x64\xc5\x5d\xba\x1e\xf3\xe8\xfd\x26\xae\xc6\xed\x58\x4c\x66\xa5\x87\x00\x8d\xf3\xc1\x59\xb4\xc8\x78\x9c\x6a\x3d\xaf\xf4\xd1\x83\x37\x79\x00\xf3\x17\x19\x8f\x3a\x45\xd6\x8b\xab\x43\x0d\x0c\xd0\xf8\xba\x21\xb9\xc9\xe3\x55\xfc\xbd\x24\xcb\xbb\x21\x5f\xb7\xae\xfd\x05\xeb\x29\xdd\x91\x61\x0f\x77\xae\x01\x8d\x3a\x48\xd7\x4b\x4d\xe4\xe1\xa8\x29\x4c\xea\x3a\xbc\x1a\xa5\x98\x5d\x5c\x8d\xa7\x22\x87\xfb\x1f\xbd\xcc\x73\x2d\x03\x38\x6d\xe1\x8a\x93\xb1\x0b\x1a\xdd\x3d\xb8\x1a\x93\xe2\x81\x8c\x47\x0b\xbe\xaf\xe5\x4d\x10\xfe\x12\x7f\x06\xb6\xcf\x45\x09\x9d\x0f\xb5\x8b\x4b\xca\x70\xd6\x2e\x6e\xf2\x98\x6a\x59\xb8\x1a\x1f\x2c\xd9\x6b\x11\xe0\x78\x3a\x6a\x32\x1e\x15\x55\xcb\xb4\x23\x76\x6b\x20\xc3\xaa\x71\x62\xe1\x6a\x3c\x28\x2d\xb4\x3e\xae\x46\xbe\x42\x80\x6a\xf5\xf0\x53\x78\xd5\x8a\xbe\x8b\x12\x3a\xa6\xea\x2f\x90\x61\xfa\x7c\x05\x57\xb1\xa7\x71\x9b\xb1\xca\x8a\x6d\x90\xd3\xe9\x2f\x2f\x6c\xd0\x8c\x93\x00\xd5\x2d\x96\xd8\xa6\x3d\x30\x13\x20\x43\xaf\xe6\x5a\x20\xc3\x0d\x82\x5d\x16\x5e\xc5\x49\xbf\x29\xbc\x6a\xcd\xee\x4d\xc6\xe3\x85\x83\x74\x5b\x78\x95\x33\xbd\x29\xbc\x6a\xc9\xa5\x7d\x58\x6e\xde\x5f\x5a\x73\x7d\xd1\x0a\xd1\x5f\xaa\xcf\x82\xbf\x24\xd0\xca\x06\x19\xca\x43\x36\xae\xc6\xe7\xf6\x99\xc8\x29\xd3\xa2\xe6\xf3\xb2\x77\x02\x1c\x4f\xdf\x0b\xfa\xac\x93\xbd\xbd\xff\x11\x9b\xf7\x06\x19\x26\x38\xe6\xf6\xfe\x47\xf0\xd0\xa6\xf0\xea\x89\x30\xdc\xb8\x1a\x6f\x4e\xff\xc6\xd5\xf8\xa5\x55\xfc\x98\x25\xef\x44\x61\x3d\xac\x2d\x1b\x2f\x64\xc2\xd3\xbf\xf1\x42\x5a\x49\x6c\x5b\x93\x55\xd2\xa9\xc9\xda\x5f\x07\x46\x6c\x60\x73\x60\x04\xe8\xa0\x49\x6d\x80\xa1\x05\xf2\x76\xc2\xa6\x58\xed\x0f\x9b\x22\x1a\xd1\xce\x66\xe5\x30\x2d\xd9\x32\x32\xf4\x40\x99\x1c\xaf\x24\xdc\x94\xc9\x39\xb6\xef\x05\xfb\x6c\x48\xbf\x0d\x30\xec\x2e\x34\xb7\x75\xcc\xe4\x2f\xb1\xb9\x0d\x7b\x00\x18\xe2\x48\xda\x19\xc3\x05\x4c\x71\x73\xfd\xe3\x35\x7c\x76\xb3\x60\x2c\x11\xc0\x70\x60\x95\xdd\xd4\x5d\x35\x77\x69\x67\x2f\x7a\x82\x76\xe2\x53\xad\x2b\xbb\xcd\x6a\x74\x83\x9c\x5e\xf4\xc4\x58\x00\x86\xa7\xf3\xe9\x6d\x1d\xdb\x56\xac\x91\x36\xcc\x4d\x56\x63\x03\x26\x6e\xb2\x1a\xa7\xb3\x44\x56\xa3\xee\x85\x4d\x56\xa3\x47\x7a\x03\x0c\x2d\xf5\xb8\x71\x27\x26\x9c\xa7\xfb\x24\xa1\x3a\xfb\x5e\x1c\xbf\x0b\x77\xd4\x06\x18\xee\x61\x0f\x78\xc2\xd1\x0d\x37\x59\x8d\xde\x90\xb6\x0b\x15\xc8\x1e\x5b\x09\x73\x12\xa3\xe6\x8e\x47\x0b\x7f\x6f\xee\x78\xb4\x6a\xdb\xc6\x9d\x68\x82\xd2\x2e\xde\x11\xc8\x7c\x06\x30\x9c\xf3\xf3\x4b\x8e\x1f\xcc\x6d\x7f\xdc\x89\x7e\x93\x32\x32\xb0\xdd\x0d\xfa\x7b\x70\x0f\x6d\xd0\x9f\x76\xc3\x1d\xe8\xaf\x6f\x2c\xa8\x9b\xac\xc6\xbd\x6d\x11\x04\x47\x25\x90\x5d\x28\x73\x84\x57\x7e\x57\x2a\x90\x21\x80\x76\xb5\x8c\x0c\x73\x46\x56\x63\x97\x86\x4a\xc2\x38\xd8\x73\x57\x82\xa8\xb0\xfe\x6f\x6f\xeb\x40\xc0\x6e\xdc\x89\x1a\x9e\x36\xc5\x55\x15\xfd\x1b\xf4\x57\xc0\x4a\xbb\x92\xb5\xd9\xec\x1d\xcd\xad\xfb\x4b\x12\xfe\xbb\xbd\x73\x11\x99\x67\xac\x52\x72\x5d\x16\x59\x8d\xb4\xb1\x3f\xea\x72\x63\x02\xd8\xb8\x13\xad\xc4\xb8\x71\x27\x4e\x8c\x3d\x9b\x20\xd4\x0c\x08\xdf\xcd\x8b\xd6\xd8\x21\xcd\xba\xdc\xf4\x4e\x10\x6a\xc7\xd1\xb9\x09\x42\x15\xd7\x6c\x6e\xeb\x28\x98\xfc\x76\xb8\x13\xbb\xd7\x93\xee\x46\x56\x1c\x4c\x7f\x37\x8a\xff\x3e\xf6\x40\xf1\x58\xb0\xc4\x6e\xc4\xbf\xbb\x7e\xd6\xc2\xf9\xbc\x87\x4d\xb8\xdb\x5f\x9c\xbf\x8d\x0f\x68\x7f\xee\x78\x84\x22\x82\x50\xad\xd9\xb3\x41\x86\xc5\x51\x7f\xb2\x1a\x99\x41\x82\x50\xab\xf4\x75\xca\x8c\xc9\x19\xcc\x6a\xc4\x21\xbb\xcd\x6a\x04\x2f\x6c\xb2\x1a\x8b\x1c\x93\xac\xc6\xb8\x41\xfd\xc7\x2c\x99\x84\x47\xc3\xd8\x37\x09\x8f\x0f\xe0\x76\x77\x82\x38\x00\x6a\x1b\x4f\xa3\xd9\x43\xbb\x13\xfa\x2f\xe3\xeb\xa4\x6e\x78\xdc\x29\x93\x63\xf1\xf2\x4d\x99\x1c\x9d\x30\x1b\x77\x62\x03\x88\xee\x41\x85\x35\x7b\x18\x64\xc5\x29\x0b\x07\x17\x05\xc9\xa4\x06\xee\x0c\x8f\x34\xa0\xf1\xb3\x28\x80\xc6\x7b\xf9\x9e\x9e\x54\x26\x02\xd0\xe8\xc5\x86\x7b\x70\x34\x6f\xdf\x7b\xd0\xc0\x58\x76\x41\x23\x56\xaf\x3d\xd0\xbc\x65\xb4\x80\xc6\x0b\x4d\x63\xe3\x4e\x7c\x88\x44\xd9\xd3\x8b\x9e\xf8\x0a\xf1\xa9\x17\xc6\x82\x6d\x7c\xaa\x0c\x7a\xea\x09\xf7\x97\xb2\x1e\xe6\x65\xea\x09\x67\x2b\x79\x5b\x07\x8e\xb9\x3d\x29\x03\x04\xb2\xd8\x80\xc6\x23\xfb\x0c\xd0\xaf\x18\xfb\x80\x46\x47\x46\x71\x47\x37\x9d\x65\x72\x30\x6a\x6c\xaf\x7f\x54\x5f\x09\xd0\x38\x12\xa0\x78\x5f\x06\x19\x31\xf3\xb8\x13\x1b\x25\x82\x76\x80\xc6\xf9\xe0\x35\xd8\x5c\xff\xb8\xa8\xc1\xbc\x29\x93\x53\x88\xf7\xd8\x17\xa9\x37\x6e\x56\xe2\x53\xbd\x0b\x79\x5f\x5e\xa4\xe3\x7b\xb8\x83\xb1\x72\xef\x0b\xd1\x88\x37\x7f\x03\x1a\x37\x7a\xdc\xbe\xb0\x79\x7b\xc4\xbc\xe3\xf1\x76\x2c\xf8\x2c\x64\x83\xc4\xa7\xbe\xb2\x4f\xe3\x53\x5d\x3f\x6f\xeb\x40\xbb\xde\xde\xd6\x21\xc3\x24\x3e\xd5\x14\xf1\x4d\x7c\xaa\x89\xfb\x9b\xf8\xd4\x66\x7f\xb7\xac\x95\x91\x05\x32\x9c\x5d\xd1\x81\x3b\xd1\x94\x8f\x8d\x3b\xd1\x7b\xae\xf7\x4d\x24\xc3\xe5\x7b\x78\xfa\x15\x16\x20\x43\x2d\xbd\x1b\x77\x62\x76\xe6\x6f\x12\xe2\x81\xeb\x9b\x20\xd4\xf1\xf8\x4d\x6c\xfa\x0a\x43\x82\x50\x0f\xc2\x01\x37\x65\x72\xbc\xa2\x73\x13\x84\xba\xb1\xae\x6e\x90\xa1\xf1\xbe\x9b\x20\x54\xdd\xeb\x1b\x77\xa2\xc1\x7a\x9b\xe2\xaa\xc6\xdb\xef\x47\xc3\xa1\xbf\x24\x2b\xee\xf3\x4d\x8a\xab\x62\xa6\xd9\x22\x43\x4f\x15\xc5\x55\xef\xcf\x57\x48\x18\x77\xae\x41\x86\x06\x93\xee\xc7\xac\x3f\xdf\x8b\xfd\xf9\x62\xa3\xdd\x20\xc3\xae\xf0\xb5\x16\x0e\x86\xbc\xfd\x1a\xe4\xc7\x2e\x30\x08\x15\x07\xfe\x06\x19\x6e\x85\x13\xc8\xb0\x3b\xd7\xaf\x41\x70\x8c\xfa\x45\xb5\x51\x61\xa1\xb8\xea\xab\x30\x7c\xbd\x43\xcf\xb1\xe8\x73\x72\x2c\x44\xda\x28\xde\xb9\xe3\xf1\x56\x0f\xc7\x9d\x18\x35\x58\x7e\xcc\x92\xbd\xfe\x51\xbd\x83\xeb\x1f\xbb\x8b\x49\xc2\xa3\x15\x21\x36\xf1\xa9\x09\x6b\xcb\xa6\xee\xea\xc2\x34\xbf\x97\x59\x63\x90\x00\x68\x3c\x3c\x38\x01\x1a\xe7\xe9\x04\x72\xfd\xe3\xa5\xe6\x8d\x3b\xf1\x50\x2e\x73\x5b\x47\x51\xbb\xe6\xfa\xc7\x4b\x3d\x80\x84\xc7\xdb\x69\xc1\x9d\xf8\xa8\x17\x2f\x2b\xc8\x31\xb9\xcb\x3b\x02\x7d\x0f\x9b\xb7\xf2\x8e\xba\xab\x2f\xc0\x77\x6f\xec\x55\xb2\x89\x8d\x4d\x58\xe6\xc6\xf5\x8f\x8f\x9a\x30\xee\xc4\x4b\xc1\x85\x3b\xb1\xaa\xb5\x7a\x5b\x47\xf3\x3d\x8d\x1a\xbe\x87\xd4\x74\x76\x01\x8d\x16\xb1\xd9\x80\x46\xdd\x19\xdb\xba\xab\xd8\xca\xf7\x26\xfe\xf6\xd3\xfb\x43\xcb\x5f\x12\x7f\x2b\xc3\x34\xab\x51\x0c\x42\x56\xe3\x0a\x06\x96\x8e\x03\xfa\x82\xd9\xa4\xe3\x80\xbe\xd0\xf4\xd3\x71\x60\xf3\x8e\xa3\x92\x8e\x03\xd1\x58\x7d\x0f\xd1\x18\x51\xe6\xe9\xa0\x4c\x0e\x57\x50\xa5\x83\xf8\xd4\x15\x7a\x63\x3a\x0e\xb2\xc6\x62\x5e\xd2\x71\x90\x50\x1d\xfa\x74\x3a\x70\x27\xe6\xe4\x7b\xd2\xf7\xd2\x32\x3e\x7c\xd1\x62\xd4\x17\xbf\x4c\x8c\x3a\x80\x7d\x3a\x12\xa3\x0e\x8f\x42\x3a\x74\x12\xde\x8c\xf3\x73\x73\x23\x5f\xf9\x94\x4c\xa5\x87\xc4\xa8\x63\x87\xa4\x23\x31\xea\xc7\xf7\xc0\x4a\x8f\xfd\x31\xea\x88\xcd\x48\x47\x42\x20\xbc\x7e\x13\x5d\x74\xf9\x4d\xeb\xde\x31\x83\x89\x55\xd9\xbe\x87\x13\x2d\x34\xa2\x74\x24\xa1\x2e\x33\x91\x50\x58\x4e\x28\xca\x38\x99\x2a\x73\x96\xb1\x92\x56\x7a\x30\xb4\xb4\xf2\x4d\x6e\x6e\xdc\xc5\x16\xd5\x7e\x3b\x34\x64\x8a\x17\x0d\xd6\x28\x7b\xbd\x11\x23\x03\x0b\xee\xe9\x33\xb0\x60\xb7\xbf\xa0\x8f\xfb\x0a\xd3\x91\x11\x78\xdd\x91\x21\xf0\x02\x75\xa4\x23\xe3\xa4\x6f\x7e\x13\xfa\x86\xbd\x43\xdf\xb4\x05\x94\x4f\xf4\x77\x42\xdf\xcb\xcc\x9f\xd0\xe7\x9c\x9d\xd0\xe7\x8a\x9d\xd0\xf7\xfa\x1e\xf4\xbd\x8c\xf3\x84\xbe\x97\xb1\x9c\xd0\xf7\x32\x9f\x27\xf4\xbd\x8c\x9a\xdb\x19\x49\x93\x4e\xc7\x69\x95\x09\xbf\xf9\xf0\xcc\xb1\x80\x67\xb3\xbf\xa4\xc0\x54\x66\x27\xeb\x08\x3c\x68\xe9\x08\x4c\x9c\x9c\x02\x0d\x1b\x6a\x71\x04\x1e\x99\x91\xe1\x08\x3c\x32\xf3\x89\x23\x90\x82\xa6\xe9\xf0\x32\x8d\x0d\xb5\x86\x8f\x7e\x89\x95\x1f\xb1\xe4\x74\x78\xdd\x7f\xb2\x03\x7c\xd8\x87\x9d\xa3\x8f\x15\x8e\x03\xd7\xfd\x1f\x6e\x10\xa0\x20\xde\xd9\x74\x10\x59\xca\xbd\x02\xe9\x20\xb2\xf4\xa8\x4c\x19\x05\x6e\x8e\xc2\x24\x51\xe0\xe6\x70\xb3\x56\x53\xa1\xe9\x8f\xc8\xd2\xa3\x41\x10\x91\xa5\x94\x0a\x4c\x47\xd5\x51\xc6\x37\x89\x2c\x3d\xa6\x5f\x41\x9f\x96\x4d\x70\x71\x23\x97\x33\xa6\xc3\x7c\xc4\x9b\xe3\x47\xce\xe1\xe1\x01\x07\xee\x1d\x1e\x4d\xe0\xde\xf1\x3a\x16\x68\xf0\x68\x92\x73\x78\x2c\x7b\x80\x06\x0f\x6a\xb3\x7e\x1d\xdf\x24\xe7\xf0\x58\xbc\x07\xdc\xc3\xb5\x99\x0e\x9d\x7d\x9b\xaf\x78\x97\x86\x87\x18\x87\x5e\x4a\xf4\xde\xbc\x6f\xc1\x5f\x62\x91\x76\x63\x71\x6d\x7f\x72\x0b\x72\x6d\x7f\x72\x83\x70\x01\x63\x3a\x7d\xc6\x05\x8c\x27\x2b\x46\x79\xd3\x24\x83\xd6\xd9\x77\x72\x00\xbc\x13\xa3\x32\x13\x44\x81\x72\xa1\x51\x3a\x88\x02\xa5\xf2\x70\x3a\x80\x6d\x38\x37\xd2\x41\xee\x20\x77\x54\xa4\x83\xeb\xf7\x41\x47\xe9\xe8\x26\x21\xb1\x62\x38\xed\x92\x8c\x1d\xa7\x5d\xf3\x30\x76\x2f\x8a\xb4\x3f\xc6\x39\x98\x17\xee\xbd\x48\x32\x1b\xee\xbd\x48\x32\x8d\x61\xf1\x79\x66\x1e\xc7\x1c\xf1\x2c\xe9\x00\x63\xa5\x8b\xf9\x1c\x58\x57\x65\xfa\x64\xf6\x25\x77\x01\xc1\x96\x49\x11\x40\xcd\x97\x74\x33\xf3\x14\x11\x4d\x37\x2b\x4d\x11\xd1\xf4\xf0\x8c\x22\xa2\xe9\x61\x9c\xb8\xd4\x92\x0c\x05\x97\x5a\x5a\x7c\x73\x72\x21\x95\xa7\x83\xec\xbd\xb4\x7c\x8f\x91\xb9\x97\x40\x47\x69\xfb\x1e\xbb\xc0\xfd\x02\x3a\x4a\x1e\x70\xd0\x51\x3e\xa0\x76\x9a\x3d\x6b\xef\x68\xd7\xee\x17\x82\x2d\xb9\x2d\x27\x1d\x04\x5b\xe6\xcc\x9e\xe0\x2e\xc3\x2c\x93\xe2\x2e\xc3\x9c\xf9\x25\x77\x19\xe6\x93\x59\xc2\xa5\x46\xf9\xcf\x74\x10\x6c\x99\x0b\xab\x42\xb0\x25\xc9\xe4\xe9\x20\x43\x2f\x57\xbf\x42\x86\xa5\xbb\x87\x80\xca\xdc\xec\x0f\x1a\xba\xcf\xa0\x41\x61\x01\x02\xca\xdd\xde\xa1\xa1\xdb\x1f\x34\x74\xe6\xcc\x5b\xee\x07\x2d\x6e\xb9\xcf\x93\x6f\x72\xcb\x7d\x9e\xac\xbb\x85\x42\x3b\xbb\x87\x42\xa1\x59\xa1\x86\x6f\x2c\xbb\xb3\xa8\xeb\x42\x59\xd4\x74\xe0\x1b\xdb\x17\x73\x46\xed\x96\x7c\xb3\x5b\x49\xb5\xcb\xee\x17\x51\xce\xe3\x57\xa0\x41\x25\x81\xa0\xc9\x08\xcb\xfc\x31\x4b\xa6\xac\x4b\x96\xf5\xe8\x1a\x93\xbd\xe0\x1a\xcb\x8b\x6d\x4d\x16\xde\x70\xf3\x50\xd6\x25\xbb\xe9\x28\xeb\x42\x81\x9b\x74\x3c\x90\xe7\x56\xc2\xfd\x75\xca\xe6\x71\x7f\x9d\x07\xc4\x3e\x56\x55\xb2\x05\x08\x57\x93\x7a\x2c\x88\x69\x0f\x78\xde\x0f\x16\x85\x98\xc9\x53\x96\x45\xcc\xe4\x29\x93\x32\xd3\x2e\x33\x16\x0a\x7e\x52\xd9\x3f\x1d\x80\x9c\xf3\x64\xca\x2c\xf8\xe9\xa6\xb3\xe0\xa7\x63\x01\xe4\x9c\x85\xde\x29\xf8\x79\x16\x68\x20\xd3\x8e\x6b\x2a\xd3\xf1\xa2\x73\x25\x16\x8c\x4c\x3b\x8a\x26\xa6\x83\x82\x9f\xe4\xca\xa7\x83\x82\x9f\x49\xa6\x6f\xc1\x4f\xb7\x2e\x99\x76\xa7\x1b\x12\xf7\xd7\x29\x73\xc3\xfd\x35\xd5\x42\x5e\xe8\x53\xeb\x59\xd0\xd7\xe9\x1d\x24\x73\xca\xf8\x28\xdd\x72\xaa\xcb\x2c\xe8\xbb\xa0\xc8\x7b\x07\x65\x59\xcb\x32\xf5\x50\x44\xa6\x1d\xc5\x61\xd2\x01\x92\x39\x65\x59\x20\x99\x53\x3d\x75\x79\xef\x19\x33\x68\xa6\x9d\x7a\x31\xee\x2f\xae\x30\x4a\x07\xee\xaf\x53\x6d\x09\x24\xd3\x36\xdb\x1a\xf7\x57\x52\x8c\x2d\xab\xb6\xd1\xc2\xfd\x75\x2e\x68\xe7\xde\xc1\xd3\x3d\xc8\x0d\x12\x58\xdc\xd3\xb1\xb5\x6f\xb2\xb6\xb8\xbf\xb0\xc3\xa6\x63\x93\x04\xeb\x6a\x52\x83\xa5\x28\x9c\xbc\xac\x5e\x46\x04\x5a\x29\xe2\x0c\x6b\xb0\xa8\x03\x11\xfc\x58\x92\xdf\x24\xf8\xb1\xf8\x5e\xac\x51\x51\x74\x6c\xbd\xeb\x31\x9f\x89\x1a\x2c\x05\x4c\x90\xa8\xc1\x52\xc2\x15\x97\x92\x97\xd5\xc3\x26\x12\xc1\x8f\x85\xd5\x4c\xd6\x60\x41\x87\x4d\xd4\x60\xe1\x4a\xde\x94\xa8\xc1\x52\xd8\x05\x89\x6c\xba\x32\xfc\x25\xf4\xa1\x4f\x27\x6a\xb0\x94\x40\xb0\x29\x81\x56\xb8\xae\x2d\x25\x6a\xb0\x94\xe1\x2f\x8d\xbb\xb6\x77\xe8\xbb\xec\x0f\xfa\xc2\xf3\x91\x12\x2e\xae\xc2\x7e\x49\xb8\xb8\x4a\xb8\xf0\x52\xc2\xc5\x45\xd9\xaf\x94\x70\x71\x95\x87\xf7\x70\x71\x95\xcb\x16\xf4\x5d\xd0\xc0\x55\x10\x05\x05\x29\x51\xd4\x93\xea\x22\x29\x71\x15\x44\xb9\x99\x41\x82\x1f\x29\xdf\x9a\x12\xc1\x8f\xe5\xf5\x9b\x14\x73\x80\x4f\xa4\x84\x9b\x2e\xf9\x15\x68\x88\x28\xaa\x94\x28\xdc\x89\xf1\x25\x25\x02\x1c\x0b\x3b\x2b\x11\xe0\x58\xd8\x59\xc9\xfb\x03\x17\x23\xfb\x14\xee\x9c\xb4\x82\x86\xca\xce\x4a\x14\xee\xe4\xa2\xe4\x94\xbc\x75\x1e\xd5\x26\x71\xdd\x43\xcd\x3f\xa9\x97\x9c\x12\x37\x41\x50\x61\x2d\x25\x62\x1f\x2b\xcc\x26\x71\x7d\xa0\x0c\x33\xe1\xc6\xe2\xe6\x90\x94\x70\x63\x71\xcb\x40\x4a\x40\x17\xec\xb7\x29\xe1\xc6\xaa\x6e\x10\xdc\x58\xe5\x62\x92\x28\xb3\x52\x01\xb7\x89\x32\x2b\x75\xfa\x0c\xf2\xdc\x66\x64\xc5\xd5\xce\x94\x71\xe9\x7c\x05\x8c\x25\xe2\x1b\xeb\xf4\x19\x34\x5c\xb6\xa0\xa1\x43\x11\xb0\x86\xf2\xda\x29\x01\x6b\xb8\x2d\x3b\x25\x60\x0d\x71\xbb\x29\x01\x6b\xaa\xdb\x05\x58\x53\x5f\xc7\x09\x7d\xe8\x47\x89\xac\xb8\x0a\x7b\x49\xc4\x37\x56\xb7\x20\xb0\xa6\xbe\xf4\x0e\xac\xa1\x76\x44\x4a\xc0\x1a\xae\x9e\x4d\x89\xf8\xc6\xe6\x76\x21\xbe\x91\x1b\xd2\x52\x02\xbb\x34\x74\xe6\x04\x76\xa9\xe8\x47\x09\xec\x52\xdd\x58\x60\x97\x96\x98\xb3\x02\x7d\x68\xe5\xc9\xac\xb8\xe2\x7b\xd4\x02\x00\xbb\x24\xee\x08\x4c\x1f\x1a\x48\x38\x3e\x19\x0b\xd8\xa5\xc1\x96\x12\xd8\x85\x60\xb6\x94\xc0\x2e\xcd\x3d\x01\x76\xa1\x46\x5d\x4a\x60\x17\xee\x59\x4b\x09\xec\xc2\xcd\x13\x29\x81\x5d\x1a\x08\x28\x81\x5d\x48\x35\x4d\x89\x5a\x2a\x4d\xc6\x40\x2d\x95\xe6\xee\x01\xd7\x34\xf7\x0b\xb8\xa6\x5d\x3e\x83\xbe\x69\x7f\xd0\x37\xec\x8f\xf8\x70\x99\x46\x35\xa1\x9a\x99\x00\xd7\x34\xc4\x4a\x02\xd7\x10\x54\x98\x12\xb8\xa6\xc9\x18\xc0\x35\xcd\xc3\x0f\xae\x69\xe8\x40\x89\x20\x46\xd2\x81\x53\x22\x88\x91\x7b\x3d\x52\x02\xf3\x34\x19\x11\x98\xa7\x3d\xf6\x0e\x7d\xaf\x5f\x81\xbe\xd7\xaf\x40\x1f\x46\x94\x04\xe6\x69\x32\x0d\x30\x4f\x73\x6d\xc1\x3c\x5c\x10\x9a\x12\x98\x87\xf2\xb4\x29\x75\xe3\x8b\xa1\xc8\xe2\x9c\xa0\xb1\x04\x1e\xea\xa8\x44\x09\x3c\x44\x28\x6b\x4a\xe0\x21\xf2\x02\x52\x02\x0f\xf5\xc4\xc8\x3a\x65\xc6\x92\xef\x75\x5a\xcc\x20\x01\x8e\x55\x56\x0e\x56\x22\xde\x2a\x25\xb0\x52\xcf\xfe\x92\x02\x95\xee\x48\xf0\x50\x3f\xed\x7d\xf3\x0c\x8a\xc0\x43\x1d\x3d\x3c\x0d\x0b\x8c\x42\xc3\x30\xc8\xcf\x5f\x42\x03\xda\x6e\x02\x2b\x71\x27\x4d\x4a\x60\x25\xf2\x2d\x53\x02\x2b\xf5\xe1\x57\xa0\x01\x8c\x95\xf0\x47\x75\x77\x16\x41\x8c\xd4\x36\x49\x09\x54\xd5\x15\x0f\xa4\xb7\xf5\x8b\x1d\x49\x10\x63\xbf\x7d\x0f\xfa\xdc\x13\x20\xae\x8e\xb9\x2c\x81\xb8\xe2\x36\xcf\x1f\xb3\x64\x00\xd7\x38\xe8\x00\xc0\xd5\xd1\xe3\x12\xd7\x00\x76\x74\xe6\x04\xe0\x1a\x2e\x1f\x80\x6b\x24\xc8\x03\x70\x0d\xf4\x87\x34\xbd\x86\x93\x6d\x0d\xe0\x1a\x40\xeb\x04\xe0\x1a\xcd\x67\x41\xde\x28\x7e\x93\xaa\xff\x6a\x05\xc4\x30\xde\x4e\xfc\xb4\x5c\x91\xef\x91\x82\x81\x0e\x94\x00\x5c\xa3\x33\x16\x00\x17\xb9\xeb\x29\x01\xb8\xc6\xed\x33\x42\xc0\x15\x01\x00\xae\xa1\x94\xd6\x1d\x75\x33\x13\x14\xd9\x1c\xa0\x87\x04\x18\x1b\xb7\xbf\x84\x3e\x35\x06\xc0\xd8\xf0\xb8\x03\xc6\x86\xcc\x1b\x30\x36\x3c\x70\x80\xb1\xe1\x61\x04\x8c\x0d\x8f\x1f\x60\x6c\xbc\x8e\x13\xfa\x94\xfc\x80\xb1\x81\xd9\x24\x01\xc6\x86\x4c\x1f\x30\x36\x64\xfa\x80\xb1\x21\xa3\x05\x8c\x91\x2e\x9b\x12\x81\x8a\x43\xc9\xcf\xad\x0d\xc3\x03\x0e\xfc\x9a\x07\xb3\x6b\xf8\xa1\x7b\x02\xf8\x35\x41\x2b\x09\xf8\x35\x15\x01\xe4\xac\x0d\x74\xed\x04\xc6\x9a\x58\xe7\x12\x38\x6a\xca\xca\xc1\x51\x53\x56\x0e\x8e\xe2\xbe\xea\x94\x70\x24\xe1\x12\x4d\x89\x6a\x26\x54\xf0\x4e\x09\x8c\x35\x15\x24\x8f\x85\x5c\x7c\xcf\xe8\x5f\xc6\x09\xc6\x9a\xd5\x1e\xa0\xc1\x7d\x06\xc6\xa2\x26\x4a\x4a\x60\xac\xd9\x98\x79\x30\xd6\x54\x58\x80\xb1\xa6\x87\x1f\x8c\x35\x31\x9e\x25\x43\x0c\x07\xeb\x07\xc6\x9a\x93\x3d\xf8\x62\x17\x05\xf3\xa4\x17\xbb\xa8\x3b\xeb\xb5\xe8\x39\xbb\x00\x8c\x35\x31\xa5\x25\xab\x99\x78\x6c\xc1\x58\x73\xd9\x1f\xf4\xb9\xd2\x60\xac\x39\xec\x2f\x68\xb8\x9c\x6b\x70\x14\xf7\x23\xa6\x04\x8e\xba\x30\x46\x26\x70\xd4\x25\x8b\x04\x47\x5d\x32\x68\x70\x14\x45\x75\x53\x02\x47\x5d\x32\x45\x70\xd4\xe5\xbc\x80\xa3\xae\xe2\x7b\x84\x7a\x3a\xbb\x60\xa5\x4b\x01\x4b\xa8\xe0\x35\x6d\xc5\x3a\x5c\x0a\x35\xb0\xd2\xa5\xb6\x4b\x12\x19\x31\x0f\x29\x91\x44\x76\x29\x0c\xc1\x4a\x17\x26\xa3\x04\x56\xba\xe4\x44\x60\xa5\xcb\x93\xb3\x2d\xa3\xcb\x0c\x82\x95\x2e\xcc\x42\x09\xac\x74\xc9\xcf\x08\x07\xbc\x0f\xc6\x62\xbd\x4a\xf9\x99\x37\xea\x29\x64\xc0\x4a\xb7\x7b\x17\xac\x74\x61\xbb\x4e\x60\xa5\x1b\x63\x4f\x02\x2b\xdd\xaa\x2f\x60\xa5\xdb\x7d\x0d\x56\xba\x31\xfc\x66\xb0\x52\x04\x18\xff\x90\x25\x67\x60\xd4\xcd\x32\x64\x60\x14\x95\x87\x53\x06\x46\xdd\x1c\x8e\x6c\xb9\xca\x66\x0b\xf2\xd8\xba\x19\xa8\x74\x77\xbf\x02\x79\xdd\xa1\x40\x5e\xf7\x3d\x52\x38\xd9\xe4\x99\x72\x95\x75\xd8\x82\xbc\xc8\x08\x4c\x19\xa8\x74\x0f\xbf\x09\x79\x68\xbb\xd9\x6b\xd8\x61\x05\x19\xa8\x44\xed\x88\x94\x8d\x06\x7c\xfc\x25\x34\x20\xc1\x33\x50\x89\x1a\xcc\x29\x7b\x0d\x3b\x5a\x6b\x06\x2a\xdd\x4c\x7c\x06\x2a\x51\x31\x2b\x65\xef\x3f\x58\xf6\xe7\x85\x88\x99\x16\xf4\xc1\xbc\x73\x82\x3e\xd8\x67\x06\x46\xdd\x11\x72\x94\x32\x30\xea\xde\xf6\x00\x7d\xdb\x6f\x42\x1f\xa6\x9f\x9c\xbd\xfa\x88\xaf\x00\x95\x1e\xb4\x97\x0c\x54\x7a\x92\xbf\xa4\xae\x58\xe6\x9b\x40\xa5\x27\x33\x32\xa0\xd2\x83\xab\x23\x93\xef\xc5\x2d\xdb\x29\x93\xef\x45\x45\xb7\x94\xbd\x4e\x1d\x56\x97\xc1\x43\x4f\xb5\x07\x6a\x6b\x55\x7b\xd8\xfc\x32\x0e\x7f\x36\xac\x0f\xd8\x9d\xc1\x43\x0f\x87\x38\x5b\x76\x12\xe3\x4b\xc6\x95\xb3\x38\xc4\x19\x3c\xf4\x00\xad\x33\x78\x88\x14\xea\x94\xc1\x43\x24\xa3\xa4\x0c\x1e\x7a\xa6\x3d\x50\x80\x09\xbd\x38\x83\x87\xb8\x1b\x32\x65\xf0\x10\x69\x01\x29\x83\x87\x48\xff\x4f\x19\x3c\xf4\xdc\xf6\x07\x7d\xb7\x3d\x40\xdf\xcd\x0e\x01\x0f\x3d\x88\xd4\x0c\x1e\xe2\x66\xb5\x94\xc1\x43\x8f\x7b\x09\x3c\xf4\x20\x44\x33\x78\x88\xaa\x1d\x29\x83\x87\x1e\x90\x4c\xb6\xec\x24\xc2\x30\x9b\xef\xb5\x7c\x16\xf4\xbd\x52\x0b\x1e\x7a\x96\xbf\xa4\x40\x11\x4c\x23\x83\x87\xde\xe4\xc8\x6e\x5a\x8e\xc5\xb0\x37\xbf\xf2\xf2\x8c\x35\xc2\x97\x43\x98\x5d\xca\xe0\xa1\x17\x76\x9d\xc1\x43\xdc\xce\x9d\x32\x78\xe8\x75\xf7\x80\x87\x5e\xd8\x75\x06\x0f\xbd\xa8\x60\x19\x3c\xf4\xa2\x33\x67\xf0\xd0\x0b\x40\xcf\xe0\xa1\xb7\xfa\x15\xe8\x73\x67\x81\x87\x5e\x54\xb0\x5c\xbd\xbd\xd0\xf7\xa0\x4f\xae\x01\x1e\x7a\xdd\x21\x86\xf5\x81\x67\x33\x78\xe8\x1d\x8e\x1a\xfa\x86\xfd\x41\x1f\xe6\x96\x0c\x1e\x7a\x11\x9b\x19\x3c\xf4\x62\x60\xc9\xd6\x96\x44\x95\xca\xe0\xa1\xf7\xf6\x97\xd0\x87\x79\x27\x7b\x59\x81\x3b\x04\x3c\xf4\xba\x7b\xc0\x43\xaf\x1c\x05\x3c\xf4\x3e\x7e\x05\xfa\x50\xc8\x32\x78\x28\x6e\x18\xff\x31\x4b\x06\x2a\xbd\xc8\x91\x0c\x54\x7a\x71\x52\x64\xa0\xd2\x2b\x43\xf1\x3a\xf5\x2d\xb1\x90\x8e\xbd\x38\x03\x95\x96\x9b\x07\xa8\xb4\x5c\x4c\xa0\xd2\x72\x31\x2d\x20\xe2\x96\x00\x2a\x2d\xb7\x0b\x70\x88\xca\xbc\x29\x7b\x65\xba\x32\x06\x38\xb4\x14\x1d\xc0\xa1\xe5\x42\xe3\x3a\xe2\xc6\xe1\x94\x71\x1d\x71\x0b\x6e\xca\x40\x25\x82\xe8\x53\xee\xa6\x03\x43\x03\x50\x69\x01\xb4\x33\x50\x69\xe1\xbe\xcc\xc3\xc0\x6e\x68\xa0\x7c\xe4\x72\x19\x86\x35\xce\xf8\x26\x70\x68\x01\x79\x32\x90\x67\x01\x59\x33\x90\x67\xc9\xe6\x81\x3c\xa4\x6c\xa7\x0c\xe4\x59\xce\x3c\x90\x87\x3b\x46\x52\x06\xf2\x70\x1f\x48\xca\x38\x92\x96\x22\x00\x5c\xb3\x16\x33\x08\x76\x59\x8b\x91\x81\x5d\xd6\xf6\x19\xf3\x29\x9b\x07\xbb\x2c\x05\x82\xf9\x57\x1b\xda\xbd\xa7\x1c\x37\x5d\xf6\x9e\x72\x0c\x25\xd9\x7b\xca\x0f\xbf\x42\x65\x07\xb4\xac\x6c\x65\x8e\xea\x38\x89\x02\x95\x31\x5c\xa6\x57\xb3\xb6\x60\x97\xed\xba\x83\x5d\x36\x3a\x49\x06\xbb\x50\xd9\x2b\x65\xb0\xcb\xce\x7c\x13\xec\x42\x08\x7f\xca\x60\x97\xad\x58\xf1\x82\x80\xe2\x33\x4a\x59\xca\x18\xac\xcc\xe1\x0e\x01\xbb\x50\x24\x2b\x65\xb0\xcb\x56\xf1\xb8\xa4\xc1\xde\xa1\x01\xe0\x9b\xc1\x27\xbb\x31\x16\xf0\xc9\x96\x69\x80\x4f\x36\x76\xdf\x0c\x3e\xd9\xaa\x0c\xb7\xf7\xe3\xb0\x62\xe0\x93\xed\x7e\x01\x9f\x10\xe7\x9d\xf2\x0d\x0d\x2a\x25\xb7\xe5\x38\xed\x1d\x1a\x64\x44\x20\x99\x8d\xb1\x2e\x83\x64\x36\xa6\xc2\x0c\x92\x31\xc6\x22\x5b\x7d\xc3\x1d\x79\x5b\xc2\xc0\x67\xd0\x77\x41\x91\x97\x00\xb8\xaf\xbd\x04\xc0\x1d\xe9\x25\x00\x9b\xf5\xf3\x12\x00\x55\x14\x50\xce\x76\xbf\x3c\xd0\xe7\xae\x03\xe5\x6c\xf7\x2e\x35\x1b\x75\xa8\x67\x50\xce\xc6\xc0\x92\x1f\xae\xae\xca\xbe\x17\x31\x55\x07\x48\x26\x07\xca\x69\x87\x5c\x83\x70\x39\x2e\xa2\x48\xf9\x21\xa6\xca\xfd\x12\x28\xa7\x1d\xb8\x2f\xb3\xd5\x37\xf0\x16\x65\xaa\x6f\x1c\xf2\x17\xaa\x6f\x1c\x0a\x35\xaa\x6f\x10\x4c\x9a\x32\x89\x54\x5c\xe2\x90\x32\xd5\x37\x28\x2c\x9b\x32\xe1\x72\x07\x4e\xf3\x4c\xb8\x9c\x01\x0a\x99\x70\xb9\xc3\x1d\xe9\x5d\xe4\xcd\x67\xd0\xe7\x0e\x21\x91\xea\xa8\x3f\x8b\xb8\xc8\xe4\x58\x91\x90\x91\xb2\xb7\xca\xa9\x3b\x79\xab\x1c\xce\xa9\x4c\x39\xc7\x03\xd3\x75\x26\xc7\xca\x68\x8c\xcc\xad\x72\x87\xcc\x8d\xc2\x1c\xdc\x15\x9c\x32\x85\x39\x8c\xa3\xc8\xdc\x0f\x70\x60\x7d\xcc\xdc\x0f\x70\x78\x1c\x16\xa4\x03\x0c\x33\x39\x56\x24\x23\xa7\x4c\x39\x47\xee\xe5\x4b\x99\xea\x1b\x87\x07\x80\x1c\x2b\xe3\x2f\x32\xe1\x72\x87\x32\x94\xfb\x01\x0e\x35\x29\x42\xe2\x8e\xe9\xc8\xa0\x01\x4f\x6a\xb6\x64\xe3\xe0\x97\xe6\x51\xc9\xf8\x36\x34\xa8\x87\x6f\x68\xc0\xb5\x99\x29\xf4\x7f\x28\x0b\xb7\x75\xa9\xe8\xdd\x0a\x1b\xb2\xc1\xed\xf6\x84\x22\x2a\x6c\x70\x95\x4d\xca\x1b\x1a\xf0\xdc\x66\x4a\x36\x1e\xaf\xfd\x91\xc2\xe9\x3a\x70\x15\xb9\xd1\x18\x99\x92\x8d\x5c\x21\x9b\x4e\xab\x68\x60\x61\x3c\xa9\xa2\x41\x45\xdf\x74\x72\xa7\xf8\x81\xae\x76\x06\x02\x6a\x09\x46\x7b\x92\x2b\x65\xdc\xc6\x79\x40\x03\x87\xf1\x3c\xbc\x5d\xcc\x67\x54\x22\x40\x70\x9d\x94\x5e\x4c\x00\xb5\x93\xd2\x8b\x09\xad\xfc\x04\x01\xa5\xec\x2f\x19\x67\xb1\xf7\xc5\x7b\x9b\xd6\xa6\x15\x3b\xe4\xa4\x60\x7f\xca\xb6\x88\xaa\xc5\xca\x7d\x72\x03\x5c\xc2\x60\x75\x26\x68\x60\x9f\x9d\x24\x3d\xa5\xe2\x2f\x49\x7a\x82\x7d\x9e\x24\x3d\x25\x0e\xc7\x49\x2a\x13\x15\xf2\xd2\xc9\xbd\x6e\xa9\xfb\x1e\xa3\x26\xf4\xeb\x4c\x8c\x1a\x64\x78\x26\x46\x0d\x26\x38\x29\xc3\x9f\x10\xf6\x27\x65\xf8\x13\xc2\xe9\xa4\x0c\x7f\x02\x67\x9c\x94\xe1\xa7\x66\x48\x3a\x29\xc3\x9f\x60\xa6\x67\x66\xd4\xb8\x60\xcf\x6c\xaa\x16\xe3\xa4\x6a\x22\x15\xca\xd3\x49\xd5\x44\x92\x7b\xd2\x49\x19\x7e\x4a\xef\xa4\x33\xb3\x2a\xc3\x16\xf4\xc1\xd8\x4f\xca\xf0\x27\xd0\xc3\x99\xad\x15\xcd\x8a\x65\xe8\x7b\xec\x01\xfa\x1e\xbf\x02\x7d\xe8\x7f\xe7\x09\x7d\xf8\x3a\x4e\xea\x5f\x50\x07\x3c\x9d\xa4\x39\x51\x4e\x35\x9d\xa4\x39\x51\x87\x2e\x9d\xa4\x39\x25\xcc\x81\x27\x69\x4e\xdc\x2d\x93\x4e\xea\x5f\x90\xf5\x97\x4e\xd2\x9c\xa8\xc0\x9e\x4e\xd2\x9c\x48\x73\x4f\xa7\xf5\x2f\x96\x3d\x40\xdf\xf6\x19\xf4\xb9\xaf\xa9\x7f\x91\xdc\xf3\x94\xe1\x4f\x88\x80\x93\xdb\xc0\xa9\xd9\x98\x4e\x6e\x03\x4f\xb8\x98\xcf\x22\x7d\xcc\x4b\xa1\xfe\x8c\xe7\xa8\x50\x8f\x1d\x94\x7a\x72\xe3\x37\xd7\x03\xa7\x93\x1b\xbf\x8d\x6e\x39\x49\x65\xe2\x92\xda\x74\x9a\xca\x94\xfc\x66\xd0\x90\xf3\x4f\xe2\x92\xd3\x69\x8d\x0b\x2c\x23\x27\xa1\x6d\x86\xc1\x9c\xd4\xb8\xa0\x04\x7a\x3a\xa9\x63\x91\x91\x07\x27\x75\x2c\x32\x5a\xc8\xf9\xb9\x9f\xcd\x16\xf7\x7b\xc1\xbc\x4f\xef\x67\x23\x0e\xf3\xe4\x7e\xb6\x8c\x2c\x3c\xb9\x9f\x2d\x37\x96\x96\x4c\xa6\x8c\x63\xee\xa4\x30\x62\x46\xd3\x38\x29\x8c\x48\xce\x4c\x3a\x29\x8c\x48\x35\x85\x74\x56\xc6\xe9\xb6\x26\x5b\x89\x3b\xf4\xd2\x49\xb6\x52\x1e\x8e\x05\x1a\xdc\xd6\x0d\x1a\xb0\x49\x9d\x0d\x1a\xb0\xf4\x9e\x0d\x1a\x00\xbe\x27\x25\xf3\x33\xfa\xed\x69\xc9\x7c\x17\xba\x59\x7c\x94\xde\xc9\x56\x2a\xf6\x4e\xc9\xfc\xec\xd6\x6d\xd6\x95\x85\x3e\x8a\x1f\x66\x8f\x83\x75\x2c\x3c\x0e\xd4\xb1\xc8\xd8\xd5\x4e\xea\x58\x90\xb4\x99\x4e\xea\x58\x90\x46\x92\x4e\xea\x58\x64\x0f\x0e\x37\x77\x9f\x6e\x17\x6f\xee\xc6\x3d\x74\x72\x73\x77\x96\xb5\x72\x07\xdb\x29\xc3\x34\x5b\x09\x5b\xf2\xc9\x1d\x6c\x46\xc5\x9c\x14\x3f\xcc\x58\xa4\x4f\x8b\x1f\x82\x8e\x4e\xb2\x95\x4e\x8c\x1a\x67\xb7\xb8\xa3\xfd\x51\x37\x17\x41\x72\x52\xfc\xb0\x24\x47\x46\x2d\x95\xe2\x37\x83\x3e\x23\x43\xce\xc0\x35\xed\x1c\x7e\x85\xdb\x56\x86\x3d\x40\x9f\xec\xc5\x9b\xbb\x01\xb7\x27\x29\x49\x27\x16\xdb\x93\x9b\xbb\x4f\x9c\x7d\xe7\x80\x3e\x77\xcf\x80\xbe\xe9\x33\x2e\x7a\x42\x18\x9e\xd4\xb1\x38\x65\xd7\xdc\xc1\x66\x1c\xcc\xc9\x1d\x6c\x27\x66\x8c\x93\x94\x24\x0a\xdc\xa4\x93\x94\xa4\x13\xcf\xc7\x49\x4a\xd2\xe9\x9e\xa0\x64\xfe\x29\x43\xa1\x64\xfe\xe9\x8a\x51\xc7\xe2\xc4\x8e\x7e\x52\xe1\xf0\x94\xd9\x70\xd1\xda\x89\xe3\xf8\xe4\xa2\xb5\x92\x7c\x16\xf4\x15\x45\x15\x37\x77\x17\x05\x33\x75\x2c\x0a\xa6\xad\xd3\x9b\xbb\xb3\xcf\xd8\x9f\xa7\x2d\x8a\x8f\xe2\x03\x3a\xa9\x63\x51\x30\x86\x9c\xdc\xdc\x5d\x14\xb0\x94\xcc\x27\x5f\x2f\x9d\xa4\x24\x95\xe6\x2f\x1f\x5a\x3e\xe3\x4a\x00\x57\x65\x52\xa7\x43\x3e\xe1\xcd\xdd\x72\x9b\x8b\xdb\x64\x26\x33\x7f\x41\x1f\xee\xb6\x93\x0a\x87\xc6\x74\x9c\xd4\xb1\x28\xb8\xe5\x4f\xea\x58\x14\x90\xc5\x49\x1d\x0b\xe3\x2f\xce\xcb\xf3\x67\x0f\x9d\x16\xb3\xcb\x45\x6b\xe5\xf1\x9b\xd0\xe7\xa9\xa2\xc2\x61\xf1\xbc\x53\xc7\xc2\x28\x8e\x93\x3a\x16\xc6\x82\x9c\xd4\xb1\x28\x9e\xa3\x0b\xfa\x96\x5f\x89\xbc\x8e\x0c\x86\x3c\xb9\x4c\x2d\x2b\x52\xa9\x62\x58\xd6\x4f\x6a\x5c\xa4\x93\x8b\xbb\x8b\x07\xee\xe6\x8a\x40\x35\x14\x2a\xe6\x17\x37\x08\xb5\x2a\x8a\xf2\xe7\x86\x3c\xcc\x18\x27\x19\x49\x06\x8d\x9c\x64\x24\x55\x65\xcc\x0d\x79\xca\xa6\x1b\xeb\x31\x56\xa8\x93\x5a\x15\xd5\x83\x6a\x81\x43\x2c\xa8\xe7\xed\xf2\xd1\x1f\x19\x49\x95\xd0\xb6\x93\x8c\x24\x2a\x51\xa5\xd3\x22\x86\xc4\xdf\x9e\xdc\xa5\x56\xdd\x74\xd4\xa3\x30\x6a\xe4\xe4\x06\xee\x5a\x7c\x8f\x4a\x69\xc5\x67\x64\xfd\x55\xdf\xb3\xf4\x36\x63\x01\x46\x55\xd9\x0b\x30\xaa\x56\xdf\x83\x06\xc5\x11\x30\xca\x48\x94\x13\x18\x55\x71\x74\x9e\xc0\xa8\x8a\x1d\xfd\xe4\xbe\xb4\x5b\xcd\xc6\xf2\xf6\x32\x5a\xa0\x92\x91\x28\x27\x50\xa9\xca\x88\x80\x4a\x15\xcb\xd6\x09\x54\xaa\x6a\x28\x40\xa5\x2a\x2b\x00\x2a\x91\xd2\x92\x4e\xf0\x90\x91\x21\x27\x78\xa8\x2a\x10\xc0\x43\xd5\xad\x0b\x1e\xe2\xc6\xb2\x74\x82\x87\x2a\x36\xd3\x13\xcc\x53\xdd\x90\x60\x9e\x2e\x7d\xde\xa4\x8d\x5b\xf0\x04\xf3\x34\xf5\x70\x30\x4f\x55\xf3\x06\xf3\x74\x75\x58\x70\x8d\xf1\x1e\x27\xb8\xa6\xb9\x27\xb8\xf7\xac\xc9\xbc\x0d\x9e\x53\x13\x06\xf3\xb4\xe2\xc8\x36\x2d\x46\x06\xe6\x69\xae\x0a\x98\xa7\xb9\x2a\x60\x1e\x23\x43\x4e\x70\x4d\x53\xdb\x25\xd5\xa7\x61\xda\x3a\xc1\x35\x0d\x1f\xc9\x09\xae\x69\x8a\x77\x70\x4d\x93\x31\x80\x6b\x9a\x82\x04\x5c\xd3\x14\x01\xe0\x1a\x2e\xa4\x4a\x27\xb8\xa6\x4d\xdf\x83\x86\xe9\xc8\xa0\x81\x15\x2b\x60\x9e\x86\x6b\xba\x80\x79\xda\x63\x0b\x1a\x10\x0f\x05\xcc\x63\x64\x48\x01\xf3\x50\x60\x20\x15\x30\x4f\x03\xe1\x15\x30\x4f\xc3\x38\x51\xa8\x0f\xd1\x60\x60\x85\xfa\x10\x0d\xf4\x57\x0e\xef\x86\xdc\xb4\xa0\x6f\xf9\x1e\xf4\x2d\xc7\x02\x7d\xdb\xf7\x0c\x70\xac\xb4\xa0\x0f\xed\xba\x80\x87\x3a\x8c\xbd\x80\x87\x8c\xdb\x28\x56\x0e\x44\xa7\x2c\x54\x07\xec\x9c\xdb\x02\xe6\xe9\xd9\x67\xd4\x28\x71\x64\x16\x7a\x38\xfd\x0a\x85\x1e\xd8\x05\x85\x42\x0f\x7f\xff\x0a\xe5\x9f\xe0\x13\x05\x74\xd4\x8b\xef\x51\xbe\xab\xda\x03\xe5\x91\x50\x1c\x0b\xe8\xa8\x83\xe5\x0b\x08\xc8\xb8\x8d\x02\x02\xea\xec\x90\x02\x02\xea\x97\xcf\xa8\xd3\x81\x8a\x59\x40\x40\xfd\x67\xc5\x39\x53\xb1\xa4\xfc\xf0\x35\xc8\x03\xbc\x17\x2f\xbd\xc6\x89\x56\x00\x47\xfd\x82\x58\xc0\x51\x27\xae\xa1\x00\x8e\x3a\x6c\xa2\x00\x8e\x3a\x6c\xbe\x00\x8e\x3a\x50\xbe\x00\x8e\xfa\xb2\x3f\x96\x08\x4b\x53\x01\x1c\x75\x17\x1a\x70\xd4\xdd\x4a\x80\xa3\x8e\x2d\xab\x00\x8e\x3a\x2e\xb5\x02\x38\xea\x58\xaf\x0a\xe0\x88\x02\x29\xa9\x50\x03\x82\x3b\x38\x52\x01\x1c\x75\x37\x39\xe0\xa8\x3f\x3e\x83\x3e\xd8\x59\x01\x1c\x51\xbe\x3f\x15\x4b\xca\x4f\x46\x0d\x38\x1a\x6e\x1e\xc0\xd1\x70\x69\x01\x47\x23\xdb\x03\xd5\xad\xb0\x80\x17\xc0\xd1\x80\xb1\x17\xc0\x11\x35\xf1\x52\xa1\xa4\xfc\x40\x9b\x28\xe1\x2c\x6a\xc3\x79\x01\x38\x0d\x04\x50\x01\x38\x0d\x37\x08\xc0\x69\x34\x7f\xc9\x45\x56\x00\xf4\x02\x70\x1a\xd8\x30\x0b\xc0\xc9\x68\x93\x52\x4c\x34\xb7\x15\xf4\x8d\xcb\x91\x41\x1f\x58\xa2\x50\x01\x70\x4c\x9f\x41\xdf\x74\x2c\xd0\x07\x93\x2a\x20\xa7\x0b\x50\x5c\x40\x4e\xc6\xba\x14\x90\xd3\xc0\x3c\x50\xaa\xf4\xb1\x7b\x40\x4e\x03\xdb\x67\x01\x39\x19\xf9\x52\xaa\xd9\x90\x8c\x13\xe4\x34\x30\x66\x95\x2a\x7d\xf6\x37\xf9\x25\xfb\x93\x92\xf2\xe3\xf1\x2b\x37\xcf\xd8\x4b\xa0\x2a\xe3\x59\x0a\xa8\x8a\xc2\x54\xa9\x80\xaa\x26\x3a\x65\x01\x55\x51\x5b\x21\x15\x50\xd5\x04\x83\x14\x50\xd5\x00\x68\x17\x50\xd5\x00\x1d\x15\x50\xd5\x70\xf7\x80\xaa\xa8\xe4\x92\x0a\xa8\x6a\xca\x42\x40\x55\xd4\x2d\x4c\x05\x54\x35\x0f\xbf\x02\x7d\xaf\x5f\x61\xfd\xd0\xb5\x0b\xa8\xca\xe8\x96\x02\xaa\x32\x7e\xa6\x80\xaa\x86\xac\x15\x54\x65\xdc\x4d\x69\xd2\x07\xed\xa0\x2a\xae\xd1\x4f\x05\x54\xc5\x15\xfb\xa9\x80\xaa\x26\x4a\x50\x01\x55\x4d\x4c\x5b\x05\x54\x35\x3c\x2b\xa0\xaa\x89\x01\xa2\x80\xaa\xa6\x7b\x10\x54\x35\xf1\x2f\x14\x50\x95\x11\x2c\x05\x54\x35\x41\x24\x05\x54\x45\xf5\xbc\x54\x40\x55\xd3\xb5\x05\x55\x51\xac\x36\x15\x50\xd5\x3c\xed\x8f\xf5\x73\x67\x81\xaa\x26\xa6\xad\x02\xaa\x9a\x9e\x15\x50\xd5\x04\xf5\x17\x50\xd5\xc4\x6b\x50\x40\x55\x53\x96\x0c\xaa\x9a\x88\xf0\x02\xaa\x32\xd2\xa6\x80\xaa\xb8\xb5\x3c\x15\x50\x95\xf1\x33\x05\x54\x35\x3d\x01\xc3\xea\x79\xf6\x07\x7d\xf7\xcf\x6c\xc9\x05\xc0\x35\x95\xcb\x00\xae\x89\x5d\xb4\x00\xb8\xa6\x92\x18\xc0\x35\x65\x60\x38\xa0\x6e\xc2\x75\x0a\x80\x6b\x7a\x00\x00\x5c\x53\x16\x09\xe0\x9a\x40\x82\x02\xe0\x9a\x68\x75\x05\xc0\x45\x69\x93\x54\x00\x5c\x97\xb2\x10\xc0\x35\xb1\x88\x15\x00\xd7\xf4\xd8\x4e\x73\xd0\x59\x68\x0b\x07\x02\x80\xca\x94\x74\x96\x08\xc0\x35\x65\xde\x00\x2e\x83\x8c\x0a\x80\x8b\x4b\x40\x53\x01\x70\x5d\xc9\x71\xb2\xb4\x18\x27\x8a\x77\x94\xa1\xff\x15\x00\xd7\xf4\x00\x00\xb8\x26\x78\xa1\x00\xb8\xa6\x87\xd1\x3b\xca\xd0\xfb\x0b\x80\x6b\xde\x50\x04\xe0\xba\x64\xec\xde\x51\x86\x1f\xbe\x00\xb8\xa8\x90\x97\x0a\x80\x8b\xc2\xf4\xa9\x5c\x5e\x09\xe0\x58\x2c\x29\x6f\xef\x88\x0e\x57\x13\xc0\x75\x79\xa8\x2e\xe9\xb3\x15\xf4\x5d\xc5\x1e\x36\xdf\x64\x3e\xa9\x0e\x78\xa1\xfb\x16\xee\x28\xbb\x64\x21\xde\x6c\xed\xa1\x02\x8c\x5d\x58\x96\x0b\x88\xcb\xd0\xa8\x02\xe2\xba\x3c\x0e\x20\x2e\x4a\xa7\xa7\x02\xe2\xba\x8a\x5f\x19\xf4\x60\x0b\xfa\x64\x91\x20\xae\x0b\xdf\x77\x01\x71\x5d\xb2\x64\x10\xd7\xe5\x9e\x00\x71\x5d\xe8\xa2\x05\x54\x75\x4d\x46\x46\xd9\xf8\x96\x6c\x41\x83\x3b\xf2\x81\x06\x77\x24\x88\xcb\x50\xac\x02\xe2\xba\x54\x0b\x40\x5c\x97\x82\x12\xc7\xd5\x05\x2c\x2d\x20\xae\xcb\x7d\x06\xe2\xba\x30\x82\x15\x10\xd7\x45\x68\x62\x01\x71\x5d\xc4\xb5\x96\x4f\x9d\x07\x5b\xd0\xb0\x6c\xb1\x46\xdb\x71\xba\x07\xd9\x4b\x5c\x36\x66\xe4\x7a\xc1\x71\x75\x81\x52\x0b\x8e\xab\xdb\x3d\x81\xe3\xea\xfe\xfc\x32\xb4\xcf\x1b\xf7\x57\x01\x8d\xdd\xc4\x66\x14\xd0\xd8\xed\x3a\x80\xc6\x6e\x75\xca\x97\x0a\x79\x18\xdd\xca\x6b\x89\x27\xd6\x36\xd0\xd8\x1c\xaa\x3d\xa0\xb1\xdb\x3d\x01\x1a\x33\x10\xac\x80\xc6\xb8\x53\x32\x15\xd0\xd8\x8d\xd9\xab\x58\x01\xd0\xfd\x82\x77\xea\x96\x41\xe3\x9d\xba\x31\x7e\x16\xcb\xc6\x83\x6b\x0a\x48\xed\x96\xb5\xe2\x65\xba\xdd\x05\x78\x99\x8c\xd3\x2a\x16\x65\x70\xf7\x80\xc6\x6e\xd0\x4a\x01\x8d\xdd\xf2\x10\xd0\xd8\x8d\x2b\xb5\x80\xc6\x6e\xe2\x92\x0b\x88\xeb\x26\xcf\xa2\x80\xb8\x6e\x59\x32\x5e\xa6\xdb\x13\x8e\x97\xe9\x76\xbf\x80\xc6\xee\xfb\x67\xd9\x7b\x05\xa0\x76\x0b\x79\x00\x6a\xb7\xd2\x0f\xa0\x76\x63\x8c\x2f\x00\xb5\x5b\x76\xbd\xbd\x18\xc5\x81\x41\x9e\xba\x2f\x40\xcd\xd0\xaf\x02\x50\x33\xbc\xab\x00\xd4\x6e\x65\x76\x00\xb5\xb9\x60\xfa\x15\xa0\xf6\xa0\xcb\x54\xc0\xd8\x03\x8b\xac\x80\x31\x8a\x1f\xa6\x0a\x18\x7b\x60\x36\x15\x30\xf6\x54\xbf\xc2\xe5\x51\x98\x1c\x2a\x60\xec\x81\x4d\x54\x8b\xf5\x21\xe1\xea\x61\xb5\x30\x9f\x71\x43\x06\x0b\x56\x01\x63\xcf\xf4\x97\x14\x03\x45\x4e\x56\xc0\xd8\x33\x1d\x19\xb5\xa2\x91\xe7\x15\x30\xf6\x60\x1d\xaf\xde\x26\x0d\x40\xaf\x38\xa7\x28\xea\x94\x2a\xce\xa9\x07\x66\x53\x71\x4e\x51\xb5\x23\x55\x80\xda\x83\x79\xa0\x02\xd4\xb8\x79\x22\x55\x80\xda\x83\x93\xb0\x02\xd4\x1e\x34\xa9\x0a\x50\x33\x84\xab\x02\xd4\x9e\xd7\x5f\x42\xdf\xe5\x38\xa1\xef\xb6\x07\xe8\x73\x1d\x00\x6a\x0f\x7a\x6a\xf5\x36\x69\xcc\x18\x35\x5b\x0b\x7b\xd3\x82\x3e\x8c\x1a\x15\x10\x67\x08\x57\x05\xc4\x19\x8a\x55\x33\x65\xce\x41\x08\x15\x10\xf7\xc2\xe6\x2b\x48\xed\xcd\xf6\xd0\x79\xe6\x2f\x29\xf9\x02\x9b\xa8\x20\x35\x43\xb1\x2a\x48\xed\x3d\xa1\x16\xa4\xf6\x92\xca\x54\x41\x6a\x2f\x6c\xa9\x82\xd4\x5e\x44\x4e\x05\xa9\xbd\xcd\x5f\x72\x03\x08\x36\xcc\x0a\x52\x7b\x31\x6a\x54\x90\xda\x8b\x77\xbd\x82\xd4\x5e\xb4\xc1\x0a\x52\x7b\xab\x2d\x6e\xc8\xc0\x70\x51\x41\x6a\x2f\x07\xbc\x82\xd4\x8c\x56\xa8\x20\x35\xae\xfb\x4f\xd5\x6a\x7d\xdb\xaf\x50\xad\x2f\xf9\x2c\xe8\xa3\x5e\x5e\xaa\xa7\x25\xb3\x7c\x66\x49\x29\xd6\x1d\xa4\xf6\x62\x56\xa8\x20\xb5\x17\x41\x52\x41\x6a\x2f\x67\xba\x82\xd4\x28\xb5\x9a\x2a\x48\xed\x45\x90\x54\x90\xda\xfb\xf8\x0c\xfa\x50\x5f\x2a\x48\xed\xc5\xb4\x55\x41\x6a\xaf\xfb\x0c\xa4\xf6\x22\x10\x2a\x48\xed\x75\x4f\x80\xd4\x5e\x69\x07\xa9\xbd\xaf\xef\xb1\x7e\xee\x17\xab\xf5\x2d\xc7\x42\x1d\x62\xe2\x6e\x2a\x48\x6d\x35\x9f\x2d\x9e\xd9\xda\xcc\x19\xfd\x81\xd4\x16\xea\x44\x05\xa9\x19\x6f\x55\x41\x6a\x0b\x5f\x47\x05\xa9\x2d\x79\x08\x48\x6d\xa1\xb1\x57\x90\xda\x72\x47\x82\xd4\x16\xd6\xf1\x5a\x2d\x36\xcc\xc8\x40\x6a\xcb\x5d\x0e\x52\x33\x4a\xac\x82\xd4\x16\x91\x1a\x15\xa4\x16\x51\x62\x3f\x64\xc9\xb5\x4a\x3a\x53\x06\x88\xe3\xfa\xce\x54\x01\x71\x5c\x95\x9f\x2a\x20\x6e\x79\x38\x00\x71\x16\xa3\xa9\x80\xb8\x85\xe4\xaf\x80\x38\x0a\xf8\xa4\xda\xac\xd3\xcb\x94\x01\xe2\x16\x26\x8e\x0a\x88\x5b\x32\x1b\x40\xdc\x92\xd9\x00\xe2\x16\xd2\xa8\x02\xe2\x2c\x23\x53\x9b\x85\x26\xed\xdd\x32\xd2\xfe\x12\x1a\x70\x0c\x54\x80\x9a\x25\x66\x2a\x40\x8d\xca\x65\xa9\x02\xd4\x0c\xa9\xaa\x00\x35\xc3\xb4\x2a\x37\x46\x1f\x84\x54\x55\x80\x9a\xa1\x66\x15\xa0\x66\xc8\x58\x05\xa8\x19\x32\x56\x01\x6a\x94\xf1\x4c\xd5\x62\x7d\x68\xd0\x15\xa0\xb6\x4f\x7b\x80\x06\x99\x1b\x40\x6d\x9f\xfe\x92\xe5\xf3\x70\x00\xd4\xb6\x5b\x09\xa0\xb6\xd1\x76\x2b\x40\xcd\xe2\x37\x15\xa0\x66\x71\x98\x0a\x50\xdb\x04\xf2\x55\x80\xda\x46\xbf\xad\x00\xb5\xad\x90\x01\xa8\x6d\x9c\x68\x15\xa0\x66\xc1\x99\x0a\x50\xb3\x4c\x4e\x05\xa8\x71\x2d\x66\xaa\x00\x35\x83\xc4\x2a\x40\xcd\xd0\xaf\x0a\x50\xe3\x86\xb4\x54\x41\x63\xbb\xda\xfb\xcd\x2f\xa1\x08\x34\x66\xe8\x57\x05\x8d\x6d\x57\x0c\xf7\x17\xd7\x68\xa5\x0a\x1a\xe3\x96\xe6\x54\x41\x63\xfb\xb2\x05\x7d\x18\xd6\x2a\x68\x6c\xa3\xd9\x54\xd0\xd8\xc6\x88\x52\x41\x63\x5b\x26\x05\x1a\xdb\xee\x5d\xd0\x98\x65\x72\x2a\x68\x6c\xcb\x42\x40\x63\xdb\x5d\x00\x1a\xb3\xbc\x4e\x05\x8d\x59\x42\xa7\x82\xc6\x0c\x0b\xab\xa0\xb1\x2d\xb3\x01\x8d\x59\x5e\xa7\x52\x91\xef\x38\x1c\xd9\xa6\xc5\x33\xd0\xd8\x96\xd5\x5d\x5c\x05\xe1\xfe\xbc\xd8\x9f\x87\xad\x93\x16\xa3\x06\x8d\x59\xee\xa6\x72\xc1\x97\x81\x60\x95\x0b\xbe\x2c\xd2\x53\x41\x63\x1b\xd0\x5f\x29\xe3\x7e\x78\xde\x03\x8d\xf5\x03\xaf\x4f\x0d\x34\xd6\x0f\x59\x4f\xa0\xb1\x7e\x60\x02\xa8\xde\x18\xed\xfe\xe4\x82\xaf\xc3\x9d\xcc\x05\x5f\x47\x75\x9c\xd0\xa7\x30\xa4\x22\x1f\xd7\xbc\xa5\x4a\x45\x3e\xa3\xa1\xea\x0d\x7d\x9e\x7e\x6a\xb5\x1b\xf5\x53\xb9\xe0\xeb\x00\x9f\x54\x2e\xf8\x32\x1a\xaa\xde\xd0\xe7\x0e\x09\x34\xd6\x0f\xd5\x90\x1b\xfa\x5c\x5b\x6a\xb5\x1f\x28\x9c\xf5\x86\x3e\xd5\x97\x1b\xfa\x14\x2b\xd4\x6a\xb7\x1a\x4d\xb5\x22\xdf\xf6\x97\x64\xc1\x26\xc7\xb2\x69\xf1\x4b\x2e\xf8\x32\x5e\xa7\x5a\xab\xbd\xfe\x2c\x55\xa4\x52\xc6\x3d\xe1\xa4\xa8\x16\xeb\xf3\x00\x50\xac\xcf\x12\x33\x95\x1c\x2b\x8b\xd1\xd4\x00\x71\x3d\x55\x7f\xd9\xf9\xa5\xcf\x06\xdf\x84\x74\xea\x58\x24\xe0\x57\x7d\xa8\xd3\x0b\xb0\xa8\x01\xe2\x7a\x52\x9b\x78\x20\xfd\x72\x2c\x14\x93\x74\xe2\x1f\x13\x80\x61\x3d\x0f\xa4\x7b\xc4\x5e\x48\x57\xc7\x7b\x21\x5d\x79\x4e\x19\x77\x43\x79\xea\x0b\x7d\x1e\xa3\x17\xfa\x1e\xdf\x83\x3e\x2c\x70\x95\x32\xee\xc9\xe3\x47\x19\xf7\x84\x39\xa2\x02\xe2\x2c\x07\x53\x5f\xe9\xf3\x97\xd0\xa7\xd6\x43\xb1\x3e\x83\x70\x2a\xc5\xfa\x0c\xa6\xa9\x01\xe2\x7a\x4e\xf6\xb7\x68\x31\x4b\xdc\x18\x9d\xb1\xf8\x55\xca\xb8\x67\x35\x06\xca\xb8\x73\x49\x66\xaa\x94\x71\x37\x2a\xa6\x52\x91\x2f\x7b\x1c\x28\xc7\x9e\xff\x5f\xc2\xce\x2c\x69\x76\x96\x57\xd6\x53\xf9\x87\x60\x83\xe9\x22\x4e\xec\xb9\xd0\xce\x7f\x08\x27\x96\x9e\xf4\x5b\x14\xdf\x6a\x2e\xea\x02\xbb\x6c\x23\x1b\x50\xa6\x24\x24\xac\xdc\x81\xca\xcf\x0e\xd7\x66\x20\x1f\x85\xd3\x12\x39\x49\x2a\xa8\xa9\x39\xe9\xa7\x70\xff\xa4\x9f\x5a\x68\xc9\x47\xe1\xb4\x94\x4f\xfa\x49\xd0\x56\x58\xf4\x53\x93\x8a\x42\x5d\x8a\x83\x09\xa4\x63\x77\x55\xe7\xe8\x67\xd5\x75\xf6\x1d\x9c\xbe\xe6\xa2\x06\x9b\xd4\xad\xb1\xb8\x44\x95\x8f\x3b\x18\x8b\x4b\x8a\x6e\x09\x4a\xc7\x2e\x35\xbd\x90\x4f\x5f\x53\x85\xba\x34\x0a\x16\xf2\x4d\xb5\x90\x41\xdf\x88\x94\xeb\x0e\xa5\x16\xd9\x63\xa5\xc5\x2d\x52\xdd\x99\x7a\x27\x77\xa4\x18\x97\x07\xb5\x46\xaa\x3b\x7b\x26\x63\xa4\x18\x97\xc7\x3c\x10\x29\xc6\xe5\x59\xdc\x22\xc5\xb8\x3c\xee\xcb\x68\x2c\x2e\x29\xeb\x4a\x34\x16\x97\x3c\xbe\x87\x68\x2c\x2e\x79\x2c\xc4\x91\x94\xeb\x8a\x60\x89\xc6\xd4\x0a\xf5\xf5\xee\x68\x4c\x2d\x51\xb1\xfd\x8e\xc6\xd4\x92\x87\xfd\xc5\x9b\xe4\xa3\x30\xb5\x78\x23\x03\x0e\xa8\x78\x23\x43\xd2\x39\x64\x20\x3c\x2f\xde\xc8\x40\x42\x83\x78\x23\x43\xd2\x3d\x91\xa1\xeb\x3a\x64\x60\xe1\x8b\x54\x70\xf6\xbc\xf9\x78\x23\x43\xd3\x5d\x90\xa1\xeb\xe9\xf6\x1d\xfc\xd4\xf3\x48\x8e\x3b\x75\x9d\x8d\x33\x3f\xd4\x22\x79\x2c\xe3\x25\x52\x70\xeb\xc1\x68\x13\x29\xd3\xac\x08\x8f\x68\x4c\x2d\x3d\x7a\x67\x14\xdc\xf2\xc0\xa5\x48\xc1\xad\x87\xf9\x10\x29\xb8\xf5\x80\x5a\xa3\xa3\x96\x61\xd0\x75\x91\x73\xba\x27\x79\x9d\x83\x5a\xe4\x3d\x86\x0f\x45\xca\x34\x3f\x00\xb9\x48\x99\xe6\x07\x5b\x79\x34\xa6\x96\xa8\x03\x73\x47\x63\x6a\x49\x39\x4a\xa2\x31\xb5\xf4\xc4\x7f\x45\x5c\x44\x87\xe8\xfa\x98\x0e\xd1\x81\xe8\x91\x0a\xce\x0f\x53\x33\x52\xc1\xf9\xc1\xf5\x17\x8d\xc4\xa5\xa7\xe8\x1c\xa2\x33\xc5\xa2\x47\x74\x2c\xcb\xd1\x23\x3a\x01\x64\x91\x58\x44\x05\x89\x45\x2a\x38\x53\x2e\xf4\x8e\x54\x70\x7e\x58\x14\xa3\x47\x74\xdc\x19\x91\x94\xeb\x0a\x36\x89\xa4\x5c\xa7\x08\xcd\x1d\x49\xb9\xae\x04\x22\x91\x94\xeb\x8a\x05\x89\x0f\x32\xe8\x13\x3d\xc8\xa0\xe9\x67\x44\x2d\x05\x9c\x29\x91\x2a\xcd\x81\x08\x81\xf8\x90\xb6\x5a\x83\xc0\x88\x5a\x0a\x10\xdf\x68\x44\x2d\x05\x82\xd3\x23\x55\x9a\x03\x0b\x6d\x34\xa2\x96\xc2\xad\xeb\x48\xab\x74\xeb\x9e\x95\x96\xae\x53\xda\x78\xde\x35\x69\xd5\x15\xeb\x12\x1f\xa5\xfd\x57\xcb\xbe\x51\x78\xd4\xcf\x45\x8b\xe7\x19\x51\x4b\x81\x78\xdf\x48\x51\xad\x80\xad\x2e\x52\x54\x2b\x80\x6f\x23\x45\xb5\x02\x0b\x74\x0c\xc8\x17\x74\x1d\xf2\x69\x28\x05\xe4\x83\xbc\x47\xd2\xaa\x07\x02\x9e\x62\x40\xbe\xa8\x7b\x22\x5f\x54\x5f\x90\x4f\xd3\x9d\x2a\xcd\x41\x63\x49\x95\x98\x93\xee\x89\x0c\x44\x9b\xc4\x88\x0c\xf8\xb0\x63\x44\x06\x54\x40\x8c\xc8\x80\xab\x31\x52\x89\x39\x14\x5d\x87\x0c\x38\x1e\x23\x95\x98\xa9\x81\x7d\xc7\x88\x0c\x20\xe8\x48\xea\xf4\xd0\x75\x4f\x64\xd0\x82\xa2\xd4\xe9\x5d\x2d\x64\x68\xba\x0b\x32\x34\x3d\x81\x6f\x04\x1e\x8b\x91\x6f\x84\xc9\x2f\x46\xe4\xc3\x10\x14\x23\xf2\xe1\xfa\x8b\xa4\x4e\x0f\x9a\x0f\xa4\x4e\x57\x74\x4b\x84\x8d\x29\x9e\x25\x26\xe4\xd3\x98\x57\xea\x74\x2d\x52\x09\x19\x50\xfd\x91\xf4\xe8\x11\x94\x1c\x95\x1e\x9d\x98\x87\x48\x0e\xf4\xb0\xf4\x3c\xf2\x80\x83\xbc\x23\x15\x95\xa3\x46\x2b\x15\x95\x23\xf8\x2f\x52\x1c\x2b\x82\x84\x23\xc5\xb1\x28\x09\x75\x47\xe3\x4a\x29\xc2\xa6\xa3\x71\xa5\xa4\x18\x99\x68\x5c\x29\x45\x60\x41\xcc\xf4\x8c\xcc\x15\x91\xb2\x56\x51\xa3\x8e\x0c\xe5\x51\x0b\x98\x32\x94\x03\x0b\xa2\x31\x99\x14\x35\xce\x8c\xc9\x24\xe5\x44\x89\x94\x2a\x56\xe4\x4b\x2c\x3c\x1d\xe3\x44\xa4\x54\x71\xd4\x38\x23\xb7\x78\xd4\x18\x34\x26\x93\x62\xd2\x5d\xa8\x2a\x92\x75\x17\x7a\x86\x9d\x39\x16\x7a\x96\x75\x1d\x3d\xd3\x5a\x07\x93\x51\x34\x4d\x84\xc9\x44\xa0\x46\xa4\x54\x71\xc4\xec\x15\x61\x2b\x91\x8c\x17\x91\xfc\xe1\xca\x9e\x12\xe1\x20\x96\x3d\xe5\xef\x4b\x32\xf4\x24\x6a\xf0\x40\x4f\x14\x22\x13\xa1\x27\x51\x83\x07\x7a\x12\x35\x40\xa0\x27\x11\x5f\x74\x84\x9e\x44\x69\x3f\xe8\x49\xd4\xf2\x09\x3d\x89\x58\x8c\x22\xf5\x87\x95\x8c\x26\x42\x4f\x22\x08\x3a\x42\x4f\x94\x12\x25\x42\x4f\xd2\xa5\xbb\x04\x5a\x88\x07\x3d\x49\xc2\x16\xd0\x93\xa4\xe1\x02\x3d\x51\x30\x4d\x84\x82\x50\x9b\xee\x8e\x2a\x09\xf5\xe8\x9e\xd6\xcf\xa4\x65\x09\x9a\x91\x84\x2d\xba\xaa\xb5\x71\x1d\x5c\x22\x69\x71\x53\x49\x28\x08\x49\x84\x4b\x28\xb5\x49\x84\x4b\x24\xa9\x31\xb8\x44\xc2\xfa\x18\xe1\x12\x49\x9f\x16\x2e\xa1\xe8\x96\x08\x97\x48\x90\xf7\x08\x97\x50\x12\x94\x08\x97\x48\x52\x7f\x70\x09\x25\x3a\x89\x70\x89\xc4\x56\xe1\x08\x97\x50\x44\x49\x84\x4b\xa4\x46\xcf\xe0\x0b\x49\xe8\x05\xbe\x90\xb0\x45\x46\xf8\x42\xd2\x28\x80\x2f\xa4\xa1\x73\xc8\x80\x03\x2a\xc2\x17\x12\x6e\x9e\x08\x5f\x50\x16\x94\x08\x5f\x50\x74\x4b\x84\x2f\x24\x2d\x21\xf0\x85\x2c\xa5\x06\x5f\xa0\x74\xfd\x1d\xe1\x0b\x8a\x72\x88\xf0\x85\xcc\x16\xf1\x08\x5f\x50\x4c\x40\x84\x2f\x64\xd2\x62\x45\xf8\x42\xd6\xfb\x84\x2f\x28\xa6\x23\xc2\x17\x32\x26\x9c\x68\xe1\x79\x29\x6b\x6a\x5a\x78\x5e\xca\x5a\xd8\x2d\x3c\x2f\xe5\xac\x73\x26\x5f\xd6\x52\x0e\xcf\x50\x64\x48\x84\x67\xe4\xaa\xeb\x28\xfe\x00\xb5\x8e\xf0\x0c\xe5\x2f\x89\xf0\x0c\x45\x24\x44\x78\x46\x86\x22\x47\x78\x86\x62\x33\x22\x3c\x23\xc3\xf0\x22\x3c\x23\x6b\x99\x87\x67\x28\x5f\x4a\x84\x67\x28\x86\x24\xc2\x33\xf2\xd4\x3f\x91\x4f\x33\x0e\x9e\x91\xf5\xc5\xe0\x19\x54\x91\xbc\x23\x3c\x23\x13\xca\x1a\xe1\x19\x45\x73\x0c\x9e\xa1\xe8\x8f\x08\xcf\x28\x18\x4a\x22\x3c\xa3\x40\xc9\x23\x65\x9f\x8a\x00\xc4\xd2\xf7\x43\x3e\x38\x48\x21\xca\x28\xc2\x41\x94\x5d\x24\x19\x07\x49\x05\x6c\x9f\xe0\x20\x05\x2c\x9a\xe0\x20\xca\x58\x92\xe0\x20\xca\x74\x92\xe0\x20\x14\x66\xbe\x13\x1c\xa4\x24\xfd\x33\xd2\xd2\x5d\x4c\xbe\x92\x75\x0e\xf9\x50\xda\x09\x0e\xa2\x60\x82\x64\x1c\xa4\x2c\x58\x63\xba\x90\xaf\xea\x3a\xe4\xc3\xe0\x91\x2e\xe4\x43\x85\x27\x38\x48\x81\x77\x27\x38\x48\xc1\xb4\x95\xe0\x20\x72\xee\x27\x38\x48\xe1\x1b\x25\x38\x48\x99\xff\xda\x2a\x92\xa0\x27\x65\xea\x71\xe4\xbf\x65\x51\x4c\xd0\x93\x8a\x46\x4d\x50\x90\xca\x54\x49\x50\x10\x25\x3a\x49\x50\x90\x92\x75\x8e\xfa\x23\xd8\x4c\x13\x14\xa4\xa2\x35\x13\x14\xa4\x42\xc6\x12\x14\xa4\xe2\xd5\x4d\x50\x90\x8a\x71\x3c\x41\x41\xaa\x3e\x1f\x14\x44\x69\x4f\x12\x34\xa3\x46\xb5\xac\x86\xc3\xd2\x8b\x87\x66\x54\x34\x6a\x82\x66\xd4\xa4\x7f\x22\x43\xd2\x3f\x91\x01\xcd\x98\xa0\x19\xf2\xd1\x27\x68\x46\xc5\xa4\x92\xe0\x12\x94\xa0\xba\x13\x5c\xa2\xa2\x27\x13\x5c\xa2\x12\x8b\x98\xbc\xca\xc7\xf0\x4f\xb8\x44\x65\xf9\x4c\x70\x89\xda\x74\xdd\xc3\x3f\x79\x02\x5c\xa2\x42\xc2\x93\xea\xfa\xb2\x98\x26\xe3\x12\x45\x7b\x15\x13\x5c\xa2\xb2\x98\x26\xb8\x44\x65\xa2\x26\xb8\x44\x65\x69\x4d\x70\x89\xda\x75\x17\xe4\xd3\xe0\xf1\xaa\x11\xc3\x3d\xe1\x12\x15\x4b\x5a\x82\x2f\x28\x91\x4b\x82\x2f\x50\xa3\xec\x4e\xf0\x85\x0a\x1e\x4b\xf0\x85\x46\xcc\x4a\x82\x2f\x34\x48\x7f\x82\x2f\x28\x4a\x25\xc1\x17\xda\xa5\x7b\x5a\x3f\x9b\xd7\xd3\xad\x2f\x0d\x25\x9a\xe0\x04\x0d\xa7\x5d\x82\x13\x34\x4c\x38\x09\x4e\xa0\x24\x2f\x09\x4e\x20\x8f\x7d\x82\x13\x28\x43\x4a\x82\x13\x50\xde\xe8\x4e\x70\x82\x06\xb3\x48\x70\x02\x25\x9c\x49\x70\x82\x86\x41\x2e\xc1\x09\xa8\x3e\x79\x27\x38\x81\xf2\xb3\x24\x38\x81\xb2\xbc\x24\x38\x01\xf5\x40\xee\x04\x27\x68\x60\xbc\x04\x27\x68\x51\xf7\x44\x06\x9c\x53\x09\x4e\xd0\x34\x5a\xe1\x04\xf2\xfb\x27\x38\x41\xc3\xd7\x91\xe0\x04\x8a\x10\x48\x70\x82\x46\x94\x51\x82\x13\x34\xd4\x4a\x82\x13\x34\xd4\x7b\x82\x13\x50\x4f\xfd\x4e\x70\x82\x96\x75\x4f\x64\x08\xba\x27\x32\x60\xcd\x4d\x70\x02\xb9\xf3\x13\x9c\xa0\x11\xbd\x93\xe0\x04\xad\xeb\xe9\xc8\xa7\x91\x05\x27\x68\xa0\xc1\x04\x27\x50\x88\x40\x82\x13\x34\x8d\x2c\x38\x41\x83\xdd\x26\x38\x01\x15\x34\xef\x04\x27\xe8\xb7\xee\x82\x7c\x1a\x83\xe4\xe5\x56\xe6\x98\x04\x5f\xe8\x5a\xe6\xe1\x0b\xfd\x52\xab\xd0\xe2\x3b\x24\xa5\x8b\x65\x9c\x51\x33\x49\x81\x06\x29\x21\xdf\xd2\x3f\x07\xff\x54\x6b\x72\x17\xf5\x1a\xf9\xd8\x9f\x91\xe0\x12\x0a\x2d\x48\x70\x89\x0e\x97\x48\x14\xda\xed\x00\x88\x94\x25\x1f\x6f\x29\xab\x66\xcb\xbf\x22\x2e\x12\x84\xa4\xa3\xe1\x12\x84\xa4\xe3\xed\x4e\x10\x92\xae\xc1\x0a\x21\xe9\x5a\x30\x33\xa2\x13\xa4\x92\x32\xa2\x3f\x7a\x38\xe5\xa2\xd0\x93\x09\xb2\xa2\xb4\x35\x09\xb2\xd2\x21\x2b\x89\x72\x4a\x5d\x7a\x92\x72\x4a\x1d\xc2\x9c\x54\x4e\x09\x6b\x75\x2a\x88\xae\xe9\x50\x10\x5d\x43\x1e\xca\xd3\x35\x71\xa0\x3c\x5d\x0b\x18\x94\x47\x71\x0d\x09\xca\xd3\xab\x9e\x80\x7c\x44\xe3\x26\x28\x4f\xc7\x7a\x95\xa0\x3c\x4a\x62\x93\xa0\x3c\x54\x2a\xbe\x13\x94\xa7\x63\xf3\x4e\x50\x9e\x2e\x1d\x0a\xe5\xe9\x4d\x77\x41\xbe\xa6\xeb\x90\x4f\xba\x17\xca\x43\xa9\xc6\x3b\xe1\xbc\x51\x1c\x45\xc2\x79\xd3\xb1\xc0\x25\xe8\x90\xe2\x28\x12\x74\x88\x12\x38\x77\xc2\x79\xd3\xb1\x30\x26\x9c\x37\x7d\xe8\x1c\xf2\x81\x68\x13\xc4\xa9\x4f\x9d\x2b\x04\x43\x21\x1f\xec\x48\x71\x14\x09\x76\xd4\x97\xfe\x89\x7c\xe0\xaa\x04\x3b\xea\x1a\x9e\xb0\x23\x25\xd4\x49\xb0\xa3\xa1\x65\x17\x76\x34\xb4\x5c\xe3\xbc\x19\x58\x5e\x13\xec\x48\x29\x74\x12\xec\x68\x68\xf1\x86\x1d\x0d\x2d\x8a\xb0\x23\x25\xaa\x49\xb0\xa3\x81\xaf\x3d\xc1\x8e\x86\xd7\x13\x28\x87\x85\x35\x30\xe1\xbc\x51\x34\x46\xc2\x79\x33\x1e\xf5\xcc\xe4\x53\x82\x9b\x84\xf3\x66\x68\x9c\xe1\xbc\x51\x9a\x9c\x04\xab\x1a\x49\x4f\x40\x3e\x78\x54\x82\x55\x0d\x2d\xb4\xb0\xaa\xa1\x19\x00\xab\x52\x4c\x47\x82\x55\x29\xa6\x23\xc1\xaa\x06\x66\x9a\xa4\x72\x4a\xf0\xaf\x04\xab\x1a\x5a\x3e\x61\x55\x43\x00\x02\x56\x35\x8a\xfe\x89\x7c\x44\xc5\x24\x58\x95\x52\xe8\x24\x58\xd5\xa8\x7a\x1e\xf2\x81\xf4\x13\xac\x4a\x91\x1a\x09\x56\xa5\x64\x3b\x09\x56\x35\x34\xe6\xf1\xd0\x4c\xad\x05\x78\x68\x94\xce\x27\xc1\xb8\x06\x0c\x21\xc1\xb8\x86\xc6\x19\x8c\x4b\xf1\x1e\x09\xc6\x35\xa4\x64\xde\x42\xbb\x8c\x6b\x15\xda\xd5\xd8\x1d\x2a\x67\xa6\xe7\x21\x1f\x91\x1a\x09\xc6\xa5\xc8\x90\x04\xe3\x1a\x4b\xfd\x44\x3e\x8d\x56\x18\xd7\x80\xbd\x27\x18\xd7\xc4\xfc\x98\x60\x5c\x8a\x60\x49\x30\x2e\x45\x5c\x24\x18\x17\x85\xe4\xee\x04\xe3\x9a\xf0\x85\x04\xe3\x9a\x82\x98\x30\x2e\xc5\x58\x24\x18\xd7\xc4\xf4\x93\x60\x5c\xca\xf5\x93\x60\x5c\xd3\xe9\x2e\x26\xdf\xfc\x35\x06\xff\xbe\x24\x43\xc6\x26\x0e\xbd\x04\x19\x9b\x9a\xa8\x90\xb1\xa9\x61\x0d\x19\x9b\x5e\x0f\x1f\x3c\x40\x02\x21\xba\xd0\x2e\x64\x6c\x6a\xaa\x2c\x7d\x5a\x5e\x04\x64\x6c\x0a\x4d\x40\xc6\xa6\x74\x36\x64\x4c\xe5\x86\x12\x64\x6c\x12\xda\x96\x20\x5c\x53\x68\x17\xc2\x35\xa3\xee\x29\x19\x74\x0e\x19\x20\xa9\x09\xc2\x35\x71\x59\x24\x08\xd7\xd4\x72\x0d\xe1\x52\x48\x4e\x82\x70\x4d\x4d\x00\x23\x5c\x79\x31\xc8\x33\x84\x4b\x89\x86\x32\xa4\x6a\x42\x75\x33\xa4\x6a\x82\x49\x32\xa4\x6a\xa2\x02\x32\xc4\x69\x82\xa7\x33\xc4\x49\xe5\x8d\x32\xe4\x48\x09\x75\x32\xe4\x68\xf1\x96\x32\xce\x9b\xc5\xb2\x94\xa1\x3c\x2b\xa8\x15\x68\x3d\xb4\xc8\x13\x80\x8a\xcb\x70\x97\xc5\xdb\xcd\x70\x17\xc5\x58\x64\xb8\x8b\xe2\x21\x32\xdc\x45\xb1\x19\x19\xee\xa2\xa4\x39\x19\xee\xa2\x54\x38\x19\xee\xa2\xe4\x37\x19\xee\xb2\x24\x3b\xdc\x65\x61\xe9\xcd\xb8\x4f\x94\x18\x27\xe3\x3e\x11\x77\xc9\xf0\x9a\x05\xaa\xcb\xb8\x4f\x14\x2b\x91\xe1\x35\x8b\x09\x9e\xe1\x35\x0b\xa5\x96\xe1\x35\x8a\x95\xc8\xf0\x9a\xf7\xab\xc0\x6b\xa8\xf8\x78\x67\x78\xcd\x6a\xea\xb5\x15\x30\x53\x8e\xba\x0c\x77\x59\x70\x89\x0c\x77\x51\x1c\x45\x86\xbb\x28\x72\x22\xc3\x5d\xd6\xd4\x75\xc8\x00\x56\xcb\xca\xc9\x00\xc6\xcb\xf8\x41\x14\x7b\x92\xe1\x2e\x6b\xe9\x9c\x29\x3c\x25\x50\xcd\xc6\x5d\xb2\x6a\xf5\x64\xe3\x2e\xf9\xba\xf4\xbc\x4e\xab\xd1\xa2\x3e\x1b\x4b\x41\xa6\xbc\x2c\x15\x03\xef\x4c\x79\x59\x25\xe9\xc9\x94\x97\x55\x41\xa3\x4c\x79\xd9\x0b\x75\x94\x1f\x0a\xad\x31\x8b\xb3\xf1\x9a\xac\x2c\x36\xf9\xa1\x86\x1e\xca\x29\x1b\xaf\xc9\x57\xd0\xf3\x32\x2d\xdd\xb3\xd0\xd2\x75\xc8\x10\xf4\x04\x64\x88\xba\x0e\x19\xa2\xae\x43\x06\x14\x5e\x7e\x54\x48\x4e\xff\x5c\xb4\x98\x1d\x94\x97\xbd\xb0\x02\x67\xca\xcb\x5e\xcc\xf0\x1c\x90\x8f\xd9\x98\x29\x2f\x7b\x69\xfe\x05\x15\x92\xe3\x0d\x06\xe4\xd3\x48\x0e\xc8\x47\x88\x61\x0e\xc8\x87\x1a\xcb\x94\x97\xbd\x50\x8d\x39\x20\x9f\x46\x64\x40\xbe\xaa\xe7\x51\x03\x47\xb3\x38\x20\x1f\x81\x06\x39\x20\xdf\xd0\x3d\x91\x6f\xea\x79\xc8\x87\x67\x20\x53\x5e\x56\x51\x1c\x99\xf2\xb2\x57\xff\x57\xbe\xe4\x1c\x11\x1d\xbb\x53\x8e\x88\x8e\x2d\x39\x1b\x55\xca\x0a\xfe\xc8\x11\xd1\x41\x52\x39\x22\x3a\x8e\xb9\x6c\x54\x29\xdf\x58\x6c\xb3\x51\xa5\x7c\x3b\x5d\x47\x8d\x39\xb4\x51\xa6\xf2\xec\xed\x74\x17\xfb\xb4\xf7\xa3\xeb\x3a\xe5\x57\xd5\x1a\x9c\x53\x5f\x4c\x74\x25\xb8\xc9\x46\x95\xb2\xd2\xba\x64\xa3\x4a\xf9\x26\xd0\x26\x27\x44\xc7\x86\x99\xa9\x3c\xab\x54\x31\xd9\xa8\x52\x56\x29\xa2\x6c\x74\x28\x2b\xe1\x4c\x4e\xc8\xa0\x65\x29\x21\x83\x96\xa5\x84\x0c\x58\xa8\x72\x42\x06\xcc\x34\x39\x21\x83\x96\xba\x44\x1d\xc0\xaa\x73\xc8\x80\xf9\x23\x27\x64\xa8\x7a\x1e\x32\x68\x59\xca\x92\x81\xf7\x62\x74\x28\xab\x84\x51\xa6\x84\xec\x8d\x69\x24\x67\x64\x00\x69\xe4\xcc\x37\x02\x03\x65\xe3\x3c\x59\xb1\x27\x39\x23\x9f\x16\xa9\x8c\x7c\x20\xa2\x9c\x91\xaf\xeb\x2e\xc8\x07\xf2\xce\x19\xf9\x40\x60\x39\x23\x5f\xd7\xd3\x91\xaf\xeb\x2e\xc8\x87\x05\x35\x67\xe4\xd3\x80\xcc\xc8\x07\x06\xca\x05\xf9\xba\x5a\xc8\xa7\x51\x47\x21\x24\xc5\xb3\xe4\x42\x3f\x09\xe1\xca\xc6\x4f\xb2\x03\xe7\x64\xe3\x27\xd9\x5d\xfa\x67\xa7\xa5\xbb\x0c\x5a\xf4\xcc\xf8\x49\x56\x3c\x4b\xa6\xdc\xab\x23\x1e\x22\x53\xee\xd5\x69\x7c\x1a\x3f\xc9\x0e\x9e\x98\x2b\xe5\x50\xa5\x28\x8d\x9f\x64\x15\x3b\xca\xc6\x4f\xb2\x83\xfd\x65\xe3\x27\xd9\x05\xdd\x25\xd2\xd2\x75\x89\x16\x7d\x31\x7e\x92\x9d\x16\xb7\x4a\x4d\x42\x7d\xe9\x8a\x7c\x30\xc3\x5c\x91\x4f\x4b\x5d\x45\x3e\x2d\x75\xca\x9f\x00\x43\xc8\x0d\x19\x34\xae\x1b\xfd\x4c\x3a\x47\x3f\x31\x78\x64\x8a\x16\x29\x0e\x26\x53\xb4\xc8\x81\x84\x73\xa3\x9f\x60\xd8\xdc\xe8\x67\xd3\x39\xfa\xa9\x85\xa8\xd1\x4f\xa9\xaa\x46\x3f\x31\x77\xe6\x46\x3f\x87\xee\xc2\x77\x18\x7a\x1e\xdf\x01\x8e\x95\x1b\x32\x48\x8d\x75\x64\x80\x63\x65\xb6\xf3\x78\x8d\x79\xe3\x19\xd9\x5f\x6a\x21\x1f\xb8\x38\x77\xe4\x93\xfa\xeb\xc8\x07\x82\xce\x94\x6d\x55\x0d\xa3\x4c\xd9\x56\x65\x95\xc9\xc6\x33\xb2\xd7\x7a\xd6\x91\x4f\xa3\xd5\x78\x46\xf6\xc0\xcf\x6c\x3c\x23\x2b\x46\x26\x1b\xcf\xc8\x8a\xa6\xc9\xc6\x33\x32\xb5\x44\xef\x4c\xd9\x56\xd5\x29\xca\x94\x6d\x55\x2d\xa2\xcc\x76\x1e\x0f\x88\xcd\x03\xf9\xc2\xf5\xaf\x25\x79\x20\xba\xf0\x18\x79\x17\x14\xa0\x93\x8d\x82\x64\xaf\xc1\x6a\x34\x23\x7b\xe9\x9f\x81\x78\xd2\x31\x46\x33\xb2\xaf\x6a\x21\x9e\x3e\xf4\x40\x3c\x28\x4f\x1e\x88\x27\xdc\x48\xd5\x56\x15\x65\xca\x94\x66\x55\xc2\x99\x4c\x69\x56\x2f\x74\x36\x11\x4f\x8b\xe2\x44\x3c\x90\x70\x9e\xc8\xa0\x65\x69\x22\x83\xb4\x34\xa5\x59\x15\xe6\x93\x8d\x66\x64\x15\x3b\xca\x94\x66\x55\x32\x9a\x3c\x91\x0f\x73\x44\x9e\xc8\xa7\xa1\x44\x69\x56\x25\x72\xc9\x13\xf9\xd8\x0a\x93\x29\xcd\xaa\x10\xa0\x4c\x69\x56\x8f\x33\x25\x1b\x97\xc8\x8f\x06\xd6\x44\x3e\x2d\x52\xc6\x25\xf2\x23\x7c\xb4\x90\x0f\xcb\x5d\x5e\xc8\x87\x9d\x2b\x1b\x97\xc8\x8f\x16\x22\x4a\xb3\x7a\xe2\x52\x32\xa5\x59\x3d\xb4\x2d\x53\x9a\xf5\xd1\xb2\x64\x8e\x9d\xfc\x38\x9d\x4b\xb4\x74\x1d\xf2\x69\x81\xa6\x34\xeb\xa3\x85\xc8\x78\x46\x0e\x1a\xd6\x0b\xf9\x34\x1d\x8c\x67\xe4\x27\xea\x3a\xe4\xc3\x76\x96\x8d\x67\x64\x15\x50\xca\xf0\x0c\xc5\x74\x14\xe3\x19\x59\xe5\x86\x8a\x39\x76\xb2\x0a\x1a\x95\x0b\xf9\x70\xa5\x16\xe3\x20\xf9\x01\xaf\x14\xe3\x20\xf9\x41\x89\x96\x0b\xf9\x50\x7f\xe5\x42\x3e\xd8\x51\xa1\x34\xeb\x83\x0a\x2f\xc6\x4f\xf2\x83\x03\xaa\x50\x9a\x55\x61\x53\xc5\x1c\x3b\xf9\x49\xba\xae\xd1\xeb\x40\x0b\xf9\xba\x7a\x8d\x7c\x51\xcf\x43\xbe\xa6\xeb\xf8\x7e\xd8\xfb\xcb\x8d\x7c\x45\x2d\xe4\x63\xba\x97\x1b\xf9\x50\x63\xe5\x46\x3e\x16\xbe\x72\x23\x1f\xca\xa9\xdc\xc8\xc7\x16\xdc\x72\x23\x1f\x63\xa2\xdc\xc8\x87\x8d\xb6\xdc\xc8\x37\xd4\x42\xbe\xaa\x7f\xf2\xfd\x9c\x5a\xc8\xb7\xd4\x33\xe4\x63\x5c\x97\x9b\x6f\xa4\xb7\x64\xec\x28\x07\x28\x79\x31\x76\x94\x15\x3b\x54\x8c\x1d\x65\x95\x4c\x2a\x0e\x19\x96\xae\x33\x19\x54\xec\xa8\x18\x3b\xca\x2a\x76\x54\x8c\x1d\x65\xe5\x83\x29\xc6\x8e\xb2\xb2\xca\x14\x63\x47\x39\x10\x4e\x56\x8c\x1d\xe5\x88\xa1\xab\x38\x64\x00\xac\x15\x63\x47\x59\x19\x67\x8a\xb1\xa3\xac\xaa\x45\xc5\xd8\x51\x0e\x55\x3d\x9b\x9c\xd3\x13\x90\x0f\xa7\x79\xf1\xc8\xc7\x1a\x52\x3c\xf2\x31\xdf\x8b\x47\x3e\xc6\x75\x31\xe6\x94\x15\xe7\x53\x3c\xf2\x81\xb5\x8b\x47\xbe\xa9\xbb\x20\x1f\xab\x54\xf1\xc8\x87\xbd\xbf\x78\xe4\xd3\x28\x37\xe6\x94\xad\x4a\xd2\x5f\x97\xe4\x02\xa9\x0a\x40\xf4\x02\xa9\x0a\x20\xa2\x02\xa9\x0a\x4d\x0f\x47\x74\x4c\xfa\xc5\x23\xba\x86\xa7\x47\x74\x0d\x25\x08\x57\x80\x18\x16\x08\x57\x00\xbe\x17\x08\x57\x98\x3a\x87\xe8\x68\xb1\x02\xe1\x52\x99\xa2\x02\xe1\x52\x12\x9b\x02\xe1\x8a\x2c\x8a\x05\xc2\xa5\xc0\x9e\x02\xe1\x52\x21\xa4\x02\xe1\x52\x08\x50\x81\x70\x45\x96\x97\x02\xe1\x8a\x2c\x52\x05\xc2\x15\x6f\xfd\xd3\xe4\x53\x28\x4f\x81\x70\x29\xe9\x4a\x81\x70\x45\xdc\x43\xc5\x08\xd7\x33\x35\x40\x20\x5c\x11\x43\x42\x81\x70\x29\x89\x4d\x81\x70\x29\xb0\xa7\x40\xb8\x22\xc8\xa6\x40\xb8\x14\x3e\x53\x20\x5c\x94\xe6\xbf\x4b\xa0\x9f\x50\xf2\x02\x71\x8a\x55\xf7\xa4\x9f\x5d\xcf\xa3\x9f\x9a\xa8\x10\x27\x05\xe1\x14\x88\x93\x12\xd5\x14\x88\x53\x46\xfd\x15\xd8\x51\x04\x2d\x15\xd8\x51\x84\xbc\x17\xd8\x91\x62\x6b\x0a\xec\x48\x29\x66\x0a\xec\x28\xe2\x45\x2e\xb0\xa3\x08\x3e\x2a\xb0\xa3\x38\x74\x4f\xa6\xd8\xd4\x39\xfb\x0e\x09\x4a\x5e\x60\x47\x49\x5f\xc5\xd8\x51\x56\xa4\x4d\x81\x1d\xa9\x84\x51\x81\x1d\xa9\xec\x6e\x81\x1d\x29\x42\xa7\xc0\x8e\x12\xee\xa1\x02\x3b\x52\x41\xa3\x02\x3b\x52\xd1\xa2\x02\x3b\x52\x91\xa4\x62\x8e\xa4\x9c\x34\xb2\xcc\x91\x94\x13\x88\xa8\xc0\x9c\x94\xd2\xa6\xc0\x9c\x94\xa8\xa6\xc0\x9c\x54\x98\xa8\xc0\x9c\x12\xf1\xb0\x05\xe6\xa4\x18\xa0\x02\x73\x4a\x1a\x59\x30\x27\x25\xb1\x29\x30\xa7\xa4\x11\x02\x73\x4a\x18\x97\x0a\xcc\x29\xe1\xbd\x29\x30\x27\x95\x45\x2a\x30\xa7\x04\xa7\x2b\x30\xa7\x84\xf3\xbb\xc0\x9c\x14\x2d\x54\x60\x4e\x49\x6a\x0c\xe6\xa4\xa4\x39\x05\xe6\x94\xe0\x97\x05\xe6\x94\xb4\x7c\xc2\x9c\x12\xe6\xc0\x02\x73\xca\xf0\x93\x02\x73\x4a\x00\xab\x02\x73\x4a\x52\x40\x30\xa7\x24\x45\x09\x73\x4a\x1a\xad\x30\xa7\x84\xcb\xb0\xc0\x9c\x12\x40\xa0\xc0\x9c\x54\xb0\xa9\xc0\x9c\x92\xd6\x10\xf3\x16\x15\xc5\x7e\x95\x82\x7c\x1a\xad\xb0\xaa\xa4\x19\x50\x90\x0f\x5f\x4e\x29\xc8\x87\xad\xbc\xc0\xb8\x94\xb7\xa6\x14\xe4\x93\x32\x2c\x7c\x3f\x8d\x4f\xd8\x58\x02\xda\x14\xd8\x58\x9a\xea\x4b\xe7\x4d\xe8\x9f\x83\x96\x64\x40\x3e\xad\x3d\x30\xae\x7c\xa9\xc5\x37\x82\x2f\x14\x18\x57\xbe\xff\x15\x71\x51\x20\x63\x19\x50\x5e\x20\x63\x59\x9a\x11\x32\x96\xb5\x80\x41\xc6\x54\xb0\xa9\x40\xc6\xb2\x57\x8b\xcf\xe7\x75\x97\x4a\x8b\x41\x00\x19\xcb\xf8\x24\x0b\x64\x2c\x6b\x58\x57\xc4\x23\xe2\xb6\x98\xb3\x28\xe7\x47\xcf\xb3\xcf\xa7\xd2\x4e\x05\xa2\xa6\x64\x3b\x85\x50\xba\x8c\x9d\xb9\x98\xb3\x28\xab\x78\x54\x81\xc4\x65\x61\x2e\x48\x5c\x66\x6b\x43\x81\xc4\x29\x51\x4d\x81\xc4\xe5\xa2\x16\xf2\x81\xa7\x0b\x24\x2e\x63\xcb\x2a\x90\x38\x05\x43\x15\x48\x9c\x0a\x59\x15\x48\x5c\xd6\x80\x84\xc4\x65\xe2\x36\x0a\x24\x2e\x17\x9d\x43\xbe\xaa\xe7\x21\x1f\xde\xee\x02\x89\xcb\x1a\xf2\x90\x38\xa5\xd7\x29\x90\xb8\x2c\x1c\x00\x89\xcb\x5a\x76\x21\x71\x59\x58\x0d\x12\x97\x71\x27\x16\x88\x9a\xc2\xad\x0a\x64\x2c\x4b\x35\x42\xc6\x94\xa8\xa6\x40\xc6\x54\xe8\xa9\x40\xc6\xb2\x30\x10\x64\x4c\x61\x53\x05\x32\x96\xd9\x66\x5b\x20\x63\x59\x03\x19\xc6\xa5\xa4\x39\x05\xc6\xa5\x24\x3d\x05\xc6\xa5\xe2\x51\xc5\x9c\x3e\xb9\x48\xc1\x9a\xd3\x27\x97\x47\xad\xc4\x39\xde\x12\x6c\x4c\xe9\x75\x0a\x8c\xab\x08\x57\xc1\xb8\x8a\x46\x0f\x8c\xab\x68\x64\xc1\xb8\x94\xdc\xa7\xc0\xb8\x54\x66\xaa\xc0\xb8\x8a\x16\x3e\x18\x57\x61\x5b\x47\x81\x71\x29\x68\xab\xc0\xb8\x94\x8c\xa6\xc0\xb8\x0a\x7e\x97\x02\xe3\x2a\x98\x1c\x0a\x8c\xab\x08\x65\xc1\xb8\x94\x9a\xa6\xc0\xb8\x8a\x30\x3a\x8c\x4b\x69\x72\x0a\x8c\x4b\x49\x7a\x0a\x8c\x4b\xc9\x76\x0a\x8c\xab\x60\x4a\x2b\x30\xae\x22\xfc\x07\xe3\x52\xb0\x57\x81\x71\x15\xa9\x77\x18\x57\x21\x8a\xa3\xc0\xb8\x8a\x10\x34\x8c\xab\x60\x04\x2b\x30\xae\x42\x62\xb1\x02\xe3\x2a\x98\x2a\x0a\x8c\xab\x68\x69\x85\x71\x29\xbd\x4e\x81\x71\x15\x81\x35\x18\x57\xd1\x42\x0b\xab\x2a\xc2\xfd\x30\x27\x85\x85\x15\x98\x53\x61\x2c\x55\x98\x53\x61\xcf\x40\x85\x39\x55\x94\x6f\x85\x39\x55\xd6\xa5\x0a\x73\xaa\x98\xa1\x2a\xcc\x49\x19\x59\x2a\xcc\x49\xb9\x69\x2a\xcc\xa9\xf2\x35\x2b\xcc\x49\xe5\xb0\x2a\xcc\x49\xd9\x5a\x2a\xcc\xa9\x32\x96\x2a\xcc\xa9\x06\xdd\xa5\xd1\x72\xb4\x3a\xff\xd4\x75\x83\x96\x7a\x6d\xf2\xd5\xa4\xbe\x98\x7c\x95\x51\x50\x61\x4e\x2a\x95\x55\x61\x4e\x96\x01\xe6\xaf\x4b\x72\x85\x54\x55\xcc\x11\x15\x52\x55\x59\x5e\x2a\xa4\x4a\x89\x5c\x2a\xa4\xaa\x02\xf4\x2b\xa4\xaa\xf2\xa1\x2b\xa4\xaa\x16\xb5\x10\x0f\xa3\x46\x85\x38\x55\xf0\x5f\x85\x38\x29\xd8\xab\xde\x88\xd7\x25\x02\xe2\x75\x3d\x1d\xf1\xf8\xb4\x15\x52\x55\x31\x16\x54\x48\x55\xc5\x26\x55\x21\x55\x95\xcf\x5e\x21\x55\x15\x5f\x6d\x85\x54\x55\x6c\xde\x15\x52\xd5\x6e\x9d\x43\x06\x74\x61\x85\x54\x55\x22\x12\x2a\xa4\xaa\x2e\xdd\x93\xcf\x07\x6e\xac\x90\xaa\x3a\xd4\x17\x93\x4f\x15\xbd\x2a\xa4\xaa\x5d\xba\x6e\xf0\x3c\xc9\x80\x7c\x53\x7d\x59\x9c\xe3\x43\x43\xaa\x9a\x06\x1d\xa4\xaa\x11\x92\x53\x21\x55\xcd\xe9\x1c\x49\x3d\xb1\x6f\x56\x4f\x12\x43\xf0\x43\x85\x54\x35\xa7\x7b\x46\x5a\x3a\x97\xb8\x0e\x19\x20\x55\x0a\x2e\xab\x90\xaa\xa6\xe1\x09\x73\x52\x58\x58\x85\x39\x35\x62\x09\x2a\xcc\xa9\x3d\xba\x0b\xf2\x11\x9a\x58\x61\x4e\x2d\xe8\xe9\xc8\xa7\x41\x0e\x73\x6a\x98\x31\x2a\xcc\xa9\x45\x9d\x43\x3e\x70\x63\x85\x39\x29\x80\xac\xc2\x9c\x5a\xd4\x39\xe4\x63\x39\xab\x30\xa7\x86\xda\xac\x30\x27\x15\x06\xab\x30\xa7\x96\x75\x17\xe4\xc3\x24\x56\x61\x47\x0d\xe3\x59\x85\x01\x75\x1c\xab\x15\x97\x93\xca\x61\x55\x18\x50\x07\x33\x57\x18\x50\xd7\x64\x84\x01\x29\x1e\xa9\xc2\x80\x54\x2a\xab\xc2\x80\x14\x65\x54\x61\x40\xca\xba\x52\x71\x39\x29\xeb\x4a\xc5\xe5\xa4\xd8\xa1\x8a\xcb\xa9\x27\x3d\xa1\xd2\x52\xcf\xec\x3b\x28\x23\x4b\x85\x39\x75\x8c\x6e\x15\xe6\xd4\x35\x8b\x61\x4e\x9d\xe5\xba\xc2\x8e\x54\x1c\xab\xc2\x8e\xba\x96\x10\xd8\x51\x67\xf1\xae\xca\x03\xae\xe5\x0c\x76\xa4\x78\xa4\x0a\x3b\xea\x55\xf7\x44\x86\xa6\x73\xf4\x13\xa8\x51\x61\x40\x2a\xaa\x55\x61\x40\xbd\xeb\x09\xf4\x13\x53\x4c\x85\x01\x75\xcd\x54\x18\x50\xc7\x3e\x5d\x61\x40\x5d\xb3\x1f\x06\xa4\xc2\x59\x15\x26\xa3\x08\x9d\x0a\x93\x19\x9a\x71\x30\x99\x01\xa2\xad\x30\x99\x71\xe9\x3a\xeb\xe7\xd0\x1c\x33\x26\x53\x54\x77\xa6\xc2\x64\xc6\xad\xa7\xab\x9f\xba\x6e\x72\x8e\x7e\xc2\x64\x86\xe6\x2d\x4c\x66\xc0\x83\x2b\x4c\x66\x68\x49\x86\xc9\x0c\x58\x71\x85\xc9\x58\x9c\xcf\xdf\x97\x64\x48\xce\xc8\xba\xcc\x3e\xc3\x00\xb9\x55\x48\xce\xd0\x12\x09\xc9\x19\xb8\x8e\x2a\x24\x47\x41\x38\x15\x92\x33\x30\x6a\x54\x48\xce\xd0\xeb\x84\xe4\xa8\x94\x54\x85\xe4\x28\xb5\x49\x85\xe4\xa8\xb0\x54\x85\xe4\x0c\x48\x4e\x85\xc8\x0c\x48\x71\x2d\x88\xa7\x0f\x06\x91\x19\xe0\xb8\x0a\x59\x19\x4b\xff\xb4\xbe\x4c\xbd\x78\x08\x89\x42\x56\x2a\x84\x64\x82\xc3\x2b\x84\x44\x11\x25\x15\x42\x32\xbd\xae\x9b\xb4\xf8\x0c\xb8\x87\x26\x5e\xeb\x8a\x7b\x48\x25\xa1\x2a\x64\x65\x6a\x59\x82\xac\x4c\x4d\x54\xc8\xca\xd4\xd4\x84\x91\x4c\x4d\x69\x18\xc9\x0c\xba\xce\x64\x50\xd1\xa9\x0a\x23\x99\x51\xd7\xd9\xbb\x9e\x4e\x4f\x47\x3e\xc8\x66\x85\x91\xc8\x88\x52\x61\x24\x4a\x90\x52\x61\x24\x4a\xc1\x52\x61\x24\x8a\x44\xa9\x30\x92\xa9\xef\x0e\x23\x99\x58\xc4\x2a\x8c\x64\x6a\x82\xc3\x48\xa6\x14\x33\x8c\x64\xe2\x82\xad\x30\x92\xa9\xc9\x0f\x23\x99\x60\xb5\x0a\x23\x99\x52\xd3\x30\x92\xa9\x85\x01\x46\x32\x35\xce\x60\x24\xca\x90\x52\x61\x24\x53\xca\x1e\x46\x32\x41\x6e\x15\x46\x32\x61\x08\x15\x46\x32\xa1\xa5\x15\x46\x32\x9b\xae\x43\x3e\x8d\x56\x18\xc9\x24\x8c\xb0\xc2\x48\x54\x8c\xab\xc2\x48\xa6\x46\x1d\x8c\x64\x6a\x44\xc2\x48\x54\x7e\xab\xc2\x48\xa6\x46\x1d\x8c\x64\x2e\xfd\x13\xf9\x04\x19\x70\x2b\x29\xef\x49\x85\xad\x2c\x2d\x21\xb8\x95\xd6\xa5\xbe\x98\x7c\xeb\x56\xab\xd1\xe2\x8b\xc1\x64\x16\xdb\x33\x2a\x4c\x46\xb9\x4d\x2a\x4c\x66\xdd\xea\x0b\xf1\x41\x1a\xe5\x30\x99\x25\xdc\x08\x93\x59\x82\x0c\x30\x99\x25\xa5\x0d\x93\x59\x52\xef\x30\x99\xe5\x75\x5d\xa0\xc5\xd3\x61\x32\x8a\x01\xaa\x30\x99\xa5\x79\x04\x93\x51\x0e\x96\x8a\x5f\x49\x05\xb7\x2a\x7e\xa5\xa5\xd9\x01\xcb\x59\xc2\x9b\xb0\x9c\x77\x51\x84\xe5\x2c\x4c\x31\x15\x96\xa3\xa2\x61\x15\xee\xb2\x8a\x5a\xf4\x1a\xb3\x49\x85\xbb\x28\x7a\xa7\xc2\x5d\x54\xc8\xaa\xc2\x5d\x14\xcb\x53\xe1\x2e\x8b\xfc\x3a\x15\xee\xb2\xb4\x4a\xc1\x5d\x16\x06\xd5\x0a\x77\x59\x82\x67\x70\x97\x35\xf5\x4f\x7a\x3d\x75\xcf\xc1\x9e\x01\xdd\x93\x5e\x8b\x05\x18\x77\x29\x97\xbe\xb4\xf1\x93\x72\xfd\xd3\x70\x51\x8d\xba\x14\xd5\xa3\xaa\x46\x5d\x8a\x02\x6d\xaa\x51\x97\x72\x49\xc7\x18\x75\x29\x17\x84\xb2\x2e\xb6\x2f\x48\x57\x18\x75\x29\x0a\xe5\xa9\xe6\x2c\x2a\x17\xa6\x8a\x6a\xce\xa2\x72\x89\x2e\x18\xad\x29\x97\x96\x41\x73\x16\x95\x4b\x9f\x1d\x67\x91\x2a\x7a\xb5\x0b\x11\xb0\xcb\xb4\x8b\x7e\xf2\x69\xdb\x45\x3f\xbd\xce\xd1\x4f\xd0\x59\xbb\xe8\x67\xd0\x5d\xe8\x67\xd0\x3f\xe9\x67\xd4\x39\xfa\x09\x02\x6b\xec\xe6\x51\x48\x4e\x33\xea\x52\x62\xd5\x3f\xe9\x27\x8b\x5b\xbb\xf4\x19\xd4\x9a\x9c\x1b\xb4\xf8\x0c\x2c\x75\xcd\xa8\x4b\xb9\x40\x6e\xcd\xa8\x4b\xb9\x58\xc0\xda\x8d\x7c\xe0\x9c\x76\x23\x1f\x11\xa9\x8d\x04\xde\x97\x9e\x7e\x23\x5f\xd5\x39\xe4\x6b\x7a\x02\xf2\x61\x52\x69\x37\xf2\x31\x94\xda\x8d\x7c\xa0\x90\x46\x5e\x38\xf7\xe8\x9e\x7c\x07\x96\x9e\x66\xdc\xa5\xdc\x97\xae\x33\xf9\xee\x5b\xad\x49\x4b\xfd\x34\xf9\x6e\xfc\xcd\xcd\xb8\x4b\xb9\x51\x63\xcd\xb8\x4b\x51\x31\xa7\x66\xdc\xa5\x28\x0b\x4a\x33\xee\x52\x6e\x7d\x15\xe3\x2e\xe5\x46\xad\x34\xe3\x2e\x45\xe9\x59\x9a\x71\x97\x72\xe3\xb4\x6b\x6c\x03\x52\xc1\xa6\x66\xdc\xa5\xdc\xfa\x0e\xc6\x5d\xca\x8d\x7a\x68\xc6\x5d\xca\xad\xf7\x69\xdc\xa5\x28\x0e\xa6\x39\xe4\xab\x6a\x21\x5f\xd5\x75\xc8\xa7\xb7\xeb\x90\x0f\xf5\xd0\x3c\xf2\xe9\xed\x7a\xe4\x63\x4b\x44\xf3\xc8\xd7\xf4\x4f\x64\xc0\x6e\xdf\x3c\x32\xb0\xcc\x37\xb6\xfa\xdc\x58\x49\x9b\x47\x06\x20\x4a\x23\x5c\xee\x06\x78\x34\x8f\x0c\xf0\xa8\xe6\x91\x41\xdf\xc8\x23\x03\x0a\xa1\x19\x07\x29\x2a\x22\xd4\x1e\xfa\x09\x28\x69\xc6\x41\x8a\x8a\x0f\x35\xe3\x20\x45\x39\x51\x9a\x71\x90\xe2\x98\xef\xcd\x38\x48\x71\x58\xe3\x9b\x71\x90\xa2\xda\x40\xcd\x38\x48\x71\x2c\x91\xcd\x38\x48\x71\x8f\xae\xcb\xb4\x90\xd6\x38\x48\x51\xd4\x48\x33\xef\x4d\x79\xc7\x99\x79\x6f\x8a\x2b\xba\xce\x64\x70\x5e\xfd\x1c\xfc\x13\xf9\xcc\x7b\x53\x1c\xf0\xa5\x3d\xc8\xc7\x22\xdc\x8c\xbb\x14\xe5\x4b\x69\x01\xf9\x50\xfd\x2d\x20\x1f\xce\xb7\x16\x90\x0f\x36\xd6\x02\xf2\x01\x15\x5b\x40\x3e\xfc\x5f\x2d\x20\x1f\x0b\x74\x0b\xc8\x37\x75\xce\xe4\xf3\x97\xae\x43\xbe\xa5\x7b\x9a\x7c\x1e\x73\x59\x33\xee\x52\x3c\x71\x30\xcd\xb8\x4b\xf1\x9a\x2b\xc6\x5d\x8a\xc7\xf0\xdb\x8c\xbb\x14\x7f\xff\x2b\x85\x7d\x33\x87\x50\x51\xcc\x43\x33\x87\x50\xf1\x90\xb8\x66\x94\xa7\x28\x30\xa4\x19\xe5\x29\x1e\x1d\xda\x8c\xf2\x14\x8f\x16\x6b\x46\x79\x8a\x07\xd5\x35\xa3\x3c\x45\xf1\x10\xcd\x28\x4f\xf1\x38\x1b\x9a\x51\x9e\xe2\x35\x51\x23\xa2\x37\x5d\x87\x78\x20\xa9\x46\x48\x9c\xd7\x0b\x8c\xf4\x13\x1b\x66\x4b\xf4\x13\x9d\xd6\x12\xfd\x1c\x3a\x47\x3f\xc9\x59\xd0\x12\xfd\xc4\x82\xda\x12\xfd\xd4\xe4\x48\xf4\xb3\xeb\x3a\xfa\xa9\x05\xcc\xe8\x50\x79\x30\x39\x34\xa3\x43\xe5\xd1\x20\x37\x3a\x54\x14\x7f\xd1\x8c\x0e\x15\x45\x55\x34\xe8\x90\xa2\x23\x9a\xd1\xa1\xf2\xdc\x7a\x9e\x7d\x22\x15\xd9\x69\x46\x87\xca\x83\x59\xa1\x19\x1d\x2a\xf2\xfb\x37\xa3\x43\xe5\x41\x35\x36\xa3\x43\x45\xe9\x52\x9a\xd1\xa1\xa2\xb4\x27\xcd\xe8\x50\x79\xb0\x7a\x35\xca\xb6\x3e\x1a\x2e\xc6\x79\xca\x83\xe9\xa0\x19\xe7\x29\x8f\xbe\x51\x46\xbe\xa8\xeb\x90\x4f\x93\x31\x23\x5f\xd4\xf3\x98\x62\x38\xae\x5a\x46\xbe\xa4\xbb\x20\x5f\x52\xaf\x91\x0f\xbb\x68\xcb\xc8\x27\x55\x95\x91\x4f\x53\xa5\x20\x9f\x46\x48\x41\x3e\x2c\xa8\x0d\xc7\xce\x23\xa5\x56\x90\x8f\x88\xd4\x66\x8e\x9d\xa2\xfc\x17\xcd\x1c\x3b\x45\xde\xee\x66\x5c\xa9\xc8\x9f\xde\xcc\xb1\x53\xe4\x33\x6f\xe6\xd8\x29\x41\x53\xda\xb8\x52\x09\xc4\xdd\x34\xe3\x4a\x45\x9e\xf7\x66\x5c\xa9\x84\xaa\x7b\x4e\x5a\xc8\x60\x5c\xa9\x28\xab\x45\x33\xae\x54\x02\xce\xa2\x66\x5c\xa9\xc8\xdd\xdd\x8c\x2b\x95\x00\x46\x6f\xc6\x95\x8a\x72\x5c\xb4\x37\x4f\x1b\x7d\xa9\xc8\xa0\xd1\x5a\x91\x01\xc2\xdc\x2a\x32\x74\x3d\x0f\x19\x70\x9a\x37\xb6\xfa\x04\xfc\x04\xcd\xb8\x52\x09\x5a\xe6\x2b\xf2\x0d\x5d\x87\x7c\x5a\xe6\x2b\xf2\x69\xe6\x54\xe4\x93\x0a\x37\xae\x54\xa2\x46\x9d\x71\xa5\x12\x31\x6d\x35\xe3\x43\x25\x82\x8b\x9b\xf1\xa1\x12\x41\xc2\xcd\xf8\x50\x51\xe5\x97\x66\x7c\xa8\x44\x2d\xb4\xc6\x87\x4a\xd4\x98\x30\x3e\x54\x94\xe3\xa2\x19\x1f\x2a\xaa\xfc\xd2\x8c\x0f\x15\x55\x7e\x69\x0d\x48\x14\x74\x4f\xc2\x63\xb1\xe2\x37\xe3\x43\x45\x39\x2e\x9a\xf1\xa1\xa2\x6c\x18\xad\x21\x03\x5e\x98\xd6\x91\x01\xc3\x4c\x33\x3e\x54\xa2\xd4\x43\xc7\x81\x88\xd7\xa7\x75\xe4\x93\x2a\xee\xc8\xa7\x51\xd0\x91\x41\xab\x54\x47\x06\x29\xe6\x8e\x0c\x98\x69\x5a\xa7\x9f\x44\x5f\xb5\x4e\x3f\xa5\x98\x3b\xfd\xfc\xa5\xb4\xff\xbe\x24\x77\x44\xd0\x20\x18\x72\x7c\xa8\x85\x08\xfa\xb4\x46\x79\x8a\x7c\xd8\x6d\x20\x82\x06\x08\x89\xb1\xe5\xd1\x6e\x46\x79\x8a\xf2\x51\x34\xa3\x3c\x45\xde\xf5\x66\x94\xa7\xc8\xbb\xde\x8c\xf2\x94\xa4\xc5\xcd\x28\x4f\x49\xc2\xc5\x24\xc6\x96\x3f\xbd\x19\xe5\x29\x2a\x11\xd3\x8c\xf2\x14\x95\x88\x69\x46\x79\x4a\x92\x6e\x32\xca\x53\x94\xf1\xa2\x99\x63\xa7\x24\x48\x7f\x33\xc7\x4e\x49\x42\x75\xe6\xd8\x29\x09\x8c\xde\x26\x56\x59\x2d\x67\x13\x19\xa0\x58\x6d\x22\x83\x34\xff\x44\x06\x0d\xcf\x89\x0c\x42\x0c\x13\x19\x34\xe8\x26\x32\x68\x19\x9c\xc8\x20\x34\x31\x91\x41\xc3\x0c\x02\x24\x9f\x79\x33\x02\x14\x14\xdb\xd9\x20\x40\xca\xb7\xd1\x16\x32\x60\xa1\x6a\x0b\x19\x08\xe8\x6a\x90\x23\xd5\x7a\x69\x30\x20\x15\x9a\x69\x30\xa0\xa4\xa5\x0e\x06\x94\xb0\x53\x36\x18\x50\x22\xdc\xbe\xc1\x80\x94\x7d\xa3\xc1\x72\x92\xf0\x0a\x2c\x27\x69\x01\x83\xe5\xa8\xee\x4c\x5b\xc8\x00\x85\xec\x17\xfd\xec\x6a\xd1\x4f\x8c\x0c\x1d\x06\x94\x50\x86\x1d\x06\x24\xaf\x7c\x87\x01\x29\x8b\x46\x87\x01\x25\xb6\x73\x77\x18\xd0\x62\xf2\x77\x18\x90\xbc\xe4\x9d\x6d\x39\x4a\x14\xdf\x61\x40\x69\xe9\x79\xc8\x40\xee\xbe\x0e\x03\x92\x07\xbd\xc3\x80\x94\x7d\xa3\xc3\x80\xb2\x57\xcf\x6c\x2c\x65\xc6\x52\x87\x01\xc9\xc1\xdd\x61\x40\x99\x68\x8c\x0e\x03\xca\xec\x75\xeb\x30\x20\x55\x9a\xe9\x30\xa0\xac\x5e\xc3\x80\x32\x4b\x56\x87\x01\xc9\x19\xdd\xe1\x35\xca\xd3\xd1\x6f\x52\xc3\xc3\x10\x3a\xbc\x46\x19\x36\x3a\xbc\x46\x19\x36\x3a\xbc\x46\x6e\xdd\x0e\xaf\xc9\x4d\x4f\xa7\xd7\x78\x6f\x3a\xbc\x26\xeb\xab\xc0\x6b\x94\x8b\xa3\xc3\x6b\x32\x48\xb1\xc3\x6b\x32\xa6\x98\x0e\xaf\x29\x97\xae\x0b\xb4\xf4\x4f\xfb\x2a\xca\x8d\xd1\xe1\x35\xe5\xd6\xf3\x32\x2d\xde\x27\xbc\x46\xb5\x49\x3a\xdc\xa5\xe8\xed\xc2\x5d\x0a\x1e\x93\x0e\x77\x51\x16\x8d\x0e\x77\x29\x60\xd1\x0e\x3f\x29\xcc\xbf\x6e\xbe\x95\x52\x98\x7f\x1d\xdf\x4a\x01\xcd\x77\xb8\x4b\x01\x79\x77\xb8\x4b\xd1\x9b\x87\x9f\xc8\xc9\xdb\xe1\x27\xca\xa9\xd1\x3d\x7d\x21\x85\x55\x87\x83\x14\x54\x71\x87\x83\x14\x8d\x33\x38\x48\x81\xc9\x74\x38\x88\x8a\x77\x74\x38\x48\x01\x2a\x76\x38\x48\x19\xff\x32\x5c\x74\x68\x46\x59\xba\x65\xa3\xa5\x9b\xd8\x2b\xab\x64\x9b\xea\xd0\x8c\xaa\x81\x0c\xcd\x50\xbd\x8c\x0e\xcd\x28\x68\xdb\x0e\xcd\xa8\x2c\x91\x1d\x9a\x51\x41\x83\x1d\x9a\xa1\xac\x16\x1d\x9a\x51\xf5\x02\xa1\x19\x55\xaf\x1a\x9a\x51\x89\x76\xec\xd0\x0c\xe5\xbf\xe8\xd0\x0c\x65\xca\xe8\xd0\x8c\xaa\xd7\x09\xcd\xa8\xa8\x95\x0e\xcd\x90\x27\xb5\x43\x33\x94\x37\xa3\x43\x33\x2a\x9a\xb8\x43\x33\x54\x13\xa3\x43\x33\x6a\xd4\x3d\x17\x2d\x06\x0f\x5c\x42\x19\x36\x3a\x5c\xa2\x6a\x52\xc1\x25\x2a\x08\xb3\xc3\x25\x2a\x28\xab\xc3\x25\x94\xf1\xa2\xc3\x25\xaa\x3e\x34\x5c\xa2\x76\x9d\x43\x3e\x08\x57\x87\x4b\xa8\x46\x45\x87\x2f\x28\x03\x45\x87\x2f\x54\x2c\x5b\x1d\xbe\x20\x27\x68\x87\x2f\x54\xd2\x00\x75\xf8\x42\xc5\xce\xd5\xe1\x0b\x72\x7b\x76\xf8\x82\x9c\x99\x1d\xbe\xa0\x6a\x16\x1d\xbe\xa0\xec\x14\x1d\xbe\xd0\x34\xc5\xe0\x0b\x72\x5f\x76\xf8\x82\x6a\x54\x74\x38\x41\xc3\xdb\xdd\xb3\xaa\x59\xf0\x76\xc1\xef\x0d\xf5\xd7\xc1\xef\xaa\x3c\xd1\xc1\xef\x72\x27\x76\x30\x7a\x63\x1b\x50\x07\xa3\x37\xcc\x1f\x1d\x8c\x2e\x67\x5f\x07\xa3\xb7\xa2\xbb\xd8\xf7\x53\x3d\x89\x0e\x46\x6f\xd8\xb5\x3b\x58\xbb\xa1\x56\x3a\x58\x5b\x19\x1a\x3a\x58\xbb\xe9\x3b\x80\xb5\x1b\xf8\xb6\x83\xb5\x1b\x48\xb8\x17\x64\xd7\x72\x56\xe8\xa7\xbe\x18\x58\xbb\x61\x83\xee\x60\xed\xa6\xd9\x01\xd6\x6e\xb0\xb1\x0e\xd6\x6e\x43\xad\x9b\x73\xf4\x13\xac\x2d\xc7\x63\x07\x6b\x37\x29\xa0\x8a\x0c\xfa\x7e\x60\xed\x46\xe6\x91\x0e\xd6\xee\x18\x27\x3a\x58\x5b\xb9\x23\x3a\x58\xbb\x6b\x31\x05\x6b\x2b\x07\x44\x07\x6b\x77\x29\x27\xb0\x76\xd7\x77\x07\x6b\xab\xbc\x44\x07\x6b\x77\x2d\xc2\x60\xed\x7e\xa9\x9f\x8b\x16\xcf\x03\x6b\x77\x2d\xa6\xe6\x97\x28\x2a\x4b\xd1\x1b\xf2\x69\x84\x80\xc3\x55\xa4\xa2\x83\xc3\xbb\x16\x6f\x70\x78\x07\x4a\x75\x70\x78\xc7\x97\xd3\xc1\xe1\x5d\x23\x0b\x1c\xde\xa5\x0c\xc1\xe1\x5d\xeb\x04\x38\xbc\xc3\xd4\x3a\x38\x5c\x99\x32\x3a\x38\xbc\x47\xdd\x13\xf9\x92\xee\x82\x7c\x38\x5d\x3b\x38\xbc\x13\x4c\xd0\xc1\xe1\x9d\xa0\xd0\x0e\x0e\xef\xfa\x0e\xe0\xf0\xa1\x77\x0d\x0e\x1f\xbf\xde\xe0\xdf\x97\x64\x20\x7a\xd7\x24\x36\x97\x45\x19\xd2\x85\xe6\xb2\x28\xca\x59\xd0\x81\xef\x03\xbc\xd9\x81\xef\xc3\xe9\x9c\x89\xae\x3d\xef\xdd\x5c\x16\x65\x38\xdd\xc5\x44\x57\x75\x89\x0e\xb4\x1f\x9a\x8c\x40\x7b\xe5\x3a\xe8\x40\x7b\x55\x82\xe8\xe0\xf7\x01\x41\xef\x86\xdf\x8b\x32\x18\x74\xf0\xfb\xd0\xab\x06\xbf\x2b\x83\x41\x07\xbf\x0f\x10\x6d\x07\xa3\xab\x4a\x44\x07\xa3\x0f\x4d\x70\x30\xfa\x90\x0e\x05\xa3\xab\x4a\x44\x07\xa3\x2b\xbb\x41\x07\xa3\x2b\x2f\x41\x07\xa3\x0f\x08\x73\x07\xa3\x2b\x33\x40\x07\xa3\x8f\xa8\x7e\x22\x03\x58\xb4\x83\xd1\x47\x51\x0b\x19\x08\x6d\xeb\x13\x19\x08\x4e\xea\x13\x19\x08\x39\xea\xe0\xf7\x21\x9c\x03\x7e\x1f\x78\xad\x3b\xf8\x7d\x40\x9f\x3b\xf8\x5d\xf9\x05\x3a\xf8\x5d\x2e\xd8\x0e\x7e\x57\x75\x89\x0e\x7e\x97\x43\xb6\x83\xdf\xe5\xc8\xed\xe0\x77\xd5\x85\xe8\xe0\xf7\x41\x82\xa2\x3e\x91\x4f\x4a\x1b\xfc\xae\x6a\x16\x1d\xfc\x3e\x84\x68\xc1\xef\x43\xca\x02\xfc\x3e\x96\xce\x99\x0c\x13\x4b\x68\x07\xa3\x4f\xcc\x1f\x1d\x8c\xae\xad\xf3\x1d\x2f\x85\xb6\xb9\x77\xbc\x14\x72\x4a\x76\xf0\xfb\x24\x2c\xac\x83\xd1\xb5\xb1\xbd\x5b\xf0\x55\x99\x45\xf7\xa4\x7a\x0d\x4b\xf2\x00\xbf\x4f\xb6\x7a\x0f\xf0\xbb\x4a\x1e\x0c\xf0\xfb\xe4\x3b\x0c\xf0\xfb\xe4\x7d\x0e\xf0\xbb\xdc\x90\x03\xfc\x3e\xab\xee\x02\xcf\x88\x7a\x02\x32\x60\x72\x18\xa0\xf2\xc9\xb2\x3b\x40\xe5\x73\xe8\x9c\xb2\x20\x4f\x5a\xf4\x7a\xe8\x9e\xf4\x9a\x88\xa0\x01\x2a\x9f\x98\x1c\x06\xa8\x7c\x62\xc8\x1b\xa0\x72\x95\x43\x18\xa0\xf2\x89\xf2\x1d\xf8\x1e\x26\x0c\x76\xb0\xc9\x3e\x62\x41\x1d\xa0\x6b\x39\x17\x07\xe8\x7a\xb1\x0c\x0e\xd0\xf5\x02\xa7\x0e\xd0\xb5\x5c\x78\x03\x74\xbd\xf0\x1a\x0c\xd0\xf5\xc2\x78\x36\x40\xd7\xda\xf0\x3f\x40\xd7\x0b\xaf\xc1\xc0\xde\xbf\xa2\xee\x49\xcc\x43\xd4\x5d\xec\xbd\x2c\x4c\x1c\x03\xcc\xbc\x92\xee\x49\xcf\x58\x22\x07\x98\x79\xf1\x6d\x07\xf6\x7e\xb9\xfe\x06\xf6\xfe\x85\x51\x6a\x18\x9e\x0e\x99\xad\x6f\x83\x3a\x30\x85\x98\xe5\x01\x9e\xbe\x98\xef\x43\x29\x84\x59\x27\x86\xe1\x69\x27\x33\xcd\x30\x45\xe9\x3d\x38\x7c\x98\xa2\xf4\x1e\x15\x37\x4c\x51\x7a\xd9\x8b\x87\x29\x4a\xaf\xaa\xec\xc3\x14\xa5\xf7\xc0\x97\x61\x8a\xd2\x5b\x4d\xf8\xbf\x2e\xc9\xc3\x74\xa8\xd7\xc6\xc5\x61\x3a\xd4\x7b\xac\x9d\xc3\x74\xa8\xf7\x2c\x60\xc3\x74\xa8\x57\xd2\xec\x61\x3a\xd4\xfb\x4b\x0f\xef\x3c\x4e\xd7\x0d\x5a\xba\xe7\xa4\xd5\x68\x2d\x3a\xcd\x67\x30\x1d\xea\x65\x9f\x1e\x8d\x4e\xb3\xf4\x8c\x46\xcf\xf0\xbc\x0f\xd3\x7e\x5e\x15\x0f\x86\x69\x3f\xaf\x1a\x07\xc3\xb4\x9f\xbb\x31\x63\x8c\x46\xcf\xba\xfe\xd9\xed\x9c\x86\x99\x29\x20\xef\x30\x55\x8c\xce\x2b\xc3\x86\x39\x3a\x4f\x67\xf2\x8f\xce\xd3\x21\xfd\xc3\x14\x90\xd3\x66\xd6\x61\x0a\xc8\xc9\x29\x32\x4c\x01\x39\x07\x52\x1c\xa6\x80\x9c\xd3\x04\x37\x05\xe4\x1c\x64\x6c\x98\x02\x72\x4e\xbd\x36\x05\xe4\x1c\x11\xc5\xc3\x94\x4c\x50\x9d\xeb\x81\x92\x51\x2c\xf0\xa0\x7a\xda\xc4\x39\x35\x86\xf0\x83\xae\xa3\xe4\x0e\x2a\x75\xc8\x2f\xde\xf5\x4f\xca\x76\xe9\x9d\x99\x02\x0a\x5e\x8b\x8d\x29\xa0\x91\xa3\x1f\x2a\x04\x35\x4c\x09\x85\x77\x18\xa2\x84\x14\x55\x3c\x48\xed\x22\x37\xde\x50\x04\x30\xfe\x80\x21\x25\x44\x2a\xcf\x41\x04\xb0\xb2\x42\x0c\x2a\xa8\x29\x17\xc2\xa0\x82\x9a\xc3\x92\x3f\xa8\xa0\x26\xfb\xe0\x30\x25\xb4\x14\x33\x3a\xf0\xa2\xcb\x0a\x3e\x64\x44\x22\xe6\x63\x98\x12\x0a\x91\x68\x8d\x61\x4a\xc8\x2b\x4d\xd0\x98\xca\x34\xa1\x27\x90\x2d\x43\xef\xc6\x94\x50\x58\x04\x6e\x0d\xf2\xb7\x14\x90\xd6\x30\x25\xf4\x2c\x2d\x7e\xa6\x84\x82\xc7\x7e\x3d\x30\x22\x5d\x44\x6b\x8c\xa9\xd8\x0d\xfe\x69\x4a\x28\x84\xa6\xd6\x6d\xef\x34\xcd\xd1\x51\x4b\xc3\x14\x51\xe8\x9a\x41\xaf\x21\x09\x39\xc8\xe1\xa2\x18\xeb\x41\x65\xb6\x1b\x94\x36\x4c\x49\x8d\x1c\xe2\xe8\xef\xbf\xc9\xf1\x02\x17\x1b\xda\x7b\x09\x08\x19\xeb\xe7\x5b\xce\xa5\x23\x26\xeb\xa5\xf9\x68\xc6\xa6\x50\xa5\x20\x28\xc3\xe6\xb5\xd8\x49\x91\x69\x9c\x13\x45\xac\x1a\x7e\xc3\x14\x59\x18\x70\xa7\xa9\x7a\xd9\xcc\xd5\x49\xbd\x6c\xa9\xb5\x29\x45\x06\xd3\x98\x28\xb2\x01\xfe\x9c\xe4\x80\x09\xcc\x96\x79\xc9\x0d\xaa\x7b\x5a\x0d\x17\x45\x57\x4f\x4a\xb4\x69\x73\xca\x24\x8a\x38\x30\x5e\x27\x86\xa8\x86\xb5\x7c\x62\x88\xd2\xb6\xe9\x49\x62\x4d\xdf\x75\x97\x6e\x5f\x6f\xe9\x79\xf6\x2d\x15\x72\x38\xe5\x8a\xc7\xaf\x35\x4d\xe5\xf1\xbd\x50\x90\x93\xc4\x9b\x57\x52\x4b\xf9\x78\xb8\x13\x6a\x4f\xc9\x1f\x26\x65\xda\x22\xb0\x65\x9a\x31\x6a\x29\x72\x79\x12\x2e\x1c\x00\xa8\x93\x70\xe1\xa0\xb7\x68\xee\xf8\xf0\xa0\x4a\xa7\xb9\xe3\x83\x29\xdd\xbf\x2e\xd3\x93\x0a\x6e\xda\xb6\x30\xdf\xed\x99\x9e\x16\x5e\xe0\xaa\x4e\x63\x4b\x2c\x7a\x80\xf6\x25\xf1\x4a\xd1\xb9\x89\x18\xbd\x89\xce\xbd\x88\xb4\x9d\x4a\x6c\xc3\x14\x98\x54\x70\x7b\xc0\x92\xd3\x29\x58\x84\xeb\x88\x32\x56\x45\xeb\x49\x19\xee\xa7\xe9\x3a\x1b\xc6\x19\xda\x35\x49\x6c\x73\x33\x39\x27\x89\x6d\xee\xa4\xbb\x10\x65\xac\x4f\x61\x16\xad\x20\xe7\xc4\x44\x73\x5f\x7a\xf1\xa6\xb9\x83\x03\xb1\x4d\x2a\xb8\xc9\xad\x37\x49\x6c\x13\xb0\xb5\x4d\x34\xf7\x15\x74\x17\xcc\x09\x20\x85\x49\x94\xf1\xcd\xa4\x9e\x68\x6e\x05\x56\x4d\x34\xb7\x12\xd2\x4f\x34\xb7\x42\x6a\xa6\xd7\xa7\xe5\x4d\x10\x65\x1c\x41\xa4\xd3\xc7\x9f\x01\x94\x75\xad\x82\x7a\x74\xad\x95\x21\x52\x96\xdc\x89\xa5\x4c\x31\xb4\x93\x2a\x6e\x15\x4b\xe7\x24\x69\x67\x07\xa3\x4e\x22\x8d\x95\x3c\x75\x92\xb4\x53\x93\x79\x5a\xa4\x71\x50\xe4\xc0\xa4\x8a\x9b\x94\xf2\xa4\x8a\x5b\x61\xa2\x4f\x2c\x6c\xda\x60\x3f\xcd\xc2\xb6\x14\xda\x3f\xa9\xe2\xf6\xb0\x30\x4d\x2c\x6c\x37\x35\x52\x26\x55\xdc\x1e\x48\xfd\x34\x2f\xff\x52\x86\xd9\x69\x5e\xfe\x90\xf5\x65\xf0\xf2\xe7\xa0\x27\xd8\x37\xcc\xb8\x43\xa7\x99\xdf\x78\x37\x49\xbd\x63\x1b\x38\x16\xbf\x49\x24\xb2\x16\xca\x69\x26\xb8\x90\x31\x7f\x4c\x92\x81\xaa\x48\xed\xc4\x04\xa7\x28\xd7\x49\x32\x50\x25\x0c\x9a\x41\xa5\x96\x78\x6f\x66\x82\x0b\x4a\x96\x3e\x83\x22\x82\xb8\x0b\x26\xb8\x77\x64\x06\x45\xcc\xa8\x45\x34\xf5\xa5\xbb\x50\x8a\x48\x7d\xa1\x92\x5b\xd1\x02\x42\x32\xd0\xa2\xd1\x1e\x50\x99\x5a\x78\x48\x06\xea\x34\x86\x31\xc1\x5d\x98\x0a\x67\x20\xbf\x2f\xa6\x91\x19\xf0\x4b\xe0\x36\x9b\x4a\x14\x0a\xee\x9f\x94\x6b\x5b\xfa\x32\x51\x11\x25\x6a\x99\xca\xf4\x1a\x33\x94\x6b\x53\x8c\xc5\x24\x82\xb9\x12\x61\x35\x29\xd7\x96\xd4\x33\x12\x85\x56\xcd\x74\x4c\x70\x17\x9b\xec\xa7\x99\xe0\x42\x2d\xba\x8e\x68\x71\xa7\x73\x26\xdf\xd4\x17\x23\x51\xa8\x22\xc1\xa6\xb9\xfa\x97\xcc\x81\x93\xe8\xe6\xf0\xf6\x8c\x1c\xe1\x55\xff\x34\x35\x52\x71\x46\x4f\x33\xeb\x05\xa5\xfd\x9a\x94\x72\xeb\x98\x85\x26\xfb\x3b\x1f\x8d\x35\xcc\x7a\x19\xd0\x31\x31\xeb\x75\xcd\x66\xcc\x7a\x93\xb8\x9b\x69\x66\xbd\xa0\x98\xa3\x89\x59\xaf\x48\x8d\x28\x51\x28\x20\x6f\x2a\x0c\x80\x9d\x92\x93\x52\x6e\x37\xa6\x9f\x49\xa2\xd0\xf8\x3e\x81\xfa\x2a\xff\x4c\xdc\x39\xc9\x21\x7a\xe3\xb5\x9e\x04\x4c\x5f\x97\x3a\xad\x0c\x0d\xbc\x24\x8b\x10\x58\xaa\x3b\x3d\x2d\x0a\x60\x15\x70\xcc\x54\xc9\x6d\xdd\x25\x6b\x7f\x20\x2f\x3e\x7f\x96\x99\x4b\x47\x6c\x1a\x2a\x94\x69\x5a\x24\x80\xf4\x98\xee\x5d\x7e\x8e\x40\x08\xa6\x59\x1b\x43\xf0\xba\xa2\xd1\xd2\xbf\x4d\x63\x06\x0d\x4e\xb3\x36\x86\xa8\x97\x49\x8d\xed\xa8\x4f\x69\xd6\xc6\x90\x35\xc8\x2c\x22\x20\x54\x3c\xe6\xb3\x80\x7e\x9e\x38\x26\x58\x78\x16\xa1\x1f\xfd\xdb\xdb\x87\x87\xf4\x4c\x2a\xbb\x5d\x78\x72\x27\x95\xdd\x3c\x76\xe7\x49\x65\xb7\x47\x53\x9c\xca\x6e\x01\xd2\x33\xa9\xec\x16\xb0\x7e\x4e\x2a\xbb\xc9\x71\x36\xa9\xec\x96\x96\x9e\x6e\x95\xdd\x54\xb8\x7f\x52\xd9\x4d\x89\xdc\x27\x95\xdd\x54\x38\x72\x9a\x15\x73\xe4\x70\x8d\x05\x36\x9d\xe5\x07\x19\x0c\xb0\xfb\x24\x49\xa8\x72\x74\x4c\x92\x84\xaa\xd2\xca\xac\xaa\xbb\xc2\xe0\x27\x49\xa8\xb2\x1e\x4c\xd5\x4c\xc0\x76\x3b\x49\x12\xaa\x24\xf1\x93\x24\xa1\xca\x98\x3d\xeb\x9e\xcf\x7a\x92\x24\x54\x39\x7a\x27\x25\x14\x94\x3c\x75\x2a\x49\x68\x55\x5f\x48\xc2\x28\x39\x49\x12\x3a\xde\x73\x63\x4b\xfa\x38\x49\x12\xaa\x6c\x6e\xf3\x2b\x41\xcf\x54\x82\x1e\x7c\xf0\x93\x28\x6b\x39\x4e\x27\x51\xd6\xe2\x73\xb3\x29\x3b\x0a\xf2\x11\x65\x1d\xb4\xb4\x10\x65\x1d\xbc\xee\xc9\xb6\xdd\xac\xbb\xb0\x6d\xf7\xbd\x27\x7b\xd9\x34\x33\x88\xb2\xd6\x1e\xb8\xd9\xb4\xc9\x48\x77\xd1\x26\x1c\xde\x12\x51\xd6\x8a\xe6\x9f\x8a\xb2\xc6\x0e\x39\xdb\xdc\x62\x92\x67\x5b\x5b\x9c\xec\xec\x0a\xb4\xa4\x9f\x58\x33\xdf\x25\x9e\x5a\xdc\x0a\x48\x9b\x58\x33\x6f\x4c\x5e\x13\x93\xa5\x22\x46\xa6\x4a\x2f\x48\x19\x60\xb2\x94\x8b\x7c\x62\xb2\x94\x93\x7a\x62\xb2\x94\x7b\x79\x62\xb2\xcc\xef\x3f\xb1\xa8\xeb\xcd\x63\xb2\x6c\x9a\x09\x98\x2c\x65\x0b\x9f\x98\x2c\x65\x04\x9a\x98\x2c\x65\x7c\x98\xc6\x18\x9d\x42\x5c\xa7\x31\xc6\xa5\x6a\x96\xd3\x18\xa3\x57\x52\xb1\x69\x8c\xd1\xbd\x0b\xb7\x31\x46\x77\x09\x08\x18\x63\xf4\xca\xa3\x37\x8d\x31\x3a\x05\xed\x4e\x63\x8c\x4b\x51\xcf\xd3\x18\xa3\x7b\x61\x88\xb1\x45\x77\x61\xe1\x9e\xc6\xec\x96\x2a\x4f\xce\x49\x5f\xa4\xde\x8c\x4d\xad\x25\xf0\x68\x6c\xca\xbf\x4a\xd9\xd8\x94\xbf\xf0\x8f\x4c\x63\x53\xfe\xc2\x67\x36\x8d\x4d\xf9\x0b\x86\x36\x8d\x49\x79\x85\xf7\xce\x85\x7c\x51\xd7\x19\xab\xb7\x4c\xe9\x7f\x5f\xaa\x8d\x64\x79\x25\xc0\x9b\x0b\xd1\x35\x24\x8c\x60\xf9\x4b\x0b\xc4\xc2\xdc\x80\xf1\x61\x2e\xcc\x0d\x42\x0b\x46\xae\xfc\xa5\x25\xd1\xc8\x95\xbf\xaa\xee\xd2\x69\xa9\x9b\x66\x08\xb9\xb4\xe0\x2f\x44\x9f\x6a\x21\x3a\x16\xb6\x75\x21\x3a\xa6\xf7\x75\x21\x3a\xee\xad\x75\x3d\x9b\x45\x68\x5d\x61\xb3\x08\xad\x2b\x6e\x16\xa1\x75\xa5\xcd\x22\xb4\xae\xbc\x59\x84\xd6\x55\x7e\x2c\x42\xbf\x5a\x75\x33\xfb\xac\xab\x6d\x66\x9f\x75\xf5\xcd\xec\xb3\xae\xb1\x99\x7d\xd6\x35\x37\xb3\xcf\xba\xd6\x66\xf6\x59\xf7\xb5\x99\x7d\xd6\x7d\x6f\x66\x9f\x75\xbb\xcd\xec\xb3\x6e\xbf\x99\x7d\xd6\xad\xcc\x5d\xba\x0b\xa9\x91\x08\x61\x5a\xc6\x6d\x42\x0c\xba\x67\xdf\x4c\x18\x8b\xa4\x9d\xca\x68\xb6\x54\x9d\x1a\x5a\xbb\x48\xda\xd9\xd0\xec\x0b\x7b\xa2\x6a\x42\x2c\xb8\x8d\xb2\x7a\x2d\xb8\x4d\x61\x3a\x2c\xec\x89\x62\x48\x8b\xa4\x9d\x62\x2c\x8b\xa4\x9d\x15\x06\xb1\xe0\x36\xad\xea\x9c\x29\x29\x05\x30\x2e\xb8\x8d\x90\xee\x22\x69\xa7\x10\xe4\x32\x6e\x13\x3c\xcc\x63\x39\x25\x5f\x57\xcf\x08\xe6\xc7\x00\xb6\xe0\x36\x72\xf1\x2c\x27\x33\x04\x6f\xd0\xb8\x4d\xf0\x4c\xe9\xe5\x31\x43\xe8\xbd\x18\xb7\x09\x11\x15\xb0\x64\x95\xbc\x75\xce\x94\x70\xc1\x4d\xb5\x8c\xdb\x84\xae\x77\x6d\xdc\x26\x4c\x54\xe0\x32\x6e\x13\x26\x36\xfb\x45\x75\x6a\xc7\xb4\x5d\xf0\x9a\xd8\xd5\x32\x25\x2c\x07\xda\x52\x75\x6a\x8d\x02\xaa\x53\xab\x1c\xef\xf2\x7b\xb1\x85\x05\xaf\x51\x92\xf8\xe5\xe7\x96\x40\x74\xb1\x83\x52\x89\xa7\x16\x3b\x28\x95\xed\x62\x3d\x7b\x3e\x86\xf5\xec\xf9\x18\x16\x91\x03\x72\xd0\xaf\xe7\xd9\xac\xe6\xcb\x78\xcd\x52\xbd\xed\x05\xaf\x59\xb0\x8a\x65\xbc\x66\xad\x4b\x77\xf9\x25\xdf\xad\x5a\x9a\xcb\x78\x8d\x0b\x92\xd6\x78\x8d\x0b\x4d\xd7\x99\xb9\xef\x56\xaf\x1f\x8c\x8d\x9a\xc5\xc6\x69\xdc\x8d\x29\x6c\x19\xa7\x71\xf7\xd4\x3d\x97\xdd\x05\x3e\xbf\x8c\xd3\x38\x65\x94\x59\xc6\x69\x5c\x84\x63\x2d\xe3\x34\x2e\x02\x9b\x96\x71\x1a\x17\x35\x96\x02\x2b\x03\xf6\xe7\x15\x58\x19\xde\x7b\x32\xfb\xf5\xae\x8d\xb7\xb8\x1b\xd5\xb8\x02\xb3\x1f\x1b\xc1\x0a\xcc\xfe\xa6\x73\xcc\xfe\xa6\xbb\x30\xfb\x9b\xfa\xc2\xec\x87\xfd\xac\xc8\x9c\x86\x89\xae\xc8\x9c\x2e\x3a\x47\xcf\xc6\xbf\x12\x7a\xae\x48\xa7\xa1\x03\x2b\x7e\x2d\x67\x91\xe5\xec\xd6\xb9\xaf\xe5\x2c\xb2\x9c\x69\x02\xc4\xaf\xe5\x2c\xb6\x7d\x21\x8a\x7d\x5f\xc0\x22\x02\x3d\x7a\x02\x02\x81\x8a\x57\x5c\xfb\xb2\x94\x58\xce\x40\xf2\x2b\xb1\x9c\x81\xd5\x56\xd2\x72\xc6\x3d\x13\xa2\x43\x42\x57\x42\x74\x5c\x97\x2b\x85\xcd\x1a\xbd\x92\x6c\xcc\x4c\x2a\x23\x2a\xaf\x6d\x7a\x19\x51\x71\x51\xc3\x3a\xa1\x72\xb4\x24\x27\x54\x8e\x53\x5f\x7e\xc9\x77\x49\xc9\x2c\x23\x2a\x97\x2a\xe7\x2e\x63\x23\xd7\xe5\xaf\xeb\x02\x5f\x2c\xc3\xc1\xde\x69\x39\x37\xec\xe1\x1d\x1a\x77\x75\xce\x41\xdb\x96\x61\x0f\xaf\xe0\xfb\x65\xd8\xc3\x3b\xf6\x1c\x2e\xc3\x1e\x5e\x89\x26\x97\xb9\x4b\xbd\x12\x4d\x2e\x73\x97\x7a\x07\xa1\x5c\x86\x4b\xbc\xd3\x1b\x36\x5c\xe2\x9d\x16\x31\x70\x89\x93\x54\x43\xd6\x78\xbe\xa1\xe1\x12\xef\xf4\xf6\xc1\x25\x4a\x5e\xb9\x0c\x97\x78\x47\xbc\xc0\x32\x5c\xe2\x9d\x86\xa1\xe1\x12\xef\x34\xc9\x07\xf2\xe9\xdd\x0c\xe4\x03\x57\xae\x81\x7c\x70\xac\x35\x90\xaf\xea\x9e\xc8\xa7\x29\x31\x90\x0f\x37\xeb\x9a\xc8\x87\xb3\x6f\x4d\xe4\xc3\xbd\xb7\x26\xf2\x81\xef\xd7\x44\x3e\x4c\x71\x6b\x22\x9f\xbe\xcc\x44\x3e\x8d\x74\xb3\x62\xbb\x57\x95\x99\x15\xdb\x29\x73\xe0\x32\x2b\xb6\xf3\x40\x8a\x65\x56\xec\xa5\x6a\xee\xcb\xac\xd8\xce\x4b\x5a\xb3\x62\x3b\xff\x3e\xaf\xd3\x52\xaf\xc7\x7e\x9d\xa1\xa9\x4f\x2b\x7c\xb5\xe4\x77\xe1\x2e\x4b\x1e\x21\xbe\x8a\x01\xa1\xeb\xc2\x6a\xbe\x0c\x08\x5d\x57\xd3\x3f\xb5\x8c\xf0\x76\x01\x42\x1e\x90\xb4\x00\x42\x5e\x4a\x7d\x31\x2a\x93\xbf\xae\x18\x2e\xe1\xb6\x65\x80\xe8\xba\xe2\xb8\xae\x58\x2e\x59\x65\x17\xc0\xc8\x59\xb6\x18\x77\x5d\x5a\x64\x32\x2d\x8f\x3f\x65\xd0\x7a\xb0\xd3\x5f\xb4\x34\x7e\xd4\xd2\x58\x4e\xb4\xf8\xd6\xa6\xbe\xdc\x65\x20\xc6\xa5\x4a\xcb\xa0\x89\x23\x3d\x9a\xbb\x6e\x2d\xb0\xdc\xc5\xec\xba\x2e\x5a\xac\x94\x01\x68\x6b\x79\x5a\xb8\xed\xcc\x7f\xe1\x2e\x03\x2a\x2e\xde\xf4\xda\xc0\x88\xa3\xf2\xa0\xbb\x6e\x49\xc4\x13\x0c\x8c\xb8\xc7\x78\x89\xbb\x0c\x70\xac\x75\xf3\x3c\x03\x1c\x9f\x16\x70\xf5\x52\xcb\xee\x19\x32\xf7\x74\x28\x90\xcc\xf3\x0c\x00\xb8\x90\x79\x2f\x06\x00\x5c\xb0\x04\x00\xee\xf2\xc8\x67\x61\xa8\xee\x32\x00\xe0\x88\xb8\x77\x97\x01\x00\x67\x95\x2a\xff\xb6\x4c\xbb\xcb\xa3\x03\xf5\xaa\x3d\x3a\x30\xd2\x15\xd3\xf1\x2e\x04\x9d\xeb\xb4\xd4\xb1\xc1\x3f\xf5\x38\x44\x88\xbc\xf8\x87\x6e\x4e\x5e\xee\x43\x37\x4d\x3b\xbb\xeb\xa1\x9b\x9d\x27\x98\x1e\xbf\x40\x26\xee\x22\xb0\xef\x32\x25\xe1\x2e\xac\x8a\xab\x21\x9e\x69\xe0\xc5\xf6\x52\x77\x3d\x0c\xbb\xa6\xeb\xc0\xdf\x37\x9f\xef\x01\x7f\x17\xfe\x19\xc0\xdf\x85\xbb\x04\x51\x2b\x9e\x10\xa0\x33\x17\x12\x05\x51\x24\x5d\x97\x69\xe9\x1c\x14\xe9\x66\xb0\x06\x28\xd2\x8d\xec\xa6\x65\xed\xfd\x5b\xcb\x90\xec\x3d\x74\x17\x99\x90\x18\x20\xa6\xf6\xae\x2b\xe4\xeb\x7a\xca\xfb\xe3\x4c\xfe\x3a\x13\x18\x7a\xb1\xfc\x1c\x7d\x8f\xa0\x12\x52\xd6\xc4\xb2\x1f\x67\xc6\xd7\x99\xa4\xff\xcf\x9f\xa3\xef\x11\x1b\x5e\x58\xcb\xdd\x65\xaa\xd0\xdd\x17\x92\x98\x2a\x74\xe4\xd9\x76\x97\xa9\xc2\xeb\x0a\xcf\x75\x3d\xbc\x2f\x53\x87\xee\xf6\xbc\x4b\xd4\x21\x29\xdd\xdd\x65\xea\xd0\xdd\x9d\xa7\xa0\xf2\xee\xe2\xdd\x5d\x18\x13\xa6\xbe\x42\x71\x4c\x5b\x33\xa6\x05\x8c\x5e\xee\x4a\x9a\x46\x0c\x72\x33\xa6\x45\x16\x49\x77\xd9\x76\x9b\x98\xae\x52\x62\xb8\x9e\x75\xd7\x54\x3c\xdf\x84\x4c\x04\xbd\xde\x21\x4e\x1f\xfb\x08\xcf\x6c\xc8\x91\x51\xdb\x89\x7e\xe6\xe7\xa3\x9a\xdd\x95\xc3\x1f\xef\x17\xff\x78\x3f\x16\x4e\x7d\xe1\x0c\x5c\x79\x74\x55\xf9\x00\x1b\x77\xe5\xfa\x01\x36\xee\xca\xed\xb3\xe0\xba\x2b\xf7\xaf\xd6\xf8\x6a\xcd\xaf\x27\xac\xfd\x09\xe5\xfa\x6a\xdd\x5f\x2d\xf7\x81\x47\xee\x2a\xfe\x03\xa4\xdc\x55\x9e\x0f\x90\x72\x57\x09\x1f\x40\xe4\xae\x12\xbf\x5a\xe9\xab\x95\x3f\xb0\xca\x5d\xa5\x7c\x60\x95\xbb\x4a\xfd\x6a\xb5\xaf\x56\xff\x80\x33\x77\x95\xf1\x81\x5c\xee\x2a\xf3\x03\xb9\xdc\x55\xd6\x07\x56\xb9\xab\x5e\x5f\xad\xfb\xab\xe5\x3e\x90\xcb\x5d\x6f\x94\x84\x5a\xcf\x57\x2b\x7c\x80\x9b\xbb\x14\x25\xe1\x19\x7b\x54\xe9\x99\x5a\x1a\x49\x73\x50\x34\xcf\x09\x27\xf4\x0f\xef\x8c\x70\x42\x97\xd5\x22\x3d\xaa\xe6\x72\xc5\x95\x2c\x75\x82\x01\xee\xd2\xea\x64\x06\xb8\x18\xdf\xe7\x99\xef\x26\x4b\xb5\x11\x4e\x48\x96\x68\x77\x99\x01\x2e\x92\x13\xd1\x5d\x66\x80\x0b\x6c\x77\x77\x97\x19\xe0\x9e\xe9\x74\xdd\x63\xad\xc9\x3d\xcd\x00\xf7\x90\x14\xc0\x5d\x66\x80\x7b\x96\xde\xa7\x19\xe0\x9e\xa5\x51\x60\x06\xb8\xc7\x36\xd4\xff\x7d\xe9\x37\xdb\xdc\xb3\xb4\xb4\x98\x6d\xee\x59\x85\x8f\x69\xb6\xb9\x67\xe9\x95\x35\x44\x2f\x6a\x0d\x5a\x4c\x7c\xb3\xcd\x3d\xab\x33\x79\xcd\x36\x17\xae\x87\x8e\x99\x6d\x2e\xbc\x0b\xba\xd9\xe6\x9e\xb5\x98\x88\x66\x9b\x0b\xef\x02\x6b\xb6\xb9\x40\x85\x06\x77\x99\x6d\x2e\x5c\x52\x4a\x66\x9b\x0b\xef\x22\x64\xb6\xb9\x70\xe9\xe9\x66\x9b\x0b\xd7\x52\xcb\x5c\x1e\xd7\xe0\x05\x9a\x6d\x2e\xb0\x29\xd9\x5d\x86\x8f\xc3\x1d\xf5\x4f\xd5\x3a\xa0\xd7\x9d\x45\xbb\xa9\x2f\xb6\x54\xdd\x93\x57\xdd\x71\xe9\x68\x1a\x19\x3e\x0e\x4e\xca\xc5\xf0\x71\xc0\xc0\xe1\x2e\x22\x3d\x5c\xa7\xd7\x86\x8f\x83\x1b\x7c\x68\xc3\xc7\xe1\x9d\x00\x03\x7c\x73\x31\x58\x0d\x1f\x07\xef\xe8\x99\xe1\xe3\x80\x17\xdf\x5d\x86\x8f\x03\xc9\xc8\xdd\xa5\x48\x8f\xa6\x73\x05\x83\x03\x32\x18\x3e\x5e\x55\xca\xcc\xf0\x71\x78\xde\x7e\x9a\x7c\x8f\xbe\xa6\xe1\xe3\xf0\x54\x06\xa4\xe1\xe3\xf0\xe8\xab\x18\x3e\x0e\x21\x23\x91\xe1\xe3\x00\x3d\x77\x97\xe1\xe3\x90\x84\x99\x0c\x1f\x87\x54\x79\x82\xe1\xe3\x90\x34\xe4\x0d\x1f\x07\xd2\x3a\xba\xcb\xf0\xf1\xaa\x5a\xec\x89\xf2\xc0\xb5\xe8\xae\x89\xdb\x51\x98\xd0\xf0\x71\xc8\x92\xcf\xf0\x71\x28\x17\x6f\x90\x28\x0f\xca\x78\xba\xcb\xf0\x71\x28\x41\xe7\x3a\x2d\xde\x04\x51\x1e\x45\x68\x8e\x28\x8f\x52\x79\xbb\x66\x97\x0c\x45\x0b\x3b\x51\x1e\x4d\x33\xc0\x90\x74\x68\xfa\x7e\x54\xe9\x09\x8e\x5e\x9b\x5d\x32\x34\x8d\x2c\xb3\x4b\x86\xa6\x6f\x6b\x98\x3b\x74\x8d\x64\xc3\xdc\xa1\x6b\x4c\x18\xe6\x0e\xfd\x7d\x9e\xc9\xd7\x17\x6f\xd0\x30\x77\x18\x52\x89\x44\x76\x0c\xc9\x67\x98\x7b\xd5\x9b\xc9\x6f\x98\x3b\x0c\xcd\x00\xc3\xdc\x81\x84\x3c\xee\x36\x03\x63\x18\x40\xa8\xdb\x0c\x8c\x81\xe0\x3b\x77\x5f\x2c\x2f\xc6\xf4\xdc\x6d\x18\x3b\x50\x27\xc7\xdd\x60\x6c\xb2\x54\xb8\xdb\x30\x76\x58\x66\x99\x77\x37\xd1\x1b\x57\xd0\x13\xcc\x44\x84\x71\xd5\xdd\x66\x7c\x8c\xa4\x32\x30\xac\xf0\xab\xf5\x5e\x57\x69\xe9\x9f\x66\x22\xba\x9d\x7a\x66\x7e\x9a\xcb\xec\xdf\xee\x36\xdc\x1e\xef\x5b\xfd\xb4\xe5\xf3\xf6\xea\xcb\xa2\xc5\x75\x66\x7c\x8c\xb7\xf1\x37\x77\xdf\x98\xf8\x80\x7a\xf7\x8d\x7d\x9f\x77\x7d\x13\xb9\xe1\x79\xbb\xf7\x4d\xf8\x42\xd4\x5d\x70\x7d\x33\xdf\xef\x1b\x3f\x54\xa7\xd7\x37\x7e\xa8\x47\x2d\x4c\x60\x97\xae\x33\xf9\xe2\xad\x7b\x56\xce\x15\x5a\x26\x5f\x74\xba\xae\xf3\x4f\xb5\x06\xe7\x78\xf3\x98\x30\x8d\x6d\xfc\x75\x49\xbe\x8d\x50\xc4\x88\xee\xbd\x1d\x81\x39\x4c\xbf\xdb\xac\x9b\xab\xde\xbc\x40\x47\x90\x55\xe2\x45\x38\x82\x56\x8a\xfe\x69\xa2\xc7\x8a\x08\x44\x6e\xc4\xa6\xeb\x22\xad\x45\x2b\xa1\x8d\xf8\x98\x66\xdd\x8c\xec\x2f\x74\xb7\xc3\x05\x77\xab\x2f\xb8\xe0\x20\x45\xb7\x59\x37\x23\xb9\x59\xdd\x4d\xe4\x06\x89\x46\xdd\x6d\xd6\xcd\x48\x9e\x58\x77\x1b\xb9\x89\xf9\xe2\x43\x3b\x34\xe3\xc3\x6b\x31\x72\x13\x33\x5c\xe0\xf6\x92\x0f\x89\x8c\xdc\xc4\x12\xf9\xec\x9e\x20\xb2\x5b\xd7\xc9\xa5\xaa\x73\x26\x1f\x1b\x79\xdc\x6d\xd6\xcd\x58\x35\x78\xb0\x6e\xb2\xd1\xc5\xdd\x58\x37\x09\xe6\x71\x37\xd6\xcd\xaa\x37\xa8\xa8\x8d\x84\xec\x58\x37\xeb\x7b\xcf\x4e\x4b\x4f\x37\xf9\x08\x58\x72\xb7\xc7\x3a\xed\x25\x83\xc9\xd7\xcd\xb1\xe2\x6e\xa2\x36\x3a\x8b\xe9\xfd\xe0\x11\x87\x5b\xdd\xc6\x8a\x22\xb9\xc0\xdc\x4d\xd4\xc6\x00\x4b\xdf\xc6\x8a\x22\x91\xe1\xee\x26\x6a\x63\xbc\xd7\x99\x7c\xa3\xe8\x9e\x26\xdf\xa8\x7a\x9e\xc9\x37\xf4\x3e\xcd\xba\x19\x89\xb1\x76\xb7\x71\xab\x38\x34\xfd\x8c\x5b\x45\x12\x5b\xb9\xdb\xb8\x55\xa4\xc8\x99\xbb\x1f\x5c\xa8\xaf\x0c\x13\xab\xaf\xfa\xb2\xf8\x27\xe7\x8c\x5b\xc5\xa9\xb1\x64\xdc\x2a\x52\x40\xcb\xdd\xc6\xad\xe2\x6a\x4c\x9c\x40\xe4\x8d\xa6\x26\xe5\x5b\x49\x58\xe3\x6e\xca\xb7\x5e\x28\xc3\x9b\xf2\xad\x94\x78\x72\xb7\x22\x36\xb4\xf4\x50\xbe\xf5\xaa\x7c\x4d\x22\x36\xee\x4b\x4f\xaf\xb4\x78\x83\x44\x6c\xdc\x92\x21\xe0\x06\x7e\xee\x31\xb5\xe0\x10\x99\x81\x2b\xd0\xdd\x94\x70\xa5\xd2\x8b\xbb\x29\xe1\xea\x9a\xce\x39\x5a\x3a\x67\x2e\x60\xa9\xea\x3b\x12\x41\x04\xda\xbf\x29\xe1\xea\x13\x72\x10\x99\x41\x11\x05\x77\x53\xc2\xd5\x83\x1d\x6f\x4a\xb8\x7a\x8d\x20\x4a\xb8\xfa\xc9\x38\xa4\x84\xab\x1f\x7c\x27\x22\x33\x1e\xbd\x1b\x4a\xb8\xbe\x0b\x1c\x25\x5c\x1f\xa7\xbb\x4c\x5a\x8c\x27\x4a\xb8\x3e\x8e\xe7\x51\xc2\xf5\xd1\x42\x45\x09\x57\x92\x0d\xb8\x9b\x12\xae\x4f\xd6\x3f\x4d\x3e\x4a\x15\xb8\x9b\x12\xae\x41\x73\x97\x12\xae\xb2\x0d\xdc\x94\x70\x8d\x59\x77\x49\x38\xc3\x79\xdf\x44\x66\xc4\xa2\xe7\x15\x5a\x7c\x35\x4a\xb8\x46\x2d\xd9\x49\x6a\x0e\xf9\x88\xcc\x48\x9a\x9f\x30\x46\x4c\x7c\xee\xa6\x84\x6b\x96\x62\xa3\x84\x6b\xd6\x92\x4d\x09\xd7\x0c\xb4\xbb\x29\xe1\x9a\x13\x6f\x82\x12\xae\x45\xeb\x01\xd5\x57\x09\xc6\x70\xb7\xf1\xba\x65\x89\x4f\xff\xbe\x2c\x53\x98\xb5\x48\x04\x0a\xb3\xb2\xb7\xcd\xdd\x14\x66\x25\x51\xa7\xbb\xb3\x04\xe2\x45\x50\x98\x95\xbd\x6d\xee\xa6\x30\x6b\xd3\x6b\x31\xca\xb7\xc8\xb3\xea\x6e\x0a\xb3\xb2\xdd\xc4\xdd\x14\x66\x1d\x1a\xbe\x14\x66\x1d\xd2\xd4\x14\x66\x1d\x5a\xdc\x29\xcc\x3a\x34\x94\x28\xcc\x3a\xb5\x10\x53\x98\x75\x3d\xba\x8e\x3a\x6e\xd8\xc6\xee\x22\xd1\xe9\x4b\x51\x41\x1a\x9d\xa3\x62\x8b\x06\x08\x99\xed\x44\x9f\xef\xa2\x8a\x26\xba\xa7\x2a\x9a\xe8\xe9\x54\xc4\x78\x65\x50\x45\x0c\x5e\x75\x51\xc5\x0f\x06\x39\x99\xed\x82\x14\x1b\x99\xed\x82\x16\xe9\xaa\x70\x36\x9e\x47\x66\x3b\xe2\x70\xdd\xad\x7c\xda\x9a\x0e\xca\xa7\xad\xe9\x00\xad\x7b\xd5\x23\xd9\xeb\xaa\x10\x05\xd9\xeb\xa8\x1a\xee\xee\xaa\xe4\xad\x3a\x47\x48\x9e\x26\x38\xd9\xeb\xd8\x24\xed\xee\xca\x37\x72\xba\x27\xc9\x5b\x25\x6d\x53\xf2\x4f\x24\x22\xae\xa2\xe9\x2d\x11\x57\xc1\x9e\x2a\x77\x13\x57\x41\x79\x57\x77\x13\x57\x31\xd4\x4f\xe2\x2a\x46\xd2\x3d\x23\xcf\xd3\x3d\xc9\xee\xa6\xe5\xbc\x29\x74\x92\x5e\x37\x25\x71\xa2\xd7\x8d\x90\x2d\x2d\x05\x4d\x49\x9c\x78\x2f\xec\x04\xbb\xb5\x80\xb3\x13\xec\x96\xda\x21\x76\xe2\x1e\x9c\x23\x76\xe2\xd6\x3d\x89\x81\x70\x17\xf7\x24\x06\x82\x32\x56\xee\x26\x06\x82\x82\x57\xee\x26\x06\x02\x1b\xbe\xbb\xbb\x92\x00\xe9\x9f\x24\x01\x92\xc2\x20\x06\xc2\x69\xda\x12\x03\xe1\x34\x0a\xba\x92\x00\x31\x06\xd9\xb6\xe5\xa4\x92\xd8\xb6\xe5\x24\x3b\xdb\xb6\x9c\xbe\x1f\x51\xf3\x4e\xf3\x8f\xd4\x0a\x4e\x12\xb1\x6d\x8b\xd2\x4a\xee\x66\xdb\x96\x13\x52\x26\x06\xa2\xea\xbd\xb0\x6d\xcb\x09\xb9\xb2\x6d\xcb\x4d\xfd\x13\x19\x06\x5f\x85\x6d\x5b\xde\xe9\x9f\x4a\xf4\x43\xaf\x89\x98\xa7\x3c\x94\xbb\x8d\x4b\xad\x2a\x55\xc6\xb6\x2d\x19\x36\x6e\xb6\x6d\x39\x58\xd7\xcd\xb6\x2d\xaf\xb5\x80\x6d\x5b\xfe\x62\x84\xb0\x6d\x4b\xb6\xf0\x9b\x88\x79\x19\x67\x6e\xb6\x6d\x79\xb8\xcd\xcd\xb6\x2d\x8f\x09\xee\x66\xdb\x96\xd7\xd7\x64\xdb\x96\x17\x18\x60\xdb\xd6\x83\xb9\xe2\x66\xdb\xd6\x83\x11\xe2\x66\xdb\xd6\x3b\x8b\xd9\xb6\x15\x8a\xfa\x42\xd6\x0c\x01\x9a\x29\xf9\x78\xbb\x4b\xd9\x3d\x90\x81\x6d\x5b\x51\x8b\xb7\xd2\x2e\x60\xde\xba\x15\x2d\x8f\x69\xe8\x56\xda\x85\x47\xe7\x94\x56\x62\xfc\x6b\x49\x56\x46\x86\x47\x0f\x20\x44\x47\x83\x87\xdd\x5e\xc4\x46\xbb\x9b\xdd\x5e\x59\xaf\x8c\xdd\x5e\x39\xea\x9c\xf6\xd4\xeb\x9c\xa6\x3b\x83\x95\xdd\x5e\x85\xe5\xda\xb1\xdb\xab\x3e\x6a\xb1\x69\x99\x81\xe5\x08\x92\xaf\xd8\x89\x1c\x41\xf2\x14\x99\x77\x8e\xdd\x5e\x0d\x3a\xef\x08\x92\xa7\x78\xbb\x73\xec\xf6\x6a\x20\x0d\xc7\x6e\xaf\x06\xa6\x76\x97\x36\xbd\x5e\xb4\xd8\x75\x97\xd4\x62\xd7\x5d\xd4\x3f\x51\x39\xb8\x4e\x9c\xf6\x85\xdd\xea\x99\xf6\x85\xe9\x09\x58\x83\xab\xfa\xb9\xb0\xef\xd2\x7a\xe4\x6c\xa4\xd7\xb2\x33\xa3\xa5\xdd\x6b\x5b\xe6\x09\xd8\x94\x65\x73\x74\xd8\x93\x2f\x3d\xcf\x90\xc6\xcf\x3d\xb1\x27\xcb\x6a\xee\x64\x4f\x4e\x3a\xe7\x69\xf1\x3e\x71\x98\x5e\xf0\x02\x67\xf8\xe1\xba\x19\x74\x2e\x61\x05\x67\xba\x3b\xc3\x0f\xd7\x55\xf5\xcf\xb6\xd9\xec\xdd\xeb\x30\xe5\xbd\x64\x3d\x9d\xbb\x98\x15\xf8\xba\x50\xa2\xce\xac\xc0\xd7\xd5\x90\xcf\x50\x81\x93\x99\xca\xe5\xb4\x59\xf7\x5d\xde\xfd\x00\x2e\xcb\x0f\xc0\x9b\xc8\xf4\x45\x5f\x2c\xb7\x4f\x18\x95\x73\xa6\xfa\xcd\x7f\x63\x2d\xf9\x2b\xf8\xee\x85\xb7\x54\xd5\x7a\x78\x9f\x3c\xaf\xa8\x67\xbc\x33\x53\xda\x97\xc7\x04\xe2\x4c\x69\x5f\x44\xd0\x38\x67\x4a\xfb\xf2\x78\x44\x9c\x29\xed\x8b\x48\x1f\xe7\x0a\x3d\xeb\x6a\xc9\xad\xac\x27\xd8\x5b\xba\x71\x99\xb9\x42\xcf\x86\xee\x69\xdf\xf6\x06\x40\xb8\xc2\x08\xc1\x78\xe1\x2a\xbd\x9e\xdc\xd3\x94\xf6\x75\xb3\x84\x38\x53\xda\xd7\x8d\x81\xc2\x55\xbe\x2d\x8b\x8d\x33\x3b\xed\x45\x8d\x4c\xdb\x3f\x65\xcf\x43\x76\x53\xe8\xd7\xa5\xb1\x5b\xd3\xc7\xfd\xed\x5c\xcd\xfb\x68\xad\xe5\xe3\x0c\x77\xae\x32\x92\x61\x17\xae\xaa\x9f\x5c\x37\x91\x01\xe2\xef\x6c\x91\xba\xee\x44\x5f\x6c\x91\xba\x6e\x8d\x64\x5b\xa4\x2e\xd9\xe0\xdd\x42\x06\x7c\x58\x6e\xe1\xeb\xd0\x98\x58\xc8\xa0\xd1\xba\x82\x5c\xf1\xb4\x18\x3d\x2c\xd7\xde\xbb\x6d\x1e\xf9\xf0\x7c\x42\xf9\x9c\x0f\xc4\xa9\xa0\x1a\x7d\x88\x9b\x2f\xca\x07\xc9\x9e\x69\x31\xea\xf8\x9a\x3e\x20\xbb\x45\x0f\x39\x1f\xf8\xb6\xd8\x93\x7d\xe0\xdb\x4e\xb5\x98\x01\x16\x7b\xef\x7c\x18\xdb\xbb\xf6\x81\x77\x86\xa2\xf4\x81\x77\x06\x90\xf3\x91\x6f\xcb\x3a\xe1\x8d\x01\x5d\xd4\x54\x75\x3e\x32\x73\xd6\x3f\x82\xf0\x9c\x8f\xbc\x16\x8c\x09\x3e\xf2\x69\xab\x6e\x92\xb6\x09\xe0\xe3\xe6\x7b\x76\x5e\x6e\x2e\x30\xac\x8f\x88\xc7\x62\xea\xa3\xc4\x43\x74\x2d\x4b\xe0\x69\xaf\x65\x69\xea\x9e\x88\xb7\x74\x97\xb5\xdf\x45\xcb\x12\x74\xde\x27\xc4\xc3\x4f\xeb\xb5\x2c\x4d\x3e\x91\x96\x25\xb0\x9a\x4f\x12\x5d\x77\x41\x3e\x50\x81\x4f\x71\x7f\xf1\x09\xf9\x30\xd6\x7b\x16\x30\x2d\x6e\x5e\x0b\x98\xd7\x75\x75\x1b\xd6\x5e\x11\x1f\x2c\x98\xbe\xcd\x4f\x78\xa0\xf3\x0d\x47\x26\xcb\x99\xef\x38\x32\x51\x16\xbe\x13\x48\xa8\x7e\x76\x62\x28\x75\xcf\x4e\x0c\x25\x53\xc5\xb3\x33\x52\xae\x52\xcf\xce\xc8\x0b\x63\x90\x67\x67\xe4\xd5\x74\x17\x02\x25\x59\x14\x7d\x27\x50\x92\x85\xc8\x77\xa2\x56\x58\x0a\x3c\xb1\x26\x44\x0b\x38\x4f\xac\xc9\xd5\xf4\x3c\x02\x25\xbb\x9e\xa7\x40\x49\x3d\x0f\xf9\x3a\x93\x83\x58\x93\x77\x08\x12\x6b\x72\x41\x91\xbd\x61\xae\xb5\x98\xc4\x9e\xf8\x8e\x0b\x85\xe0\x89\xef\x20\xd2\xd4\xf9\xa1\xb8\x53\x4f\x4b\x71\xa7\x3c\x61\x2a\xee\x94\x27\x4c\xc5\x9d\xf2\x04\xe2\x3b\x2c\xb6\xf4\x57\x8b\x77\x96\x75\x9d\xe2\x4e\x75\x1d\xef\x2c\xea\x9f\xbc\x33\x96\x3a\xcf\x2e\x45\x29\x2e\x3f\x79\x67\x10\x58\x3f\x79\x67\x20\x29\x3f\x91\xe1\x61\xcc\x4f\xc9\xc0\xd8\x55\xec\x2c\xf0\xc5\x2b\x76\x96\x05\xd3\x2b\x76\x16\x30\xe3\x15\x3b\x0b\x98\xf1\x8a\x9d\x05\x41\x7b\xc5\xce\x62\x13\xf7\x8a\x9d\xc5\x86\xeb\x15\x20\x1b\x78\x9e\x02\x64\x59\xea\xbc\x02\x64\xa1\xcf\x5e\x01\xb2\x18\xfa\xbc\x02\x64\x31\xc3\x3d\x0a\x66\x05\xcc\x3c\x0a\x66\x05\xe8\x3c\xc4\x73\x5c\x49\xff\xa4\x2f\xb8\x60\x1f\x42\x54\xa9\x5d\xed\x1e\x42\x54\xa9\x5d\xed\x1e\xc2\x49\x49\x7f\xeb\x1e\xc2\x49\xa9\x56\xed\x9e\x5b\x61\xbd\x93\x96\xde\x7c\xa7\xa5\x37\xaf\x73\xf4\x9a\x50\x85\xe7\xe6\x79\xa8\xb1\xe7\xe6\x79\x81\xa7\xdf\x8c\xd6\xa0\xa7\xf3\x55\x02\xbd\xbe\xf9\x2a\xf8\x26\x9e\x5b\x5f\x45\xcf\xd3\x57\xe1\x79\x8e\x37\xc1\xf8\x7c\x1c\x32\xc0\x98\x1f\x87\x0c\x40\xcc\xc7\x29\xa2\x39\xd1\xe2\xab\xe0\xb4\x7f\x3c\x2b\x11\x5f\xec\x91\xea\xe0\x8b\x3d\xbe\x6d\xf0\xe5\xf1\x7d\x9b\x0f\x0f\x30\x24\xb4\x7f\x54\x42\x71\x4f\x26\x52\x81\x85\xe1\x01\xa1\xdc\x20\x94\x07\x03\x44\x03\x61\x3e\x05\x7d\x8e\x09\xe0\x29\xe8\x42\x47\xc7\xcc\xc8\x70\xdd\x51\x2d\x74\x21\x76\xda\x07\xbc\x72\x33\xac\x1f\xf0\xca\xfd\xde\x33\x71\x17\x5e\x27\x78\xe5\x8e\x6a\x15\xee\x82\x78\xe0\x95\x5b\x9f\xb6\x82\xdc\x40\xbb\x4f\xa3\x2f\x38\x18\x9f\x46\x5f\x40\x67\x4f\x63\x81\x7e\xc2\x8b\x9f\x1e\x23\xd4\xb6\x9b\xc0\x5a\xf4\x07\x0a\xfd\x34\x16\xe9\xa7\x7c\xfe\x4d\x9f\x40\x54\x4f\xa3\x4f\x68\xc1\xa7\xb1\x50\x3f\xeb\xf3\xef\xc6\x79\x24\x6f\xe0\xa8\xc8\x80\x30\xd2\x7d\xdd\x9a\x28\x0d\x0c\xd2\x75\x0e\x0c\x72\xf3\xfe\x3a\xca\x28\x7e\xfa\x6c\x8b\xb9\xed\x79\xb0\x16\xf2\x42\x53\x9f\xee\x85\xb3\x3e\xff\xe6\xfd\x43\xbb\x9e\xce\xfb\xc7\x5e\xf8\x74\x94\x52\xfc\xf4\xb9\xf3\x0d\x06\x83\xbf\xeb\x1b\xf0\x3e\x3a\xf2\x6a\x30\xda\xa2\x7e\x89\x80\x3f\xb6\xa8\x5b\x74\xa4\xb5\x3a\x2d\xf5\x09\x59\x97\xfa\x3b\x37\x5c\xf8\xd8\xa2\x7e\x39\x4d\x36\x5b\xd4\x3f\xad\xfb\xab\xe5\x68\xf1\x74\x73\x90\x7e\x5a\x91\x16\x32\x18\x39\xb7\x68\x4c\x6b\x55\x5a\x48\x6c\x8a\xe2\x52\x38\xd8\x33\x84\x6d\x79\xd3\xa6\x28\x2e\xa7\x05\xca\x14\xc5\xe5\x08\x9e\x7a\xc6\xda\x5b\xf3\xfa\x6a\xd1\x4f\xd4\xcd\x33\xe9\x27\x8a\xe2\x99\xf4\x93\xaf\x13\xdc\xb5\xa1\xbd\xf0\xa8\x15\x69\x31\xb9\xc1\x9a\xc1\xec\xfd\x2f\x6b\x0a\x44\x41\x89\x35\x05\xa2\xa0\xb4\xd0\x84\x27\x6c\xac\x29\x3c\x7c\xd1\xa4\x73\x69\x03\x16\x81\x18\x65\x29\x9f\x00\x83\x13\x6b\x0a\x8a\x90\x82\x35\x85\x47\xcc\x4f\xff\x5c\x1b\x6b\x0a\x41\xbd\x6e\xb4\xc2\xb6\xec\x84\x20\xa0\xc6\x5d\x84\x43\x01\x08\x41\x51\x50\x4e\xff\x6c\x1b\x6b\x0a\xa1\x6f\xac\x29\x18\x0e\x7d\x59\x53\x10\x0e\x6d\x7a\xde\xda\x58\x53\x30\x1c\xfa\xb2\xa6\x20\x1c\x0a\x68\x0c\xc2\xa1\x55\x2d\xb1\x1f\x9e\x27\x08\x09\x58\x09\x40\x48\xb1\xa6\x00\x84\x14\x6b\x0a\x40\x48\xb1\xa6\x00\x84\x14\x6b\x0a\x82\x90\x5d\x2d\x20\x24\xac\x29\x00\x21\xc5\x9a\x82\x20\x24\xac\x29\x00\x21\xc5\x9a\x82\x20\x64\xd3\x75\xcf\xcf\xec\xf8\xeb\x52\x1d\x40\x97\x22\x54\x01\x74\x29\x42\x15\x84\x2e\x97\x1e\xc7\x24\x06\x1f\x04\xa1\x4b\x40\x7e\x10\xba\x84\x50\x85\x3d\x9e\xd8\x85\x97\x1e\x23\xba\xe2\x89\x41\x89\x21\xa3\x7b\x20\x54\x21\x4b\x04\xae\xd3\x82\x84\xee\x09\x5a\x90\xd0\xf3\x41\x8b\x91\x06\x39\x8b\x91\x08\x55\x60\x31\x12\xa1\x0a\x3d\x6d\x84\x2a\x68\x21\xd2\x40\xee\x3b\x42\x0e\x7d\x57\x5a\xa1\xef\x4a\x2b\xf4\x5d\x69\x85\xb1\x2b\xad\x30\x76\xa5\x15\xc6\xae\xb4\xc2\xd8\x95\x56\x18\xbb\xd2\x0a\x63\x57\x5a\x61\xec\x4a\x2b\x8c\x5d\x69\x85\xb1\x2b\xad\x30\x76\xa5\x15\xe6\xae\xb4\xc2\xda\x95\x56\x58\xbb\xd2\x0a\xeb\x54\x5a\x61\xed\x4a\x2b\xac\x5d\x69\x85\x75\x2a\xad\xb0\x76\xa5\x15\xd6\xae\xb4\xc2\x3a\x95\x56\x58\xbb\xd2\x0a\x6b\x57\x5a\x61\xed\x4a\x2b\xac\x5d\x69\x85\xb5\x2b\xad\x78\x9d\x4a\x2b\x5e\xbb\xd2\x8a\xd7\xae\xb4\xe2\x75\x2a\xad\x78\xed\x4a\x2b\x5e\xbb\xd2\x8a\xd7\xa9\xb4\xe2\xb5\x2b\xad\x78\xed\x4a\x2b\x5e\xbb\xd2\x8a\xf7\xb3\x4d\xe0\x78\x87\x6d\xf4\xc7\x9b\xfb\x7a\xb5\x78\x8f\x18\xf7\xa2\xcb\xfb\x75\xae\xec\xd7\xb9\xba\x5f\xe7\xda\x7e\x9d\x30\x1a\x0b\x62\x24\xe6\x56\x23\x35\xfa\xe7\xff\x7e\x22\xf4\xd7\xa5\x80\xd0\xe8\xc5\x7c\x27\x2d\x96\x18\x7f\xeb\x3f\xba\x0f\x4b\x8d\x77\x5f\x47\xa5\x4e\xbc\xff\x3e\xca\xd2\xe3\x9f\xef\xa3\xf4\xcb\x87\xef\xa3\xcc\x63\x1f\xbf\x8f\xe6\xef\x3e\xf0\x26\x9f\xf2\xdd\x07\x1d\xad\xdf\x4f\xd3\xd1\xf6\xfd\x34\x1d\x65\x7d\xf1\xe9\xfb\xa8\xf6\x2d\xe4\xef\xa3\xc7\x7b\xb8\xdf\xd9\x1f\x9f\xf5\x2d\xf5\xe7\x8c\x14\xd5\xcf\xfd\xb7\x33\x7a\x27\xe5\xbf\x67\xdc\x7f\x9f\x73\x73\xc6\x7f\xcb\xbb\x9d\x79\xfe\xdb\x03\x9d\x09\xdf\x6f\x63\x3b\x13\xbf\xdf\xc8\x76\x26\x7d\x7f\x83\xed\x4c\xfe\xaf\x3c\x3a\x53\xbe\xdf\xd9\x76\xa6\xfe\x57\x52\x9d\x69\x3f\x92\xfe\x8c\xc0\xed\x6c\xff\xef\x7b\x60\xf6\xc9\x48\xf4\xd5\x73\x9d\x99\xff\xed\x9f\xce\xac\xcf\xb3\xfe\x7b\x47\x19\x93\xbe\xbf\x2d\x5f\xe4\xaf\x2a\x30\x4a\xdf\x1f\x13\x28\x1e\x9f\x50\x0f\xf1\xdf\x47\xf5\xdf\xe7\xfb\xa3\xea\x68\xf8\xfe\x2f\xcb\x8a\x0c\x54\x3f\x9f\x59\x47\xd3\xf7\x7f\x03\x47\xf3\xf7\x7d\x75\xb4\x7c\xdf\x41\x47\x8f\x29\xa3\xa3\xed\xfb\xbe\x2c\x3c\x32\x68\xfd\xbc\x7c\x1d\x1d\xbf\x5b\x24\x84\x4e\x8e\x45\x22\xae\xdf\x2d\x12\x32\x78\x1d\x8b\x84\x50\xcb\xb1\x48\xc8\x00\x76\x2c\x12\xe9\x78\xbf\x99\xa3\xc7\xd4\xd0\xd1\xf0\x7d\x5f\x1d\x8d\xdf\xc3\x47\x47\xd3\xef\x16\x9f\x94\x7f\xb7\xf8\xbc\x86\xb3\xef\xc5\x47\x10\xe7\x58\x7c\x04\x75\x8e\xc5\x47\x90\xe7\x58\x7c\xd2\xf8\xd3\xe2\x93\xe6\x9f\x16\x9f\xb4\xfe\xb4\xf8\xe4\xeb\x4f\x8b\x4f\xbe\xff\xb4\xf8\x08\x6e\xfd\x66\xf1\x11\xf4\xfa\xcd\xe2\x23\x0f\xc6\x6f\x16\x9f\x1c\xfe\xb4\xf8\xe4\xf8\xa7\xc5\x27\xa7\x3f\x2d\x3e\x39\xff\x69\xf1\xc9\xe5\x4f\x8b\x8f\x3c\x21\x7f\x58\x7c\x72\xfb\xd3\xe2\x93\xfb\x9f\x16\x1f\x79\x4c\x7e\xb3\xf8\xe4\xf9\xb7\xc5\x27\xaf\x3f\x2e\x3e\xff\xcf\x45\xf9\x45\xde\x16\xd0\x12\xc3\x5e\x2c\xfd\x67\xf5\x79\xcf\x7f\xb6\xdc\x49\x92\x32\x3f\x47\x78\x9e\x7c\x24\x76\x84\xfb\xc8\x4f\x62\x47\x58\x53\xea\x67\x5d\xd3\x6a\x50\xdd\xe7\x08\x73\x5e\x3e\x13\x3b\xc2\x0c\xac\x1f\x38\xa1\xb9\x53\xc3\xe7\x08\x23\x59\xfe\x93\x5f\xe3\x48\x3d\x94\x0f\xc5\x8e\xd0\xc3\xfa\x99\x5b\x6f\x0f\x3f\xaa\xfe\xed\x61\xfd\x1c\x51\x0f\xdb\xe7\x88\x7a\xd8\x3f\x47\xd4\xc3\xf1\x39\xa2\x1e\x7e\xd6\xa8\xb7\x87\x9f\xf5\x49\x6f\xb5\x7d\x60\x8d\xfa\xdc\xee\xcf\x11\xfa\xdc\xdc\xe7\x08\x7d\x6e\x9f\x79\xa1\x3e\xb7\xcf\x5a\xa4\x3e\xb7\xf0\x39\x42\x9f\xdb\x67\x8d\x57\x9f\x65\x03\xb2\x23\xf4\xb9\xe5\xcf\x11\xfa\xdc\x3e\xeb\xce\xdb\xe7\xcf\x9a\xfe\xf6\xb9\x7d\x8e\xa8\xcf\xfd\x73\x44\x7d\x1e\x9f\x23\xea\xf3\xfc\x1c\x51\x9f\xd7\xe7\x08\x7d\xee\x9f\xb5\x5b\x7d\xee\x1f\xc8\xa7\x3e\x77\xf7\x39\x42\x9f\xbb\xff\x99\x49\xea\x73\x7f\x3e\x47\xe8\x73\xff\xac\x13\xea\x73\xff\xc0\x16\xf5\xb9\xa7\xcf\x11\xfa\xdc\xf3\xe7\x08\x7d\x7e\xe9\x5a\xf8\xf4\xf9\xb3\x26\xbf\x7d\xfe\x40\xc4\xb7\xcf\x9f\xb9\xfe\xf6\x79\xfc\xac\x4e\x6f\x9f\xe7\xe7\xc8\x3f\xf2\xc0\xbb\xd8\xd7\xe7\xcf\x88\x33\xae\xcf\x11\xc4\x19\xf7\xe7\x08\xe2\x8c\x8f\xba\x93\x38\xe3\x83\x92\x25\xce\x78\x3e\x47\x10\x67\x84\xcf\x11\xc4\x19\x9f\xa5\x55\xe2\x8c\xcf\x92\x2a\x71\xc6\x07\xe1\xe9\x13\x8c\xf2\x39\xa2\x3e\xd7\xcf\x11\xf5\xf9\xa3\xca\xde\x3e\x7f\x90\xf5\xdb\xe7\xcf\xf2\xf8\xf6\xf9\x83\xd6\xde\x3e\x7f\x54\x96\xfa\x3c\x3f\x08\x5a\x7d\x9e\xf7\xcf\x62\xaf\x3e\x4f\xf7\x39\x42\x9f\xa7\xff\x1c\xa1\xcf\xf3\xf9\x1c\xa1\xcf\x33\x7c\x8e\xd0\xe7\x19\x3f\x47\xe8\xf3\x4c\x9f\x23\xf4\x79\x7e\x54\x8d\xfa\x3c\x3f\xc8\xf7\xed\x73\xfd\x1c\x51\x9f\xdb\x8f\x1a\x7a\xfb\xdc\x3f\x47\xd4\xe7\xf1\x39\xa2\x3e\xcf\xcf\x11\xf5\x79\x7d\x8e\xd0\xe7\xf5\x51\xe5\xea\xf3\xfa\x30\x0b\xf5\x79\xb9\xcf\x11\xfa\xbc\xfc\xe7\x08\x7d\x16\xc3\xb7\x23\xf4\x79\x85\x2f\x05\x49\xbf\xd3\xa5\x90\x88\xff\x6c\xe7\x4b\x97\xff\x3a\x43\x7c\x58\x82\x45\x6f\xdb\xf9\xd2\x2d\x0f\xc2\x7f\xb6\x14\xa6\xdb\x7d\x9d\x09\xfa\xbf\xff\x39\xaa\x23\x6e\x6e\xfe\xac\xe4\xd6\xe6\xcf\x4a\xfe\xda\xfc\x59\xc9\xdf\x9b\x3f\x2b\xf9\x67\xf3\x67\x25\x1f\x36\x7f\x56\xf2\x71\xf3\x67\x25\x9f\x36\x7f\x56\xf2\x79\xf3\x67\x25\x5f\x36\x7f\x56\xf2\x75\xf3\x67\x25\xdf\x36\x7f\x56\xf2\x7d\xf3\x67\x25\x3f\x36\x7f\x56\xf2\x73\xf3\x67\x25\xbf\x36\x7f\x56\x7a\xae\xcd\x9f\x95\x9e\x7b\xf3\x67\xa5\x27\x6f\xfe\xac\xf4\x94\xcd\x9f\x95\x9e\xba\xf9\xb3\xd2\xd3\x36\x7f\x56\x0a\xf7\xe6\xcf\x4a\xc1\x6d\xfe\xac\x44\x2a\x85\xab\x72\xcf\x20\x1f\x2e\xff\x8c\xf4\x05\x03\x71\x8a\xdc\x05\x97\x7f\x22\xb1\xc2\x55\x91\x8f\xec\x09\x32\x76\xa6\x18\x37\xdf\x6f\x8a\xf2\xd3\xf2\x3e\xa3\xfc\xb4\xf4\x3a\xca\x4f\xcb\xfb\x8c\xf2\xd3\xf2\x3e\xa3\xfc\xb4\xc8\x40\xf6\x04\xf9\xe0\x13\xd9\x13\x64\x6a\x4d\x51\x7e\x5a\x3d\x4f\x7e\x5a\x64\x48\xf2\xd3\x22\x03\xd9\x13\x2e\xf6\xfd\xa4\x44\x5f\xb0\xeb\x24\x65\x3a\x20\xa6\x2e\x29\xd3\xc1\xd0\x3f\xe9\x0b\x3b\x68\x52\x56\x5a\x1c\x9e\x90\x79\x9f\x38\x14\x52\x61\xcf\xd3\x73\x3f\x13\x0b\x5d\x2a\xe5\xe7\x08\x06\xfb\x54\xea\xe7\x3f\xc8\x6a\xd0\xee\xd7\x91\x10\xf5\x8c\xd2\x7f\xfe\x43\xf8\x6f\x2a\xe3\xfd\xcf\xcd\x5e\x9a\x64\xf0\x4e\xf7\xf9\x57\xb8\x43\x2a\xeb\x73\x39\x8f\x30\xe4\xc7\xe5\x1a\xa6\x86\xfc\x7e\x75\xf3\xd7\x51\x8e\x90\x91\x12\x1b\x7a\x32\xd4\x17\x9e\x8b\x97\x42\x31\x32\xb2\xe8\xbb\x64\x68\x2f\x04\x4d\x29\x52\x8a\x35\x7c\x27\xa9\xb2\xe3\x8f\xad\xdf\xa9\xf5\xcd\x41\x9d\x0c\x75\x44\xa7\x89\xa9\x90\x02\x42\x66\x93\xa1\x8d\x9f\x17\x69\x48\xe3\xe7\x25\xb2\x3d\xef\x7d\x81\x6c\xcf\x7b\x5f\x5e\x67\x67\xa2\x5e\x1c\xdb\xf3\xde\x97\xd6\xd9\x99\x88\x67\x23\xb1\x3d\xef\x7d\x23\x86\x26\x7e\xde\x46\x7f\x3f\x25\xad\xb2\xf7\xcc\x10\xc4\xa7\x67\xed\xab\x67\xfd\xab\x67\xe3\xab\x67\xf3\xab\x67\x6b\xef\xd9\xb8\xf6\x9e\xb1\x3d\xef\xed\x99\xc1\x80\x9f\x9e\x69\x7b\x9e\x7a\x36\x9e\xbd\x67\x23\xec\x3d\x33\xb5\xff\xd3\xb3\x91\xf6\x9e\xb1\x3d\xef\xed\x99\xa9\xfa\x9f\x9e\x8d\xfa\xd5\xb3\xf6\xd5\xb3\xfe\xd5\xb3\xf1\xd5\xb3\xb9\x2f\x66\xa6\xd2\x7f\xbe\xed\xbc\xf6\x9e\xcd\x7b\xef\xd9\x74\x7b\xcf\xd8\x9e\xf7\xf6\x6c\x3e\x7b\xcf\x4c\x75\xff\xf4\x6c\xc6\xbd\x67\x6c\xcf\x7b\x7b\x66\xea\xfa\xa7\x67\xb3\xec\xef\x6c\xd6\xfd\x9d\xcd\xf6\xd5\xb3\xfe\xd5\xb3\xf1\xd5\xb3\xf9\xd5\xb3\xb5\xf7\x8c\xed\x79\x6f\xcf\xd6\xbd\xf7\x8c\x04\xcc\x6f\xcf\x96\xdf\x7b\xc6\xf6\xbc\xb7\x67\x0a\x7d\xd0\x72\xf9\x86\x3e\xa8\xc5\x52\xda\xd5\x52\x6e\x30\x7a\xa6\x94\x18\xee\x17\x0f\xd6\x91\x7a\x30\xc4\x7c\x3d\x07\x73\xc9\x57\x38\x98\x4b\xbe\xe2\xc1\x5c\xf2\x95\x0e\xe6\x92\xaf\x7c\x30\x97\x7c\x95\x83\xb9\xe4\xab\x1e\xcc\x25\x5f\xed\x60\x2e\xf9\xea\x07\x73\xc9\xd7\x38\x98\x4b\xbe\xe6\xc1\x5c\xf2\xb5\x0e\xe6\x92\xef\xeb\x60\x2e\xf9\xbe\x0f\xe6\x92\x6f\x77\x30\x97\x2c\x70\xf1\x61\x2e\xf9\x7e\x0e\xe6\x92\xef\x70\x30\x97\x7c\xc7\x83\xb9\xe4\x3b\x1d\xcc\x25\xdf\xf9\x60\x2e\xf9\x2e\x07\x73\xc9\x77\x3d\x98\x4b\xbe\xdb\xc1\x5c\xf2\xdd\x0f\xe6\x92\xef\x71\x30\x97\x7c\xcf\x83\xb9\xe4\x7b\x7d\x31\x97\xbf\xaa\x85\xec\xae\x83\xd4\x64\x77\x7f\x91\x9a\x5f\x47\xdc\xc1\x5c\xb2\xf3\x07\x73\xc9\xee\x39\x98\x4b\x76\xe1\x60\x2e\xd9\xc5\x83\xb9\x64\x97\x0e\xe6\x92\x5d\x3e\x98\x4b\x96\xb7\xe3\xc3\x5c\xb2\xab\x07\x73\xc9\xae\x1d\xcc\x25\xbb\x7e\x30\x97\xec\xc6\xc1\x5c\xb2\x9b\x07\x73\xc9\x6e\x1d\xcc\x25\xfb\xeb\x60\x2e\x59\x51\x30\x1f\xe6\x92\xe5\x65\xf9\x30\x97\xec\xfd\xc1\x5c\xb2\x7f\x0e\xe6\x92\x7d\x38\x98\x4b\xf6\xf1\x60\x2e\xd9\xa7\x83\xb9\x64\x9f\x0f\xe6\x92\x7d\x39\x98\x4b\xf6\xf5\x60\x2e\xd9\xb7\x83\xb9\x64\xdf\x0f\xe6\x92\xfd\x38\x98\x4b\xf6\xf3\x60\x2e\xd9\xaf\x83\xb9\xe4\xe7\x3a\x98\x4b\x7e\xee\x83\xb9\xe4\xc7\x1d\xcc\x25\x3f\xfe\x60\x2e\xf9\x79\x0e\xe6\x92\x9f\x70\x30\x97\xac\xe0\x82\x0f\x73\xc9\x0a\x30\xf8\x30\x97\xbc\x79\x8b\xb6\x85\x2f\x8d\x8d\x35\xe4\x34\x37\xd6\x90\xd3\xda\x58\x43\xce\xd7\xc6\x1a\x32\xa9\x39\xc4\x1a\x72\x7e\x36\xd6\x90\x73\xd8\x58\x43\xce\x71\x63\x0d\x39\xa7\x8d\x35\xe4\x9c\x37\xd6\x90\x73\xd9\x58\x43\xce\x75\x63\x0d\x39\xb7\x8d\x35\xe4\xdc\x37\xd6\x90\x49\xc1\x21\xd6\x90\xf3\xae\x68\x73\x5e\x1b\x6b\xc8\xe5\xda\x58\x43\x26\x5d\x86\x58\x43\x2e\x79\x63\x0d\xb9\x94\x8d\x35\xe4\x52\x37\xd6\x90\x49\x74\x21\xd6\x90\xeb\xbd\xb1\x86\xac\x08\xc7\x85\xb4\x44\x15\xba\xc2\xbb\xa6\xda\x7f\x05\x9b\xe7\xa9\x64\x29\xb4\x50\x91\x2e\xaa\x45\xee\x7e\x7c\xb6\xd9\x54\x64\x24\x65\x9e\xcb\xa6\x22\x63\x63\x37\x76\x46\x45\x92\x51\xd7\x65\x53\x91\xa9\x64\xde\x04\x6a\x90\xb2\xda\x2e\x13\x01\xe8\x8a\xfe\xa9\x2c\x5c\xf4\x73\x29\x0b\x17\x6f\x62\x29\x0b\x17\x5f\x85\x5d\xea\xf7\xfb\x04\x65\xe1\xea\xb4\x24\x83\xbd\xb3\x42\xfd\x81\x09\x08\x2e\xec\x60\xcf\xdc\xa5\x5c\x6e\x03\xc1\xc5\x58\xf1\x0b\x82\x8b\x29\xdf\x17\x04\x17\xb6\x56\x28\xb1\x46\x31\xa5\xeb\xa8\xd6\xeb\x8a\x29\x5c\xa7\x1c\x07\xe5\x55\xb6\x3f\xa3\xb9\xbc\xca\xf6\xc7\xd0\x5b\xae\x4d\xd5\x3b\x8e\xb4\xcf\x11\xcf\x91\xcd\x60\xac\x1e\x6d\x06\x63\xc9\xb6\x19\x8c\x23\x47\x36\x83\x31\x32\xde\x9b\xc1\xf8\x1f\x95\xb6\x5c\xb9\x37\x5b\x72\xe1\x72\xb7\x4d\x50\x8e\x7c\x7c\x37\x12\xe7\xd5\xc3\x3f\x76\xf2\x72\x6f\x06\x09\xc4\x79\xf5\xf0\xfd\x23\xce\xfd\xf1\xd5\x48\x9c\x7b\x5b\x0c\x10\xe7\xd5\xc3\xf7\x47\x9c\xcd\x17\xc0\x27\xbd\x37\xd7\xa4\xfa\xbc\xd9\x92\xd5\xe7\xcd\x96\xac\x3e\x6f\xb6\x64\xf5\xf9\xe3\x26\x57\x9f\x5f\x65\xfb\x63\xc9\x2e\xaf\xb2\xfd\xb1\x64\x17\xf7\xf1\xb5\xa8\xcf\xee\xe3\xfa\x55\x9f\xdd\xc7\x6f\xa8\x3e\xbf\xca\xf6\xc7\x92\x5d\xdc\x86\xe3\xe8\xb3\xdb\x70\x1c\x7d\x76\xf9\xc0\x83\xc5\x95\x03\x0f\x16\x57\x0f\x3c\x58\x5c\x3b\xf0\x60\x79\x95\xad\xff\xf4\x79\x1c\x78\xb0\xb8\x79\xe0\xc1\xe2\xd6\x81\x07\x8b\xbf\x0e\x3c\x58\xfc\x7d\xe0\xc1\xe2\xdd\x81\x07\x8b\xf7\x07\x1e\x2c\xfe\x39\xf0\x60\xf1\xe1\xc0\x83\xe5\x55\xb6\x3f\x78\xb0\xbc\xca\xf6\x07\x0f\x96\x57\xd9\xfe\xe0\xc1\xe2\xcb\x81\x07\x8b\xaf\x07\x1e\x2c\xbe\x1d\x78\xb0\xf8\x7e\xe0\xc1\xe2\xc7\x81\x07\x8b\x9f\x07\x1e\x2c\x7e\x1d\x78\xb0\xbc\xca\xf6\x07\x0f\x96\xe7\x3e\xf0\x60\xd9\x42\x2b\xd4\xe7\xc7\x7f\xe1\xc1\x5f\x47\x9e\x03\xf4\x95\x27\x1c\xa0\xaf\x3c\xf1\x00\x7d\xe5\x49\x07\xe8\x2b\x4f\x3e\x40\x5f\x79\xca\x01\xfa\xca\x1b\x92\x11\x3f\x7d\x6e\x07\xe8\x2b\x6f\x28\x46\xfc\xf4\x79\x1c\xa0\xaf\x3c\xf3\x00\x7d\xe5\x59\x07\xe8\x2b\x5b\xc8\x85\xfa\x1c\xee\x03\xf4\x95\xe0\x0e\xd0\x57\x82\x3f\x40\x5f\x79\x43\x2a\x7e\x40\x5f\x79\x43\x29\x7e\x40\x5f\x09\xf1\x00\x7d\x25\xa4\x03\xf4\x95\x90\x0f\xd0\x57\xb6\x50\x89\xb7\xcf\xf5\x00\x7d\x25\xb4\x03\xf4\x95\xd0\x0f\xd0\x57\xc2\x38\x40\x5f\x79\xc3\x1f\xf2\xa7\xcf\xeb\x00\x7d\xe5\x0d\x75\xf8\x01\x7d\x25\xde\x07\xe8\x2b\xd1\x1d\xa0\xaf\x44\x7f\x80\xbe\x12\x9f\x03\xf4\x95\x18\x0e\xd0\x57\x62\x3c\x40\x5f\x89\xe9\x00\x7d\xe5\x8d\x53\xf8\x01\x7d\x25\x96\x03\xf4\x95\x58\x0f\xd0\x57\x62\x3b\x40\x5f\x89\xfd\x37\xa0\xaf\x08\xb2\x00\xfa\x4a\x75\x1b\xe8\x2b\xd5\x6f\xa0\xaf\xd4\x67\x03\x7d\xa5\xa6\x0d\xf4\x95\x9a\x37\xd0\x57\x6a\xd9\x40\x5f\xa9\xf5\x07\xf4\xfd\x5d\x0d\xd6\xb6\xe1\xc1\x52\xfb\x86\x07\x4b\x1d\x1b\x1e\x2c\x75\x6e\x78\xb0\xd4\xb5\xe1\xc1\xd2\xae\x0d\x0f\x96\x76\x6f\x78\xb0\x34\xb7\xe1\xc1\xd2\xfc\x86\x07\x4b\x7b\x36\x3c\x58\x5a\xdb\xf0\x60\x91\x31\x0e\x3c\x58\xda\xd8\xf0\x60\x91\x31\x0e\x3c\x58\xb4\x33\x07\x3c\x58\xb4\x33\x07\x3c\x58\xc6\xbd\x59\x91\xcb\x70\x9b\x15\xb9\x28\x07\x7c\xd5\x3f\x9f\xcd\x8a\x5c\xc8\xa7\x2a\x2b\x72\x19\x79\xb3\x22\x97\x51\x36\x2b\x72\x19\x75\x33\x8b\x94\xd1\x36\x2b\x72\x11\x1a\xc5\x8a\x5c\xb4\xdf\x06\x2b\x72\x91\x41\x0a\x2b\x72\xd1\x7e\x1b\xac\xc8\x45\xfb\x6d\x40\xaa\x45\xfb\x6d\xb0\x22\x17\xed\xb7\xc1\x8a\x5c\xb4\xdf\x06\x2b\x72\xd1\x7e\x1b\xac\xc8\x65\xb6\xcd\x8a\x5c\xb4\x6f\x06\x2b\x72\xd1\xbe\x99\xa1\x7f\xce\xcd\x8a\x5c\xb4\xe3\x05\x2b\x72\x91\xd9\x07\x2b\x72\xd5\xce\x15\xf0\x75\xa5\xc6\x95\x12\x54\x56\xc3\x98\x91\x92\xfb\xae\x82\x31\x2f\x0c\x4b\xf5\xc2\x24\xcb\x84\xab\x17\xc9\x03\x9d\xfe\x19\xd9\x2f\x7f\xd3\x32\x53\x59\x22\x6f\x41\x35\x8c\xf9\xe2\xd6\x6a\xf8\xf2\xc5\xad\xf5\xaa\x1b\x6e\xad\x57\xdb\x12\x62\xd6\x1f\x4c\x49\x6b\x1c\x48\xb5\xbe\x78\x52\xcf\x5c\x07\x6e\xad\x2f\x96\x74\xb4\xee\x03\xc5\xd6\x17\x2c\xf2\x1e\x6e\x7f\x60\xda\xfa\x63\xb0\xa1\x15\x0e\x84\x5b\x7f\x8c\x35\xb4\xd2\x81\x77\xeb\x0b\x10\x79\xeb\x77\x39\xd0\x6f\x7d\xc1\x61\xa2\xd5\x0e\x2c\x5c\x5f\x60\xc8\x1b\xbe\xc7\x17\x32\xfe\x75\xe4\x65\xd0\xb4\xd6\x01\x86\xab\xbb\x0e\x30\x5c\xdd\x7d\x80\xe1\xea\xdc\x01\x86\xab\xf3\x07\x18\xae\xee\x39\xc0\x70\x75\xe1\x00\xc3\xd5\xc5\x03\x0c\x57\x97\x0e\x30\x5c\x5d\x3e\xc0\x70\x75\xe5\x00\xc3\xd5\xd5\x03\x0c\x57\xd7\x0e\x30\x5c\x5d\x3f\xc0\x70\x75\xe3\x00\xc3\xd5\xcd\x03\x0c\x57\xb7\x0e\x30\x5c\xfd\x75\x80\xe1\xea\xef\x03\x0c\x57\xef\x0e\x30\x5c\xbd\x3f\xc0\x70\xf5\xcf\x01\x86\xab\x0f\x07\x18\xae\x3e\x1e\x60\xb8\xfa\x74\x80\xe1\xea\xf3\x01\x86\xab\x2f\x07\x18\xae\xbe\x1e\x60\xb8\xfa\xf6\x05\x86\xff\xaa\x2a\xaa\xef\x07\x4e\xae\x7e\x1c\x38\xb9\xfa\x79\xe0\xe4\xea\xd7\x81\x93\xeb\x73\x1d\x38\xb9\x6e\xa1\xb8\x12\xe7\x71\x07\x4e\xae\x8f\x3f\x70\x72\x7d\x9e\x03\x27\xd7\x27\x1c\x38\xb9\x3e\xf1\xc0\xc9\xf5\x49\x07\x4e\xae\x4f\x3e\x70\x72\x7d\xca\x81\x93\xeb\x53\x0f\x9c\x5c\xb7\xd0\xdd\xb7\xcf\xfd\xc0\xc9\xf5\x19\x07\x4e\xae\xcf\x3c\x70\x72\x7d\xd6\x81\x93\x6b\xb8\x0e\x9c\x5c\xc3\x7d\xe0\xe4\x1a\xdc\x81\x93\x6b\xf0\x07\x4e\xae\xe1\x39\x70\x72\x0d\xe1\xc0\xc9\x35\xc4\x03\x27\xd7\x2d\xcc\x56\x7d\x0e\xf9\xc0\xc9\x35\x94\x03\x27\xd7\x50\x0f\x9c\x5c\x43\x3b\x70\x72\x0d\xfd\xc0\xc9\x35\x8c\x03\x27\xd7\x2d\x54\xf6\xed\xf3\x3a\x70\x72\x8d\xd7\x81\x93\x6b\xbc\x0f\x9c\x5c\xa3\x3b\x70\x72\x8d\xfe\xc0\xc9\x35\x3e\x07\x4e\xae\x31\x1c\x38\xb9\xc6\x78\xe0\xe4\x1a\xd3\x81\x93\x6b\xcc\x07\x4e\xae\xb1\x1c\x38\xb9\xc6\x7a\xe0\xe4\x1a\xdb\x81\x93\x6b\xec\x07\x4e\xae\x71\x1c\x38\xb9\xc6\x79\xe0\xe4\x1a\xd7\x81\x93\x6b\xba\x0e\x9c\x5c\xd3\x7d\xe0\xe4\x9a\xdc\x81\x93\x6b\xf2\x07\x4e\xae\xe9\x39\x70\x72\x4d\xe1\xc0\xc9\x35\xc5\x03\x27\xd7\x94\x0e\x9c\x5c\x53\x3e\x70\x72\x4d\xe5\xc0\xc9\x35\xd5\xdf\xe0\xe4\x2a\x90\x09\x4e\xae\x02\x99\xe0\xe4\x2a\x90\x09\x4e\xae\x02\x99\xe0\xe4\xda\xc2\x86\x93\x6b\x8b\x1b\x4e\xae\x2d\x6d\x38\xb9\xaa\x68\x2e\xc6\xd1\xaa\xa2\xb9\x80\xe1\xda\xea\x06\x86\xab\xc0\x29\x60\xb8\x0a\x9c\x02\x86\xab\xc0\x69\xd0\xf3\xe6\x06\x86\xab\x36\x9f\x03\x86\xab\x36\x9f\x03\x86\xab\x36\x9f\x03\x86\xab\x36\x9f\x03\x86\xab\xbc\xba\x80\xe1\xaa\x8d\xe2\x80\xe1\xaa\x8d\xe2\x49\xff\xec\x1b\x18\xae\x82\xb8\x80\xe1\x2a\x88\x0b\x18\xae\x02\x99\x80\xe1\x2a\x90\x09\x18\xae\x02\x99\x80\xe1\x2a\x90\x09\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xf2\x6c\x02\x86\xab\xc0\x29\x60\xb8\x0a\x9c\x02\x86\xab\xc0\x69\xfb\x57\xf2\x9a\x2a\xdc\xda\xd4\x95\xb5\xe1\xe4\xaa\xfd\xde\xe0\xe4\xaa\xfd\xde\xe0\xe4\xaa\xfd\xde\xe0\xe4\xaa\xbd\xd9\xe0\xe4\xaa\xe2\x45\xe0\xe4\xaa\xe2\x45\x43\xff\xec\x1b\x4e\x6e\xda\xa9\x0d\x4e\x6e\xda\xa9\x0d\x4e\x6e\xe4\xde\x14\x32\x6e\xe4\xde\x14\x32\x6e\x54\x4d\x15\x32\x6e\xe4\xde\x14\x32\x6e\xe4\xde\x14\x32\x6e\xf7\xb3\x21\xe3\x66\x28\xf2\x45\xc6\xed\x56\x9a\xed\x8b\x56\x22\x4b\xee\xa0\xb5\xa3\xe6\x76\xef\xa8\xb9\xdd\x3b\x6a\x6e\x64\xe5\x57\xfe\xab\x76\x93\x9a\xbe\xea\x79\x63\xc3\xd0\xed\x9e\x07\x86\x6e\x2f\x6a\xe4\xdf\xee\x3a\x30\x74\xfb\x31\x21\xd2\x72\x07\x86\x6e\x2f\x5a\xf4\xb4\x9e\x03\x43\xb7\x17\x29\xd2\xef\x17\x25\x5e\x9f\x23\x69\xc3\xd0\xcd\xe5\x03\x43\xb7\x1f\xff\x1c\xad\x7a\x60\xe8\xf6\xe3\x9b\xa3\xd5\x0f\x0c\xdd\x5e\x64\xc8\xb7\x70\xf3\xc0\xd0\xed\x45\x85\x36\x84\x9b\xbf\x0e\x0c\xdd\xfc\x7d\x60\xe8\xe6\xdd\x81\xa1\x9b\xf7\x07\x86\x6e\xfe\x39\x30\x74\xf3\xe1\xc0\xd0\xcd\xc7\x03\x43\x37\x9f\x0e\x0c\xdd\x7c\x3e\x30\x74\xf3\xe5\xc0\xd0\xcd\xd7\x03\x43\x37\xdf\x0e\x0c\xdd\x7c\x3f\x30\x74\xf3\xe3\xc0\xd0\xcd\xcf\x03\x43\xb7\x6d\x27\x96\xfa\xfc\x5c\x07\x86\x6e\xcf\x7d\x60\xe8\xf6\xb8\x03\x43\xb7\xc7\x1f\x18\xba\x3d\xcf\x81\xa1\xdb\x13\x0e\x0c\xdd\x9e\x78\x60\xe8\xf6\xa4\x03\x43\xb7\x27\x1f\x18\xba\x3d\xe5\xc0\xd0\xed\xa9\x07\x86\x6e\x4f\x3b\x30\x74\x7b\xfa\x17\x86\xfe\x75\x64\x1c\x40\xb9\x3d\xf3\x00\xca\xed\x59\x07\x50\x6e\xe1\x3a\x80\x72\x0b\xf7\x01\x94\x5b\x70\x07\x50\x6e\xc1\x1f\x40\xb9\x85\xe7\x00\xca\x6d\xdb\x6d\xa5\x3e\x87\x78\x00\xe5\x16\xd2\x01\x94\x5b\xc8\x07\x50\x6e\xa1\x1c\x40\xb9\x85\x7a\x00\xe5\x16\xda\x01\x94\x5b\xe8\x07\x50\x6e\xdb\x4e\xa9\xb7\xcf\xf3\x00\xca\x2d\xac\x03\x28\xb7\x78\x1d\x40\xb9\xc5\xfb\x00\xca\x2d\xba\x03\x28\xb7\xe8\x0f\xa0\xdc\xe2\x73\x00\xe5\x16\xc3\x01\x94\x5b\x8c\x07\x50\x6e\x31\x7d\x01\xe5\xbf\xaa\xa5\x16\xf3\x81\xa1\x5b\x2c\x07\x86\x6e\xb1\x1e\x18\xba\xc5\x76\x60\xe8\x16\xfb\x81\xa1\x5b\x1c\x07\x86\x6e\x71\x1e\x18\xba\xc5\x75\x60\xe8\x96\xae\x03\x43\xb7\x74\x1f\x18\xba\x25\x77\x60\xe8\x96\xfc\x81\xa1\x5b\x7a\x0e\x0c\xdd\x52\x38\x30\x74\xdb\x76\x2b\xa9\xcf\x29\x1d\x18\xba\xa5\x7c\x60\xe8\x96\xca\x81\xa1\x5b\xaa\x07\x86\x6e\xa9\x1d\x18\xba\x6d\xbb\x92\xde\x3e\x8f\x03\x43\xb7\x34\x0f\x0c\xdd\xd2\x3a\x30\x74\xcb\xd7\x81\xa1\x5b\xbe\x0f\x0c\xdd\xb2\x3b\x30\x74\xcb\xfe\xc0\xd0\x2d\x3f\x07\x86\x6e\x39\x1c\x18\xba\xe5\x78\x60\xe8\x96\xd3\x81\xa1\x5b\xce\x07\x86\x6e\xdb\x8e\xa1\xb7\xcf\xf5\xc0\xd0\x2d\xb7\xdf\x60\xe8\x26\xc4\x09\x86\x6e\x42\x9c\x60\xe8\x26\xc4\x09\x86\x6e\x4a\x77\x04\x86\x6e\x4a\x69\x04\x86\x6e\x4a\x69\x24\x40\xa1\x94\x46\x60\xe8\x26\xa4\x0a\x86\x6e\x42\xaa\x60\xe8\x26\xa4\x0a\x86\x6e\x42\xaa\x60\xe8\xa6\x94\x46\x60\xe8\xa6\x94\x46\x41\xcf\x5b\x1b\x86\x6e\x4a\x69\x04\x86\x6e\x32\xe9\x82\xa1\x9b\xf0\x2e\x18\xba\x09\xef\x82\xa1\x9b\x4c\xb3\x60\xe8\x26\xd3\x2c\x18\xba\xc9\x34\x9b\xf4\xcf\xb1\x61\xe8\xf6\x26\x31\xe2\x09\x6f\x12\x23\x9e\x20\x58\x09\x86\x6e\x82\x95\x60\xe8\x26\x58\x59\xf5\x4f\xbf\x61\xe8\xa6\x78\x39\x30\x74\x53\xbc\x1c\x18\xba\x29\x5e\x0e\x0c\xdd\x04\x47\xc1\xd0\x4d\x70\x14\x0c\xdd\x04\x47\xc1\xd0\x4d\x70\x14\x0c\xdd\x54\x4b\x13\x0c\xdd\x54\x4b\xb3\xe9\x79\x6b\x03\xca\x5d\x46\x5c\x80\x72\x57\xfa\x21\x80\x72\x17\xa8\x05\x28\x77\x81\x5a\x80\x72\x57\xc2\x21\x80\x72\xbf\xda\x06\x94\xfb\xd5\x37\xa0\xdc\xaf\xb1\x01\xe5\x7e\xfb\x0d\x28\xf7\xfb\xd9\x80\x72\x27\x37\xbb\x80\x72\x77\xf7\x06\x94\xbb\x41\xc6\x17\x28\x77\x72\xb3\x0b\x28\x77\x72\xb3\x0b\x28\x77\x83\x8a\x2f\x50\xee\x06\x15\x5f\xa0\xdc\x0d\x26\xbe\x60\xb8\xbb\xbc\x81\xe1\xee\xca\x06\x86\xbb\xa3\x6a\x13\x90\xba\xbf\xf0\x50\xad\x73\x57\x5b\x7f\xe1\xa1\x9e\x39\x0f\xf8\xdb\x7f\x8c\x86\xff\x50\x17\x7d\x47\x8e\xbc\xda\x17\x39\x7a\x5a\xee\x40\xc6\xfd\xc7\xb1\x4c\xeb\x39\x90\x71\x7f\x11\x23\x2f\xd5\xc7\x03\x19\xf7\x17\x2d\xf2\x09\x7c\x3e\x90\x71\x7f\x91\x62\xa2\x55\x0f\x64\xdc\x7f\xa2\xb6\x68\xf5\x03\x19\xf7\x17\x21\x16\x5a\xf3\x40\xc6\xdd\xaf\x03\x19\xf7\xe7\x3a\x90\x71\x7f\xee\x03\x19\xf7\xc7\x1d\xc8\xb8\x3f\xfe\x40\xc6\xfd\x79\x0e\x64\xdc\x9f\x70\x20\xe3\xfe\xc4\x03\x19\xf7\x27\x1d\xc8\xb8\xef\xd1\x5a\xf4\x79\xdb\xd7\xff\xf6\xb9\x1e\xc8\xb8\x3f\xed\x40\xc6\xfd\xe9\x07\x32\xee\xcf\x38\x90\x71\x7f\xe6\x81\x8c\xfb\xb3\x0e\x64\xdc\xc3\x75\x20\xe3\x1e\xee\x03\x19\xf7\xe0\x0e\x64\xdc\x83\x3f\x90\x71\xdf\xf6\xe4\xab\xcf\x21\x1c\xc8\xb8\x87\x78\x20\xe3\x1e\xd2\x81\x8c\x7b\xc8\x07\x32\xee\xa1\x1c\xc8\xb8\x87\x7a\x20\xe3\x1e\xda\x81\x8c\x7b\xe8\x07\x32\xee\x61\x1c\xc8\xb8\x87\x79\x20\xe3\x1e\xd6\x81\x8c\x7b\xbc\x0e\x64\xdc\xe3\x7d\x20\xe3\x1e\xdd\x81\x8c\x7b\xf4\x07\x32\xee\xf1\x39\x90\x71\x8f\xe1\x40\xc6\x3d\xc6\x03\x19\xf7\x98\x0e\x64\xdc\x63\x3e\x90\x71\x8f\xe5\x40\xc6\x3d\xd6\x03\x19\xf7\xd8\x0e\x64\xdc\xb7\x8d\xed\x6f\x9f\xc7\x81\x8c\x7b\x9c\x07\x32\xee\x71\x1d\xc8\xb8\xa7\xeb\x40\xc6\x3d\xdd\x07\x32\xee\xdb\x06\x76\xf5\x39\xf9\x03\x19\xf7\xf4\x1c\xc8\xb8\xa7\xf0\x85\x8c\x7f\x1d\x89\x07\xfc\xed\x29\x1d\xf0\xb7\xa7\x7c\xc0\xdf\x9e\xca\x01\x7f\x7b\xaa\x07\xfc\xed\xdb\xe6\xf4\xb7\xcf\xfd\x80\xbf\x3d\x8d\x03\xfe\xf6\x34\x0f\xf8\xdb\xb7\x4d\xe8\xea\x73\xbe\x0e\xf8\xdb\xf3\x7d\xc0\xdf\x9e\xdd\x01\x7f\x7b\xf6\x07\xfc\xed\xf9\x39\xe0\x6f\xcf\xe1\x80\xbf\x3d\xc7\x03\xfe\xf6\x9c\x0e\xf8\xdb\xb7\xcd\xe3\xea\x73\x2e\x07\xfc\xed\xb9\x1e\xf0\xb7\xe7\x76\xc0\xdf\x9e\xfb\x01\x7f\x7b\x1e\x07\xfc\xed\x79\x1e\xf0\xb7\xe7\x75\xc0\xdf\x5e\xae\x03\xfe\xf6\x72\x1f\xf0\xb7\x17\x77\xc0\xdf\x5e\xfc\x17\xfc\xfd\xbb\x1a\x2c\xcf\x81\x8c\x7b\x09\x07\x32\xee\x25\x1e\xc8\xb8\x97\x74\x20\xe3\x5e\xf2\x81\x8c\x7b\x29\xbf\x41\xc6\xbd\xef\x1b\xf6\x7a\xdf\x37\xec\xf5\xb1\x6f\xd8\xeb\x63\xdf\xb0\xd7\xc7\xbe\x61\xaf\x8f\x7d\xc3\x5e\x1f\xfb\x86\xbd\x3e\xf6\x0d\x7b\x7d\xec\x1b\xf6\xfa\xd8\x37\xec\xf5\xb1\x6f\xd8\xeb\x63\xdf\xb0\xd7\xc7\xbe\x61\xaf\x8f\x7d\xc3\x5e\x1f\xfb\x86\xbd\x3e\xf6\x0d\x7b\x7d\xee\x1b\xf6\xfa\xdc\x37\xec\xf5\xb9\x6f\xd8\xeb\x73\xdf\xb0\xd7\xe7\xbe\x61\xaf\xcf\x7d\xc3\x5e\x5f\xfb\x86\xbd\xbe\xf6\x0d\x7b\x7d\xed\x1b\xf6\xfa\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf6\x0d\x7b\xe3\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf6\x0d\x7b\xe3\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf6\x0d\x7b\xe3\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf7\x0d\x7b\xe3\xde\x37\xec\x8d\x7b\xdf\xb0\x37\xee\x7d\xc3\xde\xb8\xf7\x0d\x7b\xe3\xde\x37\xec\x0d\xb7\x6f\xd8\x1b\x6e\xdf\xb0\x37\xa8\xf8\x23\x64\x3c\xa8\xf8\x23\x64\x3c\x0c\x32\xbe\xc8\x78\xf8\x7b\x43\xc6\x83\x8a\x3f\x42\xc6\xc3\xa0\xe2\x8b\x8c\x07\xf5\xcc\x85\x8c\x87\xdf\x77\xc6\x0d\xbf\xef\x8c\x1b\x7e\xdf\x19\x37\x7e\x20\x22\xad\x72\x60\xe1\xf1\x63\x48\xa4\xd5\x0e\x2c\x3c\x7e\x8c\x88\xb4\xc6\x01\x78\xc7\x0b\x11\xf9\xb2\xfe\xcc\x05\x31\x7e\x7c\xc6\xb4\xee\x03\xf0\x8e\x9f\xd8\x42\x5a\xfe\x00\xbc\xe3\x27\xae\x90\x56\x38\x00\xef\x78\x21\x21\xa3\xe7\x49\x07\xe0\x1d\x2f\x1c\xe4\x9d\x3e\xe5\x00\xbc\xe3\x85\x82\x8c\xb7\xa7\x1d\x80\x77\x3c\xfd\x00\xbc\xe3\x19\x07\xe0\x1d\x5b\x2a\x27\xbd\x95\x67\x1d\x80\x77\x84\xeb\x00\xbc\x23\xdc\x07\xe0\x1d\x5b\xaa\x26\x49\x17\xfc\x01\x78\x47\x78\x0e\xc0\x3b\x42\x38\x00\xef\x08\xf1\x00\xbc\x23\xa4\x03\xf0\x8e\x90\x0f\xc0\x3b\x42\x39\x00\xef\x08\xf5\x00\xbc\x23\xb4\x2f\xc0\xfb\x57\xb5\x30\x42\x3f\xb0\xf0\x08\xe3\xc0\xc2\x23\xcc\x03\x0b\x8f\xb0\x0e\x2c\x3c\xe2\x75\x60\xe1\x11\xef\x03\x0b\x8f\xe8\x0e\x2c\x3c\xa2\x3f\xb0\xf0\x88\xcf\x81\x85\x47\x0c\x07\x16\x1e\x5b\x4a\x24\xf5\x39\xa6\x03\x0b\x8f\x98\x0f\x2c\x3c\xb6\x34\x48\x6f\x9f\xeb\x81\x85\x47\x6c\x07\x16\x1e\xb1\x1f\x58\x78\xc4\x71\x60\xe1\x11\xe7\x81\x85\x47\x5c\x07\x16\x1e\x5b\xaa\x23\xf5\x39\xdd\x07\x16\x1e\xc9\x1d\x58\x78\x24\x7f\x60\xe1\x91\x9e\x03\x0b\x8f\x2d\xad\x91\xfa\x9c\xe2\x81\x85\x47\x4a\x07\x16\x1e\x29\x1f\x58\x78\xa4\x72\x60\xe1\xb1\xa5\x30\x7a\xfb\xdc\x0e\x2c\x3c\x52\x3f\xb0\xf0\x48\xe3\xc0\xc2\x23\xcd\x03\x0b\x8f\xb4\x0e\x2c\x3c\xf2\x75\x60\xe1\x91\xef\x03\x0b\x8f\xec\x0e\x2c\x3c\xb2\x3f\xb0\xf0\xc8\xcf\x81\x85\x47\x0e\x07\x16\x1e\x5b\xba\x21\xf5\x39\xa7\x03\x0b\x8f\x9c\x0f\x2c\x3c\x72\x39\xb0\xf0\xc8\xf5\xc0\xc2\x23\xb7\x03\x0b\x8f\xdc\x0f\x2c\x3c\xb6\x94\x41\x6f\x9f\xe7\x81\x85\x47\x5e\x07\x16\x1e\xe5\x3a\xb0\xf0\x28\xf7\x81\x85\x47\x71\x07\x16\x1e\xc5\x1f\x58\x78\x94\xe7\xc0\xc2\xa3\x84\x03\x0b\x8f\x12\x0f\x2c\x3c\x4a\x3a\xb0\xf0\x28\xf9\xc0\xc2\xa3\x94\x03\x0b\x8f\x52\x0f\x2c\x3c\x4a\x3b\xb0\xf0\x28\xfd\xc0\xc2\xa3\x8c\x03\x0b\x8f\x32\x0f\x2c\x3c\xca\x3a\xb0\xf0\xa8\xd7\x17\x16\xfe\x75\xe4\x3e\x00\xef\xa8\xee\x00\xbc\xa3\xfa\x03\xf0\x8e\xfa\x1c\x80\x77\xd4\x70\x00\xde\x51\xe3\x6f\x00\xef\x10\xac\x04\xf0\x0e\xc1\x4a\x00\xef\x78\x73\xc1\xf3\xd4\x37\x17\x3c\xf7\x7f\xf3\xbd\x03\x98\x14\x1a\x20\xd0\x20\x53\x29\x80\x77\xc8\x54\x0a\xe0\x1d\x0a\x1b\x00\xf0\x0e\x85\x0d\x00\x78\x87\xc2\x06\x00\xbc\x43\x70\x14\xc0\x3b\x04\x47\x83\x9e\x57\x37\xc0\x3b\x04\x47\xa3\x9e\xd7\x37\xc0\x3b\x14\x36\x00\xe0\x1d\x8a\x0d\x00\xf0\x0e\x45\xb1\x02\x78\x87\x8c\xb1\x00\xde\x21\x63\x6c\xd2\x3f\xf3\x06\x78\x87\x40\x2d\x80\x77\x08\xd4\x02\x78\xa7\x60\x65\xfd\x97\x81\x6f\x0a\x71\x82\x85\xa7\x10\x67\xd5\x4d\xe6\x86\x85\xa7\x50\x25\x58\x78\x2a\x89\x3b\x58\x78\xca\x8a\x0a\x16\x9e\xb2\xa2\x82\x85\xa7\x12\xbc\x83\x85\xa7\x12\xbc\x83\x85\xa7\x12\xbc\x83\x85\xa7\x90\x2a\x58\x78\x0a\xa9\x36\x3d\xaf\x6e\x58\x78\x0a\xa9\x76\x3d\xaf\x6f\x58\x78\x2a\xc1\x3b\x58\x78\x2a\xc1\x3b\x58\x78\xaa\x28\x3f\x58\x78\xba\xb8\x61\xe1\xe9\xd2\x86\x85\xa7\xcb\x1b\x16\x9e\x4a\xa0\x02\x16\x9e\x4a\xa0\x02\x16\x9e\xd4\x91\x14\x16\x9e\xd4\x91\x14\x16\x9e\x7e\x6c\x58\x78\xbe\x75\x24\xb9\x0b\x75\x24\x85\x85\xe7\x73\x6d\x58\x78\x1a\x8a\x7c\xb1\xf0\x7c\xf6\x0d\x72\xf3\xd9\x37\xc8\xcd\x67\xdf\x20\x37\xc9\x2b\x2d\x2b\xf1\x7c\xa8\x90\x4d\x61\x86\xf9\x50\x01\x9c\x74\xb5\xf3\xa1\x7a\x3b\x75\x0d\xa7\x50\x63\xb8\x2e\x4d\xac\x49\x6a\x14\xaf\xb7\x41\x6a\x14\x4f\x49\xb1\x29\x34\x18\xe2\xa5\xe9\x34\xc9\x36\xad\xf4\xba\x93\x7a\xfc\xef\x73\x85\x02\xa3\xb2\xdd\xb1\x2b\x7f\x92\x50\xc5\xeb\x9b\x05\x2a\xb1\x90\x54\x78\x06\xaa\x7e\xb3\x3d\x70\x06\xaa\x7e\x93\xa5\x7c\x06\x64\xa2\x2e\xe8\xa4\x9e\xbf\x52\xfe\xce\x40\x55\xf3\x8c\x84\x81\xaa\xe6\x6c\x71\x9c\x01\x79\xa8\xa9\x39\x85\xf2\xe2\x50\x9f\x74\x05\xcb\x69\x9c\xdf\x47\xe5\xef\x09\x6f\x09\x81\x19\xaf\xff\x1c\x79\x43\xf9\x7f\x46\x1a\xa9\x5e\x3c\xb5\x2a\x27\xa9\x5e\x3c\x85\xd6\xa6\x52\xbd\xd4\xe8\xaf\xd9\x7e\xe6\x02\x29\x5f\xbc\x46\x8e\x52\xbe\xd4\xfc\x6b\x8e\xfd\xcc\x1e\x52\xbf\xa8\xa8\xf4\x24\xf5\x8b\x12\xea\x4e\xa5\x7e\xa9\xd5\x5f\xcb\xfb\xab\x5d\xbf\xe6\xd5\xaf\xfe\xf8\x6b\x0e\x7f\xad\xee\x55\xd6\x64\x46\x55\xa9\x67\xd6\x29\x2d\xcc\x7b\x1d\xff\xe7\x8c\x2a\xba\xf3\x06\xe3\x5b\xaa\xc4\x5f\xdd\xfb\x8b\xf2\x6b\x93\x54\x31\xca\xb5\x3d\xd3\xbb\x35\x81\x67\xce\xca\x7f\xed\x9e\xdc\x85\xf4\x31\xfe\xd6\xd5\x9a\xe3\xea\xeb\xd6\x47\x52\xc9\x78\x36\xb6\x4e\xa5\x92\xf9\xf5\x26\xec\x8d\x45\xfe\x4b\x21\x91\x99\x55\x33\x9e\x77\xad\x0d\xc7\x3d\xbd\x65\x55\x26\x9b\x8e\x55\xce\x6d\x6a\xd3\x71\xff\xf5\xf6\x75\xbd\x32\x44\x94\x5f\x47\x78\x0a\x41\x47\x53\x1b\x8d\xc7\xa5\xe7\xe9\x09\xcc\x06\x52\x09\x4f\x6d\x38\x1e\x37\x32\xfc\x7a\x3f\x92\x55\x9b\x8f\x7f\x5d\x3d\xfb\xcf\x51\x55\xf7\x47\x19\x4f\xaa\xfb\x5f\x23\xf8\xab\xde\x3c\x5f\x52\x51\xe9\x9f\x33\xe9\xd7\x7b\xf9\x19\x5b\x6f\x65\x7f\xde\x79\x79\xd7\x2d\x7a\xfe\xfe\x27\x1f\x47\x7f\xdb\x43\x6d\x65\x1e\xf5\xd7\xaa\xfb\xb3\xba\xb2\xa5\xd9\xa3\xd4\x67\x69\x9f\xff\xe8\x3c\xe3\xc7\xeb\x49\x83\x16\xa3\xb0\x30\x66\x48\xac\x3c\x0d\x6a\x78\x65\xe9\x98\xec\x11\x52\x1d\xfe\xa9\x0d\x3d\x53\xdf\x72\xfe\x2b\xa2\x6e\x6a\xcf\xcf\xf6\x8a\xd8\xf7\xe3\x49\xca\x3e\x09\xc9\xf4\x5a\x18\x15\x92\xf9\x6b\xb8\xd8\x04\xe2\x0a\x85\x66\xfe\x3a\x3a\x9e\xd7\x20\x34\x09\xd1\xf4\x5a\xcc\x14\xa2\xb9\x4d\x66\x42\x31\xdf\xc9\xdc\xca\x3e\x99\x15\x8a\x79\x4c\x66\x42\x32\xdf\xc9\xac\x90\xcc\x63\x32\x13\x9a\xf9\x4e\xe6\x36\xf7\xc9\xfc\xd6\x05\xfa\xf7\x64\xee\xd7\x3e\x99\xe5\x44\xff\xcd\x64\xc6\xa1\xfe\x4e\xe6\xb7\x7e\xd0\xf7\x64\xee\xcf\x3e\x99\xe5\x20\xff\x9a\xcc\xcf\xd7\x64\xc6\x69\xfe\x4e\x66\x39\xcd\x7f\x33\x99\x31\x67\xbe\x93\x59\xe6\xcc\x7d\x32\xf7\xf5\xf3\x4d\x31\x4c\xbe\x93\x59\x86\xc9\x6d\x32\x63\x9c\x7c\x27\xb3\x8c\x93\xdb\x64\x16\x92\xfc\xcd\x64\x16\x72\x3c\x26\x33\x86\xc9\x77\x32\xcb\x30\xf9\x9b\xa9\x22\xa4\x79\x4c\x66\x70\xe4\x3b\x99\x67\xfc\xd3\x64\x16\xa6\xfc\xcd\x64\x9e\x75\x9f\xcc\xef\xbe\xa8\xef\xc9\xfc\xee\x8f\xfa\xfb\x64\x7e\xf7\x4d\x7d\x4f\xe6\x39\xf7\xc9\xac\x38\xd4\x6d\x32\x13\x34\xf0\x4e\xe6\x75\xef\x93\x19\x23\xea\x3b\x99\x09\x1a\x78\x27\x33\xee\x7e\x4d\xe6\x25\x23\xea\x3e\x99\x7f\x1d\xbd\x8f\x19\xbb\x2e\xb7\xcd\xd8\x85\x0b\x5f\x33\x76\xc9\xd8\xfa\x3d\x63\x97\x8c\xae\xdf\x33\x76\x61\x7c\xd5\x8c\x5d\x18\x58\x3d\x95\x06\x16\x06\x56\x9f\xd4\x07\xfa\x49\x71\x8d\x05\xdc\xf5\x20\xe8\x75\x91\x1d\xcc\xb7\x14\x1f\x17\xfb\x08\xcf\xa4\xa4\xc3\x32\xe8\x1b\x5a\x8c\x31\xbb\xfb\xfb\x0c\xe9\xa7\xd2\x1d\x9e\xab\xa7\xf1\x3c\x6f\x6a\xaf\x75\x93\x1a\x2c\x3c\xff\x3d\x73\x2b\x05\x58\xee\x3d\x3d\xeb\xae\xa9\x50\x2e\x6e\x19\x8c\xfe\x75\x26\x3c\xd7\xf8\x3e\xe3\x29\x6a\x3c\x43\x9c\xfe\xab\x07\x06\xaf\x43\x2b\x29\x86\x50\xbe\xcf\x58\xa8\xc1\xb5\xc2\xb3\xda\x4a\x21\xd6\xe0\x57\xe2\x4c\xfc\x93\xa4\x44\xe7\xfe\x4e\x52\x22\x75\x7f\x2b\x69\xf9\xa3\xa4\xf5\x8f\x92\xb6\x3f\x4a\xda\xff\x28\xe9\xf8\xa3\xa4\xf3\x8f\x92\xc2\x6e\x99\xcf\xeb\x8d\xfc\x55\xeb\x06\x66\x32\x6a\xcc\xa4\x6d\x29\xf8\xad\xe5\x69\x31\xbe\x54\xc3\xe9\xd6\x3f\x19\x83\xd4\x84\x58\x8a\x59\xa0\xa0\xe8\x52\xbc\x82\xd3\x39\x98\xfd\x53\xaf\xeb\xb9\x5f\x78\xbc\xcc\x28\x6d\x55\xec\xad\x45\xe9\x12\xea\x28\x2c\x6a\x40\xa9\xce\xee\x32\xfa\xe0\x54\xf0\x7c\xc9\x18\xdd\x74\x1d\x45\x39\x87\x5a\x8b\x16\x23\x19\x23\xb4\x87\x3e\xac\x87\x2a\xbf\x7d\xa6\x47\xb2\x1a\x4d\xb0\x5c\xe4\xd6\xa2\x48\x21\xb5\x2a\x96\x0c\xcc\xa4\xc4\x5a\xcf\xa7\x40\xe3\x5f\xd5\xf1\x92\xdd\x99\xe2\x22\xeb\x29\x5f\x2d\x96\x65\xaf\xce\xb5\xaf\x16\xd5\x60\x58\xf0\x56\xa0\x1a\x0c\x09\x2d\x97\xb8\x02\xa5\x76\x97\x71\x84\xcf\x3f\xfd\xd7\x3f\x4d\xa0\xe7\x41\x04\x59\x88\x43\x7f\x2b\xec\x2c\x2a\x2f\x3a\x7d\x40\x78\x82\xa3\xbc\xc9\xa2\xf2\xa2\xa3\x9c\xdc\xa2\xba\xa9\x78\xc2\x32\x33\xa2\xf3\x30\xa8\x65\x26\x44\xe7\x29\x78\xbb\xcc\x7c\xf8\xf9\x67\xf8\xfa\x67\xe4\x1c\xf2\x53\xeb\xd4\x13\xac\xbe\x0c\xcb\x3a\x0f\xab\x5e\xd4\x33\xf5\xa4\x57\x59\x66\x02\xfc\xfc\x73\x7c\xfd\x73\xd2\x62\x79\x4c\x6b\xff\x67\x76\xfb\x3f\xb3\xdf\xef\x99\x9f\xaf\x7f\x86\xaf\x7f\xc6\xfd\x9e\x54\x47\x5f\x7a\x67\x6f\x1d\x54\x06\x98\x99\xd1\x2c\x7f\xe9\xaf\x96\x99\xd0\x3e\xad\xfb\xab\xe5\xbe\x5a\x40\x0b\x4d\xb9\xf2\xec\x53\xa7\x30\x91\x48\x6c\xb3\x0a\x8b\xd2\xa3\x7f\xf2\x8d\x80\x43\xab\xf0\x8d\x60\x84\xcb\x70\xaa\x95\x27\xb5\x96\xbd\x4f\x07\x97\x5b\x64\xf8\x76\x30\xc2\x65\xd8\xd4\x29\xed\xcc\x32\x6c\xea\x94\xae\x66\x19\x36\xb5\x02\xa8\xd6\x5a\xfb\x3f\xcd\x04\x66\x89\xbd\xad\x75\x53\x7c\x8d\xf7\x69\xa6\x2f\x17\xba\xce\x79\xce\xf1\x74\x33\x79\x59\x95\x66\x6b\x05\x5a\xf4\xc5\x4c\x5d\x56\xb3\xd9\x5a\x70\x55\x60\xca\xaa\xf0\x6f\x2d\x02\x95\x05\x82\x9c\x78\xcb\x60\xad\x55\xd2\xb6\x16\xdc\xba\x33\xea\x0c\xaa\x5a\xf5\x78\x6b\xc1\x9b\xa9\x07\xb5\x1a\x7d\x29\x7c\x77\x03\xad\x2e\x00\x5a\x57\xa3\x9c\x1c\xa0\x75\x09\xb4\x7a\xdd\x85\x11\xa9\x37\x2f\xb0\xfa\x9e\x1b\x5f\xe7\xe6\xd7\xb9\xb5\x9f\x53\x34\xa7\xce\x19\x10\xfd\x9c\x73\x5f\xe7\xfc\xd7\x39\xeb\x75\xd2\x32\x6c\x5b\xe4\x2d\xbf\xab\xb5\xe2\xb6\xe9\x63\xf5\xf2\xd5\xaa\x5f\xad\xf6\xd5\xea\x5f\xad\x41\x8b\x37\x68\x60\xf4\xb5\x91\x2c\x03\xa3\x2e\x50\x01\x6a\x0d\x46\xb9\x16\xc6\x71\x7f\xb5\x34\x0a\xe8\xf5\x08\x5f\xad\xf8\xd5\x4a\x5f\xad\xfc\xd5\x42\x06\xac\x53\x6b\xd4\xaf\x96\xb6\x89\x33\x3e\x07\x32\x08\x38\x0d\x64\xf8\x35\x0a\xfe\xbe\x2c\x0f\xc4\xd3\x80\x1c\x6b\xdb\x79\xbe\xe6\xb5\x95\xf3\x5a\x54\x33\x4a\xe4\x08\x5e\xd3\x7d\xb5\xfc\x57\xeb\xf9\x6a\xc9\xcd\xcf\xe4\x78\xeb\x5a\xaa\xa5\x60\x4e\x5a\x0a\x48\x7d\x5b\x5c\x67\x13\xce\x5f\x42\x7b\x36\x89\xad\xe0\xe3\xaf\x96\x55\x61\x35\x43\xac\xb5\xf8\xa7\xb2\xed\x2e\xfe\xa9\xbc\x0c\xba\x8b\xb6\xbe\x71\x97\x5b\x28\xd4\xa6\x91\xbf\x15\x20\xca\x3d\x6f\x19\x33\xb9\xe7\x2d\xa3\x24\xf7\xbc\x65\xbe\xb1\xbc\x52\xfe\x36\x4f\xdb\x5a\xa6\x91\xfd\x1d\x51\x3b\x5e\xe7\x9e\x9f\xcf\xf0\xab\x15\x3e\x1f\xcc\xdf\x31\x7e\x3e\x98\xbf\x63\xfa\x2c\x21\xfe\x8e\x0c\x02\xab\xc9\xea\x6f\x99\x15\x90\xe1\xc6\x20\xf0\xca\xf0\x06\x6d\xdc\xb4\x14\xea\xcc\x5d\x14\xb4\xf1\x70\x9d\xb8\x91\x55\x3e\xf5\xb7\x82\x36\x1e\x9e\x2e\x5e\xf4\xd0\xcf\x37\x68\x43\xf7\xdc\x52\xc9\xfa\x5b\xd6\xf5\xac\x96\x6c\xca\x7a\x82\x6c\xca\x3c\x41\xdc\x28\x23\xad\x38\x89\xde\xa7\x02\x8a\x79\x9f\x4e\xd9\xa0\x6d\xfa\x79\xa7\x6c\xd0\xa6\x9c\xbc\x53\x36\x68\x2b\xa7\xe7\x9d\xb2\x41\x5b\x09\x3b\xef\x94\x0d\xda\x90\x88\x77\xca\xf8\xdc\x75\x9d\x8c\xae\xb4\x94\xf1\x79\x72\x17\x65\x7c\x9e\xdc\xe5\x51\xa8\xc2\xa4\xb5\x8f\x02\xf7\x3c\x5f\xad\x40\x32\xde\x4c\x2b\x7e\x2a\x3d\x79\xf7\xa4\x4f\x4d\x32\xef\x0c\xd0\xa8\x26\x99\x77\x38\xc8\xa9\x49\xe6\x1d\xe6\x50\x6a\x92\x79\x87\x63\x9c\xa4\xa5\xde\xe1\x14\xc7\x40\xe9\x1d\xf0\x86\x9a\x64\xde\xe1\x0c\xbf\x75\x4f\x1c\xe1\xd4\x24\xf3\x0e\x27\x38\x35\xc9\xbc\x03\xde\x50\x93\xcc\xbb\xa0\xba\x71\xf4\x53\x85\xf7\x12\x77\x89\xaa\xef\xc5\x13\xa2\xea\x7b\x71\x17\x79\x51\x7f\x6a\x92\x79\x8a\xb7\xab\x26\x99\x57\xf1\x76\x6a\x92\xf9\xb7\x78\xfb\x4f\x4d\x32\xef\x92\xea\x7b\xf1\xb6\x54\xcb\x6e\xf0\x0e\xe4\x35\xfd\xa9\x49\xe6\x29\xf7\xae\x9a\x64\xfe\x2d\xf7\x1e\xf9\x26\x49\xf5\xbd\x74\x27\x6a\xac\x75\x9d\xa3\x96\xd9\xcd\xfb\x93\x87\x34\x6e\x7d\x1e\x9f\x9a\x64\xde\xe1\x1d\x45\x8d\x7a\x87\x67\xf4\x53\x93\xcc\x3b\x3c\xa3\xd4\x24\xf3\x94\x8b\x57\x4d\x32\xef\xe4\x11\x8d\x9f\x3e\xe3\x11\xa5\x26\x99\x57\x39\x79\x6a\x92\x79\x95\x93\xa7\x26\x99\xa7\x9c\xbc\x0a\x69\x7a\xca\xc9\x7f\x5a\xf9\xa7\xf5\xb7\xa5\xda\x53\x69\x5e\x35\x36\xfd\x5b\x69\x7e\x32\xe0\x70\x86\x52\x47\xd3\x53\x69\xfe\xd3\x1a\x5f\x2d\x6a\x5e\x06\x75\x6c\xed\xad\xa2\xfa\x9b\x88\x87\xb3\xd2\x05\x5e\x6d\x89\x5f\x2d\x60\xbf\x06\x9c\xea\xb8\x3e\x3a\x67\xfd\xa4\xc6\xa6\x57\xdd\x79\xea\x68\x7a\xd5\x9d\xff\x69\xf5\xaf\x16\xfd\x2c\xbc\xee\xa2\xda\x9c\x0c\x08\x9c\x90\x4e\x1f\x4e\xc5\x0f\xb4\x28\x2c\xb5\x78\x13\x14\xb0\xa3\xc6\xa6\x77\x14\xb0\xa3\xc6\xa6\x77\x4b\x55\x2e\x4d\x5a\xaf\x02\x76\x86\x66\xbd\xbf\x28\xd6\x67\x35\x36\xbd\x7f\xd3\xf0\xeb\x9c\x52\xef\x4f\x5a\xe9\xff\x7e\x6a\x6c\x9a\xcd\xee\xa7\xc6\xa6\xd9\xd5\xfe\xf7\xd6\xd8\x34\xeb\xdc\xff\xde\x1a\x9b\x66\x4b\xfb\xa9\xb1\x69\x56\xb3\xff\xbd\x35\x36\xbd\xbf\xf5\x74\xee\xa2\x94\x2b\x8d\xbb\x28\xe5\x8a\x21\x48\xef\xef\xf8\x51\xca\x66\x4b\xfb\xa9\xb1\xe9\xfd\x2d\x44\x4e\x3f\x8d\x76\xab\xc6\xa6\xf7\x4a\xb3\xd2\xf4\x3c\xfa\xe2\x74\x4f\x6a\x73\x1a\xde\xf2\x5e\x9b\x65\xcd\xe0\xe3\xfd\x5b\xcf\x54\x2d\x8a\xeb\x31\x01\xbc\xb6\xb5\x36\xde\x19\xdb\x5a\x31\x19\x7a\xcf\x96\x56\x6a\x6c\x7a\xaf\xe2\x7a\x17\xb2\xb3\x9d\x95\x52\x7b\xde\x6b\x3b\x6b\x57\x4b\x05\x2a\xf5\x04\x55\x6f\xbd\x69\xa9\x7a\xbd\xee\xc9\x64\x0e\xbc\x09\xed\x51\x68\x5c\xa7\x8d\x08\xcc\x0e\xcf\x26\x04\x0a\x69\x7a\xd5\xe3\xa7\x90\xa6\xf7\xda\x80\xb0\xb8\x27\x1b\x10\x28\xa4\xe9\xbd\x36\x1f\x0c\x64\x7f\x89\x3c\xef\xd3\x7f\x88\x2f\xf6\xb0\xff\xbd\x85\x34\xbd\xf7\x1b\xbb\xf5\x5e\x11\x61\x46\xcb\xbd\x57\x44\x58\xe3\x3a\x2d\x48\x91\x37\xaf\x05\x29\xd1\x17\x2d\x46\x8c\x64\xcf\x62\x44\x21\x4d\xef\xb3\x0a\x70\x22\x11\x7c\xee\xd6\x98\xd0\x42\xa4\xd1\xfa\x86\x64\xf0\x84\xbc\x2b\x2d\x9f\x77\xa5\xe5\xf3\xae\xb4\x7c\xde\x95\x96\xcf\xbb\xd2\xf2\x79\x57\x5a\xbe\xec\x4a\xcb\x97\x5d\x69\xf9\xb2\x2b\x2d\x5f\x76\xa5\xe5\xcb\xae\xb4\x7c\xd9\x95\x96\x2f\xbb\xd2\xf2\x65\x57\x5a\xbe\xee\x4a\xeb\xff\x13\x76\x66\x47\x92\xf3\x38\x10\x76\x89\x22\xc1\xcb\x1c\x9e\xfe\x9b\xb0\x31\xf8\x52\x55\xdd\xf3\x47\xec\xbc\x35\x5b\x2a\x89\x10\x2f\x24\x8e\x44\x1a\x3f\x0f\xad\x34\xff\x3e\xb4\xd2\xfc\x79\x68\xa5\xf9\xf3\xd0\x4a\xf3\xef\x43\x2b\xcd\x9f\x87\x56\x9a\xdf\x43\xeb\xff\x6e\xcd\x69\xfe\x7d\x9e\xa5\xf9\xf3\x3c\x4b\xf3\xe7\x79\x96\xe6\xcf\xf3\x2c\xcd\x9f\xe7\x59\x9a\x3f\xcf\xb3\x34\xff\x3e\xcf\xd2\xfc\x79\x9e\xa5\xf9\xf3\x3c\x4b\xf3\xef\xf3\x2c\xad\x9f\xe7\x59\x5a\x3f\xcf\xb3\xb4\xfe\x3e\xcf\xd2\xfa\x79\x9e\xa5\xf5\xf3\x3c\x4b\xeb\xe7\x79\x46\x65\xfe\xcf\x02\x56\x45\x1d\x2d\x8c\xb7\x9a\x8e\x5a\x7c\xe2\xc8\xe7\x3f\xf6\xf3\x77\x27\xff\xfc\xdd\x29\x3f\x7f\x77\xea\xaf\xdf\x9d\x9f\x1b\xe2\xb9\x3f\x7f\x77\xc3\xcf\xdf\xdd\x1f\x36\xbb\x44\x35\x7c\xd9\xec\x12\xd5\xf0\x65\xb3\x4b\x6f\x35\x7c\x4d\xdb\xfb\xc3\x66\x97\x2c\xfc\xb0\xd9\x25\x0b\x3f\x6c\x76\xc9\x7c\xc3\xbf\xa3\xe8\x5a\xa7\xa5\x6b\x7f\xc6\xb2\x6e\xb4\x4e\xf3\x0d\xbf\x9f\xa5\x96\xbb\xfa\x0f\x1b\xbe\xb9\x2d\xf9\x8e\xac\xdf\x79\x0d\xdb\x81\x0c\xe6\x36\xe3\x3b\xd0\xdb\xcd\xed\xc4\x77\xb8\xf5\x33\x51\x1b\xbf\xf4\x33\x68\x79\x80\xec\xf1\x10\x81\x64\x6e\x03\xbe\x83\xcd\xc4\xfc\x10\xb9\x03\x7d\x9f\xba\xf9\x77\xb8\xdd\x3e\x51\x37\xff\x0e\xbe\x04\x75\xf3\xef\x30\xbd\xe1\x8f\x7c\xad\x70\xd0\x53\x37\xff\x0e\xc6\x9d\xba\xf9\x77\xbc\xef\x9b\x5c\x43\x3e\x3f\x44\x4a\x3a\xc8\xe0\x87\x48\xb1\xa5\x7e\xfe\x91\xaf\x36\x0f\x49\x48\xd4\xcd\xbf\x03\x85\x84\xba\xf9\xb7\xb3\xb8\xa9\x9b\x7f\x07\xdb\x07\x75\xf3\xef\x60\x9b\xa3\x6e\xfe\x1d\x86\x0c\x51\xf2\x2d\x5a\xc8\x90\x75\x27\x63\x04\x0e\xb2\x88\x0c\xa8\x35\xe6\xc7\x4d\xd9\x0d\x89\xfc\xb8\xa9\x71\xe9\xed\x2e\xc3\xa3\x2f\xe1\xc7\xcd\x6e\xf5\xec\xad\xb1\x88\x8c\x93\x23\xdb\x64\x51\x72\xf0\xdb\xa4\x71\xa2\x07\x09\x39\xc0\x81\xd4\xf1\xcf\xfb\xf0\xbd\x13\x72\x24\xbe\x46\x42\x8e\xc2\x1b\x08\x64\xc6\x1b\x91\x2c\x31\x4e\x89\x31\x4c\x92\x51\xbf\x73\x7b\xfb\x9d\xfa\x1d\x32\x9a\xfa\xf2\x47\xc6\x9e\x38\x80\x2c\x31\x4e\x1c\x6a\xe6\x36\xe3\x3e\xa3\xde\xa0\x79\xa8\xa7\x20\x1f\x3b\x93\x25\xcd\x43\xc6\xc9\x90\x0f\x55\xd1\x1c\x43\x95\xa2\x6f\x6a\x8c\x53\xe2\x29\xa6\x71\x42\x76\x93\x7c\x7a\x0a\xf3\x90\x03\xdd\x4c\xf2\xd1\x6b\x23\x50\xbb\xea\x29\x8c\x61\xd2\xfb\x90\x2f\x21\x83\xe3\xab\x32\xf5\xcd\x0c\xf9\xd2\xf8\xc7\x36\x6d\x6e\x36\x28\x93\xdd\xdf\x0c\xd1\x13\x83\xe2\xb0\xac\x44\x2d\x33\x93\xe8\xdc\x99\x99\xa2\x68\x52\xe6\xb0\xec\xf6\xcd\xc4\x73\x58\x76\x3b\x5b\x9a\x39\x2c\x2b\x7b\xf3\x59\x1c\x96\xdd\xce\xf6\x6c\x0e\xcb\x4a\x59\xba\xb3\x78\x5f\x2a\x43\x9b\x35\xb4\x6a\x35\x1f\x3e\xd3\x53\xdc\x7d\x72\xb4\x94\x32\x43\x1b\xf8\x9c\x1e\x99\x52\x7a\x43\x86\x4c\xd5\x90\xa9\x6b\xbe\x04\x93\x16\x88\x9b\x45\x1a\x55\x35\x92\x79\x94\x4a\x0f\x5a\x04\x1e\xa1\xd2\xdf\x0d\xce\xcd\x1b\x59\xa6\x01\x73\xf3\x46\xdd\x87\x2f\xe1\xe6\x8d\x1e\x34\x5d\x0a\x55\x35\x86\xee\x74\x77\x52\x47\xc7\x33\x37\x6f\xb4\xa6\x6d\xc4\xcd\x1b\xf9\x00\xf8\xcd\xcd\x1b\x65\x4d\x3d\xf3\x8f\x7c\x3d\xbe\x77\xfa\x16\x7a\x17\x13\xc4\xa3\x54\x5a\xe4\xb8\x33\x8f\x44\xe9\x65\xe9\xed\xb8\x7b\x30\x99\x98\x43\xd9\xa2\x43\xd5\x1c\xca\x7e\xbe\x8b\x43\xd9\x32\xd1\x7d\xad\x42\xf5\xa8\x2d\xdb\x61\x6c\x5b\xda\x96\x1d\xc6\xe6\xbd\x90\xc1\x21\x6c\x6f\x0f\x7d\x71\x08\x9b\x8f\x26\xab\x43\xd8\x76\xde\x3b\xff\xc8\x57\x87\x16\x9c\xc3\xd7\x5c\xb5\xf5\x3a\x7c\xcd\xa1\xeb\x29\x2e\xdf\xa8\x8c\x91\xc3\xd7\x1c\x34\x91\x1d\xbe\xe6\x73\x19\x69\x87\xae\x3d\x6a\xf1\xbb\xa6\x58\x46\xd3\x1b\xa8\x8a\x02\xb2\xb0\xa6\xaa\x28\xf4\xa5\xb1\x34\xaf\xae\xf9\x11\xd1\x22\x6f\x77\x4d\xb1\xb6\xf7\x4e\xf3\xb1\xcd\x3c\xd3\x35\xc5\x16\x38\x3a\xad\x41\xca\x73\x75\x67\xf5\x2f\xaf\x6d\xd9\x21\x6b\x89\x97\x9e\x39\x2e\xad\x17\x3d\xce\x1a\xa4\x3c\x95\xb1\x6d\x14\x5d\xba\x7c\x6b\xc7\xa5\xb9\x63\xf2\x32\xd7\x30\xdb\xd4\xaa\x6a\xb8\xe8\x86\x9e\x42\x25\x25\x94\x22\x73\x0d\xb3\xdd\xc8\x33\x3b\x99\xd5\xa8\x29\xe6\x1a\x66\xad\x68\xb4\xe6\x1a\x66\x8b\x8f\x5a\x9e\x59\xdd\x8b\x7e\x07\x55\x67\xd5\x33\x5d\xbe\xf1\xe8\x9a\xaa\xf6\x30\x7b\x28\x30\x55\xf5\x05\x1d\xcf\x96\x1e\xe8\xa7\xe3\xd9\x16\xb4\x6e\x1d\xcf\xb6\xae\x5e\x3b\x9e\xed\x41\xc7\x6a\x67\xfd\x15\xbd\xcf\xc7\xcf\xde\x6b\xd7\xfb\xa9\xcd\xcd\xbd\x09\x75\x6b\x5f\x72\x6f\x42\x0b\x3a\xf4\xa8\x0e\x15\xde\x6b\x2e\xdf\xc0\x14\x68\x54\x87\x7a\x67\x0f\xd5\xa1\x1e\x63\x8d\x51\x1d\xaa\x26\x7a\xe6\xde\x84\x16\x34\xeb\xdc\x9b\xd0\xf6\x65\xa4\x07\xfb\xcb\x40\x3e\xe7\xdb\xcd\x47\x63\x3b\x58\x7f\x9a\xc9\x1e\x83\x53\x9a\x8e\x55\x0f\xb0\xe9\xef\x7c\x71\xad\xbc\x6c\xed\x9f\xae\x95\x97\x3f\xea\xff\x3f\xb6\xe4\xa9\xa1\xe5\x43\xb8\xb2\x5e\x5f\x1d\xc2\x95\xf5\xde\xa4\x93\xb9\xb2\x5e\xc2\x54\xcb\x28\x7b\xa4\xdf\xf9\xd0\xe6\xce\xd2\x74\x6d\xbc\x6e\xac\xae\xe6\x9a\x78\x1b\x53\x77\x36\x96\x3b\x02\xb9\x26\x5e\xa3\x36\x6f\xd7\xc4\xdb\x9f\x15\xea\x2d\x9f\xba\x31\xe8\x9a\x4f\xdd\xa2\x0f\x48\x41\xad\x47\xcb\xcf\xb5\xf0\xba\xb4\x99\xba\x16\x5e\x37\x1a\xbc\xb9\x06\xde\xcb\xa5\x67\xae\x81\xb7\x2c\x3d\xcf\x35\x70\xbb\xda\x06\x5d\xfb\x2e\x49\x7a\xa5\x6b\xdf\xf5\x3d\x2c\x5c\xfb\x2e\x2d\xeb\x77\x3e\x75\x1f\x4d\xd6\xc5\xd0\x4a\x06\x27\xb4\xa8\x57\xcb\xd6\x5d\x20\xd9\x82\xde\xe0\x47\x47\xc1\xb2\x6a\x0b\xed\xb4\xeb\xda\xa2\xa5\xb7\x6f\xa6\xa0\xae\x1d\x26\x0f\x43\xeb\x2e\x90\x72\xd4\x72\x24\x90\x65\x01\x36\x15\xd4\xea\xbc\x61\x53\x90\x49\x47\x8e\x23\x81\xdd\x2c\xee\x1d\xf4\x5b\x15\x65\xe2\xdb\x6c\xaa\x35\x6c\xbe\xa2\x5b\xb2\x73\xd6\xd1\xe2\x96\xec\x5c\x74\x28\x50\x54\xab\x6a\x41\xba\x25\x3b\x37\x6d\xe0\x14\xd5\xea\x3a\x80\xdd\x92\x9d\x87\xbe\x0d\x45\xb5\xc6\xd4\xdb\xfd\xf8\xd8\xd2\xf5\xdc\x92\x9d\x37\xb6\x6b\x73\x4b\x76\xde\xda\xa8\xdc\x92\x9d\x37\x58\xce\xdc\x0f\x92\xaf\xf4\x27\xf7\x83\xe4\xdb\x19\x8b\xc3\x1c\xdd\x6a\xf9\x1c\x7d\x34\xda\x8e\x76\xca\x73\x79\x9f\xa3\x9d\x12\x75\x5c\x39\xda\x29\x51\x8b\xdc\x63\xc8\x4b\xd6\xc6\xe8\x31\xe4\xe5\x1d\x43\x8f\xff\x29\xa6\x0d\xf5\x10\x4c\xac\x79\xe1\x36\xf6\x52\xa4\x1f\xba\xdf\xa5\x54\x7d\x41\x47\x50\xa5\x62\xf3\xb6\xc3\xf1\x08\x80\x37\x47\x50\xa5\xeb\x60\xa3\x62\x48\xd7\x0a\x51\xc5\x10\xe9\x80\x54\x0c\x19\x5a\x67\x17\x26\x64\xcd\xc3\x8b\x75\x1c\x3c\x65\x1e\x97\x5e\x4e\x54\xcb\xe5\xbb\x3a\x48\x3d\x2e\xbd\x1c\x7d\x09\x27\x09\x29\x57\x1b\x87\x93\x84\xd4\xe7\x22\x83\x47\x0d\xd5\x84\xdd\xde\xdc\xd0\x57\x4d\x0a\x9b\x1b\xfa\xaa\x49\x5a\x37\xf4\x55\x3b\xea\x99\xaf\xc1\x8c\x2a\x92\xdd\xd0\x57\x8b\x47\xcc\xa7\xec\x86\xbe\xda\x31\x42\x64\x37\xf4\xd5\xc6\x61\x92\x61\x7a\xee\x53\xd7\x7c\x0d\x52\x2d\x25\x65\x8f\x2c\xaa\xda\x7a\xb3\x23\xc4\xba\xae\x9e\xe9\xc7\xff\xae\x89\x96\xaf\xc1\xed\x0c\x76\x29\xc3\xf4\x7c\x92\x7e\x87\x7a\x83\xa2\x90\x1d\x21\xd6\x7b\x1e\x5a\xcb\xd7\x59\xd6\xdb\x59\x83\xc8\x97\x83\xd6\xa0\xde\x70\x69\xb9\xb4\xd9\x11\x62\xa3\xfe\x67\xca\x8e\x10\x9b\x4c\x58\xd9\x11\x62\x7b\x1a\xcf\x74\x84\xd8\x9e\xf9\x8f\x54\xb5\x94\x1d\x3c\x36\xd9\x58\xb2\x83\xc7\xa6\x53\x3c\x43\xd7\x97\xd1\x01\xb3\x83\xc7\x96\xb7\x5a\xbe\xbd\xe2\x03\x4d\xd9\xc1\x63\x6b\x49\x1d\xf3\xed\xb5\x75\x44\x77\xf0\xd8\x1a\x4b\x25\x3b\x78\x6c\x8d\x13\x37\x3b\x78\x6c\x1d\x6b\x53\x76\xf0\xd8\x7a\x52\xcb\x45\xef\x68\x1b\xd9\xc1\x63\xd3\x09\x9f\x1d\x3c\xb6\xc1\xc2\xc9\x0e\x1e\xdb\xc6\x62\x96\x1d\x3c\xb6\x1d\x74\xa7\x6b\x76\x97\xc5\x9f\xdd\x8e\xd9\x0e\x1a\x5a\x8e\x68\x76\x43\xad\x8a\xc6\x8b\xec\x0e\x2c\x7b\x08\xfa\x9d\x6b\xae\x0f\x0b\x27\x3b\xb0\xec\x0f\xe0\x30\x3b\xb0\xec\x4f\x46\x3e\x07\x96\xfd\x29\xea\x8b\x9f\x9c\x8f\x06\xd3\x41\x65\x7f\x34\x3d\x1d\x54\xf6\x67\xd0\x4a\xc4\xf9\x63\x7d\xcd\x89\x40\x1d\xb4\x8d\xec\xa0\xb2\x4b\xdb\xcf\xca\x8e\xd5\xd4\x75\x50\xd9\x0d\x2d\x25\x27\xb6\x56\x36\xa9\xec\xa0\xb2\x57\xb6\xa5\xec\xa0\xb2\x57\x8c\x06\xd9\x41\x65\xaf\x15\xd9\x1d\x54\xf6\xa6\x65\x04\xa8\x6c\xea\xb5\x83\xca\xde\x96\x5a\x2e\x9f\x4c\x16\xd9\x41\x65\x9f\xa6\x37\xb8\x7c\x53\x5f\xc2\x41\x65\x9f\x1c\x6c\x99\x3c\x86\xa9\x05\x40\x20\xd2\xbc\x6a\xb9\x7c\x1b\xb8\x9f\x1d\x54\x76\xe9\x48\xd9\x18\xbf\xa0\x6b\xbe\xf5\x44\xf5\xda\x41\x65\x29\x1c\x65\xd9\x41\x65\x79\x34\xee\x0e\x2a\x5b\xc3\x64\x91\x1d\x54\xbe\x68\x26\x3b\xa8\xec\x81\xe3\x3f\x3b\xa8\xac\xed\xe8\x77\x3e\x3f\x57\x57\xcb\xed\x91\x67\xeb\x0d\xee\x42\x97\x49\x2e\x3b\x72\xcc\x07\xcc\x97\x1d\x39\x56\x03\x2b\x66\x47\x8e\x5d\x6e\xd6\xec\xc8\xf1\xc5\x4b\xd9\x91\x63\x6b\xe8\xe2\xd9\x91\x63\x8f\x60\x9b\xec\xc8\xb1\xe7\x89\x7c\x8e\x1c\x5f\x2c\x95\x1d\x39\x96\xa4\x95\xe3\xc8\xd1\x4d\x16\xd2\xdc\xb3\xa3\xc7\xfa\x00\xdb\x33\xe8\x31\x68\xb4\x1d\x3d\xbe\xc8\x2b\x3b\x7a\x2c\x79\xea\x77\x7e\x3c\xde\xa6\x3b\xcf\x0f\x54\x96\x33\xda\x39\x76\xea\x0c\x7a\xac\x68\x93\x19\xf4\x98\x1e\x7a\xe7\xe8\xb1\x45\xf5\xdc\xd1\x63\x4b\x5b\x77\x1a\xaa\x98\x9e\x42\x30\xa2\x56\xa4\xa3\x47\x4c\x2f\xda\x70\x4b\xfd\x81\xfd\xb2\x23\xc8\xde\x1f\x3d\x09\x0d\x16\x87\x7c\x06\x41\xbe\x9b\xa3\x23\xc8\x17\x25\xe6\xb2\x7e\xa0\xc4\x5c\xf6\xaf\xd6\xf9\xd5\xba\x9f\x2f\x89\xb1\x2d\x83\x22\x85\x29\x33\x28\xb2\xa2\xdd\x67\xe2\xc0\x8e\x66\xb5\xa3\xc8\x5e\x08\x2c\xc8\x8e\x22\x79\x52\xd4\x6f\x7d\xbf\xb9\xa6\xeb\xbe\x1e\x13\x5e\xb0\xec\x48\xb2\xc5\xf5\xcf\x2d\x1a\x90\x39\xb7\x1e\xe9\xc3\xfc\x47\x9d\xf6\x96\xec\x90\x0c\x7a\xe5\x94\xd1\x36\x5c\x01\x29\x4d\x2f\xf7\xa5\x9a\xbb\x9e\xe2\x4b\xb5\x6a\x80\x2a\x20\x05\x97\x58\x06\x64\x26\x2d\x32\xea\xf3\x5a\xe0\x77\xd4\xe7\xfd\xb4\xd2\xaf\x96\x6b\x79\xd2\x17\x73\x43\x53\xc7\x42\x9a\x1d\x64\x16\x12\x97\x52\x76\x90\x59\x64\xdf\xca\x0d\x90\xa2\x2d\xac\xb1\x15\x1d\x3d\x73\xbc\xba\xe4\x9d\xba\x3e\xd1\x17\x99\x02\x0e\x34\x5b\xc1\x32\x97\x9b\x80\x0a\xf2\x37\x2a\xfa\x62\x4e\xc9\x00\x4d\xc3\x2e\x9a\x1d\x68\x96\x10\x99\x64\x0e\x34\xeb\xd6\x61\xd6\x65\xc3\xd3\x9d\xae\x09\x45\x7d\x7d\x07\x9a\xed\x3d\xf1\x1d\x68\xee\x56\xea\xde\x5a\xea\xbd\xfc\xe7\x3f\xf5\x33\x29\xb0\x69\x65\x40\xe7\x4d\x7a\x9b\x6b\x45\x41\x12\x38\xe8\x2c\x5d\xcb\xcf\x41\xe7\x6e\xb6\xf7\x79\xef\x5e\xff\xf9\x0f\x32\x03\xe3\x72\x67\x5c\xd1\xaa\xb2\x83\xcf\xde\x31\x36\x65\x07\x9f\xa5\x34\x9e\x4d\x28\xdb\x41\x6b\xcc\x0e\x3e\xdb\xdd\xba\xe6\x25\x55\xaf\xb6\x67\x07\x9f\xb5\x6a\x8e\x09\x7c\x6a\xb4\x1c\x7c\xb6\xa2\xcd\x6c\x60\x1c\xd1\xc6\x3a\x38\x42\x4d\x77\xba\x9c\x03\x8c\x90\x01\x9f\x59\xba\x8b\x83\xcf\xdb\x83\xde\xe0\x4b\x97\x4c\xc7\x94\x87\x96\xae\x9e\xe2\x2a\xc2\x5d\x7a\xdf\xfd\x61\x70\xc9\x8e\x30\xcb\xc5\xda\x9c\x41\x98\x32\xbf\xe4\xf9\xa3\xce\x47\xca\x84\xc7\xc9\x55\x94\x27\x25\x8d\xab\x5a\x2e\x5f\xd4\x3c\x99\x9f\xed\x69\x0d\x5d\xf7\xb9\x5b\x81\xc6\x19\x94\x29\xe7\x60\x76\x94\xd9\xa6\xf4\xc8\xa9\x2d\x58\x77\xce\x77\x26\x9f\xa2\x3e\xf9\xdc\x1d\x41\xbd\xa7\x74\xb3\xd6\xae\x23\xcd\x5e\x16\x52\x3b\xd2\xec\x4d\xdf\xc0\x91\x66\x36\xcd\x26\x47\x9a\x79\x80\x42\xb3\x23\xcd\x36\xc0\xab\x79\x61\xe4\x42\xab\xce\x0b\x94\x82\x99\x30\x83\x34\x63\xd3\x35\x5f\x9f\x69\xe8\x0d\x95\x59\xa8\x67\x7e\x8e\x9a\x1d\xf4\xce\x8e\xce\xcf\x2c\x5b\x18\x4a\x1e\x3d\x69\xa2\x95\xaa\x07\x2e\x63\x92\x52\xb5\x64\x08\xd2\x73\xcf\x0f\xc3\x53\x5e\x5a\x9f\x3c\x73\xa3\x0e\x69\x96\x6d\x34\x5d\x6d\xf4\x8e\x36\x6b\x06\x63\x64\x47\x9b\xed\x6a\x2c\x37\xe5\x8d\xb5\xe6\x41\x9a\x24\xf7\xa5\x0c\xd2\x3c\x92\x11\xa4\x79\xf1\x77\x64\x47\x9a\x25\x49\x15\x74\xa4\x59\xa6\x14\x35\x47\x9a\x2d\xe9\x68\x07\x69\xba\x32\xf6\xff\xb7\x6d\x40\xa8\x4d\x3d\xc4\x4f\xd9\x68\xea\x98\x9f\xb2\x59\xa7\x84\x83\x50\x9b\x9a\x72\x80\xd0\xae\x25\x0c\x08\xfd\xb4\xd8\x9a\xde\x16\x36\x22\x02\x9a\xb2\x83\xd0\x6f\xcb\x4f\x9e\xa5\x09\x74\xca\xaf\x56\xa5\x1c\x24\xc2\x02\x42\x3f\xad\xfe\x1d\x6c\x86\xc9\x81\x68\x4d\xd2\x37\xcf\x67\x1a\x5f\xe9\x48\x80\xd1\xa4\xd3\x14\x30\x9a\x3b\x1f\xeb\xfc\xb4\xf5\xe5\xf3\x3d\x69\xf1\xbb\x66\x07\xa4\x35\x0a\x32\x39\x20\xe5\xdd\xea\xcd\x45\xf3\xd5\x94\x75\x50\x9a\x6f\xd2\x35\x86\x5a\x68\xe1\xe2\x4e\x91\xa6\x06\x28\x4d\x4d\x6f\xf9\xb1\x05\xd3\xe7\x0b\x70\xc3\x46\x97\x2f\x76\x4d\x6d\xf1\x17\xf4\x82\x75\x2d\x3b\x30\xed\xe1\x7d\xa7\x57\xb3\xbe\xa6\xa7\x6c\x34\x39\x16\xc5\x65\x6b\xc2\x00\x94\x2f\x86\x05\xf4\xdd\x12\xb0\xbb\xb3\xa5\x95\xf0\xfc\x6a\x45\x0c\x5c\x81\x56\xc2\xa6\xdb\x68\xf9\xd6\xd4\xd1\xc4\x4b\xc8\x5f\xc2\xf4\x54\x02\x86\x13\xfa\x59\x28\x41\x34\xa7\x9e\xf9\xd5\x0e\xdf\xdf\xfa\xb4\x5d\x6c\x4d\x05\x17\xe5\x6e\x7a\x8b\x03\x6c\x19\x9d\x8a\x00\x68\xd7\x73\x19\x33\x0b\x7b\x31\x1f\x0a\xe9\x2c\x13\xed\xa8\x3c\x9f\x31\x5b\x59\xff\x71\x79\x02\xfa\x5b\x71\x20\xfa\x5a\x58\x0b\xe4\xf0\x0d\x83\x40\x71\xb4\xf9\xda\x5b\xcb\x83\x9f\x44\xef\x25\xde\xe5\x48\x56\x47\x9b\xbd\x01\xfa\x0b\xf1\x2e\x67\xeb\x29\x1e\x2a\x58\x9b\xee\x9c\x98\xda\xf4\x76\x8f\x77\x91\xb1\xab\xe0\xaa\xdc\x68\xb3\xc5\xd1\xa6\x9c\x7e\xba\x8e\xaf\x04\xb3\x43\x71\xc4\x69\x07\x5f\x42\x89\xcf\xfb\x1d\xf6\xd0\xf5\x88\xd9\x90\xef\xeb\xa8\x33\xbf\xdf\x28\xb2\x16\x71\xb7\x17\x50\xe7\xa7\x55\x38\xc2\xe8\xa1\xa3\xce\xd6\xd8\xda\x8a\x50\xa7\xe9\x0d\x1e\x12\x99\x51\x9a\x8a\xa3\xce\x1c\x8f\xae\xcd\xcf\x77\x9f\xfa\x8f\x1b\x4d\xe4\xf7\x29\x51\x46\x05\xbe\x66\x04\x59\x37\xbd\xe5\x72\x48\xd0\x72\xe4\xd9\x06\x9b\x7d\x01\x79\x56\x62\xa5\x0a\xc8\xf3\xd3\x72\xa3\xc9\x00\x67\x97\x84\xe5\x00\x65\xab\x08\x79\xea\x6b\xc1\xcb\xb4\xc0\x85\xc5\x91\x67\x9d\x4b\xef\x6b\xbc\x9d\xaf\x01\xf2\x2c\x47\x2d\xd4\xd9\xac\x37\x4c\x56\x06\xa3\x43\x06\xbd\x0c\x70\x85\x0c\xfa\xcb\x86\x5d\x1c\x79\xbe\x56\xf6\x02\xf2\x0c\x1a\x67\xd3\xda\xe3\x29\x64\xd0\x7b\x15\xfd\xff\xbb\x7d\x17\x92\xeb\x05\x12\x8a\x61\xb3\x25\x48\xad\x38\x28\x2d\x64\x16\xa5\xe2\xa0\xb4\x16\x82\x6b\x8a\x83\xd2\xb6\x35\xa0\x86\x51\x81\x33\xbe\x18\xc3\x5b\xf8\x2c\x02\xa5\x51\x77\x0e\x80\x05\x1f\xc2\xd8\x76\x34\xf4\x02\xa5\xef\xb5\xcd\x54\x53\xeb\xfc\x6a\xf9\xb6\xd3\x09\x98\x2b\x0e\x4a\x77\xb3\xbb\x97\x96\x9c\x80\x29\x61\x3a\x05\x60\x1a\xa2\xae\x01\x66\xb0\x20\x15\x80\xe9\xd4\x74\x72\x60\x9a\x3b\x71\x12\x85\x64\x7b\x7b\x5b\x3e\xbc\xe1\x6d\x21\xa3\x86\xc2\x41\x69\x53\x38\x51\x71\x50\x6a\xe7\xbd\xe6\xc3\x3b\x4d\x6f\x5f\x9f\xe5\xf8\xa8\x07\xfb\x87\x0b\xa4\x38\x30\x2d\x45\xdb\x03\xc0\x34\x44\xb6\x15\x07\xa6\xf5\x02\xd1\x8a\x03\xd3\x3a\xb1\xe9\x96\x02\x60\x1b\xba\x26\x92\x04\xc6\xc3\x81\x69\x0f\x0f\x5f\xa3\xe0\x36\xba\xba\x56\x7e\xc4\x00\x17\x40\xa9\x1c\xbc\xa5\x7c\xb7\xd7\x4e\x5f\x01\xa6\xef\xb6\xe3\xc0\xb4\x3c\x98\xd1\x8a\x03\xd3\x52\x31\x56\x95\xf2\x95\x13\x53\x45\x29\xfb\x5b\xe3\x39\x15\x07\xa7\x55\x4e\xbd\x82\x7b\xb3\xa2\x5b\x15\x80\xe9\xa7\xf5\x50\x2d\x99\xc5\x89\x7b\xf3\x12\x34\x5a\x00\xa6\x0a\x17\x2c\x15\x0a\xb5\xa2\x16\xc4\xc3\x20\xb3\xe2\xa0\x34\x1b\xc6\x97\x52\x71\xdf\xaa\xaf\x8e\x3c\xeb\xd0\xa6\x06\xf2\x2c\xe0\xc9\x52\xa5\xdd\xf2\x95\x1d\x79\xb6\x7b\xf4\x3b\x8e\x97\xab\xdf\x51\x0d\x5a\xe3\x0c\xf2\x0c\x8f\x9e\xe2\xf6\xdb\x06\x96\x29\x20\xcf\xca\xe1\x5f\x9a\xb6\x5c\xdb\x07\x13\x56\x71\xf4\xc9\x77\x97\x64\x8e\x40\x73\xd6\x08\x36\x22\x10\xb4\x25\xe3\xe6\xcc\x87\x37\xe1\xe6\x9c\x41\xad\xfa\xc3\xa5\x55\x9a\x8c\x7d\x8c\x00\x08\x54\xb1\x0a\xc5\x11\x68\x5e\x18\x02\x4b\x63\x5d\x66\xfd\x0e\x15\xef\xd1\x35\x8f\x98\x9f\x3a\x54\x41\x9f\xc2\x2d\xa5\x61\xc7\xc5\x73\x54\x3a\x47\x8b\x8e\xe6\x8e\x9f\x01\x13\x6c\xe9\x68\xf0\x3a\xce\x1c\x7d\xde\x0e\x52\x2e\x1d\x37\xae\x0e\x4c\x47\x9f\xad\xe3\xc9\x28\x8e\x3c\x5f\xb7\x5c\xe9\xf8\x8a\x50\xda\x0a\x88\x33\x65\xb5\x7c\x4d\x66\x8d\x23\x6e\xce\x7b\x18\x2b\x47\x9c\x95\x2a\xe2\xa9\x74\xec\xd4\xef\x1b\x36\xab\x57\xad\x03\xda\x62\xac\x40\x9a\x0f\xe6\x9f\xe2\x48\xd3\x2e\xd1\x43\x65\xb0\xe5\x6a\xad\xe2\xe6\x54\xc8\x43\x71\xa4\x99\x8f\x0e\x11\x90\x66\xce\xba\x93\x30\x8a\xf2\x8f\x8c\xc3\x54\x00\xa1\x19\x48\x56\x06\x43\x8b\x5f\xba\x0c\xc0\xb6\x96\xbf\x83\xd0\x7e\xd1\x19\x0b\x20\x34\x69\x3b\x72\x10\x1a\x8f\xce\x25\x07\xa1\xf9\x62\xc7\x2d\x0e\x42\x73\x3f\x2c\xb5\xf1\xd1\x1c\x16\xb1\x05\x65\x70\xa2\xea\xdc\x72\x20\x9a\x4f\xe7\xb9\x00\xd1\xac\xf3\xde\x81\x68\x1e\x05\x81\x71\x75\x66\x9d\x4d\xb8\x3a\xb7\xb6\xb1\x99\xbf\xc5\x72\x52\x99\xe5\x57\x0b\x10\xaa\x89\x00\x08\xed\x4d\xcf\x74\x7e\xf0\x23\x4d\x6f\xe2\xe5\x05\x84\x16\x5c\x9d\xef\xc4\xc3\xd5\xa9\x84\x96\xe2\x00\xb4\x09\x56\x15\x07\xa0\x19\xca\xa4\x54\xe4\xea\xd4\x66\xb8\x70\xe5\xe2\x4a\x29\x4b\xb6\x4e\xfa\xe2\x00\xb4\x4a\xcf\x2e\x00\x50\xc5\xb2\x16\x07\xa0\x79\xe3\x02\x2e\x02\xa0\x9a\x32\x00\xd0\xaa\xad\xc6\x01\x68\x6d\xd2\xc4\x70\x75\x1e\x1d\x22\x0e\x3e\x5b\x90\xf6\x07\xf8\x34\x6c\xab\x05\x57\xa7\x22\xc4\x0b\xae\xce\x4f\x6b\xa3\x7b\xaa\x9f\xbe\x0d\xed\xa2\xdf\x29\xca\x82\xbe\xe0\xea\x7c\x37\x9d\x8d\x01\x48\x12\x6d\x38\xdc\xb5\x40\x76\xfe\xd5\x2a\x38\x45\xe9\xb5\x03\xcc\x62\xda\x20\xb7\xdc\xb5\xba\xd3\x8f\x8b\x47\xe8\xc0\x01\x66\x6d\xfa\xba\x0e\x30\xfb\xd4\x22\xd8\xb8\x6b\xa5\x57\x39\x8a\x2c\x7d\xeb\x99\xe7\x87\xb3\xb8\x90\x94\x63\x52\x58\x1c\x45\xf6\x8b\xcf\xa0\x38\x8a\xac\x47\x8a\x87\xa3\xc8\x7e\x74\xe0\x80\x22\xe5\x64\x2e\xb8\x32\x8b\xb6\xbb\x83\x6a\xb3\x75\x27\x9a\xab\xd4\x1e\x47\x91\xb9\x6b\x1b\x71\x14\x99\x15\xb7\x5f\x0e\x47\x85\x0e\xc0\x23\x03\x81\x7e\x87\x56\xa7\x35\xe8\xe8\xb1\x0a\x6b\x96\x83\x91\x52\x7a\xaa\xa3\xc7\xba\xb5\x65\x3b\x7a\x6c\x47\x1b\x23\xae\xcc\x86\xa9\xa9\xe0\xca\xfc\xb4\x88\x84\x91\xd2\x85\x2b\xf3\xc1\xb8\x54\xee\xc7\x46\xbb\xd5\xd7\x9b\xbf\xff\x41\x4e\x47\x8f\x39\x82\x96\xcb\xd5\x5a\xd3\xef\x7d\x1c\x15\xd8\x5a\x2e\x5a\x78\xce\xfb\x68\xbf\xb9\x8a\x0c\x51\x4f\x7c\xbc\x0a\xa6\x83\x72\xe5\x3f\xd0\x73\xf1\x6f\x61\x8e\xab\x20\xc4\xce\x5a\xac\xb8\x2e\x2f\x31\x47\x15\xd7\xa5\x5c\xfd\xd5\x11\x62\x3b\x64\x09\xd4\x40\xe4\x19\x8a\x62\xc5\x75\x99\xd8\xb0\x2b\x45\x6a\x2f\x5f\xac\x3a\x42\xfc\xb6\x3c\xe8\xae\xa3\xd0\x56\x77\x5d\x96\xf6\xf6\x05\xd7\x2c\xdf\xa7\x12\xdc\xaa\x60\x82\xea\xc8\xb1\xaf\xac\x37\xec\x4f\x68\xc1\xff\xdd\xa2\x6b\x20\x72\xc2\xf9\x15\x52\x25\xee\xb5\x03\xa4\x2a\x95\xc6\x48\x5d\x4d\xf5\x21\xe8\x0e\xbd\xaa\x02\x26\x2b\x53\xa7\xe2\xd5\x0c\x41\xbf\x63\x28\x73\xdf\x67\xea\xb7\x99\x10\x1a\xfd\x96\xe5\xf8\xa8\xe5\xd3\x55\x76\xa9\x2a\x0e\x03\x74\xcb\x2a\x40\xa9\xcf\x06\x57\x41\xd4\x87\x82\x9f\x20\x6e\x5d\x5b\x1f\x38\xdc\xf4\xdc\xfd\x35\x6a\x30\x40\x50\x8b\x65\x4e\xe2\xfa\xe0\x42\x61\x6a\x55\x4a\x47\x14\x0d\xa5\x83\xca\x9c\xb1\xe4\x55\x00\xa5\xf4\x95\x0a\xa0\x34\x8e\x94\xea\x80\x32\x17\x20\x54\x8d\x68\xe3\x1c\x5c\x95\xd2\x11\xe3\xd1\x33\x5d\xce\xb1\xf8\x46\x11\xdf\x01\x1e\xe3\x1a\xfb\xf7\xe0\x42\x3a\x40\xe5\x7a\xf4\x4e\xcf\xb3\xab\x47\xbf\xf5\xe3\x61\x1d\xfd\xd6\x8f\xc0\xa3\xef\xe7\x80\xd2\x0e\x5a\x63\x8d\xb8\xc2\xd0\x28\x6b\xc2\xb6\x0e\xe8\xae\xe9\x6b\x20\xd0\x94\x85\xec\x37\x6a\x72\x3b\xa8\x2c\xa6\xde\x27\x90\xd5\xd2\x9d\xbe\xbd\x1a\xc6\xa2\x9a\xb0\xc5\xe6\xb1\x37\x47\x6b\x4d\xb8\xc4\xd8\x7e\xab\x03\xcb\x37\x2a\xa2\x3a\xb0\xfc\xb6\x06\xba\x84\x7a\x38\x19\x05\xbe\x6d\xfa\x68\xe4\x6b\xeb\x49\xbe\x6c\x5b\xe7\x1b\x41\xcf\xd6\x34\x1f\xa0\x67\xeb\x38\xe5\xaa\xc9\x55\xa4\x96\x8f\xe7\x64\x23\xaf\x20\xc8\x4f\xcb\xe5\xec\x6c\xe4\x15\x04\x39\xf5\x0d\x70\x6b\x2a\x6a\xa2\xe2\xd6\x3c\x9a\xf3\xb8\x35\x05\x7b\xab\x11\x50\x89\x92\x52\x1d\x41\x7e\x5b\xb8\xc3\xf4\x35\x70\x6b\x3e\x28\x28\xd5\x11\x64\xd5\xa6\x5b\x0d\x4d\x4e\xf3\xd5\x11\x64\x4d\x1a\x01\x47\x90\x55\xf1\xdc\x55\x6e\x4d\x9c\xa3\x35\xa3\xca\x60\xb8\xaa\x19\x3b\x2c\x4a\x51\x75\xf4\x58\x0b\x5a\x7e\x85\xaa\xed\x72\xb8\x57\x47\x8f\x55\xf8\xa3\x66\x02\xd6\xb0\x99\x57\xd0\x63\xc7\xfc\x55\x1d\x3d\xd6\x8e\x7e\x5d\x71\x69\x7e\x5a\x03\x57\x3e\x32\x38\x7a\xac\x7d\xe8\x7d\xf2\x75\xe9\xce\x0d\xca\x53\x8b\xbd\x47\x73\xdc\x91\xe3\xa7\xe5\xc8\xd1\x62\x51\xcb\xe5\x5b\xf8\x62\x2a\x01\xb1\x0b\x77\x76\x05\x39\x6e\xcc\x6d\xb5\x7c\x8f\x11\x54\x88\xea\xe8\xb1\x1e\x4c\xba\xd5\xd1\xe3\xb7\xe5\x32\xbe\xab\xa5\xb4\x1f\x71\x22\xb5\x10\x35\x82\xf2\x5a\x71\x69\x9e\xa6\x67\x62\xe4\x40\xc7\xae\x05\xb5\x33\xb7\x7d\xb0\x2e\xd4\xca\x31\x81\x67\xa6\x82\x00\x95\x42\x55\x1d\x01\x9a\xe9\x1b\x38\x02\x6c\x51\xb2\xe0\x96\x8c\xf5\x5f\x9a\x75\x75\x00\xd8\xa2\x16\x36\xf1\xad\x4f\xd5\xeb\x30\x8b\x03\x2a\x2a\x00\xd0\xa2\x3a\x86\xd9\x1f\x4f\x79\x75\x00\xd8\x0c\x48\x5b\x1d\x00\x5a\xc6\xf5\x56\x71\x3d\x66\x6d\xbd\x0e\x00\x5b\xd6\x9d\xed\x63\x73\x5b\xda\xe0\x1d\x00\xb6\x9a\x74\x77\xa2\xc5\x84\x70\xf0\xd7\x1a\xba\x66\x05\xfc\x55\xf5\x00\xf0\x57\xaa\x5a\xf5\x47\xb4\x4a\x75\xf0\xe7\x11\xff\xde\x22\x92\x45\x1b\x90\x83\xbf\xd6\xdf\xa7\xb8\x8c\x72\x61\x55\x5c\x8f\x53\xdb\xbc\x62\x5c\xf5\x35\x1c\xfc\x35\x85\x09\x55\xc0\xdf\xbb\x69\x01\xfe\xaa\xb6\x55\x07\x7f\x4d\x89\x1d\x15\xf0\x77\xd0\x1e\x2a\x31\xae\x57\x8b\xaf\x63\xac\xd0\x97\x02\xfc\xdd\xab\x3b\x0b\xa0\x9a\xbe\x74\x10\x90\x26\x58\x07\xdc\x6a\x52\x03\xfe\xee\x62\x22\x74\x40\xbc\xce\xfd\x8e\xf6\xac\x83\x4d\x31\xae\x6f\x6b\xff\x6a\x9d\x5f\xad\xfb\xb3\x35\xc2\xaf\x16\xe8\x00\xe0\x5b\x47\xfc\xd5\x4a\xbf\x5a\xf6\xab\x95\x7f\xb5\xca\xaf\x56\xfd\xd5\x6a\xbf\x5a\xfd\x57\x6b\xfc\x6a\xcd\x5f\xad\xf5\xab\xc5\x31\x5e\xe2\x56\x68\x60\x75\x94\xd7\x13\x16\xe8\xea\x08\xaf\x2b\x66\xa2\x4e\x0c\x6b\x25\xed\x77\x9b\x76\x94\xd7\x0b\xb6\xd8\x3a\x7f\xda\x4d\xab\xa3\xbc\xde\x74\x5c\x4f\x6c\xe0\x00\xee\x3a\x15\x4b\xcf\x4c\x71\x94\xd7\xe5\x08\xad\x13\xa3\x13\xb1\x36\x75\xb6\x5f\xad\x4e\x4b\x4f\x71\x39\x07\x3a\x7c\x75\x94\xd7\xe5\x5e\xaf\x93\x88\x9d\xa2\xdf\xf9\x38\x0e\xcd\x29\xdc\x8c\xf3\xd1\xef\x88\xd8\x91\xaa\x42\x40\xeb\x56\x5f\x40\x79\x5b\x6f\x58\x20\x08\xcc\x8c\xd5\x51\x5e\x57\x84\x7c\x5d\x3f\x23\x76\xaa\xa3\xbc\x7e\x35\xa3\x17\x1a\xa9\x8e\xe1\x85\x46\x8a\x89\xa4\xca\xcd\x58\xfa\x3e\x52\xd9\x16\xea\x4a\x0e\xfb\xe0\xd5\xaa\x6b\xfc\xe7\x3f\xc4\x65\xeb\xf0\x5a\xc4\x2d\x6b\x76\x2f\xb4\x6f\x30\x57\x75\xc4\x97\xaf\xbe\x1f\xee\xc6\x84\x21\xb4\x82\xf8\x92\xe6\x02\xc1\xad\xef\xb1\xb3\x49\x79\xd1\xe1\xac\xe0\x56\x8f\x16\xd1\x7f\xfc\x28\x1f\x5a\xeb\x3b\x7f\x4c\xae\x84\x9f\xd6\x8d\xda\x62\xcf\x3e\xef\x33\x08\x54\x26\xdc\xb9\x6e\x8c\xa2\xd2\xe0\x1d\xfd\x99\xb0\x6e\x3d\x18\x8a\x88\x1f\xa9\x8e\xe2\xec\xe4\x7f\xa5\xbf\x54\x07\x78\x26\x48\x52\x1d\xe0\x99\x80\x53\x3d\xb8\xcd\xb0\xa3\x56\x07\x78\x76\x88\x99\xae\x0e\xf0\x4c\x21\x4d\xf5\x10\x2a\x7f\xd4\x6a\xde\xba\x7a\x0a\x46\x86\xab\x37\x90\x0a\x10\xd4\x69\x5c\x30\x58\x29\xeb\xc1\x65\x56\xf4\x94\x8d\x65\x48\x77\x1e\xdc\x69\x7a\xbb\x83\x70\xf9\xef\xeb\xc5\x86\x04\xa4\xab\x97\x88\x04\xe9\x94\xb8\xfe\xae\x3e\xb0\x03\x38\xbb\x04\x8c\x55\x07\x6f\x26\x3b\x68\xbd\xa4\x64\x60\x1f\xac\xee\xda\xcb\xaf\x86\x74\x49\xc9\x88\x7a\xe6\xa2\xa5\x67\xba\xb6\x1b\x04\x73\x2e\xc6\x10\x8c\x36\x15\xd7\x9e\x52\xe2\x5b\x20\x2e\x1a\x89\x5a\x20\xa5\xa6\x5d\x5a\x84\xf4\xf3\xad\x9b\x03\xb7\x1c\xb0\xd7\x36\x5c\x7b\x61\xa9\x05\x72\x39\xba\xb3\xd0\xea\xb4\x2a\x2d\x3d\x13\xe4\xc2\xf2\x6a\x81\x23\x39\xe8\xed\x03\xc4\x13\x68\xe1\xa9\x7e\x74\x8d\x94\x21\x8e\x88\x06\xc3\xdd\x93\xf5\x4c\x6c\x95\x98\x3f\x9a\x98\xec\xd8\xea\x1a\xee\xbe\x07\x73\x4b\x83\xb1\xee\x39\x6a\xe1\x23\xe1\xb8\x6e\xa0\x2f\xa8\xb5\x52\x03\x7d\x29\x6e\xbf\xa9\xd6\x33\xa9\x0e\x0d\xf4\x15\xf9\x9e\x0d\xd6\xb8\xd8\xf5\x3b\xd0\x17\x4b\xb8\x09\x7d\xe1\x54\x6d\x0f\x11\x3d\x49\x6f\x67\x09\xe3\x1c\x6e\x91\x25\xcc\x86\xd8\x40\x56\x49\xef\x03\x59\xa5\xa2\x3b\x31\x4a\x0d\xdd\x49\x6c\x3a\x71\xe4\x0d\x64\x95\x34\x0e\x20\xab\x04\x4e\x68\x20\x2b\x79\x3d\x1a\xc8\xca\x30\x7b\xb5\x48\xfc\xbd\x24\x02\x55\x59\xd1\x1b\x60\xb8\x23\x12\xa5\x81\xaa\xac\xe9\x77\x3e\x0e\xa6\x19\xe2\xa8\x2a\x9b\xc6\x01\x54\x65\xa4\x6b\xb4\x44\xd4\x07\x2b\xb5\x25\x98\x03\x31\xe1\x34\xb2\x0e\x0d\xa5\xa5\x25\x90\xe3\xd2\xef\x5c\xbe\x8c\x41\xa7\xa9\x7c\x0a\xdb\x4b\x4b\xb8\x90\x51\x14\x5a\x52\xd1\x41\xbe\x44\x22\x42\x07\x6b\x76\x4b\x44\x5d\x35\x3d\x85\x1c\x09\xcd\x41\x47\x44\xb9\xa0\x94\x35\x47\x44\xb9\x60\x2e\x6b\x20\xa2\xa2\x59\x00\x22\x2a\x1a\x23\x47\x44\xb9\x98\xee\x04\xe1\xea\x0b\x3a\x22\xca\xa5\xe8\x77\x85\x96\xee\xf4\x6f\x5d\xc0\xee\xcd\x51\x4f\x2e\xd8\x0b\x1a\xbe\xb1\x02\xee\x68\xf8\xc6\xca\xd2\x53\xe8\x27\x07\x7a\xcb\xf4\x13\xb4\xdd\x32\xc4\xda\x98\x5f\x9a\x23\x9b\x2c\x3f\x4b\xcb\xb8\xb0\x89\x70\x6f\x19\x5f\x0a\xb1\x2f\xcd\xd1\x4b\xfe\x03\xaf\xfe\xff\x96\xdc\x32\xa9\x0c\x28\xee\x8d\x4c\xbf\x8a\x9a\xdf\x1c\xd8\xe4\xaa\x8d\xc1\x81\x4d\xae\x70\x2d\x34\x32\xfd\xa4\x2d\x36\x62\x35\x2b\x6e\x96\x56\x70\x97\xb0\x09\x37\xe2\x31\x1b\xe7\x75\x73\xf0\x92\x1b\xfa\x78\x73\xf0\x92\x65\x4f\x6d\x64\xf3\x35\x02\x9e\x9a\x03\x97\xdc\x9a\xee\xf4\x4f\xdd\x86\x9e\xe2\xe2\x35\xc2\xad\x9a\x03\x97\xdc\xb6\xee\x24\x1d\x03\x2b\x70\x73\xe0\x92\x9b\x96\x11\xb1\x98\x4d\x1b\x58\x21\x1b\x2c\xe8\x7d\xd8\xd2\xa3\x7e\x77\x68\x49\x06\xdc\x97\x5a\xb6\x95\x48\x18\x4c\x15\x0d\x77\x57\x07\x98\x36\x07\x3b\xb9\x13\xb3\xd1\xc8\xe6\xeb\x1a\x5a\x5c\x5a\x03\xbb\x61\xc3\xa5\x35\xf4\x76\x82\x29\x87\x06\x13\x44\xa3\xd4\xe9\xe6\x88\x26\xcb\x8a\xdf\xc8\xd8\x53\xd2\x73\x23\x63\x6f\xbc\x7d\x71\x19\x06\xa1\x8e\xcd\x11\x4d\x1e\x5d\x2d\x97\x61\x10\x66\xd4\x70\x69\x0d\x82\xc7\x5a\x23\x58\x8b\x18\xd5\xd6\xf0\x05\x70\xc0\x36\x5c\x59\x62\x65\x68\x04\x53\x2a\x94\xac\x39\x9a\xc9\x13\xcc\xd4\x1c\xcd\x64\x25\xf6\xb6\x46\xe4\x07\xb0\xaf\x35\x19\x7c\xf4\x3e\x62\x62\xd1\xc5\x1b\xee\xaa\x25\xd9\x1b\x6e\x64\x6d\x05\xb8\xab\x56\xd2\xdb\x5d\x86\x25\xd9\x1d\xb1\xe4\xa5\xc5\x88\xbb\x6a\xe9\x0d\x04\x4b\x2e\xa2\x07\x5a\x27\x0a\x42\xa3\xe2\x88\x25\x2f\x1d\x0f\x8e\x58\xf2\xd6\xb8\xc3\xf1\xb7\x71\x9a\x37\x47\x2c\x79\x9b\xde\xd7\x68\xe9\x5a\xa7\x85\x0c\x8e\x58\xf2\xee\x7a\xc3\xa4\xa5\x67\x2e\x5a\xea\x27\x69\x3f\x78\x4c\x5a\x27\xed\x87\x2c\x84\xd6\x15\x9d\xc3\xb5\x41\xda\x0f\x31\x37\x0d\x77\xd5\xd1\x38\xe0\xae\x3a\xe8\x6a\x8d\xe0\xc7\xf3\xe8\x4e\x02\xca\x50\x19\xda\xc0\x75\x9a\x75\x0d\xbf\xcb\x50\x0b\xbf\x0b\x86\x9a\xe6\xc8\x22\x1f\x7d\xb3\xa1\x38\x72\xde\x80\xef\xe8\x06\x66\xcf\xc4\x35\xa8\xcd\x9b\x40\xc5\x1b\x75\x67\xa6\xc5\x1b\x1c\x39\x64\x85\xfe\xb6\x49\x70\x9b\x94\x92\x89\x0f\x0c\x13\x4b\x9b\xb8\xaa\xb3\x5a\x83\x96\x9e\xe2\xfd\xbc\x98\x43\x9a\xfc\x43\x68\xc5\x6d\x12\x27\xae\x5d\x0a\xff\xd0\xd5\x2c\x77\xe4\x90\x2f\x61\x87\x8d\x00\xc5\x4b\x2e\x43\x23\x40\xf1\x6a\x3f\x5b\xa4\x51\x2d\xdd\x49\x44\x97\x36\x68\xfc\x43\x4a\x92\x69\x0b\xf9\xb4\x87\x2c\xe4\xd3\xce\xb7\x90\x0f\x33\x6a\x73\xe4\x50\xe4\x5f\x68\x04\x27\xba\xeb\xfb\xff\x6f\xc9\x0e\x26\x0a\xb5\x4e\x52\x73\x20\x51\x94\x8c\xd9\x96\x62\x50\x25\xc2\xc6\xa2\xc9\x30\x38\x90\x28\xe1\x15\xd6\xed\x81\x01\x03\x45\xdb\xd8\x3e\x35\xb4\x0e\x24\x0a\xc5\x22\x52\xdb\x04\x46\x69\x9a\x39\x2c\x28\x0f\xc0\xa5\xe1\x2c\x52\x0c\x6a\x23\x1a\xf1\x91\x8e\x40\x34\xe2\x43\xb8\x5d\xdb\xc4\x16\x68\x62\x39\x5c\x28\x0f\xd6\xde\xb6\x09\x7a\xdf\xba\x93\x88\x52\x9d\x62\x38\x8b\x22\xce\xb7\xe6\xce\xa2\x12\xb5\xe0\x1c\x66\x94\xa8\x05\xe7\x30\xa3\x44\xe9\x55\x07\x6b\x2d\x36\xa8\x46\xde\x5b\xcc\xba\x93\xdc\x4c\x0d\x26\x79\x6f\x51\x83\x42\xde\x9b\x18\x47\x1a\x21\x87\x09\x87\x65\x23\xe4\x30\x69\x19\x91\xf7\x26\x37\x6c\x7b\xc3\x09\xe9\x35\xe1\x84\x49\xba\x13\xb9\x6d\xe2\x4c\x68\xe4\xb6\x25\x1c\x50\x0d\x87\x90\x5c\x1f\x0d\x87\x50\xc2\xa7\xd0\x70\x08\x25\x8d\x1f\x0e\x21\x38\x71\x53\x23\xb7\x4d\xd1\x9d\x8d\xdc\x36\xd3\x21\x4a\x18\xa1\x49\x9f\xc6\x11\x64\x5a\x7e\xe4\xb6\x59\xd6\xdb\xc9\xdd\x23\xc1\xa2\x5d\x72\xf7\x74\x58\x38\xce\x28\x56\x75\x8d\xf4\x60\x62\x72\x9b\x63\x89\x62\xb8\xd4\xba\x63\x89\x62\x00\xd6\x1e\x48\x5f\xe7\x18\xeb\x84\x09\x66\xd2\x2d\x3a\x61\x82\x99\xe3\xa1\x3b\x96\x28\xd9\xf4\x14\x22\xef\x8b\x5a\x2e\x43\xc6\xc4\xd3\x1d\x4b\x94\x4c\xd4\x6f\x0f\xe4\x1f\x32\x7b\x3a\x4e\xa0\x8c\xae\xdd\x1d\x4b\x94\x7c\x75\x0d\x8b\x39\x16\xe3\x4e\xf8\x60\x31\xb5\x2e\xb6\x75\xde\x80\x37\xa7\xa0\xfb\x76\x58\x4c\x0a\x0e\xee\x8e\x37\xa7\xb0\x72\xfa\x43\xa8\x23\x9a\x7e\x7f\x70\x3c\x62\x4d\xee\x84\x06\x56\x8c\x79\xfd\x51\xf6\x40\xa2\x85\x43\x2e\xa9\xe5\x32\x54\xd3\x53\x3a\x2d\x3d\xc5\x65\xa8\x78\x3f\xfa\x43\x1c\x4e\x55\xcf\x28\xc8\xc2\xba\xed\x84\x06\x56\xcc\x37\xfd\x21\x87\xf2\xf2\x75\x1f\x62\x70\xf0\x00\x75\x3c\x38\x15\x17\x6c\x57\xf1\x6f\x7d\xb3\xa8\x14\x7c\xde\x1e\x95\xcb\xcb\xfb\x1c\x4b\x94\x46\x4c\x71\x77\x2c\x51\x1a\x96\xf4\xee\x58\xe2\x75\x5f\xf6\x28\x67\x1c\x5f\x09\x16\x93\x36\x74\xa7\xcb\xd0\xd4\x4f\x58\x4c\xa4\x90\xf5\x88\xd7\x62\x23\x2d\xa5\x18\xe5\x54\xee\x94\x62\x6c\x6c\x9f\x1d\x0f\x4c\x63\xa5\x76\x3c\x30\x1d\xe3\x44\xc7\x03\xa3\x84\x9b\x8e\x07\xa6\x83\x10\xba\xe3\x85\xa2\x04\xbd\x8e\xf7\x45\xd9\x05\x1d\xef\x4b\x2f\xfa\x1d\xa9\xf4\x92\x96\xd0\xbd\x3e\xca\x3f\xb6\xe4\x8e\xe3\xa5\x0f\x75\xf3\xe0\x32\xe1\x05\x10\x91\x28\x5c\xbe\x1b\xe9\xaa\x84\xec\x74\x9c\x2b\x83\xad\xae\xe3\x5c\x19\x9c\x8c\x1d\xe7\x8a\xa8\x6c\x3a\xce\x15\x91\xec\x74\x9c\x2b\xca\x66\xeb\x90\x8d\x88\xf4\xa5\xbb\x03\xa5\x0c\x0d\x1f\x8c\x22\x03\x07\x43\x77\x98\x51\x06\x27\x63\x87\x51\x64\x90\x86\xd0\x33\x3d\x63\x43\xe9\xf0\x84\x0c\xd2\x71\x7b\xa6\x67\x9a\xe4\xf0\x84\x4c\x20\x79\x17\x4f\x08\xfa\x51\x27\xdb\x6b\xea\xc3\x67\x62\xb4\xd9\xa0\x7b\x26\x3c\x5d\xfd\xcc\xa2\x48\x61\x12\x28\xa8\x8e\xe8\xdc\x4e\xa6\xd7\x9c\x7a\x83\xf7\x5a\x39\x78\x9d\x80\x3a\xe5\xe0\x75\x77\x8b\x94\xc5\x56\xd7\x1d\x59\x14\x25\xac\xf4\xa2\x5a\x9d\xf4\xc5\x91\x45\x59\x84\x6c\x75\x47\x16\x65\x91\x75\xd6\x0b\x89\xc2\x5a\x70\x04\xd4\xc9\xe9\xdb\x15\x50\xa7\xad\xc7\x91\x45\x59\x5d\x2d\xdc\x5a\xe8\x16\xbd\xe0\xd6\xd2\xb4\x26\x98\x6e\x81\x33\x3a\xc1\x74\x4b\x93\x9c\x2c\xaf\x75\x74\x27\x32\x60\x9c\xe8\x04\xcb\x6d\x0e\xa0\x4e\x16\x97\x12\xd2\xbb\xa3\x87\xb2\x35\xe5\x2b\x5c\x2e\x51\xd7\x88\xc2\xd1\xb4\x76\x57\x49\x11\x73\x46\xaf\x04\x59\x71\x38\x75\x47\x16\x65\xeb\x5b\x3b\xb2\x28\x1b\x48\xde\x1d\x59\x94\xcd\xd1\xd8\x2b\x54\x44\x4b\x7d\x71\x19\xb6\x64\x50\xb0\x1c\x7a\x4e\x77\x64\x51\xe4\x38\xea\x70\x81\x9c\xac\x7e\x92\x90\x4f\x5c\x42\x77\x64\x51\x14\x30\xda\xe1\x02\x39\x20\xb5\x0e\x17\x88\x8c\x75\xdd\x91\x45\x81\xd6\x3d\x75\x47\x16\xe5\x46\xb5\x70\x3d\x82\xbf\x3a\x69\x5a\x57\xe3\x4e\x9a\xd6\xcd\xba\xb3\xd1\xd2\x1b\x48\xe6\xc6\xbd\xd8\xdd\x4f\x52\x6e\xd5\xfb\x5c\x3e\x6a\x4f\xa5\xde\x88\xdb\x6d\xba\xe6\xf2\xdd\xae\xdf\x11\x44\x86\xfe\xde\x1d\x75\x94\x0b\x94\xef\x8e\x2c\xca\xc5\x69\xdc\x49\xc3\xba\x5b\xd7\x90\x01\xa3\x54\x87\xef\xe3\x6a\xbb\x76\x64\x51\x15\x80\xda\x3b\xc1\xa9\x89\x99\xe5\xc8\xa2\x2a\x3a\xa3\x3b\xb2\xa8\x81\x23\xbc\x3b\x7a\xa8\x14\x66\x4b\xbd\xab\x42\x97\x7e\x77\xc8\x34\xd4\xfb\xdc\x85\x28\xaf\x49\x87\xd3\x43\xa4\xbd\xdd\xd1\x43\x15\x81\x59\x27\xa0\x4d\x34\x01\xdd\xd1\x43\x0d\xda\x19\xe0\xed\x78\x82\xee\xf4\x7e\x3e\xe0\xf5\xee\x3e\x8d\x2a\x1e\xc3\x3e\xc8\xec\x54\xaf\x07\xd1\x19\x44\xdb\xf7\x21\x37\xaf\x7e\xe7\x32\xc8\x43\xd7\xdd\xa7\x51\x15\x8f\xd4\x1d\x75\xd4\x07\xec\xd9\x1d\x75\xd4\xe7\x5f\xbc\xd1\xa9\x3b\x20\xa9\xe2\xb7\xeb\x04\xb3\x3d\x9a\xba\xee\xe6\xa8\x11\xa8\xd4\xdd\xcd\x51\x23\xb1\xa3\xdd\xc1\x4a\x8d\xc0\xcb\xee\x60\xa5\x2a\xab\xaa\xc3\xdb\x11\x81\xac\xdd\xc1\x4a\x8d\x59\x6f\x18\xb4\xf8\x48\x13\xd6\x2e\x4d\x9e\x89\x17\x5b\xc7\x83\x03\x92\x1a\x09\x71\xea\x70\x73\x28\x68\xa7\x13\xb0\x16\xa5\x49\x11\x94\x26\x8a\xca\xee\xa0\xa3\x26\x7d\x5c\xf8\x37\x12\x9a\x70\x5f\x04\xd0\x68\xd8\x1d\x74\x54\x6a\x84\xa4\x4e\x50\x9a\x62\xc0\xfb\x22\x2d\x46\xc3\xbe\xf0\xa1\x13\x6a\xd6\x1d\x13\x54\x59\x18\xbb\x63\x82\x9a\x88\x0d\xee\x1b\xe6\x13\x4d\x10\x72\x99\x12\xb6\xd6\xbe\xe9\x19\x96\xec\xbe\xe9\x99\x34\x8d\x4d\xcf\xb4\x4d\x6c\x7a\x06\xb4\xee\x9b\x9e\x69\xb9\x13\x6a\x66\xd2\x1b\x37\xf9\xa2\xda\x06\x37\xcc\x0a\x3a\x64\x36\xcc\x0a\xfa\x2e\x24\x25\x99\xb4\x17\xd7\xfb\xab\x69\x19\xb9\xde\x5f\x0d\x47\x44\x77\xbd\xbf\x9a\xf4\x4d\x82\xc4\x0c\xab\x5e\x77\xbd\xbf\xca\x2e\xda\x5d\xef\xaf\xa6\x0d\xec\xd0\x33\x6d\xad\x04\x89\xc9\x66\xda\x49\x33\x92\xcd\xb4\xbb\x0f\xa1\x5a\xd5\xef\xe8\x35\x26\xaa\x4e\xd2\x90\x75\xb5\x1e\x5a\xc8\x70\xe9\xb5\x0e\x92\x4b\xaf\x87\xee\xa4\xd7\x04\x32\xf5\x4b\xaf\x87\x7e\x47\xaf\x35\x62\x97\x5e\x6b\xc4\x08\xf9\x92\xad\xb5\x93\x2c\x64\xd2\x5a\x61\xb1\x30\x6d\x4b\xb0\x58\x98\xb6\x25\x58\x2c\xb2\xa9\xb5\x89\x9d\xe0\x7b\xc2\x62\xf1\x6a\xe5\x62\xb1\x40\xa2\x41\xb8\x57\x66\x5e\x0f\x98\x2a\x14\x15\x34\x60\xaa\xc8\x6c\x75\x83\x70\xaf\x12\xf4\xbb\x42\x6b\xd0\x22\x04\xef\xd1\x9d\x83\xd6\xa1\xe5\xfd\x2c\x18\x90\x46\x20\x71\x84\xe3\x7d\x90\x0c\x54\x58\x0f\x83\xb8\x2d\x59\x6c\x87\x6b\xfa\xb5\x70\xfc\x8d\x07\xb6\x0d\x50\xce\x70\x4d\xbf\xca\x46\x3b\x5c\xd3\xaf\x85\xf1\x1b\xd4\xac\x11\xa7\xce\x78\xe8\xe7\xd2\x53\x2a\xad\x45\xcb\xbf\xb5\x50\xc0\x78\x14\x46\xa8\x96\xcb\x50\x93\x9e\x32\x69\x15\x5a\x2e\x83\x1c\xae\xc3\x35\xf6\x5a\xd1\x3e\x87\x6b\xec\xb5\x72\x38\x0d\xd7\xd8\x6b\x65\xdd\x8e\x28\x52\x29\xbe\x99\x7b\x06\xaa\x8c\xad\x23\x92\xf7\x8a\x6e\x3f\x22\x31\x2c\xac\xb8\xe1\xda\x7c\x6d\x41\x77\x12\xae\x1a\xf5\x3e\xc2\x39\x93\x7e\x07\xbd\x80\xbe\x2e\x49\x3a\x8d\x20\xcd\x11\x49\xbc\x02\x97\x8e\x08\x77\xe2\x9f\x99\xf5\x7f\xb7\xe4\x11\x09\x9a\xd7\x27\xa3\xae\xba\x6c\xb4\xc3\x1d\x03\xb5\x69\xba\xb8\x32\x5f\x1b\x20\x6e\xb8\x32\x5f\x1b\x60\x73\x90\xa3\xd3\xd8\x22\x07\x39\x3a\x9d\x4d\x71\x24\xc2\x70\xf4\xa9\x13\x61\x38\x49\x77\x0e\x5a\x7c\xce\x44\x18\x0e\x1a\xf4\x70\x8d\xbd\xf6\xa6\x3b\xbd\x9f\x1d\xe7\xc6\x70\xc7\x40\xed\x2c\xd4\x61\x90\xb3\x4c\xb5\x22\x2d\x7e\x47\x25\x4b\x59\x7a\x87\x6b\xf3\x55\x44\x3f\x83\x64\x1b\x85\xf8\x0f\xd7\xe6\xeb\x00\xae\x0f\x23\xfd\x18\xad\x6e\x18\xc9\x0b\x9a\xf2\xee\x34\xa8\x43\x53\x9e\x50\x29\x51\x0e\x0e\x42\xa5\x84\x02\x06\xa1\x52\xa2\x9b\x1c\xae\xe9\xd7\x91\xf5\x3b\x97\x4f\xc4\x9b\x83\x50\x29\xd9\x84\x07\xa1\x52\x83\xac\xa3\x41\xa8\x94\x72\xac\x06\xa1\x52\x83\xad\x67\x10\x2a\x25\x2b\xf0\x20\x1c\x6a\xe0\xbc\x19\x84\x43\x4d\xb4\x82\x41\x38\xd4\x24\x58\x69\x10\x0e\x35\xa3\xae\xb9\x0c\x53\x23\x46\x38\xd4\x34\x5d\x5b\xb4\x90\x5d\xe1\x50\xea\x35\xe1\x50\x13\x6b\xee\x20\x1c\x6a\x4a\x06\x12\x69\x94\xf8\x3a\x94\x48\x03\xae\x19\x84\x43\x4d\xac\x7a\x43\x89\x34\x80\xe2\xe1\x7a\x7f\x9d\x1c\x55\x83\x50\x28\xe5\xc2\x0d\x42\xa1\x56\xd0\xef\x5c\xbe\x85\x9e\x33\x08\x85\x5a\x58\x81\x07\xa1\x50\x4b\x12\x11\x0a\xb5\xb4\xc0\x5d\xef\xaf\x2b\xeb\xda\xa2\xa5\xf7\xb9\x7c\xab\xa8\x2f\x84\x7b\x11\x45\x3f\x0a\xe1\x5e\xf8\x5d\x86\x63\x82\xba\x38\x6e\x07\xe1\x53\x62\x27\x1c\xae\xf7\xd7\x25\x89\x2a\x32\x48\xa2\x8a\x0c\xf8\x17\x06\x1c\x80\x8b\x08\x8e\x01\xe9\xc2\x06\x30\x8f\x4a\x3c\xf3\xa3\x3b\xbd\x67\x3b\xea\x1a\xf1\xcc\xa8\x3d\x83\xd4\x97\x8d\xda\x33\x1a\xcc\x70\x92\xa8\x41\x48\xa0\x59\xd7\x60\x66\xc4\x3c\x30\x60\xf6\xdb\x84\x1c\x8e\x26\x0a\x34\x24\x6a\xd0\x13\xa9\x67\x8d\x2c\x57\x10\xde\x80\xbd\x6f\xeb\xe8\x68\x04\x9a\xe1\xc2\x1b\x4d\x69\x1f\xba\x73\xd1\x62\x3d\xb8\xc6\x5e\x8f\x46\xcc\x35\xf6\x7a\x34\xcf\x5c\x63\xaf\x07\x14\x30\xdc\x4f\x50\x8f\xbe\x3c\xa4\x0a\xca\x35\x18\xb0\xf7\x29\x08\x61\xb8\x36\x5f\xc5\xc3\x33\x48\x6b\x39\xda\x19\x5c\x9b\xaf\xe2\xcc\x18\x68\xf3\xca\xb8\x1d\x5d\x0c\x84\xfa\x1d\x14\x4b\xef\x53\x20\xbf\xd0\x68\xa2\xcd\x8b\x28\x60\xa0\xcd\xdf\xad\x6b\x70\x9c\x60\x82\x1b\x68\xf3\x57\x47\xce\x50\xac\x35\xdf\x7a\x28\xe0\xf8\xfc\x6b\x4b\x76\x45\xbf\x05\x7d\xc0\x01\xc1\xa2\x96\x2d\xe9\x29\xca\x55\x1b\x22\xe8\xd3\x94\x87\xa0\x2f\x24\xbd\x8e\xd4\x86\xa4\xae\x10\x36\xaf\x65\x0b\x41\x5f\xd0\x89\x3a\xc8\xcc\xc1\x7e\x34\x06\xc9\x9e\x3a\x47\xe0\x48\x50\xda\xc3\x20\x35\x45\xf4\xf3\x63\x12\x23\x88\x15\x71\x4c\x42\xff\xb1\xc3\x8e\x49\x42\xa7\xfa\x42\xfa\x89\x40\xc7\x20\xfd\x44\x89\xd8\x03\xa6\xbd\x07\xed\x65\x90\x7e\xf2\x60\xaf\x1a\x70\x20\x88\xac\x68\xc0\xb4\x27\x1a\xee\x31\xe1\x06\xd0\x14\x84\xff\x40\x09\xb4\x83\xf4\x93\x18\xf5\x4c\x25\x74\x32\xb1\xa6\x48\x14\x79\x26\xe9\x27\xb2\x56\x0f\x98\xf6\xa2\x34\x14\xf8\x0f\xa2\xa6\xcb\x82\x24\x12\xaf\xf5\x58\xc4\x40\x0e\xb5\x88\x81\x44\x0f\x1f\x30\xed\xc5\xa9\x6b\xa2\x66\xd1\x1b\x08\x82\xbc\xba\xe6\xf2\x09\x2f\x8c\xa5\x20\x48\x7a\x4d\x30\x52\xc2\x81\x38\xc4\x7d\xa0\x85\x0a\xf7\x41\xd2\x02\x80\xfb\x20\x01\xcd\x86\xe3\x85\x96\xb4\x00\x1c\x2f\x34\x91\xad\x0e\xf8\x0d\x12\x09\xb2\xc3\x31\x41\x13\x47\xdc\x70\x4c\xd0\x4c\xb3\xce\x31\x41\x33\x8d\x18\x41\x46\x86\x29\x66\x38\x26\x68\xd2\x76\x87\x63\x82\x66\xda\xca\xe1\x37\x30\x62\xcb\xc7\x26\x90\x13\x9b\xf0\x70\xbc\xd0\x4c\x3a\xd0\x56\x20\x27\x32\x38\x5e\x68\xe2\x5e\x1b\x9b\x40\x4e\x8d\xd1\x21\x90\x13\x63\xc1\x38\xb0\x21\x12\x15\x33\x1c\x59\xb4\xac\x2f\x4f\xfa\x89\x6a\xe5\x0c\x48\x0c\x32\x08\x6f\x40\x62\x50\x70\xbe\x0d\xd2\x4f\x0a\x1e\x8c\xe1\xc8\xa2\x95\xac\x6b\x70\x59\x63\x7d\x1c\x8e\x2c\x1a\x55\xed\xd2\x20\xfd\xe4\xd5\x4c\x1d\x59\xb4\xa2\xcd\xf4\xc0\x1f\xa3\x51\x71\x6f\x43\x2b\xda\x50\x0e\x44\xba\x1a\x15\xc7\x19\xad\x68\x63\x70\x9c\xd1\x8a\xbe\xc4\x25\x10\x55\x07\x9e\xe3\x8c\x26\x6b\xf5\xb8\x04\xa2\x4a\x0f\x77\x9c\xd1\xaa\x94\x12\xc7\x19\x8d\x52\xdf\x69\x5c\x28\xd5\x92\xae\xb9\x0c\x22\xe8\x1a\x90\x12\xd4\xa6\x3b\x5d\x86\xda\xf5\xcc\x43\xa8\x2b\xb3\x8e\xb4\x92\x0a\x42\x9f\xee\x51\x68\x95\x03\x61\xba\x47\xa1\x29\x7c\x60\x3a\xce\x68\x4a\x93\x99\xa4\x95\x34\x56\xe3\x0c\x0a\xa6\xd5\x53\x32\x2d\x3d\x05\xc2\x5f\x76\xb7\x19\x08\xa6\xc5\x8f\x35\x03\xb4\x5b\x59\xbf\x23\x98\x96\x28\xa3\x19\x20\x56\x28\xfa\x1d\xb4\x70\x7c\xdd\x09\x23\x5e\x43\x0f\x9f\xb0\xde\x35\x14\xc0\x09\xeb\x5d\xc3\x41\x3a\x61\xbd\x6b\xfb\x5f\x86\x8b\x09\xb3\x5d\x97\x08\xf0\xd5\x29\x81\x79\xc2\x57\x27\x22\xc4\x09\x5f\x1d\x65\x27\xd3\x84\xaf\xae\x63\xb5\x9c\xf0\xd5\x75\xac\x8f\x53\x7c\x75\xfa\xb8\xe2\xab\xe3\x1c\x99\xe2\xab\xe3\xb4\x9d\xf0\xd5\x0d\xf4\xb8\x29\xbe\x3a\x96\xed\x84\xaf\x4e\xd6\xea\x09\x5f\xdd\x00\x3c\x4c\x31\x07\xa0\xb9\x4d\x31\x07\x54\xfd\x0e\x26\x5b\x20\xc8\x84\x39\x60\x3e\xba\xe6\xf2\xcd\xa4\xf7\xb9\x0c\xca\x21\x9b\x91\x48\x65\x40\xf1\x84\x19\x60\x76\xbd\x01\x12\x16\xd3\xef\x5c\x86\xa5\xdf\xc1\x0c\x20\x06\x89\xe9\xc8\xa2\xad\xa1\x6b\xb0\x29\xa3\x1f\x4d\x77\x21\x34\x45\x44\x4e\x98\x01\x16\x8e\xce\x99\xc8\x63\x64\xfb\x9c\x89\xf4\x78\x82\xd2\xa6\xa3\x8e\xb6\x8b\x9e\x02\x11\x14\xcb\x76\x3a\xea\x68\xbb\xe9\x7d\x83\x16\x53\xd7\x51\x47\x13\x63\xd8\x74\xf7\x42\xdb\x1c\x78\xd3\x7d\x08\x6d\x2f\xb5\x88\xc4\x5e\x7a\x3b\x91\xd8\xa0\xa3\xe9\x88\xa4\x6d\x4e\xfe\x69\x44\x62\xa3\xe7\x4c\x53\x24\x36\xfd\x34\x72\xae\xd4\x33\x47\x24\x4d\x41\xf8\xd3\xe0\x14\x64\x43\x99\xa4\xff\x1f\x36\xf6\xe9\x88\xa4\x29\xf9\x7c\xc2\x49\x77\xd0\xfb\xa7\x23\x92\x76\x70\x43\x4e\x47\x24\xed\x68\x9e\x39\x22\x69\x87\x83\x72\x92\xfe\x7f\xf1\x6f\x4f\x47\x24\x4d\x9e\xfe\x69\xb0\x8e\x48\x76\x47\x1d\xed\x4a\xf6\x4c\x4a\x38\xd6\xf1\x99\x15\x4d\xce\x1b\xdc\x13\xd1\xee\xd5\x9d\x44\x5b\x93\x58\x35\x33\xd1\xd6\x18\x82\x66\x26\xda\xda\xf4\x3b\x45\x5b\x33\xb6\x99\x68\x6b\x8d\x83\x38\xe7\xd8\x96\x26\x9c\x73\xa1\xf3\x05\x95\xa0\x31\xf4\x06\xa2\xc9\xa7\x9e\x49\x34\x39\x9a\xf7\x14\x63\x39\xba\xf6\x14\x63\xb9\xe6\x7c\x81\x17\x51\x5f\xa2\xc0\x0e\xa3\xad\x07\xc6\x72\xd9\x4c\x27\xa9\xfd\x52\x66\x26\x9c\x73\x22\x68\x9d\x8e\x48\xfa\x83\xcb\x70\x92\xda\xff\xe0\xe7\x99\xf0\xcd\xa9\xde\xca\x84\xb1\xfc\xd1\x96\x55\xe0\x7d\x44\x9d\x98\x05\xde\x47\xad\x23\x18\xcb\xe5\x96\x9f\x45\xe9\xd0\x48\x5b\x21\x33\x02\x75\xcc\x8a\x0c\x1c\xa9\xb3\x22\x03\x98\x7c\x92\xb6\xff\x80\xc9\x27\xac\xe4\x51\x7b\x08\x69\xfb\x91\xc3\x62\xc2\x25\x17\xb1\xd4\x4f\x47\x24\x5d\xe6\xd5\xe9\x9e\x88\x2e\xe7\xfe\xac\xb0\xae\x6b\x85\x93\xb6\x2f\x05\x69\x56\x78\x01\x8b\xfa\xe2\x32\xc4\xa5\x5e\xbb\x0c\x11\x9d\x79\x3a\x3e\xe9\x72\xe0\x4f\xc7\x27\x3d\x69\x07\x73\x7c\xd2\xd3\xf3\xaf\x2c\xc0\xe9\xd0\xa5\x27\x6d\xc2\xee\x88\xe8\x49\x1d\x6b\x70\x35\x71\x9e\xcf\x06\x55\x5e\xd1\x0b\x2a\x2d\x06\x93\x6c\xfd\x54\xd4\x15\x17\x2f\x69\x9a\x35\x48\xf3\xa7\xee\x74\xf1\xa4\x49\x4d\x87\x35\x3d\xc1\xad\x36\xe1\x8a\x13\x3b\xdc\x84\x94\x3c\x1d\xbd\xdd\x45\x4f\x9c\xf5\xb3\x23\x3a\x67\xfd\x74\x58\xd3\xa5\x81\x4d\x87\x35\xdd\xd0\x7a\xa6\xc3\x9a\x2e\x0e\xab\x49\xc2\x86\x32\xf8\xa6\xc3\x9a\x2e\xfb\xe6\x24\x61\xc3\x00\xda\x93\x84\x8d\x8c\xe9\x60\x92\xb0\x91\xb5\xa4\x1d\xf2\x74\xf1\x23\x4f\x12\x36\xc4\x7e\x37\x49\xd8\x90\xa5\x70\x92\xb0\x91\xa7\xfa\x49\x2a\xed\x96\x0c\xf0\x89\x3d\xba\xe6\xf2\x15\x80\xe8\x24\x61\xa3\x10\x02\x34\x49\xd8\x10\xcb\xc3\x24\x61\x43\x1e\xfb\x49\xc2\x46\x51\x5f\x48\xd8\x28\x3a\x97\xc7\x37\x8d\x56\x8b\x95\xa4\x8d\x82\x35\x74\x92\xb4\x51\x8e\x7e\xeb\x32\x16\x1d\x96\x24\x6d\x54\x6d\x3f\x24\x6d\x28\xe1\x76\x92\xb4\x51\x71\x42\x4d\x92\x36\x2a\x7a\xde\x84\x98\x5c\xd4\x8c\x93\x84\x8d\xaa\xe3\x8a\x84\x8d\x8a\x33\x69\x4e\xa8\x2b\xb5\xfd\x90\x90\x21\x1f\xfe\x24\x21\xa3\xaa\x9f\x24\x64\xc8\xce\x37\x49\xc8\x68\x41\x4f\xa9\xb4\x74\x27\xa4\x44\x8f\x5a\xf0\x16\x02\xf5\x27\x09\x19\x0d\xef\xc7\x24\x21\xa3\x49\xc1\x20\xe9\xa2\x65\xbd\x5d\xdc\x6e\x6c\x0e\x24\x5d\x34\xcc\x62\x93\xa4\x8b\xa6\xd9\x4c\xd2\x45\x03\xe0\x4e\x92\x2e\x94\xea\x30\x97\x92\x4a\x98\x6b\x4b\x89\x23\x2c\xeb\xa5\xc4\x11\xc6\x7e\x91\x38\x92\xf5\xbe\x41\x4b\xcf\xf4\x7e\x76\xa2\x67\x27\x29\xf2\x22\xf1\x9f\x8e\x51\xfa\xd0\x18\xc1\xcf\x36\xc0\x91\xd3\x7d\x1a\x7d\x80\x70\xa7\xfb\x34\xfa\xd0\x2a\x87\x83\x4d\xcc\xdc\xd3\x31\x4a\x57\x75\x9a\xe9\x18\xa5\x0f\x10\xcb\x74\x8c\xd2\xe5\x7e\x9f\xa4\xc1\x0f\x1d\x81\xa4\xc1\x4f\x69\xa7\x1b\xda\x59\x1d\xd5\xa4\xba\x4f\x8d\xfb\x81\x5a\x16\x3b\xfb\x24\xd5\x7d\x12\xa6\x36\x1d\x6b\xf4\xa9\x1d\xe0\xc0\x70\xb3\x74\xcd\xfb\x29\x83\xd6\x74\xac\xd1\xe7\x51\xab\xd2\x62\x34\x1d\x6b\xf4\xa9\x2d\xdb\xb1\x46\x9f\xda\x2b\x1c\x6b\xf4\xa9\xbd\xc2\xb1\x46\x97\x21\x6c\x1e\x52\xa7\xf5\x5d\x48\x75\x5f\x51\xbf\xf3\x6f\x2d\x63\xd7\xf4\xc8\xa6\xbe\xb4\x3e\xdd\xdf\xd1\x17\x86\xa2\xe9\x38\xa4\x2b\x34\x73\x42\x90\x26\xf3\xd6\x74\x1c\xd2\x17\xd1\x36\xd3\x71\x48\xdf\xe1\x5f\xd4\xfc\xd3\x21\x4a\x17\x1b\xda\x74\x88\xd2\xc5\x89\x35\x1d\xa2\xf4\xfd\xbe\xae\xd1\xe2\xe3\x3a\x44\xe9\x1b\xf7\xd8\x74\x88\xd2\x37\x3e\xd2\x09\x6f\xda\xab\xaf\x91\x15\xbf\x35\xb1\xdc\x15\xd2\xf7\xd2\x33\x61\x62\xd0\x30\x38\x7c\xe9\xf2\x8d\x2f\xb2\xe2\x95\x97\xbf\xe0\x4d\x93\x75\x6b\x05\x58\x83\x59\xa8\x2b\x90\x83\xc4\x89\xb4\x1c\xbe\x74\xd1\xd8\x2c\x87\x2f\x5d\x35\x34\x16\x59\xf1\x8a\xcc\x5c\x64\xc5\x1f\xe2\x73\x97\xc3\x97\x7e\x18\xf6\xe5\xf0\xa5\x2b\xd3\x68\x05\xd2\x4f\x89\x90\x58\x64\xc5\x5f\xa0\xe9\x22\x2b\x5e\x1a\xda\x22\x2b\xfe\x02\xf9\x96\xbb\x50\xba\x3c\xec\xcb\xa1\x4d\xbf\xe8\xe9\xeb\x81\xa5\x01\x3b\xf4\x72\x68\xd3\x2f\xc3\xbe\xdc\x85\xd2\x95\xaf\xb4\xdc\x85\xd2\x6f\xd6\xef\xc8\xb1\xc2\x8d\xb0\x28\xef\x7f\xab\x7e\x47\x8e\x55\xd5\xef\xc8\xb1\xc2\xb5\xb4\xe0\x51\x93\xbf\x7d\x3d\xb0\xa1\xb0\x29\xae\x47\xe4\x4c\xba\x73\x42\xed\xaa\xa7\x7c\x53\xa4\x83\x7e\x4b\xa0\x7d\xd4\xdd\x3f\x23\x5a\x97\x23\xa1\x78\xd0\x0a\x17\x01\x53\x0a\x97\x5c\x2f\x8f\xda\x87\xc0\x74\x11\x34\xa5\xb8\x97\x15\xd3\x0f\x5f\xfe\x72\x34\x54\x0e\x0e\x99\x85\x0b\x46\x1e\xec\xe5\x68\x28\xbe\xa3\x8a\x0b\x46\x56\xf4\x15\xdb\x0f\x3b\xe1\x8a\x98\xd5\xf4\x7d\x22\x66\x35\xf4\xb6\x15\x61\x7d\xc1\x7e\xba\xc4\xde\x7d\xd5\x22\x82\x18\x2d\x6e\xc5\xf3\xe3\x98\x58\x91\x64\x25\xdc\xe2\x8b\xe4\x8c\xc0\x81\xb2\x48\xce\x08\x68\x78\x8b\xe4\x8c\x67\xe9\x4e\x92\x1e\x30\xcb\x2c\x82\xad\x54\x20\x6b\x11\x6c\xb5\x01\xe4\x8b\x60\x2b\xb1\x54\x2c\x82\xad\x0e\x6b\x74\x11\x6c\x75\xde\xf7\xb9\x55\x34\x1d\x3d\x05\x97\x64\xd4\x53\xdc\x2a\x9a\x39\x5e\x56\xc2\xfd\x94\x75\xcd\x91\x44\x25\xbd\x65\x25\xd2\x8b\x6d\xed\x0b\x56\x5b\x49\x6e\x6c\x66\x19\xa5\x75\x07\xec\xcf\x8b\xd2\xba\x46\x68\xeb\x72\xb4\x64\x62\x61\x59\x94\xd6\x3d\x44\x9d\x2f\xb3\x77\xc4\x15\x0d\xb3\x28\x0d\xa5\x14\xad\xe5\x88\xc9\x94\x26\xbf\x1c\x31\x7d\xaf\x79\x6e\xee\xd9\x7a\x92\xf3\xe1\x4d\x90\xf2\xa2\xf4\xee\xe7\x4e\x4f\x3a\xcb\x55\x77\x7a\xd2\x59\xe8\xea\xeb\x7e\x49\x79\xc5\xe9\xb2\x1c\x35\x99\x1c\x99\xcb\xfd\x38\xa6\x52\x72\x2b\x93\x12\xae\xdf\x3a\xa2\xb2\x02\x82\x5b\x19\xfa\x63\xd0\xcf\xca\x2a\x74\xd1\xf7\x41\x59\x59\x54\x77\x52\x20\xdf\x72\xac\x74\x1b\xe8\x7d\x65\x0a\x2a\xbf\x6f\x39\xb4\x98\x07\x8e\x79\x28\x3f\xfc\x7f\xb7\xea\xe5\x70\x28\x4a\x61\x5f\xd4\xa0\x8e\x68\x20\x8b\x1a\xd4\xb2\x92\x2e\x6a\x50\xbf\x42\x39\xe4\x49\x81\x54\x91\xe5\x90\x47\xe5\xf6\xd3\xa2\x06\x75\xc4\x15\xb0\x1c\xf2\xc4\xc8\x99\xb5\xdc\x99\x12\x23\xa7\xd4\x72\x58\x13\x15\x43\xbc\x2a\xef\x93\xe8\x0e\x4f\x54\x98\x3f\x2d\x87\x19\x51\x15\x08\x97\xc3\x8c\xa8\x7a\x83\xcb\x61\x46\x54\xd4\xc8\x72\x17\x49\x94\x15\x78\x51\xe0\x32\x6a\x5b\x69\xbc\x81\xd8\xc7\xd5\xf4\x06\x9e\x49\x81\x4b\x81\xa3\x45\x81\x4b\xe5\x97\xad\x86\x44\x59\x77\x4e\xbe\x12\x32\x34\xde\xae\x89\xd0\x78\xbb\x0e\x8a\x86\xb4\xf8\x6a\x97\x6b\xfa\x31\xe2\xdc\x58\xae\xe9\x47\x81\xaa\xd5\xe9\xa7\x36\xe7\x4e\x3f\x01\x94\xcb\xb5\x79\x15\xed\x4f\xab\xd3\x97\x47\xbf\xf3\xaf\xfb\xbc\x6f\xe0\x2b\x81\x25\x56\xe7\x2b\xa1\x1f\x2c\xd7\xe6\x53\xc0\x81\xb8\x54\x47\xdb\x66\x0a\x68\xb4\x4b\x55\x0d\x6d\x7f\xff\x43\x65\x43\xbb\xdf\xff\x14\xd5\xf7\xfe\xfe\xa7\xaa\x2a\xfb\xfb\x9f\x6d\x4c\xc4\x31\xbf\xff\x61\x32\x8e\xcf\x93\xb7\x2f\x89\x14\xc6\xfd\xfe\xe7\xa1\x82\xfb\xf3\xfd\x4f\x54\x4d\xf7\xef\x7f\xe8\xf3\xfc\x3e\x19\x56\x88\xb0\xec\xfb\x1f\xfa\xbc\xda\xe7\x3f\x3e\xc3\xd3\x73\xeb\xf7\x3f\xf3\x5b\x49\x3e\xed\xb2\xbe\xb5\xe3\xd3\x66\x46\x3e\x60\xac\xed\x40\x3b\x2a\xae\x7c\xbf\x95\xa8\x0b\xad\x42\x4b\xd7\x2a\x2d\xde\xa0\x2a\xd4\x04\x66\x6d\x55\xa1\xe6\xa0\xdb\x54\xa1\x8e\xef\xef\x26\x95\x37\x37\x2d\x8a\xd6\x66\x3d\x85\x42\xaa\xd8\xbc\xf7\x5b\xf0\x55\x4f\xb9\x94\x6a\xf5\xb5\xb2\xdf\x82\xaf\x93\x16\xd5\x3a\x59\x39\x9b\x82\xaf\x71\xeb\x5a\xe2\x7d\x3c\x53\x05\x5f\xb3\xae\xb9\x7c\x8a\x78\xda\x54\x9e\x56\x46\xe7\xa6\xf2\xb4\xca\x50\x6c\x2a\x4f\x3f\x6c\x4b\x9b\xf2\xd2\xa2\x91\xdd\x94\x97\x56\xe6\xc1\xa6\xbc\xb4\x58\x72\x36\xe5\xa5\x1f\x56\xdc\x56\xa1\xd8\x24\x19\x90\x8f\x0d\x6c\xab\x50\x2c\x07\xc0\x7e\x0b\xc5\xf2\xcd\x54\x28\x16\xd4\xb4\x55\x28\x96\x75\xb4\x55\x28\x16\x65\x73\xab\x50\x2c\xa9\x29\x5b\x85\x62\xb3\x9e\x82\x7c\x55\xd7\x24\x1f\x3d\x53\x59\x6a\xcd\x82\xae\xf1\xd3\x1b\x90\x0f\x65\x63\x53\x96\x5a\x41\x77\xbb\x4b\x3e\xbe\x04\x65\xa9\x1f\xd4\xb6\xdd\x25\x1f\xdf\x93\xb2\xd4\x0f\x9e\x96\x3d\x90\x0f\x93\xd8\x1e\xc8\xc7\xea\xdf\x03\xf9\xfe\x59\xe5\x7b\x0f\x44\x07\x06\xee\x81\xe8\x55\x2f\x40\x74\xb4\xee\xed\x40\x3a\xc4\xad\x3b\x11\x3d\xe8\x75\x88\x8e\x0d\x6c\x0f\x44\x8f\xea\x98\x44\x57\x4b\x43\xab\x3b\x11\xbd\xa8\xa5\x1a\xc0\x7a\x03\xa2\xb3\x29\x6e\xd5\xdd\x25\xf7\x6c\x53\x77\x57\x1b\xd8\x9e\x88\x8e\x9f\x7a\xab\xe6\x6e\x51\xcb\xe5\x53\xad\x8e\x4d\xbd\xdd\x48\x64\xc8\xa6\xde\x6e\x04\x2b\x6c\x8a\xea\x46\xf5\x85\x82\xba\xb1\xe8\x5a\xe3\x4e\x7a\x46\x41\xdd\xc8\xf9\xbb\x29\xa8\xab\x64\x94\x4d\x41\xdd\x08\x0c\xdc\x14\xd4\x8d\x55\x7d\xd9\xfc\x8e\xe9\x42\x31\xdd\x88\x4e\xbc\x29\xa6\x1b\xb5\x18\x29\xa4\x1b\x25\x03\x85\x74\xa3\x16\x15\x85\x74\x23\x46\x9b\x4d\x11\xdd\xd8\x75\xa7\xe4\xa3\xd7\x14\xd1\xd5\x71\xb4\x17\xf2\x69\xea\x2e\xe4\x6b\xba\xc6\xf8\xb1\xe9\xef\x85\x7c\x68\xce\x7b\x21\x1f\x07\xc9\x5e\xc8\x47\xb8\xdc\x5e\xc8\x87\xfb\x64\x2f\xc6\x6f\xa9\x67\xc8\xa7\x0d\x73\x21\x1f\xc8\x61\x53\xd0\x37\x62\xde\xd9\x14\xf4\x95\x3a\xb1\x29\xe8\xab\xa2\x5e\x9b\x82\xbe\x2a\x5c\xb5\xb7\xe4\x63\x1c\x36\xf2\x69\x69\x6e\xe4\xd3\xcc\xda\xc8\xa7\x6d\x70\x33\x7e\x5a\xd2\x1b\xf9\x70\xc5\xed\x8d\x7c\xe8\x89\x7b\x4b\x3e\xf5\x0c\xf9\x38\xc2\xf7\xd6\xf8\xf1\xad\x37\xf2\x69\x73\xdb\xc8\x07\x8a\xd9\x07\xf9\x48\xa1\xde\x47\xe3\xc7\x9d\x87\xf1\xeb\xba\xa6\xf9\xc9\xdb\x29\x58\x1c\x89\x21\xd9\x14\x2c\x56\xfa\xf8\xa6\x60\xb1\x52\xd2\x37\x05\x8b\x45\x5f\xb5\x0f\xf2\x6d\xdd\xd9\xa9\xaf\x8e\x7c\x6e\x0c\x08\x49\x5b\x08\xe5\x8b\xe3\xe9\x21\x62\xa6\xd9\x97\xde\x9d\xfc\xe7\xbf\xfc\xc7\x7b\x98\xb4\xd6\xfc\xd0\x0f\x09\x3b\xfc\xf6\x03\x3f\x28\x4d\x6a\x5f\x7a\xa8\x75\xef\xb8\x3c\x24\x1d\x4b\x8e\xcb\x43\x8a\xba\x93\x5e\x44\xf5\x82\xaf\x0c\x8a\xd9\x54\xd4\x4f\xda\x2f\xa8\xa8\x9f\x40\x80\x5b\x15\xf5\x93\xde\x70\x69\xf9\x9d\x27\xd0\x17\xd4\xc2\x43\xd9\xe4\xf4\xa8\x85\xc2\x43\x34\xfd\x09\xa8\x93\x78\xa9\x8e\x63\xe8\x18\xa7\x5a\x8c\x6a\xd1\xef\x18\xd5\xaa\x37\x68\x55\xfa\x6c\x3f\x0f\xdf\x0e\x03\xe9\x79\xf8\x6e\x84\x83\x9e\x87\x51\xc5\xb9\x7c\x1e\xad\xca\x4e\x8b\x51\xc5\xf3\x75\xa8\xaf\x1f\xff\xc9\x56\x77\x1e\x06\x7c\xea\x05\x0c\x38\x30\xf0\x3c\x0c\x38\xde\xeb\xf3\x30\xa1\xb1\x28\x9d\x47\x9a\x2d\x02\x3d\xd2\x2d\x75\x4d\x9a\xb4\x0f\xd1\x89\xe8\x96\x2c\xdf\x13\xd1\x2d\x81\xa4\x27\xa2\x5b\xa2\xf9\x1d\x0a\xf1\x87\xa2\x6b\x0c\xbb\xfa\xa2\x42\xfc\x53\x4f\x61\x18\xd0\x07\x8e\x43\xe0\x57\x9b\x3c\x50\x89\x87\xf7\x99\xe3\x87\xd6\x74\x28\xa8\x2f\x3d\xe9\x50\x50\x5f\x7a\xd2\x51\x41\x7d\xf4\xa4\xa3\x82\xfa\xe8\x49\x87\x82\xfa\xd2\x93\x8e\x0a\xea\x33\x05\x4f\xd2\xd9\xad\xdf\x49\x37\x41\x86\xa4\xb3\x5b\xbf\x93\x6e\xc2\x80\x51\x50\x5f\x9a\xd1\x49\x1c\x60\x68\x46\x27\x49\xf7\xd2\x53\xa4\x7b\xe9\x4e\xe9\x5e\x4c\x82\x24\xdd\x4b\xbf\x93\xee\x45\x5f\x4c\xba\x17\x32\x98\x0e\x30\xfa\x62\xc8\x87\xbe\x73\x4c\xba\x17\x3d\x33\xe4\x43\xdf\x39\x86\x7c\x41\x4f\x41\x3e\xf4\x9d\x63\x3a\xa0\xe9\xa7\x21\x1f\xfa\xce\x31\xe4\x43\xdf\x39\x86\x7c\x6c\x8e\xc7\x74\x40\xeb\x29\xc8\x57\x75\x0d\xf9\x8a\x7a\x86\x7c\x1a\x3f\x93\xee\xc5\x1b\xb2\x0e\x68\xa4\xcd\xd2\xbd\x78\x5f\x96\x7c\x8c\x51\x46\x3e\xf4\x9d\x93\x25\x1f\x5f\x30\x23\x9f\xe6\x6e\x46\x3e\xf4\x9d\x93\x91\x0f\x7d\xe7\x64\xe9\x5e\xba\x13\xf9\xb2\x9e\x29\xdd\x52\xd7\x90\xaf\xa8\x9f\xd2\xbd\xf4\x14\xe9\x5e\x7c\xcf\x8c\x7c\x51\xef\x43\x3e\x6d\x3d\x05\xf9\x38\x6c\x4e\x41\xbe\xa2\x96\xe4\xe3\xed\x45\xf2\x21\x6d\x41\x3e\xb6\xd6\x53\x90\x2f\xa9\xa5\xf9\xa9\x3b\x35\x3f\xd5\x5a\x3f\x60\xfb\x29\xfb\x07\x6c\x3f\xe5\x7c\x60\xfb\x9f\xd6\xfd\x81\xb1\x4f\x0d\x3f\x30\xf6\x59\xf5\x2f\xfc\x76\xfc\xe0\xff\x89\xdf\xce\xea\x7f\xe1\xb7\xe3\x0a\xc0\x4f\xfc\x76\xd6\xfc\x0b\xbf\xdd\x18\xff\xc2\x6f\x37\xa6\xbf\xf0\xdb\x8d\xf6\x17\x7e\xbb\x31\xff\x85\xdf\x6e\x2c\x7f\xe1\xb7\x1b\xeb\x5f\xf8\xed\xc6\xf6\x17\x7e\xbb\xda\x57\xbe\xf8\xed\xfa\x3e\xf0\x13\xbf\xdd\x74\x7f\xe0\xb7\x8b\x19\x49\xf8\xed\x62\x46\x0a\x18\x71\xae\x21\x0b\x47\xce\xc5\x8c\xa4\xef\x79\x0d\x8c\xcd\xf8\x5d\x5f\x63\xb1\x94\x7f\x05\xe6\x5d\x5f\x7e\x51\xe9\xa8\xd7\x97\x58\xec\x53\x8f\x5c\x3f\xb6\xc8\x6b\xfb\xc7\x16\x79\xa9\xf5\x16\x80\xed\x57\x70\xf7\x3b\x7c\x57\x70\xf7\x3b\x7c\x57\x70\xf7\x3b\x7c\x57\x70\xf7\x3b\x7c\x57\x70\xf7\xc7\xf0\x41\xa5\xff\x73\xf8\x72\xfd\x7b\xf8\x72\xfb\x7b\xf8\x72\xff\x7b\xf8\xf2\xf8\x7b\xf8\xf2\xfc\x7b\xf8\xf2\xfa\x7b\xf8\x64\x93\xfa\x31\x7c\x2c\xbd\x84\x26\x79\x1d\x7a\x47\xd5\xa3\xbb\x0e\xa1\x7f\x0d\x2d\xc6\x94\xc0\x96\x7c\x1d\x20\xde\x8b\xf6\x73\x31\xa6\x28\x0c\xea\x3a\x40\x7c\xa1\xf9\x75\x80\x18\x0d\x67\xd9\xc5\xd0\xa2\x1a\xd0\x17\x30\x27\x7b\xf1\xc5\x60\x12\xd8\x5e\x2e\x06\x13\xd5\xc7\xb8\x30\x76\xcb\x00\x75\x07\x87\x2f\x81\x95\x77\xec\x1f\x06\x9a\x3b\xce\x0f\x03\xcd\x1d\xf7\x87\x61\xe7\xfa\x42\x8c\x8a\x37\xb8\x5a\x60\x9a\x05\x6b\xfd\x9c\x05\xae\xd9\xfe\x92\xff\x84\xbf\xe7\xc5\x79\xfe\x9e\x17\x27\xfe\x3d\x2f\x4e\xfa\x7b\x5e\x1c\xfb\x7b\x5e\x9c\xfc\xf7\xbc\x38\xe5\xef\x79\x71\xea\xdf\xf3\xe2\xb4\xbf\xe7\xc5\xe9\x7f\xcf\x8b\x33\xfe\x9e\x17\x67\xfe\x3d\x2f\xce\xfa\x7b\x5e\xdc\xff\xc8\x7e\xcf\xdf\xb2\xdf\xfb\x5b\x76\x0b\x21\xfc\x96\xdd\x42\x78\x7e\xcb\x6e\x21\xc4\xdf\xb2\x5b\x08\xe9\xb7\xec\x16\x82\xfd\x96\xdd\x42\xc8\xbf\x65\xb7\x10\xca\x6f\xd9\x2d\x84\xfa\x5b\x76\x0b\xa1\xfd\x96\xdd\x42\xe8\xbf\x65\xb7\x10\xc6\x6f\xd9\x2d\xb8\xde\xf8\x43\x76\x0b\x28\x7a\xec\x23\x16\x50\xf4\xb2\x7b\x29\x2c\x3c\x7f\x7d\x17\x0b\xcf\x7f\xbe\x4b\xfc\xcf\x77\x89\xff\xf9\x2e\xf1\x3f\xdf\x25\xfe\xe7\xbb\xc4\xff\x7c\x97\xf8\x9f\xef\x12\xff\xf3\x5d\xe2\x7f\xbe\x4b\xfc\xcf\x77\x89\xff\xf9\x2e\xf1\x3f\xdf\x25\xfd\xe7\xbb\x68\x73\xf7\xad\xde\x82\x36\xf7\xa9\xd6\xfa\xfb\x6e\xed\x98\xba\x5b\xbb\xa5\xee\xce\xf9\x6b\xe8\xb6\x90\xdb\xd7\xd0\x6d\x21\xf7\xaf\xa1\xdb\x42\x1e\x5f\x43\xb7\x85\x3c\xbf\xc6\x6c\x0b\x79\x7d\x8d\xd9\x16\xca\xf3\x35\x66\x5b\xa0\x30\x08\xc6\x6c\x0b\xa5\x7e\xf7\x12\x0b\xaf\x49\x3c\xd3\xda\x5f\x63\xb6\x05\x4c\xe2\x6e\xcc\xfe\x7f\x47\x8f\x05\x59\xcb\x03\x22\x60\x9b\x8c\xea\x66\x2d\x5f\x3b\xb7\x85\x5a\xbf\x76\x6e\x0b\xb5\x7d\xed\xdc\x16\x6a\xff\xda\xb9\x2d\x60\x57\xc7\xb0\x60\x01\xbb\x3a\x20\xd9\x42\x3d\x5f\x3b\xb7\x85\x7a\xbf\x76\x6e\x0b\x2d\x7c\xed\xdc\x16\xda\xf3\xb5\x73\x5b\x90\x95\xbd\xf0\x14\x59\xd9\x8d\x7e\xca\xca\x6e\xba\xb3\x7e\xb7\x51\x0b\x6d\x7c\xed\xdc\x16\x5e\x2b\xbb\x7e\xb7\xbe\x76\x6e\x0b\x58\xd9\xd1\x2d\x2d\x70\x30\x70\xec\x5a\x68\xf7\xbb\xe1\x5a\xc0\xca\x8e\x66\xeb\xfe\x9b\xcf\xa1\x61\x41\x56\xbe\xcd\x32\x93\x95\x6f\xeb\xda\xf8\xe2\x14\x0b\xb2\xf2\x39\x4e\xb1\xf0\x5a\xf9\xe8\x27\x56\xbe\xf8\xfe\xee\x7c\x51\x8b\x05\x59\xf9\x32\x4f\x91\x95\x2f\x33\xe9\x64\xe5\x2b\x3c\x45\x56\xbe\xca\x74\x91\x29\xaf\x32\xcd\x64\xca\xd3\xe4\xc1\x94\x87\x3d\xd7\x02\xa6\x3c\x30\x8c\x05\x99\xf2\xb2\xae\x81\x2c\x17\xdf\x45\xa6\xbc\xcc\x37\x93\x29\xaf\xe8\x99\xf3\x8b\x68\x2c\x60\xca\xc3\x9e\x6b\x41\xa6\xbc\x8a\xec\x32\xe5\x65\xf5\xfa\x7e\xf1\x8d\x85\xd7\x94\x87\x0c\x32\xe5\x05\xbe\xae\x4c\x79\x81\xa7\xcc\xf4\xc5\x37\x16\xa6\x7d\xf1\x8d\x05\x4c\x79\x8f\xe6\xcb\x2c\x5f\x7c\x63\x61\xd6\x2f\xbe\xb1\x30\xdb\x17\xdf\x58\x98\xfd\x8b\x6f\x2c\xcc\xf1\xc5\x37\x16\xe6\xfc\xe2\x1b\x0b\x73\x7d\xf1\x8d\x85\xb9\xbf\xf8\xc6\xc2\x3c\x5f\x7c\x63\x61\xde\x2f\xbe\xb1\xb0\xc2\x17\xdf\x58\x58\xcf\x17\xdf\x58\xc0\x94\x07\xbe\xb1\xb0\xd2\x17\xdf\x58\xc0\x94\xf7\x68\x96\xaf\xfc\xc5\x37\x16\x56\xf9\xe2\x1b\x0b\x98\xf2\xc0\x37\x16\x64\xca\x2b\xf4\x53\xa6\xbc\xad\x3b\xc7\x17\xed\x58\xc0\x94\x07\xda\xb1\x80\x29\x0f\xb4\x63\x41\xa6\x3c\x6d\x6e\xeb\x7c\xd1\x8e\x05\x4c\x79\xa0\x1d\x0b\x98\xf2\x1e\x6d\x59\x98\xf2\x1e\xad\x70\x99\xf2\x22\x5f\x70\xa7\x2f\xda\xb1\xb0\xed\x8b\x76\x2c\xec\xfc\x45\x3b\x16\x64\xca\x93\x44\x32\xe5\x35\xe6\xa7\x4c\x79\x95\x71\x7f\x4d\x79\xea\x0b\xa6\xbc\xa2\x6b\x32\xc5\xaa\x67\xcc\xcf\x86\xec\x32\xe5\x65\xe6\x99\x4c\x79\x95\x6f\x26\x53\x5e\xa5\x2f\x32\xe5\x35\xe6\x84\x4c\x79\x9d\xf9\x22\x53\x9e\x56\x9c\x4c\x79\xe5\x1f\x45\xbd\x2c\xc8\xca\xa7\x45\x75\x64\x85\xd6\x0b\x10\xbd\xeb\xe5\x12\x1d\x81\x64\xe5\xd3\xb6\x7b\x10\x5d\x53\xf7\xc8\x8a\xa9\x6b\x0c\xad\x36\xb7\x23\x2b\x2d\x1f\xfe\x20\xba\x36\xcc\x23\x2b\x26\x1f\xe2\x20\x7a\xe7\x23\x61\x2b\xc4\x9e\x6b\x41\x76\x42\x9d\x93\xd8\x08\xb1\xe7\x5a\xc0\x46\x88\x3d\xd7\xc2\x95\x15\x93\x9e\x61\x23\xc4\x9e\x6b\xe1\xca\xca\xae\x37\x48\x3e\x86\xe8\xca\x4a\xab\x6b\xc8\xa7\x49\x77\x65\x65\xe7\x4b\xc8\x7e\xa8\x25\x8d\xfd\x10\x7b\xae\x85\x2b\x2b\x2d\x4b\xf3\x4a\x3e\xf5\x4c\x56\x68\x97\xe8\x09\x1a\xda\x4d\x4b\x56\xe8\x4c\x0b\xf9\x86\xee\x44\x3e\xb7\xe7\xda\x13\x34\x7e\xba\x53\xf6\x3c\x5d\xd3\xd4\x1d\xb4\xe4\x45\xa8\xb4\xb0\x8f\x16\xdd\x29\xa3\x5d\xa3\x85\x7c\x6e\xcf\xb5\x27\xc8\x3e\xaa\x3b\xd7\xd7\x9e\x6b\x0f\xf6\x4a\xec\xb9\xf6\xc8\xd2\xf8\xb1\xe7\xda\x23\x6b\xe3\xc7\x9e\x6b\x0f\x16\x47\xec\xb9\xf6\x60\x56\xc4\x9e\x6b\x0f\x66\x45\xec\xb9\xf6\x60\x56\xc4\x9e\x6b\x8f\x47\xdf\xc8\x9e\x6b\xcf\x23\x2b\xad\xee\xa4\x17\x51\xbd\xe0\x2b\xbb\x3d\xd7\x9e\x07\x2b\x2d\x5b\xc9\xe3\x5a\xa6\xec\xb9\xf6\xb8\x86\x29\x7b\xae\x3d\x11\x4b\x73\xd2\x9d\xf4\x05\xcd\xe8\x89\x58\x8c\x1f\xb5\xe6\xd7\x9e\x6b\x4f\x5c\x5f\x7b\xae\x3d\x71\x7f\xed\xb9\xf6\x24\xf9\x4e\xf8\x1d\xa6\x43\xec\xb9\xf6\x24\x2d\xd8\x42\x4b\xb6\x77\x46\x20\xc9\xb7\x40\x3f\x31\x1d\x62\xcf\xb5\x27\x69\x55\x22\x3b\xa6\x43\xec\xb9\xf6\x60\x3a\x74\x7b\xee\x9f\x16\xa3\x3a\xf5\x14\x46\x75\x32\x8b\x30\x1d\x62\xb4\xb5\x07\xd3\x61\x5c\xba\xf3\x7e\x8d\xb6\xf6\x58\xf8\x1a\x6d\xed\xb1\xe7\x6b\xb4\xb5\x47\x26\x08\xd6\xe8\x63\xf9\x6b\xb4\xb5\xc7\xca\xd7\x68\x6b\x0f\x26\x40\x8c\xb6\xf6\x60\x02\x4c\xea\x0b\x26\x40\x8c\xb6\xf6\x60\x02\xc4\x68\x6b\x8f\xfd\x08\x01\xb0\xc7\x7e\x84\x00\xd8\x43\x2d\x7a\x1d\x8a\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x28\x35\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x9a\x67\xaf\x29\x4f\xbf\x93\x02\x82\x0c\x32\xe5\x15\xfd\x4e\x0a\x08\xa3\x22\x53\x1e\x9b\xf1\x23\x53\x5e\x50\x3f\xa5\x60\xfd\xc3\x50\x63\x8f\xac\x7c\xe8\x42\xcf\x6b\xe5\x63\x68\x5f\x2b\x1f\x8f\x94\x95\x4f\x0b\x5d\x56\x3e\xf4\x9d\x47\x56\x3e\xf4\x9d\x47\x56\x3e\xf4\x9d\x47\x56\x3e\x2d\x38\x59\xf9\xd0\x77\x9e\x82\xe8\x41\x4f\x41\x74\xf4\x9d\xa7\xe8\xec\xe6\x43\x14\x44\x47\xdf\x79\x0a\xa2\xa3\xef\x3c\x45\x56\x68\x06\xac\xe8\xec\xd6\x53\x64\x85\xe6\x5a\x45\x3e\xf4\x9d\xa7\xca\x0a\x8d\x7c\x55\xba\x17\x6f\xa8\x3a\xbb\x91\xb6\x4a\xf7\xe2\x7d\x8a\x70\x40\xdf\x79\x14\xe1\x80\xbe\xf3\x28\xc2\x41\x9b\x95\x22\x1c\x34\xad\x15\xe1\x80\xbe\xf3\x10\xe1\x20\x7d\xe7\x51\x84\x43\xd6\x9d\xb2\xb2\xeb\x99\xd2\x2d\x75\x4d\x56\x76\xf5\x53\xba\x17\x4f\x51\x84\x83\xb6\x33\x45\x38\x68\x5b\x22\xc2\x41\x1a\xce\xa3\x08\x87\xac\x3b\x91\xaf\xa8\x25\xf9\x78\xbb\x22\x1c\xd0\x70\x1e\x45\x38\x68\x6b\x55\x84\x43\x52\x4b\x53\x57\x77\x6a\xea\xaa\x05\x3b\xb9\xa4\x6d\xb0\x93\x6b\x9e\x35\xd8\xc9\xb5\x81\x35\xd8\xc9\xdf\xbe\xc0\xfa\xad\x59\x00\x25\x6a\xd0\x0c\x81\x12\x35\x18\xdf\x05\x4a\xd4\x70\x19\x5b\x28\x51\xc3\x66\xdc\xa1\x44\x7d\x67\x1d\x94\xa8\xef\x48\x43\x89\xfa\xca\xd0\x55\xaf\x48\x2d\x58\xbf\x39\xf4\x1f\xc7\x3e\x09\x7e\x12\x7b\xa0\x44\x7d\x16\xbd\x86\x12\xf5\x39\x7a\xbb\x53\x78\xc6\xf7\x77\x14\xa1\xd6\x51\x07\x25\x6a\xd4\x16\x02\x25\x2a\x8c\x39\xf6\x40\x89\xfa\x1e\x47\x43\x6c\xda\xf4\x53\x15\xfc\x50\x94\x1e\x2a\xf8\xd9\xc3\xfb\x1c\xfb\x64\xab\x7c\x4f\xe8\x52\x09\x97\xb3\x07\xba\xd4\xac\xd5\x01\x5d\x2a\x0c\x28\xf6\x50\xa6\x8f\xbc\x4f\x7b\x1c\xfb\x64\x72\x42\xed\x81\x4a\xb5\x24\xf5\xcc\xe5\x2b\xda\x76\x29\xd3\x47\x46\x82\x3d\x43\xec\xcf\xea\xa7\xcb\x57\x2b\xb2\x43\xb3\x5a\xb5\x4f\xa8\x80\x83\xd9\xbe\x0f\xcf\x85\x6a\xb5\x2e\x7a\x4e\x99\xbe\x7a\x98\xa3\x13\xfa\x64\x6d\x7e\xd0\xb0\x36\x54\xa7\x67\x8a\xf0\x3f\xef\xa5\xed\x1e\x2a\x56\xf2\x15\xed\x81\x8a\x95\xd2\xc5\xf6\x90\x2b\x5d\x34\x53\xa0\x62\x85\x2e\xc3\x1e\xa8\x58\x7b\xd7\xef\x26\x74\xc7\xc8\x02\x15\xeb\x78\xd4\x82\x7e\x58\xca\x0d\x54\xac\x43\x72\x42\xc5\x3a\x50\x08\x1f\xa8\x58\xc7\x52\x4b\xc1\xb7\x65\xaf\xc9\x97\x86\x8e\x75\xd6\x7f\x69\xce\x0f\x4c\xad\x13\x5d\xf2\x81\xa9\x75\x69\xd0\x1d\x22\xdd\x21\xcd\x62\x95\xf7\x83\x9c\xa9\xd7\x56\x18\x83\x99\xa0\x0e\x93\xf2\xd2\xf9\xee\x30\x29\x2f\x9d\xe1\x8b\x72\x54\x43\x6f\x99\xb4\xf4\x3b\xd8\x8b\xb5\x90\x16\x31\x9d\x56\xf7\xd1\x46\x42\x7d\x87\xad\xcd\x90\xfa\x0e\x5b\x1b\x33\xf5\x1d\xb6\x26\x1b\xf5\x1d\xf6\xe0\x77\x0e\x95\xf2\x1e\xba\xd3\xe5\xdc\x8b\x21\x71\xa8\x94\x8f\xce\xc0\x0d\xfb\xef\x65\xe0\xa9\xf6\x77\x31\xef\x3c\x2a\x27\xaf\xa3\x66\xc3\xb8\x1b\x91\x83\x6a\x7f\x57\xa7\xec\x16\xe3\xae\xde\x0e\xe3\x6e\xd5\x35\x68\x67\x25\x03\x04\xae\xd0\x08\xd8\x03\x81\xeb\xbb\xe5\x40\xe0\x1a\xb4\x59\x40\xe0\x1a\x24\x2d\x04\xae\x41\x0b\x14\x02\xd7\xb0\x79\x0a\x04\xae\x58\xbb\xed\x81\xc0\x95\xf2\xbc\xf6\x40\xe0\x4a\x9e\x9a\x3d\x10\xb8\x3e\x13\x69\x21\x70\x8d\x11\xf9\x20\x70\x8d\xd2\x14\x20\x70\x15\x0a\x78\x1c\x0f\x95\x77\x5b\xa1\xda\x5f\xd2\xb2\x13\xb9\xab\xf4\x65\xc8\x5d\x4d\x5a\x04\xe4\xae\xa6\xa9\x0a\xb9\xab\x69\xb4\x21\x77\xcd\xd2\x80\x21\x77\xcd\x92\x0f\x72\xd7\xa2\x03\x12\x72\xd7\xa2\x7e\x42\xee\x5a\x24\x1f\xe4\xae\x45\xfa\x30\xe4\xae\x25\x31\x46\x90\xbb\x16\x1d\x0b\xb7\xbd\xb1\xd0\x5b\xfd\x81\xc4\xb5\x08\xb1\x5c\x08\x50\xa7\x9e\xab\x2a\x7f\x6a\xb9\x1c\xe5\xe8\x49\x90\x87\x32\x32\x11\x82\xd7\xca\x3c\x8c\x10\xbc\x56\xd6\x54\x84\xe0\xb5\xa2\x5d\x46\x08\x5e\xab\xa7\xb5\x59\x84\xe0\xb5\xba\xa3\xd1\x22\x04\xaf\x8d\x83\x30\x42\xf0\xda\x86\x9e\x02\x29\x27\xda\x6c\x84\xe0\xb5\x3b\xfd\xbe\xc5\xd0\x7f\x47\x62\x5b\x84\xe4\xb5\xbb\x3f\xc5\x22\x24\xaf\xbd\xe8\x9a\x48\x3b\x33\x2d\x98\x39\xd9\x1e\xa3\xc7\x6a\x78\x76\x94\xb7\xdc\x84\x37\xd9\xaa\x22\x04\xb0\x1d\x04\x14\x21\x80\xed\x97\xa7\x78\xac\x86\xf7\x00\x2f\x91\x45\x48\x60\x07\x9b\x7b\x7c\x3e\xb1\xe2\xd4\x88\xb1\x08\x11\xec\x00\x33\x47\x88\x60\x87\xfa\xe4\x08\x2a\xc1\x2c\x63\x11\x22\xd8\xf9\xe8\x49\x70\x64\x82\xb5\xe2\x23\x8e\x4c\x46\x01\x22\xd8\x39\xd4\x43\x38\x32\x39\x7a\x22\x44\xb0\xa4\x01\x59\x7c\xc4\x91\xa9\x37\xc0\x2f\x89\x66\x1b\xc9\x6b\x58\xe0\x9b\x08\x11\xec\xd2\xe8\x91\xd3\xb0\x38\x4c\x23\x39\x0d\x6b\xf1\xb5\xc8\x69\xd8\x89\x39\x00\x49\xec\x46\x29\x8d\x90\xc4\x6e\x7d\x1b\x48\x62\x77\xd6\x33\xe1\x97\xec\xff\xb2\x3b\x47\xf8\x63\x37\xdb\x66\x84\x3f\x76\x6f\x75\x45\xd4\x93\x08\x0b\x7f\x2c\xe5\x65\x2c\xc2\x1f\xab\xcd\x2e\xc2\x1f\x7b\xa6\xba\x29\xea\x49\x5a\x54\xf8\x23\x15\xc6\xa2\x03\xbd\x72\xd1\x11\x23\xdc\xb2\xa4\x5e\x58\x84\x5b\xf6\x62\x33\x8a\xa4\x3b\xdc\xc6\xa0\x90\xee\x70\x87\x9e\x02\xf5\xe4\xd4\x35\xa8\x27\x81\x45\x91\x74\x87\x8b\x86\x13\xe1\x96\xbd\x57\xbf\xa3\xea\x9d\xe9\x0d\x9e\xee\x00\x2f\x8a\x45\xd2\x1d\x70\x25\x5a\xa4\x64\x7c\x38\x6a\x41\x87\xc8\xd6\x10\x49\x75\xa0\x3a\x8a\x45\xa8\xaa\x9e\xa8\x16\x9c\x87\x68\xc4\x11\xaa\x2a\xea\xc2\x5b\x84\xaa\xea\x69\xbc\x0f\xaa\xaa\xa7\xd1\x6b\x53\xba\x0a\xbd\x86\xaa\xea\xd1\xc2\x83\xaa\x0a\x6e\x6e\x8b\x4a\x73\xd0\xb0\x43\x55\x15\xb5\xf4\x4d\x25\x8f\x9e\x7d\xaf\x7a\xe0\x32\x92\x45\x6b\x11\xba\xaa\x84\x56\x15\xa1\xab\x4a\x18\x95\xa2\x2a\xfb\x61\x4a\x89\xaa\xec\x27\x89\x55\xd9\xcf\xb8\x13\xba\x2a\x03\x8f\x44\xe8\xaa\xe0\xaf\xb6\x98\xc5\xa2\xa7\x3b\xc5\xa2\xc7\x68\x53\xd9\xcf\x96\x5a\xb0\xe8\x69\xb9\x40\x65\x95\x1f\xfa\x89\x13\xfb\x56\xbd\xc1\x65\x94\x86\x17\xa1\xb2\x2a\x41\xd7\x60\xa7\x03\x49\x44\xa8\xac\x8a\x36\x25\xa8\xac\x8a\x36\x50\xa8\xac\x4a\x57\x3f\x61\xa7\xd3\xbc\x87\xca\xaa\x68\x8b\x82\xca\xaa\xe8\x7d\x50\x59\x15\x8e\xc4\x08\x95\x55\x39\xba\xd3\xe5\x2b\xfa\xd6\x50\x59\x55\x6d\xa7\x50\x59\xc1\xe5\x61\x11\xba\xaa\x5a\x75\x0d\x76\x3a\x8c\x18\x11\xba\xaa\xaa\x6d\x0b\xba\xaa\x7a\x74\x6d\xbf\x45\x63\x57\x53\x7f\x60\x7e\x03\x53\x46\x28\xab\x1a\xda\x64\x84\xb2\xaa\x61\xd6\x88\xf5\x79\x7f\x0b\x95\xad\x45\x47\x8b\xb5\x69\xfb\xaa\x50\xa7\x05\xdd\x0d\x75\x1a\x5a\x7c\x84\xd2\xaa\x6b\x56\x43\x69\x05\xc5\x9b\x45\x28\xad\xba\x66\x03\x75\xdf\x3b\x07\x73\xa4\xee\x7b\xc7\x5c\x16\xeb\x78\x7b\x40\xc2\x99\x45\x08\xb0\xba\xbe\x26\x04\x58\x7d\xeb\x2d\x3e\x5e\xfd\x30\xe7\x20\xc0\xea\x47\x7d\x85\x3e\x4d\x6b\xa7\xa1\x91\xe7\xf2\x39\x9c\x20\xc1\x1a\x1a\x33\x48\xb0\xc6\xe5\xb7\x90\x60\x4d\x14\xd0\xd8\xa0\x1f\x8b\xba\xe6\x72\x4e\x1d\x29\x10\x64\x4d\x94\x93\x08\x41\xd6\x0a\xf4\x1c\x82\x2c\x68\x8e\x2d\x36\x95\x1b\xab\x7b\x0f\x5d\x87\x82\x4c\xeb\x00\x92\xac\xa5\xaf\x02\x49\x96\xd4\xd8\x08\x49\xd6\xd2\x78\x43\x92\xe5\xc5\xba\xff\xff\x56\x0d\x7f\xd6\xda\x7c\x02\xf8\xb3\xde\x93\xa1\x8b\x03\x8c\xc1\x83\x3f\x6b\x37\xba\x0a\x7f\xd6\xd6\x92\x54\x59\x78\xac\xc5\x11\xfe\xac\x13\x19\x2e\xf1\x67\x75\x16\x21\x6c\xb8\x57\x87\x41\x17\xf9\x94\xde\x2e\xf2\x29\xdd\x49\x96\x9c\xb6\xdc\x0e\xf9\x94\x26\xb0\xca\xc2\x5f\xf5\xc5\xb3\xc8\x60\xa0\xb5\xe8\xc0\xb1\x09\x6c\x47\x07\x8e\xed\x41\x4f\x8a\x03\xf2\x29\x3d\x13\x6e\xad\x47\x27\xad\x03\x47\x83\x40\xdf\x22\x04\x5a\xf1\x7d\x26\xe4\x4c\x3a\x69\x1d\x38\x7a\x19\xd8\xa3\x8d\x06\x12\x2d\xd9\x88\x23\x44\x59\x51\x1b\x14\x44\x59\xb2\x50\x46\x88\xb2\xa2\xbe\x37\x44\x59\x51\x53\x0a\xa2\xac\xa4\xa5\x33\x21\x61\x42\x8f\x8c\x0e\x0e\x5b\xd2\x04\x83\x44\x2b\xa1\x71\x46\x48\xb4\x92\x34\x3c\x48\xb4\x28\x51\x60\x11\x12\xad\x34\x74\xcd\xe5\x48\xd2\xa1\x20\xd1\xa2\x0c\x81\x45\x80\x61\x3a\x6a\x41\xd0\xa4\x69\x0a\x89\x96\x61\x34\x88\x90\x68\x59\xd6\x53\x20\x68\xaa\xea\x35\x04\x4d\xb8\x53\x22\x24\x5a\xa6\x05\x06\x89\x96\x01\x9c\x23\x24\x5a\xa6\xc3\x49\xc0\x30\xcf\x7d\x8c\x27\x41\xa4\x95\x13\xf2\x43\xa4\x95\x75\x3c\x42\xa4\x95\xb1\x40\x47\x88\xb4\xb2\x36\x68\x88\xb4\xb2\x36\x45\x88\xb4\xb2\x0e\x7c\x88\xb4\xb2\x8e\x23\x88\xb4\x32\x48\x2b\x42\xa4\x95\xb5\x35\x40\xa4\x95\x35\xbe\x90\x65\x15\xa9\x1b\x8e\xec\x76\xcb\x6b\x53\x59\xc6\x22\x84\x59\x05\x64\x14\x37\x44\x4d\x49\x2d\x88\x9a\x30\x80\x44\xc8\xb4\x8a\x8e\x39\x47\x77\x26\x1c\x11\x21\xd3\x2a\x52\x1d\x20\xd3\x2a\x53\x4f\x81\x6c\x4a\xfa\x37\x64\x5a\x55\xc7\xbc\xa3\x3b\xcb\x07\x89\x21\xd3\x6a\x3a\x30\x20\xd3\x6a\xea\x39\x64\x5a\x4d\x1b\xda\xd6\x31\xb0\xf7\x69\x92\x03\x3e\x21\x7d\x73\x08\xb5\xba\x34\x43\x08\xb5\xba\x46\x07\x42\xad\xae\xed\x06\x42\x2d\x4a\x12\x5b\x84\x50\x6b\x68\x3e\x42\xa8\x05\x7f\xa5\x45\x08\xb5\x86\x94\x33\x08\xb5\x86\x24\x86\x50\x6b\x6c\xbd\x01\x3e\x21\x1d\x08\x10\x6a\x4d\xa9\x78\x10\x6a\xc1\x20\x69\x11\x42\xad\xa9\xaf\x08\xa1\xd6\x12\xe2\x80\x50\x6b\x49\x59\x82\x50\x6b\x0f\x46\x95\x7a\xee\x5b\xf3\xff\xc2\xc5\xa3\xdd\xe0\x8a\x8b\x87\x79\x0c\xd9\x16\xb9\x9b\x16\x21\xdb\x3a\x58\x9b\xa3\xea\xb9\x97\xb0\x4f\xd5\x6f\xbd\x1c\x60\x93\x52\x0b\xe1\xd6\xb9\x8c\x07\x84\x5b\x57\xf3\x18\xc2\xad\x1b\xff\x65\xfc\x88\x70\x71\x09\xb2\xc7\x3b\xde\x57\xde\xa5\x2e\x4d\xa8\x75\x10\xf3\x42\xd7\x73\xf4\x12\xa8\x6e\xa4\xcd\x90\xec\x1e\xb4\x91\x90\xec\x4e\xa5\x6c\x4b\x24\xbb\x2b\x00\x26\x91\xec\x1e\x9c\x91\xce\x12\x09\xed\x61\xe9\x4e\xe8\x7a\xbc\x22\xa0\x25\x12\xda\x1f\xcc\x04\x89\x84\x76\x18\xfe\x2c\x91\xb4\xfe\x44\xdd\x09\x65\x4d\xd2\x9d\x24\x3b\x37\xbd\x6f\x93\xfa\xfc\xd0\x82\x0f\x85\x61\x4c\x24\xa6\x27\x20\x66\x22\x31\x9d\x8a\xe6\x96\x48\x4c\x87\x6d\xda\x12\x89\xe9\x96\x74\x27\x9c\x27\xce\xef\x60\x89\xc4\x74\x2b\xba\xe6\xfd\x84\xe1\xd9\x12\x89\xe9\xd4\x97\xb3\x44\x62\x7a\xee\x7a\x83\x38\x4f\x16\x2d\x71\x9e\x20\xdf\x03\xe7\x09\x9b\x48\x7a\xc4\x79\x12\x68\x1d\x5a\x7a\x9f\x27\xf9\x76\xf4\xa8\xe4\xe0\xad\x67\xb4\x94\x14\xe1\x3c\x01\x56\xa6\x08\xe7\x89\xbe\x6e\x84\x2b\xc4\x74\x27\x5c\x21\x5d\x77\xc2\x15\x32\x74\xcd\xe5\xab\x6c\xa9\xc9\xc1\x5b\xaf\x20\xa6\xe4\xe0\xad\x57\xf4\xe4\x14\xe1\x3b\xe1\x18\x4e\x11\xae\x10\x3c\xe2\x29\xc2\x15\x72\x18\x69\x12\xd2\x3b\x10\x30\x45\x8a\xb7\x62\x2f\x4e\x24\xa4\x8f\xf7\x0d\xf0\x73\x00\xc2\x53\x82\x9f\x83\xad\x26\x25\xf8\x39\x30\xc9\xa4\x04\x27\x06\xda\x76\x4a\x70\x62\x30\x3f\x93\x23\x34\x5b\xe8\xec\x29\xc1\x89\xc1\x6c\x4d\x09\x4e\x8c\xac\x67\xc2\x89\x51\xf4\x4c\x38\x31\xd8\xc8\x52\x82\x13\x03\x47\x70\x4a\x70\x62\x74\xfd\x6e\xc2\xba\xa1\x16\xbc\x1e\x18\x84\x52\x82\xd7\xe3\xaa\x2f\x70\x62\xb0\x09\x24\x13\xef\x05\x77\x1a\xdc\x16\xa6\x6b\x10\x58\xe0\x5c\x4e\x06\x81\x85\xde\x6e\x10\x58\x74\xfa\x69\x10\x58\xe0\xfa\x4b\x06\x81\x85\x66\x96\x41\x60\x31\xd5\x9a\xac\xf2\xb6\x77\xd7\xdd\x90\x58\x68\x64\x1c\x69\xf5\x13\xd4\xf2\xbe\x1e\xc9\xe8\x48\xab\x1f\x36\xba\x94\x21\x79\xd0\x2a\xcf\xcf\xa7\xa8\x35\x16\xe4\x94\xa9\xd6\xaa\xf1\xc8\x54\x6b\x0d\xfa\xad\x51\x1c\x56\xd7\x32\xc5\x61\xf5\xbb\x42\x8b\x77\x3a\xda\x32\x88\x59\x2d\xe5\xf6\x79\xcb\xd0\x6f\xa9\xd8\x0a\x8a\x4d\x84\x0b\x4b\xa5\x48\x79\x7e\xef\x66\x04\x1d\x75\xd9\x29\x7a\xd3\xa6\x66\x2c\xf3\x80\xd4\x75\x78\xe2\x2d\x39\xea\xb2\xa3\xaf\x46\x3d\xf5\xa3\x59\x58\x28\x58\x0b\x72\x48\x05\x39\xc1\x02\xa9\x20\x27\x4e\xca\x54\x90\x53\xbb\x4f\x41\x4e\x8c\x46\xc9\x51\x97\xdd\xe7\x1f\xd5\x63\x2c\xb9\x4b\xcf\xa8\x5e\x66\xc9\x5d\x7a\x06\xd3\x86\x25\x07\x6b\x76\x09\xbc\x4a\x0e\xd6\xec\x6a\x59\x95\x8f\xf8\xe7\x51\xc7\x71\xfd\x10\x7a\x92\x0a\x5c\x0f\xe8\x51\xa9\x52\x98\x16\xb8\x98\x1c\x90\xd9\xc5\xb7\x9b\x1c\x8c\xd9\x5d\xba\x33\xd1\x42\x60\x07\x63\x76\xb7\xee\xf4\xd8\x49\xc3\xd5\x94\x2a\x22\x5e\x5d\xab\x38\x97\xe8\x0b\x15\x0b\x03\x20\x2e\x51\xb1\x50\xe6\x8e\x44\xc5\x42\x45\x50\x26\x2a\x16\x06\x6d\xb0\x54\x2c\x0c\xda\xb4\xa9\x58\x08\x6f\x9b\x25\xaa\x12\x06\x6d\x63\x54\x25\x0c\x00\xe7\xd4\xe2\xfb\x35\x2e\xa6\x82\x44\x65\xc2\x80\x29\x28\x51\x7d\x30\x00\xd2\x12\xd5\x07\xdf\x83\x89\xea\x83\x42\x06\x49\x80\xea\xcf\x93\x9a\x7e\x4b\x7f\xb5\xf8\xdb\xe7\xbb\x0b\x4a\x26\x2a\x14\xca\x56\x9d\xa8\x50\x18\x8e\xae\x31\xed\x70\x8f\xa4\x76\x3f\xbf\xc5\x1e\x9f\x70\xc9\x3d\xda\xba\xfa\xf3\x56\x5d\x5e\x3a\x7e\x70\xcb\x09\xa7\xa4\x9e\xde\xeb\x54\xb8\xb6\x24\xd7\x1c\xba\x73\x92\x6b\x4e\x87\xa3\x5c\x73\x38\x6a\x92\xa3\xa8\x64\x9a\xf2\x72\xcd\x61\xf9\x4b\x54\x2b\x7c\xf4\xd5\xe5\x9a\x03\x9c\xa7\x0e\xa7\x8a\xbe\x55\x5f\x9f\x1e\x68\x63\xc6\x3d\xf7\xe8\xeb\xc9\x3d\xa7\xa5\x2f\xf7\x9c\x8e\xf5\x11\xde\xdf\xc2\x8c\x6c\x09\x17\x9d\x22\x63\x12\x2e\x3a\x45\xf0\x24\x5c\x74\x0a\xd5\x4a\xb8\xe8\x22\xda\x52\xc2\x45\xa7\xf8\xa1\x84\x8b\x4e\x21\x57\x49\x48\xeb\x8f\xe2\xaa\x6d\x0e\x37\x9d\x22\x20\xd2\xe8\x9f\xeb\x60\xa1\x84\xab\x2e\x6a\x13\x19\x72\x37\xea\x9a\xdc\x8d\x8c\xe6\xb8\x9f\xdf\xe2\x61\x48\x54\x3e\x8c\x97\x37\xe1\x8e\x4b\x60\xd3\x84\x3b\x2e\x61\xa7\x4e\x33\xbd\xbf\x85\x7b\xc8\xd2\xb4\xcf\x7f\xb4\x49\x51\x1d\x31\x15\x3d\xcd\xe5\x4a\xa0\x92\x84\x4b\x2e\xa9\x97\x54\x47\x4c\x53\xad\x8f\x4c\x47\x8a\x03\x6e\x39\x0a\x76\x58\xc2\x2d\x97\x74\x80\xcc\xf5\xde\x7d\x1f\xbd\xd7\xc7\x29\x81\x30\x93\xa3\xac\x94\xb5\x22\xa9\x84\x48\xd1\x0e\x4b\xb8\xde\x28\xc5\x61\x09\xff\x1a\xa5\x38\x2c\x39\xc2\x4a\x19\x13\x50\xa2\x12\xa2\xe9\xb0\xa3\x12\xa2\x4c\x75\x09\xdf\x9a\x69\x6c\xf1\xad\x99\xd6\x35\xbe\x35\xca\x5f\x58\xc2\xb7\x26\x33\x5e\xc2\xb7\x66\x52\x5d\xf0\xad\x99\x64\x5c\x14\x25\x96\x22\x83\x5f\xcd\xb4\xa5\x0b\x7d\x59\xda\x9b\xa0\xe0\x84\x6f\xcd\x0e\x3d\xc0\xb7\x66\x52\x9e\xf0\xad\x99\xb6\x75\x7c\x6b\xa6\xf9\x8d\xff\x2c\xff\x59\x7d\xff\x7f\x5b\xc7\xb5\x96\x93\x5e\x80\xa7\xd8\xf4\x48\xf7\x84\x67\x09\x85\x6b\x2d\xeb\x0c\x74\xf0\x95\xf2\xe0\x93\x3a\xf8\xca\x82\xa9\x49\xe0\xeb\xcf\x1f\xda\x5e\x1c\x7c\xe5\x0c\x70\x4f\x0e\xbe\x72\xd6\x42\x70\xf0\x95\x33\x81\x66\x89\x14\x8f\xac\x4d\xde\xc1\x57\xce\xda\xd6\x4f\x7a\x9f\x7b\x34\x08\xc7\x3e\xff\xc1\x28\x92\x1c\x84\xe5\x8c\x49\x22\x1d\x3e\x83\x34\xc3\x83\xac\x78\xe8\xd3\x41\x56\x2d\x99\x83\x57\x7c\xeb\x29\x7e\x82\x67\x9d\x9f\x0e\xc2\x72\x3e\xea\xc5\xfa\xbe\x13\x79\x1d\x88\xe5\x7c\xf4\x16\x97\xb5\x68\xb2\x9d\xcf\x90\x2a\x0e\x22\x39\x18\xcb\x45\x8b\xde\xc1\x58\x16\xfc\x4e\x0e\xc6\xb2\x9c\x68\x09\x5e\x92\xac\x29\xed\x60\x2c\x17\x80\x5a\x72\x20\x96\x8b\xe9\xce\x42\x4b\xcf\x74\x39\x8b\x74\x49\x07\x62\xb9\x68\x6b\xa6\x66\x7b\xd1\xd7\x72\xb4\x95\x0a\x4e\x97\x44\xcd\xf6\xa2\x63\x8c\x9a\xed\x05\xf3\x42\xa2\x66\xbb\xac\xc1\x89\x9a\xed\x45\xa3\x4f\xcd\xf6\xc2\x31\x6d\xd4\x6c\xa7\x02\x89\x19\x35\xdb\x0b\x58\xce\xa8\xd9\x5e\x40\x37\x46\xcd\x76\x39\xf3\x2c\x94\x37\x6a\xe0\x60\x9a\xb1\x50\x3f\xff\xc9\x7a\x9a\xcb\x52\xd1\xd1\xec\x75\xb9\xd9\x16\x60\x35\xea\xb0\x57\xd3\xdb\xf6\xf7\xba\xf1\x1f\xa2\x16\x8a\xde\x48\xd4\x02\xd6\x4b\x73\xac\x95\xab\x9e\xf4\x3a\xcb\x6c\x1f\x7c\x1a\xf6\xe4\xcf\x7f\x00\xd2\x46\x15\x76\x58\x10\xcd\xa8\xb4\x5e\xf9\x26\x46\xa5\xf5\xfa\xde\x39\x3f\xbf\xc5\x20\x66\x0f\x3d\x65\x2e\xda\xf3\xe9\x29\xd4\xb3\x66\xcf\xf9\xfc\xc7\xf4\x7e\x7a\x0b\xaa\x32\x2a\xb2\x53\x3f\xc5\x8c\x04\x97\xc2\x61\x6c\x54\x64\xaf\x68\xfa\x46\x45\xf6\x8a\xbb\xcc\xa8\xc8\x5e\xd5\x0b\x2a\xb2\x37\xf0\xa5\x51\x91\x1d\xce\x45\x33\x2a\xb2\x37\x3c\x21\x46\x45\xf6\x86\xc1\xc4\xe2\xe7\xcb\x53\x6c\xd6\x8c\xaa\xec\xcd\x74\x7d\xd2\x42\x3a\xaa\xb2\xb7\xa2\x27\xb9\x1c\x0d\x67\xaf\x41\xe0\xd5\x30\xb6\x18\x04\x5e\xad\xeb\x1a\xb1\x20\xa8\x4e\x46\x75\xf5\x86\xa2\x64\xa9\x7c\x23\x43\x74\x37\xfd\x65\x2b\xb5\x44\x7f\x35\xef\x1c\x33\xe5\xc6\x0a\x36\xc7\x3e\xb9\x07\x5d\xf3\xfe\x74\x10\xbe\x59\x78\x9f\x2b\x73\x89\x91\x68\x03\x6f\xb9\x19\x55\xd6\x29\xd0\x62\x46\x16\x65\x21\x80\xd2\xa8\xb2\x2e\x3b\xbf\x39\x6e\x4a\xa5\xab\x55\x5e\x23\xe0\xd2\xec\x75\xec\x94\x61\x87\x34\xb3\xf6\x09\xec\x30\xbd\x97\x18\x15\x0e\x61\x73\x7c\x94\x7b\xd7\xdd\x94\xf9\x1e\xff\x0a\xfc\x33\x8a\xb4\xf7\xa9\x87\x20\x2a\x90\xc1\x28\xd2\xde\xf5\x89\x28\xd2\x2e\xd7\x82\x51\xa4\xbd\x03\xc7\x8c\x22\xed\xfd\xe8\x9a\xbd\x5d\xbd\x40\x1c\xcb\x9f\x30\x9d\x8b\x16\x61\x64\x5e\x16\xac\xb1\x46\x21\xf7\xa1\x0f\x4e\xb5\xf6\xf1\xe8\xd9\x3e\x34\x43\xd3\x8c\x6a\xed\x54\x92\x71\x83\xb5\x87\xe2\xb0\xf8\xa9\xd6\x3e\xd0\x33\x8c\x6a\xed\x03\xad\xd1\x32\x61\x3a\xc4\xae\x1a\xd5\xda\x07\xe0\xcc\xa8\xd6\x3e\x34\x71\xa8\xd6\x3e\x08\xef\x32\xaa\xb5\x0f\x4e\x63\xa3\x5a\xfb\xe0\xf0\x30\xaa\xb5\x8f\xad\x6b\xc8\xb0\xf5\x06\x64\x38\x7a\x0a\x32\x68\x31\x52\xad\x7d\xe8\x6b\x51\xad\x7d\x5c\xdd\xe9\x32\xc8\x20\x60\x54\x6b\x9f\xfa\x12\x54\x6b\x9f\x18\x90\x8c\x6a\xed\x53\x4b\x88\x6a\xed\x13\x10\x6e\x54\x6b\x9f\xda\xc6\xa8\xd6\x2e\x27\x8c\x51\xad\x7d\x82\x09\xcc\x71\x51\x96\xe9\xc0\x6a\x7e\x43\x94\xb6\x96\x09\xd5\xdc\xa7\x26\x29\xd8\x68\x0e\xbd\xd3\xe5\x90\x31\xc1\xc0\x3f\x73\xeb\x4e\x8f\x9e\xad\x45\x77\x6e\x5a\x8c\x05\x15\xdb\xa9\x7d\x69\x46\xc5\xf6\xa9\x0d\xc7\xb1\x51\xaa\x58\x45\x0d\x6c\xb4\x30\xb9\x18\x15\xdb\xdf\xe5\xd1\xd2\x1b\x83\xb4\x30\xde\x18\x55\xdb\x97\x16\x4c\x53\xdc\x13\xdf\xbc\xb5\xf7\xee\xad\xb9\xf3\xe2\xa3\xfa\xea\x52\xd6\xc6\xe7\x3f\xc4\x46\xdb\x8b\x91\xea\xde\x68\x7c\xa6\x2a\xee\x4d\xd7\xa9\xe2\x8e\xb1\xc3\xc0\x48\x32\x3a\xd9\x8b\x91\x3e\x0e\x2d\xeb\xe1\xf3\x1f\xcd\x43\x55\x73\x47\x47\x34\x55\x73\xd7\xac\x54\x35\x77\xbc\x17\xd6\xed\xfb\x5b\x5d\xcf\x5c\x47\x1a\x30\xd2\xd2\xac\xed\xf5\x73\xf7\xd4\xef\x89\xfb\x42\xd1\xb1\xfe\x95\xfd\xe8\xdd\xe3\x1b\xd1\xc5\xd7\x56\x75\x77\xad\x60\x55\x77\x7f\x74\x37\xdc\x8c\x20\x54\x53\x75\xf7\x47\x3d\x21\xf6\x8b\xe4\x3a\x53\x75\x77\xbc\x6a\x06\x4e\x52\xbc\x85\x39\x4e\x4a\x55\xc7\x3b\x38\x69\x17\xdd\x69\xb4\xf8\xb2\x8e\x93\x12\xb4\xc0\x66\xe0\xa4\xad\x91\x1d\x1f\x59\x65\x59\x36\xc7\x49\xe9\x3d\xc2\x08\x67\xdc\x1a\x31\xc7\x48\xa9\x05\xfd\x16\x19\x31\x0e\x19\xe1\x8c\x7b\xea\x9a\xf8\x27\xf5\xce\xf3\x79\x0b\x51\xf4\x46\x48\xa3\x2c\xe8\x06\x7e\x7a\x8f\x84\xf9\x7c\xee\xc6\xf6\x6d\x60\xa8\x2d\x55\x81\x90\x46\xaa\x8e\x9a\x39\x7e\x4a\x0d\x33\xb1\x39\x76\x4a\x4d\xc7\xbc\x63\xa7\xd4\x50\xe3\x0c\xec\x74\xfe\xc5\xf5\x6d\x06\xac\x3a\x18\x5c\x8c\x48\xc7\xa3\xb3\x77\xf2\x09\x80\xa7\x06\xa4\x3a\x5a\x42\x0e\xa9\x52\xd3\x20\x4c\x4d\xe1\xb6\xb7\xb4\x1e\x22\x1a\x0f\xb6\x5a\x03\x52\x1d\x6d\x07\x40\xaa\x03\xa0\x34\x20\xd5\x21\xec\xc6\x08\x59\x84\x32\xd3\x6c\xe5\xf7\xb9\xef\x90\x01\xab\x5e\xdd\x47\x05\xe6\xb5\x09\xae\xf6\xb9\x5b\x93\x1d\x68\xf5\xf9\x2d\x21\x7d\x3a\x15\x81\x56\x0a\x60\x32\xa0\x95\xe2\x1e\x0c\x68\xa5\x78\x18\x03\x5a\x5d\x7c\xc8\x46\xc8\xe2\xd5\xe2\x03\x56\x29\x02\xc6\x80\x55\x32\x25\x19\x81\x88\x57\xba\x82\x82\x0d\x81\x55\x06\x22\xea\xda\xb0\xa9\x16\x1f\xa2\xee\x9c\xb4\x98\x02\x8e\x88\xbc\x48\xb6\xb7\x08\x36\xd4\x66\xae\x60\x43\x30\x8c\x29\xd8\x50\x7a\xe3\x09\x1f\xda\x4b\xbd\x53\x01\x87\x3a\xbe\x14\x70\x88\xe7\xc2\x14\x70\xa8\x03\x9d\x80\xc3\xa0\x51\x20\xe0\x30\xe8\x18\x22\xe0\x30\xe8\x18\x22\xe0\xf0\xd1\x72\x27\xe0\x50\xb1\xed\x46\xc0\xa1\xa2\x75\x8c\x80\x43\x45\xc8\x1b\xc9\xec\x5d\x47\x0d\x01\x87\x8f\xa9\x67\x9b\x16\x33\x82\x80\x43\x19\x84\xec\x45\x41\x63\x2f\x9c\xd0\x46\x60\xe1\xa3\xa5\x49\x60\xe1\xa3\x79\x47\x60\xa1\x0c\x3b\x76\xf3\xe7\xb7\x43\xbf\x25\x78\x72\xeb\x6e\x64\xd9\xba\x1b\x59\x24\xe7\xed\xef\x6f\xb7\xe6\x01\xd5\xe3\x23\x76\x6f\x23\xf0\x50\x89\x53\x46\xe0\xa1\x12\xd1\x8c\xc0\x43\xa5\x58\x19\x81\x87\xca\x89\x33\x02\x0f\x21\x32\xb3\x4c\xe0\xa1\xf2\xec\x32\x81\x87\x4a\xaa\xc9\x04\x1e\xca\x29\x9e\x43\x7a\xfb\x73\x70\x7e\x66\x82\x0f\xe5\x26\xcf\x04\x1f\xa6\xa0\x27\xb9\x9c\x89\x51\xca\x54\x90\x4f\x38\x30\x33\xc1\x85\x32\xe1\x64\x02\x08\x13\x23\x91\x1d\xe5\x94\x04\x6e\xc8\x54\x90\x4f\x18\x35\xf3\x13\xde\x1e\x5c\x46\x2a\x13\x44\x98\x70\x3f\xe6\x37\x88\x70\xee\xc5\x86\x9f\x9f\x4f\x9f\x29\x84\x61\x99\x6a\xf2\xd4\x71\xb5\x4c\x10\x61\x92\xbc\x4f\xf9\xfc\x9e\x95\x90\xa9\x28\x9f\xba\x5a\x3e\x3e\x69\xea\xd9\x04\xb0\x72\x48\x65\x02\x02\x13\x86\xda\x4c\x40\xa0\x31\x0f\x33\x01\x81\x46\x46\x42\x26\x20\xd0\x50\x15\x32\x01\x81\xc6\x06\x9b\x09\x08\x34\xc2\x67\x33\x01\x81\x86\x8b\x36\x13\x10\x28\x17\x7e\x26\x20\xd0\xaa\xae\x79\x3f\x0d\xc7\x73\x26\x20\xd0\xd0\xfa\x33\x51\x7f\xd6\xf5\x86\x45\xf8\xac\xfa\x42\xa0\xed\xd6\xef\xce\x2b\xbf\xdb\x3e\xfe\xef\x36\x9e\x09\xfc\x33\x4e\x8d\x4c\xe0\x9f\x02\xbc\xb2\xbb\x95\xbc\xe0\x9e\xb7\x5c\xc4\x1c\x74\xcd\x45\xcc\x8f\x7e\xe7\xe7\xcb\x90\x50\x04\xfe\x29\x9a\x20\x13\xf8\xa7\x48\x83\x4c\xe0\x5f\xd6\xc4\x20\xf0\x2f\x67\xb5\x5c\xc4\x8c\x0e\x97\xdd\xad\x54\x14\x69\x90\xdd\xad\x54\x72\xd3\x9d\x8b\x96\xae\xb9\xf8\x79\xea\x0d\x87\x16\x9f\xc6\xa1\x55\xc9\x9a\xea\x46\x9c\x31\xda\x75\xa6\xe2\xbc\x4c\x33\x99\x8a\xf3\x19\xdb\x74\x06\x56\xc9\xa5\x96\xa9\x38\x4f\x59\x56\xcb\x54\x9c\xcf\x44\x0b\x64\x2a\xce\x97\xa0\xdf\x11\x67\x1c\xf4\x3e\x97\xaf\x44\x86\xd0\xdd\x51\xa5\x90\x85\x97\xa9\x46\x5f\xd0\x0c\x33\xd5\xe8\x4b\xd6\x9d\xc4\x1f\x6b\xc1\xc0\x5c\x33\x8e\x7e\x77\xbe\xb1\xcb\x7c\x6f\xbb\x9f\xff\xb0\xe9\xe4\x1c\x3e\xff\xc1\x91\x9a\x1d\x5b\x95\x82\xb6\x93\xa9\x53\x5f\xd8\x4a\x32\x75\xea\x0b\xa1\x6d\x99\x3a\xf5\xa5\xab\x85\x3c\x68\x84\x99\x20\xbf\x49\x68\x5a\xa6\x4e\x7d\x61\x93\xcc\xd4\xa9\x2f\x1c\x12\x99\x3a\xf5\x45\xa3\x00\x33\xcd\x7c\xf4\xf6\x4d\x8b\xef\x87\xbb\x69\x68\xf2\x52\xa7\xbe\x62\x7e\xc9\xd4\xa9\xaf\xd8\xc8\x73\x79\x3e\x0c\xd6\x55\xff\x21\xa6\x9a\x63\x23\x97\xf4\xb9\x8e\x6d\x37\x17\xfb\xfe\x47\xbf\x70\x59\x65\x9e\xc9\xd4\xac\xaf\x9a\x7f\xd4\xac\xaf\x5a\xa8\xa5\x7d\x7f\xcb\xb7\x28\xfd\xf3\x1f\xad\x97\x32\xbe\xf7\x20\x29\xf5\xeb\x6b\xd5\xf5\xf5\xbd\x8e\xec\x8e\xb7\x4a\xd5\xf7\x2c\x5f\x4e\x6e\x0c\x52\xb9\x10\xa5\x84\x72\x91\xa9\x71\xaf\xf8\x92\x4c\x8d\xfb\xaa\x51\xa7\xc6\x7d\xe5\xe0\xcd\xd4\xb8\xaf\x92\x92\x1a\xf7\x72\x40\x67\x6a\xdc\x57\x2c\xef\xb9\x96\x37\x06\x5b\x9e\x93\x5c\xeb\xe7\x3f\x9a\x7f\xb5\x7d\xef\xd1\x33\x3a\x3d\xd1\xdb\x06\x2d\xfa\x4c\xbd\xfb\x06\xea\xc9\x75\x7d\x7e\x0b\x6a\xce\xd4\xbc\x6f\x49\xfd\x3e\xb4\xf4\xdc\x4b\x8b\x19\x45\xcd\xfb\xa6\x35\x41\xcd\x7b\x19\x74\x32\x35\xef\x65\xd0\xc9\xd4\xbc\x6f\x59\x77\x1a\x2d\x24\xf4\x00\x41\x2f\x9a\xe3\x2d\xe2\xe7\xb5\xab\x50\xf3\x5e\xc1\x97\x99\x9a\xf7\xad\xea\x99\xc8\x88\x51\x38\x53\xf3\xbe\x69\x1d\x50\xf3\xbe\x81\x52\x73\x63\x3e\xeb\xf0\xed\xf4\x1a\xc4\x95\xa9\x64\xdf\xd0\xea\x33\x95\xec\x1b\x11\x72\x99\x4a\xf6\xd4\xe4\xb5\xdc\xbf\x23\xa1\xf9\xd4\x3f\x23\xb1\x75\x78\x74\x7a\xa8\x31\xef\xf4\x70\xe5\x7f\x6d\xeb\x9d\xce\x2f\x75\x89\xce\xa3\x95\xe5\xce\x00\x1c\x5d\x63\x00\x34\x39\x06\xc1\xfd\x3a\xfd\x07\xc1\xfd\x41\xd7\x1c\x4c\x4d\x9d\x4e\x23\x7d\xba\xaa\x73\xd5\x01\x95\x17\xde\xf1\x96\x8b\x2a\x4b\x54\x76\x40\x55\x3a\xfe\xe6\x3c\x48\x62\xd0\xe9\x3d\x48\x62\xd0\x46\xef\x60\xaa\x28\x4b\x2a\x03\xa6\xe6\xd0\x1b\x48\x60\xd0\x20\x0c\x12\x18\x00\x53\x79\x90\xc0\x30\xf5\x94\x43\x4b\x6f\x70\x19\x3b\x4e\x9d\x3c\x91\x11\x58\x95\xe7\x8f\x82\x05\xf4\x6e\x7e\x92\x18\x64\x07\xcb\x33\x7d\xef\x61\x01\x38\xa0\x2a\xfd\xf0\x9d\x26\xf2\x5c\xb5\xd8\x24\x31\x6a\xe5\x89\x3c\x00\xcb\x3c\x49\xc8\xb8\x4c\x3f\x47\x46\x85\x82\xc6\x96\x1d\x19\x95\xa1\x4d\xd2\x43\xfd\xca\x90\x06\x34\xcf\x27\x71\x42\xdb\xa6\x23\xa3\x32\x88\x29\xcf\x8e\x8c\xca\xd0\x52\x59\x24\x5d\xe8\x8b\x2e\x8a\x10\xe8\x30\x59\x24\x5c\xa0\x6f\xe6\x45\xc2\x05\x1a\x66\x5e\x9f\xe9\x77\x83\xde\xe2\x63\x23\x13\x57\x86\xc1\x6e\x62\x64\xca\x8e\x8a\xca\xc0\xf4\x90\xd7\xfc\xa6\x76\xe8\x69\xc8\x33\xf4\x5b\xe4\x91\xd6\xe5\xc8\xa8\x50\xce\xc1\xb2\x23\xa3\x32\x74\xf4\x3a\x32\x2a\x0a\x54\xcb\x1b\x39\xd1\xad\xf3\xfe\x26\x98\x48\x49\xd9\x9f\xb1\xb9\x98\x0a\xb3\xfb\x93\x8a\x22\x89\xf3\xd6\x56\x76\x3e\xda\xe0\x26\x75\x04\xd2\xa0\xfc\x7a\x8a\xce\x5e\x49\xbf\x20\x29\xe4\xd1\xd3\x3c\xf9\x85\x12\xc6\x96\x49\xc4\x9a\xd2\xf3\xc0\x45\x53\xdb\x28\xb8\x68\x12\x74\x90\xc1\x45\x53\x73\x1c\x5c\x34\x31\x3a\x65\x70\xd1\xd4\xf8\x80\x8b\x64\x2e\xcb\xe0\xa2\x49\x76\x40\x06\x17\x4d\xdc\x78\xf9\xf4\xb7\xaf\x14\xd3\xf5\xa8\xc4\x3f\xd7\xf5\x55\x41\x3c\x53\x47\x0d\x69\x54\x13\xf4\x95\x41\x3b\x8b\x28\x94\x0c\xda\x59\x41\x77\x1a\x2d\xdd\xe9\xbd\xa3\x56\x8d\xe5\xab\x4d\xea\xee\x45\xd6\x67\x06\xed\x2c\x1d\xa1\xa0\x1d\x61\xaa\xec\x68\xa7\xc8\x1e\x9e\x41\x3a\x4b\x4a\x1b\x48\x47\x51\x31\xd9\x91\x4e\x5a\xda\xd8\x40\x3a\x8a\xaf\xce\x20\x9d\x05\x32\xcb\x20\x1d\x99\xa1\x0a\x48\x67\x11\x0c\x5d\xa0\x1b\x5b\x5b\x2d\x64\xc4\x40\x5a\x48\xb1\x5a\x98\x40\x0a\x28\x67\x1d\x3d\x25\xbf\x52\x6d\x0c\x35\x05\xa4\xf3\x69\x91\x9a\xc3\x8c\x29\x20\x1d\x0a\x50\x5b\x21\x8d\x6a\x33\x07\x0a\x69\x54\x3b\xe9\x9d\x2e\xc7\xe6\x6b\x14\x50\xd0\x2e\x7a\xa6\xcb\x21\xa3\x52\x71\x94\x53\x3c\x8a\xe9\xff\x6e\xe5\x85\x0c\x2a\x2a\xed\x58\x01\xf8\x6c\x40\x41\x01\xf8\x6c\x26\x43\x79\x3e\x43\xb5\x4d\x2f\xa9\x9f\xff\x60\x25\x2a\x4f\xfb\xfe\x87\x0f\xf3\xf4\xcf\x7f\xd0\x9a\x0a\xd9\x54\x9b\x85\x5b\x00\x48\x9b\x29\x58\xc8\xa6\x92\xcd\xaa\x90\x4d\xa5\xc8\xf4\x02\x78\xda\x49\xd7\x10\x17\xfd\xa4\x00\x9e\xa8\xd3\x68\x05\xf0\x44\xdd\x1f\x2b\x80\xa7\x4d\x7c\x6b\x01\x3c\x9d\xa4\x16\x15\x62\x1e\xfd\xce\x4f\xf6\xcd\x86\x59\x00\x4f\x07\x64\x51\x48\x7d\x3a\xa6\x67\x92\xde\x84\x46\x50\x94\xde\x84\x56\x55\x1c\xe5\xa4\xad\x67\x92\xde\x74\xba\xae\x79\x5f\x0e\x36\xd1\x02\xca\x51\x9e\x6b\x21\xbd\x49\xc1\x4f\x45\xe9\x4d\xc0\xdf\x02\xca\x51\xf0\x53\x51\x35\x17\x7d\x61\x55\x73\xb9\xba\x46\x7a\x13\x4b\xaf\x80\x72\xb4\xdd\x16\x50\xce\x45\xcb\x2a\xa0\x9c\x1b\xf5\x86\xcd\xfb\xf8\x2e\xa0\x9c\xab\x69\x97\xee\x3b\x86\x32\x3d\x15\x90\xce\x65\x9b\x2f\xa6\x14\x2e\xa4\x32\xa5\x70\x31\x47\x8c\x14\x2e\x2c\xf9\x05\xa4\x43\x3d\x21\x2b\x20\x9d\xcb\x81\x5b\x4c\x29\x5c\x7a\x03\x29\x5c\x00\xd2\x02\xd2\xb9\x98\x4f\x0a\x48\xe7\x0e\x5d\xf3\x43\x7c\x73\x2c\x14\x43\x0e\x2d\x4b\xa1\x99\x1c\xf6\x7a\xdf\xe2\x63\x75\x41\x57\x85\x34\xa6\xa0\x65\x49\x1a\x53\xd0\xb7\x23\x8d\x29\x60\x48\x29\xaa\xd6\x92\xc3\xde\x41\xff\xf1\xbc\x09\x8a\x6f\x5b\x21\x95\x29\x98\xae\x15\x5a\x7c\x11\x52\x99\x02\xba\x6e\x01\xe5\xec\xae\xdf\x79\x7a\x4c\x40\x97\x2d\xa4\x32\x05\x14\x99\x42\x2a\x93\x78\x40\x0a\xa9\x4c\x01\xeb\x6d\x21\x95\x29\x34\xb5\x3c\x65\x44\xa1\xc0\x25\xdf\x4f\x5f\x39\x02\x0b\xe9\x4c\x41\x5f\x93\x74\x26\x19\xdc\x4a\x89\x9f\xbb\x51\x1c\x0a\x29\x4d\x01\x15\xae\x90\xd2\xa4\x5c\x8e\x42\x4a\x53\xd8\xfa\x2d\x69\x69\xfa\x22\x54\xe7\x17\x3d\x41\xa1\x3a\xbf\x28\x1d\x0a\xe9\x4e\xa2\xc8\x28\x85\x31\x43\x65\x2a\xa4\x3b\x29\xcc\xb8\x90\xee\x24\x1a\x8c\x42\x75\xfe\x27\xeb\x0d\xa4\xdd\x65\xf5\xd3\x0f\xcf\xcd\xc1\x5e\x48\x75\x7a\x34\xce\x54\xe7\x7f\x40\x9d\x85\x34\xa7\x87\x63\xaf\x90\xe6\xf4\x0c\x5d\x23\xed\x0e\xc3\x69\x11\x5a\xc9\x61\x2b\x99\xb0\x90\xce\xf4\xa0\xde\x16\xd2\x99\xc4\x87\x52\x1c\xa9\x54\xd1\xeb\x15\x47\x2a\xe9\x10\x6c\x50\x48\x65\x12\xcf\x60\x21\x95\x29\x26\x3d\xc5\xe5\x88\xa6\x77\x7a\x1e\x8f\x68\x16\x0a\xb5\xfc\xe3\x9f\xdd\xe4\xff\x6f\xdd\xed\x79\x73\xfb\x14\xd3\x59\xc8\x64\x12\x31\x4e\x21\x93\x29\x72\xae\x16\x32\x99\x44\x49\x55\x5a\xfd\xfc\x56\x8b\x8a\x6c\xa6\xa8\x8d\x98\x72\xff\xa2\xc3\x29\x64\x32\xc1\x53\x6e\xa5\x21\xa6\x16\x38\x99\x4c\x62\x85\x28\xee\x50\x72\x4a\x64\x6f\x1d\x5a\xea\x0f\x62\xa2\xc7\x16\xd2\x95\xa2\x0e\x0e\xd2\x95\x92\x3e\x24\xe9\x4a\x09\x60\x5e\x1c\xd6\xa4\xd3\xf4\x3b\x97\x43\xc4\x47\x85\x94\x24\x91\x22\x15\x87\x33\x35\x25\xdd\x49\x61\x2b\xf4\xae\x42\xb9\xff\xa4\x2d\x8b\x60\xba\x83\x46\x50\x28\xf7\x9f\x00\x71\xa5\x2b\xb5\x22\x7e\x36\x0d\xc7\x2d\x35\x11\x66\x58\x06\x7d\x6d\x6a\xd1\x57\x8c\x45\xc5\x71\x4b\x95\x2d\xb0\x38\x66\xa9\x49\x07\xa8\x63\x96\x9a\x00\x72\x65\x20\x87\xbe\xfe\x40\x0e\x7c\x0f\x65\x20\x07\x86\xa4\x32\x90\x63\xe9\x4e\xe4\xc0\x96\x5f\x06\xd9\x9c\x47\x7d\x41\x0e\x34\xd5\x32\xc8\xe6\xd4\x31\xe1\x98\xa5\x1a\x61\xa1\x65\x50\x9c\x4b\x5f\x7f\x92\xcd\x89\x59\xa4\x4c\xb2\x39\xb5\xe4\x26\xd9\x9c\x3a\xf2\x27\xd9\x9c\xda\xe6\x26\xd9\x9c\xfa\xa6\x93\x6c\x4e\x0c\x1c\x65\x92\xcd\xa9\xaf\xe4\x18\xa6\x8a\xcb\xa3\xcc\xf6\x7e\xe1\x63\xba\xdb\x65\x54\x78\x66\x99\x14\x21\xd3\x76\xe6\x38\xa6\x1a\xf6\xd7\xe2\x38\xa6\xda\xd0\x73\x37\x2d\xbe\xcd\x44\xc6\x21\xa9\xc8\x58\xd5\x37\x5d\xc8\x08\x54\x2e\x0b\x19\xc1\x73\x65\x21\x23\xe6\xb8\xb2\x90\x11\x3a\xa4\xb2\x90\x51\x47\xaf\x3c\x3f\x39\xee\x9b\x75\xb7\xb2\x56\xf5\xa4\xfa\xb9\x8e\x0f\xa1\x38\xc6\xa9\x19\x77\x62\x59\x64\xae\x4a\xf3\x73\x8c\x53\x73\xd4\x6f\x7d\x4e\xbe\xc7\xe8\xc2\xd0\x91\xd3\x5e\x8f\xde\xe4\xf2\x64\x8d\x84\xe3\x98\x9a\xa1\x1c\x28\x8e\x63\xaa\xd8\x51\x8a\xe3\x98\x9a\x35\x2e\x8e\x61\x6a\xae\x6a\x19\x2d\xbe\x9f\xfb\x82\xaa\xcc\xa0\x65\xd3\x57\x22\xa2\x0a\xbe\x20\x4a\x01\x5a\xd9\xf4\x55\xdb\x24\xd1\x71\x17\x23\x48\x71\x5f\x50\xcd\xda\x2d\x1c\xf3\x54\x2a\xf4\x5b\x39\xf4\x53\x07\xd1\xa1\x9f\x84\x4d\x94\x43\x3f\xa5\x18\x1e\xfa\x09\x16\x2b\x8e\x5b\x6a\xd6\x5c\x3e\x64\x03\x83\x36\xca\xa1\x9f\x38\xe0\x8b\xe3\x96\x5a\x74\x08\x1d\xb2\x81\xa5\xe4\x1c\x65\x03\xeb\x29\x64\x03\x07\xbd\xdd\xf7\xaa\xab\x1d\xef\x9c\xf7\x7b\x9f\xa0\xff\x90\x11\xac\x15\x73\xe3\xe7\x3a\x41\xe1\xe5\x92\xf9\x2b\x05\xea\x92\xf9\x1b\xdb\xbf\xb6\x6d\x07\x40\xb5\x48\xb7\x72\x00\x54\xc5\x23\x51\x6e\xfd\xbc\x04\x5b\x6a\xb9\x24\x3e\x63\x45\x2e\x17\x51\x71\x83\x14\xa5\x12\xfd\xb9\x1b\x08\x5d\x2e\xe2\x9a\xee\x46\xdc\xac\x0e\x22\xee\x56\xe7\x49\x7e\x96\x6e\x71\x11\x15\x87\x5d\x0d\x24\x3f\xb3\xc4\x6a\x20\xf9\x99\xd3\xb2\x06\xc4\x44\xf7\xaa\x02\x3a\xd9\x5e\x6b\x5f\x0d\xc8\x43\x7f\xab\x02\xdc\xfe\x5c\xcf\x7a\xb6\x0f\x9d\x42\xe2\xaa\x02\xdc\xb2\xed\x8d\x93\xb1\x06\x12\xa1\x81\xc7\x35\x90\x08\xfd\xe8\xd9\x24\x42\x63\x09\xac\x0e\x86\x6a\x4d\x7a\xee\xf9\x3c\x69\xe8\xdd\x1e\x77\x1f\x38\x28\xaa\xdc\x42\x7f\xae\x13\xd3\x52\x9f\xe7\xf3\x1f\x8c\x29\xd5\x41\x53\xad\x40\xec\x2a\xb7\x50\xb6\x2d\x7c\x50\x1d\x1d\x55\x91\x00\xd5\xe7\x23\xfb\x31\xfd\xc7\xe3\xf0\xc3\xfb\x7b\x9f\xb2\x0a\x9e\xab\x8e\x8c\x6a\x45\x03\xab\x0f\xc9\xdf\x2c\xa6\xfa\x20\x33\x66\xa8\xfa\x20\xd7\x51\xeb\xd0\xd2\x53\x2e\x2d\xde\xe7\xa8\xa7\x2a\xf0\xad\xc6\x4f\x72\xf7\x22\xa9\xa3\x46\x92\xbb\xd1\x47\xaa\x23\x9f\xda\x88\x57\xaf\x8e\x7c\x6a\x23\x62\xa9\x52\x1b\xb3\x3d\xba\xe6\x63\xd8\xa2\xde\xe2\x72\x34\x74\xd9\x4a\x6d\xcc\xc6\xec\xac\x0a\x93\xfb\xf3\xce\xad\xdf\xba\x2c\xad\xe9\xba\x8f\x9f\x82\xdf\x6a\xa4\x7e\xa4\xe4\x74\xb7\x52\x55\x28\x5c\x8d\x24\xb1\xeb\xfb\x44\x92\xd8\xd9\xac\x6b\x22\x89\x1d\x1b\x78\x75\x44\x55\x1b\x19\x14\x35\x21\x07\x9a\x6b\x4d\xf9\xed\x8f\x18\x79\x6a\x22\x51\x1d\x1b\x77\x4d\x24\xaa\x3f\x7a\x2e\x89\xea\x51\xcf\x25\x51\x5d\xf3\x18\x62\x08\xa5\x4e\x55\x47\x4e\x26\x56\xba\x0a\x31\x44\x2f\x7a\x03\x49\xea\x6c\xaf\x15\x62\x88\xae\x95\x04\x31\x44\xd7\x4a\x82\x18\xa2\x6b\x7e\x42\x0c\xd1\x41\x7f\x15\x62\x88\x0e\xd6\xad\x10\x43\x74\xdc\xf7\x15\xf2\x87\xce\xf1\x54\x1d\x19\x99\x08\xd7\xaa\xc2\xea\x72\xde\xf7\x7d\xee\x67\x4c\xee\xfb\xec\xc1\x2f\xf8\xb6\x10\x40\x0c\x50\x4e\x85\x00\x62\x40\x25\x51\x21\x80\x18\xfa\x3e\xd4\xb9\x14\x45\x5b\x85\x00\x82\xe2\xcb\x56\x41\x4e\xca\x13\xad\x20\x27\x8a\x2f\x5b\x05\x39\x0d\x1c\xae\x15\x02\x88\x41\xb8\x46\x05\x35\x0d\x62\x9c\x2a\xa8\x49\x54\x54\x15\xd4\x34\x34\xb7\x40\x4d\xca\x2f\xad\x8e\x9a\xea\xc0\x7a\x5e\x41\x4d\x43\xb3\x0c\xd4\x34\x40\x95\x15\xd4\x34\x86\xde\xa7\x63\xb4\x6c\xe1\x84\x4a\x3a\xd2\xa3\x6f\x03\x72\x1a\x53\x7d\x45\x46\x30\x68\x25\x1d\xe9\x99\xff\x8a\x56\xa9\x45\x5c\x03\xbc\x12\x7e\x88\xa1\x2d\x0e\x30\x35\xb0\xd0\x56\xb9\x8c\x72\x79\xa3\x6e\x6b\xc9\xdf\xff\xf0\xa1\x4b\xf9\xfc\x87\x13\xae\x02\xac\x26\x9a\x6c\x05\x58\x4d\xb4\x86\x5a\x98\x9a\x5a\x0e\x0e\x9e\x4c\x49\x20\x15\xf0\x34\x41\x00\x15\xf0\x34\x4d\xcf\xa4\x6c\x29\x27\x6a\x05\x3c\x4d\x6d\xd2\x80\x27\xaa\x60\x5b\x05\x3c\x4d\x00\x76\x05\x3c\x29\x73\xaf\x02\x9e\xa8\x9e\x6d\xb5\x7e\x64\x51\x4a\x53\x25\x35\x49\x00\xa9\xc2\x13\x31\x35\x50\x00\x2b\xd9\x22\xab\x03\x2b\xe7\x06\xf2\x96\x0f\xe9\x9c\xea\xcf\xa4\xc5\xf7\x05\x58\xcd\xa5\x6b\xc8\x08\x3c\xad\x55\xc7\x40\x7d\x5d\x4b\xb5\xde\xcf\x7f\x24\x01\x00\x6b\x6a\x3a\xc0\x13\xa1\xb0\xbf\x0a\x4f\x84\x6c\x9c\x55\x3c\x11\xda\x7c\xc5\x13\x81\x7d\xba\x82\xae\x14\xda\x57\x41\x57\xb2\x71\x56\xf1\x44\xe0\x68\xaa\xe2\x89\xd0\xc6\x02\xb2\x5a\x68\x79\x55\x1c\x11\x59\xbf\x83\x23\x82\xf8\x8c\x2a\x8e\x08\x8c\x01\x55\x1c\x11\x68\x95\xb5\x7d\xe4\x54\x06\x5f\x6d\x1f\x39\x15\x0b\x55\x15\xae\xf7\xe7\x3f\x98\x17\x2a\x28\x6b\x0d\x5d\x8f\xdf\xeb\x8c\x56\xcf\x9f\xff\xa0\xfd\x56\xd0\xd6\x22\x06\xba\xca\x81\xf4\xe7\xba\x36\x2a\x10\xd7\xd2\x01\xda\x3f\x1c\x18\x47\xb3\x5f\x61\x79\xb9\x6e\xd1\x99\xd5\x8e\x8c\x9a\xaf\x4a\x63\xfa\x73\x5d\x1b\x44\x47\xce\xab\x1e\xfb\x9c\x95\xc9\xa5\xba\x37\xc9\x59\x02\xfe\xb4\x40\x65\x1b\x94\x58\x41\x65\x32\xbb\xd5\xf1\x91\xed\x12\x7b\x51\xe5\x51\xfa\xf3\x1f\x8d\x3c\x08\x4c\xc6\xcc\x0a\x02\x13\xe5\x5b\x1d\xda\x56\xdb\x5e\x98\x2c\xea\xf8\xc8\x76\x75\xe0\x3a\x12\x33\x51\x95\x55\x90\x98\x1c\x6b\x15\x24\xa6\xf0\xbf\x0a\x12\x93\x6d\xb6\x3a\x12\x33\x31\xae\x57\x90\xd8\xd6\x1a\x15\xb3\xe0\x9f\xf7\x4a\x05\x02\x8d\x29\xfc\xaf\x82\xc6\x14\xf0\x57\xe5\x39\xfa\x73\x37\x68\xbc\x82\xc8\x94\xc6\x54\x41\x64\xef\x51\x08\x22\x13\xb3\x53\x05\x91\xc9\x81\x5f\x1d\x91\x55\x19\x64\x2a\x68\x4c\xc1\x80\x15\x34\xb6\x75\xc0\x83\xc6\xb6\xc6\xcf\xd1\x98\x25\xec\xfe\x75\xee\x4f\x7f\x8e\x7a\x70\x9c\xdc\x4f\xc7\x28\x88\xec\xe8\x30\x06\x91\x1d\xc9\x09\x22\xa3\xe8\xba\x55\x10\xd9\x89\xba\x96\x68\x31\x12\x20\xb2\xa3\xd5\xb5\x20\x2c\xd1\x31\x01\x1a\x3b\x98\x29\xab\xa3\x2d\x4f\x8a\xf6\x96\xcb\x71\xa4\x90\x39\xda\xb2\x04\x92\xad\x8e\xb6\xaa\x1b\x3c\xff\xff\x56\xef\x8e\xa6\x7a\x93\x1e\x79\x68\xe9\x75\x2e\xde\xd5\x23\x1d\xa0\x25\xc3\x68\x52\xf7\xf3\x7e\x9a\xa3\x69\x20\x67\xd3\x9f\xff\x60\xc5\xab\x80\xb1\x8b\x7b\xa3\x02\xc6\x64\x2b\xad\xb0\x00\x8a\x25\xb7\xee\xf1\x75\x30\xf0\x6e\x07\x64\x55\xb6\xd4\x0a\x20\xbb\x98\x1a\x2a\x80\x4c\xc1\x87\x75\x6b\xeb\xe8\x5b\xee\x9a\xba\xe9\x37\x96\xe7\x0a\x60\xbb\x40\xb4\x0a\x60\xbb\x3a\x9a\x00\x6c\xca\x34\xad\x70\x45\xc8\x5e\x5a\xe1\x8a\x10\x55\x41\x85\x2b\x22\x00\x5d\x2b\x5c\x11\x41\x03\x08\x57\x44\x20\x09\xa8\xc2\x15\x21\xcb\x69\x85\x2b\x22\xe8\x78\x81\x2b\x22\x48\x6a\xb8\x22\x02\x86\x80\x0a\x57\x44\x90\x8c\x70\x45\x88\xac\xab\xc2\x15\x11\x34\xf1\xe1\x8a\x08\x44\xe9\xd4\x1b\x5e\xf9\xdf\x69\x02\x5f\x44\xd0\x81\x02\x5f\x44\x90\xb6\x09\x5f\x44\xd0\x74\x77\x90\xd7\x44\x99\x5b\x2f\x32\x6a\xab\x82\x2b\x22\x68\x73\x70\x24\xe7\xb9\x52\xde\x72\x19\x45\xce\x5a\x21\x84\x50\x00\x62\x75\x14\xe7\x59\x53\xde\x72\x19\x45\x76\x5b\x21\x83\x10\xa3\x73\xbd\x70\xe5\xe8\x2b\xde\xcf\x38\x2a\x7b\xb0\x3a\x8a\x6b\xe2\x63\x6e\x8e\xe2\x3c\xa3\xc8\x5b\x70\xe9\x70\x98\x34\x77\x65\x99\xb1\xf4\x9a\xbb\xb2\x3c\x63\xc7\x5b\xc8\x48\xbe\x72\x73\x84\xe7\x19\x37\xde\x72\x19\x95\xad\xda\x1c\xdd\xb5\x67\xea\x1a\x32\x32\xdf\x5b\x40\x46\xe6\x54\x73\x54\xd7\xc4\x37\xdd\x02\x32\x12\x3f\xd2\x82\x8e\x80\xb1\xd7\x56\xcf\x91\x13\x05\xa9\xbd\xc8\x6e\xec\xc5\x41\xdc\x02\x72\x82\x82\xda\x03\x67\x10\x0e\xd9\xf6\x20\x27\xee\xdb\xa6\x60\xbf\x3c\xf6\x2e\xfa\x8f\x8f\x67\x24\x9e\xaa\x29\x09\xea\xcf\x75\xbd\xfb\x81\x3b\x08\x24\xd4\x1e\xb8\x83\x24\xfd\xf3\xe5\x0e\x62\xec\xda\x03\x77\x50\x52\x4f\x5c\xe6\x68\xfa\xed\xa0\xc5\x77\x54\x82\xd4\x9f\xdf\xb2\x19\x36\xf7\x75\x79\x82\x82\xb7\x36\x2d\x24\x7c\xe0\x16\x42\x49\x68\xcf\xfd\xfc\x16\xd3\x4c\x73\xe4\xd7\x94\xa1\xdb\x1c\xf9\xb5\x88\x9e\xde\xe2\x47\xe6\x83\x09\xa6\x45\xc6\x17\xaf\x5e\x73\xe4\xd7\x54\x26\xa1\x45\xe4\xe5\xf8\x69\x11\x79\x9b\x9e\x54\x69\xd1\xa7\x88\xac\x5d\xd7\xe0\x49\xd2\xd8\x47\xf1\x24\xf1\x55\x23\x3c\x49\x53\xbf\x43\x96\xa9\xbe\xfa\xd8\x45\x82\x8f\x5b\x42\x0e\x94\x85\x96\x90\x83\x60\x91\x96\xe0\x42\xe2\xf8\x6d\x09\x2e\x24\x62\xa9\x5a\x82\x0b\x09\x9c\xd2\x12\x5c\x48\xac\x82\x96\xe0\x42\x4a\xff\xa2\xcf\x6a\x0e\xf8\x9a\x28\xed\x9b\x03\xbe\xa6\x98\xd2\xe6\x80\xaf\x25\x0d\x40\x62\xa8\x80\x05\x2d\x31\x54\x5b\x77\x1e\xae\xf1\x59\x0c\xaa\x27\x74\xda\x66\x50\x3d\x71\x1a\x37\x83\xea\x09\xd3\x48\x33\xc4\x23\x0e\xa1\x19\xe2\xe9\x99\x86\x78\x9a\x92\x86\x78\x98\x2d\x9a\x21\xde\xd5\x53\xa0\x7a\x7a\x74\x4d\xda\xd6\xdc\xab\xaa\x3f\xd0\x3d\x69\xa1\x1b\x74\x4f\x49\xbf\x85\xee\x09\x58\xd8\x1c\xb4\x35\xd3\x94\x7a\xdd\x5d\xf3\xb3\x28\x1d\xb8\x35\x43\x93\x6c\x0e\xdc\x9a\xe1\x69\x68\x0e\xdc\x9a\x55\xfd\xd6\xfb\x2b\xcb\x6f\x73\xe0\xe6\x01\xbc\xde\xa2\xbf\xe8\x2f\x2d\x43\x4d\x85\x3e\xda\x32\x7d\xd5\x57\x86\x43\x22\x6b\xfb\xca\xd0\x4f\x61\x29\x6c\x25\xbc\xbd\x93\x66\xdb\x1c\x81\x35\xc3\x5a\xd8\x0a\xb2\x68\xbb\x70\x04\xd6\x94\x54\xdc\x0a\x72\x80\xac\x5a\x41\x8e\xab\x3b\xa1\x9f\xd2\xb4\x2a\x50\x4c\x45\xb5\xa0\x98\xd2\xd7\x2a\x50\x4c\x69\x53\x01\x75\x65\x53\xef\xfc\xbb\x66\x82\xdd\x5a\xfd\xf4\xf5\x62\x06\x69\x8e\xae\x5a\xe6\x50\x6b\x15\xaa\x2c\x2d\xc7\x0a\x55\x96\x96\x63\x85\x2a\x4b\x5f\xb2\x42\x95\x85\xb2\xd0\x2a\x7d\xd5\x72\xac\x50\x65\x69\xa6\x55\xa8\xb2\xba\x9e\xd2\x3f\x3d\x20\x63\xb2\x39\x82\x6a\x59\x4b\xb2\xd2\x5f\x8c\x0d\xcd\x11\x54\xcb\xe0\xa9\xd6\xe8\x2b\xae\xf4\xd6\xe8\x2b\xde\x86\xd6\xe8\x2b\x47\x63\x6b\xf4\xf5\xaa\x05\x1d\x16\x8e\xd5\xd6\xa0\xc3\x7a\xf4\x3b\xe8\xb0\xb4\x85\x36\x38\xad\xa3\xae\x75\x5a\x7c\x29\x47\x47\xad\x70\xfc\x35\x25\x33\xe5\xb5\x45\xd3\xdc\x1c\x21\xb5\xa2\xf9\xec\x08\xa9\xc9\xb0\xda\x5e\x84\xb4\xf6\x7e\xaf\xfb\x1c\x52\x46\x71\xeb\xd0\x7e\xe1\xe5\x68\x1d\xda\x2f\x90\x53\xeb\xd0\x7e\x61\xdd\x6e\x1d\xda\xaf\xa6\x96\xd1\xe2\x99\x1d\x59\x70\xa5\x36\x28\xf1\xc4\x20\xde\xa0\xc4\x2b\x3a\x10\xa1\xc4\x2b\x3a\x10\xa1\xc4\x2b\x5b\xd7\x90\x03\x95\xa3\x41\x89\x57\xb6\xde\x07\x7d\xd9\xd1\xef\x90\x41\xdf\xdc\x11\x90\x29\xfc\xb8\x41\x97\x57\x31\x52\x35\xe8\xf2\x2a\xc8\xbb\x41\x97\x57\x51\x16\x9b\xfb\xa5\x5a\x45\x0f\x6f\xd0\xe5\x55\xc2\x2d\x1b\x74\x79\x55\xe3\xe1\xa8\xa8\x55\xb0\x5b\x83\x2a\xaf\x26\x5d\xeb\xb4\x98\x29\x8e\x86\x5a\xd5\xd7\x85\x46\xaf\x6a\x45\x40\xa3\x57\xb5\x22\xa0\xd1\x93\x99\xb5\x41\x95\x57\x6b\xfc\xd7\x76\x0d\x8b\x9e\xac\xaf\x4d\x61\x74\x79\x6d\xf1\x11\xb6\x17\x0c\x7d\xa2\x61\x1b\x6c\x7a\x15\x2d\xb0\xc1\xa6\x57\x35\x70\xb0\xe9\xd5\xa6\xdf\x22\xa6\x16\x13\x6c\x7a\x15\x8b\x77\x13\xa7\xc3\x9f\xe7\x62\x65\x6c\x0e\x88\x3c\xce\xca\x5b\x88\xaa\x6d\x4b\x9c\x0e\x79\xef\xa5\xcf\x0b\xab\x9e\xb2\xea\x1a\xac\x7a\x75\xe9\x6e\x1f\xce\xaa\xe5\xb5\xc2\xe7\xb7\xd2\x21\x16\x32\x6b\xf0\x61\xce\x93\x2d\xb8\xc1\x9c\xd7\x1e\x5d\x73\x79\x1a\x49\xf9\x0d\xe6\xbc\x86\x69\xa0\xc1\x9c\xd7\x88\x64\x69\x30\xe7\x35\x2d\x13\x07\x45\x26\x97\x48\x83\x39\xaf\x99\xde\x00\xe3\x9c\x06\x6a\x7d\x19\xe7\x74\xdc\xac\xf3\xfd\x0f\x0b\xd6\x11\x50\x6b\xd2\x32\xf7\x47\x9e\xa3\x29\x03\xbb\x5e\xd3\xb6\x09\xbb\x5e\xd3\x77\x86\x5d\xaf\x69\x53\x72\x37\x55\x6b\x4b\xd7\xf2\xe7\x49\x1a\x23\x18\xf6\x9a\x16\x10\x0c\x7b\x4d\xc7\x83\x23\x27\x93\x97\xa4\x39\x72\x6a\x3d\xa8\x35\xde\x27\x5d\x2d\x06\x58\xf6\x3a\x4e\x9d\xb6\x3f\xe3\x27\x83\x45\x73\xf4\xd4\xc4\x72\xdd\xc4\xb2\x27\xad\x4e\x2c\x7b\x1a\xad\xf3\x91\x57\x91\x31\x4d\x4c\x7b\x45\x2d\x98\xf6\x34\x03\x41\x4f\x1d\x7c\xd7\x40\x4f\x4a\x7f\x6e\xa0\x27\x05\x9f\x36\xd0\x53\x97\x36\x07\x7a\xea\x18\x68\x1a\xe8\x49\x14\xa9\xcd\xd1\x93\xc9\x73\xd3\x40\x4f\x0a\x1c\x6d\xa0\xa7\x2e\x3d\x19\xf4\xd4\xa5\x27\x3b\x7a\x32\x79\x75\x1a\xe8\x49\x81\xa3\x0d\xf4\x34\x34\xc2\x2f\x7a\x3a\x7b\x0b\x21\x80\x9e\x86\x36\x0c\xd0\xd3\x48\xba\x06\x9b\x20\xf8\xb8\x81\x9e\x86\xbe\x1d\xe8\x69\xe0\x00\x6e\xa0\x27\x19\x0a\x1a\x4c\x7b\x63\xe8\x77\x2e\xa3\xec\xbb\x0d\xf4\x34\xf4\x35\x1c\x3d\x35\xc5\xf7\x37\xd0\xd3\x20\xba\xa7\xdd\xf5\xf6\x55\x1c\x89\x0d\x04\x35\x41\xac\xcd\x11\x54\x9b\xda\x30\x41\x4f\x93\xa3\xa5\x3b\x7a\x6a\xca\x22\xe8\xa0\x27\x51\x99\x75\xd0\x53\x0d\xba\xe6\x32\x4e\x36\xb7\x0e\x7a\x12\xcd\x59\x77\xf4\xd4\x26\x3a\x7e\x07\x3d\x29\x14\xb3\x83\x9e\x26\x3b\x50\x07\x21\x2d\x8e\xaa\x1e\xe6\xdb\xf3\xcb\x61\xd2\x03\xcc\x88\x49\x3d\xd8\xdf\xeb\x7a\xd3\xf9\xfc\x87\x83\xbc\x83\x92\x64\x84\xec\xa0\xa4\x85\xfa\xd2\x41\x49\x32\x42\x76\x47\x49\x4d\x86\xc6\x0e\x42\x52\x90\x65\x7f\x11\xd2\xdd\x8b\x63\xa6\x83\x90\x16\xeb\xb0\x83\x90\x16\x8e\xfb\xee\x08\xa9\xad\xae\x27\xf9\x3a\xac\xe5\x5f\x9c\xe3\x1d\xe0\xb4\xd0\x9a\x3b\xc0\x69\x01\x16\xbb\x03\xa7\x26\x92\xdb\xfe\xac\xb7\x3b\x9b\x6d\xa3\x3f\x90\x44\xa2\xcf\x75\xb1\x4a\xe4\xbb\x65\x65\xea\x0f\x44\x91\xb8\xbd\x3a\xc0\x49\x46\x93\x0e\x70\x52\x10\x61\x77\xe0\xd4\x64\xe7\xea\x11\xa2\x48\x0d\xb2\x83\x26\x53\x4a\x6e\x07\x34\xed\xb7\x05\x49\x24\x61\x4f\x3d\x02\x12\x4b\xd8\x4a\xab\xee\x00\x27\x6d\x91\xdd\x5d\x66\xed\x3c\xba\xdb\x87\x55\x76\xae\x1e\xf7\xe7\xb7\xb8\xbe\xba\x83\x27\xc7\xa1\xde\x72\x59\x14\xbc\xd8\x01\x4f\x8a\x2b\xef\x80\xa7\x03\x40\xea\x09\xd2\x4b\x36\x9e\x9e\x90\x45\x43\x0a\xb0\x3a\x6c\xc2\x1d\x60\xa5\x88\xdf\x0e\xb0\x12\x13\x5d\x07\x58\x1d\xac\xf0\x1d\x60\x75\xd4\xb3\xd4\xdf\xbe\x9e\xa6\xb7\x0c\xa8\x33\xf5\xdb\xf9\xb9\xce\x06\xd4\x13\xcc\x96\xe8\x84\xdd\x51\x54\x53\x8e\x6c\x77\x14\xd5\x44\x19\xd6\xdd\x6d\xd6\x2e\xba\x44\x77\xb7\x59\xbb\x1c\x4a\x1d\x84\x25\xf2\xb5\x6e\xa8\x01\xe5\x79\xed\xb4\x1d\x94\x75\x31\x04\x75\x50\x96\x1c\x61\xdd\xf2\xe7\x6e\x3c\x1d\x1d\xa4\x75\x39\x9c\x3b\x48\xeb\x62\x5f\xee\x8e\xb4\xee\x88\xfa\x2d\x2c\x9e\x4b\xbd\x18\xb4\xf8\xa2\xa0\x2c\xa5\x05\x75\x50\x96\x52\x76\x3a\x28\x4b\xec\xeb\xdd\x90\xf3\xea\x1a\x72\x62\x32\xea\x30\xfd\x05\xc9\x91\x61\xf0\xe4\x58\xea\xf9\x23\xe7\x2e\xba\xdb\x99\x17\x65\x36\xeb\x19\x86\x4f\x62\x6f\xba\x23\xb0\x1e\xd8\xa0\xbb\x23\xb0\x1e\x9a\x9e\xdb\x61\x0d\xe5\xdb\x3a\x02\xeb\x81\x03\xa3\x3b\x02\x73\x4d\xc9\x5b\x0b\x0e\x51\xdd\x09\x13\x29\xf6\xe2\x9e\x61\x22\x5d\x7a\x3b\x4c\xa4\x5a\x47\x42\x67\xe5\x7f\x8c\xbd\x3b\x96\xfc\x3c\xac\xc4\x97\x7b\x35\x7c\x88\x0f\x9c\xe3\xcd\xf0\xe9\xcc\x81\xf7\x1f\xf8\x0c\x7e\xd5\xd3\xdd\xe3\x7b\xbf\xbf\x83\x09\xc4\x51\x4b\x84\x44\x91\x05\x10\xa8\x8a\x2f\x1e\x19\xab\xd8\x42\xd2\x9c\xb9\x77\x66\x01\xd0\x63\x2a\xab\xfa\x39\x1b\x2f\xcc\x2a\xb6\xe0\x49\x58\x85\xad\x94\x90\xa3\x55\xd8\x4a\x35\x86\x2a\x76\xb2\xf8\x59\x85\xad\x94\xd0\x8e\x55\xd8\x4a\xf5\x55\x56\xd8\x4a\xa3\x7a\x08\x5b\x29\x1e\x88\xf9\xbe\x98\x45\x3d\x69\xdf\x17\x33\xe9\x7c\x99\x7b\x67\x26\xe5\x24\x73\xef\xcc\xa4\x67\x65\xee\x9d\x59\xa4\x18\xcb\xdc\x3b\x33\x89\x9a\x59\xa3\x9f\x7a\x03\x0d\x56\x55\x4d\xe5\xee\x9d\x59\xd4\x93\x6c\xfa\x4e\xd2\xde\x8f\x7e\xbb\xde\x2d\x3a\x87\xfe\x12\xf0\x32\xf7\xd0\x2c\x01\x68\x4c\x59\x80\x3f\x67\x6b\x64\xb8\x97\x66\x4a\x2e\x34\xf7\xd2\x2c\xe9\xeb\x71\x2f\xcd\xa4\x9f\x69\xee\xa5\x99\xea\x81\xcd\xbd\x34\x93\x90\xa2\xb9\x97\x66\x12\x7c\x34\xd1\x4f\xfc\xdc\xa5\xff\x2b\xc3\xc5\xdc\x51\x33\xc5\x94\xcc\x9d\x34\x93\x56\xa4\xb9\x93\x66\xd2\x6e\xb4\x8e\x29\x84\x03\xcc\x1d\x34\x53\x61\xb1\xb9\x83\x66\xd2\xe7\x33\x77\xd0\x2c\x91\x35\x6e\x86\x19\x44\x9f\xcc\xe8\xaa\x3e\x5b\x77\xc2\x2c\x81\xb0\xcd\x9d\x30\x93\xc6\xa2\xb9\x13\x66\x19\x64\x63\xf6\xfb\xe8\x15\xcf\x33\xfb\x7d\xf4\x4a\xa9\x34\xa3\xbf\xc4\xa4\xcc\x20\xb6\x7d\xfd\xef\xfe\x9e\x4d\x3a\x95\x89\x59\xef\xa7\x45\x1f\xe6\x80\xfc\x56\xe8\x60\x40\x7e\xcb\x26\x91\xb9\x53\x66\x4a\x3b\x34\x77\xca\x2c\xbf\xae\x54\x38\xd2\x55\x2a\x14\xba\xfa\x5f\xfb\xbd\x8b\x9e\xd5\xf8\x7d\x3d\x47\x53\x92\x3b\x67\x96\xd9\x36\xb2\x81\xdd\xc2\x1a\xee\x9c\x59\xa6\x60\xdc\xdc\x39\xb3\xac\x29\xdf\x9d\x33\xcb\x9a\xa0\xc4\x1a\xf1\x73\x5d\xa2\xb1\x36\xde\x36\x13\x18\x32\x77\xe0\x2c\x6b\x82\x9b\xd8\x2b\x0c\x32\x45\xf6\xcb\xc0\x9d\xd8\x7b\xf4\x3f\xc8\x7e\xb5\x30\xbb\x07\x66\x59\x53\xa1\x7b\x60\xf6\xe0\xb1\x98\x7b\x60\xf6\x64\xfd\x6f\xbc\x7a\xf0\x9a\xb6\xe7\xef\x7b\xbc\x04\x79\xcc\xbd\x30\x93\x04\x85\xb9\x07\x66\x8f\x16\xbc\x09\xb1\xaf\x3e\x54\xf7\xc0\x4c\x41\x15\x5b\x9a\x66\xf3\x16\x53\x88\xad\xfc\xdb\xa2\x37\xe3\x5e\x98\x15\x4d\x76\x4a\x08\xfc\xf9\xbf\xfa\x2e\x05\xab\x9a\xf7\xc1\xa5\x36\xf7\xc6\xac\x12\xb7\xb7\x35\x7e\xff\xaf\x85\xdc\xbd\x2e\x53\xe0\xc2\xdc\xeb\xb2\xaa\x8f\x52\x5e\xd7\xcf\xd9\xfa\x82\xdc\xeb\xb2\xaa\x45\x57\x8c\x7a\x3f\xff\xd7\x34\xe8\x5e\x97\x55\xb6\xb9\x4c\xfb\x4e\x35\xef\xab\xa7\xe9\x5e\xd7\x23\xe6\x23\x73\xaf\xcb\x14\xb2\x30\xf7\xba\xac\x4e\xfd\xb6\x70\xc4\x53\x74\x8f\xeb\x31\x4d\xd2\xbb\xfd\x5e\x97\xa0\x92\xb9\xd7\x65\x75\xeb\xc8\x38\xd2\xd9\x83\x23\x5d\xc9\x97\x99\xa1\x89\xda\x3d\x2e\x6b\x82\x47\xee\x6d\x99\x02\x0e\xe6\xde\xd6\x33\xf4\xbd\xb9\xb7\x65\x4d\x4f\xcd\xbd\x2d\x6b\x78\x79\xe6\x9e\x96\x49\x29\xc9\xdc\xd3\xb2\xa6\x69\xfb\x40\xc2\x4c\xd9\x8c\x1d\x48\x98\xd9\x9a\xb5\xa3\xf7\xf7\xec\x23\x40\x79\xea\x6f\xcb\xd4\xb5\x21\x63\x36\xdd\x17\x32\x66\x7d\x2f\xee\x55\x99\xbc\x7f\x3b\xd8\x42\x22\x88\x1d\x6c\xd9\xba\xca\xe1\x08\x3b\x0f\xb6\xe8\x69\x5d\x6c\x21\xb0\x66\x17\x5b\xf4\x45\xb9\x47\x65\xa2\x30\x33\xf7\xa8\x4c\x79\x5b\xe6\x1e\x95\x75\x3d\x3b\xf7\xa8\xec\x05\x16\xdd\xa3\x7a\x06\xfe\xb4\x29\xb3\xb0\x96\xbd\xb4\xf4\x5f\x88\xa3\xc9\x7e\xb2\x0b\x71\xb4\x9e\x9f\x7b\x4e\xd6\xeb\xbf\x48\x73\x0d\x7e\xf2\xae\x69\x19\x7e\x72\xa9\x89\x18\xfc\xe4\xd2\x1e\x19\x21\xbc\x3a\xb0\xd9\x5a\x1c\x70\x94\x77\x1c\xb9\x01\x47\x79\x27\xaf\x60\xc0\x51\xde\x97\xfe\x57\x39\x9a\x1c\xf9\xeb\xe8\x3c\xac\xe1\xdb\x4e\xd6\x09\x91\x0c\xdf\x76\xb2\x4e\x88\x64\xc0\x51\xde\xaf\xfe\xe7\x7d\x35\x10\xe7\x70\x87\xe9\x91\xce\xc7\x08\xf7\xd5\xbb\xc3\x46\xdc\xd0\xd6\x51\x2d\xfb\xb2\x19\x34\x54\x00\xf5\xd3\x52\x74\x8e\xf7\xc4\x08\x6e\x0c\xb8\xc5\xed\xd1\x11\xdc\xdb\xac\xe0\x03\x6e\x71\x03\x1b\x0f\xb8\xc5\xad\xea\x2a\xfe\x9c\x0c\xd2\xd7\x01\xb7\xb8\x11\x13\x1f\x70\x8b\x1b\x9f\xe0\x80\x5b\xdc\xc8\x0b\x1f\x70\x8b\x4b\xe3\x6f\xc0\x2d\x2e\x1d\x95\x01\xb7\xb8\xe1\xcb\x0c\xb8\xc5\x45\x7d\x36\x5e\x1e\x4a\xdd\x12\x95\x1a\xf0\x8b\x9b\x2c\x87\x5f\xdc\xae\x7e\x3b\x38\x5a\x1c\xb9\x8d\x4a\x1e\x1b\xf0\x8b\x2b\x50\x30\xc4\x2f\x1e\xf5\x3f\xf8\xc5\x93\xae\x09\xbf\xb8\x9e\x94\xf8\xc5\xd9\x6b\x19\xe2\x17\x27\x89\x72\xc0\x2f\xae\x40\xc0\x70\xcf\xe5\x99\x1a\x15\xee\xb9\xd8\x20\x4c\x31\xdc\x73\x79\x94\xf9\x33\xe0\x17\x57\x58\x60\xb8\xe7\xf2\xcc\xad\xdf\x75\xfe\x87\x45\x2f\xcf\xa5\xee\xd3\xf4\x7f\xb7\x51\xf5\xa2\x03\x8e\x71\x55\x88\x0e\x38\xc6\xc7\xeb\x4a\xd8\x08\xb6\x1f\x70\x8c\x8f\xa3\x33\xb1\x11\xa8\x31\x1e\x6c\xa4\x10\x69\xc0\x3f\x3e\xc1\xf6\xe3\x81\x43\x9d\x25\x66\x3c\x70\xa8\x93\xc7\x32\xe0\x26\x9f\x7c\xc4\x03\x6e\x72\x85\x21\x06\xdc\xe4\x13\x2f\x69\xc0\x4d\xae\xac\xb0\xe1\xde\xca\xb3\xf4\xbc\xe1\x26\x9f\x8f\xce\x84\x43\x9d\x0d\xc2\xf1\xc0\xa1\x0e\xce\x1b\x78\x1d\x53\xe3\x0d\xaf\x43\x04\x69\xe3\xe5\x75\xb4\x2d\x05\xb0\x81\xd7\x31\x01\x5e\x03\xaf\x63\x12\x18\x18\x85\xbe\x32\x15\x8e\x42\x5f\xf5\xed\xe1\x91\xcc\xad\x33\xe1\x7b\x67\x39\x18\x78\x24\xca\xb2\x1a\x78\x24\x93\x85\x7c\x14\xfa\x7a\x74\xcd\xf5\xea\x8f\x42\x90\xa3\xec\xdf\x96\xae\xdf\x9f\xdf\x16\xf0\xf4\xc0\x3b\x51\x16\xfd\x70\x7f\xc3\xc4\xfd\x32\xf0\x35\x16\x1b\xbc\x03\x5f\x43\x04\x6d\x43\x79\x78\x3f\x57\x22\xff\x69\xe0\x6f\x2c\x8d\x62\xcf\xc3\xb3\x85\xdf\x30\x7c\xb7\xc8\x14\x6e\x19\xf8\x22\x8b\xdd\xb4\x21\x8a\xf0\x9f\x2b\x69\x3c\xd4\x77\x2f\xf5\x64\xf1\x3b\x16\xfe\xfb\xf0\x5d\x23\x5b\xfa\x0a\x1a\xec\xf5\x2c\x60\x03\x9f\x64\xe1\xeb\x0d\x7c\x12\x91\xc6\x8d\x46\x2f\x34\xae\x1b\xbd\x68\xff\x2a\xe8\x1f\xee\x84\x98\x34\x36\x87\x3b\x20\xa6\x14\xad\x81\xf3\xb1\xae\x2e\xe9\x43\x7e\x07\x75\xe5\xbe\xcc\x50\x5e\xf9\xf0\xe4\x3a\x53\x0d\xe5\x10\xc7\x5d\xed\x7b\x51\xdd\x35\x3a\x12\x01\x7a\xa0\xbd\xfc\xfe\x5f\xd3\x06\x4e\xc8\x06\xab\x0c\x77\x42\x9e\xb5\x75\x35\xe8\xf7\x1f\x9d\x09\xfd\xbe\x0c\xef\xd0\xef\x57\xfd\xee\x97\x7e\x7f\x69\x1a\xeb\xeb\xb7\xa5\xeb\x1c\xb7\x6b\x83\xb0\x07\xde\xc6\x26\x4e\x38\xf0\x36\x36\xe8\x7a\xf8\x76\x90\x89\x05\x6f\xf8\x76\x90\x6d\x4d\xc2\x78\x22\x1b\x97\x79\x18\x52\x02\x9a\x68\x0c\x5b\x34\x79\xe3\xa5\xec\xa5\xff\x61\x0b\xf8\x68\xe0\xa5\x88\xcb\x6e\xe0\xa5\x6c\x2d\x69\xee\xa5\x3c\x9b\x8d\x9c\xe1\x1e\x8a\x1d\x4d\xc0\x26\x19\x01\x2c\xc2\x3b\x39\x41\xf7\x43\x46\x40\x53\x87\x7b\x26\x26\x1a\xd9\x31\x44\x4b\xd0\xf7\xc1\x25\x1e\x78\x26\x87\x7a\xb9\x81\x67\x72\x70\x5f\x07\x9e\xc9\x31\xfd\xf6\xf7\x9d\x49\x8a\x6f\xe0\x9d\x1c\xd9\xf9\xf2\x4e\x6c\xbf\x3e\x0d\xf7\x4e\xec\xe0\xf0\x0f\x3c\x13\xa9\x2f\x0d\x3c\x13\x29\x9f\x8e\x81\xad\x4d\xbf\x5b\xfc\x8f\xe7\x80\x67\x72\xd9\x6e\x1a\xee\x99\x98\x54\x51\x87\x7b\x25\x26\xc2\xa7\x81\x47\x72\xd9\xda\x1b\x78\x24\x97\x80\xcf\xc0\x23\x51\xf8\x68\x68\xcf\xa8\xda\xde\xa0\xad\x81\x57\x72\xf5\x71\x49\x9e\xb7\xfe\xbc\x1a\x7a\xe8\xfb\x46\x76\x89\x95\x0e\xbc\x16\x65\x6c\x0d\xbc\x96\x4b\x7e\xd7\xd0\xbe\xd1\xcf\x6f\x35\x5d\xba\xe7\x92\x44\x37\x37\xdc\x6b\xc9\x15\xec\x36\x44\x5c\x37\x74\xa5\x4d\x7d\xa4\xce\x3c\x54\x6e\xe8\xe8\xb2\xe9\xc7\x94\xe8\x7b\x46\x8f\xe8\x95\x87\xef\x17\x3d\xb3\xe9\x7f\x8e\xf4\x17\x19\xdb\xc3\x3d\x99\x67\x09\x36\x2d\x24\x13\xb4\x20\x2d\xe4\x1f\xf0\x89\x86\xef\x17\x3d\x0a\xdb\x0d\x92\xe8\xee\xeb\x4c\xb4\x0f\x04\x89\x48\xa2\x53\xd8\x6e\xb8\xe7\xf2\xdc\xa4\xbb\x6f\x34\x13\x74\x3f\x69\x22\x60\xed\x42\x13\x01\x0c\x3d\x36\x9a\x08\x5a\xba\x21\xab\x0b\xe0\xdd\x01\x07\xb8\x82\x62\x03\x0e\x70\xd1\xcc\x0d\xf4\x75\x83\x66\x00\x68\xed\x82\x66\x00\xf8\xc1\x83\x46\x12\x24\xe0\xa1\xeb\x7e\xe8\x0c\xbc\xee\x8e\x26\xc2\xd0\xef\xa4\x31\x80\xed\xe8\xeb\x06\xf2\x53\x06\x24\xe0\x41\x23\x65\xa3\x2f\x70\x75\x15\x27\xe3\x93\xb4\xfa\x80\xd6\x3b\x52\xd5\x33\xdc\xff\x28\x51\xef\xe1\x48\x29\x00\xfb\x8e\x94\x02\x74\x84\x52\x80\x16\x54\xe8\xbc\x5d\x02\xf2\xbf\xa7\x6f\x98\xbe\xe3\xd2\xcf\x48\x15\x14\xca\x3e\x88\x08\x68\x0a\x85\xc9\x5b\x52\xff\x03\x26\xef\xa8\x0f\xf3\x20\x12\xc0\x76\xc8\x80\xc5\x3b\xc1\x4c\x31\x60\xf1\x4e\x6c\x2f\x0e\x58\xbc\x93\x5e\x3b\x4c\xdd\x29\xeb\x77\x88\x00\xe0\xcc\x0e\x98\xba\x25\xf5\x3b\x60\xea\x96\x30\xdb\x80\xa9\x3b\x51\x82\x34\x60\xe3\x56\xb2\xd1\x80\x8d\x3b\x69\x82\x81\x8d\x3b\x69\xe8\xc2\xc6\x9d\x58\x49\x67\x10\xf1\x7f\xe4\x08\x92\x7c\xa6\x8c\x09\x1b\xb7\xc2\x3d\x13\x36\xee\x8c\x53\x3e\xdd\xdf\x28\x12\x65\x9b\x01\xc2\x7f\x96\x9d\x19\x20\xfc\xcf\xfa\x1f\x84\xff\xe0\xa5\x09\x43\x77\xae\xfa\x9f\xdb\x90\x9b\xfa\x02\xd9\x3f\x9f\xdf\x0c\x90\xfd\x93\xf5\x31\x61\xee\x16\x8b\xdc\x74\x5f\xa4\x64\x72\x71\x27\xac\xdd\x79\xa8\x67\x88\x00\xe0\x84\x4f\xdf\xb8\x29\x99\x50\xc7\x84\xc3\x5b\x7c\x72\xd3\x37\x67\x8a\x6a\x3a\x67\x84\xe8\x3f\xe9\x77\x10\xfd\x67\xfd\x0e\x32\x7f\x3e\x9c\x19\x45\xe6\xdf\x38\x12\x99\xbf\x7e\x27\x32\x7f\xfd\x4e\x64\xfe\x93\x23\x91\xf9\x63\x1f\x7c\xdd\xca\xb2\x99\xf0\x75\x3f\xf8\x09\xd3\xfd\x96\x52\x18\x4b\x13\xbe\x6e\xe5\xf2\x4c\xf8\xba\x4b\xd4\xff\xdc\x86\xc2\x0e\xc8\x84\xaf\x5b\x15\x91\x13\xbe\xee\x82\xc3\x3f\xe1\xeb\x56\x5e\xcd\x84\xaf\xbb\x54\xfd\x0f\x76\x7b\x42\x5a\x13\xae\xee\xc2\xa6\xd4\x84\xab\xbb\xe8\x3d\xc0\xd5\x5d\x86\x8e\x60\xb6\x9f\x3a\x13\x16\x7f\x3e\xfe\x09\x8f\xb7\x2a\x17\x67\x86\xc5\x9f\x18\xff\xcc\xd8\x07\x76\x9b\x70\x7c\x17\xe2\xb3\x13\x8e\x6f\xd5\x2a\x4e\x38\xbe\x55\xab\x38\xe1\xf8\x56\x96\xcc\xcc\xd8\x47\x00\x65\xc2\xef\x2d\xae\xfa\x09\xbf\x77\x65\x31\x9f\x19\xe6\xfa\xa4\x3b\xc0\x5c\x9f\x75\x26\xcc\xf5\x44\xac\x27\xdc\xdf\xf5\xd1\xef\x60\xae\x07\x55\xce\x07\xe6\x7a\x96\xf5\xf9\xc0\x5c\x4f\x80\x75\xc2\xfb\x5d\xf1\x03\xe6\x03\x73\x3d\x53\xf2\x84\xf7\xbb\xb2\x1c\xcd\x07\x66\xfe\xa5\xdf\xc1\xcc\x8f\xa7\x39\xe1\xfc\xae\x7c\xa9\xf3\xc1\x06\x02\x53\xf3\x81\x99\x9f\xcc\xf0\xe9\x3e\x49\x91\x52\xea\x84\x0b\x5c\xd9\x2a\x13\x2e\x70\x6d\xb0\x4e\x48\xbd\x1b\x88\x7d\x42\xea\xdd\xf4\x24\x20\xf5\x6e\x2c\x39\xb3\xc0\xfd\xce\x82\x30\xdd\x1f\x29\x22\x6d\x9e\x05\x2e\x7b\x7d\xb7\x10\x76\x4b\x7d\x75\x42\xd8\xdd\x48\x7b\x9c\x10\x76\x37\x82\xd2\x13\xc2\x6e\xa9\x74\x4d\x08\xbb\xdb\xfe\x17\xa2\x9e\x70\x79\xb7\xa3\x8b\xf8\x2b\x52\xd4\x66\xc2\xe5\xdd\x99\x5a\x67\x81\x2e\x5e\x2f\xcc\x37\x4f\x4a\x67\x9f\x76\xc2\xf3\xdd\x65\x10\x3c\xdf\x5d\x26\xc0\xf3\xdd\x9b\xfe\x07\x95\x3c\x7b\xcb\x13\x9e\xef\xce\xa6\xde\x84\xe7\x5b\x99\x15\x13\x9e\x6f\xd3\x34\x08\xcf\xb7\x11\x6f\x9b\xf0\x7c\x1b\x1b\x1c\x13\x9e\x6f\x09\xb9\x4e\x78\xbe\x4d\x8f\x05\x9e\x6f\xd3\x94\x05\xcf\xb7\x4d\x5d\x05\x4e\xf6\xad\xff\xc1\xc9\xae\x17\x0d\xcf\xb7\x69\xc8\xc3\xf3\x3d\xf4\xf9\x35\xf1\x98\xeb\x7f\xf0\x98\x6b\x7a\x81\xe7\x7b\xe8\xc3\xf1\xcd\x96\x22\xb5\xee\x29\x8e\x6f\x0d\x10\x71\x7c\x27\xdd\xcf\xed\x9b\x59\xd7\x74\xfb\xa6\x86\xb5\xf8\xbf\xb7\x8e\xe0\xff\xd6\xd4\x8a\xfe\xd1\xd2\x53\x42\xff\x68\x69\x5a\x82\xff\x7b\x69\x08\xc2\xff\x2d\x42\xa3\x89\x36\xd2\xd2\x13\x14\xff\x37\x6e\xe0\x14\xff\xb7\xde\x1f\xba\x48\x4a\xaf\x9c\x70\x7f\x6f\x36\x75\xa6\xfb\x45\x45\x5c\x37\x13\xcd\xa4\xad\xe5\x08\x5e\xf0\xfd\xba\x83\xdb\xb7\xb5\xe4\x74\x71\x45\xf3\x1e\xd0\x4b\xda\x04\xd1\x66\x87\x2b\xfa\xea\x77\x6e\x9f\x74\x5e\x27\x3c\xe0\xe2\xba\x99\xbe\x2b\x53\x8e\xa6\x17\xdf\x95\x29\x07\xe7\x73\xa2\x93\x24\x4a\x87\x09\xff\xb7\x6a\x95\x27\xfc\xdf\x52\x52\x9c\xf0\x7f\xcb\xa3\x98\xe8\x23\xa9\x4e\x79\xc2\xfd\x7d\x34\x5e\xe0\xfe\x96\xff\x30\x0d\x8e\x68\x00\xcb\x34\x91\x23\xeb\x7f\x90\x23\x83\xa0\x27\x9c\xde\x57\x23\xc4\xa0\x20\xd6\x14\x02\x0d\x5d\x20\x04\x30\xa1\xa1\x0b\x9a\x06\xa1\xa1\x0b\x54\x1d\xce\x21\xfa\x61\x7a\x36\xa0\x1f\x5e\x3a\x13\xfa\x61\x36\xfa\xe7\x80\xb6\x17\xdf\x6b\x42\x41\x27\xa9\xc4\x09\x05\x5d\xd4\x08\x81\x82\x2e\x6a\x4c\x40\x41\x27\xd6\x92\x09\x05\x5d\xac\xba\x03\xf4\xc3\x4d\x77\x9f\x1c\xe9\x7e\xd0\x0f\xeb\x0b\x87\x82\x2e\x9a\xfe\x07\xfd\xb0\xbe\x15\x28\xe8\xc4\x4a\x32\xa1\xa0\x8b\xe4\x58\x4f\xf7\x7f\x6a\x24\x2c\x35\x27\xb4\xc4\x20\xda\xe9\xfe\x4f\x55\x36\xfc\x84\x76\x4e\xc5\x7a\xd3\x7d\x9f\x9a\x04\x20\xdc\xef\xa9\xe2\x2f\x99\x50\xd2\x25\x8d\x48\xf7\x7b\x6a\xd2\x64\x0a\x25\x5d\x22\xca\x3c\xa1\xa4\x4b\x43\xf7\x83\x8e\x78\xeb\x4c\xe8\x88\xaf\xee\x0e\xc5\xaf\x9e\xe7\x84\x2a\x57\xcf\x73\x42\xf1\xab\xe7\xe9\x3e\x4f\xcd\x8f\x8e\xa0\xf7\x7d\xe6\xbf\xa6\x64\x58\xec\x32\x6e\xe1\x84\xc5\x4e\xdb\x6d\x13\x16\xbb\x4c\x15\xd1\x84\xc5\x2e\xeb\xc1\xc3\x62\x97\x09\x1b\xcc\x05\xdb\x2f\x38\x75\xc2\x52\x97\x35\x04\x61\xa1\x7b\xa2\xce\x3c\x1c\x61\x3a\x2c\x74\x0f\xf1\xb9\xb9\xc5\xf6\x8b\xe9\x5b\x6c\xbf\x5c\x65\xc3\xf6\xab\xcf\x6f\xc3\xf6\xab\x47\xbd\x61\xfb\x85\x97\x6f\x6e\xd8\x7e\x49\x36\x9b\x1b\xb6\x5f\x2d\x16\xf0\xd4\x3d\x4d\x77\x10\xdb\xaf\xee\xee\xaf\xe1\xd1\x67\xb4\x61\xfb\xd5\xc7\x08\x93\xf7\xa3\x55\x1a\xb6\xba\xe7\xea\x77\xd0\xdd\x6a\xda\x85\xad\xae\x68\x8a\x84\xad\xae\x68\x25\x86\xad\xae\xe8\xf3\x83\xad\xae\x80\xfb\x27\x6c\x75\x2f\x74\x06\x5b\x5d\xa1\x60\x7a\xc2\x56\x57\xc8\xd7\x98\xb0\xd5\xc9\xd5\x9d\xb0\xd5\x69\xe3\x6d\xc2\xe2\x2d\x0d\xf8\x09\x53\x9d\xb4\x3b\xe7\x81\xce\x57\x0b\x10\x2c\xde\x55\x53\xa4\x7b\x39\x55\x1b\x5e\xd3\xbd\x9c\x5a\x49\x33\x9c\x70\xda\xbd\x90\x0d\x9c\x76\x8d\x0d\x92\x09\xa7\x9d\xe8\x06\x26\x9c\x76\xad\xe8\x08\x0a\x54\x4d\x75\xb0\x77\x37\x61\x51\xf8\xec\x1a\xc5\x17\x13\x3e\x3b\x95\xfa\x4f\xf8\xec\x9a\xb0\x36\x7c\x76\x6d\xea\x9a\x50\xbd\xca\x76\x98\xbb\x95\xde\x39\xe1\xb3\xeb\x6c\x5a\xce\x2b\xc6\x4d\xde\xca\x15\xe3\xa6\x5f\x65\xc1\x67\x27\x3e\xf7\x05\x73\xb7\xe1\x96\x2e\xf8\xec\x8c\xa5\x71\xc1\x67\x67\x4c\xf3\x0b\x3e\x3b\xab\xba\x0a\x6c\x9b\x43\x67\xc2\xb6\x39\x74\x26\xec\x94\x00\x81\x15\x60\xdb\x3c\xfa\x9d\xd8\x29\x23\x47\x30\x3a\x12\xbe\x5b\xf0\xdc\x8d\xa2\x33\x61\x73\xac\xea\x27\x6c\x8e\x4d\xbf\x83\xcd\x51\x77\x80\xcd\x7b\xe2\xe1\x2d\x78\xee\xb4\x8b\xb3\x20\xb3\x9b\x59\x67\xc2\x7c\xc8\xfe\xd3\x82\xa5\x7b\xb2\x91\xbf\x60\xe9\x9e\x2c\x86\x2b\xc2\x2b\xc8\x34\xb8\x20\xa8\x5b\x41\xff\x83\x57\x10\xe8\xb6\x20\xa8\xd3\xd2\xbf\x20\xa8\x53\x65\xef\x82\xa0\x6e\xf1\x35\x2e\x08\xea\x14\xcf\x5d\x10\xd4\x49\xfd\x7d\x41\x50\xb7\xf8\xfe\x16\x04\x75\x6b\xea\x4c\x78\x05\xd9\x6f\x58\x10\xd4\x49\x54\x62\xc1\xee\x2d\xd9\xba\x05\x41\x9d\x82\x8d\x0b\x76\xef\xcd\x97\xba\x60\xf7\x56\x8d\xe4\x82\xdd\xfb\x10\xea\x5c\xee\x1d\x55\x85\x02\x97\x88\xed\x58\x72\x16\xcc\xdf\xda\x6a\x5e\x30\x7f\x4b\x9d\x73\x41\xdf\x7d\x81\xad\x0b\x62\xbb\x4b\xac\x7c\x41\x6c\x77\x29\xe9\x5b\x10\xdb\xdd\xde\xfe\x31\x25\xaf\x2c\x3e\x38\x6e\x2e\xce\x3b\xa0\xf6\xca\xe2\x83\xe3\x85\xc1\xdc\x10\xf4\x1a\x60\x6e\x08\x49\xb7\x83\x43\xed\x51\x57\xe0\x50\x03\xfb\xae\x0c\x87\x9a\x06\x01\xec\x0c\x51\x8f\x05\x76\x06\xd5\xaf\x2d\xd8\x19\x22\xab\xd1\x82\x9d\x21\xe9\xc3\x81\x9d\x21\x31\xd5\x2d\xd8\x19\x12\x19\x1e\x0b\x76\x06\x85\x38\x96\x3b\x40\x4d\x21\x8e\xf5\x40\xaa\x05\x5a\x5a\x0f\xa4\x5a\x4d\xd7\x84\x54\xab\xeb\x7e\xde\xcf\x44\x74\x78\xc1\xca\xa0\xac\x95\x05\x2b\x43\x7a\xf5\xcc\x6d\x50\xc9\xed\x82\x95\x21\x13\x8f\x5f\xb0\x32\x64\xb2\x59\x16\xac\x0c\x52\xa1\x5f\x30\x2f\x64\x90\xd4\x82\x79\x21\x13\x07\x5d\x30\x2f\x48\xef\x70\xc1\xbc\xf0\x34\xfd\xce\x6d\x78\xf4\xf9\xc1\xbc\xf0\x6c\x1d\x41\xd4\x44\x6e\xc8\x82\x79\xe1\x51\x3f\xe1\xab\x7b\xae\x7a\x06\x29\x10\xab\xfb\x82\x75\xa1\x80\xd1\x17\xac\x0b\x45\x9f\x2d\x5c\x75\x05\xb4\xb4\xa0\x56\x28\x84\x4d\x16\xd4\x0a\x72\xde\x17\xd4\x0a\x85\xd0\xc8\x82\xa7\xae\x2c\xfd\x0f\x62\x23\x5c\xd6\x05\x4f\x5d\x01\xe9\x2f\xe8\x14\xca\xd6\xff\x20\x13\x3a\xba\x0a\x04\x4d\x47\x7d\x81\x4c\x48\x13\x43\x15\x99\x90\x7e\x07\xbb\x0e\x5e\xc7\x82\x6a\xa1\x82\xa0\x17\x54\x0b\x52\x91\x5f\x15\x76\x1d\x8d\x3a\xa8\x16\x24\x65\xb6\xa0\x5a\xa8\x2c\xda\x0b\xaa\x05\x71\x9e\x2f\xa8\x16\x94\x7f\xb1\xa0\x5a\x90\xa3\xbd\x1a\x2c\x42\x4c\xfa\xab\xc1\xba\xa3\x8f\x1f\x9a\x85\xaa\xc9\x0d\x9a\x85\x16\xf4\x3f\x98\x67\x48\x80\x5d\xd0\x2c\x34\x8d\x10\x68\x16\x1a\x8b\xcc\x6a\x62\xdb\x51\xcf\xc4\xb6\xa3\x6b\xc2\x4a\x93\x75\x15\x58\x69\x64\x1f\xf4\x0a\x4d\xf6\x41\xaf\xd0\xf0\x67\x57\x17\xc3\x0e\xbf\x83\x5e\xa1\x81\x84\x17\xf4\x0a\x4d\x63\x10\x7a\x05\xe9\x2f\x2d\xe8\x15\x9a\xbe\x15\x28\x14\x94\x8f\xb1\xba\xd8\x73\xf4\x3b\x6c\xd0\x68\x85\x42\xa1\x69\x0e\x81\x42\x41\x4b\xea\xea\xd8\xa0\x2f\x0e\x72\x3a\xe5\x6a\x2c\xc8\xe9\x9a\x9e\x35\xb4\x09\xca\xc7\x58\x90\xd3\x75\xf6\x36\x96\xc1\xaa\x83\x87\xb7\x0c\x36\x1a\xa0\xc6\x32\x58\x75\x34\x13\x41\xa5\xd0\x87\xae\x02\xab\xce\xd4\x11\xac\x3a\x80\x92\x05\x71\x5d\x57\xcf\x20\xae\x53\x6d\xc3\x82\x3e\xc1\x34\x06\x21\xae\x93\x2f\xbf\x0c\xb6\x19\x7d\x47\xd0\x23\xa8\x6e\x61\x41\x8f\x60\xe5\x5f\xb9\xd8\x0b\x3e\x3b\x23\x6a\xb2\xe0\xb3\x93\x46\xdb\x82\xcf\xee\xb5\xf2\xc3\x67\x67\xfa\xe0\x60\x53\x30\x90\xf0\x82\x4d\x61\x68\x92\x82\xcf\x6e\xa8\xd3\xf0\xd9\x0d\xad\x15\xf0\xd9\x8d\xac\xdf\x41\xde\xf2\xe8\x9a\x90\xd3\x74\x9d\x09\x39\x0d\xa8\x67\xc1\x67\x37\x4c\x67\x8a\xb8\x85\x21\x08\x9f\x9d\xd8\xa0\x17\x0c\x0a\x83\x40\xfd\x82\x41\x41\x7b\xe8\x0b\x3e\x3b\x91\xb9\x2f\xd8\x13\x26\x89\x40\x0b\xf6\x04\xed\x85\x2f\xd8\x13\x5e\x68\x02\xf6\x84\x89\x1b\xb5\x60\x4f\x98\x6c\x91\x2e\xd8\x13\xa4\x43\xbe\x60\x4f\x98\x57\x57\x81\xc9\xe4\xd5\x17\x18\x3e\x84\x34\xe0\xb2\x5b\xfa\xfc\xe0\xb2\xd3\xb6\xe9\x82\x39\x61\xe9\x65\xc2\x79\xa0\x5d\xde\x05\xe7\xc1\xd2\x0a\xbe\xe0\x1e\xa1\x5a\x6d\xc1\x3e\xb7\xd8\xea\x58\xb0\xcf\x2d\x22\xcb\x0b\x3e\x84\xb5\x74\x26\xbc\x1c\x1a\x66\xf0\x21\xac\xad\x33\xe1\xaf\x20\xa6\xbf\x20\x3d\xd8\x5a\x48\x20\x3d\xd8\x78\x47\x0b\x56\x3a\x95\x86\xac\x2d\xee\x0a\xce\xdc\xe2\xae\x60\xc8\xc3\x4a\xb7\xd5\x33\x58\xe9\xb6\x3e\x00\x88\x10\x5e\xc8\x66\xc3\x5b\x01\xb6\x5f\x1b\xde\x0a\x2d\x8d\xb0\xd2\x1d\x3d\x25\x48\x10\x94\x56\xb7\x20\x41\x38\x1a\x4b\x90\x20\x28\xeb\x7d\xb9\x5f\xd3\x0e\xf5\xab\x0b\x02\x84\x43\xf0\x6c\x89\x00\x01\x8f\x6b\x89\x00\x41\xb8\x58\x04\x08\x45\xff\x73\x1b\xae\x50\xb2\xfb\x35\x4d\x62\xd4\x0b\xc6\xba\xdb\xf5\x3b\xc8\x1c\xd8\x64\x5a\xa2\x2e\xc0\xd1\x5e\xa2\x2e\x10\xb4\x11\x75\x81\x96\x70\x51\x17\x68\xda\x75\x6f\xa5\x4b\x86\x7b\x89\xb6\x80\x4d\xad\x25\xda\x02\x7c\x97\x25\xda\x02\xb2\x81\x16\x85\x37\x01\x9f\x6e\xbd\x68\x0b\x78\x9e\x2f\xda\x02\xfa\x42\xe1\x4d\x20\xc9\x6f\x51\x78\xa3\x2d\xae\x25\xda\x02\x21\x6f\x0a\x6f\x24\x98\xbd\x44\x5b\xa0\x6f\x5a\xb4\x05\x45\xff\xa3\x9c\x5f\x4f\x9e\xa2\x1b\x09\x65\x2f\x51\x16\xf0\x94\x36\x45\x37\x11\x2f\x75\x8b\xb2\xc0\xf4\xbf\xc4\xd1\xe1\xc8\xed\x8b\x4b\xff\x83\xb2\x80\xac\x9c\x2d\x5a\x02\x16\xf4\x2d\x5a\x02\x16\xf4\x2d\x5a\x02\xc2\x88\x9b\xa2\x9b\x14\x74\x3f\x4a\xda\x83\xae\x49\xd9\x3a\x69\x09\x9b\x62\x9a\xc4\x2c\xb5\x29\xa6\x49\x8c\xac\x1d\x55\x7e\xbf\x39\xf2\x7e\x0a\xd6\x6d\xd1\x0d\x80\xa7\x77\xa4\xf4\x9e\x2f\x60\x8b\x6a\x60\xfc\x6b\x7b\x6f\x8b\x85\x80\xa9\x67\x53\x63\x93\xb6\x8e\xa8\xca\x3f\xea\x18\x0c\x04\x32\x56\x0c\x04\x32\x36\xaa\xa4\x5d\x47\xfe\x8a\x32\x1f\xc0\xa6\x88\x26\x5f\x1d\x1d\x8e\x16\x47\x94\x5e\x83\x14\x37\x05\x34\x0f\xd5\x3f\x9b\x02\x1a\x6d\x16\x6d\x0a\x68\x1e\xa6\xdd\x4d\x01\x8d\xf0\xdf\x86\x75\xa0\x10\xb3\xd9\x14\xd0\x14\xf5\x85\x02\x9a\x52\xf4\x3b\x4a\x99\x99\x42\x76\x52\x29\xb3\xee\x4e\x49\x2d\xd3\xe0\x4e\x94\xd4\xbe\xae\x49\x49\x2d\xae\xfc\xa6\xb0\x46\x59\xa5\x1b\x46\x02\xe1\x9c\x0d\x23\x81\x36\x0d\x36\x45\x35\x42\x36\x9b\xa2\x1a\xa9\xb4\xec\xac\x9a\x53\x6c\xa0\xa8\xa6\xb1\x29\xb9\x29\xaa\x69\x7c\x7e\x9b\xc2\x19\x65\x85\x6e\x0a\x67\x1a\x29\x7d\x3b\xab\x9e\x54\xff\xa3\x6c\x96\xfc\x91\x0d\xed\x80\x50\xc8\x86\x76\xa0\x31\xed\x6e\x0a\x66\xa4\x8a\xb2\x29\x98\xe9\x51\x7d\x71\x1b\xa4\x8a\xb2\x29\x98\xe9\x1a\x9e\x14\xcc\x48\xe7\x64\x53\x30\xd3\x49\x05\xdb\x50\x12\xa8\x48\x67\x53\x2c\x23\x9d\x93\x4d\xb1\x4c\x2f\xba\x0a\xf5\xa5\x55\x67\x52\x35\x4a\x76\xf9\xa6\xfc\xa5\x13\x2b\xdf\x94\xbf\x74\x8d\x3a\x4a\x5c\x0c\x37\x71\x53\xe2\x62\x84\x4d\xb6\xfb\x27\xdd\x74\x87\x42\x75\x24\xd8\x69\x43\x40\x20\xe0\xb1\x0b\xd5\x91\xe4\x52\x6c\xc8\x07\x04\x43\x36\xe4\x03\x36\x74\x4d\x55\x47\xea\x88\xea\xc8\xa9\x33\xa9\x8e\xd4\xc4\x00\xf9\x80\x64\x2c\x36\xe4\x03\x83\x49\x6a\x43\x3e\xa0\x00\xc4\x76\xdf\xa5\x0f\x70\xdc\x76\xdf\xa5\x0b\x78\xec\x42\x75\xa4\xe9\x88\xea\x48\x8a\x39\xb6\xfb\x2e\x7d\xe8\x6d\x42\x4a\x30\xc0\x94\x1b\x52\x02\x49\x4d\x6c\x48\x09\x06\x5b\x86\x1b\x52\x02\x69\xa8\x6e\x48\x09\x66\xd0\x35\xa9\x1a\xa4\x42\x77\x57\xaa\x06\xa3\xae\xe9\xf6\x4d\xbd\x69\x08\x0b\xa4\xa1\xba\x21\x2c\x90\x8a\xcc\x86\xb0\x60\xea\x7b\x77\xdf\xa5\x4f\x3d\x4f\x08\x0b\x94\x35\xb2\x2b\x55\x91\xfa\xfe\x50\x0c\x9a\x6c\x12\xee\xa6\x2a\x42\xde\x51\x53\x15\x21\xa3\x1c\x22\x83\xa5\x6f\x05\x22\x03\x41\x8d\x0d\x91\xc1\x82\x61\x67\x43\x64\x20\x2d\xcf\x0d\x91\x81\x02\x1e\x1b\x22\x83\xa5\xe7\x02\x91\x81\xc8\xc0\x76\xa3\x4c\x90\xa5\x6a\xbb\xef\xd2\xb5\x63\xb2\xdd\x77\xe9\x22\x0a\xdb\x10\x1c\xec\xa8\x33\x37\x47\xba\xa6\xdb\xb7\x35\xae\x1b\xe5\x81\x9a\x92\x3b\xe5\x81\xf6\x2f\xc6\xbf\x0d\x2f\x82\x44\x0c\x36\xbc\x08\x9b\x40\xc2\x86\x17\x61\x6b\xd0\xc1\x8b\xb0\xd9\x08\xdc\x70\x1f\x6c\x5c\xe4\x0d\xf7\x81\xd4\xc0\x37\xdc\x07\x47\xeb\x0f\xdc\x07\x47\x9f\x91\xbb\x35\x5d\x65\xd4\xdb\x5d\x97\x2e\xee\xe4\x0d\xaf\x81\xa4\x09\x36\xbc\x06\x47\x1f\x15\xbc\x06\x87\xf8\xd1\x36\x55\x05\xf2\xe0\xe1\x35\x50\xe9\xca\x86\xd7\x40\x3c\x5a\xdb\xa8\x0a\x04\x17\x6f\xa3\x2a\x50\xab\x18\x9c\x07\x47\xab\x34\x9c\x07\xd2\xab\xdf\x70\x1e\x88\x63\x6b\xc3\x79\x20\xb9\x83\x0d\xe7\xc1\x19\xba\x0a\x95\x8f\xb8\xba\x1b\xce\x03\xb1\xc6\x6d\x38\x0f\x94\x89\xbd\xe1\x3c\xb8\xa0\xa5\x3d\xa8\x06\xd4\xa4\x08\xe7\x81\x44\x0c\x36\x9c\x07\x37\xe9\x4c\x2a\x01\x89\xd5\x6d\x38\x0f\x24\xa8\xb0\xe1\x3c\x50\x32\xd9\x86\xf3\x40\xc4\x5d\x1b\xce\x03\xe9\x71\x6e\x38\x0f\x2e\x59\x07\x1b\xce\x03\x25\x93\x6d\x98\x0c\x24\x4b\xb0\x49\x49\x53\xe2\xd2\x26\x25\x2d\x68\xba\x26\x25\x2d\x80\x53\x37\x29\x69\x4a\x63\xda\xa4\xa4\x85\xa2\x33\xa9\xeb\xd3\xc4\x47\x3a\x5a\x20\x8a\xbf\x27\xb5\x70\x44\x11\x37\xa9\x68\x41\xd8\x89\x54\x34\x85\xbd\x36\xa9\x68\x61\xe8\x2a\xd4\xfc\x69\x7c\x4e\x6a\xfe\xb4\x4c\xbb\x47\x62\x41\x1f\x23\x85\x33\xc2\x86\x9b\xc2\x19\xd1\x9e\x6e\x0a\x67\xa2\x9e\x35\x85\x33\x51\x53\xb9\x6f\xc9\x58\xd4\xf4\xe9\x5b\x32\x16\x9b\xfe\x47\x0d\x5d\xd7\x11\x35\x74\xfa\xe0\x28\xa6\x89\x1a\x3d\x8b\x1a\x3a\x01\x9d\x45\x0d\x1d\x1b\x73\x7b\xa9\x86\x8e\x5e\x2f\x6a\xe8\xc8\x0b\xdf\xee\xd7\x58\xd4\xf4\xe2\x7e\x8d\xbd\x50\x1d\xc5\x35\x09\x1f\x6b\x53\x5c\x23\x75\xcc\xbd\x28\xee\xa2\x3c\x7b\x53\x58\x23\x86\xfc\xbd\x28\x46\x23\x90\xb0\x37\x35\x75\x84\x9a\x36\x45\x33\x89\x3c\x91\x4d\xd1\x4c\xd2\xdd\x29\x9a\x49\xec\x52\xec\x4d\xe1\x96\x60\xc8\xa6\xc8\x29\xeb\x77\x9d\x23\xee\x4e\xc1\x8c\x02\x72\x9b\x82\x19\xed\x40\xed\xad\x82\x2d\xac\xa5\x60\x46\x3b\x50\x9b\x82\x99\xac\xa7\xb4\x29\x50\x23\xec\xb5\x29\x98\xc9\x24\xf2\xee\xa3\x42\x2d\x9e\x04\x05\x33\x0f\x1e\xfa\xa6\x28\xe6\x11\x24\xf2\x3d\x19\x53\xb6\xd0\xf6\x3d\x19\x2b\x78\x1d\x9b\x62\x98\x42\x18\x63\x53\x0c\x23\xc9\xc3\xed\x7b\x32\xa6\x8c\x99\xed\x7b\x32\x26\x01\xc4\x4d\x31\x4c\x11\x64\xa0\x18\xa6\x10\x38\xdc\x14\xc3\x88\x49\x66\x53\x0c\x23\x0e\x98\x4d\x31\x4c\xcd\xff\xd2\x9a\xdc\xd4\xc9\x28\xe6\xb6\xa9\x93\xa9\x38\x71\x9b\x3a\x19\xa5\xc1\x6c\xea\x64\xaa\x3e\x2a\x77\x80\x4c\x6a\x85\xfb\x52\xab\xa5\x07\x7f\xa9\x69\xc2\x31\xdc\x97\x9a\x26\x76\xd7\x37\xf5\x33\x22\x82\xd9\xd4\xcf\x48\x0c\x7f\x53\x3f\x53\x85\xf8\x28\x92\x69\x5a\x9b\x28\x92\x69\x9a\x18\x28\x92\x11\xdd\xca\x09\xd4\x01\x81\x53\x0f\x05\x32\x8a\xc7\x9d\x40\x4d\x53\xd6\x99\xd4\x34\xf1\xc1\x1d\x8a\x67\x1a\x03\xf9\x50\x3c\xd3\x08\x08\x1c\x8a\x67\x1a\x16\x9d\xa0\x5a\x26\xe3\x48\xb5\x4c\xfa\x9f\xdb\xd7\x08\x78\x1c\x77\x8e\xac\x4d\x9d\x49\x9d\xd3\xd2\x35\xa9\x73\xe2\x65\x1e\x0a\x6b\xda\xd1\x55\x28\x02\x0a\xea\x19\x45\x40\x2c\x63\xc7\x1d\x27\x13\x2f\xc9\x89\xd4\x32\xb1\xf1\x71\xa2\x0a\x80\x0a\x47\x14\xb0\x30\x3c\x4f\xa4\x80\x05\xd4\x73\x54\x76\x13\x75\x26\xc5\x2b\x59\x47\x14\xaf\xc0\x8e\x7c\x22\xc5\x2b\x45\x77\xa0\x40\xa7\xe8\xee\x14\xe8\x1c\x5d\x93\xc2\x0e\x42\x54\x87\x02\x9d\x41\x56\xed\xa1\x40\x67\x30\x69\x9c\xa4\xe2\x15\x7e\x47\x81\xce\x28\x3a\xa2\x20\x22\xe8\x88\x82\x08\xa6\x9e\x43\x11\x8e\x84\xc1\x0e\x45\x36\x33\xea\x7f\x14\x3d\xc8\x06\x8a\x6c\xa6\x6c\xa0\xc8\x46\xd4\xbc\x87\x22\x1b\x29\xe3\x1f\x8a\x6c\x26\x01\xb2\x43\x91\xcd\x04\xa7\x1e\x8a\x6c\x44\xb6\x7b\x28\xb2\x99\xec\xb4\x1c\x8a\x6c\x14\xcc\x3a\x59\x45\x1d\xbc\x3f\x8a\x6c\x26\x13\xd8\xc9\xd8\x70\xf5\x3f\xb7\x41\xbc\x91\x27\x53\x0e\x01\xae\x3a\x59\xe5\x10\xf4\x33\xab\x1c\x82\x27\x9f\x55\x0e\xa1\x9e\x51\x6d\x00\x28\x39\x14\xd8\x2c\x59\x44\x81\xcd\xce\xea\x19\xd5\x06\x59\xbd\x76\xfb\x44\xaa\x7a\x28\xb0\x91\xb0\xf7\xa1\xc0\x46\x61\xa1\x43\x81\x8d\xf4\xc9\x0f\x05\x36\x9b\x7c\xe6\x43\x81\xcd\x69\xba\x0a\xb9\xe9\x7a\x12\x94\xcd\xa8\xd6\xf5\x50\x36\x23\x18\x72\x28\x9b\x39\x04\xf9\xce\xa3\xdc\x74\xdd\x81\xdc\x74\x30\xfa\x79\xc8\x4d\x8f\xba\x0a\xb9\xe9\x7c\xef\x87\x72\x9b\xab\x2f\x9c\x72\x1b\x6d\xa9\x1d\xca\x69\x2e\x59\x3f\x87\x72\x9a\xcb\x02\x7b\x8a\xf2\xce\xb9\x03\xe5\x34\xca\x9f\x3e\x94\xd3\x08\x86\x9c\x22\xc5\xad\xb0\x85\x9b\x4f\x79\xeb\x04\x04\x5d\x7b\xbe\x5a\xc4\xe5\x79\xca\x9b\x58\x83\xd0\xcc\x51\x69\x4d\x3b\x7b\xe9\x4b\x53\x69\xcd\x4f\xcb\xa3\x1e\xdf\xdf\x16\xcd\x28\x2a\xfe\xff\x69\x19\xff\xaa\x1e\x3c\x92\x5c\xfd\x39\x59\x2f\x4e\x62\x44\xed\xec\x4d\xb5\xda\x71\x47\x29\x97\xd7\xd1\xcf\x23\xba\x97\x84\x9c\xe3\x8e\xd2\xfb\xa8\x7e\x1d\xb5\xaf\xa3\xfe\x2a\x5a\x50\x32\xfe\x71\x67\xe9\x91\xd6\xc3\x71\x67\xe9\x11\xda\x3e\xaa\xd7\x79\xc2\xde\xac\xc7\x07\x86\xb7\xab\x47\x43\xba\x5b\xd0\x70\x26\xdd\x4d\xd1\xb5\x43\xba\x5b\xc4\x8d\x3d\x62\x7f\x7b\xe2\xde\x04\x49\x0e\x29\x6f\x51\xf6\x90\xf2\x26\xf2\xca\xd3\xf2\xeb\xec\x83\x03\x74\x48\x7b\x93\x46\xf7\x21\xb5\x2d\x13\xe0\x3f\xa4\xb6\x89\x12\xf1\x34\x65\xf8\x32\x58\x9b\x08\x62\xf3\xaf\x05\x4d\x59\xb0\xba\xae\xb2\x60\xd5\x4b\x32\x48\x35\x98\x49\x6f\xd3\xe2\x75\x48\x6f\x7b\x1d\x91\xde\xa6\x20\xcb\x21\xbd\x4d\x9c\x66\x87\xf4\xb6\xba\x74\x26\x19\xa4\x47\x47\x64\x66\xc2\xe9\x72\x48\x6f\xeb\xfa\xac\x49\x6f\xeb\x24\xb4\x1d\xd2\xdb\x0c\x6f\xe6\x90\xde\x66\x9a\x5e\x49\x6f\x53\xdd\xe4\x21\xbd\x4d\xe4\x4a\x87\xf4\xb6\x41\xe8\xe4\x90\xde\x36\xf5\xf1\x90\xde\x26\x96\xf2\x43\x7a\x9b\x9c\xdf\x43\x7a\xdb\x24\xf2\x7c\x5e\x9c\xd9\x75\xab\xf8\xe2\x28\xc5\xed\xd1\xff\x49\x71\xc3\xa3\x39\x4a\x71\x3b\xfa\x9f\xdb\x78\x01\x20\x87\x14\xb7\x0b\x4e\x3a\xa4\xb8\x5d\x9c\xff\x63\xa4\x87\xa9\xe7\x88\xb0\x6a\x1b\xfa\x20\xc2\x1a\xaf\xae\xe2\x42\x59\xc6\x86\xe7\x41\xb5\xc8\xa6\xfe\xc7\x27\xfb\xcc\x7d\x1e\xfd\x96\xdc\x1d\x4d\x04\xa6\xdc\x1d\x9e\xb9\x7b\x51\x59\x34\xfc\x47\xfc\xd8\xcf\xdc\x97\x2d\xc4\x43\xaa\x5b\x61\xdf\xe0\x90\xea\x56\x00\x37\x47\x25\x3f\xe5\x6c\x49\xf3\x1d\xd2\xdd\x0a\x58\xf9\xb8\xc7\x94\xc7\xd2\xff\x3a\x47\xba\x2e\x79\x3a\x5a\x66\x49\x77\xab\x82\x2d\xa4\xbb\x49\x84\xe4\x90\xee\x26\xbe\xbc\x43\xba\x5b\xdd\xea\xaf\x97\xc0\x0c\x82\x12\x87\x74\x37\x6d\x69\x1e\xd2\xdd\x9a\x96\x13\xd2\xdd\x9a\xfa\x42\xba\x5b\xd7\x82\x45\xba\x9b\x69\xdc\x49\x65\x55\x70\x80\x74\xb7\x81\xaf\x73\x48\x77\x1b\xfa\x5a\xdc\xb7\xca\xaa\x65\x3c\xa4\xbb\x0d\xbd\x21\xd2\xdd\xa6\xbe\x6e\xd2\xdd\x54\x72\x73\x48\x77\x5b\x64\xd6\x9f\x29\x71\x43\x5d\x13\x71\x43\x2d\x35\x94\xf8\x6c\x81\x3b\xd2\xdd\x0e\xf9\xf2\x87\x74\x37\xd5\xaa\x1e\xd2\xdd\x8e\x9e\x2e\x39\x6d\x87\x58\xc3\x21\xa7\x4d\x15\x85\x87\x9c\x36\xed\x5c\x1c\x72\xda\x7e\x8f\x48\xae\xd0\xbc\x42\x4e\xdb\x6d\x3a\x12\xf7\x79\x80\x43\xff\xbf\xa7\x70\xb6\x94\x12\x3b\xc1\xc7\x5d\xaf\x7c\x34\x09\x21\x68\xa4\x1d\xcf\xc3\x96\x52\xa6\x5c\xf7\xb0\xa5\xa4\x58\xf1\x61\x4b\x49\x11\xe0\x23\xa1\x23\x3d\x28\x09\x1d\xb1\x17\x7b\xd8\x52\x92\x02\xfa\x61\x4b\xa9\xca\x0c\xb6\x94\x6a\xd5\x99\xec\x97\x0b\xc7\xb0\xa5\xd4\xd8\xb5\x3d\x6c\x29\x35\x22\x5e\x87\x2d\x25\xd3\x47\x0d\xef\xb6\xe9\x85\x6e\x36\x2b\xa7\xce\x64\x33\x4f\xb8\x97\xed\xa6\x55\x74\x04\xe5\xbb\x26\x51\xb6\x9b\x14\x12\x3a\x6c\x37\xfd\x1e\xc1\xb7\xad\x67\xa6\xed\x26\x7d\x20\x30\xc6\x05\x52\x08\x0f\x8c\x71\xaa\x62\x3a\xe2\xdb\xd6\x24\x7a\xc4\x45\xcd\xfd\x60\x8c\x8b\x49\x47\xec\x18\x08\xcd\xc2\x18\x97\x84\x40\x60\x8c\x4b\x7a\x47\xf0\x6d\x67\xf2\x39\x0e\x8c\x71\xa2\xa1\x3d\x30\xc6\x3d\x42\x35\x6c\x5a\x3d\x8f\xee\x00\x79\x2c\xfb\x0e\xe7\x25\x9e\x34\xb7\xb6\x1a\x0f\x1b\x57\x2a\xd6\x38\x6c\x5c\x15\x0a\x90\x0f\x1b\x57\x12\x81\x3a\x6c\x5c\x49\x8d\xfe\xb0\x71\x55\x35\x35\x5e\x91\x6d\x72\x17\x36\xae\xba\x26\x3b\x36\xae\xba\x9e\x0d\x1b\x57\x2a\xbe\x3f\x6c\x5c\x4d\x2d\xd0\xd7\xbe\x8e\x88\x8b\x6a\x22\x74\xbf\xed\x11\xf9\xe5\xb9\xbf\x28\x68\x65\xfd\x1f\x7a\x31\x61\x4e\x36\xaf\x94\xc6\x75\xd8\xbc\x5a\x8c\xe8\xcb\xe6\xd5\x66\x6a\xbb\xee\xbb\x39\x91\xb3\x1f\x11\x98\xc2\x03\xbc\x6c\x5e\x5d\xb0\xf1\x65\xf3\xea\xe2\xf7\x5c\x18\xe3\x24\x51\x70\x61\x8c\xbb\x4c\xe1\x17\xdf\x4d\xa3\xe1\xe2\xbb\xfd\x1e\x11\xc6\x21\x45\xef\xe2\x9f\x45\x02\x84\x17\xff\x4c\x05\x53\x17\xff\x2c\x67\xdd\x8f\x10\x01\x41\xa4\x8b\x7f\xf6\x10\x16\xbb\xbe\xb1\x65\x05\x9f\xef\x46\xfc\xeb\xa4\xff\xe1\x5f\x13\x6e\xba\xf8\x6e\x95\x2f\xe8\xe2\xbb\x35\x7c\x86\x8b\xef\xf6\x7b\x84\xef\x16\x74\x15\x7c\x37\xbc\xdf\x2b\xdf\xad\xe8\x2a\xf8\x44\xb2\x08\xdf\x4d\x52\xc5\x17\xdf\x6d\xe2\x9b\x5e\x7c\xb7\x15\x74\xa6\xdb\x27\x39\xe6\x8b\xef\xb6\x48\x10\xbc\xf8\x6e\x8b\x20\xe7\xc5\x77\x53\x9d\xf3\x85\x5c\x41\x12\x08\x17\x72\x05\x69\xcf\xde\x24\x9f\x81\x3b\xe0\xd7\x69\xbf\xe3\x26\xca\xc4\xdf\x12\xcf\x17\xc5\xa4\xa9\xfe\x90\x8a\x27\xf6\x99\x9b\xd8\x82\xe7\xdb\xbf\xa8\x25\xcd\x57\x7f\x7c\x3e\x51\x61\xd4\x65\x07\x4b\x12\xdd\x97\x54\x3c\x55\x37\x5e\xd4\x92\x42\xfb\x17\x15\xd3\xa5\x86\xe9\xb0\x59\x78\x11\x52\x52\x01\xf4\xc5\x25\xac\x00\xf7\xcb\xe6\x96\x42\x24\x97\xcd\xad\x48\x6c\xf8\x66\x51\x13\xd1\x31\x6a\x98\x94\x3d\x7c\x11\x58\x52\x6d\xde\x45\x9a\xb6\x53\x24\x72\x71\x09\x27\x28\xf3\x66\x6a\xe5\x96\xee\x47\xb6\x2b\x1f\xe5\x25\x4d\xaf\x24\x1d\xa1\x27\x17\x75\x4d\xf2\x3e\x98\xc8\x2f\xd2\xb4\x59\x43\x14\x97\x30\xf0\xd9\x5f\x5c\x42\x5b\x3a\x22\x23\x59\x83\x12\x97\x50\xbb\xc2\x17\x97\xb0\x11\x7d\xbe\x8f\xf6\x65\x79\x2e\x8f\xb2\x2b\x78\x45\x4a\xef\xd3\xfd\x60\x88\x93\xa4\xd6\x85\x8b\x5b\x81\x9d\x2b\xce\x05\xbd\x30\x71\x2e\x10\x7d\xbe\xd4\x37\x85\xa0\x3b\xac\x0f\x1f\xe0\x3e\xd4\x02\x06\xf5\x13\x74\x7a\xf4\xbb\x1f\xfb\xae\x11\x02\xba\x85\x6c\x65\x4d\x2a\xee\x3c\x5e\x63\xca\xbf\x92\xab\x25\xed\xea\xfa\xf6\xd9\x95\xac\xd3\xa5\x2e\xaa\x80\x90\xae\x3b\x96\x75\xc9\xa2\x97\xe8\x12\x23\xa4\xb4\x97\x28\xc5\x25\xfa\x77\xd9\x42\xeb\xb2\x11\xae\x06\xf9\x0d\x17\xae\x06\x65\x41\xdf\xf2\x66\x39\xd0\x87\xf0\xe2\x6b\xb0\x7d\xa2\xee\xf6\x63\x4f\x08\x6c\x0b\x5d\x77\x16\x43\x18\x3a\xfa\xb1\x27\xa9\xa0\xe2\xba\x27\x18\x22\x21\x98\xeb\x5e\x60\x88\x1a\x1f\xee\x05\x86\x48\xb2\xdd\x75\x2f\x30\x44\xbc\xa2\xeb\x5e\x60\x88\x7a\x0e\xee\x05\x86\x58\xf5\xbb\xce\x99\xd8\xe2\x1e\x60\x50\x59\xee\x75\x0f\x30\xc4\x47\xf7\x9b\x1c\xf1\x6c\xdd\xfb\x0b\x8a\x6e\x5f\xf7\xfe\x82\xca\x40\xae\x7b\x7f\xe1\xb7\xd7\x97\x23\xde\x90\x7b\x7f\x21\xe2\xec\x5f\xf7\xfc\x42\x24\x69\xf5\x36\xec\xcb\x3a\x92\x7d\xfa\x9d\xec\xe3\x9a\x4d\xf6\xf1\x4c\x1b\xf6\x69\x42\x6b\xd8\xc7\x06\xe0\x6d\xd8\xa7\x6f\xaa\x61\x5f\xd3\xdd\xb1\x8f\x14\xc8\xdb\xb0\x6f\xeb\x2a\xd8\x07\xc4\xba\x0d\xfb\xb6\xae\x89\x7d\x60\xc3\xdb\xb0\x8f\x40\xe3\xed\xd8\x47\x48\xeb\x76\xec\x63\xd3\xed\x76\xec\x23\x04\x71\x3b\xf6\xb1\xcc\xde\x8e\x7d\x9a\xf6\x3b\xf6\x25\xfd\x4f\xf6\xe9\x2a\xd8\xa7\xe9\xb2\xeb\xfd\x31\x32\x3b\xf6\x3d\xea\x0b\xf6\x69\xf1\xe8\xd8\x87\xc7\x77\x3b\xf6\x69\xfe\xea\xd8\xa7\x85\xd3\xbd\xc1\xf4\x7a\xf2\xee\x0d\xa6\xc4\xd6\xeb\x75\x6f\x30\x25\x00\xd0\x75\x6f\x2f\x89\x19\xfd\xba\x47\xf7\x3b\x92\xdd\xa3\xfb\x1d\xc9\xee\xd1\x31\x92\xff\x7b\x7a\x36\xfb\x1c\xe4\x36\x3e\x07\xb9\xcd\xcf\x41\x6e\xeb\x73\x90\xdb\xfe\x1c\xe4\x76\x3e\x07\xb9\xdd\xcf\x41\x3e\xc2\xe7\x20\x1f\xf1\x73\x90\x8f\xf4\x39\xc8\x47\xfe\x1c\xe4\xe3\xf9\x1c\xe4\xa3\x7c\x0e\xf2\x51\x3f\x07\xf9\x68\x9f\x83\x7c\xf4\xcf\x41\x3e\xec\x73\x90\x8f\xf1\x39\xc8\xc7\xfc\x1c\xe4\x63\x7d\x0e\xf2\xb1\x3f\x07\xf9\x38\x9f\x83\x7c\xdc\xcf\x41\x3e\xc3\xe7\x20\x9f\xf1\x73\x90\xcf\xf4\x39\xc8\x67\xfe\x1c\xe4\xf3\xf9\x1c\xe4\xb3\x7c\x0e\xf2\x59\x3f\x07\xf9\x6c\x9f\x83\x7c\xf6\xcf\x41\x3e\xed\x73\x90\xcf\xf1\x39\xc8\xe7\xfc\x1c\xe4\x73\x7d\x0e\xf2\xb9\x3f\x07\xf9\x3c\x9f\x83\x7c\xde\xcf\x41\xbe\xc2\xe7\x20\x5f\xf1\x73\x90\xaf\xf4\x39\xc8\x57\xfe\x1c\xe4\xeb\xf9\x1c\xe4\xee\xfc\xfd\x0e\x72\x77\xfe\x7e\x07\xb9\x3b\x7f\xbf\x83\xdc\x3d\xb8\xdf\x41\xee\x1e\x5c\xc8\x5d\x67\x7a\xcf\x54\xb4\x7e\xdd\x2f\x0b\x99\x6c\x98\xeb\x7e\x59\xc8\x04\x04\xae\xfb\x65\x21\x6b\x99\x70\xbf\x2c\x88\x6f\xf0\xba\x7f\x15\xe4\x07\x5e\xf7\xaf\x42\x26\x4a\x7d\xdd\x87\x0a\x12\x37\xbe\xee\x43\x85\x3c\xf5\xbf\xc3\xff\xb8\x83\xe3\xf6\x1c\xc8\x1a\xb8\x8e\xdb\xb3\x34\x7b\x2e\x4a\xa7\x01\x92\x83\xeb\x98\x3d\x07\x8d\x02\xc7\xec\x39\xf8\xd2\xeb\x24\x13\x3f\x47\xee\x84\x97\xe0\xd8\x3b\xa3\xf5\x53\x42\x94\x20\x58\xe2\xc8\x7b\x1d\x3c\x26\x5f\x82\x23\xd5\x10\x9e\x1c\xd8\xc4\x2d\xc1\xd1\x6a\x08\xcf\xfc\x6e\x9d\xb4\xa6\x10\x9e\xf2\x6e\x5d\xb4\xc6\x10\x3c\x77\xa2\x04\x47\xb0\xb4\x38\x66\x2f\x81\x62\x12\x04\xf0\x4a\x88\xf4\x7a\xd2\x4f\x47\xb1\x19\x02\xd5\x12\x12\x77\xf6\x6f\xac\x84\x34\x75\x14\x82\x7f\x05\x25\x24\xee\x96\xe3\xbb\x85\xbb\xe5\xf4\x6e\x39\xb4\xe4\x77\x0b\x0b\x75\x7e\x7e\x5b\x32\x8b\x75\x2e\xef\x96\x48\x4b\x7d\xb7\x24\x5a\xda\xbb\x25\xd3\xd2\xdf\x2d\x0f\x2d\xf6\xdb\x42\x61\xf8\x69\x58\xf7\xe8\x49\xf2\x86\x00\x4e\x80\x1c\x27\xfe\x70\xb6\x0c\x9e\x11\x5a\xff\xc8\x0e\x97\xe0\xc0\xa9\xd6\xa4\x23\xaa\xaa\x2f\x47\x14\x8d\x27\x3d\x5b\x8a\xc6\x61\xaf\x29\x01\xe0\xf4\x7a\xcf\x52\xab\xf4\x11\x58\x42\x81\x25\x65\xd0\xb3\xc2\xf8\x68\x33\x87\x7f\x05\x46\x3c\x38\xec\x0c\x16\x98\x48\xbd\x39\x09\x76\x25\x28\x2d\xe9\xf0\xf2\x1d\x53\xd5\xee\x8e\x55\x09\x85\x08\x52\xd4\xef\xdc\x3d\x3d\xaf\xae\x52\x74\x1d\x75\xe6\x7e\x47\xec\x4a\xf0\xe0\x7c\x4d\x8f\x3a\xce\xeb\x2b\x21\x10\xa5\x2e\x41\x58\xeb\xd9\xef\x16\xb8\x32\x16\xd7\x06\x6f\x85\x92\x7f\x07\x25\x98\xcb\x5b\x3c\x2e\x55\x02\xb8\x8b\x16\x1e\x17\xd8\x8b\x16\xfd\xaa\xfa\x43\x5a\xf4\x0a\xfc\x15\x9e\xfe\xbe\xab\xaf\x8d\x21\xf2\x48\x1d\x83\xbd\x8f\xc6\xd7\xd1\xfe\x1d\xca\x1a\xdc\xf5\xbc\x5b\xd4\xa3\xfb\x6e\xa1\x47\x2d\xbc\x5b\xe8\x51\x8b\xef\x16\xae\xdc\xd2\xbb\x85\x0f\xac\xe5\x77\x0b\xfd\x6c\xcf\xbb\x05\x5b\xc0\x61\xb4\xf0\x1e\xc1\x62\xb4\x30\x40\xc1\x63\xfe\xb1\xa9\xcf\x60\x32\x5a\xe8\x33\xb8\x8c\x16\xf5\x79\xbc\x5b\xd4\xe7\xf9\x6e\x51\x9f\xdf\x9f\xf1\xab\xcf\xfb\xdd\xa2\x3e\x9f\x77\x8b\xfa\x7c\xdf\x2d\xf4\xb9\x87\x77\x0b\x7d\xee\xf1\x77\x3a\x50\x9f\x7b\x7a\xb7\xd0\xe7\x9e\xdf\x2d\xf4\xb9\x3f\xef\x16\xfa\xdc\xcb\xbb\x85\x3e\xf7\xfa\x6e\xa1\xcf\xbd\xbd\x5b\xe8\x73\xef\xef\x16\xfa\xdc\xed\xdd\xa2\x3e\x8f\x77\x8b\xfa\x3c\x7f\x27\xac\x57\x9f\xd7\xbb\x45\x7d\xde\xef\x16\xf5\xf9\x3d\xcd\xbd\xfa\x7c\xdf\x2d\xf4\xd9\xc2\xbb\x85\x3e\x5b\x7c\xb7\xd0\x67\x4b\xef\x16\xfa\x6c\xf9\xdd\x42\x9f\xed\x79\xb7\xd0\x67\x2b\xbf\x53\xaa\xfa\x2c\x0c\xe9\x2d\xf4\x59\x38\xd2\x5b\xe8\xb3\xf5\x77\x0b\x7d\x36\x7b\xb7\xa8\xcf\xe3\xdd\xa2\x3e\xcf\x77\x8b\xfa\xbc\xde\x2d\xea\xf3\x7e\xb7\xa8\xcf\xe7\xdd\xa2\x3e\xdf\xdf\x49\x5f\x7d\x1e\xef\x65\x40\x7d\x1e\xf1\xdd\x42\x9f\x47\x7a\xb7\xd0\xe7\x91\xdf\x2d\xf4\x79\x3c\xef\x16\xfa\x3c\xca\xbb\x85\x3e\x8f\xfa\x6e\xa1\xcf\xa3\xbd\x5b\xe8\xf3\xe8\xef\x16\xfa\x0c\xe8\x0c\xa9\x7d\xcd\x1d\x80\xcf\x77\xab\xfa\x3e\xbf\x5b\xd5\xff\xf5\xdd\x2a\x1b\xf6\x77\xab\xec\x38\xdf\xad\xb2\xe5\x7e\xb7\x62\x0f\x60\xf5\xdd\x8a\x4d\x80\xd6\x77\x2b\x76\x01\x5e\xdf\xad\xd8\x06\x88\xa5\xf5\x3d\xc7\x00\x66\xdf\xad\xd8\x06\xa8\x7d\xb7\x62\x1b\xe0\xf6\xdd\x8a\x6d\x80\xdc\x77\x2b\xb6\x01\x76\xdf\xad\xd8\x36\xed\xbb\x55\xb6\x8d\xef\x56\xd9\x36\xbf\x5b\xff\x11\xb0\x2a\x61\xae\xef\x1f\xc8\xec\x8f\x47\xff\x9e\xa6\xe6\xf9\x6e\x95\xd9\xf7\xbb\x15\xb3\x57\xf8\x6e\xc5\xec\x15\xbf\x5b\x31\x7b\xa5\xef\x56\xcc\x5e\xf9\xbb\x15\xb3\xd7\xf3\xdd\x8a\xd9\xab\x7c\xb7\xf2\x4a\x57\xfd\x6e\xc5\xb6\xf5\xf1\xe8\xdf\xd3\xd9\xea\xdf\xad\xd8\xb6\xec\xbb\x55\xb6\x8d\xef\x56\xd9\x36\xbf\x5b\x65\xdb\xfa\x6e\x95\x6d\xfb\xbb\x55\xb6\x9d\xef\x56\xd9\x76\xbf\x5b\xb1\x6d\x87\xef\x56\x6c\xdb\x1f\xcf\xf7\x3d\xed\xed\xf4\xdd\x8a\x6d\x3b\x7f\xb7\x62\xdb\x7e\xbe\x5b\xb1\x6d\x97\xef\x56\x6c\xdb\xf5\xbb\x15\xdb\x76\xfb\x6e\xc5\xb6\xdd\xbf\x5b\xb1\x6d\xdb\x77\xab\x6c\x1b\xdf\xad\xb2\xed\xe3\xf9\xbe\xa7\xc7\xbd\xbe\x5b\x65\xdb\xfe\x6e\x95\x6d\xe7\xbb\x55\xb6\xdd\xef\x56\x6c\x3b\xe1\xbb\x15\xdb\x4e\xfc\x6e\xc5\xb6\x93\xbe\x5b\xb1\xed\xe4\xef\x56\x6c\x3b\xcf\x77\x2b\xb6\x9d\x8f\xe7\x5b\x7f\x6d\x3b\xf5\xbb\x15\xdb\x4e\xfb\x6e\xc5\xb6\xd3\xbf\x5b\xb1\xed\xd8\x77\xab\x6c\x1b\xdf\xad\xb2\x6d\x7e\xb7\xca\xb6\xf5\xdd\x2a\xdb\xf6\x77\xab\x6c\x3b\xdf\xad\xb2\xed\xe3\xf9\xb6\x5f\xdb\x6e\xf8\x6e\xc5\xb6\x1b\xbf\x5b\xb1\xed\xa6\xef\x56\x6c\xbb\xf9\xbb\x15\xdb\xee\xf3\xdd\x8a\x6d\xb7\x7c\xb7\x62\xdb\xad\xdf\xad\xd8\x76\xdb\x77\x2b\xb6\xdd\xfe\xdd\x8a\x6d\xf7\xe3\xf9\xf6\xb7\x6d\xe3\xbb\x55\xb6\xcd\xef\x56\xd9\xb6\xbe\x5b\x65\xdb\xfe\x6e\x95\x6d\xe7\xbb\x55\xb6\xdd\xef\x56\xb7\x2d\x86\xf0\xdd\xda\x68\x8d\xdf\xad\x9d\xd6\xf4\xdd\x6a\xb4\x7e\x3c\x5f\x7b\xd9\x16\xc3\xf3\xdd\x1a\x69\x2d\xdf\xad\x89\xd6\xfa\xdd\x9a\x69\x6d\xdf\xad\x0f\xad\xfd\xbb\xb5\xd0\x6a\xdf\xad\xb2\x6d\x7c\xb7\xca\xb6\xf9\xdd\x2a\xdb\xd6\x77\xab\x6c\xfb\xeb\xea\xc4\xf0\xd7\xd5\x89\xe1\xaf\xab\x13\xe3\x5f\x57\x27\xc6\xbf\xae\x4e\x8c\x7f\x5d\x9d\x18\xff\xba\x3a\x31\xfe\x75\x75\x62\xfc\xeb\xea\xc4\xf8\xd7\xd5\x89\xf1\xaf\xab\x13\xe3\x5f\x57\x27\xc6\xbf\xae\x4e\x8c\x7f\x5d\x9d\x18\xff\xba\x3a\x31\xfe\x75\x75\x62\xfc\xeb\xea\xc4\xf8\xd7\xd5\x89\xf1\xdb\xd5\xf9\x4f\x98\x11\xd3\x5f\x2f\x28\xa6\xbf\x5e\x50\x4c\x7f\xbd\xa0\x98\xfe\x7a\x41\x31\xfd\xf5\x82\x62\xfa\xeb\x05\xc5\xf4\xd7\x0b\x8a\xe9\xaf\x17\x14\xd3\x5f\x2f\x28\xa6\xbf\x5e\x50\x4c\x7f\xbd\xa0\x98\xfe\x7a\x41\x31\xfd\xf5\x82\x62\xfa\xeb\x05\xc5\xf4\xd7\x0b\x8a\xe9\xaf\x17\x14\xf3\x5f\x2f\x28\xe6\xbf\x5e\x50\xcc\x7f\xbd\xa0\x98\xff\x7a\x41\x31\xff\xf5\x82\x62\xfe\xeb\x05\xc5\xfc\xd7\x0b\x8a\xf9\xaf\x17\x14\xf3\x5f\x2f\x28\xe6\xbf\x5e\x50\xcc\x7f\xbd\xa0\x98\xff\x7a\x41\x31\xff\xf5\x82\x62\xfe\xeb\x05\xc5\xfc\xd7\x0b\x8a\xf9\xaf\x17\x14\x9f\xbf\x5e\x50\x7c\xfe\x7a\x41\xf1\xf9\xeb\x05\xc5\xe7\xaf\x17\x14\x9f\xbf\x5e\x50\x7c\xfe\x7a\x41\xf1\xf9\xeb\x05\xc5\xe7\xaf\x17\x14\x9f\xbf\x5e\x50\x7c\xf4\x7c\xea\xbb\xcf\xe3\xdd\xa2\x3e\xcf\x77\x8b\xfa\xbc\xde\x2d\xea\xf3\x7e\xb7\xa8\xcf\xe7\xdd\xa2\x3e\xdf\x77\x0b\x7d\x2e\xe1\xdd\x42\x9f\xcb\x3b\x58\xa8\x3e\x97\xf4\x6e\xa1\xcf\x45\xcf\xe7\x77\x59\x8e\xe5\x79\xb7\xd0\xe7\x52\xde\x2d\xf4\xb9\xd4\x77\x0b\x7d\x2e\xed\xdd\x42\x9f\x4b\x7f\xb7\xd0\xe7\x62\xef\x16\xf5\x79\xbc\x5b\xd4\xe7\xf9\x6e\x51\x9f\xd7\xbb\x45\x7d\xd6\xf3\xe9\xef\x3e\x9f\x77\x8b\xfa\x7c\xdf\x2d\xf4\x59\xd1\xb8\xf7\x12\x1b\x6b\x7c\xb7\xd0\x67\x45\xe4\xde\x4b\x6b\xac\xef\x60\xaa\xfa\xac\x88\xdc\xc7\x92\xaa\x88\xdc\xc7\x72\x5a\xeb\xbb\x85\x3e\x2b\x2a\xf7\xb1\x8c\xd6\xfe\x6e\xa1\xcf\xd5\xde\x2d\xea\xf3\x78\xb7\xa8\xcf\xf3\xdd\xa2\x3e\xaf\x77\x8b\xfa\xbc\xdf\x2d\xea\xf3\x79\xb7\xa8\xcf\xf7\xdd\x42\x9f\x5f\x51\xbc\xf7\x12\xf9\x8a\xe2\xc5\xaf\x65\xf2\x15\xc9\x8b\x5f\x4b\xe5\x2b\x9a\x17\xbf\x96\xcb\x57\x44\x2f\x7e\x2d\x99\xaf\xa8\x5e\xfc\x5a\x36\x5f\x91\xbd\xf8\xb5\x74\x7e\x45\xf7\x7e\xed\xf9\x8c\xf0\xbd\x97\xd0\xcf\x28\xdf\x7b\x19\xfd\x8c\xf4\xbd\x97\xd2\xcf\x68\xdf\x7b\x39\xfd\x8c\xf8\xbd\x97\xd4\xcf\xa8\xdf\x7b\x59\xfd\x8c\xfc\xbd\x97\xd6\xcf\xe8\xdf\x7b\x79\xfd\x8c\x00\xbe\x97\xd8\x1e\xbf\x5b\xb1\xad\xa7\xef\x56\x6c\xeb\xf9\xbb\xf5\x9f\xcb\x6d\x7f\xbe\x7f\x80\xd9\xfd\xe3\xd1\xbf\x97\xdd\x5e\xbf\x5b\x31\xbb\xb7\xef\x56\xcc\xee\xfd\xbb\x15\xb3\xbb\x7d\xb7\xca\xec\xf1\xdd\x2a\xb3\xe7\x77\xab\xcc\x5e\xdf\xad\x32\x7b\x7f\xb7\xf2\x4a\xfb\xf9\x6e\x95\x6d\x1f\x8f\xfe\xbd\x3c\x5b\xf8\x6e\xc5\x36\x8b\xdf\xad\xd8\x66\xe9\xbb\x15\xdb\x2c\x7f\xb7\x62\x9b\x3d\xdf\xad\xd8\x66\xe5\xbb\x15\xdb\xac\x7e\xb7\x62\x9b\xb5\xef\x56\x6c\xb3\xfe\xdd\x8a\x6d\xf6\xf1\x7c\xdf\xcb\xb8\x8d\xef\x56\xd9\x36\xbf\x5b\x65\xdb\xfa\x6e\x95\x6d\xfb\xbb\x55\xb6\x9d\xef\x56\xd9\x76\xbf\x5b\xb1\x6d\x84\xef\x56\x6c\x1b\xf1\xbb\x15\xdb\x46\xfa\x6e\xc5\x36\x05\x2a\xd3\xf9\xb5\x4b\x81\x4a\x6f\xc1\x26\x05\x2a\xbd\x05\x7b\x14\xa8\xf4\x16\x6c\x51\xa0\xd2\x5b\xb0\x43\x81\x4a\x6f\xc1\x86\x57\xa0\xf2\xbc\xfb\x3f\xde\x2d\xea\xfb\x7c\xb7\xa8\xdf\xeb\xdd\xa2\x3e\xcb\x3b\x5b\xef\x3e\x9f\x77\x8b\xfa\x7c\xdf\x2d\xf4\xf9\x15\x8c\x5c\xbf\x7d\x7e\x05\x22\xd7\x6f\x9f\x5f\x41\xc8\xf5\xdb\xe7\x57\x00\x72\xfd\xf6\xf9\x15\x7c\x5c\xbf\x7d\x7e\x05\x1e\xd7\x6f\x9f\x5f\x41\xc7\xf5\xdb\x67\x05\x1c\x5b\xe0\xaf\xaa\x4f\xfd\xbb\x75\xd3\xfa\xf6\xba\x8a\x7a\xaa\x3d\xc2\xf7\x82\xaa\x40\xe3\x73\xdf\x2d\xeb\xb7\xa5\xa9\x17\xda\x65\x3d\xef\x16\x9e\x53\x79\x4f\xa4\x8a\x1e\x3e\x23\x84\x96\x7e\x9e\xb2\xb7\x2a\x7a\xf8\x3c\xdf\xad\xd1\xb7\xba\xc6\xca\x48\x50\x96\xe8\x91\xc3\x1c\x66\xc8\xe1\xac\x1c\xd8\x37\x8c\x1e\x39\xcc\x61\xdc\x1c\xce\xce\xe1\xae\x1c\x7c\xf7\xbb\xc4\xc5\xfe\xf3\x6c\xb4\x6e\xfb\xb9\x52\x46\x48\xb3\xc4\x55\x7e\xff\x3b\x5a\x0e\x33\xbe\xef\xc3\x26\xdb\xec\x39\x9c\xc2\x6f\x5f\xff\x69\xda\x7e\xe3\x77\x5c\x91\xff\x74\xfe\x63\x39\xac\xfc\xbe\x87\xb1\x97\x1c\x7e\x7a\xfb\x6e\x1d\xb4\xe6\xef\x73\xb5\xe7\x6e\xb2\xe5\xe3\xae\xda\x7f\x5f\x3f\x7d\xa1\x85\x3d\xf8\x63\x39\xdc\x9f\x2b\xf0\xd6\x17\x7b\xf1\x67\xd0\x3a\xce\xf7\xf5\xef\xdf\xe7\xb9\xc3\xff\xf4\x3c\x77\xfc\xdf\x9e\xe7\x4e\xff\xf5\x3c\x77\xfe\xdf\x9e\xe7\x7e\xfe\xb7\xe7\xb9\xcb\xff\xf6\x3c\x77\xfd\x9f\x9e\xe7\x6e\xff\xd3\xf3\xdc\xfd\x7f\x7a\x9e\xdb\xfe\xb7\xe7\xb9\xc7\xdf\xe7\xb9\xe7\xff\xf4\x3c\xf7\xfa\xaf\xe7\xe9\x51\x47\x95\x40\x79\xb6\xe1\xe7\x11\xcf\x3a\xa4\x0c\xf1\x50\x89\x27\xbc\x5b\x2e\x2d\x7c\xeb\x93\x67\xab\x48\xe1\xd0\x51\x79\x27\xeb\x95\x78\x94\x11\xc4\xec\x73\x94\x11\xa4\xff\x29\x69\x8b\xef\xeb\x28\x23\xe8\x1f\x0c\x0b\x25\x1e\xe5\xe3\xe9\x76\x24\xd3\x54\x5d\x52\xc9\x42\x4c\x06\x47\xc9\x34\x18\x7d\x94\x2c\xa4\xae\x90\x4c\xf3\xf0\xb8\x08\xf2\x91\xe2\x54\x22\xc1\x3d\x52\x9c\x4a\xbc\xca\x37\xe4\x0e\x57\xf9\x6a\x7c\xe8\x57\xf9\x6a\x98\x70\x95\xaf\xc6\x1d\xae\xf2\xd5\x74\x24\xd3\xf5\x3b\x99\xae\x6b\xca\x74\x1e\x37\x41\x39\x52\x9c\x4a\xbc\xca\x37\x64\x92\x25\x08\x47\x8a\x93\x17\x87\xfd\xa6\x38\x95\x48\xd0\x8d\x14\xa7\x12\x09\xb6\x91\xe2\x54\x12\x41\x36\x52\x9c\x4a\x0a\x4a\x86\x2a\x1c\x29\x59\xe8\xe1\x48\xc9\x42\x95\x23\x25\x7b\xe9\x2a\x4a\xf6\x6a\x1c\x61\xdf\xd5\x55\xb0\xcf\x53\x9c\x4a\x0a\x4a\xf6\x8a\x1c\x61\x5f\xd2\xff\x64\x9f\xae\xa2\x64\xaf\xc3\x91\xde\xdf\xe2\x48\xc9\x6c\xea\x0b\xf6\x15\xfd\x4e\xf9\x86\xfe\xa6\x53\x54\xb2\x17\x7d\x21\xd8\x45\x8a\x53\x49\x1e\xe8\x52\x8a\x53\x49\x1e\xe4\x52\x8a\x53\x49\x1e\xe0\x52\x8a\x53\x49\x1e\xb8\x52\x8a\x53\x49\x0a\x48\x4d\x1d\xcd\x8f\x41\x9e\x3c\x10\xf5\x1a\xe4\x89\x20\x94\x06\x79\x22\x00\xa5\x41\x9e\xe2\xfd\x18\xe4\x29\x85\xdf\x41\xfe\x73\x14\x3f\x46\x72\x22\xaa\xa4\x91\x9c\x88\x28\x69\x24\xa7\xf4\x7c\x8c\xe4\x44\x24\x49\x23\x39\xa5\xfa\x31\x92\x53\x6a\x1f\x23\x39\x11\x3d\xd2\x48\x4e\xc9\x3e\x46\x72\x4a\xe3\x63\x24\xa7\x34\x3f\x46\x72\x4a\xeb\x63\x24\xa7\xb4\x3f\x46\x72\x4a\xe7\x63\x24\xa7\x74\x3f\x46\x72\xca\xe1\x63\x24\x27\x22\x43\x1a\xc9\x29\xa7\x8f\x91\x9c\x88\x08\x69\x24\xa7\xfc\x7c\x8c\xe4\x44\x24\x48\x23\x39\x11\x05\x7a\x8d\x64\x22\x40\xaf\x91\x4c\xf4\xe7\x35\x92\xb3\x7d\x8e\x64\xa2\x3e\xaf\x91\x4c\xc4\xe7\x35\x92\x89\xf6\xbc\x46\x32\x91\x9e\xd7\x48\xce\xe7\x73\x24\x13\xe1\x79\x8d\xe4\x27\x7c\x8e\xe4\x27\x7e\x8e\xe4\x27\x7d\x8e\xe4\x27\x7f\x8e\x64\xa2\x39\xaf\x91\x4c\x24\xe7\x35\x92\x9f\xfa\x39\x92\x89\xe0\xbc\x46\x32\xd1\x9b\xd7\x48\xf6\xc8\xcd\xef\x48\xf6\xa8\xcd\xef\x48\xf6\x88\xcd\xef\x48\xf6\x48\xcc\xef\x48\x7e\xa8\x1a\x1b\x3c\x5d\x8f\xc0\xdc\xa1\xd1\x43\xae\xf8\xd0\x9b\x86\x6a\x69\x36\xae\xe2\x51\x17\xaf\xf4\xfe\xef\x29\x39\x29\x1b\xaa\x60\xac\x07\x62\xbc\x3e\xd7\x8f\x2a\x47\x0c\xdd\x42\x71\xad\x61\x50\xa1\xb8\x76\xe8\x76\xa4\x34\xe9\x45\x7b\x40\xc5\x0b\x9d\xfc\x68\x73\xa4\xab\x1c\x8e\xf4\xbb\x8b\x2a\x15\x8f\xa5\xa2\x19\x15\xf8\x9d\x07\x4f\x1e\xc4\xe4\x4b\xf2\xc0\x89\x17\xac\xf8\x51\xe6\x88\xbe\x78\xc0\xc4\xeb\x1b\xfc\xa8\x70\xc4\x6b\xf0\x40\xc9\x73\xf5\xc8\x3c\x48\xe2\x75\x03\x7e\x84\xee\x55\xd1\x11\xba\x57\xb2\x5d\xc5\xc1\x55\x3d\x43\xf7\xaa\x31\x94\x2a\xba\x57\x8d\x81\x5c\xd1\xbd\xea\xfc\xaf\x61\x43\xe7\x7f\x0d\x1b\x48\xf5\x4a\x0d\x1b\x3a\xd7\x6c\xd8\x60\xf4\xac\x61\x83\x71\xf7\x86\x0d\xa6\xab\x60\x83\xf1\xcc\x1a\x36\x4c\xfd\x8f\x9e\x2d\x86\x52\xa3\x67\x60\x85\xd4\xe8\x19\xc9\x60\xa9\xd3\xb3\xad\x23\x7a\xa6\x77\xd4\xe9\x19\x99\x75\xa9\xd3\xb3\xab\x33\x51\xe4\x0a\x3c\x6b\xca\x7c\x83\xa6\x25\xca\x7c\x83\xde\x03\x65\xbe\x21\x32\x85\x50\xe6\x2b\xef\x25\x51\xca\x2b\x8f\x23\x51\xca\x1b\x34\xa1\x50\xca\x1b\x34\x99\xa2\x46\x11\x0a\xf6\x51\xaa\x1b\x2a\x57\xa1\x54\x37\x68\x8a\xa4\x54\x57\x1e\x45\xa2\x54\x37\xe8\x1d\x51\xaa\x1b\xf4\x56\x8c\xbe\x74\x9e\x92\xa1\x0e\xd6\x75\x3f\xd4\xc1\xf4\x1e\x50\xa3\x08\xc6\x48\x1e\xdc\x5d\xcf\x7a\x70\xf7\xc9\xfd\x06\x77\x5f\xfc\x6e\x70\xf7\xcd\xfb\x1b\x3c\x09\xb2\x39\xd3\xe0\xee\x7a\xd6\x83\xbb\x93\x9f\x9a\x06\x77\xbf\xf4\x6c\x70\xf7\x4b\xcf\x86\xb4\xc9\xf4\x3b\x64\xbe\x22\x7d\x71\x4f\xcf\x77\x2f\xfc\x08\xc5\x31\x4d\x6e\x13\xc5\x31\xbc\xc4\x34\x51\x1c\xc3\xfb\x4b\x13\x59\xb1\xac\xab\x20\x2b\xa6\xef\x61\x22\x2b\xf6\xe8\x2a\xde\x97\x58\x74\x07\xb2\x34\x0b\x23\x6b\xd2\x17\x2d\x78\x13\xc9\xb1\xc6\xb8\x9e\x14\xcb\x6b\x94\x2f\xfa\x39\xb9\xe6\xa2\x50\x7e\x71\xbf\x45\xa1\xfc\xd6\x11\x8a\x6a\x5a\x10\x16\x8a\x6a\x47\x47\xd8\xa7\x27\xb1\xb0\xef\x32\x0a\x16\x72\x64\x91\x9e\x2d\xe4\xc8\xb4\x18\x2e\xe4\xc8\x34\xce\xdc\x03\x2a\x49\x36\xb8\xe7\xe3\x53\x90\x1f\x49\xaa\x8c\xb7\xb9\x24\x55\xc6\xef\x50\xaf\x4b\xc6\x5b\x41\xbd\x2e\x0d\xfd\x2f\x73\x44\x5f\x50\xaf\x83\xd5\xb1\x24\x34\xe9\x92\xc6\x0b\x9a\x74\x3f\x86\xfd\x63\x4a\x46\xae\x2e\xe9\x93\x46\xae\x2e\x2d\xba\x89\x5c\x5d\xda\xbc\x4c\xe4\xea\x92\x3e\xe9\x2d\x45\x35\x75\x4c\x8a\x6a\x18\x7b\x48\x96\x3d\x98\x70\x30\xe8\xf0\x3b\x84\xed\xa0\x22\x2f\x09\x61\xbb\xa4\x01\x89\xb0\x5d\x0e\x3a\x13\x45\xb5\xc8\x90\x40\xd8\x2e\xeb\xc1\x23\x6c\x97\x23\x1f\x0e\xea\x75\x59\x08\x05\xf5\xba\x9c\xe8\x19\x9a\x74\x59\x13\x03\x9a\x74\x59\xab\x2d\x9a\x74\x59\x1f\x3f\x9a\x74\xb9\x70\xcd\x8b\x4e\x5a\xe5\x2a\x97\x9e\x75\xfa\x82\x26\x5d\xd6\xa0\x43\x93\x0e\x69\xfd\x92\xd0\xa4\xcb\x53\xbf\x43\xcf\x6d\xd2\xeb\x8b\x9e\x9b\x5e\x11\x7a\x75\x59\xcf\x1a\x4d\xba\x4c\x5a\x79\x46\x93\x0e\x95\xb6\x92\xa5\x49\xe7\x0c\x70\x25\xa3\x49\x07\xef\x92\x0b\xd5\xb9\x82\xdb\xe0\x08\x3d\x37\x50\x48\x0e\xd2\x73\xbb\x1c\xa1\xe7\xe6\x45\xa3\x5e\x2c\xe6\x47\xba\x66\xe7\x48\x67\xc2\x04\x51\xd4\x17\xb4\xde\xaa\x7e\x87\xd6\x5b\xd5\xef\xd0\x7a\xf3\x82\xe9\x1f\xb7\xd7\x8f\x98\x06\x33\xba\x73\x0f\xcf\x2c\x3b\xd6\x2e\x0f\x83\x3c\x47\x6c\x60\xe1\xca\x68\xd2\x3d\xa6\xdf\x61\x03\x0b\x50\x96\x26\x1d\x08\x25\x4b\x93\x4e\xcf\x25\x62\x03\xa3\x27\x47\x6c\x60\x79\xcf\x68\xd2\x15\xf0\x74\x46\x93\xae\x80\x30\x33\x9a\x74\x05\xf4\x99\xd1\xa4\x43\x69\xc4\xc5\xfd\xfc\x88\xff\xa1\x49\x57\xf8\x88\xb3\x74\xe7\x40\x3d\x59\xba\x73\x2c\xa2\x59\xba\x73\x00\x96\x2c\xdd\xb9\xa1\xff\xa1\x3b\xb7\xb0\x4f\xba\x73\x24\x88\x67\x69\xcb\xe9\xbd\x4b\x5b\xee\xea\x0e\x62\xd5\xe0\x99\xa1\x2d\x57\x59\x0c\x33\x75\x99\x95\x09\x3a\xa3\x2d\x57\x01\x25\x19\x6d\xb9\xca\x28\xcf\x68\xcb\xd5\x87\xbb\x53\x7b\x09\xe5\x69\xc9\x54\x54\x56\x50\x64\xce\x28\xaa\x75\xde\xb4\x14\xe3\x3a\xfd\x94\x62\x1c\x53\x4f\x96\x62\xdc\xd0\xff\xe8\xd9\xc4\x06\x29\xc6\xc9\x3e\x29\xc6\x6d\xde\x98\x14\xe3\x98\x43\x32\x5a\x6f\x2d\xd2\x33\xb4\xde\x5a\xd2\x99\x68\xa8\x31\xb5\x66\xe9\xb9\x91\xe1\x9e\xa9\x77\x6c\x78\x47\x99\x7a\xc7\x56\x74\x26\x5a\x6f\x84\x03\xb3\xb4\xde\x34\x5a\xa5\xf5\x06\xcc\xca\x8e\x61\x4b\x63\x09\xcf\x8e\x61\x4b\x03\x66\x65\xe9\xc0\x35\x9d\x89\x0e\x9c\xc6\xb5\x74\xe0\x8c\xa7\x24\x1d\x38\xd3\xef\xb0\x41\x63\x57\x3a\x70\x43\xbf\x43\x07\xce\xfe\x85\x92\xb3\x24\xe2\xf4\xa8\xa5\x03\x37\x74\x03\x4c\x67\x0a\xc9\xe8\xc0\xb5\xad\x23\x4c\x3f\x9c\x89\x0e\x5c\xd3\xe7\x20\x1d\xb8\xc0\x00\x91\x0e\x1c\x68\x37\xa3\x03\xd7\x0e\xdd\x94\x0e\x1c\x93\x70\x96\x0e\x1c\x13\x6d\x96\x0e\x1c\x2e\x4f\x46\x07\x0e\x06\xd9\x92\xd1\x81\xeb\x7a\x29\xe8\xc0\xf5\xc2\xcb\x44\x07\x0e\x96\xd8\x92\xd1\x81\xeb\x55\x77\x77\xfb\x7a\xd3\x11\x55\x17\x60\xd8\x8c\xd6\x5b\x37\x06\x2b\x54\x36\x7d\xe8\x88\x9e\x2d\x5e\x03\x0a\x6e\x88\xff\x97\x0c\xcd\x4d\x07\x99\x66\x68\x6e\xfa\xd6\xef\xe8\x99\x9e\x19\x0a\x6e\x5d\xb6\x43\x71\x63\x41\x67\xa2\x42\x17\x75\x26\x2a\x74\x9a\x5a\xa1\xb1\xa1\xac\xb6\x64\x68\x6c\x8c\x45\x26\x43\x63\x63\xfa\x18\xc1\xb0\xa6\xe7\x02\x86\xb5\x47\xff\x83\xaa\x46\x43\xf7\x45\x55\xc3\x1b\x7b\x51\xd5\xf0\xe4\x5f\x54\x35\xba\x0a\xfd\x6c\xfa\x1d\x45\x1d\x4d\x67\xa2\xa4\xa7\x27\x08\x55\x8d\x75\x5d\x13\x1b\x8c\xf7\x00\xf6\x35\x8d\x33\xb0\xaf\x0d\xac\x05\xfb\x1a\xd8\x22\x83\x7d\x6d\xea\x4c\x7f\x0f\xa6\xe9\x0c\xec\x6b\x7a\x0f\xd0\xd4\x18\x1e\x57\x46\x89\xcd\x40\x52\x19\x5c\x6c\x57\x67\x62\xdf\xd5\x35\xdd\xbe\x11\x74\x3f\xa8\x78\x02\xbd\x46\xa5\x6d\x44\x5d\x65\x73\xa4\xff\xb9\x7d\x23\xe9\x9a\x97\x23\xde\x8a\xef\xe5\x94\xa1\x49\x03\x74\x3d\xf4\x8e\x40\xd0\xe3\xd1\x99\x85\x23\x9e\x99\xef\xc5\x94\xa1\xb1\x0b\xba\x1e\x7a\x2b\xa0\xeb\xa1\x67\x0d\xba\x1e\xa6\x33\xb1\x41\x0b\x02\xe8\x7a\x68\xec\x82\xae\x87\xa6\x09\xd0\xf5\x98\xba\x0a\x36\x2c\x9d\x89\x0d\x1a\xbb\x20\xef\x01\x48\xc8\x13\x1b\x88\xc0\x66\xdf\x5b\x29\x70\xc5\x95\xec\xfb\x2a\x05\xc1\xfe\x92\x7d\x4f\xa5\x4c\xf5\x1a\xc4\x3e\x35\xf1\x81\xd8\x61\x79\x2b\x19\xc4\x3e\x35\x42\x40\xe5\x53\x93\x1b\xc8\x7b\x6a\x4c\x80\xbc\x27\x5e\x78\x06\x5d\x4f\xc2\x5e\x19\x74\x3d\x27\x4f\x10\x74\x3d\x35\x42\x40\xd7\x73\x71\x15\xd0\xf5\x94\x45\x20\xe8\xa9\xf1\x02\x82\x9e\x1a\x21\x20\xe8\xa5\x99\x08\x04\xad\xb2\xa6\x0c\x82\x5e\x04\xcf\xf2\x92\xba\x22\x36\x2c\xd4\x15\xb5\xf4\x2f\xa9\x2b\x32\xe6\xb7\xd4\x15\xe9\x35\x78\xda\x19\x87\xff\x7b\x4a\x06\x6a\xa3\x90\x50\x32\x42\xd1\x28\x24\x94\x8c\x50\xf4\x32\x6e\x87\x50\xf4\x32\x9d\xe9\xe6\xad\xa9\xff\x19\x47\x98\x07\xf2\x5e\x5b\x57\xc1\xbc\x83\x09\xa0\xeb\xad\x21\x0f\xba\xde\xb8\x5f\x19\x74\xbd\x35\xa1\x80\xae\xb7\x06\x32\xe8\x7a\x6b\xa2\x05\x5d\xef\xc2\x6b\x00\x41\x6f\xad\x8c\x20\xe8\x2d\x54\x87\xc6\xf3\x16\xb2\x39\x08\x3d\xe2\xb2\x66\x8f\x95\x97\xad\x61\x8d\xfe\xf3\xd6\x14\x82\xfe\xf3\xc6\x81\xcd\x60\xed\xad\xd5\x0f\xac\xbd\x85\x11\xc0\xda\x7b\x71\x15\xb0\xf6\x5e\x58\x0b\xd6\xde\xc4\xea\x32\x58\xfb\x10\x02\xc8\x68\x43\x23\x49\x5f\x32\xda\xd0\x47\x18\x01\x1c\x7e\x34\xe4\xc1\xda\x0a\x2e\x65\xb0\xf6\x69\x3a\x13\xb1\x4a\x0d\x72\xb4\xa1\x15\xe7\xca\x68\x43\xab\x44\x2f\x83\xc3\x8f\x93\xf7\x94\x07\x1c\x7e\x08\x6a\x3c\xe0\xf0\x43\xaf\x1f\x70\xf8\xd9\xfa\x1f\x4c\x5e\x5b\xff\xc3\x06\xbc\xa3\x07\x1c\x7e\xd8\x9a\x79\xc0\xe1\x97\x45\xe6\x01\x87\x23\x87\x5e\x1e\x70\xf8\x65\x3a\x7b\xc0\xda\xc8\xa1\x97\x07\xac\x8d\x42\x56\x79\xd0\x7f\xbe\x8c\x82\x07\xfd\x67\x08\x61\xca\x03\x0e\x87\xa9\xa9\x3c\xe0\xf0\x4b\x50\xe3\x01\x87\x43\x03\x58\x1e\xb0\xf6\x65\xf1\x7d\xc0\xda\xd7\x89\x0d\xcb\x03\xd6\xbe\x94\x4a\x3e\x60\xed\xcb\x74\xf6\x80\xb5\x91\xdd\x2a\x0f\xda\xd0\x77\xe8\x7e\xf4\x73\xe9\x9a\xf4\x05\xcf\xf0\x01\x4f\x5f\x7c\xc1\x07\x8d\x67\x08\x04\xcb\x83\xc6\x33\x54\x35\xe5\x01\x6b\x5f\x82\x13\x0f\x2a\x66\x0a\x04\x3d\xa8\x98\x05\x3c\xc3\x07\x15\xb3\x00\x28\x79\x50\x31\x0b\x80\x92\x07\xea\x94\x40\x40\xee\x41\xc5\x4c\x25\xb8\x0f\x2a\x66\x81\xaf\xe3\x11\x3d\x4a\xd3\x11\xe2\x9f\xe0\xbf\x27\x21\xfe\xd9\xe9\x27\x2a\x66\x0a\xef\x3c\xa8\x98\xa1\xa8\x51\x1e\x54\xcc\x50\xd4\x28\x0f\x2a\x66\x01\xbf\xe6\x41\xaa\x2c\xf0\x1d\x3d\x48\x95\xc1\xb6\x5c\x1e\xa4\xca\xd0\x1b\x2c\x0f\x1c\x28\x08\xca\x97\x27\x63\x03\x21\x80\x27\x63\x03\x4b\xf1\x03\x07\x4a\x58\x3a\x93\x7e\x12\xfa\x79\x1e\xfa\xa9\x31\x08\x97\x89\x36\x03\x9f\x07\x11\xcf\xa0\x33\x33\x47\x5c\xf3\x91\x48\xa9\xce\x94\x48\xa9\xfe\x27\x91\x52\xfd\x4e\x22\xa5\xd8\xf7\xc0\x42\x97\x75\x3f\x58\xe8\x08\xfd\x3c\x0f\x22\xa5\x8f\xfe\x87\x48\xe9\xa3\xff\x21\x52\x5a\x75\x3f\x44\x4a\x7f\xa0\xcd\x7f\x4e\xc9\x0f\xd5\xba\x51\x43\xb7\x60\x02\xce\xca\x53\x30\xc1\xb8\x24\x74\x25\x71\x30\x08\x0a\x26\xb0\x41\xf3\x14\xba\xa2\xcf\xb6\xd0\x15\xd0\xe0\x43\x79\x6c\xc4\xed\x7e\x28\x8f\x8d\xa0\xeb\xa7\x4a\x13\x95\x17\xe6\x78\xba\x26\x56\xe2\xa7\x4a\x13\x95\x17\x5d\xd1\x44\x8d\xf4\xa5\xa2\x89\xca\x04\xf6\x54\x34\x51\x13\x77\xa8\x68\xa2\x26\x6c\xa8\x68\xa2\x12\x2d\x7b\x2a\x9a\xa8\xfa\xc0\x2b\x9a\xa8\x45\x57\x41\x13\xb5\xe8\x7f\x68\xa2\x16\xdd\xcf\x6d\x48\x2c\x5c\x8f\x47\x88\x6b\x9a\xf4\xac\xd1\x33\x56\xf0\xa7\x71\x77\x4d\x6e\x8d\xbb\x1f\xfd\x8f\xbb\xeb\x43\x6d\x48\x96\x06\xee\xe7\x98\xb9\xa2\x1f\x57\x1e\x4f\x39\xab\x0a\xda\x3c\x0d\x45\x56\x6a\xaf\x9f\x26\x45\x56\xf5\x05\x45\x56\xe2\xb0\x4f\x47\x91\x15\x24\xfc\x74\x14\x59\x65\x51\x97\xec\x2a\x6f\xba\x23\xbb\xaa\xc9\xad\x23\xbb\x4a\x6c\xf0\xe9\xc8\xae\x12\xa3\x7d\x3a\xb2\xab\x1a\x21\x1d\xd9\x55\x16\xae\xc7\xb1\x76\xcd\xa6\xbb\xbb\x7d\x79\xe8\x7e\xd8\x37\x74\x4d\xec\x1b\xba\x26\xf6\x81\x6c\x9e\x8e\x7d\x4b\xd7\xc4\x3e\x4d\x7c\x1d\xfb\xf4\x3c\x0d\xfb\x88\xd8\x3e\x86\x7d\x57\x47\xc8\xb5\x6a\x72\x33\xc9\xb5\xf2\x6e\x0d\xb9\x56\x96\xb8\xc7\x90\x6b\x25\x4c\xf3\x98\xe4\x5a\x75\x15\xe4\x5a\xf5\xde\x4d\x9c\x51\xf4\x13\x4a\xc8\xa7\xea\x4c\xb7\x4f\xa1\x98\xc7\x90\x72\xed\xba\x26\x52\xae\xa6\xfb\x89\x0e\x52\x57\x81\x0e\x72\xe8\x2a\xc8\xd1\xea\x29\xa1\x88\xfc\x0c\x6c\x47\x11\x19\x6e\xbe\xf2\xa0\x88\xfc\x90\x71\xf0\x40\x13\xf9\x6c\xae\x09\x0d\xe4\xc3\x96\xda\x83\xea\x71\xd1\x77\x04\xb9\x63\xd1\x58\x82\xdc\x11\x82\xa7\xf2\x40\xee\x58\x34\xf5\xa0\x65\x5c\x32\x4f\x10\x02\xc7\x82\x8f\xf5\x40\xe0\x58\xf4\xad\x40\xe0\x58\x34\xce\x20\x70\x2c\x44\x65\x1f\x08\x1c\x8b\xbe\x15\x08\x1c\x8b\x26\x68\xf4\x8a\x8b\xe6\x10\x08\x1c\x15\xde\x79\x20\x70\x2c\x7a\x12\x10\x38\x96\xc1\x7b\x87\xc0\xb1\xe8\x8b\x83\xc0\xb1\x6c\x9d\x89\x0d\x5b\x77\x38\x9f\x4b\x00\x44\x8c\x88\xf7\x97\x07\xb2\xc5\xca\x86\xec\x03\xd9\x22\xba\x81\xe5\x71\x04\x5d\x2b\xe0\xf0\x71\x04\x5d\xab\x9e\x12\xe2\xc2\x55\xdf\xdf\x82\x2c\x53\x53\xf2\x82\x2c\x93\x4d\xc9\x07\xe1\xe1\xaa\x85\x12\xe1\x61\x05\x89\x1e\x84\x87\x5d\x6f\xf0\xbf\xa7\x64\x34\x89\xab\x3e\x54\x34\x89\xab\x70\x07\x9a\xc4\x8a\x34\x3d\x68\x12\x43\x92\x5e\x1e\x34\x89\x2b\xb1\x97\x07\x4d\xe2\xda\x18\xc8\x1b\x83\x4c\x67\xba\x41\x46\x50\xe3\x41\x69\xb8\x0a\x9d\xa1\x34\x5c\xf5\xc1\xa1\x34\x5c\x89\x5d\x3f\x28\x0d\x57\x3d\x5c\x94\x86\xab\xf0\x18\x4a\xc3\xf0\xcc\x96\x07\xa5\xe1\xa6\xb5\x10\xa5\xe1\xa6\xc9\x1b\xa5\x61\x45\xa8\x1e\x94\x86\x15\xa1\x7a\x50\x1a\x46\xd0\xb0\x3c\x28\x0d\x37\xad\x77\x28\x0d\x37\xad\x70\x28\x0d\x23\x45\x58\x1e\x94\x86\x9b\x10\x03\x4a\xc3\x4d\x28\xcb\xb1\x76\x55\x6c\xe9\x41\x69\xb8\x69\xad\xbf\x62\x29\xe5\x0e\x52\x1a\xd6\x27\x26\xa5\x61\x21\x53\x29\x0d\x6b\x51\x93\xd2\x30\x14\x25\x8f\x94\x86\x35\xb1\x4b\x69\x58\x08\x0c\xa5\xe1\x0e\x97\xc2\x83\xd2\x70\x17\x4e\x45\x69\xb8\x6b\xe1\x42\x69\xb8\x13\x67\x7e\xa4\x34\x2c\x64\x2a\xa5\x61\x4d\xf3\x52\x1a\xd6\x08\x91\xd2\x30\x58\xb4\xa0\x26\xdc\x19\x05\x05\x35\xe1\x8e\xa3\x5d\x50\x13\xee\xa0\xac\x82\x9a\x30\xb4\xa0\xa5\xa0\x26\xdc\x87\x7e\x07\x7f\x1c\x9f\x5f\x41\x4d\xb8\x6f\x9d\x89\x0d\x4c\xc2\x05\xc5\xe0\xce\x12\x57\x50\x0c\xee\xd8\x5e\x50\x0c\xee\x38\xda\xc5\xf1\x74\x55\x58\xa8\x44\x14\x91\x03\xf7\x43\x4d\xd8\xc8\xe9\x28\xa8\x09\x5b\xd4\x99\x62\x8b\xe5\xee\x11\xb6\x58\xc6\x44\x89\x28\x22\x43\x52\x52\x50\x1a\xb6\xaa\xdf\xa1\x7a\x2c\xdb\x51\x13\x36\x70\x78\x41\x4d\xd8\x64\x3b\x6a\xc2\xf0\xf9\x96\x82\x9a\xb0\x2d\xdd\xe1\x70\xa4\xff\xdd\x8f\x2f\xa7\xa0\x26\xac\x70\x4b\x41\x4d\x78\x00\x58\x0a\x6a\xc2\xda\xe9\x2f\xa8\x09\x2b\xc0\x52\xc0\xe1\x83\x49\xa3\x80\xc3\x51\x60\x2e\x05\x1c\x3e\x2a\xcf\x13\x1c\x3e\x88\x99\x16\xb0\xf6\x60\x59\x29\x60\xed\x81\x1f\x5c\xc0\xd3\x83\xaf\xb8\x80\x99\x07\x9b\xc3\x05\xcc\x3c\xae\xfe\xe7\xf7\x9b\xa0\xd6\x02\x2e\x9e\x7a\x0f\xe0\xe2\x49\xe8\xa7\x80\x8b\xd1\x68\xf4\xb0\xbf\xab\x3a\xf3\x74\x3d\x92\x5d\x27\x11\xfe\xe2\x91\xec\x8a\xe4\x51\x29\x70\x03\xce\xa2\xff\xf9\x33\x9b\x84\xe0\x0a\x78\x5a\x41\x94\x02\x9e\x9e\xf8\x97\x05\x3c\x8d\xe4\x51\x29\xe0\xe9\xc9\x5e\x40\x01\x17\x43\x43\xe9\xdb\x0c\x7e\x84\x45\x80\xd8\x09\x8f\x4b\x21\xff\x62\xe1\xf5\x17\xb8\xfa\x16\x5f\x5c\x29\x28\x3e\xe3\xe5\x14\x31\xf0\xfd\x78\x86\xff\x39\x25\x17\xd0\x2e\xec\x95\xa5\x78\xb0\xba\xa2\xbe\xe4\xbb\x1a\x7e\xa4\x4b\x22\x61\x2d\x63\x45\x22\x03\x76\x2a\xa0\x64\x05\x3c\x0a\x28\x79\x99\x7e\x87\x84\x35\x91\xc2\x02\x4a\x56\xc0\xa3\x14\x0c\x22\xf2\x53\x2a\x06\x11\xf9\x29\x20\xe8\xa5\x4f\x13\x04\xbd\xc0\xda\x05\x04\xbd\x98\x96\x0a\x08\x7a\x11\x15\x2a\x20\xe8\x1d\x74\x26\x12\xd6\x41\xd7\x44\xc2\x1a\xc4\x50\x40\xd0\x9b\xad\xb1\x02\x82\xde\x1a\x20\x20\xe8\x5d\xf4\x3b\xb7\x0f\xe6\xd5\x52\x40\xd0\xdb\x74\x77\x68\x96\xf5\x32\x3d\x1b\xa3\xee\xa9\xa3\xcb\x11\xf6\x79\xb4\xba\x6e\x36\xa7\x0a\x58\x7b\xe3\x8c\x15\xcf\xc6\xa8\xa8\x0b\x94\xe2\xd9\x18\x75\xe3\x3d\x14\x70\xf8\x96\x7d\x1e\xd7\xae\x47\x9f\xa6\xc7\xb5\x2b\xac\xfb\xa5\x80\xd1\x8f\xde\x26\x18\xfd\x68\xe8\x82\xd1\x8f\x86\x2e\x18\xfd\x54\xfd\x6f\x72\x84\xed\x4d\x12\xdd\x3a\x13\x89\x6e\x16\x99\x02\x46\x3f\xe0\x9c\x02\x0e\x3f\xa0\x97\x02\x0e\x3f\x44\x2d\x0b\x38\xfc\x2c\x9d\xf9\x70\xc4\x1d\xc0\xe1\x47\xef\x1d\x1c\x7e\xf4\xde\xc1\xda\x57\x16\x81\xb5\x95\x77\x53\xc0\xda\x37\xe8\x77\xde\xcf\xab\xc9\x14\xac\x8d\x0a\x42\x29\x60\xed\xab\x27\x01\xd6\xbe\x78\x16\x05\xac\x7d\x35\xae\xc1\xda\x17\x94\x5c\xc0\xda\x57\x4f\x09\xac\x7d\x59\x98\x0b\x58\xfb\x76\x9d\x09\xdd\xb5\xe9\x08\xba\x6b\x30\x5e\x01\x6b\x5f\x8d\x79\xb0\xf6\xd5\xb4\x0b\xd6\x56\xc0\xa3\x80\xb5\x95\x33\x5b\xd0\xde\x55\x06\x4b\x41\x7b\x17\x49\xa7\x52\x1c\x6b\x37\xe5\xcd\x17\x83\x9f\x55\x13\x2d\xba\xbc\x01\xef\xaf\xa0\xcb\xab\x30\x46\x41\x97\x37\x68\x12\x46\x7c\x37\x98\xce\xcc\x1c\xd1\x6b\xc4\x77\x95\x6d\x52\x10\xdf\x15\x23\x58\x41\x7c\x57\xb9\x20\x05\xf1\x5d\x64\x9b\x4a\x41\x7c\x57\x29\x71\x05\xf1\xdd\xa8\x67\x8d\xf8\xae\x12\x0e\x0b\xe2\xbb\x91\xad\xc6\x82\xf8\x6e\xd4\x6c\x83\xf8\xee\xb3\x75\xa6\xdb\xa7\xd4\xb6\x82\xf8\x2e\x52\x50\xa5\x20\xbe\x1b\xd9\xc1\x28\x88\xef\x46\xd3\xff\xdc\xbe\xa8\x27\x8f\xc0\x6e\xd4\xd2\x81\xc0\x6e\xdc\x3a\x13\x1b\x20\xcc\x2a\x88\xe8\x26\xcd\x0c\x88\xe8\x26\xcd\x0c\x88\xe8\x26\x2d\x71\x88\xe8\x26\xbd\x15\x44\x74\x95\xd3\x51\x10\xd1\x4d\x5a\xb4\x3d\xdb\xa4\xa5\xa2\x23\xef\x67\xaa\xff\x8a\x25\x97\x85\x14\x3c\x91\xa6\x82\x12\x2f\xfa\x9e\xa5\xa0\xc4\x9b\x34\xe8\x50\xe2\x4d\x5a\x39\x50\xdb\x4d\x7a\x80\xa8\xed\x26\x10\x6d\x81\x1a\x3d\x69\x75\x87\x1a\x3d\xeb\x33\x82\x1a\x5d\x2e\x79\x81\x1a\x3d\x13\x1c\x2f\x50\xa3\x43\xe5\x5c\x0a\xd4\xe8\x08\x7c\x96\xb2\x25\xe9\x4e\xcf\xa0\x38\xcf\x42\x67\x50\x9c\x67\x12\x58\x0a\x14\xe7\xca\x87\x28\x50\x9c\x43\xc8\x57\x0a\x14\xe7\x59\x16\x41\x71\x9e\x35\x99\x42\x71\x0e\x1d\xa0\x6f\x81\xfb\x11\xbd\x86\xe2\x3c\xb3\x29\x52\xa0\x38\x17\xd3\x58\x41\x51\x57\xce\x74\x41\x51\x37\xb3\xa1\x57\x50\xd4\x45\xb1\xaa\x14\x14\x75\x33\x9b\x4c\xe5\x20\x59\x7f\x19\x90\x28\xea\x3e\xec\x3e\x17\xc7\xe8\xed\xd1\xb0\x76\x1c\xde\x1e\xad\xf5\x87\xa1\x8b\x8b\x5c\x3c\xe6\xdd\x94\xad\x50\x3c\xe6\xdd\x1e\x0d\x4f\xc7\xe8\xed\x11\xfa\x74\x1c\xde\x1e\xf5\xda\x71\x78\x7b\xd8\x09\x2f\x8e\xc3\xdb\x23\x1b\x1c\x87\xff\x7e\x1c\x8e\xc3\xdb\x43\x82\x63\xb9\xf4\x53\x13\xca\xa5\x9f\x42\xad\x8e\xc3\xdb\xa3\x85\xc4\x71\x78\x7b\x84\x96\x2e\x1c\xc8\x42\xad\x8e\xc3\x5b\x11\xb6\xb8\xd0\xe5\x83\xdf\xcb\x85\x2e\x1f\x37\xb1\x06\xe8\xf2\x41\x4b\xd5\x63\xde\xad\x64\xfd\x0f\xf9\x7c\x5c\xeb\xea\x18\xbd\x15\x72\x48\xaa\x63\xf4\x56\x8a\x8e\x0a\x47\x97\x23\xe4\xf3\x09\x47\x54\xc7\xe1\x0d\x81\x56\x4f\x68\x70\x81\x7e\x1d\xc1\xe3\x4c\xe8\xae\x06\x6c\x20\x44\x55\x1d\xa3\xb7\x8a\x0d\xd5\x31\x7a\x93\xe3\x5b\x1d\xa3\x37\xb9\xba\x35\x42\xeb\x8f\x3b\x5b\x23\xb4\xfe\x4c\x9f\x35\x42\xeb\x5f\x74\xa6\xf7\xb3\xaa\x2f\x1e\xd7\x6e\xf2\x36\xab\x63\xed\x86\x9e\x44\xa9\x8e\xb5\x9b\xf2\x1a\x6a\xa4\x2f\x5b\xd7\xa4\x2f\x47\xf7\xa3\x2f\xf8\x12\xd5\xb1\x76\x6b\x41\x47\xfe\x3c\x9b\x6c\x70\x3c\xdd\xe4\x5f\xd6\x84\xc4\x00\xf1\xfe\x9a\x90\x18\x20\x4b\xa5\x42\x09\xde\x1e\xfd\x0e\x49\xfe\xa2\x23\xef\x67\x03\x8b\x56\xa8\xbd\x5b\xd7\xef\xbc\x2f\x8d\x58\x72\x85\xbf\x1b\x21\xd9\x52\x33\x7d\x61\xaf\xa3\x66\xa4\xf5\xc9\x5c\xaa\x8e\xc3\x5b\x63\xbf\xa6\x66\xfa\xb9\x75\x15\xfa\xb9\x75\x26\xfd\x64\xa2\xad\x1e\xbb\x6e\x3d\xe8\x0e\xc8\xd2\x47\xdd\x01\x59\x7a\x02\x17\xd5\x31\x7a\xeb\x7a\x7f\xf0\x77\x77\xbd\x23\xf8\xbb\xfb\xa3\x6b\x6e\x8e\x78\x4a\x8e\xd1\x5b\x97\xed\x8e\xd1\x5b\x67\x12\xae\x0f\xd2\xfa\x04\xba\xaa\xe3\xf0\xd6\xfb\xbf\x4a\x45\xaa\x87\xbc\x5b\x67\xa2\xad\xd0\x77\x77\x20\x7a\x85\xbe\xbb\x83\x68\xeb\x83\x79\x20\xbe\xfa\x48\x75\x9f\xe1\xf2\x60\x1e\xc4\x85\xf5\xc1\x3c\x3d\xb2\x07\xf3\x88\xfc\xd4\x07\xf3\xf8\xc0\xeb\x83\x79\x5b\x57\xc1\x3c\x3e\xf0\xfa\x60\x1e\x91\xc2\xea\x2e\x41\x93\x93\x5a\xdd\x25\x68\x9d\x64\xa1\x0a\x0b\xa5\x9c\xd4\x0a\x0b\xa5\x88\x1e\xab\xc7\xc3\x9b\xb1\x67\x5e\xdd\x79\x68\x86\x83\x57\xa1\xef\x16\x3f\x66\x2d\x28\x59\x30\x0d\xd6\x82\x92\x05\xcb\x43\x75\x0f\xa1\x99\x5e\x91\x7b\x08\xcd\x58\xdd\xab\x7b\x08\x0d\xd1\x9d\x52\xdd\x43\x68\x88\xee\x94\xea\x1e\x42\xb3\xaa\x3b\xb8\x7d\x72\x6e\xab\x7b\x08\xcd\xd8\x68\xa9\xee\x21\x34\xe5\x2e\x54\xf7\x10\x9a\x31\xd1\xd6\x8a\x7d\x2c\x24\xb5\x62\x9f\xa6\x89\x8a\x7d\x7a\x7f\x15\xfb\xd8\xa7\xae\x15\xfb\x96\x8e\xb0\x8f\xc5\xa2\x56\xec\xd3\x67\x5b\xb1\x0f\xc4\x5e\x2b\xf6\x81\xd8\x6b\xc5\xbe\xab\xbe\x60\x9f\x86\x7c\xc5\xbe\xab\xbe\xb8\x7d\x03\xff\xa4\xba\x87\xd0\x06\x59\x23\xd5\x3d\x84\x36\x98\x76\xab\x7b\x08\x6d\xe0\xa4\x56\xf7\x10\xda\x00\x77\x54\xf7\x02\x9a\xf2\x13\x6a\x83\x62\x1d\x8c\x57\xdd\x0b\x68\xa3\xea\xc8\x6d\x18\x7a\x82\x0d\xb5\x91\xae\x6b\xba\x0d\x43\x4f\xd0\xbd\x80\x36\x4c\x67\xba\x0d\x28\x0d\x97\xda\xa0\xc8\xd7\x88\x6c\xd8\x70\xf4\x3f\x6c\x60\xd3\xae\x76\x6c\xd0\x93\xe8\xd8\xc0\x92\x5a\xdd\x43\x68\x13\x27\xb5\xba\x87\xd0\xa6\x3e\x70\xf7\x10\xda\xd4\x38\x73\x0f\xa1\x4d\xa2\xdc\xd5\x3d\x84\x36\xc1\xbe\xd5\x3d\x84\x36\x09\x24\xd4\x8e\xc2\x41\xd7\xff\x26\x47\xba\xca\xe2\x08\x8b\xdc\x43\x68\x13\xb4\x5b\xdd\x43\x68\x93\x6d\xb3\xea\x1e\x42\x9b\xfa\x8a\xdd\x43\x68\x73\x72\xa6\xd1\x4f\x7d\xd3\x46\x3f\x97\xce\xa4\x9f\xf8\x35\xd5\xe8\xa7\x9e\x12\x68\x1e\x2d\xbb\x52\x41\xf3\x0b\xbf\xa6\x82\xe6\x97\xbe\x46\xd0\xbc\x32\x19\x2a\x68\x5e\x8e\x7d\x05\xcd\x2f\xfc\x9a\x0a\x9a\x5f\x24\xaf\x56\xd0\xfc\x4a\xfc\x0e\x34\xbf\xf4\x94\x40\xec\xe8\xa8\x79\x5e\x9e\x2b\xc9\xe8\x77\x9d\x23\x9e\x20\x88\x7d\x69\x52\x04\xb1\x2f\x7d\x8d\x20\xf6\xd5\x74\x07\x6c\xe8\xba\x26\x36\x80\xb5\x2b\x88\x7d\x4d\xf5\x13\x1b\xf4\x55\x81\xd8\x97\x16\x43\x10\xfb\xd2\xe8\x01\xb1\xcb\x43\xaf\x1e\x7f\x6f\x3b\xfe\x43\x8c\xb3\x54\x0f\xcd\xb7\x8d\xf3\x57\x01\xfa\x3b\xe9\xa8\x72\x84\x79\x00\xfd\xad\x29\xcb\x43\xf3\x4d\x39\x0f\xd5\x43\xf3\x6d\x0b\x93\xe0\x04\x6c\x7d\x38\x38\x01\x72\xfa\x2b\x4e\xc0\x26\xe0\x51\x71\x02\xb6\x26\x29\x9c\x80\xdd\x75\x4d\x37\x7d\x6b\x98\x81\xd8\xe5\xae\x57\x10\xbb\x9c\xfe\xba\xe8\x8b\xa6\x72\x84\x8e\xf6\xa1\x9f\xa0\xf9\x7d\xf5\x3f\xef\xcb\x11\x0e\x00\xcd\x1f\x59\x04\x9a\x3f\xa4\x93\x55\xd0\xfc\x21\xba\x5a\x41\xf3\x07\x87\xa4\x82\xe6\x0f\x5b\x1d\x15\x34\x7f\x88\xb5\x56\x84\x8e\x8e\xf0\x18\x42\x47\x47\x4f\x02\xa1\xa3\x23\x04\x06\xd2\x57\x66\x41\x05\xe9\x5f\xb6\x95\x2a\x48\xff\x12\xa7\xac\x20\xfd\xdb\x75\xbf\xc9\x11\xbd\x06\xe9\xdf\xae\xab\xb8\x0d\x72\x9f\x2b\x48\xff\x82\xfb\xab\xc4\x8c\x70\x44\xab\xc4\x8c\x48\x24\xaa\x20\xfd\x4b\x90\xa1\x82\xf4\x95\x59\x50\x41\xfa\x72\xb4\x2b\x62\x46\x2a\x3c\xad\x88\x19\x29\x43\xa0\x22\x66\xa4\x52\x91\x8a\x60\x91\x4a\xb0\x2b\x82\x45\x72\xbb\x2b\x82\x45\x21\xeb\x7f\x2e\xa0\xa2\xec\x81\x8a\x60\x91\x9c\xf0\xea\x5e\x40\x0f\x55\x47\x97\x23\xee\x80\x58\x91\xca\x41\x2a\x62\x45\x2a\xeb\xa8\x88\x15\xa9\xc0\xb6\x22\x56\x14\x96\x7e\x87\x0d\x82\x0c\x88\x15\x05\xf6\x25\x2a\x62\x45\x2a\xcf\xa8\x88\x15\xa9\x90\xa3\x22\x56\x14\xae\xee\x60\xc8\x3a\x31\x76\x11\x2b\x8a\x1a\x59\xee\x21\x74\xd5\xeb\x55\xf7\x10\xba\x6a\xcf\x2a\x42\x45\xda\xa3\xaf\x08\x15\x45\x61\x7b\x84\x8a\x22\x98\xab\x21\x54\x14\x41\xf3\xcd\x3d\x84\xae\xda\xb3\x86\x50\x51\x64\x0a\x69\x08\x15\xa9\x3c\xa3\x21\x54\x14\x4d\xff\x43\x70\x6a\xe8\x9a\x95\x23\x9d\xe9\xf6\xa1\xc7\x5c\x9a\x47\xf1\x7b\x5c\xfa\x1f\xf6\xb1\x7b\xd3\x02\xbd\xbe\x3a\x93\x5e\xb3\x30\x37\xf7\x09\x3a\x3a\xce\xa5\x79\xdc\xbe\xab\xf2\xad\x79\xdc\xbe\x27\xc6\x44\x73\x7f\xa1\x27\x82\x83\xcd\xfd\x85\x9e\xf0\x72\x5a\x44\xdb\x85\x6f\xac\xb9\xbf\xd0\x13\xf3\x4b\x8b\xc8\x64\xe1\x31\xb7\x88\x4c\x16\x33\x4a\x8b\xc8\x64\x31\x87\x34\xf7\x25\xba\xd8\xbc\x9b\xfb\x12\x3d\x11\xa6\x69\xee\x4b\xf4\xa4\xe7\xe2\xbe\x44\x4f\x6c\x3c\xb6\x44\x3f\x09\xc8\xb5\x44\x3f\x09\x71\xb4\x44\x3f\x8f\xfe\x47\x3f\x29\xf5\x69\x89\x7e\x32\xdb\xb4\x84\x2c\x17\x30\xa4\xb9\xbf\xd0\x33\xcb\x4a\x43\x26\x28\xff\x33\x96\xdc\x3c\x6c\xdf\x11\x9f\x2e\xcd\xdd\x8c\x9e\x89\x50\x35\x77\x33\x7a\xc6\x59\x69\xee\x66\xf4\x8c\xb3\xd2\x90\x02\xca\xb8\x27\xcd\x5d\x89\xae\xd0\x41\x73\x57\xa2\x23\x4c\x5d\x9a\xbb\x12\x3d\xb3\xd6\x37\x77\x25\x7a\x26\x32\xd9\xdc\x95\xe8\x19\xc4\xd7\x32\xaa\x63\x4c\x28\x2d\x63\xde\xd0\xff\x30\x8f\x74\xf4\x96\x31\x8f\xf8\x5f\xcb\xd8\xc0\xa4\xd1\xdc\x95\xe8\x4f\xd4\x1d\xb0\x81\x00\x44\xf3\x70\x7f\x57\xf1\x44\xf3\x70\x7f\x7f\xf8\x38\x9a\xbb\x19\x5d\xc5\x13\xcd\xdd\x8c\xfe\x3c\xfa\x9d\xdb\xf7\x68\x48\xb8\x2f\xd1\xb5\x2b\xdf\xdc\x97\xe8\x0f\x5b\xa2\x0d\x29\x20\x15\x56\x34\xa4\x80\x54\x58\xd1\xdc\x97\xe8\x0f\x18\xa8\xb9\x2f\xd1\x9f\xa6\x33\x51\x55\x6b\xba\x1f\xaa\x6a\x44\xab\xdb\x83\xaa\x1a\x53\x79\xa3\x4c\x53\x01\x88\x56\xe8\x27\x53\x48\x2b\xf4\x93\xd0\x48\x73\xdc\xdf\x4b\xd0\x51\xe7\x88\x27\xe8\xb8\xbf\x17\xb6\xb8\x9a\xe3\xfe\x5e\xa2\xae\xe9\x7d\x29\x49\xd7\x5c\x1c\xe9\x2a\x9b\x23\x6c\x70\xdc\xdf\x8b\x46\x4f\x41\xdd\x8d\x20\x43\xab\xa8\xbb\xb1\xe4\xb4\x8a\xba\x1b\xcb\x58\x73\xdc\xdf\xb5\x63\xdf\x2a\xfd\x24\x0c\xd5\x2a\xfd\xec\x3a\xa2\x9f\x60\xdf\x56\xe9\xa7\x3e\x9c\x4a\x3f\x41\x83\xad\xd2\x4f\x32\x9f\x5b\xa5\x9f\x2c\x40\xad\xd2\xcf\xa9\x9e\xd1\x4f\x36\xd8\x9a\xc7\xed\x7b\x01\x1b\x36\x8f\xdb\xf7\xa2\x8f\xd1\x11\x7b\x2f\xfa\x18\x1d\xb1\xf7\xa2\x71\xd6\xe8\x35\x5e\x5c\x6b\xf4\x1a\x7f\xa1\x39\x2a\xef\x2a\xe4\x68\x8e\xca\x7b\x05\x0d\x36\x47\xe5\xbd\xea\x29\x39\x2a\xef\x35\xeb\x7e\x97\x23\x46\x41\x97\xf8\x96\x8e\xbc\x2f\x55\x23\xcb\xd1\x75\x47\xd5\xb0\x34\xcf\x83\xe9\x95\x72\xe7\xe6\x79\x30\xbd\x6a\xea\x71\xe4\xdd\x2b\xc1\xac\xe6\xc8\xbb\x57\xb6\x1a\x5b\xa7\x9f\xfa\xe2\x3a\xfd\xd4\xb7\xd2\xe9\x0b\xbb\x22\xcd\xd1\x75\xaf\x2c\x78\xcd\xe3\xef\xbd\xe2\x23\x37\xa3\x9f\x9a\xd8\x0d\xad\x3e\x16\xbc\x66\x68\xf5\xe9\x79\x1a\x36\xb0\x89\xdd\x0c\x1b\xf4\x74\x0d\x1b\x8e\xae\x82\x0d\x47\x77\xc7\x06\xb6\x8a\x9b\xc7\xdf\x7b\x03\x95\x37\x47\xec\xbd\x69\x09\x70\xc4\xde\x9b\xbe\x70\x47\xec\xbd\x11\x18\x6d\x8e\xca\xbb\x36\xf0\x9b\xa3\xf2\xde\xf4\x85\x3b\x2a\xef\x4d\xcb\x9f\xa3\xf2\xde\xd8\xc4\x6e\x03\x41\x2f\x82\x9f\xcd\x91\x77\x6f\xfa\x1a\x07\x7d\x21\x6b\xa4\x0d\xfa\x32\x75\x15\xfa\x02\x2c\x68\x83\xbe\xac\x7f\x65\x5c\x34\x07\xe5\x5d\x91\x98\xe6\xa0\xbc\x37\xf2\x68\xdb\xc4\x04\x3d\xc0\x89\x09\x20\xd3\x36\x31\x41\x6b\xc5\xc4\x04\x5c\xba\xe6\xc8\xbb\x37\x0d\x56\x47\xde\x5d\xd1\x9d\xe6\xc8\xbb\x37\x50\x6b\x73\xe4\xdd\x11\xe6\x2b\x6d\x4a\xe7\x4b\x77\x77\xd3\x95\x2f\xd0\x1c\x79\xf7\x1e\x75\xf7\xc9\x91\xae\xb2\x38\x62\xb2\x71\xe4\xdd\x3b\x8e\x61\x73\xe4\xdd\x3b\x01\x88\xe6\xc8\xbb\x77\xb6\x17\x9a\x87\xdf\x7b\xd7\x2a\xed\x09\x33\xbd\x13\x8e\x68\x9e\x72\xde\xbb\x56\xe9\x85\xec\xa3\x26\xe1\x85\xec\xa3\x26\xe1\x85\x1e\x5b\xd3\x99\xd8\xa0\xe9\x65\x61\x83\x56\xf0\x85\x0d\x5a\xb8\x16\x36\x10\x29\x6c\x0b\x1b\x08\x40\xb4\x85\x0d\x44\x2d\xdb\xa6\x9f\xa4\x18\x36\x47\xe5\xbd\x6b\xb0\x3a\x2a\xef\x5d\x93\xb0\xa3\xf2\x6e\xc4\xed\x9b\xc7\xdf\xbb\xc2\x34\x6d\x23\x4f\x29\x84\xb2\xd1\xff\x20\xb3\xa0\x39\x2a\xef\xa6\x89\xc1\x51\x79\x37\x1c\xc3\xe6\xa8\xbc\x2b\x30\xd3\x1c\x95\x77\x15\x9c\x34\x47\xe5\x1d\xb9\xc4\xd2\x1c\x95\x77\x23\xb1\xae\x39\x2a\xef\xa6\x41\xee\xa8\xbc\x1b\x2e\x64\x43\x62\xd4\x88\x8e\x37\x24\x46\xad\xe9\x7f\xd8\x40\x9e\x4f\x03\x95\x1b\x19\xc5\x0d\x54\x6e\x5a\xb8\x40\xe5\xca\x6b\x68\x48\x8c\xaa\x34\xa5\x81\xca\x4d\x93\x37\xa8\xdc\x34\x41\x83\xca\x4d\x13\x34\xa8\xdc\xc8\xa2\x6f\xa0\x72\xc3\xf5\x6c\xa0\x72\x13\x06\x02\x95\x1b\x28\xb9\x81\xbc\x55\x46\xd2\x40\xde\xca\x79\x68\x20\x6f\xe5\x3c\x34\x90\xf7\xc0\xf7\x6c\xa0\x6b\x85\x69\x1a\xe8\x7a\x68\x12\x06\x5d\x8b\x31\xa1\x81\xae\x87\xc6\x27\xe8\x7a\x08\x86\x80\xae\x87\x40\x02\xe8\x1a\x65\xe5\xd2\x41\xd7\x0a\xef\x74\x50\xf2\x60\xd4\x75\x50\xf2\x60\x8b\xb2\x83\x92\x15\xec\xe9\xa0\xe4\x81\xc7\xd5\x41\xc9\x03\x58\xd0\x03\xfd\x64\xdf\xa5\x07\xfa\x09\xb0\xea\x81\x7e\x9a\x7e\x47\x3f\x87\xfe\x47\x3f\x87\xfe\x47\x3f\xd9\x0e\xee\xe0\x69\x15\xb1\x74\xf0\xf4\x58\xfa\x5f\xe2\xa8\x72\xc4\xb3\x66\x72\xeb\xe0\xe9\x41\x45\x67\x07\x25\x2b\xdf\xa3\x47\x7a\xcd\x8c\xd2\x23\x42\xab\x41\x77\xf0\x5e\x4f\xde\x58\x07\x41\x2b\x80\xd4\x41\xd0\x13\x4f\xa6\x83\xa0\x27\xf0\xb3\x7b\x34\xbe\x4f\x42\x69\xdd\xa3\xf1\x5d\xd9\x1f\x1d\x74\x3d\x19\xd7\x3d\x89\xd5\x02\xdb\x41\xd7\x0a\x3c\x75\xd0\xf5\xfc\x19\xad\xff\x39\x25\x77\x80\xf7\xd4\x6b\xf0\x20\x7e\x47\xce\xb9\x74\x0f\xe2\x77\xb4\x3b\x4b\xf7\x20\x7e\x5f\x4c\x52\xdd\x93\xd3\xfb\x2a\x3a\x73\x70\x84\xe9\x00\xf6\x55\xd4\xe9\xc5\x91\xba\x89\x86\x2c\x2e\x79\x47\x84\x13\xe9\xc9\xd2\x41\xd7\x4b\x03\x04\x74\xbd\x58\x9b\x3a\x08\x7a\xb1\x4a\x77\x10\xf4\xd2\x0b\x03\x41\xaf\xa5\xdf\x71\x3f\x62\x3d\x1d\x04\xbd\x88\xa0\x76\x10\xf4\x02\xe7\x74\x10\xf4\x62\x3b\xaa\x83\xa0\x95\xc5\xd1\x41\xd0\x4b\xaf\x16\x04\xad\x50\x4c\x07\x41\xab\xfc\xa4\x83\xa0\x77\xd7\xef\x0a\x47\xdc\x01\x04\xbd\x65\x03\x08\x7a\x13\xd1\xec\x20\xe8\x3d\xf4\x3f\xe3\x88\x21\x01\x82\xde\x53\xf7\x9b\x1c\xf1\x39\x80\xa0\xb7\x9e\x04\x08\x7a\x6b\x58\x7b\x34\xbe\xa3\xe9\x5a\xba\x47\xe3\xfb\x06\xbd\xf4\x82\x5e\x2f\xf1\xfe\xee\xd1\xf8\xbe\x35\xac\x41\xde\x9b\x88\x58\x07\x79\x2b\xfb\xa3\x83\xbc\xb7\x86\x7c\xc1\x3e\x02\x1e\x1d\xe4\x7d\xd8\x30\xe9\x20\x6f\x85\x7e\x3a\xe8\x5a\xc1\x9e\x0e\xba\x3e\x1a\x21\x20\xe8\xa3\xa1\xeb\xd1\xf1\x7e\x4c\xff\x7b\x38\xe2\x8d\x79\x74\xbc\xab\xf8\xa5\x7b\x74\xbc\x1f\x96\xaa\x0e\xba\x3e\x6c\x78\x75\x10\xf4\x91\x7d\x20\x68\x95\xbb\x74\x10\xf4\x21\x38\xd1\x41\xd0\xe7\xea\x77\x87\x23\xfd\xee\x72\x26\x77\xf7\x08\x78\x17\xeb\x4a\x07\x4f\x2b\xc3\xa3\x83\x99\x2f\xf1\xe2\x0e\x66\xbe\x2c\x78\x1d\xcc\xac\x52\x98\xee\x51\xee\x7e\x09\xda\x74\x8f\x72\xf7\x8b\x27\xda\xc1\xd3\x17\x90\xd0\xc1\xd3\xca\x05\xe9\x1e\xad\xee\x57\xa3\x0e\xcc\xac\x22\x96\xde\xe9\x0b\x48\xbf\x77\x34\x95\xf1\x21\x3b\x78\x5a\x61\xa8\x0e\x9e\xbe\xfa\x3a\xc0\xd3\x77\xeb\x7f\xf4\x13\x44\xdb\xc1\xd3\x97\xf4\xae\x0e\x9e\xbe\x57\xd7\x9c\x2e\x3c\x0b\xa1\x41\x77\x94\x6c\x01\x0f\xa8\x3b\x4a\x36\x71\x1a\x76\x47\xc9\x16\xf4\x85\x3b\x4a\xb6\x40\xce\x4a\x77\x94\x6c\x2a\x38\xe9\x8e\x92\x4d\xa5\x22\xdd\x50\x7b\x5e\x3a\x13\xb5\xe7\xad\xff\x71\x77\x8d\x48\x47\xc2\xa6\xc0\x53\x77\x24\x6c\x31\xa8\x67\x87\x23\x9e\x92\xc7\xae\x4d\x14\x56\xdd\x51\xb2\x45\x80\x5c\x77\x94\x6c\x0a\x2e\xf5\x81\x5c\x2e\xf1\xfe\xee\x28\xd9\x44\x49\xd4\x3d\x13\xc5\x44\x06\xd5\x3d\x13\xc5\x14\x86\xea\x1e\xd7\xb6\xc8\xb2\xd9\x3d\xae\x6d\x62\x09\xe9\x8e\xae\x4d\x2c\x21\xdd\xd1\xb5\xc5\xfa\xcf\x29\xd9\x81\xb7\x45\x70\x5c\x77\xe0\x6d\x91\xe8\x5c\x77\xe0\x6d\x8a\x57\xf5\x81\x79\xc4\x5e\xfa\xc4\x3c\x1c\xa0\x3e\x31\x0f\x07\xa8\x4f\xcc\xc3\xad\xe9\x13\x13\x40\xde\x7d\xd2\x4d\x4d\x83\x93\x6e\x5e\xfd\x8f\xbe\x90\x10\xd4\x1d\xed\x1a\x32\xeb\xa5\x3b\xa2\x35\x91\x8b\x74\x47\x98\x96\xb4\x58\x38\xc2\xb4\x04\xaa\xeb\x8b\xdf\x69\x15\xf3\x98\xb0\x89\x6a\xa4\x3b\xc2\xb4\x84\xbb\xd7\x3d\x9b\xda\x12\x78\xac\x3b\xa6\xb4\xa4\x69\xc2\x31\xa5\x29\x42\xd5\x1d\x53\x5a\xa2\xea\xaf\x3b\xa6\xb4\x24\xfc\xe0\x98\xd2\x14\x85\xea\x9b\xbb\x0f\xdd\x8f\xbb\x83\xc7\xba\xe3\x46\x4b\xfa\x8c\x0e\x16\x69\x7a\x39\xf4\x8c\x8d\x96\xee\xb8\xd1\x92\xa6\x17\xc7\x8d\x96\x96\xfe\xe7\x03\x44\xb9\x2e\xfd\xd0\x4f\x32\x98\xfb\xa1\x9f\xfa\xa8\x0e\xfd\xd4\x02\x74\xe8\x27\x5b\x55\xfd\xf0\x04\x35\x49\x1d\x9e\xa0\xa6\x5d\xc7\x8d\x96\x83\x8e\x0e\x47\xba\x8a\xdb\x90\x09\x71\x74\xc7\x8d\x96\x41\x83\xdd\xa3\xb9\x96\x09\x6a\x74\x8f\xe6\x5a\xd6\x44\xe4\x98\xd2\x14\x12\xeb\x17\xcd\x6b\xc2\x18\xdd\x31\xa5\x65\x36\x68\xba\x63\x4a\xcb\xec\x5a\x77\x8f\xe6\x5a\xae\xfa\x5d\xe7\x88\x77\xe4\x78\xd3\x32\xee\x65\x77\xbc\x69\xb9\xe9\x7e\x93\x23\x9e\xbc\xe3\x4d\xcb\x4d\x3d\xc3\x3e\xb0\xb6\x05\x6c\xe8\x3a\xc2\x06\xde\xad\x05\x6c\x00\x79\x5b\xc0\x06\xbe\x00\x0b\xd8\xc0\x17\x60\x01\x1b\xf8\x02\x2c\x60\xc3\xd0\x99\xd8\x40\x0d\xa0\x21\x18\x8f\x52\x77\x31\x09\xc6\x2f\xfd\x8f\xa7\xcb\x9b\x36\x04\xe3\x95\xcb\x63\x08\xc6\x67\xbe\x23\x43\x30\x5e\xd9\x3b\x86\x60\xfc\x43\x71\x88\x21\x18\xff\xf0\xc6\x0c\xc1\xf8\x27\x62\x03\x82\xf1\x0f\xdb\x90\x86\x60\xbc\x02\x79\x86\x60\xfc\x93\x75\x77\x7f\xba\xcf\xa3\xbb\xfb\xd3\x7d\x8a\xee\x3e\x39\x5a\x1c\x2d\x8e\x74\x15\xb7\x4f\xe5\x35\x86\x60\xfc\x53\xd5\x97\xcb\x91\xbf\x5b\x43\x30\xfe\x01\x45\x1a\x82\xf1\xe2\x44\x31\x04\xe3\x4b\xd3\x99\x6e\x5f\x79\x9d\xe9\x36\x28\xf3\xc5\x1c\x38\x5a\xd1\x73\x71\xe0\x68\x05\x08\x66\x09\x45\x6d\xd2\x07\xcc\x81\xa3\xa1\xf0\x5d\xcc\x81\xa3\x55\xc2\x73\xe6\x21\x5b\x53\xc9\x87\x49\xbd\x1d\x5f\xd0\x50\x68\xaf\xea\xb5\x03\x47\x53\x0d\x86\x39\x70\xb4\xaa\x7e\x7a\x58\xd6\x2a\x9b\xca\x86\x42\xbb\x32\x66\xcc\x41\xa5\x79\x90\xe8\x3f\xa7\x64\xcb\x74\x13\xb4\x64\x99\x6e\x6e\x1d\x2d\x8e\x74\x49\x7f\xd4\xf5\xea\x7f\x6e\x42\x23\x33\xd1\x10\x6f\x6f\xac\x3f\x86\x78\x7b\x23\xa4\x6f\x8e\x37\xad\x11\xf2\x36\xc4\xdb\xdb\xa3\x33\xfd\x51\x37\x26\x4c\x73\x4c\x69\x8d\x69\xd0\x1c\x53\x5a\xc3\xe1\x32\xc7\x94\xd6\x88\x30\x1a\x02\xed\x0d\x37\xca\x10\x68\x6f\x53\x57\x99\x1c\xf1\xc8\x1c\x53\x5a\x63\x79\xb0\x87\x7e\x32\xd5\x59\xa1\x9f\xb2\xbd\xd0\x4f\x36\x37\xac\xd0\x4f\xd0\x84\x15\xfa\xb9\xf5\xbb\x87\x23\xec\x73\xdc\x68\x0a\xe1\x58\xa1\x9f\x7a\x4a\x88\xac\x2b\xf8\x62\x88\xac\x77\xa6\x33\xf3\x88\xad\xf5\xa4\x3b\x2c\x8e\xe8\xa7\x63\x4a\x53\xb8\xc5\x3c\x62\x6b\x4a\xc9\x31\x8f\xd8\x9a\x0a\x39\xcc\xf1\xa6\x29\xc0\x62\x1e\xb1\xb5\x5e\xf5\x3f\xb7\x41\x25\x18\xe6\x58\xd4\x3a\x28\xc4\x1c\x8b\x5a\x27\x3d\xcf\x1c\x8b\x9a\xf2\x59\xcc\xb1\xa8\x19\x31\x68\x73\x2c\x6a\xa6\x8f\xd8\x23\xbd\x66\x1a\xc8\x1e\xe9\x35\x4b\xfa\xdd\xe0\x88\xf7\xe7\x38\xd5\x8c\x29\xd9\x1c\xa7\x9a\x91\xbe\x66\x8e\x53\xcd\x1e\xdd\xc1\xed\x33\x7d\xee\x8e\x53\x4d\xe1\x0f\x73\x9c\x6a\x66\x3a\x8a\x1c\xf1\xe4\x3d\x53\xc3\x4c\x43\xde\x31\xac\x89\x29\xc3\x3c\x26\x6c\x46\x9e\x81\x79\x4c\xd8\x0c\xaf\xc3\x1a\xf6\x69\xaa\x6b\xd8\xa7\x31\xdf\xb0\x0f\x74\x6d\x0d\xfb\x08\x12\x99\xa3\x56\x1b\xc4\x30\xcd\x51\xab\x0d\x9c\x62\x73\xd4\x6a\x0a\x63\x98\xa3\x56\x1b\x7a\x4a\x8e\x5a\x6d\xe0\x3d\x98\xa3\x56\x1b\x7a\xb7\x8e\x5a\x6d\xe8\x49\x38\x32\xb5\x51\x74\x87\xc9\x11\xd6\x7a\xa4\xd7\x06\x9b\xb5\xe6\x39\x16\x36\xf0\xaa\xcc\x73\x2c\x6c\xe8\x4d\x7b\x14\xd8\x86\x6c\xf7\x28\xb0\xa9\xc8\xc3\xc0\xb7\x0a\x16\x18\xf8\x76\xe8\xeb\x00\xdf\x2a\x3c\x60\xe0\xdb\xa1\x31\x0f\xbe\x55\x5e\x8a\x81\x6f\x87\xc6\x3c\xf8\x76\xe8\x29\x81\x6f\x95\xa5\x62\xe0\xdb\xc1\xb6\xa0\x81\x6f\x87\xbe\x0e\xf0\xad\x58\x34\x0c\x9c\x3a\x89\xb8\x1b\x38\x75\x6a\x64\x81\x53\xa7\x9e\x19\x38\x75\x6a\xfa\x04\x8b\x4e\x92\xd2\x0c\x50\x39\x35\x7a\x00\x95\x53\xcb\x83\x47\x73\x4d\xf9\x2c\x06\xa8\x9c\x24\x1a\x18\xa0\x52\x44\x9a\x06\xa8\x54\x19\x89\x4d\xfa\xc2\x96\xa1\x4d\xfa\xa2\x99\x08\xc0\x39\xf1\xec\xcd\xc3\xb2\x36\xb5\xbc\x7b\x58\xd6\xc4\xe1\x61\x80\xd1\x69\xdf\xb1\xe4\xf6\xff\x99\x91\x81\xa9\x73\xe8\xfa\x3e\x22\xe6\xd4\xbd\xb1\x4e\x73\xdb\xc4\x3a\xcd\x51\x40\xd8\x79\xf5\x3b\x1f\x11\x2b\xc8\x1e\x1f\x11\x0b\x6f\xd6\x80\xb7\x4b\x63\xd5\xf3\xa5\x4d\x0c\x1e\xe6\x49\xd1\xb6\xf0\xf6\xcc\x83\xb9\xb6\xb4\x48\x7b\x30\xd7\x96\x16\x69\x0f\xe6\xda\x7a\x74\x15\xb7\x7c\x15\x1d\xb9\xe5\x4b\x33\xb9\x07\x73\x6d\x09\x3e\x78\x30\xd7\x96\xfa\xe9\xc1\x5c\xdb\x9a\x13\x81\xda\x5b\xb3\x20\x70\x7a\x13\x4e\x35\x4f\xb1\xb0\x8d\x77\x62\x1e\xcc\xb5\xcd\xbe\x80\x79\xc0\xd6\x14\xc5\x30\x4f\xa3\xb0\xad\xc5\x1d\xe0\xbd\x71\x2c\x0c\xe0\xbd\xf1\xd3\x0c\x70\x2d\x12\x0d\xf3\xa0\xac\x6d\x7d\x61\x80\xeb\xad\x6f\x0a\x70\xbd\xf5\xa5\x00\xae\x15\x63\x30\x00\xf4\x26\xb0\x6c\x00\xe8\x7d\x74\x44\x5f\x00\xbb\x76\xe8\xcb\xd5\xff\xbc\x2f\x27\xe8\xc8\x9f\xc4\xc1\x07\x37\x20\xf3\xd1\x98\x03\x16\x1f\xd3\xff\x2e\x47\xbc\x23\x60\xf1\x51\x3f\x81\xc5\xaa\x14\x31\x60\xf1\x21\x9a\x64\xc0\x62\xd5\x86\x18\xb0\xf8\x08\x0c\x02\x8b\x0f\x5e\xa9\x01\x7d\x15\x47\x30\xa0\xef\xd1\x37\x0c\xf4\x3d\x57\x57\xf1\x7e\x5e\x8d\x2c\xa0\xaf\xe2\x08\x06\xf4\xbd\x42\x05\x1e\x6a\xb5\xab\x75\xc4\x43\xad\x76\x09\x9c\x0f\x60\xf1\x65\xcf\x67\x00\x8b\x2f\x6f\x7a\x00\x8b\x95\x06\x33\x80\xbe\x97\xf9\x72\x00\x7d\x2f\xe1\xdb\x01\xf4\xbd\x8c\xc1\xe1\x61\x58\x13\x97\xeb\xf0\x30\xac\x5d\x82\xe3\xc3\xc3\xb0\x26\x82\x8d\x11\xb0\x01\x88\x3e\x02\x36\x74\xdd\x8f\x7e\xf2\xe4\x07\x20\xf9\x02\xc3\x07\x20\xf9\xb2\x8f\x34\x1c\x24\xe7\x44\x5c\x6d\x38\x48\xe6\xe8\x7f\x06\x60\xff\xcf\xf8\xbf\xff\xaf\xf3\x7f\xfc\x9f\x21\x48\x39\x4f\x7a\x56\x0e\x07\x42\x90\x72\x95\x44\x8a\x7c\x05\x08\x2f\x89\x6e\x69\xfe\x78\x27\xc2\x4b\x49\xdb\x57\xcd\x84\x26\x43\x78\x49\x67\xfb\x72\x79\x21\x26\x0a\x2f\x65\x6c\x5f\x19\xd3\xeb\x46\x12\x96\x41\x49\x26\xeb\x4c\x69\xc5\xa0\xf5\x92\x3d\x77\x2e\xbc\x84\x88\x25\xe2\x31\xf9\xb9\x04\x39\xa4\xb5\xe1\xf3\x52\x78\x09\x02\x4b\x14\x63\xe9\xcc\x5f\x76\x6e\x6f\x6c\xde\x28\xad\x07\x89\x32\x6c\x3a\x2f\x29\x57\x69\xac\x1e\x7e\x2e\x6d\x55\x49\x80\x1e\x7e\x2e\xe9\x4f\xa9\x6f\x5e\x7e\x2e\x15\xcb\x97\x78\xa1\xff\x5c\xa2\x85\xbf\x42\x70\x7e\xa6\x24\xdf\x5e\xca\x5d\x3c\x64\x69\x74\xa1\x68\x73\x21\x6b\x09\xd2\xac\x41\xa4\x26\x87\x4b\x23\xd2\x27\x68\x9d\xe4\xb0\xd5\x08\x19\xb5\x5d\xc9\x04\x78\x23\x62\x26\xa8\x97\xe4\xe0\xb9\xc7\x41\xaa\x25\xc8\x94\x64\xd9\x2e\x89\x12\x74\x49\x72\x70\x14\x12\xa4\x40\x82\xec\x48\x26\x7b\x2a\x48\x72\x04\x42\xfb\x54\x02\x77\x17\x15\xfd\xa5\x4b\xee\x93\x85\x17\xcf\xfc\x95\x4e\xc0\xcf\xf7\x10\x44\x30\x0f\xb3\x7c\x0e\x1e\x46\x0a\x30\xaf\x07\x28\xd7\x33\xcc\xbc\x41\x34\xe7\xf0\x94\xe7\x50\xd5\xe8\xb6\x43\x1f\x9e\xa1\x67\x09\xa2\x08\x87\xe3\x3b\xc3\xc4\x12\xc4\xe3\x0d\x81\x77\x86\x6f\x37\x24\xa4\xc8\x60\xbd\xce\xa1\xa9\xd1\xdf\x18\x74\xd7\x39\xf8\x97\x1a\xa0\xbb\x0e\xf0\x5c\xe7\xe0\x1e\x76\x80\xe7\x3a\xc0\x62\x9d\x83\x07\x51\x02\x2c\xd6\x01\xfa\xea\x1c\xdc\x63\x0a\x90\x4b\x87\x24\x49\x2e\x8f\xb5\x86\x84\xa0\x53\x6a\x08\x31\xf0\xe8\xa0\x4d\x0e\xf0\x25\x5f\xe6\xac\x00\x27\x72\x80\x0c\x39\x53\xb0\x15\x20\x35\x0e\xb0\x19\xe7\xe0\xe8\x25\xc0\x66\x1c\x52\xc7\x22\xa3\x11\x39\x20\x18\x8b\x73\x70\x5f\x29\x24\x46\x48\x32\x3e\xd8\xc8\x53\x62\x84\xc0\x3c\x9c\x42\xa4\xf3\x8c\x10\x28\x87\x2f\xa5\x79\x01\xca\xe1\x90\x34\x42\xbc\x28\x3c\xc0\x27\x1c\xd2\xcc\x1f\xef\x1d\xba\xde\x00\x4f\x6f\x4a\x95\x47\x87\xca\x31\xd4\xba\x09\xa9\x94\x00\x61\x6e\x48\x52\x1f\xd6\x53\x42\x91\x16\x9e\xd8\x14\xf5\xe2\xf8\xb8\x20\x7a\x4d\xa9\x73\x4d\x94\x20\xd2\x81\xdf\xbc\xeb\xe7\xdc\xfd\x70\x77\xcf\x44\x09\x10\xaf\x06\x18\x57\x53\x62\x2c\xc1\xaa\x1a\xa0\x53\x4d\xb0\xae\x04\x88\x50\x03\x0c\xa8\xaf\xc9\x0a\x96\xd3\x00\x15\xe9\xbd\x0c\x5a\xa8\x48\x03\x3c\x9c\xf7\xba\x9b\x19\xe0\xe1\x0c\x90\x57\x5e\x62\xd0\x21\x23\x9b\x07\x8d\x5d\x0e\x6a\x44\xaa\x08\x22\xac\xac\x49\x15\x22\xac\x00\x07\x55\xc8\xee\x61\x07\x38\xa8\x02\x04\x53\x21\xfb\x5e\x47\x80\x60\x2a\x3c\x68\x24\x64\x5f\x0a\x02\x7c\x51\xe1\x41\x82\x20\x4f\x7e\x8e\x16\x26\xec\x4a\x21\x2f\xce\x44\x35\x00\x7a\xa4\xf0\x60\x11\x84\x48\x01\xe6\x9e\xf0\xf8\x62\x1a\xe0\xea\x09\xb0\xd8\x84\xc7\x23\xb6\xa1\xa0\xa7\x43\x51\x9d\x75\x8f\x42\x86\x8a\x00\x54\x75\x1c\xfe\x1c\x0f\x04\x85\x83\x2c\xdc\x81\x0e\xf2\x7a\x3c\x2f\x5c\x3a\x78\x29\xa8\xc9\x7e\xcd\x18\xfc\x21\xc7\x10\xa0\x6c\x77\x33\x63\xf0\x6f\x3a\x06\x0f\x2b\x3c\xd7\x71\x7f\x0c\x85\x46\xd8\x35\x11\x32\x89\x2c\x52\x31\xc0\x50\x19\x7d\x41\x89\xac\x47\x91\xf5\xa8\xa0\xa6\x10\x83\x3b\x5e\x31\xc0\x0a\x19\x2b\x3f\xf7\xa5\x27\x86\x0e\x2d\xb4\x03\xb3\x18\x3a\x67\xc2\xc4\x18\x87\xce\x9c\x34\x42\x51\x3d\xb9\xd1\xe0\xee\x30\x07\x26\x4f\x42\x88\x48\xa2\x47\x34\xd0\x9d\x5f\xfb\xa7\x71\x71\x26\xac\xd2\xc9\xd1\x4c\x44\xb7\x37\x22\xd4\x5b\x1e\xcf\xcb\x8b\x08\x9d\x46\xd4\x4d\x9d\x7b\xe2\xa7\x31\xd1\x28\xd6\x58\x07\x20\x11\xf5\xb7\x88\xdc\x9b\xa7\xcd\xfd\x34\xba\xff\x15\x91\x06\x2b\x54\xee\x44\x44\x93\x22\x7a\x48\x1e\x3f\xfc\x69\x5c\x9c\x09\xa1\x9f\xe9\xee\x9b\x6b\x42\x01\xfd\x03\x58\xc1\x13\xc0\x87\xff\x01\x50\x44\x24\x5c\x22\xda\x2d\x05\x3f\x33\x22\x75\x12\xd1\x38\x29\x38\x60\x11\xb5\x90\x88\x4c\x48\x99\x85\x46\x0f\x8d\x45\xa6\xfd\xb2\x3c\x08\x10\xd1\xa5\x88\x08\x52\x14\x76\x51\x23\x7c\xf5\x11\xa2\xfa\x72\x18\x3e\x50\xcc\x47\xb8\xe5\xcb\xf1\x70\x77\x84\x23\x3e\x8a\x1c\x9e\x6d\xad\x98\xdc\x4d\x8d\x62\x7e\x3f\x9b\xbb\xfb\x5c\x19\x45\xeb\x8e\x7c\x40\x84\x12\x3d\x8a\x0b\x1d\xb4\x17\xd3\xa1\x11\x6e\x0e\x4a\x6b\x63\xf2\xb5\x2e\x42\xe2\x5c\x49\xcb\x8d\x50\x2c\x47\xa6\x94\xca\x06\x4a\x84\xb3\x38\x66\x28\x1e\x60\x38\x8f\xd9\xa3\x53\x31\x3f\x22\x8e\x52\xe3\xa6\xd1\x2b\x9d\x93\x4f\x99\x11\x12\xd9\x08\x45\x6c\x25\x3a\x1f\x21\x89\x8c\xb0\x43\x56\xc8\x91\x23\x8c\x8c\x11\x2a\xc6\x5a\x3c\x1c\x12\xb3\xef\x0d\xc4\x0c\x19\x4b\xe9\xfc\xfc\xf0\x73\x58\x51\x8a\x7e\xee\x53\x6d\xcc\x50\x97\x54\xde\x26\xf3\x53\x84\xa1\xaf\x56\x8f\x57\xc7\xc7\x57\xef\xf8\x40\x76\xd1\xdc\x9f\x8b\xd0\xbe\x45\xf8\xde\x6a\xf3\xfd\xf5\x08\xc5\x4d\x7c\xdc\x2b\xac\xc3\xe7\xfb\x08\xc5\x4a\x14\xb7\x0a\x6e\x71\x84\x5b\x25\x8a\x54\x05\xef\x38\x3e\x87\x6b\xc2\x83\x32\xdd\x5d\x8a\xc5\x67\xf1\x28\xf2\x90\xe5\x09\xdf\x91\xea\xfe\xa8\xb2\xfe\xe3\x9b\xb0\x91\x5a\xd0\xa8\x22\xd0\xe4\x95\xe3\xb1\x70\xa3\x72\xa8\xb4\x65\x86\xa0\x72\x32\xaa\x64\x92\xf4\xda\x48\x61\x62\x54\x45\x62\x76\xf7\x33\x52\x8b\x16\x55\x84\xf6\x5c\xce\x74\xf4\x1c\x55\xf6\x54\x7c\xb1\x8a\x14\xf4\x44\x55\xf2\x94\xcb\xcf\xf9\x70\x55\x8a\x53\x7c\xa3\x3c\x52\x44\x13\x55\x2f\x53\x13\xd7\xf4\x39\x28\xaa\x18\xa6\xba\x1b\x12\x29\x71\x89\xaa\x6d\xa9\x1e\x6d\x88\xd4\xb6\xc4\x6a\x54\x40\x7a\x4c\x3a\x52\x56\x12\x55\x4f\x52\x3d\xf1\x23\x56\x26\x2d\x95\x8e\xd4\xc9\x99\x93\x1b\x51\x2a\xd1\xbc\x0e\x25\x52\x1c\x11\x55\x15\xa1\x09\x86\x6a\x83\xa8\x32\x03\xe2\x9e\x91\x04\xec\x48\xe6\x75\x33\xdf\x52\x8f\x64\x42\xc7\x16\xa9\x4d\x72\xe8\x11\x49\x57\x8e\xe4\x29\xb7\x41\xe7\x49\xc8\x8d\x64\xe2\xb6\xb1\xf9\xb9\x47\x72\x23\x49\xb7\x6d\x1c\xce\xf4\x75\x29\x92\xfd\xda\xa6\xae\xc9\x93\x27\xf1\xb4\xc1\xcd\x11\xc9\xe6\x89\xa4\xf1\xb4\xe3\xd1\xbe\xd8\x19\x36\x9d\x7a\xd6\xe3\x98\x31\x92\x5d\x13\x49\xab\x69\xc7\x2b\xcd\x22\xa9\x33\x91\x9c\x99\xc6\x96\x7a\x24\x13\x26\x92\xf4\xd2\xae\xc7\x80\x22\x49\x2f\x91\x6c\x97\x76\x7d\xdf\x27\x76\xbe\x77\xd2\x5c\xda\xf5\xed\x83\x48\x9a\x4b\x24\xbf\xa5\x5d\xde\x11\x89\x1c\xb1\x53\xa2\x09\x9b\x40\x24\xbf\x22\x2a\xb1\x02\xd4\x16\xbb\xbb\x52\xb1\x93\x71\x1a\x2b\x67\x1a\x77\x27\xa5\x32\x6e\x6e\xe4\xe1\xb3\xc8\xbe\x70\x8f\x4c\xbf\xec\x04\xc7\x4e\xa2\x24\xa4\x75\xb1\xfb\x24\x17\x3b\x09\x85\x40\xa4\xc8\x96\x67\x64\xaf\xb3\x27\xcf\xf0\x8f\xec\x28\x46\xb6\x12\x7b\x76\x2e\x83\xc8\x86\x48\x64\x27\xa4\x17\x35\x7a\x52\x71\x24\x36\xdd\x2b\xeb\x27\xb1\xe9\x48\x50\xba\xc3\x2e\x1e\xcd\x51\x69\x34\x65\x5d\x32\x7f\x12\xdb\x89\xa6\x0c\x3d\x47\x2e\x91\x30\x4e\x34\x25\xe3\x39\xa0\x88\xc4\x53\xa2\x29\xf3\xcd\xf7\xe6\x22\xe1\x83\x48\xdc\xa0\x9b\x47\x50\x22\x91\x82\x48\x88\xa0\x13\x6e\x8d\x83\xf1\x39\x94\x7c\xe4\xbb\xe7\x71\x38\x6a\x8b\x83\x54\x91\xc9\x4c\x3b\x98\x93\x07\x59\x21\x93\xef\x68\x78\x64\x3c\x0e\x52\x30\x96\x07\xe1\xe2\xa8\x5c\xb3\x2a\xcb\x86\x9f\x7b\xe4\x38\x0e\xd2\x1e\x16\xaf\x63\xf0\x36\x07\x6f\x73\x7b\x94\x37\x0e\x16\xa9\x41\x2a\x2d\x15\x44\x71\x18\x67\x92\x19\x7b\x58\x26\x86\xc3\xae\x38\x4c\x89\x23\xdc\x7d\xf3\xf3\xa3\x7c\x07\xee\xee\x13\x67\x1c\xd4\xa3\xdc\x4b\xe7\x59\xb9\x06\x71\x91\xe0\xfb\xec\x71\x3a\xe4\x8c\x93\x80\x08\x0c\x99\x71\xba\x9b\x15\x27\x1b\x45\xd1\xdd\xeb\x38\x7d\x77\x26\x4e\xb6\x65\xa8\xc2\x88\xd3\x8d\x8e\x93\xb8\x3c\x59\xf9\x71\x56\xce\x24\xe8\x9e\x77\xfd\x27\xa0\x98\xc6\x65\x3c\x85\xd7\x20\x62\x8b\x93\x21\x39\x89\x94\x56\xcf\x27\x88\x13\x50\x35\x09\x06\x56\x30\xd9\xf4\x21\x12\x27\xb1\x3d\x4d\x6f\xd3\xdd\x8a\x38\x09\x96\x51\x5b\x1d\xa7\x87\x9d\xe2\x24\xde\xd4\x3a\xcf\x80\x07\x33\x79\x30\xcd\x03\x5b\x71\x39\xe8\x8f\x8b\x4d\x44\x88\xab\xe2\x02\x93\x2d\xf6\xda\xa0\x0b\x8f\xcb\x3f\xe3\xb8\xd8\x64\xb3\xac\xc6\x46\x23\xc1\x7e\x9e\xeb\x72\x4f\x35\x2e\x76\xbd\xcc\xf7\x96\xe2\xe2\xbb\x5f\x6c\x70\x41\xca\x1d\xd7\xc3\xdd\xd9\xa1\x22\xad\x31\x2e\xdf\xa1\x8a\x8b\xad\x29\x0a\x54\xe3\xe2\x0d\x2c\xde\xc0\xd8\x74\xbe\x72\x23\xb6\x44\x86\x87\x0d\xe3\xe2\xb5\x2c\x5e\xcb\xf0\xf4\xe0\xb8\x58\x97\x56\x23\xd0\x9b\xd4\x48\x97\xd8\x8d\x98\x89\x7e\xb2\x58\xad\xae\xb0\x39\xd7\xec\x74\xa9\x13\x51\x7e\xe8\x27\xeb\xd2\x62\x23\x80\x22\xcd\xb8\x98\xb4\x16\x3b\x00\xd3\x78\x9e\xc6\xdd\x4d\x61\x66\x2c\xf2\xe0\x6a\x5c\x8a\xaa\x16\xae\x09\x1e\x59\x0a\x29\xba\xf3\x1c\xd7\xe5\xe7\xc4\x04\x0f\x13\xcc\x76\x10\x16\x37\x01\x38\x18\x7c\xe3\xf6\x3d\xe4\xb8\xd9\x3c\x3e\xcc\x3a\x9b\x09\x7b\x47\x05\x1f\xf9\x39\x58\x7c\xb3\x25\x7c\x01\xa7\xdb\x97\xae\xb8\x93\xc2\x7f\x97\x46\x6e\xc4\xa6\x2c\x85\x72\x71\xf3\xde\xb7\x3f\x2c\x05\x4d\xe2\xf6\x67\x16\xb7\xcf\xcd\x89\x9a\x90\xb8\xf9\x9a\xb7\x4f\x84\x29\xaa\x91\x31\xbf\x71\xb3\xa9\x80\x89\x7b\xd2\x79\xdf\x08\xc8\x70\x6f\xc4\xed\x2b\x74\xdc\xe8\x8a\x26\xe7\xb3\x8c\x1b\x24\xb8\x11\x11\x4d\x1e\xfa\x8c\xdb\xc3\xda\x71\xfb\x22\x9e\x92\x67\xe9\xc4\x03\x88\x3e\xde\xcf\x6b\xcc\x79\x87\x33\x8f\x94\x34\x59\x2e\x0e\xee\xc1\x71\xf7\x40\x31\x82\x78\x3c\x74\x1d\xcf\x3e\xef\x18\x41\x3c\x4c\x45\xc7\x41\xe6\x3d\x20\x97\xe3\xdf\x5f\x3c\x67\xbd\x03\x07\xf1\xfa\x62\x1c\x6f\x20\x9a\xc0\x5c\x72\x79\x47\x37\x96\x77\x10\x2a\x5e\x3e\xc3\x1b\x89\xf8\xf8\x46\x47\xbc\x85\x46\x5f\x74\x32\x5c\x9e\xf1\x32\x37\x5f\x0f\xc4\xe4\xdc\xb9\x26\x23\xf9\x76\x9e\x3c\x8b\xff\xc5\x57\xb8\x3e\xdb\x24\x4a\x6d\xe2\xf5\x31\x18\xaf\x23\xa5\x14\x01\x14\x77\x70\x23\xcf\x15\xca\xc9\xf7\xcf\xe3\x05\x83\x5f\x5f\x9e\xd2\xc3\x3b\xba\x87\x1b\xf9\xc4\x9b\xc8\x8d\x88\xf7\x62\x26\x11\xb4\xec\x35\x28\x29\xf8\x8c\x9b\x08\xca\xe6\xec\x5d\x4a\xc1\xf1\x48\x0a\x0e\x3d\x72\xf2\x65\x2d\x85\xa0\x00\x8e\x87\x6c\xa6\x07\x77\x52\x40\x91\x30\xf8\x30\x4d\xd5\x07\x98\x87\x73\xbc\x71\x7b\xa3\x07\x77\x52\x48\x84\x7a\x12\xe1\x95\xca\x35\x13\x37\xf2\x02\xaf\x54\x3c\x33\x2a\x85\xac\x58\x8d\xff\xaf\xf8\x43\x4e\x21\x73\x23\x9f\xc1\x52\xf1\x7a\xc7\x14\x32\x5d\xf2\xfd\xf7\x54\x7c\x0e\x49\xe1\xe1\xe7\x3e\x59\xa5\xd2\xb8\xa6\x4f\x56\x29\xf8\x64\x95\x83\xd1\x79\x0f\xab\xa5\x50\x9e\x77\x64\x2a\x85\xc2\xcf\x4b\x7d\x47\xa6\x52\xf0\x1d\xe9\x84\x93\x9f\x9a\x47\xe5\x52\xf0\x49\x2e\x05\x9f\xdd\x52\x6c\x58\xd4\xf8\x9d\xfb\xfa\x29\x2e\x3a\xdf\x88\xea\x34\x45\xd0\x78\xf2\x97\x6b\xc2\xfb\xbd\x7d\x99\x48\xa8\xf4\x27\xa4\xf9\x1b\x72\x7c\x09\xd1\xf2\xa4\x10\x2d\x30\x36\x11\x39\x4d\x44\x4e\x25\x8f\x97\x50\x21\x4e\xb8\xd9\x97\x3c\xf2\x84\xb4\x6f\x42\xcb\xd7\xa2\xcf\xde\x09\xfd\xde\x84\x50\xaf\xc5\xc3\x99\x9b\x33\xd9\x5d\x02\x76\x25\x04\x3e\x13\xca\x9e\x17\x51\x83\x84\x9e\x65\x42\xd4\x4f\x41\xe7\x44\x94\x33\x25\x69\xeb\xfb\x54\x99\x90\x7c\x4b\x49\xb2\xf4\x1e\x6f\x4a\xe8\xb9\x25\x84\xdc\x14\xc4\x4f\x44\x24\x93\x22\x92\x04\xf1\x13\x7e\x75\x22\x30\x99\x5e\x37\xea\x04\xd9\x50\x2a\xcf\x3a\xd3\x27\xf8\x84\x43\xad\x20\x7e\x22\x50\x98\x92\x74\xa6\x27\x3f\x9f\x74\x5e\x12\xd1\xee\x40\x24\x62\x89\x29\x49\xc7\x79\xe9\x4c\x7f\x71\x8a\x17\x12\xc4\x4f\x84\x0d\x53\x5a\xf7\x37\x88\xff\xdf\x80\x22\x25\x4d\x76\xbb\xbc\x23\xfc\x29\x39\x8e\x4d\xe8\x4b\x29\xc2\x9f\x88\x37\x26\x05\x13\x89\xf0\x27\x64\x9f\x52\x7a\x45\xf8\xdd\x5c\x94\x9a\x12\x92\x3b\x21\xf0\x5a\xb2\x43\xa5\x84\xa6\xcc\xeb\x0d\x20\xba\x92\x50\x5b\x51\xb4\x33\x65\x1f\x8b\x29\xfb\x86\x84\xc2\xfe\x29\x4f\x35\xee\x77\xd8\x3f\xe1\xba\xa7\x2c\x81\xe2\xad\x46\x6e\x24\xf5\x61\x5f\xe7\x13\xf2\x04\x29\x4b\x5e\xd8\xc3\xfe\x09\x5d\x82\x94\x5f\x3a\xc2\x46\xa3\xd1\x38\xde\x61\xff\x84\x16\x40\x42\x04\x40\xd1\xf8\x04\xb9\x7e\xca\x0a\xe6\x33\x6d\x10\x84\x4c\x90\xd6\x2b\x1a\x9f\x08\x42\x26\x58\xe7\x15\x8d\x4f\x04\x07\x12\x74\xf3\x8a\xc6\x27\x68\xdc\x13\xfc\xed\x8a\xc6\x27\xf8\xdb\x13\x91\x49\x45\xe3\x13\xc4\xed\x89\x00\xa5\xa2\xf1\xe9\x49\xdc\x28\xad\x77\x34\x3e\x41\xe3\x9e\xe0\x6f\x57\x34\x3e\xc1\xdf\x9e\x1e\xed\x1a\xf8\x1a\x92\x20\x67\x4f\x30\xaf\x6b\x09\x4a\x30\xaf\x27\x68\xd5\xb5\x67\x91\x9e\xbc\x5f\xeb\xc4\xef\xea\x9d\x20\x82\x4e\x30\x40\x2b\xa0\x9d\xe0\x7c\x4e\x90\x3d\xdf\x19\xe8\xbc\xd1\x4f\x8f\xbf\xa7\xe8\x19\x02\x09\xf6\xe4\xf4\x68\x9d\x2f\x9c\xe9\xee\x79\x82\x05\x39\x05\x5f\x82\xd2\xe3\xdb\x2f\x09\x52\xe3\x14\x3a\x77\xdf\x3c\xf9\xad\xbd\x07\x6c\xe7\x15\x3f\xec\x4e\xa5\xc2\x3b\x3a\x9c\xf9\xb9\x2d\xe5\x36\xfc\x98\x82\xe6\x6c\xf0\x0d\xcf\x04\x0b\x68\x82\xf4\xf2\x35\x68\x21\xaf\x4c\xe5\x19\x1f\xd3\x06\x5c\x94\xa9\xf8\xe6\xc8\x6b\xda\x28\xcc\xe2\xc5\x67\xf1\xd7\xb4\x01\xfd\x64\x82\x77\xf2\x35\x6d\xc0\xf5\x98\x20\x79\x7c\x4d\x1b\xd0\x3a\x26\x18\x1c\x5f\xd3\x06\x6c\x84\x09\x1a\xc2\xd7\xb4\x01\xd5\x60\x82\x55\xf0\x35\x6d\x94\xce\x32\xd3\xd7\xc7\xb4\x01\x65\x60\x82\x59\xef\x35\x6d\xc0\xac\x97\x8a\xb6\x0e\xf9\x10\xa0\xc6\x4b\x45\x5b\x87\xcc\x0c\x70\xdb\xa5\xa2\xad\x43\x66\x06\xa8\xe3\x52\xd1\x66\x21\x33\x03\xf4\x6b\x09\xde\xb5\xd7\x60\x80\x69\x2d\x41\xb1\xf6\x1a\x0c\xd0\xa1\x25\xb8\xce\x5e\x83\x01\xae\xb3\x04\xc9\xd9\x6b\x30\x40\x6b\x96\x88\x4c\xbd\x06\x03\x9c\x65\xa9\xdc\xcf\xc1\x00\x81\x56\x82\xe5\x4a\x02\xfe\x09\x26\xab\x54\x23\x16\x79\x5e\x45\xaa\xc2\x07\xd2\x28\x76\xb4\x9e\xe0\xb5\x4a\x10\x5a\x85\xe0\x59\x0f\x09\x42\xab\x04\xeb\xd4\xef\x35\x13\x67\x22\xf3\xfb\xba\x66\xd2\x99\xf7\xf3\x9a\xfe\xa9\xa5\xaa\x59\x51\xd7\x04\x50\xc0\x17\xf5\x32\x13\x86\xa8\x04\xc5\x53\x8a\x9e\x1e\x9b\xe0\x63\x4a\x90\x2d\xbd\x9e\x12\x81\xad\x54\xcd\x3e\xbb\xe4\x51\x9d\x04\x3f\x81\x00\x5a\x82\x9f\x20\x41\x4c\xf0\x42\x04\xd0\x0d\x24\x58\x00\x84\xac\x13\xb5\xfd\xa9\xc9\x22\xdf\x9a\x49\xcd\x6b\x68\x12\x65\xeb\xaf\x09\x90\xe8\x53\xa2\x66\xfb\x35\x01\x12\x7d\x4a\xad\x7c\x6c\x47\x26\xca\xac\x13\x35\xd4\xaf\x09\x90\x1a\xea\x44\x64\x2a\x07\x77\x31\x13\xa5\xcd\xa9\x55\x6e\x34\xb8\x66\xa3\xb1\x71\xa3\xa5\x46\x6e\xd4\xb9\xd1\xe6\x46\x2c\xc6\x4d\xbb\xc3\x87\x1b\x75\x6e\xd4\xb9\xd1\xe1\x46\x2c\xd4\x94\xcd\x66\xc4\x07\x12\xa5\xaa\x89\xc2\xd0\xd7\xf3\xa4\x30\x34\x35\x6d\x90\xab\x11\xe8\x41\x99\x9a\x3c\x95\x44\x99\x5a\xea\x81\x69\xd4\x83\x50\x89\xa2\x9b\xd4\x31\x0c\xaa\xbb\x44\x35\x4a\xa2\x14\x23\x3d\x9e\x27\x9e\x28\xc5\x48\xd4\x60\xbc\x1e\x32\x55\x10\x89\x70\xd5\xeb\x21\x53\xaa\x90\xba\xb6\xb6\x79\xc8\x54\x17\x24\xca\x03\x5e\x0f\x99\xf2\x80\x44\x4a\xff\xeb\x21\x13\xd8\x4a\x1d\xf9\xfb\xa4\x2e\x6d\x1a\x7d\xd1\xcf\xe8\x70\x26\x12\xcb\x13\x99\xe1\xd9\xf3\xe0\xff\x01\x28\x48\xe3\x4e\xe4\x6f\x67\xb2\xe3\x13\x49\x86\xc9\x34\x3f\x79\x60\x33\x91\x6f\x97\x08\x70\xbd\x06\x1a\x09\x65\xc9\x46\xfd\x78\x06\x64\x76\x25\x12\xb0\x5e\xcf\x80\x44\xaa\x44\x5e\xd4\xeb\x19\x10\x1f\x4b\x24\x2f\xbd\x9e\x81\x31\x15\x99\xbc\x35\x9e\x01\xb9\x48\xc9\x84\x08\x18\x68\x24\x05\x25\xf2\x7f\x5e\x03\x8d\x1c\x9f\x44\xca\xce\x6b\xa0\x19\x66\x92\x73\xf3\x1a\x68\x44\xd2\x92\x09\x11\x30\xd0\x86\x07\x0e\x12\x81\xaa\x97\xed\xc4\xab\xd2\x18\xe7\xc3\xf6\x01\xce\x1b\xf3\xf9\xb0\x7d\x2c\x1a\x57\xff\xb0\x7d\x30\xab\x8e\x1d\x3f\x6c\x1f\x2c\x80\x63\xdb\x87\xed\xc3\x71\x4c\x1a\xf2\x3f\xb1\x7d\x1c\xae\x79\x9e\x0f\xdb\xc7\xa5\xf1\xf6\x0f\xdb\xc7\xe5\x46\xb2\x08\xdb\x09\x85\xa5\xa9\x84\x05\x0f\x3e\xa7\x09\xf0\x99\xc1\x3e\x1e\xc8\x64\x1a\x9e\xe1\x7c\x3c\x90\x09\x4c\x98\xa3\x7c\x3c\x90\xe9\x2f\x3c\xcd\x79\x3f\x1e\xc8\xc4\x13\x20\x94\xf5\x7a\x20\x13\x33\xa7\xcc\xac\x6a\xf4\xaf\x99\x50\xd6\xeb\x81\x4c\xde\xe6\xd4\xdb\xe4\x81\x4c\xc7\x70\x69\x9e\xfb\xf1\x40\x26\x8e\xe7\xbc\xe5\xe3\x81\x2c\x2c\x5a\xb2\x68\xa9\xd1\x6f\xb4\x62\xfa\x78\x20\xcb\x3d\xf1\xb4\xe2\xf8\xb0\x7d\xf9\x8a\x92\x56\xfc\x1c\x0c\x0b\x57\x7a\xcd\xfc\x61\xfb\x9a\xdc\x68\x7d\xce\xb8\x0b\x87\x67\xed\xcf\x19\x77\xb1\x00\xae\xf3\x39\xe3\x2e\x8f\x18\xa4\x75\x3f\x67\x5c\xc2\x40\x69\xdd\xcf\x19\x77\x79\x34\x2f\xad\xfb\x39\xe3\x6e\x36\xfb\x77\xf8\x9c\x71\x37\xc2\xff\x04\x7e\x5e\xb6\x6f\x56\xc5\x9d\x3e\x67\xdc\xed\xdb\xe6\x69\xa7\xcf\x19\x97\x50\x4f\xda\xe9\x73\xc6\xdd\x60\xb8\xad\x0c\x23\x6c\x27\x2c\x93\xf6\x1e\x1f\xb6\x6f\x16\xff\x7d\xc2\x87\xed\x9b\xcf\x70\xdf\xe7\xc3\xf6\x8d\x45\x5b\x16\x61\xfb\x61\x7c\x9e\x50\x3e\x6c\x3f\x04\x0e\x4e\x18\x1f\xb6\x1f\x02\x07\x47\xc0\x1c\xdb\x4f\xa4\x31\x3d\x1f\xb6\x1f\x2c\x3a\xb2\x08\xdb\x0f\x4b\xfa\xc9\xe5\xc3\xf6\xc3\x5a\x7e\x84\x97\xb1\xfd\xb0\x2a\x1e\xdc\x50\x14\xf1\xd3\xf1\x95\x2f\x1d\xf7\xe0\x73\xf6\xec\xde\x74\x58\x27\x0e\x0b\xa0\x90\xe0\xf1\xdd\xfa\x74\xdc\x53\xcd\x19\x0c\x7e\x58\x3c\x8e\xfb\xa6\x39\x47\xfa\xd9\xe9\x12\x6b\x48\x8e\xdc\x1d\x98\x7e\x7c\x1d\xcc\x19\x90\x72\x58\x00\x8f\x43\x88\x9c\x01\x29\xc7\x67\xa9\x74\x8c\x08\x9a\xef\x90\xa6\x03\x22\x3f\x83\x6b\x66\xce\x74\xb0\x98\x0e\x13\x75\xf6\x44\xd4\x74\x58\x6d\xce\xe0\x46\xbe\xe7\x9f\x0e\x98\xf1\x78\x3a\x70\xce\x0f\x5d\x62\xae\x3b\xcc\x75\x94\x00\xa5\x33\x79\x74\xb3\x7d\xda\x4e\x7e\xcc\x71\xd7\xf6\xd7\x76\xdc\xd6\xc3\xd7\xf1\xb2\x9d\x99\xe1\x30\xa5\xbf\x6c\xdf\x3c\x25\x5f\xdd\x7e\x6d\xe7\x3b\x3a\x4c\x80\x2f\xdb\x59\xeb\xce\xb1\x4f\xdb\x99\x19\xce\xad\x9f\xb6\xe3\xf5\x9e\x3b\x3e\x6d\x67\xf2\x3f\x0c\xc5\x97\xed\x44\x52\x0e\xf3\xa7\x6c\xbf\xbe\x99\x96\x2e\x3e\xa2\x6c\xbf\xc4\x9b\x6e\x62\xb6\xf1\xea\xb7\x74\xdd\xbb\x4b\x37\xb1\xca\x60\xe6\x05\x72\x5e\x0d\x45\x62\x2e\x17\xc8\x79\x95\x7a\x83\xeb\x76\x19\x9f\x37\xc7\x0f\x27\xef\x02\xe5\x2e\xbe\xde\xeb\xe7\xbe\x83\x91\xae\xe2\x5b\x84\x96\x2e\xf8\xee\xfa\x16\x7c\x62\xdb\x34\x5d\x46\xf2\x55\xbe\x98\x27\xd2\xa7\x0b\x94\xbb\x85\xf0\x83\x6b\x70\xa6\xeb\x1b\xf2\xe9\x32\xbc\x5f\x16\x79\xf0\x31\xdd\x1a\x7e\x2d\xfa\x07\xa0\x20\x4e\x99\x6e\x4d\x9f\xe6\x82\x9f\xae\xa7\xe0\x5c\xe2\xcc\xe9\xe2\x2f\xdd\xda\x3f\x6f\x58\xe9\x5a\x1d\x9f\x8f\x90\xc0\xd8\xad\xeb\xeb\x9a\x9b\xc6\xf3\x79\xcd\xc6\x23\xe4\x03\xcc\xc6\x23\xf4\x3c\x99\x74\x89\x9d\x91\x69\x94\x2e\x5f\xde\x05\xc4\xfd\x36\x72\xf7\x3e\x3e\xdf\x40\xe7\xee\x7d\x7d\xbe\x01\x1c\xb3\xcb\x57\xf9\x6a\xe4\xd3\xb9\x83\x38\x97\xa9\x91\x37\x00\x88\x83\x39\x2c\x11\x6b\x4d\x17\x97\x58\xc1\xbd\x0b\x6e\xba\x13\x9f\xc1\xe8\xd2\x62\xf4\x2d\xdc\x26\x00\xda\x25\x68\x72\xf9\x82\xca\xe2\x9a\xac\x9f\xf7\x7c\x86\x03\x2e\xce\xd7\xd5\xa2\xfa\x6a\xc4\xa2\x57\xec\x9a\x87\x8c\x47\x76\x95\xce\xa5\x47\xc7\xba\x74\xef\x47\xe2\x57\xba\x7c\x25\x57\x28\xc3\x3f\x9d\x4c\xf8\x37\x07\xad\x4b\xbe\x63\xe2\x89\x7b\xde\xc8\xba\xe4\xbb\x45\xde\x09\x3f\x85\x4f\xc7\x9d\x28\x5f\x35\x74\xb1\xdf\xd4\x40\xbf\x8a\x9f\x22\xd0\xc7\xcf\xe5\x95\xc8\x0f\x19\xdc\xbd\x28\xaa\xc3\xa7\x33\x39\x53\x63\x50\x79\xa2\x93\x1b\x0d\xa1\x28\xba\xe4\x11\xd4\x1c\x94\x20\x3a\xec\x6d\x7b\x26\xef\xd6\x7f\xf7\x6b\x7b\x0e\x6c\x56\x84\x39\x3e\x6d\x9f\x3c\x9e\x79\x3e\xcd\x9c\x74\x49\x4f\x09\x33\x23\x20\x2c\x86\xf4\x61\x66\x74\xe4\x92\x63\xd8\x1f\x66\x46\x5f\xeb\x72\x54\xbc\x09\x33\xa3\xef\x1a\xe4\xa8\x5d\x03\xcc\x8c\xee\x20\xe7\x58\xc6\x87\x99\xd1\xbf\xe6\x1c\xf5\x35\x63\x66\xe4\x29\xc5\xaa\x8d\x8c\xe2\x8d\x95\x9f\xeb\x8b\x53\x97\x2a\x3f\xd7\x17\x67\x6a\xdc\x34\x9e\xf7\xa4\x95\x63\xe5\x9a\x4d\x33\xc4\xe3\x8d\x0d\x33\xdd\x11\xfc\x3d\xd3\xf7\x8c\x73\x6c\xcf\xd7\x99\x85\xc6\xf3\xf6\xd6\x72\x64\x8d\x8c\x2c\x80\x7a\xf2\xb1\xd3\x25\x13\xca\x58\xde\xe8\xbb\x6f\x39\x2a\x7a\xe8\x1b\x19\x39\x1e\xee\xae\xf0\x9f\x9e\x27\x3e\x51\x7c\x65\x2b\xf2\x73\xd0\xc9\x2b\xc1\xd7\xb7\xb8\x33\x09\xbe\x39\x29\xac\xe6\xf5\xf3\x59\x59\xb8\x29\x2b\xa0\xe9\x8f\x2e\x79\x68\x29\x27\x5c\x46\x82\x26\x99\x48\x76\x4e\x3e\xf1\x2a\x68\x92\x13\x5b\x3a\x89\x19\x97\x70\x40\x4e\xbc\xa3\xf4\x8a\xd4\xeb\x4c\x7f\x63\x89\x19\x93\xa0\x49\x4e\x3e\x71\xe6\xc4\x94\x47\xd0\x24\x93\xfe\x95\x5f\xa9\xb2\x1e\x41\xcb\xca\x98\x25\x0b\x4c\x11\xb4\x4c\x8e\x6c\x4e\xfb\x23\xc6\x9e\x13\x4b\xac\x12\x4b\x09\x96\x65\xd4\xf7\x33\x42\xfb\x0a\x96\xe5\xcc\xc0\xcc\xe1\x23\xc6\x9e\x51\xca\xcf\x48\xe4\x2b\x58\x96\x11\xc5\xcf\xa8\xe1\x2b\x58\x96\x51\xa7\xcf\xc8\xd2\x2b\x58\x96\x73\x62\x9b\x28\x7d\xc4\xd8\x33\xea\xed\x19\x69\x76\x05\xcb\x32\xf2\xeb\x99\x04\x33\x05\xcb\x32\x79\x66\x19\xc1\x75\x05\xcb\x32\x39\xab\x19\xcd\x72\x05\xcb\x32\xe9\x66\x19\x65\x71\x05\xcb\x32\xca\xe2\x39\xd7\x8f\x30\x7a\x46\x1a\x3c\xe7\xf6\x11\x46\xcf\xe8\x70\xe7\xdc\x3e\xc2\xe8\x19\x99\xeb\x8c\xbe\xf5\xeb\xbd\xa3\x68\x9d\x91\xb2\x7e\xbd\x77\xe4\xa3\x33\xda\xd0\xaf\xf7\x8e\x36\x74\x26\x9b\xf6\xf5\xde\x91\x81\xce\x79\x7c\xbe\x77\x34\x9e\x33\x62\xcb\xaf\xf7\x9e\x17\xfd\xd4\xae\x01\x9f\x8c\xe2\xe7\x59\x1b\x03\x8e\x9b\xb2\xe2\xe7\x59\xa9\xff\x8e\x9b\xb2\xe2\xe7\x04\xce\x15\xd8\xca\x8a\x9f\x23\xb7\xfb\x7b\xcd\xc3\x99\xc7\x3e\xaf\x79\x74\xe6\xfc\xbc\x26\x2b\x49\x3e\xfb\xf3\x9a\x02\x61\xf7\x03\x22\xe5\x2c\x10\x76\xe7\xff\x4f\x40\x91\x11\xbe\xcd\xf9\x7e\xe0\xa7\x8c\xe2\x6d\x26\x98\xff\x9a\x60\x48\x33\xce\x4f\xf8\xc0\x4f\x19\x8d\xdb\x4c\xee\xb1\x16\xea\x4c\xd8\x3f\xa3\x6a\x2b\xfc\x94\x09\xe6\x67\x82\xf9\x77\xf0\xae\x20\xfa\xcf\x0a\x50\x1e\xa7\xf5\xce\x24\x8c\x65\x08\x69\x95\x12\x9c\x21\x2d\xcd\xb0\x95\x2a\x25\x38\x43\xda\x97\x61\xeb\x53\x42\x55\x86\x91\x2f\xb7\xf6\x91\x26\x95\xa1\xdb\xcb\x04\xcd\xd2\xf1\x5c\x9f\x0c\x49\x56\x86\x1d\xeb\x41\x42\x27\xc3\x80\x95\xa1\xbe\x7a\x4e\xd2\x99\x87\xc6\xeb\x8d\x0f\x37\xf2\x25\xfd\xff\x25\xec\xdc\x95\x34\x57\x72\x23\xec\xeb\x29\xe6\x0d\x44\x16\x12\x75\x89\x58\x4f\xb6\xf4\x0e\x64\x5d\x22\xd6\xd8\xb3\x13\xa3\xdd\xf7\x57\x34\x3e\xb4\xba\xcf\x71\xc6\x18\x63\x2a\xf8\x37\x6f\x45\x14\x90\x85\xcc\xb4\x16\x31\x4f\xb0\x74\xac\x01\xf5\xb4\x28\x35\x9d\x1e\x7e\xa3\xe3\xcb\x10\x36\x72\x1a\xaa\x0c\x81\x22\x43\x99\xc8\x2d\xd2\x04\xeb\x70\x14\xd0\xde\x09\x43\xa4\x18\x5c\x0c\x7e\x5c\x44\xd8\x1a\x7c\x0c\x02\x34\xa2\x69\x13\x52\xe1\x31\xf8\x32\x18\x4d\xb9\x95\x30\x8c\x80\x8c\xf5\x58\xe7\x43\x6c\x33\x06\x37\x83\xb1\xab\xd9\x88\xb8\xf4\x8d\x19\x7d\x63\x41\x18\xfb\x18\x64\x9d\x40\x9c\xc4\xdf\xc6\xd9\x59\xf5\xd1\xe9\xf0\xcd\x6a\x03\xbc\x66\xc8\x6e\xf8\x0e\xa3\x28\x4b\xb0\x0d\x94\xcd\x37\xf1\x9e\x86\x31\xeb\x58\x92\x1f\x66\x48\xa7\x7e\xa1\x7d\xac\xde\x21\x05\x67\x08\x36\x18\x4a\x0d\x15\xc1\x50\x43\xc9\xc0\x90\x30\xa8\xe2\x6f\x22\x29\x60\x68\x09\xd4\xca\x04\x83\x33\x6f\x03\x5b\x32\x44\xe3\x6c\xb0\xcf\x03\xbf\xbd\xf6\x93\x83\x0f\x83\x71\xa2\x11\x1d\xa5\x06\x7f\xdc\x20\x8e\xd7\x11\x3b\x65\x06\xe5\xdb\xe0\x7a\x57\x5c\xe0\x0d\x06\xb7\x41\xd6\xae\x0f\x4b\x3a\x48\x9f\xc1\x23\xae\x73\x73\x49\x2c\x2c\x23\x6d\x87\x62\x7b\xdf\xc6\xe0\xec\xe9\xff\xc3\x72\x01\xf3\xd4\x46\x9a\xf4\xc4\xe6\x9d\x41\xd7\x34\xd8\x98\xad\x44\xbd\x64\x30\x27\x0d\xca\x64\xc3\x78\xd5\xa0\x37\x1a\x0d\x71\x8d\xd6\x06\x4b\x30\x70\xa4\x03\xcc\xe0\xd1\x11\x9f\x06\x02\xcd\x8a\xb2\xc0\xe0\x12\xda\x40\x61\x19\x75\x04\x1b\xac\xf3\x23\x4d\x4d\xf8\x9b\xb0\xe4\xec\x49\x27\x90\xe8\x0a\x31\x48\x6f\x06\xdb\xad\xd5\x9b\x23\xc9\xb7\x9e\xf4\xd4\x88\x16\x0c\x7b\xe2\x0b\xb0\x07\x8b\x8c\x16\xa5\x86\x3d\x40\x28\x4f\x54\x80\xad\x87\xd2\xb5\x3d\x51\xad\xd9\x83\xf5\x44\x67\x61\x79\xc8\x1d\x1e\x3c\x20\xa0\x67\xdb\x03\x05\xe7\xc1\xc9\x00\x56\xb1\xd1\x5d\x67\x74\xd7\xb5\x19\x74\x43\x7b\x1a\x27\x42\x09\x1f\xd7\x30\x7b\x20\xd6\x3c\x88\xd0\xaf\xce\xcf\x59\x6d\x68\xa4\x6b\x87\x6c\xe8\x61\xf1\x7f\x90\x65\x3f\x41\xae\xb4\xe7\x65\x10\x49\xc5\x6b\xf1\x37\x09\x6b\x0f\x8a\x7e\x46\x08\x7a\x40\xde\xe8\xbc\xeb\x95\xc9\xf0\x30\xbd\x81\x1b\x7b\xe3\x2b\x7e\x99\xde\xa0\x87\x1d\x7f\x09\x7b\xc9\x08\x5e\xf4\xd3\x72\x26\xbf\xb4\xc2\xbc\x88\x0d\x0f\x62\xf2\x4b\x29\xfd\x22\x1b\xf6\x46\x95\x6e\x2f\x93\xf6\x45\xa7\xea\x04\x0b\xdd\xe8\xc3\xb3\xec\xc3\xbb\x1f\x4e\xd4\x18\x6c\x48\xb9\x04\x37\xd3\x68\xb5\xb3\x6c\xb5\x6b\xf9\x73\xb2\xf5\x17\xd6\x2f\x26\x1c\x96\xa0\x65\xf6\xdf\x0d\xcb\x41\x8e\x44\xaa\x86\x56\x60\x7b\x09\x02\xe0\x9a\xe3\xe1\xbd\x27\xbc\xf9\x22\x32\xf3\xe4\x89\x88\xc9\x2f\x94\xd7\x97\xb0\x36\x79\xef\x33\x62\xdd\x41\xc2\xd1\x66\xa4\x2c\x36\xfd\x7b\x0e\x3e\x49\x0f\xa7\x7f\xcf\xc1\x27\x15\xce\x04\x76\x82\x9a\x64\x34\xc9\x19\xdd\x71\xc9\x2d\x32\x9a\xe4\x8c\xee\xb8\xe4\x16\xd9\x24\x4d\x9f\xd4\xc7\x25\x84\x3a\x6c\x32\xeb\x66\xa3\x6f\x21\xd4\x73\x6c\xb2\x1e\x4d\xd6\x23\x8b\x26\x1d\x9b\x4c\xc5\x49\x25\x0d\x35\xc9\xe8\xaa\xb3\x49\x41\x5d\x06\x47\x76\xae\x33\x9b\x2e\x4a\x0e\x72\x9b\x1d\xdc\xa1\x72\xa2\xd8\x71\x36\x9a\xeb\x92\xc4\x64\x13\x44\x6b\xd2\x59\x56\x1a\x77\x04\x5f\x70\x66\x0a\x4f\x59\x90\x90\xe9\xcc\x14\xfe\xb9\x7f\x9b\x50\x2c\x82\xc1\xca\xe2\x32\x7a\x7a\x6d\x51\x63\xae\xac\x90\x98\xa7\x8b\x87\xbd\x48\x0c\xe9\x3d\xb6\x15\xfb\xbb\xb6\x3e\xeb\xa5\xc6\xe0\x62\x90\x76\x92\xc5\x91\x54\x41\x8b\x96\xd9\x1d\x60\x94\x2d\xaa\xa0\xd5\xa0\x2b\x06\x7b\xc6\x16\xa5\x0a\x98\xe9\x55\x82\x28\x63\x8b\xfc\x69\x1d\xf6\x93\x03\x1f\x33\xc0\x52\xdb\xc9\xfc\x22\xc7\xd9\xe4\x38\x3b\xf9\x55\x7c\x4f\x89\xa7\x02\xa4\x5e\x46\x4e\xb6\x69\xc4\xda\xd0\xc1\x4a\x74\xd5\xda\x06\x08\xdf\xec\xa9\x42\x16\x30\x60\x55\xdb\xe5\xfa\xc2\x88\x6c\x83\x6c\xed\x80\xb4\x3e\xef\x28\x41\xd6\x5d\xf6\xb7\x3b\x82\x35\x65\xb0\xa6\x3e\x67\xf4\xe6\x99\x6d\x92\xa2\x9c\xd1\x80\xa5\xb6\x67\xfd\xf6\x56\x37\x5f\xde\xfe\xf6\x56\xff\x66\x87\x7b\x3f\x25\xc9\xa0\xf1\x94\xc0\xdc\x0c\x7c\xec\xf3\xc5\x01\x8c\xd9\x61\xc5\xcc\x17\x77\x62\xe1\xb4\x63\xdf\x4b\xe2\x23\x8e\x14\x67\x0f\xc6\x98\x1d\x0a\x89\x13\x98\x44\x41\x87\xc3\x0e\xa1\xe8\x44\x28\x2a\x23\xff\x26\xf3\x05\x0c\xab\xe0\x01\x6d\x60\x58\x06\x86\x55\x6a\xfe\x4d\x3e\xc7\x93\xf5\x6e\x5e\x27\xd5\xc5\xa1\x9d\xeb\xf3\x3a\x89\x64\x09\x3b\xa1\x01\x6e\x87\x42\xf7\xb0\x11\xe5\x8b\x9f\xb3\xcb\x78\x06\x1b\xec\xe2\x8e\xa8\x2e\xc0\xa2\x0c\xf6\xa1\x81\x37\x59\xe2\x4d\xf9\x3d\x1d\x72\x9c\x93\xfd\x4a\x04\x83\x03\xc4\x9b\x58\x54\x06\x83\xf3\x72\x22\x90\xa9\x9c\xde\x87\x75\xfe\xd0\xd9\x64\x6f\x9e\x88\xd7\x01\x0a\x5c\x99\x36\x87\x77\x0b\x94\x65\x57\xf4\x9c\x1b\x7d\x86\x76\xe6\xf3\xfd\xc9\x4f\xee\x7d\xd5\xef\x4f\x89\x2c\xf8\xac\xf5\xfd\x29\x11\x5c\x0f\x7b\x0f\x9f\x67\x67\xf1\x3f\xe7\x4f\x3f\x27\x42\x9c\xf3\xed\xe7\xa2\x23\x51\xd7\xad\xaf\x23\x75\x05\xbc\xa2\xeb\x7e\xbf\x1f\x59\x38\xd2\xfe\x74\xa4\x71\xa4\xfd\xe9\xc8\x58\xe7\x45\x2f\x61\x4e\x30\x5d\x51\xb7\x2a\x81\xad\xcf\x9f\x47\xec\xd1\x05\x37\xf7\xf3\xe7\xce\xdf\xa4\xd3\x84\xd0\x2e\x60\x2e\x65\xdb\x20\xa1\x5d\xa0\x5d\xba\xea\xf5\x15\xda\x75\x05\x62\xa0\xab\xea\xeb\x6d\x0a\x4e\xa1\xb2\xdd\x90\xb7\xa9\x2b\xe6\xa7\xb2\xeb\x90\xd0\x2e\x9a\x0f\x75\xd5\xf9\x15\xda\x05\xed\x50\x57\xae\x0c\x83\x23\x23\x74\xe9\x6a\xfe\x15\xda\x45\x47\xa2\xae\x6c\xc7\xab\x9c\xa8\x73\xef\xec\xf2\x13\xda\x75\x45\xf1\x2c\x28\x89\x39\x15\x75\x45\xf4\xd7\x95\x9d\x77\x8b\x9f\x0f\x4e\x04\x03\x84\x68\xa3\x6b\xf0\x94\xa0\x6a\x12\x6d\x74\x43\xb9\xbc\x93\x85\x1d\xf1\x53\xe0\x62\x82\x84\x98\xf1\x53\x77\xa4\xdb\x4a\x02\x3b\xf1\x53\x77\x54\x7e\xba\x4b\xfd\x8a\x9f\xba\x23\xbf\xd3\x1d\x69\x49\xc6\x4f\xdd\x85\x13\xd1\x2a\x42\xfc\xd4\x1d\x89\x9d\x6e\x94\x07\x88\x9f\xba\x79\xef\x37\x68\x3c\xf1\x53\xb7\xf8\xb9\xce\xb7\x3b\xba\x23\xa2\xe8\x86\xaf\xfd\x79\x47\x87\x8b\xc7\xa5\xba\x46\x03\xa5\x4a\x2c\x3d\x2a\x78\x3e\xa1\xe5\x2d\x58\xd1\x82\x15\xdd\xef\xca\x91\x51\xe1\x88\xa6\xc5\x5e\x02\xdd\x56\x89\xa0\xaa\x82\xb6\x73\x8d\x1c\x5c\x90\x87\x65\x88\xa6\x5d\x33\x07\x3b\x83\xe8\xfe\x45\xf7\xbc\x40\x7c\x64\x29\x77\x56\x39\xd2\x18\x44\xb8\x0a\x23\x5e\x81\xd5\x08\x90\x66\x2c\x1e\xb2\xc5\xcc\x92\xc5\x4a\xa9\xc3\x1d\x59\xe4\x0e\xb2\x00\xfc\xfc\x1a\x9c\x28\x72\x5b\x59\xe4\xb6\x7e\x85\x7e\x98\x2c\x40\x75\x59\x14\x6b\x5e\x72\x30\x72\x38\x19\xc0\xab\x3b\x27\x5a\xfc\x3c\xaa\x34\xa7\xd9\x4d\x54\xfc\xa2\xe2\x77\x7c\xed\x04\xf7\x58\xf4\xfb\x39\x4a\xe9\xa2\xed\x4f\x70\x02\x43\x2f\xff\x37\x09\x85\x14\x79\xac\x14\xa8\x6c\xa8\xb0\x7f\x0c\xc6\xaa\x28\xda\xf8\x42\x38\xf3\x63\xd0\xf8\xdb\x51\xd7\x79\xb8\xba\x7d\xfc\x8f\xab\x88\x58\xe2\xf8\xa4\x49\xc4\x12\x1a\xf7\x42\xb6\xee\x63\x30\xd6\x25\x29\xd6\x25\x47\xa0\x5a\x22\x18\x28\x82\x81\xa3\x81\x2c\x45\xa2\x26\x45\xa2\x66\xe8\xbc\x4b\xf1\x40\xa5\x68\xeb\xf0\xc9\x4c\xc1\xc2\x5f\x10\x1b\x7d\x57\x2e\x3e\x4a\x00\xd1\xa3\xe7\x48\x81\x4a\x11\x94\x45\x8f\x9e\x53\x48\x08\x2a\xa3\xd2\xcb\xfd\xe6\x05\xe2\x60\x2e\xac\xcb\x57\xd7\xb3\x50\x2f\x95\x13\x75\xd3\xb7\xdc\x82\xc0\x28\xbc\xc2\x95\x26\xe1\x16\x54\x47\x61\x0b\xae\xf4\x03\xb7\xcd\x91\xb1\xd6\xcb\x23\x22\x57\x4d\x06\x23\x88\x8a\xe6\xbd\x5a\x43\x54\x54\xf4\xcd\x29\x5d\x75\x7b\xec\xc4\x08\x1f\x5d\xa5\x81\x6e\x8f\xed\x63\x61\x61\x2b\x3a\xec\x6a\xdf\x9c\x3d\x56\x3f\x61\xc7\x5a\x07\xb7\x8a\x75\xaa\xf0\x4c\xad\x8f\x71\xab\x4c\x36\x9c\x46\x2b\x96\x62\xc2\x3f\x54\x58\x85\xd6\xf7\xe2\xde\x37\xf7\x0e\xeb\xf6\x0d\x74\x52\x78\x6f\xca\x93\x10\x1a\x9a\x62\xaa\x7c\x7d\x40\x4f\x15\xc7\x28\x55\xa6\x65\xc5\xac\x7d\x05\x14\x28\x9a\xdb\x84\x97\x62\xdd\xa1\x0f\xad\x1a\x11\x4b\x15\xc3\xf2\x1d\x5b\x14\xa2\xf1\x4d\x34\xbe\xd5\x1d\x98\xa3\xb0\xf4\x13\x5e\x7e\x15\x53\x22\x41\xf3\x54\xd2\x3c\x71\xb3\x11\x8c\x4e\xa5\x1f\x5a\xa9\x0c\x06\xd6\xac\xb4\x1b\xcb\xb0\x89\x51\x98\xd2\x21\xcc\xf2\xc8\x08\x39\x4a\xe7\x27\x0f\x2a\x91\x2a\xf3\x29\xcd\x9a\xbc\xe5\x20\x3f\xc7\x51\xc9\xa3\x06\x15\xce\x48\xc2\x12\xa9\x21\x13\x28\x2c\x8a\x84\x37\x51\xc3\x6e\x42\x78\xf7\x08\xd3\x9e\x46\xb5\x2a\x8c\x6b\x84\x63\x4d\x6b\xd1\x0c\x20\x5a\xe4\xd4\xb2\x52\x0f\x60\x57\x38\x9f\x08\xcb\x93\x36\x42\xf0\x4d\x98\x72\x08\x37\x8e\x06\x41\x48\xf8\x3e\x08\xc3\x87\x36\xa3\x23\x4c\xed\xe1\xe7\xf8\x12\x2f\x6e\x13\x79\x7e\xa1\xcb\xdf\x36\x2b\x38\x3a\xf9\x6a\xd8\x56\x9d\x20\x17\x0b\xb9\x7c\xb5\x74\xaf\xe2\x81\x20\xaa\xad\x54\xd3\x2e\xdc\x11\x1a\xd9\xea\x69\x4b\x73\xe5\x60\xcc\xa5\xd4\xac\xb6\x60\x3b\x08\xf5\x67\xa5\xec\xb3\x62\x6b\x4a\xc8\x3e\x2b\xf5\x9e\x11\x8b\x14\x6a\xcc\x02\x76\xeb\x0a\x7e\x91\x90\x53\x56\x4f\x97\x92\xc2\xdf\xac\xfc\xcd\x34\x16\x21\xb8\x20\x61\x2c\xb4\x8b\x57\xf7\x77\x1d\x82\x6c\x6f\x5c\x56\x94\x87\xdd\x03\x2c\x15\xac\x4e\x25\xab\xb3\x06\xd7\x44\x30\x37\xd5\xd3\x03\x82\x05\xa6\x4f\x6e\x15\x73\x84\xc6\xd2\x3e\xf8\x42\x06\x0a\xf1\xc8\x84\x09\xdd\x48\x21\x18\xd9\x77\x34\x6d\x08\x8d\x41\x8d\xc8\xad\x56\xaf\xf7\x5a\x4c\x73\xe4\xf8\x94\x3a\x7c\x57\xb0\x99\x85\x66\x9e\x52\x2c\x0f\xd2\x84\x90\xb2\xd3\x88\x1b\x1c\x77\x90\x38\x35\xb8\xab\x11\x77\x35\xca\xcd\x91\x9d\x23\xd1\xa2\x2b\xd1\xba\x2d\x94\xe2\x84\x44\xdc\xea\xb5\xac\xc5\xe2\x85\x30\x9c\x52\x11\xae\x30\xd5\xe9\x9d\x53\xca\xa1\x29\xff\xee\xe4\xb2\xd0\x1b\xf3\xce\xdf\x9d\xdc\x00\xa2\x60\xd5\xb8\xac\xcd\x15\xec\xd4\x75\xe4\x19\x1c\x8e\x84\x1c\xd8\x09\x5c\x88\x43\xe9\x61\xdd\xef\x81\x3f\x09\x75\x27\xa5\xac\x13\x68\x8d\x90\x6e\x52\x6a\x36\x0d\x2e\x09\x95\x26\x81\x93\x0d\x4c\x3a\x05\x0b\x55\x0f\x22\xa4\x98\x39\xe8\x89\xe8\x22\x78\xa7\xe3\xad\x9c\x88\x69\xf9\xa0\x2a\xf9\x92\x04\x42\x3f\xd5\x83\xf8\xe2\x24\x9e\x3c\xa4\x0d\x0f\xba\x87\x53\x31\x57\x21\x9c\xea\x41\x8e\x10\x23\x40\x3d\x51\x4c\x09\xb8\x6c\x4c\x56\xb2\x27\x70\x08\x3d\x48\x0e\xae\x60\xf5\xea\xe9\x9c\x1d\xb5\xbf\x95\x67\x8f\x92\x45\x4f\xd4\x2a\xda\x21\xe1\x2d\x58\xa8\x82\x85\xea\x77\xec\x61\xe8\x21\x92\x3f\x1b\xfd\x8c\xc5\x91\x87\x07\x72\x40\xd0\x83\xa2\xa6\xe7\xf0\x3c\x63\xb7\xc3\x4b\x28\x03\xe8\x8d\x07\x29\x90\x31\xb7\x8f\x8c\xeb\x37\x09\x06\x40\x99\x5e\x12\x0c\x45\x3d\xaa\x17\x45\x91\x37\xb2\x07\xaf\x21\x23\xa6\x97\xc2\xe2\x8d\xc7\xeb\xa8\x8a\xea\x65\x85\x7c\x63\x85\x74\x18\xa3\x7a\x11\x39\x81\xa1\xea\x08\x0c\xe8\x65\x4e\xbd\x31\xa7\xaa\x11\xfb\xa1\x9f\x0a\x30\xac\x1a\xf9\x29\x80\x97\x00\xbc\xaa\x58\x60\xdf\xcd\xd9\x37\x00\x77\x80\x92\x9a\xa4\x8d\xf3\x66\xd9\xe4\xeb\x9b\x51\x77\x89\x4e\xbc\xfa\x12\xea\x26\xc9\xf5\x8c\xe4\xba\x22\x6b\x21\x48\xa5\x9a\x80\xa7\x14\xfd\x9a\xc4\xe9\x49\x9c\x2e\x24\x17\x93\xdb\x9c\xf8\xc6\x66\xc2\x3e\xa3\x6b\x55\xf0\x39\x5b\xe3\xd3\x01\x48\xd2\xc4\xd3\x72\x50\xeb\x4c\x3e\xb2\x09\x42\x3d\x03\x16\xd4\x24\xfa\xcc\x49\x98\x77\xee\x28\xea\x51\x4d\x9c\x04\xd7\xe1\x92\x62\x71\xd2\x8c\xee\x8b\x76\x1a\x97\xc4\xe7\x38\x63\xc2\x34\x2c\xf4\xb5\x22\x07\xd5\x4a\xbb\xb8\x95\x83\x93\xc1\xc8\xcd\x31\x79\xd7\x8a\x9a\x53\x0b\x0f\x04\x34\x5b\xb5\x02\xaa\xd0\xc2\x2a\xa0\x87\xd1\x91\x16\x1f\x19\x98\x56\x1f\xb1\x01\xa3\x45\xbe\xb7\x10\x7b\x5f\xe4\x26\xab\x73\x64\x24\x48\x9d\x8d\x22\xad\xa8\x13\xb4\xb0\xf0\x39\x0f\x83\xd1\xb4\xa5\x95\x62\xdc\x44\x88\x15\xad\x58\x5a\xb0\x8f\x75\x71\xf1\x7c\x10\x0b\x79\x6a\x0f\xba\xab\x36\xd3\x7c\xa3\x80\xdc\x29\x95\x76\x90\xf6\xe2\xeb\x0a\x9c\x74\x31\xd8\x18\x44\xe6\x91\xbf\xb9\xe3\xdd\x6a\xc3\x14\xde\xd4\xb8\x9b\x57\xbc\x11\x95\x3d\x41\x55\xd2\x26\x61\xa1\xdb\xce\x31\xa5\x17\x4d\x70\xda\x0f\x8a\x20\x54\x06\xe7\x42\x84\x07\x0a\xed\x15\x3a\x94\x3a\xac\x7b\xf4\x3d\x5d\x18\xb7\xe9\x90\x2a\x82\xba\x94\x52\x73\x50\x0c\xfa\xf7\x23\xf9\x64\x92\x35\xf9\x79\x24\x95\xd6\x99\xf9\x37\x63\xce\xd3\xad\xa3\xc3\x6e\x2c\x9c\x72\x1d\x52\xc5\xc3\xd6\x3c\xee\xf0\x02\xd4\xd0\x61\xe3\x55\xe1\x34\x20\x5a\x78\x44\xef\xce\x25\x5e\x31\x2d\x3c\x02\xf0\xb8\xc4\xa4\x3d\x81\x18\x0a\xdc\xe3\x92\x73\x24\x05\xe5\x39\xd9\x2b\x1d\xda\x7e\x34\xed\xf8\x67\xd3\x0e\x72\xc5\x70\x36\x3d\x39\x9b\xb4\x49\x3a\xda\x46\x7e\x65\xeb\x25\xba\xf0\x30\x38\x1d\xd8\x24\xbb\x41\x1d\x7a\xa6\x5f\x25\xf7\x97\x19\x34\x6a\x39\xfb\xd6\xe6\xe1\x00\x25\x7e\xe5\x26\x7e\x0e\x06\x0e\xe1\x89\x43\xa4\x45\xfd\x9d\xf1\x77\x97\xaf\x27\xef\x25\x82\x87\x97\xbb\x7e\x3d\x79\x2f\xc4\xc8\x02\x69\xe4\xf3\x48\x76\x1b\xff\x9f\x55\xc8\x60\xe0\x2c\x5e\x1c\xb1\x27\xf4\xc8\x29\xad\xbd\x90\xf2\x1d\xac\x98\x0a\x3a\x4b\x85\x0c\xe7\xbc\x39\x98\x31\x3d\xdf\x74\x5c\x7c\x41\x67\xa9\xb0\x13\x49\x63\x80\xc3\x31\x74\x38\x86\x4e\x77\x90\x97\xc1\x6c\x0d\x18\xc3\x2f\x04\x37\xcb\xe0\x3a\x23\x2e\xf9\x85\x3a\x2f\x85\xbd\xd3\xc3\xe1\x17\x3e\x36\x88\x98\x79\x41\xad\x09\xda\x9b\x97\x87\x13\x45\xfe\xe4\xe9\x97\x59\x02\xf2\x73\x28\x8a\x7e\xe3\x6b\x07\x45\xd1\x4b\x60\x7d\x7e\xe3\xa2\x58\x26\x3f\x8f\xcf\xde\x01\x7b\x1c\xa6\xa1\x17\x8a\xbe\x54\xc8\x47\xaf\xcc\xd1\x11\x72\xcb\xbf\x19\xc1\xdf\x91\x2d\x73\x43\xca\xb8\x1c\x7e\x8e\x78\x92\xa1\xc9\x59\x0e\x47\x1e\x8e\xc4\xb2\x81\x26\x13\xa7\xc9\xc4\x85\x0d\x29\x1a\x43\x6e\x91\x50\xb8\xe3\x31\x40\xeb\x88\x1b\x32\x4b\x8e\x43\xb0\xa1\xaf\x64\x85\x23\x91\xde\x85\xc4\xe8\x16\x61\x34\xbc\xd4\x63\x90\x6b\x31\xb6\xa5\x11\xb8\x05\xb1\x70\x13\x47\xe2\x29\x61\x11\x82\xdc\xc4\xb6\xf4\x95\x47\x3e\x0c\x82\x19\x20\xa9\x0f\xa8\xe1\x56\xb3\xd8\xe7\xec\x68\x76\x59\x80\x67\x61\x34\x11\x83\x3c\xb3\x46\x5d\x8f\x9b\x98\xa1\xd9\x05\xee\xe1\xe9\x55\x6e\x0f\x97\x14\x7b\xab\xfe\x20\x61\x6d\x28\x71\x19\xea\x57\x2f\x1e\x32\x50\x2f\x1d\xce\xa5\xbf\x4f\xff\x5d\x42\xe1\x16\xa5\xac\x5b\x2c\x79\xfe\x62\xe0\x46\x5f\x89\x5b\xd4\x2b\xfe\x22\xd4\x0e\x67\xd3\xe1\x6c\xfa\xe4\x2b\x31\x24\xb5\x2c\x00\x59\x9f\x68\x9d\x5a\x14\x69\x6e\xb1\x0e\xfa\x42\x65\x9e\x16\x12\xa7\x85\xc4\x17\xa6\x0d\x46\xeb\x01\x8d\x21\x9e\x5e\xbf\x8a\xd8\xec\x40\x32\x7e\x98\x3e\x09\xc2\xc0\xbd\xf4\xc3\xd9\xc5\x6c\x40\x23\xce\x0f\xaa\xd5\xa2\x49\x41\xb1\x45\xeb\x69\x65\x02\xbf\xd2\xe1\x57\xd6\x0b\xad\xd3\xc4\x59\x00\x58\x2a\xda\x6b\x9e\x38\x8b\x22\x3e\xd5\x8c\x8e\x8a\xec\xd4\x15\xd5\x52\xbd\x91\x53\x57\x14\x4d\xae\x58\x89\xea\xcd\x87\x2b\x62\x89\x1c\x9d\xac\x99\x47\x72\x47\xb1\xa9\x57\xd3\xfa\x15\xb4\xc6\x41\x6b\xea\x8d\xd4\xb3\x98\x37\x8a\xea\xa3\x16\x34\x90\xd5\xb8\xf7\x86\xa2\x16\x5f\x9e\x68\x7c\x50\xac\x75\xb5\xe0\xed\x22\x7a\x1c\x14\x31\xa1\x0a\xe7\x30\x48\x97\xae\x58\xd9\xab\x63\x32\x20\x42\x83\x62\x37\xa0\x3a\x32\xb1\x88\x59\xb9\xc0\x35\xfc\xf0\x90\x91\x52\xd3\x44\x66\x0b\xd9\x5d\x4d\x4e\x14\x99\x72\x25\xe5\x74\x60\x21\x87\xb3\x59\xd3\x78\x51\x8b\x87\x0c\x02\x52\x71\x9b\x14\xa1\x01\x11\xac\x9a\x32\xf3\x10\x39\x1d\x11\xac\xda\x71\x58\xf5\x2b\x3f\xf8\x00\x7a\x3a\xe1\xcd\x23\x0b\x76\x8f\x08\x5f\x47\x1e\x19\x49\x83\x7b\xa1\xd5\x01\xa9\x62\x4f\x6d\x39\xde\xfb\xf3\xe6\x91\x9b\x41\xa4\xbb\x78\x74\x0e\x12\xe7\x51\x4f\xd7\x07\x0d\x5f\x27\x42\xb8\x21\xdd\x85\x01\xba\x13\x1a\x5c\x64\xac\xc4\x66\x27\x34\xb8\x38\x12\x43\x22\x98\xa6\xee\x11\x21\xea\x8b\xb6\xbe\xb3\x04\xb9\x12\xfd\x89\x69\x03\x74\xe5\x10\x4e\x6b\xea\x48\x3b\x58\xa8\x47\x65\x59\x37\xf6\x94\x90\x43\xdd\x3b\x40\x0f\x4e\x44\x4e\x14\x77\x7c\xc6\xd3\xc7\xc5\x89\x10\x9e\xdd\x17\xbc\x77\x9f\x1c\x49\x1a\x9b\x6e\x29\x3e\x39\x92\xee\x8b\x92\xf7\xce\x87\xee\x11\xf6\x9b\x21\xa0\x8e\xc4\x98\xa7\xc4\x98\xa1\xd3\xeb\x2c\x02\xc0\x5a\x2d\x4d\x5f\xa1\x75\xba\xc7\x16\x6d\x13\x81\xa5\x06\x1c\xe8\xc0\x5a\xcd\xd3\x91\x3c\x32\x09\x07\xcf\x6a\x15\x75\xfb\x1a\x6b\xb9\xd7\x1b\x3d\xaf\x8e\xab\x33\x8b\x00\xcc\xcf\x56\x79\xc8\x95\xe8\x5f\x23\x91\x6c\xed\xc6\xc3\x9a\x45\x00\xe4\xab\x35\xbe\x77\x90\x2f\x07\xf9\x6a\x0d\x19\xe3\x2a\xce\x1e\xba\x5c\x2d\x8d\x14\x2b\x91\xba\x46\x71\xd9\x9e\x4f\x2b\x7f\x2e\x9e\x02\xe2\x4d\x4b\x71\x24\x09\x53\xa1\xec\xc5\xe1\x02\xf5\x48\x47\x3d\xb2\xbd\x27\x5d\xf4\xb9\xa4\x01\x78\x94\xfe\xd6\x7c\xb0\xa8\x97\xb5\x99\xf7\x4e\x30\xae\xf1\xaa\xda\x9a\xe9\x95\xce\x91\x13\x44\x29\x4d\xb6\x59\x93\xc1\xcf\x5a\x9a\x62\x55\x44\x0b\x6b\x04\xdc\x7e\xa1\x15\xdd\xf8\x8e\x1a\xfe\x78\x6c\x3e\x39\x22\x66\x51\x1c\x86\x9d\x73\x0e\xd2\x66\x85\xb7\x5c\x49\xfb\xd4\xc2\xca\x87\xe7\x1b\x0d\x60\xde\xf8\xe2\x1a\x66\x6f\x96\xee\x83\x7c\x47\x80\x6a\xdd\x3e\x7d\x84\xa9\x42\x13\x7b\x42\x96\x1d\xa6\xa9\xb7\xc4\x9e\x66\xfa\xec\x3a\x83\x51\xa9\xf8\x95\x46\xb9\xd4\xab\x78\x7f\x79\x5a\x5f\x56\x8e\xc4\xf4\xcb\x59\x65\xe8\xa4\x73\x78\xa7\xdd\x31\xe7\x69\x8d\xdb\xc4\x5a\xab\xa6\x23\x65\xe7\x48\x5c\xb4\x2a\xee\x19\xb0\x50\xbd\x61\x98\x55\xd3\x55\x33\x0a\x24\x87\x77\xda\x6b\x1a\x37\x92\x99\x35\xf6\x5a\x1a\xf1\x13\xd4\xcf\x5b\x74\x94\xf7\xd6\xd3\xcc\x93\x07\x12\xf1\xb3\x77\xa5\xab\x26\x3f\x8f\xce\xcd\xde\x67\xda\x54\xf2\xf3\x78\xa9\x7d\xdc\xe9\x1e\xc9\x43\xc6\xe8\x3d\x3d\x1c\x68\xe7\x73\xda\xf9\x7a\x9a\x29\xd0\xce\xe7\xb4\xf3\xf5\xa7\xa4\x91\x22\x1b\x0c\x38\x99\x3f\xe9\xae\x73\x91\x88\x60\x61\xfe\xa4\xc9\x0e\x49\x34\x1a\x6f\x1d\x99\x25\xef\xf1\xad\x78\xc7\x1f\x7b\xd6\xbf\x6c\x81\x78\xff\x6b\x3e\x81\xe2\x9b\xf7\x98\x05\x7d\xa6\x53\x13\xd9\x57\xc7\x2d\x7b\xa6\x3d\x55\x04\x55\xa7\x8b\xb0\xcf\xb4\x77\xa3\xf1\xaf\xe3\xe0\x4c\x9b\xa3\xf7\x58\x37\xbd\x63\xcf\xbc\xd3\x91\xc8\xc9\xb0\xf0\x5e\xde\xe9\x26\x58\xb9\x5b\x6c\x96\x77\x9a\xee\x91\xc9\x77\xd4\xcb\x76\x9a\x3a\x92\x92\x75\x26\xca\x41\xe2\x9f\x9e\x42\x4f\x2d\xba\x93\xde\x5f\x24\x68\x1d\xc3\x62\x5a\xa9\x1c\x28\xd3\x13\xca\x3c\x79\x76\x64\x54\x3b\x46\x12\x57\x9a\xbd\x91\xec\x77\x1c\x24\xae\x74\xbf\x23\x16\x74\xd4\xc0\xae\x74\x86\xa2\xed\x10\xec\x73\x40\xfa\xf0\x6c\x3b\xec\x18\x26\xdc\xf9\x56\x5e\x9e\x12\xde\x08\xf7\x4e\x33\x2e\x76\x8d\x30\x34\x28\xf9\xe8\xd8\xcc\xe9\x78\x17\x14\x92\xcc\xce\x8c\x04\x4f\x1d\x25\x9d\xa1\x58\x18\x3a\xe2\x2d\x25\x0d\xa2\x48\x04\x3b\xe6\x03\x25\x0d\xcf\x26\x17\x8f\xeb\x40\x21\x47\xed\x93\xdb\xc4\x52\xa0\xa4\xfb\x27\x4b\x48\xa7\x41\x8a\xbd\x02\x87\xbc\xec\x1d\xa3\x00\x64\x9d\xbc\x93\x2b\xc2\x61\x1e\x25\x7d\xf9\x28\x0b\x3a\xaa\x65\x69\xb2\x0e\xe0\xeb\x83\xca\xdd\xd2\x91\x83\x7d\xbb\x81\xec\x7c\x00\x69\x7f\x73\x1a\x29\x7d\xc4\x96\xee\xf0\xf4\x3b\x61\x0d\x18\x31\xaf\x47\x2d\xc8\xf1\x47\x26\xe0\xf4\x5a\x8e\x5c\x81\x46\x44\x30\x1f\x31\x77\x47\x65\x09\x19\xac\xfd\x23\xd6\xfe\xd1\x5a\x7a\xe7\x90\xc2\x47\x90\x1b\x2d\xcf\xce\x4c\x46\x36\x70\xb4\xf4\x6d\x68\xb9\x5f\x87\x3c\xda\x4e\xbb\x14\x7e\x4e\xbf\xda\x60\xb5\x00\x55\xf6\x44\x95\x47\xda\x7b\xa0\xfd\x0a\xb8\x3c\x9e\x74\xaf\x61\x2e\xd1\x95\x39\x9e\x93\x86\x25\x9b\xc1\xc3\x20\x7e\x01\x14\x8e\x03\x6b\xbb\x37\x2d\x58\x28\x1c\x07\xde\x74\x6f\xde\x3b\x6d\xb1\x03\xaf\xb9\x37\xef\x9d\xa2\x72\x60\x2b\xf7\xd6\xf4\xb3\xe0\x79\xd2\x18\xb7\xd2\x9e\x85\x52\x61\x2c\xa0\x56\xcf\xc1\xc6\x60\xcc\xa5\x95\x7e\x5d\x8b\x07\x12\x73\x62\xac\xf4\x22\xda\x5c\x27\x0e\x6b\x69\x3b\x39\x58\xd5\x80\xb5\xc7\xbe\xd3\x0b\x82\xb3\xe3\x7f\xb6\xd3\x90\x82\x12\x73\x60\x44\xb6\x77\x3a\x20\x50\x3c\xe1\x01\x76\x94\x16\x06\x8b\xc1\x78\xf2\x67\xfc\xa5\x63\x6c\xff\xb1\xe6\x3f\x9e\x9f\xff\xf1\x5f\xff\xfd\xfc\xfc\x9f\xe7\x1f\xfb\xc7\xfc\xf7\xaf\x5f\xfb\x8f\x7f\xad\xbf\xcf\x7f\xfd\xf8\xcf\x8f\xd1\x1f\x6b\x9f\xbf\xff\xb1\x7f\xed\xff\xfd\xe7\xbf\x7f\xcd\xfd\xe3\xe7\x3f\x7f\x7e\xfc\x2a\xfe\xfd\x5f\x00\x00\x00\xff\xff\xed\x09\xe5\x3d\xde\x4c\x04\x00"); -func _cefa ()([]byte ,error ){return _dc (_acfc ,"HKgccs-B5-V")};var _eebb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x2c\xde\x6b\x69\xfa\x0f\x4a\x17\x8e\x35\x0e\x86\x46\x36\x8e\xb3\xc8\xb7\x2f\xe7\x1e\x3b\x85\x2e\x82\xa3\x13\xe9\x4a\xf9\x1d\x8f\xe6\xe6\xee\xe1\xfe\x61\xdd\x9f\xd3\xcd\xcf\xa7\xc3\xf6\xb1\x9f\xd3\x6e\xbf\x2e\xa7\xfe\x7a\x78\x3b\x6d\x7b\x7a\xea\xcf\xfb\x75\x18\x44\xd3\xb2\xdf\x9e\xaf\x87\xf1\xb1\x7d\xd9\x1c\x87\x01\xd7\x3f\xbe\xbf\x9e\xfb\xcb\xc3\xba\x3b\x24\xe3\x79\xcb\xdb\xf1\x72\x6e\x4a\x37\xbf\xf4\xe7\xfd\xeb\xf9\xf4\x9e\x3e\x7d\x59\x0e\x4f\xfd\x87\xb4\xf4\x1d\xf2\x9f\x4e\x4b\x3f\xed\xd7\xe7\xf4\xe9\xee\xfb\xa3\x7c\xc4\x8f\x6f\xc7\xe3\x3f\xfd\xa5\xaf\xe7\x54\x23\xeb\xeb\x12\x9f\xc3\xcd\xdd\xb7\xcd\xf1\xfb\xe6\xa5\xa7\x9b\x98\xf4\x19\xd7\x7d\xe6\x49\xf1\xb7\xdf\xfb\xe9\x75\x7f\x58\x93\xfc\x98\xb3\xfd\x17\xff\xfa\x7e\xec\x49\x2e\x33\xfe\xfc\xed\xe1\x3e\xfd\x25\x49\x72\xd2\x52\xa6\xe9\xef\x4b\xfe\xc7\xb7\xc3\xd2\x53\xbe\xde\xe9\xe1\xfe\xee\xf0\xb6\x9e\x93\x4c\x52\x78\x87\x41\xf8\x2f\x6d\x0f\x4b\x7f\x3d\x6e\xb6\xfd\xb4\x59\x9f\xfb\x90\xd2\x9c\x73\xce\xb7\x69\xf6\x2f\x5f\xbf\xde\xe2\x69\xff\x77\xc6\x30\x96\xcb\x95\xfb\x85\xc9\xf5\x8a\x9c\x77\xbb\xdb\x94\x87\x39\x0b\x8f\x05\xc7\x5a\xea\x30\x67\x65\xa2\x48\x8a\xe8\x30\x67\x63\x62\x48\xc6\xda\x86\x39\x3b\x13\x47\x22\x59\x7d\x98\x73\x61\x54\x22\xd2\x86\xd9\x95\x51\x8d\xa8\x18\x86\x8f\x8c\xc6\x88\xc6\x09\xd3\x1b\xa3\x16\x4f\x90\x1d\xe3\x27\x46\x53\x44\x96\x31\x7e\xc3\x68\x73\x79\x4e\x8c\x7f\x62\xf4\x14\x51\x13\x8c\xdf\x32\xda\x22\xb2\x3c\x62\xfc\xc2\x68\x89\xc8\x14\xe3\x3b\xa3\x1e\x51\x69\x18\xbf\x63\xb4\x8b\xa8\x79\x1e\x66\xa1\x94\x84\x94\xe7\xa9\x0e\xb3\x10\x4b\x02\xcb\xad\xe8\x30\x0b\xb5\x24\xb4\xbc\xe6\x36\xcc\x42\x2e\x09\x2e\x6f\xd5\x87\x59\xe8\x25\x7e\x31\xc5\x78\x7a\x49\x78\x15\x1b\x31\x9e\x5e\x12\x5e\xa5\x1a\xc6\xd3\x4b\xc2\xab\xb4\x86\xf1\xf4\x92\xf0\xaa\xe2\x18\x4f\x2f\x09\xaf\xea\x19\xe3\xe9\x25\xe1\x55\x2b\x8a\x15\x7a\x49\x78\xd5\x09\xcd\x0a\xbd\x24\xbc\x46\x41\xb5\x42\x2f\x09\xaf\xd1\x51\xad\xd0\x4b\xfa\xa5\x7f\x8c\xa7\x97\x84\xd7\x38\xa1\x5a\xa5\x97\x86\x57\x13\x54\xab\xf4\xd2\xf0\x6a\x8e\x6a\x95\x5e\x1a\x5e\x6d\x44\xb5\x4a\x2f\x0d\xaf\x36\xa1\x5a\xa5\x97\x86\xd7\xa4\xa8\x56\xe9\xa5\xe1\x35\x39\xaa\x55\x7a\x69\x78\x4d\x23\xaa\x55\x7a\x69\x78\x4d\x13\xaa\x55\x7a\x69\xbb\x7e\x57\x31\x9f\x60\x3a\x31\x73\x94\xab\x14\xd3\x0d\xb3\x11\xed\x2a\xc9\x34\xc8\xd0\x3e\x6e\x41\x33\xdd\x32\x53\xf4\xab\x44\xd3\x85\x59\x41\xc1\x4a\x35\xed\xcc\x46\x34\xac\x64\xd3\x1d\x17\x49\x46\xc5\x46\x37\xcb\xcc\x14\x1d\x1b\xe1\x4c\x98\x15\x94\x6c\x94\x33\xbd\x2e\xb0\x3c\xcc\x46\x3a\x0b\x3a\xb1\x8c\x9a\x8d\x76\xc6\xb5\x69\x86\x9e\x8d\x78\xc6\xc5\x69\x05\x45\x1b\xf5\x8c\xab\xd3\x1a\x9a\x36\xf2\x19\x97\xa7\x67\x54\x6d\xf4\x33\xfa\xb9\xa1\x6b\xa3\x9f\xd1\xcf\x0b\xca\x36\xfa\x19\xfd\xbc\xa1\x6d\xa3\x9f\xd1\xaf\x08\xea\x36\xfa\xd9\xf6\xfa\x56\xc0\x3d\xe8\x67\xf4\x2b\x15\x85\x1b\xfd\x8c\x7e\xa5\xa1\x71\xa3\x9f\xd1\xaf\x0a\x2a\xf7\xcb\x3b\x90\x7e\xd5\xd0\xb9\xd3\xcf\xe9\x57\x2b\x3a\x77\xfa\x39\xfd\x6a\x43\xe7\x4e\x3f\xa7\xdf\x28\xe8\xdc\xe9\xe7\xf4\x1b\x1d\x9d\x3b\xfd\x9c\x7e\x63\x45\xe7\x4e\x3f\xaf\xd7\x57\x19\xee\x41\x3f\xa7\x5f\x13\x74\xee\xf4\x73\xfa\x35\x47\xe7\x4e\x3f\xa7\x5f\xab\xe8\xdc\xe9\xe7\x9b\xc5\x90\x4d\xee\xf1\x46\xbf\xbe\xb9\xf1\x3b\xf6\xbd\x8f\x9d\x68\xfb\x76\x3a\xf5\xf5\x1c\xbb\x5e\x6c\x36\xd8\x2b\xf6\x6b\xff\xd8\x41\x8f\x87\x23\xae\x8a\x9f\x7f\x03\x00\x00\xff\xff\xd8\xa1\x1c\x9d\x6d\x07\x00\x00"); -func _cace ()([]byte ,error ){return _dc (_daff ,"Ext-H")};func _fcad ()([]byte ,error ){return _dc (_gacbb ,"WP-Symbol")};var _dfea =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4b\xaf\x6d\x39\x72\x26\x36\xcf\x5f\x71\x86\xed\x41\x5b\x8b\x6f\x06\x90\xb8\x80\x55\xea\x82\x35\x68\xd9\x70\xb5\x6c\x03\x86\x07\xe4\xde\x6b\xcb\x05\x58\x59\x85\xaa\xd2\x40\xff\xde\xe0\xf7\x58\x29\x18\x0d\x9c\xbc\x93\x7b\x62\x93\x8b\xcf\x60\x30\x18\xf1\x31\xf8\x77\xbf\xfb\xc7\x7f\xf8\xc7\x5f\xfe\xf8\xb7\xaf\xbf\xfb\x5f\xff\xf2\xa7\xd7\x1f\xee\xbf\x7d\x7d\xfe\xf8\xcb\xfb\x2f\xf7\x5f\xff\xf4\x6f\x7f\x79\xdd\x5f\xfb\xfe\x97\x3f\xfe\xf2\xd3\x4f\x29\x7f\xbd\xff\xf8\xfa\x9b\x49\xfc\xf7\xfa\xd7\xf5\xe7\x9f\x7e\x3a\xdf\xff\xe1\xdf\xff\xfa\xb7\xfb\x5f\xff\xf1\x97\xcf\x9f\xbe\x0a\xf3\xbd\xff\xed\xcf\xca\xfb\xf5\xf5\x77\xff\xdb\xfd\x2f\x7f\xfc\xeb\xdf\xfe\xf2\xef\x5f\xff\xe9\x7f\x7a\xff\x69\xdf\xff\xc3\xd7\xfb\xfe\x9c\xdf\xff\x97\xbf\xbc\xef\xbf\xfc\xf1\x97\x7f\xf9\xfa\x4f\xbf\xfb\xa7\x3f\xa4\xe7\xe7\x3f\xfc\xdb\x9f\xff\xfc\xff\xde\xff\x7a\xff\xf2\xb7\xaf\x81\xdf\xee\x5f\xde\xf8\xff\xa7\xbf\xfb\xdd\x7f\x5d\x7f\xfe\xa7\xf5\xaf\xf7\xd7\xdf\xfd\xf3\x2f\x7f\xfc\xdd\x3f\xfd\xe1\x3f\xff\xf3\x7f\xfb\xfd\xfc\xcf\xff\x33\x52\x91\xf8\xbf\xdf\x7f\xf9\xeb\x1f\xff\xf4\xcb\x57\x2a\xff\xe3\x95\xe2\xd7\xdf\xff\xdb\xbf\xff\xf9\xfe\x4a\x2a\xe5\xff\xfc\xe7\x7f\xfc\x87\xaf\xff\x2b\x7d\xa5\xeb\x2b\xb7\x12\xe3\xff\xd6\xef\xff\xc7\x7f\xfd\xd3\xfb\xfe\xba\x48\x55\xb6\xff\xf5\xa7\xf7\xfd\xd7\x3f\xaf\xd7\xfd\x97\xf5\xcb\xbf\xdc\x3f\x7d\x7d\xfd\x7c\x5d\x3f\xbe\xf8\xef\xe7\xf1\xfb\x1f\xe7\x97\xdf\x5d\x53\xbf\xfd\xfc\x0f\xbf\xff\x7b\xfe\xf6\x5f\xae\xa9\x5f\x7f\xfe\x2f\xbf\xff\x7b\xff\xfa\x7b\xfc\x7a\x7e\xff\xf9\xf7\xe3\xef\xf5\xfb\xfd\xcb\xfb\xff\x57\xcb\x4f\x89\x95\xff\xf2\xa7\xbf\xbd\xef\x0f\x7f\x43\xbd\x3f\xa7\xcf\x8f\xaf\x74\xbe\xf8\x8f\x49\x3f\xa5\xeb\x52\x6b\xff\xf8\x7e\xfd\x3f\xeb\x2f\x3f\xfd\xfc\xca\xeb\x3a\x39\xcf\x1f\xed\xc7\x57\xee\x17\xfe\x1c\x3f\xbe\xd2\x98\xf8\x73\xfe\xf8\x4a\x65\xd4\x01\x22\x7e\x7c\x45\xc7\x5f\xaf\x1f\x5f\xa9\x5e\x35\x40\x9c\xca\xa2\x9d\x3f\xf7\xf5\xe3\x2b\x4f\x14\xb2\xd3\x8f\xaf\x9c\x32\xfe\x3c\xe5\xa5\x93\xa1\x9c\x3e\xa5\x39\xe6\x04\x91\x48\x74\x10\x13\x44\x64\x10\x41\xe2\x02\xb1\x0e\x31\xaf\xd3\xcc\x12\x99\x29\xf8\x26\x0a\x89\x0a\x62\x9c\x0a\xf1\x05\x3a\x35\xe7\x85\x2a\x57\x22\x51\x40\xa0\x96\xa9\x6c\xc1\x14\x34\x66\xb1\x96\x82\xfa\xd1\xbf\x39\x13\x0a\x5e\x6f\x12\x48\xd9\x99\x04\xbe\xd9\x85\x04\x1a\xb3\x51\x3f\x1a\xb9\x59\x4b\x45\x2d\x9b\xb5\x64\x7e\xce\x5a\x32\x53\x58\x4b\x3e\x83\x5b\x3d\x32\x0d\x84\xda\x7c\xbe\xa9\xea\xf2\x0c\x10\xac\xf2\xc2\x37\xb1\xd8\xff\x04\x62\x33\x05\xd9\x16\x09\x34\xa7\x4d\x12\x95\xc4\x8b\xdf\x14\x10\xea\xda\xa9\xb4\xa9\xe8\x72\x0a\x68\x2e\xe0\x10\x83\xd9\xc6\x1c\x20\x6e\xd6\x73\xc6\x66\x04\x47\x3a\x15\x10\x9c\x4f\xb0\xc2\x08\x0d\x14\xbe\x89\xca\x9e\x26\x10\x9d\x04\xbf\xe1\x50\x65\x96\xa6\xd1\x61\x01\x1a\x9d\x33\xb8\xa1\x7a\x4a\x03\xa1\xd1\x61\x0a\x8b\x2e\x03\x04\x5b\x5d\x90\xa2\x89\x2f\x05\x04\x8b\xae\x20\x76\x63\xca\x99\xc4\x35\xd5\xed\x0a\x42\xd9\xce\xc0\xef\xd9\xc9\xfc\x13\xc4\xf8\xf1\xd5\xd0\xe9\x7d\x32\x35\xf0\xd3\x3e\x43\xdb\xc0\x67\x1b\x83\x14\xc8\x1b\x71\x7e\x3d\x65\xbc\x66\xf5\xe2\x78\xcd\xff\xb0\x96\x5e\x67\x1a\x50\xdc\xfb\xc2\x64\x97\x38\x8d\x7e\xa7\x20\xd1\xe3\xa7\x9f\xef\xb4\xd7\xbe\x39\xa4\x53\xe4\x87\x63\xc2\xd4\x3d\xc5\xe7\x97\x48\x75\x38\xfd\xf4\xf3\x9d\xe7\x35\xcf\x0c\x94\x7e\x9a\x7f\x48\x4c\x6f\x56\x1a\x46\xed\xcc\xc0\x21\xd6\xc9\x78\xda\x02\xe2\x8c\x4d\x52\xb6\x75\x46\xe0\x2c\x16\x10\xe3\x3f\x64\xc3\x3a\x18\x2a\x00\xe3\x39\xb2\x88\x33\x07\x63\x88\xb8\xd5\xfd\x3b\x4f\x4a\x8d\xd1\x2f\x16\x5e\xcf\xc0\xe7\xde\x45\x9c\x22\xa2\x8a\x88\x93\xc2\x22\x2a\xd8\xa5\x5e\x4d\x69\x98\xd5\x7a\xb5\x26\x32\xff\xf8\x0a\xe6\xec\x87\x49\xb2\xba\xdb\xcf\x40\xe6\xda\x44\xe4\x43\x38\xdb\xa9\xb7\x76\x08\x54\x09\xc2\xff\x8e\x68\x44\xce\xf9\xe3\x2b\xb7\x2c\xe2\x34\xaa\xb1\xed\x03\x63\x51\x22\xd8\xfa\x19\x47\x78\xb6\x21\x62\x1d\x41\x50\x44\xdc\x3f\xbe\x72\xbe\x44\x7c\x7e\x7c\xe5\xa2\x94\x23\xa4\x72\xc9\x22\x4e\x9b\xd4\xc5\x09\x51\xdc\x9c\x6d\x9f\x6c\x2a\x7a\x9d\xd2\x0a\x7b\x38\x77\x3d\xfd\x50\xd1\x67\x0a\xf2\x59\xba\x20\x5e\xa7\x52\x66\x0b\xf4\x5d\xf3\x1e\xa8\x34\x85\x88\x33\x44\x99\x2d\x58\xe8\x42\x2d\x22\x4e\x5f\x2b\x9b\xb3\xd0\x1c\x31\x15\x38\x30\x17\xa6\x6c\x48\x7e\xb2\x47\x5c\xa7\xb4\xc6\x19\x0c\x48\xb3\x42\x2e\x8a\x7a\x18\xb1\xa4\x2c\xe2\x75\x08\x65\x0b\x64\x6b\x22\xea\x21\xba\x88\x79\x88\x21\xe2\x7c\x73\x05\x89\x75\xb2\x5d\x53\x04\x52\x94\x6d\x23\x45\x05\x6c\xa4\xb0\xe8\x06\xf1\x51\xaf\x48\x22\xc9\x43\x71\x89\xcc\x20\xc9\xc0\x41\x39\x58\xaf\xe9\xcc\x15\x64\x2f\x22\x1b\x33\x57\x91\xe4\xce\xe9\xd4\xc1\xcc\xae\x77\x32\xf3\x14\x19\xcc\x3c\x44\x2e\x66\x0e\x91\x9b\xa9\x6e\x15\xf7\xd8\xe9\xd4\x37\x8b\x72\xab\x6e\x92\xae\xe8\xc3\xcc\x6a\xd5\x62\x7f\xb9\xb8\xa2\x69\xcd\x0c\xd5\xbb\xd8\xdf\xe9\x54\xf6\xb7\xab\x91\x8b\xfd\x1d\xea\xd1\x62\x7f\xa7\x06\x67\xb1\xbf\xdd\x15\xb1\xbf\x43\x8d\x5c\xec\xef\x74\x51\xec\xef\x50\x8f\x16\xfb\x3b\x5c\xaf\xfa\xab\x2e\x48\xa7\xe8\x6e\xe4\xe7\xc7\x57\xc9\xea\xed\xd1\x2b\x4a\x56\x31\x67\x9a\x8f\x1c\x65\x13\xfa\x11\x16\xe5\x32\xb1\x0e\x51\x44\xec\x43\x64\x11\xe0\x87\x24\xe2\x7d\x88\x4b\xc4\x59\x54\x11\x22\x0e\x7f\x07\xdb\xdf\xc5\x09\x5c\xe5\xd1\xc9\xa0\xfa\xea\xf0\x41\x49\xaa\x09\xe3\x2d\x76\xea\xdc\x77\x54\x1e\xf5\x05\x65\xa3\xbe\xa0\x06\x61\xf7\x0f\x13\xd8\x3c\xd8\xba\x31\xb9\x41\x8a\x18\xd8\x01\x44\x60\x7f\xbb\x44\x60\x6f\xa8\x22\xb0\x33\xa8\x00\x2c\x91\x1c\x22\x4e\x43\x29\x0c\x62\x42\xcc\x6a\xe2\x27\xeb\x69\x22\x7e\x5d\xf2\x11\x13\x92\x34\x89\x48\x8f\x64\x88\x98\x90\xa4\x6c\xf5\x0b\xad\x2e\xa3\xa3\x41\x7b\x61\x3b\x1a\x9d\x6b\x73\x2f\x6c\x7d\xa3\xb3\x8b\x9b\x5b\xeb\xe8\xf1\xbd\xe0\xdd\x10\x46\x27\x6f\x88\xc4\xc6\x31\x2e\xd5\x13\xd4\x5a\x6a\x27\x09\x0e\x1d\x83\x73\xbb\x17\xb5\xd7\x71\xa9\x5a\x30\xdd\x18\xe4\x89\xbd\x96\x8a\xaa\x22\x6f\x92\x8d\xe4\xee\x24\x55\xf2\x56\xe6\x21\x52\x99\xd9\xbf\xad\x69\xe2\xb6\xb2\xf7\x54\x45\x21\xf2\x03\x92\x62\x6f\xef\xe0\xb7\x94\x75\x7b\x2f\x2a\x1d\xdc\xac\xf6\xeb\x8c\x5c\xe3\x36\xb9\xa1\x32\x34\xf2\xdc\x7e\x9d\x09\x6b\x94\xeb\xfb\x75\x6a\xec\xea\xd8\x0b\x0a\x09\xc5\xff\x7e\x9d\xda\xba\xda\xf9\x0a\x94\x16\x2a\xfb\x08\x3b\xcf\xc9\xeb\x88\xba\x9e\xf4\xd1\x61\xef\xc6\x29\xdf\xaf\xc3\xdc\x9d\x12\x7b\xbf\xce\xf8\xb7\xd0\xf0\xbf\x8e\x8c\x6b\x55\xad\x83\x6e\xa3\xa1\x7f\x1d\x09\xd6\xaf\xcb\xe5\x1d\x65\xa8\xba\x11\xaf\x53\x9e\x0b\x7f\xff\xf8\xea\xdc\xf8\xf6\xeb\x0c\x45\xbf\x34\xe4\x2f\xac\x96\xd1\x8b\x7a\x75\x64\x53\xf3\xb0\x2c\x74\x51\xad\x38\x33\xd7\x2f\x4d\xcd\xeb\x28\xe5\xdd\xcd\x38\xb3\xd8\x9a\x5a\x71\xf4\x8f\x7e\x69\x2c\xde\x67\x64\x47\x6e\x22\xce\x16\xd5\xba\x88\xd3\xab\xe6\x6c\x68\x53\x56\xd2\x19\x98\x7e\x71\xcd\xec\xf7\xe9\x71\xbf\xb8\x9c\xf6\xfb\x70\xdb\xec\x59\x44\x3f\x84\xbe\xda\x18\xe8\x87\x3a\x5f\x25\x65\xbc\xcf\xc2\xed\x89\x7b\xc8\xbe\x27\xc6\x86\x02\x77\xdf\x98\xa0\xc4\x5d\x60\xdf\x67\xcb\xe8\x85\x72\x7d\xdf\xd8\x54\xb5\xbe\x6e\xc8\x6d\xed\x76\xfb\x3e\x8c\xdd\x7a\x12\xf1\xe6\x28\xfa\xb3\xc3\x6d\x5d\x1c\x70\x9f\x65\x3a\x46\x51\xd6\xc3\xc5\xb9\x35\x35\xec\xec\xe7\x63\x68\xf4\x3f\xa7\x99\x71\x69\x84\x3e\xa7\x99\x31\x34\xc8\x9f\xc3\x3a\x75\x88\x0d\x3e\x58\xa1\xf9\x02\x59\x78\x56\x05\xbb\x9c\xbf\x0f\x6f\x0f\x11\xd0\x3e\xd0\xca\x32\x79\xe0\x29\x03\x83\x5e\xce\x59\x07\x8d\x4e\x4d\xe4\x04\x09\x85\xe4\x90\x1f\xaa\x58\x2c\x68\x6e\xe9\x7d\x05\xe4\xc2\x02\x0a\x12\x18\xa5\x8c\x6d\xa5\xcc\xcf\x59\x3e\x59\xd5\x7f\x20\xdb\x07\x2b\xf8\x40\x25\x2c\xca\x86\x86\x15\xa7\x1c\x15\x07\x5b\x6b\x09\x6a\xb3\x75\x4c\x92\x09\x52\xad\x55\xcc\xdd\x21\x17\x44\x3d\x46\xe5\x90\x10\x11\x38\x68\x1d\x92\x9b\x67\xf8\x5b\x08\xfc\x86\xe3\x11\xc8\xf3\x6d\xaf\xac\x35\x12\xc4\xe7\x98\xc9\x24\xe4\x39\x55\x89\x12\x19\x9b\xcf\xe0\x7e\x73\x48\x6c\xbc\xdc\xb4\x4a\x64\x0a\x3d\x1c\x3d\x41\x7e\xd0\x48\xec\x13\x25\x32\x05\x17\x4e\xe2\x77\x09\x1e\xb4\x47\x6f\x21\xf2\x0c\x74\xeb\xfa\xb6\x40\x77\xe8\x57\xf9\x56\x30\x97\x28\xe8\x5f\x8b\xa6\x4f\xa1\x0d\x44\xe2\x94\x45\x81\xea\xdf\x70\x38\xbe\x4b\x54\x08\xc8\x91\x2f\x66\xae\x14\x9f\xbd\xb0\x15\x54\xc2\x06\x0e\x7b\x20\xd5\xdd\x21\x92\xa7\xe6\xce\x1e\x50\x83\xe9\xfd\x32\xc9\x91\xcb\xac\x08\xea\x41\x6a\xa9\x25\x91\x99\xa9\xaa\x08\xe6\x87\x4e\x55\xe9\x90\x60\xb3\x3c\x38\xcc\x1d\xbb\x54\xc5\xc1\xf0\x90\x50\xe0\x5a\xaa\x21\x12\x99\x71\x92\x3f\xa4\x9a\x91\x4c\x72\x12\x6a\x12\x79\x5a\xd5\xd3\x39\xcb\x1e\x12\x87\xb5\x81\xb3\xe4\x5d\x62\x70\x12\x60\xe0\x00\xa9\x6f\xab\x48\xda\x5c\x72\x11\xb9\x30\xce\x1a\x2b\x6e\xf5\xfd\xba\x58\x11\xcf\xd6\xbd\xa8\x83\x3c\x50\x77\x2a\xc8\x87\x84\x92\x40\x0d\xe4\x90\x18\xab\xa2\x56\x0d\xac\xa3\x49\x9d\xec\x90\x18\xab\x10\x6b\x0c\x30\x6c\xd7\x22\x89\xc1\xb3\xdc\xec\xfe\xf6\x66\x2a\x49\xa8\x0c\x69\x84\xea\x9d\x3c\xca\x73\xa3\x38\x24\xf6\xc3\xd0\x42\x99\xd2\x5f\x2f\xce\x2f\x0e\x3c\xa9\xb7\x99\x45\xe2\xf8\x77\x25\x93\x6f\xf6\x57\xdf\xf2\xbc\x3e\x5c\x2f\x2c\x2a\x7d\x68\xd8\x27\x5a\x55\xa7\x78\x32\xa8\x30\xd5\x32\x45\x42\x25\x2d\x9a\x85\x40\x9b\x7b\xbd\x8a\x48\xae\xb9\xa1\x54\x2c\x85\x36\x35\x1a\xb4\x20\x04\xb5\xea\x12\xc1\xe5\x7b\x51\x22\xc5\xe2\x84\xce\xc2\x91\x5c\xe8\x6f\xab\xe2\x2b\x6a\x25\xe7\x4c\x2a\x72\x91\x45\xb3\x48\x18\x37\xfa\x64\x23\x17\x19\xb8\x69\xe9\x2f\xcc\x51\x6f\x9a\xc1\x85\xee\x37\x6a\xa5\x87\xc4\xd2\x68\x7d\x88\x7c\x71\x35\x73\xd8\x69\x04\xa8\x79\x0c\x91\x85\x1c\x5b\x44\x82\xdb\x5b\x38\x15\x4c\x68\x61\x06\x1b\x47\x6a\x7d\x54\x91\x98\xd0\xaa\xd9\xdf\xd4\x86\xe3\x32\x09\x51\x90\xd5\xe6\x0d\x26\x6c\x5d\x4b\x72\x73\xba\xe3\x62\x7f\x37\x4f\x20\x43\x22\x67\x63\x27\x6b\x4d\x62\x72\x63\xac\x7a\x48\x6e\x6c\x48\x95\xde\xc5\x84\x9b\xf2\x78\x6a\x8e\x5e\xec\x60\x48\x14\xbc\xb4\xdb\x48\xa6\xd2\xc8\xd2\x2d\x64\x5e\x5c\x47\x4d\x93\xf2\x82\x8d\xa6\x87\x66\x01\x3a\x4a\x6a\x53\x6b\xe1\xc5\x73\xd1\xd0\x58\xbd\x78\x2e\x1a\xd9\xa9\x68\x46\x15\xb7\x43\x1d\x49\xad\xb9\x19\xe0\xd8\xd6\xb5\x87\xbc\xb6\xac\x79\x4a\xc5\x2a\xeb\x5d\xe3\xfc\xda\x2c\x59\x32\xe7\xb5\xb9\xd8\x1b\xbb\x0f\x95\x25\xf5\x19\x26\x0b\x37\x0d\x91\x1c\xba\xe1\x54\x08\xfe\x59\xb8\xdf\xc5\x0d\xf1\x35\x42\x82\xe2\xe6\x39\x70\x8a\xcd\x6e\x70\xce\x28\x1a\xab\x9b\x0b\xa7\xb7\xfa\xbd\xe0\xff\x60\x7a\xe3\x12\xd3\x7d\xd0\xa1\x96\x7b\x13\x09\x31\x99\xb4\x5e\x3f\x10\x1b\x3d\x51\x96\xaf\x8b\xaa\x70\x90\x8f\xd6\xc5\x53\xf0\xe8\x4a\x45\x1b\x47\x3c\x24\xa6\xa8\xe3\x8c\x52\xd6\xb5\xc9\x0b\x38\x1a\x1d\x72\xb2\x07\xe8\xee\x4a\x54\xa3\x13\x79\x7f\xa5\x4d\x29\xc2\xee\x2e\xda\xb6\x3b\x35\xf2\xb2\x0a\x06\xb2\x4a\x78\xaf\x82\x9d\xbb\x37\x72\xe8\x2a\xb4\x09\x04\x57\xc6\x2a\xe0\xee\xe0\x31\xbf\x2c\xda\x6d\x47\xe7\x8c\xad\x4a\x55\x25\xc8\x38\x0b\x96\x8b\x34\x24\x63\x56\xc5\x09\xa4\x89\x53\x56\xe5\xe4\x0f\x67\xe6\xb6\x10\xe4\x94\x45\x13\xec\x08\x72\xf7\xe2\x61\xbc\x0f\x75\x90\x9b\x55\x48\xcd\x5a\x1d\xac\x51\x2b\xf9\x77\x75\x09\x60\x6a\x3e\xab\x8b\xd9\x43\xa9\xd8\x25\x46\x56\xbd\x5d\xc3\x3e\xa6\xc8\x4d\x3e\x52\xc9\x58\xa0\x6d\xaa\xfb\x9d\xfb\xfc\x9c\x22\xb7\xfa\xcb\x56\xd1\x34\xdb\x2f\x15\x35\xc0\x92\x33\x71\xa1\xac\xc1\x85\xd2\xb9\x1b\xaf\xc1\x13\x17\xb5\xdd\xb2\x86\x8a\xa2\xe0\x5f\xda\x61\x68\x9f\x3a\x24\x74\x84\x4c\x59\xbe\x26\xd6\x7a\xd7\xfe\xb3\xa6\xd6\xfa\x34\x49\xfd\x42\x23\x39\xc1\xfb\x7d\x38\x95\x5b\x77\x56\x07\x27\x6d\x11\xa1\x39\x9a\x4b\xb2\x5c\xa9\xb0\x29\x0c\x9a\x2d\xcb\x0a\x9c\xb3\x47\x88\x91\x82\xfb\xad\x34\xb3\x15\xaa\x28\x9c\xfa\xe2\x6e\x5c\x45\xde\x90\xf4\xd4\x08\x57\x50\x98\xc1\x61\x01\x72\x50\x27\x62\x51\x4b\xeb\x55\xec\xbd\x60\x12\xe9\x8d\x1b\xfb\x5a\x54\x10\x83\x6a\xee\xe2\x19\xb2\x4b\x88\xae\xcd\xc5\x6d\x26\xdc\x14\x39\x97\x5a\xb5\xb5\xb1\xab\xde\xad\xa5\x11\x55\x24\x66\x9f\x16\xb0\xb2\x5e\xd8\x06\x6b\xd3\x1c\xbd\xa8\x7c\x79\xfd\x52\x2e\x8e\x50\xc9\x2f\xba\x06\x86\x96\xc6\x8b\xdb\x51\xd6\x74\xbf\x61\x75\x9e\x3c\x13\x96\xf5\xa6\x52\x70\x69\x95\xbd\xd9\xe6\xde\x94\x2a\x65\x84\x72\x63\xbd\xb7\xbe\x6d\x22\x69\xed\xa0\xca\xb0\xde\xd8\xe8\x6a\xcd\xcc\x7c\x4b\x4c\x76\x91\x38\x90\x4c\xaf\x85\x9b\xdb\xd1\xc5\xcd\x6a\xdd\xe8\x51\x73\xab\x6e\xea\x71\x93\xdb\xc2\xba\xa9\x2e\x17\x2d\x2b\xca\xc5\x36\x34\xec\x9f\x49\xe1\xad\x65\x85\xf3\xc5\x29\x8a\xa3\xf1\xa1\xc2\x78\x89\xf9\x3f\xb4\x4d\x5c\x92\x48\x1f\xee\xf3\x4f\xaa\x3a\x98\x55\x14\xb5\xad\x29\xbe\xfa\x6c\x1e\x1e\xb8\x0f\xec\x8b\x9b\x95\xd6\xe0\xbe\x20\xa0\x5a\x70\x57\xdc\x17\xed\x90\xb4\x82\x1d\x92\xee\xb3\xc2\xcc\x89\x9b\xb3\xf6\xcc\x9d\xe5\x01\xe2\x4a\xd9\x45\x66\xa4\x92\xbf\x15\xfc\xbb\xa0\x15\x4d\xba\xc8\xa6\x98\xec\x45\x8d\x2a\xda\xf5\x2f\x93\x58\x0a\xb5\xb3\xda\x42\x76\x8e\xa4\x6f\xb9\x57\x5d\x6a\x23\xfd\x5a\x71\xa9\x43\xf4\x6c\x55\x3a\x0b\x0e\xf9\x26\xa7\xb0\x28\x0a\xd1\x39\x86\x52\xb9\xc3\x04\xf7\x9f\xdd\x68\x8a\xd1\xe1\x70\xd3\xc7\xd5\x5a\x38\x95\xa7\x61\xb5\x4a\xd6\xdf\xc6\x75\xb3\x69\x3a\xed\x83\x6b\x6e\xd3\x38\xda\x6a\xab\x22\x83\x45\x99\x5c\xac\x68\x88\xfc\x50\xf7\x52\xc9\xd4\x53\x2f\x4d\x60\xc3\xf2\x6d\x55\x83\xd3\x69\x7b\x1b\x3c\x48\xee\x3e\x29\xda\xc9\xce\x9b\xc2\x7b\x5e\x3c\x2a\x6f\xd8\x21\x53\xf3\x58\x75\xba\xbc\x2e\x7f\x0b\x11\xdb\x68\xe3\x3a\x24\x99\x6e\x28\x15\x7c\xd4\x69\x10\x39\x24\x6c\xc3\x99\xc2\x6c\xcb\xba\xd8\xd5\x41\x1e\x3c\xfa\xe0\x09\x67\x0f\x7a\x5e\xa7\x46\x72\x70\x24\x47\x1e\x22\xdf\x14\x1b\x6c\xe4\xe0\x94\xd1\xca\x7e\xc8\x4d\xde\xd0\xb7\xb4\x0d\xd3\x62\x70\xc8\x49\x9b\x44\x88\x84\x04\xf2\xa4\xf0\xe0\x31\x53\x31\xc9\xed\x97\x82\x61\x0f\x1c\xe1\x66\xbf\x54\x32\xd7\x6b\x74\x93\x68\x55\xa1\xb2\xb5\x65\xd6\x1c\x94\x5e\x3b\x28\x27\xdc\x8c\xe0\x1e\x22\x93\xc4\xe6\xf1\x60\xe8\x84\xbe\x83\x86\xc7\x2b\x8b\xe4\x48\x4a\xa6\xee\xb5\xa8\xe6\x70\x77\xda\x8b\xfe\xe3\x24\x66\xa0\x8a\xdf\x1b\x75\xaf\xbd\xa8\x11\xba\x22\xea\xf4\x8d\x86\xf3\x43\xe2\x58\x12\xaa\x88\x8e\xbd\x26\x45\x66\x6f\x88\x9c\x46\x8b\xf7\x21\x39\x92\x54\x28\x64\x69\x9c\x49\x25\x6f\xce\x51\x29\xca\x4c\x5f\x47\xf5\xb7\xe4\x9c\xa4\x71\x96\x9a\xde\x4a\x11\x89\xfd\x87\xde\xb4\x43\x2e\xf2\xf3\x14\x09\x39\xe1\xf5\xcb\xfd\xa7\x4e\x1e\xc3\x36\x75\xfa\xd6\xb2\x32\x4b\x0b\xa0\x3c\xde\x9b\x4a\x90\x76\xc5\xbd\xb5\x8e\x1e\x12\xb6\xff\x1e\xfe\xf6\xc5\xdd\x49\x8d\xe4\x56\x96\xa8\x12\xee\x4d\x2b\x0a\xfd\x24\x87\xac\x4c\xd5\xb7\x5b\xa3\xe1\x54\x8d\x86\x9a\xc1\x81\xbd\x28\xcb\x69\x68\x4d\xad\x0c\x93\xd8\xf6\xcd\xcf\xb0\xaf\x9e\x8a\x9c\x3a\xa8\xf3\x9a\xc4\x59\x31\x49\x88\xbe\xe9\x2e\x4f\x12\xb1\xdc\xe8\x1a\xbd\x46\x85\x46\xc3\xb3\x93\x8b\x5c\xec\x02\x35\xa6\xcd\xad\x6c\x26\x6e\x56\xfb\xa6\xed\x63\xaa\x0b\x1f\xda\xd1\x4b\x33\x49\x41\x41\x8d\x69\x73\xc3\x19\x45\xb3\xff\xa1\x9b\x3c\x89\xf9\x3f\x3c\x76\x26\x2a\xaa\xfb\x43\x43\x49\xd6\x0a\xfd\xf0\x00\x30\x47\x7c\x2f\xf8\x3f\x54\x79\x69\x0a\xa8\xf3\xc2\x50\x75\x8a\x8d\x43\x52\x4e\xa0\x43\x75\x5e\xdc\xf6\xe8\x4c\xa8\xf3\xa2\x4e\x40\xb7\x45\x3d\x3f\x93\x64\xe6\xa4\xee\xd6\x2e\x52\x72\x22\x48\x52\x00\xd3\xcc\x79\x48\x9c\x0d\xa9\xf1\x1f\x92\xb3\x8d\x19\x3b\x24\xdd\x1e\x60\x9c\x3a\x13\xf5\x89\xa8\x6c\x24\xd1\x2b\xa3\x74\xb6\x2a\x53\xa8\x24\x55\x94\x65\xdc\x68\x5d\x24\xf6\x81\x74\xb1\x91\x32\x92\xa5\x24\x12\xd3\xdb\x69\xe7\x3b\x24\x0d\x05\xc1\x92\x8b\xd4\xf4\xde\x45\x52\xb9\xec\x6c\x15\xfc\x9f\x27\xf5\x12\x49\x4b\x57\x1f\x22\x2b\xe5\xe2\x14\x49\x75\xea\xaa\x22\xa9\x4d\x16\xd6\x5b\xd1\xc1\x48\x45\x45\xf1\x18\x96\x2a\x53\xe9\x8d\x9b\x59\x43\x27\x8f\x5a\x4b\x97\x48\x15\xc5\xee\x37\xfa\x9f\x68\x08\x3a\x24\x7a\x44\xdb\x4e\x9d\x7d\xaa\x22\xb6\xaa\x13\x7f\x91\x12\x7b\x24\xaf\x56\xd6\x58\x0d\x74\x61\x66\x0d\x0e\x8d\x57\x95\x3c\x58\x65\xc8\x9d\x39\xb1\x64\xee\x12\x95\x5a\x7b\x9d\x03\x1c\x1a\x97\x58\x65\x60\x42\x6b\xaa\x22\xc1\x48\x2d\x69\x60\x27\x75\x20\xae\xf5\x4a\xaf\x79\x9a\x73\xb2\x28\x4a\xfa\x4a\xa7\x61\xa5\xaf\xfb\xd4\x1b\x22\x69\x81\x99\x22\x71\xb0\x9c\x51\x4d\x82\xaf\xe8\xa9\xaf\x73\x11\x25\x93\x33\xbb\xb0\x08\x32\xc9\x99\xd3\xbd\x28\xea\xa2\x8a\xc4\xb6\xdf\xeb\xa5\x6f\xd1\xe6\xca\x83\xe5\x21\x21\x90\x6a\x70\xac\x28\xbd\x5a\x56\x33\xa4\x88\xb7\x27\xf5\x45\xc5\x94\x45\xd1\x7c\x11\x49\x45\x51\xf3\xae\x5c\xcd\x75\xbe\x17\x05\x52\x66\x2a\xcf\xfe\x93\x36\xed\x43\xd2\x50\x2d\x56\xb9\xb5\x9c\x35\xb0\x9f\x29\x85\x82\xcd\xf8\x40\x5c\x0d\xcf\xd1\x87\xec\xed\x0e\x52\x8a\xcc\x6c\x92\xe2\x39\xba\xc9\xcc\xcc\xf8\x36\x08\x67\x99\x19\xda\xc7\x21\x69\x29\xe0\x2c\x04\x51\x28\x33\x63\xc3\xa9\x41\xb4\xc9\x24\x74\xe2\x90\xac\x08\x0a\x54\x95\xbd\xbc\x3a\x73\x16\x23\x75\x56\x94\xe5\xc5\xbf\x4c\x52\xd2\x0f\x91\x3c\x69\xd0\x9e\x7c\xc8\xcc\xcd\x59\x45\xb1\x0b\xb9\x4f\x91\x50\x82\x34\x29\x91\xb7\x78\x12\x5c\x17\x45\x9b\x06\x17\x6c\xd0\x8e\x10\x57\x36\x29\xe3\x55\x16\x89\x55\xc6\xd3\x6f\x8d\x42\x35\x96\xfa\xc5\x21\x6f\x96\xdc\x44\x52\x7f\xd4\x58\x11\xaa\x16\xc9\xdf\xd2\x99\x40\x44\xc3\x21\xb1\xa5\xd0\xdf\x78\xc8\xc5\x81\x35\xb9\xa9\x89\xab\x19\x8b\x47\xf4\x26\x92\x47\x8b\x51\xe6\x77\x82\xbf\x06\xe5\xd3\xa4\x4f\xff\x90\xe4\xfd\xd1\x44\x06\x8d\x55\x59\x24\x59\x32\x44\xca\x4b\x91\xf5\x2d\xd6\x7a\x10\x78\x70\x48\x0c\x06\xdd\xe1\x35\x2a\x0d\x6c\x25\x77\x91\x83\xa4\x32\x53\x5c\x35\xca\x89\xa8\x54\x02\x6a\x35\x49\x7b\x54\x31\x09\x4d\x25\x4f\x35\x03\x13\x58\x5b\x31\x29\x69\xcd\x61\x6e\x53\xf5\xb2\x19\x3c\x0f\x34\xc2\x12\xaa\xd0\x20\xbd\x75\xa7\x72\x7a\xc5\x92\x44\x74\xc4\xa5\x66\x08\xa4\x61\xee\x6e\x32\x18\xbb\x28\xca\x89\xa1\xb1\x12\xfe\xa1\x54\x35\x43\x92\x6f\xa8\x22\xea\xb8\x59\x4c\x47\xcb\xcf\x24\x10\xac\x06\x0f\x0f\x95\x7a\x5b\x8d\xbe\x28\xbd\xc4\xbf\x9d\x36\x96\xa2\x71\x16\xce\x80\x36\xa5\x1a\x82\xd5\x85\xb8\x7b\x90\x8f\x12\xc5\x55\x8c\x45\x39\x41\x21\x1a\xb4\xb1\xcc\x10\xb3\x4b\x99\xce\xe1\x54\x88\xe7\xa2\xf5\x3a\x43\x36\xd1\x22\x92\x5d\x10\x33\x10\x8d\x57\xb5\xfd\xca\x7c\x5e\xe9\xf0\xa9\x41\xb4\x40\xeb\xe2\xdf\x25\xd4\x44\x54\x91\x37\xf7\x1f\x8e\xc6\xda\x64\xa4\xce\x66\xd0\xb9\xde\x2c\x09\xa8\xf2\x36\x9a\x02\xaa\x0c\xc6\x2d\x6b\x06\xf7\x96\x1a\xc7\xb1\x7a\xe9\xd0\xc2\x0d\x27\x5e\xd4\xdb\xe8\x84\xab\xf1\xd2\xb6\xa0\x91\x7c\x93\xf9\x83\x6a\x4e\xbc\xe5\x87\xe1\x4e\x1e\x6f\x0a\x24\x6d\xdd\x41\xad\xae\x4d\xee\x3f\x71\xf3\x48\x5e\x24\x72\x6e\x1a\x82\x9a\x96\xef\x4d\xc3\x66\xd2\xe2\xa6\x3f\x75\x24\x55\x24\x89\x2b\x25\x28\x3e\x32\x4f\xc1\xf3\x50\xd7\x45\x05\x31\x28\x36\xd6\x45\x6b\x95\xb6\xee\x75\x91\x91\x88\xbe\xaa\x2b\x05\x0d\xaa\x14\xa2\x8b\x2a\x52\xeb\xe4\xd8\x95\x69\x06\xcc\xd0\x8f\xeb\xca\xaa\x97\x5d\x58\x99\x3b\xcc\xe0\x0c\x2e\x2a\x50\x8d\x28\x9a\xba\x0a\x87\x7d\x70\x39\xaf\xa2\x8a\xc8\x75\x8b\xb0\xd9\x71\x15\x91\xb4\x75\x5c\x2a\xaa\xc8\xe6\xcd\xb5\xb0\xe8\x2a\x6c\x44\xee\xd4\x55\x43\xbe\xb2\x2e\xf2\x66\xab\xd8\xc1\xca\xd3\x2f\x7d\xe4\x87\xe4\xc9\x39\x9c\x4a\x55\x34\x3b\xf5\x43\x17\xe5\x24\x09\xc1\x1f\x1a\xf6\x55\xc9\x2a\x4d\x83\x53\x75\x78\xe0\x82\x5d\xf4\x58\x36\x7a\xa4\xeb\x6a\x54\x63\xa5\x8a\x2e\xca\x8d\xa9\xe5\xbc\xe4\xc0\xd4\x8e\xba\x84\x9b\xaa\xd3\xe4\x62\x66\x56\x44\x17\x65\x9d\x93\x6d\xa6\x21\xb7\x6a\xeb\x96\x31\xb6\x36\xcd\x51\xa7\x5a\x57\x34\xdd\x83\x58\xaf\xa6\x2e\xd0\xdc\x3a\x4b\x2b\x22\x69\x51\x14\xa9\x05\xdb\x4a\xfa\x56\xf0\x2f\xba\xe8\x9a\x3b\x34\xb1\xfd\xcc\x42\x8d\x7f\xc9\x09\x57\xa8\x2e\xaf\xa5\x83\x24\x05\xc3\x5a\xcc\x1c\xe2\xa3\x45\x86\xcd\xd4\xae\x16\x4f\xbb\x6d\xa8\xbb\x5b\x16\x18\x2e\xd0\xb5\x5d\x11\x33\xf3\xc8\x56\x1b\x97\xc2\x7a\x09\xfa\x4b\x31\x69\xdb\x24\x8f\x3f\x75\xbd\x04\xf5\x6e\xca\x4c\x41\x18\x4d\xa9\xdc\xd7\x81\x89\xbe\xeb\xa2\xb3\xa4\x15\xee\x12\xeb\x4d\x25\xa0\x50\x30\xc8\xfa\x58\xdb\x34\x49\xcd\x4c\xcc\xfe\xa6\xef\xb3\x88\xcb\xee\xa9\xb3\x30\x4b\xbe\xb9\x14\x0a\x25\xdf\xba\xe5\x2a\x53\x51\x34\x46\xd6\xde\x4c\xf2\x68\x2c\xee\xbe\x79\x76\x2a\xd4\xf9\xd6\x2d\x6b\x06\x8f\x16\xcb\x4e\x1a\x6e\x29\x8b\x67\xc3\x36\x29\x17\xb7\x4e\x65\x84\x50\x1e\x72\x90\x4c\x22\xf9\x2d\x35\xa4\x4d\xcc\xee\x8c\xae\x6f\xe5\xa5\x61\x23\xf7\x25\x74\x13\xe5\xe2\x26\xec\xe1\xe8\xd4\x22\x07\x05\x61\x90\xa4\xa4\x0f\x6e\x56\x3b\xd1\xf2\x43\xac\x62\xdd\x49\x52\x64\xa8\x28\x09\x60\x2a\x88\x3b\x49\x96\xbb\x28\xf6\x37\xa8\xb7\xed\x4c\xf5\x31\xb8\x22\x77\xe6\x9a\x0b\x6e\xdd\x3b\x93\x55\xb4\x22\x37\xe5\x53\xa3\x49\xb8\x6e\x6a\x75\xad\x52\xfb\xd8\xd4\xea\x5a\x50\x00\xcb\x92\x39\xc4\x84\x9b\xca\x56\x4f\x1a\xba\x22\x9d\x7e\x38\xf5\x4d\x1b\x1a\x53\xab\xba\xcf\xf9\xdd\x54\x82\xba\x14\xc4\x0d\x18\x6b\xea\x9d\xfc\xbc\x2b\x95\xad\xce\xb5\xbe\x9b\x54\x15\x8d\xa4\xf6\x79\xfa\x7f\xea\xe6\xd2\x0f\x5a\x06\xaa\x0c\x7d\xa3\xc4\x10\x49\x3f\x31\xa5\xd7\x9e\xbf\xe2\xc4\x0e\x01\xc0\xed\x10\x51\x0e\xe1\x6c\x1c\x25\x35\x6f\x9e\xc6\x0b\x3c\x70\xa8\xf9\xe3\x4b\xbb\xee\x86\x0b\xbf\x27\x17\xb8\x0e\xe1\x32\x88\x58\x12\x41\xec\x55\x16\xf5\xfe\xf1\xd5\xb9\x07\xee\x49\xe4\x54\x32\x05\x1c\xda\xa5\x32\xce\xb8\x10\x75\x72\x88\x74\x08\xa7\xd4\x1f\x5f\x83\x92\x65\x43\x8b\x18\x14\x58\x7b\x9e\xb5\x22\x8d\x69\xc3\x87\x33\x34\x07\xf3\xac\xfc\xd1\xd4\x0b\xea\x34\x7d\x3a\x8d\xe3\xd4\xd4\x5e\x9a\xa6\x88\xfb\x3a\x24\xa4\xd1\xbc\x4c\x02\xd7\x9f\xd5\xe4\x35\x7f\x7c\xb5\xe2\x0f\x71\x72\xcf\x1e\x91\x85\x41\x50\x07\x04\x5f\x77\x0b\x80\x40\xeb\x26\x38\x0a\xa6\x08\xd3\xf7\x74\x1c\xb6\xec\x5d\x5d\x22\x4a\xac\xa8\xf2\x4d\xe8\xbd\xaa\x3b\x7b\x64\x2f\xd3\x9f\xf5\xd3\x30\x4d\x14\xb8\x66\xf4\x39\xbe\x95\xe3\x7b\x1e\x69\xdb\xdd\x3d\xe0\xd0\xc4\x99\xf3\x2c\xbd\xe1\x41\xda\x98\xd4\xa2\x36\xd3\xd7\x34\xdc\xd9\x23\x84\x1b\x4f\xff\x3b\x74\x43\x81\xea\xc7\x06\x06\xb4\xd1\xb3\x54\x69\x50\x6d\x4f\x52\x3b\x55\x67\x11\xe4\xbb\x22\x0a\xad\x32\x21\xf3\x98\xcb\x38\xe3\x4c\x6d\x6e\xc7\x61\x2f\x62\xc4\x0e\x71\x1f\xc2\xa5\x7f\x0e\xa1\x46\x05\x67\x31\x89\x9a\x3f\xbe\xf2\xa5\xd5\x10\x00\x29\xba\x81\x82\x59\x5f\xce\xb9\x09\x43\x72\xd6\x17\x9a\x6f\xea\x8d\x26\x8b\x38\x93\x2a\x1e\x02\x34\xa4\x67\x35\xf1\xa8\xd0\x73\xaa\x9b\x3c\x88\x4d\x4d\x62\x40\xd1\x29\x1e\x03\xed\x7c\x6e\xb4\xc0\x77\xce\x4a\xf0\x1d\xc7\x44\xf0\xd9\xc9\x7d\x7d\x0b\x5e\xa2\xdd\x78\x2f\x80\xe8\x9b\x56\xe7\xfa\x15\x16\x7a\x08\xc0\x42\x93\x08\x02\x89\xa8\x39\xee\x85\x51\xef\x2e\x92\xe6\xbf\xec\x22\x37\x5a\xea\xea\x5f\x06\x97\x1e\x82\xe3\x50\x45\x61\x20\x54\x08\xd6\x71\x57\xf1\xc0\x93\x76\xb5\x83\xb0\xc9\xa4\x22\x00\x28\x1d\xaa\xea\x2c\xf1\xde\xd5\x78\xa2\xe2\xc7\x34\x89\xc1\x54\x2b\xb4\xae\x35\x98\x2b\xd8\x44\xb5\x03\x7a\x60\xc9\x4e\x83\xc1\x4e\x9c\xb7\x8e\x22\xd0\x3c\x58\x67\xfd\xf7\xac\x36\x1e\xc9\xde\x25\x6e\x97\x4c\x46\x92\xa1\x50\x5b\xa4\x85\x11\x48\x3c\x25\x34\x17\xa0\x9d\xd3\xd9\x26\x96\xa9\x92\xce\x0c\xe7\x4b\xab\x1b\x98\xe1\xb8\xc4\xa2\x8b\x1a\xc7\x10\x0b\xd1\x16\x54\xd2\x50\x39\x1b\x78\x59\x75\x75\x8b\x11\x5d\xce\x8b\xb0\x08\x17\x44\xf4\x98\x44\x29\xae\xfa\x74\xea\x40\xbc\xe8\x23\x3d\x9b\xbe\x82\x7e\x25\x27\x9d\x39\xd0\x26\x06\xb4\x4f\xd7\xbe\x03\x34\x4f\xbf\x24\xd9\x36\x04\xff\x95\x9c\xf1\x4c\xb7\xb6\xeb\xcd\x43\x4e\xd6\x7c\x6f\xc8\x60\xc9\x39\xdc\x6c\x1a\x9a\xc7\x4d\xf4\xaf\x16\xd2\x0e\x8a\x13\xb5\x83\x0b\xa9\xb8\x8c\xb3\x8a\xd5\xb3\x7d\xe6\x6d\x68\x64\xe1\x44\xe8\x57\x31\x75\x76\x02\xed\x2c\x7b\xa1\xc1\x45\xdd\x5c\x68\x70\x51\x83\xa9\x4e\xf7\xe7\x3b\x9a\x72\x2f\xd5\x40\xb5\x60\x38\xf3\x91\xbf\x53\x7c\xb2\x29\x7f\x3d\x42\x47\xfe\x4e\x09\x0a\xf8\x19\x42\x33\x07\x3b\x5d\xbf\xa6\xf3\x35\x7c\xf5\xad\xc3\xf4\x64\x3d\x8c\x23\x79\x82\xb3\x67\x97\x3d\x60\x6f\x3a\x7d\x74\x9c\xda\xb0\xfd\x79\x93\xd8\x47\xfe\x86\x16\xf1\xa6\x2e\xa6\xe3\x1f\x9d\x18\x53\x8a\x19\x5c\x18\x42\x33\x1e\x2a\x9d\xcf\xb2\x08\xb0\x82\x14\x2b\x22\xa3\xea\x08\x27\xb2\x43\x45\x14\x3a\x24\xde\x78\x91\x37\x86\x6b\xc0\x82\x9c\x22\xd6\x69\xa4\xf3\x01\x1f\xec\x22\xde\x27\xc5\xa5\x63\x03\xec\xae\xfa\x34\x58\x6b\x8c\x98\x73\x99\xbc\x08\x3a\xef\x97\x64\x27\x51\xe7\x32\x81\x10\x76\x3e\x79\xa2\xd8\x2f\xaa\x98\x9e\x37\x9c\xd3\xbb\xac\xd5\x44\xa1\xcf\xe9\x24\x22\xef\x25\x25\x08\x36\xb7\x42\x05\xf0\x42\x97\x75\x63\xbf\xe8\x11\xb0\x62\xf0\x22\x28\x64\xb8\x35\x84\x98\x0f\xe7\x7d\x63\xf3\x37\x75\xd6\xa3\x8c\x08\x9b\xf8\xae\x4b\x72\x9c\xf0\xae\xda\xa5\xc2\x00\xde\xd5\x93\x47\x06\xda\xa0\x0c\x71\x9b\xf6\x85\xa7\x1b\xdc\xd5\x67\x32\x09\x31\xd3\x4d\x05\xd7\xa1\x7a\x89\x13\xb3\xe5\x0c\x51\xee\xc9\xf3\x07\xd9\x71\x75\xd7\xff\x46\x4e\x37\xf5\x46\x4e\x37\xf5\x83\xb6\x31\x27\x00\xf1\x5d\x26\xf1\x4d\xe8\x46\x1d\x9a\x37\x02\xcf\x64\x72\xd9\xef\x49\xa3\x0a\xcd\x17\x44\xcf\xa7\x4b\x5b\xf6\x7b\xf2\x6a\xa0\xcb\x41\x37\x86\xeb\x80\x8a\xa9\x21\x7e\xd3\x5e\x38\x86\xc9\x33\xe2\xb2\x9c\xef\x37\x34\xf4\xeb\xa9\xe2\x46\x15\x2e\x14\xe3\x5f\xd9\xa9\x37\xef\x31\x68\x49\x10\xaf\x2f\xb3\xe2\x7e\xc3\x58\x2f\xe7\xcb\x7e\xc3\xb0\x72\x49\xd5\x7c\x1f\xa5\xa1\x27\xad\x90\x37\x58\xec\x6a\xaa\x1d\x1c\x96\xc2\x54\xa0\x13\xea\x3d\x58\xcc\x52\xe3\x8d\x5d\xe9\x6a\xae\x8f\x83\xdf\x45\xa1\x0f\xee\x1f\x76\xac\xab\xb9\x14\x0c\xbe\x56\x16\xb1\x30\x97\x76\xd2\x37\x04\x21\x6f\x40\x1e\x8a\xfd\xd3\x77\x8b\x33\xa1\x79\x59\xb8\xa9\x31\x9d\x73\x80\x52\xed\x60\xe8\x52\xfd\xdd\xc2\xe8\xaa\x2d\x50\x66\x6b\xf2\x77\xc0\xe2\x4b\x5c\xc3\x95\xd0\x6b\x72\x0d\x80\xde\xeb\xd0\xc1\x63\x72\x29\xa6\x88\x8f\xf0\x50\x50\xdb\x91\x12\xf9\x86\xd0\xd4\xc1\x76\xbf\x61\x31\x90\xb9\x64\xbf\x0f\xe7\xf7\x62\xe6\x82\x60\x2c\xe1\xb4\x89\x86\xfa\xbb\x00\xe5\x1a\x16\xba\xa4\x61\xc2\xa6\x49\xa4\x5d\xa5\x1f\xb5\x97\xb8\xbe\x17\xcb\xef\x8d\x2b\x28\xe1\x0f\xa1\x49\x54\x57\x81\xfe\x6a\xa7\x01\xb0\xa8\x17\x2d\x91\x1b\x4b\xa4\xea\xe8\x70\x43\xc2\xd6\xe4\x9c\xec\xfc\x10\xc5\xce\x4f\x51\x0d\x54\x12\x05\x65\x55\xdb\xe1\x3d\xd9\xf9\x2a\x0a\xf7\x82\xa5\xba\xdc\x58\x2e\x3e\xff\xdd\x74\xa5\x8d\xe1\xc6\xa0\xf7\xc5\x8d\xc1\xf5\xab\xe2\x0f\xd1\x09\x29\x4e\x30\x48\xf4\xaa\x0d\xe4\xe6\xad\x62\xe9\x2f\x77\xb0\x13\x6a\x1a\x44\x70\xd5\xd6\x09\x18\x55\xaf\xd2\x26\x68\xb8\x28\xd5\xd4\x40\x4e\x7f\x87\x8b\x2a\xd3\xdf\x91\xd5\x9c\x93\xed\x54\x07\x83\x8b\x5c\x03\x83\x05\x22\x0f\xc1\xbe\x83\x8c\xa7\x3e\x08\x81\xeb\x51\xb3\xb4\x56\xbb\x09\x27\xaa\xd2\x81\x79\xc9\x65\x24\x27\x7e\x08\x65\x26\x45\x4b\x40\xd7\x62\xbe\x37\x54\x40\xc9\xa7\x1b\xf2\xd9\x27\x8c\x5b\x50\x93\xe6\xac\x44\x80\xa8\x23\xbc\x10\xe6\xa1\xa2\xb8\xce\x4e\x3b\x33\x35\xba\xa9\x05\xca\x39\x37\xaa\x50\xdb\x7c\xd1\x43\x6c\x43\xd5\x4e\x2c\xf5\xa1\x66\x27\x71\xf5\xa1\x6a\xd7\x4c\x65\xda\x7d\x45\x15\xa2\x6c\x45\xd1\x26\x3c\x45\x35\xf4\x70\x88\x1a\x28\xc5\xdf\x4d\xe2\x54\x5c\x28\xda\xdd\x5c\x0c\x36\x4f\x49\x05\x5c\x00\xea\x3e\x64\xe3\x02\xd0\x99\x0e\x97\x03\x2d\x51\x5c\x84\xab\x35\x69\x64\x67\x65\x9f\xd4\x1a\x18\x44\x86\x8c\x0c\x1f\xda\x34\x2e\x53\xd4\x50\x9d\x13\xa7\x04\x89\x52\xa0\x8c\xbb\x15\x40\x21\x1d\x24\x94\x3e\xc4\x73\x6a\x0c\xe1\xb0\xec\x36\x0d\x7c\xa8\x01\x64\x7f\xc7\x4e\xb8\x86\x17\x28\x75\x90\xb7\x21\xc4\xed\x1f\xde\xca\xcb\x2e\x13\x7d\x10\xef\x7f\x88\x4b\x96\x4c\xfa\xf0\x9a\x9a\x44\xe9\x87\xf0\xd8\xea\x49\xa3\xad\x77\x6a\x1b\x03\xe8\xaf\x0f\xed\x8d\x1f\xdc\xd9\x4e\xd9\xd4\x07\x51\x2a\xf4\x21\x2d\x90\x56\x40\x3f\x8c\x99\xe1\x29\x25\x6e\x38\x75\x93\x05\xe5\xa8\x75\x87\x6b\x87\x50\x02\xfb\x73\x98\x56\xa0\xd2\x43\x4d\xd4\xa1\xb1\xa1\x3b\x3a\x9b\x19\x36\x6e\xa7\x7b\xbe\x37\xaf\xac\x74\x37\x80\x6d\x3d\x33\xd5\x78\xa9\x2b\xd3\x40\xd6\x7c\xad\x0b\x31\x31\x40\x9e\x2a\x53\x38\x6b\x47\x95\x53\xd4\x40\x9a\x29\x40\x27\x6a\xfe\x56\x4a\x37\xc2\x4a\x72\x82\x70\x38\xd4\x06\x75\x89\x3a\x87\x08\xfa\x3b\x0f\xf5\xc1\x95\xfb\x4c\x2a\x38\x72\x45\x54\x06\xe5\xb4\x82\xd6\xa8\xcc\xc3\x70\x39\x41\x6a\x1c\xea\xf4\x82\x82\xe1\x50\xec\x85\x6a\x38\xec\x37\x10\x51\x04\x14\x06\x35\xbb\x4c\xb6\x33\x89\xe2\x98\x9a\xda\x98\x0c\xe7\x7c\xa1\x14\xa7\xdd\x68\x8b\x6b\x07\x33\xb8\x86\x85\xab\x8a\x6e\xf5\x62\x8f\xd4\xb2\x23\x18\x47\xbe\x9c\x13\xac\x70\xa9\x4c\xdc\xcf\x67\x60\x86\xc6\x90\x0d\x39\x5d\x1a\x89\xc5\x3e\x98\x42\x1f\x3c\x82\x0b\x7d\xb8\xd4\x96\x85\x3e\x64\x53\x1c\x79\xcd\xe0\x42\x1f\x3c\x2e\x47\x2f\xce\xf4\xaf\x1c\xea\xa6\x8c\xf0\x87\x1f\x54\xa8\xc4\x8d\x2e\xb9\xa1\x87\xbd\x47\xf6\xd0\x1f\x7e\x16\x32\xe9\x50\xb4\x99\x9a\x83\xc8\xd0\xe6\xb5\x8d\x5e\xb8\xa5\x5b\xe1\x4c\x34\x34\x08\x76\x90\x2e\x52\x30\x5b\x0f\xca\xf6\x43\x25\x4c\x6f\x13\x85\x20\x0b\xfd\x12\x85\xa9\x6f\xa6\x3a\xa8\x2e\x6a\xc0\x4c\xe3\x32\x27\x4a\x29\xa2\x10\x07\xa2\x9b\x5a\x48\x73\x7d\x1b\x94\xcb\x7c\x21\x67\x12\x85\x5b\x98\xb5\x8a\x82\x21\xa8\xbb\x3e\x32\xb3\x72\x06\x5a\xed\xef\xc0\xbe\xbc\x10\x70\x28\xc4\x86\xe8\xaa\x8f\x37\xbf\x92\x56\x01\xac\xf2\x63\xb8\x83\x34\xb3\xcc\xcb\xe5\x2c\x7c\xe9\xac\x6c\xa9\xea\x0f\xb4\xb4\x4d\x51\x6c\xa9\xbf\xbb\x51\xbf\x6b\x84\xc9\xaa\x29\x0d\x2c\x3b\x8a\xbe\x5b\x68\x77\x51\x99\x60\x59\xca\xf9\x46\x18\x57\x6e\x5d\xbd\x87\x05\xb6\x4d\x71\x62\x3a\x7c\x39\xcb\xf0\x87\x81\x2a\xd4\xd0\x85\x01\x2e\x9a\xc2\x85\x66\x37\x0d\xfe\xd2\xfe\xe4\x62\xde\x18\x45\xd7\x81\x76\xbb\x4f\x8b\x23\xac\x0f\x37\xdb\xad\x9c\x9b\x2d\x55\x85\xe0\xcb\xe1\xb9\x47\x90\x8d\xd6\x4d\xb1\x17\x2a\xf3\x28\x07\xb9\x75\x35\x0d\xf1\x7f\x88\x2a\x3e\x14\x46\xdb\xfc\xb4\xd1\x32\x71\x65\x46\x70\x8c\x4b\x1d\xa4\xc3\xa3\x0e\x49\xcb\x7c\xb6\x7c\xdd\xe7\x39\x54\x01\xe5\xac\x0d\xa1\x0e\x9c\x36\x4e\xda\xbc\x44\x11\xeb\x76\xb9\x98\x8d\x0f\x9d\xf8\x02\x55\x44\x21\xfa\x41\x75\xce\x1b\x69\xdf\x5e\x02\x6a\x33\xd3\xcf\x31\x35\x51\x00\xe0\x94\x4b\xbc\x90\x83\x0d\x57\xa9\x47\xcc\xca\xb5\x76\xa8\x06\x4a\xfd\x3f\x5c\x5b\x2e\x4d\x62\x46\xa4\x0f\x1e\xd0\x0e\x85\x68\x0e\x5a\x95\x39\x10\xce\xa1\x35\x51\xe8\x53\x77\xed\xec\x93\xcb\x7c\x83\x72\x4e\xf4\x49\xb3\x06\xec\x4f\xb9\xb4\x46\xf3\xe2\x90\xaa\xd5\xf4\xca\xf3\x94\xdf\x18\xa2\xa6\x34\xc9\x36\x78\xc3\x4b\x4b\x2e\xe6\xfe\xf1\x25\x34\xe8\xa1\x3e\xc8\xa9\x0e\x1e\x86\x8a\xcb\x15\x6e\x18\x65\x3c\x6b\x87\x85\x84\x0d\x3c\x54\xc3\x77\xea\x20\x8d\x87\x6e\xf6\x61\xa1\xd2\xb2\x73\x4e\xa4\x99\x5a\xa0\xd4\xce\x23\x03\x4b\xd3\x46\x9d\x15\x48\x2a\x4c\xc2\x94\xd4\x5d\xc5\x8d\xac\x1a\xdf\xa3\x7b\x0a\x47\xd1\x66\xa1\xf5\x48\x5c\x52\x0e\xeb\x09\x27\x71\x28\x36\xbb\x8a\x62\xb3\x8b\x28\x34\x5b\xb2\xa4\x4c\x36\x3b\x44\xa1\xd9\x9a\x6b\x44\xf2\xd2\x35\xaa\x43\xa1\x13\x5a\x31\x85\xd6\xa4\xe1\x32\xdf\xb4\xc5\xb8\x98\xd3\xec\x50\xef\xcb\x11\x90\x25\x9c\x95\x10\xe7\x26\xb9\x8e\x3b\x09\x25\x5c\xc7\x91\x97\x61\x49\x8e\x7b\x5c\x61\x29\x54\x10\xb4\x23\x34\x31\xb8\xbc\xa0\x50\x4b\x87\x1a\xc8\x69\x2a\x08\x3b\x75\xa1\x0b\x1f\x6a\xd8\x0e\x23\x86\x25\x14\x70\x0f\x31\x9a\x73\xde\xbc\xae\xe7\xa6\x12\xd8\x2d\x21\x8c\xc8\x64\x61\xd1\x2e\x17\xa4\xc5\x59\x59\x68\xb9\xe6\x0d\xe8\xaf\x18\xe2\xfd\x82\x28\x1e\xe1\xb9\x39\x5c\x1b\xde\x75\xca\xd9\xe4\x4b\x88\xc1\x10\xe2\x2c\xbc\xaf\x01\x34\x56\x62\x38\xe7\x42\x9a\xeb\xc3\xfd\xfe\xe6\xb4\x37\x72\xfa\x3b\x0c\xbf\x67\xf1\x30\x7b\x58\x26\x16\x30\xbb\x25\x6b\xd9\x1c\x7d\xb5\x73\x73\xf4\xd5\x41\x02\x46\x5a\xa8\xc2\xc3\xfb\x02\x0f\x1d\x0a\x26\x24\xaf\x44\x62\x68\x2f\x8b\x0c\x84\x4d\xab\xe5\xa9\x64\x83\x52\x17\x69\x2a\x9f\x52\xb1\x0a\xed\x5d\xe5\x69\xc2\x4d\xd2\xa9\x1f\x96\xcb\x54\x44\x26\xaa\xa5\x99\x4a\x9c\xad\x2a\x32\x23\x31\x44\x15\x7e\xd9\x45\x56\x24\x3a\x2b\xfa\xa2\x25\x50\x71\x8a\xba\xbc\x85\x55\xf1\x72\x5c\x22\xc5\x13\x4a\x3d\xec\x5b\xcd\x69\xc4\xba\xa4\x4b\x7a\x5f\x55\x98\x05\x67\x2d\x48\xbc\x9c\xb7\x22\xf1\x5b\x14\xdf\xc9\x7a\xda\x67\x36\xa8\x38\x4a\xa5\x2b\x99\x9c\x28\x67\x88\x5a\x4c\x4c\x22\x5f\xac\x73\x8a\xfc\x20\x52\x99\x06\x0c\xa7\xa2\xc4\x7b\xdb\x8d\xd1\xb8\xda\xe5\xd6\xe2\xf8\x9e\x9a\xb6\x24\x44\x6a\x3a\xa4\xca\x65\x64\xb1\xa6\xad\xad\x32\xb6\x58\xd3\x86\x51\x61\xb9\x4a\xbc\x02\x7d\x48\xc4\x58\x93\xb6\xc4\x70\x76\x75\x78\x26\x68\x7d\xf5\x7e\x42\x50\x74\x7e\x5a\x71\xb6\xf3\x66\x71\x0f\xdc\x60\xab\xe2\xc0\x8a\xc3\x50\x0e\x6d\xb6\x15\xb6\xa5\x1c\xe1\xbc\xfb\xc7\x57\x9b\x92\xcd\x00\x03\xb5\x29\xe9\x4f\x48\x61\x29\xd9\x95\xc0\xd1\xcd\xe6\x35\x1c\xe1\xb5\x15\x34\x9c\xe0\x35\x3e\x80\x1a\x76\x0d\x40\x3b\x0c\x34\x86\x09\xa8\x9f\x97\x08\xca\x53\x11\x03\x0e\x25\x11\xdc\x04\x44\x40\x98\xba\x52\x18\x21\x87\x3f\x82\x11\x72\xf8\x2b\x1a\x21\xf5\x59\x08\x56\xaa\xac\x00\x38\x16\xb1\x1f\xc3\x5b\x15\x09\x48\xa2\x1d\x8b\xb8\x86\xc1\xad\x46\x71\xc3\x78\x1e\xd7\x4e\x82\x08\x0d\xd9\x5d\x3b\x2c\x34\x72\x72\x29\xe7\xf4\xe0\x21\xa0\x6e\xe9\x96\x1d\x61\x99\xa7\x8b\x38\x4a\xb0\x66\x1c\xf7\xb0\xce\x8e\x44\x8a\x77\x77\xab\x94\x32\x00\x2b\xf3\x54\x19\xd8\xcf\x43\x8c\x83\x1b\xb3\x44\x4d\x1e\x02\x6e\x0d\xe7\x1b\x67\xf0\x55\x3c\xc4\xe2\xe5\x6f\x60\x26\x6d\xae\x8b\x61\x39\xc4\x6c\x88\x4b\xd5\xdd\x67\x9c\xe5\x5d\x3a\xf7\x75\x0d\x1c\x21\x4e\x43\x7b\x30\xef\x7e\x5d\x6e\x14\x64\x5b\x91\xa0\x25\xe4\xa3\x68\xbf\x20\xb2\xd3\x72\xa4\x11\xe1\x7e\x3d\x24\x4e\x33\x85\x13\x80\xfb\xbe\xd5\xd2\xb4\xc3\xef\x5e\x4d\x70\x6e\x92\x49\xfa\xda\x43\x14\xe3\x70\xa9\x13\x08\x77\x15\xc9\x65\xd2\x03\xc0\x31\x12\xde\x44\x5c\xed\x2b\xc3\x4e\xc3\x09\x4d\xcb\x01\xd1\xaf\x46\xd6\x72\xe8\x8a\x78\xe7\xef\x10\x21\x28\x8b\xc0\xb0\x0f\x11\xf4\x3a\x3a\x1f\x2f\x46\x14\x57\xc0\xf8\x4a\x5a\x39\x5d\xb6\x40\xe5\xa5\xfd\x45\xc3\xdb\x17\x8e\xf4\xda\x55\x89\x88\xeb\x97\x0e\x1e\x9d\x61\xc7\xa6\x7b\x78\xe6\xb3\x7a\x7b\xee\x0b\x51\x89\xfc\xe1\x0b\xaa\xbe\x08\x46\xb2\x74\x27\xb0\xad\x79\x3c\xe9\x26\x9c\x4e\x82\x29\xa6\x36\x93\xbc\x92\xaf\x2d\x85\xf7\xed\xda\x39\xf6\x7d\x2b\x96\xbb\xef\x0a\xa8\x71\x9b\xb6\x11\x6d\x89\x9d\x41\x83\xc2\xd5\xc0\x6e\x9a\x9c\x06\x01\xd4\x5c\x27\xc7\x8a\x03\x30\xe8\xea\x9b\x6a\xfc\xa0\x35\x46\xdb\x8d\x6e\xf8\x45\x71\xde\x89\x59\xad\xa2\x18\x0f\x43\x5b\x1e\xae\x6e\xe8\x36\xf6\xa1\x60\x05\xd0\xd1\x0f\x77\x01\x73\xd2\xdc\xe1\x2a\x60\x4e\xc5\xc5\xc0\x36\x93\x9d\xf6\xe1\xf8\x70\x3e\x10\x24\x74\x0c\x6d\x95\x8c\x12\xda\xab\x74\x20\xc6\x32\x69\x56\xfb\x78\xa5\xb0\x57\x69\xd9\x83\xc7\x88\xe9\x4f\x21\x19\x25\xd6\x10\x3a\x34\x7e\x2d\x96\x2e\x60\x8f\xc8\x61\xad\x5a\x9e\x62\xde\xe0\x08\x53\x37\xf7\x3b\x93\xc4\x11\x48\x42\x8d\x75\x39\x94\xd6\x21\x00\x24\x50\x53\x0d\xe7\x56\x15\x4b\x02\x40\x2d\x27\x62\xac\x4a\x7f\x19\x08\x85\xdb\xdc\xd6\xcd\xa3\x92\xa9\x02\x01\xa6\x0f\x79\xc9\xd0\x7a\xdf\xd8\xed\x89\xde\x75\xa8\x7e\x16\x93\x09\x18\x22\x5c\x88\x22\x0f\xb9\x14\xb2\x87\xe6\x9c\x68\xc5\xa4\x39\x9f\xf4\xec\x5d\xb2\x0a\x01\x2c\xd6\xd5\x6e\x86\x84\x1b\x25\x39\x8d\x7e\x76\x27\xe2\xf4\xed\x52\x68\x7f\x1f\xce\x49\x87\xbf\x13\xcf\xe9\x48\x76\x1f\x02\xbf\x2e\x35\x7b\xca\xe5\x3b\x44\x9d\xbd\x4e\x8b\x1c\x88\xf1\x90\xea\x33\x19\x32\x2c\x9c\xef\x4d\xe5\x58\x14\xbc\x98\xe1\x12\x3f\x74\x8d\x92\xfb\x26\x41\xa0\xb6\x3c\x4c\xb9\xd2\xd4\x05\x4c\xd3\x25\x16\x62\xa0\x99\x4b\xbb\x0c\x91\x60\xbd\x0e\x97\xc3\xab\x75\xc9\x24\x34\x52\xed\x3a\x80\x78\x25\x2b\x7c\x93\x4e\x31\x31\x31\x41\x5d\x55\xa7\x23\x06\x13\xe8\xe9\x21\xe9\x52\x51\x73\xb8\x33\x74\xa7\x71\x67\x70\x1a\x77\x06\x75\x92\x8e\x2f\xb1\xc5\xa4\xe3\x4b\x1c\x34\x79\x4f\xa8\x6a\x74\x04\xd0\xd2\x59\xcd\x57\x5c\x43\x14\x2c\xec\xdd\x39\x3b\x5a\x9a\x45\xb1\xc3\xfe\x8e\x0e\x8d\x2e\x6a\x71\xf3\x17\xb5\x19\x78\x43\x14\xef\x1b\xb8\x14\x46\x18\x4a\xa2\x68\x53\x9f\xa2\x04\xbf\x56\x31\x01\x3b\xa6\x13\x69\x8b\xad\x4e\x83\xcd\xcf\xc5\xd0\x16\x5b\x9c\x73\xb0\xbf\x43\x64\xf0\x2a\x81\xbf\xa4\xd4\x72\x22\xa4\x56\x75\x39\x94\x5a\x1a\x0c\xa8\x1f\xa9\x7e\x8b\xe3\x68\xba\x3e\xa6\xb8\x6c\x8d\xc1\x52\x47\xd6\x46\x19\xb4\xc7\x7a\x00\xe8\xa7\x0a\xe9\xc8\x40\x87\x15\x9f\xb1\x01\x0f\xcb\x56\x73\x83\x06\x2c\x4d\x7f\x70\x3b\xf2\xdc\x2c\xd8\xdd\x3c\x8b\xb4\x5f\x79\x36\x64\xbf\x52\x63\x36\x2c\x1a\x62\x14\x22\xce\x9e\x2d\x3d\x68\x45\xf0\x38\xca\x8a\xe0\x0f\x19\x01\x26\x39\x2b\x8d\x0a\x2e\x07\xe6\x0e\x77\x6a\xc3\xc0\xa1\xf9\x27\xfc\x2c\xb4\x6e\x10\x33\xb9\xc4\x74\x1a\x56\x58\xd2\x9e\x86\x40\x8f\xd5\xe7\x38\x20\xc9\xaa\x55\xf5\xc5\x8b\x1b\x53\xe2\x75\xd1\x4f\x34\x25\x60\x01\x2d\xab\x3e\x49\x03\x4e\x56\x7d\x00\xe6\x15\xbc\x5e\xd5\x56\xc2\xcf\x73\x95\xe8\x60\x1c\x8d\x72\xc9\x40\x4e\x84\x59\x0e\x89\x00\x20\xcc\x8e\xee\xee\x5a\x09\xf2\x2c\xfe\x76\x3b\x26\xe2\x21\x00\x4e\x12\x41\xf3\xa6\x0a\xa1\x07\xc8\x0b\x02\x40\xb2\xd0\xde\x4c\xf4\x7b\x7d\xfa\xb1\x00\xc8\x9b\xfe\x90\x5e\xcc\xe2\x44\xe8\xed\xd2\x2c\x18\x08\xea\xc9\x2a\xed\x40\x1a\x09\xd1\x63\xbd\xba\x05\x14\x01\xdd\x89\xd0\x0e\x24\x02\x19\x9b\xd2\x87\x5c\xa1\xc5\x34\xe8\x5b\x48\xc2\x29\x0a\xbe\xd0\x6e\x8a\x97\x51\x9d\x93\xf5\xab\xff\x5b\xe2\xc1\x85\x92\x77\xba\x28\x5e\x30\x0b\x7f\xf9\xc6\x82\x20\x5f\x6f\x01\xa2\x75\xc6\x20\xde\xbf\x27\x9d\x76\x36\xdc\x33\x3e\x25\x6e\xda\xb7\xdd\x1e\xea\x95\xd3\xe5\xc0\x2a\xef\x7e\x20\xc2\xfb\xaf\x14\x82\x33\x4b\xae\x6f\x46\x67\x16\x7f\xe2\xe2\x7a\xb1\xed\x0a\x58\xb4\x62\xc3\x1d\xb0\x68\xc5\xb6\x2b\x80\xd1\x4a\x73\xbb\x75\xea\x70\xf5\xbc\x87\x31\xb3\xc9\x8a\xbc\x1a\x8e\x33\xc9\xa5\x49\x76\x02\x9e\x16\x5e\xc9\xc0\xa3\x85\xd7\x2e\xc3\x24\x5f\xb6\xd4\x02\x8e\x56\x6d\x9c\x04\x1e\x2d\x5d\x36\xf8\x02\x83\x56\x6d\xbd\xe2\x65\xd1\xd4\x74\x5e\x02\x0a\xad\xd9\x70\xcb\x7b\x4d\xb9\x6a\xe3\x06\xb8\xac\x75\x89\xbd\xbd\xc3\xb1\x3d\x0f\xb1\x7e\x7c\xf5\xe2\xea\x0f\xbb\x87\xba\x4f\x0c\xb0\xd8\x98\xa1\xb5\x9a\xb9\x01\xa8\xb0\x90\x42\x05\x50\x58\xb7\x57\xeb\x25\x91\x1f\xa2\xa0\xfd\x69\x28\x5e\x74\x66\x68\xdb\xc4\xf5\x8d\xec\x1e\x20\x18\xe9\x2c\x0f\x05\x93\xb1\x46\x1b\xe8\xaf\x2e\x15\x16\x31\x47\x7b\xb4\xef\xe5\x34\x70\x62\xe3\x29\x83\x6c\xd0\x45\xad\x27\x8c\xe9\xa1\xd0\x57\xed\x36\x40\x89\x8d\xa7\x21\x38\xcd\xcb\x08\x8c\x3b\x25\xa1\xbd\x05\xf1\x49\x43\x9b\xb7\xc0\x64\xe1\x24\xd8\x87\x1e\x8a\x81\xe8\xa5\xf4\xbc\xf4\x88\x82\x76\xda\x17\xdd\x6b\x3a\x86\xf0\x9a\x8a\x40\x51\x87\xa4\xe0\x77\x25\x64\x49\x95\x43\x63\x9b\x98\xfe\x45\x63\x9b\xbf\xe3\xb1\xa4\x68\x49\xbe\x74\x2c\x91\xad\x83\xc0\xb3\x74\x49\x9b\x21\xd6\x2c\xdb\x8d\x05\xac\x99\x2d\xa8\x80\x9a\xf5\x70\x31\x0c\xe0\x5e\x5c\x09\xe5\x8c\x1b\x00\x0c\x80\x9b\x4a\x38\xf3\x34\xc5\x89\x67\x4e\x84\x31\xcb\x4d\xc3\x21\xa4\x59\x16\x21\x45\x3a\x44\x02\xf6\x9e\x44\x9c\x45\xa6\xb5\x0a\xd0\x59\x0f\x67\x3b\xe7\xca\x70\x79\xe7\x5c\x19\xae\x2a\xce\x5c\x9a\x38\xca\x80\x38\x80\xf8\xb2\xab\xba\x6c\x20\x03\xc3\xad\xe0\x85\x17\xad\xfd\x37\x31\x32\x92\x51\x6f\x1a\x49\x34\xec\x8c\xf5\xe0\x25\x4b\x80\x99\x37\x38\x82\xc8\xec\xf3\x7b\xd3\x63\x21\x39\xf0\xa6\x46\xeb\x0a\x18\xa3\xf5\x49\x3b\x8b\xe6\xf2\x67\x1f\xee\xcb\xaa\x01\x1b\xcf\x34\x71\x34\x0f\x8f\xe3\x82\xea\x2e\x45\xfe\x4d\x9e\xb3\x95\xe4\xcd\x8b\x0d\xb2\x30\xbd\x75\x48\x96\xce\x04\x68\x58\x93\x8d\xec\x4d\xa4\x63\x72\xa1\xbc\xec\x72\x39\xf1\xb4\x2c\x5c\xca\xd9\x10\xc5\xe3\x00\x7f\xf5\x2c\x0b\x14\xb1\x5f\x5e\x35\x6f\x45\x9d\xd1\xd6\x4e\xf0\xd7\x33\xd6\xe4\x29\xcf\x03\x58\xca\xc6\x2f\x20\xb3\xd2\xec\xee\x2e\x8f\x2e\xed\x32\x09\x1f\xb9\x24\x19\xf1\x57\xde\xe6\x81\xb8\x1a\x32\xad\x03\x2a\xd5\x2f\x31\xbf\x30\x4e\x52\x34\x79\x1f\xab\x37\x2d\x05\x41\x9e\xa4\x20\xdf\x04\x9d\xc8\x5c\x4c\x90\x93\xad\x74\x04\x39\xd9\x60\x70\x13\x74\x32\x5c\x05\x14\xe4\xea\xef\xa0\xca\xa9\x4f\xb7\xf4\xcc\x2e\x8a\xf2\xb1\x89\x62\x8f\x44\x71\xcb\x69\x3a\x10\x11\x01\xd5\x7c\x90\xba\x17\xcf\xbf\xa6\xe0\xff\xeb\xce\xaa\xd0\x78\xea\xc6\xa2\x3b\xd0\x89\x93\x38\x74\xb5\x6e\x09\xf9\xaf\x8e\xd0\xe2\x65\x63\xa6\x80\x55\x4d\xdb\xc0\x4d\xbf\x80\xf8\xfb\xa6\x5f\x40\x02\x56\x91\x85\x5b\xfa\x0d\x26\x68\x82\xb0\xc6\x74\x2d\x1b\xc6\x75\x8f\x10\xd8\x25\x57\x4f\x09\x2e\xbb\xc8\x66\x4b\x64\xd5\xa5\xc5\x00\x2c\xd5\x10\x23\x31\x6e\x41\xb7\x23\x4a\x00\xa9\x22\x46\xfe\xd0\xc3\x2f\x6e\xfd\x50\x9b\xb1\xeb\xeb\xc3\x8b\x4f\x26\x00\xb3\x73\xa1\x47\x64\x5c\x2e\xf2\x54\x77\x39\x45\x21\x34\x5c\xfe\x11\xd4\x62\x7f\x82\x9c\xea\x14\x03\x08\xe5\xe4\xc3\xd4\x87\x76\x8d\x90\x74\xf9\x50\x66\x48\xb1\x63\x34\x45\x3b\x2c\x88\x73\xb2\x27\x53\x38\x27\x6b\x5d\x1f\x07\x92\x51\x0b\xa8\xbb\xa6\xe9\x54\xae\x2b\x57\x42\xce\x52\x41\xe2\x2c\x09\x56\x22\x98\xd2\x25\xce\xfa\x20\xd0\x76\xc9\x4e\x2c\x0e\xd0\x7d\x88\xb3\xac\x42\xfd\xc0\xa5\x08\x2d\xc6\x0f\x2e\x45\xb8\xff\x87\xc5\x46\x38\xe5\x88\x60\x09\xe7\xcf\x61\xaf\x79\xb9\xa2\x7d\x08\x17\x7d\x56\x89\x36\x1a\x5c\x72\xb6\xd1\xee\x43\xa1\xe3\xa6\x43\xe8\xe8\x1b\xc0\xf7\x65\xb9\x05\x44\xca\xc7\x07\x20\xa4\xa6\xa4\x16\xf0\x51\x43\x67\x20\x00\xa2\xec\x1f\xfa\xf0\xaa\xb5\x55\xb5\xcf\x66\x9c\x81\x6a\x72\x9e\xac\x1a\x07\x40\xf2\x93\x89\xd7\x49\x51\xfb\x24\x96\x38\x4b\x8c\x72\x11\x9c\x94\x00\x34\x2a\x58\x7c\xe0\x4a\x66\x50\xd9\x0a\xe0\xa2\x18\xb2\xed\x10\xb0\xd1\x86\xf3\x1d\xed\x8a\x43\x1e\xc0\x3d\x31\x18\xd4\x21\xce\xa9\x2c\xfb\xa3\xa3\x4a\x52\x54\xc5\x85\x88\xdc\xb4\xb2\x05\xe2\xc3\x05\x59\x38\x00\x8e\x62\x10\xd4\x43\x7c\x4e\x36\xd5\x13\xd0\x66\xd4\xec\xc3\xa4\x41\x8e\x08\xc0\xa4\xa2\x38\x85\x22\xd2\x6d\x65\x00\x39\x1d\x3d\xe2\xe2\x6d\x5f\xa9\x52\x01\x30\x94\x6e\xc9\x1d\x0a\xaa\x61\x52\x4b\x18\x43\x4a\x4e\xd6\x00\x1a\x2a\x11\x8c\x76\xa8\x17\xb2\xaa\xa3\xc4\x4a\x87\x29\xf8\xed\xc2\x39\xf1\xb6\x48\x52\x85\x74\x3b\x25\x75\x49\xe1\xfb\xdc\x9a\x45\x64\x9a\xfb\x08\x7c\xb4\xcc\xd6\x8c\x30\xd2\xf3\xf3\x25\x7c\x8e\xe1\x9c\xc0\x7f\x3f\xc5\xb0\x53\xa6\xe0\x8f\xba\x34\x1c\x40\x52\xe7\xcb\x69\xe8\x53\xd2\xec\x43\x99\x4b\x4f\x7d\xec\x93\xeb\x83\xa9\x31\x69\xc0\x71\x10\xe8\x42\x85\x04\xd0\x51\x5d\xb0\xaa\x00\x3a\x2a\x09\x9c\x15\x97\x82\xaa\x4c\xd5\xb8\xe9\x07\xd4\x98\x32\x02\x56\x5c\xdf\x5e\xea\x3e\x79\x07\x2a\x51\x5b\x61\x61\x12\xe2\x2c\x18\xa6\x29\x3d\x69\x9c\x29\xd7\x88\x5e\x79\x8a\xa1\xf6\x09\xba\x15\xbc\x2a\xcc\x67\x31\x0e\x45\x13\x0f\x4d\x53\x8a\x97\x2e\x80\x5d\x00\x81\xd5\xe5\x18\x8a\x04\x71\x2d\xa8\x5a\x00\x8f\x95\xe4\x1a\x8f\xc4\xab\x83\xc9\x14\x5f\x1e\xba\x44\xa1\x13\xd9\x69\xe8\x04\x45\x8a\x02\xb2\x0b\xb4\x17\x69\xea\x26\xb2\xb3\xbe\x68\x7e\x0a\x91\x8c\x2b\x5d\x4c\xb2\x1f\x6e\x1c\x6e\xf8\x69\x02\x10\x41\xb1\x0b\xfd\x17\x00\x3a\xf5\x5a\xd5\x29\x18\x18\x2b\x77\xf0\x60\xc0\xaa\x12\xa6\x0a\xd2\x54\x26\x78\xb1\x36\x97\x02\x4b\xa0\x6b\x87\x95\x40\xba\x5b\x24\x38\xab\x6a\x75\xda\xe4\x33\x50\xa2\x18\xb1\x63\xb8\xd0\x45\x7f\x83\x5a\x4a\x5c\x7f\x71\x5e\xa8\xeb\xd5\x35\x52\xb3\xab\x1a\x8e\xc3\x80\x76\x74\x05\x50\x50\x5d\x6a\x66\x30\x30\x04\x01\xeb\x87\x82\x95\x40\x4b\x93\x71\xec\x8b\xeb\x07\xca\xbf\xba\x4c\xa2\xfc\x87\x4b\xc1\xce\x16\xea\x14\xcd\x9b\x53\x43\x43\xf3\xa6\xa7\x06\x87\xd2\x2a\xf1\xc3\x4b\xe1\x3a\x18\x46\xe2\x43\x01\x4f\xcb\x60\xda\xf6\x34\xd1\xf3\x51\x4c\xa1\x47\x92\x68\x40\x56\x25\x1d\x28\x23\x13\xba\x2f\x09\x99\x09\xdd\x97\x94\xce\xb0\x59\x49\x5b\x0a\xdd\x32\x97\xa7\x23\x32\xd1\xfa\x54\xb9\x03\x38\xab\x5e\x25\xd1\x81\xb3\x52\x08\xff\x43\xa1\xd9\xe1\xef\x5e\x7c\xc9\x4b\x14\x9e\xa8\xa8\xa6\x6e\xde\xa1\x15\x45\x49\x20\x16\x22\xb0\xaa\x84\xaa\x08\xb6\x5b\x1f\xf2\x24\x32\x55\x85\x62\xa7\xb9\xc3\xb4\x8a\x5d\x92\xf5\x99\xee\xdb\xa9\x1e\x53\xcb\x98\x2e\x95\xc7\x81\x64\x12\xfd\xa8\x2e\x16\xb6\xe6\x70\x31\x2f\x1a\xc8\x9c\x95\x0f\xcd\x48\x6a\x23\xb2\x52\x1f\x1e\x1d\xac\x85\x31\x34\x90\xbc\x6b\x29\x26\xca\x12\xcc\x9e\x81\xc5\x13\x42\x75\x5e\x40\xd6\x87\xcb\x81\x3f\x53\x2b\x45\x4f\x10\x76\xb5\x87\x16\xb4\xe7\xbb\xe0\xbd\x49\x51\xd0\xc2\x9b\x06\x92\x17\x01\xbb\x4b\x81\x99\xba\xba\x14\x5e\x72\x54\x8f\x71\xe3\x65\x98\x55\x78\x7b\xa0\x69\x76\xb8\x30\xb4\xa2\x81\xe6\x4a\xc2\xec\x44\xe6\x5d\xaf\xa4\x05\x9e\xb1\x32\xe4\xa1\x0d\x06\x48\x19\xd3\x53\x07\xe7\xcd\x98\xdf\x5b\x31\x18\x81\xaa\x0f\xcf\x1c\x83\x24\x57\x37\x87\xca\xbb\x59\x97\x37\x0d\x86\x5b\xc7\x1e\xfb\x43\x9c\xac\xcc\x48\xbc\x77\xd0\xfc\x1d\x7a\x1c\xce\xf9\xe1\x6d\x76\x50\x0c\x71\x25\xa0\xac\xdf\x8b\xd0\x36\x55\xa8\x63\xd3\x79\xc6\xe8\x57\x5d\x16\xd2\x28\xbc\x84\x20\xd1\x5f\x68\x2f\xa4\xe3\x55\xcf\x4c\xc8\x5b\x16\x7c\xd2\x51\x40\xac\x28\xba\x06\xd6\x5c\x21\x7d\x59\xe1\x52\x19\x34\xeb\xc9\x8c\x83\x7a\x75\x25\x1f\x74\x9f\x63\x53\x64\x41\xd6\x7a\x2c\x3c\xcb\x49\x8c\x14\xbd\x8f\x28\xbd\x0a\xd0\xac\x2e\xc5\x36\x0a\xe1\xd6\x6e\x01\xe1\xd6\x62\x9c\x22\xf3\xbe\x6a\x24\x1b\x7b\x67\x00\x30\x6b\x64\xc9\xed\x42\xf4\xb5\x47\x87\xe8\xeb\xee\x2a\x80\x5b\xae\x2e\x14\xe8\x6b\x77\x8a\xe8\x6b\x8f\x0e\xcd\x43\xdd\xa5\x00\x41\xee\x0e\x13\x6f\x2d\xde\x2c\xbc\x4e\xd0\x5d\x3b\x6f\x09\x4b\xf8\x17\x22\xac\xb5\x88\xf0\x56\x65\x4e\x9a\xfe\x42\xbc\xb5\xa4\x76\xe1\x35\x00\x4f\x31\x8e\x58\xd9\x13\x47\x0c\xc2\x43\xa1\xfa\xae\xc6\xe0\xca\x7a\xd6\x92\x02\x7c\x2a\x27\xd5\xc7\x38\x87\x4d\x20\x5f\xc6\x11\x1b\x59\xbc\x01\xf4\xd4\xc8\xe2\x30\xa0\xa7\x14\x1e\xa6\xf1\xa1\x90\x9c\x9a\xd3\xf0\x90\x26\x4f\xb9\x51\xe9\xae\xae\xa6\x30\x6a\x5a\x8b\x95\xde\xea\x66\x8a\x9d\x98\xa2\x70\x1e\x9f\x2e\x93\xcf\x11\x68\x80\x2b\x0d\x96\xcd\x85\xe2\xd8\xd4\xf5\x21\x0c\x96\xc9\x4d\x03\x16\x3b\x57\xa7\x91\x2f\x9c\xc6\x90\x46\x1a\xd2\x4a\x6f\x96\xfb\xcb\xdb\x03\xc5\x1f\x32\xcc\x6c\x71\x22\x1a\xae\xad\x81\xe1\x8d\x6c\x99\x54\x58\xb4\x31\xfd\x29\x1f\x19\x79\xfa\x7c\x38\x4c\x51\x39\x1b\x63\xa6\xe5\xa4\x55\x5c\x97\x6a\x51\xfb\x08\x9d\x96\xc0\xab\x3a\xe4\x3f\xc5\xbe\xf0\xde\xab\xb3\xc2\x02\x19\xae\xe3\x46\x9a\x3f\xfc\x80\xd2\xac\x12\x3a\x2d\x41\x05\xe8\x55\xee\x52\xd3\x2a\x81\xd4\xda\x54\x81\xbc\xca\x32\xe8\xf2\x71\xbe\xe1\x7d\x02\x71\x97\xc6\x98\x4e\x83\x99\x7f\xba\x14\xf4\xc9\xb3\x8a\xcb\x2c\x82\xe3\x04\xf0\x5b\xc3\x2a\x0b\xf0\x5a\xc3\x12\x0d\x78\xad\x21\xeb\x0c\x5f\x9b\x29\xd7\x74\xab\x69\x5f\x93\x06\xd9\x78\x4b\x40\x1b\x35\x10\x5b\xb9\xa7\xef\x9d\x82\x0c\x1d\x97\x9b\x54\x11\x00\xba\x72\xd3\x3e\x21\x44\x97\x6a\x04\xa4\x2b\x37\xb5\xad\x11\x83\xd1\x9a\x13\xe1\xc8\x97\xb8\x6b\xc2\x60\x4c\x97\x0a\x87\xa1\x34\x85\xc6\x2b\x05\xe1\x0f\x31\x4f\xc3\x14\x5c\x84\xcf\x77\x9c\x27\xd5\x48\xd0\x85\x76\x89\xc6\x2b\x05\xda\x6b\x81\x00\x1b\xde\xfb\xf4\xee\xab\xb7\x10\x40\xc0\x72\xbf\x9c\xd8\x41\x69\xdc\xe0\x81\x91\x41\x93\xc1\xef\xb2\xae\x6c\xe8\x81\xc2\x2e\x9f\x03\x1f\x28\xcc\x4d\x1a\x2c\xc0\x5d\xd9\xd2\x9f\x68\xae\x26\xad\xa9\xf1\xa2\x80\x04\x3a\xe1\x5c\x72\xc7\xf1\x31\xc2\x2c\x40\x17\xdf\x22\x54\x84\xa2\xc6\xa7\x08\x73\xf3\xc8\x50\x47\xbe\xa4\x18\x35\x7a\x5d\x3d\xc3\x0c\x8e\x68\x41\xd5\x18\x03\xad\x78\xa8\x68\x46\x17\xfe\x31\x9a\xdc\xa9\x12\x63\x00\x6f\x4d\xeb\xc5\x84\x6b\x3d\x72\xac\x6d\x3a\x9a\xd4\x22\xbe\x39\x39\x5c\xcb\xfb\xc7\xd7\xac\x4f\x25\xe0\x47\x4f\x39\x6e\xf4\x57\xf5\xab\xf3\x42\x80\x04\x10\x42\xaf\x4e\xab\xbb\x00\x7d\x15\x01\xa8\xa3\xc3\xf1\x7a\x69\xa5\xe0\xed\xa2\x22\x48\x50\x10\x11\xd6\x75\x8b\x23\x80\x08\x2b\xf2\xed\x06\x10\x61\xd3\x87\x14\xbd\x99\xa8\x3e\xe9\xd1\xc4\x61\x0a\x5d\xd2\x74\xe0\xd9\xc4\x59\xc5\x0d\x04\x92\x5d\x4f\x29\x37\xd2\x5c\x03\xf0\x7b\x9a\xf0\xae\x1b\x80\xdd\x24\xfd\x3e\x43\x54\xc6\x87\xea\x45\x00\x90\xaf\x79\xe4\x23\x8b\x32\x5a\xf3\x95\xc5\x59\x2f\x97\x82\xab\x02\x5a\xe1\x9d\x57\x05\xc2\x14\x3a\x31\x9d\x93\x33\xa1\x86\xd2\x01\x28\x8b\x44\x87\xcb\xef\x12\xf7\x23\xd6\xda\xac\x92\x75\x80\x99\x4d\x6b\xf0\x9d\x57\x05\xb4\x12\xf1\x26\xc6\xac\x5a\x0a\x08\xc1\x3e\x7d\x44\x41\x3c\xc6\x59\x25\x23\x01\x4f\x2b\xba\x0d\x10\x9d\xb7\x5b\xb4\x4a\x3b\xf9\x54\x77\x8b\x02\x58\xb5\x22\x14\x67\x00\xab\x56\x64\x34\x67\x54\xc7\x72\x3d\x1f\xe2\x86\x83\x18\x08\xd8\xb5\x22\x54\x4b\x00\xba\x96\xaa\xdc\x9f\xd1\x89\x36\x72\xdb\x08\x16\xd0\x4e\x08\xec\x5a\xb9\x9e\x9c\x7a\xfd\x4a\xf5\xc3\x6c\xe6\xe3\x4c\x97\xde\xe9\xe6\x28\xaa\xf1\xe5\x62\xd1\x56\x4f\xa9\x62\x1f\x26\x97\x8b\x6b\x06\x1a\xc7\x81\xd7\xe1\xdc\x1e\x3e\x84\xd5\x42\x02\x7e\xe0\xd6\x81\x6d\x02\x40\xb2\x85\xfb\x35\x78\x07\x21\x9c\x13\xc0\x86\xfa\x1b\xd4\xe9\x41\xd7\xa5\x38\x0c\x20\xb7\xd2\xb4\x4e\x06\x2f\x21\xa8\xe1\x83\x97\x10\xc4\x37\xc0\xb8\x85\x77\x8d\x21\xdc\xa4\x1b\x83\x8b\x14\xd5\x7d\x62\x0f\xf5\x5d\xb0\x87\xaa\x01\x17\x12\x7c\xce\x01\xc2\x2d\x6c\x11\x02\xc0\xad\xf8\x40\x0e\x7c\x5b\x58\x2a\x8c\xc3\xed\x61\xeb\x14\x9e\xf5\x0a\x5b\xa7\x06\xdd\x4c\xd3\xd5\x53\xa1\x28\xd9\x64\xa0\xa5\xa6\x16\xfa\xeb\x52\xd9\x43\xa7\xe1\x86\x4b\x75\x6b\xb0\xa0\xc5\x62\x04\xc6\xcd\xde\xdd\x38\x3a\x22\xd5\x80\x85\x4e\x79\xd6\x16\x3b\xa5\x0f\xe1\x98\xf0\xee\x36\xe8\x19\x97\x82\x8c\x80\x84\xd9\xa3\x7d\xd6\x42\x69\xd2\x74\x10\x89\x34\xcc\xee\x0c\x44\xaa\xb8\x52\x87\x64\x68\x55\x8f\x0d\xbd\xa2\x52\xcb\x80\xae\x4b\x0a\x34\xd6\xf4\xa8\x99\x42\x4d\x35\x3e\x6a\x16\x36\x2c\x0d\x05\x2e\xd4\x96\x02\x44\x5d\xb1\x25\x13\x2f\x0b\x94\xf0\xe4\x6c\x78\xf1\x3d\x54\x40\xc7\x78\x63\xd2\x4b\x35\xd1\x5c\x25\x9c\x24\xc3\x59\xe9\x24\x71\x1a\x2e\x4f\x98\x8b\xb0\x16\xac\x31\x21\x84\x5b\x09\x71\x0a\x62\xb8\x85\xb5\x22\xc0\xf4\xc2\xbb\x34\xa2\xb8\x85\x75\x24\xc2\xf4\x14\x83\xad\x31\x2e\x6b\x09\x0d\x0e\x62\xba\x15\xc1\xd8\xf9\x2e\x5b\x89\xf0\x87\x6c\xa8\x29\x34\x46\xdb\x09\x70\x7a\x45\x58\xc3\x60\x74\xed\xae\x2b\x99\x31\x83\xad\x51\x85\xbc\x56\x23\xb9\x8c\xf8\x6d\xc5\xd6\x49\x04\x70\x0b\xf9\xbe\x62\xf2\x5a\x4d\xb8\x14\x0c\xf0\xf4\x77\x1b\x94\xfa\x1b\x6c\x9a\x73\xe2\x1e\xcd\x74\x29\x37\xcd\xc8\xce\x8a\x0b\x40\xe2\x0d\x02\xfe\x7a\xd6\xa9\x8b\xe1\xde\x46\x91\x61\x7c\xca\x87\xe6\x72\xf5\x48\xd4\x74\xe6\x46\x36\x53\xbf\x16\xae\xfd\x48\x56\xe3\x95\xa0\x5a\xdc\xcb\xc5\x5b\x1d\x1e\x57\x62\x75\xbc\x53\xf1\x91\xba\x16\x1e\xd9\x23\x91\x6b\x31\x25\x67\x97\xb2\xd2\x53\x6a\xb3\x18\x00\x82\xb5\xb8\x6b\xf4\x94\xda\xf6\x05\x80\x60\xb5\x0d\x87\x00\xc1\xae\x0b\x9f\x31\x75\x49\xc6\xe3\xc0\x4b\x32\x62\x42\x02\x06\x2f\x6b\x0e\x93\x77\x66\x3c\x7f\xba\x24\x13\xce\xcb\x4b\x32\x9e\xa5\xc3\xa3\x55\x0e\x29\x3e\xff\x7b\x12\x93\x48\x42\x54\xa6\x53\x33\xc9\x2c\xb2\x70\x3c\xa7\x48\x6e\x21\x4e\xe4\x1d\x9f\xf9\xbd\xbb\x50\x2f\xf5\x5d\xb6\x0f\x32\x44\xdc\x65\x9d\x21\x74\xc3\x46\xac\x43\x04\xe2\x65\x53\x1f\x21\x88\x5d\xd7\xc1\xf9\xac\x5f\xb5\x4d\x32\x64\x6c\xd3\x30\x05\x03\x8a\x3e\x9f\x12\xf3\x3e\xb5\xae\x03\xa8\x33\x9b\x3a\x43\x2f\x7b\xc9\xb5\x00\x18\x62\xb5\x45\x0d\x31\xe7\x4e\x1b\x54\xcd\x91\xc1\xd5\xb6\x10\x46\x9d\xbb\xbc\x5f\x47\xe8\x6d\x48\x75\x4e\x10\x64\xd9\xed\x88\x35\x4c\xc2\xe1\xe8\xdd\x41\x5f\x35\x0a\x80\x0d\xab\x59\x34\x96\x5c\x01\x2a\x69\xe1\x4a\x50\x37\x85\x5b\x3f\x3a\x0f\x86\x9e\xef\x97\x6b\x02\x30\xc5\x6a\xa3\x1a\x50\x8a\xd5\xa6\xb2\x20\x66\x5e\xe7\x63\xa0\x14\xab\x4d\x37\x40\x29\x56\xf9\x83\x03\x28\xc5\x53\xa8\x86\x7a\x09\x4c\xed\xd4\x0f\xf2\xaa\x23\x5b\xfd\xd2\xa4\x6d\xe0\xfb\xba\x29\x3a\x03\xb4\x85\x85\x5c\x1c\xf2\xbf\x04\xd7\x88\x99\x01\x8b\xc2\x12\x06\x08\xc7\xf3\xa5\xba\xb9\xd9\x2f\x35\x68\x73\x1a\x5c\x8c\x6c\xe5\x26\xe9\x1e\x68\xfe\x92\x38\x9c\xcb\xa9\xe8\x4b\x33\xdf\xe3\xd0\x98\x7c\x88\x40\x7c\xbe\xa6\xab\xa9\x7a\xfd\x31\xf9\xf8\xb1\xe8\xd9\xf0\x79\x6f\xd1\xb5\x21\x4f\x74\x10\x21\x99\x04\x94\x09\x46\xef\xd3\x05\xe0\x58\x74\x75\x08\x29\x13\x08\xe0\xd7\x74\x3b\x36\x14\xb2\x2f\xba\x0b\x42\x3c\x18\x61\x48\x82\x11\xfc\x5a\x54\x7f\x7a\x03\x1f\xe6\x5a\x70\x71\x4b\x4c\x04\xa8\x65\xd3\x65\xdd\x58\x7c\xf2\xde\x33\xbc\x78\xcd\x4c\x98\xad\x40\xb4\xbe\x56\x34\xc3\xc4\x56\xe6\x5f\x3f\x9d\xbc\x6d\xa5\x5a\xe0\x9f\xce\xbf\x56\xb3\x48\xfa\xdb\x17\x49\x35\x1f\xab\x20\x3f\x9d\xe3\x83\x32\x36\x34\x32\xa0\x5f\xed\x62\x50\x01\x2e\xb3\x66\x92\x18\xcb\xd6\x3c\x12\x87\xd3\x5b\xf5\xf0\x23\x88\x67\x95\x34\xe3\x4b\x3c\x59\x90\xeb\x20\xe2\x32\xd7\xe4\x54\xb4\xa9\x66\x17\xf4\x66\xaa\x1a\x81\xb7\xa4\xad\x57\x2d\xda\xd7\x74\x2b\x44\x0f\x73\x0e\x81\x21\x62\x81\x83\xb3\x0d\xcc\x88\x0b\x78\x48\x95\x74\x38\xb8\xf5\x27\xb1\x31\x51\x8d\x00\xde\xa1\x57\x17\x34\x40\x69\xd0\xf4\xc0\xe7\x93\xf8\x42\xa2\x3f\xe4\xd3\x0c\xe2\x00\x20\x3d\x9b\x80\x78\x7c\xfc\xb3\x09\xe9\x19\x40\x7a\x36\x21\x93\xf4\x12\x68\xb9\xa4\x15\x11\xea\x59\x92\xb6\x3a\x3e\x66\x5e\x92\xf6\x24\x04\x0b\x54\x24\xf3\x43\x05\xa8\x22\x6a\x81\xfa\x0d\xe6\x92\x4d\xf7\x88\x1d\x57\xc0\x8c\xb6\xf9\x50\x6f\xc6\x60\x52\x25\x81\x70\xb6\x9a\x33\x3e\x36\x5a\xec\xc7\xe2\x63\xa3\xa5\xc9\xf2\xc0\x57\x8c\xa6\x2e\xdb\x07\x80\xa1\x7a\x51\xfc\x50\xeb\xc7\xd7\x7c\x72\xc2\xa1\x9f\x45\x1c\x0d\xe3\x29\x12\x1e\x73\x57\x47\x00\xa0\x7a\x0f\x00\xa0\x47\x91\x11\x0a\xc5\x5a\x7c\xe5\xc8\x41\x0e\x82\xa1\xab\x93\x47\x86\xbe\x66\x09\x75\xbc\x80\xd4\xf3\x93\x06\x37\xa5\x47\x94\x1e\xe4\x27\x27\x77\x2f\xed\x2b\x08\x5f\xd8\xb3\x96\xdf\x96\xd3\x58\x9b\x19\xdf\x46\x4a\x4e\xd4\x4b\xb1\xda\xb8\x19\x6e\xb0\x6a\xa5\x6e\xc6\xd1\x6a\xce\xaa\x30\xa8\xa2\x18\x84\xf9\x72\x22\x74\x99\xa1\x45\xb0\xe5\x1c\x20\xc5\x47\x93\xba\x20\xec\x81\x67\x91\x14\x9b\xbd\xf1\xc1\xd5\x2c\x58\x4d\x00\x25\x9a\x7b\x72\x1a\x0c\x90\x1a\x3a\x04\x0f\xcc\x3d\x99\xa2\x61\x21\x44\xe1\x84\xae\xd5\x8c\xa8\x80\x61\xcc\x00\x70\xa1\x47\xb2\xaa\xd0\x33\xf7\xd5\x6c\x8c\xb0\x80\x55\x80\xb0\x78\x79\xd3\x55\xa9\xc2\x1e\x68\xf7\x7e\xe9\x62\xeb\x53\x10\xbd\x0c\xcd\xdf\xde\xbc\x60\x51\x44\x1e\x8e\x90\xcb\xe5\xc5\x3b\x41\x92\x18\x08\x22\x18\x5a\x9d\x08\x21\x18\x32\xd5\x03\xe5\xd9\x7d\x2a\x02\xca\x53\x97\x02\xf8\x40\x6c\x54\x97\x87\x68\x89\xe1\xaf\x8e\x4e\x2e\xa9\x41\xbc\xa7\x24\x01\x01\x9e\xed\xc9\x88\xcb\xd5\x5a\x2f\x2f\x06\xa8\x74\x57\xe9\xbc\x77\x7b\x09\xa9\x0b\x77\x8d\xfb\x5a\xf1\x87\x88\x4e\x2c\xb4\x97\x9e\x9b\x55\xcc\x9f\x20\x4e\x53\x17\xb9\x82\x40\xcd\xee\xad\x49\x4f\xd1\xda\x18\xfb\x56\xb0\x5f\x53\x34\x3f\x49\x8d\x65\x48\x40\x3b\xde\x19\x04\x50\xf7\x3e\xe2\x4d\x97\xfd\x53\xc9\x46\x9a\x73\x02\x21\xf2\x34\x07\xca\xc6\xf3\x1d\xfb\x71\x89\xc2\xf6\x2c\x5f\xdb\x1b\x5a\x5d\x92\xab\x91\x60\xce\xe4\xa6\x01\x0c\x68\x77\x26\xe1\x9b\xb3\x88\xf5\x88\xdf\x7c\x6c\x4c\x8c\xed\x57\x47\x76\x41\x1f\x46\x54\x57\xe6\xa5\x57\xe8\x45\xc1\xa5\xdc\x4d\xc1\x96\x22\x4b\x12\xb1\x98\x4f\xa9\xc4\x62\x26\x9d\x0e\xde\x80\x9a\xd4\xee\x44\xdc\x66\x91\x05\xe4\xcd\x57\x42\x74\x94\x55\xd0\xbe\xe6\x9c\x70\x29\x37\x57\x08\xdf\xb7\x36\x53\x84\xe9\xeb\x55\x3b\xfa\x9b\x37\x92\xda\xb7\xe1\xa2\x4f\x56\xf4\x42\x1b\xf8\x9b\xb7\x95\xa4\x4f\x32\x68\x9f\x6e\x07\xc6\x9b\xc8\x29\xc9\x0c\x06\xe6\x9b\xcf\x48\x01\x57\x5e\xbb\x29\x9c\xde\x2f\xb7\x06\xed\x96\x56\x48\x84\xe7\xd4\xbd\x9f\x60\xf4\xbd\x3a\xd5\x2b\x86\xdf\xd3\xdd\xc1\xb8\xe9\x7c\xd4\x97\x0c\xb8\x67\x13\x1c\x03\xe7\x4d\x21\x4e\x83\xb1\xf2\x9a\xc0\xfb\xc1\x58\x79\xd6\x5a\x6f\xb0\x95\xc0\x5c\x71\xcb\xc1\xa8\x3e\x23\x74\x5e\x17\x90\x2c\x18\xcb\xbf\x0b\xd8\x19\x7a\x9c\x4d\x27\x39\x42\x47\x05\x81\x0b\x46\xcb\x13\x84\x8d\x8f\x2f\xf7\xe9\xd6\xc1\xc1\x2e\x14\x5c\x10\x3a\x3a\xdd\x54\x44\xcb\x13\xaa\x2e\x10\x2d\xaf\x0b\x22\x17\x37\x2f\xc5\x1a\x5b\x06\x24\x69\x17\x94\x4d\x0f\x3a\xfb\x28\xc0\x67\x4c\xa7\x6e\xec\xc4\xad\xbd\x49\xf5\xd3\x8d\xa4\x2d\x12\x40\xd2\x2e\xb4\x5e\x00\x48\xda\x85\xa9\x8b\x9b\xef\x4b\x8c\x87\x64\x6c\x5d\xa9\xbd\x0a\xb3\x27\xb1\x88\xd8\x79\x29\x2c\x2e\x88\xe2\x9c\xf6\x2a\x22\x78\x5e\xf7\xd6\x00\x4c\xa7\xde\x1f\x3e\x14\x1c\x79\x6e\x3a\x1c\x39\xd9\xa3\xba\xe1\x0f\xd3\x42\xba\xf9\xf2\x42\x9d\x2e\x14\xd1\xa7\x3c\x91\x1b\x17\x4d\xcc\x10\x7c\x1d\xc1\x1b\xe9\x4d\xef\xa4\x46\x00\x58\xd1\x91\xb5\x37\x02\x2a\x9a\xd3\x93\x86\x10\x5a\xaa\x5f\x6f\xba\xea\x06\x55\x7c\x10\x0c\x2a\x6b\x79\x22\x98\xde\xc8\x3a\x5a\x32\x98\x5e\xeb\x1a\x80\x0f\xaf\xc8\x6a\x74\x00\x17\xd5\xdb\x92\x87\xe2\xc8\xf9\x43\xdc\x2c\x12\xaf\x00\x3c\x3a\xb2\xbf\xa3\x5f\x51\x8a\xef\x87\x8e\x44\x7f\xc7\x6b\x71\xdd\x39\xf9\xb6\xb4\x34\x75\x04\xb7\x1b\x66\xb9\x8f\x77\x34\xe7\xe5\x25\x50\x49\x56\xa2\x43\xbb\xc4\x3e\xd0\xa1\x59\x57\x5b\xe3\x43\x8c\xf9\x93\x06\x8f\x8c\x98\x05\xd8\xd0\x61\x85\xea\x43\x8f\x8c\x16\x3d\xd0\xa1\x63\x6a\x4f\xff\xe8\x89\x9b\x70\xa1\xb8\x99\xf1\x54\x01\x90\x7e\x76\x56\x34\x5c\x8a\x02\x90\xa0\xc3\xab\x8a\x50\x50\x2b\x6d\x9f\xa5\x57\xbf\x34\x70\xf0\x3f\x0a\x53\x1c\x80\x83\x1a\xd6\xcc\x57\xc9\x1d\xa1\x2e\x08\x08\xf5\x22\x63\xc0\x3c\xaf\x23\xe2\x43\xab\xfb\x0b\x46\xb5\x70\x00\x3e\x34\xf7\xa7\x86\x89\x34\xe7\x84\x7e\xe3\xc9\x87\x13\xbd\x4b\xc3\xfb\xc8\x1b\xe9\x34\x76\xd0\xb5\xb3\x83\xea\xbc\xb0\xa4\x2c\x86\xcf\xf9\x8c\xb3\xfe\xbf\x93\xd5\x0b\xb0\x53\x5f\x2a\x59\x78\x5b\x2d\x33\x28\xfd\xa1\x88\xe0\xe4\xba\x5d\xc0\xa1\x8e\x49\x31\xb2\x10\xae\x2f\xf3\x71\x87\x43\xc1\xab\x47\x7d\x66\x31\x5c\x9f\x4c\xf7\x0b\xb8\x54\x45\xa1\x3f\x14\x1c\xee\x5c\x43\x0b\xc8\xd4\xcc\x07\x11\x1a\xdf\x1d\x52\x84\xf2\x43\xa1\xc3\xd9\xb5\xa3\xc3\x4f\x0f\x39\xa3\xca\x19\x9c\x42\xd5\x4e\xa0\xb4\xc6\x7b\x01\x78\x3a\x84\x24\x5e\x7c\xd6\x38\xb4\xad\xf3\xe9\xf8\xa9\x4b\x7f\x0b\xd0\xd2\x59\xb3\xda\x8d\x78\x50\xf5\x29\xf5\x28\x94\x32\xdd\x2f\x40\x4b\x0d\x60\x5a\x84\x96\xf6\xe6\x3a\xce\x4a\x28\xb2\x9d\x2f\x60\x4b\x8b\x6c\xc7\xeb\xd2\x6b\xc0\x97\x4a\x85\x43\x48\x07\xc9\x05\xa0\x69\xb9\x9e\x62\xc8\x52\x1a\x1b\x2f\x05\xf5\x0a\xe0\x7c\x81\xdd\x17\x90\xa6\x53\x27\xce\x05\xa4\xe9\x64\x08\xd4\x43\xc1\x21\xf4\x7c\xc7\x4e\xb9\x50\x78\x14\x3d\xa5\x0b\x9d\xca\x6e\x0c\xbc\x5a\x21\x6a\x53\xa0\xa8\xfb\x1b\xcd\x36\xd7\x6c\x36\x5b\x53\x83\x90\x66\xdd\xa5\x20\x78\x79\x35\x47\x6d\xb6\x5a\x63\x01\xa0\x74\xf5\x94\x6e\xb4\xda\xb3\x26\x33\x4b\x51\x27\x00\xa3\xae\x0f\x05\x37\x8a\x47\x86\xae\x4f\xf1\x09\xd1\xa2\x4d\x67\xe6\x95\xf8\x72\x89\xee\xff\x2c\xbe\x3a\xd3\x2e\x6e\xc5\x0b\xc0\xcf\xa9\xa0\x07\x0b\x81\xf8\x42\xd8\xda\x05\x18\x68\x91\x9d\x74\x01\x06\x5a\x74\x3e\x5c\x40\x81\x16\x05\x6a\x5b\x89\x5e\x9d\xe4\x34\xdc\x5b\xd7\xcc\x00\x03\x1a\xb2\x07\xad\x44\x3f\x4e\x33\x85\x17\x18\xba\x29\xdc\xff\xd4\x32\x01\x5a\xb4\x34\x37\x1b\xf6\x70\x45\xa3\x5c\x88\xca\x57\x14\x06\x70\x21\x2a\x5f\x91\x15\x63\x25\xfa\x6d\x92\x4b\x61\x1f\xd4\x5b\xf8\x6d\x92\x7b\xcb\x17\x4e\xc6\x53\x0c\x3b\xa1\x2e\xe1\x4e\xa3\x3c\xbf\x2b\xe9\x32\x91\x16\x2d\xf0\xa9\x45\x41\xeb\x56\xe2\xbd\x55\x2d\x13\xe0\x53\x43\x08\xe0\x05\x7c\x6a\x08\x82\xbc\x80\x41\x0d\x01\x6b\x17\x31\xa8\x6d\x3c\x89\x18\xe0\xae\x61\x53\x20\x3e\xcf\x22\xe3\xa6\x75\x53\x18\x53\x2d\x5a\xc0\x4c\x43\xe7\xe0\x95\x78\xc0\x91\xc9\x7a\x11\x67\x6a\xe0\xd5\x02\xd0\x34\x84\x4a\x59\x00\x9a\x56\x9d\x58\x17\x80\xa6\x21\x69\xbb\x12\x8c\x7e\x97\xdb\x4a\xc7\x8d\x04\x21\xa0\xa5\x21\xe9\xbe\x12\xfd\x36\x53\x63\x73\x58\xb3\x5e\x9e\xef\x23\x97\x1d\x25\x61\x25\xfa\x6d\x68\xc2\x5b\x99\x71\xa3\x7e\x03\x96\x6f\x65\x3a\x75\x68\xec\x5b\x99\x4e\x1d\xf5\x10\x01\xfd\xf4\x66\xe5\xa1\xd8\x25\xa7\xa1\x4b\xd3\x14\x1c\x13\xe1\x9c\x08\x76\x11\x2e\x93\x7e\x2a\xa7\x2d\x94\xd2\x45\xe1\xee\x29\x0d\x91\x0b\xb0\xd3\x90\x46\xb6\x00\x3b\x0d\x6d\x82\x0b\xa8\xd3\x10\x5c\x67\x01\x75\x1a\x3a\xac\x2f\xa2\x4e\x67\x68\x2c\x00\x3b\xad\xb2\xb0\x2c\xa0\x4e\x43\x5a\xc7\x22\xcc\xf4\x61\xa2\xcc\xb0\x1c\x34\xdb\xaf\xcc\x87\x45\x75\xf0\x5d\x59\xcf\x7b\x84\x3f\x45\x94\x0e\x8f\x14\xaf\x03\xd4\xa7\x5c\x18\xf1\x9f\x82\xe0\xa1\x70\x63\x19\x3b\xbd\xba\x79\x50\x84\xaf\xea\x26\xf0\x62\x66\xf5\x28\x33\xe6\x83\x4e\x66\x0b\x48\xd3\x5a\x3c\x40\x3a\x99\x3d\x89\x8c\x8c\xe5\x2f\xe1\x5f\x71\x6b\xf5\xc0\xb7\x27\x81\x17\xb9\xbd\x37\x10\x6c\x7a\x55\x4f\x03\xdd\x41\xe6\x1e\x5e\x01\xae\x1e\x40\xfa\xeb\xb3\xab\xd9\x6a\xbe\x9a\x84\x3b\xc0\xc5\x7c\x40\xf7\x65\xf5\x14\x6e\x86\xce\x94\x18\x02\x18\x34\xa5\xab\xf8\xd3\xcd\xf3\xa9\x53\x69\xf1\x28\xae\x47\xa6\x7b\xa7\xde\x30\xaa\xfb\xd3\x0f\xf3\xb2\xb3\xc0\x80\x56\x1d\x26\x56\x11\x70\x9f\x87\xed\x85\x68\x80\x55\x67\xa2\x55\x84\xd5\x27\x06\x73\x01\x05\xaa\x90\xe5\x87\x22\x58\x5f\x9b\x16\x61\xa0\xe9\xd2\xd6\x20\x1c\xe8\xa4\xd3\x64\x15\x1a\xb0\x9b\xf3\xca\xfe\xae\x44\xfa\x6d\x14\xff\x6a\x21\xea\x5f\xbb\xfc\x65\xc8\xfe\xae\x4f\x0f\xbf\xb6\x8b\xc7\xe6\x85\x20\x80\x27\xd1\x24\xcd\xef\x6a\x6e\xd0\xfc\x1e\x26\xf1\x1c\x54\x36\x15\xa0\x5c\x25\xed\xca\x12\x5e\x08\x03\x78\x48\xf5\x94\xa8\x69\x01\xb0\xf4\x1c\x62\xf6\xae\x5b\xe8\xb2\x14\x92\x6a\x01\x61\xaa\x47\x81\x0f\x25\xcb\xb1\x3a\xb3\x68\x39\x56\x73\xc1\xa1\xa5\x68\xd6\x0a\xaf\x06\x14\x0f\x28\xae\x75\xea\xb6\xf2\x02\x72\xb4\x7b\x22\xa0\x63\x5f\x26\x68\x2d\x11\xc5\xab\x79\xba\xe9\xbd\x0a\xc5\xf0\x70\x29\x7a\x6b\x75\xaa\xe9\xb0\x34\x59\x3f\x2c\x74\xa1\x74\x4f\x03\xe4\x69\x72\x2f\x29\x4f\x93\xcb\xb9\x21\x27\x34\x3e\x5b\x6b\x80\xfd\xa8\x3a\xd9\x8b\x73\x81\x16\xed\xf2\x6a\x2d\x3e\x3a\xeb\xc8\xb2\xab\x32\x46\x8d\xce\x27\x7c\x2d\xb2\x2b\x52\xc8\xe2\xdb\x6c\x8e\x90\xbb\x00\x0a\x6d\xd5\x1f\xe2\x36\x44\x37\x85\xb3\xf4\x6f\x00\xfa\x2d\x21\x44\x69\x0e\x5f\x42\x88\x9a\x52\x3c\x73\xed\x68\x00\x85\x9e\x89\xae\x22\x2b\xac\xee\x6a\x1c\x2c\x04\xc5\x1f\x1e\xed\x2a\x39\x1f\x8c\xd6\xd5\x14\xed\x25\xea\x43\xf0\x69\xd8\xcb\x89\x50\x58\x05\xa5\x5c\x55\x47\x37\x75\x0a\xde\xc1\xa7\x31\x70\x07\x2a\xb4\x11\x5f\xca\xac\xd7\xf3\x1d\x9e\x1d\xd0\x18\xe2\x38\x26\x61\x45\xa4\xe8\xe5\x02\x71\x01\xd2\xd9\xf8\x2a\x94\x4b\xc7\xfd\x47\x35\x12\xfa\xa7\x34\x10\x80\x44\xbb\xa2\x04\x2e\xc0\x42\x75\xb8\x5b\x7c\xa4\xdc\x51\x91\x57\x55\xdc\x34\x0f\x10\x10\xeb\x42\xea\xe8\xc5\x4d\x45\xae\x5a\x8a\xab\x27\x0e\x01\xda\x32\x59\x89\x07\xda\xb2\x57\x89\x41\x42\x28\xad\x43\x37\xe2\x82\xe9\xda\x58\x4d\xc7\xf0\x29\x0a\xca\x91\xd3\x08\x53\x1b\x2a\x45\x57\x38\x55\x7b\x30\x76\x9f\xea\x0b\xd6\x5e\x45\x81\x21\xa5\x61\x35\xc6\xff\x7e\x4a\xe1\x41\x48\x94\x4e\x17\x2a\x93\x68\x33\x71\x2e\x90\x8f\xb9\x3f\x39\x1b\xed\xb2\xaa\x02\x20\x32\xc5\x84\x5e\x80\x37\x56\x5d\xde\xe4\x6b\xa2\xf5\x7a\x72\x52\xc1\x31\x85\x80\x2b\x52\x7e\xf0\xe8\x7b\x7d\x1a\x8a\x65\x9f\x2d\xfa\x88\x83\x2c\x4f\xc3\x31\x51\xa5\x48\x36\x37\xbd\x46\x27\xa2\x9e\x19\xd5\xa8\xf1\xd5\xd4\xf0\x90\xe2\xd0\x90\x4c\xe0\x3d\x12\xf7\x17\xd1\x67\x9a\xda\x02\x74\x4d\x73\x0a\xa3\xae\xa8\xd1\xe2\x02\xcd\x34\x0e\x0c\x4f\x23\x11\xf9\xe9\x32\x85\xe8\x75\xe2\x4e\x00\x27\xbb\x0f\x6b\x00\x4e\x0a\x9f\xb3\x80\x9b\x8c\xe6\x7c\x47\xe9\xa5\xb5\x6f\x01\x35\xc9\xf7\xab\x0f\x81\xa0\x13\x12\x51\x7c\x8c\xb1\xc9\x03\xb9\x3a\xed\xd4\xd5\x85\x60\xf7\xac\x4e\x83\x93\xa6\x38\x8d\xaf\xc3\x71\xe4\x00\x7e\xec\x82\x89\x2f\x06\xd5\x53\x24\xa3\xd5\xe9\x6a\x95\x6c\xef\xbc\x66\x29\xbf\xd6\xea\xdc\x8b\xaa\x29\x38\x90\x8a\xb3\xf2\xfd\x3c\x55\x0f\xbd\x2a\xe9\x60\xc4\xb8\x7a\x2d\x4f\xd7\x8f\x96\xba\x6d\xc4\x1a\x3c\x6d\x83\xff\xd0\x4a\x35\xa2\xec\x75\x5d\x4d\xe7\xc3\xb3\x3d\xbb\xd4\x45\xb3\xb9\x1a\x4e\xdc\x41\xf5\x77\xd8\x52\xab\xbf\x43\x68\xcf\xea\x9c\x14\xcf\xea\x05\xdd\x60\xcf\x77\x50\x07\x3c\x34\xd0\x99\xda\xf8\x0d\x90\xbe\xc5\x68\x7d\x3e\x5f\x77\x6c\x67\x3e\x8c\x12\xff\xd8\x14\x8e\x70\x31\x78\x9f\xec\x87\xab\xd3\xbe\x2d\x65\x85\xb1\xfb\x7c\x86\xee\xbc\xca\xa6\xd3\x40\xa7\xed\x5b\xa7\xc6\x4e\xdb\xf7\x70\x15\xb2\xe0\xab\x57\x7c\xca\x6b\x9a\x53\xf8\xc8\x42\x72\xa9\xb8\xda\x36\x5c\x3f\x74\x9c\xe4\xb6\x61\x47\x1a\xce\x09\xc3\xb8\x36\xda\x2e\x6b\xa6\x5b\xf3\xe1\xc3\x24\x4c\x1c\xb4\x8b\xd3\xba\xbd\x06\xef\xb6\xa9\xc3\x40\x4d\x3a\x4e\xd0\x1a\xb4\x66\xda\xbc\x33\xf8\x74\x78\x31\xd5\xf9\x62\xb9\x28\x38\x0c\xa7\x8b\x81\x5b\x42\xc7\x0a\x85\x06\xfc\xb5\x18\x3e\xc6\xef\xac\x7c\xf7\xdd\x59\xd9\xa9\x26\xea\xcd\xd7\x8c\x45\xe1\xbe\xde\x30\x05\x9f\x85\x74\xce\xc1\x2b\xf4\xd9\x14\x9c\x2b\xae\x8f\x10\x05\x09\x47\xc6\x05\xb4\xb1\x63\x48\x18\x0f\x51\x98\xa8\xe9\xef\x78\x09\x42\x1d\x0c\x75\xc2\x1f\xe2\xb6\x98\x54\xeb\x41\xc3\x7b\x76\x31\xbc\x84\xe4\x62\xa8\x2b\xb8\xfa\x1b\x94\x4a\xc1\xa2\xd1\x1d\xbc\xc5\x18\x81\xde\xd6\x87\x6f\x6f\x88\x82\xea\xe4\x61\xe2\x55\x0e\x8f\x36\x6f\xbc\xe9\xf0\x33\x74\x77\xc3\x39\xe1\x2e\x10\x97\x12\x19\xe9\x23\xd5\x20\x98\xdd\x8a\x1d\x70\x92\x39\x3d\x85\xa2\xd9\xc5\xc5\xb0\xd9\x4e\xc3\xd2\xef\x1e\x7c\x2e\x1a\xc5\x69\x5d\xc0\x50\x76\x8b\x71\x40\x28\xfb\xf4\xb0\x61\x2b\xf0\x96\x36\xa8\x0f\x6a\x7d\x03\x5e\xd9\xa7\xd9\x8b\xf1\x0a\x3d\xf7\xd8\x0c\xa6\x79\x86\x6f\x61\xca\xd3\xb9\x06\xa3\x5b\x59\x01\x04\xda\xb2\xdb\x2a\x68\xb4\xa5\x86\x18\x8b\xc6\x66\x4f\x80\x2d\xfb\x34\x0b\x63\x7f\x98\x4f\x29\xbc\x10\x45\x0a\x60\xcb\xee\x6d\x6b\xf2\x5a\x9b\x8e\x64\x8c\x89\xd8\x84\xe4\x5f\x53\xcf\x9b\x98\x82\xd9\x33\x5c\x0c\xf4\x89\x27\x8d\xee\x89\x70\xa9\x18\x7f\xb5\x14\x6f\xe3\xa6\xa6\x8b\x64\x7c\x7e\x7b\x28\xc4\xed\x9a\x7c\xa5\x44\x1c\x36\xc9\xe0\x53\x26\x2b\x00\x2c\x73\x72\x25\xb4\xfa\xbb\x1f\x41\x4f\x4a\x88\x82\x43\x42\xac\x32\xf9\x30\x89\xf8\x9d\x8f\xe4\x66\x89\x17\xbd\x92\xeb\x11\x9f\x8c\x8c\xf7\x7c\x48\xc6\x71\x15\x50\x78\xa7\x73\x42\xe1\x75\xbb\xa1\x70\xa6\xef\xdf\x9e\x3d\x59\x19\x32\x4b\xa2\x60\xf2\xa5\x12\xad\x37\x86\x62\xec\x82\x07\xac\xc9\xab\x73\x9e\x0f\x1c\x73\xda\xd4\x46\x31\x79\x3f\x4e\xab\x83\x48\xcc\xa6\x0b\x72\x6b\x72\x09\x74\x8f\x24\xcd\x4f\xd3\xa9\xbc\xe9\xa6\xe5\x02\x78\xa5\x6f\xc8\x2d\xa0\x2b\xb3\x62\x61\xad\x49\x03\xa7\x59\x80\xa6\xfe\x62\x0a\xfe\x0a\x29\x0d\x08\xb8\x98\xfb\x53\xca\x9b\x76\x49\x17\x03\xf3\xb6\x04\x35\xd0\x93\xd9\x87\xb0\xe0\xe5\x22\xc9\x0a\x60\x27\xc7\xec\xa6\xe0\xa1\xa8\xce\x09\x83\xbd\x36\xd1\xa0\xd4\x16\x5c\x62\x05\x2d\xf6\xda\x37\x83\x16\xfb\xe6\xac\x68\x37\x9d\xfd\x2b\x08\xc1\x28\x6e\x0c\x2c\xf6\xd5\x69\x50\x4d\x9b\xcb\x84\x8d\x5e\xda\x59\xd0\x2a\xaf\xdd\x3e\x70\x61\x68\xca\x8e\xc0\xb0\x8d\x53\x8a\x10\x20\x92\x43\x71\x4f\x96\x20\x92\x0a\x5e\xb1\x18\xc5\xd1\xcb\x11\x51\x1c\xc7\xd4\x6a\x08\x86\xea\x92\x06\x05\xf8\xa4\x6f\x32\x2f\x86\x74\x6c\xba\x91\xb8\x00\x9f\xcc\xfd\x69\x0d\x3c\x0d\xd5\xad\x41\x2f\xba\xab\x60\x20\x2f\x7f\x87\xa9\x28\xae\x02\x3e\x37\x8f\x1a\xa3\x2a\x69\xee\x09\xb2\x6c\x5d\xcb\x2f\xa8\x8b\x17\x53\x44\x3a\x78\x12\x17\xa7\x46\x5d\xa4\xd3\xcb\x63\xba\x38\x33\x4e\x63\x34\x32\x53\x7c\xf0\x73\xb8\x18\xb2\x94\xeb\x60\x17\xd5\x54\x86\x38\x8f\x64\x12\x7d\xd4\x62\x60\x64\xc8\xf9\x34\xee\xa6\x1c\x57\xb7\xe8\x11\xf3\xc0\x6d\x75\x4b\x23\x07\x7c\xbb\xf5\xe5\xa0\x09\xdf\xa3\xca\xd0\xd3\x42\xfd\x2d\x40\x25\x67\x75\x97\x69\xc2\x37\x4f\x23\x14\x4a\x75\x97\x79\xb3\xc9\x8c\x43\xad\x65\x76\x7f\xf8\x41\x8d\x6c\x1c\x61\x92\x75\x4a\x8b\x22\x4c\xb2\x09\xbf\xb8\x00\x93\x9c\x0a\x7a\xb0\x80\x92\x9c\x0a\xb2\xb0\x08\x8b\x6c\x56\x23\x17\x5f\x91\x12\xac\x7c\x01\x08\x39\x75\x7d\x7d\x01\x07\x39\x15\x66\x61\x2d\x42\x8b\xb4\x72\x17\x7d\x4f\xc4\x44\x2d\x80\x22\xa7\xf0\x14\x0b\xa0\xc8\xb0\x16\xbd\x88\x7f\x0f\x37\x07\xf6\x7e\xfb\x09\x00\x91\x9c\x0a\xd4\xbc\x10\x8d\x72\x56\xb7\x8d\xb7\x94\xaa\x29\xc6\x65\xaa\xfe\x90\x32\x66\x8a\x62\xe4\xd2\x66\x72\x61\xb0\x4c\x6d\xd4\xa8\xa6\xd2\xa1\xa5\xc5\x0a\xe8\xe4\xac\xcf\x77\xf0\xfd\x14\xb7\x06\x9d\x12\x27\x2d\x5a\x9a\x46\xfb\xfe\x45\x97\x45\x8c\x65\x13\xf2\x6c\xe1\xa9\xe4\xa9\x50\x12\x8b\x88\xcb\xb0\xf9\x80\xcf\x23\x0b\xae\xb7\xf8\x3e\xb2\x62\x59\xac\x85\xc3\xaa\x6d\xfc\x8b\x1e\x2d\x0f\x39\x64\x77\x24\x37\x9d\xf7\x50\xfb\xd3\x5a\x72\x96\xbf\x44\xbf\xaa\xd3\xd8\x2f\xa5\x31\x3e\xb7\x96\xef\x92\x1f\x41\x85\xe2\x8e\xd3\xd3\x0d\xdc\x71\x12\x5e\x6d\x01\x87\x19\x3e\x7f\x01\x87\xe9\x80\x20\x8b\x8f\x37\xfb\x38\x02\x18\x66\xd8\x46\xb6\x70\x76\x15\xd2\x61\x01\x94\x19\x3e\xfe\xe0\x21\xe7\x10\xbe\x68\x21\x30\x67\x24\x73\x03\x6e\x01\x36\x73\x3c\x83\xaa\x0e\xe7\x84\xa3\x66\xb8\x06\x78\x46\x24\x01\x01\xe5\x0c\xdb\x3e\x00\xe5\x2c\x02\xb4\xaf\xcd\xd7\xbf\xb5\xe2\x09\xe5\xac\x56\xdb\xf1\xcc\x73\x08\x03\xb1\x80\xe4\x0c\x21\xc1\x16\x42\x78\x86\x00\x8a\x6b\xf3\x5a\x54\x71\xa1\xb8\x16\x35\x9c\x86\x2e\x89\xa5\x80\xdc\x0c\x41\xb4\xd6\xa6\x03\x6d\xb8\x4c\xf8\x9e\xc4\xdf\x7c\x2e\xba\xd9\x3e\xbd\x27\xd1\x3c\x72\xfe\x30\xf4\x67\xd8\x54\x41\x58\x67\x17\xd2\x75\x21\xda\x67\xd8\x83\xbc\x89\xec\x93\x06\x08\x50\x67\x15\x1c\x7c\x6d\xe2\xfc\xa4\xf3\x21\xda\x67\xcc\x27\xe7\x69\xb9\x90\x15\x0b\x88\xcf\xb0\xce\x8b\x57\xa9\x43\x8e\xf7\x45\x00\xe8\x7c\xca\x84\x79\x32\xb9\x76\xf8\x46\xa4\x63\x12\x02\x6a\x85\x1f\x18\xd0\x7a\xb9\x4c\xdc\x7d\xb2\xc2\xbf\x17\x5c\x23\xcf\x77\x95\x52\x4b\x85\x2e\x76\x50\x83\x0a\xcf\x83\x50\xfe\x0b\xef\x5b\x87\xd5\xd8\x2d\x03\x8f\xbf\x43\x97\x24\x44\x19\x4e\x54\x80\x88\xb5\x01\x2b\x9c\x4f\x29\xec\x92\x4b\xa1\xc5\x55\x0d\xe5\x2d\x29\x5b\x37\x36\x43\x57\xd8\xb6\xcd\xe7\xae\x6d\xdf\x62\xa8\xd1\xcb\xce\xde\xcd\xa7\x5a\xa4\xe3\x6e\x3e\xd5\x62\xeb\x17\x23\x8f\x5e\xf5\xf9\x94\xaf\xa3\x7b\x78\xb0\xad\x5c\x3e\x0c\x1b\x77\xaa\xed\x7a\xf3\x56\x4a\xb8\x0d\x74\xf9\xb8\x6b\xd8\x4a\x9a\x1d\x42\x5b\x16\x63\xcd\x2c\xc3\x93\x5e\x36\x01\xbc\x78\x0f\xc5\xa7\x40\x3e\x77\x7d\xf9\xf4\x8c\x07\xae\xd3\xe5\x83\xee\x4b\x2f\x14\x67\x17\x35\xd1\x0a\x97\x44\x37\x4f\x15\xc5\x16\x76\x51\x70\x51\xc9\x50\xcf\xb8\xa7\x53\xaf\x1b\xac\x97\x1e\x25\xd6\xe4\xbf\x88\x41\xb4\xbb\x1a\xc1\x4e\x53\xd3\x6b\x1a\xeb\xa5\xb7\x5c\x24\x42\x5e\x74\x4a\x58\x87\x24\xca\x75\x46\xfe\x3e\xa6\xd3\x7a\xd1\x4c\x74\x69\xc3\x79\xe9\x71\x17\x49\x8e\x57\xc8\xc5\xa2\x36\xea\x75\x17\x69\x99\xc6\xc4\x8a\x41\x5f\x8c\x8c\x3f\xfc\x29\x2f\x73\x54\x7f\xfa\x61\x9c\x4e\xd5\xa3\x5b\x2a\xda\xa0\x5f\x0a\x28\x27\xe1\xc9\x68\xa8\xc9\xee\x0f\x84\x43\x6d\x0a\x82\xbd\x5e\x34\x10\x29\x50\xc0\x7a\xf1\x62\x8a\xee\x75\x2f\xc6\x4a\x4d\x76\x29\xf0\x91\xee\x64\xd3\xf8\x8b\x4f\xc1\x74\x7f\xba\xb9\xc0\xdc\x88\x17\x3f\x75\x13\xdf\x74\xe6\xb8\x4d\x37\x53\xd5\x1f\xfa\x40\x84\x5f\x5d\x80\xda\x36\xfb\xca\x88\xb5\x4d\x76\xd0\x00\x5e\x5b\x6d\x27\x66\xb4\x54\xc5\x4b\x5c\x7c\x6e\x3b\xdb\xbd\x04\x04\x6d\xeb\x1a\xb4\x37\x35\x1e\x05\x52\x5b\xc0\xcc\xb6\xae\xed\xff\x4d\x1b\xb6\xc2\xdf\x2f\x3e\xaa\xed\x7b\xf1\x8b\x10\xda\xa1\xcb\xde\x8b\x10\xda\x62\xaf\x2b\x9f\xd5\x2e\x76\x0a\x10\x44\x5b\x75\x93\x74\xbd\xf5\x18\x70\x31\xa9\x07\x8e\xb3\x48\x4a\x65\xad\x67\x3e\x98\xed\x2f\x81\xb8\xd1\x1a\xc3\x73\xd9\x16\x90\x7a\x2d\x5b\xe2\x99\xef\x5c\xeb\x0e\xfd\x62\x34\x53\x85\xc9\x58\x84\xc9\xda\xae\x2d\x5c\xac\x16\x09\x5f\xaf\xb6\xae\x24\x94\xac\xb6\xa0\x37\x23\x62\xe9\x7c\x48\xcc\xac\x5f\xe2\x5b\x6f\x87\x55\x57\x1d\x8c\xfb\x13\x4e\xc4\x59\x36\x5c\x2a\x80\x77\x4f\x39\xbc\x99\xd7\xdd\x00\x68\x80\x32\xd5\x01\x27\x9b\x9f\xce\xe3\xaa\xb4\xe1\x1f\x6f\x02\xc8\x74\x8e\x44\x7c\xd3\x62\x18\x07\xe3\x9b\x56\xeb\x1f\x6f\xa2\x11\xb2\x13\xa9\xf3\x79\x70\xa0\x48\xcc\x27\x11\x3e\x65\xa9\x23\x80\xcd\x36\x8b\x43\x06\x46\x4d\xdd\x63\xcc\x0b\x49\xbd\x39\xf5\x0d\xe6\xd1\x00\x1c\x71\xd8\x6c\x4c\x02\x4e\x56\xf7\x61\x17\x5f\xa9\xf6\xca\x24\x68\xd6\xc8\xff\x05\xd4\xac\x37\x4b\xbe\x52\xed\x15\x8e\x57\xaa\x15\x15\x65\xe1\xe9\xe9\xe8\x2e\x1e\x0d\x6b\xa6\x38\xf7\xce\x08\xdb\x77\x35\x45\x37\x2d\xb9\x94\xe8\xd9\x69\x0d\x9f\x71\x58\xed\xe8\xbe\xc9\x77\x12\xef\x7a\x6b\x5a\xe7\x7f\xbe\x35\x3d\x43\x03\x03\x30\x6d\xb2\x4e\x7b\xf3\x2d\x4b\xad\xa9\x9b\x4a\xb4\x44\x18\xe3\xb0\xfa\xdc\xc2\xa7\xa7\xad\x97\x12\x4c\x6b\x3d\x99\x4f\x4f\xf7\xee\x2a\x88\x97\x95\xa0\x17\x5e\x56\x0c\x75\xf3\x71\x0f\x6d\x53\x37\x0d\x77\x5a\x3d\x0c\xbc\x6a\x64\xc6\xcd\x20\x3f\x33\xbe\x97\xdb\x08\xca\xda\x6d\x60\x50\x10\xd6\xe1\xd1\x27\x0b\xcb\x8e\x84\xa8\xab\x23\x7b\x6c\x18\xf4\x47\x52\x0d\x71\x55\x73\x72\xdb\xf8\x2e\xb0\x7b\x81\xf7\x2a\xf5\x4e\xc6\x02\x1e\x37\xeb\xd9\xd8\x05\x3c\x6e\x4e\xee\x05\x36\xf1\xb0\x4b\x09\xf0\xdc\xac\xf8\xde\x0b\xf0\xdc\xac\x87\x5b\x17\x60\xb5\xd9\xfe\xe8\x0f\xe1\x8a\xdd\x14\x0c\x05\x9a\x6e\x82\x6c\x75\x57\x69\xf1\xc1\xea\x9e\x9e\x44\x40\x47\xc5\x0b\x1f\x22\x12\xc5\x44\x1f\xda\x37\xc4\x96\x80\xdc\x66\x6b\x89\x1f\x9e\xf5\xba\xbf\xc3\x59\x4f\x1b\x0b\x10\xb7\xc5\x00\x2a\xc4\x67\x9d\xc2\x8e\xaf\x0f\xe3\x53\xb8\x76\xdc\x75\x36\x9c\x0a\xd1\x5a\xa7\x9e\x99\x59\x1f\x1d\xf5\x9c\x93\xeb\x5e\x6d\xe1\x51\x4f\x3c\x03\x34\xee\x59\xa0\x4e\x84\xb2\xed\x4e\xf0\x8e\xbe\xae\xda\x2f\x06\x67\x0d\xa3\x8b\x00\xc7\xad\xba\xf2\xb9\x80\xc6\xad\xc6\x6d\x7c\xa8\x6e\x3a\x8d\xea\xa6\x76\x9b\x0f\x1d\xbc\x92\x3b\x40\xe3\x86\x0d\xb3\x1f\xba\x7b\x25\x77\x01\xb8\xad\xd7\x93\x46\x95\x59\xb5\x43\xbf\x34\xc4\x84\x11\x5a\x85\xeb\x5f\x08\xd1\x5a\x0d\xa6\x01\x34\xb7\x1a\x85\x03\x30\x6e\x35\xc8\x85\x60\xdc\xa4\x10\xf4\x0b\x60\xdc\x6a\xf7\xe9\x87\x81\x53\xba\xa7\x66\xf3\x86\x9e\x13\x71\xe1\x4d\x02\xf2\xc3\x07\xff\xd5\x18\x1c\xa6\x3c\x4d\x9b\xbe\x6e\x6e\x7a\xfb\x92\xcd\x76\x8a\x82\x65\x8f\x5b\xc0\x06\xc2\x35\x2b\x16\xf6\xbe\x78\x41\x5e\xbe\xbb\x7d\x91\x85\x58\xdf\xbe\x78\x4b\x89\xd2\x72\x13\xd4\xaa\x3d\x79\x5f\x34\x17\x90\x9f\x37\x80\xab\x55\x40\x97\x0d\xe0\x6a\x95\x4f\x60\x5f\x74\x5e\x28\x89\x6f\xdc\x64\x53\x67\x19\x50\x79\xde\x80\xb4\xf6\xcb\xe5\xeb\xcc\xe3\x0a\x18\xb2\x4f\x06\x9a\x7d\x31\xea\xfd\xa5\x96\x81\x9f\x9e\x9c\x10\x6c\x55\x95\xcb\x3d\xe1\xa1\xe0\xdd\xc9\x39\xfd\x21\x8e\x92\x55\x5f\x2e\xa2\x2a\x9b\x1a\xc7\xfd\x58\x03\x43\x39\xd7\x5d\x2c\x4c\x5b\x49\x23\xba\x18\x82\xdf\x49\xf0\x38\x56\xcd\x04\x43\xa0\x3e\x35\x70\x43\x10\x85\x10\xbd\xba\xdf\xb1\x2f\xee\xa9\x59\x83\x81\x63\x86\x9c\xa8\x1b\x90\xd2\xa6\xb7\x18\xf6\x45\x36\x50\x05\xb8\xae\xd6\x4d\xac\xd3\x2c\x67\xc3\x8b\x6c\x9e\x3d\xd8\xa2\x9e\xd2\xa5\xe1\x89\x12\x62\x08\x14\xc0\xa4\xbd\xc6\xf7\x1a\xf5\x66\x80\xd1\x2a\xc6\x62\x80\x51\x59\x3a\x76\x92\x1f\x6c\x98\xe4\xeb\x21\xdc\x4f\x37\x03\x8e\x0a\x52\xb7\x13\xaf\x99\x70\x9f\xda\x0c\x37\x2a\x9c\xdc\x4e\x08\x2c\xa6\x57\xac\x37\xb0\xa5\x59\xa1\xd4\x77\x22\x8f\x48\xb9\xd8\x89\x6f\xad\x85\x13\x29\xc5\x9b\x28\xf8\x02\xb8\x4f\xed\x44\xeb\xff\x93\x13\x06\x46\xcd\x43\x62\x08\x85\x91\x34\x1c\x84\x8d\x34\xb5\x46\x52\x45\x1f\x4a\xaa\xa8\x6d\x4b\x87\x25\xd5\x81\xcb\xb5\x7a\x4d\x63\x03\xeb\xd9\xa4\xa3\x6d\x06\x18\x2d\xb2\x7d\xed\xc4\x8b\x6d\xee\x23\xc2\x38\x27\x7d\x47\xa7\xac\x52\xe0\x50\xba\xdc\x16\x5e\x65\xd3\x5a\x65\x98\xd0\x10\x9c\x6c\x03\xda\x19\xee\x12\x71\x02\xc9\xdf\x01\x1a\xa0\x0a\xb2\x04\x00\xed\x19\x3b\x13\x24\xd4\x9c\x48\x5e\x0e\x51\xb8\x8e\xa6\xea\x81\x9f\x74\x30\x89\x9d\x79\x1d\x4d\x8d\x61\x48\x4f\xc5\x82\xda\x0c\xe9\xa9\xc0\x7c\x3b\xcb\xe9\xcf\x05\x99\xa9\xe9\x50\xe7\xda\x00\x4c\x76\x45\x17\xdc\x0c\xd3\x29\xef\xc5\x46\x94\xce\xae\xe8\x73\x9b\x08\xc9\xa9\xf3\xcd\x26\x42\xd2\x6f\x96\xef\x2c\xd8\xef\x70\x25\xa7\x01\x0a\xd4\xbf\xb3\x64\x40\xf8\xd3\x0f\x12\x45\x31\x64\x6d\xa8\x1c\xfa\x65\x5c\x2a\x04\x42\x93\xe4\x04\x5c\xb2\x37\xb1\x69\x66\xc8\x5a\x71\x14\x83\x74\xea\x8a\xd5\x06\x74\xb2\xb7\xe4\x1a\x06\xd2\x5c\x26\xd6\xb2\xc4\x13\x83\x74\x56\x8f\x14\x64\x47\xbb\x5c\xe6\xa6\xf9\x4a\x14\x7c\xc7\xa1\x99\x59\xec\xa0\x46\x11\xec\xa4\x07\x2d\x76\xe6\x7d\xb7\x50\x99\xb8\xef\xa6\x67\x02\x36\x21\x94\xd5\xf3\x4b\x27\xbf\xe7\x90\x6e\xfd\xd0\xa0\xc1\x43\xd9\x2e\xd5\xce\x2b\x6d\x92\x8d\x8c\xbb\x29\x0b\xf4\x26\xb6\xb2\xeb\x05\xc9\xad\xa8\x98\x7a\x6d\x63\x17\x99\xb2\x25\x33\x00\x82\xec\x72\xa6\x6c\x60\x20\xbb\x9c\x12\x1b\x18\xc8\x2e\xff\xd0\x06\x04\xb2\xcb\xeb\xb3\xf1\x24\x72\x97\x6b\x65\x03\x0f\xd9\x65\xf6\xdf\x45\xd2\x24\x44\xc1\xd1\x29\x86\x66\x18\x4c\x99\xb5\x37\xb0\x91\x5d\x0e\x82\x5d\xf4\xde\x8e\x0b\x25\x96\x57\xa3\x0f\xf4\xe3\x59\x5e\x6a\x0d\xce\x78\xf2\x3a\xed\xc2\x2b\x6c\xda\x1b\x0a\xaf\xb0\x15\xa7\x91\x51\xd5\x43\x5e\x61\xab\x2e\x94\xed\x76\x99\x68\x69\x75\x4e\xb6\x54\xfd\xb5\x2a\x6d\x12\x6a\x67\xfa\x0d\x32\xba\x2c\xc9\x61\x55\x09\xf7\x89\x02\x34\xef\x22\xed\xd9\xa5\xbe\x21\x31\xd5\x7f\x9c\xff\x72\x98\xa2\x82\xe1\x06\x40\x99\x56\xf0\xf2\xad\x00\x9a\x62\x62\x00\x1f\xb3\xc2\x9c\xef\x42\x20\xae\xdc\x37\x1b\xcf\x17\x67\x85\x32\xdf\x65\xe3\x14\x20\x2e\xc6\x5b\xc6\x5d\x2e\x99\x8d\xa7\x8c\x47\xd1\xfa\x02\x7e\x32\x2b\x94\xf8\xe6\x53\xc6\x21\xd3\xe2\x66\xb0\x4d\x45\xeb\xde\x0a\xb6\x29\xc6\xc5\xcb\xc5\xa3\x68\x79\x33\xf4\xa6\xe2\x9a\x6f\x46\xd0\xec\x1a\xe3\x2a\xdd\xc7\x69\x70\x9e\x11\x29\xb7\x19\x17\x73\x4a\x48\x56\xba\x00\x87\xbf\x43\xdc\xc7\xe6\xfa\xe0\x3c\x93\xe4\xa9\x7a\xd2\x69\xa8\x18\x6c\x5f\x5d\x42\x8b\x71\x31\xe7\x34\x05\x3d\x9f\x1a\xf3\xae\x84\xca\x15\xf1\x66\x65\x40\xc1\xe6\x52\xd1\x52\x29\x3c\x8c\x92\xd9\xfb\x53\x0e\xd4\x34\x49\x4d\xc6\xcc\x9c\xda\x85\x2b\x5c\xd9\x52\xc3\x77\xa5\x0f\x70\xf8\x3b\x9e\xf7\x5d\x05\xba\x31\xd5\x1a\xfa\x00\x87\x29\x1c\x57\xa4\x2f\x54\x5e\x74\x9b\xaa\x81\x17\xdd\x24\xf9\x2b\x7d\x7e\x43\xf5\x21\x08\xa7\x1e\x0e\xdd\x0c\xc2\x69\xcd\x05\x41\x38\xc7\x1c\xfe\x8e\x7d\x70\x99\x8c\x92\xe6\x2e\xd1\x30\x31\x4d\x7d\x18\x84\x5a\x79\xe9\xd6\xf3\x78\x03\x51\x59\xdd\x0b\x3c\x7c\xa0\x73\xf4\xae\xbc\xde\xe3\x89\xc2\xf5\x1e\x79\x03\x76\xe5\x45\x37\xb7\x86\xd7\x7b\xb4\x5f\x54\x7a\xbf\x3d\x4e\xf4\x0d\x4e\xf5\x90\xd7\x7b\xa6\xfa\x44\xd7\xe0\xd3\x16\x28\xcc\xd3\xdf\xe1\xcc\xe5\x51\x83\x3e\x36\xc2\x1d\xe6\x65\x1f\x71\x1b\xf0\x9c\xb3\xf2\x88\xbb\x11\x76\x73\x0a\x25\xb5\xdb\x64\x97\xaa\x28\x74\x49\x3c\x0b\xac\xe7\xb4\x76\xd6\x78\xd1\x5c\xaf\x2a\x6f\x84\xd6\x2c\xf2\x54\xec\xc6\xa0\xc3\xb2\x22\x6c\xe0\x42\xa7\x1c\x25\xbb\xd1\xc5\xa1\x6d\xa1\xf1\x20\x39\x9c\x13\x07\xc9\x6c\x0a\x47\x47\x4d\x70\xe3\xd1\x51\xea\x50\xe3\xd1\x51\x6b\xa6\x31\x96\xa1\x58\xb6\xd1\x13\x28\x36\xf1\xfb\xc9\x12\xa0\x7c\x3f\xb9\x0b\x5f\xb9\x1b\x2f\xb3\x4d\x97\x0a\xbb\xa6\x30\x36\x1b\xe1\x33\x43\xe6\x97\x0d\xa0\xa8\x23\xec\xef\xc6\x2b\x3c\xda\xeb\x1a\x2f\xed\x68\x23\x00\x6a\xd4\x4f\x3d\x6f\x3e\x7a\x2c\xd3\xcc\x06\x86\xb4\x34\x8f\xdb\x62\xf7\xd5\x18\x38\x15\x64\xe0\xd9\x8d\xc1\xd6\xc4\x6d\x44\x8d\xce\xf4\x1b\x9e\x1d\xdf\x7c\x22\x59\x48\xc0\xdd\x18\x88\xad\xb9\x1c\xbe\x8b\x29\xed\xad\xd1\x48\xa6\x93\x56\xb3\xd6\xe7\x2f\xe1\xe1\xd1\x46\xd4\x70\x42\x14\x54\x60\x03\x3a\x9a\x66\x78\x38\x80\x40\x9f\xcf\x87\xf0\x87\x78\x18\x89\x40\x2f\xce\x09\x17\x8f\x76\x57\x80\x47\x43\x18\xab\x4d\xf0\xa8\x70\x0b\x9b\xe8\x51\x21\xc3\x36\x10\xa3\xd5\x0a\x29\x20\xa3\xa9\xe9\x7d\x8d\x8d\xb0\x9b\x21\x54\xc1\x46\xd4\xcd\x2a\x53\xfc\x46\xd4\xcd\x98\x0f\x85\x3e\x3d\xc5\xb0\x4f\x2e\x85\x5e\xd1\xe1\xac\xe8\x85\x76\xfe\xce\xf7\xe3\xe5\x71\xdb\x04\x94\x5e\xd5\xad\x0b\x3a\x3e\xd4\x65\x40\x4a\xab\x2e\xbb\x6c\x04\xd0\x4c\x57\x75\xf3\x42\x9a\xbd\xda\x10\x74\xd5\xb8\x2b\x0c\x9f\x51\xdd\xa6\xe0\x8d\x16\x8f\x09\x5c\x05\xba\xdf\xb2\x89\x2a\xbd\xaa\x7b\x13\xf2\x84\x28\x55\xf7\x73\x34\x63\x5d\xf7\x73\x34\xd7\x00\x96\x9e\xcc\x1a\x7a\xd9\xda\x24\x40\xf9\xb8\x73\x12\xee\x71\x0b\x31\xaa\x8b\x1e\xbb\xeb\x5d\x8e\xe6\x92\xe9\xdd\x68\xae\x97\x01\x91\x3c\x16\x3c\xa5\xfa\xe4\xd8\x15\xba\xaa\x99\xa4\xb7\xa3\xb9\x5e\xda\x36\xb4\xa7\x75\xc5\xae\xd2\x12\xec\x7c\x9e\xc3\x87\x94\xae\xe0\x55\xda\xc7\xba\xde\x5a\x93\xd8\xe3\x2b\xcf\x49\x71\x8e\x76\xa7\x75\x78\xb8\xbf\x0c\x5f\x25\x38\xff\x06\x94\xb4\x29\xfa\xeb\x56\xd0\x4d\xdb\x00\xba\xac\xc5\xa6\x5e\xa0\xd4\x60\x58\x87\x15\x7c\x76\x03\x1f\x9a\xb2\x3b\xa7\x28\x9b\xe5\x21\x71\x49\x41\x71\x8d\x36\x1f\x8c\xce\x9e\x01\x40\x3d\x9b\x8f\x86\xc4\x76\x16\x9f\xe2\x00\xe7\x6c\x7a\x63\x68\xf3\x6d\xe7\xa2\xab\x76\x9b\x98\xcd\x22\xa4\xd8\x06\x68\xb3\xf9\x1c\x09\x98\x66\x93\xad\x6a\x0f\x3e\x4e\x20\xc0\xd9\x06\x6a\xb3\x79\x7f\x63\x78\xcb\xde\x25\xff\x09\xe2\x2c\xa5\x38\xef\xfe\xf1\xa5\x78\x96\x9b\xc8\xcc\xea\xfa\xcf\x02\xd7\xd8\x21\x60\x65\x97\x19\x6f\x13\xa5\xa9\xf8\xe3\x1b\x28\xcd\x54\xdc\x27\x6e\xfc\x1e\x3a\x79\x21\x44\x9c\x3d\x52\x2b\x02\xc1\x2b\xa7\x07\x0d\xd7\x76\xb5\x43\x10\x85\x29\xd3\xe6\x06\xd0\x32\xeb\x7d\x94\x3d\x88\x54\x10\x6f\x00\x2e\x39\xdc\x28\xbe\xf0\x99\x3d\x26\x60\x05\xb9\xa7\x37\x10\x91\xdd\x0a\x26\x63\x4a\x26\x8f\x25\xce\xba\x5a\x13\x40\x39\xfa\xd5\x87\x3d\x69\xd2\x57\x1a\x22\x43\x86\x76\xce\x49\xdb\xc5\xb8\xbe\xc7\x82\xec\xa9\x63\xf0\x14\x45\x94\x69\x73\x1d\x3c\x07\x77\x51\x70\x00\x88\xb7\x18\x37\x52\x98\x9a\x4d\x58\x63\x57\x68\x85\x8d\x48\x91\xbd\x49\xbf\x06\xac\x31\x55\x17\x8a\xfd\x51\x38\xa2\x0d\x58\x63\x6f\x5a\x15\x93\x16\xff\x66\x2a\x90\xe6\x9c\x74\x7d\xb9\x4c\x1c\x27\xb5\x8a\xf9\x6c\xb4\x3c\xe0\x9b\x0f\x45\x0b\x60\xb0\x27\x71\xbb\x5a\xa4\x93\xd8\x5c\x69\x0a\x0c\x0b\x29\x4f\xfd\xc6\xd3\xcf\xa3\xe8\xac\x03\x2c\xe2\x50\xb8\xe8\x0d\xf0\x61\xd6\x93\x36\x7b\xf2\xa8\x91\xfc\xdd\xcd\x37\xd9\xf4\x21\x43\xa0\x6b\x8f\x9d\x0c\x41\x20\x9d\x4a\x48\x44\x4f\x14\x83\x0e\x48\x19\x9a\x0c\x7a\x2e\xb6\x9e\x62\x04\x53\x54\x1a\x39\x84\x00\x1b\x16\xc1\x59\x76\x50\xa5\x0a\xa7\xe9\x71\xb4\x2c\x12\x66\x6d\xed\x04\x41\xb0\x95\x1a\x0a\xb4\x61\x11\xd6\x65\x33\x12\x63\x55\xe0\xdf\x1d\x54\x9b\x34\x6c\x41\x64\x48\xf7\x87\x40\x86\x4c\x53\x40\x86\x74\x7f\x07\x1d\xa6\xbb\x42\x58\x28\xc5\x33\xc0\x10\x86\x8f\x8f\xc0\x10\x56\x79\xc6\x37\x20\x84\x55\x7e\xe5\xcd\x98\x8b\x72\x93\x6f\x20\x01\xab\x7c\xdb\x3b\xbc\x43\x39\x2b\xd1\x04\x4f\xaa\xcc\x23\x2e\xf6\x83\xfd\x4b\x79\xbd\x43\x4d\x91\xe9\x24\xea\x34\xc9\x88\x8b\xba\x4e\xba\x83\x08\x8f\x27\x27\x9d\xef\x3a\x18\x00\xd3\x77\xca\xe9\x22\x17\x65\xbb\x06\xe4\xf0\x4a\x53\x24\xe8\x1d\x72\x56\x7b\x42\xbc\xe1\x90\x21\x18\x2c\x31\x7b\x1f\x47\x78\xc4\xae\xb5\x81\xe0\x88\x56\x47\x82\xd7\xa2\xd5\xab\x4d\x93\xad\xaa\xe7\xad\x68\xf5\x82\xd6\x8c\xe6\xaf\xa8\xfd\xa9\xd9\xd8\x57\x9a\xcb\x38\x27\xc4\xa7\x08\x98\x57\xd5\x59\x06\x92\xf2\x98\x01\xbd\xe4\x03\x0a\x80\x7e\x4d\x8b\x10\xc1\x11\xbb\x37\xbc\xc5\x67\x1a\xb5\xcc\x97\xc2\x46\x49\xc0\x02\xe6\xd7\xe5\x5e\xd9\x84\xf9\x0d\x5d\x1d\xdf\x8b\x61\xa3\xba\xb3\xc2\x6a\xd7\x5d\x2a\xac\x76\xe2\x43\x86\x42\xd4\xf3\xdc\x7b\xd1\x6a\x27\x5e\x5b\x0c\x22\xd5\xdd\x36\x58\xed\xba\x5b\x43\x10\x80\xaa\xf7\x3d\x67\x55\x4f\xaf\xa3\x98\x94\x60\xbd\x19\x97\xf3\x52\xec\xa8\x6d\x34\x79\x74\x7f\x08\x47\xa3\xeb\xe7\x83\xf4\xc9\x14\xb0\xf4\x9a\x66\x3c\x1c\xdd\x6d\xa3\x5d\x12\x42\xbf\x41\x3e\x2f\x06\xed\xf1\xd0\x80\x0d\x85\xfb\xd9\xc0\xdf\x65\x3d\x90\xb5\x97\xa4\x97\x3a\x8c\xcb\x7d\xde\xf9\x96\xa4\x97\x7a\x08\xb3\x49\x71\x07\x29\xcb\xb2\x9b\x7d\x23\x4d\xcd\xde\x94\x9d\x9a\x0a\xc6\x5d\xd1\xb9\x6a\x49\xb0\xa9\x14\x46\x94\x18\xfe\x0e\x62\x4e\xbb\xc1\x22\xa8\x5a\x47\xc7\xc5\xf7\x69\x8a\xd6\x3d\xc0\x71\xd9\x2a\x30\x50\x6d\x45\x60\xbc\x8d\x70\x85\x61\x3b\xac\x30\x6e\xdd\x39\x71\xe6\xd1\xc0\x00\xe3\x56\xf4\x04\xf0\x16\xc6\x6d\xba\x14\xc0\x2d\xa5\x55\x08\xe3\xa6\x99\x00\xc6\x2d\xbc\xa1\x6f\x45\x88\x0a\x17\x83\x73\x84\x38\x58\xcf\x5b\x0b\xd4\xb6\x81\x71\x0b\x1b\xfb\xf0\xba\x75\xd8\xd8\xb7\x79\x71\xbe\x9a\xc2\xc5\x79\xad\x12\xa1\xdf\xa4\xd6\x08\xfd\x56\x9d\x86\xc3\x91\xb4\x1c\xa0\xdf\xc2\x26\x43\xa1\xdf\xb4\x78\x81\x7e\xab\x42\x50\x6d\xa0\xdf\xd2\x65\xdf\x85\xe0\x6f\xd2\x7f\x37\x35\xf8\xa7\xd9\xd4\xe0\x9f\xb6\x41\x3c\x4a\x70\x01\xff\x56\x05\xe9\xda\x5b\xfa\xbb\x1b\x47\xf1\x28\xde\x23\x00\x4e\xb8\xab\xbd\x89\xf4\xd1\x23\x08\x7b\x5b\x5a\x6a\xe4\xa4\xdb\x7b\xcc\xa5\xdb\x6b\x11\x6f\xbf\xb9\xe7\x5a\x5f\xd0\xfa\x54\x0d\x2f\x2b\x2a\x58\xc2\x26\x98\xad\xe8\x32\xc3\x06\x98\xad\xe9\x8a\xdf\x06\x98\xad\x79\x98\xa1\x7d\xcb\xd5\xbb\x89\x5d\x4b\x6e\x9e\x0c\xbe\x1e\xe7\x2d\x75\xc9\x24\xae\x4f\x78\x68\x79\xf1\x79\x3c\x0d\x00\x54\x43\xc0\x99\xbd\xa9\x9f\xb9\x7e\x38\x3e\x58\x0a\x60\x6b\x3e\x90\x02\xb4\xd6\xe5\x85\xde\x2f\xc6\x85\x95\x28\x7f\x31\x9e\x9e\x38\xf0\x45\x13\x72\xf7\x77\x93\xc6\x21\x51\xb8\xff\xa9\xdd\x13\x80\x35\xdb\xfe\x5e\x7c\xb1\x34\xd4\x2c\x02\xd6\xfa\x78\x3e\xbc\x99\xea\x1a\x11\xe2\x82\xfd\x7b\x31\xbe\x89\x56\x31\xd0\x6a\x36\x05\x02\x61\xe6\xe3\x37\x42\x2e\xfa\xbc\x0b\x74\x59\x57\x6c\x97\x0d\x70\x59\xc8\xda\x03\x68\x59\x57\x14\xad\x4d\x2c\x59\x72\x5d\xb2\x02\x8b\x2d\x80\xf8\xf2\xf3\xbc\xfb\x45\xdf\x81\x3f\xc4\xa1\x6d\x3e\x69\x30\x2d\x6b\xfa\x80\xe0\x1a\x8a\xe4\xb7\xf1\x38\x76\x56\xdc\xcc\x8d\x60\x89\xa3\x68\xb6\x5e\x12\x4a\xea\x1c\x03\x3e\x49\x31\x78\x49\xf7\x72\x4e\xd8\xef\xc2\xa5\x10\xa4\xf1\x1b\xde\xbb\xdd\x2f\xc5\xd4\xf4\xa0\x01\x07\x2c\x3c\xef\x7e\x13\xdd\xab\xe9\x04\x2a\x2c\x6c\x13\x07\x2a\x2c\x6c\xd9\x07\x0a\xac\x0a\xaf\xb7\x81\xfa\xaa\x02\x39\xee\x37\x83\x62\xdb\x5f\x01\x0c\x58\xd5\x5d\xb7\xfd\x26\x64\x47\x0f\x79\x6c\x44\x52\x6c\x5e\x88\xc4\x87\xb5\xfc\x34\xe0\xc6\xd1\xcc\xc5\x7e\x78\xdc\x52\xb1\x88\x15\xec\xe6\xf0\x52\xb4\x00\x53\xfb\x2d\x7d\x7e\x8a\x82\xf7\xc0\x35\xd2\x9a\xab\x23\xdd\x1b\x7c\x62\x07\xd4\x3b\x28\x88\xfd\x1d\x2f\x7e\x6a\x53\x02\x98\xac\x15\xb7\xe6\x48\x9b\xe6\xb1\x81\xad\xc0\xa7\x09\x62\xc9\xba\x62\x0e\x6e\x82\xc9\x74\x27\x73\xbf\xa9\xc2\x27\x7f\x38\xce\xfc\x6b\x1d\xbc\x69\x87\xf5\x48\xc1\x77\xa0\x7b\xc9\x9b\x50\xb2\x3e\x5d\x26\x6e\xfa\x4c\x7f\x07\xdd\xbb\xb8\x65\x30\x20\x69\x82\x81\x24\xab\x02\x5d\x6d\x20\xc9\x6a\xf5\xc0\xf0\x4d\x99\xa1\x23\xda\x9b\xfe\x4e\xc9\x15\x40\xc9\xba\x62\xf0\x6c\xc6\x58\x54\x7c\xbb\xfd\x96\x7c\x52\x27\x36\x15\x20\x7f\x07\xf9\x38\x5c\x21\xe4\x91\x0d\x98\x8a\xb8\xe8\xe9\xc6\x1d\xb9\x26\x85\xe0\xad\xc3\xa3\xd3\x18\x67\x99\xd3\xc4\x27\xb5\x5b\x32\x45\x14\xd4\x93\xc8\x21\x1d\xa2\x38\xdb\x59\x14\xce\xae\x2a\x54\xc1\x18\xb5\x61\x00\x4a\x96\x7c\x56\x26\x7a\xcc\x2e\xfb\x9b\x7e\x70\x9d\x80\x6f\xfa\xc1\x35\x4e\x80\x8b\x65\xc5\xcc\xdd\x37\x6f\x0f\x85\xd3\xc0\x5d\xd3\x69\x38\x22\x69\x9b\xbf\xe9\x2a\x98\xce\x09\x8f\x47\x38\x27\x27\x54\x3d\xc2\xbb\x44\x7d\xba\x76\x38\x07\xc4\xa3\x37\x3d\xe4\xe2\x51\x44\x57\xcc\x82\xfa\x6e\x02\xc2\xfc\xa2\xf8\xbe\x79\x19\x22\x9c\x48\xbb\xba\x1a\xc3\x90\x32\x23\x3b\xf1\x28\x24\x36\xde\xdd\x34\xbb\x86\x8b\xe1\xf1\x49\x6d\x03\x96\xdb\xdb\x01\x40\x5f\x45\x21\xc4\xf7\xcd\x28\x4a\x9a\xde\x9b\xb7\x7c\x14\xdd\x72\xe3\x69\xed\x23\x16\xd4\x0f\x60\x13\xab\x67\x06\x67\x02\x5b\x15\x00\xfb\xaa\xd5\xd3\xcd\xb8\x49\xd5\x69\x84\x36\xb8\xcb\x7a\x10\x56\xcb\xeb\x56\x30\x19\x4f\x3f\xad\x4f\x6e\xac\x70\x18\x12\xd3\x40\x8c\xa5\x6c\xb3\x23\x9f\xe9\x9e\x21\x61\xfc\x21\x8c\xc7\x69\x95\xf2\x25\x8b\xc4\xfb\x01\x26\xf0\x10\xb8\x44\x01\x1f\xe3\x56\x30\xe9\xfd\xe1\x75\xfc\xe9\x52\x60\xfa\xc9\xdf\xc7\xd0\xdb\x1f\xde\xce\x57\xc3\x01\x04\xeb\x0a\x52\xb9\x3f\x74\xe2\x8b\xfb\x01\xfd\xea\xf6\x09\x7c\x88\xd4\xc9\xfe\x0e\x27\x2d\xb5\x8c\x08\xec\xe1\xcf\xa0\xd5\x68\xaf\xc1\x03\xde\x21\xf9\x45\x48\x58\x8d\xa7\x48\x68\x99\x4f\x53\xb8\x4a\x9d\x06\x3f\xa5\xc5\x19\x5f\xf3\xf6\x62\xff\xf0\xa2\xbe\x24\x01\x5f\xef\xce\x1e\x18\xbe\x7f\xec\xea\xe9\xc0\xd7\x8a\xfa\x10\xd2\x33\x4c\xe1\x08\xa5\x55\xf3\xa1\x45\x6b\xba\x06\xec\xde\x4f\x7d\x30\xf8\xb8\x17\x70\xc4\x67\x0f\x3d\x2d\xa3\x12\xad\x00\x81\xf5\xec\x81\x81\xa4\xcb\xae\x01\xc6\x2f\x3b\xa3\x3e\x7c\x99\xf8\xf9\x0e\x83\xa6\xd5\x0d\x48\x58\xcf\x1e\x50\xe0\x7f\xb2\x5b\xb6\x39\x68\xce\xf9\x61\x0c\xf9\x9f\x7e\xbe\xfb\xbc\x18\x31\x04\xa5\x1c\x0a\x56\xa3\x6a\x0a\x20\x04\xb0\xe4\xa1\xa0\x34\x61\x39\x1f\xea\x85\x9c\x59\x14\x84\x27\x84\xfe\xa1\x10\xae\x36\x9b\x62\x7d\x9d\x14\x78\x89\x6f\xea\x1d\x2a\xa1\x94\x24\x0a\x4c\x9f\x55\x3b\xf5\xa9\xaa\xda\x79\x81\x7d\xa8\x4c\x5a\xc5\xa6\x6a\xa7\x55\x6c\x3a\x27\xac\x62\xc5\x65\xa2\x47\xd9\xb5\xb3\x47\xae\x81\xb1\x94\x5c\x26\x7b\x54\x45\xbd\x19\xa7\x55\x14\x18\xad\x88\xe2\x61\x35\x6b\x04\x75\x81\x57\x65\x12\x28\x52\x54\x9f\x76\xdf\xe1\x44\x9c\x5d\x5d\x21\x77\x5f\x37\x8d\x48\x91\xa7\xd0\xc1\x67\xa6\x44\x61\xab\xf0\xd0\x2f\xdd\x88\x13\x85\x33\xf6\x54\x77\x89\x14\x99\x2e\x13\x5d\x2a\xce\xc9\x1d\xce\x65\xb2\x4b\x21\x8a\x93\xa4\x1a\x18\x24\x7d\x78\x3e\x69\x58\xf1\x7c\x82\x5f\x19\x42\xf7\x50\xd0\x6e\xb2\x8a\x11\xbf\x9a\x82\x42\xee\xce\xd3\x56\x3b\x54\x3d\xaf\xab\x33\x80\x53\x9f\x89\xf7\xce\xd5\x5f\xbc\x81\x3d\x4a\x32\x05\x6b\x80\xfa\xcb\x37\xb0\x67\x71\x1a\x47\x74\x8a\xc2\x81\x7f\x98\xc2\x81\x5f\x93\x4d\xc0\xda\x14\x93\x24\x42\x4a\x34\x6a\x42\xa8\x11\x08\x74\x48\xa0\x48\xa6\x3f\x24\x27\xb0\x4f\xc2\xa4\x3d\x54\xe6\x55\x1d\x7d\xc8\x00\x38\xc3\x89\x68\x9b\x16\x9a\x30\x69\xc5\x39\x81\x77\x98\xce\x09\xf0\xb0\x38\x01\x41\x0d\x61\x84\xfc\x46\x32\x9f\xac\x30\xa9\x68\x1d\x20\xc4\xe1\x28\x49\x9d\x22\xa6\x44\x2b\x26\x11\x53\x22\xc6\xe0\x0b\xdc\x53\x73\x08\x2c\x5b\xce\x9a\x5f\x44\x38\x4c\x53\x2b\x14\x11\x0e\x73\xce\xa6\xa0\xcf\x84\x3a\x21\x85\x51\xe3\x44\x26\xd5\xba\x43\xf4\xc3\x9c\x9f\x1a\x70\x2e\x2c\xae\x61\x33\x66\xa5\x28\xe8\x3a\x62\xd2\x44\x8b\xca\x53\x0a\xfa\x10\xa6\x3e\x48\x53\x7d\x74\xb2\x7a\x40\x19\x7e\x41\x52\x86\x4f\x6c\xd7\x30\x97\x30\x14\x49\xf1\x70\x6f\x9d\xe9\x4c\x02\xac\xad\x4e\x65\x82\x46\xd2\x10\x45\x4e\x0c\x51\x38\x21\xe5\x24\x0a\x60\x17\xd5\x01\x30\x5d\xce\xd5\xa5\x50\x11\x9b\xa2\x30\x50\x5a\xdb\x40\xd6\x8d\x92\xba\x28\x28\x62\x91\x45\x01\xb3\x11\x4e\x7b\xa1\x06\xd7\xce\xa1\x71\xcb\x60\x6c\xd2\xa4\x65\xde\x45\x0f\x53\x19\x35\xa8\xf6\x60\x3b\x4d\x35\x7c\xa7\xfa\x00\x2e\xc9\x12\xc0\x78\xf1\x7a\x14\x49\x08\x00\xeb\x72\xd6\x34\x65\xa8\x88\x45\xc2\x19\x28\xbb\x51\xb2\xd3\xc0\x78\x59\x7d\x67\x14\x65\x1a\x28\x0f\xc9\x59\x53\xe7\xa9\x31\x86\x8a\x59\x6c\xa8\xd3\x60\xfc\xd7\x6c\xeb\xf1\xeb\x32\x9d\xc8\xa0\x89\x4d\x83\xc1\xe0\x07\x34\x93\x1c\x12\xca\x6d\xa8\xe5\x38\xe5\x86\x96\x33\x90\x6e\x23\x2e\x7d\x88\x8b\xaf\x49\x5b\x1c\x71\x6f\x73\xb8\x18\xe0\x97\xba\x87\x1f\x47\xe0\x71\xa9\x3d\x78\x06\x2d\x55\x57\x71\x86\x2a\x92\xd3\x26\x72\xba\x94\xf8\xf1\x35\xdb\x53\xfd\x42\xf5\xce\xb9\x91\xd3\x69\x2f\x50\x6e\xcc\x1b\xb5\xbb\x14\xb8\x2d\xc2\xcd\xfe\xa0\x3e\xe6\xc4\xeb\xd3\x23\xc4\x42\xc0\xd9\xcd\xa6\x51\xc4\x7b\xd3\x23\x24\x3c\xf1\xde\xf4\x24\x90\xf0\x50\x38\xd4\xab\x4c\x20\xf0\x32\x8f\x94\x87\x3a\xa7\x05\x5a\x67\x0e\x35\xd1\xea\x29\x0a\xc8\x8b\xe7\x3b\xf4\x28\x65\x51\x38\x0c\x86\x6b\x7f\xa1\xbe\x24\xea\x8d\x9c\x4e\xbb\x91\xe6\x3e\xa0\x47\x6e\x19\x22\xc7\x26\x31\x22\x20\x77\x99\x01\x5b\x0e\x35\x88\x80\xd3\x87\xc1\xc1\xf6\x87\x81\x62\xd4\x09\xf0\xec\xd0\x5c\x03\x64\x37\xc2\x5d\x0a\x0e\xb6\x9a\x0d\x9e\xa5\xa5\xfa\x50\xe0\x59\x4b\xb6\xc2\xd7\x57\x9d\xc8\x88\x64\x55\xad\x61\xbc\xe3\xfa\x1b\xc4\x33\x62\x16\xce\xe6\x1a\xa1\x0c\xb4\x21\xf9\xc5\x57\xb1\xc3\x7d\x64\x50\x84\x70\x8d\x83\x61\x9e\x34\xfc\x10\xad\x7a\xb4\xe6\x90\x30\xba\x95\x70\x41\xb4\xb8\x38\xf3\x46\x6b\x9b\x7a\x42\x68\x79\xd3\x60\x6d\x36\x48\x83\xc5\x5b\xdf\x9e\x39\xc2\xa0\x9a\x1a\x0b\x18\x54\xf3\xd0\x91\xf7\x9b\xbf\x83\xf9\x78\x38\xe7\x44\x4e\x53\xb0\x5a\xb8\x1f\x1b\xe6\xe3\xa7\x65\xb8\xad\xdf\x34\xc7\x70\x9b\x34\x73\x34\x74\xd4\x9e\xc3\x55\x80\x55\xcc\xc4\x00\x45\x35\xc9\x97\x4a\x0f\x5e\x9b\xa2\x70\xed\x3b\x4c\x15\x7c\xd7\x45\x81\xf9\x25\xaf\x11\x13\x71\x36\xf1\x06\x00\x80\xa5\x5f\xfe\x8e\x51\xe2\xd5\x9a\x4a\x93\x78\x38\x6b\xa0\xc2\x21\x6a\xa1\x18\x53\x1b\x55\x64\x51\x2f\x5e\xed\x6e\x22\xdf\xa8\xc3\x59\xe1\x0c\x6a\x4e\x03\x62\x48\x72\x1f\x60\xc1\xd9\xb4\xcf\x54\xde\xae\x69\xa6\xd8\x27\xf5\x22\xb8\xa0\x55\x4a\xc0\x0d\x59\x9d\xb3\x23\x4d\x7d\x0a\x4e\x8c\x6a\x67\x5c\xa7\x94\x9c\x88\xc8\xc9\xe1\x42\x11\x9c\x58\x83\x8f\xd0\x8a\x25\x55\x53\x6f\x14\xe3\xef\xd8\x6c\x4e\x0c\xc0\x81\x49\x1e\xcb\x43\x42\xad\xa0\x87\xf8\x90\xf0\x9f\x4a\xc5\x03\xe8\xaf\x74\xf1\x5e\xe5\x5d\x6e\x77\x11\x6f\xc2\x24\x69\x5c\x88\xa7\x18\x49\x8a\x53\xe5\xed\x6d\x4f\x37\xee\x6b\xa7\xe1\xef\x70\xc6\x97\x1a\x57\x75\x7b\xdb\xc5\x10\x4b\x25\x6d\x90\x28\xbf\xee\x71\x63\x18\x03\x29\x47\xc0\xf5\x95\x6e\xce\x60\xf8\x63\x29\xaa\x95\x2e\x97\x78\xc8\x1b\x59\x4d\xe1\x4e\x92\x86\xbf\xd1\x62\x29\x25\xb6\x11\x1f\xa5\xa1\x69\xbc\x61\x38\xb4\x84\x10\x9a\xb1\x74\x49\x86\x46\x5f\xcd\x70\x1a\xda\x36\xfd\x21\xbd\xb9\x53\x14\x19\xb3\x88\x82\x6f\xb7\x39\xe7\x0b\x65\x26\x51\xe4\x3d\xe7\x64\xb3\x9d\x93\xc3\xa6\xda\xe1\x9c\x69\x55\x6b\xbd\xd1\xe5\x32\x4c\xd1\x32\xd2\x44\xc1\x32\xa2\x61\x6b\x0c\x31\xe0\x2e\x91\xc1\xac\xb5\x23\xc4\x63\xbd\x9a\x3f\xe4\x98\xba\x46\x7a\x02\x86\xb3\xc2\xcb\x92\x4d\xc1\x73\xd4\xd5\x0d\xde\xfa\x92\xfc\x6a\x3c\x79\xf1\x45\xbe\x43\x62\x88\x3d\x6e\x54\x18\x86\xab\x64\x24\x81\xf1\xad\x81\xe3\x64\xe5\x6d\x7d\xf1\x2d\x20\x81\xb5\x66\x53\xb0\x46\x35\x0d\x24\xe3\x0c\x0c\xd7\x81\x7b\x60\x3a\x0d\x10\x12\x48\x47\xe5\xa1\x70\x0f\x2c\xfb\x3b\x3e\x8b\x23\x19\x06\x84\x60\xad\x52\xab\x89\x01\xf4\xb2\x21\x06\x90\x7e\xd2\x43\xc1\xf0\xdd\x55\x0c\x3c\xd9\xf4\x71\x1c\x0a\x7e\x7f\x09\x26\x44\x95\xac\x55\xd2\x0e\x60\xc1\x7a\x35\x53\x32\x83\xbb\x42\xf6\xc2\x89\xb8\xbf\x96\x5d\xcc\x9b\xf3\x68\x12\xdd\x90\x9a\x2d\x08\xa0\xd4\x25\x40\x00\xcf\x88\x87\x48\x78\xb9\xa4\x14\x76\x85\x17\xd0\xf2\xef\x7c\xd0\x7d\xa8\x93\x5d\x76\xf9\x66\x92\x76\xf9\x26\x4a\x3e\x39\x97\x44\x3b\xda\x93\x4a\xd0\x82\x38\x04\x58\xbf\x5a\xa5\x86\x23\x92\x64\xad\x3a\x77\xe0\x15\xed\x3a\x24\x10\x0c\x03\x94\x28\x31\x0c\xb0\xf9\x4b\xc0\x00\x8b\x13\x1b\x83\x6b\xa9\xdf\x0a\x20\x20\x56\xeb\xc4\xda\x44\x71\xc1\x41\xd2\xb5\xc2\xc1\x58\x9c\x97\x9d\x69\xce\xfb\xa2\x5a\xeb\x54\x22\xec\x86\x1b\x41\x54\xa0\xa6\xd4\x30\x40\x09\x11\xc3\x00\x35\xa9\x80\x01\xd6\x5a\x9c\x17\x5c\x5b\x9c\x46\x47\xa1\x18\xb5\xf3\xed\x4a\x89\x26\x62\x00\xaf\xea\x79\x23\x17\xbb\x33\xbc\xcd\x58\xfc\x21\x07\x5b\x8b\xbc\x93\xa9\x8b\x3f\x54\x6b\x95\x77\x13\x21\x22\x79\xd4\x15\xa4\x5b\xd2\x11\x00\xc0\x3a\x24\x74\x18\x55\xf2\xaa\xe2\x6b\xc3\x01\x25\xac\x05\x07\xec\xda\xc7\x3b\x1f\xb3\x94\xdd\x84\x68\xc0\x11\xc3\x24\x7b\xea\xbe\x11\x0e\x58\xaa\x0b\x26\xdc\xf1\xa9\x56\x80\x12\x7f\xcb\xdb\x8a\xae\x95\xf0\x12\xb1\x0b\xf1\x81\x35\xb4\x48\x89\x0f\x4c\x97\xe4\x32\xf0\x81\xed\x1a\xce\xcb\x58\x0e\xd2\x74\x19\x41\x32\x5d\x6a\xe2\x50\xbc\x6f\xed\x5a\x83\x0f\x56\x6a\xca\x11\x43\xb2\x8e\x70\xb1\x81\xb4\x2c\x8a\xcb\xc2\xdf\x01\x1b\x23\x1e\x1c\x5e\x15\x49\x24\xe2\x52\x4c\x27\xf2\x19\x46\x8d\xe7\xd0\x0b\x4d\x92\x1b\x8c\x0d\xd9\x87\x44\x0c\x80\x85\x29\x5f\x12\xf9\x43\xef\x55\x6a\xa5\x0e\x81\x38\xa4\x1a\xf1\xc9\xeb\xd4\xb3\xc9\x0f\x33\x8b\x64\xc4\x8b\x2e\x45\x06\xa8\xc1\x23\xf5\x34\x2c\x47\x21\x68\xc5\x03\x4a\x5f\x54\x97\xc0\x1a\x8a\x78\x21\x09\x09\x54\x61\x33\xff\x0e\x05\xbc\xf8\xde\xab\x78\xf2\x4e\x16\xa4\xf6\x2f\xbe\xb7\x39\x5c\x0d\xdf\xdb\x94\x94\x26\x2a\x31\x5f\x1e\x19\xc5\xfb\x95\x80\xe3\x33\xd9\xf9\xf2\x40\x1d\x16\x6e\xd6\xe7\x81\x4c\x6c\xd6\xc4\x10\xc7\xb1\xf9\xa0\x05\x98\x62\xf3\x51\x07\x71\x1c\x5b\x6f\xfe\x0e\x0d\xf2\x3e\x85\x30\x8e\xad\x37\x67\x65\x88\x74\x2d\x63\xc4\x71\x6c\xa3\xba\xd4\x37\x3d\xfa\x6e\xec\x8d\x44\x97\xc3\x60\x07\x6c\x39\x02\x39\x36\x9b\xbb\x18\xc8\xb1\x14\x2d\xea\xc9\x38\x19\x9e\x25\x3c\x86\x3d\x34\x0d\x53\x1e\x84\x2e\xea\x28\xbb\x92\x0c\x93\x4f\x23\x28\x85\x6f\x21\xa8\x04\xbe\x1e\x37\x9d\x04\x0f\xa4\xc4\xb5\xf0\x8c\xd5\x14\x2d\xb7\xfe\x8e\x96\x5b\xb5\x19\x47\x39\xb3\x07\x1f\xb0\xb6\x6a\x09\x24\x62\x3c\x65\x12\xd0\x2f\x81\x30\xf9\x26\x87\xcb\x24\xbc\xdf\x65\x02\xde\x6f\x93\x1c\x70\x89\x61\x03\xe1\x64\x50\xe8\x66\x0a\x2a\x8a\x47\x6c\xf1\x51\xb1\x87\xd4\x9e\x53\x45\x42\x0c\x6a\x73\x98\xbc\xd4\x2d\x5d\x1a\x0f\x59\x37\x2f\x7d\x00\x1a\x5b\x91\x86\x00\x40\x63\xb3\x94\x9b\x7c\xee\x2b\x8b\x18\x7c\xa8\xcc\x65\x52\x9b\x7a\x52\x61\xde\x77\xf7\xe9\xab\xd4\xf6\x38\x6d\xce\x12\x05\x4b\xae\x8a\x09\xcb\x30\x51\x78\xfe\x4c\xd2\x1b\x11\x12\x87\x9b\x86\x08\x89\x39\x57\xe7\xc4\x19\x5b\x6b\x3e\x78\x00\xd2\x86\x1b\x3c\x00\x65\xa7\x9d\x33\xf6\x43\xbc\xe8\x9a\xaa\x22\xd1\xce\x21\x02\x97\xca\x94\xc2\xbb\xe0\x4e\xc2\x05\x91\x62\xe2\x9c\x51\xb5\x79\x06\x71\x3c\x6a\x14\x6c\xf9\x49\xaa\x48\x10\x48\x51\x9c\xc6\x88\x4f\x22\x70\xe9\xf5\xa9\x0b\x97\x5e\x25\x83\x00\x63\xec\x49\xeb\x0b\x28\xc6\x9e\xa4\xfa\x00\xc5\xa8\xe7\xbf\x0e\x05\xcd\x4b\xb5\x2d\x7a\xb6\xd4\x2c\x5e\xfb\xd6\xba\x00\xc0\xb1\x27\xf1\x2d\x43\x18\x76\x9f\xc9\xf4\xfa\x73\x38\xeb\x0d\x81\xa2\x46\x2f\x0a\x4f\x55\x01\xc0\x58\xd6\xd9\x11\x61\x09\x7b\xf6\xcc\xc1\xbc\x59\x9e\x9c\xd8\x6d\x74\xe6\x05\xba\xb1\x17\xe9\xfd\x00\x34\xa6\x14\xa6\xe0\x32\x7a\x72\xc2\x1d\xae\xc3\x79\x90\xa7\x74\x94\x0b\xba\x8c\xdc\x4e\xee\x93\x4f\x5b\xe0\xda\xd2\x71\x58\x8f\x3e\xeb\xb0\x18\xe2\xb7\xdf\xa0\x66\x2f\x3e\x9c\x29\xd6\x5c\x7c\x38\x53\xc5\x30\xce\xa1\x10\x88\x87\x84\x53\x6c\x3a\x11\x3b\x85\x96\xfb\xe2\xb5\xe5\xac\x63\x2e\xf1\x90\xf9\x72\x56\x76\x38\x89\x82\xf7\x2e\xfc\x21\xbb\xef\x2a\xa0\x19\xa8\xfb\x02\x40\xba\x0a\x46\xb9\x2f\xe2\x63\xc6\x39\xcc\x92\xf4\x44\x40\x26\x8d\x06\x5f\x82\xce\x97\x73\xc2\x7d\xe7\x2e\x42\xd8\x65\xed\x02\x0c\x73\x68\x31\x45\xe0\xa4\xc5\x94\xdf\x88\x56\xb3\x19\x76\xe5\xd2\xe2\x67\x58\xc1\x1a\xda\x22\x08\x64\xec\x36\x43\x2f\x1a\x87\x64\x64\x40\x24\xc1\xde\x24\xd3\x16\xaf\x11\x37\xe7\x04\x42\xfd\x72\xa9\xb0\x55\x3c\xa5\x50\xa4\xb8\x14\x38\x87\xa4\x19\x23\xaa\x60\x6f\xda\x12\x88\x6b\x6c\xd2\x1d\xf9\xc0\xb3\x0d\x2e\x8b\xbe\x21\xed\x6c\x8b\xbe\x21\x9d\x39\xf8\x9e\xb3\x4d\x3a\x8b\x97\x8a\xb5\x25\x22\x72\x60\x6f\x92\xf5\x7c\xce\xd9\xd6\x46\xc4\x0a\xec\x4d\xa2\x02\xb1\x02\x93\x8d\x38\x4b\x61\x65\x5d\x03\x5b\xed\x52\xc8\x98\xfc\x0e\xd1\x01\x53\xf8\x18\x87\xf0\x80\xa9\x6a\x5d\x30\x3c\x60\xf3\x39\x66\x2b\xe6\x54\x17\xd5\x78\x58\x75\x5e\x46\xd9\xbc\x44\xc1\x6e\x24\xe3\xd7\xe6\x53\x87\x97\x3f\x64\x37\xaa\x28\x4e\x85\xeb\xe7\x54\x34\x51\x84\xa0\x99\x62\x44\x64\xe7\x44\x4c\x82\xec\x1a\xe0\xc6\x71\x99\x3c\xb9\xeb\xe0\xbe\xe5\x4c\x55\x27\xf8\x4a\xdc\xe5\x34\x76\x62\x9a\x44\x43\xa5\x05\x6f\x45\x92\x4d\xa2\x18\x39\x58\x8d\xe1\x2d\xbb\xcb\x69\x2f\x3e\xfd\x2a\x0a\x67\xda\xea\xde\x0b\xa2\x26\x21\x8c\x18\x7c\xdd\x46\xf8\x4d\x2f\x4f\x73\x56\xf8\xd4\xb4\xbc\x10\x83\x2f\x4d\x6d\x67\x7c\xbe\x79\x8a\x67\x11\x91\xaf\xdb\xd6\x4c\x48\xe3\x74\x17\x11\x7c\xaa\x68\x3f\x00\xa0\x31\x67\xe9\xfd\x8c\xce\x37\xc5\xc1\x9b\x21\xb7\xcd\x0b\xe0\x3d\x5b\x5e\x89\x6f\x9c\xcd\xa5\x4c\xa4\xf9\xbb\x00\xe5\xb6\x2c\x50\xae\x1d\xfd\xf3\xa8\x6d\x8e\x8c\x6b\x67\xff\x5c\xdf\xcd\x57\x47\x45\xc1\x1f\x22\x7d\x08\x4f\x45\x77\x9b\xaf\x19\xb0\x6f\x3e\x69\x30\xa7\x35\xa7\xc1\xb9\xa8\x55\xc1\xf0\x7c\x53\x6b\x8b\x6f\x4a\x67\x8d\xe7\x8b\x58\x22\x6d\xe5\x04\x3b\xce\xe8\xdf\x0b\x68\x40\x21\x7b\x48\x5e\xbd\xf8\xf8\x4b\xb8\x31\x74\xc5\xb9\xc2\x0f\x72\xaa\x0a\x78\x9f\x8a\xf6\x54\x46\xf1\x9b\x12\x02\x08\xd3\xd7\x6d\x83\x67\x20\xbe\x59\x9d\x73\x52\xcc\x2a\x2b\xaf\xb6\x6b\x15\xbe\x78\x87\x44\x23\xfa\x22\xee\xba\x98\x82\xc3\xa9\x3a\x27\x8c\xf7\x57\x38\x91\x03\xac\x96\x32\xce\x41\x38\x2f\x78\x26\xc4\xf9\x82\x3c\x8a\xd7\x10\xc1\xee\xd7\xd6\xf0\xe2\x91\x0d\xe9\x44\x40\x16\xe9\x25\x2f\x46\x41\x88\xea\x72\xe0\xd2\x13\xb7\xbd\x78\x7d\xbd\xb8\x46\xb8\xd1\x9e\x34\xb8\x24\xaa\x0b\x45\xaf\x3c\x53\xbc\xcb\xee\xf9\x06\xb8\x3b\xab\x86\x37\xdd\x92\x4a\x7b\xd3\x2d\xa9\xf9\xc6\xa3\xd3\x39\xab\xa1\x6f\x3a\x29\x8b\xbf\x83\x83\x4f\x3d\x7c\xd3\x11\xf9\xe4\x64\xab\x9d\x13\x1e\x5b\x71\x29\x80\x92\x02\x9a\x1f\x0a\xce\xbf\xea\xef\xe0\x96\xec\x4e\x43\xab\xbb\xd3\xd8\x6a\xb7\x13\x53\xa1\x55\xff\xa6\xef\x5c\x8c\x01\x98\xe4\x28\xae\x2f\x38\xf6\x6a\x0b\x9d\xe5\x9a\x33\x60\x26\x47\x29\x2e\x85\x7d\x70\x29\xe8\x83\xeb\xe3\x09\x42\x53\xff\xa6\x23\xfd\xa9\xfd\x4d\x5b\xb5\x9a\x2d\xf7\xa2\x54\x3f\x40\x21\x47\xc8\xca\x0d\x28\x64\xf6\x91\x08\x61\xf5\xf2\xf0\x58\xc0\xb3\x3d\x3c\x16\x80\x42\x0e\xa9\x8c\x80\x42\x1e\x31\xab\x2a\xc1\xa6\x21\x9e\x61\x54\x3d\x1b\x89\x80\x8c\x1c\xe1\x0f\xe9\xb1\x74\xf7\x81\xcb\xb5\xae\x0c\x64\x64\x1e\xda\x62\x11\x46\x6f\xd8\xb3\xfd\xa6\x63\x66\xf8\x3b\x36\x5b\x4d\x03\x53\x86\x98\x8b\x50\xc8\xf1\x8c\x3e\xb8\x72\x3c\x89\xe8\x45\x71\x63\x5e\xa8\x42\x63\x81\x97\x58\xc3\x63\xc1\x68\x53\xd6\x69\x10\x53\x2f\x0f\x65\x45\x50\x3d\x3d\x5d\x77\x28\x2c\x35\xb5\x06\x38\xc9\x3c\x34\xdc\x08\xaa\x97\x87\x24\x06\x40\x93\x23\xaa\xcb\x84\x6b\xb5\xf8\x3b\x0c\xbe\x46\x0d\x30\xc9\x3c\xa4\x86\xdf\x72\x44\x86\x28\xc2\xcd\x87\x13\xe1\xc5\xe8\x2e\x14\xbd\xa8\x4e\xc3\x54\x64\x37\x1b\xde\x3e\xad\x18\xa0\x2d\x47\xb8\x69\xc1\x2e\x35\x51\x98\x0a\x4d\xe8\x4d\x57\x8c\xa6\x09\xd8\xcb\x3c\x92\x4b\x41\x27\xdc\x50\xba\x2c\xb5\x89\x13\x7b\x69\x3f\x20\xb0\x97\x79\xe4\xdf\x60\xd9\x00\x30\x73\x44\x71\x63\x38\x31\xa6\xd8\x25\x17\x0a\xee\x12\xcb\x12\xa6\x39\xa4\x7a\x11\xa6\x39\x8a\x29\x72\x97\x86\x82\x2e\x1b\x69\xe1\x37\x5d\x94\x62\x0b\x20\x38\xf3\xf0\x68\x73\x89\x48\x4d\xb8\xb9\x44\x3c\x67\x5c\x22\x6e\x19\xb0\xc3\x3e\x22\x02\xce\x39\xc2\x7c\x00\xec\xf0\x70\x8f\xb8\x5e\x3c\xa0\x5a\x2f\xce\x89\x1e\x79\xd0\x10\x3f\xcb\xb0\x2e\x80\x3b\xa7\xb1\x53\x37\x8f\xce\x97\x96\xd6\x2d\xfe\x55\x97\xe8\x58\x14\xdf\x7f\xe8\x4a\xec\x4d\x54\xe2\xdd\xc7\x29\x12\xce\xd2\x6a\x0a\x5e\x38\xb1\xc5\x87\x9e\xc5\xea\x0f\x61\x72\x90\xd6\x8f\xc8\x7c\x25\x75\x7f\x37\x90\x33\x44\xc1\x27\xd7\x5c\x3d\xcf\xd5\x43\x14\xce\xd5\x9a\x17\x46\xed\xb3\xea\xfe\xa1\x5b\xbd\xb9\x06\x60\xac\xbb\xcb\x44\x97\xb2\x4b\xa1\xd9\x44\xa5\x30\x10\x83\xcc\x89\x1f\xde\x3b\x0d\x17\x43\x37\xe3\x30\x85\x0e\x4a\x04\x01\xbb\x39\x8d\xe8\x03\x76\xb3\xa4\xe1\x42\xd1\xa5\x66\x0a\x5d\xd2\xca\x02\x78\x73\xfa\x04\xf0\x61\xb4\xf6\xe9\xea\xe1\xff\x9d\xae\x0f\x5d\xaa\x2e\x05\x5e\x46\x89\x00\x3e\xc4\xdd\xc2\x63\x88\x70\xed\x86\x09\x02\xd8\x39\x8d\x6a\xfb\xd0\x1d\x2f\x3b\xec\x47\x11\x2a\xa7\x13\xc1\xce\xc3\x1f\x62\x8f\x91\xb0\x02\xce\x73\x1a\xcf\xc8\x97\xb8\xa7\x1d\xa2\x08\x0c\x18\x59\xb2\x0b\x20\xd0\x69\x90\x1b\x02\x03\x96\x24\x9b\x20\x20\xa1\xc5\x0e\xc9\x0f\x5d\x97\x3a\x62\x02\xf6\x39\x0d\xa0\xfc\x90\x67\xb5\xe1\x7d\x18\xf7\xc1\xf5\xd1\x31\xef\xa6\x6d\xf2\x9a\x73\xc2\x31\x3f\x9c\xc6\x89\x51\x7d\x88\x4f\x62\xb8\x21\x21\xa1\xdd\x46\x60\xbc\xbd\x5d\xec\x0e\xfd\xe8\x81\x98\x27\xf1\xc5\x55\xe2\x62\xa9\x43\xb1\xad\x71\xd1\x3b\xce\xf5\x15\x17\x1f\x0c\x0c\x9e\x8e\xe3\xe2\x3b\xc2\x54\x0c\x03\x28\xd1\x60\x5c\x9d\x43\x6d\x50\x21\xea\x75\xa8\xcb\xdf\xc1\x25\xc9\x95\x18\x40\x89\x06\x71\xec\x87\x3a\x6c\xdb\xfd\x1d\x9f\x19\xa0\x42\x17\xc0\x85\x86\x4e\xea\x01\x5c\x68\xe1\x95\xd0\x43\xc1\x91\xca\xdd\x29\x80\x0b\x0d\x1d\xa3\x03\x6f\x61\x87\x8c\x2d\x01\xec\x67\x30\x36\xd1\xa1\xd0\xce\xe7\x3b\xb8\x4e\xb3\x3a\x8f\xc7\x81\xbb\x7b\x84\x40\x81\xf9\xba\xbe\x95\xcf\x71\xd1\x48\x19\x1a\x35\x78\x27\x09\xcd\x3f\x14\x8c\x94\xa1\xa1\x80\x91\x92\x97\xa0\x0f\xd5\x51\xc5\x14\x05\xde\x4b\xa6\xd0\x89\xa4\xa6\x81\xdb\xba\x3b\x21\x93\xa5\x3a\x01\x68\x7c\x7f\xbe\xc3\x60\x27\xb7\x85\x83\xad\xa1\x80\xdb\x9c\x91\x98\x7a\x20\x16\x61\x30\xbe\xd2\xa1\x32\x1f\x7c\x52\xa1\x0c\x46\x18\x2a\x14\x31\x9e\x65\x1d\x0f\xa0\x3d\x23\x7b\x26\x36\x59\xc6\x85\xa2\x13\x97\xc6\xd0\x8c\xa9\x76\x23\x56\x89\x74\x88\xb8\x74\x63\xc8\x43\xc3\xd7\xbf\xf8\x9a\xdd\x21\xd9\x0f\x27\x72\x6a\xfc\xe5\xe9\x87\x4e\x21\x01\x0c\x69\x64\xf5\x18\x18\xd2\xc8\x3c\x9e\x05\x50\xa3\x21\x9b\x4d\x20\x04\x61\xe8\x38\x18\x7c\xde\x5a\x20\xca\xe0\xf3\xd6\x53\xac\x07\xb8\x67\xe8\x10\x1b\x08\x41\x58\xe5\x0d\x08\x3e\x6f\x2d\xf0\x41\xf0\x79\x6b\x9d\x8f\x22\xf1\x7e\x76\x77\x1a\x1c\xe5\xdd\xa5\x04\xca\x6c\xa2\x16\xcf\x40\x2e\x94\x53\xea\xea\xe1\x51\x0e\xa7\xb1\xa1\x55\x14\x1b\xea\x62\xe0\x27\xef\x4a\x63\x74\x54\x77\x17\x6f\x28\x0a\x49\x1d\x7c\xb3\x5a\x27\xce\x00\xa2\x33\x84\xb0\x8c\xc4\x78\xa8\x5d\x03\xb3\x18\xa6\x7e\xa8\x4f\x0c\x88\x5a\x9d\x75\xa3\x18\x57\xf8\x02\xa5\x66\xe3\x45\x45\xf9\x54\x02\x20\xce\x74\x31\xac\xec\x21\x71\x6d\xb2\x6a\xb8\xe5\x33\xf4\x98\xea\xb4\x56\xf4\x29\xdd\xdd\x62\x1b\xa0\x3a\x43\x18\xad\xe0\x7b\xd6\x42\xb4\x06\x20\x9e\x21\x38\x57\x20\x22\x62\x95\x53\x2a\xf8\xd6\x35\xef\x62\x1e\x0a\x56\x7f\xb7\x06\xd1\xf5\xe5\xfa\x0a\x44\x4b\x4c\x23\x7b\xa6\x18\x1a\x67\xba\x31\xe4\x36\xf6\x9f\xaf\x54\xcb\x12\x13\x59\xc1\xf3\xd5\xe5\x4c\xd0\x46\x33\x85\x1b\x69\x9a\xe1\xac\x07\x7d\xb9\x47\x04\x10\x9f\x67\x90\x5d\x10\xbd\xc5\xdc\xcf\x82\xd1\x14\x2f\xa1\xf5\x03\x10\xd0\x34\x64\x09\x8d\xac\x68\xfa\x43\x45\xd1\xf7\x5d\x95\xc8\x6b\x68\xe5\x21\xe1\x9c\x6f\x2a\x17\xb7\x6c\xe5\xa9\x8d\x4c\x90\x47\x53\xcf\x42\x68\x08\x7f\xc8\x08\x38\xc3\x79\xc9\x14\xd3\x24\xc6\xd6\x3d\xa5\xe7\xbb\xf9\x4b\x35\xde\xe5\x62\x8b\x2f\x6e\x2c\x5d\x28\xea\xb6\xfc\xde\x43\x5f\x2a\xd6\x80\x04\x4d\xe6\xf5\x59\xcd\x8a\x1f\xab\x1e\x1a\x4f\x46\xf4\xed\x2a\x16\x0f\xb8\xd6\xfa\x6d\x70\xe9\x93\x95\xac\xef\x0f\xd9\x11\x53\x70\x89\x37\x57\x01\x97\x78\x73\x6b\x00\x57\x91\x7c\xe2\xb3\xd5\x02\x11\x04\x9f\xad\x1e\x49\xfb\x4a\x26\xcc\xa3\xea\x43\x39\xc4\x87\x06\x0b\x0e\x71\x5e\x41\x3a\x14\x66\xa4\xfb\x43\xdc\xf1\xf9\xff\x18\x3b\x97\xab\xe7\x79\x9e\x57\xb7\xb2\x4b\xb0\x25\xeb\x34\xf9\x7b\x91\xee\x24\xfd\x97\xb0\x57\x80\x0b\xf9\x86\xcf\x3b\xe4\xb2\xad\x93\x75\xa0\x48\x10\xcc\x66\xe6\x1c\xd6\xcf\xfa\x15\x64\xd0\xc0\xca\xcb\xdf\x26\xcc\x2b\x05\x7d\x24\xb9\x23\x42\x8a\x7e\x8f\xee\x85\x28\x40\x04\xbb\x9b\x18\x19\x9f\xc9\xee\x56\xed\xc3\xbe\x7e\x0f\xc5\xe7\xcf\x86\x46\x02\xeb\x95\x52\x95\xb1\x7a\xa5\x50\x66\x74\xca\x11\x03\xcf\x8c\x74\xf4\xea\x83\xf4\x52\x8d\x37\x92\xb2\x57\x8f\x14\x83\xfb\x1d\x91\xdc\x10\x93\x06\x2c\xb7\x95\xc6\x85\xfe\x95\x82\xb4\xdd\x4e\x36\x23\x12\x54\x5f\xac\x92\x4a\xb6\x07\x76\x0a\xe7\xab\xc6\x6d\xbe\x2a\xb9\x1f\x56\x1e\xca\xe1\xbe\xf2\xa5\xe3\xb9\xd2\xf8\xc5\xea\x63\x10\xb6\xb2\x21\xfc\x24\x63\x61\x32\x7a\x4a\x57\xfd\x6b\x02\xa9\x1e\xd0\xa7\x6a\x3c\xdf\x74\x6d\xdb\x38\x9b\x6a\xec\xf9\x9e\x91\x86\xf3\x46\xe6\x5d\x9c\xdb\x0c\x92\x03\xc0\x9d\xad\xf1\x2b\xea\x30\x29\xbf\x7a\x4c\xb9\x53\xd2\x0a\xc5\xb7\xce\xbc\xab\x70\xb4\x0c\x2f\x99\x1e\x50\xc7\xaa\x33\x3d\x70\x0c\x09\x44\xda\x7e\x03\x28\x07\x67\xcd\xd0\x1f\x66\x0d\xa5\xca\xc3\x89\x4d\x76\x09\x29\xda\x30\x9a\x2d\x21\x45\xef\x82\x4f\x7f\x55\x92\x42\x70\xbc\x18\x01\x5a\x80\x45\x2c\x21\x40\x1b\x46\x9f\xe5\x54\xd8\x05\x5c\xc4\x12\x04\xb4\x61\x68\x5f\x82\x80\x7e\x1f\x46\xb4\x47\x86\xbd\xc4\x99\xb1\x0b\x48\x8d\x25\xdc\x67\xc3\x90\xb8\x8c\xfb\x2c\xe0\x85\x96\x90\x9e\x5f\xb1\x21\x9a\x5a\x16\x95\xca\xe8\xce\x02\xb0\x67\x09\xdd\xf9\x15\x1f\xc4\xb7\xc5\x54\x2b\xb2\x0f\x0e\x24\x93\x41\x96\x27\xd5\x3a\xd1\xc9\x75\xe7\xa9\xb3\x99\xb3\x8b\x3a\x21\x76\x67\x83\x31\x1d\x64\x19\xec\x3e\x8f\xc1\x1a\xa3\xe5\xd3\x61\x91\x36\x2d\x23\x0d\x68\xd2\x32\x4b\x55\x9e\x99\xa5\x0a\x55\x52\x28\xcf\x46\x00\xce\x12\xca\xb3\x81\xd9\x5f\x0f\x10\xfe\x91\x26\xc8\xe8\x13\xed\xc2\xa8\xcf\x8a\xbb\x7f\x3d\x1b\x46\x2b\x5e\xde\xf0\x0c\xd0\x5e\x61\x3e\xa2\x4e\x8a\x23\x12\xce\xbe\xaf\xd4\x0c\x4b\x88\xd8\xfd\x25\x4d\xd2\xdc\xae\xdf\xfb\xda\x3f\xf7\x72\xe5\xe3\x6e\x51\x9b\x04\x20\x6d\xd1\xe8\x04\x20\x6d\x18\xb0\xd6\x13\xfe\xe5\xf4\x45\x69\x3f\x70\x4b\x2d\x01\x4a\x31\x5c\x2c\xe3\x49\xdb\xe2\xe4\x33\x87\x64\xcb\x68\x66\xde\xd3\x58\x13\x28\xe4\x59\xb3\x1b\x3c\xe5\x98\xf0\x0e\x41\xe9\x9e\x33\x69\x58\x12\x0c\xc0\x01\xaa\x82\x64\x68\x0a\xe3\x68\x9f\x3f\xe7\x83\x59\x23\xf1\xc1\x2f\xc1\x50\xef\xc9\x94\x10\xf0\xb4\x13\x2a\xb0\x44\x0c\xd9\x09\x07\x58\xcd\xe1\xc9\xcc\xa5\x66\x04\x00\xd3\xce\x49\xc0\xeb\xef\x99\x79\x10\x56\x1e\xca\x46\xf6\x20\x29\x06\x19\xe4\xc9\x52\xde\xef\x91\xc3\x49\xf8\xd1\x32\x38\x48\x9b\x91\xfc\xa8\x16\xcd\x36\x32\xc6\x5e\xf4\x8e\x25\x33\xb0\xd9\x46\x86\x4a\xd2\x6c\x23\x63\x3e\x0a\x4c\x7a\xc3\x93\xf4\x15\x65\x3a\xe8\x79\xf5\xa5\x57\xe9\xaf\x2e\x6f\x80\x70\x57\x23\x26\x94\xb3\x51\x10\xd1\xd9\xd2\x61\x5b\x00\x52\xe8\x96\x8d\x63\xe6\x4d\xdb\x38\x68\x9b\x0d\x00\x0c\xbe\x30\xa0\xb3\x65\xa0\xc8\x43\xc8\xbf\x6f\xbe\x85\x95\x7c\xf8\x72\xfd\x34\xc7\x17\x2f\xe6\x97\x80\x9e\x0f\xc0\xa4\x65\xa0\x27\x11\x17\x4b\x40\xcf\x67\xb2\xc3\x19\xe8\xf9\xa4\xa5\x24\x97\x9a\xf9\xd0\x50\x4a\x26\x98\xb0\x9d\x5f\x31\x2f\x5b\xa1\xcc\x80\x10\x93\x9c\xdf\x0a\xe4\x8d\x53\xbe\xdb\x43\xdf\xd9\xdb\x8d\xef\xbc\x3b\xbb\x79\xf7\x4e\x0a\x44\x72\x99\xd6\xb1\xe7\x48\xee\xe6\x25\x5a\xa8\x08\xc2\x7b\x62\xa8\x5d\xdd\xb9\x08\x7b\x4b\xb9\xcb\xc1\x7f\x29\xc8\xf4\x94\x77\xaa\xf1\xdf\xa5\x58\x5b\xb0\x50\x0a\xba\xc3\x44\xd8\x5b\x04\xe8\x5c\x39\xed\x9c\x1a\xbc\x44\x9d\x10\x82\xb3\xfd\xea\xd0\xb6\x59\x71\x61\xac\xee\x8c\xb0\x03\x41\x9e\x0f\x76\xb7\x6e\x7b\x6c\x8b\x24\x03\x65\x4b\x63\x64\xa5\xe0\xdc\x16\x67\xe3\xc2\x1f\xb8\xba\x73\x50\x70\x42\x19\xaa\x79\xdf\xe8\x56\x82\x6a\x8e\xdf\x77\x8a\xd8\x8e\x30\x9c\x55\x17\xc9\x8e\xf0\x14\x22\x87\x23\xb7\x7d\x53\x35\x02\x99\x5f\xdd\x96\xd3\x96\x67\xb2\x01\x72\x8b\x12\x2e\xb3\x62\x8f\x5c\x82\x65\xd6\x68\x0c\x86\x56\xf6\xc9\x26\x63\xa6\xc5\xbb\x73\x00\x76\x0e\xec\x3c\x9c\xde\x1c\xa9\x44\x7e\xad\x5f\x39\x72\xcb\xe7\x2f\xd9\x2d\x5f\xfe\x99\x96\xfc\xfb\xaa\x33\x82\xa5\x71\xb6\xf4\x65\xc6\x89\xa7\x8f\xc0\xa6\x35\x4c\xd9\xcc\x55\x4d\x88\xcb\x51\xa9\x71\x38\xde\xae\xe7\x4d\xed\x64\x14\x3a\x30\xf6\x2f\xa4\xb7\x46\x2a\x92\x36\x32\x56\xeb\x70\xdc\x05\x57\x1d\x73\x33\xf6\xc9\x44\x14\x37\xe3\x6c\x5c\x42\x04\x9a\x5c\x44\x49\x2e\x27\xd4\x6e\x85\xdf\x3d\xcc\x45\x84\xee\x32\xcc\xc0\x86\xc6\x61\x00\xe5\xdd\x6b\x44\xb6\xf5\x54\x62\x2d\xe2\x89\x88\x16\x41\x6b\x0d\xaf\x1c\xe9\x98\x54\x4e\x36\x25\xa7\xd1\xbe\xd8\x4c\x0c\xb5\x04\x36\xbf\x9c\x54\x9b\x1c\xdb\x5f\x51\x41\x7f\x29\xa4\x7f\xa7\x1f\x15\x10\x87\x81\x60\x0e\x59\x04\xc1\xa6\x50\x76\x94\x0a\xbb\xdf\x28\x46\x82\x49\xf6\xca\x1d\x03\x94\x64\x46\x0d\xa8\x52\xde\xac\x92\x28\x13\xa8\x12\x23\x21\xaf\x7c\x65\x8f\x13\x0e\xf2\xc6\xa4\xbf\x06\xd3\x8b\x56\x2a\x8b\x41\xcb\x44\xf0\x51\x98\xc1\x76\x02\xeb\x85\xf6\x2c\xe0\xe3\x8d\xed\x74\x91\xb3\x9a\xd9\xa5\x94\xd5\xbd\x71\x9e\x9b\x05\x32\x6b\x66\x2a\x76\xb8\x8d\x7c\x27\x94\x47\xcd\x9b\x5a\xa3\xac\x0a\xc1\x25\x7b\xa6\x85\xf1\x92\xad\xa7\x76\x75\xa2\xa6\x4c\x75\x62\xa4\x76\xaf\x91\x85\xe4\x4e\x14\x24\xe7\xf1\x8b\xa4\xbc\xe3\xe8\x08\xd3\x21\xf3\x68\xb7\xd3\x28\x0f\x34\x33\x41\x2d\x7b\xe6\xaf\x32\x62\xdf\x98\xb4\xd7\xcc\x14\x45\x6a\xa6\x37\x45\x9a\x9e\x1f\x79\x28\xc7\x3f\x2a\x92\x18\x21\xfb\xfa\x7d\x68\x78\xe1\xca\x97\xd2\x35\x52\xa3\x03\x32\xd2\xfb\x6d\xcd\x83\xfa\x85\xa6\xc3\x23\xb5\xa6\xb3\xa8\x5c\xe8\x0c\xce\x6c\x3d\xf3\x2b\x1c\x0a\xcf\xb6\x37\x85\xa7\xc3\x63\xb3\x9c\xe6\x7a\xf6\x7c\x37\x9d\x4f\x10\x49\x18\x8c\x92\x67\xde\x59\x52\xe1\x77\xfe\xae\xfc\x42\xa3\x4a\xf2\xb3\x8f\x61\x91\x9c\x2a\xd3\xb0\x92\x1e\x49\xed\xbe\x23\x49\x7f\x62\x7f\x16\x80\xb3\xaf\x8c\xb0\x26\x30\x1e\xce\x35\x0d\x2b\xc9\x90\x1a\x3a\x92\xbf\x6d\xe8\x08\x93\xdb\x29\xae\x0b\x13\x78\xd9\x7d\xcf\x88\x8a\x74\xb2\x14\x06\x46\xa4\x93\x37\x49\xde\xbf\xa2\x36\x3d\x26\xa9\x93\x5a\xd7\x9e\x42\x1d\x24\x48\x2f\x9c\xd5\xba\x30\x50\xcb\xba\xdd\xbf\x59\xf3\xbe\xaf\x1e\x57\x99\x4a\xe4\xec\x67\x9e\x0a\xd1\x79\xaf\x8b\x0b\xfc\xb2\x7f\x3f\x55\xda\xa3\x9f\x8e\x98\x99\x86\xc9\x2f\xfa\xca\xef\x2a\x6d\x88\x8a\x06\xc1\x8d\xb1\x96\x83\x38\x39\x65\x9d\xca\x7a\xf4\x7c\x29\x87\x21\xfa\xa4\x53\x59\x2f\x4e\xe7\x65\xd5\x8f\xdd\x51\x40\xcf\x32\x7a\xaa\xf8\xa8\x35\x48\x44\xaa\xa1\x15\x0b\xf7\x39\x16\xfa\x88\x70\x9f\x23\x16\x67\xa7\xb2\x7e\xa2\xc8\x08\xf9\x59\x88\x5b\x59\x4e\x65\x8d\x07\x6d\x39\x95\x35\xe1\x48\x6b\x99\xc6\x06\x62\x88\xb5\xec\x13\xed\xa9\x51\x4a\xe3\xc8\x33\x2b\x8d\x5c\x75\xc4\x73\x39\xb3\x31\x09\x24\x5a\x71\x0d\xad\xc5\x61\xce\x87\x8e\xee\x4c\xdb\xec\xf8\xcc\x7c\xf0\x05\x85\x8d\xc2\x20\xd1\x0e\x0d\xc7\x5a\xf6\x22\xad\xbc\x2a\x65\x97\x3d\x93\x9c\xd7\xe8\x84\x62\xc1\x5c\xc4\x7d\xaf\xe5\x60\xe6\xcc\x55\x07\x74\xae\x94\x29\x1f\x65\x7e\xb1\x03\x3a\x33\x19\x20\xc2\x4c\x87\xcd\x84\x89\x9e\x29\x24\xe8\xcc\xe6\xb7\x1d\x0c\xc7\xd6\x04\xbc\x13\x4c\xc1\x12\xbc\x73\x41\x40\xb0\x04\xe1\xac\xd1\x4f\xb7\x5d\x4f\xec\xf5\xdb\xae\xa7\x9a\x42\xe5\x7a\x62\xfd\x6d\xbb\x9e\xd8\xc1\x37\xa4\x6e\x1c\x7b\x4e\x6a\x5d\x52\xa8\x55\x4c\x0c\x42\x06\x7b\x8e\x45\x8f\x85\xef\x5c\x25\x4d\xb5\xbb\x89\x2d\x46\xf8\xce\xda\xd9\xb5\x85\xef\xac\xfd\xf7\x6c\x4a\x4a\xa1\xf2\x7f\xfc\xde\xdc\xce\x4e\x9e\x2a\x64\x3c\xff\x49\x32\x3a\xe3\x63\xd9\xd6\x38\x71\x6a\x28\x17\xf5\x8a\xda\xbc\x9d\x9f\x88\xf1\x36\x66\xf4\x77\xd6\x6d\xa7\x36\x63\x6a\x6c\x28\x58\xd9\xfe\x36\xe1\x40\x2b\x95\xc8\xf6\xd9\xf3\xee\xcb\x21\x77\x29\x48\xe6\xce\x9e\x5a\x6c\xb6\x65\x56\x6d\x8c\xf9\xa8\xe7\xdb\x04\x5f\x3d\x92\x83\x97\xd0\x4a\xb7\xa7\x67\xce\x74\x61\x45\x9f\xd8\x9c\x8d\x15\xbd\xa0\x66\x59\x02\x8b\xde\x2d\x5e\x8a\x4d\x36\xdd\x9f\xf8\xed\xdb\xcc\x10\xc9\xd8\x3f\x51\xca\xb7\xc3\x7f\xee\x9f\x78\x2c\xa6\x49\x2f\x8b\xa9\xe6\x6d\x31\x25\xe9\x14\x1e\x0c\xe1\xf1\xdd\xe8\x46\x79\x11\x48\xf4\x89\xaa\x28\x54\xe8\x13\xa5\x5a\xa8\xd0\x67\xf2\x9b\x8c\x0a\xbd\xef\x2b\xa2\x1b\x38\x91\x74\x1f\xbb\x7f\xe5\xbc\x3c\x2a\x79\xea\x89\xda\xc7\xbf\xf7\x6d\xe7\x91\xbe\x6f\xd4\x29\xe3\x3f\xef\x4c\x47\x91\x65\xb6\x38\x1d\x0e\x70\x63\xae\x8c\x02\x80\xb6\x98\x93\x05\xf2\x6c\xb8\xc9\x97\x28\x30\x1b\x80\xdb\x75\x50\x4f\x71\x02\x1d\xeb\xa3\xe9\xcb\x76\xc6\x3a\x06\x61\x3b\x5d\x22\xe7\x88\x99\x2b\x7f\xbb\xba\x98\x2b\x5b\xec\x09\xc2\x8a\x7e\x6f\x67\x79\xf8\x27\xfb\x0d\x4d\x37\x67\x21\x8f\x4c\x4d\x73\x5d\x79\xa6\x3b\x5f\x46\xda\xa0\x62\x96\x0e\xc0\xce\x91\x67\x02\x17\xb2\x3c\x04\xec\x2c\x04\x40\x2d\x81\x37\x0b\xbe\xff\x25\x48\x66\x25\x02\x66\x99\x8c\x32\x65\x1a\x92\x49\xbe\xb2\xaf\x28\x5f\x34\x43\x25\x72\xca\x15\x53\x8b\xc8\x29\x57\xcc\x30\x7f\xc6\xda\x15\x04\x7b\x00\x11\x04\x0c\x1e\x29\x43\x78\x5b\xce\x45\x73\x53\x76\x80\x85\xcb\xdc\x94\xed\x57\x9d\xb3\x95\xa5\x69\x8b\xfb\x37\x9f\xca\xb8\x52\x52\xac\x60\x72\xb1\x51\x38\xe1\xf1\x8c\x12\xf7\xe7\x1b\x6f\xcf\xab\xdf\xad\x32\xce\xd9\x3f\x52\xa2\x71\x36\x8a\x94\xb2\xc6\xa5\xae\xfc\xc6\x0b\x46\x92\xa5\xf4\xc6\x2b\x46\xd9\x3f\x65\xe0\xc8\xdd\x95\x5c\xc7\x37\x3f\xca\x6c\x96\x4f\x49\x37\xb7\x6d\xb2\x91\x86\xa6\x11\xcd\x31\x35\x2f\xad\x71\xee\xfb\x14\xa2\x3c\x2a\x0c\x8d\xf3\xe0\x33\xa4\xc2\x56\xb0\x29\x09\xe3\xd9\xef\xbc\x27\x8f\x22\xcb\x40\x10\xcf\x5c\x1c\xfe\xbc\xc9\xac\xf4\x46\x40\xe0\x3b\x6d\x3a\x0e\x3d\xa1\x4d\xd2\xe6\xee\xb4\x43\x57\x95\xfb\x57\xb7\x62\x4f\x9e\x54\xfe\xd2\x28\x20\xf8\x46\x95\x0a\x74\xa3\xc2\x0f\xea\x3c\xc7\xfd\x61\x80\x94\xe7\xb8\x57\xf6\x13\xa7\x39\x0e\x58\x41\x20\xce\x5e\x59\x74\x02\x71\xf6\x7a\xa7\x18\x59\x10\x51\x17\x05\xdb\xec\x30\xcd\x2c\xc1\x36\x7b\xfd\xd5\xf0\x92\xe4\xce\xbf\x6c\x81\x66\xad\x0a\x7e\xd9\x2b\x7b\xd2\xcb\x16\x67\xb4\xfa\x97\x0d\xce\x25\xdf\x2d\xb5\x65\x21\x6d\x7d\xd7\x90\x64\x2e\x47\x1f\x16\xfc\xb2\x43\x16\xb4\x5e\xde\x47\xee\x7c\xa7\x5b\x6e\xfa\x20\x55\x2d\x58\x05\x71\x5b\xde\x2d\x36\x78\xb3\x5b\x92\x2a\xeb\x2b\x5a\xe5\xca\x28\x6e\x1f\xa5\x34\xdc\x06\x93\x18\x26\x5f\x66\xc3\x9a\x79\xa8\xb5\xf4\x44\x7a\x3b\xab\x14\x8d\x75\x54\x43\x2a\x39\x4e\x5c\xc6\xc0\xe9\xe0\x02\xfa\xb5\xcc\x4c\xd9\xe6\x7f\xb0\x51\xbf\x1c\x00\xc1\x1a\x34\x89\x65\x9b\xa9\xc2\xfc\x13\x79\xa6\x2d\x61\xa5\x42\xdd\x22\xd9\x0d\xcd\x5a\x19\x13\x26\xac\x95\x2b\xdf\x69\xb1\xb6\xbc\xa9\xf3\x0b\xc5\xd9\x09\x8f\x21\xe6\x58\x4e\x78\xbc\x60\x83\x58\x6f\x5f\x8c\xd1\x31\x9d\xf1\xb8\xcd\xbc\xea\x8b\xf1\x42\x72\xb3\x3b\x92\x9b\x9d\x37\x15\x47\x80\x16\x6f\x38\x26\xa0\xad\xf5\x36\x5f\x1c\x7b\xde\xdb\x97\xdf\x99\x32\x15\xb7\x31\xf3\xa6\xb3\x3a\x31\x53\x9c\x1e\x19\x40\xd9\x7a\xfb\xf6\xbb\xf2\x4c\xb7\x5f\x2c\x9d\x6f\xdf\x7e\xd9\x37\x04\xce\xec\x30\x1e\xac\xb7\x6f\xbf\x4f\xde\x74\xb3\xa9\x5e\x5c\x5c\x6d\xa6\x06\xdd\xe7\xd9\x14\x9c\x2a\x39\x16\x17\x27\x47\x06\xb2\xb6\x9c\x1c\x19\x7c\xe0\x7a\x3b\x97\x20\x3b\xcb\x9b\x7c\xa2\x6c\x18\xe6\xc2\x9c\xb9\x36\xbd\x0d\x13\xce\xfe\xfb\xf6\x4d\x95\x5b\xc4\xdb\x37\xd5\x8c\xb7\x59\xae\x52\xac\x4f\xbf\x9c\x8c\x6f\xdf\x54\x5b\x5e\xd5\x4d\x35\xbd\x72\x00\x44\x7a\xe5\x9b\x6a\x7e\x94\xb6\x3a\xc2\x20\x97\x08\x2e\xfb\xca\xd8\xc8\xe6\x07\xa3\xda\x7a\xfb\x16\x9b\xd1\xf7\x2d\x96\xc3\xef\xed\x00\x88\x74\xd1\xe1\x36\xf1\xfc\x7d\x1c\xd7\xc0\xdf\xff\xd8\x25\xc1\x2e\x2e\x60\x65\xcf\x1d\xee\x63\x07\xc5\xc8\x77\x6e\x76\xde\x74\xb3\x23\xe9\x82\xdd\x53\xa6\x22\x35\x50\xc5\x05\x97\xec\x8b\x1b\xc5\xc7\x81\x0c\x3d\xdf\xc9\x9e\xc1\x8f\x12\x5c\xb2\xe7\x28\xfc\x78\xb6\x31\x13\x3f\x0b\x7e\x09\x24\x99\x05\x18\xec\x0f\xc4\xf7\x79\x66\xe2\x28\x6a\x58\xb6\x66\xd0\x16\x6d\x98\x2d\x97\x34\x73\x5d\x92\xdb\xf0\x2b\xaa\xdd\x6c\x3c\x1f\x18\xf3\x53\xce\xf6\xc1\x8c\xa4\x3e\xf5\x48\xea\x13\xa7\x87\x89\x30\x83\xfe\x31\x5e\x32\xc8\x18\xc1\x25\xfb\x4a\x7d\x36\x0c\x32\xa1\xcd\x7c\x99\x9b\xb6\x99\x2f\x41\x37\xaf\x8f\xad\x30\xac\xfb\x8f\xad\x30\x3d\xcf\x34\x49\x5a\x9e\x59\x81\xe0\x4f\xd8\x4c\x3d\x22\xa9\xd5\x4f\xea\x23\x1d\x27\x92\xfe\x04\x77\x69\x73\x64\xe6\x66\xef\x4c\xc9\x71\xda\x7d\x1c\xf7\xc3\x62\x36\x63\x26\x94\x2c\xeb\xe3\x69\x5f\x23\x55\x7b\x0f\x90\x44\x76\x96\xf1\x24\x03\xe1\x7f\xc0\xee\x7d\x6c\xbd\x69\x29\xc6\xdd\x65\x40\x1d\x14\x84\x2e\xf0\x71\x78\x1a\xd8\xf9\x65\xe6\xcd\xc5\x5a\x16\xac\xb2\xaf\x9e\x0f\xdf\x76\x74\xe4\x4b\x2f\x6d\x7d\xb8\x2f\x43\x33\x88\x3e\xd9\x4e\xdc\x4c\x82\xca\xaf\x48\xe8\xfc\x44\x74\x88\x5a\xc9\xb7\xc2\x87\xe0\x2d\xdb\x97\x71\x41\xd8\x82\xb7\xe0\x93\xdf\x16\xf2\xad\xe9\xe0\x3c\xc7\xb7\xf0\x93\x85\x50\xd2\x7d\x39\xee\x62\x45\x92\x19\x7d\xe4\x3b\xa9\x90\xbf\xef\xa6\xbe\xa3\x79\x8e\xad\x18\x91\xcc\xac\xbc\xf2\xa1\xc2\x5a\x66\x0a\x55\xb0\xce\xcc\xb3\xb7\xb7\xf7\x07\x51\x56\x9a\xc1\xab\x4a\x36\x58\x7d\x48\x6d\x01\x28\x8b\x39\x4d\xbf\x12\x27\x3f\xe5\xd8\xa4\xed\xe5\xb8\x85\xa0\x1c\x75\xd1\x1c\xeb\x8c\x8b\xb1\x32\x15\xe1\x4c\xa1\x0a\xc7\x49\x4b\x85\x46\xaf\x33\x6f\xba\xa5\x15\x49\x0c\x7b\x2b\x92\x1a\x3a\x69\xb6\x38\xe5\x6a\x9a\xe6\xc0\xa1\xd4\xa0\x08\x8d\x3a\x69\x0b\x6a\xe5\x4d\x85\xa6\x22\x5c\xf9\x53\xbe\x95\x64\xa4\x9c\x44\xfe\x57\x87\x86\x78\xe5\x4d\xb5\x74\x44\x92\x55\x2e\xbd\x77\xe0\x50\xfa\x6b\x28\xaf\x73\x6b\xf7\x2d\x58\x64\x21\xac\x78\x0b\x16\x59\xb0\xdc\xef\xdb\xa6\xc7\x99\x67\x32\x3d\x32\xfa\xa2\xd6\x1c\xf0\x94\xec\xdb\x96\x47\x5f\x2e\xf6\xed\xa8\xa2\x99\x52\x6c\x1e\xaf\x79\xe8\x3e\xa5\x7a\x85\xe4\x8c\xbc\xba\x7d\x10\x56\x44\x77\x2a\x75\xb8\x53\x17\x92\x7e\x86\xf7\xad\x7d\x9b\xee\xf0\xd7\x52\xcf\x1a\x5a\xea\xb8\xa2\xbc\x69\x7e\x6c\xa6\x82\x60\x99\x05\x7e\xdb\x7d\x9b\x0a\x31\x7d\xb2\x52\x80\x69\x63\xdf\x26\x23\x20\xc6\x6a\xdf\x0e\xc2\x25\x84\x70\xdf\x8e\x6e\xc4\x93\xbd\x6f\x87\x31\xa4\x05\x0e\x4e\xe8\x7c\x69\xc2\xc1\x0c\x80\x23\xce\x58\x53\x42\x34\x0e\xf6\xca\x7d\x3b\x98\x87\xd9\x2f\x44\x63\x01\x74\xb1\x6f\x33\x0c\x0e\xaa\x77\x30\x0f\x6b\x51\x88\xc6\xc1\x6e\xbc\x6f\xc7\x94\x65\xdc\x1c\xbd\x93\x31\x75\xf4\x43\xc6\x46\x9c\x82\x2b\xff\x4d\x91\x88\xb0\x30\x6d\x13\x5f\x12\xef\xbe\x45\x7c\x59\x30\x26\x6f\x81\x1d\x0b\x1c\x25\xbb\x38\x94\xe7\xf7\x26\xba\x4d\x8a\x91\xc3\x7f\x46\x52\x97\x18\x7e\xf3\x60\xb2\xa9\xef\x02\x01\xfa\x95\x87\xea\xd3\xfc\xb7\xa9\x63\x9b\x25\x93\x0b\xde\x16\x64\x32\x90\xff\x2d\xc4\x64\xbc\xd0\xbb\x98\x64\x70\xf0\xa6\x43\x7b\x1a\x9d\x72\x68\x0f\x13\xc5\x9c\x99\x8b\xc1\x17\x3e\xb2\x0c\x66\xad\x19\x34\x47\x6a\xd0\x26\xb9\xd2\x43\x83\x18\xf8\xbd\x46\x47\xb6\xeb\x8e\xe8\xa6\xa5\x7a\x35\x8d\xe9\x56\x6c\xbb\x66\x2e\x9a\x25\x13\x26\x9a\x2d\xfc\x63\xa0\xfa\xbb\x38\x60\x87\x7f\x5f\x1c\xb0\xc3\x0c\x12\x18\x72\x70\xfa\xec\xe2\x80\x9d\x5f\x29\xce\xfb\x79\xd3\x0b\x47\xec\x8c\xbc\x2a\xeb\xf4\x8c\xa4\xc1\xcf\xef\x56\x02\x1c\xc8\x3d\x76\xf1\x54\xef\xf4\x77\xbb\x13\xa9\xc2\x9d\x48\x0d\x9a\x5e\x9d\xee\x6e\x4f\x2f\xba\xab\xb4\xc1\x23\x65\x3a\xc2\x8d\x49\x5a\x58\x22\x94\xe2\x40\xde\x74\xe2\xbb\x60\x26\x7a\xfc\x86\x92\x33\xff\xd3\x7b\xab\xf3\xee\x7d\x45\xdd\x3f\xb0\xb2\x6e\xa3\x24\xc7\xe5\xcb\xf0\xae\x44\x80\xd3\x3a\xa3\x1d\x3b\x7e\xe8\x5d\x1d\x90\xc6\x9a\xad\xce\x58\xf9\x50\xb0\x88\x32\x27\x5c\x6a\x5b\xe0\xc7\x09\xe4\x6e\x8b\x28\x73\x12\x2c\xb0\x05\x85\xac\xdc\xa3\x77\x35\x7e\x0c\x94\xe2\x16\x14\xb2\x72\x91\xde\x30\x65\xb2\xdb\x0a\x18\x59\xb9\x10\x6f\x33\x65\x02\x73\xdf\x42\x42\xce\x9e\xc6\x88\x2c\xa3\xe7\x4d\x81\xd0\x89\x6a\xd8\xd5\x31\x3c\x23\xcf\x34\x74\x85\xda\x45\x15\x08\x89\xc1\xae\xa6\x0a\xe4\xf7\x0b\x22\x59\x81\x1a\x6d\x21\x24\x2b\x30\xa4\x2d\x48\x64\xe5\xc2\xbf\xab\xa1\x37\x19\x27\x9b\x83\x6e\xc6\x50\x3c\x99\x25\xed\x34\xea\x9c\x73\x47\x08\xc8\x8a\x31\x60\x57\xe3\x70\x56\xbe\xd3\xf0\xfe\x9e\xa9\x2d\xe9\xbb\x90\x37\x50\xf3\x6d\xc1\x1d\x27\x11\x24\xbb\xda\xa5\xc2\x42\x14\xd8\x71\x72\xa7\xdc\xd5\x1e\x95\x99\x52\xde\x2a\x33\xdf\x7d\x54\x26\x92\xc3\x1f\xd8\x14\xaa\x3d\x2a\x2c\x75\x41\x1d\x2b\x28\xdc\x5d\x1d\x96\xc3\x5e\x5a\x3d\x31\xf3\x37\x8f\x46\x97\x33\xb7\x3a\x2c\x67\x45\x12\x96\x68\xe6\x4d\xf7\x28\x35\x68\xc2\x64\xfa\xc8\xbd\x42\xd4\xc4\x36\x5f\x26\xf0\x96\x6d\xbe\xcc\x9e\x7f\xa4\x24\xc2\x50\x4b\x6e\xe1\x21\x6f\x92\x4d\x7d\x45\xab\x92\xd6\xb3\xf7\xe3\xb4\x76\x10\x31\x6e\xe3\x23\x87\xd3\x1f\x7e\x45\xfd\x0b\x76\x73\x91\x64\x56\x00\x69\xfb\xf1\xc4\x2f\x79\xa6\x7e\xfc\x87\x48\xf2\xfd\x38\xce\x0d\x2d\xcb\xb0\xca\x79\x5d\x11\xb7\x46\xee\x46\x3a\x92\x52\x87\x3d\x61\x79\x53\xab\xe2\x57\xbf\xfe\x62\x49\xbb\x15\x5c\xc5\x1e\x09\x81\x26\x47\xc2\xe3\x35\x82\xae\x6a\x3a\x4d\xcc\x67\x1b\x3a\x4d\x0e\x08\xd3\x69\xc2\xe7\xb8\x85\xb5\x9c\xc4\xb0\x6c\x61\x2b\x67\xb6\x4f\xe7\xda\x6e\xd9\xe9\x1f\x2e\x6e\xbf\xa7\xdb\x8c\xad\x29\x48\xfe\x3d\x3c\xa3\x5b\x40\xc7\x09\xb8\x76\x3f\xcc\x5b\xbe\xb4\x31\x00\xc4\xda\x36\xa5\x65\x94\xde\xc7\xd8\x9d\x87\x4e\x8a\x19\xb0\xb0\x83\x0b\x81\xb8\x08\x17\xdf\x02\x20\x2e\x82\xb2\xf7\xe3\xd0\x1c\x74\x97\xc7\xe9\x54\x31\x85\xef\xc7\xb1\x39\x6c\xa2\x8f\xdd\x7d\x0f\x63\xec\xd0\x9c\x4c\x15\x51\x61\x96\xdf\x77\x72\xa9\xcd\x48\x2f\x55\x91\x37\xdf\xce\xad\x92\x62\xd4\x0b\x46\xc3\xc4\x98\x85\xd9\x69\x62\x4c\x3c\xd3\x5b\xc4\x98\x0b\x78\xf3\x6e\x66\x77\x87\xe1\x6a\x8b\x26\x73\x01\x00\xda\xa6\xc9\x84\x39\x61\x37\xf2\xe0\x8d\x88\x8a\x8c\xfa\x95\xe3\x86\x17\x24\x35\x9c\xb6\x35\x07\x9e\xd9\x34\xb1\xcd\x85\x59\x52\x8a\x32\x93\x15\xce\xa5\x66\x7c\x19\x7f\xbc\x39\xf0\x8c\x65\xd3\x1c\x78\x96\x1e\xa2\x4a\x72\x1f\x6b\x56\x11\xd2\x6e\xa5\x26\x23\x9a\x7d\x37\x47\xa5\x71\x62\x37\xbb\x02\x7f\xdf\xb9\x13\x34\x4d\xf1\x92\xf8\x53\xb6\x40\x8f\x0b\xd0\xc0\x16\xe8\xb1\x82\x11\xde\x06\x3d\x02\xaf\xdb\xcd\x11\x6b\xa8\xe3\xe2\xcc\xac\xfd\x61\xf0\x37\x5b\x03\x7d\xda\x1e\x7d\xfa\xb4\xdd\x43\x7a\x8f\xd1\x8a\x75\x6a\x3e\xcd\xd2\xf2\xa1\xdc\xb2\x35\xd2\xf0\xc9\x4b\x53\x45\x99\xd9\xd3\x61\xa1\x8a\x60\xf6\xd9\x26\xd0\x84\x20\x60\x0b\x3c\x59\x7b\xba\xaf\x28\xa2\x92\x4e\x39\x82\xed\xc9\x33\x2f\xfe\x3c\x53\x17\xd1\x49\x9a\x23\x2b\xb9\x9c\x98\x4d\xb3\xa4\xc3\xc7\x4c\x2f\x19\x45\xbc\xe2\x2d\xef\x7a\x82\x45\x6a\xaa\x91\x3a\x04\xdb\x05\x61\xb6\x9b\x39\x62\x33\x52\x5e\x34\x28\x0f\x42\x60\x56\x28\xdc\xb6\xc9\x35\x4b\x7e\x86\x97\x10\xdb\xab\x01\x96\x1d\x68\xde\x16\x63\x66\xed\xac\x36\x31\x66\xae\x5c\x62\x0d\xaf\x9c\x17\x07\x61\x77\x44\x26\x2b\xba\x1b\x67\x84\x43\x69\x3b\xfb\x35\x60\x93\x2d\x46\xcc\xb5\xca\x7f\xd0\xa4\xbb\xe3\xdb\xf8\x53\x42\x57\xae\xdc\x4d\xc5\x8f\xb9\x30\xbe\xed\xee\xf9\x5e\xf3\xa6\x98\x47\xd3\x2b\xd1\xc2\x02\x1f\xda\xc2\x56\x2e\xcc\x6d\xbb\x83\x34\x62\x29\x76\x07\xbf\x71\xa6\x89\x29\x73\x61\x0b\xdb\xdd\xa9\x4a\x67\xaa\xff\x93\xcb\x3a\xc5\xa8\x4f\x4f\xbe\x73\x96\x5a\x36\x5f\x80\x98\xa8\x44\xdd\x6e\x71\xfe\xa2\x81\x98\x0f\xec\x5c\xbb\x3b\x35\x29\x17\x67\xc1\x32\x17\x06\xcd\xdd\x1d\x19\xd7\x52\xa8\x20\x7d\x9c\xf6\x82\x69\xae\xf5\x2b\xc5\xee\xf4\x54\xa8\x3e\x55\x7a\xb1\xdd\xa7\x7c\xe7\x3e\xe5\x3b\x85\xc9\x71\xbe\x74\x87\xc9\xad\xd4\xf7\xd6\x9b\x91\xe4\xf7\xcf\xff\x95\x8e\x02\x22\x6a\x77\xbb\xb7\xd0\x4a\x9c\x58\xbb\x57\x36\x86\x6e\x18\xf1\x93\x57\x15\x1c\x85\x52\xd4\xed\xef\x62\x66\x0a\xfa\xb9\xc0\x2b\xed\x6e\xbe\xd8\x99\x42\xdd\x25\x9a\xed\x20\xb9\x99\x37\xdd\x89\xd4\xa7\xa9\x57\x19\x6d\xa5\x8f\x07\xcd\xb9\xbb\x23\xe6\x6c\xf6\xdd\xe6\xd3\xec\x39\x87\x05\xee\x7c\x88\xc3\xd9\x02\x77\x2e\x0c\x6e\x5b\x74\x9a\x0f\x31\x25\x7b\xd8\xaf\x6a\x7b\xdf\x16\xd4\x73\x61\xc1\xdc\xc3\xae\x54\xb4\x30\xf1\x65\x2e\x0c\x75\x7b\x98\x1e\x79\xe6\x3b\xcd\xa7\x95\xef\x3c\xf6\xa9\xdd\x2b\x26\xb5\xab\xd9\xec\xc2\x82\x88\x3e\x04\x37\x6d\x43\x44\x1f\xd2\x5c\xec\xe1\x6c\x95\xa8\x99\x02\x85\x2e\x4c\xb4\xdb\xe9\xbb\x5b\xfe\xa1\x59\x36\xe7\x85\xaa\x37\xbc\x10\x58\xfa\x83\x6d\x99\xad\xd7\x60\xce\x0b\x7e\xa8\x6d\xa6\xcc\x0b\x16\xa6\x6d\xa6\xcc\x0b\x6a\xab\x3d\xcc\x5e\x0c\x9b\xd3\x36\x55\xe6\xd5\x52\x8f\xa6\x2a\x31\x78\xdb\x64\x98\x13\xda\xd5\x6d\xf6\xcb\xab\xe5\x97\x48\x15\xb9\x20\xb1\xdc\xc3\x81\x6e\xcc\xc8\xe1\x30\x4e\x68\xa2\xb6\x41\x9f\x17\x04\x53\x7b\x18\xdd\x01\x17\xd5\x1e\x8e\x66\x63\x81\x08\xf6\x79\x5f\xc0\x29\xf7\x30\x7e\x1d\x64\xe2\x76\x4a\xef\x0b\xc2\xab\x2d\xb2\xcc\x6f\xef\xf8\xa5\x66\x73\xc0\x82\xbc\x8d\x12\xed\x33\xbf\xd8\xe8\xf6\x96\xff\x7f\xdc\x81\xfc\xc8\xa3\x0e\x70\xb6\x8b\x2e\xf3\xdb\xe2\xbc\xfb\xb1\xe8\x6a\x8d\x1b\xbd\xa0\xeb\xda\x62\xcc\x7c\x88\xac\xdc\xd3\xcc\xc6\x6c\x77\xd3\xb6\x58\x5c\xfb\x5b\x38\xd2\x6f\xa5\x11\x85\xd5\x67\x5e\x1b\x48\x7a\xc1\xed\xb5\x8d\x24\xbd\x00\x81\x6e\x41\x49\xbf\xcd\xef\x88\xcb\x4f\xff\x9d\x5b\x60\x0b\x69\xfa\x10\x9b\xbb\x27\xa0\x3d\x4e\x39\xa0\xa6\x24\xb2\xd8\xd3\x8c\xc9\xd0\xcb\x6f\xc3\x4b\x2f\xa0\xb6\x5b\x88\xd2\x87\xf0\x81\x3d\x1d\x19\xca\x70\x1b\x43\x7a\x41\x70\xb6\x0d\x22\xbd\xa0\x66\xdb\xa6\xef\xbc\x80\xd7\xee\x49\xa4\x68\x6a\x75\xa4\x28\xd0\xf6\x3d\x1d\x29\x3a\x22\xd9\x53\xfb\xe4\x5d\xff\xc7\x2b\xa2\xa1\xb2\xfc\x2a\xa7\x28\xbf\x08\xa6\xda\xd3\xa1\xa3\x23\x0d\x56\x3c\x31\xca\x9d\x01\xa9\x17\x24\x77\x7b\x3a\x4b\x35\xfa\xdc\x74\xe2\x55\x4e\x7b\x83\x4e\x2f\x68\x43\xf6\x64\x19\xb1\xc5\x4f\x96\xd1\x95\x97\x0d\xe2\x49\x67\xb4\x8e\x56\xac\xd8\xd3\xcc\x7a\x7d\xa6\x56\x85\x11\x13\x47\xbd\x8d\x4b\x6d\x80\xa7\xb7\xf0\xa5\xf7\x7d\xe7\xa7\xdb\x9f\x9c\xb3\x6c\x9a\x09\xf9\xfe\x89\xdf\xd9\x34\xd3\x46\xa0\x4e\xd4\x6a\xa8\x53\xfe\xaa\xe2\x9a\xe7\x9d\x37\x8d\x74\xca\x3f\x76\xd8\x07\xd8\x83\x2d\x02\xd1\x67\x66\x02\x83\x7b\x62\x11\x99\x41\xf4\x86\x14\x73\x9b\x42\xf4\x22\x08\x60\x9b\x43\xf4\xce\x79\xba\x26\xde\x97\x8a\x28\x54\x14\xeb\x6f\x11\x21\x32\x23\x2a\xd6\x00\x6c\xc4\x5e\x46\x49\x31\xa2\x82\xaf\x3e\xf3\x57\xe9\x72\x93\xf2\xf0\xe8\x61\x3e\x34\x07\x20\x1d\x5f\x00\x9f\xd8\x67\x97\xe3\x46\x63\x74\x59\x8b\xf6\xf2\x2d\xb4\x78\x69\xaf\xdc\x78\x0f\x0c\x55\x5b\x69\xd5\xbf\xdf\xe6\x69\x73\x83\x69\xbf\xe3\x4a\xc1\x84\x6c\x63\x58\x9f\xb8\x12\x44\x55\xfa\xcc\x3b\x92\xff\x4d\x47\x32\x0c\x8d\xdf\xb8\x16\x3f\x27\xb5\x1a\x86\x96\xfe\x98\x61\x19\xb0\xc9\x76\x16\x76\xd2\x84\x6d\xe3\x58\x6f\x60\xf9\xdb\x59\xd8\x67\x0a\x12\x04\x70\xb2\x9b\x1b\xc7\x3a\xf1\x24\xef\xb5\xe9\x1b\x9d\x21\x7d\x7f\x5a\xe8\xb4\xc3\x77\xc6\xc5\x7c\xcb\x77\x7e\x3a\xb3\x9f\x23\xc6\x29\xdc\xef\x4c\x68\x52\xb8\xc3\x9b\xba\x85\x6d\x7d\xe6\xef\x5d\x77\x2e\x53\x62\xf3\xb3\xf8\xb1\x76\xec\xc5\x5e\xba\x0e\x57\x0e\xbe\x75\x70\xca\x9d\x0e\x39\x42\xe0\xfa\x89\xef\xff\xfb\x7f\x8d\x08\x9b\x6d\x1e\xd2\x3b\xd7\x33\x21\x4c\x5b\x4e\xfb\x9d\x40\xa6\x81\x58\x5c\xcd\x42\x74\x74\x2e\x1a\xab\xe0\xa8\x2d\xca\x87\xe1\xa8\x77\x6e\x5a\x49\xb7\x8e\x7a\x07\xa5\x68\xd4\x62\x73\x8a\x76\xf2\x10\xed\x6d\x70\x5f\x2e\x54\xdb\x09\x18\x7b\xfd\x77\x94\xcc\x36\x44\xf5\xce\xfe\xb8\x89\x08\x40\x05\x13\x62\xb5\x01\x54\xdc\xa6\x27\xbd\x73\xfd\x83\x9f\x34\xf7\x46\x13\x94\xde\xb9\xd5\x08\xc1\xda\xa2\xd6\x9a\xa1\xf4\xce\x0d\x04\x8a\xd2\x58\x50\x85\x61\x6d\x00\x17\x37\xc9\xdd\x33\xfc\x9b\xb0\x96\x96\x92\x1c\x6b\xfc\xe4\xa9\x62\x8d\x57\xca\xb5\x2f\x65\xa6\xc1\x74\x8e\xbf\xe3\x4c\xc7\xb9\xe9\x09\xe4\xda\xe2\x16\x10\xc8\xf5\xfb\x90\x4f\x1d\x57\xcd\x11\xa3\xd4\xf0\x8d\x60\xb6\xbd\x09\xab\x6e\x29\xc7\x7d\x63\x1d\x99\x36\xf5\xce\x2d\x6d\x3b\xae\x1a\x88\xd5\xde\xc4\x55\x3f\x29\xea\xb8\xaf\x79\x59\x90\xc8\xf4\x6d\x3b\x52\x39\x63\x68\xb0\xd0\xca\x0c\x31\x5a\x08\x46\xa0\xbd\x4d\x00\x9d\xbe\x19\xaf\xf8\x9b\x97\xf6\x4f\x5f\x25\x25\x4d\xbd\x1b\xc9\xd1\xa0\x33\xe5\x9a\xb8\x7c\xa6\xdc\xa3\x77\x53\x90\x9b\x84\xfa\x6e\x24\x6b\x8b\x19\x45\x6c\xa7\x0d\x62\xc3\x2d\xb6\xd3\x06\xe9\xe0\x36\xbd\x69\x89\x96\x7c\x60\xd3\xe5\xc2\x62\x7e\xd3\x92\x3b\x8a\xa1\xac\xc9\xc5\xb7\xcd\x70\xda\xa2\xd2\x1e\xcf\xfe\x98\x2f\xcd\x71\x5a\xe0\xa3\xd8\x87\xe8\xe9\x27\x4f\x1d\xf7\xc4\xef\x30\x7a\xb5\xc0\xbf\xb0\x0f\xf1\xd2\xfc\xca\x63\x02\xde\x27\x3d\xf8\x4e\xe9\x16\x85\xf1\x18\x7c\x11\xe7\x37\xdc\xa6\x51\x36\x4d\x6e\x5a\x60\xdf\xd8\x62\x37\x6d\xd1\x67\xc4\x6e\xda\x88\x7e\xdc\x66\x37\x2d\x24\x2c\xd8\x20\x5f\xd1\x77\x83\x7c\x65\xba\x9b\xfb\xb4\x40\xed\xb0\x8f\x31\x6b\x70\x8c\x6c\xa7\x7f\x2f\xb9\x31\x89\x19\xb5\x45\x37\x36\x30\xb6\x3c\xf9\x01\x01\xc6\xe6\xdd\x6d\x91\xf6\x9a\x9f\x1e\x6e\x8e\x6d\x64\x6c\xc7\x7a\x71\xcc\x56\x4f\xc4\xc3\x36\x36\xf6\xe7\xb4\x13\x21\xea\x9d\xe8\x84\xed\xac\xee\xf3\xe2\x20\x71\x22\xf7\xfa\xfb\x77\x90\xd2\x63\x17\x12\xd5\x69\x1b\xf9\x1b\x9a\x6b\x31\x6e\x99\xea\xb4\x46\x61\x11\x5c\xf6\x2b\x36\xc4\x62\xf1\x46\xac\x16\x2b\xe2\xa3\x92\xf2\xb0\x79\xfe\xe4\x53\x05\x71\xf3\xe3\x8c\x84\x4d\xe4\xe7\xfe\x23\xe3\x36\xd3\x47\x94\xa3\x2d\x13\x51\xb9\xd7\xef\x9a\xa9\x26\x28\xec\x6f\x41\x0a\x09\x7b\xd7\xdc\x11\x94\x80\xfd\x2b\x52\x6e\xb6\xa6\x3c\x55\x3c\x78\x4c\xde\x7f\x06\x24\x50\xa7\x0d\x0b\x94\xea\x6c\x5e\x58\xb5\x04\x68\xed\xfd\xba\xff\xbd\xb3\x3b\x75\x7b\x5c\x92\xf0\x9a\x32\x03\xcd\x6b\xfa\x5c\xa9\x5c\x5e\x6e\x76\x37\x81\x5a\xc7\xc3\x66\xfc\x67\x52\xc8\x15\x49\x5e\x40\x76\x45\xf3\x98\x3e\x9c\x0e\xf0\x98\xce\xdf\xab\x32\x4d\xa6\x17\xc7\x0e\x95\x7c\x68\x57\x0f\x8d\x51\x74\x07\x91\xcc\xfb\xcf\xee\x87\x92\xc6\xd8\x30\x1f\xc9\xb6\xb9\xbc\x29\xf7\x0a\xa5\xbc\x6c\xed\x65\x25\xbc\x6c\xed\xe5\xb7\x39\xa9\x7b\xf0\x0e\x2f\x9b\x77\xb9\x87\xbc\x1c\xf7\xc1\x89\x21\xcc\x6b\x05\x13\xbc\x85\x79\x5d\x71\xe3\x0b\xf3\xfa\xe4\xa8\x79\xd9\x04\xd0\x52\xa6\x58\x8a\x5a\xde\xb4\x09\x20\xa5\xc8\x72\xd1\xd2\x16\x5d\x2a\xd2\x32\x53\xe9\xa4\x65\xcb\x77\x5d\x34\xcc\xd7\x32\x57\x39\x07\xcb\x0b\xa5\xf1\xc9\xa7\x28\x8d\xf9\x16\xa5\x97\x26\x18\x7a\x08\xb5\xf7\x7e\x59\x4d\xcc\x58\x71\x86\xa6\x9b\x3a\x43\xef\x2b\x05\x99\x3a\x7e\xa5\x9a\x8f\x76\x71\x5e\x65\xff\x49\x67\x94\x10\x3e\x46\x8a\x97\xb3\x2c\xe6\x51\xfd\xbf\xff\x37\xd3\x56\xdb\xbf\x68\x9a\xce\xcb\x58\x58\x0d\xa5\x9d\x19\x55\x26\x26\xff\xc6\x2c\x37\x3d\x83\x25\x2f\x59\x36\x25\x21\x62\xbf\xf3\x8d\x1e\xfa\xb2\xff\xeb\xd3\xb1\xd2\x9f\x77\x7d\xe0\x45\x12\x54\x84\xd6\xe8\xb8\x1b\x51\x80\x04\x82\x5d\x69\x8d\x80\xd4\xf1\xc7\x82\x73\x65\x13\x14\x23\x69\x8f\x73\xef\x0d\xa5\x23\x53\xd3\xa9\xdb\x83\xa9\x78\x73\x77\x99\x48\xc2\xc2\x8d\x14\xa3\xdd\x92\xb5\x27\x12\xd2\xf1\x5c\x79\xb6\x84\xa1\x49\x29\x5b\x52\x45\xfa\x2e\x93\xeb\x27\x7d\x24\x79\x3d\xc3\x25\x9a\x32\xed\x79\xaa\x79\x26\x0f\x11\x17\x0f\x71\x89\x56\x22\x92\xf6\xdb\x7e\xa8\x9f\x24\xef\xec\xef\x3b\x2d\x60\x66\xe6\xdb\xac\x76\xec\x65\x6f\xac\x48\xfc\xf9\xb7\x79\x93\x08\x2b\xdd\x6f\x67\x0f\x62\x11\xbd\xb9\x0c\xa7\x01\x5c\x86\x6b\x9e\xfa\x3a\xc0\xfe\xfa\xb6\x4e\x9f\x3f\x2e\xfc\x6a\xbb\x33\x3a\x5b\x13\x93\xc3\xc2\xf8\xd5\x02\x93\xd2\x16\x62\xb5\x11\x4e\xbf\x8d\x58\xcd\x89\x24\x8c\xea\xbd\x32\x58\xc6\xe3\x8d\x3c\x1b\x1a\x64\xaa\x30\x79\x2d\x33\x4c\x69\xd6\x6b\xc9\x10\xd8\x31\x9a\x4e\x1e\x05\xec\xe3\x15\x33\xdd\x67\xef\xff\x86\x03\xee\x70\x81\xb2\x32\x3f\x56\xfb\xc9\x5d\xb8\x3f\x84\xf4\xd0\xc9\x8f\x51\xf7\xd1\x4a\x45\xe4\xf9\x3d\xaa\x1a\xa2\x41\x4e\x08\x7f\xea\x72\x24\x85\x30\xe4\x33\xa9\x14\x8c\x86\x93\xae\x93\x85\x6b\x1b\x7c\x0a\xf7\xd8\xfe\xd8\x13\xc5\xd9\xf3\x31\x84\x8f\x86\x2e\x0f\x5b\x3e\x23\x06\x07\xc9\x27\x4f\xde\xdc\xfa\x6b\xa9\x4e\x8d\x5c\x08\x72\x49\x42\xe7\xb6\x9d\x66\x3d\x3e\x52\xd1\x6f\xf6\x80\x43\x3e\x36\x5c\xfe\x5a\xa6\xad\x86\x54\x72\x5b\x60\xd3\xf1\x5c\x79\xd5\xc7\x12\x4d\x13\x62\x2f\x08\x0b\xc1\x4b\x07\xd1\x0f\x5b\x7c\x9b\xe3\xc1\xfa\xe3\xa4\xeb\x13\x3e\xd7\x2d\x9c\x68\x25\xe8\x6f\x9b\x54\x93\xd8\xc1\xfd\xb1\xf7\x92\xa3\xee\x43\x76\x7e\xb6\x97\x8f\x99\x04\x7b\x3e\x94\xc9\x37\x63\x88\x31\xd0\x03\x70\x2e\x6c\x1e\x1e\xd4\x63\x68\xe6\x45\x00\xf8\x31\x34\xf3\x22\x76\xe0\x18\x9a\x79\x93\x5a\xe0\x18\x9a\x79\x93\x48\xf3\x5c\x32\x07\xa2\xd4\x9c\x0b\x13\x88\x8f\xa7\x73\x7d\xe7\x51\x23\xfe\xec\x5c\x5c\x26\x7b\xde\x35\x51\xc0\xca\x53\x6b\xa7\x2d\xa2\x78\x6c\x00\x19\x1f\xf1\x67\x8e\xb4\x48\xce\xf0\x87\xc6\xcb\x17\xfe\xf0\x95\x31\xf2\x56\x2e\x8f\xc0\x9f\xa1\x00\x3d\x22\xcf\xec\xa4\xc3\x39\x97\x7d\x3a\x11\x14\x0c\xe3\x09\x7d\x8c\xf6\x24\xe8\xfc\x08\xec\x79\x3f\x2d\x9d\x50\x9c\x07\xf0\x86\x23\x78\xe7\xcd\x44\x3a\x4a\x87\x5e\x08\xf8\x3f\x62\xc4\x2c\x44\x99\x1c\xe3\x39\xc9\x25\x70\x84\xe7\x2c\xc4\x95\x1c\x61\x36\x83\x30\x3b\x97\x29\xb7\x17\x35\x6c\xaf\x7e\xca\x64\x3a\xd0\x6c\xc3\xe5\x51\x4c\x8e\xa9\x2d\x17\xdc\xb8\x47\xd4\x96\x0f\x97\xc7\x63\x0c\xa7\x6f\x78\xe7\x0a\x81\x4f\x3e\xec\x1a\x99\xbc\x69\x08\x67\x9a\x23\x3c\xc7\x93\x67\xba\x11\x61\xad\x3e\x57\x0e\xb1\xb4\xe7\x7c\xcb\xe9\xf4\xd1\xf8\x24\xfc\xe9\xe7\x32\x33\x71\x9e\x7d\xf4\xa6\x1f\xdd\x0e\x97\x8d\x20\x84\xca\x85\x50\xb4\x67\x0c\x24\xed\xa7\x3d\xcf\x94\x96\xc6\xbb\xcb\x11\x0e\xf3\x4e\x82\xf9\x23\x20\x66\xc8\xed\x8f\xf0\x94\x49\x59\x73\x84\xa7\xbc\x33\xdc\xa2\xb9\xec\x6c\xfd\xc7\x49\xcd\xef\xb4\xc5\xf6\x60\x7e\xf6\x6d\xfb\xef\x45\x99\xbe\x87\x01\xe7\x3c\x62\xbd\xbc\x89\x80\x38\x66\xbd\xec\xb0\xdd\x9c\xdb\xe6\xdf\x2b\x75\x38\x84\xea\xdf\x31\x35\xc7\x94\x98\x2b\xed\x96\x86\xc4\x74\xbe\x9d\x3b\x8f\xc9\x26\xf8\x66\x87\x89\xec\x38\x8f\x79\xad\xf4\x50\xd8\x76\xf2\xa9\x1c\xb3\x5e\x82\x87\x38\x22\xbd\x0c\x0a\xfb\x38\x8f\x39\xe1\xbf\x47\x18\xd0\xa4\x68\x3a\x22\xbd\xec\xc4\x3f\x1c\x93\x5e\x26\x50\xe6\x08\x20\x1a\xb2\xf9\x63\xd2\x4b\xf4\xc7\x23\xb8\x68\x27\x97\xf6\x11\x5c\xf4\x06\xe4\x70\x6e\xd3\x67\xa4\x42\x5b\x0f\xf2\x2b\x30\x1e\xa4\x46\x29\x5a\x25\xff\x50\x90\x75\xd2\x4d\x9e\xdb\x4e\x14\x42\x85\xcf\x6d\x53\x42\x06\x43\xb3\x12\xce\x97\x73\x1f\x58\xcd\x90\x7c\xeb\xcd\x9b\x1f\x73\xd1\x59\x2c\x56\xb5\x18\x9b\x62\x16\x36\x5a\x53\x3c\x31\xd9\x13\x8b\x29\xd9\xac\x12\x1f\x21\x46\x3b\xa9\xc4\x8f\xa9\x33\xd9\xcf\x4f\xb1\xfd\xe1\x49\x99\xfa\x33\xd6\x7c\x8e\x60\x9f\x9d\xcb\xca\x29\x0e\x6e\x2b\x29\x53\xbb\x23\xfb\xb7\x79\x32\x41\x55\x1c\xa5\x4a\xef\x04\xb4\x1e\x41\x42\x93\x92\xee\x14\x1b\x1a\xe8\xbc\x40\xa0\x37\x70\x88\x23\x10\x68\x07\x77\x77\x8a\xe9\x85\x98\xf9\xc5\x21\x72\x35\x6f\xba\xd5\x79\xa6\x19\xd4\xf2\xcc\x21\x79\xb4\xcc\x21\x72\x3f\x49\x5b\x3c\xf3\x50\xf8\xd0\x5e\x33\x12\xde\x48\x4b\x5a\xa6\xa1\xc7\xe9\x71\x04\x02\xbd\x1b\xf4\xeb\xa7\x70\x44\x66\xa0\xec\x8e\x18\x54\xe2\x44\x3f\x2b\xaf\xaa\xd8\x3b\xe5\xc8\x50\xc4\x2c\x35\x7b\x65\xfb\xf5\x58\x31\x18\x3d\xad\x3b\x04\xe2\x21\xe9\x0e\x44\x44\xf9\x71\x1e\x75\x58\x02\x8e\x30\x9b\xbd\x67\x88\xb5\x7b\x02\xf7\x3a\x4a\x9c\xde\x7b\x1a\x2e\x2b\x04\x50\xa8\x03\x80\x73\xa6\x14\xfd\xee\x9b\xdf\x26\x87\x06\x90\xba\x53\x1c\x05\xc7\x36\x5b\x7c\x03\x60\xa7\xa9\x9e\x96\x35\x92\x9a\xed\xab\xca\x11\xe3\x65\x07\x6a\x78\x84\x01\xed\x40\x29\x8f\x20\xa0\x37\x90\xc1\x03\x04\xd4\xaa\xf4\x11\x02\xb4\x63\x15\x38\x42\x80\x76\x94\xf5\x63\xfa\xcb\x1c\x07\xc6\x7c\x02\x12\x3c\x75\x12\x18\xd1\x11\xdd\xec\x82\xa4\x5f\x51\x23\x69\xc7\x00\x96\x75\xc4\x86\xd9\xb1\xc4\x1e\x41\x40\x3b\x6c\xce\x47\x10\xd0\x9e\x53\x4e\x10\xd0\x0e\x68\xed\x98\x19\x13\x80\xe6\xa9\x8e\x82\xe3\x54\xad\x24\x35\xa5\x17\x0e\x53\x5a\x29\x65\xf8\xe4\x42\x5a\xfa\x2e\x6f\x2a\xc4\x25\xe3\xeb\xe3\xff\x3f\x64\xfc\x3a\xd5\x7e\xbc\x95\x42\x3d\xa3\x19\x1a\x6b\x95\xac\x04\x21\x49\xef\x46\x2a\xfc\x53\x1d\x3f\xc7\xc6\x6e\x6e\x4d\x20\x7b\xa7\x32\xf7\x69\x37\x76\x98\x48\xc6\x61\xa5\x14\xcf\x35\x2a\x74\xa2\xac\x9e\x32\xd5\x43\x16\x3e\x39\xd4\xcb\xef\xe1\xd1\xca\x4f\xa1\x7f\x92\xf2\xaa\x7b\xc1\x00\x6f\xeb\xc6\xf9\xce\x13\x91\xdf\x24\xc8\x33\x01\xb7\xa7\x7a\xfd\x4c\xde\x3c\xfe\x69\x74\x89\xe5\xc3\x00\xfb\x22\x94\x69\x79\xdc\x50\x26\xb0\x43\x88\x88\xab\x3e\x8f\xc3\xec\x18\x60\xe1\x3e\x47\x0e\xe0\x07\x2f\x07\xd3\x54\xb0\xcf\xc1\xcd\xf4\x3c\xbe\xed\x32\xa4\x42\x7d\xde\x0f\xe1\x6c\xe7\xf1\xe5\xf7\x62\xe5\x0b\xf7\x39\x72\x92\x0a\xda\x39\x30\x2d\x1f\x41\x3b\x07\xd6\xbe\x23\x64\x67\x27\x4a\xe1\x08\xd9\x79\x43\x74\x7d\xcc\x9e\x99\x23\x48\xc8\xce\xf1\xdc\x69\xb8\xc2\x6f\x4b\x6a\xf8\xa8\x06\x6a\x17\x68\x1f\x6b\xe3\x11\xb2\xb3\x63\xb2\x38\x42\x76\x76\xf0\xee\x47\xd4\x98\x03\x03\xf3\x31\x33\x26\x8e\xc9\x23\xf4\xe6\x88\xfa\x21\xf0\x66\x27\x80\xe0\x3c\x4c\x6f\xda\xa9\xe9\x0d\xa2\xe4\x3c\xe6\x42\x5a\x91\xd4\xce\x5f\x5b\x14\x67\xc7\xd6\x22\x56\xcc\x11\x1d\x46\x2c\x98\xe3\x4a\x6f\xe5\x99\x68\x17\xa7\xaa\x79\x2f\x57\x86\x70\x33\xda\x29\x47\xed\x66\x7e\x3d\xb6\x16\xb2\x41\x9a\x12\x13\xfc\xd0\x11\x8e\xf4\x5e\xbf\x1a\xd5\xee\x12\xe9\x4f\xad\xa1\xdd\x8e\xbb\x63\x63\x35\xe7\x25\x00\x9e\x63\xca\x4b\x48\xfd\xce\xc3\x9e\x4f\xed\xc7\x98\xf9\x48\xbe\x84\x32\xf6\x0e\x37\x5d\x79\xa6\xf9\xc4\xe6\x69\x02\x4c\x80\x64\xc7\xf0\xd3\x95\x7f\x7d\x3c\x9b\xe8\x91\x0e\x00\x90\x4d\xc7\x04\x98\xe0\x70\xce\xe3\xc8\x3a\xb6\x52\xd3\x61\xc2\xae\x70\x1e\xc7\xd9\xcd\xb4\xc5\x7f\xc2\x35\x08\x6e\x3a\xa2\x95\x36\xe3\xfe\x19\x89\x66\x0b\x10\x1b\x8b\xa0\xa0\xf7\xc0\xce\x7d\x9a\xf7\x40\x0c\x4b\x47\x48\xcd\xf1\xd0\x1a\x33\x52\x56\x56\xa5\x90\x9a\x25\xda\x47\x73\xfc\x5b\x6e\x84\xe4\x37\x07\x11\x76\x84\xce\x1c\x64\x09\x3f\x42\x67\x0e\x28\x66\x8f\xd0\x99\x83\x74\xaf\x47\xe8\xcc\xf1\x30\xf7\x9a\x2f\xd3\x25\xcf\xda\xb7\xc6\xdf\x9b\xba\x20\x71\x20\x34\x5f\x9f\x53\x9f\xaf\xcf\xf5\xdf\x1c\xd8\x47\xd8\xcc\x12\xdd\x53\xd8\xcc\x02\x97\xc0\x11\x1a\xb3\xd4\x5f\xf5\x5a\xb0\x25\xcf\xde\x7a\xc6\x40\x79\x0a\x45\x3a\xee\x52\x24\xdd\xc1\xb2\xcf\x03\xc7\x84\x29\xe5\x08\x7f\x59\xa2\x8c\x09\x7f\x39\xf0\xa9\x1c\xe1\x2f\xc7\x93\x2e\xda\x02\x94\xa1\x51\xdc\x1c\xd6\x91\x23\xfc\x65\xa9\xbf\x2a\xb6\xbe\x4b\xfd\x47\x65\xa6\x94\x3f\xb5\x8d\xdf\xa6\xe0\x28\xbc\x06\x47\x99\xce\x07\xd4\x26\x47\xcc\x98\x83\xa4\xe8\x47\xb8\xcd\x81\xcb\xe6\x74\x8c\x43\x1c\xce\x42\x71\x8e\xe7\x27\xc9\xe8\x81\x02\x2f\xce\xcc\x81\x5f\xe8\x08\xd3\x59\x72\x47\x10\xa4\x73\x90\x04\xfe\x88\x30\xb3\x40\x9e\x70\xc4\x98\x59\xa0\x67\x38\xdd\x16\xc7\x92\xea\x3d\xf7\xf2\x9d\x3b\x98\x32\xfd\xd3\xd2\x6c\xff\xb4\x94\x29\x7e\xac\x95\x76\x7e\xac\x6c\x51\xcc\x72\x0f\x17\x92\x26\x22\xd3\x5b\x3c\x9b\xe3\xb9\xf3\x4c\xb7\x78\x96\x85\x70\xa1\x25\x8a\xb0\x70\xa1\x05\x96\x87\x63\xd2\xcd\x90\xa0\x1d\x93\x6e\x3e\xbf\x57\x3d\x4b\x69\x69\x18\x5e\x69\x2a\xd8\x63\x76\xa5\xee\x63\x3d\x47\x99\x20\x96\x25\x36\x15\x41\x2c\x67\x8e\x27\x41\x2c\x67\x36\x5e\x81\x2a\x0b\x4c\x3c\x47\xa0\xca\x02\x37\xd0\xe9\x60\x0f\x6a\xc4\xa2\x87\x7c\xa8\x58\x8f\xec\x9f\x82\x51\xce\xec\xed\x82\x51\x96\x99\x01\x50\x74\xc7\x95\x2e\x6b\x62\xce\xfc\x37\xb2\xf8\x8e\x54\x21\x3b\x06\x4b\x58\xa8\xca\x99\x33\x41\xa8\xca\x02\xf3\xf8\x11\xaa\x32\xd6\xc7\x23\x54\x65\x1c\xef\x47\xa8\xca\x32\x19\x46\xa1\x2a\x67\x36\x3b\xc1\x28\x7f\x47\xbe\x80\x93\x05\x63\xfb\x31\x63\x26\xb8\x8c\x23\x18\x65\xc1\xf3\x70\x94\x92\xbc\x64\x55\x2a\x25\x79\x50\x18\x47\x10\xcb\xdf\xf1\x24\x88\x65\x0c\xea\x47\x10\xcb\x02\x99\xd1\x11\xc4\xb2\x40\x3d\x7f\x04\xb1\x9c\x17\xeb\x69\xd8\x14\xce\xca\x33\xef\x66\x16\x90\x40\x95\x05\x2e\xa5\x23\xda\xcd\x02\x90\xe6\x08\x61\xf9\x9b\x08\x42\x58\x4e\x1c\x86\x47\x08\xcb\x79\x65\x24\x14\xd2\x44\xb8\xd7\x11\x07\xe7\xbc\x9e\x48\xfa\x2d\xec\x50\xc3\xe4\xc2\x1c\x02\xe2\xe7\x2c\xa0\x66\x8e\xe8\x39\xe3\x4c\x3e\xa2\xe3\x2c\x70\x4b\x1d\xb1\x71\x06\x36\x72\x44\xc6\x19\xe8\xca\x11\x82\xb3\xc0\x6c\x7f\x04\xe0\x0c\x3e\xf9\x88\x8d\x73\x5e\x4f\x24\xfd\x95\xeb\x3f\xe8\xcf\x42\x7a\x4e\x9c\x45\x47\x40\xcf\x32\xf3\x73\xb7\xbb\xc4\x8f\x50\x64\x54\xf4\xb0\xe1\x05\xc2\xf2\x15\xca\xb3\xcc\x5f\x29\xfa\x49\x35\x6f\x7a\xa2\xa5\x4b\xea\x2e\xc7\xc1\x60\x5b\x47\x3a\xfe\x65\x0c\xa8\x02\xf8\x66\x86\xe9\x78\xda\xd1\x16\x05\xf0\x91\x39\xe0\x0c\xaf\x9d\x5f\x29\x9e\x84\x91\xf4\xcb\x58\x2d\x02\x82\x96\x99\x9f\xab\x4d\x1d\x8c\xda\x11\xee\xb3\xcc\x4c\xf3\xe3\x69\x97\xef\xe4\x9a\x64\x1d\x0f\x2f\x9d\x9f\xf4\x36\x0d\x86\x9b\x3d\xbd\x5a\xa8\x1e\x76\xd0\x5c\x73\x84\xeb\x9c\x31\xbf\x1a\xd6\xd9\x32\xf3\xa6\x57\xcf\x95\x2f\x0d\x45\x62\x72\x43\xd8\x49\x94\xe2\x31\x4c\xf2\x37\xf9\x0c\x84\xfc\xad\x04\x01\x21\x2b\x41\x2d\x67\x7a\xf6\x31\xa7\x84\x83\xac\xb1\xf0\x08\x06\x39\x41\xd8\x9c\x69\x62\xa6\x9e\x52\xe4\x65\x65\x4e\x4d\x87\xde\xa1\xfa\x0a\xf5\x58\x63\xc2\x12\x0f\xe7\xec\x23\x6f\x2a\x10\x8f\xf3\x50\x34\x9c\x35\x86\x12\x21\x22\x6b\x6c\x4f\x02\x44\xd6\x92\xda\x45\x88\xdd\x47\xbe\x53\x10\x1b\x26\x60\xa3\x21\x7f\x13\x7c\x3a\x0b\xc1\xfd\xfb\x52\x7e\x64\x4e\x96\x69\x7b\x6d\x8b\xa4\x3e\x61\x26\x12\x65\xe7\xec\xe9\x21\x86\x7e\xea\xb0\x65\x97\x1b\x8a\x18\x3b\x67\xc7\x8e\x3d\x1d\xa6\x97\xf1\xd5\xd6\x0d\x60\xeb\x08\x4f\x59\x89\x92\x3a\x02\x50\xd6\x58\xde\xa6\xbd\xdf\x23\xdf\xc9\xfb\xdd\xf2\x4c\xad\x4e\x3b\xed\xe1\xc6\x72\x3b\xed\xe1\x66\xd4\x04\x90\x9c\xc0\xad\x8e\xf0\x91\x13\x2c\xd6\x11\x3c\xb2\x12\x27\x72\x84\x8e\xac\x44\x3e\x1d\xa1\x23\x67\x6c\xcc\x42\x3c\x4e\x20\x51\x47\x7c\x9d\xb5\xfc\x24\xb7\xa5\x23\x79\xcc\xf2\x9d\x5b\x96\x67\xe2\x3b\x27\xf8\xe2\x18\x0b\xd9\x63\x9d\x76\x9e\x75\x5c\xb1\xc7\x89\xd6\xc1\xac\x1e\x21\x21\x67\xc7\x82\x23\x20\x64\x8d\x39\x6d\xd9\x39\x89\xdd\x60\xd9\x39\x99\x1e\xc6\xc5\x94\x0f\x35\xc0\xbf\x0a\x97\x23\x90\xf3\x50\x81\x7f\x28\xed\x8b\xb9\x9e\xd6\x68\xae\xf7\xbc\x29\x2f\x5e\x4b\xdb\x3c\x2f\x22\x69\x5e\xf0\xd7\x04\x88\x9c\x3d\x63\xba\x3d\x2f\x1a\x92\x7a\x98\x1a\x3c\xf3\x99\xb3\x82\x43\xce\x3e\xf2\x4c\x3d\x1c\xf9\x4e\x61\x8f\xf3\x3f\xec\xd0\xcb\xd1\xaa\xcc\xfc\xc5\xb2\xe0\xb7\x29\x51\x1c\x61\x67\x67\x79\x19\xfc\x24\xfd\xb6\x74\xd0\x53\x9d\x29\xbb\x98\xdc\x8c\xa1\x27\xf7\x4f\xf2\xe4\xa6\x06\xf4\x92\x3c\xeb\xd6\xad\xf3\xd0\x2b\x36\x0f\xd5\x34\x2c\x66\x66\xf5\xec\x58\x89\x9c\xed\xbd\x13\xb6\x71\x36\xd7\x7f\x66\xdf\x76\x84\x33\x7b\x8b\x19\x38\x89\xbc\x3a\xdb\x24\x4f\xb0\x4b\x1c\x21\x1c\x57\x6e\x45\xc2\x30\xae\x5c\x12\xb6\x03\xed\x50\x70\x84\x60\xac\xe9\xa3\x20\x8b\x2b\xfa\x2d\x44\x9a\x23\xcf\xc6\xf7\x59\xda\x66\x22\x4d\xa6\xa9\x89\x34\x73\x45\x31\x22\x71\x90\x82\xe5\x6c\x3b\xc3\x57\x5e\x15\x2f\x3f\x73\x78\x3b\x7c\x6e\x44\x52\x43\xaf\x54\xe8\x86\x22\x29\xb6\x08\xc2\x8c\x63\xca\xcd\xdc\x97\x04\x46\xac\x99\xb3\x02\x23\xae\x98\x6f\x05\x46\x5c\xb9\xd9\x08\x8b\x58\xb3\x7b\x09\x8a\xb8\xa2\xdc\x0b\x89\x58\xfb\x8c\xa4\x10\xc0\x99\x37\x15\x1f\xc7\x5f\x13\xf9\xe6\x8a\xae\x2d\xf2\xcd\x9a\xb9\x2e\xee\xcd\x95\xbb\x9b\x30\x89\x0b\x50\xc2\x11\x24\x71\xe5\xb2\x28\x44\xe2\xca\xf5\x41\x88\xc4\x0a\x94\xe3\xec\x80\x85\x68\x8c\x73\xba\xb1\x64\xc4\xbb\xb9\x62\xcf\xda\x98\x6e\xd3\x6e\xb9\x5e\x01\x45\x1c\x81\x15\x6b\x4e\x0b\xd3\x6e\x4e\xb8\x9f\x8f\x72\xb8\xd7\x2c\x36\x41\x17\x17\x38\xcc\x23\xe4\xe2\xca\xc5\x4e\x14\x9c\x2b\xb7\x99\xe3\x30\x52\xf4\x0a\x65\x74\x5f\xd0\xe0\x9d\xe3\x48\xba\x1e\x49\x5d\xbc\x23\xb9\x8b\x37\x92\x7f\x45\x41\xd2\xaf\x40\xaf\x38\x86\x19\x8d\xbc\x29\x98\x11\xf7\x25\x81\x1d\x57\xdc\x95\xc2\x3a\xae\xdc\xe4\x8e\x23\xfb\x59\xf7\x42\x3a\x3e\xf7\xaf\xd5\xea\xdf\x9d\x67\x76\x3b\x47\x52\xff\xd0\x78\x04\x7a\x5c\xb9\xc6\x0a\xf3\x58\xb3\x41\x1d\xaf\x10\xd4\x8f\x03\x00\x20\x92\xfb\x47\x8f\x14\x9a\xd7\x7e\x6f\x0a\x46\xb5\x52\xc3\x54\x0d\xb4\xda\xbb\x33\x34\xb0\xc7\x89\xdf\xe7\xc5\x81\x74\xe0\xf4\x61\xe1\x09\x1c\xb9\x62\xfe\x38\x4e\x85\x34\x52\x92\x39\xa6\x2e\xb4\x8a\xe3\xdc\x70\x98\x86\x84\x59\x7c\x88\x9c\x38\x4a\xfd\xbe\xa0\x19\x39\x4a\xfd\xbe\x62\x42\x53\xea\xf7\xe7\xce\x50\x39\xcc\x8d\xf9\xad\x64\xef\x0f\xf1\x0c\x47\xbc\x9f\xcf\x7d\xfd\x9b\xcf\xfa\x1c\x07\xbd\xb1\x48\x8f\x83\xde\xd8\x85\x44\x11\x9a\xd8\xc0\x23\x48\xe4\x5a\x99\x43\x0e\x81\x9b\xf9\xce\x0e\xcb\x96\xd6\x18\x8e\x44\x2f\x1c\x76\x14\xc3\xeb\x71\x48\x5c\xe6\x8d\xb2\x73\x81\xd5\x3e\xca\xfe\xfe\x10\xdd\x71\xfe\xc0\x19\xf0\x23\xc5\x35\xfa\x10\x25\x70\x84\xa4\x7c\x60\x86\x3d\x02\x52\xae\xf5\x7b\xf3\xf1\x8e\x9d\x72\xd4\xc7\x95\x0f\xbb\x3e\x7c\x90\x14\xb9\xb8\xf2\xe6\x74\x53\xf3\xaa\x3a\x39\xf2\x50\xd8\x39\x16\x0a\x54\xa4\xb9\xb2\xfd\x11\x53\x74\xe7\xe9\xcb\x05\x55\x44\xfd\xc8\x15\x49\xbd\x64\x43\xfd\xd3\xdc\x05\x31\x72\x84\xd5\x7c\xee\x7c\xb7\xfc\x23\x29\x54\x73\x97\x40\x88\x63\x46\xd3\x9e\x2b\xb9\x71\x9c\x33\x53\x40\x94\xa6\x0b\xa4\xcb\xf9\xd3\xf4\x8c\x5d\xcf\x28\xce\x2b\x26\xe4\x3f\x67\x97\x8b\xcd\x51\xa0\xce\x27\xa8\x8b\x3f\xfc\xc4\x2c\x18\xf1\x96\x3e\x77\x7a\xa9\x88\x21\x22\x63\xce\x1f\x56\x89\x96\x87\x9e\x59\x29\xc7\x90\xa9\x27\x95\x68\xd8\x47\x4a\x5d\xaa\x92\x51\xff\xee\xf1\x0f\x21\x29\xe7\x4f\xf1\x12\x04\x48\x9c\x3f\xaf\x96\x2b\x35\x7a\xb5\xa4\x14\x0d\xf2\x48\xf5\x1a\x64\x0e\xbf\x3f\x87\x88\x62\x0a\x17\x58\xf4\x21\x7c\xe3\xfc\x79\xed\xb0\xa9\x0a\x2c\xfa\xdc\x19\x55\x42\x2e\xd0\x44\xa0\x44\x5d\x79\x68\x10\x48\x9e\xa9\x4b\x9c\xd9\x22\x48\x7d\x88\x62\x3a\x7f\x5e\x2d\x2b\xd5\x6f\x8f\x69\xda\xe6\xd5\x92\x87\xfa\x55\x33\xc5\xc0\xd2\x92\x72\xbc\x5a\x22\x29\xb6\x8b\x57\x95\x03\x7f\xc5\xca\xfb\x02\x94\x83\xd6\x6f\x2c\x69\x8c\xc5\xd0\xa9\xc2\xb5\x73\x5e\x9e\x9d\x1c\xbf\x2f\xe2\xdf\xf8\x8d\xaf\xc5\x22\x8c\xa8\x90\x31\xd6\x8b\xb1\x9e\x57\x4b\x41\xcb\x18\xba\x91\xa7\xc2\xd0\xa5\x52\xa3\x21\x60\xa0\x3c\x2f\xfc\x6b\x2d\x4f\x1d\x50\xd6\xf3\xe9\xd4\x36\xdd\x90\xb6\x3f\xa5\x85\x8a\x84\x26\xc0\xf3\xbc\x30\x27\xff\x1a\xe8\x68\xb8\x9e\x4f\x1d\x2e\xf4\x2b\xf7\xa3\x72\x19\x32\x4d\x75\x42\x1e\x8f\xb9\x54\xaf\x20\x77\x5e\xe0\x03\xb9\xc7\xbc\xc0\x07\x8e\x3c\x7d\xf4\x29\x2d\x52\x34\x34\x44\xdf\xe7\x45\x70\xdc\xc8\x97\x8e\x5b\x44\x2b\x33\x74\xf4\x8a\xff\xf9\x45\x90\x69\x4f\x23\x1c\xa3\xd9\xfe\x4d\x23\x72\x5e\x8e\x40\x65\x27\x7d\x99\x7b\x7c\xa5\x58\x77\x94\xd6\x1e\x77\x94\x41\x20\x1a\x95\xdb\xdb\xcb\x31\xd1\xe8\x54\x00\x54\x73\x06\x03\x50\x85\x61\xf4\xbc\x88\x46\x65\xb2\x0a\xa1\xfa\x10\x8c\x7a\x9c\x44\xbf\x45\xa7\x14\x46\xf5\x21\x2c\xf7\xbc\x88\x45\xe5\x68\x13\x51\xeb\x03\xdd\xf9\x11\x51\xeb\x77\x10\xd2\x22\xc7\xa2\x3e\x69\x83\x67\x24\x2a\x91\x30\xac\x2d\x4b\x2b\x18\xd6\x96\x87\xf4\x6d\x20\x7a\x0a\xde\x48\x4c\xc1\x82\xe8\xbf\x96\x2f\xdd\x35\x34\x79\x81\x5a\x1f\x82\xd0\xce\x9b\xd8\x53\x2e\x4b\x6f\xc7\x72\x40\x3a\x75\x4c\xe6\x7a\xc5\xb1\xfa\x76\x5a\x52\x18\x54\xcf\x9b\xf8\xd2\x27\x4d\x7a\x6b\x58\xdc\xf3\x37\xcb\x8b\x5d\xeb\xcd\x82\x42\x55\x78\xb3\xa0\x38\x9e\xdf\xc4\x9b\xf2\x6f\xde\xac\xa8\x91\x97\xf9\x55\x79\x79\xa8\x9e\x48\x2f\x9f\xd0\xf9\x94\x65\x41\xdf\x9d\x08\x2c\xe7\xa7\xf8\x59\x1f\x58\x84\xcf\xdb\x51\x74\x35\x92\xe3\x33\x59\x07\x6f\xa8\xab\x33\xde\x5a\x16\x13\x6b\xa8\x61\xb3\x37\xa9\xd8\x8f\x60\xb3\x0f\x6c\xc4\x47\xa8\xd9\x67\xd6\x7c\x68\xcc\x68\x8f\x08\xd8\x2f\xef\x3a\x86\x2e\x03\xec\xcc\x8d\x04\x11\x1d\x13\xc6\xde\xe4\x71\x3f\xe0\x6f\xef\xcc\x88\xed\xae\xb2\x1a\xdf\x84\xd8\x71\x8c\x1b\x81\x7b\x93\x06\xfc\x88\x42\xf6\x89\xf5\xf8\x4d\x2c\xea\x8c\x58\xf5\x90\x39\xe0\x1c\x64\x99\x2e\xa6\x2f\x8e\x33\x50\xf8\xdc\x07\x2e\xee\x63\xd6\xd8\xfb\xce\x8f\x72\x64\x2a\x06\xa8\x37\x24\xfc\x99\x01\x87\x3b\x63\x44\xf7\x8d\xb5\xfa\x86\x93\x3f\x13\xc2\xf6\x3b\xd8\xd8\xcf\x9b\xd8\x54\x16\x8a\x00\xbd\x0f\xc1\xe0\x47\x98\xdd\x07\x6e\xf6\xf3\x71\x72\x53\xd4\x57\xb1\xcc\x3e\x13\x5d\xe6\x03\x46\x93\x69\xf6\x99\x1c\xdd\x29\x15\xb0\xef\x44\xe4\xc7\xa5\x24\x07\x3f\x8e\x3c\x75\xe7\x7a\x6a\xf5\x8f\x6b\x11\x1d\x01\xf8\xfb\xd6\x9d\x63\x8b\xf8\x4c\xe6\x68\x44\x3a\x47\x23\x9d\xe3\x34\xfa\xa8\x39\x66\xef\xdc\x36\x95\xa0\xbf\x45\x6b\x10\xb4\xb7\x45\x6b\x30\xa9\x6c\x23\xec\xf9\x98\x55\xb6\x3d\x19\x34\x05\x3d\x45\x05\x35\xd6\xf7\xce\x5d\xc2\xbc\xb2\x77\xae\x47\x1f\x22\xf5\x98\x5a\x42\xfb\xb6\xa8\x43\x66\x96\xbd\x73\xab\xfd\x90\xe4\xb4\xff\x3b\xbc\xf1\x08\x0b\xdc\xa2\xe9\x7f\x08\xcd\x63\x15\x7d\x8c\x36\xcf\x65\xee\x43\x68\x5e\x86\x45\x99\x03\xa2\x23\x8a\x6d\xb6\x45\xd7\x15\xdb\x6c\x8b\xa2\xf3\x01\xa6\xde\x23\x0a\xa6\x8e\xbe\x24\x18\x71\x8b\x86\x24\x18\x71\xcb\x5e\x28\xba\xd9\x16\xf5\xf5\x73\xe8\x26\x1f\x1e\xfe\x03\x6d\xb7\xd1\x25\x87\x80\x88\x63\xef\x12\xad\x9d\x8c\xfc\x50\x6e\x1c\x21\x92\x5b\x6d\xa9\xf4\x38\x6f\x16\xed\x73\x3e\xd4\xff\x55\xab\x04\xa8\x2d\xd5\x98\x22\x5d\xfa\xc2\x98\x06\x28\x17\xeb\x49\x5f\x91\x0c\x5c\x37\xa2\x02\x1b\x0c\xfd\xfc\x8a\xcc\xf6\x89\xd8\xfc\x72\x41\x14\xf9\xbe\xf6\xd4\xaf\x44\xc0\x5f\xde\x5d\x7a\x98\x72\xb7\x3b\x17\x51\x21\x88\x2d\xe5\x98\xd2\xfd\x4a\x41\x0e\x03\x18\x96\xbe\x4a\x55\x33\xb5\xe6\x57\x72\xd6\x06\xe9\x16\x5f\xd1\xe1\x71\x0b\xc9\x58\xba\x4e\x25\xe6\x9b\x77\x66\x90\xaf\xf8\x9d\xe8\x26\x78\xf8\x4a\x0e\xee\x6b\xb4\x96\xe0\xbe\xbc\x7a\x24\xd1\x1e\x82\xfb\x7a\x6a\x71\x70\x5f\x3e\x7c\x7b\x85\x44\x54\xee\xd6\x9b\xb1\x26\xb6\xa6\x53\xe7\x36\x08\x33\xa3\xb9\xcd\x8e\x7f\x45\x74\x73\x1b\xd5\x6c\x35\xf7\xa6\xdf\xdb\xcd\xed\x11\x1d\xea\x37\x19\x06\x42\xfd\x3a\xe3\x69\xe6\xe4\xeb\x27\x3a\x13\xdc\xa0\x3b\x9a\xb0\x3d\x83\x44\xe4\xdf\xa0\xe7\x8a\xb2\xe8\xf9\x92\x38\xc0\x49\xad\x06\x91\x9a\x7b\xf1\x2b\x3a\xbd\xec\xa0\x11\x9e\xbf\x66\xd5\xfa\x8a\x0e\x4e\x1c\x74\x87\x28\xc1\x99\x92\xe9\x40\x5a\x71\x2c\xe6\xdb\x3f\x7f\x9b\x97\xdf\x6a\x14\xa3\xe8\xf9\x6c\x12\xd1\x31\x6f\xcf\x67\xd3\x86\x7e\x45\xf7\x67\x0e\xc4\xe2\x92\x26\xe2\x76\x4c\x61\x44\x19\x2a\xd6\xaf\x28\xe5\xb5\x6d\x29\xe9\x65\x3a\x73\x4a\x32\xc1\xb7\x33\xd9\x7e\x45\xc7\x49\x15\x24\x67\xae\x5d\x1d\xd1\x37\xa3\xde\x10\xa7\xde\xad\x48\xc4\x78\xa4\x5c\x12\x98\xe4\x53\x61\xe2\x9f\xb4\x70\x39\xe7\x6c\xa3\x85\xdf\xd9\xd6\x8c\x79\xf9\x4a\x1f\xc7\x2e\xf2\xae\x93\xeb\x3e\x2c\x39\xa3\x98\xab\xfd\xf2\x5f\x51\x4d\xcc\xfc\xbf\x15\xff\xbc\x58\x56\xb7\x36\x55\x1b\x25\xbe\x92\x92\xeb\xb6\xf4\xc6\xc9\x75\x1b\xf3\xe7\x86\xb1\x8b\xfd\xc4\xa0\xe7\x6a\x90\xe8\x57\x14\xa6\x80\x06\x9a\xcd\xa2\xff\x3b\xa7\xfa\xf7\x5d\x03\xa4\x32\xfa\xe6\xf4\xbe\x98\xf0\x24\xfb\xbf\x69\xa0\x70\xcf\xbf\x57\x9d\x1a\xb0\xd2\x4f\xcd\xca\xc7\xa1\x4b\x5f\x51\x8b\xec\xf7\xea\xb0\x4f\x2f\xa5\x1a\x6e\xcb\x9f\xb0\xcb\xdd\xb1\x1a\x5f\x51\x78\xdb\x27\x55\xbe\x3d\x55\x18\xdc\x43\xf3\xfc\xae\x11\xcc\x33\xab\xa8\x18\x2b\xfa\x44\x12\x56\x94\xff\x60\x08\xb3\x6d\xe2\x5f\x49\xd1\x9f\xcf\x8d\x24\xac\xe8\x53\x91\x94\xeb\xf4\xb9\xf2\x50\x7a\xf5\x95\x87\xc6\x0d\xcd\xd4\xa1\xe6\xfd\x5e\x75\xeb\x16\x55\x1a\xf4\xf9\x34\x24\xe3\x6f\x0b\x92\x1b\x17\x49\x8d\xab\xf9\xae\x39\x63\x0e\x92\x1b\xd7\x91\xa6\xa4\x3c\xd3\xd0\xb1\x81\x1b\xa9\xdc\x99\x96\xc2\x1f\x8f\x8b\xcd\xd4\xf9\xf9\x67\x49\x85\x82\x2d\x65\x3d\x3a\x3f\xff\x33\x38\x9b\xc4\x49\x7b\x9b\x63\xeb\x2b\x39\x09\x46\x46\xc7\xd8\x37\x5b\xe0\xbe\xa2\x43\x2b\x66\xca\x15\xb8\xb0\x30\x1e\x00\xdc\xf2\xaa\xe0\x84\x35\xcf\x94\x97\xae\xa6\x54\xcd\x42\x26\x8f\x51\xcd\x8b\x45\x2e\x50\xf3\xb8\x38\x23\x04\x6a\x1e\x17\xfb\xb3\x51\xcc\x86\x6d\x7d\x25\x01\xd5\x6e\xca\x34\x50\xad\x32\x00\xbe\x08\x8e\x34\x4d\x1b\xa1\x71\x2e\x5f\x49\xe6\xee\x2c\x77\x63\x95\x87\x83\xde\xbe\xa2\x0d\x1e\x1c\x18\x4a\xde\x3f\x2e\xce\x1a\xa7\xeb\x9f\x0e\xe8\xf8\x8a\xa4\x70\x7c\x10\x05\x0a\xaa\x79\x28\x18\x10\x7d\xae\x86\x01\xb5\xbc\x69\x93\xc1\x8c\x28\x1c\x10\x07\x82\x90\xc6\x23\x27\xaa\x80\xc6\xc5\xe8\xf8\x31\x2b\xd4\xf1\xcc\xc1\x6a\x1c\x10\x47\x7c\x35\x0e\xa8\xe5\x55\x01\x9d\x5a\xde\x14\xd0\xa9\x47\x12\xd4\x87\x35\x59\x4d\x1d\xcf\xd8\x55\x03\xe9\x98\x10\xc2\x16\x8f\x1c\x89\x02\x0c\x8f\x8c\x9c\x00\xc3\xe3\x61\xe0\xaa\x61\x74\x9c\xac\x95\x0b\x1d\x4b\xa7\x1a\x47\xc7\xe9\x52\x8d\xa3\xe3\x88\xae\xc6\xd1\xb1\x5d\x54\x87\x1d\x31\x39\xaa\x21\x41\xe9\xbd\x31\x0e\xa9\xde\x88\xdd\xeb\xc9\x43\xa1\x38\x32\x16\x76\xbd\xfd\x9e\xc9\xe3\x5f\x46\x1e\x0a\xd7\x90\xd6\x18\x21\xc4\x9a\x33\xff\xeb\x95\x6e\x18\xe5\x90\xa1\x31\x40\xe8\x89\x24\x8f\xe1\x4a\x29\x02\x36\xe5\x07\x8b\xf2\x7d\x66\x2a\x98\xef\xa1\xd7\xbc\x2a\x9c\x4a\xfb\xa7\x22\x3e\xe6\x63\x40\x04\xbf\xf4\x31\x7c\x88\x79\x62\x66\xd8\x8b\x1f\x1c\x8c\x30\xda\x8a\xa9\x61\x2f\x06\xd5\x24\xae\x57\xcf\xab\x6a\x2a\x7b\xe5\x03\x0e\xa8\x21\x09\xcb\xd4\x29\xc5\x38\xa0\x16\xc9\x23\x3c\x90\x3c\x6c\x91\xbe\x35\x0c\xb6\x31\x25\xaf\xaf\x05\xb5\xe4\x71\x26\x96\x3e\xf3\xaa\xdc\xc5\x93\x3e\x19\x28\xb1\x78\x66\x77\x71\xde\x34\x50\x02\x55\xe8\xb1\xbb\x98\x33\x50\x89\xeb\x67\x5f\x34\xcd\x0e\xe2\xf5\x20\xc9\x05\x3e\x22\xc9\x41\x8a\xca\x6c\x8c\x6e\x2b\x23\x1f\x5a\x3b\xf9\x95\x63\x6a\x28\x36\xee\xc7\x88\x87\xc5\xb8\x99\x98\x78\xd2\x2b\x71\xbf\x16\x34\xb1\xc7\x4e\xe1\xc5\x77\xc7\x4d\xa5\xe1\x81\x8f\x33\x38\xd2\xf0\xda\x33\xf3\x54\x3f\xee\xfe\x15\xeb\xb6\x33\x02\x9a\x71\x7d\xe5\x99\x4d\xfe\xf9\x57\x9a\x56\x38\x5d\xc6\x6c\x24\xac\xe0\x80\x30\x8f\x6b\x4e\x6c\xf3\xb8\x46\x01\x6a\x76\xc0\xb1\x3a\x4c\xe3\x9a\x2b\x86\x73\xd0\x83\xeb\xfd\x8a\xf2\x31\xae\xbc\x6a\x6f\x6f\x9e\x89\x58\x93\x15\xd0\x7c\x76\xae\x95\x3a\x8e\xea\x48\xfd\x72\x2a\xf2\xf3\x9a\x9d\x6e\x2d\x92\xe8\x51\x67\xbe\xf3\xce\x41\x9f\x9b\xbd\x6e\x2c\xeb\xe6\x9c\x2f\x8d\x5d\xd5\x0c\xb0\xd9\xab\xc4\x00\xbb\x6a\xcb\x33\xf5\x8a\x8d\x44\x94\xaf\x35\xbf\xa0\x81\x8a\x78\x22\xca\xef\xc6\x54\x16\x92\xb8\x66\x0e\x0a\x49\xbc\x72\x35\x6a\x76\x53\xaf\xb4\x46\xdd\xf8\x95\xa2\x6e\xac\x7c\x27\xdf\x21\xab\xb3\xd9\x4d\xcd\x3e\xd6\xec\xa6\xe6\x37\x9a\xe4\xb5\x3e\x79\xd3\x6e\x6a\x4a\xd9\xf6\x1d\x32\x16\x76\x53\x67\x80\xb7\xff\x0c\xff\xc2\x6e\xea\x95\x52\xe4\x87\xcf\x18\x6e\xf7\x28\xb5\xab\x47\x4f\xbe\x3b\x4e\xe0\x94\x0a\xdd\x41\xc6\xd0\x30\x08\x14\xfb\x66\x1f\x36\xdb\x6f\x23\x60\xe2\xca\x43\xf7\x82\x91\x71\xd6\x17\x47\x13\x7f\xc5\xc7\xf0\x51\x5a\x4e\xaa\xad\x0c\x95\xf9\x8f\x2b\xa7\xa1\xa0\xc4\xf7\xd3\xd9\x3d\xcc\xe5\x5a\xd1\x48\x9c\x3e\x7f\x8e\x92\x77\x1d\x99\x78\x47\x94\x62\x5f\x33\x5e\xe2\x51\xbb\x51\x42\x9a\x97\xcb\x60\x7d\x98\xeb\xf5\x8a\xba\x6b\xd0\xf0\x15\x5d\xa3\xdb\x8c\x6b\x88\xe0\x57\x94\x1f\xac\xfe\x13\x72\xf2\x7d\xd5\x41\x97\xdc\xc2\x9d\x77\xff\x8a\x06\xd1\x27\x41\x98\x03\xd1\x49\x16\x66\xaa\x71\x14\xe6\xb5\x10\xe5\x88\xaa\x79\xa8\xce\xcd\x92\x16\xfa\x50\x19\x29\xd8\x4e\x34\xf4\xa1\x4e\x90\x28\x7f\xa7\x93\x2b\x89\x1f\x20\xc4\xf0\x73\xb3\x8c\xbb\x9d\x7c\xa8\x47\x41\x05\x33\x93\x3a\x51\xa3\x68\x64\xe6\x8b\x9d\x51\x24\xc4\x17\xfb\xdc\x1c\x6c\x1d\x37\xc9\x4c\x2d\x58\xdc\xd3\x24\x5b\xa5\xd9\x03\x3a\x7e\x92\x99\x6a\x6d\x72\xff\x55\x2b\xf7\x41\x7e\x0e\xb4\x81\x5c\x5d\x3b\x8e\x12\x66\x69\x27\xb7\x7a\xc9\xd3\xea\xd8\x37\x86\x0d\x76\xce\x15\xd1\x36\xeb\x95\x92\x6d\x74\x67\x4d\x99\x39\xb6\x65\x10\x71\x9c\xb0\x15\x74\x1c\x27\xac\x38\x41\x99\x9f\x96\xff\x6c\x16\xc1\x75\x45\xb4\xcb\x20\x3f\xf6\xd0\x01\x3e\x95\x95\xb7\x65\x72\xe1\x0e\xe1\xda\x23\x6c\xf3\xb7\x1a\x6a\xc5\x1f\x92\x06\x3b\xf7\x6a\x63\x31\x77\x5f\xb6\xa2\xaf\x74\x0c\xbd\x69\xb1\x0d\xbd\x2d\x05\x6f\x1f\x6e\xf4\x15\xcb\xee\x4a\x49\x36\x7e\x66\x24\xe4\xe9\x9b\xec\x51\x1d\xc3\x2e\x7f\x56\x38\xe6\xaf\xd8\x10\x6d\x66\xa7\x77\x83\x28\x7a\x76\x9f\x81\xbd\x76\xe5\xa9\x88\xf8\x9e\x3c\xb4\x29\x3a\xe5\xda\x5a\xcb\x8f\x1d\x58\x6b\x99\x13\xa2\x81\x7d\x26\x47\xc1\xc0\x1c\xcb\x74\x32\x0f\xec\x64\x0f\x87\x07\xf6\x66\x53\x15\x66\xf9\x99\x9c\x77\x03\x46\x18\x66\x84\x60\xca\xcf\x64\x5b\x1b\x10\xc2\xcc\xbc\xeb\x01\x5d\x29\xd7\x03\x4a\xfb\xc4\x81\x3c\x39\x38\x87\x3d\x1c\xed\x8a\x28\x0b\x26\x1b\xd5\x30\x6b\x1a\x5b\xd1\x80\x35\x8d\xb5\x3b\xb0\xd4\xce\x3c\xb5\x09\x93\x0d\x50\x28\xe3\x76\x73\xe7\x10\xca\xb8\xe5\xcc\x17\x9b\x6c\xb3\xab\xfa\x2b\x61\x8a\xcd\xab\x4e\xf1\x37\x53\x8e\xac\xaf\x25\xd2\x4b\x12\xdd\xc4\xf8\x4a\x7b\xec\x93\xe8\x98\x6c\xcc\x25\x7b\x77\xf4\xb0\x11\x83\x2b\x9f\x1e\xd9\x8a\x6b\xde\x95\xa6\x7d\xb7\x3c\xec\xbe\x07\xe7\x53\x11\xca\xb0\x79\x98\x3b\xb6\xdc\x6c\xde\xc3\xa1\xcd\xf7\x9d\x77\x65\x60\xed\x29\xd7\x06\x56\x56\xa6\xe9\x60\xe7\xe2\xdd\x89\x81\x95\x05\x65\xe0\x70\x79\x46\x5e\xae\x7e\xda\x10\x9b\x9f\x3e\x88\x5d\x26\xcb\x7f\x72\x43\x7d\x5f\xb5\xf5\x70\xa4\x1a\xc7\xc3\x5e\xa9\x66\xfb\xe9\x8d\x68\x8b\x26\xf6\x1e\x91\xbc\xb6\x56\xf2\xe9\xdb\x4b\x71\x21\x2a\x7c\x78\x72\x26\xcf\x65\xeb\x21\xe5\xca\x42\x30\x72\xa0\x98\xd5\xf5\xc9\xdc\x31\xab\xeb\x13\xb5\x43\xe8\xe5\xbb\x5e\x25\x4f\x6d\x8b\x2b\x29\xd8\x4c\x61\x79\xf8\xf2\x43\xea\xb1\xf1\x2a\x5a\xa1\x90\xc8\x77\xcd\xe5\x52\x50\xe4\xfb\x67\x62\x30\x3b\xeb\x8c\xb2\x37\x31\x5f\x71\xe1\x36\x3b\x6b\xed\x3f\xf1\xfb\xdb\xb3\x83\x19\x8e\x5c\x63\x8f\x11\x1c\x79\x3c\x69\xc3\x91\x31\xab\xe5\x55\x0f\x13\x87\x8f\x40\xc6\xf7\xaa\x91\xb4\x2e\x38\x1d\xa7\xc3\x91\x68\x9d\xed\xfa\x57\x5e\xf4\x8d\x96\xb1\x16\xf6\x2d\x37\xe8\xe9\xf8\x23\x06\x84\x5b\x5b\x5e\x14\xd6\xa1\xe6\x99\x28\x1f\x58\x3d\x66\x5d\xfd\xd9\x54\x96\x23\x3b\xf9\xb9\xcb\x01\x47\x3d\xaf\x3e\x3e\x40\xf3\xaa\xd6\x2f\x0a\xac\x48\x56\x07\xbb\xdf\x32\x7d\xdf\x95\x17\x7d\xa3\xba\x91\x74\xa3\x62\x45\x2e\x03\xd3\xd0\xd9\x0c\x23\x6e\xb9\xd0\x09\x38\x5c\x07\x57\x18\x53\xa8\x5e\xd7\x9d\x87\x9e\x4c\xfc\x19\x81\x85\x9f\x18\xe1\x0d\x16\xfe\x5f\x3f\x30\xe6\xd3\xd4\xef\xcc\x1a\x4f\xaa\xdc\x6a\x5c\x5e\xd4\x20\xd2\xee\x65\xc3\x38\x47\xb7\xd9\x53\xa3\x47\x09\x2a\xdc\x6f\x26\xe0\x32\xf0\x87\x89\x6d\xee\xd4\xc2\x82\x5f\xe6\xe8\xe3\x5c\x13\x54\xf8\x2e\xec\x2a\x82\x0a\xf7\x68\xcc\xe6\x46\xed\xd7\xef\x55\x19\xa9\xae\x48\x32\x9a\xa5\x31\x4a\x85\x98\xd9\xb5\x1c\x84\xc9\x52\x11\xe4\x77\x5c\x25\x55\xd8\x2a\x45\x29\xb6\x4a\xb1\x8b\x2d\x07\x5a\xa2\xcc\x0b\xf2\x3b\x2e\xb6\x67\x53\xa4\x2e\xae\x04\xcb\x93\x92\xfd\x42\x88\xdf\x91\xfd\x41\x88\xdf\x91\xed\x61\x79\x8e\xfe\xbe\xd3\x44\xfc\x49\xbe\x93\xf3\x93\x6c\x3d\xc0\x3c\x24\x22\xd5\x5a\x50\x33\x44\xa4\x5a\x26\x03\x63\x1e\xd5\x5f\xd3\x9c\xc7\xbf\xcc\x3c\x6c\xfa\x83\x1d\xa9\x4b\x6a\x48\x66\x41\x63\x9c\x36\x33\x31\xc5\x08\x69\xc8\x68\x03\x29\xe6\xc7\x00\x29\xee\x69\xcd\xc7\x19\x14\x3d\x81\x9c\xc7\x3f\x9b\xbf\x58\x51\x57\xb6\xf7\x8d\x42\x4a\x6b\x98\xb3\xcc\x43\x71\xa2\x7e\x9b\x93\x2f\xad\x60\xff\x97\x1d\x5b\x58\xe5\xe7\x66\xc7\xd8\xe8\xb2\x25\x95\x9a\x01\x1b\x05\x68\xa3\xbd\xa2\xb6\x08\x9f\xfc\xc4\xcb\x64\x12\xd4\x59\x50\x99\x4d\x7b\x5a\x1e\x8e\x68\xd3\x9e\xb6\x92\x87\xa6\xd3\xe0\x80\xdc\x78\xa4\x38\x95\x85\x27\x6e\x83\x0b\xe5\x86\x5e\x92\xbd\xd1\xa9\xff\x6b\x54\x27\xa7\xfe\xaf\x39\x35\xc4\x73\x3a\x9e\x3c\x7b\x79\xab\xcc\xb3\xb7\xc8\x65\x18\x6b\x99\x2a\x32\xf0\x0a\x1a\xce\xfc\xd9\x24\x24\x60\x49\x6c\x2c\xf0\x34\x4e\x09\x8b\x73\xd9\x12\xbe\xb7\xe7\x4e\x77\x48\x8e\x71\x23\x89\x16\x85\xad\xeb\xf8\xc4\xed\x79\xd3\xeb\xf3\x41\x52\xff\x7b\xbe\x13\x33\x07\x9b\x85\xf0\xbd\x3d\x37\x61\x61\x78\x7b\x6f\xf9\x6e\x6b\x61\x2d\x24\xc5\xfc\xb7\xd4\xa0\x98\xff\x96\x67\x2f\x4f\xb4\x7c\x28\x3b\x3d\x5b\x8e\xb9\x4a\x3b\xff\xf1\xd8\x4c\xcf\xb4\x3b\xe6\x66\xe0\x5f\x1c\x1b\xe6\xd9\x55\x8f\x4d\xf1\x4c\xba\xe3\x2c\xb1\x6c\x94\xc7\x86\x79\xc6\x17\xa0\xee\x1d\xc9\x7b\x0c\x1d\x5c\x6e\x68\x6a\x97\x99\x9e\xcd\xdf\xb0\xdc\x1e\x33\xd9\x11\x1d\xd7\xc5\x1a\x38\xa2\xe3\xba\x50\xab\x94\xbb\x7f\x5c\x9c\x45\xe2\x24\x1d\x17\xca\xe4\x71\xd4\xf9\x13\x49\xa3\xc6\x3c\x15\xd4\x77\x5c\x9c\x91\xa2\x1c\x1d\x99\x97\xc7\x94\x4a\xe8\x11\x87\xad\x8a\xce\x3b\x9c\x37\xff\xc5\xe1\xbc\xf9\x9f\x6c\x55\x29\x53\xc7\xf7\xc8\x33\x9d\x04\xe9\x91\x82\x26\xb3\x4f\x0b\x77\x5b\x32\xb7\x8e\xc3\x79\xd1\x29\x8f\x37\x35\xda\xf2\xe7\x70\x5e\xd4\x37\xc1\x6e\xc7\xc3\xd1\x47\x8a\xff\xec\x78\x20\x6d\x63\xa2\x14\x9a\x76\x5e\x23\xef\xca\x96\x4b\xdb\xfe\x1c\x1a\xf9\x2b\xd5\x9b\xda\x42\xfa\xfb\x4a\x25\xdf\xb9\x35\x6e\xdb\x9f\x9d\x92\xf1\x84\xfd\x29\x4a\xe7\x62\x17\x17\x78\x76\x0e\xce\x6c\x81\x67\x4b\x2e\x4d\x02\xc8\x96\x28\x75\x7f\xb6\x97\xa2\x15\x08\x1e\x3b\x73\x47\x55\xc6\xff\x92\x5b\x90\x13\xfe\x4f\x06\x4a\xd0\xd9\x32\x9f\xbc\x29\x6b\x6d\x4f\x7d\x3a\x19\xf8\x69\xc2\xc6\xce\xc1\x02\x15\x36\x76\x0e\xd4\x8e\x3f\xc7\x8e\x71\x43\x13\x18\x76\x8e\x3b\xdf\x0d\x49\x79\x36\x75\x6a\xd4\x88\x0a\x28\xe1\xe2\xf7\xe7\x0c\xee\xa3\xa4\xd4\xe3\x13\x86\x4e\x39\x57\x56\xbd\xf2\xf2\x4b\xe5\xfe\x13\x49\xf8\x7d\xd5\x8a\x1e\x13\x5c\x68\xd9\x39\xd8\xa2\x84\x96\x9d\x83\xf5\x2c\xb4\xec\x1c\x77\xde\x74\x2f\x19\x2b\x47\x93\xcd\x3c\xd3\x11\x87\xe6\xf3\x67\xc3\xea\xcc\x9b\x43\x4a\x52\x24\x9b\x61\x5a\x3e\x5c\xde\x4f\xe8\x87\x32\x06\xd5\x1e\x49\x76\xcd\x9e\x57\x75\x1a\xf6\x94\xf3\x56\xa9\x79\xf3\x23\xc9\x6f\x1a\x1e\x5b\x39\xb7\x0d\x8f\x9d\x37\x55\x98\x78\xb5\xb2\x45\x0b\x2c\xfb\x3d\xa7\x2a\xa2\x8d\x4f\x13\xa9\xa9\xd4\xbc\x3a\xed\xbf\x2c\x88\x8a\x82\x60\x92\x99\x6c\xb5\xf6\x7c\x68\x18\x7c\x49\x95\x46\x88\x97\x14\x24\x54\xe0\x9d\x87\x1f\x73\x45\x53\x90\x2e\xd7\x77\x8d\x64\x53\x19\x8a\x13\x18\xdc\xf8\x45\x5f\x86\xfd\x31\xb7\x5e\x3e\x63\xe3\xdf\x7c\x99\x66\xac\xff\xca\xdd\x16\x69\xa1\x0d\x46\x9d\xf1\x03\x49\x1b\x27\x38\xf0\xd8\x68\xf5\xc0\x63\xa3\xda\x99\x1e\xf5\x2e\x29\x4a\x86\x9c\xd9\xf2\xee\xf2\x43\xfa\x6a\x34\x5f\xf9\x7d\x7a\xfc\x94\x46\x19\xcd\x57\x52\x8f\xb1\x47\x2c\x87\x17\x9c\x75\xec\x46\x42\xb2\xb6\xdc\x11\x04\x64\xfd\xde\x9b\xf9\x19\xb6\xdc\x5c\x33\x9f\x36\x5d\x68\xf9\xa9\xf6\x99\xdf\x19\xa7\xef\x7c\x6c\xd1\x9c\x4c\xbc\xda\x32\xc0\x82\x25\xb5\xfc\x37\xb1\x3d\xf7\x4c\x15\x50\x1c\x2b\x1f\xbe\x2c\xf2\x2f\x64\xf2\xac\xbf\x5f\xae\x4b\x74\x2d\xfc\x0c\xe3\x58\xe3\xdc\x32\x8e\xb5\xc6\xbc\x6b\x1c\x6b\x8d\xfd\xde\x64\xac\x35\xf6\xec\xb7\xb3\x12\xe6\xcb\xa6\x43\x66\x20\x89\xfa\x82\xbd\xec\xed\xc8\xf5\x27\xcf\xbc\xeb\x4d\xa4\xf5\x2d\xa4\x21\x6c\x29\x29\x91\xbe\xe7\xc8\xaf\x29\x7f\xbe\xec\xe7\x33\xdf\x21\x22\x7d\x0c\xa6\xa2\x9d\x3a\xd1\xa3\x72\xbe\x4d\x03\xf6\x7b\xa6\x21\xef\x79\x26\xf2\xb2\xd4\xa1\x79\xfa\xc4\xd3\xf8\x36\xa6\x3b\x8a\xd7\xdb\xd4\x48\x3d\x0f\x65\x48\xee\x33\x05\x7d\x9c\x21\xd0\x92\xf8\x37\x3b\x9b\x85\xa0\xab\x3d\x50\x1f\x41\x57\x7b\x4f\x1f\x95\xdd\x3d\x18\x21\x43\x55\x3b\x27\x90\x90\xaa\x3d\x3f\xd9\xfc\xae\x3d\x10\x2c\x43\x55\x3b\x33\xe7\xcd\x0d\x27\x15\xda\xc6\x97\x9f\x61\xf7\xd6\xef\x43\x29\x23\x3d\xcf\xdc\x29\x7a\xe1\x4b\x4d\x7e\x94\x5d\xed\xed\x9f\x54\xac\xdf\x57\xa5\xa8\x70\xe6\x09\x86\x3a\xe2\x22\x15\x0a\x75\x5c\x4f\xaa\x90\xd7\xe5\xf7\x4c\x4a\x0c\x0a\x9d\x20\xa9\xe3\x7a\x22\x91\x68\x9f\x31\x35\xb7\x4c\xa6\x94\x49\x42\x66\x2a\xd4\xb5\x2d\xbf\x58\xb4\x20\x71\x4a\x0a\x7f\x7a\x2f\x9e\x09\x71\x3a\xae\x1a\x49\xda\x16\xbf\xdf\x88\xd3\x15\x43\xda\xc7\x33\x1a\xc5\x45\xf8\xd3\x91\xeb\xc7\xc7\x74\x4b\x28\xb0\x1f\xd3\x2d\x3d\x29\x46\x07\xc7\xff\x44\xe1\x0e\x18\x1a\x13\xcd\x46\x53\x11\xf4\x74\x5c\x35\xc5\x08\x20\xf1\x2b\x54\x0a\x6c\x7e\x94\x81\xa7\x3f\xcd\xf0\xe3\xeb\x7e\x0c\x82\x1f\x7b\xfd\xb9\x40\x7c\xec\xf5\xe7\x92\x67\xee\xd9\x87\xcd\xe1\x63\xa8\xc9\xc3\xe5\xe2\x63\x3e\x26\x76\xa7\x8f\xaf\xf7\x33\xaf\x4a\xab\x5b\x79\x26\xad\x6e\xa5\x50\x8f\x7f\x4a\x11\x08\x00\x8b\xad\x00\xa9\x25\xde\x3a\x71\xd1\x96\x2c\x31\x73\xd1\xce\xbb\x47\x54\x74\x7f\xcc\x0b\x90\xd1\x62\xb8\xfe\x60\x6d\x62\x71\x7c\xcc\x3e\x3a\xf3\x6a\x37\x48\x85\xf1\x30\xbb\xce\x8c\xa4\x6b\xf5\x4a\x39\xee\x15\xe3\x6a\x02\x9d\xfc\x48\xeb\xc6\xbf\x52\xac\x9d\xe6\x3b\xf5\x23\x33\x47\xc6\x80\x1e\x90\xd0\xc7\xfe\xdc\x56\x23\xca\x0f\x9f\x41\x96\xd2\x71\xe5\x07\x18\x69\x80\x3e\x6c\xf4\xe9\xff\x26\x9d\xa1\x06\x33\x92\xac\x89\xd9\xba\x3e\xc6\x1a\x64\x3c\xec\xf9\x6d\x35\x95\xc8\x83\x9f\x6e\x99\x52\x21\x3f\xf2\x88\x24\x22\xbf\xc0\x8a\xb5\x7f\xd6\xba\x0c\x27\xf0\x50\x2d\xc1\x52\xa7\xb3\xa3\x7d\xa5\xe2\x7c\x34\x0d\x51\xaa\xac\x9b\xba\x2e\x63\x0d\x3c\x3b\xd6\x65\xb2\x05\xcf\xd6\x75\x99\xaa\xc4\xa3\xba\x2e\x6b\xe0\x33\xa5\xa8\x8b\x2b\x55\xf8\xe6\x90\xef\x44\xad\xf0\xa4\x69\x82\x28\xac\x94\xa2\x0e\xae\xd4\x2e\x73\x48\xa3\x14\xa9\x1f\x03\xe0\xe2\xba\x9c\x32\x08\x9f\xf4\x32\x78\x15\x98\xf9\x57\xb4\xbd\x2b\xad\x13\x09\xc9\x28\xb4\xce\x97\x3a\x7c\x9f\xcb\x70\xd5\x69\xd8\xf9\x57\x94\x8d\xab\xa4\x20\xc5\x90\xae\x48\x66\xd5\xfd\x7d\x29\x4d\xb7\xd2\x22\x81\x18\x46\x1a\xa4\x98\xf7\x51\x78\x53\x31\xc9\x25\x1d\xb3\x8e\x5e\x69\x9c\x62\xde\x47\xcd\x33\x69\xec\x19\x10\x43\x1a\x56\x4a\x51\x18\xff\x62\x20\x45\x2e\x32\xfe\x83\x73\x72\x09\xd3\x5a\xcd\x40\xfe\x95\x74\x07\x2a\x69\xa8\xef\x40\xe9\x84\xba\x54\xf2\xe6\x5b\x52\x1a\xa3\x78\xf8\xc5\x28\x5a\x59\x2f\x8c\x9a\x95\xf5\xc2\x5f\xb5\xb2\x5e\xf3\xa6\x42\xfc\x33\x19\xad\xac\x2f\x6a\x3f\xb6\x39\x8d\x14\xa3\xf0\x65\xec\xfd\xcb\xc8\xd6\x01\xbc\x66\x5d\xe6\x82\x98\x8c\x86\xd9\x26\xb9\x92\xad\xcb\x6a\x37\x5f\xde\x56\xbb\x7d\x97\x5b\x42\xae\x56\xae\x12\xeb\xb6\xd6\xed\x05\xb8\x44\xcf\x7b\x3f\xd3\xd7\xc5\x75\x1b\x15\x31\xf2\x50\x2e\x6b\x07\xd8\x7e\x45\xc5\x25\x7b\x95\xaf\x7b\x7a\x5d\xf7\xbc\xeb\x14\x27\x4f\x9e\x72\x28\x44\x34\xd1\xde\x9d\x16\xc9\x80\x36\xd3\x22\x19\xd0\x06\xb5\xd8\x46\x96\x06\x19\xec\xc0\x00\xdd\x84\x1f\xf8\x70\x59\xb7\xd1\x0e\x33\x0f\x7d\x47\x48\x31\x26\x1e\xb0\x4e\xb0\x6e\x47\xec\x8f\x7c\xb8\x34\x22\xa9\xc3\xc6\xf1\x89\x64\x2c\xdc\xca\x43\xdd\x6e\x6e\xfa\xb1\x3c\xcc\xf4\x79\xdb\x20\xde\xf8\x72\x9b\xd5\xad\xe4\xa9\xbd\xe9\x2c\x82\xdb\x61\x9b\x19\x10\x85\xec\x38\x8b\xd7\x57\xd2\x21\xd5\x7f\x0f\x6d\xb2\x63\x69\x19\x08\xdb\xb2\x83\x89\xfe\xf7\x01\x26\xbe\x6e\xc7\x6d\x3e\x79\xf5\x78\x5f\xa0\x9f\x49\xfa\x46\x5f\x14\xba\xe6\x2c\x10\x5f\xc9\x01\xa9\x95\xe1\xdb\xbe\xb8\xd1\x5a\xc5\xae\x39\x2d\xda\x57\xe2\xf2\xc3\xd8\xda\x77\x8b\x2d\x66\xdd\x87\x9b\x1b\x2d\x3a\x1c\x63\xb4\xc1\xbe\x5b\x8c\x3a\xcb\xb0\xd9\x01\x9e\x6b\x19\x1a\x7b\xf5\x8c\x19\xe9\xb4\x5a\x5a\xf1\xe7\xeb\x4e\xea\xf5\xdd\x28\xb3\x48\xbe\x0a\xdc\x2f\xcb\xc0\xd9\xbb\xf0\xa7\x44\x04\xfc\xa0\xcb\x2e\xc3\x68\x2f\x0c\x62\xab\x60\x24\xb6\xaa\xb5\x84\xa3\x7d\x00\x30\x2f\x93\xff\x5e\xa8\x9a\xcb\xec\xbf\x17\x56\xb0\x55\x8c\x65\xe8\xbf\x6a\x7c\xd5\xbb\x53\x92\xed\xa7\x0b\xc9\xe0\x85\x99\x77\x85\xfb\xc6\x72\xb1\x4c\xf3\x7b\x83\x50\x59\x46\xcf\xde\x25\x4d\xb4\xbf\xb6\xa4\x5a\x67\xf0\x28\x74\xbd\x2c\x87\xa3\xcc\xbc\xac\x8b\x1f\x4b\xd1\x98\x59\xe2\xc1\xbe\x22\x17\x3f\x86\xc2\x54\xa9\xf7\xaf\x60\xbb\x73\xd3\x88\x97\xa7\x30\x2d\x56\x56\xc3\xd9\xf3\xa5\xb2\xbe\x75\x9e\x39\xeb\x5b\x61\xcb\x29\xf6\xee\x96\x8c\x9a\x66\xbb\x53\x1a\x7f\x25\x5d\x0a\xcd\x69\xf8\x15\x9d\x05\x6b\x45\xb4\x77\xe8\x9f\xdc\xda\xdf\x57\x7d\x63\xa4\xed\x72\xb1\x71\x43\x5f\xc5\x41\x38\x9c\x81\xa6\x1f\xbe\x41\x11\x2d\x03\x75\x6f\x00\x4e\xab\x10\x86\xc3\x91\x64\x38\xee\x0d\x02\x68\x15\x6e\xbf\xbc\x8b\x27\x98\x43\xa9\xe0\x09\x66\x35\x16\x03\xdb\xb8\xb6\xae\xe2\xd0\x85\x3b\x73\x89\x0b\x6f\x49\xc1\xf6\xa5\xb2\xf1\x19\xbf\x5b\xee\x4c\x9e\xe3\xf4\xed\x99\xb3\x44\x32\xfc\x1a\xe5\xc8\x1c\x0e\x2e\x41\x76\x5b\x2b\x69\xa3\x03\x5d\x7e\x9f\x2a\xd0\x85\x15\x58\x09\xcc\x61\x56\x56\xfc\xc6\xfc\xe3\x6a\x2b\x36\x6e\xf0\x55\xa1\xc5\x66\x53\xad\xf8\x8d\x67\x5e\x36\x6d\xe6\xef\x65\x9b\xcd\x98\xd1\x42\xff\xb6\xc6\x3e\x50\xc9\xb5\xc5\x49\x03\xcf\x30\x66\xca\x25\x88\x6f\xeb\x69\x22\xde\xbc\x8b\x5a\x97\x83\x85\xf2\xee\x72\x86\x26\xca\xd5\x52\xa8\xc5\xd6\x9f\x25\xca\xe0\x36\xd8\x31\x4c\x19\x5c\x31\x7a\x2c\xa1\x7c\xbf\x22\xcd\xb7\xa3\xb8\xfc\xaa\x51\x72\x27\xfe\xa4\x39\x84\x2b\xd0\xde\x25\xd8\x2f\x78\xfe\x05\x4d\x70\x67\x04\xa5\xe2\x63\x09\x58\xd5\xc0\xb6\x19\x49\xa8\x0b\xd4\x29\x31\x01\xb7\x56\xf2\xdd\x23\xdb\x03\x7d\x76\x30\xc4\xf3\x2b\xe6\xab\xa5\xa5\x1b\xbe\xfc\xe6\x84\x14\x4d\x70\xef\x19\x0e\x11\x64\xb2\x6d\x54\xfb\xf3\x7e\x85\xe8\x62\xd8\xa8\x41\xae\xe3\x5e\x33\x70\x31\xe3\xd0\x36\x7c\x22\x68\x89\xd5\xee\xe3\x8a\x86\x69\xa0\xef\x60\x35\x55\x13\xa2\xb0\x7a\xaa\x09\x51\x32\x6e\x26\x44\x61\x2b\x7a\x40\x98\xa1\x08\x3e\x36\xe3\x3d\x79\xd8\x5c\xe5\x85\xe8\xbd\x94\x59\xfb\xb0\x97\x32\x31\x4d\xd5\x7b\x17\x56\xc7\x03\x7a\x00\x35\xe1\x99\x2c\x59\x37\x49\x30\xdd\xef\x2c\x8e\xe8\x68\x2e\xf4\xd8\x67\xd9\x0a\x15\x09\x3e\x77\x9a\xe8\x29\x73\xfd\x3e\xfd\x6a\xef\x0c\x99\x48\x79\xef\x31\xd0\xfa\x1e\x33\x42\x32\x62\x8f\x8d\xd4\x2d\xdf\x79\x88\xf2\xa1\x5b\xcb\xe4\x37\xe0\x97\xdd\x50\x08\xdf\xd1\x98\xbf\x42\xf8\x96\x5f\x85\xdb\x39\x10\xf2\xa6\x96\x10\x8b\xc4\x38\xdd\xc2\xe6\xf7\x38\xbc\xa0\xa5\x14\xff\x78\x7a\x28\x4f\xd8\x60\x03\x7b\x30\xc9\x5d\x11\x9b\xb1\xff\x94\x23\x2e\x67\x60\xa9\xcb\xfc\xb6\xf5\xf7\xec\x98\x8a\x3d\x5f\x0a\xec\x93\xff\xe3\x8c\x47\xa8\x66\xa6\xbb\xed\xe3\xdf\xfe\xc9\xd5\x4c\x86\xce\x44\x6b\x3e\x8b\xf1\xeb\x2f\x41\x6f\xef\x0e\x4e\x69\x19\x5f\x3b\xb8\x12\xae\x66\xfa\x66\xba\xd9\xac\x55\xd2\xd8\x66\x87\x58\xd4\x24\xf3\xe8\x2e\xfa\x65\x80\xed\x62\x6d\x1b\x51\xdb\x72\xa6\x37\xab\x95\x58\x29\x57\x33\x7d\xe8\xef\x5d\xf3\x7c\xb2\x14\xa1\xdc\x4d\x6b\x4d\xb9\x9b\xf6\x2c\x1b\xf0\xf2\xa1\x1c\x41\x69\xc0\xd2\x55\x3b\x6d\x95\x4f\x0c\xd4\xd4\x6a\x66\x16\xcf\xfd\xa1\x79\x46\x70\xce\x36\x13\x35\x32\x03\x85\x8d\x9d\x51\x4e\x85\x7f\xfd\x76\x79\x22\x7e\x15\xd9\xca\xc4\x12\xc8\xb5\xd6\x2b\xc5\xe8\xa2\x53\x53\xc5\xcb\x1b\x2c\x4d\xc5\x13\x31\xf3\xd4\xd3\x87\x52\x45\x19\x1e\x25\xc0\x64\xb9\xf3\x46\x3f\x17\x8c\xb5\xe2\x54\x59\xcd\x6c\x4c\x9c\xaa\x02\xb1\x56\x9c\x31\xab\x99\x8c\x29\x55\x90\x07\xe7\xca\x87\xb6\xcb\xd7\x88\x6f\xef\x04\x34\x4f\x94\x1b\x18\x4d\x96\x31\xac\x77\xe1\x38\xeb\xce\x7c\x9d\x33\xa8\x3b\xb0\x14\xec\xf6\xea\x06\x3a\xa1\xa9\x0a\x88\x4a\x1a\xc6\xaf\xe4\xdc\x7e\x1d\x49\x91\x0d\x11\x64\x34\xa4\x93\x7d\x32\x5a\x0d\xd1\xa3\xb5\xd2\x1e\x85\x6b\x30\x79\x82\x41\x65\xf0\x84\x41\x7d\x88\x7a\x5d\x82\xa0\xb6\x96\x47\xde\xd4\x29\xd4\x40\x3a\xb6\xc2\xce\xf6\xc1\x5f\x17\x60\x73\x00\xf6\x58\xdd\xde\x4e\xb4\xbd\xee\x10\x24\x26\xa4\x30\x97\xc3\x14\x1e\x5f\xe9\x76\xf4\x54\x44\x6b\xe6\xdc\xe7\xe1\x8c\x4d\x97\x65\xb6\x04\xd9\xb9\xcc\x19\x8b\xe3\x66\x75\x7b\x3f\x7b\x8a\xd9\x7a\x93\xa6\x1e\x4f\xfa\xbc\xa9\x49\xcf\x1e\xd5\xed\xfd\xcc\xd0\x1c\xdb\xc9\xe8\xbe\xac\x96\x80\x5d\x97\x28\x63\x47\xe3\xf2\xa6\x3c\xfc\xc3\x7c\x51\x5f\xa9\xa8\x94\x48\xd5\x0e\xe4\x86\xf8\xe8\xd5\x89\x24\xae\xdf\x96\x62\xe4\xd0\xed\xa9\xc2\xfe\x2e\x26\xca\xb0\x25\xa6\x47\x92\xb5\xa5\xa7\x18\xb9\x18\x57\x6a\x94\x39\x89\x19\x65\x9a\x58\x22\x95\x97\x30\x97\x93\x20\xe7\x25\xc8\xe5\xbc\x38\x93\x4c\xf7\x0a\x7a\x68\x09\x54\x59\xeb\x15\x69\x49\xa2\x06\x5b\x5d\x9e\x94\xe2\x85\xfb\x20\xfd\x79\x7f\x4c\xf5\x32\x51\x3c\x79\xf8\xd6\xab\x79\xa6\x75\xcb\xdf\x16\xfa\xb2\xd6\x0c\xa9\x2d\x32\xdc\x13\x05\xbe\xac\xf5\xdf\x7c\xaf\xdf\x57\xab\x5e\x4d\xa1\x32\xd7\x30\x9f\x87\x5d\xaa\xdc\x12\x87\x5d\xaa\xdc\x69\x85\xb5\x5c\xcf\x95\x67\x52\x12\xd8\xd5\x85\xb5\xac\x78\x9e\x97\xa0\x96\x35\xb6\x14\x21\x2d\x6b\x2c\x32\xe2\x6d\xad\x31\x24\x09\x76\x59\x63\x9d\x12\xec\x72\x3d\x19\x27\xf1\x02\x3d\xf9\x2f\xec\x44\xb4\xda\x70\xfa\xc5\x50\x78\x27\xca\xff\x34\x34\xae\xa4\x94\xa3\x52\xf8\x13\x76\x74\xe6\x7f\x1e\xf7\x28\x65\x4a\x09\xca\x1c\xb1\xfd\x05\xbd\x58\x48\xcd\x8a\x13\x76\x4d\xdb\x5f\x38\x36\x27\x77\x4f\x0a\x9d\x8e\x4a\x61\x43\x37\xd8\xb2\x97\x91\x77\xcd\x8c\xc5\x90\x0a\x7b\xf9\xdc\x2d\x92\x09\x8d\x9e\x7c\x2a\xca\xa6\x27\x75\xda\xef\xf9\xa4\x20\xdf\xfc\x27\x92\x7f\x86\x07\x5c\xc0\xcb\xe5\x04\x9f\x5f\xc9\x57\xfd\x27\x0f\x65\xb5\x40\xe3\x21\xf5\x7e\xf6\x13\x52\xef\xe3\xc0\x58\xa4\xde\xc7\xd9\xb0\x26\x6e\x4f\xfe\xd6\xc4\xed\x59\x53\x8f\xdd\x9e\x35\xdf\xfa\xa6\xcf\xdd\x81\xec\xfa\x9d\xff\x3e\x17\xe7\x41\xea\xf5\x79\x40\xc1\xe6\x13\xe2\x07\x1a\xc1\x79\x75\xce\xd2\x69\xc6\xa0\x94\x63\x1c\x7c\xff\xbd\x2b\x20\x60\xea\x14\x35\xca\xfd\xe4\x55\x2b\xa3\x9c\x1c\xd3\x46\x97\x34\x00\xbb\xca\xca\x97\xba\x4d\x96\xfc\x61\xdf\x26\x0b\xd3\xdb\x00\x4e\x72\x40\x7d\x45\x5f\x94\x99\xe0\x64\xde\x2f\x69\xa1\xbd\xa9\x25\x2d\x34\xdd\x09\x5b\x9f\xc0\x9f\x37\xe9\xf8\xbe\xa2\x6f\xfd\xf9\x52\xb9\xf6\x7b\x6a\x71\x42\x94\x99\x72\xec\xde\x4d\xfb\x0f\x0d\xf6\x4f\x5e\x80\x9c\x58\x3b\x82\x72\xb6\x58\xaa\x16\x99\xc8\x59\x3c\x40\x39\x99\x91\xcb\x30\xf7\xf1\xfb\x52\x68\xeb\x27\x12\xc7\xe6\x44\x7c\xbb\x49\x1d\x51\x0e\x9e\x9b\x79\x67\x3c\x67\x01\x2c\xbe\x9c\x22\x7f\x5c\xa9\x55\x07\x27\x2e\xfe\xb5\x50\xf6\x99\x3b\xce\x90\xdf\x01\x42\x2f\xc1\x3b\x5b\x8e\x2e\xc3\x3b\x0b\xd8\xd3\x65\x78\x27\xe8\x80\x65\x2e\xd8\x02\x8e\x7b\x39\x25\x7e\xc1\xed\xbd\x0c\xea\x2c\xc0\xc5\xd7\x32\x03\x43\x2a\x85\x81\x81\x6b\x8f\x90\x9b\xad\xa5\x96\x6d\xb2\x03\x7a\xba\xb9\x8c\xd0\x7a\x41\xdb\x7b\xda\x07\x90\x33\x63\xe6\x8b\x5f\x6c\xde\x42\x72\xb6\xd1\xf2\x25\xc0\x66\x1a\x24\x6c\xfb\xfc\x2f\x76\x13\x67\xbc\xaf\xe5\x4a\x6b\xdf\xfa\x32\x95\xf0\x27\x18\x7a\xcd\xd7\x8a\x3f\x6b\x2d\x3b\x7e\xe2\x31\x21\x1d\xfe\xcd\x35\x6c\x69\x4a\xd6\xce\x9d\x56\xd8\xcf\x96\xe6\x3a\x3c\xb9\xa7\x1c\x39\x3b\x7b\x2a\xd9\x8e\x01\x8a\x28\x6e\x5d\xda\x63\xed\xef\x4e\x85\xca\x03\xc7\x21\xbe\x89\xf7\x43\xa5\xd8\x06\xe4\x71\x36\x6e\x00\x79\x91\x34\x2d\x98\xf2\xe2\x88\x9d\x30\x81\x2c\x25\xc5\x1f\x84\xbc\x2c\x61\x3d\x4b\xfd\x7d\xe7\x03\xb7\xe7\x55\xb9\x96\x98\x7a\x82\x77\x4e\x58\x42\x96\xd0\x9d\xdf\x91\xe3\x55\xe3\xa2\xd8\x82\x05\xe8\xac\x35\x75\x88\xaf\x18\xbc\xf0\x32\x9d\x6c\x65\xc6\x9a\x32\xf6\x41\x19\x10\x24\xf3\x89\xca\xba\xb3\x4f\xf2\x50\x66\xb6\x71\x73\xaa\x93\x5e\x7e\xa4\x3d\xda\xdf\xc6\x8d\x52\xb5\xe1\x01\xe1\xe7\x6c\xb8\x3d\x56\x44\x53\x63\x70\xf4\xec\x4c\x91\x54\xe4\x80\x55\x04\x5f\xee\x78\xe4\x1c\x42\x19\x11\x9d\xc9\x95\xab\xd4\xe6\x4c\x1e\x48\xc3\xed\xa1\x2f\x87\xe3\x2c\xe5\xb8\xa3\x0c\xc2\xf1\x75\xbf\xa4\x58\x07\x46\xa4\xdf\x36\x70\x8d\x15\xd1\x01\xb4\x12\x0e\xe8\xb8\x8e\x24\x2f\x3e\x2d\x17\x0e\xf3\x67\x6d\x76\x62\xf9\xf5\xfb\x4e\xc6\x2c\x66\x9d\xf3\xc8\xaf\x9e\x52\x96\x26\xc8\x83\xa4\x6b\x1e\xf6\x17\x67\x8d\x1f\xd9\x6f\x8e\x73\x03\x70\x64\x8b\x06\x75\xc2\x89\xb3\x84\xae\x2c\x33\x1f\x3a\xca\x2c\x26\x53\x43\x28\xe7\x5c\xf9\x52\x4a\x60\xcb\xbb\xc2\xc3\x8d\xd4\xf1\xa7\x41\x4e\xa9\x56\x44\xe8\xa2\x98\xc2\x6e\x96\xeb\xb1\x9b\x81\xcb\xeb\xf1\xf1\x57\x23\x29\xe8\x27\xad\x31\xc3\x51\xa9\x11\xc5\x0c\x96\xb1\x31\x78\x08\xc4\xd5\x12\xc0\xb2\xc5\x1d\x70\x6c\x88\x88\x81\x54\xf4\xa9\x37\x79\x22\xbe\xa2\xdc\x66\x29\x55\x21\x2c\x29\xd5\x99\x7c\x46\x24\xe1\x44\x38\x1e\xce\x01\x18\x8a\x24\xf6\x88\x11\xc9\x4b\x39\x6f\x8a\xda\x02\xd3\xca\x31\x25\x42\xfe\xb7\xf7\x9c\x0c\x9b\x73\xf7\xe4\xd7\xe8\xde\x12\x03\xa4\x51\x9b\xd7\xaf\x65\x32\x25\x30\xc3\x85\xd3\xbc\x17\x57\x8c\x3f\x67\xeb\xe1\x3b\xa1\x2d\xef\x45\xcb\xfe\x0c\x85\x60\x3b\xfa\x73\xda\xb5\x11\xc9\xf7\xb4\xbc\xa9\x7b\xda\xf8\x27\x3d\xec\xf7\x55\xa7\x64\x63\xf6\x09\x8b\x39\x00\x97\x2d\x41\x31\x47\xbc\x1e\x82\x62\x8e\x38\x1c\x04\xc5\x1c\x71\x0d\x89\xb9\x74\xc4\x05\xf2\x67\xe3\x04\x0e\x04\x41\x2a\x07\x40\xef\x65\x6e\xd2\x11\x43\xb4\x30\x95\x23\xca\x8e\x30\x95\x23\xde\x11\xf3\x8d\xf6\x5c\xaa\x04\xb1\x9c\x71\x26\x98\x6f\x74\xc4\xd2\x2c\x8c\xe5\x88\x9e\x26\x8c\x65\x89\x53\xf2\xcf\x59\x7e\x32\x54\x86\xec\x54\xfe\x94\x41\x94\xf0\x17\x2d\x91\x8a\xce\x9b\x3d\xc5\xe0\xc7\x2c\x3e\x81\x1f\x67\x36\x18\x83\x1f\xe3\x65\x14\xf8\xb1\xcc\x54\xe8\x4c\x0e\xa9\xd0\x39\x51\xf2\x17\x8f\x0f\x87\xbc\xa9\x9b\x21\xf3\xd2\x29\xe7\xef\x8c\x94\xee\xb7\xc1\x0b\x88\x28\x74\xc6\x5f\xfb\x67\x10\x02\x46\x83\x97\x4f\xaa\x78\x02\x5e\xf0\x5f\xa1\xfd\x08\xde\x38\xe1\xdf\x58\x2f\xc7\x25\x60\x2a\x12\x82\x71\x02\x96\x5f\x82\x2c\xce\x58\xeb\x84\x58\x9c\xb1\x76\x0b\xb1\x58\x2b\xfd\x15\x26\x71\x3d\x8c\x8c\x78\x40\xd7\xc3\xac\x11\x0f\xe8\x7a\x38\x36\x44\x03\xba\x1e\xda\x6d\xb8\xe2\x88\x93\xe2\xe5\xd3\x88\xb9\x20\xb4\xe2\x7a\xf8\xc1\x02\x2b\xd6\x78\xeb\x45\x02\x5a\x63\x27\x7a\xd9\x53\xca\x5e\xf3\x62\x57\xa2\x7a\xdd\x37\x73\xc1\x15\xab\x67\x0d\x56\x40\x20\xc6\x1a\xcb\x94\x48\x3d\x6b\x50\x05\x22\xf5\x5c\x4f\x3a\x28\x04\x40\x2e\x98\xc2\x37\xae\x87\x1f\x23\x78\x63\x8d\xbd\x5a\xe8\xc6\x1a\x8c\x81\xc0\x8d\x35\xe6\xd0\x97\x2f\xa6\x77\xea\xb3\x17\xb4\xe5\x55\x47\x14\xe7\xc7\x38\x35\x54\x94\xdf\x17\x81\xa7\x33\xa2\xfd\xf5\x6c\x92\x62\xe2\xac\xf1\xfb\x93\x2c\x3e\x46\x23\x33\x71\xb6\xcc\xe9\x17\xf4\xcc\x4f\x44\xdd\xcf\x32\x01\x0e\x6d\x4a\xb9\x22\xd5\x65\x3e\xbc\x31\xb0\xb3\xdf\xbf\x09\xe1\xe6\xda\x02\x13\x27\x68\x9b\xf5\x06\x54\x4b\xc1\x26\xe6\x04\xd4\xbd\x20\xe6\x04\x46\xb6\x84\x5a\x0c\xbd\xd1\x7a\x63\x8c\x7f\x52\x90\x2f\x73\x35\xef\xca\xcf\xc9\x9f\x17\x56\xf1\x69\x35\x0d\xf4\xdd\xad\xa6\x45\xf2\xd2\xd6\xd4\xf9\xf1\x43\xbe\x94\x79\xac\xe5\x55\xe9\xf5\x4f\x10\x06\x6f\x7c\x9e\xbf\x77\x75\xd7\x28\x69\x91\x83\xb2\xef\x15\xd1\x68\xd7\x34\x10\xa7\x67\x4d\x51\x56\x2e\xd2\x39\x13\x0c\x96\x34\xca\x04\x83\x85\x49\x07\x11\x27\x7b\xd1\x1b\xc7\xe6\x7f\x41\x9a\xbc\x39\x60\x29\xd6\x71\xaa\xfc\x62\xb8\x36\x03\xc3\x78\x73\xa2\xd2\x20\xbb\x27\x01\x51\xaf\xb7\xa3\x56\xf3\x4f\x1d\xb5\x9a\xdf\x84\xb6\xce\xee\xfc\xb6\xaf\x12\x95\xea\xed\xcb\x65\xe0\x0a\x50\x69\xc6\xa9\x2f\x80\x63\x8b\xff\xff\x6d\xd2\xc0\x80\x19\xcc\xa5\x79\x83\xdc\x5e\x42\x31\x7e\x45\x6a\x3d\x5c\xf4\xe8\x8c\x71\x5b\x30\xdd\x2c\x43\x17\x4b\x3c\xb1\xe2\xcb\x6c\x51\x97\xa0\xcb\x24\xbe\x79\xbd\xed\x9b\x64\x74\x3f\x78\x1f\xf9\xc7\x1f\x1b\x73\x89\xd7\x5a\x46\x28\x16\xa0\x6c\xeb\x63\xf7\x11\x7c\x67\xeb\x83\x35\xf7\x41\x3a\xae\x26\x22\x18\xe1\x7c\x2a\x1d\x65\x72\xc7\x31\x9c\xb0\x06\xd0\x20\x00\x61\x1b\x9c\x69\x66\xb5\xac\x71\x00\x18\x41\x58\x1f\xd6\x90\xf2\xd7\xb7\x55\x22\x6d\xf1\x9b\xa5\x58\x39\xcd\x22\x58\xa5\xa0\x01\xcb\xa4\x6f\x69\x9e\x82\x18\x7e\x35\x8a\x29\xe3\x29\x91\x74\x8d\x28\x08\x66\xca\xcb\x23\x03\x66\x69\xb6\xef\x8e\xb9\xc6\x7c\x38\x52\x07\x92\x0c\xfe\xdc\xb7\x84\xf4\xab\xf5\xce\x33\x6d\xd5\x4f\xaa\x50\xd0\x36\x5b\xc6\xc7\xe6\x8a\x40\x89\x3e\xa6\xf1\x03\xf9\xb8\x4c\x3c\x49\x3e\xad\xaf\x68\x2c\x17\xc2\xe3\x99\x99\x57\x95\xe9\x94\x03\x4f\xb8\xbf\xde\xf3\x63\x9d\x40\x74\xe6\x43\x45\x0f\x71\x95\x16\xec\xaf\x77\x2c\x17\x42\xfd\x75\xd0\xe5\xeb\x63\x0f\x54\x4d\x53\x05\x19\x25\xd6\x66\x1b\xcc\x67\x4e\xf7\xaf\x24\xac\xeb\xcc\x33\x81\x5b\xad\x0b\xec\xcb\xe0\x56\xb7\x7b\x5f\x86\x2e\x2d\x0f\xc7\xbe\x9c\x3e\xd4\xea\xe5\x16\x85\x64\xbc\x8e\xdb\x29\xed\xc1\x72\xef\xcb\x69\x40\x3d\xe0\x5b\x79\xec\x07\x7e\xa2\x6d\x48\xde\x4a\x29\xd9\xac\x1a\xe2\x9f\x45\x9a\x63\xdf\x50\x9a\x6a\xe2\x47\x8e\xe3\x2d\xe2\xc7\x82\xeb\x75\x5f\x46\x97\x4e\x3e\xb4\x27\xb1\x52\x2a\x6a\x1b\x4d\x45\x6d\xcb\x77\x32\x8c\x7b\x50\xb7\x80\x75\xf3\x57\xc3\x96\x99\x3c\x5d\x14\x96\x94\x5b\xd9\x16\xcc\x6e\xb0\xb5\x6f\x21\xe9\x06\xdb\xfe\x16\x92\x6e\xb0\xfe\xb6\x90\x74\x03\x63\xda\xbe\x8c\x2c\x9d\x69\xd9\x5b\x6f\xa6\x3e\x59\xfe\x2b\xdd\xf5\x6d\x32\x43\x7a\xdc\x23\xda\xa2\xfc\x77\xf8\x54\xb7\x90\x74\x83\xc3\x62\x5f\x4e\xd3\x98\xe1\x16\x04\x1b\xcf\xce\xbe\x1c\xc9\xf5\xef\x64\x39\xdf\x57\xa5\x95\xe6\x3f\x11\x04\xd3\xe9\xaf\x93\xd0\x3c\x77\x9e\x8a\xee\x02\x62\xb0\x6d\x0a\xc8\x86\x01\x76\xdf\x06\x8f\x52\xd2\x6d\x9a\x34\xec\xdf\x5b\x50\xba\x09\x78\x63\x1b\x3b\x37\x21\x58\xd8\xc2\xce\x4d\xa2\x22\xf6\x6d\x4b\x85\xf5\x93\x2d\x62\xc9\x09\x58\x63\x9b\x57\xb2\x11\x66\xbd\x05\xab\x9b\xa0\x3e\xb6\x50\x75\x13\x85\x73\xdf\xb6\x5b\x30\xa9\x6e\x7b\x2d\xbc\x6b\xed\xdb\xcc\x28\xb0\x60\x6c\x81\xec\x26\xda\xff\x06\x64\x07\x1b\xd3\x36\xe5\x64\x83\x9a\x6d\x8b\x46\x72\x8e\x9e\x82\xbc\xad\xe4\x4b\x6d\x6a\x2c\xab\xdb\x88\xd0\x4e\xe3\xbc\xa9\x0d\x06\x00\x8e\xbd\x45\x3f\xc4\x56\x05\xb8\x75\xdf\x86\x76\x0e\x5a\xbe\xa5\x0d\x77\xaa\x70\xde\xb8\x91\xef\x7c\x2d\x8e\x24\x4d\x39\x7f\xc7\xd7\xd0\x8c\x94\xd0\x6d\x35\x63\x63\xf4\xe6\x88\x24\xd7\x48\x3a\x28\xef\xc0\xc3\xec\x34\x20\xad\x73\x9f\xdf\xb7\xdd\x03\x35\x92\xf4\xca\x87\x2a\xd0\xda\x7a\xbe\x94\x47\xc0\x6a\xda\x16\x1c\x6d\x3d\xac\x00\xc3\xd1\x1e\xdc\xf5\x5b\xf8\xb3\xf5\x30\x79\xc5\xe3\xb8\x1e\x7e\x95\xf0\x66\xeb\xe1\xff\x1b\x6e\x16\xce\x8a\x2d\x22\xc7\x8a\x51\x69\x0b\x6e\x56\xf1\x37\x6d\xa3\xcd\xc2\xc5\xb1\xc5\xe3\x58\x71\xd5\x6c\xf1\x38\xae\x27\xcf\x94\xd6\x05\xcb\xc3\x16\x71\x63\x1d\x8d\x1a\x7d\x8d\x60\xab\x28\xbe\x46\x14\xda\xed\x6b\x44\x4d\x29\x1e\x38\x3a\xec\x7b\x43\x89\xc4\xd8\xa4\x18\x6b\xb4\x1e\x38\x23\xc9\x2e\x00\x83\x5b\x48\xb2\xf5\x94\x3c\xb4\x42\xcb\xdf\x31\xae\xec\x4e\x39\xa6\xb9\xe1\xf2\xbf\x8d\x2b\xbb\x80\x3b\xee\x62\x83\x7e\xa7\x5b\x36\xe8\x5f\x3f\x51\xbe\x14\x66\xa7\xd1\x62\x17\xb8\xc3\x6d\xb4\xd8\x75\xfd\x9e\x5a\x59\x67\x66\x19\x3c\x76\x5d\xbf\xe6\x5b\x21\x4b\xc7\xed\xdb\x62\x53\x30\x78\x6c\x60\x2f\xdf\x05\xe4\x64\x7e\xbc\xd3\x5e\x30\x63\x0c\x25\xbb\x80\x93\x6e\x63\xc7\xda\x93\xce\xe9\xb2\x31\x60\x02\xdd\xb0\x3d\x3e\x69\x84\x6d\x69\x4f\x4a\xb2\xd1\xf0\x49\x93\xa4\x9f\x3f\x8c\xaf\x61\x93\xcc\x84\xea\xfc\x2e\xd4\x29\xb8\xd7\xd3\x68\x6d\x35\xc4\x17\xdb\xf9\xae\xb9\x12\xe4\x5d\x5f\x09\x98\x28\x02\x7f\x3d\x8d\x2a\x2b\x17\x84\x85\x64\xef\x0e\x83\x52\xb9\x21\x3c\xf9\xd2\xde\x1d\xeb\xb0\xbb\x72\x45\x78\xfe\xc3\xee\x2d\xdc\xd8\xd3\xf2\xa5\x7d\x57\xf0\x91\xee\x6a\x90\x3c\x20\xa0\x6d\x50\xd9\xc0\xba\xbf\xab\x7d\x59\x70\xa9\xee\xea\x14\x45\x69\xe1\xa2\xe7\x74\x55\xc7\x77\xc7\xb2\xbc\x85\x1b\x7b\x30\x2c\xec\xca\xdd\xe2\x57\x90\x2f\x13\xe9\x9c\xd9\xca\x4b\xda\x64\x42\xf2\x92\x16\x3b\x7b\x0b\x37\x86\x5d\x89\xe7\xcb\xbf\xb1\x49\x8e\xa3\xb1\x3a\xba\x6f\xa4\x20\xdf\x77\x32\xde\x44\xf7\xa5\xfd\xa2\x69\xc2\xbc\xb1\x2b\xfe\x29\x16\xb8\x40\x62\xf7\xb3\x7e\x4f\xad\xfe\xf1\xe5\x71\xa0\x0d\x53\x1f\xcc\x58\x4b\x03\xb9\x50\xb0\x8f\x3a\x47\xfc\x8d\xa1\x6a\x57\xb3\xe2\x34\x5a\x0f\x5f\xee\x4d\x83\x15\xec\x77\x67\xb6\x1c\xdb\x17\x4b\xaa\xd1\x6d\xa8\x45\x7a\xb9\xd8\x7c\xf9\xf6\xbb\x29\xf7\xe3\xa7\x9e\x5b\x4a\x30\xdf\xb8\x3a\x6f\x27\x98\xbf\x87\x2d\x06\xfb\x31\x1a\x04\xef\xee\x36\xfe\xec\xc6\x15\xbb\x9d\x53\xbe\x83\x96\xde\xca\x1b\x7f\x17\xac\x9c\xdb\xc9\xe1\x4b\x96\xae\xf0\x67\x0d\x5c\xfa\x7e\x70\x57\x3d\x11\x8d\xa9\xe4\xb7\x2a\x07\xfc\x57\xa4\x60\xf8\xc2\x57\x5e\x5e\xba\xb7\xe4\xa1\x61\x92\x8b\x36\xc1\x09\xbe\x68\x84\x66\x53\x21\xd2\x69\x1b\x56\x56\x1e\xf4\xc8\x07\x46\x06\xbb\xd5\xf7\xe3\xbb\x82\x73\x90\x7e\xc5\xc7\xe2\x40\x6c\x16\x29\x59\xa8\x5b\xc2\xfb\xb6\x19\x22\xc9\x9a\xfb\x15\xb7\x1e\x32\xc4\x22\xb4\xef\x1c\xc8\x82\xa1\x35\xc0\x88\xdb\x30\xb4\x0a\xbc\x7b\x3b\x8f\xfb\xc0\x6c\xbf\x05\x44\xfb\x3e\xa5\x81\x9a\x4d\x15\xe0\xf8\x76\xf2\xf6\x59\xd2\x22\xf3\xe7\x01\xec\xdc\x0f\xd7\x09\xf6\x10\xc3\xd6\x6a\x49\x6f\xcc\x71\x0f\xdc\x7b\x3b\x67\x7b\x85\x50\x75\x3b\x69\x7b\xc5\x84\xb9\xcd\x28\x99\x5f\x77\xa0\xdb\xc9\x33\x5b\xf3\x5b\x6a\x15\x19\x44\x4b\xa5\xbe\x61\xa4\x12\xb9\x41\x50\x47\x9d\xb6\x1d\x44\xf1\x6e\x76\x34\xfc\x24\x5d\x37\x50\xd3\x8d\x69\x73\xae\x97\xaf\x24\x03\xf2\xef\x99\x0c\xd6\x28\xca\xcd\x06\x64\xd4\xf4\x66\x03\xf2\xef\x3b\x19\xac\x7f\x6f\x0a\xf7\xf9\x7b\x53\x2a\x35\x9b\x81\xe8\x23\x0b\x30\xac\xdd\x6c\x30\x66\x6a\x36\x1b\x8c\x99\x99\xcd\x06\x63\x66\xb1\x80\x6f\x23\xbb\x7f\x73\xde\x6c\x5f\xfc\xb6\xb8\x24\x0b\x98\x81\x2d\x2e\xc9\x02\xf8\x61\x37\xc7\x91\x02\x35\xd9\xcd\xa9\x1e\xf0\x9b\x6e\x30\x72\x6b\xfc\x7b\x3b\x07\x40\xc7\xd6\x29\x00\xdd\xc8\x41\x05\x80\x6e\xa5\xe1\xc2\x12\xad\x34\x5c\x77\x24\x96\x41\xf3\x1d\x89\x05\x25\xde\xc9\x99\xd3\xb9\x39\x00\x6f\xa1\x79\x1b\x5c\x87\xff\x77\x1b\x5c\x97\xf3\xc2\xc9\xed\xe7\xcc\x87\x43\xcf\xf2\x9d\xcc\xc7\xf9\x33\x0a\x29\xc2\x75\xbd\x85\xad\x2b\x33\x7f\x06\x55\x93\xb1\xf0\x76\x1a\xed\xa0\x39\x52\x88\x8d\xb8\xf9\x32\xcd\xb1\x22\xfa\xc8\x09\xe9\xfd\x6e\x68\xa5\x8c\xb0\x31\x2b\x6c\xb4\x22\x80\x5c\x4f\xcd\x77\x32\x6f\xd6\x54\x68\xa7\x3b\x37\x98\x86\x52\xea\xea\x3b\x26\x6a\x0e\xf4\x6e\x9c\x0a\xeb\x42\x64\x90\xeb\xe1\xb6\x05\xca\x0e\x14\xe0\x36\xc1\xe3\xc8\x06\x67\x82\xc7\xe1\xac\x68\x5f\xd1\xaa\xd6\xc8\xb7\x32\x6e\xa2\x3d\x05\x20\x87\x0a\x0f\x49\x23\x9e\xe9\xdd\x1d\x57\x9f\x1b\x76\x87\x14\x67\xe4\xa9\x35\x24\x56\x72\x07\x7f\xc2\x85\xa3\x83\x3f\xe1\x1a\x11\x12\xc7\x91\x7a\xd1\xff\x52\x2f\x1c\xe8\x29\xca\xe8\x94\x96\x6f\xad\x40\xa1\x0f\xc2\xe2\x98\x2d\xc3\x58\xbd\x81\xc5\x64\x8b\xb6\xf1\x7e\xb0\x74\x6c\x78\x1b\x7b\x06\x99\x08\x7e\x7e\x56\x27\x82\xbf\xe5\x65\x87\x79\xfc\x9e\x0a\x6c\x1a\x1d\xa5\x3b\x77\x4f\x86\xca\xf6\xc4\xdf\x97\xb6\x27\x96\x88\xcb\x6d\x4a\x41\x3e\x50\x69\x3f\xe6\x45\xb6\xc3\x8e\xff\x2e\xff\xdd\xfe\x3b\xcc\x8d\x5b\xf9\xe9\x5b\xcd\x90\x1f\xe3\x1c\x58\xea\x42\x14\xb6\xd8\x03\x7a\xac\x41\x34\x50\xf6\x45\xa8\xc4\xb6\xd1\x86\x15\x72\x82\x2d\x7c\xe1\x77\x87\x8e\x38\x2c\x52\xa9\xcc\x43\xd1\xb0\x9d\x86\x3e\x7a\xa7\x50\x84\x75\xfc\xde\xb4\x07\x04\xc1\x29\x1b\xfc\xe2\x20\x63\x43\x41\x72\xc2\x86\x1b\xc9\x71\x1a\x5c\x32\x86\xe9\xf1\xd9\xdc\x06\xd3\x99\x2a\x8c\x14\x04\xd3\xb0\xc5\xd6\x78\x77\x7e\x89\xd9\x1a\x17\x3c\x10\xdb\x6c\x8d\xf0\x86\xee\x01\xc5\xf9\x93\x72\x5e\xda\xa3\x53\x89\x2c\x49\x2b\xad\x93\x25\x89\x3d\x5a\xa0\xc2\x7b\xe1\xc7\xda\x26\x6b\x1c\xb9\x20\x89\xac\x31\x28\xdf\x2d\xb2\xc6\x71\xa5\x4a\xf1\x98\x67\x1a\x0f\x6f\x99\x4c\x82\x61\x27\x1f\xb3\x56\x58\xc1\xd1\x5a\xde\xfc\xe8\x3b\x4a\x11\x55\x79\xe3\x26\x6b\x6a\xc6\x06\xe5\xf9\x16\x02\xb0\xd4\xf5\xef\x5c\x0b\xdb\x79\xe4\x81\xd6\x6d\x27\x87\x07\x92\xb7\x05\x0f\x2c\xe0\xcc\xb6\x92\xc3\x97\x98\x47\x86\x0d\x4b\x2d\x6f\xba\xdd\x69\x9b\xdb\xcd\x77\x66\xe0\x8d\x92\x36\x1c\x7e\x13\x45\x5d\x40\xbf\x79\xe7\xcf\xe9\xd8\xcf\x62\x22\x41\x3b\xe7\xa7\x21\x7a\xb5\x44\xf2\x46\xbc\x90\xb4\x11\x63\x3a\x99\x76\xd5\xb1\xd7\x8b\x48\xb1\x56\x14\xca\xe9\xb4\xc4\x80\x26\xb6\xf0\x7a\xb5\xa2\xd4\x4e\xfb\xf1\x30\x08\x09\x9f\x57\x6b\x49\x31\x32\xa3\xcc\xbc\x29\x33\x4a\x49\x85\x4e\x58\xc1\x95\x17\x7c\x1e\xff\x46\xf8\xbc\xf5\x70\x46\x4f\xbb\xfc\x18\x0c\x81\xf5\xd6\xf3\xe4\x3b\x81\x25\xb9\x5c\x4e\xdf\xdc\xd9\xb0\x45\xa0\xb8\x1e\x8e\xa1\xe9\x00\xc8\x96\x1a\x64\xe3\x60\x73\x98\xf6\xf1\xb5\x48\xb2\x22\xf4\xd4\xa7\xd3\x84\x33\xc1\xf9\xde\x31\x69\x6f\x11\x2b\xae\x07\xad\xc3\x54\x89\x57\x94\x17\xc0\x75\xd1\x5e\x9c\x9c\x7d\xe6\x38\x9d\xdc\xbe\x33\x70\x9b\xd8\x51\x9a\xb7\x6d\x02\xfe\x95\x2c\xc2\xc2\x8c\x15\xee\xbb\x94\x64\x06\xda\xd8\x64\xa7\x33\x50\xa2\xf2\x1a\x79\xb7\xf0\x24\xef\xa9\xbc\xab\x99\x74\x93\xb8\xc4\x8c\x89\xe3\x12\x41\x3c\x6c\xa1\xeb\x9e\x4c\xd7\xc9\xf5\x3a\xc5\xbe\xf4\x8c\xc6\x5b\x81\x2c\x69\x9f\x91\xec\xfc\xa1\xe5\x18\x45\xfe\xac\x81\x76\x0f\x74\xdd\xdb\x14\x8a\x49\x30\xb2\x97\x63\x71\x89\x36\xd9\x82\xe1\x3d\x51\x4e\x80\xe1\x15\x8e\x06\x73\x2a\xde\x85\x85\xaf\x34\xee\x77\x28\xa1\xf7\x02\x37\x3a\x23\x1e\x95\x94\x6a\x74\x71\x64\xfc\x8c\xac\xbb\x47\xbe\x34\x4d\x2c\x71\x0a\x5b\xd0\xba\x16\xd3\xc1\x32\x69\x2c\xbe\xe1\x6d\x2c\xdd\x8d\x23\x77\xaf\xc5\x09\x94\x97\xff\x2c\xd2\x9b\x65\xa2\xd3\x8c\x84\x78\x63\x63\x12\x16\x5e\xee\x0e\x71\xf3\x36\x24\x2e\x36\x68\x65\x30\x6f\xb1\x09\x0b\xd7\x76\x97\x89\xb6\x03\x67\x61\xce\x11\x67\x26\x47\x1d\x10\x70\xad\xc7\xf4\xe2\x34\xe5\x90\xe7\xef\x65\x5f\xc5\x4a\x29\xde\xff\xa9\xc2\x06\xc1\x9a\x52\xe4\xab\x58\x29\xe5\xe5\x96\x32\xee\x66\xe9\x58\x29\x54\x11\x28\x6c\xff\xc2\xb1\x25\x84\x60\x6f\x23\x4c\x7e\x92\xa9\xf3\x51\x83\x85\x63\x2b\xc0\x8e\xb7\x28\x0c\x07\x31\x04\x5b\x14\x86\xa3\xf1\xdf\x45\x61\x38\x5a\x4f\x15\x3e\x19\xfe\xcd\x44\xb5\xb7\xd1\x4e\xcc\x2d\xc0\x71\x3d\xd5\x0b\x7d\xc1\x78\x6f\xdb\x91\xd9\x7e\xb6\x51\x9a\x20\xe7\xf6\x36\x12\x0a\x3d\xc8\x84\x86\x73\x95\x88\x52\xae\x51\x0e\x04\x87\x2b\xa4\x40\xda\xc0\xe1\x4a\x8a\x19\x92\xf2\xcc\x7b\x6a\x4a\x91\x6d\x98\xd9\xea\x24\xe9\xb0\xb5\xee\xed\x2d\x87\x15\xec\xd4\xe7\x39\xc3\x76\x76\x1c\x8a\xb1\xf5\x6f\xe4\xa1\x62\xa8\xd1\x0c\x85\x7c\x7b\x72\x4e\x6e\xa7\xf4\xe4\x44\x15\xf4\xed\x7e\x7e\xa3\x01\x96\x97\x3d\xcf\x2c\x83\x57\xff\x89\x86\x22\xe7\x7f\xd8\xbc\xd7\x33\xae\x80\x79\xd9\x61\xb6\xfd\xad\x25\xff\xc0\xfe\xd6\xf2\x7b\x99\x15\x9d\x7a\x65\x80\x62\x37\x35\x72\x2e\x84\x8f\x5b\xa9\xcc\xbf\x67\x52\x0a\xb6\xf5\xa4\xa6\x07\xb6\xf6\xf8\xa1\x92\x8b\x37\x42\xb1\xb6\x21\x70\x2d\x46\xe2\xe3\x18\xfe\x5c\x48\x8e\xc3\x65\xf8\x65\xc7\x54\x72\x11\x4c\x14\xc9\x56\x2a\xbe\xc1\x04\xaf\xec\x83\x3f\x01\xdd\x4e\x34\x82\xa3\x71\x84\x08\x03\x57\xc0\x0b\x6e\xa7\xfb\x4e\x84\xfa\x76\xba\xef\x09\x5e\x6e\x1f\xf3\x4f\x10\x71\xb6\x9d\xef\x3b\xb1\x85\x5b\x34\x83\x95\xb8\x9b\x7d\x74\x18\x11\x4f\xb4\x4d\x3a\xf8\x33\x12\x1d\x87\x34\xb0\x53\x1d\x87\x34\x30\x33\x84\x91\xab\x95\x2d\xee\x38\xc0\x61\xe6\x3b\xd1\x0e\x3f\xbf\x87\xcb\x70\x85\x3c\xa5\xf1\x29\x48\xc7\x28\x13\xe7\x38\xf4\x1e\x65\xf4\x00\x3a\x99\x29\x48\xe6\xf0\xfc\x05\x61\x68\x7f\xbd\x74\xc8\xf0\xcc\x18\xf8\x5c\xc2\xe0\x46\x06\xf0\xf4\x99\xcd\x28\xc5\xe8\xd8\xfc\xfd\x05\xed\x4d\xeb\x27\xd9\xc7\xd8\x23\x7a\x6f\x72\xa9\x7f\x0e\xa9\xe1\xd9\x9f\x37\x1c\x0e\x30\xe5\xf1\x2e\x40\x0f\xb7\xd1\x6f\x8d\x85\xf3\xe7\x5d\x84\x6e\x18\xfd\xd6\x58\x62\x46\xbf\x25\x76\x61\x83\x70\x8b\xe5\x47\x99\xba\x47\x63\x74\xfe\x6c\xcc\x60\x53\x01\xfd\x86\x4d\x5f\xe8\xb7\x02\x8e\x69\x83\x7e\x63\xa8\x40\xbf\x31\xcf\xfe\x8c\x0a\x8f\x59\xd6\xdc\x83\x39\x61\xe0\x1e\x5c\xf9\x50\x7a\x62\x4b\x85\xd2\x13\xd9\xfd\xcd\x3d\x18\xb3\xa5\x80\x72\x65\x66\xa0\x20\xc1\x62\x06\xfe\x39\x2c\x18\x35\xdd\xc4\x84\x99\x0d\x26\x26\xcc\xb2\xfb\xb3\xa1\x21\x4d\x33\x86\x8e\x49\x2f\x0c\x5d\x99\xab\xfc\x7b\xdb\xfe\x73\xc2\xb4\x78\xd1\xfe\x30\x4a\x44\xf2\xa9\xcf\xe6\x28\x12\xc3\xf9\x1b\x7f\x5b\x2c\x98\x9c\xa2\x30\x2c\xe0\x50\x37\xe0\xbb\x96\xe6\xb8\xc7\xe9\xa2\x0e\x03\xd6\x91\x19\x0b\x7f\xdd\x97\x1b\xed\x57\x9f\x4c\x1b\xb9\xac\x02\xda\x43\x45\x02\xb4\xc7\x36\x03\x68\x8f\xd3\xee\xcf\x1a\x3c\xdb\xe0\x5f\x72\x5a\xa5\x18\x35\x1b\x33\x97\x10\x76\x93\xf8\xf8\xfd\xb2\x37\x16\xc2\x9c\x6d\xbc\x5d\x5b\xcc\x14\xf0\x76\x33\x92\xf0\x76\x74\xea\xa5\x6c\x2f\x24\xad\xda\x2f\x71\xf9\x0c\xfe\xa2\xa8\x06\x27\x4c\xb5\x5b\x4c\x83\xb5\xa2\x0e\x81\xd3\x63\x43\x7c\x59\xbf\xaf\xf9\x4e\xfa\xfd\xca\x9b\xd2\xef\x6b\xde\xd4\x0d\x76\xa5\x17\xf2\x4c\x72\x2e\x8a\x74\xb0\xc2\xeb\xb3\x45\x3a\x58\x21\x48\xde\xc2\xf7\xd5\x58\xab\x85\xef\xab\xa4\x81\xd9\xce\xf3\x9d\x40\x9d\xfd\xf2\x81\x8a\xf2\x25\x80\xdf\x04\xe8\xbd\x5f\xe8\xe9\x34\xd4\xde\xb6\x9e\x67\xb6\xc8\x62\x79\x7f\xf9\x0c\x65\xed\x2b\xfb\xf6\x02\x07\xb3\x05\xdb\x5b\x64\xb7\xda\x82\xed\x2d\x62\xd9\xb7\x60\x7b\x35\xfe\x55\x80\x7a\x2d\x15\xfa\x78\xc2\x42\x0f\x1a\xaf\x45\xf2\xfd\x82\xc1\x90\x36\x1f\xe4\xdb\x16\x29\xe1\x7a\x38\x39\x44\x4a\xb8\xc8\x1f\xb6\x05\xd4\x5b\xf1\x86\x39\xb9\x36\xf9\x3a\xb6\x28\x09\x57\x2c\x0d\x62\x24\x7c\xee\x91\x32\xd5\xee\x1e\x49\xed\xfe\x49\x53\xcf\xe8\xef\xe1\x30\x72\x31\x00\xed\xe2\x18\x06\x59\x87\xde\x0c\xb2\x8e\xd8\x96\x6d\x64\x1d\xf9\x4e\x36\xc8\xba\x5c\xfd\xdf\xa8\xe3\x2b\x4f\x15\xc6\x35\x52\xac\x3d\x8f\x2b\x95\xda\xf3\x88\x31\xe6\x6d\xc7\x19\x41\x32\x5b\xd8\xba\xe7\xe6\xda\x44\x8e\xeb\xa8\x9f\x6f\xe2\xba\x58\x2d\x4e\x79\xfd\xf3\x7f\xbe\x9d\x0d\x85\xfb\xaf\x80\x77\x0f\x21\xbe\x9b\x0c\xd7\x39\x48\x9c\xe1\x9a\x28\xca\x6d\x14\xde\x45\xec\xc8\x36\x0a\xef\x22\x3e\x62\x1b\x76\x77\x11\x27\xb5\x0d\xbb\xbb\x62\xba\x10\xec\xee\x21\x3c\x68\x1b\x75\x17\xe5\xd5\xe9\xaf\x89\x4f\xde\x4e\x7f\x1d\x7c\xe4\x76\xfa\xeb\x9e\xed\xe4\x6d\x2f\x30\x30\xcc\xed\xc4\xd4\x17\xd1\x37\x5b\xe8\xb9\xa7\xfd\x3e\xf5\xdd\x9a\x25\x65\x30\xdd\x15\x2f\x88\x13\x51\x47\x9d\x36\x7a\x6e\xac\x54\xa3\x58\xac\x68\xde\x86\xcb\x5d\x71\x8a\x18\x1f\x77\xf5\xfe\x1f\x9c\x96\x22\x01\x7c\x08\x7d\xd9\x6f\x6e\x9a\xcc\xf9\x37\xa1\xcf\xcc\xba\x8f\x23\x09\x59\x81\xce\x26\x1d\xcd\x5c\xe8\xb8\xd0\x71\x6d\x83\xe3\x56\x50\x24\x1f\xe7\x18\x61\x1b\x33\x29\xdf\x15\xa7\x8d\xb1\x72\x17\x54\x8b\xfb\x63\xfc\x26\x0b\xeb\x83\x3b\xf6\x57\xa7\x0f\x39\xf6\x75\x23\xe7\x7e\x5e\x75\x32\x40\xc7\xca\xf6\x01\xb2\xc9\xd8\x7f\x7c\x27\x24\x99\xd9\xfe\x38\x91\xc8\x8c\x64\x97\x25\x63\x2f\xec\xdc\x93\x63\x97\x14\xd0\xb9\x91\x91\x02\xba\x64\x54\x70\xaa\xf6\xb4\xc9\x01\x77\xcc\xc9\x8f\xd3\x8e\xe4\x5d\x27\x52\x67\xce\x91\x1f\x3a\x16\x43\xf2\x43\x97\x74\xdd\x89\xd4\x39\x25\x3e\x78\x63\x33\x10\x36\xc6\xae\xbc\x8a\x82\x4e\x03\x6d\x8d\x25\xd0\x61\x0b\x8a\xf7\x4c\xd6\xf4\x07\xe7\xec\x88\x68\x87\xf1\x48\x03\xcd\xf4\xc9\x7d\x87\xd4\xce\xa0\xaa\xf7\x07\x17\x2b\x87\x2c\x99\x9e\xa3\xa2\x7f\xec\x54\x4d\xf3\x7d\x4b\x08\x90\xc3\xe4\x7a\xc1\x0e\x6e\xa1\xec\xee\x9f\xa9\xc4\xec\x7a\x77\x6e\x99\xce\xf4\x1c\xe6\x89\xfd\xc1\x05\xdb\xf2\x54\xa9\x52\x32\xde\x78\x60\xbd\x88\x8e\x13\x3f\xdf\x20\xb8\x8f\x13\x3f\xdf\xc0\x62\xce\x85\x47\xd6\x8a\xd0\x71\x1e\xe8\x1b\xcc\xca\xb9\xf0\xc8\xd6\x3c\xb5\x85\xc1\x93\xed\x88\x57\xaf\x31\xd7\xce\xe5\x2c\xe7\x00\x5c\x8e\x33\x3f\xdf\xe0\xe4\xcf\x35\xe9\xcf\x83\x28\x08\x6d\x8f\x24\x08\xad\x17\xce\x71\x5a\xe8\x1b\xfc\xe3\xb9\x4c\x25\x02\x3e\xfc\x5c\xe6\x65\xc2\x0f\x72\xc4\xbc\xf7\x70\xed\x39\x26\xde\x9b\x90\x92\x9c\x0b\x76\xc9\x49\xc1\xc4\x13\xa6\xf9\xda\xfe\x06\x91\x52\x87\x74\xcf\xe8\x60\xe7\xb2\x6b\xf7\x4e\xfb\x95\x81\x17\x84\xde\xb9\xb0\x88\x34\x44\x47\x1b\xa2\xb0\x1d\xe1\xfe\x1a\x28\xc0\x73\x39\x4f\x04\xbf\xee\x08\xf8\xd7\xb8\x95\x9c\xcb\x5e\xdf\xdf\x18\x12\x12\xd6\xe8\x8e\xf9\x94\x26\xed\x35\x2f\x3f\x8a\xf0\x21\x35\x34\x3a\xc5\x11\xf8\xaf\xc1\xb6\x76\x04\xfe\x6b\x35\x1d\xb7\x47\x01\x4e\x93\x73\xe1\x51\xc8\x10\xda\x87\xf0\x1b\x7e\x27\x7f\x86\x92\xf3\x5c\xe4\x02\xcc\x28\x69\x4a\xe3\xf5\x3b\x97\x49\x81\x9f\x7c\xb9\x5c\x4d\xc4\x63\x31\xef\xd2\x08\xba\x6a\x86\x24\x7e\xb2\x28\xf1\x1a\x9e\xce\x63\xe8\x5e\xcf\xd8\x0b\xba\x97\xac\x62\xc7\xd0\xbd\x5c\xd6\x8e\x59\xf0\xca\xbc\xff\x1d\x67\x79\x0c\xec\x2b\xd3\x9b\xf0\x31\x29\x5e\x99\x77\x0a\xb6\x93\xfd\x4e\x23\xb6\xc5\x34\xc2\x7e\xf5\x3c\x7c\x49\xe2\x99\x92\xe3\x60\xcb\x3d\x86\xef\x75\xc2\x07\x8f\x01\x7b\x15\xca\x9d\x63\xc0\x5e\x85\xd7\xed\x98\x08\xaf\xe3\xb9\x3c\x37\x04\x49\x77\x8a\x32\x23\xd2\x9d\x97\xb7\x45\x1a\x6c\x4a\xa4\x92\x06\x6b\x02\xd7\xf2\xab\xd7\x08\xb3\x9e\x92\x3f\xff\xf7\xff\x1a\x79\x38\x8e\xd0\x7f\x8d\x6c\x1e\xc7\x49\xa1\xd9\x58\x8f\x93\x42\x73\x36\x1d\x91\xdf\x35\x36\xfe\x43\x4e\x68\x68\x53\x8e\xa9\xf0\x2a\xbc\x29\xe7\xde\xf8\xf5\x19\x16\x07\xc4\xa2\xf6\x1d\xb3\xdf\xd5\x96\xae\x0a\xa8\x00\x33\xc6\xb9\x37\xad\x4d\xad\x4a\x78\xdd\x22\x7d\x9c\x89\x9a\x5a\x4d\x9c\x04\x57\xf6\x11\xdf\x5d\xe3\xee\x7c\xa0\xbb\xcb\x10\x39\x1e\xf6\xca\x8f\x72\x6c\xda\x62\x38\x1d\x71\xb6\xa8\x04\x0d\xb2\x30\x42\x66\x70\x44\x93\x3a\x37\x17\xf4\x94\xe3\x74\x0e\xe9\xb7\xc8\x32\xd0\xb2\x4e\xb1\xa5\x18\x83\xc1\x29\xbe\xaf\x33\x71\x8a\xef\xeb\xd6\x02\x4f\x81\x4e\x87\x41\x28\xbe\xb0\x5b\xe5\x3a\x82\x0f\x16\xd0\xad\xa7\x70\x61\xef\x48\xf2\x24\x8d\x7c\x27\x8f\x8c\xf5\xc3\xe3\x9c\xd0\xed\xce\xab\x06\x18\x30\x76\xc5\x46\xc0\x95\x67\xba\xea\xb1\xfb\x14\x5b\xfd\x18\x0f\xc1\x07\x27\x87\xca\x11\xa5\x5d\x99\x8b\x0a\x7d\x5d\x67\xc2\x17\xe3\xa5\x89\x99\x3f\xc5\x38\xd3\xdf\xab\xba\x40\x31\xef\x8a\x79\x2e\xd8\x5b\x8a\x51\xa7\x69\x8c\x2f\xe1\x3e\x2d\x4f\xb1\xa5\x87\xfd\xc1\x59\x9f\xa3\xf4\x1e\x67\x7d\x7e\xae\x34\xc0\x00\xd5\x34\x7c\x3b\x95\x7a\x4f\x25\x0c\x47\x9e\x0a\x5b\x39\xe8\xb2\xc9\x2d\xd8\x4b\x8a\xaf\x29\xcc\xc1\x62\x72\x8b\xfc\x46\x5f\x53\x52\xe8\x51\x54\xd4\xa0\xad\xe6\xea\x87\x16\xe0\x08\xfc\xf7\x90\x7a\xee\x98\x28\xee\x22\x26\xf8\x00\xfe\x23\x9a\xed\x38\xd5\xf3\x45\xe0\xd1\x11\x35\xdc\x57\xf4\xe0\x99\xfd\x2d\xc9\x4f\x8e\xd9\xdf\x26\x09\xad\x4f\x85\x0a\x91\x16\x1a\x0f\x18\xdd\xff\x04\x0f\x38\xf2\xad\x0d\x0e\xcc\x0a\xf0\x80\x1c\xc0\x15\x8d\x93\x49\x12\x40\xe0\xc8\x53\xaf\xcd\x5f\x49\xb6\x39\x58\x80\x17\x91\xd1\x35\x8a\xaf\x11\x88\x72\x6a\xf4\xcf\xbc\x6c\xad\x8c\xd9\x2f\xbe\xb7\x96\x8d\x5c\xb0\xbd\x5b\x89\x57\xfe\xb9\x91\x8b\xfd\xed\xb7\xb5\x09\xd3\xd7\xb2\xde\x04\xe9\xfb\x6d\x24\xd5\x29\xef\xf8\xdd\x15\xdd\x93\x31\x10\x0f\x40\x4e\xb6\x9a\x29\xc6\x87\x9c\xbd\x54\x81\x3b\xbf\x45\xdc\x3e\xcb\x18\xaf\x9c\xaf\x8c\x97\xd3\xe0\xd4\x5f\xa5\xb8\x3d\xa8\xc7\x28\x2b\x6e\xaa\xc7\x98\xbd\x4a\x9a\x89\x63\xcc\x5e\xae\x89\xa7\xe2\xa5\xe7\x10\xaa\x49\xcc\xcb\x90\x1d\x52\x9c\xd1\x64\x3b\xed\xc9\xd2\x78\x4c\x19\x77\xfd\x3e\x5d\xc6\x55\x45\x74\x78\x79\x6a\x75\xc2\xf1\xfc\x61\xa1\xac\x48\xe3\x7a\x2a\x28\x2b\x37\xdf\x0c\x72\xa4\xc2\x3d\x82\xf7\x8d\x4c\x66\xc3\xfb\x40\xef\x9c\x47\x21\x1e\xdc\xfb\x8e\xb0\x7e\x85\x2c\xc6\xc7\x50\xbf\xc5\x8a\x15\xd2\xaf\x40\x2f\x78\xc4\x3b\x57\x2e\x76\x53\xd1\xce\x0d\x2e\xf2\x47\x20\xc0\x72\xa1\x43\x3c\x0a\xfc\x26\xfa\xf1\x88\x91\xae\x10\x36\x79\x1e\xef\x90\x2b\xa5\xbc\xbe\xcf\x4a\x6a\x97\x41\x73\xe6\x3b\x19\x34\x39\xe1\x04\x1d\x2c\xc4\x57\x9e\xc7\x9b\x27\x5a\xd5\x63\x83\x26\x53\xff\xb1\x41\x93\x19\x22\x4e\xbb\x42\x40\xe7\x11\xa5\x5d\x21\x8a\xf1\x88\xd2\x6e\x90\x83\xf4\x08\x6f\x58\x08\x04\x3d\x8f\x0d\xee\xe8\x83\x8f\x0d\xee\x25\xf5\xa9\x7f\x25\x2d\x53\xff\xd8\x64\x4c\x6f\x07\xf2\xfc\x3c\xc6\x12\xcc\x94\xe9\xfe\xe5\x99\xfa\xc7\x79\xae\x74\xd6\x85\xb8\xcc\x23\x88\x62\x79\x50\x37\x4c\x76\x47\x3c\xe7\x31\x22\xb1\x63\xa2\x38\xce\x59\x9d\xe5\x21\x44\xe2\xcc\xda\x7d\x4c\x66\x86\xea\x2f\x08\x62\xe8\x21\x8f\x30\x87\x65\xe5\xc7\x2b\x7b\x3a\x76\xbf\xa3\x84\xd5\x65\x65\xfa\x7c\x57\x46\x59\x19\x18\x45\x97\xac\x34\xed\xbb\x2e\xca\x62\x5f\x7c\x6c\x94\x64\xf7\x12\xd8\x70\x66\x37\x78\x6c\xa2\xec\x29\x73\xe9\x3b\x06\xd4\x90\x03\xf6\x86\xc7\xf6\xca\x91\xef\xfe\xf4\x66\xca\x94\x99\xd5\xb7\xd4\x23\x4e\xbc\xb2\xae\x48\x32\xa5\xb2\xdf\x08\x68\x58\x80\x70\x1d\xa5\xb1\x2e\xeb\x8a\xf4\x48\x9a\x48\x6e\xf5\x42\xb2\x25\x39\x92\x00\x6c\x2c\xc0\xe6\xb0\x12\xf6\x6a\x53\xe7\x25\x67\xc4\x11\x75\xde\x8c\x5e\x2a\x6c\xe1\x04\x45\x7a\x9a\x0d\x94\xe8\xd1\xc2\x16\xce\x28\xb4\xc2\x16\xce\xc9\x80\x0a\x5b\x38\x81\x9b\x1e\x61\x0b\xe7\x64\xe8\x85\x2d\xac\xf8\xf0\x8f\xb0\x85\x13\xd8\xea\x11\x9a\x70\xce\xeb\xdf\x69\x18\x4e\xf3\x8e\x4e\x9e\xbf\xd3\x1c\x9d\x3c\x22\xfd\xa9\x9c\x48\xf6\x16\xb1\x0c\x9c\xb7\x3a\xc7\x9e\xf0\x83\x33\x6a\xba\x10\x83\xc9\x09\x72\x9a\xa9\xb2\xb8\xd2\x19\x30\x48\xf8\xdb\x71\x36\x6a\x18\x34\x8f\x21\x82\x33\xff\x50\xc1\xca\x64\x93\x3a\xca\x46\x3d\xf1\xe2\x1c\x11\xf5\xcd\xc9\xac\x34\x7c\x70\xe6\xff\xca\xfc\x3e\xf3\x47\xb7\xdb\x19\xc9\xbf\x82\xfa\x14\x69\x40\x98\xe2\x69\x9e\xdb\xbf\x67\x6a\x75\x7e\xa8\x14\x8d\x28\xd1\xcd\x71\xca\xec\xcc\xc2\x12\x2e\x72\x60\x9d\xe6\x00\x97\x0c\xa1\x91\x85\x33\x65\xca\x54\x9b\x11\x3c\x56\x73\x2c\x75\xc7\xb7\x30\xbb\x40\x12\x52\x66\x77\x78\x0b\x07\x4e\x77\x78\x0b\x5b\xa3\x12\x47\x2f\x32\x62\x1d\xc1\x0a\x17\xa9\x03\x8f\x60\x84\x8b\xd4\x81\xa7\xa3\x5e\xcc\x14\x2a\x65\x3a\xab\x5e\x84\x7d\x0b\x62\xdd\x23\xc4\xe1\x22\x3f\xd7\x11\x5f\xdf\x22\x03\xd8\x11\x5d\x5f\x1d\x91\x1c\xfa\x92\xfa\x0d\xa7\x99\x91\xac\x9e\x51\x8a\x03\x61\xd8\xa8\x0d\x3d\x5c\x39\x51\x80\x1e\x02\x1d\x3d\x86\x1e\xb6\x5f\x5b\xc5\xb1\x4c\xb2\xfb\x43\x0e\x68\xc2\xad\x8e\xa8\xfe\x9e\x28\xda\x9d\xec\x90\x1c\xb8\xc2\x12\x3e\x90\x61\x1e\xa0\x84\x60\x59\x8f\xa0\x84\x0f\x41\x5c\xc7\x19\xa0\x2f\xc8\x08\x8e\x81\x85\x81\x42\x9d\xbe\x69\x20\x6d\x30\xc3\x38\x44\x31\xc7\x58\xc2\x06\x39\xc4\x21\x05\x34\x80\x91\x43\x0a\x68\x48\x1e\x8e\xc1\x84\x0f\xc9\x82\x8f\x33\x42\x83\xdf\x3c\xc2\x12\x3e\x25\x7f\x65\xc3\xe4\x93\x6a\xe8\x1c\x05\x99\x63\x3c\xe5\x18\x9c\x83\xaa\x2e\x64\xe1\x43\xbc\xe4\xe9\xe8\x2c\x9c\xa0\x42\x16\x3e\x44\xfa\x1e\xd1\x18\x3e\xe4\xf7\x39\xc6\x15\x5e\x20\xe9\x8e\x70\x85\x0f\xfc\xbf\xa7\xe3\x3d\x2d\x29\x56\x7e\x7f\xb4\x09\x81\x0e\xff\x37\xbf\x50\x9b\x4b\x44\xd9\xd6\xd9\x4b\x0d\x34\xbc\x20\x9a\x38\x46\x1a\x5e\x70\x44\x9c\x81\x6b\x80\xbd\xce\xc8\xc3\x8b\xb8\xbc\x33\xf0\x0d\x70\x8e\x1b\x7a\x78\x11\xe0\x77\x44\x59\xf8\x40\x5f\x7c\x0c\x3d\xbc\x00\xb0\x9c\xe1\xd4\xe8\x2b\xd2\xcb\x2a\x55\xde\xf5\x58\xdf\x69\xa2\x5d\xf2\xfc\x70\x03\x0c\x27\xf1\xf0\xc7\xb9\xa1\x71\xbf\x9e\x61\x9d\x1a\x07\xc5\x31\xfa\x70\x42\x0c\x73\x9c\x1c\xfa\x21\x21\xf5\x19\x86\xd5\x42\xbf\x72\x84\x3f\x7c\x70\x01\x1f\xa7\x8a\xfe\xde\x2f\xff\xb9\x77\x0f\xd3\x1c\xa5\xf5\x00\x6e\x59\x06\x26\x3d\x6c\xf7\xaf\x12\xd9\xf0\x47\x5a\xe0\x15\xc3\x68\x7b\xc5\x00\xe5\x3c\x03\x37\x02\x0f\x01\xdf\xb2\x83\x09\xc9\xf8\xe0\x2f\x3e\x4e\x39\xfd\x9b\x47\x03\x9c\x11\xeb\x69\x78\xc5\x10\x87\x7c\x86\x57\x0c\xdc\x35\x67\x38\x67\x3a\x3b\xd5\x30\x3b\x1c\xbb\xc8\xd8\x18\xdb\x53\x90\xac\xeb\x28\x2b\xc3\x4b\x82\x20\x82\x33\x0c\x2f\x41\xb3\x70\x0e\xea\x8b\x98\x82\x63\xac\xe3\x05\xb0\xf8\x88\x19\xf1\xc9\x25\x7c\xd8\x0c\x01\x12\xf0\x0c\x7b\x27\x7a\x5e\xa5\x2f\x11\xe9\x0b\xa3\x82\xb3\x22\xed\xd5\x6d\x32\x16\x83\xe1\xdb\x24\xb1\xd9\x67\x18\xea\x86\x42\x33\x0c\x2a\xb8\x7f\xe2\xcb\x33\x85\x61\x30\xaa\x20\xbd\x71\x0a\xea\x8b\xd8\xed\x63\x6e\xc3\x96\xab\xc5\x74\x4a\x74\x46\xdb\xd4\x86\xd1\xa2\x84\x9c\x7c\x62\x43\x98\x10\x41\xb3\x19\x98\xda\xf0\x26\x3b\xdf\x11\x76\xf2\xfb\x34\x05\xd9\x35\xc0\x56\xe1\x24\xd3\x77\x49\x51\x8a\x17\x8b\x0a\x36\x6d\xda\x65\xfd\x4f\x2e\x9a\x74\x5c\x60\xca\xaf\xb8\x10\x7d\xd1\x5c\x11\xed\x1b\x60\x67\x36\xf5\xe1\x5d\x7e\x45\x71\x0d\xa5\xc5\x78\x3a\x56\x4a\xb6\xa7\x23\x25\xb9\x3b\x2c\x2f\x31\x1f\x3e\x39\xd6\x84\xb7\x7c\x72\xa8\x4f\xa8\x28\x98\x92\x13\x5f\xc6\x8a\x58\xf5\x2e\x1d\x37\xb0\xbc\xfe\x3e\x6d\x16\xf3\x54\x37\x79\x82\x69\xce\x84\xed\x89\xdf\x6a\x3c\xe6\x3d\x7a\x0a\x3e\xba\xe1\xd2\xde\x8d\x67\x20\xef\xea\x32\xcc\x92\x9a\x8e\x25\xcb\x98\x41\x25\xc0\xd4\x17\xfc\xf2\x7f\xff\xdf\x59\xe4\x58\xf0\xf0\x1e\xc6\xc2\x39\x1d\x49\x96\x8e\x3a\xe9\xf5\xcc\xab\xf6\x11\xb0\xf6\xa6\x5d\x20\xcc\xe5\x89\x0b\x04\x1b\x8f\x60\x9c\x2d\x4a\x9f\x51\x9c\x77\x76\xcc\x89\x07\x64\xa4\x4e\x63\x12\x5b\x1a\xaf\x3b\xff\x4c\xdb\xdd\xcd\x7c\xe9\x6e\x7a\x08\x16\xfe\x0f\xd6\xde\x72\x40\x1a\xd3\x68\xe1\xfe\xc0\x02\x26\x90\xe7\xcf\x54\x04\xc6\x33\xb7\x62\x61\x3c\x7f\xdb\x30\x4c\x8b\x6c\x73\x61\x5a\x64\x6d\x09\xe2\xd9\x60\x13\x3a\x0b\xcf\x48\xcf\xbb\xee\x09\x9b\x72\xa8\x15\x19\x93\x45\xac\xda\xef\xa9\xa8\x15\x57\x1e\x9a\x5a\x91\xc1\x35\xe2\xb3\x7c\xef\x41\xff\xdc\xd0\xc3\xb4\xc8\x70\x1a\x0f\x5a\x72\x4d\x12\xd5\x62\x23\x60\xe7\x08\x1d\xda\x08\xd1\x39\x06\x87\xce\xd5\xf3\xd0\x7e\x92\x9e\x36\xc8\x31\xc2\x82\x0e\x54\x94\xa9\x0a\x0d\x63\xae\x82\xa6\x61\x24\x10\xe8\x90\x40\x3b\xf7\xb6\xe5\xf0\xb8\x5c\xb9\x8c\x2b\x4d\xf0\xcf\x31\xf3\xe2\xf3\x1b\x7d\xfb\x42\x88\x5e\x3c\xe0\x4c\x9f\x48\xb8\xec\x18\xc2\x6d\x4f\x03\x3d\x75\x78\x65\x0e\x57\xb3\x2b\x16\x88\x95\x8f\xd9\x15\x0b\x4c\xc7\xc7\x10\xd5\x02\x85\xc7\x11\xd9\x62\x03\x3c\x7c\xcc\xb5\x58\x60\xa1\x3b\xe6\x5a\x2c\x50\x2d\x1f\x30\xab\xb0\x24\x9f\x65\xa0\x18\x84\xca\xc7\xe4\x8b\x05\x62\xe4\x23\x10\x6b\x03\x78\x7c\x0c\x62\x2d\x50\x38\x9f\x65\x53\xcd\x2c\xf9\x54\x8e\x88\x99\x06\xcb\x11\x31\xf3\xcc\xa6\xa6\x92\x87\x1f\xa1\x6c\xb8\x83\x98\x9d\xb1\xcc\x12\xf1\xb6\x58\x10\xc5\x8a\x39\x23\xc9\xb4\x04\xb7\xed\x11\xe8\xf4\xae\xe4\x7b\x3b\xa2\x64\xfc\x8a\x0b\xf1\x4f\xfe\x8f\x94\xeb\x98\x43\x4c\xbe\xdb\x99\xe3\x08\x03\x3a\x02\xac\x36\x50\xe9\xc7\x10\xd5\x1a\x87\xdd\xb6\xff\x8e\xf8\xa2\x23\x8c\x6a\xc3\x39\x7c\x04\x51\x6d\x78\x78\x8f\x53\x6e\x57\xc8\xdd\x8f\x30\xaa\x0d\x97\xee\x71\x56\xed\x0a\xfc\xe5\x38\xab\x76\x85\x7f\xe2\x6c\x7b\x55\x20\xd1\x38\x4e\xb2\x5d\x61\xe6\x38\xa6\x74\xac\x10\x60\x9c\x2d\x53\x23\xd1\xb8\x87\x9c\xdb\xa4\xbc\x39\x26\x78\x1c\x71\x46\x6e\x13\xcf\xc6\xe7\xb9\xcd\x31\x15\xa3\xe1\x71\x18\x56\xb6\x66\xa3\x32\x47\x36\x34\x01\x24\xef\x91\x9d\xe8\xcf\x31\x2f\xd9\x71\xff\xac\x22\xa0\x95\xfe\x99\xb8\x31\x83\x68\xb6\xb4\x8b\x63\x53\xa0\xac\x01\x0e\xe8\x98\x2d\x0d\xba\x82\x23\x46\xb4\xb2\x98\xce\x06\x61\xdd\x30\xd2\x1f\x81\xb0\x5a\xb4\xf8\x17\xae\x5f\x36\xb8\x97\x8d\xcb\xf1\xb9\x08\x78\xd5\x08\xf7\x3b\x02\x5e\xdd\xbf\x41\x7a\x4d\xe6\x6f\x44\xfb\x01\x51\xc7\x5f\x76\xa4\xcd\xb4\x81\xc9\x92\x36\xd8\x58\xff\x7b\xea\xec\xa0\x0c\xb7\xe0\x57\x0d\xc8\xf2\x11\xfc\xaa\x67\x1f\x72\xca\xd7\x41\x5c\xd7\x79\x39\x9c\x9c\x10\xb1\xf3\x32\xdc\x90\xd9\x6c\x38\x16\xb8\x87\x23\xfc\xd5\x88\xc9\xfd\xe5\x20\xc7\x15\xc9\x56\xc4\xd4\x21\x2b\xdb\xca\x77\xb2\xb2\xad\x54\xa8\x88\x9d\xb4\xcd\x11\x3b\x19\x1f\x13\xc1\x30\x73\x5f\xf6\x73\x70\x60\xbf\x0c\x44\xe5\xb0\x12\xfc\x6a\x3d\xeb\xdf\x79\x1a\x0e\xd0\x2c\x8e\x5d\xa0\x59\xec\x03\xc2\x62\x3d\xc4\xbd\x1c\x12\xc4\x66\x3f\x7f\x99\xc2\x3b\x43\x8c\xbf\x0c\xf7\xa4\xf1\x57\x31\x1d\xbe\xd0\x4c\x33\x27\x1c\x84\xc1\x16\x61\x7e\xb5\x5e\x5a\xde\xb5\x8e\x48\x97\x7d\x98\xd7\x9f\x68\xb5\x84\x85\xfd\x02\xf5\x9c\x09\x03\x62\x81\x1f\x62\x5a\xb4\x02\x51\xe2\x11\x5c\xab\x11\xfa\x71\x94\xcb\xf5\xfb\x70\x21\xda\x61\xca\xe6\x28\xf4\x56\x03\xac\x71\x4c\x8b\x56\x41\x9a\x1d\xb0\x5c\xbf\x62\x45\x6a\xc8\xc4\x33\x94\x0b\xce\x83\x23\x24\x57\x68\x5c\x8f\x80\x5c\xe5\xa2\x2b\xe6\x48\xeb\x8b\x6b\xb2\x90\x5b\x23\xfe\x9b\xb7\x2d\xc4\x28\x8f\x66\x4c\x1b\xb0\x69\x9d\xb7\x4d\xc4\x69\x9c\x28\x67\xa3\xc1\xbc\x6d\x22\x5e\x29\x86\xd5\x96\x3a\xb6\x96\x2d\x0d\x10\x8d\x55\x96\x88\x32\xbf\x96\x95\x37\xe5\x51\xcb\xfe\x6f\x24\xd6\x13\xef\x81\x90\x58\x15\x28\xf5\x79\x1b\x21\xc8\xa4\x7c\x1b\x21\xc8\x44\x7f\x9b\xd8\x6f\xa5\x50\x11\xfb\xa1\xa6\x29\xb9\x6b\x05\xe3\x7f\x02\xe7\x5a\xa9\xd1\xdc\x11\xbf\x52\xdf\x1e\x80\x14\xab\xeb\x54\x5a\xce\x75\x2a\x75\x1a\xad\x0f\xe9\xfe\x11\xbc\xeb\x59\x3f\x09\xc5\x87\x5a\x0f\x77\xe0\x94\x64\x14\xc5\x88\x28\x9a\xe3\x96\x72\x7d\xf2\x66\x86\x18\xb2\xd0\x52\x90\x0e\xde\x96\x0f\xed\xf2\xcf\xaf\x3d\x3e\xe5\x9e\x3c\xf5\x29\x97\x87\xb6\x13\xf1\xa7\x15\x4c\x12\x83\x8d\x48\xd4\xca\x45\xdb\x05\x12\x1b\x9d\x5d\x56\x20\xb1\x02\x48\xfd\x38\x01\x2c\x79\xaa\x8f\x13\xc0\x92\x98\xfa\x08\x32\x56\x1e\x6c\x4d\x1f\x1b\x88\x67\xbe\x93\xf9\x7d\xe5\x3b\x99\xae\xef\xd4\x27\xd3\xf5\x8c\xe4\xf9\x31\x90\x84\x10\x66\x3d\x2b\x4f\x6b\x21\x89\xf1\x11\x75\xda\x4c\xe7\x3f\xc0\x07\x56\x1e\x62\x2b\x8a\xf8\xd1\x06\x43\x6b\xcc\xec\x42\x88\xc3\xf9\x70\x37\xcf\xa7\xdb\x74\x4a\x0c\xf2\x07\xea\xf6\x95\x6f\x7d\xbd\xa5\x56\x2e\xe7\x6c\xb1\xc6\x62\x5d\x9d\x7d\xf4\x93\xc9\x96\x7a\x98\x6c\xf9\xd6\xb7\xb1\x94\xfb\xf1\x74\xe2\x5d\x70\x5b\x2c\xb7\x8f\xb9\xf6\x32\x7e\xc0\xb6\xd8\x92\x3f\x9e\x4e\xf0\x20\x1c\x01\xb5\x5a\x4d\x93\x8c\xd3\x8a\xb3\x5b\x38\xad\x56\xd3\x22\x4d\x91\xfb\x3f\xa0\xc3\x8f\x51\x5a\x65\xea\x64\x9e\x53\x28\xad\x66\x73\xc6\x57\x92\x69\x41\x53\xf6\x2b\xf9\x68\xd3\x36\xf6\x15\xb5\x63\x97\x48\xda\x54\x6a\x24\x23\x9e\x2a\x92\xc2\x01\x6a\x8a\x19\x9a\xa3\x79\x73\xba\x1f\xa9\x5f\x1e\x1c\xe9\x26\x5f\x49\x03\xad\x3e\x7e\xa5\x97\xa6\x33\xcf\xe4\x20\x73\xba\xa2\xaf\x74\x4b\x5a\x48\xb2\xad\x15\xaa\x17\x61\x81\x0d\x93\x5f\x49\xd3\xb9\xe6\x59\xd7\x54\x8f\x24\x97\x58\xa5\x2d\x0e\x9a\xad\xd4\x6e\x97\x58\x4d\x29\xda\xfc\x56\x24\x4f\xfc\xd4\xfe\x72\x97\x3a\xe2\x5b\xaf\xa6\x0a\xcf\x7c\x0a\xdd\x18\xdc\x78\xd5\x30\xeb\x45\x9f\x40\xac\x56\x8a\xf5\x4d\xa4\xd4\x3c\x55\x5a\x82\x49\x5b\x65\x69\xb2\xf7\xe7\x2b\x2d\x4f\xba\x7c\xc9\x21\xc8\xc8\x39\x8b\xbb\x23\x57\xbf\xe2\xdb\xe5\xe6\xe9\xc7\xad\x47\x34\xcf\xbb\xe9\xcb\xbe\xa2\x03\xf1\xd3\x26\x9f\xda\x25\x0f\x9f\xff\xfb\x7f\x90\xfe\x7e\x25\x83\x5c\x68\xa0\x68\x76\xaf\x34\xf0\x78\x0e\xe4\xd9\xd2\x4f\x88\x24\x1f\x69\x86\x44\x3b\x5a\xbf\x52\x83\xb4\x1b\x86\x40\x80\x2c\xf8\xf1\xbe\xd2\xb7\x86\xc5\x7c\xbc\xbd\x4f\x51\x3b\xdc\x69\x2b\xdf\xe9\x1c\x63\x5a\xdf\xf6\x4e\x31\x01\x6f\xc3\xe7\xdb\x42\xf2\x06\xff\xe4\x55\xd1\xce\x4e\x8a\x59\x3e\x8f\x26\xd2\xfe\x6e\x45\x4c\x6b\x63\xa2\xba\x33\x40\x7d\x45\xdb\x89\x9f\x3c\xf5\xa6\xfd\x2b\xf6\xad\x4f\x91\x64\xbf\x79\x0a\x33\xd4\x09\x42\x49\xbd\xf5\x15\x9d\x85\xea\xa1\x56\xcf\x11\x87\x83\x7e\x45\x73\xd5\x3c\x54\x6b\x73\xe4\xb8\xa8\xd6\x3f\xbe\xfe\x2a\x92\x7d\x22\xc3\x67\x8a\xd0\x0c\x18\x1b\x13\xe5\xe4\x60\x8b\xa8\xdc\x09\x8b\x31\x72\x7e\xfe\x45\x83\xb8\x51\xb2\xf6\x9c\xb9\xb3\xcc\x92\x4a\x5e\xc2\x7b\xe5\xa1\x12\x0c\x3c\x05\x49\x26\x5a\xfe\x43\x31\xeb\x84\xc3\xe2\xbe\xa2\x52\x79\x33\x0d\x84\x65\xaa\x8e\xb7\xf8\x4a\x72\x13\xf6\x48\xfe\x47\x0b\x49\x96\xf2\x3b\xa5\xc8\x52\x4e\x63\x0a\x79\xf5\x07\x92\x68\x5b\x18\x0d\xa5\xdd\x24\xd7\xd7\x57\x52\xea\xfc\x4e\xed\xb6\x7e\x8c\x89\xa4\x44\xfa\x6c\x8a\xc5\xa6\x10\x06\xaa\xd8\xba\x31\x69\xd9\x52\x0e\xb5\xf4\x68\x71\xc8\x23\xf9\x72\xfd\x4f\x85\xfb\xfb\xea\x9f\x8a\x61\x9c\x16\xb4\xea\x48\xbe\xbd\xa5\x54\x4d\xa5\xce\x5c\x31\x49\x9a\x09\xb4\xbe\x92\xb8\xd3\x57\x9e\x79\xc3\xa6\x50\x0c\x7f\xcc\xcf\xe2\x3c\xfa\x2d\x92\xdc\xa9\x2d\x55\x58\x7d\xa5\x7e\x25\xce\xcf\x7c\x13\xe4\xa9\x77\x26\x91\x19\xd0\xcc\x70\x31\xa7\x29\xcf\x3a\x13\xb5\x40\x11\x91\x67\x8f\x19\x4b\x91\x9a\xca\xa4\xf6\x43\x26\x0c\x7a\x61\xae\xe5\xf2\xe4\x4b\xc7\xe4\xd2\x1a\x07\xbe\xb1\x75\x95\x80\x4b\xe8\xb1\x69\x1a\x17\x13\x5e\x10\xa7\x71\xb3\x7b\x08\xd2\x04\xd7\xf5\x57\x12\xc7\x5a\x61\xc3\xa8\x1c\x60\x03\x49\xd7\xb6\xdf\xb3\x25\x69\x21\x6d\x49\x79\xf3\x4f\x5b\x60\x47\x92\x6e\x5f\x53\x85\x74\xfb\x3b\xdf\x09\xc8\xc7\x81\x29\xfa\xb2\x71\x73\x0a\x56\x2b\xfa\x79\xd3\x0e\xf3\xd4\xb7\xdc\xec\x89\xe4\x2d\x97\x2e\x2d\xb5\xba\x46\x52\xab\xd3\x96\xe5\x56\x33\x14\x52\xf3\x9d\x59\xe3\x2b\x1d\x49\x29\xf3\x4f\x6f\xe6\x3b\x9d\xc8\xbf\x96\xa9\x0f\x19\x09\x5d\x3d\xef\x7c\x27\x80\xc7\x95\x31\x13\xeb\xe8\xcd\xb1\x21\x7a\xb3\x12\x45\x42\xec\x66\xe5\x62\xc5\x0a\x0d\x05\x6b\xde\x57\x5a\xfe\xdb\xf9\x50\x7f\x74\xae\x94\xaa\x83\xe3\xc9\xbb\x3a\x2a\x98\x44\x22\x2c\x2b\x0f\x13\x5a\xd8\xa7\xf2\x70\xe2\x09\xfa\x34\x3a\x9a\x84\x90\x4f\xe5\x61\x7e\x09\xf8\x54\x1e\xa6\x97\x70\x4f\xa3\x73\xac\x1a\xf6\x34\xc6\x4c\xa1\x52\x17\x58\x42\x95\x33\x2d\x55\x6c\x49\x29\xf4\x7b\xb7\xef\xf9\x31\x02\x7c\x3c\x2d\xa5\xb8\x13\xf9\x4e\x18\x0b\x7e\xe8\x63\x0d\x9e\xa1\x31\xe6\xa9\xb3\x99\x0b\xf3\x54\x1e\xce\xe5\xc7\xe9\xcf\x72\x8c\x3d\x56\xe1\x39\x7d\x0c\x73\x7a\x18\xc4\x07\x8b\xca\x93\x52\xdd\x8b\x81\xb4\x3c\xf3\xf3\xa5\xac\x38\x4f\x4a\x35\xde\x92\xa1\x72\xea\xcd\x59\xf2\x29\x18\x78\x7a\xf2\xe4\x24\xe5\x5b\xdd\x3a\xcb\x95\x77\x7d\x74\x57\xa4\x61\xda\x68\x2a\x35\xc8\x73\xa5\x9c\xa5\x0f\xe9\xb5\x43\x81\xb3\xfc\x05\x4d\x9a\xe5\xca\x87\x2f\x49\xa9\xf1\x2d\xa9\x21\x7d\x24\xf1\x9d\xe0\xa0\x85\xdf\x23\xf8\xd1\xcc\x71\x2c\xba\xb4\xb2\x98\xab\x62\x4b\x2b\xab\xfc\xd3\x75\xf9\x7d\x55\x17\x6b\xf6\xa2\x47\xb0\x8f\xc2\x7c\x10\x6c\xa9\xac\x92\x0a\xd5\x8b\x95\xb6\x89\xbd\x74\x95\x48\x7f\xfa\x30\xf5\xbb\x4f\xfc\x2c\xa3\x98\x58\x7f\xa0\x98\xd8\x6d\xcc\xa2\xb6\x6c\xc0\xff\x8a\x50\x5a\xd1\x63\xd3\xa6\xad\x8c\xa3\x53\xcc\x17\x56\xab\xd0\x4a\xd5\xfc\xb6\x5f\x49\x38\x94\x9a\x72\x85\x3c\x41\x47\x16\xf5\x59\x75\x68\xff\x9c\xce\xd2\xd9\x0a\x0d\x12\x08\x69\x4e\xb6\x31\x81\x90\x56\x63\xd6\x37\x87\x53\x72\xf8\x1a\x76\x34\x51\xae\x1b\x54\xcb\x2b\x1f\xba\xfe\x7c\xa8\x1b\x02\x27\xb3\x08\xce\x6a\xa5\x93\x42\x28\xcd\x89\xea\x28\x80\x52\xcd\x41\x09\x40\x89\xfd\x56\x00\xa5\xa7\xdc\x91\x84\xe5\xe1\x7c\x07\xa0\xc4\x9e\xd3\x9c\xa0\x67\xd0\x16\xc7\x53\xf6\x3c\xb3\xe6\x41\xcb\x96\x69\x5e\x5a\x1e\x9e\x6f\x7f\xaf\x54\xf1\x27\x29\xaf\xbe\x25\xd1\x7b\x13\x7b\x33\x53\x04\x2c\x5a\x8d\x55\x2e\x60\xd1\x6a\xfc\xfe\xe6\xe0\x4a\xd6\x42\x73\x4e\x84\x95\x67\xdf\x11\x9d\xfc\x51\xc1\x8c\x56\xbb\x52\xe6\x92\x94\x32\x85\x80\x5a\xa9\xdd\x21\xe0\x1c\xcc\x0d\xd4\xe8\x93\x3a\x64\xd0\xe3\x94\x14\xb4\x68\x35\x96\x86\xa1\x45\x83\xbb\x4c\x33\x86\x79\xd1\xc3\xe3\x76\xf3\x9d\x31\xcc\x28\x57\xcd\xc9\x80\x46\xde\xec\x7a\x93\xfa\x8e\xdb\x9d\x1a\xa4\x62\x33\x69\x1b\x9c\x05\x2d\xc5\x08\x0b\x7f\xe7\xd7\x08\x7c\x91\x29\x2c\xa8\x11\x96\xab\xaf\x24\x24\x03\x87\xa6\x69\xca\xae\xfb\xc9\xc3\xc7\x3d\xce\x53\xdb\xb8\xd9\x53\xcc\x5a\x76\xdd\xec\xeb\x82\x1b\x61\xca\xfa\x4a\x04\xda\x17\x44\xdf\x01\x06\x92\x21\xd6\x4f\x5a\xc4\x1d\x20\x4f\xb9\x03\xa4\x24\xb7\x9e\x5a\xb0\xd8\x71\x28\x40\x61\x36\xae\x3c\x45\xad\xa7\x60\x83\x2b\x18\x78\x53\x96\x5d\x83\xb9\xd5\x0d\xa0\x58\x29\xe8\xed\x87\xf4\xdc\xa8\x88\xc1\x1c\x35\x8e\xa8\xa1\x3a\xc3\x41\x36\xd8\x15\x41\x0e\x0d\xe6\x50\xe7\x36\xda\xf2\x72\xf7\xd5\x22\x4f\xe5\x87\xac\x25\xa2\x6f\xa7\xa9\x46\x16\xda\xdf\xab\xf2\x4e\x64\xd5\x40\x42\x56\x33\xc0\xb9\xb2\xd0\x55\xdd\x55\xef\x9a\x92\xec\x3a\xae\x19\x70\x4c\x77\x6c\x31\xe6\x1d\xbb\x2b\x0a\x89\xe0\x41\xcf\xba\xff\x83\x8a\x6d\x52\xb2\xbb\x66\xbe\x98\x84\xa3\xe6\xe7\xa0\x82\xe6\xe7\x1c\xfa\x9a\x5a\x7d\xf7\xce\xcc\x13\x67\x69\xce\xab\x8e\x33\x19\xfd\xbc\xe3\x4c\xe6\x0a\x29\x0a\xb3\x96\xad\x5e\x14\x66\x2d\x87\x92\xa0\x45\x2d\x07\x96\xa0\x45\x2d\xc7\x80\x91\x45\xb3\xb0\x0f\x09\x59\xd4\x72\x0a\x0e\xfb\x92\xd9\x5c\x06\xbe\xe4\x99\x72\xec\x5d\x99\x1d\x51\xce\x64\xb6\x97\x81\x33\x99\xeb\x6e\xf8\xce\x7a\xde\x5d\xaa\xa5\x21\xd9\x69\x3e\x23\xd2\xb1\x07\xf1\xdb\xb1\x87\x41\x10\xe8\xa8\x3d\x69\x1f\x7e\x67\xb4\xa8\x61\x9f\x48\xe3\xf4\x33\x8e\xa8\x34\x8e\x5f\xe1\x88\x5a\x6b\x79\xc8\xe5\x92\xf6\xca\x5d\xdc\xd3\x04\x6e\x54\x1c\x87\x02\x07\xdd\xf5\x7a\xf2\xf4\x6d\x7b\x7d\x1a\xe1\xa8\x24\x6a\x11\x20\x7f\xae\x48\xb6\x71\x30\x80\x46\xcc\x15\x4e\x00\xc3\x81\xec\xed\xf9\x4a\x82\xa8\xa2\x57\x0a\x0c\xf4\xe4\xd6\x20\x2c\x50\x8b\xc6\x33\xc0\x52\xcc\x94\x2a\x7b\x63\xcd\xab\xd6\x08\xf9\x47\x56\x6b\x5b\x2a\x94\x46\x58\xf3\x1d\x49\xf9\xe8\x55\x66\x3c\x5f\xda\x3a\xc3\xc1\x29\xec\x4f\xb9\x7e\xcf\xba\xb3\x47\x45\xd4\xce\x95\xe1\x10\x9c\x67\x31\x85\x0d\xe7\xb9\x38\x0f\x0d\xdf\xe9\xf9\x05\x0e\x39\xe2\xe0\x16\x5d\x5a\x79\x5a\x24\x2b\xa8\x15\x49\x46\x5e\x86\xd1\x74\x69\x31\x04\x98\x2e\x6d\x32\x23\xa6\xef\xec\xec\x1d\x46\x00\x2d\xd6\xde\x64\xd6\x4d\xa4\xad\x99\x94\x37\xed\xe0\x43\xab\x22\xb9\x69\x4d\x15\x02\x2f\x73\x74\x4c\xa3\xeb\xe9\x84\x10\x3e\x33\xa6\x9b\x69\x0b\xd0\xa0\x50\xc5\xbc\x17\x46\x8d\x5c\xa6\x37\x47\x05\xb9\x4c\xc7\x15\xd1\xb6\x4c\x36\x86\x49\x24\x49\xcb\xb7\x3a\x0e\x32\x54\xce\xd5\x36\xf2\xec\xa5\x73\x35\x92\xec\x41\x25\x6f\x6a\x93\x46\xe1\x12\x7f\x5a\xcf\x2e\x2c\xac\xcf\xb8\x7f\xcf\x8a\xfe\x30\xdf\x6d\x5d\x56\x32\x70\xb6\x0c\xad\x34\x55\x2c\x20\x0f\x76\x56\x23\x7b\x9e\x1c\xac\x93\xf9\x97\x57\x35\x72\x17\x0b\x54\xe0\x9d\xd1\x99\x1b\xc2\xe7\xcc\x1c\x87\xc2\xe7\xcc\x68\x55\x82\xe7\xcc\x1c\x69\x82\xe7\x94\xc5\x14\x17\x3c\xa7\x2c\xe6\x94\xd0\x39\x65\x31\x51\x85\xce\x99\xb1\xd9\x4c\x23\xe7\xff\x9d\x58\xe7\xfb\xea\xd6\x87\x69\xda\xdb\x59\xf9\x23\x4a\xff\xe3\xb8\x15\x1a\x67\xb5\x3b\x92\x94\x15\x8e\x91\x85\xa2\xda\x90\x9a\xa4\xff\xcf\xd8\xdb\x5c\x4d\xcf\xf2\x4c\xbb\xa9\x7c\x21\xd8\x06\x0c\x4c\xde\x5c\xa0\xbb\xcf\xfc\x43\xd8\xcb\x55\x47\xf9\xd9\xb3\xeb\x1e\x6a\xd9\xc6\xfc\x23\xa4\x52\x69\x20\x75\xcd\xd4\x0b\x49\x6a\x15\x3f\x34\x47\x5a\x2c\xd9\x4e\x64\x7a\xf4\xf7\xa1\x8f\x5a\x54\x27\xa3\x6d\x8e\x2c\x3f\xa3\x6d\x8e\x9e\x7f\xda\x7e\xdd\xe9\x02\xc3\x6d\x8e\xce\x04\x9d\x5c\xa5\xee\x7c\xeb\xad\x77\xe6\xa9\x8f\x98\x99\x1f\x79\x27\x9e\x29\xea\xe7\xdd\x36\xa2\x71\x32\x5c\xb5\xa6\x99\xa2\x1b\x1b\xaa\x91\x31\x2d\x86\x6c\x90\x31\x8d\x25\x4c\xc2\xd2\xc6\x06\x6b\xa0\x4c\xbb\x5e\x51\xfc\x44\x23\x9f\x3a\x44\x94\x35\x6d\x64\x4c\x89\x75\x94\xbc\xa3\xf5\xce\x53\xf5\x5c\xc9\xa7\x76\x50\xd0\x8d\x42\x87\xe5\x4e\x67\x5c\xcc\xc1\xcd\x64\x32\xdf\x22\x35\x8d\x77\x24\xeb\xe6\x5c\x06\x04\x83\x69\xb3\xa4\xd0\x21\x0f\x3e\xfd\xb9\x6d\x64\xc8\x48\x81\x9e\x78\x9f\x0a\xd7\x1c\x9b\x9e\x50\x30\xf7\x79\xa7\xa0\xaf\x24\x6a\x6e\x92\x06\x4e\x83\x64\x28\x75\x7d\x84\x81\xb9\x4f\xaa\x23\xba\xb6\x3b\xb7\xa8\xe5\xf4\xce\x37\x23\x28\xcc\xcb\x9d\xfd\xc8\x90\x97\x8b\x7e\x5d\x24\x2c\x4a\xa1\x3f\x15\x33\x91\xfe\x24\xf1\x0c\x83\x26\xdf\x09\xb3\x90\x4b\x8d\xe1\x2e\x17\x07\xa7\xd0\x2e\x77\xb4\xf3\x65\xe7\x49\xc9\x77\x43\xbb\x4f\xca\xb4\x5d\x90\xff\x3d\xf3\xf0\x8e\xba\x28\xf8\xca\x1d\x15\x75\x39\x6f\x7d\x8b\xf4\xd4\x33\x73\xdf\x58\x96\x18\x7a\x17\xfb\x1b\xcf\x9e\x09\x79\x77\x86\x54\xd4\x6d\x77\xbf\xf2\xac\xb8\x9b\x90\xaa\x9e\xd1\x22\x1f\xcb\x69\xed\xf2\x59\xc7\xfe\xb2\x9e\x73\xf9\xce\x4a\x14\xe7\xdb\xdd\xcf\xbc\x3a\x25\x51\x51\x5f\xcc\xaf\x0c\xcc\x72\x9b\xe8\x27\x4d\xe2\x3b\x43\xe8\x5d\xf2\x4e\xa1\x6e\x61\x7e\xe8\x16\xd2\x0a\x87\x0d\xa7\xef\x6d\x07\x65\x02\x99\x0c\xee\x6e\x79\x53\x6d\x62\x53\x58\xd8\x41\x69\xef\x33\xa1\xef\xce\x82\x32\x11\xdc\x9d\x39\x62\x44\x44\x6a\x6d\x66\x42\xe6\xaf\xc0\x40\x77\x76\x25\x91\xc2\x5d\x35\xb5\xd6\x64\xce\xae\xe3\xdc\xaa\xf1\xf6\x99\x20\xee\xce\xac\x90\xad\x7e\x4c\x8e\xb6\x3d\x3c\x68\x15\x49\xc3\x74\xfe\x93\x09\xf6\x79\xb5\xa8\x15\x27\x52\xb5\x3d\x2f\xe2\xf2\x9a\xbd\x11\x41\x26\xf1\x17\x53\x8c\x5c\x9c\xa0\xdb\x0e\x40\x4c\x5c\xce\xb6\x9a\x33\x53\xdc\x72\xd7\x51\xf3\xa6\xf4\x20\x4c\x81\xdb\x26\xd3\xf7\x99\xcc\x8d\x1c\x12\x5b\xee\xc0\x6c\x44\xdb\xd9\x99\x2e\x86\x71\xdb\x66\x5a\x22\xc9\x4a\xca\xd6\x28\x0e\xba\xeb\x28\x91\x64\x17\xe5\x8e\x28\x80\xd5\x15\x7f\xda\xb6\x95\x94\x85\xb1\x7d\x9c\xa3\x5d\x98\x8f\xae\x5e\x6c\xce\xe2\xa3\xbb\x8e\x2b\xaf\x6a\x5d\x32\x53\xb6\x8d\xa6\x1c\xa7\xe2\xa3\xbb\xa2\x4d\x8a\x8f\xee\x8a\x5f\x65\x2b\x71\x53\x1c\x51\x62\xa3\xeb\x27\xe7\xbe\xc8\xe8\x7a\x6e\xba\xca\xdf\xda\x73\x7b\x15\x35\x5d\x3f\xef\x7c\xf7\x33\x8e\x29\x0f\xdd\x26\x3e\xdc\x6e\x53\x24\x0d\x4c\xfa\x49\xb6\xd6\x13\x0d\x49\xf9\x5b\xfb\x79\x47\x52\x93\x6a\xde\xd4\xc0\x60\xbf\x15\xdd\x5d\x3f\xd1\x2c\x4d\x77\xd7\x66\x26\x8a\xe3\x9e\xa3\x5b\x88\xfd\xae\xc7\x6d\xea\x7c\xae\x67\x8b\xa4\x26\x66\xde\x9a\xce\x24\x57\x06\xb3\xdf\x01\x0a\x7c\x44\x81\x29\xd8\xbf\xcd\x7e\xd7\x9d\xda\x61\x8c\x8f\x6c\xb1\xb9\xf8\x2b\xf9\xeb\x95\xad\xfe\x33\x3c\xfb\x0a\x92\xc7\xed\x46\xd2\xec\x63\x2b\x12\x6d\xde\x75\x70\x66\x9a\x36\x2f\xae\x8d\x8f\xdd\x0c\xcc\x53\x93\xe8\xdd\x25\xff\x53\xfc\x69\x49\x5d\xb6\x2f\xa4\x11\x35\x70\x2d\xaf\xca\x25\xc3\x24\xfa\xd8\xdf\xcd\xc2\xf8\xd8\xdf\x9d\x26\xa1\xbe\xa2\x1b\x88\xfd\xae\xdf\xdc\x81\x3f\x58\x5a\xdf\x77\x65\xc2\xa6\xc7\x3f\xf2\x0a\xdc\x69\x22\xfe\xef\x91\x2f\xe5\xc1\x65\x72\x88\xfe\xae\xdf\x4c\x07\xe7\x90\xbd\xd3\x7e\xcd\xe9\x9b\xf5\xf6\xb1\xfe\xca\xde\x20\xc2\xbb\x7e\x5f\x29\xa5\xab\x4c\xfa\xdb\xca\x6c\x4f\x29\xaa\x77\xfa\x4d\x33\xfc\x4e\x7f\x2f\xef\x77\x91\x54\xed\xf4\xb7\x66\xf8\x7d\xa6\x14\xa9\xb9\x4c\xa2\x8f\x1d\x06\x9d\x37\x15\x12\x5a\xd9\x0b\xc5\x5a\xd7\xef\x33\xcf\xe4\x30\xb8\xf3\x9d\x0c\xef\xec\xc4\x4e\x35\x5b\xd9\xb1\x84\x9e\xec\x77\xe6\x8c\xbd\x07\x9c\x26\x02\x4f\x5e\x95\xfd\xfc\xe3\x29\xcc\x96\x61\x7a\xbb\x91\xb6\x6f\xb5\x21\x73\xcd\x33\x38\x07\xed\x47\xb7\xb3\x9b\x03\xf3\xeb\xdb\x59\x6f\x48\xba\x9d\x5d\xff\xc4\x6c\x3f\xaf\x7a\x94\x06\x92\x1c\x24\x3d\x92\xc6\xec\x8c\xa4\x31\x63\x55\x08\xac\xd9\x6f\xf6\x9a\xaf\x67\x30\x9b\xdb\xd7\xac\x12\x6c\xa6\x5f\x3b\x16\xd8\xda\x85\xd4\xec\xf1\x0d\x0a\xa8\xd9\x83\x25\x11\x50\xb3\xdf\x25\x6f\x6a\x6e\x5d\x29\x53\x2e\x1f\x4e\xd6\xaf\xef\x78\x9c\x1e\x42\x69\xf6\xfb\xca\x33\x8d\x20\x0b\x5d\x20\xcd\x1e\x3f\xe1\xd7\xf0\x38\xce\xcb\xaf\x17\xcc\x95\x37\xed\x6e\x64\x78\xbf\xec\xd0\x29\xc7\x1a\xc9\x48\x0f\x5b\xed\x98\x47\x9e\x72\x7e\xf1\xd4\x77\xa5\x8c\x8d\x75\xd7\x2b\xcf\xe4\x1d\x61\x75\x09\xfd\x38\x72\xab\xfc\xfa\xae\x94\xce\xd1\xb4\x99\x25\x92\x2e\x40\xa9\xac\x2c\xf5\xc1\x11\x08\xeb\xf8\x22\x19\x04\x75\x7c\x5d\x37\x4a\x0f\x3b\xa2\xba\x0b\xf7\x38\x2e\xba\xd8\x2c\x75\xf5\x62\xaf\xfd\x19\x65\x41\x65\x04\x7b\x7c\x7d\x3c\x42\x3d\xbe\xbe\x58\xa1\x1e\xaf\xc9\xba\xff\x19\x73\xf1\x3e\x93\xa3\x86\xd5\x25\xd0\xe3\xb8\x4a\xde\x54\xb5\xaf\xfc\x4f\xb8\xb1\xb7\x32\xaa\x36\x1b\x8d\xc8\xeb\x46\x2c\xbe\xe6\xae\xab\xb1\x1c\xfe\x0c\x2a\x63\x2a\x0a\x02\x79\x4d\x86\x58\x08\x48\xc2\xdc\x1e\x49\xbd\x7d\xa5\x18\xdf\x4c\xa9\xda\x74\x03\xf3\x9d\x7b\x3b\x7f\x90\x2b\xea\xca\x9b\xf2\x52\x8c\x48\x6e\x20\x3d\x6a\x4e\xda\x9c\xd6\x3f\x3b\xa6\xde\x62\xdc\x42\x5a\xaf\xb8\xf8\x99\x81\xd1\x8d\x7e\xb2\x47\x08\x47\x39\x62\xc5\x16\x8c\x72\xc4\x4a\x20\x18\xe5\xb8\x58\x6b\x82\x51\xbe\xae\x38\xc1\x28\xaf\xd9\xf2\x4c\xa3\xc4\x4a\x10\x8c\x92\xd8\xac\x47\xd2\x04\x7a\xff\x27\x47\xd4\x5b\xe6\xc7\x13\x21\x3f\xf4\x7c\x4a\x65\x3c\x9f\x28\x46\x94\x9f\x57\x86\xde\x94\x0f\x07\x2b\xea\x67\xf0\x37\x13\xf1\x07\xf5\x39\xdb\xee\xcf\xb7\x74\x36\x02\x41\x16\xc7\xe0\x24\x13\x64\xb1\x14\x4e\x32\x41\x16\xc7\x78\x25\xb9\x9a\xb8\x32\xfd\xd9\xba\x84\xdb\xe0\xcf\xf8\x10\x20\x12\x7f\x43\x36\xba\x3b\x6f\xca\xf1\x84\x02\xf0\xa7\x09\x3c\xee\x94\xa9\x68\xec\x9e\x67\xeb\x29\x65\xa6\x2e\xda\x84\x7b\xde\x94\x31\x67\xe4\x0f\x5f\xe3\x2c\x22\xca\x62\xd7\xf3\xa1\xcd\x10\x3c\x33\xf6\x88\xdb\xdc\x9f\x33\x1b\x5f\x33\xa2\xdc\x24\xf3\x3f\xf8\x1a\xc5\xa8\x07\x35\xfe\x23\xa9\x89\x3d\x92\x9a\x88\x07\xe7\xcf\x71\xf3\x9c\x48\xe2\xda\x9b\x8d\xd5\xec\xc4\xb4\x63\xe6\x99\x1a\xf5\x56\x46\xae\xb5\x3b\x92\xdb\x94\x37\xc5\xad\x83\x89\x59\xc4\x7a\xa5\xe4\x99\x5c\xab\x83\x3d\xd9\x49\x6b\x47\xca\x74\x98\x3c\xf3\x42\xb4\x7a\x63\xb4\x3c\x53\x8b\x38\x1f\xfe\x1c\x34\x8f\x4a\x29\xe8\xe6\x18\x2d\xdf\xc9\x59\x89\x62\xf2\xe7\xa0\xf9\x91\xef\xd4\x22\xf6\x67\x27\xbb\xcd\xf5\xc2\xb0\xcd\x96\x2b\xdb\x9f\x0d\xab\x19\x5f\x67\x82\x44\x15\xfa\x73\x0c\x7d\x0a\xdd\x9e\x87\xfc\xde\x31\xf4\x29\x54\xbb\xfa\x78\xbf\xd3\x08\x62\xbb\xf8\xb3\x45\x22\x15\xd5\xae\x3e\x38\xa9\x45\xca\x57\x0a\x0a\x86\xa0\x9e\x63\x64\x58\xec\x7f\x7d\x4b\xf1\x20\x45\x52\x93\x5a\x6a\x26\x06\xd9\xac\x02\x83\x07\x32\x2c\xac\x2c\x49\x53\xc8\xce\x31\x7c\x16\x4d\x41\x39\x8b\x93\xb9\x3c\x92\xe7\x5d\x24\x3b\x7a\x3c\xd5\xe7\xe1\xe5\x63\xf3\xc7\x14\x96\xb3\x18\x76\xfa\x48\x5e\x30\x37\x92\x16\xcc\x88\x24\xb7\xed\xfb\x9d\x17\xcc\x40\x52\xb5\x7b\x4a\x91\xdb\xd6\x0d\x9c\x87\xd7\x4b\x9e\x4d\x6f\x08\x34\xc2\xab\xa7\x47\xd2\xdc\x6a\x7c\x67\x5e\x89\xfc\xc1\xe9\x49\x4b\xaa\x66\xb6\x33\xd0\x12\xd3\x79\x77\xdb\xcc\x2f\x59\x06\xf9\xe5\xc7\xca\x35\xed\x17\x62\xb3\x01\xf3\x98\x87\xc1\x7a\xdc\x8b\xe6\xe1\x19\xfd\xbe\x2b\x43\x5d\x4f\x9f\x93\xce\xb4\x50\x09\xfb\x64\x6b\x1e\xca\x5b\x9c\x5e\x76\x2e\xfa\x96\x37\x65\x1d\x4e\xcb\x7c\xf7\x62\x5b\x9e\x87\x5d\xb2\xde\x23\xa7\xe0\x9a\xd3\x41\x43\x8f\x74\xca\x5a\x49\x31\x76\xc9\x56\xda\x25\xf6\x5b\x47\xe1\x3e\x92\x6c\x9e\x3e\x9e\xa7\xa0\x9b\xc5\x84\x1d\x8f\x24\x07\xed\x9d\x52\xe4\xa0\xcd\xdf\x3d\x6f\x67\xbe\xf3\x76\x92\x32\x97\xde\x4c\xcd\xd4\xc0\x3b\x65\x7e\xf4\x87\x7c\xf7\x55\x3d\xe9\x53\x07\x08\xdf\xe9\x19\x51\x48\x18\x37\x3f\xe6\x69\xc3\xad\x0f\xeb\x79\xda\x70\xeb\x9d\x60\x0a\x0f\x3a\x1b\x43\x73\xda\x8c\xdb\xf3\x9d\xcc\xb8\x35\xdf\xc9\x57\xee\x93\x74\x0a\x2b\x3a\xdb\x9d\xef\x7c\xcf\x3f\xf2\xe1\xd4\xab\x91\x96\x93\x98\xa5\x1c\x35\xaa\xfd\xdb\xa7\x38\x45\xdc\x37\x5b\xcb\x2f\x35\xa4\x3e\x76\xa7\xb2\xf0\x4e\x93\xc6\x8e\x29\x1a\xbf\xd9\x58\x8d\x82\xa7\x4e\xac\xac\x53\xf0\xd4\xd9\x6e\x6a\xe3\x90\x7c\x54\x90\x29\xb4\xea\x74\xe0\xfa\x23\x49\x71\xc3\xea\x35\x85\x5d\x9d\xed\x8a\xa4\x85\x3b\xf2\x0f\x52\xb3\x51\x1d\x9f\x0a\x25\x0f\x35\x8c\xd6\xc0\xa6\x80\xad\xc5\x0c\x2d\x8f\xe4\xc5\x31\x53\xaa\x5b\x95\x76\xa8\x55\x35\x75\xf5\x3c\xa5\xd0\xe5\x36\x52\x8c\xb8\x54\xcc\xac\xf2\x48\xc2\x99\x03\xd8\x9e\x42\xbc\x16\xf3\xcc\x3c\x92\x8d\xdf\x69\xa4\xa2\x47\x70\xf9\xcc\x13\x08\x04\xff\x37\x04\xa2\xf0\xff\xe7\xd0\x98\x0e\x51\x7f\x24\x8f\x2a\xbd\x2a\x40\x84\x49\x60\x1e\xc9\x73\x93\x36\x29\x27\xfa\x38\xf3\x9d\xda\xd4\x53\x35\xb5\x89\xc5\x7f\x7a\xed\xb1\x68\x95\x2f\xf8\xe9\x53\x5e\x35\xfe\x06\xc8\xc7\x3c\xbd\xfa\x4a\x24\x0d\x5c\xc9\x97\xf6\x86\xe5\x99\xc7\x8d\x9e\xda\xf6\x3f\xa4\x50\xb5\xa9\xe6\x3b\x0d\xdb\x45\xcf\xb0\xfa\xf2\xa6\x47\x26\xcf\xd4\x0a\xf6\x25\x03\x6f\x2b\x16\xc9\x69\xe4\x2d\xc9\xa4\x1f\xf1\xd2\x1f\x0b\x92\x12\x96\x9f\xaf\xe8\xca\x4d\x24\xaf\x1c\x7a\xe7\xf2\x1c\xf7\x9d\x66\x5e\x9e\xe3\x77\x3e\xf4\xa2\xe6\x4d\xa3\x71\x98\x37\x97\x9d\x21\x8e\x31\x79\x44\x48\xa8\x6f\xc4\x62\x35\x3f\x2f\x1b\x24\xcf\x4c\x12\x1a\xf7\x6c\xf8\x80\xa6\xe1\xb8\x24\xad\x7e\x44\x63\x39\x1a\x2d\x85\x96\x7a\x44\x9c\xaa\x45\x24\x47\x69\xb1\x2b\x18\xa0\x7b\x9c\x3d\xa2\xf8\x4c\xe8\xcf\x0b\x3c\xf7\x9d\xdf\xc8\x7f\xc7\xc2\xbb\x20\x6b\x61\x93\x22\x8f\xb1\xe3\xa6\x1e\xd1\x8d\x65\xff\x26\x91\xf1\xc9\x39\x20\x90\xee\xd9\xb8\x60\x4e\x32\x19\x63\x14\x9b\x17\xfc\x2c\x8c\x23\xb9\x8b\x1d\x36\xfe\x88\xc6\xa6\x70\xe6\x91\xbc\x18\x57\xc5\x24\x79\x31\x76\xb1\x49\xf2\x62\x6e\x28\xd3\xc9\x8b\x5b\x0e\xa0\x0b\x86\x96\x96\x92\xdd\x22\x0e\xe5\x6b\xd3\x22\x9e\x9a\x8f\xe2\x1d\x2f\x05\x50\x71\xc1\x98\x64\x2f\xce\x79\x79\x11\x4f\x3a\x22\x0a\x5c\xc3\xc6\x73\xc1\xc3\xc2\x66\x17\x02\x43\x8e\xc1\x10\x18\x66\xd6\x6e\x0f\x08\xcd\x21\x07\x7b\x49\x1d\x0c\x4d\x4c\x57\x18\x29\xc4\x96\x5a\x8c\x14\x2a\xff\xcc\x80\xf3\xbc\x4a\xd3\x2e\x44\x0f\x16\xbd\x54\x86\x5d\xc5\x13\x49\x3b\xd3\xfb\xea\xad\x67\x03\xc9\x03\xc7\x26\x26\xd0\x70\xe2\x45\xa6\x29\x11\xb9\xc9\x4d\xa7\x48\xe6\x32\x3e\x61\x44\x3c\x7b\x44\xe6\x5d\xca\x61\x98\x1a\xa2\x87\x69\x50\x05\xbb\x1c\xf1\x40\x4d\xe1\x88\x03\xf1\x9e\xe6\x4f\x3c\x4e\xb4\x35\xf1\x27\x56\xae\xaf\x93\x24\xc8\x27\xa7\x45\x81\xc6\x08\xbd\xab\xb0\xa8\x06\x75\xc2\xeb\x9d\xb6\xb1\x6e\x46\x8a\xfa\x79\xf5\xf2\xf2\x32\x72\x85\x99\x54\x62\x4f\xa1\xed\xa6\x5e\x01\x86\x33\x9d\xf7\xb8\x81\x31\x9a\x06\x03\x1f\x1d\x9d\xc5\x5c\x88\x47\xaf\x79\xaa\xff\x76\xf6\x14\xa7\x3a\x26\xce\x67\x16\x27\xef\x41\xc3\x2d\x9e\xce\x9d\xd9\xed\xdc\xc6\x47\x67\x29\x08\x2b\x3c\x5b\xea\x60\x8f\x63\x67\x8a\x9a\x26\xf1\xe8\x25\x4f\x1d\x8d\xc1\xb6\x60\x80\xf0\xd1\x59\xdb\xe6\x45\x3c\x7a\x7a\x15\xb6\xce\x9e\xdf\xba\x39\x2d\x45\xb9\x39\xec\x46\xe6\x49\x3c\x7a\x26\x90\x21\x19\x3d\xa3\xe7\x20\xc0\xde\x22\xda\xf5\x5c\x53\xc9\x3f\xb5\xdd\x92\x89\x13\x8f\x4e\x83\xcc\x95\x78\xf4\x1a\xd1\xe9\xc5\xf8\x4f\x65\xbb\x47\x67\x34\x5d\xe2\x7d\xbf\xdf\xde\x2a\xf8\x46\xf2\x71\x9b\x67\xc3\xf5\x3f\x11\xdd\x3a\x8e\xb1\xea\x10\xd8\x7e\xa5\x4e\x6e\x1d\xf3\xd8\xc0\xe2\xa3\x97\xbc\xec\xd6\x5d\x79\xea\xd6\x5d\x29\x19\xc7\x3a\x35\x86\xc2\x88\xc9\x29\xe2\xc4\xea\x40\xd8\x47\xa2\xb1\x7c\xaa\x59\xee\x60\xd7\x47\xaa\x6a\x0d\x3f\x05\x72\xc7\x0e\x52\x41\x7a\x70\x9c\x0a\xa2\x5c\x1d\x8f\xfd\x48\x6e\x2b\x1b\x55\x05\x81\x77\xe7\x5d\x23\xf0\x22\xb9\x6d\x6c\x3e\xce\xdc\x7c\xf4\x74\x30\xf8\xbc\x96\x0a\xba\x6d\x1c\x93\xd5\x47\x47\x67\x79\x08\xb5\x5c\x1d\xb4\xf9\x48\x45\x12\x75\x20\x2e\x08\xad\x49\x58\xe4\x4a\x14\xd5\xac\x8b\x79\x19\xd1\xf3\xf2\xca\xbb\x6e\x4d\x8d\xc8\xc8\xa5\x60\xe6\x65\xbe\x65\x5e\xd2\xc1\x8b\x99\x47\x97\xb2\xb2\x38\x43\x2b\x2b\x8b\x3d\xd1\x08\xe5\xa3\x73\x30\x3a\xb1\xf3\x3d\xd3\xe3\xdb\x8b\x3f\x6d\x67\xb5\x70\x56\x57\xd6\x03\x0a\x5c\x75\x3a\xbd\x99\x92\x8c\x12\x64\x67\x68\x66\x5e\x29\xe5\xdf\xa6\xee\xd9\x4c\x4b\x5f\x58\xa3\x06\x34\xdf\x95\x2d\x54\x80\xe6\x0a\x4e\x7d\x36\x63\xe9\x0a\x33\xbe\x19\x4b\x57\x58\x3a\x4e\xe7\x7c\x16\x76\x0a\xe7\x73\x3e\x0b\x53\xaf\x19\xd5\x44\xa7\x36\xf3\x1a\xd1\x54\xe1\x9d\xeb\x3c\x53\x8e\x01\x07\x3d\x55\xf8\x38\x88\x3e\x3f\xfd\xfa\x2f\x29\x88\x96\xbb\x0f\x85\x6b\x7e\x44\x9e\x02\xc9\xe7\xb4\x6d\xe6\x2e\x2a\x25\xa2\x9b\xc3\xe9\xd1\xcc\x5d\x04\x2a\x76\x1a\xdc\x7c\x16\xe6\x6d\x33\x77\x51\x94\x64\xe7\x76\x3e\x0b\x1b\x9f\x72\x3b\x57\xe2\x21\x67\xc3\x75\x94\x2a\x1b\xa0\x52\x58\x4a\xa6\x5c\x3c\x4b\x8b\xa8\xe8\xd9\xf7\x37\xf6\x33\xb3\x8b\x0b\x28\xfd\xbc\xcb\x5f\x17\x83\x45\xd7\x98\xe9\xa8\xbc\x2f\xbb\x79\x35\x4f\x19\x2d\xba\x06\xaa\xa3\x16\xd1\xcd\x63\x2e\x36\xf0\xab\x6c\xa8\x62\x62\xac\xc0\xf5\x67\x03\xa2\xca\x9c\x6f\x40\x54\x39\x2f\x84\x9f\xae\xa0\xf7\x67\x03\xb0\xca\xfa\x6e\x20\x54\xd9\x99\x9b\x19\xeb\xde\x29\x03\xce\xb4\x46\x54\x9d\x46\xa6\x85\x71\xa6\xb9\x25\x37\x73\x18\xe5\x62\xda\x0c\x3b\x1d\x99\x9b\xe6\x3d\xc8\x95\xa6\x19\x77\x0a\xc2\x6e\x1a\x48\x7d\xc6\x30\xd0\x8c\x34\xe5\x5c\xbd\x21\x2a\x62\xc3\xba\xbd\x22\x72\x01\xba\xcd\x54\x34\x98\xb9\x37\x89\x1a\x58\x79\x82\x52\x37\x90\x74\xf3\xf6\x8a\x18\x57\x0a\x76\x7b\xce\x14\xdc\xf5\x6e\xca\x75\x73\xae\x7c\xea\xe6\x70\x09\x12\xb0\x3a\x01\x58\xf3\x26\x89\x03\x13\xca\xc0\xea\xb3\xb4\xfc\xe6\xeb\xdf\x34\xc4\x9f\xc5\x3c\x35\xc7\x03\x67\xbf\xf3\x4c\x9f\xc4\x27\x4e\x11\x3d\xbe\xb7\x07\xa3\xb0\xe7\x91\x2a\x4e\x37\x2e\x5f\x1a\x3a\x8b\x99\xc8\xdc\x8e\x67\x2c\x1a\x86\x68\x0f\x20\x6d\xd3\x69\xa5\x4f\x82\x4c\xa7\x31\xda\x67\xee\xb4\x4e\x2b\x7d\xe6\x8e\xa5\xb4\xd2\x0d\x8b\xf8\x14\x2d\x64\xbb\xde\x72\x69\x5c\x1e\xba\x71\x47\x2a\xfc\xe7\xdf\xf0\x74\x31\x92\xd4\xdf\xcb\x25\xd7\x63\xe3\xbb\xcf\x18\x41\x8c\xef\x3e\x89\x1f\x98\xa4\x9c\x06\xe9\x36\x85\xef\x4e\x1c\xd0\x04\xde\x0d\x9e\x7f\xde\x86\xb6\xbe\x05\x4d\x81\x32\xa9\x92\xf2\x41\x00\xa6\x9a\xe2\x76\x6c\x57\xda\xad\x90\xd3\x9a\xfa\x6c\x33\x4e\xa5\xb6\x50\x2d\x8c\x88\xd5\x22\xfd\x40\x44\x2a\x77\x44\x43\xb2\xaf\xf3\xdf\xd9\x87\x9f\x77\x05\x29\xbe\xd2\xdb\x0e\x58\xbd\xd2\x50\x45\xd9\xd7\xd4\x77\x1b\x60\x9a\xbf\x38\x61\xc5\xcc\xc3\x9f\xbf\xa4\xa5\x8e\xa4\x27\xd0\x7b\x92\x66\x3a\x4a\xb3\x31\xda\xb5\x70\x6e\x9a\xfd\xf1\x8a\x5a\xdc\x07\x8d\xbd\x11\xdd\x58\xf4\x0b\xa3\xb4\x2f\xa2\x71\xa7\xc9\x20\xaf\x28\xdc\x86\x69\x5f\x27\x36\x18\xc3\xb4\x2f\xc2\x7a\xa7\x61\xda\xf5\xc8\xa7\xdb\x0f\xf3\xa9\x71\xd9\xa9\xa2\xb1\x81\x33\xa2\x61\xda\x34\x67\x7a\xac\x28\xd5\xec\x60\x31\xb5\x75\x03\xc8\x62\x32\x13\x86\xbb\xc5\xd4\x65\x66\xc8\x81\xfb\x69\x06\xd1\xcd\x09\xdb\x1d\x22\x1b\x7b\x22\x90\xee\x18\x2a\xba\x83\x64\x63\x19\x31\xe1\xe3\x15\xa3\x86\x30\xdd\x2d\xe6\x46\x43\xba\xaf\x18\x54\xcd\xf8\x78\xc5\xfc\xd8\x89\xb4\xcf\x70\x80\x74\xcc\x70\x98\x03\x0c\x47\xc8\xec\x20\x1d\x51\x20\x4c\xf2\x78\xc5\x72\xda\x21\xfd\x2a\x29\xca\xdc\x1d\x54\x51\xf3\x3d\xa6\xbc\xbe\x0c\x49\x2e\x29\xd7\xf5\x2f\x79\xfa\xb5\x98\x2a\xfe\x6c\x5a\x4e\x49\x34\x80\x97\xa1\x04\xcb\xd3\x4d\x03\xe8\x37\x18\xc2\xd0\x45\x9c\xf0\x7a\xc6\x8c\x60\xb0\xf7\x35\xd2\xe7\x4e\x9e\x82\x1a\xd6\x89\xd8\x46\x49\x10\xcf\x63\xbb\x47\xfe\x2a\x4c\xfd\xcc\xb3\xad\x67\x29\xe6\xe3\xfa\xe6\xa1\xb1\x88\xe9\x70\x38\xc0\xd2\xc3\xf0\x4c\xd0\xd6\x01\x07\x18\x03\x3b\xe0\x00\x63\xd8\x85\x15\x7f\x16\x4b\x9e\x56\x3f\x1d\x88\x4e\xb5\xc2\x7f\x95\x5d\xbb\xdd\x4c\xff\xe1\x5c\xa5\x33\x05\x39\x42\x80\x6e\x31\x5e\xfc\x66\xf6\x0b\x2f\xde\xee\x99\x1a\x7d\x5c\x6a\xca\xb1\x13\x6f\xe4\xdd\x3f\x27\x9f\xe6\x65\x1d\x1b\x2d\x26\x1e\x01\xc8\xdb\xcd\x66\x64\x4e\xc8\x79\xb2\xe6\xcc\x09\x39\x4e\xb6\x14\x63\xc6\x6b\x79\x3f\xed\x62\x73\x69\x48\xc3\x51\x0a\x34\xdc\x0c\x61\x47\xcb\x5f\x97\xde\x4d\xb9\x46\x82\x96\x7c\xfa\xf1\xbb\x29\xf7\x67\x91\x3e\xd3\x6a\x28\x07\x8b\x43\x28\xf2\xe7\x29\xff\xd1\x6a\x28\x07\xaa\x9f\x29\x23\xaf\x91\x2a\x2e\x67\x8e\x61\x71\x98\x33\xf2\x22\xbe\x64\x9a\x33\xb2\x1c\x2d\x25\x43\xd8\xc6\x7f\x9d\x99\x85\xe0\xb2\xe9\x94\xde\x35\x5a\xb0\x71\xe7\xe5\x60\x05\x9b\x51\xb2\x1c\x35\xa2\x13\xc9\x5c\xa9\xe4\x57\xad\xff\x0f\x76\x1a\xd1\x4d\x3e\xe5\x32\x78\xc6\x5f\x02\x9a\x9d\xc3\x99\x0f\x08\xe2\x9b\xce\xf0\x5d\x62\x0e\x32\xc7\x64\x01\x8a\x31\xcd\x23\x59\x62\xb9\x11\x36\xbd\xe1\x4c\x9d\xce\xff\x1d\xea\x81\x69\xe6\xc8\xb0\x97\x4c\x33\x47\x26\x54\x71\x9a\x39\x32\xd1\x82\xd3\xf0\xf4\x04\x1d\x4e\x93\x45\xe2\x19\x9d\x26\x8b\x0c\x0d\xc5\x34\x3d\x64\x8d\x9d\xd5\x39\xc0\x0b\x10\x95\x49\xd2\x6f\x22\x85\xe6\x34\x29\x1e\xd8\xac\x69\x9a\xc7\x02\x82\x65\xce\x61\x88\xf2\x40\x32\xaa\x93\x82\x4c\xa9\x42\xf7\x0b\x84\xde\x89\xc2\x9f\xd3\x18\x19\xe6\xc0\x34\x46\x86\x4b\xf6\x14\xa5\xca\x64\x96\x8a\x0d\x32\x51\x90\x73\x1a\x24\xf1\x96\xb2\xff\xef\xff\x15\x02\x81\xa6\xb0\xe9\x25\x2a\x9f\xa0\xe9\x25\x8a\xa5\x90\xe9\x25\xaa\xe3\xc4\x4a\xca\x3e\x34\x09\x4d\xc3\xc4\x38\xd1\xf4\xe9\xf7\x89\xa6\x7f\xe7\x65\x34\x7d\x2a\xab\x84\x1a\xd7\x5b\x30\x8a\x59\x3e\x9d\x9e\xdb\x0d\xd1\x94\x7c\x33\x4f\x1d\xc1\x91\x82\x84\x87\xc8\x7d\x49\x38\xf5\x3b\x16\x0d\x11\x38\xde\xb9\xb8\x4f\x83\x7c\x7b\x24\xae\x61\xf4\x33\x20\xc8\x7c\x28\x10\x64\x86\xd6\x3c\x29\xcc\x54\x21\xd3\xaf\x2c\x2d\x01\xd3\xaf\xac\x4a\xe1\xd2\xaf\xac\x6f\xc1\xd2\x7b\x6c\xbd\x06\xa2\xd7\xdc\x0a\x9d\x1c\x1c\x40\xf0\x74\x72\x70\xbc\xe0\xd3\xc9\xc1\xc1\x8f\xcd\x65\x58\xd6\xc8\x33\xc1\xb2\x98\xbf\x22\x5b\xbc\x2a\xe7\xe9\x32\x2c\xab\x45\x12\x2c\x0b\xd3\xac\xa0\xe7\x1d\x70\xf2\x5c\x06\x62\xb1\xf3\xac\x5c\x49\xf9\xa1\x60\x3a\xb9\x6e\x1b\x7b\x9e\xd9\x29\xa6\xc5\x0e\xaa\x79\x2e\xe3\xb2\x58\xe1\x22\x5a\xec\x20\xd1\xa7\x50\xea\x1d\x64\xf8\x5c\xc6\x31\xd2\xbf\x42\xa9\x87\x56\x64\x2e\x67\xaf\x60\x24\x84\x52\xef\x60\x9c\xe7\x32\x6e\x91\xbd\x69\xd9\xef\x1b\x7b\xa9\x80\xe9\x1d\x80\xf9\x5c\x86\x31\x32\xe5\x05\x4c\xbf\xea\xc8\x33\x2d\x15\xf4\xd6\x65\x50\x23\x03\xb3\x0c\x63\xbc\xf3\x0b\x55\xbb\xe5\x4d\x01\xe4\x46\xde\xf4\x48\x50\x35\x83\xcd\x09\xbb\x9a\xcb\x61\xe0\x69\x93\xc1\x37\xe9\x0b\x13\xfe\x67\xd0\x9c\xac\x32\x7e\xf0\x65\x0c\xda\xfb\xa1\x00\x45\xe9\x28\xc7\xeb\x64\x26\x38\x5e\x27\xa3\xb6\x85\x8a\x4a\xe7\x3b\x5e\x27\xf3\x49\xd8\x85\xeb\xfd\xa1\x00\x45\xed\xdf\x18\x96\xb9\x0c\x49\xa3\xf9\xdb\xa9\x2e\x98\x50\xdb\x00\x35\x7e\x2f\x80\xf9\xb8\xde\x67\x6e\xc4\x40\x52\x80\x3e\xa3\xb6\x95\xea\xe2\x7a\x25\x37\x62\x22\x19\x15\x55\x91\xdc\x88\x03\x49\xd8\xb5\x3b\x75\x11\x0e\xea\x7d\x26\xb4\x1a\x43\x28\x18\x7a\x89\x7e\x2d\x14\xfa\x20\x70\x6e\x0a\x77\x3e\x26\x1a\xb4\x70\xe7\x25\xf7\xa2\x6d\x77\x2c\x03\x2a\xa4\xf9\x20\x24\x76\x0a\x69\x3e\x88\xcd\x9f\x02\x9a\x17\x82\xdc\xa6\x92\x9f\x0f\xa8\x02\xe6\x66\x3f\x8d\xf4\xd1\x33\xda\x27\xc4\xce\x7c\x6b\xf6\xd3\x9b\xf4\x92\x76\x57\x42\x30\xa7\x80\xe6\x63\xbe\x92\x6b\x4d\x3d\x97\x6b\x4d\xcf\x0b\x57\x36\x53\x17\xe1\x70\x08\xeb\x9d\x4a\x74\x3e\xe6\x99\x52\x5c\xcf\x7c\xb7\x25\xf1\x77\xe1\x70\x20\xab\x9a\x42\x96\x97\xdc\x33\x04\x25\x7f\x36\x04\x1a\xb1\xe5\x45\x61\x43\xd8\xf6\x85\xb2\x59\x6c\x23\x11\x7a\x24\xf9\x42\x59\x2f\xc2\x80\x97\x58\x43\xb6\x7d\xa1\xec\x63\xc2\x80\x17\x38\x53\xa6\x50\xde\x25\x07\x80\x60\xdd\x25\x17\x68\xc1\xba\x67\x1b\x91\xec\x5e\x8f\xa4\x9a\x71\x22\x7d\x0c\x28\x40\xbb\xfd\x38\x4a\x0c\xc5\x45\xd0\xed\x92\xbb\xff\xc7\x31\x63\x23\xcf\x96\xbe\x2b\x48\x06\x81\xe4\x99\x10\x03\x1c\xb2\x1f\x7b\x53\x47\x24\x79\x53\xd9\x7d\x3f\xf6\x98\xe6\x50\xfb\x40\x7f\xc6\x50\x28\xe3\x79\x89\x19\xe9\xe3\x9c\x14\x71\x98\x0a\xf4\x5d\x41\x70\xce\x0f\x99\x79\xb1\xac\x18\xf4\x7d\xc4\xee\xf2\xb1\x2f\x27\xd7\xbc\x8f\x7d\xa0\x5c\x92\x3e\x30\xf3\x71\x49\xfd\xd8\x56\x1d\xa5\xe4\x93\x03\x9c\xff\x28\x29\x05\x00\xc1\xf9\x21\x29\x05\x9a\xf8\xc7\xb6\xeb\xd8\x13\x84\x03\xaf\x40\x55\xe7\x07\x27\x27\x0a\xbe\xc0\xde\x35\xea\xc5\xc7\xc6\x69\xc2\x43\xe7\xc7\x4e\xcd\x5c\xed\x3f\xe6\xe9\x23\x78\x6c\x7e\x70\x6a\xa2\x72\x7d\x6c\x9c\x8e\x89\xe3\x63\xe3\x74\xec\x2e\x1f\xfb\x7d\x08\xdf\x9d\x1f\xd8\x4a\x67\x5e\x96\xe7\xaf\xe6\x61\xf3\xa7\x74\xb8\xd8\x4a\x81\xef\xce\x8f\xb3\x61\xc5\xec\xf5\xb1\x9b\x27\xb6\x37\x61\xbb\x2b\x70\xd3\xf9\xb1\x97\x27\xc6\x93\x8f\xdd\x3a\xb1\x37\x7c\xec\xc5\xe4\xba\xf5\x25\xd9\x04\x9a\xe9\x37\xcc\x7d\x05\x91\x19\x91\xa7\x0e\x69\x66\xc5\x7f\xcd\x78\x10\xad\x47\x80\xeb\x7a\x9f\xff\x41\xd1\xfe\x32\x29\xf3\x17\x5b\xff\x59\x83\x5f\x3c\x33\x0c\xd5\x97\x90\xc7\xbc\x4c\xc8\x23\xd3\xfb\x8b\x6b\x86\xb9\x2f\x48\x76\x05\x8c\x3f\x4d\x9b\x7b\x74\x14\x28\xf1\xe6\x56\xa0\xa7\xf3\x8b\x6b\xe6\xce\xbb\x5d\x5f\xd2\x16\x5c\x33\x3d\x3f\x9d\x7a\x98\x72\xec\xcb\x60\x07\xf9\x7a\x7a\xf7\x9e\x4f\xed\xa9\x61\x8c\xbf\x78\x6a\x46\x2a\x48\x5b\x0f\x44\xb7\x95\x05\x29\xde\xdd\x0a\x37\xcf\xfc\x2e\x9a\x4a\x0d\xd1\x5e\x99\x78\x5f\xb3\x56\x12\xa1\x39\x85\x1a\xaf\x90\x03\xcd\x2f\xbe\x99\x99\x4f\x87\x1e\xd2\x1a\x5c\x33\x2c\xaa\x2f\xae\x99\x91\x82\xec\x79\xe5\xb6\xeb\x8c\xea\x07\x5c\x03\xf3\xbb\x68\x4e\xfe\xe3\xe6\xcc\xd4\x98\xe6\xf0\x5b\xad\x8d\x36\xd3\x58\x93\x00\x1e\xef\x53\x3b\x41\xd9\x51\x04\x65\xaf\x30\x1f\xcd\xef\xa6\x75\x74\xcc\xb6\xcb\x90\xa1\xc3\x23\xda\x53\xae\x5b\x97\x72\x4c\xa4\x80\x3a\xf6\xc5\x21\x3a\xf2\xa9\x07\x2b\xad\x73\xb0\x1a\x31\xf3\xf3\x87\x1b\x07\xa5\x40\x69\xd8\x2b\x0c\x4f\xf3\x87\x17\x27\xcf\x7c\x5b\xe8\x11\x7d\x5b\x60\xaa\x99\xe6\x77\x44\x5f\xfc\xe1\xc5\xe9\x11\xed\xf6\xb8\x53\xb0\x6b\x3c\xf2\xd4\x89\x7d\xdf\x92\xed\xb9\x79\x5f\x96\x9f\xa0\xe4\x5d\xd3\x84\xa2\x71\x38\xf1\xfa\x49\xb8\xe6\xfc\xe1\xa9\x41\x35\xfb\xe1\xa9\x61\xe9\xfc\x70\xcd\xdc\x11\x5d\x47\x14\x94\x1f\xae\x19\xfa\xf8\x67\x5b\x33\x28\xea\xf9\xc3\x19\x93\xf6\x39\x5a\x38\x30\xcd\x1f\xbe\x19\x26\xee\xcf\xbe\x99\x92\x87\x7f\xea\x46\xfe\xaa\x1d\x3d\xf6\xee\x1f\x37\x32\x96\xdd\x2f\x37\xb2\x3c\x6d\x46\x97\xf0\x53\xd3\xcb\xbd\x15\x36\x5b\xe5\xc8\x6f\xc4\xa9\x9f\xfb\xb7\x41\xe8\x67\xac\x4a\xe6\xf9\x3d\xc7\xfb\x5b\x9b\xc3\x4b\x5e\xb6\x39\x9c\xed\xd4\x44\xbf\x67\x0e\xdb\x1f\x00\x2d\xce\x0e\xe7\x71\x3f\x47\x66\x90\x08\x10\x63\x05\x30\xd1\xef\x49\x34\xf1\x34\xd1\xef\x19\xeb\xd5\x0f\x47\x0d\x87\xe8\x0f\x47\x4d\x4d\x49\xbe\x62\x72\x00\xfc\x70\xd4\x94\x94\x2c\xfb\x78\x1a\xbb\xdd\x58\xfa\x14\x37\x4d\xc9\x5f\xdd\xd8\xb7\xc2\x6e\xec\xfb\x32\x8d\xb5\xf8\x67\x86\x10\x14\x20\x41\xe7\xcf\x3b\xe3\xfa\x87\x13\xa7\xfe\x07\xdc\xe2\x9f\x3d\x3c\xb1\xb6\xfd\x0d\x7a\xa2\x21\xd2\x13\x17\xa2\xdd\x04\x1d\x49\x7e\x01\x06\xe7\x0f\x97\x4e\x49\x05\x3d\xcc\x9c\xeb\x02\xd4\xb7\xeb\x2d\xc7\x2d\xaf\x11\x9d\xfa\x91\xf9\xff\x67\x2f\x0d\x0a\x8d\xd8\x83\x13\xa4\x3e\x8d\xa1\xbf\x72\xbe\x3a\xf3\xfc\x15\x8f\xc3\x9f\x81\xbf\x41\xa8\xfd\xd9\x16\x1d\xbd\xc9\x89\xe8\xaf\xa8\x3b\x7f\xb6\x45\xbf\x7d\x68\x37\x66\xdc\x4c\x7f\x36\xbf\x45\x9b\x70\x2a\xfa\x2b\x5e\x1b\xd3\x16\x5f\x6f\x4f\xe0\xa7\x79\xbf\xfd\xf3\xcb\x94\xac\x74\xa0\x95\x53\xe9\x2f\xa7\x05\xdd\xb6\xb0\xad\xd3\x20\x9b\xa6\xa3\xa6\xfc\x61\x8c\xe3\xb8\x33\x03\xf2\x15\x75\xc2\x0c\xc8\x57\xb4\x16\x33\x20\x5f\xd1\xc9\xcc\x80\x7c\xbd\x3d\xe7\x64\xa2\xd1\x1a\xcd\x79\x7c\x45\xf9\x10\x76\xbe\xd5\xb7\x60\x37\x0f\x15\xed\x6f\x61\x60\x88\x28\xcf\x41\x0a\x52\x0a\x97\x9a\xb6\x6e\xc6\x87\xc6\xda\xad\x93\x75\x66\xca\xe3\x3b\x40\x54\x53\x1e\x07\x79\xfc\x47\x3e\x8a\x74\xa2\xd6\x4a\x00\x85\x7f\xa4\xf5\xe6\x92\xe6\x54\xf4\x41\x37\x43\x72\x8c\xc5\x7b\x39\x15\xfd\x65\x2a\xf7\x47\x3c\x5d\x87\x8a\x68\x53\xfa\x1d\xd1\xbe\x00\xef\x0b\x4b\xe0\xf8\xf3\xc6\x48\xb6\x0e\x93\xc2\xbf\xef\xda\x51\xe0\x1b\xe6\x32\xb7\xf1\x05\x3e\x74\x39\x33\xfd\x85\xa7\x60\x1d\xa4\x27\xb8\x53\xb0\x5d\x05\xbe\x70\x2f\x53\x1f\x5f\x38\x37\x96\x53\xd3\x03\x51\x5e\xce\x45\x5f\x4b\xea\xe4\x39\x3f\x52\x27\x73\x90\xb2\x1d\xad\xc3\x93\x9c\x85\xb6\x0c\x76\xbf\xd1\x47\x17\xc9\xe8\xd9\xac\x96\x93\xd1\x97\x23\x3d\x85\x51\x39\xff\x85\x44\x27\x0d\x12\x6b\x0e\x13\x75\x1d\xd8\x94\xd3\x1e\x25\x59\xe1\x68\x5f\xca\x3e\xdf\x40\xc2\x2f\x27\x9f\x77\x22\xa1\x47\x72\x2a\xf2\x74\xa2\x0d\xca\x60\x2b\x97\x51\xf3\x85\x5d\x64\x29\x17\xfd\xd9\x00\xfd\x2f\x27\xa3\x2f\xec\x9f\xeb\xc0\xa0\x7c\x47\x74\xa2\xf2\x42\x6b\x16\x8d\xa3\x27\x62\x5f\x4e\x51\x5f\x5b\x78\xf2\x5f\xec\xb3\x74\xaa\x73\x7f\x97\xd4\xca\xb4\xc8\x25\x1d\x23\x5a\x0a\x42\x06\xd6\x61\x8b\x72\xc9\x7f\x6c\x51\x2e\x69\xae\xe6\x78\xa9\xef\xd3\x5b\xa9\x02\xf2\x90\x8c\x21\x29\x77\x58\xa4\x6b\xb4\x1e\x66\x2a\xac\x05\x30\x33\xd9\x6c\x5e\xe6\xf2\xb8\x04\xa9\x3f\xcb\xfd\xef\x04\x99\xcf\xbb\x3f\x9b\x39\x53\xd2\x9f\x3f\x75\x8f\x9f\xbe\x59\x78\xff\x5f\xa7\x33\xed\x52\x79\x32\xe4\xb3\xdb\x2e\xd3\x2c\xc3\xd5\xb3\x4e\x92\xb5\xd0\x83\xa7\xed\xd2\xf5\x15\xa5\x8f\xd6\xfc\x44\x4c\xa2\x2d\x92\x22\xaf\xdf\x37\x35\xdb\xb1\x9c\x2c\x41\xe0\x13\x8f\xb2\x4e\x07\xf6\xdd\x79\xd6\x54\x01\x3e\x94\x25\xda\x7c\xf4\x8f\xd4\x65\x67\x98\x48\x32\x10\x94\x7c\x67\xe5\x72\xe6\xe1\x96\x22\x4a\xab\x94\x6c\x0b\xd0\xdb\x3a\x41\x30\x32\xcd\x05\x64\x3f\x83\xd6\x59\x42\xb2\xd7\x59\xf2\x50\x29\xe1\x99\x9c\xa6\x6e\x86\x07\x60\x19\xc8\x1e\x13\xe2\x3a\xad\x13\x11\x98\xb5\x84\x5d\xef\xe7\x2b\x69\xcd\xf6\xbc\xaa\xf8\xf6\x9e\x52\x15\x1c\xcc\xca\x12\x92\xfd\xc2\x61\xb4\x4e\x87\x34\xbf\xdf\xfd\x3c\xc1\x23\x2a\x38\x78\x50\x55\x13\xa4\x0e\x7e\xb8\x65\xde\x1c\xf4\xb1\x09\x52\x59\x72\x02\xab\x77\x98\x5d\x96\x00\xe9\x57\x1d\x79\x26\xa3\xe5\x4c\x99\x8a\xdc\x1d\x8c\x86\x99\x4d\x27\x55\x33\xaf\xf7\x60\xaa\x38\x50\xd9\x8a\xf3\xba\xcc\x73\x6a\x65\x65\x5d\xce\x46\xe0\x4b\xe5\x32\x00\x3d\x84\x0d\xeb\x72\xba\x38\xec\x17\x4b\x08\xf4\x6b\xd2\xa7\xa2\x7b\x1e\x20\xa7\xd6\x65\x2b\x1e\xf3\xe6\xb2\x15\x6f\xe4\x3b\xc5\x24\xf6\xfc\x51\xa1\x8d\x33\x92\x5d\x7f\x8d\x0a\x18\x60\x98\x21\xbe\xcc\x1d\xd5\x29\xc7\x41\xa7\x77\x24\x59\x26\xe9\x9b\xcb\x61\xa6\x3d\xdf\xc9\x16\x79\xe7\x99\x0c\xaa\xf4\x86\xd3\xda\x03\xd3\x5a\x97\x3d\x28\x23\xdf\xc9\xa0\x6a\x8d\x7c\x5d\x0e\x33\x4d\xdf\x38\xcc\x14\x45\x7a\x19\x95\x3e\x61\x59\x5f\x97\xe3\x4c\xef\x48\xb2\xb6\xa6\x8f\x35\x8b\xef\xb7\x3b\xcc\x87\xca\x80\x3b\x3d\xbe\x73\x74\x3f\x92\xac\xc4\x0c\xff\x65\x5a\xd3\x0c\x9c\x43\x4b\x3b\xff\x77\x30\x69\xcf\x9b\x36\xa2\x52\x71\xb3\x9a\x8e\x48\xc6\x67\x33\x6f\x9c\x0d\x1f\x5d\x63\x09\x40\x3e\xb2\x41\x0a\x31\x3e\x80\xca\x2d\xd1\x3f\x0f\x80\x59\x4b\xf0\xf1\x01\x03\xfc\x12\x7c\x7c\x00\xb1\x5b\x42\x8f\x8f\x2c\x53\xa1\xc5\x07\x20\xad\x25\xb4\xf8\x00\x73\xb6\x04\x16\x1f\x80\xfc\x96\x33\xe1\x37\x8c\x0d\x4b\x60\xf1\x01\xe3\xea\x72\xe6\xfb\x9a\x9d\xdd\xb0\xee\xfb\x78\xdf\x55\x05\x58\xfd\xc5\x96\xbe\x9a\x2f\x65\xe9\x9b\x91\x64\xe9\xfb\x0f\x91\x9e\xcb\xa0\xee\x8a\x5f\x77\x15\xc7\x0a\xb1\x6f\x09\xc5\x5d\xb8\xef\x2c\xc1\xb6\x0b\x97\x94\x25\x6e\xe8\x92\x73\xbe\xd8\xfc\x6c\xdb\xc6\x2a\x98\x9f\x53\x8a\xec\x95\x25\x92\x37\xca\x8e\x24\x4b\xea\x8c\xe4\x56\xe4\x0f\x72\xe7\x95\xd4\x4c\x71\x33\x1c\x1b\xc5\xb1\x40\xb6\x02\xac\x62\xe7\x5e\x41\x72\xf4\x0f\x27\x81\xf3\xdf\xb7\xe8\x27\xc5\x06\x90\x28\x67\x4a\x80\x5f\xaf\xb4\xde\x26\x8e\xeb\x2d\xc8\xf6\xb2\x92\x77\x6d\x2f\xe3\xb8\x14\xcc\xbb\x62\xe1\x5f\xa0\xbc\xa3\x65\x08\xc8\x5d\x71\x5a\xae\x62\x7b\x1e\x2b\xde\xd9\xee\x1b\x31\x8f\x0b\x54\x77\x14\x12\x50\xdd\xdc\x12\x56\x71\x08\x03\x3a\x9e\x40\xdd\x15\x4f\xc5\x02\xd3\xcd\xa5\x60\x81\xe9\x8e\x76\x02\xa6\x3b\xaa\x8c\x30\xdd\x15\xd7\xc5\x02\xd2\xcd\x35\x78\x15\xf3\xef\x10\x8b\xbd\x8c\xe9\x0e\x6f\xcd\x12\x33\xf4\x88\x9a\x50\xcd\x7d\x8a\xae\x68\x08\xf7\x01\xcc\x6b\x55\x9b\xfe\xc0\xd9\x2d\x61\xb8\x2b\x9c\x1b\x0b\xd0\x36\x20\xcf\x25\xd0\x76\x85\x82\x63\x81\xd9\x06\xb4\xb6\xc0\x6c\x83\x30\x5c\x80\xb4\x41\x27\x2e\xa1\xb2\x2b\xec\x0b\xab\xda\xf4\x07\x38\x71\x99\x1a\xfa\x00\x6a\xb6\x84\xbc\xae\x37\x03\x0e\xf0\x1a\xd0\xda\x32\x98\x1a\xe7\xd6\x32\x5c\xfa\x24\x14\x77\x19\x2e\x7d\x12\xb9\xba\x2a\x67\x31\x5f\x82\x0e\x65\x57\xaf\x58\x28\x58\x81\x95\xb0\xb2\xf7\xd3\xa6\x4f\xe9\x4f\xc0\xa1\x6c\xb3\x15\x70\xe8\x48\xc1\xb6\xfa\xb0\x96\xaa\xb1\xa2\x25\xef\x8a\x49\x91\xd5\x53\x81\x8a\x66\xd8\xc8\x0d\xc3\xb6\x57\x61\x33\xe5\x14\xa8\x60\x45\x39\x3e\xaa\x13\x11\x95\x3c\xf4\xad\xbc\x45\xf4\x35\x9c\x19\xab\x4c\xf4\x2d\xeb\xa0\x62\x8f\x60\xe6\x0b\x49\xdd\xae\xb4\xcd\x16\x87\x92\x2a\xf8\xde\xdd\xf2\x50\x84\xa4\xa9\x3d\x06\x07\xa6\x24\x50\x69\x22\x98\x57\xc3\xa6\xc0\xdd\x40\x50\xe9\x33\x24\x9a\xab\x19\x18\x4a\xed\x8d\x8d\xbe\x32\xf3\x8d\x8d\xee\xd8\xb3\x56\xf3\x3d\xe9\x7f\x2f\xfb\x22\x7a\xe5\xa9\x2f\xda\x25\xff\xb1\xd6\xde\x52\x94\x6f\xd6\x2c\x22\x23\x9e\x4f\x02\x86\x57\xc3\x38\xc0\x2a\x32\xe2\xb9\x65\x9d\x0b\xe2\xdc\x08\x18\x5d\x0d\x9c\xda\x9d\x77\x7d\x97\x43\x7d\x68\xe0\xd4\x38\xcd\x1b\xc0\xb4\xf7\x5b\x03\xbb\xfa\x3f\x13\xf0\x3c\xef\xea\xa6\xfa\x96\xfb\xa7\x7b\x1e\xf5\x95\x61\xe0\xad\x02\x98\xb5\xf7\x21\xf7\x54\xba\x69\x71\x09\xcc\xd3\x2a\x70\x13\x63\x05\x39\x1f\xfa\xb5\xd1\xce\x17\x26\xa9\xd5\x72\x6b\xca\xa7\x82\x19\xa1\x36\x35\x2e\x4d\xa9\xa0\xec\x00\x3d\xed\x5e\x5c\x08\x53\x43\xe3\x6e\xd2\x0d\xcb\xac\xaa\x9e\x4c\xc6\x3e\x97\xcc\x4a\x11\x44\x37\xec\x48\xab\x71\x47\xca\x5f\x64\x16\x08\xeb\xf6\x32\x12\x3a\x34\xdf\xcb\x48\xe8\xf6\x56\xdf\x38\x1b\x20\x84\xab\x71\x11\xaa\x79\xfa\x13\xe0\x25\x9f\xca\xb0\xcd\x29\x78\x13\xea\xc8\xc2\xbe\xcd\xe2\xd4\xf2\x50\x6a\x0f\xcb\x5a\x40\xe7\x82\x15\x63\x39\x21\x3d\xc1\x16\x4b\xc0\xe6\x56\xd1\xb3\x4c\x18\x5d\x53\xf7\x1b\x23\x40\xcf\x3f\x30\x76\xa6\x58\x71\x9c\x1d\x33\x2f\x1b\xd3\x35\x90\xe4\xd7\xa7\xaf\x85\x4d\x7e\xb6\xa8\x1b\x51\x17\x1f\x46\xe9\x76\x62\x41\x8c\x53\xeb\xf6\x3d\x88\x35\x22\x6c\x72\xc1\xbe\xb4\x6e\x1f\xf6\x25\xa5\x4a\x67\x2a\xf9\x6e\xab\x5d\xf9\x4e\x07\x3a\x43\x44\x46\xfa\x6c\x1c\x50\x49\x13\x71\xb7\xa0\x92\x26\x86\x73\x91\x84\x3e\x5b\x07\x5c\xd2\x80\xb0\x17\x5c\xd2\x23\x35\xb2\xc3\x6f\xa4\x73\x31\x0f\xdf\x11\xef\x67\xe3\x63\x38\x0d\x3d\xae\x25\xdd\x89\xed\xb8\xe7\x3f\xde\x7c\xa9\x93\xe6\xea\xff\xaa\x64\xf3\xe9\x9d\x3a\x78\x37\xbb\x53\x90\xcd\xa7\xf9\x29\x46\x2b\xda\x4a\x12\xd5\x1e\xd1\x5b\x03\x1a\xf1\x4d\x8e\x1b\x16\xd7\x0d\x64\x92\xbf\x6e\xeb\xe4\xef\xbb\x02\xb1\xa5\xf6\xbe\x78\xbf\x5d\xea\x8b\x77\x36\x3e\x93\x3c\x03\x3b\x58\x06\x10\x07\x2c\xb2\x7a\x12\x73\xfa\x53\x10\xb8\x9c\x15\x4a\xd5\xde\x41\x7f\xae\x6e\xc2\x3b\x76\xb9\xee\x6b\xc8\x8c\x24\xb0\x16\xa7\x60\xf7\x55\x83\xf3\x48\x68\xdb\x89\x23\x67\x75\xc3\x09\x4a\xbe\xfb\xd3\x33\xbe\x53\x34\x37\x81\x60\x4b\xd8\xda\x49\xbc\xd9\x12\xb4\x76\xe2\x7b\x59\xdd\xc1\xdc\x35\x6f\x56\x3d\xa3\xcc\xe5\x45\xc5\xdf\x95\x09\x10\x4f\xd1\xea\x19\xf6\x14\x63\x2f\x6a\xcd\xff\x9d\xd7\x87\x39\xd2\x51\x0b\xd9\x10\x8c\xba\x3d\xc0\xcc\x2f\xa3\x6e\x0f\xe2\x03\x16\xd9\xd4\xc1\xe2\xaf\xce\xa9\x3b\x23\x56\xcd\x83\xfe\xef\x8d\xbc\x67\x92\xf0\x1b\x4f\x12\x4c\xbe\x4b\x28\xdb\x46\x66\x9a\xe5\xf4\xe9\xe5\xe8\x79\x68\x7a\xd4\x92\x4f\x3f\xda\x1a\x23\xd9\x10\xf5\xbe\xfb\xe7\xed\xcd\x22\x40\x5a\xf6\x0f\x21\x65\x3b\xbe\xfd\x35\xcc\x20\xc7\xfe\x21\x22\xe5\x0b\x8c\xe7\x1a\x86\x76\x51\x9f\x61\x30\x17\xa7\x85\xb2\xa3\x5f\x95\x2e\x10\xf4\xf5\x22\x8f\xc1\x82\x39\x19\x3d\x49\xc0\xd7\x8b\xec\x04\x6b\x18\x31\xc8\xee\x25\x18\xec\x45\xc6\x83\x35\x9c\x76\x6d\xe6\xd9\xad\x67\xd4\x53\x34\x74\x70\xfe\xaf\xe1\xb4\x6b\x33\x65\xea\xda\x38\x52\xca\xc7\xf1\xd0\x54\x74\xfa\xda\x9e\xca\xf8\xda\x9e\x5f\x68\xf3\x44\x69\x37\x35\xf2\xe4\x9e\x3a\x9c\xd3\x83\xe5\x2c\x04\xeb\x35\x19\xb7\xe1\x1b\x6d\x1a\xaf\x99\xd5\x4b\xfe\x2f\x18\xd6\x64\xf9\x2a\xe5\xf9\xd9\x60\xa3\x5f\xc3\x77\xda\x74\xe2\x72\xdd\xe8\x60\x83\xb2\xd2\x6d\x06\x65\x61\x34\x10\x4f\x72\xa9\x57\x9e\x69\xb3\xe6\x8e\x30\x08\x7b\x4b\xa3\x7c\xa7\x2d\x29\x74\xe9\x55\xaa\x2a\x58\x4b\x4e\x21\xa1\x4d\x4b\x3d\xf3\xa6\xb5\xa4\x3b\xaf\x0a\xf3\x72\xe7\x55\xad\x65\x36\xe3\xe9\x1b\x2e\x6b\x47\x69\xca\x4b\x45\x71\x57\xb2\xf1\x52\xaf\xbc\xa9\xa3\x83\x69\x3a\x73\xb0\x0d\x44\xdd\xb7\xd1\x46\x04\x42\x1d\xb0\x86\x2d\x61\x50\x13\xd4\xb5\x84\x41\x1d\x51\x91\xc5\x93\x9c\x60\x81\x35\x8d\xae\xe2\x6e\x35\x8d\xae\xc2\xd6\x23\x7c\xea\x80\x29\x6b\x4d\xa3\xab\xae\x7c\xd7\xd4\x7a\xca\xf4\xf9\x77\xe5\x3b\xf5\x21\x7b\x05\x88\x54\x2e\xf4\xc6\xa0\x56\xac\x04\x4a\x1b\x5e\x72\x08\x4c\x6f\x6b\x0c\xb6\x20\xa8\x25\x3a\xf5\xf4\xb6\xc6\xda\x9a\xa6\xa1\x48\x6b\xb5\x75\xdd\x57\x8f\xa8\xdb\xf5\x9d\x42\x75\xbb\x4e\x73\xcd\x43\x91\x1e\x35\x0f\x05\xe7\xd5\x34\x0f\x05\x9a\xac\x38\x92\x4b\x94\x6d\xa1\x4d\x4b\xb6\x9a\x69\xd6\x17\xd4\x74\x01\x4a\x67\xae\x74\x62\x45\x9e\xb1\x6c\x8a\x15\x79\x02\x53\x58\x02\x9b\x4e\x90\x13\x6b\x1a\x41\xc5\x79\x28\xb0\xe9\xbc\xd3\x4d\x46\x50\x71\x74\x4e\x73\xb9\xb4\x48\x26\xf4\x9a\xf9\xd0\x93\xcb\x1f\x2a\xd7\xf7\xcc\x3d\x50\xa9\xbe\x27\xcc\x89\x6b\x89\xbd\x25\x66\xd6\x25\xb0\x15\x00\x90\xb5\x4c\x10\xcf\x55\x43\x90\xd5\x09\x44\x62\x2d\x83\xad\xda\xbf\x09\xc2\x97\xc9\x93\x0f\x70\x47\x4b\x10\xd6\xb0\xf7\x2d\x41\x58\x2b\xf0\xc7\xb5\x0c\x5e\x01\xd3\xb3\x96\xd9\x66\x73\xd3\x5c\x0e\x9e\xef\x91\x8c\xae\x61\x2a\x2e\x07\xcf\xdf\xf9\x92\x9b\x25\xed\xf2\xed\x96\xfb\xc9\xf2\xed\x36\xe6\xcb\x65\x30\x16\xdb\xb7\xe9\x95\x0f\xd0\x40\x6b\xf9\xea\xdb\x23\x59\xaf\x18\x29\x48\x94\x13\x8c\x96\xc0\xaa\x25\xb7\x38\x61\x55\x6b\xd6\xbe\xd0\xa9\x15\xf8\xe2\x12\x3a\x35\x04\xc7\x6b\x19\x6a\xc5\x4c\x15\x6d\x72\x82\xf1\xd7\x72\x36\x03\xf6\xda\x65\x3b\x4c\xcf\x33\xf1\xc7\xc3\x03\xb5\x04\x56\xad\x90\x24\xae\x95\xd3\x38\x75\xfb\x18\x7f\x16\x11\xe3\x3e\x25\x29\x63\x34\xf4\xa0\x4b\x70\xd5\x0a\xb9\xe5\x5a\xce\xb6\x5b\x38\x27\x96\xa1\x24\x35\x92\x34\x82\x91\xa9\x25\xc3\x0b\xd4\x93\xcb\x19\xd0\x0f\xbc\xd4\x6b\xd9\xf0\x02\x22\x6f\x89\xf6\xb8\xc2\x5e\xba\x4c\x7b\x7c\x8c\xf7\xa7\x36\x64\x5c\xa9\x91\x62\xe9\x51\xd8\xb6\x5d\x23\x80\x07\xd7\x36\xcc\x04\xf5\x6d\x1b\x64\x05\x36\x61\x09\x98\x5a\xa1\xaa\x5c\x1b\x33\xcc\x2b\xda\xca\x71\x46\xb4\x19\x26\xc5\x0a\x40\x00\xc6\x74\x09\x9b\x5a\x61\xc0\x5c\xc2\xa6\xd6\xfb\xfd\x89\x73\xf9\xd4\x94\x23\xcf\x45\x89\xf4\xe7\x9f\x50\x2c\x56\x18\xd6\xb4\x28\x93\x2b\x54\xac\x6b\x9b\x72\x1e\x6c\xfe\x12\x5a\xb5\xc2\x55\xba\xb6\x19\x1f\xc0\x37\x2e\x13\x23\x1f\x00\x36\xd6\xf6\xb4\x8d\x6b\x65\xdb\x6d\x0e\x6e\x6a\x6d\xbb\x56\x6a\x7e\xfa\x91\x6e\x9f\x67\x5f\x37\x34\x0f\x7f\x16\xf3\xd7\x3f\x8b\x74\x2f\xb1\xc0\xcc\xb9\xed\xe0\xc6\xb8\x77\x76\xac\x3d\x7c\x6b\x00\x4a\x5c\x48\x9b\x2b\x05\x8d\xd3\xcc\xce\x39\xb6\x1d\x11\x40\x04\xe0\x12\x8e\xf5\x6c\x99\x0e\xdb\xf6\x9c\x1a\x49\x18\x9e\x16\x49\xf0\x98\x9a\x5f\xba\xba\xec\x7c\xdb\xc6\x1d\x80\xb4\x4b\xac\xc8\x15\x3e\xca\xb5\xc9\xdb\xc1\x1e\xb1\x9d\xa9\xa6\xe5\xa1\x2a\xcb\xd9\x22\xd0\x6b\x25\xd6\x62\x6d\x23\xa6\x4a\xa4\xa9\xd1\x4f\xcf\x2b\xa7\xc7\x4c\x57\x3b\x04\x38\x37\x58\x51\x1f\x57\x00\xdd\x4b\x20\xd8\x9a\xd3\xda\x54\xc7\x27\x0e\xfc\x25\x4c\x6c\x85\xc8\x73\x7d\x6c\xc9\x61\xc8\x3e\xe0\x3f\x7a\x5e\x35\x12\x86\x5d\xe9\x63\xb8\x14\xec\x6d\xeb\x43\x8c\x2f\x3a\xd1\xc7\x41\xbd\xf4\xa5\x49\x8c\xcf\xf1\x5f\x6c\x26\x42\xc6\x3e\xfb\x4d\x7e\xe3\x9b\x1d\xfa\x94\xb0\xb1\x2d\x17\xd3\x8f\x91\x55\xd0\xee\xad\x8f\xe2\x18\xb3\xad\x1b\x38\x7b\x42\x4f\xb8\x3e\x98\x8b\xd8\xe4\x3e\x86\x5d\x11\xf4\xb5\x3e\x93\x49\x44\x85\x27\x4d\xa7\x27\x08\x00\x66\xd7\x13\xb5\x72\xc2\x05\xd6\x87\xf8\x5f\xf6\x59\xc1\x6c\x5b\xee\x27\x1f\xc2\x7f\x47\xca\x95\x45\xae\xe6\xa7\xb6\xc8\x8d\xbc\x2b\x8b\x5c\xc6\x02\x58\xc9\x9d\xd6\x18\x16\x80\xc9\x42\x10\xdc\x96\xe3\xe3\x43\xb8\x2f\xfb\xee\x07\x1c\x09\x4b\xfa\x03\x8e\x84\x79\xf5\x01\x47\x92\x6e\x02\x47\xc2\xfc\xf8\x80\x23\x29\x79\x3a\x74\x47\x4a\x49\x86\x91\xb0\x45\x8a\x71\xb9\x45\x2f\xfb\x18\x45\xc2\x26\x6d\x40\xee\x1d\x47\x97\x01\xb9\x57\x8c\x54\x1f\xc7\x3f\xbe\xf3\xc3\xf1\x8f\x6f\x8f\x3a\xfe\xf1\x9d\x87\xc0\x4a\x32\xe8\x9b\xfa\x53\x94\xaf\x66\xf1\x29\x7c\x88\x00\x66\xa5\x7e\x08\xf9\xcd\xa7\xae\x3f\xeb\x4d\x88\xdc\x47\x4c\x2d\x6c\x7d\x4c\xa7\x3a\xe6\x31\x16\xc4\x0f\x11\xc1\x19\x9e\xcd\x78\xf8\xe9\x17\xd8\x09\xcd\x15\x44\xb7\x41\x81\xb6\xbe\xa0\x4e\xb8\x3c\x7d\x49\xe0\xc8\xc4\x14\xaf\xf2\x73\x5f\x6c\x88\xb6\x54\x4e\x24\x9a\x93\x92\x30\x38\xe5\xa9\x30\x34\xef\x97\x06\x9d\x8c\x94\x6b\xd0\xc9\xc8\xd3\x8f\xad\x51\x29\xe9\xeb\xfa\xbb\x8f\x0d\xe0\xbd\x00\xdc\xaf\x2f\x31\xc0\xf8\xf0\x0c\xe0\xbd\x00\xa8\xaf\xaf\x4d\xad\x20\xf7\x97\x11\xbc\x17\xf0\xfc\xf5\x25\xcb\xd3\x48\xc9\xbe\x3a\xb3\x02\xbe\x98\x5e\x59\xde\x5f\x27\x7d\xea\xf9\x54\xed\x49\x03\x14\x12\x19\xc3\x8c\x20\xbb\x2d\x46\x59\x23\x76\xaf\x68\xe5\x46\xec\xb6\x78\x3e\xbe\x06\xaf\x70\x22\x08\xb0\xfb\xbc\xcb\xa7\xce\x7c\x92\x83\xfd\x8b\x6d\x15\x95\xda\x88\xdd\x2b\xea\xa8\x10\xbb\x8d\x94\x3c\xcb\x88\xdd\x2b\x8a\xfa\xd7\x20\xab\xe8\x62\x86\xec\x36\x40\x87\xcb\x90\xdd\x2b\xba\xb3\x20\xbb\x8d\x04\x13\xeb\x6b\x53\xeb\x91\x57\xdd\x1a\x6e\x1c\x42\xe8\x36\xf2\x64\x2c\x01\x74\x5b\x4f\xd3\x64\xb4\xe8\x19\x72\x45\xfb\xf6\x74\x91\x11\x25\x47\x7a\xd3\x11\x8c\x47\xba\x0c\xf3\x14\xed\x8c\x79\x8a\x76\x62\x9e\x62\x41\xfe\x64\x9e\x0a\xca\xc8\x88\xdb\x06\x6b\xd2\x12\xe2\xf6\x79\xf7\x40\x2c\x72\x9a\x5f\xff\x41\x49\x37\x20\xb7\x64\x29\x1b\x90\x5b\x32\xbb\x0d\xc8\x2d\x59\xd9\x46\xe0\x86\x38\x75\x89\x65\xba\xc1\x60\xbb\x0c\xc0\x0d\xaf\xe9\x32\x00\x37\x39\x97\x96\x98\xa5\xcf\x10\xc7\x2e\x23\x70\x27\xb9\x94\xd6\x0f\x85\x9f\x23\x59\x80\xdc\x16\x33\xa9\xf0\xb8\x2d\xe6\x55\xe1\x6f\x5b\x0c\xaa\x02\xd8\xb6\xd8\x65\x8d\xaf\xad\x44\x3c\x2e\xe1\x6b\x5b\x2e\xfe\x3f\xc7\xe8\xc6\x8a\xf6\x73\x8c\x6e\x74\x39\x31\x41\x9f\x09\x63\x5b\x3f\xd2\x19\xb1\xd7\x1b\x16\xd8\xc1\x50\x6d\xe3\x86\x30\x56\xef\xc3\x31\x58\xae\xfb\x16\x4e\x28\x6a\xf3\x16\x4e\x68\xc2\x09\xbf\x0d\x13\x3a\xd8\xd9\xf7\x81\xb6\xeb\x4e\xd8\x87\x93\xce\xf1\x50\xd0\x9f\x40\x2d\xb6\xa1\x3f\x17\x9e\xce\x7d\x02\x93\xa3\x06\xa7\x47\x0d\x7b\xdd\x3e\xed\xf0\xf1\xbe\xb2\x4f\x07\x19\x8e\x14\x3b\x64\xfd\x69\x48\x8a\xbc\xf2\x4e\xb0\x05\x21\x9a\xb8\x1c\xb7\xd9\x36\xf1\x0c\xee\xd3\x61\x0a\x35\x6f\xa2\xb6\xa7\x3a\x3f\x3d\xcc\xab\xd6\x01\x06\xa2\xb9\x0c\x2e\x6a\x63\xbb\x7a\x39\xa8\xb9\x58\x3e\xe6\xa0\xe2\xde\xa8\x26\x3f\x99\x4e\xba\x42\x0f\x38\xe8\xd0\xbb\xd4\x16\x84\xe8\x9a\xef\x2f\x6c\xc6\xe0\x17\xcb\x56\x14\x1a\x8c\xe9\x80\x3f\xd8\x06\x7a\x45\xd2\xfd\xfc\xa2\x15\xb6\x81\xe6\x7f\xbe\x56\xf5\x3c\x93\x26\xda\xf2\x9d\x3b\x83\x8e\x42\x2f\xcd\x77\xb4\x1e\x11\x18\xf4\xe0\x5d\x1b\x3c\x47\x1a\x0c\x0c\x7a\xf0\x17\xc3\xa0\x1b\x6d\xe4\x58\xcd\x4f\xb1\x78\xa6\x77\x30\x8b\x67\x94\x95\x55\x89\xc5\xb7\x8d\x0c\x82\xfe\x72\x8b\x9c\xf2\x6a\x47\x7e\xa2\xc0\xd2\x4c\x1d\xa1\x31\x8a\x77\xb6\x7d\xd9\x1c\xe5\x0d\x72\x5f\xf6\x6c\xb7\x3c\x7b\x3a\xb2\xfa\xde\xb1\xcd\x45\xc9\x05\x6b\x5f\xa6\x6d\xbd\x23\x09\x7c\xc1\x62\xb9\x7c\xef\xef\x91\x74\xef\x67\xa6\x5e\x5c\x92\x0a\xa2\xf9\x61\xb0\x01\x6d\x21\x7a\x2a\x90\xbb\x6d\xee\xc9\x13\xd6\xf1\x7d\xa1\x10\x8e\x3c\xf5\xb1\x7c\xe7\xa9\xd1\xb6\xef\xb7\x76\x72\x32\x46\x64\x83\x87\x25\x6c\x5f\xd9\x36\x1a\xa2\x63\xb8\xd3\x27\x3e\xd8\xde\x77\x95\x5e\xe6\x2d\xc8\x78\x95\x34\x47\x74\xf2\x47\x7e\xaa\xbc\xdb\x90\x23\xec\xcb\xe9\x36\x18\x2e\x65\x80\x1f\xd0\x95\xee\xcb\x94\xf1\x69\x99\x12\x6c\xcc\xf1\x6f\x7c\xca\xbe\x9c\xd9\x98\xc9\x75\xd9\x5e\x9a\x1e\x31\x04\x68\xa4\x6a\x1f\x49\xf4\xac\x75\xc1\x92\x01\x13\xff\x76\xf5\x56\xb8\xc5\x30\x39\x32\xd7\x05\x08\x2a\x28\xf4\xfb\x52\x6a\xd9\x5a\x68\x93\x6d\xa9\x85\xce\x10\xe3\xf6\x3b\x5c\xb6\xac\x56\xda\x24\x26\x55\x28\xa0\xb7\xa0\x43\x85\xdc\xe1\x1b\xe8\x50\xba\xd4\xd0\xa1\x46\x93\x6c\x66\x65\x9f\xb9\x6c\x66\x2d\xf9\x4e\xa1\x8c\x25\x35\x93\x61\xb3\xe5\x4d\xb5\xc8\xe7\xd6\x16\x8e\xa8\x54\x66\x59\xb1\x95\x95\x5d\xb7\x98\x71\x95\x75\x5e\xe4\x78\xe4\x4a\xb2\xc5\x31\x59\x50\xe2\x77\xb1\x59\xac\xa7\x14\x4d\x72\xab\x8c\xdb\x98\x22\xae\x86\xdb\x4c\x91\x37\x59\x80\x36\xd4\x90\x68\xb5\x1b\xba\x47\x6b\x8c\xdb\x74\x8f\x03\x10\xf6\x2e\x66\xc2\xe3\x6a\xb0\xcd\xfe\x58\xb9\x1c\x6e\xd8\x1f\xd1\x80\x77\xe1\xf2\x4f\x27\x9b\x0c\xf2\x00\xf5\xb4\x0b\xd3\xfa\xa4\xc2\xba\xfd\xdf\xef\xa7\xde\xc1\x6b\xea\xe4\x1d\x3c\xaf\xb2\x2c\xa9\xa2\xe3\xab\x2a\x5d\x64\x22\xbc\x16\x49\x86\x96\x9a\x37\x6d\x68\x61\x46\x14\x47\x57\xd5\x48\x36\x64\x70\x4c\x14\x7b\x95\x46\xc6\xc8\xba\x5a\xf6\x09\x11\x4c\x56\x42\xdc\xb7\xa1\x47\x37\xd0\xbb\x6d\xac\xd1\xc9\x25\x68\x17\x6e\xfb\x17\xdd\xe0\x3d\x96\x2b\xc6\x36\x89\xe4\xbb\xc5\x99\x44\xf2\xe4\x8e\xb4\x0d\x3e\xc2\xed\xb7\x0d\x3e\x3a\xdf\x2e\x73\xa2\xaf\xc2\xc6\x50\x8c\xe5\x48\x0f\x12\x5a\x32\x53\x90\xee\xd7\x2d\x92\xae\x95\xa9\xbe\x5c\x4c\xef\xf8\x1b\xe7\x91\x11\xe6\x16\x63\xc3\xdf\x36\xb8\xe8\xc2\x62\xb8\x2b\xe7\xbe\x4d\x8d\x1b\xc2\x48\xdc\x0e\xdb\x84\x91\x17\x36\xd5\x2d\xb4\x51\xc3\x7e\xbf\xc5\x09\xd9\xb8\xff\xec\x0a\x1c\xde\x06\x9c\x2d\x74\x51\xe3\xbe\xb0\x8d\x2e\xea\x44\x07\x6e\xa3\x8b\xee\x0c\x85\x18\x21\x1b\x69\xe8\xb6\x18\x20\x1b\x89\xe7\xb6\x09\x20\xcb\x91\x57\x9d\x15\x24\x5d\x6f\x06\xc8\x8a\x2f\x7c\x8b\x01\xb2\xf5\xf7\x5d\x03\xd1\xf3\xd3\x89\xe6\x99\x77\xcd\x12\x8f\x6a\x62\x96\xc7\xe4\x39\xd8\x4a\x3d\xdf\x80\xe7\x6c\xb3\x3c\xbe\xbb\xa9\x59\x1e\x43\x88\xb0\x4d\x45\x87\x33\x68\x0b\x8c\x71\x4d\xb6\xe1\xc6\xc6\x7b\x22\x29\x1e\x74\xe4\xd9\xc7\x13\x25\xa2\xac\x7b\xec\x8a\x30\xcd\xa5\xaf\x1b\x87\x7e\x8a\xf5\xed\x79\xfe\x3b\xa6\x73\x37\xa7\xe8\x62\x7b\x15\x30\xe3\x02\xf1\xbf\x9b\x73\xc8\x32\x37\x05\xcb\xe8\xd0\xe9\x6c\xa1\x32\x2e\x72\x83\x6f\xd1\xd3\xf5\x3b\x6d\xd4\x86\x5a\x18\x30\x93\xd3\x55\x1c\xb2\xbb\xa1\x9f\xde\x48\x3e\xfe\xfd\xe1\xed\xe3\x9f\xdf\xdf\xde\x27\x6b\x9e\x19\x7c\xce\xd6\x2f\xee\xb9\x91\x75\x23\x84\x46\xa9\x8c\xdd\x6d\x28\x26\xb3\x52\xa0\x8b\x52\x6b\xbe\xf3\x46\x79\x23\x7d\x25\x79\x0a\x88\x1e\x6e\x62\xad\xdc\x42\x60\x4c\xec\xbb\xfb\x16\x15\x7b\xf4\xcf\xdb\x31\xa9\x6c\x07\x37\x76\xfd\x96\x57\x05\x03\x1c\x79\xd5\xe6\x67\x36\xa1\xdb\x71\xa6\xf8\xc4\xb7\x80\x14\x15\x06\x8e\x6d\x0a\xb7\x63\xa4\xc9\x86\x55\xe0\x21\xda\xb7\x39\x3f\x39\xdf\x8c\x9b\x38\x71\xcf\x6d\xa7\xe4\x7e\x15\x30\x38\xdb\x70\x33\x6e\x38\xdb\xd8\x33\x0d\xa3\xa8\x99\x59\xce\xc9\x7d\x01\x2b\xdd\xce\xc9\x7d\x01\x0b\xd9\x37\x2c\x56\x33\x55\xfc\xfa\x29\x1d\x6f\x2b\xce\xc8\x90\x39\x6e\x82\xec\xb1\xdb\x39\xb9\x0b\x4e\xf2\x0d\xc9\xdb\x8c\xe4\xd9\x45\x25\x94\x00\xee\x9e\xd4\x90\xb9\xc6\x3f\x9d\x3b\xeb\xfd\x4e\xb3\xeb\xcc\x2f\xa4\x73\x30\x2b\x85\xbf\x18\xf0\xf5\x6f\x01\x2e\xae\x89\x02\x24\xbc\xc5\x20\x5d\xf8\x36\x61\x5b\x8f\x46\x26\xbc\xc5\x80\x6c\x78\x8b\xaf\x6d\x14\x5b\x97\xb7\xe9\xda\xde\x29\x2b\x7e\xb6\x81\x57\x78\x77\x3b\x49\xd9\x5a\xc5\xce\x36\x40\xa4\xef\x6e\x97\x69\x4f\xa1\x52\x25\x6a\x7e\x28\x55\xa2\xa5\x36\xf2\x91\xda\x1b\xb5\x45\xcd\x56\x60\x06\xdb\xdd\x3e\x52\x54\xa5\xce\x1c\x8d\xa4\x25\x82\xc2\xde\xcd\x40\xc1\xd6\xdd\x0d\x12\x7a\x5b\x68\x90\x50\xcf\xab\x02\x56\x73\x2b\xe9\x06\x09\xa1\x67\x74\x83\x84\xee\x48\x5a\x4c\x9d\x8a\x4e\x2f\xa6\xfc\x5e\x4d\xe2\x24\xe9\x26\xa4\xb8\xf3\x3f\x69\x47\x35\x7f\x10\x06\x98\xbd\x16\x04\x09\xd3\xbc\x1b\x11\xcc\xd6\x0a\x82\x24\x65\x2e\xb9\x09\xd3\x4d\xa2\xa7\xc8\x5d\xa6\xdb\xf1\x8a\x4a\x29\xcc\xc8\xbc\x33\x10\xf6\xbb\x32\x0f\x85\x18\x99\x77\xba\x69\x49\x73\x62\xf1\x0a\x3e\x32\x73\xd0\x0b\x3d\x32\xa3\x6a\x88\xa3\x6d\x46\x7f\x10\x45\x5b\xc1\x36\xbb\x85\x24\x99\xb9\x73\x0a\x48\x32\xa3\xbf\x88\x9f\x6d\x46\xd5\x51\x62\xee\x82\x5d\x79\x77\x7b\x68\x59\x8a\x82\x86\x94\x31\xfe\x6d\x29\xd9\xdd\x9c\xe7\x69\x3c\x57\x79\x36\xc0\x0e\x62\x38\x33\x6f\xa3\xf1\xb9\xe6\x86\x8d\x1c\x38\x29\xb7\xf9\xd7\xee\x1c\xf9\x03\xba\x80\x96\xa7\xa6\x0b\x60\x61\x9a\x8e\xed\xc0\x69\xb8\x4d\xc7\x76\xe0\x38\xdd\x03\x32\x01\xe6\xdc\x30\xd5\x79\xd4\x05\x13\xb2\x1d\xd9\x77\x86\x79\xa0\xff\xf7\x5f\x37\x81\x0d\x4d\x38\x94\xb3\x65\xf1\x08\x88\x52\xef\x14\x6c\x48\x71\xbe\xc4\x99\x95\x1a\xdb\x23\x3b\x52\x63\xbc\x59\xef\xa7\xc6\x9b\xbd\xdf\x5a\x45\x6c\x79\x6a\x5f\x5c\xaa\x88\xb3\x2b\x95\xc0\xd9\x95\xf6\xa0\xef\xa6\x5b\xd1\x77\xd3\xad\xec\xf4\x4c\xa5\xc1\x4e\x9f\x9e\x72\x5c\xd1\x5b\x47\xe9\xbb\xe9\x54\x9f\x02\xf9\x69\x4e\x01\xfa\xc5\xfa\x6e\x7e\xa2\xc8\xeb\x3b\x15\x02\x5a\xc7\xcc\x1e\x40\xeb\x58\x3c\x03\x6d\x98\xd5\x63\x3a\xb6\xfb\x1d\x2b\x91\x69\xdc\xa9\x9e\x3d\x5f\x39\xd2\x04\x76\xa9\xf0\x44\xed\x24\x05\xaf\xf9\xab\xed\x46\xac\xb5\x81\xfa\xcb\x49\x39\xec\xec\x4a\x43\xa3\xee\xd2\x36\xd4\xdd\x7c\x29\xe0\x75\xda\xed\xc0\xea\x5c\x03\x0d\x86\x39\x01\x72\x6c\x81\x61\x6a\xb6\x48\x93\xaf\xbd\x3b\xbd\xe9\xd5\x4e\x70\x34\x7b\xe0\xd2\xe2\x94\x37\xbf\xda\x19\x8b\xcc\x34\x94\x39\x17\x37\xd1\xad\xd5\xec\x9a\x4a\x07\x5e\xa3\x82\x98\x6c\xed\x8c\xd1\x61\x1a\x86\x47\x30\xd6\x9e\x38\xbc\x38\xa6\xa6\x03\xa0\x5b\xfe\x22\xaf\x0f\x53\x74\xda\xfb\x75\xe7\x43\x6b\xe7\xf9\xce\x4e\x9f\x99\x57\xed\xdf\x9a\xa9\x90\xbd\x3e\x9c\x62\xce\x2c\x7e\xbf\x7f\x81\xd1\x96\x73\x73\xe2\xc3\x42\x11\x9b\xc4\x43\xb3\xb5\x0a\x27\xd3\xde\x6e\xb0\x19\x1e\xc7\xfd\x9e\x31\x60\xe4\x5d\xb9\x49\xd0\x2e\x9c\x75\xfc\x02\x8e\xb0\x27\xd1\xd0\x1c\x18\x93\x68\xe8\x3b\x7f\xb5\x9b\xa4\xa7\x4e\xbe\x60\xa4\xd3\x64\x89\xcf\xa8\xce\xc5\x75\x83\xb6\x1b\xf4\x0c\xee\x60\x4f\xa2\xa1\x99\x20\xc2\xdd\xb4\xe8\x34\x22\x7e\x6b\x19\xf2\x89\x0f\x8b\x73\xca\x09\xc9\x33\xeb\x26\x2e\x2c\x4e\x62\xd3\xc0\xf5\x2b\x1d\x01\x0d\x5c\x4f\x49\xcb\x1a\x4e\x7e\x23\x2f\xc3\xc8\x43\xd4\x9f\x94\xf4\x67\x91\xff\xe8\xe6\xd7\xc1\x8d\x6c\x51\xbf\xb5\x36\xfe\xcd\x44\xbe\xa7\x55\x23\xc0\x91\x5b\x30\x9e\x86\x77\x65\x4f\xc7\x49\xbf\xfd\x2b\xbc\x3f\xde\x94\x3d\x7d\x47\x8c\xf2\x39\xcd\xef\x19\xe3\x91\x90\x3c\x0d\x3f\xd3\x76\x3a\xf3\x0b\x78\xe6\x16\x94\xa7\xb5\xb7\xb6\x32\x39\x43\xc1\xbb\x97\xd1\xd2\x80\x33\xb6\xb0\x3c\x8d\x7c\xd4\x5b\x58\x9e\x46\xc6\xeb\xbd\x60\xec\x64\x09\x09\xbe\xd3\xc8\xb8\xbd\x97\x8d\xc1\xd9\x9c\x85\xdf\x69\xb8\xa0\xf6\xb2\xf7\x2a\xfb\xeb\xd2\x9a\x21\x8d\xf8\x16\x1f\x5d\xcb\xa5\x50\x68\x9e\x06\x83\xc9\x5e\xb6\xee\x1f\x23\xa5\xea\x8a\x38\xf2\x4b\x03\xd3\xf3\xae\xef\x88\x31\x6c\x0b\xcd\xd3\xb2\x29\x1a\xcd\x53\x62\xe7\x16\x9a\xa7\x65\x03\x35\x9a\xa7\xe0\x76\xdc\x2b\x57\x44\x2a\x3f\xf1\x46\xa4\x5c\x87\x1f\xa3\x03\x38\x09\x7a\x21\xff\xeb\x16\x2c\xa7\x65\x5f\x71\x36\xf3\xd2\xf2\xae\x63\xa2\x5b\xfe\xe3\x98\xe8\x96\xff\x38\x26\x1a\x4f\xdc\x5e\x8e\x89\x8e\x22\xb0\x1c\x13\x1d\x13\xbf\xc1\x39\x25\x13\x49\xe0\x9c\x36\x53\x45\xab\xf6\x33\x05\x7d\x74\x85\x4b\x95\xe4\xfe\xcb\x56\xe7\xbc\xe5\xbd\xe4\x2f\xb6\xc2\xb1\x0a\x04\xc6\x79\xde\xe5\x53\xe7\xd0\xcf\x75\x58\xf8\x9b\x8a\x27\x63\x2f\x43\xa2\xc1\x97\x6e\x03\x6e\xce\xd8\xc2\x84\xa9\x69\xf9\xe9\xb6\xb5\x01\x10\xf2\xde\x58\x1b\xb0\x6a\x09\x0a\xf3\x34\xad\x21\x6a\x9d\x72\x6b\xd9\xce\x8a\xdc\x53\xac\x52\x72\x33\x21\xb7\xc3\x8d\x99\x64\x5b\xb3\xe3\xd5\xf5\xb7\x01\xaf\x98\x08\xb6\xf9\x0a\x53\xa8\x02\x3c\x5b\xde\x14\xce\x1a\xb7\xdb\x76\x62\xf1\x76\x52\xa8\x34\xe8\xc2\x1d\xd7\x94\x6e\xe5\x7d\x66\x50\x09\x9b\x84\x93\x87\x4f\xb6\x68\xb3\xb8\x91\xc6\x74\x9b\xc5\xad\x9c\x79\xf6\x93\x94\xaa\x09\xe2\x4a\x3f\x1a\xf2\xf2\xbf\x7f\x38\xa2\xe9\x7d\x57\xe6\x5d\x70\xb4\x1b\x1e\x37\x26\x01\xcc\x6d\x18\x7b\xe1\x6a\x1b\x29\x55\x2a\x3c\x5b\x80\x00\x2f\xe7\xff\xaa\xa3\x9c\x89\x60\x6c\xb7\x10\x2f\x03\x34\xee\x16\xc2\x65\xc4\xd8\xbb\x31\x79\xa5\x55\xa2\x1a\x8c\x5d\x78\xdb\x4c\xcb\xca\xdd\x8e\xf0\x1c\x29\xc6\x17\x91\x7c\x27\x33\x6d\xcb\x33\x5f\x44\xa8\x9b\xcd\xb4\x19\x6f\x9b\x69\xd1\xe9\xb6\xcd\xb4\x2d\xa5\x08\x3c\x99\xf6\x1a\xa1\xc8\xd1\x2b\xb0\xcb\x8c\x9a\x63\x02\xb8\x5c\xb0\x3f\xc6\x2b\xde\xff\x61\xf7\xfe\xd8\x6a\x3b\x52\xa8\xbc\x3a\x2c\xf5\x8f\x1d\x15\xe8\x01\x1f\x3b\x2a\x46\x7e\x21\xed\x7f\xe6\x4d\xdd\x44\xd8\xe5\x3f\x68\xc7\x9c\x59\x1f\x87\xd8\xe5\x7c\x13\x76\xa5\x12\x51\xbb\x3f\xb6\xe8\xa6\x54\xa5\x36\x21\x66\x77\x7f\x30\x55\x50\x37\x14\x5a\x0e\x63\x33\xc0\xd5\xa8\x42\x30\xc0\x8d\xf7\x27\x52\x02\x5f\x49\xf6\xdb\x9e\x62\xa5\xce\xbe\xe5\x48\x9d\xed\xa9\x8e\xd4\xd9\xd4\x1c\x75\xf6\x15\xad\xb2\xb2\x2f\x42\xff\x16\xd7\x8d\xe9\xdf\x6e\x06\xf9\x63\xfb\x2d\x5a\x87\xd9\xdf\xee\xf7\x43\xed\x32\xcc\x3f\xc8\xdf\xe2\xf3\xf9\x64\x33\xcb\x53\xab\x87\x25\x3f\x11\x97\x51\xde\x35\xdd\xd5\xdb\x97\x76\x89\xc5\x74\xff\x31\x3a\x2b\xed\x34\x33\x50\x0c\x4d\x1f\xcc\xb5\x35\x4f\x51\x60\x53\xb0\x6d\x30\x68\xcd\xe2\x82\xab\xb9\xc7\x7f\x6c\xbd\x8d\x0f\xc2\x54\x70\xb9\x8f\x1b\x77\x32\x63\x95\xfb\x38\x63\xc3\x9d\x57\xe5\xa6\x65\x9a\x18\x66\x72\x42\x1f\xb9\xcd\x04\xd7\x72\x1a\x08\x67\xd2\x72\x1d\xfb\x42\xee\xc3\xee\xf6\x35\xb6\x8b\x79\x2a\xd0\x49\xcb\xe5\xc0\x38\x92\x6c\xf0\xc6\x91\xb4\x4c\x22\x70\x24\x31\x54\x7e\xcd\x2b\x5f\x22\x29\xc2\x8d\x39\x0d\x6c\x04\xd0\xf1\x06\x36\x42\x9c\xc7\x06\x36\x02\xca\x7a\x0b\x36\xd2\x00\x82\x6c\x50\x23\x19\x52\x73\xbb\x5d\x99\x28\x5f\x98\x4c\xd2\x0d\x56\x50\x33\xaf\xbf\x10\x9b\x70\x9b\x31\xb9\xdb\x4d\x0a\xb3\xfd\x85\xd8\x64\xe4\x5b\xd4\x85\xd4\x42\x06\xe6\x34\xce\x3c\x27\xb1\x96\x8b\xdc\xad\xe5\xe6\x63\xe0\x48\xb9\x5e\xd1\x61\x6d\x6c\xbb\x5f\x9f\xea\x80\x76\xb7\x49\xd7\x3a\x04\x2a\xdb\x2c\x5f\xc9\x6e\xbd\x7f\xd4\xf8\x40\xf2\x0e\xd6\x91\x64\x78\xc0\xb8\x6b\xa4\x40\x23\xe1\xd0\xfe\x19\xe1\x4b\xa7\x99\x6c\xab\x66\x0a\xfe\x0c\x7d\xec\xf9\x52\x69\x2a\xc6\xfb\xa5\x26\x64\xea\x23\xc2\xed\xf6\xfe\xe4\x19\x45\x48\x20\xf6\xcf\xf0\x13\x3a\xc8\xcc\x5a\xf1\xa0\x8b\x58\xeb\x6a\x9c\x11\x3f\xeb\x09\x33\x6f\xfa\x00\x67\x92\x9b\x57\xeb\x22\xf6\x60\x8b\x57\x0b\x0a\x9f\x6d\x56\xad\x41\xd6\xdd\x6d\x56\xad\x1e\x97\xa8\x59\xb5\xfa\xf9\x16\x34\xad\x9b\xe6\x37\xcb\x62\x6a\xf4\xb3\x98\x92\xff\xe4\x99\xfe\x77\x50\xcf\x36\x71\xd6\x7b\x8c\x9b\x38\x2b\x9e\x31\x73\x61\xc5\x54\xfd\x07\x46\xab\x22\x99\x07\xbd\x20\x4d\xfd\xf1\x46\xf2\x55\x15\x67\x91\xa8\xaf\x6e\x32\x7d\x6d\x53\x5f\x0d\x92\x9e\x6d\x25\x93\xbe\x49\x85\xb5\x21\xc2\xea\xf9\x90\xec\x38\x54\xce\xcc\x14\xb9\x7a\x88\x25\xeb\x84\x45\x63\x8b\x25\xeb\x26\x4f\xd3\x16\x4b\xd6\x4d\x72\xae\x6d\x92\xac\x0c\xad\x72\x49\xdf\x24\x78\xda\x7f\x86\x3c\xd0\xaf\x22\xcc\xba\xc9\x7e\xb6\xff\x48\xf5\x96\x62\x9e\x69\xd8\xcf\x54\x4e\x0c\xc9\x67\x9a\xac\xf8\x1b\xa8\x60\xb6\x48\xac\x3a\xb9\x14\xb7\x38\xac\x2e\x62\xa1\xb6\x28\xac\x2e\x62\x51\xb7\x18\xac\x2e\x18\x7b\xb6\x18\xab\x2e\xc0\x4a\x5b\x84\x55\x17\xb1\xa7\xfb\xcf\xcc\x27\x3d\x75\x91\x82\xc7\xe2\x17\x3f\x55\xcf\x62\x57\x36\xe7\x0b\x4e\xa3\x2d\x06\xaa\x8b\xbc\xa8\x5b\x04\x54\xbd\x67\x80\x65\x74\xce\xed\xe3\x0f\x07\x47\x24\xc1\x56\xae\x94\xe2\x63\x93\x1b\xc5\x9f\xf1\x0d\xb8\xff\xc4\x54\xd5\x7b\xe6\x89\x58\x51\xe2\xbc\x52\xca\xe6\x8b\xa4\x9d\x5b\xb4\x55\x1d\xc8\xd7\x16\x6d\x55\x37\x44\x6d\x0e\xb1\x56\x5d\x4e\x44\xf7\x48\x5e\x64\x37\xd2\xa5\x37\x0b\x92\x22\xaf\x64\xcc\x7f\xa4\xaa\x67\x79\xb3\xe9\x59\xca\x54\x1c\x96\x66\xf7\x23\x0d\x67\x73\xcd\xab\xf2\xcb\xa8\x67\x1e\x49\x6a\xe9\xfb\xa1\xa2\x9b\x74\x6f\x78\xa4\x67\x3b\x3a\x0e\x24\x05\xed\x1c\xa9\xb6\x82\x76\x4a\x2a\xa3\xed\xbe\x39\x12\xe8\x11\xeb\xf3\xea\x99\x87\x4d\x1f\x36\xa4\x5b\xcf\xf2\x66\xd7\xb3\x48\x42\x19\x4c\xea\x6d\xe8\xcd\xa4\x67\x64\x82\x3e\x4e\xaa\x6d\x6d\xfa\xa2\x67\x64\x82\x3e\xd2\x4f\x8a\xf6\x39\xd2\x33\xd3\x8d\xa0\x2e\xcb\x8d\xe0\x0f\xcb\x8d\xa0\x66\x02\xf0\x1c\x07\xff\x53\xec\xcf\x71\xf0\x3f\xd1\xa3\x94\x8b\x7a\x2e\x59\xf1\x67\x9e\xc9\x8a\xdf\xe8\x26\xab\xcb\x93\xba\x98\xf3\xe4\xe6\x3b\x6d\x9a\xf5\xa6\x2e\xdb\xee\x86\x14\x6a\xe5\x79\xe6\xa1\x1c\x5d\x8d\xca\x18\xe3\x70\xa7\x50\x45\x4d\x5a\x0b\x7e\x44\x69\xcf\x37\xb5\x71\xd8\x4e\x7a\x4d\x09\x62\xad\xbd\x3d\xd2\x53\xd3\x99\xd6\x5b\x43\xbe\x2d\x09\x06\x56\x26\x83\x7d\x1a\xac\x30\xf3\x4c\xa6\xec\x3b\xcf\x6e\x29\x2d\xcc\x20\xc1\xbe\xca\xa4\x83\x05\xf4\x9a\xbe\x13\x3e\x92\xf5\xde\x86\xa4\xf8\xa2\xf9\x4f\x45\xfb\x79\xd5\x07\x79\xad\x88\x5f\xfd\x23\xe5\xb8\x19\x79\xf6\x27\xc9\x7d\x23\x10\x58\x99\x0c\x9b\x40\x60\x65\x32\x15\x9c\x65\xd9\xd6\xd7\x47\x92\x2e\x3f\x23\xc9\xe3\xc0\xcc\x17\x3e\xac\x4c\xa6\xa5\xf0\x61\x67\x73\x60\xc4\x23\x2a\x48\x86\x81\x3a\xed\x04\x4c\x13\xa5\x49\x5f\xf4\xfe\x69\x2a\xe5\x99\xaa\x09\x91\xf4\xfe\x42\xa1\x3d\xf9\xbd\x90\x0f\x17\x33\xea\x74\xfa\x71\xab\x05\x8f\xa8\x3b\x40\x06\x03\x3d\x80\xd6\x4b\xf7\x68\xa6\x12\x7b\x44\x9b\xb5\x3b\x15\x30\xb1\xec\x48\xb1\xd6\xab\xf3\xcc\x56\xec\x41\x23\xa5\x58\xb7\xce\xa2\x35\xd6\xcc\xd4\x4d\x8f\x24\xb5\xff\x7d\xd5\xa8\x8d\x4e\x4b\x08\xb5\xed\xd4\xcf\x8c\x16\x9d\x86\x6d\x6e\x01\x11\x65\x75\xed\xd4\xd6\x66\xe1\x4e\xff\xa0\x55\x57\xba\x52\x21\x11\x26\xb2\x7a\x24\xeb\x30\x79\x86\x52\x9d\x52\x15\x12\xf1\xd6\xc7\x21\x11\x35\xf5\x51\x48\xc4\x5b\x3b\x61\x22\x32\xe9\x6d\x4e\x7e\x27\x2f\x1a\xb7\x4b\xbd\xcc\xb5\xd9\x4f\x24\xd9\x24\x4b\x45\xb2\x4a\x3d\x90\x9a\x8b\xc9\xab\x34\x24\x4f\xbb\xbe\x2c\x48\x82\xd5\x97\x86\x64\xf8\xef\xfb\x93\xa7\x02\x99\x77\x42\xa9\xb5\x2c\x65\xe7\x4f\x2e\x2c\x5e\x81\xd4\xee\x93\x8e\x14\x46\xed\x6a\x4c\x50\x81\xd0\xee\xb3\xa7\x94\x2d\x89\xdf\x3f\xd3\xee\x2e\xcc\x08\xc1\xca\xee\x42\xc7\x09\x55\x76\x17\x7a\x5c\x6c\x51\x77\x61\xb6\x38\x83\x71\x39\xf2\xa6\x14\x60\x36\x63\x61\xcc\x60\x21\x7d\x24\xa9\x48\x67\xa4\xae\x67\x17\x92\x12\xc5\x64\x3f\xbc\xc8\x0c\x93\x5f\xfc\xfc\x90\x36\x39\xf3\x46\xe1\x8f\xce\xbc\x51\xf9\xd0\x99\x37\x52\xd3\x2d\x25\xa8\xd0\xfa\x6d\x25\x88\x42\x9f\x09\x77\x3b\x39\xeb\x23\xc9\xc0\x9a\xd6\x6b\xc2\x99\x82\xec\x91\x74\x4c\xa6\xa6\xdb\x41\xc0\x19\x8a\x67\xda\xf4\x33\x4d\xd4\x79\x7e\xbe\x1f\xfe\x49\x72\xa1\xc5\x6c\x13\xcc\x77\xc1\xbc\xae\x83\xc9\x27\x98\xd7\xd3\xc2\x0b\xb1\xe9\xc3\x82\xa4\xb0\xee\xd1\x90\x86\xa4\x7c\x28\x9d\x88\xd1\x16\xcb\x54\x77\x56\xb1\x47\x12\x50\x90\x95\x21\x94\xd7\x70\xee\xc4\x47\xf2\x1f\x22\x59\xef\x99\x48\xcf\xff\x9c\x60\xf5\x91\x86\x24\xca\x9c\x52\x6d\xfe\x1d\x1f\xff\xbc\x2a\xbd\xe7\x4c\xa1\xd6\x7b\x52\xa8\x34\x9d\x93\x6a\x4b\x91\xec\x4c\x0c\xa1\xbb\x2e\x27\xc0\x7f\x24\x19\xe0\x2e\x4a\x91\x22\xd9\x4f\x3a\x46\x80\xc6\x7e\xe5\x3b\xa9\x72\x27\xcd\x95\xfb\xf7\x78\xdf\x14\x62\xa0\xe4\xd9\xd2\x99\x9d\x3f\x48\x47\x78\xeb\x22\x8c\x00\x0b\x46\xb8\xae\x51\x52\xeb\x6d\x15\x97\xba\x6c\x9f\xfc\x91\x74\x2c\xdf\xfc\x41\xa9\xd9\xa3\xbd\x98\x07\xea\xb4\xb2\xf8\x88\x5b\x0f\x99\x16\xa6\x26\x9b\xf9\x85\x2b\x93\x62\xa4\x40\xb0\x27\x89\x04\x6a\x44\x09\x12\x4c\x6b\x46\xb5\x11\x05\xd4\x8c\x32\x53\x0d\x94\x65\xbd\x08\xb2\x35\xa3\xf6\x54\xc3\x66\x66\xa4\xa6\x67\x0d\x49\xa6\xb8\x99\xef\xba\x9e\x45\x12\x26\x80\x3d\x47\x60\x2e\x38\x2d\x1f\x49\x76\xab\x9e\x9a\x59\xb5\x48\x5d\xe4\x41\x67\x27\x11\x76\x6b\xde\xec\x39\xd5\x50\x06\xf6\xb8\x6a\xb8\x0d\x73\x59\xc8\xad\x32\x99\x93\x82\x6a\xcd\x9b\xc5\x23\x92\xa8\x79\x33\xb3\x95\x9c\xb7\x4c\xa6\x8f\x60\x5b\xb5\x1c\x29\x73\x4a\xca\x33\xbb\x9f\x7b\x0a\x75\xa4\x2a\xab\x80\x54\xbd\xd7\x5b\x01\xcc\x6f\xd4\x5c\xc7\x72\x49\x0f\x43\x7f\x92\x26\x93\xfd\x20\x35\x82\x0d\x85\x95\x6f\x2a\xaa\xe3\x4a\xed\x6d\xff\xba\xd2\x09\xa4\x3f\x60\x0b\x21\x59\xef\x18\x79\xd9\x87\x5d\x24\x83\x8a\x47\x3e\xe5\xa4\xa6\x52\xb6\xdd\xce\x54\xc2\x07\x75\x24\x7b\x6c\x47\x2a\xec\x93\x3a\x35\x74\x18\x2e\xfb\x96\x98\xa8\xea\x9d\x57\x9d\x0a\x61\xa4\x20\xdc\xb9\x68\xf4\x95\x73\x9b\x1e\xb5\xc7\x36\x3a\x57\x55\xa4\xd5\x95\x99\x00\xce\x30\x6d\x31\x49\xef\xcd\xce\xe2\xac\xbd\xd7\xcd\xd4\x6f\x64\x88\xa3\x93\x4c\x2f\x75\x0d\x8a\x6a\xdc\xb6\x47\xbe\xed\xb6\xc2\x54\x44\x25\xed\x7a\x25\x39\x0d\xce\x7c\xe9\x0d\x73\x22\xf9\x12\x39\x90\xe4\x0e\x29\x79\x53\x3b\x56\x71\x0f\x35\x25\x35\xea\x57\x24\xe3\x27\x8e\x88\xda\xa4\xca\x81\x54\xb4\xd9\xf0\x0b\xa1\x6e\x4a\xcd\xb3\x5b\xcf\xa8\xb7\x2f\x39\xe9\x01\xfb\x0c\x38\x91\xcc\x38\x75\x9f\x33\xa2\xf6\x2c\x0e\xbd\x86\x39\x6b\xe6\x1f\x3f\xbb\x6a\xf2\xee\x9f\x16\x2e\x0f\x05\xb5\x79\xee\x47\xff\xdc\xb2\xc5\x38\x35\x73\x09\x12\xe1\xd4\xcc\x85\x4c\x7c\x53\xa5\xa2\xd8\x08\xd2\x38\x73\x03\x14\xdd\x54\xa9\x77\x7e\xe8\x5b\x08\x9b\x43\x7b\xe6\xec\xcc\xa1\x24\xee\xa9\x32\xd9\x97\x45\x3d\x55\x66\xc6\x46\x04\x08\x13\xe5\xc1\x10\xc6\xdb\x39\xeb\x1e\xd1\x8b\x88\x39\x6a\x02\xa9\x23\x93\x49\x40\xc5\x5a\x8e\x48\x4d\x12\x3f\xf1\x69\x7e\xb0\xdf\x0b\xb7\x58\x0b\x5b\x9e\x70\x8b\xb5\x1c\x29\xd5\x70\x95\x91\x87\xde\x2f\x46\x0a\x32\x2a\x95\x91\xbd\x89\x06\x67\xbb\x14\x63\x54\xbd\xd1\xd4\x6f\x83\x66\x06\x2a\xfe\xed\x08\xef\x31\x90\xa4\x6f\x8f\x94\x63\x9b\xfb\x3c\x10\x65\x73\x7f\xa5\x8f\x87\x36\x5f\xda\x79\x46\xa7\x38\xd9\xed\x7d\x1d\x11\x8d\x7a\xe0\x7a\x20\xc4\x62\x9d\x6c\x2c\xce\x6e\x7b\x1a\xa8\xf6\x88\xbe\xac\xb1\x65\x91\xa2\x36\x57\x40\x52\xd4\xe6\x2a\x65\x08\xe3\x99\xfb\x12\x39\x6a\xdf\x4f\x55\xa7\x6c\xc0\x22\x8a\x6a\xd9\x45\x49\x51\x9b\xeb\x23\x29\x6a\x33\xc6\xa4\xa8\xcd\x2e\x4f\x8a\xda\x5c\xe7\x04\x77\x6c\xd9\x27\x6f\xfc\xfb\xe9\x09\x3c\xfa\xe9\xc4\xec\x8c\xd4\x1f\x80\xe3\x1d\xd1\xe8\x85\x0c\x0e\x3e\xfc\x33\x45\xd9\x60\x4d\xe3\x88\x43\xcd\x00\x6c\xf6\x25\x4a\x12\xf3\x73\x63\x8f\xbd\x1d\x79\xc7\xfc\x25\x49\xed\x48\xbf\x68\xde\xf5\x6c\x86\xb0\x48\x8d\x74\x0c\x91\x78\xa9\xbf\xdc\xf4\x7d\xe4\x21\x4a\x66\x44\x47\xb2\x8d\xfc\x07\xc7\x72\xfe\xf3\xb3\xe8\x97\xa1\x91\x62\x8b\x11\xac\xb1\x4d\x14\x4b\xa7\xa1\x2d\xb5\xe7\xa1\x9d\xd0\xec\x86\x3d\x5a\xe8\x40\x6c\x8a\x8c\x3a\x90\xac\xbd\x17\x24\x61\x0e\x58\x27\x4a\x3a\x5b\xe6\x99\x0a\xc8\x4f\xff\xbe\xa9\xba\xbf\xcf\x64\xa7\x7b\xcb\x94\x41\x86\xae\x15\xcc\xb1\x54\x6e\x27\x24\xa0\x65\xc3\xeb\x18\x37\xa9\xb7\xf9\xae\xe8\x3a\xc1\x1c\x41\x2d\x3c\x92\xd4\x40\xec\x56\x4e\x46\x8b\x75\xf3\x11\x65\xd2\x43\x0f\x14\xcc\x91\xdc\xb3\x8f\xa4\x88\x25\xb6\x5f\xc1\x1c\x7b\xbf\xf2\x43\x9f\x0c\x91\x7c\x32\xa4\xcc\x3f\x59\xf5\xb1\x78\x09\xbd\xd8\x3b\xa6\x23\xf3\x5f\x1d\xa8\xa8\xdd\xc6\x22\x2e\xa7\xdd\xbc\x67\xe5\x8e\x68\xfb\x17\x8d\x5a\x3a\x1a\x38\x6f\x04\x66\x1c\xa5\xfd\x87\x3d\x5c\x48\xc7\x72\x60\x00\x13\x9a\x71\x38\xff\xe6\x23\x49\xbb\x7c\x6b\x2a\xe7\x72\x43\x92\xff\xd6\x39\xf4\x1f\x49\x67\x18\x56\x96\x6e\x55\xb7\xe6\x4d\x99\xed\x58\x3c\xa6\xc1\x1a\x03\xcd\x57\x34\x58\xa3\xa0\x1d\x88\x05\x6b\x94\x9a\x67\xd2\xc2\xb9\x7e\x9b\x13\xab\xc5\xfa\x28\x38\xe3\x7c\xeb\x4d\x0a\xc3\x91\x5f\xea\x44\xa3\xe2\xc3\xaa\x2f\x9d\x3a\xac\xfa\x9e\x79\xa6\x43\x8b\xbd\x7e\x58\xf5\x45\xa7\x10\x90\x71\x1e\x57\x24\xa9\xbe\x25\xdf\xdd\x7a\x56\x91\x14\x2c\x84\x5e\x30\xb0\x93\xb6\x14\x2a\xdd\xb7\xe7\xd5\xa5\x5f\x14\xa4\x8f\xa4\x89\x24\x04\x2c\xab\xcd\xf0\xc6\x5a\x7b\xfe\xa8\x36\xd1\x8d\xc3\xcc\x47\xe8\x93\xc3\xa8\x5e\xd6\xa5\xd0\x8d\x33\x73\xc1\xe0\xc6\xd7\xc4\x29\xf8\xe2\x3c\x4a\x24\xe9\xec\x25\xaf\x0e\x33\x42\xd3\x53\x53\xb7\x92\x12\xc9\x15\xa7\x72\x22\x7f\x3b\xae\xd4\x46\x17\x0f\x36\x18\xa7\x8b\x85\x42\xe9\x11\xa5\x09\xb0\x2d\x0f\x6b\x02\x5c\x83\x04\x38\x9c\xb9\x4c\x29\x39\xec\xcc\xfa\x16\xd3\xd6\x3c\x58\x52\xc6\x22\xbe\x36\x56\xd0\x87\x25\xbd\x6a\xaa\xad\xab\xe7\x97\xd2\xc5\x63\x9b\x1e\x46\xe5\xb2\x43\x0f\xe3\x70\x39\xa4\x05\x3e\x9c\x1d\x3d\x5d\xc9\x5e\x67\xe7\xb8\x11\x14\x71\x66\x17\x31\x0f\xd7\x4c\x05\xcc\xfa\x7b\xd6\x7c\xa8\x2b\x06\x0a\xd6\xd8\xbe\x62\xe4\xd5\x21\x89\x66\x89\x38\x69\xa6\x03\x4c\x9c\xc4\x3e\xee\x1c\xb0\xf7\x68\xa9\xa9\xac\x95\x19\x72\x1b\x5d\x33\x8d\x15\x2f\x36\x19\x1c\x01\x16\xcb\x64\x1e\x19\xaf\x58\x33\xe5\x26\xfb\xf4\xcc\xbb\xb2\x49\x32\x74\xd3\x68\x03\x8c\x90\x42\x24\xce\xd8\x35\xa6\xf7\x69\x46\x60\x3a\xd8\x76\xe6\xd9\xd6\xb3\x7c\xf7\x51\x2f\xe6\xff\xaa\x37\x8b\x4a\x78\xc4\xd9\x8f\x48\xba\xd1\x71\x20\x0a\x8d\x38\xfb\x11\x49\x56\x56\x16\xd5\xb4\x95\x95\x25\x2d\xa0\xe2\xec\xe8\x05\xc2\x29\xce\x38\x34\x04\x53\x3c\xdb\xac\x11\x6f\x0d\x22\xcd\xe5\xba\x47\x23\x26\xd3\x28\xa2\x14\x4a\xe6\xbf\xc9\xbe\xe6\x15\x49\x90\x00\xe3\xbe\x1e\x51\x93\x68\xa4\x02\x8a\xa3\x6c\x0c\xdc\x34\x3e\x9d\xbd\xc9\x54\x60\x9d\x5b\xa4\x31\x89\x35\xab\x43\x98\xc4\x19\xaf\x8d\x30\x89\xe5\x3f\x04\xbe\x3f\xaf\x0a\x25\x82\xc6\x32\x1d\xfb\x3b\x52\xa8\xb0\xec\x33\xcf\xb6\x1b\x19\x51\x10\xf5\x99\x3f\xea\xba\x8d\xa2\x39\x4d\xfa\x7f\xa7\xcd\xcb\xa3\x43\x23\xb7\x47\x87\x67\x5e\x1b\xe8\x74\x13\x9a\x6b\x0e\x55\x83\x0a\x5b\x0c\x72\x13\x35\x99\x0a\xa0\x26\xcf\xbc\x6b\x35\x39\x33\x49\x48\x86\x68\x0a\x82\x18\xd6\x72\xe6\x4b\x2f\xe4\x0c\xbb\x41\xeb\x25\x83\x69\xd0\x7a\x2e\xef\x02\x20\xd6\x58\x01\x97\x81\x0d\xb9\x11\x2e\x63\xd6\xa3\xc7\xc3\x26\x36\xf2\xae\x8c\xdf\xad\xe6\xa1\xee\x03\x4c\x20\xe3\x11\x8f\xdc\x08\x97\x11\xeb\xa9\xa1\x01\x89\xc7\xff\xfe\xaa\xa0\xc0\xec\x6f\xcb\xba\x7a\x0c\x9c\x10\x8c\xc5\x53\x63\x4c\xe2\x91\xa6\x2f\x00\x3c\x33\xb5\x70\x63\x99\x29\x66\x1c\x1b\x67\x7e\x24\x8a\xb1\xc2\xde\x60\x4e\xb1\x68\x4d\x46\x21\x1e\xf1\x17\x18\x85\x78\xe4\xb6\x23\x52\xb1\xfa\x36\xc7\xf8\xf5\x98\x3c\x4c\x31\xf6\xd6\xd7\xf0\xf5\xff\x95\xcb\xc0\xd1\x74\xec\x21\x33\x9f\x7a\xe4\xa8\xbd\xcd\x21\x85\x2d\x69\x61\xf1\x60\x9f\x59\xb6\x78\xbc\x5d\xbc\x18\x1c\x0a\xb6\xc5\x23\xc6\x93\x15\x8b\x07\x6d\x35\x48\x3d\xaa\xbb\xc1\x8e\x47\x1c\x20\x06\x3b\x1e\x6f\x35\x96\xdb\x93\x87\xb4\x27\x25\xd1\x1e\x9a\x07\x13\xd9\xcc\x53\xb5\xe7\x88\x64\x10\x60\x06\xd6\x39\xee\x62\xea\x33\x13\x59\xf6\x23\xe5\xcd\xad\x59\x45\xe6\x25\x3b\xe6\xfb\x6a\xb3\xc8\x4f\xbd\x8e\x62\xaa\x5f\x76\x56\xa4\x46\x76\x1b\x47\x93\x30\x4f\x59\x2b\x35\x75\xf0\xcd\x2f\x3f\x15\xda\x6a\xe6\x99\xd6\x75\x2e\x7e\xcb\x84\xf0\x85\xe3\x22\xc4\x64\xd4\x50\xe9\x73\x6b\x76\x0f\x63\x2a\x8f\xdc\xcf\x44\x45\x56\x73\x40\xc0\x44\x96\xbd\xdd\x4c\x64\xd9\x21\xcc\x44\x76\xe4\xb6\x6e\xf8\xe5\x91\xf3\xcb\xf0\xcb\x23\xb7\x77\xe3\x2f\xcf\x6c\x8b\xa6\x26\x3b\x72\xf1\xdb\x5e\x0b\xd9\xb6\x0d\xc1\x3c\x72\x65\x80\xaa\x2c\x7e\x92\x3d\x69\x0e\x45\x39\xd8\x23\x67\x93\x99\xcb\xb2\x1b\xc3\x5c\x36\x51\x87\x04\xca\x3c\x6b\x9c\x2a\xdb\x4b\x25\x67\x35\x4c\x66\xb9\xc7\xc2\x64\x96\x5b\x6e\x98\xcc\xe8\x72\xc1\x34\xcf\xbb\xcc\xbc\xec\x16\x1c\xff\xc1\xf6\x6d\x2a\xb3\x23\x67\xbb\xa9\xcc\x8e\xdc\x04\x4d\x65\x76\xe4\x74\x37\x95\xd9\x11\x45\x44\xf9\x78\x9f\xa1\xa5\x2f\x1c\xde\x9c\x4a\xf8\xce\x10\x5f\xff\xf6\x5a\x89\x62\xb2\xbd\x56\x72\xe0\x99\xda\xec\xc8\x65\x7b\x7b\xb1\xe4\x76\xbd\x0d\x9f\x4b\x1f\x73\xc4\x94\x14\x2c\xcc\xee\x3b\x4b\x96\x53\x8b\xf4\xd4\x82\x9d\x2c\xed\xa1\x79\xb4\x47\xc6\xc4\x68\x60\xdb\x89\x55\xe7\x2b\x5e\xde\x4f\x29\x49\xab\xa5\x15\x4c\xd5\x1b\xc0\x1c\xf7\x43\xd3\x9d\x4d\x34\xbb\x8d\x6f\xaf\xe7\x37\xb6\xaa\xa3\x32\x87\xef\x2c\xed\xb1\x73\x6f\xe4\xa1\x71\xac\x25\x0f\x8d\x06\x4c\xeb\x08\x16\xe1\xec\xff\x10\x2c\x32\x23\x3a\x58\x04\x55\xf4\x63\xde\xfb\x8a\x1a\xf3\x09\x42\x79\x22\xca\x1c\x3a\x22\xd9\xdf\x77\xe7\x5d\x9d\xa9\xf1\x8f\x43\x8f\x96\x23\xf6\xe3\x7c\x79\x95\xe5\x0f\x3f\x5a\x9d\x79\xd9\xb1\xc0\x33\x2f\xdb\x0e\xd4\x53\x47\x37\xa8\xe7\x5b\x37\x08\x58\x80\x38\xd0\x6a\x50\x09\x90\x9e\xc5\x5a\x07\xe9\x59\xee\x3a\x21\x3d\x4b\x0b\x84\x1d\x8d\x47\x00\xce\xb3\xca\x64\x14\x94\xb4\xc5\x3a\x26\x24\x69\x9d\xef\x33\x79\x5e\x53\x5d\xdb\x8f\x62\x8e\xf9\x40\xfc\xd7\xf3\xae\x6b\xdf\xf2\x4f\x6a\x4f\x7d\xe5\x01\x9f\x23\x92\x62\x8b\xd2\x49\xce\x42\x89\x42\x6f\x60\xe9\x19\xfb\xc5\x07\x12\xc0\xd4\x6f\xb1\x4f\xe7\x65\x01\xe3\x98\x02\x1f\xa2\x65\x5b\x3e\x55\xcb\xd2\x27\xce\xf8\x50\xd1\xcd\xcc\x78\x76\xd6\x91\xa7\x02\x6e\xbe\x92\xc1\xee\x99\x1e\x8b\x96\x46\x14\xef\xde\x4c\x41\x42\xa1\xa6\x58\xa3\x50\x63\x3d\x32\xe1\x59\x6b\x9c\x0d\xa0\x50\x33\x45\x41\xa1\xa6\x53\x40\xa1\x32\xdb\x3f\x66\x10\x4c\x15\x88\xa2\xba\x53\x2e\x8d\xa1\x1b\x9c\x01\x22\xc6\x5a\x83\x49\xef\x98\x2f\x0c\x26\xed\xb9\x40\x9b\xb4\xac\x1d\x1c\x33\x5f\xc2\x62\x4b\xbe\x15\xac\xac\x1e\x11\xad\xc4\x8f\xbc\xec\xb9\x83\xb3\xc7\x24\x66\x67\x36\x66\x93\x98\xb5\x58\x2e\xbf\x5e\x0b\xd9\xf1\xbf\x8e\x9d\x62\x57\xf8\x3a\x76\x6a\xe4\xd9\xc7\xaf\xe6\x37\x72\xe3\xf7\xd4\xc1\x6e\xfc\x9a\x77\x6d\x8c\xc4\x72\x63\x2c\xea\x39\x39\x2b\x0c\x3e\x7d\x14\xe0\x7f\xee\xef\x46\xa6\x9e\x93\xdd\xd2\x7c\x66\x67\x0e\x37\xf3\x99\x9d\xb9\x85\x18\xb7\x7a\x66\xbb\xff\x62\x69\xad\xf9\xab\xdb\x46\xf5\x4d\x06\x38\x52\x10\x6d\xa3\xe1\x5e\x27\xb3\xa4\x20\x5f\x59\xb0\xa7\x7c\x31\xad\x66\xe8\x30\xad\x62\x40\x33\x50\xb5\xc7\x25\x69\xa0\xea\x99\x2b\xbd\x81\xaa\x67\xce\x11\x11\x9e\xb5\xb8\xaf\xc4\x77\xf6\x28\xaa\x29\xc9\xad\xab\x79\x3a\xac\xc3\xd0\xa7\x36\xbc\x46\x11\x37\xe1\xd9\x99\xdb\xb1\x73\x14\xd7\x2c\x49\x33\x9e\xc5\xda\x6e\xc6\xb3\x33\x0b\xd4\x68\xd9\x3b\x8a\xac\x29\xcf\xa2\x24\x3a\x25\xf1\x39\xd9\xd0\xbf\xc0\x4c\xd9\xa7\x44\x88\x76\x12\xf4\xf4\x88\x6a\x0e\xe7\xc6\xd7\x68\x92\x1c\x92\xce\x49\x7c\xc6\x5e\x6a\xbe\xb4\xda\x52\x27\xaf\x96\x5c\xcb\xbf\x9c\x39\x77\xfe\x63\xb3\x78\x49\xa5\x3c\x5c\x67\x7e\x2b\x12\xee\x32\xf3\x54\x76\x71\x56\xf0\xcf\xee\xae\x68\xa3\xa6\x53\x7b\x75\xbf\x9f\x51\xdb\x1c\x6d\x66\x53\x3b\xa3\x86\x99\x30\xed\x75\x14\x99\x30\xad\x1f\xd4\xd8\x84\x69\xad\x61\xd6\x73\x06\xe3\x76\xf4\x88\xc3\xbf\xcd\xcb\x0e\x7c\x9b\xa9\xc5\x33\x17\x2b\x93\xe2\x47\xe6\x95\xb7\x4e\x5f\x7f\x3a\x11\x7f\x16\xf3\xb2\x97\x16\x7a\xa4\xe9\xd4\x5a\x1c\xb6\x3f\x83\xc0\x73\x0d\x71\xba\xe3\x2b\x7a\xba\xf2\x1b\xb7\x1c\xa1\x3f\xa3\xbe\x73\x4d\x32\xdb\x5a\xad\xf9\x52\x90\x99\x9a\x57\x05\x99\xa9\xf9\xe7\xf4\x87\xf9\xa7\x1b\x43\xd3\x08\x58\x9c\x79\xa8\x6d\xba\xdf\xf9\x89\x03\x16\x67\x4a\xa2\x6d\x74\x9a\xd3\xb7\xe6\x36\x03\xfc\x3a\x76\xc4\x1f\x0b\x0d\x35\x58\x89\x91\x5b\xad\x91\x8a\x1b\xce\x6f\xcd\x04\x92\x0b\xa2\xb1\xda\xd7\x9d\x0e\x37\xed\x66\xd4\xaa\x1f\x1e\x0e\xd4\xd1\x9f\x3d\x1c\xb9\xbb\x39\x8b\xf2\x75\x5f\x79\xba\xfc\x2d\xfd\x64\xe2\xcd\x9a\x2a\xa2\xfe\xd0\x17\xf2\x77\xd4\x9a\x82\x3c\x72\x29\x57\xeb\x2c\x00\x2a\x27\x4d\xbe\x72\xaf\x73\xd2\xe4\x2b\x77\x4d\x27\x4d\xae\xec\x64\x80\xbb\x73\x53\xfb\x41\x1e\x36\xf3\x2e\xad\xc9\x53\x6d\x1b\x2d\xa3\xac\x85\xd5\x4b\xda\x6a\xff\x47\x4b\x4f\x6c\x5b\x6e\x58\xfc\x4e\x7d\xdc\x72\x76\xfc\xe1\x39\xa6\x75\x7f\x84\x90\x71\x76\x28\x9f\x71\xbb\x99\xa6\x86\x70\x5f\x77\xf9\x27\x31\xca\xf3\x2e\xfb\xde\x8d\xd8\x5d\x6e\x4a\x52\x82\x07\xfa\xdb\x10\xef\xeb\x2e\x11\xb7\x97\x73\x45\xfc\xf8\xd3\x54\xf8\xab\x4f\x53\xee\xcf\x9f\xe6\xa1\xdd\xe2\x6c\x4f\x06\x79\x5f\x37\xb7\x4b\xa7\x42\x6e\xac\xd7\x3f\x82\x29\x58\x39\xce\x85\x7c\xdf\x47\x44\xda\x4a\x47\x78\x5d\xdd\x6c\x99\x02\x7a\xb7\xfb\x48\xb9\x5d\x52\xbe\x74\xdb\xa8\xd1\x64\xa6\xe5\xa7\x6e\x2a\x17\x2e\xe7\x45\x6e\x8e\xd1\x7a\x44\xb7\xe6\x4c\x49\xca\x6f\xc4\xb0\xfe\x39\x79\x66\x90\x85\x82\x8c\xb7\xc6\xa2\x13\x64\xbc\xdd\xec\x4c\xe4\x3d\xbe\x39\xaa\xff\x9c\xde\x88\xdd\x92\x3c\xc7\x77\x49\x39\x1e\x19\xf6\x08\xa1\xc6\xdb\x7d\xe6\x21\x7d\x4f\x6f\x2f\x7a\x9b\xda\xdb\xc9\x3c\x51\x3d\xff\x1c\xbe\x7b\xa0\x0d\x39\x79\xf1\xeb\x8b\x75\xf2\xe2\x31\x5e\xd1\xee\xbe\x57\x34\xe7\x61\x1a\x80\xbb\x8f\xe9\xff\xe7\xa8\xdc\xdc\x2d\x8d\x1f\xbf\xee\x2b\x2f\x3b\x78\x25\x5d\xb1\x49\x0b\x94\x92\x3f\x2e\x39\x75\x56\xa8\xeb\x99\x3a\x9a\x7f\x85\x73\x85\xd4\xc7\x5c\xb7\x26\xa9\x8f\x1d\x60\xf6\x88\x56\x2a\x7b\x9e\x8a\x0e\xc9\x0b\x76\x3a\xd5\x71\xe3\x6c\x98\x24\x37\xc6\x23\x3c\x8f\x41\x7b\x0a\xe2\xf0\x50\xe6\x65\x07\xe3\x78\x62\x4e\x72\x1d\x73\x9f\x9f\xe4\x3a\x06\x17\x3a\xc9\x75\xcc\xb5\x7b\x1e\x40\x1d\xad\x32\xcc\xc3\xeb\x01\xb7\xfa\x74\xee\xe3\x0b\x8c\xcb\x3c\xbc\x1e\x80\xc7\xcc\xc3\x07\x0b\x17\xfa\x79\x24\x2d\x4e\x44\x50\x23\x94\xec\x05\x61\xe2\xe5\x47\xf4\xf8\xa5\x09\xa4\x51\x9e\x11\x15\x2a\x83\xeb\x6c\x2a\x8d\x72\x03\xb1\x36\x93\x45\x79\xd0\x20\x5b\x0a\xf0\x03\x4f\xa7\x4d\x8e\xbf\x6c\x1e\x70\xcd\x0e\x4a\xd2\x19\x00\x8b\xcf\x23\x2a\x5e\xa7\x55\x4a\x5e\x0e\xac\x9d\x79\xda\x3d\x26\x11\x3d\x8b\x06\x63\x42\x22\xaf\x8c\x49\x50\x93\x79\x2a\x3f\x6c\x86\xde\xd9\x8f\x8f\xb7\x60\xea\x98\x4f\x7f\x72\x3f\xd3\xf6\x65\x6e\xd4\xcc\x04\xc2\x7d\xd2\x33\x4e\xec\x75\x66\x70\x15\xe3\xde\xbd\x0a\xa6\xb0\xeb\xad\x67\x78\xa4\x79\xf5\x54\xd7\x69\xbd\x4c\x37\xfc\x88\xdd\x22\x9d\x28\x6e\xb3\x9e\x59\x80\x7b\x3c\x23\x89\x7b\x3c\xaf\x3a\x54\x2a\x4d\xcb\xfa\x48\x15\x1c\xdc\xf5\x1f\xe0\xe4\xd3\x04\xa8\x71\x74\x4e\x52\x21\x1f\x34\xc6\xa9\x90\xcb\x79\x44\xb4\x0e\x7d\x46\x2c\x16\x0b\x62\x15\xea\xa8\x21\x39\x52\xdc\x97\xd8\x79\x42\x63\x6b\x7d\x63\x9e\x00\x96\xee\x94\xe4\xcc\xd4\xef\xb7\x5f\xdb\xde\xf3\xad\x79\x78\x99\x30\x27\xc1\xec\xb6\x04\xce\x13\xf6\xbe\x1a\xd1\x44\xac\x83\x1f\x69\x16\x97\x32\xf2\xd4\xd7\x2c\xef\xa3\xf3\x84\x9f\x8f\x81\x3d\x1d\x15\x57\x46\x44\x13\xe6\x32\x7a\x42\xa2\xb7\x6c\x2c\xa7\x61\xbf\x60\x82\xa7\xb0\xe7\x2d\xeb\x5d\xd8\xf3\xc6\x7e\x35\x93\xea\xb8\xf0\x53\x4f\x69\x1c\xaf\xf3\x74\x7c\x7a\xc9\x4f\x9c\x34\xba\x47\x94\x9a\x06\xbe\x65\x9e\x4e\x3f\xc7\x9d\x78\x3a\xc1\x71\x69\x35\x05\x3b\x53\x52\xa3\x53\xb7\xd3\x69\xd1\x11\x9e\xb4\xce\x01\xff\x88\xe2\xf7\xbd\xa9\xa1\xb3\xd1\xa1\x33\xcf\xd3\xd9\xe8\xcc\x39\xfd\x88\x0e\xc6\x4f\x53\x3d\x8b\xdb\xc8\xcb\x5d\xf1\xf5\x79\x38\xfc\x30\xbf\x99\x1e\x1c\x9a\xb3\xbd\x4f\xa4\xbf\xc5\xbe\x30\xdf\x72\x05\xf1\x66\x8a\x5f\x46\x6a\x70\xee\xcf\xcb\x48\x0d\xce\xf2\x69\x5c\x79\x07\x39\x39\x4d\x02\x3a\x9c\x1a\x70\x4e\x43\xb2\x21\x58\x9d\xb3\x38\xa6\xad\x1e\x11\x7d\x6b\x67\x23\x28\x50\xd7\xe5\xe5\x44\xe1\xb9\xc7\x6b\xb6\x09\xd7\xca\x40\xbb\xc1\xd9\x3f\x9d\x98\x0f\x0f\xd6\x6c\x0e\xd1\x03\xf8\x39\x05\x9e\x1a\xce\x59\xff\x48\x02\xbd\xfa\x38\x9f\x46\x52\x1d\x5c\x0b\x67\x33\xad\xfa\x5d\xf3\xe5\x9f\x0b\xf2\xa7\xc6\x59\xe1\xa8\x9b\x62\x81\xbb\x0e\x3a\xf8\x76\xe8\x53\xc9\x33\xc7\x3e\xb2\x01\x2a\x4f\xdf\x28\xc6\x01\x4e\x25\xe6\x1b\x85\x35\x26\x08\x56\xc1\xdf\x3f\x6f\x33\x73\x31\xa4\x66\x88\x3b\x7c\x23\x9c\x66\x88\x3b\x4a\xbe\x93\x67\x7c\xe4\x99\x20\x2b\xa9\x8c\x9c\x9f\x07\x53\xf9\xb6\x0f\x9f\xd1\x15\x16\xab\x60\x42\x9a\xc2\x62\x15\x0c\x8e\xf3\x76\x2e\x23\xa6\x9b\x81\x59\x0d\x7f\xd4\x54\xfa\xbe\x47\xe4\x8f\x4a\xd6\x8b\xe1\x61\x1a\xb5\xd5\xb8\x13\x4c\xa7\xf3\xcb\x79\x2e\x94\xd6\x04\x87\x33\x05\xcb\x9a\xfd\x7d\xf3\x4f\x12\xc5\x58\x2f\x6b\xec\x73\x42\x65\x55\x3c\x3d\xf3\x86\x67\xa0\x46\x94\x67\xea\xca\x97\xc2\xdd\xa5\x1b\x15\xbb\x0d\x32\x61\xde\x39\xca\x18\x1c\x8e\xb2\xd4\x6e\x59\xe3\x67\x56\x9a\x73\xee\xc0\x66\x32\xcd\x39\x77\x70\xef\x9e\x02\x6c\xd5\x7e\xfc\x87\x1d\xdd\x7c\x74\xc7\xdb\x43\x8e\x41\xc1\xc6\x33\x05\xdf\xaa\xf8\xa7\xa7\xd9\xe9\xe6\xc9\x6e\x63\xfc\xd6\xc9\x9d\x64\x1a\xbf\x75\xb6\x23\x25\x61\xf7\xa0\x1f\x1c\xaf\x9d\xa9\x86\x19\xed\x15\xbf\xfe\x34\xff\xc1\xde\x9c\x4f\xff\xfc\xd4\x75\xea\x04\x70\xfb\xb2\x36\x3b\xb7\x7d\xf6\x8c\x4e\x08\x09\x2b\x50\x30\xac\xc6\xcd\x79\x76\xac\x68\x35\xa2\xcc\x96\x33\xe5\x62\x68\xba\x11\x6d\x8a\x64\x38\xc0\x57\xb1\xe5\xf5\x5c\xd0\x27\xa2\x6e\xe4\xec\xa4\xdd\xac\x41\xac\xe4\xee\x0b\x39\x1b\xa9\x90\x51\xcd\xb9\x99\x1e\xe9\xe7\x93\x38\xff\xb0\x32\xca\x81\xd9\x17\xb9\xeb\xf8\x89\xd4\xff\xce\x3c\x17\x6e\xaa\x75\x74\x83\x4e\x1c\x09\x43\xd1\x1d\x48\x7d\xa6\xc7\x4c\x8f\x72\x1e\x79\x99\x8d\x87\x97\xc9\x1b\x44\x0d\xcd\xc2\x85\x41\x6a\x0e\xa8\x39\x5f\xf1\xf7\x7f\xff\xef\x76\x4c\xe9\x9c\xe2\xdd\xba\x33\x1d\x0c\x7b\x39\xe8\x5b\xd1\x6e\xdd\xc0\x25\xa7\x30\x30\xf7\xd9\xf3\x9d\x63\x6e\x6e\x24\x11\x61\x8f\xbc\x29\xa5\xec\xcc\x9b\x46\xc3\xf1\xf7\x67\x5a\xdf\x39\x60\x4d\xaa\x95\x85\x3e\x14\xe5\x92\x7d\x58\x18\x97\x3b\xa7\xfa\x40\x03\xe3\x3b\x73\x2c\xb2\xae\x06\xc1\x83\x0c\xac\x39\xb4\x6e\x8c\x45\x53\x60\x95\xbb\xa3\xd4\x0a\xac\x72\xf7\xb4\xd0\xa7\xd3\xcc\x87\x1f\x3d\x2b\x48\x0a\x4b\xae\x79\x26\x0a\x2a\x8e\x0c\x93\x6b\x71\x49\x9a\xc6\xaa\xdc\x80\xf3\xe6\x34\x69\x27\xf3\x75\x0e\x85\xe0\x30\xd3\x8d\x63\xc1\xe6\x35\xcd\xb4\x45\x1a\xfe\x47\x5c\xff\xf7\xff\xfa\xf9\x7e\xa8\xc0\x9a\x99\x0f\x15\x58\x93\xff\x2b\x45\xe1\xc1\xe6\x2d\xcc\x49\x3f\x67\x24\x21\x05\xf3\x0b\x23\x05\xf3\x07\xa2\xf7\x58\x68\xd3\x68\xc0\xd4\x4d\x1c\x2d\xad\xa6\x18\xc5\xb2\x5c\x79\x53\xf8\xbf\x9a\x42\x7f\x92\x6e\x24\x45\xb6\xf8\xae\x3c\xa7\x63\x59\xe8\x6e\x61\x43\xae\x68\xfa\x26\x9d\x1a\x40\x9c\xa6\x48\xa7\x0a\x46\xa5\x29\xc4\xc7\x28\x2d\xc5\x7c\x9e\x67\xec\x61\x02\x7c\x8c\xd2\xa8\x8c\x03\x56\xd0\x24\x9d\x19\x0e\xb4\xc2\x9c\xc6\xf4\xb5\x48\x3a\x82\xd2\xa3\xdb\xc8\x44\x4a\x11\x16\x0a\x68\xd8\x9c\x46\xf8\x5d\x34\x49\x70\xa7\x23\x4d\xd2\x2c\xa9\xed\x88\x28\x80\x61\xcb\xab\x02\xbc\xa5\x83\x9f\x6d\x6f\x1e\xe5\xdf\x06\xf5\xb9\x0c\xe9\xa3\x4b\x17\x73\x88\xad\xca\xd8\x8e\x83\xb1\x10\xb6\xa3\x44\x67\x5d\x0e\x52\x29\x79\x53\xe4\x94\x2c\xa8\xc5\xa9\x3e\x91\x5c\xb7\xfc\xc2\xe7\x78\xbe\x93\x45\x09\x14\xd1\x14\x16\x63\x12\x01\x35\x9d\xb4\xad\x36\xb6\x2d\x01\x2c\x26\x71\x4d\x73\x71\x1e\x53\xaa\xc3\x4d\x18\x44\xe1\x29\x2a\xa8\x9d\x09\x9c\xe2\xfd\x85\x5d\xa8\x9c\xa3\xc1\x4f\x70\x74\x82\x9f\xc0\xbc\x3d\x8d\x9f\xa8\x8d\x5d\x16\xfc\x04\x6e\x8c\x69\xfc\x44\x3f\xdf\x97\xa7\x4f\x17\x7e\x24\xfd\x1a\xbb\xff\x74\x36\xb6\x73\xb6\xfc\xd6\x1e\x05\x36\x7a\x53\x3e\x9d\x93\x9d\x53\x98\x88\x76\xa5\xa7\x4d\x50\x06\xd6\x65\x0a\x05\xd1\x6e\x34\x08\xa1\x1e\xda\x9d\xef\x7c\x0c\x51\x01\xe9\xc0\xf7\x5b\x8a\xd7\x15\x7d\xe2\xd8\x78\xa6\xab\x99\xa1\x2a\xe1\xe9\x73\x99\xae\x95\x42\x05\x71\x28\x51\x20\xb7\x99\x81\xf9\xc5\x36\xe8\xb3\xe6\x99\xa7\x4b\x9e\x79\xba\x0c\x24\x45\x2a\x70\x4c\x0b\xdf\x30\x0f\x96\xfc\x36\x02\xae\xe4\x99\x87\x2b\xdf\x09\x01\x57\x52\xa6\x74\x29\x7a\xc2\x78\x04\x80\x24\x33\x78\x84\xbc\x6a\x7f\x6a\xc3\x8a\x22\x3c\x42\x23\xf6\x6b\x2a\xcd\x5a\xbb\x52\x1b\xf3\xef\x01\x72\x9c\x06\x27\x5c\x99\x4c\xdb\x74\x7c\x2d\xc5\xda\xdc\xcb\xf4\x11\x54\x21\xde\xb3\x29\x46\xa9\x58\xe4\xa6\x71\x0b\x57\x26\x9e\xa0\x09\x0d\x47\xe7\xdc\x98\xb6\x51\xe0\x0c\x45\xb8\xee\xf4\x88\x6d\xd9\x2d\x0f\x65\x49\x45\x9f\x34\x12\xe1\xd5\x5a\x8d\x35\xb8\x33\x20\x06\x21\xa7\x0f\xbc\xb5\x95\x14\xfa\xe8\xcc\x2d\x5d\xb0\xbd\xf0\xa9\x8e\xc0\x9b\x07\xb3\x43\x58\x81\x12\xfd\x4b\x1c\x52\x67\x1d\x2d\x62\xd3\x18\x50\x37\xc5\xc1\xe3\x53\x9b\xdb\x70\xcd\x4a\xd5\x9e\xe9\x38\xfb\x95\x67\xc2\x40\xd6\x94\xb2\xf4\x2c\x95\xd1\x0c\xa8\x91\xbe\x7a\x96\x37\x8d\x4d\xe3\x87\x4e\x92\x06\xfe\x66\x7e\x80\xd8\xd8\x10\x3b\x0d\x0a\xb8\x4f\x0a\x32\x28\x00\xa0\xdd\x74\x0a\xb5\x23\xf3\xec\x03\xc6\x86\x1d\x4c\x28\x80\x0a\xf0\x72\x02\x02\xc8\x66\x2b\xaf\x7f\x23\x5a\x6f\x3a\xef\x19\x31\x7f\x53\x3e\xff\x46\xec\xce\xfc\x98\x15\xb2\xa1\x79\x29\xef\x59\x23\x58\x70\x82\x00\xc8\x86\x26\x04\x40\x3b\x52\x3d\xcd\xc9\xe3\xbf\xa8\xda\x64\x39\x9b\x4c\xb4\x0f\x8e\xcd\x96\x2a\xf8\xa0\x48\x3b\x1d\x33\xc2\x3a\x04\x01\x30\x5b\x7e\x2a\xdf\xd8\x4c\x85\xec\x91\x60\xde\x7d\x70\x6c\xa2\x7f\x0a\x01\x70\xde\x25\x2d\x35\x43\x64\x16\x2a\x79\xce\xb2\xe9\x7e\x4c\x11\xc9\x09\x48\x9a\xb3\x2c\x55\xd2\x9c\xdd\xec\x7e\xc2\x00\x34\x02\xd0\xe6\xc7\xa6\xb6\xbb\xe6\x5d\x1b\x6c\xd9\x55\x84\x01\x68\x37\xb7\xa9\x8f\xd3\x31\x71\x5e\xd8\x73\x5f\x5b\x6a\x84\x7d\x8c\x62\x35\x8b\xe7\x3b\x4e\x1b\x4d\x36\x4f\x7d\xd4\x64\x5a\x39\x6d\xf4\x99\xa1\x21\x21\x13\xd7\x7c\xfb\xea\xdf\x1b\x2d\xc4\x4f\xd1\xf4\x4c\xfc\x94\x69\x65\x57\xfd\x7b\xc3\x35\xf1\x53\x16\x88\x5d\xf3\xef\x35\xd6\xae\xf9\xf7\xe6\x2a\xd7\x7c\xcb\xd4\xb6\x67\xbe\xb4\x96\x87\xcb\x96\xc2\x3c\xdd\x26\xe8\x73\x85\xcd\xfd\xd4\x71\x39\x4c\xfb\xdb\x81\xa5\x4d\xfb\xd0\x47\x2c\xb9\xf2\xa1\x97\xdc\x64\xec\x42\xaf\x2d\x35\x34\x50\x2b\x7b\xa1\xb9\x9e\x8e\xb7\xfe\x9a\x4c\x0d\x07\xfb\xb4\x9b\x1c\xb4\xde\xb4\x97\xbc\x46\x5b\x93\x97\xbc\x82\x25\x9e\x26\x73\x22\x04\x71\x7e\x4d\x5a\x93\x0a\x89\x40\xf4\x78\xdf\x54\x2f\x70\x1f\x91\x97\xfb\x3a\xd0\x33\xbe\x8e\x27\xbe\xe9\x5b\xa1\x73\x0f\xe6\xcd\x17\xe2\xdc\x2b\xbf\x97\x4a\xc4\x01\xfb\xf5\xe6\xc7\xfc\xb3\x4f\x7b\x9c\x79\xd5\xf0\x5c\x66\x91\x3c\xdc\xb3\xa7\x03\x0c\x5d\xaf\x91\xdc\x75\xd4\xdb\x68\xdc\xac\x00\xfb\xa8\x0f\x80\x5d\xf3\x6b\x38\x6e\x49\x05\xc0\xd5\xe7\x53\x94\x92\xfc\xd3\x5b\x1e\xc3\x67\x97\xf5\x91\x3d\xcf\x2e\xeb\xa3\x70\x22\xff\xc0\xe3\x52\xb2\x7d\xd6\x47\x96\x9a\x7d\xd6\x47\x41\x4f\xfa\x19\x90\x4b\x9d\xec\xa3\xbe\x1b\xf7\xa7\x1f\x3b\x62\xcd\xbb\xd3\x03\x38\x10\x19\xfb\xfc\x67\x6b\x3c\x53\x92\xec\x04\x67\x9e\xd9\x14\x50\xf3\xf0\x4f\x0f\x29\x96\x83\xf9\x15\xbb\x45\xde\x95\xb9\xff\x48\x41\xde\xd9\xda\x2b\x1a\xd4\xc0\x19\x6a\xd7\x72\xcb\x3a\xfc\x01\xda\x40\x23\xff\xb1\xd3\xdd\x29\xd8\x1a\xd7\x9d\xa2\x98\x9d\x74\x93\x6c\xac\xf8\xd4\x67\x3c\xcb\x2d\x0f\xbd\xd3\x71\xaa\xfe\xcc\x85\x9b\xdf\xe0\x59\xce\x68\xb0\xd3\xb1\x19\xfc\x4c\x86\x7b\xff\x3b\x7e\x68\xc6\xcd\x9c\xb1\xc1\xaf\x9c\x39\x60\xfe\xd0\x77\x1c\xed\x5c\x7b\xa7\x84\x18\xc4\x6a\x9a\x6a\x57\xdb\x3b\x23\xd8\x16\x99\xed\x3f\x18\x22\x39\x2d\x7e\xd0\xdf\xb6\xbc\x5c\xcd\xd7\x46\xd3\x37\x3b\x35\xbf\xb5\x6f\xed\x46\x15\xc0\x97\xdc\xd9\x17\xcd\x0d\x76\xcd\x8c\xac\xd6\xc3\x0d\x0d\xc3\xb4\x6b\xf9\xc2\xdd\x3d\xed\x5a\x1e\xfd\xa6\x53\x1d\x77\xd4\xde\x6a\xfc\x79\x03\x76\x25\xed\x69\xae\xb1\x13\x8b\x2c\xac\x0d\x86\xd2\x7e\xe7\xf7\xce\x66\xbf\xf3\x60\x78\xe4\x4b\x6e\x99\xb4\x7f\xd9\x61\x2b\xe2\x70\x63\x1b\xe2\x94\x45\x39\x0f\x15\xa2\x3c\x52\xea\x47\x2a\x51\x41\xf2\xf2\x2d\xa9\x9e\x97\x2f\x13\xe4\x0f\x50\x2d\xbb\x84\x3d\xc9\x47\x76\x58\xfb\x8e\x6b\x36\x72\xf9\x8e\x5b\xac\x71\x76\x1d\x9f\x31\x9e\xff\x01\x77\xba\xf3\xae\x71\x0a\x6c\xbf\x7f\xe8\xad\x1c\x35\x7f\xe8\xad\x69\x2b\xa8\x0c\xce\x8f\x3f\xec\x45\xd4\x18\xc3\x23\x27\xbd\x1c\xc2\x4f\x77\x53\x92\x8d\x40\xd0\xae\xcc\xbf\x68\x9c\xb4\x47\xa7\x77\x07\x62\x32\x61\x00\xe3\xb2\x67\x37\x6f\x6d\xe8\x17\x76\xf3\x9e\x8d\x41\xff\x03\x3d\xc4\x84\xf9\xd3\x54\x84\xaf\xf6\x11\x45\xcd\xc1\x25\xd6\x5e\xde\xda\x32\x90\xc2\xd6\x65\xfe\xdb\xab\x7b\xb6\x33\x05\x49\x47\x4f\x37\xd9\xa9\x1b\x37\xa0\x9c\xba\x8d\x98\xd3\x29\x3f\x6d\xeb\xd6\x97\x97\xdd\xb4\xc5\x09\x6e\x1f\x51\x54\x21\xb6\x6f\x2c\xf9\x65\x47\x71\xa9\xeb\xf0\x85\xd7\x53\x70\xc9\x0d\x5b\xb8\xeb\x2d\xb9\x5d\x0b\xb7\xb9\x25\x37\x6b\x99\xef\x9b\xb2\xf8\x7a\x3f\x5e\x87\xd9\x15\x1a\x7f\x90\x39\x1a\xcb\xe6\xb2\x9b\x74\xf4\x4e\x31\x1a\xfc\x7e\x9d\x94\x63\xba\x7c\x46\x7b\xd9\xf5\x79\xbc\x7f\xd1\x25\x17\xdf\xf4\x3a\x80\x4c\x5b\x9f\x5f\x07\xa8\xe8\x9a\xa7\xbe\x74\xdf\x7c\x0a\x2a\x3a\x75\x92\x11\x1a\x7b\xf5\x12\xe9\xd6\xd9\x80\x17\x2d\xf9\x50\x1b\xb1\x73\xeb\x00\x05\x5d\x23\x1a\x05\xdd\xe8\x30\x50\xd0\xe9\x15\x50\xd0\x69\xec\xf2\xf9\xd1\x90\xa4\x60\xa7\xfa\x46\xa0\x39\x15\xe5\x23\xda\x6c\x7b\x52\x07\x29\x7d\x47\xba\xc5\xa4\xa1\x2d\x55\x32\x72\x00\x8f\xcc\x3a\x7c\x77\x69\x37\xad\xc1\xd0\x9c\xff\xc8\x85\x74\xa4\x0e\xdb\x47\x0f\xb5\xd7\x94\x3a\xde\x7f\x6e\x49\x2e\xe6\x1c\x4c\xe3\x7f\x83\x59\xd6\x89\x55\xd9\x1e\xa3\x25\x67\xe5\xf3\x69\x47\xf4\x02\x67\xc8\xe5\xad\x6c\xc0\x9f\x96\x9d\x95\x8d\x2d\x72\x9d\x86\x2d\xf7\x3b\x4f\xad\xf5\x7b\xf1\x2c\x11\x7b\x3d\xe2\x40\xf4\x25\xe0\xfd\x56\x37\xd3\x57\xf2\x71\x91\xd6\xe8\x62\xfa\xd6\x48\x24\xf1\xf4\x9f\x28\xb9\x5a\x4d\xa1\x0e\x5d\x3f\x1a\x1f\x7a\xff\x31\x87\xef\x23\x0a\xfe\x71\x45\xb2\xde\xde\xf2\xa9\x16\xe1\x45\x2f\x98\xb6\xde\xd4\xbc\x8f\x68\x37\x54\xa3\x29\xba\x94\x80\x64\x59\x27\xb6\xec\x94\x8b\x2d\x9b\x81\x39\x63\xa0\xe6\x65\x01\x28\xfb\xe4\xa7\x76\x84\xb4\x34\x4d\xf7\x8c\x3e\x23\x0d\x07\x57\x46\x9c\xde\xf3\xf2\xa9\x29\xc5\xdf\x4f\xb7\x0e\x15\xba\x5e\xa7\xef\x6d\x26\xed\x47\x34\x47\x14\x5d\x66\xf7\x27\x73\x57\xee\xcf\x36\xd3\x9d\x64\xe5\x49\x07\x6e\xbc\x89\x2e\xc7\xd9\xff\xf0\xd2\x2f\x25\xf8\x9b\x07\x8b\x49\x49\xfc\xa6\xe9\x29\x1f\xe9\x4f\x9b\xa1\x87\x53\xdc\x4b\x95\xc3\x68\x5d\xe6\x6b\xe0\x12\xb7\x44\xbe\x54\x31\xf6\xaf\xcb\xc7\xbb\x53\xcb\x3e\xa2\xe7\x5b\x24\xeb\xfe\x3e\x0e\x97\xe9\x97\x2e\x1c\xdc\xeb\xc2\xa5\xca\x68\x2b\x59\x5f\x03\xcc\xbe\x2e\xe8\xed\xef\x94\xa4\xc3\xe6\xa2\xb6\x78\x19\xef\x88\x46\x02\xdd\xa9\xa0\x71\x57\x3e\xcd\x57\xc1\xf5\xcf\xf2\xb6\xd3\xb4\x5d\xbe\xfd\x2f\xf1\x35\x35\x6c\x80\xab\x10\x1a\x7f\xe6\x53\xea\xdf\x11\x8d\x28\xf5\x39\xb5\x0a\x74\x24\xbe\x57\x2c\x11\x38\x3d\x4f\x53\xf0\xf6\x78\xa7\x64\x12\x41\x46\xfc\x79\xa0\x3c\x39\x44\xc6\x74\x81\xfe\x58\x76\xe4\xb6\xc2\x0a\x2f\x93\x77\xf9\x54\xdc\xe1\xc7\xe4\x37\xcb\x57\x47\x7a\xa6\x98\x56\x0e\x97\xf6\x82\x73\x89\xed\x14\xce\xa5\x42\x7d\x9d\x36\xf2\x4e\x39\x9e\xd9\x83\x2a\x28\x68\x1d\x5b\xd7\x12\xe9\x52\x69\x69\xa8\x8c\x40\x58\x32\x96\xd2\xe9\xbd\x2b\xb8\xd8\xcd\x4f\xf0\xe5\x32\x23\x53\x4b\xd7\x63\x2f\xa2\x1d\xc4\x69\x31\x88\xc5\x26\xa2\xf4\xbc\xaf\x45\x29\xd5\xd3\xfa\x62\xea\xca\xb3\x3d\xcd\x6c\xfa\x48\x53\x52\x5e\xf5\xa5\xa2\x31\x46\xdb\x27\xa7\x5f\xad\xdc\x7b\x58\x4a\x95\x8b\x8e\xf5\x9b\x25\x76\xa5\x9a\xe3\xb0\x72\xb1\x99\x48\x8e\x5d\xab\x29\x88\x93\xa8\x21\xca\x58\xfc\x96\xb3\xb4\x40\xfe\x99\x73\xf3\x79\x55\x77\x38\xab\x5f\xab\x0e\xc8\x5f\xf8\xe7\xf4\xb1\x14\xc9\xd1\x37\xec\x70\xd5\xa1\x53\xec\x61\xca\x86\x57\xfb\xfb\xaa\xad\xca\xec\x94\x95\xc8\x29\xd6\x83\x69\x95\x30\x94\x2d\x27\xc3\x7b\xa7\x81\x78\x95\x1a\xce\xf4\xe5\xd4\x78\x04\xeb\x2f\xb3\x2a\xf5\xa8\x36\xa2\x51\x6a\xc7\x5b\x8e\x8f\xd4\x54\x48\xd7\x71\xee\xca\xcb\xc4\x48\x67\x4b\xfd\x16\x67\x14\xe5\x1a\x86\xde\x52\x92\xee\xe7\xc7\x5b\x90\x2f\x6c\xa9\x03\x28\x74\x76\x94\x0a\xd0\xbc\xa7\x60\x1d\x3c\x3d\x7f\xb5\xf1\x89\x35\x56\x31\x89\x0f\x7e\x83\xe6\x38\xf8\x8f\x4f\x7d\x38\x04\x17\xdc\x48\x50\x1c\xae\x2a\xf4\x13\x40\xe6\x55\xb7\x01\x65\xec\xc1\xa6\x4a\x6a\x25\x23\xe3\xc8\x40\xe7\xf4\x78\x44\x74\x47\xaa\x08\x1f\xc8\xfb\x1f\x5f\xbb\x6a\xea\xa8\x73\x94\x8e\x31\x91\xd2\x0d\x25\xdd\x82\x48\x09\x08\xca\x6a\xc6\x30\xd5\x23\xa2\xaf\x5d\x77\x44\x11\x32\x33\x00\x0d\xc4\x2b\xc7\x75\x33\x76\xfc\xa6\x01\xe2\x55\x6a\x00\x54\x96\x78\x95\xce\x1b\x64\xf3\x6a\x46\xfc\x45\x5f\x6b\x20\xfe\xae\x94\x64\x64\x3c\x7d\xdc\x8c\xf8\x9b\x29\xca\x10\xbf\x99\x5a\xc8\x76\x99\x99\x27\xaa\xa5\x96\x19\xdc\x0c\xf0\x23\xf8\x63\x35\xb2\x75\xf4\x3c\x6d\x3a\x2d\x53\x0e\xbb\x74\xfe\xe2\x53\x78\x22\x0d\x3f\xcc\xbb\xbe\x42\x5e\x34\xd5\xd4\xdc\x30\x3e\xae\xe6\xac\xde\x28\xdd\x0d\xb4\x5f\x7a\x49\x13\x7c\xbe\x12\x98\x24\x0a\xf2\x05\x07\x6c\xea\x6a\x40\x2b\xd2\xfb\x52\x72\x3b\x6c\x9a\x4b\x40\x90\x0b\xd4\xdd\xba\x9d\x5f\xe2\x8e\x64\xd3\x2b\x3b\xb6\x70\x20\x17\x60\xb9\x65\xb6\x9e\x71\xd2\x9f\x24\x1c\x84\x85\x63\xdd\x04\xf2\xd6\x3c\xfd\x79\xa9\xb8\xe5\x61\xe4\x61\x2b\xbe\x89\x13\x19\x79\x5a\x4d\xaf\x48\x51\x52\x73\x08\x42\x5b\x4e\x31\x88\xbd\x7c\xdd\x10\x3a\xbc\x5f\xda\x32\xc8\x4e\x7d\x3b\xf3\x08\xd3\xfb\x66\xc3\x4f\x39\x3f\x49\xf9\x50\xf7\x96\xfc\xd1\x11\xec\xe8\x18\x42\x73\x94\xec\x58\xb7\x0d\x66\x68\x23\x4a\x35\x58\xb2\xf1\xdd\x9c\x0c\xfc\xcf\xbe\x83\x92\xef\x86\xaf\x7f\x79\xd5\x31\xc5\x35\xa2\xcd\x69\xa9\x2a\xe6\xb4\x9a\x6f\x7d\xe8\x72\xae\xde\xd8\xd3\xb8\xc3\x88\x7c\xa7\x3e\x07\xc7\x3f\xf7\xf4\xce\xa9\xc2\x2d\xa5\x63\x3e\x43\xe9\x31\x33\x4f\x4b\x2f\x18\x13\x32\x0a\x5a\x42\xe7\x98\xe1\x0e\xd6\x09\xd3\x45\x85\xec\x8e\x51\x8f\xe6\xdf\x89\xcb\x65\xbb\xeb\xc4\xe5\xde\x11\x7d\x45\xa3\x2f\x3a\x26\x04\xf6\x79\x61\x46\x2a\x9e\x94\x25\xcc\x48\x85\x22\x67\x75\x8e\x16\x7e\xaa\xb8\x41\x1c\xe6\xcb\x2c\x3c\x47\xee\x08\x9d\x28\x5c\x36\xac\x4e\x14\x2e\xab\x56\x3c\x3c\x35\x17\xd5\x6e\xce\x71\x70\x00\x4b\xf9\x06\x2b\x66\xd0\xd5\x3d\xb3\xb1\xad\x2d\xf1\xf2\xd4\x4c\x40\x81\x4f\x2a\x0e\xa2\x65\xec\xc9\xc0\x8c\xbd\xba\x35\x9e\x8b\x49\x66\xf0\xc9\x91\xa6\x78\xd2\xb7\x54\x81\x73\x28\x8d\xf1\x39\xd4\xde\x97\x85\x22\xb8\x50\xbb\x3b\xc7\x12\x1a\x72\xe7\x20\x2a\x74\xbe\x0f\x22\xec\xfb\xab\xdb\x1b\xdb\xd2\x1c\xdf\x3e\x5f\x89\x85\x49\x03\x30\x61\xa4\x83\xb7\x8f\x4a\xea\xe4\x78\x40\xc2\x5d\x57\xc7\x66\x81\x01\xa1\x13\xf1\xf4\x8a\x06\x0d\x8d\x94\xe4\xad\x84\x03\xba\x13\xf1\x84\x3a\x61\x96\x9e\x93\x10\xcb\xd5\x89\x78\xe2\x72\xd0\x89\x78\x62\x8f\x12\x4d\x4f\x23\x00\x67\x89\x98\x27\x70\xf2\xe5\x1c\x83\x27\xd1\x8e\x6b\x70\x1f\x9d\x79\xd7\xe6\x4b\x54\x37\xe7\x18\xbc\x72\x38\x3a\xc7\xe0\x05\x90\x61\x39\xc7\xe0\x85\xa5\x6d\x39\xc7\xe0\x95\xe9\xef\x1c\x83\x17\x90\x84\x35\x7c\x12\x65\x49\x8a\xa0\xe7\xe9\x9a\xbc\x6c\xe7\x28\xaa\xde\xf0\x1d\xb4\xa7\x8e\x76\x8e\xb2\x26\x45\xd1\xf3\x7c\x4a\x1d\x81\x4c\xb1\xb5\x0f\xa2\x2d\xd8\x91\x07\xd1\x16\xac\xba\xe1\x68\x8b\x2b\xef\xfa\xe8\xa4\x86\x04\x54\xf4\xfc\xc6\x77\x98\x54\x82\x3b\xea\x48\x41\xbe\xc4\xb0\x7c\x07\xe1\x16\x23\xdf\x3a\x1b\x3c\xaa\xb3\xf3\x08\x5e\xb9\xd8\x19\xd0\xd4\xe0\x92\x5b\xc3\xf6\x64\x0c\x68\x6b\x10\x71\x81\x56\xe4\x4c\x82\x17\xa0\xaa\x35\x08\x55\xea\x29\xd9\xd8\x99\x0c\x01\x11\x18\x3d\xa2\x8f\x4f\xb6\x2b\x43\xa0\x2e\x40\x12\x6b\x18\x97\x7e\x45\xb2\x6a\x50\x52\xb0\x73\xdd\x97\x94\x64\xd5\xa0\xa4\x8e\x36\x19\x31\x57\x87\xfd\x6e\xac\x10\xa3\xa2\x2e\x20\x84\xcb\xb0\xa8\x0b\x8c\xe9\x1a\x8e\x4e\x02\x51\xb8\x86\x91\xe9\x19\x02\x62\x37\x4a\x4a\x92\x6e\x90\xd1\xf2\x05\x14\x87\xed\x1a\x9b\x0b\x5c\x9e\xda\x47\x77\xfd\xdb\xb6\xbe\x06\xd8\x19\x6e\x6c\x66\x07\x1a\xb9\xb1\x0d\xe3\xd6\xcf\x33\x75\x7a\xe6\xe2\x38\xf2\xae\x2d\xd1\x6c\x6e\xc2\x5c\xb5\x71\x44\xb2\xdd\x14\xad\xc8\x98\xab\x72\xa2\x38\x4f\x5b\xa2\x6d\xda\x5d\x06\x5d\x95\x13\x43\x95\x50\x57\x6d\x1c\xf9\x12\x1d\xa9\x23\x0e\xeb\x3d\x11\x6d\x9b\xe8\x29\xd7\xb6\x89\x9e\x92\x0c\x62\x67\xde\x8a\x33\xa8\x41\x0b\xb6\x9c\xc3\xb0\x40\x05\xba\x26\x90\x76\xa6\xde\x04\xd2\xce\x1c\x9f\x64\x64\x63\x52\x4f\xd4\xb8\x8a\x74\xdb\x54\x9a\x77\x05\xbf\xe6\x76\x68\x36\xa0\x0a\x3d\xdf\x9a\xe4\xec\x66\xb1\x4f\x6e\xc8\x23\x25\x99\x37\x6f\xa4\x12\x32\x9f\x70\x57\x73\x5a\xc2\x92\x2b\xa9\x38\x7f\x5a\x2e\x10\xd3\xd6\xc8\x0b\x25\x7a\xda\xf8\x03\x16\x66\x89\xd7\xa7\xe5\x12\x30\x93\x9d\x8d\x5e\x22\x3b\xdb\x95\x4f\x85\x7e\x4f\x63\x50\x92\x4a\x3e\xd5\xd5\x29\x96\x22\x83\x94\x7a\xac\x4a\x62\x42\xb9\x70\xa7\x2c\x71\x9d\x4c\x68\xb0\x97\x52\xb9\x4d\xa8\xae\x97\xb9\x4d\x8e\x6c\x72\xe2\x36\x39\xfb\xc5\xe4\x31\xae\xe7\xc0\xdf\xb0\xcc\x6e\x72\xc2\x91\xb7\x4c\x67\xd2\x89\x8a\x59\xa6\x33\x89\x31\xc0\x40\x1f\x90\x61\xcb\x40\x9f\x13\x3e\xbd\x65\x72\x93\xfb\xaa\x29\xd7\x50\x06\xda\x26\xe4\x4f\x68\x75\x96\x91\x3f\xad\xa3\x76\x2c\xd8\xd7\xd3\x70\xf0\xb2\xac\xce\x4d\xe8\x2c\x16\x20\x41\x81\x1a\x5c\x02\x2b\x09\xe4\x50\x3b\x37\x41\x4c\x5c\xb2\xb7\x4f\x8e\x68\x01\x49\x20\x57\x53\x92\x17\xe0\x95\x6f\xff\xb4\x34\xf8\x6b\xe6\xe8\x85\x28\x83\xda\x19\xe9\xd2\x14\xa5\x0e\x13\x47\x45\x47\x94\xef\xe7\x8e\xe4\x6c\x8d\x8c\xe2\x36\xea\x90\xd3\x69\x7b\xb3\x07\xf3\xb4\xb6\xc1\x84\x6c\x68\xa6\x0d\xa9\x84\x32\x2e\x61\x75\xca\x4c\x2f\x98\x94\x8a\x78\xc4\xb5\x61\xdc\xe1\x3c\x15\x4f\x48\xcd\x0d\x00\x9a\x90\x9c\x5c\x1b\xe8\x75\x7a\x10\xe8\x75\xcf\x53\x29\x25\xa9\x03\x6c\x1e\x6c\x01\x1b\x23\x1f\x5b\xc0\xce\x54\xa2\xa9\xb6\x7a\xdf\x6c\x61\x1b\x3c\x75\xc9\x53\x6b\x4a\xe9\xfc\xcc\x9e\x94\x8c\xa6\x94\x92\x65\x53\x28\x79\x57\xdd\x74\xa4\xb1\x46\x5b\xc3\x4d\xbd\x76\x66\x4f\x3e\x15\x58\xf5\xa4\x8b\x4d\xe7\x71\x01\x88\x5b\x46\xee\xdc\x27\x8a\xf6\xc7\x64\xfe\x34\x40\xfc\x1d\xad\xf6\xff\x60\x93\xf9\x10\x58\x8d\x2a\x6a\x32\x8f\xfb\xbc\xf3\x17\x1f\xf1\x28\x3f\x86\xf5\x5c\xb0\xc4\xad\x0f\xe1\xa1\x23\x7f\x55\x78\xe8\x15\x89\x13\x3e\x15\x34\xf1\x0f\x1b\xe9\x87\xbb\x72\x8d\xe8\x23\x90\x35\x67\xa0\xcf\x95\x3d\xcd\xdc\x1e\x95\x10\xcb\xf5\xf1\x34\xcd\x35\xf1\xc3\xfd\x38\xff\xf5\xde\x09\xbb\xc7\x12\x9f\x47\x1b\x4c\xe2\x8f\xb7\xc3\xfc\xc6\xc1\x3f\xdc\x37\x3e\xd9\x0d\xf9\x8b\xf2\xfb\xe0\x32\x5d\xc2\xd8\xd4\x18\xe1\x4c\xb3\x41\x24\xd0\x02\x62\x93\x2b\xae\x69\x36\xee\xb3\xe5\x5d\xdf\xc1\xd3\x67\xce\xef\x06\xd2\x64\x7d\x08\x05\x4a\x07\x2f\x2f\x1c\x0a\xb6\xf1\x7b\x46\x92\x75\x33\xc5\xda\x64\x03\x44\x77\x7d\x32\x65\x27\xa2\xf5\x50\x16\xf6\x07\xbf\x33\x0a\x94\xa9\x34\xee\xf3\x8a\x88\x26\x10\x91\x0a\x53\xa5\xad\x1b\x2f\x0b\xd2\xd8\x9d\x0a\x98\x6e\x19\x9e\x73\xc4\xca\xf4\x35\x60\x8c\x2d\x58\x44\x1a\x35\xa6\xca\x2f\x84\x4d\x1c\x8e\x26\xce\xb8\x40\x81\xad\x2f\xca\x2f\xe3\x44\x9e\xb6\x5c\x14\xcd\x95\x71\x15\x46\x8a\xb4\x6d\xef\x4f\xa5\xfb\xbe\xe5\xca\xff\xc2\x3a\xff\x4e\xaa\xcb\x5f\x9c\x40\x95\xbe\x37\xac\xa7\x9c\x57\xde\x55\x1c\x1c\x93\xec\x4b\xc6\x54\xe6\xb6\x99\x32\x0a\x04\x17\x4b\xb8\x9e\x86\x87\x7a\x99\x19\x23\xa0\xdc\x25\x94\x4f\x39\x18\x99\xaf\x63\x5b\x5e\xc9\xd0\x14\xd6\xd7\x17\x44\xec\x8c\x48\x1f\x51\x2e\x0e\x41\xb6\xee\x2f\x0e\x41\x6e\x38\x66\xac\x18\x05\x8d\xfa\xcb\xf6\xc7\x91\xfc\x95\x8b\x23\x06\x87\x2f\xd1\x24\xa9\x21\xbb\x21\x73\xf2\x0b\x31\x18\x4b\xe6\x0b\x31\x58\x9a\x0e\x31\x58\x9a\xce\x49\x1a\xc9\xdb\x1d\xcb\x04\x62\x09\x60\xb2\x0b\x62\x89\x96\x7e\x22\xba\x24\x73\xc9\xfb\x1d\x08\xf4\x65\xd4\x4e\xab\x68\x7f\x46\xed\x9c\x20\xd9\x97\x51\x3b\xbd\xa0\x82\x1a\xb5\x73\xc6\xd6\x6f\xd4\xce\x0d\x37\xc6\x32\xb5\xc4\x09\x76\x6a\x99\x5a\xe2\x02\x15\xb3\x0c\xdb\x39\xc1\xb3\x2f\xc3\x76\xce\x98\xba\x7e\x4e\xc7\x1a\x3f\x87\xd9\x23\xfa\x7c\x9f\xfe\x3c\xa1\x3a\xe2\x9f\x31\x7d\x94\x0c\x7a\xb1\x45\xd4\x5d\x97\x4d\xe3\x07\x7a\x11\xc5\xc7\x59\xf4\xce\x98\x92\xcc\x1e\x71\x66\x79\xff\x38\x6d\x6b\x4a\x5a\x5e\x2d\x79\xba\x2d\xfe\x07\x07\xaa\x71\x3c\xf7\x85\x91\x0a\x8a\x08\xb0\x98\xcb\x38\x9e\x56\x51\xcf\x4d\x11\x71\xc5\x89\x6b\x20\xcf\x05\x5d\xfa\x02\xc8\x13\xd7\x31\xd0\x9d\x23\x3d\xe5\x9b\x16\xf4\xed\x0b\x52\x08\x00\x83\x0b\x78\x0e\x59\x19\x96\xe0\x39\x09\x0f\x5e\x42\xe7\xb4\xf2\xfe\xe6\x59\xde\xe5\x2d\xf6\xa7\x67\x29\xe6\xcf\xff\xa4\x18\x87\xc1\xbf\x5f\xb2\xed\xa1\x02\x80\xbe\x89\xb9\xf6\x87\x43\x0e\x7d\x01\xb8\x0d\x59\x5e\x96\x01\x35\x17\x89\x64\x96\x11\x34\x57\x56\xd7\x9f\xb3\xfd\xb2\x06\xfe\xb0\x4d\xa3\x7a\xfe\xd9\x18\x9d\xb3\x0d\xae\x06\x12\xcd\xac\x3f\x8c\x00\xdc\x96\xa0\x63\x28\xdc\x9a\x4d\xc7\x00\x36\x64\x19\x42\x03\x82\x71\xfd\x99\xd6\x64\xa4\x58\x86\x8a\x0f\x27\x3f\xed\x88\xbe\xf6\xce\x88\xea\x09\x88\x00\x17\xa4\x09\x25\x9f\xfa\x38\x40\xd1\x00\xe9\x02\x79\xde\x82\x27\x81\x58\xb3\xf5\x67\xcf\x73\xc9\xc3\x8f\x1f\xa6\x24\xdb\x90\xd3\x11\xdc\xea\x39\xb1\xfe\xb8\xc6\xb3\x25\x19\x25\x73\xc1\x38\xba\xfe\xb8\xc6\xa3\xa1\xff\x71\x6f\x67\x81\x1b\x34\x73\xc1\xc6\xb6\xc2\x9c\x30\xf3\xad\x20\xaf\xec\xdc\x10\x27\x70\x7e\xfd\x69\x5f\x0c\x3a\x7d\x85\x47\x61\xe6\x5d\xe3\x1a\xd9\xdc\xfe\x60\x49\xc7\x9c\xf3\x87\x97\x8e\x09\x04\x71\x42\x66\x0c\xd4\x08\x71\x79\x43\x8d\x10\x80\x86\xe9\x0d\xc0\x46\x2d\xf3\x19\x54\xbc\xf0\x5b\x89\xef\x1e\x71\x20\x36\x97\x14\xd1\xda\xbe\x37\xc6\x0d\x65\x01\xd8\x94\x6d\xca\x82\x0b\xf8\xc9\x86\xb2\x00\x0b\xf1\x36\x65\xc1\x4d\x9e\x82\x0d\x65\x01\x47\xd3\x36\x65\x41\x05\x55\xb0\x0f\x67\x1b\xbf\xf2\x5b\x1b\x29\xbc\xe7\x6c\x53\x14\xb4\x9a\x3a\x46\x09\xa3\x05\x82\x32\x60\x19\xdd\x50\x12\xe0\x78\xdc\xc6\xda\xdc\x67\xcb\xa7\x34\x80\x4a\xd8\xae\x0f\x58\x65\x0b\x6b\x73\x96\xb3\xd0\x3c\x47\x6f\x9f\x9e\x61\xdb\xe8\x9a\xfe\xf6\x05\x1e\xdf\x4e\xc9\x20\xad\x4a\x44\x87\xdb\x95\xbc\x6c\x1b\x41\xa1\x92\xcb\x36\x82\xbc\xcb\x8d\x30\xef\x6e\xbf\x4b\xcf\x10\xe0\x56\xe8\x0b\xed\x41\xe3\x48\x41\x3f\x6b\xc5\xd4\xd8\xd6\x9c\xde\xa8\xf1\x36\x9c\x8e\x7e\x32\x46\x81\x7b\xd2\x36\xa0\xa6\x10\xdb\xb8\x0d\xa8\x29\x4c\xce\x6d\x40\x4d\xab\x67\x44\xdb\x08\x0e\xea\x64\xa2\x81\x6b\xfe\x7b\x9b\xdf\xf0\x0e\xc0\x5a\xb3\x0f\x33\x74\x12\xf8\xb6\x8d\xbf\x21\x29\xd7\x36\xef\x40\x21\x40\x66\xc3\x3b\x00\x8a\x7d\x1f\xb6\xdf\xf4\xd4\xc1\x16\x0f\x6b\x28\xdb\xcc\x02\x17\x60\xa7\x6d\x24\x4f\x21\xac\x73\x1b\x9d\x53\x20\xd4\xdd\x67\x98\xd4\x1a\x22\x3a\xd4\x40\xec\x0e\x62\x8d\x68\x9b\x8d\xb5\x9b\x2d\x78\x4e\x73\x0a\xdd\x47\x5a\x36\x88\xe4\xa1\xa3\xed\x8f\xfc\xe7\x63\x31\xb5\x70\x9a\x81\x23\x55\xb6\xb9\xe4\x48\x2d\x50\x33\x78\x79\x82\x60\xe3\x47\xd6\x09\xe1\xce\xdc\xc2\xef\x3c\x2f\xf3\xad\x54\x44\x00\x9a\x1b\xca\x82\xea\x2d\x6a\x9f\xbe\x2e\xbf\xaf\xca\xbe\xf3\xfe\xc5\x09\xf7\x19\xf6\x13\x85\xf1\x48\x41\xde\x93\xee\x88\xae\xf0\x8c\x68\xfb\x0e\x35\xb2\x7d\xa7\xa6\xc7\x4d\x67\x00\x23\xe4\x3e\x17\x70\x79\xfa\xc9\x99\xcb\x6a\xc6\x63\x19\xbe\x99\xb1\xb4\x85\x07\xac\xe1\x0e\x49\x01\x6b\x38\x24\x05\x6c\x33\xe1\x21\xc8\xe0\x69\x96\xdf\xe8\x36\x3b\x44\x04\x23\x2f\x43\x44\x40\xc9\x21\x22\xa0\x56\x9e\xaa\xf7\xfb\xed\xb2\x98\x6f\xcd\xcb\x73\xe6\xdb\x8f\x7d\x8b\x6e\xa0\x60\x1c\x85\x90\xba\x5d\xcc\xd3\xce\x36\x23\x14\xc7\x24\x2a\x74\x1b\xc5\x01\x0c\x60\x0b\xc5\x31\xfb\xfb\x9d\xcc\x4c\x56\x0f\x77\x11\xc4\x07\x6b\xf9\x2e\xce\xc8\xc2\xce\x6c\x2c\xc6\x01\x88\x71\x17\xa3\x28\xd9\x12\xcb\xb6\x7e\xce\x64\x29\x76\xc0\x71\x9d\xdf\xc1\x66\xcc\x7c\x2a\xd5\x98\xfb\xfb\x2e\x30\x09\x30\x70\xc5\x0e\x38\x08\x2b\x77\x31\x82\x1d\xff\xc4\x06\xc9\x81\x65\x60\x57\xee\xfe\xf4\xb6\x91\x1c\x98\xd0\x76\x35\x42\x0e\x55\x71\x57\xab\xc2\xdc\xb3\xb6\x32\x65\x55\x3c\x88\x1b\x9c\x07\xf6\xaa\x6d\x9c\xc7\x89\x79\x62\x1b\xe7\x81\x31\x6e\x0b\xbc\xf1\xa8\xd4\xfc\x06\x55\xf7\xa6\x86\x32\x24\x1d\x29\x17\x8c\xfa\x9d\x77\x15\x3c\xc6\x26\x5d\x1d\xbe\xca\x41\xb9\x2b\x00\x76\xe6\x59\xb5\x83\xb8\xd1\xe1\x15\x04\xbb\x2f\xb2\x1b\x88\x46\xaa\x64\x88\x7a\x63\x5b\xae\x78\x84\x5b\x9e\xda\xfa\x76\x53\xf0\x42\x37\xa7\x8a\xf6\x29\xd4\x8b\xfa\x3b\x83\x0b\x40\xc7\xad\x54\x57\x8d\xc8\xaf\x0d\x82\x23\x0b\xa5\x3a\xc0\xa2\x44\xb2\x2d\x20\x7f\xa1\xbe\x74\xa1\xbd\x02\x58\x0a\xb6\x41\x19\x17\x40\x91\x6d\x50\xc6\x75\xfc\x07\x13\xfc\x36\x44\xe3\x02\x6c\xb9\xab\x81\x68\x35\xad\xd9\xdc\x70\x22\x76\x17\x1c\xd1\xba\xf7\x95\x5a\x98\xea\x30\x83\xa5\xb3\x01\x8a\xbb\x5d\x37\x35\x66\xe8\x0c\x36\xc3\x5f\xb7\xab\x1d\x65\xbe\x00\x6c\x52\x5f\x61\x0c\xdd\x20\x36\x40\xa1\xee\xe6\x28\xe9\x1c\x2b\xcd\x2a\x0f\x60\x9b\xed\xec\x56\x03\x75\x7b\x37\xee\xff\x1c\x15\xc0\x30\x88\x30\xdf\xc0\x30\x70\x9f\x6c\xe3\x2e\x92\xd4\x6a\x37\xdc\x5d\x4c\x28\xc3\x30\x6e\x72\x0b\x6e\xc3\x30\x6a\x4a\xb2\x52\x83\x65\x7d\x83\xc3\xc0\xd9\xbf\x8d\xc3\xb8\xb8\x64\xee\x06\x5e\x9c\x7d\xab\x81\x17\x67\x37\x6d\xe0\xc5\x59\xa3\x40\x2f\x70\x52\xed\x46\xa0\x23\x7b\x83\x91\x18\x17\x61\xf1\xbb\x61\x2f\x1d\xa9\x86\x55\xc7\x7c\xfa\xf3\xb1\x99\x87\x6e\x1e\x5b\x83\xd2\x62\xb5\xec\xf0\xcd\x81\x40\x6c\xa5\xce\x60\x75\x81\xba\xdd\xcd\x77\x2e\xec\xb0\xbb\xd9\x4e\x85\x9f\x79\x37\x87\x82\x31\xc7\x9b\x03\x24\x88\x05\xdb\x4a\x69\xd5\x30\xe8\xef\xa6\x69\x1c\x76\xd2\xdd\x9c\x0f\xfe\x3a\x53\xee\x9f\xcb\xe5\xaf\x9e\xe4\xef\xe8\x78\x92\xf7\xbc\xac\xa8\x32\xe8\xd1\xb6\xb3\x61\x5d\x3d\x93\xc2\xf3\x96\x88\xc3\x6d\x62\x96\x8b\xc8\x97\xed\x24\x57\x57\xb4\xd7\x66\xcc\x24\xde\xae\x4d\x92\xab\xf3\xca\xb7\x5f\x7f\x9b\x4a\xf9\xde\x9e\xa9\xba\xa9\xb2\x45\x33\xb5\x5c\x44\xe3\xec\x7b\x70\x51\xe9\x88\x97\x5f\xbe\x11\x4d\xae\xc6\x0a\x71\xc2\xac\x8b\xc8\xc7\x6d\x2a\x97\x0b\x2f\xe1\xbe\xad\xd9\x03\x07\xdf\xb7\x35\xfb\xfe\x7e\x4b\x03\x23\xca\xbd\x5a\x52\x0b\xee\x61\x6e\xee\x8d\xc5\x94\x1d\xea\x46\x3b\x67\xef\x73\x92\xac\x9e\xc9\x78\xa3\x9e\xb3\xf7\x99\x9a\xe5\xc2\xfa\xbd\x6f\xd4\x73\x54\x3c\x63\x72\x2e\xa0\x14\xfb\x06\x43\xd4\xf2\xb2\x7d\x0d\x3d\x3f\xf2\xfd\xe2\xce\x8f\xec\x05\xbd\x53\x49\x7b\x41\xd9\xfe\x6e\x68\x35\x7a\x5e\x36\x14\x99\x4d\xeb\x06\x8a\xcc\xde\x6e\x04\xcf\x05\xde\x63\x9b\xbe\xe5\x02\xef\xb1\x0d\xe8\xb9\x30\xf6\x6f\x03\x7a\x2e\xbc\x08\xdb\x39\xb6\x92\x84\x76\x93\x54\x0b\xd7\xd0\xbe\x71\xeb\xf6\xfc\xd7\x2d\x42\x61\x37\xc2\x27\x2c\x18\xfb\xe6\x22\xd0\xf2\xad\x6f\x27\x1c\x4f\x42\xf5\xb4\x91\xc1\x86\xcf\x82\x83\xe1\x86\xd0\x22\xad\xb7\x52\x74\xa6\x23\x15\x78\x3e\xce\xe3\xdf\x9b\xfd\x4d\x74\x25\x2a\x89\x09\x5d\xca\x59\x23\x76\x5f\x55\x52\xae\xb2\x06\x66\xee\xda\x7a\x7b\xd6\x3c\x24\x8b\x55\xaa\xe4\xfb\x3a\x5b\x25\x19\xb8\x70\x22\xec\x1b\x0e\x3e\x9b\x14\xb6\xf9\x5d\x7a\x36\x9e\x8e\xb3\x16\x1d\x4a\xc0\x9f\x36\x58\xd6\x64\xe4\x3a\x51\x9b\xc8\xc8\x95\x7d\xc9\xb8\x9f\x72\xd6\x14\xec\x06\xd4\x3c\x35\x86\x0d\x35\xce\x30\xa0\x0e\xa7\xdb\xee\x56\xfd\x49\x9c\xbd\x8d\x0a\x2a\xa0\x33\x76\xb2\x74\xb5\xfc\xd7\xa3\xc5\xb4\x30\x2a\xa8\xe0\x42\xd9\x46\x05\x95\x93\xbb\x71\x47\xf5\x67\xb7\x31\x95\x4c\xc1\x96\xb4\x3b\x37\x01\x14\x27\xa5\xee\x6a\xe4\x71\xdc\x1d\x8f\xc4\x15\xd1\xe4\x65\x67\x0a\xf6\x35\x8e\x7d\x4b\xb0\xa1\xe4\xff\xd8\x9d\xab\xc0\x99\x4f\xed\xea\x4d\x3f\x4e\x5f\x74\xb8\xca\xf4\x49\x6b\xf3\xd4\xf9\xd4\xd8\x98\x3a\xbc\x67\x67\x1a\x60\xde\xb3\x23\x3f\xfa\xb3\xe8\x99\x60\xe4\x50\xc9\xbd\xa7\x73\x71\x38\xf3\xd4\x17\x87\xf7\xe5\xea\xa7\x54\xd2\x9e\xe1\xfc\x87\x5b\xc5\x2b\xaa\x41\x95\x1d\xcf\xc8\xa1\x82\xf9\x6e\x77\x88\xd1\x5e\xd1\x57\xb5\x2b\xa2\xaf\x6a\x57\x2a\xe5\x9b\x4f\xfa\xd1\xc4\x68\x35\x23\x62\x3a\xbf\xd8\x27\xfa\xa6\x05\x74\x86\x57\x5b\xcd\x90\xf8\x0a\x52\x39\x85\x8c\x2c\x2a\x25\xad\xdf\x34\x81\x3a\x7b\x45\xd5\xf4\xab\xc9\xd0\x6a\xc6\x64\x73\xdb\xa4\xbd\xa0\x1f\x32\x3f\x7d\x7b\x6e\x99\x90\x24\xb5\x9b\x79\xd9\x38\x4a\xc6\x73\x90\xc7\x8e\x6d\x7a\x10\xdd\x8c\x5e\x6f\x30\x51\xa2\xa2\xb6\xc1\x44\x05\x76\xab\x3d\x88\x76\x46\x9f\x1a\xc4\xe2\xa1\xbb\x0f\xe2\x9b\x19\x7c\x83\x89\x3a\xec\x86\xdb\x60\xa2\x12\xd5\xd8\x60\xa2\x0e\xdb\xe1\x36\x98\xa8\x44\x5d\x27\xdf\x57\xce\x21\xa3\x89\x4a\xb4\x6c\xa3\x89\x4a\x34\x5c\xa3\x89\x4a\x14\xe7\xe1\x55\x13\xf5\xdd\x39\xbf\x0a\x80\xae\x6d\xac\x51\x69\xa9\x95\x97\x0d\x61\xcc\x7b\x98\xf3\x0f\xdb\xfa\x1e\x70\xfe\x71\xdc\x8f\x09\x00\x81\x26\xc8\xaf\x87\x2f\x64\x0b\x7b\xd4\x72\xd5\x82\x39\xe9\x4a\x7b\xbc\x4c\xa2\xef\x0e\x03\x5d\x67\x2a\x6c\xce\x36\x34\x40\x18\x64\x6a\xa4\x29\x9b\xd7\x44\xf2\x4e\x44\x47\x98\x50\xa6\xc7\xcc\xa0\x1c\x40\x05\x2e\x8f\x6d\x5e\x98\x5e\xdb\xbf\x37\xfb\x90\xc6\xf0\x4f\xe5\x07\x2a\x39\xd7\x97\xe1\x66\x98\xcd\xf7\x42\xa7\x66\xc3\x56\x7e\xa0\xf3\x06\x1a\xbc\x17\x9e\x0c\x0e\x63\xa7\x00\xba\x72\xef\x72\x0a\xa0\x2b\x57\x76\x91\xcc\xb4\xec\x51\x2b\x1a\x76\x3e\xe5\x16\xd0\x10\x1d\x11\xcb\x5c\x5b\x78\xd5\x38\x54\x96\x9d\xb7\x3d\x05\x4f\x6b\x78\x79\x57\xe4\x1b\x9c\x55\x4e\x08\x74\xe1\xe0\xdc\x4e\x08\x54\xe1\xcf\xdb\x26\xac\xb9\xb3\x9f\x2d\x73\xfb\x32\x6c\x22\xac\x39\xef\xf3\x4e\xb9\x3e\xd3\x47\x3e\xf5\x99\xce\xc1\xb6\xd0\x52\x46\xaa\xe4\x53\xe2\x8e\x28\xe3\x5e\x9a\x3e\x3d\xdd\xd3\xff\x36\xb7\x30\x09\x17\x70\x9a\x23\x22\xb3\x9d\x7e\x01\xbc\x90\x41\xc7\x83\x9c\xe6\x60\xab\xc8\xbb\x22\x28\xec\xe8\x0a\x49\x0f\x74\xe7\xd3\xe1\x81\xcd\xcb\xba\x7a\xa7\x83\xa5\xb0\xd4\x3b\xa3\x6e\x85\x25\x97\x3d\x53\xe3\xf4\xdc\x34\x96\x83\x04\xa0\xca\xdd\x30\xe5\xb4\x9e\xa2\x6c\x96\xe6\x24\x5e\x5c\x48\xd1\xf3\x93\x4c\x88\x8b\x08\x54\x39\xa8\x1d\xcb\xc8\xb3\x12\x89\x33\x2e\x05\x79\xed\x66\xae\x89\x90\xe4\x48\x85\x1d\xbb\xcf\x29\xbc\xa2\x83\x30\x25\x9e\x0d\xb3\xc6\x32\x63\xc8\x4c\xc3\xbd\xb8\x81\xcc\xe0\x43\xde\x1b\xb6\x79\x94\x9b\xcd\x6e\xca\x0d\x40\xfc\x39\x85\x98\xd6\x2d\xfe\x9c\x67\x61\xe7\x53\xf3\x43\xb2\xf5\x18\x50\xd3\x3b\x13\x64\xe3\x8d\x66\xd2\x8a\x43\xa7\x45\x41\x34\x87\x0e\x41\x8f\x5b\x1c\x3a\x35\xb6\x23\x63\x6d\x72\xac\x80\xb5\xa9\xdc\x14\x84\xb5\x29\xc4\x5d\x6e\x13\xec\x9c\x78\xde\xb6\x08\x76\x1a\x5e\xe2\xbd\x1d\xb7\x4f\x57\xc3\x92\x13\x73\x8a\x59\x72\xa0\x62\xdb\x26\xc2\x89\xae\x11\x22\x1c\x4e\x85\xed\xdb\x61\x5a\x09\x4e\x9f\xdb\xee\x46\x69\x66\xdb\x37\x13\xce\x15\xf3\xac\x73\xf2\x5c\xf8\x88\xb7\xc1\x36\x17\x5e\xe0\xbd\x0d\x92\xe7\x2a\xb9\x31\x9e\x33\x7b\x37\x4a\xf2\x9d\x82\x21\x84\x4b\xc1\xd2\x99\xd3\x47\x3e\xc5\xdf\xd6\x30\xe5\xd8\xba\x05\xbd\x69\xf3\x7d\xe8\x13\x30\xe5\xc2\x60\x9a\xe6\x98\xc1\x34\xad\xd9\x4e\xa8\x37\xf3\x1b\x87\xff\xe5\xa1\xdd\xd4\x5c\x44\x9c\x73\xe7\x8a\x1d\x09\x58\x0e\xb8\x85\x0d\x7f\x4e\xcd\xa7\x66\xda\x1d\xf9\xa9\x1d\x90\xf5\x3f\xa8\xf1\x4e\xc8\x73\xc5\x4c\x0d\x82\x27\x07\xc6\x07\x97\x10\x55\xfc\x70\xbc\x73\xd8\x28\xe7\x4e\x8b\x9d\xdd\x28\x9d\x4a\xc0\xe7\xfe\x70\xd8\xdf\x11\x97\xfb\xa5\x20\x2a\x3f\x23\x9b\x5d\x48\x73\xb8\xde\x7c\x1c\x32\xcd\xc0\x7d\xcc\x90\xc8\xf1\x6c\x24\xcd\x15\x83\xf6\xc7\x5c\x26\x44\x16\xee\x0f\xa1\x26\x9c\x2e\xc2\xd9\xb4\xc1\x34\xfc\x4c\xce\x46\x6a\x3f\x99\x1f\x54\xd0\xfb\x6f\x6c\x87\xce\x9b\x93\x98\xba\x2d\x9e\x9c\x92\x1b\x25\xbc\x38\x39\x82\xe1\xc5\x89\xc5\xf7\x83\xcf\x99\x65\x03\x31\x4e\x0c\xe9\x26\xc6\xb9\x41\x6b\x6e\x27\xc7\xe9\xf1\xa3\xc1\x8c\x13\x2d\x0f\xd8\x4e\xd4\x3a\xc3\x76\xae\xb8\x09\x0c\xdb\xb9\xe2\x53\xf8\x38\x2f\xc1\x4c\x49\x36\x2e\x94\x7c\xea\x6b\x2e\xab\x4e\x20\x9e\x96\x33\xce\xe9\x71\xae\x68\x2a\x9f\x50\x20\xf2\xae\x95\x58\xb8\xb3\xb6\x51\x3d\x05\xae\xb2\xfd\xf1\x95\x91\x6b\xec\x27\x3a\x6c\x4a\xf2\x84\xe1\xd8\xfd\xa0\xc3\xbe\xbf\xb5\x0e\x5b\x52\xb0\x6d\x7e\x99\x14\x4e\x75\x98\x8e\x01\x97\xc1\xbd\xef\xb3\xbd\xc1\xf8\x37\xce\x9d\x53\x08\xb9\xdc\x21\xe4\x61\x47\xfe\x92\xd3\x03\x85\xd6\xb9\x73\x2a\x91\x57\x1b\x82\x1e\x62\x20\x37\x04\x3d\xd1\x4f\x0c\x01\x2a\xf1\x89\xc2\xd0\x93\xc3\x54\x88\xa0\x0a\xf6\x73\x3b\x77\x4e\xfa\x05\x3c\x50\x2e\x06\xdf\xc1\x70\xe4\x37\xde\x7e\x38\xf2\x9c\x3c\xa7\xc4\x36\x60\x48\xd0\xe8\x2d\xa2\xc2\x3f\x6a\x24\xe1\x48\xe0\xa8\xde\xdf\xc9\x6c\xa3\x4a\x93\xd9\xc6\x7f\x50\x41\xd2\x76\x22\x3e\xe8\xe2\x2f\x2a\x08\x6b\x4b\x29\x71\xda\x38\x53\xb0\xed\x24\x33\x05\x33\x81\xf2\xa9\x27\x10\x12\x66\x12\xe6\x9e\xa9\x7f\xb2\x57\x39\x3d\xce\x80\x87\x69\x2b\x3d\x4e\xcb\x71\xf9\xc5\x1d\xda\x53\x90\x6f\xe1\x3d\x05\x79\x4a\xbc\xa2\x80\x72\x6c\x13\x4e\x78\x53\xe0\xf5\xdb\x4e\x78\x43\x8a\xa7\xfd\xe5\x22\xc6\x69\x69\x34\x51\xa9\xac\x86\xaf\x29\xaa\x33\x70\xde\xa4\x99\x69\x5f\x68\xa6\xd9\x26\x9c\xa5\xa6\x44\x57\x31\x98\xa8\x44\x57\x31\x98\xa8\x34\x96\x8a\xe1\x42\x25\x7a\x9a\xe1\x42\x03\x06\xb6\xfd\x33\xc5\x18\xdb\x44\x60\x3a\xac\x1c\xe1\x72\x5a\x2e\x52\x24\x75\x89\xdb\xe6\x07\x0c\xec\x7d\xd7\x6b\xee\xdf\xd9\xf2\xf6\x8f\x6b\xff\x95\x2f\x9d\x99\xfe\x88\x28\xff\xe6\xf1\xfe\xc6\xb3\x9d\x99\x66\x6a\x9e\x4e\x1c\xdf\x16\xf9\x4e\xcb\xa6\xf7\xc3\x07\xce\x86\x12\x54\x4e\x3e\x85\xc2\xfc\x8a\xc8\xa5\x8a\xdf\x6a\x94\xef\xab\xe6\x5b\xa7\xb9\x66\x00\x9c\x9b\x65\x90\x0d\x61\xff\x08\xe2\x4f\xcf\x18\x52\x46\x4c\xc3\x36\x87\xce\x20\xba\x60\x9b\x43\x67\x10\xd3\xb0\xcd\xa1\x33\x80\x28\x6f\x23\x73\x46\x8e\x1d\x23\x73\x6a\xb4\x1d\x48\x74\x40\x03\x6d\x93\xe8\xcc\x1c\xc0\x26\xd1\x99\x07\xa7\xd2\x1f\x9e\x61\xd4\x28\xd3\xcc\xcc\x18\x9e\x84\x91\x79\xc4\x3c\x35\x93\x17\xb6\x32\x67\x30\x99\x31\x26\x99\x3c\x66\xd8\x50\xf3\x1b\x02\x17\x5c\xe6\x25\xfb\x0d\x21\x02\x2e\x7b\x9e\x7e\x43\x14\x0b\x5d\xfe\x88\xdf\x90\x23\xd5\x5e\xbf\xdf\x90\x77\xf3\xb2\x05\xea\x37\x2e\x77\xb0\x3d\x6a\xbf\x71\x6d\xef\x27\xba\x6c\xfe\x86\x03\xe1\x47\xbf\x5d\x8e\xa3\xd9\x87\x49\x27\x7e\x43\xae\x46\x68\x79\x1e\x69\xf9\xa1\x7f\x63\xf7\xdb\x70\x6e\x9f\xdf\x50\x78\xef\xed\xa8\x8a\xdf\xc0\xe1\x63\xe0\xd3\x6f\xd8\xb9\x32\x4c\x1d\xf4\x88\xf3\xff\xfe\xdf\xb0\x59\xe1\x91\x3e\xff\xe3\x06\xfa\x0d\x02\x3d\x0d\x52\xff\x8d\xe6\x43\xd2\xf6\x8b\x47\xec\x7e\x3a\x10\xff\x2c\x4e\x89\x22\x03\xaf\xce\x54\xf4\x1b\xb6\xba\x8e\xde\xdd\x1a\x85\x18\x16\x93\xd4\xfe\xc8\xfd\x3f\x7a\xb7\xe8\xbc\xfb\xa3\xf7\x8a\xa8\xcd\xf2\x74\xb1\x44\xb5\xf5\xee\x3a\x0c\x98\xd2\x67\xc4\xd3\x4f\x5d\x7f\x45\xda\xdc\xa6\xae\xf9\x39\xa5\x36\xf9\x09\x7e\xce\xa1\x5d\xae\xe2\xfa\x91\x54\xb9\x77\x44\x65\xa6\x77\x9c\xc7\xcf\xa9\x89\x9f\x87\x16\x9d\x4d\x17\x2c\xcc\x8f\x44\xb0\xa3\xf7\x89\xe8\x94\x09\xad\x21\x3e\xe3\xd6\x19\x0b\xdf\xb8\x46\x1f\x1e\x72\x5d\x6f\x8c\x6a\xf8\x39\xa7\x64\x3f\x78\x64\x6d\x71\xf8\x9a\xf1\x23\x43\xe3\xe8\xc3\x7d\x62\x7d\x6b\x1c\x74\xa7\x70\xb8\xf5\x64\x06\x1a\x86\x5b\x4f\x66\x83\x81\xb7\x67\x6f\x17\x62\xf7\xa7\x0d\xf1\x63\xf1\x46\x7c\xa6\xf9\x70\x53\xe0\xab\x3b\xe8\x14\x1d\x53\xf5\x3a\x5c\x23\x1d\x18\x75\x32\x97\x0d\x38\x1d\x07\x5d\xe4\xdd\x7a\x1c\xf4\x89\xd1\x9c\xde\x7f\x1f\x49\x49\x00\x4f\x37\xd4\xac\x64\x23\xed\x36\xca\x70\x1c\xb4\xc5\x7b\xd2\x30\xd5\xf1\x6f\xfc\x89\xcc\xb4\xf0\xd0\xf8\xb8\x6a\xda\xd5\x1f\xe9\x8a\xc6\x41\x97\x99\x2a\x6a\x1c\x74\xd9\x1f\x8d\x61\xf2\x9a\xd1\x89\x54\xcb\x3f\x67\x03\x3a\x8f\x93\xfa\x0b\xac\x36\x06\x0d\xff\xa3\x71\xe3\x9f\x68\x9a\x1f\x99\x6b\x86\x51\x62\x3f\xb2\xb5\x0c\x93\x59\xfd\xc8\xd6\x52\x0d\x47\xfe\x91\xad\x65\x98\xc2\xe9\x47\x3e\x96\x61\x1e\xa6\x9f\xf3\xb1\x54\x87\x6a\xfc\x9c\x8e\xe5\xbc\x8d\xda\xfb\x91\x35\x65\x98\x31\xe9\x47\xfe\x92\x61\x0a\x93\xdf\x34\x24\x66\x98\x28\xe3\x11\x75\x60\xdb\x76\xfa\x88\xeb\xd9\xbd\x4e\x24\xaf\x28\x13\x65\xfc\x9c\xcf\xa1\xd8\x5b\xfc\x23\x9d\x43\x35\x7f\xcd\x23\x2e\xbf\xeb\xfa\x3b\x29\x03\xc9\x7d\x1f\x91\x4a\xb8\x39\x97\x17\x86\x73\x89\xfc\x66\x19\x26\x82\xf5\xc3\x22\x2b\x9c\xd9\xa0\x7e\xb3\x7a\xac\x9c\x60\xe5\x37\xed\xe8\x1f\x66\x3b\xff\xcd\x9a\x74\x7c\x05\xb1\xff\xcf\x45\xf0\x88\xc3\x4f\x5d\x7f\xbc\xc5\x95\x6f\xed\xf1\x45\xcd\xf9\x39\x09\xc2\x49\xd0\xee\x6f\xda\xbf\x43\xc2\xab\x1f\xec\xf8\x83\x5d\xd6\x9c\xf0\x86\xdf\xff\x4c\x09\xef\xd8\x80\xdf\xb4\x6d\x9a\x4c\x7d\x3f\xf8\xd7\x8f\x9b\xfe\x1d\x63\xfc\x2f\x7d\xe0\x6f\xda\x58\x49\xda\xeb\x9f\x69\xbe\xcf\x71\xd2\xfd\x73\x21\xba\xe9\x4e\xf2\x3d\xcc\xc2\xf2\x83\xe9\x78\x38\x4a\x5f\x11\x51\x16\x2b\xa2\xc3\xde\x19\xac\x3d\x78\xf9\x46\xbc\xff\xef\xff\x75\x5f\x9d\x7e\x93\x5b\xae\x03\xdd\x7e\xa6\xfe\x3c\x8f\xbb\x45\xe4\xa9\xab\x0c\x42\xdc\xf1\x74\x3f\xd3\x2d\x9e\xe3\xa4\x7d\x56\xaf\x86\xb3\xba\xfe\xe0\x88\x1b\x0e\xd4\xfb\x99\x57\xed\xb6\x0e\xfd\x9b\x7f\xfb\xff\xc7\x54\xf9\x33\x5f\x57\x18\x1f\x7f\x90\x5c\x11\xb7\xff\x33\xd9\xcf\x23\xaa\x3d\xeb\x72\x0c\xb8\x13\xb5\xfe\xd6\x85\x19\xc4\xa7\x69\xa8\x04\x1c\x7c\xf0\x88\xc6\xad\x79\xa0\x17\x8e\x67\x3b\x84\x7f\xab\x39\x3f\xa2\x1d\xb3\xbf\x65\xb7\x6d\xb3\x87\xf4\x11\xc5\x9b\xe2\xd8\xa1\x47\x74\x73\x5f\xd1\x6c\x50\x1e\xbf\x75\x33\xba\xde\xe0\x97\x67\x54\x77\xf0\xed\x23\xba\x1a\x1e\xdd\x75\xfb\x50\x3f\xdf\xa7\x1f\x5b\x7e\x2f\x44\x4f\xfb\x46\xad\x8c\x19\xb3\xd7\xfa\x11\xb5\x33\xda\x29\xf8\x88\xcd\x4f\xa9\x15\x6b\xe4\xa6\x28\x33\x29\x94\x14\x45\x4f\xd2\x75\x37\x96\xbe\x14\xb5\xed\x9f\xbb\x29\x8a\xce\x39\xf9\x16\x72\xc1\x93\x6f\x9d\x87\xbb\x33\x82\x76\xf5\x0d\xce\xee\xd5\x19\x7c\xef\x1e\x8e\xff\x3f\x61\xab\xf8\x11\xe3\x3f\xcc\x62\xff\x23\xc6\x1f\x66\x8b\x1f\x31\xfe\xe3\xf4\x26\x40\x60\x3e\x74\x0a\x3f\x02\xf3\x07\xe7\x0d\x81\xf9\xdd\x71\x1e\x3f\x07\xdf\x3f\x3d\xc9\x7f\xe9\x3a\xe6\x95\xbd\x6c\xe3\x62\xf4\x3b\x5d\x77\xe5\xe5\xdb\x4f\x53\x54\x77\xc9\x03\xd1\x86\xc4\xeb\x9f\x16\xf8\x1f\x81\xf2\xdd\xd1\x26\x3f\xa2\xdb\xbb\x11\xda\x3f\x62\xd4\xbb\xd1\xdd\x3f\x02\xcb\x89\xc0\x7d\x44\xf7\xeb\x45\x2d\xdc\xaf\xc6\xed\xff\x88\x07\x8f\x92\xb1\xbc\xa5\xe0\x50\xf8\x11\x98\x8d\x49\xf5\x47\x60\xf6\xb8\x98\x65\x76\xa5\x74\x83\xcd\x1e\xb1\xf8\x69\x47\x74\xad\x5a\xbe\xfd\xb8\x28\xfe\xbb\x3c\x35\xac\x7c\x11\x13\x8d\x49\xe2\x11\x5d\x0d\x6f\xbd\xc4\x09\x77\xa3\x9c\x7f\x04\xfb\xf6\xc2\xa4\x73\x96\x84\x71\x31\xf8\x93\x38\x0c\xeb\x04\x44\xe5\x76\xce\x72\x07\xcf\x3e\x4f\x79\x39\x0d\xac\x88\xb6\xf5\xb1\x5e\x27\x0d\x64\xb4\xa7\x1b\xc8\x59\xbe\x26\x0d\x1c\x79\x6a\xea\x08\x56\xa4\xa3\x69\x3b\x4a\xec\x9a\xce\x8e\x51\xd9\x36\x14\xf5\x1a\xda\x89\xdf\x9a\xbb\xff\xcf\xa8\xfc\x88\xb6\x14\x32\x46\x72\xf2\x3c\x4f\xdd\xb1\xd1\x0b\xcb\x40\xf4\x64\xb8\xf2\xd4\xc6\xeb\x36\x11\x3d\xfa\x05\x11\x14\xc6\x88\x68\xe3\x08\x0b\x74\x31\x7f\xad\x0a\xac\x45\x13\x66\xc4\xff\x1f\xcd\xce\x23\x8e\xff\xf1\xdd\xfc\x96\xfd\x10\xad\x53\x67\xb4\x55\x47\x27\x3c\xe2\xf5\xbf\xe0\x98\x9f\x63\x6a\x03\xfe\x7d\xc4\xdf\xff\xb0\x21\x8f\xf8\xf7\x3f\x0c\xc0\x6f\xad\xfd\xff\xf3\xf2\xff\x08\xa3\xc5\xab\xf5\x88\xed\x7f\xce\x85\xdf\x1b\xef\x6a\x1d\x90\xa0\xd5\xd6\xd9\xcb\xf7\xff\x3f\x43\xd3\x23\x7a\xd6\xd5\x86\xa8\x11\x4c\xc9\x9b\x7e\xae\x37\x62\xff\xbf\x37\xd9\xd3\x23\x7a\x4e\x32\x82\x8a\x53\x7d\x5e\xee\x88\x34\x70\x20\x4a\x5b\xab\xec\x6d\x26\x8e\x6f\x9d\x85\xb3\x39\x43\x1a\x75\x56\x6f\x8c\xca\x5a\xd8\xc1\x72\xd3\x84\xed\x1d\x88\x63\x61\xb3\xf6\x59\xbf\x8e\xf5\xec\x85\x05\xbb\xe9\x0d\x16\x2c\xda\x7d\xa5\xbd\x1f\x36\x51\x16\xec\x87\xf6\x36\x17\xf5\x61\x69\x30\x91\x1c\xe2\xd8\xb8\x45\x2e\x5b\x48\x1b\xd7\x46\x87\x2d\x3e\x62\x41\x54\x3f\x57\x56\xf7\x87\xd5\x7d\x47\x74\x3f\xb3\x06\x6d\x13\x85\x64\xf6\xe7\x40\xc6\xe7\x29\x75\xb6\xde\xe2\xc0\xd1\x1f\xe1\x7d\x17\x7a\xcb\x82\x9a\x9b\x2b\xdd\x82\x9a\x9b\x73\xdd\xb6\xbe\x72\x94\x7c\xea\xff\x50\x30\x17\x94\x3a\x23\xfa\x3f\x93\x97\xbd\xd6\x1b\x73\xe1\x4b\xeb\x59\xcd\x26\xd1\x26\x19\xdf\x8f\xa8\x38\x98\xc8\x7f\x44\xc5\x8d\xc6\x3e\xf1\x25\x6f\x12\x9b\xf7\xd7\x79\xfa\xc7\x51\xfe\xbd\xef\x3b\xfb\xf2\x68\x9c\xd4\x64\x5f\x1e\x1c\x46\x0e\x83\x1b\xed\x8c\xe8\xe5\xca\x08\x39\xfd\xf2\xb0\xb7\xe9\x47\x1c\xdc\xb0\x93\xe8\x47\x1c\x1c\xf1\x03\x3f\xe2\xe0\x46\x3b\x23\x7e\xfd\xd4\x53\xc1\xd1\x6a\x20\x78\x7e\x8e\x56\xeb\xe7\xc8\xc3\xee\x87\x05\x51\x7b\x57\xbb\xf2\xee\xf4\xd3\x8a\xe8\x5a\x5c\x79\xd9\xb5\xa0\x8e\x0e\x56\xc3\x06\xf9\x23\x58\x6d\x34\x76\x36\xdf\xe0\xee\xc1\x76\x64\xdb\xd6\x68\xcc\x7c\xb8\xa2\x47\x4a\x7e\xe6\x67\x1d\xec\x46\x3f\xd2\xb8\xb1\xcd\xdb\x3e\x35\x1a\x6b\xf7\x47\x16\x7a\x36\x54\x8c\x4a\xed\x15\x7f\x16\x27\xa2\xeb\x98\x6f\x6d\x5c\x69\x6c\x99\xb6\x22\xb5\xc1\x46\xfe\x73\x1a\xa0\x16\xe9\xff\x63\xec\x5d\x72\xad\xc9\x95\xeb\xe0\xbe\x46\x71\x66\xf0\x67\xf2\x19\x01\x5c\x9c\xce\xdf\xb6\xe7\x40\xee\xcd\x34\xd4\x90\x74\x71\x2d\xcd\xdf\x60\xac\xb5\x98\x25\xcb\x76\x15\x0a\x85\x8f\x5c\x27\x37\x93\xc9\x47\x30\x18\xcf\x89\x67\xd9\x45\x44\x38\x32\xd2\x26\xc6\x4b\xae\xac\xc2\x65\xcb\x2a\xf7\x2a\x5c\xb6\xaa\xf1\x34\x7d\x38\xe8\xf5\x66\x15\x83\x4e\x72\x03\x27\x2d\x71\xbb\x0f\xc7\x9c\xd4\x06\xb1\x8c\xad\x9e\x96\x9e\xdf\x1f\x73\xee\x02\x4a\xa3\xaa\xda\x75\x7c\x0e\x29\x04\x22\x1b\xd3\xbe\x65\xd1\xc1\xcb\xe0\x5a\xb9\xe8\xe0\xc5\xc8\x25\x8b\x0e\x5e\x56\x49\xd5\xc2\xf3\xca\x4c\x9d\xe0\x84\x70\x64\xe0\x87\x45\x37\xff\x45\x3f\x2c\xab\x7a\x2d\x84\x3a\x55\x0d\x83\x03\x37\xb2\x3b\xcf\x60\x8a\x3e\xbe\xe7\x8f\xc9\xfe\x97\xfc\xa5\x60\xfd\xb1\x26\xc2\x01\x1b\xf4\x52\xbb\x7a\xff\xfe\x30\x84\xfc\x82\x0b\x14\x15\x95\x6b\xf2\xd2\x0c\x59\xef\xa2\x3f\x11\x53\x2f\x2e\xf8\x13\x75\xcb\xac\xe1\x6e\x0b\x15\xd6\xa2\xe7\x8e\x41\x5d\xb1\xe8\x8d\x63\x15\xfc\x0a\xfd\x6f\xac\x76\xbe\x07\x0c\x19\x72\x22\xae\x89\x54\x98\x4c\x2f\xb0\xab\xe8\x05\x98\x0c\xfa\xaf\x74\x1e\x8d\xf4\x3a\x61\x0a\x81\x45\xbf\x12\x66\x1f\x58\x74\x15\x31\x68\xdd\x96\x5c\x45\xe0\x5b\xbe\x26\xd3\x5b\x42\x2a\xbb\xe8\x2b\x42\x8f\xe1\x45\x07\x10\x3a\x75\xec\x2a\xd6\x90\xb3\x57\xe1\x32\x8c\x78\x75\x0b\xee\x20\x39\xeb\xad\x83\x97\x1c\xbe\x15\xb4\x11\x8e\x64\x8b\x1e\x1e\x86\x0c\xc8\x8b\x1e\x1e\x15\x2e\x5c\x4b\xbe\x14\x30\xe3\xd8\x55\x7c\x0f\x96\xea\x4c\x1c\x1a\x2c\xce\x99\x70\xe7\x81\x7d\xf0\xae\x7e\xf0\xd7\xc6\xea\x17\x7f\x65\x15\xe7\x33\xcc\x31\x77\x15\x5f\xdb\xd8\x14\x38\x75\xd8\x8b\xec\x6a\xc7\x5f\x13\xab\x86\xbf\xaa\x8a\xa1\xc1\x82\x9b\x09\x73\x0f\x83\x85\x5d\x65\xcb\xc6\x6a\x7c\xfe\x9f\xdb\x54\xee\x47\xf1\x3d\x95\xaf\x19\xf8\x9e\xce\x2a\x3c\xfd\x1a\xce\xfd\x49\xb1\x6d\xe3\xf7\x64\x6c\x91\xc6\xef\x81\x3b\x86\x35\x7e\x00\x3c\x2e\xac\xb1\xc7\x05\x21\x14\x10\x23\x74\x57\x07\xfe\xda\x58\x85\xf1\x06\x5f\x54\x90\x5a\xe2\xe2\xb0\x16\xec\x0a\x44\x49\x5a\xf4\xa3\x68\x94\xcc\xcc\x82\x65\xd2\xba\xaa\x68\x8a\x9d\x44\xc0\x4a\x6b\xdc\x07\x45\x4e\x45\xec\x33\xbf\x88\xdb\x02\xfe\x0e\xd6\xb8\x2d\x28\x7d\xc9\xfc\xa0\x81\x2f\x68\x7a\x16\xaf\xe5\x26\x61\x6a\xcd\xc6\x4d\x02\xc7\x84\x46\x49\x24\x1d\x13\x0c\x31\x21\x16\x3d\x11\x0c\x91\x07\x16\x3d\x11\xda\xa5\x3e\x22\x73\x1b\x05\x8c\x74\x11\x30\x38\x63\x2e\x5a\xfd\x37\xca\xd5\x60\xc8\x7f\x1b\xdc\x54\x17\x2d\xf9\x1b\x65\x65\xb0\x49\xf7\xcc\x1d\x04\xa3\x73\xa3\xdc\x60\x56\x0a\xda\x71\x79\xa0\xe5\x78\x23\x05\x87\xe5\x78\xbb\xb9\x0d\x98\xb5\x13\x51\x01\x16\x6d\xc1\x0d\xe6\xeb\x8b\xf6\xdc\x06\x4b\xf1\x45\x03\x67\x86\x6f\x58\xb4\x4a\x2e\x5a\x27\x48\xe9\x68\xbc\x91\xd3\xc0\xd4\x78\x23\x87\x59\xe8\xae\x3a\xab\x10\x9f\xe3\xce\x4d\x53\xcf\x96\xf8\xa2\x4e\x19\x3e\xee\xdc\x33\xa2\xb5\x65\x18\x70\x2f\x5a\x60\x1a\xaf\xdc\xb4\x93\x34\xde\xa2\x69\x09\x29\x49\xed\x34\xca\xa0\xf9\xf1\x14\x6b\xc1\x8a\x7e\xc1\x90\x6e\x57\x31\x70\x08\xb5\x65\xbc\xdd\x4e\x53\xcb\xc6\x6a\x68\xd9\x44\x8b\x98\x5d\x0f\xa6\xb9\x6b\x3a\xd5\x19\x1c\x48\xdc\xf6\xc8\xb8\x4c\xdc\xdf\x8c\x57\xdf\xe9\x7c\x2d\xae\xaf\xd3\xa9\x1e\xe0\x7a\x74\x98\x60\xf0\xbe\x0a\x4b\xbb\xbb\xf1\x5a\x45\x33\x37\xe3\x25\x93\xb6\x6a\x15\xd9\x50\x16\xcc\xc6\x9c\x77\x3d\x1a\x82\x19\x2f\x86\x30\x04\xbb\xeb\x45\xfa\x08\x9b\xac\x9e\xf9\x5a\x5c\xa3\x3a\xc2\x44\x3f\xb6\x20\x9b\xc1\xf4\xed\x2a\x6c\x28\x63\x94\x77\x15\x37\xdf\xa0\x53\x8f\x81\x53\xe9\xb0\x2d\x7e\x90\x06\xfe\xee\xb0\x13\xda\x55\xdc\x23\xcc\x58\x85\xb1\x66\xef\xac\xe2\xbd\xa6\x2a\x5e\xd4\xf9\xf0\x64\x34\xa5\x78\x2f\x93\x90\x77\x1c\x0f\x0f\xb3\x7f\x77\x5c\xb1\x1f\x8a\x9b\x3b\x38\xc0\x87\xe9\xbf\x3b\x2e\xd1\xbb\x3a\xf0\xd7\xc6\x2a\xde\x1b\x4b\x7d\x57\x21\xaa\xb9\xf9\x22\x88\x14\x2c\xf1\xb7\x03\x1f\xa8\x96\x29\x43\x48\xfc\x6d\xcc\x58\x87\xd0\xeb\x81\xa8\xfa\xee\x56\xf0\x22\x04\x3e\xef\x48\x60\xf8\x30\x9b\x73\xb7\x82\x3e\xc3\xf1\xb0\x83\x97\x79\x98\xe3\xb8\x23\x7e\xc1\xc3\x1c\xc7\x7d\x73\x6a\x7f\x42\xf2\x1f\xa4\x38\xde\xcf\xb2\x17\xe8\x23\x74\x50\x0f\x85\xe2\x1d\x9a\xd1\x87\x42\xf1\x9e\x92\x1e\x46\xa7\x2a\xbe\x1e\x79\x8c\xbb\x55\xf4\x22\x21\x41\x10\x92\x66\xef\x2a\x22\x53\x15\x55\xf9\x70\x63\xb5\xe0\xaf\xf8\xdc\x34\xd8\x2b\x54\x11\xb0\xbb\xc3\x67\xf6\x61\xd2\xe3\x8e\xfc\x1b\xbb\x8a\x9b\x7d\xe7\x5f\x31\x27\xf0\xb7\x7d\x3c\x73\x4e\xac\xb1\x7a\xe3\xaf\x95\xd5\x84\xbf\xf2\x45\x58\xbf\xd0\xb3\xec\x2a\x06\x12\x6b\xd0\x33\xf8\x0a\x38\x26\xef\x2a\x9c\xa5\x0d\x63\x95\x11\x7a\x0b\xa6\xe5\xbb\x8a\x0f\x54\x53\xbc\x25\x5f\xec\x15\x65\x06\x9c\xcf\x4c\x79\x12\x87\xbd\xf0\x8b\x12\x1e\x86\x9f\x8e\x69\x24\x21\xc3\x35\xc4\xbe\x7d\x98\xe0\xd7\xd4\x0d\xca\x43\xa1\xae\x7e\x98\x23\xd7\x10\x39\x7e\x57\x0b\xaa\x7c\x18\xe2\x6e\xe7\x72\x46\x78\x54\x73\xae\x23\x7a\x42\xc0\xce\xf3\x61\x6a\x5b\x73\x76\x92\xf2\x50\xe7\x62\x87\x97\x01\xf5\xe2\xbb\xba\x7e\x8f\x5e\xfc\x41\x46\x5a\xe9\xc5\x1f\x57\xc4\x4e\xae\x5f\x08\x17\xcd\xb9\xcc\xfa\x1f\xd5\xe4\x8f\x1b\x6f\x95\xd9\x58\x05\x87\x96\x9d\x55\x6c\xee\x3b\xb1\x0a\x41\x4e\xb9\x59\x85\x95\x40\xc3\x6f\x9d\x03\x5b\x12\xab\xc8\x53\x5c\x32\xab\xfc\x6d\x61\x15\xbf\x35\x34\x05\x41\x5d\xcf\x5c\xc0\x4e\x2a\xc2\xfd\xea\xa0\x13\x88\x90\xff\x20\xc5\xe8\x9e\x41\x3e\x8c\x2c\xb6\x99\xbb\xcc\x39\xfb\xfc\x5e\x5a\xa7\x42\xae\xf3\x78\x98\x20\xe2\xaa\xb1\x2b\x11\x95\x22\xc6\x78\x5c\xe0\x32\x48\x23\x98\x88\xc2\x48\x23\x90\x40\x62\x57\x8d\xd5\x18\x45\xc3\x0c\x30\x5e\x79\x47\xac\xa9\x07\xb1\x32\x11\x0e\xe2\x41\xa4\x4c\x07\x13\xf1\x50\xa8\xda\x4c\x7f\x64\xaa\xe7\x60\xb5\x1f\xc6\x0d\x6c\xf0\x87\x7d\x06\x3e\xb4\x20\x78\xfe\x43\x63\xf6\x02\x15\xd5\x43\x63\xf6\x02\x7d\xd6\xc3\x83\xb4\x40\x09\xb5\xab\x0d\xd5\xca\x2a\x8d\x9b\xf8\x57\xc6\xe3\x61\x25\xec\x51\x12\x2b\x61\x5f\x05\x09\xdb\xae\x16\x54\xd9\x0c\xcc\x63\x63\xc4\x26\x24\xb3\x18\xf6\xc9\xc8\x84\x9d\x2f\x70\x04\xd9\x8b\xaf\xa4\xe1\xe1\xa5\x4a\x82\xb6\x2f\xb1\x1a\x5b\xb9\xb0\x12\x89\x5e\x9d\x95\xfa\xfb\x83\xc4\xff\x0f\xad\x13\x7b\x65\xa5\xa3\x89\x9b\xd5\x58\x1e\x8d\x15\xa4\xfd\x61\x25\x9c\x9c\x2f\x56\x22\xd1\x8d\x1a\x47\xca\x1f\x56\x9e\xfd\xda\x3f\xb5\xb8\x79\x68\x66\xc8\x21\x86\x91\x21\x07\x38\x4c\x0c\x79\x48\xcc\xc8\xd2\x97\x6e\x3d\xb6\x76\x45\x8f\x85\x63\x75\x47\x65\xef\x54\x64\xa5\x7b\x26\xc3\x5e\x75\x8d\x19\xc2\x5e\xa9\xf2\xc5\xdf\xd8\x79\x58\x22\x41\xfc\xb8\xab\xbb\x4d\xac\x19\x9a\x7d\x81\x50\xc0\xe8\x0b\xfa\xb6\x87\x36\x5f\x39\xb3\xb2\x3b\x85\x55\x48\x3b\x2d\x9c\xb3\x13\x61\x51\x0a\x78\x92\x5d\x0d\xd3\x98\xc6\x4a\xc1\xc0\x5f\xac\xc6\x0c\xa9\x12\x81\xc5\xc2\xdc\xe8\xb9\xc6\x65\x38\xa1\x91\xe6\x09\x00\xd8\xb5\x08\x2c\x1a\x00\x02\x32\x94\x08\x2d\x4a\x20\x78\xa7\xd0\x0a\x01\x88\xbd\x5d\xd2\xe6\x79\x02\x48\x58\x07\x71\xef\x23\xc0\xad\xf7\x3e\x31\x60\xe9\x93\x04\x50\x0a\x7e\x3a\x96\xb9\x5e\x52\x3e\xc0\x04\x70\x1d\xe0\x83\x36\x5e\x00\xd9\xaf\x37\xb5\x06\xc0\x0c\x7d\xf7\x69\x94\xbc\x76\xd1\xc7\xc1\x5f\xbd\x47\xaa\x43\x02\x48\x2c\x91\xd4\x53\xb8\x9a\xb7\x60\xbb\x02\x00\xfb\x8e\x34\x9e\x04\x82\x45\x48\x9b\x5d\x24\x10\x14\x21\x84\x9c\x01\x40\x53\xd6\xfa\x79\x0b\x74\x56\x35\xa2\xbf\x01\x40\xa4\x84\x74\x5e\x0b\x2f\x9f\x16\x76\xbf\x04\xe2\x6b\xbb\xe9\xb5\x46\x95\x61\xd6\xb7\x20\x74\x2b\xd2\xef\x05\x00\xca\x54\xef\x33\xb7\xce\x44\x3d\xe9\x05\x2a\x1a\x55\xd7\xe1\x30\x51\xc3\x6c\x8a\x40\x04\x35\xe9\xe7\xe3\xa0\x63\x68\xe1\x7d\x05\x80\x91\xff\xbd\x1f\x00\xb1\x33\xaa\xbe\x05\xf6\xf9\x25\xec\x5b\x00\xc0\x38\xaa\x9c\x21\x04\x71\x28\x61\x57\x03\x80\xb6\x20\x4d\x6d\x40\xc8\xdc\xc3\x74\x98\x40\x74\xdd\x4e\x1b\x7f\x14\x2d\x13\xe8\xb0\x44\xd1\xfa\x80\x6d\x60\x2b\xe9\xfc\x84\xfa\xcd\x4b\x00\xc2\x89\xb5\x72\x16\xff\x62\x60\x19\xb7\x03\x84\x58\x22\x04\x93\x00\x20\x00\x7e\x5f\x0b\xcb\xb3\x16\xf6\xb8\x04\xb8\x1c\xf4\x16\x24\xdd\x42\xae\x59\x02\x9f\x73\xc9\xdb\x00\x8d\x45\x8a\xf5\x17\x28\x18\xc2\xeb\x00\x0f\x3e\x8e\x1b\xc8\x21\xf2\x29\x91\xd7\x2a\x80\xc4\xcf\x2f\xf7\x01\x10\x9f\xe6\x3a\x40\x6c\x8f\x62\xda\x1e\xe4\x50\x8b\x69\x6e\x3d\x21\x35\xb3\x69\xe1\x7a\x76\x2a\x60\xf4\x16\x44\xa8\xe8\xe9\xbc\x25\x43\xd5\x19\x62\xd0\x00\x90\x67\xa1\x85\x62\x29\x80\x86\x7e\x14\x6d\x42\x87\x5f\x6e\x0b\x39\x0a\x00\x48\x0b\x22\x35\x6f\x00\x50\x26\xdb\x59\x1f\xde\xa9\x7a\x17\x41\x21\x7b\xd5\x23\xa0\x30\x01\x2a\x92\xd2\x01\x70\x21\xd4\x3a\x25\x0b\x56\x42\xa2\x4e\x20\xf6\xcb\xa5\x3d\xe7\xd0\xb5\xd6\xee\x7f\x76\x8d\xe0\xd3\x7c\x63\x3e\x00\x2c\x2b\x4a\x3a\x40\xf4\xba\x6a\x43\x22\xf1\xfd\x5d\x42\xbe\x19\x00\x6e\xbc\xad\x9f\x27\x1c\xfc\x69\xe8\xbe\x03\xc0\x99\x58\xec\xac\x15\xd8\x8a\xf7\x74\x56\x02\xec\x65\x11\xa3\x70\x03\x03\x51\x8b\x6a\xd2\xa4\x0d\xdc\x96\x8a\x25\xfe\x64\x64\x9a\xad\x68\x16\x07\xc3\x6f\x44\x12\x7a\x00\xb1\x12\x5a\xf0\xd8\x01\x20\x0a\x42\x2b\xe7\x09\x38\xde\x5b\xd3\x3c\x33\x58\x7c\x0f\x63\xc9\x00\x4c\x92\x6c\x3d\x01\x86\xb2\x9c\x25\x3a\x22\xdd\xfb\xed\xd7\xe9\xd8\x50\x06\x56\x75\x1d\x9a\xc7\x1a\xce\x81\x01\x40\xbb\x68\x61\xe5\x4d\xe0\x0b\x40\x3d\xfd\xc8\x38\x4c\x6f\x61\x3c\xbe\x2a\xc2\x40\xd5\x84\x87\x04\x0d\x00\x4e\xb4\xde\xce\x13\xa0\xf1\x21\xd1\x06\x00\xd2\x11\x1e\xab\x01\xd0\x40\xcd\xb4\xaa\x07\xb6\xbd\x15\x2d\x2f\x86\x32\x6b\xe5\x0c\x10\xae\xf0\x35\x7c\x26\x01\x4c\xfe\xa4\x1c\x00\xbb\xbc\xf0\x27\x0c\xdc\x85\x5b\x30\x81\x2f\x4e\x92\x22\x80\xab\x3a\x9d\x27\x70\xef\x4a\x9a\x28\x46\x7d\xea\x57\x7e\x9f\xe0\x6b\xf5\x16\x04\x6c\x6a\x97\xba\x4e\x81\x78\x0f\xab\x75\x02\xb8\x26\x9e\xb7\x40\xb0\x6d\x45\xb4\x84\x22\x68\x2b\x3a\x8c\x27\xee\xd9\xad\xe6\xf3\x16\xd8\x9e\x98\x96\x36\x25\xcf\x56\xc4\x47\x48\x7e\x5c\xb4\xd6\x29\x23\x6e\x97\x28\xe7\x4c\x14\x67\xa6\xf3\x04\xc8\x71\x11\x97\x30\x91\x60\xab\xd6\xd3\xf5\x0c\xcb\xb5\xb7\xeb\x19\xe6\xfc\xcd\x5f\x00\xfe\x93\xe7\x5b\xb0\x3d\xfa\xad\x63\x72\x66\x68\xe5\x5d\xb3\x3f\x33\x24\x6f\x45\x27\x2b\x82\x07\x6d\x40\x43\x88\x60\x3d\x35\x9c\x6b\x03\x28\x6c\xb4\xe9\xf3\x21\x5e\x6d\xf7\x19\x20\x44\x7e\x29\x45\x0b\x77\x22\x21\x4f\xf3\xf3\x71\x15\x8c\xd6\x2d\xae\x69\x82\xd8\x76\x13\x41\x99\x48\x6b\xd3\xad\xbf\x4f\x60\x9b\xea\x74\xa6\x00\xb5\x86\xe1\x32\x81\x90\x09\xd7\xfa\xb6\x11\x04\xbb\x9d\x8f\xa3\xf9\x6f\x11\x6f\x46\x49\x6a\xbb\xf3\x79\x0b\x0c\x91\x43\xcd\x46\xe0\x83\x21\x14\x00\x9b\xa6\x7e\x88\x01\x83\x44\xf4\x74\x56\x72\x0b\xfa\xd1\x42\x75\x0c\x00\x4a\x9b\xf0\x03\x0f\x00\x31\x01\x2c\x5c\xfb\x02\x00\xd7\x64\xe1\x5a\x47\x00\xbc\xd9\x19\x64\xa3\xa0\xdd\xd2\x01\xbe\xd8\xea\xf7\x01\xa0\xfa\x17\x97\x40\xd7\xe6\xee\xd7\x79\x0b\xce\x1a\xbf\x4f\xa3\xe0\x33\x0f\xcf\xac\x7b\x5d\xea\xef\x4f\xe2\x2d\x26\x22\x3d\x11\x4f\xbe\x87\xbf\x3f\x00\x0a\xcc\xc5\xcf\x4c\xc7\xdd\x36\x7c\x73\x08\x54\xdc\x4a\xcb\x01\xb8\x1b\xea\x01\xe0\xca\x74\xb5\x03\x18\x7a\xfa\x67\xf6\x4d\x7c\xda\xf1\x19\xd7\x01\x20\xed\xf2\x17\x08\xf2\x13\xb9\x0e\x02\xa0\xe1\x4b\x28\x0d\x01\x60\x5a\x6f\x9d\x13\xf4\xc8\x85\x7c\x89\x00\x54\x0e\x22\xe9\xf4\x8f\x6d\xd7\xa1\x14\xf0\x64\xed\x26\xe6\x4f\x32\xd6\xc3\x52\xd1\x9b\xd5\xda\x59\xd5\x70\x34\x6d\xf7\xa1\x25\x93\x8c\xca\xd9\xe5\xd3\x69\xa6\x7c\x1f\x00\xcb\x5c\x04\x9b\xbe\x81\xd5\xfa\xf9\xc9\xa4\x8e\xe6\x05\x06\xc6\xf7\xbc\x85\xe3\x21\x06\x12\x77\xca\xbb\xd6\x33\x03\x34\xac\xc8\xa7\x8d\x0f\x09\x83\x0e\x1f\xfa\x85\x41\xc4\x06\x00\xb6\x36\xd6\xcf\x13\x93\x72\x44\x3f\x00\x4c\x52\x0f\x05\x87\x65\x77\x4f\x67\xbb\xe1\xb2\xd8\xcf\xf9\x3d\x19\xa1\x36\x42\x5c\x03\x80\x3c\xea\xb0\xba\x93\xb2\x69\x3b\x3b\x03\x59\x8a\xfb\x6d\xe5\x00\x15\xb3\xff\x3e\x01\x32\x78\xb6\xfd\x22\x05\x3f\x4f\x40\xc7\x5c\xfa\xe9\xfa\x43\x35\x91\x8e\xda\xf9\x50\xe3\xd6\xdf\x27\x30\xb7\x87\xea\x3d\x52\x25\xe1\xe3\xc2\x7c\x19\x26\xce\x85\x00\xa2\xf5\x59\xb8\x9b\x01\xa0\xad\x4f\xd6\x4f\x22\x7b\x24\x05\xb5\x00\xb0\x99\x2e\xd2\xb4\x0d\x80\xd1\x22\xf5\xdd\x40\x3f\x92\x5f\x02\xdc\x4c\xed\x00\x14\x71\x19\x81\x44\x7a\x94\xf5\x04\x75\x9a\x85\x24\x6c\x03\x5f\x10\x39\xbd\x96\xb9\x22\x6b\x3b\x3f\x21\x63\xc1\x6b\xdd\x6d\x14\xfd\x5a\xef\x07\xb8\x8f\x26\x91\x40\x3f\x32\x5b\x02\x90\x61\x37\x3b\x00\x76\xf6\xfd\xfe\x04\xe3\xd1\xd4\x8f\x4c\xa3\x34\x2e\xcb\xdb\x20\xf9\x2d\xf6\x02\x94\xa9\x17\xf5\xa3\xf0\x14\x28\x7a\xa2\x90\x8f\x28\xf7\x01\xb0\xa4\xba\xfa\x01\xdd\x5d\xef\x77\x3f\x00\xc7\xf4\x05\xd0\xb1\xae\x51\x87\xa6\xad\xfb\x19\x42\x98\xe8\x42\xb3\x18\x00\x82\xa3\x40\x1d\x1a\x00\xe4\xa3\xad\x5d\x02\x9c\x0c\xdf\x59\x41\x3e\x91\x27\xe7\x52\x1b\x83\x0c\x5f\xaa\x07\x80\xbe\xe8\xd2\x6b\x61\x01\x87\x98\x54\x01\x4c\xda\x57\x15\x35\x3a\x29\x78\xcd\xea\x3a\x84\x68\x35\x8c\x19\x08\x80\xef\xb6\xf7\x89\xe0\x66\xc5\x7a\x6c\x00\x37\xe3\x33\x1e\x1f\x2e\xcb\x52\x0f\x30\x20\x4b\xd0\x13\xb4\x40\x2a\xa5\x1c\x00\x5a\x33\xd3\x34\xc0\xcf\xad\x49\x74\x70\x1b\xbc\xcc\x10\x34\x81\xc0\x07\x5c\xb5\x56\xd0\xc3\xa0\x9c\xd7\x75\x80\x86\x01\x3a\x4f\xc0\x60\xce\x93\xbe\xe5\x81\xe0\xa8\x6b\x57\xf2\x12\x5b\x2b\x19\xf1\x9b\x3e\x0f\x2d\x3c\xb3\x01\xc0\x26\xad\xe6\xf3\x04\x05\xec\x1a\x53\x87\xf9\x44\xc4\xf0\xfd\xd3\x03\x6c\x3f\x8d\xcd\xe4\xe5\x00\xa0\x58\xb7\x5e\x40\xb9\x53\x2a\x07\x40\x08\x6d\xe7\x9d\xef\xf6\xc8\xd6\x7a\x23\xb9\x57\x00\x19\xe6\x11\xba\x48\xde\x8e\x28\x8c\x25\xf1\x72\x70\x3b\x02\x92\x59\x29\x6a\x03\xb1\xc0\x90\x2c\x16\x00\xbf\xfc\xe6\x94\x38\xd8\x90\x6a\x1a\x70\x87\xd8\xb8\xd5\x3b\x1d\xc0\xd1\xa8\xda\x80\x5c\xbf\x35\x9e\xf6\xb7\xbb\xb2\x7c\xe9\x89\x01\xb1\x75\x23\xff\x7c\xfb\x80\x22\xbd\x9d\x36\x90\xb5\xc4\xca\xa5\x36\x24\x9a\x11\x19\xf4\x49\x39\x8b\x68\x9a\xd3\x7a\xb3\xb6\x03\x40\x36\x51\xed\x3a\x00\xae\xef\xf9\xb4\x01\xa2\xff\x8e\xd8\xa4\x01\x46\x39\x3f\xc1\xd5\xf0\x3a\xf3\x3c\xc1\xfb\xd6\xeb\x00\xd1\xd3\x62\x67\x90\x71\xd4\x16\xc9\xd0\x36\x10\x7b\xd8\xfb\x0b\x40\x72\x79\xda\xf8\x90\x91\x2d\xea\x3a\xcc\x29\x8b\x35\x75\x8c\xae\xe0\xc5\x35\x40\xd8\x5d\xb5\x55\x3f\xc0\x84\x5e\xbc\x1e\x20\xb6\xca\xa1\x36\x4e\x3b\xc4\xd2\xd5\xd3\x2f\x1d\xbf\xce\x64\x7f\x11\x4d\x5a\x02\xd3\x0d\x40\x82\x7a\x3a\xf6\x45\xc0\x8d\x43\x8e\x1d\xce\xb3\x4d\x02\x8f\x0d\x40\x84\x78\x3e\x0e\x66\x89\x25\xe9\xe0\x70\x18\x26\x96\x43\x18\x1c\x9e\x98\xe5\x10\x7d\x87\x9d\x5c\xbd\x7b\x3d\x00\x2e\xe4\xf6\x3e\x81\x15\x74\x16\x3f\x7c\x2e\x6b\x3b\x6f\x01\x53\x50\x52\x7f\x01\x04\x55\x3b\x1f\x47\xa3\xb9\x72\x3e\x8e\xbe\x5a\xe5\xec\x39\x84\x12\xaf\x55\xc7\xa4\x23\x98\x78\x3d\x07\x98\x3f\x90\x5c\x9e\x23\x0e\x89\xf5\x77\xc7\xca\x01\x20\xba\xcb\x07\xc0\x10\xf6\xb3\xb4\x21\x65\xb3\x43\xe4\x90\xdc\x7e\xb3\x1e\xd7\x01\x40\xf4\xcf\x9e\x7b\xe0\x01\x75\x9f\xe5\x80\x24\xf7\xf5\x9c\xce\x48\x73\xbf\xfb\xf1\x02\x1f\xd0\x56\xbe\x85\x89\xde\x6b\x68\x5b\x09\x60\x13\xea\x20\x65\x8e\xf6\x26\xb9\xd3\x4d\xa5\x56\x71\x4d\x36\x12\xb5\xdf\x56\xc4\x25\x20\x4f\xfa\x8d\x44\xee\x04\xc0\x89\x96\xf7\x89\x79\x8c\x2e\x02\x40\x0c\xe6\x2a\xa9\xf4\xcd\x2c\xe8\x55\x77\x92\x7b\x90\xb6\x56\x2d\x5c\xa4\x04\xbf\xcb\x61\x4e\xf6\x7f\x10\x43\x9e\x27\x60\x62\x5c\x75\x92\x0c\x84\x12\x2e\x92\xb0\xdf\x4c\x15\x5e\x25\xb0\xb9\x07\xd8\x28\xf8\x95\x12\xa0\x89\x95\xde\x02\xad\x79\xad\xe2\x12\xe8\x0b\x54\xec\x7a\x01\xc8\x36\x6f\x35\x9a\x90\xfe\xf9\xd2\x2a\x1c\x09\x8e\x1c\x55\x0b\x77\xc0\x22\xac\xf8\x75\xde\x02\x45\x47\xca\xef\x13\x20\xd2\xa2\x41\x4c\x99\x5d\xce\x91\xcf\xa4\xd9\xb5\x8a\xf3\x1a\xd0\x27\x44\x1a\x63\x01\x0d\x47\x5c\x3d\x00\x84\x1c\xda\xc8\x23\xe3\xa8\x4d\xf9\xaf\x1c\x60\x23\xc7\xce\x28\x11\xe5\x02\x00\xc8\x60\x33\x01\x88\xd4\x5b\x5b\xd3\x5a\x29\x94\xa1\x9d\x19\x40\x52\xe4\xd6\xca\xf9\x09\xe6\xf9\xfa\xc3\x13\x48\xa0\x98\x5e\x00\x56\xb0\xe2\x5c\x06\x0c\xbf\x4a\xd7\xc1\xc1\x7c\xc4\xc5\xcf\x9a\x05\xaf\x57\xa4\xe2\xb9\x87\x7c\x8d\x8b\x9e\x40\xe4\xd3\x66\xda\x4c\xf4\xda\xb2\x52\xcf\x13\xa0\xe0\xa6\xe3\x9a\xae\x5a\x76\x98\xbf\x81\x28\x9a\xed\xdd\x08\x70\xc8\xea\xd7\x59\x2b\x38\x59\x8b\x89\xfc\x20\x87\xe6\xdd\xca\x99\xc5\x4e\x61\xe7\x19\x31\xd3\xee\xd2\x4f\xa0\x3e\x6d\x12\x89\xdc\x48\x1b\xb7\x9f\x28\x07\x08\x4e\xff\x12\xe3\xc6\x1c\x69\xe6\x62\xdc\x90\xd4\xe6\x6e\xed\xcc\x1c\xb2\x3f\xf4\xa6\x2b\xc8\x78\x20\xa8\xcc\x3a\x37\xe7\xa5\xf1\xe0\x4f\xe6\x0d\x4b\x85\x22\x5e\x64\x26\xda\xdf\x69\x01\xd2\xb0\xb1\x9d\xd9\xa7\x81\xa2\x95\xaa\x27\x2a\x4d\xcf\x34\x95\x0c\x5e\x0b\xd5\x36\x81\x15\x80\x36\x13\x63\x86\xc2\x6a\x1b\x00\x6d\x22\xb4\xaa\x27\xb2\xc4\x16\x5d\x73\x6f\x86\x5b\xec\xa6\x13\x9e\x56\x6b\x4d\xa2\xee\x9b\x11\xfd\x8a\xf3\x02\x7a\x4f\x64\xde\x6c\xef\xb7\xc0\x19\xa9\xdf\xf7\x01\xa0\xc4\x3c\x4c\xc1\x34\x48\x0c\x9b\x26\x7b\xc2\xd2\x01\xce\xe3\x01\x0c\x3a\xbb\x76\xbd\x05\xc1\xb5\x9a\xc4\x3b\x37\x43\x66\xd5\x2e\x9e\x93\x41\x9c\x4c\xda\xa9\x7b\x4e\x8a\xed\x75\xe4\x43\xd1\x7c\x37\x29\xd6\x6e\xc4\xbf\xb9\xad\x88\x17\x41\x14\x8c\xbb\x75\x71\x3c\x93\x9e\xcc\x92\xa1\xdd\x13\x39\x51\x60\x41\x1c\xc0\x03\xfb\x07\xc9\xd0\x92\xdd\x5c\x63\xe4\x45\x36\x80\x01\xe2\x49\x92\xec\x86\x41\x9b\x44\xee\xc9\x92\x53\xe9\xa1\x9f\xe8\xe2\x47\x92\x9e\x2c\xd3\xf9\x9a\x9c\x68\x32\x58\x65\x36\x29\x92\x92\x55\x66\x4f\xe6\xcd\x27\x19\x82\xeb\xb6\x76\xde\x02\x33\xc8\x2a\x61\x4b\x32\x84\x5c\x85\x55\x53\x00\x50\x67\xba\xe4\x22\x1b\x80\x3f\x8c\xab\x0d\xe3\x05\x94\xe7\x44\xe2\x85\xcb\x4a\x53\x4f\x3f\x24\xc7\x9e\x0e\x10\x44\x49\x5b\x3d\x19\x6c\xf1\x11\x7a\x38\x00\xd8\xc5\xb7\x4e\xf1\x54\xa2\x23\xb7\x95\xa6\xaf\x7d\xc8\xde\xf2\xac\x49\x54\x8a\xc1\x56\x14\x00\xd9\x28\x4d\x83\xc3\x80\xb9\x69\xad\x27\x2a\xc5\x9a\x73\x37\x24\x67\xe8\x86\xc6\x1d\xb5\x81\x0f\x42\x4b\xa8\x0d\x5c\xc8\xfd\x2e\xf9\x00\x0c\x3e\x51\x0e\xc0\x9f\xe8\x2d\x10\x0f\x37\x49\xb6\x93\xc3\xa6\xb7\x49\x94\xb9\x81\xe8\x58\x72\xb5\x81\xb0\xe0\x4d\x7c\x55\x72\x6a\x60\xda\x79\x0b\x5c\x4c\xab\x84\xbf\xc9\x1b\x78\x22\x4f\xe7\x09\x29\xf7\xf5\x16\x58\x72\x16\xcf\xf7\x01\xb0\x2b\x4f\xa3\xc6\x8d\xfc\xa7\xe1\xc7\xe3\x69\x98\xf9\xb4\x9e\x35\x14\x10\x21\x9a\xf8\x81\xe4\x14\x10\x9a\xbd\x00\x58\xff\xaa\x9f\x4c\x1a\x07\x9f\x59\x44\x80\xaf\x7a\xd7\x17\x80\x78\xf5\x0c\x27\xc2\x57\xc1\xa8\x8b\x00\xd8\xd4\x5c\x0e\x00\xd7\x94\xdc\x0f\x00\x2d\xf5\x75\x9e\x20\x39\x6e\x1a\x5f\x5c\xac\x7b\x3a\xaf\x45\x76\xa9\x5a\x6e\x0d\x16\x63\xb9\x5c\x49\xaf\x05\x77\xdc\xfa\x59\x09\x12\x99\xdd\x5a\x3c\x88\x54\xd0\x74\x5e\xa5\x71\xd1\x66\x50\x74\x60\xdc\xd0\x53\x76\x6d\x95\x71\x93\x95\xd1\xba\x1f\x58\xc4\x56\x78\x0a\xa4\x91\x20\xba\x93\xfe\x2a\x8d\x4c\x83\x83\xae\x46\x91\x84\xa0\x99\xc6\x63\x14\xa6\xb8\xa5\x90\x20\x31\x45\x7f\xb7\xa6\x8e\x55\x0a\xd5\xba\x5e\x5b\xe5\x14\x76\x1f\x80\x49\x18\xf4\x16\x5a\x45\xf7\xf3\x44\xa3\x56\xe8\xf4\xc3\x61\x31\x98\xaa\x1a\x9d\x90\xf7\xa4\xf3\xb5\x22\xc7\x5d\xfd\x98\x34\x32\xd4\x44\x0d\xdc\x15\xe1\xd8\x16\xc0\x87\x12\x7b\x91\x41\x7a\xc2\x15\x89\x11\xd2\xf8\x50\xa8\x46\x7e\x31\x31\x25\x5d\xbb\xb4\xa9\xc7\x97\x3c\xb8\x36\x35\x3d\x76\x60\x07\x4a\x00\xf1\xcc\x35\x73\x4c\x15\x53\x75\xa9\xdf\x40\x87\xa5\xf3\x25\x00\x12\xc3\x5b\xaf\x65\x0e\x12\x38\xd2\x01\x70\x1a\x63\x96\x03\xd4\x5f\x19\x6b\x02\x90\x74\x5c\x80\x84\x8c\x3c\x15\xd3\x4c\xda\xc3\x55\x00\xd8\x76\x17\xc1\x9e\x09\xda\xcb\x5b\xc4\x76\x26\x26\x49\x7d\xdb\xa0\x08\x43\xe7\xc4\xa4\x49\x69\xba\xee\x03\x40\xb0\xaf\x5d\x39\x29\x53\x34\x2d\x3a\xe6\x89\x28\x92\x06\x27\x66\x8a\x30\xe9\xaf\x12\xfd\x18\xac\xe8\x00\x63\xf4\xff\x9e\xee\xeb\x00\xd0\x27\xe8\x14\x60\xb0\xfa\xe2\x55\x3f\x01\x91\xeb\x29\xab\xeb\x8d\x0b\xc6\xf4\xb5\x34\x07\x6d\xa2\x30\x8c\x0a\xde\xaa\x88\x12\x2d\xf0\xbb\x64\x57\x89\xc1\xb2\xad\x98\x9e\xe8\x14\xca\xeb\xe0\xa0\x9a\xa8\xf5\xf3\x2d\xb0\xc9\x6c\xdd\xf5\x16\xa7\x22\xda\x34\x0d\x50\xbe\x14\xd7\x61\x8c\x60\xaa\xfb\x54\x3c\x00\xbd\x22\xb4\x2b\x11\x04\x91\x71\x4c\x02\xc0\xa5\xde\xca\xf9\xc9\xc3\x15\xa4\x93\x95\xa6\x5f\x55\x7c\x66\x36\xda\x44\x16\xf2\x11\xd9\xe8\xaf\x74\xf1\x14\xd8\x00\xce\x3c\xae\xd3\x6c\xf0\x0f\xb2\x42\x1e\x20\x1b\x9c\x7e\x4a\xe3\xd2\xce\xe2\x45\x44\x50\xb2\xc1\x98\xa4\x78\xd5\x4f\xb0\x82\x4a\xe5\xd7\x6e\x00\x32\x56\xde\x21\xb2\x65\x38\xa6\xf4\x4b\x4f\x14\x88\x43\xbd\xab\xa7\x94\x17\x7b\xd5\x4f\x2a\x45\x6d\xe7\x09\x4a\xd6\xdc\xf4\xb5\x30\x15\x29\xde\xd4\x0f\xe8\x04\x9b\xe5\xfb\x00\x0e\xf9\xcc\x5f\x38\xc0\xb2\x21\x87\xbd\x5f\x7e\xda\x03\xdf\xaa\xb5\x92\x0d\xea\xc0\xe2\x76\x00\x78\x1b\x65\x1e\xaa\x1b\x78\x20\x1a\x55\x27\x61\xbb\xd9\x2c\xf9\x01\x12\x6e\xc9\xe7\x27\xb2\x78\xb9\x0e\x00\x7f\x0c\x13\xe0\x3a\x6b\xec\x00\x0b\xa6\x11\xfa\x50\xf8\xb3\x17\x31\x08\xd9\x10\x33\xd8\xec\x8c\x0d\xd9\x65\x6f\xef\x13\x03\xd7\xd5\xf3\x04\x4f\xfb\x96\x0e\x00\x7e\xe0\x2c\x1e\x44\x8e\x2d\xde\xd4\x31\x78\x5d\x17\x77\x7d\x2d\x33\xf9\x7a\x2b\x07\x00\x3d\x72\x01\x1f\x85\xe4\xe8\x07\x18\xb8\x91\x1e\x00\xe2\x9d\xe2\x7a\x0b\x4f\x56\x49\xdb\xb3\x61\x23\x54\xd9\xc1\x64\x43\x5a\x39\x93\x41\x4a\x36\x64\x83\x6b\x52\xe0\x64\x7b\xa8\xc1\x38\x8b\x87\x22\xa2\x9e\xaf\x03\xd0\xfc\xfb\xb4\x41\x79\x60\x29\x07\x80\xe3\x08\x6f\x3e\xd9\x2f\x46\xa5\x22\x7d\xce\x94\x61\xd7\x44\x5e\x24\x3b\x92\x47\x15\x57\x1b\x0e\x65\x54\x93\xea\x3b\x3b\xf2\x24\x15\xa7\xc0\x23\xd3\xce\x1e\x01\x91\x03\x40\x86\x1b\xa4\x09\x07\x00\xcb\x21\x9d\x9b\xd9\xe1\xf8\xe4\xd2\x96\x6f\x00\xa2\xee\xae\x36\x74\x7e\xbb\xba\x0e\xca\x59\x74\xb2\x6e\x00\x62\xa6\xd3\x0f\xe8\xe4\xab\x98\xf2\xec\x08\xdf\xe5\x92\x5c\x66\xef\xe4\x67\xda\x7d\x00\x08\x91\xac\x1f\xe0\x81\x29\x91\xde\xd2\x49\xa0\xb4\x60\xdc\x64\x75\x77\x00\x30\xf6\x67\x8b\xd1\x70\xca\xca\x69\x83\x2a\x1e\x3b\x9f\x4f\x33\x67\x09\x17\xb2\x23\x3b\x7a\x93\xee\x69\x03\xb0\x8a\x16\xc5\x72\xa7\x64\xea\x7c\x0b\x9c\x82\xfc\x16\xe9\xf0\xc1\xab\xb2\x56\xa1\x23\x3c\x73\xe9\xda\xc8\x8e\xdd\x50\x25\x61\xcf\x92\xb0\xb7\xf3\x16\x08\xc3\x6b\x2b\x6a\x14\xa1\x05\x90\x31\x29\x00\x68\x85\x9a\x58\xb1\xec\x8c\xf8\x25\x43\xa1\xec\x1f\x7a\x3a\x5d\xf9\x00\xb8\x3e\xf4\xf3\x13\x7a\x44\xbb\xbe\x05\x1c\x4f\xe9\x22\x28\x0e\xff\xf8\x92\x92\x00\x72\xb3\xf7\x7d\x00\x08\xf7\x2e\x11\x14\x5f\x94\xb0\x8b\x16\x3a\x44\x18\xcd\x8a\x7e\x02\xff\xe2\x7a\xdd\x2f\xd0\xf0\xb5\xf9\x00\x90\x8e\x6b\x90\x29\xb9\x2c\x92\x9c\x64\xc6\x8d\xe9\x49\x34\x68\x0c\xad\x53\x8e\x29\x03\x39\x20\xf0\x1b\x00\x0c\xe1\x1f\x00\xde\x32\xb2\x1a\x85\x09\xb8\x5f\x3a\x15\x07\xe3\x6e\x4a\xa1\x95\x99\x04\xcd\x64\xc4\x91\xe9\x52\xda\x24\x8e\xd9\x40\xec\xfd\x73\x6e\x8a\xd1\x12\xe7\x95\x65\x6c\x74\xd9\xf9\xc9\xec\xc7\x2d\x35\x00\xdc\xd0\xad\xab\x63\x13\xaa\xd9\x26\xeb\xb4\x4c\x36\xaa\x49\x03\x9a\x99\xf3\xcb\x5a\x2f\x07\xa0\x57\xdf\x5f\xb0\x42\xdc\x4f\xc3\x85\xd3\xdf\xf6\x10\xbb\x42\x7b\x87\x09\x99\xaa\xc4\xcd\x99\x69\x87\x6a\xd5\x76\x53\x1e\x9c\x54\xd5\xeb\x86\x3d\x9c\x8a\x9e\xa0\x88\xa8\x6b\xad\x90\x83\xaa\xf5\x0c\x27\x23\x0b\x49\xd5\xb4\x81\x20\x2e\xb9\xbd\x3f\x19\xd0\x82\xf4\x03\x60\x7c\xc5\x42\x30\x2f\x49\x3b\xe4\x98\x99\x49\x9a\x54\x1a\x99\x19\x29\x8a\xa4\xba\x99\x59\x19\x4a\x6a\x02\x90\x10\xc1\xce\x22\xa6\xb1\x8e\x15\x2d\xc0\x69\xd4\xd7\x9c\x9e\x1a\x37\xf5\x99\x23\xc3\x7a\xab\x7f\x78\x22\x28\xf8\x21\xe9\x74\xd5\x68\x62\xb9\x33\xdd\x35\x90\xd7\x9a\x80\x83\xd8\xaa\x0d\xc4\xe1\xb7\xa6\x9d\x21\x61\x96\x9d\xd7\x0e\x5a\x45\x9f\x99\x03\x03\x59\x92\x0e\xb0\x39\x70\x5e\x95\xf3\x71\xb0\xbd\x2e\x26\x1e\x8b\x76\x30\xe5\x16\x6d\x45\x3c\xec\xfd\xb5\xe5\x00\x06\xba\x68\x07\x88\xb3\xa6\xd9\xfb\x13\x4c\x54\x3e\x8d\x52\x17\xf7\x07\x00\x13\xa5\x53\x91\x51\x88\xeb\x75\xa6\x01\xf6\xdb\x76\x9d\x01\xfa\x52\x03\x7a\xbe\x36\x42\xd6\xde\x7e\x9d\x1d\xca\x54\xcf\xd7\x79\x8b\xac\xb3\x45\x8e\x27\x49\x98\x6e\x3e\x1b\x80\x81\x5c\x79\x7f\xc2\x30\x75\x5a\x41\xe4\x23\xbc\xe7\x03\x74\x5c\xb7\xd5\x31\x84\x38\xab\xd7\x19\x31\xe8\xc2\x5b\x3e\x0b\x06\x26\x2b\xad\xe6\x74\x00\x88\xdd\xfc\x05\xb8\x82\xde\x9f\x04\xdb\x90\xf3\x69\xf4\x0f\x21\x2c\x00\x70\x05\x91\xc3\xde\xcb\x20\x98\xc6\xcc\x63\xa1\xd8\x45\x4e\xb4\xbf\x00\xb9\xb7\xf3\x13\x04\x14\xe9\xbc\x2d\x6c\xe0\x83\x21\xf4\x03\x60\x03\x91\xc3\x2e\x76\x73\x7d\xb8\xda\x80\xae\xa5\x39\x17\xee\x06\x30\xd9\xf5\x7d\x02\xfb\xe5\xf4\x03\x66\x9a\x08\xf4\x01\x80\x32\xb4\xa6\xd7\x66\x2e\x6d\x0a\x6c\x8a\xc1\x09\xb1\xf4\x7a\x1f\xe0\x03\xe1\xaf\xde\x52\x18\x10\x2e\xf5\x03\xf0\x44\xcb\x02\xa0\x21\xaf\x5c\x30\xc5\x0a\xac\x65\xa5\x11\x2e\x06\x4a\xd7\x74\xc1\x28\x0c\x88\xda\xbc\xf5\x03\x40\xc6\x5a\xd5\xb1\x0a\x65\xb6\xf7\xeb\x00\xb8\xc6\x9c\x79\x41\xa6\xb5\x7e\x9d\xcf\xaf\x5c\xb8\x7e\x1a\xa5\x19\xde\xf9\x16\x8a\x54\xc5\xdf\x15\xc3\x8d\xd4\xda\x19\x20\xdc\x48\x9b\x4e\xa3\x0d\x54\x98\xac\xd4\x03\x80\x15\xb3\xd3\x06\x15\xaf\xa6\x9e\x8a\x15\x2b\x6a\xa3\x33\x3c\xe9\xe9\x47\x97\xee\x5a\x3f\x81\xf8\xaf\xe6\xaa\x9f\x38\x63\xd8\x5d\xfa\x89\xf3\x40\x3f\x1f\x07\xbe\xaa\xb6\xd3\x0f\x58\x21\x56\xf9\xc3\x6c\x00\x26\x15\x67\x49\x39\xcd\x10\x2e\xfb\xf3\x03\xac\x18\xb2\x97\xd4\x74\xc6\x17\xf1\xb2\x6a\xb3\x17\x00\xdf\xfa\x3e\x41\x76\xf9\xcc\xf3\xa0\x1d\xc9\xf9\x09\xcd\x1a\xc4\xdb\x6c\x00\x57\x21\x2b\x07\x00\xa7\x7f\xf6\x0e\x43\x40\xd5\xf7\x27\x54\x06\xdf\x1a\x3d\x1a\x96\xd7\x33\x58\x1f\x72\x0c\x45\x6d\x7c\x70\x7d\x97\x59\x43\xb1\x2f\x43\xf4\x9f\x8e\x21\x34\x77\x95\xf1\x44\x41\xac\xd5\xbb\x55\xaf\x07\x40\xb8\x80\x62\x07\xc0\x12\x75\x01\x0b\xae\x41\x76\xb6\x0a\xe4\x92\x26\xf3\xa6\x42\xfb\x9e\x26\xe9\x67\x39\xc2\xf5\xf3\x16\xa8\xab\xaa\xec\x4f\x0a\xbd\xcf\x6b\x3f\x9f\xcf\x90\x2f\x39\xe9\x5b\x1e\x18\x0b\xdc\xb7\x1f\x00\xfa\x74\x7d\xad\x5f\xc6\xcf\xaf\x02\x60\x75\x57\x49\x6c\x37\x00\x86\x9a\x37\xd2\xe2\x08\x72\xd2\xaf\xd3\xc6\x4d\x53\x00\x6d\x04\xba\x7a\x97\xae\x51\xa7\xa3\x4b\xbd\xc8\x25\x6c\x00\xac\x07\x4f\xc5\xe2\x89\x71\xed\x29\xcd\x29\x14\xe1\xb7\xb3\xaa\x3d\xc3\xa7\xad\xb9\x5e\x4b\x7b\x38\xdd\x5a\x36\xc0\x31\x55\x1b\xd0\xc4\x9a\x18\xb7\xe2\x4c\x16\x7a\xf6\x9f\x23\x33\x61\x91\xbd\x45\xf1\x4e\xb5\x08\xf9\xe7\xe2\xc8\x5e\x84\xd0\x16\x00\x30\xc8\xd7\x19\x31\x87\x5a\xc4\xcf\x4f\x5c\x4b\x4a\x23\x86\x90\x70\xf5\xbe\xd4\xc6\x84\xec\x5b\x16\x73\xc5\xe1\x96\x69\xed\x8c\x3a\x74\x2d\xf5\x12\x29\xe5\xf5\xc1\xea\x69\x83\x51\xa0\x2e\x11\x7d\x47\x74\xa0\x76\xb5\x76\x00\x38\xfe\x8b\x72\x8e\x8b\x91\x6e\xb4\x3d\x18\xf0\xb3\x5f\x59\x00\x62\xc7\x94\x9b\x67\x6f\x19\x19\x72\xc9\x56\x0f\x40\x0b\x15\xad\xc2\xcd\xa7\x83\xb1\x68\x07\x40\x94\x49\xde\xaf\x36\x10\xd4\xe1\xd2\x4a\x1e\x99\x11\x9e\xb4\x1c\x06\x19\xe0\x9c\x04\x14\x1e\x0b\x77\x3b\x00\x54\xe6\xbc\xb3\x6e\x80\x8c\xa7\x1a\xa5\x3f\x4c\x15\x29\x1d\x48\x48\x5b\xaf\x76\x1a\xc5\x69\xd4\xdf\xb7\xe0\x84\x4f\x5a\x85\x83\x31\x50\xca\x9d\x0f\x80\x60\x4d\xe5\xf4\x83\x52\xb6\xb7\x63\xf3\x0d\xc6\x15\x00\x4f\x34\x99\x46\x6c\x00\x3a\x09\x1d\x4f\xa3\x82\x05\x92\x5e\x63\x03\x30\xaf\xa8\xe7\x27\x0c\xa6\xaa\x7d\x3b\x2a\x4e\xa3\x7e\x1d\x00\x82\x92\xeb\x7d\x02\x7e\x82\x52\xde\x6e\x80\xe3\x71\xde\x82\x51\x97\x9c\x76\x03\x38\x8c\xb3\xbe\x16\xa2\xbb\x26\xdf\xcb\x42\x5d\x7e\xf5\xb3\x3e\x9a\xc4\x53\xf7\x01\x82\x01\x96\x52\xac\x30\xc4\x6a\xad\xe9\xfd\x09\x9d\x17\xde\x27\xa0\x0a\x11\xb5\x1c\x4d\x91\x3e\xde\xd7\x42\xbf\x52\x4f\x1b\xf4\xad\xcb\xea\x3a\x0f\x63\x19\xb6\x6e\xa0\xe3\x52\x51\xfe\xc2\x01\x36\xe0\x0f\xda\x9a\xf6\x1f\x03\xb4\xd6\xcb\x4e\x9f\x06\x09\xf6\xe9\x13\xf8\xc5\xda\xcf\x67\x4c\x1a\xc8\x9d\x36\x74\x9d\x3a\x63\x03\x2e\xbd\x9e\x39\xe2\x75\xaa\x9f\xdd\xc5\xeb\xd4\x39\x15\x07\x12\x2c\xd6\x4b\x34\x6d\x74\x6a\xfe\x7b\x3b\x00\xcd\x8a\xae\x03\x2c\x88\x55\xf2\x01\x30\x7a\x76\x00\xdc\xc0\x5c\x9c\xdc\xe8\x20\x2e\xf5\x6d\x03\xf7\xab\xfb\x2c\x62\xe4\xf3\xab\x39\x9f\x9f\x60\x35\x49\x3b\xb5\x81\xd8\x5d\xe9\xd0\x12\x5e\xeb\x24\xd3\xdf\x00\x1c\x55\xfb\xfb\x13\x98\x68\x9c\xe5\xc5\x04\x75\x5d\x24\x9d\x5e\xfd\x26\xf5\x79\x51\xb0\x54\x3f\xab\x89\x1e\x7c\xe7\x10\x1c\x36\x20\xb8\xcd\x76\x00\xb0\x54\xa2\xcf\xc3\xe8\x17\x77\xbd\x3f\xc1\xde\x39\x3b\xc3\xe8\x98\x99\x4e\x3f\xa0\xd0\x3a\xd4\x77\x18\xad\x21\xaf\xf7\x27\x90\x61\x9f\xc9\x36\x64\xe1\xa8\x87\x40\xf1\x9c\x30\x3b\xfd\xa0\xdb\xe5\x19\x42\xa7\xf1\x71\x4a\x07\x40\x60\xd1\xd3\x06\x62\x3f\xd4\xab\x5d\x07\xc0\x56\xf1\xf7\x27\x30\xb2\x3b\xeb\x94\xa1\x5a\x25\x2f\x2e\x0c\xd6\x5a\xda\x19\x53\xc4\x58\xb5\xfb\x6c\x7b\x1e\x60\xa9\xbe\x00\x48\xc7\xd9\x1e\x08\xb9\x5f\xf3\xdb\x28\xcc\x12\xdb\xd9\x90\x92\xd4\x1d\x3a\x00\x8e\xb2\xe6\x3f\x3c\xe1\x60\xca\x5f\x20\x48\x87\x2e\x6d\x45\x21\x5a\x2f\xf1\xbe\x0c\xc3\x6a\xed\x8c\x18\x02\xb1\x56\x39\xa8\x15\x86\x62\x2d\xf2\x48\x2a\x0c\xc6\x5a\x5f\xca\x09\x73\x93\x7a\x9d\x43\x90\x9c\xa8\xbf\x8d\xd2\xc2\xb4\xbd\x00\x43\x35\x9e\x7e\xe0\x88\x93\x37\xc3\x06\x30\x73\x87\x0c\x42\x4d\x54\xeb\x99\x86\xc1\x0b\xf9\xd9\x51\x03\x66\x89\xe9\x2c\x87\x41\xd3\xaa\xb3\x09\x27\x83\xee\x9d\xc3\x07\xa1\x54\xab\xcc\x6f\x36\x00\xc9\xe5\x59\xda\x13\x73\x5b\xd3\x0b\x80\x29\x68\x07\x60\xe0\x27\xdd\x5a\xc6\xe4\x3a\x3d\x9f\x0f\x5b\x1a\xbf\x0e\xb9\x80\xe9\xab\xb5\xb3\xc6\x1e\xb2\x84\x62\xc5\xe6\x05\x7d\x8d\xb4\x64\x65\x26\x06\x25\xd3\xce\x9e\x49\x22\x55\xf6\x83\x32\x34\x84\xc0\x07\x80\x4b\xca\xe1\xab\x90\xd1\x7e\x93\xe0\x4b\x00\xf8\xbb\xb3\xd6\x29\xaf\xea\xb7\x2e\x15\x13\x9a\xa0\x7e\xdb\x0b\xd0\xd9\x87\x4b\x6a\x32\x06\x72\xd2\xe2\x9f\x0c\x90\xe2\xe2\x01\x90\xdc\x8f\xe1\x40\x09\xc0\x62\x47\x77\x56\x86\xb8\xb0\x73\x11\x66\x34\x08\xc4\xeb\x0e\x00\x32\x8d\x2e\x21\xf4\x06\xc0\x89\x8a\x39\x61\x0e\x99\x2a\xcd\xc7\x06\x40\x1d\x74\x21\x50\xca\x96\xe6\x7f\xc1\x0a\xb1\xcc\xc5\x8c\x0e\x67\xb0\x68\xba\xa6\x93\xa4\x1a\x3c\x8a\x11\xc8\x34\x80\x9b\xb1\x8d\xf8\xc6\x2a\x47\x97\x9b\x9d\xac\x56\x30\x7a\x77\x13\x50\x29\xff\xe2\xd8\x54\x2a\xfb\xfa\x7d\x1a\x85\x18\xb2\x6b\x33\x55\xde\x70\x4d\x8e\x50\xd5\x70\xf8\x74\x3b\x8d\x76\xea\x7c\x52\x3b\x00\xb9\xe3\x4c\x80\x41\xaf\x6f\xd2\xc5\x0d\x40\x0e\x7e\x09\x70\xda\x19\x65\x75\x6c\x50\xd0\x70\xeb\xf3\x99\x17\x30\x5d\xfa\x5a\x38\x97\x75\x99\x7b\x55\xa3\x97\xb6\x02\x3c\x54\xfb\x40\xea\xd8\xfe\x00\xe0\xe0\x20\x09\xab\x0c\xbb\x65\x3a\xd0\xab\x5f\x64\xfd\x79\x3a\x57\x26\x7e\x28\x32\x2c\xaf\x7e\x41\x09\x94\x5d\x6d\xdc\x5c\x1a\x3c\xd1\xaa\xdf\xe0\x34\x2a\x09\x54\x65\xdc\x2c\x53\x08\x88\xea\x89\x92\xf2\xae\x27\x0a\xa3\xe2\x95\xfb\x00\x71\x2a\xca\x14\x60\x03\xb8\x2d\x68\x08\xbd\xd2\x02\xe1\xb4\x41\xa1\x89\xa2\x46\x6c\x20\x8e\x7c\xd9\x7f\x6d\x80\xfd\xc8\x02\x18\x0f\x96\x64\x70\x03\x15\x1f\xf7\x3e\xc1\x8f\x53\x1b\x8d\x1a\x8c\xd3\x0f\x64\x59\x2f\x92\x90\x6d\x00\xba\xda\xae\x36\x28\x84\x2e\x67\x4c\x19\x2e\xbe\xd6\x72\x00\x08\xa1\x4d\x43\xd8\xb9\x60\x78\x5e\x55\x47\xb8\xf6\x2e\x8b\x8c\xea\x46\x4b\xf3\xa2\xb7\xf0\x54\xec\x5d\x8d\x22\x41\x6b\xd5\x21\x58\x1d\x47\x8b\xf9\xf9\x16\x78\x13\xd5\x5b\x8b\x8e\x36\x4e\x55\x36\xcf\x95\xb7\xb8\x52\xcf\xb7\xc0\xd7\xb0\xf5\x33\xfb\x34\xa1\x93\x17\x4f\xf5\x0f\xf5\xe9\x45\x5d\x47\xdc\xe3\xf6\xae\x0f\xda\xe6\xcb\x14\xb8\xd2\xae\xbe\xe6\xa2\x46\x71\xf1\x2b\xb7\x76\xb6\x3f\xbc\xe6\x52\xa6\x58\x07\x03\xb5\xdd\xe5\x05\x20\x17\xd1\x4f\x86\xf4\x9b\xea\xd8\x80\x16\xa4\x66\x3b\x80\x34\x6d\x59\x00\x04\x84\xb7\xb6\xc7\x28\x0c\xc2\x4a\xfd\x77\x1d\x95\x0e\xf7\xed\x00\x0a\x20\xca\x51\x17\x9b\x2d\xb9\x75\x1d\x88\xd0\xd5\xa4\x9c\xab\x0c\x1f\x6f\xee\xea\x29\xe7\xa5\x79\x39\x00\x2e\x18\xe7\x27\x43\x1b\xe8\x05\xa0\xdf\xac\xea\x07\x0e\xc1\x7a\xf6\x0b\x43\x46\x77\xf9\x18\x55\x06\x64\x36\x05\x20\xa8\x83\x6e\x16\x77\x7f\x01\x84\x8d\x3a\x8d\xc2\xff\xaa\xca\x5b\xbc\x32\x20\x6f\xc9\x22\x6c\xe3\xa1\x59\x94\x16\x2e\x02\xeb\xde\xe5\xcc\xcb\xbc\x48\x1d\xc8\x77\xd7\x89\xe0\x3f\x2d\x89\xa0\x30\x96\x2d\xc2\x9f\x02\x60\x1c\x16\xad\xe4\xc9\x98\x21\x59\x2b\x68\x26\x46\x2e\xd3\xbe\x9d\xf0\x57\x2c\x62\x3c\x37\x80\x7e\xe8\xe3\xa8\xa2\x2a\x8a\x59\x50\x67\xe1\x1a\x6b\x07\x80\xcd\xa5\xb4\xca\x75\xf2\x12\x9b\xae\xf4\xe7\x07\x58\x9d\xd0\x63\xbb\x2c\x78\x2b\x75\x4f\x7e\x9f\x4e\xe2\x72\x50\xd3\x25\xc0\xe9\x28\x7e\x3e\x94\xc6\x13\x8d\x97\xf3\x8a\x94\xcb\x77\xbd\x79\x8b\xab\xcc\xba\x5c\x74\x7b\xaa\x4c\xde\x5b\xef\xae\x2f\x07\x17\x56\xc5\x53\x54\x79\x25\xf7\xd3\x31\x7a\x25\x37\xd1\x67\xc6\xae\x6a\x59\x8b\x18\x39\x0d\x37\xd1\xd7\x4f\xb8\xff\xae\x96\x0e\x80\xb8\xef\x9c\xf8\xc6\x98\x4e\x2e\xa5\xc7\x06\xe8\xd7\x92\x09\x20\x67\x50\x93\x0c\xbb\x19\xdd\x36\xe4\xa3\xd3\x2c\x31\xe2\x0a\xe5\xa3\xcd\xe0\x28\xd7\xa5\x02\x6c\x96\xe8\xbc\xc7\x53\xb1\x31\xe5\x59\x04\x5d\x04\x80\x20\x7e\x26\x6e\xb0\x59\xa1\xc7\xda\xa5\xd7\x56\x09\x4d\xfc\x00\x30\x5a\xb8\xd2\x01\x70\xe3\x27\x9b\xda\x28\x8f\xaf\x8a\xc5\xd0\x0c\x77\x67\xeb\x9c\xa8\x0d\xc0\xbb\x2a\xa9\x1f\x8c\x1b\x20\xc6\xbe\x19\xe2\xa4\x36\x69\x40\x1b\x53\x82\x55\x99\xac\x34\x73\x32\x05\xf6\x02\x08\x47\x55\xed\x00\x70\xb8\xa9\xea\x18\xd2\xfa\x96\x74\xab\xeb\xd0\x81\x35\x5d\x85\x9a\x7d\x19\xc1\xaa\x5d\x07\x80\x26\xa5\xea\x2d\x5f\xa7\x4b\x9f\x7a\xba\x70\xad\xcb\x45\xaf\x05\xbb\xdc\xc5\xcf\x34\x0a\x5d\xab\x7c\x96\x9a\x5f\x1a\xf5\x26\x00\x1d\xd3\x71\xdd\x98\xa8\xaa\xca\xc8\xae\x31\x55\x55\x55\x18\x89\xc6\x50\x9c\xa6\x3b\x5a\xf3\x7b\xd0\xfe\x84\x5d\xf7\x44\xd1\x2e\x39\x9e\x46\xa1\xab\xc9\x97\x73\x03\x0e\x83\x83\x7c\x80\x2f\xe8\x91\xfa\x81\x98\xce\x25\x15\xbd\x85\xf6\x81\x12\x1d\x34\xaf\xb0\x53\x34\x57\xa3\xb0\xed\xab\xe9\xce\x07\xf8\x02\xd0\xb7\x30\x46\x63\x2d\x02\x98\x21\x45\xbe\x64\xcd\x19\xce\x2f\x9d\x01\x62\xae\x8b\x76\x7e\x32\xa8\xbc\xd5\xdc\xfa\x60\x94\xff\xd3\x75\xe4\x5e\xee\xef\xc7\x4d\xc6\x40\x3b\xe3\x31\x19\xcd\x9f\x1b\xb9\xd1\xaa\xa3\xa7\x24\xe0\x2b\x91\x3b\x27\xdb\x17\x39\x40\xad\x64\x7a\xdf\x99\x44\xdd\x8d\xf6\xc5\xf5\x7d\x2d\xac\xa0\x5a\x26\x31\x68\xe3\x72\x06\x64\xe0\x10\x0e\xb2\x84\x12\x77\x35\x7a\x79\x99\xbc\x22\xdb\x10\x4b\xa8\x69\x18\x98\xca\x26\x92\xb3\x81\x20\x4a\x92\x69\x34\xa6\x67\x32\xb9\x05\xb6\x41\x3b\x07\x05\x53\x68\x83\x71\xd4\xee\x4b\x6f\x81\x5b\x52\x57\xac\xad\x46\x0b\x64\xc4\xc0\x07\x00\x65\xb6\xe2\x8e\xb4\x51\x19\xbe\x4d\xbb\x72\x34\xa5\xff\xd2\x13\xd4\x81\xe9\xc2\xd5\x06\xe2\xa8\xf5\x5b\xb4\x90\x89\x78\x10\x1f\x3f\x00\x7a\xff\xc8\xdc\x7c\x03\xf0\x25\xd3\xc2\xa5\x3b\x90\x89\x25\x6c\x12\xa5\x24\x32\x6b\x8d\x52\x8f\xaa\x10\x32\x8d\x49\x6a\x8a\x4c\xc5\xdb\x80\x1f\x77\xd1\x85\x7c\x03\xc8\xa6\x66\x7f\xe1\x00\x6b\x83\x97\x83\xf2\xfe\x9c\xfc\xa2\xc8\x8f\xb2\x7b\xb8\x9f\x27\xe8\x66\xd8\xf5\xe5\x5f\x46\xc4\x32\x3f\x00\x65\xe9\xfd\x00\xc8\x82\x21\x8a\xc5\x84\x1b\xed\x2c\xf3\x81\x38\x85\xa6\xeb\x43\x63\xba\x8b\x7a\xbb\xde\x82\xdb\x69\x2d\x67\xf4\x16\x93\xed\x69\x43\x0e\xdc\x4e\x8b\xee\xf3\x1b\xe0\x0c\x1c\x40\x82\x71\x01\x54\xc1\xb7\x33\xe0\x0f\xe4\x81\x0a\x46\xd0\xc8\xb9\x94\x43\x39\x27\xdd\x1d\x65\x1b\xd0\x18\xc3\xc8\x25\x08\xde\x00\x0c\x28\x29\x66\x6a\x13\x36\xad\xad\xbe\x3f\x81\xf1\x84\x78\xbd\x36\x13\xfb\x41\x36\x64\x03\x50\x14\x88\x94\x2a\x1c\x7e\x3b\xfd\x48\xca\x93\xd0\x05\xa0\xeb\xed\xf4\x03\x01\x89\x8a\x78\xf0\x0d\xc0\x6d\x43\x7b\x87\x1c\x54\x95\x8a\x67\x03\xb4\x72\xd1\x4f\x32\x17\xa0\x46\x4c\x91\xda\xbb\xe8\xe2\x2c\x94\xe9\xeb\x74\x9e\x65\xd0\xa0\xf4\xfd\x09\xd4\x88\xe9\x05\xa0\xea\xd5\x56\x99\x74\xfa\xab\x3a\x26\x19\xa1\xa8\x36\x31\x16\x8a\x01\xaf\xb0\x47\x8d\x51\xe0\x9b\xa2\x36\x36\xc6\x63\xaf\xba\xf7\x36\x46\x06\x32\x31\xc3\x8d\xe6\xda\xcd\xce\x13\xf0\x37\x6a\x9e\xfa\x01\x90\x03\x5d\x34\x8d\x06\xdd\x25\xe9\x74\xa6\x41\x77\x2d\x5a\xb8\xb3\x51\xea\xe8\x6f\xa3\x0d\x1d\xb3\x03\x40\xc4\x9c\xdf\x46\x99\x93\x43\x4f\x74\x86\x01\x17\xd5\xa3\x44\xa8\xea\xaa\xdc\x28\x11\xda\x27\x9b\x00\xe8\xaf\xca\xf9\x89\x71\x59\x8a\xb6\x4e\x5c\x1e\x5b\x3a\x43\x68\x90\xc3\xf9\x99\x4a\x9c\x57\x55\x31\x43\x1a\x0d\xcb\x4b\x16\xd5\x9b\x8e\xe5\x90\xcf\x64\x23\xbf\x56\x39\xdc\xca\x84\xac\xb7\xc9\x28\xbc\x4d\x1f\x08\x01\x71\xe6\xc5\x19\x4a\x4a\x3c\x11\x63\x07\x95\x2c\x62\x30\xa9\x87\x97\xc5\x6d\xa3\xc1\x92\xdf\xa7\x63\x30\x47\x32\x3f\xaf\xa5\xa0\xe4\x3a\x6b\x6c\x32\xb1\xae\xf8\xcc\x39\x19\xdd\xfe\x74\x0c\xd6\xc3\xad\x9f\x51\x67\x78\x81\x5b\x7b\x7f\x52\x9d\x99\xc4\xe0\xd0\x61\xaf\xd4\xd3\xd3\xc9\x28\xba\x7f\x78\x6d\x7c\x4b\x39\x4b\xea\x43\xbb\x4d\x9d\xf0\x93\xde\xf3\xef\x1a\xfb\xd2\x2e\xe8\x7c\x1c\xb3\x2b\xdf\x67\x90\xe1\xd2\xd7\xda\x19\x0f\xf0\x66\xe6\x87\x5c\xc0\x02\xb9\x8a\x99\x6f\x8c\x7e\x53\x0b\x99\x82\x6e\x17\x4e\xc5\x4e\x9a\xdc\x69\x8a\x6f\x8a\x0a\xd6\x29\x48\x2b\x9d\xfd\xd8\x00\x3d\xf0\x13\x01\x9c\xce\x25\x73\xe6\xba\x25\x31\xc0\x2f\x40\x35\xe2\x75\x00\x18\xa4\x53\x8b\xda\x19\x29\xb5\xe4\xd3\xb1\x4c\x07\x2a\x53\x1b\x99\xa2\xa5\xec\x07\xa0\x67\xd7\x5f\x38\xc0\xba\x21\xbd\x85\x49\x6a\xd0\x19\x68\xb5\x28\x1e\xd3\x06\x10\x5a\x9b\x94\xb3\x1b\xc8\x4f\xbf\x6b\x3d\x00\x95\x40\x02\x2a\x13\x0b\xdf\xe9\x00\x50\xad\x70\x35\x75\xa3\x9e\x52\xfa\x89\x2e\x89\x61\x6d\x1a\x0a\x5a\xbc\x28\x5a\x62\x57\xc2\x5f\x19\xfc\x74\x1b\x4a\x4f\x73\x1f\x00\xcc\xdf\x99\x01\xae\x7b\x85\x94\xeb\x06\x89\x7d\x93\x30\x79\x03\x10\x45\x74\x01\x93\xcc\x4e\xd3\xd7\x7e\x35\xe0\x6a\x03\x32\xdb\x92\xcf\x2c\x22\xf6\x9f\x4b\xa5\xd1\xfd\xc2\x3d\x2f\x91\xb8\x74\x1a\x96\x9b\xa2\x13\x74\x32\xe5\x55\x04\x7b\x03\xc8\xe2\x5c\xf5\x04\x35\xbb\xe2\x4b\xba\xd3\x37\x46\xa7\x62\x57\x54\x4c\x89\xac\x3b\x43\x93\x17\xb1\x98\xdd\x3b\x9c\x32\x64\xf8\xb0\x01\xe4\x21\xa3\xa4\xbc\xbb\x31\xf4\x33\x0f\xb0\x0d\xd0\xab\xf0\x3c\xc1\x04\x5c\x77\x39\x00\xee\xdf\x1a\x42\x67\x2a\xbf\x56\x5e\x00\x8c\x6c\xb9\x0e\x80\x04\x60\xe7\x6b\xa1\xc0\xe9\x52\x28\x77\x87\xf6\xa1\xe4\xf3\x71\xb8\x92\x75\x91\xc1\x0d\xe0\xcc\x33\xf5\xe3\x2b\x99\xa2\x7e\x82\xac\xfb\x5d\x72\x96\xee\x8b\xf6\x49\x67\x4c\x99\x99\x2b\x69\xe1\x92\x29\x37\x85\x4c\xe9\xe3\xc6\x2d\xff\x2c\xcb\x01\x4f\xef\xe2\x64\x3d\xfa\x80\xb8\xbc\xca\x2e\xaf\x0f\x7a\x68\xb5\xd3\x06\x63\x3a\x89\x4b\xe8\x83\x07\x7a\xee\x7a\x82\xf6\xfd\x22\x94\x7d\xc0\xec\xac\x9c\x85\x3b\x70\xd4\x76\x31\xb2\x7d\x30\x61\x88\xe2\x8f\xf6\xd1\x99\x00\x4b\x8b\x6e\x30\x5e\x9e\xa4\x8e\x9d\x6a\xd5\xa6\x03\xbd\x4b\xf3\x28\xad\x7d\x67\x8a\xc6\x26\x95\xc6\x06\x60\xf9\xab\x41\x3e\xc9\x14\xcf\x6b\x71\xd6\x34\x45\x4b\xec\x4c\x21\x58\xb2\xe6\x76\x0c\xc8\x8c\xe4\x1b\xdf\x99\x74\xaf\xca\x68\xa1\x2b\x75\xde\xfb\x93\x0f\xb7\x69\xd7\x6b\x3f\xce\x64\xa7\x7a\xed\x07\xac\x58\x36\x3b\x00\x1c\xe5\xea\xfb\x04\x76\xa5\xe9\xb5\x30\xe0\xaa\xf7\x0b\x04\x0d\x72\x05\x22\xe9\xcc\x85\xe5\x67\xf1\x0f\xb8\x9d\xd4\xa6\x85\x3b\x79\xdd\x36\x4d\xc3\xbc\x99\x24\x9f\x4c\x41\x9f\x09\x32\x78\xc9\xad\xfb\xcc\x34\x36\xea\xfa\x09\x83\x6f\x9d\xf5\x41\x3f\xff\xa2\x80\xa4\x1b\x40\x94\x34\x11\xfd\x29\xf9\xf9\x69\x03\xae\xdf\xa6\x2b\x43\x9f\x90\x9f\x77\x99\x69\x76\xda\x7d\x17\x05\x53\xe8\xb3\xe1\xca\x2e\x97\xcf\x4e\x8b\xec\x22\xa3\x96\x4e\xae\xa9\xca\xed\xa4\x4f\x64\xfb\xac\x12\xa9\x76\x06\xa1\xaf\xed\x12\x80\x08\x78\xed\x3e\x3d\x7d\x18\x78\x8f\x4b\xca\x0c\x32\x8d\x22\x0f\x91\x0d\xe0\xae\x48\xd9\x9b\xd9\x85\xb3\x57\xc6\x46\x66\x4c\x37\xac\xe0\x1d\x1b\x40\xf2\xb0\xf6\x17\xcc\xe8\x8d\x12\x32\x53\x50\x12\x93\x40\x4c\xb4\xd5\x2c\x91\xfa\x9a\xde\x98\x28\x6d\xe7\x6d\x7d\x03\xb8\x03\x73\x01\x9a\x31\x94\x94\xc4\x19\x1b\xa0\x63\xa6\xde\x92\x79\xf7\x34\x7d\x79\x21\x57\x6a\x6a\x94\x6e\xb9\x8a\x65\x66\x4c\xdc\xdf\xef\xd3\xb1\x2a\xf7\x33\x75\x4c\x69\x8b\x4d\xfd\x68\x34\xf7\x7a\x81\xc9\xd3\x59\x83\x05\x0a\xde\xfd\x56\xc7\x60\xa9\x56\xeb\xe9\x3a\x5d\x72\x64\xa0\x6a\xb4\x14\xed\x12\x32\x1a\x7d\xfe\xbb\xbc\x70\xcd\x06\x52\x42\xa4\xae\x6f\x41\xa8\xde\x2e\xef\x73\xb3\x49\x67\xd7\x4b\x8d\xd2\x74\xad\x9a\xe6\x99\x7b\x58\x86\xb2\x66\x32\x5d\x33\x75\x9d\x5b\x36\x25\x35\xfa\x65\x64\x81\xdc\x0e\x00\x41\xd4\xf9\x16\xa4\x5a\x6c\xa9\xa9\xa7\x4a\x91\x48\xc2\x60\x4a\xe6\x2e\xa6\xdc\x1c\x31\xef\xad\x92\x93\x33\x6a\xda\xba\x6c\x36\x8c\x76\x8a\x55\xc1\xde\xcc\x13\x0d\xa0\xb8\xcc\xcd\x0b\x6d\xe2\x5d\x8d\x16\x4e\x03\x4f\x92\x0d\x60\x77\x15\x01\x75\xf0\x09\x75\xac\x2b\xbe\x85\x1a\x45\x22\xa7\xa6\xab\xb2\xd1\xbb\xaa\xb4\xab\x1f\x00\x1a\xae\xaa\xae\xd3\x42\x45\xd6\x14\xe6\x50\x6c\x17\x59\xab\x9b\x0f\xa6\x63\xf4\xeb\x00\x30\x81\xbf\xd4\x0f\xb0\x40\x2e\x89\xf2\x06\x90\x1c\xff\x74\x0c\xa2\xee\x22\x5b\x58\x63\x54\xb0\x52\x34\xea\x3c\xae\x4d\x91\x0e\xcd\x3f\xa4\x69\xa2\x03\xe3\xa2\x2b\xab\x3a\x36\x90\xe5\xaf\x5f\x5a\x41\x03\x6c\xa5\x5f\xda\x51\xb4\xba\x2b\x72\x63\xb7\x01\xbd\x73\x55\xf0\xeb\x0d\x20\x97\x5c\xd2\x4f\xa8\x48\x52\x9c\x3a\x1b\x95\xd1\x34\x79\x55\xde\x00\x8c\x05\xb4\x5f\x06\xe7\x45\xf6\xb4\xc6\x9c\xe4\x2e\x6f\x33\x1b\xf4\xa9\x91\x8d\xa1\xd1\xda\xad\x8a\xe1\x33\x4a\xb7\x8a\x82\x18\x6c\x60\x40\x2e\x52\x0e\x30\xc1\xc7\x9f\x36\xa0\xa9\xaf\xda\x73\x83\x1e\x33\x12\x77\x99\x72\x76\x4b\x74\x67\x83\xf4\xf9\x1d\x31\x98\x78\x95\xf2\x3e\x01\xd9\xb7\x22\x82\x18\x4d\xbc\xcc\xce\x78\x74\x1a\xc8\x69\x9b\xca\x1a\x4b\x21\xf1\x4c\xf9\xaf\xa5\x66\x36\x9a\x67\x15\xf9\xb5\x6f\x00\x21\x07\x45\x2d\x07\xfc\x6a\x4d\x31\x87\x6c\x18\x6d\x2e\xab\xda\xd0\x3a\x15\xd1\xa7\x59\x54\x93\x1f\xca\x66\xcc\xd3\xaf\x12\x03\x11\x80\x97\xf6\x99\x39\x5e\x95\x25\xc2\x30\x99\x45\x65\x11\xa5\xe1\xd4\x2b\x9e\x99\x73\xfa\xb5\x5f\x6f\x1b\x94\x5b\xbf\x6d\xc0\xc5\xd8\xcb\x01\x10\x76\xa5\xbd\x6d\xc0\xd0\xfe\x6d\x83\xb1\xe1\xeb\x75\x00\x78\x47\x9f\x9e\x0e\x8a\x87\xed\x05\x10\x7c\xab\xb6\xbf\x70\x80\x0d\xaa\x9c\xc5\x3f\xdb\x18\x8a\x1e\x53\x0f\x80\x3d\x7c\xbf\x00\x8c\x86\x44\xf4\x69\x34\x54\xc5\x41\x19\xd3\x31\x17\xc5\x2f\xd8\x00\x4c\x1b\xd3\xfb\x13\x2c\x2f\x7b\x9f\x80\x61\xda\xf9\xd0\x89\x8c\x12\xe5\x7d\xc2\xe9\x0e\x7b\xda\xc0\x15\x44\xd6\x25\x1b\x60\x20\xec\xd3\x0f\xba\x3a\xbf\x6d\x0c\x5a\x01\xfb\x01\x40\xf4\xed\x6d\x14\x99\x83\xce\xe7\x43\x40\x5f\xb3\x48\xd8\xf8\xf0\x8a\xaa\x83\x94\x52\xd8\xd2\xcf\x6a\xfa\x50\x32\x75\xc6\x54\x81\x26\xfa\x0b\x40\x2b\x64\xef\x4f\xe0\xcd\x77\x96\x28\xe3\xff\xca\x34\x62\x03\xd4\xb8\xeb\x5b\xbe\x3c\xf3\x44\x39\x87\xa2\xfb\x9e\x2d\xfb\xc5\x98\x9e\xb3\x86\xb2\xde\x9a\x9b\xbe\x05\x5e\x04\xb5\x9e\xd5\x04\x2f\x82\x9a\x0f\x19\xfc\xd2\x6b\xfd\x8c\x07\x1c\x44\xdb\x61\x3d\xc6\x57\x5d\xd7\x78\xc0\x28\xbc\x5f\x5d\x1f\x47\x85\x85\x38\xdb\x0d\x80\xf9\x3b\x7b\x67\xd1\x46\xa1\xe9\xe3\x16\x93\x94\x1c\xd2\x41\xdb\xa2\x7e\x3e\x8e\xa1\x47\xf3\xa1\x25\x8f\x92\xa4\xf6\x03\x74\x28\x5e\xed\x00\x20\x3f\xf5\x05\x18\x36\x4d\x0b\xe6\x61\xda\x8e\x9a\x0f\x80\x40\x62\x87\x94\x3e\xd4\x91\x26\x3f\x00\xdd\x3f\xdf\x27\x68\x19\x72\xba\xce\xc3\xf8\xd0\x12\x26\xf6\x90\x1a\xc0\x18\xbf\xbf\xc8\xd5\xd9\x26\xa3\xbd\x48\x84\x68\x53\x8c\xac\xce\xab\x09\x05\x4e\x55\xa4\xc3\x0d\xc0\x5a\x96\x8c\xbd\xcd\x8b\x6b\x9d\xd7\x7e\x53\x20\x92\x5c\x5e\x00\x96\xbf\xf5\xbc\x05\x72\x49\x99\x9b\x6c\x00\x76\x30\x22\xe9\xcc\x01\x50\x25\xb6\xb7\xc9\xfc\x3b\xf9\xba\x0e\x80\xc0\x1b\x3a\x16\x66\xa6\xcd\xd7\xe9\x3a\xed\xd9\xb3\xe8\x07\xf5\xf0\x5d\x26\xf0\x36\x95\x5e\x4d\x1b\x48\xb1\xd5\xdb\x19\x0f\x10\xec\x22\xf7\x22\xa3\xdf\x64\x3b\xcc\xc9\x74\x85\x5b\xf0\x03\xe0\xf3\x45\x83\x26\x3c\x22\x9a\x94\xc8\xc6\x70\xe1\x5d\x61\x35\x6c\x82\x5b\xe9\xe7\x74\x66\x24\x8e\xd2\xcf\x13\x13\x5d\x57\xd2\x08\x9b\x93\x56\xaa\x5a\x0e\x74\x0b\x34\x71\xc4\x6e\x37\x97\x36\xaf\xdb\x2e\x49\x9d\x24\xec\x2e\x57\x3a\x5d\xda\xdc\xa0\x47\xab\x99\x27\x89\x53\x52\x57\x64\x16\xe5\x86\xe8\x53\x55\x92\xba\x0d\xc0\x2a\xd3\x05\x50\x5b\xa0\xf0\x5c\xce\xc8\xcd\xb5\x5d\xf7\x01\x18\xef\xef\x7d\x02\x3b\x9b\x73\xbb\x01\xba\x8e\x55\x02\x60\xa3\xba\xec\x4f\xdc\x0a\x25\xb9\xa7\xd1\x42\x37\xe5\x4b\x5f\x8b\xb4\x01\xc5\x4f\x4f\x15\x6a\x8c\x84\x6d\x03\x30\xe4\xbc\xfe\x82\x19\xbd\x5b\xa5\x43\x64\x53\xaf\x1b\x9d\x98\x4c\xc3\xd9\x98\xb8\xf8\xd2\x60\x75\x4a\x86\xb3\xa6\x84\x51\xe8\xa4\xd0\x72\xc7\x66\x2a\x12\xee\x39\x13\x56\x9a\x6e\xfc\xee\x08\x9f\x52\xa4\x06\x70\xc6\x73\x28\xce\xed\xe6\x8e\xab\x61\x55\x74\x6d\xf7\x0c\x83\x41\xd9\x2a\x6d\x00\xb4\x84\x6c\xea\x06\xe0\x3b\xd5\x0e\x00\x5b\x09\x99\x8a\x6c\xe0\xcd\xc9\x1c\x00\x92\xc6\x5a\xd7\x1c\x29\x8f\xa1\x7c\x4a\x37\x00\xdb\x11\xf2\x8b\xee\xc8\x15\x5b\x33\x8d\xec\xdc\xfb\x60\x02\xe9\xf3\x04\xc5\x7f\xbc\x7a\x3b\x23\x0b\x74\xdd\xd6\xdd\x3f\xe0\xa0\xda\xad\xd7\x3e\xcc\x4b\xa9\xd7\x0e\x98\x13\x74\xb9\xb0\x39\xed\xbf\x8a\xae\x42\x3e\x68\x19\xa2\x18\x57\xce\xb8\x99\xa6\x70\x32\x3e\xb2\xa2\x2d\x55\x01\x30\xf9\xce\x7e\x9e\x98\x30\x4b\xac\x7a\x82\xf6\x5f\x0a\xad\xe5\x8c\x84\x59\x74\x27\x71\x39\xdc\x28\x0a\xbc\x0f\x44\x1b\x77\xb9\xb1\x6c\xa0\x83\x07\x78\x9f\x80\x1d\xda\xe9\xa9\xb2\x63\x50\xbe\xe1\xa3\xea\x00\xd3\xe7\x33\x8a\xa5\x92\x37\xf9\x68\x58\x52\x92\x4b\xfa\x60\xb2\x22\xe5\x14\xdb\x00\xc4\x5d\x3c\xc0\x9c\xf6\xfd\xa6\x50\xce\x3e\x9c\xdb\xed\x3c\x41\xfd\xf1\xd9\x5d\x8a\x71\xa5\x40\xab\xce\xd4\xee\xe5\x90\x9f\x79\x33\x17\xa2\x56\xf2\x84\x5e\xa0\x8a\x6d\xf7\x59\x78\x05\x51\xc7\x66\x65\xaa\x68\x4a\x72\x9d\x59\x3a\x9a\xdc\xb6\x9d\xf2\x9e\x2a\x41\xd4\x06\x10\xbd\x95\x34\xde\x27\x7c\x37\xba\x02\xe0\x3a\x1d\xee\x9b\xac\x32\x5d\xee\xf4\x52\x12\x3a\xd2\x0e\xde\xa5\x1d\x00\xf4\xb9\x29\x8e\x82\x4f\x04\x5b\x77\xe5\x79\xf1\x39\x19\x25\xcd\x0f\xc0\xc5\x4f\x21\x87\x4f\x2a\xc4\xdf\x46\x3f\xdc\x2f\x22\x94\xf4\xf4\x2e\xd2\x4d\x3a\xf5\x35\x4d\x96\xd5\x83\x89\x05\x4c\xbe\x64\x83\x79\xeb\x4a\xe2\x59\x33\x4c\x9e\x84\x59\x00\xed\x14\x15\x10\x78\x90\x94\x56\xa5\x40\x18\x46\x07\x35\xe5\x22\x18\xd4\xa4\x14\xd9\xf4\x6c\x00\x4e\x36\xa4\xcf\xc3\x0a\xd7\x69\x57\xc7\x0a\xc3\xec\xf2\xf0\x19\x86\x5b\x6d\xef\xdc\x2f\x1b\xc0\xbd\x26\x0b\xa8\x20\x4a\x22\x28\xc3\x1a\x44\x18\xed\xbc\x05\xc1\xd9\x8a\x1c\x20\x86\xf2\xd6\x49\xed\x3e\x0c\xb9\x52\x6b\x39\x8d\xc2\xde\xc2\xe5\x01\x30\x0c\xee\x40\x45\x6a\xd5\x61\x9d\x5e\xc9\x49\x5f\x0b\x7b\xeb\xa2\x30\x8e\x83\xa1\x8e\x8a\xdc\xa3\x86\xc9\x11\xe3\x74\x6c\x30\x7e\x78\xd1\xe7\x53\xbf\xa2\xa0\xd3\x1b\xa0\x4f\xec\xfb\x44\xc3\x59\x53\x0f\x40\x76\xff\x7d\x82\xb2\x26\xcd\x1c\xbd\x19\x14\x9a\x6f\x1f\xf1\x10\xa9\x9e\xa9\x84\xc1\x84\xb9\xa9\xa7\xcc\x02\xd5\xef\xff\x7c\x03\x2b\xe9\xbf\x9e\x5f\x83\x01\xf2\x8b\xd4\xe9\xc3\x91\x88\xa9\x49\xa3\x38\xe8\xda\x6a\x37\xc9\xe2\xf0\x2e\x2f\x85\x72\x00\xec\x36\xcd\xbb\x1b\xfc\x98\x25\xa9\x1a\x54\xa4\x74\x09\xfd\x07\x33\xba\x36\x39\xad\x0c\x25\x62\x4d\xdc\xa0\xc3\x99\xda\x40\x3c\xd7\x98\x1d\x9a\xa6\x5b\x3d\x9d\xd0\x89\x35\x29\x63\xa6\xc3\xde\xbf\x4b\x0c\x3e\x29\xdc\x6a\xf2\x63\x98\x83\x3e\xef\x89\xbb\x7e\xd2\x69\xa5\x4b\x50\x3e\x67\xa6\x01\x21\x3f\xff\xe3\x9d\x99\x96\x79\xb0\x7e\x8e\x7a\x82\x97\xa7\x2f\xd2\x6b\xde\x4d\xba\x97\x67\xc0\x82\xb5\x5a\x39\x00\x98\x41\x45\xb3\x78\x18\x6d\xbb\x67\xd2\xc9\x47\xd1\xb6\x15\x41\xed\x19\x17\x6d\xa0\x79\xc2\x9d\xac\xb1\x0a\xeb\xf8\x30\x74\xb6\x29\x05\xc0\x33\x98\xf9\x43\x3b\xe5\x19\xc8\x56\xd9\x14\x8f\xfb\x19\x09\x97\x27\x59\x8c\x3d\x23\x33\x16\x27\x39\x8f\x67\x64\x06\xb1\x29\x7a\x4b\x61\x1a\xd9\xf3\x2d\xb0\xe1\x68\xb2\xe6\x7f\x78\xa0\x75\xe5\xa3\x7b\xe8\xba\x58\x34\xfb\x8f\x5c\x17\x53\xd7\xb7\xc0\xd4\xf1\xa8\x6d\x1f\x0a\x84\x6a\x3a\xaf\xed\x52\x0b\xd8\x01\xa0\x2c\x4f\x7a\x82\x31\x41\x5b\xfb\xbf\x6b\x7a\xff\x31\xfe\xf5\x7f\xac\x7f\xfa\x5b\xba\x7e\x7f\xfe\xd6\x37\xf1\xfa\xa7\xbf\x7d\x22\x58\xf1\xfe\x27\xff\xfe\xa4\xcd\x03\x7f\xd6\xde\x3f\x7f\xfb\x84\xe2\x3c\x32\x5a\x7c\x22\x3b\xfa\xfe\xc7\x7f\x7f\xe2\x9c\xfe\x44\x08\xfa\xfd\xcf\xf3\xfb\x13\x89\x43\x3e\x61\xfc\xb3\xff\xd9\xbf\xda\x9f\xfe\x89\x88\xf2\xfb\x9f\xfd\xab\xcd\x97\x7d\x83\x07\xd9\xff\xec\xd9\xcf\xa1\xf0\xfb\x46\x76\x89\xbf\x7d\xe1\x62\x9e\x43\x91\xff\x0d\xf7\xf2\xfd\x4f\xa4\xbd\x0d\x1d\xef\x37\x66\x77\xff\x03\x6c\x13\x88\x95\x2c\x72\xa0\xa3\x00\xef\x4d\xa2\x1f\xa1\x60\x90\x03\xad\x7b\x9d\xa2\xe0\xbf\x3f\xc8\x9d\x9c\xc0\xaf\xa2\xe0\xbf\x3f\x71\xf3\x5e\xc9\x22\x3e\x35\x0a\xfd\xf7\x27\xf2\x4e\xec\xca\xe4\xdb\x70\x21\xca\xc8\x25\x9c\x2c\x04\x5a\x28\x8c\xdf\x9f\x38\x76\x56\xb2\xb8\xe0\xa0\xb0\xdb\xb8\xf1\xec\x47\xcf\x22\x70\x69\x41\xdf\xe2\xe6\x8b\x02\x73\x21\x97\x8d\x23\x4c\x59\x14\x36\xd9\x0b\x95\xe0\x4a\x7e\xf3\x4b\x60\xdf\x19\xbe\xed\xbb\xb2\x09\x15\x0a\xdf\xdf\x9f\x10\xc3\xac\xe4\x21\xd1\x44\x61\xfd\xfe\xc4\x25\x6f\x57\x62\xfe\xa2\x90\x7f\x7f\x22\x7d\xcc\x4a\xf0\xcc\x40\xc1\x7e\x7f\x22\x7f\xd4\x4a\x1e\xf1\x28\x50\xd8\xcf\x62\x84\xe6\x30\x7c\x1d\xed\x4b\x7a\xf8\xe0\x47\xf5\x23\x1c\x69\x5d\x31\x46\x73\x0a\xa7\xf6\x20\xcc\x1c\x76\x95\x23\x4d\xeb\x8f\x1e\xb6\x50\x2b\x21\xaf\x31\x0a\xf9\xf7\x27\xcc\x62\xa3\x62\x42\xe7\xef\x4f\xa4\x8a\x89\xca\x47\xe8\xfa\xfd\x09\x1b\xd2\x5d\xd9\x0d\xa2\x60\xbf\x3f\xc1\x1b\x46\xe5\x21\xba\x07\x31\x68\x43\x54\xb2\xd0\xb6\x51\xbe\x6d\xe8\x6d\xfb\x88\x0d\x99\x5c\x54\xd4\xc2\x5e\x3a\x0d\x33\x88\x6c\x4f\x28\xa4\xdf\x9f\x38\x3e\xa2\xa2\x76\xf7\xfa\x0e\x99\x68\x54\x9a\xd0\xdd\xb3\xca\x3e\x4c\x17\x3a\xf6\xb3\x42\xf5\x6d\x7b\x37\x44\x14\xe5\x95\xe6\xd7\x30\x27\x33\xf2\xa9\x76\xce\x49\xa4\x4e\x45\xe1\xfb\xfb\xd3\xb3\x9e\x65\x7f\xc3\x78\x21\x4c\x54\xa2\x52\x84\xda\xef\x4f\xe7\x98\x7d\xb9\x0e\x91\xd0\x18\x09\xa7\x13\x12\x1a\x47\x61\x5f\x11\x8c\x3d\xfb\x0e\xbd\x6d\x0f\x13\xf2\x7e\xef\x0a\xbf\x22\x72\x61\x44\xe2\xaa\xa8\xa8\xbf\x7b\x91\x46\x3e\xc6\xa8\x54\xa1\x7b\x0d\x5d\x37\x1b\x9e\xea\x44\x50\xc1\xeb\x66\xcb\xf3\x2b\x38\xf2\x3c\x27\x0c\xf1\xe2\x16\x61\x58\xa1\x2b\x55\xc2\x49\x70\xa4\x95\xc6\xa6\x44\x42\xad\x28\x04\xa3\x15\xe6\xa3\x51\xd3\xd3\xb1\x0a\xe3\xd4\x8d\x1a\x3f\x06\x09\x65\x91\x9a\x7f\xd7\xb2\xe0\xa0\x5a\x5c\x5a\x8b\x1b\x9e\x7e\x7b\xc8\x58\xbe\x6b\x53\x30\xc2\x13\xb0\x83\x5a\x46\x21\x5b\x4b\x97\x9e\xd6\xc7\x2f\x24\xa9\x06\xe9\x41\x78\x23\x14\xee\x0d\xd7\x4c\x38\x09\xee\xbf\x3f\xf9\xe2\x34\x3e\xda\x26\x11\x0e\x37\x87\xac\x38\x6a\x5f\xc1\xcf\xef\x4f\x46\x9e\xfa\x34\x23\x42\x37\x0a\x9b\x78\x67\xae\xdd\xc7\xb3\xe0\xb2\xa9\x4c\x2c\xff\x6c\x17\x36\x66\xa6\x76\x37\x72\xbf\xef\x4a\x15\xda\x91\x4e\xbb\x10\x37\xe1\x2e\x72\xb7\x2b\x43\x28\x84\x73\x44\x3f\x42\x61\x1d\x4e\x74\x09\x85\x02\x1a\x28\xfa\x9c\x19\x6f\x69\x73\x94\x51\x29\x42\x63\x62\xf4\xec\x57\x28\x6c\x86\x81\x0e\x7d\x47\x1c\x07\x31\xa0\xd9\xae\xa9\xfe\xee\x79\x08\xeb\x99\x95\xed\xd6\x37\xc3\xd6\x34\x47\xda\xc1\x95\x2d\x19\x7b\x01\x89\x50\x8e\x24\x7f\x51\x9d\xc2\x91\xa8\xfa\x6a\xc4\xbf\xc2\x91\x65\xbc\xb2\x1d\xf5\x05\xb9\x2b\xb2\x71\x44\xb2\xda\xcf\xc1\x28\x67\x6c\x9c\x5d\xfd\x0a\x67\xb6\x72\x0f\xbc\x68\x16\xc2\xc2\x13\x99\xef\xb3\x75\xb5\xd2\xa1\x87\x0b\xd1\x43\x54\x9b\x70\xe4\xf9\xbe\x8d\xb8\x0b\x47\xef\xf9\x55\xdd\xbe\xc2\x99\x6d\x1b\xed\x2c\xcd\x50\x48\x9a\x53\xef\x40\x9d\xb3\x19\x51\xf6\x43\x7b\xbc\xca\x34\x90\x92\x5d\x78\x36\x21\xb0\x40\x1d\xdb\x6f\x17\xf2\xef\xcf\xe6\xfe\xc1\xc2\x80\x61\xf9\x3f\xf1\x30\xab\xc0\x91\x07\x85\xf2\xfb\x83\x34\xb0\xbb\x86\xed\x56\x78\x3d\xc5\x79\xb5\x6b\x5f\xc1\x58\x04\x57\xc0\x13\x63\xb0\x0b\xfd\xf7\x27\x98\xeb\xa8\x0c\xa1\x9b\xf0\xb3\x97\x13\xab\xab\xe0\xa8\xea\x0d\x5f\x34\x07\xbb\x31\x37\x71\xec\x0d\xaf\xfb\x60\x7d\xee\xc2\xfd\xfb\x13\x17\xe0\x55\xe6\x57\x28\xee\x28\xc1\x22\xae\x32\x9f\xc9\x4e\x84\xc1\x34\x84\x36\xab\x6a\x3f\x54\xec\x87\x14\x5a\x92\x55\xed\xc6\x0b\x2b\xbc\x7f\x3a\x76\x5a\xb5\x04\x12\xbb\x0b\xfb\x98\x0e\x1d\xde\xaa\x56\xf0\x81\x95\xb7\xd3\x2b\xac\xaa\xa2\x6a\xc2\x83\xab\x8b\x4c\xf3\xbb\x36\x05\x07\xed\xcd\x3d\x03\xc7\xf0\x55\x5a\x36\xa4\x08\x71\xb1\xab\x60\x3a\x76\x61\xef\xb8\x14\x86\x2c\x51\xed\xc2\xf7\xe1\x10\xba\xbe\x55\xad\xaa\x99\xe0\x46\x42\xd0\xbf\x2a\x2c\x1d\x50\x18\xfb\x8b\x12\xd0\xc1\xa6\xc3\x2a\x38\x45\x7c\xcf\x5d\x9b\xfc\x20\x04\xdb\x08\x67\xf1\x55\xb1\xb6\x51\x88\x13\x31\xa1\x91\x3e\xd9\x74\xa8\x36\x7b\xcc\x6f\x35\xc3\x8e\xd8\x85\x7b\xb3\x11\x46\xb4\x09\xdd\xc7\xb2\xa1\xe1\x08\x3c\x88\x42\xfa\xfd\x89\x18\x86\xbb\x32\xd8\x2e\x42\x3a\x84\xa7\xfc\xae\x69\x12\xe2\xba\xdc\x22\x9f\xed\xaa\x08\xfa\x8b\x42\x1c\xe2\x09\x4d\xbb\x06\x2f\x72\x84\xe6\x90\x6b\x47\x6d\x0a\xfe\xec\x85\x6d\x68\x64\xa8\xd3\xa1\x62\xf4\xd0\x6f\x45\xad\x0b\xc6\x44\x16\xc2\x53\x30\x27\x12\x13\x36\xd4\xf1\xc1\x8e\x0b\xfe\x0a\xde\x13\x13\x37\xc4\x55\x61\xd9\x81\x42\x2c\x2a\x4e\x63\xe4\xec\x42\xe1\xf9\xfd\x01\xeb\x57\x91\x05\x0f\x85\xf6\xfb\x13\x76\x85\x51\x19\x42\xc1\x44\x61\x0a\xbe\x93\x5f\x13\x29\xb2\x9c\xab\xf5\xab\x65\x83\x6c\xd8\x99\x4b\x81\x14\xa6\x82\xc2\xb4\x74\x45\x1b\x88\x4b\x85\xc2\x26\x8f\x11\x7f\x68\x55\xcf\xec\x87\x47\xf0\xf3\x16\x71\xf5\x76\x8d\x6d\x7b\x48\x72\x7a\x78\xf5\xae\xea\x55\x8d\x44\x70\x9c\x1e\xd6\x6d\xab\x7a\x57\x23\x41\x25\x73\xa8\xe6\x77\x8d\x9b\x0f\xf6\x95\xb9\x62\x1b\xb8\x81\x34\xee\xc2\xe6\xb2\x23\x88\xda\xae\xe1\x8c\xaf\xc8\x18\x5e\x32\x56\x89\x93\x47\xde\x85\x7d\xd0\xdd\x95\x3d\x1c\x60\x20\x76\xa1\x63\x33\xa1\xf5\x31\xd9\x3a\xcc\xe9\x72\x84\x31\x5e\xd5\xc9\x23\xef\x42\x8a\x2f\x72\xc2\x59\x70\xd9\x1b\xa7\x11\x06\x91\xad\xb0\xcf\xc8\xe1\xc8\xb1\x6b\x43\xf0\xfe\xb4\x86\x63\xbe\x22\x51\x19\x0a\x65\x4f\x1b\x56\x9b\x2f\xae\x64\x0f\x43\xeb\x16\xc2\xd1\x55\xc7\xc5\xd9\x1c\xd7\x9e\xcd\x4c\x52\x05\xff\x60\x14\xf6\xf5\xa5\x78\x03\xcc\x4d\x09\x71\x71\x8e\xac\x26\xab\x22\x16\x13\x0a\xe3\xf7\xc7\x83\x57\xa8\x43\x94\x64\x04\x25\x89\xe8\xe7\xab\x42\x26\x8c\x02\xa2\x75\xdd\x80\x5d\xf0\xe6\x6a\xd3\x8d\x45\x0f\xef\x21\x14\xd6\x1e\x28\xec\xa8\xf1\xe1\xb8\x32\xd1\x40\xe2\xda\x1c\x5f\xee\x1d\xaa\x70\xf3\xcd\xe7\x49\xbe\x2b\x7c\x72\x42\x9a\x18\x95\x2e\x34\x3a\x28\x74\x08\x9d\x31\xc7\xe8\xe0\x52\xbf\xd7\xee\x77\x58\x5f\xee\x8a\xc6\x89\xe6\xeb\x21\x2e\x5f\x75\x3c\xb8\xde\x56\xa8\x4a\x91\x99\x64\xd7\x46\x25\xbc\x17\x4c\x09\x5d\xe7\xae\xe1\x0a\xb2\x0b\x9b\x33\xbb\x71\xce\xd7\x49\x6e\xab\x22\x0d\x79\x8e\x38\x28\xab\xc2\xf7\x06\x85\x3b\x7a\xd8\x09\x57\xc1\xb0\x1a\x48\x84\x97\x60\xe4\x55\x66\x23\x38\xe5\x77\x61\x9f\x51\xb8\xf7\xd4\x79\x93\x76\xc3\x13\xb9\x14\xcc\xf0\xbc\x49\x7c\xe6\x1d\xc4\x27\x5d\x7a\xe7\x64\x0f\x23\xcb\x58\xe3\x46\x9e\x89\xe3\x4d\xf7\xe5\x1b\xa3\x85\xcc\xdf\x28\x94\x38\x44\xd0\x15\xb2\x33\xbb\x10\xbb\xa7\x0b\xe7\xb0\xcc\x0e\x9a\x0c\xd4\xc0\x39\xef\xc2\x66\x39\x30\xf3\xd3\x06\x9f\x8d\x00\x41\x30\x6e\x58\x75\x3a\xe7\x61\x86\xfd\x87\x1b\xc7\xc4\x71\x03\xaa\x14\x8d\xdf\xa1\x43\x8c\xea\x57\x38\x0e\x4b\x1c\xae\x33\xdc\xd4\x51\x80\xba\x14\xdf\x33\x78\x68\x40\x9d\x09\xd7\xaf\xa8\x75\xc1\x7b\x2d\xb7\x9e\xfe\x9c\x2b\xaa\x73\x92\x26\xcc\xc8\x00\x99\x43\x99\xb5\x6b\x83\xd3\x87\x5c\x05\x09\x9c\x67\x9d\x1f\xe7\x44\x85\xab\x5a\xf8\x1d\xed\x0a\x69\xc2\xfc\xec\x79\x84\xad\x49\xd4\x9a\x60\xc8\xe4\x31\xab\x4b\x0b\x09\x37\xb0\xc8\xe3\x13\xb5\x21\x18\x02\x53\xb4\xbd\xb4\x06\xd6\x88\xcd\x9f\x01\x3f\x6a\x04\x21\x0d\x53\x04\x0c\x5d\xcd\x38\xd9\xbb\xb0\xb9\x9d\x30\xd3\x5c\x7b\x62\x1c\x70\xdd\x6f\xf1\x08\x4e\xb7\x6b\xa0\x71\xbb\x90\xf7\x44\x45\x0f\x9b\xd5\x21\x78\x4f\x6b\x89\xf8\x78\xab\x59\xc7\x3c\xed\x02\xe7\x09\x8f\x9b\xf1\x9d\x48\x4c\x9e\x73\x1c\x7b\xbb\xfa\x11\xfe\xdd\x27\x70\x07\x8a\x9d\xde\xe0\xa4\x90\xc2\x4e\x79\xd7\xb0\x94\x76\x61\x4f\x44\xa8\xe6\x56\x33\x37\x76\x25\xdc\x81\x5a\xa8\x79\x76\x4d\x9f\x19\xb1\x0d\x22\xa4\xd6\x6a\x36\xb0\xe9\x76\x21\xce\xbd\xb8\x96\x36\x9b\x7a\x18\x4e\x36\x61\x9b\x17\xb5\x26\x18\xd1\x53\xf0\xf4\x47\x4f\xc7\x5c\xc3\x91\x70\xd7\x06\xbb\x1d\xc2\x8d\x14\xd6\x0f\xab\xd9\x17\x7c\xd4\x2e\xec\x05\x91\xd9\x93\x47\x43\xf5\x40\x8c\x14\x8c\x54\x43\x6e\x58\x14\x7a\x5c\x97\x0a\x60\x8e\xb7\x87\xd1\x83\xe3\xbc\x6e\x08\x98\x8f\x42\xcc\x4e\xf0\x1e\xcd\x13\xf8\x9d\x86\xf8\x8e\xa5\x3b\x9e\xce\x20\x0a\xbb\x30\x7f\x7f\x2a\x7b\xe2\x15\x8c\xeb\x2e\xec\x7b\x73\xc8\x2c\x77\x4d\xaf\x8c\x29\xce\x21\xc0\xde\x35\x6c\xa2\x86\xa8\x8e\xb0\x5a\x5c\x0d\xa9\x5e\x51\xc8\xfb\x6e\x1b\x5b\xae\x79\xc3\xfd\xac\x41\x8d\x0b\xbf\x8f\x5d\x53\xbf\x91\xb6\xe2\x0a\x5b\x92\xd5\xbc\x73\x9d\x78\x30\x9f\x3d\x42\x3f\x45\x6d\x0a\xde\x57\xf8\x8e\x91\xf5\x08\xa8\x86\xc2\x37\xd6\x66\xa0\x64\xdf\x76\xc1\xf6\x08\x66\x7c\x0e\x6f\x20\xbb\x10\xc7\x07\xce\x48\x7a\x30\xa3\x30\x63\xc9\x1a\xde\xc9\x5b\xc8\x2e\x94\xd8\x3e\x1c\x96\xc9\x79\x63\xfc\xfa\x1c\x36\xa9\xbb\xaa\x4f\x9a\x9c\x0a\xa2\x4b\xe8\xf3\xfb\x93\xc1\x05\x36\x58\x78\x46\x61\x13\xe4\x16\x86\xbf\x51\x4b\x82\x73\x7c\xbe\x11\x2e\x82\x37\xdf\x1e\xea\x9f\x5d\xe3\x7a\xf3\x58\x6f\x20\xa1\xcd\xbf\x5c\xe1\x8e\x1b\x51\xa8\x19\x76\x6d\xf0\x8d\xc8\xa8\x1a\x66\x68\x51\x33\xc1\xbe\xe9\x92\xe3\x8d\x0f\x89\x81\x87\xb8\xa3\x39\x3a\x02\x95\x01\x0a\xd1\x3f\xd0\x88\x71\x73\x48\xe0\x41\xdd\x71\x06\xb7\x91\x39\xf7\x60\x5a\xa0\xe5\x5d\x6d\x68\xb9\x41\xc7\xec\x09\xa4\x03\xaa\x5f\x14\x56\xcc\x4f\x41\x2b\x03\x74\xb6\x21\xbe\x08\x8c\x7b\x76\x0d\x97\x96\x5d\x88\xb3\x29\x94\x97\xab\x8d\xa9\xc7\x45\x96\x3b\xf0\x8f\xde\xfa\x09\xb1\x49\xbe\xf9\xfc\x07\x97\x91\x5d\x48\x41\x99\x30\x8c\xf0\x91\x40\x21\x9e\x87\xf4\xb7\x8d\x0f\x97\x3f\x7c\x26\x3a\x04\xd6\x0d\x46\x63\x28\xc0\xcd\x15\x23\xb3\xf4\x51\xc1\x6f\x5b\x84\xdd\xdd\x35\x67\x27\x43\x0a\xe6\x8e\xf5\x3c\x16\x27\x74\x20\x63\xed\x0d\xe1\x4e\x1b\x0f\x77\xc5\x78\xe2\x5e\x1e\x29\x47\xa2\x56\x05\x6f\xa6\xa5\x60\xf3\xc3\x3c\x0b\x85\xd8\x2c\x8e\xae\x3c\x9a\xbb\x67\xcf\x1d\x0c\xf1\x16\x3d\x8a\x51\xd8\xec\x53\x02\xf5\x1c\xcf\x54\x23\x71\x63\x4a\xd8\xce\xf3\x02\x43\xb9\x0b\x7b\x5d\x40\xf8\xdd\xe6\x05\xf1\x39\xdd\x91\x1b\x74\x09\x0d\x79\xa0\x50\xd8\xe7\x6d\x06\x9d\x9c\x17\xa7\x68\x46\x1c\xa7\x9c\x40\x86\xe6\xcd\x4d\x8e\xe4\x50\x0d\xd2\xaa\x5d\xfb\x0a\xde\xeb\x22\xdc\x49\x76\x0d\x52\xe7\x36\x91\x15\x0c\x0c\x7c\x43\x52\x28\x14\xf6\xb4\x25\x6c\x2c\xb8\x16\xa3\x00\x17\xad\x58\x8a\xb3\x08\x86\x45\x80\x63\x85\xce\xca\xad\x3f\xc3\xde\xb9\x87\xdd\xf1\xa2\x1f\x2c\x0a\xdf\x3d\x99\x29\x06\x76\x1a\xae\x3b\x0d\x26\x5b\xc8\xc7\x1e\xb5\x8f\xe0\xfd\x74\x03\x99\x98\x0e\x9e\x6a\x17\x7a\xc0\x18\xaa\xc1\x23\x65\x86\xef\x96\x67\xd0\x89\x39\x07\x3f\x07\xb1\x74\x2c\xa2\x3a\xae\x36\x3f\x9a\x87\x08\x93\xe2\x11\xe9\x7b\xd1\xcf\x32\x0a\x7b\x50\x90\xd2\x62\x75\x89\x3d\x3a\xc5\x80\x94\x7b\x74\x09\xec\x3a\x7d\x44\x12\x68\x79\xb7\x1b\xeb\xad\x33\x63\x52\xbe\x8e\x9e\xf7\xff\xc1\x28\x75\x23\x9f\xbb\x0b\x21\x5b\xbb\xe2\x0a\xda\xe1\x42\x82\x82\xa3\x39\xbc\xfe\x76\x3d\x1f\xa7\x6b\x0e\x8f\x89\x5d\x05\x3f\xb3\x0b\x23\x64\x8e\x99\xcf\x4f\x7e\x06\xb2\x32\x85\x9f\xd9\xea\x96\x70\xe7\xdf\x85\x7d\xbe\xaa\xf5\xac\xde\x44\x48\x86\xae\x6f\xcb\x7a\x29\xe2\x18\xb7\xf0\xf4\x5c\x74\xd4\x44\x61\xfc\xfe\xa4\x88\x47\xbf\x6b\x2e\x78\x0f\x74\x86\xd0\xad\x4b\x00\xd8\x99\x02\xf2\xbe\xcd\x89\x67\xe1\xe5\xf7\xa7\x18\xbb\xd8\x71\xc6\xec\x42\x6c\x6c\x1c\x03\xdd\x3a\x76\x59\x47\x40\xf2\x9a\x83\x39\xde\xec\x2a\x5b\x31\xc7\xd1\x63\xc2\x97\xf0\x07\x03\xd6\x81\x0f\x0e\x0c\x2c\x4c\x22\x72\xe1\xea\xe6\xfa\xa4\x50\x85\x77\xac\xd7\x2e\x61\x48\x87\x30\xc4\xc2\x86\x61\x75\x1b\x9a\xa5\x90\x7a\x20\xc7\xca\xae\x81\x88\xef\xc2\x42\xd7\x31\x02\x63\x70\x1c\x11\xec\x27\x45\xd2\xb9\x5d\xd5\x6c\x44\xa8\x90\x06\xe9\x72\x47\x2e\x24\x14\x22\x1c\x41\x41\x2b\x5f\x7d\xd1\x17\xbb\xb8\xb1\x75\x92\xd3\x5d\xe8\x78\x6b\x25\x7e\x9e\x7f\xe2\xfe\x62\xe8\xe5\xd2\x88\xad\xe0\xc8\x72\xc5\xca\x7b\x70\x91\xdc\x85\x50\xc9\x04\x1f\xd4\xfd\xe2\x5b\xa1\x03\xbc\x2d\xe2\x2d\xed\x2a\x76\x72\x87\xf4\x23\x83\x16\x76\x04\x81\x41\x61\xee\xbd\x19\xf2\x8c\x5d\x7b\x08\xef\x33\xdc\x21\x0e\xea\x30\x66\x40\xe1\xf3\xfb\x93\x43\x35\xbe\x3a\xa2\xc0\xa0\x10\x52\x22\x68\xcf\xba\x67\xf5\x25\x2e\xf4\x3d\xb2\x71\xec\x1a\x87\xd1\x73\x2c\xea\x8a\x05\xe3\x19\xa7\x5e\x87\xe8\x25\x71\x7d\x79\x01\xf3\xb5\x0b\xc1\x4e\x5d\x59\xf8\x47\xf8\x77\x2f\x47\x7e\x67\xc1\x2d\xb0\x33\xce\xcc\x1d\x2e\x69\xbb\xca\x39\xf5\x70\x41\xce\x09\x64\xc2\x0b\x88\xd0\x2e\xec\x95\xd1\xd0\x95\x32\xd5\x08\xce\x93\x44\xb4\x0b\xdd\x17\xb8\xb0\x69\x58\xdd\x29\x5c\xe8\xe0\x35\x91\xa0\x71\xd7\xf4\xc2\x70\xc9\x4b\xe1\x6a\xb0\xba\x37\xe7\xc7\x47\x62\x26\x78\xed\x46\xcd\x05\xc3\xb4\x23\x03\x1e\xfc\x78\xb8\xf0\x3a\xfb\x47\x61\xe7\x2e\x84\xad\x0e\xf6\x96\x38\xcf\x0e\xce\x33\x81\xc3\xec\xe2\x30\x3b\x38\x4c\x23\x85\xf4\xae\x9e\x84\x45\x65\xd2\x00\xf2\x26\xb2\x0b\xe9\xf7\xa7\x44\x0c\xb4\xd5\xdd\xb9\x85\x1c\x7e\x10\x14\x89\x77\xf7\xc9\xc7\x23\xd8\x00\xf2\xa1\x45\x6d\x0a\xde\x2b\x25\x83\x5a\x3b\xf5\xc0\xdd\x19\x67\x00\x84\xcb\x87\x73\x2e\xb1\x11\xaf\x88\x69\xb0\xba\x4f\x9c\x8f\xbb\xb0\xf6\x07\x71\x75\x4e\xad\xab\x30\xef\xc9\x91\x0f\x7d\x75\x49\xb2\x76\x21\x88\x25\x3f\xe8\x63\x4b\x30\x82\xb8\x5d\x18\xf2\x8f\x86\x3c\xce\x99\x5e\xd9\x73\xaa\x7c\x3b\xcc\x26\x53\xee\x6c\x45\xdf\x19\x1a\x5b\x8b\x48\xec\xab\xfb\x57\x1f\x14\xda\x54\x84\xf8\x8c\xda\x14\xfc\x09\x18\x3d\xfc\xaa\xed\x20\x09\x5e\x38\x2a\x4b\xdf\x13\x02\x9d\x62\x20\xc4\xc8\xd5\x84\x42\x0e\x42\x91\xd1\xf1\xa5\xb1\x5d\xa0\xac\x7c\xfc\xd1\x2e\x44\x56\xcb\x14\xd6\x30\x51\x5d\xc2\xc1\x35\x72\xfe\x29\x2e\xea\x4c\xd5\x9f\x35\x00\xcf\xe0\x7a\x0e\xf3\x79\xe4\xc0\x58\x7d\xe8\xa0\x1d\x38\x68\x23\xed\xc2\xae\x81\xc7\xec\x08\x0d\xdf\x2f\x0c\xd7\xa0\x48\x67\x17\xea\x1e\x00\x4c\x34\x92\xbc\xa3\xd0\xf6\x00\x84\x2c\xaa\x8f\x44\x5a\x36\x22\x5a\x54\x8e\x28\x07\xab\x8f\xcc\x09\x1d\x39\xce\xea\x0b\xd2\x98\x0e\xf9\x60\x14\x82\xb2\xde\x09\xa3\x8e\x78\x82\x28\xc4\xde\x4f\xc1\x63\x76\x44\x8b\x47\xe1\x13\x6b\xf7\xc6\x6b\x0b\x29\xeb\x28\x38\x8b\xc0\x96\x77\x24\x42\x47\x21\x36\xba\x81\x42\x23\x30\x3b\x0a\x48\xdb\x92\x00\xf3\x4c\x87\xd9\xa8\xdd\x58\x8e\x08\x6c\x8e\xc2\x0c\xc2\x15\xdc\x7a\x47\xb0\x72\x14\xf6\x6c\x93\x40\x23\xd6\x37\x0a\x61\x15\x6b\xe8\x63\xd7\xf8\xf6\xa0\x67\x8e\xc3\x78\xf4\xc1\x4f\x8a\x7b\x62\x87\x64\xb9\x23\xc8\x36\x0a\x7b\x39\x42\xa7\xd9\x87\x71\xaa\x87\x85\x44\xaa\xf0\x3b\x79\x2d\xe9\xb8\x96\x94\xb0\xa3\xdb\x35\x0d\x63\x24\x1b\xac\xe1\x8a\x15\xb5\x2e\x38\x46\xa5\x78\xff\x0b\x9c\xd3\x70\x1e\xe0\x23\xe4\x5c\x77\xb2\x9b\x2f\x27\x8d\x65\x24\xe8\x9c\xb0\xa3\x06\x55\x11\x1d\xc1\x9c\x7b\xad\x84\x35\xe7\x63\xcf\x79\xee\x1c\xb5\xa1\x71\x80\xfe\xee\xba\x38\x6c\x53\x53\x85\xa4\x20\x77\xe4\x68\x8a\x6a\x12\x8e\x10\x24\xe0\xbf\xc6\xb4\x22\xbc\xc6\x37\x03\xfe\xa8\x99\x10\x9e\xf7\x70\x74\x5c\x1d\x97\x12\x14\xfa\xa6\x91\xec\xe3\xa3\x4f\x0a\xd9\xea\x7d\x43\x2a\xd5\xe7\x85\x8b\xf2\x2e\xec\x6b\x5e\xc5\x3b\xe7\x8d\xfb\xe9\x2e\x78\x34\x0e\x98\x6a\xe2\x8e\x40\x44\xfd\x06\xdb\x20\x36\xbf\x83\xcd\x2f\x37\x78\xbb\x99\x79\xde\x31\x5c\xd0\x1e\x5f\xe2\x55\xf8\xbe\x40\x19\x8e\xc1\x99\x71\x55\xee\x33\x62\x7f\xd4\x86\x83\x1d\x77\x04\x14\x9e\xbd\x6e\xb0\x8b\xe1\xf8\x8d\x42\xbc\x33\xee\x95\x7d\xea\x40\x99\x50\xf9\x5e\x61\x06\xbc\x3a\xb4\xb4\x51\xe0\xbe\xc4\x64\x4c\xe7\x49\x33\x23\xde\x43\xcd\x60\xf9\xa6\x73\xdf\xcc\x88\xbb\x57\x2b\x76\xeb\xa4\x8c\xa3\xd3\x56\x28\x47\xb6\xc3\xd5\xe7\x47\x7d\x0c\xf9\xbb\x19\x36\xf1\xfc\x6a\xb8\x10\xd5\xa1\x40\x1f\xda\xe7\x97\xe7\xef\x0c\x7e\xcb\x0c\xac\xb3\xec\x50\x3a\xec\x50\xbc\x98\x60\x17\xbc\x79\xe1\xce\x51\xfc\x92\x72\xd0\xb8\xe4\xce\xe0\x1c\x27\xd5\xd5\xbb\xb0\x2f\x40\x37\x1f\x5f\xe4\x04\x11\x47\xc6\x8c\xe3\xf2\x90\x12\xcc\x67\x0f\x9c\x45\x08\x9f\x5d\xd3\xd4\x85\x25\x85\xdd\x1c\xad\x47\xa3\x15\xd6\xdf\x99\x1c\xc2\x7c\xc8\x7b\xcd\x67\xbf\xdb\xc9\xef\xe1\x36\x84\xc2\xfd\xfb\x53\x22\x5c\x71\xd4\x92\xe0\xe0\x9a\xee\xcc\xc7\xa7\x1e\xdf\x4b\x14\xd9\xfe\xa3\xd6\x05\xc7\xde\x86\xc4\x6e\x57\xbf\xc2\x43\xe6\x09\x3d\xb1\xc9\xcc\xc2\x60\x66\xd1\x21\x82\x37\xe4\xa6\x42\x21\xbc\xa6\x70\x45\x35\x23\x3b\xb9\x27\xe1\x8a\x71\x69\x80\x71\xa6\xee\xc2\x26\x34\xb8\x23\x19\x3c\x68\x50\x88\xe5\x15\x87\x84\x19\x4f\x83\x5d\x28\xbf\x3f\x09\xf6\x3f\x86\xf0\x92\x28\x84\x35\x30\x34\x75\x06\x0b\x3d\x14\x62\x46\x83\xf9\x34\x6b\xce\xc6\x43\x7a\x57\xa0\x4c\x33\x23\x99\xdd\x85\x84\x01\xc0\xe3\x1d\xc3\xbb\x0b\x41\xa5\x22\xbf\xf0\xae\x62\xc0\x0c\x2a\x63\x8b\x18\xec\xcb\xa0\xdf\x45\x61\xfe\xfe\xa4\x30\x6d\xdc\x35\xdc\xee\x76\xe1\x1b\x4f\xa3\xeb\x8e\x3d\xba\x0b\x71\x13\xc8\x49\xb8\x09\xf7\x3d\x49\x37\x5a\xf1\x21\x38\x2e\xcc\x29\x52\x4b\x2c\xb3\xa1\x81\x09\xd3\x86\x06\xc9\x95\xd9\x57\x93\x11\x6b\x37\x41\x43\x66\x70\x42\x41\x21\xcc\xa8\x7a\xf0\xd9\xe6\x05\x74\x7a\x17\x62\x60\x82\xd4\x99\x57\xbe\xd4\xe3\x94\x2b\x50\xbd\xee\xda\x43\x18\x16\xf8\x61\xcf\xbb\x0c\x8a\x4e\x14\xc2\x84\x2d\x18\x56\x73\x9b\x84\x11\x46\x39\x47\x70\xc3\xb5\x3f\xb4\x01\x87\xbb\x6d\x8e\xf0\x9d\xbb\x0a\xa9\xdb\x2e\xac\xdf\x1f\xb8\xf6\x2e\xf3\xc1\x4f\x82\xe3\xb9\x81\x03\x37\x69\x3c\x0d\x1a\x4f\x8b\x2c\x93\xcb\xa0\xe7\x44\x21\xff\xfe\xe4\xf0\x96\xdf\xb5\xc1\x77\x42\x2f\x71\x25\x0c\xaf\x7f\x21\x19\xd9\x85\xe0\x36\xc2\x1d\x64\x99\x2f\x6c\xd3\x5d\x08\x0a\x9b\x3b\xfa\x48\x3b\x8c\x5d\xe8\xb8\xb2\xc7\xec\x0d\x1a\x1b\x19\x58\xa3\x3b\x71\xb6\x07\xcd\x8d\x76\x61\x0f\x0d\x2c\xbb\x6c\x50\x20\xb1\x0b\x61\x11\xd2\x0b\xe1\x2a\x18\xb1\xf6\x82\x85\xb4\x71\x4f\xe1\xa1\x80\x06\x01\xb7\x91\xa0\xc8\x31\xe4\xdf\x49\x11\x22\x6f\xd7\x38\xee\x03\x59\x2c\x4b\xc6\x88\x21\x77\x3c\x0a\xe9\xf7\x27\x83\x11\x35\x18\x34\xa3\xb0\x42\x39\x99\x01\x4f\x3d\x1d\xaa\xc2\x2b\x62\xcb\x2c\x1b\x05\x22\x5d\x03\x23\x55\x22\x62\x5e\xd4\xba\x60\x0f\xa3\x81\x0b\x9f\x44\xab\x90\x5d\x88\xeb\x76\xc6\xde\x1b\x55\x03\x86\x38\x72\x29\x61\x8f\x8d\x0a\xc9\xc2\x2e\x84\xf4\xba\xb2\xf3\xda\xd9\x8c\x7d\x93\x23\x3e\xe9\xb2\xd1\xf5\x7c\x48\x22\xcc\xb1\x96\x10\x2e\x12\x85\x60\xa3\x23\x90\xfc\xb2\x41\x9d\xde\x2e\xec\xdb\x12\xcc\x6b\xe8\x3c\x8e\xc2\xe6\x5c\x9d\xb3\xe7\xfa\xa8\xd8\x9c\xf0\x6e\xdc\x35\x35\xee\x61\x47\x63\xd8\x64\x63\x6a\xae\x11\xc7\xec\x32\xac\x77\x04\xb4\x41\x61\xe3\x77\xb9\xfe\x82\xf1\x92\x8d\x8f\xa6\x2b\x96\x74\x81\x5a\x9b\x2e\xc2\x28\x04\x5f\xc1\xb5\x40\x8b\xc8\x5d\x98\x71\x80\x76\x7c\xd9\x52\xa7\x16\xec\xdd\x0a\x16\xf8\x58\x24\x37\x74\xf5\xcd\x35\xf4\xc9\x26\x6d\xad\x41\x5b\x6b\x11\x9b\x6e\xd7\x48\x11\xa0\x9f\xbd\xaf\x84\xde\xcc\xc4\x81\x9b\xc1\xe4\x7b\xcb\x84\x49\x59\x67\xc2\x85\x1c\x12\x47\x9b\xb4\x62\xdb\x85\xbd\x62\x23\xca\xc4\x32\x24\x53\x45\x61\x5f\x05\x22\xff\xdb\xae\xa9\x95\x70\x48\x2d\xd0\xc9\xdb\xcc\x38\xe6\x76\x21\x56\x60\xc8\x55\x77\xed\x23\xf8\x1b\x30\x9e\xa6\x75\x93\x31\x8b\x7d\xaa\xd8\x82\xb3\xb8\xf0\x3d\xc9\x08\xd2\xb8\x6c\x8a\xf4\xcd\x20\x7d\x8e\x4b\xa9\x4d\xf2\xef\x86\xc0\x39\x1e\x3e\x2e\xbb\x86\xcb\xc4\x2e\x94\x0d\xe3\x44\x98\x46\x6a\x33\x91\x00\xe6\x82\x1c\xc0\x24\x42\x35\x88\x50\xef\x3b\x7c\x89\x96\x41\xd9\x8b\x42\x08\x0e\x35\xba\xc3\xf9\xd6\xe0\x7f\xef\x1c\xb1\x2e\x96\x4d\x0a\x9f\x76\x61\x33\x11\x90\x5a\xd3\x93\x15\x85\x58\xae\x20\xcf\xf3\xa3\xd1\xfd\xc0\xa0\xa0\xe1\xa5\xb4\x3f\x33\xd8\x9f\xdd\x17\x29\xe8\xfc\xa8\x33\x61\x1d\x7d\x5f\x06\xe2\x34\xbf\x1a\x48\x44\x4a\x4a\xe1\x5a\x18\xd5\x87\x78\xd8\xcb\xa6\x70\x06\x8c\xaa\x9e\xa7\xc1\x2c\x76\xf2\xfc\x6a\x70\x20\x0a\xeb\x9d\xef\xe5\x0d\xd7\x60\xd6\x7a\xd7\x88\xe5\xb5\xdc\x48\xe5\x76\x21\x85\xf9\xbd\x13\x1e\x82\xe7\xde\x07\xce\xa7\xb1\x65\x77\x21\x4c\xba\x63\x29\xb9\x65\x30\x0c\x8e\x5c\xf5\x1d\x1a\x58\xb7\x8c\x9b\x04\x1d\x67\x2d\xe2\xa2\xec\x1a\x36\xb8\xc3\xc5\xcb\x60\xfc\xee\x30\x99\x44\x01\x86\x51\x86\xc7\x0b\xc8\xf3\x2e\x84\x91\x51\x64\xd5\x8e\xea\x10\x1e\xb4\x2c\xc2\x5a\x2e\x47\xb2\x4a\x14\x62\x4f\xe2\xfe\xe2\xc8\x59\x89\xc2\x13\x46\x6e\x09\xf0\x10\x3c\x62\xed\x75\x0c\x40\xd3\xb8\x20\xff\xd6\x65\x7e\x13\xaf\xc2\x1b\x7a\x69\xc0\x31\xdf\xbb\x70\xa3\x97\xe8\x4d\xd3\x18\x44\x54\xfd\x1a\xd1\x74\x76\x4d\x63\x00\x8d\x66\x8a\x68\xe8\xcb\x91\x47\x1f\x85\x19\x6a\x68\xb4\x6e\xce\x6f\x8a\x54\x4b\xb9\x70\xdc\x27\x0e\xba\x5d\x28\xe8\x24\x5a\x99\x53\x38\xe2\x22\x69\xe4\xbf\xea\x24\x94\x7d\xb7\x73\x11\x3c\x20\x4b\xbb\xf0\xdd\xe7\x68\xdc\x8f\xe8\xb1\x8b\x82\xc3\x92\x53\xf8\x10\x3e\xb1\xa1\x3a\x70\x50\x94\x5d\xd8\x6b\xc9\x82\xfc\xbb\x93\xba\x39\xa3\x61\xe7\x48\x04\xbd\xab\xe0\x31\x76\x61\xfd\xfe\x54\x88\x3f\xdc\x79\x59\xdb\x85\xe0\x0f\xc3\xaf\x6e\xb9\x37\x35\xd3\xe0\x06\x13\xa6\x7d\xee\xbc\xe4\xef\xc2\x08\x2b\x9a\x0b\x78\x57\x27\xe3\x46\x55\xe1\x4c\xe1\xde\x71\xc0\xee\x42\x86\xc6\xa7\x13\xd7\xe3\x38\x19\x23\x5e\xe5\x72\x77\x70\xce\xbb\x10\x36\xa0\x46\x78\xb0\x19\x0f\xbf\x1d\xdc\x3f\xdd\x1d\x0c\x8c\x23\x49\x7a\x8e\x68\x31\xcb\x7d\x70\xd1\x40\x58\x97\x8b\x0b\x36\xc1\x9b\x1a\x5e\x05\x5d\x1c\xea\x62\x68\x79\x3c\xd2\xda\x45\xad\x08\xde\x6b\x20\xd2\xbb\xec\x1a\xc8\xd2\x2e\xd8\x3e\xc8\x1c\x83\x4b\xbb\xda\x5d\xe8\xf1\x4a\x27\xec\x82\x47\x34\x82\xa7\x3f\x7a\x3a\xa8\x59\xe9\x17\x06\xe5\xc3\xc5\xeb\x08\xc7\x91\x22\x5f\x7b\x54\x97\xf0\x90\x7f\x39\x36\xbc\x7f\x26\x3f\x28\x5c\x29\x2a\x74\x89\xee\x1f\x4d\x74\xdc\x37\x2b\x8c\x7a\xdc\xbf\xce\xd6\x23\x77\x4f\x85\xaa\xce\x9d\x26\x88\x0e\x65\xb3\x83\x51\x75\x7f\xb8\xad\x1d\x01\x04\x32\xae\xbc\xee\x8f\xb3\x71\x44\x0d\x4d\xf0\xe6\x70\x7f\xf4\x52\xde\xb3\xa0\xad\xf3\x71\x81\x47\xd9\x85\x1c\x53\xe4\x84\xab\xe0\x30\x37\x0c\x06\xcb\x21\x99\x43\x61\xb3\x6f\x70\xe9\x70\x31\xa4\x0e\x86\x34\x3b\xc6\x65\x5c\x24\x8f\x23\xdc\xa2\x0a\x2c\x26\x7c\xdc\x7a\x1a\x51\x4a\x13\x5c\x9f\x7c\xdc\x5c\x44\x03\x49\xd5\x53\x84\x0d\xdb\x55\x6e\xdf\x11\x1e\x45\x77\x6e\x98\x8e\x91\x06\x3b\x83\x48\xa5\x57\x66\xdf\xc9\x7a\x3a\x58\xcf\x3b\xe1\x46\xe1\x83\x56\xea\xbb\x10\x46\x91\x15\x23\xc0\xb3\xd9\x99\x8c\xf1\x82\xc5\x9c\x8f\xc2\xd9\x1e\x71\x6f\xb9\x6f\xef\xf9\xcf\x39\x29\x1f\x14\x74\x38\xb2\x2e\x56\x9c\xa2\x3e\xda\xe0\x5b\x10\x31\x38\x45\xf4\x86\xe5\xa3\x3b\x3f\x0e\x1e\x75\x97\x37\xf4\xaa\xab\xb3\x08\x8b\x79\x3b\x16\xcf\x70\x3d\x8f\xa4\x23\x39\x75\xe1\x43\xf8\x3e\xa1\x9c\x63\xe4\x7a\x2d\x9c\x31\x73\x38\x9c\x2f\x87\x39\x40\x14\x60\x09\xca\x29\x98\x6a\x3d\xd8\xcb\xea\x37\x3a\x4f\xb3\x00\x87\x59\x40\xe9\xd8\xc7\xe3\xc3\x35\x48\x3f\xf3\x14\x81\x09\x76\x55\xf3\x8e\x30\x6b\xf9\x06\xc9\x1a\x1f\x67\x33\x88\x17\x90\x33\xbf\xe9\xa3\x21\x83\xdd\xe3\x05\x81\x84\x8f\xaf\x26\x32\xdc\x8b\x0a\x8c\x17\x7c\x7c\x07\xd7\x0f\x72\x7d\x5f\xb8\xb8\x38\x42\xad\xa0\x00\x9a\x15\x92\x17\x87\xfe\x1c\x05\x18\x2f\x04\xdb\xee\xf3\xe6\xce\x82\x98\xac\x3a\x0e\xcc\xc9\xbb\xc8\x2e\x24\x58\xa8\xc7\xd7\xce\xc2\x41\x60\xd0\xc4\x04\x55\xa9\xcf\xca\x1d\xc4\xec\x22\x09\x1e\x3f\x8e\x10\xd5\x28\xc4\xe8\x74\x3e\xdf\x48\x42\x27\xb2\x4e\x26\xe8\xb8\x7c\x6a\x85\x30\xa6\x74\x82\x1d\x80\x4f\x51\x74\x66\xba\xcf\x50\xed\xfb\xec\xc2\xc3\x94\xbc\x72\xd3\x4d\xda\x92\xef\x02\xe4\x09\x17\xba\xef\x60\x07\x77\xe1\x1b\x8f\xa3\x37\xd4\x97\x38\x84\x62\xf7\x5d\xc1\xf1\x20\x3c\x32\x0a\x0d\xd6\x98\x99\xf8\x47\xf8\x6e\x26\x83\x1a\x4f\xda\xef\xec\x42\x78\x9e\x40\xee\xee\x93\xa6\x3a\x0e\x06\xf0\xbe\xaf\x0b\xcf\x7f\xd5\xcb\x2f\xcd\xeb\x32\x9e\x27\x1f\xe7\x70\x03\xbb\x53\xc7\x21\x20\x3e\xce\xc1\xc7\x55\x88\xe6\x76\x6d\x09\x0e\x9d\x6e\x01\x01\x87\x5b\x17\x0a\x0d\xf6\x27\x68\x66\x91\x64\xcc\x85\x80\x88\x50\x77\x2d\xa3\x5f\xe3\xa2\x4b\x4e\xcb\xc1\xb7\x2f\xa3\x69\xc6\x2e\x54\x84\x16\xed\xc4\x3b\x71\xe4\x27\x0d\x2f\xd4\xb5\xec\x56\x3b\xb8\x53\xb7\x88\x8e\x17\xd5\x2e\x3c\x02\x0e\x40\x5d\xb3\xa0\xd3\x8f\x02\x94\x72\xb8\x30\xed\xea\x87\x38\xbc\x79\x61\x9d\xb2\x8c\x4a\x8f\x05\x79\xd6\xdd\x0a\xfb\x49\x5f\xcb\x45\x87\xa0\x16\x69\x6b\xd7\x92\x43\xd0\x62\x9a\x95\x06\x0d\xcc\xae\x36\xe1\x78\xbe\xf1\x79\xac\xfd\x45\xc7\x9f\x16\x11\x5c\xd7\x92\xe3\xcf\x2e\x20\x59\x3c\xfb\x93\x8d\xfd\xcc\xf0\x6c\x8d\x38\x12\x51\x7d\x88\xa3\x9f\x70\xe5\x59\x96\xd5\xcf\x3c\x99\xdd\x94\xcf\x83\x1d\xdf\x85\x07\xe1\xb1\xf1\x5d\x45\xef\xc5\x7d\xaa\xe1\x9e\xb5\x64\x6f\xb0\xe0\x07\xb2\x71\xb4\x5f\x06\xdf\xcb\x2c\xb9\x91\xab\x39\xaa\x55\x38\x12\x8f\x5e\xf8\xae\xaa\xf6\xb1\x77\x1b\xbc\x3d\x17\x78\x65\x14\x98\xc4\xa2\x13\x1f\xc2\x27\x22\xc2\xdd\xc4\xbf\xc4\x11\x5d\xa6\x73\x9c\x2b\x28\xde\x62\x8c\xe9\xd6\xf9\xbd\xbc\xf8\x2d\xb0\xdb\x4c\x67\xbb\xab\x53\xfd\x61\x3f\x2b\xfa\xdf\xd4\xcf\xc6\xac\x72\x9c\x97\x06\xde\x68\x31\x0a\x43\x8b\x90\xe0\x51\x2d\xc2\x23\xbc\x10\xec\xb8\x96\xfc\x88\x17\x53\xc7\x23\xeb\x57\x54\xf9\xbd\xf0\x24\x6e\x76\xe1\x7b\xdb\xfc\x08\x47\x74\xb5\x84\xf6\xbb\xfa\x83\x64\xb0\xcd\x72\x26\xde\x85\x23\xf7\x68\xd6\xf3\x1c\x37\x26\x7e\x85\xb9\xdd\x82\xcc\x33\x0a\x6c\xbf\x61\x1f\x51\x72\xb2\x20\xe5\xbc\x9b\x39\xfa\x63\x63\x09\x47\x5e\xe0\x82\xf1\x37\xad\x5b\x63\xbe\xe0\x82\x76\x5c\xfd\x84\xfc\xb3\x39\xf7\xa3\x3b\xd7\x8f\x33\x7d\x81\xf1\x79\xcd\x8b\xb3\x1d\xc7\xba\x1a\x6a\x67\x30\x6b\x5b\x4a\xc4\xf9\xbd\xb8\x33\xf7\x8b\xe3\x33\xb4\x4f\x07\x23\x4b\xd6\x4e\x9c\xeb\x64\x30\xcf\x6c\xc3\x3a\xa7\x7c\x71\x31\xe5\x7c\x87\x8f\xcd\xbe\xbb\xf3\xbd\x93\x5e\x62\x86\x71\x9e\x5a\x27\x93\x69\xf6\xec\x26\x9e\x84\x23\x68\x6c\x06\x4e\xf1\xce\x32\x90\xe1\x7e\x73\x7c\x68\xbf\xb7\x0b\x15\x71\xcb\x32\x71\x7e\x17\x42\x19\x17\x68\x1c\x77\xf5\x23\x3c\xe2\xcf\x45\x10\xb7\xa8\x2e\xe1\x48\x7e\xd1\xb0\x6e\xbf\x7a\x2f\xa2\xd1\x15\xf8\x7e\x2c\x24\xb0\x47\x21\x1c\x2e\xa1\x0d\xd8\xd5\xaf\x70\x24\xf7\xfa\x2b\xae\x77\x4b\x17\xb9\x5d\x60\x0a\x83\x44\xbc\x09\xc7\x67\x90\x6c\x91\xd5\x5e\xcc\x9b\x5f\x6e\x6e\x83\xaf\xa6\xed\xcb\xe4\x3e\xd7\x4d\x5c\xdd\x45\xf0\x17\x18\xd4\x2c\x78\x05\xa1\x30\x4f\xb4\xd8\xa8\xea\x33\x10\x2b\x07\xe2\xcc\x65\x4b\xd3\xb9\x10\x34\x25\x71\x58\x97\x57\xe1\x5f\xc4\x84\x14\x4e\x72\xb6\x10\xa5\x3b\x71\x19\x2d\x91\xef\x35\x19\xca\x01\xd3\xf9\xa8\xfd\xc7\x98\xed\xe0\x22\x6e\xc2\xa1\x35\xe1\x76\xa2\xe2\x7e\x19\xc2\x33\x95\x4c\xb2\x48\xc5\xfd\xa2\xfb\x3f\xd2\xb0\x44\x95\xdf\xf5\x0c\xa6\x67\xc1\x34\x3f\x1a\x9f\x87\x21\x5f\x79\x4c\x3e\x1a\x07\x46\xb0\xc3\xfd\x7d\x29\x8c\xc0\x52\x52\x29\x58\x1c\xed\x6a\x11\x4e\x61\xb2\x13\x77\xe2\x8a\xdd\x59\x80\xf3\x18\xf6\x30\x8a\xbc\x4b\xc6\xfc\x3a\xdd\x7f\x96\xa2\x6e\x65\x1c\x03\xae\xe3\xd9\x6f\x44\xe4\x89\x00\xd4\x51\x9d\xc4\x19\x33\x26\x11\x27\x79\xf2\x9b\x41\x66\xb1\x6d\xfc\xd6\x7b\x6f\x1a\x16\xe2\x18\xf6\x1b\x1c\xe8\xf2\x7b\x32\x75\x04\xbe\xeb\x9e\x6a\x9f\x91\xfc\x1a\xfa\xa9\xe3\x99\x21\xf7\x4b\x01\x59\x47\xc0\x7d\x14\xd6\x89\x94\xb9\xab\xae\xe7\x11\x0e\x07\x06\x18\xbb\x9a\x88\xa3\x7d\x58\xe0\x2f\xd7\xb1\xed\x30\x6f\x28\xd0\x2d\x2d\x38\xa2\x45\xc1\xfd\x84\x3a\x8b\x2a\xfb\x99\xd9\x0e\xd8\x23\xd7\x31\xec\xcc\xbf\x50\xb1\x7e\xbc\x70\xfd\x78\xc1\x7c\xc1\xa9\x60\x57\x39\x3e\xc8\x0e\x53\x78\xfc\x3b\x65\x5a\x8b\xb9\x3f\x11\x34\x68\x2d\xd7\x31\xec\x95\x71\x55\xb1\xce\xbd\xaa\x9f\x8c\x0a\x17\xd9\xb7\xa2\xfa\x10\x67\x3b\x1c\x37\x1d\x93\x08\x18\x71\x17\x1e\xcf\x4e\x43\x89\xe5\x0c\x8e\x8b\x0b\xcc\xae\x0a\x67\xaa\x2e\xb6\xdf\x70\xe3\x5c\x4c\x03\x56\x78\xdc\xba\x8e\x3d\xef\x4c\xcd\x69\x98\x77\x4a\x51\x16\xa4\x28\x50\x90\xef\x0a\x7b\xdf\x19\x5a\x83\xb3\x42\xc3\xfb\xe5\x50\x17\x14\x38\xfb\xec\x6a\x15\x1e\x6f\x35\x8e\x8e\xe9\xad\x4c\x88\x60\x60\x8e\xdc\xc8\x04\x39\x0c\x1d\x4b\xe4\xbe\x89\x2a\xdf\x6b\x6c\x07\x87\x8c\xeb\x30\xa4\x81\x15\x55\xb3\x4b\x32\x9d\x10\xa5\xfc\x2a\x25\x43\x54\x85\x33\x76\x1d\x77\xaf\x0e\x43\x47\x6c\xd9\xe2\xdc\xa5\xd4\x12\xee\x4b\xe5\x9b\x40\x35\xaa\x4d\x78\x58\x77\x5f\xa0\x9e\x3e\xb4\x1a\x06\x63\x64\x5e\x6c\x5f\xe3\x83\xc3\xb0\x5e\x5c\x55\x3a\x0c\x1d\xe2\x3d\x44\x69\x8f\x2a\x57\xdb\x44\x92\xa4\x2b\x63\x57\x4c\x52\x67\x78\x0f\xdc\xf5\xe2\x6e\xf9\xa8\x1d\xe4\x73\xa9\x91\x2e\x34\xaa\x7c\x1e\x87\x58\xbd\x39\xfe\x5f\x3d\xff\x45\xa4\xc0\x9b\xab\xf3\xab\xd5\x73\xd2\x59\xa1\xff\x94\xd8\xec\xc2\xf8\x55\xfe\xf9\xa8\x7e\x84\x3f\x27\x25\xc9\x5a\xae\x53\xc1\x97\x70\x8c\xe7\xc3\xc3\xd3\x1f\x44\xfa\x87\x06\x74\xf9\x23\x2a\xf9\x28\xf6\x2c\x56\xe7\xc3\x43\xd8\x41\x6d\x6b\x06\xb5\x1a\xa2\xb6\xe3\x52\xac\xe8\x46\x7c\x12\x47\x4a\x90\x8c\xef\x1a\x17\x4f\xc1\x71\xb1\x1d\x9c\xa6\x43\xd4\x73\xc0\xb2\xb8\x42\xa7\xb7\xab\x1f\xe2\x78\xbe\x60\x1d\x0e\x51\xb7\x81\xa0\xf7\xb5\x74\xe1\x95\x38\x73\x14\x85\x00\x74\x21\x1c\x52\x14\xd8\x0e\xe6\x65\x88\x8a\x0d\x50\x25\xe4\x7c\x5f\x6b\x88\x2a\x8d\xc2\xf4\x1b\x38\xad\xe5\xa1\xb9\xe0\xa1\x79\x5b\x04\xdc\x8e\xaa\x0b\x47\xe4\x06\x5c\x1a\x64\x74\xb5\x46\x65\xc8\x6a\xec\x97\x41\x43\xf6\xc5\x94\x18\x15\x06\x89\x6b\x88\x79\x87\x59\x16\x13\xdb\x47\x75\x0a\x8f\xa0\x96\x64\xbe\x06\x45\xea\x6b\x30\x53\x02\x7c\xe0\x76\xb5\x0a\x87\x21\x2d\xa8\xf0\xa0\xac\x7d\x17\xca\x89\xee\x1c\xd5\x25\xfc\x39\x19\x28\x76\x95\xa7\xc2\x40\x6c\x36\xbb\xf9\x5d\x8d\x54\x78\x34\x65\xac\xa8\xc4\x39\x0e\xc8\x88\x65\x37\xa8\xde\x68\x9a\x77\x25\xc8\xfb\x2b\x02\xaf\xfd\xf4\x69\x0e\xb1\x5e\xf5\x7a\xf2\xba\x83\x79\x02\x22\xb5\xc0\xae\x4e\x7d\x1e\x87\x83\xcb\xab\x69\x38\xe0\x48\x6f\xb0\x3f\x5a\x32\x5b\xdb\x85\x2f\x70\xb4\xdf\xb5\x8c\x10\xef\xac\x67\x4e\x9b\xee\x20\xcc\xd3\x6b\xb0\xf3\x5e\xa3\x6b\x98\x40\xbc\x2d\xc2\x57\x46\xd5\x84\x2f\xe0\x6c\x7f\xe8\x79\xc4\x04\xe4\x76\x1d\x7d\xe8\xbd\x88\xd2\xcc\xed\x3a\xba\xbe\x17\x64\xdd\x12\x97\x9d\xc8\x3a\xc3\x9b\x5b\xe2\xf4\xd3\x7c\x7d\x29\x5b\x4a\x24\x7d\x5c\x6b\x88\xdc\x0f\x78\xfb\x59\xc2\x5d\x69\x30\x1c\xc0\x2e\x20\x43\x4b\xe9\xc4\x5d\xf8\x03\x1c\xfd\x31\x32\x95\x8c\xc4\x65\x89\xf3\x62\x64\xe2\x06\xec\xe0\x2d\x71\xdc\x68\x96\xbb\x0b\xe8\x7f\xe3\xf3\xfa\x5e\x63\x66\x18\x90\xf5\x61\x9a\x77\x9b\xc4\x31\x9e\x36\x0f\x0e\x73\x19\x63\x7f\x48\xfe\x06\x8e\x25\x8b\xe4\x65\x6b\x0d\x7a\x20\xee\x02\xde\x0b\x66\x0d\xda\x71\x14\x3e\xc0\x8d\xf8\x12\x1e\xed\x44\x34\xf4\x5d\xd5\x72\x77\x64\x5c\x23\xd3\x3a\x18\xec\x60\xc1\xea\x70\xe3\x18\x37\xd7\xf6\x76\x44\xfd\xcb\x89\xcf\x43\x91\xb6\x0b\x68\x9f\xe3\xaf\x63\x6f\x30\x93\x13\x99\xd9\xa1\x3b\xe0\x60\x42\xa7\x5c\x0b\xf1\x87\x38\xb6\x25\x42\x5a\xec\xaa\x0b\x47\xfb\xb8\x2b\x8d\xa1\xfe\x30\x4d\x02\x99\xdc\xa1\xe3\x70\x0c\xc4\xfc\x16\x39\x1e\xda\x47\x88\x91\x67\x99\xfb\x85\xbe\x5d\xbb\x80\x71\xe0\x7e\x19\x3c\x1e\xc6\xe0\x77\x81\x69\x95\x21\xe3\xa2\x21\xa3\x65\xee\x97\xa9\x75\xc5\x6c\x6b\x05\xc7\x8c\x64\xc4\xbb\x30\x4e\xc4\xbb\xa8\xb2\x7d\x44\x51\x37\x04\x9b\xd8\xd5\x22\x1c\xb9\xc8\xab\xf0\x2e\xfc\x83\xe7\x31\x0e\xba\xdb\x8e\x89\x20\xb2\x85\xfb\x65\x6a\x1f\x31\x68\x27\x74\x87\xbb\x3a\x84\xa3\x9d\xc2\xf6\xf5\xbd\x8c\xc8\x18\x29\xe8\xd6\x1a\x1f\xad\x37\x48\xad\xad\xf0\x38\xfc\x68\x1e\x99\x40\xa2\xb0\x9f\xba\x23\x33\x90\xbb\x51\xa6\x87\x64\x9a\x28\xc4\xbc\x94\x96\x88\x73\xde\x11\xe7\xdd\x0a\xf7\xcb\x47\xc7\xc6\x07\xf1\x74\x3b\xe7\xfd\xa3\xf9\xc5\x5d\xdb\x74\x1c\x7e\xf4\x5d\xb8\x6b\xd7\xde\x84\x2f\xe1\xe8\x27\x2e\xaf\xe3\x4b\xf6\x6b\x7c\x41\x37\x22\x8f\x40\x54\x4d\x38\xf3\x25\x75\xe2\x53\x38\x54\xe0\xa4\xcf\xba\x83\x33\x3e\xbc\x15\xee\xbb\xaf\xd6\x33\x13\x7e\x52\xe6\x30\xbe\x1a\x87\x2f\x13\x5e\x5c\xc2\xf5\x5e\x26\xa4\x05\xfb\xab\x48\x04\x8b\xe2\xfb\xda\x8d\xfd\xe1\x25\x86\x31\xe5\xad\x82\x4d\x1c\xba\x7c\x0f\x24\x5c\x41\x92\x92\xa8\xaa\x3f\x90\x81\x54\xb2\x23\x74\xca\xdc\x05\x64\x1b\x56\x3b\x1a\xb7\x2f\x73\xfb\xe2\x52\x32\xc4\x7e\x29\x09\xa9\x5d\x4e\x3c\x0b\x47\xe4\x78\xae\xe7\x45\x99\x27\xbc\x12\x37\x8e\x71\x5e\x5a\x27\xb8\xdc\x53\x46\xbd\x90\xca\x14\x05\xa4\x1f\x25\x9d\x59\x1a\x9f\xc5\x1c\x38\x64\x23\x68\xf9\xb9\x4e\x86\xd3\x8c\xf9\x5d\x3a\x8f\x16\x53\xe7\xe3\xda\x30\x96\xe8\xc6\x62\xc0\xe4\xc4\xf7\x8a\x6e\x2f\x66\x6c\xe2\x7e\x59\xda\x77\x8b\x79\x84\xf4\x5e\xb1\x2f\x8b\x11\x7f\xf5\x5e\xca\x94\x98\x60\x15\x39\x91\xa3\x5a\x84\x63\x9c\xc9\x96\x2d\x8d\x33\xd9\x59\x5e\x57\x86\x84\x13\x8c\xd5\x5f\x8d\xe7\xd7\x23\x3a\xff\x30\x63\x01\xf7\xe3\xa3\xf5\xf9\x30\x08\x26\xd9\xca\x47\xe3\xc9\x78\xfd\xc6\xfd\xf8\x68\x5d\x3d\x4a\x37\x5b\x88\x7f\x84\xa3\x1d\xb2\x3b\x8f\xd6\x1b\x0c\x58\x2b\x62\xc3\x2d\x45\xb3\x58\x8a\xf6\x6f\x8d\xed\x6b\x1d\x22\xc6\x3f\xb2\x2d\x46\x55\xfd\x1c\x4c\xd8\x76\x13\xff\x0a\x47\x9e\x05\xb2\xbf\x8f\xc6\xf3\x61\x6a\x9f\xce\xef\xd5\x78\x3e\x4c\x13\xdd\xea\x5f\x61\xbf\x1e\x91\x7b\x72\xfd\x88\x61\xb5\x90\x23\x00\x05\x7c\x06\x64\x41\x93\x11\xd0\x16\xc2\x70\x30\xbf\x5c\x54\x27\x71\xe6\x15\xc3\xf1\x30\xe9\x52\xbf\x0b\x8c\x93\x2e\xdc\x85\xe3\xb3\x71\x47\x9e\x8c\x6e\xb6\x0b\x4c\x17\xc9\xf6\xc9\x5e\xcc\x0b\xb7\x07\x28\xc9\x77\xf5\x23\x1c\x19\xe0\x12\x71\x1e\x03\xf3\x42\x50\x6f\xc7\x36\x9b\xd7\xd4\x77\x31\x63\x1c\x8e\x0d\x85\x0f\x59\x0c\x1f\x82\xe4\x57\x51\xad\xc2\x31\x6d\x10\xf5\xca\x61\x76\xc1\x61\x96\x39\x98\xa2\xba\x84\x83\x4c\x38\xdb\x71\xb5\x8f\x5c\xb4\xb0\xcf\xdb\xd5\x26\x9c\x59\x74\x2a\xf1\x8f\x70\x6c\x63\x67\xfb\x3c\x1e\x10\x93\x84\xb1\xf0\xa3\xca\xf1\xbc\x11\x48\xb6\x71\xdc\xee\xa9\xfe\x28\xb0\x70\x2c\x53\x19\xf1\x2f\x66\x13\x36\x44\x3f\xdb\xd5\x2c\x1c\xd9\x23\x71\x0b\x99\x89\xc7\xdb\x84\x0b\x5d\xf5\x9a\x88\x2f\xe1\x98\xaf\xca\xf6\xf5\xbd\x89\x61\xd7\xb3\x70\xb5\x8f\x30\xd7\x54\xe1\xcc\xc4\xed\x37\x91\x84\xd0\x60\x31\xb2\xab\x6a\x9f\xeb\x01\xb2\x4a\x59\xe7\x2d\x58\xe7\x6d\xbc\x11\x57\xfb\x1c\x1f\xb0\x59\x33\x0d\xf5\x9f\x61\xcf\x71\x3c\xcf\xa4\x71\x4b\x5c\x57\x5d\xf8\x57\x38\x62\x9e\x57\xf6\x87\xc7\xc6\x4c\xd8\x7e\xde\x89\x93\xbd\x50\xaa\x65\xe7\x3e\x4a\x3c\x4e\x66\xe2\xbc\x54\xf6\x93\xec\xec\xe4\x6d\xd5\xb9\xde\x74\x5b\x9d\x99\xc9\x18\xc1\x96\x4d\xa9\xc4\x60\x48\x78\xb7\xeb\x26\x4e\x72\x33\xa9\xfa\xba\xb8\xfe\x0b\x6f\x81\x13\x5e\x89\x0d\xce\xcb\xbb\x5a\x85\x37\xb8\xab\x26\xe2\x5d\x38\xc6\x87\xe3\x4c\x2f\xc6\x35\x0b\xe7\x11\x64\x6e\x16\x57\x3b\x8e\x9c\x01\x9d\xcf\xf3\x58\x9a\xb0\xad\x6d\x17\xae\x0d\xb3\xa8\xff\x05\xe9\x6b\x10\x5c\x66\x21\x45\x34\x0a\x15\x78\x25\xde\x84\xa3\x7d\x8e\x0f\xcd\x2a\x76\x01\xe1\xda\x39\x5f\x54\xaf\xaf\x59\x90\xb1\xe1\x22\x3d\x29\x53\xe3\xc0\x9c\x02\x1c\x4f\xa9\xf4\x26\x6e\xff\x0d\x36\xa8\xbb\xea\xc2\x11\x96\x9e\xfb\xba\x68\xbe\x90\x0d\xcd\x1a\xf7\x75\x99\xe7\xbd\x18\x7f\xa8\x5e\xa6\xa4\x02\xd0\xef\xef\xe7\x33\xf1\x2c\xbc\xe0\xf9\x44\xbc\x09\xc7\xb8\x91\xce\x48\x65\x38\x2b\xa3\x70\x83\xbd\x9e\x52\x19\xce\xca\x98\xfc\xa4\x0f\x92\x6d\x4e\x86\x5e\xbf\x48\xb7\xab\xf6\x1d\x32\x32\x1a\x55\x98\xb3\x6a\x1e\x91\x6f\xac\x5d\xea\x27\xaf\x43\xb3\x82\x2e\xf5\x8b\xfd\x11\xdd\xae\x74\x77\x26\xbd\xaa\xda\x17\xcc\x98\x71\xdf\xec\x27\x8f\x2b\xa6\xdc\x6e\x08\xd7\xb4\xa6\xa4\x17\x13\x31\xbb\x0d\x46\x52\xbb\x6a\xc2\xfd\x44\xf0\x8f\xaa\xbe\x17\xe3\x4c\xa9\xcc\x64\xe8\x93\x5d\xa8\xc8\x7f\x71\x11\xef\xc2\x0d\x78\x21\xee\xc2\x91\xea\x0a\x2a\x5b\x99\x55\xac\x89\x4c\x0a\x0d\x9e\x69\xbb\xca\xef\xa2\xca\xf3\xe6\xfe\x95\xca\x93\x39\xbd\x8d\xd2\x11\x58\x5f\xa0\x80\x76\x1a\xdb\xd7\xf8\x50\x15\x7a\x73\xdd\x4a\x26\x3c\x3b\xf3\x77\x80\x9d\x9d\x92\x09\xcf\x8e\x79\xa1\xb8\x61\x4a\xdc\x30\x3b\xfd\x70\xc1\x6e\xce\x2e\x3a\xd9\x11\x04\x3c\xf1\xbb\xba\xe8\x5b\x87\xca\x33\xf1\x1c\xec\xda\x17\x9d\x41\xd4\xc1\xae\x4d\x89\x1b\x18\x8f\xbd\x25\x8e\x83\x89\x9e\x40\x5a\xdc\x28\x3e\x98\x92\x16\x4f\x63\x7f\x9a\x70\xee\x17\xc3\x7e\x4f\xdc\x8f\xa6\xfd\x4e\x15\x6c\x22\x9d\x94\x0a\x96\xe6\xc6\x8d\xd7\xfb\x29\xa9\x33\x42\x36\xdc\x8d\xd7\xf5\xe9\x9a\x47\x77\xb8\x3a\xde\xf8\x2e\xd7\x3a\x47\xea\xde\x96\x93\xf0\x2e\x7c\x00\xef\xc4\x3f\xc2\x1f\xa4\xf8\xe1\x7b\x75\xbe\x38\xfa\x13\x99\xae\xd7\x9a\xba\xc6\xd3\xf9\xab\x51\x6c\x34\x87\xf6\x29\x82\xe0\xb5\x7d\xfd\xfe\x73\xf6\x6b\xea\x96\xaf\x74\x41\xf0\xeb\x5b\x53\xb7\xfc\xc9\xfc\x68\xd9\x84\x2f\xe1\xe8\x2e\xb7\xeb\x18\xea\x16\x97\x23\xa7\x6d\x90\xeb\x9c\x94\x0a\xf4\xa2\xe7\xf9\xd9\x83\xdb\x2f\xb8\xe6\xc7\xe8\xa2\xfc\x30\xc5\x25\x83\xab\xee\xaa\x13\x07\x1b\x01\xd5\xc5\x63\x14\x6e\xef\x42\xb0\x47\x08\x19\xbb\xab\x43\xf8\x1f\x22\x80\x3f\xc6\x5b\xc8\x2e\xdc\xca\x62\x80\x6a\x13\xce\xec\x06\x4e\x7c\x11\x0f\xb2\xd2\x3b\xdb\xe7\xad\xe2\xa1\x0a\xb3\x47\x98\xfc\xf5\x48\x85\xf9\x18\xb8\xf2\x8e\x48\xd0\x0f\xe2\x3c\x45\x81\xed\x74\xb4\xff\xcc\x2c\x1c\x71\xbc\x83\x1c\x3f\x52\x31\xee\x02\xfa\x19\xb7\xe1\x5d\xcd\xc2\x3f\xc0\x1b\xf1\x45\x1c\x09\x48\xed\x22\x8e\xe5\xf5\x38\x83\xf5\xe2\x56\xf7\x28\xa4\xd4\x03\x1d\xe4\xdd\x71\xab\xdb\x55\x13\x8e\x74\xa9\xe7\xf9\x41\x7c\xf2\x79\xe2\x38\xae\x76\xe1\x8b\xac\xb9\x68\xe7\x56\xff\xc1\xb6\x76\x90\xa1\x47\xaa\xca\xc7\x6f\x26\x4a\xed\xf8\xae\xdb\x4d\xf8\x40\xc6\x84\x4e\xfc\x23\x1c\x99\xe8\x9d\xed\x63\x7b\xec\x02\x93\xc6\x34\xe2\x0f\xf1\x89\x1c\x11\x71\xab\xde\xd5\x2a\xbc\x01\xe7\xf3\x53\xed\x63\x1e\xe1\x77\xf5\x48\xb5\xf9\x30\x5f\x69\x4f\xfc\x5e\xfa\x70\xec\x42\x3d\xe9\xe8\xa2\xda\x85\x23\xd1\x44\x2e\xc4\xbf\xc4\x61\xb9\x90\x0a\xfa\x93\x40\xb6\x1e\xe8\x3e\x37\xee\xc0\x87\xda\x47\x22\xf8\xc4\x71\x23\x9b\xf8\x38\x52\x61\x75\x48\x37\x77\xf5\x16\x1e\xed\xc0\x1a\x77\x57\xb3\x70\x24\x9c\xe8\xc2\x87\xf0\xe7\xe4\x40\x5f\x8f\x67\xad\xab\x8c\x78\x84\xd6\xf0\x5d\x74\x2b\x79\x98\xbc\xa9\x1b\xe7\x8b\xaa\xd6\x5d\xf8\x9c\x94\xe5\x51\xfd\x0a\xc7\x7a\x33\x3e\x3f\x38\x3e\x48\x7a\x84\x7c\x69\x51\x55\x3b\x98\x47\x5c\xf3\x76\x95\xf3\x88\x9c\x48\xc8\x79\x13\xd5\x26\x1c\xfd\xf1\x4e\xfc\x23\xfc\x39\xf9\x87\xd7\x23\xd5\xef\xc3\x34\xb3\xdd\xb9\x2f\x8a\xbe\xb7\x60\x7c\x70\xcd\x7b\x10\xb9\x02\x05\xe4\x64\xe3\xfc\x56\xb5\x03\xf6\xa5\xe3\xda\xb0\xab\xec\x0f\xac\x24\x7b\x6b\xe8\x7f\xd5\xbe\xa8\x60\xbb\x23\x21\xd1\x7a\xa4\xe2\x7d\x10\x29\x6d\xe3\x46\x7c\x0a\x47\xfa\xd7\x86\xf6\xe9\x34\xf3\x20\x2c\x06\xd3\xc2\x46\xb5\x09\x67\x36\xa7\x8b\xb8\xda\xc1\xb5\x56\xe3\xdf\x86\xda\xc1\xb5\xc4\x38\x5f\x5d\xeb\xb9\x33\xb7\x36\xe8\x1b\x42\x5e\xa0\xc0\x64\x75\xe8\x7f\x27\x9d\x64\xca\x5d\xf3\xca\xe7\x45\x1f\x3a\xa4\xbc\xce\xef\xa2\x5f\xe3\x43\xbf\x46\x86\x07\xdb\xd5\x2e\x7c\x02\xc7\xfc\xba\xc6\xc7\x39\x5f\x1c\x07\xd7\x7c\x41\xf9\xdb\xa1\x9c\x7d\xa4\xfc\x7d\x9c\xc9\xa3\x9c\xeb\xdc\xb5\x6e\x99\x90\xd9\x49\x57\x5d\x74\x06\xa9\x47\x3b\x42\xb5\xed\x2a\xd7\x0f\x0c\x8d\xbb\x73\x1d\xba\xf6\x9d\xc3\xf7\xe2\xe2\xba\x72\xad\x43\x4a\xd9\xe1\x6c\xfb\x48\xb9\xfc\x30\x37\xb0\x5d\x1c\x4f\x5a\x4e\x3d\x8e\xa4\x4e\x76\x71\xff\x0e\xed\xdf\x90\x6a\x57\xae\xce\xa9\x56\x22\xac\x47\x25\x6d\x9e\xc6\x3d\x11\xa2\x6a\xa8\x11\x1f\xa7\x7f\xd3\x2e\x24\xe5\x39\xd8\x15\x13\xfa\x45\x48\x73\x3e\x3d\xf5\x34\x43\xaf\xf3\xf9\x8f\xde\xf8\x21\xde\xf1\xfd\x3a\x5f\xa9\xf4\xcd\x46\xba\xb6\x84\x2f\xe2\xdc\xcf\x3a\xff\x1c\x52\xa3\xec\x71\xcd\x7a\x64\x4b\xbf\x0b\x61\x0a\x81\xeb\xe0\xae\x2e\xe2\xb0\x40\x43\x68\xf7\x5d\xbd\x85\x3b\xf2\x5e\xb0\x1d\xd2\x0b\x26\xb0\xe9\x3d\xc4\x0f\xbb\x5a\x84\x0f\xe0\x68\x5f\xe7\xd0\xa0\xe5\x2a\x42\x3b\x3d\xd3\x20\x1e\xd8\x85\x30\xa1\x42\x6c\x81\x47\xf1\xbc\x1e\xa6\x60\x0c\x66\x7e\x57\xba\xd0\xb0\x08\x2f\x44\x5d\x68\x58\x36\xdb\x7f\x66\xb8\x52\xfb\x2f\xfc\xd6\x7e\x74\xea\x37\x30\x65\x22\xfa\x15\x8a\xe4\x64\x81\x3a\x58\xde\x5d\x80\xa2\x99\x68\x16\x0a\x79\x29\x51\x17\x1a\xc1\x31\x9c\xe8\x14\xfa\xf9\xfd\x49\x21\xc1\x7e\x26\xa3\x5a\xec\xc2\x0a\x3f\x71\xa0\x1a\x11\x87\x1b\x62\x22\x5a\x84\x86\x7d\x35\x7b\xe6\x7a\x1b\x93\x87\x11\x7d\x88\xee\xc9\x83\x91\xd9\xae\x24\xa1\xed\xf7\x87\xe7\xab\x42\x1b\xec\xc2\xfc\xfd\xe1\x69\xa6\x7c\x24\xbb\x00\x07\x6e\xa0\xea\x59\x30\x81\xf0\x7e\x7a\xe6\x87\x2b\x04\xf9\x3d\xc0\x06\x3f\xf3\xab\x31\x0b\x31\x7d\x06\xb7\xa0\x18\x00\x0f\x62\x00\x24\xe6\xa6\xbc\x66\xa4\xa3\x56\xf1\x39\xe7\xd5\x73\xed\x75\x13\x27\x19\x8b\x71\x96\x79\xd2\xdf\x22\x2e\x93\x8a\xa0\x2f\xcc\x97\x75\x23\x45\x9f\x8a\x30\x6c\x61\xf2\xb5\xcc\x18\xec\x2c\xc2\xf2\x94\x09\x87\x32\x1d\xe6\x59\x84\xf5\x29\xd3\xcb\x15\xc3\x29\xc3\x22\x2c\x41\x4f\xfa\xe7\x3e\xf8\xbb\x5d\xa4\x08\xef\x7f\x63\xfd\x77\xe5\x5f\xc6\xdf\xff\xe9\xff\xff\x6f\xe3\xef\xff\x7d\xfc\xcb\xfa\xf9\xfc\xc7\x3f\xfe\xb1\xfe\xf5\xdf\xbf\xff\xfc\xf9\xf7\x9f\xff\x6f\xa3\x3f\xdf\xf5\xfc\xf3\xbf\xae\x7f\xac\xff\xf9\x6f\xff\xf1\x8f\xcf\xfa\xf9\xfb\xbf\xfd\x7d\xff\x2a\xfe\xff\x5f\x01\x00\x00\xff\xff\xf1\xfc\x13\xf3\x3c\x64\x04\x00"); -func _bfecg ()(*asset ,error ){_cddg ,_gagf :=_ffcf ();if _gagf !=nil {return nil ,_gagf ;};_abegg :=bindataFileInfo {_ag :"UniJIS2004-UTF16-V",_bc :3434,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492812,0)};_afab :=&asset {_cd :_cddg ,_dce :_abegg }; -return _afab ,nil ;};func _bbcc ()(*asset ,error ){_acad ,_dad :=_gfbb ();if _dad !=nil {return nil ,_dad ;};_bceb :=bindataFileInfo {_ag :"GBpc-EUC-H",_bc :2211,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492172,0)};_gfaeg :=&asset {_cd :_acad ,_dce :_bceb }; -return _gfaeg ,nil ;};func _cdfg ()(*asset ,error ){_cgbfa ,_bgae :=_fccff ();if _bgae !=nil {return nil ,_bgae ;};_caeg :=bindataFileInfo {_ag :"KSC-EUC-H",_bc :9483,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492494,0)};_gcbd :=&asset {_cd :_cgbfa ,_dce :_caeg }; -return _gcbd ,nil ;};func _bffa ()(*asset ,error ){_aeba ,_bagg :=_ada ();if _bagg !=nil {return nil ,_bagg ;};_fbf :=bindataFileInfo {_ag :"GBTpc-EUC-H",_bc :44556,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492236,0)};_febdg :=&asset {_cd :_aeba ,_dce :_fbf }; -return _febdg ,nil ;};func _cfda ()([]byte ,error ){return _dc (_bace ,"HKdla-B5-V")};func _aedfe ()([]byte ,error ){return _dc (_gaba ,"Adobe-KR-2")};func _fcgb ()([]byte ,error ){return _dc (_gbdd ,"UniKS-UCS2-V")};func _cafc ()(*asset ,error ){_ceeec ,_adbgga :=_deag (); -if _adbgga !=nil {return nil ,_adbgga ;};_bdge :=bindataFileInfo {_ag :"UniCNS-UTF32-V",_bc :697,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492713,0)};_cfccg :=&asset {_cd :_ceeec ,_dce :_bdge };return _cfccg ,nil ;};func _eae ()(*asset ,error ){_ecffd ,_abad :=_ggff (); -if _abad !=nil {return nil ,_abad ;};_bbaa :=bindataFileInfo {_ag :"CNS-EUC-V",_bc :11034,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491606,0)};_bcbc :=&asset {_cd :_ecffd ,_dce :_bbaa };return _bcbc ,nil ;};func _fdd ()([]byte ,error ){return _dc (_gbc ,"Adobe-CNS1-0")}; -func _cbb ()([]byte ,error ){return _dc (_bfdb ,"Adobe-Korea1-UCS2")};var _adbggd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x30\x10\x05\xe0\xbb\x7f\xc5\x1c\xb7\x97\xda\x92\x2c\xcb\x82\xb2\x50\x92\x43\x5d\xd8\x6e\x69\xba\x69\xa1\xf4\xe0\xd8\xe3\x60\x68\x64\x23\xdb\x87\xfc\xfb\xa2\x37\xa9\x7b\x08\x72\xbe\x68\x1e\x2f\x30\xce\x0f\xcd\xb1\x09\xe3\x4a\xf9\xd7\x38\x75\x27\x5e\x69\x18\x43\x1f\x79\x99\xb6\xd8\x31\x5d\xf8\x3a\x86\x2c\x53\x9a\xfa\xb1\x5b\xff\x7d\xc5\xd1\xdd\xda\x39\xcb\xf2\x4f\xb4\x2d\xfc\x78\x3e\x34\xc7\xd3\x7d\x59\xf9\xd6\x84\x61\x22\x23\x33\xfd\x36\x3f\xe6\x88\xf2\x6f\x7c\x1d\x97\x35\xde\xe9\xe9\x63\x3f\x5d\xf8\x1d\xf5\x3c\x24\x7f\x8d\x3d\xc7\x31\x5c\xe9\xe9\x73\x3b\xb7\x41\xed\x3f\x9c\xb6\x79\xfe\xc3\x37\x0e\x2b\x29\x18\x87\x1e\x67\x96\x1f\x5e\xda\xf9\x4b\x7b\x63\xca\xcf\x10\xc0\x99\xe3\x32\x4e\x81\x94\x7e\x5f\x14\xf6\xbf\x7f\xbf\xcf\xfc\x48\xc8\xf2\xb7\xe6\xf8\x3a\x0c\x0b\xaf\x54\xdb\x42\xee\xfc\x7c\x6b\x8e\xf4\x4b\x91\x2a\x48\x5b\x53\x16\xbf\x1f\x57\x7f\xbc\x4c\xfd\x3e\xa8\x9d\xfc\x93\x6e\xec\x63\x1b\xae\x9c\x7d\xd0\x4a\xeb\x67\x4a\x87\x79\x26\x57\xd7\x2e\x91\x51\x20\xa3\x41\x1e\xd4\x09\x71\x22\xaf\x12\x95\x72\xab\xb4\xa0\x12\xd4\x82\xec\x05\x84\xc1\x4a\x6e\xa5\xc3\x79\x95\xe2\x4b\x0d\xc2\xe1\xbc\xaa\x41\x46\xc8\x80\x3c\xc8\x0a\xa5\x78\xaf\x0b\x90\x13\x72\x20\x05\xf2\x42\x1e\xa4\x13\x95\x92\x55\x22\x4b\x9b\x44\x95\x50\x25\x54\x82\x24\xbe\x92\x78\x0b\x92\xf8\x4a\xe2\x2b\x10\x0b\x31\x28\xb5\xb7\xd2\xde\x4a\x7b\x5d\x83\x8c\x90\xc4\x7b\x90\x15\x42\xbc\x29\x40\x4e\x08\xf1\x46\x81\xbc\x10\xda\x9b\xd4\xde\x4a\x7b\x2b\xed\x4d\x6a\x6f\xa5\xbd\x95\xf6\xa6\x04\x49\xbc\xb4\x37\x16\x24\xf1\xd2\xde\x54\x20\x16\x42\x7b\x83\xf6\x4e\x06\x5d\x05\xaa\xd3\x36\xee\xcb\x90\x9e\xd3\x7b\xb0\xef\x65\xb7\xc5\xc8\x61\xc5\x5b\x80\x25\x4c\x5b\x34\x06\xde\xdf\xae\x79\x9a\xd3\x14\x3e\x7f\x03\x00\x00\xff\xff\xad\x4b\x3b\x79\x89\x03\x00\x00"); -func _gdaab ()(*asset ,error ){_fdee ,_bbfa :=_bdbab ();if _bbfa !=nil {return nil ,_bbfa ;};_dcgb :=bindataFileInfo {_ag :"UniJISX02132004-UTF32-H",_bc :243189,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492992,0)};_abbg :=&asset {_cd :_fdee ,_dce :_dcgb }; -return _abbg ,nil ;};var _aec =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\xcb\x6b\xeb\x46\x14\x06\xf0\xbd\xfe\x8a\x59\xde\x2e\x6e\x3d\xe7\x31\x0f\x81\x08\x94\x84\x0b\xa6\xdc\xb6\x34\x7d\x41\xe9\x42\x91\xc6\xc1\xd0\x48\x46\xb6\x17\xf9\xef\xcb\x39\x9f\x9d\xc2\x5d\x04\x47\x9f\xa5\x23\xe5\xf7\x65\x46\xbb\xc7\xfd\xd3\x7e\x39\x5e\xc2\xee\x97\x6d\x9d\x9e\xdb\x25\x1c\x8e\xcb\xbc\xb5\xf3\x7a\xdd\xa6\x16\x5e\xda\xeb\x71\xe9\x3a\xe2\x30\x1f\xa7\xcb\xfd\xd0\x3f\xa6\xb7\xf1\xd4\x75\x76\xfd\xf3\xfb\xf9\xd2\xde\xf6\xcb\x61\x0d\x82\xf3\xe6\xeb\xe9\x76\x6e\x08\xbb\x5f\xdb\xeb\xf1\x7c\xd9\xde\xc3\xa7\x1f\xe6\xf5\xa5\x7d\x17\xe6\x76\xb0\xfc\xe7\x6d\x6e\xdb\x71\x79\x0d\x9f\x7e\x5c\xb7\x36\xd2\xc7\x17\xcf\xd7\xd3\xe9\xdf\xf6\xd6\x96\x4b\x60\xcf\xda\x32\xfb\x67\xb7\x7b\xfc\x3a\x9e\x7e\x1a\xdf\x5a\xd8\xf9\xac\xcf\xb8\xf2\x33\x4e\xf3\x6f\xff\x68\xdb\xf9\xb8\x2e\x81\xbe\x8f\x31\xfd\x1f\xff\xf6\x7e\x6a\x81\x6e\x53\xfe\xfa\x7d\xff\x14\xfe\xa6\x40\x31\x70\x4a\x4a\xff\xdc\xf2\x3f\xbf\xae\x73\x0b\xf1\x7e\xaf\xfd\xd3\xe3\x7a\x5d\x2e\x81\xaa\x24\xdc\xa1\x23\xfc\x59\xd3\x3a\xb7\xf3\x69\x9c\xda\x36\x2e\xaf\xad\x0b\x61\x88\x31\xc6\x87\x30\x68\xf9\xf2\xe5\xc1\x9e\xf7\x9b\x33\xba\xc2\xb7\x2b\x8f\x33\x92\xfb\x15\x31\x1e\x0e\x0f\x21\x76\x43\x24\x1c\x93\x1d\x73\xca\xdd\x10\x19\x09\x5b\x92\x88\xbb\x21\x0a\x12\xb1\xa4\xe4\xda\x0d\x51\x91\xa8\x25\x14\x59\xbb\x21\x26\x44\xc9\x23\xae\x36\x3b\x23\xca\x1e\x25\xb1\xe1\x05\x51\xf1\xa8\xf4\x36\xbd\x22\xaa\xfe\x04\x51\x6d\x7c\x8f\xa8\xf7\x48\xa2\x8d\x1f\x11\x8d\xb7\xe7\xb4\xf1\x2f\x88\x5e\x3c\xaa\x64\xe3\x27\x44\x93\x45\x12\x8b\x8d\x9f\x11\xcd\x1e\x09\xdb\xf8\x86\xa8\x79\x94\xaa\x8d\x3f\x20\x3a\x78\x54\x35\x76\x03\x41\x8a\x5c\x4a\x63\x9f\xbb\x81\x80\x45\x8e\xa5\x92\xb8\x1b\x08\x5a\xe4\x5a\x9a\x63\xed\x06\x02\x17\x39\x97\xd6\xac\xdd\x40\xf0\x22\xbd\x99\xda\x78\x78\x91\x7b\x25\x29\x36\x1e\x5e\xe4\x5e\x29\x8b\x8d\x87\x17\xb9\x57\xaa\xd5\xc6\xc3\x8b\xdc\x2b\x93\xda\x78\x78\x91\x7b\x65\x8d\x36\x1e\x5e\xe4\x5e\x39\x5b\xb1\x04\x2f\x72\xaf\xdc\x5b\xb3\x04\x2f\x72\xaf\x42\x56\x2d\xc1\x8b\xdc\xab\xa8\x55\x4b\xf0\xa2\x76\xeb\xdf\xc6\xc3\x8b\xdc\xab\xf4\x56\x2d\xc3\x8b\xdd\xab\x92\x55\xcb\xf0\x62\xf7\xaa\x6a\xd5\x32\xbc\xd8\xbd\x6a\xb1\x6a\x19\x5e\xec\x5e\xb5\xb7\x6a\x19\x5e\xec\x5e\x3d\x5b\xb5\x0c\x2f\x76\xaf\x5e\xad\x5a\x86\x17\xbb\x57\x5f\xac\x5a\x86\x17\xbb\x57\xdf\x5b\xb5\x0c\x2f\xae\xf7\xff\x55\x9b\x0f\x30\xee\x91\xa9\x95\xcb\x10\xe3\x11\x59\xb1\x76\x19\x64\xec\x64\xd6\xbe\xdd\x02\x66\x3c\x21\x63\xeb\x97\x81\xc6\x33\xb2\x64\x05\x33\xd4\xb8\x21\x2b\xd6\x30\x83\x8d\x0f\x58\x24\xd1\x2a\x16\xb8\x49\x44\xc6\xd6\xb1\x00\x4e\x08\x59\xb2\x92\x05\x72\xc2\xf7\x05\x16\xbb\x41\x40\x27\x4e\x47\x12\xad\x66\x81\x9d\x60\x6d\x8a\x58\xcf\x02\x3c\xc1\xe2\x94\x64\x45\x0b\xf4\x04\xab\x53\xaa\x35\x2d\xe0\x13\x2c\x4f\x8d\x56\xb5\xc0\x4f\xe0\xa7\x62\x5d\x0b\xfc\x04\x7e\x9a\xac\x6c\x81\x9f\xc0\x4f\xab\xb5\x2d\xf0\x13\xf8\x25\xb2\xba\x05\x7e\x32\xdd\x77\x05\xbb\x07\xfc\x04\x7e\x29\x5b\xe1\x02\x3f\x81\x5f\xaa\xd6\xb8\xc0\x4f\xe0\x97\xc9\x2a\xd7\xdb\x1e\x08\xbf\x2c\xd6\xb9\xc2\x4f\xe1\x97\xb3\x75\xae\xf0\x53\xf8\xe5\x6a\x9d\x2b\xfc\x14\x7e\x85\xac\x73\x85\x9f\xc2\xaf\xa8\x75\xae\xf0\x53\xf8\x95\x6c\x9d\x2b\xfc\x34\xdf\xb7\x32\xbb\x47\xb9\xed\xc7\xa3\x65\x95\x4a\xf6\x5d\xf9\xbe\xfb\xda\xef\xf6\xfe\xfa\x78\x9f\x4c\xd7\x6d\x6b\xcb\xc5\xdf\x5e\xfe\xc2\xb0\xfd\xfe\xb8\xb4\x8f\x37\xe1\x69\x3d\xd9\x55\xfe\xf3\x5f\x00\x00\x00\xff\xff\x4c\xe9\x48\x7c\x35\x07\x00\x00"); -func _fcb ()([]byte ,error ){return _dc (_eag ,"Adobe-GB1-0")};var _gaba =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\xc1\x8a\xdb\x3c\x14\x85\xf7\x7a\x0a\x2d\xe7\x5f\xcc\x1f\xdd\x6b\x59\x96\xc0\x0c\x94\x0c\x03\x61\x98\xb6\xcc\x94\x76\xed\xd8\x72\x30\x34\xb6\x71\x9c\xc5\xbc\x7d\xb9\xf7\x38\xa1\x74\x11\x1c\x7d\x91\x4e\xc4\x77\x2c\xed\xf6\x87\xe7\xc3\x38\xac\x76\xf7\x7d\x99\xda\x8f\xbc\xda\x7e\x18\xbb\x25\x5f\xa6\xeb\xd2\x66\x7b\xcc\xa7\x61\x34\x86\xd8\x76\x43\xbb\xde\x86\xfa\x68\xcf\xcd\x6c\x8c\xac\xff\xf8\xbc\xac\xf9\x7c\x18\xfb\xc9\x16\x98\xd7\x5d\xe7\x6d\xae\xb5\xbb\xf7\x7c\x1a\x2e\xeb\xf2\x69\x1f\xbe\x74\xd3\x31\xff\x67\xbb\xdc\x0b\xff\xb6\x74\x79\x19\xc6\x93\x7d\x78\x7d\xbf\xc3\x8f\xeb\x3c\xff\xce\xe7\x3c\xae\x96\x95\xe5\xb1\xd3\xa7\xd9\xed\xdf\x9a\xf9\x6b\x73\xce\x76\xa7\x39\x8f\xaf\xef\x8f\x98\xa2\xbf\xfc\xcc\xcb\x65\x98\x46\x4b\xff\x3b\xf7\x17\xfe\xf1\x39\x67\x4b\x5b\xc2\xaf\xb7\xa9\xcb\xd6\xdd\xf2\x0e\xcf\xfb\xe9\x3a\xae\x96\xc8\x97\xdb\x14\xc2\xb6\xdb\xa9\xcb\x97\xb9\x69\xf3\xd2\x8c\xa7\x6c\xac\xad\x9d\x73\xee\xc9\xd6\xbc\x7f\x79\x79\x92\x3d\xfd\x33\xc3\xf8\x72\x5b\x39\x74\x20\xb7\x15\xce\xf5\xfd\x93\x75\xa6\x76\x84\x31\xc9\x98\xcb\x60\x6a\xc7\x20\x2c\xa4\x24\x36\xb5\x2b\x40\x0a\x21\x55\x88\xa6\x76\x1e\xc4\x0b\x21\xc7\xde\xd4\xae\x04\x2a\x15\x71\x94\xec\x00\x14\x14\x95\x85\x84\x57\x40\x95\xa2\x2a\x49\x7a\x04\x8a\xba\x03\xe7\x25\x3e\x01\x25\x45\x85\x93\xf8\x06\xa8\xd9\xf6\x29\xf1\x47\xa0\xa3\xa2\x48\x12\xdf\x02\xb5\x82\x0a\x57\x49\x7c\x07\xd4\x29\x2a\x58\xe2\x33\x50\x56\x54\x46\x89\xef\x81\x7a\x45\xd1\x3b\x53\x13\x4c\x91\x9a\xf2\x2e\x05\x53\x13\x64\x91\xca\xf2\x45\xc9\xa6\x26\xd8\x22\xb5\xe5\x83\x8b\xa6\x26\xe8\x22\xd5\xe5\x63\xf0\xa6\x26\xf8\x22\xbf\x39\x95\x78\xf8\x22\xf5\x55\x16\x95\xc4\xc3\x17\xa9\xaf\x32\x14\x12\x0f\x5f\xa4\xbe\xca\x18\x25\x1e\xbe\x48\x7d\x05\xf2\x12\x0f\x5f\xa4\xbe\x82\x77\x12\x0f\x5f\xa4\xbe\x42\x90\x62\x09\xbe\x48\x7d\x85\x24\xcd\x12\x7c\x91\xfa\xaa\x48\xaa\x25\xf8\x22\xf5\x55\x79\xa9\x96\xe0\x8b\xf2\xd6\xbf\xc4\xc3\x17\xa9\xaf\x2a\x49\xb5\xbc\xbd\x8b\xea\x2b\x92\x54\xcb\xf0\xc5\xea\x2b\x7a\xa9\x96\xe1\x8b\xd5\x57\xac\xa4\x5a\x86\x2f\x56\x5f\x31\x49\xb5\x0c\x5f\xac\xbe\x12\x4b\xb5\x0c\x5f\xac\xbe\x92\x97\x6a\x19\xbe\x58\x7d\xa5\x4a\xaa\x65\xf8\x62\xf5\x95\x92\x54\xcb\xf0\xc5\xf1\xf6\xae\x4a\x3e\x84\x71\x02\xf3\x52\x2e\xc3\x18\x37\x60\x95\xb4\xcb\x50\xc6\xaa\x4c\xda\x97\xbf\x80\x33\x6e\x8f\x8d\x30\x0e\x5e\x4f\xde\xed\x84\xc9\x77\xb9\x83\xee\xf7\x42\x7b\x5d\x96\x3c\xae\x7a\x03\xe9\xe1\x97\x33\x3d\x8c\xf9\x7e\x9b\xcd\xd3\x2c\xab\xf4\xf3\x27\x00\x00\xff\xff\x40\xb3\x0e\x9a\xf9\x04\x00\x00"); -func _dfeg ()([]byte ,error ){return _dc (_geee ,"GBK2K-V")};func _ccc ()([]byte ,error ){return _dc (_daag ,"HKdlb-B5-H")};func _ccdf ()([]byte ,error ){return _dc (_aef ,"Adobe-CNS1-2")};var _afe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x8f\x9b\x30\x10\x85\xef\xfe\x15\x73\xdc\x1e\xb6\xd8\x18\x36\xb6\x14\x21\x55\x44\x55\x39\x6c\x5a\x95\x4d\x5a\xa9\xea\x81\xd8\x43\x6a\xa9\x18\xcb\xc0\x21\xff\xbe\xb2\x31\x54\x7b\x40\xf6\xfb\x8c\x1f\x6f\x86\xc9\xea\xe6\xd4\x58\x33\x43\xf6\xcd\x8f\xaa\xc5\x19\x7a\x63\xb5\xc7\x69\x5c\xbc\x42\xb8\xe1\xdd\x58\x42\x58\x0e\xda\xa8\x79\x93\x71\x51\x43\xe7\x08\xc9\x2e\xd6\xd4\xe7\xf6\xf9\xf2\xf6\x59\x3c\x7f\x81\x65\xc2\xc4\xeb\xe6\xd4\x3e\xa6\x19\x87\xc6\xf6\x23\xf0\xf5\xbe\x5e\x5c\xf2\x00\xc8\xbe\xe3\xdd\x4c\xb3\x7f\xc0\xd3\x27\x3d\xde\xf0\x03\x68\xec\x03\xff\xea\x35\x7a\x63\xef\xf0\x54\x9f\x5b\xb6\xe3\x76\x71\xee\x2f\x0e\x68\x67\x38\x44\x86\x56\xc7\x95\x64\xf5\x6b\xe7\xce\xdd\x80\xf0\x2e\xcd\x35\x9e\xc6\xc3\x2b\xfa\xc9\x8c\x16\x18\xff\x48\xa9\xfc\xcf\xdf\x1e\x0e\x81\x25\x97\x9f\x97\xe6\x04\xbf\x18\x30\x0a\x79\xc9\xa5\xf8\x9d\xf8\x8f\xd7\x51\xef\x6f\xbd\xac\xf9\x95\xd1\xea\x4f\xe7\xc9\x11\x73\x41\x25\xaf\x80\xe5\x34\x89\x22\x88\x7c\x15\x5d\x59\x01\xa3\x92\x1c\xb1\xbf\x49\xd1\x57\xc0\xf8\xa1\x28\xa3\xd4\xf2\x16\x64\x91\x84\x0e\xa2\x0c\x35\x6d\xd6\xe4\xb0\x7f\xca\x77\xf6\x8e\xe4\x88\x5c\x50\x21\x2a\x58\x37\xb2\x02\x56\xd2\x44\xbb\x8d\x06\xd3\xe2\x25\x51\xb5\xd1\xe0\x5e\x16\x89\xe2\x46\x43\x9e\x52\xac\x54\xd2\x44\x25\x0b\x0e\x79\xa2\xc5\x46\x43\x21\x5c\xc4\xb0\x6a\xcd\x10\x36\x21\x03\xa7\x29\xf5\x9a\x32\x8a\x30\x02\xfb\x4f\x51\x8b\xf7\x68\xe7\x38\x00\xb1\xeb\xa1\x93\xc6\xe2\x3e\x64\x6e\x74\xe1\x56\x7c\xfe\x05\x00\x00\xff\xff\x20\x40\xbf\x48\x90\x02\x00\x00"); -func _eaec ()([]byte ,error ){return _dc (_accb ,"CNS2-H")};var _adf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x4b\x8f\x65\xc7\x6d\xc7\xf7\xfd\x29\xee\xd2\x59\x38\x3a\xf5\x64\x11\x18\x34\x60\xc8\x11\x22\x07\x4e\x02\x2b\x2f\x20\xc8\xe2\x3c\x78\x84\x01\xa2\x9e\xc6\x68\xb4\xf0\xb7\x0f\xf8\xfb\x5f\x29\x71\x12\x40\x0b\x83\xd6\xbf\x79\xaa\x58\x24\x8b\xaf\xba\xf3\xd5\xd7\xdf\xfe\xfe\xdb\xb7\x8f\x5f\x1e\x5f\xfd\xe3\xe7\x4f\xe7\x77\xf1\xe5\x71\x7f\x7c\xbb\x3e\xc7\x8f\x9f\x7e\xfa\x7c\xc6\xe3\x88\xef\x3f\xbe\xbd\xbc\x94\xfa\xb8\x3e\x9e\x5f\x7e\xfe\x4f\xc8\xf9\xc3\xfe\xfe\xf2\x92\xdf\x7f\xf7\xe7\x1f\xbf\xc4\x0f\xdf\xbe\xdd\x9f\x1e\x4d\x7c\xd7\x4f\xef\x4f\xde\xc7\xe3\xab\x3f\xc5\xf7\x1f\x7f\xfc\xf2\xf9\xcf\x8f\xdf\xfc\xee\xfa\x74\xc4\x5f\x3d\xae\xb8\x13\xff\x87\xcf\x57\x7c\xfe\xf8\xf6\xfd\xe3\x37\x7f\xd8\xdf\xf7\xb7\xf2\xcb\x1f\xbe\xfb\xe9\xfd\xfd\x3f\xe3\x87\x78\xfb\xf2\xd8\xc0\xe2\xed\x82\xbe\x7c\xf5\xf5\x1f\xf7\xf7\xbf\xdf\x7f\x88\xc7\x57\xb6\x7e\xfb\xa7\xbf\xfb\xee\x0f\xbf\xfd\x5b\xfe\xc2\x1f\xfe\x25\x3e\xff\xf8\xf1\xd3\xdb\xa3\x6c\x7f\xbd\x6d\xf3\xbf\xf1\x7f\xfa\xf3\x7b\x3c\xca\x73\x85\x7f\xfb\xe7\x6f\x7f\xff\xf8\xf7\xf2\x28\xdb\xa3\x8e\xd6\xe7\x7f\x3c\xf1\x7f\xfd\xe3\xa7\x2b\x9e\xfb\xbd\x74\x49\x7f\x7e\xba\xe2\xc7\xf7\xfd\x8c\xcf\xfb\xdb\xf7\xf1\xf2\x78\x7c\xd8\xb6\xd7\xc7\xe3\xf1\x61\x6d\xaf\xf9\x5f\xab\xf4\xed\xf5\xf1\xc1\xbf\xf9\xe6\x6b\xfe\xfb\x77\xfa\xeb\xef\xbf\xe1\xbf\xfe\x66\xe3\xaf\xdf\x7c\x9d\x7f\x8d\xb7\xeb\x7f\xad\xf6\x52\xb4\xc9\xdb\xa7\x2f\x57\xdc\xc2\x58\xff\x43\xb9\x5f\x1f\xb5\x95\xfc\xe6\x7f\xfe\xf1\xa5\x6c\xdb\x53\xae\x8f\xd7\x93\xbf\x26\xbf\x85\xf8\x7f\x96\x67\x95\x44\x66\x6b\x89\x2c\x21\xfb\xf9\xfa\x98\x3e\x5f\x3e\xac\xda\xef\x44\xea\x58\xaf\x0f\x5b\x5b\x22\x13\x9e\x6a\xfe\xfa\x30\x07\x59\x05\xc4\xf7\xd7\xc7\x2a\x7c\xe5\xfa\xea\x2e\xaf\x8f\xd5\xeb\xcb\x87\xd5\xb4\x57\xcb\xbd\xbc\x8e\x44\xb4\x57\xf3\xf9\xfa\xf0\xb5\x12\xd1\x57\xed\x98\xaf\x8f\xb2\x95\x14\xb1\x1d\x82\x2e\xa0\x96\xdf\x75\xad\xd4\x53\x8c\xb2\x0d\x4f\xc8\x04\xe5\xe2\x65\xf3\xdc\xaf\x6b\xf5\xee\xe5\xf5\x51\xca\x66\x2f\x1f\xd6\xd2\xf2\x90\x52\x90\x61\xed\x70\x41\x4c\x2a\x58\x7b\x11\x34\xe1\xe2\xc3\xdd\x04\xd9\xeb\x63\xd5\x39\x81\x96\x20\xd6\x6a\x3d\xa1\x43\x6b\x25\x31\x9f\x05\x48\x6b\x25\xb1\xd6\x36\xa0\x2a\x68\xe5\x87\x5d\x1f\xba\x20\x47\x08\x41\x3b\x50\x1c\xc9\x35\xf2\x40\x2b\x4e\x41\x27\x5c\x48\x1f\x17\xd0\x9d\x9a\xa8\x1b\xd2\xdf\xda\x31\x89\xcd\x86\xa8\xb7\x76\xbc\x1d\xae\x05\xa4\xe5\x93\xd8\x6c\x9c\xf1\x3e\x04\x9d\xc9\x55\x12\x72\x29\xda\xfb\x02\x72\x20\x17\x24\x51\x17\x10\x6b\xf9\x68\xc9\x55\xe1\x1a\x5d\x50\x87\x4b\xd0\x10\x64\xc9\xd5\x37\xa0\x25\x28\x3d\x6b\x3e\x21\x2d\x3f\x0e\xb8\x3a\xd0\x29\x88\x63\xe3\x4a\x3e\x38\xb6\xe3\x00\xb5\x23\xc4\x2c\x82\x38\x76\x6f\x40\x1c\xdb\xf1\x89\x3a\x80\xe4\x13\xbe\xf6\x84\x16\x6b\xad\x43\xd0\xc1\x87\xec\xb8\xb4\xe3\x3e\x92\xcb\x81\xd2\x19\x9e\xc4\x66\x1f\x40\x26\xc8\xd2\xb4\x93\x33\xca\x27\x20\x36\xfb\x04\xd2\x81\xae\xeb\xf5\x51\x5a\x45\x88\x2b\x04\x05\x5c\x28\xfa\xc2\x31\xfd\x4e\xe5\x34\x03\xba\xb5\xd6\xad\xb5\x38\xe3\xad\xb5\xd2\x68\xa5\x63\x6d\x97\xd1\x20\x36\x3b\x42\xdc\x92\x1e\x3b\xf6\x2d\x85\xd8\x65\x47\x48\xe9\x5c\x85\xbd\x17\x41\xe8\x6b\x6c\x40\xe8\x6b\x9f\xe2\xca\xb5\x76\x69\x15\x32\xbb\xf3\xe1\x7c\x72\xa5\xa8\xbd\x17\xa0\x25\x68\xbd\x3e\xc6\xc6\x19\xf7\x89\xa8\x3b\xba\xef\x48\xbf\x4b\xf7\xfb\xea\x09\x19\x3b\xae\x21\x68\x20\x04\x6b\xad\x29\x88\x33\x1a\xd2\xcb\x42\xbb\x2c\xc4\x55\xd8\x65\xa1\xdd\x6b\x72\x61\xc7\xdd\x9b\xa0\x06\x17\x42\x78\x17\x94\x76\xec\x04\xaa\xdd\xb5\x7c\x92\xe1\xf8\xfd\xee\x26\xc8\xe1\xd2\x87\xbb\x20\x6e\xc7\xe8\x40\x12\x22\xa3\x51\x79\x6a\xe2\xd4\x81\x4e\x42\xc7\x18\x40\xd2\x57\x92\xf1\xdc\xf1\x94\xbe\xce\x3c\xd0\xe0\x3e\xee\xa7\xd6\x3a\x75\x20\x41\x3a\xd0\x99\xcb\x0f\x3c\x67\xbf\xb4\x7c\x92\x39\x09\x8f\xfb\xa5\xe5\x23\x8f\x3d\xa4\xaf\xd0\xb1\x43\xc7\x46\xae\xd0\xb1\x71\x80\x81\xa2\x0f\x39\xc0\x91\xb7\xb6\x0c\x1f\x40\xbb\x20\x9d\x71\x01\x21\xd7\x31\xd2\x68\x13\xcf\x39\xc6\x2d\xe8\x86\x2b\x7d\xe2\x50\xf4\x3f\x30\xed\x24\x3c\x1e\x32\xed\x41\x5c\x7d\xae\xa5\xb8\x7a\x28\xae\x4e\x84\x50\x5c\x3d\xf2\xc2\x94\xe9\x05\x68\x09\xc2\xc9\xa7\x20\x3c\xe7\x38\x1b\x5c\xec\x78\x76\x41\x19\x4d\xba\x75\xa0\x21\x28\xcf\x68\x12\xe2\xbc\x04\x5d\xac\x55\x81\xb8\x69\x47\xa4\xee\x0d\xdd\x1f\xa1\x33\x06\xba\x9f\x0d\x08\xdd\x1f\x19\x31\x8b\x11\xdc\x0f\x45\x4c\x88\xcd\xc9\x8e\x77\x13\x94\xb1\xd0\x8c\x0f\x75\x1f\x21\x36\xe7\x20\x69\xff\x9c\x6a\xff\xbf\xec\xbb\x0e\x85\x5d\x48\x51\x32\x3d\x74\x83\x0f\xdd\xe0\xe7\xee\x4f\x81\x38\x1c\xde\x7d\xca\x80\x67\x5e\xd1\x62\xab\x01\x35\x41\x58\x7e\x1a\x10\x8a\x3a\x33\xd4\x16\x5b\x40\x63\x0a\x22\x70\xcd\x05\x84\xc3\x9f\x33\x35\xbc\x30\xf3\x39\xf5\xe1\x24\x5e\x13\xcb\xce\x39\x04\xa5\x10\xab\x6e\x40\x97\x20\x34\x6c\x82\xd0\xf0\x99\xe9\xb7\x2c\x62\xff\x69\x45\x10\x91\xc5\x0a\x50\x15\xc4\x8e\x24\xd9\xd3\xb4\xa3\xb1\xa3\x71\x46\xd3\x8e\x59\x56\x94\x85\xb5\x4e\xdb\x05\xa5\x93\x96\xa5\xb5\x0e\x41\xe9\x7e\xaa\x2c\x4e\xb9\xdf\xb9\x58\x9e\xcb\x73\x2e\x2d\xbf\xb4\x3c\x3b\x2a\xd8\x9c\x8e\xa8\x5c\x9e\xd3\x25\xaa\x4b\xd4\x0e\x24\x51\x3d\xcd\xbc\xa6\x20\x17\x84\x99\x6d\x00\x49\x2e\xcf\xa8\xbe\x24\xbd\x4b\x13\x4e\x54\x27\x70\x9d\x2a\x37\xce\x4c\xfe\x65\x11\xd5\x4f\x25\x7f\x88\xcd\x27\x24\x3b\x1e\x1c\xc8\x05\x3d\x3f\xe4\xd6\x19\x46\x53\xb0\x39\xf1\x09\x2f\xa9\xfb\x4b\x3e\x71\x71\xa9\x1d\x45\x5f\xba\xd4\x97\x2e\xb5\x39\x10\xfa\xba\xf0\x09\xc7\x99\x2e\xf9\xc4\x25\x9f\xc0\x0b\x2f\xf9\xc4\x45\xec\x77\x52\xde\xa5\xd8\x7f\x29\xa3\xa2\xfb\x4b\xb1\xff\x4a\x73\xd4\x6d\x4b\x4d\x5c\x32\x07\x64\x2c\xc2\xee\x65\xa7\xa0\x2c\x33\x37\xea\xcc\x4b\x16\xba\x32\x6c\xd7\x8d\x02\xe7\x5a\x97\x20\x9c\x49\x72\x2d\x54\x78\x65\x08\xaf\x1b\x49\xe3\x52\x08\x87\xd8\xc4\xef\x2f\x1f\x82\x56\x72\x11\x76\x2f\x59\xe8\x92\x85\x16\xcb\xcb\x42\x57\x46\xcf\xba\x11\x7f\x2e\x45\x4f\x88\xcd\xc5\x87\x97\x0e\x94\x11\xb3\x16\x0a\xd7\x2b\xb4\x7c\x90\x93\x96\x20\xe9\x2b\x03\x44\x2d\x38\xe6\xa5\x00\x71\x29\x40\x70\xd3\x2e\x05\x88\x2b\x2d\x54\x0b\xa9\x38\x64\xa1\xe8\x23\xa1\x21\x68\x0a\x92\xee\x17\x90\x09\xca\x03\x15\x22\x40\xa8\xca\x0a\x55\x59\x4b\x1f\xee\x82\x76\xb8\x04\x1d\x82\x08\x1d\x64\x9b\xe8\xe8\x3e\xd2\x9c\xb5\xe0\x13\xa1\x2a\x2b\x54\x65\xb9\x20\x2d\x8f\x85\x0a\xfa\x0a\x59\x28\x32\xae\xd6\x5a\xd3\x1c\x71\x4a\xd4\x13\x51\x49\x8c\x71\x4a\xd4\x24\x53\xc9\x3f\x4e\x2d\x7f\xa5\x0a\x55\x2c\xc5\x35\x04\xa1\xc2\x27\xa4\xb5\xae\x94\xbe\x51\x82\xc6\x25\xe9\x2f\xea\x3a\x72\x52\x5c\xf8\x44\xa0\xc2\x56\x12\xba\xa5\xc2\x3b\x35\x51\x1b\xc5\xd2\x2d\x4d\xdc\x72\x72\x17\xc4\x5a\x77\xd6\x9b\xb5\x91\x80\x6e\xd5\x9b\x10\x9b\x2e\x08\x21\x6e\xf5\x3f\xa8\xf0\xd6\xb1\xef\xac\x2d\x6a\xe7\x5a\xdd\xaa\x2d\x6e\x39\xa6\x8b\x0b\xc7\xbc\x33\x4e\xd4\x5e\xf3\x40\xb7\xe2\xc4\x4d\xb9\x61\x5b\x01\xc2\x57\xef\xbd\x26\x17\xb5\xfe\xbd\x37\x41\xe2\x6a\x40\xe2\xca\x26\xa1\x76\x82\xd5\xad\x26\x01\x62\xb6\xb1\xbc\xe2\xc4\x7d\xa4\x26\x3a\xee\x7b\x1f\x97\xa0\x0b\x2e\x94\x73\x48\xae\x8b\x1d\x09\x43\xf7\xa5\x1d\x2f\xed\xc8\xf2\x97\x76\xbc\x58\x0b\x73\xdc\x52\x34\xc4\x8c\x82\xf0\x56\x55\x7a\x47\x9e\x71\x48\x88\x90\x10\x49\xcc\x30\xda\xad\x72\xe3\xc6\x42\x23\x6b\x44\x57\xd7\xea\x1b\xee\x3b\xb2\x2d\xf1\x0d\xf7\x15\x31\x7b\x72\xed\x40\x96\x8e\x39\x3a\x5c\xb6\x04\xa5\x63\x5a\xea\xde\x37\xd3\x87\x58\x68\x64\x1b\xe7\xdb\xd2\xf2\x49\xcc\xb2\x25\xf4\x8d\x6e\xd3\xb7\xc5\x8e\xce\xf2\x4b\x1f\x2e\x76\x2c\xf5\x57\x53\xb1\x6f\x4b\x02\x65\x8c\xae\x33\x0f\xe7\xdb\xae\xad\x76\x6d\xd5\x80\xb4\xd5\x01\x57\x63\xf7\x53\x5c\xa7\xb8\x3a\x90\xb8\x52\x39\x95\xa2\xc2\x37\x8a\x30\x11\xb3\xc2\x79\x89\x2c\xbe\x45\x1e\x6e\x4a\xec\xb8\x81\x6e\xad\x35\x13\xba\xb5\xd6\x3d\x5f\x1f\xf5\x79\xde\x6c\x0b\x92\x48\x51\x88\x7a\xeb\xbc\xd8\xc1\xb2\x33\xf3\xe7\x6c\xa1\x10\x6c\x2c\xab\x70\x2f\x04\x1b\x11\xb3\xcc\xe1\x5e\x08\x36\x22\x93\x62\xc7\x4b\xc7\x0e\x85\x98\x61\x9c\xb1\x8c\x27\xc4\x8e\x55\x10\x3b\x96\x99\x37\xd8\x32\x38\x7b\x99\x87\xa0\x03\xae\x0a\x74\x0a\xba\x92\x2b\x8b\x12\x2f\x94\x08\x22\xf6\x94\x6b\x72\xec\x62\x70\x19\x72\x99\xb8\x4c\x5c\xa9\x55\x8d\x22\xbc\x60\x66\x5b\x88\x2a\x33\x17\x99\x39\x1b\x78\x2f\xb2\x63\x39\x90\xcb\xe1\x3a\x24\xd7\x21\xb9\x04\x49\xae\xac\xc2\x2b\x25\x82\x97\x53\x5c\xa7\xb8\x10\xf5\x14\xd7\x95\xc1\x66\x4d\x0e\x74\x69\xf9\x24\x66\x95\x63\x5f\xfa\x30\xf2\x06\x93\xd6\xbd\x44\x11\xc4\x0d\xae\x98\x83\xcb\xe3\x25\x8b\xcb\xba\x16\x07\xa2\x5b\x17\x31\x6b\x1c\x3b\x74\xec\xcc\x23\x75\x49\x7a\xf2\x88\x97\x1b\xcf\x91\x39\xee\x21\x28\xa5\xf7\x0d\x15\xde\x12\x82\xb2\xd1\x9a\x20\x49\x8f\x4f\x50\x22\x78\x95\x4f\x54\x7c\xc2\x71\xa6\x2a\x9f\xa8\xf2\x89\x4c\xc5\x5e\xe5\x13\x90\xea\xf8\x57\x95\x4f\x54\xdd\x60\x2e\x75\xd5\x0d\xae\x19\x6a\xab\x57\xad\x75\x0a\xd2\x81\x0c\x88\x03\xd5\x21\x2e\x3e\x1c\xe2\xa2\x81\xb7\xe6\x40\x68\xa2\x72\xcf\xbd\x23\xaa\xac\x5d\x57\xde\x34\x37\xe4\x72\x41\xce\xed\x10\x17\x15\x9b\xd7\x0c\xb5\xd5\x1d\x21\xa8\x07\x44\xcc\xba\x20\x9d\xd1\x11\x02\xad\x56\x97\x10\x8e\x10\x59\x36\x7a\x75\x09\x91\x9e\xd3\x36\xb4\x5a\xe5\x39\x55\x9e\xd3\x05\xe9\xc3\x4c\x8c\x6d\x93\xbe\x4e\x2d\x4f\x62\xb4\x2e\x48\x2a\x4c\xd2\x36\xc2\x5b\x3d\xa5\xc2\x93\x3b\xf4\x84\x5c\x10\x3b\x76\xf4\x25\x2f\xac\xf2\x42\x1c\xb3\x9e\xcf\x1d\xcf\xe4\x1a\x1c\xfb\x94\xa8\xf4\x36\xf6\xfc\x50\x8a\xce\x6a\xa6\x6d\x83\x03\x51\xcd\x88\xac\xca\xe5\xab\xa4\x03\xaf\xd7\x82\x4b\x90\x84\x48\xd2\x07\x9e\x53\xe5\xe4\xf5\x66\xc7\x2c\x7a\x5d\xd3\x3a\x91\xb6\x11\xac\x1a\x23\x03\x11\x53\x04\x68\x8c\x0c\xbc\xa5\x7f\xb5\x92\x59\xd0\x9b\xfc\xab\xc9\xbf\xba\x3e\x34\x41\x27\x5c\x13\xe8\x12\xc4\x81\x38\x63\x93\xe7\xb4\xcc\xe1\xad\x10\x7d\x1b\x39\x5c\xc4\x6c\xb0\xfc\xd0\xf2\xe9\x40\xad\x54\x41\xcf\x0f\x09\x1d\x68\xa2\xd1\xb6\x7a\x9b\x33\xb9\xb8\x69\x6d\x4a\x88\x24\x66\x83\xe5\x99\x5b\x78\x9b\x0e\x17\xa2\xce\x5d\x10\xd7\x7d\xa0\x09\x45\xb9\x96\x31\xab\x15\x3c\xa7\x99\x94\x43\x8b\x63\x59\x82\x7a\x33\x69\xc2\xd0\x84\x8e\x6d\x12\x35\xc9\x58\x4f\x2e\x09\x91\x7e\xdf\x8a\x96\x97\xdf\xb7\x6c\x5e\x5a\x21\xe6\x34\x9a\x17\x11\x33\x8c\xd6\x96\x34\xb1\x38\xf6\x14\xa4\x63\x27\x19\x75\xe3\x8c\x4b\xc7\xce\xda\xa4\x15\x22\x53\x63\x2c\x22\x32\xba\x34\xe1\x5a\xde\xd3\x57\xcb\x62\x47\x97\x26\x1c\x5f\x1d\x98\x96\x9a\xda\x5b\x5e\x85\x56\x16\x6b\xe9\x2a\x40\xcc\x06\x67\x3c\x64\xc7\xcc\x8f\xad\x12\xdc\x9b\xf2\x63\x53\x7e\x9c\xdb\xaf\xa7\xe2\xa6\xf4\xd9\x70\xe5\x4a\x24\x6e\x72\xe5\xa6\x32\x66\x62\xe6\x4b\x62\xe3\xca\x95\x9b\xd2\xe4\xca\x4d\xc1\x99\xbc\xdb\x14\x9c\x5b\x56\x33\xad\xca\xcc\x97\xb4\x92\xc4\x6c\x62\x87\x90\x8c\x99\xb0\x5b\xd5\x79\x95\xb0\x1b\x75\xbf\x12\x63\x0b\x19\x30\x52\x51\x55\xd7\x22\xa4\xa8\x40\x51\x53\x1f\x4a\x88\x9b\xb5\x64\x9a\x5b\x6b\x25\x99\xcb\x11\x42\x21\xbc\x71\xc5\x6a\x76\x66\xae\x31\xb6\xf7\xce\xf2\x68\xb8\x2b\xec\x42\xcc\xa6\xb8\x58\xbe\x0f\xb8\x88\x65\x5d\xd9\xb9\x2b\x3b\x93\x3e\xbb\xb2\x73\xc7\xfd\x5a\x49\x9b\x76\xb9\x1f\xc4\x2c\x5b\x01\xef\x72\x3f\xa6\xe4\xad\xe1\xca\x9a\x92\x7b\x5f\x79\x53\x1a\x17\xb1\x2f\x71\x2d\x6e\x8a\x89\x4b\x3b\x26\x99\x83\x40\xdf\x95\x8a\xbb\x52\x71\x76\xd8\xde\x95\x8a\x7b\x16\xd0\xad\x4d\xad\x75\x09\xe2\x9e\x13\xd5\xbb\xfc\xb6\x67\x65\xd5\x1a\x5a\xed\x7b\x15\x44\xa1\x99\x1d\xb6\x77\x2a\x67\xef\x7b\xba\x5f\x5b\x82\x4e\x41\xb8\x9f\xa1\x89\x5d\xcb\x27\x69\xcd\xc5\xf5\x5c\x9e\x68\xc0\x1d\xe8\x3b\x0e\xd0\xf1\xaf\xe6\x40\xf2\x2f\x88\x59\x76\xd8\xde\x15\x2a\x7b\xba\x49\xeb\xc4\xc5\x2e\x37\x81\x98\xc9\x68\xca\xf4\x3d\x13\x76\xeb\x44\xe2\xae\x84\x0d\x31\x86\x3a\xde\xe5\x00\x1d\x6b\x77\x9c\x69\xc8\xda\x90\xd6\x39\xe3\x50\x40\x1d\x1d\x21\xb2\xc3\xf6\xc1\x50\xc7\x47\xc6\xc5\xd6\x91\x6b\x28\x2e\x42\x8c\xd1\x8f\x0f\x9e\x64\x44\x46\x41\xae\x31\xb4\xfc\x60\x79\x12\xe3\x18\x5a\x7e\x10\xa5\xa8\x40\xc6\xa8\x82\x1a\x5c\xac\xc5\xa8\x5e\xc4\x0c\x45\x0f\x85\xdd\x91\x01\xb5\x75\x5c\x6e\x28\xa0\x42\x4c\xb5\xd8\x98\xda\x31\x2b\xbe\x36\xb2\x87\xf0\xc1\x80\x48\xc4\x98\x3f\xf9\x50\xf5\x37\x88\x9e\x83\x78\x3d\x14\x3d\x21\x66\x8b\x33\x9a\x44\xc5\x31\x07\xd5\xdf\x90\x63\x8e\x0c\x23\x6d\x34\xb8\x14\x27\x20\x66\x8b\x63\x9f\x3a\x10\x19\x75\x6e\x7c\xa8\x8c\x3a\x94\x51\xb3\x2b\xf6\xa1\x8c\x3a\xae\xbc\x43\x93\x92\x7d\x5c\x4b\x10\x77\x48\xfa\x52\x34\x19\x59\x79\x37\x06\x9b\x3e\x54\x79\x43\xcc\xe8\x47\xc6\xad\x0f\x31\x2d\xb3\x4e\x9f\x32\x2d\xa4\xa9\xfc\x9f\x32\xed\x54\xae\x74\x41\x55\x10\x42\x10\x86\xa6\xae\xfb\xd4\x75\xcf\xce\xcc\xa7\xae\xfb\x24\x27\x31\x17\xf3\xa9\x9c\x34\x95\x93\x70\xf2\xa9\x9c\x34\xd1\x17\x5d\x9e\x4f\xe9\x6b\xe6\x7d\x6c\x2a\x7a\xa7\xee\x23\xc4\xe4\x72\x73\xe9\xc3\x4c\x14\x4d\x15\xdb\x54\x95\x35\x55\x65\x61\xed\xa9\x2a\x6b\x92\x21\x54\x06\x4d\x65\x08\x88\x39\x4e\x3e\x95\x21\x20\xbd\x3c\xb9\xb4\x23\xe6\x50\x2a\x9e\x32\xc7\x7c\x9a\x83\x1d\x65\x8e\x79\xa5\xa2\xd7\x06\xd7\x65\x82\xa4\x68\xb4\x2a\x0b\xcd\x6c\x5b\xdb\xc2\x68\x93\xb6\x55\xc4\x8c\xa2\x64\xd2\xb6\xfa\xe4\xd6\x32\xa6\xf4\xa9\x5b\x0b\xb1\xb5\x09\xd2\x81\x30\xed\x22\x4d\x4d\x99\x16\x32\xfb\x10\xa4\x1d\x6f\xbd\x74\x16\x20\x9d\x31\x49\x5b\x5c\xf7\x79\xeb\x8c\x3c\x9d\x3d\xa5\x57\x31\x0e\x69\x8b\xe4\x3f\x55\x8c\x43\x6c\x51\x5c\x9a\xdc\xc4\xb8\xa2\x0c\x20\xdd\x74\x45\x21\xb6\x70\x5f\xd3\x15\xb5\xbc\x37\x6d\x91\x02\x4c\xed\x12\xc4\x56\x76\xfe\x6e\xba\x43\x96\x55\x47\x5b\x68\xc2\xac\x09\x6a\x70\x4d\xa0\x2e\x28\x53\x66\xf6\x0d\xbf\x9a\x8a\x4d\x0d\x38\xc4\x78\x7e\x71\x63\x06\xeb\x86\xaf\x39\xcd\xbc\xc9\xd7\x6c\xb1\x2e\xa6\x31\xa5\x03\x88\x2d\xa2\x81\xc9\xfd\xec\x84\x8b\x4b\x6d\x2a\x80\x21\xb6\x68\xba\xed\x14\x57\xda\xa1\xf1\x0a\xec\x26\x3b\xd8\x2d\x2e\x76\xbc\x9f\x5c\xe7\xeb\xa3\x6f\x2d\xe5\x5a\x52\x27\xc4\x16\xbd\xcd\xd2\xad\x5b\x19\x17\xfb\x46\xc3\xb0\x14\x17\x21\xb6\x48\x8c\x4b\x4a\x5f\x19\xf1\xfa\x36\x58\x4b\x11\x0f\x32\x37\xa4\x5f\x2a\x34\x57\xe6\xdd\xbe\x51\x81\x2c\xe5\xdd\xa5\x97\x70\x2a\xd4\xa5\xbc\xbb\xd2\x0e\x5d\x95\xb3\x1e\x99\x7d\x65\x3a\xe9\x1b\xf1\x67\xa9\x74\x81\x34\xd5\xb1\xeb\xd2\x8e\x1c\x88\x57\x60\xd7\x6b\xab\xf3\xf6\xd9\x99\xca\xb9\xde\x3e\x45\x4c\x77\x40\x6f\x9f\xee\x73\xbc\x3e\x7a\x45\x08\x9f\x53\xd0\x84\x6b\x00\x99\xa0\xbc\x9b\xaa\xcb\x5c\x61\x04\x62\x3c\xd2\xbb\x2b\x8c\x40\xba\x0a\x2f\x57\x03\x0f\xb1\x55\x04\x69\xc7\x74\x80\xce\xfb\xae\xeb\x1d\xd5\x79\x63\xec\x95\x6b\xa1\x37\x46\xdf\x33\x4d\xf5\x46\xe0\xda\x95\xa6\x20\xb6\xe8\x2b\x77\x99\x63\x4f\x15\xf6\xb6\x04\xb9\x20\xac\xcd\x28\x63\x1f\x88\xba\x5b\x2e\xdf\x88\x06\xbb\x5d\x82\xf2\xea\x2f\xf2\xc8\xae\x91\x01\xa4\x77\x3a\x33\xbd\x31\x3a\xaf\x87\xbd\xd3\xb6\xea\xf5\x50\xc4\x16\x43\x0a\xbd\x1e\x3a\xaf\x74\x5d\x39\x5c\xaf\x74\x22\xa6\x00\xb1\x9f\xdc\xa7\x3d\x43\x47\x1f\xdc\xf3\x5d\x3d\x3d\xa4\x6d\x04\x7a\xbd\xbf\x39\x8f\x6d\x7d\x20\x84\x1e\xdb\xfc\xc0\x8e\x83\x32\xe8\x90\x1d\x0f\xd9\x91\xab\x70\xc8\x8e\x3c\xa3\xf5\x41\x32\xd3\x33\x9a\x1f\x2b\x9d\x69\x22\xc4\xb1\x9a\x20\x2e\x35\xed\xf4\xa1\xee\x80\xc7\xb6\xae\x34\xa5\xc7\x36\x11\x5b\xc4\x7e\x3d\xb6\x39\x6f\x48\x9d\x37\x46\xd7\x1b\x92\xf3\x72\xd2\xd5\xbf\xe9\xe5\xc4\xcf\x64\xee\xba\x43\xa7\x6a\x31\x88\x2d\x06\x1e\xa7\x6a\x31\xde\x1e\xba\x86\x27\x7a\x7b\x70\x66\xfc\xdd\xb9\x8f\x9a\xf1\x8b\x18\x4f\x41\x7e\x69\x50\x77\xa5\xee\xc7\x46\x24\xbe\xa4\x7b\x88\xad\x26\x08\x4d\x5c\x99\x6d\xc6\xc6\x15\xbd\x94\x6d\x20\x45\x16\xd2\x8c\xdf\xaf\x63\xf2\xc8\x9c\x2a\xbc\x0e\x13\x64\xac\x55\x80\xf4\x61\x06\x95\xc1\xe3\x80\x5f\x4a\x40\x10\x5b\x8d\xe5\x95\x80\x18\xd5\x8f\x8d\xc4\xa8\x51\xbd\xc7\xcc\x3e\xa9\xb0\x7c\xf0\x28\x26\x62\xbc\x5a\x79\xf0\x28\xe6\xc1\x4b\x77\x21\x28\x04\x2f\xdd\x22\xb6\x9a\x3e\xc4\x7d\x83\xc6\x8f\x81\xbe\x87\x2a\x6f\x48\xe3\x61\xd8\x43\xe3\x4f\x86\xf0\xa3\x90\x51\x35\x84\xf7\x48\xf7\x1d\xea\xb9\x42\xee\x1b\x72\x5f\x3c\x3a\xa4\x42\xc8\x28\xc4\xfe\x90\x0a\x43\xed\x21\x61\x3b\x54\x66\x07\x8d\x5f\x25\x99\x85\x1a\x3f\x88\xf1\xc0\xe6\xa1\xe1\x09\x13\xf7\xc1\x4f\x43\x5c\x13\x77\x67\x4a\x3e\xd4\x4a\x68\x4a\xee\x37\xba\x6f\xe8\xeb\x96\xee\x21\x8d\x97\x39\xbf\xa5\xfb\xfb\xbc\x68\x35\x81\x34\xa4\x80\xd8\xa2\xdc\xb8\x4f\x82\xc2\x9d\x05\xf4\xe8\xb4\xc0\xb7\x0a\x68\x48\xd1\x04\xf9\x56\x01\xcd\x9c\x79\x50\xce\xe2\xe2\x64\xf9\xf4\xef\xd0\xd4\x39\x98\x14\x8f\x91\xae\x15\x9a\x14\xc7\x96\xde\x3a\x46\xde\xce\xd8\x18\xb6\x8b\xd8\xca\x0e\x3f\xb6\x7d\x00\x65\x59\x31\xa6\x3e\xa4\xac\x10\xb1\xd5\x05\x05\x50\x8a\x34\x78\x56\x8f\xed\xd6\x5a\xb7\x5e\xa1\x05\x69\x2d\xa4\xe4\x21\x2d\x34\x85\x8d\x92\x65\xdc\xe0\x7d\x27\x0a\x83\x33\x11\x5b\xbd\xfc\x6a\x16\x8e\xc2\x73\x46\x94\x8c\xa5\x83\x49\x71\x14\x62\x69\x14\xe5\xb1\x6c\xdd\xa2\x90\xc7\x82\x91\xe9\xe0\x41\x20\x34\x32\x8d\xb2\xa7\x7f\x92\x68\xa2\xf0\x9e\x2e\x62\x2b\x13\x4d\x94\x5d\x02\x65\xab\x3b\x28\x4e\xa3\xd0\xea\x8a\xd4\xad\x71\x92\x6c\x7b\x9f\x64\xac\xc1\x87\x74\xbf\x22\xad\x0c\x7d\xa8\xe5\xe3\x84\x6b\x02\x5d\x82\xa4\x4e\xe4\x62\xcc\x19\x8c\x26\xc7\xca\x7b\x13\x1a\x4d\x46\xe5\x2a\xad\x74\xd9\xa8\x5c\x25\x11\x23\xce\x44\xe5\x2a\x45\xcd\xfc\x3a\x18\x4d\x46\xa5\xce\x11\x31\x4a\xb2\xa8\xd4\x39\x51\x33\x5f\x0c\xaf\xe2\xba\x04\x5d\xfc\x5e\xa3\x02\x85\xa0\xe0\xb7\x1f\x70\x49\x5f\xf5\xd0\xcf\x41\x52\xd1\x15\xc7\x16\xb1\xd5\xe1\xc2\xb1\xa3\x66\x42\x18\x9e\x05\x78\xd4\x53\x3b\x9e\xd4\x10\x19\xe3\x83\x09\xe1\x87\xa8\x99\x2f\xe6\xb6\xf1\x21\xf9\x42\xc4\xa8\x0b\xa3\x86\xa4\x8f\x23\xb9\x24\x04\xbf\x3f\x10\xb1\x35\x58\x4b\x2a\x64\x20\x37\x79\x09\x0d\x0d\xe4\xa2\x65\x3d\x32\xa9\x34\xa2\x51\x8f\x88\x18\x05\x65\x34\x92\xa9\xc8\xdc\x32\xab\x44\x23\x99\x8a\xd8\xca\x9a\x3c\xda\xc0\xbf\x5a\x46\xb6\xb9\x39\x1f\x12\xd9\x44\x8c\x77\xdc\x60\x7a\xf6\x21\x18\x56\xcd\xb2\xf1\xa1\xf4\xd5\x52\x13\x93\x9f\xc6\x45\x93\x26\x20\x26\x37\x69\xd2\x04\xb3\x8e\x59\xb2\xa3\x08\xcd\x3a\x82\xc9\xc3\xac\x08\xa1\xc9\x43\xf4\x4c\x6d\x93\xc7\xbe\xe8\xa4\x36\x11\x63\x62\x16\x9d\xc1\x57\x68\xf2\xd0\xb2\xbe\x0f\x4d\x1e\x44\x4c\x2e\xa7\xc9\x43\xf0\x5b\xbf\xd9\x2a\x1f\xf2\x40\x27\x62\x8b\x1b\xdc\x99\x85\x45\x3f\xe0\xca\x50\x1d\xfd\x10\xd7\x21\xae\x05\xf4\xe4\x62\xc7\xc9\xf2\x87\x76\x3c\xb4\xa3\x03\x69\xc7\x9b\xb5\x2c\xf5\xc5\x4c\xe0\x49\x6c\xe1\x13\x1a\x0d\x04\x73\x80\xc9\xf4\x2d\x34\x07\x10\x99\xbd\x0b\x2a\x82\x0a\x4f\xa8\x0d\xa8\x0a\xe2\x43\xae\x3b\x33\x81\x27\x69\xba\x56\x1a\x0d\xc4\xc8\x4c\x32\x89\xa5\x31\x28\xe0\x45\xca\x73\x79\x0a\xf8\xa0\xb9\x9e\x3d\xab\xa9\x50\x73\x1d\x23\xf3\xfe\x1c\x1b\x3b\xee\xda\x31\x49\xe3\x09\x35\x06\x79\x3f\x46\x46\xcf\x49\x0b\x1e\x43\xd1\x13\x62\xbc\x90\xc4\xe0\xa7\x71\x31\x52\x21\x73\xf4\x74\xa6\xc1\x18\x5d\xc4\x16\x91\x78\x30\x3b\x8c\x91\x4e\x3e\x15\x9c\x87\x9c\x7c\x28\x4e\xe0\xd1\x43\x71\x82\xe6\x7a\xce\x2c\x6e\x43\xcd\x75\xcc\xc1\xcf\xa0\xb8\xdb\x53\x81\x6f\xaa\x6b\xca\x4e\x3a\x26\x5d\x53\x4c\xcb\x6b\xc5\x2f\xef\x62\xf2\x33\x04\x91\x32\xb8\x56\x53\x41\x81\xb6\x79\xf2\xac\x1e\x6a\x9b\x63\xa6\x9b\x4d\x5e\xc7\x63\xf2\x13\x34\x11\x5b\x38\xc0\x64\x24\x16\xd3\xc5\x85\x10\x2e\x2e\x17\x97\x01\x89\x2b\x8b\x8f\xc9\xcb\x60\xa8\xfb\x15\xa9\x3c\xf9\x84\xba\xdf\x98\x19\x6a\xa7\xe9\x43\x85\x5a\x88\xad\xc9\xf2\x0a\xb5\x13\xff\xa2\xe9\x8f\x29\xff\x9a\x4f\xff\x42\x7a\xf9\x17\x5d\xe6\xa4\xe7\x0b\x75\x99\x61\x13\xa8\x00\x51\xc0\x8b\xd8\xb2\x0d\x08\x45\xd3\xd4\x4d\xd9\x51\x4d\x5d\x58\x56\x1a\x73\x99\x03\x9d\x82\x88\x4c\x56\x80\xb4\x56\x92\xb9\x5c\x1f\x6a\xad\x45\x92\x37\x41\x64\x2b\x4b\xd7\x98\xcb\x53\x13\xc6\xcf\x25\x45\x6c\x71\x61\x8c\x5f\x7f\x85\xe1\x39\x5e\xd8\x51\x9e\x63\xf2\x1c\xe3\x43\x79\x8e\x65\xf3\x34\x15\xa3\x8d\xe6\x49\xc4\x56\xd6\x23\x61\xfc\xc0\x20\x68\x10\xa7\xe3\x13\x6a\x10\x63\xf1\xa4\xb8\x65\x73\x1d\x4b\x67\x5c\x94\xf9\xdb\xb4\xbf\x4c\xc5\x75\xfe\x9f\x4c\xbc\x68\x02\x44\x6c\xd9\x02\xea\x82\x72\xd9\xd2\xd8\x89\x9a\x46\xc4\xa4\xba\x75\x69\xa7\x94\xda\x0a\x59\x4a\x2d\x9f\x88\x2d\xaa\x85\x25\xa9\xf5\x63\x5d\x25\x54\xfd\x58\x57\xa4\x2c\xae\xd3\x92\x95\x21\xb6\x96\x20\x09\xc1\x78\xa1\xac\xfc\x50\xed\x63\xd0\xa6\x59\xc1\x32\x6a\xd3\xc2\x33\xdf\x5b\x25\x9e\xfa\x7e\x08\x42\xc1\x0b\x2e\xe6\xaa\xe1\x44\xb7\x4a\xb5\xe1\x8a\x6e\x10\x5b\x5a\x5e\x96\xf1\x74\x6e\x6b\x38\xb7\x9f\x4f\x88\xdf\x28\x77\xb8\xe4\xdc\x10\xe3\xd5\x33\x9c\xb7\xab\xf0\x5b\x3f\x81\x66\x47\x9d\x11\x52\x5a\x36\x73\xe1\x3a\x23\x1d\xa5\x35\x7c\x54\x1d\x65\xec\x8c\x3d\x1a\xfa\xda\x4d\x10\xa3\xc3\xb5\x06\x50\x11\x94\xc7\xee\xd9\x76\x84\xba\xc0\xd8\x79\xeb\xeb\xc8\xb5\xf3\xd6\x27\x62\x6b\x4d\xa0\x10\xc4\x87\xf6\x97\xc3\x91\xfc\xff\x3f\xec\xef\x2f\xbf\xfc\xfb\x81\xf3\xa7\xcf\x9f\xe3\xed\x0b\xff\x5a\x81\x7f\x24\xf0\xb8\xe2\xfe\xf8\x16\xbf\xfc\xcb\x87\xf7\x4f\xef\xf9\x15\xff\xfb\xaf\x00\x00\x00\xff\xff\x69\x49\xc0\xae\x25\x31\x00\x00"); -func _cfbgb ()(*asset ,error ){_bdbe ,_cebdg :=_abce ();if _cebdg !=nil {return nil ,_cebdg ;};_fafd :=bindataFileInfo {_ag :"UniCNS-UTF16-V",_bc :617,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492702,0)};_dggd :=&asset {_cd :_bdbe ,_dce :_fafd };return _dggd ,nil ; -};func _dag ()(*asset ,error ){_gfaa ,_bad :=_ccgab ();if _bad !=nil {return nil ,_bad ;};_ddg :=bindataFileInfo {_ag :"Adobe-GB1-1",_bc :1205,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491251,0)};_ecac :=&asset {_cd :_gfaa ,_dce :_ddg };return _ecac ,nil ; -};func _feea ()(*asset ,error ){_eca ,_gfb :=_abf ();if _gfb !=nil {return nil ,_gfb ;};_dg :=bindataFileInfo {_ag :"78-RKSJ-V",_bc :902,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490945,0)};_bbc :=&asset {_cd :_eca ,_dce :_dg };return _bbc ,nil ;};func _cfcfe ()([]byte ,error ){return _dc (_ccfa ,"UniAKR-UTF8-H")}; -var _bdbgf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x39\x6e\x0f\x5b\x3c\x10\x43\x90\x22\xa4\x6e\xa2\x6e\x39\x6c\x5b\x35\x9b\x6d\xa5\xaa\x07\x82\xc7\xa9\xa5\xc6\x20\x03\x87\xfc\xfb\x6a\xc6\x84\xaa\x07\xe4\xcf\xcf\xcf\xe3\x37\xd8\xe9\xbe\x39\x34\xde\x4d\x90\x7e\x0d\x7d\x77\xa4\x09\xac\xf3\x26\xd0\xd8\xcf\xa1\x23\x38\xd3\xc5\xf9\x24\xc1\x0c\x8c\xeb\xa6\xfb\x54\x86\xee\xda\x0e\x49\x92\x9e\xbc\x7b\x7e\x7a\x3c\xbd\x7e\xc4\xe2\xf1\x13\xcc\x23\x2d\xfa\xbe\x39\x1c\x6f\xe3\x44\xd7\xc6\xdb\x1e\xf2\xb8\xdf\xcc\xc3\x52\x03\x20\xfd\x46\x17\x37\x4e\xe1\x06\x0f\x1f\x4c\x7f\xa6\x77\x60\xc8\xb2\xfe\x25\x18\x0a\xce\x5f\xe0\xe1\xf9\x09\x57\xf5\x38\x0f\xc3\x1f\xba\x92\x9f\x40\x8b\x46\xde\xc8\x98\xa4\xfb\x97\x76\xf8\xdc\x5e\x09\xfe\x0b\xf3\x26\xab\xb2\xf8\x46\x61\x74\xbd\x07\x7c\xaf\x54\xf9\x4f\x7e\xbd\x0d\x04\xb8\x14\xf9\x71\x6a\x0e\xf0\x13\x01\x15\x64\xba\x50\xd9\xaf\x45\xff\xfe\xd2\x9b\xd5\x85\x65\x8c\xdf\x39\xd3\xfd\x6e\x43\xb2\xcb\x14\x6e\x6a\xd0\xd5\x96\x31\x2b\x18\xab\x64\x97\x2b\x85\x35\xe8\x52\x0b\x66\x8c\x1b\x46\xcc\x6b\x28\x4b\x55\x24\x3b\x6b\xa3\x63\x2b\xd8\x31\xe6\x82\x24\x8e\x92\x19\x8d\xb0\x58\xd0\xb2\xa5\x62\xcc\xcf\x22\x47\x16\x0b\x2a\x61\x5b\x43\xa1\x04\xf5\x99\x83\xc8\x31\xda\x30\x4a\x3d\x1d\x6b\x6f\x98\x49\x92\x20\xf2\x5f\xbc\x37\x93\x14\x6b\x73\xa1\xf5\x17\x92\xf0\xdb\x1a\x78\xe0\xe3\xb7\xb1\x07\x25\x0a\x72\xfc\x2a\x2a\x9b\xa8\x68\xf6\x64\xa2\x14\x51\x29\xd9\x93\x49\x5f\x5c\xc7\x5a\x55\xb1\x47\x32\x62\x2b\x0a\x72\xd4\xb2\x58\x72\xc4\x73\x65\xc2\xaf\x68\xbd\xd8\x6e\x0e\x81\xfc\x24\x6f\x48\xae\x8e\xaf\xc3\x79\x5a\xdf\xe9\xd0\x0f\xbc\x4b\xbe\xbf\x01\x00\x00\xff\xff\x18\xd8\x4a\x05\xd3\x02\x00\x00"); -func _bbaf ()([]byte ,error ){return _dc (_gag ,"Adobe-KR-8")};func _aecg ()([]byte ,error ){return _dc (_bfee ,"HKm471-B5-V")};func _eecc ()([]byte ,error ){return _dc (_ddae ,"KSC-Johab-V")};var _ebb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\x41\x6b\xdb\x4e\x10\x05\xf0\xbb\x3e\xc5\x1e\xf3\x3f\xfc\x6b\x49\xb3\xb3\xbb\x82\x60\x08\xf1\xa1\x2e\xa4\x29\x4d\x93\x16\x4a\x0f\xb2\xb4\x36\x82\x5a\x16\xb2\x7c\xc8\xb7\x2f\xf3\x9e\xeb\x1e\xc2\xc4\xbf\xec\xce\xee\x1b\xe2\x5d\x3d\x6e\x37\xdb\x71\x58\xdc\xea\xcb\x7c\xea\x5e\xf2\xe2\xf6\xc3\xd8\xcf\xf9\x7c\xba\xcc\x5d\x76\xbb\x7c\x18\xc6\xa2\xa8\x6a\xd7\x0f\xdd\xf2\xf7\x23\x4a\x77\x6c\xa7\xa2\x58\x3d\xf4\xfd\xff\x1f\xdd\xe5\x9c\xaf\x9f\x1f\xb7\x9b\x97\xf7\xf3\x92\x8f\xdb\x71\x7f\x72\xc2\x7d\xfd\x65\xba\xee\x75\x6e\xf5\x35\x1f\x86\xf3\x32\xbf\xbb\xbb\x87\xfe\xb4\xcb\xff\xb9\x3e\xef\xcd\x9f\xe7\x3e\xcf\xc3\x78\x70\x77\x9f\xda\xa9\x1d\xab\xdb\x1f\x5e\x2e\xd3\xf4\x3b\x1f\xf3\xb8\xb8\x0a\x96\xc7\x1e\xb5\x58\x3d\x3e\xb5\xd3\xe7\xf6\x98\x1d\xee\xf1\x06\x05\xbe\xe5\xf9\x3c\x9c\x46\x57\x95\x1f\xca\x32\xfc\xf3\x6f\xef\x53\xbe\x76\x29\x56\xaf\xdb\xcd\xf3\x7e\x7f\xce\x8b\x8b\x4d\xc9\x35\x3f\x5e\xb7\x1b\xf7\xb3\x72\x55\xe9\x6a\x95\x3a\xfd\xba\x2e\xfd\xfe\x74\xea\x6f\x1b\x35\x32\x4d\x37\xf4\x73\x3b\x1e\x72\x71\x5f\x57\x75\xbd\x76\x56\x64\xed\x62\x4a\x11\xe4\x49\x7e\xed\x52\x1d\x12\x48\x49\x6a\x14\xbd\x91\x54\x20\xa9\xb1\xb1\x01\x75\xa4\x6c\xd4\x54\x46\x9e\xab\xbc\x82\xb0\xd1\x07\x52\xb0\x5e\xa9\x06\x45\x52\x44\x7b\x05\x25\x52\xc2\xaa\x12\xd4\x90\x1a\xac\xc2\x55\x7d\x0b\xd2\x1d\xda\xdb\x25\x7c\x8d\x13\x51\x62\x53\x25\x90\x90\x04\xc4\x55\x4a\xb2\x7b\x35\x75\x09\x8a\xa4\x08\xaa\x40\x0d\xa9\x01\xd9\x55\xbd\x67\x2f\x8f\x5e\xb5\x18\x05\x52\x20\x79\x10\xdb\x07\xb6\x57\x10\xdb\x07\xb6\x0f\xa0\x4c\xca\x20\x0b\xe4\x23\x37\x46\x0c\x27\x58\x2f\x65\x20\x65\xa0\x3a\x81\x84\xc4\x13\x1b\x90\x92\x70\xa2\x94\xa0\x48\xc2\x89\x52\x81\x1a\x12\x02\x89\x05\x52\x06\x52\x06\x12\x0b\xa4\x0c\xa4\x0c\x24\xb8\x04\x03\x29\x03\x89\x82\xd8\x9e\x81\x24\x80\x32\x09\x81\xc4\x02\x29\x03\xa9\x05\x8a\x8d\xa4\xe2\x3e\x46\xb5\x4b\xb0\xc4\xc6\x0b\xa8\x25\xb5\xa0\x12\xb4\x23\xed\xd6\x2e\x89\x65\x8c\x51\x3b\x52\x87\x55\x15\xa8\x27\xf5\xb6\x4a\xb8\x31\x93\xf6\x20\x6c\x0c\x25\xc8\x4a\x6c\xbc\x82\x2a\x52\x85\x55\xb8\x57\xa8\x49\x35\x56\x45\x90\x90\x30\x09\xc5\x89\xc1\x93\xec\xdb\x21\x9e\x1b\x95\x84\xe1\x28\x02\x85\x40\x42\x6c\xc5\xbd\x30\x2f\x96\x24\xde\x83\x12\x29\x81\x78\x22\x87\x13\x30\x1c\xe5\x2a\x0e\xc7\x4a\x12\xce\x2b\x70\x38\xa1\x03\x31\x23\x27\x11\x30\x09\xe5\xbd\x38\x09\x2b\x49\x94\xed\xf7\x24\x0c\x87\x57\x8d\x1c\x8e\x95\x24\x1a\x40\x0c\x64\x25\x89\xfd\x47\xc7\x3e\x62\x38\x28\x49\x44\xec\x2d\xbb\x3d\x23\xf6\xbb\xbd\xa2\xb7\x57\xad\xbb\xcc\x73\x1e\x17\xbc\xa1\x78\xbe\xec\xfd\x19\xc6\x7c\x7b\x9f\xa7\xd3\x64\xbb\xf0\xf3\x27\x00\x00\xff\xff\x72\xe0\xee\x65\xcb\x05\x00\x00"); -var _eddd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xc1\x6e\x9c\x30\x10\x86\xef\x3c\xc5\x1c\xd3\x43\x0a\x06\x6c\x77\xa5\x28\x52\xbb\x5b\xa9\x1c\x92\x54\xdd\x64\x5b\xa9\xea\x81\xb5\x07\x64\xa9\x18\xcb\x98\xc3\xbe\x7d\x35\x63\x4a\x0e\xe8\x87\xcf\xcc\x27\x8f\xc7\xe5\xb1\x3b\x75\xde\x25\x28\xbf\xc7\xd9\x9c\x31\xc1\xe0\xbc\x8d\xb8\xcc\x6b\x34\x08\x57\x1c\x9d\x2f\x0a\x51\x83\x75\x26\xfd\xff\xe4\x30\x53\x1f\x8a\xa2\xfc\xfa\x8a\xfe\xfe\x8b\xbc\xff\x06\xeb\x82\x1b\x3b\x76\xa7\xf3\x6d\x49\x38\x75\x7e\x98\xa1\xc9\xb5\x76\x0d\x5b\x3d\x40\xf9\x03\x47\xb7\xa4\x78\x83\xbb\xcf\x76\xbe\xe2\x07\xb0\x38\x10\x7f\x89\x16\xa3\xf3\x23\xdc\x1d\x9f\xcf\x62\xc7\xe7\x35\x84\xbf\x38\xa1\x4f\x50\x31\x43\x6f\x39\x8b\xf2\xf8\xd4\x87\xe7\x7e\x42\xd8\x77\x72\xe1\x15\x5e\xb8\x60\x5c\xdc\xec\x41\x54\x1f\xab\x4a\xbd\xf3\xd7\x5b\x40\x10\x9b\xe1\xad\x3b\xbd\x0c\xc3\x82\x09\x0e\x75\xb6\x97\xbf\xde\xba\x13\xfc\x16\x20\x2a\xa8\x65\x73\x10\x7f\xb6\x5f\x7f\x3e\xcd\x76\x2f\x14\x4d\xee\xc7\x38\x1b\x7b\x3f\x62\xf1\xd0\x8b\xf6\xfa\x08\x5b\x88\x46\xb5\x8a\x98\xec\x99\x51\x88\x46\xb7\x0d\x33\x93\x99\xc9\x4c\x32\xb3\x99\x21\xb1\x8a\x88\x12\x4c\x54\x4d\xa4\x65\x22\x33\x51\x44\x3e\x31\x39\x64\x42\xf6\xb6\x66\x92\x3d\x8a\x3c\x79\x07\x3a\x7b\x34\x79\x24\x9b\x75\xf6\x68\xf2\x48\x36\xeb\xec\xd1\xe4\x91\x6c\xc6\x86\x09\x05\xf5\xa2\x8b\x07\xa3\xb0\x7d\x04\x0a\x49\xee\xea\xa0\x69\x10\x7b\xff\xf4\x4e\x17\x60\x1f\x89\x59\x63\x44\x9f\x78\xfc\x7c\xee\x74\x70\xce\xe3\x7e\xbd\xc2\x1c\xa8\x8a\x9f\x7f\x01\x00\x00\xff\xff\x8d\xf3\x1a\xd0\x8a\x02\x00\x00"); -func _caad ()(*asset ,error ){_acge ,_aeddb :=_bdac ();if _aeddb !=nil {return nil ,_aeddb ;};_fdcc :=bindataFileInfo {_ag :"KSCpc-EUC-V",_bc :715,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493255,0)};_ccabc :=&asset {_cd :_acge ,_dce :_fdcc };return _ccabc ,nil ; -};func _dgc ()([]byte ,error ){return _dc (_cef ,"Adobe-CNS1-4")};func _dgeb ()(*asset ,error ){_faf ,_gfeg :=_fbcg ();if _gfeg !=nil {return nil ,_gfeg ;};_acaa :=bindataFileInfo {_ag :"CNS2-V",_bc :371,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491570,0)}; -_fbbc :=&asset {_cd :_faf ,_dce :_acaa };return _fbbc ,nil ;};func _cab ()(*asset ,error ){_acb ,_fgca :=_degb ();if _fgca !=nil {return nil ,_fgca ;};_eacd :=bindataFileInfo {_ag :"EUC-H",_bc :2837,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491850,0)}; -_faae :=&asset {_cd :_acb ,_dce :_eacd };return _faae ,nil ;};func _fcee ()(*asset ,error ){_ceff ,_cdc :=_fdff ();if _cdc !=nil {return nil ,_cdc ;};_cacec :=bindataFileInfo {_ag :"UniCNS-UTF8-V",_bc :656,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492730,0)}; -_ecfd :=&asset {_cd :_ceff ,_dce :_cacec };return _ecfd ,nil ;};func _fge ()(*asset ,error ){_ccgf ,_aab :=_bbcb ();if _aab !=nil {return nil ,_aab ;};_agce :=bindataFileInfo {_ag :"HKscs-B5-H",_bc :21008,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492459,0)}; -_bacg :=&asset {_cd :_ccgf ,_dce :_agce };return _bacg ,nil ;};var _acfc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\x90\x82\x01\xe3\x56\xaa\x2a\xb5\xe4\x10\x54\x25\xad\x4a\x9b\x5d\x69\xb5\x07\x62\x4f\x90\xa5\xc5\x58\x06\x0e\x79\xfb\xd5\x8c\x59\x76\x0f\xd1\x84\xcf\xf8\xd7\x78\x4c\x5a\x37\x87\xc6\xd9\x19\xd2\x3f\x61\xd4\x2d\xce\x70\xb3\xce\x04\x9c\xc6\x25\x68\x84\x2b\xf6\xd6\x25\x89\xc8\xc1\x58\x3d\xbf\x3d\x72\xd1\x43\xe7\x93\x24\x3d\xfe\xea\xb5\x9e\xf6\x3f\xe5\xfe\x08\xcb\x84\xab\xd6\xcd\xa1\xbd\x4f\x33\x0e\x8d\xbb\x8d\x50\xc4\xdd\x66\xf1\x6b\x02\x40\xfa\x17\x7b\x3b\xcd\xe1\x0e\xbb\x1f\x66\xbc\xe2\x27\x30\x78\x23\xff\x1d\x0c\x06\xeb\x7a\xd8\xd5\xe7\x56\x6c\xdc\x2e\xde\xbf\xe0\x80\x6e\x06\xc1\x86\xce\x70\x4d\xd2\xfa\xd4\xf9\x73\x37\x20\x7c\xe8\xe5\xc2\x6b\xbc\x74\xc1\x30\xd9\xd1\x81\xc8\x3f\x67\x99\x7c\xf7\x7f\x77\x8f\x6b\x56\x92\x3e\xfe\x6f\x0e\xf0\x24\x40\x64\x90\x4b\x99\x67\xcf\xab\x3f\x9c\x46\xb3\xbd\x25\xf2\xd8\xbe\xb6\x26\x74\xae\xc7\xe4\x5b\x27\xca\xeb\x77\x58\x8b\x28\xaa\xb2\x22\x93\x1d\x1b\x15\x51\xa8\xb2\x60\xd3\xd1\x74\x34\xc9\x66\xa2\x21\x59\x46\x52\x09\x96\x2a\x27\x29\x59\x64\x94\x8a\xe4\x0b\xcb\xd7\x28\x94\x5e\xe6\x2c\x31\xa7\xa2\x9c\xd8\x81\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\x63\xc1\x42\x85\xce\xa2\x68\xc6\xdb\x59\xe9\x3f\xdd\xed\x36\x6d\xbd\x84\x80\x6e\xe6\x9b\xe5\x81\xd2\x90\xac\xc3\xed\xdb\xf1\xa3\xa7\x5d\xfc\x7b\x0d\x00\x00\xff\xff\x90\x65\xb7\xe6\x67\x02\x00\x00"); -func _eaee ()(*asset ,error ){_ccde ,_dddgb :=_dfadbc ();if _dddgb !=nil {return nil ,_dddgb ;};_edgg :=bindataFileInfo {_ag :"UniCNS-UCS2-H",_bc :324097,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492685,0)};_egd :=&asset {_cd :_ccde ,_dce :_edgg };return _egd ,nil ; -};func _dcgg ()([]byte ,error ){return _dc (_babd ,"HKm471-B5-H")};func AssetExists (name string )bool {_ ,_fdcdg :=_fcbe [_c .Replace (name ,"\\","/",-1)];return _fdcdg ;};var _ccf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\xb1\xae\xd3\x4c\x10\x05\xe0\xde\x4f\x31\xe5\xfd\x8b\x9f\x78\x77\xbd\x5e\xaf\x84\xae\x84\x92\x82\x20\x5d\x40\x04\x2e\x48\x88\xc2\xb1\x27\x91\x25\xb2\xb6\xd6\x76\x91\xb7\x47\x73\x26\x98\x22\x9a\xf8\x8b\xe7\xe8\x14\x93\xdd\xfe\x78\x38\xa6\x61\xa1\xdd\xe7\x3c\x76\x27\x5e\xe8\x32\xa4\x3e\xf3\x3c\xae\xb9\x63\x3a\xf3\x75\x48\x45\x61\x2c\xf5\x43\xb7\xfc\x7d\xc4\xe8\x6e\xed\x54\x14\xbb\xd0\xfc\xff\x9e\xd6\x99\x1f\x8f\xfb\xe3\xe1\x74\x9f\x17\xbe\x1d\xd3\x65\x24\xa7\x6b\xfd\x3a\x3d\x56\x89\x76\x5f\xf8\x3a\xcc\x4b\xbe\xd3\xd3\xbb\x7e\x3c\xf3\x7f\xd4\xf3\x45\xfc\x53\xee\x39\x0f\xe9\x4a\x4f\x1f\xda\xa9\x4d\x66\xfb\xe1\xb4\x4e\xd3\x6f\xbe\x71\x5a\xa8\x84\x71\xea\x31\x8b\xdd\xfe\xa5\x9d\x3e\xb6\x37\x26\xa9\xf1\x0a\x84\xbd\x72\x9e\x87\x31\x91\x29\xdf\x94\x65\xfd\xcf\xbf\xde\x27\x26\xf3\x58\xfe\xf1\xed\x78\xa0\x9f\x86\x4c\x49\xd6\x3b\xef\x7e\x3d\xfc\xfb\xcb\xd8\x6f\x6f\xd9\xa0\xcd\xbb\xa1\xcf\x6d\xba\x72\xf1\xd6\x1a\x6b\x9f\x49\x86\x7b\xa6\xd0\x34\x41\xc8\x19\x90\xb3\xa0\x08\xea\x94\x58\x28\x1a\xa1\x4a\xdf\xaa\x3c\xa8\x02\xb5\x20\x7f\x06\x61\xb1\xd6\xb7\x64\x84\x68\x24\xbe\xb2\x20\x8c\x10\x4d\x03\x72\x4a\x0e\x14\x41\x5e\x49\xe2\xa3\x2d\x41\x41\x29\x80\x0c\x28\x2a\x45\x90\x15\xaa\x34\xab\x42\x96\x75\x42\xb5\x52\xad\x54\x81\x34\xbe\xd6\x78\x0f\xd2\xf8\x5a\xe3\x6b\x10\x2b\x31\x48\xda\x7b\x6d\xef\xb5\xbd\x6d\x40\x4e\x49\xe3\x23\xc8\x2b\x21\xde\x95\xa0\xa0\x84\x78\x67\x40\x51\x09\xed\x9d\xb4\xf7\xda\xde\x6b\x7b\x27\xed\xbd\xb6\xf7\xda\xde\x55\x20\x8d\xd7\xf6\xce\x83\x34\x5e\xdb\xbb\x1a\xc4\x4a\x68\xef\xd0\x3e\xe8\x62\xa8\x41\x8d\x5c\xdf\x76\x0c\xf2\x5d\xee\x7e\xbb\xc3\x6e\xcd\x99\xd3\x82\xab\xc7\xc5\xc9\x15\x0d\x89\xb7\x3f\xd4\x34\x4e\xb2\x85\xcf\x9f\x00\x00\x00\xff\xff\xc4\x5a\x5d\x5a\x7c\x03\x00\x00"); -var _cbdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x98\x41\x6f\x1c\xb9\x11\x85\xef\xfa\x15\x7d\xdc\x1c\x1c\x93\x55\xe4\x90\x04\x0c\x01\x81\x7d\x88\x16\xd8\x64\x11\xc5\xbb\x01\x82\x1c\x7a\x66\xd8\xc6\x00\xd1\x68\x30\x92\x0e\xfe\xf7\x41\xbd\x6f\xa2\x60\x83\x3d\x18\xcf\xfe\x4c\x16\xeb\x15\x8b\x64\x4b\x1f\x3f\x3f\x7c\x79\x38\x9f\x5e\x97\x8f\x3f\x5f\x9f\x0f\x8f\xf3\x75\xd9\x4e\xe7\xe3\x75\xbe\x3c\xbf\x5d\x0f\x73\xd9\xcf\x6f\xa7\xf3\xdd\x5d\xb6\xe5\x78\x3a\xbc\xfe\xf7\x9f\x92\xc3\xd3\x7a\xb9\xbb\xfb\xf8\xf5\x7c\xfa\xf1\xe1\xf1\xc3\xd7\xcf\x8f\xf6\xe1\xcf\xcb\xdb\xcb\xbc\xf1\xcf\x0f\x5f\x1e\xbf\xbf\xbc\xce\xa7\x87\xf3\xf6\xbc\x38\xf3\x8f\x6f\x97\x5b\x8c\x65\xf9\xf8\xb7\xf9\xed\xf4\xf2\x7a\xfd\xbe\xfc\xf0\xa7\xe3\xf3\x7e\xfe\x61\x39\xce\x2d\xf8\x5f\xaf\xc7\x79\x3d\x9d\xbf\x2d\x3f\xfc\xb8\x5e\xd6\x73\x7e\xff\x8f\xc7\xb7\xcb\xe5\xdf\xf3\x69\x9e\x5f\x97\x22\x36\xcf\x47\xe9\xdd\xc7\xcf\x3f\xad\x97\xbf\xac\x4f\x73\xb9\xe5\xf3\xf3\xf5\xf9\x96\xd2\xaf\x1f\x7e\xd1\x18\x0d\xf9\x65\x5e\x5f\x4e\xcf\xe7\x25\xff\x31\xa5\xfa\x3f\xfc\xf7\xef\x97\xb9\xe4\x5b\xa8\x7f\x7c\x7d\xf8\xb2\xfc\x33\x2f\x39\x2d\x56\xab\xf7\x7f\xdd\xf8\xaf\x3f\x3d\x1f\xdf\x47\xe5\x94\x30\x72\x38\x1d\xaf\xeb\xf9\xdb\xbc\xfb\x94\x92\xa5\xfb\xe5\x53\x4a\x75\x7f\xbf\x98\xe7\x20\xf5\x00\x39\xdc\x2f\xbd\xe5\x21\x74\x14\x6a\xf3\x7e\xb1\x61\x41\xd6\x2a\x12\x62\x43\xd3\xf6\x04\x0a\xe9\xb6\x1b\x77\x9f\x2c\xe5\x40\x48\xeb\xc3\x85\x2a\xa8\x0a\x99\xd0\x0e\xb4\x13\xaa\x42\x1d\x34\xee\x97\x6c\xb9\x31\xf3\x00\x3b\xde\x2f\x6d\xd4\x5d\x20\x23\x98\x11\xac\x0b\x11\xcc\x08\xd6\x02\xb9\x09\x85\x74\x23\x96\x3b\xc8\x03\xf5\x40\x79\x28\x57\x49\xf3\x2e\x92\x21\x39\xc8\x4e\xc4\x20\x16\x64\x88\x38\xc4\x83\x34\x91\x0a\xa9\x91\xba\xe5\x12\xec\x50\xc4\x42\xba\xe7\x2c\xc4\xb0\x90\xee\x39\x09\xed\x40\x3b\xa1\x28\x4d\x9e\xa0\x90\x9e\x6e\xa8\x81\x9a\x90\xc2\xcf\x0e\xea\x42\x0a\x3f\x07\x68\x08\x85\x41\xa3\x58\x76\x2b\x56\x94\xd9\x5c\x25\x95\xb4\x3e\x22\x96\xcd\x4d\x28\xe4\x56\xbf\x9a\x54\x99\x9a\xa2\x0e\xa5\x67\x21\x03\x85\xed\xd2\x86\x50\x01\x55\x8d\xaa\x42\x3b\x50\x13\x72\xa1\x0e\x1a\x42\x4c\x5c\x41\x7b\x21\x56\x3c\x80\x22\xaf\x32\x88\x75\x04\x1d\x85\x18\x35\x41\x53\x68\x27\xb4\x81\x36\xa1\xd8\xc5\x4a\x0f\x4a\x5a\x4d\x4a\x22\x67\x50\x16\x52\xf8\x8c\xa1\x90\x56\x53\x11\x72\x90\x0b\x29\x7c\xc6\x63\x48\x2b\x43\x95\xa0\x9f\x25\xad\x0c\xc2\x63\x5b\xfd\x5c\xd4\xe2\x35\x37\x90\x2a\x31\x08\x4f\x25\x42\x5a\x19\xaa\x44\x1e\xa0\xa1\x15\x09\x4f\x71\x42\x5a\x4d\x49\x68\x0f\xda\x0b\x11\x9e\x7a\x85\xb4\x6a\x24\x41\xbd\x74\x5a\xaa\xa9\x5e\x99\x7a\x85\xb4\x6a\xd8\xa6\x5e\x21\xad\x9a\xf2\x32\xea\x65\xaa\x97\xc9\xb6\x51\x2f\x53\xbd\x4c\xa9\x1a\xf5\x32\xd5\xcb\x54\x68\xa3\x5e\x16\xc5\xa9\xae\x54\x69\x39\x49\xab\xae\x15\x39\x9f\x92\x56\x5d\xa9\x1a\xc5\x09\x69\xd5\x65\xc8\x28\x4e\x48\xab\x4e\x5e\x14\xc7\x54\x1c\x1d\xb5\x6a\x14\xc7\x54\x1c\x27\x55\x8a\x63\x2a\x8e\x93\x17\xc5\x31\x15\x27\x93\x04\xc5\x31\xd9\xce\x8a\xe5\xd8\x76\xd9\xce\x8a\xe5\xd8\x76\x35\x80\xc9\x90\xd3\x00\x2e\x8f\x89\x89\x78\x74\x65\x9f\x54\x1c\x27\x7b\x57\xf6\x49\x49\x38\xd9\xbb\xf2\xd2\x41\xae\x4e\x12\xae\x24\x8a\x2a\x51\x48\xa2\x28\x89\xa2\x06\x28\x24\x51\x54\xfb\xa2\x24\x0a\xb5\x2f\xaa\x7d\x51\xac\x42\xed\x8b\x52\x2d\xca\xab\x90\x6a\x51\xaa\x45\x79\x15\x52\x2d\xda\x8e\x22\x8f\x85\xed\x28\xda\x8e\xa2\x54\x0b\xdb\x51\x64\xa8\x92\x17\x86\x8a\x0c\x55\x56\xc4\x50\x51\xed\x6b\xe4\xb5\xa3\x0b\x25\xdd\x2c\x0b\x1d\x41\xc7\x40\xf1\x94\xd8\x8e\x2e\x94\x74\x33\x13\xda\x40\x9b\x50\xc4\x6a\x5c\x30\x92\x78\x00\x22\xb1\xb6\xaa\x14\x92\x6e\x51\x69\x4f\x71\x27\x85\x44\x29\x7a\xdc\x1d\x9e\x74\xc3\x78\xd2\xe1\x1e\x49\x48\x27\x19\xe9\xd6\x92\x50\x01\x55\x8d\xca\x42\x07\xd0\xfb\x65\xe8\x7a\x6b\x6e\xc2\x93\xe3\x49\xb9\x22\x6d\x54\x85\x2f\x24\xa1\x2d\x1a\xb9\x0b\xb1\xa2\xf6\x63\xe4\x11\x6f\xfe\xfb\x9b\xfb\x7b\xcf\xb0\x27\xed\x0d\xd2\x86\x29\x47\x6d\x04\xd2\x86\x29\x47\x55\x1d\x69\x23\x8a\xe7\x69\xc7\x52\x3b\x2d\x15\x67\xdf\x53\x07\x75\x90\x9c\x74\xc2\x77\xc2\x57\x21\xc2\x77\xc2\xcb\x5c\x9f\xa0\x29\x24\x73\x63\x2f\x14\xd2\xad\x69\xc5\x41\xa1\x86\xf6\xb9\x29\xaf\x95\x12\xac\x2a\x81\xa9\x04\x2b\x49\xac\x24\xa1\xdd\x5a\x49\x62\x55\x12\x2e\x8f\x2b\x49\xac\x4a\xc2\x89\x85\xc7\x55\x1e\x5d\x2b\x1e\x88\x75\x50\x2c\x97\xc7\x09\x9a\x20\x79\x9c\x84\x9f\x84\x97\xc7\x49\xf8\x49\x78\x79\x9c\x78\x9c\xf2\xe8\xf2\xb8\x31\x71\xdb\x09\x29\xfb\x0d\x8f\x1b\xcd\x10\x79\xb9\x9e\x41\xa4\x7b\x74\xbc\x3b\xed\xe7\xea\xd2\x3c\x6a\x17\x73\x58\x34\x9b\x3b\xa8\x80\x8a\x86\xed\x98\x5a\x61\x7a\xff\x65\xc9\xf5\x5c\x22\x31\x8c\x45\x1b\xac\xc1\xaa\x58\x87\x75\x18\x73\x07\x6c\xc0\x58\x76\x85\xad\xb0\x9d\xd8\x1e\xb6\x17\x6b\xa4\x72\x80\x1d\x60\x26\x76\x84\xd1\xf9\x0c\x53\xe1\x3c\x4e\x51\x0c\xd3\xb2\x1c\x23\x49\x1b\x45\x19\x67\x8c\x65\x19\x2b\x9a\x99\x31\x96\xf5\x61\xe3\x20\x7c\x65\x7c\x75\x18\xbe\x42\xba\xc7\xe7\x95\x7b\xc6\x56\xc6\x56\x57\x6a\x19\x5b\x71\x28\x83\x15\xb1\x5b\x6e\x53\x7b\x43\x6a\x3a\xa8\x1e\x8f\x56\x0c\x53\x45\xf4\x6a\x21\xdd\xd5\x93\x6e\x6c\x97\x69\xbb\x0a\xa3\x30\x65\x6c\x17\x9b\x6f\xb8\x0a\x09\xa6\x15\x0c\x5b\x7a\xca\x46\x65\x18\xb6\xf4\x94\x8d\xa2\xdd\x32\x5c\x19\x16\x86\x76\xc1\xb0\x10\xd2\xbd\x82\xd8\x18\x3d\x5c\x03\x07\xc6\x1e\x18\x46\x07\xe9\x62\x34\x9e\xa9\x6c\x29\xa9\x20\x4e\x17\x86\x74\xa7\x09\x1d\xa3\x6e\x0c\x53\x22\x8e\x53\xa7\x31\x55\x36\xc7\xa9\x57\x86\x31\x15\x57\x2e\x57\xf1\x94\xb8\x3b\xae\x42\xb2\xe9\x9b\xd3\xdd\xb1\x15\x12\x4c\x1e\x9c\xdd\x0a\xe9\x5e\xe4\xc1\x71\x1a\x12\xc3\x08\x87\xd5\x90\xee\x45\xb6\x9c\x16\x0c\x89\x61\x6a\x07\xc7\x7e\x48\x30\x92\xc3\x7e\xc1\xbe\xae\x49\xe7\xfa\x95\xc4\x38\xc5\x2b\xf8\x2f\xda\x68\x4c\x70\x25\x7b\xbc\x74\x31\x55\xd9\x71\xc3\x4a\xba\x57\x86\xe1\xab\xe0\xcb\x60\xf8\xe2\xd6\xa5\xa5\x0b\xbe\xf4\xfc\x8d\xaa\x8a\x14\x6c\x15\x3c\xe8\x12\xf4\x82\x87\xa2\x63\x44\x45\xca\xcd\x82\x5a\xd5\x89\x4f\xab\x56\x5c\x71\x40\x2a\xae\xaa\x6e\x54\xfa\xb2\x62\xaa\xb2\xa9\xec\x60\xc5\x55\x48\x30\xc6\xb1\xab\x21\xc1\xb4\xf9\x95\xfe\xad\xb8\xe7\x70\x55\xdc\x57\xb9\x2f\x0a\xd7\xf0\x10\x92\x2d\xdd\x18\x7b\xd3\xf0\x85\x89\x86\xaf\xc6\xde\x14\xb5\x61\xc3\x58\x48\x30\x9d\x87\x86\xb3\x90\xee\xf1\x12\x6d\x9b\x6e\xaf\x6d\xd3\x4f\x00\x3d\x9a\x7a\xdb\x74\x01\x21\xdd\xe2\xee\xda\x36\x5d\x36\x48\xb7\xa6\x89\x3a\xf7\x48\xb6\x1c\x6f\xf6\xb6\xe9\x81\x46\xda\x88\xee\xda\x36\x75\x17\xd2\x46\x7c\xef\x6f\x9b\x33\xca\x35\x2a\x29\x58\x7c\x75\xdd\xa4\xf5\x91\x02\x55\x26\x56\x26\xd6\xdf\xbe\xd9\xe5\xff\x5f\xec\x6d\xab\x64\x5d\x79\x22\x76\x42\x2c\x54\x59\x08\x84\x91\x10\xbe\x2a\xb6\x4d\x4f\x17\xd2\x7a\xff\xed\xc7\x41\xfc\xfd\x69\xbd\xdc\xbd\xff\x6a\xe0\xf0\x76\xbd\xce\xf3\xab\x7e\x11\xa1\x1f\xfb\xe3\x47\xf9\xd3\x79\xbe\xff\xb2\xe3\xf2\x7c\x89\x59\xfa\xf3\x9f\x00\x00\x00\xff\xff\x39\x89\xff\xa0\x18\x11\x00\x00"); -func _fdbd ()([]byte ,error ){return _dc (_cfae ,"GBK-EUC-H")};func _ceffg ()([]byte ,error ){return _dc (_bdbgf ,"UniGB-UTF16-V")};func _acf ()([]byte ,error ){return _dc (_agca ,"Adobe-GB1-UCS2")};func _ccgfd ()([]byte ,error ){return _dc (_cedb ,"UniCNS-UCS2-V")}; -var _geab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9a\xc4\x35\xe8\xb2\x71\x76\xd9\x06\xe3\x41\x7c\x28\xca\x17\x5c\xf7\x26\x37\xb3\x06\xf5\xef\x8d\xd6\x8a\x67\xad\xc8\x82\x86\xf3\x4e\xce\xab\x27\x22\x24\xed\xad\xad\xad\xfd\xad\x3f\xfe\xc3\x3f\xfe\x97\x7f\xfc\xf5\x97\xbf\x7d\xfd\xf1\x7f\xfb\xfd\xb7\xf3\xcf\xf3\x6f\x5f\xf7\x2f\xbf\x5e\xbf\xcf\xbf\xfe\xf6\x6f\xbf\x9f\xf3\xeb\x98\xff\xf2\xcb\xaf\x7f\xf8\x43\x88\x5f\xd7\x2f\xe7\xdf\x3e\x4d\xfc\x39\xff\x75\xff\xcb\x1f\xfe\xb0\xbe\xff\xf3\xbf\xff\xf5\x6f\xf3\x5f\xff\xf1\xd7\xfb\xb7\xaf\xc4\xf7\xae\x7f\xfb\xcb\xf3\xee\xd7\xd7\x1f\xff\xf7\xf9\x2f\xbf\xfc\xf5\x6f\xbf\xff\xfb\xd7\x7f\xfa\x9f\xaf\xdf\x8e\xf9\x3f\x7c\x5d\xf3\x5e\xbf\xff\xaf\xbf\x5f\xf3\xf7\x5f\x7e\xfd\x97\xaf\xff\xf4\x0f\xff\xf4\xe7\xa0\x9f\xff\xfc\x6f\x7f\xf9\xcb\xff\x37\xff\x75\xfe\xfa\xb7\xaf\x86\xdf\xe6\xaf\x17\xfe\xfe\xe1\x8f\xff\xf0\x5f\xf7\xbf\xfc\xd3\xfe\xaf\xf3\xeb\x8f\xff\xfc\xeb\x2f\xff\xf0\x4f\x7f\xfe\xcf\xff\xfc\xdf\xfe\x94\xe2\x7f\xfe\x5f\xf0\x18\x4f\xff\x8f\xf9\xfb\x5f\x7f\xf9\xed\xd7\xaf\xf0\x3f\x6e\x61\xf8\xe7\xff\xf6\xef\x7f\x99\x5f\xe1\xe9\xe5\xff\xfa\xe7\x7f\xfc\x2f\x5f\xff\x77\xf8\x0a\xdb\x57\x2c\x65\xa4\xff\xe7\xf9\xfd\xff\xfc\xaf\xbf\x5d\xf3\x6b\x63\x2b\x70\xfe\xe7\x6f\xd7\xfc\xeb\x5f\xf6\x73\xfe\xbe\xff\xfa\x2f\xf3\x0f\x5f\x5f\xff\xd3\xf6\xfc\xfb\x5e\xff\x0d\xdb\x9f\xfe\xf4\xa7\x3f\x7d\xaf\x29\xfe\x87\x37\x3f\x1d\xfc\xfa\xdb\xdf\xae\x79\xf3\xb7\xbf\xff\x76\xfd\x0b\xf7\xf7\x57\x58\x5f\xbf\x5f\xfb\x43\xd8\xb6\x67\xf4\x5f\xae\xf3\xff\xdd\x7f\xff\x7c\xb8\x6f\xeb\xed\x4f\xa3\x7c\x7f\xc5\xba\xa9\xd9\xbe\xbf\x42\xeb\x6a\xf6\xef\xaf\x90\x5a\x6e\xfa\x61\x7c\x7f\x8d\xaa\xd6\xf9\xfd\x15\xf2\x96\x87\x7e\x58\x13\x19\xe5\xd3\x3c\xb6\xef\xaf\xd8\xd5\xf9\x11\xbe\xbf\x62\x88\x6a\xae\xb1\x82\x5e\x3e\xd7\xb4\x7a\xeb\x1a\xfc\x0c\xfc\x41\xc3\x9d\x1d\x3f\x0c\xf5\x70\x0e\xfe\xa0\x11\xce\x7d\xfd\xd0\x37\x81\x77\x45\xbe\xa1\x3e\xae\xc4\x1f\xb2\x7e\x68\x6b\x52\xea\x61\x6e\xec\x41\xd3\x9a\x81\x3f\x24\xfd\x80\x59\xf4\xd7\x27\x83\x6f\x68\xe2\x93\xb3\x48\x9a\xe7\x3c\xf9\x89\x06\x9d\x17\x7f\xd0\x1b\x77\xe4\x0f\xea\xe3\x4e\xfc\x41\x13\xbf\x31\x4f\x01\x76\x73\x16\x59\xb3\xb8\x39\x8b\xe8\x2e\x39\x8b\xe8\x37\x38\x8b\xf8\x59\xcc\xb0\x3d\x18\x2f\xfa\xe1\x81\xf5\xd3\x47\x08\x44\x5f\x1f\xfa\x81\xd3\xda\xd4\x47\xd8\x89\xcf\xa0\x1f\x0e\xbe\xa1\x4f\x22\x7f\xd0\xd4\x43\xe6\x0f\xd9\x3f\x9c\xec\x23\xe9\x87\x07\x3d\x9a\x58\xe1\xb0\x49\x9d\xd6\xa7\x53\xfd\x70\x5e\x9c\xa9\x26\x76\x4e\xce\xe3\x83\xf3\x70\x71\x65\x83\x46\xb9\x48\x5f\x22\xd7\x70\x3d\x8b\xa0\x3e\xae\x4c\x8c\x69\xa6\x57\xe5\x0f\xee\x83\xcb\x10\x3d\xca\x83\x75\x77\xfa\x60\xfd\xb3\x90\xb1\x70\x1e\xa9\xe8\x87\x07\xeb\x7e\x83\xc3\xa6\xa6\x1f\x08\x6d\xd2\x1b\x95\x9f\xa4\xa4\x1f\x38\x6c\xd6\x0f\xad\xf0\x8d\x0f\x41\xc5\xfe\xa0\x30\xeb\x87\xe7\x93\xcf\x62\xc7\xb3\x72\xb3\xeb\x93\xb3\x7d\x7f\x15\x21\x30\xae\xcd\x55\xb4\x0f\xe2\x79\xac\xa6\xa0\xc0\x02\x0c\x7d\x7b\x8d\xf5\xf4\xd3\x77\xda\xf2\x9b\x31\xa4\xed\x3f\xf0\x95\xb4\x9d\xef\xa1\x32\x08\x31\x0d\x01\x9c\x0b\x7f\xa8\xcf\x7a\x87\x79\x4c\x2e\x5e\xd7\x0f\x37\xf1\xac\x37\xce\x67\x27\x6f\xfa\xe1\x41\xda\xb3\x9a\x71\xdb\xd6\x7a\xa7\xfa\x01\x38\x6e\xa0\xee\xa8\xe7\x61\x4d\xfa\xb3\xd6\x71\x8b\xeb\xf5\xcf\x1c\xe3\x16\x17\x86\x83\x5e\x8e\x0b\x7b\x1f\xa6\x10\xb7\xd8\xfe\xee\xe5\xb4\xbe\x6d\xea\x2a\xad\x6f\x5b\x54\x73\xad\x6f\x6b\x6a\xce\x17\xb2\x22\xb9\x6c\xab\x1f\xa6\x16\xc3\x96\x16\xcf\xae\x6a\xae\xce\x3e\x0c\x2d\x86\x6d\xac\xa7\x9f\xce\x42\xa8\xe0\xd1\x45\xcf\x63\xe0\x0f\x45\x3f\xc4\xef\xaf\xa1\xf7\xc7\xe2\xd9\x42\x49\x18\x8b\x67\x67\xbd\x3b\xe2\x6a\xfa\xe5\x35\x93\x5c\x71\x70\x3d\x87\xcc\x7f\xe7\xd8\x89\x61\xf4\xef\xaf\x58\xa2\x9a\x6b\x9a\x45\x30\xcd\x86\x05\xfe\x30\xea\x18\xc3\x3a\x98\x4a\x53\x73\x5f\xec\x2f\xa9\x39\xbf\xbf\xe2\x87\xb5\xc5\xb8\x0e\xc0\x98\xf4\x34\x2e\x18\x3e\xec\x37\xc6\xb8\x66\x29\x04\xc4\x88\x9e\xfd\xf2\xb1\x5e\xd6\x40\x71\xf5\xfc\xd9\x36\x31\xa6\xbc\x20\xd4\x40\x6b\xe1\xe2\x87\x0d\xc5\x98\xce\x35\x0d\xbd\x5c\x16\x76\x44\x3f\xb1\xae\x69\x04\xbd\xbc\x36\x6d\x8c\x9a\xd5\x58\x5d\x65\x4d\x03\xf8\xc8\x9a\x24\xce\x65\x91\x6a\x3c\x00\xa0\x9e\xce\xfb\x4d\x6c\x79\x2d\x69\x11\x05\x94\xc5\xd7\x93\x28\xb3\x2c\x32\x4f\x9f\xa3\x26\x96\xb5\xd5\x52\xd0\xcb\x01\x2f\x17\x35\xf3\x6a\x56\x35\xfb\x6a\x36\x35\xd7\xb7\x1f\xd6\x1e\x4b\x5c\x2f\x7f\xce\xbd\x58\x22\x9e\xea\xe5\x84\xa7\xea\x2a\xe1\xa9\x06\x02\x1b\xcc\xdb\xd0\x34\x0b\xe9\xf2\x73\x98\xc7\xb2\xb0\x19\xf2\xa6\x6d\x52\x70\x0a\xe4\xad\xfb\x93\x8c\x1f\x6a\xd2\x0f\x85\x9f\x08\xba\x42\xea\xef\x7e\xa3\xf1\x13\xcf\xa3\xf3\x13\x41\x51\x06\x3f\x11\x1c\x65\xe7\x27\x02\x1b\xec\x38\x6f\xdd\x33\xa5\x1c\xd4\xfd\xc6\xc5\x4e\x3d\xd3\xc9\x1f\x3c\xec\xcd\x4f\x34\xd3\x4a\x7c\x68\x5b\x97\x4a\x7c\x88\x2d\x94\x4a\x7c\x74\xbf\x41\x7c\x54\x4d\xbd\x12\x1f\xe2\x33\xa5\x12\x1f\x5d\x28\xac\xc4\x47\xf5\xb0\xc4\x47\xd3\xd4\x2b\xf1\xd1\xdd\x29\xf1\xd1\x04\x6d\x25\x3e\x9a\xe7\xf1\xe0\x43\xc0\x55\xe2\xa3\x7a\xea\xf7\xf7\x57\xd2\xc6\x28\x6d\xd1\x9c\x76\x6f\x69\x99\xa7\x81\x26\xd5\xc7\x22\x15\x37\xf7\xd5\x14\x50\xfd\x58\x4d\x81\xd4\x41\x57\xea\xbb\x5f\xab\xa9\xbe\xfb\xda\xce\x43\xd0\xf5\xb5\x8f\x86\x60\x1b\xc4\xa0\xb8\x4e\x19\x20\x7f\x7d\xbd\xf6\x68\x12\xd7\x29\x90\x9c\x4d\xa0\x3b\x0e\x14\xf5\x7d\x40\x7c\xd0\xcb\x07\x0e\x5c\x4d\xf3\x58\x38\x19\x6e\xe2\xb8\xd4\xac\x4f\x0a\x16\x6a\x36\x9c\x6e\x6a\xe2\xfc\xd7\xb8\x14\x6d\x84\x9e\x13\x27\x9f\xba\x9a\x0b\x84\xa8\x59\xcd\x05\x82\x58\x54\xc5\x61\x21\x12\xaa\x1b\xc6\x2d\x6a\xfe\x1d\x13\xaa\x19\x67\x41\x50\x33\xbc\x39\x56\xcd\x38\x0b\x3e\x10\xb5\x74\x61\x15\x3f\xba\x44\x9c\x7d\xe3\xb9\xd5\xf5\x43\xc6\x0f\x42\xc2\x84\x08\xd2\xea\xf8\xd1\x01\x32\x47\xe1\xdb\x43\x3f\xe0\x60\x6c\x5a\xec\x39\x28\x37\xe6\x0f\x78\x73\x2f\x7c\x23\xe8\x87\xc6\x1f\x34\x85\x7d\xe7\x0f\x49\x3f\x3c\x9d\x66\xfd\x30\xf9\xc3\x07\x49\xf3\xa8\xfc\x41\xa3\x1c\xcf\x27\x4d\x3f\x3c\x9f\x08\xf2\x67\x79\x75\x70\xce\xf3\x19\x56\xb0\x60\x11\x5b\x13\x9b\x9e\x17\xfb\x10\x67\x9e\x93\x02\x9c\x8e\xe6\x7b\xb1\xf9\x22\x31\xe1\x5e\x22\x56\x11\x25\xdf\x6b\xa1\x8b\x4e\xaa\x7b\x2d\x74\x15\xd8\xf7\xb6\x44\x3b\x1d\x6b\xf7\x76\xaf\xa7\x9f\xd9\xdd\x01\x3d\x6b\x9b\xdc\x21\xac\xc7\x6e\xc6\xef\xaf\xaa\x4d\x72\x2f\xa9\xa9\x88\x68\xee\x75\x82\x54\x9d\x3e\xf7\x3a\xc7\xcb\xd0\xa2\xdd\x4b\x1e\x29\x12\x28\xee\xb0\xe4\x44\x2d\xd8\xbd\x8e\xf9\xba\x6d\xee\x7b\x09\x99\xd9\x13\x3b\x57\xdf\x1e\xea\xfa\xfe\xaa\x3a\xf6\xef\x25\x14\xd4\x4d\x0b\x75\x43\xd2\x69\x55\x82\xc0\xbd\x24\x9d\x62\x04\x46\x20\x41\x33\x5b\xc7\x57\xdd\xb4\xac\x77\x5c\xbd\x7b\x6a\x4b\x30\x28\x45\x33\x5b\x32\x5b\xdd\x8c\xb3\xb5\x57\x5a\xd4\xd8\x6b\xaf\x94\xa2\x8f\xf3\x82\xba\xf8\x65\xcc\x34\xea\xf1\x3a\xd9\xea\xa6\x5d\x7a\xaf\x33\xa8\x6e\xda\xc4\xf7\xe2\xe3\xbd\x0a\x8e\xc5\xc5\xbb\x4e\x8a\xbb\x61\x79\x5e\xed\xf5\x75\xf0\xeb\x8b\x61\xd6\xa0\x53\xf2\xee\xc0\xa2\x8e\x8d\x7b\xc9\x78\x35\xe8\x7c\xbb\x97\xa4\x56\x93\xce\xaa\x7b\xf1\xb9\xa2\x7d\x7d\xef\x10\x9b\x0d\xf9\xda\x42\xa5\x6a\xc1\xf7\x8b\x58\xf7\xe7\x8b\x92\xab\xa9\x69\xb1\xbe\xd6\x24\xdb\xdc\x6b\xb7\xac\xd3\x5e\xed\x1b\xcf\xd5\x5e\xdc\x6f\x6c\xc6\xe5\x79\x2e\x79\xd5\x0b\xb3\xd4\xb6\xdc\x4c\x52\xd7\xda\xf4\x71\xfb\xfc\x90\x60\x29\xf9\x10\x60\xda\x96\xf4\x1c\x9a\x9a\x8b\x98\xe3\x67\xf6\x89\x4a\x72\x6a\x9f\xa5\x4a\xe1\x24\xd7\xf9\xec\xc3\x14\x60\x85\x68\xf5\x23\xc8\xa5\x80\xad\x9b\x44\xe2\x29\xa6\x47\xc2\x4e\x9f\x1f\xf6\x35\xe4\x47\xbd\x4d\x69\xe1\x33\x7e\x8e\xcf\x94\xce\x25\x62\x6a\x42\x69\x71\xf7\xf8\x41\x7e\x4a\x4b\x4b\x8d\x49\x2f\x2f\x60\x63\xf2\xd3\x25\x26\x7e\xc4\x8c\x94\xa1\x57\xe4\xd6\xf5\xc3\xa2\xca\x50\xf2\x67\xed\x53\xce\x3b\x8e\xb0\x0f\xf6\x52\x86\xf2\xdd\xa4\x9e\xa7\x4c\x21\x62\xb8\x8f\xb6\x66\x5f\xa4\x38\xa7\xdc\x56\x1f\x35\x6b\x16\xb9\x5d\xec\xc3\x3f\xe0\x84\x92\xd8\x95\x32\x0e\xda\xa6\x93\x35\xe5\x01\x41\x44\x07\x75\xca\x64\xd5\x32\x78\xa4\x0c\x5b\x52\xc9\x9f\x53\x30\x65\xb2\x59\xd9\x93\x52\x3e\xb9\xbf\xcb\xd0\x0f\x6b\x69\x4a\x75\x1f\xd7\xea\xa3\x6e\xe9\x27\x07\x4c\xca\xeb\xe4\x0c\x65\x14\x7d\x3e\x2b\x0e\x69\x2d\x75\xbe\x0f\xa2\xe2\xa1\xe5\x54\x70\x7e\xb6\xf8\x61\x1a\xa9\x40\x77\x6b\xf5\xc3\x78\x13\xc5\xda\x26\x83\x40\xa2\x14\xdb\x24\x54\x27\x0a\x9c\xbd\x7f\x36\x58\xa2\xe4\x57\xeb\xe6\x1f\x88\xdf\xa8\x61\x1b\x96\x35\x7c\xd4\xa7\x54\x5a\xe4\x1b\x1a\xb6\x35\x40\x2e\x3a\x2a\x0d\x64\x1b\x3f\xb2\x61\x2a\x38\x8d\xb3\x4c\x06\xa9\x8c\x86\x4e\xb3\xfa\x18\xf8\x44\x36\xa6\x44\x81\xa7\x8a\xf5\xa7\xf2\x2c\x5a\xd6\x3c\xb0\xf9\x6b\xf8\xd8\x43\x52\x81\x5a\xde\x64\x65\x48\x85\x8b\x26\x23\x5e\x2a\xe7\xd3\x87\x3e\x39\x69\x83\x8c\x9a\x18\x0e\xcb\x32\x8c\x53\x08\x40\x75\xdb\x34\x2c\x2c\x37\x35\x19\x7c\x18\x6a\xaa\x54\x95\x54\x2e\x88\x50\x92\xd6\x52\xb9\x80\xd3\xe4\x99\xde\x90\xe6\x24\xe7\xa6\x02\x9b\x5c\x1b\x22\xaf\x02\x9b\x5c\xf5\x66\x2c\x20\x87\xd6\xab\xfb\x98\x7c\xe3\xf3\x03\x04\xaa\xd0\x86\xe6\x51\x03\x0c\x46\x3a\x00\x53\x85\x01\xad\x0d\x6d\xc8\x1a\xa8\x3b\x7c\xf8\x6b\xaa\x11\xc3\x96\x8f\x28\x99\x2a\x2c\x0f\x63\x0b\xfe\xe1\x22\x3e\xd4\x07\xf8\x40\x6f\x9e\x47\x5a\xf3\xa8\x4d\x0b\x55\x41\xa7\xb9\x8b\xd6\x6b\x86\xc8\x99\x3f\x9a\x6f\xaa\x19\x8a\x40\xd2\xca\xd5\x8c\x3e\xf2\x47\x54\x4a\x35\x73\x97\x37\xbd\x01\xa5\xa6\x74\x61\xac\x82\x92\x87\xb4\x9c\x54\xc9\x3a\x36\xf1\xca\xda\xb9\x3d\xd2\x07\xeb\x75\x60\xb1\xb3\xe8\xb4\xee\x94\x58\x87\xde\x80\xc8\x56\x42\xd1\xb0\x10\xd9\x7a\xed\x9a\xfa\x81\xed\x51\xc4\x7e\xea\x11\x88\x42\x0d\x7b\xac\x4e\x8b\x34\x81\x54\x0f\x6c\xc2\x52\x85\x75\x70\x9b\x62\xbe\x5f\x41\xb8\x39\x36\xbd\x71\x26\xee\x06\x8d\x72\x62\x47\x95\xe1\x37\x40\xda\x66\xb6\x15\xa4\x5d\x6a\x13\x3e\x68\xd2\xce\xa2\xa0\x0a\xfb\x74\x1e\x9b\x7f\x00\x53\x8a\x86\x05\xa4\x5d\xaa\x98\x41\x05\x25\xe7\xb1\x09\x1f\x30\x59\xe7\x26\x36\x58\x67\x24\x3e\xb4\xfa\x4b\x29\x08\x75\x88\x8f\x55\x70\xba\x5a\x45\xda\xf5\xc6\x49\xd2\xb5\xb6\x0d\x26\xb9\x3c\xc4\x94\xda\x73\x8e\xea\x14\x68\x30\xea\x55\xb3\xbe\xb6\x61\xa1\x8a\x96\xb2\x6d\xa0\xd3\xa1\x95\x6b\x01\x48\xee\xda\x73\x0d\x36\xb6\xdc\x84\xd3\x06\xe2\xcf\x2d\xfa\x0d\x4c\x2c\x6b\x47\xb5\x88\x3e\x8a\x27\x86\xdd\x50\xaa\x4e\xc5\x96\x1e\x3b\xb7\xde\x80\x35\xae\x4a\xb6\x4b\x2d\x71\x14\xf1\xc2\x96\xc8\x72\xca\x07\x41\x0d\x07\x69\xed\xc3\x3f\x24\x1e\x82\xfa\x01\xea\x79\x69\x7e\xa3\x42\x2f\x4b\x3a\xd9\x1b\x18\x6c\x1b\x62\x5b\x0d\xfa\x64\xee\x22\xdc\x06\x2a\x6c\xc9\x38\x85\x26\x91\x6b\xc9\x3f\x39\xc0\x1a\x48\x63\x48\xef\x4e\x0d\x2c\xac\xc4\xaa\xfe\xe0\x36\x68\x41\x9c\xa2\x81\x85\xd5\xa0\xd3\xa8\x6f\x60\xd8\x43\x14\xd9\x03\xf4\xff\xa6\x4e\x7b\xdc\xf8\x86\x7f\xc0\xb2\xd6\x8f\x56\x99\x7a\x22\x35\x7d\xd4\xdb\xd4\x53\x27\x5c\x1f\x54\x74\x98\x2e\xba\xbc\x3f\xa9\x37\xf2\x34\xa1\xa2\x03\x37\x55\x1a\x52\xea\xd8\x6e\xd9\x87\x4f\x5f\x72\x60\xa8\x32\x32\xa7\x7e\x91\x44\xb5\xff\x3a\xf6\xce\x90\x39\x28\xf5\x9b\x0a\xa7\xd6\x79\x80\x66\xdb\x10\x01\x0e\xd8\x7c\x9b\xb9\xde\x80\x21\xb7\x98\xde\x06\x89\xa7\xf9\x93\x44\x8c\x89\xde\x06\xdc\x17\x6d\x68\xef\x0c\x40\x5b\x9b\xc0\x1f\x38\x8c\x87\x45\xd4\x01\x5d\x39\x67\xed\x8c\xd1\x79\x70\x48\x4a\x1c\x9d\x9b\x49\xe7\xe6\x18\x91\x07\xba\xe6\x31\xb8\x50\x1f\x4b\x56\x1a\xe3\x20\x45\x6a\x14\x9c\xdf\xa5\x0b\x41\x63\x07\x73\xe9\x92\xb1\xc6\xf1\xe0\x43\x33\x85\xfb\xa2\x6e\xee\x14\xbc\xa4\x07\x6d\xc8\x01\x5e\x92\xab\x64\x91\x01\x6f\x57\x93\x7e\x91\x06\x89\x6e\xe8\x00\x1b\x3c\x37\x65\x29\x4d\x03\xe7\x66\x8b\x3a\x8d\x76\x70\x9b\xea\x93\x75\x7f\xb8\x4d\xf7\x0f\x94\xbc\x84\xf5\x3d\x40\xe2\x69\x7e\x23\x50\xe2\x11\xf8\x7b\x04\x82\x86\xd6\x76\x8f\xcf\x69\xa4\x37\x12\x56\x5f\xa6\xf8\xb4\xc3\x57\xd5\x86\xc8\x72\x87\x51\xb2\x5a\xb2\xdd\x0b\x87\x1d\x7e\xe3\xa4\x2c\xa2\x79\xc0\xf6\x57\xe4\x2a\x48\x3b\x8c\x70\x55\x4e\xc9\xb4\xc3\x08\xd7\xa2\x4e\xd6\xfd\xe1\x14\xda\x40\xfb\x8e\x6d\x5a\x24\xe0\xec\x07\x69\x4c\x4a\xc5\x0e\x7b\x41\x35\xd3\xdf\xe1\xc9\xcc\x26\xed\xfd\x06\x1b\xdc\x3c\xd3\x47\xc0\xf1\x3c\x6e\x6e\xc2\xa1\xa9\x53\xde\x95\x4d\x36\x1d\x1b\xf8\x51\xd1\xda\x1e\xe0\x0e\xdd\xfc\xe3\x88\x4f\xa7\x7a\x83\xfe\xbf\xa6\x4d\x78\x40\x16\xe9\xb2\xfd\xa7\x23\x83\xa4\xa4\xf5\xa7\x03\x36\xd9\xbe\x69\x67\x1f\x34\x8e\xd6\xa2\x37\x1a\x85\x35\xf1\xb1\xa3\x3d\x7d\x14\xfd\x40\x9b\x99\xc4\xa8\xa3\xc1\x28\x99\xa3\x3e\xe9\x64\xe9\x55\x3f\xc0\xc0\xd4\xbd\xe7\x0e\x28\x29\x65\xd3\x61\x7c\x60\x8b\x95\xd7\x4c\x29\x11\x77\x1d\x71\x07\x95\x94\xa4\x8d\x7c\x80\x83\x17\x39\x37\xd3\x71\xf2\xf0\xd1\x46\x3e\x20\x36\x94\x6d\x13\xc6\x2e\xb0\x9c\x4d\x5b\xec\xc0\x09\xdf\x37\x71\xcb\x83\x0e\xe5\xd7\x1b\xf4\x1f\x6f\xd2\x54\x0e\xca\xaa\x5d\x74\x7a\xdc\x54\xeb\x74\xa2\x9d\x3c\x8c\xbd\xf7\xcf\x10\x28\x66\x57\xfd\x40\x6d\x52\x92\xf9\x49\xe1\xb5\x25\x7d\x52\xc8\x3f\xc4\xe9\xce\x4e\x4f\xa5\x76\xe5\xf9\x98\x2e\x53\xfc\xc9\x01\x76\xc2\x89\x58\x2c\xa7\x9d\x60\xe9\x35\x79\x92\x8f\xf4\xb3\xf9\x07\x6c\xb7\x5c\x35\x85\x79\x50\xb6\x51\x1f\x70\x96\xf4\x4d\xb3\xbe\xe0\xd5\x1e\x9b\x00\xbd\xe0\xf7\xcb\x72\xb9\xa5\x8b\x32\x78\xd5\x2a\x5e\x89\x8e\x70\xa9\x53\x57\xe2\x28\x3a\x59\xaf\x0c\x13\x9f\x95\xfe\x2b\x53\x2e\x71\xa7\x99\x76\x10\xcd\xf4\xa2\xc7\xa3\x68\x87\x5e\x90\x9f\x6b\xd3\x2e\xbf\x28\x53\xe4\x8f\xef\x2a\x5d\x30\xc6\x17\xf9\x7a\xd2\x45\xc7\xef\x26\x7b\xc5\x05\xa9\xa3\x54\x29\x07\x17\x3d\xc1\x9b\x16\xfe\x82\xb6\x5e\xb2\x50\x78\x75\x6a\x0b\x32\x12\x5c\x9d\xc7\x93\xb6\xca\x45\x5f\xf1\x26\x33\xc9\xd5\x31\xca\x0b\xa7\x83\x1b\xd2\x7d\x40\x6c\x2f\xb2\xb4\xa6\x6b\x27\x11\x6b\xab\x5c\x47\x06\x4f\xd3\xa6\xbe\xa0\x2b\xe6\x28\x66\x7b\xd1\x6c\x5a\x0d\xfe\x49\x66\x2b\x8d\xf4\x62\x04\x48\x37\xd6\x21\x14\x94\x16\x35\x31\x92\x94\xfc\x4c\xe9\xa2\x84\x2d\x4f\x54\xba\xa0\x1a\xd6\xa4\xad\x72\xc1\x17\x69\x8b\x52\xba\x10\xf2\x51\x87\xc8\xf2\x02\x8d\x95\xd7\x52\x32\x5c\x23\x24\xff\x40\xd1\x43\x0c\xea\xba\xa1\x5f\x55\xf1\xf8\x0b\x96\xa6\x36\x8c\xb1\x1b\x33\x4d\x12\x53\x27\x8d\xf3\x4d\xbc\x75\x52\x08\xf5\xc4\x26\x84\xd0\x66\xf3\xd5\xcc\x54\xd9\x25\x3f\xcf\x42\x15\x44\xca\xf4\x84\xb3\xa5\xfa\x14\x98\x3b\x45\x42\x9d\xbd\x73\x27\x4b\x17\x49\xd1\x46\x5e\x8b\xe4\xd6\x89\xa5\x2c\xaf\x61\xa1\x5f\x15\xb9\x95\xd2\x84\x1c\x91\x87\x87\xc5\xda\x16\x0b\x7c\x13\x6c\xb0\xc8\x0b\x94\xe6\x49\xac\x4b\xd0\xa2\x8d\xbc\x07\x8f\xc2\xb5\x4d\xd2\x15\xe7\x45\xa9\xc9\x7d\x30\xa4\x43\xa6\xcf\x34\xc9\x2e\x4a\xd2\x3c\xc0\x5b\x9b\xbc\xdf\x69\x22\x60\xa3\x54\xa9\x42\x93\x96\x02\xf3\x0f\x5a\xe2\xb3\x22\x27\xd2\x84\x7e\x55\x8a\x34\xb0\xf9\xc8\x44\x3a\x49\x26\x28\xa8\x58\x06\x98\x93\xfb\xf6\xf5\x03\x7c\x66\xd5\xcb\x00\x96\x3e\x36\x1d\x0b\x93\xc7\x75\x90\x98\x3d\x41\x63\x45\x7e\xc8\x34\x41\x63\xdd\x82\xd6\xbc\x1f\x8c\xf9\x8d\x07\x63\x9a\xd8\xcd\x7d\xab\xd3\x08\x4e\x84\x50\x52\xf3\x0f\x10\x81\xbc\x5f\xe0\x39\x58\xc3\xfa\x8d\x46\x2d\xc3\x3f\xc0\x0e\x10\xc4\xf4\x6f\x86\xeb\x28\xc0\x21\xdd\x38\xd0\x8b\x3c\xb7\x09\x06\xee\x25\xcf\xe8\x87\x4a\xe0\x24\x67\xde\x38\xae\x7b\xd0\x61\x7c\xd3\x84\xd8\x05\xdc\x8d\x00\x8f\x96\x8a\x7f\x20\xdb\x92\x9c\x79\x73\xb1\x93\x28\xe8\x66\x30\x8e\x5c\x69\xe9\x86\xf0\xda\x83\x14\x82\x1b\x91\x59\x2d\x8a\x3b\xdc\x88\xab\x6a\xbd\x8d\x9f\x1c\x60\x37\x15\x0c\x99\x88\xf2\x06\x74\x56\xb1\xb0\xbc\x6d\xe4\x58\x1f\x40\xf3\x86\xb3\xa6\xcb\x09\x97\x37\xca\x47\x72\xff\xe5\x2d\x73\x92\x5d\x9f\xd0\x84\x28\x3f\x57\xde\xca\xc3\xb1\xc6\xe7\x07\x1e\x1c\x32\xd2\xe7\x0d\x9e\xe0\x2a\x0d\x2c\x6f\x3c\x38\xe4\x82\xcc\x1b\xd5\x55\xb9\x28\xf3\x46\x19\x6b\x64\x4d\x9d\x9c\x22\x55\xcd\x14\x1c\x7c\x04\x0f\x7b\xd0\x20\x56\x34\x31\x6c\xfb\x1a\x36\x4d\x9d\x26\xda\x10\xf4\x03\x22\xa8\xaa\xec\xcf\x79\xbb\x68\x44\x1a\x1a\xe5\xe6\xb2\x56\x75\x7a\x53\x6c\xff\xec\xf2\x1c\x36\x1e\xe8\x1f\x0b\x6a\x0e\xd4\x16\xd2\x67\xef\xe4\xc0\x65\x90\x1c\x9f\x03\x97\x21\x7e\x44\xbb\x1c\x36\x4a\xe9\x1f\xb7\x44\x0e\xb0\xe2\x8f\x90\xd4\x29\x64\x80\x12\xb2\xde\x80\xd8\xde\xa3\x90\x1c\xe8\xf7\x2e\x41\x9f\xd4\xa7\xd3\x0f\x82\x42\xe3\x2e\x6f\x7a\xa3\x01\x5a\x59\x0c\x73\xe8\xcf\xb0\x9a\xe9\x20\x1f\x08\x82\x96\x7e\xe6\x28\x9c\x06\x08\x90\x5d\xc1\x81\x39\x80\x73\x66\x51\x75\xa6\x8b\xa2\xc7\xa0\x51\xc0\xe4\xb2\xb4\xa7\x1c\x40\xf7\x43\x51\x0f\x39\x40\x6a\xca\x21\xeb\x07\x6c\x84\x22\x26\x97\x23\xe5\x45\x71\x9b\x8c\x38\x9b\xd0\xfb\x67\x97\xe7\x88\xf3\x2a\xcb\xf1\x9f\x11\x11\xb3\xe6\xa1\x4f\x2a\x6d\x79\x5d\x3f\xb4\x4a\xa2\xf3\x0f\xa0\x53\xc5\xfa\xe4\xd8\x4f\xfe\xf0\x01\x2e\x0e\x82\xff\xb1\xb0\xe7\x08\x07\x55\x1f\x59\x3f\xc0\xda\x57\xf3\xa6\x3e\x60\x67\xc9\x32\x1d\xe4\x48\x6b\x5f\xfe\xb0\xe3\x1c\xef\xc7\xec\xa6\x79\x50\x15\x2a\xaf\x37\x4e\x8a\xfe\x9f\x4e\x13\xcc\x5d\x23\xa8\xd3\x14\x89\xe4\x0f\x2f\xc9\xa9\x92\x51\x46\xbd\x31\x48\x41\x49\x6f\x0c\xba\x67\x44\x74\xe9\x20\x43\xd1\x32\xa4\xf3\x11\xb4\x3e\x13\x4b\x17\x18\x94\xd7\x36\x71\x03\x19\xfc\xc4\x68\xd3\xe8\x1f\x78\xb4\x48\x78\xcd\x89\x76\x22\x6f\x75\x06\xe0\xf5\xf8\x91\xcd\x72\xde\x68\x49\xd2\xca\x65\x46\x82\xc6\xcf\x41\x9a\x33\x0c\x73\x5d\x21\x5b\x39\x47\x0e\xfb\x11\x3c\x33\xfd\x46\xf9\xf5\x49\x27\x59\x56\x0d\x3b\xe8\x39\xdb\xfc\x03\xcf\xab\xa6\x1f\x68\x32\x93\xf7\x24\x67\x2c\x76\x55\x20\x62\xce\x07\x69\xac\x6a\x58\xc4\x19\x57\x2f\x65\x3e\x1e\x5a\xff\x50\x72\x3e\x79\x08\x8a\x5d\x64\xd8\x9a\xc6\x16\xfd\xc3\x63\x30\x8d\xfa\x01\x3b\x5b\x56\x8f\x9c\x69\x85\x95\xe4\x95\x33\xc4\x86\xa1\xa8\x98\x4c\x67\x54\xa9\xc6\xe9\xe4\x56\x77\x1f\x70\x40\x65\xc5\x4c\xe5\x0c\xb1\xa1\x2a\x6e\x20\x67\x84\x16\x97\x68\xf0\x29\x89\xca\xb3\x9f\xf3\xa4\xc1\xa6\xe8\x07\x2a\x7e\x2d\xf5\x1f\x1c\x60\xb9\x80\x73\x76\xc5\x03\xe5\xb2\x71\x77\x7d\x34\x9f\x5c\xc0\x39\x8b\x8c\xb8\xb9\x6c\x24\x73\x1d\x1c\x85\x21\x87\xf2\xc6\xe4\x82\x98\xe0\xa1\x50\xa6\x5c\xa8\x5f\x29\x58\x26\x17\x9a\x79\xd3\x47\xe3\xc8\x05\x66\xb7\x9c\xb4\x02\x25\x4e\x1a\x93\x3f\xc8\x2a\xb0\xd9\x96\x9c\xfd\x03\xad\x9f\xc9\x3f\x40\x92\x8b\x5d\x13\x43\x88\x4a\x2e\xc9\x3f\x3c\x67\xcd\x67\x49\x4a\x7e\xe6\xa1\x89\x15\x4a\xb6\x4d\x13\xa3\x01\xa8\x54\xbf\x41\xd2\x10\x99\x33\xa2\x6c\x6c\x9e\x18\xc3\xc3\xbc\x77\xca\xe3\x16\x71\xa7\x95\xea\xa5\x71\xca\x18\xab\x94\x35\xb1\x4a\x9a\x6d\x1a\xb6\x91\x75\x88\x88\xe9\xe0\xeb\x0a\x91\xcd\x05\x6a\x5d\x96\xec\x9b\xcb\x4e\xde\xaa\x9d\x51\x18\xeb\x92\xbc\x2e\x8c\x59\x92\xe5\x32\x17\x86\x33\x4b\xf3\xc9\x85\x14\x19\xc4\x4a\xcb\x24\xc7\x12\xd3\xaf\xa4\x20\x99\x87\xf3\x13\x63\x14\x87\xdf\xc0\xd1\x92\xc4\x29\x6a\x78\x6c\xfa\x49\x3f\x10\x38\x91\x54\x65\xc8\x9d\x45\x0f\x3a\x92\xb2\xdc\xaa\xb9\xc2\x9a\x53\xaa\x76\x46\x7d\xa2\xb3\x3e\xaa\x72\xae\x88\x43\x18\x41\xb2\x59\x3d\x48\x96\x55\x13\x3b\x79\x18\x8b\x1f\x55\x28\x18\x45\x26\xa2\x4c\xb7\x48\x89\x5a\xfd\x7a\x3f\xc2\xf0\x07\xa7\x8d\xb6\x04\x59\x2c\x72\x83\xd1\xa4\xc8\x39\x9e\x5b\xe2\x32\x08\xeb\x2d\x67\xfe\xa0\x3e\x68\x29\xb0\x3c\xd3\xf2\xcd\x65\xd0\x1b\x8d\x8e\x13\x9d\xac\x0d\xbe\xda\x2e\xad\x36\x37\x2c\x76\x55\xec\x4c\x6e\x08\x5b\xaa\x32\xfd\xe7\x86\x38\x89\x16\x3c\x2c\xcf\x09\x0b\x8d\xed\xa6\x39\xf4\xe3\xad\xcb\x7d\xa3\xe9\x5f\x2c\xac\x6f\xb4\xe4\x4a\x7c\xe9\x09\x2b\xa7\xe8\xd3\xdc\x0b\x9d\x03\x62\xfa\x1d\x62\x65\xa9\xda\x0d\x9d\x66\xea\xf8\xd1\x49\x72\xa7\xa5\xc0\x62\x43\xdf\x19\xec\xad\xd5\xef\x10\x3c\x8b\xa2\xfe\x72\xe7\x42\x35\x31\x94\x7e\x71\x58\x51\x72\xa7\x60\xbf\x69\xef\x77\x5a\xc8\x36\x77\x7a\xd3\xe7\xa3\x3d\x37\xa8\xf9\x28\xf2\x30\x8f\xf0\xf8\xae\xab\x7e\x98\x9c\xe9\x07\xfc\x81\x43\xb0\x28\x76\x26\x8f\x48\xcb\xc9\xf0\x1b\x14\xf7\xa3\xdf\xb8\x19\x64\xf0\x59\x86\x01\x77\xd5\xf0\x42\x0d\x78\x73\x4b\x11\x0a\x47\xa2\x5a\x27\x76\x31\x12\x4f\x23\x09\x16\x83\x2a\x83\xc5\xfd\xc1\x24\x03\x33\x94\x41\x1d\xc2\x72\xc4\x60\xac\x68\xee\xfe\x61\xe7\x27\x1a\x16\x36\xd6\xdc\xbb\x60\x81\x93\x22\x5b\x7c\xa1\x83\x21\x17\xad\xed\xd8\x49\x0e\x22\x98\x81\x43\x30\x17\x03\x47\x0d\x2c\x15\x21\x79\xd2\xf6\xad\x1f\x76\xb2\x8b\x92\xc2\x4f\x0e\xb0\x3d\xd0\x8a\x22\x40\xf7\x98\x39\xc0\x67\xd6\x7b\x7a\x46\xfc\x4c\x61\xa7\x99\xb7\x88\x41\xed\x3b\x37\xa4\x28\x72\x07\xbd\xb5\x28\xa9\x74\x87\x7d\xa3\xc8\xd9\x90\x77\xfa\x9e\x7c\x2c\xec\xf3\x19\x56\x9f\xdc\x04\x43\xdb\xed\x08\x4c\x50\x10\x4b\x7f\x6c\xe9\x52\x57\xf3\x11\xf9\x86\x8e\x96\x23\xd2\x66\x24\x89\xe1\xc0\x76\xab\xca\xb6\xc9\x07\xcd\x7f\x49\x67\xde\x81\x50\x91\x9e\xc4\xa0\x68\x29\xcf\xa5\xfb\x07\x4a\xb6\xda\x4c\x07\xa2\x77\x6a\x12\xcd\x1e\xfd\xb1\x80\x68\x94\x41\x81\x49\xfc\xf9\x60\x20\xad\x19\x14\x4d\xe7\xb9\x7a\xea\x8c\x2e\x49\xda\x3b\x07\x83\x35\x93\xe4\xe7\xe3\xe0\xca\x49\xf1\x3b\x1e\xe7\xa7\x8e\xc9\x83\x72\x9a\xf2\x60\xf2\x49\xb5\x4e\xe1\xeb\xf9\x84\x6d\xa2\x9a\xfd\x9c\x74\x58\x54\x49\x94\x27\x2d\xb9\x43\x2c\xfd\xa4\x25\xd7\xda\xf5\xc9\x10\x1e\xa5\x12\xe5\x33\x53\x5c\xfe\x58\x0d\xf2\xc9\x58\x09\x79\xc9\xf2\x59\xf8\x83\x0e\xe3\x13\xe7\x55\x55\x44\x78\x3e\xeb\x03\xad\x3a\x6d\x3c\x38\x24\x72\x9f\xed\x11\x92\xf4\x09\xed\xb4\x43\xb2\xef\xd9\x79\xa2\x89\x0f\x9c\x34\xdc\x0e\x89\x2f\x27\x09\xd7\x7c\xe0\x04\xe7\x2c\x72\x7a\xe4\x93\xa1\x11\x59\xb2\xd9\x09\xe9\xb8\x0c\x1d\x1c\xb4\xc1\x37\x93\xf6\x09\x31\xb5\x06\x23\x99\xe6\xae\xd7\xc4\xc0\x5b\xab\x19\xd4\xb5\x11\x1f\xa2\x8f\x0b\x42\x63\xb5\xc8\x7d\x81\xf8\x6b\xd5\x7e\xb9\xe0\x7a\xcb\x55\xdc\xe6\x6a\x14\xe7\x84\xf5\xab\x3d\x58\xff\xac\xed\x05\xf6\x33\x64\x33\xca\x34\x42\xb7\xf4\xf1\x6f\xe6\x6b\x30\x32\x44\xbc\x75\xfe\x5d\xcc\x6c\x9e\x1b\x12\x27\x9a\x9a\x69\x35\xfd\x32\xb1\xa9\x49\xcf\x05\x96\xc3\x8e\xf2\xdc\xfa\xf7\x97\x25\x8e\xb9\x21\xee\xd2\x9d\xef\xab\xe9\xde\x18\x85\xa9\x26\xa3\x4d\xa3\xda\xd7\xf7\x57\xd5\x89\x3f\x37\x44\x88\x06\xb7\x11\xa1\x2b\x9d\x7f\x2e\xfc\x29\xf2\x2d\x4f\x44\xe8\x16\x3f\xcd\xdf\x5f\x4d\x1c\x6f\x2e\xf9\xaa\x89\xa1\xce\x25\x9f\x5b\xd6\x9c\x4b\x40\x69\x5a\xbb\xb9\xb8\x50\x13\x87\x99\x4c\xf0\xab\xdd\xcf\x89\x53\xb1\xcf\x89\x30\xdb\xa2\xd8\xd7\x3c\xc1\x71\x9b\x72\x28\xf3\x44\x6e\x94\x4c\xbd\x79\xc6\xfe\xfd\x55\x92\x3b\x80\x3d\x27\x1a\x73\x11\xa8\x12\x70\xe4\x7a\xd6\xb5\x26\x22\x73\xab\x9b\xc4\x95\xdb\x4c\x05\xf3\x42\xae\x13\xb5\xca\x5c\x34\x13\xe2\x65\xa5\x63\xcf\xc4\xc4\x2e\x0d\xbf\x34\x8b\x9a\xba\x3f\xaf\x6b\xba\x5a\x66\xf0\xdc\x56\x7b\xfb\xc9\x79\x34\xd3\xa2\x11\x83\x9e\x16\x8d\x88\xea\xe7\x62\x3e\xcd\xa8\x4c\x20\x0a\x69\x30\x33\x71\x2f\x1a\x15\x4b\x61\x29\xb2\x0d\xcd\x1c\xfe\x2e\xf4\x34\xcf\x1c\x11\x6d\xad\x0e\x33\x28\xda\x8f\xcb\x9a\x8c\x10\x91\x49\xcf\x9a\x4d\xc6\x5c\xdd\x7c\x8c\xb4\xee\x6d\xad\x8b\xa4\xe3\x99\xaf\x35\x79\xe1\x65\x49\xad\xcd\x24\xb9\x64\xd6\x66\x92\x2c\xa4\x01\x81\xb6\xb4\xa4\xb8\x79\xef\x95\xf1\x0a\x5f\xcf\xf3\x49\xba\xf1\x5e\x03\x47\x6d\xd5\xcb\xb0\xb4\xaa\x32\x5e\x1d\x5c\x00\x46\xcd\x45\x14\xa6\xc9\xb2\xf6\x8f\xe4\xb4\x59\xc7\xf7\x57\xd7\x21\x39\x69\x86\xea\x26\x01\xc4\xbc\x26\x63\xaa\xf1\xbc\x37\x38\x8d\x41\xcb\xfe\x80\x41\xcb\xc2\x1d\x93\x1f\x94\xd4\x99\x27\x03\xdd\x2c\x97\xcc\x1e\xbf\xbf\x52\x31\x7f\xe8\xef\x80\xfd\x3c\x3b\x02\xf6\x05\x7e\x67\x50\xa4\x64\xf3\xd9\xd7\x5a\x55\x77\x4f\x33\xb5\x09\x0d\x9e\x58\x2b\xb2\x13\x41\xdf\x66\x37\x9d\xd8\x12\x42\x3a\xd0\xa5\xee\x10\x12\x2e\x15\x6e\x8e\xb8\x9a\x9a\xdb\x40\xb8\xba\x8c\x21\x73\xe4\xef\xaf\xaa\x83\x1c\x89\x1a\x55\x02\xc7\x84\x6a\x92\x9b\xf7\xd3\x00\xf2\x35\xb3\x41\x0e\x63\xe4\x0f\x4e\x5d\x73\x1b\x13\x6d\x3f\x87\x51\xd9\x54\xbd\x6f\xaf\x64\x86\x3c\x97\x10\x5a\x65\x38\x98\xfb\x9a\xbb\x0e\x8d\xb9\xd3\x48\xe9\x33\x60\x9d\x99\x96\x69\x91\x32\xd2\xcd\xf2\x97\x1a\xd5\xcd\xfc\x60\x02\x57\x40\x5f\x9e\x4b\x61\x8e\x9b\x39\xcd\x52\xb2\xc6\xe6\x4d\x40\xdb\x53\x33\x59\xc2\xf2\x98\x82\x14\x84\x79\x20\xe3\x41\xc8\x38\x1e\x32\x77\x8f\x27\xc3\xaf\xdc\x25\x23\x6a\x7d\x14\x2c\xa9\xa8\x4a\x8a\x44\x9a\xab\xf5\x1e\xf8\xd9\xea\x16\xfc\x78\xad\x9d\x8e\xee\x79\xae\xa5\xd3\x19\x3b\xcf\x8e\xb7\x35\xbb\x13\x89\x08\xc1\xaf\x2f\xb2\x91\x10\x33\x19\x88\x1b\x4d\x37\xd7\x3a\x4b\xcc\x99\xaf\x75\x96\x98\x12\x2e\xc2\xaa\xcf\x2f\xb2\x3b\xcd\xed\x02\x51\xfa\x60\xb8\x16\x47\x31\xe4\x4b\x77\x68\x5e\x8b\x49\x36\xee\xf6\x3a\xe5\x7c\x82\x4e\x80\x22\x7d\x0f\x2e\xb8\xba\x49\x53\x9d\xcc\xd2\xaf\xaf\xef\xe9\xbc\x90\x2c\x3d\x27\x43\x37\xfc\xc9\xbd\x7d\x7f\x75\xd3\xdd\x8d\x09\x18\x97\x77\x5c\x8f\x35\xfb\xa5\x60\x0e\xaf\xfc\x52\xa6\xeb\x66\x42\xbb\x0b\xbe\xfe\x49\x60\x44\x9e\xf7\x22\x43\xf3\xba\x1b\x8c\xbb\x79\x28\x6e\x31\xe9\xb2\xf3\x3e\xd6\xfb\x42\xfc\x7d\xad\xa9\x68\x59\x18\x6e\x65\x45\x1f\x6e\x41\x45\x82\x64\x38\x05\x1d\x3b\x9e\xef\x25\x26\x29\xbe\x34\xdf\x1b\x48\x4a\x82\xea\xbd\x31\x7a\x72\xf8\x05\x82\x9a\xd4\x06\xa8\xa2\xb2\x1b\x72\x93\xcd\x81\xf7\x06\x86\xd0\xd5\xdc\xd7\xe4\xfd\x36\xf2\x3f\xdc\xd9\xb5\x9e\x7a\x2c\x1c\xfe\xd5\x93\x59\xa0\x68\x77\x33\x57\xc9\x46\x58\x24\x2b\x55\xb9\x08\x33\xb3\x95\x6c\x56\x43\xba\x52\x97\x26\x78\xd3\x10\xe5\x35\xbf\x03\xa7\xae\xc9\x05\x4c\xdd\x8f\x99\xd7\x25\xde\xc5\x14\x25\x8b\xa8\x48\x41\xaa\xb6\x96\xdd\xb1\xf3\x03\x4d\x90\x41\x6a\xcd\x33\x64\x5a\x52\xf3\x17\x17\x84\x23\xb7\x17\x3f\xb0\x01\xea\x86\xf9\x40\x0e\xee\x7c\x43\xba\xc9\x55\xe2\xdf\x0d\xf1\xc6\x7e\xbe\x1b\x92\xb7\x0d\xc6\x37\xec\x53\x2f\x10\x29\xef\xa8\xe0\x45\xbe\x11\xcd\x69\xeb\xd4\xcd\xe0\xf2\x28\x9d\xe2\x46\xf4\xac\xb9\x20\x73\xa5\x82\xd7\x1f\xf6\x0b\x39\x90\xf3\x0d\x31\x47\x11\x2a\xf9\x5e\x1a\x58\xb5\x47\xf4\x5e\x52\x4f\x55\x02\x4d\x46\x72\x55\xb5\xd3\xe8\xce\x8c\x1a\xf6\xaa\xc3\x8c\x6b\xc3\xde\x9d\x69\xb6\x93\x31\x0c\xf9\x58\x41\xf1\x0a\xf9\xce\x4c\xd7\x77\x8f\x00\xd1\x64\x91\x21\xda\x7b\x51\x10\x17\x98\x5b\xf3\x0f\x6b\x95\xec\x61\xba\x11\x03\xba\xbd\x06\x9c\x18\xd0\x03\x60\xd5\xb2\x40\x2e\xc8\xa9\xf3\x16\x44\x46\x98\x0d\xe4\x37\x22\xad\xec\xf2\xbc\x61\x75\x56\x56\x7f\xbe\x97\x78\x55\x83\xf7\x24\x34\xd2\x4d\x76\x17\x78\xe0\x6b\xf0\xa6\x82\x03\xfe\x45\x55\x90\xb7\xcc\xcb\x6e\x88\x5b\x9b\x89\xa6\x70\xc9\xaa\xda\x80\xcf\xf0\x23\xc8\x71\x2b\xee\x0f\x4b\xe6\x3d\x0d\xcf\x9f\x22\x93\xf3\x5d\xb1\x84\x32\x31\xdc\x95\xf0\xeb\xfb\xca\x15\xd4\x8a\x56\x64\x15\x76\xbf\xdf\xd0\xd6\x7c\x10\x18\x95\xb2\xbf\xdf\xb1\x1e\x9a\x5f\x5d\x24\x98\x83\xbf\x47\x9e\x97\x8e\x9e\xbb\x4e\x3c\xf7\x78\x48\xea\x92\xe2\x78\xc3\x8c\x92\x92\xdb\x8c\xcc\x32\xc2\x28\x31\x4a\x74\xbf\xdb\x9a\xb0\xcd\x1d\x37\xc2\xb0\x6c\x90\xbb\x97\x7a\x5b\x6d\xec\xb8\x97\x76\x5b\x93\x19\xcd\x92\x38\x6b\xde\xfc\xfd\x40\xdb\xe3\xed\x00\x58\x08\x85\xf9\x40\x71\xcb\x19\xf1\x13\x35\x8d\xed\x27\xc7\xcb\xdd\x90\x48\x69\x96\x00\x0b\x50\xca\x1e\x0c\xd8\xd0\x59\x7a\x2f\xe9\xb6\x26\x6f\xc8\x25\xdc\xd6\x2c\x85\xef\x5e\xb2\x6d\xcd\xc1\xef\x13\x39\x9a\x6c\x27\x72\x84\xcd\x25\xfb\xd6\x64\x9e\xd6\xa1\x2c\x48\x10\xb8\x3b\x91\xa3\xf9\x20\x40\xcd\xb2\xf4\xbd\xa4\xdf\x6a\xbd\xff\x46\xbc\x5a\x6e\xde\xbf\x94\x86\x93\x27\x88\x64\xe5\xe4\x0e\x00\xa0\x44\xd0\x7b\x6c\x00\x48\x1d\xc2\xb2\x90\x24\xf7\xdd\x83\x00\x6a\xc2\x90\x80\x15\x24\x9e\x6f\x88\xc0\x59\x52\xd7\x0d\x73\x58\xca\x6e\x37\xbc\xef\xef\x91\x72\x69\x8e\x36\x48\xbe\x7e\x9f\xf3\x17\x02\x06\xd9\x8d\x10\x08\x63\x9a\x3d\x6e\xf7\x20\x39\x0b\xbe\xfd\xe1\x90\x1a\x70\x7f\xce\x1d\x41\xc4\x08\xe3\x2c\x7d\x84\x69\x9b\x8a\x27\xce\x37\xf2\xf1\x9a\x09\x90\x96\xa4\x6a\x96\x72\x40\xd0\x36\x0f\x3d\x20\x69\x4a\x3f\xbc\x19\x2d\xf2\xe2\x49\x07\x63\xd3\x04\x24\x13\xab\x8d\xd4\x83\x61\xd1\x7e\xbe\x56\xb9\xf9\xd8\x80\xe8\x6c\x69\xf3\x5e\xb2\x73\xb5\x36\x7d\x1f\x4f\x5a\xa2\xc8\x90\xa2\xb3\xc9\x94\x92\xb3\x99\x2a\x45\x67\x9f\x84\x88\x51\xb3\xf6\x7d\xc3\x2d\xdc\x8c\xd5\x93\xfe\x11\xa1\xec\x2c\xc0\x80\x20\x3e\x1b\xfa\xf3\xf7\x9d\x91\x75\x1e\x00\x10\x19\x23\x4c\x0b\x37\x97\x3a\x09\x91\x20\x3c\xa9\x0c\x98\x4b\x50\x1e\x37\x5d\x9e\x0c\xa4\xf7\x07\x84\x58\x33\x84\x9f\x44\x11\x85\xf9\x86\xd9\xba\x99\xce\x2f\x6a\x07\x7e\x1f\x9a\x9d\x8f\x81\xab\x02\x63\x9a\x30\x23\xac\xcc\x36\x2f\x06\x13\x0a\xc0\x8b\x00\xfa\x39\xc3\x19\xfc\x3d\x01\xf4\x78\x27\xda\x42\x00\xb3\xf4\xbc\xaf\x98\x15\x1f\xdd\x3f\xe0\xf3\x3e\x43\xd0\x7b\x33\xd7\x9c\x84\x4f\xef\x33\xc5\x33\x7b\xc9\x99\xbd\xd0\x7d\x70\x4f\xcc\xc0\x92\xc1\x52\x02\x62\xb0\x40\x37\x6f\xd4\x0b\x53\x07\x8c\xa5\xb0\xd8\x7f\xdf\xa8\x72\x66\xa2\x40\x6c\x85\xd3\xad\xf3\xbd\xf4\x82\x18\x4c\xd6\x4b\x31\x68\x8e\x44\xba\x97\x62\xe0\x64\x80\x7c\x2f\xe1\x3e\x06\x53\xed\x4d\xaf\x8b\xc9\xea\x46\x6d\x1c\x53\xcd\xcd\x24\x4c\x1f\xd6\x37\x61\x78\x56\xb9\x20\x21\x3a\xca\xa0\x5b\x9e\x94\x68\xd5\x27\x2b\xdb\x12\xd8\x5b\x18\xfe\xa0\x62\x0a\x5d\xed\x86\xe7\x6e\x23\x88\x2b\xc7\x9f\x9c\x36\x05\x21\x70\x31\x7c\x98\x55\xd9\x96\x80\x1f\x95\x51\x52\xb6\x25\xd2\x37\xc5\x38\x94\x6d\x89\xf4\xb1\x7c\x64\x8d\xb2\x05\x62\x38\xa9\x1d\xd1\xf6\xf3\x84\xd9\xa9\xff\x25\xe3\xc7\xf0\xe1\x64\x65\x83\x39\x54\x8c\xaa\x6c\x81\xd0\x69\xbc\x25\xf4\x37\xd5\x84\x2b\x5b\xc0\x02\x44\xf7\xcf\xf9\x07\xb5\x89\x7f\xb7\x0f\x2c\xa0\xdf\x3f\xd1\x9f\x9f\x4f\xcc\xcf\xf3\x01\x49\x79\xbc\x88\x52\x02\x86\x27\x12\x5e\xcd\x77\xe9\x10\x2d\x6e\x7e\x1f\x04\xb5\xa9\x7f\x14\x38\x52\xf1\xa9\x82\xd2\x54\x31\x6c\xc2\x57\x24\x7c\x6e\x03\x3e\xe3\x3b\x02\xbe\x4d\xf3\x8b\x80\x2f\xba\xcd\xf5\xd2\xea\x47\xc0\x67\xfc\x2d\x0d\x25\xca\xc3\x59\x36\x84\x6e\xe4\x66\x80\x97\xca\xd2\xa2\xe9\x2f\x01\x60\x03\x90\x02\x9e\xeb\xfd\xa5\xb1\x38\x26\xb3\x6c\x8f\xaf\xc0\xf4\x98\xb0\x65\x4c\xbf\x09\x10\x1a\x82\xf4\x94\x9c\x13\x0a\x51\xb8\x29\x6c\x6a\xa3\x7a\x83\xce\xaa\xb2\x2d\x0d\xa3\x29\xd0\xba\x6c\x19\x25\xa4\xaa\x50\x9e\x41\x42\xc5\xed\x8a\xb6\x06\x5c\xfa\x44\x2c\xc5\xfd\x77\xf4\x27\x94\x67\x54\xbf\xaa\x6e\xef\x78\xee\xf1\x0f\xb4\xdd\xff\x89\xf7\x85\x21\x98\x5e\x95\x99\x51\xb6\x0c\x73\x64\xf5\xf8\xdc\x32\x7a\xbf\x00\x1e\x7f\xbf\xd4\x8b\xa6\x84\xb4\xb2\x15\xd4\xc4\xaa\x1a\xbf\x30\x58\xc0\x7b\x6e\xe9\x13\xad\x19\x01\x2c\x9b\xd4\xbd\x66\x4b\x81\x88\xa5\xfa\x03\x42\xa0\x19\x15\x40\x50\xb4\x64\x85\x10\xf8\xfb\x89\x19\x79\x06\x30\xa8\x16\x3d\xaf\x58\xa1\xa4\xef\x2b\x20\x4a\xea\x7f\x29\x10\x4d\x27\x57\x41\xc0\x6b\x2c\x55\x18\x42\xd2\x55\xe9\xa6\xf2\xda\xbf\xbf\x7a\x6a\xee\x60\x60\x40\x01\x50\xb1\x24\x49\x24\x50\x01\x50\xd1\x92\xd5\xe7\x2c\x76\x87\x17\x70\xee\x11\x01\x91\x21\xae\x5c\x13\x75\xd0\x08\x91\xde\x6f\x84\x40\x13\x68\x58\x23\xd3\xd0\xd2\x28\x62\xa9\x6e\x13\x42\xf5\xbf\x34\x8a\x58\xaa\x26\xdc\x40\x83\x4d\x4b\xd6\xb0\x42\xa6\xd1\x86\xf9\x9a\xe6\x97\x50\x9f\x36\x23\xa0\x33\x8d\xd8\x5c\x7e\x49\xf5\xce\x67\x2d\xdb\x92\xea\x7b\x32\x8d\x2c\x29\x3e\x6d\xde\x64\x4b\x6a\xef\xca\x67\x28\x5b\x67\xfc\xb0\xb7\xed\x92\xca\xed\x01\x2e\x5b\x3f\xd1\x16\x86\x58\xcb\xc9\x6b\xda\x27\x9e\xff\x24\x19\xb6\x6c\x83\xe9\x5d\x5e\xe0\x25\xc3\xa7\xcd\x14\x35\x08\x8e\x7a\x5f\x32\xbc\x1d\xe5\x65\x5b\x32\x7c\x4f\xde\x13\x4b\x86\x4f\x9b\x09\x60\xc9\xec\x49\x2a\x78\xd9\x06\xaa\x56\x99\x27\x0c\x94\xad\x2a\x5a\x8f\x01\x68\xbd\x47\x07\xa1\x75\xff\x17\xda\x7e\x1f\xd0\x7a\xbd\x97\x0c\x9f\x36\xf3\x88\x9d\xe8\x17\x3c\x8c\xf8\x91\x65\xa8\xa0\x70\x60\x2a\xe6\xc3\xfb\x05\x8f\x83\x3b\x9c\xdf\x5f\x8e\xe3\x2f\xa8\xde\x9a\x8a\xf9\xfa\x92\xf0\xc7\xe6\x09\x1c\x30\x03\x7a\xbd\x97\x40\xef\xb8\xec\xb2\x2d\x79\x3e\x15\x9f\xe3\x34\x86\x1b\xa0\x25\xcf\xa7\xe2\x73\xe4\xe8\x78\xee\xf6\x8e\xb6\xe6\xbf\xe4\xf9\x54\x2c\xb6\x1c\x2c\xa5\xe9\x1d\x77\xc0\xac\x69\xa6\x74\x4c\x7c\xa0\x15\x59\xf2\xbe\xe3\xbb\x0a\x2a\xca\x3a\xf8\xba\x6c\x4b\xbe\x77\xec\x56\xd9\x4e\x02\xa4\xef\x4f\x02\x24\x04\x9d\x00\xc8\x3c\xee\x24\x40\x42\xd0\x09\x80\x4c\x31\x4b\xbc\x77\xfa\x71\x41\x79\xda\xb1\x79\x87\xb2\xb2\x8d\xe9\x1d\xae\xf7\xac\x72\xab\x65\x5b\xe2\x7c\x1a\xc6\xd0\x12\xe7\xd3\xf0\x07\x4c\x80\x29\x3e\xa7\x96\x3c\x9f\x86\x47\x5c\xf2\xfc\x78\x9d\x4b\x4b\x9e\x1f\x2f\x2e\x79\x15\xbc\x2f\x88\x96\x7c\xef\x32\x9b\x05\xd5\x71\xc7\x4b\x54\x42\xb0\x71\x4d\x66\x5a\x4b\xa0\x4f\xc3\x6b\xb6\x04\xfa\xf1\xe2\xa2\x4b\x80\x1f\xcd\x9b\x84\x69\xaa\x39\x19\x04\x26\x06\xf9\x20\x59\x22\xfc\x78\x1d\x55\x0c\x3f\x78\x31\xde\x09\x98\xbc\xea\x13\x30\x79\x9f\xa1\xe2\xd9\xf0\xaa\xce\x0a\x18\xb4\x2a\xb3\xe1\xb9\x70\x32\x3b\xbe\x77\x7f\x03\x20\xf9\xfd\x1d\xcf\x3d\x3e\xea\x0f\x99\x6f\xce\x0b\xef\xfb\x7b\x2c\x9a\xa9\x60\x69\x0c\xe3\xc5\xc7\x6f\x00\xe8\x73\xe1\xe6\x9a\x69\xfe\x37\xd7\x4c\x08\x60\x28\x7a\x19\x9a\xc0\x52\x10\x1c\x3e\x59\xb6\x1b\xc6\xcc\x17\x27\x80\x3b\x60\x7b\xb1\xb2\xa5\x32\xe4\xf4\x1a\xf2\x40\x5b\x28\x40\x2c\x7b\xee\x16\x59\xa1\x42\x6c\x2f\x66\x04\x97\xc1\xf6\x62\xf6\x08\x67\xda\x14\x91\x59\x50\x4d\x38\xa7\xe2\x76\xe0\x4a\x67\xfd\x10\xf1\xc2\x50\x3b\xb1\x87\xaa\x1f\x32\x5e\xf0\x07\x80\x53\xdb\x2d\x20\xc0\x7e\xf3\x91\x1d\x36\xee\x97\x8f\x09\xa2\x30\x89\xa3\x66\x49\x05\x21\x6c\xa8\x0d\xa5\x31\x11\xc1\x17\xe4\xba\x2c\xa8\x70\x9c\x2d\xa6\xb0\xc0\x71\xd8\x36\x7f\x91\xf1\xc2\x4f\xa2\xa7\x4b\x58\x9a\x45\x36\x29\x05\xb8\x0f\x82\xc2\x38\x4a\x58\xaa\x44\x36\x2d\xb2\x7c\x72\x50\xec\x42\x09\x88\xae\x08\x0a\xf4\x28\x61\x29\x07\x45\xc1\x09\x25\x20\x26\x2c\xa8\x1a\x4c\x41\x3d\xd7\xb2\x19\x02\x24\x60\x87\xa2\x63\x37\x20\x1c\x23\xa8\xfa\x47\x09\xac\x5c\x5b\x74\x90\x07\xd6\xae\x55\x68\x5a\x09\x70\x42\x04\x15\x50\x29\x21\xa2\xf6\xaf\xe4\x4d\x16\x75\xce\xcd\x6b\x47\xaf\x83\x4f\x4b\xa6\xcf\xc4\xd7\xbc\x52\x44\x17\x7e\x01\x65\xe3\x44\xd5\x01\x5e\x84\xa8\xc4\xf1\x12\xe0\x45\x88\xf2\xf0\x97\xb0\xa4\xf8\x22\x17\x77\x09\x4b\x88\x2f\xaa\x01\x5d\x02\x2b\x10\x2a\x88\xbc\x04\xf8\x0d\xa4\x07\x85\x25\xe4\x2b\x16\xa8\x04\x78\x11\x8c\xc7\x25\xe2\x57\x23\x29\x2f\xad\xbc\xb9\x09\x81\x5f\x43\x67\x9e\x04\x6a\x36\xb8\x7d\xd5\xe4\xc1\xa6\x26\x8e\x01\x4f\x03\xa6\x75\x53\x31\x12\x85\x7d\x4c\xb2\xfa\xb5\xbc\x63\x25\x94\x27\x4d\x40\x1f\x20\x04\x3d\x99\xa8\xe1\x1b\x48\x62\xea\x01\xbe\x81\x64\x2a\x84\x30\xdf\x92\xa7\x5b\x68\x58\xd3\x8c\xca\xd2\x46\x0c\xfa\x12\xe5\x5b\x0c\xee\x6f\xe9\x7b\x46\x14\x25\x79\xcf\x77\x49\xf2\xb1\xbb\xb3\xa5\x8a\x98\x72\x96\x1c\xdf\x93\x3b\x87\x23\xa0\x66\x89\xb9\x01\x65\x71\xbb\x7a\x5b\x72\x7c\x1a\x26\xc5\xba\x34\xaf\xae\xa9\x57\xb8\x12\xfd\x76\x5b\x8b\xa6\xc1\x2a\x10\xef\x6f\xe1\x14\x28\x1e\x9b\x85\xcb\x4c\xc6\xf0\x0a\x18\x2f\x4b\xa4\xaf\x1e\xab\x41\x5c\x10\x9a\x91\x39\xdb\x94\x5a\x5c\x02\x4c\xfa\x9b\xa7\x8a\x88\x35\x45\xb2\x96\x80\x80\x35\x45\xe9\x96\x80\x20\x92\x17\x7f\x6b\xac\x26\xf0\xfa\x01\x5a\x69\xd2\xc2\x75\x70\x2f\xcf\xbf\xa3\x7e\xa1\x9b\x5c\x57\x33\x8f\xce\x78\x1e\xcd\xb8\xb3\x96\xab\x01\x5c\x02\xf5\x30\x37\xea\xf4\xab\x09\x9b\x8c\x9f\xf3\xfe\x79\x4a\x8c\xf8\x39\xf4\x70\x6f\xc0\x01\xcb\x95\x37\xe0\x60\xcd\x66\x7f\x8f\x5a\x8f\x82\x1f\x46\xef\x2e\xf4\x0d\xc6\x1a\xf8\x6d\xa6\xf5\x25\x0f\xc7\xba\x9a\xde\xb1\x8f\x55\x5b\x5f\x20\x19\xe8\xb5\x20\x3b\x0c\x41\x92\x2d\xc2\xce\x22\x68\x52\x1a\xc3\x4e\xad\xd5\x18\xd8\x77\x60\x58\x53\xdc\x51\x6f\xd2\x1d\x9c\x50\xc9\xd4\x64\x4d\x79\x03\x08\x09\xd9\xf8\x3f\x58\x27\xd3\x8f\x61\xfa\xcb\xde\xb9\x07\x8b\x06\xf9\xd0\x64\x20\xfb\x52\xf4\x7f\x72\xbc\x7c\xf2\xd8\x34\xdd\x83\x76\x37\x89\x02\x01\x26\x72\x9b\x96\xc2\x01\x3f\x41\xf0\x73\xb0\x48\x1f\xd2\x07\x31\x2a\x04\xb1\xc8\x4e\x37\x48\x27\x6c\x47\x3e\x50\x99\x81\x3f\x8c\xd2\x25\xf3\xb6\x68\x5e\x72\xb2\x4a\x98\x8f\xf9\x13\xdc\x24\xba\x47\x58\x8f\xa4\xe8\x87\x93\x44\xaf\x29\x9d\xb0\x1e\x59\x6c\x38\x61\x0d\x34\x11\xc2\xa4\x5d\xb3\xe4\x3f\x14\xf6\x6f\xcd\x62\x02\x6b\x46\x64\x49\x90\xac\xeb\x5f\x2c\x56\x87\xeb\x59\x06\xad\xf3\x05\xd5\xcf\x2c\x0e\x62\xef\x8b\x05\x5f\x10\x11\x5f\x43\x30\x54\xc4\x78\xbb\x4e\x88\x2a\xee\xf0\x02\x5d\xb9\x3d\x79\xce\xfb\x07\xc6\x30\x99\x8b\xce\xed\x55\x82\xb5\x04\x04\xb7\x18\x69\xf3\x49\x10\xd2\x80\xf3\x61\x46\x82\x89\x31\xb8\x59\x32\x5f\x58\x62\x66\x2c\x86\xe1\xa6\xfa\xeb\x76\x02\xa3\x55\x07\x10\x33\x6d\xdb\x2f\xe1\x2e\xef\x2a\xb0\x25\x2c\x31\x53\x45\xd6\x4a\xb8\x61\xd2\x72\x77\x4f\x1d\x49\xf7\x47\x52\x13\xe5\xb0\x36\x9e\x12\x5b\x4b\xdc\x58\xcf\x5a\x76\xc9\xb8\x04\xc2\x2a\x88\x22\x4a\x15\x37\x95\x5f\x2e\x71\x63\x04\x8f\x5f\x80\x85\xc6\xfd\xd1\x83\xd5\xfc\x3e\xc3\x8b\xfc\xc2\xd2\x77\x65\x75\x8c\x08\xa1\x55\xc5\xa9\x12\x9f\xd0\x90\xa6\xf6\x3a\xe3\xc5\x6c\xe2\x92\xe5\x94\x00\x58\x22\x4b\xd1\x0e\xbf\x7d\x51\x4d\x51\x1b\x31\x0c\xc3\xbd\xdf\x0c\x92\xf8\xd0\x75\x64\x70\xbf\x2d\x58\x31\xd2\x25\x2e\xf0\x20\xb7\x29\x54\xa5\xa0\x6e\x7d\x50\xe8\x48\x89\x90\xda\xaa\x5c\xd0\x25\x46\xa6\xbb\x07\xff\x00\x3d\x40\x67\x2b\x6a\xdb\x07\x0b\xd4\x11\x42\x9b\xf2\x0d\x0a\x0a\x97\xd6\x2c\x7d\x17\xc5\xef\x43\x0d\xaf\x1f\xe8\xd6\xd4\x14\x11\x2a\x62\xb2\x8f\x89\x27\x9e\x9f\xf3\xc4\x13\x12\x20\xd2\x25\x91\x58\x84\x5d\xd6\x9a\x0c\xea\xe9\x2f\x90\x34\x63\x06\xb8\x4a\x23\x8f\x4f\xc1\x0b\x0d\x90\xe1\x9f\xaa\x7e\xbf\x02\x02\x41\x98\x89\x12\x7f\x4f\x17\xa2\x70\x8e\x72\xa8\x4d\x27\x6e\x64\xbd\x27\x9d\x20\x91\xd5\x51\x93\xfb\x63\xd5\x48\x61\x2c\xd3\x1f\x25\x00\xf3\x93\xcc\xa3\x0e\x0b\x6c\xf5\x7e\xa1\xc0\x17\x91\xfd\x1c\x96\x6b\x77\x58\xc8\x6f\xfd\x7e\x23\x46\x84\x22\x96\xa7\xef\xaf\x11\xc8\x5f\xfd\x02\xf8\x6b\x76\x8f\xe4\xaf\x42\x19\xc4\xb5\x90\x7f\x12\x77\x56\x98\xb0\xed\xda\xc0\x05\x97\x18\x34\x05\xfc\x95\x08\xb3\x6b\x34\x82\x2a\x6b\x7d\x49\x5f\x89\x15\x56\x31\xd3\x58\x85\x15\xd2\xbb\x96\x66\x55\x93\x50\xc5\x91\xeb\x15\xad\xb0\x13\x9b\x02\x68\x55\xf5\x0a\x3e\x56\x55\x4d\xb0\xc1\x4a\x66\x92\x43\x5c\xc6\x4b\xc8\x89\x0d\x46\x1b\x63\xbc\x51\x58\x77\x07\xac\xc1\x67\x3e\xd1\x68\x96\x72\x8f\x30\xa3\x19\xe4\x06\xb3\x99\x69\x08\x81\xbd\xc3\xfb\xb4\x83\xd1\x76\x3f\xc7\xbe\x96\x0b\xb1\xe0\x26\x96\x6c\x6d\x3d\x2e\x29\x2d\x5b\x95\x8a\x2c\xb6\xa3\xd8\xdf\x12\x07\x83\x8b\x75\x3c\xc4\x25\xb8\x65\x5b\x59\xe2\x12\xd4\xb2\x4d\x22\x4c\x91\xaf\xd9\x30\x20\x1e\x21\x66\xb3\x33\xa4\xe7\x24\x55\xb6\x2a\x11\x51\xbb\x71\x98\x1d\xa1\xf6\x55\x4a\x26\x34\xca\x6b\xaf\xb5\x1f\xc7\xab\x2e\x78\x89\x03\xe1\x9a\x6a\xee\x38\xa6\xd5\xdd\xce\x5c\x3a\xa3\x6d\x4f\x8b\xbf\xaa\xf7\x9d\xe5\x69\x0d\xe3\x8e\x80\xe8\xee\x0e\x18\xc1\xe0\x85\x44\x04\x83\xa5\xaf\x88\xec\xd6\xd7\x07\x8f\xf4\x24\xe9\x8d\x55\x00\x6a\xf6\x9c\x10\x7c\x6b\x83\x44\xa4\xf4\x64\x96\x7d\x90\x7f\x0a\xad\x4f\xfc\x80\xe6\xcc\xda\xb6\xde\xbc\x88\xbd\x6d\x5e\x58\xc6\x0f\x24\xbf\xcf\x19\x19\x47\x2c\x7d\x9b\x3c\x00\x69\x51\x13\x62\xc9\xc3\xcd\xa7\xce\x12\x96\x5a\x34\xbf\xba\x98\x56\x23\xdd\x30\x52\x18\x0a\xd2\x5c\x23\x0a\x48\xdb\x3a\x10\x2f\x78\x19\x3c\x47\x54\x94\xb6\xe6\x1f\x2f\x78\xb6\x0c\x23\xee\xcb\x7a\xb7\x71\xad\x8b\x4f\xa9\x0b\x9e\x2d\x53\xff\x85\xdb\x1a\xbc\x7f\x2f\xd8\xf4\xbd\xdf\x97\x64\x94\x6c\x53\x8d\x17\x77\x93\x9e\x4f\xea\x8b\x9e\x10\xab\x9b\x76\x1f\x4a\xb8\xf0\xa0\x18\x69\xb3\xa2\xad\x11\xe7\x80\xf0\xe6\xe7\x30\x51\x7a\x95\x27\x2d\x59\x46\xc9\x0d\x4b\x96\x79\x1e\x2a\x03\x6f\x76\x7c\xc4\x9b\xdb\x4b\x3d\xdc\x8f\x85\x45\x43\x42\x74\xb2\xe3\x22\x22\x4b\x38\x66\x8b\x32\x4b\x78\x2a\xd5\x4c\xfa\x1e\xaf\x1a\xfa\x25\xde\xfb\xf7\x57\xf5\xd6\xb8\xd7\xc6\x1a\x42\xd1\x0d\xb9\x46\x5b\x25\x6d\x4c\xc0\x49\xfe\x61\xb1\x34\x09\xa7\x09\x72\x93\xfd\xd1\x69\xe3\x21\x36\xd4\x86\x84\x2d\x84\x25\xfa\xdb\x25\x36\xa4\x00\x49\x52\xd0\xa5\x10\x20\x2d\xbb\x0d\x47\x8a\x56\x28\x85\xf2\xba\x01\xa0\xa4\x25\x47\xd5\x51\x7e\x72\xde\x24\xb8\xde\x5f\x3d\x91\x98\xaa\xda\xfb\xfb\x32\x81\x92\x20\x84\x6d\x3a\x4d\xd3\x12\xc2\xda\x6b\x62\xb0\xff\xc8\x21\x92\x96\xc8\x35\x74\x72\xa6\x25\x70\xa9\xce\x53\x49\x0c\xcd\x1d\x7e\x0c\xfb\xe4\xab\xcd\x6b\xb9\x24\x30\xa6\xf8\x14\xaa\x16\x62\xe9\x28\x97\xfa\x98\x90\xb8\xe4\xb0\xd1\x92\x22\x0f\x33\x0f\x49\x62\x57\x8f\x89\xb6\x6f\x2d\x64\x82\x69\xd8\xdf\xb3\xf6\xa8\x02\xe3\x4a\x4a\xd4\x64\x64\x45\x4b\x10\xd9\x82\x22\xf6\x4b\x82\x48\x16\xed\x7a\x4e\x4b\x26\xb3\xc7\x20\x21\x21\x69\xb8\x43\x5e\x45\x95\x3c\x24\x79\xa0\xa7\x84\x88\x23\x83\x90\xe0\x79\x16\x97\x4d\x8c\xcd\xd5\xe7\xf9\x51\x5c\xfc\x1c\xc9\x55\x5a\x92\x25\xc0\x59\x80\x4c\x48\x50\xf2\xfa\x22\x41\x49\x32\x74\x42\x7e\x92\x98\x5f\x5a\xc2\x9c\xd2\x34\x4b\x82\x0f\xdd\xb4\x92\x49\x1b\x1e\x09\x91\xd8\xc3\x33\x63\x9a\xa7\x38\x4d\xe2\x1d\x63\xe2\x94\x89\x66\x36\x2f\x06\x32\xa6\xcd\x16\x12\xcd\x6e\xe2\x9c\x89\x56\x35\x13\x63\x81\xff\x4f\x7c\x27\x15\x68\x0c\x1e\x8e\xf7\x24\xbc\x9e\xaf\x6d\xb8\xf9\xf3\x9b\x72\x88\xc6\x83\x07\xdc\x88\x86\x24\x66\x62\xac\x50\x9e\xa4\x4c\x25\x94\xf1\xef\xb6\xb3\xa5\xca\xeb\xdd\x84\x8f\xfa\x54\x88\x17\x7c\xf5\x7d\x15\x47\x49\x95\x5c\xc6\x03\x30\xc9\x73\xf3\x0b\x6b\xbe\xde\x5c\x4b\x10\xb3\x29\x3e\x2d\x39\xac\x2a\xaa\xa9\xa4\xc6\xdd\xa4\xd7\x59\x87\xae\x48\xa8\x49\xb4\xa6\x79\x7d\x10\xd0\xea\x00\x81\x84\x80\x56\x9b\x60\x13\xd2\x63\x7b\x35\x42\x98\xb6\x5c\x36\xff\x80\xb8\x1a\x71\xd5\x84\xa8\x54\x8b\x38\x69\x09\x62\xba\x1b\xa6\xa4\x8e\xec\x14\x6f\x25\xc6\x78\x4a\x74\x4f\x83\x75\xd8\xbd\xb5\x18\xf4\x29\x65\x24\x0d\x04\xc7\xc9\x45\x82\xea\x3e\xd5\x36\xe4\x04\x83\x97\xcd\x49\x69\x40\x19\x69\x1e\x10\xca\x88\x57\x6c\x40\x14\x36\xc4\x83\x92\xbb\x16\x60\x90\x6f\x8b\x80\x06\xe1\x55\x9b\x25\x94\x8b\x54\xd8\xb4\xb3\xcc\x4f\xf0\x1b\xb4\x7b\xb8\x0d\x0f\x7e\xf5\x07\x4f\x21\x67\x81\xb8\xd3\xa5\xef\x17\x3a\xf3\x9b\x34\xe7\xfd\xc9\x43\x13\x90\x2c\x1e\x68\xa3\x7c\x7a\x4a\xd9\xfa\xf8\xda\xe1\x4f\xf3\x3e\x82\x9b\x7a\xf8\x10\xe0\xfd\x21\xc5\x94\x78\x3c\xe2\xaf\xba\x3c\xe0\x59\x6a\x3f\x32\xa2\x25\x98\xdc\x62\xf6\x32\x1e\xf5\x75\xc7\x4c\x49\x07\x53\x9e\x04\xf2\x12\x0a\x9b\xc9\xf2\x64\x29\x79\x89\x1f\x89\x41\xa2\xc9\xd3\x3b\x11\x2b\xe4\x9d\x40\x29\xcf\x6e\xe9\x84\x24\x2b\x8f\x8f\x20\x50\x33\x5c\xd8\xcb\xbc\x8f\xcf\x35\xbc\xf1\x7b\x3e\x25\xc6\x3c\xda\x3a\x52\xbc\xcd\xe8\x11\xee\x26\xa2\xeb\x91\xb3\xfd\x06\x89\xc0\x7c\xef\xe2\xf5\x5b\xc2\xe6\x45\x46\x21\xa2\x40\x8c\xa7\xe3\x14\xd2\xf5\x08\xde\x7e\xe1\xc9\x13\xd5\x9c\x10\xe5\xe9\x04\x8e\x92\x68\x2f\xf3\x19\x74\x91\x52\xd5\x25\x85\x3c\x2b\x65\x69\x3e\x7e\x3a\xf5\x30\xe3\xf7\x57\x51\xfa\x68\x49\x33\xbd\xae\xfe\x29\x69\xc9\x80\xba\xd4\xb5\xa4\x59\xbe\xbf\xba\x19\xc1\x92\x08\xbb\x71\x34\xfb\x7a\xd9\x4f\xd7\x31\xe2\x43\x66\xee\xeb\x65\x0f\x7c\xac\xa6\x07\x5a\x7b\xd2\xc7\xe5\xbc\xbe\xbf\x6c\x4e\x4e\x13\x2c\xd1\x60\x81\x25\xea\x5b\xa4\x8f\xc9\x3b\x91\x96\x58\x69\xa5\x0e\x35\xb8\xba\xb9\xeb\x92\x31\x95\xd1\x52\xd2\x0d\x88\xb4\xaa\x37\xab\xbb\x78\x55\x6f\xd6\x4b\x32\xb3\x5b\x12\xa6\xc3\xb3\x12\x12\xc2\x2c\x93\x2d\x11\xb2\x9b\x13\xd2\x36\x67\x63\x21\xea\x7f\x0d\x2d\x68\xde\x96\x6e\xa6\xc1\xf2\x96\x57\x73\x53\xb3\xae\x66\x55\x13\x5e\x88\xe1\xb7\x97\x34\xaa\xa5\xca\x4b\x1a\x55\x61\xd0\x92\xb7\xa5\x5d\x47\x7f\xbc\x84\x73\xb1\xd4\xbc\x2d\xde\x20\xdb\x6f\x5e\x92\xeb\xd0\x56\xc9\x30\xe8\x25\x3f\xbd\xd7\xcb\x1a\x37\x40\xda\x13\x48\x4b\x6a\x1d\xa2\xb0\xbc\x84\xd6\x91\xfc\x94\xcc\xdd\x50\x04\x46\x0a\x4b\xe8\xcf\xa8\x6a\xf5\x12\x3e\x33\x52\xc1\x1c\xc5\x98\x03\xc4\x6c\x89\x3e\x39\xb0\x9e\x4c\xf3\x0f\x07\x88\xda\x1f\x9c\xf8\x40\xa8\x80\x09\xd1\x07\x50\x46\x75\x19\x55\x27\x2f\x19\x26\x44\xc7\x81\x66\xba\x82\xc5\x48\x70\x0d\x64\xa8\xdd\x33\x8c\x8c\xeb\x35\x0e\x96\x08\x5b\xed\xc0\x41\xcd\xb6\x1a\x5f\x3d\x20\x92\x60\xf8\x7d\x64\x11\xbd\x3a\x24\xc8\x6e\xc3\x4f\x2c\xa2\xcd\x4b\x00\xae\x71\xf3\x73\x40\x2c\x66\x95\x21\x10\x87\xd7\xf8\x84\xd8\xe3\xc3\x4c\x2e\x32\xcd\xc8\x6d\xab\x8e\x59\xcb\xc8\xe4\x77\xa8\x69\x86\x97\xd9\xa1\xab\x99\x35\x1a\x55\xaf\xaa\xe4\x44\x7f\xbe\xd6\x20\xb1\xb4\x8b\x36\x46\x5e\xf2\x71\x55\x31\xc5\x92\x61\xb2\x0c\xe1\x47\x67\x49\x4e\x84\xdf\x1f\x73\x85\x3d\x3a\xe0\x35\x89\x40\x78\x76\x60\x6b\x4e\x5c\x61\xb7\x69\x3e\x94\x41\x94\xf7\x37\x39\x74\x39\x67\xba\x05\x34\x20\xc4\x6b\x87\xfa\xe6\x4c\x70\x05\x1d\x13\xfe\x8d\xd0\xcc\x5b\x6a\xb5\x00\x10\xb0\xed\x9c\xc9\xc8\x7b\x73\xa8\x30\xaf\x8b\x72\x68\x74\xce\x4f\x5d\x13\x7f\x70\xd2\xe0\x29\x90\x33\xef\xa2\x49\xfe\x81\x30\x7a\xca\xc8\xc4\xf7\x92\x15\xd0\xa4\x78\x68\xae\x48\xbd\x91\x94\x93\x91\x29\x96\x25\xd5\x64\xd4\x4a\x4b\xde\x15\x10\x7c\xb3\x74\x6d\xdc\x5f\x55\x73\x71\x7f\xb0\x59\x7b\x3e\x15\x26\x62\x1d\x90\x19\x2e\xe4\x9c\xfd\xbc\xf3\xaa\x61\xb5\x59\xf1\xac\x79\x80\x9d\x3e\x3b\x41\xc0\xdc\x32\xb3\x0e\x48\xce\x39\x7b\x06\x94\x9c\x25\xca\xe6\x25\x2a\xbf\xdc\xd0\xb9\xc1\x8e\x64\xa2\x6d\x2c\xeb\xa0\xf7\x21\x4b\xfb\x20\xe1\x8d\x5c\x8e\x5c\xcc\xc8\x35\xcb\xee\x9f\xb9\x66\x66\x5d\x74\x4c\x4b\x86\xc9\x74\x4c\xeb\x78\xce\x74\x4c\x7b\x51\x1b\xb2\x8f\xcc\x1c\x99\x5b\xd6\x3d\x5f\x24\xcf\xbd\xe6\x0b\x57\x8f\x97\xb8\xc1\xab\x98\xdc\x06\xbc\xe6\xbd\x28\x8e\x60\x83\x41\x66\xfa\x98\xf9\x3a\xd3\xc7\x7c\xde\xc0\x62\x6a\xa9\x33\xb3\xee\x8d\x7d\x88\x99\xf9\x62\x52\x86\x32\x1c\xe1\xd9\x27\x14\x8a\x25\x64\x9f\x14\x4c\x07\x33\x9f\x43\x4d\xd1\x64\x04\xa3\x3a\x42\xce\x6e\x4f\xd6\xd9\x50\x9b\x7c\xc9\x44\x09\x8b\x6c\x92\xcc\x87\x42\x96\xaf\x28\xb7\x0c\x4f\xba\x8a\xc2\x95\xe7\x3e\xb4\x6e\x94\xd0\x42\xbb\xf9\xf4\xc2\x65\x04\x76\x49\xf2\xc2\x34\x1b\xa9\xf2\xa0\xfa\xe6\x7d\x03\xed\x22\x9b\x2a\xa1\x4d\x24\xf3\x56\x78\xd3\x6b\x34\x52\x06\xaf\x11\xf5\xf9\xb3\x93\x0c\x85\x45\x14\x52\x68\x12\x0c\x33\x2b\x29\x98\x2c\xf7\x07\x08\xcd\x71\xa7\x4e\xe7\xbd\xbb\x23\x21\xca\x84\x0a\x7d\xc2\xf1\x51\x99\xd7\x71\xca\x38\x98\x69\xd3\x7d\x7d\x3f\x58\x0d\x41\x6d\x68\x48\xb2\x6b\xe7\x9d\xd5\x12\xdc\x1f\xdc\x35\xde\x58\x3b\xcb\x15\x08\x27\x4b\x95\xa8\xb6\x2f\xf1\x8e\x39\x1b\x27\x50\x3b\xb4\x5a\xea\xca\x07\x6f\x98\x13\xc4\x70\xe8\xe7\x60\x66\x03\x87\xbe\x23\x34\x32\x0b\x85\x75\x2f\xfc\x01\x9d\xd0\x5b\xed\x80\x4e\xe8\x65\xe5\x85\x2b\xf9\x27\xd5\xa5\x4b\xe6\xf5\x40\xdd\x1b\x83\x19\x70\xcd\xbd\x13\x1f\xee\x1d\x3a\xb3\xc9\x92\x19\x71\xc5\xdf\x03\x1f\x66\x0c\x4c\x90\x93\x49\x82\x85\x51\x9d\x06\xf1\xdc\xb8\xe7\xe3\x98\xba\x8f\xdc\xdc\x99\xc5\x25\x4c\xa4\x4c\x90\xf3\x71\x46\xfb\xb6\xc2\x2d\x78\x61\x9f\xbd\xda\x99\xf6\x6e\xa3\xf7\x64\x98\x99\x17\xfc\xa4\x97\xd9\x10\x31\x64\xb6\xbf\x3e\x81\x59\xc7\xdb\xe0\xbc\x81\x22\x2d\x31\x33\xe0\xba\x79\x01\x53\xda\xcc\xdc\x58\xf2\xb2\x59\x42\xbd\x88\x24\xbd\x30\x79\xd3\xa7\x3a\x98\x48\xcf\x31\x11\x4e\xba\xc4\x34\x83\x49\x9f\xa5\x4f\x3c\x28\x2b\xd1\x27\xd0\x44\xbe\x8e\xb1\x38\xe1\x03\xf4\xae\x98\xc8\x66\xf1\x79\x32\x91\xaf\x63\x90\x27\xf2\x75\x8c\xc5\x09\x33\xa4\x77\xcd\x44\x3e\x92\x51\x32\x61\x47\x30\xd5\x33\xc5\xcd\x54\x33\x59\x61\xc4\x07\xda\x0d\xa7\x9f\xb7\xed\x8d\x38\x1b\x93\x11\x74\x95\xe8\xf3\x87\x09\x69\x26\x93\x1b\x13\xf0\xb2\xdf\x70\x49\xbe\xda\x98\x90\x2c\x6d\xf9\x46\x7e\x90\xb6\x71\xd9\x80\x61\x8d\x5f\x58\x8c\xd8\xc9\x1d\xa8\x5a\xdb\x54\x7a\xb8\xa0\x68\x6d\x53\xc1\xe3\x52\x90\xcf\xa6\xf2\x7d\xa5\x30\x9f\xad\xf8\x79\xc3\x04\xaa\xda\x08\x6a\xc9\x6e\x03\xc3\xe2\x03\x05\x91\x07\xba\xc1\xa6\xa0\x04\x6e\x53\xa5\xe3\x82\x3b\xd6\x9b\x77\x7d\x61\xa0\xaa\xee\x7a\x28\x85\x26\xf7\xe2\x01\xa0\x10\xcb\x06\x82\x5b\xd9\x63\xf0\x84\x03\x56\x20\xfb\x39\x69\xcc\xcf\x59\xcc\x52\x4b\x50\x98\xf3\x66\x8c\x30\xa7\x2d\xb9\x03\x5e\x14\x91\xfc\x02\x40\xd2\x91\x57\x02\x6b\x90\x8a\xea\xca\xa3\x4c\xb8\x8b\xc8\xfa\xa1\xc6\xca\xd2\x1e\x5c\xfb\xbe\xa0\x86\x6f\x0c\xe2\x26\x25\x3e\x63\x6a\xd6\x11\x01\x1c\x62\xcf\x25\xd2\x34\xf4\x1a\x62\x11\x4a\xdd\xfc\x01\xec\xe7\xc3\x23\x4e\x3c\x77\x07\x37\xda\xa2\x0b\x24\x96\x99\xdb\x96\xa5\x2e\x44\x15\x89\x2a\x25\x21\xe5\x46\x82\x05\x6a\x0a\x47\xbb\x2e\x70\x85\x7d\xf3\x09\x58\x90\x67\xa6\xeb\x55\x0b\x4a\x0e\x37\xf3\xbb\x92\x00\xb1\xe9\x62\x29\x13\xd1\x01\x86\x25\x21\xc7\x48\x82\x13\x2a\x14\xfb\x2e\xcc\x82\x3b\xf2\x9b\x2d\x82\xb8\x4d\x34\xa9\x66\x4c\x61\xbd\xe2\x66\x33\x48\x61\xde\x9a\x04\x97\x82\x2b\xba\x6d\x7e\x2f\xcc\x5b\x93\x64\x56\x32\x72\x88\x7e\xe6\x8c\x29\x8c\x79\xf5\xe8\x19\x09\x46\x9e\x2d\x82\x2b\x6a\x29\x7e\x01\x21\x41\x62\xce\xe5\xb9\x31\xb2\x7b\x78\x38\xff\x25\x47\x15\xa6\xb9\x0d\x77\x80\xf5\x6d\x6e\xc3\xd9\xff\xfa\x9e\xeb\xab\x19\x14\x80\xaf\xf3\xaf\x30\xcd\x4d\xf2\x06\x8a\x35\x37\x9f\xf7\xbc\x7b\xb5\xfb\x80\x44\xf1\xe6\xa8\xf2\x4b\xa5\x20\xfc\x42\x65\xb7\x4a\x29\x0d\xf8\xf4\x73\x12\xa4\x07\x78\x44\x7b\xcd\x18\xd1\xaf\xaa\x63\x56\x70\xcf\x7f\xf4\x89\x86\xd2\xcf\x51\x25\x07\x4b\x61\xda\x9a\x8e\x27\xdc\xe9\x1f\xed\x44\xc7\x95\xfe\xd1\x01\xaf\xb8\xd1\xdf\xb5\x29\x0b\x2e\xf4\x8f\xc5\x18\xa4\xb6\xa2\x12\x72\xa5\x30\xde\xc2\x14\x82\xcb\xfa\xcb\x8b\x99\xb2\x1e\x6f\x32\x52\x1b\xaf\x38\xf3\x2e\x78\x42\x28\xcc\x6e\x1b\xac\xc0\xde\x86\x0c\x99\x78\xf1\xdb\x46\xa7\xaf\x66\xd9\x70\x47\x7f\xf3\x98\xd7\xf7\x57\xcf\xaf\x21\x41\xe7\x26\x9c\xa5\x30\xf4\x6c\xa8\x99\x9a\x66\xf6\xd8\xe1\x81\x34\x59\x23\xe4\xc2\x89\x36\x05\x21\x17\x9b\xf7\xe5\x52\x20\x92\xc3\x1e\x4b\xa7\xf9\xcc\x0c\x7b\x29\x0c\xc9\x31\x1e\xa5\x23\x39\x70\xf8\x03\x44\xb1\x18\xe2\x0e\xdf\x4e\x73\x1b\x00\x7b\x19\x91\xc9\x96\x4d\x57\x08\xbc\xdd\x5e\xfd\x4d\x3c\xf7\x78\x88\x92\x36\xd9\x30\xc2\xe3\x75\x22\x0d\xfa\x5c\x85\x51\x24\xaf\x65\x73\xb2\x81\x64\x30\xd3\xc1\xd2\x27\x92\x9d\x3b\x05\xc9\x6c\xd9\x9c\x88\xc9\x6b\xe6\x34\x4c\x5e\x33\x99\x30\x79\xcd\x9c\x71\x70\x05\x05\xc0\x80\x1b\x5f\xb6\xad\x32\x6e\xbc\xaf\xef\x97\xee\xd0\xb3\x39\xf3\x0e\x1f\xb1\xfb\x67\xf2\x9a\x39\x01\x3c\x11\xd9\x1b\x0f\x65\xd8\xac\x62\xa2\x76\x79\xcf\xe6\xec\x3b\x16\xac\xfa\x39\x16\xcc\x9c\x62\xa7\x4d\xba\xf8\x05\xae\x98\x00\xda\xb1\x62\x66\x66\x48\x96\xdb\x5e\x1d\x20\x1b\xcf\x24\xb9\x93\x15\xeb\xfd\x83\xa9\x57\x3e\x0b\x0e\xc4\x57\x7a\xc6\x07\x68\xd2\x32\xc0\x41\x9a\xf4\xfb\xcf\xfd\xcb\x9a\xd1\x01\x90\xcd\x1a\x1e\x69\xdf\x53\x3c\x18\x20\xed\xe3\x10\x09\x72\x8e\x58\x2c\xbc\xc5\xc2\x66\xde\xc2\x04\x38\x63\xfd\x44\x46\x9f\xe7\x78\xf2\xca\x37\x1f\x58\xc8\x88\xb3\x3d\xa9\x9c\xa8\x61\x66\xa8\x99\x21\xe7\x7d\xc0\x0c\x38\x6f\x7c\x64\xc0\xd9\xbe\x54\x96\x40\x9f\x4a\xf9\xd9\x79\xc3\xf4\x38\x83\xc3\xf4\x38\xd3\x20\x2e\x7e\x7f\x9d\x86\x27\xa3\xd9\x3d\x39\xa4\xff\x59\x84\x39\x09\xbd\xbe\xbf\x08\xbd\x26\x8b\x64\x39\x6b\xab\xb8\x45\xda\xb7\x1f\x96\x72\x25\x3c\x17\xb0\x17\x81\x17\x70\x57\x41\x5b\xf3\xbd\x90\x14\x62\x9a\x66\x71\x8c\xee\x09\xd1\x73\xa2\xa2\x8c\xa5\x5c\x03\x10\xb8\xbd\x03\x5d\x1e\x81\x18\xf0\x73\x64\x74\xfa\xb4\x41\x76\xdd\x8b\x68\x11\x66\xdc\xab\x45\xb2\x27\x9a\x46\x53\x9a\x00\xd9\xeb\x3d\x09\xb2\x3a\x40\xee\xdc\xeb\x44\x67\x2c\x8d\x54\x95\xb2\x54\x91\xe8\x15\x5a\x9a\x48\x2a\x96\x11\x11\x6a\xf3\xda\x54\xbc\xae\x62\x78\x09\x26\xaf\x42\x30\x0e\x27\x26\x68\x41\x17\xe5\x34\x5c\xe8\xb6\xf0\x5a\x6e\x17\x29\x2d\xb8\x96\x7b\xd8\xc4\x59\x6e\x96\xf3\xf6\x91\x79\x23\x87\xd1\xcb\x70\x23\xdf\xcf\xcb\x7a\x23\x1e\xc8\x48\xbd\x91\xdf\x67\xde\xcd\xdb\x49\x87\x0f\x87\x1b\x0e\x4a\xf3\xca\x9b\x0e\x4a\x3f\x47\xc2\x9f\xe9\xf2\x46\xc2\x9f\x36\x4d\xdd\x36\x3c\x2f\x6a\x07\xf4\x57\xd5\x8e\x68\x77\xb5\x91\xd0\x28\x4e\x51\x11\x08\xed\x5a\xc1\x05\x37\x2a\x24\x95\x7d\x2e\x75\xa9\x2b\xc9\x89\x52\xb8\x75\x3c\xe9\xf6\xd0\x52\x37\x02\xe0\x36\x26\xa8\xe3\xb2\x06\x4c\x50\x54\x50\x91\x25\x57\x5d\x70\xa1\x06\xce\x50\x13\x08\x48\x51\xd4\xe9\x52\x97\xb6\x91\x6c\x75\xc7\x85\x0e\xc3\x9e\xeb\x1a\x38\x61\xf7\x87\x25\xe9\xfe\xfe\x40\x5b\x18\x09\x9c\xb0\xdf\x47\x16\x69\x77\x7f\x93\xae\x15\x7f\x80\xc4\x58\xd1\x59\x85\x6b\xa4\x46\xe9\xd4\x35\x32\x34\x4f\xae\xa4\x1a\xe9\x29\xf0\x18\xbc\xbd\x48\x25\xd7\x0a\xaf\x59\x2f\x2a\x62\x5d\x6a\x44\x32\xac\xce\x9c\x1a\x91\x55\x69\x2c\x44\xe6\x27\x7a\x1d\xe0\xee\xd8\x7c\x2a\xf3\xa2\xf6\xe2\x74\xd9\xba\x14\x98\xec\xa0\x8c\x9a\xe8\xc9\xd6\x07\x89\x39\x92\x9e\x43\x42\x8e\xa4\x01\x47\x31\xfb\xcd\xb6\xd9\xba\x54\x92\x6c\xbb\x61\x65\x85\x78\x97\x76\xa8\xac\xde\x67\x59\x03\x77\xc3\x67\x67\xdd\xd7\xf4\x80\x21\x72\x48\xc8\x16\xf5\xea\xb3\x5c\x9f\x0f\x73\x5e\x26\xbf\x59\x5c\xaa\x4b\x4f\xc9\x76\x21\xd7\xcc\xec\x40\x53\x64\x66\x48\x9d\xf7\x04\x1c\x19\xdb\x6b\xde\xf0\x64\xbc\xd2\x0f\x6a\xe6\xf1\xe8\x17\x98\xf5\xda\xfd\x02\x01\xf3\xbe\x81\xfa\xb1\xa5\x1f\x15\x6a\x2e\x35\x13\x6c\x13\x21\xf3\xf2\x6c\xa6\xae\x74\x6d\xb8\x10\x0d\x2e\xc0\xcf\xb6\xb3\xd7\x4c\xb3\xb0\x51\x59\x58\x7c\xdf\x5d\x20\xa6\xa8\xa9\xa2\x7f\xa9\x4b\x23\xc9\x36\xe5\xd7\xc2\xfb\xa7\xe5\xb2\xab\x4b\x03\xc9\xb6\xfb\xd6\xf2\x40\xa9\x41\xcb\x40\x30\xa2\x3f\x78\x96\xcf\x5f\xb0\x1c\x90\x94\xc6\x5a\x98\x8c\x22\x5b\x73\x45\x94\x77\x70\x44\x21\xef\xed\x7f\xa5\xe2\xd6\x8a\x34\x59\x93\x7e\x7d\xdc\x6a\xea\xb3\x22\x4d\xb6\xba\x8d\x4c\x58\xe9\xfe\xb5\xd2\xf1\x24\xd7\x5f\xad\xc8\x84\xad\x1e\x01\x60\x54\x3f\x47\x66\x96\x2c\x26\x75\xe9\x2d\xd9\xa6\xc2\x5a\x4f\x3c\x77\xfb\xe2\x00\x5a\x9c\xfa\xa4\xdc\xf8\x8d\x1b\x5f\x08\xc8\xf6\x40\xad\x05\x6f\x88\xa2\xae\x6e\xd3\xb9\xa6\xe3\xba\xb6\xc7\xbb\x26\x34\x34\xec\x46\x53\x5c\x5b\x9b\xef\xc5\xf7\x1a\xf3\x7f\xcd\x75\x1a\xa1\xd6\x24\x1b\x17\xcf\x1d\x3e\xbe\x25\xff\x40\x87\x5b\x71\x0f\x8c\x29\xdc\xfc\x06\xe0\x2c\xde\x5b\x28\xd6\x17\xac\xf2\xe1\x6a\x9c\xe2\xc2\x14\x15\x85\x3d\x82\x95\xc6\xda\x99\x32\xec\xbd\x85\x7a\x7d\xc1\x31\x2c\xb5\x3f\x11\xae\x1a\x15\xd5\xaa\x5d\x2c\xa4\x76\xa6\x10\x7b\x37\x2e\x8d\xaa\xb8\x5a\x46\x7d\x2e\x34\xf7\x02\xb3\x46\x9f\xe3\xdf\x6a\xe7\xa5\xaa\xd9\x5d\x4c\x44\xd1\x7a\x4c\xa4\x42\x9b\x28\x07\xe1\x12\xe0\x83\x45\xee\x4c\x23\x83\x60\x98\xcb\x0c\xd4\xd8\x36\x8d\xc0\x89\x12\xdf\x5d\x74\x66\x2d\x6b\x4c\x44\xbd\xc7\xf7\xa0\x3b\x7f\x70\x1f\x27\x7f\x10\x60\xa8\xc5\x17\x5f\xa0\x0f\xd6\x3f\x92\xb5\xaf\xa2\x80\x75\xae\x26\x7e\x06\xc3\x47\xd3\x01\x2f\x66\x77\xc1\xa1\xba\xf4\xa1\x92\xbd\x64\x3b\xa2\x38\xcd\x71\xe1\x19\x89\x4e\xcd\xa9\x70\x8d\x44\x55\xb4\x2c\x15\xbe\x91\x98\xbd\x03\x71\xcd\x4e\x74\x3a\x25\x2e\x48\x2a\x96\x4e\x2b\xbd\x23\xce\x6f\xac\x74\x87\x38\x34\xab\xc2\x1f\x12\xed\x70\xa9\xf0\x87\x44\x7b\x70\xea\xd2\x72\x4a\x7d\xbd\x50\xf8\x82\xa6\x85\xe8\x2b\xdd\xc8\x5f\xea\xd1\xd0\x16\x7a\xa1\x05\xf5\xf2\x7a\xe1\xc4\x0b\xee\x80\xd7\xdd\x99\x8e\x96\x92\x53\x1c\xde\x5c\x97\x92\x53\x1c\x95\x5f\x97\x8e\x53\x1c\xa7\x59\x11\x95\x9f\x54\x6a\xbe\x54\x04\x6c\xa5\xe0\x83\x1d\xf7\x10\xa7\xe0\x53\x77\xa9\x39\xbe\x7d\xa9\xd4\xa5\xe6\x14\x87\xa4\xd7\xa5\xc9\x14\x07\x06\x57\xf8\x31\x92\x7d\xc8\xf5\x44\xea\x7a\xfb\x51\x55\x81\x0a\x1f\x47\xb2\x7f\xb7\x5e\xb8\xb6\xc2\x6b\x8d\x7c\xc6\x64\x8f\x73\x65\x48\x57\x91\xdd\xaa\x22\xa6\xab\xbb\x18\x50\xbd\x98\x2a\x2c\xa4\x2d\xcd\xa3\xbf\xde\x47\xb8\x90\xe6\x0f\x3d\xe3\xd5\x3d\xe2\x6e\x3c\x3c\xc3\xac\x85\x1d\x54\xf0\x30\xbe\x59\xa7\xdb\xa4\x8a\x5c\xc6\x57\xe9\xa6\x8a\x5c\x46\x67\x99\xd5\xc9\x5b\x0a\x44\x33\x93\x41\x0a\x7e\x8e\xa0\x04\x63\x1f\x85\xbb\xc3\xeb\x7d\x9e\xd3\x3e\x33\x27\x8a\xdb\x7b\x39\xe6\x73\x4e\x0b\x02\x68\x1d\xae\xf0\x56\xa9\x74\x38\xc7\x1d\xd7\x7c\xd5\x6c\x3e\x71\xa3\x1a\xab\x99\xc0\xfd\x5c\x57\xa0\x36\x2f\x73\xb1\xc8\xce\xcb\x9d\x9b\x37\xdb\x4d\x57\xdb\xa7\xdd\x36\x86\xc0\x89\x44\x1a\x6a\xec\x39\xd4\xac\x6d\xb0\x25\x2b\x56\xa7\xc1\x27\xa1\x0b\x45\x4a\x63\x36\xa4\xd0\xdc\x50\x55\x4f\xd7\x91\x94\xb6\xd1\x24\x35\xd4\x86\x05\x47\x1c\xa5\x2d\x19\x7e\x38\x3a\xa9\x05\x8a\xbf\x0a\xcd\x6a\x4b\x88\xf7\x8d\x0c\x05\x17\x9b\x65\x87\xd3\xb6\xf0\x08\x1e\x1a\xe1\x89\x77\x92\x2c\xd3\x9e\xe2\x16\xaf\x2e\xe9\xbd\x2b\xee\x63\x32\x21\x30\xe9\x87\x45\x5b\x72\x78\xb6\x88\x9c\x4d\xf1\xb0\x16\xfb\x22\x4c\xbd\xbd\x24\xf2\x21\x47\x57\x8b\x8c\xe8\x15\x4a\x97\x3c\xee\xd4\xb4\x16\x41\xd5\xee\x1b\x95\xc4\x87\xbf\x5e\x5a\x92\x38\x59\x43\x6c\xbe\xf8\x52\x63\xa4\xd1\xeb\xf5\x25\xaa\x0f\xed\xd1\x96\x50\x58\xdc\xc8\x60\x68\x90\x21\x81\x10\xdd\x87\x41\x87\x10\xad\xfb\x67\x4b\x83\xad\xbf\x3b\x4e\xb6\x31\x16\xc8\xd8\x64\x2c\x90\x64\x8b\x96\x79\x33\xa1\x8e\xe0\x06\x11\xba\xda\xfd\xd0\x9e\xeb\x3f\xdc\xa6\x19\x54\xca\x43\x83\x45\xdf\xc1\x3c\x0d\xe9\x92\xce\x5e\x6c\x0c\x07\x7a\x0d\x79\xe0\xb9\xdf\x47\x44\xdb\x6b\x8a\x10\xca\x5e\xdf\x13\x46\xc1\x0c\x81\xd9\x09\xfb\x0d\xf2\xb2\x6e\x51\x2f\x0d\x21\xf9\xae\x3c\xd8\x50\x25\xdb\x21\x0c\xad\xf0\x92\x2d\x13\x35\x2f\x62\xb2\x9d\xb3\xf1\xe2\x40\x55\x0c\x2d\x8d\x77\xec\x3b\xac\xbe\x51\xd6\x35\xdd\xa3\x12\xb5\x53\xf4\x1b\x02\xe9\x6d\xc9\x6c\x90\x64\x5f\x23\x30\x8e\x5e\xb7\x5f\x97\x56\x11\x88\xe1\x9d\x0d\x93\xbc\x4d\x97\x8d\x77\x3b\xca\xa0\xd1\x18\x3e\x54\xfc\x3e\x82\x4f\x8a\x27\x80\xe8\x19\x89\x13\x0d\xd1\x42\x59\x52\x4e\x6b\x88\x35\x91\x02\xd0\x10\x2d\x94\x25\xb1\xb4\x86\x00\xa8\xfa\x93\xeb\xd3\x4a\x43\x59\x6a\x67\xef\x37\x48\xb0\xb6\xd4\xb7\xf6\x78\xc7\xfd\x03\x66\x5f\xdd\x86\x85\x67\xf3\xec\x00\x4d\xf5\xec\x78\x07\xae\x0e\x93\x06\x71\x35\x77\xc3\x8b\xe2\xd2\xce\xef\x6f\x90\x4e\x2d\xb7\x37\x08\xa7\x36\x15\x37\x54\xb9\xe8\xce\x24\x68\x90\x2c\x8b\x53\xc6\x5a\x67\x58\x84\xe6\x84\xbb\x50\x1c\xfe\xda\xfa\xc3\x86\x84\x32\x14\xc6\x70\x30\x6e\x1b\xcf\xc5\xfb\x82\x92\xf1\x3b\xd2\xd3\xdb\xe0\x35\x1a\x6e\x17\x14\x93\xd1\x08\x2c\x7d\xe1\x39\x23\x58\xc7\x51\xc6\x0d\xa9\x00\x0e\x06\x6e\xa8\xff\xec\x08\xe6\x86\xd4\x4a\x87\x21\x37\x96\xc6\x70\x84\x6e\x5b\x42\x67\x75\x80\x70\x63\x69\x0c\x29\x6c\x8d\xb7\x61\x3a\x6b\xb5\xed\x3c\x85\x35\x23\x06\xf3\x48\x40\x68\x3b\x32\xab\xcd\xbf\x10\xca\xe3\xe8\xe5\xc6\x9b\xfd\xda\xeb\x07\xde\xa7\x21\xb5\xa3\xed\x4f\x82\xcd\xa7\x0d\xd9\x70\xbc\x18\xd8\xc1\xab\x65\xcd\x33\x0f\x84\x0b\xf9\xc8\x3b\xe0\x50\xf6\x9c\x0e\xb8\xe5\x0d\xd4\x92\x0d\x5b\xf4\x2a\x1c\xf0\x61\x7b\xeb\x22\x1c\xa6\xe4\xee\x01\x50\xa9\xd4\x84\x70\x20\x7d\xd2\xa4\xc5\x1b\xe7\x2c\x4a\xb4\x03\x91\x08\xc6\xd2\x09\x3f\xbc\xe4\x82\x76\x22\x12\xe2\xf5\x1c\xa5\x58\x3d\x23\x04\xc0\x14\x67\x1f\xb7\x13\x20\x99\x39\x9c\xf0\xcb\xcb\xa4\xd0\x78\x3f\x7a\x35\x92\x58\x2e\xc3\x58\x3c\x09\x82\x47\x24\x96\xdd\x01\xb2\x6e\x4d\x79\xa8\x8e\x11\xfd\xfd\x85\xc8\x01\xa9\x1e\xed\x42\xa0\x80\xbf\xbf\x10\x2a\x51\xfd\x7e\x23\x0e\x05\xc1\x75\x22\xad\x57\x13\x78\x2e\x3e\x36\x7f\x62\x89\xb7\xd7\x29\x82\x68\xff\xea\x83\x6c\xc9\x87\xd1\xc5\x2d\xda\x44\x26\xd3\xeb\x39\x7c\xa2\x26\xbd\x99\xf0\x5c\x03\x4c\xf8\x44\xcd\x82\x70\xf1\x4b\xb7\xa4\x33\x79\xac\x0d\x0f\x80\xac\xc2\xd7\x80\x48\x1c\xf3\x31\x86\xa0\xfe\x6e\x51\x6a\x22\x8d\xd0\xbb\x19\x61\xfd\x16\x87\xdb\x7c\xee\xad\x16\x92\x6f\xa4\x66\xf9\x9c\x42\xc0\x8c\x93\x60\xda\x1d\xd1\x81\xdb\x80\xc8\xdb\x1b\x25\xa0\x5f\xbb\x17\xd1\xfe\x2e\xdb\xd2\xee\x8a\xe7\x1e\x0f\x6e\xe9\xd7\x78\x1d\xcf\xfd\x3e\x64\x43\x13\x11\x02\x72\x74\xb3\x57\x69\x37\xfd\xee\x7e\x4e\x04\x78\x3e\x44\x80\x10\xf4\xe4\x07\xa8\x43\x5c\x04\xdb\xcc\x8f\xfa\x46\x80\xa3\xda\x11\x03\xfe\xa8\x52\x67\xdf\x18\x7b\x3f\xdc\x1b\xd0\x21\xe6\xd6\x37\x78\xe9\x83\xdb\xf0\xd2\x4b\x0a\xec\x10\x95\xed\xf6\xea\x1b\xd1\x51\xd5\x46\xf8\x8e\x76\x6d\xdf\x80\x0e\x81\x8b\x5b\x6c\x7d\xa3\x52\xe9\x08\xdf\xb1\x3a\xd7\x37\xa0\xe3\x05\x3d\xe9\x41\xef\x07\x2e\xbf\xe6\x13\x22\x37\xb1\x26\x80\xfb\xf8\x9c\x63\xd2\x11\x7d\x33\x2c\xe8\x74\x5c\x23\xe3\x74\xfc\xbe\x44\xe7\x9e\x45\xb1\x3d\x40\x78\x7f\x8d\xb0\x84\x77\xbb\xbe\x7a\x80\x3f\x59\x5b\xa4\xb3\xda\x88\x03\x3f\xfa\x12\x9c\x93\x3d\x4d\x3d\x06\xb4\x35\x00\xcd\xe1\xd6\x60\x7a\x4c\xe8\x51\x38\x8b\x70\x28\xbf\x3a\x24\x89\x0a\x87\xf1\xd9\x74\x82\x39\x36\xbc\x90\xd5\xee\x68\xfb\x39\x41\xf6\x80\x70\xd0\xbe\xbe\x27\xc8\x1e\x00\x31\x03\x26\x8a\x08\x90\xa3\x27\x08\x0f\xb4\x38\x6d\x4f\x64\x74\x42\x51\x02\x40\x26\xd1\x44\x80\xb4\xa8\x09\x44\xe6\xfe\x12\x3c\xce\xda\xc3\xb8\xd9\xb8\x67\x13\x59\x02\x3c\x26\x8a\x04\x78\xbc\xe6\x89\xa6\x3c\x09\xab\x3d\x61\x4d\x5f\x6d\xb8\x2f\x8d\xc1\x84\xa0\x07\x53\x5d\xe6\x9d\xc6\xd2\x40\x3a\xef\x89\x76\xb6\x6c\x87\xb8\x5e\x36\x89\x25\x3d\x13\xc7\xc2\x11\x2a\xcf\x39\x9f\xa2\x67\xf8\x17\x75\xde\xf5\x8c\x0a\xab\x3a\x60\x7b\x86\x7f\x51\x07\x68\xcf\x9c\xa2\x9f\xa3\x82\x8e\xd7\x74\xc9\xef\xc3\xb6\xc8\x5e\xe8\x5e\x74\x1b\x77\xdc\x55\xb7\x51\xe3\xc1\x1b\xb3\x20\x75\xdf\x00\x95\x82\xfe\xdd\x86\x7b\x59\x87\x5d\x2f\xf0\x37\x8a\xef\xf6\x42\xf8\xdc\x1f\xe1\x13\x3e\x96\xf4\x3f\x9c\x7f\xd2\x71\x8b\x4d\x6f\xaf\x0e\x09\xa0\x00\x2e\x70\x21\x17\x7f\xc0\x80\x2b\xb3\x8e\x4a\x88\xf4\x42\x05\x44\xde\x98\x95\x5a\xb4\x9f\x13\x22\x61\xbc\xd2\x41\xee\xf6\xa0\x5d\xc0\x3f\x60\x49\x74\x3e\xf7\xa7\xcc\xb4\xa9\xa0\xa2\xfc\x48\x75\x1b\x6b\x60\xd6\x81\xaa\x75\xb6\x8e\x74\xde\x54\x63\x77\x4e\x6f\x8c\x47\x55\xe8\x5f\x6f\xf0\x37\x0e\x7f\x51\xa0\xd8\xbb\x47\x14\x50\xf5\x4e\x81\xd1\x7a\x33\x0c\x28\x90\xe2\x20\xb4\xbe\x54\x82\xe1\xd3\xaa\x37\x78\xf3\x24\x41\xf4\xa5\x12\x64\x87\x31\xf4\xa5\x12\xbc\xea\x40\xf5\x06\xf7\xa4\x8c\xcf\x1d\x65\xf0\xec\x2b\xea\x1d\xfe\x53\xd9\xa2\x7b\x87\x77\x72\xfc\xc8\x98\xd6\x97\xf6\x90\x75\xf1\x61\xe9\x9d\xc0\x0a\x3b\x1d\xc0\x76\xb7\xe1\xf4\x1b\x7e\x1f\xa5\xc0\x86\x07\xa7\x37\xd9\xcf\x77\xf4\xa7\xe5\xe9\xa8\x36\x21\xd3\x7a\xef\x13\x6d\x3f\xbf\x81\x2c\x3d\x1f\x28\x01\x20\x2f\x54\x1f\x00\xd6\x6c\x6d\xf0\xf2\x5d\x63\x6b\x10\x20\xbf\x90\xd1\xa1\x56\x13\x89\x03\x6f\x92\x1c\x80\x40\xce\xd7\x3e\x68\x99\x97\x21\xa4\x3f\x17\x32\x9a\x20\x06\xaa\x9b\x19\xe1\x83\x97\x5b\xbd\xc6\x80\x23\xec\xd5\x25\xfc\x7f\x06\x02\xda\xc8\x66\x9d\xb7\x43\x1d\xd9\xac\x26\x76\xa8\x1f\x9b\xb5\xe4\xbe\x17\xfe\xa0\x3e\x77\x38\x36\x8d\x48\x16\xf7\x7b\x6d\xa5\x9d\xb5\x55\xdd\x03\xfc\x9a\x86\x82\x99\xc8\x8e\x3e\xec\x2c\x18\xf3\x3a\xf3\x58\x31\xc6\xba\x3d\x2e\x9e\xcf\x76\xa5\xf5\x9d\xb7\x76\x19\xd9\x8c\x02\x72\xa8\x72\x3f\x1e\xc0\x34\xcd\x03\x0e\x3e\xd3\x13\x0c\xe0\x3d\x9b\x00\x0e\x16\xa6\x37\x93\x3c\x98\x73\x65\xe1\x00\x6a\x4c\xde\xcc\x56\x0f\xda\xd1\x92\x47\x7d\x9c\x5f\x7e\x63\xc2\x11\xe5\x2e\x6e\x7e\x21\x64\x9c\xf0\x75\x35\xb7\xe9\xeb\x92\x29\xa6\x9f\x70\xe0\x49\x93\xe9\x27\x1d\x78\x8a\x9b\xef\x4b\x73\xf1\x15\x4b\xa5\x9f\x4c\x1d\xf3\x01\x7d\x32\x39\xce\x07\x1e\xa3\xf9\xbb\x2c\x15\xfd\x84\x83\xc7\xdc\xf6\x7c\x3c\x57\x7a\xe1\xe2\xcd\xdb\xa6\x0a\x58\xbe\x5d\xc4\xae\x5f\x8f\xe7\x4a\x5d\x5c\x09\x2f\x08\xbb\x17\x1d\x57\x46\xf7\x45\xc7\x95\xc0\xb8\xe8\xb8\xf2\x06\xbb\x70\x39\xb1\xe5\x80\x6b\xa0\xed\x29\xd0\xd3\x62\x06\x7b\xd1\xd3\xe2\x83\xfb\x3a\x69\x77\x13\xf6\x2f\x7a\x5a\x2c\x7b\x30\xdf\xd9\x71\xa6\x1d\xe9\xcd\xd9\x60\xcc\xc7\x8f\x22\x40\x27\xfd\x28\x02\x03\xb7\xe4\xa7\xe4\x15\x9f\x9d\x3f\xb8\x0b\x5c\xa8\xeb\x93\x69\x1e\xdf\x5f\xd5\xcb\x07\x9d\xc7\x84\x3c\x69\x89\x53\x1b\x16\xf1\xd7\x7d\x0c\xfd\x66\x11\x45\xf7\x77\x27\x2a\x86\x02\x0a\x17\x5c\xbe\xa4\x70\xd8\xc0\xab\xa3\xb1\x3b\xe2\x68\x6c\x65\xef\x37\xce\x01\x4b\x17\x4b\xcb\x18\x2f\xa5\xe2\x7e\x76\xdb\x07\xc6\xb1\xd1\x12\xa4\x9d\x31\x50\x31\xd0\x5e\xe8\xb1\xb1\x2a\xa2\x7c\x0f\x83\x35\x04\xad\x5b\x8e\xa5\x3a\x54\xd7\x5b\x1b\xb8\xa9\xfc\x75\x13\xc6\x58\xba\x41\xc9\xee\x00\xb9\x7c\xd5\x6d\xd8\x59\x82\x67\x80\x40\x7e\x79\x86\x06\x03\xf9\x5b\xfd\xc9\x59\x34\x02\x6f\x27\x72\x6f\x50\x1c\xa2\x85\xce\xb1\x14\x87\xe2\x22\x18\x03\xa5\x75\xe4\x39\x19\x61\xc9\xa8\xc1\x6f\xc3\xa9\x93\xdd\xa6\x2d\x4e\xb0\xc1\xdc\x3e\x7c\xf8\x0d\xaa\x09\x0e\x78\x1f\x91\xaa\xb9\xc0\x5d\x6a\x41\x7e\x4d\x70\x69\x01\xd9\x65\x2c\x47\xc4\xe9\xf9\xfa\x1e\x17\xb5\x09\xdb\x4b\xc6\xd7\x6d\x4c\x65\x20\xde\x7f\x73\xe7\x28\x6d\xe0\x97\x79\x43\xb1\xc7\x42\x65\x03\x4d\x1e\xf2\xbe\x24\xb5\x11\x59\xdb\x59\xed\x14\xd6\x63\x0d\x95\x68\xde\x92\x99\x71\x24\x92\x86\x51\x89\xc2\x36\x0e\x55\x1c\x8f\xfd\x5d\x3d\xb0\x5a\xb4\x69\x0d\xd2\xb7\x55\xac\x91\x69\x56\xd5\xfc\x10\x6d\x62\x7d\x66\xa0\x1c\x4d\x94\x13\x71\x3c\xf5\x66\x04\x3d\x6c\xdf\x8e\xa1\x1a\x85\x3b\x4e\xfd\x15\x16\x6e\xd0\x7c\x0a\xeb\x53\x6b\xfc\xc2\xf9\x68\x2d\x51\xf5\xd9\x31\x53\x03\x17\xb2\x84\x57\x7f\x54\x6a\xd5\xae\xd4\x08\xd5\x7f\x45\xc4\xae\x77\x46\xa5\x0a\xef\xf7\x0b\xfd\x11\x1a\xb0\x42\x38\x6f\xfe\x00\x62\xa1\x57\x08\x11\x1c\xdb\xeb\x7d\x8a\x85\x6e\xa3\xcc\x9d\xc4\xc6\x51\x79\x66\xe9\x7b\xc4\x67\x44\xb3\xea\xc1\xb4\xd8\x17\x48\x10\x6d\x93\xae\xf1\x2b\xa3\xf1\xe6\x76\x35\xf3\xa2\x09\x61\xb8\xd1\xa3\xe5\x25\x68\xd8\x3e\x6e\xe2\x4e\x49\x63\x04\x95\x01\x65\xd7\x1a\x4b\xec\x1d\xc5\x4f\x59\xed\x4e\xe0\x34\xd2\x93\xe8\x65\x49\xb9\xe3\x35\x79\xd4\x03\xdd\xdc\x46\xed\x65\x53\x3f\xac\xde\x56\xc8\x07\x84\x5c\x1d\x8d\x03\x32\x6e\xf1\xdb\x4b\xed\x90\xbd\x7a\xf4\x25\xf3\xc9\x1b\x39\x70\x9d\xa2\x95\xfd\x81\xd8\x8b\xe2\x78\x83\x01\x0b\xb9\xeb\x6f\x0c\x18\xc0\x5d\x29\x67\xf0\x36\x70\xef\xe3\xce\xdb\xd3\x85\xe7\xc1\xbd\xa1\x85\x80\x50\xea\xaa\x95\x83\x81\x17\x3a\xad\xc6\x60\x38\x83\x89\x17\x42\xa9\x2b\x65\x0d\xd8\xc7\x9d\x3a\x34\x06\x6f\xa2\xd7\x84\x20\xa3\x06\x29\xba\x03\x22\x6a\x89\xdd\x33\x02\x04\x9e\x31\x62\x2e\xc2\x6b\xc6\x88\x12\xb0\x92\x33\x76\x82\xa0\xf5\xe0\xad\xe1\x1e\x61\xa7\xab\x49\x20\xed\x04\xc9\xdf\x43\xb0\x30\xff\x81\xbc\xea\xa4\xbc\xb1\xf3\xa0\x11\x84\x3b\x20\x7c\x7d\x0f\x71\xc9\x28\x84\xec\x59\xda\xab\x43\xda\xa2\xfd\x02\xfc\x24\xf1\x47\xc1\x6c\x83\x97\x33\xba\x14\xf7\x40\x69\x6a\x5b\xc2\x07\x2e\x6b\x74\xed\xd8\x01\xe3\xbc\xad\x2b\xe3\x40\x4a\xb9\x74\xae\x01\xd3\x7c\x96\xa5\x60\x20\xaf\xd5\x65\x49\xc7\xf1\x78\xc1\x04\xef\xc1\x52\xdb\xa6\xb9\x83\xfc\xd1\x23\x20\xc9\xdc\xec\x83\x52\xae\x39\x38\x8b\x2f\x7a\xb3\x1e\x70\x24\x49\xdc\x18\x8f\xad\xde\x33\xbc\x79\xbd\xa4\x5e\x40\x75\x46\x7b\x81\x06\x6e\x77\x74\xf9\xc7\x81\x64\x55\x17\xf8\x18\xb4\xd5\xdb\xac\x38\x10\x07\x62\x83\xcd\x80\x08\x6c\xc1\x6f\xe0\x7a\xc7\xdc\xdd\x21\x1c\x7f\x52\x05\x07\x4b\x61\xbf\x3b\x84\xe7\x2f\xfa\x83\x83\xda\x83\xda\x04\x59\x20\x31\xb9\x35\x1a\x02\xe4\xd5\x1b\xc7\xc8\x6d\xcd\x92\xf2\x07\x8b\xff\xf8\x04\x45\xed\x1f\x5b\x0d\x07\xa4\x65\x9b\xd4\xc6\xc5\x45\xd7\x78\x17\x8f\x14\x2d\x2a\x52\x63\x5d\x9e\x72\x30\x7e\xdd\x44\x74\x3d\x00\xba\x03\xe4\x67\x4b\xd9\x19\xb8\xde\xd1\x86\xd3\x71\x31\x7d\xd7\x1d\x52\x9a\xf2\x84\x26\xda\xea\x0f\x45\xb1\x9d\x25\x3f\x10\x4a\xf2\x12\x78\xe6\x93\x93\xa8\x36\x44\x50\x23\x74\x52\xfc\x13\xc2\xe1\x19\xb0\xe5\x60\x4c\x02\xe4\xf7\xe1\x86\xf3\x2e\x98\x84\x47\xf3\x47\xa4\x49\xb1\xd8\x3c\x26\x32\x59\x5f\x03\x00\x20\xf3\xad\x49\x80\xfc\x1c\x6c\xa8\x7a\xc9\x20\x67\x17\xdf\xae\x30\x6e\x82\xa8\x29\x2c\xb9\xbb\xda\x57\x31\x6e\x88\x01\x5e\x43\x4a\xdd\xe6\x33\xb8\x56\xbe\x9b\x68\x59\xb5\xdb\x34\x84\x48\x16\xbb\x2a\x06\xee\x8a\x29\x8e\x73\x18\x37\x17\xd5\x82\x0f\x8a\x51\xda\xba\x3d\x9e\xf8\x78\x2d\x0a\xca\x51\xda\xf6\x3f\x6e\xe0\xc0\xdb\xe4\x06\x0e\x5e\xfd\x31\xbd\xf8\xd3\xde\x71\xdb\xbc\x8f\xe9\x7d\x63\x94\xd9\xa6\x76\xe4\xe5\xdd\x45\x3f\x70\xd5\xdd\x86\x79\x7f\xb8\x43\x48\x5e\xaf\xe7\x74\x03\x0e\x8f\x80\x55\x13\x04\x3b\xd2\x73\x8b\x53\xb8\xf7\x0d\x6e\x3f\xd1\xd5\xce\x1b\x27\x45\xb7\x3b\xe4\xf4\xdc\x65\x48\xdd\x03\xfc\x7e\x1e\x12\x57\x4c\x7a\x55\xf7\x40\x4f\xe6\x50\x1b\x6e\x3f\x11\xde\xce\x2b\x26\xb5\xb3\xf6\x40\xcf\x66\x57\x1b\x26\x19\xaf\xd2\x1e\xe0\x16\x7c\x75\x40\x42\xf4\x80\xd0\x4b\xba\xdf\x87\x5e\x62\x88\x20\xe8\xeb\xbe\xf1\xb2\x47\x56\x55\x15\xef\xd9\x79\xa9\x64\xff\x91\x51\x6d\x47\x69\xcc\xea\x60\xa4\x9d\x57\x50\x7a\x0d\x51\x48\xa8\x74\x1d\x7f\x3b\xef\x98\xd4\x4e\xdc\x11\x3b\x5f\x9c\xb4\xbe\x23\x17\xb8\x54\xe3\x3c\xf2\x8e\x22\xbf\xc1\x5b\x21\x0d\x02\x92\x73\x9d\xb5\xbe\x27\x78\x89\xb4\x13\x76\x1a\xf0\x4d\x46\x09\x5e\xa2\xe4\x36\xbc\x82\x12\xaa\x76\xdc\x11\x59\x5f\xfd\x5d\xb4\xb6\xbb\x43\xb8\x81\x74\xe0\xec\x19\xca\x93\x3b\x64\x32\xae\xb8\xd7\x9e\xe1\x05\xac\x6e\xc3\x0b\xe8\x09\xe1\xca\x19\x97\x32\xd8\x71\x6b\x7d\x76\x08\xd7\x9e\x09\x91\x90\x96\xe1\xf7\x2a\xfe\x00\x10\x29\xa4\x68\xc7\x2d\x93\xde\xc9\x3b\xd2\x6f\xab\x01\xc8\x50\x09\x8a\xfb\x87\x9f\x4b\x12\xef\x8e\xf4\x5a\x67\x7c\xef\x48\xaf\xed\xb2\x43\xed\x48\xaf\xed\x12\x23\xf7\x42\x80\x34\x1e\x83\xd9\x5d\xec\x6b\x2f\x5c\x22\xbf\x00\xbf\xa6\xf7\x1d\x6e\x99\xec\x92\x43\xf7\xc2\x25\x12\xc6\x50\xfc\xbc\xb8\xb2\xc0\x0e\x25\xa7\xbe\x66\x08\x4f\x5e\xf6\x0c\x01\x61\xf5\x80\x2c\x10\xeb\xef\xb1\x84\xc9\x03\xc2\x7b\x6e\x0c\xb3\xe6\xa6\x69\x08\xc1\x42\xa5\x7a\xe3\x53\x4b\x4a\x6e\x33\xe6\xca\x44\x50\xb9\xa8\x42\x01\x12\x78\xbb\xd7\xa0\x72\x4d\xfd\x9c\x15\x70\xdd\xee\xbc\xca\xdc\x1d\x92\x4c\x3d\x22\x51\x20\x10\x90\xe0\x9b\x47\xf0\x0f\xc0\x81\xb7\x1e\x2a\xaa\xf7\xd7\x94\x27\xcf\x24\x01\x8d\x8b\x29\xbb\x91\xdc\x1e\xa0\x85\x65\x94\x50\xb7\xee\xb2\x37\xb8\x9d\xbc\x0a\xbc\xd8\xc6\x71\xd7\x7b\xdb\xf1\x82\xdb\x70\x85\x79\xe7\x34\xf8\xfa\x8c\x14\xe6\x07\x9b\x10\x11\x34\x94\x7b\x75\x07\x37\x66\xa0\x29\xf7\x87\x7d\x69\x4a\x9d\x2e\x58\x7f\x81\xcb\x2a\x5d\xe6\x69\xef\x48\x38\x35\x25\x20\x80\xbd\x58\x60\xdf\x11\x56\x54\x9d\xb4\xb4\x77\x00\x61\x6a\xef\x04\x42\x93\x66\xce\xaf\xf9\x47\x27\x7b\x10\xde\x91\xe3\xeb\x38\xaf\x1d\x96\x7e\xeb\x34\x3b\x6e\xdf\xa9\xc3\x53\x5c\x5a\x55\xb2\xf7\x6d\x47\x8e\xaf\x03\xbd\x76\x5c\x58\xe9\x22\x43\x3b\x73\x7c\x4d\x6a\x83\xd5\x3b\x8d\xd6\x41\x0e\xa8\x75\x1a\xbc\x4b\xc0\x0c\x04\x59\xbf\x76\x15\xec\xe3\xc0\x0c\x04\xc2\x20\x88\x42\xc9\xe0\x3a\xf9\x7d\xf8\x64\x4d\x5a\x03\x20\x9b\x36\x59\x91\xd4\x05\x68\x76\xf8\x01\x8a\x43\x75\x77\xe4\x09\xe7\xf4\x23\xfb\xd9\xbe\xf3\x46\x79\xcf\x6f\x27\x06\xdc\x86\x0f\xd7\xdb\x19\x59\xc3\xf6\x95\xed\x3b\x7c\xb6\x5e\x22\xb8\x08\x86\x4b\xa9\xec\x2c\x56\xfa\xda\x5d\x3b\x29\xd5\x3d\x00\x62\x73\xac\x9d\x10\xeb\x39\x6f\x08\x32\x03\x39\xe8\x9d\xd3\x00\xc8\x12\x7e\xc1\x8f\x2c\x61\x47\x01\xef\xb8\x63\xd3\x9a\xf5\x7e\xc0\x9f\x28\xf1\x6f\xc7\x1d\x9b\x56\x23\xf7\x03\xb7\x94\x78\xa7\xe1\x8e\x4d\xc7\x5c\xed\x07\x3c\xa6\xc6\x10\xee\xdc\x74\x84\xe5\x7e\xc0\x63\x6a\x9a\x3a\xe0\x11\xf6\xbe\x3a\xe0\x7d\x6c\x7e\x1f\x0e\x53\x73\x27\x64\x1c\x3b\x8a\x75\x3f\x09\xbf\xde\x3f\xe1\x21\x96\xfc\xbb\x9f\x80\xdf\xbc\x87\x17\x10\x59\xa9\xda\x91\x71\xec\x88\xac\xfd\x24\xc0\x6e\xf3\x5a\x16\x4d\x98\x19\xc8\x5e\x00\x66\x20\x37\x3f\x07\xc0\x26\x51\x24\x19\x3b\xa4\x75\x3f\x09\xb0\xfb\x87\x87\xd8\x7b\x08\xf1\x56\xc5\xfe\x9b\xfd\x64\xfc\xa2\x1c\xb2\x3b\xb4\xae\x61\xc3\xd7\xce\xeb\x86\x9c\xd3\xb0\x23\x71\xd8\xf1\x26\xfb\x85\xc8\x6a\x49\xd8\xfb\xd5\x60\x39\x13\x52\x2e\x44\x5a\x4b\xa2\xde\x91\x36\xdc\x5f\xef\x2f\x98\x1c\xf3\xb5\x23\x6d\xd8\x5a\xc7\xbe\xd4\xae\xe1\x70\x9e\x1d\xe1\xfc\xfd\xd5\x3f\x0c\xef\xc1\xf3\x81\x4f\x52\x12\xfd\x8e\x80\x7e\xab\x65\xfb\x52\xc3\xb2\x13\xa7\x76\x64\x11\x5b\x2d\xdb\x27\x5c\x92\xaf\xef\x33\x79\xab\x06\x98\x44\x80\x16\x61\x02\x01\x56\x01\x70\x25\xa7\x55\x88\x7d\xd2\xb4\xe8\xef\x01\xb0\xd9\xff\x24\xc0\x1e\x10\x00\xbf\xfa\x23\xc0\xee\x8f\x9e\x06\x01\xc0\xac\x63\x5b\xcc\x76\x78\x3b\xb2\xbd\x40\x3b\x2e\xe5\xb4\xf5\x75\x47\xc9\xff\xcd\xe1\x20\x3b\x2f\xe5\xb4\x8e\xc1\x4b\x39\x6d\x9f\xdd\x51\xa1\x75\xcb\xaf\x2e\x3a\x7f\xf0\x2c\x06\x7f\x10\x98\x4f\x56\x81\xc5\x17\xde\xdb\xe9\x23\x89\xd7\x74\x3a\x6e\x68\x47\xa0\x56\xb1\xab\x76\x7f\x7c\x28\xa2\x8d\x63\xa3\x83\x52\x8b\x7f\x40\xbd\xda\xac\xf5\x1f\xbc\x97\xd3\x96\x95\x63\xa3\x2b\x56\xcb\x71\x6c\x04\x25\xba\xd3\x8e\x79\xb9\x4f\xba\x5e\xb3\xda\x9c\x77\x55\x1b\x0e\x65\xb9\xbb\x8e\xed\xa9\xe5\xed\x39\x70\xda\x22\xa1\x23\x30\x59\x2f\xfb\x07\x96\x2d\xd1\xf1\x7b\x3c\x37\x77\x8a\xb5\x1d\x81\xa5\xf0\xb3\xdf\x80\x05\x7b\x18\x8e\x40\x9f\xa6\x4e\xcc\xe3\xb9\xaf\xf3\x67\xc7\xcf\x11\x1e\x07\xa7\x66\xfd\xdc\xe6\x29\x89\xfe\x78\x32\x20\x44\xf8\x47\xc0\xbd\x60\x62\x9f\x47\x60\x92\x62\x76\x17\x37\xeb\xe5\x6b\x4a\xf1\x01\x5c\x9f\x44\x96\x46\x16\xcb\x3f\x90\xb8\x1c\xec\x6e\x3c\x96\x36\x56\x7c\xe5\xce\xc1\xfb\x3e\x5d\xf6\xe8\xe0\x7d\x9f\xae\x2a\x73\x40\x3d\x0b\x76\xd5\x1d\x91\xce\xdc\xec\x1f\x70\x01\x68\x75\x17\x07\xb7\xb4\xa7\x75\xb2\x0b\x4f\xfc\xa2\x63\xd5\xf3\x9c\x7c\x43\xb0\xa2\xba\x6b\x70\x7e\xc2\x91\x98\xd0\xa7\x2f\xe0\xc4\x09\x76\x93\x1e\xc8\x7e\xb6\xcf\xe4\x48\xf4\xd5\xba\x83\x27\x17\x4f\x3f\x2c\x95\xac\x54\xa3\x17\x79\xc7\xd9\x65\x7e\x8f\xa5\x83\x95\x2a\x91\xe8\xa0\x97\xc7\xd7\x7e\x1d\xf9\x49\x58\xf3\x1b\xb0\x21\xb9\xd8\xcc\x91\x9f\xab\x73\x84\x4d\x24\x22\x27\xbb\xd9\x0e\xa4\x4d\x64\x57\x92\x38\x32\x6f\x2a\x4d\xfe\x61\x32\x83\x4b\x6b\x98\x79\xaa\x88\x9f\x1c\x70\xff\xb8\x87\xa5\x5a\x35\xef\xea\xa5\x58\x99\xa1\x1f\x4b\xaf\xaa\x96\xe3\x0e\xc4\x3d\xb9\xe6\xcf\x51\x68\xef\xf7\xfb\x18\xcd\xd3\x61\x0e\x84\xb7\x23\xb4\x1a\x4b\x9a\x07\x73\x22\x74\xc8\x1e\xac\xb1\x2a\xbb\xdf\x81\x1c\x89\xd7\x5d\xf6\xc7\xe7\x5a\x28\x8d\x58\x19\x74\xe2\x17\x60\xcf\x18\x1e\x01\x61\xce\xaf\x1e\x99\x39\x5f\x3d\x25\x48\xd7\x32\x2f\x1f\x0d\xca\xb7\x11\xd4\x10\xe0\x18\xfc\x9c\xca\xb7\x06\x68\x09\xcf\xdd\x7e\xdc\x7b\xc2\x11\xa3\xa0\xa2\x5f\xa0\x34\x6d\x24\x2e\x2d\x68\xf4\xd7\x0b\x88\x3f\x91\xe8\x76\x34\x6e\x19\x81\x88\x54\xde\xe0\xe2\x51\x07\x53\x79\x6b\xf1\x1b\x17\x88\x51\x48\x5a\x5a\x4e\xb1\x39\xf3\x40\x22\xaf\x1f\xa3\x6c\xea\x8b\x33\xf4\xe7\xba\x49\xf5\x07\x9d\xc7\x5c\xba\x23\x25\xc9\x9b\xa1\xaf\x53\xd8\x18\x41\x24\x93\x11\x8a\xa4\x09\x17\xf9\x3b\x3a\x69\xc8\xaf\xc3\x47\x64\xde\xd9\x19\xbc\xa1\x5d\x80\x9c\x89\x6e\x0d\xec\xc0\x7d\x0a\x0e\x95\x39\x06\x28\x5a\x47\xd5\x81\x9c\x89\x2c\x9b\xd1\x01\xf5\xa5\x0f\x23\x70\x3c\x35\xce\xd5\x86\x6a\xec\xbd\x4c\x75\xc6\xcc\x16\x4e\x22\x6b\x9d\xc7\x80\x66\x6c\xc6\x89\x24\x0a\x6b\x2b\x07\x7c\x48\xb5\x7a\x40\xe6\x48\xf8\xd8\x62\x8e\x84\x89\x74\xa7\x7d\x43\x03\xc0\x07\xe4\x40\xb9\x83\xe5\x4e\x7d\x0c\xee\xb4\xfa\x69\x02\x3b\xb2\x40\x3c\x41\x46\x28\xb5\x9a\x7e\x74\xfc\xe0\x72\xd2\x28\x2b\xe6\xb1\x23\x99\xc1\xf8\xdb\x51\xd6\xd1\xfc\xf7\x80\xc9\xcf\xb3\x3d\x60\xe1\x33\x74\x07\x32\x01\x7c\x28\x2f\x55\x23\x46\x9f\x1a\x07\x8a\x26\x1a\x3a\xb8\x7c\x86\x1d\xbe\xc7\xd2\x35\xa2\xef\x19\x3a\x96\xae\x11\xa3\xb9\xf7\x81\x3c\x00\xd3\xeb\x09\x3b\x43\x75\x1b\xe6\x25\x13\x0c\x92\x2b\x9c\xe9\x7b\x9c\x4f\x1d\x32\xff\x80\x44\x00\x53\xd4\x89\x10\x5e\x93\x24\x2e\x2f\x7d\x71\xff\x13\x61\xf3\xe6\x4a\x27\x34\x7a\x93\xfc\x09\x8d\xde\x07\x27\x74\x01\x87\x97\x1e\x27\xd4\x5d\x1f\x82\x27\x94\x3f\xcf\xe7\x82\x4b\x5d\xf2\xdb\x71\xc1\xa5\xee\x1d\x76\x51\xa1\xf7\xfb\xe4\x41\x9a\x1f\xae\x21\x75\x2e\xd5\x71\x15\x32\x08\xbf\x00\xe5\xc7\x00\xb2\xc2\x90\x0b\x04\x1d\xd7\x93\x77\xaa\x45\xbf\x10\x5b\x69\x16\xb2\x44\xfb\xec\xd8\xb2\x83\xa2\xbd\x9f\x53\xb4\xf7\x89\x3a\x11\x00\x62\xae\x88\xcb\xf7\xed\x8e\x38\x26\x02\x42\x7c\x72\x4c\xa8\x2e\xaf\xe7\x54\x5d\x34\x1f\x48\xf2\x0e\x8f\x3b\x70\xdb\x82\xf3\xcd\x8e\x25\xc9\x67\x07\x0a\x1e\x4b\x92\xcf\x8e\x34\x3c\x96\xe4\x9e\x1d\xb2\x77\x30\x6e\xc9\x57\x6d\x1d\xb8\xbc\xcb\x61\x14\xc7\x4d\xe5\xcb\x8b\x7a\x33\x93\xde\x2f\x20\x01\xdd\x6c\xfd\x86\x17\x4f\x13\x44\x75\x20\x2f\xf1\xcd\x88\x19\x1d\xf6\xe7\xe3\xad\xe8\x6a\xc3\x2a\xad\x83\xed\xdc\x32\x36\x41\x52\x9b\x6b\x2a\xa2\x3b\x51\x7b\xd4\xe3\x9f\xcc\xf3\x15\x97\x3f\x99\xe7\x9b\x3d\x00\x2c\x10\xda\x35\xe7\x86\x28\xaa\xe4\x01\x10\x46\xd1\xdd\x1f\x8b\x6f\x7f\x9a\xbc\xf5\x34\xba\xbd\x36\x9d\xd4\x98\x33\xe0\x8e\x1c\x8f\x16\x1e\xf4\x69\xb8\x40\x53\x7f\xf5\x1b\x0c\x36\xd0\x7c\x71\x6d\xea\xeb\x7d\x30\x61\x09\xe1\x67\x78\x2a\xf8\xfa\x7b\xda\xf6\xba\x3b\x80\x09\x41\x6c\xe2\x8c\x8c\x83\xd7\xc9\x73\xe2\xa2\x2e\xed\xfa\x93\x85\x49\x6d\xe6\x3a\x23\x64\x23\xad\x40\xe4\x75\x64\x7e\x8c\xd8\x02\xb1\x95\x93\x97\x16\xbc\xc6\xe3\x41\xa7\xf6\x92\x4a\xbb\x33\x18\x4f\x5c\xca\xe5\x00\xeb\x13\x89\xbf\x0e\xa6\x38\x13\x2a\x5f\x68\xd7\x9f\x09\x04\xa5\xe1\x70\xe1\x56\x75\x73\x5f\x93\xf5\xcb\xb8\x91\xdc\xab\xbf\x24\xda\xfe\x1a\xeb\x91\xa1\xd5\x7e\x22\x26\x3f\x6d\xdc\x87\x9a\x75\x26\x9c\xa8\xef\x9f\x4d\x8d\x10\x4d\x73\xfe\x51\x2e\xe8\xc9\xf2\x9d\xb5\xb9\x37\xde\xf8\x28\x89\xe2\xc4\x75\x00\x0e\x5e\x3e\x91\xff\x6b\x17\xcc\x09\x39\xd7\xb1\xc8\x67\xd9\xb0\x19\xf4\xbc\x04\xb4\xb5\x94\x85\x1c\x5e\xec\xe6\x84\x98\x1b\x87\x5f\xe0\x99\x24\xec\xc1\x81\x10\x75\x22\x9f\x05\x7e\xb4\xd7\xfb\x30\x96\x7b\xed\x50\xfa\xa6\x34\x49\xca\x67\x85\xd8\x28\x0b\xe0\x59\xc9\xef\xd4\x41\x25\xbf\xd3\x8c\xeb\xa3\xfa\x6a\xc4\x25\xd9\x16\xdf\x6f\x78\x2e\xc1\xb5\x58\xf2\x3d\xeb\x53\xbc\xc1\x1f\x20\xcd\xdc\x38\xc0\xbd\x59\x92\x53\x4f\x66\xf3\xea\x29\x22\x9a\x5c\xa0\xe4\x44\xa9\x7f\x17\x1b\x39\x51\xba\x7f\x38\x2c\xf7\x44\x94\x92\x01\x66\x54\x92\xf7\x37\xc3\x90\x3c\x5c\x27\x3b\x92\x7d\xec\xec\x88\x5b\x29\x7e\x81\xbb\x45\x08\xeb\x48\x09\xf7\x84\x70\x6b\x96\x0b\x6d\x9d\x1d\x29\xe1\x9e\x20\xc5\x46\xe3\x07\xa5\xf5\x5d\x8c\xfa\x7c\x42\x8b\xc4\x0e\x28\x25\x4a\x86\x3d\x21\x25\xba\xda\xf6\x89\x50\x22\xfb\x09\x4f\x48\x8d\xae\xa4\x7c\x42\x08\xec\xd6\x54\x4f\xde\xaa\xe5\xc0\x9a\x73\x30\x09\xa4\x79\xc8\x35\x25\x5f\x6c\x76\xb2\x5e\x8b\x8b\x8c\x9f\xe3\xc6\x0b\x6a\x23\x76\xc8\xc5\x57\x4e\x58\xb1\xed\x59\x3c\x11\x3b\x54\xcc\xf3\x97\xdc\x58\x8b\xb7\xc1\xce\x5d\x2a\x9c\x20\xb7\xd6\x09\xcc\x27\x62\x87\x8a\x39\x16\x62\x87\x8a\xa9\x1e\x72\xa3\xa3\x85\x4f\x14\xbb\xb4\x67\xe2\x5c\x72\x64\x2d\xde\x56\xb0\x62\xdb\xee\x7f\xee\x88\x33\xd1\x11\x78\xee\x44\x80\x70\x8e\x32\xf9\xbe\x54\xf0\xdc\x71\x84\x48\xf2\x3b\x51\x26\xdf\x17\xad\x9d\x07\xe1\x77\x1b\xea\xa2\x69\x80\xc1\x43\x92\x34\x4f\x04\x0f\x15\x29\x42\x27\x24\x49\x1b\xd1\x4f\xc6\x0e\x79\x13\xb0\xf0\x65\x95\x98\x73\x3e\x17\xad\x9a\xd1\x9c\x74\xf7\x98\xd1\x9d\x08\x7b\x30\x59\x22\x56\xc7\x8e\xbf\x13\xb1\x3a\xf6\xdd\x9e\xb8\x84\xcb\xbe\xd8\xf3\x44\xd0\x83\x51\x7a\x22\x92\x45\xea\xe5\x79\x92\xd3\x09\x64\x84\xe6\xd8\x79\x7c\x22\x34\xc7\xce\x9f\xf3\x62\x24\x8b\xfa\x7b\xee\x65\xf5\x00\x88\xcd\x71\x74\xe4\x09\xd9\x6f\x58\x52\x3b\x11\x8c\x63\xef\xf0\x79\x11\x22\x21\xf9\xa2\x32\xe1\xe7\xdc\x08\xc2\xc0\x45\x88\x3c\x00\x21\x72\xff\x80\xc0\x7c\xea\x22\x04\xc2\xc8\x7c\x94\x1b\xff\x00\x71\xdf\xac\x65\x3e\xc7\x85\x46\x40\x1d\xfa\xf8\xb3\xab\x74\xce\x49\x6d\xc6\xbd\x5f\xe0\xf4\xc2\x0f\x72\x70\xa3\x69\x90\x35\x5c\x7c\xe1\xfa\x89\xfb\xee\x7d\xfd\xd2\xc9\xa2\xf5\xde\x24\x37\x04\xb1\xe0\xf7\x61\x0d\xb4\x23\xf5\x5c\x82\x60\xf4\x75\x4c\xe7\x0d\x6d\xcd\xbb\xe4\x26\xc9\x88\x84\xee\x75\xb6\x24\xef\xea\xfb\xc0\x8c\xfd\xfe\x49\xfd\xc8\x1f\x10\x24\xcf\x08\x51\x26\xda\x16\x17\x92\x6a\x93\xd8\xcc\x85\xb2\xf7\xbe\x9d\xe9\x62\xda\xab\x56\xe4\x7a\x24\x47\x3f\x87\xf3\x5b\x11\xc9\x17\xd3\x58\xc5\xda\x2f\xa6\xb1\x36\x7f\x8f\xea\xe9\xc5\xe3\xc3\xf9\x2d\xbe\x78\x05\x66\x29\x48\x96\xbe\x10\x06\x53\xc5\x5a\x2f\x54\xa1\xef\xdd\x6d\xe8\x63\xd2\x5f\xae\xc0\x1b\xfc\x45\xf5\x57\x20\x04\x1e\x01\x10\x48\x58\xbc\x90\x17\x5b\xeb\xab\x47\x08\xbf\xe2\xf6\x17\xaa\xd4\x77\x49\x24\x17\xc2\x60\xac\x20\x5d\xbc\x00\xb6\xf9\x7b\x5a\x89\x3c\x20\x40\x54\x98\xcc\x15\xa1\x82\x36\xb7\xa1\x72\x4a\x9e\xba\x22\x22\x1a\x14\x97\x73\x45\x42\x28\x94\x47\x78\xf3\x65\x90\xbc\x50\x02\xbf\xcb\xbe\x7b\x45\x02\x28\x94\x47\x04\x34\x34\x7f\x4f\xf8\xdc\x3f\x2b\xf8\x1a\xe0\x08\x00\xba\xdb\x37\xaf\xbe\xd1\x17\x89\x10\x68\xc6\x88\x83\x77\x98\xe4\x95\xe0\x50\xed\x7e\x0e\x27\xb2\x17\x19\x69\xb0\xf6\xaf\x5d\x09\x2e\x54\xcf\x90\x69\xb0\x3a\x0b\x2f\x46\xd1\x18\xa3\x4c\x83\x95\xa9\xf0\x62\x1a\xac\x5c\xff\x57\x82\x82\xf7\x9a\x1f\xd4\x97\xee\xef\xa1\x53\x1b\xc3\x90\x70\xdb\x30\x4a\x98\x16\x6b\x2a\xce\x10\xc7\x25\xe2\x5e\x19\x00\x9b\x24\x32\x01\x16\x00\x19\x00\x7b\x57\xa0\x8e\xa4\x45\xe2\x8b\x45\x70\xaa\x67\x90\xe1\x24\x96\x0a\x7b\x65\xda\x2e\x4d\xd6\x99\x20\x6a\x91\x33\x5c\x8a\x3a\xee\xae\x0c\x33\x82\x89\x0a\x59\xb5\xce\x7b\xb9\x32\xcc\x06\x26\x92\x02\xb3\x81\x44\xca\xab\x10\x22\x4d\xa0\x10\x22\xf5\x5f\xb8\x44\x42\x79\xa9\xdc\x66\xc2\x29\xaa\xe0\x54\xc7\xc5\x5f\x85\x33\xf6\x08\xb0\xde\x3b\x8a\xf0\x2a\x48\xec\x35\x2b\xa9\x28\xb2\xeb\x7d\xc5\x34\x57\x9d\xf0\x17\xd3\x5a\x75\xbc\x5d\x15\x5e\x58\xb3\x12\xa6\xb9\x9a\x55\x55\x78\x61\x8d\xe3\x4a\x14\x69\x82\x15\xa9\x41\x3a\xae\xaf\x8a\xb2\xc0\xa6\x62\xe4\x02\x74\x87\x57\x5f\xcc\x72\x7d\xb5\x39\xe1\xf8\x93\xb3\xe6\xe2\xdd\xb3\x96\x8a\x2f\x9a\x72\xa5\x43\x5f\x1f\xa9\xda\xdd\xc3\xe3\xaa\xc3\xf6\x42\xca\xab\x03\x93\x2e\xd8\x76\xbb\x03\xf4\x2f\xe4\xbc\xf6\x57\x07\xf0\x40\x1a\xe1\x0d\x1e\x48\x73\x46\xe4\xbc\x5a\xbe\xb8\x3a\xed\x32\xfa\x1e\xe9\x00\x8e\x9c\xba\x90\x0f\xe0\xc8\xda\xab\xd3\x0e\x23\x84\xf7\xa7\x7a\x97\x56\x14\x79\xad\x8e\x64\xba\x3a\x0c\x35\x92\xa0\x2e\xe4\xb5\xf6\x57\x1b\x10\xbf\x3a\x24\xc4\xee\x8f\x91\x11\xa6\x62\x94\xb8\xb7\x44\x74\x75\x96\x01\x31\xce\x06\x1d\x8d\x9e\xf3\xa0\xa3\xd1\x48\x59\xb2\x7d\x76\xca\xe7\x35\xe8\x78\xf4\xa4\xc7\xa3\x7d\x69\x56\x83\x2e\x53\x83\x09\x69\x7f\xb3\x91\xf8\x1a\xcc\xe9\x34\xe6\x96\xb4\x9f\x9d\xe3\x79\x41\xda\xdf\x6c\x26\xbe\xc6\xe3\x7b\xd4\x1b\x4f\xf6\xaa\x57\xfb\xc9\x5e\x35\xbd\xec\x0f\x68\x5a\xae\xc7\x32\x6c\xc6\xbf\xd3\xb3\x28\x81\xf3\x62\xfc\xbf\x53\x19\xaf\x9d\xde\x44\xef\xa9\x9d\xde\x44\x6f\xaa\x9d\x05\x32\x8d\xaf\x9d\x79\xa0\xde\x96\x3b\xf3\x40\x7d\x7e\xed\xf4\x2f\x7a\x23\xee\xb4\x97\xf9\x0c\x3f\xe8\x5f\xf4\xd6\x3f\xe8\x5f\x34\x3b\x3b\x98\x1a\xea\x53\xfb\xa0\x63\xd5\x2c\x1a\x39\xad\xc1\x15\x2f\x2f\xe4\xb4\xd6\x66\x7c\x1c\x74\x30\x7a\xc7\x1d\x54\x9b\xfd\xc2\x53\x1e\x54\xc0\x1e\xf4\x9e\xb8\x7d\xa2\x2d\x40\x8e\x0b\x6d\xa1\xef\x7c\xb2\x85\x04\xfa\xf9\x38\x88\xfd\x03\x92\xeb\x5c\xdf\xf2\x82\x3d\x39\xbe\x56\x0d\x65\x1c\x6d\x0c\xb8\x58\xb6\xd1\xba\xfa\x75\x5e\x50\xee\xdd\xc3\xcd\x17\x34\x8b\x8b\x29\x4a\xe6\xb4\x4b\xac\x2f\xb6\x1f\x5c\x57\x46\x5b\x60\x5c\xac\x35\x69\x4e\xb7\xc4\xfc\xf2\x3a\xcf\x61\xe2\xad\xd5\xe7\xd9\xc5\x44\x4f\x13\xf4\x12\xe4\x5d\x33\xfe\x42\x4c\x7d\xf6\x8c\x16\xa3\x31\x9e\x21\xd5\xdb\x04\x7d\x21\xc2\xde\x37\x27\x5d\xb8\x78\x37\x19\xe2\x09\x81\xc8\x68\x9e\xf4\xf4\xa9\xb9\xa4\x03\xef\xbe\xb9\x84\x03\x23\x78\x69\x08\x0e\x23\xb9\x58\xa7\xd1\x4b\x88\x7b\xa7\x7c\x1b\xe6\x75\x23\x56\xc8\x74\x86\xaa\x38\x9e\x2a\x04\xf6\x57\xc1\xbb\x0b\x11\x15\x0e\x6b\xb9\x50\x94\xd1\x02\xfd\x85\x3a\xed\x8e\x6d\xba\x10\x88\xee\x1d\x78\x23\x83\x50\x93\x9f\x1b\x4d\x2b\x51\x6d\x18\x32\x87\x9a\x83\x57\x5d\xfb\x7d\x5a\x3e\xba\xda\x4c\x0e\x28\x3f\x2a\x7a\x33\x37\xda\x45\xaa\xda\x70\xa7\x89\x5a\x67\xa0\xa7\x5a\xcf\x11\x72\x5e\x5d\x5a\x6a\x2e\x61\xbb\x16\xe9\x3b\x13\xc2\xb6\xc3\x0f\x27\x82\x1b\x1c\x43\x39\x91\x1c\x5a\xb4\x03\x27\x64\x6d\xc7\xbe\x4d\x5c\x5f\xeb\x14\xad\x49\xc3\xad\xd1\x81\x58\x06\xc7\xfe\xcd\x40\xdb\x9e\x27\x08\xc9\x54\xda\xcd\x44\xa9\x46\x47\x3b\x4f\xdc\x3d\xeb\x50\xdc\x89\xa8\x04\xc7\x00\x4d\x88\xc6\x49\xfa\xea\x8c\x54\xaf\xfc\x3e\xd4\xab\xe0\xfe\xa1\x4d\x05\x7f\x3f\x79\x57\xb9\x3a\xe0\x65\x4e\x92\x31\x26\x2e\x73\xea\x92\x4c\x27\xe3\xc3\xbd\xc0\xb8\xbc\xc9\xd6\xce\xc9\xcb\x9b\xb4\x75\x66\x22\x39\xb9\x4d\xd1\x5c\x08\xcf\x14\xe3\xd4\x1f\x05\xd3\xe1\xe7\xcf\x45\xe1\x82\x28\xc3\xfd\xa3\xd3\x6d\x66\xb8\x7f\x0c\xc0\x92\x54\x93\x63\xf7\x26\x8d\xb7\xbe\x10\x64\x52\xf0\x34\x8a\x33\x62\xd9\xaa\x3b\x40\x2c\x5b\x77\x1b\xb1\x6c\x5e\x02\x96\x73\xa9\x9e\x00\x2c\xef\xa6\x41\x94\x6b\xb1\xc9\x60\x16\x08\x19\x12\x52\x66\x81\x8b\x3c\xf9\x7d\xc8\x14\x3a\xf1\xe7\x12\x33\xb3\xe3\x63\x66\x79\xce\x62\x7f\xc0\xf8\xa5\xd7\x1b\x8f\xe9\xcd\x43\xdc\x38\xad\xf5\x45\x7d\xce\x62\xad\x42\x0d\xeb\x05\xd9\xca\x26\x0c\xb8\x2e\x2c\x31\x2b\x62\xd1\x5e\xef\x33\xe6\x47\x2a\xdc\xac\x14\x21\x24\xf9\x4c\xd4\x67\x0c\xbe\xf4\x69\x2e\x61\xb5\xf8\xae\x99\x59\xb9\x75\xbd\x90\xf5\x39\x54\x45\x5a\x4c\x5d\xb5\x64\x33\x51\x93\xd1\x7b\xb1\xc1\x31\x2f\xa8\x59\x80\x45\x30\x37\x3a\x2c\x34\x21\xd6\x5f\x11\x84\x8d\x1b\xd7\x5f\x53\xb6\x16\x40\x88\x3b\xf0\xbe\x5e\xa2\x69\x7b\x75\x06\x87\x82\xd0\xd1\xb8\x8b\x3d\xd1\x09\x9a\xf4\xd7\xf7\xea\x4c\x90\x22\x4b\xd5\x07\xfd\xc4\x4d\xad\x16\x1e\x66\x7f\x42\x1d\xd5\x3f\x62\x0e\xec\xe2\x9c\xfd\x89\x0c\xd1\x7c\x3a\x25\x03\x7f\x00\x7b\xb3\x69\x98\xf6\x66\xd3\x38\x53\x57\xbd\x18\xb4\x37\x9b\x86\x51\xdb\xd1\x65\x9f\x26\xed\xcd\x5e\x6e\x86\x29\xe8\x40\x9b\x9f\x7a\x2a\x9a\x10\xa3\x0c\xbc\x09\x68\x50\x1e\x66\x54\x0c\x2b\x30\xdf\x67\x6d\x46\x73\x72\x86\x15\x78\x46\x3b\x75\x17\xb7\x91\xd1\x65\x62\x81\x75\xd8\x3e\x8a\xb9\x93\x51\x6a\xc6\xac\xbc\x68\x0c\x21\xaa\xa0\x87\x1f\xf9\x70\xe6\x92\x3b\xa3\x2f\x78\x9e\x3b\xb9\xac\x3b\xdf\xd1\xd6\xe4\x77\x72\x59\x41\x8f\x20\x83\x64\xe0\x77\x70\xdd\x68\x60\x26\x9e\x0b\x98\x83\x5c\x5f\xcb\x77\xc0\xa7\x2f\x5d\x79\x1e\x64\xc2\xea\x0f\x41\x06\xb6\xe2\x4d\x04\x19\xd8\x86\x38\x51\xe2\xb1\xcb\x5c\x30\x79\x83\x69\x32\x0f\x3a\x60\xc4\x92\x1a\x32\x4f\xd8\x33\x24\xcd\xcf\x13\x9a\xaa\xb1\xc9\xf8\x61\xaf\x16\xe3\x87\x8d\xdd\x13\x25\xa6\x3c\x61\xc6\x0f\xfb\xd4\x38\x11\x22\x2f\xe9\x6b\x32\x7e\xd8\xab\x87\x4b\x8a\x2c\xe4\xcc\xe7\x82\xd2\xe1\x0e\xa1\xf9\x79\x87\x5c\xbc\xf1\x46\x66\xbe\x79\x41\xd5\xf3\x0e\xc1\xb5\x44\x36\x55\xcf\x0b\x1c\x2d\xbb\x8d\x82\x3f\xde\x93\x8c\x2e\x96\x40\x38\x19\x5d\x9c\xfd\x1c\xca\xae\x24\xc4\x79\x41\xf3\x93\xe9\x7b\x32\xba\xd8\x0c\xe4\xda\xc1\x61\x3d\x1e\xcb\xe6\x78\x09\x18\x5e\x2c\x2d\x64\x5e\xd0\xb0\x5e\x00\x51\xc3\x7a\xcd\x18\x4c\xdd\x0c\x76\x09\xa1\xd9\x81\xb0\x73\x52\xbf\xf2\x94\x11\x85\xe0\x60\xdb\x89\x00\x63\x47\xa8\xce\x49\x05\xc4\x3c\x72\x3e\x5c\x5e\x58\x9e\xd4\xbf\xbc\x4e\x93\xfa\x97\x19\xc9\x7c\xee\xb2\xf7\x2c\x4e\xc8\xd5\x1a\xf4\xa6\x68\xec\xa3\x05\x41\xc2\xc9\x49\x78\xf3\x4e\xdf\x5f\xc5\x69\xf9\x73\x09\xb0\xc5\x0b\x83\x90\x60\x87\x83\x4c\xc8\xaf\xc1\x93\xbe\xe9\xf6\xf0\xca\xdc\x8f\xc8\xe9\x1f\x90\x06\xe8\xa5\x60\x89\x95\xf6\x9a\x12\x42\xca\x1c\x18\x38\x29\xf3\x7a\x46\x70\x36\x7e\xfa\xbb\xb7\x25\xa2\xe8\x94\xba\xb7\x08\x66\xdd\xd5\x86\xa2\xa7\x83\xe9\xde\xe0\x6b\x13\x6d\xdf\x1b\x5c\x10\xd5\xdf\x77\x1a\x27\xd5\x46\x05\x08\xc9\x0f\xf7\x92\x90\x6d\xbf\xbe\x21\x02\xe7\xa1\xc9\xde\x08\x03\xae\xed\xd5\xc1\xe4\x1b\x9e\x01\x4a\x83\x7d\xe0\xbf\x03\xb3\x27\x04\x4f\x80\xa3\xad\xaa\x89\x7b\x0a\xf5\x71\xc0\x1d\x71\x1a\x6d\x09\xb8\xd5\xf5\xf7\xee\x80\x4a\x5d\x1a\x3b\xf0\xe0\x70\x67\x38\x38\x3c\x36\xaf\x3f\xb5\x6a\x75\x23\xae\xc0\xf5\x31\xee\x38\x78\xcb\x83\xda\x17\x6d\x58\x6a\xc3\xe1\xa2\xe5\xbf\x13\xcd\xff\x9a\x0f\x2e\x2b\x75\xd5\xfa\x1b\xf9\x8e\x49\x6b\x7d\xb3\x60\xa1\xcc\x80\x37\x2e\x23\xb5\xe8\x74\x3f\xf2\xac\xdf\x87\xed\x79\xb8\x3f\x46\x9b\x79\xb9\x13\x83\x87\x8c\xbf\x04\xc3\xe5\xcf\xa2\xa1\xef\x0c\xed\xcd\xc4\x90\x21\x3c\x7a\xb5\x33\xd9\x94\xc0\xcf\x64\x4b\x7e\xde\xb1\xa7\x05\x0e\x6f\xef\xb1\x57\xf0\xce\xb8\x11\x46\x36\xc4\x3b\x33\xb8\xda\xe4\x99\x61\x22\x30\x42\x11\x7d\x50\xe2\x6b\x4a\x13\xca\xb7\x87\xb8\xa9\x4a\x6b\x88\xb2\xad\x0d\xeb\x26\xaf\xff\x16\xa7\xbb\x0b\x75\x2e\x61\x0c\x71\xb6\x76\x47\xdc\xbc\x2e\x54\xca\xfb\x5d\x60\x1c\x97\x53\xeb\x2e\x3c\x4c\xfc\x3d\x8b\x3e\xe8\xf8\xbd\x97\x40\x5c\x7c\xfb\xcf\xbd\xa4\xdb\x62\x1c\x56\x98\x62\x74\x3a\xde\xcc\x36\x74\x35\xee\xbb\x72\xc7\x8a\x88\x59\xb4\x25\xb8\x83\xb6\x68\xc8\x3b\xae\xc2\xff\x60\x9c\x22\x99\xd0\x35\x4f\x6e\x84\xe5\xd6\xee\xfe\x91\x13\xdb\xfd\x3d\x74\xa2\xe4\xf9\xc2\x8c\x69\x0a\x5a\x82\x70\x76\x88\xea\xdd\x28\xad\x0b\x01\xbc\x6b\xb4\x49\x09\xbf\x19\xef\x20\x8e\x77\x23\xde\xc1\xf5\x15\x6f\xd4\x27\x77\x05\xe7\x9b\x37\xec\x48\x7e\xb8\x1b\xc5\x47\x7f\x0f\xae\xde\x3c\x01\x70\x4c\x1b\xe7\x6f\xd6\x2b\x37\xd1\xa0\x5e\x79\x91\xc0\x74\x37\x1a\x0d\xfc\x9c\x77\xb7\x68\x89\x21\x01\x17\x73\x91\xce\x18\xd1\xd7\x0b\x5c\x02\xcd\xa8\x93\x66\x34\x01\x08\xc0\x8e\xd2\xbd\x59\xce\x5c\x87\xe1\x8d\xe2\x2d\xb6\xa2\xdc\x08\xa8\x70\x48\xd0\x3d\xe0\xf7\x94\x55\xe4\x1e\x64\x1b\xc2\xe8\x12\x70\xa3\x6f\xcf\xb8\x07\xd9\x84\x9f\x83\x66\xbb\x9f\x43\xed\x95\x00\x74\x0f\x92\x88\xdf\x87\x97\x71\xf8\x7d\x92\x84\xe0\x1d\x10\xc8\xba\xe7\x03\x97\x9b\xf7\xc0\x8e\x88\x1b\xef\x81\x1d\x4e\x45\xf3\x70\x98\x4e\xab\xad\x72\x37\x93\xfa\x86\x5f\xa0\x47\x4a\x13\x64\x21\xc0\xe6\x4d\xb3\x64\xdc\x64\xc3\xf3\xbd\xc3\xd9\x30\xdc\x21\xd5\x62\xcd\x78\x87\x5a\xec\x5d\x8c\xab\x3e\x7d\xf9\xd1\xbd\x43\x2d\x36\x89\xc0\x42\x5a\x5c\x4f\xfe\x3e\x68\xfe\x35\x2f\x5b\x52\x6d\x76\x7e\xcc\x8d\x2c\x3d\x5b\xa6\xee\xa3\x61\x1b\x68\x06\x07\xf2\x9b\xb2\x9f\x33\xd0\xca\x48\x39\x1e\x5e\x27\xac\x3f\x25\x00\x4d\x46\xb4\x87\x1a\x88\x83\x91\x62\x3e\x6e\x50\x1f\x25\xda\x98\x7e\x9f\x8f\xe6\x23\x30\x4e\x84\x2e\xfa\x79\x26\xf7\xd3\x10\x27\x6e\x60\x73\x73\x40\xf7\x13\xd0\xb8\x9b\xdf\x77\xdc\xdc\x90\x7c\x5d\x34\xe1\x46\x48\x84\xdd\x5c\x37\x42\x22\x5c\x5b\xfd\xbe\x50\x81\xa7\xfd\x28\x5c\xe0\xbe\x10\x26\xe4\x5d\x76\x91\x4f\x68\x72\x17\x74\x68\xef\x12\x44\xce\x9a\x4d\x5c\x64\x1b\xfe\x1c\xd2\xa0\xcf\x52\xc8\xc0\xe6\xb3\x17\x73\xaa\x5f\xdd\x43\xaa\x7f\xcd\x9d\x5c\xc2\xcf\x11\x9d\xf0\x62\xbc\xa8\xf8\xf7\x62\x3b\x93\xc0\x8a\x88\x27\xc2\x9c\x8c\x3c\x54\x32\x71\xf5\xb0\x1b\x76\xd7\x62\xe4\x4d\xf0\x39\xd3\x03\xef\xc4\xf1\x2e\xa5\xad\xd5\x8c\x1b\x85\x49\xe2\x6b\x7c\x98\x1b\x0d\xe1\x44\x18\x96\x17\x0b\xc2\xae\x0b\x52\xdc\x37\xe7\x27\x78\x50\x76\xc4\x05\x2c\x6e\x18\x67\xed\x36\xbe\x51\x66\x24\xbe\xbe\x07\x82\xcd\x65\x50\x54\xc4\x05\x31\xee\x1b\x6a\xbc\xe7\x7b\x13\xc1\x7e\xff\xe6\x1d\x5a\x6c\xd7\x0d\x45\x43\x54\xa1\xa3\x6e\x1b\xac\x97\xd9\x6d\x84\x40\x7d\x88\xbd\x6e\x14\x3d\x3f\x4c\xa5\x6e\xa8\xeb\xa7\x8b\x4d\xeb\x86\xba\x7e\xe5\x73\x90\xd5\x0d\x92\xa7\x44\x85\xba\x6d\x1c\xbf\x7e\xda\x08\xa3\xd5\x4d\xf5\x75\x0b\x01\xfd\x05\xb5\xb1\xb9\xa2\xe6\x43\xc9\x34\x6b\x3e\x08\xa3\x95\x0f\xb7\x6e\xb4\xde\x76\xcd\x87\xd6\xdb\xee\xf7\x61\xbd\x4d\xee\x1f\xf0\x46\xcf\x87\xf0\x7a\x3c\xd6\xda\x74\xff\x84\x37\xab\x7d\xf1\xee\x05\xb5\x41\xc0\x49\x6d\x04\xdd\xca\x4f\x51\xb7\xa7\x3e\x88\xfa\x8f\x34\x68\x69\xfc\x48\x49\xa4\xf9\x05\x58\x31\x3c\x01\x9a\x7b\x3d\xe1\x88\x18\xb0\xd7\x00\x8d\xd7\x21\xab\x8d\x63\xd0\x0b\x16\x9f\x5c\x75\xb5\x61\x85\xe9\x42\x48\x24\xc0\xee\x1f\x00\x27\xbf\xcf\x73\xdd\xfd\x13\xe0\xa1\x36\x17\x58\xe3\x25\x04\x68\x35\x53\x44\x02\xc4\xa6\x88\x84\x15\x4d\x5a\x31\x5c\xf8\x53\xa2\x3a\x4c\xdc\x11\x6e\x43\x59\x32\x82\x10\x07\xac\x50\x90\xba\x41\xfa\x6e\x2a\xf9\x59\x37\x14\x20\xec\xc6\x48\x0e\x90\xdd\xdc\x86\x1d\xc9\x18\xc1\x75\x3f\xdd\x4b\x98\xb9\x02\x82\x08\x05\x0b\xbb\x21\x44\xe0\x43\x37\xc9\x20\x56\xb8\x9b\xe4\x70\xf9\x4f\x37\x86\x19\xfd\xab\x30\xc8\xba\x31\xda\xd7\x34\xc1\x68\x5f\x63\x80\xd1\xbe\xaf\x76\x64\x3a\xab\x3a\x60\x49\x43\xa3\x08\xe2\x75\xf7\x26\x67\xb4\xaf\x37\x71\x41\x04\x56\xf7\xfb\x48\x30\x31\x4d\x15\x18\xb3\x82\x96\xa4\xc0\x32\xe7\x4d\x85\xea\x1f\xe9\x47\x96\xb3\xba\x15\xaa\x67\x5a\x8e\x82\x78\x38\x13\x18\x64\xf1\xee\xf5\xc7\xcd\xfd\xd1\xf4\x51\x59\xad\x5d\xe8\xae\x00\xc6\x04\x5d\x21\x07\x0e\x01\xf7\x88\xe6\xc2\x26\x52\xe6\xba\x77\x3c\x44\xf5\xf8\x1a\x0f\xb6\x00\xd3\x27\xea\x7e\x74\xef\x48\x58\xa9\xbb\x37\x40\x85\xe5\xee\xd5\x1f\xe0\x1b\x6e\xdf\x78\xae\xf1\x19\x72\x61\xe4\xc3\x84\xdd\xcd\x01\x51\x4d\x31\x0f\xd3\x5b\x63\xd4\x89\x97\xa7\x3d\xda\xbb\x7f\x40\x02\x90\x41\xee\xd0\x78\x83\x40\xe8\xa4\x70\xbd\xdf\xa1\xf1\x46\x4d\xb1\x23\x84\xcf\x23\x76\xa0\xd4\x4c\xb5\x53\xb4\x15\x8a\x3b\x50\x6a\x1e\xd3\x61\xfc\x0c\x02\xa1\x43\xb4\x1d\x42\x69\x47\x74\xd9\xf0\xf3\x13\xe3\x79\x3e\x44\xa1\xe7\x0b\xe3\xa7\x97\x7c\x20\x16\x6b\xb8\x1d\x31\x9e\xe6\x33\x38\x7f\xb7\x0b\xbe\xd7\xf8\x03\x11\x88\x3e\x44\x06\xe7\x2f\x78\x07\x02\x2a\xbd\xc4\x10\xc5\x93\x0f\x99\x01\x63\xad\xf7\xc3\x00\xbd\x47\xe1\x07\xa1\x0e\x55\xc6\xf7\xba\x0d\xae\xb9\x10\x44\xd9\x7c\xa8\xc3\x9d\x00\xf8\x39\x5c\x6a\xa6\x19\xca\xea\xc9\x3c\x68\x67\xb1\xf1\x22\x94\xed\xbc\xa2\xa0\x0a\xe6\x1d\xea\xc5\x10\x4c\xc7\xc2\xd9\x30\x53\x81\xc1\x78\x6c\xea\x00\x05\x32\x82\x0f\x76\xc4\x16\xf7\xe6\x0e\x91\xb6\x56\xbd\x68\xb0\x28\xb7\x4d\x73\x5c\xb2\x77\x0a\x3e\xf9\x96\xec\xed\x4b\x2d\xeb\x86\xac\x35\x99\xd0\xea\xb6\x64\xf1\xfe\xe2\x72\xb8\x54\x68\xbc\xfa\x3b\xf0\xbe\x9f\x9f\x68\x7b\x82\x17\xe6\xe3\xfe\xe0\x26\x1c\x06\xe8\xc6\xf8\x7a\x1f\x59\x70\xc3\x44\x79\x86\x35\xbe\x71\x0e\xa9\x7c\x98\xed\x2f\xb1\xbc\x2b\xb8\xbb\x6e\x4c\x7a\x73\xff\x48\x7a\x93\x49\xa1\x6e\x48\x7a\x93\x45\xb0\x6e\x67\x07\x3c\x9a\xdf\x89\xd8\xb0\xd7\xf7\x80\xd7\x4c\x14\x17\x10\xd5\xe1\xf9\x9c\x18\x5f\xf8\x58\x62\x7e\x1b\xaf\xf9\x4e\x3c\x37\x7c\x80\xd7\xf3\xc5\xad\xfb\xc1\x44\x7e\x71\xbd\xf4\x3d\x73\xda\x86\x0f\xca\x8b\x0b\xe4\x0e\x06\x3a\x14\x80\xd7\x8e\xe7\x02\x60\x09\xeb\x6d\x18\xe0\x8b\x0b\x24\x80\x2e\x4c\x78\xd3\x2e\xe5\x7d\x45\x2f\x4e\x8c\xfb\x8a\x9a\x5f\x98\x70\xec\x66\xcd\x70\x12\x02\x75\x38\x23\x20\x76\x3b\xf1\xe6\x8f\x9f\xa4\x71\xd6\x6d\x49\xfa\x6d\x18\xfe\x09\x0f\x88\x99\x08\x2c\xd7\x45\x09\xe8\x75\x83\xe5\xda\x17\x9c\xd6\x8d\x81\xd7\xc9\xdb\x76\xd2\xb2\xe7\x4f\x6e\x40\x50\x04\xe1\x0d\x08\x8a\x50\x7a\x13\x02\xa1\xf4\x46\x15\x1a\xaf\xf9\x0d\xa7\x4a\x11\x84\xb8\x9f\xa8\x18\xc5\xb8\x72\x5f\xe1\x7f\x75\xbb\xe1\x54\x69\x7e\xbf\xe3\x7d\xb7\x61\x07\x33\x8c\x37\x9c\x2a\xaf\xf9\xa2\xee\x50\x11\x8d\xdc\xa0\x39\xef\x19\x68\x07\x35\x7a\xd3\xdf\x20\x3a\x6f\x92\xa5\x2e\x74\x59\x6d\x6a\xd8\x88\x80\xae\x36\xca\xd0\x0c\xb7\x13\xbe\xaf\x6a\x63\x93\xe9\xe4\x09\x1b\x00\x16\x8d\x05\xdc\xc0\xaf\x54\xee\x1a\x36\xde\x92\xa5\x19\x06\x5c\xc9\xaf\xe2\x07\x35\xe0\x4a\x7e\x05\x54\xd6\xb0\xf4\x13\xdf\x59\x57\xc3\xd2\x4f\xba\x14\xc8\x1a\x60\x1b\xf7\x05\xbf\x35\xe0\xba\xce\xfa\xfa\x00\x8e\xda\xe2\xe7\x88\x98\xd4\x59\x16\x96\x82\xd2\x65\x97\xaa\x01\xa6\x72\x33\xe6\x10\x08\xb1\x20\x0c\x64\x2b\xea\x2f\x20\xf8\x20\xfb\xfd\x8a\xe7\x82\x38\x70\x49\x35\x1f\x14\xc3\xb0\xf3\xa0\x86\x80\xbb\x58\x86\x07\xc0\xc5\x26\x5a\xb2\x10\x60\x5c\xce\x6e\x5f\xe8\xd0\xdf\x13\xa0\xcf\x92\x06\x68\x24\x8e\x56\x58\xca\x3e\x02\xf8\xab\x40\x8e\x88\xa7\x90\x00\x1d\x96\x4a\x91\x54\x5e\xa2\x06\x5c\x16\xda\x8d\x02\xdc\x16\x2a\x9d\xb4\x86\x08\x57\x9e\xc4\xcf\x80\xeb\x42\xbb\x89\x26\x22\x5c\xa2\xf9\x7b\xd8\x85\x24\x20\x87\xc4\x2a\x32\xee\x30\x21\x28\x55\x12\x77\x40\xac\x75\x35\x8e\x13\x7c\x91\x12\x31\x43\xe2\x84\x35\x40\x42\x59\x1b\xa9\x08\x01\x15\x08\xdb\x78\xfd\x30\xf1\x81\xdb\xc8\xee\xf5\xa2\xd1\x26\x2f\x15\x22\x64\xb8\x16\x8d\x42\x5e\x19\xaa\x9b\xa9\x6b\xc8\x9c\xa1\x50\x9a\xe1\x3d\x6d\x7e\x8e\x19\x77\x77\xc0\x88\x0f\x41\x98\x49\xf6\xc2\x40\x46\x04\x48\xf1\xfb\x27\xfa\x17\xca\x32\xa9\xda\xef\x13\x20\xbf\x4f\x14\x6b\x3e\x28\x92\x5e\x14\xee\x51\x43\x81\x57\xa1\xb9\x4d\xcb\x9b\x50\x5c\x60\x79\x33\x8a\x0b\xf2\x91\x0d\x70\x21\xef\x14\xe7\x08\x05\x3e\x2b\xef\xab\xc2\x35\xf0\x0c\xe8\x61\xf3\x1a\x14\x78\x3b\xa3\xdb\xf0\xef\x56\x81\x88\x08\x16\x85\x48\xd4\x80\x08\x96\xae\x9b\xef\x6b\xa8\x58\x14\xe3\x18\x8a\x43\x6d\x9e\x02\x82\xad\xad\x39\x86\xca\xd2\x42\x26\xfc\x0a\x73\x62\xfc\x49\xf0\x73\x0d\x15\xd6\xd1\xe2\xde\x10\xd8\x6b\xaa\xc7\x45\xfb\x0a\x5d\xa9\x01\xa1\xd9\x0a\x4f\xa8\x01\x65\xda\x95\x00\x59\x43\xe5\x85\xaa\xe6\xb5\xb0\xf9\xcb\x7e\x5b\x43\x23\xd1\x69\xb6\x08\xd5\x56\xbc\x44\x0d\x0d\x8e\xa2\xaa\x0e\x11\x0d\x23\xaf\x62\x0d\x2c\xc4\x61\xd6\x89\x4b\xf6\xb3\x79\x73\x03\x0d\x16\xb7\x1f\xc7\x91\x27\x40\x08\xfd\x02\x72\xca\xa3\x3b\xbc\x48\x03\xfe\x01\x20\x4a\xf5\x09\x0c\xc6\x96\xc8\x19\x3a\x6d\x03\xe6\x24\x1d\xfe\x69\x09\xde\xa1\x33\xb2\xd9\xac\xa8\xd3\x46\x6d\x24\x74\x4e\xb2\xf8\x07\x7a\xb7\xb4\x0c\xfd\xf1\xb2\xbb\x4f\x5a\x7c\x5f\x6f\x30\x78\xca\x94\xd6\x39\x6d\x11\xd6\xc0\x42\x48\x63\x0c\x03\x77\xbe\x98\x3d\x3d\x01\xd9\x66\x70\x4f\x40\xb6\x69\x95\x01\xd9\xc9\x2f\x14\x96\x71\x15\x66\x58\xc7\x7d\x33\xf1\xb2\x26\xc7\x48\x1e\x64\xf0\x07\xcf\x02\xe1\x04\xc9\x5f\x10\x50\x13\x24\xe2\x67\xaa\x6e\x0f\xaa\x81\xb5\xdd\x37\x6f\xb9\x27\x42\xdb\x24\xf1\x04\x64\x9b\xb1\x3d\x01\xd9\x26\x8a\x9d\x90\xf8\x0b\x6c\x99\xe4\xe7\x0c\x07\xf0\x36\xc0\xed\x41\xcd\xac\x73\x67\x60\xb9\xd7\x7c\xc7\x3e\x31\xa0\x3b\xa8\x2a\xb9\x03\x2e\x8f\x59\xcd\xce\xe5\x71\x07\x0f\x14\xfa\xe2\x60\x6c\x9b\xb9\xe5\x73\x99\x90\xf9\xf9\x52\x86\x72\x33\x3b\x3c\xb8\x60\xde\x3b\x4f\x68\xb6\x8f\x1c\x86\x66\x57\x4b\x36\x4b\x1d\xca\x2a\x69\x5d\xc3\xf1\x88\xdb\xfe\x81\x98\x30\xe4\x0c\xcd\x4e\xd9\x83\x30\x30\xfd\x35\x8d\x27\x20\xce\x7d\xb0\x06\x81\x67\xc1\x00\x39\x93\x1e\xa2\xb5\xf3\x30\x93\x38\x19\x75\xee\x93\x05\xb7\xf4\x6f\x66\x7a\x27\xab\x5c\x49\xcf\x08\xe7\x13\xf3\xa1\x41\x9f\x1b\x8a\x7c\x3e\x9f\x48\xc4\x37\xd9\x9c\x28\xd0\x33\x3c\xc4\xc0\x73\x81\x71\x72\x0b\xfa\x7b\xc4\xfd\x99\xb6\xcf\x67\x07\x8a\x68\x4e\x54\xf3\x32\xa1\x22\x1c\xbc\x0d\x63\x9f\xb1\x3d\xcd\xbc\x8c\xa5\x00\x9b\x99\x1f\xae\x1f\x8a\x9b\x0f\x30\x78\x22\xe2\x66\x4e\x71\x31\xdc\xcc\xa2\xe5\x45\xcf\x8e\x39\x30\x9c\x0d\x71\x33\x15\xc0\xd9\x10\xaa\x85\x3f\x5c\xb9\x5f\x6d\x09\x09\x4b\x45\x29\xc9\xe8\xe7\x15\xfc\xd5\x4c\x95\x11\x35\xd5\x5c\x7d\xa9\x25\xe5\xb5\x3f\xe6\x13\xd1\xef\x2e\x3a\xbf\xd0\xc4\xa1\x96\xc4\xad\xfd\xc8\xdc\x16\xa0\xb3\xc4\xcd\xe7\x0c\x3c\x18\x71\x33\xee\x6e\x46\xf8\x9b\x0d\xc3\x47\x11\x37\x23\x73\xa9\x31\xc5\x8a\x58\x40\xa9\x8f\x97\x4c\x8b\x52\x1f\x56\x9d\xc3\x52\x53\x8a\x55\xd5\xb0\xd4\x94\x52\xcd\x93\x11\x7f\x13\x5f\x27\xf1\xd2\x53\x4a\x35\xab\xba\x79\xf5\x93\xd9\xc8\xcd\xec\x7f\x8f\x70\x31\x66\xc8\x40\x4c\xbc\xe0\x1e\x59\xe2\xe9\x03\x53\x5c\x8a\x4a\xb1\x11\x36\xa2\xbc\x48\x4a\x62\x2b\x11\x9a\x46\xf2\xda\x46\x5c\x76\xaa\x85\x8b\x1b\xbd\x72\x55\xed\xa5\x68\x88\x4b\xc5\x0d\xd7\xcf\xe9\x69\xc0\x6d\x73\xea\x2b\xd0\xeb\xe3\xc7\x88\x37\xd0\x91\x13\x19\x73\x9e\xdd\xa6\xd7\xc2\xdf\xd3\x6b\x21\x68\x50\xc6\xdc\x64\x16\x21\xd3\x5b\x84\x8f\x91\xf2\xa9\xfa\x8b\x48\x33\x13\x73\x8a\x11\xc5\x3f\xdd\x7f\x84\x38\xea\xfe\x23\x42\xd9\x3c\x7f\x48\xf4\x36\x71\xc7\x48\x61\xce\x6d\x08\x73\xc6\x6e\xe4\x35\xda\xaf\x1f\x9e\x33\x35\xeb\x07\x30\x6d\x1d\x78\x31\xa1\xbc\x8c\xb4\x9a\x98\xc8\xa6\x34\xe3\xc4\x8d\xa5\x19\x25\xd4\xe2\xf3\x8c\x10\xa4\xa3\x3d\x12\x53\xe3\x35\xdd\xee\x9f\xf2\xe8\xeb\x0d\x38\xca\x8c\xa2\x04\x3f\x86\xc4\x82\x98\x1e\x23\xab\xda\xf0\x63\xb8\xc3\xfc\x70\x5a\xb5\x71\x11\xb8\x4e\xa1\xb8\x24\xfa\xf6\x9a\x70\x46\xc0\x68\xf6\xfb\xb0\xbe\x88\xfb\xc4\x0c\x45\x56\x42\x47\xcc\x50\x64\xa3\x9f\x1f\x0b\x40\x37\x4f\x3a\x91\x85\xd0\x8c\xf9\x0b\x5f\x19\x69\xdd\x7a\x5a\x18\x5f\xac\xc7\x48\x85\x4c\x6e\xc6\xd5\x14\xec\x85\x65\x42\xd5\x5c\xa4\xaf\x78\xfa\x1a\x0b\x02\xbc\x92\x9f\xb3\x4a\xa8\x9a\x28\x8d\xf1\x1a\x1b\xa5\x31\xc4\x23\x63\xc5\x8d\x3c\xda\xdb\x71\xc9\xe9\x55\xe1\xf8\x35\xa2\x48\x5e\x30\xe6\x58\x2a\x44\xa3\x57\x7a\xa4\x35\x59\xd4\xc8\x0b\xde\x89\xb0\xff\x07\xef\x0d\xd8\xfb\xab\x35\xee\x88\xca\x21\x2a\x89\x57\x23\xea\x74\xab\xbc\x56\x8d\x95\x6c\x5f\x03\x36\xb8\x44\x65\x31\x88\xa8\x24\x12\xbd\xf2\x30\xe0\xa7\xd7\xfb\x38\x51\x65\x03\x89\x08\xb5\x51\x3e\x7b\x8d\x28\x78\x17\x4c\x59\xb8\x1e\x29\xbe\xde\x47\x68\x8d\x8c\x38\xb1\x81\x52\xa5\xb0\x47\x5c\x90\x14\x3d\x7f\x44\xda\x84\xd7\xfc\xe0\x92\x96\x89\x24\xc2\x5d\xa0\x7a\x64\x35\x32\xd2\xc6\xdf\x77\x9c\x6a\xa6\xec\x4e\xf8\x7e\x12\x9d\x56\x23\x6b\xe3\x29\x2e\xbc\xc6\x0e\x87\xb6\x59\x5d\xc7\x09\x68\xd6\xc3\xc2\x28\xca\xd6\x5f\xaf\xf2\xb4\x51\x9b\xe8\x10\x7a\x18\xb8\x6e\x74\x74\xa2\xc7\x03\x42\x6a\x32\x7a\x18\xa8\xee\x01\x51\x2f\xaf\x25\xef\x94\xc1\xe3\x4d\xf8\xe2\x25\x4b\xc6\x17\xa4\x75\x15\xcf\x59\x98\xc7\x04\x84\x1f\x08\xeb\xaa\x3c\xb5\x30\x05\x08\xfd\x3d\x4e\x70\x33\xd3\x41\xc9\x43\x00\xb1\x1c\xde\x66\x56\xb4\xb3\x36\xa6\x8e\xbf\x08\x6b\x7f\xb5\x83\x26\x42\x8a\xb6\x55\x2b\xee\xf0\x52\x9b\xff\xb2\x30\x49\xf1\xfb\x48\x99\x32\x49\xf3\x12\xa4\x57\x7f\x64\x76\xee\x0f\x4e\x5b\xe9\x27\x11\x85\x49\x8a\x0f\x3b\x16\x26\x91\x8c\x1e\x19\xa9\x13\xfc\x1c\x3e\x5b\x9d\xe7\xf1\xe0\x79\xa6\xf9\x41\x5a\xb6\x19\x31\xb2\x50\x89\x04\x82\x78\x20\xc4\xd3\xe7\x17\xef\x34\xf2\x92\x1c\x0c\x70\xd5\x7c\x21\x18\xdb\x6c\x18\x0f\x5e\x21\xe1\xf1\x08\x8f\xfb\x23\xc9\xeb\x7b\x48\xc5\xce\x8b\xae\x11\x31\x3b\xd9\x7b\xf0\xa4\xa9\xd9\x10\x9f\x5c\x23\x41\x0c\x29\xb9\x36\x1f\x40\x27\xeb\xdc\x6b\xc8\x13\x96\x4b\x99\x66\xe3\xc9\x25\x74\x07\x04\x51\x28\x39\xb9\x84\x9e\x11\x97\x50\x28\x3d\x19\xd4\xeb\x36\xef\x56\xf1\xfb\xa8\xc0\x64\xa2\x62\xa1\x14\xf7\x0f\x91\xd9\xa6\xe5\x78\x31\xb0\x42\x00\xa2\x4e\x8a\xdd\x33\x91\x35\xf2\x9a\xf9\x2e\x04\x68\x1b\x26\xe3\xc5\x3b\x23\x44\x53\x17\x6f\x1a\xd1\x04\x2f\x02\xe0\xe7\xf0\x9b\xfa\xc4\x67\x28\x4f\x36\x86\x9e\x42\x28\x3e\x48\x70\xb3\xa6\x5d\x58\x71\xa2\x07\x53\xcd\x84\x5f\xdc\x1b\x7b\x22\xb6\xc4\x47\x38\x4a\x99\x74\xef\x8a\x25\xe8\x56\x7b\x60\x22\xe4\xdc\x6e\x14\xdc\xf0\xca\xf9\x9c\xbb\xe1\x79\x96\x7e\x16\x51\x9b\xba\x7b\x97\xf0\x4a\x20\x53\x15\xae\x04\xb2\xc7\x21\x32\x8f\xd2\x54\x88\x42\x27\xf6\xd8\x44\xe4\x55\xda\x03\x16\x11\xbb\x63\x17\x5d\x44\xec\x8e\x3d\x6a\xf1\x26\x06\x3d\x1f\xc2\xef\xf1\x01\xbf\x49\xe8\x86\x17\x52\x52\x65\x42\x6c\x8f\x1d\x3c\x69\x23\xfc\x7e\x0e\xc3\x6f\xf1\x73\x84\x11\x68\x17\x26\x88\xc8\xca\xb0\xa8\x09\x15\xf5\x54\x78\xb4\x26\x64\x72\xaa\xf2\x4d\x4d\x88\x0d\xb2\xdb\x37\x21\x36\x48\x37\x2c\xd7\xc4\x3b\x3f\x47\xf9\xc9\x41\x93\x36\xba\xd5\x3d\xf8\x8d\xce\x34\x58\x80\xcf\x5b\x52\x45\x82\xc8\xad\x30\xe9\x9a\x50\x4e\xcf\xde\xab\x04\x91\x5a\x85\x01\x6a\x42\xda\x66\x4b\xc6\x46\x04\x74\xe2\x00\x89\x79\x93\xc2\x7e\x8a\x70\x0a\x27\xb7\xe1\x14\xce\x7e\x1f\xee\xaf\x6d\xf8\x05\x2e\x87\x20\x40\x24\x4c\x1e\xfe\x02\x37\xeb\x0f\xed\xb0\xc4\xc0\x74\xd1\x6f\x42\xa2\xe5\x6b\x86\x88\x84\xa9\x76\x3f\x25\x08\xc1\xaa\xde\x54\x13\xa4\xe0\x3c\xb2\x7b\x84\xa3\x5e\x14\x9c\x70\x35\x4f\x4a\x9e\x01\x1c\xe1\xaf\xe7\x70\xf9\x65\x0f\x00\x98\xbd\xc2\x09\x8e\x7b\x53\x4c\x42\xe6\xb1\xc7\xcb\x58\x14\x3f\x67\xa8\x8d\x29\x26\x23\x86\xd6\x00\xe0\xe6\x1e\xd5\xb5\xa9\x09\x17\xf3\x44\x63\x00\x17\xf3\xa4\xd7\xfb\x84\xc7\xef\x23\x96\x43\x3b\x20\xe1\xae\xd0\xe4\x45\x86\x10\x9d\x0c\x4f\x46\x20\x42\xf5\x73\xc0\x53\xfd\x9c\xf0\x78\xfe\x58\x42\x71\xa0\xc4\x48\x1c\x13\x19\x2e\xf2\x49\x1e\xbf\x70\xc5\x34\x3f\x06\xde\x78\xc5\x0b\x17\xcc\xfd\x11\x3e\xf7\x07\xf8\x3c\x7e\x21\x0d\x8a\x84\x18\x98\xf3\x9a\xcf\x45\x5f\x8e\x00\xa2\xcd\xdb\xa1\x14\x09\xd7\xe4\x0c\x59\x17\x52\x85\x17\x3b\xfa\x03\xa8\x25\xc6\x18\xa2\x63\x9a\x31\x86\xc0\xf5\x26\xe1\x3c\x55\x9a\xed\xa5\x2c\x24\xdc\x82\x33\x4c\x83\xa8\x27\x6d\x33\x65\x42\x59\xbe\xe1\x0e\x70\x29\xce\x8b\x44\x97\x74\x1d\xad\xb9\xa4\x25\x5d\x47\xe5\x59\xd6\xd4\x00\x40\xf2\x73\xb8\x48\x9b\xbf\x27\x40\x9a\x70\x83\x5b\xde\x24\x0b\xe9\xba\xbd\xd6\xac\xc1\xcd\xfd\x7a\x01\x10\x7a\x4f\x2c\xf1\xba\x0d\xd9\x6a\x53\x03\x80\xc6\x18\xc4\xe9\x6a\x79\x30\x2d\x79\x3a\x36\x7f\x80\xe8\x9b\x61\xa2\xef\xd8\xe6\x9e\xe1\x92\x98\x63\xf3\x12\x21\x1a\xa7\x99\x93\x75\x40\x6c\xc6\x83\xe8\x9b\x91\xfc\x3d\x96\xcc\x18\x46\xf4\x4d\x93\x82\x94\x3a\x03\x0f\x04\x10\x2b\x8c\xa8\x58\x7e\x4d\x1d\x1e\xc3\xea\x01\x00\xa1\xa9\x0e\xe1\x38\xb6\x29\xa6\x0e\x3f\xbe\x77\x29\xc2\x73\x86\x27\x3c\x08\xb0\x30\x8c\x48\xf9\x66\x92\x18\x74\x02\x0b\x21\x08\xcf\x69\xe6\x7b\x08\xcf\x19\x06\x00\x91\xf3\x56\xee\x13\x22\xe7\x9b\x39\xef\x20\x4d\x6a\x7e\x83\x2b\xe6\xf1\xb9\x62\x3f\x3b\x67\x06\x81\x75\xe7\xa0\x57\x6f\x08\x84\xf2\xa8\xae\x64\x4d\x08\xb3\x6f\xa6\xc7\x9d\xf4\xaa\xc9\xec\x70\x9e\x4a\x3f\x4a\x3b\xc2\x12\x4c\x5e\x3b\xc2\x34\xbc\x3a\x3b\xc3\x4a\x34\xf9\x9d\xab\xab\xd5\xde\xb9\xba\x7e\x0e\xf2\xf5\x7c\x77\xb0\x6c\x53\xd3\x8e\x28\x0d\x23\x63\x27\x32\x3c\x5f\xee\x4f\xbf\x0f\x78\x8d\xdc\x03\xfe\x6e\x2f\xc6\x81\x30\x1a\x8f\x0f\x51\xbd\x6e\xde\xd0\x07\x07\x10\xc0\x07\x42\x08\xbc\xbf\x4e\x84\x0c\x54\x75\x00\x59\xbc\x6f\xd2\x97\xd2\x89\xa0\x09\x33\xb9\x13\x1e\x75\x93\x17\x03\x75\x4c\x5e\xcc\x44\x95\x7e\x96\x4e\x70\x84\xea\xef\x1b\xde\xd7\x04\x4f\x78\xd8\xcd\x34\x4f\x5a\x5e\x84\x01\x54\xaf\x76\xc8\x6e\x42\xf5\x6a\x2b\x57\x89\x81\x3a\x3e\x84\x4e\xe4\xea\x54\xf7\x0f\x80\xbd\x02\x27\x8d\x73\xea\x8f\xd5\xac\x65\x1e\x4f\xbc\x4d\x74\xb8\x43\x96\xb3\x6e\x6e\x03\x01\x66\x91\x17\x82\x26\xbc\x64\x17\x59\xa0\x07\x00\xc0\x3e\xc5\x2f\x00\xec\xfd\x7c\x21\x12\xcb\x1c\xf0\x42\x94\x88\x59\xf8\x85\x28\x91\xee\xf1\x01\xb0\x19\xd8\x85\x88\x02\x33\x24\x18\xce\xcb\x30\xc6\x2f\x44\x89\x78\xcf\x4c\xd0\x90\x69\x90\x81\x3e\xf2\x41\xa4\xc9\x7a\xf0\xdd\x2f\x60\xd3\x34\x77\x80\x73\xd4\x2c\x75\x02\x03\xde\xf1\x48\x4b\xed\x0e\x8a\x48\xb3\x7d\x7f\x8d\x68\x1e\x8b\x8a\x29\x0e\x22\x4e\x93\x6b\x2e\x94\x4c\xa0\xa0\xf9\x39\x42\x16\x64\x64\x48\x13\x10\x79\x17\xde\x80\xc8\x07\xfd\x8d\xb2\x59\x1e\x9f\x81\x3f\x9e\xf0\x4d\x1a\xf6\xfb\x08\xfc\x69\x7e\xce\x25\xd5\xf8\x37\xa2\x42\xcc\x32\x11\xe6\x5f\xed\x12\x49\x88\xf4\x71\x48\x44\x7a\x2e\x0f\x7d\xbd\x70\x72\x5f\x7a\x08\xca\xa3\x82\x21\x33\xd6\x46\x3b\x3b\xf3\xca\xfe\x21\xcb\x49\xde\x10\xc7\x21\x95\x33\x6f\xfb\x42\xaa\x58\x5f\x5e\xf2\xfd\x50\x4e\x7b\xcd\x4b\xbe\x1f\x2a\x2d\x59\x33\x43\x6b\xc4\x09\x32\x6c\xe4\xca\xa0\xaa\x19\xa1\x35\xb6\xb8\x67\x18\xcd\x6d\x98\xcb\x01\x61\x1e\x52\x61\x73\x48\x78\x5f\xfd\x05\x04\x55\xe8\x24\xce\x4b\xc4\x1f\x36\xb4\xfc\xff\x8c\x9d\xc7\xd9\xf4\xba\x0e\x83\x5b\xb9\x25\x38\x29\x6d\x4e\x2f\x8e\xfd\x97\x70\x9f\x01\xfc\xe3\xf5\xf2\x5b\x7a\xc6\x96\x44\x05\x8a\x01\x24\xb7\x9f\x48\x3f\x30\xec\x6d\xb3\xc7\x1f\x7a\x14\x98\xba\x7c\xbe\x17\x88\x22\x9b\x66\x9b\x05\x9a\x80\x5e\x25\xd0\xc6\x30\xb8\xd9\xca\x1e\xfd\x66\x5b\x66\xb5\xf7\x27\x78\xda\x66\x13\x7c\x94\xc7\x4d\x26\xf8\xa4\x5d\xa9\xdb\x52\xd5\x59\xcf\xb3\x76\xf4\xcc\xb3\x88\x9b\x19\xcc\xae\xc1\x86\xb8\xd7\x24\x1f\xe2\x16\x11\xf7\xf9\x5e\x8b\x33\x33\x78\x2f\x4e\x26\x4b\x20\x9c\x64\xed\xac\xdb\x3a\x69\x3c\x59\x2c\xd5\x90\x69\x9f\x0e\x9c\xae\x3b\x0a\xda\xa6\x9a\x32\x78\x95\xb6\xd5\x04\xa6\x83\xd5\xdb\x8f\x0e\x44\x60\xb4\xe3\x6d\x7d\xb7\x7c\x28\xfa\x29\x2b\x03\x39\x6b\x7b\xe3\x6c\x99\xc2\xd5\xd1\x44\x85\x2f\x4c\x23\x2f\x78\x41\x69\xe1\x47\x23\x3a\xe4\x26\x58\xcf\xc2\x9c\x08\xd6\x93\x4c\xac\x75\xdb\x4c\x62\xe6\x40\x79\x61\x30\x00\x6c\xca\x03\x03\x2e\x7e\x53\x1e\x98\xce\x86\xfe\xa9\x0b\x03\x83\xc6\x56\x54\x14\x20\x5c\x68\x2b\x62\xfc\x4c\xa9\xf3\xc4\x30\xa5\xce\x13\x53\xf9\x5f\xa0\x9b\x4a\x7b\x43\xed\x87\xfe\xb2\x5b\xa7\xa5\x03\x6f\x0a\x06\x24\x0c\x0a\x3b\xb8\x98\x80\xac\x81\x31\x37\x70\x00\x63\x6e\x72\x95\x6d\x55\x00\x0e\x26\xa4\x4a\x38\x88\xb6\xb0\x09\x61\x83\xc5\x61\xab\x42\x0d\x85\x4d\x6e\x02\xd8\xe0\x9b\xdc\xaa\x4b\x77\x85\x2f\x6e\x55\x65\x0d\x36\x3e\x38\xd4\x20\x03\x38\xf5\x1c\x82\xaa\x92\xf6\x57\x06\xe4\x14\x09\x91\x36\xb6\xaa\x14\x09\x91\x46\xb6\x66\x6c\x00\x6b\xd0\x7c\x1b\x87\x15\x6f\x86\xcd\xb0\x0d\x9b\x50\x43\x11\x37\x36\x65\x91\x21\x7e\x61\x53\xce\x43\x60\xb0\x5b\xf3\x22\x65\x88\xcd\x24\xf1\x2c\x5f\x1a\x23\x6c\x82\x76\x35\xda\x97\xa7\x07\xa5\x74\x73\xca\xc3\xce\x00\xbd\x8b\x33\x47\x4e\x61\x08\xdb\xec\xce\xf6\xc7\xa4\x38\x45\x61\xe1\x59\x11\xe2\xec\x12\x5b\xd8\xa7\xdc\x7e\x5b\x37\x46\xa3\xd1\xa4\xb1\x25\xb9\xc1\xb7\xee\x0c\x44\x71\x63\x6f\x02\xd1\x34\xec\xfe\x5b\x37\x2a\x23\x62\xcf\x66\x14\x4d\xa4\x9a\x6d\x38\xf7\xf4\xe7\x07\x81\x7f\x72\xc7\x6e\x43\xc9\x29\x22\x26\x6d\x43\x90\xb4\xc8\x65\xdb\x78\xe1\x5b\x34\xe0\xac\x86\x4c\xe5\xf0\xf6\xea\xfc\xa0\xb5\x60\x26\x8c\xa1\x29\xb4\xf0\x92\x45\x1f\x12\x7d\x56\x88\xb0\x1b\x33\x13\xf3\x22\x68\xa2\x8e\x6e\x6f\x8e\x43\xd8\xe0\x2e\xaa\x58\xcd\xdd\x50\x93\x68\x63\xdb\xee\x43\x9e\x2e\x76\x91\x19\xf1\x75\xdb\x7d\x86\xf8\xdf\x34\xfc\x09\xa4\xb6\x19\x5c\x53\xe8\x4c\xe0\x9a\xc2\xe8\x04\xba\x83\x83\x1a\x5b\x13\x51\x72\x13\xb6\xa6\xcd\xdc\x99\x87\x57\x31\x0d\xbc\xd0\x9a\x48\x52\x9b\xa0\x35\x09\xe1\xad\xdb\xa1\x55\x84\x87\x09\x59\xd3\x3e\x4c\x57\x39\x0e\xb7\xf1\x69\xd2\x30\x25\xb8\x86\x50\x30\x1d\x36\x77\x3c\x7a\xce\x8c\x08\x04\xd3\x06\x27\xe4\x14\x40\x0b\x3e\xfc\xd3\x30\xb6\x0e\x1f\x36\x06\x66\xfa\xbc\xa0\x7a\x68\x30\xde\x9f\x8a\xb1\x35\xe6\xfc\xa7\x52\x6c\x0d\xbe\x77\xbe\x27\x86\x16\x95\x65\x91\x8d\xf6\xd3\x21\xb6\xc6\x99\x14\xc2\xa5\x73\x66\x7f\x3a\x43\x01\x62\xb3\x9d\x2f\xb0\x27\x3f\x5c\x4e\x27\x19\x2d\x69\xbb\x4c\x43\x86\x7c\xbd\x25\x1e\xd2\xe4\xb5\xe9\x85\x74\x79\x19\xc6\xc3\x89\x74\xac\xee\x04\xe7\xba\x94\x3b\x92\xeb\xe7\x7a\xa9\xe2\x05\x01\x79\xb8\xef\x2e\x47\x4f\x43\xd6\xf5\x9e\xfa\x4c\xd4\xad\xca\x73\x9f\x67\x23\xfc\x98\xe9\x5b\x7e\x7e\x06\x75\x1b\x8e\x84\x54\xfa\x0f\x41\x13\xc2\x6f\x3b\x26\xe8\xd4\x08\x1a\x2e\x2d\x21\x68\x36\x0c\xad\xdb\x3f\x04\x4d\x26\xd3\x29\x69\x6a\x94\xd8\x4d\x20\x99\xb6\x7c\x7a\x75\x4a\xc5\x85\x71\x29\x07\x06\xb7\xc0\xad\xb0\x70\x96\xc3\xf5\x72\x2a\xc2\xed\x63\xca\x43\xe8\x4f\x43\x28\x9f\xc9\x16\xa6\x06\x7b\xf5\xf6\xbc\x7b\x30\x3d\x28\xc9\x0d\xde\x88\x4d\xa0\x1a\x8c\xbb\xdb\x63\xb7\x22\x2c\xf7\x71\x91\x3e\x2e\x4f\xf9\x07\x16\x80\x5a\x9b\x40\x32\x98\x1b\xb7\xc7\x9e\xee\xf0\xe4\x22\x94\x0c\x4e\xaa\x32\xd9\x55\xda\xf8\xc1\xbe\xd1\xf0\xb7\xa2\x54\x36\x0b\x78\xb2\xf2\xd3\x2a\x0a\x66\xf1\x22\xad\x62\x01\x2d\x59\xe4\x25\x58\x00\xf4\x95\xc9\x85\x24\x22\x9a\x16\x61\xf4\x17\xa0\x8c\x45\xf9\x6b\x16\x10\x98\x45\x51\xc4\x0b\xb0\xc3\x32\x29\x9d\x5a\x2e\xdd\x32\x3b\x51\x1c\xc3\x70\x59\xcb\x94\x42\xad\x45\x05\x78\x16\x3c\x7c\xe5\xa7\x4d\x94\x64\xd1\xa9\x65\x76\x81\xc2\xf0\xc6\x22\x8f\xc1\xd2\x0a\x4d\x34\xff\x90\x71\xce\xc6\x39\x65\x98\xb3\xf3\x9e\xf2\xbf\xf3\x9e\x46\x68\x2f\xb3\x61\x4d\xb4\xe8\x3c\xa8\x7c\xe0\xc0\xb2\xc6\xa0\x64\x6c\x44\x02\x2b\x42\xef\xaf\x40\x8b\xca\xf2\x66\x4a\xcd\x27\xcb\x9b\x4d\x29\x74\x2c\xab\xa0\x50\x73\x9e\x9d\x3a\x35\x13\xa1\x88\xe2\x15\xaf\x40\x51\x59\xcb\x95\xbb\xbc\x28\x66\x78\x45\x1f\x2f\xaa\x62\x89\x5c\x59\x7e\xca\x47\xf9\x09\xc2\x7f\xb8\x93\xca\x4f\x33\x29\x18\x54\xcb\xf2\x56\x76\x81\x46\x15\x71\xc4\x7d\x5c\x16\x25\xf8\x0f\x85\x8a\x0f\x28\xc9\xe4\x57\x8b\x72\xb3\xe3\xbe\x2e\xeb\x7b\xb6\x42\x80\xd0\x43\x9f\xff\x8b\xc1\x34\xb4\xe8\xa4\xce\x79\x6c\x82\x98\xa4\xff\xd5\x47\x2f\x13\xb4\xbe\x88\xbc\x3c\x1b\x62\x97\xe9\x31\xb6\x28\x77\x5e\x59\xed\xab\xa5\x7d\x3b\x2a\xf3\xfd\x4f\xef\xa8\x84\xb2\x95\x9f\xde\x51\x09\x55\x2b\xaa\x9d\x49\x00\x45\x31\xd6\x88\xad\x6c\xb7\xc7\xe7\x7f\xe7\x7f\x1a\xbc\x20\x0b\x6e\x64\x8a\xa2\x7a\x41\xa0\xe7\x4a\x51\x6c\x5c\x38\x68\x29\x32\x49\xc7\x64\x56\xe4\xc7\x68\x11\xbd\x4a\x91\x05\x97\x15\x53\xbe\x9e\xcf\xbe\x56\xf9\xa0\x16\xd1\xad\x14\x7b\x15\xb2\x00\xc5\xf5\xc1\x2b\x1d\xc8\xe4\x54\xf9\xe0\xd2\x07\x99\x91\xa2\x28\x9d\x4e\x87\xce\x0b\x11\x99\xa0\x54\x19\x09\x99\x92\x2a\x03\x0b\x1d\x54\xd9\xcc\x38\x25\xd5\x36\xb3\x8c\xb8\xca\x60\xc4\x92\x55\x19\x05\x99\xd2\xfa\xea\x9a\x21\xa1\xda\x78\x40\x03\x97\x47\x94\x21\x2a\x85\xcf\xc2\xae\x6d\xaa\x88\x14\xd1\xb2\x08\xae\x4f\xfc\x60\x69\xbe\xbf\xd3\x81\xe0\xfa\x04\x27\x94\x66\x71\x97\x73\xfc\xe2\xf3\xd9\xb6\xcd\x62\x7b\xe7\x13\x8b\xed\x4c\x9b\xa1\x43\x13\x1b\xa3\x59\xee\x88\xe4\x53\x0c\x0e\xaa\xb9\xa7\x8a\x30\xfa\x73\xcd\xbd\x54\x04\xf0\x59\x00\xb3\x17\x23\x7c\x10\x4d\x8a\x73\x53\x8e\x88\x4f\x45\x1e\x8c\x5c\xb6\xa5\xbb\x3a\x05\xdb\x49\x0a\x48\x23\xce\xae\x74\xa7\x81\x87\x71\x76\xef\x8f\x74\x31\x64\x53\x8d\xb8\x54\x86\x2c\x8c\xf0\xbc\x9f\x2e\x31\xb8\xdf\xcb\x78\xaf\x2d\x3e\x28\xe2\xbc\x7c\x20\x9e\x87\xab\xb0\xc8\x29\xc1\xf2\xca\x07\xb1\xc0\x87\xed\x83\x80\xf5\x2b\x7b\x4f\x6a\xab\xd5\x32\x64\xeb\x8a\x14\x53\x76\x9b\x02\xd2\xff\x2e\x53\x00\x37\xb1\x80\xf6\xf3\x1c\x19\xb5\xc8\x6f\xf0\xf9\x5e\x39\x63\x78\x14\xda\x24\xd2\x47\xd9\x0d\xa8\xa1\x39\x41\x0b\x62\x1d\x2a\x02\x08\x11\xb2\x55\xec\x25\xe0\xf2\x53\xf9\xfd\x12\xad\xb8\xec\xb2\x61\x47\xbe\x2d\x3f\xb1\x7f\x45\xa2\x2a\xc7\xbb\xe6\x99\x9f\xc3\xa5\x90\xb9\xf6\x0f\x8b\x2f\xbc\xd0\xcd\xd4\xd3\xa5\x32\x52\x7e\x5a\x14\xe4\x87\x15\x36\xe4\x87\xe3\x73\xb8\xb4\x35\x23\xb2\x11\x7a\xfd\x13\x2a\xba\x1c\x42\x0f\x44\xe9\x28\xa7\x92\x3b\x45\x09\x2f\xa7\xa0\x20\xf4\xae\x60\xe0\x85\xf9\x38\xc5\x71\xe9\xdd\xc1\xba\x30\xd4\x9f\x3c\xff\x15\x2e\x4e\x31\x5c\xb8\xc5\x25\xfb\x71\x54\xd5\xe2\xb2\x45\x9d\x0d\x7e\xe9\x0a\x8b\xda\x58\x7e\xe2\xfd\x20\x0b\x42\xb9\x5c\xfa\x9d\x0d\xe3\x6c\x94\x91\xf5\x8a\x6b\xdd\x23\x97\x5d\xce\xef\x8a\x44\x74\xbd\x97\x14\x5d\x5a\xca\x62\xcb\x5f\xaf\x94\x15\x2a\x0c\x88\x6f\x90\x2d\xf1\x1e\xa6\xa9\xe4\x3b\x13\x6b\x24\xbb\x3e\x21\x5b\x45\xc2\x7d\xed\x5c\x64\xb7\x02\xf5\x69\xae\xfe\x36\x75\xba\x73\xb5\x7a\x5a\x73\xad\x88\x3c\x0a\x56\x8a\x90\xa8\x4c\x3b\x33\x62\xa5\xd0\x3e\xc9\x73\x5d\x8b\x51\xed\xcc\xf0\x63\xd8\x26\xef\xaf\x7a\x4e\xfb\x8f\x61\x9b\x99\x2f\xa1\x7d\x56\xf8\xb1\x72\x46\xe2\x18\x2b\x8f\x37\x6c\x46\xff\x28\x51\x0a\x5b\xea\x31\x40\x97\xf6\x1d\xd4\x10\x3d\xa6\x4e\x12\x63\xb2\x40\x55\x70\x1c\xfc\x5e\x55\x70\x9c\x12\x29\xa7\x2a\xaf\x3a\x67\xb4\x2a\x8b\x64\x69\x7c\x2f\x44\xda\xca\xfb\xe2\x11\x39\x81\x75\x32\x8f\xe8\x79\x16\xa8\xb0\x32\x1e\x11\xb8\xd2\xbe\x08\x6c\x8c\xc7\x27\x72\xe4\xd9\x04\x2e\x79\x76\xcd\x7c\x9e\x1f\x3d\xa7\x7d\xa7\xfa\x89\x6e\x51\x9d\xea\x27\xb2\x6e\x55\xc9\x4c\xce\x48\x95\xc4\x8e\xd3\xa7\xce\xef\x11\xc8\x73\x71\x61\x82\x3c\x77\xef\x36\x5e\x10\xfe\x28\x82\x66\x55\x26\xca\xf1\x69\xc0\x90\xef\x41\x0b\x92\xcb\x18\x81\x93\xf7\x30\x43\x8b\xe5\xb4\x8c\x48\xc9\x7b\xf0\x1d\x57\x57\xd0\x4c\x2e\xc6\x5a\x17\x21\xc8\x58\x42\x27\xef\x09\x9b\xae\x4a\xde\x83\xef\xb4\x2a\x79\x4f\x52\x1a\xd7\xea\xe4\x3d\x2c\xd9\x22\x84\xd8\xc2\xff\x66\x8a\x0c\xe0\x77\x46\x80\x0a\x54\x57\x39\x62\xcb\xac\x06\xb1\xe7\xde\xac\xc2\x24\x11\x23\x58\x95\x9c\x07\xec\x40\x55\x72\x1e\xbc\xc7\x55\xc9\x79\x80\x06\xd4\x55\x28\xab\xb8\x50\xea\x2a\x82\x58\x02\x25\xe7\x01\xfd\x51\x85\xc2\xc7\xd5\x5f\x37\xf1\xe1\x1c\x92\x6a\x80\x10\x2b\xb0\x09\x92\xc7\x04\xaa\xac\x7c\xed\x74\xb8\x89\x51\x73\x08\x8c\x18\x82\xe2\xcd\x41\xfe\x50\x68\xc8\x10\x53\x6a\xd9\x99\x35\x56\x36\xcc\x4a\xc6\xa9\x6a\xcc\x50\xfb\x93\x6e\x53\x25\x79\x8f\x29\x86\x9e\x6a\x04\x11\xdd\x1b\x31\x04\x81\x45\x04\x73\xc8\x8a\xd3\x1e\xb2\x27\x5d\x83\x08\x57\x61\x15\x26\x08\xf0\x70\x2d\x02\x04\x54\x5a\x10\x20\x20\xb2\x7b\x2d\x42\x47\x44\x52\xa9\x16\xad\xc3\xd3\x6b\xd1\xd5\xc5\x9e\xfb\x89\xd6\x6d\xe5\xb9\x3a\x5e\x3c\xda\x49\xad\x82\x7b\x44\x7a\xab\x55\xf8\x96\xc2\x07\xab\x8f\x55\x46\x50\xa5\x4d\xb0\xeb\x8d\x49\x8a\x76\x50\xab\xb4\x09\x96\x40\xb5\x41\x2b\x49\xb3\xaa\x41\x4a\x6c\x73\x0b\xe7\x70\x8e\x57\x38\x8f\xc2\x5a\xab\xc4\x45\xb6\x4d\x95\xfa\x30\x18\xb2\xc5\x9b\x34\xd0\x24\x4e\x32\xe2\x26\xbf\x06\xbb\xaa\xe9\x76\x86\x75\x35\x5f\x6c\xb0\x92\x26\xff\xee\xe0\x03\xa9\x1b\xf0\xfa\xa6\x5a\x58\x91\xbb\x6b\x93\x37\x0f\x5e\xdb\xe4\xa2\xe7\x1c\x34\xf9\xa7\x07\xed\x0b\x93\xc0\x36\x69\x96\x87\x69\xcf\xe9\xe7\x99\x12\xe7\x9f\x8f\x5c\x5f\xbb\x04\x10\x98\x75\x97\x2f\x15\xe6\x69\x21\x1e\x14\x53\x55\x9d\x23\xd2\x2c\xd5\x9f\x8c\xbe\xa2\x17\x54\xd5\x31\x22\xcd\x51\xed\x72\xae\xc2\xfd\xbb\x9c\xc3\x9c\xfc\x2e\xdf\x1c\xb7\x51\x37\xf3\xcd\x75\x5f\x87\x9c\x71\x74\x60\x91\x3e\xc6\xc8\x3a\x0c\x1a\x60\x4e\x7e\x32\xfd\x20\xe9\x4e\x1d\x72\x38\xc2\xfc\x86\x1c\x8e\xdc\x3f\x43\x59\x01\x3e\xff\x77\x3d\xd3\x81\xfc\x8d\x9f\xf7\x75\x1f\x26\x31\x70\xad\xaa\x78\x34\x7d\x9e\xe5\x88\x89\x87\xb3\x5a\xc6\x8f\xfb\xb0\xfe\x64\xfc\x81\x12\x53\x77\x6b\x80\x19\xb0\xb3\xfe\x7c\xb6\xe9\x2e\xd7\x11\xdb\x6c\x7f\x35\xbc\x4c\xe2\x1b\x3c\xcb\x46\xb5\x7d\x1f\x76\xa7\x60\xd9\xfe\x39\xdd\x36\xe8\x73\x9a\xdf\x60\x59\x76\xea\x1b\x2c\x1b\xd5\xa9\x1e\x4a\x2d\x0b\x83\x7c\x93\x72\x46\x17\xa8\x0a\x96\xfd\x48\x3a\xf5\x50\x4c\x30\x3c\xed\xb0\x03\x8a\xe3\x28\xe5\xa0\xe0\x07\xac\x87\x3d\x35\x9f\x1f\x7e\x94\x77\xa6\x52\x89\x3c\x53\x4e\xa1\x56\x87\xca\xce\x9f\x1f\x0e\xff\xc0\x30\x2f\xff\x40\xa7\xb7\x7f\xa0\x4d\xc9\x23\x8d\xe9\x96\xdf\x60\x9e\x23\xf2\x55\xb9\x01\x10\xca\xeb\x4f\xea\xdf\x50\x72\xaa\xdc\x00\x9d\x05\x16\xc6\x7f\x9e\xe1\xf6\xa7\x87\x9d\x41\x39\xd2\x75\xfe\xb4\x78\x79\xee\x78\xc3\xc7\x80\xc9\xb3\x27\x60\x8e\xdc\x59\x05\xd4\x9f\x7f\xfb\xf8\x2f\x17\x90\xca\x1e\xe1\xca\xab\x6f\x18\x6c\x8c\x04\xf5\x52\xb0\x2e\x33\x7f\x9d\xd2\xd3\x32\xa0\x9f\x56\x50\x08\xb5\xa8\xaf\x52\x10\x97\x6c\xb5\x0e\x00\x8d\xb7\xeb\xbe\x87\x00\x99\xe3\xc7\xc4\x05\x2a\x73\xfc\xf7\x86\xfa\x09\xf6\x05\x6b\x54\x95\xf1\x7d\x5d\x3f\x5d\x9c\x32\x27\xe6\x24\x3e\xce\x6f\x96\x47\x29\x4f\xd3\xc4\xff\xd2\xee\x59\x17\x01\xf3\x0b\x07\xd5\xc0\x7c\xb8\xe7\x23\xa8\x37\x07\xf1\x91\x79\x8a\x53\xf4\x13\xe5\x17\xd0\x45\x4d\x59\x6f\x88\x05\x6d\x93\xaf\x87\x96\x67\x05\x45\x11\x50\xd7\x26\x21\x57\x32\xa9\xed\x27\xba\x0f\x0c\x7a\x6d\x92\x9f\x3c\x57\x6a\x53\xec\x69\x78\x67\x9b\xec\xd7\xcf\xa3\x42\x45\x1a\xad\x29\xd2\x22\x12\x41\x9b\x1c\xe8\x5f\x68\x5e\xb1\x22\x9f\xee\x5d\xad\x9b\x01\xcf\xaf\x85\x26\x4d\xa8\x80\xe8\x42\x17\xb3\x50\xb4\x50\xac\xac\x34\x1d\xd1\xb8\xa9\x60\x28\xd9\xc3\xda\x4f\xb6\x5e\x01\x6b\xb4\xd9\x5d\x46\x2a\x68\x0a\x59\x05\x9c\xd3\x16\xb3\xfb\x34\x28\x30\x0d\xae\x88\xf6\x93\xad\x07\x16\x8c\x26\xd9\x7a\x4e\xad\xc1\xda\x24\x4b\x6f\x64\x95\x6b\x8b\x3d\x11\x3c\x37\x6d\xcc\x0c\xd1\x85\x91\x32\xc2\x45\x05\x34\x69\x4e\xf5\x33\x33\x85\x8b\x6a\x4b\x66\x09\x56\xb1\xf2\x7c\x2b\xb1\x98\x5c\x68\x6d\xd5\xfa\x86\x36\x41\x5f\x06\xff\x56\x9b\x2a\x42\xab\x2a\xd9\xcf\x8c\x74\x75\xc0\x65\x46\x2a\x29\x99\xd4\x5e\x4d\xc5\xec\xe7\xcf\x68\x14\x71\xb9\x31\x9c\x4b\x73\x95\x47\x6b\xca\x74\x27\x4d\x39\x18\x88\x66\x21\x7a\x63\x2a\x37\xab\xba\xf9\x40\x19\x2d\x01\x4a\x35\x65\xb4\x4c\xc6\xfc\xda\x7e\x42\x75\x25\x3f\x64\x53\x8a\x79\xd0\x77\xed\x27\x43\x57\xf2\x03\x36\x25\xb8\x5c\x3f\xfd\x5d\x7a\xce\x04\x49\xe8\x4d\x6a\xed\xda\x8a\xc6\x13\xae\xd9\x54\x98\x13\x2c\x54\x93\x4c\x0c\xb0\xac\x29\x60\x35\x19\xff\x6b\x53\xc0\x2a\xe9\xf6\x9a\x72\xcd\x80\xb5\x6a\xc5\xfd\xd3\x9f\x78\xdc\xcc\xf7\xb2\x7b\x40\x9f\x44\x60\xb0\x52\xad\x3a\x71\x35\x03\xaa\x66\x00\xac\xc8\x2b\xc2\x32\xe7\xd5\xc2\x44\x48\x72\x96\x49\x4c\xee\xad\xca\x7c\xd0\x79\x41\x67\x98\x35\x17\xb2\x65\xe0\xd0\x6a\x02\xae\x80\xca\x6c\xcd\xa5\xbb\x33\xc9\x92\x51\x81\xcd\x36\x85\xa5\x26\x67\x7e\x6d\xca\x3b\x89\x53\xa4\x29\x23\x7c\xe9\x7f\x42\xb3\xb5\xe6\x3c\x5d\x7c\x2c\x16\xc5\x16\x54\xcc\x6a\x6a\x29\xd5\x26\xc3\x33\xe6\xf9\xe6\xec\xf0\x83\xef\xc5\x2e\xe0\x60\xb2\x4b\x83\xd9\x6d\x8a\x51\x25\xd1\x59\x53\x18\xea\x20\x4b\x56\x53\x18\x2a\x99\xd6\x5a\x37\xb5\x7c\x60\x63\x49\x06\xd0\x4d\x6d\x06\xd0\x4d\x10\xef\x2b\xda\x2d\x5a\x56\x93\x45\x1a\x88\x6b\x53\xd4\x69\x81\x47\xab\x3c\x52\x72\xa1\xd7\xd6\x15\x91\xd8\x79\xdf\xf5\x86\xd9\x73\x0a\x53\x05\x94\xdb\x86\x29\xe4\x7f\x59\x43\x62\xcb\x6f\x8a\x52\xc5\x21\xd1\x14\xa5\x4a\x86\xa7\xe6\x94\x32\x6c\xb8\x61\x82\x32\xa0\x21\xeb\x4f\xa7\x3f\x59\x7f\x60\x52\x96\x76\x73\x8d\xb7\xe1\xc4\x69\xfc\xef\xfd\x48\xff\x0a\x19\x85\xe7\x09\xf8\x52\x50\x20\x9a\xa4\xdb\x8e\x2a\xdc\x14\x94\x5a\x3f\x77\x88\xa2\x50\x47\xf4\xbe\x26\xd9\x94\x2c\x04\x4d\xa2\x29\xc8\x97\x76\xd8\x68\xca\xae\x3a\x64\xad\x60\x57\x29\x2c\x15\xab\x6c\x13\xd6\x04\x28\x57\x53\xfd\x7c\x62\x4f\x9a\xe4\x52\xd2\x1c\xb4\x9f\x58\x5a\x89\x1d\x69\xb2\x59\x93\xf9\xb7\x1d\xb2\x66\xb0\x66\x87\xac\x19\x5c\xfb\xb2\x61\x13\x3a\xd2\x1c\x86\x8a\x4f\xbf\x9d\x8a\xc8\x63\x17\x9d\x32\x28\x71\x27\x9d\x26\x28\x04\x9e\x22\xa8\xf1\xbd\x09\xe2\x7d\x13\xc4\xb3\xcc\x2f\xf0\x00\x55\xe7\x27\x32\xa2\xa9\xfa\x7e\xea\xbe\xd4\xa6\xea\xfb\xa3\xf2\xbd\x2c\x64\x2c\xb2\xaa\xf1\x7f\xc4\x00\x09\xa7\x40\xd1\xda\xf5\xe6\xe0\xca\xb3\xcc\x49\x2c\x90\x8b\xf1\x73\xcc\x2f\x27\x1d\x4d\x7f\x97\xed\x63\x19\x9f\x30\x2b\x05\x45\xbc\x5d\x2f\x1f\xa5\x05\x51\x04\x5b\x74\x75\x7e\x8e\x8d\xcc\xde\xa0\xf3\x9a\xaa\xf3\xa7\x1c\x6a\x6d\x97\x28\xe6\x6e\x94\x11\x1c\xc4\x63\x93\xb8\x0b\xda\xaf\xa9\xce\x27\xb1\x31\xcd\x26\x6e\x8e\x8d\xf2\xcd\x63\x8d\x69\xca\x37\x4f\x2c\x4c\xbb\x5d\x1d\x3f\xfd\xdd\x5e\x21\xfe\xd7\x96\xe3\xd8\xdd\x16\xb4\xb2\x82\xb7\xb6\x58\xe3\x59\xf4\x70\x2c\x1d\x23\x8b\x64\xa7\xfc\xf4\xa9\xb1\x5d\xdb\xed\x15\xe4\xd9\x2b\x98\x67\xc7\xc8\xc2\x56\x1c\x23\x1b\x43\x44\x93\xd5\x9c\xf0\xab\x26\xd8\x0a\x9a\x5c\x7b\x94\x8a\x97\xf9\x7f\x4c\x6f\xe6\xcf\x31\xb2\x85\xf7\x4d\xef\x5f\x8a\x13\xd4\xe6\x00\x5a\xe4\x24\xe5\x91\xd9\x88\xdd\x6a\x8e\xa0\x85\xa3\x3c\xde\xcf\xf4\x7e\xdb\xb1\x48\x0b\x66\x31\xff\x1a\xe8\x93\x93\x05\x64\x7c\x7d\x32\x8f\xf9\xfc\xf0\xa6\xfc\xe9\xf9\xc1\xa1\xe2\x0b\x6d\x08\xd1\x86\xb7\xbb\x4b\xfc\x6e\xf8\x45\xfa\xec\xa2\x05\x39\x57\x5d\x05\xff\xc9\xf0\xdc\xe7\xf5\xbf\xff\x2d\xa4\x94\xe8\xb3\xe2\x1f\x06\xcf\x72\x3f\x35\xbe\x97\xb8\xfe\xf9\xbe\xeb\xfb\x0c\x5a\xe5\xfd\xd7\xc6\xb3\xab\xb5\x0c\x1a\x50\x60\x67\xa7\x03\x05\xb3\x76\xfe\xbf\x7d\x5d\x6d\xf9\x41\x56\xc1\x70\xa2\xae\x82\xff\x6b\x2e\xe4\xbe\xd8\x90\x9b\x11\x2d\xaf\x44\x94\x16\x55\xe1\x7f\x0d\x2b\xe8\xaa\xf0\xbf\x66\x23\x75\x4b\xe7\x39\xf9\x5d\x15\xfd\x49\xeb\xd0\x17\x85\xaa\x42\xc1\xa2\xd0\xce\xce\xfb\xa6\x60\xcd\xb3\x72\x4a\x0f\x9e\x45\x40\x58\x53\x5f\x65\x88\x65\xc0\x0e\xb6\xa5\xbf\x55\xe3\xcd\x41\xec\xaf\x10\x1f\x89\xa3\x2b\xd8\xf6\x63\x8c\xef\xaa\x73\xba\x30\xa7\xab\x29\xa0\x47\x2d\xca\xe0\x7d\x51\xd0\x78\x96\xa1\x99\x19\x72\xb0\x2d\x33\xb2\x1a\x1c\x14\x31\xba\x6f\x8a\x46\xa5\x41\x19\xd3\xf1\x80\x75\x1b\xd3\x3b\xff\xcb\x98\xce\x9a\x6d\x26\x39\x1d\xda\x96\x1e\xa5\xb0\x3b\x1a\x97\x29\xde\xec\x50\x5a\x79\xc1\x14\x33\x20\x85\xab\x72\xba\x94\xe9\xbe\x4f\xd1\x0a\xbb\xe3\x71\x1b\x3d\x9a\xe4\x4c\xd9\xa6\x45\x0c\x77\xed\xca\x6a\xb3\x7e\x28\xf0\x2e\x0c\x05\x8e\xc7\xe5\x7d\xe1\x5a\xc8\x25\xd2\x8b\x28\x66\x53\x08\xd7\x42\xb2\x92\x5e\x8a\xbd\x03\x19\x80\x34\x8d\x8d\x08\xe6\x5e\x0c\xeb\xc8\x95\xdc\x55\x09\xaa\x81\x85\xe9\x55\xf6\x76\xc6\xe4\x80\xd7\xdc\x38\xbd\xc9\x5c\xce\x24\x35\x99\xcb\x39\xcb\x4d\x01\x82\x9c\x55\x07\xbc\x72\xd2\x9a\xac\xe3\x6c\x93\xa6\x68\xc9\x70\xe8\xee\x80\x57\x78\x41\xb3\x7f\x20\xe3\x51\xdd\x52\xac\x09\xdd\xf1\xad\xac\x81\xe3\x5b\x99\xc3\xa6\x00\x41\x56\x5d\xc9\xe6\xc9\xd3\xd9\x95\x6c\x9e\xfc\x3c\xbd\x0b\x4b\x14\x53\x74\xef\x0a\x88\xa4\x3f\x87\xbb\x7e\xde\x7f\xe5\x42\x1a\x14\xb8\x88\x73\xd2\x45\x30\x8b\xe6\xf8\xd7\x5c\x51\xfd\x2d\xec\xc4\xae\xea\xa2\x98\xa3\xeb\x00\x58\x8e\x7e\xd7\x0c\xf4\x3f\xc5\x83\xf6\xae\xe9\xe1\xd4\x75\x2d\x67\x44\x96\xee\xe0\xd7\xc8\x9c\xdd\xc1\xaf\x6c\xb9\xe1\xe5\xcd\x72\x0d\x91\xcf\x99\x50\xee\x7a\xa2\x5c\xba\xca\x48\xe1\xe6\xee\x2a\x23\x45\x9e\x91\x3e\x9c\x47\x04\xbe\x33\x4c\x0d\x03\xd2\x80\xd9\xc2\x43\xfe\x1d\xf6\xb8\x72\xd3\x93\x43\xb0\xef\x5e\xbf\xfc\xef\x80\x56\xf6\x8f\x03\x5a\xd9\x8f\xbb\xb0\x61\xb9\x63\xbb\x03\x5a\x3f\xed\x29\x79\x0d\x61\x5a\xdd\x11\xad\x1c\x08\x47\xb4\xb2\x3c\xbb\x96\x8b\x0d\xa3\xd2\xa9\x24\x4f\xeb\x8e\x68\x8d\x5a\xd0\x77\x13\x48\x87\x26\x90\xfe\xb4\x61\x23\xc4\xf6\xdd\x1b\x36\x13\x72\x28\x82\x97\xf6\x0f\x11\xcc\x01\x38\xbc\x62\x69\xef\x30\xd3\x48\x7f\x3f\x2d\xa2\xa3\x69\x75\x27\xc6\x67\x47\xd8\xba\x9d\xea\xf6\xb5\x2b\x44\xb6\xe0\x59\xe8\xc7\x2b\x10\xa4\x89\x37\x1f\x0d\x63\x3e\xed\x50\x62\x15\x4f\x6f\x93\xac\xc2\x69\xf5\x8e\x4e\x7e\xa2\x7e\x27\xe3\x6f\x57\xd4\x2b\x10\xe7\xae\xa8\x57\x82\xd9\xba\xa2\x5e\xb1\xb1\xf4\x53\x28\x5c\xf0\xe3\xfd\xa7\x1b\xac\x18\x59\xba\xc3\x5e\xb9\x2d\x14\xf6\x8a\x91\xa4\x2b\xec\x95\xe0\xaa\x2e\x88\x0b\x59\xa2\xfb\x4f\x17\xe8\x44\xfb\x75\x45\xb9\x12\x8d\xd7\x1d\xe5\xca\xb2\x5c\x9a\xe6\x18\x9d\xfa\x55\x64\x30\xe4\x7d\x85\x48\xb2\x8d\x7e\xaa\xc1\x0a\xe8\xb2\xff\x34\x83\x15\x50\x66\x57\x94\x2b\x46\xa2\xee\xa8\x56\x66\xf4\x92\x41\x32\x46\xa6\xae\xec\xf4\xe4\xa5\xea\xb7\x8c\xbc\xdc\xae\x8a\x51\xc5\x88\xd4\x6f\x21\x0e\xe1\x73\x02\xb3\xd4\xcf\xff\x1a\x1f\xf3\xa3\x90\x54\x92\x52\xf7\x9f\xa4\xdf\x89\x96\xec\xb7\x9c\x9a\x30\x82\x5b\x2e\x3f\xce\xe5\xed\xf1\xd3\xde\xad\xf6\xf9\xfe\x51\xfb\x79\x7e\x64\x60\x85\x51\x3d\xa2\x07\xc6\xf3\x78\x3d\x42\xaf\x43\x56\xb9\x07\x1e\xad\x07\xfb\xe1\xd1\x7a\x20\x7d\x38\x64\x15\xc6\xf7\x08\x51\xc9\xb1\x79\x4c\x2f\xfd\x69\x03\xb2\x21\x95\xab\x9e\xf8\xbf\xae\x5c\xf5\x40\xf6\xba\x72\xd5\x93\x1a\xbe\x3f\x97\x9e\xff\xcd\xef\x90\xe8\x4e\x89\xe4\x3a\x5e\xd1\x3d\xba\xcf\x90\xe8\xde\x48\x64\x3e\x26\xe3\x33\x0a\x6f\x68\x0d\x73\x37\x8d\xc9\x7b\x6e\xe4\x59\x6b\xba\xf0\xbf\x68\x8c\x88\x36\x26\xa1\x46\x23\x94\x0e\x67\xc4\x99\xa6\xfe\x97\xab\x66\x28\xa5\x64\xcd\x8c\x0e\xe5\xae\xaf\x33\xbd\xd9\x8b\x4d\xeb\x3a\x81\x9f\xd1\x68\x07\x2c\x50\xa3\xa0\xe5\x70\xf6\xe1\xd4\xf5\xb9\x07\xc7\xac\x13\x19\x2d\x61\x28\x95\x3d\x66\xde\xe1\x54\xf6\xb9\xfa\xc6\x6c\xc6\xb7\xe5\xb9\x68\x36\x68\x4f\x2c\x67\xe6\x7d\x63\x2d\x18\xb0\xbd\x06\xe3\xf3\xc6\xee\x1a\x0c\x34\x29\xcf\x3d\xf8\x88\xb1\xb8\x8f\xbc\xb0\xf8\x54\xa4\x05\x65\x9a\xac\x20\x81\x87\xe3\x56\xc3\x46\xc6\x2a\xa4\x62\x14\xf6\xa1\xdc\xf1\x29\x00\x57\x87\xc2\x56\x49\x61\x33\x64\xba\x27\x25\xcc\x70\xd8\x6a\xe4\xbd\x21\xb9\x9f\xda\xa4\x75\x38\x6e\x35\xec\x7f\xac\x72\xe5\xc7\x22\x31\x1c\xb6\xca\xa6\x53\xf2\xf9\xe5\xf3\xbd\x1c\xe3\x9d\xe7\x4b\x1d\xf2\xfe\xed\xca\x9a\x34\x28\x0a\x99\x33\x47\xad\xb2\xef\x1d\xb5\x9a\xfb\x71\x6c\xa2\x78\xe3\x79\xf5\xa6\xcc\x14\x6d\x26\xb9\xe4\x59\x24\x6f\x3c\xbb\xb6\x7c\xe3\x07\xc5\x1a\x7f\x5a\x34\x49\x59\x94\x4d\x24\x31\x62\xc5\xc1\x52\x7f\x67\x6c\x5e\xa3\xb4\x57\x34\xe2\xdc\xc0\xa3\x78\x8d\xd2\x7e\x91\xfb\x8c\x63\x5a\x04\x56\x60\x06\x5e\xb1\x3d\x1a\xf7\x50\x5e\x1d\xac\x2a\xa3\x68\x8d\xa2\xf6\x0f\x25\xb8\x04\x56\x34\x14\x38\xbb\x7c\xbe\x37\x81\x19\x70\x39\x34\x00\xde\x37\x81\x0c\x40\x60\x86\x42\x7f\x0a\x34\x2e\x7c\x2f\x82\xa3\x28\x8d\xea\x4d\x99\x25\xab\x2f\xab\x0a\xc5\xd5\x6b\x16\x8a\xab\x67\x20\x33\xe4\x22\x58\x13\xbc\xa2\x7a\x9b\xd2\x80\xe0\x1a\x2b\xcf\xcd\x32\x48\x48\x50\xba\xfa\xca\x94\x54\x4d\x01\xcc\x52\xe9\xeb\x49\x7d\x34\xaa\xa7\x20\x53\xa4\xc8\x5b\xd2\xe8\x0c\x55\xac\xad\x6c\xfb\x6a\x66\xc4\xff\x9a\x82\x48\x71\xa3\x99\x19\xa5\x7f\x65\xb3\x27\xd9\xda\x68\xce\xc8\xc7\x9c\xbf\x18\x9b\xc2\x17\xde\xb6\x3c\x17\x8d\x20\x3d\x2a\x30\x17\xcc\xee\x10\xe6\xa6\x32\xa7\xc6\xdc\x44\xc4\x1a\x4d\x88\x96\xc2\x08\x34\x03\x2c\x62\xd3\x2e\xe7\x72\xe8\x2e\x4b\x31\xf8\x61\x51\x07\x19\xf1\x4f\xd3\x19\x98\x34\x86\x2b\xd6\x4e\x11\x01\x46\x17\x22\x05\xde\xd2\xcd\x0e\xe3\xf8\x1d\x5d\x8e\xbc\x80\x66\x46\xbf\xf5\x9c\x1e\x84\x91\xc1\xc0\x3d\x86\xdc\x92\x7f\xcb\x74\x33\x86\x02\x0e\x98\xf1\x61\x08\x10\x8d\xa9\x3e\x00\xf4\xfe\x34\x93\x01\x7c\x72\x0c\x05\x3a\xc3\x05\x86\xf1\x96\xb0\x01\x01\x68\x00\xf7\x8d\xb1\xeb\x03\x1a\x54\xa4\x73\x24\x90\xf1\xd3\x5c\x36\xe2\xd7\xc6\x10\xb5\x6c\x41\x05\xd7\xf6\x89\xeb\xe3\x05\xd8\x64\xc4\x06\xd8\xb0\x03\x04\xa2\xdf\xc8\x05\x3b\x76\x95\xf8\xe7\xbe\xde\xe5\xa7\x5d\x79\x96\xa3\x16\x46\xb3\x0b\x54\x1d\x19\x68\xec\x22\xf9\xd3\x9e\x01\x3a\x0c\x40\x14\xc7\xbe\x3f\x76\x53\xcc\xf7\xa6\x98\xef\x15\xbe\xce\x0d\xaa\xf0\x5b\xd0\x1a\x43\x68\x1d\xc2\x27\x87\x2a\xe6\x92\x4c\x6b\x1c\x9a\x00\x6e\xfc\xc3\x08\xa3\xd0\x73\xd8\x58\x09\xa3\x3a\xbc\xe6\x7c\xa0\x60\xe3\x08\x95\xe3\xf0\x04\x64\x8d\x55\x60\x17\xfc\xe6\x50\x81\x5d\xa2\x18\xc7\x61\x82\x43\xd0\x61\x02\x79\xdf\x04\xd2\xbf\x36\x74\x1c\x10\xe3\xd0\x12\xaf\xf4\x67\x02\x33\x21\x82\xe4\xd4\x8f\x4c\xa2\x50\x5e\x62\x54\xc7\x29\x58\x00\x6c\xe9\xf4\x0a\xa7\x83\xd3\x2b\x9c\x01\x9c\x22\x88\x43\x7e\x8a\x80\x48\xb5\xe3\xd4\x8a\x71\x08\x4e\x13\xc4\xf7\xda\xa3\xc8\x50\xa7\x57\x8c\xf1\xf8\x84\x32\x1e\x11\xc4\x4d\x72\xa9\x70\x37\x3c\xe3\x7a\xeb\x7f\xf2\x82\x08\x88\x58\x3f\x2e\x13\x90\x19\x55\x5e\xce\xf2\xd9\x03\xf2\x91\xf4\x29\x82\xf4\x50\x8d\x5d\xbc\x5a\xe3\x7e\x4d\xd8\x59\x34\xf9\x2c\x26\x72\x8b\x0e\xc5\xd8\x4e\xe4\xea\x1c\xb7\x11\x5b\x83\x36\x14\x6c\x44\xf6\xcf\x21\x54\xcf\x44\x4c\xde\xb8\x95\x44\x00\xb1\xc6\x8e\x0b\x4a\x28\x0c\xa1\x7a\x26\x92\xd0\x0e\xb9\x2a\x26\xd2\xc6\x8f\x5b\xc1\xe7\xec\x76\xe5\xf3\x9c\x48\x31\x3a\xe4\x8c\x98\x48\x52\x3a\x1e\x53\x82\x88\xfc\x28\xba\x9c\x03\xf9\x98\x32\x4e\xe4\x63\x42\x60\xa1\xcf\x4b\x48\xc6\xf9\x38\x49\x00\x42\xbc\xbc\x0c\x9f\x8a\x95\x43\xc8\xff\x4a\xa0\xc2\x78\x4c\x1a\xbb\xe8\x31\x69\x6c\x83\x47\xa4\x21\xf1\x3c\x26\x6d\xe2\x8b\xc7\x3f\xfc\x1b\xc6\x3e\x19\x87\x17\xde\xb3\x4f\xc2\xe1\x85\xbb\xee\x93\x02\xeb\xc3\x9e\x77\xfb\x21\x00\x11\xed\x93\x69\x5f\xf8\x41\x11\x64\x39\x3b\xfb\xe4\x08\xb2\x1c\x96\x7d\xf2\x5c\xe4\xbe\xd9\xa7\x6e\xc2\x6a\x7e\x18\x7e\x83\x51\x28\x63\x42\x78\xf6\x3e\x19\x2e\x5d\xda\x5f\xae\xa0\xdd\x21\x04\x14\x19\xdc\xe5\x2a\x99\x28\xaf\xb5\x4f\x9e\x97\x5c\x22\xfb\xac\x69\xc8\xf9\xd8\x67\xaf\x78\xcb\xb3\xa9\xce\x25\xb1\xcf\xef\x5e\x4e\x93\xb3\xb7\x40\x8e\xdc\x3e\xbf\xe8\x43\xfa\x30\xd9\x61\x5b\xfb\xac\x1c\x0b\x8d\x67\xa3\x37\x36\xbe\xf0\x0e\x98\xf8\xc1\xc1\x11\x59\xe0\x7d\x36\x65\x13\x03\x15\x12\xb3\x41\x88\x32\x93\x44\x68\xde\x15\x6c\x30\x91\xc4\x79\x5f\xbc\x01\xd2\xc5\xe2\x4c\x0a\xa1\x4b\x00\xa8\x89\x10\xa9\x7d\x79\xf7\x7a\xc6\xb0\x78\x7d\x27\x3e\x31\x60\x11\x42\x15\xd9\x3b\xf0\xf3\xec\x2a\xff\x5b\x6a\x67\x14\x4a\x47\x42\xce\x96\x7d\x79\x13\x11\xa7\xdb\xd5\xa1\x6b\x6c\x1a\x85\xdf\x16\xee\xed\x7d\xdd\xfc\x06\x3f\xfc\x76\x26\x00\xef\x7d\x35\xfc\x33\xa3\x58\x85\xa3\x64\x57\xac\xbb\x9e\x79\xdf\xe8\x4f\x76\xc9\x6a\xa0\x65\xd8\xe6\xbe\x2a\xe1\x02\x87\x63\x35\x1a\x34\x47\x76\x5f\x8d\xb3\x0c\x63\xd8\x37\xcf\x3f\x9d\x28\xc3\xff\x8c\x34\xb1\x6f\xaf\xef\x33\x8d\x6e\xc2\x8b\xe6\xd4\xef\x9b\xa3\xe2\x38\xa3\xd2\xa4\x66\x90\x5a\xbb\xea\x7c\x51\x2e\x7a\xdf\x44\xf8\x67\x10\xc3\xc3\xe4\x85\x43\x2f\xd0\x80\x33\x61\x33\x35\x9b\xe9\xc8\xfd\xb0\x17\xa3\x5a\xd9\xee\xe5\xa5\x23\x6d\x14\xa7\x7e\x86\x0e\xe1\xaf\x36\xf2\x9c\xee\xc5\x0b\xb6\xf2\x46\x31\x21\xa1\xac\x98\xb2\xf0\xc4\xbd\x38\x0b\x43\xd8\xe8\x5e\xbc\xa6\x3c\x7b\x4d\xb3\x64\xc5\x90\x5e\x36\x41\x79\x17\x95\x51\x18\xd2\x0b\xad\xc5\x8b\xb8\xd2\xa6\x32\x81\xb0\x0d\xea\x4b\x3b\x3f\xcc\x7a\x21\x4d\x56\x65\xd1\xc8\x9d\xb4\x2b\x56\xa1\x83\x39\xd9\xeb\x4b\x79\x08\xad\xaf\x10\x4f\x93\xa6\x9c\xd9\x93\xaa\x35\xcf\x6c\x9c\xea\x53\x96\xcb\x73\xaf\x5e\x55\x8e\x4c\x7d\x69\xa7\x5b\x2d\xf3\xe7\x0b\x93\xce\xd6\xaa\xef\x32\x67\x63\x34\xa7\x51\x64\x7e\xdb\xab\x22\xa6\x0d\xd7\x1d\x20\x77\xcb\xae\xf8\xe0\x32\x7d\x7e\xb8\xff\xfb\x5f\x21\xe6\x74\x77\x34\x30\x8a\xf7\xde\x95\xd4\x22\xd2\xcf\xfe\x2f\x18\x38\x7d\x08\x87\xd5\x3f\xdb\xb1\x3b\x9f\x47\xb4\x84\xbd\xab\x70\x07\x77\x4e\x77\x41\x9c\xc2\x0f\x2e\x80\x13\xa1\x79\x77\x3a\x22\x14\x93\x5d\x6a\x52\xa5\xd6\xed\xee\x12\x5e\xa8\xc7\xbb\xb2\x0f\xcd\x84\x33\xec\xdd\xb5\x7d\x60\xd8\xdd\xc1\x68\xfd\x6f\xf7\xd4\x4f\xcf\x2a\x40\xc7\xf7\x61\xba\x23\x27\xef\xae\x21\x80\x85\x60\x1f\x2f\xdd\x19\xc1\x30\xdd\x19\xf3\x30\xdd\x1b\x5f\xbc\x11\xb3\x19\xe2\x4f\xbf\x2a\x80\xc9\xf7\x61\x63\x22\xcb\x35\x1c\xd2\x59\x68\xd3\x59\x4b\x36\xde\x50\xd6\x92\x41\x1f\xf6\x5e\xc2\xcd\xc7\x3b\x2f\x59\xd1\xe1\x25\xe7\x60\xef\x26\x3d\x2f\xec\x26\x3d\x2a\xc4\xbe\x2b\x83\x0b\x97\xe7\x4f\xc7\x2a\x84\x94\xef\xbb\x13\xb8\x14\x5a\x34\xe5\x9c\xda\xdd\x94\x17\xfa\x10\xef\x00\x80\xba\xbb\x8a\x18\xd6\x8a\xdd\xf1\xcb\x80\xca\xf7\x5d\xb0\x75\x28\xdf\x9d\xfb\x84\xf9\x76\xc9\x02\xc0\x5a\xbb\x74\xa3\x42\xce\xc7\xfd\x50\x89\x19\x28\x3f\x1c\x23\xce\x6e\x3f\x7c\xf4\xe1\xd6\x47\xd7\x17\x3c\x3b\x0f\x44\xa7\x0f\x17\x5f\xea\xf4\x71\xe8\x0b\x9a\xf4\x30\xa3\x50\xed\x0e\x63\xc6\x38\xb7\xab\x5e\x17\x49\xbf\xf7\xd3\xa3\xcc\xf4\x9f\xae\x46\x11\x0d\x65\x3f\x5d\x4f\x23\x4a\xe6\xae\x4a\x04\x0b\x5a\xe5\x7e\x5a\x51\x67\x98\x4a\x5f\x54\x50\x21\x76\x39\x83\x2a\xc6\xf8\xfd\x74\x41\x26\x76\xeb\xe9\x1c\x2d\xd0\x7e\x3a\x7a\x98\x45\x14\x36\x6c\xa1\x12\xdf\x7e\x39\x27\x0b\x1b\x41\xba\xcf\x42\x6e\xa8\xfd\xa7\xfb\x14\x44\xf1\xdd\x70\x30\x80\x33\xbb\x6b\x10\x20\xce\xef\x97\x93\xc9\x70\xae\xaf\x5d\x4d\xd0\xa9\x6a\x8d\x71\x0b\x5d\xef\xb8\x33\xbf\x8e\x6f\x88\x8e\xb1\xbf\xf1\x0d\x1c\x2a\x07\x3d\x93\xe2\x6a\xbf\x4d\x07\x8b\x78\x3b\x4b\x4e\xb4\xde\xfd\x56\x7d\xac\x68\x25\xfb\xed\x1c\x38\x2c\xda\xbf\x10\x08\xbe\xd8\xfd\x43\xe8\x70\x95\x2e\xb2\x9b\xed\x8a\x81\xa8\xb1\x7e\xed\xae\xda\x45\x9c\xde\xee\xf8\x66\x1c\xef\xfb\xe3\x0c\x37\x31\xb9\xed\x8f\x35\x45\xae\x47\xa9\x3a\xeb\x67\xdd\xdf\xc2\x5c\xb1\x43\xee\x2a\xcc\x45\xe2\x8f\xfd\xa7\xe9\x7c\x0c\xad\xbb\x14\x9d\x15\xd1\xee\x90\xda\xb2\x4e\xb9\xfc\x0e\x39\x5d\x56\x2c\x95\x87\xf4\x94\x15\x69\xe3\xf8\xe9\x29\x05\x00\xc5\x31\x15\xef\x46\x9a\x50\x76\x99\x2c\xfa\x21\x1d\xe3\x93\xed\xe1\x90\x92\xb0\x72\x10\x8f\xd9\xd5\xbe\xd2\x82\x42\x87\x57\xb6\xef\xf1\xd3\x01\x3e\xcc\xe0\x90\x0a\xb0\xa2\xc1\x1d\x92\xf0\x57\x14\x91\x63\x7e\x59\x27\x6f\x28\x2b\x0d\xce\xa0\xc3\x10\xa8\x8c\x41\x01\x0c\xb9\xe7\x0e\xc5\x2b\x90\x91\xe1\xf8\x49\xeb\x15\xe7\xcb\xb1\x08\xdb\x16\x75\xe0\x70\x79\x81\xf1\x27\xcf\xd1\x21\xb0\xd3\x36\x31\x14\xe1\x62\xc2\x83\x0f\x81\x9b\x36\x3a\x5b\x8d\xc9\xe0\x59\x3e\xfd\xf0\xf0\x43\xe0\xa7\x2d\xf7\xdd\xe1\x4a\x03\xfd\xf3\x81\x0c\xec\x50\xb7\xda\x79\x49\x03\x76\xb6\x66\xb2\x56\xb9\xb2\x22\xd7\x1e\xab\x9c\x79\x0b\x03\xb4\x2b\x8b\x67\x5b\x8f\x79\x5f\xce\x4c\xda\xb3\x8f\x23\x27\xee\xb0\x8f\x83\x05\x57\xa6\x4e\xb0\x56\x87\x5d\x1a\xd1\x1a\x0f\xd5\xdb\x05\xca\x74\x6c\xb2\x0d\x17\xda\x97\x6d\x38\x6c\xf9\xf8\xc9\xe1\x1b\x17\xe9\xb1\xc9\x4c\x54\x68\x5f\x79\x29\x0b\xef\xdb\x4c\x44\x7b\xb2\x7b\xb1\xdf\x36\x29\x7f\x8c\xb7\x28\x8d\x1e\xe3\x2d\xb6\x74\x44\x8a\x3f\x8a\xeb\x2c\xe5\xd2\x3c\x5e\x91\x7c\xa3\x89\x57\x24\xa7\x8d\x57\xd9\xc8\xa0\x24\x92\x17\x0a\x0f\x1d\x16\xc1\x99\x55\x4b\xdc\x9f\x69\x28\xa7\x2e\x7f\x9a\x74\xa9\x2c\xd6\xfd\x27\x70\x17\x0a\x12\x1c\xf5\xe5\xf1\x79\xe1\x27\x70\x17\xcc\x5b\x87\x82\x83\x57\xfe\x5e\xff\xfb\x1f\x15\x48\x8e\x2a\x63\x57\x06\x2c\x59\x1b\x1f\xc2\x21\x31\x99\x7c\xab\x47\xf5\xb6\xcf\xaa\x4a\x28\x6e\x95\x69\x6d\xb2\xc8\x87\x69\x1e\xcd\xe1\xe2\xb9\x0a\x0f\x27\xd1\xf9\x50\xdc\xac\x90\xf1\x85\xaf\x78\x9e\x05\x69\xcb\x08\x25\x42\x37\xe4\xca\x43\x4e\x02\x46\xf8\x93\xa8\x2b\xa8\x8c\xc3\x71\x0c\x61\xda\xc7\x4f\xa0\xae\x38\xe9\x8f\x6e\x29\x9e\x8d\xdf\x85\xb7\x8d\xe5\xe1\xe8\xd6\x39\x33\x5e\xc5\x35\x00\x2f\x3a\x94\x6b\x87\x8c\xac\x47\xef\x9a\x22\xfe\x1f\xc2\x04\xd2\xde\xae\xe7\x0c\x50\x89\x75\xa6\xcf\xf3\xa3\xe7\x70\x96\x17\xde\x94\xf6\x95\xcb\x9f\x20\xda\x63\xc8\x5f\x1b\x45\xf1\x50\xd0\x2d\x51\xbc\xc7\x90\x8f\xf8\xf3\x2c\x94\xc6\xe7\x7b\x31\x12\xf6\xfd\xb0\xd3\x25\xf4\xba\x00\x2d\x59\x1e\x0e\xe7\xcf\x24\xad\xc4\xe1\x8a\xb4\x1c\xdd\xdd\x66\x11\x86\xb4\xbf\xf6\x1f\xde\xb0\xc2\xc6\xed\xb0\x5b\x7d\x60\xdf\xec\x56\x8c\xe8\x54\xdb\x3e\xd7\xe0\x71\xbc\xdb\x3e\x4d\xfe\x84\xcb\x42\xfa\x9f\x43\x91\x08\xdc\xbc\x87\x44\x49\x32\x01\x1f\x2a\x88\x05\x08\xef\x38\x9a\x96\x25\x1d\x1e\x0a\xea\x67\xdf\x1e\xa7\xa6\x8d\x67\x81\x21\x98\x84\x43\xe9\x86\xe2\xc5\x3e\x94\x74\xbf\xc6\xd7\x75\xbc\x49\xf7\x39\xfa\xa7\xe7\xa0\xfc\x29\x7d\xce\xf1\x06\xba\x32\x01\xa7\x25\x5f\x8e\xae\x24\xc8\x15\xb9\xf5\x38\x0d\xf5\xcc\xe3\xa9\x09\xe1\x59\xe1\x76\x7c\x2e\xa1\x8b\xf9\xba\x94\xcc\x25\xba\xec\xa1\x40\x02\x72\xde\x1e\x97\xfc\xa3\xdc\xae\x97\xa1\xac\x79\xf4\xf4\xf2\xf9\x1b\x93\x9a\x67\x5f\xbe\xbc\xbf\x6b\xbd\xe9\x5e\x83\xcf\x76\x90\x10\xf9\xa9\x64\x74\x5c\x3e\xe6\x99\xfe\x5b\x28\xfa\xa8\x16\x87\x4d\xf0\x9f\xf1\xde\x3f\x36\x48\xb9\xf5\xe3\x5e\x75\x4c\xf9\xc0\x17\x70\x06\x7c\x57\x3d\x67\x40\x3f\x89\xb2\x11\xb1\x77\xdc\x3e\xe6\x21\xe0\x36\xd2\x16\x3e\x76\x0b\xdd\xc4\x21\x50\x02\x7b\x14\xe4\xe3\x91\xfb\x97\x0b\xde\x36\x6e\x5c\xe6\xc7\x23\xff\x6e\xa5\x01\x39\x3a\x98\xf1\xd7\x80\x9d\x49\x3a\x6d\xc0\x26\xea\xf4\x9c\xde\x3b\xad\xe5\x07\x9f\xe5\x68\x5c\xe7\xe4\x98\xce\x1c\x9b\x73\xf2\x25\x17\xf9\xf3\x94\x09\x1b\x51\xf0\x9c\x7c\xc7\xe5\x22\x3e\xa7\xae\x95\xa3\x0f\x1b\x0f\x2a\x5f\x38\xed\xd1\xe0\x0d\x6b\x04\x85\x1f\x94\x7f\x90\xa0\x93\xf3\x27\x5e\x52\x02\xe7\x14\x8c\x26\x57\xde\x29\x14\x4d\x78\xc7\xe9\x2c\x35\x11\xe4\x4f\x95\x76\xe5\xa0\x9d\xaa\x43\x45\xe9\xd4\x73\x96\x43\x8a\x47\x85\x82\xe6\xd8\x9c\xb3\xed\xaf\x34\xaf\x32\x70\x98\x91\x4f\x25\xb1\x01\x56\x75\x2a\x67\x0d\x5b\xf3\x5c\x1c\x4a\x90\xf1\x2c\xdb\xef\x39\x3b\xef\x14\x0e\x9f\x2a\x6c\xe7\x52\xf5\x7e\x96\x51\x80\x1b\xd0\xb9\xe7\xa2\x40\xdf\x48\x00\xe7\x62\x4e\x94\xf6\x57\x6f\xac\x10\xa4\x8c\x32\x15\x51\xee\x5c\x1d\xaa\x17\xb5\xe4\x5c\xed\xb2\x4b\x8f\x16\x3e\xe7\x3c\xbe\xc9\x19\x69\xa0\x6a\x06\x79\xdf\xc0\x7b\x86\xb8\xf6\xdf\x8a\xf0\xbf\xb4\x5b\xfc\x37\xe7\xfa\x5e\xda\x8c\xf1\xf8\xb5\x98\xbd\x7c\xae\xc2\x67\x82\xc9\x39\x57\x97\xf4\xc8\xe3\xa3\xf7\xf3\xf7\x26\x2c\x03\x8f\x42\xd6\x65\x86\x7f\xb2\xe9\xfc\x99\x00\x65\x73\x24\x6b\xfb\xb9\xa9\x60\x69\x78\xdf\x29\x9b\x6f\xc5\x8e\x7f\x6e\x0a\xff\xfd\x34\xe8\xf8\xdd\x10\x28\x0b\xef\x67\x89\x8a\x0a\xa8\x32\x61\x45\x15\x53\x19\x9f\x24\xc5\x89\x2d\x23\xb9\x90\x3b\xfe\x2c\xdd\x89\x9d\xf8\x41\x5e\x9f\x89\x06\x76\xcf\x78\x26\x50\x82\xe3\xc4\xa6\x74\x09\x58\x26\x58\x79\xe5\x59\x61\x8b\x91\xcb\x9f\x74\x9b\x53\xd8\x18\xd0\xb4\xa7\xea\xbd\x92\x07\xf7\x54\xbd\xd7\x35\x57\xdf\x59\x15\x9c\x1c\x2b\xd9\x29\xeb\x2b\x78\xac\xb3\x2a\x38\x98\x03\x29\xa1\x92\xb4\x21\x67\x55\xb0\x72\x84\xe4\xb3\x2a\x38\x18\x96\xa3\xc0\xdb\x4f\xa8\xe8\xf9\x93\x3a\x3f\x25\xb6\x4e\xa5\x94\x47\x52\x3f\x55\x2f\x76\xcd\x5d\x76\x0a\xd9\x02\xbc\xea\x6c\x4a\x3c\xc6\x00\x9a\x13\x2a\xd2\x9e\xcd\x4e\x8c\x40\x42\x2b\xac\xf9\x6c\x0a\xbf\x5e\xf8\x5f\x1b\x88\x44\x23\x67\x33\x89\x8c\x40\x24\xc2\x88\xdb\x9b\x5f\x37\xcf\xb6\x81\xf0\xfe\xe3\x8c\xca\xf9\xc1\x62\x2b\x73\x28\xb1\x15\x29\xee\x94\x19\x98\x3a\x6c\xa7\xa4\x56\x20\x6b\xa7\xa4\xd6\x75\xe1\x7f\x09\xfa\x2b\xcf\xa6\x90\xf6\xb5\xa6\x91\x1a\xcf\x9f\xd4\x5a\x51\x37\xcf\xee\x35\xa3\x7d\xf1\x74\xee\x22\xd9\x83\xc1\x77\x9d\x8a\xc6\x25\xc9\xc5\xd9\xbd\x84\x59\x82\xe1\x25\xcc\x04\x0d\x2f\x59\xf6\xc4\x58\xc5\x74\xd3\xbf\xd3\x49\x72\xc2\x86\xf7\x28\xef\x9b\x1e\xfe\xd7\x9e\x84\xa1\x0c\x07\xcc\x67\xbc\x43\x01\xeb\x9f\x67\x5d\x5a\xec\xf1\xa1\x00\x7a\xe6\x6b\xe8\x12\x60\x0b\xca\x8a\xfb\x71\x2e\x9e\x12\x9b\x0b\x65\xa5\xce\xdd\x02\x02\x53\xea\x92\xb1\x11\x59\x4e\x97\x8c\x85\xcf\xab\x64\x2c\xf0\xee\x73\x97\xa1\x92\x53\xb0\x5b\xb3\x61\x4e\x54\x33\x16\x91\xf4\x3c\xde\x20\xf9\x3c\x4b\xa3\x25\xbb\xcd\x79\x38\x90\x8e\x0f\x14\xd1\xcc\xa2\x48\x46\x06\x1e\x7b\x2a\x3a\x97\x8a\x27\xa7\xa2\x73\x81\x86\x9e\x86\xdd\x77\xda\xd3\xa6\x89\x89\xe7\x54\xca\x18\x00\xcb\xa7\x33\x4c\x72\x4d\x38\x3f\x0c\x5c\xf0\x34\x41\x3c\x8b\xa0\x28\x9b\xa7\x82\x75\x01\x7c\x9f\x0a\xd6\x05\xf0\x7e\x2a\x58\x17\xc0\xf6\x69\x08\x7f\x54\x9b\x53\xc1\xba\xd8\x93\xce\x53\xf4\xb1\xc8\x92\xb1\x3f\xd7\x9c\x44\x6c\x00\xda\xe7\xf9\x06\xf5\x65\x42\x4f\x13\x94\x09\x51\x34\x2f\xba\xd5\xa9\x5c\x33\x15\xe8\xea\xa9\x9a\xb1\x78\x20\x4e\x49\xdd\xd4\x88\x39\x55\x33\xf6\x73\xb7\x5f\xa2\x98\x63\xac\x70\x5e\x20\xf5\xe7\xa5\x15\x44\xb6\x30\x76\x25\xee\xd0\xd3\xe1\xbd\x08\x3f\x12\xcb\x81\xf4\x9f\xd7\xd0\xf7\xbc\xaf\xf0\x4e\x56\xc4\x25\x66\x07\xfd\x7b\xcf\xf2\xbd\x8f\xc5\x9f\x32\xe5\x9c\x96\xe1\x39\x73\x97\xd3\x03\x21\x49\xdd\x4e\x33\x9d\x17\x6e\x7b\x14\x42\xdd\xed\x33\x16\x6a\x6e\x4b\x82\x3c\x1b\xa5\x4a\x7b\xde\xbf\x59\x3f\x19\x85\xc9\xe1\x75\xde\xa2\x1e\x26\x74\x5b\x24\xff\xbc\x70\x88\x0b\xd1\xc1\xa9\x67\x3e\x30\xf9\x59\x8e\xdb\x5a\x0a\xdf\x7b\x83\x67\x79\x7f\x3a\xc1\x42\x5a\x8e\xf3\xf1\x06\xcf\xfb\x8f\x97\x3b\x04\x3f\x3e\xb0\x59\x0e\xc5\xfa\x02\xc7\x3b\x1f\x13\x90\x03\xe2\x60\x5b\x72\xb8\x5c\x2e\x48\x9b\xf5\xba\x7e\x1a\x42\x43\x10\xb9\x5c\x90\x76\xca\x11\xb8\x7e\x0a\x42\xc3\x3a\x71\x29\x05\x26\xc1\x59\x97\x4c\xc7\x1b\x01\xe5\xd7\x64\x93\x77\xb8\xd0\x35\x35\xb5\x50\xf3\xdc\xf5\x3c\xf2\x3c\x7e\xcf\x99\x83\x4b\xb9\x76\x88\xa6\xbb\xa4\x3e\x50\x62\xe7\x92\xf6\xc0\x55\x7b\x4d\x32\x49\xcd\x90\xa4\x34\x1d\x0b\xfd\x3d\xea\x2f\xe3\x51\xd9\x5a\xec\xe7\x97\x92\x60\x62\x02\xbb\x94\x04\x93\xe8\xaa\x4b\x91\xbf\xb8\x5d\x2e\x19\xae\x81\x20\x5c\xb3\xe9\xc9\xf8\x67\xa5\x28\x18\xfc\xef\x23\x94\xf1\x4b\xbf\x00\xff\x76\x39\x27\xe6\xe0\x59\xe3\xff\x8c\x4f\xf1\xef\x61\x7a\x97\x8c\xde\x48\x7e\xd7\xb2\x88\x9e\xcc\x87\x32\x5e\x96\x29\xb2\xc5\xb5\xd8\xf2\x91\x09\x5d\xde\x15\xa2\x45\x51\x94\x5d\x7b\xd9\x30\x1e\xb6\x7e\x19\xa2\xb2\xd0\xa0\x72\x87\x7f\x46\x20\x8a\x16\x9e\x4f\x8d\x30\x14\x2d\xa2\x30\xd7\xc2\xb5\x78\x85\x78\x96\xb6\x17\x26\x77\xad\x66\xfb\x19\xcf\xea\x58\x2d\x9e\x6d\x8a\xc8\x8a\x39\x45\xe6\xe0\x7f\xed\xd1\xb0\xfd\x4b\xfa\x0c\x61\xc2\x97\x02\x0a\x80\x58\x5e\xab\x77\x68\xe8\x55\xb2\x79\x30\x9e\xd7\x6a\xfa\x33\xc3\x4e\xa1\x99\x6b\xe0\x5a\xbd\xa2\x3c\x2b\x06\xbe\x33\x3e\xaf\x60\xfa\xdb\xbc\x82\x19\x8f\x60\x2e\xc8\xf6\xd7\xa6\x1d\x18\xb6\x77\x6d\x8e\xa1\x8f\xf0\x72\xd9\xac\x8c\x91\xf3\x52\xd5\xda\x8d\x11\x2a\xdb\xfb\x1a\xbe\x70\x29\x43\x25\xd2\xda\x25\xed\xa1\x62\x07\xb8\x8a\xed\x2b\x2b\x3f\xdc\x6a\x91\x16\xbc\x46\x19\x73\x9d\xf4\x9c\x39\x57\x4a\xca\x8d\x5d\x2d\xab\xf3\xc6\x9e\xfa\xe9\x10\xcb\xfa\x79\x5f\x4a\x6f\x2e\xba\xab\xca\xbc\x42\xff\x55\x14\x45\x9e\xbc\x54\x15\x17\x91\xfe\xaa\xa2\x68\xfe\x53\x4e\xd0\xab\x9e\xfa\x98\xce\xc5\x32\x58\xe0\x9f\x82\xb1\x20\x1c\x5f\x0a\x20\xde\x78\x6e\x26\x96\x67\x69\xd8\xdc\x5c\x97\xa1\xf3\xe4\xa9\xbb\x9a\x74\x7e\xb6\x9c\x42\x8a\xf1\x68\x5e\x4d\x4c\x05\xf2\x55\x43\x77\x65\xfa\x9a\xd2\x09\xb0\x45\x9b\xc9\xa7\xc3\x5d\xdf\x33\xa2\x43\xed\xd3\xde\xa9\x11\x67\xc1\x15\x62\x8c\x37\xee\x52\x88\x31\x29\xe5\xae\x66\x8a\xf3\xbf\x42\x8c\x71\x9f\x5e\xaf\x95\x3c\x82\xca\xa5\x92\xba\xdb\xe7\x59\xe6\xb4\xa8\x58\x57\x97\x49\x01\x26\xd4\xbd\xfe\x59\xdf\xae\x09\x88\x3e\x73\x75\x4f\x00\xdf\x7b\x02\x42\x80\xad\xe8\x2c\x99\xad\xe8\x9f\xef\x3d\x01\xb4\xef\x25\x87\x20\x2f\x39\xed\x2b\xe7\x2a\x5c\xdf\xe8\x14\x8c\x4c\xd7\xf0\x0c\x64\xc6\x65\x86\xdf\x38\x42\xc3\xf6\x44\xfe\x97\xd5\x87\x23\xa8\x28\x63\x14\x92\x6b\x68\x02\x58\x31\x29\x28\x9f\xc4\xbc\xd7\xf0\x09\xe0\x03\x9f\x80\x50\x30\xde\x8a\x0d\x21\xe1\x4d\xef\x03\xdf\xdc\xed\xc6\x65\x9f\xaa\x52\x2d\xb6\xbb\xeb\xa7\x71\xf4\xcf\x55\xbc\xcb\xf5\xc0\xd5\xf1\xd3\x30\x16\xb2\x2b\x5e\x8a\xe3\x25\x07\xe4\x75\xbc\xbb\x80\x1f\x16\xbd\x90\x06\x7e\x0a\x45\xff\x70\x7e\x05\xee\x7e\xee\x2a\x05\xee\x02\xd7\xbb\x7e\x0a\xc5\x27\x3c\xe3\xfa\x29\x14\x0b\x28\xc4\xcb\xa5\x6e\xc9\x11\x71\x1d\xb2\x8d\xc1\x46\x0e\x51\xc4\x36\x3b\x94\x55\x1f\xf9\x46\x56\x7a\x6c\x81\x97\x4a\xe3\x02\xe8\xb9\x0e\x51\xc8\xa4\xff\x34\x8e\xfe\x61\xcd\xaa\x8c\xfb\x99\x51\x05\x05\xe3\xac\xba\x94\xa5\x1e\xd4\xd8\xf5\xd3\x28\x16\xfc\x7b\xd7\x4f\xa3\x58\x3e\x7c\x41\x31\xc1\xd3\xe7\xfd\xa1\xf6\xe9\x4f\xf4\xb1\x6d\x7f\x1a\xc6\x42\x3a\xcb\xeb\xa7\x60\x2c\x14\xde\xba\x64\xc4\x9f\x38\xc7\xa7\x9c\x47\x9c\x7b\x85\x04\x7f\x8e\xed\x4f\x9f\x58\xc8\xaf\x79\x5d\x5a\x40\xf8\x8e\x42\x82\x3f\x5b\x4a\x21\xc1\x00\x03\x2e\x15\xc2\x9d\x98\x2f\x85\x04\x13\x56\x7d\xa9\x10\xee\xc4\x31\xbc\xb4\xa0\x70\xd2\x4b\x79\x1e\xb9\xda\x2e\xed\x50\xd6\xe3\xd2\x7a\x72\x4c\x2f\xef\x48\xfa\x13\x7d\x9c\x3a\xd5\xb9\x05\x82\x77\xdd\xa2\x0f\x61\xec\xd6\xfa\xf1\xfd\x2d\xfa\xe0\x6b\xb7\xd6\x93\x8b\x54\x65\x6e\xf1\xd7\x5e\xb7\xd6\x73\xfd\x53\x4a\xb6\xeb\x36\xb1\x59\x3c\xc5\x17\x7f\x24\xdb\xdb\xc4\x66\x71\x6e\x2d\xee\xa7\x33\x2d\x2e\x9b\xfb\xf6\xe6\x85\x58\x4d\x06\x77\xe0\x6d\xa6\x9d\xe7\xc7\x8b\x9d\xc9\x7f\x34\x19\x4c\xe6\xe3\xcd\x9c\xf1\x3d\x4a\x8c\x80\xe4\xa9\x78\xe3\xe9\xd3\x9e\x37\x37\xcf\x5a\x6c\x4e\xe7\xa3\xcd\xcd\xe6\x50\x12\x4f\x10\xbf\xd7\x23\x7a\x39\x4c\x8f\x37\x33\xdf\x0b\x92\x00\x37\x51\x7c\xf1\x87\xbb\x08\xb2\xdf\xb1\xeb\xde\x93\x57\xbb\xe6\xf9\x4d\xb8\xc7\x0b\xbf\xe5\xc5\xf5\x70\x4f\x96\x85\xb3\x9f\xef\x49\x24\x4d\xb4\x60\x40\x66\x0e\xd0\x3d\xbd\x46\x95\x34\x31\xdb\x16\xb8\xf1\x43\xf7\x0f\xf9\x64\x56\x58\x75\xf8\xf2\x3d\x8b\xec\xec\xd1\x7b\x56\x58\x75\xee\xde\x7b\x16\xd9\x71\xa0\xdc\x4e\xdc\x59\x69\x4f\xc8\x8b\xec\xd1\x7b\x51\x58\x7c\x14\x90\x7b\x99\xf5\x9c\x01\xfd\x14\x80\x5e\x1b\xef\x2b\x4c\x3e\xb2\xc0\xfd\x53\x08\x56\x4c\x71\xf7\xa2\x10\xeb\x5c\xd5\xf7\x22\x87\x31\xe3\x59\xe4\x30\x6e\x7c\xaf\x30\xf2\x38\x44\xee\xc5\xa8\xc8\xcf\x00\x9d\xc8\xe0\xd3\x82\xb0\x27\xb9\x3b\x6f\x7b\x2c\x0a\xcf\xa2\x38\xc6\xca\x5b\xa9\x3e\xf1\x9d\xde\x8b\x5d\x67\xe9\xd1\x1e\x8e\xe8\x98\xf7\xaa\x30\xea\x78\x7c\xee\x55\x61\xd4\xac\xc8\xaa\x6d\x10\x48\xc4\xbd\x7a\x06\x78\xdf\x2e\xf0\xec\x0a\x63\x69\x1a\xdf\x0b\x4b\x53\xf8\x5f\xf4\x30\x7e\x63\x65\xe2\xbd\xb8\x8d\x95\x61\x86\xe5\x9d\x00\x9a\x7a\xcb\x3d\x01\x76\xf5\xde\xb4\x42\x6c\xd3\x4d\xe3\x8b\xdd\xe2\xde\xe4\xd2\x67\xc7\x6c\x1a\x5f\x6e\xb9\x5b\xd1\xc0\xcb\xe7\xd9\xe3\x0b\x7d\x9b\xe7\x97\xef\x3d\x5e\xfe\x57\xed\x26\x02\x09\xef\xe2\x48\x7e\x56\xac\x78\xc4\xbc\xa0\x3d\x16\x95\xf0\x2e\x9a\xe1\x58\x0e\x6f\xc5\x07\x63\xfe\xbd\x8b\x28\x88\xdd\xe9\x2e\xde\x63\x99\x81\xf2\xba\x83\x69\x40\x4b\xf2\x19\xc0\x70\x4e\x13\x5e\x50\xa8\x7e\x94\xaa\xbb\xf8\x54\x31\x42\x9d\xaa\xca\xfb\xf2\xcf\x17\x46\xec\x3d\xc6\xb3\xf6\x18\x6b\x5e\xb5\x66\xac\x41\xf5\x1e\xcb\x1e\xaa\x9a\x01\xfa\xab\x5e\xc3\xcc\xb1\xca\x5f\xd5\xc6\xff\x9a\x81\xc6\xf7\x4a\x64\x10\xa5\xf4\xae\x4a\x4e\xc1\x21\xaa\x3e\x65\x7f\xba\x69\xee\x2a\x96\x13\x3b\xd0\x5d\xb5\x01\x3e\xcf\x5a\x70\x88\x57\xb6\x7d\x42\x87\xef\x66\xe2\x32\xdb\x42\xed\x2c\x9f\x67\x1f\xa0\x0c\xb6\x59\x8e\xe3\xff\x6a\x7d\x87\x17\xcc\x33\x78\x41\xd4\xc4\xb2\x7b\x2b\xbb\x7e\x8d\x9d\xf2\x6e\xaf\xbe\x99\x1f\x8c\xa2\x41\x92\xbb\xbb\x5a\x80\xeb\x75\x73\x59\x9e\x0f\xbb\xcc\x42\x93\x22\x77\xd1\x71\x6f\x45\xee\xa2\xd4\xdd\x5d\xe1\xd0\x11\x0d\xef\x61\x80\x46\x86\xac\x82\x55\x68\x18\xb7\x93\xd7\x43\x92\x82\x6f\xd1\x60\x6f\x27\xaf\xe7\x08\x28\xf6\x16\x25\xf3\x1e\x2e\xb2\x18\x43\xd0\x6d\x60\xcd\xe0\x03\xd5\x2f\xe3\x8c\x0c\xf9\xfb\x59\x44\x05\xe3\xe2\x17\xbe\x87\x09\xc8\xb3\x62\x71\x49\x36\x76\x2b\x16\x17\x15\xf9\xde\x05\xc5\x62\xc6\x76\x05\x47\x47\x96\xbd\x15\x8a\x8b\x8e\x7a\xef\x8a\xe6\x86\xcb\xaa\xec\x2d\x2a\xd8\xbd\x0b\xb1\xd7\x79\x56\xc8\x3e\x3b\x7a\x57\xbc\x3a\x6b\xbe\x6b\xfc\x2b\xe3\x33\x42\x26\xfd\x29\x94\x96\x1c\xc6\xb7\x42\x69\x01\x46\xdd\x87\x16\x84\xdb\x5e\x91\xb4\xa8\x7c\xf7\xa1\xe8\xe9\x4e\x7b\x2f\x64\x32\x03\x3c\xb4\x82\x1c\xd1\x43\x2b\x18\x79\xec\x7e\xdd\x17\x50\xa4\xd8\x5a\xa0\x5a\xf7\x21\x0a\xb9\x09\x0f\x63\xe0\xb9\x3a\x05\x0a\xfa\x1c\x72\x05\xdb\x82\xa2\xbf\x15\x6c\x8b\x1a\x7f\x2b\xd8\x16\xad\xf4\x3e\x95\x48\x22\x12\xd8\x7d\x7a\x0a\x78\xf6\x12\xf2\xac\x29\x98\x79\xf6\x14\x84\xa2\xd3\x4b\x98\x29\x55\xec\x2d\xa0\xa6\xfb\xd4\x12\xc2\xf4\x4e\x81\x2e\xa3\x05\xdf\x8a\xcd\x05\xaa\x70\x2b\x36\x17\xad\xfd\x76\x86\xa2\x40\x52\x6e\xc5\xe6\xce\x1f\x7a\x44\xff\xcc\xff\x86\xac\xf0\x2c\xfa\x23\x31\xde\x97\xb6\x40\x24\xdc\xfb\xa7\x9e\xac\x1f\x26\x7a\x69\x0b\x20\xae\xbd\xa0\x23\x9e\x4d\x7f\xe8\xfd\xa9\x27\x5b\xf9\xbc\x2f\xd0\x29\x3c\xe2\xa7\x8e\x0c\x94\xf4\x5b\x60\xf6\x4a\x79\x87\xdb\xc9\x4b\x27\xae\xde\xcb\x2e\x1e\x8e\xfd\x75\x8a\x04\xbe\x10\x72\xa1\xd1\xa6\xf3\x93\x4e\xc8\x5f\xb7\x00\x8a\x31\x4f\xde\xb7\x27\x2d\xbb\xec\x96\xab\x1e\x3e\x70\x6b\xd2\xd8\xd7\x3f\x31\x7f\x23\xda\xe9\x7e\x04\x73\xe6\x1c\xfd\xc4\xfa\x8d\x48\xbc\xfb\x27\xc6\x6f\x40\x48\xef\x47\x11\xe6\xf0\x81\x47\xf8\x97\xf1\xa7\x38\x9c\xfb\x27\xe3\x7f\xe2\xf9\xef\xa7\xab\x31\x9e\x15\xfa\xcc\x11\x32\x8a\x09\xdc\xed\xfd\x18\x9e\x19\xea\x1c\xa8\x8b\xcb\xe1\x7e\x8c\x54\x60\xf8\xb7\x86\x9f\x35\x7d\x4c\xfe\xbf\xe7\xe7\x45\x39\x65\x13\x3c\x0a\xd3\x25\x8a\xed\x51\x98\x2e\x15\x1f\x9e\x49\x11\xf8\x9f\xf7\x37\xdf\x3d\xb4\xa8\x09\x1a\x34\x50\xd5\xc0\x96\x67\xe5\x20\x18\xbc\xdf\x4d\x02\x1f\x68\x12\x1a\x2f\x08\xab\x9c\x63\xf9\xb8\x5c\x00\x6a\xf9\xf3\x46\xe1\xce\xbc\x71\xb9\xc9\x35\x3f\x68\x13\x0c\x9e\x35\x0b\xb9\x0c\x9e\x59\x51\xf8\x8d\xe7\x55\xff\xe7\xfd\xd9\x9b\x20\x1d\xfc\xd4\x98\x8d\x40\xbe\x67\x76\x52\x9d\x2c\xc3\x23\xb7\x46\x67\x1b\x3d\xb3\x56\x3a\xec\xfc\x99\x95\x58\x60\xd0\xc2\xed\x21\x87\x28\xe1\xa0\x26\xec\xe8\xcf\x4f\x71\xd9\x40\x86\x3d\x8b\x71\x25\x39\x9e\xcf\xe2\x95\xca\x20\x15\x5f\x4b\x84\xe8\xe3\xe2\x5d\x53\xe1\x05\x6f\x65\x5a\x34\xb0\x74\xa3\x4b\x2d\x55\xa3\x87\xa1\x21\x64\xa5\x7e\xaa\xca\x46\x20\xe6\xf3\xd3\x54\x36\x82\xfc\x9e\x45\x67\x73\x62\x04\x3e\x9b\xb4\xa7\x65\x69\x0c\x48\xcb\x92\x4b\xff\x59\x95\x1e\x22\xce\xa3\x67\xd5\xde\x0c\xc3\x7b\x56\x53\x1c\x02\x56\x2f\x5b\xfa\x5f\x5f\x8a\x43\x90\x0b\x19\x0c\x5e\x30\x78\x8d\xff\x45\x70\xa4\x98\x47\x71\xbc\x44\x02\x3f\xca\x85\x84\x77\xe9\x11\x12\x6b\xc2\x5d\xf5\xac\x3e\x9f\xbc\xa0\x65\xee\x34\xf8\x66\xce\xa3\x45\x9f\x4f\x9e\x15\x45\xcd\x07\x9b\xa7\x20\x24\x6e\x06\x21\x46\x3b\x7b\x14\x29\x80\xfb\xe4\x71\x31\x04\xf2\x27\x3e\x9b\x27\x39\x8b\xb4\x19\xe8\xc8\x36\x28\x2f\x0b\xe0\x07\x05\x6a\x73\x42\x8b\x71\x8e\x34\x59\x8c\x59\xe6\x88\x16\x61\x96\x19\x84\x11\x5a\x64\x77\x7f\x8a\x3d\xe5\x85\x37\x1c\xca\x5d\x69\xa2\xeb\xb2\xc9\xda\x0a\xa3\x35\x91\xb1\xfe\x29\x2a\x0d\x14\x89\xf3\x79\x9d\x2c\x9f\x61\x3b\x42\xbd\xd2\x84\xc3\x6b\x3f\x7d\x3c\xea\x23\x93\xfb\xd3\x52\x36\x92\x18\x3c\x86\x6a\x81\x56\x7c\xaa\x29\x8f\x2e\xfa\xd4\x97\x72\xde\xd8\xd4\x44\x46\xf9\x53\x4c\x36\xca\x11\x3d\xd5\x74\x36\x5a\x70\x06\x82\x48\xba\x4f\x35\xa1\x30\x9f\xea\x58\xfc\xca\xb0\x9c\x8d\x21\x1a\xe9\x53\x95\x8d\x61\xf0\xac\x68\x8c\x31\xfe\x72\x07\x3d\xd5\x93\x10\x0a\x9a\x27\x21\x93\xd4\x5e\x9a\x33\x1e\x17\xf6\x8d\x64\xfa\xb4\x77\x87\xf1\x83\xf9\x46\x6e\xa9\xa7\xbd\x44\x87\x82\xa6\xe4\x1a\x9c\x1b\x21\xbc\x0a\xd2\xfb\xd3\x76\x0d\x22\x6b\xe9\x4a\xbf\x40\x2d\x9e\x9f\x8a\xb3\x51\xb4\xe9\x69\xef\x62\x33\x4a\x67\xa4\xd8\x18\x95\xf7\x79\xc4\xc9\x47\xc1\xbf\x9f\xc3\xfc\x7a\x61\x18\x76\x7f\x29\xcf\xd4\x74\x6f\xeb\x8c\xaa\xbf\xdb\x3a\x73\xd5\xbd\xda\xb4\x60\xc2\xa3\x67\x3d\x5d\x0c\x64\xe1\x03\xaf\x7e\x14\xdf\xc7\xb1\xc0\xa4\x2b\x7d\xba\x29\xe7\xbc\x76\xaf\xfe\xc6\x1b\x26\x7d\x63\x98\xb7\x26\x2f\x73\x33\x7c\xa0\xe1\xab\xe3\x05\x2a\x87\xf4\xe1\x6d\x1c\x29\xe6\x19\xce\x3a\xc1\x9a\x0e\x93\x0a\xef\x1f\xef\x22\xf3\x49\x53\xaf\x3c\x5f\x96\x55\x68\xe2\x3d\x7e\x99\x9d\x61\x43\x09\xb2\xc3\x4f\xe7\xda\xa8\x32\xf2\xa8\x88\x70\x5f\x79\x76\x26\x06\x4e\xdb\xfe\x02\xac\xf9\x41\x19\x0b\x62\xf1\x7f\x1c\x9b\x3b\xb3\x2d\x94\x01\x89\xba\x25\xcf\xae\xf8\x98\x95\x06\x1c\x09\xc0\x91\xdf\x5f\xc0\x35\x5f\x38\xb6\x9d\x05\xd9\x1d\xd7\xcf\x81\xdd\x9d\xac\x01\x76\xe8\xf8\x8b\x99\x9d\xb5\x7b\x2a\xe0\x02\xbb\xc3\xdf\x11\x6a\x0e\x47\xfa\x73\xca\x0e\xcf\x45\xda\x3c\x3c\x17\xdc\x55\x3f\x05\x6e\xa3\x84\xf2\xa3\x54\x48\x54\xfc\x79\x0e\x27\xda\x41\x1e\x38\x3c\x15\x3c\x9b\x74\x96\xd8\x45\xca\x62\x0a\x7d\xde\x22\x65\xec\xa3\xe3\xb5\x12\xf0\x83\x29\x87\x57\xbc\x55\xcb\xd8\x58\x8a\x07\xee\xd4\x9a\x7a\x0e\x53\xce\xb1\x3c\xb5\x09\x62\xec\x7a\x4e\x13\x9e\x0f\x4e\xa5\x38\x88\xca\xf0\x9c\xa6\x3b\x3d\x9c\xc6\xd8\xb3\x75\xcf\x57\x8c\xa1\x87\x37\x36\x24\x53\xf5\x86\x7f\x70\x75\x9c\x4e\x68\x00\xc3\x3a\x4d\x3a\x5b\xf5\xf4\xa2\x43\x87\x4b\xa1\xd5\x4f\x1b\x26\x1d\x96\x75\xbe\xfb\x9f\x1f\x5e\xd2\x33\x74\xe1\xcd\x2a\xf2\xff\x73\x39\xd6\x9c\xe9\xfb\xa9\x60\xe5\x23\x51\x5d\x0e\x0f\xe0\x83\xe1\x32\x2f\x19\x96\x54\xae\x42\xa6\x9e\x47\x01\xc4\x1f\x81\xff\x7a\xc7\xcd\x17\x0e\x16\x62\xf7\x5e\x8e\xa9\x67\xb3\xde\xb3\x9a\x48\xa7\xb7\x93\x05\x70\x22\x6e\x27\x0b\xe0\xa4\xdf\x9b\xbe\xe0\x05\x47\xc8\xd7\xbf\xdd\x50\xb7\x33\x28\x30\x2d\xb7\xc3\xe7\x99\x38\x55\x5c\xfb\xc8\xdf\xb7\x89\xe4\x7f\xc5\xfd\x21\x18\xde\xa6\x91\x53\x7e\x2b\x20\x0a\x49\xf3\xa7\x15\x96\x8f\x64\xf9\xe8\xae\x80\x6f\x3f\x9a\x02\x24\x87\xe7\x9d\x82\x34\xf0\xbc\x2b\x17\x92\x15\xac\xfc\xbd\xd2\x94\xa8\x69\xf9\x68\x52\x8a\x5e\xfe\xd4\x92\x78\x14\xac\xbc\xc2\x35\x94\x96\x69\xf9\x88\xfc\x8f\xeb\x3e\x7d\x86\x71\xeb\x0b\x3a\x75\xa1\xa7\x7f\x52\x54\x9b\xa4\xde\x2d\x91\x2f\xdb\x34\xbd\x55\xa4\xe7\xfc\xa0\x80\xbc\xc0\xf7\xdb\xf4\xc6\xac\xfc\x9b\xfd\x36\x09\x94\xb6\x44\x87\x6c\xd3\xa4\xc2\x64\xff\x6e\x82\x36\x4d\x6f\x80\x3e\x5f\x0c\xbd\x40\x1f\xbb\x49\xe7\x07\xa5\x11\x28\xb4\xe8\x82\x55\x13\x4d\x3a\x40\xad\xfd\x7b\x9e\x67\x3d\x67\x90\xb3\x2b\xe4\xfd\x93\xbb\xda\x34\x3b\x64\x7d\xe4\xd9\x88\xe5\x9a\x2e\x67\xc7\xb0\x57\x9a\xfc\x1d\xa5\xa4\xb8\x6a\xd3\xec\x50\xfc\x12\x2a\x66\x87\xe2\xf3\xc1\xa1\xe7\x8c\x71\x76\xe0\x4d\xa5\x4f\x87\xe2\xd3\xc0\xed\xb3\xc8\x0f\x8f\x5e\xc8\xea\x2c\x0e\xbb\xab\x19\xc3\x62\xe8\x3c\x73\xbf\xb8\x52\xd8\xc4\x0f\x26\xa3\xa4\xd3\x45\x64\xcc\x99\x99\xc5\x64\x54\x7e\x70\x68\x7e\xcf\x54\x2d\x0e\xcd\xaf\x99\x7d\xa5\x44\xea\xd3\xe7\x07\xd7\x49\x6f\x21\xf5\xa7\x88\x95\xca\x64\xae\x8e\xd5\x6f\x99\x9b\x9f\x26\x56\x2a\x2d\xac\x8e\xdd\xef\x19\x85\x54\x31\xb2\x94\xb7\x49\x30\x32\xd2\x8e\xb7\x49\x61\x30\x14\x06\x68\xd3\xea\x24\x03\x2d\xa4\xae\x8e\xee\xef\xf4\xf2\x92\xc6\xb8\x0e\xff\x40\x1b\xa7\xdb\xe0\x93\x5b\x03\xcd\x8c\xaf\x26\xb5\xe7\x87\xcd\x79\x09\x7a\x68\xdf\x4c\x6b\x0f\xad\x8e\x87\x69\x2c\xab\xca\x42\xac\x13\x0b\xef\x9a\xcb\xe3\xd3\xe8\xa9\x70\x4a\xda\xbc\x5c\x88\x29\x6d\x4a\x07\xeb\x53\xcd\x1b\xc5\x71\xc7\x19\xb7\x74\x30\xca\xc7\xb6\xa9\x58\xb7\xad\x21\xf5\xa7\x40\x95\x08\x4f\x6d\x2a\x6f\x04\x23\x7d\xbc\x65\x29\x69\x42\xb1\x58\x1b\xe3\x96\x06\xb5\x26\xc3\x45\x9b\x7e\x1a\x54\x09\x76\xaf\x4d\x2a\x24\xb7\x06\x79\xd5\x26\xc5\x4b\xaf\x1b\x47\x5d\x2a\xd4\x1a\xa4\x4f\x9b\xa4\x42\xad\x9f\x73\xf6\x53\xa1\xca\xe0\x28\xff\x34\xa8\x12\x93\x56\x9b\x14\x34\xbd\x16\x28\x55\x82\xa2\xb5\xb0\x1b\xdf\x5c\xb0\x70\x39\x85\xc8\xac\x01\xfb\xb7\x49\x35\x2c\xb6\x0c\x5b\x0a\x54\xab\x9f\x41\x19\x15\xca\x82\x54\xa7\xe6\xac\xf5\x0f\x17\x54\x9b\x14\x21\x13\xa4\x4f\x9b\x14\x21\xf3\x69\x4d\xa5\xe9\x52\x57\xa4\x4d\x8a\x80\xd9\x12\xf4\xdb\x26\x47\xc0\x7c\x3e\x68\xf6\xcd\x87\xe6\xe6\x00\x8b\xac\x9d\x43\x62\x12\x7b\xd8\x26\x15\xa8\x4b\xb2\x97\x36\x49\xfd\xa9\x83\xa3\xd0\x5e\x8a\xf2\x85\xd5\x9d\xcf\x99\x55\x68\x76\x65\x7f\xa8\xe4\xdc\x67\x92\x14\xe4\x12\x9f\x51\x9b\x54\x72\x2e\xc9\x79\xda\xa4\x92\x73\xf1\xa3\xb6\x49\xba\x0d\x59\x1a\xda\x64\xdd\x06\x1e\xdd\x8d\x93\x64\xd7\x2b\xab\x51\xfd\x7c\xe0\x31\x8f\x0c\x41\x45\xe4\x92\x84\xa8\x4d\xc3\x31\x17\x59\x58\xc7\xb1\xb0\xd0\x2e\x22\xc7\xc4\x4b\x8b\x09\xfc\xa0\x4d\xc3\x43\xce\x34\xab\x88\x5c\x65\x16\x15\xc7\x52\xb9\x86\x14\xc7\x52\xd9\xee\x43\xe8\x67\xae\x00\x15\x89\xeb\x0b\x03\xd8\x85\x00\xe7\x44\x49\x61\xd9\x1a\xf7\xaf\x60\x66\xc9\xd8\xda\x26\xa3\xcc\x0a\xb3\xa8\xe8\xee\x1e\x1b\x71\x9b\x76\x87\x07\xc2\xf5\x54\x6f\x22\xa8\xab\x36\xed\x06\x0c\xf3\x81\x20\xdd\x2b\xff\xab\x86\x3b\x8c\x41\xca\xc8\x60\x33\x4a\x17\x19\xb0\x9a\xc3\x90\xee\xac\xd2\x61\x9a\x32\x64\xc5\xb9\x04\xdc\xda\xa6\x43\x80\xdf\x39\xed\x4b\xaf\x48\xca\xd2\x36\x39\x8e\xa5\x31\x60\xe9\x15\xc1\xea\xb5\xc9\x8e\xa0\x0f\xdb\x91\x5a\xd1\x12\x7e\xde\xa6\xb7\xe0\x04\xd7\xe0\x4f\xad\x68\x13\x37\xe9\xe9\x85\x58\x32\x68\x07\xab\x2c\x30\x8d\x53\x10\x48\x0e\xd0\x29\xc8\x23\xb3\xa2\xf8\xee\x8d\x23\x79\xda\xbc\xc4\x3d\x70\x0a\xf3\xc8\x15\x77\x0a\xf4\xc9\xf9\xfa\x49\xf7\x4b\x62\xb2\xda\x74\xb9\x48\x16\xbb\xfb\x12\xe6\x11\xa1\xe7\x12\xe6\x11\x79\xe3\x12\xe8\x13\x56\xaa\x18\xf0\x8f\x04\x73\x09\xd2\x08\x4f\xb8\x4c\x51\x06\x28\x34\xd8\xca\xd6\xba\x84\x6a\x45\x10\xb8\x84\x62\x65\x96\x2f\x11\xc4\x24\x5f\x22\x08\xc9\xe2\xb2\xba\xce\x71\xbd\x05\xe2\xe4\xee\xbc\x45\x10\xc2\x8a\x83\xc2\x61\x62\xb7\x41\x9b\x59\xa4\xdb\xf0\xc0\xbc\x6f\x84\x15\x03\x72\xbc\xc6\xc4\x71\x53\x09\x87\x89\x19\x33\xa4\xea\xf3\xbf\xd0\x44\x0b\xb7\xbb\x31\x55\x8c\xf0\x31\x80\x2e\x23\x52\x0d\x87\x09\x12\x8d\xb1\x62\x0a\x1f\x01\x06\x61\x79\x8f\x90\x00\x83\xf6\x04\xf1\x64\x93\x3c\x97\xbe\xcf\x0c\x09\x63\x55\x2a\x67\xe3\x11\xc2\xee\x9f\x48\xdf\x66\x63\xae\xb2\xe6\xf3\x24\x10\x59\xfd\x0b\xf0\xba\xcd\xaa\xee\x10\xfb\x7d\x9b\xdf\x68\x91\x48\x76\xb3\xca\x3b\x44\xd7\x6e\xb3\x0a\x30\x24\xce\xb7\xcd\x2a\xc0\x30\x85\xc3\xcf\x93\xf1\x8e\x8c\x4e\x78\xce\x9a\xf6\x66\x8f\x96\x67\xaf\x47\xcb\xb3\xa7\x97\xe7\x5f\x7f\x2d\xec\x76\x9e\x85\x54\x8a\x00\x37\x2b\x07\x51\xa9\x9d\x0f\x04\x23\xe9\x99\x0e\x83\xb5\x46\xfe\x5f\x04\x23\xe1\x7d\x83\xb5\x22\x44\xce\x06\x6b\xe5\xde\x9f\x17\x21\x2d\x46\x06\xec\xea\x0b\xff\xcc\x8c\x6d\x36\x38\xab\xf1\x2c\x58\x44\x14\x97\x79\xb1\x5d\xb2\xd1\x80\x25\xb9\x4f\x8b\x4e\x1f\x9a\x2b\x68\x36\xda\x6a\x64\x8e\x17\x91\xd0\x43\xb3\xea\x37\xa4\x56\x40\x9b\x8d\xb6\x1a\xf9\x7e\x35\x09\x21\x69\x7d\x83\x92\x32\x89\x92\x9c\x4b\x12\x82\xb4\x59\x92\xf3\x36\x7f\xba\x30\x55\x99\xa5\x55\xe0\x9e\xc1\xff\x76\x98\xb1\xce\x4a\x1e\x8a\x93\xb3\xcd\x9b\xcb\x06\xe6\xe2\x9b\x95\x9f\x08\x09\x66\x56\x7e\x22\x44\xc7\x59\x5e\x87\xe4\xcd\x69\xb3\x4a\x30\xa0\x12\xce\xce\x1c\x3a\x98\xf9\x4d\xe8\x01\x66\x7a\x33\xfe\x83\xff\x95\xbc\x3e\x27\x6d\xde\xec\xf9\x64\x5e\x94\xa1\x68\x65\xef\x6e\x02\x0b\xb0\xf4\xca\x50\xb4\x72\xd2\x84\xd2\xaa\xcc\xda\x8b\xd2\x62\x56\x8a\xbc\xe5\x61\x2e\xb3\x52\x16\xf5\xe4\x59\x69\xb3\xaa\x38\xc0\x4f\xe7\x22\x9a\x39\x0d\x45\x34\x87\xbd\xcd\x42\x65\x7d\x16\xee\x45\x65\x6d\xfc\x20\x7f\x39\xc7\xa5\x88\x66\x76\x77\x11\x3e\x80\xe3\x5b\x4c\x22\x23\x14\x89\x9f\xf6\x44\x22\xa7\x45\x55\x1a\x50\xbb\xe7\x2a\x0a\xc3\x6f\xe7\xaa\x45\x65\x1b\x54\x2f\x2a\xef\x1b\xd2\x92\xf6\xaa\xf1\x00\x99\xb1\x2a\x3c\x04\x4b\x52\xbd\xa6\x59\x43\x81\xb0\x3e\x47\xc1\x25\x1a\x98\xf1\x6a\x7a\x19\x8f\xe8\xdd\xf8\xfe\x70\x09\x61\x06\xe0\x09\xc8\x8c\x1b\x88\x15\xc5\x6b\x6e\x5e\xc2\x4c\x88\x4b\x48\x07\xe0\xdd\xe6\x66\x0a\x33\x83\xaa\xc1\xd0\x93\x97\xa4\xcd\xf2\x65\x8c\xd8\xf9\xda\xfc\x56\x91\x66\x52\x25\xaa\xd7\x14\x5a\x6c\xb3\x64\xf5\xad\xc2\xd5\x9a\x97\x35\xa3\x54\xb4\x7a\x6f\x0b\x5f\x38\xbb\xc0\xcc\x0f\x52\xbc\x56\x66\xb6\x5d\xff\xfd\x6f\x4b\x8a\xdb\x36\x4b\x9a\xdf\x1a\xe7\xb1\x3b\x45\x42\x54\x8e\xb9\xdb\xfb\x1b\xa9\x6c\xb6\xf3\x22\xe0\xec\x36\xcb\x79\x31\xb3\x9d\xed\xbc\x08\x80\xba\xcd\x02\x89\x4d\x3f\x21\xea\x2f\x97\x4f\x7f\x93\x2c\x64\x62\xde\xb2\x75\x9d\x0e\x9d\x65\x61\x0a\x55\x5d\xee\xe1\x95\x17\x44\x76\x87\xed\x74\x5f\x97\x30\xc7\x6e\xa7\x77\x64\xc9\xd9\xae\x0c\x04\xbf\x79\xb8\x22\x2f\x0b\x36\xe4\x03\x86\x91\x0c\x91\x1d\xe1\x72\x7e\x23\x43\xd8\x95\xc3\x84\x44\xbe\x9d\x15\xcc\xde\x11\xb4\xe6\x21\x37\x77\x2e\xf1\x79\xd8\x43\x07\x2f\x19\xaf\x77\x8a\x61\xda\x47\x03\x37\x1a\xf6\xd1\xb0\xc2\xc3\xee\xa9\xcf\x30\xe4\x86\x63\x41\x77\x3b\x6d\x62\xba\x98\x77\x3b\x23\xd9\xfd\xf2\x86\x50\x12\xad\xcd\x52\x2e\xea\x14\xf1\x67\xde\xed\xc5\x81\x63\xbc\xb9\xa3\x60\xab\xbb\x1d\x54\x9c\x61\x55\x80\x28\x4c\xf8\x6e\x07\x15\x4c\x69\x37\xf1\x9c\xf2\x9f\x7a\xb1\x15\xb6\x91\xd4\x8b\x92\xdc\x40\x6d\xde\xed\x78\x63\x63\x1c\x2f\x69\x69\x42\xbe\x8d\xc2\x56\x3d\xec\x9f\x8a\xf2\x3a\x1f\xf6\x4f\x71\x0a\x0f\xfb\x1c\x21\xe4\x30\x65\x30\x93\xa3\xd9\xd1\x90\x19\x7f\xdd\x1b\x50\x62\xf7\x06\xec\x51\x6a\x08\xb1\xb4\x6d\x7e\xbd\x19\x5c\x52\xaf\x37\x83\xd9\xfa\xa9\x1d\x5b\x87\x83\xbe\xce\x0c\x76\xc6\xf9\x7a\x69\xf2\xc6\x69\x87\x14\xb4\x9f\xce\xf8\x03\x57\x7c\xbd\x13\x4c\xf0\xa9\x44\xd3\xdc\x74\xa7\xdd\x32\xf4\x61\xdf\x04\x1b\xe3\xf5\x4d\xb0\xb7\x4e\x0d\x93\xab\xed\x75\x3c\xb0\x3d\x2f\x3b\xde\x32\x35\xae\xe2\x30\x73\x15\x5c\x72\xba\x70\xbf\xdb\x31\x31\xb3\xb3\x84\x0d\xeb\xb0\xde\xcb\x64\xb1\x1e\x97\xa7\x9f\x25\xbc\x3c\xfd\x19\xf5\x4f\x1d\xd9\x3a\x22\x83\xfc\x10\xb5\xc0\xf3\x2e\xd9\xe4\x61\xa3\xb7\x6c\xf2\x30\xc9\xdb\x99\x7c\xe1\x1e\xaf\x5f\x82\x6d\x74\xdb\x28\x0f\xab\xbe\xed\x4e\xc9\x98\xee\xaa\xe7\x4c\xed\xad\x94\xc5\x4b\xc6\xf8\xcf\xf1\xc0\x07\x2e\x9b\xcf\xb9\xb6\xa7\x01\x76\x73\x5f\x7a\xce\x34\xbc\x8e\x86\x8c\x51\x69\x4f\xe7\xe0\x54\xdb\xfc\xbc\x54\x64\x0c\xff\x5c\x0b\x69\xe2\x91\x33\x05\x76\x64\xad\x67\x46\x89\x90\xab\x81\xec\x6c\x6d\x7e\x94\xf4\x0f\x86\xe6\xb4\xa8\x33\x17\xd0\x73\xf9\x07\xbe\x90\x23\xa1\xd2\x87\x1d\x09\xe1\x0b\xcb\xe4\xda\xf5\xf9\x62\x79\x1d\x09\x39\xc4\xcb\xe4\x1c\x23\x8d\x4f\x56\xbf\x51\xf2\x43\xf1\x1b\x5b\x7e\xa8\x32\xc1\xcf\x79\xb6\x71\xbb\xd1\xa6\x53\x60\x4c\x7f\xc1\x71\xb7\xc5\x6e\x86\xd4\xf0\x68\xcb\x9b\x1a\x2b\xb6\xc5\x65\x92\x85\x7e\xa1\xfd\xdb\x2c\x60\xe4\x07\x25\x1e\x89\x17\xb5\x2d\xb3\x2d\xdf\x21\x4a\x01\x2c\x04\xd8\xb7\x45\x8e\x86\x8d\x5d\xb8\xcc\x96\x0f\xb2\xf1\x17\x39\x16\xd6\x84\x61\xb5\xc5\xb9\x59\x03\xd7\x6f\xcb\xec\xac\xb4\xbc\x70\xf9\x85\xf4\xaa\xea\xd3\x2b\xf2\xf6\xb2\x38\x21\x6c\x8e\xf8\x22\xcf\xc1\xc7\x34\xb5\x28\x4e\xbd\x23\x40\x2f\x8b\xcd\xa8\xcc\xb6\x5c\x09\x6b\xfd\xfc\xf0\xdb\x36\xf0\xd8\x45\xda\x10\x65\xc4\xda\xb2\xc8\xa2\xc0\xa8\x0e\x99\x55\x0b\x1f\x78\x3a\x73\xb5\x2e\x3f\xe5\x67\x4e\xf1\x97\xb6\xac\x3a\x7f\x91\x08\x96\xd5\xd9\x00\xf2\xd8\x7d\xa1\xe5\xd9\x16\x8d\xac\x8e\x22\x49\xb0\xa8\x2c\xab\x6d\x36\x79\xb4\x36\xce\xeb\xc2\x56\xad\xfc\xaf\xb4\x57\x39\xab\x8b\xb5\x1e\xac\x75\xcb\x26\x4b\x17\xdb\x63\x93\x41\xa3\xf2\xc1\x66\xd1\x81\x0f\xc4\x3f\x22\x63\x2d\x9b\x4c\x34\x99\xf2\xcd\xf4\xf0\xba\xf5\xe3\x8c\x5f\x3a\x4c\x2a\x72\xb5\x65\xb3\x00\x1f\xfa\xe5\x15\x28\x28\xec\xcb\x4f\x25\x59\x5b\x94\xcf\xc5\x40\xac\x44\xf0\xb5\xa5\x78\x7b\xb2\xa6\x3f\xa5\x64\xc3\x69\xb5\x48\x29\xf9\xd2\x58\xec\x06\x0b\x09\x3f\xa5\xa4\x6d\x0c\x61\xd7\x90\x79\x5d\x53\x1e\x8a\x8a\x5d\x47\x11\x63\x16\x83\xb0\xe0\x0a\x3f\x1d\xa5\xce\x6c\x6d\x79\x10\x3e\xc7\xc7\x09\x57\xc3\x78\x16\xf9\x0f\x12\xdc\xd4\x96\xea\x4c\x4c\xe9\xb0\x2a\xd9\x14\x5b\xb2\x9a\xf7\x7d\x3e\x90\xb9\x94\x13\x2d\xbc\x55\x65\x80\x55\x26\x5d\xf6\x6c\x55\x7a\x05\x0e\x67\x95\x65\x71\xa1\x43\x5b\x47\xd3\x9e\xa2\xd7\xe1\xb5\x8b\xe0\x52\xa9\x20\xd5\x96\xa6\x14\x1f\xb9\x62\x16\x6b\x18\x51\xda\x16\xc7\xaa\xc3\xe2\x54\xfe\xfa\xc3\xb3\x54\xfe\xfa\xc3\xb2\x1c\xab\xfe\xf9\x5e\x9b\xfc\xf3\x6c\x9b\x4d\x16\xb8\xc9\xe2\x14\xb3\xe4\xd2\x65\x7f\x88\x30\xb6\xa8\xbc\x75\x67\x02\xa5\x37\x7c\x07\xdc\x15\x7c\xd4\x79\xa1\x68\x07\x84\xe0\x9f\xda\xd0\x5b\x9c\x2f\x4b\x77\x56\x5e\x66\xb4\x7b\x97\xd3\xa0\x30\xde\xac\x90\x43\x4b\x58\x52\x87\x96\x54\x46\xa8\x2c\xb8\x28\xda\x8b\xaa\xc4\x71\x9d\x2d\xaa\x12\xc7\x65\xb5\xbc\x2a\x40\x46\x68\x74\xd3\x67\x8f\x0f\x07\x2e\x16\x5a\xb0\x2e\xc4\x31\x19\x02\x29\xc3\xa8\x5e\x25\x61\x99\xfe\x74\xf1\x0c\xd7\xdb\x89\xe0\xb8\xbc\x1a\x43\x84\xbc\x45\xa5\xe2\xf0\xfc\x2e\x2e\x05\x97\x8c\x58\x6d\xd9\x9d\x4b\x3e\xa2\xca\xa2\xb2\x04\x85\x3b\x62\x77\x0a\xb2\x88\x05\xcb\xfe\xa6\x59\xcb\x98\x7f\xb2\x7d\x69\x31\x1f\x2c\xbb\xfd\xa7\xf0\x73\xc9\xf6\x2b\xa2\xe7\xb2\x3b\x49\x38\x13\xa5\xd2\xd4\xb0\x1b\x89\xf6\xad\x72\xcb\xec\xb7\x52\xff\x65\x65\x76\x55\x68\xcd\xa3\x52\x66\x7d\xf6\xe2\x5b\xbe\x8d\xc3\x77\xd8\x6b\x95\x21\x1f\xca\x4d\xc7\x8d\x72\x28\x8f\x59\xf4\xf5\xc5\xe5\xd3\xe0\x16\xa7\x52\xd1\xc1\x60\x25\x6e\x2f\x6c\x9d\xd3\xdc\x21\x03\x90\x17\x60\x61\xe7\x9c\xca\x6b\x06\xfb\x3a\x95\x7b\x8f\x1b\xe4\x54\xc6\x9f\xc2\xf7\xbb\x0e\x73\x26\xe4\x54\xc6\x22\xe6\x43\x59\x60\x2b\x5b\x5b\x18\xa0\xb6\x7e\x1a\x90\x87\x0b\x76\x78\x99\xa0\x74\xe8\x8c\x54\x6c\x65\x67\xa4\x62\x0d\x9d\x81\x8a\x1b\x41\x89\x60\x2b\x1b\x59\x19\xa7\x2a\xec\x5d\x89\x60\x2b\x2b\xe2\x90\x0c\xc4\xb8\xcb\xdc\x2f\x13\x70\x99\x00\xc6\x23\x07\x17\x17\xda\xed\xb4\xdd\x6c\x4b\x25\x7a\x9d\x38\x6b\x4a\xf4\x9a\x28\xe9\xb6\x28\xd1\xeb\xc4\x9d\xab\xc4\xae\x49\x31\xd0\x16\x95\x55\x1b\xb0\x9f\x5b\x33\xcc\x39\xf8\x09\xd8\x6d\x42\x42\x78\xe4\x14\x61\xd7\x3f\x72\x8a\x20\x6d\x3d\x66\xa7\x99\x20\x45\x51\x7f\x56\xf4\x91\x93\x84\x1d\xf1\x98\x9d\xd2\xbe\x44\x1a\x44\xd2\x47\xf7\x1b\xf4\x3e\xca\x7c\xc1\x78\x65\xf1\xff\xec\xd8\x47\x4e\x93\x48\xef\x8b\x0d\xfe\x19\xdf\x3a\xc9\x67\x12\xa1\x78\x55\x8a\xa8\x54\x3d\x6b\xeb\xe4\x09\x0e\x7f\x5e\x1d\x4f\x81\xd1\x7d\x55\x8d\xe6\xa9\xf1\x85\x7c\x18\x19\xf1\xaa\xaa\xcb\xd3\xa7\x07\xb3\xdf\x91\xe7\xf3\xf7\xbc\xf0\xbd\x47\xf8\x6f\xc4\xeb\x3c\x59\x9d\x48\x83\x4a\x08\x3b\xe5\x46\x5a\xe7\x45\x0d\xf6\x3c\xaf\xba\x41\x42\xe2\xac\xa8\xfe\x8d\xef\x35\xe0\x48\x4d\xeb\xec\x01\x87\xc2\x59\x4e\x97\x8d\x01\x28\x90\x3d\x53\xba\xce\x0a\xdc\xdf\x78\x5f\x5e\x8a\x4a\xff\xba\xf1\xb2\xe4\xab\x9c\x00\x2d\x4c\x62\x95\x13\xa0\x45\x48\x5b\x1d\xa1\x1d\x0d\x7c\x5d\x74\x81\xcd\x7c\xdf\xf4\xcc\xff\x5d\x37\xe2\xca\x0f\x0a\x96\x8c\x92\xbf\x2e\x2e\x73\xba\xd0\xc3\xe1\x3b\x34\x24\xbb\xaa\x73\x42\xad\xda\xba\x5c\xea\x83\x67\x4b\xca\x39\x27\xab\x82\xb2\xdb\xfc\xa7\xfb\x66\x95\x0f\xa1\x85\xab\xac\xab\x67\x80\xc6\x3c\x03\x99\x51\x47\x6c\x77\xfe\xd7\x95\x1e\xa9\x71\xb5\x03\xa1\xf3\x7e\x93\x98\xc9\xb3\x4d\x7d\x85\x06\x86\xf9\x5c\xe8\x59\x65\xca\xad\x3c\xcb\x5a\x5f\xf9\x40\x32\x40\xa5\xc5\x5b\x3d\xf0\xfe\xa3\xe7\xbc\xbf\xf9\xca\xcf\x1a\x09\x84\xd3\x67\x3a\xb4\x43\x22\x57\xcd\xba\xbd\x77\x7e\x7a\xd8\x6c\xfe\xcc\x1a\x6d\x45\x3d\xf0\x41\x37\x5a\x21\x93\xb8\x29\x5a\x8f\x6d\xbb\x99\x24\x1a\x70\xa8\xd5\xc2\x10\x1c\x65\xb4\xd0\xa4\x70\xd8\x2c\xb2\x5d\x0e\x0b\x47\x51\x55\x12\x52\x63\xac\xad\xae\x92\x80\xf0\xb9\x3a\xd2\x02\x44\xc4\x5a\x04\xb2\x66\xaf\x2a\xb5\xed\x04\xa2\x61\x75\x6a\xdb\xfa\xe9\x63\xf7\x0f\x19\xb7\x73\xdb\x56\xe6\xda\x22\x3a\xf0\x99\xd5\x61\x0f\xe8\x5d\xab\xc3\x1e\x10\x9a\x57\x61\x72\xe6\x85\x46\xab\x6c\x54\x85\x2f\x86\x5f\xc8\x5c\xb8\x22\xd8\xf2\x69\xe2\xf0\x1b\x19\xa8\x40\x39\xf3\x42\xaf\xcd\xf6\x9d\x34\xe1\xbc\x50\xa8\x47\xeb\x4f\xd4\xa6\x50\x5f\x5b\x9b\x61\xa7\xf0\x4e\x47\x26\x4c\x1c\xf5\x56\x64\xd6\xc8\xa6\x30\xee\x66\x66\x3e\x7f\xd2\x77\x41\xf6\x5c\x9b\xb5\x21\xba\x10\x06\x90\x35\x6f\x87\xcc\x01\x74\x60\x7c\xd9\xa0\x81\xcb\x3f\x64\x05\x65\xca\x5f\x3f\xdb\x46\xc0\x9c\x75\x61\x09\x15\x97\x80\x13\x7a\x95\x69\x7f\xc5\xad\xb1\xf6\x57\xfb\xcf\xd4\x29\x1d\xed\x8a\xa7\x67\xed\xaa\xfb\x4f\x0b\x45\x97\x68\xa8\xec\x4a\x0f\x06\xc7\x55\x7a\x28\xcc\x7f\x6b\x37\x87\xce\xea\xf6\xf1\x6b\x2e\x93\xa0\x6c\xb5\x20\xcd\x56\x65\x87\xfa\x0c\xef\xb4\x69\x88\xcf\xad\xf3\xf1\xfc\x18\x62\x9a\xf1\xff\x04\xf6\x8a\x80\xbf\x3a\xdd\xec\xe7\x7f\x2d\x13\xcb\x36\x94\x3e\x97\x1e\x25\x6f\x83\x7d\x6f\xab\xec\xef\x15\x41\x76\x75\x42\x59\x0e\xaf\xcc\xef\x5b\x85\xc5\x39\x16\x81\x31\xef\xca\x92\x07\x03\xdb\x2d\x98\xa5\xc1\x5d\x82\x19\x73\xb0\x4b\x30\x8b\x64\xb9\xca\xd2\x5e\xb9\x65\x77\x09\x6a\x6c\x14\xa3\x78\x00\xa8\xae\x92\xce\x2b\x3b\x71\xb7\xa4\xc6\x00\x6c\x9d\x66\x11\x05\xf3\xa9\x9f\x06\x24\xba\xc1\x22\x9d\xe0\x96\x49\x93\xf0\x3d\x58\x64\xc3\x76\x98\xc4\x43\x92\x1b\xd7\xf8\xa1\x4d\xb3\xfd\x25\xd9\x68\x5b\x0f\x89\x79\xdc\xd9\xb2\xbe\x0f\x64\x80\x43\x62\x5f\x04\xe5\xf5\x10\x66\x89\x3b\x5d\xb6\xf7\xde\x59\x20\x61\x80\x06\x5b\xf4\x90\x26\xc2\x95\x65\xc0\x0f\x5b\xe4\x90\xa0\x0a\x75\xd2\x14\x06\xff\x9f\xca\xe3\x08\xab\x3d\x25\xb7\x42\xfd\x69\xc7\x1f\xf7\xc5\x69\xf2\xb3\xa0\xa7\x28\xe4\x88\x9d\x42\x39\x45\x75\x58\x4f\x51\xb8\xd1\xa0\xae\xc4\xef\x0f\x42\x39\x31\xbf\x02\x18\x7d\xe4\xba\x53\x86\x07\xf6\xb0\x74\x87\xf1\xe9\x40\xaa\xc3\x67\x81\x65\xc5\xff\xc8\xde\xab\x94\x89\x8f\x39\x7b\x35\xa2\x28\x0a\xdf\x6a\x44\x51\x54\xf9\xd5\x88\x22\x98\x95\xf2\xd9\xd6\x94\x96\x6d\xeb\x25\x69\x1a\xfe\x79\xc9\x18\x04\x83\x35\xa4\x68\xf0\xbf\xa4\x65\x98\x9d\x21\x46\x9d\xf6\x04\x31\x8a\xa7\x62\x55\x02\x2a\x7c\xee\xeb\xad\x8c\xad\xac\xca\xed\x6b\xbe\xf2\x83\x72\x12\x61\x9e\x5a\x5d\x68\x22\x4e\x9d\xf5\xb6\xdd\x93\x83\x78\x2b\x37\x20\x07\x5d\xa1\x07\xa5\xb0\xb3\x5c\x7a\x02\x69\xce\xa5\x27\x06\x2d\x9a\xe6\xac\x83\xf2\x4c\x7d\x78\xad\x35\x94\x4f\x7b\xd6\x08\xf8\x5e\x34\xb2\x13\x95\xa5\xb6\x02\x8b\x5c\x9d\x76\x36\xf5\x7b\xdb\x6a\x58\x13\xcb\xf2\x28\x6d\x16\xcb\x66\x54\x53\x74\x92\xf5\xb1\x0d\x8f\x69\x33\xac\x89\x8b\x52\xf6\xfe\xf2\x61\xb0\xc6\x35\x31\x6b\x8f\x3d\xed\x2b\x5d\x0a\x19\x04\xd1\x4e\x1e\xc5\x46\x78\x94\x2c\x8b\x85\xb3\x9a\x93\x85\xde\x8c\x6b\xca\xa4\x6e\x93\x74\x88\xac\xc2\xe6\x4c\xb8\x3d\x7a\xd1\x36\x49\x89\x08\x09\x9b\xb1\x4d\xd9\x69\x9b\x53\x4b\xe5\x34\x6c\x93\x94\x8c\xac\xc2\x66\xad\xa8\xd3\x9e\xa6\x60\xd0\xa1\xf5\x3c\xbe\x57\x1a\xa9\x8d\x01\x0b\x1a\x35\x68\x4f\x13\x30\x18\x8f\xcc\x6c\x99\xc1\xed\xa7\x14\xcd\x0d\x20\xf9\x36\x6b\x67\x82\x60\xd9\x14\x92\x40\xe0\x52\xdb\x5e\x57\x01\x63\x9e\xa5\x78\x44\xb8\xd8\x66\xdf\x09\x91\xa2\x36\x79\x0a\x7a\x42\x99\xda\x36\xcb\xfa\xba\xd0\xa4\x32\x46\x0c\x9e\x5d\x4d\xe3\xd3\x82\xf4\x8c\xac\xeb\x26\x00\x55\x63\x90\x8b\x34\x87\x70\x8c\x6d\x51\xaa\x1a\xc8\xb6\xee\x94\xad\xb9\x2d\x9b\x9e\xf9\x5f\xba\x14\xd3\x66\x40\xd5\xa0\x3d\x25\x1e\x8a\x21\x6c\xfb\xa9\x4e\xbd\xc5\x9e\xb0\x2d\xca\xb5\xd4\xf9\x5f\xca\xea\x9f\x32\x5c\xb7\x6d\xb1\x26\x0b\x71\x22\x76\xa1\xb1\x5b\xcf\x0c\x4e\x79\x7a\xe2\xf5\xdc\xac\x63\x85\x97\x6c\x56\xa3\xa2\xb5\x6d\x56\xa3\x56\xde\x57\x52\x22\x36\xb9\xd5\xa8\x70\xbf\x6d\xb5\xe5\xb3\xd1\xa0\x52\xa0\xe0\x35\xdb\xac\x27\x01\x18\xdc\x9c\x0b\x2b\x07\x71\x5b\x5d\xfe\x38\xca\xf6\x66\x45\x88\x16\xac\x08\x45\x5b\xdf\x7e\x8a\xd0\x8a\xea\xb7\x59\x0f\xca\xd1\xdf\xa4\x07\x6d\x3d\xe6\x81\xcd\xc8\xac\xc6\x0b\x02\xb8\x24\xe5\x46\xdb\x54\x4a\x6e\x0d\xb7\xd9\x36\x73\x97\xca\x17\x2e\x5a\xb9\xf1\xc6\x7b\xd5\xf1\x83\x93\x48\xcf\x8c\x52\x26\x5e\x4e\xb3\x62\xd0\x93\x78\xb2\x6d\x45\x16\x5c\x06\x69\xa8\x15\x13\x59\x1c\x18\x97\xcb\x73\x33\xd6\x0a\x7e\x52\xac\xcd\xd1\xa0\x53\x28\x45\x5a\xda\x8a\xf0\x65\xf0\x1b\x61\xad\x50\xf2\xb7\x62\x57\x52\xf6\x4e\x31\xc2\x98\xc5\x15\xb8\x0a\xab\xc2\x56\xbc\x30\x99\x95\x6a\xe7\x51\xa4\xdc\xad\x3a\xef\xf0\xc2\x1b\x46\xe4\x70\xd8\xaa\xd2\x13\x30\x6d\x8a\x1d\x4f\x0d\xea\xb6\x49\xcb\xfa\x20\xec\x37\x07\x8f\x63\x0d\xdb\x14\xe8\x50\x3e\x7c\xf6\xa7\x77\x6d\x84\x1c\x6d\x55\x90\x9b\x8d\x0f\x0e\x73\xa9\xcc\x43\x7d\xcb\x9f\x87\x4e\xc5\x92\xa7\xea\x5e\xdb\xaa\x13\x51\x70\x64\xab\x55\xf3\x50\xa1\x78\xf1\x94\x00\x6f\x5b\x7b\x95\xd8\xac\x85\x03\xc8\xb1\xf9\x6d\xed\xd5\xcd\x33\xca\xf6\x5e\xda\x19\x55\xb3\x3d\x1e\x3e\x23\x45\xad\x11\x92\xb4\x35\xeb\xb9\xcc\xee\x5b\xfc\x19\xd6\x27\x55\x6c\x42\x40\xde\x1c\x22\x8e\x48\xbd\x35\xe9\xe7\xf0\x07\x97\x87\x5e\x58\xe3\xae\x50\x78\x18\x8c\x41\x56\x98\x6b\xb7\xd7\x59\x12\xb1\x75\xfb\x69\x62\x1b\xc1\x2d\x9b\x41\x56\x88\xf5\x9b\x41\x56\x58\x68\x37\xe3\xa8\xea\xa7\x53\xab\xf4\xac\x61\xb7\xaf\x20\x74\xbc\xb0\x29\x4e\xa8\x02\xc0\x3f\x16\xb0\x6d\xbc\xa0\x82\x34\xe1\x72\xce\x0b\x03\x97\x07\x64\x5e\x18\x86\xcb\x37\x2f\x4c\xce\x70\xd0\x25\x37\xea\x90\x8a\x0f\x1b\x50\x6c\x04\xb1\xd6\x6d\x1b\xaf\x8a\x9f\xe9\x12\x2c\x8a\x30\xcc\xb6\x0d\x43\x3c\x18\xd6\xe5\x23\x12\x4a\x86\x80\x2a\xac\xb2\x40\x51\x3d\xc2\xdc\x26\x50\xd4\xbc\xc0\x0e\x5d\xbd\x79\x61\x7e\x77\x45\x03\xc7\x02\xbf\xc9\x2b\x52\x93\xdd\xbb\x6d\x6f\xb5\xe6\xc1\x0f\xf6\xd9\x66\x50\xbb\x4d\x00\x19\xf4\xae\x10\xdb\xf5\x2f\xa1\xaa\x6d\xdb\x15\x88\xca\x9d\xef\x60\x71\x30\x93\x9b\x83\xc5\x01\x79\x6e\x6f\x6d\x3e\xae\x5c\x87\x82\x83\x72\xdc\x0e\xdb\x41\xf2\xc5\x61\x84\x08\x97\xee\xf1\xe2\x5c\xd2\xab\xd0\x51\x1f\xb3\xc5\x76\x38\x64\x93\x7d\x79\xd8\xf0\xc1\xdd\x77\x18\x6a\x01\x8b\x16\x5c\x6a\x99\xd9\x86\x0a\xdb\xe8\x04\x7f\x6d\x2e\x06\xdd\x3e\x03\x75\x7c\x6a\x0c\x60\xdb\x61\x78\x05\x23\x77\x58\xe7\xa7\x09\x85\x75\x72\xee\x4f\x87\xa7\xb2\xd7\x4f\xa3\x4a\xd8\x21\xf6\xf0\x00\xa0\xd9\x4e\xfb\xc1\xb8\x0a\x5c\x40\x1a\x2d\x67\x3b\x9d\x90\xfe\xf3\x89\x0d\xba\x9c\x97\xd3\x56\x9d\x90\xfa\x56\x87\xe6\x16\x3d\xdf\x6b\x99\x1f\x1e\xd9\x7d\xd2\xa4\x55\xaf\x64\x18\x6a\xdb\xe5\x30\x5a\xbe\xb8\x5c\x15\x38\x7d\x48\xd7\x5a\x97\xd8\x1b\xb7\x9f\xae\x55\x1a\xfc\x4b\xae\x9c\x15\x13\xda\x26\x04\xd5\xba\x44\x71\xd8\xe4\xcc\x59\x97\x4f\xa7\x2a\x2c\xcc\x3e\x50\x7a\xad\x95\x90\x8e\xed\xa7\x8f\x11\x55\xb6\xb9\x9e\x48\x4c\x9c\x9b\xd4\x2f\xec\x46\xdb\xad\x6b\xb9\xf3\x2c\x14\x18\xe2\xe8\xad\xfa\xd6\x70\x7a\x85\x79\x7f\x38\x82\x2a\x84\xac\xdb\xa7\xc1\x9f\xc4\x0b\x89\x0a\xec\xae\x1f\xb9\xe0\x96\xbb\x8a\x49\xbb\xe5\x1a\xc8\x9c\xdd\x52\x91\x3f\xcd\xc9\x08\x10\xc3\xd4\x26\x30\x55\xc5\x95\xbc\x3d\xaf\xc9\x30\x23\x7e\xec\x81\x44\x06\x77\xd0\xf5\x8a\x1c\xaf\x10\x8f\xc6\x09\x7e\x2c\xba\x64\xcc\xaa\x13\xb8\x32\xc7\x8f\x30\x1a\x61\x93\xc5\x09\xb4\xf0\x16\x94\xc9\xb7\x3a\x2f\x14\x0f\x61\xca\x0f\xbe\x01\x72\x2a\x8a\x33\x60\x01\xc4\x29\x93\x6d\xa5\x39\x8b\xe5\xc5\x29\x45\x80\x2a\xd3\xcb\x34\xfe\x0d\xb3\xcc\x06\x5b\x2d\xfc\xe0\x08\xe9\xe8\x0e\x65\xb6\x2d\x94\xe7\xb7\x46\x55\x06\xee\x1a\xd2\xd3\xa7\x89\x9f\x4e\x95\xc9\x2d\xd2\x4e\x5a\x4a\xe7\xb5\x22\x1c\x53\xe2\xd7\x5b\xb1\xe3\xa6\xf0\xbd\xa7\x92\x06\x4c\x45\x8e\x59\x51\xb8\x47\x78\x77\xf9\x29\x27\x2d\x99\x68\x5a\x59\x94\x4e\x9b\x01\x2c\xae\x23\xc7\xfb\x3a\xb6\x39\x94\x45\x5e\x97\x24\xb5\x6c\x65\xd1\x75\x53\x68\xcf\xdb\x27\x33\xa0\x50\x8d\xd4\xf4\x6c\x65\xb5\xf9\x78\xe2\x87\xe2\x38\xb4\xb4\xb8\xaa\xf6\x5a\x36\x60\x51\xed\x8a\xf5\xf3\xff\xe1\xa2\x52\xb4\x20\x50\x23\x2b\xbb\xaa\x84\x4d\x04\xdd\xa2\x58\xe2\x06\xe4\xa7\x6c\xd5\x56\xbe\x0c\x7a\xb3\x1d\xb0\xff\x25\xc1\x5c\x2b\x8a\x3c\x26\xb8\xb6\x58\x32\x67\x80\x9b\xc5\xdc\xce\x0b\x0a\x06\x84\x22\xf9\x2c\x92\xc4\xa5\x15\xb9\x28\x0a\xf2\x4b\xb1\x68\x8e\x4d\xbd\x14\x45\x79\x7d\xbe\x70\xde\xfc\x1c\xf2\xe2\xf2\x19\x90\xe8\xf2\x19\x8c\xb1\xd8\x9c\x4c\x03\x72\xb9\x32\xa4\x22\x03\x0b\x34\xa8\x78\x06\x38\xd1\x22\x49\xbc\xa0\xc7\x95\xaa\x7d\x13\x29\xa2\xa8\x48\xf3\xc4\xbe\xad\xb6\xb7\xd0\x80\x35\x1e\x36\xea\x4f\x8a\x5e\x57\x36\xe2\x4f\x8a\x5e\xd7\x89\x06\xa5\x88\xae\x74\x78\x99\xf9\x87\x84\xfa\xee\x74\xde\xf0\x56\x4b\x0f\x4d\x9c\x37\x82\x4f\x91\xcc\xdc\x93\x1a\xa4\x95\xa6\x60\x92\xc8\x39\xa5\x49\x9f\x89\xd4\x50\x5a\xd7\xff\x34\x28\xef\x15\x1d\x36\x17\x5b\x62\x2f\x5b\x1a\xc6\x9e\x5c\x9c\x30\x29\xd5\xaf\x5a\x69\x42\xa4\xf3\xdc\x5f\xe1\x2b\x6d\xca\xed\x50\xb8\x47\x4b\x37\xbe\x36\xea\x7e\xe9\x02\x74\x46\xf2\x2f\x3f\x61\xb7\x94\x88\xf5\xa5\xbb\x12\x7e\x96\x5e\x50\x21\x58\x52\x97\x49\x9b\x49\xe8\xef\xbc\x66\xe5\xba\xe7\x75\x30\x46\x85\x14\xb2\x19\xdf\x78\x01\x26\x7a\x28\x65\x5c\xac\x75\x65\x08\x56\xc3\xdf\xbe\x80\xd2\x81\x93\x18\xc1\x9a\xc7\xdb\x61\x5e\xd8\x65\x06\x86\x07\xed\xc2\x2f\x44\x4a\x2e\x0e\xc6\x65\xb3\x2b\x98\x36\x69\xcd\x5a\x91\x30\x57\x31\xbb\x97\xc3\xba\x50\x6c\x3a\xc5\x55\x1d\x98\x14\x99\xda\xc1\xdb\x17\x55\x75\xc0\x35\x5a\x0e\x1d\x2f\xb8\xe0\x4f\x4c\x6b\x80\xeb\xcb\xe1\xe3\xc5\xfb\x3a\x5e\x70\xc9\x43\xc7\x8b\x29\x3c\x6c\xa3\xcd\x14\xc9\xd2\x4e\xa0\x42\x39\x4d\x51\x66\xe0\x34\xd7\xce\x78\x7f\x12\xdb\xf2\xb9\x67\x24\xb0\x55\x22\xe0\xca\xb9\xe9\x83\x74\xa0\xaa\x0f\xe0\xc3\x8a\xaa\x3c\x00\xef\x2a\xa7\xbd\xcf\x6c\x3b\x85\xee\x7e\x98\xec\x29\x5b\x5d\xa5\x41\x01\x04\x98\x51\x97\x71\x60\x97\xaa\x8c\x03\xf9\x4c\xca\x35\xeb\x39\x33\x7c\x29\x28\x93\xbb\x55\x65\x18\xc0\x44\x96\x9f\x60\xb6\xae\xcc\xe8\x4f\x2e\x5b\x71\xf6\x97\x4b\x56\xbb\x8d\xf6\xcc\x3e\x32\xe3\x4a\xc1\xd3\x3e\x53\x7c\xc9\x90\xb5\xf1\xc2\xad\x0f\xf8\x5f\xdc\x83\x3d\xf3\x93\xdb\xd6\x95\x25\xb8\x65\xc8\x8a\xd6\x5f\x7e\x72\xdb\xba\xc2\x51\x7f\x72\xdb\xba\xb2\x09\x6f\x59\xf5\x38\x14\x12\xd3\x00\xf6\x96\xdb\x04\xff\x09\x8c\x50\x94\x70\x75\xfb\x74\x26\x01\x89\x0b\xec\x27\xa4\xad\xe0\x4f\xca\x23\x0b\x16\x6c\xe6\x11\xa6\x95\x23\xf7\xac\x7a\xce\xec\x3e\x9b\x9e\x33\x58\x25\x60\xdd\x98\x4d\x25\x60\xc5\x8f\x5f\x1e\x73\xca\x10\xab\x1c\xab\x6b\x7c\x1c\x45\x39\x56\x57\x76\xc3\x23\x4b\xd0\x42\x7b\x87\xda\xcb\xea\x3d\x82\x2e\xb0\x1b\x1e\xd3\x4b\xfb\x12\x10\xd9\x6d\x8f\xec\x25\xd1\x3e\xea\x24\xfa\xc3\x45\xeb\x64\xfa\xe7\x3c\xdb\xa6\x90\x0e\xaa\x32\xac\xae\xb9\x9e\xaa\xe4\xc5\x9a\xe4\xea\xad\xbe\x19\x53\x63\x38\xaa\x93\x02\x96\x0a\xcf\x4e\x4b\xb9\xd1\x84\x12\x73\x6e\x8c\xc1\x58\x86\x8d\x26\x6d\x05\xea\x79\xf6\x22\xfe\x5b\xa4\x3a\x4f\x22\x3a\x3d\xcc\x36\xfa\x6c\xbc\x20\xdb\x56\x64\xc1\x3a\x1b\x2a\x9d\x3d\x5b\x67\x9b\x78\xb2\x49\xeb\xec\xf0\xb3\xdc\xa2\x75\x7e\x4d\x3c\x35\x3f\x18\xca\xb0\xd2\xab\xa1\x0c\x2b\x6d\xd8\xe6\x13\x4d\xae\xce\xb6\xf9\x64\xf7\xd4\xf9\xbd\xe5\x18\x87\x6f\xb9\x74\xb2\xd8\xe6\x93\xa9\x12\xb2\x7e\x4a\x35\xaa\x56\x17\x65\x78\xa4\xc5\xc5\x26\x9e\xcf\x17\x82\x58\x33\x86\x45\x49\x7e\x37\x3e\xb0\x78\x9f\x5b\xb1\x2a\x8d\x2a\xda\x7a\x7d\x63\x8a\x07\x2d\xc8\x46\xb0\xb0\x47\x16\x5b\xaa\x72\x88\xea\xea\xbb\x99\x4e\x57\x1b\x46\x72\x8c\xea\x6a\x13\x10\xe3\x56\x60\xf1\xbc\x30\xee\x55\x09\xe3\xc2\xa8\xeb\x6a\x93\x10\x53\xb3\xda\x02\x44\x0b\xbb\x9e\xe9\xd3\xe5\x2b\x3b\x2d\x1a\xd2\x01\x65\xeb\x4b\x48\xb6\xc9\x66\xfc\x63\x4e\x6b\xdd\x84\xe9\x60\x23\x6e\xc6\x74\xe4\xb8\x56\x43\xec\xd9\xeb\x32\x4f\xcf\xed\xd3\x82\x22\x70\xd8\x57\xdb\x2b\x34\x64\x98\x12\x71\x4b\xd2\xce\xb6\x2a\x19\xb7\xcd\xec\xe6\x62\x33\x04\x2b\x24\xa9\xb7\x91\x88\xa4\x96\x45\xca\x13\xcf\x56\xb7\xd8\x89\x4a\xc7\x53\x09\x87\xa9\x45\x49\xb2\x98\xbc\xe2\xf4\x5f\xb1\xab\xd6\xe2\x20\x9d\x0c\xb3\x38\x48\x87\xdd\x5e\x9c\x35\x2b\x9a\x65\x2d\x4e\xff\xc5\xa2\x17\xe5\x93\x62\x10\x06\xd3\xe3\x35\xaf\x75\xd6\x0b\xe9\xb3\x3a\x4d\x53\x66\xa2\xbe\x4a\x62\xe8\xaa\x45\x2f\x64\xd4\x2f\xbc\x9e\xd9\x35\xbc\x1e\x8f\x4f\xad\x43\x66\x0c\x5a\x78\x83\x5b\x32\xc8\x9f\xb0\x5c\xc0\x6a\x54\x09\xcb\xeb\x32\x31\xc8\x5b\x2f\xd0\xe2\xbb\x3c\x59\x0d\xa5\xdb\x59\xd7\xf2\xa7\x2c\x09\xb5\x59\x4a\x8d\x0d\xa0\xca\xda\xdc\x93\xaf\xb1\x55\x59\x9b\xd7\x14\xf6\x6c\xb5\x49\x6c\xe5\x7f\x25\x30\x89\x70\x5e\x9b\xc0\x0b\x95\xf1\xec\x8e\x7c\xe5\x07\x55\xc7\x08\x01\x96\xac\x67\x06\xa0\x7a\xe7\x11\x68\x6a\x77\xb4\x7d\x44\xae\xda\x05\x6b\x8e\x3c\x50\x5d\x7e\x9a\xad\x21\x39\xfb\xc3\xc3\x84\xcf\x21\x5b\x5a\xed\x16\xf9\x68\xef\x90\x04\xc5\xf7\x16\x38\x2a\x1f\xc8\x9d\xcb\x76\xfe\x89\xd1\x9d\x6c\x6a\x55\x62\x74\xfb\xf4\x30\xe4\x1a\xe3\x02\x19\x92\x28\xe8\x71\x08\x51\xc8\xfd\xa1\x72\x0f\x2b\xa7\x41\xe5\x1c\xb6\x88\x48\x75\x28\xdf\x2b\x07\x6e\xbc\x9c\x3d\x2f\xc8\xd0\xdb\x92\xea\xae\x55\x19\x76\x67\x40\x89\x55\x86\xdd\x96\x7c\x7a\xad\xee\xb6\x71\xb2\xac\xfb\x6b\xb0\xe4\x07\xa7\x07\xe3\x6a\xdd\xdf\xbd\x48\xb7\x4e\x48\x91\x47\x15\x14\x8e\xf7\xad\x1e\xc2\x2b\x30\x6f\x2a\x9a\x90\xa2\x0e\xad\x1e\x96\x4d\xb2\x13\x64\x65\x6d\x24\xbe\xab\xc7\x7b\x75\xd3\xa2\x27\x22\x13\x75\xd8\xf4\xc3\x89\x3c\x1c\xaa\xc7\xcc\xd8\xa8\x9a\x62\x7b\xad\x1e\x4e\x9a\xf1\xef\xf1\x34\xa2\x38\x7f\x4b\xfe\x1e\xd0\x24\xf1\x1b\xcf\x4a\x95\xfd\x74\x7c\xbe\x97\xf9\x94\xdd\x7c\xfa\x34\xd0\xde\xd0\x66\x0b\xcd\x4e\xa4\x13\x1b\x5e\x95\xed\xb4\x7d\x38\xa1\xab\xa2\x21\xbe\xa8\x2a\x1a\x39\x0a\xeb\xa5\xaa\x61\x34\xa0\x50\xd2\x8a\xd1\xbf\xca\xee\xd9\xfb\xa0\x05\x09\xd8\xc8\x3b\x97\x10\xc4\x8d\x1e\x4f\x2d\x0b\x3d\x58\x64\xcb\x14\xdc\x52\x0a\x63\x18\xaa\xb7\x85\x97\x74\x78\xeb\xca\x87\x6d\xde\x0a\x76\x65\x84\x4e\x67\xb9\xc0\xaa\x6f\x65\x95\x65\x0e\x85\x72\x9f\x41\x9b\xd6\x7b\xd7\x25\x45\x8b\x66\xe5\x30\xbd\xfb\xc5\x0d\xf2\x83\x9c\xd9\xf4\xa0\x80\x4c\x7a\x78\x84\x57\x83\xa7\x3d\xc2\xab\x71\xe9\x3d\x2f\x70\x3f\xcf\xca\x94\xd5\x78\x36\x4b\xe1\x7d\x25\xf7\x8a\x69\xae\x3e\xd2\x73\xd9\x35\xb2\x9b\x0e\xa6\x58\x10\x93\xc1\xa2\x0a\x47\x8f\xc1\xbc\x0a\x47\x3f\x7d\xc6\x2b\x43\x14\x27\x49\x99\x72\x46\x94\xc2\xa6\x70\x52\xb2\xc0\x35\x09\xbd\xc9\x97\xdf\x9a\xeb\x1c\x87\x65\xb6\xc9\xfd\xf3\x6c\x3d\x9c\xf7\xa5\x87\xc7\x94\xd0\x5c\x23\x00\x07\x70\x53\xe1\x62\x90\xb5\x6d\x96\x1a\x1b\x91\xab\xcd\x8b\xfe\xff\x93\x1b\xa8\xfd\xa4\xdf\x86\x1b\xb6\xfd\x84\xdd\x86\x23\xb1\xcd\xd2\xc1\xe3\x6c\x6b\x3f\x31\xb5\x11\x0e\xd4\x6c\x19\xc5\xf9\xd2\x54\x86\x18\x11\xb1\x2d\xea\x20\xf2\x5f\x53\xb8\x67\x45\x49\x6e\xca\x74\x83\xeb\xad\x29\xda\xb3\xe1\x59\x69\x3f\xa9\xb4\x21\xf7\xb6\x45\x66\x84\xc6\xb3\xcc\x08\x4c\xa8\x33\xdf\xac\x59\xe1\x26\xb4\x05\x99\x28\xdb\xe2\x3b\x23\x13\x28\xd0\x39\xc7\xbe\xfd\xc4\xcb\x0e\xeb\x6b\xab\x47\x98\x0e\x57\x21\x7a\x18\xc0\x2a\x50\x2a\x03\x58\x55\xff\x8f\x1d\xb0\xfa\xd2\xe3\x7d\x59\x01\xb2\xe3\x9b\xca\x8a\x11\x6d\xdc\x56\x59\xa3\xd9\x61\xab\xc6\x3f\xd3\xbe\xee\x40\x76\x88\xa3\x41\xf1\x99\xb5\xcd\x2e\x9d\xc8\x8d\x6d\x93\xda\x1c\x36\xd1\x54\x58\x8c\xb0\xdd\xb6\x99\x2d\xf1\xbe\xd4\xfa\x42\x0f\x3a\xd2\xb1\x0d\xb5\x9f\x1c\xba\xae\xcc\x88\x50\x10\x1b\x33\x28\xd0\xc3\xc6\x16\x2d\xbe\x5d\xb2\xa4\x45\x9a\x2f\x14\x09\x1c\xde\x70\xf2\xb5\xa2\x5b\x97\x5d\xa5\x04\x33\x1b\x9b\x44\x55\xbf\x40\xf7\x34\x25\x9c\xc1\x4a\xd9\x8c\x81\x08\x1f\x6c\xd5\x7c\x33\x03\xaa\x52\xdd\x23\xbc\x37\x55\xf1\x02\x6d\xd4\x94\x30\x06\x3b\x69\x53\xc2\x18\xd0\x49\xed\x27\x4c\x8e\x8d\x09\x50\xc2\x98\x16\x59\xbf\x55\x8f\x3f\x13\x2c\xbb\x2c\xbe\x9a\x56\x3d\x7e\xfa\xf7\xf8\x19\x9f\xf8\x3e\x67\xe0\xc5\x36\x14\x3e\x70\xbe\x11\x96\xd4\xa5\x87\x51\x3f\x9a\x33\x33\x62\xc9\x6d\xcd\x18\x9f\xb0\xf6\xd6\x84\x2c\x89\xd4\xd1\x9a\xeb\xf7\xb1\xf1\x9a\xdd\xe2\x9c\x9c\xf6\x6a\xdf\xfc\x20\xed\x9b\x8d\xd4\xde\x71\xd2\x87\x0a\x63\xb0\xb3\xde\x74\x30\xb9\xc1\xda\x9b\x0e\x26\x4a\x67\x7b\xd3\xc1\xe4\x8e\x6c\xdd\x20\x0c\x3a\x71\x7e\x18\xfa\x78\xf3\xc3\x44\xc6\x6b\x5d\xb1\x07\x10\xf6\x02\x15\x58\x1e\x27\x7c\x21\xdd\x62\x33\x72\x81\xfd\xd3\x95\x2a\x84\xf5\x72\xe6\xfa\xca\x02\x39\x73\x3d\x1b\xc6\xf9\x5f\x2a\x2d\xc8\x7c\x4b\xda\xcb\xa6\xd0\xce\x0d\xb4\x52\x7b\x71\x0c\x9f\x2f\xa4\x1f\x2e\x8c\xd2\xe9\x5d\xe6\xc1\x0f\x8e\x55\x60\xd8\x2f\x90\x81\x7d\x34\x2c\x84\x41\xfa\xb0\x62\xcb\x40\x87\x15\x5b\xb6\xb2\x53\xd9\xc3\x2d\x5f\xa0\x02\x67\x67\xb7\x0c\x91\x16\x04\x3b\xc0\xe2\xd2\x9c\x88\x1e\x64\x57\xdb\x2d\x32\xfc\x29\x3b\x4f\x33\xcc\x80\x80\x9a\xb6\x5b\x2b\xce\xc4\xed\xca\x4b\xc1\xe2\xee\x56\xb2\xb8\x61\x8c\x3a\x88\x60\xda\x8c\x3a\x00\x00\xd5\x8c\x3a\x00\x08\xd4\x8e\x55\x5f\x84\xa2\xc3\x12\x7a\x04\xf2\x26\x14\xc2\x4c\x54\x4f\x13\x0a\x61\x06\xb6\xd5\x8e\x57\x99\xcf\x2c\x38\x57\x24\x39\x07\xdb\xf1\x2a\xc1\x7c\xf2\x23\x04\x71\xb3\x39\xc1\x3c\xd9\x50\x9a\x31\x06\xac\xc4\x8b\x20\x60\x87\x48\x20\x2e\x44\x38\x37\x47\x89\x02\xf9\x6d\xa7\x6b\x9f\xb1\x78\xa7\xfd\x18\x21\x55\x80\x81\x4e\xce\x96\x76\xbe\x71\x20\x34\x21\x79\x2e\xb5\x73\x5b\x13\x62\x60\x05\x26\xd5\x7e\x62\x70\x69\xdc\xe0\x4a\xb1\xb2\xe2\x48\x6b\xd7\xeb\x4d\xcf\xf4\x5d\x4d\xd9\x78\x79\xde\x95\x39\x97\x2e\xe4\xca\xe6\xd1\x22\x57\x86\x74\x39\xe9\x30\x83\xbe\x74\x1f\x31\x82\x5b\x46\x3e\x2e\x40\x95\xfb\x8d\xc8\xd7\x6e\xe7\x74\xe6\x6f\x87\x3c\x84\x20\x49\xc5\x15\x35\xb4\xdd\x16\x29\xb2\x96\xb7\xdc\x66\xd1\xa3\xdb\x4f\xe6\x5d\x57\xee\xb7\x5b\xd7\xcd\x46\x87\x4a\x00\x03\x0b\x73\xee\x14\xc0\x91\xed\x71\xd0\x34\xcc\x59\x52\x2f\x15\x9d\x5b\x7b\x8c\x67\xcd\xe3\xe6\x5d\xcf\x07\x4d\x62\x6f\x76\xfd\x23\x7f\x10\x5b\xe3\x51\x40\x70\xa7\x01\xc5\xcf\xc6\xc0\xd2\x1e\x05\x04\xc7\x02\xd6\x1e\x79\xb0\x3a\xfd\x5f\x0e\x04\xcc\xb3\x40\xfd\xc4\x93\x76\x59\x7f\x53\x79\xaa\xf5\x49\x71\x0a\x9d\xff\x15\x96\x10\x29\xa9\x4f\x0a\x4b\x08\x45\x5d\xb6\xe0\x32\x32\x69\x7d\x92\xb1\x22\x82\x7c\x9f\xe4\xf4\xfe\x74\xa0\xc0\x89\xec\x8a\x2e\x39\x18\x9f\x5e\x9f\x3d\x80\xb4\x27\x43\x2e\xa9\xac\xfb\xfc\xb2\xd3\x92\x1f\x4e\xff\x90\x21\xce\x72\x28\x41\x82\xd3\xa0\x23\x96\xf4\x59\x99\x52\x73\xc6\xfb\x22\xad\x3a\x8b\xd0\x8d\x03\x08\xf7\xed\xaf\x30\x1c\x12\x5e\x61\x98\xef\xe5\x40\xca\x22\x74\x05\x78\x7e\xfa\x5b\xe4\x50\x62\x0a\x7e\xa2\x6f\x43\xe7\xee\x8b\x34\xda\x95\xfe\x65\x4e\x09\xc3\xe8\x8b\xa4\xf7\x95\xf6\x4f\xf5\xcf\xff\x26\x98\xf1\xde\x7a\x9f\xfe\xe5\x41\xcb\xf5\xd2\x57\xd1\xcb\x12\xac\xa6\x37\xe3\x5b\xe5\x41\xeb\xfc\x2f\x7a\x73\x09\xf6\x55\x1e\x77\x96\x68\x95\xb6\x91\x4d\xd6\x25\x49\x03\x96\xed\x92\xa4\xc1\x08\xf7\x37\x7a\x33\x2a\x7d\x97\xdd\xb6\x6e\x33\x6f\x28\xa7\xd7\xf6\xb7\x74\xd8\x5d\x20\x86\x82\xbb\xa1\x6f\x02\xf7\xd3\xe1\xe6\x14\x96\xb1\xdd\x74\x49\xce\x00\xc7\xfa\xe6\x72\x69\xd1\x7e\xfb\xd6\x25\xac\xf3\x2c\xe1\x3f\x92\x5c\x97\xa8\x0d\x4c\xac\x6f\xce\xcb\x54\x79\xe1\xd4\x0b\x99\x23\xc9\xe2\x08\xf7\x7d\x93\xf4\xcf\x26\x2d\xf2\x09\x86\xb7\x76\x67\x83\x24\x17\x58\x57\xcd\x5e\x34\xb4\x5e\x5e\xb7\x66\x86\x58\x4c\x64\xe5\x07\xb3\x3b\x9a\x34\xbb\xa3\x05\xb1\x5f\x8e\xb2\x6a\xe6\xb6\x18\x66\xba\x6a\xe4\x92\x84\xbf\x57\x67\x86\x8e\x6c\xda\x55\xe4\x96\x90\x84\x5e\x05\xb6\xcf\x05\xd0\xab\xf4\x91\xe8\xf0\xbd\xda\x4c\xc2\xf7\x36\x93\xf0\x2c\x7d\x85\x6d\x51\x7d\x3f\xf0\xbf\xf4\x15\xe6\xb0\x69\xc0\x8d\x67\xb9\x21\x99\x00\x61\x12\x36\xf6\xbd\x31\x09\x58\x7e\x7a\x93\xab\x8d\x83\xde\x24\xbf\x47\x48\xe9\xaf\x1c\x5c\x69\x41\xbe\xb5\x88\xbd\xbd\xeb\xc6\xe2\xa4\x49\x0c\xde\x80\xf8\xf4\x9f\xd4\x3b\x36\x8e\x46\x97\x4a\xc5\x32\x77\x69\x20\xec\xa3\x6e\xe9\xfe\xf3\x82\xa4\xfb\x88\x69\xbd\x7b\x88\xa1\x51\x22\xed\x27\x4b\x59\xef\xbe\xc4\x18\xd2\xa3\x1e\xf2\xff\x90\xfb\x2f\x97\x5a\x97\x25\xb5\x45\x25\xe9\xc3\x23\xcc\xf7\x43\x4a\x5f\xf4\xf6\x3e\xa4\xf4\xc1\x8c\x6c\x59\x85\x99\x0d\xe9\x78\x6c\xfc\xf1\xce\x21\x0d\x5a\x97\xc8\x24\x3b\xf1\x20\x60\xec\xae\xca\xb7\x1b\xec\x76\xb7\x2a\xc1\xba\x0a\x73\x4b\x94\x4a\x77\xda\x41\x8c\x45\xdd\x69\x07\x01\x99\x77\x55\x5d\xc2\x02\xde\x77\x9b\x41\x3f\x3f\xc8\x83\xc9\xde\x77\xd6\x41\xd0\xdd\x7d\x77\x0e\xcd\xcf\x1b\x56\xa2\xd8\xad\xbb\x01\x2e\x1f\xc2\x2c\xe2\x32\x35\x87\x3c\xb1\xb0\xa9\xc3\x36\xe6\xa8\x0a\xfd\x78\x95\xa6\xb4\x79\x98\xd2\x2c\xce\x61\x4a\x63\xa9\xef\x92\x68\x0b\x39\xb0\xbb\x0c\xbc\x8d\x2c\xfb\xdd\x12\x2d\x69\xb5\xbb\x2d\xbe\x48\x00\x87\x4d\xdf\xdc\xe0\x87\xb4\xa6\x78\x4e\xbb\x92\x0e\x92\x21\xbe\x9f\xd6\xc2\xd3\xe5\xa9\x32\xad\x50\x71\xda\xe8\xcc\xa9\x38\x5f\xc5\x8d\x2f\xac\xb8\xb1\xe9\x4e\x8f\x29\x43\x38\xad\xc8\x65\xcc\xa7\xfd\xac\x4c\xdd\x69\x4d\x0e\x2a\x4e\xfb\x59\xa3\x3f\xf4\xd3\xaa\x1c\xc3\x56\xce\x41\xe2\xf0\xfa\x65\x70\x3d\x74\x5e\x8b\x8f\x12\x6f\xac\x26\xe4\x4f\xd1\x41\x5d\xf2\xf3\x44\x3d\x83\xee\xf2\xb5\x8c\xf9\x7a\xe7\x25\xd3\x20\x80\x6d\xc5\xcf\xd2\x2f\x39\x38\x11\xb6\x2e\xeb\x81\x9f\x26\xad\xf6\x41\xb6\x6b\x25\x2d\x10\xe1\x52\x48\x0b\x64\x2a\x40\xb1\xa3\xf8\xf5\xdb\x1a\x2b\x13\x63\xe3\x31\xe2\xc0\x2d\xb7\x6b\xa3\x49\xeb\xab\xac\xce\x6d\x7d\x15\xca\x54\x03\x17\x53\x59\x77\xb9\xa3\x05\x26\x73\x2b\xfc\x79\x7c\xde\xb0\x68\x9d\x16\x1e\x87\x92\x72\xbc\x8c\xa4\xa5\xe8\x46\x77\x5a\x42\x70\x1c\x5d\x61\x8c\x33\x16\xd5\xee\x3c\x85\xd1\x5f\xfa\xe3\xaa\x17\x31\xdf\xf4\x47\x2a\x2f\xbb\xee\xb1\x95\x1c\x5e\xa5\x02\x48\xd8\xe5\xbb\xa4\xe7\xb9\x7d\x5a\xb8\xfd\x05\x7d\x3c\x7e\xe3\xdf\x4e\x1d\x93\x0a\x35\x45\x67\x1a\x93\x87\x1d\x1b\xd3\x70\x79\x23\xf0\x1e\x63\xb2\x96\x9a\x3b\x60\x4c\xce\xf8\xbb\xd2\x86\x3d\xb3\x59\xb1\xe1\xbc\x82\x30\x8e\x31\x29\x7d\x62\x26\x6b\xcc\x76\x28\x6f\xfc\x60\x5c\x7b\xb6\xc5\x98\xad\x95\x66\xe3\x8c\xb7\x3e\xd1\xe0\x93\x21\x9d\x93\x17\x0c\x52\x8f\x17\x64\xbc\xf5\x87\xa2\xf9\x0e\x81\x1f\x16\xe2\x7f\x87\x24\xef\x25\xf5\x09\xdb\x58\xac\x30\x05\x9c\x33\x84\x76\x58\x7a\xac\x59\xc3\x15\x88\x7a\xb4\xfc\x21\xb8\xc3\x92\xe2\xf4\x6d\xfc\xa4\xeb\x42\x68\xfd\x70\xc1\x21\x92\x2e\x8f\x9f\xf8\x5c\x40\x99\x8f\x45\x39\x13\x22\x96\x8c\x9f\xf8\x5c\x00\x7d\x8f\xc5\xd9\x0e\x57\x7e\xb0\x35\x3c\x02\xf9\x10\xfc\x61\x25\x0e\x6a\x08\xed\xb0\x12\x62\x34\x84\x76\xe8\x40\xe3\x87\xd0\x0e\x1d\xb8\xfd\x58\xad\xfa\x85\xa7\x8d\xf5\x05\xe4\x87\xd2\x55\x31\x64\x84\x03\x0d\x85\xf3\xad\x14\x34\x18\x12\x9c\x57\xcc\xf2\x63\x35\xd2\x2b\x8f\x6f\x42\x44\xfe\xb7\x2f\xac\x30\x0a\x25\xbc\x2a\x0c\xc2\xfa\x20\x5d\xca\xe1\x18\xd1\x7f\x6c\x4a\x3b\x10\x55\x69\x6c\x72\xde\x7d\x9e\xa5\x1e\x46\x75\x1a\x82\x0f\xa7\x56\x67\x1b\x12\xac\xc7\xe7\x7f\xb9\x71\xa2\xaa\x0c\x85\xf2\x81\xe0\x18\x9b\xdc\x28\x9f\xef\xe5\xc6\xf9\xbc\x2f\x44\xfe\xe7\x7d\xa9\x36\x61\x4d\xa3\x48\xb5\x61\x07\x16\xa9\x36\x6c\xfb\x22\x55\x8e\x5d\x5f\xa4\xda\x70\x4e\x8a\xb0\x81\x1c\xac\x62\xd5\x2e\xf3\x55\x94\xc9\x82\x2d\x5f\xa4\xea\x0c\xda\x57\x66\x08\xa0\x71\x43\xa8\x8a\x4f\x42\xd6\x61\xf4\x71\x34\x8d\x61\xf4\x71\x38\xfa\x28\x52\xee\x38\xeb\x46\x1f\x73\x84\x8a\xe0\x91\xe3\x4f\x77\xd2\x28\xd2\x74\x39\x6e\xd5\xd3\x93\xce\xaa\x90\x87\xec\x6b\x85\x0c\x96\xc1\xe8\x04\x5d\x06\x13\x32\x04\x5d\xe6\x8a\x1c\x55\x60\xd1\x4e\x03\x4d\xff\xf3\xbd\x9c\x28\xac\x67\x95\x93\x84\xfd\x56\x05\x9d\x64\x3d\x5f\x91\x3e\xb3\xe5\x1c\x2c\xc8\x4c\xa3\x59\x29\x49\x07\x4d\x06\x96\x5c\x99\xa3\xc9\x47\x92\xcb\x6b\xbc\x3a\x40\xd6\xa3\xc9\x84\x9f\x4b\x62\xfc\x44\xfe\xb1\x71\xd4\x9b\x4c\xf6\x2b\x03\x30\x78\x27\xaa\xe9\x78\x55\x80\x0c\xc8\x60\x0a\x0c\xa9\xa3\x5b\xc0\xce\x08\xba\xbc\x2a\xd1\x9e\x87\x51\xcc\x60\xaf\x47\xb7\xab\x8c\x4d\xa9\x10\xbd\x96\x6a\xde\x6d\xd8\xf2\x8d\x91\x64\x74\x19\xec\x23\x7b\x8e\x17\x76\x1c\xd5\x6a\x38\x4d\x39\x20\x97\xe1\x12\xac\xd8\x5d\xc6\x9b\xa4\x90\x99\x72\x09\x56\x12\x7b\x8d\x37\x49\x61\x14\xc4\xe1\x12\xac\x64\xd2\x1a\x6f\x96\x42\x66\x7f\xbc\x72\x35\xe3\x78\x6b\x32\xd1\xa8\x31\x75\x70\xa4\x17\x79\x11\x49\x7b\x38\x97\xf9\x87\x89\xc9\xd6\xdd\xb0\xc3\x0d\xe5\x4e\xd9\xb0\x9a\x0d\xab\x10\xe4\xcd\x1b\xce\x5d\x4e\x1e\xba\x61\x1d\x82\xc4\x76\xc3\x70\x8e\xe5\xf3\x86\xc2\x06\x40\x3b\x0d\x57\x6e\x65\x4a\x6d\x30\xff\xb4\x60\x83\x39\x67\x41\x19\x54\xda\xfc\x69\xd2\xe2\x44\x28\x7b\x8d\xe4\xb0\xef\xfd\xbd\xc7\xb3\x28\xbb\xc1\x16\x1b\x9f\xf8\x62\xcf\x17\x87\x11\x56\x30\x9c\xc3\x08\x2b\x9e\x5f\x0b\x64\x86\x2d\x2b\x39\x49\x69\x87\x54\x88\x95\x54\x4a\x43\x2a\xc4\x4a\x1d\xa0\x21\xa3\xf8\x4a\xa1\x9f\xf1\xd3\x29\x2a\x9a\xce\x38\x7c\x88\x43\xe7\x71\x69\xc7\xf3\xbe\xfd\x8c\x79\x74\x89\xbb\xbc\xee\xa0\x3b\x76\x91\x63\xee\xb8\x9f\x5d\x3a\x29\x75\xb4\xdb\x38\x8d\x0d\x08\x09\xa7\x0f\x0c\x1d\x9e\x0e\xaa\xe2\x83\x61\x2b\x67\x9e\x77\xc7\x7d\xf2\x82\xbc\xf3\xf0\xc1\xb7\xd8\x12\xf3\xae\x62\x4b\xd3\xa7\x4b\x59\x31\x61\xa4\xa7\xac\x98\xdc\x33\xb2\xae\x0f\xbc\xcd\xe3\xf2\x75\xcf\x4d\x7b\xf9\xa6\xcc\x2c\x2b\xd5\x09\x09\x20\x86\xaa\x29\x7d\x0e\x8a\x52\x99\x14\x36\x93\x52\x99\x14\x4e\x85\xaa\x25\x15\xb6\xfc\xf5\xe8\xfb\xb4\xa7\x62\x49\xa9\xda\xdc\x86\x33\x99\x50\x7e\x69\xfc\x34\x85\x05\x5c\xf2\x70\xb5\xa4\x18\x9c\xc6\x5d\xd5\x60\x48\xfe\xa9\x09\x0b\x10\xdc\x21\xeb\xfa\xf6\xb7\xd4\xd8\x43\x69\x16\x0b\xa7\xfe\x36\x35\x8c\xd6\xd4\xa4\x71\x97\x62\xfa\x88\xbc\xb2\x9c\x7f\xc2\x66\x87\x72\x8e\x00\xb6\x1a\x4a\x31\xf2\x39\xbe\x8f\x8c\x4d\x91\x1c\x76\xc1\xa0\xd7\x85\x67\x5f\x24\x23\xcf\xba\x48\x62\x90\xdb\x95\x10\x84\xaa\x95\xfb\x4f\x4c\x5f\xd7\x88\xed\xbb\xa4\xf4\x0e\x74\x6b\x9f\x84\xca\x8f\x32\xb1\x2b\x2f\x22\x85\x1d\xf7\x49\x28\xfc\x85\x06\x65\x9e\xeb\xbc\x2f\xf3\xdc\xc2\x00\x5c\x23\x30\x66\x8f\xdd\x18\xe8\xac\xe8\x3e\xcb\x4e\x12\x59\x65\x9f\x75\xd1\x64\xca\xf6\x59\xb6\xa7\x8d\xef\x05\x64\x8f\x31\x61\x9f\x65\xd9\xc9\xb5\xb3\xcf\xb2\x45\xe5\xaa\xdd\x67\x5f\x95\xf4\x27\x6b\x59\x98\xd5\xae\xea\x4a\x44\x98\xee\xb3\x2c\x4f\x95\xfe\x75\x53\xe6\x9e\xdb\x17\x99\x3f\x62\x73\xd9\x17\x8f\x37\x13\xb8\xf8\x7a\x61\xc9\x0c\x5c\x46\xda\xdb\x17\x67\x6d\x62\x51\x16\x5b\x65\x98\xe4\xe5\xcd\x04\x91\x41\x2f\x76\x80\x7c\x7a\x51\x52\x6e\x66\x75\xb1\x0b\x9e\x36\x57\xdf\xa5\x2c\xcc\x2a\x7b\x47\x14\x8e\x5d\xb2\xfe\x00\x69\xb2\xaf\x72\x54\x67\x33\xef\xeb\x6b\xde\xc8\x20\x54\x27\xf4\x13\x52\xbd\xaf\xb2\x6f\x14\x5a\xb0\xc9\x85\x2e\x2e\xfd\x1f\xb2\x2c\xa6\x2f\x8c\x7a\x15\x8a\x9c\xb5\xdd\x6c\xdc\x48\x8f\xdb\x5b\xf7\x2f\x2d\x6c\xef\x7d\x97\xb9\x74\x1e\x0e\xa2\x25\xf7\x4d\xf7\x1d\x64\x1b\xe8\xbc\xe4\xc2\xdb\x25\xbb\xcf\x4b\x58\xd0\x2e\xe1\xfd\x53\x36\x66\xdf\x6c\x35\xe3\x10\xfd\xc4\xf7\x0d\xf1\x6e\xdf\x64\x28\x60\xae\x8b\x95\x61\x5a\x28\xf6\xd0\xc6\xf8\xb7\x17\xdf\xba\x99\x99\xe2\x5b\x37\x12\xe9\x2e\x94\xf2\x0c\xa8\x63\x2f\xef\x2d\xcb\x27\xa7\x7f\x08\xa5\xc5\xc5\x05\x98\xad\x9f\x58\x5c\x70\x88\xec\xd5\x15\xae\xc2\x4c\xf6\x6a\x5d\x98\x17\x54\x8a\x97\xf5\x14\xb0\x63\xe9\x91\x12\x77\x67\xe5\xe6\x8e\xdc\x2d\x97\x66\x2e\x5b\x11\x24\x37\x74\x3b\x31\x60\x64\xaf\xbd\xc9\x0f\x38\x68\xcf\x37\x5a\x3a\xb4\x29\x7b\xa5\x3d\xf9\x01\x07\xed\x5d\xa6\x20\x6b\xd5\x7c\x81\xd1\x81\xe2\x2c\x73\xa1\xed\x5d\x6e\xb8\x28\x36\xbb\x2c\xd9\xe3\xf3\xec\xb2\x60\xd1\x53\xf6\xbe\x89\xfd\xa7\x03\xe5\xfc\x23\xb2\x6d\xef\x0a\x1b\x63\xf7\x74\xe1\xbf\xe0\x06\xdd\xf7\x1d\xff\xcb\x09\xc6\x76\x34\xa6\x98\x19\x32\x44\x98\x25\x18\x72\x98\xfc\x2d\x46\x68\x97\x38\xdc\x40\x24\xef\x43\x98\xd0\x48\x90\xbb\xa4\xe1\x3e\x16\x7e\x90\xa2\x13\xb1\x69\x1f\x56\x74\x32\x3c\x03\x8c\xd9\x64\x3f\x51\x78\x5d\xd9\x63\xc3\xb7\x01\xed\xc9\x37\xc2\x49\x18\xf7\x8f\xf9\xc1\x01\x76\x31\x43\x78\xc8\x2e\xe6\x0d\x07\x78\x2d\xd6\x8c\xd8\x16\xeb\xc6\x0b\xca\xbc\x12\xc9\x7b\xdf\x65\xb5\xe5\xbc\xef\xe2\x18\x91\x27\x76\x49\x92\x9f\x04\xa5\xbb\x01\x17\xa4\xc2\xdf\x6d\x8d\xae\x9f\x1f\x1c\x9a\xc2\x1a\xda\x1c\x4d\x16\xc2\xdd\x88\x0b\xd2\xe7\xef\x46\x5c\x50\x48\x76\x37\xe2\x62\xf9\x7c\xf2\x72\x15\xc6\x21\x23\x28\xb7\x80\xec\xd3\x9f\xdc\xe8\xbb\xca\xe4\x74\x32\x79\xee\x87\xad\x72\x1c\xb6\xc3\xd6\xc5\xbc\x20\xf8\x44\x2a\xcc\xb7\x5d\xf2\x62\xc1\x49\xb2\x3b\x79\x1e\x6a\xe4\x7e\x3a\xb3\x41\xfa\x3c\x05\x6d\xe0\xd1\xe9\xd3\xb9\x02\x54\x5b\x93\x30\xcd\xdd\x95\xf5\x97\xc8\xcc\xfb\x25\x9f\x2f\x97\xe3\x65\xe9\x29\x2d\xaa\x6e\xfe\x27\x0f\xce\x2e\xdb\x6f\x07\x85\xbc\x0b\x4e\xb1\x11\xbb\xbd\x5f\x3e\xe3\x5c\xe0\x3f\x11\x70\x25\xf6\x74\x57\x98\x1e\x11\xb7\xbb\x45\x40\x8c\x93\xbb\xe3\xf2\xe0\xa5\x8e\xcb\x63\x8f\xdd\x96\x79\x32\x8f\x8e\xd3\x63\x69\x94\x4f\x61\xdb\x3e\x2f\x0c\xc3\xa3\x78\xe3\x25\x8b\x26\x25\x44\xb0\x0d\x6f\x69\xb2\x11\xfe\xf7\xdb\xee\xa2\x4e\x93\x72\x17\xb1\x76\x8f\xcc\x7f\xcc\x82\xcb\xda\x77\xe6\x49\x56\x5d\x0a\x91\xec\x8f\x59\x65\x66\xc5\x90\x09\x38\x9f\x91\xc1\x9f\xb5\x93\xd5\x77\x7c\x9e\x8d\x1f\xa8\xfc\x60\xde\xf9\xaf\x87\x63\x92\xd1\x28\xff\x1f\xc2\x4c\x94\x5c\xd6\xc7\x64\x49\xba\xe7\xd9\x7b\x61\xe4\x59\xac\x2f\x24\x1e\xc2\x12\x97\x1c\xed\x63\xf2\x09\x28\xfc\x20\x30\x31\xd6\xc6\x43\x20\x8b\x92\x59\x3c\x04\xb2\x28\x61\x77\x87\xc1\xc6\xf1\x87\x1d\x3f\xd1\x71\x01\xc9\x79\x18\x6c\x9c\x49\x3d\x8c\x27\xce\xee\x3d\x66\xa3\xb5\x23\x6f\x1c\x4a\xcd\xc0\x0d\x7a\x38\xa7\xf6\xa0\x01\x49\xe3\x85\x01\x48\x1a\xcf\x7d\x76\x28\x4f\x1c\xa6\xf8\x63\x96\x3b\x9c\x29\x9d\x9d\x1e\x35\x7b\xfb\x10\x46\xa3\x47\x7d\x3a\x94\x74\x9b\x7d\x75\x28\x71\x1c\x47\xfe\x50\xe2\x38\x14\xe9\xc3\xf8\xe4\x1c\xaf\x63\x11\xfa\x37\xbb\xe0\x50\x31\x9a\x82\x73\xfb\x58\x6c\xb9\xe2\xd9\xc2\x4e\xe1\x0b\x93\xf8\xa7\x0b\xe8\x50\x9e\x39\x4c\x03\xc7\x22\x70\x70\xee\xeb\xc3\xe0\xe6\xc2\xf0\x3c\x1f\x90\xaf\xdb\x2f\x27\xf7\x58\x7d\xfb\xf1\x2c\x43\x1e\x83\x53\x2a\x39\x8c\x15\x87\xc1\xd1\x11\x30\x0f\x83\xa3\xc3\x00\x0f\x83\xa3\x73\xbb\x1f\xab\xd6\x37\x6c\xfb\x58\xdf\x1a\xca\x34\x28\x82\x62\x78\x3d\x36\x19\xee\xd8\x00\xc6\x64\x90\xc0\xf0\x90\x44\x5a\x06\x7b\xce\x68\x66\x26\xd8\x68\x66\x48\x56\xc5\x4e\x0a\x24\x1f\x9b\x82\x82\xd9\x01\x82\x68\x50\x5d\xe2\x50\x05\xcf\x35\xa2\xe4\x61\x34\x74\x58\xf8\xb1\x49\xff\x5a\xf9\x5e\xfa\x17\x4b\xb0\x49\xff\x5a\x79\x5f\x56\x0c\x76\x88\xd1\xd2\x91\x08\x8e\x22\x85\x32\x32\xe2\x51\xe6\xdf\x73\xd4\xb1\x43\xb5\x72\xf0\xe2\x1c\x45\xb1\x3a\x11\xd9\x8e\x62\x21\x93\x33\x50\x4c\x70\x3a\x2c\x26\x30\x1d\x54\xeb\x4f\x21\x40\xe5\x34\x37\x0e\x75\xb5\x0f\x22\xde\xaa\x43\xf5\x34\x01\x84\x1c\x55\xae\x7d\x36\x51\x95\x02\x98\xfb\xfd\xa8\x72\xed\xb3\x09\x55\x4f\x13\x7c\xc5\x61\x38\x34\x87\xba\xfa\x22\x8e\x6f\xeb\x30\xde\x99\x5d\x57\xad\x11\x66\xca\x04\x77\xfe\xe0\x88\x0f\x15\xd0\xdc\x72\x2b\x1e\xcd\x24\x65\x0a\x9a\xa5\xa2\x34\xd0\x4c\x51\xa6\xac\x99\xa2\x50\xf8\x13\xab\xb7\xb9\xd1\xbe\x28\x82\x8f\x35\x51\xf4\x79\xee\xfa\x3f\x33\xd2\xde\x4b\x37\x0d\x1a\xc6\x0c\x64\xe4\x30\x6a\x39\x1a\xcc\x61\xd4\x32\xb1\x9c\x87\x50\xcb\x54\xa5\x3c\x5e\xdb\x2d\xfb\xb4\x5b\x49\x62\x63\x09\xb5\x0c\x5e\xfb\xe8\x46\x16\x0c\x06\x61\x64\x41\x8c\x7e\x47\xf7\x25\x09\xb3\xea\xba\x24\xa3\x06\x1f\xaf\x3d\x98\xbd\x33\x8c\xcf\xe6\x7c\xca\x1e\xfc\x41\x3c\x1c\xae\x5b\x19\x7b\xc8\x31\x3c\x95\xb4\x60\xed\x9c\xf3\x39\x44\x68\x64\xa2\xc3\xb6\x5f\xc2\x26\x8f\xe1\x8b\x98\x5b\xca\xa6\x5e\xe2\x8c\x8f\xf1\x52\xca\x27\x96\x06\xf2\x82\x50\xcd\x28\x0d\xc7\x2e\x55\x9c\x7b\x6a\x37\x15\x6c\x69\x97\xa4\xfc\x30\x3a\x63\x43\x80\xcb\x1f\xc6\x6d\x10\x83\x7a\xec\xd6\xb5\x69\xc2\x76\x17\x0e\xb2\xeb\x49\xe2\x71\x3c\x5c\x3e\x92\x5d\x2c\x41\xb9\x91\x3a\xf9\x38\x14\xbf\xc5\x41\x71\xb1\x48\x5c\x90\xc7\xe1\x14\x4c\x6c\xfc\x9f\x14\xbc\x11\xd1\x79\x1c\x36\x21\x70\x74\x0e\xe3\x1b\xd8\xaa\xa7\xb9\xc1\x9f\xd2\xf2\x1c\x82\x6c\xa0\x4c\x1d\xa7\x07\x98\xb5\x73\x0c\x1e\x78\xb7\xc3\x35\x1f\x61\xb6\xa7\xcd\xf6\xf0\x82\xd3\x66\x7b\xb8\xcf\x29\x13\x06\x14\xbd\x80\x0c\xb8\xcf\xe9\x2b\x9d\x3b\xca\x05\xea\x41\xe5\x1c\x2e\xf2\x88\x25\xf8\xb8\xac\x4e\xb0\x56\x2e\xea\x48\x01\xee\xc3\x45\x1d\x3b\xcf\x86\x26\xb0\x56\x97\x2c\x10\x9c\xbe\xcb\x48\x7a\xf6\xf5\x0b\xa9\x60\x62\x5f\x48\x05\x9b\xee\x72\xf0\x3b\x3b\xdd\x85\x20\xf9\x42\xe1\x7c\x9f\xcb\xdc\x75\x20\xb1\x78\x1f\x2f\x28\x83\xc9\x51\x80\xdf\x47\xb8\x78\x31\x19\x4c\xd6\x2d\x63\x0c\xc7\xf5\x7e\xd5\xa6\x0c\xdb\x95\x21\x09\xc8\x3b\x6e\xcd\x04\x5c\xe5\x05\x69\x20\x55\xde\x06\x93\xc0\x67\x6e\xe7\xcd\x8f\xce\x7a\xbc\x10\x0b\xae\xc8\x17\x62\x81\x98\xf1\xd8\x5e\x83\xdc\x60\x48\x05\x84\x3d\x36\xcf\x20\xaa\x1a\x63\x01\x6a\xfb\x78\xac\x11\x40\xea\x63\x7b\x0d\xb2\x87\x04\xf2\x4f\x9e\xad\xe3\x85\x61\x70\x53\xaa\x5a\xe4\x87\x77\xbd\x28\x8c\x1c\xd9\x73\x32\x52\x3b\x97\xf5\x39\x39\x9a\x60\xe3\x07\xd3\x1a\x01\xf2\x9c\x5e\x5a\x7b\x7e\x30\x2e\x63\xe5\x0d\xdb\xa6\xb2\x81\xcf\xc9\xc4\xd3\xab\xf1\x24\x11\x3a\xcf\xc9\xb6\xa9\x42\x13\x2f\xad\x5b\x7e\x50\x98\x44\xe5\x59\x61\x12\x39\xa8\xe7\x64\xd5\x76\xa3\x4f\x93\x1a\x31\xe5\x9c\x4d\x6a\xf8\xd7\x39\x6b\x37\x76\x5e\x78\xc5\x82\x10\x36\x3b\xeb\x7a\x98\xcd\x39\x1b\x5f\x02\x61\x82\x7a\x34\xe2\x8c\x4f\x43\x3d\xd0\x40\x4e\x43\x3d\xb8\xc9\xcf\x59\x8e\xaa\xd8\x37\xce\xd9\x36\xb6\x08\x13\xe7\x62\x48\x4a\x04\xc2\x73\x99\xf5\x45\x5a\x58\x8c\x48\xc9\xb2\x9f\x3f\x91\xbe\xa0\x4b\x9e\x46\x82\x7c\xe6\x7b\x71\xc0\x75\xd8\xd8\xb9\x28\x95\x66\xee\xde\x73\x71\x4e\xc9\x30\xe2\x73\x79\x29\x0d\xe9\xc2\x8a\x00\x55\x3e\x85\x15\x01\x3b\x7e\x3a\xa5\x1b\x39\xe1\xce\xe5\x25\x3c\xa3\x5a\x4d\x17\x4b\xb6\x3a\x41\x64\x2e\xe7\xf3\xad\x97\xcf\x6c\xae\x8a\xe6\xc8\x21\x3a\x57\x15\xfd\xd8\x68\x61\xb8\x53\x7e\x38\xfc\x03\x5f\xbc\xc3\xca\x54\xac\xca\x7c\xc9\x36\xf9\x89\xe3\x05\x5c\xc3\x29\x71\xbc\x7e\xd6\xeb\x27\x8e\x7f\x2a\x5f\x9f\xb2\x0f\x7f\x14\xf1\x73\x33\xee\x86\x6d\xb3\xbd\x8a\x76\x66\x5b\xf6\xe0\xa5\xcf\xb4\x61\x24\xce\x4c\xaf\xbb\x7f\xf8\x13\x8c\xfb\xdc\x8c\xcb\xe1\xeb\x4b\xcf\x19\xf2\x4f\xe0\x2e\xf8\x2f\x4e\x41\xa4\x2b\x41\xfe\xa7\x20\xd1\x2b\xa9\x10\x4f\x99\x97\x57\x72\x09\x9f\xc5\xd9\xed\xc2\xf2\xce\xe2\xa4\x97\x33\x8d\x3a\xc7\xe5\xcc\x27\xbb\x7f\x08\x95\xb2\x2f\xaf\xa4\xb2\x3d\x65\x5f\x5e\x97\xcf\x38\x8c\xc9\xad\xf4\xf2\xfc\xf7\xbf\x42\xcd\xc3\x53\xf6\x66\x6a\x28\x9e\x55\x3e\xda\x5c\x07\x67\x55\x5e\xcb\xdc\xbe\xa7\xb2\x62\x70\x89\x9d\x42\x62\xaf\xa4\xa8\x3b\x95\x15\x63\x25\x47\xdd\x59\x5f\xa4\x50\x26\xcf\x69\x31\x10\xa5\x4f\x65\x66\x5e\x89\x62\x38\x95\x27\x83\xcc\x61\x67\x7d\xa9\x60\x14\xb7\x5e\xe0\x59\xa8\xa8\xc2\x1e\x52\x9e\x8c\x4a\xcd\x9d\x53\x05\x73\xb0\xa4\x9c\x4e\xc4\xcc\x54\x3a\x33\x06\xf8\x81\x53\x66\x71\x52\xd1\x9e\x4d\x70\xa0\x08\x8c\xe7\x2b\x9f\xc7\x49\x76\x2a\x94\xb1\x20\x85\x9e\xcd\xc6\x1b\x5a\x74\x01\x3c\x66\x46\x86\xec\x8f\x41\xe9\xec\xb2\xde\xb0\xed\x6c\xc8\x8e\x2c\x7d\x76\xef\x19\x26\xa6\xcb\x7c\x13\x21\xf5\xec\x32\xe5\x41\xb5\x2d\xd7\x10\xd5\xe5\xc9\x65\x88\x5d\xbe\xcf\x48\xda\xa7\xab\xd0\xa3\xb5\x9c\x43\xa0\x25\xe6\xd5\xc6\x6a\x68\xb2\x6d\x1a\x3e\x68\xdb\x34\xb3\x34\x14\x7f\x92\xeb\xf1\x1c\x8a\x6c\x8e\x3e\x71\x0e\x29\xf7\x1c\xa4\x61\x3d\x6e\xe1\x03\xab\xbe\x7c\x20\xd5\x97\xfd\xbb\x0b\x68\x0f\x87\xdb\xe5\x4b\x65\x80\xbb\xac\x0d\x91\x0a\xce\x5d\x76\x44\xb8\x93\x32\x65\x7c\x94\x8b\x53\xd5\x69\x36\x80\xf6\xe7\x6e\xdd\x37\x24\x49\x6a\xdf\x88\xaf\x38\xf7\x77\xd2\x78\x43\x38\xf7\xc8\x19\xe7\x21\x18\x0e\xfc\xec\x90\x2a\xc9\x6e\x3e\x84\x7b\x67\x1b\x1c\x52\x25\xe9\xe0\x50\xec\x70\x64\xb8\x53\x76\xea\x4e\xfa\xa2\x53\xe5\xdc\x29\xac\x7e\x2a\x52\x70\x22\x63\xc8\x69\x60\x35\x11\xe3\xa7\x0c\xd7\x13\x81\xb8\xe7\xe1\x62\xb4\xb1\x02\x9f\xce\x9d\x41\x79\xbf\xf3\x7c\xfd\x12\xf9\xe4\x7c\x55\x89\x8c\x5b\x68\xeb\x8f\x1e\x76\xbe\x68\x6b\x46\x7e\xda\x72\xc5\xfe\x32\xda\x1a\xa1\xe3\x95\xe5\xd9\x70\x2f\xdc\x9a\xf5\x39\xcd\x0b\x3e\x6d\xda\x3e\xf5\xef\xf1\x7a\x25\xde\x0c\xf3\xb2\xbb\x08\x52\xff\xc9\xf6\x7c\x62\x89\x96\x73\x76\x29\x95\x35\x0b\x76\xd9\x6e\x1b\xe1\xf3\xbc\x2c\x2b\x85\xd0\x4b\xb2\x12\x33\x71\x59\x2a\xa4\x4b\x79\x01\xd8\x11\xaf\xd8\xfe\xb7\xcb\xe8\x56\x5e\x28\xb6\xc3\xfd\x6e\xd9\xb4\x7e\x5b\xd6\xc8\x68\xee\x57\xf2\xe5\x87\xdd\x77\x74\xc6\x7f\xbf\x97\x76\x66\xf5\x76\xb5\xce\xcf\x08\x5f\x37\x62\x7a\x15\x0c\x62\xc5\x1e\x71\x4a\x44\x5f\xa9\xdb\x77\x3e\x66\x67\x4c\xe3\x63\x7c\x4f\x8c\x32\xa7\x61\xd0\xe8\x96\xe7\xf3\x16\xe2\x0e\x29\x32\xa1\xaf\x85\xf3\xfe\x58\x95\xa7\x89\x61\x5c\x29\x3f\x38\x91\x0d\xa3\x38\xed\x3f\xc9\xfe\x78\x94\xe9\x39\xf6\x87\xf3\x8d\x3b\xfc\x47\xd8\x25\x01\x7d\x0c\x9e\x7f\x2c\x8f\xa3\x72\x39\x2c\x31\x23\xba\x14\x96\x88\x16\x7f\x4d\xdb\x7f\xff\x5b\xa6\x88\x65\x97\x84\xf5\x11\x7e\x71\xc9\xe4\x4e\x7a\xec\xeb\x27\xaa\x2f\x53\x24\xaa\x4b\x26\x78\xcc\x3a\x97\xca\xb5\x4c\x91\xa7\x2e\x95\x6b\x21\x53\xc1\xf5\x13\xdc\x17\x52\x1d\x5c\x93\x78\xfa\xa0\xbd\xeb\xf7\xff\xc2\x78\x64\x90\xef\x7c\x2f\x83\x7c\x6e\xf0\xeb\x27\xb5\x2f\x64\x46\xb8\x9c\xfd\x23\x72\xe8\x65\x83\x7c\x0e\xd8\x65\x83\x7c\x76\xdb\x35\xcb\xfb\x3a\xf3\x5c\xf4\xcc\xfb\xf2\xbe\x46\xb8\xbe\x66\x81\x77\x22\xa2\x5c\xb3\xee\xb0\xc8\xd6\x97\xec\xf7\x44\xfd\x5c\xb3\xe8\x5f\x18\xaf\xe8\x0f\xf3\xbb\x94\x6a\x99\xb8\xa5\xcb\x09\x45\x3a\xed\x9b\x7e\xfe\x17\xfd\x91\x68\xae\xc5\xf4\xa7\xff\x45\x0e\x89\x88\x61\x97\x52\x2f\x93\x99\xe1\x92\xec\x5f\x31\x68\x5d\x8b\xee\xb0\x46\x83\x0a\xd0\x6b\x34\x20\x6b\x6f\x54\xb1\x4b\xb5\x5b\x60\x06\x97\x0c\xec\x83\x0d\xb4\x3c\x7a\xce\x04\x2a\x46\x72\xb0\x21\xd7\xdf\x00\x07\x13\xa8\x18\xc9\xc1\x80\x7f\x52\xff\x32\xc2\xc9\x2f\x1b\xd4\xc3\x63\xaf\xd5\x77\x32\xff\xfb\x0e\xa6\xfd\xa1\xef\xb3\x00\x42\x76\xc3\xcc\x2e\xdb\xdb\x1b\xdf\x9f\x7a\x9f\xf6\xe5\x40\x88\x4d\xe2\xda\x3c\x7e\x9e\xe5\x20\x08\xb3\xbc\x36\x8f\x3f\xf3\xb1\x79\xfc\x3c\x6f\x7a\x4e\xff\x8e\x98\x0c\x3f\xbc\x36\xfb\x4f\x78\x16\xf0\x37\x0c\xe0\x72\x80\x64\xee\x9c\x6b\x7b\x71\x38\x7c\xf0\x93\x31\x3a\x2b\xbc\x3d\xbf\x67\x26\xd0\xe6\xf5\x68\x30\xd7\x4f\xda\xef\xe8\x16\x97\xe2\x21\x3b\x0b\xf0\x13\xfe\x3b\x61\x02\xd7\x4f\xf6\xef\x9d\x05\x2b\x96\x41\xd2\xdf\x4f\x15\xe8\x04\x1e\x5c\xb2\xb6\x83\xb9\xbd\x24\xf7\x57\x4a\xdb\x5f\x4e\x56\xd2\x78\x3e\xf5\x01\xcf\x76\xc7\x72\xa6\x94\xbd\xe4\x77\x97\xff\xe1\xbe\xb9\x8a\xc8\xe7\x40\x54\x79\x13\xa2\x70\x5f\x4a\x75\x42\xe5\xb2\xab\x9a\x5c\x9e\xe5\x3c\x88\x62\x7b\x09\x88\xdd\x59\x7f\xa5\x36\xe1\x32\xbd\x14\xab\x89\xd7\xf4\x52\xac\x66\x67\xbf\x0b\xa8\x0d\xa0\xe5\x52\x6c\x26\x41\x16\x57\x35\x71\x3c\x7b\xf9\xd2\x7f\xd3\xf2\x45\xdb\xbf\x9a\xce\xcf\xe7\x7f\xd1\xc3\x76\x68\x72\x45\x47\x4c\xbf\x9c\xd5\x24\x37\xcc\xd5\x14\x56\xc8\xfe\x77\xe8\x26\xab\x61\x1c\x37\x0c\xc7\x38\x6e\x16\xa3\x59\x3c\xcc\xb3\x23\x37\xd9\xaf\x46\x6d\xd3\xbe\x03\x37\x73\xad\x5e\x0e\xdc\x84\xa1\x77\xf9\x4e\xd8\xdf\x5d\x9e\x06\xce\x57\x97\x67\x01\x7e\xd4\x2d\x84\xc1\xc1\xbb\x54\x99\x0f\x07\xea\xa6\x80\x67\x51\xd0\xe8\x51\x88\x11\x38\x5e\x17\xbc\x8e\x67\x07\x76\x32\xa2\x21\x81\x97\x2b\xc0\x81\x9e\xb4\xe7\x40\x4f\xae\x1c\xc1\xbd\xc7\xe7\xce\xb4\xc5\x1f\xb0\xff\x35\xec\x23\x85\x06\xd5\x57\x99\xb9\xa5\x84\xd4\x9e\x08\x52\xbe\x54\x5f\x05\xd5\xe7\x1a\x16\x78\x23\x7a\x5c\x32\xf0\x93\x6d\xfe\x32\x70\x9b\x88\x84\x6b\x57\x6d\x7d\x2e\xf6\xdd\x2a\x24\x1b\x77\x77\x76\xc5\x48\x44\xd7\xfe\x0e\x3b\xa3\x92\x72\x31\x91\xa8\xef\xda\x5d\x50\x0a\xde\xb3\xdb\x53\x11\xdf\xe1\xe5\xf0\x4f\xd2\x59\x5d\xbb\x5d\xf0\x5c\x60\x3f\x85\x64\x03\x5f\x7f\xc9\x8b\x40\xb8\xcf\xb5\xbf\x39\x18\xe9\xf4\x25\x3d\x4d\x1e\x22\x9d\x16\xe5\x55\x20\x8d\xc1\x75\x98\xf2\xf4\x70\x58\xd2\x43\x86\x90\x97\x81\x1c\x20\xd7\x4f\x63\xd9\xa8\xeb\x7a\x1d\x2f\xdd\xa1\x4a\x4e\x06\xea\x79\x5c\x76\x32\x10\x6c\x7c\x09\x7a\x43\x14\xfc\x75\xc8\x33\xc5\x7a\xbf\x0a\xcc\xc2\x0f\xf2\x3b\x71\x0b\x08\xda\x3d\x91\x64\xeb\x3a\xbd\x9e\xf0\xb5\xd3\x0e\x35\xf8\xf2\x69\x07\x0d\xa2\x86\x35\x1c\x7c\x11\xd7\xf9\x2e\x68\xc6\xfd\x53\x79\x36\x0a\x95\x5c\xe7\xbb\x7c\xd9\x13\xa7\xe9\xe0\xf9\xb2\x78\xca\x17\x5e\x1d\x98\xfb\x0b\xe8\x61\xd3\xc8\x39\xd1\xc9\xc9\x73\xfd\x54\x9c\x0d\xc8\xc5\x65\x0d\x07\x47\xdf\x25\x0d\xa7\x93\x94\xef\xba\xac\x32\x20\x24\x5e\xf6\xfa\xc0\x54\xae\x2e\x45\x8c\x4e\x95\x98\x97\x23\xad\x78\x50\x4c\x13\xd7\xf5\x2a\x6a\x99\x9a\xcb\xe6\x8f\x4f\x8b\x72\x66\xc1\x76\x2e\x1f\xc0\x3f\x25\xf1\xb9\x2e\x3b\xba\x38\xcf\xb7\xdd\x6f\x59\xbc\xdb\x61\x15\x70\x59\x25\x2e\x04\x37\x72\xdd\xb6\x22\xb2\x27\x6f\x2b\x1f\x9c\xdf\xdb\xf5\xa8\x60\xa4\xb7\x27\x05\x4e\xae\xf0\x53\xd0\x30\xd7\xed\x49\xc9\x96\xba\x5f\x57\x14\x4d\xca\xf3\x84\x68\x67\x08\x11\x41\x6c\x97\x20\x44\xe0\x71\xae\xc7\xe1\x22\xec\xeb\xe7\xa5\x2b\x7d\xfc\xd4\xac\x0d\x13\xcd\x25\x2d\x6b\x02\x6b\x7d\x3d\x72\xa0\x21\xbe\xbd\x4a\x16\xa7\xf7\x79\xe9\xcc\xdc\x3d\x2f\x9d\xbc\x21\xba\x58\xba\xc7\x74\xc1\x90\x1f\x81\x84\x11\x01\x0d\x54\xfa\xc8\x84\xf2\x8b\x74\x92\x40\x5d\x46\x2a\x41\xe9\x3d\x19\xb1\x97\x4d\x7a\x4f\x2f\x0b\x9f\xf3\x83\x82\x7d\xb3\x3e\xb7\x52\x79\x23\x87\xde\x93\xd0\x78\xa1\xeb\x7e\x4b\xc3\x84\x2d\xdd\x93\x1d\x6a\x9d\x37\xec\x50\xfb\x34\x69\x87\x5a\x18\xd7\x6d\x1f\x06\x65\x24\xef\x9f\x36\xb4\x21\xcc\xde\x76\x61\x84\x0f\xdd\xb3\xcd\x0b\x99\x9a\x7b\xb6\x43\x2d\x3b\xf5\x9e\x6d\x5e\x18\xfc\x60\x8f\x5a\x6e\x96\x7b\x36\x12\xf1\xd3\xe8\x6b\x80\x08\x25\xb3\x3d\x66\x83\x5e\xec\x3b\xa4\x4d\x93\x9a\x03\x7d\xff\xb4\x9e\x8d\x2b\xfc\xfe\x69\x3d\x1b\x42\xce\xbd\x18\x52\x99\xcd\x7e\x2f\x26\x64\xf0\xc3\xaa\x2f\x32\x35\x0a\x7f\x9d\xd7\x4f\x13\xc5\x3f\xf0\x86\xec\x3d\x84\x8d\xde\x8b\xbd\x4e\xd9\x16\xf7\x62\xaf\x53\xa5\x93\x43\x86\x90\xd0\xb1\xbc\xfe\x34\xbe\x90\xe5\x24\xc7\xf8\x5e\x64\x39\x61\x76\x9d\xed\x1b\x24\xc8\xbd\x2a\xca\x99\x5d\xb4\xca\x5a\x12\xbe\x74\x3b\xd7\x37\xb6\xfa\x7b\x55\x6c\x36\x13\xf1\x53\x8f\x3e\x92\xc4\xbd\xda\xb7\x96\x53\x7f\xcb\x47\x82\xfe\x70\xaf\x36\xaf\xc4\xa6\x78\xaf\x32\x17\xb1\x7a\xab\xa9\x6e\x74\x61\x5f\x5b\x63\x0c\xc6\x81\x17\xc8\x92\x01\xa9\x43\x95\xa7\x81\x16\x3c\x0d\x99\xa6\xcd\xd3\x90\x53\x7f\x6f\x9e\x86\x8c\x69\xb3\x53\x31\x96\xd9\x5b\x5e\x16\xb4\xd4\xdb\x28\x7c\xec\x24\xf7\xe6\x79\x08\xd9\xce\x36\x1e\x31\xf5\x7e\xb3\x8d\x73\xa2\x37\x55\x87\xe3\xb4\x6d\xef\xea\xf3\x85\xa9\xcc\xa5\x72\xbf\xc9\xc5\x99\xb9\xe2\x58\xf0\xcf\x1b\x4a\x2e\xce\xbe\x7f\x93\x8b\xb3\x18\xc5\x8e\x36\x76\xd4\x9b\x4c\x9c\xb9\x2d\xf6\xb4\x31\x35\x65\xa8\x4d\xbe\x90\xa3\x8d\xa3\x53\x2c\xfe\xd6\x3f\xc5\xb1\xde\x6f\xe6\xf1\xca\x88\xe4\x6e\x84\xa5\xbc\x90\x7e\x0e\x81\x53\x91\xa3\xf0\xdf\x4a\x45\x4e\x28\xec\x5d\xed\x6e\x64\x66\xab\xa9\x66\x26\x15\x05\xf0\x09\x7e\xbd\xab\x4d\xad\xac\x96\xca\x61\x2e\x64\x18\xb8\x1d\x17\xb0\xf1\xfc\xba\xd8\x33\xd5\xd5\x7e\xba\x4c\x93\x02\x07\x3e\x62\xc5\x2d\xa7\xca\x42\xb9\x95\x5b\x4e\x95\x85\x7a\x27\xb7\x42\x0b\x16\xd2\x9c\xdd\x4d\x55\xd1\xa2\x2a\xde\xf2\xaa\x2c\x64\x48\xbe\x95\x6f\x7c\xa1\x04\xcb\xed\x68\x03\x6a\xa6\xdc\xca\x32\xb9\x50\x64\xe5\x6e\xa6\x2c\xfa\xde\xdd\x14\x01\xb1\xd1\x84\xad\x9b\x91\xe3\x6e\xb9\x66\x96\xbe\xd0\x84\xdc\x79\xf0\x88\x26\x77\x1e\xa7\xad\xd9\xd8\xb9\xf0\xc2\x23\x84\x60\x74\xc6\x5b\xa1\xb5\x4b\x5f\xf8\x61\xf6\x0f\xe9\xb4\x2b\x9f\x3c\x0b\x22\x5f\xcd\x4a\x65\x8a\xbb\x3b\x1b\x7c\x9c\xf8\xb7\xd4\xae\x95\xaa\x0f\xf7\x4f\xed\x2a\x1f\xbe\xd2\x9d\x0d\x20\xce\x8e\x5b\xee\x99\x4a\x18\xec\xfd\x53\xbc\x0a\x71\x4d\xf7\x78\x8d\xb4\x99\x2b\x61\xab\x3a\xb1\xb6\xf7\x90\x7f\x8f\xcd\x3f\xe4\xdf\xe3\xc0\x49\xf5\x5a\x29\x49\x75\xff\x54\xaf\x02\x98\xe3\x1e\x0e\xc9\x84\xb1\x08\x6c\xb5\x92\x73\xeb\x1e\x76\xf8\xad\x7c\xb2\xdb\xca\x1b\x42\x87\x1d\x7e\x2b\xa3\x90\xc3\x0f\xa6\x2d\xe5\xac\x53\xc0\xf4\x96\x6a\xd5\x80\x16\xdc\xbb\xcd\xbc\x8c\x53\x3e\x8f\x86\xd1\xfb\x76\xee\x97\xcf\xd5\xe2\xa2\xf1\x1f\xa6\x7b\xf9\x87\x90\xf2\x08\x56\xd1\xb8\x2b\x9e\xd5\xf2\x7e\xcb\xb3\xdb\xcc\x84\x3f\xca\x27\x36\x45\x5c\x78\x56\x55\x4c\xcf\x30\x9f\xd5\xc6\x4b\x9e\x2f\xd9\xba\xfe\x4d\xf7\xe3\x1a\x0f\xd4\xd7\x7a\x36\xdd\x4e\xe1\x26\xcf\x66\xe8\x47\xd8\xf0\xb3\xf9\xd2\x9d\x79\x43\xc5\x13\x06\x2f\x38\x6f\x64\x26\xf3\xd9\xde\xf3\xc1\x0f\xf6\xe1\x47\x35\x7a\xec\xee\xee\x8c\xea\xdd\x78\x8c\xca\x2e\xae\xcf\x1b\x8f\x37\xda\xbf\xb9\x7c\xe4\x11\x27\x68\xe5\xf9\x71\xf6\x0a\x97\x7c\xca\x62\xbb\x7d\x66\x4a\x9c\xbd\x11\x6c\xfd\xb8\x6c\x44\xce\xcb\x23\x50\x2a\xf8\xaa\xa7\xd8\x4e\xce\xfb\xca\x56\x30\x78\xb6\x1d\x9c\x1e\x65\x07\x1e\x7c\x2f\x3b\xf0\x60\x00\x8a\x52\x65\xc4\x55\xc0\x74\xe6\xb1\xca\x0e\x9e\x93\xf1\x38\xff\x40\x44\x97\xa7\xca\xec\x93\x2b\xf9\xa9\x32\x9a\xe4\x64\x3d\x46\xa0\x46\xae\x78\x8c\x40\x0d\xd3\x79\x54\x3c\x98\xa0\xcd\xc7\xf9\x05\xb8\x97\x1e\xd9\xa5\x5a\xff\x93\xd1\xee\x79\xfd\xd9\x01\x1c\x3c\xc2\x9f\x62\xf6\x7e\x9a\xb5\x00\x76\x56\x53\xa8\x60\x18\xd6\xd3\x9c\x02\xa8\xf0\x85\xe5\xef\x4c\x88\xf8\xec\xbc\x7e\x7e\xb0\xf0\x16\xe6\xf2\x34\x43\x84\xd8\x7a\x2e\x2b\x8c\x25\xe8\x91\xcb\x7b\x21\x3d\xf8\xd3\x8b\x6e\x8c\x74\xda\x7d\x1f\xb0\xb1\xba\x61\x11\x61\xe6\x4f\xef\xda\x69\xe9\x43\xe6\xac\x15\x24\xee\x63\x54\xeb\xa7\x0b\xa5\xef\x66\x33\xf7\x37\xc5\x5f\x9e\x2f\x6d\x2c\x7a\xbc\x75\xa6\x43\xa6\x32\xf1\xd6\x11\x73\xc9\x33\xec\x21\x4a\x07\x43\x1e\x92\x08\xe7\x8f\x22\xb8\x1a\x79\x57\x9f\x21\x17\x09\x43\x56\x89\x08\xa4\xbd\x67\xc8\x45\x32\x68\xf0\x3d\xe3\xf4\xb8\x8b\x6d\x64\x48\x43\x26\x78\x8e\xe3\x90\x0b\x81\xf7\xe5\x05\xe7\x3e\x7b\x64\xaa\xda\xf0\xc4\x3d\xbb\x02\x70\x3b\xcf\xb2\x21\xb2\xd9\x77\xd9\x10\x39\x4c\xbb\x02\x72\x39\x3c\xbb\xd2\x53\x47\xe4\x7d\x76\xd9\x48\x3b\xff\xdb\x6d\xcb\x66\x76\x4a\xb2\xfa\xe9\xe1\xf6\x24\xd1\x85\x54\x63\x68\x3a\xac\x1a\x33\x06\x47\x85\x51\x5c\xec\x91\x59\x6a\x7c\x9e\x5f\x61\x31\xa3\x38\x5e\x3b\x08\x6d\x1a\xb7\xd5\xf8\x41\xe5\x4e\x0a\x7d\x58\xfa\x60\xb7\x1d\x02\x44\xc1\xb6\x0e\x09\x1f\x85\x06\x8c\x2b\x62\x73\x1c\xbe\xd5\x37\xde\xf0\xad\xce\x0b\xb6\x4c\x66\xb7\x1c\x3f\xbe\x84\x49\xf0\x39\x1e\x6d\xbf\x50\xa5\x22\x73\x95\x1b\xe2\x94\x7f\x2a\x97\xe9\x73\x2e\xfa\x3f\x33\x7d\xae\x7a\x4e\x7b\xaa\x29\xb7\xc5\xce\xf9\x9c\x72\x8f\x74\xbe\x97\xbb\x8a\x95\x3a\xe5\xce\x61\xab\x9c\x72\xe7\xb0\x55\x4e\xef\xb5\x6c\x66\x95\x94\xfb\xdc\x58\x97\xdd\x39\xe9\x4f\x25\xe3\x3e\x13\x74\xd9\x81\xcf\x6e\xbf\x5e\xfb\x24\x3f\x3c\xe2\x8c\x19\xe1\x6d\x33\x5c\x80\x86\xcf\x6b\xb9\xa1\x89\xdb\x49\x33\x59\x96\xdb\xc8\x03\xce\xa4\x4d\x37\x6c\xd0\xd7\x74\xc3\xf5\x70\xdb\xa0\x05\xff\xbf\xdf\x2d\x4c\xaf\xef\x16\xa6\x0d\xeb\xd8\xf4\xf1\x78\x83\xe6\x8b\x17\xc5\xca\x41\x7f\xa4\x84\x31\xd7\x2f\x88\x95\x4b\x45\xc6\x9b\x85\x6c\x4e\xcf\x63\xe5\x25\xc3\x34\x66\x15\x80\xcc\xf3\x08\x26\xc8\x28\x1f\x41\x13\x38\x35\x02\xa4\x2e\xfd\x9f\x08\xd2\xa7\x69\xd2\x65\xbf\xe5\x59\x16\xa7\x7f\x3b\xbe\x4f\x2e\xc2\x96\x48\xca\x3e\xd9\x72\xb3\xcc\x7f\xb8\x87\xfa\x24\x6f\x78\x12\x5d\xf6\xc9\x25\x7f\xff\x9d\x86\x3e\x39\x00\x6d\xa5\xb7\xa6\xdd\xcf\xfb\xdd\xf4\x31\x5c\x79\x4f\xff\x49\x71\x7d\x72\xbd\xb6\x7f\xf4\xf7\x49\xee\xee\x69\xca\xff\x72\x67\xa7\x70\x6d\x9f\x14\x5f\x36\xfd\x5b\xa4\x3e\xc9\x80\x33\x2d\x19\xd0\xbc\x69\x00\x99\x0e\xbb\xaf\x57\xfe\xaf\x3a\x4e\x3c\xcb\x7d\xbd\x66\x7c\xb3\x82\x87\xd7\x8c\xc7\xee\xeb\x95\xf6\xc4\xaa\x07\xcf\x3e\x5e\x8c\xe7\x32\xc1\x35\x3f\xdc\xfa\x80\x0e\x7d\xbe\xd2\xc1\xf2\x9a\x83\xf3\xc1\xa2\x48\x95\x11\x8a\x17\x9b\xb1\xd7\x74\x21\xc3\x4d\x5f\x56\xde\x50\x99\xb6\x1e\x1a\x96\xfe\xdb\xc8\x73\x16\xc5\x76\x9c\x95\x49\x5b\xde\xab\x3f\xb3\xbc\x58\xb5\xef\x59\x37\x25\x2a\xeb\x49\x3e\xdf\x27\x25\x33\xd8\x52\x96\xad\x4f\xab\xb3\x7e\x6f\x99\x89\xd5\x89\x81\x18\xe7\xea\x8d\xc6\x0b\xdb\x7f\xff\xa3\xb0\x47\x9f\x56\x43\xf2\x32\x6c\x95\xcd\x98\x18\xf6\xea\xbd\xc4\xff\x43\x4b\xc7\xb3\x90\x11\x4c\xdc\x7a\xeb\x7f\xfa\x93\x44\xc8\x34\x6d\x92\xf8\x46\xde\x97\xa3\x79\x2c\xa1\xd9\x8e\x66\xc6\xe3\x4c\xbd\x2c\xc4\xa6\x5b\x9b\x93\x65\xbf\x31\x5b\xdb\x61\x59\x25\xf4\x17\x5f\x57\x1b\x1f\xa8\x48\x44\x4f\x83\xc5\xb7\x6e\xa6\xb4\xec\x3f\x46\xc9\xe1\x29\x2e\x54\x52\xf8\xc0\x5e\x92\x8d\x37\x7c\xf9\x7c\xba\xb8\xd5\x44\x9e\xab\xd2\xc6\x2e\xec\xff\xfa\x96\x0d\xcf\xa8\xab\xab\x1e\x6f\x19\x85\x2a\xa7\x4d\x49\xf0\xd0\x27\x57\x4a\x0b\xe2\xa1\x4f\xb2\x56\x4c\x6d\xca\x30\x64\x8c\x98\xd7\x4f\xb7\xb2\x6f\x31\xd5\x4d\x00\x29\xa6\xb6\x99\x71\xa6\xc5\xf6\x5e\xe4\xfc\xa0\x1a\x73\x23\x73\xd9\x84\x89\x1a\x19\xe4\x6b\x45\xe0\xdc\x37\x23\x84\x39\x77\x32\x0a\x74\x38\x55\x53\x2d\xb6\x2d\xe7\x4e\xb2\xec\xc4\xea\x39\xdb\x56\x42\xd0\xfb\xd4\x7f\x17\xf1\xc6\x76\xea\x92\xb1\x46\x68\xec\x72\xfb\xb3\x9d\xbb\x57\x37\x43\x56\xb8\x56\xb0\xbb\x7d\x72\x4d\x09\x06\xf8\x93\x6b\x6b\x72\xcf\xf6\xa9\x2b\x41\x1e\x73\x36\x26\x1d\x97\x10\xf0\x13\x4b\x6b\x2a\x9d\xf5\x69\x38\x69\x7d\xa6\xe4\x27\x85\xd6\x15\x3e\x3f\x9c\xf8\x21\xed\x0f\x83\xaa\x33\xde\xa1\x8a\xdf\xd0\x3b\x5e\xd1\x27\xcf\x36\xbb\xd0\xde\xa9\xf7\x33\x61\xe3\xad\xeb\x94\x67\xab\xdf\x34\x20\x8f\x6b\x65\x63\x29\xa4\xaa\x6e\x7f\x41\xc9\xf5\x69\x57\x55\x27\x16\x7c\xf7\xc5\x93\xde\x8d\xeb\xfc\x1c\x2e\x79\x5a\x6b\xe1\x59\x28\x8b\xc2\x68\xac\x36\x64\xb8\x3f\x09\xb6\x7e\xf6\xf0\xae\xfa\xe5\x6c\x49\x79\x55\x93\xe7\xab\x4f\x2e\x6f\xcc\x21\x78\xd3\x61\xf1\xff\xe6\x1a\x01\x79\x2e\x6a\x3f\xe3\x39\xde\x7a\x83\x59\x5f\xc9\xa6\x7d\x61\x87\x1e\xce\xcc\x91\x11\x4a\x16\xad\x30\xd8\xe3\x85\xc2\x65\x4e\x24\x7a\x82\x82\xee\x93\x64\xc7\x19\x8e\xf6\x93\x15\xa9\x9a\xd3\x27\xf9\x3b\xcb\x02\x0b\x3b\xcd\x62\x43\xd4\x29\xa5\xfc\xf3\xff\xd0\x73\x86\x74\xee\x7a\xe6\xfd\x53\x2c\x3b\x34\x29\xb9\xd5\x0c\xb7\x91\x70\x39\x71\x3b\x2a\xb9\xd5\x8c\xb8\x70\x4d\x6a\x2f\x8b\xa4\x64\x07\x33\xef\x5f\x82\xda\xd0\xff\x65\x82\x32\x03\x97\xaf\x8c\x10\x7c\x89\x1e\xc4\x15\xe5\x46\x98\x19\xdf\x65\x7a\x32\x61\xd7\xae\xef\x33\x5e\x95\x5b\x8b\xae\xd9\x27\xa5\xca\x9a\x39\xb3\x97\xa4\x93\xcf\x78\x45\x1f\xf3\xa5\xd4\x58\x33\xdf\xdf\x92\x56\x98\xdf\x5b\x60\x43\xae\x44\x65\xc6\x9a\x58\xb0\x9f\x68\xbc\x4c\xf0\x8c\x9f\x64\x4c\x9e\xe7\x3e\x29\x0b\x42\x5f\xd8\x13\x92\x6a\x5b\x67\xdb\xde\xba\x14\x61\x73\xb7\x2e\x41\xb6\xe5\x23\x78\x1c\xc7\xe6\x91\xfa\xc1\x3d\xff\x58\xfd\x48\x7b\x3f\x11\x77\xd9\xd8\xb5\x8f\x04\x42\x36\xed\x4f\xc2\x6d\x15\xd1\xe2\xb1\xcd\x0d\x36\xf3\x48\xa0\xe2\xe0\x3e\xbe\xc5\xe9\x70\xd7\x33\x1d\x1c\xbf\x67\x96\xf4\x11\x1e\x90\x73\xfd\x98\x40\xbe\x17\xda\x2b\x5b\x62\x9e\xa4\x5f\x65\x0a\x67\xe1\x3f\x6b\xae\xa6\x79\x12\xfe\x2f\x52\xca\x3c\xf9\xfe\x2b\xfc\x20\x89\x31\x77\xec\x6c\x11\x37\x53\x3e\xff\x9f\xb1\x33\x39\x9b\x5e\xd5\x81\x70\x2a\x37\x04\x9b\x99\xcd\xc9\xc5\x63\xfe\x21\xdc\xa7\xab\xf8\xf5\x7a\xf9\x2d\xdd\x6d\x03\x62\x10\x1a\x4a\xd2\xb6\x38\x0f\x3d\x98\xc2\x1e\xcf\xd3\xa7\x8c\x16\x64\x35\x2c\xf4\x60\x54\x7c\x4c\xea\xbe\x59\xda\xa2\x89\x15\x59\x15\x54\xee\xfb\x92\x25\xa2\x8d\x9f\x5c\x3b\xc2\x57\x37\xf6\xdd\xc2\x4c\x8e\xe7\xee\x72\x33\x31\x08\xe7\x55\x98\xb4\x38\xd5\x40\xcc\xcb\x6e\x4d\xa4\xd0\xc2\xa9\x17\x68\xe0\xd6\x33\x23\x78\xf4\x5c\xe3\xf9\xd5\x73\x7c\xff\x93\x63\xc9\x62\x36\x76\xe5\x55\x40\x34\xd9\x93\x70\x81\x71\x16\xf6\x24\x5c\x20\x0b\xe9\xbc\x0a\xc1\x0e\xf7\xd4\xd5\x1e\xff\x0b\xd7\x98\x68\x5f\x04\x4c\x06\x94\x4e\xbd\xf0\x17\x84\xc2\xd8\x85\xe2\x0c\xe4\xc7\xd8\x93\xa9\x8d\x45\x36\x8a\x33\x4e\xfe\x6e\x14\x67\x70\xc2\x5d\xd2\xef\x0c\xd7\xd7\xd8\xf3\x4a\x78\x1a\xf3\xe1\x34\xbd\x93\x19\x97\xf5\xb9\x86\x75\x7f\xec\x59\x79\x06\x5a\x50\x24\xa4\x66\x94\x8f\x1d\xbb\x90\x98\x23\x74\x95\x3d\x0b\x29\xd7\xe2\x7b\x67\x46\x48\x0c\x52\x12\xef\x08\x76\xbb\x97\xf2\xdf\xff\x66\x78\x80\xc6\xee\x44\x08\x21\x82\xec\x92\x80\x47\x28\x3b\x7b\x71\x09\x96\x49\x03\x1e\x11\x0d\x48\x9b\x0b\x19\x65\x2f\xaa\xbb\xc0\x24\x14\x8f\x38\x28\x2a\x1e\x71\x50\x60\x68\x66\xdc\x17\x7b\x95\x11\x75\xe7\x59\x58\xc5\x90\x79\x76\x43\x33\x83\x1f\xee\x55\xd8\xbe\x1e\xe3\x73\x26\x84\xc6\xff\x96\xd1\x62\xbc\xd5\xa9\xf5\x2a\x2f\x9c\xbf\x19\x61\xd3\xfe\x24\xec\x59\xd9\xf4\x3f\x79\x7a\x56\x8e\x59\x13\xb8\x8f\x4d\xa9\x4c\x09\x15\x6e\xf3\x13\xaf\x67\x65\x1b\x39\x31\x02\xa7\xce\x75\xe3\x26\xff\xff\x56\x60\xb0\x27\x54\x37\xae\x72\xc8\x94\x18\xa1\xb2\x0d\x5d\x17\x6e\x32\x1e\xa7\x98\x09\x31\x65\x6f\x46\xfe\xc3\x39\x6c\xa7\x0e\x19\x61\xff\x89\xe6\xb3\x72\x0c\x05\xa7\x8c\x64\x14\x63\xef\x02\xfb\xcd\x98\x81\x6e\x8a\xe2\x7b\xc1\x29\x23\x22\x67\xec\x5d\x53\xde\x79\xbf\xe9\xfd\xe8\xbf\x9b\x22\xfa\x93\xd2\xc3\xb1\xe8\x66\x86\x95\x06\x15\x67\xb5\xb3\xa8\x2a\x11\xf7\x39\x26\xc3\x9b\x24\xe6\x70\x08\x3f\x15\x42\xc3\xee\x7a\x70\x3b\x1c\x5b\x45\x86\x7b\x86\x79\x0e\xfb\x81\xe0\x75\xc3\x80\xb6\xb8\xa5\xf6\x21\x40\x5b\x08\x0e\xfb\x58\xa9\x7f\x62\x9a\x86\x75\xb5\x58\x88\xe1\x90\x1c\xe6\x7d\x2c\x5d\x8d\x37\x96\xae\x46\x9b\xa6\x2b\xfa\x5c\x76\xe6\xb8\xea\x76\xa7\xc9\xed\xcc\xfd\x5c\x8a\x57\x74\x32\x85\x68\x62\xb1\x9c\x18\xa1\xb3\x5f\x5d\x8d\x98\x03\xec\x9a\x19\x9d\x0d\x6a\xdc\x64\xe7\x04\x38\x31\x42\xa8\x31\xbb\xf3\xdb\x76\xf8\xb8\x71\x92\x9d\x3d\x79\xd8\x1e\xc1\x0d\x2a\x9c\xe4\x9e\x39\x15\x12\xd6\xf7\x0c\x63\x3a\x6c\xa1\xa0\x53\xf9\x26\x3e\x1f\xc8\xfb\xf7\x39\xa7\x4e\x70\x9b\x59\x90\x63\xa9\x9c\x31\x15\x32\x40\xef\x99\x36\x65\x70\xde\x33\x4b\xb4\x0c\xce\xb0\x3f\xd7\x7d\x8b\xb2\x2f\x63\x57\x51\x8c\xf9\x79\xc1\x98\x19\xb6\x96\xb3\x90\x65\xd6\x6c\x49\xf5\xac\xd9\xb9\x48\xa5\x0d\x1b\x5f\xf6\xbf\xc0\x11\xc6\xfe\x93\xf9\xeb\xe7\x56\x76\xd1\x64\x94\xaa\xfd\x5c\x96\x9a\xa0\x5b\x55\xe3\x3e\x17\xd7\xf9\xe8\x39\x26\x4a\x19\xcb\x3e\xd7\xf2\xb5\xe9\x39\x1a\xbc\x6c\xb6\x81\x47\xfe\x94\x88\xfa\xb9\xf7\x2f\xeb\xea\x31\x07\x97\x8d\x9c\x83\x16\xed\xd3\x1c\xd1\xe5\x25\xa8\x09\x4c\xef\x32\xd4\x24\x0c\x1f\xfb\xca\xaa\xcb\x4d\xf7\xd3\x33\xea\x47\x96\xb8\x0c\xb9\x19\xfc\xb0\xc8\x0e\x32\x7f\x9a\x46\x2d\x4c\xd4\x4f\xb3\xa8\x85\x51\xdf\x46\x69\x84\x1c\xba\xdf\x86\x2a\x84\xec\xbf\xdf\xcb\x37\x10\x4d\xde\xf6\x0d\xf0\xc2\x32\x29\x04\x1d\xaa\x4a\xd7\x18\xd4\xbd\x80\x09\x41\xd7\xbd\x1c\xad\xbc\xf1\xd8\xdb\xc5\xb0\x1c\xaf\x1b\x7d\x2a\x18\x6c\x70\x1f\x3c\xb6\x99\xc5\x64\xbb\xc6\x46\xe2\x46\x73\x69\xba\xca\x07\x0a\x36\x08\xf9\x7d\x57\xc9\x0d\x34\xbc\xfd\x19\x9a\xd9\x18\xe2\xaa\xdf\xcc\xf9\xb6\xe5\x1c\x19\xe1\xb1\xbc\x1d\xab\x6b\x85\x82\x93\xa8\xea\xcd\x03\xf9\xf9\x59\x35\xed\x83\xe6\x77\x9d\xaa\x68\xc1\x10\x47\x84\x86\xd7\x4a\x0f\xff\x37\x17\x30\xe6\x07\xf1\x56\x26\x4d\x70\xc5\x09\xc3\x17\x5c\x71\x43\x0a\x70\x08\x18\x0b\xf7\x5a\xcb\xfc\xf7\x7e\xda\xa4\xf3\x54\x9e\xad\x12\xe4\x78\x96\x8b\x23\x26\x3d\x29\x41\x2f\xa6\xa3\xa4\x04\xbd\x11\x81\xf0\x93\xba\x35\xbe\x14\xcf\xe6\x66\x35\x9e\xbd\x9b\x47\x3c\x1f\xda\x9b\xbc\x6f\x87\x7d\x88\xae\xc9\x46\xf0\x4c\x87\x0a\x69\x89\x2b\x31\x39\xa6\x2b\x08\x4c\xbb\x44\xeb\xe0\x53\x69\x97\xe5\xb1\x47\x07\x3f\x6d\xa1\xa4\x98\xe1\xb4\xdb\xe3\x12\x17\x60\x12\x64\x71\x8b\x72\x95\x23\xed\xb6\xd3\x07\x1f\x4b\xbb\x63\x24\x2b\x6d\xe8\x82\x63\x52\x95\xa3\x37\xaa\x2a\x8f\xf4\x53\x0f\x66\x65\x52\x85\x58\x8c\xa0\xd6\x91\x94\xb6\x21\xc2\x0b\x47\x4a\x9b\xec\x23\x31\x66\x95\xc6\xdb\x3f\xff\x27\xed\x92\xf8\x3e\x49\xd1\x64\x92\x95\xa2\xa1\x4d\x48\x50\x5a\xb5\xc8\x21\x35\x92\xd3\xaa\x21\x58\xa4\xe4\x9d\xcd\x07\x9a\xe5\x48\xf1\x3b\x92\xaa\xd9\xb5\xd8\x67\x29\x5b\x63\x89\x06\x94\xea\x0c\xe9\x34\x29\xd5\x19\x17\x78\xca\x3f\xcd\x71\xc6\x51\x4a\x32\x68\xcf\xd8\xa7\x49\xd5\xeb\x66\x1c\x84\xa4\x48\x2d\x2c\x84\xc9\x91\x5a\x6c\x03\xc9\xff\xe9\x33\x1e\xf9\x58\x91\x1e\x53\x96\xf8\x1c\x12\x45\x2a\x9b\xd6\x80\x67\xc9\x6e\xfb\x5f\x32\xf9\x8c\xb4\x94\x83\xa0\xa6\x54\x3d\xc7\x7c\xfe\x94\x83\x3c\x58\xb0\x22\xd1\x94\xd1\x29\x23\x2f\x9e\x9e\x54\x2c\x6a\x7c\x5e\xb0\xa8\x11\xa2\x67\x12\x7e\x70\xe3\xe0\x27\xe1\x07\xb7\xce\x18\xaa\x85\x0f\xa6\xa8\x5a\xf8\x60\xeb\x2f\x23\x7b\xa3\x0d\x5f\x1d\x93\x37\x7c\x85\x4e\xba\xf5\x5d\x32\x69\xf4\xf1\x5d\xc1\x0f\xc6\xfc\x85\xf2\x9c\x64\x46\x4f\x11\xd8\xfa\x63\xc8\x56\xb5\x62\xaa\x8d\xf1\xab\x30\x91\x66\xac\x5c\x5c\x0e\x49\xa0\xbf\x9a\x3e\x3f\x28\xdf\xe4\xa0\x09\xa7\x7f\x80\xaf\x48\xb8\xcf\xd8\xff\x93\x84\xfb\x1c\x59\xcc\x46\x72\xd9\xe7\x4c\x13\xf6\x0e\xc6\x94\xff\x84\xf9\x8a\xce\x9e\x84\xf0\x8b\xbc\x9d\x23\x75\xef\x60\x9e\xab\x36\x14\xcf\xd6\x97\x42\x61\x4b\xb2\xc3\x4f\xb8\x80\xb2\x09\xef\xcc\x7e\xb7\x81\x8a\x35\x76\xcd\xe8\xfe\x79\x43\xf1\x2e\xd8\xa1\xd3\x4f\x01\x68\x81\x00\x1d\xe9\x27\xff\xb7\xc0\x7b\x8e\xe4\x52\x79\x71\xc3\xa5\x9f\x3a\xd0\x02\x5d\x39\xd2\x4f\x1d\x68\x3b\x43\x1c\xb6\x83\xc7\xfb\x92\xed\xc9\x78\x3c\x92\x0c\xef\x1f\x6e\x39\x7c\x8d\x47\x87\xc3\x05\x6e\xe9\xe0\x51\x83\x31\x89\x32\xd4\xa3\x35\xa7\x65\xa8\x8f\xef\xe7\xae\xf6\xa3\xbf\x69\x4b\x71\x0c\xf0\x27\xe7\x53\x7e\x7e\xa4\x29\x97\x25\x8b\xf8\x13\xea\x1b\x32\x7c\x9a\xb6\x6c\x47\xff\x3f\x99\xbe\x21\x90\xa7\x79\xea\x39\x08\x9e\xbe\x3d\x78\xfe\x8d\xff\x73\xca\x24\xf2\xe3\xe8\x48\x87\x39\x71\xfc\x7f\xec\x7a\x3f\xfa\xff\x69\x00\xad\x73\x9b\x38\x13\x1a\xf3\x71\x14\xfd\x1f\xf4\xda\x54\xcf\x7c\x1c\xbe\xdf\xe1\x7b\x3f\x75\xa0\x7d\xf8\xc0\x21\x82\x61\x5b\x3f\x6d\xa0\x75\x38\xcf\x61\xd3\x14\x4b\x7a\x98\xe2\x98\x51\x29\x03\x8d\x2d\x20\x74\x4a\xa4\x17\x1e\xe9\xf0\x0c\x30\x00\xcf\x40\x50\x28\x55\xa1\xb1\x62\xb6\xf5\xb3\x25\x85\x44\x69\x9c\xc3\x53\x14\xc3\xa6\x96\xad\x3f\x66\xe4\xa7\x15\xb4\xce\x41\x96\x52\xd0\xd8\x71\xca\xf8\xd0\xa0\x47\x3a\x42\xe3\x8c\x9c\x5a\x61\x38\xe7\xa9\x18\x69\xe8\xf9\x29\x01\xed\xc3\x15\x4f\xd3\x1b\xf4\x29\xa5\x5b\x63\x87\x29\x1b\xc4\x98\x5c\xe6\x97\x97\x3c\x3a\xb8\xb4\xc4\xa1\xe7\xa4\x9f\xcc\xdf\xa2\x70\xd8\x48\x92\xf9\xfb\x80\xa9\x4a\x40\x1f\x89\x45\x5e\x68\x4c\xe6\xcc\x39\xd8\x52\xff\x0b\xde\x6d\xa4\x5b\x86\xf2\x30\xba\x26\xa1\x4e\x3e\xd2\xc2\x9d\xf5\x7f\x10\x70\x4b\x86\x0c\x33\x76\xb2\x63\xe0\xf3\xbf\x0c\xe7\xdc\x8c\xb7\xa2\xf4\x39\x63\xb7\x73\x6e\xb0\x05\xec\x19\x80\x33\xda\x13\x00\x3b\xbf\xe5\xe9\xc8\x3c\xcb\xf2\x1f\xf6\x80\xa4\x22\x19\x78\xc3\x93\x3d\x01\x1c\xc2\x47\xe2\x0d\x12\x98\x32\xb9\x15\xdc\x6b\x49\x45\x33\x36\x6e\x98\x47\x5c\x81\x3d\x67\xd7\x00\xc2\x84\x8a\x68\x20\xb7\x27\x15\xd1\xc0\x9f\x99\x1e\xb9\x3e\x98\x51\xd5\xc9\xd8\x91\x86\x9e\x53\xff\xf3\xbe\x5c\x1d\x85\xfe\xe5\xca\x61\x4f\x29\xf6\xa9\x15\xd8\xcc\x63\x8a\xa3\x81\xd7\x14\xf3\xac\x25\x65\x46\xe5\x59\xd8\x91\x30\x5f\xf9\x42\xd8\xd4\xaf\x08\xe6\xee\x91\x67\x21\x12\x6a\x8d\xf4\x6a\x49\x91\xe2\x5f\x5b\xb8\xd9\x93\xca\x2d\x31\x3e\xf2\xd7\xeb\x35\x8d\x39\x7f\x3d\x05\x3c\x6b\x0a\x38\x15\x4e\x0f\x87\x82\x97\x14\x06\x05\x20\x7b\xa4\x57\xe0\x2e\xee\x22\xa1\x71\x7a\x94\xc7\x1b\x59\xde\x07\xcc\x44\x79\xf3\x24\x8c\x78\xf6\xbe\xce\xf1\xec\x55\x6f\xf1\xac\x7d\x1d\xac\x32\xcb\x19\xb1\x85\xcc\x90\x9d\x7d\xa2\xf0\xbe\x1c\x5e\x71\x0e\xb2\xb2\x4f\xb4\x4c\xff\xca\x3e\x91\x19\xdf\x69\x7b\x05\x3f\x68\xd9\x2b\x1f\xc8\x2d\x1a\xdb\x32\x1b\x2f\x13\x07\x31\x1b\x2f\x03\xc1\x4b\x71\x08\xd9\x29\xef\xf2\xef\x04\x2b\xc9\xcb\xaf\xf0\xf9\x42\x0e\x9e\x58\xa5\xfc\x53\x24\x7a\x63\x0a\x16\x82\x66\xd0\x82\x70\x1d\xb1\xd1\x72\x92\x87\x27\x36\x56\x56\x11\xed\xc6\x1c\xa5\xa2\xff\xa3\x41\x6b\x0e\xc1\xcc\x72\x12\x49\x89\xf6\xba\xda\x8f\x35\xb2\x22\xd1\x69\x4f\x14\x31\xc7\x2a\xa2\xdd\x58\xa3\x64\xee\xcc\xb3\x08\x62\x8d\x7e\x7a\x46\x6f\x3b\xed\x49\xcd\x88\x6d\x99\x95\x00\x22\x02\xbe\x47\x56\x02\x88\x08\xf0\x1e\x59\x45\xb2\xdb\xce\xff\x72\xc1\x35\xbe\x97\xc3\x2a\x6e\x93\x2c\xb5\x23\x02\xd0\x47\x16\x8e\xa6\xb1\x07\x05\x72\x8f\xd4\xb4\x23\x4b\xed\x88\x00\xf3\x91\xb3\x8e\x49\xb0\xb2\xac\x04\x11\x83\xf9\xc9\xa2\x8f\x3d\xec\x92\xda\x08\x1c\x39\x8b\xc0\x10\x18\xb2\x32\x46\x44\x84\xfc\xc8\x45\xfa\x77\xa8\x76\xb9\x78\x01\xe3\x7b\x65\x8c\x88\x78\xf4\x91\x55\x1a\xb0\xed\x3c\x6b\x41\x39\x64\xc5\x0b\xf8\x27\x44\x5b\x2e\x3a\x21\xc1\x88\x73\x11\xf5\x71\x11\x64\xa1\x7c\x22\xf7\xf1\xc8\xaa\x13\x88\xdf\x3f\x17\xaf\x2e\xc4\x69\x75\x39\x61\x45\xbb\x35\xd1\xbe\x1c\xb0\x21\x5b\x64\xd5\x11\x8c\xc4\xc1\x23\x57\x4f\x06\xff\x6b\xf5\x83\xe5\x64\xd5\x11\x04\x05\x90\xab\x57\x3f\xfa\xaf\xde\xcd\xbc\x6f\x58\x01\xdb\xa3\xf9\xa6\xa1\x45\x23\x7e\x06\xeb\x21\x80\x4f\x8d\x68\xc3\x91\xdb\xba\xcc\xe3\x0d\xd5\xc2\xc3\xa0\x90\xad\x37\x70\x84\xa4\x37\x24\xce\xf4\x4f\x6f\x18\x58\x13\x72\x97\xe6\xcb\x24\xfe\xd4\x86\x34\x39\xc2\x5d\x9a\x2e\x44\x74\x79\xdf\xd8\x62\x5d\xbe\x46\x8e\x60\x97\xaf\x91\x23\x36\x64\x10\x81\x05\x0c\x8d\x97\x45\x51\x2e\xe5\x12\xf1\x95\x23\x0f\xa9\xe6\x0c\x70\xc8\xb9\xc8\x1e\x1f\x52\xcd\x59\x65\x65\x62\x9b\xf0\xa0\x21\x2c\xd8\xe7\x7f\x39\x4b\x39\xd3\x43\xee\x44\xd8\xe6\x10\x41\xf0\x20\x81\xd2\xe7\x67\x80\x22\x08\x26\xa8\x1a\x24\xf8\x3c\xb2\x22\x81\x0a\xf6\xef\xac\xcc\x6d\x93\x33\x30\xe5\x4d\x65\x9b\x28\x93\x5b\x82\x49\x09\xa3\x0e\x7c\x2f\x4f\xdb\x26\x62\xc0\xd3\x13\xc0\xf7\x5e\x21\xfa\x93\xbb\x98\x6d\x3d\xe5\x09\x84\x49\x4f\x4f\x40\xac\x80\x32\xbf\x15\xe4\x97\x3c\xbd\xa4\x34\xe8\x19\x88\x19\x3a\xe4\x50\x65\x49\x0f\x11\x08\xd7\x3a\x6c\x7c\x89\x0e\x0f\x6f\xc1\x18\xf0\x21\x02\x43\xde\xc9\x87\xb6\x20\x5b\xee\xd0\x16\xac\xfc\xaf\x15\xe6\xdc\x1d\x22\x90\x9b\xf3\xd0\x96\xfc\xf4\x2f\x6f\xf2\xa7\xfd\xcb\x5b\x8a\x01\x78\x8f\x32\x40\xef\xd1\x68\xf0\xd4\x92\xb2\x85\x24\xf4\xf7\x8d\x93\x7c\x2a\x98\x88\x4d\x6e\x29\x1e\xed\x3c\x9f\x32\xf7\xc0\x9a\x7e\x52\xfc\x18\xdc\xdd\x97\xbc\xa5\xdc\xdd\x97\xbc\xa5\x9f\x67\xb9\x83\x43\x11\xce\x97\xec\x9c\xe1\x8a\xcb\x97\xbc\xa5\x81\xe8\xca\x97\x6c\xcb\x8d\xf7\xe5\x1e\x0e\xf1\x28\x5f\x4a\x6c\xc3\xc5\x27\xe8\xf9\x87\xaf\xfc\x94\x84\x1c\x81\x91\x23\xab\xd4\xc9\xe0\x62\xbb\x64\x42\x64\x0f\x29\x99\x42\xfb\xdc\x6c\x97\x6c\xcd\xdc\x4c\x97\xed\x5d\xf1\xff\x2d\x04\x66\x68\xee\xf9\x76\x5c\xc4\xe4\x07\x39\x27\xc3\x13\x91\x6f\xd9\x37\xc2\x75\x91\x6f\x51\xc8\x55\x69\x70\x7b\x38\x4b\xf3\x6d\x0a\xf9\x5e\x36\xaf\x3f\x55\x66\x18\xf9\x16\xb9\x9f\xce\x45\xee\x67\x70\x72\x8e\x73\x13\xdc\xa6\x96\xf7\x95\x1b\x31\x1c\x2f\x59\x45\x57\x32\xff\x3f\xa2\x9e\x9b\xe5\xd1\x72\xd3\xfe\xa3\xe5\x66\x7f\xa9\x06\xcb\xa8\xfc\xaf\xc9\xe0\xe6\x7b\x44\x7c\x08\xf0\xf9\x11\xf1\x95\xef\x05\x4f\x40\x90\x7b\xcc\x02\xf8\x5e\xf4\x72\xcf\x3c\x4a\x63\x04\xcf\x7d\x2c\x27\xb0\x9f\xec\x4a\x60\x7f\x3c\x22\x18\x51\xf2\x15\xc1\x74\xf0\x7a\x7f\xc7\x80\x5e\x99\xbd\xe9\xe0\x15\xc1\x9f\xef\xb5\xfa\x61\x0d\xcb\xaf\x08\x86\x80\x57\xab\x8f\xdc\xf2\x2a\x93\x11\x82\xd8\xab\xfd\xcc\x25\xf1\x9a\x60\xbe\xf7\x02\xf3\x2c\x82\x61\x79\xaf\xea\x3e\x70\xde\x0c\x55\x62\x41\x5f\x9f\xe7\x7f\xcf\x65\xd3\x82\xc6\xad\x5b\x36\xa3\x1b\x78\xf6\x6e\xe6\xd9\x8e\xd7\x38\x50\x65\x13\x41\x61\x5a\x2b\x9b\x4a\x47\x05\x5a\xa0\x6c\x3e\xa0\x2d\x9e\x75\x40\x07\xcf\x82\x73\x7c\xbe\xf7\x01\x1d\xf1\x2c\x82\x3a\xed\x09\xce\x11\x13\x50\x36\x11\xc4\xff\xbb\x19\x54\x10\xb8\x7b\xc7\xf2\xac\x1d\x1b\xca\x48\xd9\xbd\x80\xd1\x9f\x50\x4f\x95\x15\x29\xf2\x5b\x34\xd0\x5b\x65\x5f\x08\x15\x9a\xf0\x9a\x30\x84\xcb\x0a\x4f\xcc\x91\xf0\xf6\x15\x40\x5a\x51\x2a\x85\x82\xa6\x5b\x54\xf0\x65\x7c\xbe\x90\x89\xb9\xb3\x4e\x72\x3d\x0c\x2c\x76\x25\x89\x2d\x14\x5e\x10\xaa\x84\x75\x49\xae\x67\xc8\xfb\xf2\x95\x40\xb7\xd0\xf6\x8d\xcb\xa5\x24\x81\x34\x82\xb3\x97\x2c\xc3\x7e\xdc\xe6\xe5\xa7\x32\xe4\xc8\xa9\x35\x4a\x96\xa1\x3f\x2e\xbb\xf2\x53\x19\x66\x64\xeb\x18\x25\xcb\xb6\x1f\xe2\x4a\xc9\xf2\x68\x85\x81\xa9\x64\x81\x36\x1a\xed\x09\xb4\xc1\x78\xb2\x4e\xc6\xe4\x7b\xf3\x41\xda\x3f\xf4\x3e\xe3\xd5\x04\x34\xda\xbf\xd4\x1f\xdf\xdf\x1a\x7f\xac\x81\x3c\x1b\x15\xa9\xbc\x64\x4d\x40\xdc\xce\xc5\x9e\x8d\x10\x5f\x8a\x3d\x1b\xc1\x9b\x4a\x11\xc1\x2c\xaa\x9d\x19\x9d\xef\xe5\xcc\x28\x7c\x2f\xdc\x4d\x48\x13\xa5\x88\x60\x8e\x5e\xb1\x7d\x68\xa3\x81\xa9\x0f\x78\x3e\x5c\x8e\x9b\x16\x45\x32\xbb\xa6\x08\x49\xc4\xde\x2f\x5a\xf3\x90\x2f\x4a\x11\xb2\x28\x98\x4f\xa9\xa2\x90\xc3\x5e\x85\x2c\x4a\x7f\xf2\xdd\x94\xaa\xe9\x08\xce\x5a\xe4\x26\xa9\x88\x6b\xa5\x7a\x3e\x62\xbe\x5c\x22\x06\x9b\x6c\xa9\xda\x01\x89\x67\xb1\x8e\xc1\x70\x56\xf9\xf1\x18\x7f\xd5\x16\xc8\xbc\xa0\x2d\x10\x12\x6d\x51\x52\xbb\xc8\x92\x37\x4a\xf5\x41\x9c\xf4\xe0\x09\x61\x02\x34\x21\x05\x1a\x7c\x06\xa2\x83\xe6\x09\x8a\x06\x95\xc7\x2e\xf2\xda\x8d\x22\x3d\xe7\x13\xfa\x53\x7e\x7a\x4e\x8e\x3c\x80\xa3\x34\xbb\x8a\x98\x04\x55\xa9\xc1\x0d\x5b\x16\x18\x2b\x46\x64\x30\x56\x68\x35\xa5\x0d\xcd\x32\xff\x7b\x4f\xc4\x29\x10\x38\x2b\xf2\xf6\x8d\xd2\xbc\xeb\x83\xe2\xa6\x5d\xbf\xf3\xbd\x28\xee\x0c\x58\x14\xc3\x88\x54\xc3\xa6\xc2\x36\xba\x95\x80\x30\xdb\x16\xb9\x73\x2a\xf0\xb4\xa2\x2a\x36\x51\x3d\x72\x14\x55\xb1\xa9\x30\xaa\x6e\x4f\x36\xff\x7b\xd5\x63\x4e\xbb\x7d\x7c\x74\x20\x8a\x0b\xdf\x6b\xd1\x43\x0f\x2c\xdd\xe7\x9e\xf7\xbd\xa6\xfc\x2f\x0a\xe1\x9c\xdd\xf5\xb5\x39\x97\x8a\xba\x18\x40\xd6\xcb\x48\x1a\x41\xb4\x20\xec\xd6\xdc\x3f\x3f\x78\xc8\xd1\xe4\xf0\x49\x65\x16\x95\xdd\x0e\x9c\x47\x19\x1e\x03\x0d\x98\xb5\xc4\xfb\x53\x70\x32\xf6\xa1\x0b\xda\x44\x44\xe5\x28\xff\x0a\xda\xc4\x2c\x08\xa8\x55\xc0\x1e\x15\x17\x38\xdf\xd9\x9b\xd3\xbe\x3e\xf6\xe2\xf4\x95\xf1\xf9\xc4\x88\xb3\x10\x2e\xca\x2a\x72\xc3\xe5\xfb\xd3\xb8\x0a\x3a\x75\x71\x7d\x73\x1c\x5d\xc5\x45\x6f\x76\x58\x86\x92\xe6\xa1\x35\x97\x95\x34\x8f\x0d\xab\xa4\x79\x28\x85\x65\x25\xcd\x83\x8d\xba\xdc\x79\x44\x22\x8f\xb2\xb2\xe6\x71\x13\x19\x0e\xb6\x73\xb7\x1d\x66\x35\x8d\x37\x3c\x19\x70\xc2\x95\x25\x8f\x5d\xe0\x8a\x93\x91\xbc\x66\x94\x95\x25\x8f\x7b\x7e\x65\xc9\xe3\x02\x39\x4c\x2b\xec\xd4\x11\xc9\xe8\x97\xe5\xb0\xad\x96\xd3\xb2\xf2\xe4\xc1\x61\x57\x9e\x3c\xc4\x93\x73\x51\x1b\x6f\x9c\xa6\x96\x95\x56\x48\x32\x4a\x61\x71\x59\xca\x8f\xac\x70\x1a\x49\x38\xf8\x41\xc0\x41\xd8\xe2\xca\x84\x07\x6b\x5e\xc9\xbc\xb9\xfc\x57\x32\x6f\xce\xc4\xe9\x65\x0c\x52\x1d\xe6\x41\xa0\x5b\x39\x0d\x17\x67\xba\x94\x2c\x0f\xf3\x47\xb9\xbc\xa5\xe3\xff\x95\x2b\x8f\x35\x5a\xb9\xf2\x98\xac\xcb\x88\x91\xe8\xf3\x12\x6b\xfc\x7c\xd0\xf4\xff\xf8\xd3\x6d\x74\x79\xc1\x61\xb4\xaa\xf9\x83\x75\xa3\x28\x8b\x1e\xba\x7a\xb9\x04\x1d\xe0\xee\x70\x96\xf0\x9d\x33\x7d\xad\x9d\x4c\x8b\x6b\x71\x63\x9e\x2f\x2f\x6e\x08\xff\xe5\xf6\xe2\x22\x03\xfd\x94\xc5\x4f\xc0\x50\xb9\x3d\x07\x48\xbf\x3f\xed\xb1\x60\xc2\x28\xb7\x17\x9b\x3b\xf0\x5e\xe9\x43\x62\x96\x9c\x76\x2f\x92\x4f\x8d\xb2\x32\x8b\x43\xb9\xf3\xea\x45\x3a\xaa\x51\x84\x08\x2b\x19\xce\xf0\x18\x7f\xc7\xae\x5c\x9e\x21\xf6\x98\x53\xdf\x81\x42\x2c\xc2\x80\x55\xf0\x95\xe5\x31\xec\x13\xf9\xce\xa0\xae\x8e\x40\xe6\x70\xe8\x0e\x97\x53\x6a\x3b\xe2\x60\x8b\x82\x9f\x2b\xba\xc5\x63\xb0\x06\xa7\xc7\xa9\xed\x3a\x07\xee\x35\xf4\x39\x46\xf5\x1a\xab\xc1\xd6\x37\xee\xab\xb3\x91\x5f\x47\x16\xc2\xa0\x9c\xca\xae\xc3\x5d\x9c\xca\xae\xb3\x06\xef\xe2\xee\x0c\xc3\xa4\xc2\x08\x9c\xdc\xae\xc3\x27\x5f\x93\x8a\xac\x68\xb8\x58\x67\xe5\xe5\xd6\xd9\x3a\xbc\xf7\x35\x54\x05\xf1\xf1\xa7\x99\x15\x42\x4d\xeb\xb6\x90\x2a\x33\x7e\x30\xb1\x85\x1f\x5c\x16\x3b\x7a\xad\x9b\x2f\xae\x90\xc9\xab\x43\xa7\xdb\xa7\x8d\xa6\x4e\x5a\x3c\x5b\xdc\xe0\xff\x61\xca\xf6\xf8\xc1\xb4\xc7\x75\x5d\x37\xd3\x9e\x18\xa7\x69\x8f\x73\x52\x8d\x2c\x8b\x1a\xd6\xa3\x6e\xa6\x3d\xf1\x86\x69\x4f\xf4\xb2\x60\x3a\x41\xc9\xee\x08\xe5\xd8\xf6\x55\x49\xf4\x22\x41\xc6\xa8\xfb\x9a\x8c\x68\x62\x57\xf2\xc6\x49\x0b\x45\x94\xc6\x20\x8c\x47\x8b\x02\x48\xa3\x2e\x3c\x5a\x08\x12\x75\x57\x36\x93\xc9\x17\x9e\x8b\x60\xa3\x75\xf7\x5c\x34\xbe\x30\xd2\x99\x67\x53\x1e\x4c\xb1\xee\xa6\x9c\x05\xd9\x4d\x79\x65\xd8\xa6\x3c\x44\x83\x9a\xbc\xec\x71\x14\xeb\x4f\x57\x2c\x91\x9c\x61\x54\x25\xd9\x8b\xe4\x0c\xa3\x3a\x56\x1b\x28\x43\x4d\x55\x2f\xd0\xe2\xda\xf1\xfc\xe0\x1d\x9f\xf8\xc2\x94\x16\x7e\x58\xab\x4e\x27\x6b\xc7\xd3\xc6\xda\xf1\xb1\x20\x69\xed\xe7\x58\x00\x97\xa2\xc7\xa0\x5f\xf3\xa2\x2c\x26\x38\x1b\x7a\x15\xa2\x40\x55\xf4\x76\xc3\x02\x5c\xb3\xd9\x10\xb3\x93\x7d\x36\x43\x62\xa9\xd9\xe3\x08\x81\xb8\xba\xd8\xfc\xa4\x4d\x63\xb4\x83\x4f\x55\xe7\xbd\xcb\x90\x52\x8c\xd1\x0e\x06\x50\x5d\x5e\x28\x92\x17\x8f\x5a\x84\xd1\x66\xff\x3a\xf1\x5d\xe6\xd8\x38\xc5\x52\xfe\xdb\x5d\x55\x8b\xb1\xea\xc1\xb5\xaa\xf3\xe2\x65\x36\x73\x11\xba\x93\xe9\x2f\xc2\xaa\x33\x0d\x3f\x4d\xb0\x4c\x8e\x4b\x31\xc0\xa9\x33\xe2\xcb\x99\x80\x18\xe1\xed\x3e\x69\x72\xcd\x4b\xcc\x75\xf5\x34\x04\xcb\xaa\xd5\x01\x61\x21\x67\xd4\xea\x4c\x53\x30\x07\x17\xbc\x27\xb0\xbb\x56\xcf\x03\x2c\xca\x15\xf0\x33\x27\x42\xae\xa2\x1d\x05\xa5\xba\x04\x7e\x54\x46\x1d\xb5\x1a\x97\x4f\x13\x76\xe6\x42\x8a\xc1\x75\x99\x83\x5b\x4d\x1b\x1b\x5c\x11\xe9\xf3\xd3\xa9\xb1\x28\x71\x13\xd5\xe6\x3d\xc0\x31\x6c\x6b\x0f\xc4\x04\x36\x23\x8a\x3f\x9f\x98\xf8\xc2\x1b\x6b\x13\xc4\x04\x36\x13\x5f\xf9\xc1\xc4\xb3\xbf\x9b\xd7\x39\x2e\x81\xda\xb4\x8e\x1c\xc4\x66\xd2\x38\x55\x2b\xca\x3d\x6e\xc0\xda\x94\xa4\x13\xee\xdb\xd6\x32\xc6\x0b\x7d\x2d\x63\xbc\xd1\xad\x39\x70\x4b\xf4\xb5\x48\xfc\xa0\x71\x0e\xb6\x57\xf7\x22\x71\x17\x29\xf4\x7d\xc7\x14\x51\x85\xb9\xdb\x07\x47\xc2\x99\x9d\x50\x44\xab\x30\x77\x3b\x08\xe6\xaa\xa0\x9b\x1d\x03\x52\x55\x74\x3c\x50\xd4\x3a\x9c\x90\x12\x76\xaa\x04\x79\x3b\xca\x6b\x55\xfd\xd2\x7d\x70\x2e\x86\x33\x73\x72\xda\x7f\xaa\x5b\x05\xa5\x5c\xe5\x84\xdb\x07\xd7\xd7\x30\xad\x3b\x9d\x74\x7d\x41\x1f\x26\x95\xbb\x69\x98\xd4\x50\x60\xeb\x50\xbc\xc4\x67\x10\x0b\xec\x19\xa4\x8f\xb5\x68\x74\x7a\xbb\xd3\x98\x4f\x65\xe1\xdb\xc7\x87\x76\x67\xb9\x0a\x59\xa8\xaa\xe6\xe9\x4e\x6e\x81\x3a\x05\xab\x64\xdc\x52\x08\x27\x71\xc3\x75\x9a\x74\x5a\x70\x88\x44\x98\x25\xeb\x5c\xa4\xc7\x64\x49\x1f\x1c\x80\x83\xeb\x5c\xb4\xd3\x86\x69\xe7\x6e\x99\x6b\x99\x69\xe3\x54\xaf\x74\x72\xe9\x99\xff\x17\xe9\xbc\x60\xd2\xb9\x9e\xa4\x10\xee\x44\x34\xd4\x63\xed\x83\xa0\xec\xf0\x3e\xd8\xf8\xc1\xfb\x00\x1e\x21\x85\x70\x27\xa6\xad\x4a\x21\xdc\x41\x0e\xd7\xa3\x69\xd1\x82\x54\x87\x07\x11\x53\x56\x0f\x05\x2d\x7c\x9a\x9c\x02\xd0\xc7\x30\x0f\xad\x3a\x27\xe0\x50\x8c\x0b\x33\xf3\x53\xec\x2a\x50\xa5\x7a\x3a\x2f\x29\x54\xac\xd4\x52\x83\x1f\x8a\x7f\x88\xb9\x5a\xa9\xa5\xc2\x0a\x50\x4f\x67\x2a\x65\x67\x39\xb7\x14\x91\x35\x55\xa8\xbe\x44\x68\x4d\x55\x72\xa9\xc2\x30\x4f\xc7\x01\xd0\x82\x2b\xfe\xcd\x3f\xb9\x93\xaa\xb4\xbe\x44\xa4\x4f\x3d\x8d\x52\xe6\xc0\x5d\x2b\xe6\x25\xb6\xcc\x65\x83\x11\xd7\xeb\xe5\xd4\xa4\xa1\x8e\xd4\x6b\x4d\x44\x4c\xdd\xe5\x89\x40\xf2\xba\x3c\x11\x6c\xdd\xcb\x13\x31\x68\xd4\x29\x5b\xc3\xb2\x57\x2f\xa7\x6c\x65\x3d\x2f\xaf\x1f\x4d\x9c\x7e\x81\x26\x1c\xcd\xc3\xc0\x8d\xc8\xe6\x08\xae\xf0\x9e\x20\xf5\xf6\x0a\x47\x0f\xb7\x01\xda\x70\x5a\x69\x77\x09\x03\x6e\xbd\x9d\x99\x2e\x26\x5f\xca\xdc\xc0\x21\x5c\x57\x3c\x10\xa2\xc7\xed\x1c\x23\x48\x02\x0e\x08\xc2\xbc\x55\x6f\xa7\x62\xe4\xda\xb9\x5d\x88\x89\xeb\x50\x95\xa4\x30\x94\x57\xa9\x7f\x09\x57\x41\xbd\x9d\x95\x95\xab\xec\xb1\xb4\xcd\x22\x3e\x26\x8d\x45\x7c\x9c\xa6\x95\x9b\xeb\x31\xf6\x1c\xb1\xea\x71\xd6\x3d\x2e\xa2\xc7\xa4\x20\xe5\x3c\xce\x7b\x16\x03\xff\x29\x8c\x15\x6b\x74\x7d\x1c\xa2\x82\x88\xb2\x4a\x4c\x71\x07\xcb\x9b\x97\x30\x68\x57\x01\x04\x2b\xa9\x02\xea\xb3\x48\x8b\x4f\x5e\x27\x9c\xe5\x8d\x77\x91\x16\x33\xfc\x9a\x34\x84\xb9\xd7\x5a\x54\xe7\x8d\xe6\xb4\x1b\x41\x9a\xea\xc4\x62\xa9\xa8\xef\x5a\xb5\x18\xb9\x52\x6e\x35\x8e\xfa\xab\x28\xae\xc9\xff\xa7\xfe\xa7\xc1\xcb\x74\xf0\x82\xf1\xe0\x2c\xd1\xeb\xfc\xb2\xac\xc8\x4a\xca\x15\x73\xd1\x36\xe7\x97\x8d\x8d\xd1\x36\xe7\x97\x8d\xad\xd3\xa4\x40\x96\xfc\x79\xa3\xf8\x8d\x11\x3f\xb8\x4c\x66\x8c\xa3\x6d\x8a\x17\x88\x63\xd6\x54\x24\x36\x52\xf0\x8d\xb6\x39\x5e\x2d\x26\xaf\x6d\xa6\xb4\xc4\xb3\x28\x9d\x8c\xf2\x72\x0f\xb4\x68\x07\xfc\xe0\x0b\x09\x6b\xb8\x54\x9b\x74\xc1\x8a\x09\xb1\xfd\x74\xc1\x1a\x89\xfd\x47\x53\xfe\xf4\x19\x79\x3d\x47\x73\xe6\x82\x48\x88\x37\x9a\x74\xbd\x92\x3f\x4d\x74\x65\xd4\xab\xf1\x3c\x1c\x45\x17\x53\x23\x5d\x2f\x6f\x95\x51\x1c\xfa\x82\x3e\x8c\xe0\xcf\x34\x71\xf9\x0b\xfa\x78\xfc\x43\xcc\xae\x74\xbd\xbc\xc5\x41\x6c\xc9\xf9\xac\xe2\x48\x34\xf9\x05\xf3\x16\x02\x75\x4b\x2b\xe3\x4b\x34\x9a\x5c\x15\x34\x0e\x62\x93\xfa\x97\x88\x9d\x6c\x4a\xd5\x95\xb7\x4a\x2f\x2b\x8d\x70\x8c\x43\xfa\x5f\x26\x80\xbb\x25\x3b\x5a\x58\x94\xb4\xa8\x0f\x6a\x93\x33\x0f\x17\x7e\x70\x99\xd0\xc4\xd0\x6f\xcd\x0f\xcf\x8b\xfa\x58\x57\xe9\x83\x8d\x98\x87\x26\xf5\xef\x13\x39\xdf\x94\xbe\x20\x63\x53\x6c\xd2\x07\x73\xfa\x5b\x3a\x85\xa6\x4c\xbb\x19\xbc\x51\x53\x25\x5a\x90\x15\x4d\x95\x68\x3f\xe9\x93\x9a\xb2\xac\x7f\x32\xc3\x35\x69\x93\x9f\xe4\x02\x2d\x3b\x1c\x26\xb4\xf1\x26\x75\xf2\x93\x1e\xa0\x29\xad\x3a\x08\x88\x26\xf5\xf2\x93\x92\xab\x49\x9b\x2c\x78\x0f\x9a\x12\xf6\x66\xe0\x74\xad\xd8\x72\xbf\xd1\x86\x86\x01\x5e\xb5\x49\x9d\xcb\x20\xee\x5a\x71\xc0\x4a\x0c\xbc\x18\x7d\x1f\x4d\x0a\xf1\xf7\x59\xae\x2a\xb8\x23\x7b\xd3\x08\x3f\x76\x91\x11\x7e\x61\x6e\x69\x55\x61\x65\xec\xfe\x6a\x70\x1d\xcf\x42\x2e\x7d\xda\x3b\xff\xfb\x5f\x26\x34\xb6\x55\xb9\xa1\x12\xff\x3f\x7a\xe6\xff\x57\xcf\xd1\x5e\xb3\xb5\x38\x38\x64\x6b\xb6\xef\xb0\x9f\x96\xfe\xc5\x5a\x2d\xfd\x8b\xd5\xfc\xa7\x7f\x05\x11\x4d\xa2\xfd\xa7\x93\x25\xde\xd2\xc4\xf4\xd9\x89\x1d\xe2\xba\xb2\x58\x91\x5a\x73\x04\x22\x4d\x0a\x81\x85\xc6\xdb\xda\xab\xa8\x85\x78\xee\x8a\x72\x08\x55\xaa\x39\x25\x6f\xe7\x79\x29\xd5\xb1\x32\xdd\x90\x74\x1a\x10\x24\x9d\xcd\xd1\x85\xb6\xe6\x90\x74\xa1\xab\x39\xcc\x5d\xe9\x84\x58\xc9\xae\x20\x02\x78\x4c\x17\xd8\x9a\xfd\xda\x6d\x0c\x86\xd3\xa9\x42\x2c\x81\x20\x6d\x08\xdc\xc9\xb4\x0e\x21\x5d\x99\x77\xc1\x10\xa3\x96\xd4\x68\x43\x60\x55\x4e\xc8\x50\xc8\x63\xc8\x12\x4d\xb9\x71\x89\x94\x6d\x43\x60\xd5\x70\x3d\xb4\x29\x68\x75\x98\x2e\x9a\x52\xe3\x12\x88\xda\xe6\x9a\xb1\x18\x80\x60\x87\x58\x67\x9a\x62\x99\x3e\x7b\x7f\x9a\x20\xde\x17\x41\x30\xa2\x69\x82\x62\x86\xa6\xd0\xb9\x8d\x67\x61\xaf\x59\x91\x29\xec\x35\x2b\x30\x4d\x60\xac\xe0\x14\x81\x21\x2e\xb4\x29\x02\xe1\x9d\x87\xef\x2f\x2e\xd5\x43\x14\xb2\xb5\x0f\x1f\xce\xe8\xe0\x30\x81\xfc\xaf\xc3\x19\x7a\x42\x3b\x4c\x60\x10\x74\x88\x20\xae\xa6\x43\x04\xc1\xde\x0f\xc1\x8d\xb9\x61\x0f\xaf\x60\x0c\xd8\xa1\x4b\x04\x2f\xb7\x43\x89\x67\xa0\xd8\x30\x42\x66\xec\x54\xf9\x33\x96\x5c\x49\x0d\x3a\x98\x99\x76\x0a\x38\xf9\x69\x40\xc0\x49\xa6\xf4\x34\x7b\x89\x25\x3a\x0d\x8d\xe5\x7b\x21\x43\x59\xb2\x53\xc0\x49\xf6\xe8\x29\xf6\xf3\x19\x80\x80\x93\x9f\xf6\x84\x83\x64\x06\x2e\x01\x3d\xd9\x83\x97\xb0\xbb\xf4\x27\xd4\x62\xfa\xfc\xef\xf1\xff\xc9\x9c\xd7\x2e\x25\x11\x62\xbd\x2f\xa1\x42\x3f\xcf\x26\x2e\x66\xef\x32\x2a\x34\x88\xbb\x4c\x5c\x6c\x8f\x4b\xb8\x5f\x88\xbd\x84\x02\xfd\xfc\x2f\x9c\x2f\xcb\xff\xd3\x4b\x32\x9a\x4e\x13\x42\x91\xd0\xf5\x76\xff\x88\x89\x22\x38\xa3\x09\xa0\x88\x66\xdb\x6e\x79\xb7\xd9\x0e\x02\x24\x92\x18\xa3\x09\x90\x48\x0e\xa1\xf6\x53\x49\x32\xa1\xe5\xed\xa7\x91\x0c\x72\x20\xb5\xdb\x77\x01\xcf\x97\xfe\x0f\xfa\x85\x41\x9c\x9f\xf1\x3e\x7a\x3f\x16\x4f\x18\x44\xd2\x2a\x34\x61\x0c\xe7\xe7\xd9\xf4\xc4\xf8\x1f\xd3\x13\x8b\xa9\xf4\x04\x20\xcb\x9b\x30\x85\x24\xfe\x68\x3f\x3d\x64\x90\x71\xa3\x3d\x1e\x3f\xdf\x9f\x7a\x8e\xf1\x08\x53\x48\x6a\xd3\xf6\xd3\x42\x32\x7a\x61\x7b\x5c\x6d\x0b\x79\xf4\x95\x23\x13\x06\xf5\x7a\x82\xa3\xc1\x57\x4e\x97\xce\xb3\x10\x0f\x9c\xcf\x57\x18\x8f\xb0\xad\xb5\x57\x88\x07\x38\xee\x2b\xcc\x07\x02\xc5\xeb\xcb\xf5\x5f\x7b\xfd\xa7\x09\x64\x0c\x2a\x7d\x93\xd7\x6c\xf0\x6c\x60\x0e\xcf\x1a\x6f\xdc\xbd\x7d\x13\x26\x25\x34\x8b\x2e\x48\x1f\xa6\xa8\xbe\x0d\x3d\xd7\x78\x16\x42\x63\xf0\xff\xa1\xef\x73\x3c\x1b\x9a\xc6\xff\x82\x29\x85\xb0\xd1\x37\xa1\x27\x06\xcf\x42\x4f\xc4\x0d\xd2\x77\xa7\x17\x8e\x8b\xbc\xaf\x04\xbc\xb1\x84\x7d\x17\xec\x26\x6e\xdd\x2e\x67\xcf\x04\x1c\xd1\x77\xb9\xc8\xe3\xd6\xec\x76\xe5\x60\x59\xe9\x0a\x19\xda\xb0\xea\x75\xe7\x1e\x40\x99\xef\xbb\x5c\xe4\xa1\xf0\x76\xbb\x72\x30\x52\x74\x7b\x6e\x10\xe3\x7a\x5a\x42\x4d\xf4\x9a\xe4\xda\x0f\x83\x41\x4f\xce\x1a\x14\xda\x51\xb7\x2f\x07\x2b\x54\x97\x2f\x87\xa0\x83\x6e\x4f\x0d\xf6\x97\x9e\xe4\xe6\x0e\x41\xac\xdb\x51\x43\x22\x88\x9e\x9c\xec\x78\xa3\x8f\xdb\x3f\xd0\xc7\x22\x24\x3a\xb1\xa3\x06\x63\x59\xb7\xa3\x06\xab\x5e\xcf\x5e\x80\x38\xc3\x3d\x2f\x4a\xf8\x44\xce\xfd\xc2\x0b\xd5\x4d\xc4\x12\x65\x25\xb4\x08\xb9\xa5\xcb\xb3\xb3\x61\x88\xed\xd9\x94\x04\x1f\xea\x59\x1e\xfb\x42\x0b\xa6\x6c\xa7\x89\xc7\xa3\xe2\x0d\x61\x14\x42\x89\xee\xc5\xfe\xf9\xd0\x08\x7a\x59\x89\xab\x83\xb0\xb2\x76\x16\x6f\x38\x39\x4a\x70\x9f\x2e\xe7\xcd\x86\xcc\xd8\x8b\xbc\xda\x61\x08\xec\x06\xdd\x0d\x9a\xb4\x63\x2c\x8e\x77\x5f\x39\x09\x58\xc3\x95\x93\x80\x4f\x56\x4e\x82\x3e\xff\x72\xff\xf4\x95\xb0\x80\xf3\x55\xe5\x21\x0c\x93\x6b\xaf\xf6\x10\x86\x10\xda\xab\x77\x55\xec\x80\x6a\x0f\x61\xe3\x8b\xae\x16\x82\xc6\x6a\x07\x61\x67\x84\x53\x2f\xd0\xa2\xfd\x83\xc1\xd3\x7a\xb5\x5f\xae\xd3\x84\x7d\xa3\xec\x10\xe7\x11\x26\x85\x4f\xaf\x6b\xa2\x62\x3d\xab\x27\x0a\x46\xd0\x36\xf5\x1a\x2f\xb4\x35\x4f\x31\xee\xa5\x35\xb0\x95\x9b\xbd\xbe\x9c\xb0\x26\x07\x38\x9c\x63\xe5\x15\xe6\x14\xff\x94\x84\x42\xa2\x96\xde\xec\x0a\xe5\x10\x37\x93\x3a\x68\xd2\x78\x8b\xb0\x79\xf4\x66\x52\x07\x9f\x2c\x52\xe9\xd5\xa4\xc2\x72\xdb\x22\x35\x86\xa1\x42\x49\x75\x32\x19\x52\x24\xc6\xf6\x79\xc3\x50\x07\x78\x5c\xb7\xc7\x3b\x7a\xed\x8b\xf6\x98\xbe\x6e\xe7\x7f\x2c\x7b\x37\xed\x9d\x3e\x4c\x3b\x2d\x3a\x8f\x54\x88\xb6\xbd\x2f\xda\x69\xc2\xcb\x0c\xed\xdd\xe6\x9c\x10\xbd\xba\x9d\x38\xe4\x46\xe8\x4a\x9d\x46\xb6\xcf\x3e\xec\x5c\xe5\x7f\xeb\x75\x6c\x25\xfb\x70\x08\x02\xe8\xf2\xe1\x0c\x24\xf2\x3e\xec\x57\x63\x2a\xec\xc4\x21\x5f\x42\xb7\x13\x07\x9c\x7f\x97\xd3\xa6\x7f\x7b\xb1\xc7\xf4\xf3\x89\x3c\x6d\xdc\x82\x76\xd1\x60\x1b\xe8\xd3\x2e\xc2\x90\xe3\xfb\xb4\x8a\x1a\x62\x6e\x9f\x8b\x94\x98\x2e\xbb\x60\xc8\xeb\xd0\xa7\x47\x1e\xc2\x5c\xb7\x0b\x86\x4c\x0e\xdd\x1e\x17\x22\x6c\xfa\xb4\x8f\x10\xea\xa7\xdd\x4d\x6c\x15\xfb\x5c\xc0\xcc\x77\x61\xf0\x08\x52\xee\xf3\xd5\x94\xc7\x28\x54\x96\x16\x3f\x50\xb7\x3b\x05\x48\x51\x3f\x96\xae\xcd\x1b\xd5\xc8\xb7\x18\x84\x53\x21\x7f\x08\x39\xec\x29\xa2\xd3\x43\x9e\x22\xd6\xd9\xd9\xd4\xb0\x68\xf6\xc3\xae\xa2\xcf\x30\xec\x2a\xca\x7c\x62\x57\x11\x57\x80\xf3\xad\x7d\x44\x8d\xd3\xde\x07\xee\x43\xe7\x5b\x23\xa2\xa4\xff\x54\x93\x4a\x18\x61\x77\xbe\x35\xf2\x8f\x74\xe7\x5b\xc3\x8e\xda\x4f\xfb\xcd\x10\x1e\x9c\x6f\x8d\x64\x4d\xfd\xb4\x61\x81\xcb\xcc\x09\xd8\x30\x0e\x76\xe7\x58\x63\x32\x4e\x4f\x46\xac\xc0\xb9\x26\x83\x51\x78\x32\x3e\x84\x78\x32\x3e\x9f\xac\xc9\x88\x1f\x9c\x65\x2d\xc4\xc6\x7e\xb9\x1a\x10\xfb\xe2\xf2\x5c\x84\x99\xaf\x5f\x76\x9b\x15\xde\x58\x93\x11\xe3\xbe\xd6\x64\xc4\x3a\x5f\xf6\xa3\xc5\x38\x2f\xb9\xcd\xf2\x9f\xe2\x60\xfb\xb5\xa6\x85\x21\x7b\x93\x20\xdf\x5c\x9a\x97\x4f\x77\x9e\x17\xae\x70\x79\x69\x3e\x29\xc1\xfb\x2d\xbf\x28\xa2\xdf\xad\x54\x72\x08\xab\x8a\xcf\x4a\x1f\xb9\xe2\xb6\xc1\x94\x0b\x5b\x5e\x99\x06\x9a\xb7\xdb\x2b\xf3\x91\x37\xed\x95\xf9\x08\x87\xf6\xca\x7c\xe6\xfa\x36\x34\x9f\xf3\xe0\x3c\x6d\x1f\x29\xcb\x6e\x1a\x3c\xa5\x5d\x89\xdb\xd2\x67\x2a\x6f\xaf\xf0\xa7\x8d\xd7\x9f\x44\x2f\x8f\x3c\x50\xdc\xba\xcf\xba\xff\x62\x41\x9f\xe5\x81\x0a\x62\xed\xa6\xf9\x88\x72\xcf\xa2\x3e\xe6\x4f\xc0\xbe\xf4\x11\xb3\xec\xc8\xf9\xc8\x76\xcf\x72\x3a\xc6\x84\x3d\x6b\x3a\xf8\xe1\x70\x1b\xf4\x62\xea\xb9\xa9\x7f\x3a\x54\x2d\x9f\x4e\x4c\x3c\x82\xee\xb3\xcc\x52\xfc\x20\xef\x1b\x4d\xbe\x49\xcf\x31\x17\xef\x5a\xd7\x98\x8c\xd7\x94\x71\xb2\x55\x08\xa5\x11\x3e\xd0\xe5\x95\x21\xe2\xa4\xbf\x76\xa5\x31\xe1\x72\xcb\x00\xdb\xee\xaf\x1d\x50\xa1\x7a\xf7\x9f\xa6\x45\x45\xda\xd1\xed\x84\xc1\x13\x34\xec\x84\x21\x24\x63\xd8\x09\xc3\xfe\x1c\x9b\xdd\x4d\x8d\x1f\xec\x49\x0b\x0e\x35\xe4\x95\x69\x18\x6f\xc7\x26\x37\xe2\xe7\x0b\xbb\xda\xc2\xa2\x30\x36\xfb\x9f\x1a\xbd\xda\x6b\x18\x06\x8e\xb1\x99\xd4\x46\x27\x76\xb6\x85\xc9\x64\xd8\x31\x83\xdb\x70\x6c\x72\x23\xc6\x41\x1b\xf2\xcb\x14\xd0\x2c\x43\x6e\x97\x04\xe7\x1c\xbb\xfd\x64\xc1\x28\x87\x12\x42\x27\x8e\xf7\xd8\x57\x81\xb0\x2d\x7e\xb0\xff\xa8\xd0\xa8\x6b\x1f\x31\xa3\xcb\xad\xc2\x38\x76\x27\x3c\x84\xd8\x5d\x15\x0c\xe3\x10\x8c\xe5\x55\x81\xd6\x9f\x1e\x56\x11\x73\xc6\x4f\x0d\xab\xc4\x56\x8d\x9f\x1a\x56\xa3\xe4\xec\x18\xd2\xc2\xf2\xc6\x84\xdb\xa5\x02\xca\x7d\xd8\xa5\x82\x4b\x6a\xc8\xa5\x52\x09\x33\x1b\x52\xd4\x32\x1c\x7f\x2c\x97\x4a\xe3\x87\xc3\x6f\x04\xa5\x69\x91\x1e\xb3\xf5\xcf\xc7\x42\xa3\xb7\x2d\x89\x8c\x63\x79\x23\x62\x09\xe4\x64\xc9\xa0\xa9\x86\x4b\xa6\xc0\x2f\x87\x8a\xdd\x12\xac\x36\xec\x74\x41\x8a\x19\x76\xba\x20\xb0\x0d\xa9\x6e\xb9\x7c\xde\x68\x2a\x9f\xc6\x0b\xab\x9e\x23\x7d\x0c\xff\x10\x13\xa8\xf2\xb6\x08\x1c\xe3\xa7\xca\x55\x4c\x62\xc3\x6e\x16\x4c\x04\x43\xf9\x1d\x32\x28\xc7\x61\xbf\x0b\x00\xd0\x91\x5f\xbf\x11\x4b\x60\xe5\x2e\xee\xb2\xa1\x8c\x0f\xe0\xea\x87\x51\x7d\xbf\x8b\xe0\x0f\x57\xd5\x28\x36\x1a\x05\x49\xc5\x0e\x30\x66\xda\x3e\x9a\xf2\xf9\x41\x52\x7f\x61\x3c\xca\xdb\x0f\x27\x50\x92\x86\xfd\xf3\xbe\xce\x13\x76\xb8\xa1\x44\xd3\x44\x56\x8e\xaa\xf0\x7a\x26\xf1\xa7\xb5\x8d\xa8\x9a\x35\x86\x7c\x32\x51\x65\x6b\x0c\x85\x4f\x01\xf5\x18\x55\x66\xa4\xcc\xf7\x16\xde\x99\xc2\x9f\x8e\x56\xc8\x71\x31\x7e\x1a\x59\x01\x2c\x3c\xaa\x79\x32\x07\x49\xb0\xb9\x0f\xee\x70\xfc\x14\xb0\x42\xf6\xc0\xf1\xd3\xbf\x2a\x82\xe6\x68\xae\x34\x1e\x5b\x5c\x3e\x9b\x8f\xe9\x7b\x38\x41\x1d\xd1\xce\xa3\xd9\xdd\xc1\xb3\x38\x06\x1b\xa3\x29\xbf\x0e\x67\xb9\x29\x71\x08\x67\xb9\xc9\xfd\x51\xe9\xd1\xc6\x79\xbe\x7f\x7c\x84\xf8\x41\x89\x43\x42\xf7\x1e\x5d\xb9\x32\x42\x77\x1b\x5d\xc6\xfa\x10\xbf\x47\x97\xb1\x9e\x83\x2e\x7f\x0d\x19\xf5\x86\xd2\x4e\x94\xc1\xff\x32\xbe\x4f\xda\x57\x2e\x8f\x50\xe3\x46\x57\xae\xd3\x50\x50\x47\x97\xf7\x20\x74\xde\xd1\x3d\xbe\xf8\x7f\xc8\x5d\x12\x42\xdd\x18\xf2\xe4\x85\x75\x61\x38\xf1\x34\x69\xa9\xc6\x70\xca\x77\xb8\xf2\x50\x9a\x05\xd6\x60\xc8\x98\xde\xe9\x41\xf6\x66\xf6\xa1\xf3\x4a\x30\x23\x43\x39\x03\x58\x82\xa1\x24\x04\x93\x67\x3b\xf0\xc3\xc0\x3d\x84\x65\x1b\x9f\x6d\x32\x65\x7e\x0f\xdd\x6b\x38\xb1\x04\x8b\x3e\x65\x7e\x67\x0e\x9d\x48\xa2\xf3\xbd\x2c\xea\x2c\xba\x13\x49\x30\x67\x53\x16\x75\xd6\xcc\x89\x24\x58\x63\x25\x92\x20\xfc\x61\x38\x91\x04\x73\xe8\x44\x12\x28\x33\x63\x3a\x3f\x38\xec\xc0\x99\x24\xe0\x78\x53\x0e\x07\x56\x45\x3e\x9f\xf6\x99\xb4\xc3\x24\xc7\x90\x0f\x1f\xf6\x68\xc0\xa9\x25\xd8\x46\x87\x49\x8a\x45\x71\xea\x88\x90\x51\x87\x53\x45\xb0\xaf\x9d\x2a\x02\xee\x72\x78\xd1\x78\x76\xfc\x0e\xfb\xf0\xa7\x29\x65\x24\xb2\x71\xca\xca\x0e\x53\x3f\xc5\x5d\x90\x5b\xe4\x92\x01\xaa\x3a\xe4\x92\xa1\x92\xd5\x90\x4b\x06\xc8\xf2\x90\x4b\xe6\xc3\x2a\x4e\x59\xd1\x43\x3a\x1b\xa7\xbc\x00\x21\xfd\x8e\x9f\x7e\x33\xc0\x58\x0f\xa9\x37\x15\x23\xd5\x50\xe6\x09\xaa\x21\x0c\xa9\x26\xe5\x73\x4f\x09\x13\xd6\xb6\xcf\x17\x1a\x12\xdc\x48\xb9\x21\xd0\x25\xc6\x25\xbb\x34\x47\xef\x92\x5d\x7a\xd2\xa0\x38\x34\x00\x8e\x71\x2b\x38\x12\x06\x7a\x2b\x70\x30\xd4\xd1\x21\xcf\x0a\x9a\xe3\xb8\x15\xfa\x58\xfe\x94\x8e\x6e\xd8\x0d\x13\xf6\xb1\xb1\xdc\x30\x74\x26\xab\x7b\xe6\xd9\xec\x3d\x26\xf0\x96\x97\x80\x8b\xfd\x36\x75\x0c\x46\x2e\xf9\x0c\x31\x8a\x0c\xe5\xbe\xbc\x65\x75\x0f\x6b\xd1\x90\x1b\x06\x15\x76\x3c\x8a\x7d\xe5\x7e\x7b\x5c\xd8\x07\x59\x4e\x7a\xc2\xf6\x11\x75\x1f\x19\xdd\x99\x3e\x07\x04\xa5\x4f\x93\xb6\xe0\x72\x45\x3d\xb6\xe0\x22\x28\x3c\xb2\xe0\x22\x34\x39\x22\xe8\x23\x89\xbd\x0a\xa0\x82\xdf\xbf\xb2\x3b\xc3\x7b\x5e\x5f\x30\x9c\x4c\xc7\xff\x7c\x44\xb7\x77\x0d\x9b\x26\x3d\xec\x98\xb8\xd7\x26\xf6\x18\xf5\xbb\x5c\x05\x31\xd3\xef\xa2\x8b\x41\x2c\xba\xe8\xf4\x56\x13\x7c\xb1\xe8\x8c\xa9\x79\xed\x43\x0a\x3b\xda\x94\x22\xf1\xc9\x26\x38\x95\xa8\x01\x11\x6a\x6e\xf2\x25\x84\x34\x3e\x05\xdd\xda\x80\xc0\x4e\x69\x09\x1b\xb8\xe5\xa9\x14\xd2\xe4\x24\x9b\x0e\xed\x01\x8a\x3f\x7f\x4a\x42\x21\x49\xd9\x74\x64\x0f\x60\xdf\xe9\xc8\x1e\x30\xdd\xd3\x81\x3c\xe0\xc2\xe7\x2e\x0b\x6d\xe2\x79\xf7\x17\x31\x6c\x41\xb3\x36\x80\xb9\x73\x57\xb4\x4a\x6c\x9a\xb9\xaf\x61\x8f\xf8\x41\x81\x7b\x95\x16\x8c\x78\x0f\x6e\x3e\x77\x1b\xe6\x62\xe7\xce\x64\xa9\x24\x5a\x48\x36\xd4\xc5\x0d\x35\x93\xed\x5b\x71\xf2\xa7\xd3\x2d\xa4\x4f\x13\x55\x4d\xc4\xec\x27\x1b\xee\xe2\x8a\x98\xc9\x86\xbb\x41\x27\xb6\x30\xc6\xf9\x9d\x49\xd8\xfe\xcc\x17\xca\x28\x1e\xe7\x75\xba\xfe\x21\x99\x2c\x66\x5a\x74\x04\x61\xd9\x51\x0a\x71\xaf\xcd\x6c\x5b\x6a\x5c\x8c\x33\xdb\x70\xc7\x0b\x36\xe8\x54\x7e\xb0\xfd\x26\xce\xc3\x94\xec\xce\x89\x9b\xd9\xb6\xac\x38\x61\x33\xdb\xa0\x13\x94\x67\x5b\x64\x18\x94\x2d\x32\x95\x17\x54\x0c\x00\xba\xf2\x32\x63\xc4\x0f\x8e\xaf\x21\xe7\xc9\x2c\xb6\x43\x85\x06\x37\xe5\x64\xf9\xa4\xa4\x9f\x2a\x61\x0e\xa3\x98\xc5\x36\x89\x38\x61\x53\x11\x33\x1d\xcb\xea\x2c\xb6\xc8\x7c\x3e\xb1\x09\x82\x03\x53\x6c\x80\xc9\xf4\x6a\x6d\xaa\xd2\xa8\xed\x2d\x71\x6c\x67\x5d\xc6\xc3\x68\xa3\x2e\x73\x4a\x90\x22\xd7\x4a\x85\xdf\xcc\xaa\x6a\xc0\x9d\x26\x8c\xf0\x6d\x7c\x61\x5d\x3d\xc4\xab\x59\xad\xab\x87\x74\x33\xab\x35\xf1\x4f\x1b\x86\xbd\x86\x84\x36\xab\xcc\x10\x9f\x26\x5e\xa9\xea\x31\xcc\x9f\x9c\x5e\x3f\x7d\xae\x54\xd2\x9f\x17\x96\x11\xe2\x4f\xc0\xba\xd9\x96\xa2\xcf\xe7\x45\xa0\xce\x58\xe1\x95\x66\x3a\x74\x9d\xd9\x6c\x09\x88\xbb\x61\xb6\xa5\xfd\xd2\x84\xe0\x94\x90\xe4\x44\xd4\x1b\x34\x35\xd5\x3c\x66\x56\xda\x52\xfb\x21\xca\x00\x43\xa6\xa9\xb9\xce\x41\x6c\x4c\x79\x4c\xf2\x67\xaf\x77\x15\x3e\x08\xe3\xe6\xec\xd6\x74\xe9\xb3\x17\xff\x10\x4d\x2a\x32\xe6\x53\x5c\x68\x76\xeb\xf9\x10\x26\x07\x48\x06\xb0\x3d\xbb\x55\xd9\xc2\x1b\x8f\xa0\x7a\x34\x21\x57\x4f\xc8\xe7\x73\xa5\x23\x80\xb5\x0c\xe5\xef\x84\xb3\x0f\x89\x8a\x30\x96\x9f\xc4\x9f\xb1\x84\xcd\x51\xff\xfb\xdf\x44\x55\x9e\xa3\xc9\x52\x16\x64\x4a\x01\x28\x1f\xaa\xc6\xda\x82\xf4\xb8\x8c\xf7\x74\xa1\x54\xbb\x1b\x1c\x73\xe5\xab\x8e\xc9\x1f\x42\x08\xb1\x3a\xd3\x11\xc5\x21\x6d\x4c\xe7\x86\x63\x7d\xe5\x0a\x69\x18\x48\xa7\x64\x7a\x7c\x0e\xf3\x27\xd3\x67\x6c\x9b\x53\x32\x3d\x3a\xc3\x94\x4c\x8f\x3b\x66\xfe\x64\xf6\x89\xfa\x3f\xa7\xc4\x1b\x16\xd7\x89\x08\x3e\x8c\xcc\x65\x68\x88\x71\x9f\xce\x44\x40\x16\x86\xe9\xc4\x03\x1f\x56\xe6\xc4\x03\x84\xe9\x4c\xd7\xa1\x21\x7a\x68\x3a\xf1\x00\x31\x35\x73\x39\x46\x1a\x3f\xb4\x1f\x8b\x66\x3b\x1c\x6b\x35\x68\xc2\x93\xdf\xe9\xd5\x17\x47\x8c\xf3\x50\x48\xcd\x67\x98\x76\x0d\x34\x46\x65\x8e\xdb\x68\xd2\xae\x01\x06\x71\xda\x78\x1a\x73\xe1\xc0\x12\xec\x2d\x73\x15\x2d\x0f\x7d\x64\x9e\x36\xcc\x71\xa4\x4f\x03\xbb\x63\x14\xa7\x75\xa4\xcf\x17\x02\x00\x43\xd7\xe9\x3a\x24\x2c\x80\x24\xfa\xfc\x61\xd1\x72\x58\x00\x6c\x9a\x72\x58\x7c\x80\x6c\xf3\x72\x61\xbf\x50\x55\xa7\x23\x2c\xb8\xff\x6e\x81\x27\x39\xc0\x4e\xd1\x0c\x37\x56\xee\xb5\x8f\x54\xa5\xdc\x6b\x89\x7b\xff\x96\x62\xc8\x8d\xfb\x93\x91\x27\x2e\xd4\x69\xa8\x12\x1c\xe4\x27\x13\x4f\x82\x8a\xe7\xb3\xe9\x39\xc6\xf7\x93\x91\x27\x31\xdc\xf3\x49\x7a\x0e\x82\x1e\xe1\x54\x60\x51\x4f\xd1\xff\xd1\xfe\xe3\xa3\x1c\xe3\xf9\xc9\xd8\x13\x8f\xed\x7c\xd6\xe6\xa1\x41\xa3\x26\x0a\x23\x72\xc5\x57\xf6\xdb\x12\xba\x61\x50\x16\xba\x89\xc8\x9a\x2e\x4a\x4e\x74\xda\xb4\x90\x4d\xd4\xd7\x7c\x2d\x77\x70\xba\x7f\x52\x76\x2d\x34\xf1\xae\xfd\xc4\x0f\xb6\xfc\x72\xdc\x7f\x42\x75\xa5\xd0\xe8\x7c\x6d\x4f\x83\x41\xbc\xae\x44\x90\xff\x94\x7c\x68\xaa\x44\x39\xa6\xe7\xf9\xda\x10\xfa\x69\xee\x35\x1b\xfe\xf7\xc3\x61\xcb\x7c\x70\xb4\x63\x13\xce\xb6\xf3\xbf\x0c\x4f\xc1\xd1\x0e\x55\x58\x04\x89\x7f\xb8\xa0\x62\x10\x70\x6c\x42\x81\xc6\x1d\x78\xfc\x44\xe1\x54\x62\x8a\x8e\xed\xc7\x21\xa9\xf2\x76\xb8\x9e\x4a\x48\x98\x87\x8a\x8a\x53\xb5\xed\xd8\x65\x57\x0a\x0e\x7b\xec\x59\xff\xef\xf1\xac\x8c\xbb\x93\xff\x9b\xfe\x8f\xf1\x2b\x49\x32\x35\xcf\x0e\x17\x15\x9f\xb4\x2f\x03\xc1\xa0\xbd\xcb\x39\x54\x82\x80\xdd\x66\x1d\x06\x68\xb3\x0e\x1d\x8a\xe5\x87\x22\x75\xa8\x58\xca\x0c\x0b\xc5\xe1\xda\x8a\xc1\x52\x8e\x24\x8c\x67\x6c\x89\xc3\xb5\x14\x99\x20\x09\xcc\x1d\xc7\xf6\x91\x94\xdf\x34\x18\xc8\x21\x7b\x78\xa5\xba\xd6\xe1\x7a\x89\x4c\x79\xf2\x88\x63\x49\xb2\x60\xaa\x4c\xb1\x92\x1c\xcf\x30\x33\x1d\x59\x40\xc1\xc4\xff\xba\x72\x42\x8f\x3b\x56\x70\x39\x24\x67\x1b\x10\xe8\xe0\xd0\x07\x41\x42\x16\xd2\x71\xa7\xc1\x4b\xcf\xbc\x6f\x09\xb3\xf1\x81\x90\x7a\x8d\x0f\xc4\x4f\xe2\x3a\x39\x8a\x6c\x1c\x71\x56\x8f\x22\x23\x4d\xa8\x53\x47\xf1\x88\x79\x5f\x97\x62\x1c\x83\xa3\xac\x8b\x3c\x28\x50\xf1\xc4\x19\x92\xdb\x51\x64\x85\xa9\x34\x68\x06\xc7\xfb\xb2\xc2\x64\x1a\x7c\xf5\x7e\x0c\xa8\x0a\x6b\x1a\xba\xf2\xa1\x7a\xe4\x33\x6c\x8b\x87\x6c\xd8\x64\x54\x3d\xaa\xa7\x9c\xef\xab\x66\x28\xda\xaf\x26\x88\xef\x35\xe3\xc1\xbd\x0e\xc7\x15\x84\xd1\xe7\x50\x1c\x41\x09\xab\xd2\xd1\x34\x9e\xe0\x54\x87\x6a\x23\x82\xde\x39\x9a\x2c\x34\x71\xc5\x1c\xce\xcf\xc5\xa9\x76\xfa\x2d\xe6\x43\x70\xa0\x96\x3a\x3f\xc8\xea\xc2\x0a\x3a\xff\x16\x13\xe2\xfc\x5b\xac\x80\xf3\x6f\xc5\xdd\x7c\x38\xff\x56\x68\x10\x47\xf3\x0e\x88\xef\x55\x0a\x11\x3e\x79\xa8\x14\x22\xca\xd3\xa1\x6c\x5a\x28\xed\x47\xd7\x0d\xc1\x04\x28\x9b\x16\x90\xa8\x43\xa5\x0f\x41\x6e\x1d\x5d\xe3\x0d\x49\xe0\x50\xf6\x2c\x02\x49\x8e\xae\xf1\x87\xe8\x70\x74\x8d\xbf\xf2\xec\x84\xb0\x93\x06\xbc\x65\xa3\x81\xa1\x19\x67\x8b\x0e\x5d\x79\xac\xc8\x4f\x5a\x9d\x38\x15\x8e\x21\x82\xd8\x01\x2a\x69\x8e\x72\x78\x0c\x13\x14\x04\x0f\x81\x4f\x43\x1a\x3e\xc6\xba\xcf\x82\xc2\x21\x5c\x26\x33\x2e\xdc\x0e\x58\xf3\x63\x58\xcc\x63\x89\x64\x8e\x2e\x79\xfc\xc9\x2c\x77\x4c\xa5\xf0\xe1\x5e\x98\x46\x08\xb2\xc5\xa7\x2c\x50\xf0\xd1\xb9\x6c\x09\x41\xf1\x94\x85\x23\xb4\xca\x63\xda\x02\xc5\xa1\x51\x45\x45\x0c\xf0\xc7\x5c\x77\x78\x2c\x82\x2a\x2a\x62\xfc\x3d\x96\x7d\x1a\x5e\xec\x24\x5b\xac\xf2\xe1\x5d\x15\x63\x3c\x44\x04\xbb\xf8\xf0\x98\xa3\xc1\x43\x56\x33\xd8\xc6\x21\x80\x20\xa7\x40\x42\x2c\x78\xfb\xe3\x10\x78\x93\xbb\xe2\x30\x05\xfc\xaf\x3a\x58\x64\x01\x3d\x24\xd3\x92\x20\xfc\x38\xd6\x2a\x32\xe2\xcb\x88\x5d\x7e\x58\xee\xb1\x68\xf3\x94\x69\x09\xd6\xa4\x3c\x59\xa4\x84\x3f\x04\xe4\x19\x99\x1b\xf0\x14\xdc\x0d\x5e\x22\x94\xce\x46\x10\xd2\x71\x0a\xc4\x08\xb7\x75\x9a\x2c\xc0\x2e\x87\xd3\x64\x81\x74\x3e\x94\x26\x8b\xba\x01\xc7\x69\xd1\xe9\x33\x08\x1b\xc4\xb8\x53\x94\x26\x8b\xc2\x00\xc7\x65\xd9\x0a\x8e\x77\x99\x8c\xe8\xe2\xb2\x8a\x11\x8a\xd1\xa1\x34\x59\x24\x77\x3f\x2e\x1b\xfa\x3e\x3f\xd8\x62\xc6\x11\xbb\x6c\xe8\xa3\x0b\xc1\x93\x88\x10\x38\x94\x1b\x8b\xfc\xf1\x87\x72\x61\xb5\x4f\x97\xae\xf0\xca\xb5\x71\xc9\x33\xc8\x45\xe8\xcc\x57\x64\x66\x38\x6e\xdb\xf9\xe0\x2b\xb7\xc8\x62\x1e\x6e\x93\x05\x23\xbb\xb5\x3a\xdc\x3c\xce\x6b\x05\xca\xfc\xb8\xbd\x5c\x9c\x9b\xdb\xf6\x4a\x86\x6d\xd0\x0d\x08\xd2\xe3\x16\x1d\xc8\x7c\x3f\x71\xbe\x7c\x6e\x23\x41\x6e\x76\x42\x17\x0e\x43\x6e\x88\x3d\x38\x04\xb9\xd9\x09\x5e\x38\x1e\xdb\xe0\xd8\xc9\xc2\xdc\xec\xb8\x59\x8f\x67\x59\x17\xa3\x0d\x41\x6c\x76\x1c\xbb\xc7\x63\x15\x30\x48\x57\xbd\xc4\xcf\xad\xfd\x78\x7d\x60\xe2\xc2\xd3\xd4\xcf\xb6\x7a\x64\x3b\xe4\xb4\x3c\xc2\x26\xc2\x14\x95\x49\xeb\x73\x0d\x3f\x26\x03\x2e\x2d\x91\x7e\x27\x48\xe2\x78\x65\x23\x85\xc5\xac\x0a\x8a\x70\x2d\x19\xd6\x89\x52\x39\x5e\x11\xc1\xcd\xf9\x8a\x08\x2e\x2e\x59\xcd\xa9\x02\x72\x28\x69\xd6\xa4\x0c\xc8\xa1\x0a\x8b\x64\x8f\x3f\x24\xf0\xef\xd8\x31\x8e\x57\xab\x05\xd3\x7a\x4d\x14\x23\x5a\x44\xfd\x9b\xc7\xf3\x27\xd2\x17\x12\xe4\x9f\x9b\xac\x86\xb1\xdc\xe7\x66\xe3\x67\xe7\x03\x23\xf9\x82\x6f\x9e\x9b\xad\x9f\x21\xa4\x9e\x9b\x91\x7c\x21\x53\x9e\x8a\x67\x86\x4f\x9d\x9b\xd3\x9a\x04\xb3\x3e\x37\xf3\xe2\x49\x9b\x56\xcf\x43\xec\x3c\x37\xe5\x39\xc9\x34\x69\xed\x3c\xd8\xf9\xb9\x0b\xb8\x57\xfe\xa4\xf9\x9c\xbb\xad\xa9\xc1\x9b\xcf\xdd\x46\xca\x60\xc6\xe7\x6e\x23\x70\x48\xe6\xe7\xbe\x36\x64\x10\xb1\xaf\x89\x89\x99\xda\x3d\x31\xc1\x9f\x4f\xc5\x47\xa3\x45\x9e\xbb\xe7\x25\x6e\x88\x73\x57\xbd\xc9\xd8\xd3\xe7\x6e\x24\xdf\xa0\x0f\xd9\x8d\x0b\x83\xb0\xdd\x78\xf0\x85\xec\xc6\xac\xde\xbe\xac\x18\xb1\x16\xbb\x01\x47\x61\xf8\x3a\x93\xe7\x29\xe6\x2d\x2d\xca\xa3\xcf\x64\xf3\x6c\x30\x95\x73\x05\x47\xc7\x2e\x3d\x93\xd1\x6e\x71\xf6\xce\x64\xcb\x72\xec\xb2\x33\x19\xed\x96\x79\x63\x48\xd7\xa5\x4d\x83\xdd\x82\xa5\x9f\x3f\x3d\xa5\x22\xe3\x9e\x49\x58\xb7\xb8\x66\x4e\xd7\x7c\xc4\x1d\x7d\x26\x67\xd5\xa8\xfc\x60\xc3\x33\xbb\x4c\x96\xff\xf4\x99\xff\x6c\x18\x19\x7b\x3b\x2f\x52\x63\xdc\x79\x51\x16\x8d\x66\x53\x56\x69\xc3\x94\x05\x97\x38\xb3\x73\x85\xd0\x84\x29\x8b\x33\x7e\x66\xdb\xd0\x2b\xe3\xb2\x0d\x9d\x25\xc8\xc6\xf1\x55\x7e\x30\x6d\x2c\x6b\x5e\xab\x18\x6f\x14\x43\xe4\x98\x8e\x9f\x92\x53\xb1\x6e\x9f\xc5\xc6\xe9\x50\x85\x4f\xb9\x07\x3e\xd5\xed\xce\xe2\x10\x77\xb6\x7c\xb1\xd5\x3d\x28\x29\x8b\x54\xda\x5c\x26\x4f\xde\x10\x16\xf0\xd3\x82\x01\x72\xb0\x06\xfb\x0f\x88\x42\x3a\xe5\x3f\x18\xdb\xa4\xcd\xdb\x94\xc5\x9a\x54\x53\xc6\xc9\xaf\xb6\xbb\x87\x17\xfe\xac\x8b\xb4\x18\x86\x1d\x0a\xc4\x8a\x9d\xd5\x25\x1c\xc3\x1a\x7c\x56\xd7\x10\x1e\xf4\x62\x5b\x0b\x27\x6d\xb9\x18\xe0\x40\x55\x45\x85\xe1\x2f\x55\xb4\x42\x5a\x55\xe2\x0d\x4e\x7f\xbd\xf4\x4c\x83\x4e\x3e\xc1\x3e\x10\x10\xa8\xe2\x5b\x3c\xe5\x70\xa0\x96\xdb\xd9\x9c\x7b\x82\x8d\xe2\x5a\x95\x88\x39\xe7\xf2\x21\x84\x62\x73\x36\xa7\x9a\xa8\xbc\xd1\xd4\x66\xcc\x44\x5b\x26\xa4\x98\x2b\x41\x81\x12\x52\xed\x29\xa7\x42\x05\xec\x7d\x2a\x34\x23\xa1\xbd\x9c\x3f\xed\xac\x52\xb4\xef\xb4\x53\x61\xe3\x03\x53\x1a\xfa\xe1\xd9\x4c\x58\xd0\xf1\x53\xcf\x6a\x87\xf0\x9f\x3a\x56\x89\x6a\x39\x55\x9b\x92\xd0\x9b\xb3\x3b\x8f\x04\x73\xdf\xed\xf8\x60\x72\xbb\xcd\xa4\x31\x0f\x7d\x99\x49\x63\x1e\xba\xcd\xa4\x30\x83\xb1\xc9\xd6\x15\x2f\x28\xa2\xa2\x92\x15\xf3\x1c\xce\x9b\x00\xb7\x50\x5a\xac\x0f\x98\xe2\x14\x28\x28\x7f\xb8\xc5\x30\xa2\x91\x03\x32\x8c\x68\x84\x7d\xc8\x49\xf0\xa9\x4c\x70\x2a\xed\xd5\x98\x7f\x82\xcf\x9d\xc3\x89\x14\x98\xa8\xe1\x44\x0a\xcc\xc3\x58\x16\xbb\x98\x29\xe9\x69\x93\x6a\xbc\xe7\xd2\xd3\x42\x24\x39\xa7\xd1\x65\x31\xe6\x9f\xe6\x55\x71\x21\x9c\x53\xb8\xc4\x90\x9a\xce\x9f\xda\x54\xf1\x41\x9c\x8a\x9c\x28\x64\x29\x38\x95\xac\x0a\x03\xd1\x29\x17\x41\xc6\xbe\x7b\x4e\x83\x0c\xe9\x42\xb8\x9e\x4f\xb0\xf8\x79\xba\x3e\x2e\xb7\x96\xc4\xc1\x0e\x9a\xf4\x32\xdb\x8d\x5b\xec\xca\xb6\x39\xcf\x78\x3e\xff\xfb\xdf\x47\x6d\xb9\xb2\x6c\xd0\xb1\x76\x57\xb6\x23\xa3\xf0\x81\x75\x8c\x98\xa8\x4b\x29\x28\x3e\x2f\x88\xa1\xc2\xe7\x2f\x33\x54\x10\x0d\x57\x31\xd7\x61\x4c\x66\xa8\xd8\x95\x2f\x3b\x5c\x83\xd7\x5d\x2e\x77\x35\xe8\x62\xc8\xda\x18\x43\x50\x45\xab\x19\x3c\xe9\x2a\x36\x33\xf0\xbf\xbc\x35\x61\xb8\xba\x1c\x34\x57\x78\x7f\x29\x52\x0c\xf1\xd1\x0b\x7c\x60\xa1\x29\xf8\xe2\x55\x85\x85\x0f\x85\xe3\x12\xaf\x1d\x39\xce\xf6\xf5\xe3\xa4\x75\x06\xef\xbd\xcc\x48\xc3\x90\x71\x55\x17\xcc\x8c\x59\xaa\x22\x31\xb8\xe8\x55\x65\x8e\xfc\x74\x68\x53\x58\x74\xd8\x6c\x9b\x8b\x29\x59\xa6\xa6\xe8\xaf\xd9\x72\xc3\xb3\x2c\x37\xa1\xdf\x5c\x4d\x86\x0e\xfa\x6f\x56\xf2\xf9\x5f\x32\x7f\xe5\x7b\x4f\x59\x4c\xa9\x33\x01\x56\xbe\x5f\x33\x14\x3f\x74\x07\xc7\xc4\x0d\x76\x39\x35\x20\xd5\x53\xae\x6e\x01\x2a\xee\x96\xab\x2b\x38\x26\x44\x86\xab\x5b\xa8\x60\x10\xdd\x97\x0f\xb3\xd8\xd7\xe5\x13\xd3\xa2\xea\xbc\x1c\xfc\x4b\xf8\x47\xd2\xc5\x5f\xca\x57\x51\x37\xba\x54\xfa\x08\xb6\xa2\xca\x70\xe5\xe0\xc0\xd7\x90\x49\x34\x58\xfa\xa5\xb2\x5b\xa8\x3e\x97\x92\xb7\x97\xd0\x12\x2f\xdb\x8f\x58\x96\x61\x03\x18\xcf\x02\x81\x71\x3c\x6d\x3e\xea\x3c\xcb\x7c\xc4\x49\xb0\xf9\x08\x9c\xd5\xe5\xcc\x7c\xd8\x1c\xaf\x69\x4d\x29\x7a\x70\xd4\x17\x35\x8f\x2e\x67\xe2\xa3\x70\xd5\x35\x2d\x9e\x34\xde\x70\x44\xc5\xa7\x0d\xc3\x19\x58\xdd\x69\xf9\x24\xc4\xa8\xeb\x1f\x33\x8b\x89\x9e\xce\x11\xc3\xcc\xc9\x03\x9a\x3e\x5f\xa8\x7c\xe8\xa7\x49\x23\xec\x20\x55\xe5\xb0\x48\x1c\x74\x1d\x82\x96\xb2\xd6\x87\xa0\xae\x2c\xb5\xca\x5f\x51\x1a\xe0\x72\xb9\x2b\xe8\x3e\x04\x34\x65\x43\x1e\x66\x12\x31\xe2\xc3\x27\x8c\xfe\xec\xa2\x60\x3c\x97\x9e\x63\xa2\x9d\xa7\x22\xb7\x3f\x85\xc5\x5e\x87\xd2\x08\x04\xeb\xbe\x4e\x6f\xa4\x68\xfd\xd4\x79\x8d\xfb\xe7\x3a\xe5\x56\x8f\xdb\xe3\x3a\x65\xba\x8e\x7b\xf9\x3a\xe5\xb0\x66\x76\x4e\x99\xae\xe3\xd2\xbd\x4e\xc1\xaf\x33\xff\x0f\xfd\x1f\xb3\x65\x80\x24\xd3\x6f\x80\x64\x08\x59\xd7\x29\x53\x37\x1c\xf0\x94\x33\x21\xf3\xbd\xd2\x0e\x64\xc6\x2b\x53\x3d\x4c\xfd\x14\xbd\x71\x81\x5f\x97\x4c\xe3\xec\x5b\x55\xea\x2a\xdc\x1a\x97\xe9\x8f\xef\x2f\x99\xc6\x39\xb8\x97\xc0\x8c\x71\x61\x5f\xaa\xd4\x85\xaa\x7c\x19\x4d\x19\x42\xf9\x25\xf4\x24\x06\x80\xcb\x95\xb5\xa8\x0e\x7b\xd9\x68\x84\x36\x71\x39\xf9\x79\xc8\xe4\xd7\xbd\x2c\x78\xd1\xc4\xed\xa0\x71\x78\xae\x42\xb5\x0a\x26\x80\xcb\x56\x23\xf4\x8f\x6b\x19\x89\x58\x96\xdb\x46\x3d\xd6\xe1\xf6\xc1\x09\x0b\xf4\x25\x2b\x51\xfb\x34\xe1\xbb\x88\xcb\xe9\xf6\x5d\xc4\x07\x8b\x25\xc4\xc0\x1f\x99\x26\x43\x39\xbb\x1e\xa5\x6c\x66\x69\x1e\x99\xf0\xb8\xa0\x1f\x9b\xf0\xd8\x5b\x8f\x4d\x95\x3c\xdb\x18\xc6\xf5\x67\x3f\x2f\xe8\xcb\x4b\x7e\xde\xfa\xe1\x5b\x8f\xc0\x7b\x6c\x27\xf9\x7d\x1b\xa0\xe6\xeb\xb1\xad\x2b\x14\xd9\x6b\xd9\x84\x42\x51\xbd\xec\xe6\x45\x21\xbc\x64\x14\xfa\x32\x63\x05\x5d\xed\xe8\xba\x97\xe0\x96\xb8\xf0\x2f\xc1\x2d\xf7\xcf\xe4\xca\x11\xdc\x32\x6c\x4a\x8e\xe0\xcf\x82\xbd\x8e\x09\xe4\x02\x50\xae\x3c\x94\xe3\x4b\x41\x59\x28\xa5\x97\x5c\xbf\x9f\x5d\xf4\xca\x8e\xc0\x1e\x71\xa6\x3c\x8c\xd5\xb7\x3d\xbf\x58\xbb\x6f\x87\x60\x61\x2e\xbf\x9d\x48\x1d\x47\xde\xed\xc4\x78\x38\x15\x6e\x85\x60\xe1\xf7\xba\x37\xa9\x58\x83\x3e\x0c\xe2\x0a\x33\xe1\x2d\xbb\x11\x7a\xdd\x2d\xbb\x51\xef\xb1\xd9\x6f\xd9\x8d\x1a\x0b\x78\x2b\xde\x8a\x12\xec\xf7\x66\x55\xe4\xdf\x26\xba\x77\x87\x35\xf1\x81\x2c\x41\x85\xe5\xba\x65\x09\x2a\x60\x68\xee\x5d\x81\x4d\x9f\x2f\x1c\xd8\xc4\x20\xf6\xa5\x06\xf0\x85\x6b\x5b\x85\x20\x77\x3b\x0f\x5e\xfe\xb4\xa1\xd0\x9d\x60\x23\xb7\xec\x3a\x9f\x5b\xe0\x56\x7c\xd6\x27\xc1\xd3\xad\xa0\x0f\xdc\xb2\x77\x13\x7a\x3f\xae\x91\xbb\xf9\xda\x88\xb9\x94\xe0\x03\xf4\xfd\x76\x0e\x64\x44\xbd\x5b\x92\x0f\x09\x96\x6e\xe7\x40\xfe\xac\xce\x12\x85\xe8\xa2\xdb\xf9\x1f\x73\xa9\x20\x0e\x6a\x3d\xdc\x5d\x25\x91\xd9\x32\x5d\x38\x92\xd8\xd6\x77\x57\x0a\xa9\xc9\xfb\x72\xb6\xef\x7f\x4a\xa2\x7a\x77\xa5\x63\x82\xfe\x9f\x44\x34\x32\x0b\xad\xa0\xfa\x02\x20\xe3\xee\xd6\x08\x18\xad\x45\xa2\x68\xc0\x22\x11\xa3\x1d\xe2\xec\x85\xff\x1d\xe9\x14\x57\xd9\xfd\x53\xff\x06\xa7\xf4\x96\xcf\xad\xb0\xea\x8a\x00\x21\xdf\xd3\x2d\x19\xa9\x14\xbe\x37\x6b\x8f\x01\xa9\xdc\x0d\xee\x80\x7b\x0a\x06\x13\x2c\xf6\x9e\xf2\x09\xb2\x47\xa6\x7c\x82\xb4\x27\x8f\x18\xac\xe9\x5e\x1e\xb1\xca\x07\x82\x5c\xb3\x0b\x5d\x76\x06\x1d\xf8\x9e\x06\xb1\x04\xcb\xbd\x15\xd2\x4e\x96\xb2\xdb\x55\x65\xc0\x83\xdd\x06\x77\xe1\xa9\xbd\xe5\x03\x23\x0d\xd8\x7d\x98\x75\x85\x8e\x72\x1f\xcd\x66\x27\x9a\xe8\x7e\x83\x1f\xcc\xcb\x62\x10\x76\x7b\x7d\x76\xea\xb1\xa4\x36\x3a\x91\x55\x09\xd8\xda\x7d\x18\xec\x39\x19\xf8\xed\x37\x62\xb1\x0e\x67\xfe\x64\xb9\x0f\xa7\x91\x0c\x7b\xce\xad\x18\xf7\x0c\xfa\xe6\x76\xaa\x61\x98\xd1\xe9\xed\x1c\xc3\x3a\x95\x40\x8c\xe3\x70\x7a\x7b\xc7\x18\x4e\xab\x42\x7c\xaf\x1d\xbb\xd3\xa1\x04\x37\x8e\x83\x62\x3b\xa8\x4b\x76\x9f\x8a\x8e\x09\xc1\xf1\x56\x3a\xae\x1c\xb7\xf6\x2d\x27\x58\x47\xba\xbd\x95\x8f\x8b\xe2\x22\xb7\xf2\x71\xe5\xf0\xb1\xdc\x72\x8a\x7d\x8f\x84\x72\x6c\x81\x15\xb9\x2f\x09\x63\x71\x29\xdc\x2a\x1b\x4a\x8c\xd3\xad\x1c\x5b\x98\x02\xee\x4b\xc2\x16\xfb\x49\x65\x41\x4b\x65\x84\xc2\x45\x84\x13\xf9\xbe\x84\x3b\x60\xbb\xa9\x2a\x28\x11\x48\xf7\xed\x13\xc0\xb3\x8e\x64\x28\x52\xb7\x73\x70\x71\x05\x49\xd4\x69\x9f\x19\xb8\x4d\x10\x1f\x28\xfc\x26\xb4\xc9\xdb\xd1\x20\x21\x8d\xdd\x4e\xca\xc5\x15\x26\x24\x1b\x41\x5b\xf7\xed\x23\xcc\x80\x44\x70\xdc\x92\xb7\x93\x72\x35\xfa\x97\x74\xc9\xe9\x70\xf4\x07\x37\x85\x91\x6e\x1c\x27\x47\x83\x70\x2d\x18\xe9\x46\xfb\x8f\xdc\xfe\x4c\xa8\x92\x74\xa1\x8b\xde\x8f\x80\x17\x21\xdb\xdf\x8f\x70\x0b\x2c\xe0\x23\xdc\x05\x7b\xfc\x27\xef\x4c\x12\x56\xde\x8f\xa4\x4f\x58\xc8\x23\x03\x03\x1c\xe4\x11\xcb\x62\xc1\x7e\xd2\xcf\x44\xc2\xba\x55\xf7\x13\x6f\xc4\xfd\x9a\xbe\x68\x4f\x95\x66\x90\xf9\xee\xd7\xf4\xf1\xbf\xa4\x65\x2e\xa9\x57\xda\x3e\xac\xe0\xf5\xf8\x82\x1e\x39\xb7\x08\x51\xbb\x5d\x0f\x06\x15\xf0\x5e\x21\x21\x6c\xd9\x77\x89\xcb\xff\x86\xfc\xb8\x20\x4c\x6a\x7f\xf2\x13\x3d\x0a\x3c\x6f\x88\x41\x8f\xcb\xc7\xa0\xcb\x3f\x9b\x53\x1b\x05\x5b\x78\x36\x67\x9f\x6a\xf4\x68\xf9\x3b\x8e\xc1\xe3\x98\x12\x44\xa9\x67\xb3\xfc\x1d\xfb\xf0\x71\x50\x09\x3c\xf1\x71\xbd\x98\xef\x38\x4c\x79\x30\xde\x47\x41\x24\x95\xc3\xfa\x6c\xe2\xe5\x74\xe2\xa0\x12\x5a\x58\x41\x25\x50\xe2\x7c\x60\xa0\x6e\x9e\xdd\xde\xe6\x4f\x13\xc6\xe9\x7e\xda\xb0\x08\x5e\x79\xc3\x5e\x74\x06\xbe\x5b\x06\x67\x58\xae\x07\x03\x96\xe6\x71\x12\x31\x4c\xd8\x8f\x93\x88\x61\x03\x7a\x9c\x44\x0c\x4b\xfa\xe3\x0a\x31\x20\xc0\x9e\x5d\xb2\xcc\x67\xe4\xd2\x35\x58\x82\xdd\x73\x11\x83\x48\xeb\x5e\x8b\xd9\x73\x79\x18\xba\x54\x8e\x31\xd2\x79\x3e\xce\x31\x06\xc4\xe9\x71\x8e\x31\x20\x47\x4f\x5a\x53\x11\x73\x93\x1c\xa5\xcf\xec\x29\xc9\x18\x19\x31\x1f\xb9\xc0\x2a\x17\xf8\xa3\xd8\x16\x72\x86\x3e\x76\x79\x01\x72\x7f\x9c\x63\x0c\x07\xc1\xe3\xd8\x16\xd4\xd1\x27\xcb\x21\xcd\x44\xe4\xa5\x6a\x04\xe5\xd9\xaa\x06\x2d\x28\x44\x87\x99\x91\xbf\x6b\x47\xe1\x7f\xb2\xdd\xea\x61\x61\x7b\xb2\x2a\x8b\x40\x86\xfc\x5d\x9f\x7b\xeb\xc9\x4b\x90\x8c\xc9\xcc\x76\x39\x87\xe4\xf3\x94\xa5\x33\xc5\xf4\x3b\xb8\x05\xb5\xfc\x29\x0a\xc9\x61\xee\x8a\x87\x1d\xa3\x72\xa9\x18\x0c\x56\x8f\x4c\xad\x9f\x90\xe6\xc7\xd5\x60\x28\xe2\xfc\x14\x8b\x19\xf4\x29\xdf\x2b\xdb\xbf\x48\x63\x62\xf6\x8b\x35\x26\xbe\xb7\xeb\x75\xf2\x81\x5d\xd4\x93\x41\xda\xf7\x1a\x37\xf6\x53\x9c\xac\x99\x3e\xab\x8d\x89\x21\x33\x3c\x2e\x06\x43\x76\xe5\xc7\x9e\x2b\x14\x9a\xa7\x5a\x67\xa2\x09\x3b\x24\x1b\x3f\x2c\x33\x18\x5f\xc8\x21\x19\x12\xd8\x53\xed\x90\xec\xfc\x60\x87\x64\x5c\x83\x8f\x63\x65\x3e\x1c\xca\xbe\x2b\xcc\xa8\x4f\xb5\x3a\xc8\xf4\xca\x77\xf5\xd9\x15\x6d\xa9\x87\x31\x3b\x8e\x96\x01\xdd\xf4\xb4\xa5\x2f\x46\x9b\x2d\xab\x09\x5e\x10\x1c\x9a\x6d\x63\xdf\x16\x78\xa8\x47\xbe\xad\xcf\x5e\xb6\x6f\x0b\xc8\xd7\x23\xdf\x56\x27\x5a\xe9\x59\xa9\x89\x3b\x6d\x1e\x96\x0b\xe9\x54\x5e\xbb\xc1\x0b\x4b\x70\xa4\xcd\xd7\x3f\x44\xaf\xb2\xff\x76\x22\xe7\x1e\x05\xc4\xe0\x6b\x7c\x14\x10\x93\xc0\xa3\x3f\x72\x77\xe1\xae\x7c\x64\x0f\x6e\x9f\xe9\xee\x72\xbc\x0e\xba\x30\x7e\xb2\xfe\x29\xb0\xe8\x91\xb7\x2c\x61\xb2\x7c\xba\xb5\xe6\x58\x9b\xbe\xc4\xe5\x20\xb2\x9b\x68\x3e\x90\xfb\x85\xa2\x1a\x8f\xa3\x69\x80\x89\x3d\x43\xc9\x3f\x42\x94\x7c\x86\x92\x7f\x84\x2c\xfa\x0c\xe7\xc0\xe7\xc0\xfe\x94\xa3\xda\x43\xd8\x7d\x86\x63\x99\xe0\x4c\xaa\x18\x83\x63\xf8\x71\x38\xcd\xe7\x5e\xf8\xa9\x53\xb5\xc3\x56\x86\x63\x9d\x18\x82\xbc\x92\x83\x21\x38\xc5\xc9\xa0\x07\x99\x02\x06\x43\x70\xa8\x13\x5f\xc8\x06\x9d\x71\xf9\x3c\xaa\x0e\xf3\x61\xe1\x73\xb9\x04\x63\x0c\xf2\x95\x7d\x98\xfe\xb4\x47\x30\x04\xa4\x67\x2e\x53\x40\x90\x35\x97\x03\x90\x3e\x9c\xb0\x24\x64\xa2\x47\x06\xe6\x5c\x38\x8d\x3f\x1d\xab\x7e\x78\x9d\xc2\x65\x32\x35\x21\x1e\x85\xcb\x64\xaa\x31\x3c\x52\xba\x32\x35\x34\x1e\x29\x5d\x19\x1f\xfa\x73\x38\x7d\x01\xd3\xad\x4a\x9e\x19\x07\xd9\x23\xad\x2b\x7f\x76\xed\x61\xbf\x5f\x0c\xdc\x4a\x17\xfc\x54\x76\xe5\xca\x16\x90\xca\x55\x3e\x2c\x59\x69\xc5\x3a\x81\x97\x8f\x6d\xc5\x9c\xb5\xd3\x76\x48\xee\x1a\x85\xcb\x0c\xcc\x22\xcf\x29\x73\x1c\xbc\xce\xe1\x32\xc4\x07\x3c\x4e\xf0\x85\x7d\xf6\x51\x34\xcc\x67\x10\xae\x9b\x42\x30\xca\x73\xd9\x4a\x15\x16\xd6\xe7\x5a\x84\x47\xa7\x4a\xa7\x85\x6b\xf1\x51\xcd\x93\x06\x0f\xf9\x69\x39\x89\xbc\x36\xcf\xa5\x14\x25\x6c\x5c\x25\xd7\xfa\xe8\x61\xcf\xa5\x20\x86\x30\x28\x3d\xb7\x92\x61\xd0\xc1\x9d\xf4\x7f\xbc\xaf\x78\x1c\xdc\xe5\x8f\xe2\x71\x6a\x40\xbc\x1e\x69\x31\x39\x2c\x1d\x8f\xb4\x98\xfc\xf9\xdf\xc0\x37\x58\xd6\x2d\x97\x00\x97\x8c\xd4\x96\xbc\xf3\xbf\x4c\x23\x3b\xff\x3f\x7a\x66\xc0\x0a\x5a\x60\xd6\x1f\x5b\x34\xe9\xf1\xb1\xcd\x99\x2f\x1e\x29\x62\x1c\x35\x67\x13\x66\x33\x39\x7b\x70\x38\x39\x1e\x67\x0b\x86\x03\x3a\x5b\x30\x0c\x49\xd1\x35\xdf\x21\x3e\xb2\xdb\x73\xb8\x1f\xa9\x92\xdc\x36\xaf\x1c\x5c\xec\xb5\x65\x84\x85\xe6\x57\xd6\x1c\x98\xf2\xeb\x11\xc7\x22\xbc\x1a\x31\x9b\xf7\xb5\xea\xc8\xf7\x72\x4c\x20\x93\xbe\x56\x1d\x63\xc4\xaf\x1c\x13\xec\x9a\xd7\xaa\x63\xcc\xd0\x6b\x5d\x99\xf6\x04\x69\x67\x46\x5e\x21\xc4\x43\xfc\x78\x37\xa9\x56\x21\x9e\xbc\x4a\x47\x8c\xe1\xe5\xdd\xa4\x5a\xc5\xae\x7c\x37\xab\x56\x7c\x2f\xc7\x69\x70\x95\x77\x93\x87\x2f\xc4\x9f\x77\x93\x87\x6f\xd0\x9e\x54\xaf\xf9\xa7\x94\x74\xaf\x72\x13\x23\xda\xbe\x4b\x3b\x89\x9b\xf9\x75\x88\x3b\x77\xf9\xbb\x2b\xf0\x3e\xd6\xe7\x55\xe1\x49\x62\xd2\x5e\x15\x9e\x24\x93\xc7\xbb\xdb\xd8\x15\xe4\x2c\x35\x22\x04\x92\x77\xb7\xd5\x28\x44\xc8\x77\xa9\x11\x9f\x2e\x25\x5e\x7f\x9e\xe5\xb1\xe8\x74\x21\x25\xe2\xd3\xa2\x94\x88\xce\x10\xa5\x44\x40\xd3\x52\x22\x3e\x3f\x58\x49\x08\x4e\xfe\x2e\x25\x21\xf8\xd7\xeb\xa2\x92\xb1\x49\xde\x24\x8f\x45\x48\x66\xaf\x55\x84\x4f\x03\xe2\x7f\xb1\xab\xdf\xb4\x14\x1f\x1a\x58\x4c\x97\x37\x2c\x7c\x67\xba\x54\x96\x4a\xbe\xc8\xce\xa3\xcf\xcc\x2b\x75\xd5\x8e\xcb\xeb\xcd\xf2\xc4\x32\x0f\xd9\xc0\xc7\xd0\xea\x5f\x87\xc3\xe3\xb4\x7b\xff\x29\x0d\x74\x62\x1b\x5f\x68\x2e\x6f\x56\x29\x46\x26\x42\x45\x44\x76\xfc\x7a\xaf\xd2\x12\x63\xa9\x79\xf3\x42\xb2\xd3\xa9\xf0\x9f\x8d\x0f\x04\xd7\x60\xcb\x59\xa7\x20\xc1\xfa\x2b\x9d\xa2\x72\xc3\xbd\x45\x39\x0d\x1b\xcf\x4b\xf6\x8e\x41\x39\x5e\x9e\x23\xf2\x53\x32\x2a\x0a\xdc\x2b\x8d\x81\xeb\xea\x2d\x4b\x81\x0b\xb2\x57\xb4\x7c\x30\x91\xb7\xa8\x3a\x56\xe6\x59\x21\xe7\x61\xa4\x7f\x0d\x6d\x23\xf0\xe4\xad\xeb\xba\x8a\x31\x19\xda\x46\x2c\xce\x2b\x40\x06\x30\xb5\xd7\x80\x8c\xcf\x96\xa8\x4b\x90\xa2\x09\x07\xa1\x32\x55\x56\x08\x3e\x67\xa7\x3a\x6c\x3c\x44\xd8\xd7\x25\xff\x29\xb8\xfd\x56\xc7\x8d\x0f\xda\x58\xc2\x14\xe3\x92\xa3\x05\xd2\x9b\x85\xab\xca\x0f\x16\xae\xe2\x83\x66\xe1\xea\xf3\x83\x03\xc9\xe3\xd2\x78\x9b\x03\xc9\x83\xc9\xbf\xcd\x30\x21\x8e\xb0\x72\xc5\x0e\x72\x28\xbe\xd3\x94\xc4\x17\xd3\x5c\x36\xe8\x98\x32\x58\x85\x4b\xe3\x75\x55\x09\x8a\xd1\xbe\x8e\xe9\x60\x7a\x25\x5a\x95\xcf\xd6\x76\x24\x32\x87\x5e\x92\xd5\x18\x9f\x16\xb4\xd5\x19\xe3\xa1\x0c\x80\x9f\x2e\x7f\x7b\x80\xd4\x57\xef\xe1\x89\x8b\x69\x38\xed\xa1\x8a\xef\x55\x26\xa2\xc6\xcd\xf7\x5a\x8a\x9a\xbc\x6f\x81\x86\xa3\xe4\x8a\x78\xc4\xc3\xbd\xe7\x6f\x1f\x73\x73\x48\xec\x1a\x19\x0e\xa0\xb0\xe5\x0e\x08\xe2\x55\x8c\x47\xdf\x3f\x4d\x4e\xeb\x03\x74\x7a\xf8\x07\x46\xf9\xf8\x07\x7a\x79\x85\x60\x89\x4e\x2e\x23\x8b\x76\x7e\xd0\xfa\x87\xa2\xf5\x5e\x76\xab\xc5\x20\x2e\xc3\x53\x83\x8a\xcb\x05\x98\xfe\x14\x6f\xf4\xfe\x84\xba\x06\xec\xee\xbd\x6c\xa4\x08\xb7\xed\xfb\x13\xea\x1a\xb5\xa7\xdf\xcb\x0e\xb8\x70\x03\xbe\x3f\xa9\xae\x51\x7e\xf9\x75\xca\x54\x58\xf7\xb5\xaa\xa1\x06\x3d\xb7\x75\xa6\x90\xba\x5e\x45\x73\x90\x63\xec\xfd\x89\x79\x8d\x5a\xbf\xef\x4f\xcc\x6b\x14\x89\x7e\x6d\xcd\x66\x63\xdc\x55\xff\xc7\x04\xdc\x82\x5a\xb1\x06\x3f\x31\xb0\x51\xb5\xfb\x5d\x25\xcc\x69\xf0\xd9\xe4\x9f\x8b\x21\x3f\xca\xe5\xc7\xa4\xfc\xc4\xb8\x44\x32\xbe\xf7\x71\x1c\x78\x34\xf8\xc8\xe1\xc1\x56\xff\x09\x75\x89\xec\x13\xef\x4f\xa8\x4b\x64\x5a\x7c\x1f\x05\xfb\x72\x7b\x3d\x2a\xaa\x03\x67\x7a\x94\x55\x8e\x93\xf1\x48\x70\x86\x0d\x3d\xca\xed\xc7\x96\x79\x85\xa4\x81\x6f\xbd\x92\x83\xc3\x6d\xfe\xfe\x44\xb6\x0e\xd6\xf5\xfd\x89\x6c\x1d\x8d\xf1\x7d\xed\x5f\xe4\x59\x70\xbb\x44\x7b\x16\x19\x42\xff\x7b\x5f\xa1\xaa\xc2\x95\xff\xfe\x64\xb6\x0e\xf0\xf5\xfd\xc9\x6c\x1d\xe7\xf2\xfb\xde\x7a\x3f\x08\xfe\xc9\x70\x1d\x60\xec\xfb\x93\xe1\x7a\x00\x7c\xe7\xf6\x93\xe1\x52\x14\x5e\x9f\xdb\xe6\xa3\xdd\xe2\x39\xe9\xfd\x1c\xcf\x8a\x5e\xfe\xe7\x08\x9b\x9b\xa2\xad\xc3\x99\x3d\xb7\x9f\x4c\x97\x6a\xa2\x7d\x45\x33\xff\x3b\x62\x73\x53\x1c\x46\xdb\x26\x1f\xc8\x27\xfa\x6f\x06\xe7\xb6\x49\x11\xf8\x34\xa0\x58\xe0\x7f\x3a\xde\xdc\xb6\x1f\xbb\xdc\xb6\x78\xde\x37\x3d\xc7\xfb\xbb\x3c\x4e\x0c\x50\x26\xe4\x1a\x91\xb1\x73\xfb\x89\x71\x79\xdb\x79\xa1\xaa\x81\x1a\xcf\x4d\xff\xf3\x7e\xd7\xff\x3c\x0b\xec\x34\x83\xa2\xdd\x3e\xb3\x98\xc1\x9f\x4c\x97\xb7\x3d\x08\xda\x4d\x50\xcc\xe0\x4f\xa6\xcb\x1b\x33\xfa\x93\xe9\xf2\xc6\x0c\xee\x26\x30\xc6\x97\x4c\x60\xf4\x97\x4c\x60\x8c\x37\x25\xfd\x1f\xfd\xff\x44\xbe\xbc\x6d\xd1\xff\x4f\xe2\x1b\x39\xc5\xf8\x93\x3c\x60\x93\xff\xe5\x01\xab\x31\xa1\x49\x6a\xcb\x8c\xf1\x65\x79\xbc\x5a\x7c\x9f\x85\xcb\x6b\x31\xbe\x6c\x17\x1e\x1d\x64\xa9\x31\x93\x17\xe4\x94\xae\x31\x40\x47\x67\x37\x3a\x50\xee\x83\xd0\x43\xe6\x96\xa5\xc7\xb4\x18\xa1\xa2\xaf\x07\x33\x9c\xe5\xa5\xee\x74\xf8\xa3\x60\x32\x43\x0e\xbe\x6e\xf1\xac\x60\xeb\xc9\x96\x29\xbe\xae\xf8\x5f\x2e\x9e\xc6\xff\x4d\x82\x1e\x7b\xb2\x74\x35\x10\x14\x15\xf9\xac\x5a\x0c\xa8\x58\x31\x89\x25\x29\x8a\xbd\x9d\x41\x50\xb1\xec\x52\xf8\xe1\x56\x83\x7c\x60\x0a\xf8\xff\xd5\x73\x4c\x91\xa2\xb3\xe7\xf6\x17\xcd\x67\x6e\xd5\xe4\xc6\x86\xaa\x56\xc3\x78\x96\x1a\xc6\x09\x54\x28\xf7\xe0\x84\x29\x94\x7b\xb2\xe1\x65\xde\xad\x11\xc0\x37\xb7\xaa\xa0\x50\x16\x58\x35\x23\x12\xe4\x2b\xfd\x68\x62\xbd\xaa\x5c\x64\xec\x28\xa5\x23\x4d\x9f\x0e\x15\xe4\xca\x80\x54\x0d\x22\xb1\x43\x9b\xf1\x30\x35\x16\xac\x49\x53\x63\x01\x9b\x25\xa4\x98\x3e\x49\x69\x35\xd2\xd4\xce\xcd\xc5\x20\xc2\xeb\x39\x37\x17\x83\x18\x74\x61\x2d\x87\xff\xed\xdf\x19\x31\x09\xc2\xaa\xd4\x0e\xdb\x30\x56\x65\xf0\x2c\xd5\xec\xf3\x81\xb1\x64\x3d\xa8\xec\x4b\x37\x8b\x51\x77\x39\x14\x7a\x90\xdd\x97\xae\xc6\x0f\xf2\x30\xf4\xa0\xa2\xcb\x31\xd2\x63\x1e\x5d\xde\x3b\xf0\x21\x73\xeb\x8a\x0f\x1d\xbc\x60\xb9\x8f\xff\x97\x8a\x43\x0f\x0a\xdd\xfb\x8c\xd1\xa1\x7b\x85\x31\x2a\x74\xef\x33\x66\x61\xb2\x38\x5a\x32\xd3\xee\x9f\xa3\xd1\xad\x03\x45\x0f\x8a\x71\x08\x25\x7b\x6e\x43\x16\xf6\x1c\x34\xb9\xae\x37\x67\xcf\x35\x21\x26\xec\x6b\x2c\x22\x79\xa3\xab\x85\x20\x72\x28\x8c\x2b\x07\x91\xc3\xa1\x1f\x9f\x2e\x7f\x43\xfa\xec\xe7\xa9\xb0\x0b\xb6\xe7\x74\x6d\xce\xa0\x69\x96\xff\xfe\xd7\x76\xa6\x7d\xfa\x4a\x0b\x92\xe6\xd4\xff\xb4\x77\xea\x39\x06\x34\x9f\x9f\xa0\xc7\xde\x9a\x16\x3b\x83\x80\x9f\x80\xdf\x32\xab\x74\xec\xfa\x3f\xc6\x73\x58\x0a\xe5\x7d\x29\x21\x5c\x28\x3f\xf9\x9f\xec\xff\x73\xb3\x65\x95\x0b\xeb\x27\xfe\xb7\xcc\xce\x94\x5d\xb5\x7c\x38\xf8\xe1\x14\x2d\x74\xf8\xf8\x85\xa0\xf8\x50\xed\xc3\x1c\x23\x38\x55\xfb\xb0\x44\x03\xa7\xc5\xc8\xa0\xe0\x94\x18\x99\x63\x86\x4e\x8b\x91\xd1\xc1\x4f\xfc\x6f\x3d\xc7\x0c\xab\x12\xc3\xe7\xf4\x49\xfc\x8f\x54\xb7\x73\x93\xb0\xff\x39\x5b\xa7\x13\x86\xb0\x84\xe7\xfd\x13\xcb\x98\x82\x53\x62\xda\xa7\x81\x57\xcf\xd1\xc1\xa5\xcc\x5b\x9c\xac\x4b\xb0\x30\xb6\xb5\x04\xfd\xf2\xb9\xd4\x7e\x92\x7e\xdf\xa1\xf0\x52\x12\x99\x11\x9b\xec\x1a\x7a\xa6\x01\xc9\x95\xec\x99\x9f\x2c\xdf\xa3\x12\xf6\xdc\x2e\x41\xb4\x39\x89\xb7\x2e\xe5\x1c\xfd\xdd\xee\x8f\x67\xcb\x8d\x31\x83\x3f\xc1\xba\xf7\x3d\x56\xe4\x1e\x7a\x8e\xf6\x6f\x89\x85\x88\x59\xb7\xc4\x42\xc4\xba\xdb\x62\x21\xdf\x4b\x0c\xdc\x63\xbc\x92\xcb\x3b\x7b\xe8\x91\x18\x98\xfe\x82\x48\x98\x9b\x84\xf6\xa8\x83\x3a\x37\x09\xed\x7d\x8f\xc9\x7b\x24\x23\x22\x20\x3c\x12\x92\xf7\x98\x0c\x41\x42\xb6\xcf\xfb\x42\x25\x71\xa2\x55\xc7\x2d\xa7\x20\x4e\x75\xda\xb6\xcf\xe0\x85\x42\xe2\x80\xfe\x84\xf4\x91\x21\xf6\xb5\x92\x11\xe3\x7b\x2d\x11\xf1\x2c\x01\xa5\x45\x7f\x3f\x21\x7c\x7e\x24\x3e\xa5\x34\xda\x43\x28\x9f\xdb\x4f\x08\x9f\x1f\x11\xeb\x95\x69\x98\x0b\xed\xf5\x00\x69\x50\x22\x16\x5c\xf3\xb5\x88\xf5\xef\x79\x97\x21\x15\x91\x70\x97\x21\x15\x11\x70\xdf\x2c\x72\x95\x78\xce\xfa\xbf\xc5\xb3\x25\x2e\x9e\xab\xfe\xaf\xf1\x2c\xc3\xf1\xe4\xfb\xae\xff\x79\x16\xe6\x28\x38\xe2\x2e\xc3\x6b\xe4\x85\x9f\xbb\x6d\xa9\x9d\xf1\x5a\x00\x63\x7c\xc2\xe0\x04\x87\xdb\x37\x09\x60\xc1\x11\xf7\x5d\x86\xe2\xe0\xc8\xfb\x2e\x43\x71\x9c\x96\xfd\x27\xa3\xe7\x28\x24\x38\xf7\x5d\x02\x59\x1c\xd7\x7d\x97\x61\x38\x4e\xcf\x2e\x91\x3c\x0a\xf7\xcd\x5d\x45\xe0\xc2\x3e\x31\xf7\x9f\x88\x5e\x60\x17\xfb\xaa\x01\xd7\xe9\xc0\x59\x2a\xe2\xbc\xed\x86\x6f\xa4\xcf\x90\x96\xb9\x38\x68\x92\xe9\x35\xb3\x26\xbb\x51\x3c\x4c\xca\xaa\x12\xc7\x28\x5d\x25\x2e\xc2\x83\xe7\x9e\x0c\xd4\x81\x2e\x5b\x67\x13\x13\xb5\xca\xc4\x05\x63\xdb\x93\xc1\x2b\x83\x4f\x7c\xc5\xf3\xec\x00\x93\x41\x13\x4b\x72\x89\x81\x26\x6f\x4e\x86\x65\xc1\x85\x67\x23\x38\x06\x84\x58\x72\x61\xdc\x59\x30\x9d\xe0\xae\xbb\x10\x1d\x8d\x0f\x5c\x34\x6e\xd0\xe4\x82\x78\x84\xce\xb5\x1b\xe2\xc1\xfc\x1b\xc1\x81\x80\xbb\x2b\x62\x39\xb1\xa3\x56\xb4\x31\x74\x66\xfb\xbc\x83\xe3\xed\x8e\x36\x8e\x84\x38\x73\x2f\xae\x8a\xce\x64\x3a\x18\x6e\xd0\x68\xb1\xb9\x86\x46\x05\xc8\xc8\x81\x59\x9f\xbb\x00\x19\xe3\xf3\x2c\x47\xdc\x4e\x0b\x66\xf3\x41\x47\xb1\xf9\x20\x36\x49\x91\x03\x32\xf3\xbe\xd8\x6e\x8e\x99\xac\x62\xb3\x89\x67\x63\xb9\xd8\xb9\x55\xac\x34\xc7\xc4\xfd\x64\xf5\x91\xe3\x26\xdd\x55\x2a\x20\x17\xfe\x6f\xfa\x3f\x28\x52\xa9\x80\x8d\x59\xaa\xf2\xc3\xc5\xcd\xbb\xcb\xf0\xda\x76\x58\x4f\x15\x6f\x8d\xab\x7e\x5f\x66\x56\x78\x81\xac\xaa\x3d\xb3\xda\xf5\x15\xf3\x88\x17\x9a\x98\x57\x88\x27\x7b\x33\xf3\x8a\xf7\x7f\xc2\xfa\x44\x9f\xde\x95\xa9\xa9\x84\xc4\xb7\x2b\x9c\x0e\x85\x7e\x6f\xe6\xc6\x7f\x89\x05\x9a\x7b\xb3\xee\x08\xab\xfa\x09\xf6\x93\x8b\x77\x57\x5a\xa7\xa8\x11\x3a\xf7\x76\xe8\x39\x56\x48\x69\x9d\x26\xa3\x97\x94\xde\xa2\x72\xfb\xdc\xbb\x0f\x2d\xbb\xdf\x62\xfa\x67\x6b\x4a\x4c\xcf\x70\x63\x89\xe9\x99\xbd\x2d\x31\xbd\x6d\x71\x7f\xed\x12\xd3\x33\xec\xb9\x9b\x7d\xd1\x83\xa1\x76\x9c\x27\x57\x67\xfb\x1c\xf2\xee\x18\x03\xf6\xc5\xb0\x72\x01\x8b\x57\xf1\xb5\x88\xbe\x9b\xfb\xb0\xdf\x27\x94\xb0\x7d\x98\x91\xc4\xb4\x0f\x69\x40\x83\x16\xed\xab\x9a\xb1\x6e\x43\xbe\xaa\xcf\xf3\xe5\x8d\x41\x0b\x76\x7c\x33\x75\xc3\x29\xa6\x98\x19\x57\x5a\x43\x91\xdb\xa7\x54\x20\xd8\xdd\x5c\x8c\x23\x46\x39\xad\x8a\xc3\x54\x15\x3f\xb7\xa3\xec\xef\x2e\xa3\x86\xee\xbc\xbb\x8c\x1a\xfa\xef\xae\x60\xe0\x0f\x5f\x76\x15\xb5\xcf\xf5\x31\xe5\xc7\x81\xf7\x2b\x7e\x6e\xc7\x60\xb0\x1f\x76\xe4\xb0\x4b\x84\x39\xdf\x3f\x37\x96\x64\xf6\x1d\x8d\x7e\x3f\x14\x70\x09\x33\x3a\x8c\x1c\x62\xb6\x0e\x23\x85\x98\xf0\x63\x71\xf2\xa0\x6c\x81\xce\x1b\x3f\x18\x35\xc5\xa2\x2e\x48\xf9\x4e\xa3\x76\xe6\x04\xe9\x87\xf3\x4f\xb0\x68\xe7\xe2\x9a\xd1\xe6\xa9\x1c\x0d\xdc\x0e\xa7\xe2\xe0\x39\x1f\xa7\x7d\x39\xcc\x9e\x64\xf5\xfe\x61\xdd\xce\x30\x3a\x98\xbe\xd3\x91\xf1\x50\xa6\x0c\xa3\x9d\x13\xf4\x4f\x9c\xe7\x07\xc7\x90\x73\x67\x9d\x0b\x80\x42\xaf\x8f\x7f\x88\x4f\x9c\x62\x14\xc6\x77\x19\xa1\x12\x2d\xd8\x94\x5f\xb8\x6b\x2f\x43\x56\xe0\xdd\xff\x64\xfe\x98\xbc\x9f\xcc\x5f\x3f\x9b\xd1\xd6\x7d\x58\x87\xcb\x10\x70\x2a\x2f\xb3\x16\x86\x24\xf4\xcf\xe7\x7d\x51\xf5\xf9\x5f\xb6\xe5\x4f\xfb\x32\xfc\xb1\x14\x97\xe2\xfc\x42\xaf\xdc\x6f\xe3\x46\x62\x7c\xcb\x78\x1f\x14\x39\x47\x2a\xd3\x7c\x2b\xf1\x25\x3b\x4c\x3a\x45\x54\xac\x9f\xbb\xcb\xa1\x85\xf5\x7e\xee\xb7\x8c\xd1\x21\x67\xef\xb7\x8c\xd1\xa1\x59\xef\xb7\x22\x7c\xb9\x3c\xee\x43\x0d\x32\x00\xdf\x76\x3c\xfb\xb6\xa3\xfd\x57\xbe\xb1\xb0\xc5\xee\x8f\x8c\xc9\x61\xba\xdc\x95\x35\x75\x0b\xc5\x60\x7f\x24\x98\x87\x79\x62\x57\x38\x5d\xcd\x70\xf7\xc7\xb6\xd9\x20\xf9\xd1\x75\xc7\x7d\xaa\x8a\xd0\x91\x37\x62\xee\x3f\x4d\x22\x6f\x61\x7b\xdd\x85\xe1\xc8\x85\xff\x25\xa8\x7f\x06\x28\x94\x49\x8d\x67\x41\x36\xf2\x9f\xea\x3c\xcc\xfd\xd5\x5d\x1d\x46\xbe\xdd\x6a\x46\xa1\x31\x19\x9a\x39\xac\xca\xad\x3a\xc2\x09\x3a\x77\xe1\x39\x32\x52\xd3\x2b\x6a\x0a\xff\x4b\x2f\x0a\xe3\xcc\x2e\xbd\xa4\x62\x4b\xdf\x7f\x7a\xc7\xfc\x90\xfb\xba\xce\x0f\xe7\x4a\x08\x0e\xe8\x4d\x56\x3c\x62\x01\x92\x15\x8f\x9d\xff\x75\x77\xc7\xcd\x95\xac\x78\x84\xcc\x95\x54\x70\x3a\x22\x41\x67\xb2\xe2\x91\xf9\xbe\xe9\xff\x12\xcf\x0a\xa5\x0d\x79\x29\x2d\x6f\x40\xa5\x03\x69\x1e\x9d\x0f\x0e\x75\x98\xe3\xf9\xd2\xf3\x8c\x67\x45\x37\xc4\x29\x4f\x9b\x4d\x19\x9d\x11\x88\xe2\x98\xf4\x24\x77\x41\x09\xa9\x3d\xed\xb2\x6e\x07\x57\x48\xbb\x29\xde\xe3\x79\x59\xb7\x63\x04\xd2\x45\xb6\xcc\xb3\x74\xa9\xcc\x07\xc3\x15\x65\x62\x4e\x77\x69\x93\x99\x67\x93\x14\x43\xde\x45\x52\x62\x84\x52\x16\x83\xf5\x25\xa9\x11\xa4\xce\x9c\x49\x06\xfe\x00\xe7\xcd\x94\xbc\x08\x41\x42\xd2\x22\x04\xdf\x49\x49\x23\x0e\x3e\x93\x92\x46\x1c\xc7\x38\x49\x85\xf8\x78\x14\x92\x51\xe0\x99\x55\x70\xc2\xd6\x80\xda\xce\xe4\x52\xd3\x78\x6d\x52\x92\x06\x18\xf7\x4c\xca\xd2\xf8\x42\x60\x49\x3f\x95\x61\x86\x5f\x6c\xa6\x9f\xca\x30\x03\xac\x39\x53\x56\x54\x49\xf0\xb6\xa4\x8c\xae\x93\x21\x09\xdf\x51\xc3\xfd\x3b\x53\x96\x4a\x18\x62\x6a\xca\x56\x09\xf9\x60\xe8\x39\x88\xce\x62\xd6\x4c\x52\x56\x1e\x8b\xb8\x93\x92\xc0\x1d\x2d\xd0\xf4\x33\x65\x99\xe8\xd9\x38\x76\x32\x70\x54\xb2\x4c\xf4\x2c\x6b\x91\x89\x9e\x9d\x59\x6c\xb4\x66\x12\x8b\xef\x1b\xe6\xa8\xc8\xce\xce\xc2\x17\x93\x14\x24\xfe\x94\x91\x89\x95\x2c\x15\x93\x10\x73\xe4\x54\x1c\x93\xff\x4f\xfd\xcf\xf7\x97\xe6\x9c\x11\x89\x22\x0e\x73\x79\xf4\x3f\xcf\xd2\xda\x43\x14\x48\x3f\x65\x65\x86\xab\x71\x26\xfb\x15\x38\xcc\xf6\x2b\x04\x73\x49\x3f\x5d\x65\x86\xaf\x73\xa6\x5a\xf4\x1c\x7b\x40\xb0\x90\x1a\xc9\xee\x66\xfa\x29\x2f\x13\xa3\x53\xaa\x5e\xc3\x20\xb0\xae\x8d\xc9\x0f\x12\xde\x39\x6b\xd5\x14\xf3\x2c\xe8\x51\xa0\x65\x67\xaa\xda\x96\x83\x21\x29\x33\x42\x65\xd9\xa5\xbc\x44\xc0\xdc\x4c\xcd\xfb\x34\x86\xd4\x1c\x79\xcb\x69\x6c\x26\x92\x06\xbc\x51\x83\x26\x27\x03\x09\x21\x2e\x39\x19\xc8\xe0\x7b\x85\x43\x4d\xfe\x3f\x4d\x23\x3f\x28\xbe\x69\x96\xbf\x5c\x39\xa9\xc9\x10\x33\xe9\xfd\x31\xc0\x28\x26\xa0\x79\x4d\x63\x02\xba\xd7\x34\xfe\xef\x3a\x87\x21\x2b\xa7\xee\x38\xa0\x10\x2a\x92\xeb\x22\x60\x3c\x4e\x4b\x59\x89\xf1\x2e\x65\x85\x93\xb8\x94\x15\xf6\x65\xff\x29\x0e\xc8\x51\x49\x3e\x85\xcc\xd1\xec\x66\x26\x6c\x1c\x39\x15\xb6\xcc\x46\x70\x65\x05\x0c\x3c\xe9\xa7\xee\x14\x2c\xd8\xc9\x99\x93\xd0\xfd\x93\x22\x65\x37\x74\xac\xe4\x6c\xb5\xd0\x25\x7d\xa8\x06\x3e\x79\xa6\x21\xad\x8d\xcd\x28\xbf\xc3\x86\xee\x9f\x54\x6d\x61\xfb\x8c\x5b\xf0\xf0\xed\x3b\x0a\x85\xee\x7f\x38\xb1\x75\x28\x4c\xf7\xc9\x39\x6e\xf1\x95\x26\x29\x51\xdb\x67\x72\x86\xed\x4e\x9c\xc2\xe1\xc9\x60\xc7\xb9\x0a\xdb\x4e\xb7\x4a\x64\x9b\xe1\x54\x4a\x5b\x82\xdc\x99\xa6\x8d\x4a\xec\x12\x21\xc2\x37\x34\xd6\xf4\xd3\xb2\xca\x87\xd4\x69\x52\x39\x06\x4a\x64\xfb\xa1\xc3\x89\x6c\xbf\x7d\xac\x45\x8f\xc9\x71\x60\x2f\x9a\x47\x9a\x5e\xf5\xa0\xcb\x65\x1c\x32\x0c\xd3\x81\xbd\xb8\x15\x93\x03\x7b\x3f\x4b\x72\xac\x45\x8d\x4e\x5c\xb5\x01\xa3\x5c\x3a\x96\xfd\x2c\xe6\xe2\x70\xa0\x1b\xe7\xf1\xf0\x06\xe7\xc4\x1f\x6b\x59\x63\x60\x87\x69\xe5\x85\x45\x2b\x6d\x2e\x5a\x83\xf8\x95\xf3\x96\x53\x76\x88\x56\x36\xb4\x6b\xb4\x61\x71\x4e\xa7\x91\x47\xf0\x7e\xe5\xbc\xfd\xf0\xca\xd3\xea\x3b\xff\x8b\xb0\xcf\x65\x21\xbd\x6c\xfb\x70\x63\xe9\x65\x1b\x6e\xae\x74\x4a\xc1\x67\x94\x52\xcb\xca\x47\xd6\x3a\x7d\xcd\x17\x46\x65\x0d\x9f\x41\x08\x8d\xca\xc9\x96\x12\x56\x51\xf0\x93\x0a\x3f\x8c\xcc\x25\xb8\x92\xe0\x32\xee\x4b\xa6\x42\xb6\x85\xd4\xb2\x0d\xdd\x3b\x5d\x82\x9f\xb2\xe8\xce\x79\xfb\xb9\xa5\x94\xf3\xf6\xc3\xb1\x94\xf3\x76\xc3\xa2\x93\x04\x96\xdf\x3e\x37\xb5\x80\x55\x1b\x36\x9e\x74\xd9\xab\x09\x13\x97\x66\xb6\xa1\xe0\x27\xa5\x34\xd9\x3e\x57\x8f\xa0\x55\x1b\xca\x5d\x72\x8e\x13\xfc\x92\xe9\x5e\xa4\x46\xa3\xce\x94\xfb\xb9\x7f\x6f\xaf\x69\x90\xea\x4c\xb9\x9f\xbb\xe2\xb6\x44\x80\x2c\xe9\xb4\x28\x1f\xa9\xc5\x59\x50\xb0\x65\x24\xe7\xce\xc5\xda\x91\x56\x5a\x14\x16\x49\x59\x50\x5a\x66\x83\x3b\xeb\x09\x16\x93\x74\x9b\x36\x98\xd0\xbd\x68\x8b\x71\x28\x37\xee\xf6\x11\x66\x9e\x45\x5b\x10\xfb\x58\x2c\xfe\x53\x79\xf0\x99\x9c\x26\x85\x21\x59\xaf\x03\x45\x94\x1e\xaf\x3a\x87\xd0\x79\x52\x3e\x57\xfb\xb3\x96\x9d\x1f\xbc\xec\x70\x78\xe7\x49\x61\x3d\x1e\xdf\xac\x28\x23\xaa\x8f\xf1\xdd\x6b\x8f\x8b\x3f\xa2\x3d\x3c\x8b\xd7\x32\x11\x6b\x66\x62\x22\xde\x4d\x6b\x1a\x4d\xbc\x9e\x98\xcf\x0f\xc9\x77\x40\xb4\x29\x2d\xaf\x46\xc9\xc9\x99\x5e\x03\x91\xc3\x0e\x90\x94\x60\x77\x22\x2b\x3b\x71\xca\x47\x27\x59\xfe\x27\x94\x96\x95\x61\x17\x5a\x9d\x61\x17\x2e\xf7\x3a\x36\x21\xf3\x82\x31\xd8\xd0\xbe\x72\xee\x86\x24\x94\x37\x07\x40\x4e\x7e\x70\x00\x64\x08\xfd\x79\x33\x2a\x3b\x04\xbe\xbc\xb2\xab\x84\x15\x32\x6f\x32\xf3\x0f\x9e\xed\xbb\x6f\x7c\x21\x69\x02\x64\x4d\x76\x5a\x5e\xc4\x8b\xbc\x99\xf8\x60\x42\x79\x5b\xb4\xf2\x89\xb3\x86\x4c\x3e\xb1\xdd\xb1\x33\x72\x13\xdb\x69\xc3\xc4\x06\xe4\x28\x2b\xf0\x18\x0c\x54\x76\xaa\xdd\x12\x88\x9e\xec\x54\xbb\x68\xaa\x79\xa5\xda\x85\x36\xa1\xff\xf1\xa9\x65\x67\xda\x8d\x38\xa0\x99\x77\x05\x77\x0e\xfa\x54\x90\xea\xe7\x7f\x61\x2f\x20\x63\x37\xa1\x61\xee\xcb\xfb\xa2\x8b\x2f\x4c\x57\x65\x0c\x8b\xae\xa0\x23\x89\xae\xc1\xb3\x62\x6f\x99\xcc\x64\x7b\x6b\xb4\xe8\x7a\x79\xd8\xc0\x72\x5a\x64\xf2\xc5\xba\x67\xf8\x44\x60\xe3\xd8\x48\xd9\xf5\xf2\xc0\x8f\x65\xa5\xd5\xc5\x71\x96\x5d\x3f\xaf\x84\x08\x9c\x93\xb7\xf3\xe0\x0d\x01\xed\x3f\xcf\x0e\xa9\x62\xa3\xa5\x35\x13\xfc\xa0\x0c\xd2\x93\x26\x15\x51\x40\x17\x8e\x28\xc0\x6a\x99\x95\x66\xb7\xd6\xb8\xeb\xb2\x23\x0a\xd8\xfe\x2b\xa2\x80\xa9\x5b\x11\x05\x71\xa6\x72\x16\xe1\x0c\x6a\x45\x21\x37\xfa\x58\x84\xc6\x54\xb9\xa2\x1e\xce\x89\x2c\x9f\x55\xc3\x00\x96\xa5\x24\x76\x0c\x2a\xb9\x98\x7d\xc4\x05\x9a\xcb\x62\xb4\xb4\x21\x48\x6e\x24\xfc\x9e\xb9\x58\xad\x62\xfa\x8a\x77\x62\xb8\x5b\xb3\xe3\x8e\xb9\x56\xb2\x92\xe6\x56\xec\xf0\xb9\xd8\xaa\x1e\x0c\x39\x3b\xf2\x38\x78\x54\x76\xe4\x31\xc4\x3b\xf2\x18\x79\x24\x2b\xac\x00\xd7\x66\x76\xe0\x71\x64\x05\x9f\xd9\x79\x1e\xa3\xe4\xd2\xcc\xae\xc1\x17\x59\x3d\x67\x56\x18\x01\xaa\x47\xae\x86\x02\x05\x03\xcf\x02\xa2\xed\xdc\xd2\xb9\x9a\xb0\x50\x08\x73\xb5\x5f\x71\xa7\x0d\x13\xf6\x37\x0b\x5e\xae\xa6\x3a\x88\xaa\xa6\x9a\xfe\x16\xd5\x31\x2d\xd5\x54\xc2\x01\x97\x82\x19\x36\xba\xdc\xec\x3a\x60\xc9\x9b\x5d\x07\x61\xd6\xcd\x52\x31\x3b\x70\x83\xac\xa0\x83\x1d\x83\x4f\x16\x9c\x6d\xe7\x76\xcc\x4d\x51\x20\xec\x55\x55\xe5\x1b\xfb\x46\x9b\x9e\x98\xc2\x1b\xc3\xb2\x5e\xcc\xbe\xc2\x90\x3f\xfe\x9e\xdc\xec\x47\x49\xfc\xe0\x74\x6a\xb0\x02\xc5\x25\xe3\x95\xca\xcd\x7e\x14\x58\x83\xb4\xcf\x86\xda\x90\x95\x64\x17\xe1\x3b\xf7\x45\x7b\x34\xd1\x7d\x83\xc0\x45\xbb\xd5\x32\x96\xa0\x8b\xd4\xb8\x0b\xb3\x31\x6f\x08\x06\xb9\xaf\x3d\x10\xa3\x50\xec\x71\xa9\x8c\xd3\xa8\x37\x4c\x35\xb9\x9b\x01\x35\x7a\xb5\xcb\x28\x33\x50\x2f\xf4\xce\x30\x54\xf0\x27\xaa\x05\xcc\xdc\xe5\x33\x82\x7f\xc8\x01\x97\x90\xf9\xb3\x54\xd2\x8f\x34\x9d\x15\x9f\x0c\x5e\x20\x0f\x2f\xf3\xce\x0b\x8e\x58\x64\x14\xc2\xc2\xf5\x0d\x4a\xa4\x93\xd6\x1a\xf6\xe9\xec\x12\xe0\x1b\x8c\xd1\x21\xcb\xe8\xbd\x79\x38\xdc\x1c\x86\xa2\x98\xe5\xc2\xe6\x1a\x0e\xb4\xff\x8c\xf3\x76\x13\x31\xe5\xd2\x40\xd3\x67\x59\xed\xc6\x43\x46\xcf\x8a\x5a\xae\x00\x36\xb2\x20\x75\x09\x85\x31\x4f\x47\xda\xb3\xd0\x53\x91\xf5\x1c\x1c\xe9\xa4\x09\x35\x37\x2b\xe7\x6f\x61\x07\x4f\xc1\xfe\x60\xe0\x53\xb0\x3f\x0e\x9a\x13\x6b\xa2\xd4\xe6\x69\x42\x83\xf0\xe9\x48\x28\x2e\x60\x17\x5b\xe9\x6c\x03\xe7\xd5\x44\x89\xcd\x73\x51\x1e\xd3\x2b\xcf\x60\x42\x03\xcd\x0e\xd6\xc1\x02\x9e\x97\x67\x30\x94\x8f\x7c\xa8\x42\x1f\x7c\x50\x3a\x6b\x42\xbf\xcc\xd2\x59\x13\x26\x80\x6c\x57\x61\x63\x89\xa4\xb3\x26\xc4\xd2\xbc\x7c\x87\x21\xf4\x67\xfb\x0e\xd1\xc7\xb3\x94\xd6\xd4\x38\xcd\xf6\x1d\x62\x42\xc9\x2a\x3e\x08\x76\x34\x1f\x4b\x64\x8c\xf9\x92\x2f\xb1\xc0\x31\x5c\x7b\x10\x95\x28\x9f\xf2\x4f\x85\xb7\x26\x9f\x6b\xd1\x63\xdc\x4a\x5f\x95\xb0\x2b\xe4\x53\xe0\xcf\x30\x00\xe6\x73\x91\x1e\x83\xb0\xb7\x11\x1b\x40\x3e\x17\xa5\xbc\x21\x46\x56\xd9\x27\xd2\x62\x7b\x66\x2e\xec\x5d\xac\xcc\xd6\x69\xab\x20\x6c\xc8\x15\xc8\x3f\xf7\xe1\x65\xaf\x28\xb4\xaf\x10\x6d\xee\xc3\x2b\x2b\x5e\x29\x48\xbb\x1c\xd0\x04\xd7\xb9\x16\x0b\xe6\x87\xee\x26\xf8\x44\x85\xf2\x58\x00\xc7\x74\x37\x2e\x2f\xa9\xa9\xe5\x8f\xa6\xbf\x2c\x1d\x36\x35\x0e\xe1\x4f\x87\xad\xed\x33\x80\xc7\xed\xf3\x82\x21\x34\xb0\xce\xdb\x64\x87\x0d\x21\xdf\x76\x06\xc7\x34\xb8\x2a\x63\xe3\x94\x4a\x85\x6d\x0d\xde\x70\xaf\x79\x88\x89\xba\xbd\x79\x61\xf1\x77\xd3\xb0\xe8\xa3\xeb\x99\x16\x3c\x2d\x31\xca\x7b\xed\x5c\x06\xe1\x79\x0a\xb5\x39\x4b\xc3\xad\x11\xe7\x3c\xf3\x6d\x4a\xb9\xf5\x6f\x95\xcd\x65\x4b\x48\x9f\x2d\xa0\xb9\xf3\x63\x42\xa3\xd3\x27\x69\x10\xd1\xe2\xe3\x10\x47\x84\x95\x47\x85\x71\xe1\xee\x52\x58\x53\xe3\x4e\x79\xbc\xdc\xf0\xab\x47\x74\x71\x18\x9e\xb5\x5e\xb1\x3e\xcf\x5a\x9f\xa0\x4b\x69\x3b\xdb\x44\xbc\x7f\x2d\x1d\x22\x3f\x2a\x4b\xe7\x07\x83\x91\x5f\x5d\x19\xe3\xf3\x83\xdd\xf5\x9f\x1f\x9c\xef\x1b\xd2\x56\x01\x47\x8e\xd8\xeb\xe0\x4c\x66\xeb\x5d\x2b\xc0\x27\x0e\xce\x64\xba\xde\x55\x34\x96\x5e\x2e\xf7\x02\x2d\x4a\x74\x01\x93\x73\xee\xce\xc1\x7d\x29\xfd\x33\xa1\x38\x17\x27\xf3\x8c\x74\xa1\xb3\x6c\x16\xd9\x3b\x6f\x28\xe9\x65\x30\x8b\xa2\xac\x56\x95\xbb\xae\x6c\x8b\xd6\x1e\x3f\x2c\x5a\x73\xfc\x30\xbc\x11\xf8\xc4\x81\xa8\xb1\xe5\xcb\xe6\x4c\x0b\x1b\xc3\x30\xad\x9d\x37\x16\xad\x25\x7e\x30\xe0\x3c\x44\xa9\xb2\x99\xd8\xc9\x1b\xaf\xdf\x08\x52\x76\x13\x1b\x92\x65\x51\xe6\xab\x84\xa1\xa7\xec\xab\x20\x2a\x3f\x2c\x34\x5b\xf4\xb2\x3b\xbf\x49\xc8\x67\x65\xf7\xda\x43\xdc\xee\x04\x27\x93\x1f\x14\x18\x8a\xff\xbb\x48\x47\x05\x06\x5c\x76\x4f\x47\x88\x5f\x65\x77\xa2\x89\x9d\x91\xfb\x9a\x88\xfb\xac\xa4\x45\x4a\xb4\x29\x15\x92\xfc\x8b\xb3\x48\x85\x2c\x35\x6e\x92\x92\x9c\x64\x63\xf2\x46\xf7\x4a\xf2\x83\xf7\x64\xb0\xec\x92\x8c\x29\x61\x25\xd3\xc2\xb0\xf3\x86\xd0\x17\x6c\x9f\xe4\xdc\x2b\x9f\x4e\xd6\xc8\x69\xe2\x11\x2c\x25\x66\x27\xb9\x4e\x01\xfb\x29\x3b\xec\x95\xf9\x93\x16\x99\x77\x36\x47\x56\xce\x99\x38\x6d\x25\x6b\x8b\xb2\xac\x59\x29\x67\x20\x23\x1b\x81\x18\x87\xaf\x28\xf6\x29\xa3\xef\x15\x55\x69\xef\xec\xa5\xbc\x08\xa7\x49\x83\x69\xf8\xc0\xe1\xc5\x10\x9e\xd7\xfe\x64\x50\x0e\x94\x66\x3b\x66\x9b\xa3\x59\x90\xec\xc4\x93\xd0\x21\x45\x35\xef\xb4\x51\xac\xa4\xec\xfc\x90\xfd\xc3\x9f\x14\xab\xa2\x30\xf6\xc8\x96\x36\x8b\xcb\x12\x44\x5c\xfb\x2c\x86\x66\x46\x60\xfb\x2c\x0b\x9a\xd9\xe8\xf0\x32\x56\x93\x36\x6e\x7b\xa6\x68\xc3\xf5\x35\xd8\x78\x75\xc5\x7b\xc7\xdc\x55\x4b\xd8\x85\x1f\x5c\x1e\x21\xd8\x52\x91\x46\x99\x33\x2b\x58\xad\x2a\x07\xe7\x2f\xd5\x6a\x11\x9b\xc2\x71\xe8\x99\x7d\xe4\x38\x74\x10\x93\x45\x55\xdb\x3f\xac\xce\x61\xe6\x44\x80\x14\xa5\x9d\xfa\xf0\x1c\xa5\x9d\x82\x9b\x16\x97\x61\x8f\xb4\xd2\xb3\x34\xcb\xfd\x99\x26\x95\x19\x27\xd3\xe5\x69\xf8\x13\x3f\x48\xd8\x05\x8b\x57\x5c\x76\x1d\x8b\x48\x71\xd9\xf5\x5a\xe8\xc4\x95\x76\xc3\x25\x5e\xba\xcb\x3a\xc7\x64\xb9\x0e\x7b\x0d\x77\x6b\x51\xda\xa9\xc8\xe4\x36\x8b\xeb\xb0\xa3\xaf\x14\xd7\x61\x8f\x8a\x35\xb3\x74\xa7\x09\x62\x2a\x5c\x98\xbd\xc2\x2a\x55\x88\x85\xa0\xa7\xe2\x42\x2c\x15\x7e\x23\xf5\xee\x03\x8b\x29\xdd\x3c\x8b\x15\x52\x6e\xa9\xf9\xe9\x43\x01\x41\x1c\x21\x97\x59\x41\x0e\x2a\x52\xcd\x32\x52\x4d\xb1\x26\x06\x82\xbd\x48\x11\x18\x35\x8c\x3f\x45\xbe\x29\xca\x1d\xcc\xe2\xe0\xf2\xc2\xa2\xae\x54\xa7\x30\xa4\xdb\xf1\xdd\x7c\xf2\xae\x28\xf8\x7f\x6b\x54\xff\xb1\xac\x7f\x23\xad\x3a\x15\x03\x59\xa8\x3a\x2d\x57\x6c\xb5\xaa\xd9\xe9\x40\xf3\x6b\x17\xbe\xb7\xf2\x81\x42\x17\x42\xb0\xa9\xdd\xae\x90\x50\x14\x6a\x37\xa6\xb0\xd0\xc2\xeb\x26\xa3\x09\xa9\xba\x38\xd5\xeb\x50\xcc\x76\x2c\x48\x1d\x0a\x11\xce\xfc\xef\x7c\x05\xc1\xaa\xeb\x10\x68\x39\x50\xd6\x75\x18\xb5\x55\xe3\xd9\xa8\x2d\xfe\x57\x9e\x9a\xd8\x12\x55\x59\x8b\xb7\x90\xbd\xab\xb2\x16\x6f\x99\xef\x85\xa0\x61\x1a\x87\x80\x75\x0c\x50\x59\x8d\xb7\x38\x2c\x75\x0a\x03\x14\xfb\xa3\x4e\x85\x5b\xc4\x81\xae\x53\x80\x9b\x60\x12\x75\xaa\x80\x40\x6c\xe2\x3a\x6d\xe2\xdf\x69\xd0\xf7\x59\x88\x3f\x75\x0a\x8d\x12\xfb\xa9\x4e\x17\x38\xda\x69\xf2\x14\x14\x82\x2e\x85\xdd\xd8\x19\x92\xb0\x1a\x9f\xf7\x5f\x3d\x47\x83\xd2\x43\x4b\x54\x89\x9e\xf5\xb0\x53\x38\x96\xf5\x70\xb2\xa1\xc2\x0f\xf2\x12\x27\x5a\x10\x8a\x99\x49\x57\xa5\x50\x70\x4f\xf5\x58\x97\x76\x2c\xeb\xb1\x88\x8c\x31\x1f\xd6\xc4\x62\xc7\x57\xfb\x45\x31\xcf\xd5\xc3\x9b\x2d\x33\xca\x5b\xee\x14\x3a\xb5\x6b\x8a\x89\x3a\xed\x89\x0a\x21\xb9\xfe\x94\xcc\x02\x28\xa5\x4a\xc7\x9c\x11\xa1\x3f\xab\x54\xc8\xfd\xa7\x20\xfe\xe1\x62\xaa\xf2\x9a\xee\x51\x6d\x7b\xd6\x73\x59\xce\x62\x9e\xe4\x14\x25\x56\xa7\x9e\xcb\xfd\xc0\x0f\xb7\x9b\x60\x48\xcb\xd7\x42\x13\xaf\xdf\x08\x22\x2e\x1b\x05\x43\xf9\xae\xd7\x32\xf9\x45\xa3\x97\x6d\x9f\x9c\xfc\x9f\x7e\x59\xb1\x9f\xd4\x6b\x8d\x93\x1f\x64\x76\x9f\xf4\xb1\x2c\x9f\xb1\x07\x2f\x1b\xd1\x59\x40\xe3\x4b\x83\x39\xd7\x7b\xe9\xef\x31\xee\x5b\x36\x9a\xe0\xff\xf5\x56\xde\x47\x78\x89\x54\xbb\xc8\xad\x3c\xeb\x8f\xa1\xd5\xa8\xf0\x3b\xab\xf5\x32\xdc\xac\xf5\xb6\xd0\x1f\x52\x44\x7d\x56\xed\xf6\xe8\x52\x8a\x19\x71\x6c\xf5\xb1\x80\x15\x63\x7c\x1c\x0b\xc9\x8e\x51\x9a\xaf\xbc\x33\xb7\xf2\x2d\xe6\x9d\x15\x7d\x16\x4b\x8c\x4f\xac\x34\x81\x12\x6d\xbb\xb1\x5f\x33\x9e\x9d\xe8\xfe\xf3\xc3\xf3\xdf\xff\x5a\x64\x8d\x98\xed\x27\xf3\x92\x8a\x66\x36\x47\xfa\xc4\x5a\xb4\x94\xf4\x7f\x8d\xe7\xac\x67\xbe\x77\x84\x69\x8b\x67\x95\xd6\x19\xbc\x2f\xe1\x76\xe7\x7d\x23\x89\x63\x3c\xbf\x7b\xa1\x21\x60\x34\x85\xf0\xc0\x6e\x5a\x52\xc4\x69\x30\xc0\x96\x1d\x71\x1a\xe3\x5b\x72\x6c\x7c\xaf\x00\x1e\x4e\x72\x5b\x21\xfd\xb1\x35\x9a\x7c\x1d\x0d\xd3\x64\xfb\x89\xa5\xad\x87\x22\xd1\x7e\x52\x69\xeb\xcc\x80\xa4\x52\x5c\xad\xed\x27\x94\xb6\x1e\xb2\x77\xcb\x4a\x65\x52\xf8\x5f\x69\x49\xe3\x2a\x6c\xf6\x94\x84\x40\xda\xe4\x28\x69\x80\x9d\x9b\x04\x52\xd0\x0d\xad\x28\xe4\x34\x4e\x54\xb3\x9b\x24\x8e\x43\x93\xc4\x39\xd2\xa7\xc5\xe3\xbf\xff\xf5\xfd\xd3\x80\x42\x48\x27\x0d\x28\x84\x94\x11\x55\x65\xfe\x88\x4b\xa8\x55\x05\x15\x42\x61\x15\x1a\x9b\x0e\xab\xd0\xd8\xf4\xb7\xa2\xe8\xe3\x88\xb7\x2a\xb4\x35\x23\xfe\x09\x96\xa9\x32\x25\x55\x21\x9c\x89\xf7\x85\xae\x66\x0a\x7f\x62\x66\x8a\x8c\x8b\xb3\x55\x85\x74\x86\xdd\xa4\x35\x85\x70\xb2\x44\x4d\xa9\x4a\x58\x22\x79\x00\x06\xa0\xce\xa6\xd0\x18\x4c\x99\xad\x29\x33\x47\xa5\xc1\xeb\xf7\x7f\xb0\xe2\xd6\x94\xa2\x2f\x9c\x48\xad\x29\x0c\x33\x24\xf6\xa6\x0a\xe8\xa0\xa1\x5a\x17\x98\xba\xf2\xac\x6b\x96\x15\xe8\x46\x83\x47\x7b\x5d\x89\x3a\x32\xed\x09\x3f\x1d\x06\x94\xd6\x15\x36\x0a\xc1\x92\xfb\x4a\xdd\xf8\x41\x68\xef\xca\x07\x02\x0b\xb3\x24\xfd\x91\x1c\x10\x03\x1a\x92\x0b\x98\xe1\xe1\x4d\x17\x1c\xb3\x09\x44\xb6\xb1\x44\x43\x82\x00\x7b\x66\x18\x0b\xfc\x97\x4a\x7a\xb3\xb9\x16\x03\x87\x78\x49\x39\x8c\xc6\xa3\x65\x34\x96\x6a\x18\x8c\xac\x98\xa0\x23\x9b\x8a\x33\x10\x23\xdc\x24\x96\x94\x1a\xcc\xb5\xfd\xc4\x92\x49\x50\x70\x5b\x52\x49\xf4\xa0\xe2\x0c\xe0\x80\xdb\x14\x70\x8f\x05\x31\x84\xeb\xd3\xa1\xe1\x12\x21\x43\xb4\x85\xd8\x0a\xa1\xa1\x19\xb1\x85\xc3\xa7\xc9\xfa\x5d\x22\x45\xe7\x6c\x46\x6c\xe1\x16\x6c\xb2\x7e\xf7\xfd\xf3\xc9\xf4\xed\x19\xdd\x2a\x0b\x28\xfe\xb2\x76\xd8\x59\x03\xb7\x3a\xec\x95\x8b\x8b\xab\x9d\xbe\x6f\xe1\xf8\x8a\x7a\xc1\xaa\xdc\x5c\x57\x01\x5c\x5e\x53\x18\x4c\x14\xc3\x9f\xed\x94\x15\x93\xef\x7d\xd9\xc6\x90\x84\xad\x6a\x9f\xf6\x7c\x96\x63\xe6\x4e\x9f\xe5\x98\x79\x9b\xa4\x49\x8b\xd3\x5c\x48\x81\x0e\x54\xe3\x09\x31\xbd\xb9\xc6\x13\x1d\x5e\x82\xa9\x73\x98\x2f\xef\x4c\xfe\xf7\xce\x8c\xbd\xa0\x1a\x4f\x08\x2d\xed\x27\x2d\xcc\x0d\xe6\xa3\xb2\x09\xe8\x8f\xed\xf2\x52\xf3\xbd\xb0\xc3\x99\xf6\x25\x8f\x32\x5f\xc2\x3a\x01\x70\x6b\x0b\xeb\xc4\x07\x32\x14\xef\x51\x2e\x6e\x36\x09\x13\xc4\x50\xb7\xdb\x02\x0e\xff\x77\x2f\x09\x2f\xd8\xc7\xc1\xf6\xbc\x95\xfb\x8e\xe3\x6d\x43\xf1\x67\x3b\xde\xaa\xdf\x0b\x83\x92\x7c\x82\xdd\xb8\xdd\xf6\x74\xb1\xa1\x6f\xb9\x3c\xe0\x78\x96\x57\x10\x8a\xdb\xe3\xe4\x78\xcc\x9b\xe4\x13\x52\xd7\xb4\x47\x7e\x82\x90\xdb\x9b\xa5\x11\x74\x85\x26\x69\x04\x28\x54\x73\x84\x0a\xf3\xa4\xf2\x07\xe8\x32\x4d\xe5\x0c\x2a\xd3\xf4\x9a\x47\xc5\x10\x55\xce\x60\x63\xa7\xbd\x49\xef\xc7\x1c\x48\xd8\x29\x83\xc3\xf1\x56\xad\x5c\x8c\xf8\xa7\x74\x66\x40\xd9\xed\x15\x08\x3b\x9c\x4f\xed\x1d\x7a\x9f\xff\x85\x42\x87\x07\xbe\x87\xfe\x67\x80\xda\x49\x5c\x3b\x8a\x49\x21\x06\xa8\xb9\xfa\x01\x73\xda\x55\xec\x1b\x0c\x61\xdf\x16\xcf\x98\xf1\x43\x76\xf6\x9c\x3d\x7e\x28\xd2\x01\x5a\x3c\x1b\xa3\x12\xbb\xb7\x6f\x06\x8b\x85\x0a\xda\xb7\xa9\x2f\x68\xf2\xf4\x6e\xe4\x85\x5b\xbb\xb1\xc6\xf3\xa3\xe7\x14\xcf\xaf\x9e\xa3\x07\x19\x70\xf7\x1a\x92\x6c\xdf\x77\xbd\x90\xe3\x39\xb9\x87\xe8\x52\x25\x9b\x88\xd9\xef\x7b\xd3\x73\x4c\x83\x0b\x71\x47\xd9\xb8\x1f\x9f\xf6\x0f\xf4\xe9\xfb\x0d\x32\x77\x39\xe4\xe3\x90\x77\x03\x86\x66\x6d\x7f\xb9\x7f\xfa\x2e\x0f\xf6\x64\x80\xf6\xef\xc5\x5e\xee\x69\x71\xcd\xa0\x49\x62\x6e\xc3\xfb\xd9\x93\x1d\x7c\xc1\x26\x7a\x5a\x7c\x94\x37\xac\x42\x44\x27\x2e\xd3\x0d\xa3\xe8\x2e\xd3\x1d\xf5\x3f\x66\x4f\xf2\x0f\x85\x2c\xda\x6d\x0a\x8e\x0a\x2c\xb3\x27\xbb\x27\x82\xd7\xf5\x9f\xb4\x5c\x23\xb7\xe0\xec\x59\xa5\x7d\xe3\x1e\xec\x92\x76\x0b\xc9\x2f\xfa\xb2\xda\x46\x17\xc2\xfe\x7c\x42\x96\x7b\x5e\x3a\x04\x6f\xf8\x2a\x65\x93\x66\x4b\xe8\x2c\xa7\x4d\xa8\x91\xfc\x73\x76\x49\xb0\x1f\xab\x46\x77\xf2\x4f\x64\xe8\x5e\x5c\xf5\x36\x86\x25\x93\xea\xc7\xce\xd1\x65\x35\xe5\x28\x76\x1b\x49\x31\x64\x74\x1b\x49\xb1\x5c\x74\xc5\xaf\x7f\x8e\x8e\xe3\xd7\x2b\x4b\xa8\xfc\xa0\x13\xf0\x78\x57\x7e\xd0\x8c\xdb\xb0\x2b\x24\xbd\xe3\xc0\xeb\xd5\x92\x76\x0c\x5b\x36\xd3\x81\xef\xa2\x57\x73\x90\x98\x7f\xd9\x50\x4b\x65\xdc\xd5\x40\xf9\x44\x93\x46\xe8\x7e\xde\xb8\xed\x91\x8d\x61\xc9\x86\x0a\xfe\xb9\x0b\x57\x53\x90\x7e\xbb\x72\x44\x11\x3b\xd2\x95\xca\x93\xf4\x00\xbd\xd9\x28\xc5\xb3\x8e\xdb\xe7\x7d\xcd\x14\xc7\xef\x27\x0d\xa7\x2d\xa4\xb1\xde\x64\x37\x0b\xe4\x62\x57\x58\xc6\xc6\x2e\x6c\xab\x08\x22\x03\x92\x30\x19\x22\x46\x57\xa4\xc5\xc6\xbe\x96\xb1\x74\xec\x7c\xe0\xd0\x0b\x76\x65\x57\x64\x09\x93\x24\xf1\x17\x1b\x41\xef\x9e\xe6\xa0\xc8\x71\x16\x9f\xb3\xd6\x1d\x5c\x10\xc6\x93\xee\x40\x8b\xcc\x90\x56\xd4\x16\x4d\x2c\x01\x8e\x31\x98\x39\xb3\xf8\x8e\x2b\xff\x70\xe7\x61\x11\x2f\x24\x93\xbe\x22\x2d\xe8\x65\x18\x94\xcf\x11\x77\xe8\x79\x0e\x39\xb3\x3b\xd4\x82\x71\x0a\xc5\xd2\xa2\x6e\xf9\xec\x8e\xac\xe0\x52\xea\x42\xb1\x14\x6c\xd3\x7d\xac\x1d\x44\xaf\xa7\xf6\x03\x6d\xca\xb2\xb4\xf3\xbf\x2d\x4b\x85\x17\x5e\xbd\x10\x5d\xb8\xb8\x6b\xfd\xfc\xd0\xfd\x43\x7c\x21\xc4\x09\x89\x0e\xba\x43\xd1\xeb\xe7\x07\x43\xa8\x42\x7e\xe8\xd3\x81\xce\xf0\x80\x69\x51\x35\x74\xa4\xbe\x62\xd1\xd9\x67\xd3\xb2\x6b\xa3\xd1\xb5\xf3\x63\x3a\x8f\x1f\x7b\x03\x8d\xd3\x17\xe2\x04\x1e\x7b\x98\x2b\x87\x4c\xd1\x15\x8b\x0e\xc6\xb6\x2f\xc4\x09\x6b\x68\xc4\xc9\x87\x35\x1d\xb2\xec\x30\x88\x85\x2f\x61\xc9\x16\x9c\x84\x8d\xe2\x54\xfc\x9f\x45\x76\xfd\xb3\xcf\xce\x51\xd2\xd9\xd2\xd2\x9f\x2e\x27\xd7\x46\xfb\xec\xaa\xd3\x4c\x9c\xf3\x74\xda\xa0\xc9\xf5\x68\x19\xbe\x71\x02\x85\x2e\x69\xe4\xfd\xe9\xe7\xba\x6b\x62\x8c\x46\x97\x44\x71\xab\xd9\x8d\x2e\xe9\x70\x71\x09\xf6\x09\x90\x56\x17\xdc\xa4\x91\x5a\xaa\x9f\xae\x41\xc0\xf5\x23\xd9\x7e\xf4\xf0\xda\x77\xd9\x03\x4b\xfd\x0c\xec\xf5\xe5\x11\x43\xbf\x6c\xbd\x65\x1c\x8a\x66\x1f\xcc\xff\xb5\x88\x8d\x9d\x25\x3c\xca\x60\x49\x65\x1e\xfc\x1c\x87\x6b\xdd\x0c\x31\x2a\x85\x4d\x7c\x6c\x52\xfd\x9a\xf2\xab\xf0\x82\x52\x99\x0c\x7a\xb8\x24\x48\x06\xe1\x0e\x91\xf8\xec\x11\x87\x48\x7c\xb6\xd9\x0a\x91\x80\x63\x39\x44\xe2\x73\x33\x08\x4f\x52\x3e\xd7\xd1\x4f\x4d\xa8\x58\x8c\xbb\xb5\x04\x5c\x4c\xfd\xb6\x1d\xb4\xf1\x85\xb1\x50\x5c\x1d\x4b\x4f\xe0\x1a\x5d\x7a\x02\x73\x61\x44\x09\x49\x54\xfa\xb2\x53\x06\x25\xcf\x9a\xfe\xe8\xf5\x59\x7e\xde\x68\xd3\x66\x47\xd2\xda\xf5\x7f\x72\x7d\xd0\x2a\x40\x48\x07\x02\xd7\x9d\x49\x36\xd4\xf9\xfe\xac\x5d\x10\x2f\xbc\x4b\x84\x8c\x5e\x5d\xa5\x75\xb2\xf9\x14\x4b\x40\xad\x89\xd9\x5f\xa5\x2d\x0b\x03\x46\x7f\xed\x59\x67\x1b\xbc\x0a\xe4\xe2\x10\x0a\xdb\xb1\x57\xa4\xa9\x57\x3a\x13\xd3\x69\x68\x07\xee\xfc\xae\xa2\xac\x64\x94\xe8\xaf\x52\x41\x87\xbe\x32\x04\xd3\xc8\x39\xc6\x30\x94\x30\x16\xf7\xf3\x50\x2e\xaa\x1c\x3d\x0c\xe7\x9a\x8a\xad\x3d\x7e\xb2\x79\x46\x9b\x1f\x4a\xea\x8f\xae\x3e\x36\x25\x64\xf9\xbc\x2f\x4f\x47\xdc\x26\xc3\xb9\xa2\xe2\x30\x8d\x9f\x5c\x9d\xb1\xd7\x0f\xc1\x22\x46\x0f\xb3\xd6\x10\x2c\xa2\xa7\xe0\xe3\xc3\x05\xc1\xd8\x31\xc3\xd9\xa0\x3e\x7d\x2a\x0d\x3f\xe8\x95\xe1\x64\x50\x98\xe7\xc7\xbe\x6e\x13\xde\xb0\x31\x26\xf8\xf8\x70\x36\xa8\xcf\x38\x05\xc5\xc7\x83\x33\x24\x2a\x57\x40\x94\x43\xa2\x32\x91\xea\xc3\xa9\x9f\x70\x01\x8c\xe4\x98\x98\x38\x3d\x23\xf9\x9a\x64\xee\x92\x63\x62\x98\x8c\xe4\x5b\xb1\xc6\xb3\xd4\x1c\x08\x4b\xce\xd0\x52\x18\xb6\x5d\x15\x71\x36\x86\x84\x69\x32\x02\x0c\xa7\xe6\xaf\x0c\x33\xdb\xa2\x13\xbb\x76\x48\x9a\x2e\x35\xce\xf0\x30\x92\x9e\x9c\xc2\x23\x77\xb5\xc9\x17\xbe\x58\x83\x2e\x25\x83\xda\x3e\x63\x38\xf5\x1c\x0d\x96\x75\x50\xa2\x41\xa7\xcd\x8f\x04\xe7\x73\x94\xc5\x47\xa2\x09\x17\xe7\x9a\xec\x8a\x9f\x2c\x5d\x41\x76\x0e\x89\xd2\xf5\xc7\xb5\xff\x70\x3d\x0d\x01\xe8\xf7\xce\x72\x2f\x00\x7d\x1c\xd5\x51\x2c\x0b\x84\xcf\x60\x14\x6b\x6f\x9f\x41\xcb\x1a\xf1\x79\xf6\xfd\x08\x95\x32\x46\x7c\x48\x50\x79\x2b\xe6\xb9\xfa\x56\x8f\x0e\x64\x60\x9e\x5b\x70\xb1\xe1\x2a\x5c\x51\x9f\x63\x8e\x2a\x48\x5a\xe2\xd9\x9a\x54\xa5\x09\x1d\xfe\xd0\xe5\x87\x8b\x70\x45\x45\x8e\x39\x5c\x84\x0b\x6c\xcf\xa8\xca\x1c\xbf\xf3\x6c\x0f\x0f\x7d\xb8\x08\x17\x58\xcb\xd1\x96\xc3\x26\x3e\x11\x98\xbd\x87\xa8\x3f\x9a\x75\x2d\x08\x6f\x5d\x2f\xf0\x3c\x9c\x10\x81\x1f\xa6\xb9\x33\x4d\xb8\xa0\xd1\xa7\x89\x53\xd7\x65\x2c\x97\xd0\x10\x2d\x6a\xf4\xcc\xd1\x9c\x23\x34\x26\xd7\x50\x07\xce\x45\x77\x7a\x19\xfe\x77\x65\x56\x26\xbb\x2f\x84\x40\xb4\xa8\x1a\xf9\x20\x7d\xc6\xa1\x34\x10\x1c\xde\x43\x1e\xde\xcc\xff\xaf\x58\x77\x6c\x07\x39\x3a\xb9\x6e\xc7\x69\xb3\x08\x3d\x2a\x44\x14\x57\xd9\xb0\xb8\x93\x42\x68\x1e\xa7\xb7\x38\xcf\xd6\xcb\x42\x04\x18\xe7\xba\x29\xe9\xd3\x50\x0a\x76\x8c\x32\xf7\x10\x16\x35\x2c\xec\x34\xb8\xfb\xa9\xab\x34\xac\x3b\xe3\xf4\x06\x61\xa6\x4f\xa3\x1c\xd9\xd6\xa7\x51\xa8\x21\xdb\x8c\xcb\x58\x23\x58\x8c\x9c\xa1\x35\x85\x85\x68\x5c\xce\x49\x14\xa3\x58\x89\x79\x76\x9a\x58\x94\xc5\x5c\x5c\x8e\x01\x88\xdb\x78\xb8\xa2\x12\x59\x39\x86\xd0\xb7\xa5\x76\x3a\x39\xbd\x67\xe8\xe5\xb2\x66\xcc\x0f\x8f\x97\x38\xb6\x99\x6a\x18\x81\x49\x1b\x02\x74\xd4\x0c\x1b\xba\xd7\x17\xd1\x84\xaa\x16\x81\xc4\x1a\x8f\x8d\x04\xcc\xdf\x63\x31\x77\xf0\x83\x12\xc2\x71\x09\x38\xb7\x66\x48\xd5\x43\x55\x8d\x88\x2e\x1c\x8f\x4f\x4f\x98\x04\x86\x52\xe4\x60\x77\x1d\x32\x38\x62\xb8\x1a\x32\x38\x62\x09\x1b\xaa\xb7\xfa\xe1\x22\x8e\x9a\x24\x65\xc2\x50\xce\x1c\xd4\xa2\xb1\x2c\x94\x41\xe3\xeb\xd8\x66\xb6\x80\x4d\x92\xac\xd6\x2b\xc5\x96\x1e\x5e\x5f\xd0\x1c\x8d\x57\x79\x21\x32\xcf\x53\xcf\x7c\x60\xe5\x2f\x44\xa9\xf1\x5a\x66\xf8\xf7\xc1\x74\x41\x55\xa4\x9a\x69\x9b\x22\x32\xe1\xdc\x84\x7e\x08\x11\x60\x6e\x56\x49\x67\x3c\x3b\x2a\xbc\xd0\xe4\xba\x6b\x6b\xfc\x20\x67\xc9\xa7\xc5\x43\xc7\x91\x16\xa5\x7c\x87\x9c\x3a\xb7\x95\x47\x2f\xba\xd8\x7d\xb3\xf2\xec\x50\xd2\x60\xb6\x53\xf5\x88\x7a\xfa\x4b\x2d\xf2\x39\x77\x73\x03\x5a\xb3\x5f\x25\x78\xfb\x74\x5d\x54\x14\xcb\xa9\xa4\x99\x18\x6e\xe7\xbe\x0e\x7f\x89\x1f\xe4\x67\x49\x3c\xeb\x1a\x8e\xbd\x3a\x77\x27\x80\x0b\x51\x70\xca\xa2\xb8\x7d\x5a\xb4\x30\x11\x97\xc1\x4c\x32\x92\x86\x09\x64\xa6\xa5\x73\xc7\xa8\xd3\xba\xa6\xa3\x0f\x47\x17\x56\xda\x54\x74\xe1\xf6\x69\xd2\x4a\x38\xa3\x72\x74\x21\x49\xaf\xa7\x83\x07\x49\x3e\x39\x85\xfb\x24\x3a\x74\x5a\xe6\x21\x0b\xf6\x74\x09\x53\xc2\x28\x67\xb6\xc0\x11\x56\xfc\x69\x29\x88\xbc\xd8\x33\x2f\x09\xa4\xc5\x0f\x55\xcc\x37\x26\x2f\x1b\x7a\x1b\x37\xc8\xcc\x8e\xc8\x62\xb9\xb3\x6d\x1c\x83\x26\x96\x6c\x1e\x03\xcf\x36\x27\x7c\x7a\xb5\x8e\x5d\x18\xb9\x64\x08\xa6\xcf\x6e\x74\x12\x25\x4f\x27\xc9\x04\x2c\x37\x0d\xec\x2c\x1b\x3f\x58\x8d\x6e\xfc\xa0\x52\x2d\x2c\x5a\x59\x62\x45\x8c\xb3\xd8\x42\x0b\x69\x2a\x4a\x04\x9c\x6e\x16\x57\x01\xd9\x69\xc2\x3a\x73\xa2\x0f\x63\x56\x13\x6d\x3a\xde\x8a\x35\x29\xc6\x92\xd0\x68\xb5\x60\xc1\xb8\xaa\xa0\x23\xec\x94\x2a\x2b\x2f\x3b\xc5\x65\x8b\x08\x59\x9c\xd5\x95\x12\x3b\x6f\x54\x49\x09\xb4\xb8\xee\x19\xfa\xb4\x24\x12\x0b\x22\xc3\x66\xde\x21\xcc\x12\x15\xd1\x7e\xd3\x65\x8c\xc8\x7f\x3e\xab\xb0\x88\xa1\xfe\xcc\x6a\x88\x1f\xb3\x29\x89\x6a\x7e\x9e\x17\x0a\x33\x9a\x54\x00\x61\x26\xb2\x60\x36\x1b\x07\x58\x31\x05\x10\x76\x72\xd1\xcf\xa9\xaa\x28\x61\xf0\x9e\x53\x89\xc6\x58\xb0\x69\xdf\x43\xdc\x3a\x73\xca\x1a\x1a\x5a\xdf\x94\x21\x6b\xec\xcc\xbe\xcb\xf4\x93\x9b\x6c\xae\x74\x1e\x85\x37\x1e\x1f\xcc\x98\x9b\x65\xa7\x8a\x8b\x64\x1e\x3e\x33\x83\x37\x8a\xd3\x8a\x47\xa3\x87\x00\x47\x9d\x2f\x04\x8e\xe6\xac\x1f\xce\x60\xf1\x69\xc1\xd6\xec\xb8\x6b\xa6\x2b\x42\x72\x84\x0e\x5f\x5e\xb4\xf8\xe8\x99\x06\xa4\x6d\x32\x82\x53\xf9\x72\x42\x0a\x9b\xa7\x72\x20\xc1\x55\x4f\x19\x71\x43\x6a\x9b\xa7\xb4\x51\x0e\xf5\xe9\xbb\x2e\xfa\x3f\xe5\x7d\xe3\xde\x91\x08\x56\x3e\xa7\xed\x74\xb6\x11\x0e\xe8\x69\x33\x2f\x24\x9c\x36\xf3\x72\xe8\x4f\x8b\x1d\x21\x55\xcc\xd3\x6b\x11\xba\xe7\x54\x16\x8e\xcf\x75\xe8\x2c\x1c\x64\x9a\x9b\x97\x6d\xb6\x21\x09\x4e\xc5\x37\xd5\xcf\x44\x08\x90\x36\x72\x88\x47\xf3\xf2\x0d\x59\xff\x64\xcf\x9b\x2b\x49\x47\x88\xe8\xf3\xb2\xce\xcd\xc1\x58\x39\x39\x60\xcb\x2b\x27\x07\xc7\x71\xe5\xe4\x60\xae\x96\xc1\x89\x1b\xeb\x96\x53\x80\x2d\x77\x4b\xe7\x86\xab\x38\x23\x07\x1c\xe0\xae\x7a\x8e\x06\x6f\xab\xdc\x10\xb9\xf2\x6f\xc0\x50\x57\xfe\x0d\x78\xc6\x2d\xcf\x62\xe2\x0b\xdb\x07\x59\x8c\x5b\x2a\x38\x1c\xe1\x36\x9d\x8d\x26\x65\xa9\x66\x53\xdf\x32\x4c\x73\xd4\x2c\x23\xe2\xd4\x99\x96\x11\x13\x9b\x56\x4e\x68\x80\x31\x53\xd6\xaa\x9d\x84\xec\xf3\xf1\x3d\x0b\xa1\x8f\x55\xf2\xcf\x27\x42\x27\xa5\x50\x80\xe6\xe3\x8b\x37\xf4\x93\xf9\xf8\xa2\x0d\x8b\xec\x7c\x0e\xff\x10\x53\x21\x49\x71\xaf\x90\xfa\xc8\xda\xf0\x79\x5e\x2c\x21\x48\x5b\x26\x30\x16\xe4\xb5\x80\x10\xe3\x7c\xad\xc7\x0f\x7e\xb0\xc5\x2b\xcc\x4d\xf3\x75\x3c\xf0\xe7\x07\x03\x23\x07\x6d\x9a\xb9\x21\xa6\x38\xbf\x06\x69\x2a\xa6\xf3\x6b\x90\x16\x61\x3a\xbf\x06\x49\x0e\xe6\x6b\xbb\x3d\x1c\x54\x66\x31\x82\x4d\x8f\x6d\xd7\x73\x8d\x67\x0b\x08\x83\x1f\xcc\xec\x26\x5f\xd8\x08\x1f\x62\xf0\xb1\xd9\x08\x1f\xbc\xe3\x70\x38\x13\x80\xa9\xc3\xe1\x4c\x58\x81\x0f\x47\x2f\x81\xd3\x3b\x1c\xbd\x04\xe4\xe9\x70\xf4\x12\xac\xe0\xd8\x2c\xce\x4f\x3e\x31\x08\x22\x84\xe7\x63\xb3\x78\xc4\xc8\x0d\x82\x08\x66\x71\xec\x36\x97\xc6\x16\x3f\x1c\xbc\x84\x9b\xe3\x70\x68\x12\xa9\xe1\x0e\x87\x26\x81\x9f\x3f\xe4\xfd\x26\xc4\xec\xd8\x2d\x32\xc4\xb8\x77\x07\xfd\x75\x3a\xb5\xe6\xc9\xb0\x76\xdb\x26\x06\x4d\x5a\xf5\x0c\x06\x72\xec\x56\x3d\x07\x6d\xc8\x48\x87\x25\xf0\x70\xec\x12\x4a\xfb\x91\xec\xa3\x8d\xcd\x73\xd8\xc3\x8d\x59\xf7\xb0\x87\x1b\x95\xee\x48\xa6\x35\x2e\xa9\x23\x2d\x5a\xe9\xc5\xc8\x3f\x96\x2d\x59\x82\xea\xfc\x60\xb1\x21\xb8\xed\x91\x1c\x85\x16\x2a\xd0\xe1\xe8\xa6\xc4\xb3\x05\xa6\x4c\x27\xb7\x7f\xa0\x4d\x0b\x4c\x99\x91\xdb\x44\x19\xe7\xe0\xb0\x9f\x3c\x4e\xe3\x91\x1d\x83\x16\x27\xfc\x90\x94\x9b\x88\x0d\x38\x64\xda\x4b\xe0\xb7\x0f\xc7\x37\xb1\x6c\xd9\x11\x78\x99\x36\x25\x31\xb1\xce\x92\x7a\x13\x50\x8d\x23\x2f\xc5\x9c\x37\xec\x59\x4f\x8c\xc2\x86\xb3\x50\xb3\x8f\xec\xb8\x09\x36\x93\x03\x9c\xf6\x9d\x61\xfc\xb6\xf0\xd8\xf8\xc2\x0e\x97\xf4\xa7\xbb\xea\x28\xaa\x0f\x13\xa6\xc1\xa3\xd8\x1b\x10\x92\xe4\x51\x0c\x97\x0d\xb5\xe5\x28\xf2\xc6\x84\x1b\xe3\x28\xb6\x71\x85\x32\x78\x48\x86\x1e\x1b\x2d\x2c\xc9\x32\xa6\x41\x32\x74\x26\x3b\xc0\x61\xcf\x3d\x89\x0f\x8e\x62\x9b\x16\x9b\x66\x05\x44\x71\x22\x64\x40\x24\x9d\xec\x21\x91\x39\x93\x54\xff\x58\x01\x52\x6c\xe6\x15\x20\xc5\x19\xaa\x2e\x80\xc9\x91\x59\x22\x71\xac\xa7\x45\x62\x62\x56\x0e\x89\xc4\x00\xb8\x8f\x6a\xcb\x4b\x70\xca\x43\x22\x71\xce\x30\x9c\x6a\x71\x65\xd0\xa6\x73\x3b\x0f\x86\x25\x63\x5c\xe8\xde\x87\xeb\x76\x62\x82\x38\x9a\x90\x13\x50\xde\x6c\x31\x0a\x25\xe6\xb0\x91\x11\xfc\xde\x21\x23\x23\xea\xd9\xd1\x56\xad\xf1\x98\x4d\xdb\x10\x09\xa7\x3e\x1c\x51\x05\xa1\x8e\xa8\x22\xe2\xfb\x90\x0d\xb1\x63\x97\x3c\x86\xd3\x1d\x87\x25\xf3\x90\x09\x10\x97\xe5\x71\x28\xc8\xa3\xf0\x2c\x68\x54\x5c\xec\xc7\x69\xdf\x3a\xac\x58\x36\xbf\x9e\xd8\x8a\xa7\x61\x75\x30\x9b\xd3\x37\x3b\x9c\xc3\xe9\xb9\x89\xf9\x3c\x94\x06\x0e\x83\xd1\x71\x5a\x81\x8e\x41\x9e\xeb\x5e\xa7\xd3\xc3\x76\x44\xfa\x30\x58\x0a\xca\x65\xf4\x03\xd8\x7b\x48\xde\xac\x3d\x04\xb3\xc3\x11\x10\x04\x4d\x1c\x2b\x02\x02\xbe\xe0\x88\x7b\x2c\x8d\x87\x3c\x9e\xe4\x3a\x3a\x56\x04\x7e\x88\xf6\xc7\x65\xd6\x12\x06\x97\xc3\x01\xf6\xc8\x45\xc7\x2a\x92\xce\xfc\x5e\xe6\x0b\x70\xcd\x9f\xc0\x58\x47\x28\xe5\xc7\xbd\xf6\x7f\xcc\xaf\x02\xe0\x49\xde\x70\xfc\x04\xc6\x3a\x42\x19\x3b\xee\xe5\xf6\x0b\xc2\x84\x5a\x44\x24\x3d\x24\x30\x36\x30\x59\x87\x73\x6a\x73\xff\xde\x56\xd9\x1b\x3f\x08\xb6\x0d\xd3\xb5\x33\x92\x54\x03\xc7\x23\x95\x83\x99\x7a\xec\x15\x84\xdb\x3c\x16\xde\x91\x24\x1e\x79\x01\x43\x37\x3b\x9e\x25\xaa\xf3\xc3\x12\xbe\x83\xae\x67\x09\xdf\xbc\x21\xd1\x8d\x51\xad\x3c\x67\xb0\xa3\xd7\xe6\x68\xd8\xd1\xbb\xb6\x66\x4c\x85\x91\x87\x0d\x2e\x6c\x51\x0d\xfc\xda\x61\x51\x0d\xa0\xd0\xf1\xae\xbd\x48\x2f\x4b\xc6\xa4\x17\xd9\xa0\xd8\xcd\x0e\x3c\x07\x46\x7a\xbc\xb6\xf6\x4c\x9a\x58\x7b\x91\x26\x14\x6a\xb0\xc7\x92\x9c\x0a\x34\x4f\x00\x8a\x4f\x09\x6f\x6d\x0f\x6d\xe8\x54\xe4\x39\xc1\x94\xe7\x26\x78\x44\xd0\x7e\x6e\x36\xa4\x87\x4c\x7f\x6e\x2e\xb3\xd1\x68\xd2\xf2\x4c\xc8\x83\xa7\x05\x33\x12\x10\x9f\xdb\x92\x67\xfe\x54\x72\xe9\x14\x5e\x11\x6e\x75\x6e\x4b\xd6\x61\xc8\x4e\xcd\x18\xcc\xff\x74\xc8\x39\x2e\x8d\x73\x85\x9c\xc7\x39\x3f\x1d\x72\x0e\xdf\x3d\xf7\xb5\x82\x31\xe8\xdd\xb8\xb8\xc4\x27\xbe\xc7\x18\xc7\xee\x6b\x6b\xd0\xc6\xa1\x13\x14\x2f\x24\xb1\x6e\x3a\x4d\x0a\x7d\x0d\xbd\xf0\x4c\x8b\x73\x47\x9f\x49\xd5\xd7\x42\xc4\x3d\x93\xf9\x59\x74\x60\x83\x60\xe6\x7f\xcb\xc4\x8d\x06\xac\x91\x55\xbe\xb0\x4d\x86\xa9\x77\xc5\x72\x30\x70\xa7\xe3\x69\x48\x21\x74\x26\x1f\xd2\xe8\x24\x8b\x4f\x4c\x9e\x65\xa5\xa7\x0b\x9b\x03\x09\xbe\x38\xf3\x9a\xca\x19\x3f\x58\xda\x0f\xd6\x72\x66\x0b\x85\x21\x7a\x9e\xd9\x7b\x28\xf1\xc3\x92\x8c\xf8\x61\x11\x12\xc3\xcc\xb2\x76\x04\x23\x38\x8b\x79\x49\x68\x8a\x67\xf1\x21\x8d\x0b\xff\x2c\x82\xd2\xc6\xf5\x71\x16\x69\xc4\x99\x16\xac\x11\x87\x40\x70\xda\xd8\x07\x32\xf6\x2c\x56\x39\x58\x61\x1b\xf7\xb0\x14\x9c\x65\xb1\xbc\x18\xb7\x3d\x9d\x9f\x41\x48\xe3\xf8\xf4\x21\x4f\x67\xf0\x9a\xb3\x2e\x32\xa2\x4f\x99\xfa\x06\xeb\x65\xb1\x65\x4f\x7c\xa1\x78\x73\x36\xae\xe3\xbc\xc9\x44\x75\x5a\x8e\x21\xb5\xd7\x29\xdf\x28\xd8\x95\xd3\x62\x0b\xe1\x16\xa7\x72\x4f\x6f\xac\x68\xf5\x65\xce\xb3\xa1\x73\x1c\xf9\x66\x0b\xfc\xe4\x87\x35\x97\xd1\x87\xab\x52\x62\x76\x3b\x9b\xad\x0b\xa1\x99\x9e\x8e\xd1\xc9\xa1\xd3\x9c\xcd\x8c\x3a\xc4\x92\xb3\xc9\x5a\x10\x3c\xf5\x74\x95\x49\xd4\xdf\xb3\x9b\x73\xb3\xdb\xbb\xc7\xc5\x11\xed\xf6\x0c\x30\x39\x7d\x0d\x34\x26\xa7\xfb\xcc\xf1\x6c\xb6\xcc\xa1\x74\x02\x2d\x02\x1e\x4e\x27\xd0\x22\xba\xe9\xec\x8e\x92\x64\x6f\xba\x72\x24\xf1\x4b\xa7\xb0\x87\xb5\x84\x54\x7d\x0e\x5b\x07\xe0\x58\xc2\x1e\xf6\x1c\x9a\xc0\x39\x0c\x46\x08\x53\xd8\x29\xec\x61\x23\x3b\xd8\xe9\x72\x92\xe0\x46\x4f\xa5\xd0\x4a\xa0\xf8\xce\xb1\x2e\xa1\x18\xd8\x30\x66\x26\x6e\xcb\x53\x49\x9b\x1b\xbe\xc3\x53\x19\xb2\xfa\xfc\xbc\xf1\x78\x83\x06\xf9\x12\x05\x1b\xc0\xa6\x73\x9a\x16\x2e\x9d\x29\x4b\x07\x6c\x6c\x9a\x94\x10\x16\xcf\xb9\x58\x48\x4c\xc7\x34\x29\x30\x99\x69\x59\x83\x2d\x28\xfc\x61\x02\x84\x7e\x3a\xe5\x15\xa0\xf3\x53\x56\xda\x96\xc2\xfe\x79\x3a\xc3\x15\xc0\xf7\x73\x7a\x15\xc2\x1c\x75\x2a\xb2\x38\x81\xce\x38\x8f\x75\x5d\xfe\x29\xca\xe9\x34\x18\x11\x00\xc9\x69\xf0\x21\x48\xdc\xd3\xe0\x43\x0a\x4a\x9d\x4e\x77\x05\x1c\xfb\x3c\x16\xcf\x89\x51\x2b\x02\x28\x7f\xbe\x38\xf5\x1c\xdb\x40\x50\xc3\xfc\xe9\xe2\xd1\xff\x34\xf8\x7a\x0c\xd1\xa0\x02\x84\xda\xa7\x05\x27\xa2\xca\x21\x10\x9d\xc6\x0e\xe2\x90\x38\x97\xf3\x3c\x64\xa8\xd3\x50\x41\xea\x72\x9e\xf6\x85\x53\x08\xf4\xb4\xeb\xfb\x73\x9a\x55\xc4\x06\xc5\xe7\xbc\x6c\x48\x09\xf1\xfe\xbc\x8c\xa7\xe7\x16\x77\xde\x29\x8a\x85\x9e\xd7\x1a\x57\x74\x62\xb1\x38\x87\xe5\xe4\x54\x60\x30\x48\xb5\x53\xc0\x3f\x30\xe3\xe7\x25\x1f\x3f\x4c\xe8\x5a\x3b\x20\x1a\xb8\xd7\x20\x62\xfa\x56\xd2\xa7\xc9\x0f\x9a\x2d\xd2\x57\x9f\x4e\xfa\x94\x69\xc2\x97\x5b\x08\x61\xa7\x31\x79\xa4\x75\x3e\x1d\xbc\x43\x60\xf7\xa9\xe0\x1d\xb2\x63\x9d\x16\x9c\x49\xa7\x7c\xde\xf6\x9c\x30\x59\x2b\x0d\x14\xb7\xb2\xa3\x8b\x89\x2a\x3d\x1d\xbe\x43\xbc\xf9\xf9\x58\xcb\x08\x6d\xe9\x7c\x16\x69\x41\xc9\xb3\x48\xa3\x51\x83\x48\x27\x6d\x28\x60\x81\xbb\xc7\x89\x9f\xb8\xa5\x65\x38\xfd\x44\x36\x9d\x2b\x13\xd4\xe4\x0b\x63\xc9\x61\xc0\xef\x1a\x78\x6c\x8c\xe5\x53\x67\x3b\xae\x18\x66\x76\x9f\xd3\x3a\x01\x8a\x39\x9d\xd6\x09\x70\xd8\xf9\xfa\xd6\x8d\x71\x4b\x0e\x2e\x60\x77\xae\xcd\x8a\x45\x58\x2d\x2e\x5b\x24\x41\xa0\x5d\x2b\xc1\x52\x30\xf1\xcb\x16\x49\x90\x73\x97\x25\x61\x80\x71\x97\x4d\x94\x78\x44\xae\x6d\x01\x68\x79\xc3\xce\xc0\xb8\x2a\x2e\x9b\x28\xc1\x29\x5d\x12\x76\x31\xdb\x5f\x16\x76\xf1\xf7\x5f\x92\x6d\x6b\x61\xe4\xff\x44\xd9\xa0\x4d\xd1\x37\x58\xfa\x2f\x5b\x28\x81\x10\x5c\x12\x6d\xdb\x5e\x69\x62\x91\x16\xc3\x92\x05\x72\x00\xa6\xbb\x76\x47\x65\x87\x54\x78\xed\xd6\x37\x63\xcf\x5e\x32\x38\xf6\xcf\x7c\x25\xe3\x3d\x82\x8b\x5c\xc9\xb6\xa5\xcc\x0f\x0e\x70\xcf\x7c\x62\x5b\x52\xdc\xf0\x57\xb2\x2d\x89\x2f\x96\xc6\xcf\x17\xa7\xbf\x88\xf9\x5b\xe1\xe3\x71\xd9\x5c\x82\x01\x8e\x8d\x26\x1f\xab\x2b\x41\x89\x6d\x85\x3d\xae\xab\x2b\x1b\x90\x1c\xf3\xe9\x88\x71\xf4\xdc\x2b\x1b\x21\x1b\x07\xe7\xca\xf6\xae\xc6\xb6\xbf\x5c\xc2\xa5\xec\xfc\x60\x5b\x52\x9c\xe8\xcb\xc9\x90\x08\xab\xbc\x6c\x1c\x24\x1d\xe0\x25\x11\xb8\x12\x37\x7e\x09\x1a\x48\xad\xe7\x2b\xdb\x28\x16\x07\xfa\xb2\x6d\x30\xcd\x3f\x95\x13\xbc\x6c\x38\xec\x8c\xc8\x16\xb3\x90\xe1\x2e\x57\x9d\x04\xd6\x79\xd9\x38\x48\x62\x86\xab\x2c\xba\x79\x63\xe5\xe7\x8d\x21\xad\x5c\x47\x21\xa2\x5d\xf2\xa8\x4f\xf2\x03\x5c\xcb\x1a\x18\x72\xe0\x25\x8f\xfa\x68\xbc\x70\xd8\xa8\xc6\x0b\xce\xf7\xb3\xd1\xeb\xe5\x1f\x18\x97\x4b\xaa\x31\xdb\x36\x0f\x96\x8d\x71\x2d\x01\x2c\x3e\xa9\x0b\xeb\x1b\xdd\x5a\xce\x26\xb7\xfc\x25\x9f\x7a\x2d\x9c\x09\x09\xde\xc0\xe5\x2f\x0b\xde\x25\xd8\xe7\x55\x65\x30\xf9\x7c\x20\xfb\xe1\xa7\xcf\xe1\x2e\x62\x97\x2c\x41\x7c\xa3\x49\x73\xcb\xc6\x0f\x26\x84\xad\xb7\xec\x87\x31\x4a\xdb\x0f\x89\x34\xbf\x9c\x80\x89\x6c\xe8\x57\x5b\xa1\x57\x31\x9f\xcd\xa1\x56\xac\x62\x33\xa0\x9e\x9d\x60\x0b\x22\x78\xee\x6b\x25\x54\x82\x83\xac\x84\x4a\xb0\xbe\x95\x2f\x89\x85\x17\x8a\xb0\x21\x05\x5e\x2b\x61\xd2\xe0\x93\x95\x30\x29\x7a\xf9\x97\x30\x29\x46\xda\x6d\xb8\xfc\xb4\x71\xf8\x07\xda\x70\xbe\xc4\x9d\x36\x2e\xe3\x03\x82\xfc\x47\x91\xf5\x9c\xaa\x47\x15\xa3\x60\x7d\x8f\x02\xc7\x43\x44\xbe\x84\x21\x03\x4a\x74\x3d\x8a\x01\xfd\x7c\x2f\xc3\x66\x08\xdd\xd7\x2b\xb4\x55\x5c\x45\xd7\xab\x5c\x33\xdc\x2b\xaf\x0b\x92\xb0\xa4\xc6\xb1\xc3\xbe\x5f\x6b\x4a\x6c\xbc\xd7\xfe\x64\x0e\xc0\xc2\x84\xb1\x09\xec\xc3\xc3\xaa\x73\xbd\x4b\x75\x8a\x51\xbe\x76\x30\xb3\x2d\x1c\x9a\x8a\x97\xef\x36\x8e\x0c\xdb\xd1\xbd\x2c\x43\xb1\x3e\xb7\x70\x64\x98\x74\x6f\x79\xf5\x76\x44\xf0\x5b\x77\xe8\x8e\xbe\x7c\xff\xee\xd0\x02\x02\xe0\xde\x16\x69\x34\x39\xfc\xc5\x1e\x3f\xc8\xc5\x1c\x46\xb1\x5b\xf7\x63\x2d\xc1\xdf\xef\x15\x8c\x1a\x26\x8f\x7b\x97\x43\x98\x3e\x9c\xbc\x9e\x38\x81\x7b\x57\xf0\x75\x5c\x32\xb7\xec\x38\x1f\xe1\xe0\xde\xad\x15\xc5\xde\xbd\x1d\x9e\x5a\x63\x89\x6e\x87\xa7\x82\x67\xbe\x0d\x0f\x63\x98\x8e\x46\xad\x71\xa9\xdc\x4e\x5f\x5f\x2b\x6f\xd8\x2a\x1c\xa6\x83\x3b\x2d\x2d\x29\x06\x6e\x7f\x5c\x09\xff\xd1\x9d\xac\x26\x85\x43\xe2\x96\xfd\x88\x78\xe9\x3b\x2d\x2d\x29\x86\x95\x14\xf8\x97\x79\xb6\xbd\x88\x3e\x17\x1d\x31\xdd\xf6\xa4\x61\x51\xba\xb3\x35\xa0\x30\x23\xdf\x76\x94\x01\x74\xbb\x75\xf9\x25\x10\xed\x77\x76\x92\x76\x08\xc9\x4b\xed\xe4\x87\xee\x36\xf8\xc1\x4a\xce\xdf\x7c\x54\xb7\xc1\x62\x64\xac\xbd\x75\x11\x92\x70\xf9\xce\x8b\x8a\x58\x72\x57\x54\xc6\xb7\x7e\x67\xb9\xb0\x43\x31\xbb\xcb\x22\x33\x96\xc7\x58\x31\xa2\x05\x6e\xe7\x54\x21\x64\xf8\x2e\x56\xdd\xc2\x1e\x78\x17\xdb\x2b\x42\xe5\xb9\x97\x75\x28\x2e\xbf\x7b\x59\x87\x38\x41\xcb\x3a\x14\x8c\xf5\xd6\xbd\xf4\x29\x92\x7c\x17\xab\x4d\x6c\xce\xea\x1a\xbd\x9d\x1f\xe4\x3c\xa0\xcd\xea\x08\xb8\x38\xea\xb7\xb1\x5f\x00\x85\xee\x6a\x3d\x6a\xf2\x83\xf5\xa8\xe0\xab\xb7\xd1\xf3\x78\xba\xee\x6a\x85\x0f\xee\x50\x97\xc2\x17\x6b\x50\x4d\x6c\x70\xa9\xbb\x2e\x62\xf9\xc1\xc4\x0e\x06\x66\xa1\x9c\x26\x1e\x0b\x0b\xbc\x60\xe2\x83\x49\xdd\xcd\x3a\x63\x8c\xd3\x81\xaf\xc1\xfe\xef\xe6\x8d\x15\x62\xd6\xad\x8b\x2a\xe1\x61\xb8\x9b\x75\xaf\x50\xf1\x6f\xb9\xba\x88\xf8\xbd\xe5\xea\x4a\x60\x59\x6f\x65\x7e\xc7\xf5\x75\xeb\xaa\xfb\x64\xfb\xbf\x75\xd5\xf5\xc4\xf6\x53\xee\xc0\x84\xc0\x7d\xcb\x2e\x95\x3e\xab\xda\xad\x8b\xf1\x89\x92\x07\x92\x72\xf7\xd6\x5d\x98\xf0\x4f\xdf\xca\x75\x97\x88\xfb\xbf\xbb\x29\x0b\x69\xe3\xee\x8b\xb2\x18\x78\x37\x25\xf0\x0f\x17\x4e\xde\x13\x6d\xdc\x6e\x83\x81\xda\x96\xc3\x31\xe8\x8b\x94\xf8\xc1\xa9\xde\x89\x35\xbd\xc7\x52\x2b\xa3\x0d\xd9\xa5\x12\x7e\xf1\x7b\x38\x71\x2f\xa7\x51\x31\xb1\x89\x8c\x04\xf7\xb0\x9e\x09\x93\xb1\xa1\x8a\x80\xa1\x7b\x98\xfc\x4f\x1b\x8b\x7c\x7e\x10\x88\x02\xc6\x35\x96\x4e\x1d\xd3\x31\x2d\xbd\xc2\x3d\x9d\x96\x1d\x30\xd2\x2d\xab\x53\xff\x6c\xf2\x69\x45\x09\x1e\x3d\xad\x03\x86\x05\xe2\x9e\x56\x94\x42\x68\xbe\xa7\x75\x40\xae\x8a\xb9\x74\x40\x3e\xb1\xa7\xae\xd3\xad\x75\x40\x6e\xb0\x69\x7c\x43\x63\xe8\xc6\x37\xc0\xa6\x6d\xb9\xc2\x65\x75\x3b\x37\x3b\xd8\xbc\xfb\x58\xd4\xc6\x2a\xd8\x72\x05\xe6\xec\xb6\x71\x0a\xcc\xd9\xed\xe4\xec\x38\xc6\xee\x63\x91\x1f\xc4\x1d\xd6\x62\x38\x2c\x36\x4e\xe1\x92\xbd\x9d\x7a\x1d\xcf\xd8\xed\x58\x59\x50\x65\xf7\x61\x83\xe2\xa7\x17\x2b\x68\x95\x36\xac\x49\x72\xfd\x1e\xf6\x5c\x46\x13\xa7\xf5\x46\xae\xb9\xd3\x26\x70\xe6\xe7\xb4\x22\xc9\xa4\x2b\xa5\xcd\x60\xb7\x9c\x76\xe6\x54\x7e\xb0\x33\x07\x61\x46\x01\x23\x79\xe7\x4a\x97\xef\x78\xb0\xf1\x4f\x6b\x9a\xe5\x4f\xca\xd5\x7d\xae\x7a\xc8\x0c\xd1\x16\x1c\x18\xbb\xab\x3c\xe3\x78\xbb\x6d\x31\xc3\xa9\x78\xcb\x6f\xdc\x3f\xec\xf0\xf2\x44\x84\xec\x79\x5f\x72\xd9\xc2\x56\x5c\xf7\x79\x0f\x61\xf3\x76\xdd\xe7\x0f\xc7\xbc\x3c\x11\x85\x4e\x4c\x77\xe1\x0d\xe3\x7c\x43\x20\xbe\x05\x67\xec\xe4\x0e\xbe\x2f\xfb\x66\x0a\xe3\x3a\xad\xdc\xf2\xc6\x5a\x63\xc6\xe1\x35\x66\x6b\x5d\xa6\xbe\x32\x74\xc3\x56\xc2\x32\x72\xdb\x5f\x0d\xec\xec\x56\xca\xbe\x8c\xdd\xf2\xbe\xad\xa1\x21\x6e\x2a\xc2\x76\x70\xd2\x5c\x73\x8c\x88\x9d\xdb\x2e\x6d\x92\xbf\xdd\xb7\xd5\x72\xb8\xaa\x32\xb6\x53\x5b\xf1\xbe\xad\xa2\xb1\x0d\x6e\x43\x3c\x98\xf3\xdb\xea\x69\x28\x9f\xf7\xbd\x66\x83\x37\x5c\xf1\x1b\x96\x79\x3b\x8b\x2e\xc2\xc6\xed\x2c\xba\x48\xd2\x4a\xc6\x93\xb1\xfa\xde\x8e\xd2\x45\x5f\xbd\x1f\xab\x75\x3b\x6f\x58\xad\xfb\x7c\x52\xfc\x46\x0c\xfd\x11\x2e\x84\x5e\x1f\xeb\x7d\x9f\x1f\x44\x6c\x81\x2f\x3f\x8b\xd8\x58\xb6\xc7\xaa\xf7\xe7\x07\xab\xde\x89\x1f\xac\x7a\x73\x93\x3d\xd6\x58\x99\x73\xd5\x19\xcb\x64\x19\xbe\x5f\xab\xac\x5c\xc1\xef\xa2\x2d\x26\xec\x35\x6d\x2c\xe4\x6b\xda\xb8\x61\xdf\xb5\xb2\xd1\xed\xbb\x88\x0b\x5a\x5e\x2b\xb5\xac\xc2\x6b\x6a\x59\xc9\x77\xd9\x15\x62\x3e\x5e\x83\xaf\xd8\xf9\xaf\xd5\x5e\x36\xfa\xbb\xd4\x71\x3e\x31\x82\x3d\x76\xc3\xb3\x2d\xf5\xbb\xc6\x0f\xa6\x25\xf4\xac\x67\xb3\xda\x1b\xdd\x3e\x9b\xd5\xde\xd0\xe6\x9e\x6d\x29\xe8\x33\x7e\x58\x0a\x7a\x8f\x1f\x9c\xfb\x24\x36\xd0\x23\xcb\x63\x27\x5b\xf7\x23\xcb\x63\x46\x21\x79\x36\x43\x7a\x06\xdd\x9a\xb8\xc6\x27\x96\x0e\xe2\x8e\x7d\x36\x13\x17\x37\xe8\xb3\x1b\xac\x14\x8c\xf8\xd9\xad\xf5\xc7\xa5\xfb\xec\x8e\x1d\x8c\xfb\xf1\xd9\xad\xf5\x4f\x3e\x31\xf9\x8c\xd4\x8e\x77\xd2\x9b\x3c\xd2\xcf\x32\x1e\xa7\x67\x77\x9e\xea\x10\x7d\x9e\x7d\x01\x9a\x82\x38\x79\xe2\xf1\x2d\x3e\xd2\xd7\x50\x98\x1f\x67\xc1\x24\xe3\xf6\x63\x73\x26\x3a\xc6\xa3\xf8\x1e\xf4\xe5\xc7\xe6\x4d\x30\x3a\x8f\x33\xf4\x15\x9e\xa7\xac\xae\xd1\xa5\x4d\x13\xd8\x19\x1f\xc9\x67\x1d\xa3\xd4\xf3\x13\xb6\x32\x79\xcd\x1e\xa5\xe4\x23\xad\xe3\xb3\x52\xf2\xd1\xc5\x50\x38\x38\x2d\xba\xaa\x0e\xbe\xa2\x67\xac\xb0\xc8\x98\xba\x61\x4b\xef\xfe\xa7\x04\xb1\xcf\xf2\x06\x86\x20\xf2\xb8\xa0\x0e\xba\xf3\x63\x29\x0b\x23\xce\x33\xac\x8a\xf1\xbc\x34\x1c\x9a\x58\xba\x19\x54\x39\xdb\x05\x7b\x77\xda\xe3\x1d\x57\xe5\xe3\x82\x3a\xc0\x1e\x9e\x69\x69\x99\x2f\x94\x78\x2c\xae\xea\xc7\x72\x1b\x90\x85\x47\xee\xc3\x42\x5e\xe7\x47\x82\x5c\x83\xe3\x3e\xaa\xb0\xf3\x59\xee\xe9\x94\x11\x8d\x3e\x2c\xd9\x0c\x9a\xb0\x64\x13\x17\xf8\xb3\xe4\x38\x76\xc4\xf4\xad\xc7\x5e\x9f\x32\x3d\x33\x39\xd3\x07\x8a\x05\x9d\x32\xde\xb1\xb1\x0f\x9f\xa7\x8d\x1f\xd6\x79\x8a\xd9\x3b\xec\xb7\x60\xd3\x1c\xc6\x90\x40\xea\xe1\x7d\xc9\x17\x4a\xb4\xdd\x43\x7a\x7a\x56\x11\x58\xce\xa8\xa4\xba\x96\x3e\x9f\xc8\x08\xc3\x82\x48\xa8\x2b\x64\xa1\x7a\x2c\xd4\xa1\xe1\x3f\xc7\x0a\x8f\xe3\x0d\x1b\x44\x3a\xc3\xb2\x41\xa4\xd3\xa8\x5d\x32\x21\x89\x3c\xa7\x75\xf2\xd0\xbc\x9e\x55\x38\x36\x14\xc6\xc7\x89\x0a\x43\x66\x7b\x4e\x21\x72\x33\xcf\xeb\x36\xa7\x49\x73\x0e\xf6\xef\x4f\x88\xcb\xa4\x0e\x7c\x54\xf5\x15\xc4\xf8\xf3\x4f\x4a\x8b\xad\xf5\x93\xd2\x0a\xd6\xbe\xc7\xe5\x74\x80\x07\x3c\x06\xf7\x81\x22\x79\x2e\xd7\xc2\x0a\x7b\xde\x73\xf9\x06\x08\xbd\xec\xf9\x49\x69\x99\x3c\x15\x8f\x84\xb4\x0e\x3c\xea\x71\x7d\x1d\xcc\x04\x8f\x84\xb4\xde\xd9\x6a\x97\x0d\x28\x1c\x89\x4b\xa1\x56\x8d\x4e\x1d\xfb\xc3\x30\x4d\x07\x0d\xd8\x20\x12\x5d\x5a\xda\x2a\xa1\xc5\x3d\x3f\x69\x2b\x93\x1b\xe1\xb9\x17\xaf\x89\x51\x2b\x61\x32\x18\x91\x47\xb5\x6d\x36\x16\xe7\x5e\xac\x22\x56\xef\x36\xab\xe0\x59\x8e\x6a\xa6\x61\x25\x20\xe4\x96\x7b\xa4\xfd\x33\x0b\x8f\x63\xbf\xc2\xd2\xf1\xd8\x81\x09\x76\xe3\xb1\x03\x13\xf7\xc3\x63\x07\x26\x08\x91\xc7\xa5\x6b\xc0\x7f\x3c\xf2\x60\x62\x30\x78\x2c\xe1\xec\x9c\x8e\x67\x89\xae\x74\xb2\x12\x10\xd3\x89\xf4\x15\xe6\xd2\xf2\xcc\x87\xd2\xe5\xd1\xe4\xfa\x79\xed\x39\xe0\x05\xdf\xf8\xf4\x61\xe9\x85\xc8\x85\xe7\x95\xeb\x00\x4a\x5f\x97\x8b\xe7\x7e\x7a\x1d\x72\xcf\x0b\x86\xad\x84\xca\xf8\xb8\x8e\x0d\x36\xcb\xc7\x70\x42\xf0\x50\x8f\xb3\x17\x72\x38\x5e\x97\xce\x80\x05\xba\x8e\x0d\x6b\xfc\xba\x8e\x0d\x9e\x98\xd7\xf0\x42\xee\xb8\x77\xf9\x59\x63\x5c\xef\x92\x65\xe2\x9e\x7c\x37\x51\x56\xff\x54\x5c\xf7\x75\x4d\x1b\x92\x34\xbc\x4b\xf0\x69\xfc\x70\x78\xe6\x72\xfc\xf0\xe8\xd2\x8c\xe7\x95\xac\x30\x14\xd2\xd7\x49\x55\x62\xc1\x5f\xd9\x8b\xf1\x86\xbc\xae\x2c\x83\x5b\xe7\x95\x3c\x52\x88\xea\x7f\x77\xab\x4c\x71\x6f\xbe\x8a\xf0\x18\xb1\xb5\xdf\x7d\xc9\x02\x41\xf4\xbe\x76\x59\x0c\xdb\xfe\x55\xec\xdc\xef\x6e\x87\x4a\x48\xc9\x6f\xda\x34\xcc\x68\xd3\xd1\x1a\x08\x20\xaf\xa3\x35\xf0\x6c\xbc\x8e\xd6\xe0\x88\xbe\x8e\xd6\xc0\xbd\xf4\xca\x9d\xda\x40\xcd\xbf\x8a\xd6\xe8\xf8\xb8\x5f\x67\x24\x44\x6a\x7e\x0d\x39\x44\x48\x7e\x1d\xbe\x81\x6b\xed\x95\x4b\x36\xe1\x8d\x7b\x93\x92\x7f\x4c\xda\xb4\x19\x2a\xd3\x84\xcd\x1b\x71\xd2\xdf\xa4\x44\x3c\x71\x9f\xbf\xb6\x4a\x23\xcf\xbd\xff\x92\x7a\xc7\x17\xf6\xd1\x92\x41\xf5\xb5\x8f\x96\x2c\xb7\x6f\x96\x49\x20\x4c\x17\x6f\x5e\x1a\x03\x6d\x7a\x67\x86\xd8\xf1\xda\x45\x5b\x3e\xc3\xb0\xc6\x90\xe9\xc4\x96\x69\x36\x57\x56\x16\x61\xa6\x2f\xaf\x6b\x30\xa6\x2f\x9b\xe9\x45\xa7\x65\x8d\x3b\xbe\x58\x89\x11\xe3\x3e\x79\x8b\xd1\x0f\xa1\x40\xbc\xc5\xc2\x4d\x30\x8b\xd7\x3e\x56\xb2\x12\xbc\x4e\x95\x88\x1c\xf7\xda\xc7\x0a\xda\xe1\x75\xc4\x05\x62\xc4\x5b\x0e\x0d\x3c\x08\x51\x0d\xd4\xcf\xec\xd9\x72\x8d\xd2\xf6\x96\xb5\x88\x74\x6a\xb6\x18\x17\xfc\xeb\x08\x0c\xac\x47\xaf\x4c\xd9\xa3\x57\x7e\x50\x88\x62\xe1\x59\x88\x36\x6a\xd8\xbc\x75\xed\xe0\x18\x66\x5d\x3b\x38\x7a\x5d\x41\xc8\xcc\x4e\x35\xe4\x82\x25\xb1\x5d\x1a\x14\xe1\xab\xa8\xe4\xb1\xd3\x89\xad\x6d\x93\x4e\xd6\x76\xa4\x09\x6f\xc7\x78\x5e\x79\x5e\xd8\xd1\xb2\x4b\xc3\x49\x5f\x47\x29\x93\x53\xf3\x55\xd1\x1b\x84\x84\x77\x25\x86\xe9\x34\x69\xbb\x0c\x27\x71\xd5\x2c\xfd\xfc\x20\x70\x31\x6c\xcb\x31\x1a\xe4\x9f\x7e\x65\xb8\xa6\x0c\xf0\xdb\x7d\xa5\x87\x8c\xf0\xda\x25\x5b\x38\x77\x2e\x61\xc3\xa2\xbb\xfc\x0c\xbb\x77\x95\x9f\x81\x6d\xd9\xff\x8a\x54\xf7\x5a\xc9\x41\xaa\x7b\xbb\xd5\x4c\x0e\xa6\x4c\xcc\x19\x99\xf7\x95\x89\x79\x90\xd5\xf7\x1d\x82\xdf\xc3\xb6\x16\xc0\x90\x93\xfa\x53\x10\x2a\xea\xf0\x6b\xfd\x00\x07\xe9\x3b\x6d\x0f\xfc\x7c\xe1\xb3\x1e\x94\x4f\x9f\xf5\xc4\x0b\xcd\xa9\x41\xf9\x41\xb0\x84\xed\xd3\xa6\x8f\x0c\x9b\x73\xda\x0c\xf6\x37\x70\xc5\x3b\x15\x36\x02\xd5\xd3\xe8\x18\x58\xdc\x82\x1a\xd2\xfe\xb1\x38\x01\x3f\x2c\xc5\x38\xc6\x28\x73\x6c\x4b\x5c\xbf\x16\xed\xc9\x77\xfc\x4a\xb4\x1f\xd4\x80\x7b\x0f\xa7\x0f\x62\xee\x64\xb0\x1d\xc4\xd2\xbd\x92\xed\x07\x51\x6c\xaf\x64\xfb\x41\x2c\xdd\x2b\xd9\x7e\x10\x8c\xf2\x4a\x72\x1f\x9f\x2b\x55\x92\x7b\x41\x36\x7c\x9d\xc0\x10\x54\xe3\xeb\xca\x25\x08\x1f\xaf\x2c\xb6\x73\xe3\xd6\xbd\x8c\x0b\x09\x01\xf4\x95\x88\x3b\x31\x76\xbe\xb2\x43\x4e\x0c\xa6\xef\xe5\xfc\xae\x61\xd4\x7d\x65\x87\x9c\x98\x2e\x5f\x49\xb5\x23\x0c\x80\xff\x67\xec\x4f\x72\x75\x89\x61\xee\x00\x6c\x9e\x55\xdc\x1d\x44\xbd\xa8\xc9\x9b\x64\x9c\xec\xa1\x1a\x56\xe0\x81\xed\x1f\x7f\xec\xfd\x07\xe2\x11\x0f\xef\x33\x6c\xf8\x0d\x2e\xf0\x5d\xa9\x4a\xa5\x96\x62\x7b\xa8\x69\x4b\xf1\x85\x48\xb6\x9a\xf6\x05\x58\x68\xf9\xd5\xb4\x89\xc5\x74\x8b\x9e\xa6\x7d\x6c\x69\xa9\xd7\x34\xeb\x7e\xdb\xa9\x91\x26\x2c\x08\xed\xdd\x9a\x6e\x50\x38\x57\x2b\x68\x7a\xe0\x47\x35\xd8\xa2\x69\xfa\x84\x60\x5a\x9a\xbe\xfd\x09\xc2\x23\x6a\x32\xbe\x4d\x26\x3f\x9a\x8d\xe5\x11\x66\x6e\xd5\xbc\x6f\xcb\xc1\x00\x40\xcd\xb0\xbf\xd2\xc1\x53\x33\x6e\x0c\x02\x3b\x6a\xde\xd4\x5e\xa8\x82\xd2\x6c\xc4\x3c\x50\x1b\x35\xf7\x03\xe3\xe8\xbd\xc8\x03\xf2\xb2\xf0\x15\xb3\xb4\xc9\xf4\x2b\x45\xb3\x19\xbd\x64\x3a\x6d\xd0\xbc\x4f\x65\x63\x8e\x5a\xcd\xd7\xc1\xa6\xf3\x91\xe6\xfb\xda\x23\x5d\x1c\xd8\x8d\xb9\x99\x2c\x80\xd8\x33\x27\x07\x62\x2b\x5e\x32\x3f\x81\xe8\xf0\xe9\x24\x4e\x4b\x42\x76\xa6\x15\x05\x19\x4f\xf8\xc8\xca\xe6\x3d\x06\x41\x02\xb5\x6c\xde\x23\x72\xb1\x69\xd9\x9c\x45\x2d\x4e\x23\xb5\x74\xcc\xf6\x64\xc1\x9e\x89\x88\x44\xd4\x72\x26\x22\x0a\x90\xa7\x98\x76\x38\x2d\xd7\xe9\xc3\x62\x01\xf2\xc9\x75\xf6\xf2\xda\x6b\x4e\xc8\x3d\x2d\x38\x61\xd3\xbd\x69\xb5\x6c\xb1\x94\x3e\x53\x5a\xb6\x80\x31\x53\x54\x7f\x98\x7b\x17\x07\xb5\x26\x4c\x8c\x4b\x90\x8a\x04\xfd\xc2\x5c\xc9\x5a\xeb\xbe\xdf\x89\xe4\xa9\x15\x81\xa6\x14\x73\x14\xe9\xda\xf3\xec\x7c\x03\xe9\xb7\x12\x27\x1b\x69\xd0\x25\x71\x6e\x2d\xcb\x39\xfd\xb6\x14\x29\xcc\x25\x71\xea\x2c\xc3\x78\x2b\x89\xbd\x1c\x96\x86\x9e\xa7\x05\x89\xbb\x25\x71\x2a\x91\xcd\x5a\x12\x67\x0e\xa9\xa9\x79\x77\x68\x9d\x96\xfa\xde\xb5\xcf\x6a\x89\x95\xb3\xc4\xcc\x20\x89\xb1\xa4\x18\xe7\x85\x4e\x09\x3f\x6a\xc9\x01\x6a\x3c\x60\x9b\xae\xd1\x0f\x4f\x91\xcb\x56\x52\x4c\xae\xd9\x2e\x24\xc5\xe4\xbe\xa7\x4d\xce\x8c\x59\x11\x1a\xb5\xf5\x5a\x01\xa5\x90\x63\x64\xef\xf3\xe7\x47\x24\xa6\x46\xcf\x47\xf8\x55\xa8\x9a\xe9\x16\xab\x48\x92\x29\xc4\x28\x55\x24\xc9\x6c\x8c\x2c\x51\x24\xc9\x14\xa2\x6e\x6a\x3b\x8b\xbe\xfe\x05\x44\x49\x2d\x3f\x66\x63\x00\xa1\x5a\x7a\xcc\x3c\xe8\xf9\xac\xc8\x5c\x29\x44\xbb\x54\xe4\x8c\x14\xc2\xbc\x69\x6b\x58\x2f\x1e\xe9\x66\x6c\x65\xa3\x35\x40\xdb\x66\x2b\x0b\x01\xb8\xd4\xb2\x03\xee\x37\x7c\x2e\x1b\xf2\x9a\xb8\xa4\xa4\x48\x70\xd7\x88\x14\xa8\xcd\x38\x0c\x61\xd2\x48\x45\x7a\xba\x96\x48\xb3\x9b\x9c\x6e\x71\x1e\x70\x00\x99\xd0\x51\xdb\x83\xf4\x0b\x7c\xe0\xbd\x7e\xe3\x7c\x6a\x37\xcd\xb7\x30\xd5\xa5\xf6\x7c\x12\x1c\xfb\x48\x7b\x39\x05\x95\x05\xf3\x2f\xc3\x9a\x76\x13\x94\x84\x1c\x85\xf6\xd6\xff\x12\x1b\xb5\x1b\x83\x1c\x4c\xa1\x76\x00\x3d\x07\xe5\xe8\xb8\x9c\xe3\x7a\x42\xc2\x2f\x89\xdb\xc1\xb2\x54\x31\x98\x4b\x2d\x49\x15\xe3\xcf\xb4\x9b\xee\x22\x72\xd2\x2b\xb2\x3f\x25\x7a\x17\xeb\x48\xf2\x57\xf2\x7c\x1d\xa6\x6c\x17\x22\x14\xaa\xa5\x0a\xca\xc2\x00\x10\xb5\x4c\x39\xbb\xc0\x27\x67\x08\x3a\xe5\x76\x25\x45\x16\x13\x21\x32\x90\x0e\x70\x1d\xc4\x12\xd2\x01\x9e\x82\x81\xef\x3a\x9e\xf3\xca\x60\xc1\xf8\xf3\x33\x29\xfe\xea\xf8\x4e\x13\x3e\xf2\x09\x40\x50\x4a\xfe\x3a\xcf\x84\xbb\x4c\xa3\x13\xf1\x43\x8c\x54\x57\x03\x11\xcf\xc2\x58\x76\x05\x68\xb8\x30\xdc\x5e\x81\x45\x2c\x99\xfc\x81\x61\xf4\x0e\xca\x30\x3a\xbf\xbf\xb1\xda\xd5\x10\x5c\x7f\x21\x9b\x2b\xa0\x4d\x03\x2d\x48\x0d\x7e\x71\x17\xf8\x58\xc5\x94\xf2\x11\x41\xa9\x82\x68\x17\x4a\x35\x7a\x40\x8d\x18\xec\xa6\x6b\xc0\xf5\x97\x5b\x65\xc1\x09\x85\xee\x20\xba\x26\x30\x6b\xb8\x33\x96\x39\x6a\x74\xfa\x3f\xe8\x42\x1a\x47\x46\xca\xea\x12\x4c\xc7\xaf\x02\xc0\x80\x72\xed\x97\x60\x4a\x79\x51\x2d\xdb\xa1\x93\x10\x1b\xba\x04\x1d\xe3\xee\x58\x82\xd1\xfe\x7a\xe2\x81\x95\xa3\xb0\x00\x87\x8b\x0b\xb7\x6c\xf8\x9d\x9e\x2c\xba\x40\xc5\x69\xce\xd7\x65\xec\x7a\xa4\xea\x55\xc3\x74\xda\x4f\xb0\xd1\x0b\xae\x1b\xd1\xe8\xd9\x61\x9c\xe4\x75\x34\xd2\xd1\xe8\x0d\x6b\x3a\x6f\x3c\x83\x2b\xca\x91\x7f\x4d\xd7\x01\xc4\xe6\x8e\x5a\x66\xa2\x0f\x30\x46\x35\x6c\xa1\x1c\x38\x5b\x0a\x70\x21\x61\x26\x2d\x05\xb8\x50\x20\x73\x29\xc0\x85\x24\x93\xd8\x00\xea\x27\x80\x9d\x14\x50\x3f\x12\xf7\x24\xa0\x7e\x26\xa3\x0c\xd5\xa0\x7c\xf6\x9c\xb2\xeb\xef\xf9\x0a\x5f\x31\x4b\xb7\x94\xd8\x1f\x2f\xa6\xb0\xc4\x2b\x03\x4f\x44\xa3\x13\x5f\xe1\x68\x5f\xa8\xb6\xb9\x71\x81\xa4\x33\x19\xdc\xa8\x00\xbd\x99\x0c\xb7\x51\x40\xd6\x4c\x86\xec\x28\xd0\x65\x02\x24\x43\xd7\x87\x29\x2c\xfc\x2c\x78\x17\x06\x72\x29\xa0\x60\x8c\x7f\xfa\x87\x5b\xeb\x4a\x58\x23\x57\x1f\x2a\x00\x5a\xc2\x08\xa0\x00\x68\x11\x2a\x11\xf4\xb2\x8b\x73\xd2\xc1\x56\x2f\x5c\x9c\x85\x9b\x07\x10\x2e\x93\x3e\xbb\x0a\xbc\x95\xd0\x0a\x2b\xc0\x53\x26\xe3\x6f\x14\x48\x28\xa1\xa2\xd2\xab\xa0\x63\xbc\x10\x80\xfe\x31\x19\xb5\xa2\xc0\xf6\x98\x8c\x87\x50\x60\x6d\x4c\xc6\x37\x29\xa0\x34\x66\x30\x27\x86\x72\xb1\x9f\xf0\x25\x01\x88\x45\x28\x12\xf4\xea\x50\x2d\xf3\xd8\x03\xd5\x62\x52\x2d\xa0\x57\x47\x7e\x3b\x9e\xf2\xab\x9f\xaf\xc4\x13\x80\xbb\xe2\xa1\x06\xf0\xc5\x0c\xee\xff\x32\xf9\x60\x52\xc7\xa7\x06\x4a\xf1\x0b\x32\x4b\xaf\x39\xff\xb2\x8b\xe8\x05\x5e\xae\xc6\x3a\xdb\xcd\xde\x19\xbd\xa9\xd7\x61\x9c\x2b\xbb\x0e\xd2\xc1\x24\x0f\x7a\x81\x74\x10\x14\x48\x2f\xc1\x6e\xaa\x2c\x38\x2e\x5c\x12\x05\xd0\x96\xf1\x94\x5f\x87\x96\x90\xcf\xb9\xd6\xf8\x0b\xc9\x51\xaf\xf5\x37\x5a\xa1\x5e\x26\xfa\x07\x4c\xa0\x5e\x17\x66\x3d\xc6\x72\xe5\xbf\x42\x55\xf5\x02\x8b\x4f\x0d\xbf\x1a\xfc\xc5\xaf\xe0\x0d\xbd\x2e\xfd\xcb\xd9\x4c\x2f\x48\xd1\x74\x08\xd2\xeb\xfe\xdb\xdd\x47\x81\x77\x11\x06\x63\xbd\xee\xfe\x97\x95\x4d\x1d\x8c\x82\x0c\x32\x90\x24\x3a\xbd\xd7\xf5\xfa\x5f\x12\xf1\xea\x75\xc0\xce\x1a\xfb\x81\xab\xf8\xd7\x57\x1e\xac\x4b\xe3\x57\xc0\x11\x53\xcb\xaf\xd7\x83\xad\x1d\xab\xff\x9e\xcf\x72\xc6\xde\x33\x7c\xae\x2d\xf2\xff\xd2\x5d\x45\xaf\xf7\x74\x9d\x05\x8a\x82\xce\xb1\x98\x9d\x45\x5a\x1c\x31\x3d\x81\x3a\x1c\xdc\x07\x32\xc8\xfb\xea\x3a\xf4\x88\x17\x29\x40\x16\x66\x0d\xea\xf0\x9d\xaf\xf8\xe0\x6e\x88\x4e\x8d\xf3\x01\x84\x84\x3e\x49\x1d\x0c\x00\x61\x17\x78\xa3\xf7\x21\x39\xdc\x96\xc0\x0e\xe8\x21\xf6\xdf\x19\xfb\x94\xf7\x95\x21\x01\xec\x82\xca\x02\x5b\x17\xc2\xfd\xe9\x7d\x08\xca\x88\x02\xac\x0b\xcf\xfe\x0d\x68\xa5\x10\xeb\x0d\x1d\x60\x3f\xc1\xb1\x98\x2a\x5e\x88\xdd\xa0\x88\x89\x2f\xc1\xaa\xdd\xc8\xcb\x13\x32\xf7\x8d\xbc\x3c\xa4\xf9\x37\x92\x95\xd3\xb0\xa8\x08\x8a\xef\x21\x51\xdf\x90\x0b\xe9\xf2\xa2\x08\x8a\x17\x3a\xa3\xe8\x0d\x8a\x43\x85\x9d\x5a\x84\x7a\x8e\xec\xf3\x7a\x77\x50\x0b\x8a\x3f\x08\x17\x8f\x34\x45\x8a\x70\x71\xa1\x4e\x5b\xef\xa1\x7f\xc1\xd5\xe9\x6d\xf1\x24\x01\x7c\xa4\xf7\xc4\x67\x73\x14\x34\x3c\xc1\x29\xb5\x78\x12\x21\x22\xa2\x22\xf8\x7b\xd6\x58\xb8\x89\xcf\x92\x51\x45\xf4\xb7\xd0\x90\xaa\x88\xfe\x8e\x78\x32\x45\xf4\xb7\xf4\xfc\x2f\x58\x16\x8a\xd0\xf0\x88\x68\x53\x04\x6d\x87\x9f\xa1\x5a\xd0\xf6\xcc\x12\x0f\x4c\x3c\xc0\x61\x81\x4b\x23\x0a\xac\xde\xc6\xa5\x85\x01\x52\x6f\x41\xa7\x4b\xbc\x82\x4e\xc7\xb0\x90\x4f\x51\x62\x58\xe6\x84\x21\x44\xcd\xd3\x7b\x01\x9f\x92\x64\x12\x21\xd9\x42\xfc\x3a\x45\xc0\x75\x97\xf8\xca\x16\xbe\x9b\x90\x4a\xde\x27\x6f\x38\x2f\x2b\xc4\x47\x0b\x01\x7c\xf4\x46\xba\xc3\xc6\x2b\xe0\x86\x36\xb2\xff\x2a\x50\x14\x70\xd9\x2f\xf4\x3c\xda\x80\xce\x8d\xc0\x2a\x7a\x9b\xf2\xb1\x0b\xaf\xa2\xfb\xb6\x7c\xad\x71\xe4\xa1\x78\x62\x9c\xbc\xde\x00\x95\x14\x52\x4d\x44\x33\x4b\x8f\x02\x90\xd1\x1e\x54\x02\x64\x54\xc8\x32\x20\x14\xb9\x4b\xe7\xe8\x1f\x2c\x13\x49\x20\x62\x91\x43\x50\xb0\x58\xe4\xfd\x00\x87\x06\x46\xb0\xff\x6a\xf3\xfb\xf3\x23\x2b\x4e\x1a\xd4\x99\x3d\xbe\xf1\x62\xa8\x41\xab\xde\xf2\x97\x2b\x9d\x22\x9e\x59\x88\x5e\xa0\x88\x67\x0e\x80\x36\x45\x3c\xb3\x30\xd4\x5e\x2d\xb4\x58\x24\xba\xf5\x62\x19\x63\xfe\x4c\x0d\x17\x48\x41\x8a\x50\x63\x09\x35\x2a\x22\x8b\xa5\xc7\x47\x0c\x3f\x31\x5c\x33\xf5\xd6\x93\x53\x9e\x5f\xfd\xd0\x68\x90\x3b\x18\xcd\xe9\x4a\xa6\x0f\x28\x35\x4d\xbd\xfa\x6c\x4a\x1d\x59\xa9\xd4\x62\x7a\xc3\x7f\x40\x1f\xf0\x79\x34\x4e\x28\x02\x61\xfb\x22\xc9\xb0\x40\xd8\x29\xe4\xd9\x4e\xc8\x2a\x6d\xc3\x8a\xf0\x52\xa1\xfd\x4e\x11\x2c\x2a\x9d\x4c\x1c\x82\x43\xa5\x93\x89\x7b\xcc\xa2\x17\xa9\xce\xf4\x69\xe8\x06\xf9\xad\xc7\xd9\x3c\x8e\xcc\x28\x68\xa4\x32\x53\xc4\x2f\x46\x36\x34\x45\x30\xa2\xd0\xaa\xad\x27\x18\x91\xd8\x32\x6a\xc1\x88\xfb\x89\x28\x40\x28\x26\xb7\x2c\x82\x0b\x23\x54\x50\x9f\x8e\x0d\x48\xd5\xca\x63\x30\x1f\xc4\x36\x56\x0b\x36\xac\x35\x7a\x31\x8e\x48\xc9\x5e\x80\x6c\x33\x68\x5a\x11\x39\x28\x83\xd4\x11\x91\x83\x9d\xc1\xc9\x7a\xe2\xf1\xe8\xfe\xa5\x0f\x28\x22\x63\xb7\xf5\x11\x4c\x20\x77\xf9\x03\x19\x93\x31\x1b\xfa\x18\xa3\xd8\x19\xd0\xac\x0f\x18\x45\x06\x6d\xe8\xb3\xd0\x06\x09\xfb\x03\x36\x90\x2e\xf5\xfa\x40\xa4\xa4\xd7\x99\x3e\xc8\x63\x4f\xef\x3a\x7d\x8c\x0d\x14\x7a\x56\xe9\x83\x44\xf6\xb4\x7b\xe8\x73\xc1\xbc\x40\xb6\xe7\xb9\xce\x57\x38\x1f\x66\xa1\x09\xfd\xd7\x03\x31\x95\x49\x98\xf4\xb9\x30\x14\x1e\x8c\xc7\x98\x3e\x19\xe4\x69\x1e\x58\x0c\x46\x0c\x05\x87\x8b\xee\x07\x8a\xc8\x3d\x61\x1e\x02\x45\x60\x9e\xd0\x2c\xad\x2f\x20\x9a\x08\x74\xaf\x2f\xd4\x18\xe3\x9f\x32\x80\xe8\x9b\xe0\xee\xc5\x3e\x59\xcc\xdd\x2e\x18\x2c\xb0\x3d\x4e\x3c\x4a\x45\x14\xde\x08\x2d\xdd\x9b\xf1\xc5\x19\x05\x68\x94\xe3\x7a\x4d\xe8\x12\x22\x45\x2a\x82\xea\x46\x8a\x81\x66\x4c\x05\xcf\x1a\x22\xe4\x84\xa8\x97\xfa\x42\x29\x44\x96\x11\x01\x6f\x23\x8d\x78\x03\xdd\xe0\x61\x44\x04\x9c\xd0\xf9\x4a\x11\xdf\x36\x42\xef\x8d\xf8\x36\x19\x54\xcd\x22\x9c\x4d\x88\x5e\xa4\x08\x67\x1b\xa1\xc8\x7e\x91\x11\x3c\x14\xd9\x08\x1e\x13\x82\x1c\x28\x22\xc1\x46\x28\x6f\x5f\x08\x72\x04\x89\x50\xc4\x75\x8d\xd0\xb6\x5a\xdc\xd1\xa2\x67\xa5\x22\xa8\x48\x42\x27\xf4\x82\x57\x09\xe5\x0c\x22\x82\x46\x5c\x39\x16\x11\x34\x68\x30\x53\x04\xf3\x08\xe3\x92\x14\x81\x38\xc2\x70\x1f\x45\xe4\x49\xa0\x43\x29\x82\x44\xda\xaf\xdd\x87\x1b\x3a\xd4\x28\xf0\xd3\x97\x50\xa3\x98\x4f\xfd\x2e\xe0\x58\x5f\x58\x7e\xa8\x46\x81\x87\xfc\x28\xf1\x59\xe0\x5d\x84\x1a\xe5\xb5\xcc\x0e\x8c\xbb\x51\xb8\xaa\x4b\x68\x51\xe0\x44\x2e\xa1\x12\x81\x8b\xf8\x2f\x63\x81\x1e\x23\x09\x67\x03\x8e\xc6\x12\x0a\x0f\x3d\xa8\x07\xd4\x5e\x28\xf6\x57\x68\x2f\xb4\x9e\x36\x84\x05\x66\xac\x0e\x92\xa8\xed\x74\xcc\x07\xab\xb6\x8e\xc1\xad\x69\xc7\x14\x53\x24\xd1\x8e\xaf\x52\xd9\xa0\x50\x92\x87\x6e\x41\x27\xa6\x98\xf7\x14\xfc\x72\x25\xd4\x00\x70\xaa\xed\x61\x4f\x30\x7f\xd6\x15\xd2\x37\x7c\x53\x25\x04\x76\xf3\x4d\xcd\x9d\x49\x1e\x15\x6e\xa1\xb3\xc6\x57\x2f\xe8\x2b\x9c\xa8\x7e\x15\x4a\x37\x2e\xec\x57\xa1\x63\xe3\x9c\x7f\xf5\x82\xbe\xc2\x09\xe2\x57\x6f\xa8\x38\x12\xdb\x38\x3a\x25\xe7\x55\xbf\xaa\x90\xd0\x84\x8d\x2a\x3c\xd7\x27\xdb\x50\xf4\x43\xa2\x00\x9f\x9d\x7c\xe5\x3b\x60\x94\xde\x8f\x96\x4e\x3f\x92\x17\x64\x0c\xce\xd9\xee\x0f\xd6\x8e\x49\x8e\xf8\x6b\x19\xfd\xc8\xf1\xca\x85\x27\x06\x0b\xd0\x0f\x3f\x2c\x5f\x83\x4b\x38\x9d\x9f\xbf\x06\x2d\x91\x14\xb6\x51\x30\xfc\xf8\xca\x51\x0a\x15\xb6\x61\xfb\x67\x52\xf7\xf9\x99\xc5\x24\x4f\x69\xfc\xac\xc9\x4a\x93\xb9\xf4\xbf\x66\xfb\x65\x4a\xe3\x58\x10\x90\x48\x8e\xed\x6b\x26\x09\x4d\x22\x1f\x7d\xcd\x24\xa1\x49\x6e\xf5\x6b\x13\x8d\x76\x7e\xd6\xd4\x35\x93\xb6\xd6\x0f\x86\x98\x49\xdf\x82\x0f\x86\x98\x59\xa2\xeb\xf0\x67\x97\xce\xe1\x9b\x3b\xfa\x94\xce\xcf\x9a\xa3\xc6\x94\xce\xe1\x2f\x60\x7c\xb6\x28\x38\xaf\x70\xb4\x26\x76\xcc\x12\xa3\xbd\x4e\x4f\x59\xf0\xa0\xd1\xf1\x2f\x56\xae\xaf\x3d\x50\xcc\x4c\xf6\xda\xb8\xd9\x49\x0c\x8b\xaf\x29\x16\x4d\xd8\x05\xe3\x66\x27\x61\x35\xbe\x66\x7e\xa7\x53\xb8\x01\x9b\x62\x7e\x57\xbc\x82\xf9\xe5\x26\x6e\x8a\x34\x2f\x2b\x5e\x01\x70\x89\x70\x7e\x3f\x74\x2c\x71\xf6\x3e\x4c\x45\x34\x7a\x94\x19\x89\x3d\x45\xee\x98\x1a\x0b\xff\x9d\x1d\xe9\x8d\xf6\x74\x94\x7f\xfe\x4a\x37\xe6\x4a\x62\x05\xba\x20\xa1\xad\xb3\x06\x5f\x07\x0f\x13\x1d\xeb\xc7\xff\xc3\xa5\xf7\xaf\x43\xc0\x62\xbe\xa8\xaf\x83\x45\x21\x0e\xee\xd7\xcd\xef\x5a\x16\x4f\x46\x47\x6e\x25\x22\x5d\x7c\x1d\x02\x15\x3d\xdd\xbf\xfe\xc0\xa9\xc4\xa9\xcd\xd7\x21\xfc\xd0\x0f\xe5\xeb\xef\x81\x82\xf7\xf9\xe8\x07\x1b\x9e\xdb\xbc\x83\x11\xa2\xbf\xd2\xd7\xf5\x6f\xc7\x94\x6f\x54\xc8\xf7\xce\x8b\x7f\xa3\x82\xfb\x74\x4e\xfb\x1b\x15\x94\xc2\x6f\x9e\x6f\xe0\x40\x92\x72\x7e\xa3\x1d\xf5\x31\x9f\xc0\x09\x65\xba\x9c\x6f\xb4\xf3\x4a\x63\x01\x9c\x7d\x84\x6d\x74\xa8\xf6\xb8\xef\x07\x0e\x35\x73\x10\x7c\xa3\xa3\x51\xd7\xbb\x7c\x03\xa7\x9c\xee\x40\xdf\x18\x20\x1d\x3c\xb2\x63\x1e\x6e\x9c\x1d\xbb\x8e\xe9\x85\x4f\xec\x09\xa2\x10\xf6\x0d\x35\xa0\x2a\x5f\x57\x01\x2b\x14\x94\x06\xd9\xed\x24\x28\x8d\xe5\xa2\xdb\x05\xde\x02\x32\x05\x4d\x22\x6f\x7e\x86\xb0\x4e\xf8\xa7\xcf\xf0\xd5\x17\x99\x9a\x0f\xaa\xf7\x21\xf1\x80\xe9\xb0\x1a\x13\xbb\x7d\xc0\x82\x1e\x44\x84\xf8\x2e\x1b\x77\x63\x42\xac\x0f\x01\x43\x8d\x86\xd5\x0f\x01\x43\x8d\xb6\xd8\x0f\xf7\x78\xa3\xd9\xf4\x53\x33\xdf\x36\x5a\x5a\x3f\x8f\x0f\xe2\x50\x71\x8f\x73\x03\x2b\x40\x0e\x0a\xff\x35\x1f\x4c\xaa\x55\x3f\x05\xbe\x0f\x95\xa6\x9f\xc2\xb7\x71\x46\x83\xc3\xa0\x6f\x7d\x9c\xf0\x83\x4e\xf1\x6f\x81\xcd\xba\xb0\xc0\x0e\x7b\xe3\xbf\x6d\xbf\xbd\xf8\x6f\xff\xf3\x53\x46\xd4\xda\x2e\xee\xfc\x77\xa2\xb1\xcc\x02\xdb\x3b\x83\xff\x22\xb9\x29\xff\x35\x28\x90\xc4\x7f\x2d\x55\x67\x7c\x0a\x89\x4d\xf9\xef\xb7\x3b\xe2\x8b\x01\xbf\x65\xce\x2b\xbc\x96\x39\xab\xe6\xb3\x1c\x97\xcc\xb7\xd9\xf5\x92\xe3\x61\xdd\xff\xc6\xc3\x86\x37\xc2\x96\xf7\x55\xc9\x04\xe2\xdf\x07\x74\xcf\x19\x13\x08\x74\xcf\xf8\xf7\x45\x3d\xfb\x6d\xc7\xb4\x52\xc1\xfc\x7d\x86\x5e\xc4\x6d\xf4\x9d\x5c\x34\xfc\x17\xd0\xb9\xfc\x17\x01\x98\xfc\x77\x77\x95\x9b\x14\xce\x99\xbc\xd5\x3f\x60\x10\x93\x53\xfa\x3e\x23\xff\xeb\x5f\x44\xa7\xef\x33\x1a\xd5\x98\x1a\xfb\xfb\xd4\xd6\x36\xfe\x35\x38\x56\xf7\x3b\x2c\x29\x01\x05\xc4\xd3\xe1\x96\x94\xc0\x61\x3a\x30\x7d\x49\xc9\x34\xb2\xcd\x81\xe9\x77\x81\x31\x7f\xee\x59\x55\x52\x32\x52\xd1\xca\x61\xd4\x4a\x4a\x82\x84\xad\x95\x5f\x91\x73\x90\xe3\x89\x0b\x1e\x7b\xc5\x0b\x8e\x21\x25\x3a\xf6\x60\x97\x15\x7e\xc5\x7c\xdb\xa6\x3b\x17\xec\x82\x07\x6d\x44\x81\x11\x57\x0f\xdc\x2b\x29\xbd\xc8\xb7\x9e\xd9\x28\x74\xfc\x6e\x05\x28\x29\x23\x2a\xd1\x13\xdc\xef\x02\xa4\x95\x2b\xde\xd3\x0c\x3f\x15\xe7\x0f\x4b\x82\xa3\xd9\x4a\x2d\x0a\x8c\x75\x29\x87\xd7\xdd\x05\x46\x53\x5c\x87\x5d\x52\x36\x1e\x62\xcc\xf8\x0a\xb4\x62\x8e\x9b\x5b\x52\xb6\xeb\x79\x14\x7e\xb6\x98\x4c\x3d\x3c\x90\x61\x17\xd8\x68\xa7\xf8\x67\x0b\x92\xb1\x7a\x04\x79\x49\xc5\xbc\xc3\x99\x26\xbd\xa4\x62\x9b\xb2\x67\xae\x6d\x99\x48\x1f\x5a\xa2\xa0\xa3\x51\xef\x7a\x81\xce\xc1\x9d\x1e\x77\x81\xc1\x97\x4d\x0e\xae\xd8\x05\x3e\x3c\xbe\xb6\xa4\x72\xc3\x9e\xb5\xd8\x31\xc4\x2c\x39\x40\x4b\x49\x05\x29\x98\xdd\x7f\xac\xa4\x62\xec\xca\x68\x9c\xc2\x6a\x24\xa5\xb9\x0f\x5b\x49\x15\xd6\x88\x34\xbc\x8d\x0a\xe3\xa5\x87\x34\xec\x02\xeb\xba\x44\x1b\x7f\x5b\x0e\x76\xc1\x84\x37\x97\xef\x8f\x6a\x72\xcd\x68\x85\xaf\xc0\x37\xd8\xc9\x44\x49\x55\x30\x38\x6e\xfe\x0a\x76\xc5\xa5\xe0\x5d\x60\x6a\x1b\xd7\x18\x97\x54\x6f\x48\x75\xf1\x59\xf3\x22\x1c\xee\xf9\xbf\x0b\xce\x76\xe0\x57\x8c\xb1\xea\x0e\x1d\xbc\x0b\x9e\xdf\x12\x6b\x49\xf0\xb5\x6a\x32\xa3\xa0\x61\x0a\x13\x0b\x3e\x0c\xce\x0f\x50\x1b\x58\xca\xc9\x27\x90\xf9\xbd\xb5\xcc\x02\x20\xd1\x25\x16\x18\xbf\xdc\x84\xc7\x03\xfc\x72\x13\xae\x6d\xbb\xd0\x0f\x6e\xdc\xf6\xce\xdf\xd6\xbb\x92\x9a\x75\x7d\x96\xf8\x0a\x2c\xf0\xae\x87\x2e\xa9\x63\x19\xdc\x12\x59\x52\x47\x3f\x1a\x0f\x61\x87\x5f\xab\xab\x9c\x4a\xea\xe6\xad\x3b\x5a\xf7\xcf\x76\xe8\xc3\x63\x7f\xf4\x07\x86\x7f\x12\x14\xb0\x6f\xd3\xcd\x33\xbb\xe0\xd8\x19\x0b\x0b\x80\x1b\xcb\x7d\x0a\x06\xaf\xb9\x29\x64\x17\xd8\x79\x49\x3c\x73\x23\xc3\x7c\xb5\x12\x0b\x4e\xa3\x95\x05\x70\x02\x6a\x85\x05\xd6\xb1\xce\x33\x37\x2a\x32\xba\x4c\x16\x98\x40\x3e\x66\x3c\x01\xbf\x21\x77\xb7\x28\x69\x22\x10\x5a\xb8\x1d\x66\x85\x88\xc0\xc5\x9e\x30\x6e\x3b\x08\x73\x49\x62\x30\x84\xbd\x70\x5d\x64\x62\xe5\x8a\xbf\x22\x98\x8f\xcc\x85\x5a\xc0\xa5\xca\x8b\x05\x66\x23\x1c\xce\x9a\x97\x84\x24\x6e\xa3\xc5\x13\xf6\x59\x19\x5c\x4a\x64\x32\x9a\xee\xc1\x5c\x12\xbc\x21\xba\x0b\x00\x25\xc1\x83\xa0\xed\x5d\xf8\x7f\xbd\xbe\x4a\xba\xcc\xcb\x77\x25\xf6\xfa\x12\xf8\x5c\x73\x5c\x30\x52\xf7\xce\x25\x81\x09\x5a\x3c\x52\x64\x17\xbc\x28\xf0\x61\xdc\xe9\x38\x54\x7a\x27\x0f\x82\x70\x27\x61\x80\xe5\x68\xb9\xf6\xb0\x24\xa0\xe2\xb6\xc9\x1d\x09\xcb\xd1\x74\x73\x41\x49\xc0\x9b\x15\x47\x26\x28\x09\x60\xb1\x4d\xb8\xab\x6f\xf8\x62\x37\x6e\x2f\x00\xa2\x8e\xc6\xd9\xbb\xb1\xdf\x3c\xbe\xbd\xa4\xfb\x3b\xaf\x34\x16\xe0\x94\x37\x7f\x05\x80\x9e\x14\xc6\x77\xc1\x8b\x9b\xc4\x5f\x81\x4d\xa1\x09\x6f\x12\x80\x45\xce\xc2\x55\x04\xd0\xe3\x4c\x35\x9e\x38\x9f\xe5\x57\x8c\xd8\x8e\xc4\xae\xc3\xc8\x30\x3d\xca\x65\x17\x40\x24\x8d\xaf\xc0\x08\xdb\x48\x4b\xa0\xbc\x97\xc6\xcb\xf8\x31\x1d\xc0\xe8\xbc\x49\x1e\xd3\x01\xd0\x5e\xba\x0b\x8e\xd1\x9e\x8d\x42\xcf\xde\x78\x10\xa0\x45\x1f\x89\x94\xf3\x81\x9e\x69\x90\x60\x3f\x20\xc7\x8d\x5c\xc2\x03\x2f\xab\x1e\x5d\x7f\xe0\x11\x14\x5d\x37\x9b\xd5\x18\x2b\x0a\x10\xd6\x1e\x63\xb1\xb3\x33\x33\xaf\xc9\xc7\xbc\x9b\xe6\xe2\xea\x3f\x50\x20\x36\xde\xac\x06\xd3\xb7\x0b\x38\x85\xb6\x94\xdd\x01\x11\x4a\x7a\x91\x3b\xdd\x5d\xa2\x4b\x82\x32\x79\x64\x4e\x10\xb0\xd0\x5a\xe3\xc6\x7d\xcd\xf8\x33\x16\x07\xf7\xda\x9d\x37\x33\xb9\xa6\xb7\x41\x7d\x41\x6a\xf3\x36\x28\x9e\x66\x3c\x81\x33\xcc\xdb\x19\xaa\xe1\xee\x61\x06\xbb\xc0\xf4\xe0\xbd\x47\x1b\x46\xb0\x07\x07\x07\x04\x2a\x69\xe4\xcd\xa0\x1b\x1e\x99\x0c\xdf\x6b\x9c\xc6\x70\x9b\xe7\x2e\x78\x30\x85\x2c\x80\x5f\x4c\x50\x0a\xc0\x12\xcd\xc2\x9d\xfc\xda\x55\x3b\xdc\x37\xa0\x24\xe0\xf0\x88\x63\x7d\x94\x04\xec\x18\xf1\x50\xe7\x92\x80\x6d\x21\x1e\x56\xbc\x0b\xc0\x9b\x71\x92\xf5\x58\x22\xa4\xb0\xe0\xc5\x51\xcf\x2c\x80\x1f\x08\xb9\x04\xc0\x50\xcc\x45\x62\x0b\x18\x8a\xb9\x78\x4c\x01\x43\x31\x83\x67\x3e\x12\x61\x99\xf1\x8a\x7d\x45\x48\xc1\xd5\x66\x7d\x3a\xf2\x4b\x49\x3a\xde\xdf\xc6\x9d\x92\x14\xfe\x05\x1e\xfd\xb7\x0b\x3a\xa4\x5b\x7e\x76\x9e\xd3\xc0\xaf\x40\xcd\xe6\x19\x30\x77\x81\xa0\xa7\xf1\xc4\x42\x4f\x13\x0b\xa0\x66\x5b\x51\x60\x14\xc6\xd3\x63\x95\x04\x88\x85\xe9\xe6\xd7\x92\x00\x6e\x30\x33\xef\x09\x80\x19\x50\x61\xb5\x0b\x60\x49\x21\xd5\x06\x8c\xc0\x48\x24\x06\x08\xf1\x9f\x42\xfe\xee\x68\x7f\x83\x6b\x42\x88\xbf\x0c\x6e\x5c\x44\xdb\x8f\x4c\x72\xa1\x87\x17\xe1\x41\xb6\x90\xf0\x2c\x89\x9b\x5f\x5f\xec\x64\xd2\x64\x84\x31\x77\x99\x7c\xe5\x3b\x96\xaa\x28\xb8\x30\x85\xfc\x0a\x94\x5e\x2b\xfd\x83\xbf\x45\x49\x26\x94\xe6\xde\xb9\x02\x08\x79\xed\x95\x1f\x40\x34\xaa\x04\x57\x8a\x68\x54\x2a\xf3\x4a\x42\xf4\xe9\x14\x72\x72\x88\x3e\x9d\x42\xd2\x01\xf1\x75\x54\x52\x70\x84\x4b\xce\xc2\xe3\x06\x99\x72\xc6\xe5\xfe\x01\x57\xdf\x93\x85\x94\xf4\xc1\x03\x23\x58\xdd\x0f\xca\x74\xe1\xc9\xf8\xe0\x0f\x96\xa5\xb1\xa0\x63\x6b\xc4\x13\x20\x83\x3c\xf6\xdf\x0d\x0a\x1e\x4f\x18\xd3\xd5\x66\x74\x5d\x71\xfe\x78\xd5\x7e\x7a\xff\x36\xb2\xed\x02\x2c\x3c\xa9\x1e\x64\x56\xda\xd0\x4a\x4e\x60\x86\x49\x07\x72\x6a\xa0\x47\x95\x05\xfd\xf4\x83\xaf\x18\xc5\xa2\xf2\xb8\xe4\x84\xc3\xe4\x38\x93\xbb\x00\x5c\x98\x53\xdf\x9c\x5c\x67\x5d\x58\x70\x0e\xd3\x60\xc1\xd1\x99\x89\x17\xc0\x55\xc6\x23\x1e\x4b\x4e\xeb\x34\x3a\x59\xf0\x82\xc8\xf1\xb3\xc8\x2c\xef\xa1\xf8\xbb\xe0\x8c\x65\x79\xc1\x73\xb6\x03\xdb\x30\x69\x92\xe6\xd6\x5d\x30\x7f\xeb\x87\x77\x01\xb4\xeb\x83\x1d\x03\xa6\x96\x63\x07\xef\x02\xcc\xc7\x60\x3f\x5e\x78\x36\xfa\xb6\xcc\x09\x9a\x04\x89\x02\xe8\x87\x29\x70\xe5\x0c\xdf\x84\xd6\xfc\x89\x7c\xf8\x08\x67\x31\x73\x86\xb6\x93\xc7\x2d\x67\x13\xda\xa6\x1b\xef\x76\xc1\x99\xd3\x28\x40\xc7\xa6\xcf\x7a\x16\x10\x5b\x4e\x61\x96\xf9\xdb\x82\x5a\x72\x7e\xd7\x6f\x63\x70\xc9\xc5\xb4\xae\xc3\xb3\x23\x95\x5c\x1a\x18\x3e\xee\xa0\x32\x91\xa9\xd1\x4f\x79\x2e\x87\xe1\xf3\x9b\x24\x17\xc4\x46\xb8\xc3\x7b\xc9\xc5\xd4\xd2\xc4\x50\x2c\xb9\x28\xe8\x73\x63\xa3\x1f\xf4\xb2\xbe\xf9\x73\x35\x35\x5c\x77\x0f\x91\x5d\x00\xa6\x5c\xe2\x09\xe3\x66\xc9\x7a\xe4\x9a\x20\x19\x73\x3e\x6a\xc5\x0e\x72\x0e\x30\x5b\x64\x55\x1e\x31\x85\x15\x5e\x66\xcd\xef\xef\x5c\xb1\x93\xc9\x94\xe7\x0a\x81\x8b\xaa\x83\x5c\x8d\x60\x13\x8e\x66\x17\x3c\xe0\xaa\x7d\x07\x59\xd8\x52\xee\xae\x95\xdf\x05\x03\x13\xc4\x27\xe0\x3f\xb9\x0a\xc7\x62\xc3\x67\x72\xd5\x92\x21\xc4\x76\xf7\xa9\xdb\x05\x46\xc1\x1d\x65\xa2\xe4\x06\x27\xc4\xce\xbd\xde\x2a\x34\xea\x9c\xd3\x06\x6b\x26\xf9\xbb\xdc\x20\x93\xb8\xdf\xc9\x2e\x00\x51\xca\x7c\x02\xaa\xa5\xd2\x58\x80\x5c\x1e\xee\xbe\x51\x72\xbb\xcf\x58\x7c\x3e\x9a\x02\xe0\x29\xb1\x63\xe6\xb6\xd9\x5c\x6f\x56\x72\x87\xa3\x5e\x73\xbd\x48\xee\x82\xf0\x28\x6e\xcb\x0e\xd6\xd4\x53\xf1\x97\x3c\x12\x7c\x90\x38\xa7\xc3\xe6\x63\x78\x76\xff\x5d\xb0\xd0\xa8\xb7\x01\x63\xc0\xf0\x04\x4d\x65\xff\x84\x66\x8d\x4f\x98\x84\x3e\x3c\xb2\xbe\xe4\x61\xec\xed\x18\xd1\xc6\x0d\xf7\xc8\xc4\x36\x8e\xf6\xa5\xfc\x8b\x04\x96\x07\xcc\x5d\x99\x34\x6d\xc0\xc5\xb7\x93\x96\x0c\xa3\x14\xad\xbb\x2a\x22\x8f\x17\xe2\x7b\xe5\xc8\x41\xf4\x63\x3a\x07\x32\xe0\x66\x52\x8a\x01\xb9\x31\x71\x9d\x87\xad\xc0\xe8\x3c\xb2\xc3\xee\xe1\x26\x5c\x81\xf1\x41\x8b\xe2\x4c\x57\x1e\xa6\x79\x68\x0e\x0e\xb9\x0b\xa0\xb9\x64\x1b\x33\x9d\xeb\xdf\xbb\x3e\x91\x5d\x55\x5c\xe0\xda\x24\x12\x22\x99\xcf\xde\x04\x08\xfe\xf0\xfb\x2a\x4f\x04\x2e\x92\x83\xca\xd3\x88\x4b\x0f\x6a\x33\xe1\x5c\xda\xfc\xba\xce\x73\x3c\xbf\xbd\x1c\x76\xc1\x8b\xbc\xc5\x7c\x65\x40\x83\x1a\x1d\xb3\xeb\xa9\x05\x39\x9e\x16\x4c\x3f\xa8\xf0\xd8\x34\xd3\x0a\x62\x70\x10\xf0\x0b\x2f\x8e\x09\xe5\x5e\x10\x86\x79\x9d\xae\xf3\x15\x90\x30\x57\xed\xef\x02\x48\xeb\x12\x4f\x60\x7b\xf1\x64\x4c\xd3\xc4\xf4\x11\x5f\xb1\xfb\xaa\x39\x3c\xed\x2e\x00\x68\x67\x0c\xee\x39\x74\x91\x83\x3b\xfe\xdc\x3c\x90\xd3\x08\x76\xef\xbc\x26\xa7\x61\xf7\xf4\xb8\xc0\x26\xfc\xb9\xe3\x8a\x9b\xf0\xd8\x18\x24\x2e\x13\x5e\x82\x99\xe4\x78\x2a\x38\x0d\xee\xfb\xf9\xc1\x07\x86\x44\x6e\x7e\x70\xc1\xea\x5c\xa8\x0f\x44\x9f\x07\x72\x1a\x37\xd8\x72\x6c\x87\xef\x68\x73\xd8\x31\xdb\x85\x63\x94\x28\x78\x40\x5b\xfd\x2b\x52\xe0\x58\x28\x83\x05\x38\xa1\xbc\x48\x05\x4e\x42\xd4\x3b\x65\x58\xc6\xda\xe2\x62\xcb\xe1\x11\xc9\x25\x08\x80\x3f\x26\x77\xa1\x40\x86\x5f\x2d\x9e\xb8\x7f\x7b\x8a\x94\x4d\x01\x6c\x4e\xc9\xcf\x08\x72\x25\x50\x26\xc9\x02\xda\xda\xb9\x71\xc5\x80\x28\x5a\x30\x27\x02\xf2\x23\xf1\x04\xe2\x30\x3a\x6f\x12\x19\x00\xdf\x25\x4f\x24\x03\x9a\x6d\x5e\x1c\x32\x4f\x24\x37\x5f\x99\xc7\x27\x8d\x5f\x11\xdc\x13\xe4\x12\x10\xc1\xd6\xdc\x69\x79\x17\x40\xb7\x99\xd9\xa8\x69\xa5\x67\xe2\x2e\x14\xa4\x56\xea\xdc\xb8\x62\x8a\xdb\xb6\x12\xbf\x62\x31\x14\xbd\xd4\x78\x02\x14\x9c\x34\x48\x6e\x5c\x60\xbc\xf2\x05\x8a\xec\x4e\xce\x4b\xcc\x9e\xd0\x26\xa9\xaf\x98\x1e\xa0\x77\x6e\x3a\x41\x8e\x4a\xaa\xff\xb2\x98\x4c\xd2\x0b\xaf\x38\xb1\xcd\xdf\x1c\x58\xa7\x64\x01\xa5\xf3\xf4\x85\x25\x2f\x44\x28\x0d\x57\x75\xe7\x05\xb2\x45\xdd\x4a\x5e\x26\x6f\x8e\x41\xa6\x60\x99\xe1\xb3\xa7\x5f\x4f\x20\x97\x77\x89\x02\xf8\x1c\x93\x39\x59\xe6\x6b\xd4\x26\x2f\x8e\x85\x10\xd3\xc5\x6d\xb9\x40\xfa\x68\xc5\xc9\xeb\x04\xfa\x37\x3e\x61\xd1\xeb\x43\x78\x5e\x10\x48\x28\x8d\x3c\xf3\x02\xa3\x25\xbc\xae\x11\x37\x28\xc1\xdf\x2d\x39\xba\xde\xcc\x02\xc1\xda\xfa\x24\x23\x1a\xaf\xc9\xaa\xff\x72\x81\x59\x4e\xf8\x3c\x1a\x57\x71\x7d\x60\xba\x38\x9d\x97\x9f\x2e\x5f\x78\xa4\x5e\x1e\x54\x89\xe4\x0b\xee\x73\xd4\x3f\xe7\xcb\x90\xd5\x67\x22\xe3\x86\xac\xb8\xb2\xc8\xb8\xdd\xc0\x6f\x1f\x5c\x56\xe4\x9b\x9a\x83\x22\xc8\x0d\x45\x65\xe5\xbd\xf9\x9c\xf0\x09\xd7\x80\xe4\x67\x42\x24\x23\xa3\xf2\xc0\x81\x7d\x70\x03\x3e\xae\x29\x5f\x2c\x80\xa0\xe3\xe2\x54\x86\x46\x88\xce\x5c\x25\x03\x9e\x9d\x46\xf2\x5d\xa0\x56\xc0\xc3\x04\xe4\x6a\x3a\xd6\x97\xfc\x1e\xff\x0a\xee\xea\xf7\x06\x81\xe2\x9c\x02\x92\x77\x0a\x6f\x78\x38\xe1\x0d\xea\xc1\x33\x90\x5b\x9b\xc3\xe0\x94\xfc\x42\xd2\x8e\xb1\x00\x13\x73\x66\xde\x57\x5a\xd0\x53\x1e\x48\x35\xc7\xc7\x31\xb8\x13\xb4\xc2\x4d\x8f\x77\x2f\x1c\xd3\x5a\x73\x89\x3f\x03\x9e\x70\x50\xbd\x93\x01\x36\xd8\x27\x79\x4e\x3d\x3a\x23\x2e\xb6\x1e\x43\x01\xaf\x7c\x33\x4a\x6f\x6e\x8d\x05\x47\xeb\x4f\x5e\xc4\xb0\x71\xf2\x98\xe4\x78\x3e\xe0\x00\x50\x87\x96\x3f\x50\x9b\xc5\xcb\xe7\x33\x06\x67\x52\x87\x56\xd2\xd9\x63\xce\x8b\x94\xd4\x30\x41\x7e\x93\x94\x04\x37\x3c\xea\xe3\x4b\x5a\xc7\xe8\xc1\x57\x8e\xe0\xe7\x24\xbd\x24\xdc\x46\x64\x53\xb7\x1c\x03\x63\x94\xb7\x91\xe1\xfd\x47\x2d\xca\x66\x68\xf0\x59\x3e\x31\x8f\xef\x3c\x9f\xb8\xf2\x6f\x3f\xab\x52\x60\xce\x5c\x54\x9a\x94\x7c\xa2\x50\x5d\xd0\x29\x25\x41\x00\xf5\x7b\xa2\x94\xa3\xda\xf5\xe3\x51\x2a\xec\xce\x9e\x7e\x68\x17\x18\xc5\x22\x1d\x28\x15\xc1\x66\xee\x86\x5d\x4a\x7d\xc1\x13\xb9\xee\xaa\xd4\xa3\x00\xf2\xdb\xb9\x54\x80\x99\x34\xbf\x6b\x0a\x8c\x62\xf4\x83\x2d\xa5\x1d\x36\x8a\xcb\xd0\x90\x80\x90\x7b\xbd\xc0\x28\x36\x96\x9f\x86\xd2\xe0\x8f\xe4\xb0\xb4\xbb\xe0\x01\x30\x0c\xdb\xc0\x7c\x38\x70\xea\x2e\x38\xd0\x31\x8d\x05\xe7\x15\x7e\x05\x69\xc9\xa8\xd9\x2e\x1d\xc2\x01\x55\x99\xa5\xc3\x5f\xd9\x1d\xc7\x4a\xe9\x15\xb6\x49\xe7\xab\x4a\x87\x28\x34\xf8\x95\x2e\x08\xf6\xf1\xd3\x50\x3a\x30\x2f\x57\xe1\x13\xf7\x31\xee\xfb\x57\x46\xc6\x31\xf5\x9d\x5c\xc6\x39\x95\x6c\x74\x14\x3c\xc1\x19\x83\x63\xd0\x70\xef\xd0\x52\x06\xfc\x80\x79\xe5\x97\x71\x54\xbb\x12\x05\xe0\xee\x3b\x5f\xf9\x8e\xc7\xf8\x64\x41\x87\x19\x23\x0a\xa0\x41\xe5\x8c\x4d\xbb\xe2\xe8\x05\xb6\x0b\xc0\x89\x3a\x07\x58\x66\x46\x80\x90\xdf\xf0\x65\x66\x18\xa2\xb9\xd7\xe7\xa1\xb8\x2e\xcb\x94\x09\x9f\xa6\xc2\xcf\x4e\x41\x52\x14\xe7\xdd\xcb\x04\x72\x93\x67\xee\x28\x05\x0c\xf0\x98\x5c\xec\x79\xb4\x62\x7e\x6f\x96\x69\x06\xa8\xe1\xa8\x48\xa5\x08\xbc\x6f\xb6\xd8\xf1\x7f\xbf\xc0\x8a\x58\x56\x8a\x31\x79\x54\x64\x80\x95\xe1\xbe\x17\x78\x62\x37\xbf\x05\x8a\x40\x75\x47\xfb\x55\x91\xe3\x70\xe0\xb7\x6c\x11\x43\xa3\x1e\xc2\xc9\x5a\xd0\x4b\x8a\x2b\x09\xca\xaa\xb0\x70\x39\xcb\x5d\xd6\x51\xaa\x39\xf3\x57\xd6\x38\xf1\x7f\x7c\x65\x9c\xe4\x47\xfe\x15\x5c\xee\x63\xc6\x13\xeb\x84\x1d\xfa\x13\x97\x45\x70\xcc\xe2\x3c\x78\xb9\xa0\x88\x2a\x1c\xed\x75\xc8\xb1\xd3\xf8\x72\x1d\x57\x46\xae\xe2\x05\x5f\xec\x46\x02\x75\x1f\x8d\x3d\xc9\x20\xc2\x1f\x1b\xd5\x08\xe5\xae\x67\x2c\x4e\x07\x90\xac\x77\x24\x1e\xea\x7b\xe0\x8a\xe3\xa1\x46\xb8\x14\x3d\x54\x77\x01\xf2\x70\x70\x59\x91\x1c\xae\x53\xe2\x2f\x0f\x38\xa8\xca\xc1\x3d\x70\xbf\xcd\xfc\x2c\x32\x87\x31\x62\xb2\x94\xa7\x1f\xe7\xcf\xc6\x82\xfe\xe7\x97\x7b\x68\x29\xc8\xa7\x35\xc8\xda\x95\xe7\x28\x19\xfd\x56\x2c\xcf\x3a\x67\xd8\x87\xff\x18\xc1\x6e\x8b\x04\xfb\x81\xf5\x32\x93\xd8\x3e\x27\xf9\x7d\xb4\x71\x9f\xb5\xf5\xd1\x3e\xcf\x49\x8f\xcf\xc1\x3d\xd0\xfa\xf3\xc8\x3e\xcf\xf1\xd8\xf5\x02\x64\x5b\x6a\xd4\x06\x17\x64\x5b\x12\xda\xaf\x0a\xe2\x38\xa4\xf1\x02\x43\xd6\x9b\x59\x9c\x17\x29\xef\x31\x8b\xf0\x16\x40\xca\x95\xe6\x4e\x97\xa5\xbc\x50\x64\x17\xbf\x59\xcb\x8b\x40\x41\xcf\xaf\x54\xca\x7b\xc2\x64\x48\x7e\x90\x79\x62\x74\x52\x2c\x04\x15\x4c\xea\xae\xca\x7b\x86\x2f\x7c\x42\xa1\x94\xe7\xc5\x01\x33\xd1\xa0\x52\xad\x68\x85\x19\xdf\x0d\x27\x45\xdb\x19\x9c\x2f\x03\x8c\x2f\x6d\xf1\x32\x36\xf0\xea\x7d\x2b\xb2\xe0\x3e\xbb\xd0\xbb\xae\xf0\x28\x4d\x1c\xcb\x37\x61\xd0\xe2\x2b\x1f\x1c\x59\x1b\x6f\x56\x78\x87\x31\x49\x4d\xa9\x09\x6e\x95\x9e\xf7\xa6\xd4\x84\x49\xf6\x4c\x42\xbb\x00\x77\x9e\xef\xd3\x9a\x06\x94\x8c\xce\x03\xd4\x34\x91\xb5\xdb\xb7\x76\x3d\xbc\x08\x09\x4a\x4d\x40\xcd\xf3\xbc\x23\xa5\x26\x9b\xc2\xe6\x39\x87\x77\x01\x74\xac\x2e\x60\xd4\xf4\x22\x5e\xc4\x6d\x23\x35\x43\x1d\xea\xd9\x3c\x4a\x3d\xfa\x62\x4f\x68\x59\x6a\x46\x3f\x4a\x3c\x01\xb5\x9b\x83\x60\x97\x9a\x6f\xb4\xe1\xb4\xb0\xe6\x07\x32\x89\xdf\x68\x15\xa8\x5e\x9d\x64\xab\x66\x33\x41\x2c\x07\xf0\x29\x35\x83\x35\xe5\x76\xa8\x25\xe1\xde\x14\x16\x18\x73\xd2\xdd\x3b\x76\x17\x7c\xd0\x7e\x7a\x3f\x8a\xd9\x68\x86\xf8\x3d\x51\x8b\xd9\x6a\xbb\xbb\x2f\xee\x82\x23\xe8\x24\x16\x20\x62\x44\x58\xd0\xcf\x5d\x23\x2c\x50\x78\x3f\x78\xd7\x8b\x11\x83\x46\x1e\xa0\x16\x44\xd4\x50\xb8\xa9\x45\x8e\x78\x19\x4f\x5c\x90\x48\xf9\xc4\x51\x0b\x0d\x0e\x0e\x7e\xbc\x99\xfb\xa3\xd8\x75\xd2\x3c\x9a\xad\xd4\xf2\x62\xd6\xff\x49\x02\xab\x05\x7e\x35\x8e\x70\xbb\x0b\x40\x8f\x9c\xc8\x55\xe0\x87\x11\x4d\x66\x17\x5c\x10\x57\x59\x90\x41\xb0\xfd\x74\xd5\x8a\x6b\x97\xda\xf6\x5a\x1f\x08\xb4\x4e\x9f\x6b\x45\xe0\x1a\xbd\x55\x6a\xb5\x8b\x63\xd0\x80\x53\xeb\xb1\x60\x70\xf3\xc0\x11\x8b\xb1\x31\xbb\xe0\x38\x92\xb3\x0d\x28\x80\xc8\x63\x55\x68\xb9\x3b\x1d\x17\x6b\x3b\x98\x70\x4e\x9f\x2b\x74\xd8\xdd\x7d\x5e\x4b\x6d\x70\x81\x59\x6c\xa3\x99\xb6\x6f\xd0\xf4\x5d\xdb\xc4\xfc\xba\xc2\xa3\xc2\x9f\x9f\x90\xf3\xa5\xf6\x0c\x87\x1f\xce\x29\xb8\xc1\xc6\x7b\xb3\xf6\x0e\xa6\xdc\xb9\x9f\xda\x3b\xf4\xe0\x93\x6d\x9c\xfb\xdb\x6f\x81\xda\x01\x5b\xcf\x9b\xb5\xf6\x05\x35\x13\xfb\xd1\x61\x17\x20\x53\x5e\xfb\x0d\xc8\x43\x6e\xc0\x7e\x98\x9d\xc1\x27\x1e\x28\x91\x84\xfd\x40\xce\xe3\xcc\xd5\xef\x1f\x08\x94\x5f\xa4\x75\xa4\xe3\x75\xc7\x02\x0b\x9f\x91\x38\x7f\xf0\xaa\x92\xc6\x36\xe0\x58\x3f\x84\xc3\x1f\x50\x77\x51\xf3\x50\x47\x3f\x6e\x78\xc2\x82\x0f\xde\x5d\x3e\x1f\xe3\x68\xa6\x38\x96\x21\x38\x6e\x24\x1d\x63\x41\x54\xe6\x2e\x1c\xd7\xb1\x1c\xb0\x8d\x0b\x42\x0a\x89\xdc\x51\xbf\x8f\xf8\x0a\x60\x6e\x3c\xf0\xb3\xd4\xa1\x50\x33\x71\x6d\x67\x3a\x7e\x57\xfe\xc4\x04\x1c\x18\x1d\x85\xea\x44\x9c\x30\x95\xbf\x75\x16\x88\x0f\xa4\x69\x13\xf4\x48\x5c\x1f\x51\x67\x3d\x86\x57\xef\xfa\x1c\x60\xa8\x0b\x0b\xc0\xea\x3a\xf2\x56\xa9\xf3\x82\x12\x89\xd4\x66\x82\x82\x2f\x12\xca\xf9\xc0\xbf\xbe\xf1\x15\xc0\xfe\xa4\x68\x03\x0a\xb1\xc1\x63\x3a\x5f\x68\xc7\x39\xc9\xd0\x5c\x36\x6a\x4e\xea\x3a\x9c\x06\x09\xd4\x75\x9d\x7d\xea\x73\x0a\x74\x0f\xc2\x2e\x96\x0a\xa8\x8e\xf6\xab\x00\x82\x9f\xa7\xfa\x2d\xf5\xce\xa0\xf1\xbc\x15\x6f\xe0\xf4\xd2\xa0\x55\x9f\xa3\xc1\x71\x7b\x42\x45\xb8\xed\xa0\x3a\xa6\x3e\x10\xb7\xe3\xde\x3c\x8c\x16\x39\xaf\x7a\x9c\x8d\x1c\x99\x6f\x17\xcc\xdf\x21\xbb\xa5\x3e\xd0\x7d\x4f\x76\xec\xc1\xf5\x44\xef\xb4\x0a\x36\x6a\xd0\x02\x5a\x91\x4b\x53\x1c\x8f\x76\x17\x9c\xe0\x44\x76\x1d\x40\xe9\x63\xc5\x2b\x40\x2a\xe1\xf1\x40\xbe\xc1\x4e\x8d\x72\x45\xb6\xbc\xde\x79\xa2\x4e\x2a\x36\x77\x79\x2f\xf5\x05\x44\x43\x69\x7c\x02\x5a\xa0\xc9\xed\x00\x26\xa9\x77\xce\xd8\x7b\x1f\xb3\x59\x67\x81\xd1\x8f\x3a\xe2\x95\x0b\x86\x8e\xc9\x02\x4c\x21\xb9\x04\x24\xae\x1a\x41\x71\x91\xb8\x6a\xd0\x6a\x51\x91\x68\xa8\x51\x71\x5b\x91\x48\xa7\x15\xe7\x44\x2b\xf2\xd5\x48\xec\x53\xf8\xe3\x48\xe3\x1e\xd3\x02\x93\x4c\xea\xff\x72\x81\x69\xc1\xa1\xe6\x1a\xa9\xb9\x68\x34\xaa\x79\xab\xda\x71\x1b\x41\xd2\x11\xe0\x31\xc8\x72\x57\x84\x78\x34\x0f\x99\xdc\x05\x0b\xc4\x96\x6d\xc8\x89\xf7\x66\x27\xe5\x3c\xc1\xcf\xc2\x92\x19\xcb\x0a\x06\xb2\x15\x5e\x60\x8a\xc0\xa7\x16\x23\xbf\x61\x48\x22\x8f\x05\x27\x99\x96\x49\x5b\x0d\xd9\x7f\x4f\x05\x1b\x85\x4f\x0c\xb5\x39\x15\x3e\x31\x7d\xc4\x57\x70\x09\xd2\xbb\xab\xea\xb1\xc5\xfd\x2a\xc0\x2a\xf2\x56\x04\xda\x79\x4f\x5c\xa3\xaf\x01\x5f\x92\x13\xf4\x01\x84\x20\x46\x6b\xa0\xd6\x79\xd1\x69\xa8\x02\xb9\x99\xe9\x45\x4b\xfd\x8e\x77\x36\xc9\xf1\x27\x47\xcb\xd6\x59\x00\x07\xb9\x16\xaf\x1c\xb0\x46\xdf\x5e\x70\x6a\x19\x9e\x96\x6e\x17\x4c\x88\xdb\xec\x98\xd9\x4b\x7b\xe2\x8c\x7d\x66\x0b\x1f\xf4\x01\xaf\x70\x59\x19\xbd\x72\xb4\x0a\xb5\xdb\x8a\x82\xb3\x83\xe2\x15\x63\x1b\x2a\xe9\xd1\xa7\x7f\xe1\x8a\x94\xfa\x7d\xd8\x41\xce\x61\xb7\x04\x25\xbf\xa3\x73\x95\x96\x2a\x28\xc5\x8c\x82\xc3\xda\xf1\x95\x0a\x18\x24\x97\x16\x5a\x82\xb1\xd2\x71\x90\x77\x01\x4e\x97\x73\xd8\x2d\x75\xec\x8f\xc5\x36\x90\xc2\xc7\x03\xe3\x76\x01\x16\xbb\xc7\x13\x38\x4c\xd1\x0f\x81\x73\x5b\x63\xc1\xd1\xa1\x0d\x7e\xf6\xc1\xd6\x76\x6d\x4e\x4b\x60\x09\x3d\x09\xfa\x2e\x78\xa0\xfc\xf5\xaf\x64\xb8\x46\xd0\x0d\xaf\xe5\x74\x6e\xb4\xea\x05\x30\x9f\x3b\xee\x4f\x69\xb9\xe2\x54\x3a\xe5\x6c\xb9\x9d\x39\x15\x16\x60\xf5\x07\x1b\x05\x48\x26\x59\xb1\x96\x3b\x86\x3f\xd9\x68\x87\x18\xc3\x75\xc9\xc6\x47\x4c\x7a\x99\xb5\x7c\x36\xee\x62\xa3\xc7\x0d\x2f\xc6\x02\x95\x2a\xf9\xbb\x96\x2f\xe0\x17\x70\x82\x10\x54\x32\x78\x1b\xb5\x0c\x4d\xbf\x07\xc2\xef\x02\xb0\x62\xc2\x36\x8e\xe1\x55\xd8\xd3\xc3\x8a\x35\xb6\x81\x40\xd2\x5f\x73\xfa\x1d\xdb\xb5\xbf\x52\xa0\x32\x73\xd0\xc6\xd2\x4a\x3b\xea\x61\x7f\x05\x32\x49\xe7\x5d\xd3\x4a\x3f\xd4\xc1\xfb\x51\xcc\xdd\xa4\x33\x1e\xa6\x15\x38\xfa\x2e\x6e\xa9\x32\x61\x01\xe5\xf0\x0b\x20\x2a\x0b\xa7\xb0\x00\xa3\x91\x3e\x5f\xad\x1c\xd6\x34\x9e\x00\xd4\x05\x6d\x01\x0d\x51\x26\xb2\xe2\x15\x18\x5c\xc8\xbe\xb4\x82\x4d\xe7\x19\x94\x76\x01\x98\x79\x1e\x8f\x82\x70\xa0\x1e\xaf\x1c\x7b\xaf\xf3\x33\xad\xc2\x77\xbc\x73\x3e\x2a\xfc\xfb\x3d\xa5\x4f\x69\x15\x70\x0d\xf4\x5c\x68\xb5\x21\x67\x08\x3b\x56\x61\x34\xa5\x7f\x44\x33\x60\xe2\x3c\xba\xb3\x2f\xad\x0e\x80\x1c\xf8\x55\xd0\xea\xc0\x2e\x5c\x2c\x10\xd8\xd1\xca\xbf\x78\x21\xb6\x0a\xb7\x33\xba\x37\x35\xf8\xf7\x0c\xaa\x46\x9b\x2b\xd7\xa3\x0b\x80\x9a\xa4\x73\x4a\x43\xa0\x7c\xe7\xf5\xdf\x10\x28\xdf\x1d\xe9\xaf\xb4\x8a\x98\x25\x07\x40\xdd\x05\xb0\xa7\x73\x2a\x5a\x3a\x73\xe3\x5f\x69\x15\xbb\xda\x89\x6d\x6b\x15\x0c\xb5\x8b\xab\xad\x21\x30\x35\x45\x1b\xe0\x5c\x68\x1e\x6d\x88\x36\x6f\x93\x4b\x82\x40\x97\x9e\x9c\x85\x68\x4d\xc0\x97\xf8\xad\xd8\x1a\xf8\x12\x9a\x01\x1a\x54\xf8\x23\x76\x75\x33\xa9\xa5\x8f\xc5\xcf\xc2\x1f\x8e\x52\x4b\x6b\xef\x99\x53\x6f\xa3\x9b\x99\x96\x31\xc6\xa5\xf5\x13\x4a\xc7\xf3\xd7\xa1\x00\xa2\xbf\x45\xeb\xc7\x2f\xcf\xf9\xe7\x36\xf2\x41\xf2\xf0\x9e\x8e\x82\xed\xc5\x19\x1b\x08\xeb\x59\xf1\xca\x3c\x73\xea\x33\x36\x00\x24\xe3\xd1\xa5\xa5\x0d\xa4\xa1\xa4\xc7\x5c\x9b\xe0\x8f\x06\x67\x7d\x42\x9d\x91\x48\x4a\xe7\x81\x19\x62\x1b\x53\x8e\xb0\xe4\x93\x3c\x15\x79\xa1\xdd\xd6\xd2\xe0\x6f\x31\x2b\x29\xa7\x40\xb9\x17\x67\x07\x50\xb5\xd3\xd3\x64\x97\x26\x50\xde\x78\x16\x8a\xd2\x04\x60\x0c\x83\xfd\x10\xa0\x32\x65\xee\x42\xf9\x70\x93\x70\xd6\xe5\x03\x02\xaa\xcb\x57\x4d\x00\xca\x97\xb8\x93\x05\x41\x14\x54\xcb\x36\x01\x77\xec\x20\x08\xa5\x2d\xc8\x9b\x74\xe4\x6c\x2b\xc1\x9e\xee\x32\x6b\x5b\xe9\x70\xa5\xde\xe8\x09\x96\xe9\x24\xa5\x2b\x63\xd3\x0d\x36\x8a\xdb\x68\xc6\x57\x20\x92\x15\xee\xc2\x75\x14\x40\xce\xd9\xb6\x55\x81\x8d\x45\x5a\xb2\xea\xc1\x36\x89\x82\xbf\x70\xd3\xca\xde\x07\x76\x90\xb9\xfa\x0b\x08\x7b\xd4\xb0\xb7\xd5\x10\x65\xc2\xb3\xbf\x1a\xdc\x2b\x3a\x5f\x39\xf0\xbf\x3c\xb7\x0b\xa2\xd0\xe4\xea\x03\xed\x77\xa6\x78\x02\x71\x82\x34\xde\xb6\x35\xcf\x7c\xf0\x2b\xf0\xea\xa0\x9e\xb6\xad\x89\xcb\xb8\x72\xb4\xe0\xcd\x18\x7b\xd9\x60\xe8\xef\x0c\x2c\x6d\xcb\x75\x57\x9c\x42\x30\xc0\x34\x8a\x35\xc0\xff\xf6\x5e\xe2\x95\x13\xbc\x10\x4f\xc0\x14\x42\x52\xba\x1c\xaa\x24\x3e\x0b\xfb\x4a\x67\x1b\x0b\x8e\x53\x95\x5d\xbf\x8e\xae\x89\x4f\x98\x44\xda\x18\x45\xd0\xd6\x05\x5b\x2d\x8f\x18\xf0\x80\x7b\xe2\xad\x08\x3c\xe0\x46\x7d\x60\x5b\xd0\x14\x74\x12\x83\x75\x1f\x1f\x38\xb6\xe1\xe2\x14\x87\x7f\xc3\x4f\x2a\x96\x01\xe2\x14\xed\xdf\x6d\x41\x9c\x8a\x5b\x71\xc1\x6f\x33\x91\x6c\xad\xf7\xe0\x9c\x71\x07\xbd\xc7\x73\x88\x83\x33\xbd\x59\xa7\x3b\x44\x03\x30\xef\x60\xb8\x66\x5b\x90\xc0\x16\x99\xb5\x05\xf5\x54\x8f\x36\xe0\xb3\x9d\x63\x9f\x82\x01\xae\xbc\xf3\xd6\x07\x7b\x53\xfd\x87\xcc\x90\xfb\x69\x3b\x5d\xb4\x0b\xb4\xf5\x9d\x4b\x35\x0a\x10\xa8\x4a\x5e\x6f\xc1\x4f\x3f\x71\x7b\x5d\x88\xa2\x9b\x24\xe9\x40\x07\x10\x9a\xcf\xdb\x01\xe6\xa5\x61\xad\x5d\xf9\x00\x36\xf2\x89\x02\xad\xae\x8b\xef\xed\x2a\x60\xa9\x48\x9f\xaf\x13\x34\x97\xe2\x15\x9c\x1d\x9e\x8c\x0b\x86\xed\xc9\x7b\x13\xa0\x04\x33\xa8\xef\x85\x2c\x58\x29\xc5\x2b\xd0\x61\x73\x27\x5c\xe6\x32\xd6\xe8\x77\xd5\x2e\xdc\x13\xc2\x5b\xf1\xaa\x08\xbb\x24\xdb\x7e\x01\x17\xce\x33\x3d\xed\x02\x20\xd3\x46\x1b\x90\xc0\x1c\x11\x6b\x17\xe0\xa8\xac\x78\x05\x4e\x76\xdc\xc4\x07\x0f\x98\xca\xe4\x06\x3c\xe0\x36\x62\x4e\x91\xda\x23\xf3\xd8\x5f\xb8\xc0\x4a\x8c\x16\x20\x6e\x9d\x67\xe7\x32\xbd\x64\xaf\xd1\xa8\xd9\x37\x99\x6c\x7d\x17\x40\x66\x25\x1d\x00\xda\x6f\xaf\xbf\x9e\x58\x60\xca\xa3\xc0\x48\x07\x85\xb6\x76\xd0\x7e\x13\x79\x5f\x60\xf9\xca\x88\x19\x5b\xc7\x1b\x99\x5f\x59\xa7\xeb\xf1\x04\xfc\x58\x79\x20\x2f\xa3\x14\x3d\xf1\x12\xbc\x0e\x22\x5b\x34\x7a\xc1\xc3\x74\x44\xc1\xc1\xd7\x64\x3f\xcc\x09\x73\x30\x9a\xa1\x5d\x37\x56\x8e\x64\xf0\x82\x13\x66\x8f\x65\x38\x6a\x15\x1e\xb7\xeb\x86\xb3\x40\x6c\x07\xa8\xee\xa8\xa9\x6b\x17\xa0\xe7\x3b\x2f\x1f\xa0\xec\x76\xba\xdf\xb4\x0b\xf8\x90\x23\xb6\x36\xbc\xdd\x7a\xcc\x3a\x54\x99\x69\xb0\x00\x19\x12\xe9\x93\xdb\x2e\xc5\x3e\xe5\xf0\xef\x84\xc8\x4a\xd2\x12\xe0\xaa\xca\xe0\x1e\xbb\x3f\xb0\x84\x64\xc5\x1e\x0b\xd9\xea\xb4\x92\xb5\x07\xce\x35\x83\x27\xfb\x59\x47\xa5\xea\xfd\x80\x0e\x8d\x89\x21\x4a\x7b\xe0\x61\x1a\x7c\xd5\x0b\x50\xdd\x44\xfa\x01\x04\xb9\x19\x7b\x1d\xca\xac\x99\x29\x71\xbc\x00\x86\xca\x12\x05\x27\x12\xc8\xb7\x94\xd6\x63\xcf\xf3\x36\x14\xb8\x2b\xf4\x95\x68\x96\x1c\x35\x00\x5f\x77\x01\x3c\x76\x28\xb3\x02\x10\x43\x42\x10\x06\x74\x04\x71\xe3\x4b\x83\x4e\x63\x52\x09\xdd\x3e\x80\xa6\x75\x32\x27\x48\x26\xc5\x14\x82\xbb\x00\xd4\x81\xb2\xf3\x49\xc3\x34\xc8\x8b\x7c\x37\x42\xa5\x38\x1f\xdf\x73\x5c\xcd\xce\xe0\x7a\x2a\x07\x67\x76\x78\x01\x90\xbe\x8b\x37\xda\x4f\x2c\x8b\x67\x59\x28\x3d\x9b\xab\xc8\xf4\x4c\x95\xa5\x23\xba\x83\x58\x82\xa5\xc3\x9e\x37\xb9\x71\x7b\x36\x35\xe4\xe4\x79\xe9\x10\x62\x85\xb1\x4e\x3d\xeb\x71\x9e\x60\xa3\xc7\xac\x53\xd8\x86\x1e\x06\xf8\xac\x7e\x2f\xc0\xc5\x72\x80\x95\x5d\x00\x55\x77\x62\x41\x87\xa3\x82\xb3\x1e\x1d\xb8\x07\xd2\xdd\xb3\xb3\x97\xe3\x5a\xe5\x26\xaa\x5e\x5e\x44\xaa\xd4\x7f\xc0\x8d\x2f\xbd\xe2\xf2\x21\xc0\x43\xaf\x50\x49\x8e\x5f\x05\xb8\x38\x9c\x84\xf5\x76\xd4\x19\x4e\x5c\x7a\xc3\xc5\xb1\xfc\xea\xee\x48\x88\xd2\xe8\x58\xde\x1b\x8c\x40\x9e\xa1\xb4\xf4\x06\xef\x3f\xf2\x47\xbd\x0d\x68\x2f\x9c\x40\x75\x80\x77\x09\x21\x20\x7a\x5b\xd0\x94\x3b\x5f\xd2\x7b\x05\x9e\x9e\x6b\x73\x36\x41\xfc\x63\x50\xfe\x51\x00\x69\x81\xf3\xdb\x01\xa2\xb3\xa2\x0d\x28\x4d\x88\x1a\xd1\xbb\x5d\x0b\x9d\xfe\x5f\xbd\xf7\xd3\x0f\x9f\x8f\x0e\xae\xb4\x3b\x19\xec\x1d\x17\x87\x63\x9c\xef\x82\x33\x38\xb6\x71\x2c\x18\xd1\x0f\x38\x0e\x53\x43\xd6\xbb\xc0\x90\x3b\xd9\xc6\x7d\x1c\x06\x7d\x4e\x01\x13\xd0\x7b\xe7\x67\x5f\x68\xa8\xfd\x64\x74\xc0\x04\xcc\xec\xf7\x55\x1f\x26\xf8\x4d\x7a\x64\xf4\x81\x09\xa2\xd1\xa3\x0f\xdc\x8a\x9e\x59\xaa\xf4\x01\x17\x67\x5e\x82\x5b\xf0\x06\xeb\xe1\x63\x19\x30\xe3\x67\xee\x48\x38\x40\x31\xf5\x45\xe9\x90\xe2\x5a\xe7\x58\x26\xf0\x2a\xe9\xda\xd8\x21\xd6\x35\x46\xf1\xf4\x79\xec\xe9\xce\x62\xf6\x69\x86\xc6\x11\xfb\xe3\xf8\xe6\xd3\x4f\xb8\xc3\xaf\xbe\x3b\xfc\x54\xe9\x10\xfc\x5a\xe6\xb1\x9f\x7a\xf0\x8e\x7d\x9f\x0a\xc0\xa5\x72\x8b\x02\x28\x4d\xf8\x8a\x1c\xfb\x26\x3b\x26\x0f\xee\x6f\x61\xc1\x7b\x2c\x6d\x3e\x38\x81\x82\x30\xf3\x78\xac\x04\x58\x5b\x37\x8e\xf7\x05\x5c\x1a\x86\x90\xf6\xd5\x0f\xc4\xaa\xcf\xfa\xe1\xc1\xa9\xb7\xee\xeb\x81\xd8\x4f\xe2\x82\xdc\x04\xe2\x70\x50\xa5\xe3\xca\x97\xe1\xfc\x73\xbf\x60\x01\xcd\xf1\xca\x41\x88\x2e\x51\x00\xfb\xa6\xcb\x57\x1d\x97\x60\x8f\xf3\x02\x60\xf0\xc9\x00\xa4\x0e\x04\x6d\x21\x00\x41\xbf\x71\xc3\x7b\x7e\xd1\x5d\x00\xd0\x29\x36\x0a\x78\x81\xce\x68\xf1\x0e\xcc\xe3\x56\x49\xf5\xee\xe3\x16\xc5\x8d\x6b\x78\xc5\xb9\xc5\xba\x3c\xd0\x03\x74\x67\xca\xfb\x03\xf6\xb6\x90\xa0\x00\x19\x98\x78\xb1\xa5\x9f\x28\xfe\xc4\x9d\xfc\x00\x33\xa4\x72\x07\x3d\xc8\xbb\x46\x1f\xc3\xfe\x20\xde\x88\x8c\x67\x7f\x90\xa1\x3a\x06\x07\xfb\x55\x23\x66\x41\x7f\x81\x59\x10\x83\x7b\x81\x7b\x49\xab\x72\x7f\x21\xc4\x16\x52\xf0\x77\xc1\xc5\x92\xbb\x10\xb6\xa7\x45\x2f\x86\x8e\x38\xee\x5e\x12\x0b\x1a\x62\xc1\x39\x16\x24\xbc\x17\x87\xe9\xda\x05\xf0\xd9\x70\x29\xae\x23\xe3\x7d\xa3\xf4\xd4\xf5\x00\xec\x3a\x9f\xd9\x15\x58\xde\x64\x1b\xfa\x89\x4a\xa6\x79\xb7\x9f\xa8\xe4\x41\x12\x0c\x94\xab\x51\xb9\x4f\x2d\xf9\xe9\xa6\xeb\xfe\xca\x87\x23\x96\x5c\xb1\xdf\x81\x09\xd5\x09\xff\x32\x00\xdb\xb4\x68\xd7\x18\xa9\x9c\xd0\x95\xea\x05\xed\xa8\x96\xf8\x04\x22\x33\x5a\xfb\x87\x84\x92\x65\x24\x81\x4e\xc0\x95\xa7\x23\x2d\x5c\x88\x4e\x18\x46\x02\xef\xcb\x2b\x73\x20\x3d\x21\x51\x1f\xcb\xc8\xe9\xe0\xaf\x7b\x1b\xb9\x20\x9c\xcd\x4f\xc6\xc8\xfd\x28\x4d\x16\x0b\xe0\xb4\xe0\xeb\x3c\xf2\x31\x5c\x3a\x9b\x3a\xa0\x8f\xef\xc4\x62\x18\xf9\x82\x79\xd4\x57\x71\xe4\x0b\xd1\x55\x85\xfd\xb8\xff\xc2\x81\x2f\x23\x23\x2e\x9c\xe6\xd1\x81\x34\x7c\x9d\x2e\x2b\xa3\x0c\x5c\x2d\x12\x05\x80\xa3\xf2\x03\x39\x0a\xf2\x2e\x79\xde\x86\x32\xca\x0b\x8f\x0c\x17\x1e\x47\x85\xb2\x93\xa2\xd0\xa8\x88\x22\x20\x3b\x34\x4e\x8a\x3b\xcf\x30\x51\x46\xed\x27\xde\xcf\x7b\x5a\x91\x12\xc8\x31\x18\xcb\x80\xcb\xca\x24\xb3\x33\xa0\x74\xed\x8c\x59\x1a\xcd\x67\xdd\xe7\xa3\x21\x7c\x84\xd7\xf5\x68\x0e\xd2\x92\x59\x80\x7d\xbf\xf8\x4a\x3b\xb8\xf8\x6c\x74\x1c\xff\x13\xef\x7a\x13\xa8\x21\x5d\x32\x1e\xed\xa4\x09\xf0\x7d\x3f\x1a\xb4\x39\xc5\x6f\xf8\xd1\x60\x26\x62\x8c\xc0\x68\x0b\x86\x5c\xbf\x9e\x46\x3f\x2a\x44\x97\x5a\x46\x9f\x80\xc2\x74\xbe\x75\x00\x3e\xb2\x17\x17\x63\x46\x87\x5a\x85\x24\x6c\x74\xd8\x05\xba\xb3\x2f\x63\x20\x1f\x0f\x63\xc9\xc6\x00\x28\x60\xe1\x04\x0d\xa4\x46\x19\xf1\xca\x7d\xac\x53\x93\x05\x50\x0c\xb0\xeb\xe3\x3d\xe8\xa4\x6c\x54\x31\x16\xce\x07\xc2\x13\x89\xe9\x5f\x06\xbc\x3a\xa6\x23\x0d\x96\x31\xdb\x51\xb9\xfb\x62\xcf\xc3\x84\x72\x27\x23\xfa\x4e\xa8\xea\x1e\x70\x3e\xee\xf1\xd9\x89\x1b\xad\x3a\xa5\x18\x92\x0f\x5a\x83\x4f\xa1\x9c\x80\x10\x9e\x4a\x39\x9c\x17\xb7\x94\x1c\x96\x90\xcb\x20\x02\x0f\x6f\xa7\x47\x43\xe0\x43\x46\x9d\xc6\x90\x23\x3b\xbb\x36\x78\xc8\xe1\x23\xfc\xae\x19\x0b\x38\x6a\x8e\x49\x58\x06\x62\x96\x26\xb1\xb6\x06\x3c\x90\x99\x7e\xa0\x0c\x78\x20\x33\xdd\x40\x19\x0b\xce\xb1\xd4\x5b\x8f\x75\x12\xbd\x91\x7e\x2c\xd8\xc0\x28\x70\x8d\x05\x98\xd3\x4c\x42\x89\x0c\x51\x4c\x48\x50\xc6\x89\xfe\xa1\x2f\xfa\xb8\x80\xbf\x40\x1b\xe9\xb8\x8e\x45\x87\xa7\xf2\xa8\x52\x8a\x33\x6b\x03\x5a\x8f\x4e\x08\x99\x81\x2c\x48\x8d\x7e\xe4\xe3\x4e\x50\x1d\x90\x4a\xdd\xc0\x1d\x61\x04\xd1\xb8\x8f\xc3\x7f\x3c\x01\xe5\xd3\x22\x85\x39\x39\x5b\x3c\xd7\xf4\x2e\x80\x1d\xcd\x2f\xd2\x71\xf7\x83\x25\xbb\x58\x70\xd4\xe5\xec\x07\x62\xfc\x18\x6b\x38\x90\x2c\x65\xc4\x4e\xbe\x11\x10\x42\x09\x61\x20\x6b\x49\xcf\x8b\x5f\xc1\xad\x48\x44\x82\x71\x23\x20\xab\xf2\xcc\xdd\x0b\xfa\x51\x67\xe7\xc6\xbd\xce\x24\xb3\xe0\x20\x7a\x65\x16\xc0\xca\x3e\x38\xa7\x37\x54\x7e\xc4\x1b\x18\x60\x4e\x5a\x10\xc7\xe7\xb8\x78\xfd\x4b\xbe\xc9\xfd\x34\x6e\x48\x6e\xf3\xa7\xc1\xbb\xd2\xd5\x4c\xe3\x01\x1c\x1c\xa1\xa4\xc6\x63\x2a\xeb\x46\x5e\x6f\x3c\x48\x72\xe7\xe0\xe3\xbb\x00\x86\x02\x92\xd2\x93\x3c\x60\x44\x27\xaf\xb3\x79\x7c\x05\x8e\x4b\xd0\x88\x7e\x98\xe8\xdd\xc8\x83\x8f\x07\xb6\x38\x22\x47\x0d\x70\x50\x9d\x26\x9e\xf1\x3c\xc7\x05\x86\xaf\x20\x11\x07\x11\x8a\xc6\x41\xa6\x9f\xa4\x8b\x2f\x36\x0f\x43\x15\xc7\x5b\x8e\xb7\x69\xbc\x02\x1b\x63\x89\x02\x98\x7a\x79\x54\x5e\xf8\xb3\x77\x5e\x93\x40\x28\xea\x83\x5c\xc7\xc1\xbb\x27\xec\xd1\x00\xde\xfd\x20\x6a\xe3\x00\xce\x7c\xa7\xdc\x3b\x80\x0c\x24\x64\x86\x07\xdc\xb5\x87\xc4\x13\xd7\x89\xc0\x99\x2c\xb0\xd3\x15\xf7\x26\x1c\xba\x5b\xe1\xed\x0c\x87\xee\xde\xb8\xab\xdf\x0b\xe7\x6f\x45\xa3\x03\x1d\xe3\x7c\x40\x0f\x17\x73\x7a\x80\xe5\x69\x27\x19\x40\x89\x97\x49\xaa\x07\x8d\x50\xa7\xa8\x3c\xa0\x11\x1a\x2b\x1a\x85\xfd\x8a\x58\x0c\x03\x20\xf0\x9d\x21\xfe\x43\x01\xf0\x40\x34\xae\xa1\x09\x2e\x63\x5c\x4a\xcd\xe7\xb8\xf1\x95\x86\x40\x55\x52\x3d\x35\x66\xb8\x55\x2e\xb6\x36\x48\x0b\x9c\x0f\x6d\x27\x24\x9f\x4f\x0c\x40\x40\x70\x5d\x14\x92\x20\x5d\x67\x06\xb0\x83\x5a\x25\xa5\xd0\x93\x47\xb2\xf1\x15\x41\x86\xec\xe8\x18\x12\x65\xac\xf8\x2c\x2e\xb0\xc4\x3d\xa6\x27\x21\x36\x99\x50\x3d\x60\xfd\xd1\xb1\x17\x56\x21\xce\xba\x02\x5e\x20\x93\x30\x28\xcc\x99\x85\x0c\x0e\x02\xf6\x5a\x8f\x9e\x22\x1f\x6e\xfe\xf5\x59\x1b\x0b\x4d\x1a\x03\x28\x3c\x8d\x3a\x8d\xf1\xc1\x88\x1c\x7b\x0c\x8e\xf6\x83\x46\xd3\x71\x32\xa8\x67\x4e\x32\x42\xfa\x06\xa5\xfc\xf1\xdd\x80\x90\x26\xb9\xf8\x60\x49\x21\xa7\x3f\x80\x7e\xd3\x3d\xdf\x50\x99\x09\xb7\xe2\x74\x82\x3d\xe1\x8a\x2f\x44\x05\x9b\xd0\xb2\x35\x4f\x5b\xb7\x0b\x4e\x04\x7e\xf1\x02\x5b\x86\xe6\xd9\xd0\xca\x4c\xce\x00\x47\xc1\x31\x23\x26\x16\xc0\x5b\xdd\xad\xa8\x13\x48\xa9\xad\x46\xc7\x5e\x44\x57\x09\xdb\xf8\x20\xc5\x55\x76\xec\x3b\x61\x5f\xde\x8f\x9c\x00\x7d\xe8\x53\x38\x81\xa5\xda\x88\xc7\x34\x33\x9c\x27\xe8\x14\x37\x33\x2c\x1f\x9e\xf0\x73\x17\x1c\x3b\x0f\x0b\x06\x42\x8c\x33\xbf\x72\x60\x2d\x7d\xc3\xcc\x0c\x53\x24\x4d\x10\xf3\x68\x0c\x1d\x68\xba\xcc\xe3\xd4\x42\xb4\xc4\x79\x72\x68\xd3\xa7\x67\x16\x39\xa9\x7d\x32\x0b\xc0\xdf\x71\x92\x0b\xb6\x36\x51\xe3\x66\xb9\xff\x4a\x8f\xb1\x0b\xa0\x6d\x98\x2c\x50\xf0\x33\xce\xad\xcc\xda\xcf\x9c\x7a\x1b\x75\xc1\x26\xd1\xfe\xc5\x0b\x71\x22\xcb\xc0\xa2\x49\x63\x36\x24\x75\x2b\x4e\x5c\x26\x1c\xcb\x85\xe8\x04\x13\x4c\x79\x27\xc1\x9e\x4d\x90\x57\xdd\x89\xed\xec\x50\x45\x90\x2f\x99\x1d\xb1\x31\xbc\x15\xe7\x41\xc5\xa4\xca\x7a\xf6\xa3\x68\xe0\xdc\x74\x80\xa3\xd0\xf1\x61\xf6\x93\x74\xd3\x35\xe5\x73\x1c\xc8\x68\xbf\xc0\xe6\x48\x27\xaa\x90\x4f\xd4\xc3\x97\x34\x16\x40\x38\xe7\xfc\x8e\x7e\x94\x6a\x51\x00\x46\xd6\x85\x83\x39\x4e\x56\x37\x8e\x76\x00\xcc\x9f\x06\xe5\x39\xe1\x32\x46\xcb\xd2\x9c\x15\xf8\x43\x4e\x06\xe7\xac\xb8\xf3\x9c\x84\xcd\xc3\x94\xd3\xe4\x35\x67\x07\xaa\x4f\xe2\x2b\xc7\x79\x89\x73\x3a\x91\x52\xad\x70\x57\x83\x29\x17\x42\xa6\x4c\x41\x96\xf7\xd8\xb3\x32\x11\x12\xe0\xac\xc7\x94\x75\xb2\x12\xf9\x9c\xca\x7d\xa4\x16\xb6\x01\xdf\x11\x72\x09\x73\xe1\x42\xf7\xfc\x9e\x65\x9e\xf8\x3c\x12\xca\xb9\x60\x03\x8b\x5d\xbd\xec\xaa\x9d\x64\x64\xe7\x02\x6c\x21\xc1\x49\xe7\xfa\x4e\x81\xbf\x72\x81\x6f\xa5\xd6\x71\xc2\xac\x3a\x78\xa1\xcf\x63\x79\xa4\xd5\x7e\x22\x03\xe8\xa0\x49\x63\x5e\x1d\x6e\xc1\x9c\x64\xcf\xcd\xc9\xcf\x5e\x02\x8b\x7b\xe1\x67\x6f\x10\x28\xae\xed\x85\xc8\x55\xc6\xc6\x4f\xe4\x5e\x64\x36\xe1\x32\x4f\xde\xc4\x78\xe5\x4e\x27\x99\x96\x7f\xf6\xce\x27\xe1\xae\x7f\xf6\xae\x20\xa5\xae\xef\x99\x37\x76\x61\xee\xf1\x04\x8e\xac\x5f\x2d\xf3\x6e\x10\xb7\xa3\xc0\x08\xd4\x22\x10\xc9\x44\xaa\xb1\x15\x9b\xff\x46\x4f\x07\x37\xee\x83\x1b\x5e\xb8\x0c\x0f\x10\x63\x18\x2c\x3f\x1f\x13\x40\x85\x7a\xeb\xf9\x20\x6b\x26\x35\xec\xf3\x85\xc7\x4e\xec\x0f\xc4\xf9\x37\x02\x92\xce\xb7\x03\x25\x8d\x44\xff\x3d\xfa\xf3\x68\x63\x9e\x2c\x4a\x7c\x45\x0e\xc4\x17\x9f\x90\x83\xe4\xe3\x5b\xea\x85\xc8\xce\x90\xcf\x09\x77\xed\x46\xa7\x96\x09\xae\xa9\x33\xec\x64\x6a\x3b\xae\x66\x8d\x05\x30\xdf\xb9\x62\x6e\x02\x01\x6f\x64\xf6\xf4\x3b\xa8\x7c\xbe\xa5\x24\x01\xd0\x9e\x11\x22\x92\x70\xf9\x78\xe6\xb4\x22\x09\x29\x30\xe9\x6c\x24\xa9\x9c\x6c\x6c\x93\x05\xc8\xc6\x36\xf8\x04\xac\x53\xc4\x1d\x91\xa3\xf3\x22\xf9\x94\x74\xb2\x14\x0a\x5f\xb9\xa1\x50\x77\x81\x5c\xd2\x0d\x31\xd7\xf7\x98\x24\x40\x49\x51\x63\x21\x49\x4f\xec\x25\xbf\x82\xd8\xe7\xee\xd4\x52\x72\x01\xe3\xe9\xa2\xa1\x00\x03\x8d\x19\xdc\x8a\x64\xe4\xc3\xcd\xec\x58\x1e\x27\xfc\xcc\x3b\x96\x4f\xe6\x6c\x3f\x62\x92\xaf\xd3\x06\x0b\xee\x73\x3b\xfb\x7c\x14\x24\x57\x58\x2e\x21\x48\xc1\xf1\xe8\xec\x7a\x41\xd4\x0d\x7d\x50\x05\xce\xa0\x33\xff\x53\x1c\x98\x20\xe6\x7f\x32\x0a\x57\xca\x82\xbd\xd4\x89\x8b\x14\x00\xb6\x33\xfa\x5c\x0a\x20\x72\xe9\x5e\x21\xf5\xa8\xac\xfd\xb8\x49\x45\x27\xe9\x28\x2b\xf5\xb8\xae\xb9\x5b\x83\x00\x20\xad\x79\xe2\x98\x22\x70\xa6\x6c\x44\xe5\x93\x3a\xa0\x88\xe2\x40\xab\x99\x25\x47\xf1\xdb\x5e\xea\xc9\x68\xe9\x84\x41\xa0\x21\x6b\x64\xca\xa5\x0d\x6c\x1e\xe7\xe4\x04\x96\xb6\x49\x9f\x0d\x81\x9f\x62\x27\xd8\x9b\xb4\xe3\x00\xe5\xdb\x5c\x7a\x82\x4f\xbc\x13\x6c\xe9\x15\x6b\xe4\x37\x89\xf4\x8a\xd3\xd5\x58\x30\xce\x13\xde\xb1\xae\x07\xdf\x82\x8d\x7e\x48\xa4\xc9\x83\x80\xe8\xaa\xe6\x39\xf2\x76\x01\x2c\x5c\xce\x73\xca\x80\xdd\x88\xde\x14\x32\x80\xfc\x42\x6f\x75\x19\x27\x4f\xe6\x62\xa3\x17\x5c\xe0\x9d\xc8\xc9\xb0\xfb\x6a\x51\xdd\x2c\x03\x50\x90\xcc\x34\x20\xe3\x85\xdc\x9b\xd8\xa8\x9e\xe4\x1c\x5e\x80\xeb\x5a\x88\x74\xb8\xc5\x59\x3c\xe1\x8d\x4a\x82\x73\x0d\x3b\x26\x30\x39\x27\xee\xa0\x65\x3c\xe7\x4a\x3c\x6e\xf0\xba\x6b\x0c\x63\x97\x05\x0a\x4e\x64\x6c\x59\x0d\x79\xf6\x0a\x5f\x01\xa7\x41\x9c\x3a\x59\x07\x4d\xd3\x45\x65\x59\x48\x8e\x42\xde\x57\x16\xd6\x85\xfe\xb4\x82\x0c\xfa\x8b\xd1\x66\xb2\x10\x70\x43\x1f\x43\x81\xb7\x5b\xaf\x5c\x5b\x68\xb7\x1a\x11\x0e\x64\xd9\xac\x0f\xc2\x41\xcb\xf1\x32\xa3\x7a\x47\xe0\x32\xc6\x3c\x8d\xbb\xc0\xf4\x81\x54\x77\xc9\x82\xdf\x07\x55\x77\xb2\xde\x13\x12\xc0\x19\x7b\x71\xb3\xc6\x13\xb0\x3e\x10\x11\x44\xe0\xff\x25\x12\xf3\xa1\xb8\xae\x79\x4c\x8f\x37\x16\xf1\xf2\xe4\x24\x66\xa7\x99\x59\xe0\x9e\xd5\x18\xd7\x2e\x0b\xbe\xe8\xf4\xac\x96\x0b\xab\x4f\x40\x22\xb9\x8e\xcf\xa5\x5f\xc6\x72\x3c\xa9\x2a\x89\x3e\xdc\xa2\x06\xe3\x50\xe4\x42\x76\x4c\x82\x18\xc8\x75\xa2\xb4\xb9\x72\xc8\x79\xde\xa8\xc2\x90\xe3\x16\x55\x49\x94\xae\x63\x57\xe4\xca\x5d\x0d\x21\xe8\x29\xda\x38\x7a\xeb\x68\x03\x21\xc6\x7e\xc5\x09\x5c\xab\x06\xc3\x72\x05\x00\x42\xbd\x46\x1b\xb0\x7c\x78\x6e\xbc\x5d\x80\xe8\xe8\xe8\x29\xac\xdb\x41\xfa\x2e\xe8\x9a\xa8\x54\x93\x0b\x56\x65\xb2\xc8\x72\x39\x40\x4c\x67\x01\x8e\x69\x8e\x02\xf8\x05\x91\xe8\x5f\x47\xd7\xc4\x0b\x0c\xe9\xb8\x1b\x21\x0a\xe4\x7a\xe0\xda\x58\xe2\x15\xec\x20\x89\x27\xe0\x7b\x16\x63\x79\x81\xf0\x1f\x4f\xbc\x27\xe2\x95\x6d\x40\xca\xa0\x77\x89\x5c\x7a\xb0\xae\xd9\x0f\xa4\x41\xf9\xd5\x86\x1e\x47\x5f\xce\xa9\x82\xae\x4b\x34\x8a\x0c\x43\x31\x7c\xec\xb1\x4a\x2a\x75\x1f\x11\x75\xfe\x8b\x0d\x4c\xa0\xa2\x6d\x93\xbb\xe9\x86\xbd\x94\x81\x1d\xe2\x40\x13\x33\x0a\x60\x15\x92\x78\x05\xd1\x7c\xdc\xa2\x37\xf4\xcf\x74\x8d\x90\xbb\x1c\x8b\xbb\x0f\xf4\x3e\x4e\x1c\xa4\x9c\xf7\x41\xf7\xe5\x91\xbd\xe1\xa8\x17\x77\x0d\x14\xc1\xbd\x0e\x0e\x74\x1c\x97\x31\xb6\x01\xeb\x5f\x25\x19\x04\xdf\xda\x2b\x27\x0b\x39\xb1\x47\xf0\x25\xf7\x38\x5d\xf7\x09\x07\x6e\xfe\x4c\x93\x83\x83\xbe\x87\x9c\xad\xdc\xb0\x96\x17\x9e\x1d\x28\x82\x07\xd1\xdf\xe4\x86\x99\x36\x6e\xf8\x03\x8b\x35\x63\x70\x70\x61\xa5\x00\x2a\x48\x21\x2c\xf4\x10\x93\x1b\xea\x1d\x86\xf6\xca\x0d\x77\x2f\x06\x33\xca\xfd\x1e\x4c\x35\xdf\x4d\x37\x7c\x84\xa8\xf5\x17\x58\xcb\x67\x22\x29\xbd\xe1\xba\x46\xc1\x4f\x4e\x0e\xe1\x54\xe2\x89\xe3\x19\xc2\xae\x2b\x76\x13\x69\x09\x7c\xd9\x3a\xcd\x00\x02\xfc\xfe\xc6\x50\x67\x79\x00\x05\x43\x15\xa2\x3c\x87\x91\xe5\x7d\xf5\x00\xa8\x8d\x48\x87\xf2\x00\x52\xda\x33\x05\x16\x79\x0a\x0e\x82\x8b\xfd\x72\x80\x48\x3c\xbb\xd7\x2e\x80\x5b\x30\xf9\x88\xa7\x22\x1e\xb4\x44\x01\xfc\x60\x48\xd2\x91\x03\xa0\x53\xa7\x2f\x0f\xf0\x4f\x6a\xe2\x67\xc1\xac\x15\x5e\x0b\xcf\x0b\x87\x30\x76\x1d\x99\x4b\x7b\x25\x71\x81\x91\x7e\xd2\x05\x5e\xde\x93\xa8\x8d\x07\xe8\x60\xab\x0f\xce\x07\x60\x35\x1a\xc3\x8b\x04\x71\x93\x23\x98\x13\x3d\x1b\x97\x0b\xa5\x70\x28\x25\x0c\xb3\x28\x00\x5f\x69\x44\x16\x60\x89\x4f\xc2\x6a\x88\x42\xba\x8e\xdb\x19\x48\x1c\x6d\xc6\x13\x2f\x1c\x4a\x79\x1a\x14\x3b\xa8\x72\x3b\x20\x2c\x50\xc8\x2e\xaf\x34\xb1\xb5\x5d\xdc\x5e\x47\x53\x47\x0d\xfb\x3a\xa1\x74\x14\xda\x56\x42\xdc\x93\x67\x7f\x2b\x0b\x9a\xba\x46\xb7\xa8\x95\x80\xd9\x49\x4d\xdd\x4a\xb0\x4d\x72\xc3\x2c\xe0\x43\x77\xc2\x73\x2d\x20\x37\xf7\x91\xd8\xa8\x1e\x30\xc0\x78\x02\x27\xdb\xd7\x76\x25\x3d\xa1\x63\x67\x19\x16\x54\x77\x93\xfe\x27\x2b\x67\x68\x72\xd9\x68\xae\xa7\x0d\x1f\x6d\x6e\x50\x0b\xb1\xa7\x0e\x35\xe6\x84\x6d\x65\x58\x1e\x29\xf8\xad\x0c\x94\x53\x9a\xdd\x57\x3e\x71\x4a\x7e\xe7\xad\x0c\xf8\x36\x62\xba\xae\x7c\x94\xbf\x4e\x94\x56\xc6\xa9\xa4\x41\x6b\x35\x40\xed\x53\xb9\xb7\x90\x26\x53\x28\xd4\xaf\x06\x96\x90\x9a\xfe\x05\xc8\x86\xb6\xfc\x44\xad\x06\x1e\x91\x00\xda\xab\x01\x7b\x8c\xee\x48\xab\x01\xc6\x91\xc6\xfd\xd5\x80\x61\x5a\x07\x0b\x90\x93\x91\xae\x22\xab\xe9\x5f\xc9\xaa\xcb\xea\x70\x6c\x9d\x5c\x86\x93\xfa\x90\x81\x72\xab\x83\xbf\x63\x24\xf2\xea\xef\xf1\x95\xfe\x17\x15\xe2\xea\x7a\x52\x70\xf3\x75\x20\x60\xd0\x27\x66\x01\x59\x60\x52\x5a\x5f\x13\x1c\xd4\x70\x6a\xb3\xe6\x7b\x5e\xf1\x3e\x09\xb2\x1f\x30\xbe\x6d\xc1\xff\xab\x51\x14\x5a\x02\x6b\x0c\x01\xb0\x16\x70\x33\x85\x70\x32\x4b\xf4\xa0\x2d\xf9\x7e\x43\x9c\x4f\xaf\x8b\x4f\x7c\x70\x4b\x74\x12\xb6\x8e\xff\x17\x71\xb7\x16\x60\x32\x1b\x65\x92\x75\x02\x6e\x88\x02\xbf\x96\xb1\x76\x8b\x61\x2c\x6b\x19\x27\x27\x22\xf1\x04\xfc\xd0\xd8\xd3\x75\xb2\x63\xb8\x7e\x63\xad\x7e\x2e\x30\x1f\xfe\x81\xb8\x64\xf2\xa6\xb5\x16\x12\x48\x34\xf6\x03\x00\xb8\xcc\x29\xb6\x16\x10\x68\xa6\x5f\x60\x0b\xfe\xfd\x42\x9c\xe7\x75\x35\x1c\x37\x3e\x71\xec\xc7\x71\xba\x0e\xc6\x15\x81\x56\xd7\x7d\x0e\x02\xc9\xcf\x03\x6d\x0e\xbd\x3a\xd6\x03\xd7\x08\xb2\xed\xeb\x45\x6a\xb7\xe8\xd8\xdb\xcf\x58\xfc\xb3\xc8\xd2\x31\x18\xb6\xbd\xa0\xef\xe9\x54\x44\xad\x77\x01\xbd\xd5\x69\xfc\x7a\xcd\x4f\x71\x12\x00\x77\x21\x1a\x7f\xd0\x2b\x73\x9d\x70\x7a\x1a\x09\x97\x22\x5f\xdc\x88\x82\xeb\x64\xa7\xf6\xf9\x50\x3b\x08\x8b\x79\x5e\x96\x3e\x27\x5b\x29\x0b\x3e\x4c\xa1\x6b\x40\xd6\x07\x7d\x4f\x34\x8a\x34\x0a\x42\x6c\xf5\x85\x48\xef\x46\xdb\xe4\x82\xbd\x66\xd0\xb3\xfa\x42\x62\x01\x61\x2c\xd9\x85\xbc\x75\xad\xf8\x5d\x73\xa5\x13\x49\x58\x59\x00\xbe\x95\x80\xc0\x17\x48\x69\x67\x0a\x84\x2b\x21\x40\x8d\xb9\x08\x2e\x58\x52\x1a\x7d\x7a\xae\x04\xfd\x39\x23\x00\xae\x9c\xb0\x4f\x9d\x59\xbb\x72\x01\xcc\xae\x5f\x3e\x57\xae\xc8\x8d\xec\xe7\xe5\xca\x00\x13\x62\x90\xe9\x95\xe1\xe2\x4c\x6a\x73\x65\x24\xf7\x1a\xf1\x95\x85\x46\x2b\x0b\x80\x0c\x44\x9b\xfc\x95\xe1\x6e\xd2\xa2\xd1\x1b\x27\x6a\xf0\x09\x40\x7d\xd3\xac\x7a\x65\xb0\x40\xd4\xd4\x5d\x70\xc6\x6e\x84\x71\xbc\x80\x83\xd4\x18\x3b\x75\x95\xe3\x4c\xc2\x8e\x95\x05\xae\xc9\x4f\xd4\x75\x8c\x2f\x04\x9d\xbe\xca\x7d\x02\x66\xe3\x89\x81\xbb\x86\x5f\xb9\x8f\x2c\x10\x4f\x1c\x5d\x93\xaf\x5c\x81\x71\x8e\xb8\x7d\x57\xf9\xa0\x52\xe5\x52\xc2\x1b\x4b\x96\x8b\x20\x57\x05\x8e\x1a\xe3\xf3\x2e\x80\xe0\x37\x9a\xcc\xaf\x06\x28\x59\x5a\x0d\xaf\x76\x2e\x41\x27\x7d\x57\x7f\x4e\x24\x42\x63\x01\x4e\x14\xd7\x76\x24\x60\xc2\xf9\x4d\x72\xc1\x58\xc2\xec\xbe\xe5\x42\x4a\xd8\xc1\xc0\x94\xeb\x64\x6f\x2d\x7e\x08\xaf\x71\x1c\xfe\x9d\xaf\xba\x5e\x58\x93\x32\x7b\xaa\x03\x4c\x92\x53\x87\xbb\x15\x04\x1e\xf8\xdd\x7b\x43\x81\x35\x18\xab\x70\x2f\xc4\xb5\x17\x3f\xd9\x37\x02\x53\x26\x95\xe1\xf7\xf3\xe2\x09\x1f\xfe\xd3\xbf\x93\x89\xe2\x3c\xf1\xb8\x09\x42\xfe\x56\x21\x96\xfa\xbf\xb9\xbf\xde\x0f\x28\x3f\xb4\xbd\x7c\x02\x1d\xbf\x34\x16\x20\x92\x95\x68\x16\x1f\xd0\xb6\x67\xf5\x25\xfa\x0e\xda\x36\x11\xd4\x3e\x41\x12\x25\xc6\xa9\x7a\xda\x59\x62\x3e\x7e\x80\xce\x66\x1a\xf6\xf2\x09\x32\x7f\xf0\xa4\x7c\xb2\x00\x02\xe9\x04\xfc\x13\xb8\x17\xd0\x63\xec\x93\xe7\x38\x75\x14\x2f\x38\x20\x36\xce\xea\x7d\x2b\x21\x15\x2d\xc7\x02\x44\xe6\x41\x6f\xfe\x0f\x17\xda\x64\x3e\xba\x0f\xa1\x8b\x8d\x3b\xe3\x3b\xa1\x8b\xc5\x09\xc5\xb7\xee\xf2\x97\xd9\xf6\x83\x42\xa8\x97\xf8\xec\x7b\xcc\x02\xc2\x02\x18\xcb\x9d\x70\x7e\x57\x3e\x5c\xea\xff\x19\xae\xf2\x3f\xaf\xff\xf6\xff\x55\x7b\x7c\xbf\x91\xfe\xfc\x9c\x9f\xa6\xe3\xf2\xf2\xab\xb0\xfc\xaa\x7f\x7e\xca\xe1\x8b\x53\xaa\x2b\x7b\x4d\xbd\xf2\x9f\x1f\xcf\x76\xb1\xff\xad\x51\xb3\xfe\xfc\xf8\x5d\x9e\x92\x65\x76\x3f\x3f\x9f\xfd\x8e\x27\x4c\x4e\xf5\x89\x77\xf6\x45\xeb\xba\xd1\x94\xcc\xf1\xd1\x7f\xee\x7d\x52\xdd\x34\xb8\x0b\x06\xeb\xea\xa9\xf3\x5e\x58\x50\xfa\xf9\x89\xc4\xbb\x6e\x3a\x4e\x25\x65\x39\x75\x25\x65\x04\x81\xb2\xe6\x89\x1a\xb0\xd3\xa7\x26\x0f\xef\x47\xc9\x63\xfd\xf9\x61\x2a\xe7\x62\x0c\xb0\xff\x5c\x7f\x7e\x5c\x5e\x37\x28\x6d\xd6\x6c\x71\xc6\xd3\x59\xa4\x92\x6f\xf6\x20\xdb\x6d\x54\x99\xcd\xb8\x94\xbd\xd9\xfd\xe7\xf5\xe7\xc7\x2f\x2e\x83\x6d\x65\xcd\x3e\xf9\x9e\x52\x22\x95\x1a\xef\x54\x00\xd1\x7b\xbf\xeb\x66\x69\xfd\xe7\x49\xcd\x7c\xd6\xa3\x18\xec\xd9\xf9\x99\xbf\x3f\x3f\x6e\x64\x4c\xa5\xc5\x68\xcd\x6b\xd4\x23\xe6\x53\xb1\xb4\xf0\xfe\xf3\xfd\xf3\xe3\xda\x9f\x54\xfa\x78\xbd\xa6\x0f\xfd\xf3\xe3\x22\xa4\x45\x39\xb0\x66\xd3\x23\x4f\x50\x93\x8a\x45\x7f\xf8\x4f\xf9\xf3\xe3\x29\xac\x52\xe9\x5a\x58\xa3\xfb\x1d\xce\xaa\x0a\x67\x01\xde\x2c\xd3\x23\xfe\x77\xc1\x13\x75\x48\x24\xcb\x79\xd5\x27\xea\x20\x06\xbb\x73\x45\x2a\xe6\x7d\xe2\x3f\x91\x0e\xd1\x73\xf9\x16\xcb\xcb\xec\x3f\xeb\x9f\x1f\x77\xca\xdd\xff\x4a\xd4\xdc\x7f\x7e\x3c\x59\xcd\xfe\xf7\x89\x1a\xfd\xf3\xe3\x9e\xac\xa9\x7c\x79\xb2\x66\x6f\x43\xe7\x52\xf7\xbf\x1f\x6b\xf6\x71\x74\x4a\xb5\xff\xad\x51\x33\x76\x0d\x7b\x50\xa2\x07\x65\xf7\xa0\xb1\xb5\x12\xad\x6d\x26\x6a\x70\x47\x58\x26\x2a\xff\x59\xfe\xfc\xf8\xc5\xb7\xff\x8d\xef\xec\xf3\xe4\x5a\xdb\xfd\xef\x88\x9a\xdd\xeb\xce\xbe\xd5\x15\x35\xd7\x7e\x27\x6a\x62\x0e\xb6\x6c\xe6\xd8\x57\xa9\x7c\x8d\x6b\xfb\x6d\xf6\x7e\x72\x6d\xbf\x16\xb3\xb3\xd9\xe9\x59\xe3\x9d\x18\x4f\x2f\xbb\xc6\xd7\xf5\xeb\x2d\x6a\xe4\xcf\xcf\x8c\xb9\xee\x57\xd4\xec\xd6\x1a\xbf\xb3\xa5\xd8\xf3\x73\xb4\x3f\x3f\x12\xbd\x1e\xd1\x83\xcd\xe2\x32\x15\x7a\xf9\x46\x8c\x74\x1f\x79\x4f\xc3\xb5\xff\x8d\xf1\xec\xe3\xe1\x19\x26\xf7\xbf\x3d\x6a\xf6\x5e\x4d\x99\x1f\x9a\xd1\x39\xe3\xd8\x13\xcf\xcb\x37\x79\x92\x80\x8e\xe4\xb9\x34\xed\x2a\x8c\x2a\x4b\xb4\x4d\xea\x60\xd9\xc1\xce\x4f\xb3\x79\xba\x37\xac\xdd\x42\x51\xb5\xb7\xb7\x33\x19\x76\xfd\xb0\xca\xae\x75\x87\xb1\xdd\xff\xc7\x76\x30\x57\xbc\x1a\x7b\xf5\x8a\xfd\x80\x30\x7a\xe1\xd4\x6e\x06\xd4\x7f\x02\x81\x81\xb3\x71\xc5\x1a\x6e\xaa\x57\x52\xbc\x75\xc7\x6c\xdc\x96\xc6\x9b\xb4\xd2\xb0\x9c\xfc\x67\xde\x55\x9d\xc7\xec\x89\x71\x3d\xf3\xcf\x4f\x4d\xb1\xf6\x4f\x9c\x8c\xe7\xfa\xf3\x53\x5d\x7f\xbe\xff\x8f\x89\x7a\xbe\x3f\x3f\x95\xc9\xff\xcb\xf7\xc6\xb7\xb6\xbc\xdb\x6a\x1c\x8e\x37\x66\x63\x5f\xbf\xdd\x21\x79\x52\x4d\xa4\x10\x15\x46\x6e\xcf\xa6\x5f\x53\xea\x51\x33\x91\x8e\xbc\xb1\x4e\xa2\x6e\xfd\xa2\xd9\x35\xa5\x2b\x6a\xa0\xaf\x64\xcd\x13\x35\x70\x9a\x67\x8d\x46\x0d\x6c\xf3\x5e\xc3\x1b\xb4\x02\x8e\xea\x30\xdc\xfb\xdf\x16\x35\xb6\xc0\xf1\xce\x1b\x35\x70\xad\xf6\x9a\x12\x63\xdd\x97\x4e\xf5\xc5\xa8\xa9\xc6\x78\x36\x25\x70\x67\xa3\xb4\x57\x85\x35\x0b\x69\xf2\x07\x67\x68\xdd\x51\x87\x3c\xde\x89\xbd\x58\xd1\x8b\x85\xdc\xed\x9d\xef\x5d\xd1\xa6\x49\xaf\x55\x62\x96\xbe\x78\xef\x3b\x39\xdf\xcf\x6e\xaa\x39\x56\x24\xef\xfe\x7b\x34\x63\xaa\x99\xfb\xac\xe6\xa7\xa1\x27\x7c\xeb\x19\x51\x87\x34\xe8\x7e\x5a\x81\x4d\xeb\x3f\x31\x82\xd2\x58\xf7\x46\xdd\x49\x4a\xee\x6d\x5a\x46\x2f\xff\xf9\xfd\xf9\x29\xc7\x5a\x93\xaa\x21\xfd\xf8\x4f\xdd\x35\x67\x26\x9b\x66\x7f\xa7\xe9\xbe\x2e\x5c\x7d\x9e\x9a\xf6\xc2\x9a\x5e\xff\xfc\xb8\xd0\x94\x9a\xc5\x3f\xf9\xcf\xf6\xe7\x87\x29\x72\x53\x53\x9e\xd5\x06\xf1\x9d\xb7\x6c\xd3\xeb\x8d\x2a\xec\x00\x36\xc8\xc9\x68\xba\x27\xc3\x05\x94\xfd\xef\x15\x35\xfb\x3a\x9a\x1e\x68\x0b\x66\xf3\xff\xc4\x7f\x36\xf3\x0f\xf5\x9f\xf3\xcf\xcf\x1c\x1c\xb1\x46\xef\xb5\xed\x1a\xef\xe1\xc7\x7d\xdd\xbe\xbd\xaf\x5d\xaf\x90\xda\xd7\xa3\xc6\xc4\x3f\xe7\xbe\x53\xfb\x3e\xf6\xfd\xfb\xa6\x5d\x4a\x67\x06\x7b\x9c\xad\x6e\x67\xab\xb8\x95\x2a\xf5\x34\x2a\xab\xf6\x75\x31\x79\x8a\x7b\xba\x0b\xab\xb6\x24\x55\xdd\x5c\x9a\x7a\x4e\xfe\xad\x0e\x65\x40\x72\x27\xb6\x5d\x20\x51\x67\x4c\xb2\xa7\xf7\xef\x39\xdd\x51\x65\x17\x43\x3d\x9a\x9b\xd4\x73\x79\x59\x67\x1e\x27\xc5\xa1\x47\x52\x37\xed\x81\xff\xdc\xa7\xb9\xb8\x1f\xd1\x2e\x98\x51\xb7\x6f\x35\x37\xb7\xa6\x9e\x47\x34\xb9\xd9\x36\xb7\xb7\xa4\x6e\xfe\x28\xfe\xf3\xda\xa3\x2e\x5e\x73\xc5\xa7\xf6\xcd\x50\x1c\x6e\x35\xf5\x7c\xc7\xa0\x4d\x57\xe3\xf1\xfb\xa9\xdb\xa9\xf2\x9f\x76\xed\x17\x36\xf8\xc5\xa7\x3e\xfb\xd4\xd9\x52\xbd\x90\x47\xed\x65\x93\xd9\xc1\xf5\x2a\x31\xbd\x96\xaa\xc2\x6d\xdd\xa9\x97\x9c\x59\x93\xcb\x9f\x1f\xc7\xa1\x4c\x3d\x78\xeb\x6e\xbc\x75\x76\x50\x83\xd4\x0d\xeb\xd9\x7f\x56\x63\xa5\x7c\xf6\x0a\xb9\x85\x5e\xba\x71\x32\x85\x9f\x22\x3b\xdc\x2d\x0f\x7f\x75\x73\xc4\xfe\xff\x8e\xaa\x67\x9f\x3b\x61\x83\x12\x83\xda\x17\xfc\x72\xf3\xe4\xfe\x7f\x46\x15\x36\x46\x63\x55\x34\x28\x67\x63\xf8\xe2\x5b\xaa\x43\xff\x89\x81\x45\xd5\x1b\x55\x7b\x81\x5d\x19\x90\x7a\xd1\x18\xb3\x31\xd9\xe4\x6d\xbb\x25\x42\xf4\x9f\xdf\x9f\x1f\xf2\xd8\xbd\x92\x82\x76\xf3\xec\x71\x97\xd1\xfd\xef\x15\x35\xe0\x46\x7d\x19\x6b\xfd\x58\xb5\x25\xf3\xd2\xd9\xbf\x4a\xf9\xa9\xd7\x2d\x28\x2c\x1e\xa0\x3a\x67\xd4\x98\x94\xc4\x1d\x18\xc4\xb3\x1b\xf1\x1c\x25\xf9\xa7\x4c\x14\xf4\x9f\xfb\x66\x70\x24\xaa\xd4\xdb\x13\x55\x9b\x88\x0d\x47\x59\x4c\xbd\x7d\xfc\x56\xfb\x36\x17\xe9\x71\xde\xa9\x77\x32\x71\xbd\xcf\x3d\x60\xf7\x79\x4c\xbd\x47\x83\xa6\x13\xaa\xee\xb4\x91\x7a\x27\xe1\xea\xe6\x7d\x5b\x3b\x4f\xea\x48\x5c\x91\xb1\xaf\xed\xea\x30\x7b\xa9\x0f\xb2\xed\xdd\x92\xce\xb7\xca\x0d\x3a\x28\xdb\xf4\x61\xb2\x4d\xee\xec\xfd\x20\x3f\xd6\x87\xc5\x44\x14\xca\xe3\x7d\xdc\xf1\x35\xf3\x74\xab\x0e\x7c\x9d\xfa\x24\xe7\xd2\xe7\xe6\x5c\x66\xe1\xf6\x35\x44\x63\xff\xd9\xf6\x19\x27\xf1\xb2\x34\x1e\xfe\xd3\xb6\x8d\xd3\xd7\x3e\x4b\x54\x6d\xa9\x65\x90\x4b\xea\x96\xec\xce\x7f\xb6\xbd\x3b\xb8\xe9\xe7\xe2\x6a\xce\xb5\x57\xd3\xd5\xec\xa9\x4b\xe5\xee\x90\x2d\xb8\xd4\xa0\xca\x16\x6f\xee\x3f\xb7\xf8\xda\x96\x77\x43\x82\x9e\x98\x11\xa2\x7a\xae\x9c\xd4\x0d\xe3\xcb\x7f\x5e\x7f\x7e\x96\xb3\x5d\x7d\x05\x91\x5c\x9b\x48\x3a\xb6\x7e\xea\xab\x45\x0d\xfc\x46\xb2\xef\x80\xd5\xa3\x6a\x4b\x1f\x25\xf3\x4c\x5e\x41\xac\x2d\x3e\x6d\x16\x12\x80\xbb\xb2\x0a\x69\x2d\x4a\x1c\x95\xbb\xf1\x98\xc3\x69\xa0\xe6\x78\x8f\x37\x5b\xb7\x30\x31\xd7\x61\xef\x7f\x67\xd4\x58\xe7\xa3\xe6\x8a\x9a\xdb\xf6\x8d\x77\xfe\x0e\x62\x73\x6f\x51\xda\xfd\x7f\x53\xbf\x63\x45\x90\x58\x7f\xba\xd1\x26\xf5\xfb\xe5\xdd\x65\x46\x7b\xe6\xc8\x49\xfd\x56\x9e\x87\x5b\xc7\x9f\x9f\xe6\x96\xf7\xd4\xef\x8f\x5b\xed\xb6\x00\xbf\x4c\xf6\xaa\x3f\x41\x38\x2c\x39\x7e\x75\x74\x9e\xd4\x2d\x60\xcc\x7f\x66\xeb\xfd\x64\x55\x8f\x2a\x38\xbc\x14\x56\x69\x54\x21\xf3\x37\x1b\xec\x3c\x46\xcf\x16\x0a\x0b\xe5\xdf\xfe\x0c\x12\x73\x8b\x99\x6f\x8d\xbb\xe6\xa1\xf0\xd7\x1f\x33\x1e\x95\x14\xfd\x98\xd1\xfb\x4d\xf3\x47\x10\x9c\x67\x45\xef\x2d\xe8\x3e\x73\x86\x1f\xca\x13\xdd\x72\xd5\x0f\xf7\x0a\x4f\xfd\x25\x83\xd5\x5f\xe3\x36\xcb\x8c\xba\x98\xc6\xf7\xb3\x6b\xca\x6b\x34\xf1\xe8\xe9\x3e\xbb\xc2\x1d\xa5\xe4\xd9\xbb\xe5\xe7\xa2\x0f\x4f\xea\xda\xb9\x96\xda\xf7\x5a\x0a\xe7\x50\x29\x09\x77\x18\x7b\xb2\x5b\xc5\x77\xc1\x1b\x75\xe0\x43\xc8\xbf\xe8\xe2\xb2\x20\xcb\x78\xe3\x98\x35\x98\x25\x33\xd6\x33\xea\x71\xff\x1f\x5f\xbb\xf7\x39\x1a\xa4\xf5\xfa\x44\xf7\xb7\xc0\x57\xdd\x60\x9b\xba\x2a\xd7\x19\x69\x37\x0a\x25\x84\xfe\x51\xba\xe9\x96\xfc\xcb\xc3\xe8\x52\xff\x82\x48\x7d\x65\x4f\xfd\x96\x0d\xff\x85\x4f\xed\xa6\x7e\xf1\x9f\xb0\x44\xf9\x0e\xf9\xe2\x4e\x87\xd0\xee\x19\xac\xf6\xff\x57\x54\xc1\x94\xc0\xae\xc4\xbd\xfd\x5d\x46\xa8\x2a\xab\x9e\x68\xd0\xd0\x17\x8a\xc3\xe6\xa6\x91\xb8\x79\x46\xda\x9b\x87\xde\xcc\x69\xe4\xe6\x2d\x8e\xdc\x36\x7d\x73\xa8\xc6\x34\x32\x65\x84\x91\xb7\x8c\xb0\x3c\x15\x41\x1a\x79\x44\xd5\x66\x76\x9b\xa3\x46\xa6\x91\xf5\x65\x95\x9e\xb5\xf6\xd7\x0a\x2f\x89\x51\xcc\xad\xb3\x56\xe7\x20\x46\x21\x3f\x3d\xca\xbe\xf0\x96\x13\xc6\x61\x3e\xc9\xfe\xf3\xde\xf2\x8d\x93\xd3\x51\xb8\x55\x47\xd9\xab\x54\xdd\x88\x9d\x46\xa1\xd6\x68\x94\x66\xbb\xd8\x6f\xcd\x51\x7a\x74\xa3\xb7\x3f\x3f\x9e\x22\x29\x8d\x42\x3e\x61\x14\xf0\x09\xae\xf9\x18\x25\xe6\xb0\xbc\x80\x00\xab\xac\x1a\x51\x05\x60\x22\x7f\xcb\x20\x7f\xfc\xe7\xde\x3b\xee\xc8\x99\x86\x69\x5e\xfd\xe7\x1e\x96\xfb\x10\xa5\x51\x5b\x63\x95\x69\xbc\x2a\x7b\x58\x63\x7a\xab\x9a\xda\xd4\x79\xdf\x11\xfa\xed\xd1\xf2\x34\x89\xda\xdf\x6a\xdc\xc2\xa3\xed\x23\xbd\xc8\xff\x8c\x36\xa3\x6a\xda\x2a\x3b\xab\x35\xda\x7d\xb3\xea\x7e\xfe\xfc\xb4\xb9\xf8\xd6\xc7\xce\xb7\xef\xfe\xf3\xd3\xa3\x87\xbd\x39\x8d\x18\x7d\x6f\xae\x42\x2b\xc0\xe8\xb1\x6d\xfa\xde\x36\xd5\xcd\x48\x69\x74\x32\x6f\xc3\x30\x54\xe9\x23\x9c\x46\x97\x78\x6b\x0b\xa7\x04\x76\x4c\xa3\x53\xe4\x1f\xe6\x59\xc1\x50\xac\x34\xfa\x1d\x6f\x99\xcd\x2a\xb9\x17\x57\x1a\x9d\xf6\x83\xd1\xb7\x94\x31\x1d\x78\x6d\xff\x7f\x47\xd5\xb3\x37\x1b\x57\xa5\x2b\x77\x68\xdf\xab\xb0\xd8\xf9\xc1\x8b\x71\x8c\x7d\x31\x56\xc7\xb1\x4b\x63\x50\xc6\x1d\xc3\xac\x7e\x99\xbc\x05\x10\x05\xfc\xe7\x6d\x47\xc5\x99\xe3\x31\xc8\x0f\x8e\x61\xce\x3d\x85\x42\xee\x18\xb1\x07\x90\x59\xa2\xba\xb7\x78\x1a\xe3\xe3\xb0\xc7\x87\xe5\x64\x8d\x46\xcd\xf7\xe7\xa7\x92\xb1\x1f\xe6\x85\x7d\x7e\x6e\x31\x79\xb8\x7b\xfe\xfe\xbf\x44\x55\xb5\xa9\x12\x56\xb5\xa8\xda\x62\x9d\x1b\x6b\xd3\x98\xb1\xb7\xe7\xde\xdb\xbc\x26\xc6\xe4\x55\x3b\xa6\x09\xdb\x6e\x38\x4c\xc3\x32\x22\x9f\x9f\xf3\x84\x43\x7b\xd5\x94\xa8\x5a\x9b\x04\x2f\xf6\x82\xfa\x94\x31\xf7\x5c\x8f\xc5\x0e\x0a\x65\xb4\x21\xd5\xfa\x4e\xda\x26\xbc\x91\x80\x85\x30\xc9\xcb\x0c\x79\xa3\x6a\xb3\x8c\xf4\xd9\x48\x63\xc5\xd6\x36\xaf\x91\x55\x48\xf6\xcc\x9d\xc3\x7f\xaa\xad\xb3\x2b\x17\x87\xe1\x07\xf9\xcf\xcd\x79\xba\xdb\x5e\x1a\x17\xe5\xdf\x71\x99\xfc\x5b\xdc\x35\x21\x8d\x4b\xe3\xb5\x73\x5b\xb9\x5e\x6d\xdc\x54\x08\x8c\xdb\xb4\x81\x35\xf3\xbd\x9b\xf2\xec\xb8\x2d\x86\xa1\x56\x4e\xff\x9d\xe3\x3d\xb3\x65\x55\x5a\x64\xc6\x4d\x86\x76\x58\x94\xd4\xa4\x91\x69\xdc\x34\x25\x8d\x1b\xd0\x8d\x3c\x9d\x37\xf5\xc8\xe3\xde\xd4\x53\x1c\x8d\x3b\x8d\xe0\x0a\xc7\x7d\xa5\x3f\x3f\x6b\xf1\x2c\xdd\xd7\x15\x55\x38\x16\xce\x58\x8f\x3b\x4e\xe7\xbd\x4f\xe7\xf2\xf8\x9d\xfd\x7f\x8f\xaa\xcd\x30\x36\x12\x2b\x73\xd5\xf4\x9f\x76\x70\x17\xbb\x18\x67\xe2\xde\x67\x82\xae\xb9\x09\x10\x04\xfe\x73\xb3\xb4\x85\xb7\xc4\xfd\x45\x83\xdf\x16\xc8\x0b\xc9\xce\x43\xa1\x60\x3c\xfb\x72\x1a\x34\x5e\x8d\x87\xa6\x51\xa0\x19\x0c\xcf\xf5\xb4\xff\x9f\x51\xb5\x79\x96\xca\xbb\xe0\x29\x1a\x55\x76\x36\x49\x4e\x1f\xf2\xf7\xc3\x52\xc9\x0d\x2a\x71\xc7\x13\x7b\xce\x38\xd8\xec\x01\x68\x69\x3c\x9d\x67\xe9\xb1\x5c\x82\x14\xe2\x86\x25\x93\xf3\x9f\x7b\x0b\x14\x1e\xf6\xe7\x8e\x06\x81\x42\xc3\xcb\xe5\xa5\x08\x32\xe0\x53\xb4\x78\x2a\x5e\xaa\xbb\xc6\x6b\xea\x2e\x8f\x5e\x48\x88\xa7\xf7\x9f\xef\xde\x1c\xc5\x17\x45\x29\x77\x0f\x73\x00\x15\x6a\x92\x86\xd2\x14\x34\x2c\xfd\xab\x0c\x92\x37\x6d\xdc\x88\xba\xa5\x2c\x3a\x22\xa7\xa1\x8b\xdd\xd0\xb5\xb7\x4d\x25\x7d\x53\xe5\x90\x55\x11\xaf\xee\x7c\xf0\xf8\x62\x2d\x0d\xa5\x69\x79\x2e\x81\x84\x58\xee\xf3\x53\xd3\x9f\x1f\x26\xce\x49\x33\xb4\x7f\x13\x9a\xf5\x50\xff\xcd\xd0\x79\x4f\x44\xa4\x15\xde\x65\x33\xb5\xca\x3a\x0b\x4b\xa8\x8e\x29\xb7\x0b\x7a\xd4\x99\x8e\x3a\xb9\x6e\x63\x26\x52\x9e\x89\xa4\xb1\xd5\x5d\xdc\xd2\x4c\x3d\xde\x33\xbf\xbc\xea\x90\x50\x69\x26\x0a\x22\x33\x99\x20\x52\xb7\x0c\xf8\x2f\xcc\xeb\x4c\x33\x86\x68\xc1\x52\x1e\xed\x9a\x66\xba\x1b\xab\xee\xcd\x9f\xfc\xea\xcc\x13\x9d\xd9\xc2\xc8\xfc\x35\xf6\x37\xaa\x2c\x7c\x7f\x78\xec\x79\x42\x64\xb9\xff\xbc\xfe\xfc\x14\xcf\x92\x91\x66\xce\x51\xb5\x17\xa8\x52\xbf\x3d\x43\x07\x3f\x91\xa0\x36\x67\x3f\xa3\x33\x93\x8a\x4c\xd3\x24\x36\x61\xf7\x33\xef\xdd\x99\xed\xde\xcd\xbc\x0a\x67\xe6\xa9\x9f\x96\x3a\xa1\x57\x17\x7e\x66\x21\x2f\x37\x4b\xc6\x95\x2c\x51\xa7\x51\xf7\x61\x0d\xa6\xd7\x15\x4e\x64\x41\x12\x27\x67\xbe\x66\x21\xf7\x3d\xcb\xe6\xbe\x27\xcf\xc7\x0c\x7d\xe0\x34\x7d\xa0\xb8\x07\x56\x9a\x85\x27\x78\x9a\xd2\x8f\x59\xa2\xd2\x2c\x64\x88\x66\x31\x1b\x48\x76\x97\xe8\x34\x2d\x9f\x82\xff\x1c\xb6\x2f\x27\x9b\x8c\x15\x2d\x7b\x45\x07\x0d\x42\xd3\x72\xbb\xf9\x4f\x03\x58\xf1\xdb\x64\x56\x6a\x3a\x67\x05\x95\x19\xfc\x5a\xe5\x95\x31\xab\x5d\x19\x99\x3c\xe7\xac\xe3\xd7\x7b\x9f\xc9\xb9\xae\xb7\x9a\x95\xc7\x78\xd6\x7d\x8c\x47\x75\x11\x6d\x5a\xf2\x5f\xff\x69\xa6\x5b\xe7\x47\x67\x8b\xf9\x6f\xc8\x23\xe7\xc8\x72\x69\x86\x86\x6f\x9a\x86\xaf\x92\xc6\x4f\x03\xbd\xf2\x9f\xf7\xa6\x19\xae\xab\x9b\x8d\x16\x64\x04\xdd\x2f\x6a\x4f\xa7\x39\x78\xf9\xcf\xe7\xcf\x4f\x75\xa7\xa0\x34\x1b\x95\xe0\xb3\xc1\xe0\x4a\x8b\xfd\x6c\x6f\xf4\x71\x53\x96\xe9\xc9\x8a\xd2\x6c\x1f\xa7\xbf\x7d\xfb\x40\x75\x6e\xc8\x46\x13\xc4\x34\xa5\x63\x89\x7d\xdc\x29\xc2\xcf\x6e\xae\xb2\x29\xd5\xa8\x7b\xa2\xee\xdd\xdb\x9f\xf3\xd1\x69\x09\x99\x40\xdf\xca\x1e\xa8\x9b\x66\x2f\x9c\xab\x5e\x30\x57\x8b\x55\x12\x55\x7b\xd7\xf9\xad\x3c\x7b\x8d\x06\xab\xdd\xaf\x85\x35\x33\x6a\x64\x6f\x39\xb7\xc7\xcc\x4e\x15\xef\xec\x6d\xf3\x9c\x83\x53\xdf\x5b\xbc\xb5\xe9\x1e\xb3\xdc\xa6\x69\x08\xa1\xfe\x73\xd8\x6c\xb0\x7f\x8b\x73\x68\x59\xee\x08\x81\xb0\xff\x5f\x51\x05\x3f\x3a\xdf\x6e\xfd\x8a\x39\x34\x5c\x84\x15\xc3\xba\xa2\x41\x33\x68\x2f\x92\x82\x10\x2e\xa6\x09\x17\x85\x02\xc4\x0c\x01\x62\x9a\x00\x21\x71\x31\xf4\x37\x1a\xdc\xb4\xb0\xc4\x9a\x8c\xb8\x33\xc6\x96\xd5\x9a\x83\x4d\xa6\x39\x82\xf4\x0f\x23\xfd\x61\x5b\x9b\x63\xc6\x6b\x5b\x8e\x63\x76\xca\xfd\xff\x1d\x55\x7b\x93\x56\x5e\x5e\x83\x2e\x31\x73\x00\xe0\x85\x34\x7a\xd0\x96\x38\x91\x09\x2f\x39\xa0\x4c\x9a\x83\xd6\xc9\x39\x1e\xdd\x83\xe6\x8a\x8d\xd8\xda\x96\xfc\xae\xce\xe2\x53\x15\x8a\xe1\x39\x93\xdd\x15\x1c\xf4\xa4\x11\xfa\xc0\x36\x74\x8f\x07\x4f\x73\x06\xd5\x9f\x9b\xea\xcf\xce\x91\x4d\x7a\xbe\x4c\xf3\x65\x2f\x75\xb2\x45\x3a\xab\x4c\xf3\x6a\x17\x4f\x91\x91\xe6\x24\xe7\x30\xa7\x71\x0e\x54\xfd\xcc\x49\x16\x6b\xce\xcd\x62\xc9\xe4\x42\xcf\x1e\xdf\xda\x14\x6e\xd1\x48\x36\x43\x0b\x3d\x4d\x0b\xdd\x84\xf7\xd2\x8c\x4d\x35\x6d\x53\x65\x47\x9e\x4b\x73\xde\xf1\xb1\xdb\x2e\x98\x78\xed\x89\x31\x5b\x28\x4e\x71\x17\xc6\x5d\x10\x5f\x7b\x20\x0c\x70\x5f\x4d\x6a\x58\xe7\x7c\xc1\xd4\xc7\x64\x29\xcf\xd2\x54\x3b\x4b\x5c\x34\x09\x12\x21\x08\xa1\x15\x56\x51\x84\x98\x96\xe3\x63\x26\x4e\xb1\x50\xeb\x39\x65\x1f\x46\xa1\x31\x6a\x8a\xf0\x70\xca\xde\x62\xcb\x23\xcf\xd3\x94\xc5\x6e\xc8\xda\x12\xb2\x43\xd7\xa4\x29\x71\x51\x8b\x19\xd2\x13\x95\x94\x53\xc8\x81\x4d\xb1\xf0\xc1\x5c\xb8\x6a\x06\x17\xeb\x3f\x8d\x8c\x15\x17\x21\xa6\xc4\x2d\x2e\x16\x10\x98\xa7\x1b\x38\xe6\x8a\x6b\x7c\xe1\x1a\xa7\xa4\x36\x17\x59\xf4\xb9\xcc\xab\xb4\x08\x2f\xad\x45\xd5\xf2\x44\x06\x0e\x0a\xf9\x73\x05\x97\x65\xb1\x02\x92\xb9\xfd\x17\x95\x79\x13\x99\x2c\x92\xc3\xd1\xef\x02\x8d\xba\xbd\x83\xe2\xce\xb2\x3c\x10\xfe\xd3\xc2\x22\x84\xfd\x7f\x39\xee\x65\xe1\x58\x8b\x3c\xcf\xa2\x0c\x34\x2d\x3d\xc3\xa4\x11\x69\xae\xb8\x46\x2c\xd3\x82\xd0\x7b\x63\x5e\x94\x09\xe7\xb5\x4f\xdd\xa2\xa3\xe5\x0c\xa9\x76\x9a\x54\xdb\xe8\x27\x30\xaf\xc1\x6e\x5c\xa3\xd8\x3e\x66\x83\x54\x05\xcf\xcb\x54\xc1\xa5\x91\x19\xba\xc6\x13\x75\xc6\x55\x4a\xe6\xd7\x68\xda\x9b\xc8\x07\x50\x0b\x8f\xef\x45\x6b\xe6\x34\x58\xff\xd9\xfb\x3f\xf2\xb1\xd7\xe2\x1e\xba\xb6\x14\x5a\x27\x67\xf9\xba\xa2\x51\x73\x68\x48\xb4\x83\xce\x2b\x78\xcb\x0b\xbc\xa5\x27\xf6\xdb\x05\x25\xea\x80\x5d\x55\xd9\x51\x9a\xad\xe7\xb5\x79\x61\xa2\x93\xa4\x79\xd3\x38\x3d\xef\x94\xf7\xa9\x72\x0b\xd4\xbc\xa9\xc3\x9f\xf7\x66\x9b\x5b\xe7\xbd\x76\x7f\xf1\xd6\x87\x8e\xb8\x62\x77\x3e\x95\x3b\xe8\xd9\xf7\x69\xef\xec\xc7\x43\x95\xc9\x7c\xe6\xb2\x8f\x45\x15\x67\xc4\xd0\xed\x26\x3d\x90\x66\x48\x80\xd3\x24\xc0\x96\xc9\xa2\x3f\x74\x76\x9a\xc0\xa2\xdb\x4b\xc7\xba\x1e\x75\x5b\x2e\x17\x72\x14\x8f\xc6\xc7\xf6\x48\xfa\x20\x1f\xf5\x46\xef\xdf\xdd\x7b\xc9\xa4\x32\x6f\xf4\xe3\x45\x3f\x5c\xbd\x31\xdf\xb8\x60\xdf\x07\x9e\x70\xee\x18\x30\x35\xae\x06\x2d\xa0\x17\x5c\x50\xa5\xe3\xdf\xd4\x6e\x0b\x43\xee\x5d\xe3\xfc\xea\x80\x57\x22\xab\xa8\xda\x9b\x70\x1f\xad\x9e\x6e\x37\xcd\x2f\xfa\x6f\x2e\x8b\x22\x24\x32\x5f\x10\x0b\xa4\x41\x6c\xf4\x1c\x99\x5f\xf0\x30\xdf\xe6\x61\x44\x28\x3d\x85\x3b\xe1\x34\x77\xc2\xd5\x24\xaa\x56\x54\x6d\x31\x88\x86\xf4\xf9\xc5\x55\x0f\xdf\xc0\x5c\x29\x10\x7c\x71\xa1\x7f\x5b\x36\x90\x1c\xaf\x5d\xd1\xc7\x2b\xef\x7e\x70\x1e\x3f\x6a\x2d\xe7\xb7\xa7\x5b\x1c\x67\x2e\xcd\xf0\x79\x9b\xe6\xf3\x26\x99\x33\xfc\x05\x7f\xf3\xed\x0d\x51\x83\x03\xfb\xde\xe8\xe2\xfb\xec\x81\x91\x75\xff\x42\xbe\x30\x10\xe4\xe6\x00\xfc\xfb\xff\x12\x55\xc6\xe0\x66\x32\xb8\x5f\x1c\x8b\x6f\x1f\x8b\xb6\xe2\xb5\x2f\x66\xd1\x82\x11\x0a\x95\xe4\xf3\xa3\xb3\xd7\xfc\xcc\xd9\xab\xd0\x03\x47\xc2\x29\x4e\xcc\x29\x6e\xd2\x32\x27\x96\x66\xd1\x7f\x5a\x08\x30\xb5\x26\x92\x28\x29\x48\xda\x92\x82\x78\x9e\x82\x24\x89\xfc\x99\x24\xe3\xcf\x28\x99\x4b\x92\x68\x11\xee\x19\x7e\x59\x4a\xe2\x8d\x28\x69\x53\x93\x42\x37\x50\x31\xf4\x64\xff\x69\xe1\x2e\x74\x3c\x10\x73\x27\xf7\x9f\xb6\x43\x5c\xbe\x90\x4c\xb7\x39\xc9\x7b\x17\x34\xfa\x02\x48\xe6\x75\x22\xd9\xae\x93\x92\x27\x5f\xe3\xd2\x48\x36\xd1\xaf\x7a\x42\xfd\x24\x99\x93\x2c\xe6\x8e\x23\x9e\x78\x24\x49\xa1\xf6\x57\x8a\x59\x36\x1c\xc2\x29\x49\xa1\x6a\x47\x8a\xa9\x76\xe8\x86\x27\x85\x6a\x0c\x29\xa6\xc6\xc8\xb5\x44\x9d\x44\xdd\xda\x8b\x9d\xd9\xe2\x88\x2a\x43\x2c\x2e\x9e\x80\x29\x49\xa1\x2f\x9b\x58\xfe\xc1\x41\x05\xb0\x54\x9e\x19\xa9\xfb\xcc\x14\x1a\xf6\xa5\x91\x65\x92\x66\x21\xe3\x69\xba\xc8\x25\x9d\xb2\xbc\xf4\x62\x13\xe9\x24\x5c\x7a\x74\xa4\x0f\xeb\x23\x37\x56\xa7\x66\x5b\xba\x69\xb6\xc5\xf3\xb9\x26\x31\x6f\x0f\xff\x69\x5e\xd4\x2e\x80\xc8\xa0\x8b\x96\x20\xdf\x40\x75\x14\xe0\x24\x83\xec\xac\x98\x80\xb0\x97\xc6\x3b\x39\xa8\xdc\x96\x61\x3e\x5a\xf4\x98\x96\x41\xee\x13\x68\x2d\x42\x81\x4c\xc2\xf1\x43\xcc\xf1\x43\x3c\x3d\x73\x92\x49\x41\x53\x8c\x9d\xaf\x0e\x35\x93\x64\xd2\xc4\x29\xd3\x4c\x9c\xa9\x70\x69\x26\x15\x83\x32\x0d\x8b\x20\x79\x4c\x65\x92\x49\x53\xb7\x4c\x98\xba\xab\x9f\x51\x99\x5f\xb4\x69\x10\xb1\x85\x6e\xe2\x22\x14\x5e\xc5\x98\xd4\x5c\x62\x07\x09\x0d\x12\x22\x79\x4f\x25\x7d\x89\x45\xa8\x77\xdb\x3b\xee\xcf\xcf\xf4\x5c\xcb\xfb\xff\x1e\x55\x40\xb9\x75\xf6\x5f\x64\x46\x9d\xf9\xf2\xf0\xf2\x12\x61\x2c\x82\x58\x92\xbb\xe2\x39\x6a\x93\xc8\x1d\xfd\xb8\x81\x5f\xc2\x59\x96\x27\x5e\x33\xeb\x34\x05\x0a\x11\xca\x57\x22\x9b\xdb\x5f\x9d\xc4\x42\xbe\x78\xcb\xbc\x21\x92\x03\xba\x25\x59\xb4\xd0\x88\xb1\xb6\xcd\xa1\x6a\xf7\xff\x33\xaa\x96\xb9\x79\xb9\xf1\x49\x16\xdd\x4d\x64\x99\x6f\x60\xae\xa4\x09\x8b\x7e\x23\x02\x40\xe6\x52\x78\xee\x17\xfd\x43\x64\x99\x7f\x48\xe9\x1c\xdc\x0a\x0a\x04\x20\xba\xea\x60\xe1\x49\xd6\x1b\xef\xed\xcb\x40\x16\xf7\xeb\xfa\x62\x04\x16\x39\x99\x3d\xf5\x4b\x92\x2b\xb6\xde\xb5\xb7\x5e\xa1\x73\x26\x70\x5d\xfc\xe7\x96\x44\x16\x77\xc2\x45\xf7\x16\xb9\x36\xe9\x20\xfc\x40\x92\x6b\x46\x83\x16\x5d\x22\x3c\xf8\xd7\x1b\x0d\x5a\xa8\xed\x26\x52\x5e\xf7\x45\x9d\xc5\x3b\xe6\xe6\x52\xb8\xdc\x74\x8b\x92\x7b\x77\xb7\xd1\x15\x08\xb0\x1d\xfe\xd3\x18\x34\x6e\xa0\x9b\x7e\x20\x72\x5b\x26\xbd\x9a\xe6\xf8\x27\x96\x56\x6e\xaa\x3a\xe4\xb6\xec\x15\xb5\xf1\x60\xdd\x4b\xa2\x0e\xc2\xa0\xbb\xe2\x48\x38\xb3\x88\x39\xb3\x88\x03\xcc\x26\x79\x82\x7a\x99\xf3\x4a\x4e\x85\x83\x78\x84\x9f\x7b\xb6\x88\xb7\x06\x8f\xff\xc3\xb8\x2e\x79\x2c\xd8\x34\x53\xf9\x2f\xcf\x15\x75\x5b\x20\x2e\x0e\x1d\x95\xc4\x72\xa4\xfb\xcf\x2d\x0e\x7a\xd6\xd7\x24\x4f\xdc\x47\x86\x36\xd1\xe8\x06\x25\x0f\xd9\x01\x79\xd4\x76\xba\x9b\x42\xe4\xd1\x18\x99\xbe\x56\xe5\x6f\xbd\x74\xfc\x94\x37\x81\x9a\x90\x2c\xbc\x39\xea\xf6\x59\x21\x22\x73\x92\x37\x26\xe4\xdd\x13\xb2\xa8\x08\x91\x97\x72\x9b\x18\x5a\xde\xf2\xc0\xd6\x24\x2f\xb5\x97\xf2\x9a\x11\x82\xf6\x09\xd1\xa0\x94\x0a\x4a\x49\xdd\x95\x84\xc5\x43\xcc\xe2\x91\xb3\x07\x13\x27\xd1\x15\xef\x59\x34\x46\x8d\x95\x51\xea\x20\x44\x2d\x1c\xa3\x3a\xe8\x55\x12\x8d\xcb\x5b\xf7\xe5\x2d\x34\x52\x01\xd8\xc2\x7f\xda\xf1\xe0\x75\xf4\x25\x56\x59\xbc\xd2\x72\x14\xda\x24\xe1\x41\x2d\xe6\x41\x9d\x53\xdc\x10\x5f\x4c\xa4\x85\x2c\xe5\x24\x24\xb0\x5f\x5c\x55\x9f\x5d\x55\xc5\xb1\x07\x76\x01\x6f\x46\x73\xc3\xce\xc5\x11\x03\x76\x41\xbc\xd7\x11\x86\x42\x4a\xf3\x8d\xa8\x1b\x88\xc0\x8a\xbe\xc4\x1d\xf7\x21\x14\xd2\xc1\x3f\xd3\x4a\xa4\xda\x2b\x6d\xaa\xdd\x39\x84\x95\x28\xa9\x03\xb4\xa3\x93\xfc\xae\x44\xed\xc5\x4a\xcb\xa2\xb0\x7c\xbb\xae\xf4\x2e\x56\xbd\xe6\x8a\x9c\x59\x45\x69\x1c\xe8\x1b\xe2\xe0\x6a\x69\x25\x52\xbc\x65\xb1\xe2\xc2\x18\xb7\x95\xe9\x73\xbc\xf2\xf1\x39\xf6\xc5\x59\x99\x9a\xec\x95\xe1\xab\xda\x5c\x1d\xb2\x72\xbd\xa2\xce\xe8\xb2\x63\x65\xa7\x95\x49\x29\x57\x36\x80\x84\x4a\x39\x77\x65\x52\xa8\x65\x20\x84\x73\xfa\xf5\xb1\xf2\x88\xaa\x61\xfb\xdc\xd7\x6d\xe5\x98\xc7\x6c\x18\x55\xfb\x86\x61\x5d\xf4\xd2\xc0\x68\xf7\x0d\xe9\x75\xbc\xf6\x57\xc6\xb5\xdf\x3a\x7b\x49\x69\x7c\x59\xe6\xeb\xee\xf0\x7d\x69\x65\xea\x5b\x57\x36\x67\x8e\xe2\xf9\x59\xd2\xca\x1a\x03\xdf\x33\x2e\x1e\x65\x9f\x56\x21\x43\xb0\xca\x66\x08\x6a\xe3\xba\x15\xf2\xd8\xab\x40\xeb\x24\xce\xc9\xad\xf2\x45\x1d\x90\x1b\x63\xe5\x2a\xaf\xc6\x85\x58\xf1\x4c\x95\xeb\xaa\xb4\x76\xae\xfa\xbe\x9b\xff\x70\x6b\x08\xd0\x45\xfc\xe7\x42\xe8\x44\xd4\x5d\x51\x77\xe3\x80\xfb\xea\xb4\xce\x79\x6e\x7d\xef\x57\xf1\xeb\x6f\xb5\x11\x4d\x1a\xc5\xae\xcd\x19\xf7\xd5\x18\x12\xb6\xda\xd4\x3f\x3f\x9d\xaa\xbd\xd5\xe8\x78\xb6\x9a\x39\x9e\x55\x0f\xfe\x4f\xab\x5f\x6c\xb2\x23\x16\xd7\x9d\xda\x57\xa7\x42\x6a\x75\x53\x48\x65\x9a\x28\x56\xa7\xb4\xb8\x4c\xe5\xdd\x19\x97\xb9\xfa\xcb\x85\xeb\x86\xf2\x5d\xaa\xcb\xc8\xab\xbf\xf1\x1a\xdc\x5f\x1c\x68\x3b\xad\x41\x95\xec\x1a\xcd\xa2\x2b\x78\x08\x06\x9d\x88\xd6\xd8\x0c\x66\xa1\xce\x63\x8d\x39\x58\x35\x2d\xc0\xcb\x85\xb4\x35\x62\x53\x9a\xfa\xbb\xb6\x15\x55\x12\x55\x9b\xd2\x27\xa7\xd9\x6b\xac\xf8\xd6\xa6\xec\xcb\x71\x00\xf6\xff\x2d\xaa\xf6\xde\xf2\x84\x76\x69\x99\x4f\xb5\xff\x94\xcd\x0f\xb8\x20\xb6\xc6\x13\x3d\xb4\x10\x34\xcf\x58\xbd\xff\x5f\x51\x75\x59\x83\xfe\xd6\xe4\x15\xb6\xe6\xa6\xcf\x6d\xba\xac\xbb\xcc\xbd\xc6\x7f\x3e\x98\xc4\xa8\xd3\xa8\x33\x9d\xf1\x22\x71\x9a\x0c\xbf\x5a\xb3\xae\x3f\x3f\x9d\xee\x12\x6b\xd2\xd4\xbf\x66\x55\xdb\x73\xec\x48\x8f\xaf\x6d\x5e\xa2\xd3\xe3\x60\x4d\x3a\x70\x2d\xf3\xd6\x59\x14\x3a\xd6\xa4\x4a\x6c\x4d\x43\x50\xaa\x54\xbd\xac\xf9\xc6\xc7\x0c\x9d\xa1\x30\x58\x74\xcd\x2f\xea\x20\xab\xd3\xe9\x60\x09\xf9\xc2\x25\x26\x92\x30\x7c\x71\x09\x23\x0e\x96\x81\x07\x54\x4f\x8a\xbe\xff\x7f\xa3\x6a\xb3\xd8\x8c\x18\x5d\x21\x58\x2c\x13\x2c\xea\xe2\x3c\x0a\xd9\xe8\x25\x79\xaf\x27\x9d\xdd\x96\x04\x39\x10\xc3\xfe\x2e\x8c\xf4\x5e\x12\x1b\x55\x0c\x9b\xad\x38\xf0\x6a\x5a\x42\xef\xf6\x25\x86\xcf\x5d\x07\x97\x54\xae\xe8\xa4\xc5\x52\xa5\x1a\x63\xa3\xf8\xb0\x4c\x7c\xc8\x85\x52\xe6\x92\x98\x2e\xf9\x2c\x4e\xc0\xc5\xd6\xb5\x78\x3d\x2f\x64\xb1\x4e\x74\xf8\x5e\x2b\x76\xd0\xb2\x1d\x94\x1d\xfa\x25\xad\x45\x0d\xd7\xb2\xbc\xd4\x9d\xec\xc5\x5a\x57\x34\x89\x18\x02\xc7\xb8\x4a\x6b\xd1\x57\x72\x01\x7b\x20\xad\xf1\x6f\x2e\xb3\x6b\xc5\x20\x96\xad\x79\x5e\xdc\x98\x17\xfd\x36\x17\xb2\xb8\xd5\x32\xa3\xee\x8a\xba\x7d\x7b\x53\x1d\xb4\x2e\xf2\x0a\x0b\x79\x67\xab\x23\xf9\xa4\x75\x31\xc6\x74\x5d\xb7\x05\x50\x70\xf9\xae\x18\x84\x09\x06\x7d\xb9\xa4\xb6\xc2\x33\x6b\x99\x67\x56\x9b\xa4\x33\x77\xe2\x5e\x07\xa0\x4f\x71\x78\xa8\xb4\xee\xd8\x47\xc0\xa5\xae\x99\xa4\xf7\xa6\x01\x7b\xdd\xa6\xb9\xac\x95\xe3\xbe\x63\x15\xe0\xfe\x9f\xa8\x58\x5b\x37\x83\x25\xd7\xdd\x8a\x0d\x80\x55\x8c\xca\x5f\xb7\xe5\xb6\x4a\x14\x6c\xd7\x1d\x97\x26\x30\xee\x0a\xe3\xa1\xd6\x43\x43\xef\x7a\x0a\x7c\xcb\x5c\x54\x5b\x4f\x9c\x72\x53\x30\xf7\x45\x26\xe3\xa1\x8c\xba\x1e\xc8\xa8\x34\x8a\xae\x37\x28\x11\x50\xac\x0b\x3d\x46\xd6\x4b\x47\xdd\x85\x94\x6f\x25\x71\x56\x5e\xc6\x4b\xad\xd7\x92\x00\x94\x19\xef\x51\x81\xb6\x5e\x53\xa0\x15\x9a\xe1\xd7\x1b\x9b\x13\x49\x3f\x0a\xdd\xb0\xd6\x1b\x37\xd9\x6b\x37\x59\xa5\x47\xd5\x7a\xbf\xa8\xfb\xae\x3d\x3c\x12\x01\xa5\xf2\x7e\x69\x82\x2e\xcc\x85\xa7\xa5\x74\x95\x59\x6a\x28\x07\x0e\xbf\x95\x56\xc0\x0f\x2c\x53\x25\xe7\xdc\xc9\x71\x2a\xb5\xe6\x0b\xf9\x2c\x72\xe7\x7e\xd6\xe0\x25\xd4\x78\x89\xca\x9b\x47\x83\x79\x54\x13\x97\x2b\xed\x6c\xeb\xa3\x27\xe7\x32\x76\x3d\xe7\xe4\x26\xd5\x15\x3a\xe9\x05\x9d\x74\x61\x54\xfc\x0a\x5e\x7b\x59\x54\x7c\x2e\x93\x97\x60\xf0\xda\xcb\x78\xed\x4e\x35\xf7\xfa\x82\x43\xfc\xcc\x91\xa3\x36\x5e\x5a\x5f\xac\xdd\x67\xa9\xe3\x6b\xe7\x01\xfa\x82\xc4\x7d\xc8\x5c\x41\xb3\xbb\x26\x4e\xb4\x22\x98\x78\x54\x97\xd7\x34\x80\x47\x34\x21\x97\x0d\x87\xae\x89\xb6\x3b\x85\xfb\xd4\x20\x94\x88\xa6\xf6\xab\xce\x50\xa4\x68\xe2\xd5\x44\x1f\x1c\x4d\x1d\xe8\xbb\x83\x75\x14\x98\x35\x8d\xf2\x1b\xe0\x74\x17\x34\xd6\x21\xb3\x4a\x8b\x7e\xce\xa8\x43\x66\xf9\xee\x37\xaf\x26\xee\x4d\x05\xf4\xdf\x70\xdc\xba\xa4\x89\x90\x27\x9a\xcc\x02\x3c\x1c\x96\x7f\x17\x44\x5f\x90\xcc\xce\x81\xc0\x76\xc1\xc7\x3a\x3b\x7b\x83\x01\xc7\x9a\xbe\xe8\xcb\x77\x72\xd8\xf3\x3d\xda\x49\x35\x19\x5a\xd0\xa0\xab\x9d\xe6\x58\x07\xc4\xa3\x0e\xca\xd4\x1a\xee\x5a\x9a\xe1\xd2\x34\x38\x9f\x99\x31\x69\x0a\xc8\xaa\x31\x9c\xb3\xd6\x10\x60\x34\x37\xa4\x0c\x70\x16\x59\x73\xfb\x55\x77\xb2\x91\x4d\xd6\x5d\x51\x77\x03\xde\x37\xb3\xee\x65\x9d\x25\x0a\x64\xca\x9b\x5d\xa0\xac\x33\x0c\xc9\x31\x39\xf6\x4c\xfe\x59\xf3\x49\x95\xd3\x58\x37\x63\xec\x0b\x79\x83\x3b\xc7\x40\x9e\x50\x01\xa7\x35\x3c\xb7\xcb\x2e\x68\x51\x67\x58\x91\x74\xd9\xd5\x80\x77\xd1\x8c\x0c\x1c\x9e\xc6\x75\x17\xc4\xd8\x6f\x00\x24\x24\x8e\xfd\xe6\xba\x5b\x1c\x6c\x1e\x54\x70\x6b\xa6\x1e\x45\xf3\x83\x04\xf2\x31\xbe\x27\xe6\xec\x60\xf1\x36\x7e\x8f\xb6\x73\xcd\x58\x77\xba\xa2\x68\x21\x67\xa5\xa6\xbd\xcf\x43\xdc\x7a\xab\x85\x74\x5c\x8b\xd1\xf1\xb1\xdc\x56\xac\x85\xbe\x17\x0a\xfd\xfd\xa0\x3e\x4e\x0b\xcd\x16\x5a\xb0\x0e\xbc\x37\x34\x14\xf8\x8a\x9c\x2c\x83\xec\xb2\x46\x78\xab\x16\xa0\x48\x11\xc0\x42\x0b\xdd\x73\xb4\x5c\x80\x04\xef\xec\x27\xe9\x8b\x96\x1b\x75\xae\x51\xd4\x72\x47\x9d\x22\x54\xdd\xef\x06\x2d\x34\x2a\x69\xf9\x90\xb6\x48\x38\xbe\x2f\xe6\xe5\x43\x0a\x00\xbf\xf5\xb5\x52\x03\xa8\x15\x58\x89\x0c\x72\xd3\x9a\x7f\xd5\x75\x00\xce\x56\xd6\x71\x7c\xb5\x1e\x30\x5a\x1f\x7b\xa5\x4e\x48\xab\xe9\x84\xc4\x51\x78\x77\x81\x46\x1d\x32\x98\xb9\x6a\x44\x6b\x8b\xef\x41\x9f\xcd\x50\x4c\xad\x14\x43\x15\x99\x29\x1b\x2d\x63\x5a\xe3\x1c\xd5\x86\x6c\xad\x9c\x97\x90\x7a\xb5\xf6\x93\x78\xaa\xb0\x6e\x44\x1d\xc6\x40\x1a\x59\x29\x2f\x68\x35\xfa\xd9\x32\xf7\x7c\x0d\xfa\x69\xbe\x82\x91\x24\x74\x17\x44\x3f\x91\xa4\x8a\xce\x83\x5a\xa9\x64\x56\x33\xe2\x04\xee\xff\x2e\x88\x31\x00\x7c\x9d\x7a\x72\xad\x12\x63\x00\x0c\x5e\x89\xb9\x66\x10\x9a\x56\x60\x3b\xd2\x97\x44\x2b\xfd\x07\xb4\x5e\xc0\xde\xe2\x3e\xab\x41\xcb\xeb\x83\x3a\x9e\xa3\xfa\xc4\x18\x1e\x98\x0c\xd7\xfc\x27\x26\x58\xeb\x13\xcb\xfb\x9e\x9c\xbf\x9c\xb6\x37\x9a\x45\xde\xea\xca\xab\xa5\xbe\x31\x7c\x3d\x09\xfb\xb8\x2d\x34\xde\x03\x30\x7b\xe5\xd5\x59\xbf\x78\x0f\xf0\xc5\xd4\xa1\x68\xa0\x3e\xe9\xc9\x2a\x4a\x87\x4c\x6d\xd4\xaf\x28\xd0\xb6\x98\x77\x67\x17\x70\x99\x9a\x83\xb8\xfb\xd4\xb4\xb8\xaa\x9b\xd9\x1e\x5a\xe5\x96\x69\x35\xbe\x07\x14\xf6\xca\xeb\xa3\x51\x2b\xa0\xad\x03\x30\xd0\x95\x55\xda\xe8\x8f\xa2\x0d\xdb\xa9\xf1\x08\xb6\x11\xdf\x1b\xeb\x37\xde\xe3\x2e\x20\x99\x6c\xf3\xe4\x10\xe3\xf8\x66\x7c\x0f\x79\xc6\x19\xa5\xa7\x8d\x8c\x9d\x36\xd1\xdf\xf8\xe9\x49\xdb\x8a\x31\x18\xd9\x6a\x74\xe4\xd2\x46\xdf\x30\x6d\xd8\x32\x0c\x24\xd3\xf6\x44\x9b\x00\x9b\xa5\x6e\x43\xdb\x1b\x7d\xc1\x1a\xd1\x50\xa8\x3d\xd6\xa8\x03\xee\xbc\x93\x64\x77\x1a\xb5\xb5\x63\x8d\x18\x23\xa7\x3d\xc8\x4f\x2f\xa7\xce\xd7\xbd\x53\x0f\xa9\xfd\x00\xe8\x93\x9d\xea\xd4\xe8\x6a\x07\x04\xb0\xa7\x5a\xdd\x05\x3c\x2e\x1d\x60\xc8\x0c\xcd\xd4\x4e\x15\xab\x76\x64\x3e\xa0\xe0\xa4\xfd\x8a\xba\x93\x8b\x35\xda\xbc\x2b\xeb\xde\x93\x67\x9d\x6d\x52\xc3\xa4\xa6\x61\xa2\x53\x8a\xf6\x37\x7a\x09\xf0\x59\xe1\x4c\x47\x2c\x97\xf6\x0f\x09\x9f\x49\x28\xfa\xd7\xa3\xce\x66\x9a\x01\x82\x3a\x62\xa6\x4f\xc6\x2b\x21\xc3\x34\x82\x29\x1a\xe6\x58\xd6\x3c\xc1\xe1\x2e\x60\x5f\xe0\xc4\xd9\x68\xe2\xd2\xd0\x75\xe9\xb0\xdd\xc9\x3c\x5b\xbb\x20\xea\x10\x26\x4a\x3b\xb5\x0e\x5a\xb7\x75\x5c\x7f\x65\xc1\xdf\x05\xf1\x3d\x64\x3d\x4c\x24\xa0\xe3\x8a\x7e\x5e\x00\x3c\x4f\x6c\xf3\xe2\xbc\x8c\x07\x51\x8e\xdc\x2d\x23\x98\x8d\x81\xcc\x9d\xc9\x15\xb4\x3a\xbe\x68\xd3\xe6\xac\x13\xac\x49\x67\xcc\xd9\x04\x6c\xb9\xe7\x7c\xdf\x05\x7c\x6f\x0e\xa4\x59\xe2\x5c\xcf\x38\x99\xd3\x13\x94\x7a\x3f\x43\xdb\xa4\xd3\x2c\x8d\xbd\xb0\x9f\x93\xd2\x98\x4e\xcb\x0c\xcc\x64\x73\x49\x27\xf5\x27\x3a\x5f\xe4\x56\x13\xf6\x85\xe6\x3f\x9d\x9e\x45\xc0\x77\xd9\x64\xf0\x9c\xce\xef\x80\xf7\x7b\x3f\x25\xc6\x27\x69\xfd\x86\x65\xdf\x05\x5c\x3f\x41\x2e\xb7\xca\xcb\x43\x0a\xbf\x27\x03\x48\xd2\xbc\x54\x85\x6e\x72\x2a\x48\xf9\xd0\xb8\x97\xc2\xcd\x52\x65\x21\x71\xa4\x2b\x7e\x55\x82\x01\x15\xf4\xb3\x71\xae\x57\xf4\x73\x9d\x1c\x68\xbc\x70\x03\xcc\x40\x0d\xcc\x20\x8b\x67\x3e\xd9\x05\x5c\xa3\x35\x4e\x6a\x4f\xff\xde\xa2\x89\x5f\x91\x8b\xac\xd3\x39\x59\x57\x5c\xe2\x6b\x9c\xc4\x81\x8b\x75\x77\xd4\x19\xaa\x78\x30\x53\x8b\x42\xa5\x2e\x00\x1c\x33\x82\x5b\x17\x0d\xf2\xba\x26\xfc\xfc\x49\x21\x17\x6d\x12\xba\x90\xaa\x3a\x53\x60\x09\x57\x4b\x05\xa2\x26\x53\x82\x25\x5d\x41\xad\x97\xcd\xa7\xe4\x18\xdf\x8a\x79\x59\x27\x95\x58\x67\x5d\xcc\xcb\x85\xf7\x48\xb1\x56\x30\xa7\x9e\xc1\x78\x46\xdd\xaf\xf7\x80\xb8\x1f\xdf\x0b\xc6\x75\x21\x9d\x93\x67\x80\x4a\xba\x42\x38\x5c\xc8\x12\x1d\x4c\x98\x65\x45\xf6\x9f\x13\x75\xec\xe7\x1d\xdf\x33\x44\x5c\xf1\x6c\xf7\xbb\x80\xd4\xfa\xa4\x8d\xc9\xb1\x5f\x9e\x68\xd3\x10\x6c\x67\x25\xcd\x5a\x41\x0b\x16\x52\xdf\x31\xde\x45\xd7\x1b\xf3\x09\x14\x70\x07\x1f\xdf\x05\xb1\x27\x0c\x8a\x59\xe8\x17\xa7\x4b\xe3\x3d\xa4\x9f\x89\x73\xbb\x34\xfa\x62\xfa\x2a\x29\x99\xf3\xa2\x31\x67\x1f\xde\x8b\xbd\x1b\xb4\x1c\x09\x6b\xa4\xc4\x5e\x0a\xe1\xf7\xe4\xc0\xf3\x54\xde\x49\xaf\x38\x2b\x97\x45\xaa\x4b\xa1\xf0\x74\x51\x1b\xaf\x17\x50\x9b\x3d\x9d\xf9\x2e\x58\x51\xf7\xa1\xce\xfb\x79\x65\xf6\x05\x78\xab\x52\xb8\xee\x17\x11\xd4\xf4\x42\xfc\x4a\xe1\x5c\x5f\x8c\x0d\xd0\x0b\x88\xd7\x85\x0a\x8a\xab\x44\x9b\x05\x7d\xe1\x1d\x70\x05\x6d\xbd\xea\xa9\xf3\x75\xb8\xea\xaf\x3a\xf8\x91\x51\x88\xbd\x42\xf0\xb8\x00\x8b\xeb\xa9\x6b\x77\x41\x89\x3a\xf4\x85\xdc\xd9\x15\x02\xfc\x85\x2c\xf7\x85\xf4\xfa\xa2\x95\x51\x2f\xa4\x3a\xab\xe9\xdf\x9c\x1d\x34\x7c\x39\xf4\x32\xf9\x5e\x82\xe1\xbd\x42\xbe\x37\x7f\xe4\x5d\xc7\xa5\x08\xd2\x74\x99\xfe\x49\x2a\xe5\x84\x8b\xbe\x17\x7a\x21\x0f\x68\x8d\xe5\x0d\x99\xf3\x02\xfc\x42\xed\x9c\x36\xe1\x71\xb9\x40\x2a\x08\xc4\xa5\x57\x90\x03\x73\x39\xde\x75\x9c\x9a\x2b\xfa\x82\xbc\x5a\xc1\x0c\x5f\x71\xe5\x5e\x48\xeb\x1a\xd7\xc0\x15\x47\x1e\xc0\xcb\x52\x79\xac\x23\x74\x58\x2f\x24\xde\xa2\x55\x45\x2d\x75\xe2\xf9\xf9\x60\x5e\xc8\xf0\x5e\x4f\xf4\x13\xc7\xb3\xf1\x9a\x0b\x9d\xb7\x5e\x96\xdc\x80\x10\xc9\xbb\x20\xda\xc4\xf1\x24\xe4\x95\x5e\x74\x62\xd3\xcb\x04\x8f\x3e\x7b\xd4\xc5\x7c\x22\x09\x45\xe3\xf1\xbc\x42\xde\xbe\x4c\x6f\x25\x8d\xc7\xf3\x8a\xa3\x7b\x01\xf9\x9d\xf6\x60\xbd\xbe\x58\x3f\x24\xdd\x77\xe4\xf0\x5d\x10\xfd\x04\xbc\xb7\xe7\x33\x4e\x7a\x87\x6e\x03\xda\x79\x69\xbc\xaa\x6f\x7a\x3e\xe8\x8d\xa3\xdb\x38\x86\x08\xa9\x56\x64\x08\x12\x4f\xa5\xb6\x0b\x7a\xd4\xd9\xfa\x35\x37\xed\xea\x4d\x7f\x64\x45\x22\x21\xa1\x05\x5a\x6f\xaa\xd9\xf5\x2e\xc8\x16\xc0\xfd\x72\xd3\xcd\x50\x91\x9f\x52\xe2\x8a\xbf\x69\xe8\x57\xc3\x05\xda\xef\x45\x9d\x46\x1d\xc6\x40\x79\xfb\xa6\x0b\x9c\xde\xc6\xd0\x8b\x27\xaf\xda\x05\xd1\x97\x76\x12\x75\x4e\xd6\xdd\x51\x07\x77\x0a\x5e\x49\x77\xe8\x0c\x90\xa0\x48\x18\xd3\xa6\x77\x08\x02\x27\x25\x7d\xe8\x52\xee\x1e\x73\x76\x32\xaf\xa5\xa8\x8b\xbe\x20\x63\x56\x08\x48\x01\x4e\xa4\x30\x69\xf4\x49\xc1\xf1\x1e\xb1\xb6\x03\x79\x5a\xc8\xf2\xde\xc1\x8a\xdc\xe3\xfd\x9d\x3d\x6f\x17\x44\x3f\x2d\xea\x40\xa8\xa7\xd6\x7b\xc6\x7b\x48\x60\x2a\xd1\xe6\x8c\xb9\x06\x2b\x42\xd8\x0f\xbd\x43\xd7\x70\x52\xe9\x4b\xe2\x9c\x05\xdb\x7e\x83\x4d\xe9\x3c\x47\xb7\xc4\xba\x0b\x52\x44\x16\xae\xd1\x8a\x3d\x88\x1c\x32\xd4\xc3\xeb\x1d\xba\x45\x24\xe6\xef\x42\x5a\x17\x0e\x61\x7a\x2f\xe4\xf4\x23\x1b\x76\xaf\xf8\xde\xc9\xdf\x5f\xb9\x5f\xae\x18\x83\xe5\xc1\xee\x21\x22\xdd\x41\xcf\xee\x93\xf9\x83\xca\x84\x3b\x74\x99\xf7\x85\xb5\xe5\xb9\xbd\xaf\x38\x63\xd7\xc9\xc9\xc7\xbe\x5c\xb1\xcf\x4e\x1a\x8b\xe8\xcb\x1d\x6b\x0b\x3a\x48\x88\x64\xbd\xe9\x6d\xa9\xc8\x34\xd5\xa5\xb2\x2f\x41\x07\x91\x74\xaa\x87\xb8\x16\x58\x02\x6a\xd1\x17\xbb\x4d\xf6\xf3\x89\xbe\x1c\x54\x77\xb2\xdf\x77\x88\x95\x27\x09\x95\x04\x2d\x78\x63\x7f\xbe\x27\xcd\x37\xd7\xef\x8d\xb9\x7e\xd1\x26\xd9\xc5\x5b\x63\x7c\xc8\x79\x46\xb8\x60\x0d\x90\x2c\x3d\x29\xad\x84\x4a\x96\x3b\x94\x3a\x48\x66\xc5\xb4\xe2\xbb\x20\xc6\xa0\x27\x3b\x31\xe7\x2c\x58\xa6\x5b\x91\x58\x8c\xec\x69\xa0\x25\xe8\x8d\x3c\x16\xf4\xb5\xd1\x3b\x6c\x09\x48\x7c\x25\x9d\x6c\xca\xfd\xc5\xbc\x40\xf4\x20\xdc\xa8\x3e\x0c\x02\xd4\x07\xc9\xef\xc5\x5d\x44\xf4\x21\x94\x85\x3e\x27\xf3\xf0\x88\xf7\x38\x06\xcf\xa0\xcb\x7b\xec\x09\x91\xfa\x39\x19\x42\x53\xd4\xad\xa8\xc3\xd8\xa9\x30\x78\x82\xd5\x7a\xf2\x49\x92\xce\xef\x05\xab\xf5\x98\xf3\x55\xa7\xc7\x84\x3e\x41\x93\x0d\xae\x21\x77\x9a\xde\xf5\x09\xa5\xd5\x53\x33\xea\x1a\xeb\x62\xec\x27\x6f\x32\xef\xbf\x87\x41\xb0\x0a\xb8\x32\x26\x9e\xdd\x05\x3d\xea\xb0\xb6\xd4\x99\x07\x28\x84\x3e\x60\xb5\x3a\xd9\xb7\x00\x33\xd3\xe7\x64\x95\x25\xfb\xf6\x84\x1e\xf7\xe9\xe8\x27\xf9\x9e\x27\xf4\xb8\xcf\x49\x5e\x1d\x73\x1d\x76\x30\x73\x1c\x8d\x1c\x58\xbb\x20\xc6\x80\x54\xee\x21\x56\x06\x0e\x9a\x1a\xd6\x59\x24\x3a\xda\x05\xd1\x4f\xc9\xbf\xf3\x61\xec\x82\x98\x33\x41\xd2\x75\x8a\x87\x4f\xf0\x67\x8f\x60\x8d\x3a\xc7\x20\xbf\xda\xc4\xda\x52\xdc\x0e\x70\x35\x05\xb8\x9a\xd0\x6d\x53\x9f\x15\xdf\x5b\x18\x03\xc5\xca\x67\x5d\x51\x67\x63\xa7\x9b\x92\x3e\x2b\xbe\xb7\xf0\x3d\xea\x7f\xc3\xfd\x55\xcd\xfd\x75\xd7\x71\xdd\x83\x7e\x3e\x17\xbe\xd7\xfe\x0d\xfb\x56\x9f\x20\xa1\x0f\x24\xcb\x30\xcb\x3d\x21\x59\x3e\xd0\xec\x30\x8b\x81\x3e\x21\x59\x3e\x30\xb9\x0e\x92\xb4\xe7\x8a\x25\x34\xf2\xca\xec\x3f\xbb\x20\xb6\xa1\x49\x96\x7d\xc5\xb1\xbe\xe3\xe8\xde\x58\x5e\x9a\xc9\x9e\x30\x5b\x3d\x20\x77\xf4\x41\xd3\x27\xcc\x95\xe6\xc8\x9b\x47\xa2\xa4\xf7\x04\xb9\x7b\x60\x9a\x22\x0a\x86\xbe\x61\x66\x79\x13\xde\xa3\x74\xf5\xd2\xeb\x47\x5f\xa4\x23\x22\x26\x99\xbe\xc1\xda\xbd\x09\x73\xc6\x65\x7a\x19\x05\xab\x6f\xc6\xb6\x20\xe9\x7d\x83\xb5\x33\xf7\xe0\x2c\x0c\x1b\xd0\x97\x51\x93\xfa\x22\x2b\x44\xa2\x34\xf7\x06\xdb\xf7\x22\x7f\x24\xb1\xf0\xf4\x25\x3a\xbf\xbe\x30\x61\x87\x69\xea\xa5\x8b\xb0\xbe\x90\xe6\x06\xe7\xec\xa5\x9b\x8e\xbe\x05\xb9\x93\xb8\xb6\xe1\x5e\xa1\xaf\xa5\x40\x1a\x89\xe4\xee\x0d\xb3\xdc\x7b\x12\x7d\x51\x84\x78\xc3\x1c\xfb\x22\x6b\x6a\x22\xa9\x7f\x43\x42\x7c\x21\x21\xd2\x43\x44\xdf\x90\x10\x5f\x98\xa6\x06\x49\x4c\x04\xf5\xa9\x05\xf5\xe5\x11\xe6\xb5\x97\x1e\x08\x6a\x5e\x1f\xfb\xbd\xca\xba\x98\x17\x63\x4f\x47\xa2\x18\xf4\x86\xbe\xf9\x6d\x98\x6b\x92\xc2\x37\x4c\xc3\x6f\xc3\x1e\xa4\x26\xe2\x0d\xf6\xf4\x05\x7b\x3a\x48\xb6\xde\x60\x4f\x5f\xe4\x4d\x22\xf2\x92\xbe\x3d\xfa\x62\xe6\x2e\x09\x33\xf5\x1b\xac\xeb\xdb\x31\x67\x31\x86\x10\x55\x5f\x90\xd0\x49\xcd\xc7\x1b\x26\xd0\x77\x00\x05\x84\xe4\xf5\x0d\x16\xf4\x45\x7e\xbc\x4c\xd6\xee\x65\xbc\x82\x9a\x37\xcc\xae\xe3\x18\x42\x1b\xf6\x9a\xed\x42\xe8\x18\xa8\x6f\xb0\xae\xaf\xb1\xae\x4c\xcf\xb5\x0b\x62\x5e\x04\xdf\xe3\x95\xf4\x4a\x7c\x0f\xe6\xd8\x5c\x39\x2f\x41\x7a\x5f\xd3\xed\x8f\xd0\xd6\xbe\x12\xe3\x43\x2a\x6d\xe6\xc4\xd0\x70\xd5\xd1\x17\xd9\x41\x19\x7d\xac\x6f\x98\xd7\x5e\x98\xc5\x09\x3d\xa2\x6f\xb0\x92\x2f\x58\xc9\xd0\xbe\xbd\x41\x07\xdf\x0b\x6d\x92\x9d\x7a\x83\x9e\xbd\x27\x8b\x5f\x9c\x95\xb0\x17\xbc\x40\xa1\x09\xed\xd4\x1b\xda\xa9\xf7\x05\x4e\x04\xd9\xf6\x37\xc4\xdf\x57\xf1\x5e\x8c\x4f\x63\xec\x86\xd4\x35\x0a\xaf\xff\x40\xe0\x54\x43\xe0\xcc\xa3\x90\xad\x7d\x43\xc4\x45\xb2\xa6\x41\x9c\x00\xd5\xa0\x75\x6a\xd6\x84\x11\x5a\x26\x0d\xd6\x47\x33\xfa\x39\xa2\x8e\x67\x53\x41\x7b\x88\x97\xa3\x1a\xb4\x47\x61\xbe\x2f\xa4\xe5\x1a\x74\x02\x21\x08\x23\xb4\x3e\x1a\x6c\x8a\xa1\x2e\xe5\x51\xc9\x6a\x69\xb8\xcf\x68\x47\x58\xbc\x47\x80\xa8\xc6\x39\xb2\x90\xdb\x3c\x18\xd2\xa7\x1a\x67\x45\xe1\x76\x13\xf6\x48\x0d\x76\x43\xcd\xce\x37\x2a\xaf\x7f\x0d\x3b\x9f\x22\x87\x7b\xad\xec\xcb\x8c\x7e\x62\x7f\x12\x0e\x5b\x35\x6c\x4f\xc8\xf5\x32\x42\x05\xa3\xa1\xd6\x39\x89\x44\x19\xb4\xad\x1a\x6a\x1d\x45\x6a\xe5\x2a\x51\xa7\x51\x87\x7e\x92\x16\x68\x88\x4f\x7a\xf6\x6e\xac\x2d\xfd\xac\x55\xa1\x0e\x22\x5c\xae\x6a\xa8\x83\x14\x9a\x5c\xe6\x21\xf9\x2a\xd9\xe8\x0f\x49\xf1\x23\xe7\xc0\x57\xc9\xf2\x7e\x15\xec\xa2\xe7\x84\xde\x05\x57\xd4\xfd\x9d\xd5\xe7\xab\xec\xe7\x67\x99\x99\x22\xd7\xd9\x2e\x18\x51\x77\xf2\xa0\xf1\x7b\x04\xb5\xfb\xaa\xa5\xee\x9b\xb3\xb0\x4d\x8a\x6b\x5f\x55\x64\xad\xf3\xb5\xfd\xaa\xc6\x7b\x1f\xde\x9b\x6c\xf3\x8b\xf1\x7d\xc8\xb9\xe3\x77\xc0\x17\x76\xe8\xaf\x21\x5b\xda\x74\xf5\xc5\xd7\x62\x5e\x9a\xd9\x3f\x27\xc5\xfb\xaf\xd1\xfe\xf9\x19\x40\x66\x9e\x92\x58\xc7\xb3\xf2\x35\xe4\xad\xa0\x48\xfd\x05\x64\xe6\x67\xe6\xea\x3c\x29\x52\x7f\x8d\xaa\x9b\xaf\x99\xea\x66\xd6\x5f\xef\x71\xae\x5b\x3d\xef\xb1\x8e\x77\xea\xd7\xec\x8c\x4d\xcf\x0d\x96\xbe\xd6\x62\x7c\xb6\x7e\x93\xf4\xec\x0b\xbb\xf7\xd7\xec\xce\x99\x8c\x94\xff\x5a\x8f\xbe\xd8\x39\x9a\x74\xbf\xf8\x5a\x8f\xf1\xd9\x39\x9a\x79\xf1\x7b\x3c\x47\x5f\x1b\x27\x15\x25\xe7\x85\xf7\xd1\xd7\x26\x32\xd3\xb9\x4a\xe4\x6b\xbc\x73\xbe\x66\x6a\xd5\xc9\x80\xcf\xaf\xcd\xf8\x9e\x20\x81\x5d\xe1\x18\x18\x44\xf6\x35\xbb\x57\x98\xdc\x7a\x17\xcc\xa8\x43\x5a\xbb\xda\xfe\x66\x87\x65\xfc\xef\xb8\xe1\xaf\x11\x7d\xf0\x33\xa3\x7b\x9e\xa5\xb1\xa7\x54\x8a\x7c\x66\x74\xdf\x75\xbe\xd3\xda\x15\xbd\xb9\xc6\xef\xdc\x7b\xbb\x20\x56\x09\x3b\x9b\xfa\xf6\xaf\xdd\x31\x6b\x48\x28\x4c\xe7\xf8\xaf\xdd\xb1\x0b\x6f\x24\xc5\x9b\x51\x17\xbb\xe2\x39\xe9\xf0\xfc\x74\xb6\x27\xde\x33\x68\x97\x29\x83\x33\xf3\xc6\xf7\xec\x46\x9a\x12\x2b\xff\xc6\xae\x78\x91\x2e\x7c\xf1\xb4\xbc\x31\x2f\x2f\x76\xb6\xf0\x3d\x8d\xd9\x36\xbb\x38\xf3\x39\xef\x82\x68\x53\xb1\x43\x17\xe7\x53\x63\x57\x98\x73\x14\x73\x73\xee\x82\x98\xeb\x0f\xfd\x5c\xdc\x85\x5f\xec\x8a\x0f\xe8\xda\xce\x4d\x7d\xe1\xb9\xf0\x75\x9c\xea\xc5\xd3\xd9\xe3\x54\x77\x9c\x24\x0a\xea\x5f\x67\xf8\xc2\xd7\x3b\xb2\xaf\x70\x37\x75\x0a\xb2\x9f\x61\xf1\xe7\x39\x5c\x49\xff\x75\x3a\x0f\x7d\x1d\x02\xa9\x27\x4f\x4d\x5f\x97\xe8\x8b\x9c\xc4\xaa\xfc\x1e\x39\x98\xaf\x9b\x60\x29\x54\xc2\x7c\x7d\x45\x3f\x21\x3c\x8a\x2b\x4f\xbf\x1e\x7b\xb0\xaf\x93\x89\x96\x7d\x59\xd1\xa6\xe5\xb2\x91\x58\xa3\x7e\x45\x9b\x10\x10\x09\x5f\xfc\x75\xda\xec\xbe\x0e\x9b\xdd\x22\x55\xee\x0c\xb5\xf8\x3a\x92\x55\x53\x11\xf1\x75\xba\x1b\x7f\xfd\x3d\x49\xb9\x39\x76\x8d\x7e\x5a\xcc\xbb\xac\xce\xf7\xe8\x2b\xfe\x19\xee\xed\xae\xf3\x79\x89\x10\xf5\x0f\x21\xea\x01\xa4\xfa\x0d\xda\x94\xbf\x61\x11\x69\x93\x38\x53\xdf\x20\x47\xf1\x8d\x86\x75\xe7\x19\x1b\x94\x04\x3e\xf8\x4a\x4c\xfa\x35\x7c\xe1\x2b\xf1\x0d\x24\xd0\xa5\x34\xfa\x0d\xc6\x4a\x7d\x03\x54\x72\xf1\xf6\x18\x41\x25\x47\x47\x9b\x12\xef\x71\x7f\x0e\xc4\x12\x2e\xee\xf9\x41\x05\xc6\x37\x26\x32\xc5\x72\xef\x46\xb4\xd1\x37\xcc\x01\x51\x88\xd3\xf0\x0d\x4a\xdb\xdf\x40\x86\xe7\x14\xe3\x0b\x1a\x62\x38\x5a\xcc\x96\xf7\x8d\x27\x66\x65\x9f\xda\xee\x0a\x8a\x6f\xd0\x36\xfa\x0d\x2d\xbf\xf2\xa6\x7d\x43\x63\x64\xb6\x3a\x75\x36\xbe\xf5\xc5\x5b\x76\xf2\x22\x9f\xd4\x17\x5e\x19\xdf\x04\x88\x30\x5d\x55\xbf\x08\x78\xf9\x04\xa9\xb5\x29\x67\x7f\xc2\x40\x85\x4f\x90\x49\x9a\x19\x98\x3e\xa1\xfa\xec\xe4\xe0\x9c\x83\xbb\x56\x28\xbf\x9e\x74\x9c\x73\xba\x9a\xe8\x93\xd8\x45\x62\xb2\xe6\x9c\xe4\x6b\x24\x76\x8a\xc0\x75\x9b\xde\x38\x9f\x32\x66\xe7\x53\x53\x0f\x36\x82\xdc\x7c\x81\x2f\xfa\x21\xc1\xbc\x4b\x31\x9f\xc6\xbe\x54\xf3\x75\x88\xf6\xe2\x7e\x56\xeb\x87\xdb\x83\x3f\x25\xfe\xc7\xa7\x07\xff\x83\x35\x6f\xd4\x20\xd9\x32\x6b\xd8\x73\x35\x3b\x6a\x67\x0f\xe8\xa2\xf9\x69\x83\x07\x07\x6b\x6a\xd4\x40\xb1\xce\x9a\xe8\x9b\xe5\x82\x8d\x91\xc6\x99\xd0\xf6\xfc\xf9\x29\x6e\x2e\xf9\xb4\x45\xdf\xb6\xfc\x4b\x07\xcb\x4f\x7b\xcc\x5c\x07\x78\x16\x6b\x5a\xd4\x58\xc0\x02\xc7\xd3\xa3\x07\x1d\x69\x94\x59\x13\x23\xdd\x6c\x05\x9d\x35\x3f\xa5\x51\xe6\xb3\x9c\xfd\xc1\x0f\x04\xe6\xce\xa7\xe3\xfe\xf3\x13\x77\x6c\xe4\x49\xfc\xbe\x04\x44\x0f\xaf\x89\xf5\x36\xd8\x56\x86\x65\x7e\x5f\xec\xbc\x0f\xd9\xc4\xbc\x07\x5f\xcc\xb5\x25\xf8\xab\xe4\x80\x02\x78\xe6\x33\xe0\x19\x8f\xc8\x2c\xe9\x75\xd5\xe4\xfe\xf9\xfd\xbe\x3d\x4b\x66\xae\xb3\xfd\xd3\x6e\x56\xa7\xb0\x25\x27\x97\xe7\xf6\x4f\x50\x20\xcf\x2c\x9c\x97\xdf\x66\xfb\x27\xbc\xc3\x3c\x4d\x75\x65\x82\xa4\xfd\xf3\xb8\x78\x67\xaf\x73\x9c\x95\xfd\x13\x2e\xde\x9e\x88\xbb\x65\xbf\xe9\xf6\x4f\xb8\x5c\x7b\xbe\x64\x59\x7e\xcb\xef\x9f\x47\x9d\xfb\xbf\xf0\x54\xfb\x9f\xff\x7a\xfd\xc7\xff\xe3\xff\xf5\xff\xbe\xfe\xe3\xff\x73\xfd\x57\xfd\x79\xfe\xe7\x7f\xfe\xa7\xfe\xb7\xff\xf1\xfe\x97\xe7\x7f\xfc\xfc\x3f\x77\xe9\xcf\xab\xdf\x7f\xf9\x6f\xfa\x9f\xfa\xff\xfb\xef\xff\xf3\x3f\x1f\xfd\xf9\x8f\xff\xfe\x1f\xfb\x2d\xfb\xfb\xff\x07\x00\x00\xff\xff\x27\xd5\xf1\x1c\x64\xeb\x04\x00"); -func _fee ()([]byte ,error ){return _dc (_adf ,"78-RKSJ-H")};func _dd ()([]byte ,error ){return _dc (_bcd ,"78-EUC-H")};func _fbfg ()(*asset ,error ){_abae ,_cfbe :=_gbfcg ();if _cfbe !=nil {return nil ,_cfbe ;};_gceb :=bindataFileInfo {_ag :"UniJIS-UCS2-V",_bc :4167,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492912,0)}; -_ceec :=&asset {_cd :_abae ,_dce :_gceb };return _ceec ,nil ;};func _bcfg ()([]byte ,error ){return _dc (_bgbb ,"KSCms-UHC-V")};func _bfgdd ()(*asset ,error ){_eega ,_ebba :=_gfaee ();if _ebba !=nil {return nil ,_ebba ;};_cfcf :=bindataFileInfo {_ag :"HKdla-B5-H",_bc :21023,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492309,0)}; -_edba :=&asset {_cd :_eega ,_dce :_cfcf };return _edba ,nil ;};func _bbff ()([]byte ,error ){return _dc (_cccb ,"UniKS-UTF8-V")};func _beab ()([]byte ,error ){return _dc (_befe ,"UniAKR-UTF16-H")};func _eccg ()(*asset ,error ){_debc ,_cafe :=_ebbeg (); -if _cafe !=nil {return nil ,_cafe ;};_dfba :=bindataFileInfo {_ag :"UniGB-UTF16-H",_bc :197731,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492754,0)};_babb :=&asset {_cd :_debc ,_dce :_dfba };return _babb ,nil ;};func _febce ()(*asset ,error ){_bgfd ,_ffdga :=_eaec (); -if _ffdga !=nil {return nil ,_ffdga ;};_edfe :=bindataFileInfo {_ag :"CNS2-H",_bc :2037,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491555,0)};_edade :=&asset {_cd :_bgfd ,_dce :_edfe };return _edade ,nil ;};func _ddb ()([]byte ,error ){return _dc (_aefe ,"GBTpc-EUC-V")}; -func _caceg ()([]byte ,error ){return _dc (_bcef ,"UniGB-UCS2-V")};var _efe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x5a\x4f\x8b\x27\x39\x72\xbd\xd7\xa7\xc8\xe3\xfa\xb0\x6e\x29\x32\xf5\x27\xa1\xf9\xc1\xd2\xdb\x0b\x7d\xd8\xb1\x71\x7b\xc6\x06\xe3\xc3\x2f\x53\xca\xa6\xc0\x5d\x55\x54\x57\x1f\xe6\xdb\x1b\x49\x2f\xf4\xa2\x06\x83\x77\x87\x65\x34\xf9\x4a\x59\x21\xbd\x54\xe8\x45\xbc\xfa\xf0\xe9\xcb\x5f\xbf\x3c\x3d\xbe\x2d\x1f\xfe\xf5\xf5\xf9\xfc\x5a\xdf\x96\xeb\xf1\xa9\xbc\xd6\x1f\xcf\x3f\x5f\xcf\xba\x1c\xf5\xdb\xe3\xd3\xc3\x83\x97\xa5\x3c\x9e\x6f\xfa\x9f\xfd\x5f\xe7\xf7\xfb\xcb\xc3\x43\x9b\xff\xf5\xf7\x1f\x6f\xf5\xfb\x97\xa7\xeb\x79\x59\xc7\xcf\x95\x9f\x2f\xf8\xd9\x65\xf9\xf0\x6f\xf5\xdb\xe3\x8f\xb7\xd7\xdf\x97\x3f\xfd\xa5\x3c\x1f\xf5\x9f\x96\x52\xaf\xf6\xfc\x5f\x5e\x4b\x7d\x7d\x7c\xfa\xb6\xfc\xe9\xd3\x2f\x5f\xfd\x7c\xfc\xf5\xe7\xcb\xcb\xff\xd4\xef\xf5\xe9\x6d\x71\xfd\x59\x7d\x2a\xfd\xdf\x0f\x1f\x3e\xfd\xfd\xfe\xf2\xcb\xfd\x7b\x5d\x3e\x7c\xfa\xe5\xeb\x9f\x3f\xff\xfa\xe9\xcf\xbf\x75\xa4\x03\xbf\xd5\xd7\x1f\x8f\xcf\x4f\x8b\x77\xff\xec\x5c\xe4\xf3\x7f\xff\xfd\xa5\x2e\x1e\x6f\xf8\xcf\x5f\xbf\xfc\x75\xf9\x2f\xbf\x78\xb7\x48\x58\xf3\xfe\xdf\x78\xfe\x1f\x7f\x7f\x2e\xf3\xa7\xc2\x88\xfd\x7c\x2e\xf5\xc7\xcb\xfd\xac\xaf\xf7\xa7\x6f\xf5\x61\x59\x3e\x3a\x77\x5b\xc6\xff\x3e\x66\x77\x6b\x4f\xf2\xe7\xbf\xf8\xf6\xcf\x6d\x0c\xff\xf6\xf9\x6f\x9f\xf5\xb9\xf0\xb9\xd8\xe7\x2b\x9f\xaf\xf3\xf9\x78\xd6\xdf\x3c\x9e\xd5\xa7\xf2\x87\xdf\xff\xe0\x47\x58\x4f\xcf\x6f\xa5\x5e\xe3\x59\x8f\xe8\xa3\xbf\x6e\x8b\x5f\xe3\x96\xdb\x2c\x0b\x3f\x78\xe7\xb0\x96\xc7\x82\x19\xd2\x66\xa4\xaa\x33\x3e\xe6\x7a\xf7\xed\x9f\x16\xd1\x18\x1e\xb7\x65\xdf\x27\x70\x12\x38\xc7\xa4\x38\xb1\x32\xb1\xe3\x7e\x5b\xbc\xf7\x8a\x1c\x07\x91\xe3\xb6\x78\xd9\x26\xc2\xf7\xb5\xa1\x97\xf9\xb6\xc3\xbc\xad\xbc\x47\x2a\x91\xbe\x54\xa7\xc8\xe9\x26\x72\xfa\xf7\x88\x10\x59\x1b\x32\x23\x38\x37\x22\xe1\x3d\x12\x89\xa4\x86\xcc\xed\x39\x33\x91\xfd\x3d\x72\x27\xd2\x56\xba\xc9\x44\xb8\xd2\xb3\xbc\x47\xb8\x9e\xb3\xad\x87\x3b\x5a\xb8\x9e\xe2\xdf\x23\x5c\x4f\x69\xeb\x09\x73\xa5\x85\xeb\x29\xe1\x3d\xc2\xf5\x94\xb6\x9e\x30\x57\x5a\xb8\x9e\xb2\xbf\x47\xb8\x9e\xd2\xd6\x13\xe6\x4a\x0b\xd7\x73\x55\x8b\x08\x3f\x1e\xe9\x7b\xbd\xaf\x8a\x70\xaf\xfb\xb0\x7d\x3d\x69\x62\x61\x62\xed\x7d\x22\xfa\xcd\xad\x7c\xdf\xda\xb6\x4a\xb2\xce\xd9\x88\x6c\x6d\xce\xba\xea\x6f\x0a\x44\x42\x3d\x6f\xcb\x26\x3a\x27\xd4\xb9\xdb\xe1\x72\xb7\x25\x38\x9d\x13\x39\x27\xb6\x4f\x2c\x38\xdd\xed\x44\xa4\x0f\xc3\x1e\x26\x22\x44\xb6\xdb\x12\x56\xce\x09\x44\x42\x9b\x43\x24\x12\x89\x6d\xce\x3e\x91\x44\x24\xdd\x96\xe8\x64\x22\x99\x48\xbe\x2d\x61\x73\x13\xd9\x89\x9c\x6d\xce\x3a\x91\x42\xe4\x6a\x73\xf4\x3c\xa6\x63\x7e\x57\x7d\x18\x5d\x9a\x08\x57\x7a\xf4\x95\xee\x79\x42\x5c\x6a\x1b\x46\x47\x64\x25\xb2\xde\x96\xe8\x67\x70\xc7\x46\xa4\x6d\xcf\xb6\x4d\x84\xdb\xd3\x86\xd1\x33\x38\x6e\x4f\x1b\x86\x7d\x66\x9f\x74\x70\x7f\xda\x30\x6c\x93\x87\x83\xfb\x73\xec\xed\x75\x73\xe7\x8e\x3b\x91\x7b\x9b\x33\x79\x60\x56\xea\xc3\xe8\x1c\xe3\x3e\x09\x9d\x6d\x12\x37\x88\x9b\xda\x86\xd1\x73\x45\x95\x48\xbd\x2d\x71\x7e\x8c\xa9\x65\x29\x33\x8c\xce\xcd\xb8\x99\xb1\x52\xcb\x58\x71\x66\x9f\xc4\x8c\xd5\x87\x61\x26\xe7\x74\x72\xbb\x5b\x8a\x8a\xfc\xe6\x4e\xee\xcf\xd9\xf7\x67\xee\x1c\x33\x56\x6a\x79\x29\xce\xec\x93\x98\x97\xfa\x30\x3a\x7e\xf6\x27\xd7\xda\x86\x4c\xf5\x89\x29\xab\x0f\xc3\x4c\x32\xe9\xe4\x5a\x5b\xf6\xe2\x9d\x92\x0a\x3f\xad\x96\xbd\x62\x98\x21\x14\x2e\xa8\xa5\xac\x10\xe6\xb7\xc0\x94\x95\x5a\x8e\x8a\x33\x31\xa5\xc2\xcf\xbe\xe5\xa8\x60\x10\xd2\x5a\x06\xad\x93\x3c\xe6\xac\x54\xae\xdb\x92\x64\x86\x5d\xc9\x43\x1b\x26\x99\x0c\x55\x86\xdd\x86\x21\xcc\x4d\xa8\x64\xa8\x86\x36\x87\x08\xc3\x6e\xc3\x10\x66\x04\x95\x0c\xd5\x72\x5b\xd2\xca\x08\xb8\xa5\x6d\x18\x9d\x79\x1d\xf7\xf4\x92\x36\x69\xbe\xee\xe2\xce\xb5\x61\x74\x32\xb7\xfb\xe2\xd1\xbb\xf2\x6d\x49\x3c\xfd\x17\xb7\xae\x0d\xa3\x9b\xa9\x36\x5d\x3c\x2c\x57\x0b\x8f\x8c\x5f\x0c\xaf\x0d\xf3\xdc\xef\xcc\xe4\x98\x5b\x3a\xcb\x21\x4c\x24\x11\x49\xb7\x25\x47\x99\x48\x26\x92\x1b\x12\x27\xb2\x13\xe9\xbc\xe6\x89\x4c\x5e\x73\xcb\x3f\x39\xea\x2e\x64\xe6\x9f\x3e\x8c\x8e\xaf\x63\x02\xca\x2d\x99\xe4\x34\x83\x63\x2e\xc9\x5d\xad\xb8\x79\x92\xf3\x61\x7e\x53\xfb\x82\x3c\x03\x67\x62\xc8\xed\x90\x7b\xe7\x67\x7c\x3c\xe5\xb9\x5f\x7b\x4e\xe6\x2c\xde\x7b\xb9\x9d\x31\xcf\x1d\xcf\x3c\x63\x7d\x18\x7d\x5c\x27\x54\x09\xd5\x0e\xcd\xdf\xc5\x53\x96\xdb\x59\xf2\x6e\xde\x21\x99\x87\xa9\x0f\xa3\x8f\x84\x18\x46\xbf\xe6\x25\xcf\x17\xf2\x9e\xef\xc3\xb8\x72\xa3\x78\x9e\x72\xfb\xe2\xbd\xec\x5b\x97\xa3\x2a\x21\xff\x2f\x55\x89\x1f\x67\x28\x6d\x18\xa2\x9b\x08\x23\xa9\x5d\x08\xcc\x33\x9a\x6b\x20\xd4\x55\xd7\x4c\xe5\xb9\xf2\xab\xa9\x4d\x8c\xc4\x3c\x79\xae\xe4\xa5\x0d\x43\xf4\x13\xe1\x06\xb7\xfb\xde\xc7\x79\x79\xe7\x8b\x5f\xee\x75\xdc\x16\x71\x7c\xdf\xc5\xf7\x75\x35\xc2\x54\xba\xf3\x7b\xef\xc3\x94\x56\x3f\x21\x21\x24\x6d\xd6\xcc\x71\xfb\x7d\x25\xb4\xf6\x59\x84\x36\x42\xa1\xcf\x5a\x27\x14\x09\x1d\xb7\x65\x75\x1b\x7f\xd7\x49\xa8\x69\x9f\xe0\xc3\x84\x2e\x42\xd7\x6d\xd9\xdd\xcc\x59\x3b\x6f\xfe\x3e\xdc\x79\xc2\x77\x5e\xfd\x7b\x3b\x45\xeb\x3e\xbf\xc4\x9d\xa7\x68\x6f\x97\xf5\xb6\x72\x5d\xbc\xad\xfb\x70\x4b\xf3\x4e\xde\x79\xc2\xf6\x76\x3d\x07\xb7\x71\xd6\x4e\xa8\x7f\x89\x4e\xa7\x9d\x94\x8f\xa7\xb4\x2b\x31\xe8\xe1\x3b\x29\xf7\xce\x2e\xf7\xa6\x0c\x3b\x29\xf7\xce\xd0\x90\x98\xc1\xd6\x49\x51\x77\xc6\x86\xa4\x8c\x45\x9d\x14\x75\xe7\xc8\x68\x09\x9f\xe0\xc9\x8c\x76\x76\xf2\xf7\x84\x4d\x3f\xc9\xfd\xb9\x77\xd1\xeb\xa2\x86\x70\x27\x74\xef\x90\x0f\x1a\xc3\x41\xe8\xe8\x90\x28\xc1\xe7\x49\xe8\xec\xd0\xaa\x4a\xe3\x2c\x84\x4a\x87\x36\xe5\xfe\xac\x84\xea\xd0\xde\xab\x86\x71\x11\xba\x3a\x14\x35\xd5\x14\x37\xa1\xe2\x3a\x94\x04\x61\x14\xd6\x7b\x65\x88\xf9\xec\x11\x46\x21\x1d\xa5\xeb\x72\xbf\xab\x52\x2b\x14\xe6\x65\xed\x87\x64\xea\x9a\x42\xaa\xca\x36\x20\x15\x71\x85\x5c\x95\xce\x95\xcc\xfa\xa0\x90\xac\x12\x47\x0d\xa0\x52\xbf\x90\xad\xd2\xd9\x92\x35\x6b\x18\xa4\xab\x8c\xb3\xba\x69\xee\x2a\xe4\xab\xec\xe3\x18\x6b\x32\x2c\xe4\xab\x74\xbe\x24\xea\xe7\x5e\xc8\x57\xe9\x7c\x49\xd2\xfb\xbb\x90\xaf\xd2\xf9\x92\xac\x5a\xa5\x90\xaf\xd2\xf9\x92\x5d\x3f\xe9\x42\xbe\x4a\xe7\x6b\x9d\xe9\xba\x90\xaf\xd2\xf9\x5a\xbd\xca\xc6\x4a\xbe\x6a\xe7\x6b\x15\x2d\x62\x2a\xf9\xaa\x7e\x14\x3e\x82\x30\x2a\xf9\xaa\x9d\xaf\x75\xd3\xbc\x50\xc9\x57\xed\x7c\xad\xc1\x21\x8c\x4a\xbe\xea\xa8\xa4\x66\x19\x51\xc9\x57\x0d\x03\xda\x35\x0c\xf2\x55\x3b\x5f\x6b\xda\x35\x0c\xf2\x55\x3b\x5f\x6b\xce\x1a\x06\xf9\xaa\x9d\xaf\x75\x4f\x1a\x06\xf9\xaa\x9d\xaf\xcd\x25\x0d\x83\x7c\xd5\xce\xd7\xe6\xf5\xfe\xaf\xe4\xab\x76\xbe\x36\xd1\xec\x5f\xc9\x57\xed\x7c\x6d\xab\xaa\x93\x4a\xbe\x6a\xe7\x6b\xdb\x34\xc5\x57\xf2\x55\x3b\x5f\x5b\xd8\x34\x0c\xf2\x55\x3b\x5f\x5b\x54\x31\x76\x91\xaf\xab\xf3\xb5\xcd\x8b\xe1\x22\x5f\x57\xe7\x6b\xcb\xaa\x2f\x2f\xf2\x75\x75\xbe\xb6\xdd\x23\x8c\x8b\x7c\x5d\x9d\xaf\xe0\x3c\xc2\xb8\xc8\xd7\x35\x52\xa1\xd7\x0b\xf4\x22\x5f\x57\xe7\x2b\x88\xd3\x30\xc8\xd7\x15\x07\xa4\x19\xf4\x22\x5f\x57\xe7\x2b\xac\x9a\x42\x2f\xf2\x75\x75\xbe\xc2\xa6\x39\xf4\x22\x5f\x57\xe7\x2b\x04\x4d\xa2\x17\xf9\xba\x3a\x5f\x21\x6a\x16\xbd\xc8\xd7\xd5\xf9\x0a\x49\xb3\xe8\x45\xbe\xae\xce\x57\xc8\x9a\x45\x2f\xf2\x75\x95\x56\xc2\x84\x1d\x59\x54\xd8\xae\x92\xd1\x8b\x08\x3b\x8a\x6d\x61\x33\x42\x46\x5b\x21\xba\xdd\x01\x5a\x09\xf5\xed\x8d\x3e\x6f\x80\x36\x42\x7d\x7b\xa3\xa4\x0c\x28\x10\x1a\x57\xcd\x9a\x04\x50\x24\xd4\xb7\x37\x6e\x51\xc3\x48\x84\xfa\xf6\x46\xd5\x42\x42\xfd\x2c\x43\x6a\x44\x2d\x72\x84\x52\x43\xee\x7d\x7b\x63\xda\x34\x8c\x3b\xa1\xfb\xb8\xf1\x36\x0d\xe3\x20\xd4\xb7\x37\xee\xab\x86\x71\x12\xea\xdb\x9b\xdc\xaa\x61\x14\x42\xfd\x38\x24\x6d\xd2\xc9\xbd\x12\xea\xc7\x21\x89\xd7\x30\x2e\x42\xfd\x38\x24\x55\x6b\x72\xcc\xe3\x20\x47\x3f\x0e\x69\x43\x61\x29\x07\xf9\x3a\x3a\x5f\x29\xa0\xf2\x96\x83\x7c\x1d\x32\xa0\x1d\x61\x1c\xe4\xeb\xe8\x7c\xa5\x08\xf9\x2a\x07\xf9\x3a\x3a\x5f\x29\x65\xf9\x47\x34\xaa\x1c\xa4\xf3\x08\x43\x1f\x24\x8d\x92\x74\x1e\x43\x3a\xec\x49\xa3\x24\x9d\xc7\xd0\x0e\x2e\x6a\x94\xa4\xf3\xe8\x74\x66\x6d\x8c\xc9\x41\x3a\x8f\x4e\x67\x96\xa0\x9b\x45\x3a\x8f\x4e\x67\x5e\x37\x0d\x83\x74\x1e\x9d\xce\xbc\x6d\x1a\x06\xe9\x3c\xce\x51\x94\xad\x1a\x06\xe9\x3c\x3a\x9d\x39\x8a\x86\x41\x3a\x8f\x3a\x84\x8f\x68\x18\xa4\xf3\xe8\x74\xe6\xec\x11\xc6\x49\x3a\xcf\x4e\x67\xde\xd1\xe5\x91\x93\x74\x9e\x9d\xce\xdd\x39\x84\x41\x31\x27\xa7\x0c\x08\xfd\x24\x39\x49\xe7\xd9\xe9\xdc\xfd\x8e\x30\x28\xf4\x64\x08\xbd\x5d\xb2\x86\x41\xbe\x86\xd2\xdb\xd7\xac\x61\x90\xaf\x21\xf5\xf6\x2d\x69\x18\xe4\x6b\x68\xbd\x3d\x44\x0d\x83\x7c\x41\xec\xc5\xa8\x61\x90\xaf\xa1\xf6\xf6\x14\x34\x0c\xf2\x35\xd4\xde\x9e\x83\x86\x41\xbe\x86\xda\xdb\xf7\x4d\xc3\x20\x5f\x50\x7b\xce\xad\x1a\x07\x09\x83\xdc\x73\x7e\xd5\x40\xc8\x18\xf4\x9e\x13\xd1\x48\x48\x19\x04\x9f\x5b\xd1\xd5\x10\x2a\x3e\x81\xe2\x73\x1b\x8a\x5c\xa1\xe4\x13\x48\x3e\x17\xd0\xd0\x13\x6a\x3e\x81\xe6\x73\xda\x89\x14\x8a\x3e\x19\xa2\xcf\xbb\xa8\xc9\x96\xaa\x4f\x86\xea\xf3\x2e\x69\xb6\xa5\xec\x93\x21\xfb\xbc\xcb\x9a\x6e\xa9\xfb\x64\xe8\x3e\xef\x76\xcd\xb7\x14\x7e\x32\x84\x9f\xf7\x4e\x13\x2e\x95\x9f\x0c\xe5\xe7\xbd\xd7\x8c\x4b\xe9\x27\x43\xfa\x79\x2f\x9a\x72\xa9\xfd\xa4\x40\xab\xaf\x9a\x73\x29\xfe\x64\x88\x3f\xef\x37\x4d\xba\x54\x7f\x32\xd4\x9f\xf7\x41\xb3\x2e\xe5\x9f\x0c\xf9\xe7\xbd\xf6\xe5\x84\xfa\x4f\x86\xfe\xf3\x5e\xfb\x3e\x42\x01\x28\x43\x00\x7a\x9f\x35\xf1\x52\x01\xca\x50\x80\xde\xef\x9a\x79\x29\x01\x65\x48\x40\x2f\x4e\x53\x2f\x35\xa0\x0c\x0d\xe8\xc5\x6b\xee\xa5\x08\x94\x21\x02\xbd\x88\x26\x5f\xaa\x40\x19\x2a\xd0\x8b\x68\xf6\xa5\x0c\x94\x21\x03\xbd\xac\x9a\x7e\xa9\x03\x65\xe8\x40\x2f\x5b\xd6\x58\xc8\xdf\x10\x82\x5e\x82\x66\x58\x2a\x41\x19\x4a\xd0\x4b\xd4\x14\x4b\x29\x28\x43\x0a\x7a\x49\x9a\x63\xa9\x05\x65\x68\x41\x2f\x59\x93\x2c\xc5\xa0\x54\x14\x5b\xbb\x66\x59\xaa\x41\xa9\xa8\xb6\x9c\xa6\x59\xca\x41\x19\x72\xd0\xaf\x5e\xf3\x2c\xf5\xa0\x0c\x3d\xe8\x57\xd1\x44\x4b\x41\x28\x43\x10\xfa\x75\xd5\x4c\x4b\x45\x28\x43\x11\xfa\x75\xd3\x54\x4b\x49\x28\x43\x12\xfa\x35\x68\xae\xa5\x26\x94\x4b\x7d\x92\x96\x6c\xa1\x73\x68\xc9\xc1\x8e\x7b\x67\xc5\xc1\x86\x33\x16\x1c\xec\x37\x63\xbd\xc1\x76\x33\x96\x1b\xec\x36\x63\xb5\xc1\x66\x33\x16\x1b\xec\x35\x63\xad\xc1\x56\x33\x96\x1a\xec\x34\x63\xa5\xc1\x46\x33\x16\x1a\xec\x33\x63\x9d\xc1\x36\x33\x96\x19\xec\x32\x63\x95\xc1\x26\x33\x16\x19\xec\x31\x63\x8d\xc1\x16\x33\x96\x18\xec\x30\x63\x85\xc1\x06\x33\x16\x18\xec\x2f\x63\x7d\xc1\xf6\x32\x96\x17\xec\x2e\x63\x75\x41\x59\x1a\x8b\x0b\xf6\xd6\x3b\x6b\x0b\xb6\x96\xb1\xb4\x20\x3b\x8d\x95\x05\xb5\x69\x2c\x2c\x88\x4c\x63\x5d\xc1\xb6\x32\x96\x15\xd4\xa6\xb1\xaa\x20\x32\x8d\x45\x05\x7b\xca\x58\x53\xb0\xa5\x8c\x25\x05\x3b\xca\x58\x51\xb0\xa1\x8c\x05\x05\xfb\xc9\x58\x4f\xb0\x9d\x8c\xe5\x04\xbb\x89\x56\xd3\xff\x27\xbf\xe0\x42\x19\x07\x0a\xee\x93\x75\x9e\xe0\x3a\x19\xc7\x09\x6e\x93\x71\x9a\xe0\x32\x19\x87\x09\xee\x92\x71\x96\xe0\x2a\x59\x47\x09\x6e\x92\x71\x92\xe0\x22\x19\x07\x09\xee\x91\x71\x8e\xe0\x1a\x59\xc7\x08\x6e\x91\x71\x8a\xe0\x12\x19\x87\x08\xee\x90\x71\x86\xe0\x0a\x59\x47\x08\x6e\x90\x71\x82\xe0\x02\x19\x07\x08\xee\x8f\x71\x7e\xe0\xfa\x18\xc7\x07\x6e\x8f\x71\x7a\xe0\xf2\x58\x87\x07\xee\x8e\x71\x76\xe0\xea\x18\x47\x07\x6e\x8e\x71\x72\xe0\xe2\x18\x07\x07\xee\x8d\x71\x6e\xe0\xda\x18\xc7\x06\x6e\x8d\x71\x6a\xe0\xd2\x58\x87\x06\xee\x8c\x71\x66\xe0\xca\x18\x47\x06\x6e\x8c\x71\x62\xe0\xc2\x18\x07\x06\xee\x8b\x71\x5e\xe0\xba\x18\xc7\x05\x6e\x8b\x75\x5a\xe0\xb2\x18\x87\x05\xee\x8a\x75\x56\xe0\xaa\x18\x47\x05\x6e\x8a\x75\x52\xe0\xa2\x18\x07\x05\xee\x89\x71\x4e\x50\xf5\x19\xc7\x04\x6e\x89\x71\x4a\xe0\x92\x18\x87\x04\xee\x88\x71\x46\xe0\x8a\x18\x47\x04\x6e\x88\x75\x42\xe0\x82\x18\x07\x04\xee\x87\x75\x3e\xe0\x7a\x58\xc7\x03\x6e\x87\x75\x3a\xe0\x72\x58\x87\x03\xee\x86\x75\x36\xe0\x6a\x58\x47\x03\x6e\x86\x75\x32\xe0\x62\x58\x07\x03\xee\x85\x75\x2e\xe0\x5a\x58\xc7\x02\x6e\x85\x75\x2a\xe0\x52\x18\x87\xe2\x23\xec\x07\x63\x3d\xc0\x76\xb0\x96\x03\xec\x06\x6b\x35\xc0\x66\xb0\x16\x03\xec\x05\x63\x2d\xc0\x56\xb0\x96\x02\xec\x04\x6b\x25\xc0\x46\xb0\x16\x02\x6a\x7a\x6b\x1d\xc0\x36\xb0\x96\x01\xec\x02\x6b\x15\xc0\x26\xb0\x16\x01\xec\x01\x6b\x0d\xc0\x16\xb0\x96\x00\xec\x00\x6b\x05\xc0\x06\xb0\x16\x00\xda\xff\xb6\xf5\x8f\xb6\xbf\x6d\xf9\xa3\xdd\x6f\x5b\xfd\x68\xf3\xdb\x16\x3f\xda\xfb\xef\x5a\xfb\xa8\x04\x4d\x4b\x1f\x55\x9e\x69\xe5\xa3\xb8\x33\x2d\x7c\xd4\x74\xa6\x75\x8f\x52\xce\xb4\xec\x51\xc1\x99\x56\x3d\x0a\x37\xdb\xa2\x47\xc1\x66\x5b\xf3\x28\xd4\x6c\x4b\x1e\x05\x9a\x6d\xc5\xa3\x2e\xb3\x2d\x78\x94\x63\xb6\xf5\x8e\x2a\xcc\xb6\xdc\x51\x7c\xd9\x56\x3b\x6a\x2e\xdb\x62\x47\xa9\x65\x5b\xeb\xa8\xb0\x6c\x4b\x1d\x85\x95\x69\xa5\xbf\xbb\x5c\x37\xff\xc7\xbb\x15\xd5\x96\x6d\xb0\xa3\xc8\xb2\x8d\x75\xd4\x56\xb6\xa1\x8e\x92\xca\x36\xd2\x51\x49\xd9\x06\x3a\x0a\x28\xdb\x38\x47\xdd\x64\x1b\xe6\x28\x97\x6c\xa3\x1c\x55\x92\x6d\x90\xa3\x38\xb2\x8d\x71\xd4\x44\xb6\x21\x8e\x52\xc8\x36\xc2\x51\x01\xd9\x06\x38\x0a\x1f\xdb\xf8\x46\xbd\x63\x1b\xde\x28\x73\x6c\xa3\x1b\xd5\x8d\x6d\x70\xa3\xa8\xb1\x8d\x6d\xd4\x32\xb6\xa1\x8d\x12\xc6\x36\xb2\x51\xb9\xd8\x06\x36\x0a\x16\xdb\xb8\x46\x9d\x62\x1b\xd6\x28\x4f\x6c\xa3\x1a\x55\x89\x6d\x50\xa3\x18\xb1\x8d\x69\xd4\x20\xb6\x21\x8d\xd2\xc3\x36\xa2\x51\x71\xd8\x06\x34\x0a\x0d\xdb\x78\x46\xd3\xd9\x36\x9c\xd1\x6c\xb6\x8d\x66\x34\x99\x6d\x83\x19\xcd\x65\xdb\x58\x46\x53\xd9\x36\x94\xd1\x4c\xb6\x8d\x64\x34\x91\x6d\x03\x19\xcd\x63\xdb\x38\x46\xd3\xd8\x36\x8c\xd1\x2c\xb6\x8d\x62\x34\x89\x4d\x83\xd8\x1e\x94\x36\xfe\x7e\x7f\x79\x98\x7f\x36\x7a\xfe\x7c\x7d\xad\x4f\x6f\xfd\x4f\x54\xfb\xdf\x86\x2e\xa5\x5e\x8f\x4f\x75\xfe\xb9\xeb\xcb\xf3\x4b\x9b\xd5\xff\xff\xbf\x01\x00\x00\xff\xff\x87\x4f\xea\x2f\x1a\x2b\x00\x00"); -type bintree struct{Func func ()(*asset ,error );Children map[string ]*bintree ;};func _edadf ()(*asset ,error ){_ceab ,_accd :=_agbc ();if _accd !=nil {return nil ,_accd ;};_agbd :=bindataFileInfo {_ag :"Katakana",_bc :467,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492475,0)}; -_gaagd :=&asset {_cd :_ceab ,_dce :_agbd };return _gaagd ,nil ;};func _adg ()(*asset ,error ){_gcad ,_ecc :=_bdef ();if _ecc !=nil {return nil ,_ecc ;};_def :=bindataFileInfo {_ag :"ETenms-B5-H",_bc :401,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491796,0)}; -_cdag :=&asset {_cd :_gcad ,_dce :_def };return _cdag ,nil ;};var _gcaf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\xdf\x6a\xdb\x30\x18\x05\xf0\x7b\x3f\x85\x2e\xbb\x8b\x2d\xb6\xfe\x5a\x50\x0a\xa3\x19\x2c\x83\xae\x63\x5d\xbb\xc1\xd8\x85\x63\x7d\x09\x86\x45\x36\xb6\x03\xeb\xdb\x0f\x9d\x93\x65\x17\x45\xf5\x2f\xfa\x0e\x47\x49\x94\xcd\xfd\x6e\xbb\xcb\xc3\xaa\x36\x5f\xe6\xb1\x7f\x92\x55\x1d\x86\x9c\x66\x59\xc6\xf3\xdc\x8b\xda\xcb\x71\xc8\x55\xd5\x68\x95\x86\x7e\xfd\xf7\x88\xa5\x3f\x75\x53\x55\x6d\x3e\xfc\x59\xdf\x7e\x54\xe7\x45\x2e\xcf\xf7\xbb\xed\xd3\xeb\xb2\xca\x69\x97\x0f\xa3\x32\x9c\x4b\xe7\xe9\x32\xab\xd4\xe6\xab\x1c\x87\x65\x9d\x5f\xd5\xcd\xfb\x34\xee\xe5\x8d\x4a\x72\x28\xfe\x38\x27\x99\x87\x7c\x54\x37\x9f\xba\xa9\xcb\xcd\xf5\x85\xa7\xf3\x34\xfd\x96\x93\xe4\x55\x69\x98\xe4\x84\xb5\xda\xdc\x3f\x74\xd3\xe7\xee\x24\x0a\x3d\x5e\xa0\xc0\x17\x99\x97\x61\xcc\xaa\xd1\xef\xea\xda\xfd\xf7\x6f\xaf\x93\xa8\xe6\x32\xfd\xbc\xdb\x3e\x1e\x0e\x8b\xac\xaa\xd5\x35\xf7\xfc\x78\xde\x6d\xd5\xcf\x46\x35\xb5\xd2\xce\x18\xfb\xeb\xb2\xf5\xfb\xc3\x98\xae\x83\x26\xf2\x34\xfd\x90\xe6\x2e\x1f\xa5\xba\xd5\x8d\xd6\x77\xaa\x2c\xe6\x4e\x85\xb6\x0d\x20\x4b\xb2\x77\xaa\xd5\xbe\x05\x39\x92\x2b\x14\x2c\x68\x4f\xda\x83\x34\xa8\x27\xf5\xa0\xa6\x90\x21\x19\x29\xf1\x11\x64\x1b\x90\x75\x20\x64\x59\x4f\xf2\x65\xb0\xe5\xae\x40\x0a\xc8\xf2\xa0\x96\xd4\x82\x22\x28\x92\x22\x08\x55\x6d\x07\x72\x7b\xc4\x63\x97\x67\x55\x8f\xaa\x9e\xc4\x5e\x9e\x55\x0d\x28\x91\x12\x4a\x14\xd2\x5a\x0a\x61\x69\x75\xa8\xab\x5b\x6d\x35\xda\x63\x09\xb1\x69\x41\x86\x64\x40\x11\xe4\x48\xe5\x8c\x51\x73\x30\x90\x02\xa8\x01\x45\x52\x04\x95\xb7\xd0\x5a\x66\x59\x64\xe9\x52\xc2\x7a\x92\x27\x59\x10\xe3\x3d\xe3\x1d\x88\xf1\x9e\xf1\x1e\x24\x24\x01\x95\x8f\xd6\xb1\xbd\x63\x7b\xdd\x82\x0c\x89\xf1\x11\xe4\x48\x88\x37\x35\x28\x90\x10\x6f\x1a\x50\x24\xa1\xbd\x29\xed\x1d\xdb\x3b\xb6\x37\xa5\xbd\x63\x7b\xc7\xf6\xc6\x82\x18\xcf\xf6\xc6\x81\x18\xcf\xf6\xc6\x83\x84\x84\xf6\x06\xed\x03\x07\x83\x07\x95\xf6\xc9\xd6\x85\x92\x3d\x14\xb2\xa5\x6a\xf2\x24\x8f\x33\x3a\x5f\x6e\xdd\xf5\x0b\x5f\xfe\x2f\xf7\xfd\x7a\xff\xfa\xf3\x3c\x4b\x5e\x71\xdb\x71\xd1\xca\x4d\x19\xb2\x5c\x7f\x49\xa6\x71\x2a\x53\xf8\xfb\x1b\x00\x00\xff\xff\xf8\x0f\xe0\x8e\x75\x04\x00\x00"); -func _agbcf ()(*asset ,error ){_efc ,_bdde :=_fgbf ();if _bdde !=nil {return nil ,_bdde ;};_gdfff :=bindataFileInfo {_ag :"UniKS-UTF32-V",_bc :789,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493054,0)};_aeag :=&asset {_cd :_efc ,_dce :_gdfff };return _aeag ,nil ; -};func _deag ()([]byte ,error ){return _dc (_afad ,"UniCNS-UTF32-V")};func _ebfc ()(*asset ,error ){_cfeb ,_cbeb :=_edgf ();if _cbeb !=nil {return nil ,_cbeb ;};_dfg :=bindataFileInfo {_ag :"H",_bc :2711,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492271,0)}; -_acbd :=&asset {_cd :_cfeb ,_dce :_dfg };return _acbd ,nil ;};var _age =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4d\x6b\xeb\xc6\x1b\x05\xf0\xbd\x3e\xc5\x2c\xef\x7f\x71\xff\x99\xe7\x45\xa3\x11\x88\x40\x49\x08\xa4\x70\xdb\xd2\xf4\x0d\x4a\x17\x8e\x34\x0e\x86\x46\x36\x8a\xb3\xc8\xb7\x2f\xe7\x39\x76\x28\x5d\x04\x47\xc7\xd2\x23\xe5\x77\x32\x9a\x9b\xbb\xc7\xfb\xc7\xf5\x70\x4e\x37\x3f\x6d\xc7\xf9\xa9\x9d\xd3\xfe\xb0\x2e\x5b\x7b\x3b\xbe\x6f\x73\x4b\xcf\xed\xe5\xb0\x76\x9d\x68\x5a\x0e\xf3\xf9\x7a\x18\x1f\xf3\xeb\xee\xd4\x75\xb8\xfe\xe9\xe3\xed\xdc\x5e\x1f\xd7\xfd\x31\x19\xcf\x5b\xde\x4f\x97\x73\x53\xba\xf9\xb9\xbd\x1c\xde\xce\xdb\x47\xfa\xf2\xdd\x72\x7c\x6e\xff\x4b\x4b\xdb\x23\xff\x71\x5b\xda\x76\x58\x5f\xd2\x97\xef\x77\xa7\xdd\x2a\x9f\x5f\x3c\xbd\x9f\x4e\x7f\xb7\xd7\xb6\x9e\x53\x1f\x59\x5b\x97\xf8\xec\x6e\xee\xbe\xed\x4e\x3f\xec\x5e\x5b\xba\x89\x59\x5f\x79\xe5\x57\x9e\x16\xdf\xfe\xd6\xb6\xb7\xc3\x71\x4d\xf2\xff\x9c\xff\x15\xff\xf2\x71\x6a\x49\x2e\x53\xfe\xf8\xf5\xf1\x3e\xfd\x29\x49\x72\xd2\xbe\x88\xfd\x75\xc9\x7f\xff\x76\x5c\x5a\xca\xd7\x7b\x3d\xde\xdf\x1d\xdf\xd7\x73\xd2\x6c\x32\x30\x14\xfe\x59\xf3\x71\x69\x6f\xa7\xdd\xdc\xb6\xdd\xfa\xd2\xba\x94\xa6\x9c\x73\xbe\x4d\x93\x3f\x3c\x3c\xdc\xe2\x79\xff\x73\x46\x57\xf3\xe5\xca\xc3\xc2\xe4\x7a\x45\xce\xfb\xfd\x6d\xca\xdd\x94\x85\xc7\x82\x63\xed\x4b\x37\x65\x65\xa2\x48\x7a\xd1\x6e\xca\xc6\xc4\x90\x0c\xa5\x76\x53\x76\x26\x8e\x44\xb2\x7a\x37\xe5\x9e\x51\x1f\x91\x56\xcc\x2e\x8c\x4a\x44\xbd\x61\xf8\xc0\x68\x88\x68\x18\x31\xbd\x32\xaa\xf1\x04\xd9\x31\x7e\x64\x34\x46\x64\x19\xe3\x77\x8c\x76\x97\xe7\xc4\xf8\x67\x46\xcf\x11\x55\xc1\xf8\x99\xd1\x8c\xc8\xf2\x80\xf1\x0b\xa3\x25\x22\x53\x8c\x6f\x8c\x5a\x44\x7d\xc5\xf8\x3d\xa3\x7d\x44\xd5\x73\x37\x09\xa5\x24\xa4\x3c\x8f\xa5\x9b\x84\x58\x12\x58\x6e\xbd\x76\x93\x50\x4b\x42\xcb\x4b\xae\xdd\x24\xe4\x92\xe0\xf2\x5a\xbc\x9b\x84\x5e\xe2\x17\x53\x8c\xa7\x97\x84\x57\x6f\x03\xc6\xd3\x4b\xc2\xab\x2f\x86\xf1\xf4\x92\xf0\xea\x6b\xc5\x78\x7a\x49\x78\x15\x71\x8c\xa7\x97\x84\x57\xf1\x8c\xf1\xf4\x92\xf0\x2a\x05\xc5\x0a\xbd\x24\xbc\xca\x88\x66\x85\x5e\x12\x5e\x83\xa0\x5a\xa1\x97\x84\xd7\xe0\xa8\x56\xe8\x25\xed\xd2\x3f\xc6\xd3\x4b\xc2\x6b\x18\x51\xad\xd2\x4b\xc3\xab\x0a\xaa\x55\x7a\x69\x78\x55\x47\xb5\x4a\x2f\x0d\xaf\x3a\xa0\x5a\xa5\x97\x86\x57\x1d\x51\xad\xd2\x4b\xc3\x6b\x54\x54\xab\xf4\xd2\xf0\x1a\x1d\xd5\x2a\xbd\x34\xbc\xc6\x01\xd5\x2a\xbd\x34\xbc\xc6\x11\xd5\x2a\xbd\xb4\x5e\xff\x57\x31\x9f\x60\x3a\x32\x73\x94\xab\x14\xd3\x1d\xb3\x01\xed\x2a\xc9\x34\xc8\xd0\x3e\x6e\x41\x33\x9d\x99\x29\xfa\x55\xa2\xe9\xc2\xac\x47\xc1\x4a\x35\x6d\xcc\x06\x34\xac\x64\xd3\x3d\x17\x49\x46\xc5\x46\x37\xcb\xcc\x14\x1d\x1b\xe1\x4c\x98\xf5\x28\xd9\x28\x67\x7a\x5d\x60\xb9\x9b\x8c\x74\x16\x74\x62\x19\x35\x1b\xed\x8c\x6b\xd3\x0c\x3d\x1b\xf1\x8c\x8b\xd3\x7a\x14\x6d\xd4\x33\xae\x4e\xab\x68\xda\xc8\x67\x5c\x9e\x9e\x51\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\xef\x51\xb6\xd1\xcf\xe8\xe7\x15\x6d\x1b\xfd\x8c\x7e\xbd\xa0\x6e\xa3\x9f\xcd\xd7\xb7\x02\xee\x41\x3f\xa3\x5f\x5f\x50\xb8\xd1\xcf\xe8\xd7\x57\x34\x6e\xf4\x33\xfa\x15\x41\xe5\x7e\x79\x07\xd2\xaf\x18\x3a\x77\xfa\x39\xfd\x4a\x41\xe7\x4e\x3f\xa7\x5f\xa9\xe8\xdc\xe9\xe7\xf4\x1b\x04\x9d\x3b\xfd\x9c\x7e\x83\xa3\x73\xa7\x9f\xd3\x6f\x28\xe8\xdc\xe9\xe7\xe5\xfa\x2a\xc3\x3d\xe8\xe7\xf4\xab\x82\xce\x9d\x7e\x4e\xbf\xea\xe8\xdc\xe9\xe7\xf4\xab\x05\x9d\x3b\xfd\x9c\x7e\x75\x44\xe7\x4e\x3f\xa7\xdf\xa8\xe8\xdc\xe9\xe7\xf4\x1b\x1d\x9d\x3b\xfd\x9c\x7e\xe3\x80\xce\x9d\x7e\x4e\xbf\x71\x44\xe7\x4e\x3f\xdf\xf7\x33\xde\xb5\xaa\x1e\xbb\xc6\x75\x77\xc0\xef\xd8\x5f\x3f\xf7\xbb\xf9\x7d\xdb\xda\x7a\x8e\xdd\x35\x36\x34\xec\x47\x87\xb5\x7d\xee\xd4\xa7\xe3\x09\x57\xc5\xcf\x3f\x01\x00\x00\xff\xff\x98\xa1\x0f\xb2\xd5\x07\x00\x00"); -var _cecf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x51\x8b\xdc\x20\x10\xc7\xdf\xfd\x14\xf3\x78\x7d\x69\xa2\x59\xdd\x14\x24\x50\x6e\x39\x9a\xc2\xf5\x4a\xb7\xd7\x16\x4a\x1f\xdc\x38\x09\x42\xa3\x62\xcc\xc3\x7e\xfb\x32\x26\xbb\x85\x7b\x88\xe6\xff\x9f\xdf\xe8\x38\x53\x3d\xf6\xa7\xde\xbb\x0c\xd5\xd7\x14\x86\x33\x66\x18\x9d\xb7\x09\x97\xb0\xa6\x01\xe1\x82\x93\xf3\x8c\x71\x01\xd6\x0d\xf9\x26\xcb\x36\xcc\x26\x32\x46\xf9\xe7\xeb\x92\x71\xee\xfd\x18\xa0\xd9\x38\xbb\xc6\x9d\x05\xa8\xbe\xe1\xe4\x96\x9c\xae\xf0\xf0\xd1\x86\x0b\xbe\x03\x8b\x23\xf9\x2f\xc9\x62\x72\x7e\x82\x87\xcf\x26\x1a\xcf\xef\x81\xf3\x1a\xe3\x5f\x9c\xd1\x67\xa8\x8b\x87\xde\x96\x9d\x55\x8f\xcf\x26\x7e\x31\x33\x42\xf5\xc9\x25\x33\x19\x6f\x4a\xa0\xf8\x3f\x30\x2d\x2e\x78\xe0\xf5\xfb\xba\x56\xff\xfd\xef\xd7\x88\xc0\xf7\x03\x5e\xfb\xd3\xcb\x38\x2e\x98\xa1\x55\x62\x63\x7e\xbd\xf6\x27\xf8\xcd\x81\xd7\x20\x64\x73\xf8\xf0\x67\x47\x7f\x3e\x07\x8b\x7b\x05\x8c\x6f\xef\x19\x82\xc5\x25\x9a\x01\x93\xf1\x13\x32\x00\x5d\xd7\x1d\xe8\xa7\xa7\x8e\x8a\x7c\x13\x65\xed\x9e\xe4\xec\x66\x68\x41\x30\x2d\x92\x4b\xa6\x05\x27\x25\x3b\x68\xc4\x91\x69\xa1\x48\x8d\x14\x53\x4c\x37\x44\xd2\xd2\x1c\x04\xd3\x0d\x91\xd2\x76\x20\x85\x62\x5a\x22\xa9\xb1\x83\xa6\x6d\x99\x56\x44\x2a\xd1\x81\x3c\x72\xa6\x15\x9d\x72\x44\x52\x87\x52\xd2\xed\x6e\xfa\xa7\x89\xdd\x3b\x38\xac\x29\xa1\xcf\x65\x5e\xa5\x4f\xf4\x50\xe7\xf1\x3e\xfb\x18\x22\x65\x95\xef\x5f\x00\x00\x00\xff\xff\x35\x0d\x74\x28\x27\x02\x00\x00"); -var _aaaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xeb\x2f\x3b\x92\xa0\xb7\xbf\x9f\xe2\x2c\xc7\x8b\x71\xa7\xa4\xd0\x1b\x14\x17\xcc\x8c\x1b\xf7\xc0\xd8\xc6\xed\xb1\x0d\xc6\x8b\x7c\x6d\x0a\xdc\x55\x45\x75\xcd\xa2\xbf\xbd\xd1\xf3\xe8\x54\x1b\x63\xb8\xb5\x7a\xce\x5f\x27\x53\x3f\x29\xa4\x54\x84\x42\x21\xe9\xef\xfe\xc3\x3f\xfc\xc7\x7f\xf8\xc3\xef\xff\xf2\xe3\xef\xfe\xe7\x3f\xff\xf1\xfe\xc7\xf7\x2f\x3f\xbe\xdf\xff\xe1\xf9\xf3\xfb\x2f\x7f\xfc\xaf\x7f\xbe\xdf\x1f\xd7\xfb\x4f\xbf\xff\xc3\x2f\xbf\xa4\xfc\xe3\xf9\xfd\xfd\x97\x9f\x7f\x82\xfb\x9f\xcf\x3f\xfd\xf2\xcb\x7a\xff\x1f\xff\xf5\x5f\xfe\xf2\xfe\xf3\x3f\xfc\xe1\xfb\xe3\x8f\xe2\x73\xcf\x7f\xfd\xd3\x7e\xf6\xc7\x8f\xbf\xfb\x5f\xde\x7f\xfa\xfd\xbf\xfc\xe5\xcf\xff\xfa\xe3\xdf\xfd\x77\xcf\x1f\xaf\xf7\xbf\xf9\xf1\xbc\xdf\x4a\xff\x9f\xfe\xfc\xbc\x7f\xfe\xfd\x1f\xfe\xe9\xc7\xbf\xfb\x4f\xe7\x9f\xce\x3f\xa4\xbf\xfe\xc7\x3f\xfe\xd7\x3f\xfd\xe9\xff\x7e\xff\xf9\xfd\xc3\x5f\x7e\x04\x69\xef\x1f\x1e\xf8\xcb\xdf\xfd\x87\xff\x7c\xfe\xe9\x7f\x3c\xff\xf9\xfd\xf1\x77\xff\xe5\x0f\xbf\xff\x4f\xff\xf0\x8f\xff\xfe\xbf\xfc\x87\x7f\xcc\xff\xfe\x7f\xe0\x7f\xf9\xcf\xff\xed\xfd\xf3\xbf\xfc\xfe\x8f\x7f\xf8\x91\xf2\x7f\x7b\x1c\xed\xdf\xd2\xff\xd7\x7f\xfd\xd3\xfb\x23\xed\x5c\xfe\x8f\xff\xf2\x0f\xff\xf1\xc7\xff\x99\x7e\xa4\xe3\x47\xae\xa5\xb6\xff\x6b\xa7\xff\xef\xff\xf9\x8f\xcf\xfb\xe3\xf0\xaf\x6c\x0d\xee\x3f\x3e\xef\xbf\xfc\xe9\xbc\xdf\x3f\x9f\x7f\xf8\xa7\xf7\x97\x1f\x3f\x7e\x77\x1c\xc7\xf1\xeb\x8f\xdf\xfd\xc7\xfe\xf7\x7f\xff\xeb\xfa\xfb\xbf\xf7\xef\xbf\xff\xfb\xf5\xf7\xfb\x87\xe7\xff\xf3\xc6\x2f\xc9\x8c\xfe\xf0\xc7\xbf\x3c\xef\x67\xda\xcf\x3c\x8e\x23\x7d\xbf\xfe\x48\xeb\xad\xff\xf7\x7f\xff\x92\x8e\x63\xff\xfa\xef\x9f\xbf\xbe\x91\x7d\xa3\x5e\xeb\x8d\xf5\x8f\xdb\xbf\xef\x5f\x7f\xcc\x4e\xc2\x43\x42\x7f\x7f\xfd\xd1\xf2\x4a\x38\x13\x09\x67\xf9\xf5\x47\x3a\x78\xe7\x0c\x53\x62\xa5\xf0\xd2\x59\x4d\xa9\xbf\xfe\x68\x3e\xd2\x4c\x68\xbf\xfe\x98\x93\x84\x6e\x42\xff\xf5\x47\xcf\x07\x29\xc3\x94\xf1\xeb\x8f\x16\xe6\x32\x4d\x99\xbf\xfe\x48\xd5\xdf\x3e\x4d\x39\x7f\xfd\x91\xc2\xb7\x2e\x53\x56\xf9\x0f\x73\xb6\x06\x0b\xa9\x16\x52\xac\xc2\x42\xaa\x16\xe7\x35\xe5\x5d\x29\x41\xca\x67\xca\x92\x5c\x26\x9f\x4b\xc9\x2c\x74\x6b\x75\x59\xf3\x85\x36\x79\xeb\xca\xa6\x2c\x59\x54\x9f\x51\x16\x0b\x2d\x2a\x29\xca\x62\x21\x55\x73\x56\x18\x0b\xbd\x0f\x52\x94\xc6\x42\x4a\xe6\xa3\x34\x16\x52\xf1\xb7\x94\xc6\x42\x6a\xd4\xfd\x52\x1a\x17\xd2\xf0\x19\xa5\xb1\x90\x32\x75\xbf\x94\xc6\xb5\x6a\x6a\x53\x5c\xd6\xf4\xa2\xa6\x6d\xa5\xdc\xd6\xf4\x5e\x25\x6c\xe4\x73\x5b\xc2\x85\x54\x28\xf3\x6d\x09\x9f\x95\xd2\xf9\xf5\x67\xa7\xf4\x25\x0d\x6a\xfa\x58\xe6\x85\x14\xb4\xd7\x63\x99\x9f\xf5\xeb\x83\x7a\x3d\xfe\xfa\x42\xaa\xe4\xf3\xfa\xeb\xef\xfa\xf5\x49\x99\x5f\x7f\x7d\x21\x29\xc3\xd7\xdf\xfa\x56\x8a\xfd\xe7\xdb\x29\xfc\x3a\xb5\xf8\xfc\xf5\x8f\x5f\x47\xaa\x9f\xbf\xfe\x7d\xbf\xfe\xc8\x69\x3d\x93\xfc\x3e\xc0\x2c\xcd\xa4\x64\x52\x22\x69\x49\x28\x25\x5a\x15\xcc\xd2\x26\x49\xc5\xa4\x42\x52\x90\x74\x9a\x74\xae\x24\x04\x90\xd2\x65\xd2\xf5\xeb\x8f\x19\xf4\x99\x94\x29\x27\x48\xf9\x98\x99\xb4\x61\xda\xe0\xb1\x83\xa4\x69\xd2\x5c\x49\xc9\xa7\xcc\x3f\x93\x7f\x33\x33\xf3\x5f\x98\x85\xaf\x31\x15\x8b\xbf\x90\x82\x0a\x85\x29\x41\x0a\xf5\x09\xeb\xb3\x90\xf8\xb2\x52\x98\x51\x50\xd0\xe2\x6b\xb7\x49\xeb\xc3\x2f\xb4\x70\x8a\xc7\xa4\x87\x9f\xa3\x86\xd5\xac\x2a\x59\x15\x52\x94\xcc\x42\x0a\x64\xd5\x14\xf2\x42\xa6\x13\xa6\x66\x91\x16\x72\xa6\x00\x4d\x11\x34\x45\x40\xd6\x4d\x11\x34\x45\xe0\x53\x8a\xa0\x29\x82\x41\x92\x25\x6f\x8a\xc0\xdc\x5f\x93\x5e\xf2\xa2\x6d\xda\x67\xd2\x47\x5e\xd4\xaf\xfb\x8b\x0b\x39\xf3\x50\xb7\x7a\x0b\x39\x53\x84\x6e\x4e\x0b\x99\x41\x20\xf9\x69\x80\x69\x82\x2f\xdd\xc8\x84\x41\x20\xdd\xbe\x75\xfb\xfb\xfc\xd8\xed\xef\x2f\xcc\x32\x29\xf8\x63\x4e\x0b\x33\x12\xf2\x7d\x14\xcb\xc2\x0c\x86\xd2\xf4\x28\xdf\x85\x19\x89\xea\x3d\x0a\x78\x61\xc6\x61\x52\x98\x14\x3c\x45\xd1\x3f\xcb\xb5\x30\x23\xaf\xbc\x72\x25\x7b\x30\x23\x0d\x92\xc2\x24\x5e\xa4\x6d\x72\x9d\x26\x21\x76\xc6\x83\x5c\x4f\x93\x4e\x92\x26\x49\x97\x49\x76\x98\xd5\xf3\x72\x67\x5c\x03\x33\xca\x6a\xaf\x3c\x28\x2a\x98\xc1\x08\x90\xc7\x6d\xd2\xcd\x53\x14\x62\x52\x47\x30\x83\x1e\x9a\x15\x4e\x56\x38\xf4\xab\xe2\xa7\x0a\xe8\x7a\xc5\x0f\xb5\x1c\xab\xeb\xd1\x89\xca\x51\x4c\x59\x3f\xe7\x23\x61\x42\xfc\x1c\xc4\xcb\x51\x4d\xa9\xab\x45\x1b\x29\xcd\x14\x06\xd6\x83\x94\xd3\x94\x35\x8c\x16\x7f\xfb\x32\x65\x0d\xa3\xa5\xa2\x7e\x7f\xaa\xcc\xff\x5f\x2d\x5a\x8e\xdb\x17\x96\xce\x41\x14\xc5\xef\x1e\x38\x7e\x17\xbf\x7a\x90\xf8\xe4\x4a\x41\x10\x80\x21\xa5\x14\xcb\x56\x18\x76\x97\xac\x8a\x5f\x0e\xe8\x95\x94\x69\xca\xd2\xc2\xe9\x48\x4b\x7a\xe5\x54\x0e\xe8\xc9\x23\xf3\x94\xaa\xaa\xdc\x3c\x55\x10\xce\xed\x53\x37\x4f\xa1\x4e\x8b\x62\x07\x6b\x70\x42\x1a\x76\x4a\xb0\xd2\x28\xe8\xa3\x3c\x9e\xcb\xb4\x95\x5d\xd8\x1c\x20\x1d\xb4\x50\x24\xb2\x8b\x54\xf9\x85\x49\x12\x35\x8a\x42\x12\x03\x6e\x58\xc9\x88\x0f\x8d\xcd\x53\xf6\x54\x90\x0e\x3e\x97\xb0\xc3\x81\x3d\x6e\xa6\x17\x5d\x26\x66\x59\xd6\x49\x7a\xaf\xc7\x24\xba\xfd\xd2\xff\xf9\x58\x1d\x64\x23\x97\x44\x4a\x31\xa5\xfc\xfa\xa3\xad\x06\xce\x07\x25\x15\x6d\x8d\xa3\xf9\x48\xc9\x14\x46\x4d\x12\xcc\x66\x21\xed\x14\xb3\x59\xf8\x99\x12\xa6\xc4\x6e\xaf\x7c\xac\xba\x6f\xb4\xc6\x8f\x23\x01\xd1\x96\x00\xf2\x91\x86\x29\xf3\xd7\x1f\x6d\x0d\xb4\xf9\x40\x95\x88\x94\x4d\xb9\x4d\x79\xd6\x33\x16\xf0\x35\x65\xa9\xd2\x4c\xce\xd9\x4a\xe4\xd5\x37\x3a\x39\x67\xcb\x9c\x29\x33\xc2\xc8\x96\x27\x53\x1e\x53\x2c\x4f\xa6\x3c\x94\xb9\x98\xcf\x42\xf7\xb7\x8a\xf9\x94\xb2\x4c\x1f\x9f\x99\xa6\xac\x12\x26\x4a\x58\x2e\x53\xae\x5f\x7f\xf4\x82\x34\x8a\x65\x5e\x48\x39\x25\xca\x58\x2c\xf5\x42\x59\x63\x6c\x3e\x42\x99\x05\xc6\x22\xef\x85\x79\x2f\xac\xf7\x28\x41\xb7\x4c\x1d\x45\xdd\x3b\x49\xbe\xd8\x27\x49\x94\x6a\xf8\xd4\x20\x69\x90\xd9\x69\x21\x4e\xfa\x48\x25\xe9\x79\x48\x5a\xe8\x7d\xc9\x40\x33\x40\xa4\x34\x6a\x25\xad\x98\xb6\xea\x4c\x0d\x13\x63\x87\x58\x4f\xf9\xe6\x34\x6d\xfe\xfa\x63\x94\xc3\x17\x4f\x93\x4e\x92\x82\xa4\xcf\xa4\xef\xaf\x9d\x37\x6b\x41\x88\x71\x20\x8a\x64\xd7\x00\xbd\xf9\x9b\x99\x6e\x08\xc6\x61\xc1\x6c\x54\x90\xd7\xc7\x9d\x93\x4d\x08\x66\xd9\x0f\x5d\x26\xad\xd6\xe8\x4b\xf2\xa9\x58\x7a\xbe\xbc\x25\xa2\x95\x56\x2d\x03\xc3\x7f\xe9\xbc\x58\x7d\xb1\xbe\x24\xf1\x66\x53\x3a\x4b\x11\xf7\xea\x53\xcd\x3a\x2e\xad\x3b\xb2\x85\xb7\x85\xd2\x6a\x8e\xb1\xab\xd8\x7d\xaa\xf3\xd4\xa4\xa8\x5d\x49\x2c\x8c\xb2\x94\x57\x4e\xd3\x17\xd7\x38\xd6\xd7\x58\x99\xd3\xb4\x86\x0b\x7d\x8d\x8c\x39\x4d\x0b\xba\xd0\x0b\x45\x9f\x61\x0a\x43\x7b\x3e\x28\xe8\xb4\x8a\x93\x2a\xe6\x44\xb1\xa6\xb2\x99\xdd\xe7\x68\x8e\x39\x4c\x9b\xa6\x51\xd6\xdb\xfc\x96\xcd\x3b\x8a\xb2\xbf\x7d\x75\x61\x14\xc6\x92\x74\xdf\x26\xdd\xbe\x49\xd9\x1e\xcb\xef\xa0\x99\x0f\x5e\x7d\xac\xc1\x42\xaf\xe4\xff\x98\xff\x42\xaf\xd4\xfb\x35\xfb\x85\x71\x24\x93\xba\x49\x9d\x24\xde\x7b\x2d\xeb\xc2\x38\x18\x65\xd2\x6b\x9f\x7b\x91\x34\x9f\x55\xb6\x03\x83\x4e\x27\xcf\x8e\x7a\xa0\xd3\x55\xb3\x1d\x1a\x74\x3a\x49\xb6\x43\x83\x94\xd3\xf0\xbd\x6e\xda\x9a\x87\xad\x59\x45\xce\xc7\x30\x65\xfc\xfa\xa3\x87\xbf\x76\x9a\xe2\xf0\x34\x4d\xbb\x4c\x5b\x1d\x6e\x69\xfa\x9c\x1d\x41\x41\x6f\xf4\x91\xec\x18\x0a\xda\x32\xed\x73\xf6\x2b\x00\xeb\x5b\x1f\xa4\x99\xfd\x42\x6f\xbf\xad\x6d\x73\x4e\x8f\x2f\xac\x0f\x7a\x19\xc6\x39\x3b\x38\x82\x7e\xf8\x43\x9f\x29\x1f\xa5\x41\x20\x8e\x97\xa0\xd7\x46\x8a\x02\x71\x74\x34\x45\x71\x64\x2a\xef\x5b\xd3\x94\xf5\x35\x04\xe5\xcd\x96\x77\xa1\x07\x3f\xef\xd7\x97\xf3\xbd\x7e\xcc\xb7\x2c\xe2\xc2\x48\x13\x61\x64\xcb\xb8\xd0\x5b\x46\xf8\x85\x4e\x02\xfa\x61\x8a\x25\x5a\xe8\x8c\xce\xd9\x51\x15\xb4\x46\x46\xc5\xbc\x0b\xd5\xa7\xd4\xa1\x54\x43\xa9\xa2\x41\x72\x55\xf6\x0b\x1d\x15\x97\xfd\xae\x41\xe3\xeb\xcc\xcd\x26\xc3\xba\x40\x5b\xe5\xd6\x4c\x59\xdd\xe1\x30\xc5\xda\xae\x4f\xbf\x37\x44\xdb\xcd\xb9\xef\x5f\xe3\xa9\x61\xda\xb2\xfc\x7a\x50\xca\x61\x4e\x63\xe5\x14\xbc\xe7\xe7\x9a\xe7\xee\x7e\x94\xc0\xcf\x15\xac\x34\x6a\x33\x6d\x03\x3f\xe1\xc4\xc8\x95\xfd\x84\xc1\x4a\x43\xea\x53\x39\x2c\xfc\xdb\xbb\x0a\x79\xaa\x25\x27\x92\x38\xad\xf7\x79\xf8\x1c\xa5\x3b\x2d\xcb\x42\xaf\xe4\x76\xd9\x61\x2e\x3a\x4c\xe1\xc5\xd7\xcc\x16\xfa\x98\x3c\xf5\xfa\xd4\x82\xda\x53\x3b\x55\xfc\xfc\xa8\x8a\x1f\x15\x58\x03\xd3\xaa\x41\xf1\x5b\x00\x58\x72\x39\x02\xc9\x82\xf5\x2d\xac\xf2\x87\x6d\x14\xdd\x8f\x76\x15\x35\xd4\x7b\x31\x18\x24\x18\xa1\x63\x20\x8d\x58\x23\xe9\x38\x68\xdc\x98\x74\x93\xb8\xd6\x78\xa6\x0e\x0d\xdc\x0c\x39\x6e\x0c\xad\xc2\x30\x1a\x0e\x5e\xf1\x62\x04\x16\x46\xa1\x78\x2d\xc7\xc2\x60\x6a\x94\xab\x95\xaa\xc1\xd7\x8d\xce\xac\xd5\xa4\x85\x91\x6b\x22\xe9\x35\xe9\x25\x69\xfd\x66\xb5\x47\x81\x91\x19\x99\xaa\x1d\x08\x8c\xcc\x50\x58\xdb\x63\x12\x2f\xf2\x09\x55\x66\x6c\x62\xe4\xba\xc4\x5f\xd5\x30\x60\x64\x3e\xc6\xda\xcd\x7e\x89\x67\x64\x7a\x6c\x1d\x26\x2d\x91\x8c\x4c\xbb\xd5\x31\x4d\x9a\xbc\x48\x21\x86\x85\x18\x14\x82\xee\x58\xc7\x65\x12\xda\x8a\x21\xac\x32\x59\x11\x23\x87\xd9\x5b\xd4\x85\x91\xc3\xec\xad\xf6\xa0\xf4\x88\xb5\x0e\x4b\x3f\x28\x3d\x96\x60\x55\x61\xd5\xd5\xdb\x47\xe6\x93\xa8\x76\x44\xd0\x19\x92\xea\x69\xe1\x17\x3a\xba\xbd\x9e\xd9\x94\xcc\x60\xef\x6b\x96\x1d\xa7\x57\xde\x3f\x78\x5a\x78\xdc\x5e\x39\xa3\x46\xeb\xe5\xab\x17\x6a\x94\xc2\x5f\xc5\x14\xd4\x28\x65\xb7\x4f\x80\xf5\x7d\x90\x3f\xce\x27\x31\x8e\xe4\x63\x0a\x62\xa1\x63\x31\xd7\x4b\x39\x2c\xf4\x82\xb0\x6e\x6b\x73\xdb\xf1\x27\x62\xbe\xad\xcf\x8d\xf9\x82\x0a\xad\x6a\x55\xd0\x33\xe5\xbc\xfd\xbd\x1b\xd7\x5f\x23\xc5\x06\xbb\x69\x30\x4b\x70\x5b\xc1\x85\x9e\x29\x81\xba\x18\xa4\xa3\x1e\x96\xc1\xa6\x58\xe8\xa8\x9c\x7a\xdb\x12\x0b\xdd\xbe\xfc\x2a\x96\x97\x3e\xc3\x27\x55\x5f\xdb\x66\x61\x64\x3e\xc6\xfa\x56\x93\x68\x2e\x46\x84\xaa\xc2\x06\x29\xef\xce\xec\xf7\x0f\xb4\x25\x9b\x9f\x4a\x3b\xc8\x9e\x06\x6b\xea\x59\xd0\x73\x26\xa5\x99\x82\x10\x12\x29\xaf\x29\x2f\x86\xde\x92\x42\x73\x84\x00\x3f\xc7\xa9\xe6\x3c\xa0\x25\xba\x1f\x03\x7b\x53\xd7\x81\xe1\xd8\xd2\x54\x76\x60\x64\x7f\x31\x2c\x56\xe0\xbd\x24\xfb\x30\xfb\x85\x8e\xe5\xda\x1c\x6c\xc0\xc8\x29\xfd\xb6\xe6\x6d\x7e\xde\x60\x1c\xa9\x93\x64\xb6\xcd\x0e\x4b\x71\x5a\x31\x49\x91\x14\x92\xc2\xa4\xe0\xa9\x41\x92\x52\x6a\x48\x9c\x11\xab\xa9\x7d\xc0\xc8\x18\x3f\xad\x75\x93\xec\x9c\x54\x04\xdf\x51\x6e\x6d\x6a\x8e\x98\xd9\x69\xda\xd2\xc9\xdd\xca\x29\xb9\xe6\x6c\x04\x33\xad\x39\xee\x80\xde\xcd\x5e\xc9\x35\xda\x73\x95\xb4\x6b\x48\x75\xdd\x0c\x89\x79\x55\xd7\x42\xe9\xce\xcf\x1c\x18\x7a\xa5\xac\x60\xf5\x8e\x55\xf1\xde\x4d\xeb\x34\x0d\x0a\xa9\xfb\x85\x83\xa1\x01\xf9\xe2\x25\x11\x29\x9c\x44\xbc\xa3\x9a\x56\x99\x49\x56\x9f\xeb\xa6\x75\x1c\x79\xfb\xb9\x69\xda\xe4\xdd\xfd\xdc\x65\xda\xc5\x73\x7c\x3e\xaf\x23\xd9\xbb\x86\xad\x54\x06\x9f\xf0\xeb\xb8\x05\x22\xf3\x71\xbe\x8e\x5b\x20\x45\x50\xd9\x57\xfb\x1c\x44\x0b\x93\xb2\x49\xf9\xd7\x1f\x45\x63\xe2\xd5\x42\x07\xa1\x89\xfe\x3a\xe2\x81\xf0\xe3\x78\x55\xf9\x20\xd5\x82\xe5\xf8\xaa\xf2\x41\x8a\xca\xb0\xf4\xaa\xf2\xc1\xaa\xbe\xbf\x30\x4c\xc3\x9f\x5b\x9b\xef\x5a\xfd\x85\x8a\x87\x21\xbf\xd3\xda\x2f\x54\xa7\x39\xef\xb4\x56\x0b\xa5\x31\xfe\xbf\x0e\xbd\xa0\xd8\xd0\xaf\x2d\xf3\x9e\xb8\x32\x9b\x6f\x9e\xd6\x8a\xb5\x8d\xd0\x00\x7c\x4f\xab\xc5\xea\x46\xc5\x99\x97\xdf\xd3\x3a\x9c\xd4\x01\xcf\x7f\x7e\x4f\xcb\x7b\x52\xde\x3e\xa8\xd7\x69\x79\xf1\xcc\x14\xc7\xfc\xd7\xe1\x1c\xa4\x32\x19\x82\x5f\x87\x73\x90\x62\x4e\x9f\xb3\x09\x17\x96\xd1\x46\xd2\x63\xd2\xc3\x63\xf6\x88\xd3\x56\x65\x29\xa3\x4c\x3e\xfe\xf7\xb2\x6a\x0b\xa9\x1e\xf4\xfd\x57\xed\x00\xfe\xfa\x13\xea\x07\x90\x42\x4b\xeb\x55\x1b\x80\x14\x07\xf3\xec\xf7\xb2\x1a\x2c\x3d\xc4\xb1\xdf\xb5\x78\x97\x2e\x2f\x94\xb8\xde\x18\x91\xca\xee\x3b\x97\xe5\x43\x4d\x44\xc2\x8a\x7a\x55\x13\x20\x4d\x54\xd5\x7b\x5b\xbc\x85\x54\x75\xaf\xbc\xb7\xc5\x5b\x48\x65\xe0\x2a\x79\x9d\xb7\x81\xdc\x18\xba\x5f\x35\xcc\xeb\x62\x45\x1b\x48\xe0\x56\xc8\x37\x42\x1e\x36\x9a\x0a\x04\xa4\x8a\x27\x35\xbf\xb7\x25\xbe\x5d\x1a\x1a\xfe\xac\xdd\x07\xbb\xa9\x66\xbb\xfb\x63\x89\x17\xca\x61\x3b\x3a\xe7\x03\xa9\xaa\x58\xde\xc7\xa2\xb0\x4a\xf2\xd7\x57\x15\xe8\xd3\x15\x8a\xcf\xd9\x57\x16\xd6\xa0\x48\x92\x25\x79\xfc\x62\x95\xe7\xa3\xec\x58\x3e\x29\xc3\xee\xf8\x58\x3a\x16\x50\xca\x60\x46\xf2\xaa\xcf\x40\x6a\xca\xce\x79\x24\x28\xc5\xce\xe8\x3c\x12\xa4\x82\x4e\x7d\x5f\xfb\xdd\x42\x76\x06\xf4\xbe\x96\xe3\xc5\x2b\x1e\x3e\xe5\x4f\x2e\x94\xc9\x1c\xe4\xfd\xac\xfc\x42\x6a\x68\xbd\x4f\x45\xf8\x69\x08\xd3\xe7\x3e\x7c\x84\x62\xe8\x5c\xf8\x1c\x5e\x41\xe0\x49\xcc\x9f\x13\x55\x10\x07\x1d\xe4\xc3\x91\x2b\x52\x61\xf4\xfa\x54\xaa\x20\x12\xda\xff\x53\xab\x82\x92\xbb\x79\x75\x93\xfa\x7a\x2a\x59\x88\x61\xd2\x92\x75\x65\x58\xfa\xf4\xe2\x80\xc8\x38\xb8\x3e\xe7\xb8\xa0\x38\x74\x7f\x4e\x71\x41\x29\xd3\x5f\xbc\x4d\xba\xd7\x8b\xc9\xbc\x1e\x93\x9e\x95\x94\x2d\xfd\x6b\x12\x03\xed\x2e\xfd\x67\xd2\xb7\x92\x90\xea\xa7\x0f\x12\x44\xa6\x1d\x3f\xa7\xd0\xa0\xa4\xe6\x53\xca\x6b\xa1\x4c\x06\xd0\xcf\x39\x34\x88\x3c\xe3\xb7\xd5\xf6\xa7\x9f\xf2\x4b\x4b\x76\xe5\x30\x13\x65\xb7\x10\xe5\xa0\xd8\x49\xd9\x2d\x64\xbd\x43\x9f\xae\x4a\x50\xf4\x04\x7e\x49\xd9\x2d\x44\x41\x21\x7f\xaa\x47\x10\x25\x9b\xbd\xb2\x5b\x88\x92\x7d\x51\xd9\x2d\x94\x1e\xbe\xa8\xec\x16\xd2\x64\xe2\xfc\x69\xdd\x80\x88\x6a\x92\xb2\x5b\x28\x09\x95\xf7\x39\x95\x07\xdb\xc9\xf3\xe9\x39\xfb\xf2\xea\x58\x15\x13\xfc\xcb\x0a\x6a\xa1\x8c\x6e\x92\x92\x58\xc8\x83\x69\xe4\xa7\x13\x00\xe4\xb0\xb5\x74\xb0\x81\xbc\xfb\x87\x8e\x01\x10\x8d\x51\xf6\xcb\x0a\x27\xf3\x11\x33\x8a\x7d\x3a\x0b\x40\x8e\x6a\xb9\x14\xce\xc2\x56\xa7\x9f\xee\x02\x10\xcd\x96\xcf\x0a\x67\x21\x1c\xd6\x3e\x5d\x08\x20\xa7\x6e\x51\x15\xce\x42\x74\x65\x9f\x15\xce\x42\x9a\xf6\x6e\xfd\xb9\x20\x4d\x6c\xad\xaf\x28\x1c\x56\x09\xbb\xc2\xd1\xc7\x0b\x52\xb5\x2b\x17\xe5\x55\xfe\x4d\xa7\x7f\x7a\x28\x40\xe8\x0d\xfa\x74\x51\x80\xd0\x6b\xf0\x15\xe5\xb5\x10\x3a\x09\xbe\xa2\xbc\x16\x42\x4f\xc6\x57\x94\xd7\x42\x6a\x8c\x97\x9f\x6e\x65\x90\xa2\xda\x75\x8a\x02\x5b\x88\x3e\xcc\x4c\x81\x2d\x44\x1f\xbe\xa9\xc0\x16\x72\x55\xd2\xfa\x45\x40\x4c\xec\x8a\x4f\xf7\x33\x48\x73\x67\xaf\xc0\x16\x72\x61\xfa\xf1\x69\x2b\x83\xed\x46\xfc\x42\x81\x2d\xd4\xc3\xf6\xd0\x7e\x06\xa5\x3a\x1c\xe8\x77\x01\x25\xf9\x55\xeb\xde\x06\xa9\x33\x5f\xfc\x42\x81\x2d\x14\x17\x05\xbe\x50\x60\x0b\xf5\x18\x66\xaf\xc0\x16\x4a\x46\x11\x7d\xa1\xc0\x16\x6a\x2a\xfe\xa2\x02\xc3\x57\x3e\x9a\xd9\x2b\xaf\x85\x32\x92\x2f\x2a\xaf\x85\x34\xaa\xe5\x52\x5e\x81\x35\xa1\x24\x42\x79\x2d\xd4\x82\x72\xf9\x42\x79\x2d\x54\x96\xb9\xf3\x17\xca\x6b\xa1\x16\x1b\x52\x57\x00\x28\xc1\x5c\xfd\xab\xca\x6b\xa1\x0c\x87\x13\x1d\x50\x20\xb3\x0e\x9c\x3f\xfd\xcf\xa0\xea\xc2\xff\xaa\xf2\xaa\xe8\xf3\xc3\xa7\x94\x57\xc5\x16\xb6\x8e\x1a\xdb\xa0\xb0\x8c\x94\xbf\xaa\xbc\x16\x4a\xb5\x67\x56\xe5\xb5\x50\x9b\xa3\x42\x55\x5e\x0b\xb5\x1d\xbe\xa8\xbc\x16\x4a\xf3\xf3\xd0\x09\x0e\x96\xb5\x4c\x92\xf2\x5a\x48\x4d\xd5\x55\x95\xd7\x42\x1a\xc3\x72\x29\xaf\x4a\xff\xda\xbf\xa8\xbc\x16\x92\x33\xe5\xcf\x79\x16\x48\xba\x02\x3e\x27\x52\x20\x55\x5f\x74\x22\x05\x52\x65\x46\xff\x39\x91\x02\xb9\x55\xf3\x52\x5e\x0b\x65\x60\x89\x7d\x4e\xa4\x40\x61\xad\x31\x7f\x4e\xa4\x40\xd1\x7f\xf3\x39\x91\x02\x29\xb4\x1b\x3e\x67\x52\xa0\xee\x4f\xad\x29\xb0\x85\xb2\x9b\xdb\xb9\x15\x28\x61\x6f\x6a\x0a\x6c\x21\xa7\x6e\xc1\x14\xd8\x42\x19\x8e\x4d\x4e\xb7\x40\xe9\xbb\x14\x0a\x6c\xa1\x8c\xe2\x53\x0a\x6c\x21\x37\xa6\x20\x9f\x9e\x1f\xb0\x4d\xdf\x4f\xcf\x0f\x48\x31\x99\x54\x7e\x3a\x22\x41\x2a\x0e\x3b\x5d\x89\xe1\x9b\x74\x1a\xf5\xe9\x3f\x03\x65\x5a\xfc\xae\xc4\x16\xf2\xb4\x71\x9d\xba\x81\xb2\x3b\x4a\x57\x62\x0b\x79\x6b\xf6\xae\xc0\x16\x52\x65\x66\xf1\x75\x05\xb6\xd0\x96\xce\xfe\x6d\x6d\xec\x32\x09\x28\x53\x6d\xdc\x95\x67\xd7\x9d\xe3\x4f\x29\xcf\x85\x38\x1c\x35\xba\xf2\x34\x60\x61\x27\x29\x4f\xa3\xb3\x98\x10\x7c\x2e\xb9\x80\xac\x09\xfa\xb9\x4e\x06\xda\xce\x5e\xb7\x19\x28\x79\x90\x97\x3e\x5c\x90\xab\xda\xd8\xa9\x2a\xc8\x59\x09\x0f\xc5\xb9\x90\xb3\xfd\xdb\xc9\x2b\x48\xb9\x50\x08\xbd\xbf\x20\x37\x6d\x3a\xa7\xb3\x20\xeb\xf7\xf9\xf4\x63\x82\xbc\xbf\x74\x27\xb8\x20\x1f\xbb\x5c\xca\x6b\x21\xef\x2f\xdd\x29\x2f\x68\x45\x6d\xec\x8c\x17\xb4\xdd\xe5\xf5\xdd\x81\x3c\x1d\x65\x9d\x03\x83\x34\x1c\xd7\x9d\x03\x83\x7c\x98\x97\x53\x60\x90\x9c\x16\x7d\x53\x79\x2d\xb4\x66\x1d\x9d\x15\x83\xb4\x6d\x09\x67\xc5\x20\x85\x2a\xce\x59\x31\x48\x53\x5b\xc2\x59\x31\xc8\x5b\x2b\x39\x29\x06\x25\x4d\x9f\x52\x5e\x0b\xcd\x25\x96\xcf\x29\x31\x68\xba\xd9\x3f\x67\xc4\x60\x4d\xaf\x48\x52\x5e\x0b\xd9\xe9\xd0\xe7\x24\x19\xe4\xb1\x0b\xa1\xbc\x16\xf2\xc8\xbe\xa8\xbc\x16\x72\xc5\x3f\xf2\xe9\x4f\x07\xb9\xf8\x59\x38\xbb\x06\xd9\xe5\xc1\xcf\xd9\x35\xc8\x53\x15\xe4\xec\x1a\xac\x89\x15\x5d\x47\xdf\x26\x28\xc3\xfc\x9d\x70\x83\xb2\xed\x62\xe7\xdb\xa0\x84\xa6\xa3\xde\x7a\x50\xa6\x43\x97\x33\x70\x90\x5c\x02\xfb\x4e\x05\xb6\xb0\xe7\x68\x9f\x73\x72\x50\x86\x1d\xdf\x29\x39\x28\x55\xe5\xe5\x8c\x1c\xf4\xe4\xd0\xe2\x84\x1c\xf4\xa4\x49\xe0\x7c\x1c\xa4\xbc\xb3\x57\x60\x0b\xa3\x39\x99\x71\x3a\x0e\x4a\xf8\xc5\x9c\x0a\x6c\xa1\x0c\x27\x46\x97\x02\xbb\x98\x14\xfb\x25\x3b\x67\x07\x3d\x39\x26\x39\x65\x07\x3d\xe1\xb4\xf8\x9c\xb1\x83\xa4\x4b\xff\xbb\x94\xd7\x42\x69\xaa\xde\x4b\x79\x2d\x94\xba\xb3\x57\x5e\x17\x1a\x41\xcd\xee\x4c\x1f\xe4\xaa\xec\x2f\xe5\x75\xf1\x41\xda\xcb\x9d\xfb\x83\x7c\xec\x24\xe5\xb5\x50\xf6\xec\xec\x52\x5e\x0b\xd9\x15\x89\x4f\x07\x01\xc8\x87\x43\xbd\xfe\x01\xd0\xb3\x43\xbd\xee\x01\xd0\xf3\x34\x2f\xe5\x75\xeb\x26\xa7\x8e\x3a\x0c\xc0\x9e\xe0\x7e\x3a\x0c\x40\x6a\xda\x84\xfa\x0b\x40\x39\x34\xc8\x75\x17\x80\x1e\xfb\x45\x85\x73\x1b\x12\x84\xbc\xf4\x20\x80\x1e\xd9\xbc\x14\xce\xc2\x76\xdc\x7c\xb7\xc2\xb9\x09\xe0\x71\x02\xfd\xe9\xb9\x06\xa9\xf9\x91\xea\x7a\x00\xd9\x25\xfc\x4f\x67\x36\xe8\xe1\x1c\x40\x67\x04\xe8\xa1\xf1\xa5\x2f\x02\x94\x3d\xc3\xd5\xbf\x0d\xd2\xd4\x26\xb8\xb7\x74\xd6\xe7\xe7\xea\xe7\xe7\xa2\x0e\x28\xe1\x17\xa9\xbf\xe2\x63\x41\x3a\xaa\x4f\x29\x9d\x85\x32\xb5\xa1\x5c\xa4\xfe\x9e\xca\x32\x4f\xfe\xe5\x77\xc5\x08\xe2\x42\xf4\x0c\xb1\x32\xc5\xe8\x19\x81\xd5\x5e\x0e\x66\xe7\x62\x94\x35\x9a\x94\x83\xd9\x79\x39\xd6\xbc\xbb\xad\x9f\x2b\x07\xd3\xee\x42\x40\x0d\x83\x50\x31\xa2\x46\xf4\x42\x46\xc9\xac\x13\xab\x86\x07\x29\x66\x4d\xfc\xcc\xea\x20\xc5\x48\x18\xc1\xfa\x67\x21\x28\x66\xa3\x37\x7f\x9e\x29\xa2\xe8\xed\x98\xbf\xa9\x84\x8b\xc1\x33\x62\x60\xe0\x17\xe3\x60\x44\xca\x39\x99\x66\x09\x8d\xa2\x48\xfe\x18\xb3\x1d\x31\x0e\x2b\xcb\x74\xa1\x1c\x6b\xdc\x1f\x41\x65\xa7\x15\x59\xe8\xd3\xfc\x19\x84\xcb\x31\xd1\x50\x88\x76\x5a\x93\x35\xba\xb6\x4a\xca\x69\x46\x5f\xfb\xf5\xc7\xcc\xd4\x96\x40\xd7\x72\x7c\x84\x97\x24\x1e\xfa\xcc\xe8\x43\xfb\x91\xf5\xa7\x90\x3e\x84\x84\x20\x3f\xb3\xfe\xc8\x3a\xfd\xf2\xbb\xe2\xf2\x77\x61\x21\x3b\x1d\x44\xfe\x16\x97\xb2\x4b\x5e\xb3\xc7\x81\xda\x29\x59\x29\x80\x81\xbb\xae\x64\x66\x8f\x25\x17\x96\x92\x93\x4f\x15\x93\x56\x85\x99\xf9\x14\x17\xb3\xc5\x20\xf0\xb4\xb8\x9a\x2d\x06\x31\xb9\x25\x2b\x3c\x30\x08\x46\x2d\x99\xa9\xa2\x18\x4c\xe6\x4b\x66\xaa\x28\x06\xa1\xc4\x25\x33\x55\x14\xbd\xe5\x83\x24\x4b\xbf\x30\x92\x95\x64\xa6\x28\x06\xe1\xa8\xc5\x05\x74\x31\x08\x93\x2e\xae\xa0\x8b\x41\x7c\x73\xc9\xcc\x14\xc5\x20\x90\xb6\x64\x66\x8a\x62\x10\x6d\x5e\x72\x28\x9c\x40\x38\xd5\x24\x85\x13\x3a\xf8\x2b\x49\xd9\xa4\xcc\x8b\x26\x29\xaf\x40\x5e\xb4\x59\x1e\xe6\x85\x2b\xff\x40\x09\x94\x3c\xac\x11\xfe\xf8\xc3\x2f\x32\x4f\x9f\xc3\x18\x39\xa2\xf3\xdc\xf4\x47\x17\x46\xf2\xd5\xe9\x8f\x4e\x7e\x94\x3e\x90\xa7\x3f\x4a\xaf\x4c\xcd\xcc\x6c\xa4\x49\x23\x55\xaa\x39\x6d\x24\x7c\xf4\x47\x4c\x8a\x3b\x6d\xa5\x49\x2b\x35\x93\x6c\x25\x5c\xf4\x47\x4c\x73\xb3\x99\x26\xcd\x44\x27\xcf\xd3\x66\x9a\x2c\xe5\x65\x3a\xc6\xb4\x52\x0b\xe9\x88\x81\xb8\xfd\x16\xc0\x4a\xf3\x55\x1b\x6a\xde\xfe\x02\x2d\xe5\x17\x02\x46\x49\xbe\x6a\x4b\x4d\x5a\x6a\x5a\x77\x5b\x6a\x6e\xb1\xf1\xd8\xa9\xd8\x8c\x93\x8c\x41\x55\x4f\x65\x84\xcb\xff\x08\xdf\x3d\x15\x92\xdb\x19\x62\x22\xb8\x53\x29\x2d\xb3\xa1\x37\xbe\xb9\x7c\x5a\xaf\x85\xc1\x96\x81\x92\x4f\xeb\x75\xda\xfd\xe8\xca\xa7\xd5\x3a\xe9\x7e\xd5\x72\x58\xab\x93\xee\xd7\xcc\xcb\x4a\x61\x36\xb0\x45\xa1\xe4\xd3\x4a\x9d\x54\xaa\x99\xbd\x95\x3a\xe9\x7e\x0c\xbc\xf9\xb2\x4e\x97\xdd\x8f\x26\x78\x4c\x5a\xdf\x79\x3a\x88\x18\x2e\x86\x24\x88\x71\xf0\xd9\x19\x3c\x5b\x0c\x9e\x4d\xd8\x5e\xc5\xf0\x59\x31\x0e\x3e\x32\x03\x68\xc5\x7a\xac\x91\x56\x4d\xe3\x23\x1e\xfe\x40\x33\xa9\xf9\x58\x27\xad\x9b\xc6\x16\x86\xb1\x2c\xf7\x52\xd4\x01\xc6\xda\xa6\x41\xbb\x14\x7c\xaf\x62\x3d\x67\x49\x4e\xd3\x4e\xd3\x2c\xca\x65\xda\x65\x9a\x45\xb9\x4d\xbb\x4d\xb3\x66\x8f\x69\x0f\x81\x4f\x95\x24\x84\x59\x0c\xd4\x1c\x74\xb8\xa2\x62\x01\xbd\x9a\x5b\xb2\x62\x0b\xe3\x60\xc0\x2a\xc9\x8a\x25\x86\xf6\xe2\x8b\xd6\x2b\x59\xaf\xe9\x9b\xd6\x2b\x11\xa4\xc5\xc8\x50\x92\xd5\x4a\x56\x8b\xa1\xb4\x24\xab\x85\x7b\x33\xcd\xc3\xe7\x76\xd9\x5c\xf7\xf5\x47\x69\xe8\x92\x93\x8f\x21\x11\x82\xfe\xc4\x38\x18\x2f\x4a\xb6\xb9\xb2\xcd\x45\x3b\x64\x2b\x95\xc3\x37\x69\x87\x6c\xad\x72\x35\x8d\x3a\x64\xab\xb5\xd0\xab\x55\xc8\x56\x6b\xa1\x57\x7a\xbd\x01\xca\xa5\xa0\x20\xd2\x4c\xb4\x82\x0a\x02\x0c\x82\x86\x4b\xc9\x36\x0c\xa1\x86\xd5\x8a\x66\xdb\x20\x5b\xd1\x44\x23\x64\x2b\x8a\x36\xd5\x0d\x59\x8a\x8a\x04\x8c\x23\xfe\x06\x35\x6d\x88\xb4\x48\x7a\xf0\x96\xc5\x69\xda\x12\x44\xc9\x54\x5a\xdd\x53\x8a\x95\xce\x88\x50\x4d\x03\x3a\xfe\xba\x52\xd4\x34\x20\x25\x5c\x84\xa5\xa8\x6a\xc0\x4a\xf3\x39\x1b\xb3\x10\x71\x87\x32\x28\xea\x9a\x62\x00\xec\xc4\x32\x2a\x2a\x1b\x30\x8e\xb0\x20\xf6\x50\x62\x60\xd3\xcc\xbe\xaa\x74\x8a\xd2\x29\x16\x4e\xe9\x84\xd2\x29\x3c\xa7\x26\x01\x2b\x0d\x29\xaa\x4a\xc0\x38\xc2\x24\xab\x1f\xcd\xc7\x68\xe0\xb0\x62\xc1\x2a\x39\x7a\xa9\x84\xf5\x0a\xeb\x65\x7f\x09\xeb\x15\x44\x76\x0e\x73\xb3\x5e\x0b\xbd\x4e\x33\xb3\x5a\x61\x1d\xd0\x98\x25\xac\x43\xf0\x95\xf9\xe1\xc5\xae\xc2\x4b\x33\x98\x64\x4f\xae\xd6\x4a\xc1\x55\x6b\x55\x89\x60\x9f\x14\xa3\x5a\xa9\x6a\xa3\x5a\xdc\x6a\xad\xd8\x46\x92\x26\x03\x6c\xa9\xb6\x6a\xb5\x7b\xfb\xb1\x54\xbb\x77\xb5\xf6\x0c\x8b\xa5\x5a\xfb\x4a\xed\x2d\x6f\xf7\x57\x71\x17\xa5\x81\x86\x2c\xdd\x7a\x11\x9e\x8a\xf9\x5e\x4a\xb7\xb9\x3a\x81\x7b\x3b\xc9\x9a\x76\xac\xcb\x4c\x77\xe8\xd6\xb4\x1b\xb9\x67\x5e\xd6\x94\xb8\xd6\xc3\xd2\x0e\x4b\x66\x9c\x56\xe1\xa9\x61\x1b\x10\x88\x94\xec\x82\xc3\xec\x59\x98\x4f\xa3\xf9\xa6\xf9\x0f\xad\x57\x92\x54\xfa\xc5\x08\x2f\xbb\x82\x3a\x19\x8c\xa3\xd0\xdb\xd4\xc9\x60\x1c\xf6\x7a\x55\x32\x18\x87\xfd\x4f\x5d\x0b\xd6\x4f\x9a\x99\x15\x9f\x54\xe9\xa0\xb0\x2a\x51\x30\x92\x23\xa4\x3a\x14\x8c\x03\x9b\xab\x68\xa0\x82\xde\x1c\x71\xd4\xaa\xc5\x90\x25\xc5\xa3\x52\x05\x83\x68\xbd\x52\xd4\xa9\xe5\x64\xb4\x55\xae\xa7\x35\x3a\xb1\x32\xec\x54\x6a\x38\x30\x0e\x3f\xd0\xcb\x5f\xbc\x18\x34\x32\x3d\xf4\xf2\x17\x2f\x7f\xd1\x17\xfd\xc5\xcb\xf0\x6a\x7e\xf1\xf6\xa9\x5b\x9d\x87\xb1\x53\x6e\x4b\xc1\x7c\x10\x37\x5f\x29\xb7\x12\xbb\x31\x62\xb0\x3a\xca\xad\xc4\x6e\x3e\x6c\x3f\xd8\x5b\x81\xdd\xa8\x71\x35\xd4\x6d\x53\xde\xf4\x94\x44\xbd\x1f\xb3\x7f\x08\x73\xf1\xab\x7e\x6c\xa3\x47\x1d\xd8\x28\xff\xe3\x47\xf7\xa8\xef\xe8\xd8\xc1\xc2\xa8\x48\x85\xf8\xcc\x12\xaa\x5e\x90\x6a\x41\x8e\xe1\xc0\x1d\x6e\x2c\x99\x69\x89\xc8\x78\x40\x91\x2a\x1b\x6f\x4a\xb0\x67\x43\xa4\xca\xa4\xb6\x54\x35\x0d\x48\xc5\x9e\x50\x1d\x89\xc0\x8e\x1e\x29\xdd\x4e\xda\x77\xf4\x08\x1f\x68\x27\x8c\x4a\xa4\x60\x73\x61\x39\x3f\x84\x0e\xd6\x6f\x2c\x41\x5d\x6a\x2e\x90\x2a\xeb\x69\xe5\xb2\x7c\x20\xb9\x82\x5c\x5e\x4d\x5d\xb0\xde\x5d\x75\x7b\x95\x0b\x58\xef\xae\x7a\xe8\x17\x11\x29\x30\x8d\x82\x79\xd6\xc6\x7a\xae\xfd\xf2\xbb\x30\x7e\x5f\xac\xb4\xf9\xcb\xef\x22\xe3\x2c\x17\x29\x88\xe5\x09\x8d\x62\xb1\x64\x75\xfc\xf2\xbb\x08\xec\x0a\xb1\xca\xb2\x9e\x0b\x06\x24\x91\x82\x48\xb9\xa8\x78\x6e\xc5\xfa\x8d\x95\x66\x18\x93\x58\x69\x63\xa5\x61\xcd\x89\xf5\x1b\xe9\x97\xdf\xc5\xc5\x82\xbc\x58\xcf\xad\xdf\x7d\x31\xd4\x84\x4b\xe6\xf1\x62\xa8\x89\x72\xec\xa4\x62\x12\x4e\xd8\x35\xbd\x8f\x17\x3b\x2d\x5e\x3a\x46\xe4\xa5\xd1\xe3\xc5\x00\x13\x05\x8f\x58\xbc\xd8\x5f\x22\xd7\x64\x66\xd3\xa4\x89\xe7\xde\xa7\x4e\x93\xf0\xaf\x2e\x83\x21\x5e\x8c\x2f\x91\x4a\xf8\xe2\x63\xd2\xf3\xeb\x8f\x52\x73\xfb\x4d\xdd\x1d\x2f\x66\x98\x28\x18\x84\xf1\x26\x2b\xcc\x9a\x37\x81\xe4\xf1\x26\x2b\xcc\xc6\x1b\x16\xcb\xe3\x4d\xd6\x8e\x6d\x35\x31\x28\x23\xb6\x9a\x08\x76\x1b\xc4\x8b\xad\x26\x72\x2b\x26\x29\x82\x85\x28\xc9\xec\x15\x41\x62\xd1\x71\xd9\xc2\xf1\x26\x45\x90\xf0\x00\x4e\xb3\xb7\xa8\x0b\xb9\xee\x17\x3f\x93\x3e\x45\xcc\x9b\xd9\xb2\x2e\x94\xa9\xf0\xb2\xa5\xc8\xae\x1b\x50\x8a\xec\x4f\x2e\x18\xf5\x10\x6f\x56\xc4\x2c\x02\x1f\x93\x4a\x66\x45\x9c\x2f\xf3\x47\xec\xac\x02\x8b\x1d\x56\x14\x6f\x56\xee\x59\x27\x36\x4d\x91\x2d\x1a\xa6\x55\x14\x3b\x49\xb1\x68\x0b\x71\x58\x29\x6c\x27\x91\xd8\x67\x1c\x6f\xb1\xb4\x2c\xd4\x12\x7d\x11\x6f\x51\x66\xc5\xf1\xc4\x66\x2a\xd6\x00\x9b\x08\xff\x61\xbc\x45\xa1\x2d\x64\xec\x9a\x78\x8b\x35\x58\xc8\xe8\xd3\x78\x8b\x15\x28\x2c\x5a\xd8\x2d\xcb\x2e\xec\xf7\x33\xba\x23\xde\xb0\x17\xb8\x43\xb5\x28\xb4\xb0\xb0\x61\x5c\x08\x85\x0d\xfb\x3d\xab\xab\x84\x28\xc4\x1b\xf6\x0c\x56\x57\x83\xcd\x36\xf1\x86\x5d\x23\xdc\xbd\x8c\x1c\xc3\xf2\x63\xfb\x44\xb2\xb4\x61\x69\x83\x68\x0e\x7b\x79\x28\xda\x85\x42\x04\x5f\xbc\x61\x47\x08\x1c\x6e\x76\x84\xb0\x02\x41\x34\x99\xf2\xa9\xfe\xe4\x42\x0b\xdb\xa4\x2a\xd9\xaa\x64\xc9\xab\x2a\xd9\x8a\x7f\x35\x51\xcb\x6a\xc1\x16\x22\xd9\x70\x55\xc1\xd6\xf9\x33\xd4\x25\xde\x6a\x6f\xa9\xe7\x5f\x03\x04\xe3\xad\x96\x95\xc5\xc7\x6e\xcf\xa8\x96\xd5\xc5\xc7\x4a\x25\xab\x65\xad\xb8\x9a\x33\xa5\x68\x0a\x76\x21\x9a\x95\xec\xf6\x95\x4e\x37\x76\x24\xea\xca\xba\xe3\x87\x1f\xfc\x62\x37\xfb\xce\x20\x66\x21\xba\xd9\xf7\xcf\x82\xf1\x93\xc3\xc6\x5c\x30\x12\x28\xde\xe1\x4f\x2e\x04\x47\x04\x84\xf1\x8d\xc2\xe8\x9d\x78\x87\x12\x5b\x28\xd3\xcf\x64\x28\x9e\x81\xbb\xbe\x53\xd6\xa1\x78\x58\x0f\xea\xf6\xeb\xa1\x78\x16\x22\xd9\x07\x86\x8d\xbb\x90\x89\xf8\x0e\x23\x20\x45\xd9\xa3\xe6\x50\x86\xa8\xb5\xd8\x3d\x6a\x58\x4b\x82\x22\x93\x49\x53\xf1\x4c\x46\x24\x87\x8c\x69\x8d\x58\xea\xc1\xe4\x0e\xa3\x1d\x45\x9a\xc5\xa7\xac\xe4\x74\x16\x42\x29\xa6\x95\x34\xd8\x11\x5f\x69\x18\xd8\x28\xe2\xb0\x43\x4d\x6b\xb9\x10\x87\x1d\x6a\x5a\x25\x96\x6c\x8e\x41\xbf\x98\x56\x09\x07\x49\xca\x54\x69\x5a\xfc\x65\xa1\x45\x32\xfb\xd3\xe2\x2f\x18\x0d\x17\xc4\x38\x6e\x44\xb2\x57\x9f\x16\x9f\xa8\x46\xfc\x93\xf1\x9e\x16\xff\xb4\xf8\x64\x7f\x5a\xfc\x85\xd2\x95\xeb\x69\xe9\x09\x73\x6c\x83\x2e\x70\x5a\x54\x56\x46\xda\x40\x86\xa7\xa2\x5e\x28\x47\xa7\x42\xe7\x2e\xea\x4b\x7b\x53\xae\xcb\xbe\x73\x51\x7a\xbf\x90\xcb\x8e\xb8\x10\xac\xc5\xc4\x7b\x59\x88\x85\x20\x32\x30\x0c\x48\x8c\x1d\x90\xb8\xbf\xe6\xcb\x6e\x71\x9d\x3f\xe3\xbc\xe2\xbd\x2c\xd8\x75\xfd\x35\xaa\x36\x08\x44\xdc\xc8\xc5\x62\xdc\x4a\x6c\x21\x57\xa5\x7f\x2b\xb1\x5b\x89\x91\xd9\xad\xc4\x16\x82\x43\x1a\xc2\xc8\x43\x11\x6c\x66\x8a\xf7\xf6\xa3\x5f\x48\xad\x9a\x97\x05\x73\x41\xa0\xf9\xa2\x05\xbb\x2f\x83\x36\x49\x52\x62\x0b\xc1\x66\x90\x78\x6f\x25\x76\xd3\x37\xfd\xb4\x6e\xbf\xc0\x85\x52\x3b\x79\x3d\x56\xe8\x51\x1b\xa4\xe3\x6f\xd0\xcc\x8f\x55\x59\xc8\xc9\x61\xfa\xb1\xf1\x17\xf2\x6e\xfc\xc7\xda\x2d\xe4\x11\x3e\x65\xed\x1e\xc2\xeb\x32\xb5\x7b\xec\x0f\x0b\xa5\x66\x4b\x64\xeb\x2c\xe4\xe6\x58\xf8\x58\xbb\x85\x66\x3b\x3c\x56\xee\xa1\x72\x99\x3e\xf9\x58\xb9\x05\x2d\xcc\x78\x5f\x2b\xf7\xee\xca\xf1\xd8\x6b\x73\xbd\x46\x15\x22\xbc\xd7\x5e\xb3\x90\x87\xc3\xd7\x6b\x1d\x17\xe2\xb0\x87\xbc\xd6\x91\x93\x26\x52\xa3\x14\xaf\xe5\x7a\x91\x7a\x36\x2f\x0b\xf6\x12\x74\x19\x24\x7d\x96\x62\x21\xb1\xab\x20\x0c\x80\x14\x79\x6b\xcd\x4f\x79\x71\x48\xc5\x50\x6b\x7e\xca\xeb\x53\x5e\xbe\x68\xd3\x2f\x94\x3c\x11\xe1\xe7\x77\xbd\x30\x4a\xa7\xde\x9f\xe5\xfa\x1c\xaa\xfc\x34\x3e\xc5\xf3\x39\xfa\xf2\x6d\x18\x74\x29\x46\xc1\x22\x31\xe8\x52\x24\xd6\x67\xc3\x08\x4b\x31\xca\x4e\x9a\x26\x4d\x4a\x66\xd2\x69\x12\xb3\x12\xfa\xa9\x21\x90\x62\xfd\xa4\xf9\x3f\xa6\x11\xb4\x87\x6d\x68\xc0\xa3\x48\x15\x33\xdb\x80\x47\x51\x2a\x56\xbb\x01\x8f\xa2\x10\x47\x1d\x06\x3c\x8a\xc4\x32\x45\x7c\x5a\x7a\x60\xfd\x24\x25\x4b\x96\x2c\x19\x32\x4d\xc5\x59\x16\x12\x81\xbb\x3b\x8c\x26\x14\x25\x15\x32\xd3\x52\x02\x85\x03\x33\xc2\xe8\x38\x11\x9c\x23\x10\x06\xb9\x89\x12\x0c\xa2\x46\xb4\x89\x60\x4f\x4c\x18\xbe\x26\x72\x0d\x5f\x54\x88\xf8\x89\x8a\xf5\x2e\x16\x75\x21\xb3\x7c\x12\x46\xaf\x89\x55\x23\xd3\x2c\x3e\xe1\x6b\x84\x04\x85\xe1\x6b\x22\x15\xc6\x5a\xe3\xcb\x44\x39\x2a\xf5\x0e\x0b\xb6\x90\xf1\xd1\x85\x91\x63\x22\x76\xbd\xc3\x82\x85\xe3\x23\x23\x93\xe1\x5e\x22\xa5\x66\x92\xed\xb6\x50\xd8\x5a\x16\x86\x7b\x89\x6c\x5f\x34\xdc\x4b\xe4\x03\x73\xdc\x70\xaf\xd8\xe1\x5e\xd5\x24\xcb\x5a\xf9\x04\x15\x75\x55\xae\x55\x6b\x8d\x51\xd4\xe0\xae\xd8\xc1\x5d\x61\xfe\x56\xa9\xb2\xef\x96\x31\xcd\xe0\x2e\x11\x9c\xd2\x10\x46\x72\x89\x42\xf4\x55\x18\xc9\x25\xb6\x95\x67\x24\x97\x88\x94\xa9\x64\x55\xd4\x0b\x99\xb5\xa4\x30\x92\x4b\x04\x07\x45\x84\x91\x5c\x22\x6a\xa3\x5c\xcd\x7a\xb7\x3d\xf6\x90\x7f\xb3\x14\x8d\xcf\xa6\x50\xd6\xa6\xc4\x1a\xa3\x96\xdf\x43\xf7\xcd\x4e\x1f\xc3\x36\x30\x30\x49\xa4\xc2\x60\x6a\x14\x92\x28\x78\xae\xc3\x28\x24\x11\x44\xfc\x85\xd1\x42\x22\x45\xc9\xe6\x6f\x2d\x3b\xb5\x2c\x66\x66\x2d\x17\xd2\xc4\xcc\x33\x5c\x28\x88\x0d\x4a\xc6\xe5\x86\xc1\x41\x22\x27\xbf\xc1\x61\xc9\xd8\x8e\x52\xb1\xe9\x8c\xde\x11\xc1\x52\x5e\x18\xaa\x23\x82\x53\x32\xc2\xb8\x1c\x31\x0a\x0a\xd7\xb8\x1c\x11\x6c\x55\x0e\x83\x70\x44\xce\x56\x7c\x58\x88\x81\xc4\x0a\xbd\x47\x9b\x0b\x04\x2b\x72\x61\x78\x8d\x18\x04\x0b\x86\xb1\x34\x62\x14\x06\x5d\x03\x67\x44\xec\xd6\x9d\x76\x1e\x56\xaa\xc2\x89\x89\x91\x33\x22\x12\x13\x77\xc3\x64\xc4\x28\x76\x28\x6d\x2e\x90\xd8\x11\x12\xc6\xc4\x88\x94\x1a\x49\xa7\xad\xcb\x7e\xd2\xc6\x08\x6e\xb4\x8b\x48\xc5\xcf\x59\xa3\x08\xc4\x1a\x00\x7f\x53\x2b\x1b\x4d\x22\x4a\x77\x30\xd4\x66\x32\x9a\xa4\x56\x6a\x77\x2a\x3c\x0e\xaa\x9a\x0e\x7c\x97\x1d\x69\x21\x57\x66\x40\x86\x7b\x88\x32\x1d\xcb\x2f\xf3\xba\x76\x77\x40\xec\x97\x99\x5d\xcc\x6d\x4c\xd2\xf2\x31\xae\x62\xd8\x1d\x6e\x7b\xc8\xcd\xa7\x6d\x3f\xd2\x18\x02\x69\x0b\xef\xf6\xd3\x60\x13\x5f\x71\xc4\xd7\xf2\x31\x14\xa2\x38\x18\x6a\xe6\x80\x51\xb0\x4e\x0d\x72\x10\x91\xec\x21\x9a\x39\x60\x95\x15\x81\x6a\xe7\x80\x48\x8a\xe7\x51\xec\x0f\xbd\xc6\x8a\x3f\x96\xf5\xd1\xbd\x83\x41\x6f\x98\x83\x88\xe4\xc8\xaa\x21\x03\xf2\x70\xcc\xd4\x90\x01\x91\x1c\xdf\x1f\xcb\xff\x30\xc0\x60\xcc\x7d\x8f\xcd\xfa\xf0\xe9\x31\x39\xf8\xb4\x6d\x40\x69\x8e\x26\x5a\x32\x9f\x96\x8c\xfd\x41\x4b\x06\xf4\x66\xbb\x69\xc8\x80\x5c\xcd\x4b\x43\x06\x94\xbe\x5f\xb4\xf4\x2f\x53\x27\xfb\x80\x26\x0a\xc8\xc5\x72\xbd\xfe\xe2\xcb\x2f\x62\xdb\x7c\x9f\x79\x7d\xcc\x9f\xfd\xcc\x3e\x7b\xca\x42\x89\xe9\x53\xf6\x94\x8f\x0f\x08\xab\xe5\xfb\x94\xc4\x42\xd1\x67\xf2\x7d\x4a\xe2\xf3\x8c\x1c\xf3\xb2\xda\xdb\x44\x71\xf8\xfd\x2c\xd8\x47\x53\x36\x8a\xaf\xd5\x02\x46\x59\xa6\x59\x35\xc6\xa4\x1e\x87\xf3\xff\xa5\x83\xab\xa7\xb6\x88\x54\x88\xc1\xad\x06\x95\x88\x60\x35\xb5\x1e\xac\x3c\x8a\x40\x89\xd5\x03\x4b\x46\x64\xce\x2f\xa9\x07\x66\x8b\x70\x21\xab\x1e\x58\x2d\xa2\x30\xfe\xd6\x03\x13\x45\x54\x1c\x48\xd5\x73\x61\xc4\x2a\x19\x3f\x89\x8d\x22\x02\xb3\xa8\x1a\xc9\x22\xca\x2e\x18\x3e\x2b\x11\x2c\xac\x57\x4f\x7e\x11\x69\x36\xf3\xb7\xac\xac\x12\xce\x25\xec\xea\xd9\x2f\x22\x58\x58\xae\x47\xb2\xf8\x49\x83\x61\xa9\xbf\xea\xf1\x2f\x62\x94\x61\xfe\x96\x3f\xa1\xaa\x13\x4f\x65\xcb\x9a\x2d\x2b\x3f\x99\x2d\x2b\x2b\x89\x9c\x91\x52\x0f\x56\x12\x45\xe1\xa8\xbd\x7a\x64\x8b\xcf\xbe\x08\x56\x55\xaa\x47\xc7\x88\x60\x71\xbf\x7a\x76\x8c\x48\xa3\xd1\x46\xb8\xa3\xc5\x2a\x2b\x55\xc2\x01\x26\x22\xed\xcc\xac\x78\x46\x6f\xee\x37\xad\x78\xb6\xe2\x96\xc2\x8a\x2f\x94\x39\x7d\xea\x36\x49\x3b\xcf\xe2\xdb\x94\x0b\x81\xd5\x52\x8f\xac\x74\xb2\x63\x9b\x6d\x59\x2c\x6c\x31\x42\x90\xf2\x17\x4b\x51\x8c\x9e\xf7\x29\x7f\x72\x1b\x67\x05\xc1\x86\xbd\x80\x28\x8f\xdd\x15\x43\x29\x86\x52\xa4\xc5\x43\x29\x06\x33\xd5\x66\x92\x3f\x19\x58\x32\x83\x2a\x85\xf2\xd1\x38\xeb\x34\x52\x28\x9e\x40\x3c\x9d\x2a\x85\x05\xc3\x5e\xfb\xf9\x94\xad\xab\xdb\x29\x51\xae\x6a\xb9\x2a\x23\x60\xa7\x5c\xd5\x46\xaa\x34\x92\x9d\xbf\x5a\x08\x3c\x51\xf8\xbc\xeb\x51\x2d\x44\xdd\x8d\xe4\x9b\x8a\x5f\xe3\xa9\xd3\x48\x55\x59\x2f\x94\xc3\xcc\x9a\xf9\xe3\xdd\x1e\x8a\xbf\x99\x7f\xd3\xa5\x51\x4c\x33\xb3\xa6\x91\x52\xc8\xad\x99\x5b\xa3\xe5\x3a\xc2\xe8\x56\xa0\x2b\x58\x9a\xa4\x2b\xd8\xee\xe9\x36\x48\xb1\xdb\x17\x3b\x7b\x74\x32\xc5\xe8\x16\x03\x53\xe9\xb0\xe6\xdd\x62\x74\x9a\x57\x29\x76\x05\xdb\x15\xac\xd9\xdb\x57\x16\xd2\x96\xe2\xb0\x10\x43\x29\xfe\xf6\x22\x74\x3d\x86\xbf\xae\xf3\x6a\xd0\xe1\x86\xf9\x0e\xc6\x7c\xbb\xc8\xb0\xc1\xdc\x4b\x5b\x0a\x15\x9e\x7e\x8f\xb8\x92\xd8\xd6\x5a\x0d\x0c\x13\xa3\x4c\x9a\x7a\x5a\x95\xed\x24\x2a\x14\x7c\x5a\x97\x85\xbc\x9b\x67\xda\x49\x16\x4a\x38\x10\x4d\xe5\x3e\x69\xc4\x61\x66\x8a\x1d\x27\x51\x10\x22\x5a\x3d\x14\x49\x64\x1c\x72\xd5\x33\x31\x45\x19\x0e\xcb\x97\x4d\x71\xe1\xf3\xb0\x4e\x97\x7d\x5c\x6f\x8c\xa3\xce\x65\xf9\x2f\x06\xba\x41\x95\x2e\xe5\x83\xfd\x81\x57\xb3\x7a\xa0\xa5\xc8\x61\x21\x2e\xbf\x51\xec\x0f\xb6\x88\xd4\xe3\xf6\x17\xf5\xb2\xf8\xbd\xdc\xe6\xc5\x59\x94\xdd\x8e\x74\x5b\xef\xdb\x4a\xd2\xd2\xb7\x15\xba\xad\x64\xf0\x93\xb7\x35\x22\x7c\x32\xef\xfc\x6d\x12\x62\x25\xd9\x1a\x53\x8f\xc7\x16\xe1\x78\xb3\x36\x11\xc5\xe3\x4f\x2e\x94\xee\x8b\x8f\x2d\xf2\xf0\x0d\xd9\x51\x1f\x1b\xe4\xc1\xab\x3f\xa9\xf7\x63\xc1\x9e\xa9\xad\xe1\x63\xb6\xc8\x43\x70\xbf\x3d\xf5\xb1\xe2\x7a\x3a\xec\xe2\xaf\x72\x7d\x91\xab\x99\xbd\x96\x42\x35\x6f\xbf\x78\x2d\x85\xe7\x60\x96\xa0\xb0\xaf\x82\x7d\x89\xa2\x57\x01\xbe\x16\xe3\x75\xb2\x17\xe6\xa6\x30\xf4\x6b\x58\xcd\xd7\x62\xbc\x14\xc3\xc1\xf5\x55\x3e\xaf\x5d\x36\x48\xfb\xfc\x3c\xf0\x75\x54\x8e\x54\xab\xc7\x67\x9b\x7f\xf6\x59\x72\xfb\x2c\xee\x67\x71\x69\xa7\xcf\x72\x7c\x8c\xf1\x13\x69\x7f\x8e\xae\x38\x3b\x08\xd5\xac\x9e\xbd\x25\x52\x5b\x93\xe1\xea\x11\x9c\x35\xb1\x27\x94\x39\x73\x4d\x2c\x70\x89\xa4\x85\x90\x58\xcc\x12\xab\xb0\x41\xda\x34\xcd\x9f\x6c\x24\x5d\x26\x39\xa0\x2f\x13\xaa\x26\xd5\x7a\xda\x6a\x1d\xed\xef\x21\x9f\x22\x3b\xee\x27\x75\x38\x08\x8e\x98\xaa\x09\x6f\x84\x08\x56\xe8\xaa\xa7\x76\x89\xe0\x30\xd2\x9a\x92\x45\x4b\x9a\x8e\x85\xa4\xd3\xa4\x93\x17\x33\x49\x96\x6c\xab\x75\xf4\x6e\x52\xad\x83\x95\x86\x84\xd4\xeb\x20\xb3\x40\x59\x3d\x16\x4c\x44\x3e\xf8\x01\xd5\x27\x28\x1c\x61\x56\x53\xb1\x4a\x85\xf8\xfa\xc4\x53\xac\xee\x88\x20\x3a\xb1\xa6\xe2\x8b\xc5\x92\x21\x46\x95\x20\x08\x3f\x9d\x84\x83\x42\x04\xe7\x16\xd4\x54\x2c\x57\x1c\x3f\x77\xcd\x56\xcf\x1a\x15\xe9\x67\x52\x31\x89\x1d\x38\x36\x66\x28\x57\x56\x6d\x06\x3d\x2a\x85\x72\x5d\xc8\xf8\xad\x6a\x52\x79\x82\x72\x28\x7d\x95\x27\x48\x8d\xcf\x24\xa9\x3c\x41\xee\x36\x88\xca\x13\xa4\x89\x6d\x91\xc2\x3a\x06\x73\xbb\x69\x92\x75\x0c\xfc\xe9\x0a\x3a\xac\x63\xb8\x9b\xd7\x5f\x7c\x4c\x62\x0e\x66\x87\x0a\x9b\x08\x27\x49\xb2\xa3\xa8\x88\x41\xce\x36\x64\x55\xf6\x0b\xc1\x11\x26\x95\x63\xd6\x36\x82\x03\x2e\x6a\x52\xe9\x82\x82\xd7\xaa\x26\x95\x2e\x48\x84\x24\xd6\x54\x15\x74\xdd\x9f\x25\x02\x6b\xe6\xdf\xcc\x9f\x1a\x35\xf3\x6f\x7e\x95\xc8\x50\x75\x0d\xdc\xc5\x5c\x53\x53\x86\xcd\xf5\xbd\x66\x9a\x42\x6c\x08\x91\x01\xc3\xd3\x57\x2b\x07\xbd\x05\x7b\x20\xab\x47\xad\x0a\xf7\x3f\xd7\xa4\x4e\x07\x69\x36\x7f\x52\x89\x35\xac\xb1\xe6\x8b\x4a\xac\xb1\xff\xd9\x4f\xbc\xdb\x51\xba\xc3\x2e\x2f\xaa\xd3\xd3\x76\x7f\x50\x2e\x75\x3a\xc8\xa3\x8c\xdf\x56\xcd\xa9\x5b\xbb\x85\xc4\xd1\x5b\xd5\x83\x5e\x45\xc1\x75\x5f\x39\xa4\x6e\x23\xfd\xfc\xb2\xbb\x55\xc1\x61\x32\x2c\xb7\x96\x01\x08\xe2\xbf\x6b\x1a\x8a\x7d\xe4\x9f\x1b\xbe\x6b\xd2\x1a\x00\x85\xc3\x63\x6a\x1a\x96\x7b\x70\x16\x08\x06\x42\x1a\xfe\xe4\x60\x8b\x39\x46\x4c\x1a\x36\x3e\xfb\x98\x34\x78\xd3\xb0\x10\x83\x1e\x98\x7d\x51\x79\xe2\x2f\x49\x0e\x1c\x5a\x16\x20\x88\xa9\xad\x1e\xa2\x27\x1a\x5b\xae\x6a\xd2\xd6\x00\xc1\x31\x4e\xd5\x83\xf5\x44\x61\x7f\x4a\xf5\x64\x3d\x11\x9c\xe4\x57\x3d\x46\xaf\x72\x72\x5e\x70\x48\x6a\xe5\xf8\xbc\x8d\x5c\xed\x6d\x5a\x1f\x20\x67\x9b\x6b\x5a\x54\x83\x73\xcd\xfe\xb4\x5c\xf8\x46\xaa\x23\xc9\x69\xb9\x4e\x67\x7b\x95\x4e\x7f\x5a\x30\x16\xa4\x38\xb4\xa9\xa6\xd3\xde\x7c\xf2\xb5\x64\xc4\x7a\x5a\x30\xb6\xfd\xb0\xed\xb7\xa6\x53\x49\x9f\x96\x95\xf6\x38\x6d\x6f\xf6\xf8\x54\x4c\xff\x74\x5a\x56\x7c\x2f\x9c\x01\x5a\x93\x26\x10\x28\x4c\x73\x6b\xba\x2c\x2b\xab\x4f\x1c\xa1\x54\xd3\x65\x59\x2f\xcb\xc5\x2f\x6a\x02\x81\xc8\x58\xbb\x49\x13\x08\xe4\x64\xf6\x9a\x40\x20\x38\x00\xaa\xa6\xcb\xa2\xe2\x82\x19\xd6\x51\xab\x08\xc4\xe1\x88\x70\x59\xae\x4b\x4b\xa6\x9a\x99\x72\xbd\x38\x52\x00\xe3\x29\x69\x3c\x81\x51\x94\xfe\x6d\xc1\x6e\x3d\x1d\x0e\x39\xb7\x25\xf3\x74\x0c\xc7\x2a\x0d\x2a\x10\x59\x6d\x72\x5b\xb2\x85\x1c\x6a\x00\x6d\x2c\x10\x1c\x70\x53\xd3\xed\xe7\xbf\x50\x0e\x3b\xa2\x66\x17\x28\x13\xa3\xd4\xf3\x90\x45\x71\xc6\x99\x34\x9e\x80\x6b\x06\x35\x3d\xe6\x85\xd7\x24\x3b\xe0\x3c\xe6\xf5\x70\xd6\xd6\xf0\x29\xf3\xe2\x08\x8c\x6e\xdf\xd4\x76\x02\x4b\x3c\xbc\xf9\xda\x6e\xef\xf1\xf3\x2c\x85\x9a\x5e\xdb\x6d\xa1\x74\xfb\xbe\xc6\x13\xc8\xe1\xc7\xac\xed\x04\xf2\x54\x5b\x69\x3b\x81\xc8\x1a\x0b\xaf\x9f\xe9\xcb\x49\x10\x8e\xd1\xaf\x65\x7d\x59\xa0\x51\xa7\x69\x60\x81\xc8\x5a\x14\x1a\x58\x60\x95\x95\x82\x69\x4d\x81\xd8\x9a\xe2\xb3\xac\x5f\x72\x30\x22\xc9\x66\xfb\x74\x94\xe3\x04\x48\x1a\x58\xc0\xe3\x21\x6a\xfa\xac\x12\x0b\x4c\xfb\x73\xfe\xec\xfc\xb8\x6a\xb2\x0d\xae\x19\x06\x52\xb1\x96\x9f\x55\xfa\xf4\xc3\x99\xbd\xe5\xff\xf0\x87\x38\x64\x7d\x96\x1f\xe7\x0d\xe7\xad\x55\xcf\x99\x14\x1e\x48\x51\xb3\xc6\x1a\x07\x4d\xae\xb2\x56\xd2\x8a\x69\x85\x05\xd4\x44\x52\x98\xc4\xe7\xcc\x47\x9f\xf5\xdd\x80\xc2\x32\x6b\xf5\xf4\x49\x91\x59\x4c\xae\x1e\x3f\x29\x12\xa7\x7c\x55\xcf\x9f\x14\x89\x00\xa5\xea\xf1\x93\x22\x38\x8d\xae\x66\x16\xa1\x44\x70\xce\x5c\xf5\x48\x4a\x91\xd8\xf6\x58\x3d\x80\x52\xac\xe2\x77\xd2\x2c\xab\x76\x1f\x7d\x2c\x6b\xf7\x81\xc1\x5a\x55\xcd\xc9\xb2\x12\x5c\x44\x84\x61\xf5\x20\x4a\x91\xd9\x7c\x59\xb3\x8e\x14\x50\xb4\x9e\x3d\x65\x52\x94\xc6\x57\xef\x31\x93\x22\x38\x59\xac\x7a\xce\xa4\x28\xc4\x13\x54\x77\xe7\x88\xc8\x4a\x5a\x47\x07\x88\x8c\x9b\xc9\x0d\x3b\xa2\x38\x97\x70\x77\x8e\x88\x6c\x1d\xf5\x86\x80\xdc\x8a\x49\x16\x62\x21\xeb\xe0\x71\xdf\x8d\x48\xa3\x99\xbd\xe5\x2a\x7c\x21\xf5\x6f\xd0\xc9\x6e\xcb\x11\x59\x03\xd9\x6d\x39\x22\x1f\x76\x2d\xed\xc4\xec\xda\x16\x16\x60\xd6\x4e\x04\xe1\x97\x97\xb5\x00\x41\x1e\xa8\xbe\xac\xb9\x97\xf7\xda\x96\xe5\xd6\xde\x03\x59\x03\x3c\x6b\xef\x65\x8d\x3b\x06\xfc\xac\x71\x07\x72\x57\xc4\x7a\x59\x40\x10\x02\x54\x3d\x23\x5d\x44\xc6\xc6\xc9\xba\x54\x40\x69\xc3\x24\xb3\xaf\xd4\xc8\xbc\xaa\xd9\x57\x4e\x17\xb3\x46\xd5\xe6\x62\x55\x29\xfb\xfd\x34\xfb\x64\xdb\xea\x90\x9f\x6c\xca\xa2\x61\x33\x33\xb3\x37\x74\x51\x64\xd6\xb6\x6a\xd6\xb8\x03\xa5\xec\xcc\x2c\xd8\xf6\xc5\x28\x32\x2d\x39\x10\x79\x67\xa6\x78\x34\xee\xb0\x75\x72\xb3\xe2\xcd\xf5\x59\x92\xf4\xce\x80\x5c\x19\xb7\xb3\x66\x1b\x88\x6c\x95\x74\xd8\x80\x14\x3b\xc9\xe2\x77\xba\x1b\x73\xd2\xac\x0f\x07\x44\xb6\x23\x69\xef\x81\xac\xa9\x96\xf5\xce\x80\xc8\xb8\xbd\x72\xb7\x5c\x9d\x06\xf1\xa9\x61\xf6\x9e\x97\x86\xf2\xe0\x54\xd1\x8d\x44\x68\x42\xcd\xc3\xae\xcb\x02\x15\xf1\x3e\x35\x6b\x83\x81\x32\xfd\x0c\xb4\xae\x40\x64\x7c\x87\xee\xa5\x12\xc1\xa6\xd4\xea\x5e\x2a\x11\x99\x49\xbc\x61\xa3\x62\x49\xda\x37\xad\x24\x07\x9e\x65\xfc\x65\xee\x6b\x12\x1e\xd7\x53\xdd\xd6\x24\x46\xf1\x73\x98\x56\x72\xba\x86\x43\x59\x35\x9c\x3c\xa4\xd4\xb9\xa1\x3b\x93\x44\x10\xe5\x5c\xb3\xe6\x0f\x18\xdc\x1c\x51\xdd\x98\x24\x72\x60\x8c\xb8\x31\x49\x14\x5d\xca\x6e\x4c\x12\x99\x8d\x2d\xd5\x8d\x49\x95\x5d\x48\x91\xbb\x49\x96\x8b\x2d\x47\xd5\x7a\x6b\x11\x81\xe0\xd4\xe2\x9a\x35\x7f\x40\xec\x8f\x59\xf3\x27\x6b\xfe\xe0\x14\xca\x97\xe5\xba\x9c\x95\x21\x56\x6d\x1d\x10\x9a\xc9\x59\xbb\x26\xbb\x28\x85\x01\x9c\x6f\x25\xb1\x30\xb8\x15\xa1\xe6\xdb\x42\xdc\x34\x11\x9e\xa9\xac\xf5\x03\x0a\x47\xe1\xd4\xac\xa5\x03\xca\x81\x21\x98\x6f\xfb\x09\xbb\x78\x87\xc3\xe5\x6d\x3f\xb9\x75\x23\x34\x1f\xb3\xac\x0b\x85\xa3\x8b\x6b\xd6\xae\x01\xa1\x79\xe2\x56\x2b\x91\xe2\x30\xb7\xc7\x9e\xc2\x3e\xdb\xa4\x9a\xd3\x9d\x04\x8a\x73\xe2\xfc\x58\x0c\xc2\x66\x88\xae\xab\x59\x77\x12\x48\x84\xe6\xd6\xac\x3b\x09\x94\x6e\x0f\xd6\x6e\x02\x23\x54\x86\x1a\x49\x20\x13\x5a\x5c\xb3\x46\x12\x08\x67\x7d\xf9\xb1\x25\x1f\xbc\xc7\xb6\xb7\x66\x53\xd6\x6c\xc2\xc1\x94\x5f\x4b\xbf\x90\x9b\x83\x98\x9e\x29\x10\x19\x97\x5c\x7e\x6d\x6f\x4e\x17\xe3\x7c\xee\x9a\x35\xae\x40\xe4\xe1\x8b\xd6\x71\x21\x11\x42\x5b\xb3\xc6\x0f\x58\xa2\xa6\xdd\x3e\x7f\x92\x83\xc3\x9c\x60\xe7\xcf\x9f\xfc\x3c\xcf\xca\x37\x95\xa1\xc6\x8f\x3a\x4d\x4b\x27\xe3\x5d\x62\xa3\x78\xcd\x9a\x35\x59\xb3\x66\xff\xa4\xa2\x60\x3b\xdc\x74\xf0\xfb\x14\xc5\x47\x4c\x24\x86\xa0\x1b\xe4\xc4\xe0\x20\xb8\xea\x06\x39\x51\x46\xf6\xa9\x6c\x52\x26\x82\x70\x92\x54\x4d\x42\x95\x87\x49\xcd\x24\x44\x81\x51\xe6\x56\x38\x31\xb4\xaf\xdd\x09\x27\x8c\xd7\xae\x6e\x7a\xab\x65\x3b\xaa\x9a\x8f\x3d\xa6\xd1\xeb\xa6\xa5\xf8\x4c\xfa\x38\xa8\x6b\x35\x5b\xd1\x9d\x55\x3c\x39\x6c\xfe\x0d\x1e\x6c\xb7\xba\x09\x0f\x00\xab\x6e\x75\x13\x49\xdf\xa2\x5b\xdd\x44\xe1\xd0\xd0\xea\xb6\x36\x91\x5d\xd6\x72\x57\x9b\x30\x78\xb7\x16\xed\x20\x90\xbb\x92\xca\x96\x91\x13\xba\x1c\xb4\x8b\x4e\x2c\xf7\xb9\x71\x26\x48\x75\x4f\x9b\x88\x62\x43\x68\x40\x81\xc1\xcd\x30\xd5\x4d\x68\xa2\xe8\x4c\x2e\x59\xa9\x64\xa5\x82\xec\x8a\xd9\x13\x01\x5d\x7c\x51\x3b\x08\x18\xae\x5a\xdd\xee\x25\x0c\x01\xad\xee\xf6\x12\x25\x58\x36\x70\xb7\x97\x48\x1c\x8b\x5e\xdd\xec\x25\x92\xee\x53\x37\x71\x89\xd5\x82\xe6\x6f\xc1\x16\x8a\x73\xf5\xe2\x72\x12\x30\x04\xb4\xba\xd5\x4b\x78\xd4\x5a\x75\x5b\x97\xc8\xdd\x26\xd2\x49\x06\xc2\x05\xbe\xa2\x93\x0c\x18\xf7\x58\xdd\xfb\x25\x32\x77\xa7\x54\xf7\x7e\x89\x34\x6d\x5b\xad\x26\x60\x3c\x59\x75\xeb\x97\x28\xb1\xb3\xb7\x92\xb1\xfb\xa4\x65\xbd\x4d\x73\x86\xca\x37\xe5\x76\x30\x61\x24\x5a\x75\x9f\x97\x28\x7a\x2d\xdd\xe7\x25\x32\x87\xfd\x54\xb7\x79\x89\x3c\x98\x89\xb8\xcb\x4b\xa4\xe6\xa7\xe1\x7a\x15\x28\xda\x05\xa5\x5a\xa5\x85\x3c\xb1\xbe\x8b\xce\x34\x50\xf6\xf7\xa3\x33\x0d\x78\x5e\x5d\x2d\x9a\x60\xc0\x70\xb2\x5a\x9a\x0d\xc2\x05\x45\xdd\x1e\xac\x55\x56\xb6\x55\x86\xdd\x51\x34\xae\x40\x1a\x76\x4e\x6d\x2b\x60\x44\x50\x2d\xba\xc4\x40\x8a\x62\x61\x75\x80\x01\x03\xbe\x6a\xd1\xde\x02\x49\x8f\x47\xd1\xde\x02\x29\xdb\x96\xda\x5b\x6e\x5b\x23\xbc\xb3\x16\xed\x2d\x30\xc2\x3e\xac\xbd\x05\xf2\x60\xb6\x5b\xb4\xb7\x40\x6a\x76\x02\xed\x2d\x50\x38\x64\xb3\x16\xbd\x65\xc0\x50\xa2\x5a\xf4\x96\x81\xe4\xc2\x9d\xfb\xe4\x84\x51\x5b\xd5\x4d\x71\x22\x15\xae\x82\xaa\x6e\x81\x13\xa9\x39\x56\xe9\x2d\x03\x06\x1c\xd5\x32\x2c\xd8\xe0\xbc\x2a\xe6\x1d\x45\xb3\xac\x78\x86\xad\xda\xa3\x68\x5e\x15\x0f\x50\xf0\xb3\x74\x55\x0c\x04\x67\xfc\x54\x37\xb7\x89\x32\xed\x3d\xae\x80\x81\x34\xed\xb0\x5a\x57\xc0\x9d\xb8\xd5\x8d\x6c\xc2\x88\xa0\x5a\x74\x2e\x01\x23\x4c\xaa\xfb\xd1\x84\x01\x32\xb5\xe8\x5c\x02\xb9\x3a\x66\x69\x70\x79\xdb\x8e\xee\x87\xa2\x75\x55\x3c\xbe\x95\x2d\x1f\xb5\xb8\xc0\x06\x52\x66\xb6\x5b\x4e\xbb\xc5\x49\xb7\xc0\xa6\x77\xbf\x9b\xd8\x91\x10\x6e\x6e\x13\xc3\x45\x25\x37\xb7\x89\xc4\xa1\x5f\xb5\xe8\x5d\x02\x1e\xb0\x58\xcb\x65\x29\x88\x76\xe6\xd2\x98\xea\x16\x38\xe1\x59\xc6\xd5\x6b\x80\xc4\x8e\x70\x70\x07\x9c\xf0\x64\xc6\x5a\xb4\x88\x40\x3e\xb0\x58\xca\xad\xa4\x39\x52\x95\xc3\xc8\xaa\xfb\xe4\x44\x19\x18\xd8\xee\x93\x13\xb9\xfb\x35\x68\x4a\x81\x12\xa8\xe9\x72\x2b\x89\x9b\x00\x16\xdc\x2e\x6e\x9d\x13\xd9\x38\x91\xa2\x23\x09\xe4\xdd\x1e\x5a\x52\x20\xbb\xc6\x5a\x34\x9b\x40\x66\xcf\x58\x75\x7f\x9d\x58\xed\x61\x9a\x65\x5d\x28\xe1\x00\xa8\x29\x05\x86\x73\xf5\xa2\xdd\x04\x76\x1c\x41\xd1\xb7\x04\x92\x7e\x85\xa2\xdd\x04\x72\xb7\xb9\xb5\x9b\x00\x47\x59\xfe\xb6\x4e\xd6\xac\x02\x69\x3a\x86\xba\x06\x08\x12\xb7\x78\xd4\xa2\xa5\x55\xf6\x1a\x60\xf7\x31\xdb\xeb\x45\x87\x39\xae\xea\xc7\x02\x79\x2a\x63\xfd\x58\x20\x4f\x87\xf7\x57\x19\xbc\xf4\x10\xfb\x91\xae\x2d\x90\x83\x45\xb5\xa2\x6b\x0b\xec\x75\xec\xa2\x6b\x0b\xec\xe5\xfd\xe2\xda\x21\x48\x2e\x5c\x15\xed\x3d\x90\xd9\xb1\x5f\x8b\xce\x2e\x90\x9d\x5c\x15\x2d\x40\xe0\x45\x2e\xb5\x68\x01\x82\xa4\xeb\xba\x68\x01\x82\x55\x6f\xd3\x94\x05\xfe\xaf\xd8\xf9\xdb\x1f\x16\xf2\xa1\xd6\xd1\x50\x04\x5e\xcf\x52\x8b\x86\x22\xd8\xeb\xeb\x5e\x5f\x25\xf6\x2a\x79\xe8\xc5\x02\x89\x23\xbe\x6a\xe8\xc5\x02\x49\xe9\x84\x96\x1c\xc8\x9c\x1a\x50\xc3\x55\x48\x90\x5a\xf1\xa9\xd3\xa4\x93\x03\x0b\x3b\x49\x97\x49\xfb\xc8\x7e\x92\x6e\x93\xd8\xa3\x72\x58\x88\xc7\x24\x16\xa0\xa8\x63\xe8\xd8\x02\x89\x8d\x32\x35\x34\x0a\x41\x99\x96\x5e\xa3\x10\x14\x22\x53\x6b\xe8\xfe\x02\x69\xf2\x2d\x86\x6b\x90\x20\xf5\xe9\x53\xfe\x62\xa2\xb9\x69\xc8\x70\x05\x12\x24\xee\x8e\xa9\xa1\x3d\x07\x0a\x77\x95\xd4\x30\x1a\x08\x14\x67\x22\x6e\x4e\x15\xab\xd5\x7c\x53\xe9\x10\xfa\xe3\xcc\x36\x8c\xf3\x01\xa9\x32\x05\x0b\xe3\x7c\x22\x5b\x0a\x93\xac\x37\xbe\x2e\x07\x89\xd0\xa0\x03\xa9\x68\x98\x79\x9f\x98\xd8\x6b\xbb\xa1\x91\x17\xfb\xa4\x51\x44\xad\x91\x07\x32\xfb\xdc\x6b\x68\xd1\x81\xa2\xd7\x32\x5c\xf5\x04\x7b\x89\x39\x8a\xe2\x29\x16\xcc\x5f\xb4\x60\x9e\x2a\x1a\x66\xaf\xc4\x0a\x5f\x83\x93\xb7\xd0\xee\x0b\xed\x3e\xe5\x63\x18\x51\xb8\xcb\xcd\x5a\x6a\xd1\x81\xc2\x86\x91\x1a\x9a\x6f\xa0\x1c\x7c\x34\xa1\xf9\x16\xae\x71\xee\x17\xed\x62\xe1\x39\x53\xbe\x68\x59\xc3\x90\xbc\xfd\xa6\x85\x0d\xa5\x48\xc5\x35\xd5\x40\x71\x44\x0b\xe3\x88\x40\x72\xaf\x49\x0d\x97\x21\xc1\x76\x67\x87\x26\x51\x6c\x7f\x13\x06\x4a\xb8\x98\x08\xf2\x96\xbf\xfe\x26\x90\xf7\xf7\xe6\x62\x22\x58\x6f\x92\xa6\x01\x04\x3c\xcb\xbe\x86\x06\x10\xd8\x8e\xf0\xd0\xda\x01\xc5\x41\xd1\x2b\x51\xc4\xca\xcc\x34\x6b\xd0\xd1\xe7\x78\x84\xc3\xe5\x44\xb0\x9d\x63\xa1\x05\x14\x5a\x40\xf6\x6c\xcd\x9d\xd0\xdc\xa9\x16\xcc\x6e\x60\x30\x75\xb2\x14\x8a\xb6\xfb\x5d\x52\x71\x97\x0b\xc1\x76\xe4\x85\xd6\x0e\xd8\x4e\xa2\x70\x6d\x10\xec\x39\x70\xb8\x10\x08\x86\xaa\x28\x86\x85\x60\x03\x5b\xb2\xe3\xb9\x36\x08\xc2\x68\xac\xd0\x7b\x15\x7b\x03\x1b\x46\x45\x0c\xdb\x97\x0d\x6c\x2e\x90\x84\xeb\x85\x60\x2f\xb8\x85\xeb\x85\x60\x3b\x3d\x42\x27\x17\xd8\x8e\xf0\xd0\xe4\x8a\x1d\x88\xe4\x27\xa1\xfb\x0a\x0c\xb5\x77\xb8\xa2\x17\x7b\x45\x0f\x77\x4f\xb8\xa2\x07\x42\x03\x31\x5c\xd1\x03\x7b\x04\x0f\x8d\xae\xd0\xe8\x72\x58\xd4\xc2\x02\xdb\x74\x0a\x2d\x2c\x30\x38\xd2\xa6\x86\x16\x16\xd8\x0a\x3d\xf4\x5f\x81\x3d\x55\x09\x6d\xae\x38\xb7\x7c\x7c\x53\x61\x2c\x44\x1c\xbf\x7d\xc9\x45\x0d\x0d\x30\x90\xf7\x48\xaa\x01\x16\x1e\x94\xef\xd8\x7d\x59\xee\x8b\x72\x33\xf7\x0b\x5d\x5e\xb1\x77\xa5\xe1\x34\x0a\x7d\x5e\xe0\xe7\x17\xe9\xf2\x1e\x48\x86\x0a\x84\x6e\x30\xf0\x73\xd8\xbc\x2c\xf7\x65\x10\x00\x06\x51\xe8\x1a\x03\x89\x7d\x0b\x35\x74\x8d\x81\x52\x99\x91\x84\x46\x1f\xd8\x16\x43\xb8\x2e\x08\xf6\xec\x26\x5c\x04\x04\x2b\x7f\xdf\xf4\xeb\xb8\xf9\x3a\x98\x51\x85\xb6\x21\xd8\xb3\x9b\xd0\x36\x04\x39\xa9\x0a\x34\xf1\xc0\xca\x0c\x99\xe9\xe1\x02\x3f\x87\x0a\x4d\xa9\xd0\x94\xb2\x2f\x69\x4a\x81\x9f\xa5\xd0\x0a\x0a\x9c\x4b\x7b\xa4\xd0\xe2\x01\x39\x54\x05\x5a\x3c\xa0\x18\x28\x16\x1a\x2e\xa1\xe1\xa2\xf8\x35\x5c\x42\xc3\xc5\x0e\xa1\xfd\x01\x4a\xb2\x77\x69\x1f\x84\xf6\x81\xa2\x76\x7d\x0c\xfc\xec\xe2\x3a\x92\xc0\xe0\x2c\xc1\x5a\xb5\x0f\xaa\x17\x8e\x32\xd0\x55\xfd\x41\x20\x1f\x54\xa8\xea\x0f\x02\x99\x23\x27\x6b\x55\xa7\x83\x25\x30\xdf\xfc\x4c\xe3\xb3\xe5\xe3\xae\x2a\xf5\xaa\x52\xa7\x41\xaa\x8b\x55\x60\x7f\xa2\x55\x57\x0e\x48\xae\x15\x54\x35\x6c\x75\x77\xb9\x01\xab\x55\x7d\x5a\xd5\xa7\xf8\xd9\xaa\x6e\x14\x50\x38\x28\xba\x56\xdd\x28\x20\x07\xea\xba\xaa\x75\xab\x6e\x94\x69\x52\x35\x49\xf3\x0c\x6f\x62\x55\xeb\x56\x5d\x2b\x4c\xe4\xab\x5a\x17\xec\x6e\xe1\x79\x13\x22\x73\xf4\x45\xad\x2a\xca\xaa\xa2\x54\x16\x2e\x05\x81\x3c\xf0\xaa\x55\xbd\x21\x55\x6f\x08\x0e\x98\xaa\xee\x04\x99\x73\x15\x6b\x55\x2b\x82\xf4\xb3\x96\x7a\x30\xc0\xcf\xb2\xba\xee\x03\x8a\x53\xe8\xaa\x6b\x02\xa4\xc1\x67\x59\x5d\xf7\xa9\x6c\x43\x72\xdd\xb4\xea\x61\x00\x61\x50\x4c\x75\xdd\x07\x84\x6b\x85\xde\x8c\x25\x3a\xc7\x28\xd6\xaa\xd3\xa1\x6e\x0f\x83\x6f\xba\xee\x03\x7e\x36\x92\xda\x08\x84\xbe\xc3\xaa\x36\x02\xe1\x34\xa5\x76\xf3\xef\x9c\x92\x8f\xaf\xab\xaa\x8d\x40\xb8\x34\x50\x5d\x38\x01\xa1\x83\xa7\xaa\xa0\x40\xe6\x88\xf7\x5a\x55\x50\x60\x70\x99\x70\xad\x2e\xaf\x80\x50\x41\x55\x97\x57\x40\xfa\x29\x0b\x27\xf2\x20\xb1\xa3\xb7\x7a\xcf\x96\x08\x1d\xd6\xde\xb3\x25\xca\x81\x1b\xc5\x1b\xb4\xc4\xca\x8c\xdf\x74\x6e\x0f\x42\x3f\x47\x35\xe4\x04\x84\x2b\x27\xd5\xe9\x3e\x48\x06\xa6\x54\x15\x14\x48\x95\xe1\xa2\x1a\x98\x02\x12\x07\x62\xd6\x3a\xfd\xc9\xa9\xc4\xe8\x89\xfa\x09\x40\xe8\x05\xae\xa7\x15\x3f\x59\x57\x42\xa7\x54\xf5\x13\x08\x95\x51\x55\x3f\x81\x50\x25\x7a\x47\x97\xc8\xdc\x2f\x53\xbd\xa2\x4b\x24\x63\x31\xaa\x2a\x0b\x24\x83\xd7\xaa\x3e\x01\x10\xce\xf6\xab\x3e\x01\x90\xdc\xd0\xe0\xb5\x5d\x75\x5f\xdb\x85\x59\x54\x1d\xd2\x41\x70\x5d\x76\xad\x2e\x80\x80\xd8\x2d\xe9\x88\x0e\x22\xcc\xcb\x89\x36\x08\xe3\x0f\xaa\xf3\x65\x10\x7b\x64\x33\x3c\x03\x84\xe1\x13\xd5\xb9\x31\x08\x2e\xd5\xae\xd5\x59\x2f\xf0\x62\xcd\xea\xdd\x5a\x22\x5c\x13\xaf\x4e\xd2\x40\x04\x9e\x9c\x6a\x90\x02\x88\xc8\xfd\xb7\xb5\x72\x75\x40\x06\xc1\x71\x36\xb5\xea\xec\x07\xc1\xe9\x33\xd5\x8b\xb6\x44\x9e\xb8\x45\x9a\x13\xb6\xb6\xe3\x46\x19\x97\x9a\x33\x36\x90\x34\x8a\xbd\x90\xab\xb6\x43\x7d\xcb\x28\xd7\x1c\x6b\x41\xb8\x3a\xd5\x1c\x6b\x41\x68\x09\x34\xdd\xe6\x20\x07\x13\xa8\x66\x40\x28\x48\x86\x16\x35\x67\x5e\x20\x38\x62\xa6\x36\xe7\x54\x20\x55\xbf\xff\xe6\x6c\x09\x24\x8d\xa6\xe6\x20\x0d\x22\xcc\xcc\x41\x1a\x64\x63\x9e\x9a\xc1\x9f\x20\x38\x76\xa7\xb6\x62\xf1\xb9\xbc\xc1\xa5\xc1\xe6\x64\x09\x44\xec\x17\x2d\x7e\x71\xce\xc6\x67\xd6\x1c\xca\x41\x04\x33\xda\xe6\x0c\x07\xa4\x3d\xc0\x78\xa5\x98\x48\x46\xb7\x34\x27\x2a\xcd\xd5\x79\x97\xef\x9a\x5e\xe5\xa6\x57\xd9\x51\xa1\x39\x26\x83\xdc\xf7\xab\xb6\x40\xd8\x9c\xc8\xd1\x61\x1a\xa4\xfd\x8d\x36\x83\x2f\x41\x70\x3b\x79\x6d\x0e\xdd\xa0\x1b\x01\xda\x5c\x9f\x07\x29\x6c\x74\x97\xd4\x41\x70\x68\x50\xf5\xc2\x31\x91\xf6\x70\xeb\xf5\x62\x22\x71\x8e\x40\x6d\xba\x7d\xbd\x71\x6c\x8f\xb7\xde\x38\x26\xc2\x45\x89\xe6\x1c\x07\x04\xa7\x03\x55\x6f\x21\x13\xc1\xe1\x40\xd5\x2b\xc7\x44\xda\x23\x5d\x73\xda\xd3\x5c\x54\x77\x78\x6a\x4e\x72\x40\xa9\x58\x20\xcd\x09\x0d\x48\xd5\x91\xa7\xe9\xc0\x05\xc5\x08\xa6\xd6\x2d\x1a\x07\xcc\xef\x4a\xa9\x1d\x9a\xda\x81\xb9\x68\x73\xdc\x07\xa1\xc3\xbe\x39\xee\x37\x6f\x1c\x63\x62\xdb\x1c\xd0\x9b\x03\x3a\x13\xcf\xe6\xf4\x02\x84\xc6\x58\x73\x25\x1c\x84\x7e\x92\x66\x54\x21\x48\x5b\x6d\x35\x07\x74\xd0\x5b\xf5\x31\xf3\x67\x40\xdf\x4a\xaa\xe9\xad\x05\xb1\x8b\xe1\xf4\x02\x14\x97\xfa\x9a\x73\x09\x10\x2a\xff\xe6\xf8\xda\xb4\xff\xb7\x7c\x1c\x60\x9b\x03\xac\x1d\xcd\x35\xed\xe6\x91\x52\x8e\xe9\xcd\x45\x6d\x10\xe1\x88\xe0\xa0\x0b\x62\x7f\xd7\x5a\xf3\x20\x02\xe3\xa5\x69\x93\x83\x08\xeb\xa4\x4d\x0e\x22\x98\x92\x35\x6d\x72\x10\x5c\x99\x51\x9b\x8e\x58\x10\x5c\xab\x50\x9b\xc6\x36\x08\x8e\x8f\xaf\x4d\x63\x1b\xa4\x3d\x36\x37\x3d\xb1\xa0\xeb\x63\x6d\x3a\x54\x41\x04\x53\xe9\xe6\x4e\x07\x10\x1c\x01\x5d\xdb\xe3\x4f\x3e\xfe\x24\x35\xd2\xa1\x0a\xbc\x6f\xa7\x36\x0d\x77\x10\xdc\x39\x58\x9b\x0a\x02\x64\xfd\x22\x4d\x7f\x2a\xc8\x86\xa4\x37\xfd\xa9\x20\x6d\x05\xd4\x5c\x9b\x6e\x5e\x61\x85\xa6\x6f\x2e\x44\x83\x64\x5c\x74\x53\x8f\x80\x3c\x6d\x4b\xf5\x08\x48\x5b\xdd\x34\xad\x79\x10\xc1\x84\xbe\xe9\x73\x04\xf9\x40\x63\x37\x0d\x7c\x90\x38\x49\xbd\x36\x1d\x8c\x20\x1b\x6b\xdc\xd4\x40\x4d\x0d\xd4\x7c\xca\x5a\xb2\xc9\x71\x5a\x7c\xb5\x0e\xc8\x87\x0d\xee\x34\x00\x04\x27\xbc\xd7\xee\x7a\x32\x88\x60\x76\xdd\x75\x26\x82\xe2\xe6\xc2\xee\x64\x01\x04\x47\xb0\xd7\xae\x6e\x02\x11\x4c\x22\xbb\xaa\x09\x44\x30\x91\xee\x3a\x13\x41\xda\xba\xbe\xeb\x4d\x04\xe1\x66\xa0\xae\xeb\x10\x44\x20\x8a\xee\x94\x02\x78\xf6\x5c\xed\xee\x7b\xe8\xde\x32\xc9\xb0\xd2\x8d\x89\x03\x11\xfb\xa9\x6a\x92\x5f\x6f\xfa\x1b\xc2\xbe\xba\x9a\xb1\xab\x19\x11\x7b\x57\x0d\x82\x08\x3a\x6a\xe7\xdc\x06\x11\x81\xa1\xd4\xf5\x36\xf6\x7f\xbb\xdf\xa9\x76\x97\x8a\xc1\xea\x35\x94\xd2\xb5\x62\x90\xb6\x65\xd1\x75\x41\x82\x30\x18\xa9\xeb\x82\x04\x89\xad\xb7\xb5\xbb\x1f\x11\x64\x8e\x7c\xa8\xdd\x3d\x84\x20\x0d\x06\x8a\xae\x9a\x05\x69\x1b\x46\xdd\xd8\x3a\x90\x8d\x20\xea\x4e\x86\x7a\xb1\x5f\x62\x14\x74\x55\x68\x57\x5d\x62\x6f\x76\x9d\x8b\x20\x5c\x54\xee\x4e\x73\x40\x70\x48\x71\xed\x2a\x50\x90\x93\xbd\xc4\xe5\x5c\x90\xb8\x1f\xbd\x76\xe7\x34\xa0\x70\xd4\x7d\xed\xaa\xcf\xee\xa2\xac\x76\x48\x57\x7f\x76\xf5\x67\xf7\x4d\xeb\x44\x78\x1b\x07\x55\xd5\xae\xfa\xec\x9e\xe6\x80\x99\xd3\xf5\x07\x82\xe4\x9e\xa5\x5e\xed\x85\x55\x17\x0c\x6d\xe2\x12\x29\x08\x4e\x65\xab\x5d\x8d\x0a\xf2\x61\xc7\x31\x48\x0d\x8c\xdd\x55\x55\xb2\x20\xcf\xec\x53\x66\xcf\x3a\x6a\x30\x89\xed\xea\x53\x50\x0e\xbf\x21\xfd\x83\x20\x6d\x03\xaf\xbb\xea\x08\x22\x94\x85\xab\x8e\x20\x37\x0c\x93\xee\x6c\x05\x44\x30\xed\xef\x4e\x56\x40\xb8\x78\xd0\x9d\x99\x80\xe4\x7e\x99\xae\xd3\x0d\xa4\x6d\x66\x76\xd7\x26\x41\x04\x93\xd8\xee\x9c\xa3\xcf\xfd\x18\xb9\xa9\xb5\xba\x5a\x8b\x59\x6c\x57\x6b\x81\x34\xed\x9e\x06\x75\x75\x6f\x98\x2c\x3e\xa5\x14\xf1\x93\x71\x00\x75\xed\x4e\x27\x40\xb8\x29\xa4\xab\xdb\xc0\xd0\x20\xef\x4e\x14\x40\x70\x22\x77\xed\x3a\xaa\x40\x70\xd4\x76\xed\x3a\xaa\x40\xc2\xd6\xfe\x5d\xed\x2a\xad\xae\xd2\x72\x10\x50\x1d\x75\xd5\x11\xd3\xeb\xae\x8b\x08\x04\xe7\x71\xd7\xee\x7c\x02\x8c\xfd\x8d\xa8\xb4\xc0\xd8\x9f\xa5\xeb\x82\xa0\x70\xf1\x70\xed\x2a\x28\x90\x2b\x63\x6b\x37\x76\xaa\xab\x8d\x18\x94\xbb\x73\x93\xee\xdc\x64\xfa\x94\x85\x78\x2c\x04\xd9\x3b\x37\x01\xc5\xb8\x88\xee\xdc\x04\x24\x37\x82\x75\xd5\x0c\x28\x15\x73\xb2\xab\x66\x40\x54\x7b\x8a\xeb\x6b\xdd\xf5\xb5\xd8\x8f\x39\x38\xbc\xea\x31\x7b\xac\x21\xda\x20\x57\xcc\xeb\xee\x12\x55\x77\x39\x2a\xac\xa6\x53\x1d\x90\xb3\xdf\xa0\x8a\x06\x14\xd7\x3f\xba\x8a\x06\x24\x23\xa1\xfb\x67\x9d\x3e\xb6\x68\x16\x7f\xd2\x3a\x79\xde\x8f\xc6\xfa\x50\xd3\x80\xd2\x11\xf6\x30\x4c\x69\x18\xa6\x84\x34\x86\x61\x4a\x20\x71\x6f\x66\x1d\x4e\x8c\x40\x76\xeb\xf6\x50\xd3\x80\xb4\xa7\x0c\x43\x55\x03\x22\xf0\x65\x0c\x35\x0d\x88\x8a\x41\x3f\xd4\x0e\x20\xbb\xad\x75\x18\x28\x04\xc2\xb0\xed\xe1\xc2\x12\x88\x8a\x85\x30\x9c\xf1\x80\xb4\x27\x16\xc3\xb1\x1e\x04\xe7\xcc\xd5\x61\x0c\x10\x28\x07\x52\x1c\xc6\x00\x81\x64\x70\xea\x70\xc0\x06\xdd\xc1\x7f\x38\x5e\x0f\xaf\x70\xe0\xbb\x1f\x4e\x95\x40\xe1\x88\xa1\x3a\x9c\x2a\x81\xb4\x0d\xf5\xe1\x5c\x09\x64\xfd\xa8\x43\x1f\x17\x28\x9c\xe2\x52\x87\x71\x41\xc3\xd0\x66\x8b\xef\xfa\x10\x08\xe3\xde\x86\x03\x3d\x28\x06\x0d\x0c\x03\x7e\x40\x1c\x56\xd2\x51\x1d\x24\xa7\xa5\xc3\x89\x12\x08\x77\xcf\x0c\xc7\x66\x90\x3b\x46\xe8\x30\xac\x06\x44\xfd\x1b\xce\xfb\xaa\xc3\x10\x1b\x50\x38\x96\xa1\x0e\x43\x6c\x40\xb1\xbf\x0d\x43\x6c\x40\xe1\x08\x89\x3a\x54\x03\xa0\x38\xef\x19\x46\xdd\x80\x62\xf4\xe7\xd0\xdb\x05\x72\xf2\x29\x95\x05\xe8\x5d\xa9\xbb\x83\x0d\x04\xe7\xcc\xd4\xa1\x1a\x00\xc9\x28\xae\xe1\x1c\x0a\x14\x4e\x18\xab\x43\x35\x00\xa2\xe2\x22\x19\x06\xc5\x80\xa8\xbe\xe8\xfa\x0f\xc8\x4e\x97\x86\xdb\xbe\x40\x70\x00\x63\x1d\xfa\xd2\x40\xda\x93\xc0\xa1\x33\x0d\x64\x1d\x73\xc3\xe9\x12\x48\x7b\xce\x3d\xf4\xa6\x81\x64\x80\xd6\x70\x2b\x18\x08\xbd\x51\x43\x65\x01\x4a\x63\x56\x35\xdc\x4c\x05\xf2\x60\xe8\x1b\xea\x0f\x50\x5c\x07\x1c\x3a\xa8\xc0\x50\xa1\x0f\x1d\x54\x20\x1c\x33\x87\xde\x28\x50\x3a\x93\xaa\xa1\x37\x0a\xa4\x3d\xc7\x1c\xfa\x9e\x86\x87\xcf\xd8\x9b\x9d\x07\x01\x6f\x5a\xac\xc3\x85\x8e\x61\xa4\x09\xea\x75\xa8\x3f\x40\xa9\x7e\x40\xea\x0f\x10\xd5\x16\x71\xa1\x03\xc4\xfe\x18\x2f\xbb\xc5\x42\x54\xf4\xfe\x30\x1e\x05\x44\x75\xac\x72\x9d\x03\xe4\xc3\x81\xc9\xc9\x12\x28\xcd\x1a\xe9\xc7\x02\x51\xf1\x17\x0d\xf5\x0e\xc8\x93\x41\x74\x38\x0b\x1a\x5e\xf1\xeb\x57\x66\xf0\x09\xc8\xbb\x10\xea\x1d\x90\xf6\x3c\x7d\x18\xc8\x3b\x0c\xe4\x75\xea\x3b\x9c\x2d\x81\xa8\xca\xc2\xd9\x12\x88\x6a\x8b\xa8\x9f\x40\xda\xf3\xe8\x61\xbc\x2f\xc8\xbb\x2d\x9d\x54\x81\xa8\x18\x11\xc3\x49\x15\x08\x8e\xc9\xab\xc3\xc0\x15\x10\x15\x1b\x62\x38\xcf\x1a\x06\xae\xc4\xce\xcc\x4a\xe1\x89\xab\xd9\x0a\x58\x29\x02\x7e\x2b\xb6\xc0\x50\x01\x82\xa8\xf8\x7a\x86\x33\x28\xe0\x3d\xdb\x75\xb8\xb4\x02\x42\x9d\x38\x5c\x47\x19\xee\x1e\x77\xb6\x3d\x8c\x13\x01\x5e\xaf\x5a\x87\x71\x22\x20\xef\x8e\xe1\x6c\x0c\x64\xf7\x3b\x0c\x83\x42\x40\xe8\x97\x1a\x4e\xd0\x40\xe6\xe8\xbf\x3a\x0c\x0a\x01\xc9\x08\x90\xe1\x9c\x0d\x14\xd7\x7d\x87\xaa\x14\x94\x43\x8d\xa5\x2a\x05\x51\x1d\x7e\x55\xa5\x20\xd4\xcb\xc3\x4d\xe7\x03\x4f\x61\x65\x74\x9f\xea\x48\xe0\xe5\xb0\x75\xaa\xfd\x40\x71\x1f\xfa\x54\xf9\x81\xa8\x74\x95\xa9\xf2\x03\x43\x73\x70\x1a\xb4\x01\xd2\x76\x76\x4c\xe7\x59\x20\xb9\xe2\x3a\x5d\xba\x01\x51\xc3\xa4\x6a\x52\xfd\x79\x1f\x6d\x9d\x4e\x9a\x40\xd2\x35\x3a\x9d\x34\x01\x8f\x6e\xab\x53\xe5\x0a\xb2\x8b\x64\xd3\x28\x5c\x90\xb9\x2d\xba\x4e\x3d\x8c\x20\xb8\x27\xaf\x4e\x67\x5b\xa0\x70\xcc\x51\x9d\x9e\x07\x03\x4a\x67\x41\x72\xaa\x6e\x41\xda\x1e\x9d\xe9\xa6\x25\x10\x5c\x0e\x56\xa7\x33\x2b\xe0\xdd\xb9\x75\xea\xad\x04\x85\x43\x1c\xeb\x54\x51\x83\xcc\x35\x93\x75\xba\x18\x05\x8a\x3d\x78\x1a\xee\x31\x09\xf7\xa8\xca\xd0\xe5\x29\x90\x0c\x6d\x9d\x6a\xf8\xb9\xa7\x64\xf8\x05\xa6\xfa\x1c\xe4\xac\x10\xd5\xe7\x20\xea\x7e\xca\xb2\x7a\xd3\x03\x7e\xef\xa9\x4f\x13\x44\x55\x62\x2e\x4f\x4d\xaf\x9f\x4d\x76\x02\xd7\xa7\x40\x54\xcb\xef\x62\x14\x48\xee\x05\x98\xce\xd2\x40\x32\x76\x64\x1a\xb5\x01\x4a\xae\xbf\x7d\x40\x76\x9d\xfa\x4a\x41\x31\xa2\x6e\x3a\x87\x03\x51\x77\x92\x42\xe0\x44\x3e\x23\x4b\xa6\x73\x38\x10\x15\xed\x3a\xb5\x13\x40\xf2\xa8\x8b\xa9\x57\x14\x0c\xe7\x28\x53\x43\x00\x94\x6e\x7b\x19\xf9\x01\xc2\xc5\xc9\xa9\x6d\x30\xb5\x0d\xf0\x2d\x4c\x6d\x03\x10\x5c\xb7\x5b\xa7\x86\x00\x88\x8a\xff\x6a\xea\x74\x05\xc3\x99\xc6\x74\x71\x0c\x0c\xcd\xeb\xe9\x4a\x18\x88\xca\x88\x30\x35\x17\xa6\x8b\x63\x7a\xe9\xa6\xf6\xc2\xd4\x5e\xc0\x19\x36\x5d\x2f\x03\x43\xbb\x7c\x3a\xdf\x04\xc9\xb9\xc0\x74\xc7\x3b\x88\x5a\xcd\xcb\xe2\x37\xd7\x8f\x7d\x51\xe1\x33\x05\xad\xd5\x24\x6b\xd4\x8c\x98\xf3\x17\xed\xa7\xf8\x6f\x6b\xb5\xf8\xd6\xa8\x39\x3b\xb0\x87\x18\xf0\x0b\x4a\xf5\xd3\x30\x6c\x05\x78\xad\x74\x9d\x7a\x74\x41\x71\x03\xf8\xd4\x7b\x0b\xa2\xe2\xd1\x9a\x46\x9a\x80\xe4\x26\xdb\x39\x14\xcf\x40\x39\xe1\xab\x9a\x4e\x7a\x41\x71\x9f\xc6\xd4\x40\x01\x45\xdd\x31\x5d\xee\x9b\x46\xdf\x1e\xe6\x65\x25\x07\xdb\x5b\xa7\x79\xf9\x8b\x6c\x8a\xaa\x68\xe5\xa9\x19\x03\x52\x73\x10\x32\x38\x04\x94\xfd\xf9\xeb\xcf\x05\xc5\x38\xc8\xe9\x06\x28\x10\xdc\xd7\x56\xa7\xab\x71\x20\x8c\xf6\x9a\xce\x82\x41\xb8\xfb\x6c\x3a\x0b\x06\xc3\xc9\xd4\xd4\xc3\x0b\xb2\xab\xd3\x53\xfb\x07\x14\x37\x8c\x4e\x27\xc6\xd3\x9d\xdd\x0e\xb4\x1a\x36\x20\x2a\x96\xec\xd4\x64\x01\xa5\x3b\x12\x6a\xb2\x80\x11\x3b\xc9\xd2\x73\x8d\x61\x3a\x7c\xd1\xa6\xc5\x64\xd1\x73\x3b\x9d\x17\x83\xa8\x7e\x1f\xba\x69\x41\xf6\xb8\x8c\xa9\x7d\x02\xd2\x76\x29\x4f\x27\xc6\x20\x7b\x1c\xc7\xd4\x18\x01\x29\xf9\x94\xb6\x08\x48\x13\xeb\x6d\x3a\x57\x06\x69\x3b\x90\xa7\xf6\x09\xc8\xee\xf1\x99\xda\x27\x20\x79\x42\xd4\xd4\xca\x98\xac\xed\x55\xdb\x48\x8b\x62\x6a\x51\x34\x5f\xb4\x8d\xb6\xeb\xd6\x21\xc5\xd9\xf2\xdc\x1e\x58\x07\x23\x0d\x08\x90\xdc\xc8\x3d\x9d\x41\x83\xa4\x95\x3a\x0d\xd7\x00\x51\xf1\x44\x4e\xa3\x51\x41\xe9\xb8\x17\xa6\x56\x06\x28\x3a\x39\xa6\x56\x06\x48\x65\x62\xd4\x4d\xa3\x3e\x41\xd2\x47\x36\xd5\xf0\x20\x79\x18\xc6\x74\xb2\x0c\xb2\x47\x98\x9c\x86\x78\x82\xe4\x39\x5b\xa7\x5e\x59\x90\xf4\x04\x9e\x7a\x65\xcf\x1d\xe2\x59\x7d\x6c\x9a\xc6\xd8\xd0\x7d\xec\x36\x49\xad\xcf\x70\x74\x1a\x5f\x09\x82\x93\x76\xeb\xa9\xf2\x3e\xbd\x30\x1f\x55\x71\xaa\xa9\x41\xb8\x3e\x7d\xaa\xa9\x41\x2a\xdc\xa1\x5e\x4f\x55\x35\x08\xce\xd0\xad\xa7\x8e\x51\x10\xd5\x0a\x38\x81\x06\xd9\x91\xff\xd4\x2f\x7a\x6e\xbf\x28\xe3\xe9\xa9\xf6\x3e\xd5\xde\xf4\x83\x53\x55\x0d\x4a\xcb\x3e\x65\xfe\xde\x1d\x8f\x12\x3e\x9d\xf3\x9e\xac\x0f\x3a\x8b\x3a\x8d\x89\x04\xd9\x9e\x71\x3a\xc1\x05\xe1\x12\xd9\xe9\x04\xf7\x74\x82\x4b\xff\x3c\x8d\xce\x00\xc5\x53\xec\x4e\xd5\x26\x48\x7b\x51\xe2\x54\x0b\x82\x50\x95\x9e\xea\xa4\xd3\x68\x44\x17\x2a\x4e\xd5\x0d\xc8\x9e\xfa\x76\xaa\x21\x4e\x35\x84\xc2\x56\x43\x80\xb4\xd7\x33\x4e\xfd\x8f\xa0\x2c\x3b\xf8\x37\x15\xf3\xa9\x22\x00\xc1\x3d\x49\xf5\x54\x11\x9c\x2a\x02\x5c\x36\xa7\x8a\xe0\xdc\x8a\x80\xc1\xfb\x74\x2e\x79\x7a\xe6\xaa\xcb\x0a\xa7\x2e\x4b\x50\xb8\x65\xbb\x9e\xc6\xde\x81\x62\xcc\xed\xe9\x42\x18\x08\x2e\x28\xab\xa7\x63\x29\x28\xfa\xf7\x4e\x67\x89\x20\xed\xa5\x86\xd3\xa0\x05\x90\xf6\x8a\xc4\xe9\xa0\x08\xd2\x5e\x6c\x38\x9d\xdb\x9d\x06\xb1\xb9\xb4\x70\xba\xa0\x05\x42\xc5\x75\x1a\x9e\x06\xa2\xf2\x59\x9e\x8e\x81\x20\xb8\xfd\xa9\x9e\x4e\xdb\x40\x32\xdc\xf2\x74\x8d\x0b\x04\x57\x8a\xd5\xd3\x61\xf1\x74\x58\xb4\xa3\x38\x04\x82\xa8\xc3\x24\x0b\xc1\x69\x5e\xc3\xa6\x75\x54\x04\xc1\xb5\xf0\xf5\xd4\x11\x08\xc2\x35\x9c\xd3\x79\xd6\xe9\x3c\x8b\x41\xe5\xd4\xeb\x77\x7a\x60\xb8\x4b\x2a\xa7\x61\x67\x20\x4f\xbf\x40\xc7\xb6\x53\x4f\xa0\xa2\x75\x1c\x03\xc1\xb5\x20\xf5\x74\x6e\x04\x82\x13\x7a\xeb\xe9\x7c\xe3\xfc\x28\x3e\x03\xd4\xa5\x4f\x0e\xa4\xbd\x16\x73\x39\x82\x80\xe4\x77\x74\x39\x95\x00\xa1\x9b\xfa\x72\x50\x01\x61\x50\xf2\xe5\x84\x00\x04\x17\x33\xd5\x4b\xeb\x1f\xa4\xbd\xb0\xe3\x2d\x3b\x22\x3b\x03\xbc\xfc\xe6\x41\xda\xcb\x38\x97\xc6\x38\x08\x6e\x96\xaa\x97\x96\x37\x28\x47\x33\xe9\x31\xc9\x8e\x8c\x01\x70\xe9\x49\xbb\xf4\xa4\x31\xdc\x5d\x9a\xd9\x20\xb8\xea\xa4\x5e\x86\x13\x80\x68\x87\x4f\xbd\x26\xbd\x24\x2d\xf9\x5f\x0e\x17\x20\x9c\xe2\x5f\x0e\x17\x97\x57\x80\xb8\x5a\x74\xb9\x03\x0e\x04\x57\x4b\xd5\xcb\x98\x2f\x10\x9e\x1f\x76\x69\xfb\x5e\x9e\xbd\xb4\x93\xcc\x6c\x21\x1a\x36\xe0\xa5\xa1\x0b\xd2\x64\x34\xbd\x1c\x54\x40\x70\x5d\x53\xbd\x8c\xef\x02\x43\x07\xeb\xa5\xed\x0b\xb2\xc7\x6e\x5c\xda\xbe\x20\x8f\x30\x7b\xe5\xca\x31\xd3\x1e\xe9\x70\x19\x18\x06\x72\x4e\xfe\xa2\x72\xad\x5a\x72\x54\xc8\x98\xea\xcb\x0b\x3a\x94\x8e\x43\x16\x48\x5b\xac\xae\xab\x80\x34\x99\x96\x5c\xda\xb9\x20\xb8\x01\xb9\x5e\x8e\x6b\x97\xc1\x0b\xcd\x17\xed\x2a\x18\xb5\x5c\xc6\x51\x2f\x1d\x6a\x20\x0f\x66\x85\x97\x0e\x35\x10\x1e\x8a\x78\x19\x80\x00\xc2\x59\xfa\xa5\x01\x0b\xc2\x09\xf2\xa5\x8f\x0d\x84\x56\xe1\xa5\x01\x0b\xa2\xe1\xe4\xb9\x0c\x3f\x00\xc1\x75\x69\xf5\xd2\xed\x76\x6d\xb7\x1b\xf3\xb1\xcb\xa1\xf2\xf2\x32\x11\x97\x02\x2f\xfd\x6e\x20\xb8\x7c\xad\x5e\x1a\xba\x20\x95\x2d\x7e\x2d\x5d\x10\x5c\xdb\x56\x2f\x5d\x71\x20\x73\x4b\x63\xbd\x8c\x66\x00\xc9\xa3\x8e\xbc\x88\x4a\xe4\xb2\x93\x14\x19\x41\x6c\x9e\x82\x71\x69\x22\x83\xb4\xd7\xf3\x2e\xd7\x8a\x40\xee\xb6\xa5\x6b\x45\x20\xe9\x64\xbb\xb4\xa4\x2f\x0f\xbb\xde\x55\xb2\xc5\x39\x16\xd2\xc1\xe7\x32\x34\x02\x14\x0f\xb1\xbd\xf4\x11\x82\xec\x22\xc1\x65\x40\x1c\x48\x3a\xb3\x2e\xed\x6d\x90\xa7\xa3\x8a\x6a\x03\x94\x63\x67\x6f\x51\xbd\xef\xcd\x2e\xac\xbf\x11\xa4\xdd\x4a\x5a\xe5\xa0\xb8\x47\xe2\xd2\xdf\x08\xb2\xfb\xc8\x2f\x57\xb0\x40\x6a\x98\x08\x97\xb6\x3b\xc8\x9d\xa1\xf9\xd2\x76\x07\xd9\xbd\x6e\x97\xb6\x3b\x28\x43\xb1\xba\xbd\x0e\x04\x87\x4d\xd7\x4b\xa7\x24\x48\xad\xfe\xf6\x21\xd9\xf5\x72\xcd\x0b\xe4\xe4\x20\xa1\x5e\xbb\x76\x70\x36\xf9\x1a\xcd\x01\x92\x1b\xee\x2f\x8f\x28\x00\x59\x63\xf6\x32\xc0\x03\xa4\xb2\x93\x14\x3a\xce\x4e\x4f\x02\xb8\x9c\x39\x80\xc2\x9d\xa3\xf5\x32\x36\x1b\x64\xc3\x5a\x2f\x57\xd4\x2e\x4f\x2d\x60\xba\x77\xa9\x0f\x41\x76\xb7\xe5\xe5\x22\x1b\x08\x8d\xb0\xcb\x38\x3e\x90\x74\xac\x5d\xfa\x3f\x41\xd1\xc8\xbe\x9c\x72\x80\xd2\x51\xdd\x97\x2e\x51\x10\x2d\x5b\x08\x8b\xca\x29\x4e\x8d\xc9\xf6\xa5\x6e\x05\x45\xbf\xe0\xa5\x6e\xbd\xd4\xad\xd8\x65\x97\xd3\x0b\x90\x74\xb1\x5f\xce\x2e\x40\xd2\xed\x70\x39\xbb\x00\xc1\x41\xd7\xf5\xd2\xad\x09\x86\x2b\x29\x97\x81\x21\x97\x17\xcf\x39\x48\x38\xbb\x00\x59\xaf\xc6\xa5\x0b\x13\x84\x7b\xa6\x2e\x5d\x98\x20\x7b\xaa\xf2\xa5\xe6\x06\xc9\x2d\x28\x97\x01\xe3\x20\x0c\xad\xbd\x74\x74\x82\x68\xd6\xd1\x79\x0a\x08\xf7\x72\x5d\xea\x77\x10\x46\x64\x5c\x9e\x59\x00\x4a\x56\x99\x3b\x75\x01\x35\x3b\xa8\x6a\x05\x80\x5c\x77\x21\xac\xe3\xcb\xf8\xcf\x2a\xc2\xe5\xd4\x05\x8c\xd8\x49\xd6\xf1\xf5\xc6\x1b\x92\xf4\x86\x82\xf0\x18\x9e\xcb\xd8\x14\x10\x4e\xe3\x2e\x57\x16\x41\x39\x54\xdb\xce\x82\x40\x78\x54\xc3\xe5\x46\x37\x90\x77\xb5\xb5\x4e\x40\xf6\x08\xa7\xcb\x20\x49\x90\x3d\xc1\xf7\x72\xae\x04\xb2\x7b\xdf\x6e\xe7\x4a\xa0\xe8\x0d\xb9\xf5\x99\x82\xec\x8e\xaf\xdb\xb9\x12\xc8\xca\xeb\x76\xa9\x11\x84\xeb\x1d\xb7\x4b\x8d\x20\x1b\xd8\x74\x1b\x01\x7f\x13\xe7\xd2\x50\x42\xb7\x16\xd2\xed\x3d\xc0\xf4\xaf\x5b\xff\x2b\xc8\x5c\xa3\x5e\x6f\x8d\x26\x90\x35\xf1\x6f\xc3\x5c\x40\xb8\xd5\xf9\x36\x76\x13\x14\xf7\x15\xdc\x7a\x64\x41\x76\x56\x77\x3b\x5d\x03\xd9\x19\xdc\x6d\xe4\x0b\x08\x87\xb7\xdb\x98\xcf\xdb\xcb\xe7\xb8\x12\xa6\xde\x1a\x65\x20\xf7\xc3\x37\x2d\x3e\x46\x59\x19\xc5\x34\xcb\x8f\x4f\xd6\x89\xd8\xed\xf9\x9e\x60\xb8\x8e\x74\x3b\x85\x03\xd1\x70\xb6\xde\x5a\x73\x20\x1a\x0e\xcc\xdb\x59\xdd\xbd\x67\x75\xdd\x34\x8b\xc6\xb2\xe8\x60\x40\xb9\x0d\x6d\x01\xe1\x51\xde\xb7\xde\xd6\xdb\xd0\x7f\xe3\x40\x6e\x2d\x3c\x90\x3a\xe3\xce\xad\x81\x77\x7b\x89\x9c\x11\x2a\xb7\xbe\x55\x90\x9d\x96\xdc\x7a\x4d\x6f\x22\xf8\xdb\x4e\xb2\x9a\xc5\x63\x37\x10\x90\xd1\x2e\x20\xeb\x81\xbd\x9d\x36\x82\xe2\xce\xcf\xdb\xa5\x52\x90\x9d\xe2\xdc\x5a\x8b\xa0\x68\xda\xde\x06\x9a\xde\x9e\xa0\xc0\x78\x7b\x6b\x40\x82\xd4\x19\x78\x6e\x0d\x48\x10\x6e\x9b\xbb\x35\x16\x6f\x2f\x82\x43\xf9\xde\x4e\x41\x41\xb8\xf8\x7b\xeb\xa6\x05\xa9\xa3\x43\x6f\x57\x62\x41\xf1\xbc\xbd\xdb\x95\x58\x90\xdc\x5e\x7d\xbb\xb9\x0e\x64\x37\x6b\xde\x7a\x6b\x41\xe8\xc0\xbd\xf5\xd6\x82\x68\x76\x32\x2d\x56\x10\x46\x3d\xde\x5a\xac\x20\x75\xe6\xbc\xb7\xde\x5a\x10\xea\xe3\x5b\x8b\x15\x94\xdd\x13\xf5\xb0\x82\x3e\x6c\x48\x57\x5f\x41\x1e\x8c\x6b\xb7\x1e\x56\x50\x92\x9f\x9b\x1e\x56\x90\x3d\x51\xe5\x76\xfa\x0c\x7a\x63\xf6\x74\x6b\x8b\xde\x7b\xfa\xfc\xb7\x1c\x8e\x7d\x6b\xab\x82\xdc\xed\x46\xda\xaa\xa0\x4c\xc7\x04\x0d\xd3\x7b\x47\xd0\x0e\xd3\xec\x21\x4c\xa9\x1b\xbe\x80\x5b\x3f\x2a\x88\x56\xcd\x4c\x81\x72\x50\x95\x07\xed\xdd\x1a\xab\x20\x7b\xb2\xf8\x6d\x64\x2c\x08\x6e\x57\xa8\xb7\xab\xbf\x20\x1a\x33\xf1\x5b\x33\xf4\xde\x66\xa8\x72\xd7\x8a\x03\xd1\x18\xf0\x6f\x37\xcb\x81\xb4\x07\x1d\x0f\x89\x02\xd1\x98\x62\xdf\xc6\xbc\x82\x68\x0c\xac\xb7\x1b\xe3\x6e\xaf\x01\xc9\x26\x59\x30\x4f\x6c\x62\xdc\xbe\xf5\x61\x82\xdc\x19\xa4\x6f\xd7\x70\x41\xd2\x61\x76\xbb\x84\x0b\xa2\x31\x8f\xbd\x9d\xd4\x83\xd2\xfd\x45\x43\x59\x41\xf6\xc0\xb6\x5b\x73\xe8\xd6\x1c\xb2\xa8\x1a\x3a\x20\x9a\xd9\x7b\x14\x25\x88\xc6\x94\xef\xd6\xf6\x01\xa9\xee\x17\xfd\x32\xb6\x8b\x94\xa2\xea\x22\x05\xd1\x98\xec\xde\x3a\x11\x40\xb4\xe6\x53\x36\x24\x1e\x03\xcf\x22\xb8\xb5\x6a\x40\x34\x66\x7c\xb7\x26\xcc\xad\x09\xe3\x17\xab\x7b\x00\xa4\x1d\x9a\x74\x6b\x9d\xdc\xdb\xf9\x89\x8d\x74\xeb\xd6\x04\xd1\xf0\x8d\xdd\x4e\xfd\x41\xf1\x30\xd5\x5b\xfb\x01\x24\x4f\xfa\xb8\x35\x03\x6e\x03\x7e\x92\x8d\xa4\xd2\x07\xc9\x3d\x55\xb7\x4a\x1f\x44\x53\x3d\xe9\xc2\x04\xd1\xec\xc2\x46\x0a\x81\x68\x76\x7e\x97\x40\x41\xd9\x03\x80\x4a\x1f\x94\x3d\x00\x18\x4e\x74\x7b\xe2\xa3\xd1\x74\xb7\x5a\x1f\x0c\x57\xa5\x6f\xb5\x3e\x28\xde\x31\x70\xab\xe2\x41\x34\x3b\xbf\xee\x50\x90\xdd\x80\x74\x1b\xb7\x0a\xa2\x31\xfa\x3e\xea\xe0\xc7\xb3\x16\x93\x49\x97\x49\xb4\x25\xf5\x7e\x54\xa5\x20\x1b\xf4\xf2\xa8\x37\x41\x70\xbd\x5f\x7d\x54\x92\x20\xda\xf0\xa9\x6a\x12\xcd\x4b\xbb\x3d\xaa\xcd\x67\x2f\x6e\x56\x92\x2c\x04\x87\x28\x7a\x6e\xfe\xa3\xcb\x14\x84\x87\x3c\x3f\x2a\x57\x10\x1e\xd2\xfe\xa8\x5b\x41\x70\xe9\x4e\x7d\xf4\xa2\x82\x70\x2d\xe0\xd1\x63\x0a\xc2\x48\xc9\x47\xdd\xfa\xa8\x5b\xf1\x37\x3d\xea\xd1\x67\xaf\x77\xee\xc7\x2c\x6b\x36\x98\xcb\xdc\x5c\xf0\x04\xc3\xc5\xfe\x47\x2f\xea\xa3\x17\x15\x15\xff\x18\xc3\x09\x86\xcb\xc1\x8f\x9e\x0c\x90\x76\xc8\xe0\xa3\x2a\x02\x69\xc7\x07\x3e\x2a\x9e\xc7\xcd\x6a\x86\xeb\x3d\x6a\x1e\x10\x1e\x87\xf3\x18\xec\x09\xc2\x81\xfa\x51\xf3\x3c\x6a\x1e\x3c\x53\x8f\x6a\x06\x14\xee\xb1\xaf\x8f\x91\x42\x20\x3c\x75\xf9\x51\xcd\x3c\x2e\x0a\x86\x4f\x99\x3d\x5b\xda\x3c\xdd\xf0\x71\xb8\x06\xd9\xb9\xff\xe3\x68\xfd\x38\x5a\x4f\x93\x1e\x93\x58\xdb\xc3\x92\x79\x1c\xad\x41\x3e\xac\xb8\x7e\x84\x47\x3f\x02\xbd\xf3\x71\xb4\x7e\x1c\xad\xf1\x7b\x3d\x4e\xf3\x41\xf8\xa5\x3e\x2e\x5e\x81\x30\xe0\xe6\x71\x4a\x0f\xc2\x0d\x54\x8f\x13\x73\x50\xbc\x3a\xe3\x71\x48\x7f\x1c\xd2\xf1\x3a\x3e\x0e\xe9\x20\x3c\x18\xe8\xd1\x07\x0b\xd2\x8e\xbb\x7c\x1c\xd3\x41\xda\x81\x97\x8f\x93\x6e\x90\x76\x98\xe5\xe3\xe4\x19\x84\xb6\xf1\x63\xf8\x27\x48\x3b\x80\xf2\x71\xf6\x0c\xc2\xa9\xf2\xe3\x18\x0e\x42\x53\xf2\x71\x12\x0c\xc2\x63\xb7\x1e\x17\xb0\x40\xaa\x1e\x83\xf8\x38\x62\x83\xe8\xc7\xdf\xa0\x9a\x1f\x07\xf4\xe7\x22\x88\x37\xcc\xd8\x1e\x47\x98\xce\x81\x1b\xe9\x71\xf4\x06\xd1\xf1\x9e\x3d\xba\x80\x41\x78\x23\xc2\xe3\xd4\x12\x44\xc7\xc4\x7e\x9c\x5a\x82\xc4\x15\x7f\xf5\x71\x1f\x30\x88\x8e\x69\xf8\x38\xdb\x04\xc3\xd5\xd2\xc7\xf1\x1c\x44\xb7\x10\xce\x36\x41\x74\x56\x74\x1e\xfd\xbd\x20\x3a\xbe\xac\xc7\xd9\x26\x48\x3b\x22\xf5\x71\xba\x09\xc2\x83\x00\x1f\xa7\x9b\x20\x6f\x81\x3a\xdd\x04\xd9\x0d\x5f\x8f\xea\xe2\xd9\x9e\x62\xbf\x21\xf5\x05\xc8\x6e\xb6\x78\x9c\x6f\x82\xe4\x1d\x82\xf5\xd1\x7b\x0c\x72\xf7\xb3\x75\xc2\x09\xd2\xb4\xcf\xa9\x69\x40\x3e\xfc\xe0\x9d\x70\x82\xc4\x65\xce\xf5\x51\xf7\x80\xa4\x22\x7b\x9c\x5d\x82\xe8\x7e\x7d\x4e\x25\x41\x3e\xfc\x45\xa3\x68\x40\x9a\xcc\xb3\x1f\xa3\x68\x40\xf4\x9d\x64\x51\xb9\x04\xaa\x5b\x7a\x75\x0f\x28\x9e\xd2\xf4\xa8\x7a\x40\x18\x56\xfa\x18\x7e\x03\xd2\x54\x37\x38\xe1\x04\x69\x47\xec\x3e\xea\x1e\x90\x8c\xb1\x7b\xd4\x3d\x20\xeb\xbd\x7c\x9c\x84\x82\xe4\xc9\xab\x8f\x93\x50\x90\x0a\x37\xfb\x56\xef\x43\x17\xeb\x07\x3a\x69\xd9\x34\x8e\x8b\xa1\x7b\x7a\x21\xba\x28\xc6\xfc\xbc\xce\x39\x41\x71\x47\x8f\x77\x98\x8b\xe8\xd9\x17\x6f\x93\xe8\xb1\x8c\xfb\x5e\x3f\x2e\xa2\xe3\x4a\x7c\xdd\x21\x01\xd2\x0e\x82\xf5\x4a\xf2\xfa\xee\xfd\x10\x0c\x59\x5e\x40\x2e\x8a\x31\x9d\xde\x36\x2e\xd2\x0e\x96\xf5\xba\x71\x11\x1d\x2b\xfe\x55\x99\x81\x30\x0c\xe3\x55\x99\x81\xf0\x04\xeb\xd7\xf8\x59\x50\x0e\xba\xd4\xab\x8f\x1f\x64\x57\x07\xbc\x47\x5c\x64\xe7\xbe\x5e\x19\x2e\xb2\xb6\xdd\x6b\x70\xcd\xeb\x05\x49\xc6\xe7\x7a\x8d\xb8\xc8\x9e\x3a\xfb\x3a\x29\xf4\x66\x71\xd7\x58\x5e\xf7\x3b\x80\x72\x1c\x26\x59\x71\x2e\x95\xf0\x9c\x6e\x6f\x0c\x17\xd9\x58\xbf\xd7\xd9\x1e\x28\x9a\x0d\x5e\xfc\x2d\xc2\x79\x9c\x97\x7c\x8b\xe8\x4c\xb4\xbc\xe4\x5b\x44\xcf\xbe\x68\xbd\x83\xbb\x02\x2c\xaa\x4b\x89\x20\x3c\x95\xf2\x55\x4f\x82\xb2\x5b\x5c\x3d\x09\xc2\x48\xf4\xd7\xa5\x01\x10\x1d\x3d\xe9\x7d\xde\xa2\xb8\xe7\xc2\xcb\xbb\x45\x18\x2f\xe0\xe5\xdd\x22\xed\x80\x66\x2f\xdc\x16\xd1\xed\x8a\xce\xb4\x40\x71\x37\xbb\x77\x70\x8b\xe8\x38\xbb\x5e\x67\x5a\xa0\x54\xfb\x98\x33\x29\x10\x9e\x68\xf0\xea\xbc\x7f\x3d\x5c\xce\x40\xd7\xd7\xd8\x57\x90\xb6\xa8\x55\xb1\xde\xde\xed\x3a\xd2\x6b\xac\x09\x28\x9e\xf8\xf8\xea\xbd\x7f\xd1\xba\xbb\x96\x7a\xef\x41\xd2\xa1\xfc\x3a\x6d\x02\xc9\x70\xcf\x57\x87\x3e\x08\x37\x8d\xbf\x6e\x53\x07\x69\x1e\x3e\xa5\xf4\x3b\xb1\x66\x18\x50\xaf\xa1\x2c\xa0\x8c\xea\x8b\x36\x88\xb7\x8a\xef\xa7\x94\x21\x5b\x3a\x3a\x66\xd6\x6b\xc0\x0b\x28\x07\x0a\xe8\xd5\xe7\x0f\xd2\xc4\x72\x7c\x35\x10\x40\x76\x31\xf9\xd5\x40\x00\xc5\x60\x46\xaf\x0b\x17\xd9\xb5\xe4\x57\x9f\x3c\xc8\x46\xa1\x7b\x77\xb7\x28\xdc\xc0\x5d\xbd\xbb\x5b\x14\xe7\xa7\xaf\x6e\x7a\x50\x92\xa3\x85\xe6\xc1\xab\x79\x70\x1c\x7f\xc3\xf2\xf2\xab\xcf\xfe\xf5\xcc\xba\xe1\xcf\x2b\xbc\xa9\x9b\x96\x24\x0d\x0a\xaf\xf6\xf6\x92\x0e\xaf\xe3\x16\xc5\x8b\xd5\x5e\x17\x7f\x41\x3e\xec\x47\xce\x2f\xbd\xa1\x7b\x47\x5a\xbf\x6e\x28\x01\x69\x87\x96\x7b\x6d\xb7\x48\xd3\x8e\xe4\x01\x2a\xfb\xda\x6e\x06\xfd\x57\xbf\x39\x48\x7a\x65\xbd\x90\x5b\x64\x1d\xee\xaf\xc6\x09\x48\xd3\x91\x55\xeb\x03\x94\x31\x7c\xd1\xc6\xf7\x4c\x13\xfd\xcc\x5e\xbe\x5d\xbd\x69\xbb\xdb\x62\x7a\xc9\x41\xf1\xb4\xb1\xd7\x4d\x26\x20\xb8\x17\xb1\xbe\x5a\x24\x20\x0e\xbf\x50\x43\x6e\x40\xb8\x5b\xcf\x9b\xb6\x45\x0a\x0f\xda\xf5\x12\x6d\x11\xee\x3d\xf6\x12\x6d\x11\x1e\x81\xf7\x6a\xa5\xbc\xce\x3a\x8d\xec\x7f\x35\x53\x40\xd2\xe2\xf5\x96\x6c\x11\x06\xe8\xbf\x46\xf1\xbe\x9a\x24\x16\x43\x93\x04\x44\xc7\x5d\xe5\x6d\xd7\xa2\xec\x56\xd2\x24\x01\xd9\xe0\x05\x2f\xbb\x16\xd1\x99\x3b\xbe\x5a\x24\x20\x3a\x9e\x22\xef\xbf\x16\xa1\x4b\xe1\xd5\xae\x78\x99\xc0\x7a\x86\xd7\xab\x8b\x1a\x44\xb7\x43\x3b\x35\x05\xe1\x79\x5a\xaf\x76\x05\x08\xef\xcd\x7b\x35\x22\x40\x78\x04\xd3\xab\x11\x01\xc2\x08\x16\xef\xbf\x16\xc9\xe5\x23\xef\xbf\x16\xe5\x70\x7c\xd1\x88\x00\xa1\x41\xf2\x3a\xa5\x05\x69\x74\x93\x6c\xb6\xcf\x0b\xd2\x2d\x84\xa5\xff\xd8\xf5\x63\xdf\xd1\xac\x00\xd1\xf1\x58\x78\x49\xb6\x28\xee\x00\xf1\x42\x6c\x51\x5c\x28\xf1\x42\x6c\x11\x7a\x52\x3e\x7d\xdb\x20\x0e\x7c\x79\x9f\x33\x66\x90\xf6\x06\x02\xef\xcd\x16\xe1\x42\x8c\xf7\x66\x8b\xe2\xc2\xbe\xf7\x66\x8b\xf0\x96\xae\x4f\xdb\x03\xc4\x31\x7d\xea\x31\x89\x4b\xba\xe8\x01\xde\xa4\x2d\xd2\xde\x52\xe0\x55\xda\x22\x7b\xbc\xba\x57\x69\x8b\xe2\x36\x23\xaf\xd2\x16\xe1\xf1\xea\x9f\xde\x6d\x90\x74\x45\x7c\xda\x31\xa0\x1c\x87\x79\x55\x93\x08\xe9\xc2\xe6\xfd\xb4\x6c\x40\xb8\xc1\xf8\x73\xe2\x0e\x8a\xb1\x48\x9f\xc6\x0e\x48\x93\xf6\xfe\xb4\x62\x40\x9e\xd5\xec\xad\x77\x7a\xac\x91\x6f\x5a\x23\x76\x7c\x1e\x36\x92\xbb\x80\xc0\x30\x58\xee\x73\xe6\x0e\xd2\xde\xc5\xf0\x69\x00\x81\xed\x75\xff\x9c\xb9\x83\x34\xd1\x74\x9f\x13\x77\x90\x26\x3a\xec\xd3\x51\x0e\xd2\xde\xa0\xf0\x39\x99\x07\x61\xf8\xe2\xa7\xe9\x04\xc2\xb3\x37\xbc\x43\x5c\x84\x0e\xce\x4f\x3f\xf9\xa7\x9f\x1c\xfb\xcd\x3b\xc4\xc5\x30\x3e\xef\x33\x96\x0a\x14\x6e\xa0\xaf\x5e\x2b\x2e\xd2\x8e\xdc\xff\x0c\x55\x06\xc9\x49\xa2\x57\x8d\x8b\xf0\x34\x11\xef\x15\x17\x69\x1b\x37\x5e\x2c\x5e\xf7\xc5\xe2\x9a\x02\x5e\x2c\x2e\x8a\xae\x8d\x4f\x1f\x3b\xc8\x93\x11\xea\xd3\x10\x03\x69\x6f\xea\xf8\xf4\xa8\x83\x30\x9c\xff\xd3\xec\x02\xc3\xc3\x9f\x3e\xdd\xe7\x20\x5c\x16\xfc\xf4\x62\x80\xe4\x64\xf8\xd3\x12\x03\x61\x90\xb9\x77\x8d\x8b\x70\x01\xdd\x8b\xc5\x45\xda\x7b\x52\xbc\x59\x5c\x84\x47\x49\x7b\xb3\xb8\x28\xde\xff\xe7\x95\xe1\xd5\xfb\xc1\x3b\xda\xfa\xd3\x3a\xfb\xb6\x75\x86\x9d\xed\x9d\xe1\x22\xfa\xc8\xbf\xad\x9a\xbd\x2c\x5c\x44\x6f\x96\xd2\x2e\xc1\xf1\x3e\x1d\x17\xeb\xa7\x89\x07\xc2\x88\xae\x4f\x13\x0f\x24\x37\xf9\x7c\xda\x73\x20\xed\x0d\x24\x9f\xae\xf1\xcf\x70\xe5\x39\xcd\xcd\xca\x10\x9f\xa6\x53\xfa\x33\x84\x19\x0c\x63\xee\xbc\x79\x5c\xe4\xe4\x97\x6b\x98\x1a\x28\xce\x96\x3e\x0d\x46\x50\xb8\xb7\xbe\x7e\x3a\x6e\x40\xd9\x1d\x5f\xc7\x0d\x08\xa3\x14\xbd\xb2\x5c\x64\x63\xd9\x3e\xdd\xec\x20\x79\xd7\x88\xb7\x98\x8b\xf0\x46\xa6\xcf\x13\xf5\x40\x78\x60\xe5\xa7\x09\x09\xca\x60\xb6\xe7\xf5\xe4\xa2\xe8\x24\xf3\x2a\x72\x11\x4e\xa2\x3f\xc3\x3f\x40\xf2\x94\x87\x4f\x4b\x10\x64\xd7\x17\x3f\x5d\x45\x9f\xae\x22\x0c\x6c\xef\x30\x17\xe1\xe9\x7c\x9f\xc6\x21\x48\xc3\xc1\xc3\x18\x91\xcf\x18\x11\x07\x52\xed\xc5\x4f\x87\x12\x4e\x1b\x6f\x3a\x17\xd1\xa7\x85\xb0\x42\x9e\x58\xec\xee\x20\x6f\x3f\x17\xd1\x1d\xcf\x75\x45\x81\x32\x6d\x35\x5d\x51\x20\x4d\x0c\x86\x4f\x57\x14\xc8\x2e\x99\x7b\xfb\xb9\x88\x8e\x87\xc9\xdb\xcf\x45\xe1\x5e\xf3\xfa\x19\x93\x0d\xb2\x47\xc9\x79\xd5\xb9\x28\x1e\x9c\xea\x4d\xe7\x22\x3c\x60\xff\xd3\x44\x05\xd1\xa7\xbf\x68\xb9\xdc\xc0\xec\x16\xa5\xcf\xd8\x42\x10\x4e\xc8\xbd\xea\x5c\x84\xc7\x85\x7a\xd5\xb9\x48\x1e\xd5\xf0\x19\xfe\x01\xd2\xde\xdc\xf4\x69\x97\x7e\x06\x25\xba\xbb\xe9\xd3\x30\x05\xd1\x51\xea\x9f\x0b\x1f\xa0\x18\xa9\xfd\x69\xaa\x82\xec\x9e\x43\x6f\x46\x17\xd1\x99\xdf\x78\x33\xba\x28\x06\xbb\x79\x33\xba\x48\x7b\x77\xd3\xe7\x62\x08\x28\xc6\x00\x7d\xc6\x86\x80\x72\xd8\xc9\xb4\x71\x41\x2a\x9e\x25\xf8\x69\xd1\x82\x61\xbc\xc8\xa7\x45\xfb\x5d\x7b\x88\xe1\x47\x8d\x0e\x01\x25\xa9\xdd\x74\xa8\x81\x18\xda\x03\x3a\xd4\x40\x32\x4e\xce\x4b\xd5\x45\x76\x47\x85\x97\xaa\x8b\xb4\x77\x6c\x7d\xae\x9a\x80\xa2\x5b\xda\x8b\xd6\x45\xda\x7b\xbd\x3e\x7d\x71\x9f\xbe\x38\x3f\x00\x7d\x71\x9f\xf7\xa1\xda\xa9\xb4\x55\x41\x0c\x55\xa5\x21\x94\x5e\x84\xee\x61\x1c\x5e\x84\x5e\x3f\xee\xa1\xd0\xb9\xff\x19\x31\x0e\x52\xd9\x4f\x99\x3d\x16\xad\x91\x6c\x9f\x4e\x36\x30\x5c\xf8\xf7\xd6\x73\x91\x9d\xb5\x79\xeb\xb9\x48\x7b\x93\x98\x77\x9c\x8b\xf0\xa8\xf5\xcf\x05\x98\xef\xdd\xb5\x34\xcd\x0f\xec\xd5\x2a\x44\xfe\xae\xc0\x7c\xee\xd5\x76\xe6\xf4\x69\xd4\x82\x18\x8a\x56\xa3\x16\x84\x1b\x21\xbc\x0b\x5d\x14\xef\x31\xf0\xe2\x73\x11\x43\x4d\xa6\x21\x0a\x62\xec\xa7\x14\xc6\xe7\xb7\xe3\x17\xac\xcf\xeb\xf3\x9c\x10\x87\x4f\x2d\x51\x10\x5c\x3e\xd5\x0e\xac\x3b\x11\x6c\xd2\x69\x5e\x42\x2e\x82\x35\xfd\xe6\x25\xe4\x22\xc6\x12\x76\xf3\xc2\xf1\xf6\xf3\xc2\x71\xf2\xc2\x6c\x13\x31\xd6\xb0\xde\xbc\x70\x5c\x14\xca\xd5\x0e\xcc\x36\xb1\xca\xda\x48\x9b\xa6\x4d\xde\x4c\x24\x9d\x26\x39\x3d\x2c\xe6\x76\x99\x46\xcd\x93\x6f\xde\x26\x61\xc3\x26\x7f\xe0\x31\x89\x55\xf1\x65\xaf\xb6\x23\x5b\x7e\x62\xd4\x39\x74\xa4\x79\x2f\xb9\x08\x6e\x00\x6d\x5e\x2f\x2e\x52\xfb\x1b\xb6\x4b\x35\x6f\x1f\x17\x31\x92\x99\x58\x3d\xb6\xa4\x11\x57\xd2\xbc\x7c\x5c\x24\x36\xc6\x34\x2f\x1f\x17\x31\x76\x19\xad\x30\xdb\xc9\x39\xcc\xaa\x79\xf9\xb8\x08\xee\x09\x69\x47\xb6\x71\x08\x90\xc7\x59\xdf\x8e\x62\x4d\xb8\x65\x62\x28\x02\x3c\x64\x22\xb9\xbb\xb0\x1d\xc5\xfc\xb9\x64\x75\x64\x0a\x16\xbe\x89\x7d\xc5\x55\x56\xcd\x5b\xc5\x45\x8c\x62\x92\x99\xe1\x0f\x63\xc7\x5e\xf3\x56\x71\x11\x5c\x4d\xd2\x8e\x30\xfb\x30\x7b\x2a\x19\x16\x9f\x75\x23\x6e\xbf\x69\x47\xd8\x36\xdc\xd2\x30\x32\x02\xab\xb6\x0d\x26\x17\xae\xf1\x76\x54\x0b\x51\x39\xa4\x42\x81\x55\xdb\xa6\x12\x2b\x67\xa7\xa9\xca\x10\x53\x6a\xec\x24\x0b\x51\x2d\x04\xbf\x58\xfd\x45\x77\x7b\x55\x3a\x78\x55\x86\xd5\x0e\xce\x8b\xcd\x42\x34\x3b\x38\xc2\x6f\x0a\xa7\xed\x41\x81\xb2\x36\x0b\x86\x49\xc5\xa9\x61\xed\x68\x4a\xa7\x29\x1d\xdf\x0c\x93\x18\x3a\xac\x77\xb3\xf8\x0b\x79\x56\xf3\xb2\x57\xb0\x01\x8c\xc3\x74\xdb\xd1\xac\x91\x9b\xcf\xad\x51\xb3\x46\xcd\x1a\x51\xfc\xa6\x58\x39\xd3\x6b\xf8\x4d\x35\xbf\x02\x56\xc2\x46\xf1\x29\xeb\xcd\x56\x00\x16\x4c\xda\xd1\xac\x37\x2b\x61\x23\xf3\x62\xb7\xde\x9e\x67\xd2\xf9\xc5\x6e\x51\x3b\x27\x35\xf8\x15\x77\xfb\x34\x06\xd5\xcf\x17\xcd\xcb\x50\x59\x36\x93\xb6\x63\x28\x31\xf6\x84\x0d\xbf\xd8\xa1\x74\xb0\x82\xc6\x7e\x4a\xe9\xb0\x86\x46\x48\x55\xf3\x36\x73\x31\x08\x83\x6a\xc7\x50\x14\x83\x30\xfd\x41\xa7\x1b\x8a\xc2\x33\x8a\x2b\x65\x1d\x8a\x62\x20\x8a\xa0\x1f\x0e\x45\x31\x08\x26\x1f\x88\x62\x28\x0a\x36\x93\x0d\x3f\x86\x69\x43\x72\xd2\x30\xb7\x75\x35\x6f\x41\x17\x89\x53\xe2\x9a\xb7\xa0\xb7\x63\x52\xef\x20\xaf\x69\x21\xd8\x13\x31\xfc\xbc\xa7\x85\x98\x16\x82\x4f\x66\x3a\xaa\xba\x27\xa2\xee\xc7\x94\x98\x37\x6c\x05\xd2\x39\x95\xfe\x42\x19\x0d\xe9\x9c\x0a\x8c\xc3\x58\xaa\x5f\xe9\x69\xc1\xb6\x2d\xa3\xc4\x4e\x4b\x76\xe2\xd8\xe8\x48\xec\xb4\x91\x4e\x0b\x6b\xfe\x0a\x11\x53\xa6\x38\x6c\x9f\x96\x1f\xaf\x5b\xb2\x8d\x2e\x4b\x71\x39\xe7\xb1\x02\x97\xf2\x59\x28\x78\x95\x9a\x17\xaf\x8b\x18\x76\xa8\xcb\x92\x71\x42\x19\xbb\xe1\x9a\x17\xaf\x8b\xe0\xfe\x85\x76\x5c\x96\xd5\x5b\x47\xed\x3d\x97\x7d\x9f\x98\xd6\x51\xa9\xf8\x65\xbb\x5d\xec\x99\xeb\x54\xfc\xb2\xdd\x58\xf3\x1b\x76\x8b\xdb\xec\x6f\x8e\x54\x50\x37\xdd\x66\xcf\xd6\xb7\x61\xb7\xb8\x15\x05\x77\x6c\x65\x45\x71\xdb\x48\xdb\xe9\x66\x5b\x3e\xf6\x57\x36\xd8\x73\xa6\x47\x3b\x1e\x2b\xc9\xa2\x1f\xc7\x88\x34\xef\x62\x17\x23\x54\x74\x8f\xc5\x7f\x2c\xbe\x49\xca\x95\xe3\xc8\x8e\x46\xf1\x1f\x7f\xf2\xd9\x3f\x49\xf9\x1f\x6b\xb9\x90\x9b\xb5\x7c\xec\x2b\xdb\x44\xb1\x14\x76\x15\x8f\x8e\xf1\xab\x7c\x6d\xa4\x57\x03\x82\x17\x5f\x8b\x8f\x1f\x6e\x04\x63\xca\x6b\xf1\xf7\x2a\x20\xe2\x79\x95\xc5\x4b\xb7\x70\x14\x7b\x2d\xfe\xeb\x45\xfe\x14\xff\x33\x7b\xef\x49\x70\x94\xfc\xcc\x5e\xfb\xa4\x93\xd7\x67\xaf\xf8\x88\x2b\xb0\xbf\x7e\xfe\xe2\xe7\x2f\x52\xae\xcf\x5e\x81\x1f\x8e\x6b\x8c\xdb\xf1\xd9\x46\x1c\xb7\x39\x1a\x62\xfd\x2c\x84\x2b\x77\xd5\x4f\xf0\xb3\xbf\x7e\x6c\x2a\x77\xf8\xfe\x94\x2b\xb1\x25\xa3\xfd\x2d\x3a\xf9\x53\xec\x9a\x47\xe8\x7a\x2f\x78\x17\x41\xc0\x69\xf3\x82\x77\x91\xd9\x2c\xd4\x12\x1e\x38\x11\x2c\x3e\xb5\xc4\x1a\x9e\x88\xd1\x7c\x6a\x98\x84\x0f\x99\x21\xc7\x2b\xdf\x45\xf1\xcb\x4b\xf8\xd1\x5a\xd2\xac\xea\xbe\xf8\x99\x64\xa3\xf2\x54\xb2\x10\x09\x0f\x93\xd9\x6b\x56\xa5\xb4\x3f\x76\x1f\xab\xa6\xf1\x4d\x21\x76\xef\x72\x17\x09\x77\x58\xf3\x2e\x77\x91\x52\x31\xe9\x36\x49\xb3\xb0\x9a\x66\x31\xb8\x48\x01\x9f\x44\x4b\x5a\x47\x60\xe0\xe3\x6d\xde\xee\x2e\x82\x79\x69\x4b\x1a\x36\x20\x06\x9d\x32\x69\xd8\x80\x18\x8c\x42\x29\xfb\x93\x19\x4d\x44\x0f\x4c\xc5\xec\x0b\xd9\xb7\x42\x52\x98\x44\x17\xa1\xd7\x78\x2d\xbc\x18\x6c\x1d\x69\x5e\xf8\x2e\x62\x74\xca\x55\x94\x2b\x47\xdb\x8c\xe1\x53\xaf\x49\x8a\x9a\xc6\x2d\xd6\xb1\xa0\xe0\xe9\xe0\x49\xbb\x26\x69\xd7\x0c\x0a\x11\x16\x22\x2c\x04\x2f\x86\x85\x08\xeb\xe8\x53\xd6\x91\xdb\xdd\xb3\x22\xd4\xd4\x49\x9a\x3a\xb6\xa4\xa6\x8e\x57\xb9\xfb\xb1\x78\x95\xbb\x48\x73\x58\x08\x4b\xaf\xf5\xa3\xa0\xc3\xd2\x07\x87\x50\x31\xc6\xa5\x6a\x3f\x24\xec\x92\xeb\xea\x5b\xd2\xfa\x01\x45\xa3\x32\x55\xcb\xa5\xa9\x33\x7c\xca\xec\x71\x0b\xb1\xe1\xa4\x79\x6f\xbb\x08\x0e\xad\x6e\x5e\xdb\x2e\x4a\xf7\x17\xb5\x61\x40\xc2\x2b\xd4\xbc\xb6\x5d\xc4\x98\x26\x29\x1c\xae\x6d\xd7\xd8\xf5\xd6\x76\x91\xd8\xcf\xdf\xbc\xa2\x5d\xc4\x98\x48\xa2\x59\x47\xb6\xa2\x4f\x3b\x93\xa6\x08\x88\x31\x69\x47\x4d\x11\x90\x1c\x95\xbc\xa2\x5d\x04\x57\x73\xb5\xd4\x2d\x2a\xee\x9e\x31\x28\x7d\xb7\x1d\xb9\xd8\x73\x4c\x84\xa3\x0d\x03\x82\xfb\x96\x9a\x17\xb9\x8b\xa4\x2d\xed\x4d\xed\x22\x58\x1e\x6c\x5e\xc1\x2e\x92\xe7\x18\xb4\xd4\x2d\x7e\xa7\xf8\x4c\x4e\xbc\x83\x5d\x94\x3d\x2e\x0c\x33\xc3\x6d\x83\xcf\xb7\x79\xbb\xba\x88\x89\xad\xee\x55\xea\x22\x79\x9a\x42\x4b\xc3\xfc\x07\xd1\xb2\xcc\x6a\xbc\x4b\x5d\xc4\x81\x15\xee\x5d\xea\x22\xe6\xe1\x53\x56\x9c\x70\xcf\x79\xf8\x94\xb5\xe4\x86\x2a\x16\x41\x5b\x9a\xb6\xd1\x64\x3f\x84\x83\xdf\x74\xc0\xc2\xfb\xc2\xe5\x4d\x2d\x69\xd7\x80\x98\x87\x4f\xd9\x46\x53\x13\x0f\xf5\xee\x95\xe8\xa2\x54\xbf\x19\xed\x0e\x50\x98\xae\x37\xef\x3f\x17\xc9\xb3\x19\x9a\x17\xa0\x8b\xe4\xac\x92\xcb\xd0\x37\x62\x62\x51\x78\x27\xba\x88\x79\x98\x99\xe2\x21\x16\x89\x2b\xb2\x5b\xd2\x3a\x01\x69\x7f\xa6\x1a\x19\xc9\x8d\x33\x4c\x2c\xd2\x65\x95\x08\x2c\x9a\xca\xf5\x32\x2f\xee\xf6\xc4\x69\xd6\xd2\x6d\x5e\xb7\x2e\x7d\xbf\x87\xdb\x4e\xc6\x9e\x18\x2e\xdb\x68\x5e\x50\x2e\x82\x83\x18\x5a\xd2\xca\x00\xf9\xb0\x14\xb7\x15\x67\x4d\x90\x0b\x94\x9a\xd7\x98\x8b\xd8\xbd\xe7\xb6\x60\xb7\x05\x43\x14\x9a\x27\x20\x08\x50\x69\xde\x6c\x2e\x62\x32\x41\xf5\x66\x73\x11\xd3\x2f\xf0\xb1\xa7\xec\x1b\x40\xf9\x45\xad\x07\x90\x3c\xcd\xa2\x25\x0d\x03\x10\x13\xb3\xd2\xdb\xc8\x45\x4c\x1b\x44\xfd\x0e\xca\x61\x53\xaa\xcc\x41\x4c\x25\xa6\x32\x07\x31\xf3\x6f\xbb\xb0\x5b\xfa\x94\x14\xea\x7f\xee\x7c\x95\x14\xea\x7f\x8f\xda\xaa\x7a\x10\xd3\x51\xe8\x53\x06\x1f\x32\x60\x52\xe9\x2d\xe1\x22\xa6\x43\xce\x67\xab\xb2\xe6\xc6\x09\xdb\x2d\x7d\xca\x00\x4f\xc7\xc4\xe6\xf4\xe2\x70\x11\x9c\xf9\xd8\xbc\xd8\xbb\x65\x56\xce\x26\x2a\xd3\x8b\xbd\x45\x69\xd8\xda\x99\x65\x32\x11\x93\x8f\x31\xab\xde\x41\x10\xd8\xd8\xbc\xeb\x5b\x64\xee\x96\x68\x59\xaf\x09\xc8\x3b\x2f\x35\xbe\xd7\x7f\x73\x87\x43\xcb\x6a\xfc\x6c\x6c\x0f\x5f\x9e\x37\x82\x8b\xc1\xae\xe8\xe6\x85\xe0\x22\x66\xf1\xa9\x6a\x52\xb5\x9d\xfd\xc9\x66\x1a\x27\x13\x54\xdf\xb4\x46\x6c\x01\x21\xee\xb9\x65\x4d\x05\x10\xb3\xf8\x94\x35\x5a\x68\x9d\x3e\x93\x93\x35\x4a\x88\xb5\x98\xf4\x99\xc4\xe1\xad\x18\x27\x59\x4b\x01\xc4\x2c\x26\x59\x88\xec\xde\x14\x93\xa6\x49\xba\xce\x30\x99\xbd\x4b\x5c\x04\xd7\x8b\x37\xef\x12\x17\xc1\x25\x52\x2d\xeb\xf0\x00\xa9\xd1\x4d\xbd\x5e\x5c\x04\xc1\xfc\x2d\x17\x85\xc8\x7d\x10\x5c\x2f\xd9\xb2\x36\x06\xc8\x9a\x60\xde\x38\x2e\x52\xe9\x4a\xac\xd8\x07\xb8\x98\xc9\x2f\xc3\xab\xc1\x45\x19\x3b\xc9\x82\x71\xbf\x52\xe1\xc2\x86\x96\xb5\x32\x40\x69\x26\x85\x25\x0b\x1c\xe9\x16\x56\x1f\x0b\x08\x6e\x66\x6a\xde\x33\x2e\x92\x07\xbd\xb4\xac\x47\x25\x1b\x8b\xcb\xb1\x2b\xcd\x9b\xc6\x45\x26\x42\xb4\x65\xad\x11\xd0\xb6\xcc\x42\xd1\x72\x64\x0f\x21\x95\xcd\x8b\xc6\x45\xe6\x56\xbf\x96\xb5\x46\xb2\xa7\xb3\x72\x60\x4b\xf3\xf2\x71\x91\xd3\x61\x31\xac\x27\x4b\x62\x9c\xbf\xd0\x72\xb5\x02\x55\x3f\x08\x96\x59\xd6\x44\xc9\xde\x99\x69\x37\xd3\x44\x01\x85\x93\x27\x9a\x77\x94\x8b\xf5\x26\x75\xd7\x6c\xc9\xee\x5c\xc6\xb8\xf1\xde\x72\x11\x4e\x8c\xbd\xa4\x5c\x04\x6b\x14\x2d\xeb\xa1\x01\xc1\x92\x61\xf3\x8e\x72\x11\xd3\x9a\x6b\x90\x80\x98\xcc\x89\xb2\xd6\x47\xde\x07\xe1\x90\x97\x76\x05\x48\xc9\x5f\xd4\x3c\x00\x45\xa7\x64\xee\x0a\xb6\x2b\x58\x9f\x52\x8a\xdc\x7b\x31\x31\x06\xb3\xd6\x01\x88\x89\x92\xf4\xc2\x70\x91\x35\xeb\xf3\xb0\xf4\x2c\x23\x35\xbb\x94\x36\x04\x08\x96\x66\x9a\xd7\x8a\x8b\x98\x7e\x24\x7a\x4b\xb2\x01\x45\x0a\x5f\x6f\x09\x48\xee\xbc\x6c\xde\x2b\x2e\x82\xc3\x89\x5b\xd6\xfa\x00\xc5\xc9\x94\xf7\x8a\x8b\xe2\x38\xec\xbd\xe2\x8d\x4b\xc4\x63\xa2\xa9\xbd\x43\x5c\x84\xbe\xaa\x3c\xfd\x49\xb7\x07\x3b\x86\x68\x69\x64\x2d\x0d\x07\x8c\x69\x7f\x9d\x46\xdc\xf8\xa2\xed\x31\xd9\x10\xe8\x37\xa2\xbb\x04\x04\x47\xfb\x36\xef\x23\x17\x45\xd7\x67\xd6\x83\x02\xb2\x16\x9c\x37\x8d\xb7\x7d\xd3\x78\xe3\x17\xb5\x20\x40\x09\x3b\x85\x16\x04\xa8\x87\x83\xee\x65\xb5\x2f\xcf\xdb\xe4\x29\xdd\x14\xa0\x1c\x76\x8a\x4b\x11\x7a\x1c\x8f\xcd\x7d\x99\x3d\x1b\x4b\xa6\xc2\xd7\x4d\x01\x12\xd7\xcc\xb6\xac\x9b\x02\x64\x62\xa7\x5a\xd6\xa8\x00\x31\x1d\x7b\x6e\xa5\xba\x57\x52\x9a\x8f\x59\x0a\xbc\x19\x5b\xff\x68\x67\x64\xed\x0c\xdb\x56\x3b\x03\xc4\x54\xf8\xda\x19\x59\x3b\x83\xa9\xaa\x17\x86\x8b\x98\xfd\xb7\xf7\x2d\xb7\xac\x19\x92\x35\x43\xba\xbf\x6e\xed\xb4\x39\x98\x3b\x7b\xeb\xb8\xf0\x9a\xd5\x96\x6f\xfb\x37\xc1\x4a\xd3\xcf\x5a\x33\xe4\xaf\x17\x91\x93\xa4\xd4\xf1\xae\x4c\xbf\x82\x47\xb1\x10\xbf\xd4\x1c\x23\x74\xb8\x80\xac\x29\x9a\x1f\x25\xf5\xd8\xff\xa8\xdc\xa3\x08\x38\x55\x63\x3a\x38\xea\x83\xf1\xb6\xf2\x69\xcf\x7a\x14\x01\xd7\x6e\x12\xde\xd9\xbc\xad\x5c\xe4\xd8\x45\xb5\x8e\x8f\x75\xa4\x37\x3c\xd6\xf1\xa1\x8e\x7e\xfc\xfa\x5b\x40\x62\xb7\x4a\xcb\xfa\x5b\xb2\xab\x44\x0e\x37\xaf\x79\x71\x38\x50\xa8\xf4\x5f\xf3\x7a\xd9\x51\xa8\x6e\x7d\xed\xcb\x9c\x11\x3f\x77\x5e\x8a\x90\x53\x09\x09\x65\x6e\x59\x7f\x0b\x88\x69\x5e\x3a\x57\x40\x72\x7e\xed\x35\xe4\x22\xa6\x06\x84\xf6\x18\xc8\x49\xe1\x68\x70\xe5\x7d\x07\x25\xd5\xd6\x94\xca\x7b\x89\xc8\x86\xd4\x70\x02\xb9\x38\x6a\x68\x38\x65\x0d\x27\x7a\xa9\xf7\x90\x8b\x9c\x19\xa8\xbc\x87\x5c\x04\xa1\xe5\xcd\x1b\xc6\x45\x26\x66\xa7\x79\xc3\xb8\x08\x42\xcb\x5b\xd1\x55\x52\xdc\x62\xdb\x4c\x3a\x4d\x72\xa1\x87\xef\xba\x68\x72\x15\x4d\x2e\x2a\xee\x3d\xe4\x22\x79\xc4\x55\x2b\x5a\x53\xa0\x1c\x7c\x8c\x25\xf9\x9b\x3b\xdc\x99\xe6\xf5\xc6\x70\x91\xd8\x9f\xd4\x8a\x16\x10\x48\x91\x68\xa6\xa2\x71\x53\xbc\x62\x12\x75\x5b\xf4\x79\x80\xe0\xa4\x84\x56\xf4\x79\x80\x94\x58\x0d\x29\x2e\xd3\x80\x7c\xd0\x87\xbd\x0c\x5c\x64\x4d\x70\xef\xf4\x16\xc9\x33\xae\x9a\x97\x7a\x8b\xc2\xcd\x5c\xad\xe8\xe1\x00\x85\x03\x40\x9a\x97\x7a\x8b\x70\x80\xf1\x4e\x6f\x91\xbb\x49\x7a\x38\xca\xb6\x2a\xf8\x9e\xbd\x62\x5b\x64\x57\x3a\xbc\x3b\x5b\xe4\x64\x29\xb4\x03\xbc\x3a\x9b\x48\xc9\x56\xc2\xfc\xc3\xfe\x89\xc8\x5c\xa7\x01\xc1\xba\x69\x2b\xea\xfc\xa2\x5b\xa2\x98\xa4\xc4\x38\xa8\xef\xd8\x49\xfe\x22\xc7\x90\xb0\xbd\xb5\x15\xbd\x0b\x60\x95\xd5\x34\xdf\x5c\x28\x0d\xb5\x53\xd4\xe6\x20\x73\xf7\x7c\xf3\xba\x6b\x11\x53\x59\xeb\x71\x00\x31\xf7\x53\x4a\x6c\x21\x73\x68\x47\xf3\xd2\x6a\x91\x74\x5f\x79\x43\xb5\xf8\x7f\x18\x3b\x97\x2c\x6b\x59\x66\x0d\x4e\xe5\x0c\x41\x48\x32\xc1\xce\x3f\x17\x6f\x7b\xfe\x43\x38\xcb\x08\xbf\x76\xbd\xad\x58\xe5\xaa\xad\x88\x4a\x5e\x48\x78\x9a\x7b\x52\x55\xe8\x07\x80\xb1\xef\xfe\xd2\x86\x4d\xc4\x74\xf8\x70\x62\xfa\xdc\x90\x33\xe9\x7e\x25\xd3\x56\xbc\x08\x74\xe3\x4b\x89\x6a\xd1\xdc\x2d\xab\x42\x47\x00\x0c\x87\xad\xd0\xea\x83\x3e\xed\x58\xad\x3e\x68\xee\xe3\x55\x61\x82\x21\x54\x42\x49\xef\x60\xd9\x41\x6e\x1e\x32\x3c\x9b\x1d\xa4\x27\xb0\xfb\x4b\x1f\xc0\x62\xbb\x2c\x5b\x6b\xce\x01\x0c\x4d\x75\x2c\x1f\x39\x1a\x2a\x28\x59\x57\x98\x86\x00\xcd\x5d\xc7\x2a\x74\x18\xc2\x7d\xa2\xc2\x43\xf6\x99\xae\x00\x99\x2e\x65\xb1\x45\xfb\xee\x49\xbb\x0f\xda\xf0\xfb\xd5\xc8\xc7\x37\x4d\xe2\xf7\x65\xd6\x01\x0c\xaa\x91\x4a\xa9\x6c\x11\x3b\xde\x66\x1c\x7e\xf9\x07\xeb\x6d\x09\xa1\xe3\xb0\x61\x2f\xfa\xee\x87\xe9\x64\x0a\x18\x3b\x49\x2c\x35\xb6\x45\x2f\xdb\x6a\x02\x03\xb4\x7d\xf7\x87\x36\x9f\xf5\xb0\x6c\x80\x53\x6a\x6c\xd7\xa7\xb1\xfd\xfd\xd0\xb7\x40\x85\xad\xb4\x11\xde\xa4\x29\x8d\xef\x5c\xf6\x3e\xfb\x5e\x55\xfc\xad\xf6\x58\xca\x6d\x8b\x66\xfc\x11\xce\xb4\x84\x15\x22\x8e\xc1\xba\x30\x60\xb0\x2f\x5d\x29\xb7\x2d\xfa\xf4\x43\x36\xe3\x01\x72\xc3\xb5\x8a\xcb\xee\x7c\x91\x9b\x37\x67\xc2\x03\x74\x27\x09\x42\x7f\x05\xe4\xe6\x68\xa8\x6f\x02\x72\xf3\x15\xd7\xeb\x00\xc9\x82\x93\x0a\xbd\x03\x10\x94\x75\x57\xe8\x1d\x80\xd8\x1c\x4d\xf4\x0e\x40\x73\xc3\xb6\x0a\xdd\x03\x90\xac\xeb\x28\xf5\xb6\x45\x38\x71\xa0\x92\xb6\x08\x13\x8c\x0a\x69\x8b\x46\xe5\x50\x85\x56\x1e\x34\x77\x47\x2b\x65\xb3\x45\x63\x21\x69\xa9\x91\x2d\x92\x6d\x2d\x4a\xdd\x6a\x91\x1b\x89\x3c\xe5\xa7\x45\x8b\xef\x3b\xd3\xa8\x83\x96\xbe\x0f\xe6\x4a\x40\xeb\x7e\x54\x9a\xeb\x70\x01\xad\x2f\xbd\xe6\x1a\xe4\x66\xff\x68\xae\x41\x0b\xd3\xa1\x0a\x44\x8b\x30\xab\x39\x9c\x8d\x00\x49\x99\x50\xa9\xf3\x2c\x9a\x5b\xd5\x95\x7a\xcd\xa2\x3b\x1f\xa9\x38\xb3\xc8\x8d\xe4\xa7\xe2\xcc\xa2\xb9\xaf\x5e\x0d\xf3\x0e\x20\xcd\xff\x0c\xf3\x0e\x60\xb2\x08\xa8\x86\x39\x06\x90\x14\x91\xd6\xb0\xa6\x03\xe4\x46\xaa\x6d\x38\xf7\x00\x06\xa5\xb8\x35\xa8\x9e\x15\xef\x25\x69\x99\xb9\x02\x90\x9a\xf0\xa1\x85\x05\xb9\x91\x0b\x53\x8a\x59\x04\x8b\xe0\x0a\x59\xe6\x0f\xc1\xbe\x92\x35\x8c\xf8\x41\x52\x69\x58\x2a\x31\x8b\xdc\xfc\xa1\x36\x17\x34\x6b\x04\x54\x4f\x16\x1d\x81\x96\x52\x16\x59\x74\xd6\xe8\x96\xb2\xc5\x22\x37\x7f\x68\x6c\x0c\xa6\x31\xc3\x48\x1b\x91\x0e\xdd\x98\xe6\x61\xd0\x3b\xdc\xc6\x7e\xf3\xd0\xe9\x21\x27\x07\xf9\x56\x87\x21\x2e\x58\xec\x3c\x51\x43\xa3\x08\x72\x23\xe3\x37\xb4\x80\x20\xd8\x38\xa3\x86\x73\xfd\xc3\x6d\xff\xd2\xce\x36\xc3\x0e\x72\x23\x15\xa1\xf8\xb0\xc8\x8d\x71\x65\x4c\x5b\x86\x54\x17\xb5\x44\x35\xb4\x6d\xa0\xb3\x17\x4f\xa9\x47\x2c\x9a\x7b\xf2\xd5\xd0\x6a\x81\xe6\x3c\xd8\xd0\x1a\x81\xdc\xc8\xc3\xa9\xe8\x2b\x7a\xe3\x2b\x1f\xbb\x3f\xdc\x79\xc9\xf8\x58\x87\xe1\x25\xc8\xcd\x97\xcc\x7c\x34\x88\xb0\xcb\x76\xef\x72\xa7\x92\xa3\x3c\x97\x8f\x64\x77\x97\x15\x5e\x02\x33\xd4\x20\x50\x8d\x2e\x25\x7e\x45\x6e\xf6\x98\xa3\x39\xc8\x8d\xc4\xa2\x7a\xbe\x22\xcc\x76\x2b\xde\x2b\x22\xba\x87\xbc\xe2\xc1\xab\x42\x54\x33\x9c\x3f\x07\x7d\xfa\x3d\x38\x82\x83\x98\xbe\x89\x86\x97\x9f\x12\xaf\xaf\x8a\xc3\x35\xc8\x8d\x9c\x9e\xda\xbc\x22\xb7\xee\xb9\xbc\xe2\xb7\x42\x85\x91\x46\x89\x5d\xf1\x8d\x17\x4a\xec\x8a\xdc\x88\x61\x86\xe1\x25\x48\xeb\x6f\x94\xd3\x15\xa9\x7b\x36\x0c\x03\x87\x9b\xd6\x23\x0a\x5e\x8a\xe7\x8a\x3e\x7d\x9f\x2e\x9b\x71\x31\x4d\x8d\x77\x39\x1c\xaf\x87\xe3\x35\x16\x77\x18\xbb\x0d\x63\x37\x7c\x79\x45\x77\x45\x6e\x78\xda\xc3\x21\x1c\xe4\xe6\x2b\x66\xbc\x85\x0e\x6f\xa2\x9a\x5f\xea\xf0\x8a\x40\xc3\xa1\x86\xc3\xf5\x70\xb8\x76\x68\x7b\xbc\xc9\x47\x57\x72\xf7\x97\xbe\xe8\x8f\x11\x11\x37\xee\x34\x38\xc8\x8d\xb1\x7f\x18\xbc\x81\x56\xff\x92\xc7\x1e\x46\x6d\x20\x37\xb2\x63\xc3\xa8\x0d\xe4\x86\x3b\xa4\x9a\xaf\xc8\xcd\x2f\x43\xcb\x00\x72\xf3\xe1\x6b\x06\x86\x66\x80\x68\x72\x68\x06\x40\x73\x9f\xcb\x52\x07\x58\x24\xda\x16\x35\x9c\xe0\x06\xcd\x9d\x22\x4b\x6d\x60\x91\xfa\x07\xc3\xe0\x0e\x74\x2b\x49\xd2\x14\x38\x48\x76\x44\x2d\xe5\x82\x45\x73\xc3\xca\x4a\x36\x50\x12\xb9\x91\x13\x52\xcf\x57\x34\xb7\xa2\xac\x34\xd4\x02\xc9\xf2\x94\x4a\x23\xad\x74\x5f\x48\xb6\xa7\xac\xd4\x10\x80\xdc\xf8\xae\xd2\x64\x33\x48\x8b\xf6\x52\xdb\x00\xa6\x45\x66\xc9\x7e\x43\x22\x37\x62\xa8\xec\xb6\xb6\xd3\x8f\xe9\x0f\x0f\x0f\xd1\x41\x7c\xa3\x2a\x0d\x8b\xdc\x48\x20\xa4\x06\x04\xe4\x36\xfc\xe1\xcf\x43\xac\x61\xb1\x11\x1a\x10\x24\x84\x73\x23\x51\x94\x1a\x90\xd4\x80\xf0\xbd\xa7\x33\xd5\x20\x29\xac\x2c\x75\x86\x45\xa2\x14\x55\xea\x0c\x8b\x86\xa4\x62\xa5\x79\x65\xd0\x8c\x2d\x94\x1e\x16\x51\xdf\xb9\x6c\x17\xa1\x1d\x9b\x49\x95\x3a\xc3\xa2\xed\x58\x9e\x34\x37\x9c\xe3\x7b\x57\x38\xbf\xc9\x61\x90\xec\xa3\x59\x69\x68\x07\x72\xc3\xff\x48\xcd\x18\x58\x6c\x73\x59\x4a\x0f\x8b\x70\x5a\x2c\xb5\x6c\xa0\x95\x7d\x68\xb4\x07\x72\xe3\xdb\x56\x8d\x58\xe4\x46\x68\x94\x06\x80\x20\x10\xda\xaf\xd4\xfc\x81\x44\x10\xaf\xd2\xda\x3d\xd0\x1c\x33\xd5\x2c\x16\x89\x10\x47\xa9\x59\x2c\x12\x31\xaf\x4a\x67\xaf\x41\xa3\x86\xbb\x94\x2c\x16\xbd\xe1\xe9\x65\xd9\x2e\xd6\x2f\xb0\x65\x66\xa5\x96\x14\x34\xb7\x49\xad\xb4\x6c\x0e\x34\xeb\x1f\xd3\x59\x68\xd0\xd9\x4f\xb2\xd2\xc8\x11\xe4\x66\x87\x19\x39\x82\xce\x26\x5d\x95\x4e\x39\x83\x68\x3e\x6f\x03\x47\x10\x56\xb0\xa6\xf6\x16\xa4\x45\x7f\x69\xd5\x1c\x78\x1b\xc6\x25\xcd\x0d\x23\x93\x9c\x4e\x2d\xa6\x59\x5f\xd0\xdc\x99\xb5\x14\x45\x16\xe1\x40\xa0\x28\xb2\x18\x4e\x97\xa8\x89\x2c\x7a\xf9\xdc\x8c\x08\x41\xa4\x77\x69\x44\x08\x7a\xf3\x87\x86\x7f\x20\x58\x00\x55\x69\x06\x19\xc4\xf0\xa3\x31\xeb\x9b\x2e\x40\xf5\x7d\x75\x7e\x19\x84\xa9\xac\x34\xfa\x03\xb9\x11\xbc\xaa\x92\x2c\x7a\x6c\x5e\xd1\x17\x71\x67\x80\xf5\x87\x46\x7a\xa0\x35\xc6\xc9\xd4\xc4\x83\x36\xb1\x15\xa9\x89\x4f\xc3\x3a\x3b\xcc\xb0\x0e\x84\x25\xb0\xea\x1f\x8b\x64\x67\xca\x52\xff\x58\xf4\x66\x17\x6a\xf5\x41\x77\x0e\x21\x0f\xdb\x75\x38\x56\xd0\x2e\xad\x3e\xe8\x4e\xbe\xe5\xe9\x15\x4f\x06\x06\x9c\x9d\xd4\xea\x83\x28\x87\x0f\x4d\x7c\x9a\x41\xc6\xac\xa5\x19\x64\xd0\xbb\x8f\x43\x0b\x0f\x92\x65\x8a\x95\x5a\xf8\x74\xa6\xba\xec\x30\x03\x37\x90\x9b\xef\xbe\x81\x5b\x1a\xb8\xe1\x64\xab\xc2\x2c\xc2\xb4\x6e\x1a\xcb\xa5\xb1\x1c\x71\x43\x3a\x07\x0d\x3a\x3b\x2e\x54\x9a\x0f\x06\x69\x31\x65\x1a\xde\x81\x6e\xa9\x69\xea\x07\xa4\x7e\x00\xae\x6c\x9a\xb0\x05\x4d\xa3\x9c\x66\x67\x41\x1a\x04\xa6\x71\x1b\x48\xd3\x5f\xa9\x1f\x90\xfa\x01\xeb\x6f\x91\xc7\x4a\xdd\x04\xd0\x34\x9a\x6a\x40\x8b\x16\xec\xd3\x52\xa9\x9f\x00\xa2\x7b\x2b\xba\x09\xa0\x3b\x8b\x9b\xba\x09\xa0\x95\x83\x90\xd5\x72\xa0\x77\xbb\xc5\x10\x11\xf4\xe9\xad\xe8\x4c\x80\xfe\x0d\xf7\x46\x8d\xa0\x35\x5f\x53\xcb\xec\x40\x73\x2f\xe5\x4a\x3d\x88\xd4\x83\xb0\xab\xf4\x20\x40\x73\x5f\xe3\x4a\x1d\x01\xd0\x82\x48\x26\x75\x04\x40\x6e\xd8\xe4\xd2\xc2\x83\xc5\xa6\xb6\x55\xe6\x6a\x41\x33\x09\x52\x56\xba\x81\xdc\xbe\x43\xe5\x21\x76\x06\x21\xe1\x54\x66\x74\x41\x77\xbe\x45\x91\x6a\xb1\xd0\x37\xab\x32\x7d\x0b\x72\xdb\xbd\xe2\xe5\x21\xf3\x4d\x93\x43\x8f\x87\x1e\x36\x1c\x5f\x1c\xfa\x79\x88\x7d\x79\x3c\x97\xf1\x27\x68\x46\x0b\xea\x5d\x8b\x5e\xdf\x7f\xa5\x87\x88\xa9\xf9\xd6\x4b\x1f\xa3\xf4\x31\x76\x7f\xe8\x15\xdd\xe6\x90\x01\xa7\x4c\xf0\x82\xce\x36\x87\xa5\xde\xb5\x68\x9d\xaf\xb8\xf4\x31\xc0\x32\xa7\x5f\x2e\x0c\x00\x3d\x3c\xbd\x99\x61\x10\x6c\xd9\x50\x65\xdc\x5a\x6a\x7a\x32\x52\x95\x6e\x07\x68\x6e\x1a\x5e\x65\xe0\x0a\xba\x51\x5e\x39\xed\x0d\xd6\xb0\xf3\xf5\x4e\x40\x67\xb7\xd0\x52\x61\x5b\xac\xf0\x79\xe8\xb0\x94\x11\x2f\xa6\xa3\xc2\xb6\xea\xb0\xec\xfe\xd7\xe9\xa1\xf3\x7f\xff\x37\xd9\x25\xac\xca\xd2\x3a\xd0\x4d\xf9\xaa\xa6\x2d\xb2\x11\x7a\x94\x73\xd7\x20\x9b\xad\x37\x2e\x06\xbd\xe3\xf4\x95\xd3\xd9\xa0\x99\x38\x2c\x4b\xeb\x40\x36\x5e\x73\x55\xb8\x45\xb6\xcd\x1f\xda\x2e\xa6\xa9\xad\x09\x50\x83\x5b\x34\xb7\x07\x2f\x15\xb7\x45\x36\x86\xbd\x72\x81\x00\xe8\x06\xff\xa5\xdf\x01\xd6\xf0\xdd\xd1\xc9\x28\x15\x43\xbd\x6f\xc3\xee\xca\xef\xfc\xdc\xb8\x8e\x07\xc8\xf6\x1d\xf2\x81\xe0\x78\x18\xb0\x97\x95\x74\x20\x9d\x2c\x2f\x57\x08\x94\x2b\x04\xd8\x1e\xbc\x4a\xff\x04\xa4\x89\xc9\xd2\x3f\x29\x77\x30\x34\xef\xa4\xf0\xb7\x48\xbd\x85\x32\x27\x5e\xca\x94\x4e\xff\xcb\x8f\xd2\xed\xb4\x37\x0f\x79\x9b\xb5\xf8\xa1\x97\xf4\x36\x49\x08\xb0\xcf\x6f\x29\xfb\x2d\x9a\xbb\x94\x57\x99\x13\x2f\xe7\xc1\xc3\x1b\xf0\x9e\xd0\xfd\x76\x71\x41\xe9\xff\x80\x6c\xe4\x98\xca\x92\x3b\xb0\xd8\xfe\xae\x14\x02\x17\xbd\x7c\xd5\x4d\x2e\x80\x6e\x74\x5e\xfa\x3f\xa0\xb9\xcb\x7a\x29\x04\x2e\xba\x33\x79\xa5\x03\x04\x1a\x9b\xab\x54\x99\x5c\x00\xd9\x48\x44\x95\x29\x71\x90\x8d\x14\x93\xda\xe0\xa2\x05\xd1\x40\xe9\xfe\x80\x6c\x24\x04\x4a\xf7\x07\xa4\x09\x81\xd2\xd7\x01\xc9\x0a\xb9\x2a\x1d\x1b\xd0\x91\xd0\xad\x32\xad\x0d\xba\x93\xfd\xa5\xaf\x03\x9a\xd1\x7f\x99\xe9\x06\x89\x5e\x53\xa9\x29\x2e\x16\x7b\x03\x56\x99\xbb\x00\xd9\xb0\xf0\x4a\x8a\x8b\xc5\x76\x7b\xa5\xa4\xb8\x08\xb3\x55\xa5\xaf\x53\x16\xff\x97\x2f\x94\x13\xe1\x60\x98\x41\x29\x3d\x1b\xd0\x9b\x23\xba\x99\x0a\x10\xc6\x11\x65\x5a\xa2\x54\xd7\xf3\xab\x37\xb1\x0c\x82\x7d\xed\xaa\x2c\xce\x07\xd9\x3c\xbd\x6e\x0c\xc8\xd7\x39\xfc\xd3\x2a\x2b\x4b\x2e\x92\x6d\x49\xaa\x4c\x64\x80\x64\xef\xd0\xaa\xd3\x17\xf0\xc5\x62\x29\x61\xa9\x54\x2e\xb2\x61\x6e\x4b\x8f\x06\x64\xf3\x35\xd5\x7d\x01\x2d\x90\xda\xab\x32\xb7\x51\x56\xfd\xa7\xff\xe6\xad\x5c\xcb\xde\xe3\xf6\x4c\x59\x83\x6c\x3e\x69\xb3\xcc\x20\x1b\x41\x45\xe9\xad\x80\x3e\x6c\xac\x59\x0b\x90\xcd\xf7\xd4\x2c\x33\x08\xab\x64\x55\x1c\x17\x11\x1a\x2c\x7d\x1a\x90\x8d\xbc\x58\xe9\x7a\x80\xb4\x58\xbb\x74\x2a\x40\x3a\xb1\x58\x3a\x15\xe5\xf4\x72\xf9\x1d\xe8\x42\x80\x6c\x1a\x1e\xdd\x05\xd5\xc5\xa7\x27\x73\xe6\x18\xb4\xee\xd0\x6a\x0e\x02\x34\x27\x86\xca\xec\x34\xc8\xe6\xc8\x61\x0e\x02\x24\x72\xa2\x55\x96\xea\x81\x3e\xbc\x6f\x0b\xf5\x41\xff\xcc\xb9\xfe\x09\x58\xec\x2f\x58\xa5\x7f\x02\x56\x38\x24\x38\x0b\x0d\x46\x7c\x57\xb4\xc3\x58\xa7\x38\xb5\x28\xa6\x2e\x40\x67\xb7\x92\x52\xe2\x5c\x74\x36\xe4\x28\x25\xce\x45\xd7\x3a\x29\x71\x2e\x86\x8b\x48\xa6\xc9\x0c\xf0\xf6\xa1\xff\xb6\x3c\x46\xf1\x21\x83\x90\x1a\xe7\x22\x10\xa3\x2d\xf5\xcc\x45\xb0\x0d\x6b\xa9\x67\x2e\xc2\xc9\xe5\xa9\x67\x03\x16\x7b\x28\x96\x12\xe7\x22\x9d\x5b\x56\xcf\x5c\x34\xc5\x12\x6a\xea\xda\x80\x6e\x15\x92\x1a\xe7\x22\xb6\xef\x97\xe5\x21\xdf\x94\xe2\xd0\xf4\xd0\x64\x5f\x10\xda\xea\x7c\x36\x08\x76\xac\xac\x69\x92\x65\xba\x57\x57\xf3\x5c\xb6\xb5\xf1\x05\x86\x57\xb4\xad\x2e\x07\xf0\x87\xa6\xe4\x91\x2b\x4f\xcd\x95\x72\xe5\x22\x5c\x25\x3a\xcd\xbb\x80\x98\xf6\xa1\x79\x17\x10\xec\x3b\x53\x53\x07\x08\x04\x3b\x8d\x95\x3a\xe7\xa2\x37\x7b\x5a\xff\x07\x24\x9b\x03\xd7\xd4\xd9\x99\xdf\x7e\x16\x34\xd5\x45\x8d\x33\xbe\x3e\xe4\x8e\x74\x80\x40\xb0\x07\x60\x4d\x33\x36\x20\x8d\x47\x15\x43\x17\xa9\x67\x36\xcd\xd8\x80\x34\xe5\x3f\x9d\x18\x00\x0d\x19\x98\x9a\x4e\xc6\x83\x66\xe5\xd0\xd4\x4d\x9a\xba\x49\xd4\x17\x4d\xdd\xa4\xa9\x9b\x44\x36\x60\xea\x13\x81\x16\xbe\xc2\xd3\x12\x3f\x90\xdf\xf3\x36\x63\x03\x9a\xba\x17\x35\x75\x94\x40\x47\x49\xa2\x94\x56\xaf\x4f\x5a\x9d\xcd\x2f\x4b\x69\x75\x11\x56\x3c\x2a\xad\x2e\x1a\x9a\xba\xa5\xb4\xba\xe8\x0e\x3d\x4a\xab\x8b\xee\xa2\xb6\x69\x39\x1f\xe8\x16\x35\x4d\x33\x3b\xa0\xbb\x24\x40\x01\x76\x91\x0d\x7b\x38\x9d\xda\x07\xf1\xdd\xb9\xae\xd3\xd4\x75\xf2\x25\xd0\x75\x02\xdd\xa5\xa1\xd3\xa9\x0e\x90\x48\x8c\x95\x62\xee\xa2\xbb\x30\x65\xea\x4c\x81\x70\x29\xe2\xd4\x99\x9a\x3a\x4e\xf6\xab\x8e\xd3\x74\x6f\xe7\xef\x87\xb6\xbe\x28\x15\x23\xa6\x52\xcc\x5d\x24\x4a\x77\x35\x9d\x36\x01\xcd\xa9\xe6\xa9\x93\x04\x5a\xb0\xff\x6c\x4d\xbd\x24\x10\xec\x4d\x5f\xca\xc0\x8b\x6c\x98\x9a\x69\x4d\x21\x08\xa4\xbd\x6a\x9a\x38\x9a\x26\x8e\xb0\xad\x53\x5f\x0a\xe4\xc6\x20\x3c\x4d\x1c\x81\xe6\xda\x8e\xa9\x2f\x05\x9a\xaa\x26\x35\x75\xa6\x40\xa0\x13\x52\xd3\x69\x99\xe9\xb4\x4c\xb5\xbf\xf7\xdf\xac\x69\x01\x23\xc8\x46\x4e\x75\x5a\xc0\x08\xba\x89\x7d\x15\xed\x45\x0c\xdf\x4a\xd3\x4f\x20\x4d\xa9\x4f\xdd\xaf\xe9\xc6\x66\xfe\x50\x5f\x6b\xea\x6b\x39\x32\xb9\x44\x13\x24\x9b\x75\x95\x8a\xf6\x22\x5d\x3a\x3e\x4d\x35\x81\x6e\x65\xd8\x74\x52\x08\xc4\xb4\xdb\x75\xbf\x40\x68\xc2\xa6\xf3\x44\x20\xd8\xed\xae\x54\xc2\x17\x2d\xbc\x47\xdd\x2f\xd0\x3b\xc9\x2d\xb5\xf1\xc5\x30\x17\x34\x4d\x35\x81\xd4\xbb\x53\x2e\x5f\x74\x54\x4a\x6a\xea\x7d\x81\xb4\x84\x69\x3a\x9b\x04\xd2\xaa\xeb\x69\xc6\x08\x34\x8b\xd9\xd5\xc6\x17\xed\xcb\xcd\x4d\x3d\x32\xd0\x54\xa6\x29\x05\xf3\x45\xa2\x75\x59\x53\x2f\x0d\xe4\xf7\x65\xbb\xe0\x61\x7e\x4a\x21\xfe\x97\xdd\x43\xfe\xe9\x1b\x59\xf5\xe5\xa6\xbe\x1c\x26\x78\xea\xcb\x4d\x7d\x39\xbb\xda\x89\x28\xb0\x86\x2f\xaa\x45\x02\x53\xf1\x10\x3c\x9b\xa9\x67\x06\xba\x0b\x2d\xa7\x9e\x19\x08\xd3\x19\x2a\xf4\x8b\x74\x99\xdb\x74\x86\x09\x84\xa1\xb8\xda\xfb\x22\xdb\x77\xc8\x1e\xa3\x6e\xc0\xf0\x76\x5a\x37\x00\xa2\x6c\x84\x75\x03\xa0\xa5\x63\x89\x25\x84\xa0\x4f\xcd\x82\xd3\x50\xa0\x87\x0f\xd7\x8c\x14\x68\xe3\x1b\x57\x9d\x9a\x02\xe1\x74\xc2\xd4\xef\x03\x4d\x49\x98\x9a\x3a\x7e\xd3\x8a\x83\xf2\x90\x2f\xd4\x8d\x3f\xaf\x3b\xe2\x3a\x4e\x90\x9f\xef\x61\x6a\x0a\xa4\x61\xea\x7c\x6c\xd9\xc3\x93\xf4\xa3\x31\xe7\x04\xd2\x85\x4f\x53\x5f\x70\xea\x0b\xea\x67\xe8\x0b\x82\x6c\x76\x8f\x25\x08\x20\xbf\x21\xc7\x19\x2a\x90\xcd\xa6\xea\x30\xce\x2f\xe7\xe4\xc8\x61\xce\x09\x74\x27\xe7\xa7\x1e\x23\x88\xcf\x2c\xe8\x31\x82\xde\x1d\x45\xf5\x18\x41\xff\x46\x77\x7d\x41\xd0\x54\x48\xaa\xa9\xe7\x07\xfa\xf6\xfd\xd2\xc6\xfe\xc8\x00\x39\xcc\xe9\xd3\x81\xc6\x56\xee\xb5\xac\x35\x04\x8b\xdd\x74\x6b\x99\xbf\x02\xe1\xa4\xd5\xd2\xcd\x03\xd1\xc3\xff\x1a\x1e\xa2\xf6\x22\x3d\x57\x7a\x28\x49\x7b\xbc\xaf\xca\xd2\x0d\x03\xdd\x79\xd9\xa5\x7f\x05\x3a\x6a\x12\xb5\xf4\xaf\x40\x63\xef\x9b\x5a\x7a\x4e\x4b\xcf\x89\x54\xc2\x72\xe1\x03\x68\xd6\xdf\x2c\x27\xb1\x96\x05\x0e\xa4\x63\x96\x0b\x1f\x40\x36\x82\xe7\xa5\xe7\xb4\xdc\xe8\x61\xf7\x5c\xa7\x87\x18\x24\x97\x3f\xbc\x3c\xa4\xcd\x27\x28\x59\x2e\x7c\x58\x61\xc2\x81\xb7\x7f\xb9\xf2\x01\x64\x23\xa6\x5b\x3a\x45\xa0\xeb\x14\x2d\xdd\x1d\xd0\x4c\xe5\x2f\x27\xa8\x40\x37\x23\xbf\xcc\x0a\x81\x66\x39\xf5\xd2\x03\x02\xdd\x7c\xc0\x72\x91\x03\xc8\x46\x78\xbb\xf4\x80\x40\x73\x75\xf2\x32\x51\x04\x9a\xab\xbe\x97\x4e\x11\x08\x47\x9e\x65\xa2\x08\x2c\x36\x3c\xae\xa5\x9b\xb4\x74\x93\x96\xe7\xb2\xf5\xb8\x49\x1a\x9f\xe5\xc4\x16\x48\x76\xe0\xaa\xa5\x47\x04\xb2\xf1\x52\x2f\xdd\x9f\xe5\xde\x12\x58\x87\xa5\xfb\xb3\xd4\xb9\xf0\x0d\x33\x9b\x04\xd6\xf0\x79\xeb\x11\x81\xc6\xbe\x3d\xb5\x2c\xec\x00\x0d\x9d\x9c\x5a\x7a\x44\x4b\x8f\x08\x8f\x71\x99\x60\x5a\xd6\x75\x54\xff\x07\x9b\xbc\x74\xa2\x40\xd7\x68\x2e\x53\x52\x20\xd8\x81\xb2\x96\x4e\x14\xe8\x5f\xb7\xe8\x0b\x81\x6c\xbe\x48\xa6\x87\x40\x7c\xef\x96\x5e\x08\x68\x8a\x2b\xd5\x32\x7f\x03\xb2\x93\x8c\x5b\xba\x21\xa0\x29\x59\x54\x4b\x3f\x04\xb4\xf8\x0e\x79\x81\xc9\x60\xb5\x7b\xc8\xf7\x79\x1e\xfe\xd2\xb3\xf9\x2c\x5e\x24\x92\x78\xb5\x74\x2a\x40\x3a\xd3\xb2\xcc\xfc\x80\xb0\xbc\x76\x99\xf9\x59\x66\x7e\x48\xb5\x2e\x33\x3f\xcb\x62\x48\xcb\x4c\x97\xee\x08\x88\xf0\x7d\x76\x69\x25\x48\xe4\x56\x6b\x99\xe7\x01\xd3\x1d\x42\x96\x55\x8e\x20\x9b\x8f\xdf\x82\x14\xd0\x74\x62\x97\x4b\x20\x40\x36\x3c\xc3\xa5\xef\xb1\x5c\xdc\xe0\xb7\xed\x9c\x16\xc8\xf6\x1d\xb2\x11\xe6\x79\x1c\x14\x9c\xd3\x02\x69\x6a\x66\xe9\x7b\x80\x44\xcc\xbe\x96\x8e\x06\xe8\xce\xca\x2e\xe7\xb4\x40\x53\x90\xaa\x96\xce\x07\xf8\xb6\x82\x58\xce\x73\x2d\xcb\x17\xfd\x68\x2d\x5f\x04\xb1\x7f\xff\x65\xc3\x0e\x1b\xc6\x87\xa6\x8b\x02\x62\x73\xd0\xd1\x45\x59\xba\x28\x24\xec\x96\x8b\x27\x40\x77\x4a\x6e\xe9\xb4\xac\xcf\x69\x21\x4c\x5d\x3a\x2d\x4b\xa7\xc5\xc1\xd6\x02\x45\x90\x9d\xf8\x7c\xe9\xb4\x80\xf6\xdd\xa5\xee\x08\x48\x94\xf7\x6b\xb9\x70\x13\x24\x92\xc4\xb5\x4c\x27\xad\x6f\x77\x08\x1e\x88\xbe\xc7\x52\xa5\xcc\x27\xa9\xef\x01\xb2\xdb\x2e\x33\x40\x60\x05\xce\xd4\x32\x01\x04\x62\xfa\x8c\xf4\x50\x40\x76\xed\x82\xb3\x61\xa0\x59\x17\xb1\xac\x8a\x01\xe9\x2c\xe0\xd2\x69\x01\x6b\xf8\xa2\xe8\xb4\x2c\x97\x42\x94\x6f\x9d\x33\x64\x20\xca\xb6\xea\xa2\x80\x74\xce\x6f\xb9\xd3\x04\x48\xbd\xd4\x65\x66\x0a\xb4\xf1\x8d\x3a\x7a\x32\x20\xd9\x61\xad\x96\x8e\x0c\x48\xd7\xe0\x2e\x9d\x16\xd0\xf7\xef\x64\x36\x96\xed\x5d\x75\xcd\x96\xa9\x29\x90\xdd\x71\xce\x2a\x49\x90\xd6\x45\x2c\xe7\xd3\x40\x76\xc7\x72\x9d\x16\x90\xce\x8a\x2d\x27\xca\x40\x53\x10\xac\x96\x73\x60\xcb\xbd\xb0\x4a\x1b\xaf\xdb\x02\xba\xab\xdf\x96\x6e\x0b\xc8\xce\xdc\xc3\xd2\x6d\x59\x3f\x6d\x1d\xd3\x67\xcb\x44\x17\xe8\x48\x4b\xd5\xd2\xfb\x00\xd9\xb5\x88\x66\xa2\x40\xcb\xef\x64\xbe\x3e\x2e\x7e\x70\x29\xe6\x6e\xfa\x08\x0c\x27\x1f\x77\xbd\x0f\x90\xe8\x29\xd5\xae\x5f\x01\xb2\xe3\x35\xee\xfa\x15\xa0\xe9\x0b\xec\x26\x94\x40\xb2\xe3\x79\xed\x66\x8f\x40\x58\xf5\xbe\x3b\x2f\x06\x12\x3d\xce\xda\x4d\x28\x81\xee\xb2\xb3\xdd\x84\x12\x08\x6b\x9c\x76\x13\x4a\x20\x91\xf2\xae\xdd\xa5\x0f\xa0\xa9\x39\x56\xbb\x2b\x49\x41\x76\x1c\xb1\x5d\x87\x67\xff\xf2\x4e\x0c\x6e\xbb\x45\x3a\xa0\xeb\xe1\xee\xae\x11\x05\xd9\xc3\x5f\xda\x7e\x57\x48\xf0\x41\xef\xce\xb2\x81\xe6\xbe\x07\xbb\x4e\x10\x48\x3d\xb1\x5d\x27\x08\xa4\x35\x79\xbb\x95\x3c\x20\x7b\x78\xc8\x4e\xec\xbe\xeb\xdc\x92\x79\x27\x90\xae\x20\xd9\xcd\x3b\x81\xec\x98\xae\x5d\xef\x09\x64\xc7\x26\xed\xba\x45\x20\xad\xf6\xd8\x75\x81\x40\xf4\xf0\x90\x57\x0c\x87\xd3\x91\x7f\x5b\xe6\xdd\x54\x12\x48\xe4\x7b\x6a\xd7\x6b\x02\xd9\xed\x4f\xa7\xd7\x76\xf7\x3c\x75\x36\x64\xd7\x6d\x02\xd9\xbf\x43\x3e\x44\x96\x8b\x5a\x36\xb4\xbb\x91\x04\x08\xf7\x37\xd8\x75\x3c\x40\xb8\x0c\x74\xd7\xf1\x00\xd9\xf1\x9c\x77\x4b\x71\x40\x77\x03\x9a\xdd\xf9\x2f\xd0\xd4\x5d\xab\x5d\xff\x04\x64\xff\x0e\x79\xc9\xb4\x66\x9d\x47\xa1\xff\x01\xf2\xeb\x2b\xfd\x0f\x90\x2e\xf9\xd9\xcd\xeb\x80\x74\x1f\x8c\xdd\x24\x0e\x88\xce\x68\xbe\x9b\xc4\x01\x89\xda\x5f\xed\x26\x71\x40\x74\x02\x97\x5d\xc7\x65\xaf\xef\xad\xe4\x92\xae\xf5\x00\x4b\xdf\x79\x37\x65\x03\xb2\xdb\x56\x27\xb6\x40\xf6\x61\x2b\x6c\xab\x1b\x5d\x75\x7f\x68\x5b\x8b\xb6\xfa\x6d\x98\xc4\x01\x7d\xe0\x1d\xec\x3a\x46\xfb\xe7\x18\xd9\x58\xf3\x33\x20\xc2\xbb\xd4\x57\xda\xf5\x95\xc8\x14\xee\xfa\x4a\xa0\x4d\xdf\x41\xfd\x22\x90\x3d\x3c\xbf\x77\x34\x7d\x79\x3d\xbd\x0f\x64\xf2\x40\xfc\xdc\xcd\xc8\x80\x61\xb1\xdd\xee\xba\x91\xdd\x75\x23\xe5\x21\xef\x48\x7f\xca\xf1\x4b\x7f\x6a\x5f\xda\x19\xdb\xaa\x43\x05\xd2\xd9\xd9\xdd\x52\x22\xd0\xcc\xde\xef\xae\x0c\x05\xdd\xfc\xf4\xae\xa7\x04\x1a\xaa\xd8\xb5\x3b\x23\x06\xd4\x7b\xa9\x5d\xb7\x08\x0c\xe3\xe5\xdd\x2c\x0d\xc8\x4e\x20\xbc\x3b\x23\x06\x56\x32\x5f\xbb\xeb\x29\x81\xfe\xbd\xd5\x66\x69\x40\x7e\x2f\x8f\x6e\xd1\xae\x5b\x44\x6c\xbc\xeb\xef\x80\xa6\x9e\x5d\xed\x3a\x3c\x20\x3b\x26\x7d\xd7\xbb\x01\x4d\xa9\xba\xda\x9d\xff\x02\xd9\x6d\xac\xbe\x0c\x48\x6b\x40\x76\x7d\x19\x90\x4e\x1a\xed\x26\x5b\x40\xa2\x98\x5b\xbb\x99\x15\xd0\x14\xcc\xab\xdd\xa4\x09\xc8\x5e\x9e\xdf\x4b\x32\xc3\xd5\xbd\x4d\x67\xb8\x40\x5a\x60\xb0\x9b\x47\x01\xe9\xdc\xcc\x6e\x19\x0f\xc8\xef\x1b\x71\x36\x0b\x4c\x6b\x02\x76\xbd\x94\x5d\x2f\x85\xfc\xce\xae\x97\x02\x9a\xcb\xa1\x76\x6b\x76\x40\x58\xa4\xba\xeb\xb8\xec\x96\xf3\x12\x15\xec\x26\x60\x40\x76\x72\x5d\xbb\x8e\x0b\x48\x36\xd7\xad\xdd\xd4\x0a\x48\xa3\xea\x5d\x8f\x64\xff\xf2\x28\xf6\xab\xee\x07\x08\x77\x99\xd9\xcd\xa3\x80\x98\xbe\xe9\xe6\x4c\x40\xba\x68\x6a\x37\x67\x02\xb2\x93\xc1\xd8\xcd\x99\x80\x85\x5c\x49\xed\xfa\x1a\xbb\xbe\x86\xa6\x54\x5f\x63\x57\x13\xd5\xde\x79\xec\x9d\x87\x02\x99\xf2\x1d\x7e\xec\x9e\x87\x67\x84\x8b\xbb\xeb\x91\x80\xec\x9a\x7d\xdd\x0a\x90\xee\x35\xb7\x5b\x9d\x0b\xda\x70\x16\x61\xd7\xd5\xd8\x75\x35\xb4\xfb\xe6\x39\x40\x58\x02\xbb\x3b\x9d\xb5\x3b\x9d\xb5\x7b\x32\xdf\x81\x1f\xef\x00\x61\xce\xa1\xa7\x01\x9a\x4a\x83\x75\x98\xe8\x00\x89\x3c\x65\x1d\xba\x1a\x20\xd9\x3a\xbe\x0e\xeb\x6d\x40\xba\xc8\xe4\xd0\xd5\x00\xe1\x02\xb5\x43\x57\xe3\xd0\xd5\xd8\x3d\xf4\xf3\xd0\xcf\x4b\xd2\x0c\x3d\x86\x43\x8f\x81\x17\xe3\xd0\x63\x00\xd9\xf1\x7b\x0f\x27\xaa\x40\xba\x7f\xe5\xe1\x44\xd5\xe1\xde\x13\xae\xd6\x3b\x4c\x9b\x80\x6e\x1d\xc8\xa1\xab\x01\xc2\x41\xfd\xd0\xaf\x00\xc9\x3e\xf1\x75\x98\x5c\x01\xd9\xd7\x3f\x18\xe6\xc3\x59\x2b\xd0\x2d\x73\x3a\xf4\x44\x40\xb0\x5f\x6b\x1d\x7a\x22\x20\xad\xb4\x3b\xf4\x44\x0e\x3d\x91\xdd\x1f\x2e\x0f\xe9\xb6\xf2\xd5\x1e\x66\x6d\x40\x73\x03\xa9\x43\xbf\x03\xb4\x68\x9e\xcc\x5b\x51\xd6\x94\x11\xf2\x70\x26\x0b\x24\x1b\xe3\xd7\xa1\x77\x02\x16\x32\x37\x75\xe8\x9d\x80\xa6\x10\x64\x1d\xba\x27\xa0\x5b\xd5\x74\xe8\x7e\x1c\xba\x1f\x04\x2a\x87\x79\x1c\x90\x2e\x8b\x38\xf4\x48\x40\xb7\x7c\xff\x70\x26\x0b\x34\xe7\x24\x0f\x1d\x12\xd0\xdd\xc7\xe5\xb0\xf6\x18\x34\x75\x26\xeb\x30\x1f\x03\xb2\xfb\x0c\x2d\x3e\x06\x4d\xa1\xc9\x3a\xcc\xd1\x80\x95\x36\xc3\x82\x64\x90\x9d\x91\xe8\x30\x6d\x03\xd2\x25\x91\x87\x25\x3f\xa0\x99\x80\x3b\xcc\xd1\x1c\xee\x2f\x81\x6a\x65\x1d\xba\x3c\xa0\xe5\x20\xa0\x39\x9c\x91\x3a\xdc\x4d\xc2\x3a\xd6\xc3\xca\x62\xd0\x8c\x38\x0e\x7d\x1e\x90\xa8\xcc\xd4\x61\x4e\xe6\xf8\x72\x32\x58\x8c\xc3\x74\x0a\x68\x16\xaa\x1f\xfa\x2e\x20\x8c\x1e\x0f\x7d\x17\x90\x96\xa8\x1e\x4e\x2d\x81\x0c\x1f\xa7\x4e\x09\x58\xe9\x7d\xea\x5b\x80\xec\xc4\x85\x87\xae\x05\x58\xe9\xdb\xa8\x87\x70\xe8\x21\xf8\x79\x68\xe8\xc1\x42\x82\xa3\x0e\x0d\xfd\xe1\x56\x9b\x98\xc5\xc3\x55\xa4\xa0\xbb\x77\xc4\x61\xe2\x04\x34\x15\x35\xeb\x30\x73\x02\x32\x88\x67\x0e\x67\x68\x0e\xf7\x0d\x2f\x5f\x5a\x33\x27\x20\x03\xdf\xe8\xd0\x1f\x00\xcd\x1a\xd8\xc3\x29\x1a\x90\x61\xcb\x74\x11\x40\x53\xb2\xb3\x0e\xf3\x24\x20\xdd\x73\xf2\xd0\xd4\x83\xb4\xac\xef\x30\x4f\x72\xb8\xb7\x94\x1b\x21\x1e\x9a\x7f\x90\xa8\x69\xd4\x61\x56\xe4\x38\x82\x93\x71\x7e\x17\x5d\x82\x74\x4d\xce\x61\x0d\x2f\xc8\x20\x16\x3d\x34\xfe\x87\xc6\xdf\x07\x67\x86\x02\x64\x10\x70\x1f\xce\x8e\x80\x0c\x02\xfa\x43\xab\x0e\xd2\x32\xcb\x43\x7b\x7d\x68\xaf\x19\xd1\x0f\x4b\x71\x41\x06\x91\xdc\xa1\x09\x07\xf9\x8d\x0f\xce\x55\x80\x44\x93\xa1\x0e\x0d\x2a\x18\x1a\xe7\xc3\x40\x1d\x64\xf8\x65\x5a\x17\x0b\xda\xb4\xc3\xac\x34\x39\x5c\xcf\x68\x21\xe4\xa1\xf5\x04\x89\x9a\x7b\x1d\x86\xf8\x20\xdd\xf4\xe3\xd0\xa0\x1e\x9f\x41\xe5\x26\x9d\x84\x00\x2b\xed\x69\x6d\x2c\x68\xaa\x8b\xd6\xa1\x91\x05\x11\x8e\xfb\x1a\x59\x90\xce\x42\x1e\x4e\x4c\x1c\x5f\x91\x8a\x76\xcb\x10\x1c\xa4\xbb\x71\x1d\x9a\x4a\x90\xee\x49\x73\x1a\x5b\x83\x70\x63\xa5\x53\x83\x07\xd2\x69\xff\x53\x83\x77\x6a\xf0\xe8\x8c\x53\xb3\x05\x32\x08\x0b\x4f\xd3\xf8\x20\x4d\x55\x9e\x16\x40\x80\xa6\xff\x7d\x6a\x69\x40\x53\xaa\xb4\x4e\x6d\x09\x48\x4b\x52\x4e\xab\x42\x41\x73\x5f\xd3\x53\xf3\x02\x7a\xff\x0e\x85\x87\x90\xa3\x67\xe0\x3d\xad\x1d\x3d\x95\xf1\x44\x7d\xb5\x4e\x2b\x45\x41\xf3\x5d\x39\xcd\xd9\x83\x70\x9b\xb0\xd3\xe1\xff\xfc\xa2\x53\x6f\xd3\xb2\x05\x90\x88\x0e\xd5\xe9\xf8\x7f\x3a\xfe\x13\x6f\x9f\x8e\xff\x20\x5d\x90\x7d\x3a\xfe\x83\xe6\x54\xd7\xe9\xf8\x0f\x1a\xd2\x4d\x75\x3a\xfe\x83\x96\xf6\xa2\x19\x7a\x90\xae\x73\x3d\x1d\xea\x4f\x37\x26\xaa\xf5\x0f\xb5\x5f\xa7\xa6\x00\xa4\x13\xe6\xa7\x45\x0d\x20\x35\x52\xa7\x45\x0d\xa0\x05\xee\xc8\x69\x06\x1f\xf4\xef\x85\xd0\x3a\x80\x0c\xdb\x6d\x88\x7c\x9a\x9b\xf7\x51\x6b\x2f\x40\x06\x9f\xd5\xa9\xb9\x38\x3f\x73\xb1\xfc\x37\x5b\xa1\x6d\x18\x9e\xff\xf4\x10\xaf\x25\xd1\xdd\xa9\x69\x00\x19\xc4\xee\xa7\x91\x2e\x68\x4a\xc9\xd6\xa9\xb9\x00\x19\x04\xd7\xa7\xe6\x02\x74\xf3\x05\xa7\xa1\x2e\xe8\xc6\x98\xa7\xb5\x9f\xa0\xbb\x68\xe6\xb4\x84\xe1\x54\x83\x23\x96\xd7\xf4\x06\x58\xc3\xe2\x1e\x7a\xa7\x95\x9e\x20\x4c\x08\x9f\xc6\xc8\x60\x58\x45\x7d\x1a\xea\x82\x6e\xf4\x7b\x6a\x8e\x40\x0b\x57\x86\x9f\xda\x23\xd0\xad\xb1\x3c\x0d\x75\xc1\x70\xa1\xe4\x69\x5c\x0b\x5a\x20\x7b\x54\xa7\x66\xeb\x9c\x76\xa3\x87\xec\xc6\x89\xe4\x5f\xf7\x64\x36\x63\xf1\xe4\x08\x4f\x4f\x63\xd1\xd3\x58\x14\xad\xdd\x3a\xb5\x5b\x20\xc3\x0f\x4b\xb3\x75\x6a\xb6\xf0\xaa\xcf\x65\x67\xbc\x08\x64\x24\xeb\xd4\x92\x81\x6e\x71\xec\x69\x60\x0b\x3a\x12\xe9\x75\x5a\x7e\x00\xba\xf9\xfe\x53\x73\x77\x6a\xee\xec\x58\xa3\x58\x90\x96\x0c\x9c\x56\x7f\x82\xee\xe2\x9d\xd3\xc0\x16\xa4\xf5\xa6\xa7\x0b\x50\x41\x3a\x0b\x7f\x5a\xb1\x09\xf2\x7b\xaf\xb5\x59\x27\xeb\x4e\x02\x67\xf9\x34\xf9\x0e\x32\xf0\x00\x4f\xa3\x53\x90\x81\x9f\x75\x1a\x9d\x82\x44\xe8\xb3\x4e\xcd\xd8\xa9\x19\xc3\x5b\x3a\x0d\x58\x41\xd3\x8c\x9d\xe6\xde\x41\x77\x3f\xa8\xd3\x18\x16\xa4\x1b\xf9\x9c\x26\xda\x41\x6f\xdf\xb9\xec\xaf\xd3\xc5\x85\x3c\x35\x73\xef\x20\x9d\x98\x3f\x0d\x74\x41\x53\xa0\xb7\x4e\x23\x5d\x10\x16\x26\x9e\x16\x11\x80\x91\xf8\x1f\xa7\x4b\x51\x40\x73\x15\xd6\x69\xd6\x1e\xa4\x29\xfa\xd3\xb0\x16\x24\xe2\x17\x75\x1a\xd6\x82\x37\x22\xf3\x98\x4f\x92\xbd\x89\x4c\x6e\x9e\xc6\xb5\x20\xa6\x9f\x88\x39\x7a\xd0\x94\x3f\xac\xd3\x84\x3c\x08\xb3\x88\xa7\xa6\x19\xa4\xd5\x8a\xa7\x39\x7a\x10\x5f\x67\x18\xfe\x82\xf5\xdd\x92\xd1\x2f\x08\x27\x35\x4e\x0d\x38\x08\xf7\xca\x3e\xb5\xcc\xa7\x96\x19\x57\xe9\x34\xd3\x7e\xba\xa1\x50\xf9\x55\x1a\xb1\x82\x0c\x22\x9b\x53\x03\x0b\x32\x3c\xbf\xf9\x72\x90\x16\x99\x9e\x4e\xe9\x9f\x5f\xbe\xdc\x21\xc4\x39\x7d\x90\x41\x4c\x71\x99\xa9\x06\x89\x62\x4b\x5d\x06\x86\x97\x62\x5e\x58\x8b\xcb\xcd\x01\xae\xf6\x8d\x77\x93\x63\xcd\x63\xaf\x7b\x3c\x3d\x99\xb1\xe2\x45\x60\xe8\x9e\x87\x97\x41\x20\x68\x2e\x66\xbb\x8c\xf8\x40\x06\x96\xed\xd2\x74\x82\x44\xdd\xbc\x2e\x4d\x27\xc8\x20\xba\xbe\x2c\xf8\xbb\xbe\x82\x3f\x1e\xdc\x65\xe8\x04\xba\x0b\x2a\x2e\x4d\xe7\xf5\x99\x4e\x42\xe2\x4b\xd3\x09\x02\x6d\xd4\xba\x34\x9d\xa0\x99\x9c\xb9\xb4\x93\x97\x71\x92\xdb\x93\x5d\x5a\x45\x10\x83\x8f\xe9\x32\x73\x0b\x16\x7a\x7d\x75\x39\x07\x0e\x62\xf3\x92\xce\x81\x83\xfe\xdd\xa6\x73\xe0\xa0\x19\x24\x5f\x9a\x38\x10\x83\x81\xec\xd2\xc4\x81\x6e\xf2\xe7\x32\xbf\x0b\x32\x18\x27\x2f\xf3\xbb\xa0\x21\x51\x52\x97\xe6\x0c\x34\x44\xc9\xff\x34\xcd\x97\xe9\x5f\xd0\x74\xe2\x2f\xd3\xbf\x60\xa1\x29\x58\x97\xe9\x5f\x10\xa6\x65\x2e\xd3\xbf\x20\xdd\xb8\xf2\xd2\x4e\x82\xee\xd6\x22\x97\x76\x12\x74\xf7\xfc\xba\xb4\x89\x97\x21\x14\x23\xc5\x65\xaa\x17\x64\x10\x84\x5f\x9a\x31\x90\xc1\x97\x70\x69\xc6\xc0\x42\x76\xae\x2e\xcb\xee\x40\x77\xc7\xf3\x4b\xcb\x06\x9a\xc1\xfb\xa5\x61\x03\x19\xbb\x3f\x2c\x0f\xe9\x0c\x78\x49\xa7\xad\x41\x73\xcb\xf3\x4b\x2b\x76\x7d\x05\x75\xdf\x4f\xed\x0b\x92\xb1\x2e\xbb\xbc\x8c\xd1\x40\x06\x01\xc1\x65\xe2\x15\x64\xf8\x3e\x68\xec\x40\x6a\xd2\x2f\x6d\x1d\x08\xf7\x95\xbd\x9c\xc8\xbe\x5c\xd6\xe9\xd4\xe0\xa5\xb1\x03\x0b\x8d\xbf\xba\x5c\xd7\x00\xc2\xd5\xfd\x97\x55\x74\x20\x4c\xb5\x5f\x5a\xb6\x4b\xcb\xe6\x57\x6b\xd4\x76\x19\xb5\x11\xe7\x5e\xee\xc9\x00\x32\xbc\xa2\x53\xe0\xa0\xe9\x1e\x5c\x9a\x44\xd0\xd4\x73\xaf\x4b\x9b\x08\x9a\xde\xff\xe5\x5a\x07\xd0\xad\x71\xbc\x2c\xc9\x03\xe9\x70\x7b\x99\xff\x05\xe9\xee\x99\x97\x41\xe1\xa5\xdc\x13\xaa\xf2\x75\x59\x80\x07\x62\xfa\xed\x19\x01\x5e\xee\xea\xe3\x4b\xa6\x35\xbd\x14\x0e\xb5\x60\xe2\x72\xfd\x03\x88\x69\x67\x18\x02\x82\x74\x67\xdc\x4b\x0b\x0b\xd2\xad\x56\x2f\xcd\x29\x68\x9a\xe6\xcb\xa8\x10\x84\xfb\x2c\x5d\x4e\x52\x83\xf8\x5e\x3c\x6d\x27\x48\x17\xfc\x5d\xda\x4e\xd0\xcd\x38\x5f\xda\x4e\xd0\x5d\x30\x77\xb9\xd8\x13\xa4\x8b\xc9\x2e\xcd\x29\x48\x77\xcf\xbb\xb4\xa6\xa0\x99\x99\xbb\x8c\x43\x41\xb3\xac\xe7\x72\x0e\x1c\x64\xd8\x87\x1a\x58\x90\xca\x58\x5c\x4e\x78\x83\x3e\x7d\x9f\x4c\x25\x83\xd0\xe6\x5e\x1a\x58\x10\x08\xbc\xd5\x65\x46\xf8\xfa\xa6\xb2\xb1\xd6\x97\x66\xf2\xd2\x4c\x3a\xc0\x6b\x26\x41\x53\x4f\xbf\x2e\xe7\xb2\x41\x98\x34\xba\x34\x9d\xd7\x37\x97\xed\x9d\x3b\x97\x0d\xd2\x9d\x1f\x2f\x33\xc7\x20\xad\x41\xb8\x0c\x91\xc1\x4a\xbf\x1b\x2d\x2c\x48\xe7\x73\x2e\xf3\xcb\x20\x15\x67\xb9\x9c\xde\xbe\x14\x54\x9f\x9e\x5f\xab\x0b\xc2\x74\xd3\x65\x88\x0c\xc2\xd8\xf4\x72\xca\x1b\x34\x33\x74\x97\x2b\x48\x41\xb8\xde\xe0\x32\x42\x06\xdd\x6d\xd2\x2e\x23\x64\x90\x43\x63\xa1\x4d\xbf\xbe\x5d\x02\x7d\x26\x4e\x82\x83\xa6\x10\x7f\x5d\x5a\x75\x90\x7a\xb4\x97\xb3\xe0\x97\xba\x0c\x1a\x5d\x0d\x3d\x48\x57\xbe\x5c\xda\xf9\xcb\xd5\x1e\x34\xf6\x36\xc1\x0c\x5a\x22\x3f\x5e\xb7\xf1\x36\x58\x49\x8a\xe2\x36\xb8\xbe\xdd\x7c\x0f\xa5\xc4\xba\x4d\x27\x83\x70\x1b\xf9\xdb\x74\x32\x48\x57\x47\xdd\x4e\x53\xdf\xdb\x77\x03\x9c\x4d\x17\xe1\x76\x52\x5a\x2d\x9f\xdb\x58\x1d\xa4\x5b\xe2\xde\xfa\x08\xa0\x23\xb6\x5f\xb7\x89\x62\x90\x5a\xdd\x5b\xb7\x01\x84\x1b\x3d\xdf\x86\xef\x20\xfa\xf7\xc3\x9f\x87\xe8\x33\x3e\x8a\xdb\xa9\x65\x10\xdb\xf0\x90\xa7\x27\x9f\xdb\xf1\xa3\x6f\xf3\xb9\xa0\xbb\xcd\xd3\x6d\x3e\x17\xa4\xbb\x0c\xdd\xe6\x73\xef\xfe\xdd\x25\x0d\x33\x7a\x07\xdd\x88\xe5\xd6\x53\x01\x39\xc8\x40\xdd\x7a\x25\x20\x5f\x43\xff\xa7\x6d\xbe\x4d\xf7\x82\xff\x9e\x98\x3e\x0b\x48\x0b\xb1\x6f\x67\x9b\x6f\x67\x9b\xc9\x30\xdc\xc6\xf6\x20\x5d\x94\x7f\xeb\xc5\x80\x30\x8f\x72\xeb\x9f\x80\x70\x73\xd9\xdb\x6c\x2f\xe8\xee\xfb\x70\x9b\xed\x05\x7d\xda\x08\x3d\x8f\xdb\x99\x65\x37\x46\xbc\x75\x3d\x40\x3a\xab\x78\xeb\x5a\x80\x1c\x18\x87\x5b\xd7\x02\x44\xda\x2d\xfa\x11\xe0\x3d\x19\xc7\x8c\x91\x41\xba\xd6\xea\x36\x46\x06\x39\x6c\x99\x31\xf2\xed\x9e\x81\xe6\x8e\x6f\x63\x64\xd0\x9c\x8d\xbf\x8d\x91\x41\x77\x77\xb3\x5b\xe7\xe2\x36\x46\x26\xba\xbb\xdd\xf9\xe1\x56\xc5\x9c\xd4\xca\xed\xa4\xf1\xed\xfa\xc8\xe1\xe9\x7d\xb9\x3e\x17\x84\xbb\x34\x44\x06\xe1\x3e\xf0\xb7\x21\xf2\xed\x32\x47\xdb\x65\x84\x0c\xba\x9b\x2d\xdf\x4e\xfd\x82\x54\x2a\xe1\xd6\x43\xb8\x0d\x87\x1d\xd1\x6f\xfd\x01\x90\x23\x3c\xe4\xf9\x5f\xac\xf4\x25\xd0\x1d\x00\xdd\xc9\xc1\xdb\x70\x18\xb4\x30\xac\xbd\x75\x11\x40\xac\xf2\x97\xde\x25\x4b\x1f\x07\x21\xf2\xad\xf1\x07\x39\xf0\xff\x6f\x8d\x3f\xc8\x41\xfe\xee\xd6\xf6\x83\xe5\x96\x11\xb7\xb6\x1f\x0c\xf7\x6b\xbb\x35\xf4\x20\xac\x52\xbc\x35\xf4\x20\xac\xf4\xb8\x4d\xd8\x82\xf5\xbd\x17\xc6\xc3\xb7\x4a\x89\xb6\xcb\xe0\x17\x34\x67\x88\x6f\xc3\x5a\x90\xdf\x63\xd3\x5a\x83\x1c\xe1\x0f\x3d\x3d\xc5\x62\xee\x4e\x7a\x6b\x4e\x6f\x37\x51\xd2\x06\xde\x46\xa7\x20\x76\xef\x48\x7b\x7a\xbb\x49\xef\xf7\xfa\x6b\x50\x6f\x0d\x2a\x19\xa2\xdb\x88\x15\xa4\x85\xcb\xb7\xd3\xb5\x20\xd5\x27\xbb\xb5\xb1\xe0\x3d\x19\x4f\xc4\xc0\x16\xa8\xb5\x5a\xb7\x76\x17\xe4\x18\xb6\xcc\xd6\x52\x55\xa6\xca\xd1\xad\x29\x06\xed\xbf\xc1\xc9\xfc\x32\xe8\x3a\x5a\xb7\x71\x2d\xc8\xe1\x07\xa1\x25\x06\x69\xe9\xef\xad\x25\xbe\xef\xaf\x0c\x8f\x7b\x32\x8a\x05\x61\x92\xfe\xd6\x12\xdf\x5a\x62\x32\x5c\xb7\x96\x18\xb4\xd0\x9f\xbc\x4d\x43\x83\x1c\x8e\xb7\xda\x58\xd0\xdd\xad\xfe\x36\xe7\x0c\xd2\xda\xe2\xdb\x45\x90\x20\x07\x29\x96\x5b\x83\x0a\x12\xb1\xfc\xba\xad\x85\xbf\x55\x5d\x9c\xbe\xff\x1a\xd9\x5b\x23\x4b\x60\x7e\x6b\x64\x41\xeb\xdf\x7f\xd9\xb3\x8f\x3d\xeb\x7f\xd9\x56\x4a\xe6\x75\x72\x6e\xed\x29\xe8\x6e\x6f\x7e\x3b\x21\x0c\x96\x4b\x91\x6e\x4d\x2c\xe8\x7a\x25\xb7\xb5\xf0\x20\xdc\x3d\xf4\x76\xf5\xe4\xed\xbe\xbb\x0e\xce\xae\x9e\x04\xcb\x6d\x98\x6e\x27\x92\x41\xba\xc5\xeb\x6d\xc2\x1c\xa4\x7b\x0b\xdf\x26\xcc\x41\xb8\xea\xf5\xb6\x8c\x0d\x2c\x17\x65\x3d\x26\xcc\x41\xb7\x08\xe4\x71\xdf\x86\x47\x8d\x70\x9e\xe4\x63\xd4\x0f\xba\xcb\xa2\x1f\x17\x3c\x82\xee\xa2\x8c\x47\x67\x00\xe4\xe0\xa9\x3d\xfa\x02\xa0\x1b\x95\x3f\x06\xfd\xa0\xb9\xa7\xec\xe3\x6c\x30\x48\x57\xa0\x3f\xda\xf8\x47\x95\x47\x57\x8b\x3d\x1a\xf9\x47\x23\x8f\x7f\xfc\x58\x78\x06\xba\x63\xcf\xa3\xdd\x07\x4d\x09\x90\xc7\x4c\x3e\x48\x67\xc0\x1e\xed\xfe\xa3\xdd\xc7\x8b\x7b\xcc\xda\x83\x66\xee\xfd\x31\x6b\x0f\xc2\x55\x7e\x8f\x93\xc2\x4f\xff\x06\xdd\xf9\xb7\x61\x7e\xcc\x56\x80\x54\x1f\xe9\x31\x5b\x01\xd2\x4d\x1c\x1e\xdd\x0e\xd0\x5a\xf8\x5f\xe5\x21\xcc\x13\x83\xc2\xe3\x6c\x00\x58\xee\x5f\xf4\xe8\x9c\x80\x66\x02\xff\xd1\x13\x79\xf4\x44\xb0\x1f\x8f\xeb\x01\x40\x57\x72\xf1\x71\x25\x25\x48\xf4\x60\xeb\xd1\x5f\x01\xa9\xda\xe1\xe3\x4e\x12\xa0\xbb\x6b\xe7\x63\x12\x05\xb4\x70\x02\xe5\xd1\xd5\x78\x74\x35\x18\x6d\x1f\x67\x16\xc0\xd2\x3d\x78\xcc\x98\x80\x74\x4f\x90\xc7\x45\x03\x60\xb9\x22\xe7\xd1\xfb\x00\xa9\x64\xda\x63\x2a\x04\xb4\xcf\x49\x79\x9c\x6d\x00\x69\xdd\xc2\x63\x45\x1c\x08\xc4\xae\xeb\xb1\xd2\x1f\xa4\x5b\x78\x3f\x26\x51\x40\xba\xc1\xc8\x63\x59\xff\xe3\x2c\xb2\x19\xe2\xc7\x29\x00\xd0\x9c\xf3\x7e\x9c\x30\x06\xdd\xcd\x3d\x1e\x67\x00\x40\x57\x0c\xe3\xd1\x6f\x79\x4c\x89\x74\x0f\xd9\x8b\x4c\x0a\xa8\xd2\xf6\x58\x6b\x0f\x42\x9d\xb3\xc7\x99\x60\x90\x0a\xa4\x3d\xba\x15\x20\x51\xa0\xad\x47\xb7\x02\x84\x05\xa4\x8f\x69\x0c\x90\x6a\x1b\x3e\xe6\x2c\x40\xba\xf3\xff\x63\xe2\x01\x0c\xb7\xd0\x79\xcc\xb2\x83\x6e\x6d\xcc\xe3\xe4\x30\x08\xa5\x3c\x1e\x3d\x0d\x90\xd6\x4b\x3c\xfa\x06\x20\xcc\x02\x3c\xd6\xc6\x83\x74\x47\x82\xc7\xf4\x01\x68\x4a\x0c\x3d\x3a\x02\xa0\xeb\xee\x3c\x26\xc6\x41\x1a\xe5\x3e\x5a\x7d\x10\x8a\x08\x3c\xce\xf9\x82\xee\x5e\xab\x8f\xb5\xf1\x20\x2d\x32\x7d\x0c\xf8\x41\x73\x69\xc2\x63\x21\x3c\x48\xb7\x2d\x78\xcc\x01\x80\xb4\x5a\xe2\x31\x05\x00\x5a\x38\x91\xfa\xe8\x55\x80\xfc\x86\x42\xbd\x0a\x90\x48\x9b\xd7\x63\x55\xfa\xa3\x40\x21\x11\xd5\x63\xb2\x1c\xe4\x37\x3a\x1a\xf0\x83\x70\xbe\xe4\x31\x94\x07\xa9\x2f\xfe\xe8\x68\x80\xe5\xc2\x91\xc7\xc9\x62\x90\x6e\x72\xf0\xe8\x67\x80\x74\x67\x92\x47\x37\x03\x04\x8a\xd8\xf5\xe8\x53\x80\xf7\x9d\xa6\xf9\xc6\xf2\x20\xf5\xfc\x1e\xfd\x8c\xe7\xf3\x33\xba\x67\xb3\x33\x2e\x53\x11\xf4\x85\x7e\xc6\xa3\x9f\xb1\x7b\x32\xdf\xa7\x4b\x67\x1c\xe3\xf4\xe8\x54\x3c\x6e\xcc\x6b\xd3\x0c\xf9\x41\x7e\x1f\x8d\x21\xff\xa3\x53\xe1\x6b\xa7\xb7\x00\xda\x17\xac\x3c\x86\xe4\xa0\xbb\x4f\xe5\xa3\xb7\x00\xba\xc2\x3f\x8f\x7e\x00\x68\x5f\x1a\xe3\xd1\x76\x3f\xda\x6e\xf2\x4a\x8f\xe1\xf1\x63\x78\xec\x63\xd2\x50\x83\x74\xf9\xd0\xe3\xa2\x35\x10\x6e\x90\xf2\x68\x95\x41\x5a\x81\xf3\x68\x95\x41\xba\xe4\xe7\xb1\x70\x0b\xbc\x9d\xe1\x31\x1b\xfb\xe3\xe3\x25\x1f\xf8\x58\xcc\x05\xd2\xa2\x9f\x9f\xb1\x36\x68\xce\x6a\xfd\xac\xe5\x02\x61\x0d\xe4\xcf\x1d\x96\x40\xef\xdf\x7f\xed\x1e\x22\x56\x61\x50\xf9\x99\x8c\x07\xe3\x3b\x64\x54\x0d\x72\x90\x5b\xfc\x69\x83\x41\x5a\x24\xf7\xb3\x48\x0b\x34\xab\x14\x7e\x9a\x65\xd0\x5d\xc7\xf6\xd3\xde\xfe\xda\xf7\xae\xd0\x0a\xed\x26\x88\xe0\x95\xfa\x69\x24\x41\x43\xe8\xba\x7e\x1a\x41\x30\xdc\xac\xf4\x67\x08\xfd\xeb\xdf\xc9\x3c\x76\x7a\x8c\x44\x9c\xed\xd7\x72\x81\xb0\xc2\xf5\xa7\x4d\x02\xef\x2f\xb9\xa6\x2b\xfe\x41\x8e\xfd\x1f\x94\x1e\x7f\x06\xe2\x20\xad\x2e\xfb\x19\x88\xff\x9c\x32\x70\x77\xdc\x9f\x96\x0d\x74\xb7\x8b\xfb\x69\xa0\x40\x7e\x8f\xc7\x24\x3f\x48\x57\x1e\xfe\x8c\x98\x41\x5a\x46\xf5\x33\x3c\x06\x4d\x75\x87\x9f\x96\xe7\xe7\x1e\xc0\x0c\x15\x3f\xa7\xa3\x41\x53\x1e\xe7\xa7\xe1\x01\x69\x0a\xeb\x67\xc0\x0c\xde\xb6\xd2\x57\x1a\x23\x90\x4e\x2f\xfd\x34\x46\x3f\xb7\xcf\x6f\x9e\xdf\xe6\x7f\x41\x34\xa3\xcc\x4f\x03\x05\x9a\x23\xe2\xcf\xd4\xfb\x4f\xb5\xe2\x49\x18\xf7\x33\xb0\x06\xdd\x7c\xc9\xcf\x20\x1a\xa4\x91\xdd\xcf\x9a\x6a\x90\xf9\xfd\x97\xd7\x24\x3c\x76\x8b\xe7\x9f\x76\x0c\xa4\x65\x24\x3f\x33\xf4\x20\xdc\x2e\xf3\x67\xc4\x0c\x52\x75\xd9\x9f\xe1\x31\x48\x4b\xa1\x7e\x66\xe3\x41\x5a\x51\xf6\xb3\x32\x1a\xa4\x13\x00\x3f\x93\xf1\x3f\x2b\xa3\xdd\xea\xe4\xa7\xb9\x03\x69\x7d\xcb\xcf\x6c\x3c\x48\x8b\xa8\x7e\x5a\x40\x90\xe6\xd4\x7f\x4e\x33\x83\x5e\xf6\x8e\x99\x77\x90\x56\x72\xfd\x0c\xb5\xc1\xca\xef\xbf\x7c\x48\xcb\x14\x0c\x41\xfa\xcf\xd4\xfb\x6f\x7d\x2d\xf3\x02\x76\x19\xb1\xb6\xf9\xb6\x9f\x15\x53\x20\x8d\xe5\x7f\xa6\xe3\xc1\xfb\x4b\x2e\x6a\xa1\xf5\x4f\x2d\x62\xa7\x31\x7f\x16\x56\x81\x96\xdf\x21\xdb\xc6\x2e\xfb\xa1\x84\xe5\xcf\xec\x3b\x78\x7f\xca\x55\xcd\xab\x83\x34\x06\xf9\xb9\x35\x3e\x48\x43\xcc\x9f\x13\xd7\x20\x8d\x7a\x7e\x96\x5a\xff\x14\xf2\xb3\x8c\xf7\xa7\xe9\x05\xa9\x73\xf4\x33\xaf\x0e\xc2\x7d\x64\x7e\xe6\xd5\x41\x1a\xe2\xff\x0c\xde\xc1\xb2\xde\xe4\xa7\xe5\xfd\x7d\xeb\xc1\x88\xde\x7f\xe6\xda\x41\x1a\xe4\xfc\x8c\xd4\x41\x33\xfd\xfe\x33\x19\x0e\xba\xda\x8a\x3f\xed\x2c\x48\xb3\x35\x3f\x8b\xb2\x40\xb8\xb1\xc5\xcf\xd8\x1d\xa4\x4e\xed\x4f\x63\x06\xf2\x7b\xc4\x06\xcd\x20\x75\x6a\x7f\x06\xc8\x20\xbf\xe6\x1b\x0d\x83\xb7\xf9\xfe\xd2\x97\x83\xc4\xf4\x37\x74\x6a\xf2\x40\x1b\xdf\x08\xe4\x74\x30\x48\xe3\x80\x9f\xc9\x6a\xd0\xad\x0d\xfb\x19\x47\x83\xb0\x1c\xf3\x67\x1c\xfd\x33\x8e\xb6\x19\x86\xbe\x20\x8c\xb6\x7f\x9a\x4f\x90\xba\x21\x3f\x43\x5f\x90\x4e\x20\xfe\xb4\xa8\xa0\xab\x59\xf9\x33\x1a\x06\x69\x71\xcd\xcf\xd0\x17\xa4\xd3\x9f\x3f\x43\x5f\xb0\xfe\xfb\x2f\xfb\xf5\xc5\x74\x39\xf1\xcf\x38\xf7\xe7\xca\x70\x2b\xa4\x7e\x06\xba\x20\x5d\xf0\xf4\xd3\xc8\x82\x24\xf1\x36\x37\x2c\xaa\x48\xf6\xee\x9c\x1b\x81\xae\x58\x34\x7f\x6e\x58\x54\x31\xd9\x82\x66\x6e\xc4\xbe\x62\xd1\xfb\x73\xc3\xc8\x8a\xe4\xbb\x99\x1b\x51\xad\x48\x46\xf1\xb9\x61\x77\x45\xb2\x3b\xda\xdc\x9a\x8d\x68\x36\x62\x72\xc8\x46\xb0\x3f\x0f\x5f\xcd\xdc\xd8\x05\x59\x24\x22\xcf\x73\xc3\xc8\x8a\x64\x91\xe6\xdc\x9a\x57\x64\x0e\x1c\x3d\xf0\xb9\x11\xd4\x8a\x44\x90\x7a\x6e\xe4\xb7\x45\xf4\xef\x90\xed\x22\xce\x45\x25\x79\x6e\xdd\xdb\x46\x5e\x8f\x5d\x30\xe6\xd6\xbd\xed\x17\x9d\x7d\xa8\xe6\xd6\x6d\x57\x67\xdc\xf2\xb6\x31\xc4\xa2\x97\x9d\x43\x71\xb2\x48\xd4\x86\xe7\x86\x55\x15\x99\x83\x9e\x08\xbb\x30\xbe\x07\xf9\xf7\x56\xd9\x73\x0b\xaf\xe5\x52\x72\x96\x30\xcf\x2d\xbc\x3d\xad\xee\xe0\xa9\x0e\xbb\x6a\xf8\x05\x79\xcb\xc3\x9f\x0e\x5d\x3f\x3a\x39\x7d\x14\xc9\xa3\x48\x0f\x0d\x0f\x39\x44\xda\xf1\xe9\x3d\xb3\xcf\x3e\x0b\x24\xa6\xf2\xff\x73\xfb\x4c\xa5\x1d\x48\xbe\x59\x24\x1a\xaf\x53\xc9\x7e\xf1\xfe\x1b\x6d\x2b\x9f\x19\x9b\xe8\x85\xaf\x57\xd9\xb4\xfa\xee\x8a\xce\x29\x9f\xd0\x17\xcd\xf1\xb4\xa7\xbd\xaa\xaa\x7e\xe3\x02\xd3\xa6\x4d\x2a\x95\xcb\xff\xf2\x64\x93\xfd\x6f\x1b\xb7\x3e\x6d\xed\x74\xb5\xbd\x87\xec\xb4\xe9\x0d\x78\xef\xcb\xee\x70\xcb\xe0\xe9\x1d\x2c\x5f\xcd\xe5\xf7\x41\x77\x2c\x1f\x1b\x52\x30\x9b\x3d\xb4\xec\x6f\x2a\xa4\xd8\x5e\x71\x6e\xcb\x0b\xb8\xf4\x67\xa7\x65\xbb\xaf\x00\x33\xc4\x6c\x85\x3f\xb7\xdd\xd3\x3b\x1d\xcc\x36\x5d\x73\xdb\x3d\xff\xce\x97\xe5\xa1\xc3\x3e\x3b\x28\x85\x0e\x7a\xfb\xf0\x36\xa9\xce\x45\x0a\x69\x6e\x87\xb7\xe9\x0e\xbb\xdf\x7f\xd9\x0a\x66\x6b\x59\x14\x3a\xb7\xc3\x8e\x25\x78\xa3\x00\x6e\xaa\x41\x2f\x92\x1d\x23\xe7\x76\xfa\xea\xbb\x34\x67\xda\xd8\xd3\xce\x26\x27\xcc\xde\xbc\x73\x3b\x6d\x2b\x33\xb8\x6c\xb8\x36\xb7\xd3\xbe\x38\x91\xc2\x5f\x74\xe2\x69\xf3\x4f\x77\x2c\xa3\xc7\x2e\xcf\x85\xd4\x1a\x3b\xf2\x4f\xb5\xe4\x45\x92\xdd\x9f\xdb\x65\x5b\xa9\x31\x22\xc9\x3d\x95\x92\x9f\x9b\xb3\xa2\xd3\xf6\xdf\x9e\xec\xd6\x9e\xda\x19\xb7\x2d\x23\xcb\x9a\xbe\xb4\xb7\x5d\x66\xb1\xef\xf4\x06\x6e\xfb\x8c\xd9\xcd\xf4\x05\xba\xbd\xa8\x36\xc4\x17\xf4\xe7\x9b\xe1\xf0\x9d\xdc\xc0\xcf\xf3\xff\xdc\x82\xd8\x43\x9e\xeb\xe7\xb9\xde\x43\x8d\xb9\x41\xb1\x1c\x71\x9b\x63\x69\xfb\xf2\x88\xe9\xb1\xdd\x63\x36\x76\x70\xe8\xe7\x21\x22\x5e\x86\x49\xd4\xcb\x3f\x34\xd6\x90\xcc\xd6\xfc\x61\xf3\x87\xfe\xd7\xe1\xa1\x03\x61\xc6\xe2\xd0\xe5\x21\xde\x95\xe2\x10\xd1\x89\x78\x5b\xb1\x73\xac\x79\xcc\x52\x24\x4e\xe6\xa0\x08\x3a\x91\xfe\x54\x77\x5c\x4c\xaa\xc3\x66\x0b\x7f\xe8\x06\x1a\x9a\x8c\x16\xfe\x32\x50\x2b\x65\x68\x56\x78\x5c\x74\xe2\xfa\xd9\x86\xff\x35\x30\x2c\x18\xa9\x36\xbc\xa5\xc1\xe7\xc5\x17\xa7\x32\xb8\x78\xcf\xcf\xc9\x1c\xce\x40\x92\x26\x9e\x8a\x7e\x8b\x4e\x9d\xc3\x6c\xec\x41\x21\xde\x5f\x76\x8e\xa5\xc7\x70\x42\x8a\x7b\x4a\x9b\xc1\x86\xeb\x28\x4a\xcd\x96\x36\x83\x2a\x20\x7c\x84\xd9\xd2\x4b\x9a\xbf\xc2\x98\xb5\xb2\x33\xac\x60\x9d\xbc\x66\x2a\x81\x8b\x44\x84\x6b\x36\xc7\x41\x10\xc8\xe2\x4f\x95\xc0\x45\xb2\xe7\xdd\x6c\x65\x2b\x8c\x18\xa6\xff\xe5\xcb\x52\x6c\x16\xbc\xe8\x9f\xb2\x61\xee\x4b\xda\x6d\x85\x0d\x2b\xfb\x82\x2e\x2b\xfb\x02\xa9\x2e\xd6\x6b\xcc\x36\xfd\xe1\xd4\xdc\xf8\x96\x39\x32\x82\x4e\x7a\x6f\xb6\x65\x5b\x29\x13\x4d\x9f\x12\xce\xba\x48\x24\xd0\xa6\x22\xdc\xa2\xcd\x45\x2b\x96\x6f\x2c\x79\x2e\x0a\x3c\x66\x73\xc4\x6b\x9f\x13\xee\x27\xb1\x7b\xfe\x17\x81\x04\xe5\x6c\x8e\x82\x20\xd3\xb7\xcc\x41\x10\xac\xbe\xfc\xa1\xe7\x7f\xd1\xc3\xd7\xff\xb0\x61\x07\x0d\xb3\x7b\x1c\x17\x9b\xe3\x22\xc3\x4f\x3b\x7d\x3d\xf1\xa3\x59\x6e\x32\x9b\x23\x1e\x78\x1b\x46\x63\x1d\xcb\x9a\x1e\xf2\xe2\xfc\xa7\xbd\x48\x05\x49\xae\xbf\xd5\x1f\x67\xbb\xbc\xd6\x8b\x45\x58\x36\x95\xbd\x16\xc1\x7a\xa9\xa9\xa0\xb5\x88\xe6\xa5\x2e\xaf\x7e\x79\x75\x1a\xe4\x80\x08\xde\x46\xf2\x42\x5f\xb6\xe8\xb2\x45\xf4\xde\xed\x3b\xc8\x76\x4e\xec\x98\x33\xdb\x6d\xbf\x33\x5f\x95\xf6\x9e\xe3\x26\x78\x4f\xe6\x2f\x7d\x14\x7a\xe8\xcb\x5f\xfa\x28\x5e\x34\x56\xb8\xcd\x76\xfb\x5a\x7e\xd3\x5a\x7e\x30\xb7\xef\x25\x05\x26\xa8\x1c\x4d\xf5\xb1\xc5\xc0\x83\x9e\xed\xb1\x65\x6c\x83\x90\xbe\x24\x8f\xe7\x7f\x4c\x9e\x70\xe7\x8f\xe7\x57\x56\xc4\x73\x3d\x9e\x9e\xa5\x89\x6c\x3e\x3e\xdb\xe3\x73\xd5\xf5\xde\x3d\xbd\x2f\xef\xa7\x09\xc9\x1d\x3d\x76\x0f\x9a\x90\x14\xf2\xcf\xf6\xf3\x8a\xec\xc6\xc9\x56\x8c\xb3\x39\x76\x83\x4c\xbf\xed\x9f\x7d\xcd\x3a\x8a\x74\xec\xfb\x79\xc5\x9f\x57\xa4\xa9\x3f\x4f\xff\x63\x19\x91\x63\xdf\xcf\xdb\x26\x71\xc5\x8a\xa7\xa9\x24\xb6\x68\x63\xf2\xbd\x74\x9d\x6a\x10\x14\x88\x4e\xd5\xae\x45\x22\x35\x31\x95\xb6\x16\x49\x19\xef\x54\x54\x5a\x24\x95\x9f\x53\x51\x69\xf1\x9e\xff\xed\x9e\xae\x5f\x0a\x92\x7a\xba\xa9\x10\xb4\x08\x84\x25\x66\xef\x9e\xcc\xa5\x75\x93\xb1\xa9\xeb\xbe\x82\x64\xb3\xb1\xd9\xbb\x17\x60\x06\x84\x1d\xf1\xa7\xe2\xd0\x22\xd9\x3a\x7d\x2a\x0e\x2d\x92\x9a\xd1\xd9\xa9\xce\x10\x9d\xd5\x3a\x53\x71\x68\x11\xba\xe8\x6a\x43\x8b\xb7\x15\xfe\xd2\xc6\x22\xd9\xb8\xc2\xf3\xdb\xd8\xb0\x61\x83\x43\x36\x8c\xe5\x76\xd3\x5e\xd4\xfb\x05\x9d\xe5\xb5\x53\x05\xe9\x89\x5c\x74\xd6\xc6\x21\x72\x4e\xe2\xbd\x24\x27\xd3\xf6\x80\x64\x33\xe7\xa9\x34\xb4\x08\x36\x08\x9c\x4a\x43\x8b\xa0\x06\x65\xaa\x03\x2d\x92\xfd\x97\xa7\x3a\xd0\x42\xb1\x9f\xd9\x35\x3d\x20\xd0\xdb\x9a\xea\x3b\x8b\xb7\x15\xf4\x8f\xd6\xe8\x53\x73\xfe\xee\x49\x87\x1b\x24\x9b\x13\xcf\xae\x39\x02\x8d\xd2\xd5\xa9\xc0\xb3\x68\xe5\x5b\xa0\x85\xea\xf9\x09\xa7\x72\x03\xba\xea\xdd\x4d\x8f\x78\xd9\x7b\xda\x41\x2f\xe2\xfb\xaf\xb2\x83\xd8\x74\x3b\xec\x7f\xed\x18\x18\xc8\xb6\xcc\xae\x39\x02\xc1\x74\xff\xec\x9a\x23\x10\x9a\x8b\x3e\xfd\xe1\x64\x3f\x11\xac\x5d\x27\x5b\x25\x92\x0d\x83\xa7\x3a\xd0\x22\xd8\x62\x64\x76\xad\x11\x68\x0b\x3b\xa0\x0e\xb4\xc8\xf2\x8a\xcb\x57\x91\x55\x7a\x6c\x59\x3d\xbb\x9e\x3b\x48\xb6\x81\x9d\xea\x40\x8b\x64\x7f\xda\xd9\x97\xad\x7f\x91\xe5\xdb\xb9\xbc\xe2\x97\x5f\xf2\x92\x1a\x2d\x90\xe5\xf9\x77\x5f\x95\x9d\x57\xc5\x67\x79\xd8\x8a\x43\xe9\x69\x2e\x79\xf8\xc3\xc3\x1f\xd2\x15\x87\x97\x3c\xbc\x24\xa7\xd7\x40\x81\xb6\xb0\x59\x5d\xc7\xbd\xbb\xce\x7e\x7e\xc7\x7c\x46\x6c\x23\x44\x81\xd7\x54\x70\x59\x2c\x63\xe2\x7e\x7a\x49\xa6\x5d\xd8\xe7\x70\xf6\xd3\xae\x3e\x75\x90\x97\xc7\x6c\xff\xe9\xb6\xa3\xfe\xd2\xee\xc7\xda\xd5\x77\x7e\xfb\xfa\x74\x74\xe3\xc6\x2f\xef\x92\x14\x51\xb0\x38\x63\xaa\xc2\x2c\xda\xf7\x12\x68\xe2\x40\xb2\x57\xdd\x54\x98\x59\xe4\xd7\x3f\x97\xad\x20\x47\xc4\xfa\xa9\xa9\x08\xb3\x78\x1b\xeb\x2f\x6d\x06\x26\xae\x6c\xac\x26\x4e\x1d\xe4\xfd\x3b\x64\x2b\x6e\xef\xfc\xef\xbc\xf6\x54\xed\x58\x34\x9d\x48\xa5\x8d\x45\x37\x96\x50\xda\x58\xf4\x0d\x87\x4e\xd1\xe2\x89\x42\x71\x56\xe7\xb9\x3e\x5e\xfd\xf1\xea\xbc\x10\x8f\xe7\x42\xbd\x82\xc5\x79\x53\x1d\x63\x11\xdd\x8f\x4a\x9b\x05\xda\xf4\xb5\xfc\xd9\x2e\xe6\x51\xd8\x21\x6c\xf6\x9f\x03\x00\x7b\x43\xef\xf6\xa7\x36\x0b\x24\xdb\x8d\xcd\xae\xcd\xea\xbf\xaf\x66\xcd\x93\x79\xc9\x9f\xfb\x5e\xd0\x0a\xc3\x12\x10\xac\xfb\x99\x61\x58\x12\xee\xde\x8c\xd0\xed\x54\x30\x58\x24\xab\xa0\x66\xb0\xfa\x4f\x24\x5b\x2e\xcd\xa0\x00\x41\xa4\xc9\x0e\x45\x7f\x45\x2c\xc6\xd1\x30\xe0\x00\xc9\x4e\x56\x33\x34\x5a\x20\xd9\x71\x69\xaa\x0c\x2c\x02\x21\xe3\x19\xdd\x86\xa1\x12\x61\xe2\x24\x28\x00\x10\xc9\x46\xae\x53\xb1\x60\xf1\x36\x9f\x86\x31\xdd\x2f\x92\x7d\x8d\x66\x68\x00\x41\xa7\x2a\x68\xaa\x29\x2c\x82\xe5\xd4\x33\x98\xdb\x17\x6d\x2d\xcf\x6f\xc3\x5e\x24\xbb\x2b\xcd\x30\xc4\x89\x2f\xc4\xc1\x57\x8a\xb0\xb1\xc8\x44\xb0\x4c\x7a\x86\xd6\x2e\xc2\xc9\x6b\xff\xcb\xf3\x93\x9e\x61\x8f\xa4\xa9\xcc\xb0\x68\xdd\x86\x31\x69\x3f\x3f\x99\x61\xf6\xfe\x9e\x31\x3c\x3f\x75\x84\x14\xd8\xcd\x18\x76\x06\x75\x84\x6c\x52\x35\xc3\xa8\x07\x4d\xe1\x64\xc7\xa2\xa9\x5a\xb0\x48\x76\xce\x99\x61\x72\x06\xf4\xf0\x2e\xcb\x5e\x64\xbd\x00\xbb\xc5\xcc\x28\x7b\x8c\xf5\x02\x65\xf7\x1b\x5b\xc4\x97\x9b\xc1\x89\x0b\x13\x31\x20\x59\x7d\x37\xd5\x01\x16\x8d\x0a\xa0\x19\xd3\xb6\x4e\x1e\xdc\x77\xc8\x86\x4d\xc3\x3d\x7f\x68\x2b\x98\xb4\xa0\xd2\x66\x2a\x03\x2c\x92\x5d\x47\xa6\x32\xc0\x22\xcb\x77\xd8\x3c\x0f\x68\x83\xed\x37\xa6\x9a\xbf\xe2\x3d\xc6\x35\x8d\x67\x14\xfd\xdd\x71\x23\xc2\xa4\x4e\x2c\x6d\x2e\x3e\xa1\x3a\xc0\x22\x76\xaf\x60\xa2\x07\x34\xe6\x1e\x66\x2c\xdb\xc1\x1c\x05\xab\x9d\x67\x18\xbc\xc4\x97\xc2\xc1\xc0\x2a\xdd\x2b\x9a\x51\xa7\xa2\xbc\x13\xb5\xdd\xf7\xdf\xf8\x26\x0e\xff\xed\xf8\xda\xc1\xe9\x0c\x69\x40\xb3\x6e\x70\x2a\x92\x2b\x9a\x89\x05\x15\x71\xc5\xfb\x53\xba\x52\x63\x00\x06\x73\x49\x33\x8c\x73\x40\xb2\xab\xc8\x54\xe0\x56\xb4\xb1\xf0\xee\xc2\x6c\x4f\x98\xed\x59\x38\x81\x61\x1e\x07\x34\x45\x2c\xa7\x4a\xb8\x22\xd9\x5e\x63\xc6\xe9\x63\x40\x77\x69\xfc\xf7\x6f\x7e\xeb\x2f\x96\x79\x45\xd5\x71\x45\xb2\x4b\xc6\x0c\xed\x08\x68\xac\xd5\x9b\x61\x5c\x04\x92\xfd\x60\xa6\x52\xb8\x62\x99\x55\x8c\xcb\x96\x5d\xac\xaf\x63\xd8\x8b\xcb\x2b\xb2\x64\x6d\x73\x74\xd1\x8c\x84\x66\xc4\xaf\xc7\x74\x12\x78\xdb\xca\x2f\xb5\x23\x60\x99\x0e\x53\x1d\x57\x2c\x13\x70\xa1\xa1\x08\xf7\xaf\x5d\xbe\x45\xb7\x17\xa0\x40\xaf\x6c\xbf\x96\x02\x74\x0a\x80\xa6\x52\xb8\x62\x99\xf4\x8b\xc7\x37\xf2\xf9\xb6\x61\xa0\xb5\xc6\x45\x20\x59\xd3\x34\x55\xcc\x15\xef\x35\x79\x78\x8f\xb7\xce\x6e\x2c\x0b\xdb\xab\x8a\xae\x08\x8a\xc8\xa7\x22\xba\x22\x59\xbd\x33\xc3\x0c\x16\xc8\x72\xf8\xfa\xd9\x0c\x94\x0b\xc6\xc2\x4f\x56\x58\x57\x2c\xb3\x8a\xa1\x2d\x02\xc9\xfe\x10\x33\xb4\x28\xe1\x9c\x3e\x0b\xf1\x66\x18\x1a\x81\xc6\xcc\xd1\x1c\xec\x27\x2b\x5a\x55\xfc\x6d\xa2\x87\x76\x69\x6c\x5f\x93\x16\xc7\xd2\x63\xf4\x0c\x06\x59\xc5\x5e\x11\xfb\xf0\xd0\xf4\x10\x23\x4b\x7a\xf9\xdd\x43\xc8\xa5\xd1\x0b\x43\x1b\x37\xac\xcb\x5f\xb8\xee\xc3\x7c\xd9\xf8\x76\x64\xc3\xdb\x1e\x66\xc2\x40\xa3\xcc\xfc\xfd\xa3\x7b\xcc\x25\x33\x9d\x43\x36\xd7\x75\xe9\x3e\x8e\xa1\xb9\x1a\x9a\x2b\xbe\x55\xc5\x78\xc5\x32\x6f\xaa\x18\xaf\x78\x7f\xc9\x2d\x68\xc1\xc0\x32\x57\x3b\xb4\x60\x60\x99\x98\x55\xb3\x57\xbc\xbf\x1c\x1c\x7b\x3c\x86\xe3\xe6\x9d\x6a\xc2\x86\xf6\x6a\xe1\xec\x0e\x03\xb6\x61\xc0\x86\x71\x1a\xe1\x23\x0a\x96\x4e\x31\x00\x29\xf7\x2b\x9a\x33\x0c\xc3\xb0\x0e\x04\x75\x4e\x53\x05\x60\x11\xac\x09\x9e\xc3\xe9\x8c\xe1\x74\xc6\xb2\xd3\x0c\xeb\x40\xb2\x7b\xc6\x1c\xf1\xb5\x0c\x7b\x45\x70\x3c\x8c\xce\x40\x22\x33\x37\x87\xb6\x0f\xbc\x27\xa3\x37\x8c\xce\x86\xe2\x8c\xab\xfb\xd3\xd3\x63\x3e\x3d\x5e\xff\x41\x69\x9b\x78\x8f\xd1\x5e\xa7\x3a\x86\x85\x6c\x88\x12\xce\x61\xe8\x05\x92\x3d\x3b\xe6\xd0\x72\x8e\xfc\x2e\x41\xef\x1a\x7a\x81\x2c\xef\x3e\xbd\x2d\x6a\x0c\xd0\xb0\x99\x2a\x0f\x8b\xe6\x24\xc9\x30\x1a\x03\xc9\xde\x12\x73\xa4\x4f\x2a\x51\xd0\xf7\xe1\x19\x8c\x81\x34\x8c\x53\xb1\x58\x0c\x4a\xba\xe6\x30\x18\x03\xcb\xe4\xf8\xd0\xa4\x83\x64\xd3\x85\x39\xcc\x33\x82\x39\xbe\x43\x3e\x28\xc5\x8e\xd8\x31\x78\xaa\x75\x2c\x92\x4d\x29\xe6\xd0\xf2\x0f\x2d\x3f\x61\xdc\x70\xa2\x66\xd4\xd7\xb5\xc5\x31\x1b\x4b\x6d\x02\xab\x7c\xe6\xd0\x19\x18\x3a\x03\xc4\xaf\x63\xda\xd9\xf3\xeb\x6c\xda\x31\x6d\x2d\xeb\xe2\x11\x34\x9b\x0a\x27\x8b\x64\x6f\x86\x39\x0c\xf7\x86\xe1\x1e\x2e\xe1\x30\xdc\x1b\x6e\xc8\xb6\x7c\xd5\xb4\xf3\xc3\x15\x7f\xe4\x61\x86\x36\x7d\xac\xef\xc9\x71\x36\x0d\x38\x58\x26\xf7\x87\x06\x1c\x24\xdb\x17\xcc\xb1\x7b\x01\xe5\xf8\xcd\x3d\x8c\xdd\xef\x73\xf7\xfb\xc4\xcf\x1d\xbb\x8f\xd3\xa5\x75\x68\xf4\x4d\x95\x92\x45\xb2\x81\xc1\x1c\xa6\x29\xc1\x72\xe2\x61\x18\x2b\x8e\xe3\xbb\x02\x1d\x6e\xb0\x38\x0c\x16\x6d\xdb\xe1\x5d\x1d\xe1\xbf\xd1\x95\x06\x90\xc3\x00\x72\x79\x36\xdb\x76\x7c\x6d\xa3\x77\x75\x07\x86\xee\xc0\xc2\x17\x55\x40\x59\x34\x27\x8d\x86\xb6\x7f\x7c\xb6\x1f\xcf\x76\x68\xac\x87\x2a\x89\x8e\x4e\xa7\xb7\x60\x59\xff\xc2\x99\x1e\x9a\xe6\xa1\xe6\xcf\xc2\x0f\x57\xe3\x58\x24\xcb\xd5\xe7\xd0\xc4\x82\x64\xed\xf5\x54\xbc\x58\x24\x2b\xa8\xa7\x4a\xc5\xe2\x3d\x19\x77\xef\xec\x0c\x68\x6c\x08\x38\x87\x16\x76\x38\xc3\xbf\x1c\x8b\x34\xb1\x20\x59\xbc\x3c\x55\x34\x16\x41\xd9\xd6\x54\xd1\x58\x24\x6b\x97\xa7\xea\xc5\xa2\xa5\x1f\x95\x69\x46\xd5\x8b\x59\xa7\x3c\x87\x46\x17\x24\xc2\x4d\x73\x68\x4d\x87\xd6\xd4\x37\xf7\xf1\x2e\x1f\x3a\xa8\x39\xe2\xfe\x6c\x98\x16\x16\x37\x50\xc9\x62\x91\xac\x7b\x9d\xea\x13\x8b\x30\x12\x57\x9f\x58\x24\xab\x01\xe7\xd0\xe6\x0e\x6d\x2e\x01\x42\x3a\x77\x0f\x96\x53\x44\xa9\x7d\x05\xc9\xc2\xbf\xa9\xee\xb0\x48\x96\x0c\x4e\x65\x87\x45\xb2\x56\x6f\x26\xeb\xce\x44\xb2\x70\x6e\xa6\xc9\x48\x90\x73\xfb\x07\x5b\x9d\xac\x54\x13\x39\xb1\x87\xe9\xd4\x3e\xe8\x06\x9f\xd9\x6c\x23\x25\x75\x2c\x67\x9b\xe9\x6c\x3f\x48\xd6\xc6\x4d\x35\x8f\x45\x73\xb2\x2b\x35\xcb\xa0\x9b\xc2\x56\xf2\x58\x04\x7a\x52\x33\x9d\xda\x07\xc9\xca\xb8\x99\x46\x95\xa9\x1c\x21\xde\x9b\x2a\xc8\xa2\x85\xa1\x82\x32\xc8\xa2\xb3\xd3\xf9\x4c\x4d\x37\x68\x6c\xd8\x34\x53\xd3\x0d\x72\x7e\x87\x6c\xab\xa2\x3d\xf6\xba\x51\x25\x08\xc3\x5d\x95\x91\x45\xb2\xb8\x6b\xaa\x8c\x2c\x16\xeb\x00\x66\x9a\x55\x05\xd1\xbe\x43\xf6\x61\xb0\xe1\x1a\x46\x29\xb5\xdb\xa0\x6f\xf6\xa1\x76\x1b\x74\x07\x19\xf5\x93\x45\xdf\xd3\x43\x36\xf5\xc5\x60\xa7\xb3\x99\x1a\x64\x10\x1b\x36\x5a\xfd\x64\xd1\xc2\x9e\x70\xa6\x0e\x24\xab\xc9\x66\x6a\x90\x41\xb2\x4c\x6c\xa6\x09\x54\x90\x2c\x77\x99\xe9\xe4\x1d\x48\xd3\x1b\xe9\xe4\x1d\x48\xd3\x45\xa9\xd1\x06\x69\x8e\x25\x4d\xa0\xa6\x5a\x3c\xdf\x7f\xf9\x4a\x52\xa1\xce\x32\xae\xa9\xc8\xb2\x78\x07\x04\xda\x3a\xec\x56\xe5\x79\x18\x82\x55\x59\x16\x11\x3e\x6e\xeb\x1a\x40\xb0\x18\x6e\x2a\x96\x2c\x82\x55\xf5\x33\xb5\xeb\x20\x29\x0a\x9c\xa9\x5d\x07\xc9\x6a\xa3\x99\xda\x75\xd0\xf7\xe9\xe9\x6d\xeb\x8b\x6e\xf2\x24\x35\xe2\x20\x58\xce\x3e\x55\x59\x16\x41\x5d\xf6\x4c\x2d\x36\x48\x27\xe0\xd2\x99\xc1\x54\x78\x07\x1f\x5c\xe1\x65\xd1\xb4\xa7\x0a\x2f\x8b\xa4\x88\x79\xa6\x66\x1d\xa4\xf3\x9f\xa9\x59\x07\xf1\xbd\x73\x9a\x75\x90\x94\x35\x4f\x05\x9b\x45\x73\xa1\xe5\xcc\xf2\x8e\xa8\x55\xa4\x86\x79\xa6\xc6\x3f\x5d\xb7\x87\x6b\xab\xae\xb3\x68\x86\x62\xa9\xa1\x07\x3d\xfd\x4a\xcd\xfe\x82\x9c\xdf\x21\x6f\xd2\x7d\xf1\x9b\xbd\xaf\x3f\x00\x92\x22\xda\xa9\xd6\xb3\x88\xee\xd7\x60\xc2\x40\xad\xe7\xe9\x93\x34\x95\x9c\xce\x6c\xae\x61\xcb\x6c\x2c\xdb\xbb\x39\x87\xa1\x24\xf4\xfc\x24\xa1\x17\x79\x11\x25\xa1\x45\x52\xcb\x39\x73\xd9\x0c\xd2\xc4\x94\xdf\x4e\xb5\x9e\x45\x52\x18\x3a\xd3\x09\x50\x90\xd3\x47\xa2\x6f\x01\xc2\xc9\x72\xe5\x9f\x45\xb7\x30\x21\x9d\x26\x05\x7d\x12\xa9\xa8\x08\x2d\xde\x86\x71\xb2\xdd\xc6\xb2\x09\x9c\x59\xd0\x34\x31\x9d\xbb\xfe\x01\x19\x9b\x74\x36\x15\x24\x95\x9b\x33\x77\x5b\xc6\x46\x01\x94\x51\xce\xdc\x7d\x98\xec\x9f\x6f\x26\x23\x75\x36\x40\x4e\xdf\x8c\xc3\x67\xc2\x82\x00\x2a\x26\xa7\xd2\xce\xa2\xb1\x0f\xed\x4c\xb3\xd0\x20\xd9\xf2\x6a\xa6\x89\x07\x10\xc3\x21\xd7\xc4\x03\x48\x2a\x1c\x67\x9a\x98\x4e\x13\xd3\x0b\xaf\x39\x75\x48\x40\x52\xa8\x38\xd3\x2a\x13\x90\x54\xf5\x4d\xe5\x9e\x45\xff\x6c\x9f\x69\x07\x90\x96\x17\x28\xf7\x2c\x92\xaa\xc1\x99\x66\xb4\x41\xef\x0e\x6d\x66\x1d\x40\x4e\xc7\x6a\xb3\xd7\xaa\x3d\x4f\xad\xcf\x65\xbb\x58\x36\x90\x0e\xdf\xa6\xaa\x41\x67\x85\xc3\x4c\xfd\x1f\x90\x56\x59\xa5\x89\x08\x90\x46\x4f\xea\x38\x8b\xb4\xa2\x2a\x75\x89\x40\x67\xaf\xda\x99\x4e\xbc\x82\xbe\xf9\xf2\x58\xd6\x92\xae\x1d\xfc\x87\x0d\x3c\xa7\x62\xd0\x22\xad\xca\x52\x0c\x5a\xc4\xe6\xab\xa5\x5b\x05\xd2\xa2\x2c\xd5\x9e\x45\xec\xb6\x51\x17\x0a\xe4\xf4\x87\x26\x2e\xc0\xfb\x04\xe9\x03\x1d\xa6\x4f\xb4\x79\xf7\x97\x3e\x1b\x17\xe6\x23\x2c\x32\x95\x68\x16\x69\x39\x91\x72\xcc\x33\x29\x80\xfc\x3e\x04\x53\x12\xa0\xef\xdf\x0f\x3d\xbf\xd5\x8e\xcb\x97\xeb\x67\xbf\x53\xed\x68\xda\x3e\xcd\x7b\x83\xb4\x74\x2b\xcd\x48\x24\x33\xb3\x16\x95\xa9\xe3\x2c\xde\x93\x05\xc7\x9a\xc7\x78\x9f\x39\xbf\x7a\xcc\x22\xad\x8d\x51\x8f\x59\xbc\xbf\x1c\x1c\x3b\x3d\xc6\x48\x8a\xe7\x5c\xba\x51\xa5\x1b\xc5\x83\x55\x57\x79\x56\x33\x00\xe3\x3e\xcb\xb2\x1d\xf0\x1e\xe3\xa7\xba\x32\xe5\x26\x7a\xeb\xfb\xed\xcf\x63\xdc\x02\x6e\xa6\xd2\xca\xb3\xd8\x7d\xd5\xd4\xa2\xd2\xca\x22\x2d\xb2\x28\xfd\x16\x30\x59\x08\x30\x95\x56\x16\xe9\xf4\x87\x9a\xc9\xe2\xbd\x24\x37\xaa\x4b\x02\xd2\x9a\x03\xe5\x90\x45\x5a\x2b\xa1\x1c\xb2\x68\x63\xd9\x32\xfd\x08\x90\x16\x18\x28\x6b\x2c\x62\xe7\x9b\x51\xd6\x58\xbc\xbf\xf4\x98\xad\xd5\x91\x98\x1e\xb2\xb5\x6c\x72\x6a\xcd\x81\xba\xc6\xe2\xfd\x25\xb7\xae\xdb\xa0\xb0\xb1\x95\x4d\xa5\x8f\x50\xfa\x08\xe8\x75\x4d\x85\x8d\x45\x38\xf2\x94\x25\x3f\x20\x9c\x63\x2d\xa7\x5d\x41\x3a\x2d\x5d\x9a\x7a\x90\xce\x97\x2b\x4f\x3c\x95\x22\x76\x26\x59\x8d\x61\xf1\xb6\x8c\x5f\x6a\x9f\x4b\xfb\xcc\xf7\x5c\x26\xdc\x8b\x18\xdb\x99\xde\xd2\xf2\x82\x74\xe2\xaf\x34\xbc\xe0\x3d\x99\x17\xf0\x3d\x28\x03\x32\x1f\xb1\xa6\x57\x49\x61\xa7\xf9\xca\xb8\xbb\xbe\xb8\xdb\xee\x30\x31\x0f\xd2\x09\x36\x65\x86\xc5\xfb\x6f\x3c\x63\x6d\x6f\x69\x7b\x31\xe4\xa5\xa1\x2d\x0d\x2d\x83\xa7\x32\xc3\xc2\x65\xca\xb3\xcc\xcc\x83\x40\x04\x72\x96\x99\x79\x90\x6c\x7b\x33\xcb\x99\x5d\x10\xe1\xbb\x61\xa8\x0f\x82\x95\x21\xb3\x0c\xf5\x41\x3a\xad\x53\xda\x67\xb0\xbe\x07\x6c\xf0\xaf\x8a\xb1\x33\x31\xaa\x18\x8b\x68\x0c\xd7\xa5\x15\x2f\x73\xfc\x78\xa2\x0a\x1b\x8b\xce\xc2\xfa\xa9\xb0\xb1\x48\x67\x5d\x4a\x2b\x0e\xd2\xf9\x0e\x85\x8d\x45\x1a\x3e\x94\x26\x1b\xf4\x66\x17\xee\xb6\x8b\x05\xff\x4e\x2a\xa8\x75\x2c\xd2\xe9\x08\x55\x8c\x67\x69\x9d\x89\x09\x6b\xf7\x8a\x3b\xd5\x9d\xbe\xeb\xe6\x1a\xc0\xca\xef\xf4\x36\x62\x37\xc9\x47\x53\x0f\x6f\xfb\xf8\xde\x3b\x8f\x79\xc9\x83\x64\x23\xce\xa9\x92\xc5\x22\x86\x83\x9e\xb9\x01\x90\x8e\xda\x4a\x16\x8b\x9c\xc4\x9c\xe5\xb4\x00\x98\xda\x75\x55\x8c\x67\x9d\x36\x9f\x86\x99\x2d\x00\xbd\xf9\x8d\x68\x64\x41\x3a\xc5\x50\x1a\xd9\xb2\x0a\x6a\x78\xc8\xcf\xe6\xb2\xf9\xb6\xd5\x39\x62\x10\xdf\xc0\x65\xe6\x41\xb5\xe1\xee\xf7\xa0\xe1\x05\xad\xfb\xa5\x5e\xf6\x98\x1b\xd9\x2d\x07\x11\x8d\x31\x48\x67\x35\x4a\x63\x0c\xd2\x19\x00\x65\x8a\x45\x3a\x81\x51\x4e\x15\x83\x40\x3b\x6e\x96\x76\x14\x74\x27\xa5\x94\x29\x16\x19\xf1\x0f\x53\xd0\xa5\xe5\x05\xe9\x2c\x42\x59\x36\x05\xe2\x7b\xdd\x1e\x3f\x63\xe6\x9b\xcd\xfb\x97\xc6\x18\x34\x4b\x9d\x4a\x63\x0c\x82\x4d\x1b\x66\x39\x89\x00\xd2\x84\x7e\x99\xe2\x00\x69\xa6\xbe\x9c\x43\x00\x69\x8e\x5d\x45\xe4\xf9\x29\x22\x2f\x9f\xa1\x69\x0f\x10\x8b\x58\x48\x45\x64\x11\x66\xcf\x95\x3f\x16\xc1\xfa\xb5\xa9\xb0\xb1\xe8\xdf\x8b\xe4\x4c\x35\x48\x53\xec\x4a\x16\x8b\xf7\x92\x74\xa8\x16\x5b\x81\x62\x83\xc0\xa9\x75\x06\x9d\x15\x91\x73\x9a\xe3\x00\x69\xea\x7c\x9a\xfd\x07\xb9\xbe\x1f\x2e\x0f\x2d\x0e\x35\x0e\xed\x1e\xa2\x72\x72\xfa\xc3\xd3\x43\xa7\x6b\x24\x39\x74\x79\xc8\xfa\x8c\xb7\x5f\x95\x01\x16\x69\x2e\x5a\xcd\x5f\x91\xf6\x8e\x9a\xbf\xa2\x1b\x1e\x4d\x8d\x35\x08\x6d\xc5\xd4\x58\x83\x34\x2f\x3f\xcd\x3b\x20\x10\x9c\xe8\xb1\xce\xe9\x5c\x00\x48\x93\xfc\x6a\xf2\x8a\xb7\xc3\x3c\x56\x1e\xd3\xb7\x20\x93\xab\x2a\xef\x54\x82\xd7\x24\xb9\x12\xbc\x22\x36\xdb\x6f\x84\x0f\x9a\x03\xcc\x1c\x36\x76\xb0\xcb\x1c\x16\x4b\x6d\x5d\xb1\x2c\x65\x9d\x1a\x66\x90\xe6\xd6\xa7\x51\x33\x48\x53\xeb\xd3\xa8\x19\xa4\xa9\x63\x45\x6d\xc5\xdb\x56\x8f\xd9\x65\x96\xcf\xa2\x7d\x33\x15\xac\x15\xbd\x78\xfb\x15\xac\x15\xf3\xbf\xff\x0a\x0f\xa1\x55\x48\x44\xa6\x60\xad\x48\x83\x64\x05\x6b\x45\x98\x8e\x98\x1a\x61\x90\x26\xf8\xd5\xb0\x15\xaf\xc7\xe0\x25\xbd\x81\xf2\x06\x38\xa4\x25\x9d\x4e\x71\x5b\x9e\x34\x8d\x3c\x41\x2e\xc2\xaf\xa9\xa9\x9b\x2e\xa6\xb3\xc0\x47\x31\x58\x91\xe6\xa6\x15\x83\x15\x69\x56\x5b\x4d\x57\x91\xe6\xa1\xa7\x96\x07\xe4\x22\x96\x9b\x06\x86\x20\xcd\x4c\xab\xe9\x2a\xde\x4b\xfa\x6f\xfe\x72\xf7\x97\xdc\x80\x69\x68\x90\xe6\xaf\xa7\x21\x1f\x08\xab\xa4\x54\x5d\x15\x6f\x6f\xf0\x9c\x0e\x7b\xe8\xf8\x76\xbe\xa7\x69\xd6\x31\x81\xce\x1e\x63\x73\x5a\xc7\x04\x62\xf7\xbf\x34\x34\x20\x4d\x69\x2b\xc4\x2a\xa2\xfb\x05\x58\x9f\x04\xd2\x8c\xb6\x7a\xaa\x22\x4d\x68\xab\xa7\x2a\xd2\xa4\xf1\x34\x0c\x9c\xc4\x7c\x26\xaa\xa7\xe6\x08\xa4\x29\xee\x69\xe8\x06\xd2\x34\xf2\xd4\x34\x4c\x4d\x03\xa1\x9b\x52\xa6\x22\x4d\x22\x28\x51\x2a\xd2\x84\xc1\xd4\x0e\x80\xd0\xaf\x9b\xda\x01\x90\x46\xef\x4a\x94\x8a\xf8\x6e\xdb\x21\x1c\xa4\xc1\xfb\x74\xbc\x06\xdd\x4c\xcf\x34\x4b\x0d\xde\x9e\xa6\xad\x8e\xe1\x20\x5c\x31\xa3\x92\xa9\x68\x96\x9d\x4f\xe7\x81\x41\xdf\xed\x43\x87\x70\x95\x4c\x59\xe0\x37\x55\x32\x15\xcd\x74\x96\x4a\xa6\xf3\x53\x32\x65\xb9\xe3\x54\xb6\x54\x74\x27\x75\x94\x2d\x15\xef\xbf\xd1\x3f\x0e\xe2\x20\xf5\xab\xd5\x15\x15\x7d\xc3\xbf\x59\x4e\xd7\x82\xf7\x97\xc5\xb1\xcb\x63\xfe\xf2\x7d\x63\x57\xf3\x97\x6c\x69\x66\xa0\xb7\x5c\xf1\x00\x9a\xaf\xdd\x32\x9c\x02\xbd\x31\x58\x2e\x47\x59\x90\x86\x66\xaa\x88\x8a\x95\xf3\x1f\x0a\xb7\x15\x19\x9d\x9f\xc8\xe8\x5a\x9e\xd8\x6b\xb1\xe5\x59\xb3\x45\x06\x56\xa0\x37\xf2\x75\xcb\xc0\x0a\x34\x2b\x8f\x96\x81\xd5\x72\x7f\xb3\x85\x5f\xa9\xca\xa8\x68\x63\xe1\x45\xaa\x32\x2a\xc2\xb9\x75\x55\x46\x45\x58\x46\xb6\x0c\xb6\xd6\x17\x6c\xe1\x46\x2e\x87\x74\x10\x6c\xd6\x38\x97\x13\xab\xa0\x6f\x8c\x45\xcb\x72\x21\x90\x68\x0b\x4f\xe5\x3c\xc5\x72\xad\xc0\x32\x83\x0a\x5a\xb0\x1b\xf8\x54\xcf\x53\x34\x37\x98\x9b\xca\x67\x8a\x3e\x78\x35\x97\xe9\x4b\xb0\xac\xf9\x5f\x0e\xb0\xe0\x6d\x2d\x67\x73\x34\x05\x61\x5c\xbf\x8c\x7c\x40\xdf\x70\x4c\x96\x51\x0e\x68\xbe\xfa\xaa\x6c\x8a\x88\xef\x90\x97\x24\x99\x68\x98\xac\x54\xa6\x58\x16\x6f\x2f\x63\x10\x90\xc6\xa7\xca\x62\x8a\xb6\xfb\xca\x19\x24\x80\x34\xfe\x5d\x06\x09\x20\x36\x9f\xd2\xf2\x5c\xcb\x73\xd1\x7a\xeb\x46\x97\x75\xa3\x3e\x25\x87\xea\xe5\x50\x4d\x48\xbf\x1c\xaa\x41\x0c\x5f\x4c\x83\x04\x55\x31\x51\x76\x9b\xcb\xd1\x1b\xf4\xe6\xfb\xb3\xdb\x88\x17\x63\xf3\xf5\x31\xab\x07\xd2\xb0\x79\x39\xc4\x83\xb7\xa7\xe9\x1d\xd3\x7a\x20\x8d\x44\x55\xb2\x14\x61\xed\xed\x72\x8c\x07\xdd\x59\xba\xe5\x10\x0f\xd2\x08\x53\x25\x4b\x91\x46\x93\x8a\x4f\x8a\x34\x36\x55\x56\x52\x34\x83\x04\x65\x25\x45\xea\x4d\x2e\x33\x71\x20\xf5\xce\x97\x4b\x25\x40\xef\x76\xbe\x11\x01\x48\x7d\x42\xc5\x27\x45\x1a\xe2\x28\x3e\x29\xde\xfb\xa6\x15\x46\x04\x4a\x4d\xea\x1c\x29\x35\x29\xd2\x99\x94\x65\x90\xb0\xbe\x20\x81\xb8\x67\x59\x27\xb4\xae\xaf\x17\xb9\x4d\xeb\x4d\x41\xb0\xed\xd8\x5c\xb7\xad\x45\x75\xc2\x98\x59\xad\x49\x91\x86\x2f\xca\x43\x8a\xd4\x53\x51\x0b\x72\x2e\xb7\xa3\x76\xc1\xcb\xd2\x77\x5f\x5f\x22\x6d\xf7\xff\x7c\x4c\x7a\xea\x7e\x4a\x8f\x37\x8a\x52\x84\x39\xe6\xa5\xa7\x0e\x52\x87\x4f\x95\x47\xd1\xd0\x76\x9d\x2a\x3a\x8a\x36\xd8\xdf\x75\x2e\xc7\x6f\x90\x7a\x2f\xcb\x99\x47\xf0\xfe\x1b\x4f\x45\x57\x7d\x59\x54\x6a\x9d\xcb\xb2\xde\x07\x24\xba\x3d\x53\x4d\x47\xd1\xd9\xd4\x66\xee\x3a\xe1\xbb\x4e\x38\x7e\x8f\xa2\x8b\xa2\x9b\x21\x53\x61\x51\xa4\x43\xba\x02\x8b\x22\xf5\x5e\x14\x53\x14\xe9\x50\xa0\x8e\xa1\x48\x53\x77\x8a\x16\x8a\x34\xb3\xb6\x3b\x15\x07\x52\x23\xb5\x3b\x15\x07\x52\xf3\xa6\xb4\xa1\x58\x16\xad\xef\xce\xbb\xed\x16\xcc\xb0\x27\xcf\x54\xee\x50\xbc\xc7\xfc\xa9\xd7\x7c\xd1\xd9\xef\x7a\xaa\x54\x38\x3f\xa5\x42\x6b\x9f\x76\xfd\x6b\x30\xac\xfe\x57\xbc\x50\xbc\xff\x56\x1c\xb3\x83\xc2\x65\x5a\xf4\x86\x6e\x38\x48\x8d\xe5\x6e\x7d\xcc\xae\x0e\xb4\xe7\x77\x64\xdf\x95\x0f\xda\x19\x3f\x77\x5d\x73\xd0\x90\xb6\x9e\xbb\xab\x17\x40\x73\x71\xc7\xee\x14\x1d\xe8\xa8\x8e\xce\x3d\xbd\xe4\x8b\xf0\x45\x56\x30\x51\xa4\x83\xb8\xea\x88\x22\xb5\x42\xbb\x49\x34\xd0\x4d\x77\x2a\x98\x28\x52\xcb\xa7\x38\xa2\x48\x0d\xdf\x6e\x7c\xb0\x1b\x0c\xec\xdb\xdf\xfb\x78\x4e\xc5\x13\x45\x67\x2f\xe8\xa9\x78\xa2\xe8\x26\x87\x76\x23\x0a\x90\xcb\xff\x72\x22\x0e\xa4\x86\x5d\xf1\xc4\xf9\x89\x27\xf2\xc9\xef\x46\x0f\xa0\x0f\x5f\x1c\x2d\x19\x88\xf4\xe1\x98\x9c\x03\xbd\x11\x49\x29\x51\x28\xa2\xf9\xbc\xb4\x47\x20\x1d\x97\x95\x15\x14\xe9\x90\xb5\x9b\xed\x02\xb9\x13\x42\x2a\x34\x28\x9a\x13\x0a\xbb\xa9\x2d\x30\x36\xc6\x9d\xdd\x52\x17\xd0\x9d\x63\x50\x7b\x50\xa4\xe3\xda\x6e\x34\xb1\xbb\x9d\xc6\x4e\xd0\xbd\x6b\xb6\x40\x43\xf8\x60\x2a\x51\x28\x62\xf3\xa9\x3a\x43\x05\xc2\x7c\x94\x12\x85\x62\xb9\xde\x6b\x37\xb7\x05\xde\xf3\xf3\x4b\xcb\x66\x76\xcb\x66\xf6\xe6\xff\xd9\x0e\xb3\x5b\x7e\x7e\x4e\x47\x81\x74\xc4\x55\x91\x50\x34\x4b\x49\x14\x24\x14\xe9\x18\xb9\x6b\xa4\x76\x8d\x14\x43\x9d\x7a\x84\x22\x1d\xe9\x76\x63\x0e\x10\xae\x61\x53\xa2\x50\xcc\xef\x45\x35\x0c\x01\xe9\xd8\xb7\x9b\xdc\x02\x6f\xf3\xe9\x59\xe3\x90\x9d\x84\x97\xc3\xa1\x12\x85\xe2\xfd\x37\x1a\xeb\xe4\x13\x68\x4e\xf2\x28\x5b\x28\x1a\xc2\x13\x53\xd9\x42\x11\x08\xf2\xce\xdd\xc2\x58\xd0\xd9\x5f\x74\xaa\x64\x28\xba\xab\x9e\x77\xab\x60\x41\x7e\x03\x91\x16\x6f\x77\x7f\x2a\xf6\x4c\x9d\xea\x16\x8a\xee\x6a\x8d\x5d\xbb\x05\xda\x77\x7e\x73\x60\x20\xd8\x0d\x67\xee\xce\x3e\x81\xfc\x46\x30\x67\x9f\x54\x1f\x1c\xdf\xb9\xbc\xe4\xfd\x5d\x92\x96\x99\xbf\x02\xdd\xb9\x92\xdd\xfc\x15\xc8\x9d\x04\xd3\x6e\xf0\x03\x72\xf7\x92\xda\x40\x10\xf1\xfd\xd0\x97\x80\x95\x80\x26\x25\x14\x29\x14\xf9\x8d\x99\xc6\x3e\xa0\xef\x98\xc0\x5d\xab\x08\xf2\x1b\x0c\x8d\x6a\x40\x1f\x7e\x96\x9a\x36\xd0\x2c\xf9\x38\x9c\x10\x02\xcd\x35\x6c\x87\x55\x35\xe0\xbd\xc9\xc9\xb1\xf4\x18\x95\x21\x9a\xdd\xc3\x04\x13\x48\x3f\xaf\xc3\x04\x13\x78\x7f\xba\x38\x76\x7a\x8c\xf9\x37\x06\xd2\xc3\x49\x22\x90\x7e\x38\x87\x86\x12\x74\x4b\x33\x0f\x0d\xe5\xe1\xae\xcf\x3b\x63\x8d\x92\x81\x22\x9c\x15\x51\x1e\x50\x84\x25\x7f\x87\xd5\x34\xc8\x03\xa6\x1f\xe1\x61\x35\x0d\xe8\x3b\xef\xe2\x61\x35\x0d\x88\x7d\x79\xc8\x56\x38\x05\x85\xba\xf5\x54\x13\x50\xa4\x6f\xd9\x61\xbc\x05\xd2\xd7\xff\x30\xe0\x39\x9c\x49\xda\x29\x17\x50\xb4\x4f\x74\xb4\xa3\xe6\xa1\x91\x05\xf9\x75\xad\x21\x10\x68\x88\xb6\xcf\xc3\x0c\x16\xc8\xaf\x15\xd6\x96\x1e\xd6\x96\xba\x22\xe6\xd0\xec\x82\xfc\x3a\x5b\xab\x0b\x1a\x2a\x2e\x53\x85\x3e\xd1\xcc\xb3\xa8\xd0\x27\xf2\xeb\x58\x63\xa7\xc3\xd8\x89\x57\xf6\xd0\x0e\x83\x8e\x08\xe5\x3c\x9c\xce\x02\xe1\x82\x8f\xc3\xe9\x2c\x90\xdf\x7d\x6b\x9a\x3f\x65\xbf\x9d\x7c\x98\xca\x7e\x22\x0c\xbb\x0f\xed\x30\xc8\xff\xfe\xcb\xe6\x5b\x04\xc3\xd6\x8a\xf3\xb0\x0a\x06\x74\xab\x3c\x0f\x43\x38\xd0\x90\x48\x9d\x87\x21\xdc\xf1\x85\x70\xb4\x4c\xa3\x0e\x5a\xc3\x87\x3d\xb4\xcd\x20\xbf\x4e\xd4\xaa\x82\xf7\x92\x9c\x4c\x83\x79\x98\x95\xdb\xff\x65\x6d\x95\x22\x7f\x53\x45\xbf\xaf\xe1\x66\xe8\x40\x67\xaf\x9f\x79\x58\xa0\x02\x92\xbd\xc7\xa7\x22\x7f\xa2\x39\x37\x71\x68\x63\x8f\xfa\x9a\xc4\x2f\x9d\xec\x02\xb9\xfb\x14\x8d\x03\x41\x33\xb6\x3d\x9c\xc4\x02\xcd\xea\x54\xb5\x00\xc5\x7b\x32\x7f\x69\x33\xa6\xcd\xe0\xf9\x6b\xb1\x41\x73\xea\xef\x30\x8f\x07\x72\x27\x9c\x56\x32\x50\x74\x4b\x67\x0e\x2d\x36\x08\x04\x8a\xa7\x92\x81\xa2\x5b\x2f\xa8\x62\xa0\xe8\x8d\x44\xcc\xe1\xcc\x13\xc8\xdd\xaf\xc3\xfa\x0e\xd0\x77\x22\x80\xc3\x70\x11\x74\xa7\x5b\x0e\xc3\x45\x90\xa8\x79\xcd\x43\x53\x0c\x92\xbd\x36\xa7\x7a\x81\x22\x77\x72\x89\x87\xc6\x19\x24\xfb\x19\xcd\xc3\x5a\x55\xf5\x02\x9d\xe2\x53\x2e\x50\xbc\x1d\x46\x5b\x0d\x2a\x0f\x0b\x53\xbf\xbe\x30\x84\x04\xe9\x66\x23\x6a\x08\x8a\xe6\x64\x9a\x82\x81\xa2\x59\x0d\x7f\x18\x55\x82\xd0\x60\x1f\x1a\x6c\x90\xbb\x6f\xaf\xd6\xf9\x38\xbf\x4b\xd2\x3f\x66\x09\x41\xee\x64\xf6\x0e\x83\x4f\xd0\x5c\x61\xa7\xd4\xe0\x3c\x5c\x90\xf2\xdd\xba\x76\x17\xe4\x4e\x82\x43\x61\x41\xd1\x86\x4f\xc9\x25\x8b\x20\x77\x6a\x4a\x0e\x03\x52\x90\x3b\xb1\xf9\x61\x40\x0a\xde\xf3\xd3\x69\x26\x18\x41\x5a\x8f\x7c\x18\xa4\x82\x34\x1d\x77\x68\xb1\x41\x5a\x64\x71\x68\xb0\x0f\x37\xae\xf6\xf5\x37\x33\x09\x72\x27\xe7\x78\x58\x54\x0b\x72\x27\xc1\xa8\x08\xa2\x58\x96\x47\x1e\x9a\x75\x30\x5c\x5c\xa5\x2e\xa2\xc8\xfd\x3b\xe4\x1d\x69\xe9\x49\x43\x1e\x56\x8d\x28\x95\x68\x35\xbb\xba\x88\x22\x76\x9f\x9b\x3b\xa5\x80\x74\x81\x94\xb2\x88\x62\x36\x5f\x58\xa3\x5d\xd0\x2d\x71\x3b\x74\x07\x50\x4a\xcc\xef\x1e\x75\x07\x40\x47\x4d\x63\x1e\xe6\x42\x41\xb0\xd1\xf4\x3c\x74\x07\x40\xee\x78\x20\xea\x29\x8a\xe5\x2e\x09\x6a\x27\x8a\xfe\x99\x81\xc7\x5e\x7d\x74\x39\x3d\x64\xeb\x1f\x5b\xef\x0f\x6d\xbd\xdb\x74\xf9\xd6\xe9\x34\x80\xdc\x89\x57\x0f\x0b\x76\x41\xb3\x86\xf7\x70\x82\x0b\x8c\xee\x60\x6e\x95\x0a\xe8\x3b\xe9\x0d\xc5\x1a\x45\xef\xdf\x21\xaf\xf8\x43\x1d\x95\xb7\xe9\x34\x5d\x0a\x12\xf9\x80\xa9\x7e\xa3\x48\xcf\x75\x9a\x41\x05\x69\xa9\xe2\x69\xb4\x7d\xba\x8d\x8c\x1f\xfd\xa9\x4b\x02\x9a\xe9\x44\x65\x1e\x45\xba\x08\xe6\xd4\x23\x01\xb9\x33\xd6\x9d\x6e\x36\x03\x92\x6d\x65\xe7\xa9\xfb\x01\x3a\xbb\x34\xce\x53\xef\x03\xbc\x97\xe4\xfc\xfa\x1a\xa7\xbe\x06\x8e\xc5\xe9\x6c\x19\x88\xb6\x79\xb2\xc7\x43\x58\x5c\x5e\x27\xc5\x20\x45\x63\xab\xe7\x79\x9a\x6e\x05\xdd\x9d\x1a\x4e\x83\x7e\x10\xee\xf9\xa5\xf0\xa3\x78\x5b\x31\x39\x66\x2b\xd8\xfd\x60\x2f\x0f\x5d\x1e\x62\x63\x67\xdb\xaf\xf7\x71\x7e\x21\x7e\x78\x2c\x3c\xc6\x17\x42\x44\xa4\x66\xa4\xc8\xdd\x5e\x74\x9e\x0d\xe4\x6e\x63\xf5\x48\x40\x6f\xbc\x9c\xa7\x86\x1f\xa4\x8e\xa9\x32\x8f\x22\xbe\x5e\x34\x4a\x3f\xc7\xd7\x7e\xfa\xc7\x30\x1d\xa8\x53\x38\x95\x76\x14\xd1\xf8\x90\x4e\x0b\x60\x4e\x55\x7e\xc7\x3f\x98\x65\xc5\x20\x45\xee\x64\xc5\x4e\xfd\x09\x90\x3b\xb9\x39\xf5\x21\x45\x1b\x8e\x72\xa7\x0e\x05\x08\xbf\x50\x35\x23\x45\xee\x38\x9f\xa7\x59\x62\xd0\xbf\x93\x59\x6a\x03\xa2\x2d\xff\xcb\x3e\x76\xdb\x83\xe6\x1b\x67\x3d\x2e\x88\x66\xc7\x98\x4c\x00\x9d\xad\xcd\xe7\xa9\x77\x02\x72\xe7\xe3\x53\x33\x72\x7e\x9a\x91\x8e\xd2\xea\x3c\x8a\xdc\xf1\x91\x4e\xcb\x6f\x40\x3a\x99\xa9\xcc\xa3\x78\x7f\x49\x6b\xcd\x42\x83\x74\xc6\xea\xd4\xfd\x38\x3f\xf7\x63\x78\x51\x7b\x88\xdd\xa6\xf5\x95\x4f\x3d\x92\x73\xe2\xca\x92\xed\x52\x0e\x52\xbc\xbf\xa4\xbb\xf5\x52\x40\xee\x64\x9a\x4e\x4b\x5f\x41\x6a\xe6\x4f\xdd\x0f\x90\x56\x14\x2b\xcd\x28\xc2\xcd\x0a\x4e\x53\xd3\xa0\xb9\x8d\x96\x3a\x8c\x22\xf7\xdd\x1f\xda\x7e\xd4\xaa\x76\x5f\x1c\x03\x7a\x90\xbb\x1f\x96\xa9\xe9\x53\x8d\x61\x8d\xd1\xa9\xff\x01\x72\x27\x15\x70\x1a\xf7\x83\x08\x9f\xb9\xfe\x07\x08\xa7\x9e\x4e\x9d\x0d\xd0\xdb\xf2\x5c\xbe\xd1\x3a\x1b\xdf\x21\xfb\x9f\x7d\xcd\x10\x32\x9f\xa7\x49\x6d\x90\xbb\x2f\x8b\x95\x2f\x20\x77\x5f\x0c\xd3\x05\x20\xf7\xe5\x0f\x7d\x20\x16\xc3\x7c\x3f\xf4\x26\xd9\xf4\x7a\xf7\x1b\x3a\xbc\xc9\xe3\x5b\xc6\xc7\x21\xaf\x78\x60\x2d\xfc\xf8\x9c\xb5\x04\xdd\x4a\x67\x65\x24\xc5\xdb\x3b\x9c\xcc\x14\xc2\xe9\x2e\x42\xbe\x2a\x96\xcc\x80\xdc\x49\x47\x9c\xa6\x10\x40\x58\x4c\xaf\x5c\xa3\xe8\x5a\x90\xd3\x08\x1f\xa4\x2b\xd3\x4f\x9d\x0f\x10\x48\xbf\x4c\x15\x1c\x45\xa1\x04\x37\x4f\x1d\x0d\x10\xee\x27\x71\x9a\x1a\x00\xfd\xfb\x2c\xf5\x2a\xd4\x79\x74\x2b\x43\x75\x1e\x45\xba\x49\x90\x02\x8e\x22\x5d\xfb\x77\x3a\x05\x0a\xde\xfb\xe6\xdf\xf4\x0e\xce\xfb\xfb\x6c\xfc\x3f\xbb\xec\x45\x6d\x8e\x0e\x1a\x7e\xd0\xbb\xcf\xcd\x08\x1f\x44\xc7\x6b\x3c\xb5\xf2\xa0\x2c\xc1\x3a\xb5\xf2\xa0\x5c\xdd\x70\x1a\xe1\x83\x42\x6c\x66\x9e\xda\x6f\x30\x36\xed\x98\x73\x94\xa0\x36\xc2\xe8\x53\x63\x0d\x6a\xf3\xa3\x31\xc7\x0d\x6a\x23\x18\xbe\x0c\xfa\x41\x19\xec\x5d\x5a\x53\x50\x1b\x36\xeb\xd2\x4c\x82\xf7\xbe\x3d\x76\x7b\x8c\xfb\xc6\xf2\x2b\xf3\x28\xda\xd0\x7b\x52\xd3\x51\x14\xda\x00\xf3\x32\xc7\x0d\x86\x2b\x83\x95\x79\x14\xb5\x35\x0f\x0d\x0f\x0d\x7e\xc8\xf9\x8d\xef\x41\x6d\xcd\x73\x3d\x1e\x7a\xfe\xf7\x7f\xd3\x42\xe7\xcb\x28\x1d\x94\x15\x1e\x97\x06\xf6\xd2\xc0\x3a\xdf\x75\x39\x2d\x7a\x7d\xeb\x5a\xe9\x0c\xd7\xc1\x80\x72\xd1\xf8\xa5\xd1\x05\xef\x2f\xfd\x37\x9b\xd1\x6d\xc6\xe4\xd0\xe1\xa1\x83\x43\x74\xa3\xd9\x77\x50\x1b\x9f\xd2\xa5\xd1\xbd\x3e\xa3\x8b\xfb\x77\x69\x4e\xaf\xf8\x2e\xc0\x7d\x1a\xf4\x83\xda\x88\xad\x94\x96\x14\x81\x2a\xc2\xbc\x8c\xe6\x41\x6d\x44\xb0\x2a\x4b\x8a\x81\x86\xdf\x54\x59\x52\x44\x31\xb6\xa9\x2c\x29\x6a\xe3\xf3\xba\x0c\xdd\x41\x6d\xc4\xac\x97\xf6\x12\xd4\x46\x4c\x7e\x69\x2f\xaf\x2f\xfe\xe6\x2e\xb5\x8d\xa0\xd0\xf3\x9d\x8a\x4d\x8a\xda\xfa\x3f\xa4\xb3\x2f\x4d\xe7\x95\x5f\xbf\xd0\x48\x8d\x22\xa8\xad\x7b\xc8\xae\x4a\xde\x68\x82\x99\xcb\x32\x55\x50\x6e\x9d\xa8\x64\xe5\xfc\x24\x2b\x75\x6f\xd5\x91\x14\xe5\x74\xb0\x3a\x92\xa2\x9c\x73\xbd\x9c\xc0\x05\xb5\x11\x66\x5d\x5a\x53\x50\x1b\x01\xe6\xa5\x35\x05\xef\xf9\xfd\xa5\x7d\x55\xf4\x15\x61\xd0\xa5\x99\x04\xef\xbf\xd1\x59\xda\xc9\x6b\x7e\xaf\x21\xcd\x75\x89\x08\x08\x37\x68\xba\x34\x8a\xa0\xdc\xf5\x4f\xd9\xc8\xf9\xc9\x46\x6e\x18\x0c\x35\x22\x45\x58\x7d\xa4\x46\xa4\x68\x2e\x64\x50\x23\x52\x34\xcb\x2e\xd5\x88\x14\xf5\xbd\x25\x2e\xea\x00\x61\x94\x70\x69\x4e\x41\xff\x1a\xa6\x39\x05\x61\x05\xb0\xe2\x8f\xa2\xdc\x6c\x40\xf1\x47\x11\xba\xc1\x2a\x3d\x8a\x40\x99\x76\x5e\xda\x49\xd0\x2d\xe7\xbe\xb4\x93\x20\xc2\x2b\x9a\x30\x07\xdd\x85\x43\x97\xb6\x0d\xb4\xe6\xe3\xd5\xb6\x81\xda\xfc\x94\x5d\x52\x0a\x6a\xc3\x8d\xbb\xac\x10\x05\xb5\xe1\xf1\x5e\x96\xfc\x80\xe6\x6a\xc9\xcb\x4c\x3b\xe8\x6c\x85\x3f\x2f\x17\x99\x82\xda\x70\x82\x14\x83\x14\x85\x00\xdc\xbc\x34\x9d\xa0\x36\x47\x22\x23\x7e\x50\xae\x37\x50\x1f\x52\xd4\x86\x31\xbd\x5c\x31\x02\xca\x3d\x54\x95\x8c\x14\xc5\x3e\xcd\x53\x7d\x48\x51\x1b\x96\x47\xe5\x47\xd1\x86\x01\x8d\xd2\x8f\xa2\x36\x07\x6a\x73\xef\xa0\xbb\x91\x84\xd2\x8f\xe2\xfd\x25\xed\xd7\x34\x83\xda\x1c\xbb\x2d\x5d\x05\x65\xda\x4f\xed\x47\x51\x9b\x03\xa9\xd1\x3d\xda\x8f\xef\xc9\xfc\x37\xc7\x43\x12\xf2\x66\xb7\x2e\xe7\x96\x41\x77\x3d\xc6\x65\x94\x0e\x6a\xb3\x65\x16\xa0\x82\x68\x38\x71\x0a\x38\x8a\xf7\xfc\xfe\x9b\xd7\xbc\x79\x24\x0e\xa4\xda\xe6\xeb\xb3\xcd\xb8\x84\x97\xa1\x3b\xa8\xcd\x71\x45\x73\x0d\xde\x7f\xb3\x1d\x36\xed\x46\x97\xcd\x67\x6e\x38\x7f\x99\xca\xc7\x21\x50\xe9\x51\xf4\xcf\x2e\x5a\xda\x04\xca\x5d\x69\x2e\xa3\x72\x10\x3a\x68\x8a\x33\x8a\xf7\x92\xbc\x07\x06\xdc\xa0\xdc\x50\xec\x72\xa2\x1a\x94\x2b\x46\x2f\xe7\xa9\x41\x69\xe9\x2f\xcd\xfa\xa5\x59\xf7\xc9\x19\x83\x83\xee\xee\x61\x97\x01\x37\xa8\xcd\x47\x62\xc6\x1f\x34\xeb\xee\x2e\x6b\x4c\x41\x73\x47\x82\x5b\x7f\xe0\xfe\x26\x01\x06\x87\xba\x87\x68\x57\x79\x68\x78\x88\x7d\x2b\x79\xd7\x6f\xa7\x05\x40\xd7\x82\xdf\x46\xea\xa0\x5c\xda\x78\xeb\x5b\xdc\xdf\xac\xc0\x77\xc9\xc3\x63\xb6\x75\x72\xe8\xf4\x10\xdb\x28\xf1\xfa\xdc\xba\x1b\x20\xdc\xca\xf8\x76\x87\x40\x10\x48\x67\xcc\x5b\x3f\x02\xb4\x61\xc2\xe0\xd6\x91\x00\xdd\xea\xf7\xdb\xc2\x29\x50\x6e\x07\xa8\x62\xa4\xe8\xb1\xf9\x5f\xcb\x43\x8b\x5b\xf2\x5c\xbb\x87\x9c\x30\xa6\xf9\x4e\x27\x80\xe6\x74\x85\xba\x92\x22\xdc\x9f\xf1\x76\x86\x01\x14\x8a\xfc\xf3\x76\x17\xa8\xdb\xad\x0b\x8d\x18\x6f\x1d\x15\xd0\x5d\x98\x72\xeb\xa7\x80\x70\xfd\xf3\x6d\x7d\x16\xe8\x2d\xfd\x2f\x6f\xbc\x7f\x37\x4e\xfb\xf5\x40\x40\x77\x86\xed\x36\x13\x70\x2b\x94\x51\xff\xb0\x8c\x4a\x79\x4a\x51\x1b\x43\xf7\xed\xe2\x5d\x30\x34\x9d\xb7\x45\x04\xa0\x37\x9c\x1d\x35\x2c\x45\x6d\x3e\x09\x13\x0c\xf7\xb7\x52\x97\xde\x33\xc1\x00\x6a\xb3\xd9\x66\x13\x40\x77\x73\xee\xdb\x42\x03\xd0\xb7\xe5\x21\x1b\x11\x7c\x40\x76\x9e\xa5\x01\xb7\x1b\x1b\x1a\xe2\xdf\x4e\x53\x80\x8e\xec\xfe\xbc\xf5\x75\x40\x73\x1a\x4d\x95\x4a\xd1\x5d\x48\xa4\x4a\xa5\xa8\xcd\xb6\x9a\xc0\x00\xb5\x7d\xa7\xf7\x15\x19\x6c\x81\x8e\x7d\xba\xcd\x4c\x80\xda\x88\x41\x6e\x5d\x29\xd0\xac\x8c\xbd\xcd\x33\x80\xda\x08\xd3\x6f\x5d\xa9\x5b\x57\x8a\xd2\x8f\x5b\x57\x0a\x34\xeb\xa8\x6e\x13\x08\x77\x7e\x0f\x9a\x37\x49\xc7\xe8\xd6\x31\x22\x8a\x56\x3d\x53\xbc\xff\xe6\x31\x5b\x96\xb4\x6c\xf9\x4b\x5b\xe6\x36\xbe\x44\xc3\xb7\x79\x86\xfb\x9b\x05\xb1\x69\x16\x17\x80\x6e\xe0\x70\x3b\xcb\x01\xc2\x89\x89\xdb\x4a\x02\xd0\x2c\x11\x54\x77\x53\xd4\xb6\x3c\x64\x63\xcb\x89\x09\xfa\xc7\xe2\x02\x50\xae\xf7\x53\x2a\x53\xd4\xf7\xc4\x5d\xd1\x03\xa2\xd9\xd7\x66\x19\x40\x21\x86\x37\x6f\xfd\x29\x50\x9b\xdd\xa3\x3f\x75\x7f\xeb\x6b\x79\x6e\xce\x8e\x80\xfe\x7d\x54\xce\x84\x80\x66\x69\xcc\x6d\x2a\x02\xbc\x5d\xe1\xf9\xed\x9e\x89\x81\x25\xa5\x70\x9b\x9e\xb8\x5d\x5e\x63\x82\x45\xad\x4c\x51\x9b\x67\xd3\xa1\x42\x2a\xb3\x0d\xd3\x24\xb7\xd9\x08\x50\x1b\x81\xba\x5a\x99\xa2\x36\xf2\x2b\xaa\x60\x8a\x66\xe5\xf3\x6d\xb6\x00\x74\x4b\x9a\x15\xc6\x14\x65\xa1\x9c\xc2\x98\xa2\xbb\xf6\xe4\xd6\x7d\x02\xd5\x70\x79\x6e\xa7\x39\xc0\x72\x0b\xd8\x5b\xf7\xe9\xd6\x7d\x22\x44\xbe\x9d\xf8\x00\x65\x71\xc4\xad\x17\x74\xeb\x05\x11\x5b\xab\xbb\x29\xba\xe5\x93\xb7\x8e\x11\x68\x66\x44\x6e\x1d\xa3\x5b\xc7\xc8\x4f\xdc\x34\x03\xa8\x0d\x83\x7b\x3b\x15\x02\xaa\x11\xfa\xde\xba\x4f\xa0\x1b\x01\xaa\xe1\x29\xc2\xf5\x14\xb7\xb9\x08\x10\x1a\x57\x65\x3d\x45\x39\xf5\x7c\xbb\xa2\x07\x2c\xf7\xb4\x55\xe9\x53\x54\xb3\xbf\x9c\x55\x01\x85\x0c\xff\xbc\x9d\x55\x01\xdd\x14\xe1\xad\xdb\x75\xeb\x76\xd9\x85\xba\x5d\xa0\x59\x95\xaa\x44\xa8\x08\x9d\x0a\x45\x3d\x45\x59\x22\xac\xa8\xa7\x68\x2e\x36\x55\xd3\x53\xc4\x70\x14\x33\x89\x71\x5f\xdf\xdb\xc4\x1d\x99\xc5\x00\xdd\x7d\xd0\x14\xf0\x14\x61\xba\x4b\x01\x4f\xd1\x51\xd1\x9d\x0a\x78\x8a\x6a\xb8\xb3\x0a\x78\x8a\xe5\x5e\xbe\xea\x77\x8a\x6a\x9a\x48\xab\x20\x40\x77\x01\xfa\xad\xcf\x75\xeb\x73\x7d\x8d\xb0\x77\x48\x91\x34\x9d\x0a\x5d\x2e\x50\xcd\x41\x58\xff\x0a\xc4\xd7\x15\x4e\x97\x80\x32\x7d\x7e\x3b\x5d\x02\x5a\x84\x97\x34\xb9\x02\xaa\x91\x36\x51\xe5\x53\x84\x5b\x7a\xaa\xf2\x29\x9a\xdb\x51\xab\xe8\x29\xde\x4e\xf4\x98\xed\x67\xa3\xca\xaf\x13\x75\xd6\x6e\xab\x0a\xfd\x4a\xdd\x43\x0c\xbc\xbf\xe4\x9e\x74\xe0\x40\xb9\xf2\xee\xd6\x81\x03\xc3\xf0\x48\x69\x4e\xf1\xfe\x92\xd6\xea\x9b\x81\x6a\xdb\xdf\x82\x91\xf3\xb1\xe6\x10\x34\xb7\xb3\x78\x74\xca\x40\x74\x2c\x96\xd2\x9d\xa2\x1a\xdf\x86\x3a\x9d\xe2\xbd\x7c\x71\x6c\xf7\xd8\xce\xbf\x79\xb2\xc3\x43\x07\x87\x1a\x87\x4e\x0f\xd1\x48\x72\x1c\x8f\xc9\x9d\xe7\xab\xcb\x60\x34\x7c\xcc\xee\x80\x52\x60\x42\xf1\x4e\xf1\xfe\x9b\x3f\xf5\x6c\xf8\x48\x31\xfd\xe5\xe3\x21\x56\xa8\xef\xfe\xf2\xe7\x21\x46\x2b\x32\x32\x6a\x70\x8a\xf7\x64\x3b\xc7\x6c\x47\xe7\x3d\x61\x58\x50\x84\x53\x94\xd5\x69\x8a\x6c\x8a\x42\x5e\x6f\x2a\x9f\x29\xba\x89\x4c\x85\x31\x45\xe8\xcf\x29\x79\x29\xba\x7b\x68\x3c\xa6\x72\x40\x35\xb2\x6b\x8f\x0e\x0f\xa8\x86\x45\x7c\xf4\x6e\x40\x35\x72\x28\x8f\xb9\x1d\x50\x6e\xdc\xa2\x08\xa6\x28\x64\x58\xa7\x22\x98\xa2\x1a\x7e\xe6\x63\x89\x07\xa8\xc6\x7b\xff\x98\x01\x7a\xcc\x00\xed\x9e\xcb\xa6\x52\x44\xe9\x3e\x52\x8f\x6e\x11\x08\x37\x51\x54\x16\x53\x54\x63\x08\x78\x74\x6e\x40\x35\x3e\x98\xc7\xd9\x99\xe7\x9b\x9d\xf1\xbe\x75\x78\x40\x1b\xee\x72\xa1\xa2\xa6\xe8\xf3\xbb\x80\x8d\x65\x7a\xc6\xe5\x3b\x8a\x6c\x8a\x1e\xf8\x32\x8f\xf3\x23\x60\xb9\xeb\xf7\x63\xda\x07\x74\x17\xa1\x3d\xd6\x5a\x82\x6e\x21\xa0\xb2\x9b\xa2\x1a\x06\xf1\xd1\xe1\x79\x92\x1e\x23\x53\xf3\xe8\xc9\x80\x52\x90\xe3\xd1\x91\x01\xd5\x6c\x97\x8e\x0c\x98\x6e\x39\xf4\xe8\xc8\x3c\xaa\x9a\x99\xfd\x7f\x74\x5b\x40\xe9\xe1\xaa\xce\x29\xaa\xe1\x5f\x3f\xce\xab\x80\x6a\xe1\xc9\xec\x9d\xb2\x61\xdc\xa4\x85\x1e\x60\xba\xcd\xd9\xe3\x4c\x0b\x08\x57\xde\x2b\xeb\x29\xde\x56\x70\xcc\x0c\x12\x68\xae\x98\x7d\x74\x78\xc0\xfb\x6f\x1e\xb3\x19\xd3\x66\xf0\x7c\xcd\x20\x81\x6a\x76\xac\xeb\x02\x40\x35\x12\x22\x8f\xde\x0d\xa8\x36\xbc\xa4\x9f\xe0\xe4\x13\xb4\xfb\xcd\x29\x81\xee\x78\xf8\x98\x53\x02\x65\xe1\xfe\x63\x55\xc7\x83\x0b\x84\x32\xee\x7c\x2c\xcd\x04\xcb\x3a\x37\x45\x42\x45\x35\xac\xdd\x63\x9a\xe9\x71\x41\x81\xb3\x23\x8f\xa5\x99\xa0\xb4\xa6\x6a\x89\x8a\xf8\x5e\x62\xb3\x51\xa0\xac\x2d\x79\x9c\xdc\x79\xbe\xc9\x9d\xdd\x7f\xb3\xfd\x3b\x5f\x2a\xb9\x94\x47\xaf\xeb\xd9\x31\x21\x64\x3f\x54\x21\x15\xa5\x3b\xab\x0a\xa9\x78\x4f\xc6\x9d\xeb\x76\x21\x43\x5a\x8d\x24\xc6\xcf\x9c\x2e\x68\x6e\x8d\xaf\x42\xa0\x28\xb3\x56\x3f\xbf\xf1\x9f\xdf\x38\x1f\xc4\xcf\x38\xe4\xe7\x4e\x7f\x4e\x4d\xa8\x07\x28\xaa\xe1\xcc\xfc\xfc\x30\x7f\x2a\x85\x7c\xff\x75\x79\xc8\xfe\xd9\x39\xf4\xf3\x90\x49\x1e\xdc\x8d\x9f\x01\x05\x4a\x82\xe5\x6e\x14\x3f\x3f\xc2\xdf\x17\x50\x60\xf0\x54\x17\x14\xe5\x22\xc0\x9f\x5f\x21\xa8\x46\x16\x40\xc1\x41\x51\x2e\x8e\x53\x22\x70\xfe\xc8\xaa\xba\x14\xfc\xe7\xf7\x05\x5a\x3a\x41\xf2\xf3\xcb\xf9\xf9\xe5\x4c\x0f\x79\x32\xbf\x1c\xc2\x82\x9f\x5f\x0e\xe8\x7e\x5f\x3f\xbf\x1c\xd0\x5c\xf0\xa7\x6a\xa0\xe8\x66\x87\x94\x08\x14\x11\xde\x91\x91\x02\xe8\x68\xe3\xcf\x9f\x61\x01\x08\x6b\xf2\x7e\xd6\x2f\x83\x18\x3e\x12\x8b\xa6\x40\xb5\xf9\x0f\xba\x54\x3f\x3f\x3e\xf0\x15\x3e\x2a\x0d\x28\xca\x49\xdf\x9f\x1f\xcc\xcf\x0f\x86\x38\xe5\x67\x2d\x33\x08\x6b\xf1\x54\x0b\x14\xd5\x08\x39\x7f\xce\x7c\x82\x6a\x18\x4e\x05\x04\x45\x59\x7b\xf2\xf3\x4b\x03\x61\x45\xef\xcf\x2f\xed\xe7\x97\x36\x6d\x97\x7d\x47\xc1\xf3\xf0\xf4\x7e\x2f\xe0\x7d\x5c\xbc\x22\xce\x7c\xfe\xfc\x38\x30\x2a\x6a\x00\x8a\x72\xa7\xa9\x9f\x53\x93\xa0\x14\x3b\xfa\x39\x35\x09\x0a\x19\xe2\xa9\x50\xa0\x58\x6a\x38\x28\x14\x28\x4a\x93\xa2\x50\xa0\x68\x06\x2e\x3f\xb3\xb0\xa0\xbb\x15\xd1\xcf\xba\x2b\xd0\xdc\x79\xfc\x67\x64\x01\xca\x52\x81\x9f\x91\x05\x28\x4b\x5d\x7f\xc6\x0c\xa0\x0c\x49\xd4\x09\x14\xe5\x24\xfc\xcf\x68\xe0\x67\x34\x80\xa3\xa1\x72\xa0\x28\x47\xbe\x9f\xae\x3f\x68\x66\xdf\x7e\xfa\xf9\xe0\xed\x43\xee\xc8\x69\x4e\xd0\xc2\x87\x6b\x2e\xf5\xc7\x9c\xa6\x01\xed\x4f\xdf\x1f\x54\xdb\xfd\xa1\x8f\xed\xa2\xfc\x08\x17\xe8\x67\x2a\x15\xbc\xe7\xe7\x96\xf4\xea\x41\x0f\x87\x09\xd7\xe4\x80\x6a\x8c\x7c\x8a\x0e\x8a\x6a\xbb\x3f\xb4\xb1\xf7\xd7\x58\xfe\x4d\x57\x5c\x9d\xc0\x22\xc3\xa3\x4e\xa0\xa8\xc6\xc8\xf7\x73\x02\x13\xbc\xbf\xf4\x98\xdd\xf8\x78\x4f\xfe\xd2\x3e\x63\x06\xb3\xf9\xc4\xf5\xbb\x41\xb3\xaa\x5e\x39\x41\xf1\x9e\xcc\x5f\x7a\x9f\xcf\xd7\x34\x7e\x6a\x59\x12\x68\x6e\xfc\xaf\x7a\xa0\x28\x17\xfd\xa8\x0b\x28\xaa\xfb\xfe\x98\x12\x05\x2d\xcd\x50\xfe\xf4\xbb\x41\xe8\xb9\xfc\x5c\xc6\x09\x82\xb2\xdc\xb5\x91\x13\x15\x41\xd9\xfb\x52\x3d\x50\x0c\xb2\xb0\x6b\x23\x4d\x2a\xda\x20\xf0\x59\x1b\xf5\xd3\xa2\x33\x07\xbb\x36\xbc\x74\x51\xfd\x7d\x35\x96\xba\x83\xa2\xc7\xfb\x34\x97\xba\x83\xa2\xfa\x77\xc9\xd3\x43\x27\x87\xfc\xaf\xcb\x43\x17\xeb\x6f\x6c\xc5\xe3\x21\x5f\x8d\xc6\xb1\x66\xfb\x5f\x74\x96\xb3\x2d\x85\x07\xc5\xfb\x6f\x5c\xa0\x79\x03\x38\xee\x7d\xf3\xdf\x6c\x2c\x55\x4e\x49\xbc\xbd\x14\x28\x14\x9d\x79\xdf\xb5\x91\x3b\x15\xb1\xbe\x6b\x2e\x0f\xf9\x00\x8a\x43\xb6\x96\x14\x68\x7f\x1f\xe6\xda\xba\xcd\xc0\x6f\xef\x1b\x5d\xd6\xbd\x64\xff\x2e\xc9\xf9\xbb\xbd\xd1\xdd\xae\xd2\x7e\xec\x5e\xe0\x45\xf5\xf7\x69\xae\x2d\xec\x6d\xd2\x8b\xbd\xb8\xa7\xf0\x97\x6c\xcd\x8b\xbd\x58\x1b\x66\x57\xbc\x27\xa3\x69\x61\xdf\xe2\x5b\x77\x7b\x23\x6c\xad\x9b\x02\x6c\xbe\x08\xf8\xdb\xa2\x53\x6e\xb3\x36\xd2\x90\xa2\xba\xb7\x3e\xbc\x26\x9e\x74\xf7\x06\x86\xd7\x7c\x51\xdd\x6e\x4c\x7b\x3b\xe9\x6d\x6f\x29\xfd\x21\x45\x3f\x6c\x50\xbe\x94\x1b\x14\xd5\x6d\x6b\x7a\xae\xf4\x5c\xb4\x2b\x7d\xe8\xc9\xfc\xc5\xee\xe9\x6d\x57\xda\x2e\x3a\xbb\x7c\x0d\xa8\x16\xca\xed\x3b\xe6\x03\x60\x83\x01\x76\x05\x59\x5b\xd9\xb0\xb2\x61\x3c\x93\xb2\x15\xe4\xe7\x7a\xa7\xaf\xcb\xf3\x17\x39\xe0\xe0\x5c\xd3\xf3\xbf\xa8\xde\x69\xc5\xf4\xf4\xf3\x7b\xcd\x38\xd9\xf4\xfc\xe4\xec\x7a\xa7\xaf\xa7\x0f\x8e\x9c\x5d\xef\xb4\x62\xfa\x1a\x4c\x52\x38\x5e\x72\xfa\xe2\x4d\x87\x9b\xef\x98\x5d\x36\xe9\xeb\xfe\xf7\xda\xe6\xb5\x4d\xdf\xd5\x17\x9d\xba\xc3\xb5\x61\xb0\x45\xb1\x0a\x6c\xa9\x92\x28\x8a\x65\x27\x4b\x95\x44\x31\x36\xdf\xae\x69\x27\xe0\x1a\x33\xf4\xaf\x6d\xd9\xee\xc5\xe7\xdd\xe9\x97\x65\xbb\x5f\x14\xa5\x1f\x6b\x5b\x36\x7b\xd9\x6c\xba\x65\xd9\x2e\xd6\xda\xc6\xa2\x11\xcb\x76\x31\x29\xdb\x17\xdd\xb2\x7c\x51\x5f\x0c\xb2\xd2\x6b\x5b\xbe\xa8\xaa\xec\x2f\xce\xb5\xdb\x9f\xa4\x10\xa9\x04\x5e\xdb\xee\x15\x95\xd4\xdf\x39\xd7\xee\x53\x65\xba\x95\x65\x8b\x6b\xdb\x7d\xb7\xb0\xea\xdd\xcf\x65\xf7\x8a\x64\x15\x7b\xf8\x43\x3b\xe7\x45\x43\x1b\x65\x6d\xbb\x9d\xb3\x3b\xec\xf8\x08\x0f\x1f\x3e\x15\x47\xbb\x5d\x71\xf8\xec\x5f\xf4\xaf\x2b\x0e\x7b\x87\x5d\x17\x46\xfa\x5f\xb6\xf5\xf0\x73\xf7\x15\x39\xec\x8b\xc3\xec\x2c\xd7\x3c\x6c\xec\x8b\x20\x70\x5b\x6a\x43\x8a\xf7\x97\xdc\xc0\x61\xff\x1c\x0c\x3b\xe1\x2f\xbd\x01\xa6\x6a\x59\x78\xbc\x54\x82\x14\xfd\x1b\x14\x4e\xdb\xff\xe5\x1a\x39\xff\x69\xfb\x4f\x32\xdc\x5e\xf2\xf4\x81\x9f\x94\xb3\x7b\xfa\xd3\x86\x21\xe3\x1f\x83\x46\x5c\x3e\x11\x2a\xac\x71\x4b\xd6\x76\xf9\xc3\x8b\x37\xc5\xc1\xe4\xf2\xc6\x2f\x64\x57\x07\xf7\x7d\xd9\xfa\x4b\x31\x25\x0f\xd9\xd7\x97\xf2\xf6\xbc\x29\xb7\x3f\xbc\x79\x9f\xbc\xe2\xed\xfb\x84\x0e\x64\x52\xd2\xb1\xd4\x81\x14\xd5\x83\x57\xe5\xb6\xad\x37\x4f\xdc\xf3\xdf\x76\xe2\xed\x13\xa7\xad\xb7\x1d\x46\x02\xaf\xfb\xd1\xdc\xb6\x82\x39\xd3\xf2\x4d\x7c\xec\xb0\xc7\x07\xce\xe9\x1f\x6f\x92\xc5\xbd\xdf\x60\xf5\xf8\xc0\x1f\x3f\x07\x7f\x68\xe7\x33\x19\xca\x76\xc7\x4b\x95\x49\x51\xdd\x77\xec\xe7\xb9\xd8\x5e\xe7\x3b\xd7\xcf\x57\xf8\x45\x9b\x0e\xa2\x3f\x3b\xec\xc7\xe3\x4e\xff\xcb\xd6\x2b\xfa\xc2\x7f\x35\x8d\x35\xe8\xbe\xd5\x4d\x2b\x0c\x1a\xfb\x9d\xae\xa6\x15\x06\xdd\x7b\x54\xb1\x52\x0c\xa6\x5a\x56\x23\xa3\x26\x02\x85\xb3\xa5\x86\xa5\x28\x54\x76\x57\x23\xa1\x26\x3a\xbb\x79\xaf\xd6\x3c\x7d\xfb\xde\x73\x4e\xa6\xdd\x6c\xed\x7b\x6c\x93\x63\xfe\xd4\x19\x46\xba\xa7\x91\x3d\x13\xd5\x07\xff\x45\x76\x4b\x54\x7f\x63\xdf\xd5\xba\xcd\xe8\x36\x83\xf6\x77\x7f\x88\xea\x59\xb0\xac\x6f\x35\xe6\xf3\x44\xf5\xa4\x69\xa4\xb7\x44\xdf\xed\x0c\xad\x2b\x88\xf8\x0e\x79\xfe\x17\xe1\x47\xdf\xb4\xae\xed\xb3\xae\x7c\xf5\x8d\x9c\x94\xa8\x9e\xf4\xc6\xf0\xfc\x4e\xd5\xe1\x88\x2e\xf5\x2f\x45\xf5\xa4\x65\xda\x4d\xc5\x2e\x93\xfa\x9e\xd5\x86\x77\xc0\xfc\x5a\x4f\x2e\x4a\xf0\x2b\x5a\x52\xdf\xb3\x14\xc0\x14\x1d\x3d\xbf\xd5\x08\x7e\x45\x90\x00\x5e\x2d\x6d\x07\xf1\x30\x8a\x69\xab\xa5\xf7\x99\xf4\x23\x56\xb8\x11\x0e\x8b\xae\xe1\x54\x38\x53\x0c\xa6\x05\x56\xd3\xe4\x36\x4d\xee\x7c\x3f\x25\x85\x2d\x17\x2a\x96\xc5\x02\xe9\xd5\xca\xe6\x17\x15\x2d\xe1\x7f\xd9\xd4\xb2\x7f\x38\x97\xb6\x14\x74\x66\x30\x56\xd3\x96\x82\xea\xdf\x21\xdb\x35\x19\x42\x30\x49\x6d\xfa\xfe\xbc\x08\x87\x4e\xb5\x2e\x45\xa4\xef\xe7\xb4\x5f\xa7\x19\x3b\xee\x51\x5b\x06\xfa\xf2\xc5\x5e\x36\x62\x61\xd0\xcb\x43\x36\x62\x69\xd0\xfd\x70\x96\xdf\x12\xc1\x6d\x2f\x7a\x7a\xd9\x87\x04\xb7\xfd\x1f\xd4\x2e\x96\x4a\x9b\xe2\x3d\x31\x0d\x5f\xde\x0b\x61\x2d\x9b\x9d\x2d\xa5\x36\x45\xb1\xdc\x6b\x29\xb5\x29\xba\x2e\x46\xd3\xfe\x35\xed\xdf\xe4\x41\xef\x3e\x89\x9d\x51\xa7\xfc\x2f\xcf\xb5\x23\x0e\xeb\x47\xba\xfb\x22\xed\xe4\xfe\x19\x9b\x9a\xc6\x0e\x04\x9b\x6e\xad\x76\xd8\x2f\x87\xfd\xc2\x7f\x1d\x5e\xf1\xf0\x8a\x74\xcb\xe1\x1d\x51\x6e\xd4\xed\xf6\xc3\x1b\x3a\x98\x94\xd8\xfd\xa1\x0f\xe7\xe0\x13\x9d\x34\xe2\xf4\xf4\x4c\x7b\x75\xc6\x77\x25\x3a\x45\x9f\x8e\x00\xda\x1d\xf0\x76\x18\x37\x79\x7a\x93\x4c\x72\x75\x9f\xe1\xe9\x25\x89\x61\xfb\xe4\x92\x9a\x27\x50\xdd\x3b\x3a\xbd\x49\xa6\xaf\xfa\xa4\x77\x4e\x5f\xca\x93\x97\x72\xf2\x54\x4f\x7b\x9a\xe9\xab\x60\x00\x6e\x97\x6d\xa5\x68\xa8\x3b\xaa\x5d\xbe\x0e\x14\x0d\xe9\xb5\x34\xed\x1a\x68\xe1\xe7\x79\xd9\xae\x8b\x76\x2d\xda\x75\xd9\x15\x17\x5d\xb1\xb8\xa1\xcb\x76\x5d\xb4\x0b\x17\xa5\x5d\x36\xe2\x32\x26\xc4\x78\xb7\xdb\xb7\xf2\xe6\xd3\xc0\x77\x52\xe2\x53\xf4\x65\x5b\x6f\x2f\x79\x7b\x49\x0f\x79\x49\x0d\x22\x5e\x45\xd3\x20\x36\x0d\xa2\x1f\xf6\xed\x25\x1f\x6e\x72\xa7\xf9\x8f\xa7\x7f\xac\x64\xe0\xbf\xb4\x6b\xa0\xe9\xc0\x29\xdd\x29\x0a\xdd\xeb\xd5\x1e\x1b\xc1\xbc\x14\xc9\xb6\xd5\x1e\xaf\xf8\xb8\x8b\x02\xf7\xfd\x78\xdf\x8f\xb9\x72\xfe\xeb\xe7\x15\xd9\x85\x48\x9f\xae\x69\x10\xdb\xb7\x43\x2c\x57\xfc\x79\x43\x4c\x2e\x25\xb5\x83\xab\xfd\x3c\x3f\x93\x4b\x48\x25\x2f\xe5\x3c\x45\xeb\xdf\x7f\xf9\xbc\x7f\x3c\xef\xfd\x3d\xd4\x0d\x72\x3b\x85\x3f\xec\x0c\xb0\xba\x01\x2d\x78\xcf\xef\xb1\xf4\x18\x6f\x1d\x6f\x75\xd7\x4a\x82\x42\x5a\x6c\x75\xad\x24\x68\x6c\xc8\xbd\xba\x56\x12\x24\x15\x73\xab\x6b\x25\x41\x21\x4f\xbb\xba\x41\x2e\xe8\xba\x79\xaa\x85\x8a\x42\xd0\x77\x75\xe3\x5e\xd0\xbf\xe6\x1b\xf6\x82\x62\x3f\x89\xd5\x0d\x71\xc1\x60\xa2\x70\x75\x8d\x30\x28\xea\x7e\x56\x37\x9c\x05\x81\xbc\xdc\xea\x9a\xe5\xae\x59\x2e\x0f\x9d\x1e\x3a\x19\x43\xe9\x09\x23\x5c\xd0\xc7\x77\x45\xdb\x85\xde\x3e\x5a\x3c\xab\x33\xa7\x25\x7a\x78\x2e\xe3\xe0\xde\xbf\x61\x95\x9b\xd4\x78\x83\x32\x2b\xa0\x8a\xa9\xe8\x06\x40\xaa\x98\x8a\x0a\xef\xa8\xdb\x0a\x6a\x7c\x46\xf7\x87\xb6\x82\x22\x1e\x92\x4f\x4b\xc5\x52\xf1\x5e\x92\xc7\xa6\x89\x07\xc5\xa6\xff\xab\xb3\xed\x87\x68\xff\x3d\xa4\xf0\x81\xa3\x6c\x4a\x55\xca\x52\xd9\x54\x44\x30\xfe\xf5\xb0\x17\x5f\xb4\xfd\x3b\x99\xbd\x48\x12\x9c\x02\xcf\xd5\x75\x21\x40\x67\x5b\x97\x85\x56\xe9\x87\x0a\xf2\x04\xca\x93\x8a\x96\x94\x73\x2e\xf5\x49\x45\x30\xe5\xbe\x14\x23\x15\xef\xbf\xd1\x8c\x61\x6f\x0f\xc7\x0b\x3c\x5c\x35\x45\x45\x05\xb9\x03\x35\x45\x45\x05\x99\x88\x6e\xa0\x0d\x2a\x9a\x3f\xf4\xc5\x63\x46\x29\x88\xf6\xd5\x0f\x15\x15\xf8\x53\x8a\x85\x8a\xd2\xdf\xec\x65\x37\x52\x5a\x4c\xf5\xda\xea\xe5\x3d\x95\x93\x04\xdc\xb9\x71\x36\x28\x5d\xac\x5e\x36\xa2\x78\xbe\x7e\x36\xba\x0b\xa0\x53\x27\xb4\xba\xd1\x38\x08\xa6\x94\x57\xd7\x5d\x00\x15\xbe\x2b\x46\xde\x6a\x91\xe6\x68\x7f\x5b\xe5\x6e\x78\x0d\xda\xf7\x69\x1b\x3f\x77\xf2\xe1\x81\xcf\xa7\x7a\xa9\x78\x9d\x39\x1a\x69\xb4\x0c\x2a\x08\xc4\xba\xb1\x2b\x68\xa6\x84\x94\x1c\x15\x15\xbe\xaa\xcb\x1f\x2e\x23\x49\xbc\x34\x55\x48\x45\x05\xee\x4a\xdf\xbd\xe6\x8e\x53\x33\x3c\xe4\xc9\x76\xc4\x5b\x08\x71\xfb\x6e\xbf\x50\xec\x12\xbe\x5d\xc6\x9b\xdd\x7d\x62\x7d\x38\xc6\x9b\xa0\x35\xdf\x10\x03\x49\x50\xe1\xc7\x6d\x1c\x09\x8a\xcd\xc8\x96\x5a\xa5\x22\xf4\xe5\xfa\x61\xf3\x8f\xaf\xf9\xdc\x92\xb1\x25\xe8\x3a\x60\xca\x97\x8a\x16\xb8\x56\x5d\x1b\x0f\x82\xba\xa8\xd5\x4f\xfb\x1a\x29\xba\xdc\xbc\x4b\x0d\x3a\x68\xcb\xee\x39\xed\x8b\x93\x0d\xf0\x70\xf3\xfb\x69\xfb\x4f\xdb\xef\x21\x1b\x4b\x9e\x9a\x75\x75\x4b\x91\x53\xf1\x9e\x9f\x63\x97\xfd\x73\x99\x65\xe1\xfc\x9a\x6f\xf0\xfe\x1b\xdd\xa8\xc9\x05\xed\x1b\xe1\x6f\x9f\x12\xd5\xbc\x81\x43\xd2\xb5\xc2\x60\xe8\x38\xf7\xdb\x2f\x81\xed\xde\xd9\x15\x6a\x29\x46\x2a\x22\xfd\x1c\x35\xcc\xa0\xc2\x1b\x37\x2c\x05\x2d\xca\x1f\xfa\x48\x28\x35\x31\xd0\xee\x86\xa5\xa0\xc2\x11\x40\xf3\x0d\xea\x7b\x4a\x46\xaa\xa0\x74\x48\xba\x16\x1d\x14\xb3\x41\xab\x6b\xd1\x41\xff\x46\xcd\xc7\xae\x78\x14\x33\xe4\xe9\x6a\xe4\x41\xdf\x7d\xf9\x1f\x9b\xfa\xa0\xac\x69\x23\x8c\x67\x41\xd3\x49\xee\x5a\x74\x50\x81\x11\xee\x5a\x74\x50\x48\x76\x2f\xb5\x4e\x45\x85\x23\x9f\x06\x1d\x54\x68\x83\x7f\x5e\x11\x1b\x1f\x8e\xd2\x1a\x74\xf0\x3e\xb5\xb7\xf3\x43\x8b\x0e\x16\x42\x10\x2b\x8c\x84\x41\xb0\x0d\xef\x0a\x8d\x3c\x28\x36\x50\x58\x8a\xa4\x8a\xc6\x9e\xd5\x2b\x34\xfb\x9f\x6e\x2a\x6f\x40\x18\x2f\x83\x32\x59\x11\xda\x78\x50\x31\x3c\xfd\xe3\x21\x44\x46\xb9\x49\xc5\x55\x45\x85\x4d\xd5\x08\x47\x63\x9c\xc1\xc8\xa8\xa4\x2a\x1a\xb3\xda\x2b\x0c\x7a\x41\xb1\x0c\x70\x29\x88\x2a\x9a\x69\x6c\x95\x4e\x45\x51\x04\xba\x94\x35\x15\xc5\xee\x30\x4b\x59\x53\x51\x41\x18\x1c\x1a\x49\x50\x41\x4c\xad\xd0\xa9\xa8\xe0\x5b\x08\xed\x21\xa8\xe0\x2b\x52\xfb\x54\x74\x6a\x28\x57\x68\xfc\x40\xd7\x1e\x86\xc6\x0f\x14\x6a\xb4\x2b\x34\x7e\xa1\xf1\x23\xba\x55\x0e\x55\xbc\x0f\x92\x56\x0c\x2f\xc9\xa4\x30\x3b\xd9\xac\x18\x9e\x8c\xbd\xac\xd8\xba\x79\x85\xe1\x33\x68\xcb\x0e\xd3\x1c\x82\x66\xf4\x1c\x86\xc5\xa0\x82\xb8\x3b\x0c\x8b\xc3\x1d\x0f\x37\xfb\xc2\x84\x35\xe8\x06\xfb\x61\x10\x0c\xde\x7f\xf3\x98\xb7\xf9\xa2\xb3\xa9\xf4\x0a\xed\x21\x58\x6c\xbc\xb5\xc2\x8c\x2f\x28\xfd\x05\x25\x52\x45\x05\xe1\xb3\x12\xa9\xa2\xb1\xe2\x72\x29\x7e\x2a\x9a\x03\xb3\xe2\xa7\xa2\xfe\xfb\x2f\xef\xf2\xc5\x2a\xfb\xc2\x2c\x2c\x28\x5d\xea\x30\x0b\xab\xf4\x69\x6e\xf6\xbf\x69\x58\x50\x8e\x32\x4a\x9f\x8a\x0a\x42\xb4\x30\x0c\x05\xf5\x7d\x0e\x9a\x32\xf0\x9e\x8c\x1b\xd7\x96\x81\x72\x94\x0f\x4d\x19\x78\xff\x8d\xb3\x19\xae\x82\x8a\xf8\xbb\xfa\x6b\xa9\xa9\x2a\x8a\xbd\x5d\x56\x98\xcd\x05\xef\x89\x79\xd8\x46\xb8\xa0\xf4\x34\x95\x5e\x15\x2d\xfd\xd2\x34\x92\xa1\x91\x24\x8b\x10\x46\xb8\xa0\x82\x00\x3a\x4c\xdd\x82\x62\x07\xa7\xa5\x3c\xab\xa8\x20\x50\x55\x9d\x75\x7d\xea\xac\x9b\x9f\x9a\x79\x5a\x50\x68\x9b\x2e\x15\x5b\x45\x04\x51\x69\x68\x11\x41\xb0\x05\xcc\x52\x9d\x55\x14\xab\x86\x96\x6a\xaa\xa2\x82\x88\x2a\x8c\x4a\x51\x53\x7d\x2f\xc9\x23\xbb\x3c\xd9\xc5\xa7\x4c\xdc\x18\xda\x35\xd0\xd1\x90\x59\x71\xf9\xac\x5f\xac\xf2\x55\xbd\x6c\x2b\xb5\x97\x85\xad\x08\x33\xb0\xa0\x4d\xbf\x3e\x33\xb0\xa0\x82\x70\x39\xb4\x74\xa0\x7d\x2f\xb4\x49\x59\xd0\x87\x6d\x35\x04\x05\x45\xb9\xd9\x0a\x6d\x18\xe8\x94\x75\xad\xd0\x60\x81\x68\x0e\x31\x8f\x0f\x84\x10\x34\x96\x87\xec\xea\x17\x51\x8e\x3a\x46\x92\x2a\xa2\xe6\xe6\x4b\xae\x2d\x02\xf5\x75\xb5\xe9\x56\xd0\xbe\x7e\xfd\x79\x7e\x66\x55\xd9\xd4\x64\xa9\x92\x2a\x82\x1d\x4e\x57\xfc\x7c\x07\x28\x70\x0c\x82\x76\x85\x53\x45\x05\x29\x87\xf8\x79\xdf\x2f\x56\x69\x51\x7e\xf6\x34\x0b\x4f\x8d\x8d\x43\x8b\x15\x5a\xac\xdd\x43\x3e\xdc\x1f\x0f\x97\x64\x82\xb2\xa9\xa2\x90\x6a\x5e\xea\xa2\x8a\x70\x66\x4b\xc1\x53\x51\xba\x36\xaa\x9b\x8a\xc9\x5e\xef\x6b\x38\x81\x0a\x8a\xfd\x53\xd7\x30\xb6\x04\x81\xfe\xe6\x1a\xc6\x96\xc3\xd8\x92\xf8\x7f\x68\xb0\x40\xa3\x34\x60\x0d\x56\xba\x8a\x96\xac\xcc\x59\xc3\x39\xd5\xf1\xcd\xa9\xf2\xa2\x8f\x66\xfb\x9b\xe3\x1c\xcd\xa0\x7e\x51\x14\x4b\xda\x96\x72\xaa\xa2\xa8\x2f\x5c\x0a\xa0\x8a\xf0\xa3\x51\x00\x55\x54\xec\x9e\xcb\xf6\xbf\xa8\x41\xa8\x34\xb4\x62\x8a\x9d\x26\x26\x5e\xc9\x52\x51\x83\xa8\x65\x68\x8c\x86\x91\x18\x39\x81\xe1\x84\x27\xa8\xd8\x3d\x97\x7d\x11\xec\x61\x8d\x17\x39\x8c\xc4\x40\x0d\xfb\x75\x78\x2e\xd6\x40\xb0\x49\xf9\x1a\xda\x22\x10\xec\x1f\xb9\x86\xb6\x68\x7c\xa9\x5c\x86\x99\x61\x8e\x16\x04\x4b\x5f\x97\xa2\xa3\xa2\xef\xb6\x22\x7d\x6e\xf9\x89\xd2\xbe\x87\x9c\xb6\x04\x81\x34\xef\x52\x14\x54\x14\xab\x7c\x96\xa2\xa0\x22\x9a\x37\x69\xd0\xa5\x02\x28\x85\xce\x4b\x01\x50\x51\x63\xf3\x5c\x5e\x91\xa0\xcb\x38\x7e\x94\xbd\x53\x56\xd2\xd3\xd4\xb2\x77\xca\xb1\xc8\x1f\x7a\x43\x64\x72\xc7\xf7\x5f\xbe\x29\x2f\x6a\x10\x58\x2a\x09\x2a\xc2\xa8\x6a\x68\xfc\x40\x43\xfc\x6e\xa9\x08\x2a\x9a\xca\x70\x6b\x68\x10\x41\xb1\x13\xc5\x1a\x06\x5f\xa0\x06\xce\xf3\x30\xbb\x0b\x22\xed\x69\x73\xb4\xa0\x86\xcf\xc8\x8c\x2b\xa8\xe1\x8b\x62\x84\x06\xfa\xb0\xc3\x76\xdf\x56\xb4\x3d\xbe\xf7\x70\xf7\x87\x3b\x82\x4d\x18\x9f\x61\x34\x06\x02\xcd\x81\xa5\x42\xa8\x88\xf4\x79\x68\x68\x40\x0d\xc2\xdb\xe1\x1c\x21\x28\x6a\xd1\x97\x92\x9e\xe2\xbd\x6f\xce\x6f\xa0\x05\x6a\xf8\x3e\x19\x54\x81\xf7\xdf\xf8\xa9\xd3\x73\xa0\x7d\xed\x37\x4d\x0a\x56\xf9\x74\x8d\xa0\x40\x4f\xdf\x6a\x23\x28\x50\xac\x10\x59\xc3\x08\x0a\xd4\x68\xfb\xdf\x46\x79\x9c\xde\xf1\xe9\x2b\x62\x83\x6c\xe4\xe9\x1d\x73\xc8\x8c\xe9\xf8\xcc\x15\x4e\xc1\xd0\x5c\x81\x42\x90\x6f\x0d\xb3\xa8\xe0\xfd\x37\x3e\x34\x67\x0c\x41\x67\x89\xd7\x1a\x86\x66\xa0\xa8\xed\x5d\xc3\x34\x2a\x88\xdd\x77\x50\xab\x06\x6a\xf8\x78\x2e\x6f\xef\xe2\xa3\x62\xc0\x1f\x26\x5b\x41\x0d\x07\xd6\xdb\xc6\xbe\x28\xf4\xb4\xd7\x30\xf0\x03\x81\xb2\xd1\x1a\x1a\x3a\x50\x26\x9c\x86\xf1\x1b\x28\x54\xbd\x97\x3a\xa7\xa2\xd8\x44\x7b\x29\x73\x2a\x96\x3e\xc5\x78\x3c\xf4\x38\x22\x73\xc5\xc7\x8f\xea\x71\x51\x3b\x5f\x90\xe6\x6a\xfc\xfe\x9f\xb1\x77\x47\xba\x65\xd7\xcd\x6c\xfd\xdb\x8a\xdd\x83\x3b\x49\x26\x01\xc2\x29\xa7\xec\xaa\x3e\xe4\x33\x42\x86\xa4\x13\xa7\xa4\xfe\x57\xe4\x18\x29\xa3\xe4\xac\x6d\xac\x18\x2b\x18\xf3\xcf\x64\xbe\x08\x02\x04\xf1\x7d\x37\x91\x5e\x68\x89\x40\x6c\x3e\x56\xc3\x9c\x20\x90\x05\x59\x9b\x36\x06\xbc\x7f\xe9\xd1\x7c\x4a\x0f\x4f\x89\x28\xc1\x34\xe5\x07\x74\x63\xc5\x53\xe7\x66\xea\xdc\x10\x6f\x52\x3b\x54\xb4\xc9\xe6\xb8\xa5\xee\xa7\x18\xa8\x1a\x2f\x75\x3f\xc5\xa0\xe0\xe6\x9a\x26\xd6\x80\x40\x8b\x70\x29\x05\x2a\x62\xc3\x7d\x9e\xfa\x40\x48\x81\x06\x95\xb5\x97\x52\xa0\xa2\xb9\x12\xab\xc8\xa7\x88\x8d\x39\xcb\x34\x9e\x08\x82\x6c\xc7\xa5\xc6\xa7\x48\xd4\x41\x97\x82\x9e\x62\x38\x71\x52\xaa\x53\xc4\x86\x17\x3c\x29\x67\x28\x9a\xf6\x76\xea\x03\xcd\x2f\x28\xc8\x53\x9a\x1a\x99\x69\x50\xf0\xfb\x99\x7f\x89\xf9\x70\x7e\x35\x5d\x0a\x04\x49\xe5\xee\x35\xf5\x78\x40\x50\x5f\x7a\x4d\x57\x07\x41\x6c\x5e\xa4\x4e\x10\x18\x1b\x01\xd2\xa9\xdd\x01\xb1\xf1\x5e\x28\xb9\x29\xfa\xe6\x33\xd2\xee\x80\x6e\xf4\x5b\xc9\x4d\x11\x1b\x6e\xaa\x62\x9a\xa2\xa5\xbd\x77\x1d\x10\x2c\x72\xe0\xd6\xd4\xdf\x01\xb1\x11\x6f\x98\xda\x2b\x30\x10\x1f\x5d\x53\x0f\x08\xc4\x36\x3c\x96\xfd\x7a\xb1\xe2\x67\x93\xfd\x32\xba\x88\xfb\x3c\x4d\xe3\x01\xef\x6d\xa5\x63\xda\x30\x10\xdf\x75\x1b\x25\x04\x1b\xdb\xf8\x96\x6a\x97\x62\xb8\x9a\xaa\xda\xa5\x18\xd3\x87\xab\x59\x03\x2b\x30\x45\x2a\x5b\x8a\xd8\xf0\xf3\x94\x99\x14\xc1\x5e\xa3\x35\x0d\xe6\x81\xd8\x3c\x96\x6b\x83\x20\x36\xfc\xfa\xa9\x41\x01\x43\x07\x6e\xea\x4d\x81\xa0\xe8\xfb\x9a\x2e\xea\x81\xd8\x98\xb6\x2a\x1f\x29\x62\xc3\x27\x51\x18\x52\xbc\xb7\x82\xfb\xaa\x29\x02\x61\xa6\x88\xc2\x90\x22\x36\x66\xca\x8a\x40\x8a\xd8\x70\x49\x67\xd9\x8b\xc2\x8d\xc4\xd2\x4d\x0d\x16\x18\x66\xce\x4d\x13\x5d\x40\x50\xbb\x7d\x4d\x6d\x18\x08\xca\xbe\xae\xe9\xaa\x1e\x88\x6d\xb3\xc9\xcf\x68\xa7\xf0\x33\x03\xcf\xd4\x86\x81\xd8\xf0\x19\xa6\x9e\x11\xe8\xa4\x54\xaf\xa9\x63\x04\xfa\xf4\x2b\xd2\x31\x52\x63\x92\x1d\x62\x6b\x1a\x77\x04\x63\xf9\x31\x68\x0e\xc1\x7b\x77\xb8\x89\x06\x1e\xc1\x58\x5f\xc7\xbc\x89\xc4\x1d\x1d\x11\xa7\x6b\x8b\x60\x51\xff\x7e\x4d\x83\x8c\xf3\x0b\x32\xe2\xdf\x2a\x32\x29\x62\x63\x06\x31\x5d\x35\x04\xb1\x31\xe1\x9d\x9a\x2d\xb0\xb1\xc7\x71\x4d\x8d\x0f\x88\x0d\x07\x44\x15\x48\x31\xa8\xcd\xb6\xa6\xfe\xd3\xfc\xf2\x57\xd3\x36\x3b\x7b\x32\x8a\xf9\x44\xb4\x3e\x53\xeb\xe3\xb7\x75\xf9\x05\x92\xbf\xba\xc5\xdf\xc8\xf7\x9a\xda\x18\x10\x1b\x76\x74\x9a\xcd\x02\x62\xf3\x51\x98\xa7\x02\x06\xa9\xb2\x6b\x1a\xfd\x03\x41\xc5\x95\xa5\xbe\xa3\x18\xce\x56\xa6\x2e\x17\x08\x6a\x76\x2e\x85\x1b\x45\xdb\x4c\x74\x9c\x3a\x40\xa0\x7f\x23\xb9\x81\x3d\x10\x14\x7d\x5b\x6a\x39\x8a\xd8\x7c\xe9\x75\x93\x40\x5f\x0e\xdb\x06\xf6\x40\x6c\x7c\x67\x61\x10\x0f\xc4\xc6\xb4\x36\x34\x57\x20\x48\xed\x7e\x07\x31\x9b\x2c\xb9\x31\x68\xda\x6d\xf2\xa9\x16\x4d\x87\x4d\x7c\x07\xbc\x95\xe1\xb2\x19\x78\x9f\x57\xd2\x36\x6c\x63\x60\xc2\xf4\x85\x51\x3c\x30\x0d\x3a\x87\x16\x0c\x4c\x57\x47\x42\x0b\x06\x62\xe3\xdd\x0d\xfd\x1f\x10\x1b\xaf\x43\xe8\xff\x80\xf7\x94\x1c\x4c\x4b\x04\x06\x25\xf7\x56\x18\xc6\x03\x13\x15\xae\xa5\x68\xa3\x88\xcd\xbe\x9a\xa4\x09\x62\xf3\x58\x9b\xc7\xda\x78\x07\x70\xe1\x15\x4b\x14\x8d\x2a\x9b\x2b\x0c\x8d\x81\xa6\x8f\xad\x7c\xa2\x78\x3b\xc6\x5f\x9a\x1f\x02\x42\x0f\x25\x34\x15\x60\x33\x03\x28\x1c\xf1\x41\x8b\xef\x0f\xbd\xd7\xb8\x36\xc3\x50\xae\x32\x8b\x62\x94\x37\x56\xc3\x00\x5a\xfa\x48\x5c\x76\x02\x61\x5a\x42\x68\x2a\x40\x9b\xec\x99\x5e\x2a\x2f\x8a\xd0\x89\x0f\xad\x00\xe8\xec\xc5\x5b\x2a\x2f\x8a\xf7\x2f\x39\x81\x7e\x8b\x32\x8b\xf3\xe7\x19\x74\x5c\x40\x98\x31\x18\xba\x1f\x60\xf4\xef\x57\x5e\x67\xea\xe9\x79\x52\xc3\x76\xa0\xb1\xbd\x66\x29\x83\x28\x9a\xa5\x23\x57\x68\x09\x40\x33\xb0\xa2\x04\xe1\x0a\x76\x2d\x50\x8f\x65\x85\xa1\xb6\xf8\x42\x6d\xf6\x43\x4b\x10\xdf\xb6\x05\xac\xa2\x22\x84\x22\xb6\xaf\xc9\xc7\xa2\xbe\x08\xf3\xba\x30\x70\x16\x5f\xe0\x8c\xe8\x41\x98\xce\x01\x62\xfb\x9a\x7c\xc6\xbb\x5a\x34\x5c\xc1\xee\xcd\xfd\x3c\x15\x8f\xe6\x30\x1f\x04\xbb\xb6\xaf\xc9\x2b\x60\x2d\x69\x63\x4c\x0f\x47\x66\x10\x86\x86\x54\x21\x14\xb1\x31\x02\xc5\xe1\xf7\xc4\x96\x04\x73\x36\x43\x17\x00\x84\x1e\x8e\x2a\x81\x22\x9c\xf3\x84\x81\x2d\xd0\x5d\x41\x0d\x07\xe6\x70\x60\xc6\x59\x0d\x5d\x00\xd0\xa9\xed\xb7\x14\x09\x14\x6d\xf9\x3a\x3a\x56\x87\x92\x20\x98\x9f\x70\x09\x07\x84\x91\xff\x70\xbe\x1f\x16\x5f\x61\x9a\xa2\x48\xa0\x88\x89\x1f\xa2\xe4\x9f\x08\x63\x13\x4a\xfe\x89\x70\xb9\x49\x31\xbf\xf5\x89\xf9\x31\xe4\x85\x03\x2f\x08\xea\xf4\x2c\x65\xfa\x44\x20\x48\xb0\xc2\xac\x09\x30\xa6\x2f\x94\xbe\x83\xc2\x7d\xce\xc5\xc2\xe8\x17\x88\x89\x9b\xa6\x4a\x9f\xe8\xe5\x28\xe2\xe8\x0c\x62\x36\x7f\xe5\xcb\xf9\x6d\x20\xf0\x55\x74\x78\x06\x31\xb1\xa7\xa1\x87\x11\x9f\x87\x41\x34\x47\x31\x3f\xd1\x0c\xdf\xa5\x1e\x06\x08\x0a\xcf\xaf\x74\x14\x07\x23\x18\xd8\xd3\xf8\x17\x08\x97\xc6\xd2\x81\x1d\xc4\xfc\x79\xac\x65\xd3\xa2\x69\xd1\x54\x36\xd9\xff\x41\xd3\x6e\xd3\x4e\x53\xd0\x74\xd8\xe4\x82\x39\xaf\x58\x1a\x00\x03\xe1\x5d\x4c\x7d\x1a\x10\x13\xff\x31\x35\x09\x20\x26\x0f\x29\xb5\x08\xe0\x3d\xd8\x9f\xb7\x4a\xad\x34\xad\x02\x74\x6a\xf1\xac\x6c\x76\xbc\x39\xf0\xf3\x8a\xa7\x26\x03\xc4\xec\x36\x9d\x36\x91\xa9\xf5\xfd\xe5\x6d\x93\xb3\x0a\xbe\x04\xe5\x04\x45\x4c\x1c\xd8\x74\x7d\x08\xbc\x3f\x9b\xb4\x79\x52\x72\x2d\x26\x0e\xb8\x12\x83\x22\x26\x1e\xac\x6a\x82\x22\x26\xeb\x81\xe9\xc6\x01\x10\x93\x51\x21\x75\x71\xc0\x7b\x7c\xba\xa6\x01\x02\x31\x71\x2f\x52\x57\x05\x74\x73\xc1\x52\xbf\x04\x6c\x06\x7c\xd2\xcc\x46\x10\x14\x0e\x5f\xa9\x99\x02\x61\xf8\x22\x75\x55\x40\x4c\xbc\xc9\xd4\xfe\x80\x6e\x72\x5b\xea\xaa\x80\x98\xb8\xfc\xa9\x5f\x02\x62\xe2\x73\x2a\x43\x28\x62\x32\xc7\x49\x37\x0e\x80\x98\xf8\xf7\x4a\x0e\x8a\x98\xc3\x5f\xf9\x5e\x12\x5a\x73\xfa\xaf\xbe\xa0\x88\x89\x45\x55\x5f\x50\xc4\x64\x84\x49\x83\x66\x20\x26\xfe\x6b\x6a\x68\xf2\xdb\x37\x40\xac\x33\x4d\x76\x04\x31\x99\x42\xa5\x21\x32\x30\xcc\xf6\x4e\xf3\x1f\x41\xa0\xb8\xbf\x54\x17\x14\x83\x9d\x51\x2b\x0d\x87\x81\x70\x13\x40\xea\x97\x80\xf7\x94\xfe\xcc\x4f\x81\x7a\x67\xae\x55\xa7\x8e\x03\x78\x7f\x46\x37\x8c\x6b\x81\x60\xcf\xf2\x4a\x57\x4b\x40\xa0\x51\xba\x52\x33\x00\xc2\x7c\x0f\x65\x03\x57\x3a\x8f\xa7\xde\xc4\x4a\x4d\x03\x08\xea\x74\x2e\x45\x02\x45\x50\xcc\x7a\xa5\x4b\x23\xe0\xfd\x4b\x6e\x9a\x33\x74\x30\xca\x77\xd1\x20\x16\x88\x39\xfd\x95\xd7\xc4\x0a\x8a\x49\xb0\x69\x48\x0a\xc4\xf7\xae\x68\x67\x40\xb8\x4c\x94\xda\x19\x10\x13\xc7\x4a\x2d\x41\x11\x13\xab\x9e\x1a\x15\x10\x54\x55\x5c\xe9\x34\x1e\x84\xa9\x1a\x69\xaa\x00\x08\x23\x94\x69\x10\x09\xbc\x57\x44\xc7\x5c\xf5\x00\x61\xf2\x54\xba\x9c\x91\xee\x1c\xa3\x96\xc4\x4a\x4d\x01\x48\xb3\xc0\x15\x00\x14\xef\xcf\x6c\xf3\xce\x3a\xf0\x33\x55\x4f\x17\x34\x40\x4c\xfc\xd3\x7c\xbc\xb3\xcf\xb4\x2c\x24\xd7\xe9\x8a\x46\x3e\x5e\x27\x0f\x40\xfb\x90\xcf\xa7\x0c\x49\x93\x5d\xa3\xc0\x56\xf8\x61\x3a\xee\x83\x98\xbc\x7a\xcb\x25\x78\xf0\xf6\x2c\x68\x1b\xb6\x0d\xdb\x92\xb6\x69\x1b\x23\xd7\xb0\x29\x6c\xfa\x6e\x91\x87\x4b\xdb\x58\xc3\x62\xb4\x5e\x0e\xea\xeb\xf7\xdd\xa2\xa2\xed\xb2\x8d\xa7\x3e\x3d\xda\x6d\x13\x7d\xc3\xe1\x5a\xae\x6a\x80\x30\xac\xbe\x1c\xfa\x97\x43\x3f\x63\x92\x42\x84\xa2\x4d\xaa\x4a\x2c\x95\x08\x45\xa0\xf7\xba\x96\xde\x00\x88\x49\x18\x77\x39\x68\x83\xf7\x2f\x39\xa7\xd1\x2b\x90\x28\xd8\x2e\x05\x0b\x45\x20\x7d\xb2\x54\x24\x14\x81\xba\xd1\x5a\x06\xb4\x40\x6c\xe5\xaf\xbc\x19\x14\xe6\xd4\xa1\x5e\x2e\x87\x80\xa0\xe4\xd4\x5a\xae\xcd\x83\x30\x77\x73\xb9\x10\x0f\xc2\x0c\x9d\xe5\xc8\xbe\x1c\xd9\x19\xce\x96\x91\x2a\xd0\x96\x4f\x73\xb3\x5f\x1b\xfd\xc2\xcb\x5a\x9b\xb7\x67\xe3\xd3\xc1\x89\x5b\x2e\x9a\x80\xee\x0a\xeb\x72\x60\x07\xdd\x3c\xed\xa5\x4b\x02\xa6\x51\xda\xa5\xb3\x01\x02\x81\xc2\xb5\x1c\xeb\x41\x77\xdd\x6c\xb9\x6f\x0c\xbc\xb7\xd5\xbf\xf4\x56\x4c\x6a\x37\x30\xf4\x2e\x07\xfb\xe5\x60\x9f\x7f\x2e\x99\xbd\x96\xee\x09\x68\x26\x3a\xab\x7b\xb8\x3e\xdd\xc3\xef\xf4\xbe\x48\xd4\x54\x40\x71\x70\x2d\x8d\x08\x78\x7b\xc4\x4d\x70\xcd\x06\x74\x07\xeb\xe5\x9a\x0d\x08\xa4\xc7\xd6\xd2\xb0\x80\xc6\x9e\xdb\xa5\xae\xa2\x78\x0f\xc6\x4d\xd6\xb2\xac\x4f\x8e\xca\x83\xd9\xd9\xf0\x81\xf1\x97\x66\xd1\x83\x6e\xd8\x4d\x11\x45\x11\x14\xcd\x5f\xcb\xb5\x17\x10\x13\x77\x65\x19\x03\x03\xbd\xec\x85\xee\x0a\x08\xa4\x9b\xd6\x32\x2c\x06\x62\xe2\x35\x2d\x6d\x0d\x68\xc9\x88\xa8\xd4\xa2\x88\xb9\x6c\xb2\x13\x9a\x1f\xa6\x83\x4b\xf3\x03\x9a\xeb\x4b\x4b\xcf\x07\xf4\xe5\xdd\xd1\x20\x81\x70\xa3\xdf\x32\xa1\x00\xc4\xb4\xab\x66\x07\x80\xbe\x1c\x3a\x0c\x81\x81\xa0\xbe\xe7\x5a\xfa\x3d\x4b\xbf\x87\x12\x26\x6b\x69\xdd\x40\x50\xce\x6c\x29\xac\x28\x02\xb5\xab\xb5\x34\x6e\x4b\xe3\x56\x36\xf9\x8c\x08\x8b\x51\x42\x6a\x29\xa2\x28\xde\xe3\x73\xab\xb5\x81\x60\x18\x1e\x5a\xc6\xad\x40\x50\x2b\x6f\x2d\x5d\x21\x10\xd3\x77\xcc\xec\x00\x10\xd3\x8f\xdd\x95\x1d\xd0\x28\x40\xb6\x54\x64\x14\x81\x10\xc4\x5a\x46\xb7\x40\x6b\x0e\x7c\x5a\xc0\x65\xd6\x1b\xe5\x6e\xd6\x72\xa1\x06\x04\x95\x48\x96\x92\x8c\xa2\x37\xdf\x57\x17\x65\xc0\xe6\x36\x93\xe5\xc6\xae\xa5\xa1\x64\xd6\xa0\x70\xa3\xe8\x2e\x3d\x2b\xdc\x28\x5e\x5f\xd7\x36\xef\xcf\xf9\xdd\x1f\x6e\x86\x41\x30\x30\x28\xb5\xbd\x96\xa6\x12\xb4\x49\x61\x96\xa5\xd8\xa2\x08\xd3\xb8\x96\x81\x31\x30\x96\x43\x9f\xc9\x06\x8b\x35\x18\xd3\x6e\x96\x3e\x19\x78\x0f\x66\x9b\x23\x11\xf2\x16\x31\x3c\xa7\x77\x88\x00\x99\x81\xfb\xa5\x9f\x06\xba\x93\xda\x65\x12\x1d\x18\xd4\xc7\x5e\x8a\x34\x8a\xf8\x3e\x38\x97\x6a\xd6\xa3\xbd\x73\xa4\xd3\xec\x82\x30\x10\xbd\x4c\x86\x03\x5d\xff\x54\x91\x46\x11\x06\xe0\x97\xc6\x19\xac\xf0\x95\xd5\x77\x03\xa3\xbc\x22\x6d\x33\x08\x13\x10\x96\x2b\x41\x20\x5c\x06\x54\xc8\x51\xf4\xf0\xcd\xd0\x5c\x83\xae\x05\x2f\x7d\x32\x10\x2e\x6e\x97\x09\x08\x20\x02\xf3\x57\x5a\xe6\xfa\x2c\x33\x53\x64\x25\x20\xc5\xd0\x18\x95\x1e\x18\x88\x60\x9c\x2e\x97\x90\x40\x18\x90\x2d\xf3\xd6\x41\x33\xb4\xa3\x2a\xa4\x18\x81\x4d\x29\xbd\x2d\x10\xa8\x55\xaf\xd2\x9b\xaa\xe6\x1b\xc5\xdc\xbd\x34\xb9\x60\x99\x02\x54\xd4\x9d\x14\x11\xdf\xaf\x6e\x9b\x6e\x0e\x46\x93\x9e\x13\x88\xe0\xeb\x2d\xcd\x2b\x78\x8f\xcf\xfd\x31\x29\x01\x8d\xc9\x08\x5e\x6c\x05\x25\xc5\xfb\xb3\xa2\xcd\x1b\x84\xcd\x0d\x5e\x82\x32\x05\x01\x44\xf0\x7d\x29\x1e\x29\x22\x78\x96\x8a\x42\x8a\x36\x29\xe2\xb3\x94\x80\x14\x41\xe1\xf7\x55\x2e\x0f\x81\x70\x1a\x54\xda\x61\x10\x54\x00\x5b\xa5\xd1\x05\x11\x3e\x25\x8d\x2e\x48\xbf\x2e\x85\x1c\x45\x1b\x5f\x93\xbd\xc0\xc4\x51\x68\x62\x29\xae\x28\x5a\x32\x1d\x56\x5c\x51\x04\x9a\x93\xab\xb4\x5d\x20\xc2\x5b\xa1\x9f\x04\xe2\x7b\xc9\x74\x8a\x40\xc4\xf8\x1b\x89\xd9\x6a\x2f\x8a\x70\x8b\x42\x19\xb0\x03\x61\xea\x52\x69\xec\x40\x77\x7d\xb5\xf4\xa2\x40\xc4\xb0\xc9\xc7\xca\x82\x4f\xe0\x3d\x96\xe1\x3a\xf0\xde\x75\xae\x4e\x6b\x07\x22\x70\xf9\x14\x72\x14\x3d\x98\x10\x29\xe4\x28\x9a\xfa\x99\x4b\x25\x47\x31\xca\x6f\xc8\x0d\x62\x20\x1c\x74\xca\x6c\x3c\x30\x9c\x70\x95\xcb\x47\xe5\x9e\x68\x9f\x97\x76\x12\x44\x60\xdb\xd4\x7b\x14\x81\x12\xd9\x52\xef\x51\x34\x64\x2e\x97\x42\x8e\xa2\x39\x02\x94\xf1\x41\x10\x81\xdf\xa6\x90\xa3\xe8\x6e\x80\x2e\x4d\x27\x18\x66\x01\x2b\xed\x28\x02\x95\xeb\x55\xa6\xda\x81\xe6\x4a\x57\x99\xdb\x00\x22\xf0\xe4\x54\x76\x14\x11\x38\x5f\x2a\x3b\x8a\x51\x5e\x90\x31\x44\x10\x81\x0f\xa5\xd8\xa3\xe8\xdf\xcd\xd1\x79\x04\x11\x9b\x67\xf4\x1a\xf1\x1d\xdd\x28\x5a\xa6\x44\x80\x30\x82\xad\xd8\xa3\x68\xba\x93\xa5\xeb\x08\x22\x18\xca\x15\x71\x14\x11\x78\x80\x2a\x36\x2e\xe4\x19\x23\xfc\x43\xad\x13\x68\xae\x90\x95\xc6\x09\xbc\xef\x0e\x7d\xd5\xb9\xab\xcf\xb9\xf3\xbe\x9a\x0f\x00\x22\xfc\x80\x34\x45\xa5\xdd\xc1\x5d\x55\x2c\x51\x34\x57\xdd\xcb\x85\x99\xb2\xec\x88\xc9\x32\xaa\x25\xae\x4f\x2d\xd1\x5b\x66\x5e\x36\x88\xf0\x89\x98\xd2\x56\x9f\x2d\xf2\x1d\xd6\xca\x94\x56\xc6\x2b\xd0\xa4\x80\x08\xdc\x20\xb5\x11\x45\x43\xc6\x71\xed\x3a\x72\xa0\x8d\xfc\x7e\xd6\x6d\xeb\xec\x49\x99\x34\x0d\x9b\x78\xc9\x30\x33\xbb\x96\x01\xbc\xdd\xf0\x2f\x97\x6d\xcc\xff\x86\x3f\xdb\x6d\xe2\x99\x2f\xcf\x79\xda\xc4\x33\x67\x34\x57\x2d\x51\x0c\xea\xb2\xac\x5d\x37\x6e\x37\x39\xad\x79\x30\x8d\x0a\x88\x60\xe6\xb5\x6b\x54\xc0\x72\x84\xdf\x35\x2a\xa0\x51\xfb\x70\xed\x7a\x76\xe0\x3d\x18\xdd\xd0\xb5\x03\xe1\x77\xaf\xf4\xa2\xe8\x66\x7c\x29\xbd\x28\x9a\xf6\x7b\x77\xcf\x14\x88\xc0\xe7\xdc\xb5\x46\xbb\xd6\x08\xdf\x48\x99\x45\xd1\xf5\xec\x76\xfd\x3f\xf0\xf6\x82\x9e\xe9\x00\x82\xb6\xbc\x24\x8d\xd6\xae\xd1\x62\xc0\xdb\x35\x50\x60\x04\x1e\x9a\x02\x8d\xa2\x07\xb3\x5c\xc5\x18\x45\x73\x77\xf6\xee\x66\x28\x30\xd6\xe6\xaf\x36\x9b\x2c\x13\xcc\xb1\x34\x6c\xbb\x86\xed\x6b\xf2\x56\x0c\x5d\x72\xba\xef\xae\x68\xd0\xf5\x09\x55\x6c\x14\x9d\xda\x7a\x4b\xc5\x46\xd1\x5d\x28\xd8\x35\x75\xbb\xa6\x0e\xbf\x5a\xf9\x44\x11\x6e\x4a\xdf\xcd\x84\x00\xe1\xd6\x11\x75\x11\x45\x9b\x14\x64\x5b\xaa\x20\x8a\x6e\x7c\x74\x37\xd1\x1b\xf4\x35\xfd\x95\xb7\x1a\x9f\x93\xfa\x87\x6b\x77\x7d\x0b\x74\x03\xfe\xbb\xf1\x45\x30\x8c\xee\xef\x7a\x8b\x20\x50\xdc\x5a\xbb\x76\x13\x74\x0b\x2d\x28\xa8\x28\x9a\x1b\x71\x77\xdd\x40\x10\xce\x6e\x14\x4c\x14\x6d\xf9\xd2\x69\x37\x41\xb7\x8e\x83\x1a\x8a\xa2\xbb\x8d\x51\x0d\x45\xb1\xb9\xf6\xb4\xbb\xba\x05\xc2\xb0\xba\xb2\x8a\x22\xcc\x32\xda\x8d\x42\x82\x9e\x58\x6a\x85\x16\x45\x7b\xed\xc3\x1f\xcd\xf2\x6e\xdc\x12\x6c\x66\x2d\xec\xda\xe0\x5d\x21\x24\x46\xc3\xdd\xe4\x77\xd0\x5d\x06\x51\x86\x51\xac\x20\x40\xbc\x9b\xd6\x0e\xc2\xdc\x54\x35\x17\xc5\xfb\x50\xe9\xb7\xbe\x24\x88\x20\x44\xa0\xc2\xa2\x88\x60\x85\x75\x37\xfb\x1d\xc4\xf7\x15\x68\x5c\x41\x2b\x3b\x66\xa6\x3b\x18\xe8\x91\xaf\xdd\xea\x22\xa0\x5b\x0c\x62\xd7\x09\x05\xc3\x8c\x9a\xdd\xd5\x37\x10\x2e\x6d\xaa\xd6\x28\xfa\x37\x54\xb9\xf8\x06\x3a\x92\x50\x4b\x1d\x46\x31\x96\xcf\x46\x4b\x0a\x22\xec\x84\x3e\x28\x68\x68\xb0\x2c\xa5\x19\x45\xff\xc6\x33\xed\xed\xae\xbd\xc5\x5f\x56\xac\x51\x44\xf8\x36\xe8\xa9\x82\x86\x04\xcb\xda\xdd\x12\xb6\x6b\x95\xfd\xf8\xb5\xca\x60\x39\xc5\xdc\xcd\xe9\x00\x81\xf8\xe8\x52\xe4\x51\xb4\xb1\xbe\xbf\xf4\x86\xed\x6e\x57\xe5\x22\x4d\xd7\x00\xc3\x49\x85\x2a\x8f\xa2\xa3\x34\xba\x76\x2d\x35\x68\xe6\xdc\xef\xa6\x61\x80\x61\xce\xc5\x6e\x92\xa1\x8a\x8e\x4e\x28\x77\x77\x71\x81\xe5\x44\x57\x8d\x47\x31\xac\xfd\xb1\xeb\xbb\x82\x08\x02\x1f\x6a\x3c\x8a\x40\x67\x7a\x29\xde\x28\xba\x19\xb9\xca\x32\x8a\xfe\x8d\xd9\xa6\xc4\x83\x66\xdc\x57\xa5\x46\x11\x81\xeb\xad\x52\xa3\xe8\x06\x2b\x94\x65\x14\xa3\xec\x84\x53\x03\xb0\x99\x42\xb7\x3b\x33\xd8\x9d\x19\x30\x7b\xdb\x75\x5c\x41\xb8\x5a\xa2\x2c\xa3\x18\x3f\x6f\xa1\xeb\x8b\x20\xdc\x2a\xac\x2c\xa3\x58\xba\x14\xca\x32\x8a\xf8\x9e\x90\xae\x2c\x88\x24\x9a\x8e\x44\xe3\x87\x08\x4d\xb9\x0b\x93\x20\x3e\xbb\xe1\xbc\x03\x0c\xdd\x62\x65\x19\x45\x84\x03\xbb\x41\x6b\x10\xa1\x25\x37\x40\x0d\xc6\x9a\x1e\xcb\xde\xdf\x0e\x96\xfc\xca\x09\x0b\x08\xe4\x53\xd7\xae\xa3\x0c\x22\x88\xf7\xec\x4e\x61\xc0\x3b\x2c\xf8\x33\x3b\x66\x12\x3e\xde\xd5\x6e\x0e\x0a\x88\xb0\xaf\xce\x74\x40\x37\x0b\x54\xa9\x46\xd1\x5c\x0b\xdd\x75\x8b\x41\xa7\x60\xfe\x3a\x9c\x0f\x81\x11\x58\x84\xc3\xf9\xd0\x61\x45\xe2\xf4\x57\xdd\x26\xcb\xe5\xfc\x68\xda\x6c\x32\xd1\x26\x69\x4a\x9b\x92\x9b\xef\xaf\x4e\x9b\x18\xfb\xbe\xc3\xdf\x36\xdd\x64\x6c\xbd\xd7\x78\x38\xa7\x01\x91\xd8\x20\x65\x19\x45\xa0\x2f\xb6\x0e\x27\x2b\x20\xf2\x67\x93\x67\x6c\x9e\x71\xd2\x54\x36\x59\x5f\x68\xd1\xb4\xdb\xb4\xf3\xab\x46\xd3\x61\xd3\x41\x0c\xd3\x33\x5e\x36\xb1\x55\xff\x3b\xd6\x63\xd3\x37\x4c\x73\x4a\xb3\xfe\x41\x98\x7e\x79\x18\xe6\x06\xe3\xbb\xad\x66\x64\x82\x48\x6e\xbe\x72\x8e\x22\x92\x98\xc1\xe1\x76\x36\x10\x49\x00\x42\x85\x47\x31\x0c\xcb\xaa\xe6\x28\x22\x99\x7e\x1d\xce\x4c\xc0\xdb\x31\xfa\x6f\xe8\x1b\x34\x0a\xcf\xae\x43\x9f\x1b\x44\x12\x93\x38\x9c\x87\x80\x48\xa2\x0d\x87\x2e\xf7\xb1\x7d\x6f\x1d\xe7\x74\x51\x13\x84\x9b\xfc\x95\x5d\x14\x81\xda\xf3\x52\x63\x51\x84\x95\x76\x94\x58\x14\xe1\x12\x8e\x4a\x89\x62\xe9\xac\x2b\x94\x28\xde\x53\xfe\x8d\x9d\x52\x0a\x29\x8a\x30\xb1\xf3\x30\x3f\x13\x74\x67\x20\x87\xa9\x39\x20\x10\x33\x5e\x87\xb3\x19\x10\xd9\xfc\x95\x97\x42\x66\x8e\x75\xaf\x0e\xa3\x00\x20\xa8\x7f\xbe\x0e\xe7\x29\xa0\xa1\x8d\xb2\x0e\x27\x25\x20\x50\xd5\x5b\x8a\x2d\x8a\xa0\xf2\xe0\x3a\x74\xe0\x41\xa4\x17\xec\x0c\xe4\xf8\x66\x20\xf4\xcb\x29\x06\x88\xef\x9b\x72\x8a\x71\xb8\xaf\x1b\x9b\xa0\xd4\xa2\x08\x0b\xbc\x1c\xba\xf9\xa0\x39\xb4\x1f\xc6\xb4\x41\x58\xc2\xe0\x70\x8a\x71\xb8\x73\xce\x3f\xd4\xa5\x07\xe1\x16\xfd\x43\xf7\x1d\x74\x77\xc4\x1c\x7a\xe1\xe0\x4b\xe9\x3b\x9c\x3b\x80\x30\x31\xf2\x70\x47\x1c\x08\x67\x59\x87\x69\x9d\xc7\xb7\xc3\x80\x7e\x19\xd3\x3e\x70\xcc\xd3\xcb\xd6\x31\x07\x91\xcc\x56\xd4\x50\x5c\x08\x26\x46\x62\x56\x15\x4c\x14\xef\x0b\xc2\x29\x9d\x3c\x1c\xf5\xcd\x84\xdf\x73\x2a\xb0\x26\xba\x41\xc3\xd3\x29\x3a\x88\x64\x2e\xa9\x74\x9a\x88\x64\xee\x73\xfa\x1d\x9c\x7e\x07\x4c\x42\x4f\xe7\xe3\x60\x50\xde\x72\x9d\x96\x26\x00\x6d\x9a\xee\x74\x3a\x47\x07\x61\x69\x99\xd3\xd4\x64\x30\x9c\xba\x29\xba\x26\x02\x39\xbb\x75\xfa\xb5\x9c\x7e\x2d\x4c\xe4\x55\x58\x13\x91\x4c\x03\x95\x4b\x13\xef\x29\x6d\x9b\xb6\x4d\x7e\xd6\x69\xf2\x94\x2f\x86\xa5\x9e\x4e\xd7\x65\x40\x37\xb7\xe6\x74\x42\x0e\x22\x19\xbf\x4e\x43\x54\xa0\xbb\x13\xfd\xf4\xad\x06\x9b\x0b\xb6\xea\xa0\x89\xa0\x54\xf7\x52\xdf\x4c\xbc\x1d\xa3\x17\x2e\xd2\x83\xb0\x9c\xcd\xe9\x04\xf8\xb4\x48\xd1\xcf\x26\x4f\x99\x3c\x11\x3e\xb7\xd3\x39\x31\x88\xe4\x1d\x56\xdf\x4c\x04\x6a\x09\xeb\x74\xb2\x0b\xc2\x1d\x7b\xea\x9b\x89\x70\x8b\xfc\xe9\x0b\x0b\xc2\xa5\x9a\xd3\x17\x16\x0c\x2d\x91\x92\x67\xeb\xf4\x85\xf5\xb6\x9a\x61\x0c\x22\x99\x41\xaa\x5c\x26\x22\x09\x22\x9c\x56\x23\x00\x6d\x63\xfc\x38\x7d\x13\xc1\xf0\x13\x39\x9d\xc6\x82\x61\x52\x80\x62\x66\xa2\x1b\xf0\x54\xcc\x4c\x74\xa7\x3a\x8a\x99\x89\xf7\xb6\xd2\x0b\x27\xad\x60\x98\xec\xa2\x74\x99\x68\xe3\x3b\xa5\xb7\x62\x37\x89\x95\xdb\xea\x3c\x16\x84\x1b\x14\x14\x38\x13\xcd\xd5\xfe\xd3\x99\xed\xe9\xcc\x76\xd9\xe4\x45\xb2\x2f\x27\xa7\xdd\xf7\x22\x59\xcf\x41\x4a\x67\x9d\x86\xa5\x40\xb7\xe6\xcd\xe9\xfc\x17\x8c\xc5\xf0\xa7\x0c\xda\x52\xf3\x0c\x41\xb8\x75\xba\xc4\x03\x9a\xcb\x09\xa7\x39\x71\x20\xcc\x61\x3d\x5d\xe2\x01\xc3\xfd\xcb\xa7\x5b\x7c\x40\x5f\xe9\x19\xbd\xa0\x83\xa5\x27\xa6\xb1\xea\xa7\x89\x41\xc1\xfe\xa5\x7c\x9a\x88\x9c\xfe\xa1\xbd\x57\xb4\xc3\xef\xc3\x84\x09\xd0\xdc\x07\x79\xba\x5a\x04\x22\x71\xd4\x55\x4f\x13\x9b\xc5\x15\x4e\x57\x8b\xc0\xb0\xe6\xca\xe9\x24\x1c\x6c\xdf\x4b\xe1\x24\x1c\x74\xcb\xf4\xa9\xb1\x26\xc2\xc8\x83\x12\x6b\xa2\x5b\xda\xf4\x74\x12\x0e\x22\x7d\x42\xa6\xef\x7d\xaa\x6b\xbe\x4d\xee\xe0\x01\xc3\x9a\x4d\xa7\xbb\x57\xc1\x30\xff\x49\x39\x35\xf1\xbe\x60\x9c\xd2\x89\x39\x08\xf7\xfe\x9c\x4e\xcc\x41\x6f\xeb\x6f\xf8\xc8\x6a\xb2\x89\xee\x0e\x16\xf5\xd7\x44\x37\x97\x4f\xb1\x35\x31\xdc\x9f\x7f\x3a\x49\x07\x6f\x8f\x6c\xf3\x1e\xbf\x68\x8b\xd9\xf0\x69\xc4\x10\x44\x12\xbf\x38\x9d\xb8\x83\x30\x59\xec\x74\xe2\x0e\x86\x09\x2e\xa7\xa9\xdc\xa7\x75\x98\x96\x87\xf7\x86\x32\x4b\xd7\x9c\x9c\xae\x67\x81\x65\x90\x5f\x95\x36\xb1\x5c\x1d\x50\x92\x4d\xbc\x7d\xf5\x67\x1e\x9f\x5c\x41\xeb\x04\x9e\x2e\x4b\x81\xfe\xfb\x0e\xe6\x29\xd9\x04\x9b\xcc\x4e\x94\x69\x13\xef\xc1\xde\x13\xa8\xc0\xb6\x90\x5b\x0b\xa4\x18\x97\xda\x6a\x22\x92\x37\xe9\x32\xaa\x08\xfa\x62\x10\x52\x6d\x4d\x44\x12\x09\x50\x6d\x4d\x34\xb3\x1f\x54\x5b\x13\x91\xe9\x19\x1f\x9b\xb0\x86\xcc\xef\x15\x60\x13\x91\x78\xdc\x97\x41\xc5\xcb\xa0\x62\xb7\x69\xd8\xc4\x03\xe1\x7d\x53\x92\x4d\x44\xe2\xe3\x5f\x4e\xd3\x2f\xa7\xe9\xb8\xea\xca\xa8\x89\xf7\xba\x39\x98\x0b\x2a\xa0\x1b\x1d\x50\x50\x4a\x74\x4b\x91\x5c\xa6\x3d\x83\x48\x3c\xdb\xcb\x58\x11\x78\x0f\xe6\xcf\x3c\x01\xd5\xe4\xdd\xea\x72\x69\xc1\x2e\x53\xa1\x1b\xc3\xd0\x65\xb4\x08\x44\xf2\x62\x5c\x4e\xcc\x40\x5f\x8c\x4c\xca\x53\x89\x48\x7c\x5b\xb5\xa8\x44\x24\x8e\xec\xe5\xc4\x0c\x0c\x83\xef\x6a\x51\x89\xa5\x4b\x7f\x39\x57\x03\xcd\x05\xd2\xcb\x45\x14\x10\xc9\x98\x73\x19\xe7\xb9\xac\x99\xd7\x18\xd3\x2e\x6d\x1f\x18\xbe\x51\x97\x86\x0e\x34\x2b\xb9\x5d\x5a\xb5\xcb\x0c\x6a\x74\x00\xd6\x65\x74\x06\xbc\x6d\x3c\x01\xa7\x58\x20\x92\xcf\x4b\x19\x28\xd1\xad\xf2\x72\xb9\xaa\x71\x59\xaf\x15\x6d\x80\x75\x69\x78\x40\x37\x28\x71\xb9\xee\x00\xfa\xf2\x3a\x5d\x77\x50\x5c\x29\xf1\x6f\x95\x4d\x12\x81\x5e\xe9\xba\x1c\x48\x41\x24\x53\xde\xcb\x05\xf5\xeb\xfc\x4e\xc9\x33\x31\x50\x01\xc2\xbd\x33\x8a\x24\x89\x48\x5c\xde\xcb\x01\xf1\x72\xef\x09\xaa\x05\x4b\xdd\x24\x11\xa8\x6a\x2c\xe5\x8f\x44\x24\x0e\x95\x5a\x47\x22\x92\xb8\xc1\xe5\xe8\x07\x22\xf1\x66\xd5\x3a\x12\x4d\x2b\x79\x19\x83\x00\x61\x91\x65\x85\x8d\x44\x37\x30\xa5\xb0\x91\x08\xeb\x77\xa8\x6b\x24\xde\xbe\x72\x7c\x97\xd8\x41\x2b\xef\xbf\x03\x17\x2a\x46\x61\xd4\x5e\x11\x23\xf1\xfe\x25\x37\xc3\xfc\x37\xb0\x59\xc5\xe7\x32\x98\x00\x86\xc5\x46\x2f\x97\xd8\x41\x4f\x56\xfe\x2e\x47\x29\x10\x96\xf4\xb8\xdc\x32\x09\xc2\x6d\x29\x0a\x0b\x2d\x45\x84\xcc\x60\x51\x44\x48\x0c\x4b\x9e\xdc\x8e\x22\x60\x50\xab\x7d\xdd\x8e\x22\x20\xdc\xc3\x71\xeb\x54\xa3\x04\x14\xa6\x50\xa8\x04\x24\x02\x99\xaf\xa5\x12\x90\x78\x2f\x92\xbf\x34\xdc\x0f\x62\xe1\x44\xdd\xae\x47\x83\x30\xc3\xec\x36\x90\x0f\x62\x35\x7f\x35\x6d\x9a\x34\xbd\xb7\xff\x36\xb9\x0b\x84\x65\xcd\x6f\x17\x95\xc1\x30\x2f\x55\x95\x1c\x11\x0b\x6f\x56\x91\x1c\x11\x8b\x97\xff\xd6\x33\x06\x61\x3d\x42\x65\x73\x44\x2c\x7c\x5e\x65\x73\x44\x9b\x2d\xfd\xcb\xd3\x36\xee\x3e\x1e\xec\xed\xfc\x1f\x84\xc3\xba\x22\x39\x22\x50\xcc\x5c\x2a\xe2\x88\x58\xfd\x6f\xac\x2a\xdf\x7a\xb3\xa0\x1b\x10\xbc\x0d\xd7\x83\x70\xa2\x76\x1b\x9b\x07\xb1\x98\x8d\xde\x8e\xca\x20\x90\x22\x5e\xb7\x03\xe9\xfd\x0d\xa4\xc4\xd8\x55\xaf\x11\x6f\x1b\xbf\xd3\x79\x05\xb1\x30\x18\xb7\x63\x24\xe8\x16\xf5\xb9\x1d\x23\x41\x2c\x5e\xd4\x5b\xf7\xe0\x76\x9b\x09\xa2\x1a\x4b\x45\x1b\x11\x0e\x31\xb7\xe3\x26\x08\xb4\x17\xd7\xed\xb8\x09\xc2\x99\xd3\xed\xb0\x09\x02\xbd\xa2\x75\x1b\x1f\x07\x81\xe8\xde\x52\xbe\x46\x84\xf5\x74\x6e\x57\x9a\x41\x58\xcc\x48\xf9\x1a\x31\x16\x6e\x97\x22\x34\x22\x5c\xdd\x53\x83\x46\xbc\xdd\xe7\x2f\x8d\x99\x83\x70\xfb\xc5\xad\xb3\xa1\x2e\x8d\x0b\x21\xb7\x83\x32\x08\x03\x0c\xb7\x3e\x03\x08\xd7\xaa\x6e\xe7\xf4\x20\xdc\x36\x78\x3b\xa7\x07\xdd\x64\xc5\xdb\x39\x3d\x88\xaf\xaf\x4e\xe0\x6f\x2b\x98\xa1\x4c\xb2\x6e\x67\xf0\xa0\x39\xbb\xbd\x9d\xc1\x83\xb0\x0e\xd9\x6d\x92\x16\x08\xb7\x20\xde\x8e\xf9\xb7\x6b\xcd\x48\x93\xac\xdb\x29\x3c\x68\xdf\x1a\xcd\xed\xa8\x0f\x62\x31\x57\xbe\x9d\x64\x83\x74\x2d\xef\x36\xb3\x0a\xc4\x62\x04\xbb\x35\x04\x20\x16\x1e\xe7\xed\x5c\x19\xc4\x62\xd2\x76\x3b\x57\x06\xdd\xc2\x83\xb7\xd6\x02\xc4\xc2\x10\xdf\x5a\x0b\xd0\x4c\xec\xb9\x9d\x51\xdf\x6e\x88\x61\xe8\xbe\x35\x16\x60\x85\xef\x85\x33\x6a\xf0\x5e\x25\x1d\x33\xd4\x0d\xda\xc2\x68\xdd\xae\x8c\xdf\xdf\xca\x38\xf3\xa5\x5b\x0b\x02\xc2\x05\xb8\x5b\x73\x01\x86\x75\x84\x6f\xa7\xb9\x60\x98\x78\x73\x6b\x2e\x6e\xcd\x05\x0e\xda\x6d\x98\x19\xc4\x62\xc6\x7e\x3b\x0f\xbd\x95\x06\xf6\x58\x66\x47\xdd\x96\x08\x45\xcd\x65\xdd\xa6\x2e\x83\x58\xb8\x50\xb7\x83\xfe\xed\xa0\x3f\xfd\x4b\x6f\x06\x3b\x5b\xbe\x57\xca\xa9\x29\x88\xc5\x94\xfc\x71\xc1\x1b\x34\x37\x0b\x3f\xe6\x32\x83\x58\x5f\x53\xd9\xc4\x76\x58\xc6\xe9\x47\x6b\x01\x62\x31\x1b\x7b\x8c\x03\x83\x50\xb9\xe2\x71\x82\x09\xc2\x55\xdf\xc7\x09\x26\x08\x37\x95\x3f\x4e\x30\xc1\x30\x4d\xe4\x71\x21\x1b\x84\xd9\xbb\x8f\x71\x60\xd0\x26\xfa\x34\xeb\x31\x10\x0c\x62\x85\x4d\x87\x4d\xdc\x1d\xa6\x37\x8f\x69\x55\x20\x16\xf3\xa7\x47\x9b\x05\x9a\x99\x5c\x8f\x36\xeb\xd1\x66\xf1\x0a\x3f\x46\x78\x41\x2c\x66\x1f\x8f\x9b\x4f\x1e\x4b\xbd\xf0\x0a\x3f\x5a\x31\xb0\xfd\x08\x44\x3c\xee\x74\x04\xdd\x5a\x52\x8f\x11\x5e\x10\x8b\xd9\x81\xca\x53\xeb\x53\x9e\x42\x84\x67\x29\x3d\x25\x86\x4f\xf2\x31\xe8\x0b\x62\x61\x38\x1f\xd7\xa3\x41\x2c\x26\x0c\x8f\x71\x60\x10\x2e\xce\x3d\x86\xc4\xc0\x58\x7c\xba\x8f\x56\xf2\xd1\x4a\x32\xce\x2b\x63\xb5\x3e\x19\xab\xef\x57\xde\x7d\x0a\x96\x99\x16\xf4\x18\x38\x03\x61\x1d\xfb\x47\x2b\xf9\x68\x25\x19\xa1\x14\xb6\x12\xb1\xd2\x63\x79\xa7\x37\xbc\x32\x2c\xee\x63\x90\x4c\xf9\x2b\xab\x57\x3f\x66\x40\x83\x70\xf3\xc6\x63\x00\x17\x84\x19\xb5\x0a\x56\x89\xae\x93\xae\x60\x95\x68\xce\xda\x1f\x03\x62\x8f\xf6\x8d\x4f\xe6\x71\xbb\x38\xe8\xa6\x66\x3f\x46\x1f\x41\xb8\x7c\xaa\x00\x92\xe8\xd6\xab\x7e\xdc\x2d\x02\xe2\xbd\x85\x7f\x34\xcb\xea\x23\x89\x40\x99\x76\x3d\x4e\xb9\x9f\x6f\xca\xed\xb9\x0c\xff\x80\xcd\x52\xcf\x6a\x26\x89\xcd\xa9\xff\x63\xc8\x06\xc4\xc2\x99\x51\x33\x69\x7d\x9a\x49\x0c\xe5\x6a\x26\x89\x50\x6e\xe1\x71\xc0\x7f\x5c\xb2\x64\xce\xf4\x38\xe0\x83\xee\xce\x0e\x95\x95\xc4\x18\xcc\x56\x1e\xb3\x72\x51\x56\x7a\xfb\xca\xf1\x8d\xd9\x80\x30\x41\xeb\xd1\x17\x00\xc3\x95\xba\xc7\x98\x0d\x18\x16\x13\x7b\x8c\xd9\x80\x6e\x71\x18\xd5\x96\x44\x47\x36\x6b\x3d\x7a\x0c\xa0\xa9\xc2\xf1\x18\x67\x01\xc3\x70\x9f\xfa\x4b\xa2\x9b\x3a\xfd\x68\x4e\x9e\xcf\xaf\xf0\xf6\x68\x4f\x40\xdb\x5c\xbf\x55\x81\x49\x34\xcd\xce\xa3\x11\x00\xcd\xb0\xa0\x02\x4c\x62\x98\xf5\xf8\xe8\x44\x80\x70\x9d\x49\xb1\x25\xf1\x9e\x93\xcb\x74\xc0\x07\xa1\xf5\x78\x74\x06\x9e\xcf\x19\xf0\x9e\x99\x0a\x05\xc2\xf0\x87\x02\x4c\xa2\x59\x90\x4b\x01\x26\x31\xbe\x17\x43\x97\x01\xc4\xc2\xcb\x52\x93\x49\x0c\xd7\x9f\x1f\xc3\x1f\x8f\xe1\x8f\xe6\x19\xbd\xd9\x6c\xa2\x59\x78\x6c\x2a\x32\x89\x6e\x1d\xa4\xc7\x88\x08\x88\x85\xab\xf4\xb8\x20\x09\xde\xee\xd3\x0b\x57\x24\xc1\xd0\xb1\x7b\x34\x58\x20\x5c\x7e\x54\xcb\x69\x21\xdc\x14\xeb\x3b\xbe\x1d\x43\xd1\x81\x68\x74\x29\xd2\x24\x3a\x4b\xf1\xa5\x48\x93\xe8\x38\x16\xa5\x48\x93\x78\x7b\x61\xdb\xb0\xed\x75\x82\xd0\x8a\x2a\x15\x99\x44\xac\xf2\xf8\x61\x13\xb2\xd5\xef\xdc\xa3\x54\x64\x12\x41\xa5\x9d\xfa\x11\x37\x11\x81\xec\x5a\xa9\xc8\x24\x82\xef\xa6\x7e\x38\x41\x62\x74\x7f\xd5\xec\x3e\x1a\x4d\x48\x97\x97\x1a\x4d\x22\xd6\xeb\xcf\xd6\xaf\xd9\x55\x2a\xc9\xfc\xbe\xa6\xcd\x26\x16\x54\x37\x2e\xa8\xd9\x7b\x2d\x5d\xd9\x64\xef\x89\xae\x90\x9e\x55\x8a\x36\x89\x3e\xbf\x63\x95\x4d\x58\xa2\xc9\x35\xb2\x08\x2a\x06\x45\x44\xeb\xd7\xbc\x46\x56\x3c\xc9\xd8\xaa\x5f\xf3\x1a\xf1\xd7\x50\xc8\xaa\x5f\xf3\x1a\x49\xe2\x62\xde\x5d\xbf\xee\x35\x22\x6e\x8f\x5b\x54\x0a\x40\x89\x28\xef\x7d\xf7\x11\x91\xea\x45\xaa\x60\xfd\xba\x97\xdd\x29\x23\xbb\xf9\x2b\x7b\xcf\x56\x1f\x72\x4a\xeb\xc7\x1a\xa8\x68\x93\xa5\xb1\xfa\x75\x3b\x86\x72\xeb\x5a\xdc\xe9\xe1\x29\x91\xb6\xa0\xc2\x63\xfd\x86\xa7\x1c\x2c\xa0\xbd\xdf\x4c\xfd\x86\xf7\x10\x77\x10\xd7\xb5\xd4\x92\x12\xc1\x7a\x6d\xfd\x30\xad\xa2\x75\x6f\xeb\xf0\x1e\x62\x5a\xc9\x14\x2c\xa5\xa4\xc4\xd8\x7c\xe7\x86\xfd\x1a\xbe\x14\x1c\x6b\xb3\x5f\xc8\xb4\x52\x99\xb3\x7e\x9b\xfd\x42\xbc\x3e\x7c\x81\x37\x1f\xf7\xb7\xea\x5a\xfe\xcc\xbe\x6e\xe4\xd5\x78\x45\x9b\xb7\x87\x15\xa8\xf4\x8a\x36\x3b\x86\x6d\xad\xc6\x1d\xdb\x7c\xb8\x2c\x40\x61\x5b\xeb\xb7\xf9\x4e\xe3\x81\x76\x5f\xa7\xcd\xe7\x8d\xb9\x25\x95\xa0\x7e\x9b\xdd\x27\xbb\x8c\xb2\x76\xf5\xdb\x7c\xde\xa4\x8d\x55\xe3\xe6\x4f\x1f\xdb\xe4\xc3\x6a\x1c\x6b\xda\x7d\x32\xc9\x50\x1f\xa9\xdf\xb4\xf7\x14\x11\xfd\x2e\x68\x7a\xa7\x59\xb4\x45\x83\xad\x14\xc2\x12\x81\xa8\x62\xfd\xa6\x17\xf4\x22\x37\xaf\x71\x7a\xa7\x27\x25\xb8\x1c\x17\xa6\x5d\x9d\xde\x69\x3a\x11\xbe\x87\xa4\xa0\x0d\x3f\xbf\xf0\xe6\xb3\x08\x96\xf1\xe7\xbd\x51\xf5\x0b\x2f\xce\x0c\x35\xbb\x1d\x5e\x49\xa0\xdf\xe8\xa3\x0f\x9f\x43\x90\x47\x34\xf8\xac\xc3\x2b\x61\x53\x6c\xf9\x15\x84\x57\x62\xf9\x1e\xef\x5d\x78\xd3\x5f\xf4\xf5\x35\x79\x25\x64\xa8\x0d\x5f\xc9\xf0\xa6\xb3\x64\xcc\x3a\x66\x29\xaf\x25\xa2\x3a\x67\x4c\xfb\xf5\xa2\x6f\x3e\xf9\xf4\x0e\xe3\x4f\x57\xe7\x83\x4d\xbb\xca\x9e\xa7\xf4\xbb\x4b\xbb\x9a\x48\x2e\x0e\x7f\xe5\x2b\x83\xd7\xdd\xca\x26\x6f\x7a\x52\xb0\x62\xd1\xaf\xb4\xf7\x2c\x2c\x57\xe7\xd1\xa4\x5d\x65\x17\xee\xe6\xa8\xb1\x7c\x0e\x2c\x2c\x53\x5e\xb0\x7e\xcb\xe7\x80\xb7\xce\xa6\x9e\xfa\x2d\x2f\x68\x79\x41\xf4\x7e\x79\xef\x5f\x4c\x2a\x17\x94\xba\x5b\xa2\xb1\xd3\xb5\x54\xd4\x12\xb1\xca\x5f\x79\x41\x6e\xf2\xfd\xba\xbf\xbc\xf9\x2c\x0d\x96\x03\xd5\xf2\x22\xf1\xf3\x11\x32\xaa\xdf\xb2\xfb\x08\xf5\x53\x1c\xa4\x7e\x65\x5f\x5f\x8c\xe5\x90\x5d\xde\xe9\x2f\x86\xea\x39\xcb\xe3\xbb\x63\x98\xe2\x4c\xa5\xa8\x96\x78\xdb\xb8\xa8\xdd\xeb\xdc\x35\x4d\xc5\x4d\xdb\xbd\xd0\x9d\x2f\xc8\x01\x79\xf7\xc9\xbd\x18\xe1\x5b\xbf\x7b\x55\x64\xa6\x95\x8f\x69\xf7\x0a\x76\x1d\x5e\xae\x60\xf7\x0a\x76\xaf\x80\xae\x1d\x5e\x01\x0e\x7b\xf9\x76\x1e\xde\xc7\xe3\x1b\x5f\x38\xe5\xe1\x55\xb1\xad\x8a\x0a\x3e\xf5\x3b\x3c\xe5\x81\xcc\x8c\x26\xe6\xf4\x60\x08\x5c\x36\xed\xc9\x69\x2f\x4e\xf5\x0a\x38\xd6\xe9\x4b\x7c\xaa\xa2\xc6\x29\x2f\x9f\xd3\xa5\x17\xe6\x5f\x5e\xde\x20\xdc\xe2\x1a\x1c\xff\xf2\x9d\xba\x8c\x59\x7b\xce\xcb\xa3\x5d\xa4\xbe\xd9\xb3\xdb\x6e\xb0\x4a\xb4\x34\x45\xb7\x77\x96\xc9\x14\x75\x63\x4a\x5d\x2a\x11\x64\xdd\xd7\xef\xf6\x92\x50\xe6\x60\xaf\x6e\xfd\x6e\x4f\xc9\x2e\xe2\xcd\xa6\xc7\x3f\x34\xd7\xea\x9b\x2d\x3c\xde\x9f\xc7\xbd\x57\xf4\xe2\xf1\x9a\x1e\xc6\x5f\x47\x9d\xc7\x83\x31\x67\x21\x27\xa0\x54\xa1\x12\x51\xd8\xb5\xd6\x6c\x6a\x36\x35\x9a\xa6\x4d\x6c\x7a\xa2\xaf\x4d\xdb\xdd\x74\x5c\x9d\x41\x34\x8d\x37\x08\xc4\xc3\xaa\xe1\xa5\x8a\xf7\x67\xb4\x69\x38\xc1\x62\xb7\x44\x35\xf2\xa1\xc5\x60\x17\x7a\x35\x62\xa6\x22\x48\xd5\x2c\x25\xa1\xc4\x7b\xb0\x41\x9b\xbd\x1d\xf6\xd6\xa6\xdd\xa6\xdd\x9f\xf9\xa7\x9e\x60\x5c\xb6\xbd\x77\xa8\x11\x23\x15\x6f\x5b\xd0\xe6\x25\x50\x36\xb4\x7b\x38\x4d\x14\x88\xda\xfc\xcb\xc3\x26\x14\x94\x82\x2b\xd8\xbc\x50\x76\xd3\x22\x9c\x50\x4d\xab\x05\xc6\xf8\xfe\xf0\xb6\x89\x3c\x36\x86\xec\x36\xbd\x00\x8a\x5a\x53\x70\xbd\x14\x7b\x12\x9d\x28\x50\x35\xed\x51\xd3\x1e\x6d\x1c\x5e\x7b\xd4\xb4\x47\x4c\x07\xdb\xb4\x5f\xec\x96\x9d\x9d\x01\xba\x69\x57\x5a\x7c\x37\x8d\xce\x86\xe7\x0c\x66\x1b\x7c\xfb\x4d\x63\x02\xa2\x36\x7f\x65\x37\xe2\x7b\xd1\x8a\x36\xdf\x84\xe0\x43\xdc\x6c\xf2\x96\x51\xbd\xb4\x7c\xab\xc2\x5b\x16\xd6\x01\xf0\x57\xde\x1f\xaa\x97\x52\x22\xbb\x9a\x76\xa2\x69\x27\x18\x30\x5b\xda\x0b\x96\xab\x8a\x19\x48\xd3\x74\x80\x8e\x9a\x57\x35\xed\x04\xe8\xd4\xb9\x2e\x45\xa7\x44\x77\xe2\xa5\x28\x94\x88\x9a\x5c\xa4\xe3\x31\xe8\x9b\x0f\xc9\xb1\xb7\x39\xf6\x4e\x6e\xff\xf2\x2e\x12\x50\x2d\x0f\xbf\x7c\x94\x0b\x5b\xf8\x37\xd6\x98\xab\x2d\x9f\xb4\x22\x12\xdd\x87\x58\xbe\xd2\xc5\x16\x0e\x7b\x54\x76\xb2\x98\x5f\x05\xe7\x2a\x3b\xe9\x6e\x1f\x06\x61\x45\xa1\x44\xa7\xb4\x73\xb5\xf2\xf8\xf5\x1d\x9f\x36\xc7\x6f\x10\x35\xf9\xcb\xdd\x67\xb8\x23\x66\xef\x17\xe3\x58\xdd\xac\x19\x84\xd4\x68\x35\x07\x6b\x10\x35\x79\x3a\xbb\x77\x61\xf7\x2e\xf0\x2a\xed\x76\x63\xa7\xca\x81\x6f\xd7\xee\x8d\xd9\xbf\x6e\x78\x82\xc7\x36\x86\x79\xc6\xac\xe6\x30\x0f\x92\xc5\xdc\x6a\x87\x9d\x25\xd9\x78\x22\x3f\x5a\x2a\x4a\x89\xa8\xe0\x9a\x1c\xf9\x15\x94\xaa\xe0\x36\x3a\xf2\x37\xab\xa7\x0e\x9b\xec\x3f\xab\x78\x85\x69\x6f\x87\x9d\x3d\x1c\x79\x7c\xd8\xa7\x0f\x80\x14\x89\xf2\x6e\x9f\x7e\x58\x2f\xc6\xe6\xeb\x75\xfa\x00\x48\x7e\x68\x76\xec\xf4\x94\x2f\x3a\x1a\x28\xa5\x56\x94\x08\xa4\x8f\xaa\x9d\xde\x32\x02\xba\xd4\x92\xa9\x76\xda\x0b\xa5\x93\xfd\xac\x4e\x6f\xd9\x49\xba\xe6\xb2\x13\x3e\xcc\x93\xca\x79\x8e\x01\xa7\x37\xd1\x7d\xb8\x8b\x3f\xbc\xec\x3d\x55\x2c\x9c\x64\x2b\x3b\x25\x5a\xfa\xf6\x5e\x5e\x10\xcb\x86\xe5\xd8\xa4\x79\x03\x2b\x1c\xe4\x2f\x2f\xe8\xc5\x68\x8e\xde\x97\xf7\xf0\xc5\x62\x2f\x5a\x35\x6d\x60\xd3\x06\xfa\xde\x5d\x5e\xd0\x8b\x46\xad\xa7\x6a\x9a\x45\xd0\xa7\x0f\x57\xab\xd8\xb4\x8a\xda\x90\xcb\x0b\x62\x09\xb2\x1c\x00\x34\x94\x20\xa8\x33\x56\xaa\x5a\x89\xf1\xb3\xf7\x1a\x4a\x54\xad\x56\x68\x08\x6e\xaf\x91\xd4\x89\xf4\x09\xdd\x5e\xe3\x8d\xb9\x5b\x1e\xcb\x7e\xdd\x76\x82\x97\xe2\xf1\x16\x5a\xb5\xb5\xfb\x20\xb5\x9d\xed\xe1\x86\xe1\x82\x34\x6d\x27\x78\x7f\x46\x37\x1e\xef\xc5\xe3\xd8\x8a\x41\x55\xc4\x4a\x44\xa5\x67\xf0\x32\x59\x96\x2c\x26\x47\x5d\xbf\x1d\x2c\x36\xc0\x95\xea\x54\xa2\x4d\xf4\x6c\x4b\xe1\x29\xb1\xd8\xee\x56\xaa\x4c\x89\x81\x10\x60\xa9\x32\x25\x1a\x75\xf6\x4a\x95\x29\xb1\x8c\x0b\x74\x1d\x77\x10\xc5\xdd\xe8\x7a\xe9\x20\xd0\x83\xa8\xae\x59\x07\x51\x59\x34\x79\x78\xdd\x68\x26\x12\x9d\xf4\x5f\xf1\xf6\x95\x53\x12\x30\x16\x89\x38\x43\xa9\xf9\x24\xa2\x92\xee\x13\x1d\x16\xef\x5f\x76\xda\xec\xc6\x20\xd9\x88\xbb\xa8\x4c\x53\x7d\x32\x4d\xbc\xfd\xca\x34\x89\xf7\x2f\x07\x6d\x9e\x73\xb0\x41\xc5\x9b\xa1\xa5\x07\x8b\xed\x80\xd5\xf5\x74\xc1\x62\x4f\x5f\x75\x22\xc6\x22\xfc\x94\x14\x78\x12\x2b\xec\xff\x66\x67\xb7\xaf\xb3\x74\x43\x57\x17\x8c\xd6\xfc\x4b\xef\x19\x51\xe4\xe2\xeb\x55\x06\x4a\xbc\x7f\x49\xcf\x9c\x5b\x80\x60\x9b\x41\x75\xa7\x16\x5d\xef\x77\x79\xfc\xc3\x26\xbe\x2f\xdc\xf2\xee\x0c\x01\x2c\x36\x20\x96\xfa\x51\xf5\xe9\x47\x21\x05\x5c\x7d\x7a\x01\xac\xbf\xb2\x77\xab\xfa\xf4\x99\x4f\x94\x55\x18\x0b\xfa\xb4\x67\x04\xa0\x6b\x71\x30\x5d\xd6\x6e\x1d\x58\x8c\x9b\x2a\x53\x22\x8a\xd9\x40\x77\x22\xd1\xad\x0a\xf8\xf3\x0f\xed\x98\x5e\x2c\x71\x8c\xae\x17\xdb\x95\x73\x46\x7d\xb8\x54\x9e\x12\x83\xb2\xee\xa5\xf2\x94\x08\xa4\xa1\x4a\xe5\x29\xd1\xd9\xbb\x55\x5d\x3f\xb5\xeb\xa7\x62\xbc\x14\x90\x12\x1d\xe9\xcd\x52\xfb\xa9\xd0\x7e\x5a\xec\xfb\x2b\x75\x9e\xc4\xc8\xdf\x9f\x6b\x7e\x55\xd7\xeb\x03\x2d\x3d\x95\xfe\x1c\xe8\xc3\x87\xb3\x7c\xd2\xe4\xb1\x7c\x9f\xa8\xce\x1b\x58\x54\x51\xa9\xae\x0b\x06\x3a\x49\xbb\xd5\xcb\x63\xb1\x86\x5a\xde\x02\xbd\x32\x10\x3a\xa8\xbd\xbc\x05\xa4\x13\x57\x79\x2c\x0f\xcf\x56\x24\x12\x4f\xaa\x97\xcf\x06\x85\x48\x67\x3f\x5d\xcf\x0d\x44\x31\x02\x77\xe7\x07\x20\x9c\x56\xf6\xdd\x1b\xe5\xf6\x21\xcc\xb7\x5a\x51\xa2\xa7\xdf\xd9\x61\x57\x59\x1c\x1d\xdf\xeb\x76\xf8\x97\x04\xc6\xa9\x7f\x5f\xca\x3b\x89\x40\x60\xa8\xfa\xe9\x73\xb6\x3a\x78\xb7\x67\xda\xbf\xee\xa6\x9c\xee\x03\xd3\x8e\x81\x28\x66\x33\x5d\x3b\x06\x96\x73\x1e\x85\x9b\xc4\x08\x07\xa7\xcb\xae\x5d\x24\xdf\x87\x4d\xde\xc5\x0b\x4b\x80\xc9\x55\xb8\x49\x2c\xb6\x06\x95\xc2\x4d\x62\x19\x1c\x54\x7f\x49\xb4\x89\xd8\x6e\xf5\xdb\x5e\xdc\xf6\x82\x8e\x69\x69\x40\xa7\x84\x60\x29\xad\x24\x16\x7b\xc8\xaa\xdf\x1e\xff\xf6\x66\x70\x91\xb7\x4f\xe9\x66\xe1\xe0\x3b\xbc\x37\x1b\xc7\x0d\xed\xcd\xea\x8f\x17\xf9\x62\x50\xc3\xae\x14\x60\x12\xfd\x7b\x09\x1e\x5f\x02\xf2\xf6\xc2\x6f\xf6\xf1\x8c\x2f\x96\xee\x86\x02\x4c\x22\x7f\xd8\x6f\x05\x98\xc4\x8a\xef\x8c\xbe\x17\x26\xf7\xd9\x2f\xed\x13\x58\xec\x74\x2c\xf5\x97\xc4\x22\x09\xbc\x14\x5b\xaa\x4f\x6c\x09\xfd\x81\x52\x5a\x49\x74\x12\x43\x6a\x68\x9f\xc0\x7b\x5f\xfd\xd9\x63\xdb\x43\xcf\xf8\x99\x06\x0a\x74\xd6\x25\x6b\x68\x7a\x86\x7b\x7a\x59\xd1\x28\x84\x96\x3e\x74\x6a\x53\xd4\xd0\xa3\x04\xf9\x63\x9c\x18\x86\x83\x41\xfe\x70\xda\x86\xe1\x60\xb0\xd8\x5a\x58\x43\x3b\x06\x16\x3b\x2e\x6b\x18\x0e\x1e\xed\x7b\x09\xf8\x99\xf1\x60\xd0\x29\x0f\x57\xc3\x78\x30\x58\xec\x64\xad\x61\x3c\x18\xe4\x0f\xdf\x51\xd5\x27\x91\x3f\xa6\xc2\xa3\x7b\x49\xdd\xb7\x73\xd1\xe4\x2d\xeb\x68\x75\x0d\x8f\x95\x36\x69\x2c\x86\x07\xf3\xc2\x3b\x7e\xbf\xf7\x87\x0d\x36\xa2\xb3\x88\x55\x43\x03\x0b\x36\x94\x05\x6b\x18\x5b\x06\xf9\x63\x76\xaf\xaa\x94\xe8\xe4\xba\x97\x12\x52\x62\xfb\x79\x45\xc6\x96\x41\xfe\x7e\x36\x79\x5f\x87\xf7\x95\x33\x0e\x3b\xf1\x22\x7f\xb8\x30\x43\x8b\x08\xf2\xe7\x7b\xa1\xf9\x1b\x9f\xf9\x23\xb8\x31\x34\x7f\x60\xa1\xd9\x50\x2a\x41\x89\xf7\x95\xf2\x68\x9e\x60\x43\xa5\x8c\x0f\x7a\xe8\x34\x0f\x57\x56\xb1\xdf\xca\x3e\x89\xf7\x04\xdc\x6c\x5d\x64\x30\x90\x99\xa9\xa1\x8b\x0c\xf2\xc7\xa4\x70\x68\xff\xc0\x72\x58\x19\x5a\x36\xd0\xf5\xe6\x87\x21\x5b\x90\x3f\x6f\xbf\x96\x0d\xe4\xcf\x57\x51\xcf\x17\xbc\xbd\xe0\x06\xe9\xe7\x82\xb7\x8d\x6e\xe8\xe8\x82\x46\xda\x5e\x0d\x23\xa9\xa0\x4d\x12\x8e\x6b\x18\x4a\x05\xf9\x63\x4d\x66\xa4\x27\x4d\x46\x24\xa6\x8e\x2a\x52\x89\xc6\x5a\x57\xa9\x35\x25\xf2\x87\xc3\x35\xb4\x80\xa0\x4f\xdf\xcf\xe5\xaf\x96\xd3\x74\x9a\xca\x5b\x56\x3c\x3a\x66\x5e\x8a\x38\x89\xfe\xfb\x7e\xe5\x2d\x7b\xd1\x97\x37\x43\x1b\x34\xb4\x41\xcc\x5f\x87\x36\x68\x18\x3d\xec\xbe\x8c\xba\x9a\x60\xb1\xf9\xb5\x86\x46\x08\xb4\x6d\xfc\x79\xa1\xb9\x54\x6f\xaa\x4f\xbd\xc9\x00\xcc\xd0\xed\x1c\xaf\xdd\x4a\x54\xf0\x6b\xec\x5e\x31\xa5\xc6\x7f\xde\xf7\xc3\xbb\x77\xf8\xc8\xe8\xa5\x66\x0b\x24\x62\xa5\x35\x74\x14\xc1\x7b\x7c\xee\xa8\x61\x43\xf0\xb6\xf1\x2c\x4e\xbf\xef\x93\xef\x9b\x29\xd7\xd0\x53\x04\x8b\x1d\xc6\x35\x74\x0b\x41\x3a\x41\x51\xbe\x49\xbc\x07\xe3\x9e\x6a\xf0\x40\x6a\xc4\x87\x8e\x1b\x18\xcd\xdb\xac\xe3\x36\x5e\x53\x96\xa8\x9b\x95\x62\x4d\x22\xd9\x75\x51\x43\x67\x0b\xa4\x01\xcd\xa1\xb3\x35\x74\xb6\x98\xec\x0f\x3d\x2b\xd0\xd2\x2b\x37\x04\x09\xde\x8e\x71\x49\x1a\x3c\x90\x54\x93\xaa\x71\xfb\xc6\xdd\x8c\x0c\xcc\x82\x87\x61\x49\x90\x94\x4d\xab\xa1\x91\x02\x8b\x14\xd3\x1a\x5a\xa4\xf1\x7c\x17\x4e\xcf\x0c\x38\x8e\xe7\x7b\xf1\xdf\x2b\x57\x4f\x49\x24\xe2\xc9\xa5\x78\x92\x48\x14\x83\x4b\x75\xa3\xfa\xd4\x8d\x5c\x05\xda\x34\x23\x20\x11\xfe\x2d\xc5\x8d\x44\xa2\x40\x5d\x9b\x7e\x0e\x48\x54\xbc\x6b\xd3\xb0\x80\x4e\xa5\xd8\xda\x34\x2c\x60\x18\x96\xdc\x34\x2c\x9b\x86\x05\x5b\xb0\x69\x0b\x40\xba\xea\xb7\x39\x30\x83\x64\xff\x44\xa9\x77\x24\x96\x16\x7b\xd3\xcb\xd9\x94\xa7\x60\x97\x53\xa9\x81\x24\xd2\x77\x76\x73\x3d\x0f\x24\x9a\xbb\xa5\x2c\x92\xe8\xae\xe8\x6e\x8e\xcc\x9b\x23\x33\xdf\xda\xa6\x4b\x03\xde\xe3\xd3\xe6\xea\x1d\x48\x54\x66\x6b\x73\xb4\xde\x1c\xad\x79\xb1\x37\xfd\x17\xb0\x48\xfb\x2d\xd5\x93\xea\x53\x4f\x62\xee\xbb\xe9\x4b\x6c\xaa\xef\xe1\x25\x6c\x8e\xc2\x20\x11\x45\xad\xcd\xd5\x35\x30\x48\x99\xab\xcd\xa5\xb4\x4d\x3d\xbe\x8e\xfd\xd9\xf4\x2f\x40\x22\x0b\x57\x0a\x2a\x89\x74\xf5\x7c\xd3\xbf\x00\xe9\x32\xef\xe6\x28\xbc\x39\x0a\x7b\x7c\xdd\x0b\x90\x64\x10\xd7\xe6\x20\x0c\xf2\xe7\x9b\x12\x1e\x3e\x1c\x9e\xec\xbf\xa3\x2b\xc8\x9f\x77\xcc\x00\x24\x78\x7f\xc6\x95\x3b\xe2\x82\xfc\xd9\x7f\x7d\x0e\x90\xbf\xef\x60\xa7\x4d\x0c\xc2\x78\x10\x9b\x0b\x4e\x20\x7f\xdf\xb1\xbc\xa4\xe4\x92\x98\x83\x6f\xae\x41\x81\xd4\x6e\x6d\x2e\x38\x81\x44\x68\xbf\x14\xc0\x10\xc3\x71\x65\x1a\xe0\x04\x6f\x5f\xdf\x5b\xa6\x02\x86\x18\xa4\xa4\xd6\x34\xe8\x09\x12\x51\xb0\x9a\xba\x36\xa0\xb3\x61\xb0\x14\xc5\x10\x89\x4c\x58\x4d\xe3\xa0\x60\x50\xb1\xac\x14\xc5\x10\x89\x5c\x56\x4d\x43\xa3\xa0\x21\xaa\x53\xea\x64\x88\xe6\xb0\xa2\x26\x86\x68\xd3\xae\x1a\xe7\x04\x8b\xcd\xf9\x35\x75\x93\x40\xa3\xf2\x69\xa9\x9c\x21\x92\xf2\xc3\x35\x35\x51\x20\x5d\xad\x99\xba\x49\x28\x67\x24\xb2\x4b\x35\x77\xef\xc4\xce\xc3\xc5\x59\x98\x06\x43\xa7\x8b\x59\x3c\xa2\xe9\x5a\x16\x68\xd4\xfe\x2b\xc5\x34\x44\x77\xb4\x98\xd4\x62\x10\xdf\xd4\x57\x7d\x0d\xf1\xde\x7c\x0f\xe6\x3d\xdc\xbd\x87\x1e\xcc\x8e\xed\x0c\x94\xcc\x00\xd5\xdc\x10\xef\x5f\xda\x33\x6f\xe2\xfe\xbd\x9d\xfe\xee\xb2\x8d\xb7\x87\xc9\xf5\x34\x66\x3a\x3f\x81\x5e\xde\xbb\x69\xd0\x14\x34\xf2\x68\x6a\x1a\x33\x9d\xc7\x37\xd4\xd0\x11\x0d\xdf\xd4\xf0\xa5\x7f\xe9\x49\x0f\xbe\x38\x26\xc4\xd3\x08\x29\xc8\x5f\xfe\x39\x3b\xbb\xe6\x61\x2f\x0f\xc7\x73\x5f\x2f\xf2\x66\x45\xa2\xdd\x51\x53\xe3\x39\x35\x9e\x4c\xbb\xa6\x31\x55\xd0\x9a\x4f\x56\x4b\x09\x92\x6d\x67\x35\x8d\x96\x82\x44\xd8\xa0\xd4\xee\x10\xf9\xf3\x8a\x2f\xaf\xf8\xe2\x2d\xc1\xf8\x28\xca\x21\x12\xdd\x81\x9a\x9a\x53\x90\x88\x07\xd4\xd4\x9c\x82\xe1\x7a\xcf\x34\xe8\x09\xde\x2b\xf2\x60\xf6\xe2\xa2\x17\x0c\x91\x53\x7b\x0a\x92\x72\xff\x35\xb5\xa7\x20\xa9\xd9\x5f\xea\x75\x88\x44\x00\xa0\xc2\xf5\x2f\x30\xa8\x53\x51\xa1\xb7\x02\xde\x53\xbe\x3d\x0b\x0d\x4d\x68\x68\x88\x0f\x84\x4e\x01\xc8\x1f\x51\xab\x20\x27\x53\x74\xf3\x52\x42\x0f\x00\xf5\x89\xa4\x20\x7c\x85\xd3\x7d\x30\xa8\x36\x50\xe1\x44\x1e\x74\x92\xa7\x4b\x41\x0a\xd1\xc8\xe7\xad\x30\x28\x06\x3a\x79\xad\x15\xda\x14\xf0\xf6\x95\x83\x99\x12\x02\x92\x82\xed\x15\xda\x19\x30\xd8\xaa\x59\xe1\xd4\x1e\x24\x95\x7e\x2a\x5c\x22\x03\xf9\x63\x32\xab\x06\x86\xe8\xda\xef\x30\xda\x05\x92\xe2\xeb\xa5\x06\x86\x68\x26\x76\x84\x8b\x5f\xe0\xed\x18\xc7\xd7\xa8\x80\x41\xa1\xc4\x52\xc9\x42\x24\xc5\x31\x2a\xa6\xa7\x9c\xbc\x50\x84\x37\x14\xb7\x10\xc9\x96\x8a\x52\xdc\x42\xa4\xab\xcb\xa1\xe9\x01\xcd\xf8\xaf\x7a\x17\xa2\x53\x39\xb4\xc2\x60\x17\xe8\x94\xfb\xaf\xd0\x73\x08\x3d\x07\x86\x80\x30\xfe\x05\xd2\xf5\xce\xd0\x8c\x81\x81\x42\x70\x29\x8a\x21\x92\x0a\xdb\x15\x5a\x31\xd0\x0c\x4a\x85\x56\x0c\xa4\xa1\xfc\x70\x19\x0d\x0c\xe7\x2d\xa1\x5d\x03\xc3\x50\x63\x98\x81\x01\x86\xab\xa9\xa1\xe1\x09\x4d\x1d\x0e\x41\x68\x78\xc0\x70\x79\x4f\x79\x0d\xd1\x4c\x6b\x50\x4a\x43\x0c\x92\xe6\x2a\xcc\x87\x08\xf3\x21\xf4\xee\xc2\x98\x1a\x68\xae\x03\xc5\xb2\x17\x14\xdd\x2b\x1f\xa4\x61\x36\xd0\xd2\xdb\xaa\x2d\x02\x9d\xc4\xd6\x52\x96\x43\x84\x33\x0d\x65\x39\x44\x36\xaf\xc8\x75\x38\xd0\x90\x94\xab\xd0\x62\x81\x4e\xdd\xca\x0a\x0d\x0f\x68\x94\xb9\x29\x75\x3a\x44\x36\xdf\x26\x7d\x23\x90\xd4\xcd\x2e\xa5\x3b\x44\x52\x0b\xbc\xc2\x6c\x0b\xd0\x96\x37\x4c\x77\x09\x74\xaa\x62\x56\x18\xb2\x03\x1d\x0d\x85\x8a\xb2\xf7\x45\x18\xc3\x2f\x5e\xbb\x06\x9a\xa1\x77\x85\x41\xc4\x66\xe4\x47\x61\x10\xf1\xde\x69\x3a\xa6\x79\x02\x49\xa1\xee\x0a\xcd\x53\x98\xa4\xc1\x3c\x5e\xad\x10\xf1\xfe\x25\xdd\x70\x2d\x10\x64\xb3\x67\xae\xe8\x81\x15\xbe\x3c\xba\x5b\x20\x75\x60\x42\x83\x15\x87\x2f\xa2\xbf\xb2\x67\x2f\x92\xb2\xd0\xa5\xa4\x88\xc8\xe6\xdd\x37\xe2\x08\x36\xfd\xb4\x70\x8d\x2f\xb0\x60\x14\x5c\xae\xd0\x82\x81\x6e\x60\x26\xb4\x60\x60\x6c\x76\xd5\x25\x3e\xd0\xd9\x09\x5b\xa1\x7f\x17\xfa\x77\xac\x62\x29\x62\x22\x06\xc9\xda\x15\xa7\xcf\x1b\xd5\xf9\xe1\x35\xea\xf1\x81\x8e\x4a\x6d\xa9\x6b\x22\x9a\x89\x28\xea\x9a\x88\x74\x91\x40\x5d\x13\x91\x64\xad\x56\x68\xda\x40\xd7\x61\x56\xea\x44\x64\x73\x40\x71\x21\x10\x64\x6b\x7f\x23\x09\x2c\x74\x24\x41\x6f\x3e\x7a\x83\xa9\x61\xbd\x5e\x8a\x66\x57\x68\x20\x41\x36\x9f\xbd\x06\x12\x04\xb5\x44\x4a\x0d\x15\xb1\xa1\x40\x5f\x6a\xa8\x88\x1e\xbe\x81\xda\x47\x90\xed\x6b\xb2\xdf\x97\xcb\xc0\xde\x2a\x0d\x24\x18\xa6\x0a\x84\xab\x7b\x60\x74\xe6\x25\xa1\x73\x09\x9a\x21\x63\xa5\x56\xc4\x7b\x30\x4e\x60\x84\x15\xf4\x70\x60\xba\xed\xd9\x8b\xde\x99\x78\x84\xcb\x7b\x60\x4c\x4d\xd3\xe3\xfd\xb1\xe0\x22\xfb\x4f\x2a\x0c\xc4\x82\xa6\x73\x16\x8f\x37\xe3\xa1\x06\x94\xd7\xe4\x22\x20\x18\x66\x7d\x29\xc9\x22\x92\x2d\x23\xa5\xfc\x8a\x18\xd4\x73\x2c\x75\x55\x44\x1f\x78\x4a\xea\xaa\x88\xb7\x17\xb6\x6d\xb6\xf1\x6d\x74\xff\x32\x6c\xe2\xdb\x20\xea\x90\xfa\xc6\xa0\x53\xa0\xbc\xd4\x5a\x11\x49\xd1\x80\x52\x6b\x45\xbc\xc7\xdf\x68\xdb\x6d\x63\x07\x07\x8b\x6f\x0a\xab\x88\x6c\x5f\xd3\x6d\x13\x6f\x1c\xf7\x3f\xf5\xbd\x41\x52\x79\xb5\x94\x5f\x11\x49\x45\x88\x52\x6b\x45\xa4\x13\x88\x34\xc5\x17\x24\x65\x37\x4b\x2d\x15\x91\x4e\x59\xd4\x4d\x11\x9d\x6d\x8e\xa5\x6e\x8a\x68\xc3\x8b\xec\xde\x9d\xce\xdd\x21\x4c\x90\x86\x4e\xc1\x70\x89\x37\x9d\x11\x81\xfc\xee\xbe\x79\x43\x20\xa9\x6c\x59\xe9\x8c\x28\x0d\x80\xe2\x5a\xa6\x4b\x93\x60\x51\x22\xab\x52\xcf\x1b\x58\xae\xb0\xd2\x25\x47\x90\x54\xb1\x2c\xe5\x56\xc4\xa2\x02\x57\xa5\xb9\x45\xc8\xad\x24\xe5\x29\x2b\x9d\x23\x81\x6c\xbe\x02\xae\x2f\x82\x45\x21\xad\x4a\xa7\x4d\x20\xbf\x33\x6e\xde\xc2\x8d\x5b\xc8\x30\x91\xba\xe7\x20\x29\xad\x55\x2a\xb7\x88\xa4\x88\x52\xa5\x33\x29\xb0\x28\x3b\x55\xe9\x4c\x0a\x2c\xaa\x8c\x55\xea\xd7\xa7\x6b\x84\x7c\x46\xa9\x5f\x0f\x3a\xe5\x23\x4b\xe5\x16\xb1\x28\xd3\x55\x69\x70\x15\x8c\xe5\x05\xb9\x92\x08\xba\xab\x31\xa9\xa7\x0f\xde\xd7\xd0\x36\x1f\x37\x53\x30\x6a\x34\x55\x3a\xdf\x02\x03\x55\xbd\x52\xe0\x45\x64\x63\x30\x4a\x13\x97\x40\x6e\xbe\x73\x4e\xc1\xc0\x58\x3f\x9b\xbc\xad\x4a\x8e\x51\xf4\xab\xd2\x39\x18\x48\xd4\xcb\x4b\x69\x18\x91\xcd\x57\xc0\x2c\x58\x90\xa6\xad\xa7\xa9\x4c\xa0\x51\xa1\xa3\xd2\x50\x02\x48\xe3\xd1\x69\x38\x17\x74\x47\x19\x05\x64\xc4\xdb\x0b\x4e\xe9\xea\x25\x48\x23\xf1\xe9\xbc\x2c\xf3\xeb\x2c\xdd\x48\x3b\xfb\xa2\xb1\x69\xbf\x32\xed\x46\xf2\x78\x71\xfc\xd2\x29\x17\x48\xea\x2f\x54\x1a\x83\x00\x49\x2d\x8a\x4a\x43\x09\x20\x29\xf9\x50\xe9\x2c\x0c\x34\x33\xbf\xd3\x49\x18\x48\xca\x6a\x54\x3a\x09\x03\x49\x99\x83\x4a\xa7\x57\x20\x29\x56\x50\x8a\xd1\x88\xd6\x7c\x55\x9c\x4b\x65\xf1\xdc\x98\x38\xa5\x53\x22\xd0\x91\x82\xaa\x34\x82\x0c\xde\xeb\xe6\x60\x4e\x80\x40\xb2\xff\xbf\xd2\xd9\x0e\x68\xe1\x60\xa1\x17\x9f\x7a\xf1\xdd\x8f\xde\x19\x10\xc8\xe6\x8b\xa7\x83\x0e\xf2\xeb\x99\xb3\x1d\x90\x7a\x9c\xea\xdf\x88\x48\x7b\xa6\xdf\x0d\x46\x38\x8a\xb9\x26\x9a\xce\x59\xb0\xa8\x6a\xdd\x54\xba\x7f\xa8\xaf\xbf\xe1\x2a\xa7\x3e\x30\x48\x76\xbf\x97\xf2\x35\x22\xd9\x2b\x5e\x69\x00\x19\xa4\x6b\x6a\xca\xd7\x88\x64\xd3\x72\xa5\x4b\xa1\xa0\x99\x17\x9a\x5a\xea\xb4\x36\x4a\xc7\x49\x4d\xed\x72\x6a\x97\xb1\x74\xa9\x5d\xce\xcf\x2e\xe3\xb8\x2a\x4c\x23\xb2\x69\x8a\x6e\x7f\x86\x46\x59\xf7\x25\xd1\x46\x82\x6c\x7e\xc9\x2e\x56\x82\x36\x86\xbf\xf2\xed\xfa\x72\x51\x97\x3f\xf3\x66\x3d\xbc\x5e\xbe\xe3\x5a\x57\x90\xcd\xaf\x43\xbb\xa9\x54\x8d\xa9\x21\xe9\xd2\x24\x68\xd4\x28\x2b\xa5\x6a\xc4\xa0\x80\x6f\x2d\x4d\xe9\xb2\xc0\x31\xc3\x82\xe2\x35\xa2\xa3\x67\x5d\x6a\xd7\x88\x6e\x94\x59\xed\x1a\xd1\x8d\x5d\x2d\x2d\x29\xe8\x68\x46\xd4\xd2\x6a\x82\xf7\x8a\x3c\xd8\x69\x1b\x37\x76\x79\xca\xdb\xa6\xef\xc6\x7a\xb4\xc7\x36\xec\x26\x2f\xf9\x32\x64\x0d\x06\xfb\xe6\x4a\x39\x1b\xd1\xa8\xa3\x5d\xcb\x8c\x5b\x30\x1c\xe9\x96\xd6\x15\x0c\x9d\x9b\x65\xc6\x2d\xe8\x94\x7d\xa9\x65\x60\x1b\x0c\xb3\x40\x96\x51\x6c\xd0\xd8\x87\x5d\x4b\xeb\xba\xda\xd7\xd7\xf7\x89\x28\x70\x23\x92\x0d\x71\xa5\x9a\x8d\x78\x7f\x46\xff\xb5\xc2\x4b\x2b\x8c\xdb\xb5\x0c\x80\x83\x36\xbb\x27\x75\x69\x12\x0c\xaa\x19\xd6\x32\xa3\x17\x0c\x73\x70\x97\x96\x19\xa4\x2b\x63\xcb\x38\x39\x68\x3a\x2e\xcb\x6c\x20\x90\xcd\x5b\xa6\x65\x06\xc9\x8e\xd2\x52\x2e\x47\xb4\xcd\xa8\x97\x7a\x39\x62\xa0\xd1\x56\xcb\x6c\x20\x30\xdc\x8a\xb0\xb4\xd6\x20\xd9\x5e\x57\xcb\xad\x30\xcb\x0a\xff\x9d\x11\x5d\xc1\x1c\x91\xcd\xd7\xc0\x90\x06\xc8\xe6\x6d\x34\xa4\xa1\x86\xce\xf2\x5e\x68\x88\x17\x1b\x53\x90\x76\xad\xa5\x21\x06\xd9\x7c\x57\xb4\xba\x68\xe8\xbc\xa7\xe4\xce\xba\xa6\xb9\x2c\xa0\xc6\x87\xb9\xb4\xc4\xa0\x2d\x5f\x50\xd7\x34\x97\x6b\x9a\xe5\xc1\xbc\x3f\x06\x43\xd2\x5f\x79\x7f\xa6\xe3\xc3\xf7\x97\xbe\x1a\xc4\xe1\xd3\x77\xca\x90\x09\x18\xce\xfe\xd4\xd2\x11\x9b\xeb\xc0\xcb\x00\x06\x58\x94\x3e\xad\x65\xb6\x0e\x68\x26\xb4\xab\x7e\x23\xd2\x7d\x6d\xcb\x00\xc6\xb2\x02\x43\xf7\x91\xbb\x61\x64\x69\x16\xbd\x65\x9a\x45\x90\x6e\x4f\x58\x5a\x45\x90\xee\x62\x58\x0e\xe8\x60\xa0\x16\x55\x0a\xbc\x88\x74\x0f\xc3\xd2\x55\x05\xe9\x16\x06\x95\x5b\x44\xba\x9f\x60\xe9\x84\x2e\x9d\x50\xaf\x48\x8f\x13\xbc\x7d\xf5\x2f\x3d\xfe\xb7\x5a\xf8\xfd\xa9\x27\x38\x5c\x7a\xf1\x6f\x1d\xec\x41\x9a\x91\xbf\xf4\x30\x41\xba\x55\x40\x09\x16\x91\x66\xcc\x2f\xc7\x7f\xf0\x1e\x8c\x9f\xe9\x71\x81\xb1\x61\xcb\x14\x48\x11\xf1\xfd\xa5\x29\x2d\xaa\xa1\x20\xa2\x56\xcb\x8c\x16\xd0\x06\x65\x07\x6a\xe9\x84\x81\x66\x4e\xc5\x32\x4a\xb9\x2c\x5e\x3f\xec\xad\x2e\x17\x48\x97\xc3\x96\xee\x15\x48\xa3\x43\x4b\xcb\x01\xb6\x6f\x80\xd0\x72\x80\x39\x86\xa7\xb4\x67\x37\xdb\x6c\x70\x1f\x54\x5b\x11\xcd\x54\x5f\xa5\x55\x44\x73\x5e\xa5\x42\x8a\xe8\x2e\xcd\xaa\x90\x22\x86\x6b\xca\x2a\xa4\x88\x8e\xd2\x60\x95\xe3\x3f\xc8\x77\xac\xf9\xa3\x75\x2e\xcd\x03\x18\x94\x2f\xa9\xd2\x85\x02\xe9\x06\x01\xc5\x52\xc4\x30\xee\xa8\x58\x8a\x68\x8e\xcb\x8a\xa5\x88\xee\xee\x31\xc5\x52\x44\x1a\x68\x56\x2c\x45\xb4\xc1\x6b\x5f\xae\x54\x82\x34\x59\x5f\xfd\x14\x91\xe6\xea\xab\x95\x52\x08\xa3\xa4\x79\xe4\x65\xd6\x0a\x48\x73\xae\xcb\xf1\x1c\xa4\xa9\xfa\xe5\xd8\x0d\xd2\x34\x6f\xe5\x53\xc4\xa2\x90\x5c\x95\x61\xe6\x32\xbb\x73\xfa\x87\x5e\xe3\x8b\x44\x15\xb7\xca\x30\x33\x48\x1f\x60\xe9\x54\x95\xc9\x9d\xee\x61\x2b\xc7\x56\xa4\x52\xd2\x94\xeb\x32\xa8\x0c\xde\x9f\xd1\x59\xbd\x23\x90\x66\xd7\x96\xcb\x92\x20\x8d\x6b\x96\x4e\x0e\x48\xe3\xad\xe5\x08\x0c\xd2\x49\x83\x82\x2a\x22\xcd\xbd\x54\x50\x45\xbc\xa7\xe4\x02\x0c\x21\x83\x34\x90\x56\xfa\x42\xc5\x82\xa6\x29\xa6\xe5\x70\x0b\xd2\x44\xcb\x72\xb8\x05\x2d\x3d\xa5\x1e\x0d\x78\x8f\xcf\x39\x8d\x17\xab\xc5\x32\x87\x8f\xdc\xa5\x2b\x95\x3c\x06\xce\xa9\x4a\x1e\x85\x6c\x47\x9a\x30\x59\x86\x0b\x41\xff\x7d\xbf\xf2\x6e\xbf\x58\x46\xf0\xcb\x45\x29\x90\x86\x49\xca\xf1\x10\xb4\x8d\x21\x58\x41\x0e\x31\xa8\x8c\x55\xe5\x04\xb7\x76\x1e\x09\x73\x8b\x72\x3c\x04\x6f\x5f\xe9\x85\x93\x5e\xd0\xcd\x1a\x2f\x63\x77\x60\x18\x1a\x2c\xd7\x95\xca\xf1\x70\xf8\x7e\x1a\x83\x03\x69\x0a\x58\x19\x70\x03\x03\x0d\xe5\x2a\x87\x43\xd0\xa9\x69\x51\x65\xc0\x0d\x34\x43\x16\xe5\x08\x09\x1a\x55\xf2\xaa\x1c\x21\x41\x4b\x7b\x61\xc0\x0d\xb4\x39\xfc\x24\x4c\xb1\x00\xdd\x9c\xcb\x32\x32\x06\xd2\xac\x21\xb5\x42\x44\x4b\xaf\xd2\xc0\x18\x68\xc3\xaf\xd7\x65\x22\x90\xe6\x33\x95\x63\x32\x48\x53\xc7\xca\x44\x0c\x90\xe6\x71\x95\x63\x32\x48\x73\xda\xca\xf1\x17\xa4\x49\x11\xe5\x28\x5a\xb7\x4f\x84\x4e\x18\xa4\xaa\xc7\x5f\x71\x41\x66\x58\x80\x34\x0f\xa6\x9c\x32\x83\x74\x7c\x2c\xa7\xcc\xa0\x6f\xbc\x29\x8a\x82\x88\x34\x99\x45\x4d\x10\xf1\xde\xb0\x46\xdb\xb4\x8d\x17\x0a\x87\x5b\x01\x10\xd1\x36\x67\x63\x6a\x7b\x88\x66\xac\x5c\x6d\x0f\x91\x26\xb8\xa8\xe3\x21\xfa\xf2\x57\x8e\x77\xea\x78\xb8\x7f\x5d\xcd\x0e\xf1\x76\xa3\xd3\x56\xb6\xf1\x91\x63\xb2\x76\xc7\x2d\xd0\x54\x6c\xaf\xdd\x81\x6b\x37\x6b\x6e\x30\x26\xed\x8e\x5c\xa0\x53\x73\xa5\x76\xe7\xa6\x20\x4d\x1a\x51\x69\xa3\xf6\x7e\xfb\x97\x74\xc4\x89\x28\x18\x0e\xf5\x8a\x68\x88\xf7\x67\x49\x9b\x27\x65\x26\x6a\x98\x70\x77\x26\xba\x9b\x97\x6e\x5e\xde\xee\xec\x71\x77\xd0\xc3\x0f\xdf\x1d\xf4\x40\x9a\x7e\xb0\x3b\xe6\xed\x8e\x79\x18\x8e\xdd\x88\x10\x48\xb3\x0f\x76\x87\xc1\xdd\x61\x10\xab\xb8\x9b\x37\x07\xde\x53\x72\x51\x8e\x70\x20\x5d\x54\x56\x6d\x43\x2c\x2a\x91\x97\x32\x1a\x22\xa9\x9a\x5c\x6a\x66\x88\x74\x1d\x7b\x37\xb2\xb3\x2b\xdd\x88\xd8\x54\xed\x0e\x7a\x20\x9d\x5c\xef\x4e\x1e\x41\xa3\x5a\x74\xa9\xb6\x21\xd2\x65\xec\xdd\x61\x10\xa4\xeb\xc3\x4a\x6b\x88\xec\xf1\x37\x5c\xe7\xdd\xf0\x0d\x48\xd7\x1c\x77\x67\xa0\x20\x5d\x32\x55\x79\x43\xa4\x0b\x80\xbb\x4b\x68\x20\xbf\xf7\xd7\x49\x29\x48\xd7\xa0\x54\x51\x10\xdd\xb4\x06\xe5\x11\x44\x3a\xd4\x29\x8f\x20\xd2\x18\xfa\x6e\x14\x60\x3f\xbe\x3b\xc5\xd3\x71\xd6\x08\xda\xc6\xc0\xa0\x3e\x82\x48\x8a\x7b\xd7\xee\xa2\x04\x48\xa3\xe3\x2a\x1f\x88\x1e\xbe\x96\xa6\x4a\x83\x34\xec\xbd\x3b\x86\xed\x8e\x61\x38\x8b\xbb\xc1\x80\x9d\xd5\x6f\x23\xc9\xbb\x03\x16\xe8\x26\x46\xed\xc6\x07\xc0\xd2\x23\x53\xad\x40\x2c\xea\xbf\x97\x6a\x05\xb5\x3b\x60\xe1\xe4\x2b\x3a\x50\xfb\xcd\x4b\x89\xab\xae\xc2\x80\x48\x83\x37\xbb\xe1\x78\x30\x46\xf9\x2b\xef\xb4\xf3\x45\x9c\x34\x15\x06\xc4\xd8\xf0\x9b\x55\x18\x10\x89\x58\x7f\xed\xce\x17\x41\x1a\xe1\x51\x74\x40\xa4\x51\x0b\x15\x06\x44\x1a\xef\x50\x4d\x40\xa4\xb1\x87\xdd\x00\xfd\x6e\x65\xa9\xe1\x6b\xea\xb0\xb9\x3b\x6c\xe2\xc9\x1d\x4e\x18\x0f\xd5\x6e\x91\xf5\xaa\xc3\xf0\x00\x48\x1d\xfa\xc3\xd9\xd8\xe1\x6c\x0c\x87\xcf\x8a\xfc\x22\x9d\x02\x5b\x6b\x5f\xa4\xfe\xb0\xa5\xf6\xc5\x7b\xfc\x49\x5b\xb7\x8d\x1b\x8b\xa1\x39\xcc\x18\x06\x89\x8c\x49\x1d\x0e\x74\x07\x01\x6d\xdd\xb6\xc3\x11\x0c\xb4\x81\xac\x75\x1d\xce\xc7\x8e\xee\x39\xe9\x99\x59\x68\x60\x0e\xec\xf0\xe1\x14\x0d\xa4\x13\x7d\x4b\xf2\xd7\x61\x62\xda\x60\x8a\x73\xe8\x37\x83\x30\x4d\xe9\xd0\x6f\x06\x0d\x31\xbb\xb2\xfe\xbe\x68\xae\xb5\x1d\x8e\x69\xa0\x9b\x62\x61\x49\x7e\x91\x6e\x1c\x39\x8c\x72\x83\x74\x9e\x78\x38\xcc\x81\x91\x61\x93\x57\xf9\x8e\x5f\xe9\x9c\xcd\x8a\xfc\x22\x9d\x39\x1e\xce\xd9\x40\x3a\xcb\xb2\x22\xbf\x18\x94\x78\x2f\xcb\xeb\x8b\x74\x7e\x63\x79\x7d\xd1\xcc\x3f\xb2\xd8\xbd\xd8\x4c\x68\xb3\x8c\xbd\x58\x06\x08\x0f\x7d\xd3\x23\xbf\x57\xc5\x36\x4f\x99\x5e\x91\x4d\x5e\xd1\x8b\xe5\xd6\xc8\xc3\x28\x2e\x78\xff\x92\x77\xc5\x5c\x2c\x90\xce\x5c\xac\x47\x2f\x9a\xd1\xd8\xc3\xa0\x2a\x58\x68\x30\xd4\x61\x4a\x15\x48\x2d\xb8\x25\xea\xc5\x40\x6d\xb6\x0e\x53\xaa\x40\x8e\xef\x0f\x7d\xad\x59\xb3\xd6\xe6\x1e\xe5\xe1\x49\x96\xd2\x96\x1e\xae\x16\x83\x36\x07\xd3\xc4\xc3\x71\x12\xa4\x3b\x9a\x0f\xfd\x6d\x30\x28\x04\x5f\x87\x31\x55\xd0\x0d\x57\x1e\x8e\xa6\xa0\x7f\x57\x64\xbe\x2e\xe8\xd4\xb1\xaf\xc3\x59\x28\x58\xe9\xad\x70\xc6\x09\x52\x1b\x7c\x38\xe3\x04\xa9\x71\x3a\x5c\x07\x06\x2b\xbd\x15\x8e\xaf\x20\xb5\xca\x87\x73\xd0\xc3\x45\x5f\xd7\x32\x0f\xa7\x97\x20\x1d\xbf\x0f\xd7\x73\x41\xfb\xaf\xcf\xc6\xf9\x25\x68\xee\x7c\x3d\xcc\x55\x02\xa9\x0d\x3e\x1c\xad\x41\x0e\x1c\x83\xc3\xd1\xfa\xb8\xf8\xde\x18\x7c\x0e\x73\x95\x40\x7e\x6f\x8f\xeb\xae\xa0\x1b\x19\x3e\xdc\xc5\x72\x5c\x5f\x2f\xfc\x4b\x2f\x93\x85\x57\x43\x87\x87\xf3\x4b\xd0\x36\x2d\xc4\x61\x66\x12\xc8\xef\x25\x73\x08\x07\xf9\x7d\xe2\x2e\xbc\x82\xfc\xc6\x23\x73\x7f\x41\x8e\xfe\x67\x21\x8b\x3a\xdc\x0b\x03\xde\x5e\xd2\x25\x97\x6f\x41\xb3\xdc\xc9\xa1\x21\x38\xd4\x47\xd7\xef\x39\x5c\x98\x05\xf9\x5d\x9f\x63\x3c\xc8\xef\xc6\x1b\x26\x00\xf9\x3d\x32\x83\xc9\xa0\xb9\x90\x76\x38\xec\x1f\xcf\xd7\x0d\xae\xcf\xe4\xe3\xc3\xe4\xe3\xe1\x0b\x66\xec\xe0\x30\xf9\xd8\xd8\xc4\xe9\xd2\x2c\x58\x48\x99\xd4\xe9\x32\x2c\x48\x57\x6b\x4f\x4d\x01\x48\x03\xdd\xa7\x73\x63\x90\x83\x37\xff\x34\x60\x00\xd2\x6e\x9c\x06\x0c\x40\x8e\xcd\xc3\x1f\x36\x7d\x77\xc3\x83\x9d\xb6\x9d\xfc\xa5\x1d\xbb\x6c\xa2\xce\x03\x63\xfc\x69\x5c\x01\x6c\x8e\xae\xa7\xf3\x6c\x90\x83\xe0\xee\xe9\x3c\x1b\xa4\x17\x7e\x1a\x57\x00\xe9\xfd\x3f\xdd\x6e\x03\xd2\x27\x77\x36\x3b\xf6\x22\xad\x4e\x70\x1a\x44\x00\x39\x98\x8c\x9f\x4e\xc6\x41\x0e\xfc\x97\x53\xab\x05\x72\xe0\x39\x9c\x5a\xad\xf3\x9b\x9e\x7b\x7b\x5c\x9a\x05\x6f\x1b\x9d\xd5\x94\x81\x31\x9b\xe7\xbc\x6d\x62\xdc\xc7\x5d\x39\xdd\xc2\x02\x9a\x71\x91\xd3\x19\x3b\xc8\xc1\xc4\xfe\xd4\xb8\x9d\x1a\x37\xa6\xca\xa7\x93\xf8\xf3\x9b\xc4\x7b\xff\x0d\x14\x9f\x06\x8a\x19\xf8\xd5\xd9\x10\xe9\x58\x77\x6a\x02\x41\x33\x3b\xe3\x74\x5a\x0f\x92\x9a\xfe\xa5\xf4\x86\x78\x8f\x6f\x9b\xe7\x24\x4e\x3c\x98\xd7\xab\xbd\x21\x72\xe0\x37\x28\xbd\x21\xba\xa9\x37\xa7\xb3\x73\x30\xd2\xbe\x9a\x4f\x7d\x1a\x14\xfe\x6e\x86\x53\x71\xb0\xb9\xe1\x46\x05\x0d\x91\x83\xf1\xf5\x74\xf9\x14\x24\xb5\xea\xeb\x74\x61\xf4\x8c\xef\x60\xb6\x79\xb0\xb0\x67\x3c\x3a\xe7\xcc\x67\x7c\x8f\x89\x36\x13\xc3\x40\x5a\x84\xeb\x34\x31\x0c\xbc\x3f\xb3\xcd\x8b\x4a\xbe\x09\xe6\xff\xa7\xb1\x45\x30\xcc\xa1\x3f\x1d\x35\x40\x0e\x7c\x89\xd3\x68\x23\x18\x7a\xad\xa7\x83\x06\x48\x24\x58\xea\xbc\xfd\x4a\x6e\xbe\x12\x7c\x09\x2b\xdf\x8b\x74\x5b\xd1\xe9\xa2\x14\x18\xee\xca\xb0\x18\xbe\x18\x94\xf4\xae\xd3\x05\x28\x30\x74\xb0\x2f\x9d\xe2\xeb\x73\x8a\x79\xdb\x2f\xe7\x85\x20\x29\xfb\x5b\x97\x63\xc1\xe5\x58\x80\x4f\x61\x95\x7b\x31\x8c\x42\x59\xe5\x5e\x24\x32\xb7\x75\x39\x3c\x5c\x0e\x0f\xe1\xaf\x6e\x9b\x48\x73\xf0\x0f\xfd\xa2\x2f\xbf\x68\x82\x20\x97\xdf\xea\xe5\xb7\xca\x04\xdf\x32\xf4\xa2\x39\x13\xba\x9c\x75\x82\xb4\x24\xc4\xe5\x02\x0e\x48\xd3\x95\x2e\x37\xa0\x81\x74\xe7\xe0\xa5\xdb\x0c\x1a\xd2\x96\x75\xf9\xa9\x82\xb4\x1e\xd9\xa5\x27\x0d\x7a\xff\x8e\x75\xda\x74\xd2\x7b\xce\xe8\x67\x03\xba\xfb\x17\x2e\x3f\x9b\xcb\xcf\x26\x6d\xb2\xab\xc3\xae\x72\x0b\xfd\x92\x40\x22\x0a\x52\x97\x93\x49\xf0\x3e\x8f\xa2\x6d\xb3\x8d\xd1\x87\x51\xf1\xf2\x7b\xbb\xfc\xde\x88\x08\x5f\x7e\x6f\x97\x1b\xd0\xfc\xe0\x2e\x3f\x38\x90\x86\xa0\x2e\x43\x80\x20\xdd\xe2\x7b\x39\x9d\xbc\x9c\x4e\xe2\x54\x5c\x2e\x9c\x80\x1c\x8c\x17\x97\xf1\x3e\xd0\xdc\x3c\x7a\x99\x44\x7a\x91\x31\x3a\xf0\x59\x2e\x3f\x41\xd0\xcd\xff\xbf\xcc\x60\x00\x03\x31\x8c\xba\xfc\x2a\xaf\xef\xab\x9c\xb6\x79\x95\xf8\xbb\x83\x81\x5e\xa9\x80\xfa\xa4\x02\xde\x61\xe5\x8f\xd6\x59\x25\x01\xb1\x50\xb9\x2a\x95\x04\xc4\x88\xaf\x97\x3e\x8b\xe0\x59\xe0\xac\x28\x24\x20\x16\xc2\x5a\x75\x39\x0f\x06\x39\x70\x99\x2e\x13\x10\x40\x1a\x27\xbb\x4c\x40\x00\x6f\x27\xfd\x4b\x1f\x7f\x1a\x6e\xf1\x36\xb8\xdb\x00\x24\x5a\x25\x75\xb9\xdb\x00\xe4\xc0\xd9\x52\x10\xa0\x3e\x41\x00\xc7\xb0\xcb\x89\x30\x68\xd4\x86\xae\xcb\x54\x02\x90\x83\x8f\xfb\x32\xfd\x11\xa4\x5b\xce\x2f\xf3\x1a\x41\xa2\xd9\x5b\x97\x13\x55\x90\xe6\xf7\x5d\xae\x15\x81\xb4\x26\xcd\xe5\xac\xf4\xfa\x62\xa3\x0c\x91\x97\x49\xf7\x20\x07\xa1\xac\xcb\x99\x2a\x18\xbf\xef\x2f\x7d\xe3\x0e\xde\xb8\xb2\xc9\xbe\xbe\x48\x77\x3c\x5e\x4e\x5e\x41\x0e\x1c\xb7\xcb\x99\x2a\x48\x7d\x69\xe5\x06\x44\x3a\x40\x5e\x2e\x31\x81\xb7\x63\xfe\xcc\x5e\x9c\x5e\x38\x7d\x75\x8a\x0b\x72\xc3\xd9\xba\x9c\xe2\x5e\xdf\x14\x77\x7a\x4e\xaf\x9c\xc9\xab\x7b\x1c\x2e\xe3\x0a\x20\x37\x22\x06\x2a\x10\x88\xf7\x2f\xb9\x26\xa7\xaa\x20\x2d\x66\x71\x19\x6b\x00\xb9\xe1\xba\xa9\x37\x20\xda\x74\xf0\xbe\x0c\x23\x80\xd4\x81\xbc\x1c\xf5\xaf\x6f\xaa\xc8\x80\x7e\x19\x34\x00\xb9\xe1\x5c\x29\x1b\x20\x72\xc3\xad\xb9\x9c\x2a\x82\xcd\x9d\x02\x97\xc3\xfe\x65\x2e\xc2\x37\xe2\x1a\x45\x05\xb9\xe1\x2f\x5e\x86\x08\x40\xb7\x6a\xde\xe5\xec\x11\x74\x93\xae\x2e\x27\x8f\x20\x37\xbc\x93\xdb\x71\xf9\x76\xcb\xb2\x83\xfc\x6d\xf8\x12\x2c\x74\xe4\xea\x36\x42\x70\x33\xaf\xda\x70\x4f\xd4\x12\x10\xef\x5f\x6e\xb4\xdd\xb6\xdd\xfc\x8c\x83\xe9\x43\x82\xdc\xf8\x82\x6f\x4d\x2c\x68\x14\x1e\xad\x5b\xb7\x12\xa4\xa5\xf4\xac\x39\x2f\xd2\x6d\xae\xb7\xf9\xd8\x20\xad\x74\x74\xbb\xf5\x08\x74\x83\x5c\x56\xa6\x17\x69\x4a\xc4\x6d\xee\x35\x48\xf3\xa5\x2d\x30\x5f\xf7\x3a\x69\x7a\xef\xb5\xd5\xe4\x45\x6e\xcc\x67\xac\x26\x2f\x72\xc3\x3c\x58\x4c\x5e\x6c\xe6\x65\xdc\x66\x55\x83\xdc\x30\x81\xb7\x6b\x22\x60\xfb\x7d\xc7\xb2\xf7\x45\xef\x09\xcf\xdc\x3a\xad\x60\x73\xab\xf3\xed\x77\x7f\xef\xdf\x03\xe7\x56\xb8\x4e\x02\x72\xeb\x36\x85\x4d\xaf\xed\x77\xac\xbe\x75\x6d\x6f\x4b\x20\x69\xd5\x6f\x87\x0c\x90\x88\x52\x95\x05\xec\x45\x5a\x1b\xc8\x6a\xf5\xe2\xfd\x4b\x6e\x99\xfe\x2e\xc8\x0d\x17\xec\x76\x7c\x00\xe9\x96\xc0\xdb\xe8\x21\x48\x84\x3a\xea\x76\xc8\x00\xb9\x75\x9b\xec\xc5\xc1\x6a\xd0\x66\x93\xbd\xa0\x2a\x31\x05\xe0\xeb\x76\x14\x01\x23\xbf\x33\xda\xb1\x17\x9b\xae\xb9\x15\xed\xc5\xd4\xc8\xde\x2e\x5e\xdf\x2a\x49\x31\x62\xdf\x0e\x2c\xa0\x0d\xbd\xd6\xdb\x81\x05\xb4\xff\x6a\xf2\xf8\x6c\xcd\x71\x55\xd7\xca\xf4\xa2\x59\x5f\xe7\x36\x7f\xf9\x66\xa7\x2b\x52\xc3\x65\x65\x7a\xb1\xd2\x77\xcc\x65\x18\xd0\xdd\x10\x68\x61\x7a\x91\xdb\xb0\xc9\xbb\xf3\x62\x22\x25\x5f\xb7\x23\x0d\x18\xcb\x77\x5f\x37\xf9\xfe\xdc\x64\xba\x6a\xa0\x13\xa4\x0b\x63\xb7\x8b\x35\x20\xdd\x95\x71\x5f\x5f\x57\xf9\x00\x99\xbb\xdc\x2e\xa0\x83\xdc\x70\xd5\x6e\x27\xb4\x20\x37\x6f\xab\x13\xda\xfb\x73\x83\x63\xfd\xd9\x36\xdf\x7a\xc9\x20\x2d\xda\x73\x1b\x08\x05\xef\x51\x3c\x99\x4f\xc7\x71\xce\x1b\xea\xa0\x06\x72\xc3\xe3\xb8\x9d\xcb\xde\x84\x3d\x37\x9c\x04\x0b\xea\x8b\xdc\x18\x94\xad\xa7\x5f\xb7\x03\x18\x2f\xd2\xe3\xbc\xf5\x61\x92\xba\x31\x4d\x7a\x9c\x91\x3e\x4a\xb7\x63\x07\x1e\xdd\x4e\xd0\xa6\xd3\x48\x2b\xde\x8b\xb7\xad\xd1\x36\x6c\x1b\x64\x80\x70\x02\x47\x48\x90\x1b\x6f\x97\xf5\xed\xeb\xab\x6f\xef\x14\xce\xfa\xf6\xe2\x6d\xe3\x77\x46\x4c\x41\x77\x99\xef\xd1\x1b\x05\xb9\x31\x93\x78\x9c\x82\x82\x44\xeb\xbf\x2c\x4a\x2f\xde\x83\xf1\x33\x17\x6e\x9e\xf1\x9d\x94\xdf\xe9\x07\x82\xb7\x2d\x68\x3b\x6c\x23\xd3\xe2\xfb\x99\x37\x84\xe9\x2b\x7a\x4c\xf5\x38\x57\x7d\x3e\xaf\x8f\xe1\xd5\x5a\xf2\xe2\x6d\x5b\xb4\xed\xb6\x31\x5a\x4c\x7f\xe6\x09\x5e\x4c\xeb\x27\x5b\x26\x5e\x44\x62\xb8\x1e\xe3\x9c\x8f\xe9\x41\x5e\x81\xce\x21\x48\xcb\x3e\x3e\xc6\x39\x41\xba\x79\xd1\xfa\xf2\xe2\xed\x85\x6d\x1e\xcc\xac\x59\x2c\xaa\xa5\xe3\xc5\xe6\x96\xee\xc7\x69\x28\x48\xf7\xbb\x3c\x66\xc8\x3e\xf8\x86\xa6\x9d\x3c\x66\xc8\x82\x36\x1d\x3a\x1f\xfd\x45\x90\x9b\x0f\xca\x69\x26\xc8\x8d\xc1\xf4\x31\xf7\x15\xbc\x7f\x49\x37\x9c\x54\x82\xdc\x78\xe1\x1f\x2d\x1e\x78\x7f\xc6\xdb\xa1\xf3\x09\x72\xf3\xf5\xd3\xf9\x04\xb9\xe1\xc5\x3c\xce\x16\xc1\xb0\xd4\xda\x63\x75\x3d\xf0\x1e\x8c\xd7\xca\x7d\x3d\xe0\x6d\xe3\xaa\x34\x41\x8f\x26\xc8\x77\xd9\x5c\x54\x90\x46\x5f\x1e\x4d\x10\x98\x96\x81\x7d\x4c\x4f\x05\xb9\xf9\xda\x9a\x9e\xfa\x98\x9e\x8a\xbb\xf0\x14\xb5\xb1\xc4\x22\xe3\xf6\x29\x46\x24\xb1\x50\xbe\x7e\x5c\x58\x15\x8b\x09\xc6\xe3\xc2\xea\xb3\x53\xc7\x0b\x0b\xfa\xec\x24\x0b\x8a\xc5\xe7\xff\xb8\xd6\x2a\xd6\xb6\xfc\xd5\xb0\x69\xbc\x4d\xaf\x69\x79\x76\x62\x40\x62\xa1\x97\xff\xec\x7c\x9d\x62\xcd\x77\x74\x79\x5c\x91\x15\x0b\x09\xba\x67\xe7\x83\x15\x8b\xcd\x32\xcf\xce\x32\xc8\xb3\xbf\x13\x9b\x45\xa0\xf9\xd9\x71\x48\xc5\x9a\xcb\x7e\x9d\x36\x9d\x34\xd9\x89\xcb\xa6\xeb\x6d\x2a\xae\xb1\x79\xd9\xd4\x65\x99\x5f\xbf\xbe\xcb\x26\x4d\xdd\x3b\xc1\x68\xf0\xec\xd6\x60\x69\x74\xb5\x7b\xd9\x5d\x55\x37\x9b\xbc\xec\x4e\x46\xfd\xf0\x0f\xbd\x6c\x6b\xb0\x0c\x7f\xe5\x35\x76\xca\x36\x0c\xee\x7d\xf7\x1a\x2d\x40\xfa\xbe\xea\x8f\x8b\xc9\x62\x85\x97\xed\x73\x04\x2b\xbc\x20\x1c\xe5\x87\xf5\xe5\x15\xf6\xbe\x7b\xd9\xdd\x55\x35\xcf\xe8\x65\xbf\x58\x54\xa7\x7b\x14\xab\x16\xc5\x14\xfc\x51\xac\xfa\xf9\x94\xa9\x3b\x2d\xc3\x96\x8d\x1f\xbd\x47\x57\x38\x4a\x24\x03\xc8\x73\xb3\xce\xf3\xdc\xc4\xbd\x28\x09\xf2\xdc\x2c\xea\x88\x24\x0b\xf1\x51\x4b\xea\xb9\xa9\x2c\x40\x01\xf6\xe7\x66\x54\x7c\x6e\xb2\x28\xa9\x57\xfe\xdc\x0c\x8a\xcf\x4d\x24\x8c\x5a\xf1\xcf\xcd\x98\xf8\xdc\xe3\xfd\x14\xa8\xd1\xfd\xdc\x64\xf5\x3c\x37\x63\x22\x7b\xfb\x9e\x1b\x97\xfe\xb9\x59\xe0\xa6\x36\xf9\x73\x6f\xf6\x0b\x5f\xbd\xde\x79\xef\xf3\x78\x89\x80\xf9\xc1\xf3\x10\x74\x11\x8b\xb2\x39\x8f\x62\x2d\x82\x19\xf4\xf3\x10\x91\x15\xc4\x68\x1f\xd5\x5b\x84\x37\xf4\x21\x2c\x23\x98\x54\x3c\x5a\x37\xb1\x7e\xbf\xff\xb6\x75\x6a\x8c\xff\x6e\x94\x1f\xec\xe0\x0b\x05\x59\x69\xd9\x6d\x21\x9d\x70\xd1\x72\xd8\x42\xad\x2d\xbb\x72\xda\x72\xfe\x8f\xbf\x7c\x9b\x1e\x42\xb7\x82\x8d\x17\x8f\x56\x55\x50\x2d\xf7\x79\xfc\xb4\x01\x15\xaf\x1e\xcd\xec\x83\x11\x64\x2f\xcb\xf3\x34\xcf\x8e\xc6\xcb\x3b\xf9\x78\x94\x78\x11\xbe\x6d\x2a\xbc\x08\x72\x3f\x9f\xc7\x0f\x0a\xa0\x17\xfb\x28\xf9\x22\x28\xbd\xf8\x68\x5c\x05\x95\x80\x1f\x6d\xeb\xf3\x7c\x0f\xfe\x6d\xf1\xb9\x2b\xbe\x92\x5c\xfb\xf0\xec\x03\x05\x74\xee\x8f\x2f\x02\x20\xd4\xf6\x68\x2e\x05\x25\x0b\x1f\xe5\x59\x04\x85\xf5\x9e\x67\xf3\xec\x2f\x70\x18\x1f\x2d\xea\xf3\xcc\x77\x40\xf1\x91\x4f\xcf\x8e\xd4\xb5\x77\x63\x7a\x76\x84\x52\x82\x2b\x9d\x9e\x7d\x22\x1b\xc2\x75\x4d\xcf\x4e\x49\xba\xe0\xb5\x08\x8f\x5c\x0a\x17\xbd\x2d\xb7\x67\xbf\xdd\xb9\x44\x8b\xef\x20\xcb\x23\x93\xe3\xdc\xbe\x82\x08\x19\x6d\x5c\xd7\xed\x2b\xf8\x62\x51\xf1\xe9\x51\xe8\x42\xa4\xaf\xf7\xed\x0b\x44\xb9\xe6\xfe\xff\x16\xb7\x79\xff\xff\xaf\xfb\x3f\xfe\xbf\xff\xf9\xbf\xf6\x7f\xfc\xef\xfd\x5f\xef\xbf\xce\xff\xfc\xe7\x3f\xef\x7f\xfb\x8f\xeb\x5f\xce\xff\xf8\xeb\xff\x7f\x5b\xff\xba\xee\xe7\x5f\xfe\xed\xfe\xe7\xfd\x7f\xfe\xfd\x3f\xff\x79\xde\x7f\xfd\xe3\xdf\xff\xf1\xfe\x15\xff\xfe\x6f\x00\x00\x00\xff\xff\xb5\x0d\xdf\x1d\xc7\x89\x02\x00"); -func _dgfb ()([]byte ,error ){return _dc (_addc ,"HKgccs-B5-H")};func _bcde ()(*asset ,error ){_ffdf ,_fefg :=_gcdc ();if _fefg !=nil {return nil ,_fefg ;};_abff :=bindataFileInfo {_ag :"Adobe-KR-0",_bc :640,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491402,0)}; -_cdde :=&asset {_cd :_ffdf ,_dce :_abff };return _cdde ,nil ;};var _bdca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xcd\x6e\xdb\x3a\x10\x85\xf7\x7a\x8a\x59\xe6\x2e\x72\x45\x8a\x95\x69\x01\x41\x80\xc6\x2e\x52\x2d\xd2\x14\x75\x9c\x16\x28\xba\xe0\xcf\xd0\x20\x50\x53\x02\x25\x2d\xfc\xf6\x05\x67\x54\x75\x61\x1c\xfb\xe3\x39\xc3\x19\x73\xea\x43\x7f\xec\x53\x9c\xa1\xfe\x9a\x07\x77\xc2\x19\x42\x4c\x3e\xe3\x34\x2c\xd9\x21\x58\xbc\xc4\x54\x55\xb2\x01\x1f\xdd\xfc\xf7\x27\x89\xbb\x9a\xb1\xaa\xea\xe7\xa7\xb7\xfb\x4f\xe7\xc3\xfd\x67\x58\x26\x5c\xd9\xa1\x3f\x9e\x6e\xd3\x8c\xd7\x3e\x85\x01\x14\x67\xfd\x32\xae\x79\x80\xfa\x1b\x5e\xe2\x34\xe7\x1b\xdc\x7d\xf4\x83\xc5\xff\xc0\x63\x28\xfc\x35\x7b\xcc\x31\x5d\xe0\xee\xf9\x49\x6e\xf4\xb4\x8c\xe3\x6f\xbc\x62\x9a\x41\x12\xc3\xe4\x49\xab\xfa\xf0\x62\xc6\x2f\xe6\x8a\xb0\x35\xf2\x4e\x27\x74\xf0\x8e\x79\x8a\x43\x02\x29\xfe\x17\x62\xf7\x8f\xbf\xdd\x46\x5c\x2b\x55\xf5\xb9\x3f\xbe\x86\x30\xe1\x0c\xbb\x4e\xb0\xe7\xc7\xb9\x3f\xc2\x4f\x09\x52\x40\xd3\x2a\x2d\x7f\xad\xd6\xef\x2f\x83\xdf\x82\x8d\xe0\x71\x5c\xf4\xd9\xa4\x0b\x56\x0f\x46\x9a\xe6\x11\x56\x81\x56\xb7\x84\x14\x23\x45\xe8\x03\x21\xc3\xc8\x14\xd4\xed\x09\x59\x46\xee\x11\xb4\x16\xec\xf2\x8c\x3c\xb9\xba\x82\x2c\x97\xb7\xa1\xa0\x7d\x53\x50\x40\x42\x45\xb4\x16\xbb\xea\xc1\x28\x23\x0b\x22\x81\x56\xef\x09\xed\x19\x75\x14\x14\x84\x1c\x23\x47\x2e\x45\x08\x19\x71\x2d\x5d\x90\xa5\x56\x95\xb5\xe4\xa2\xf2\xd6\x33\xf2\xe4\xa2\xf2\xa5\xa1\x55\xa0\xd5\xa5\x55\xe5\x69\x20\x12\xad\x05\x23\x0e\x7a\x0a\x4a\x6a\xc2\x73\xb0\x08\xec\x04\xa1\xc0\xc1\x40\x37\x76\x74\x63\xe0\x60\xe0\x7f\x82\xfa\xe2\xb1\x15\x8f\x2d\x65\x59\x88\xed\x1d\xca\xf7\xb2\x87\xdb\x6a\xb8\x25\x67\x4c\x33\x6d\x21\xbd\x7f\x79\xc0\x98\x70\xdb\xf2\x71\x18\x4b\x8a\x3e\x7f\x02\x00\x00\xff\xff\x0f\xbf\x93\xd7\x11\x03\x00\x00"); -func _bgf ()(*asset ,error ){_fdg ,_aedd :=_ggfc ();if _aedd !=nil {return nil ,_aedd ;};_aeb :=bindataFileInfo {_ag :"Adobe-Japan1-3",_bc :1147,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491320,0)};_acg :=&asset {_cd :_fdg ,_dce :_aeb };return _acg ,nil ; -};func _cbd ()([]byte ,error ){return _dc (_faa ,"ETen-B5-H")};func _bcae ()(*asset ,error ){_aede ,_fgee :=_abegeg ();if _fgee !=nil {return nil ,_fgee ;};_eab :=bindataFileInfo {_ag :"UniGB-UTF8-H",_bc :235585,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492783,0)}; -_geae :=&asset {_cd :_aede ,_dce :_eab };return _geae ,nil ;};var _gbdd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\x41\x8f\x9b\x30\x10\x05\xe0\xbb\x7f\xc5\x1c\xb7\x87\x2d\x36\xc4\xc4\x48\x51\xa4\x2a\x39\x14\xad\xb6\xad\x4a\xb3\xad\x54\xf5\x40\xf0\x10\x59\x6a\x0c\x32\x70\xc8\xbf\xaf\xfc\x4c\x69\x0f\xd1\x4b\x3e\x33\x8f\x80\x9d\x9d\xea\x73\xed\xdd\x4c\xd9\x97\x30\x74\x0d\xcf\xd4\x3b\x6f\x03\x4f\xc3\x12\x3a\xa6\x2b\xdf\x9c\x17\x42\xe5\x64\x5d\x37\xff\xfd\x89\xe8\xee\xed\x28\x44\x76\xf1\xee\xa5\x79\xbe\x9c\x9a\xfc\xf9\x23\x2d\x13\xaf\x7c\xaa\xcf\xcd\x63\x9a\xf9\x5e\xfb\x7e\xa0\x22\x8d\xdb\x65\x5c\x2b\x88\xb2\xaf\x7c\x73\xd3\x1c\x1e\xf4\xf4\xc1\x0e\x57\x7e\x47\x96\xfb\xe8\x9f\x83\xe5\xe0\xfc\x8d\x9e\x5e\x86\xc0\xad\xda\x16\x9a\x65\x1c\x7f\xf3\x9d\xfd\x4c\x0a\xc6\xde\x22\x45\x76\x7a\x6d\xc7\x4f\xed\x9d\xe9\xff\xbf\xf3\x86\x45\xac\xbd\x71\x98\xdc\xe0\x49\xc9\xf7\x52\x96\xff\xfc\xdb\x63\xe4\xb5\x4c\x64\x3f\x2e\xf5\x99\x7e\x2a\x52\x92\x72\xbd\x93\xfb\x5f\xab\x7f\x7f\x1d\xec\x76\x95\x32\xe9\x09\x3a\x67\x43\xeb\x6f\x2c\x0e\xb9\x54\xc5\x91\x62\xec\x8e\x64\xa4\xae\x40\x65\xa2\x32\x52\xa9\x22\xe5\x1a\x14\xc3\x48\x6d\xc4\xa1\x90\x52\x1d\x29\x46\x0e\x2a\x41\x06\xa4\x14\x06\x75\x24\xd4\xa7\x30\x72\x9f\x68\x97\x08\x5d\x65\x21\x0e\x7d\x8f\xae\x14\x46\xee\x4b\x90\x49\x54\x81\xf6\xa0\x2e\x51\x07\xaa\x40\x9c\x88\x23\x19\x19\x49\xb5\x20\xd5\x83\x54\xa4\xe2\x0a\x8a\x61\xa4\x41\x57\x61\x13\x59\x90\x01\xf5\x89\xd2\x20\xea\x75\x1a\xd4\xb8\xaa\x42\xbd\x4e\x77\xd4\xb8\x63\x99\x47\xe2\x02\xc4\x78\xc6\xaa\x88\x5b\xbb\xbd\xe1\xf8\x3d\x1e\xaa\x6d\x93\xbb\x25\x04\xf6\x33\x8e\x14\xb6\x31\x6e\x8d\xf3\xbc\x9d\xda\x71\x18\xe3\x14\x3e\x7f\x02\x00\x00\xff\xff\x23\x3f\xe6\x8f\xe1\x02\x00\x00"); -func _cff ()(*asset ,error ){_aac ,_befd :=_dgg ();if _befd !=nil {return nil ,_befd ;};_dgfc :=bindataFileInfo {_ag :"Adobe-Japan1-7",_bc :2201,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491344,0)};_ega :=&asset {_cd :_aac ,_dce :_dgfc };return _ega ,nil ; -};func _febe ()([]byte ,error ){return _dc (_bgcd ,"GBpc-EUC-V")};func _abce ()([]byte ,error ){return _dc (_ggccg ,"UniCNS-UTF16-V")};func _dddgd ()(*asset ,error ){_efec ,_ebbb :=_aeae ();if _ebbb !=nil {return nil ,_ebbb ;};_caf :=bindataFileInfo {_ag :"KSC-H",_bc :9400,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492507,0)}; -_fafc :=&asset {_cd :_efec ,_dce :_caf };return _fafc ,nil ;};func _gga ()([]byte ,error ){return _dc (_cfcc ,"GB-V")};var _fdfg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x31\x6b\xc3\x30\x10\x85\x77\xfd\x8a\x1b\xd3\xa5\x96\x1c\x92\x76\x08\x81\x92\x10\x70\x21\x4d\x89\x9b\xb6\x50\x3a\x28\xd2\xd9\x08\xea\x93\x90\xe4\xc1\xff\xbe\x48\x76\x5c\xe8\x60\xce\xfa\xee\x3d\x74\xef\x54\xec\xaa\x7d\x45\x26\x42\xf1\xea\xad\xaa\x31\x42\x63\x48\x7b\x0c\xb6\xf7\x0a\xe1\x8a\xad\x21\xc6\x44\x09\xda\xa8\x78\x3b\xe6\xa2\x3a\xe9\x18\x4b\xfe\x7a\x08\x11\xbb\x8a\x1a\x0b\xcb\x51\xa7\x7b\x37\x69\x01\x8a\x33\xb6\x26\x44\x3f\xc0\xe2\x49\xdb\x2b\xde\x81\xc6\x26\xf1\x93\xd7\xe8\x0d\xb5\xb0\x78\x96\x4e\x92\x98\x1b\x75\xef\xdc\x0f\x76\x48\x11\x78\x66\x48\x3a\x57\x56\xec\x8e\xd2\xbd\xc8\x0e\xa1\x38\xdb\x4e\x52\xa6\x19\xbe\xa3\x0f\xc6\x12\x08\x7e\xcf\xf9\xfa\x8f\xbf\x0d\x0e\x41\x4c\xee\x4b\xb5\x3f\x35\x4d\xc0\x08\x8f\xeb\x49\xf3\x79\xa9\xf6\xf0\x25\x40\x70\x28\x57\xcb\x95\xf8\x9e\xa4\x1f\x47\xab\x71\xba\x9e\x89\x31\x8c\xb2\x1a\x83\x93\x0a\xbd\xa4\x16\x19\xc0\x86\xf3\x2d\x6c\x0e\x87\x6d\x9a\xf0\x5f\x77\x36\x19\x3d\x82\x4d\x99\xc4\x0f\xb8\x85\x72\x29\xb2\xe1\xd6\x49\xff\x69\x99\x73\x38\xd5\x7b\x8f\x14\xf3\x2a\x73\x8a\x34\x86\x21\x9c\x9f\xc5\x59\x97\x5c\xf9\xfb\x0d\x00\x00\xff\xff\x19\xfc\x17\x6a\xc2\x01\x00\x00"); -func _eaae ()(*asset ,error ){_edcb ,_cebcb :=_dcfa ();if _cebcb !=nil {return nil ,_cebcb ;};_ddgd :=bindataFileInfo {_ag :"CNS1-H",_bc :3373,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491531,0)};_edb :=&asset {_cd :_edcb ,_dce :_ddgd };return _edb ,nil ; -};var _ggccg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xcf\x8e\x9b\x30\x10\xc6\xef\x7e\x8a\x39\x6e\x0f\x5b\x6c\xc0\xf9\x23\x45\x48\x15\x51\x55\x0e\x9b\x56\x65\xb3\xad\x54\xf5\x40\xec\x71\x6a\xa9\x31\x96\x81\x43\xde\xbe\x9a\x81\x50\xed\x01\xcd\xcc\x6f\xf0\x37\x1f\x63\xb2\xba\x39\x36\xc1\x8f\x90\x7d\x4b\xbd\x69\x71\x04\xe7\x83\x4d\x38\xf4\x53\x32\x08\x17\xbc\xfa\x20\x84\xca\xc1\x7a\x33\x3e\x4a\x0e\xe6\xd6\x45\x21\xb2\x73\xf0\xf5\xa9\x7d\x3e\xbf\x7e\x56\x9b\xe7\x2f\x30\x0d\xb8\x34\xea\xe6\xd8\xde\x87\x11\x6f\x4d\x70\x3d\x14\xb3\x80\x9d\xe2\x22\x02\x90\x7d\xc7\xab\x1f\xc6\x74\x87\xa7\x4f\xb6\xbf\xe0\x07\xb0\xe8\x88\x7f\x4d\x16\x93\x0f\x57\x78\xaa\x4f\xad\x5a\x71\x3b\xc5\xf8\x17\x6f\x18\x46\xd8\x32\xc3\x60\x39\x8a\xac\x7e\xe9\xe2\xa9\xbb\x21\xbc\xb7\xf3\xc6\x6d\xee\xbe\x61\x1a\x7c\x1f\x40\x7d\x94\x72\xff\x1f\xbf\xde\x23\x82\x5a\x54\x7e\x9e\x9b\x23\xfc\x52\xa0\x24\xe4\x5a\xef\xf3\xdf\x0b\xff\xf1\xd2\xdb\xf5\xad\xcd\xec\xdf\x78\x6b\xfe\x74\x49\x1c\x72\xa9\x8a\x0a\x54\x2e\x39\x2d\x29\xcd\x29\xcd\x75\x05\x4a\xee\xc5\xc1\x61\xe9\x2a\x50\xc5\xb6\xd4\xe2\xe0\x9c\xbe\x50\x51\x72\x6a\x29\xd5\xf4\x1d\x0f\x39\xb1\x5d\xe5\x53\x17\xae\x28\x0e\x85\x94\xbb\x0a\x28\xec\x2b\x50\x5a\x32\xe9\x66\x42\x52\xe5\x86\x89\x99\x09\x29\xea\x92\x09\xce\x84\x66\xeb\x1d\x11\x25\x99\x28\x45\xa7\x72\x26\xe5\x4c\xc8\x6a\xb1\x23\x4b\x3c\xcb\x39\x9e\x55\xc8\xc5\xd9\xec\x84\x0b\xba\xda\x75\xd9\x66\x4a\x09\xc3\xc8\x17\xcb\xdb\xa4\x0d\xf9\x80\xeb\xdf\x13\xfb\x48\xa7\xf8\xf9\x17\x00\x00\xff\xff\x60\x3a\x39\x2b\x69\x02\x00\x00"); -func _ed ()(*asset ,error ){_gf ,_deg :=_fee ();if _deg !=nil {return nil ,_deg ;};_dee :=bindataFileInfo {_ag :"78-RKSJ-H",_bc :12581,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490930,0)};_dcf :=&asset {_cd :_gf ,_dce :_dee };return _dcf ,nil ;};var _gaagb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x98\x41\x6f\x23\xb9\x11\x85\xef\xfe\x15\x7d\xdc\x1c\x36\x26\xab\x48\x91\x04\x16\x03\x04\x33\x87\x78\x81\x4d\x16\x71\x66\x13\x20\xc8\xa1\x25\xb1\x07\x02\x62\x49\x90\xed\xc3\xfc\xfb\xa0\xde\xa7\x38\x08\x90\xc3\xe0\x8d\x3f\x93\xd5\xf5\x1e\xd9\xa4\xe4\xc7\xcf\x4f\x5f\x9e\xce\xa7\xb7\xe5\xf1\xd7\xdb\xe5\xf0\x3c\xdf\x96\xed\x74\x3e\xde\xe6\xeb\xe5\xfd\x76\x98\xcb\x7e\x7e\x3b\x9d\x1f\x1e\xb2\x2d\xc7\xd3\xe1\xed\x3f\x3f\x4a\x0e\x2f\xeb\xf5\xe1\xe1\xf1\xeb\xf9\xf4\xf3\xd3\xf3\x8f\x5f\x3f\x3f\xdb\x8f\x7f\x5c\xde\x5f\xe7\x9d\x7f\x7e\xfa\xf2\xfc\xfd\xf5\x6d\xbe\x3c\x9d\xb7\xcb\xe2\xcc\x3f\xbe\x5f\xef\x35\x96\xe5\xf1\x2f\xf3\xdb\xe9\xf5\xed\xf6\x7d\xf9\xe1\x0f\xc7\xcb\x7e\xfe\x6e\x39\xce\x2d\xf8\x9f\x6f\xc7\x79\x3b\x9d\xbf\x2d\x3f\xfc\xbc\x5e\xd7\x73\xfe\xf8\xc5\xf3\xfb\xf5\xfa\xaf\xf9\x32\xcf\x6f\x4b\x11\x9b\xe7\xa3\xf4\xe1\xf1\xf3\x2f\xeb\xf5\x4f\xeb\xcb\x5c\xee\xfd\xfc\x7a\xbb\xd0\xd2\x6f\x1a\xa0\xdf\xff\x36\x6f\xaf\xa7\xcb\x79\xc9\xbf\x4f\xa9\xfe\x17\xff\xf5\xfb\x75\x2e\xf9\x5e\xe7\xef\x5f\x9f\xbe\x2c\xff\xc8\x4b\x4e\x8b\xd5\xea\xf5\x9f\x77\xfe\xb7\x5f\x2e\xc7\x8f\x51\x39\x25\x5c\x1c\x4e\xc7\xdb\x7a\xfe\x36\x1f\x7e\x4a\x69\x9f\x3e\x2d\x77\xe9\xb6\x1b\x0f\x3f\x59\xca\x81\x90\xd6\x87\x0b\x55\x50\x15\x32\xa1\x1d\x68\x27\x54\x85\x3a\x68\x7c\x5a\xb2\xe5\xc6\xcc\x03\xec\xf8\x69\x69\xa3\xee\x02\x19\xc5\x8c\x62\x5d\x88\x62\x46\xb1\x16\xc8\x4d\x28\xa4\x1b\xb5\xdc\x41\x1e\xa8\x07\xca\x43\xbd\x4a\x9a\x77\x91\x0c\xc9\x41\x76\x22\x06\xb1\x20\x43\xc4\x21\x1e\xa4\x89\x54\x48\x8d\xd6\x2d\x97\x60\x87\x22\x16\xd2\x3d\x67\x21\x86\x85\x74\xcf\x49\x68\x07\xda\x09\x45\x34\x79\x82\x42\x7a\xba\xa3\x06\x6a\x42\x2a\x3f\x3b\xa8\x0b\xa9\xfc\x1c\xa0\x21\x14\x06\x8d\xb0\xec\x1e\x56\xc4\x6c\xae\x48\x25\xad\x8f\xa8\x65\x73\x13\x0a\xb9\xe7\x57\x93\x92\xa9\x29\x72\x28\x3d\x0b\x19\x28\x6c\x97\x36\x84\x0a\xa8\x6a\x54\x15\xda\x81\x9a\x90\x0b\x75\xd0\x10\x62\xe2\x0a\xda\x0b\xf1\xc4\x03\x28\xfa\x2a\x83\x5a\x47\xd0\x51\x88\x51\x13\x34\x85\x76\x42\x1b\x68\x13\x8a\x55\xac\xec\x41\x49\xab\x49\x4d\xe4\x0c\xca\x42\x2a\x9f\x31\x14\xd2\x6a\x2a\x42\x0e\x72\x21\x95\xcf\x78\x0c\x69\x65\x28\x09\xf6\xb3\xa4\x95\x41\x79\x6c\x6b\x3f\x17\x6d\xf1\x9a\x1b\x48\x49\x0c\xca\x93\x44\x48\x2b\x43\x49\xe4\x01\x1a\x7a\x22\xe5\x09\x27\xa4\xd5\x94\x84\xf6\xa0\xbd\x10\xe5\xc9\x2b\xa4\x55\xa3\x09\xf2\xd2\xdb\x52\x4d\x79\x65\xf2\x0a\x69\xd5\xb0\x4d\x5e\x21\xad\x9a\xfa\x32\xf2\x32\xe5\x65\xb2\x6d\xe4\x65\xca\xcb\xd4\xaa\x91\x97\x29\x2f\x53\xd0\x46\x5e\x16\xe1\x54\x57\xab\x6c\x39\x49\xab\xae\x27\xf2\x7e\x4a\x5a\x75\xb5\x6a\x84\x13\xd2\xaa\xcb\x90\x11\x4e\x48\xab\x4e\x5f\x84\x63\x0a\x47\xaf\x5a\x35\xc2\x31\x85\xe3\xb4\x4a\x38\xa6\x70\x9c\xbe\x08\xc7\x14\x4e\xa6\x09\xc2\x31\xd9\xce\xaa\xe5\xd8\x76\xd9\xce\xaa\xe5\xd8\x76\x6d\x00\x93\x21\x67\x03\xb8\x3c\x26\x26\xe2\xd1\xd5\x7d\x52\x38\x4e\xf7\xae\xee\x93\x9a\x70\xba\x77\xf5\xa5\x17\xb9\x3a\x4d\xb8\x9a\x28\x4a\xa2\xd0\x44\x51\x13\x45\x1b\xa0\xd0\x44\x51\xf6\x45\x4d\x14\xb2\x2f\xca\xbe\xa8\x56\x21\xfb\xa2\x56\x8b\xfa\x2a\xb4\x5a\xd4\x6a\x51\x5f\x85\x56\x8b\x96\xa3\xc8\x63\x61\x39\x8a\x96\xa3\xa8\xd5\xc2\x72\x14\x19\xaa\xf4\x85\xa1\x22\x43\x95\x27\x62\xa8\x28\xfb\x1a\x7d\xed\xd8\x85\x92\x6e\x96\x85\x8e\xa0\x63\xa0\x3c\x84\x26\x68\x6a\x94\x09\x6d\xa0\x4d\x28\x6a\x35\x0e\x18\x49\x5c\x00\xd1\x58\x5b\x15\x85\xa4\x5b\x24\xed\x29\xce\xa4\x90\x88\xa2\xc7\xd9\xe1\x49\x27\x8c\x27\xbd\xdc\x23\x09\xe9\x4d\x46\xba\xb5\x24\x54\x40\x55\xa3\xb2\xd0\x01\xf4\x71\x18\xba\xee\x9a\xbb\x70\xe5\x78\x52\xaf\x48\x1b\x55\xe5\x0b\x4d\x68\x89\x46\xee\x42\x3c\x51\xeb\x31\xb2\x5a\x55\xf8\x48\x1b\xa6\x26\x94\x34\xd2\x86\xa9\x09\xc5\x8a\xb4\x11\xe9\x78\xda\x51\x6b\xa7\x5a\xe6\x71\xe7\x7f\x5c\xbb\xff\xef\x26\xf6\xd4\x99\xd1\x99\x21\x27\x9d\xa7\x77\x9e\x5e\x85\x78\x7a\xe7\xe9\x32\xd7\x27\x68\x0a\xc9\xdc\xd8\x0b\x85\x74\x6b\x6a\x68\x10\xd4\xd0\x3a\x37\xb5\xbd\x12\xc1\xaa\x08\x4c\x11\xac\x34\xb1\xd2\x84\x22\x58\x69\x62\x55\x13\xae\x08\x56\x9a\x58\xd5\x84\x53\x8b\x08\x56\x45\xe0\x7a\xe2\x81\x5a\x07\xd5\x8a\x43\xc3\xd3\x04\x4d\x90\x3c\x4e\xca\x4f\xca\xcb\xe3\xa4\xfc\xa4\xbc\x3c\x4e\x3c\x4e\x79\x74\x79\xdc\x98\xb8\xed\x84\xd4\xfd\x86\xc7\x8d\xcd\x10\x7d\xb9\xae\x41\xa4\x7b\xec\x78\x77\xb6\x9f\x6b\x97\xe6\x51\xbb\x98\xc3\x62\xb3\xb9\x83\x0a\xa8\x68\xd8\x8e\xa9\x15\xa6\xfb\x5f\x96\x5c\xd7\x25\x12\xc3\x78\x68\x83\x35\x58\x15\xeb\xb0\x0e\x63\xee\x80\x0d\x18\x8f\x5d\x61\x2b\x6c\x27\xb6\x87\xed\xc5\x1a\xad\x1c\x60\x07\x98\x89\x1d\x61\xec\x7c\x86\x29\x38\x8f\xb7\x28\x86\xe9\xb1\xbc\x46\x92\x36\x8a\x3a\xce\x18\xcb\x32\x56\x34\x33\x63\x2c\xeb\x83\x8d\x83\xf0\x95\xf1\xd5\x61\xf8\x0a\xe9\x1e\x1f\xaf\xdc\x33\xb6\x32\xb6\xba\x5a\xcb\xd8\x8a\x97\x32\x58\x11\xbb\xf7\x36\xb5\x36\xb4\xa6\x17\xd5\xe3\xd2\x8a\x61\x4a\x44\xb7\x16\xd2\x5d\x7b\xd2\x8d\xe5\x32\x2d\x57\x61\x14\xa6\x8c\xe5\x62\xf1\x0d\x57\x21\xc1\xf4\x04\xc3\x96\xae\xb2\x51\x19\x86\x2d\x5d\x65\xa3\x68\xb5\x0c\x57\x86\x85\xa1\x55\x30\x2c\x84\x74\xaf\x20\x16\x46\x17\xd7\xc0\x81\xb1\x06\x86\xd1\x41\xbb\x18\x8d\x6b\x2a\x5b\x4a\x0a\xc4\xd9\x85\x21\xdd\xd9\x84\x8e\x51\x37\x86\xa9\x11\xc7\xa9\xb3\x31\x15\x9b\xe3\xd4\x2b\xc3\x98\x8a\x2b\x97\xab\xb8\x4a\xdc\x1d\x57\x21\xd9\xf4\x99\xd3\xdd\xb1\x15\x12\x4c\x1e\x9c\xd5\x0a\xe9\x5e\xe4\xc1\x71\x1a\x12\xc3\x28\x87\xd5\x90\xee\x45\xb6\x9c\x2d\x18\x12\xc3\xb4\x1d\x1c\xfb\x21\xc1\x68\x0e\xfb\x05\xfb\x3a\x45\x9d\xe3\x57\x12\xe3\x54\xaf\xe0\xbf\x68\xa1\x31\xc1\x91\xec\x71\xd3\xc5\x54\x75\xc7\x01\x2c\xe9\x5e\x19\x86\xaf\x82\x2f\x83\xe1\x8b\x43\x99\x2d\x5d\xf0\xa5\xeb\x6f\x54\x25\x52\xb0\x55\xf0\xa0\x43\xd0\x0b\x1e\x8a\x5e\x23\x12\x29\x77\x0b\xda\xaa\x4e\x7d\xb6\x6a\xc5\x15\x2f\x48\xc5\x55\xd5\x89\xca\xbe\xac\x98\xaa\x2c\x2a\x2b\x58\x71\x15\x12\x8c\x71\xac\x6a\x48\x30\x2d\x7e\x65\xff\x56\xdc\xf3\x72\x55\xdc\x57\xb9\x2f\x2a\xd7\xf0\x10\x92\x2d\xdd\x19\x6b\xd3\xf0\x85\x89\x86\xaf\xc6\xda\x14\x6d\xc3\x86\xb1\x90\x60\x7a\x1f\x1a\xce\x42\xba\xc7\x4d\xb4\x6d\x3a\xbd\xb6\x4d\xdf\x00\x7a\x6c\xea\x6d\xd3\x01\x84\x74\x8b\xb3\x6b\xdb\x74\xd8\x20\xdd\x9a\x26\xea\xbd\x47\xb2\xe5\xb8\xb3\xb7\x4d\x17\x34\xd2\x46\xec\xae\x6d\xd3\xee\x42\xda\x88\xcf\xfb\xdb\xe6\x8c\x72\x8d\x4a\x2a\x16\x9f\xba\xee\xd2\xfa\x48\x81\x2a\x13\x2b\x13\xab\x10\x8d\x55\x6e\x81\x9d\x10\xb5\x2a\xb5\x40\xf4\x1a\xc2\x07\x87\x6d\xd3\xed\x84\xb4\xde\xc7\xff\xdc\xd9\xf1\xff\x97\xf5\xfa\xf0\xf1\x8d\xfd\xf0\x7e\xbb\xcd\xf3\x9b\xfe\x3e\xa0\x2f\xe4\xf1\x25\xfb\x74\x9e\x1f\x7f\x83\xb8\x5e\xae\x31\x4b\xff\xfe\x1d\x00\x00\xff\xff\x08\x57\xa3\x4a\xaf\x10\x00\x00"); -func _gfbba ()(*asset ,error ){_aeaf ,_dfaae :=_accdg ();if _dfaae !=nil {return nil ,_dfaae ;};_dbgfd :=bindataFileInfo {_ag :"RKSJ-V",_bc :915,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492637,0)};_daef :=&asset {_cd :_aeaf ,_dce :_dbgfd };return _daef ,nil ; -};func _gcdc ()([]byte ,error ){return _dc (_ecafa ,"Adobe-KR-0")};var _ffad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xcd\x8e\x1c\xc7\xd1\xbc\xcf\x53\xf4\x51\xdf\xe1\x33\xeb\xff\x07\x18\x0c\x20\x93\x26\xcc\x83\x24\xc3\xb4\x6c\x03\x86\x0f\x5d\x55\x59\xc4\x02\xe6\xee\x62\xb9\x3c\xe8\xed\x8d\x88\x18\xc9\x96\xe0\x83\xd0\xda\x60\x64\x55\x76\x56\x44\x66\xf5\xbc\x79\xfb\xe1\xdd\x87\xc7\x87\xd7\xe3\xcd\x9f\x5e\x9e\xe6\x47\x7b\x3d\xf6\xc3\xe3\x7a\xb1\x2f\x4f\x5f\x5f\xa6\x1d\xc3\x3e\x3d\x3c\x5e\x2e\x3e\x1c\xeb\x61\xbe\xfe\xfc\x27\x1f\xf3\xf3\xf9\x7c\xb9\x20\xfe\xe3\x4f\x5f\x5e\xed\xf3\x87\xc7\xfd\x74\x44\xf1\xd6\xd7\xe7\x3b\xf7\x38\xde\xfc\xd9\x3e\x3d\x7c\x79\x7d\xf9\xe9\xf8\xe6\xdb\xf5\x34\xec\xff\x8e\x65\x1b\xf8\x0f\x2f\xcb\x5e\x1e\x1e\x3f\x1d\xdf\xbc\xfd\xfe\xa3\xff\x05\xfe\xf8\xf5\xf9\xf9\x5f\xf6\xd9\x1e\x5f\x0f\x47\xcc\x1e\x17\x9f\x97\x37\x6f\xbf\x3b\x9f\xbf\x3f\x3f\xdb\xf1\xe6\xf7\xf9\x79\xfe\xff\x1f\x09\x13\xfd\xab\xbd\x7c\x79\x78\x7a\x3c\xbc\xfb\x9d\x73\xe5\x3f\xf8\x5f\x7e\x7a\xb6\xc3\xdf\xc3\x7f\xfc\xf0\xee\x87\xbd\xbf\xd8\xcf\x0b\xbf\xf9\xfb\x8f\x1f\xde\x1d\xff\xf0\x87\x77\x47\xc8\xb1\x85\x7f\xde\x89\x7f\xfb\xee\x69\xd9\x9d\x74\x89\x7a\x93\xf9\xb4\xec\xcb\xf3\x39\xed\xe5\x7c\xfc\x64\x97\xe3\xb8\x3a\x77\x3b\x8e\xe3\xda\xdc\x0d\x7f\x7d\xeb\x93\xbb\x1d\xd7\xf7\x6f\xdf\xff\x81\x7f\xbf\x7f\xc7\x7f\x7d\xff\xfe\x86\x17\xf8\x4d\xf4\xc5\x6b\xd1\xc7\xa7\xd7\x65\x5b\x18\xd7\xbb\xfa\x7d\x3b\x3c\x22\xfe\xfb\x9f\x2e\xde\xb9\x7b\x16\x0f\xeb\xce\x0e\x60\x57\x03\x1b\x29\x30\x8f\xa3\xf8\xcb\xf5\x54\x22\xa7\xcf\xed\x76\xf4\x0e\x20\x77\x01\xf3\x76\xf8\x58\x53\x24\xb6\x88\x71\x85\xd0\x80\x9c\x9e\xc8\xce\xb7\xc3\x97\x00\x64\x17\x21\xe5\x76\x84\x44\xce\xae\x42\x2a\x90\x4a\xa4\x09\x31\x20\xd8\x2d\x68\xfb\x80\x95\x43\x2e\x40\xb4\x72\x00\x27\x7a\x70\xa2\x38\x11\x9c\xe4\x91\x4f\x14\x27\x8e\x71\x3b\x52\x45\x54\x1c\x4b\xc8\xbe\x1d\xd9\x91\x33\x15\x65\xee\x76\x64\x66\x98\xb4\x4e\xc2\x3a\xb9\x67\x20\x5a\x27\x61\xaf\x92\x91\x73\x16\x27\x83\x53\x33\xa2\xb2\x38\x19\x9c\xe6\x11\x55\xc4\x29\xe0\x74\x87\x0c\x8b\x38\x05\x9c\x5e\x11\x55\xc5\xa9\xac\x98\x2b\x48\xb1\x8a\x54\x41\xf2\x3e\x20\xae\x89\xd5\x54\xd7\x80\xb4\x9b\x58\x6d\xab\xd4\x08\xec\x62\x75\xb2\x62\x73\x80\xc4\xea\x64\x25\x9e\xd1\x29\xd6\x49\x56\x8e\x28\xf7\x29\xd6\x49\x56\x71\x08\x1c\x62\x0d\xb2\x4a\x4f\x80\xc4\x1a\x64\xd5\x8c\xc0\x29\xd6\x24\xab\x65\xe8\x64\x8a\x35\xf7\xba\x1d\xbe\x7b\x04\x4e\x44\xdc\x1f\x21\x45\xb0\x96\x02\x17\x8f\xd3\x39\xac\xb5\x14\xb8\xc8\x72\x15\x49\x98\x58\x46\x96\x2f\x58\xcb\xc4\x32\xb2\x42\x40\xe0\x16\x6b\x93\x15\x03\x96\xdf\x62\xed\xb9\x01\x35\x04\xee\x25\xd6\x3d\x89\x70\xb9\x0e\xc7\xc0\xe1\x18\x98\x6a\x07\xc4\xc0\xe1\xc8\xca\x09\x2c\x09\x7f\x50\xd3\xa1\xc4\x02\x48\x2c\xc9\xb3\xc0\x0d\x43\xfa\x1c\xd2\x67\xed\x11\x90\x58\x14\x68\x68\xd0\xec\x90\x42\x07\x15\x1a\x7a\x76\x80\xc4\x8a\x94\xb1\x83\x6a\x87\xf4\x37\xa8\xbf\xe8\x51\x9c\x21\x01\x8e\x24\xb1\xa3\x38\x43\x0a\x1c\x54\x60\x0c\x28\xce\x90\x04\x07\x25\x18\x23\x8a\x33\xa4\xc1\x41\x0d\xc6\x84\xe2\x0c\x89\x70\x50\x84\x31\xa1\x38\x43\x2a\x1c\x54\x61\xcc\xb5\x01\x12\x8b\x2a\x8c\x25\x21\x50\x2a\x1c\x54\x61\xac\x31\x03\x12\x8b\x2a\x8c\xb5\x23\x50\x2a\x1c\x54\x61\x6c\x1d\x25\x94\x0a\x07\x55\x18\x7b\x46\xa0\x54\x38\xa8\xc2\xe4\x60\xf1\x21\x15\x0e\xaa\x30\x79\x8f\x40\xa9\x70\x50\x85\x29\x38\x94\x50\x2a\x1c\x63\x56\x40\x05\x81\x63\x36\x42\x0c\x8c\x30\xda\x90\x30\x07\x85\x99\x22\x8b\x23\x61\x0e\xaa\x30\x25\x16\x47\x2a\x1c\x54\x61\xca\x2c\x8e\x54\x38\xa8\xc2\x94\x59\x1c\xa9\x70\x58\xf6\xb7\x23\x15\x16\xc7\x72\x10\x14\xb8\xa3\xa0\x48\x88\x6b\x95\x8e\x54\xa5\xd5\x41\xad\xa6\x9a\x70\x68\xd2\xea\xa0\x56\x53\x8b\x58\x5e\x5a\x1d\x14\x66\x6a\xbd\x5e\xae\x53\xc2\x9c\x14\x66\xea\xdd\x03\x22\x6b\x52\x98\xd9\xe5\x74\xb9\x4e\x09\x73\x52\x98\xd9\xa3\x93\x4e\x09\x73\xfa\xf3\xbc\x1d\x39\x78\x4f\x68\x10\x62\x60\x08\xe1\x72\x9d\xd2\xea\xa4\x56\x73\x44\x55\xa7\xb4\x3a\xc3\x44\x60\x44\x55\x67\x98\x43\xd0\x60\xa0\x27\x34\x09\x71\xad\xc4\xe5\xa5\xe8\x19\x0b\xba\x67\x42\xfb\x9c\xb1\x70\x2d\x8a\x3c\x27\x54\x62\x4a\xe4\x33\x8e\x76\x3b\x72\x0e\x84\x46\x17\xd4\x01\x65\xae\x35\x4e\x41\x27\x21\x47\x88\x49\xd0\x1d\x39\xa3\xcf\x4e\xb9\x63\xa6\x9c\xd9\xaf\xc1\x4a\xb9\x08\x2a\xdc\x31\x13\xaa\x84\x98\x44\x49\x0c\x54\x12\xf4\x50\x2e\x0d\x90\x3c\x34\xe9\xa1\x5c\x31\x20\xa6\x3c\x34\xe9\xa1\xdc\x22\x2a\x21\x0f\xcd\xa2\x79\x10\xe3\xe5\x3a\x25\xf2\xd9\x13\xb2\xef\x7c\xc7\x9e\x4e\x41\xe7\xed\x28\xa1\x71\x3e\xff\x3c\x57\xff\xd7\xa8\x9d\x3d\xf1\xdd\x7a\x19\xb7\xa3\x38\x1e\x43\x2f\x2c\x30\xbd\x53\x1c\x14\x33\xe5\x9d\xd9\x31\xb7\x8a\xcb\xc8\xa7\x0f\x13\x44\x56\x14\xb4\x09\xd9\x04\xd4\xa0\x85\x6e\x8b\x10\x67\x96\x87\x5b\xa7\x4c\x37\x69\xba\xe2\x33\x5e\x44\xa6\x9b\x27\xa6\x71\x09\x1e\x49\x9c\x1c\xc7\x7a\x14\x0f\x8d\xce\x93\xf3\x78\xd2\x9a\x25\x3a\x94\x4e\xd6\x9c\xb4\x66\xa1\xe9\xa6\xac\x39\x87\x58\x18\x6f\x53\x3e\x9c\xf4\x61\x49\x18\x6f\x53\x3e\x9c\x53\xb3\x14\xe3\x6d\xca\x87\x93\x3e\x2c\x05\xe3\x6d\xca\x87\x93\x3e\x2c\x05\xe3\x6d\xca\x87\x93\x0e\x2b\x15\xe3\x6d\xca\x61\x93\x0e\x2b\x0d\xe3\x6d\xca\x61\x93\x0e\x2b\x1d\xe3\x6d\xca\x61\x93\x0e\xab\x0e\xe3\x6d\xc9\x61\x8b\x0e\xab\x0e\xe3\x6d\xc9\x61\x8b\x0e\xab\x1e\xe3\x6d\xc9\x61\x8b\x0e\xab\x01\x1a\x5d\x72\xd8\xa2\x9d\x6a\xc4\x78\x5b\xb2\xd3\xa2\x9d\x6a\x42\x33\x58\xb2\xd3\xa2\x51\x6a\xaa\x08\x94\x51\x56\xd4\x85\xa1\x64\x40\x62\x51\xdc\x15\x92\xb9\x2e\x89\x7b\x51\xb6\xb5\xc2\xad\x4b\xb2\x5d\x94\x6d\xad\x0d\x81\x92\xed\xd2\xe5\xa3\x61\x70\x2d\xc9\x76\x51\xb6\xb5\x43\xef\x4b\xb2\x5d\x94\x6d\x73\x18\x5c\x4b\xad\x7f\x15\x78\xba\x39\x0c\xae\x55\xe8\x69\x3d\x5a\x85\x72\x56\x99\x8b\x90\x6e\x32\xa8\xea\xd2\x80\x58\xb5\x76\x40\x9d\x50\x3d\x05\x9d\xb7\xa3\xb5\xd6\x09\x0d\x41\x08\x54\xbd\x34\x46\x16\xc7\x48\x0b\x68\xfd\x4b\x63\x64\x71\x8c\xb4\x88\xd6\xbf\x34\x46\x16\xc7\x48\x4b\x68\xfd\x4b\x0e\x5b\xb4\x42\xcb\x70\xc7\x92\x15\x16\x15\xdd\x32\x9a\xd4\x92\xa2\x17\x15\xdd\x4a\x41\x5e\x52\xf4\x3a\x17\xa0\x8a\x5e\xb3\xce\xb5\x05\x6d\xbe\x10\x96\x3f\x4d\x81\x5c\xab\x32\x7b\x29\x7a\x51\xd1\xad\xa1\xb1\x2c\x29\x7a\x8d\xb3\xf0\x1d\x23\xa1\x4a\x88\x81\xad\x83\x25\x91\x2f\x8a\xbc\x75\x0c\x88\x25\x91\x2f\x8a\xbc\x3b\x4c\xcf\x25\x91\x2f\x8a\xbc\xd3\x8f\x4b\x22\x5f\x6b\x0f\x40\x98\x9e\x6b\xed\x29\x68\x22\x90\x79\xad\xbd\x04\x21\x30\x10\x92\x15\x16\xad\xd0\x03\x06\xc4\x92\x15\x16\xad\xd0\x23\x06\xc4\x92\x15\x16\xad\xd0\x13\x06\xc4\x92\x15\x16\xad\xd0\x33\x3a\xb8\xc9\x0a\x46\x2b\xf4\xe2\x32\x20\xb2\x8c\x56\xe8\xa5\xb4\xcb\xd5\x64\x05\xa3\x15\x7a\x45\x9f\x37\x59\xc1\x68\x85\xde\x02\x02\x65\x05\xa3\x15\x7a\xc7\xa5\xdc\x64\x05\xa3\x15\x7a\x47\xd7\x35\x59\xc1\xa2\xee\xbc\x0e\x6d\xd7\xe4\x05\xa3\x17\xbc\xf3\x68\x6a\x26\x33\x58\x12\x2f\xa0\xf1\x9a\xdc\x60\x49\xbc\x80\xce\x6b\xb2\x83\x65\xf1\x22\xce\xc4\xe4\x07\xcb\xe2\x25\xf4\x3a\x93\x21\xac\x88\x97\xf1\xa5\x61\x72\x84\x15\xf1\x8a\x47\xac\xc4\x6e\xf7\x3b\x79\x75\x09\x98\x78\xba\x94\xbb\x5a\x10\x2b\x21\x9b\x6e\xe5\xae\xe1\x33\xc9\xa4\x64\x6b\x67\x00\xd6\x43\x22\x16\x89\x29\xb6\xe3\xea\x61\x92\xb7\xf5\x8a\xef\x22\xef\x58\xaa\x5e\x8b\x30\x5e\xfc\x5d\x45\xac\x34\x6f\xba\xc0\x7b\x07\x09\x9a\x44\x6f\xba\xc1\x7b\x5f\xb1\x9e\x54\x6f\xe7\xfd\xa3\x01\xa3\xc3\x24\x68\x1b\xf9\x04\x16\xd1\xc9\x6d\xe4\x41\x4c\xb1\x91\x07\x29\x95\xdb\xd8\x8e\x18\x74\x68\x63\xdf\x31\xaf\x9c\x0b\xb1\x20\x8c\xb1\x09\x42\x37\x69\xdf\xf4\x05\xe0\x13\xa4\x68\x12\xbf\xcd\x85\x4f\x00\x9f\xa1\x45\x9b\xb0\xe3\xfd\x81\x77\x8b\xc4\x36\x31\xad\x57\xf0\xcd\x64\x72\x89\x2d\xad\x57\x78\x46\xb2\x89\xad\xb3\x03\xab\x3c\xa3\x85\x2b\xce\xd5\x96\x62\x2b\xdc\x6a\x72\x85\x99\x62\x1b\xa5\x2c\x5b\x98\x19\x6b\xd0\xa8\x65\xb3\x21\x6c\xe0\xd3\x09\xd7\xb7\x5f\xcd\xea\x54\x7f\x3b\xaa\xcd\x30\x57\xaf\x66\xda\x8d\xed\xd5\xe4\x2e\xdb\xda\xad\xf3\xf4\x65\x2f\xdb\xfa\x28\x73\x38\xfd\x2d\x7f\x6d\x87\xfb\x8a\x0f\xde\x37\x60\xbc\xb0\xe8\x81\x37\xea\xc4\x2a\x31\x7d\xe3\x79\x9c\xe0\x96\x11\xb7\xc3\xb5\xcc\x07\xdf\x88\xf1\x5e\xa6\x07\x4e\xd0\x13\x9b\xc4\xb4\x2f\x6f\x79\x5b\x8e\xdd\xbe\x04\x62\xa8\xf8\xf6\x25\x0a\x3b\xf5\xe6\x9d\xd8\x10\xc6\x6a\x14\xee\xeb\x79\x0f\xd9\xf7\xef\xf8\xe8\x2b\x30\xe5\xe2\xb5\x47\xc4\x3c\xd9\xf2\xfb\x0e\xa5\x02\x4b\x11\xb1\xa1\x34\x61\x0d\x58\x85\x62\x77\x28\x9d\x98\xd6\x4b\x95\x3c\xad\x17\x26\xf3\x4b\xf8\x50\xd8\x61\x32\xbf\xa0\x3d\x32\x9c\xb2\xd5\x2d\x76\xac\x89\x58\x23\x06\xdb\xe0\x61\xca\x19\x35\x50\x07\xd9\xea\x20\xa1\x60\xfa\x6c\x75\x90\x9d\x0a\x6b\x5f\x53\x06\x56\x58\x7b\x75\x95\x50\x71\xc5\xdf\xea\x2a\x3b\x0d\xee\xd1\x58\x97\x34\xb2\xb0\xac\x5c\x0a\x31\xc5\xa2\x3b\xfb\xd0\x02\x79\x6c\xcf\x5b\x1d\x29\x74\x87\x7d\xd5\x91\xb6\x3a\x52\xe8\x0e\x35\x50\x47\xda\xf9\xce\xc3\x5d\x68\xab\x23\xed\xc2\x33\x8a\xae\xa0\x2e\x45\x67\xc4\x07\x62\x85\x25\x62\xfa\xb2\x77\xb8\xe1\x6e\x75\xae\xad\xce\x15\x3d\xcf\x5c\x9d\x6b\xab\x73\x45\x5e\xe7\xb6\x3a\xd7\x56\xe7\x8a\x01\xb7\x85\xad\xce\xb5\xd5\xb9\x62\xa4\x36\xd4\xb9\xb6\xba\x54\x4c\x3c\x5f\x75\xa9\xcd\xc6\xe4\x63\xe6\xf9\xf6\x5a\x85\x91\x97\x1b\x79\x8a\xed\x38\x3e\x1f\x33\xee\x53\xbb\xcf\x24\x2c\x89\x97\x89\x65\x61\xa8\x69\x2c\xac\x5f\x9f\x45\x18\xf7\xd0\x59\xf6\xa9\x3d\x96\x27\xa6\x7d\x57\x10\xa6\x58\x78\x50\x95\xdf\x18\x52\xbf\xb2\x30\xfe\xff\xf3\xf9\x7c\xf9\xe5\x97\xbd\xf9\xf5\xe5\xc5\x1e\x5f\xf9\x2b\x22\x7f\xc1\x3b\x96\xed\x87\x47\xfb\xe5\x17\xc9\xe7\xa7\x67\x44\xf1\xbf\x7f\x07\x00\x00\xff\xff\x9c\xfe\xe4\xde\xbd\x14\x00\x00"); -func _bbbg ()([]byte ,error ){return _dc (_cbdf ,"UniJISPro-UCS2-HW-V")};func _gfda ()([]byte ,error ){return _dc (_adeg ,"UniJIS2004-UTF8-V")};func _ebg ()([]byte ,error ){return _dc (_eggb ,"Adobe-KR-9")};var _bgc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4f\x8f\x23\xb7\x11\xc5\xef\xfa\x14\x3c\x3a\x07\x67\xf8\x9f\x2c\x40\x10\x60\xec\x66\x91\x71\xe0\x38\xf0\xc4\x49\x80\x20\x07\x76\x77\x71\x20\x20\x23\x09\x1a\xcd\x61\xbf\x7d\x50\xef\x69\x76\x62\x1f\x16\xdc\xf9\xf5\x63\xa9\x58\x7c\x5d\x64\x3f\x7c\x7a\xfc\xfc\x78\x3a\xde\xdc\xc3\xdf\xae\xe7\xf5\x49\x6f\x6e\x1e\x4f\xdb\x55\x5f\xcf\x6f\xd7\x55\xdd\xa2\xcf\xc7\xd3\x6e\x17\xa2\xdb\x8e\xeb\xed\xfd\x4f\x0c\xeb\xcb\xb8\xec\x76\x36\xff\xe9\xeb\xeb\x4d\x5f\x1e\x4f\xf3\xec\x12\x75\xdb\xdb\xe5\xae\x75\xee\xe1\x17\x7d\x3e\xbe\xde\xae\x5f\xdd\x77\x3f\x6c\xe7\x45\xff\xe0\x36\x9d\xc6\x7f\xbe\x6e\x7a\x3d\x9e\x9e\xdd\x77\x3f\x8e\xcb\x38\x85\x6f\x0f\x9e\xde\x2e\x97\xff\xea\x8b\x9e\x6e\x2e\x82\xe9\x69\xc3\xb8\x7b\xf8\xf4\xd3\xb8\xfc\x75\xbc\xa8\x7b\x10\xff\xf2\xfa\xfd\x2f\x7f\x79\xfa\xf1\xfb\x3f\xe3\x19\x1e\xfd\x43\xaf\xaf\xc7\xf3\xc9\x85\xf0\x47\xef\xeb\x07\xff\xfb\xd7\x8b\xba\x70\x8f\xf1\xeb\xe3\xe7\x9f\xe7\x7c\xd5\x9b\x93\xe2\xa9\xf9\xd7\xaf\x8f\x9f\xdd\xbf\x83\x0b\xde\xc5\x92\x72\xfa\xcf\x5d\xfa\xcf\x9f\xce\x9b\x3a\x8a\x76\x99\x4b\x5a\xcf\x9b\xbe\x5e\xc6\xaa\xd7\x71\x7a\xd6\x9d\x73\x7b\xef\x0f\xce\xb9\x7d\xf7\x07\xfb\xab\x87\xec\x0f\x6e\x2f\x5f\xbe\x7c\xc2\xdf\x3f\xf0\xe9\xe7\x2f\xf8\xeb\x4f\x1e\x4f\xbf\x7c\xb2\xa7\x7a\xda\x7e\x17\x6d\x17\xf8\x23\xa7\xf3\x6d\xd3\x49\x86\xf8\xfb\x30\x0f\x2e\xa6\x60\x73\xfe\xff\xe1\x2e\x78\x7f\xcf\xeb\xb8\xdd\xf5\xd1\xf4\x6d\xb3\x9f\x75\x0e\x93\xf6\x4d\x0d\xe9\x1d\x55\x43\xf7\x3c\x7b\x00\xae\x29\x19\xea\x44\x63\x35\x24\xd5\xd0\xd2\x81\x96\x79\x70\xae\x65\x4c\x5c\x89\x56\x05\x12\x43\xdb\x00\xd2\x6e\xa8\x60\xe2\x64\xac\xd9\x0c\x35\x4c\x9c\x2b\xd1\x0a\x64\x13\x63\x9e\x86\x62\xc1\xc4\xee\x0d\x55\x4c\x8c\x4d\x0c\x09\x50\x0f\x40\x32\x0e\xce\xf5\x60\xe1\xa3\x70\xe2\x0c\x86\x72\xdc\xed\x7b\xe2\x82\x12\x16\x24\xb1\x18\xe2\x82\x92\x54\x43\xbd\x1b\xe2\xc4\xb4\xd4\x83\x0b\x3e\x58\x5e\x69\x21\xda\x80\x92\x4d\xcc\x8c\x95\x2d\x97\xe0\x8b\xa5\x9a\x1b\x91\x85\x0f\x5e\xec\x17\x33\xc3\x67\x09\x07\x17\x82\x6f\x86\x18\x1e\x43\xcb\x58\x63\x1e\x54\xd9\xd0\x72\x0f\x40\x81\x28\x18\x12\xa2\x48\x14\x81\x90\xc4\x48\x44\xe9\xe0\x5a\xf1\x09\x28\x13\x65\xa8\x18\xbe\x10\x15\xa8\x90\xc4\xa8\x44\xd5\x50\xe4\xc4\x46\xd4\x0c\x05\x86\xef\x44\xdd\x50\x62\x12\x42\x24\x40\x0c\x3f\x88\x06\xb2\xf7\x40\x0b\xd1\x02\x84\x4a\x8c\x95\x68\x45\x5e\x19\x68\x23\xda\x80\x3a\x90\x12\x29\x52\xad\x40\xac\x97\x0d\xad\x78\xc4\x5a\x58\x2f\x1b\x5a\x09\x88\xb5\xb0\x5e\x36\xb4\x92\x90\xc4\xc2\x7a\xd9\xd0\x4a\xe4\x44\xd6\x6b\x41\xbd\x12\x7e\x71\x61\xbd\x6c\x68\xa5\x30\x16\xeb\xb5\xa0\x5e\x30\x40\x5e\x58\xaf\x85\xf5\x42\x5e\x0b\xeb\xb5\xb0\x5e\xa8\x04\x5f\x05\x0c\xad\x24\xc6\x62\xbd\x16\xd4\x2b\x33\x09\xd6\xcb\x86\x56\x3c\x93\x60\xbd\x6c\x68\x25\x62\x87\x16\xd6\xcb\x86\x56\x02\x7f\x91\xf5\xb2\xa1\x15\xba\x70\x61\xbd\x16\xd4\x2b\x1b\x6a\x34\x66\x2b\x50\x15\xa0\x82\x12\xb6\x8a\x7a\x75\xa0\x1a\x88\xc2\xc1\x75\x8f\x4a\xb4\x1a\x89\x50\xaf\x4e\x94\x88\x92\xa9\xb2\x07\xca\x44\xa8\x97\x10\x15\xa2\x02\x55\x04\xaa\x44\x28\x8e\x10\x75\xa2\x0e\x55\x06\x12\x22\x54\x42\x98\xd7\x42\xb4\x40\x95\x80\x56\x22\x2c\x48\x98\x97\x12\x29\x54\x0d\x88\x6b\x6c\xb6\x69\xd5\xdb\xa6\xb5\x46\x95\x0d\x3d\xc1\xe4\x8d\xef\x63\xeb\x09\x2a\xc4\xea\x5c\x90\x0d\xdd\xb3\x5e\x9d\x0b\xea\x66\xb9\x1a\x30\x51\x38\xd1\x06\xd7\x2a\x16\x24\x2c\xa1\x0d\x26\x03\x62\x09\x6d\x70\xad\x0a\x10\x4b\x28\x66\x80\x1a\xb1\x6c\x19\x44\x03\x2a\x24\x21\x5c\xb6\xd8\x6e\xb3\xfb\x76\xf6\x89\x6e\xbd\x30\x04\x34\x2b\xe1\xd6\x0a\x1a\x4c\x84\xe5\x84\x0b\x12\xa8\x22\xde\xb4\x41\xd5\x80\x2a\xe3\x75\x1f\x54\x0d\xa8\x72\xb3\x4d\x5b\xa8\x5a\xa0\x62\xed\x17\xaa\x16\xa8\x6a\xb1\xbc\x56\xaa\x56\xa8\x5a\xb7\x4a\xac\x54\xad\x50\xf5\x6c\xc6\xdc\xa8\xda\xa0\x12\x74\xf2\x8d\xaa\xcd\x54\xd1\xe3\x55\x50\xaa\xd4\x54\x31\xa0\x63\x2a\x55\x0a\x55\xc4\x2b\x3a\xa9\x9a\x50\x25\x6c\xed\xa4\x6a\x42\x95\x83\xdf\xed\x85\x87\xa4\x78\xa8\xf0\x2a\x88\xef\x44\x50\xc1\x26\x72\x3f\x68\x71\x80\xc5\x66\x06\x10\x1e\x60\x82\x13\x26\xb6\x5e\x77\x7b\x89\x54\x45\xa8\xc4\x5e\x77\x89\x54\x45\xa8\xa4\xe5\xdd\x5e\x78\x76\x08\xce\x8e\xe4\xad\xaf\x0a\xcf\x0e\x49\xa6\x4a\xc1\x3c\x21\x3c\x15\x04\x47\x40\x8a\xbd\xe1\x04\x7f\x3f\x77\x77\x2d\xfc\xfe\x24\x16\x1e\x10\x92\x11\x23\x15\x5b\x5b\x61\x8c\x82\x18\xb9\xd9\xda\x0a\x55\x05\x2a\xf4\x2d\xa9\x54\x55\xa8\x6a\xb5\xb5\x55\xaa\x2a\x54\xcd\x9a\x94\xb0\x19\x08\x5e\x81\xd4\x8b\xad\x8d\xaf\x80\x34\xa8\xc4\x9a\xa7\x74\xaa\x7a\x8b\x07\x97\xbd\x35\x75\xa1\xfb\x04\xee\xcb\xde\x5e\x73\xa1\xfb\x04\xee\xcb\xa1\xdb\x44\xba\x4f\xe0\xbe\x1c\x6d\xb3\x84\xee\x13\xb8\x2f\xa7\x66\x45\xa1\xfb\x04\xee\xcb\x19\x9b\x45\xf7\x09\xdc\x97\x4b\xb5\xf0\x74\x9f\xc0\x7d\xb9\x62\xb3\xe8\x3e\x81\xfb\x72\xcb\xb6\x6c\xba\x4f\xe0\xbe\xdc\xb1\x59\x74\x9f\xc0\x7d\x59\x92\x2d\x9b\xee\x13\xb8\x2f\x0b\x36\x8b\xee\x13\xb8\xaf\x04\x7b\x0f\x85\xee\x13\xb8\xaf\x84\x6e\xd9\xd3\x7d\x02\xf7\x95\x14\x2c\x7b\xba\x4f\xe0\xbe\x92\x6c\x3b\x70\x5a\x6f\xf3\x7e\x57\x4a\x56\x68\xa5\x21\x15\x86\x2c\xc5\x7b\x43\x9d\x08\x13\x8b\xed\x90\xd2\x90\x0a\x43\x96\x6a\x2d\x56\x69\x48\x85\x21\x4b\xb3\x1d\x52\x1a\x52\x61\xc8\xd2\x9b\x85\xa7\x21\x15\x86\x2c\x62\x3b\xa4\x34\xa4\xc2\x90\xd5\xd7\x6c\x88\x2a\x18\xb2\x06\x3b\x46\x94\x86\x54\x18\xb2\xc6\x12\x0d\x51\x05\xcb\xd5\x64\x07\xbd\xd2\x72\x0a\xcb\xd5\x6c\x7d\x5e\x69\x39\x85\xe5\x2a\xae\x16\x4a\xcb\x29\x2c\x57\x6b\xb4\xec\x69\x39\x85\xe5\x6a\xb5\x6b\x8a\xd2\x72\x0a\xcb\x55\x5c\xc5\x94\x96\x53\x58\xae\x76\xbb\xf2\x28\x2d\xa7\xdd\x54\xcd\x7b\xcb\xbe\x53\x05\xcb\x35\x5f\x2d\x7b\x5a\x4e\x61\xb9\x16\xec\x18\x51\x5a\x4e\x61\xb9\x16\xad\x5d\x2b\x2d\xa7\xb0\x5c\x4b\x76\x01\x51\x5a\x4e\x07\xef\x4a\x76\x8c\xe8\xc0\x5d\x49\x87\x5d\x8c\x7a\x34\xfb\x2a\x9d\xa3\x1b\x0f\x08\xeb\x48\x4a\xe7\xe8\x66\x37\x84\x9e\xad\x23\xe9\x86\x1b\x02\x87\x20\x92\x80\x0a\x90\x25\xd1\xb3\xf5\x07\xa5\xbf\x14\xfe\xea\xc5\xda\xa2\xd2\x5f\xaa\x6a\xaa\xea\x2d\xbc\xea\x04\x9a\x38\x04\xb1\x20\x9d\x42\x84\xdb\x2c\x0c\xa0\x73\x10\xd9\x44\xef\xcb\x6e\x3f\xb9\xc6\x39\xb2\xbc\x4f\x9c\x23\x0f\xa0\x82\xcb\x4c\x83\xaa\x64\xa2\xfc\x1e\x6b\x8e\x52\x88\xda\x47\x2c\xbb\x4b\xdf\x87\x56\x43\x07\x12\x22\x9c\x52\xd6\x62\xe7\x28\xf7\xf0\xe3\xfd\x5c\x9c\xa3\x2c\x44\xcb\xfb\xc1\x35\x47\x59\x81\x3e\x4a\x38\x59\xfb\x39\xd6\x69\xc8\x6e\x7a\x73\x6c\x44\x36\xb0\x84\x73\x6c\x01\xe8\xa3\x84\x93\x4d\x61\x2e\x2c\x21\xf2\x62\x53\x98\x68\x0a\xbd\xd8\xcd\x78\xb2\x29\xcc\x35\xdb\x0d\xa1\xf9\xfa\x9b\x16\x6b\xff\xb7\xcf\xce\x6f\x9f\x81\xeb\xdb\xf5\xaa\xa7\x1b\x3e\x3a\xf1\xa5\x67\x9f\x6a\xc7\x93\x7e\xfb\x80\xbd\x9c\x2f\x36\x0b\xff\xfe\x17\x00\x00\xff\xff\x0c\xbd\x28\xe3\xec\x0e\x00\x00"); -func _cac ()(*asset ,error ){_gbd ,_bcad :=_eec ();if _bcad !=nil {return nil ,_bcad ;};_ffa :=bindataFileInfo {_ag :"Adobe-Korea1-1",_bc :1845,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491379,0)};_gcaa :=&asset {_cd :_gbd ,_dce :_ffa };return _gcaa ,nil ; -};func _cde ()(*asset ,error ){_fead ,_fbag :=_dfbb ();if _fbag !=nil {return nil ,_fbag ;};_ggc :=bindataFileInfo {_ag :"Adobe-Japan1-2",_bc :1136,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491314,0)};_geec :=&asset {_cd :_fead ,_dce :_ggc };return _geec ,nil ; -};var _fdga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4b\x8b\x64\xb9\x11\x85\xf7\xf7\x57\x68\x39\x5e\xd8\xa5\x47\x3c\x24\xb8\x5c\x30\xdd\x03\xae\xc5\xcc\x18\xb7\xc7\x36\x18\x2f\xf2\xa1\x6c\x12\xdc\x99\x49\x56\xd6\xa2\xff\xbd\x89\x73\xb2\xdb\xcc\x2c\x8a\xa8\x3c\x84\x42\x8a\x4f\x11\x92\xee\xcb\x87\xd7\x8f\xaf\x97\xf3\x23\xbd\xfc\xf5\x7e\x3d\x7c\x9a\x8f\x74\x3a\x5f\x8e\xf7\xf9\x76\x7d\xbf\x1f\x66\xda\xcf\xcf\xe7\xcb\xb2\x94\x9a\x8e\xe7\xc3\xe3\xdb\x4f\x98\xc3\x97\xdd\x6d\x59\x62\xfc\xa7\xaf\x6f\x8f\xf9\xe5\xf5\x72\xba\xa6\x46\xbf\xe3\xfb\xed\xe9\x9b\xd2\xcb\xdf\xe6\xe7\xf3\xdb\xe3\xfe\x35\xfd\xf0\xe7\xe3\x75\x3f\xff\x90\x8e\xf3\x14\xfa\x2f\xf7\xe3\xbc\x9f\x2f\x9f\xd3\x0f\x1f\x7e\xfe\x54\xbe\xcb\x9f\xde\x6f\xb7\xff\xce\x2f\xf3\xf2\x48\x19\xda\xbc\x1c\x61\x97\x97\x0f\x3f\xed\x6e\x3f\xef\xbe\xcc\xf4\x12\x23\xfe\xf8\x17\xc8\x50\xff\x31\xef\x6f\xe7\xeb\x25\x95\xfc\xa7\x9c\xed\xff\xfa\xdf\xbf\xde\x66\x2a\xcf\xe1\xbf\xbe\x7e\xfc\xe5\x74\x7a\x9b\x8f\xe4\x99\xa1\x5f\xfe\xf5\xeb\xeb\xc7\xf4\xef\x92\x4a\x4e\x55\x5b\x97\xff\x3c\x5d\xff\xf9\xd3\xf5\x38\x9f\xf3\x2f\x85\xb9\x1c\xae\xc7\xf9\x76\xdb\x1d\xe6\x7d\x77\xf9\x3c\x97\x94\xd6\x5a\x6a\xd9\xd2\xea\x3f\xfa\x8f\x5b\x2c\xf3\x77\x1e\x4b\xc9\xf9\x39\xf4\x7c\xa4\xf4\x6d\x48\x2d\x3e\xb7\x34\xc6\xb2\xd6\x4a\xa1\x86\x50\x46\x5b\xd6\xda\xa8\x34\x99\x5b\xaa\xdd\x97\xb5\x0a\x15\x09\x9f\xd6\xc2\x47\xa9\xa8\x1d\xb6\x24\x35\x7c\xd4\x26\x14\xcf\x5b\xd2\x1c\x3e\x46\x1f\x6b\x33\x14\x5b\xd6\xea\x54\x60\x74\x28\x94\x4a\x45\xb6\xa4\x8d\x3e\x4a\x45\xc3\x87\x8a\x51\xb1\xf0\x19\x50\x9c\x8a\x6f\xc9\x72\x85\xd2\xa9\xf4\x2d\xa9\x64\x28\x83\xca\x21\x7c\x1a\x94\x23\x95\x53\xf8\x94\x50\x5a\x86\x12\xc6\xb2\x43\xe1\x0a\x1b\x56\x38\x3a\x24\x2e\x31\x8c\x65\x2a\x8d\x4a\xdb\x92\x15\x4c\xd6\x84\x4a\xa4\x21\x02\x85\x69\x84\xb1\xc2\xc9\x98\x46\x18\x1d\x60\xef\x8d\x79\x84\x51\x01\x8f\xc6\x3c\xda\x88\x61\xc8\xac\xed\xa8\xec\xc2\x07\x3c\xda\x9e\xca\x3e\x16\x94\x39\xff\x81\xd2\x21\x9c\x98\x08\x93\x0d\x63\x85\x2b\x9a\x54\xe6\x96\x0c\x9b\xe8\xed\x44\xe5\x84\x40\x98\x5f\x48\x44\x4a\x38\x61\x98\x30\xfd\x30\x2a\x48\x5f\x98\xbe\x58\xf8\x60\x45\xc2\x3c\x04\x79\x20\x33\x61\x1e\x12\x6b\x14\xe4\x21\x5c\xa2\x60\x3f\x58\x0e\xc2\x35\x86\x31\xa6\x26\x5c\x63\x18\x55\x64\x26\x5c\xa3\xc6\x16\x71\x7a\xe5\x16\x69\xec\x87\x22\xb4\x72\x41\x1a\x25\xa3\x60\xad\x64\xad\x3d\x7c\x90\x86\xb2\x1c\x34\x30\x3e\x15\x62\x54\x62\x04\x34\xe5\x1a\xf5\xb4\x25\xaf\x98\xde\xc8\x23\x8c\x57\x10\x32\x4e\x1f\x46\x15\x8b\x36\x12\x32\x0d\x1f\x2a\x9c\x3e\x8c\x2a\x22\x1b\x09\xd9\x71\x4b\xde\x18\x99\xa9\x86\xb1\xfc\x1c\xc6\x5c\xbd\x86\x13\x86\x39\x33\x0b\x63\xb9\x22\x7d\x67\xa9\x79\xdf\x92\xb3\x8a\x9d\xa9\x85\xb1\x5c\x81\xdf\x59\x34\x1e\xd3\x91\xac\x73\xba\x30\x1d\xf9\x77\x36\x63\x8f\xb6\xea\xaa\x50\x9c\x8a\x6f\xa9\x5b\x85\xd2\xa9\xf4\x50\x0c\xca\xa0\x02\x8e\x1d\x0a\x38\xf6\xe8\x8f\x6e\xb1\xea\xce\xfe\x80\xb1\xcc\x61\x6c\x90\x1e\xc5\xdf\x1d\x93\xb1\xf6\x7b\xd4\x75\xc9\xa8\xd0\xde\x9e\x91\x62\x47\x0a\x17\xc0\xc2\xee\x51\xb4\x25\x17\xcc\xc7\xaa\xed\x51\x85\x25\x57\x78\x09\xa3\x47\x6d\x15\x12\xe8\xac\x2d\x18\x2b\xd6\x20\x4d\x4a\x13\x12\x62\xb1\xba\x7a\xd4\x52\xc9\x38\x5b\x3a\x8b\x09\xc6\x8a\x51\x62\xf8\x28\xa1\x52\x3b\x06\xea\x8e\xd2\x2e\x7a\x80\x09\xb1\x9e\x7a\x54\x43\xa9\x03\x09\x19\x63\x85\x51\xcb\x50\x18\x2a\x4c\x69\x28\xba\x6e\x4a\xc9\x43\x42\xcf\x77\x23\x76\xdb\x6f\xa9\x58\x07\x40\x23\x88\x30\x6a\x05\x0a\x33\x8c\x03\xb7\x18\x4e\xd3\xee\xdc\x52\xdf\x6f\xa9\x66\x8e\x73\x8e\x8b\x7d\xaf\xec\xcd\xc1\x8d\x87\x71\x6f\x05\x52\xa5\x54\xc3\x0b\x4d\x35\x6a\xa3\xd4\xe0\x45\x49\x28\x29\xbc\x1a\x24\xa3\xb4\xdf\x52\xcb\xc2\x58\x07\x4a\x71\x59\x68\x51\x48\x27\x4a\xa7\x2d\x8d\x8c\xa6\x19\x3c\x7a\x61\x06\x4b\x74\xf0\xec\x1d\x51\x36\x6d\x60\xcb\x06\xcb\x66\xc4\x29\x2a\x8d\xeb\xe2\x31\x0a\x23\x8e\x43\x73\xb0\x94\x46\x9c\x9d\x9a\x85\x5e\x83\x12\xb6\x2c\x87\x9b\xf0\xa6\x93\x1a\x67\x9b\x46\x75\x09\xef\x35\xc1\xbd\x86\xfb\x48\x78\xaf\x89\x86\x62\x7d\xe0\x56\xfd\x76\x79\x2e\x6a\xbf\xbf\x4e\x85\x77\x9c\x58\xf8\x7b\x6f\xcb\x2a\xbc\xe3\x84\x8d\xe6\xbe\xac\xc2\x46\x13\x6c\xc1\xf0\xb2\xac\xc2\x1d\x90\x81\x3b\x37\x5b\x4c\xbc\xa3\xb4\x83\x54\x74\x2c\xab\xec\x29\xed\x21\xd5\xc0\x2d\x07\x4a\x07\x48\x2d\x0e\x7a\x39\x52\x3a\x42\x92\xd8\x01\x99\x94\x26\x24\x6d\x11\xfe\x44\xe9\x04\xc9\xa2\x43\x34\x43\xd2\x0c\xc9\x6b\x5b\x56\xe5\xe3\x40\xf1\x38\x28\xbd\xf8\xb2\x2a\xa1\xe9\xf3\x79\x10\x17\x99\xf2\x7d\xa0\x0d\x25\x85\x6b\x43\x09\x52\x85\x52\xdc\x6d\x4a\x92\x0a\x92\x15\x0f\x0b\x25\x2c\x05\xac\x8a\x97\x85\x92\x96\x82\x56\x6d\x3d\xc2\x13\x97\xb2\x62\x25\x5a\x4b\xc9\x4b\x07\x8b\x38\x7a\x52\xc9\x4b\xc1\xab\x5a\x14\x8b\x92\x97\x82\x57\xf5\x38\x76\x95\xbc\x14\xbc\x6a\x8f\xab\x41\xc9\x4b\xc1\xab\x8e\x28\x0c\x25\x2f\x05\xaf\x86\x53\x40\xc9\x4b\xc1\xab\x95\xb8\x2d\x8d\xbc\x0c\xbc\x5a\x8d\x37\x8f\x91\x97\x15\xbe\x8b\x6a\x59\x56\x23\x2f\x03\xaf\x26\x51\xfd\x46\x5e\x06\x5e\x4d\xf3\x58\x56\x23\x2f\xe3\x83\x0a\xaf\x13\x23\x2f\x53\x4a\x23\xc2\x93\x97\x81\x57\xf3\x11\xe1\xc9\xcb\xc0\xab\xf5\x1e\xe1\xc9\xcb\xc0\xab\x0d\x8f\xf0\xe4\x65\xe0\x25\xd9\x23\x3c\x79\x19\x78\x49\x89\x63\xda\xc8\xcb\xc0\x4b\x6a\x9c\x29\x46\x5e\x06\x5e\xd2\xe2\x52\x30\xf2\x32\xf0\x12\x89\x03\xc4\xc8\xcb\xc0\x4b\x54\x22\x3c\x79\x19\x78\x89\xc5\xdd\xe5\xe4\xe5\xe0\x25\x38\x66\xfc\xf9\x5e\x05\x2f\xe9\x71\x9d\x3a\x79\x39\x78\xc9\x28\x63\x59\x9d\xbc\x1c\xbc\x34\x97\xb6\xac\x4e\x5e\xce\x46\x2d\x71\x6c\x3a\x79\x39\x78\x69\xcd\x11\x9e\xbc\xdc\x28\x45\x3f\x3b\x79\x39\x78\x69\xeb\x11\x9e\xbc\x1c\xbc\x54\xa2\x67\x9d\xbc\x1c\xbc\x54\xa3\x69\x9d\xbc\x1c\xbc\xd4\xa2\x6b\x9d\xbc\x1c\xbc\xd4\xa3\x6b\x9d\xbc\x1c\xbc\xb4\x47\xd7\x3a\x79\xf9\x31\x5e\x3e\x3a\xb4\xfd\xe6\x08\x89\xff\xe3\xbb\xe5\xfb\x97\xc4\xe1\xfd\x7e\x9f\x97\x07\xbe\x5a\xf0\xc5\x10\x4f\xfe\xf3\x65\x7e\xff\x02\xba\x5d\x6f\x31\x0a\x7f\xff\x0b\x00\x00\xff\xff\x1d\xfa\x75\xc1\x2d\x0d\x00\x00"); -var _gagb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xd2\xcd\x8a\xdb\x30\x10\x07\xf0\xbb\x9f\x62\x8e\xdb\x43\x6a\xc9\xae\x1d\x19\x96\x40\x71\x0e\x31\xcb\xb6\xa5\xe9\xee\x16\x4a\x0f\xfa\x18\x07\x41\x2d\x09\xd9\x3e\xe4\xed\x8b\x46\xae\xcb\x1e\xc2\x24\xbf\xf1\xfc\x23\x4b\x2a\xfb\xe1\x3c\x38\xbb\x40\xf9\x2d\x7a\x7d\xc5\x05\x46\xeb\x4c\xc4\xd9\xaf\x51\x23\x28\xbc\x59\x57\x14\xbc\x02\x63\xf5\xf2\xef\x27\x15\x3d\xc9\x50\x14\xe5\xd3\xb5\x9f\xe6\xc3\xcb\xa5\x3f\x5c\xde\x0e\x17\x58\x67\xdc\x1a\xfd\x70\xbe\xde\xe7\x05\xa7\xc1\x8d\x1e\xea\x1c\x60\xd6\xb0\x85\x00\x94\xdf\xf1\x66\xe7\x25\xde\xe1\xe1\xb3\xf1\x0a\x3f\x80\xc1\x31\xf9\xd7\x68\x30\x5a\x77\x83\x87\x27\x1f\x51\xf2\xbd\x71\x5d\x43\xf8\x83\x13\xba\x05\x38\x19\x3a\x43\xb5\x28\xfb\x67\x19\xbe\xc8\x09\xe1\xfd\x82\x5e\xa9\x4d\xdd\x57\x8c\xb3\xf5\x0e\x38\xfb\xc8\x58\xfb\xdf\x7f\xdc\x03\x6e\x71\x45\xf9\xf3\x65\x38\xc3\x2f\x0e\x9c\x41\xd5\x7c\xe2\xc7\xdf\x9b\xbf\x3d\x7b\xb3\x3f\xc5\xdb\xfc\x0e\xda\x9a\x28\xdd\x0d\x8b\x47\xc9\x65\x75\x82\x54\xea\x13\x08\xd6\xb4\x44\x4d\xa6\x86\x48\x10\xb5\x99\xda\x13\x88\xba\x62\x44\x5d\x26\x45\x4f\x75\x44\x26\x93\x49\xd4\x56\x89\x54\x8e\x57\x99\xea\x44\xa8\x88\x90\x06\x8f\x4d\xf1\x28\x6b\xc9\x13\x51\x11\xec\xd8\x12\x89\x4c\x1d\xd1\x91\x48\x67\xd2\x44\x1d\x11\x66\xc2\x44\x22\xad\xab\x56\x92\x48\x8d\x44\x3c\x91\xa1\x7f\xa4\x22\x98\xa0\x2c\x63\x32\xd1\xba\x84\x20\x1a\x33\xe5\x41\x8a\x1f\xf3\xe0\x48\xf1\x1d\x4b\xc7\xb6\xef\x5d\xfa\x9e\x2e\xcc\x7e\x80\x7a\x8d\x11\xdd\x42\xd7\x85\x0e\x28\x6d\xba\x75\xb8\xdf\xc9\xe0\x43\x9a\xa2\xcf\xdf\x00\x00\x00\xff\xff\xc4\x43\xb0\x3f\xbf\x02\x00\x00"); -func _gggf ()([]byte ,error ){return _dc (_edaae ,"RKSJ-H")};func _afea ()([]byte ,error ){return _dc (_dfed ,"UniKS-UTF16-V")};var _ggbea =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x4b\xeb\x6f\x4b\x92\xdf\x07\xcf\xeb\x55\xec\xa1\x9e\x81\x9e\x5e\x2b\x2f\x11\x99\xd0\x6c\xb0\xd5\x2e\xdc\x08\xd9\xc6\x2d\xd9\x06\xe3\xc1\xba\xb6\x0b\xdc\x55\x45\x75\x69\xa0\x77\x6f\xf2\xf3\x59\xa7\x64\x8c\x61\x9f\xc9\xc9\x9d\xff\xfc\xe5\xca\x6b\x64\x5c\xbe\x11\xf1\x77\xff\xee\x1f\xff\xe1\x1f\xff\xf8\x87\xbf\xfe\xf8\xbb\xff\xe9\x2f\x7f\xba\xfe\xe9\xf9\xeb\x8f\xf7\x0f\x7f\xbc\xff\xf2\xfc\xeb\x9f\xfe\xf3\x5f\xae\xe7\xc7\xf9\xfc\xf3\x1f\xfe\xf8\xbb\xdf\xed\xe5\xc7\xfd\x87\xeb\xaf\xbf\xfd\x93\xff\x5d\xff\x72\xfc\xf9\x77\xbf\x5b\xbf\xff\xa7\xff\xf2\xaf\x7f\x7d\xfe\xe5\x1f\xff\xf8\xfe\xe9\x47\xb5\xdd\xfd\x9f\xff\xfc\xb5\xfd\xf1\xe3\xef\xfe\xe7\xe7\x9f\xff\xf0\xaf\x7f\xfd\xcb\x7f\xf9\xf1\x6f\xfe\x9b\xfb\x4f\xe7\xf3\xff\xfb\x71\x3f\xef\xaa\xff\x1f\xff\x72\x3f\x7f\xf9\xc3\x1f\xff\xf9\xc7\xbf\xf9\xf7\x7f\xfa\xcb\x73\xec\x7f\xfb\xc3\x3f\xfd\xe7\x3f\xff\xf9\xff\x7a\xfe\xe5\xf9\xe3\x5f\x7f\xec\xd4\x3d\x7f\xbc\xf9\xff\xef\xfe\xee\xdf\xfd\x87\xe3\xcf\xff\xc3\xf1\x2f\xcf\x8f\xbf\xfb\x4f\x7f\xfc\xc3\xbf\xff\xa7\x7f\xfb\x9f\xfe\xe3\xef\xf7\xf8\xb7\xff\x3d\x7f\xe5\x8f\xff\xcb\xf3\x97\x7f\xfd\xc3\x9f\xfe\xf8\x63\xff\xff\x6f\xdb\xf8\xaf\xd5\xff\xf1\xbf\xfc\xf9\xf9\x3a\xfb\xdd\xdf\xfd\x6f\xff\xe9\x1f\xff\xe1\xc7\xff\xbe\xff\xd8\xb7\x1f\xa5\xf7\xd6\xfe\x8f\xaf\xfe\x7f\xfd\x0f\x7f\xba\x9f\x1f\x9b\xff\xaa\x4e\xe0\xfa\xd3\xfd\xfc\xeb\x9f\x8f\xeb\xf9\xcb\xf1\xc7\x7f\x7e\x7e\xf7\xe3\xc7\xdf\x6f\xdb\xb6\xfd\xfc\xb1\xfe\xfb\xfb\x7f\xc8\xdf\xff\xfe\xe7\xaa\xfb\x87\xb1\x6d\xff\xf0\xef\x56\xfd\xdf\xff\xc3\x7f\xfb\xfb\xdf\xff\xc3\xef\xbf\xfa\xff\xee\xbf\xb6\xfd\x3d\x75\xcf\x1f\xef\xff\x57\x8f\xbf\xdb\xfd\xd0\x1f\xff\xf4\xd7\xfb\x79\xad\xfb\xbe\xf1\xf7\xdb\xb6\xbf\x3f\x7f\xec\xeb\x57\xff\xcf\x3f\xff\x6e\xdf\xb6\x6f\x74\x7f\xb8\xaf\xff\xf3\xf8\xcb\xfa\xc1\xb1\xad\x96\xab\xb0\xff\xfc\x51\xb6\x41\xb1\xfd\xfc\x51\xf6\x46\x31\x7f\xfe\xd8\x7b\xa7\x38\x7e\xfe\xd8\xb7\xa4\x38\x7f\xfe\x98\x36\x3d\x7e\xfe\x88\xb0\x78\xfe\xfc\xb1\x67\xac\xe2\xb9\x3a\xad\xd4\x9e\xfb\x2a\x6e\x14\xdb\xcf\x1f\xfb\x9c\x14\xe3\xe7\x8f\xd2\xf8\xc2\xb9\xbe\xb0\x59\x1c\x6b\x08\xf6\x30\x7f\xfe\x18\xad\x50\x5c\x9f\x48\x86\x70\xf2\x09\x86\x70\x5e\x3f\x7f\x64\x67\xe4\xe7\xfd\xf3\x47\x36\xbf\xf6\xac\x5a\x7f\xf6\xae\xce\xf8\xda\x15\x6b\x90\xf4\x7b\x6f\xab\x48\x0f\xf7\xfa\x70\xa5\x87\x7b\xac\x4f\x54\x8a\xcf\x2a\xda\xf6\xfd\xf9\x23\x9d\xdb\x13\xab\x5f\x7e\xf6\x6e\xab\x48\xbf\x2f\x3d\xf0\xb5\x77\xac\xb6\xfc\xec\x5d\x63\x88\xd5\x60\xdf\xf7\xd5\x76\xf5\xb0\x17\xc6\x40\x6d\xc9\xd5\x60\x2d\xc9\x5e\x57\x83\xd8\x29\x96\xf5\x61\x6b\xeb\xaa\x2d\x14\xe9\xb7\x52\x7c\x57\x03\xda\xb6\x35\x86\x68\x14\xf7\x55\x4b\xdb\x56\x56\x6d\xa7\x38\x7f\xfe\xc8\xaf\x96\xe5\x63\x0c\xed\x5c\xb5\xf4\xd0\xf9\x1a\x3d\x74\xbe\xb6\xe6\xb6\xc7\x1a\x64\x5a\x5c\x83\x64\x38\x65\x2d\xf5\x28\xec\x40\xb9\x72\xad\xea\xea\xa2\xdc\xec\x56\xa1\x38\x57\x91\x06\xf7\xb1\x8a\x8d\xe2\xb9\x8a\x49\xf1\x5a\x45\x7a\xbb\xef\x55\x5c\x33\x6a\xdb\x3a\x1b\x5b\x59\xab\xd6\x3a\xe5\xb5\xae\x65\xdb\xb7\x9f\x3f\x66\x52\x8a\x9f\x3f\xf6\x7d\xa7\x78\xae\x51\xac\x43\x55\x38\xde\xa3\x54\x9a\x94\xf2\xf3\xc7\x88\x8d\x72\xdd\xd6\xc1\x0d\x8a\xed\xe7\x8f\xd1\x47\xa1\xdc\x7f\xfe\x98\xb5\x58\x1f\x94\x1b\xe5\x75\x9c\xba\xd5\x6b\x8e\x2c\x74\xd9\xd6\x3a\x8e\x3e\x19\x4a\xae\x6e\x5a\xa7\xc8\x32\x34\x06\x90\x6b\x00\x8d\x5f\x72\x17\x56\x69\xdf\xea\xcf\x1f\x7b\xdb\x29\xae\x05\xd9\xd7\xcf\xf6\xbd\xfe\xfc\xd1\xe7\x46\x71\x9d\xfa\x75\x1c\xca\x5e\xd6\x6d\xe3\x73\xfb\x9a\x40\x09\x1a\x70\x48\x9a\xb5\x6b\x6c\xeb\x02\x94\x7d\x96\x75\xea\x69\x30\xfb\xba\x37\x49\x91\xce\xac\x5d\x9b\xc2\xc0\xf6\xb9\x36\xa5\x33\x86\xb9\xc6\xd0\xd6\x2c\xf6\x75\x1f\xc7\x08\x5a\xac\x0b\x39\x46\x30\xb6\xb3\x50\x6e\x94\x2b\x65\xdb\x37\xca\x7c\x87\xdd\x1f\x83\x36\x17\xfd\x0c\x7e\x7b\xdd\xab\xcc\x62\xef\xd7\x4b\x99\xfa\x9b\x36\x7b\x83\x66\x7d\x74\xe6\xff\x83\xf2\x94\xfd\x66\x20\x9d\x8e\xef\x35\xc5\xe9\xef\x19\x47\xb7\x0c\xc5\xe0\x13\xcf\x3a\x13\xbb\xeb\xf8\xec\x94\x59\x9c\xa7\x50\x66\xc6\x4f\xa5\xcc\xfa\xad\x1b\x3b\xf7\xc9\x94\x9f\xfc\xf9\x63\x72\xfc\xca\xfe\x0c\xea\x99\xe6\x33\xa9\x5f\xbf\x2d\x8b\x70\xee\x1c\xba\xb2\xad\xc1\x74\x6b\xd7\x96\xd2\x49\xd9\x62\x9d\x10\xe6\x58\x36\xa8\x62\xa1\xb8\xa8\x22\xab\x53\xd6\xa6\x8f\x64\xc5\xcb\xb6\xb6\x6f\xd8\x98\xa3\xc5\x4e\x95\x6d\x11\xa5\x7d\x0d\xb0\x2c\xda\x50\x76\xfa\x58\x47\x64\x24\xe7\xb3\xec\xc7\xda\x6c\xbe\xb8\xdf\xab\x0f\x7e\xb7\x3f\x8b\xd2\xd8\xe0\x65\x1c\x8c\xb4\xac\x41\xb3\xf1\x85\x6b\x90\xd5\xf2\x5c\xa3\x66\x02\x65\x75\xc7\xaa\x95\xf2\xac\x0f\x52\xbb\x2e\xc7\xce\xf5\x29\xeb\x6e\xec\xc3\xda\x75\xa2\x76\xda\xd6\xfc\xf9\x63\xd4\x62\xf5\x1a\x46\x32\xab\xb6\x06\xda\x59\xc8\xd2\xfa\xba\x02\xd3\xfa\x41\x3d\xcd\xfb\xc6\x40\xa8\x5f\x97\x7a\x64\x61\xbe\x9d\x55\x65\xa1\xba\xf3\x65\xee\xfd\x60\x75\x68\x12\x3c\x1b\x16\x17\x39\xf8\x6a\x9d\x19\xbf\x4c\x9e\x05\xa7\x36\x1a\xcb\xcd\x8c\x47\xa7\xcc\x8c\xc6\xea\xb1\x0d\x16\x6b\x9c\x94\x69\x73\xf0\x55\xae\x54\x39\xa0\x0e\x1b\xfd\x1f\x6b\x05\xdc\xb5\xe7\x61\xda\xcc\xef\x59\x4f\xe8\x7a\x8c\x4a\x75\xeb\x19\x7b\xdd\x99\xc6\x46\x91\x01\xac\x17\xa4\xf4\x75\x7c\xfa\x3e\x29\xee\x3f\x7f\xf4\xf5\xe2\x95\xbe\x4e\x52\x2f\x16\x17\x19\xf8\xda\x5e\xab\xd6\xe2\xfd\xf3\x47\x87\x22\xf4\xed\x59\xc5\xa4\xf8\xae\xb6\x6b\xa0\x7d\x91\xc2\x5e\x2c\xae\x7e\xbb\xc5\xd5\x2f\x27\xb4\x43\x5e\x58\xb3\xbe\xc6\xd3\xa1\x6c\x7d\xef\xab\x41\x50\x8c\x55\xec\x14\x73\xb5\xb5\x38\x56\x5b\x7f\x36\x57\x03\x7f\x76\xac\xa2\xb5\xe7\x6a\x6b\x2d\xe3\xf5\x67\x6b\xbc\xd0\xbd\xbe\xce\x5e\x87\xda\xf5\xc2\x18\xac\x65\x0c\xcc\xa2\xac\x31\xb0\x3d\xbd\xac\xaf\x41\xd7\x7a\xa1\x5f\x6b\xe9\xd7\x9f\xad\x19\xb3\x35\xbd\xd2\x2f\x3d\x54\xfa\xb5\x48\xbf\xfc\x6c\x9d\xcd\xde\x18\x59\xa5\x5f\x56\xbd\xd2\xaf\x45\xfa\xb5\x48\xbf\xfd\x57\xb4\xa8\x37\x16\x94\x8d\x5a\x8f\x64\x6f\x14\x17\xe1\x2d\xee\x03\x6c\x12\x44\xb3\x2f\x46\x69\x87\x66\xf6\x75\xa4\x8a\x5f\x3a\xd6\xe5\x71\xac\x8b\x67\x2a\x2e\xc7\xe2\x99\x8a\x2b\xbe\xde\x09\x9f\xaf\x0e\x09\x4e\x5b\x2c\x12\xbc\x43\x69\xfb\xa2\xc0\x7b\x58\xcb\x79\xe6\xee\x77\x78\x25\x0f\xd1\xe2\x95\x8a\xa7\x0c\x06\x29\xb9\xb8\x7d\x91\xe8\x3d\xac\x5e\x97\x35\xfc\x0a\x84\x82\x8b\xdb\x2f\x1e\x46\xaa\x2f\xe8\x0e\x1f\xbc\xb8\x11\xbc\x91\x7d\xf1\x48\x3b\x0f\x52\x5f\x6f\xfc\x1e\xd6\xae\xf1\xbb\xec\xd7\x1a\xbf\x3b\x7b\x71\x67\x87\x65\xde\x50\x3f\xb2\x08\x5d\xb8\x07\xd7\x22\x58\xc1\xe8\xd6\xe3\xb0\xf3\xbe\xf5\x87\x8b\x94\xac\xc7\xba\x5f\x23\x38\xb9\xb1\xad\x2b\xc8\x35\x88\x75\xd7\x76\xae\x41\xac\x1b\x51\x38\x61\x01\xdd\x64\x53\x62\x9d\xc6\xc2\x51\x89\x75\x1a\x67\x29\x96\x69\x4c\x6f\x8b\x42\xce\xc2\xe1\x8e\xc2\x57\xd8\xad\x68\x50\x4b\xba\x5e\xfb\xbd\x73\x8e\x23\xd8\x43\x8b\x8b\xef\xe5\x62\x46\xac\x87\x96\xbb\x14\x8b\x13\x2a\x1c\xff\x08\xb6\x73\x52\x5c\xc3\xe8\xd6\x2e\x8e\x86\x8b\x19\xf1\xc2\x3a\xac\xdf\xe5\xba\x78\x23\xb8\xf2\xb9\x2e\xd6\x08\x88\x42\x2e\x7a\x3a\x62\xa3\x4d\xb7\xcd\x1a\xd3\xbb\x48\x48\x34\x16\xea\xdd\xda\xcf\x1f\x51\x87\x65\x98\x02\x1e\x8d\x77\xbd\x36\xd1\x9a\xe5\xc5\xd8\xb5\xf4\xb7\x8b\xb3\x93\x18\xbf\x8b\x4e\xb4\x02\xbf\xf0\x2e\x42\xd1\x1a\x2b\xfb\x42\x1e\xf6\xc1\x6f\xa1\x04\x30\x88\xe5\x85\x14\x6c\xf6\xb3\x16\x37\x7c\x11\xdf\xb5\xba\x75\x7e\xe5\xc5\x0a\x37\x28\xce\xcb\xc5\x77\xea\x2f\x37\xbf\x41\x47\xdf\x75\xf5\x5b\xe9\x96\xfb\xcf\x1f\xcd\x63\xf1\xca\xd4\x40\x83\xdf\x45\x08\x52\x06\xe6\x2d\xd0\x1d\xd6\xe1\x85\x2a\xc4\xb4\xfe\x86\x7e\xda\xff\xfb\xf3\x47\x4d\xe8\xfd\xbb\x08\x43\xfb\xc6\xb9\xf8\xe6\xea\x1a\xbe\x8b\x71\xae\x6d\xd8\x66\xac\x31\x87\xf5\x8b\x0c\xe4\x57\x5e\x73\x19\x5f\xfb\xc5\x9f\x8f\x8d\xf1\x40\x1f\xba\xeb\xbc\x8e\x47\x4c\xe7\xb8\xce\x47\x1b\xcd\xfa\xfa\xf3\x47\xab\x50\x99\xb7\xad\x39\x6e\xdc\x82\x77\x3d\x80\x6d\x76\xdb\xc4\x6a\xbf\xdb\x26\xd9\x47\xbe\xb5\x1e\xc6\xd8\x39\x3c\xef\xe2\xc9\xa3\x38\xce\xc5\x94\xb7\x74\x4d\x16\xc1\x19\xab\xcf\x5f\x10\xa9\xb7\x5d\x0c\x30\x28\xbf\xeb\x83\x1c\xfd\xb7\xfb\xf6\x50\xbf\x5e\xdc\x96\x69\xb9\xb0\xc9\x0c\xa4\x37\x26\xca\xc0\x7b\x5f\x0b\x10\x96\xd7\xe6\x0c\x37\xb0\xaf\x43\xb1\x43\xce\xde\xbe\x36\x6a\x86\xfd\x1f\x08\x55\x0c\xbc\xaf\x8d\x92\x64\xbc\x9d\xc3\x02\xc3\xf0\xf6\xb5\xc0\xde\xfd\xb7\xaf\x05\xce\x66\xfb\x25\xb4\x6c\x4e\x7a\x3d\xef\x75\xf0\xa4\xbe\xeb\x7d\x8f\x1d\x4e\xe2\x5d\x0f\x7c\xfd\xfa\x0f\x49\xbe\xf5\xeb\x12\xec\x83\x3e\xd7\x7d\x0c\xef\xf1\xbb\xa4\x94\x0c\xbf\x1b\x73\x6d\x02\x2c\xdf\x1b\x07\x72\x95\xf5\xe7\x5a\x07\x0f\xe9\xba\xaa\xed\x3b\x44\xeb\xae\xb6\xfc\xc6\xb3\x5e\xdc\xdc\xec\x9f\x87\xc2\x4b\x96\x6b\x3d\xd3\xfe\x73\xc9\x54\xc3\xf1\xe4\x12\x94\xbe\x3e\x97\x5c\xd0\xc2\xc3\x9e\x6b\x6c\xd3\xef\x26\x07\x21\xac\x5f\x17\x0b\xf9\xb0\xbc\xb9\x5e\xd6\xe1\x1e\xe5\xc9\xba\xb1\xf9\x4b\xa8\x68\x32\x0e\x6f\xde\xeb\xe0\x78\xb8\x96\x80\x11\x0d\xca\xfb\x8e\x75\x30\x6b\x58\x5e\xeb\x56\xa1\x8f\xef\x60\x7f\x3d\x98\xa3\xfe\xfc\x11\x7d\xe3\x5b\x8b\x31\x8a\xe9\xfe\x2e\xc6\xa8\x4e\x08\xcf\x3b\x82\xc7\x90\x31\x8c\x25\xde\x49\x72\xdf\xb1\x0e\xe9\xf0\x30\x8e\xb9\x2e\x93\xe3\x5c\x8c\x54\xff\xed\xbb\x8b\xc0\xf8\x16\xbe\x83\xfd\xfd\xfa\x79\x11\x13\x19\xc3\x84\x80\x7d\xe5\xb5\xa7\xc1\x2b\xfd\xce\xba\xfa\xf4\x1c\xce\x75\x0e\xa7\x7b\xbd\x84\x99\xfa\x11\xa1\x25\xcd\xb4\xea\xda\x4e\x88\x93\xeb\xb3\x84\x98\xec\xbb\x6d\xd0\x35\xf0\x6c\xbe\x73\xad\xe1\x98\xd6\xaf\x73\x38\x9c\xe3\x5c\xc4\xe3\xdb\xa3\xb9\xc6\xb9\xb9\x47\xf3\xa5\x9e\xdf\xae\xb7\x3c\x37\xc7\x79\x14\x08\xad\xe5\xca\xda\xd2\xe7\x62\x0a\x5b\xc0\xff\xbc\xeb\x69\x6f\x68\x0a\xca\xbb\xde\xf6\xe8\xae\xc9\x7a\xdc\x9b\x52\xe0\xbb\x5e\xf7\xee\xe3\xf2\x1e\xdc\x0b\xf7\xf1\xb8\xd7\xba\x79\xbf\x8e\x07\x5e\x8e\x71\x1e\xeb\xfe\xa6\xeb\xb3\xa4\xb3\x4c\x5e\xc2\xf7\x64\x7f\x91\x66\xdf\x93\xf1\x20\x44\xbc\x4b\x22\xcb\x74\xdf\x17\x73\x90\x7d\x5a\x1f\xf4\xc9\xd8\x4e\xd6\xed\xeb\x67\x9d\xbd\x90\xf0\x9c\x28\x03\x5c\xcf\x73\x11\x9e\x08\xdb\x9f\x6b\xfd\xbf\xfe\xaf\x55\x86\xc1\x79\x17\x87\x50\xbf\x3b\x75\xad\x33\x36\xbd\x0b\x8b\x5d\x88\xe1\xbc\xae\x75\xfe\xfb\x57\x5e\x6b\x25\x0f\xfa\x2e\x36\xa2\x2d\x51\xe6\x57\xc4\x6c\x31\x19\x2d\xbc\x28\x17\xc4\xe6\xeb\x6c\xf2\xa2\x30\x40\xf8\x8c\xcd\x81\x2f\x71\x33\xd2\x03\xbb\x98\x8b\x8a\xb6\xa5\xbc\x17\x17\xd7\x83\x7f\xcb\x2c\x5b\x46\x2f\xe2\x45\x5f\xd2\x65\x56\x5f\xa3\x25\x5e\xb6\xee\x77\x97\x78\x59\xe7\xda\xc0\xba\x21\xe9\xad\x47\xa1\x6e\x3b\x02\xc7\xba\xcf\x75\x5b\xec\xf5\xbe\x18\x96\xba\xad\x77\x6f\xa0\x80\xa9\x68\x11\x46\x6e\x94\xdf\xf3\x53\x60\xd5\xed\xbd\x7e\xfe\x98\x75\x9d\xc4\xba\x2f\xea\xb5\xd3\xa2\xc0\xb2\xac\xbd\xab\xa5\xc2\xfa\xad\xbb\x56\x4b\x95\x85\x9b\xab\xbc\xee\x7b\x59\xc7\xb3\x96\x75\x8d\x66\xe5\xf3\x65\x5d\x97\xb9\x0d\xcb\x0f\x2a\x0a\x7a\x5c\xc7\x73\x6e\xeb\x9a\xd6\xba\x44\xfe\xbe\xa8\x5b\xad\x17\xaa\x04\x8b\x6b\xb3\x16\xfd\xae\xf5\xf2\xce\x51\xec\x90\x09\x8a\x28\xa4\x3a\xc5\xc5\xe1\xac\xe5\xa9\xf5\xe2\xc1\x6a\x14\x27\xd7\x8d\xe2\xba\x79\xeb\x50\xd6\xba\xf8\xbd\x91\xd3\x2e\x16\x91\xda\xf9\x9c\x7a\x35\x6a\x6f\xbe\x6c\x2d\x4f\x3f\x1d\xa3\x2d\x72\x3c\xf7\xba\xbb\x9d\x6f\xdc\xeb\xaa\x84\xc5\xb5\xc1\x6b\x10\xed\xf9\xaf\x9c\x50\x7b\x36\xf6\x71\x2d\x6f\x7b\xd6\x1e\x65\x0d\xcb\x9c\x9f\xb4\xcd\x1a\x34\xc2\x4a\x7b\x96\x10\xde\x11\xe1\xda\xb3\x41\xc0\xd6\xc5\x6d\x0f\x1c\x52\xec\x41\x79\x11\x89\x7d\xe3\x5b\xa8\xe8\xca\xda\x90\xf6\x2c\x0e\x29\xb7\x46\x7b\x24\x28\x04\xe3\xf6\x20\x42\xb5\xb5\x82\xed\x59\xdc\x52\x1d\xeb\x72\xb4\x07\xc9\xe9\xb7\xf6\xeb\x72\xc7\xa0\xcd\xe2\x60\x62\x16\xca\x70\x27\x63\xb3\xbc\xce\xf9\xb0\xcd\xda\xfc\xb6\xdb\x67\x85\x98\x39\xdf\xc5\x79\xc4\x56\x18\x1b\x9c\x07\x32\x73\x7b\x16\xb7\x51\xc7\xb4\xbc\xda\xcf\xc6\x6f\xdb\x8d\xd0\xc7\x18\x9a\x9c\x8d\xfd\xa0\xbc\xdc\x69\xbf\x1e\xf9\x8a\x4a\xa5\x3d\x1d\xc2\x30\x18\x7f\x9f\xbf\x71\x99\xed\xe1\x01\x1f\xd3\x36\xeb\x7e\xc5\x6e\x9b\x75\xbf\x46\xf0\xad\xf5\xa8\xd6\x6e\xff\x3c\xa4\xd5\x71\x26\x84\xca\xf5\x5c\x0f\x60\xdf\x9c\x57\x22\x6f\xee\xf4\x99\xf4\xb9\x31\xce\xf5\x70\x35\x88\x6e\x7b\xd6\xa3\xd4\x90\x65\xdb\x33\x38\xc9\xee\xe3\x7a\x70\x7a\x71\x8e\xe3\xfa\x8d\x03\x6e\xcf\x7a\x7c\x02\x45\x4d\x7b\x78\x70\xe0\xbc\xdb\x33\xd7\x39\x41\xbe\x6a\xcf\xe4\xd1\xf6\x5b\xeb\x06\xc5\xd6\xf8\xd6\x7a\x70\x22\x37\xc6\xb3\x6e\x4d\xdb\xba\xed\xfd\x56\xfd\x05\xd1\x6a\xcf\x84\x63\x48\x3a\x58\x62\x60\x8b\xc9\x81\x3a\xd0\xbc\x7a\x18\x8f\x45\x54\xd0\xb5\xb5\x67\x5d\xd3\x8c\x61\xfb\xb5\x30\xb3\x31\xf0\xf5\x72\x24\x9a\xd8\xf6\x1c\x2a\x65\xfd\xed\xa2\xc2\xe1\x41\x38\x20\x78\x9b\xfd\x3f\x8b\x8d\x2f\xfc\xf6\xe4\x35\xf2\x00\xa2\x1a\x47\x1c\x68\xcf\x05\xd7\x62\x9f\x8b\x82\x47\x6b\x2c\xe4\xba\xfd\xf9\x5d\x82\x75\xd1\xeb\x70\xcc\xeb\x4e\xb7\xcd\x05\xbb\xd8\x58\xbf\x0b\xa1\x6d\xc9\x82\x2d\x02\x19\xcd\xc3\x72\x77\x16\x89\x3e\xd7\xbd\xce\xef\xe0\xdc\xbc\x88\x95\x39\xde\x70\x3c\xce\xe5\x86\x90\xef\xf4\x7f\x73\x58\x1c\x03\x5a\x75\x94\x56\xed\x79\x2a\x22\x03\xed\x9f\xf5\xa2\x34\x0f\xc5\xd3\xd9\x70\xbe\xf5\xae\x79\x8d\xca\x18\xde\xc2\xc5\xb2\x1c\x1c\x28\x36\xff\x4d\xc6\x4f\xff\x8b\x1c\x47\x5b\xd2\x70\x7b\x17\xf1\x68\x1b\x87\xf7\x5d\x84\x21\x21\xdf\xed\x13\x9d\x38\x98\x88\x4e\x6d\xeb\xd6\xaf\xb9\x6f\x8c\xe7\x5d\xd2\x67\xdb\x16\xfd\x6b\x2f\x0a\x99\x6d\x71\x30\xed\x45\x23\xb3\x71\x88\x10\xb5\xc6\x57\x5e\xa2\x4a\x9b\x10\x92\xb7\xae\xb9\x4c\xeb\xd7\x53\xd1\xda\xa4\x4f\xf4\x15\x59\xad\x3f\x58\x4f\xcb\x68\x2c\xd6\x43\xd4\x14\x55\x5a\xa5\xdc\x20\xa5\xec\xaf\x22\xc6\x0e\x01\x50\xc4\x80\xe6\x37\x44\x8c\x44\x1f\xd2\xde\x45\x0c\xa2\x0c\xcb\x0f\x6d\x98\xfb\x22\x06\x31\x58\x1f\xa4\x85\x40\xed\xda\x90\x16\x02\xfd\x66\x53\x2a\x88\x3d\x29\x4f\x2e\x22\x63\xeb\xac\xd5\xf7\xdb\x75\x51\x76\xd7\x10\xee\xbf\x73\xe9\xe1\xc2\x13\xee\xb3\xc9\x49\x0f\xce\x0f\x9c\x74\x9b\xc3\x32\x5c\x60\xa5\x7f\xb8\xe4\xbd\x58\x86\xab\x73\xfc\x8b\x48\x44\x73\xbf\xd6\x8b\xd8\x11\x15\x1b\x5c\x6f\x4f\xd7\x64\xc8\x4d\x5a\x86\x60\xbb\x8f\x10\x92\x06\xe1\x87\xa3\xcd\xfa\xb5\x3f\xd6\x99\xaf\x8c\x61\x11\x95\xd6\x37\xeb\x6f\x44\x4e\xbe\x35\x5c\x1f\xca\x10\x92\xca\x19\x96\x2b\xed\xae\xf9\x22\x18\xb9\x35\xdb\xc8\x39\xd1\xcf\xe2\x38\xa3\xda\x86\x7b\x8a\xc8\xd9\xe0\xf0\x72\x06\x6d\xe0\xd8\x6a\x30\x17\xee\x6f\x6b\xf4\x7f\xbe\x70\xb7\xac\xff\x7a\xbb\xab\xc4\x09\x4e\x2b\x25\xea\x70\x5a\x3d\x9d\x2f\x4f\xf2\x77\x56\x79\x93\xa7\x6b\x7e\x61\xb4\xe2\x61\x91\xf1\xd9\xf3\x57\xfa\xf7\x06\x27\x54\xc3\x8d\xbd\x61\x2f\xa1\xbc\xef\xba\xd0\xbd\xbb\x51\x37\xec\x22\x94\xf7\x5d\x97\xb8\x4b\x31\xdf\xdb\xcd\xa1\xfc\xc0\xbe\xf2\x72\xbf\x8f\x1b\xc5\x6f\x1f\x14\x9a\x4e\xfa\x79\x21\x0c\x7c\xeb\xdd\x21\x42\xd4\xbf\x8b\x00\x4c\x08\xe7\xfb\xc2\xd6\x3a\xd1\x17\x9d\x04\x44\xee\x7d\x0f\xd8\x97\xfe\xbb\xbf\xef\x1b\x0a\x55\x36\xa1\x6f\x9b\x1b\x3e\x28\xaf\x03\xc8\xab\xd3\xb7\x4d\x62\x66\x79\x11\x9e\xb9\x88\x41\xdf\xd0\x8b\x8c\x75\x28\x3a\x2c\x5e\x2b\x5f\x7d\x20\xc2\xd0\xff\x7a\xd1\x13\xd1\xa9\x6f\xfb\xc1\xc6\x5a\x7f\x2d\xa2\xb5\xd6\xa7\x6f\x3b\x2f\x99\xfd\xa3\x17\xd9\xd6\x05\xed\x5b\xd9\x19\x83\x65\xe6\xb5\x36\xb0\x6f\x45\x02\x4c\x9f\x25\xd0\x4f\xf0\xdd\x92\x88\x2d\xd6\x2f\xae\xa2\x0f\xbe\x55\x60\xb6\x16\x13\xd9\xb7\xc2\x81\x75\x0c\x65\x8d\x81\x83\xd6\x37\x38\x0c\x44\x92\x8e\x15\xab\x23\x72\xf6\xad\x61\x6c\xda\xe9\x73\x11\x89\xda\x2a\xeb\xb3\x88\x44\x8d\x62\xbd\x7a\x08\xfa\x6c\x1e\x40\xc6\x23\x01\x18\xac\x0f\x97\xfe\xeb\x93\x8b\x9e\x1b\xbf\x5d\x62\x78\x8d\x8d\xfa\x74\x5e\x8c\x33\x7d\x59\xf9\xd6\xba\xdc\x81\x85\xa5\x6f\x4b\x04\xce\x16\x7c\x6b\x20\xfe\x77\xfa\x1f\x70\x57\x3b\x6b\x38\xd8\x23\xf7\x74\xa2\xd7\xd9\x99\x23\x7c\x6d\xf5\x5b\x13\xf1\x6a\xd0\x66\x3d\x92\x59\x5c\x7f\x1e\x49\xf8\xf3\xbe\x9d\x70\x4e\x9d\xfa\x53\xc2\x69\xfd\x9a\xd7\x6e\x9f\x88\x48\xb5\xda\xc6\x7d\xa4\x7f\x44\x98\xad\x58\x5e\x67\x00\x2b\x73\xdf\xd6\x25\xeb\xcd\xf5\x41\xd2\xa8\x95\x36\x37\x67\xd8\x7d\xe4\x61\xdc\x1c\xc3\x7a\x18\xc7\x56\x2d\x1f\x70\x36\x7c\x0b\xab\x72\x71\x6d\x79\xdc\xf6\xc6\xba\x3d\x09\x37\xc6\xd8\x9e\x25\x2a\x6e\xce\xf1\x45\x0c\xaf\xf4\xbf\x1e\xb4\xbe\x15\xda\xbf\xde\xbb\x55\xbf\xc3\x25\xd7\xf5\x98\xf7\x1d\x2e\x79\xb2\x56\xfb\x06\xbb\xcf\xda\xee\x1b\x8f\xe4\x22\x48\x1d\x9b\x64\x85\xc0\xaf\x95\x87\xc8\xed\x94\x9d\x17\x6d\xd6\x19\x6e\x68\xea\xfb\xce\x39\xc4\x6a\xd6\x35\x4e\x77\xce\xf6\x5e\x13\x02\xc6\x6f\xd7\x23\xd6\x30\xd9\xf4\x9d\x47\x6c\x16\xc6\x83\x2e\x6d\x1b\x8c\xb3\xa9\xb2\xb0\x5c\xe1\xd8\x3a\x65\x68\x4e\x32\xce\x06\x81\xdc\xfc\x2d\x46\xe8\x41\x9f\xeb\x0c\x8f\x6d\xff\x15\x67\xd6\xf7\x86\x25\x80\x45\xc2\xf8\x5d\x51\xde\x75\x4c\xde\x6d\xdb\xed\x78\x1d\x9c\xc6\xa5\xd9\x1b\x7a\xa0\xea\x40\x16\xdb\xdc\x5c\xd4\x4f\x67\xc6\x22\xad\x83\xdf\xea\x22\x72\x7d\x8f\x02\x97\x40\x1b\x74\x51\xcd\x36\x91\xb0\xe8\xf4\x13\x83\x43\xc7\xb7\xd0\x4b\xb5\x62\x7b\x08\x89\x1b\x12\x7f\x53\xd4\xf6\x3d\x90\xb9\x87\xfd\xdc\x5c\x74\xc6\x16\xe8\x57\x2c\xe7\x4e\x1b\xc6\x90\x1c\x34\x37\x87\x17\x74\x73\x63\x53\xae\xce\x36\x8e\x81\x3e\x13\x6e\xb2\xd3\x66\xa0\x3c\xe5\x22\xee\xe8\x81\xa6\x9b\xb6\x5e\xc7\xdc\xdd\xb4\x81\x04\x96\xac\xdb\x62\xa1\x5b\xda\x7e\xb1\xcd\x8d\xd7\xb7\x63\x6a\x0e\x50\x1e\x7d\x3f\xb8\xd0\x5c\x8e\x1d\x7d\x49\xba\x56\x07\xca\x4d\xfb\x3f\x58\x43\x2e\xdc\x8e\xae\x62\x38\xe6\x93\x43\x54\x2c\xaf\xb9\x7f\xeb\x09\xb7\x0a\x5e\xa4\xef\x48\xa8\x73\xa3\xcd\xc5\x7a\x7e\xf5\x27\x07\xc4\xfa\xd5\x3f\xa2\x69\xc7\x22\xdd\xbc\xa0\xfb\x6d\x3d\xe3\xbc\x7d\xa1\xf9\xed\xba\x88\x63\x73\x2e\x3c\x56\xe8\x81\xfa\x0e\xaa\xe3\xfb\x16\x0f\x14\x2a\x82\xbe\xbf\x5c\xe8\xdd\xfa\x45\xcc\xb0\xd5\xf4\x7d\x5d\xd0\xd8\xbd\x04\xeb\x81\x4a\x09\xd5\xfe\xde\x60\x30\x56\x3d\x26\x65\x15\xf1\x1d\x43\x72\x34\x08\x12\x96\xe4\x8e\xf9\xb8\x63\x49\x0e\x09\x00\xa6\xe4\xd8\xaa\xbf\x3d\xe0\x72\x92\xf2\xc3\xc3\x45\x19\x71\x35\xb3\x52\x66\x0d\x73\x50\x46\xcf\xc4\x38\x0b\x0f\x0e\x1c\x67\x2f\x18\xe1\x36\x7f\x5b\x26\x8f\xb9\x6d\x10\x8d\x37\xcb\x0f\x1c\x12\x63\xab\x8e\x99\x31\x54\x2e\x22\x67\x1e\x83\x70\x87\xc3\xee\x45\x25\xbb\xf3\xaa\x3c\xbc\x8e\xb3\xc2\x29\x3a\x97\xf5\x28\x55\x09\x3f\x56\xe3\x04\x1e\xb2\xf8\x39\x38\x21\x7e\xdb\x1c\x03\x7d\x7e\xf7\x94\x7e\x1a\x67\x66\x5a\xbe\x39\xcf\xcc\xb1\x7b\x36\xe8\xa7\xb3\x86\x3b\xeb\xd0\x79\xf0\xd9\xd3\xb2\xc4\xd8\x36\x20\xb4\xd8\x90\x7b\x63\x1f\xcb\xba\x8f\xd1\x06\xdf\x0d\x39\x4e\xe6\x15\x32\x26\x8c\x19\x5d\xef\x57\xbf\xee\x5a\x6e\xd3\xfa\x1b\xc6\x84\xf1\x2c\xae\x34\x41\x76\xf4\xb2\x38\xd1\x9c\x8e\x6d\x24\xe3\xb7\x0c\xf3\x52\x98\xd7\x58\x6b\xfe\xfd\x76\xa0\x23\xdf\xc7\xaf\x88\x59\x81\x05\x4d\x17\x49\x45\x2a\x97\xac\x2c\xb6\x53\x6b\x4e\x2f\x13\xcb\x08\x14\xb6\x70\x11\x61\x29\x3b\x56\xee\x86\xf8\xd6\xb1\x72\xb7\x8d\x4b\x56\x8e\xc9\xa5\x61\xe0\x5c\x50\x0c\x86\xbd\x2c\xf1\xb3\x86\x6d\x40\x4f\x25\x07\xb9\xa0\x04\x0c\x37\xf0\x82\x9b\xe1\xf2\x95\x4b\x56\x96\xc9\x5d\x12\x03\x26\xc7\x05\x4d\x0f\xda\xc5\x44\x83\x4d\xb8\x0b\x17\x91\xfe\xd7\x4b\xd9\x7c\x69\x0a\xaa\x21\x6c\xa7\x1d\x24\x51\xed\x3b\xfd\x2f\xb1\xb1\x0d\x88\x25\x00\xa2\x9c\xce\x05\xee\x33\x1c\xff\xba\xc4\xad\xf3\x7a\x95\x1b\x45\xaa\xdf\x7a\x0a\x7a\x1a\xc6\xff\xa8\x85\xe2\xb7\x8f\xeb\xc0\x6f\x5f\x36\xcd\x83\xb0\x38\xce\xd6\xe0\x3c\xca\xeb\xa1\xa6\xcf\x75\xa1\xe3\x1b\xcf\xcb\xc1\x84\x48\x94\x97\x8b\x32\x2d\x63\x80\x61\xf3\xeb\x06\xe7\xca\xe5\xae\xeb\x12\x0f\x44\x92\x5e\x37\x0e\x0e\x0f\x42\xdd\xe0\xb4\x20\xcc\x55\x11\x12\x22\x5a\x3f\x3d\x53\xa5\x1c\x18\x66\x2c\x63\x8c\x81\x90\x54\xf4\x4c\xc1\xbc\x6a\xd9\x10\xb7\xf9\x6d\x81\x0b\x81\x08\xd5\xc5\x71\x56\x60\x07\xbd\x72\xb9\x01\xa5\xf4\x5a\x10\x43\xe0\x92\x2b\x97\xd5\xbd\xa8\x75\x8d\x7f\xe7\x61\xa9\xeb\xb5\xae\x18\x30\x7a\x6d\xfb\x6f\x96\xc1\x5e\xb9\xb8\x40\x23\x7a\x6d\xa8\x02\xd2\xf6\x72\x2d\x8c\x01\x0b\x17\x4a\xf6\x5e\x41\x9d\x4d\x2e\x4d\xc5\xc2\x35\x37\xdb\xdc\xe8\xea\x18\xe7\x12\x39\x3b\xc8\x98\x5e\x01\xa1\x0d\xce\x43\x05\x85\x26\xb7\x5d\xb9\xe8\x9e\xff\xda\x79\x60\x5d\xdb\xc5\x95\xb6\xc1\x83\x59\xd7\xe3\xac\xd5\xb2\xd7\xfe\x40\xe4\xe8\x3f\x50\x44\x22\x09\xd4\x50\xef\x65\x19\x06\xa1\xd3\x67\xb0\x77\xce\x37\xd1\x35\xba\x47\x89\x0e\xc9\xfe\x17\x77\x5b\x5b\x58\xcf\xb9\x9d\xb6\x4f\xce\x09\x7d\xa6\x7a\x3e\xdb\xbc\x9c\x79\x7e\xbb\xc4\xd2\x3e\xdc\xbb\xb9\x38\x72\x99\x11\x34\xb5\x2d\x3c\x1b\xf3\x40\xd2\x60\x3d\xd7\x5d\x0e\xb4\xbf\xbd\x62\x9c\xf0\xc1\xac\x07\xc6\x1b\xce\x7f\x3d\x34\x7a\xd1\x7e\x71\xbd\x1d\xb1\xba\x57\x94\xf8\xdd\xbd\x40\x6c\xdc\x3c\x4b\x28\x72\xb1\xe4\x76\x34\xb9\xb9\x35\xd6\x59\xb5\x8f\x6b\xc2\x43\x0a\x84\xaf\x57\x1e\xcf\xc9\x43\x5a\x97\x34\xd8\xc3\x33\xa3\xaa\x07\x06\xaa\x2a\x19\x3a\xe6\x75\x37\xdb\xdc\x7e\x49\xcc\xea\x7a\x65\x63\x73\x42\xeb\x82\x66\x71\x61\xd6\x05\xd5\xbc\xdc\xeb\xba\xa0\x35\x21\x06\xf5\x61\xd2\x0e\xea\x59\x9c\x5c\x7a\xa8\x1f\xe4\x5d\xb8\x9f\xfa\x9c\x58\x28\x98\xd0\x73\x61\x46\xb6\x0d\x17\xee\x2b\xbf\x10\x45\xfa\xe7\x75\x6f\x8e\xe1\x45\x4c\x73\x42\x2f\xf8\x1c\x0f\xc5\x0b\x6b\x0a\xf1\xab\x88\x9f\x8e\xb3\xad\x97\x7b\x28\x1a\xb4\xcd\x43\x91\x94\x45\x7c\x5a\x8f\x32\x97\x05\x6b\xe8\x96\x02\x4e\xb4\x6d\x72\x3f\x9d\x32\x1c\x27\x97\xa9\xad\x17\x3d\x15\x03\xdb\x22\x0c\x0d\xc5\x74\x6f\x3b\xe3\x64\x3c\xcd\x97\x1e\x22\xd7\x76\xe6\xcb\x25\x6b\x3b\x97\x09\xb1\xae\x2d\xd6\x3d\xea\xa0\x4d\x01\x97\xca\x65\x6a\xc5\xd7\x91\xef\x62\x66\xdf\xfd\x6d\x41\x09\xce\xe6\xb7\x5a\xb9\xb8\xb4\xa9\x10\x2d\xd6\xb9\x41\x24\x2a\x2f\x71\x5b\xaf\x78\x1b\x7e\x6b\xb1\xf7\xe9\xab\xdf\xea\xc3\x6f\xf9\x16\xa6\x72\x74\x90\xbd\x41\x0c\xb0\x06\xf6\xb6\x08\x40\x05\x1d\xd5\x01\x77\x66\x43\x3c\x6c\x70\xc9\xc3\x35\x0c\xc5\x4c\xe6\x2e\xa7\xcb\x1e\xb5\x5c\x0f\x8e\x17\xa8\xad\xcb\x57\x25\xd2\x2d\xb1\x3e\x3b\x9e\xc5\xdd\x26\x8a\xf5\xde\x92\xb5\x75\xdd\xb0\x96\xa2\xb3\xe9\x6d\x00\xdb\x85\x48\xb7\x41\xfb\xb0\xfe\xe1\x8c\x31\xe6\x89\xf5\xdc\xf5\x3f\x10\x69\x5d\xcf\x03\xa8\x05\x84\xaa\x1d\x2a\xdc\xf9\x2d\x3a\xda\xe1\x3a\x9c\x40\x67\x21\x18\xed\xe4\x3c\xb8\xce\x27\x3a\x54\x88\x7d\x43\x2f\x2b\x91\x6e\x17\x78\x60\x08\x49\x83\xd3\x1d\xb6\xbf\x3c\x4b\xf4\x8f\x8e\xa7\x43\x2c\x1b\x77\x07\xcb\x51\x6f\x8f\xeb\x40\xfb\x07\x18\x85\x63\x5e\x67\xbe\xa6\xeb\xf9\x70\xae\xec\x73\x9d\xed\x04\x0a\xd4\x1b\x1c\x2a\x40\xa9\xde\xd7\x19\x4e\xa0\x6f\xbd\xc3\x89\xa2\x40\xef\x1d\x4e\xd4\x87\x11\x2c\x5a\x53\x54\x04\x81\xd6\x00\xbd\x74\x90\x60\x2d\x20\x3c\x40\xb6\xa2\xc2\x81\xf5\xaa\xea\xa3\x53\x5e\x0f\xda\x80\xfb\xe9\x40\x2d\x2a\x22\x6d\x47\xdc\x53\x5c\xed\x4b\xc4\xeb\xde\x8b\x2e\x92\xc1\xfe\xd7\x23\x50\xd1\x79\xf7\xbe\x38\xbc\x56\x1c\x43\x57\xef\xbe\xe6\xd2\x83\x35\xe7\xec\xf5\x44\x35\x01\x33\xd2\x51\x2f\x74\x88\x65\x87\x00\x37\xc7\xc0\x19\x90\xd9\xe9\x70\x69\x35\xf9\xed\xe0\xb1\x4a\xdb\x80\x1c\xe8\xbf\xc2\x89\xf5\x8e\x12\x10\xf8\x5f\xef\xd3\xd7\x8e\x49\x40\xcd\x07\x94\xb7\xcf\x8b\xcb\xc4\xc0\xe7\x8d\xc5\x84\x8f\x1c\x49\x7b\x7e\x0b\x37\x56\x61\x3b\xfb\xa1\x95\x8a\x49\xaf\x83\xd6\x80\x0c\xf4\xfe\x1d\x34\x7f\xfb\xa0\xfc\xe5\x5b\x70\x60\xbe\x40\x40\xb5\x7a\x85\x4b\xeb\x28\xeb\x27\x87\xb7\xdf\xe8\x90\x78\x51\x3a\xa2\xd0\x16\x96\xd5\x57\xd1\x7e\x11\xe0\x0e\x5e\xa7\xf7\x47\x5d\x0e\x0b\xfc\x82\x49\x74\xc1\x16\xc7\x13\x18\x33\x3a\xc8\xac\xc4\xbc\xdf\x03\x5d\x02\x06\x86\x1e\x3b\x56\xd4\xcd\xb2\xfa\x95\x35\x77\xa0\x57\xdd\xb9\x87\xe0\x76\x5e\xa9\xa8\x7c\x8b\x97\x2c\x96\x88\xd1\x83\xcb\x1a\x70\x00\x09\xc7\x06\xd0\xaa\x6d\x1c\xea\x08\xf0\x31\x8c\x2d\x12\x0c\x13\x9b\x1f\x6c\xec\xb4\xbc\x5e\xca\x0e\x34\xa6\xc7\x81\x32\x1d\x82\x1d\x07\x1c\x2d\xdc\x64\x9c\x9a\x41\xe9\xf3\x44\x79\x0d\x71\x0d\x5e\x44\xc5\xb1\x00\xd4\xbc\x71\x18\xe3\xc6\x32\x08\xe1\x89\x1b\x60\x24\x97\x3e\x6e\xac\x45\x7e\xf7\xe6\xc2\xf1\x70\xc5\x23\x27\xc1\x38\xd7\x83\x53\x81\xde\xf4\x78\x11\x5d\x11\xe7\xe3\x95\x28\xae\xb1\x25\xd6\x4c\x40\x87\x3d\xd5\xd9\x40\xcc\x72\x93\x13\xb5\x0d\x84\x1f\x42\x92\x9b\xca\xfd\xd5\x7f\xa2\xbf\xc1\x64\xdb\x73\x57\xa7\x62\x3d\x97\x86\xb3\x91\xfb\xe0\xcc\x04\xe5\xbf\xe1\xb7\x7a\x16\xac\xa5\xb6\x29\x60\xbc\x38\x57\x59\xc1\x3f\x35\xcb\x70\xbd\xec\x7b\x8a\x8b\x82\x43\x4a\x5c\x0c\x9c\x4b\x36\x45\x1e\xc6\x2f\xb7\x07\x71\x4a\xb8\x3d\xe0\x2d\x3d\xdb\x03\x67\x4f\xfb\xcf\xf0\x40\xff\x1d\x11\x9b\xb3\x9a\xc1\xe3\xc0\x5a\x65\xc0\x08\xa0\x4b\x4b\x60\x3e\xcd\xfe\x43\x08\x12\xf3\x8d\x07\xa3\x11\xe3\x5f\xdc\x5b\x0d\xc7\x99\x32\x0e\xfc\x36\xd5\x95\xb2\x6e\xc0\x64\x24\xa8\xb9\x44\xb3\xe6\xc3\x9e\x40\x5a\xdc\xa3\x9c\x12\x72\xfa\x39\xd0\xab\xb9\xfe\x47\xa1\x4f\xe6\x0e\x3c\x04\xa0\x7e\xcf\x4b\xae\x8e\x31\x7c\x52\x10\xbf\x85\xeb\xfa\xc6\x70\x01\x41\xda\xac\x7f\x00\xb5\xf2\x2d\x74\xe7\x8a\x8d\xf9\xf8\xf8\x30\x4e\x98\x14\x1f\xed\x7c\x51\xfa\xc3\x44\xe4\xbb\xe8\x86\x0c\x54\x72\x96\x24\x5a\xf9\xc2\xc9\x71\x4f\xf3\xe5\x8e\x73\x3e\xc7\x06\x37\xdf\xe7\xaf\x88\xd9\xd8\x50\x82\x37\x7f\x84\x62\x97\x8b\x3b\xbc\xe8\x1c\xae\xc1\x61\xec\x5f\x3d\x44\x8b\x0d\x1c\x98\xd6\x13\x91\x64\xec\xeb\x12\xec\xbc\x82\xa3\xa0\x53\xf1\xb7\xa5\x41\x9d\x0b\xe5\xe4\x82\xda\xe6\xe0\x50\x58\x0f\x84\x80\x85\x1c\x20\x7f\x27\x07\x67\x54\xfa\x61\xb1\xc7\x22\x18\xf1\x8d\x61\xbd\x2e\xad\xb0\x39\xa3\x72\x99\x60\x59\x07\xdc\xc6\xb0\x7f\xcc\xe3\x1b\x97\x69\xac\xd7\xa5\x76\x5e\xd6\x81\xe8\xd1\xad\x47\xc4\x50\xff\x34\x10\x31\x4a\x5a\xe6\x80\xf0\x5a\x0f\x70\x6f\x1e\xb4\xc1\x0b\x54\x9d\x0b\xd8\x35\x50\x14\x7d\x84\x4a\x67\xbe\xbb\x0e\x6f\x4a\x80\x87\x98\x30\x5e\xbe\x91\xb0\xdf\x88\x63\x83\x17\x4b\xfd\xd0\x48\x20\x03\x1c\xea\x31\x34\xc6\x58\xee\x60\xe0\x98\xe3\x40\xcf\xc4\xab\x36\x26\x5c\x11\x04\x75\x4c\x95\xe0\xec\xc5\x5c\x44\x7a\x56\xeb\xc1\x63\x71\x70\x86\xf8\x24\x38\xc2\xb1\x1e\x9c\x56\x21\xae\xe3\xf0\x55\xa6\xff\xc5\xc1\x74\xf5\x97\xe3\xf4\xd1\x60\xfd\x4f\x30\x1a\xd5\xf2\x83\x2e\x8a\xf2\xc5\xbe\x14\xe6\x05\x98\x64\xe3\x41\x1b\xc0\x79\x30\xcb\xf7\x71\x41\x14\x9d\x3b\x44\x14\xe0\x6b\x1f\x37\x97\xc6\xf9\xde\x60\x10\xe1\x42\xc6\x12\xff\xdb\xb7\x47\xb7\xba\x5b\x7f\x8b\xb8\xed\x78\x10\xf3\x15\x7b\xc7\x83\x78\x05\xa7\x32\x9e\xf3\x37\x30\x6a\x1f\x0f\x30\x01\x2f\xc1\xe2\xfe\x03\x3c\x78\x1f\xe8\xea\xd4\x03\x0d\x38\x21\x80\xa0\x7d\xa0\x58\x97\x1b\x18\x3e\x7a\x10\xc5\xb9\x09\x9d\x58\xbf\x9d\x3b\xaa\x03\x2e\xdc\x44\x54\x07\xec\xda\xe7\x8e\x91\x03\x0e\x66\x2a\x9e\x33\xc7\xb9\xf3\x98\x4c\xcb\x17\xfa\x4e\xda\x14\xf4\xa9\xac\xcf\x2c\xf9\x1b\x50\xb6\xcf\x82\xb1\x81\xf3\x30\xd7\xbd\xc8\x56\xad\xc7\xd2\xca\x5d\x98\x1a\x7b\x9a\xf5\x0f\xd6\xf0\x35\xe6\xc9\x1d\x01\x12\xd5\x67\x05\x74\x0a\x47\x38\xe1\xba\xe4\x8a\x66\xf3\xd1\xa3\x8d\x04\xdb\x39\x36\x1e\x07\x1e\xcc\xd9\x80\xb1\xf0\x08\x4f\x08\xf6\x9c\xd6\x6b\x15\x65\x1d\x16\xf1\x4e\xbc\x80\xfa\x84\x78\x4b\xd8\x66\xf7\x41\xa6\x3d\x06\x24\xa5\xb5\xb9\xee\x54\x2a\x3e\x4f\xee\x91\x5c\xe3\x54\x3c\xe7\x4e\xcd\x50\xfa\xa2\x4d\x24\x67\xcf\x36\xac\x83\x73\x5f\x8f\x7f\xd4\xd8\x7e\x45\xcc\x66\xf0\xa2\x43\xcc\x66\xe0\xa5\xc0\x26\x4f\x40\x9e\x00\xca\xfb\xcc\xfa\x1b\x2a\xb9\x4f\x00\x9c\x78\x55\xf5\x99\x83\x03\x6e\xfd\xcd\x01\x61\xd3\x78\x39\x26\x87\x6e\x0e\x2e\xca\xb0\x0c\xf8\xd3\xcd\x1c\xa2\xb0\x59\x6c\x2e\xe8\xc6\xc5\x9d\x93\x03\x02\x87\x34\x27\x0b\xcf\x61\x9c\x13\xfd\x16\x44\x68\x02\x0f\xa9\x2e\x2a\x97\x55\x11\x63\x62\xe1\x52\xcc\x9c\x27\x7a\x35\xb8\xae\xb9\x2e\x65\x6a\xf5\x9b\xa7\x44\x97\x45\x02\xeb\x05\x84\xa4\x4f\x01\x78\xfe\xf6\x52\xe9\xc9\x98\x2f\x11\xd6\xcc\xeb\x56\x44\xb2\xac\xd8\xc5\x77\xb9\xa0\x2d\xad\x6f\x70\x1b\x7c\xf7\xa6\x1f\x0f\x0e\x9c\xa5\xfa\x98\xb9\x38\xcb\x2a\x91\x98\x28\xd9\x15\xaf\xe6\x13\x20\xb2\x19\xcf\x83\x18\xc5\x0b\x37\x97\x08\x9f\xdb\x57\x86\x4b\x76\xbf\x10\x5b\xc2\xfe\x11\xbd\xa7\x87\x5a\x28\x07\x62\xcb\x7c\x01\xc4\xf2\xc8\x1c\x58\xbb\x0a\x97\xec\x40\xb1\x2e\xc7\x7c\xe0\x21\xa3\xb8\x74\xc8\xfd\x70\xc9\x8e\x9d\x07\x81\xc7\xe4\x40\x84\xd1\x92\x7b\x60\xf9\x9a\x9c\x87\x03\x54\x3b\x6e\x4b\xfd\x40\x69\x8e\xe7\x44\x3f\x54\x9a\x33\xb6\xa3\xaa\x0b\xa1\x1e\x71\x18\x04\x5e\x3f\x1a\x56\x33\x2e\xfa\xd1\x78\x3c\xd3\x32\xc4\x9b\x07\xea\xe0\x12\x0c\xf6\xf7\xe0\xe0\xfb\x60\x1e\xa1\xa8\x4e\x9f\x1a\x5d\xd8\xc7\x63\xa2\xeb\xe2\xa2\x1c\x80\x5d\xc1\xf5\xf5\xe3\x40\x37\xe3\x77\xd1\xd1\x6a\x54\x38\x2e\xb9\x1c\xe6\x7b\xb1\x77\x3c\x56\x87\xba\x1f\x2e\xd3\x71\x5d\x58\xea\x29\x23\x5a\x06\x22\xd2\x81\x77\x6b\xf8\xdb\x07\x55\x06\x8f\xd8\xb9\x09\x14\xef\x94\x27\xfb\x65\x3d\x2e\x32\x3c\x02\xe7\xa6\x94\x42\x19\xfd\x25\x50\xa0\x7e\xa2\x83\xc4\x83\xa2\x9f\x8b\x83\xec\x4a\x17\x27\x16\xea\x61\xff\x70\x84\x78\x06\xf4\x13\x15\x01\x3e\x56\xfd\xec\x70\x81\xec\xef\xd9\x31\xb6\x7d\xed\x21\x72\x9c\xc9\xb3\xa3\x46\x60\xdf\xcf\x8e\xbe\xb3\xd8\x9e\x47\xe0\xfb\xed\x8d\x84\xc0\x78\x3a\x7a\x62\xb8\xff\x33\x14\x33\xe9\x47\x8e\xd3\x31\x03\x63\x09\x7f\xbb\x08\x4f\x57\x77\x7b\x02\x08\xc7\x93\xa3\x9f\xe8\x08\xbb\x73\xc7\x20\xb7\x17\xeb\x75\xd4\xb5\xac\xc1\x8f\x3e\x53\xab\xe8\x5a\xdb\x73\xc0\xbc\xc4\xaf\xc0\xb1\xfd\x5c\x72\x6a\xe0\x45\xdb\x4f\xac\x09\x3d\x2d\x2f\x4a\x3d\x38\x50\x27\x00\x39\x9c\xb5\xfa\x09\x40\x0e\xf4\x6a\x3f\xc7\x8b\x69\x9a\xf6\x28\x1f\x37\x5e\xee\x73\x76\x38\x1e\x7e\x3b\x15\x9d\x98\xe8\x14\x86\x60\x1b\xc0\x8d\x2e\xe4\x22\x54\xa1\x9e\xe3\x04\x79\xad\x2e\xea\xe4\x30\xee\x2e\x1e\xc8\x6b\xd9\xec\x13\x56\x19\x57\x8a\x7e\x1e\x10\x12\x27\xcd\x81\xd5\x8a\x74\x2e\x82\x17\x2a\x13\x4f\x14\x9a\xf8\x92\xf6\x13\x91\x0d\x4c\x4f\x3f\x0f\x5e\x20\x5e\xeb\xf3\x84\x50\xa5\x65\x58\x74\x44\x8f\x53\x51\x8e\x0b\x7d\x9e\xb8\xba\x6d\xb6\x81\xf0\xb8\x69\x20\xa0\xb3\xd9\x86\x8b\xe8\xd8\xce\x97\xcd\x64\x03\x2f\x59\x6e\xda\xaf\x0b\x14\xe1\xc6\x5e\xb2\xfa\xf4\x79\xc9\x01\xb0\x9e\x70\x3c\xea\xe7\x4e\x08\xad\x22\xff\x09\xae\x4e\xe5\xe9\xb9\x2e\x59\xdf\xed\x67\x11\xda\xf6\xad\x1b\x20\xe4\xf0\xa0\xdd\xea\x1a\x2d\xcb\xea\xdb\x06\x2e\x0a\x71\xe6\xc4\xc8\xa1\x4e\xe8\x54\x6c\x77\x1f\x1f\x94\xfe\xce\x17\x7d\x6a\xb5\xfd\x03\xd0\x11\x22\x71\x7e\x10\x03\xe6\xb5\x2e\x77\x57\x99\x7e\x3e\xf6\xcf\x38\xd1\x21\x29\x7a\x9c\xeb\xd2\x77\x39\xf5\xf3\xe3\xa8\xec\x93\xcb\xed\xd8\x1e\x8c\x2e\x9e\x37\xb8\x2b\xc5\xa2\x13\xd8\x8e\xdc\xcc\xf9\x02\xfe\x74\x0c\xef\xdf\x5c\x7d\xfa\x09\x84\x47\x71\xf5\xc2\x3d\x52\x5d\xd1\x85\xd8\xab\x48\x75\xa1\x7f\xc2\xa1\xb0\x5f\x58\x42\xd5\xa5\x5d\x48\x1d\x65\x5a\x8f\xbe\xb0\x5a\x8f\x2e\x30\x2c\x23\x72\x42\x3c\x2e\x74\x57\x78\xab\xf7\x6b\x7b\x7f\x73\x31\xea\x97\xee\x93\xac\xf9\x05\xa1\x52\x64\xbb\xe0\xde\x2a\x84\xff\x42\x62\x21\x02\x41\xbf\x8a\x0f\x32\xed\xd1\x6f\x01\x2a\xee\x17\x18\x3e\x1f\xff\xab\x22\x11\x31\xdf\xab\x62\x49\x87\x59\xb8\xb0\x7e\xe6\x57\xe6\xc1\x19\x96\xb1\xe4\x3a\xaf\xcf\x00\x43\x9f\x1a\x60\x10\x09\x2f\x80\xbe\x78\xea\xf4\x6b\x3d\x26\xd5\x07\xe1\x6a\xba\x36\x59\xe6\x41\x73\xfc\x4d\x1c\x1b\xe3\x6f\x48\x14\x20\x01\x2e\xa4\x1d\x45\xfe\x0b\x22\xaa\xce\xec\x02\xc3\xa7\x31\xe0\x0a\xad\xbd\x8c\x0d\x84\x43\x0f\xcb\xaa\x83\x98\x7b\xe0\x09\xc1\x03\x72\x05\xba\xf6\x6a\xf9\xc5\x63\xe3\x97\x06\x80\x2b\xf7\xdf\xfc\xb9\xfa\x85\xff\xae\x16\xc9\x6b\xea\xcf\x45\xfd\x94\xaa\x32\xe9\x03\xdd\x80\x1b\x82\x5b\x05\x6e\x4e\xfd\x3a\x20\x78\xb6\x3f\xe4\x3c\x98\xdc\x89\xbf\x1b\x54\xfe\x42\x9c\x49\x58\xd9\xeb\x54\xc4\x60\x42\xc0\x0d\x24\x66\x17\x84\x01\xff\xaf\x7e\xe1\x0e\x01\xb2\xbb\x5f\x8b\xa3\x0a\xad\x6c\x17\x4a\xdb\xee\xc2\xdc\x28\xc4\x1d\x0f\xf2\x7a\x85\xa8\x5c\x0f\x04\xc6\x0d\x7c\xc5\xcf\x31\x86\x57\x1d\x0c\x73\x81\x83\x91\x30\x5c\x40\x03\xbc\x64\xf7\x86\x05\x0d\xae\xf1\xe6\xf0\xaa\xac\xbc\x05\x9d\xf2\xdd\x7b\x87\x33\xfb\xca\x0d\x71\xaf\x52\x06\x46\xd1\x2c\x03\x7c\x65\x3c\xf7\x8e\xa9\x19\xce\xe0\x2e\xf6\xcf\xb7\x34\x00\xb0\x6e\x37\x66\x76\xc0\x9f\xfd\x6e\xac\x21\x0a\xdc\x7b\xbd\xc4\xad\x72\x88\xee\x40\x9c\x81\xe8\xde\x70\xd5\x1e\xea\x3b\xd4\x1d\x52\x1e\x12\xbc\x41\xf9\x64\xbe\x94\x27\x10\x0c\x38\x86\x5b\x78\x88\xfd\xe0\x66\x83\x7b\x4c\xbf\xd1\x77\x2a\xae\xde\x27\xd6\x43\x88\xd9\xfd\xed\x85\xe5\x0b\xd1\x8c\x7e\x4e\x5c\x7a\x20\x18\xf7\x25\xee\x8d\x7e\xb4\x2c\xdb\xff\xcd\x9a\x14\xcb\x37\x22\x15\x73\x07\x77\xa5\x0e\xf5\x06\xee\x11\xae\xd5\xa3\xbf\x2f\x73\x41\xb1\x2e\xdc\xe6\x7e\x70\x87\xeb\xd6\x03\xab\x81\xf0\xdf\x8f\xf8\x3c\xe6\xf8\xb0\x86\xae\x1b\x9c\xeb\xe6\xbc\xde\xfd\x37\xff\xc4\x7e\x03\x54\x56\x84\xb9\x5f\xf4\xac\x10\x89\x9b\x73\xe2\x43\x77\xa3\xd7\x09\xfb\x57\xfc\xfc\xfa\x79\x7e\xf3\x6d\xec\x0f\x78\x47\x5c\x51\xfa\xf3\xe9\x0b\x77\xca\x10\xda\xdd\x7a\x39\xe9\x35\x5f\xbd\x19\xc4\x44\x3e\x12\x39\xb8\x25\x3c\x15\x72\xdb\x2d\x63\xb9\x83\xcb\x79\x76\x40\xe6\x9c\xab\x07\xae\x57\xa8\xc2\x83\xf8\x29\x07\x89\x37\x43\x6f\xdc\xdf\x07\xa3\x51\xf7\x5b\x00\x9b\x15\xdf\xf0\x6c\xe8\x15\xe2\xfd\x54\x8c\x31\x3c\x4a\x4f\xc5\xfa\xcc\x1e\x3d\xe8\x11\xd5\xc5\x3e\x88\xa5\xc9\x59\xc5\xb3\x21\xd5\xcf\x3d\x88\xa8\xea\x1a\x1f\xe0\x5a\xea\xd2\x9e\x0e\x11\x0a\xcb\xab\x4f\xef\xe0\x13\x3b\x73\xa1\x7d\xa8\xce\xa2\x7f\x8c\x04\xaa\x0b\x9e\xfc\x9b\x7f\x68\xc7\x53\x21\xb5\x92\x3f\x4a\x80\x61\x39\x21\x8a\xbf\x34\x00\x3c\xb0\x79\x5a\x28\x9e\x44\x09\x8e\x9e\xe3\xc9\x13\x6e\xc6\x7a\x2f\x31\x0b\x80\x2f\x9e\x80\xba\x67\x60\xd2\x1f\xd6\xa3\xf4\x77\xb0\x03\x00\x1e\x87\x42\x17\x05\x2f\xf1\x03\x67\xa6\x72\xfc\x59\x1c\x58\xc5\xc3\xa0\x3f\x53\x0e\x83\x3e\x0f\x09\x92\x65\x09\x0f\x9b\x8c\x9f\x9a\xfa\x30\x3c\x0c\xaa\xd0\x8c\xcf\xab\x80\xc3\xfb\x9c\x5a\x6a\xe8\x1f\x6c\x56\x75\xf3\x4f\x89\x0a\x0b\xc6\x05\x55\x1c\x78\x20\x90\x8a\x3f\x0f\xe2\x46\xe5\x15\x79\xb4\x5e\xf1\x3a\x3e\xe2\xb4\xe0\x8a\xf4\x30\x68\x6e\xf8\x2d\xc4\x80\xdf\x02\x3c\x26\x5a\x48\xc7\x93\xa0\x11\x7d\xa0\x3f\x88\x96\x8a\x12\x0f\x3e\x42\xd1\x6d\xa3\xb9\x9e\x3e\x01\x1b\x6f\xbc\xbe\x0f\xdc\x8f\x7a\x41\x3c\x09\xaa\x44\xf1\x59\x5c\x4b\xd3\x38\xf1\x00\xf7\x50\x2f\x85\xc7\x40\x9f\x5c\x44\x3c\x06\x22\x77\xdb\xb0\xb6\x1e\xb4\x17\xc8\x09\x07\xe4\x95\x53\x81\x53\xc4\x21\xbb\xf9\x2d\xbc\x07\xd2\x57\x50\xcf\x00\x42\x59\x74\xbc\x01\x3a\x4e\x61\xfd\xdd\xeb\x6f\x8e\xc8\x1d\xc7\xeb\x10\xe7\xf7\xee\x72\x90\xb6\xe1\x3c\xa4\xbf\xc5\x35\xa8\xdb\x1e\xb1\x97\x75\xc6\xf1\x3a\xd2\x7e\x0a\x40\x65\x0e\xf5\x4b\x0c\x21\x25\x01\x1c\xa9\x1b\xa8\xfc\x8e\x63\x74\x77\x0d\xdf\xca\x59\x62\x1d\xf0\x36\xa8\x5e\x5c\xbc\x0d\xd2\xf9\xea\x3d\xd0\xe0\x50\x71\x4a\xae\x9e\x55\x7c\x8d\x9b\xca\x7a\x3c\x09\x9a\x84\x0a\x7f\xe1\x86\xc7\x40\xc7\x5f\x38\x93\xc7\x13\x8f\x81\x9c\xac\x33\x5e\x02\x21\x16\x13\xdf\xde\x54\xa1\x8f\xdf\x6e\x9f\xce\x0b\x7d\x4f\x71\x9d\x11\xbb\xd4\x75\xe9\xc3\xdb\xd3\xb2\x38\x3f\xcb\x1a\x75\xec\x07\x2b\x3f\x67\x18\x0f\x83\xdc\x1c\x0f\xa2\xd9\x06\xe1\x7c\x53\x42\xc2\x78\x12\x6f\x06\xd4\x08\xf8\xdb\x66\x77\x9c\x78\x18\xec\x10\x27\x7d\x6c\xc5\x41\xea\x63\x4b\xa4\x97\xfe\x2a\xb2\x71\x8f\xf0\x99\xed\xc1\xbd\xc0\xab\x20\x7d\xc4\xf4\x2a\xc0\xef\xb8\xbf\x43\x2b\x39\x63\xc0\xb2\x5c\x9d\x8b\xc0\x66\xf7\x08\x31\xbf\xc0\x38\xe0\xeb\xda\xaa\xfb\x0b\x3c\x44\xc3\x1e\x7e\xaf\xdd\x07\x1f\x3f\xd6\xd0\x42\x8a\xef\x6a\x53\xf4\x7e\x17\xa3\xd4\xb5\x62\xe3\x8b\x9a\x72\xe4\xfa\xa2\x6e\xf9\x4b\x03\xc0\xcb\x4b\x1c\x1e\x8a\x43\xd6\x94\x0e\xe0\x9c\xb4\xb8\xe1\x54\xda\x0a\x22\x83\x8e\xa4\xea\xcc\x5e\x82\x6e\x4d\x17\x1e\x6b\xc8\x77\x48\xb1\x4e\x0a\xbc\x7c\x2f\xad\x12\x0c\x5c\xb7\x22\x5e\xe5\x17\x4c\x09\xde\x03\x1d\x6f\x83\xf8\x36\x8a\xcb\x5d\x3d\xd4\xeb\x95\xcd\xea\x6f\xc1\x69\xed\x2e\x06\x5c\xd4\x40\x04\x7b\x41\x43\xe3\xc4\x1c\x1b\x17\x11\x10\x63\x88\xee\xe7\x62\x85\xe8\x7e\x50\xd8\x01\x8a\xbf\xb5\x45\x50\x63\x23\x92\x49\x09\xca\x45\x78\x88\x65\x5c\xa7\x16\x37\x16\x1b\x51\x0c\xc0\x36\x05\x68\xfd\x0e\x20\x33\x40\xeb\xc7\x6f\xbf\xd5\xf0\x30\x29\x83\x01\x2a\x8c\x01\xd4\x73\x4b\x7e\x4b\x74\x11\xdc\x78\x42\x84\x7e\x6e\x8c\xa7\xb1\x86\x1b\x7d\x76\x2c\x86\x93\xfa\xae\x3b\x19\xfd\x74\x8d\x01\xf4\x8f\x5b\x0e\xfe\x83\xb1\xe9\xaf\xb7\x88\x41\x6c\x5c\xb2\x59\xa9\x0f\x80\xa6\x93\xf1\x2f\x36\x7e\xc0\x25\x04\xc8\xfd\xe4\x85\x8e\x2d\xd4\x55\xf8\x5b\x44\x98\x64\x2e\x01\xe8\x34\x58\x4f\x9c\xe6\x77\xe7\x18\x40\x0c\x26\xe3\x0f\x09\x1e\xe5\x75\xf9\x06\xb8\xab\x10\xd1\x3f\x07\x63\x1e\x8a\x93\xd6\x6b\xa2\xb7\x1e\x70\x6c\x65\xbe\x13\x63\x49\xa5\x1f\xd4\x11\x88\x69\xb1\x4d\x2c\xad\xdd\xb2\x8f\x00\xe3\x04\x23\x85\x2b\x57\x6c\x5a\xe8\x0a\xf3\x3a\x2a\x0f\x2f\x7d\x02\xdf\x28\xfe\xf6\xc0\x3f\x74\x67\xdd\x50\x23\x80\xc1\x0a\xbc\x04\x3a\x5c\x51\xe0\x25\xd0\x8a\xf3\x3d\xb5\x4a\xd3\x3f\x2e\x3a\x70\x8d\x41\x4c\xba\x8a\x08\x1f\xc4\x9c\x6b\x44\x70\x08\x83\xce\xed\xae\x39\x6a\x81\xdc\x19\x27\x86\x90\x6f\x6c\x18\x3f\x86\x6b\x7e\xa3\xff\xeb\x96\x51\x77\x6c\xb4\xbf\x81\x51\x78\xde\xf4\xa4\x71\x9d\xf5\xa4\x99\xcc\x0b\xcb\x60\x75\x6d\xe1\x32\x11\x5d\x63\x83\xb3\xac\xcd\x7a\x54\x3a\x9b\xf5\x9c\x93\xa0\x7f\x44\xef\xf6\xb5\xe7\x4e\xb1\xe6\x78\x0c\x74\x08\x6d\x7c\x5e\x02\x8c\x67\x47\x1a\xe1\x01\x89\x1d\x98\x52\xdf\x93\x32\xe3\x9c\xb4\xc7\x10\x92\x5f\x59\x2f\x01\xda\x10\x33\x08\x1d\x67\xe0\x55\x50\xfb\x4e\xb9\xc0\x49\x2f\x4e\x2b\xf6\x2a\xd0\x7a\x52\xc6\x7d\x6b\x5a\xd6\x85\xaf\x53\x26\x72\x07\xeb\xb6\x57\x2c\xc8\xbf\xd4\x99\x85\xe1\xf1\x8a\x1d\xe0\x44\x8b\xbb\x48\xe0\x66\xd0\x70\x3c\x0d\xdc\x09\x02\xb1\x22\xf0\x18\x08\x44\xbf\x20\x46\x5e\x85\xdb\x08\x83\xe4\xb5\x6a\x19\x6a\xce\x05\x32\x4c\x1e\xf8\x92\xd8\x61\x47\x89\xf1\x17\x3b\x4a\x46\x0c\x00\xb1\x77\xcd\xec\x2c\x70\x28\x9e\xd0\x0f\x0a\x47\xc4\xd8\xc0\x2f\xbc\x36\x7f\x6b\x90\x3d\x08\x12\xde\x03\x15\x77\xa9\xc0\x4b\x20\x3c\x38\x78\x03\x34\x94\xbc\xb1\x03\x56\x2c\x8e\x39\xd9\x34\x37\x2a\xe5\xd8\xe8\x27\x3d\x98\xf4\x83\x3f\x1d\xfa\xa4\xc5\xc3\x71\x39\xe8\x67\x00\x1f\xd8\xac\x47\x79\x3a\x99\xe3\xd0\x92\x48\x9f\x88\xe7\xcd\xf5\x9c\x28\xd6\xed\x93\x8b\x5b\x3c\x14\x13\xdc\x98\xdf\x9d\x2a\x88\x99\xfb\xd4\x82\x43\x3f\x87\x16\x22\xe6\xcb\xa5\x04\xea\x12\xfb\x81\x3b\x4a\x61\x0c\xc0\x5e\x10\x15\x63\xd7\x07\xf6\x2b\xf3\x28\x79\x88\x4e\x38\x09\x08\x8f\x9e\x04\x73\xb7\x7c\x00\x37\xa0\xff\x53\xb8\x01\x63\x06\xb4\x4c\x70\xc1\xd8\xd1\xcf\xc1\x95\xc6\x2e\xb7\xea\x1a\x62\x20\xa9\x10\xcb\x5d\x1f\xf7\xb0\x8d\x22\x1e\xfd\x3c\x46\x7f\xa0\x0c\xa6\x0a\x43\x4e\xe0\x19\xd0\xbe\xb3\x84\x28\x87\xe3\x72\xe8\x25\x90\xae\x15\xd6\xc6\x6d\x58\x5e\xf3\xfa\xce\xd2\xeb\x65\x5a\xfd\xe8\x25\x80\xa5\x2c\xf0\x06\x68\x44\x31\x0a\xbc\x01\x0c\x59\x13\x78\x03\x34\x62\xed\x05\xe1\xe4\x3a\x40\xd3\x28\x86\x0f\x4b\xfb\x81\x3b\xe7\x5c\x95\xdd\x18\x5a\x96\x21\x24\x10\xad\xb2\xe3\x63\xc8\xbe\x14\xc1\xc6\xcd\xb2\xba\xab\x41\xf9\x05\xd6\xc1\x6f\x01\x18\x77\xbf\x5b\x8c\xf4\xd9\x29\xa3\x0b\x64\x0d\xf1\x18\x88\xe8\x8c\x87\xe8\x06\xc0\x8b\x82\x18\x73\x0d\x3d\x62\xe0\x49\x60\xc8\x9d\x28\xd5\xf3\x4c\x9f\xe8\xc0\xd0\x7b\x45\xc1\x48\xd0\x21\x24\xa5\x81\x93\x83\x88\xe2\x31\xd0\xb1\xd4\x07\x71\xe6\x72\x40\x3c\x0a\x56\x4b\xa2\xdc\x05\xde\x03\x86\xf1\x09\x3d\x06\xd0\x97\x47\x11\x54\x3c\xf8\x16\x11\x6d\x24\x60\x45\xa3\x20\x04\xa9\x24\x62\x3b\x8f\x46\xc1\x79\x7d\xf7\x5b\x69\xff\xcc\x11\x25\x3e\xc6\x98\xc0\x03\xa0\x83\xf9\x8b\xa2\x57\x8d\xdf\x1d\xde\x0b\xfa\x27\x8a\x4a\x38\x2f\x38\x45\x19\x07\x80\xfd\x7d\xfe\x32\x36\x62\x80\xfa\xef\xd5\x8e\x55\xdc\x73\x89\xcb\x54\x67\xc0\x84\x26\x4a\x52\x27\xb7\x5e\xca\x44\x39\x1b\x20\xfa\xb3\x3b\xd1\x93\x85\x74\x72\xa7\xa2\x25\x03\xc1\xaa\x88\xa5\x23\x08\xef\xd9\x09\x9f\x12\x85\x57\xad\x78\x18\x11\xf1\x76\x17\x92\x57\x6d\x70\xe9\xcb\x85\x65\x0d\xc2\x20\xea\xbf\xb9\x21\x70\x7b\xf3\x2b\xeb\x86\xc1\x18\x2e\x14\x9d\x5c\xfa\x82\x18\x88\x23\x72\xe0\x19\x50\x3b\x2f\x71\xb9\x11\xd3\xaa\x65\x9c\xa7\xab\x6d\x74\x34\xe7\xbb\x70\x8a\xbb\x8b\x8a\xc7\xc0\xdc\x6d\x83\xa1\x82\x0b\xaa\xc7\x80\xc4\x80\x98\xa3\x0d\xdd\x43\x14\x15\xd9\x5c\xca\xf2\xa0\x4f\x72\x93\x51\x6a\x13\xf2\x28\x8a\x4a\x6d\x2e\x71\xc1\x05\x48\xc2\x8c\xc7\x40\x9d\xae\x03\x8e\xe6\xe9\x45\x79\x51\xb6\xa6\x65\xe7\xb8\xfa\xaf\xfa\xe2\x31\xce\x2a\xa8\x72\x89\x1e\x51\x37\x8d\x37\x94\x8d\xd1\xc5\x03\x55\x0b\xc4\x9e\x8b\x02\x5a\x3f\x26\x84\xaa\x56\x8d\x2e\xf4\x89\x8f\x27\x46\x91\xa8\x55\x34\x7d\x50\xd6\xd4\x4f\x3d\xe8\x7b\x00\xbd\x51\x79\xb8\xc0\xde\x45\x05\x60\x09\x7c\x20\x2a\xa1\xa2\x08\xeb\x14\x15\x73\x7d\xb7\x7d\xa0\xff\xe0\xcc\x88\x94\xf7\x21\xad\x01\x41\xe5\x9c\x54\xf4\x28\x13\x82\x07\x0a\x3e\xf7\xaf\x1e\xc8\x03\x8f\x40\x4d\xf0\x8b\x9c\x1f\x10\xf1\x1d\x30\x6d\x54\xac\xe7\x1d\x02\x50\x35\x68\x7d\xf5\x93\x75\x60\x6c\x43\x0b\x3e\xfd\x23\x22\xb9\xe6\x75\xa2\xdb\xe3\x6c\x83\xa0\xaf\x88\xf0\x51\x71\xc2\xfe\xea\x3f\xb1\x88\xdf\x2e\xb1\x28\xb1\xa8\x46\x25\x30\x03\xa2\x68\x80\xa6\x8f\x74\x4d\x0e\xf6\x71\xda\x1e\x43\x05\x04\xb5\x22\x3a\x81\xe7\x8b\x7a\x18\x38\x97\xf2\x85\x87\xcd\x60\x3c\x58\x57\x89\x20\x1b\x04\x51\xa9\x88\xbd\x41\x34\x94\x26\xc1\x36\x1c\x4a\xba\x0e\x78\xba\x78\x86\x2b\x38\xc2\xe1\x7c\x6f\x55\x46\xac\xc9\xc7\xed\xf1\x2d\x00\xbd\xe1\x18\x04\xf4\x5a\xff\x6a\xd5\xa5\xcf\x57\x57\x3a\xfa\x7c\xc1\x5c\x96\x55\x6e\x3e\x08\x9c\x3d\x81\xe5\x83\xf1\x37\x62\xbf\xe1\xac\x1f\x4d\xe8\x4a\xb3\xcc\x83\xc3\xbc\x1a\x70\x15\x22\xe6\x46\x2b\x04\x5a\xb0\xbe\x70\x8f\x78\xb8\x5a\x81\xd9\x61\x9d\x5b\x25\x3a\xcf\xf6\x4b\xce\x0c\xb4\x78\x02\x46\x8d\x86\xd9\x36\x78\xc5\x5b\x6c\x70\x24\xd4\xe3\x2f\x19\x5f\x99\x4b\xd0\xf9\x20\xa6\x54\xc5\xa5\x06\x78\x0f\xdc\xd8\x12\x70\xf0\xd9\x64\xd2\x12\x4b\x5e\xa9\x36\x81\x03\xf8\xdb\xa9\x9b\xd3\x4e\x19\xab\x10\x87\x54\x94\x37\xfa\x92\x68\xf8\x2d\xca\xf1\x34\xb9\x10\x28\x78\x3b\xe4\xea\x2c\x3f\x1c\x10\xda\x13\xab\x49\x31\xa4\x9d\x04\x89\xe3\x12\xb4\x13\x25\xb8\x63\x23\xfa\xc6\xc6\xcb\xd4\x8c\x93\x04\xa7\xd2\x10\x8d\x81\x24\x44\xbb\xc0\xc7\x70\xd8\xdb\x05\xf7\x09\x01\x6e\x86\x39\xb2\x4f\xc2\x1c\xa1\x77\x89\x86\xb2\x1b\xb8\x44\x34\x08\x24\x71\xa4\xa2\xdd\xfa\x9a\xd1\xe7\x8d\xfe\xc6\xef\x3e\x1a\x45\xd8\x64\xad\x84\xd3\x32\x2e\x4f\x1b\xbf\xc5\xec\x8f\x78\x1e\x0d\x65\xb7\x2f\x7a\x13\x47\x65\x1b\x51\xe4\x7e\x17\xe5\xf5\xe0\x25\x13\x51\x2e\x87\xd1\x00\x09\x83\x61\x0a\xe2\xa0\x36\x09\xb3\x48\x73\x00\xb1\x61\xbc\x51\xf0\x43\xf1\x05\x11\x65\xfd\x09\x1d\xda\x80\xba\x44\x57\x94\x86\xc0\x10\x26\x34\x07\xeb\x4f\x9c\xd0\x46\x48\xa8\x10\x75\x3e\xfd\x16\xe0\xe1\xce\x65\x22\x28\x68\x05\xbe\x11\x44\x05\x8d\xca\x21\xed\x75\xc2\x55\xd3\x8f\x56\xb9\x19\x94\x1f\x38\x0f\xdb\x1b\x58\x9b\x36\x58\xdf\xb0\x1a\x47\x87\xdb\x00\x54\x1c\x1d\x2b\x1b\x48\xf6\xe8\x60\xa4\x46\x5a\xcf\x25\x63\x8f\x3a\xb8\x28\x1c\xaf\x03\xf4\x7a\xe0\x9f\x1b\x1d\x3d\x19\x96\xc7\x00\xc9\x9e\xc4\xbd\x8b\x6e\xdc\x3b\x08\x7c\x37\xee\x1d\x22\x58\x0f\x38\x4b\x44\xc2\x1e\x72\xc3\xfc\x16\x58\x13\x16\xf3\xe8\x10\x63\x45\xa4\x9e\xe8\x17\x21\x78\x1d\xdc\x21\xee\x7c\xd1\xd3\x78\x7e\xb6\x97\xe8\x5a\x0f\x18\xd5\x7a\x42\xf1\x48\xd8\xfa\x50\x39\x4e\x3f\x03\x90\x39\x5c\x9d\xa8\x79\xc5\xe7\x3e\xd4\xc3\x31\x4e\x3d\x27\x10\x57\xfb\x44\x11\xef\xdc\xd5\x69\xb9\xb6\xc0\x9d\x7c\x64\xba\x51\x33\xdc\x8b\x69\xec\x57\xfb\xc1\xb0\xc4\xf9\x27\xb8\x6a\x97\xd1\xe8\xc7\xdf\x82\x2d\x46\x07\x2a\xb5\x3b\xdf\xc3\x79\xf1\x5b\x3c\x33\xa4\x09\x00\xe6\x73\x83\xa0\xf6\x03\x47\x79\xcf\xd5\x09\xb4\x07\x4e\x97\x08\xaa\x8d\xe0\x04\x41\x08\x55\x03\x38\x06\x21\x54\xfb\xdc\x7e\xc9\x99\x75\xad\x51\x1b\x93\xbe\x98\xb4\x87\xf1\xd2\x97\x90\x0f\x5e\xe2\x63\x18\xe0\x85\xfe\x83\xcb\x4a\x24\xd4\x18\x88\x3c\x9d\x0b\xad\xfc\xdd\x31\xfb\x13\x24\x31\xfa\xb3\xfd\x16\x49\x32\x40\xe8\xb7\xcd\x43\x67\x48\x1c\x0f\x14\x22\x49\xf1\x10\x81\xaf\x9a\xdd\x36\xf8\x78\x4e\xfb\x41\x4c\x68\xb6\x07\x39\x0e\x47\xd5\x5f\x01\x99\x7c\xd7\x17\x85\x57\xa1\xe3\xf3\xb8\xbb\xd8\xaf\xb1\x9d\xe8\xf3\x55\xef\xb2\x36\x10\x0f\x80\x8a\x73\x7c\x84\x16\x4c\x16\x1b\x6f\x80\xe6\x18\x02\xe5\xf8\xe0\xb5\x88\x8d\xa8\x19\x5c\x5c\x82\xb9\x36\x02\xf6\x07\xd1\x5c\x93\xa8\xea\x11\x88\x2a\x12\xe9\x80\x2b\x02\x63\x14\x61\xd8\x74\x36\x07\x0f\x83\xde\x10\x0d\x62\xef\xe8\xb4\x26\x65\xfc\xfe\x10\x25\x08\xfa\xda\xc1\x9c\x45\xe0\x23\x49\x58\x9e\x88\x62\x64\x01\xeb\x13\x38\x06\xe3\x14\x05\x0f\x61\x0e\x2c\x5c\xdd\x31\xe3\xb5\x40\xbc\xb1\x08\x74\x15\x60\xa4\x22\xaa\xf1\xa5\xf8\x2d\xa2\xcd\xb0\x7f\x44\x9b\x7d\xb3\xfe\x60\x3c\x8c\xd3\xa8\x1c\x70\xbd\x61\x8c\x7e\x88\x2b\x91\x67\x7b\xfa\x5b\xf0\x61\xea\xcc\xc2\x98\x5e\xc3\xf6\xe8\x32\x1d\x0f\x31\xba\xd4\xeb\x44\x07\xb1\x5e\x2d\x83\xb7\x83\xbb\x8d\x8e\x53\xbb\xeb\xd0\x5d\x07\xc6\x1c\x42\x42\xa8\x47\xff\xe7\x63\x15\x20\xeb\x09\xef\x13\x44\xb7\xcd\xb1\xdb\x5e\xc8\x0c\x7d\xfa\x20\xbb\xd7\x06\x2d\x70\x0d\x11\x9d\x7c\x00\x89\x76\x5b\xe5\x44\x23\x8d\x04\xcb\xd8\x88\x0c\x82\x91\x20\x82\x68\x20\xe9\x1a\xea\x3b\xe9\x18\x08\x54\x80\xe1\x24\x82\x47\x1e\xb7\xa5\x08\xc4\xa8\xc9\x19\x0e\xac\xcc\xde\xa9\x20\xa4\xcf\xf4\xbc\x0d\x54\x0d\x8e\x07\x95\xc5\x06\xe1\x0c\xe3\x81\x41\x90\x02\x51\x0b\x90\x73\x04\x61\x7c\x7c\xc4\x82\xe0\x92\x03\xe2\x17\xd3\x47\xc9\xdf\xea\x42\xc6\x78\xb0\x5c\x4b\x30\x02\x0e\x72\xe7\xbe\x87\xc4\x86\xfb\x1b\x86\xfa\x41\xfd\x12\x44\x1e\xe9\xae\x3f\x30\x25\x39\x4b\x3c\x4e\xb2\x7f\x6d\x08\x87\xc5\xfd\x0d\x7c\x36\xbf\xb5\x3d\x1f\xee\x1a\xfd\x1b\xa8\x0f\xe2\x14\xc0\x8b\x00\xe1\x47\x20\x7d\x15\xd7\x10\x3c\x1f\xf8\xc8\x08\xad\xde\xde\x23\xc2\x6d\x81\x25\x8d\x20\xaa\xde\xde\xcb\xaf\x88\x59\xdc\x7a\xb6\xf3\xf1\x07\xd1\x0c\x82\x11\xc4\x69\xfe\x0e\xf2\xbb\xfd\x16\xc2\x36\xe2\xe5\xd5\x41\xc7\x10\xf8\x4b\x6e\x28\x13\x63\x11\x92\xaa\x28\x14\xc6\xe2\xf2\x42\x00\xe6\x54\x71\x89\x1b\x4c\x28\x52\xe1\x06\x13\x2a\x3a\x03\xd7\x85\xdf\x7e\xab\xfe\xc9\x7a\x3c\xed\xd9\xd8\xdc\xe0\x14\x59\x3c\xdd\x66\x00\xe5\x06\xae\x32\x86\xd4\x8d\xd4\x3b\xa1\x58\x6f\x9c\x2a\xcb\x84\x2d\x82\x30\x24\x84\xa4\x32\xb6\xdc\x35\x72\xf0\x5b\x23\x29\x40\x0c\x72\xd7\x6d\xc3\xf6\x72\x63\x6b\xfc\x59\x00\xd6\x72\xa8\x13\x42\x82\x05\x30\x70\xa7\x31\x94\x6f\x64\x11\xb4\x99\x94\xb1\x0a\x71\x90\x93\x48\xe7\xdb\x57\x36\xcc\x0b\xfd\x17\x90\xf8\x10\x9b\x84\xc0\xc8\x49\xa4\x04\xc6\xf6\x82\x4e\xed\x1f\x2b\x9e\x6c\x39\x61\xa4\x53\x71\x2c\x9b\x80\x5b\xcb\x06\x40\xe4\xb7\x5a\xee\x78\x7c\xb2\x19\xa9\x95\xb1\x75\x71\x75\xb4\xef\xba\x39\x4d\xca\x70\x00\x8e\x0d\x0e\x06\x48\x42\xa4\x91\x50\xba\xf5\x58\xb7\xfd\x16\xc4\x46\x8e\x21\xb1\xca\x79\xa8\x13\x6c\xd0\x37\x36\x5d\x74\x76\xcb\x3b\xfa\x3f\xda\xe8\xe3\xe9\xfe\xa6\xaa\x09\xe6\x88\x68\x29\x21\x4f\xc5\x49\x2e\x71\xc2\xb5\xc8\x49\x24\x51\x18\xd4\xdd\xa6\x56\x75\xce\x55\xea\x2d\xc1\x05\xc5\xbd\xa7\x49\x54\x72\x28\x02\xf3\x2d\xb8\x16\x55\x16\xb8\xfd\xb4\xca\xa3\x94\xd3\xc0\x06\xd6\x63\x3c\x70\xee\x48\x11\xe9\xd9\x98\xa8\x11\x20\xde\x49\xdc\x2f\xdc\xcf\x22\x0f\x82\x31\x40\x38\xf3\xd4\x0f\x97\x3e\x09\x43\x34\x1d\xf3\xa9\xca\xc2\x36\x46\x1e\x66\x3c\x5c\xfa\x0d\x2e\x39\x11\x21\x25\x7e\x29\x76\x90\xbb\x99\xb7\x7a\x38\xda\x18\xcc\x94\x07\x39\x01\x6c\x4b\x50\xf3\x56\x2c\x65\xcc\x58\xd2\xab\xeb\xc0\x1d\x97\x7b\x4e\xfc\xa9\x27\xfa\xd4\x44\x25\x02\x38\x3c\x52\x5f\x69\xf7\x77\xdd\xf7\xb6\x7b\x86\x5f\xcf\x24\xdf\x22\x54\x97\xba\xc6\xcf\x3d\xc9\xb3\x04\xfe\x4f\xc6\x21\x11\x4b\x35\xa8\xe4\x2b\x84\xc4\xf6\xc4\x27\x83\xc8\x8d\x5d\x63\x58\xa7\x4c\x90\x06\x88\xd9\x00\xd6\xa4\xae\x6e\x70\x1f\x89\xed\x17\xc3\x20\x07\xf9\xab\xf0\xd8\x31\x70\xb1\x98\xd3\x1f\x09\x25\xa0\x33\x44\x86\x02\x51\x19\x55\xf8\x46\xa3\x3c\x61\x2f\xf9\x78\x85\xcd\x66\xd3\x46\x55\x81\xc8\x6f\x9b\x87\xd7\x32\x9c\x13\x84\x6a\x34\x15\xa9\xf4\x49\x94\x4e\xe2\x69\xc5\x20\x0c\x91\xaf\xe9\x20\xac\x10\x71\x9b\x62\x88\xaf\x82\x60\xe8\x86\x54\x39\x8c\x83\x0b\xe7\x45\xc7\x25\xa9\x11\xfa\x26\x46\x70\xb8\xd0\x19\x8c\xd4\x1d\x8b\x31\x13\x65\xa0\x59\x3f\x76\x42\xe2\xf0\x5b\xcc\xd4\xc0\x19\x62\x00\x00\x26\x75\x4f\xe0\x32\x14\x60\x7a\x62\xa0\xb8\x07\x72\x12\x63\x1d\xf0\x1a\x6c\xe6\x98\x12\x39\xc6\x03\x2b\x0e\x22\x3e\xc6\x41\x20\x39\xb8\x90\xc1\x2b\xa8\xc8\x39\x80\x96\xe0\x9b\x19\xba\x18\xc9\x21\x0d\xa2\x12\x14\xbf\x7b\x08\x5b\xa0\xcd\xc9\x6b\xea\xd8\x4e\x31\x6d\xac\x03\x58\xbd\xee\x5a\x01\x45\xd9\xbe\x32\xd6\x37\x0f\x85\xe0\x5b\xe7\x7b\x19\xfe\x88\xb1\x7d\xd1\x46\x6c\x83\xaf\xa2\x07\x87\xc8\x23\xe9\xbc\x6e\x62\xc5\x4d\xcb\x1d\x83\x0a\x73\x47\x8f\xa8\x65\x4d\xd7\xa3\x6f\x8f\xd0\xcd\xec\xae\x15\x90\x13\x30\x7f\x31\xe0\xc8\x8b\x07\xf6\x01\xa4\xea\x41\x7e\xb4\x0c\x5a\x8f\x7b\x18\xdc\xcc\x78\xd5\xdd\xd2\xcf\xab\x7e\x8b\xb1\x01\x33\x01\xa3\x16\x93\xd8\x5d\xc4\xc3\x8b\xb9\xc1\xd9\x6f\x96\xd5\x4d\x76\xca\xaa\x1d\xd6\x1c\xe7\xee\xfa\xd3\x46\x2e\x16\xc2\x36\x71\x99\x1b\xb6\xa9\x44\x85\xe0\x91\x9c\xe0\xae\xaa\x7d\x36\x75\x4e\x6b\x3c\x53\x02\xcf\x1d\xd1\x75\x07\x8b\x7c\xe8\xba\x43\x44\xd6\xc0\x75\xa7\x12\x52\x29\x66\xc7\x5b\x85\xf5\xd1\x8d\x87\xe8\xca\x31\x79\x04\x02\x6e\x0f\x97\x9e\x06\xb6\x2f\x66\xe8\xb8\x4f\x3f\x21\x87\xc7\x78\x30\x68\xe1\x86\x14\x7a\xe7\xa8\x72\xc1\x3b\x27\x48\xb5\x14\x13\xcb\x32\xe1\xb3\x62\xa6\xf1\xd8\x18\x3f\x0f\x02\xb8\xcc\xc0\x53\x27\x25\x2a\x33\x09\x86\xe8\x38\x81\x4d\xf9\x50\xcc\x29\x27\xcd\xb7\x26\xba\x2b\xee\x8e\xde\x36\x12\xe0\xa9\x08\xc9\xc3\x3e\x0f\x39\x48\xda\x9f\xa8\x6b\x78\x7c\xf4\xb6\x51\x8a\x9b\x78\x5a\x10\xae\x3b\xa6\xd1\x70\xec\x87\xc0\xa9\x93\x33\x30\x2f\xbd\x76\xf8\xed\x85\x11\x0e\x3a\x33\x3f\x9d\x37\xf3\xe5\xcc\x8c\xfd\x97\x3a\x33\x5c\x65\x6a\x77\xa2\xaf\xd1\x2e\x18\xe0\xeb\x65\xb5\x8c\xa5\x06\x45\xe1\x01\x50\x90\x90\x26\x71\x60\x2d\x52\x29\x89\x4b\x4c\x23\xf2\x45\x1c\xbb\xa1\xaf\xad\x07\x5b\x66\x7b\xc0\x81\x2a\x64\x0f\x7c\x39\xbd\xc4\xb8\xc7\x84\xca\xc4\xa3\x98\x57\xa0\x51\xd6\x85\x83\xfa\x0a\xfa\x9b\x43\x7d\x54\xfc\x0d\x39\x5c\x47\x25\xb9\x03\x44\xf1\x00\x19\xad\x39\xfa\x80\xb8\x6a\x24\x38\x5a\xe3\x55\xb3\x0c\xce\x8c\x43\x7d\x34\x14\xbb\x10\x89\x83\x10\x31\x44\x1f\x88\x63\x1d\xde\xee\xab\x7c\xe0\xa7\x49\x98\x9d\x38\x38\xa4\xd5\xfe\x71\xf3\x50\x07\x70\x84\x84\x96\xf6\x88\x30\x8a\xea\x07\x56\x1b\x42\xa3\xc4\x31\xe0\x5c\x5d\x1f\xb8\x07\x2f\xdf\x41\x74\x50\x37\xf6\x18\x70\x3c\x10\x8f\x03\xf1\x01\x00\x73\x1c\xf8\x60\x4e\xb8\x99\x03\xef\x07\x39\xad\xe3\x10\x24\xc9\x98\x21\x72\xc4\x82\x8f\xe3\x34\xfa\x06\xe3\xbc\xc4\x00\x51\x7f\x61\x60\x70\xad\x0c\x4f\x0e\xb1\x3c\x08\x20\xa8\xfe\xec\xb8\xbd\x40\xb4\xc7\xd4\xef\xc5\x3a\x78\x65\x25\x96\x27\x18\x35\xad\x99\x27\xf1\xc3\x26\x8f\x18\x2e\x3a\x81\xa3\x79\x9c\x40\x63\x2a\x7b\x84\xbb\x4e\x23\x74\x7a\x9c\x04\x37\x57\xd7\x72\x1a\xc8\x92\xef\x9e\xc5\xe8\x27\xfc\x16\x27\x7e\x22\x29\xc4\x49\xe0\x3f\x02\xfc\xc5\x49\x42\x13\x1f\xd2\x13\x73\x3d\x98\xc2\x38\x1b\x52\x04\xe7\xf3\x24\xee\x57\xda\x3f\xc0\x63\x30\x70\x71\x1a\x7b\x8f\xcb\x84\x3b\x50\x9d\x3c\xb6\xb8\xeb\x74\xd7\xf6\xc4\x41\x5c\x45\xf6\x89\xbf\xad\x3a\x39\xdc\x78\x82\xb4\x59\x81\x1b\x4f\xfa\x38\x9c\xc1\x43\x81\x51\xe4\x44\x97\x86\x07\x43\x9c\x44\x1b\x21\x58\x61\x9c\x69\xa8\x28\xc6\x09\x56\xcc\x8b\x8b\x1b\x4f\x95\x03\x3b\x89\x36\x42\x2c\xb4\x38\x13\xf7\x21\x08\xc6\x89\x31\x43\x63\xd2\x69\xae\x05\xc7\x46\x40\x02\x22\xf7\x86\x9e\x3a\x5a\x00\x4f\x2c\xec\x84\xe8\x09\x3c\x6f\xfa\x37\x66\x0c\x78\xdd\xb5\x02\xe3\x85\x2f\x76\x9c\x46\x7b\xe6\x3c\x9c\xea\xb1\x5c\x5b\xa0\x2b\x5a\xe4\xf1\x7a\x69\xc5\xbd\x3b\x45\x35\xd0\xe7\x09\xae\x14\xfd\xd9\x49\x4c\x7f\xfc\x61\x03\xaf\x97\x20\xbc\x7a\x9c\x44\x21\x01\x34\x1b\x9f\x47\x8b\xfd\x68\xcc\xf0\xb7\x5a\xc0\x8b\xf5\x88\xc6\x70\x81\x27\x1c\xaa\x8f\x1e\x1e\x2d\xad\x6e\xbf\xc2\x99\x85\xee\x2e\xd5\x4d\xc3\xdd\x65\xf7\xe3\xc4\x10\x4a\x07\x0e\xde\x8b\xb8\x5f\xa1\xdb\x09\x8e\xe0\xf1\xb9\x82\xb0\x39\xba\x73\x48\x84\x2e\xa3\xb9\xf2\x5a\x5f\x10\xb6\x64\x91\x2e\x14\xca\x38\x25\xc7\x55\xff\x96\xf4\x24\x2e\x02\xd8\x11\x1f\x3c\x70\xe1\x08\x62\x7a\x05\x2e\x19\x7d\xe3\xbb\x97\x08\x65\x0e\xe9\x85\xce\x46\x4b\xd0\x05\xb7\x07\x70\x31\x74\xb1\xd8\x38\xb0\x57\x37\x05\x16\xdf\x12\xa7\xc5\x6b\x74\xa1\xf0\x25\x19\x4a\x5c\x5d\x58\x01\xdf\xed\xbe\x7c\x96\x89\xd5\x8e\x68\x70\x75\xb0\x32\x70\x18\xb8\x64\x84\x8a\xd7\x0b\x48\x08\x81\x0e\xe3\xf2\xf0\x3a\x1e\xb8\xc3\x0d\x4b\xe5\x95\x62\xd7\x68\x9f\x06\xa9\xa4\x1f\x13\x91\xa0\x4b\xbb\x12\x03\x03\x97\xe3\x22\x54\x8e\xa2\xe8\x95\x9a\xc1\x99\xbb\x21\x96\x39\x5c\x17\x4a\x61\xa2\xe9\xc6\x45\x62\x11\x8d\x04\xd7\xe2\x32\x43\xa5\xea\x35\xf4\x19\xb4\x1e\xe7\xfe\xef\xb7\x98\xd9\x39\x74\xd7\x40\x6c\xe4\x80\xeb\xed\xa1\x35\xed\xd2\xcf\x91\x33\x70\x21\x82\x15\xe7\xb2\x38\xd4\xa6\x12\xff\x22\xe8\xe4\x70\xcc\xe0\xc3\x2a\x2f\xf4\x25\x30\x12\x9d\xca\x35\xd5\x1b\x59\x8f\xd5\x1b\x91\x0a\x4f\x91\x26\xc4\xe3\xe2\x75\x17\xfe\x73\xe9\x42\xc6\xa1\xd6\x0b\x44\x1d\xea\x85\x7b\x18\xe1\xc9\xe3\x82\x48\x03\xa8\x8e\x0b\xa5\xb0\xca\xe5\xeb\x84\xb3\x74\x8f\xf4\xbd\x75\xee\xb8\x93\x11\xe6\x39\x2e\x2f\x16\xc4\xfb\xba\x04\xbe\x5a\x2f\xa7\x45\x9f\x46\x97\xed\xb6\x41\x5d\x30\xad\x17\x94\xcb\xda\x62\x0d\x07\x8b\x19\x97\xd1\x65\xbd\x0b\xc4\xdf\x22\xf8\x41\x5c\x44\x21\xd9\xfc\xd6\xa3\x95\x9f\xf6\x18\x7b\xd4\xff\x5d\x8f\x09\x44\xf8\x2d\x86\x9f\xdd\xbb\x80\xce\xf8\xbb\x3b\x8f\x3a\x45\xe6\x82\x35\xfc\x1b\xff\xa3\x61\x83\xdf\x7e\xe1\xb3\x2c\x73\x1e\x38\xf3\x37\x6a\x16\x09\xf3\x4d\xa8\x2b\xc5\x76\x3c\x57\xba\xc6\x0f\x3c\x54\x7a\x83\x70\xde\x66\x9a\x63\x3c\x37\x6a\x16\x0d\x2a\xf7\x8e\x0e\x0c\xe2\x77\x17\x02\x27\x4c\xcb\x10\x36\x1e\x67\xbd\x58\x94\x82\xee\x22\x96\x6e\x8d\xff\xe6\x51\x72\x9c\x37\xa1\x87\x3c\xe7\x77\x35\x70\x67\x50\x86\xeb\x62\xef\x6e\x5c\xb6\xe4\xaa\xef\x0a\xcd\x99\xb6\x37\xf2\xcb\x2f\x75\x66\x37\xd6\xcc\xe6\xc0\x75\xfc\x65\xb1\x6f\x14\xb5\xe2\x42\x6e\x2e\xbd\x26\xd3\xbb\x6b\x31\xe1\x23\xbc\x58\x84\x3d\x8e\x3b\x04\xa6\xd2\x1e\x04\x34\x2e\x25\x71\x87\xa8\x79\x26\x0a\x08\xd3\x03\x7b\x8b\x59\x81\x38\xdd\x58\x7c\x00\xe2\xc6\xfd\xb1\xc7\xb4\x4f\x2f\x1f\xe3\x21\xea\x44\xba\x09\xe8\x4b\xc4\xd6\xdc\x1f\x50\x93\x85\x41\xc1\x1a\x6e\x9a\x66\x79\xc7\xc0\xeb\x85\xc3\x77\xdc\xfa\x96\x42\x84\x6e\x00\x9c\xf8\xa0\xc5\xbd\xb8\xa2\x4e\xa8\xec\xb8\x51\xb6\x76\x37\x10\x9f\xd3\xe9\x02\xa3\x53\x11\x1c\x78\xf3\x92\x91\x2d\x27\x6e\x5e\xb2\xe1\x66\x02\x36\x16\x3f\x74\x5f\x12\x60\x7e\x2b\x57\x94\xd6\x2b\xba\xd2\x1e\x31\x10\xc4\x7a\xdc\x17\x8a\xec\xb0\x8c\x11\x85\xcb\x74\xf3\x7a\xf9\xfa\xde\x17\xc6\x06\xd7\xf3\xc6\x05\x08\x0e\xe0\x46\xf4\x2b\x1e\x46\x21\x24\xcd\x7a\xc2\x36\x3b\xfe\x5b\x9d\x13\x63\xd6\xa2\xea\x5e\x3c\x8a\x36\xec\xe9\x43\x7b\xb8\x6d\x5c\x83\xe2\x3b\xd4\x9a\xee\xb9\x34\xb8\x06\x75\xe1\x00\xba\x03\x11\x3d\x24\xee\x97\xbd\x80\xa3\xd2\x1d\xe8\x5b\x1f\x23\xcd\x7a\x30\x5f\x63\xf1\xdb\x1e\x9c\x16\x04\xfe\x06\xcc\x89\xff\x60\x3c\x86\x5d\x82\x0b\xd7\xd5\x47\x2e\xfc\x01\x9c\xa9\x1e\x05\xb7\x9f\x2a\xa6\xea\xd1\xab\x80\x3e\x9f\x42\xdc\x2c\xd6\xed\x29\xc2\x52\x26\x65\x38\x57\x1e\xdb\xa7\x08\xc9\xb1\x0d\x5e\x23\x10\xd4\x87\xd4\x6e\x8a\xd8\xba\x0c\x35\xc6\xf6\x18\xaa\xbc\xfa\x5b\x8c\x4f\xd3\xb2\x19\x95\xf9\x6e\x85\x9b\xe1\x3c\x3f\x15\x49\x00\x25\x3b\x6e\x45\xa1\x2a\xe0\xd1\x92\xeb\x77\xe1\x38\xf1\x78\x88\x07\x9f\x4a\x01\xa5\xcf\xa7\xae\x19\x94\x79\x54\xe1\xf8\x4d\x9e\x22\x07\x8c\xbb\x51\x13\x76\xf4\x34\x55\x43\x8c\xd9\x50\x45\x7e\xb7\x83\x51\x83\xb3\x31\x49\x0a\x91\x9f\xe3\xe9\x58\xf6\x5d\x5b\xee\xb2\x0c\x02\x49\x52\x82\xf8\x76\xa1\x4b\x92\xd2\xc2\x83\x67\x03\x01\x2e\x83\x84\x29\x29\x07\xf9\x20\xea\xfa\x08\x3c\xb8\xd2\x11\x1d\x3a\x70\x4f\x0a\x45\xda\xc7\x00\x15\x7e\x97\x8c\x61\x1a\xde\xbe\x44\x27\xdc\xf7\x87\xc0\x12\x5a\xd8\xf1\x04\x6a\x42\x36\x1e\x42\x8d\x4d\xf7\x77\xc2\xa5\xf5\x5f\x5a\x33\x49\x5c\x12\xb2\x94\x24\x2b\xe9\x2a\x4f\x9f\x83\xd0\x3a\x50\x4f\xdc\x87\x82\xa8\x92\xf1\x70\x89\x15\x4f\x1e\x52\x55\xc9\x2a\xe3\x3e\x14\x38\xb9\x06\x49\x49\x9a\x08\x6b\xdc\x84\x9a\x0a\x50\x13\x91\xec\x9b\x65\xc3\x45\xd3\x5e\x8b\x86\xdf\x22\x22\x65\xf3\x30\xf2\x22\x12\x1a\x28\x1e\x42\xca\x68\x79\x7c\x40\x55\x13\xad\x34\x70\x25\x0a\x95\x92\x8f\xb0\x08\x5e\x8e\xe7\xd1\x78\xc0\x5c\xb0\x72\x8a\xca\x7f\xb8\x58\x02\x29\x1f\xfc\xec\xd2\xc3\x88\x28\x2d\x37\xa3\xdb\x0f\x7e\x67\xf1\x6e\xb8\x18\xb1\xc0\xe4\x61\x4c\xc5\x4c\xdc\x7e\x9a\xe2\x39\x6e\x3f\x95\xd8\x60\x61\x8e\xc5\xf9\x95\xc1\x1b\x71\x39\xc8\x99\xd8\xc2\xdf\x16\xc3\x0c\xd3\xe6\x83\x3f\x0c\xca\x10\xad\x61\xbd\xa9\xfe\xf8\x2d\x2e\x3d\xe2\xe4\xc8\x75\x98\x64\xa5\x0d\x92\x89\x04\x11\x3d\x82\x3c\x86\x81\x6f\x60\xbc\x70\xae\x72\xb4\xa6\x03\x14\xd3\x46\x0a\xc0\x2a\xe1\xd1\x75\x47\xe3\x0d\xa9\xfe\x9a\x87\x97\x64\x1f\x3d\xbe\xf6\x5a\xbb\xf8\x6e\x37\xe2\xae\x6d\x4c\x95\x47\xff\x7a\x1e\x20\x32\x98\xae\x8f\x10\x49\x61\x9a\x3d\xa2\x3f\x04\x69\xf6\x42\xd5\x04\xee\x3a\xd5\xc7\xc7\xc4\x1f\xe4\x95\x0d\xd3\xe0\xe9\x9d\x40\x1a\xbc\xae\xd5\x92\x84\x20\x4d\x4e\xda\x24\x20\x2a\xb5\xbf\xc4\x1f\xae\x21\x1c\xa7\xde\x1e\x24\xf5\x88\xe1\x1a\x0e\xd1\xeb\x8c\xc1\x0b\x64\xff\xe8\x41\x85\x18\xe0\x7e\x53\x89\x40\x11\xa4\x7f\xcb\xb0\xcd\x21\x74\x85\x31\x00\x5a\xf6\xf1\xc4\x4b\x26\xa7\xe3\x21\xc1\x87\x62\xa6\x69\xdb\xc8\xa5\x11\xa6\x6d\xdb\x3c\x1b\x40\x0c\x8a\x73\xc4\xd2\x47\xf2\xe7\x78\xc1\x93\xf9\x10\x91\x6e\x2d\x15\xc1\x48\x02\xd2\x54\xca\xe3\x55\xd3\xf0\xdb\x0d\x93\x7d\x90\x57\x20\x5e\x38\x42\x0d\x2d\xaf\x71\xfe\xec\xf3\x56\xe7\xca\x5c\xf0\x24\x10\xca\x44\x4e\x8e\x90\x18\xbf\x8f\x77\x84\x71\x3e\x32\x1d\x8c\x13\x9f\x56\x42\x1b\xc5\x0b\xfc\x47\x28\x07\x79\x3b\xf2\xab\x7f\x05\x81\xb3\xb6\xaf\x20\xde\xf9\xbb\xbf\xcf\x8d\xfb\x82\x65\x39\x37\x22\x86\xa0\xdf\x4d\xf3\x73\x90\x48\x25\xc9\xcf\xd1\x71\xca\xcf\xed\x73\xdc\x4f\xca\xdc\xa3\x45\x5b\x72\x33\x59\xfe\x7a\x70\x72\xc3\xc3\x00\xc4\x42\x6e\xbb\xb0\xaf\x5f\xe9\xcc\x92\x84\x1d\x89\x3b\x53\x6e\x86\x7c\xd9\xed\x8c\x28\x15\xc9\x40\x88\x9e\x4a\x36\x9b\x24\x91\x47\x10\x71\x34\x49\xe4\xd1\x39\xe0\x49\xf2\x8e\xe4\x62\xe5\xf6\x59\xfa\x98\x28\x96\x3e\x50\xf6\x89\xab\x4f\x6c\xb6\x37\xf6\x52\x65\x42\xe0\x8a\xea\x64\x42\xcd\xe8\x09\xb4\x21\x7e\x12\x8a\xe9\xdc\x8c\x43\x16\x7c\xb7\xeb\x7f\x47\x9f\x78\x12\xa0\x6c\x4d\xdc\x78\x5a\x0c\xc6\xc9\x2b\x32\x5c\x30\xc4\xbd\xd9\x68\xa3\xae\xa2\xd0\x26\x0d\x68\x48\x3f\x84\x25\x46\x89\x99\xb8\xe5\xd4\xaf\x1f\x90\xc8\xd5\xf6\x72\x6f\x93\xf2\x54\xb9\xcc\x6f\x45\xf4\xdb\x86\x08\x20\xe8\x48\x12\xb7\x9c\x0a\x77\x92\x1b\x86\x01\x82\x18\x26\x2e\x37\x1d\x84\x78\x6e\x66\xb2\x72\x6c\x3a\xe8\xfb\x5b\xb1\x74\xae\x15\x97\x26\x1d\x1b\xba\x31\xb2\x2d\x25\x89\x39\x62\x38\xce\x53\x68\x06\xed\x11\xcd\x08\x77\x93\x1b\xc0\xe3\x66\x1b\xd2\xd0\xa1\xfc\x4d\x12\x73\xc4\xe6\xfe\xde\xfa\x51\x72\x00\x09\x25\x5e\x3d\x5c\x84\x27\x02\xf2\x90\x9b\x01\xf8\x92\x7e\x00\xfa\x92\xb6\x2d\x71\x9b\xc9\xef\xbb\xaf\x29\xe2\x56\x9f\x24\xd4\x48\x40\xb9\x49\x12\x8d\xce\x2b\x9b\xfb\xe6\x45\xa1\x7e\x37\x30\x5f\x52\xc6\x90\x10\xd6\x6b\xde\x5f\x7d\x9a\x5c\x03\x03\x40\x92\xe9\x3f\x8b\xf5\xc6\xbd\x5b\x1c\x5b\xee\x60\xda\xf0\x01\xcc\x2f\xf9\xc5\xe2\xb4\x92\x9c\x16\x0d\xaf\x91\xc4\x5b\x25\xbf\xf6\x9f\x87\xca\xa0\x8c\xa8\xcb\xb9\xda\xb1\xf0\x22\xfe\xe4\xae\xcf\x66\xa3\x1f\x33\x3b\x25\x63\x30\x7f\xeb\x22\x0c\xb9\x1b\xdf\xce\x7e\x02\x31\xdc\xdf\x7e\xb0\x11\xda\x0b\x1b\x49\xeb\xd9\x2f\xc7\xf6\xe5\x60\xf5\xb7\x80\xc9\xa7\xf5\x70\x3c\xdc\x23\xbc\x52\x3a\x8e\xe9\xb9\x0f\x23\x9e\x58\x46\x1c\xe3\xce\xe2\x89\x12\x44\x12\xc9\x9d\xbc\xa2\x58\xba\x93\x5c\x14\x89\x07\x43\xe2\x7d\x12\x88\xb1\xf9\x9b\xc7\x09\xfd\x4c\xa3\xba\xf0\xad\x03\xe0\xba\x63\x23\x17\x27\xf1\xdb\x72\x3f\x79\xd8\xfd\x2d\x22\x3c\xae\x53\xb9\x8b\xd7\x74\xaf\x71\x65\x04\x78\x9c\x78\x8a\x34\xb2\x36\xa5\xf9\x27\x40\x17\xe4\x7e\x19\x09\x85\x32\x56\x5a\x1e\xf3\xdc\x6f\xb3\xb2\xd3\x5e\x10\xfb\x64\xbf\x20\xd8\x58\xc3\x73\xbf\xa5\x1b\xbf\xb2\x66\xe6\x0e\xde\x8b\x38\x61\xb9\x0b\xd4\x0c\x06\x45\xc6\x18\x10\xd9\xb9\x13\xee\x1a\x77\x91\xdc\x1f\x23\x4c\x52\xd6\x89\x79\xf0\xc1\x57\x5f\x2a\x7e\x0b\xd5\x2e\x1e\x1c\x70\x5d\xe8\x21\x12\x17\x94\x84\x95\x4d\x92\x53\x24\xd0\x80\xc4\x8d\xa4\x39\xa1\xa2\xbc\xce\x85\xd6\x15\x04\x87\xec\x2c\xb0\xfa\xb8\xd6\x64\x29\x12\x1e\xda\x57\x59\x56\xfa\x44\x46\x2f\x1c\x84\xa2\x53\x32\x87\x0b\xb7\x10\x13\x0e\x27\xc9\x23\x3a\xc1\xe6\x92\xe4\x11\x26\x1f\xce\x82\x55\x0b\x30\x61\xe2\x3a\x12\x38\xbf\xa6\xee\x22\x40\x12\xb2\x90\x31\x06\x1f\xcf\x34\xc1\x04\xc9\x84\x53\x77\x11\xb8\xc9\x2c\x1f\x22\x7e\x1d\x96\x82\x7f\x25\xae\x23\x89\x5b\x48\x23\x13\x4e\x16\x2e\x07\x69\xb4\x92\xa4\x12\x26\x37\x4e\x92\x4a\x74\xb0\x5f\x59\x8c\x23\xc5\x45\x27\xc1\x44\xf3\xb5\x2b\x86\x4f\xe1\x40\x15\x92\xc2\x00\xe2\x4d\x12\x4f\xb4\xe1\x38\x51\x3a\x57\xe7\x88\x78\x8e\x88\x9d\x24\x98\xa8\x60\xf2\x12\x97\x92\x8e\xce\x26\x0b\x16\x5e\xc0\xd2\x59\x0e\x94\xad\x3b\xed\x0f\x08\x43\x67\xcc\xba\x4b\xf1\x40\x15\xb8\x73\x1f\xa5\x72\xb9\x3e\xb4\x21\xb5\x18\x62\x51\x96\x4b\x6e\x98\xf5\xbf\x0c\x26\x48\x9b\x1b\x8e\xc1\x75\xbb\xc1\x69\xb9\xce\x88\xc6\xe1\x5e\x1b\x7a\x88\x47\xac\x10\x32\xa8\xbb\x86\xaf\x56\x60\xce\xc6\xab\xda\x81\x31\x00\xed\x91\xf0\x97\xd7\xd0\xec\xeb\xb7\x75\x93\x9b\x59\x63\x30\xe7\x01\x31\xd2\xb2\x0a\xbd\xe1\x3c\x54\xd0\xe8\x04\x19\xcc\x0a\x0c\x67\xd8\x1e\xfd\x10\xae\x4a\x59\xd5\x09\xb1\x5f\x55\xf7\xa4\xad\x51\x46\x79\xed\x6f\x11\x09\x09\x33\x9f\x55\x17\x41\xd6\xdc\x7c\x06\xc0\x70\x16\x19\x80\x3b\xa1\x7f\xa1\x31\x10\x21\xf3\x13\x6c\xb6\xc7\x2a\x3a\x6d\x1f\x9e\x19\xda\xe0\xb0\x4e\xa6\xaf\x34\x97\x00\xba\xba\xc4\x5b\x22\x01\x18\xa7\xf9\x03\xe0\x32\xb3\x0a\xc4\xe5\x0e\xea\x39\x41\xd2\x96\xc4\x73\x22\x31\x3e\x25\xf9\x03\x4c\xa0\x9d\x75\x98\x42\x95\xb1\xa1\x67\xf5\x9c\xe3\x39\x61\x62\xed\xac\x83\x90\x5c\x95\xb1\x0d\x99\x1a\xfa\x84\xd3\x25\x38\x63\xe2\x45\x51\x89\x43\x96\x95\xc0\x12\x85\x33\x6f\x4e\x02\x82\x3f\x26\x79\x08\x9a\xfb\x8b\x87\x44\x54\x1e\x31\xbc\x22\x62\x77\xbe\x5a\xf9\x79\xfc\x2b\x00\xf8\x45\xe0\x7f\x41\xcc\xea\xe7\x68\xcb\x00\xcd\x46\x0c\xc5\xc7\xad\xa2\x0d\x3f\xce\x21\x6d\x4e\x0e\x6a\x3b\x5c\xec\xcb\x2c\x31\x2c\xde\xa7\x24\xb5\xcc\x8b\xee\x42\x5e\xc0\x22\x20\x36\xb8\x5b\x54\x12\x73\x64\x25\x9a\x28\xa6\xfe\x24\xbf\x6c\xfa\x42\x57\x62\x6b\x01\x96\xcb\x4a\xd8\xe6\xe1\x21\x7a\xd4\xcd\xd0\x0f\x51\x46\x81\x39\x64\x15\x7c\xeb\xe2\x41\x8c\xd3\xc5\x80\x85\xce\xef\xb7\x58\xdc\xa0\xf8\xb8\x70\x34\x44\xda\xc4\x3d\xa3\x61\x11\xcb\xfa\x7a\x60\xf9\xad\x96\x5c\x5e\xac\xfa\x9a\x31\x7d\xd5\x37\xd8\x69\x74\x03\x49\xee\x81\x3a\xf9\x6d\xdb\x38\x44\xf4\xd9\x60\xad\x11\x69\xb3\x6d\x3e\x08\xfe\x16\xb4\x35\xf3\x6a\xbb\xba\x46\xcb\x3a\xd3\xaf\x71\x92\x27\x20\xc8\x5b\x90\xad\xa8\x0f\xa3\x4f\xc4\x52\x82\x66\x66\x03\x34\x8b\xf5\x27\xc9\x25\xd0\x88\xd7\x95\xad\x68\x90\xd8\x29\x63\x01\x9c\xfe\x16\xbc\xdd\x66\x7b\xf4\x85\xbb\xed\x11\xfd\x9a\x7d\x12\x97\x0e\xc2\xd3\x3e\x8e\x87\x31\x54\x38\x5d\x2e\x4a\x03\xf7\xb6\xb9\x0e\x28\x73\xb1\xd2\x66\x03\x03\xd7\x9c\x17\x10\x1e\xc2\xd1\x64\x13\x70\xbb\xfb\x5b\x41\xc5\x6b\xdf\x1b\x86\x1c\xbc\x31\xb2\x35\x89\x34\x6d\x48\x68\x52\x1d\x27\x21\x68\xc8\x28\x95\x0d\xf0\x6d\x71\x2e\xa6\xc1\x63\xaf\x1b\x01\x07\x51\xb8\x67\xeb\x46\xd9\xb0\x8c\x02\xfa\x6b\xa3\xa4\x41\xff\x70\x54\xe0\xdb\xb2\xc9\x51\x0d\xeb\xe1\x4e\xe0\x2a\xf0\x7a\x69\x58\xc6\xb3\x85\x7e\xca\x8c\xd9\x6c\xf7\xdd\x7a\x22\xeb\x3a\x5f\x60\x14\xdf\x5a\x85\xe7\xcd\x32\xa9\x19\x3b\xdf\x02\x6f\x47\x90\xcd\x6c\x46\x9f\x71\x5e\x9f\x21\x87\xfa\xc1\x3a\xbb\xfe\x10\x12\xa0\x43\xd9\x70\xc1\xc2\x4a\x98\x0d\x42\x82\xbb\x60\x36\x93\x95\x40\x84\x9a\x96\x6e\xe7\x88\x27\xcd\xf0\x3c\x90\x84\x28\x1c\xcf\xa1\x3a\x88\xdf\x1e\x1a\xe1\x98\xd7\xa1\x04\x62\xbd\xd6\x73\x7e\x8b\xdb\x15\xfa\xad\x6c\x87\x0c\x05\x6d\xc0\xcf\x49\x13\xf0\xb0\xe9\xfd\x2b\xc3\x45\xf1\xd0\xb5\xd3\x88\xbb\xcc\x0b\x40\xbe\x84\xaa\x61\x8c\x01\xed\x90\x0d\xdd\xb0\x92\xcc\xe7\x61\xe3\x9a\x63\xc1\x44\x57\x9d\x78\xd2\x04\xd6\xed\xc4\x93\xa6\x8e\xf2\x4b\xce\x0c\x37\x9b\x44\x3f\x91\xed\x16\x10\x48\x59\x99\xdb\xcb\x6a\x68\x1a\x17\x66\x11\x95\x54\x8c\xc2\xe5\x26\x14\x2b\x48\xd6\x10\x58\xd9\xb2\x11\x8e\xa6\xb1\x51\xdd\xb0\x33\x10\x21\x5c\x68\xaa\xec\x65\xdf\x59\x60\x2e\x6b\xdf\x0d\xbd\x5c\x29\xe3\x38\xce\x44\x3b\xa2\x07\x3a\x80\xec\xbb\x0a\x62\xeb\x0d\x31\x44\x3f\x45\x57\x93\x49\xd9\xe8\x12\xb4\x21\x69\x08\x20\xc3\xec\xc5\xb0\x3f\xb6\xc1\xd2\x64\x9f\x5e\x6e\x38\x9b\xae\xe3\x2f\x5c\x29\x09\x20\x02\x7c\x5b\x76\x32\x5e\x77\x36\xa1\x57\xa2\x5d\xc0\x15\xe1\xa2\xd3\xf0\x3b\x4b\x5d\x74\x88\xe7\x94\x5d\x3f\x47\xe7\xf5\xc5\x94\x67\x3c\x88\xcf\xf8\x3f\x26\x6e\x36\x81\x7f\x68\xe2\x66\x13\xe8\xd2\x92\x84\x11\xad\x40\x44\x3b\xf8\xb9\x69\xfb\x2e\x21\xb4\x0d\xd0\x89\x69\x1b\xc2\x66\x3b\x2f\x53\x85\x71\x18\x71\xc5\xc9\x70\x4d\x08\x78\x07\xee\x27\x71\xc5\x19\x60\x83\xb2\x07\xc4\x86\xbd\xeb\xba\xa8\x41\x5c\xbb\x19\x84\x8a\x65\x23\xa6\xd2\x1e\x0b\x2c\x49\x7d\x13\xf7\x9b\x86\xa2\x3c\x7b\x1a\x66\xc7\x7a\x80\xa9\xf6\xb9\x5e\xfa\x0a\xe0\x36\x71\xb9\x09\xfc\x04\xd3\xe4\x14\x38\x22\x67\x1f\x66\x31\xb7\x3d\xc6\x89\x62\x59\xf5\x05\xfd\x13\x4b\x0f\x9d\x4d\x92\x7f\xa2\xab\x83\xc1\x85\xa6\x76\xf7\x9a\x58\x7a\xd3\x33\xf6\xf9\x08\x33\x66\x9c\xec\xbb\xe3\x3c\xc9\x28\xc5\x23\xd0\xf1\x1d\x6e\xd3\x36\x18\x4e\x20\xf0\xb8\xd0\x04\x50\x82\xc4\x85\xa6\x81\x2f\x4c\xbc\x64\x82\x10\x43\xd9\x4f\x71\x90\xd4\x7f\x8f\x3c\x63\x13\xcf\xd7\xad\xc7\x4f\x96\x0b\xdd\x8d\x14\xe3\xbe\x20\x52\x0d\xe7\x7e\x6b\x04\xe2\x5b\x37\x5e\x20\xf6\x89\x21\xa7\xda\x0f\x0f\x7e\xb8\xef\xf8\x57\x62\x90\xc8\xfe\x10\x8c\xa1\xd0\x3f\x00\xd7\xe2\xfe\xbe\xd4\x3b\xf7\xd7\xfe\x6d\x43\xc0\x4a\x1e\x8a\x8e\xe3\x3e\xba\xea\x8c\x8d\x87\x6b\xb3\x8c\x3b\x16\x77\x30\xb4\x6c\x72\x07\xf1\x44\x09\x00\xd2\x89\x27\x4a\xe2\x7b\x9b\x01\xac\x86\x20\xad\x19\x62\x55\x77\xcb\x62\xce\x92\x32\x77\x90\xb3\x8a\x07\x49\x43\xaf\x9c\x78\x8d\x34\x8c\x85\x19\x0d\x11\x9b\xf1\x07\xae\x68\x44\xc4\xcd\x80\x5b\x05\xb3\x98\x41\x7a\xbc\xad\xfc\x52\x67\x16\x60\x6b\xb0\x74\xa4\xee\x22\xb8\xf4\xa4\xee\x1f\x60\x4a\x32\x90\xe9\x89\x4b\x9e\x21\x8b\x0b\x31\x0b\x2c\x17\x44\x22\x48\xdc\x39\x6a\x3a\x21\x50\xdb\x44\x25\xcd\x40\xb1\xab\xde\x05\xd7\x8e\x70\x13\xc2\xc3\x0e\x47\x82\x9b\x47\xaa\x53\xc1\x9d\xa3\xca\xf9\xe1\xce\x51\x93\x0d\x09\x12\x34\x78\x59\x4d\xea\x01\x76\x2d\xe3\x04\x94\x68\x3f\xa7\x56\x0f\xda\x10\xcd\x15\x65\x6b\x86\x80\x3d\xc4\x34\xdc\x2a\x3a\x61\x6d\x32\x48\xd6\xe0\x0b\x41\x12\x90\xc0\xc4\x9d\x61\xa4\x56\x88\x13\x2e\x16\x15\x0f\x89\x34\xf1\x87\x5c\x08\x2e\x16\xad\xb8\xf9\x04\x19\xec\x6e\x88\xe9\xe8\x78\x59\xe3\xf1\x45\x64\xfc\x8f\x97\x89\xf6\x8f\x84\x8a\x8d\x22\x22\xab\x44\x37\x30\xbf\xe3\xbe\x95\x78\x5a\x34\x2c\x74\x89\x77\x45\xa8\x3f\xf8\x3c\x2a\x38\xec\x7a\x4e\x7c\xeb\xa6\x33\x3a\xf5\x29\x07\xc9\x01\x24\xb1\x48\x53\x27\x87\xb7\x44\x12\xda\x28\xf1\x96\x68\x80\x12\xd3\x24\x23\x84\x4c\xce\x44\x27\xaa\x2e\x27\x31\x5a\x28\x86\x64\x91\x6b\x5f\x73\xcf\x6a\x0a\x34\xda\x54\xbd\x1f\xf8\x6d\xf5\x15\xe7\xbb\x84\x70\x01\xce\x93\x24\x10\x49\x72\x24\x24\xc9\x41\xd2\x07\x21\x21\xcc\x44\xca\x48\x92\x80\x74\xe2\xde\x65\xa2\xfb\x24\x39\x4e\x92\x04\xa4\xe1\x3a\x95\x89\x1e\x14\x7f\xc3\xcc\x44\xb1\xce\x39\xc4\x33\xa0\x92\x7b\x34\xf1\x0c\x88\xcd\x3e\x87\x84\x7f\xad\x73\xe2\x9f\x98\x88\x42\x09\x07\xa3\xce\x2f\x0f\xf3\x63\xf2\x5b\xa2\x10\x13\x75\x36\xf3\x20\x1f\x2b\x84\x01\x44\x7f\x05\xa7\x95\x20\xfa\x1b\xf0\x90\x4c\xc3\xb1\xdb\x0f\x58\xab\x70\x6d\xd7\x39\xac\x24\xac\xce\x5c\xa2\x74\x16\xd7\x4d\xb8\x13\x0f\x72\x7e\x49\x79\x58\xb7\x47\x97\x30\xc6\x09\x64\x43\x2e\x3c\x91\x3a\xe6\xd7\x06\xe4\x3e\x67\x2c\x1f\xad\x96\xb6\xc1\xf7\xb6\x5a\x86\xc3\xb6\x7f\xac\xcc\xe0\xea\x92\x3c\x1f\x9d\x80\xa4\x29\xfa\x1e\x8b\xe7\xba\x4d\xf4\xbf\x53\x46\x0c\xe7\x2c\x91\xab\x23\xc9\x3f\x91\x03\xdf\x5b\xcf\xd5\xc0\xf8\xd4\xfb\xa4\x8c\x81\x84\x33\x36\x1a\x60\x5d\xee\x23\xf9\x36\xba\x3a\xc2\x81\x3e\x5b\x42\x3b\x02\x62\x06\x6d\x19\xfa\xb4\x42\xf0\x46\xd8\x9e\x32\x51\x36\x08\x6d\x94\x82\xdb\xd5\xe1\x0d\x1e\xc3\xac\xbf\x8a\x34\x9b\x03\xbc\x11\xfe\x59\x39\x00\x70\xaa\xf3\x18\xbe\x94\xb0\x88\xc3\x50\x36\x2c\xde\x30\x99\x2d\x22\xd5\x38\xb8\xa0\xd6\x7f\x6c\x2a\xbf\x25\x22\x80\x0a\xfa\x71\xba\x18\x2c\x00\x4a\x43\x12\xf9\x26\xc8\xf4\x06\x28\x31\x07\x98\x1e\x5f\x77\x90\xe9\xa9\x82\x9b\xa4\x18\x15\x27\xdd\x1c\x28\x0d\x55\xdc\x83\x22\x6f\xe0\xdb\x92\x04\x16\x55\x02\x4c\x02\x8b\xa6\x48\x35\x5e\x52\x7f\x41\x18\x48\x5a\xd1\xd4\xcd\xcc\x0d\xd7\x1d\xc6\xf9\xa1\xc5\x99\x3b\xc9\x29\xba\x46\x02\x92\x4a\x34\x5c\x3b\x92\xa4\x12\x8d\xf4\xfa\x39\xf5\xea\x87\x20\x4d\xc4\x28\xc2\x0c\x27\xc9\x23\x3a\xd1\x5c\x73\xa2\x63\x23\xa0\x64\xce\xe6\x86\xd0\x5e\xbf\x45\xfb\xe9\x8a\x5a\x8d\x32\xd1\x53\x79\x1d\x41\x91\x07\x11\x2b\x72\x9a\x4d\x1c\x1d\xcf\x34\x59\x2b\x2f\xdc\x84\x1b\xf3\x25\x9b\x1e\x16\x88\xd0\x34\xdd\x17\x6b\x08\xba\xbc\x13\x2c\x2f\x27\xc0\xce\xca\x05\x05\x5d\x9e\x8a\xba\x20\xca\x03\xb7\xb4\x9c\x46\xa3\x70\x0c\x70\x57\x58\x30\x73\x0e\x7d\x4b\x69\x0f\x8c\x45\x5d\xe3\xfc\xf4\x25\x96\xd1\x9f\x71\x81\x26\x5c\x94\x5c\xce\x3c\x58\x4f\xc7\xff\xe9\xde\x98\x3b\xf1\xf3\x88\x1b\x97\xa0\xc8\x9b\xfa\xc5\x69\x44\x62\xe7\x88\x91\x43\x71\x86\x5c\x0e\x41\xda\xb6\x9c\x24\x3d\x26\x54\x4e\x9a\xcb\x81\xe8\xc4\x39\x79\xc4\xaa\xdf\x35\x0a\x31\x0f\x08\x08\xf4\x5e\x1c\xdb\x45\x80\x3f\xd7\xc1\xec\x55\xee\xc5\x25\xdc\x80\x7a\x33\x94\x3b\xe6\x5b\x03\x0f\x73\xbc\x15\xab\xe9\xff\x16\x03\xc7\x78\x50\x4c\xab\x33\x9b\x66\x03\xe3\x52\x4e\x75\xcf\x5c\xee\x89\xee\x99\x50\xf1\x39\x51\x7d\x6c\x9e\x1f\xf3\x34\xb0\x8f\xc7\x06\x90\x98\xb1\x1d\x1b\x50\x9d\x69\x3d\x39\x36\x20\xe4\xc7\x06\xe1\xe7\x7c\x1e\xe4\x48\xc5\xaa\x98\xc7\x6e\x8e\xd1\x46\x19\x3d\xee\x6e\x3d\xe7\x0d\xa2\x72\x60\xe4\x53\x1f\x6c\x2e\x07\xb9\x76\xc0\xea\xa9\x3e\x92\x5c\x0e\x31\xac\xff\x54\x10\x6b\xbe\x87\x61\xbc\x39\xdb\xe4\x72\x08\x25\x87\x03\x03\x9e\x44\xe8\x80\xeb\x52\x15\x40\x8e\x87\x0a\xe6\x2c\x01\xae\x57\xfc\xb8\xf3\xa8\xba\x7b\xd1\x7f\x33\xd3\x17\xdf\x6d\x3e\x56\xcc\x9d\x68\x2c\xea\xa7\x0f\x93\x18\x73\x37\x0f\x8c\x34\x8b\x73\xfd\x05\x31\x3b\xba\x7a\x1d\x7e\x24\x92\x1d\x91\xe7\x30\xe3\x50\xb5\x5e\x25\xa0\xf5\x86\x13\x61\x20\x24\x2c\x50\x46\x3f\x70\xc6\x95\x2b\x3a\x52\x25\x20\x13\x25\x7a\x2d\xa0\xcd\x3c\x10\x49\xd2\x6f\x61\x3d\xf4\xd5\x3f\xc0\x8d\xe1\x0b\x96\xc7\xd0\x77\x8f\x09\x69\x7e\xe7\x75\x3c\x86\xc8\x7d\xc6\x80\xa5\x06\x74\x7c\x1e\x70\x6c\xbb\x9b\x80\x7b\xc6\x70\x33\x0d\xe1\xe2\xa2\xa2\x3f\x90\x90\x1c\x5f\xdc\x7f\xfa\x39\x34\x4e\xf0\x5d\xe0\x24\x5a\xc1\x48\x6c\x91\xea\xe4\x0e\x53\xf6\x43\x20\x0f\x83\xee\x79\xe8\x2e\xe3\x54\xf1\x5d\x71\x60\xd6\xe3\x64\xff\x1d\x8a\xdb\x8c\x4c\x96\x81\x1b\x38\x9e\x5b\x7d\x06\xf5\x8f\x8a\x60\xd6\x87\x57\x19\x88\x44\x1e\x00\x29\xc1\xa2\xe5\xf1\x80\xec\x9e\xb6\x37\xd5\x9f\x6d\x5e\x5e\x68\xca\x2f\x71\xda\x20\x6c\xc7\xab\x33\xb7\x65\x38\x57\x0f\xec\x8b\xfe\x92\x83\x73\xea\x1c\x0f\x81\x39\x8d\x59\x5f\x2c\xe3\xd7\x99\x96\x09\x8c\xc8\x85\x3e\xf1\xd8\x68\x10\xb0\x53\x98\x09\x73\x39\xcd\x01\xca\x7e\x9d\x88\xed\xb8\x84\xe5\x59\xb0\x80\x73\xc0\x4f\xbc\x34\x54\x3b\x80\xd6\xcf\x40\xf4\x3e\x9b\x1e\x15\xf4\x69\x66\xee\x6a\x3d\xd9\xab\xe0\xec\x4f\xe3\xce\xfb\x2d\x5e\x7d\x9c\xb0\x53\x14\x3f\xc0\xdd\x34\xa9\x87\x06\xa7\x13\xa3\x4b\xeb\xb6\x01\x86\x50\x2d\xcb\x79\xd0\x27\xba\x31\xa0\x2b\x79\x2a\x75\x70\xb6\x4f\xb0\x8f\x24\xe0\x4d\x93\x6e\xc8\x7d\x9e\x9c\x55\x12\xee\x24\x39\x33\xaa\xf0\x01\x72\x63\x44\x38\xfe\x01\x34\x86\x47\xf5\x9c\xfa\xd5\xd2\x27\x00\x63\x0d\x0f\xe4\xc0\xe8\x1a\x81\xc8\x75\x91\xaa\x5f\x4e\x30\x55\xe1\x98\x09\x4b\x3f\x1c\x27\x51\x94\xc3\xf5\xc4\xaa\x58\x5d\x87\xd3\x4c\x65\xd6\xa3\xe2\x70\x4d\x2e\x93\x12\x53\x2f\x48\x98\xc7\xff\xd4\xf7\x73\xb7\x4d\xd0\xa7\xf5\x1a\xb1\x58\x07\xe0\x51\x4a\x1a\x20\xee\xbb\x06\x92\x93\x50\xf4\x4a\x14\xe4\x7e\x68\xd5\x7e\x30\xcc\x10\x5a\x2a\xcd\xa9\x40\xc6\xad\xbc\x70\x21\x53\x8d\x73\x61\x95\x96\xf0\x5f\xf8\x57\xaa\x9e\xba\x8a\x92\x18\xbf\xc5\xa0\x82\x1f\x6b\x5e\xa8\x80\xe4\x80\x2f\xfc\x8e\x71\xb5\x4a\xf3\x19\xb4\xf1\x4b\x9d\x19\xc9\x0e\xfa\x6e\x67\x00\xf3\x64\x71\x2f\x0e\x14\x61\x61\xf2\x92\x4a\xb2\x78\x26\x26\x20\x04\x75\x9a\x8c\x60\xb7\xcd\x07\x88\x65\x12\x3a\x10\xc3\x61\x80\x52\xef\x00\x4d\xf3\x02\xbc\x4a\x7c\xb2\x14\x69\x4e\x60\xc7\xfc\x10\xe5\x1c\xf6\xcb\xa4\x27\x6c\xf8\x65\x1c\xb5\xaf\x1e\x3d\x8a\xdf\x25\x5e\x94\x96\xa3\x0b\x6b\x88\x26\xdf\x4b\xf7\x0c\xc4\x61\x73\x0f\xc8\x01\x5c\xe8\x4e\x84\x21\x5c\xea\x4e\xdc\x04\x95\x95\x9b\xf5\x70\x1b\xe8\x48\x40\x7f\x2f\x66\x7b\x95\x6f\x75\x45\x96\x45\xe5\xf3\x2d\x5f\x65\x2e\x04\xb9\x07\x2a\xee\x58\x79\x21\x36\x12\xa4\x32\xc9\x31\x50\x89\xb0\x90\x17\x16\x5e\xe2\xe9\xe7\x4d\x28\x1e\xf5\x0d\xf7\x06\x4a\x1a\x76\xfd\x26\xe9\x06\x91\x23\xf2\x36\xc3\x0f\x1c\xed\xbd\xf1\x22\xa2\x3f\x23\x3f\xc1\x50\x51\x7b\x23\x36\xfa\x98\x98\xab\x80\xf0\x4a\x79\x63\x1d\x76\x5f\xc8\x4f\xd0\x5d\x67\x11\xdf\xc4\xf4\xca\x1b\xdd\x24\x19\x84\xf2\xf6\x15\x0f\xdb\x9b\x85\x3a\x28\x63\x3c\x80\xa8\xdf\xc5\x43\x4d\xfb\x62\x74\x15\xeb\xb5\x9c\x5a\x46\x49\xcd\x7a\xde\xc5\xf3\x43\x3f\x38\xd3\xcb\xbd\xdd\x05\xce\x8f\xcb\x74\x63\x6c\x50\x77\x75\x7f\xfa\x48\xfa\xc1\x12\x0d\xe2\x3e\x6f\xdd\xd5\xe0\x60\x6e\x43\x65\x3b\x06\x02\x89\x0a\x7b\xb9\x31\x1e\xe4\x57\x6e\xec\x0b\x73\x24\x64\x10\x8e\xfe\x79\xc3\x01\x68\xb0\x21\xa7\x42\xd5\x98\x74\x77\xd5\x1a\x6b\x1f\x6f\xac\xc6\xd5\xbd\x30\x3c\xb6\xe3\x41\xd4\x55\x4c\xbe\x51\xfa\xab\x97\x05\x10\x1e\x72\x21\xf7\x47\x08\xa9\x4f\x70\x63\xb6\xc7\xb2\x5c\xdc\x8b\xe4\xec\x41\x80\x6f\xa2\x6f\x7c\x63\x4b\x83\x12\x5a\x56\x44\x65\x4d\xe4\x80\x11\x69\x6f\x38\x60\xbc\x25\x12\x20\x77\xc5\x8b\x22\x6f\x12\xfd\x28\x4d\x91\xd7\xa1\x49\xe4\xcc\xeb\x80\x6f\x69\xde\x8a\xcf\x3c\xc8\x37\x04\x12\x44\x7f\xde\xf8\xfc\x76\xcf\x0c\x16\xc3\xb4\xff\xd3\x30\x5c\x7c\xf7\xd4\x89\xdc\x7a\x60\x56\xee\x97\x58\x52\x1e\xed\x5b\x7f\x4c\x88\x1c\x39\x21\x42\x64\xc2\x7d\x9a\xac\xd8\xfe\x51\xbf\x70\xbf\x00\x84\xa7\x16\xf0\x5b\x2e\xd9\xfd\x25\x3a\x4f\xf1\x5e\x10\x41\xa3\x3a\xc7\xdb\x04\xce\xbf\x14\x33\x41\x88\x77\x2f\x9f\xc9\x26\x70\xc5\x49\xd0\xe2\x4d\x22\x74\x63\x0c\x28\x0e\x1c\xe4\xb8\x9c\xd9\xfd\x88\x2f\xb1\x1e\x11\x06\x0a\x7e\x3f\x9a\x58\xfd\xed\xc5\x24\xac\xc7\x64\x0d\x71\x22\x79\x44\xd3\xca\x29\xfa\x5b\x3d\xd0\xb3\xc1\xcd\xb0\xa8\x0f\x79\x39\x71\x2b\xca\x47\x23\x01\x9b\x63\xd2\x87\xc1\xa2\x92\xf4\x21\xe5\x9c\x1e\xb8\x07\x5f\x35\x51\xe1\xc4\x45\x4b\x90\xe0\x81\x67\x43\x82\x04\x4f\xf5\x2b\xcf\x67\xe9\xab\x94\x11\x39\x79\x39\x40\x76\x77\xcd\xe3\x8f\x91\x2c\x6c\x8f\xd2\x5f\x3d\x1f\x48\xed\x24\x96\x7a\x82\xd4\x0e\x1c\xee\xf3\x69\x18\x3c\x1c\x3f\xe1\xb1\x71\xad\xc9\xa7\xe9\xbb\x17\x94\x11\xd5\xe1\x38\x1f\x14\x9d\x20\xeb\xf3\xe9\xea\xc6\x2c\x23\x6e\xc0\x55\x88\xce\x26\xea\x6c\x92\x24\xa2\x0b\x61\x78\x4c\x6e\x32\xac\xd7\x74\xcf\xd8\x42\x22\x6a\x99\x57\xdf\x7a\xf4\x9d\x78\x0f\xe4\x63\x1c\x79\xd7\x3c\x51\x0a\xb3\x77\xcf\xf0\x65\xa5\x4f\xe2\x63\x75\x7f\x0b\xe7\x11\xce\x1d\x47\x7c\xc5\x25\x10\xdc\x9d\x88\xaf\xf9\x90\x50\x5a\x7c\xd2\x33\xd1\x9b\x72\x06\x44\x76\x6b\xe5\x7c\x85\xc9\x60\x50\x01\xf4\x9b\xe2\xf9\x8c\xe9\xaf\x6e\xe6\x55\x29\xcc\x7c\x5f\x39\xb0\x62\x19\xfd\x1f\x7b\xfd\x6a\xd9\xe4\x5c\xbd\x66\x5e\xb7\x7d\x18\x48\xb1\x51\x06\x17\x05\xc7\x0c\x58\xb7\x8b\xb1\x7b\x85\xae\x4c\xeb\x0d\x36\x60\xbd\xd1\x3a\x82\x32\x21\x83\xfc\x2e\x01\x09\x14\x21\x01\xe8\x36\x02\x09\x24\x71\xf3\xbb\x1c\x18\xb1\xf2\x2b\xa0\xe5\x04\xac\xdb\xc8\x5a\x96\x00\x74\x2b\xd9\xdc\xf3\x9d\x26\x85\xa1\x9f\x89\x8e\x13\xc6\x01\x80\x6e\x05\x58\x9e\xc4\xbe\xef\xe2\x2f\x89\x7d\x1f\xdf\xba\x2d\x62\x33\xe4\xec\x5f\x88\x8a\xcc\x05\xa0\xdc\xaa\x71\x8e\x30\xf6\x41\xd4\xd6\x7c\xbf\xb8\x7d\xfc\x16\xe3\x04\x61\xbf\xf3\xfd\x74\xc3\xcc\x8b\x70\x5e\x0d\xc2\xf6\x82\x03\xf3\x61\x79\xe1\xcc\x00\x90\xe7\x8b\x8b\x63\x75\x6c\x1a\x2a\x60\x16\x04\xe8\x86\xfb\x68\xa8\xfb\x62\x59\x95\x14\xbf\x45\xac\x96\xd3\x02\x94\x1b\xbb\x63\xc3\x05\x8b\x70\x5e\xf9\xbe\xe4\x48\x75\xfc\xaf\xe3\xd9\x7f\xf7\xf7\x63\x33\xa8\x40\x6c\x94\xf1\x4c\xda\x7f\xe5\x9b\x39\x36\x20\x06\xc4\xe5\x1a\xa0\x77\x83\xa8\xa1\x43\xf4\x2e\x11\x0a\x06\xe8\xdd\x8a\x2f\xe4\xd8\x00\x3d\xe2\xb6\x31\x36\x39\x80\x75\x29\x07\x88\xdd\x8a\x97\xfe\xd8\x08\xdf\x01\x2c\x62\x80\xde\x0d\x30\x6a\x63\x43\xf4\xc0\xfd\x69\x2d\x09\xfd\xf0\x5b\x0e\x38\xfa\x8f\xb1\x55\x23\x4c\xda\x06\x71\x6c\x11\x98\xb1\x19\x65\xc3\xef\x42\x18\xd0\xbd\x8d\x8d\xcc\xd3\x28\x25\xc7\x86\xd5\x83\xe8\x18\x03\x60\x6d\xc7\x71\x7c\x6c\x5d\xe0\x2b\x63\x00\xc9\x0e\x24\x61\x6c\x9a\xcd\x93\x6f\xa5\xc1\x28\x19\x8f\xce\xc1\xc3\x32\x30\x8a\xc9\x3a\xa4\x7a\x02\xfa\x24\xcc\x36\xfe\x83\x63\xc3\xe4\xce\xa5\x1f\x1b\x0a\x68\x8c\x1f\x63\xc3\xe0\xd1\x5c\x37\xdc\xae\xc0\x78\x8d\x6d\x10\x26\x65\x71\x00\x63\xd3\xd2\xb7\x5b\x36\xc1\x32\xe3\xff\x92\x4a\x58\x4f\x2c\xfe\x9d\xf1\xe3\x0b\x09\x32\x7a\x10\x1f\x3f\xc3\x75\x46\x54\x01\x6c\x39\x00\xe8\x56\x62\x59\x8d\x8d\x17\x1a\x31\x7f\x6c\x28\xbb\xc1\xb4\x8d\xcd\xf0\xdb\xee\xcb\x41\xc0\x00\xe7\x7e\xe0\x40\x1f\xf4\xcf\xcb\x8d\xe3\xfe\x20\x6e\x7e\x54\xdb\xf0\x72\xa3\xdb\x1b\x1b\x06\x18\xcc\xe9\x63\x33\x6d\xde\xa4\x0d\x38\xb3\xe1\x77\x8d\x0c\xec\xba\xe1\xc9\xd1\x6c\x8f\xab\x15\x8f\xc6\xd8\x6e\xf4\x82\x95\x3e\xc9\xaa\xde\x3d\xc8\xf8\x36\x0e\xd7\xf0\xd1\xc3\x80\xbd\x7b\xd0\x05\x7a\x36\x00\xf1\x82\xb1\x1b\x1b\x8f\x24\xc0\xce\xb1\xbd\x80\x99\x77\xd6\x93\x98\x76\xb8\xe5\x8c\x7d\x73\x4d\x82\x32\x88\xf5\xaf\x8c\x87\xc7\xba\x7c\x63\xdf\x70\x58\x5f\x1c\xe7\xd8\x37\x8c\x1c\x9c\xc9\x9d\xf8\x76\x44\xbb\x1d\x3b\x67\x9b\x48\xb3\x03\xd0\x6f\xf5\x2c\x11\x07\xbf\x02\x20\x1f\x7b\x11\x52\x44\xff\x45\x49\xc0\x7a\xb9\x19\x7e\x8b\x5b\x54\x67\xcd\xf7\x6a\x32\x94\x8d\x32\xba\x58\xee\x20\x61\xe9\xfb\xb0\x9f\xa6\x7e\x74\xad\xf3\x8e\x57\x07\x98\xb0\x41\x58\xfa\x40\x89\x3f\x00\xee\x76\x2c\x83\x03\xe0\x6e\xe3\x51\x1d\xbf\x85\x96\xa7\x9c\x12\x0c\xfa\x4f\x80\xd0\x1b\x7d\x12\x9b\x0d\x6b\xe3\xd8\x79\xf4\x88\x41\x38\xf6\x94\xf1\xb1\x0d\x9e\x01\xfe\x96\x80\x0a\x78\xab\x8c\x7d\x11\xfb\x8a\x07\xc9\x00\xd0\xdb\xf0\xaf\x1c\xbb\x51\x69\xd6\xc3\x32\x08\x0f\xdf\x09\xa9\x3e\x76\x1e\xba\x70\x9d\xb1\x56\x13\xec\x72\xec\x66\x0f\x1b\xf4\x83\x67\xc6\x92\x46\x7e\x41\xcc\x76\x30\x25\x80\x4b\xc7\x8e\xe2\x15\xaa\x3d\x76\xd8\x4b\x00\x7b\x83\x78\xf1\x01\xcb\x37\xf6\x53\x37\x15\x26\x84\x12\x96\x14\xf6\x63\x87\x8d\x24\x7e\xd8\xd8\xc1\xa8\x55\x27\x47\x48\x6c\x70\x45\x63\xbf\x8c\x41\x6f\x1b\x74\x66\xc9\x62\x60\x8e\x6e\x6e\xe0\xad\x5b\x0e\xfd\x3f\x8a\x1e\xf4\x63\x7e\xc6\x8d\x6f\x19\x52\xc6\xfe\x35\x06\x70\x90\xf7\x07\xf9\x7b\xe3\x5b\x00\x7d\x41\x91\x8f\x1d\x07\xdc\xe9\x82\x69\xb2\xee\x2c\x12\xe9\xe0\x8b\x1b\x02\x77\xb8\xd9\xbf\x71\xe7\x2b\x7d\x12\x87\x09\x37\x9b\x51\xc8\xf8\x4e\x98\xed\x41\xdc\xf9\x3e\xbf\x7a\x2e\x0d\x1b\x58\x8c\x22\xb1\x5e\xac\x61\xdc\x79\xf4\x37\xc3\xb8\xf3\x84\xb5\x19\xc4\x94\xef\x95\xc3\x5e\x84\x9c\x30\xdf\xb2\x6b\x4d\x4b\xca\x10\xdd\x62\x19\x91\x16\xe2\xfa\xc5\x97\xe7\x50\x00\x2a\x4e\xb0\x44\xa3\x60\xa8\xc0\xf2\x35\xca\x67\xa8\xa0\x7f\xa2\x8d\xa0\x07\x1a\x80\x87\x1b\xba\xb4\x51\x2a\x97\x95\xb5\x2d\xea\xb4\x20\x30\x82\x84\x09\x3d\x3e\x0a\x20\x4f\xb8\xbd\x01\x48\x38\xb0\x66\x0e\x40\xbf\xe9\x43\x57\xb0\x80\x93\x98\x63\x14\xd0\xee\x18\x7b\x06\xf1\xe2\x2b\x3a\xb3\x51\x7c\x34\xec\x33\xd5\x9d\x30\xaf\x0f\xdc\xcb\xbc\x88\x23\x0f\x16\x6a\x14\x43\xd6\xb8\x86\x38\xdc\xc3\x19\x8f\x32\x04\x18\xd3\xff\x50\x9c\xb1\x5e\x3d\x28\x7d\xea\x28\xcf\x3e\x16\x1c\xdf\x09\x31\x3e\x0a\x5c\x51\x75\x7d\x8c\x43\xe6\x77\x51\x5f\x48\xc0\xca\x07\xf7\x60\xdd\xcc\xb5\xca\x19\x28\x64\x82\x27\x58\xe4\x00\x3c\xdc\x77\x7f\xab\x97\x06\x8f\x67\x31\x24\x0e\x77\x47\x50\x31\xc6\x95\x61\x38\x79\x12\xa3\x8c\x82\x25\x14\xeb\xe1\x28\xa7\xc6\x1e\xdb\xf8\xe0\x33\x06\xdc\x9f\x36\xe7\x7e\x6a\x9c\xb0\x1e\x09\xc7\xbd\x36\xa0\xea\x57\x36\xc9\x33\xed\x6f\x0c\x30\xb6\x87\xbb\x9a\x9e\xb1\x5b\xd7\x2c\xbe\x4b\x16\x79\xc0\xa8\xa3\xa8\xdf\xe5\xde\x11\x06\xbe\x02\xfd\x18\xe5\x7b\x4c\xec\x13\xb1\xd7\xf6\x58\xe7\x9b\x6b\xc2\x63\x32\xfc\x16\xc9\xab\x49\x44\x3c\xca\x63\x94\x1c\xd6\x87\x58\x68\x9b\x6b\xfb\x62\x0c\xb0\x7f\xb0\x9b\x01\x4d\xf8\x42\xbf\x2f\x31\x76\xd4\x8d\xe8\xd0\xd0\x96\xba\xe1\xe9\xc2\x43\x54\x81\x74\xad\x7b\xf4\x0b\x62\x56\x01\x7c\x12\xfd\x61\x10\x3b\xbe\xc9\x5d\x55\xb9\x2b\x2e\x56\x35\x8a\x29\x07\x44\xd4\x33\xb1\xcd\x06\x71\xe4\x3b\x3e\x9b\xa3\x56\xc5\x9f\xa0\xcc\xcb\xcd\xe6\xd4\x6a\x2a\xb2\x4e\xd9\xb4\x5e\x0c\x1c\x6c\x16\x78\xa3\x51\xab\xa9\xb3\xe8\x87\xcb\x04\x56\x66\x54\xc3\xb9\x6c\x96\x51\x50\x42\x30\x2a\xae\x29\xdf\x98\xc1\x6c\x91\x09\x7b\xd4\xee\x62\xd3\x3f\x8a\x60\x2c\x8f\xa3\xa6\x01\xf8\x68\xaf\x23\x7b\xb1\x8c\x02\x97\x8d\x32\x46\x7c\xf8\x5b\x5c\x44\xe4\x0c\x40\x3a\x77\x42\xe8\x0c\xd1\xcd\xb8\x09\x0d\x10\xcd\x1d\xf1\x61\x54\xc2\xaa\xec\x6e\x08\x31\xcc\xc0\xc6\x0d\xe3\xbc\x83\x22\x1f\xc4\x79\xef\xdf\x98\x8d\x1c\x61\x1b\x1e\x07\x22\xb5\x8e\x8a\xd2\x16\x30\xea\xa8\x4b\x34\xa8\x5e\x26\x81\xca\xdd\xb1\x01\x32\x04\xf1\x3d\xaa\x99\xaf\x78\x70\xaa\xe9\xee\x5c\x2b\xf2\x19\xc8\x01\xd7\x1b\xff\x56\xb8\x0a\x80\xc4\x1d\x11\x72\xd4\x47\x85\x3b\xbf\xc5\xff\x8e\x6c\x3c\xa3\xbe\x58\x9a\x20\xc0\x95\x2c\x40\x28\xeb\x47\x7d\x7d\x94\x68\x4f\x60\x3e\x09\x2d\x60\xe3\xc0\x3a\x36\x00\x1b\x77\xbc\x04\x06\xa0\xe2\x04\x5e\x31\xda\xa6\x3f\x60\x52\x46\xd4\x62\x5f\x1a\xd1\x1c\x70\x8d\x1b\xc4\x94\xcf\xfe\x95\x09\x53\xc3\x8b\xde\x80\x84\xe0\xd3\x37\x8c\x11\x2f\xf1\x6e\xd5\xf0\x32\x96\xd1\x63\x41\x74\x1b\x79\x0b\x08\xf0\x37\x5a\x33\x76\xd7\x1a\xbf\x20\x5b\xf4\x37\xa3\x69\x1d\xe6\xac\x36\xa0\x49\x58\xed\x47\x13\x12\xd2\xac\x27\x9e\x3e\x84\xbf\x69\xf4\x62\xfd\x1b\xb9\x4a\xe5\xa2\x00\xc4\xf6\xe1\xd8\x8c\x25\xc6\xbd\x30\x9c\xbc\x8f\x61\x23\x10\x24\xfa\xbf\xd1\x26\x2e\x49\xec\x4b\x23\x64\x75\x3a\x47\xc2\x54\x57\xeb\x0f\xf4\x91\x10\x92\x26\x4e\x0e\x4e\xb4\x41\xf0\xa6\x6b\x7b\xc2\xa5\xc1\x38\xb4\x93\xfd\x65\x5f\x00\xa6\xe6\x70\x0d\xb5\xea\x72\x4e\x1a\xfe\x9e\x64\x64\x1f\x84\x8a\x4f\xac\xc6\x03\xf0\x6a\xc7\x73\x62\x34\x92\xd4\xec\xae\x27\xf1\xc6\xba\xfd\x5f\x10\x4e\xfb\xbf\xb5\x0e\xd3\x0f\xea\x29\x89\x16\xa1\xdc\xfb\xee\xdc\x81\x17\xe1\x21\x34\x08\xe5\xde\x7d\xdc\x1a\x30\x22\xef\x14\x18\xd3\x86\x3e\x72\xf4\x5d\x17\xc4\x46\x19\x43\xc5\x57\x86\x61\xd9\x2c\x03\x47\xfa\x35\x67\xd6\x4d\x13\xd5\xfd\x08\xe2\x12\x03\xe9\x82\xe2\x8a\x65\x9c\xb9\x59\x60\x80\xa9\x49\xfc\xfa\x01\xe8\xb4\x93\x1c\x78\x74\x5c\x8c\xf0\xe9\x1b\xc4\x82\x4f\x37\xb6\x23\x36\xa2\xb8\x1f\xc6\x73\x27\xf8\xdd\xe8\xcd\xa8\x0d\xf4\x83\x6e\x09\xbd\xd7\xe8\x1f\xd1\xea\x94\x55\xce\x52\xee\x88\x30\xcd\x32\x98\x27\x88\x8a\xf1\xd9\xc3\x45\x22\x2c\xcf\x1c\xf4\x0f\x22\xdb\x57\x04\x80\x68\x53\x54\x31\x56\x3b\x50\x94\xd1\x07\x78\x2f\xc7\x63\x2c\x75\xc4\x22\x40\x9b\x41\x58\xeb\x01\x68\xb3\x82\xbc\x1e\x1d\x1f\x37\x0f\x3e\x31\xd3\x3b\x4a\xde\xd1\x79\xc5\x77\xd7\xc4\x7c\x7f\xc3\x32\x96\xc1\xdd\x32\xc4\x0c\x71\xde\x18\xe8\xd5\xf1\x83\xaa\xc6\xf1\x7a\x74\x38\x60\x42\x17\x8f\x6e\x60\x3b\xfb\xe7\xa0\x61\xc1\x1c\x80\x30\x9b\x9c\x50\xc7\x4d\x48\x71\xd2\x10\xe6\x1e\x7c\x40\x98\x41\x50\xc8\xd1\xc1\x33\x35\xbf\x8b\xaf\x25\xce\xd9\xa3\x6b\x99\x4a\xcb\xbe\xb2\x7c\x4b\x82\xc7\xc3\xd5\x1f\x0f\x2c\xe3\x7f\x25\x06\xf4\x03\x47\x8b\x1e\x6e\x74\x20\x06\x38\xee\x0f\x42\x92\x57\x1c\xb8\x47\x20\xca\x11\x32\x7c\x10\x9e\xbc\x01\x88\x1d\x86\x27\x07\xfa\x31\x42\x77\x23\x2e\x47\x08\x8d\xe1\x91\x89\x5d\x98\x8f\xf5\x88\x36\xf6\x83\x9a\x42\x8e\x36\xc8\x50\x04\x64\x60\x00\xb6\x4c\xb2\x8f\x8f\xc0\x9f\x17\x5d\xce\x08\x1d\xeb\x19\x7f\xa0\x63\xdb\xbf\x36\xba\xf4\xd0\x67\x17\x9a\x64\x19\x22\xfa\x95\x25\x0c\x8c\x27\xf4\xf7\xa4\x1f\xdc\xc3\x88\x70\x31\x42\x31\x8a\x33\x19\xa8\x02\x14\xbd\xc1\x44\x86\x1c\x79\x00\x5f\x92\x68\xc5\xa1\x71\x82\xf5\x39\x84\x21\xf0\xdb\x4b\xc3\x0c\x6d\xb0\x8c\xa3\x04\x1f\x71\xcb\x14\xd0\x06\x77\x2f\x09\x06\x78\xc7\x18\xb6\xbf\xc5\x96\xf1\x2d\xe0\x21\x00\xb0\x47\x20\x99\x90\x65\x6b\x88\x41\x4c\xee\xd1\x17\xb1\xb9\x59\xd6\x1f\xd3\x32\x52\x10\x1c\xbf\xd1\x9b\xc9\xac\x3f\x12\x51\x9a\xc0\x09\x23\xd9\x0b\x20\x45\x23\x81\x78\x28\x06\x12\xcd\xb8\x02\xb1\x19\x89\xae\x17\x7c\xe4\xc8\xae\xd5\x92\x36\xdd\xbb\xbf\xf6\x25\xe5\xe0\x91\x1c\x92\xd0\xe6\x84\x2a\x1f\x09\x22\x82\x84\x41\x23\x0d\x4f\xce\x39\x4c\xc4\xde\x35\xce\x5f\x10\xb3\x34\x69\x02\xec\x7a\xc2\xba\x63\x96\x1f\xf9\x85\xdd\x58\x0b\x96\x72\x1b\x2e\x86\xee\x4f\xb0\xfd\x89\x45\x83\x7c\x8e\x23\x0d\x6b\xe3\xa0\x1e\x31\x61\x96\x11\xb5\x38\xf8\x80\xfa\x02\x7c\xcf\x48\x92\x71\x80\xdc\x1f\x89\x9f\x9d\x1c\x4f\x8a\xbf\x71\x61\xd8\x04\x12\x6a\x8c\x01\xfe\x06\xb3\xf3\x18\xbb\x2e\x22\xeb\xd0\x0d\xb3\xbb\x70\x99\x86\x11\x28\xb8\xdc\xa3\x4a\x0c\x06\x65\x7c\x2a\xab\xf5\x46\xa6\x58\x73\x21\x22\x6e\xca\x85\x0c\xfc\x2e\x5d\xf8\x81\x7f\x25\x20\xc6\x31\x80\x06\x48\x20\x07\xdc\x9e\xdc\xd8\x30\x80\x23\xdc\xd5\xc0\x9f\x4e\xc2\x36\x3e\xbf\x4b\xfa\x04\x14\x5a\xd9\x10\x01\x84\xa0\xd7\xc7\x80\x1b\xf8\xda\x90\x38\x83\xa8\x16\x63\x98\xef\xd2\xef\x7e\x98\x30\xc6\xb9\x38\x83\x8e\xc3\xee\x18\x28\xb2\xc9\x2d\x38\x06\x31\xd2\x48\x56\x32\x06\x1c\x67\x75\x4d\x86\xe2\x06\x6d\xd8\x5f\xb2\x2a\x8d\x81\x3e\xa3\xb9\x26\x66\x3a\x67\x2f\xc0\x17\xe6\xd7\xa7\x09\x5d\x1d\x03\xca\x7d\xb9\x19\xf0\x85\x49\x1e\x82\x31\xa6\xd1\x46\xf8\x2d\x8e\xf2\x58\xd9\xc6\x38\x55\x76\xf3\xdb\x4b\xa3\x0b\x6d\xbe\x48\x10\x96\x89\x4e\xe2\x5e\xe8\xb2\xd2\x2c\x77\xb8\x2b\xc6\x09\xf2\x7d\xba\x2f\xe4\x97\xc4\x12\x3d\x06\xc4\xf8\x1b\x27\x8e\xef\xc5\xf3\x80\x51\x4a\x0e\x1b\x0c\x62\x07\xeb\x36\x86\x39\x25\xed\x07\xbf\x4e\xb2\x90\x8d\xa1\xbb\x1a\x8f\xf6\x84\xb8\x82\x70\x1f\x73\xc7\x2a\xcd\x23\x66\x94\xda\x0e\x61\x98\xe4\x6f\xc0\xb0\x31\x26\x97\x9b\x30\xe7\x63\xea\x28\xcf\x03\x3e\xf5\xe5\xe4\xee\x80\x53\x4c\xb0\x89\x63\xa2\x0f\x26\x12\xca\x98\x00\x8c\x81\x75\x8c\x59\x7d\x0c\xd7\x5e\x80\x47\xac\xc0\x73\xc6\xc4\x95\x0b\xcb\xfe\x98\x06\x00\x85\xbb\x9a\x38\xb2\xfb\xc0\x4e\xdd\xa5\x10\xc9\x27\xa2\x3a\x46\x94\x31\xcd\x52\xe5\x6f\x39\x03\x38\xee\x8f\x39\xf4\x2c\x61\x0c\xe8\x6b\x81\x59\x8d\x39\xc4\xa5\xf1\xdb\x81\x9e\x0f\x69\x0a\xec\x60\x73\xaf\x27\x31\xed\xf0\xc1\x1c\xd3\x80\x8f\x10\xb3\x89\x5e\x16\x27\xf5\x31\x0f\x01\xcc\xcc\xe5\x40\x3f\xed\x77\xb1\x90\xaa\x7e\x99\xa7\x3a\x45\xeb\x7d\x90\x69\x4f\xf4\x10\xb9\x5e\xb0\x7d\xb5\xb9\x3e\x8f\x81\x2b\x98\xcb\xab\x11\xe2\x57\xd0\x8c\x31\x09\x89\x83\x9b\xca\x38\x74\x6f\xe0\x65\x22\xa2\x6c\x80\xd4\x1e\x07\x54\x1b\xf7\x9b\x21\x90\x8f\xe8\xa3\x83\x48\xb3\x5d\x59\xf9\x20\xd9\x07\x31\x96\xc6\x01\x18\x55\xa2\x42\xd4\xd9\xc4\xeb\x7e\x1c\xbb\x11\x41\xf9\x16\x00\x3f\x39\x8c\x63\xd7\x42\x44\x3f\x60\x9b\xf6\xaf\x5e\xdd\x80\xbf\x05\x9a\x01\xc1\x20\x02\x6d\x05\xd7\x35\x8e\x62\x60\x3b\xbe\x05\xd8\x15\x88\xc1\x38\x4c\x5b\xcf\xc5\x12\xf8\xa7\x02\xf7\x30\x28\x24\x1b\x0b\x08\xb0\xfe\xd6\x06\xdc\x8f\xdf\xad\xbc\x7c\x5c\x94\x83\x20\x8f\xe0\xb4\xc6\xd1\x7d\x59\x07\x65\xd2\xa7\x71\x81\x0e\x88\x96\x3a\x80\x03\xf0\x2a\x98\xa7\x71\x10\xcc\x11\x18\xc5\x00\xb7\xd7\xc3\xf5\x81\x68\xe1\xe7\x38\x8e\xf0\x80\xd8\x06\x42\x08\x61\x3e\xb0\x42\x7e\xeb\x46\x24\x05\x72\x62\x8e\xc3\xa4\xbb\x1c\xfc\x23\xd5\xc7\x58\x8f\xd7\x02\x07\xea\x48\x2f\xb1\x65\x14\xc1\x7e\x0b\xae\x42\x25\xf8\x41\x30\xc7\xe1\xbc\xc0\x4e\x81\x8d\x1b\x07\xf1\xde\x88\x8e\x31\x88\x82\x1b\x12\x69\xf0\x7c\xbd\xda\xbf\x29\x09\x77\xeb\x15\xf1\x58\x73\x2c\x74\x24\x2b\x19\xc7\x21\xec\x82\x35\xd4\x20\xe1\x3a\xe0\x1b\xa8\xf8\x7c\xc0\xa9\x6c\x69\x3d\x99\x97\xc2\x7a\xdc\x60\x1c\xbf\x9c\xae\xe7\x53\xc0\xad\x6d\xc8\xea\x23\xa7\x78\x9c\x38\xb8\xef\xd6\x83\x7f\x72\x0d\x4f\x8c\x55\x5f\x3d\xba\x4f\xb8\xcf\xe3\x14\x56\xc3\x7c\x09\xd4\x48\xe8\xaa\x01\xbe\xb0\x13\x41\x63\x88\x29\xd4\xd0\x72\x08\xac\xdd\xac\x37\xc8\x81\xbf\x25\xcc\x14\x0f\xf8\x41\x34\x54\xac\x90\xe3\x30\xab\x3d\x17\xdd\xc8\xbd\x1a\x24\x0e\x45\x7e\x88\xd0\x61\xca\x37\xd7\x10\x90\xad\x86\x99\xe3\x31\x9e\x1f\xfd\xa3\x03\x4e\xe7\xfe\xe8\xa5\xc1\x9a\x3c\xc2\x2b\xac\xc7\xfb\xc4\x73\xfb\x92\x7f\xd3\x71\x12\x8b\x1f\xcc\xdf\x38\x88\x2d\x87\x8f\xf0\x38\x5e\x62\xd7\x41\x30\xc0\x20\xf6\xe9\xbd\x00\x3a\xe4\x1d\x3f\x37\x83\x75\x76\xca\x66\x64\x1a\x94\x31\x02\x6d\xd6\xcb\xd9\xef\x94\xb5\xde\xae\x31\x9c\x18\x05\x95\xa6\xce\x1d\x4e\x91\x3b\x42\xb4\xe1\x4e\x76\xf9\x71\xa2\xc2\xd2\x28\x05\xae\xb1\xaa\x27\x3e\x91\x12\x65\x7c\x4e\xe3\xd5\x75\xfb\x44\xdf\x3c\xeb\xaf\x88\x19\x00\xc8\xc0\xbd\x67\x9c\x5f\x62\x0e\x3a\x28\xea\x93\xac\x37\x68\x1a\x13\xad\x38\x58\xb3\x51\xa7\xf9\x00\x2c\x37\x2f\x16\xed\x45\xbb\x23\xce\x10\xae\x78\xe0\x9f\x38\x4e\xf3\x2a\x72\x71\x4f\xac\x8d\xb8\xfd\x8c\xb3\xa3\x88\xe7\xb5\x3e\xbb\x2f\x31\xe5\x50\x47\xc5\x44\x4d\x67\xbf\x5b\x06\x3a\x01\x31\x3b\xf5\x25\xb4\xff\xd4\xf7\x93\xfe\xe1\x54\x88\x80\x30\x3e\xd0\x23\x17\xee\xc4\xf2\x52\xdd\x1c\x4c\xeb\xea\x8d\x4e\x75\x1b\x10\xa4\x53\x50\x2e\x17\xf1\x9c\xa2\xd1\x69\x8f\x25\x91\x48\xb0\xe3\x03\x3d\x32\xce\xcb\x54\x6a\x5f\x19\xab\x0d\x04\x9b\x88\xb8\x39\x39\x5c\x17\x16\x58\xc5\x8a\xab\x49\xbc\x6d\x83\x35\x90\x03\x2e\xb6\x4f\xfd\x96\xd1\x71\x71\x0f\x1b\x44\xc4\x6d\x24\xaa\x18\x97\xc0\x66\x08\x30\x11\x6e\x93\xb0\xca\xe3\xc2\x4a\x05\x3a\x7e\x5c\x69\x78\x72\xfa\x4f\x3d\x15\x68\x0f\xec\x02\x10\xe9\xb8\x10\x91\x80\x63\x0c\xa3\xce\xfa\x68\x5c\x13\x2e\x8d\x75\xb8\xa6\x38\x27\xea\x21\x4e\x64\x04\x1a\xd7\x21\xd7\xc5\x6f\x09\xe3\x4d\xac\xb2\x01\xe6\xaf\xab\xd7\xbc\x20\x42\xea\x93\x2e\x44\x2a\x2d\xad\x17\x2f\xb7\x3a\x33\xa2\xce\x56\x75\x3c\xd7\xa1\x6e\x8f\x71\x02\x66\x0e\xf4\x34\xd7\x29\x51\xa4\x9e\x38\x61\xe0\x08\xc7\x05\x17\x48\x30\x83\x71\x9d\x44\x60\x41\x2c\xbd\x4e\x33\x56\x59\xc6\xef\x32\x6c\x0f\x86\xe9\xab\x97\xa8\x30\x1e\xe0\x0c\xcd\x31\x60\xc4\x92\x4b\xb8\x2e\x33\x59\xb1\x56\x78\x12\x10\xc6\x7b\x10\xa5\xb6\x75\xd7\x04\xeb\x6d\x4b\xdb\x28\x12\x5a\xaf\xbe\xc7\x32\xdc\x30\x04\xf8\x12\x68\xcd\x7d\xb9\x88\xc9\xb7\xd9\x86\xa4\x24\xe5\xab\xd7\x1b\x86\x71\xc2\x95\x16\xcf\x06\x18\x47\x0d\x18\x97\x92\x0f\x22\x9e\xd1\x6b\x55\x5f\x10\xbd\xb6\x7d\x7b\x8d\xc8\xb9\x7f\xed\x81\xc3\x34\xdb\x70\x6e\x3d\x4b\xba\x45\xb9\xb6\x58\x81\xd5\xb1\x81\x8f\xec\xc4\x11\x1c\xd7\x67\x0c\x63\x8e\xaf\x8e\xe3\xeb\xbb\x60\x22\x83\xb0\x4b\x43\x4c\x24\x1e\x18\x03\x1c\x64\x90\x6c\x65\x80\x83\x0c\x8d\x64\xf7\xe6\x7d\xa9\x94\x61\x34\x90\x6a\xee\x5d\x15\x56\x50\x96\xe0\xd1\xbf\xae\x95\x7c\x17\x9c\x5f\x2f\xbf\x8c\x9a\x31\xee\x30\x34\x2f\x83\x12\x87\x34\x2d\xe3\x5d\x0f\xc5\x27\x12\x6c\xc7\xc1\x74\x10\x09\xb6\x81\x21\x1b\x44\x79\x4d\x32\x76\x8f\xdb\xb8\x4a\x70\x48\x37\x31\xbd\x88\x31\x36\x6e\xcc\xaa\x8a\x48\xb7\x49\x50\x79\x1d\x6f\x0e\xa6\x2f\x34\x00\xbc\xae\xb9\x1b\xa0\x5d\x4c\x27\x8d\x77\xbd\x94\xda\x68\xab\x2e\xea\x4d\x84\x0e\x75\x2a\xb7\x51\x39\xe0\x78\x6e\x9d\x71\xd1\xc1\x80\x99\xab\xf8\xfa\x0d\xb0\x71\x11\x8e\x13\x0b\x69\xf3\x5b\x5f\xa2\x04\x7e\xfb\xe8\xc6\xc3\xb7\xc8\x42\xa3\xf2\x17\xac\x5b\xf8\x9a\x3e\x04\x92\x73\xbe\xcf\x8e\xd3\x2d\xdf\x05\xdf\x56\x71\xa1\x19\x8f\x61\x8b\x10\x45\x1f\x9c\xd7\x71\xf6\x1d\x0f\x86\x10\x52\xf3\x8f\x07\xc0\x27\xfe\xb0\x83\xa8\xa1\x41\xdc\xf3\x01\xfe\xac\x2a\xd6\x3d\x10\x3c\xf5\x8b\xcf\x97\x74\xb7\x50\xc6\xf8\xe1\xb7\xba\xa8\xed\xa0\x2c\xee\x87\x3e\x43\x87\x60\xfa\x4c\x15\xbe\xb4\xd7\x33\x83\x3d\x7a\x10\x43\x08\xc5\x33\x9e\xa1\x3e\x8c\x39\xb2\x8f\x38\x1c\x8f\x47\xf7\x36\xf4\x52\x04\xeb\x6c\x42\x39\x08\xd6\xd9\xb5\x4c\x3d\x84\x06\xd2\x32\xf8\x20\x32\x4c\xd7\xe7\x12\xe1\x4e\x7b\xc0\x90\x72\x42\x04\xdc\xac\x24\xce\x18\x0f\x89\x54\x00\xdf\x8e\xe7\x36\xf3\x3a\x73\x31\x76\x9a\xe3\x7c\xb4\x32\xd3\x5e\x29\x62\x5a\x86\x53\x81\x8b\x7a\xd4\x09\x71\x86\x5f\xa0\x46\x80\x45\xc7\x8b\x71\x0b\xec\xe3\x78\xc9\xdc\x85\x2b\xd7\x78\x77\x43\x33\x05\x65\x15\xd0\x96\x51\x40\x73\xf6\xde\x0f\x6a\x34\x28\xe3\xd2\x56\x2d\x13\x75\xb6\xdb\x9e\x70\xce\x9b\xed\xf1\xab\xdd\xac\xc7\xa3\x85\x87\xfd\x25\xb2\x49\xfb\xca\x88\xb4\xac\xdb\x5b\x14\x51\x2d\x1b\xdd\x77\x52\x36\x4f\x25\xf5\xc0\x97\x70\xeb\x1a\x60\xf2\xba\x04\xfe\xad\xc2\x25\x98\x23\xe2\xaa\x7a\xc7\x57\xbc\xa3\xdf\x02\x0c\xaf\x11\xee\x6d\x70\x48\x9c\xc9\xb7\xa1\x4f\x85\x00\xbf\x30\x1d\x42\x21\x5e\x7c\x66\xf7\xaf\xac\xae\x9a\x3e\x0d\x27\xcf\x59\x22\x28\x67\x25\x46\xe0\x20\x28\x67\x6b\x3c\x14\xef\xf4\x3c\xd0\x27\xd9\xab\x92\x7b\x41\xb0\xcb\x26\x37\xff\xa2\x57\xd6\xba\x2d\x96\x4e\xf1\xf3\x35\xd4\xcf\x57\x8f\x41\xd1\xb9\x9b\x03\x17\x69\xc1\xc0\x97\x7b\xfe\x92\x33\x03\x8c\xd7\xc8\xae\x33\x5e\x9d\xb3\xb9\xd0\x1f\xd0\xae\x5b\xaf\x6f\x14\x1f\xbc\xf1\xd7\xab\x96\x51\xa0\x43\xe5\x5f\xcc\xb3\xdf\xe4\x1e\x5f\x20\x06\x82\xd5\x4c\xee\xe4\xfd\x94\x92\xd4\xbf\x70\x42\x61\xd9\x24\x1d\xf4\x69\x58\x1e\x17\x4c\x4b\x19\xdc\xc0\x4b\x9c\x2a\xfc\x1f\x27\x80\xba\xe4\x5b\xd3\x28\x97\xc0\x34\xe6\xb6\xc1\x25\x54\xdb\x48\x90\x0a\x65\x32\xcc\x7c\xbf\x45\xd1\xbc\x44\xe3\xb9\x81\xa0\x87\x23\x99\x44\xbf\x4c\x92\xb0\xcc\xcd\x6c\xcd\xeb\x85\x9e\x44\xc2\x4c\x02\xfc\x4d\x70\x75\xc9\x4b\x36\x89\x8a\x59\xa7\xdf\xda\x61\xb9\x37\xc6\xf3\x5d\x02\xdb\xe8\xfe\x14\x94\x99\xcb\x7a\xbd\xa6\x01\x31\xd1\x97\x4c\x02\x5f\xf6\xfa\xb5\xd7\x57\x71\xa3\xac\xc7\x03\xed\xf5\x9b\x2b\xcc\x05\x00\x30\xd1\x34\xe6\x56\x54\xe0\xd2\xbf\xfa\xc2\xb4\x3d\x00\xe0\x9d\xf1\x0b\xfa\x9d\xd4\xe3\x28\x4c\x8c\xf8\xb9\x55\xad\x6f\xf4\x83\x35\x10\xe0\xeb\xdc\x2a\xa1\x9c\x1c\x27\x97\x03\x5f\xb9\xb9\x61\xb0\xa9\x41\x9f\xe4\xca\x84\xf8\xcd\x0d\xc8\x06\x61\x98\x27\x98\xbf\xc0\x07\x70\x6e\x86\xee\x69\xf4\xc9\x45\x01\xb9\x3f\x37\x2f\xca\xce\x5c\x54\xd6\x17\xc6\xd0\x75\xbf\xa1\x4d\x77\xef\xe8\x5f\x97\xa4\x9d\x7e\xc0\x51\x55\xe7\x4b\x58\x77\xbc\x49\xe6\x06\x37\xdf\x1d\x27\xd1\x43\x8a\xfb\xd2\x5d\x07\xbe\x15\xc6\xbd\xe3\x5b\x3a\xb5\x57\xeb\x51\x59\x38\xce\xf0\xbc\x31\x47\x7c\x57\x87\xf3\x0a\x13\x65\x33\x1e\x60\x26\x44\xd3\x9d\xe0\x11\x83\xa0\x84\x73\x23\x55\x1e\x91\x23\xe6\x66\x16\xf6\xaf\x0d\x20\x58\xf7\x11\x2b\x27\xc8\xf7\x49\x60\xd0\xd6\x5d\xcf\xf4\xe1\xf5\xb7\x84\xe2\xf6\xdc\x0e\xa5\x26\xc6\x86\x9b\x1f\x7e\x8e\x73\x83\xc3\x4e\xcf\x09\x1e\x36\xdf\x7e\xe1\xfe\x07\x88\x77\x8a\x5f\xc4\x03\x66\x6e\x43\x5f\x66\xf6\xe5\x93\x46\x6c\xc3\x5c\x06\x63\xc0\xaf\x96\xb0\x48\x73\x9b\x46\xb1\xa1\x8d\x56\x57\xcf\xc9\xa7\x3b\x67\x9c\x10\xaa\xdd\x75\x3e\x80\xfc\x38\x4e\x19\x16\xf7\x02\xb5\x00\x0f\xe9\x04\xbf\x58\xf1\xe4\x98\x1b\x84\x0a\xd5\xc7\x14\xcb\x88\x95\x76\x6e\x84\x12\x42\x75\x33\x0d\x36\x1a\xee\xfb\x65\x8e\xd7\x5f\x41\x33\xe6\x86\xa9\x7f\x38\x09\x50\xff\x00\xf9\x26\x60\xc5\x3a\xbd\x70\x28\x55\x77\x37\x04\xdf\xc0\xe1\xa6\xbd\x5a\xcd\x58\x30\x13\xed\x2e\x79\x7a\xee\x5f\x06\xa7\xb5\x21\xbb\xe9\xbe\x72\x52\x06\xa0\xc8\x25\x20\xca\x68\x07\x33\x34\x77\x22\xd3\x62\x78\x98\x7b\xd1\x67\x73\xf5\xbf\x57\x94\xd1\x5c\x3e\xa2\x86\x06\x5e\x02\x93\xa8\xa1\x01\x46\x6a\x02\x26\x4c\x9c\xaa\x27\x11\x44\xa3\xdb\x27\xf1\xd0\xb1\x12\x4e\xa3\x89\xba\xc9\x3b\x88\x7b\x14\xac\x73\x0f\xc5\x2e\xbe\x45\x94\x10\x74\x36\x73\x47\xc1\x4a\xda\xb3\x69\x14\x50\x17\x75\x27\x24\x0e\x3a\xb9\xb9\x2b\xc6\xb2\x21\x80\x0c\x3b\x98\xbc\xb9\x13\x8f\x8a\x98\x64\x93\x88\xa0\x89\x78\x38\x77\xc2\xdd\x00\xe2\x9d\xfb\x50\x01\x4d\x9f\xd3\xec\x3d\x3b\x65\x43\xfa\x50\x26\x54\x39\xa1\xa9\xa7\x91\x3f\x25\xb4\xbb\x19\xdc\x1b\xe3\x34\x02\x2d\x97\x80\x88\xa0\x0d\xae\x68\xee\xa6\xfe\xda\xf8\xd6\x09\x76\x6a\x30\xe6\x4b\x5f\x5a\xea\x71\x29\xd9\x8b\xf5\xae\x2d\x63\x36\xe1\xb3\xf3\x05\xfa\x81\xaa\x61\x8a\x0b\x94\xd8\xec\x06\x5b\x4c\xc6\x79\x89\x21\xa3\x4f\x23\x88\x56\xda\xf0\xe8\xe1\x26\x37\x77\x92\x7d\x20\x4a\x4c\x30\x85\x81\x11\x65\xee\x88\x51\xe4\xb2\x9c\x3b\xde\x27\x15\xc2\x00\xbe\x30\x86\x63\x7b\x24\x0c\x8c\x8d\x47\xb2\x38\x86\x2f\x57\xe3\x2a\x83\xe1\x6b\x28\x9d\x27\x81\x3e\x2b\x79\x26\x66\x21\x0c\x33\x98\xb6\xf9\x61\xfb\xd6\x43\x3a\xcb\xae\x28\x14\x94\x71\x33\xe3\x4c\x96\xea\xba\xed\x94\xb5\xb4\xd2\x4f\xd5\xfb\x81\xf6\x38\x49\x77\xd6\x04\x1c\x5e\x85\xa3\x9a\x05\xee\x19\xcb\xf2\x2c\xa6\x9d\xe3\xee\x10\x7c\xb3\x63\x24\x98\x45\x6b\xa9\x65\x38\x1b\x1f\x43\xb0\x7a\x15\xb5\xcc\x2c\x61\x48\x6c\xcb\x58\xf4\x20\x7e\x04\xd3\x0c\xac\xb7\xb3\x90\xdd\x9c\x18\x84\xb3\xe8\x9d\xd0\x98\x23\x01\x21\x08\xf5\x3d\x0b\x16\x55\x42\x6b\xcf\xf2\x19\x72\x2c\xa3\x4a\x82\x88\x16\xce\x5b\xd8\x8f\xa1\xbe\xfd\xed\x09\x07\x0f\x51\x07\x0f\xd7\xbf\xf9\xea\xfe\xc7\xdd\x2f\x26\x03\x77\xbe\xe8\x0e\xc1\xd5\x4d\xf1\x6d\xf8\xa2\xce\xf2\x98\xec\x9a\xfe\x11\x6f\xc9\x45\x31\x09\xb2\x59\xc3\xfa\x57\xcf\x89\xd5\x1e\x3c\x59\xf3\x91\xa9\x32\x0e\xc3\x32\x04\x72\xfc\x8a\x33\x9b\x15\xa5\x1b\x11\x65\x67\x25\xa3\x36\x31\xbd\x66\xdd\x15\xa9\xd6\xc2\x57\x38\x03\xcc\xb6\xb3\xe2\x97\x87\x5b\xc2\xac\x58\x12\xc9\x89\x39\x2b\x71\x8c\x40\x43\xcf\x6a\xd0\x40\x0e\x2c\x18\xb5\x86\x28\x37\xab\x49\x22\x58\xd4\x5a\xb0\x88\xf1\x7a\x55\x59\x6b\xb8\xab\xda\x0c\xcb\x43\x1b\xd0\xfd\xe8\x24\x66\x35\x2d\x1c\x04\xa3\x36\x09\x27\xf5\xe4\x31\x24\x1a\xed\xac\x26\x6b\xf0\x5b\x21\x57\xc1\x5c\x12\x6e\xc9\xfa\x44\x4c\x80\x83\xa9\x09\x91\x63\x43\x2a\xee\x28\xe1\x18\x0c\x33\x0c\x37\x03\xb6\xac\x77\xd7\x04\x3d\x19\x7e\x76\xb3\x22\x3e\x93\xd1\x68\x12\x2d\xb3\x92\x67\x73\x56\x74\x3f\x72\x87\x44\xcb\xcc\xcd\xef\x9e\xe8\xf6\x20\x48\xf5\x52\xc4\xa6\x1e\xa0\x23\x30\x87\x49\x60\xca\x40\xfc\x99\x95\xc7\xc4\xd7\x97\x60\x94\xad\x3b\x66\xd2\xbf\xf9\xb2\x36\x43\x53\x33\xfe\x86\x95\x6d\xb0\x47\x04\x70\xec\x64\xce\x9e\x4d\xdd\x27\x8f\x09\x41\x15\x13\x60\xf3\xfc\x2d\x90\x22\x6d\xf4\x67\x84\x28\x8a\xc1\x42\x1c\x9e\x0d\x2f\x07\x4c\xf4\xb3\xa5\xf1\xee\xd7\x78\x3a\x9e\x10\x1e\xcc\x8e\x0e\x12\x1f\xc9\xd9\xe1\x12\xe4\x62\x3b\x84\x1c\xaf\x88\x49\xdc\xb2\x4a\x92\x8e\x29\xec\x05\x5f\xce\xd9\xf1\x31\x44\x1f\x36\xbb\xce\xd9\x1c\xde\x4e\x90\x00\x14\xe8\xb3\x03\x6d\x90\xe3\xec\x87\xd0\x03\x7e\x6b\xe8\x9e\x8d\x3e\xc9\x43\xfa\x5b\x19\x4b\x19\xeb\xd0\xbf\x90\xcf\xd4\xa3\x33\x23\x56\xd9\x34\xdd\x3f\x6a\x90\x49\xec\xb1\x0e\x50\x73\x76\x44\xe3\xc9\x59\x32\xde\x58\x38\xc7\x1b\xb0\xf4\xb0\x1e\x71\x29\x2d\x13\xff\x8f\x3b\xd2\xf1\x54\x40\xf7\x3c\x89\x37\xd6\x91\x40\x66\xec\x12\xec\x35\xe6\x2f\x06\x18\xdc\x64\x68\xf1\x64\xcd\xa3\x88\x53\x5c\xfd\x04\x0f\x38\x00\xe0\x19\x1a\xa2\x20\xd8\x40\x51\xba\x5c\x51\x60\x85\xc7\x0f\x74\x12\x1b\x2c\x71\x6f\x9b\xd1\x54\x07\xd9\xc6\xf8\x61\x41\x19\x9d\x28\x8f\x43\x34\xb8\x40\x08\xed\x07\x63\x71\x6c\xc0\x55\x50\xd0\x4f\xe0\x2a\x29\x27\x47\xa6\xf9\x4e\x80\xc8\x09\x74\xa5\x87\xdf\x05\xba\xe2\x43\x14\x04\xa5\x50\x6a\x8a\x00\xad\xcf\x23\x6c\x48\x31\xa2\x25\xcf\x08\xbd\x3d\x28\xa3\xce\x22\x00\xeb\x24\x73\x7c\x82\x95\x9c\x01\x56\x2f\xfc\x2d\xf1\xf3\xc8\xa8\x36\x43\x6c\x68\xec\xbf\x22\x66\xc4\x21\x6b\x58\x3a\x66\x10\x73\x1c\x84\xf8\x0c\x53\x97\xc1\x16\x12\x7b\xac\x7d\x0b\x36\x44\xcd\x33\x90\x75\x48\x7b\x40\xc0\xc2\x4c\x47\x5f\x7b\x08\x15\x04\x29\xa6\xf9\x22\xa9\x87\x7d\x2d\x2e\x9e\xa9\xe4\xe1\xae\x62\x9a\x58\x98\x49\x90\x8c\x34\x5d\x98\x29\x47\x42\x9b\xc3\xa8\xa7\x7c\x17\x25\x32\xf1\xd0\x67\x20\x4f\x03\x0f\x99\x71\x1a\x1b\x8c\xf1\x1b\x6b\xca\x6f\x11\x4d\x00\x9c\xd3\x8c\x4b\xeb\x0c\x73\xc1\xe5\xa6\x40\xf0\x42\xb1\x1a\xe2\x14\x46\xc2\xac\xfe\x16\xe5\x7e\xd8\x5e\x6c\x90\xf5\xc4\xca\x72\xee\xbc\x52\xe0\x6c\x66\xc0\xc1\x10\x41\x74\x06\xe2\xb9\x2f\x62\x98\x50\xd7\xf5\xc1\x89\x56\xee\xc1\x34\xf4\xc0\x04\x26\xf8\xa1\xc4\xcd\x69\x9a\x92\x5e\x96\xfb\xff\x66\xec\x5f\x72\x6d\x07\xb5\x2f\x7d\xb0\xfe\x6b\xc5\x6d\x82\x01\x03\x46\x3a\xba\x7d\x81\x89\x9d\xb5\x2c\x64\xff\x0b\x29\xbe\x6f\x9d\x7f\x48\xa1\xcc\x38\x51\xf2\xda\x6c\x9b\xf7\x63\x32\x1f\x63\x34\xc1\xf8\xec\xc3\x57\xc6\x1b\xbe\x7d\xb5\xee\x31\xb9\xa4\x1f\xb3\xbd\x5c\xe1\x93\x13\xf0\x63\xa2\x39\xc1\x3f\xac\x6c\x48\xcc\xb0\xce\xdf\x5e\xcd\x60\x9a\xbf\x5d\xc4\x0d\xd7\x18\x5c\x09\x06\x3e\x49\x15\x64\xd7\xd1\x2f\xa5\x84\x9b\xdf\xb8\x69\x20\xcd\x74\x40\x36\xd1\x2d\x8d\x9e\x3c\xdd\x3b\xbf\x99\x33\x6c\x8a\x9d\x2b\x36\x3a\xce\x81\x7f\x52\xf5\xba\x0a\x76\x5a\x6f\xa6\x23\x9d\x63\x0c\x18\x9d\x00\xf4\x62\xfe\x2c\x6e\xe2\xfb\x46\x57\x57\x54\xa8\x5b\x51\xba\x3d\xfd\xdf\x6f\xf5\x37\xbc\xa3\x6b\x03\xed\xea\xe8\x1d\x71\xf6\x1e\x3f\xd6\xf6\xdf\x6f\xdb\x52\xf9\xad\x84\xd1\xf8\x8d\x25\x9a\x79\x02\xbe\xda\x0d\x30\xe5\xe8\x48\x51\x44\x3f\x8c\x2e\xa2\x2c\xe3\x02\x83\x7b\x53\x5d\xf0\xf3\x91\x62\xf3\x80\x91\xbd\x61\x25\x1f\xbd\xeb\x46\x41\x59\x48\xe7\xf8\x9c\x8d\xae\x3e\xd2\x36\x12\xea\x03\x37\xc0\xe8\x84\xf1\x0c\xeb\x3f\xd9\xd4\x91\xb0\x3b\xc6\x92\x61\x7f\x4e\xaf\xed\x94\xc5\x5c\xf5\x2a\xda\x43\x57\x20\xfa\x7f\x4b\xce\x42\xdd\xf0\x35\x04\x11\x7a\x80\x73\xd6\x08\xa6\x1f\xb2\x8f\x7b\x68\xe8\x12\x05\xab\xfd\xe8\x1f\x92\x16\x57\xd7\x07\x95\xce\x83\xe4\xfd\x00\x9f\x85\xea\x69\x3c\x7a\x3b\xfc\x7e\xe3\x4b\x47\xfd\x71\xa1\xea\x38\xc1\x8e\x07\x95\x0e\xb8\x80\xe3\xb9\xd0\xf9\x65\xd3\x91\xb0\x8b\xdf\xa2\x22\xe0\x90\x7c\x12\xd6\x7f\xea\xfc\x30\xaf\xbc\x39\x80\xc1\x76\x8f\xfc\xaf\x40\xf3\x01\x3d\xfa\x0d\xe3\xcd\x78\x74\x97\x60\x41\x3f\x32\xa2\xa0\xb7\x78\x74\x56\xb4\xe2\x45\x92\x11\x0a\x87\xf3\x8e\xc0\xdf\x01\xd3\x79\x77\x42\xe1\xcb\x55\xb1\x9a\x0d\xfc\xb7\x8a\x83\x86\xff\x56\x03\xc8\x6f\xe8\xbf\xf5\x98\x27\xb1\x66\x8f\x65\x29\x69\xd9\x91\x95\x30\x0f\x26\xec\x53\x85\xdc\xa1\xc3\x64\x0a\x42\x9a\x7c\x24\x8f\xb8\xfd\xed\xc6\x43\x3e\xcd\x45\x49\xdd\xa0\xc2\x52\xb2\x7c\x0c\xdf\x62\x72\x3d\x3a\xaf\xb2\x38\x60\x0d\xef\x18\x06\x06\x8c\xe0\x1d\x38\x97\xf1\x08\x93\xc2\x89\xf2\x00\xce\x88\x53\xe5\xf8\xf9\x3f\x59\x67\x14\xd6\x4e\x70\x7c\x9e\x2a\x01\xc7\xe3\x61\x13\x22\x56\x6e\x3c\x86\x57\x21\x89\xc2\xe4\xdd\xf0\x52\x1f\x62\xb0\x11\xf7\x3a\x1e\x40\x18\x09\xfa\x1f\xcf\xa7\x25\x8b\x3a\x88\x6b\xdf\x7c\x47\x65\xf7\x29\x77\xa8\xec\xa6\x1f\x06\x01\xfa\xb8\x75\x8c\x81\xcb\x0c\xce\xc0\x63\x18\x4b\xcb\x58\xe0\x47\xd5\x71\x85\x18\xfa\x4e\x75\xbf\xc5\xc3\x1a\xf7\x87\x31\x00\x67\xc4\xcb\x7e\x0c\x90\x32\x40\xd0\x18\x03\x58\xee\xc7\x72\x01\xe3\x03\x5c\x6f\x80\xd3\x76\xbb\xf1\x0f\xa4\x67\x1c\x86\xc7\xc0\x57\xef\x62\x71\x0f\xc6\x1a\x92\xe1\x31\x60\x8b\x22\x5a\x62\x8c\x2a\xd9\x2f\xdf\xe2\xf6\x02\x9c\xf3\x00\xd7\xad\xe3\xb6\x30\xf4\x6d\xc2\xc1\x72\x8c\x61\x1b\x79\x07\xab\x2b\x0a\xf1\x31\x94\xd2\x2c\x97\xf1\xfd\xb5\x6b\x1a\xf7\x47\x59\xd3\x83\xda\x77\x08\xd7\x41\x4a\x03\x47\xad\x13\xaa\x37\xc0\x51\xeb\xb8\xb4\x0c\x58\xba\x2b\x0e\xa8\x43\x4c\x35\xac\x6f\x03\x8c\xb4\x7b\x30\xee\xb0\x6e\x37\xaf\xed\xc3\x6b\x75\x37\x1d\xdf\x41\x0e\x1c\xb0\xd0\x8a\xeb\x62\x70\x70\x81\x4e\x3c\x86\xd7\x6a\x84\x88\xf1\xf3\x99\x23\x9d\x79\xe2\xc6\x30\x3e\x51\x3c\x28\x17\x2e\x0d\x80\x38\xc7\x44\x4f\xac\xaa\x01\x57\xa9\x0a\xa2\xc7\xf8\x91\x6c\x23\x44\xcc\x8c\xdf\x18\x52\xce\x2c\x58\xf0\x39\x30\x71\x47\xea\x84\xd5\x0d\x30\xc9\x6a\x65\x6e\x80\x31\x76\xe3\x3e\x33\x26\x28\x24\x78\x2f\x8c\xc9\x55\x9a\xe8\x9c\x01\xc6\x58\xc7\xa5\x62\xe0\x9a\x54\x70\xed\x19\xd3\xf1\x62\x0e\xcf\x0a\xcc\x17\x87\xc6\xf4\x8a\x5d\x7d\x1f\xb6\x78\xf6\x99\xa9\xf1\x80\x83\x71\x82\x84\xec\xa6\x35\xa5\xa8\x44\x10\x98\x52\x54\xfa\xed\x14\x12\xfe\x5f\xd6\xcc\x31\x17\x83\xcf\x86\x04\xcb\x75\x45\x11\x3f\x26\x62\x36\xe1\x2b\x63\x82\xc1\xdd\x6d\x04\xde\xe2\xc3\x02\x25\x26\x65\xd7\xc6\x47\xa4\xaa\xcc\x5d\xb2\x33\xb1\x70\x97\xe2\x34\x9b\xdf\x42\x19\x9d\x59\xe8\x0b\x10\x37\xc2\x51\x06\x6e\x1d\x05\xc8\xa0\xb1\x10\x9b\x95\xd8\x96\x5c\x81\x0c\xda\xba\x65\x6e\xa9\xfc\x26\x04\x8b\x05\x81\xbb\x47\xf3\xd4\x11\xbf\xaa\x59\x2e\x94\x69\x70\x7d\x0e\x5c\x39\x6e\x15\xd0\x0b\x58\x15\x15\xf4\x6b\x48\x6d\xc5\x3b\xc4\xe8\xe1\xc9\x3e\x96\x2e\x03\x4c\x70\x58\x9f\xeb\x6d\x7d\xc2\x90\x27\xda\xc8\x75\x03\xc0\xca\x01\xce\x53\x21\x56\x6e\xac\xd7\x0d\xfe\xa4\x87\x20\x7a\x2c\xfa\x48\xe8\xab\xd0\x29\x82\xf9\x54\x71\xfd\x18\x91\xc4\xb5\x3f\xf9\x87\xf8\xfe\x2c\xe8\x28\x92\x5c\x34\x7e\xeb\xe8\x4b\x3a\x16\x4f\x0d\x1e\x71\x2b\xa9\xf0\xfb\x4c\xa8\x1b\xb7\x94\x11\x92\xd4\x30\x16\x40\x12\x55\xa0\x81\x46\x88\x56\xca\x86\x0d\x61\x6c\x05\x86\x68\x68\x96\xf7\xca\x1f\x9c\xd6\x98\xfd\xc7\x86\x55\x09\xe4\xdb\x01\x1c\x50\x53\x37\xb9\xc1\x30\xf3\xb4\xde\x19\x09\x1b\x89\xea\x47\xdc\x4a\x3e\xbb\xe2\x54\x89\x94\xb6\xb9\xaa\x80\x16\x3b\x76\x13\x98\xaf\xf0\x1b\xe9\xa7\xf8\x9b\xeb\x98\xf9\xa3\x58\xc7\x2b\x7f\xec\x69\xd8\x0f\xf5\x91\xab\x94\x53\x5c\x98\x1a\xf5\x79\xf0\x90\x16\x25\xf5\x2d\x49\x0a\xfd\xb0\x75\xcc\xa6\x6f\xf7\x2f\xe8\x9c\x3a\x60\x58\x72\x23\x81\xbb\xf3\x56\xca\x81\x97\xb3\xe2\x2b\x39\x5e\x19\xa2\xd8\xf0\xde\xae\x55\xb4\xf3\x1b\x07\x6f\xda\xf8\x7a\x93\x61\xbc\x5e\x41\x2d\x69\xcb\x3b\x3c\xc4\x2a\xbf\x61\x8e\xa7\x9e\xef\x00\x1e\x8a\xc3\xe1\x15\x02\x9c\x5b\x90\xbc\x90\x1a\x21\xa0\x7b\xbc\xbb\xf5\xd1\xfd\x04\x35\xc2\xbb\xa4\x66\x24\xcf\x65\x38\x1c\x65\x2d\x5c\x9f\x98\x6f\x6f\xe0\xd3\x69\x3d\x09\x43\xba\xd9\x14\x5f\x11\x31\xd8\xf0\xa0\x69\x7c\x20\x43\x19\x50\x33\x16\x25\xef\x97\xf8\x68\xbc\xef\xc7\xbb\x75\xa8\xf6\x37\x6a\x99\xcb\xdf\xb8\xea\x58\x67\x62\xa2\x95\xe4\xa0\x72\xbc\x01\xee\x1c\x1f\xae\x19\x17\x57\xcb\xcf\x8d\x96\xf5\xfb\x11\xa2\x86\x13\xfb\xc0\x82\x5c\x08\xee\x1f\x50\x30\x56\x68\xf6\x86\x96\x59\x0c\x90\xe3\x53\x2f\x8e\xf0\xf2\x61\x4c\xaa\xff\xde\xcc\x30\xc3\x36\x7c\x92\xc6\x87\x87\x3b\x3e\x4c\xe3\xd3\xd4\x4f\xa3\x3f\x26\x1d\xe1\x34\xe3\x6b\x10\x2e\x30\x98\x40\xaf\x74\x10\x16\xc6\xc7\x64\x84\xcc\x73\x00\xa5\x52\x41\x4f\x1d\xf0\x18\xde\x84\x00\x0d\xb8\x0b\x6f\xcc\xf8\xe3\x1b\x28\x4f\x99\x68\x9a\x73\x91\x0c\x66\x5c\xf7\x7f\xff\x93\x30\x35\xcf\x38\x12\xc3\x20\xe6\x6e\xc6\x69\x74\xc2\x72\x37\x23\xdf\xfc\xee\xfc\x7e\xcf\x3b\x67\x07\x9f\x71\x36\xc8\x84\x1f\xdb\x84\x01\x3d\xe1\xcb\x35\xe3\x74\x46\xc2\x9d\x64\xe2\xcb\x35\x70\x9e\x9c\xe0\xb4\x25\xf4\x7f\x33\x2a\x79\x9e\x6b\xe3\x8c\x23\x11\x26\x24\xaa\x19\x95\x3c\xcf\xc2\x9a\xd1\x79\xe7\x9c\x22\x13\x5f\xae\x01\x2c\xf1\xc4\x97\x2b\x41\x68\x3c\xf1\xe5\x1a\xb7\xf9\x0c\xea\x50\xc8\x7f\xf0\x6d\x31\xfd\xd4\x19\x09\x6c\xe2\x6b\x35\x6e\xdb\x38\x29\xeb\xe6\xfd\x35\x4f\x7a\x25\xfd\x48\x03\x09\x60\xca\x89\x3f\x53\x02\x50\x72\xe2\xc3\x94\x08\x52\x9f\xb0\x6e\x27\x42\xaa\x26\x4c\xdb\x09\x1f\xa3\x09\x1e\xdb\x00\xcd\x61\xc2\xba\x9d\x70\x27\x99\xf8\x21\x25\x74\x3c\x93\x4d\x6e\x00\x81\x3c\xf1\x43\x4a\x48\x4b\x13\x46\xed\x01\x24\xce\x8c\x97\xfc\x1b\x65\x7d\xb4\xf1\xa1\xac\xb3\x29\xa6\x64\xfe\x67\x52\x0f\x1c\x65\x27\x98\x6d\x09\x2b\xf9\xc4\x27\x29\x01\x87\x3c\xf1\x49\x1a\x28\xd9\x27\x38\x6d\x09\x34\x87\xb9\xcf\x64\x1f\xf8\x66\xcd\x7d\x7d\x27\xfd\x48\xd5\x13\x6c\xb6\xc1\x15\x7e\xc2\xc6\x9d\x00\xec\x9b\xe0\xb1\x25\x30\xdb\xe6\x4e\xd4\x8d\xfa\x6f\xe7\x09\x75\x86\x69\x3b\x41\xb1\x36\x61\xce\x4e\xc4\x02\xcf\xed\x3c\x19\xe4\x73\x6e\x0e\x03\xff\xaa\xb9\x6f\xfa\x67\xf0\xed\xb9\xa2\x0e\xae\xe1\x73\xdf\xe4\x33\xc8\xa7\x92\xff\xa0\x3e\xce\x99\xc1\xb7\xcc\x19\x50\x54\x26\x9b\x74\xca\xb6\xf1\x48\x21\x03\xfc\xb6\x09\x69\x76\xc2\xf9\x76\xe2\x06\x95\x00\xd6\x9c\xbb\xd3\x76\xe6\x3c\x78\x66\x09\x21\x62\xee\x87\xb6\xd3\xcf\x90\x57\x27\xfc\xe4\xe6\x66\x5e\x61\x3c\x9b\x7b\x9e\x3a\xb0\x01\xcc\xbd\x3a\xbf\xf9\x36\x4c\xa7\x2d\xcc\x13\x10\x67\xe6\x3e\x52\xe3\x00\xdf\x6e\xee\x4d\x7d\x0a\x75\xde\xe4\x5f\xa8\xe7\x4b\xfe\x85\x3c\x99\x27\xe8\xce\xe7\xfe\x7c\x87\x3c\x3f\xea\x79\x0e\xf6\x89\xfb\xd2\x40\x40\x98\xef\x75\xd6\x1a\x34\x78\xf3\x3d\xb7\x82\xc1\xe6\x37\xdf\x73\xb0\x27\xd0\x73\xe6\x9b\xc8\xf3\x1c\xaa\x13\xc2\xe4\x84\xea\x69\xbe\xe7\x76\x37\x3a\xeb\x05\x92\xe4\x84\x55\x74\xe2\xca\x34\xce\x35\xff\xff\xbc\x99\x4d\x30\xb7\x12\xbc\x7b\x13\x9f\xa7\xc1\xee\x3f\xf1\x67\x4a\x99\x05\xf4\x9e\xcd\x60\x60\x3d\x9c\xef\x91\x84\x46\xb7\x10\x06\x16\xab\xca\x04\x8b\x2b\x81\x40\x31\xc1\xe2\x1a\xe8\x57\x26\xcc\xca\x89\xb0\x99\x09\x2e\xd7\xe8\xbe\x7f\xc4\xcb\x04\x15\xfb\x7c\x1b\x9d\xc4\x80\xbf\x0e\x32\x8b\x03\x16\xe4\x81\xfe\x6c\xbe\x0e\xe6\xc3\xb7\xeb\xd4\xe1\xb1\xd1\xc1\xfb\x4c\xea\xd7\x01\x64\x52\x73\x1a\x8d\xc7\x3a\x3b\x50\x4c\x5e\x4e\x94\x84\x23\xe2\xc4\x87\x29\x11\x74\x3b\xdf\xb3\x58\xc7\x63\x1d\x5e\x3a\x9e\x49\xcd\xa9\x93\x30\x2f\x4f\xfc\x9c\x12\x57\xbf\xf9\x3a\xb0\x0c\xe0\xc7\x40\xe1\x06\x32\xbf\xb3\xf8\x12\x6e\x1a\xf3\x2b\xfe\x6e\xfc\x4e\xff\xfd\xcf\xe0\x3a\x39\x21\xf2\x4d\xe8\x36\x26\xbe\x44\x83\xa0\xe4\xf9\x31\xb0\x48\x99\x13\x9f\xa1\x81\xb5\x6b\xe2\x33\x94\x08\x55\x9a\xdf\xd9\xa4\x07\xd2\xf0\x04\xeb\x2b\x81\x19\x36\xc1\xdf\x4a\x60\x4a\xcd\xef\x21\x9d\x49\x0d\x59\x6e\x02\x15\x62\x82\xc5\x95\x40\x12\x99\x1c\x26\x09\xb1\x7f\x72\x98\xa4\x62\xdd\x16\xbf\x99\xc8\x10\xd5\x26\x18\xb8\x27\x38\x58\xe9\xc2\xd9\x6d\x7e\xb1\xf8\x07\x05\xb3\x8b\x5e\x78\x94\x4d\x9c\x75\x12\xd0\x7f\xf3\xa3\xd7\xc1\x1b\x99\xdf\x67\x3a\x3d\x41\x2f\x62\x7f\x5b\x17\xdb\x1c\xce\x1f\x0b\x70\xa9\x84\xe3\xc2\xba\xec\xc5\x53\xd8\xc2\xf1\x25\x61\x6b\x5d\xb0\xb0\x26\x9c\x5d\xd6\x75\xfb\x7b\xf0\xfb\xb4\xfe\x4a\xbf\x7f\x9c\xaa\xe2\x5f\xba\xf0\x10\x39\xff\xa0\xb4\x9b\x12\x1a\x25\x70\x90\x5d\x9c\x04\x0b\x7f\x91\x84\x0e\x60\x81\x23\x95\x2e\xec\xa7\xeb\x3a\xf2\x6e\xc2\xee\xb9\x00\x95\x3a\xff\xb8\xf9\x83\xee\x6e\x64\x5b\x19\xfe\x46\x4e\x76\x7d\xa7\x08\xbb\xbe\x93\xeb\xb9\x10\xa4\x0b\xcb\xfc\xc2\x25\x22\x61\x84\x5a\x17\x1b\xd3\x85\xd5\x6a\xe1\x1f\x91\x88\x09\x5c\xe0\x3b\x9d\x7f\x90\xad\x23\xf4\xf0\xf5\x64\x24\xd8\xa7\x16\x5e\x0e\xe7\x0f\x2a\xb2\xf8\x7c\x50\xe0\xca\xfe\x83\xcf\x17\x5d\x35\xfc\x82\xac\x06\x1f\x04\x6d\x85\x1a\x79\x5d\x8c\x1d\xe8\x69\x0b\x26\xd5\x44\x7c\xce\xba\xd8\xda\x30\x15\x2d\x80\x97\x12\x81\x48\x0b\x30\xa4\x74\xb1\x1c\x56\x62\xc0\x38\xdb\x57\xe2\xcc\xb9\x58\x0f\x0b\x68\xa4\xf3\xc7\xf9\x3c\x31\x7c\xb0\xe5\xac\x94\x83\xdf\xa7\x38\x88\x4f\xd3\x55\xfc\xe3\xa6\x1e\x85\xac\x18\x63\x1c\x4c\x56\xaa\xfe\x1e\xfc\xe6\xe3\xfb\xfa\xc7\xf6\xb6\x52\xa3\x5e\x34\x30\x75\x3f\x22\xb3\xc7\x74\x0a\x7c\xac\xef\x43\x7d\x8f\x30\x92\xb0\x08\x2f\x20\x8c\xce\x3f\x68\xe1\xb3\xf8\x07\xc5\xb3\x19\x5d\x38\xb2\x2c\x7c\x13\x12\x20\xfb\x2b\x0d\xea\x58\x29\x82\x31\xe3\xa2\xbc\xc0\x26\x4a\xc8\xe4\x0b\x1f\x81\x84\x9c\xbc\xb0\xff\x27\xb4\xae\x2b\xd9\xff\xcc\xe7\xb4\x99\x2e\x7f\xff\x38\xd3\x05\xf9\x71\x25\x64\x0a\x38\xdb\x57\xfa\xf8\x98\xc9\x99\xce\x65\x23\x61\x5f\x5c\x80\x01\xa5\x0b\xae\xdc\x05\x1a\x50\x42\x45\xb2\x40\x03\x3a\xff\x20\xa7\x8f\x6a\x1f\x71\x7a\x01\xfb\x93\x90\x78\x56\x4e\x8c\x05\x0e\x62\x0b\xbb\x7f\xba\x8f\x48\xb2\x32\xe2\xc3\x85\x1c\xb2\x72\xa2\xbc\xb3\x35\xaf\x8c\xfc\x70\x77\x72\x62\x0b\xbb\x99\xa8\x19\x99\xc1\x6a\x64\x07\x8f\x92\xb3\x83\x77\x64\x92\x95\x1d\x9f\xb3\x7d\xaf\xec\xf8\xd0\xa9\xf9\x21\x7f\xa6\x72\x46\x0e\xc4\xe7\x7e\xc1\x84\x99\x2e\xbc\x4b\x56\x9e\xe7\xec\xfa\x55\x88\x43\xfd\xc2\x40\xb1\x32\x4b\x04\x1d\xe9\xca\x93\x75\x04\x3b\xc7\x02\xf3\x26\x21\x96\xaf\xcc\xd2\x21\x76\x66\xe5\x73\x07\x4a\x88\x52\x0b\x3b\x7d\xc2\xf2\xb2\x20\xc6\x4c\x04\xfc\x2d\x30\x69\xd2\x05\xe4\xe2\xc2\x68\x9f\x88\x2d\x58\x79\x4f\xff\x41\x67\x9c\x5b\x4d\x82\x47\x78\x65\x76\xc0\x0b\xab\xf2\xca\x7b\xf3\x0f\x8a\x7b\xfd\x9a\xe2\xde\xc2\x4b\x6c\x2b\x60\xce\x9c\x3f\xf8\x9c\xa3\xaa\x5a\xf1\x8f\x51\x01\x21\x7a\x65\x04\x09\x74\xdd\x0b\x0f\x80\x54\xcf\x39\xb1\x0a\xc3\x08\x5f\xf5\x2a\xc9\x8e\x3a\x92\xdc\x82\x4f\x33\xe1\xe7\xb7\xe0\xb2\x4c\x17\xa7\xf9\x2a\x0c\x4b\xfd\xfd\x66\x47\xc4\x41\x61\x95\xd6\xfc\x83\xcf\xcf\x05\x26\x11\x8d\xb3\xa0\xbf\x3c\xff\xa0\xc0\x36\xf8\x87\x2f\x4d\xff\x41\x5e\x8d\x5e\xf8\xbd\xf4\xf2\xdb\xf4\x8f\x97\x98\xcb\x85\xbb\x41\xfd\xfd\xa6\x22\x6c\xba\x85\x25\x78\xe1\x7b\xbd\x30\xcc\x27\x54\xac\xab\xb0\x57\xa2\x49\x59\x18\xe9\x13\x42\xe2\x2a\xac\x2e\xc2\x44\x57\x71\x84\xfd\x36\x4c\xa7\x16\x41\xeb\x1e\x3b\x2d\xa8\x12\x33\x13\xfa\xc8\xf3\x0f\x5a\xe7\x78\x33\x4d\x81\x6b\x49\x17\x1a\xec\x55\xb8\x07\x10\x5d\xbc\x0a\x9b\xe3\xf5\xb0\xa9\xc0\x32\x99\xb8\x0c\xae\xe2\x44\x78\x6e\x3f\xa7\x0b\xec\x7f\x27\x02\xbe\x4f\xab\x38\x11\xd8\x54\xe0\x9f\x4c\x88\xab\x0b\x33\x7f\x42\x79\xbe\x8a\x43\x3f\x28\x81\x55\x5b\xc7\xbf\x48\x03\xd6\xcd\x1e\x8c\xf9\x73\xe1\x0f\x90\x88\xc5\x59\xb7\xa3\xcf\xfa\x81\x00\x32\xa1\x61\x5d\x90\x38\xa6\x0b\xed\xd5\xc2\x51\x20\xe1\x99\xb3\x60\x62\x4c\x78\x9b\xac\xbb\xfa\x9b\x4c\x99\x2d\x60\x70\x2e\xd8\x0b\xd3\x85\xbb\xdb\x02\xa1\x25\x81\xa6\xb2\xa0\x32\x3c\xff\x20\x27\xa4\x3c\xe0\x48\x16\x10\x2d\x09\xa4\x84\x75\xb3\xfd\x36\x4b\x46\x2a\xc1\x3d\x63\xdd\x63\xf3\xfb\x74\xe0\xcd\x8a\x46\x91\xbc\xe0\x0b\x4c\x38\x83\xae\x9b\x11\xc6\x19\x71\xc1\x0b\x98\xdc\x0d\xee\xc5\xd5\x08\xc0\xa9\x75\x23\xd7\xbb\x1b\x80\xd1\x72\xfe\x41\x4e\x6b\xf0\x0f\x6a\x14\xd6\x82\x1a\x21\x3b\xb6\x4c\x8d\x98\x37\xee\x18\x37\x33\x02\xfb\xe6\xba\xb9\x24\xa2\xc9\x58\x10\xfe\x25\xb4\x98\xeb\xe6\x54\x4c\x50\x13\x2c\x58\xfe\x12\xaa\xb6\x05\xea\xca\xb9\x75\xfb\xc5\x99\x68\xcd\xea\x7d\x5e\xcd\x99\xb2\xf7\x97\xf8\x07\x2f\x21\x1c\xa1\x70\x5a\xe0\xab\x24\x14\x81\x0b\x7e\xbe\xe4\x65\x7b\x55\xc7\xe7\x5c\x7a\x17\x64\x7a\x09\x06\xcd\x55\x8f\xd0\x9f\x52\xf2\x0b\x84\x43\x37\xa5\xea\x20\x32\x24\xb5\xbe\xde\xf8\x4f\xff\x55\xfb\x98\x8a\x57\xfb\x98\x93\x02\x54\x91\xe4\xbd\x68\xc1\x0b\x77\xfe\xe0\x3f\xf6\x19\x9b\x7d\xb5\xcf\xd8\xec\xc1\x09\x39\x17\xfd\xd3\x21\xb0\xb2\x25\x9c\xf7\x57\xe5\xc4\x72\x1f\x6a\x88\x72\x60\x12\xac\x66\xeb\x98\xe2\x2d\xd3\xb1\xec\xf6\x0d\xb9\x00\xb4\xab\xd5\x6c\x28\xb3\xb8\xdd\xbe\x7f\xaa\x8d\x67\x41\x02\xff\x60\xb5\x66\x3a\xf9\xcf\x53\x39\x6e\x4f\x0b\x20\x8c\x84\xbe\x7e\x61\x58\x4f\xa8\x4b\x17\x80\x17\x09\x64\xa7\x85\x71\x39\x11\x1c\xb0\x20\xda\x4a\xf8\xa0\x2e\x88\xb6\x12\x08\x57\xab\x9f\xdb\x77\x02\x0c\x76\x75\xea\x86\x3b\xe6\x82\xf0\x2a\xfd\x76\x9d\x5e\x16\xff\x38\xbd\x82\xd5\x36\xe1\x44\xbb\xb0\xda\x26\x74\xc8\xab\x23\x7d\x12\x87\xbc\x3a\xc7\x1e\x4a\xfd\xd5\x9b\xef\x37\x7e\xfb\xfe\xa9\x44\xef\x59\xd5\x03\x99\xf6\xb3\xc2\x80\xbc\x58\x5d\x9d\x8a\x73\xb5\x77\xaa\x57\x28\x81\x55\x85\x09\x6a\x75\x84\x4f\x18\x66\x57\x47\xf8\x4c\xf8\xca\xaf\x8e\x58\x42\x58\xe9\xea\xf6\x17\xa2\x78\x9f\x6a\x31\x98\x17\x9d\x25\xd3\xfd\x1d\x9d\xdf\x7c\xa0\xfa\x04\x9f\xaf\xd5\x63\xf0\x0f\xbe\xb6\x27\x91\xb9\xbb\x3d\x89\x98\x0d\x22\x45\xfa\xdb\x52\xce\x2d\xcc\x80\x0b\x5b\x69\xc2\x5c\xb9\xb0\x95\xa6\xde\xff\xe5\xe0\xb1\x1e\x84\xc9\x04\x3a\xf6\x7a\x12\x7d\x4e\xff\x3f\xaa\x33\x30\x6b\xaf\x27\x6d\xfe\x71\x8a\x7c\x90\x38\xb9\x42\xae\xc7\xd1\x63\xea\x82\x70\x91\x12\xbe\x10\x0b\x58\x8b\x44\xc4\xeb\x7a\x1c\x3d\xa6\xee\x53\x99\x36\x4c\x5d\xa0\x2c\xd2\xdf\x97\x2a\xa3\xc1\x16\xfe\x38\x94\xcc\xe3\xc7\xa1\x64\x1e\x3f\x1c\x7b\x09\x95\xde\xc2\xd0\x99\x3a\x93\x17\x40\x8a\xf3\x0f\xb2\xed\x14\xc1\x4c\x7e\x38\x03\x09\x21\x5a\xd0\x61\x25\x1c\x55\x17\x68\x13\x09\x53\xfb\xc2\x4a\x9a\x88\x51\x5c\x0f\x02\x0c\xa6\xf6\x05\x92\x44\xc2\x81\x78\x3d\xcb\x77\x68\x5a\x64\xf5\x39\x7c\x1c\x85\x7f\x50\x98\x4a\x31\xc8\xf6\x16\x1c\x56\x7f\x6b\x84\xf8\x03\x62\xd9\x82\xab\x2a\x11\x1a\xbe\xc0\x9e\x48\x84\x59\x2f\x70\x25\x12\x5e\x7d\xeb\x41\x54\x4d\xc3\x6a\x20\xaa\xe2\x78\xbf\x9e\x57\xb5\x8f\x75\x7a\x13\xff\xa0\x4e\xec\x08\x18\x41\xd6\xc3\xbc\x01\xae\x66\x3d\xc8\xad\x09\x04\x82\x05\xd5\x55\xc2\x49\x6b\x61\x72\x3d\xff\x20\x27\xe4\x56\x02\xa4\xd6\x40\xf8\x21\x66\x61\x61\x2b\x4d\xf8\xd2\x2f\xec\xa3\x09\x77\xd8\x05\x8f\x55\xc2\x4c\xb1\xc0\x8a\x48\x78\x7b\x2d\xec\xa0\x09\xc0\xa6\x35\x6e\xaa\xcd\xea\x1a\x3f\x6d\x15\x43\x82\x51\x34\xe1\xaa\xb7\x20\xac\x4a\x18\x5a\x17\xc4\x54\x49\x61\x02\x70\x89\x94\x61\x5e\x5f\x03\xc1\x07\xd5\xc4\x1a\xaa\x35\x60\xf8\x58\xd0\x54\x25\xac\x19\x6b\x30\xd0\x8a\x09\x83\x81\x56\x32\x00\x6a\x22\xe5\xcb\x6c\x9f\xce\x3f\xf8\xf8\x51\x53\x86\x8c\x32\x1c\x76\xee\xc3\xc3\x61\xe7\xbe\x01\x91\x54\xca\xb0\x9a\x2f\x98\xa4\x12\x56\xfc\x35\x54\x91\x40\x8e\xb0\x30\x93\xa6\x87\x63\x61\x38\xd4\xcd\x74\x74\x1e\x98\x8b\xd6\xd8\x36\xc9\x3e\x40\x90\x41\xef\xbe\x86\x9a\x14\x5c\x82\xd6\x70\x4c\xb9\x35\x0c\x24\xda\x0c\x99\xe9\x1a\x48\x2f\xf8\x8f\xac\xe1\x60\x73\x83\x18\x08\xb1\x19\x54\xb4\x85\x7d\x34\x01\x2a\xb4\x66\x62\xfe\xb1\xd0\xe0\x5d\x4a\xd8\xce\xd7\x74\xec\x58\x5b\xf3\x46\x43\x88\xfb\xe2\x9a\x9c\x74\xd8\xce\xd6\x54\x53\x85\xee\x73\x4d\xee\xfb\x44\xa2\xac\x79\xff\xf4\x7f\x14\x87\xec\xe2\x2c\x9d\x8c\xa4\x13\x13\x04\x86\x94\xd1\x42\x2e\xe8\x92\x92\x02\xd1\x64\x90\xd0\xce\xaf\xe9\xc0\xa0\x32\x5c\xe0\x25\x24\xf8\x80\x16\x78\x09\x09\x30\x9d\x05\x3e\x41\xca\xb8\x60\x2d\x00\x0a\x7e\x53\x79\x72\xfa\x64\xe0\xa5\x17\x68\x05\x4c\xe5\x7f\xec\x75\x50\x1f\xa5\x8c\x77\xda\x9a\x6b\xf1\x15\x65\x72\x81\xcf\x18\x4e\xd6\x5c\x9b\x7f\x50\x01\x96\x34\x86\x99\x35\xd9\xa8\xe1\x78\x58\x93\xe5\x03\xd8\xeb\x22\xb8\x3f\x01\xea\xba\x08\xe2\x4f\x00\x62\xae\x85\x0a\x0b\x54\x9d\x45\x40\x7f\xca\x10\xfa\x2e\x18\x89\x12\x41\xf2\x8b\xe8\xfe\xf3\x8f\xc1\x1f\x89\x7f\x34\x7e\x53\x1a\x72\xc7\x4a\x96\xc6\xc7\xd9\xd2\x78\x1f\xcd\x32\x66\xd6\x85\xb9\x36\x65\x55\x34\x84\xe7\x27\x7c\xa7\xd7\x2a\xdd\x7f\xf0\x05\xa2\x0d\x46\xb6\x05\x41\x51\xca\x18\x21\xd6\x42\xe9\x8c\xc5\x6a\x2d\x4e\xd8\x8c\x9b\xf7\x22\x5a\x3f\x11\x4d\xbf\xa0\x28\x4a\xc4\x60\x2d\x22\xf7\x53\xf6\x86\x8f\xfd\x36\x11\xdd\xb8\x96\xb3\x82\x91\x59\xa8\xa0\x95\x5b\x17\xd2\x6d\x56\x4b\xb2\x90\x6e\x87\x95\x65\x4d\x03\x7c\xba\x16\xab\x12\x4c\xc0\xb5\x9c\x08\x1c\x27\xc4\xdf\x27\x82\x1e\xd6\x42\x0a\xc1\x32\xbf\xd6\xf4\x7d\x7a\x6c\xfa\x3e\xf9\x2f\xdf\xa1\x12\xc8\xad\xc3\xf6\xb3\x6e\x81\xc5\x5a\xcb\xb1\xe5\xba\xb3\x1c\x5b\xd6\xdd\xda\xbe\x43\xb9\xe8\xa6\x89\x14\x5a\xcb\x31\xb7\xbb\x38\x76\x89\x4c\x5b\xe1\xf8\x73\x1c\xc4\x95\x54\xfd\x36\xfe\x60\x5e\xb2\x79\xc4\xa5\xee\x97\x0d\x2a\x9c\x0d\xb8\x86\xae\x70\x36\xb0\x68\xc3\xd9\x40\x8c\xf3\x0a\x67\x03\x2b\x38\x90\x55\x33\xc8\xbe\x0b\x56\xa1\x0c\x85\xdc\x0a\x0e\xe3\x0c\xd0\xdd\x8a\x33\x1f\x32\x28\x90\x2b\xf2\xe6\x37\xe5\x1d\x99\x2f\x83\xa5\xb3\xe2\xcc\x80\x4c\xb0\xf3\x0a\x96\x7c\x86\x4d\x62\x61\x93\xce\xd8\x59\x57\x9c\x0d\xfb\xb7\xfd\x46\x25\x23\xd6\x63\x3c\x7c\x8c\xf8\x14\x1c\xa1\x59\xb9\x3a\x8e\x38\x94\x71\xd1\x5c\x31\x54\x4f\x33\x2d\x21\x06\xca\x20\xb6\x2c\x88\x81\xce\x3f\xa8\xdf\xa4\x4e\x9c\x0f\x30\xfd\xa4\xac\x60\x4d\x68\x7d\xbe\xfc\x3a\x78\xc9\x0f\x82\x7a\xd8\x81\x48\xc6\x59\x99\x09\x3b\x53\x26\x68\x60\xc5\xa6\x82\x48\x5f\xc4\xc7\x67\xdc\xc5\x56\x7c\x5d\x75\x38\xb9\x7e\xbc\xc4\x5c\x27\x80\x3d\xa3\x69\x5d\x1a\x82\xb2\xa2\x25\x91\xea\x19\x7f\xa0\x45\xa4\xfa\xf9\x47\xe6\x0f\xfa\x89\xb9\x8e\x59\x28\xc3\xdb\xb6\xa0\xec\xc9\xb8\xdc\xaf\x9d\xf9\xcd\xf4\x86\x52\x27\x63\x9e\x5c\xfb\xe6\x7d\xa6\xf7\xbe\x4d\x3f\x3d\xb3\xed\x6f\xa6\x31\xa1\xed\x19\xe8\xd2\x05\x6d\x4d\x06\x78\x6a\xed\x87\xf4\x7f\x46\x86\xae\x3d\xe8\x4d\x80\x1f\x16\xa4\x33\xbf\x03\x6c\x0f\x75\xf9\xec\x23\x7b\xd0\x6b\x1c\x60\x1b\xbd\x68\xf6\xf4\x84\x9a\x26\x03\x4d\xb9\xb6\x83\x84\x80\xb6\x17\x75\x64\x9e\x42\x29\x93\x89\xca\x5d\xdb\x2e\xe7\x70\xd9\x76\x39\x87\x0b\x0c\x2c\x19\x3a\xf6\xb5\x3f\xbe\xe5\x02\x02\xeb\x4a\x86\xf1\x78\x6d\x47\x82\xa3\xe5\xbd\x7c\xa7\xf1\x9b\x5a\xb3\x55\xbc\x97\xd6\x02\xf6\xd4\xf7\xa2\xd6\xc8\x70\x84\xa5\x67\x28\x4d\x17\xb6\x9c\x0c\xbb\xe7\xc2\x01\x20\x65\xf7\x32\x38\x58\x32\x58\x79\x8b\x38\xf3\x8c\xe7\xc4\x7a\xe9\x7d\x88\x70\xd6\x7b\x6b\x9b\xa0\x4a\xef\xd9\xd7\x32\x78\xf1\x4b\x43\x4b\x71\xa5\xbd\xb5\xf3\x0f\xaa\xc1\x1e\x57\x5c\x69\x2f\x03\xe6\x35\xf2\x65\xc0\xb0\xd9\x2e\xa8\x51\x52\x21\x58\x61\xc1\x8d\x92\x31\xe0\xae\xb7\x6b\xab\x40\x42\x7b\x1f\x5a\xc1\x3a\x78\x19\x62\xc2\x95\xd6\xcb\x05\xa3\x28\xb8\xbc\x93\x6c\xd9\xf4\xb1\xfd\x67\x3c\x7c\xd7\xfb\xf2\x31\xdb\x39\xd6\x96\x8c\xc3\xd5\xfa\x2e\xad\x18\xf4\xd9\x77\xf6\xa4\x8c\x23\xc9\xfa\x90\xf6\x4b\x62\xbb\x20\x56\x3a\x63\xa0\x5d\x9f\x7d\xc3\x2c\x85\xd7\x24\xab\x94\x87\x3b\x24\xe3\x60\xbf\x88\x53\xce\xf8\x92\x2e\xc2\x8c\x33\x06\xda\xf5\x6d\xd2\x99\xa5\x9f\xb5\x63\x53\xc5\x5a\x91\x31\xca\x2e\xb8\x3a\x32\xe4\x44\x0b\xae\x8e\x54\x8a\xb5\x7b\xa9\xdd\xd9\x61\x83\x18\xd6\x4c\x60\x76\x10\x57\xaa\x68\x12\x98\x09\x32\x56\xdc\x20\x66\x34\x63\xc5\x0d\x62\x43\x33\x96\xdb\xb8\xac\xe8\x43\x3e\x83\xf7\x1f\xf2\x41\xbb\x59\xea\x19\xb7\x20\xf8\x31\xa7\x87\x8f\xa7\x36\x90\xc4\x17\x93\xe6\x3c\xe4\x34\x5f\x0d\x25\xe9\xfc\xb1\x7e\x7f\xf0\x1f\x1a\x8d\x93\x70\xc0\xc1\x90\xa1\x7c\x8b\x8b\x0e\x80\xa8\x28\xe0\x60\x48\xd2\xce\x07\x31\x8b\x19\x20\xb8\xb8\x18\x1f\x02\x62\xe3\x42\x6a\x2b\x04\xa3\xc5\x75\xf6\xa6\x8c\x1d\x35\xae\xef\x67\x8c\xe1\xeb\xef\xac\x20\xfc\x8d\x23\xb1\x3a\x70\xc7\x8c\x74\x56\x84\x92\x53\x40\xa5\x90\x51\x2a\x04\x06\x83\x4c\x24\x64\x10\xe5\x98\x89\x52\x8b\x84\x2a\xc0\x10\xb1\x48\x59\xbb\xcc\xc5\x5b\xe7\xca\x96\x71\xae\x8b\x54\xb4\xcb\x5c\xbc\xc5\x48\x60\x27\x8d\xc4\xa6\x85\x9d\x34\xd2\xcf\x0e\x64\xd9\x0c\x4b\xae\xfe\xe6\x83\xca\x07\xc8\x7f\x32\x63\x05\x9c\x08\x19\xe0\xd9\x48\x9d\x8a\x37\x8a\xeb\x7c\xdc\x78\xe7\xa1\xb2\x8d\x8c\x34\xe4\xb4\xfe\x2f\x69\x2e\xd2\x20\x67\xfa\x30\x0d\x73\xee\xfc\xae\xe6\xe0\x3f\x68\xe1\x11\x04\x22\x0d\x9b\xfe\x50\xce\x38\x13\x12\x03\x69\xc0\x8d\x70\xfe\x41\xed\x67\xe2\x1f\xbc\xc4\xb4\x80\x00\x36\x88\x7f\xcc\xd9\x5c\x59\x09\x04\x25\x07\x9c\x07\x99\x50\x8d\x48\x9c\x57\x38\xf1\x46\x0a\x1a\xf8\xd0\x58\x27\xcb\x43\x61\xac\x90\x6c\x25\x58\xbf\x58\x57\x23\xbd\xa6\x93\xbf\xf3\xe6\x21\xff\x8f\x09\x8c\x46\x21\x20\x2b\xc8\x20\x0e\x46\x76\x4a\x9c\x4d\x35\xb2\x53\xe2\xec\x60\x91\x91\x2e\x0a\xc0\xdc\x91\x2f\x9a\x79\x76\xd2\xc8\x5a\x00\x09\x91\x0b\xc2\x12\x33\x96\xa6\x80\x5a\x20\x03\xc0\x11\xd0\x06\xa4\xc2\x0d\x3d\xe0\x0d\xc8\x58\x5b\x03\xde\x80\xf3\x0f\xbe\x40\xba\xc0\x02\x15\xd9\x19\x45\x6c\x44\xe4\xfc\xf1\x0f\x5e\xd2\x56\xdb\xad\x6d\x29\xfe\x41\x21\x08\x24\x58\x5f\x23\xb3\xf3\x00\x09\x1d\xb9\x9a\x5e\xf9\x6d\x3a\x65\xb3\xd0\xb1\xca\x06\xb1\x89\x19\x88\xa6\xc8\x4c\xae\xc2\xaa\xc8\x4c\x2e\xac\xb5\x01\x2f\x40\x2a\xc4\xa1\x45\xee\x54\x89\xa5\x90\xb5\x25\x72\xd3\x8b\xfc\x24\xfe\x41\x09\xc3\x9c\x68\x03\xdb\x07\xae\xd2\x91\x07\x3d\x50\x28\xe1\x67\x31\x64\x7f\x82\x26\x20\x63\xd4\x8d\x3c\xfd\x80\x74\x54\xa6\xe5\x71\x58\x8e\xe8\x99\xb1\xdd\x46\xd6\x60\xf8\x38\x46\x6b\xf0\x0f\xb2\x65\x12\x00\xf8\x16\x19\xed\xa6\x61\xd5\x91\x5f\x2a\x5e\xf9\x9a\x4b\xbd\xe1\x99\x01\x74\x7e\xc6\xac\x1b\x58\x31\x72\xb1\xa5\x48\x39\xfa\xd0\x45\xe6\xea\xaf\x3f\x53\x14\xe6\x0a\x5e\xed\x41\x20\x63\x06\x83\x27\x8a\x23\xcf\x1a\x2a\x37\x1d\xcb\x8a\x28\x8d\x74\x76\xe5\x62\x27\xd3\xea\x82\x6e\x45\xda\xe7\x28\xe7\x1c\xcb\x98\x56\xa3\x70\x74\x11\x92\x1e\x05\x29\x91\x9b\x41\x60\x6b\xc8\xe0\x4b\x47\x41\xb2\x23\x48\x29\x50\xdf\x67\xa2\x9b\x83\xc0\xbc\x64\xd0\x4a\x94\x97\x4c\x99\x33\xe5\xa5\x8f\xe9\xca\x82\xa8\x80\xbd\x35\xee\xcb\xdf\xe7\x63\x34\xf4\x19\xe0\x8d\xb8\x11\xbb\xc0\x64\x08\x10\xd4\x33\x61\x9f\x71\x9f\x89\x98\x71\xa9\x0b\x14\xf1\x19\xb7\xb5\xb8\x99\x7a\x98\x67\xe3\x6e\xfe\x26\x9f\xe6\xb7\xe4\xd3\xcf\x48\x11\x02\x1d\xa8\xd8\x33\x16\xd9\x00\xe1\x3c\xc3\x63\x1e\xa0\x9a\x67\xd0\xc5\x03\xcd\x78\x26\x74\x39\x40\x2c\xcf\x44\x67\xc6\xfd\x9a\x0f\xf9\x23\x02\xdd\xf9\x5f\xca\xb9\x40\x75\x9d\x21\x6f\x8a\x5b\x73\x24\x06\xd2\xb8\xcf\xe0\x66\x70\xb2\xe2\x3e\x77\x91\x8c\x05\x38\xea\x45\x89\xe7\xbe\x1a\x95\x9e\x81\x11\x2a\xc0\x1b\xcf\x30\x27\x45\x65\xcc\x81\xd8\x8e\x6a\x2f\x9d\x93\x38\xaa\xbd\x54\xc8\x07\x4d\xec\x0d\xeb\x47\xd4\xb2\xf8\x07\x99\x96\x9f\xc1\x37\xf1\xc7\xe6\x1f\x94\x70\x6b\xcb\x65\xb6\x56\x04\x27\x3d\x9a\xa3\xd6\xcf\x3f\x28\x1c\x61\x09\x4b\x6d\x54\xbb\xbc\xf2\x79\xd7\x46\xcc\xb6\x5b\xed\x67\x66\x25\x60\xdf\x19\x2b\x6c\x00\xf6\x9d\x31\xbc\x46\x45\x3e\xba\x71\xf3\x0a\x42\x20\x33\x4c\x7e\x51\x87\x66\xe8\xe1\x1f\x89\x7f\x90\x2b\x12\x2f\x71\x86\x51\x87\x15\x1c\x54\xd0\xe1\x63\x1e\xd7\x49\xd1\xec\xec\x68\xec\x33\x06\xd9\x00\xe3\x3b\x09\x9a\x14\x15\x5f\x0d\x89\xf1\xa3\xb2\xb7\xc3\xf7\x1a\xa0\x7c\x27\x19\xd2\x03\xf5\x7d\xfe\x15\x81\x45\x4c\x92\xc7\x20\x10\x32\x13\xa8\x18\xa8\xf5\x33\x01\x9b\x41\x90\x63\xba\xb9\x16\x46\x7d\xcf\x4e\x4f\x30\x56\x00\xfa\x7d\xfe\x41\x19\x6f\xe5\x1f\xbe\x64\xb6\xec\x04\x15\x21\x1b\x83\x6b\x54\x66\x18\xfe\x6a\x51\xbf\xea\x4b\xa7\x22\x8d\x09\xa2\x6c\xd3\x98\x20\x36\x09\xbc\xee\x64\x74\x63\xb4\x73\xa9\xcc\xb6\xa2\x65\x8b\x60\xda\x35\xa6\x08\xbe\xb2\xd1\x50\xf7\xde\x75\xf0\xf9\x11\x1e\x72\x65\x8a\xb4\xa2\x61\x7e\xf8\xd6\xe0\x1f\x0f\xbf\x2d\x83\xae\x22\x12\x33\x63\x58\x0d\xa2\x2c\xbd\x1b\x07\x36\x09\xaf\xc6\xd1\x50\x10\x4b\xcb\x10\x8d\x33\xc0\xa6\x36\x16\x28\x24\x4d\xd1\xda\xc7\x6f\x3e\xe8\x9a\xef\xad\xe0\xd9\xab\xbc\x19\x47\xeb\x7e\x40\xfd\x1e\x33\xa2\x4a\xb8\x23\xdc\xcd\x9c\x1e\xaa\x84\x48\x02\x2e\x78\x92\xea\x3a\x08\x5e\xcc\x58\x55\x83\xc0\xc4\x0c\xfe\x6f\x10\x80\x98\x95\xe2\xda\x6c\x7a\x0b\xf0\xd2\xa4\x3b\x38\x68\x9b\x7e\x0a\x80\x8d\x06\xf0\xe1\x19\x73\x6b\xb4\x45\xab\x4d\x0f\x5b\xca\x6c\x6e\xc1\xd0\x23\x45\x10\x83\x78\xfe\x41\xa5\x90\x3f\x2b\x22\x45\x43\xe6\x04\x65\x2f\xb0\xbf\x64\xe0\x15\xa2\x21\x66\x56\xdf\x77\x46\x38\x42\x1f\x6d\x60\x36\x02\x14\x9e\xc1\x2d\x89\xee\x84\x60\x02\x12\x94\x97\x6e\x62\xfd\xa3\xa7\xd3\x06\x00\x4d\x02\x34\xf1\xf3\x0f\xff\x18\xfc\xe3\x94\xdc\xd9\x71\xe1\x42\x89\xce\xac\xc1\x62\x19\x84\xe5\xa5\x1b\x06\xa7\xe8\xe7\xe8\xcf\x2d\xfd\xcb\xb3\x24\xba\x9e\x0e\x40\x25\x46\x2f\x95\xaf\xcc\xc1\x8a\xd1\x57\x9d\xb9\x86\x41\x33\x3a\xb2\x29\x86\xcb\xc0\x48\x94\x31\x5c\x46\x3f\x72\x6a\xc6\x56\x19\xdd\x9d\x49\xc1\x05\xcc\xf3\xf3\x07\xed\xbd\xcf\xd4\xc1\xe8\x13\xbd\xfe\x3c\x2e\xfc\x23\xf8\x07\x2f\x31\xef\x60\x3a\x0c\x6c\x49\x19\xea\x94\xe8\x6d\xf1\x9b\x6a\x74\xd3\xa9\x06\x8a\xcd\x1b\xad\x79\x60\x26\xca\x38\x88\x07\x61\x7c\x49\xd6\xa6\xe8\x1c\x1f\xd8\x18\xa3\x23\xb0\x0a\xe1\x1a\x7d\x0c\xff\xa0\x8c\x41\x33\x98\x84\x00\xa0\x9f\x7f\xf0\x39\x02\x28\xce\xec\xd1\x99\x47\x38\x95\x47\xe7\xba\x72\xc3\x57\x1a\x9d\x9d\xa9\x39\x06\xee\x4c\x10\x42\x46\x67\x67\x72\xaa\x76\x77\x26\x18\x14\xa2\x33\xa9\x9c\xaa\x9d\x9d\x09\x84\xad\xe8\x7b\xf3\x9b\x77\x90\x53\x95\xae\xfb\xeb\x3b\x54\xe9\xb5\xb4\xd3\xcb\x0f\xe2\x28\x01\x6c\x41\x64\x5f\x56\xe8\x7e\x2e\x5d\x50\x38\x41\x09\xf3\xcb\x0a\xdd\x84\xf0\x9d\x7f\x0c\xfe\x60\xbe\x20\x09\x3f\x49\x47\x15\xc6\xe8\xc9\x54\x8f\xb9\xfd\x38\xf3\x98\xdb\x0f\x12\xa8\x38\x16\xf1\x20\x81\x62\xd4\x0c\x02\xf8\x92\x81\x2e\x01\x1a\x7b\xc6\xc2\x19\x44\xf3\x65\x2c\x9c\xf1\x70\xd7\x21\x44\x35\x1e\xe7\x13\xab\x81\xe8\xbc\x8c\x85\x33\x9e\xee\x6f\xde\x67\xb0\xb1\x64\xc6\xd3\x6d\x90\x1f\xf4\xc9\x3f\xf8\x8d\xc3\x45\x45\xe7\x16\xcf\x73\x1a\x04\x1b\x4a\x3c\x8f\x6e\x31\x2c\x99\x87\x59\xd0\x6d\x35\x02\x65\xb7\xa1\xdc\x54\x2a\xe4\x48\xf1\x70\x53\x41\x2b\x15\xcf\xd4\xc1\x06\x61\xf6\xe1\xa6\x82\x56\x2a\x30\x62\x65\x00\x3b\x03\x3b\x54\xc6\xfa\x19\x4f\x98\x4e\xc5\x99\x0f\x44\x5b\xc4\x83\x27\x86\x98\xe6\xf1\xec\xb3\xa2\x30\x78\xc6\x83\x9d\x59\xa0\xf1\x00\x04\x3d\x83\x36\x17\x0f\xe3\x8e\xf5\x33\x9e\x73\xa4\xe4\x5e\x4e\x09\x03\xd1\xb2\xd3\xc5\x83\xab\x47\x85\x8f\x27\x06\x57\x0f\x5c\x5f\x63\xa4\x9f\xd3\x4f\xe1\x0f\xea\xcd\xa2\xc0\xc4\x94\xbd\xdc\x0c\x84\x11\x50\x77\x62\x20\xa6\xe1\x51\x13\xc3\x81\x60\xf3\x19\xdc\x0a\x08\x6f\x8c\xd1\x74\xf9\xe1\xfa\x34\x1a\x7d\x5c\xc9\x94\xe3\x01\x2b\x6a\x0c\xa4\x57\x7c\x6b\x62\x38\x8a\x08\x22\x18\x89\x32\xd6\xd5\x18\x8f\xbf\xc9\x94\x8b\x00\x06\xd5\x18\x03\x9f\x27\x5c\x93\x63\x70\x13\x80\xc0\x30\x06\x37\x81\x8a\x9f\x72\x0c\x07\x0e\xa9\x64\xd8\xf5\xff\x34\xbb\xc6\xc0\xd0\x5b\x33\xfd\x3f\x82\x89\xc3\x52\x1b\x7a\x41\x79\xcf\x1c\x9b\x46\xb1\xbe\x06\xc6\xc2\x9a\x7f\x7f\xe0\x5a\xe2\xed\x72\x70\x81\x80\x70\x29\x34\x20\xc9\x16\x1e\x58\x90\x72\xb7\x7f\xf0\x89\x92\xd2\x3a\x86\x63\xc9\x0a\x1b\x2f\x83\x8f\x24\x3e\xb8\x7e\x08\xce\x1d\x03\xd5\x28\x06\xd6\x98\x0e\x32\x6b\x07\x90\xf2\x54\xa1\x11\x88\x89\x60\x89\x91\x34\x40\x1d\xcf\x18\x49\x63\xa2\x8a\x26\xcc\x35\x40\xfc\xce\x98\x42\x03\xc4\xef\x8c\x29\x34\x40\xf6\x4e\xd5\x8b\xc2\x64\x6b\x25\x76\x36\x66\xdf\xfc\xa6\x64\xe4\x3f\x2c\x9b\x01\x34\x76\xc6\xb2\x19\x93\xcb\x04\xc6\xcc\xc0\x4a\x93\xb1\x5f\xc6\xd4\x0f\x09\x17\xb9\x00\x4f\x3a\x63\xb4\x8c\xa9\x1f\xd2\x6d\x69\x3b\xf1\x0f\x4a\xb0\xc7\x71\x9e\x0b\x22\xe9\x32\x71\xf8\x31\x5f\x8b\x18\xfc\x3e\x9d\xe1\x16\x3d\x11\xae\xdc\xa1\x17\xbb\x1b\x51\x54\x81\x2d\x27\x13\x15\x15\xcb\x7e\x41\x98\x5e\xf6\x0b\x2b\x87\x88\x39\x55\xb0\xb1\xd0\x41\xe2\xf3\x14\xcb\x3e\x42\x04\x5a\x68\xdc\xe1\x27\x89\x85\xbc\x8c\xc9\x32\xd6\xf0\xfd\x53\x9f\xc5\x35\x83\x38\xf6\x58\x1c\xff\x00\x8c\x04\x11\x6d\xd9\x8b\xef\x62\x64\xbd\xeb\x2e\xbd\x9f\xba\x95\xe3\x2e\x82\x89\x33\xc2\x4a\xb3\x56\xc2\x4a\xb3\x56\x82\xc5\x08\x04\x75\x60\x4b\x48\xa2\x1f\x04\xa1\x2e\x19\xa0\xbf\x08\x84\x43\x23\x6b\x23\x10\x0e\x09\x89\x8f\x40\xd4\xab\x18\xdb\x03\x40\xe3\x8c\xbd\x32\xc2\x36\x73\x4a\x04\xb7\x04\x43\xf7\x22\x38\x66\x21\x26\x89\xb0\xd1\xcc\xdb\xc0\xdd\xa9\x3a\x22\xd1\x1a\xff\xf0\xb7\xee\x63\x6c\x6d\xe1\xec\x61\x12\x47\x37\x27\x8a\xe8\x95\xdf\x54\xdc\xee\xe3\xc4\x00\xaf\x38\x7b\x49\x0f\x3d\x1b\x7f\xc5\xd1\xaf\xd8\x34\x03\x20\xe0\x8c\x4d\x33\x02\xb7\xde\x4a\x2c\x6c\x80\xe0\x9b\x07\x7b\xbb\xd1\x2f\xf5\xef\x1f\x83\x7f\x50\x3f\xce\xd2\xc1\xac\x0f\x46\x08\x1c\xf7\x20\xe4\x25\x13\x9c\x1b\x84\xb3\x64\x8c\xa3\x11\x08\x6b\x18\x47\xc3\xb0\x15\xa3\x49\x63\xa3\xbf\x1d\xec\xa9\xfb\xf2\x03\xd2\x93\x1f\x34\x7e\xd3\x06\x0c\x55\x41\xc4\x5f\xf6\x2c\xdd\x3f\x47\xb5\xee\x17\x67\x62\x79\x96\x6a\xa2\xc0\x9a\x1a\x84\x02\x66\x7c\x01\x42\x73\x05\x6c\x72\x01\x8b\x7f\x86\x8f\x24\x76\x35\x9d\x7c\x18\xab\x91\xff\x85\xeb\x16\xda\x32\x30\x9f\x06\x54\xfb\x49\xf8\x87\xd8\x08\xed\xb8\xe8\x87\x31\x28\xc6\xf5\x07\x24\xfc\x19\xc3\x6a\x6c\x0e\x5a\x0c\xab\xb1\x1f\x7f\x53\xad\xe1\x6f\x1a\xce\xa0\x62\x26\x8d\x8d\x08\xde\x30\x33\xc4\x46\x04\x57\x5f\xb2\x75\xc3\xc2\xe6\x10\xc4\x25\x66\x6c\xa3\xa1\x4d\x83\xe0\xe5\x20\x54\x25\x13\xfc\x1b\xa0\xee\x66\xe2\x2d\x63\x3b\x8e\xac\x46\x50\x74\xb3\x2a\x95\xed\xd8\xd9\x1c\xc7\xce\x16\xa0\x77\x11\xfd\x2f\xa0\x95\xcf\xc0\x32\x84\x71\x2b\x86\x80\xc7\x46\x1c\xc7\x46\x11\x58\x38\x32\x26\xd6\x78\xd9\x4f\x30\xb1\xc6\xeb\x60\x33\x09\x34\x70\x40\x47\x12\x2f\x02\x38\xd6\xd6\x78\x1d\x46\x8e\xb1\xd7\x61\xe4\xfe\xf2\x22\x80\x37\x38\x54\xe2\x45\x00\xc7\x7a\x1a\x46\xba\x34\xbc\xe6\x03\xa4\xde\x8c\x29\x35\x5e\x07\x98\xe5\x8b\xb5\x22\xb5\x6c\xd1\x08\xba\x4e\x2d\xc3\x4a\x5a\xb6\x1e\x8d\x36\x30\xb5\x5e\xc7\x8a\x75\x0d\x97\x7b\xc6\x20\x1a\xef\xa3\xeb\x9e\x2f\x71\x7f\x07\xec\x36\x5e\x5d\x14\x3d\xe7\xde\x87\x16\xb1\x03\xbf\xc8\x44\xd8\x43\xe3\x75\xa4\x59\xd6\xef\xb4\x45\x9c\x47\x6f\x30\x4d\xfc\xed\xa0\xb0\xd5\xbc\x28\xd6\x45\x55\x8b\x0f\x66\x48\x40\x8c\x82\x88\xc6\x02\xc6\x6a\x80\x89\x9b\x04\xb9\x08\x43\x1a\x31\x7b\xc6\xa7\x2f\x1d\x60\x05\x21\x2a\x2e\x30\x3a\x01\x12\x6e\x01\xd1\x24\x88\x7b\x2c\xd8\x46\xe3\xcb\x94\xc0\x12\xfc\x10\x42\x25\x3b\x0d\x20\x6c\x0b\xf6\xd0\xf8\xaa\xbf\xf9\xa0\x92\x11\x9b\xd9\x87\x9a\xbc\x11\x5c\x17\x04\x34\x16\x00\x8e\xe2\xd3\xfd\x0e\xc4\xa5\xf8\xda\x38\xff\x60\xa5\x7c\x20\xd8\xe3\x74\x19\x5f\x27\x57\x0e\x18\x82\x53\x34\x15\x05\x44\xf1\x05\xb7\x96\x90\x10\x1e\xbc\x82\xf8\xa0\x8c\xb8\x38\x78\x00\xa5\x2d\x84\x1f\x07\x46\x9d\x82\xb9\x35\x3e\xc2\x71\x31\xb7\xc6\xf7\xfa\x9b\xfc\x09\x8d\x06\x3d\x3e\xc0\x7c\x4d\xcd\x6b\xeb\xf7\xd1\x79\xcc\x7b\xe3\x51\x1a\xce\x7b\xf1\x7d\xd4\x82\xa3\x0a\x4a\xf5\x02\x76\xd9\x06\x01\xb6\x5c\x67\x3d\xec\xcb\xe1\x39\xcd\xdf\xa2\xb2\x62\x86\xdd\x30\x9c\x17\x50\x3b\x37\x0c\xe7\x05\x18\xe1\x7d\xd9\xa7\xe7\x74\xda\x58\x8a\x0a\xc6\xd6\x0d\x7b\x79\x6a\xe0\x35\x6f\x60\x4d\x0b\x16\xd6\x6d\x34\x4b\x03\x14\x68\x13\xce\x52\xae\xc6\x4b\x10\xfa\x5f\x8d\x74\xc8\xc6\x30\xc3\xee\xcb\x91\x3a\x93\x67\x63\x5b\x2a\x57\xfb\x17\xdf\xcb\x86\xe8\xbc\x20\x48\xef\xcb\x01\xea\x34\xef\xa1\x49\x9d\x42\xec\xf0\x73\x02\xee\x0b\x14\xe9\xab\xd3\x0c\x94\xc5\x0d\x41\x7a\x5f\x8b\xaa\x3f\x7c\x8c\xb2\xb8\xf5\xc2\x17\xf0\xeb\x83\x02\xb8\x2f\x87\xe8\xa1\xba\x08\x2e\x02\xd5\x6c\x42\x4a\x0a\xa6\xd4\x7d\x39\x76\x83\x5c\x11\xe9\xe4\xa7\xd8\x98\x97\x0a\x66\xd2\x9d\xae\xcd\xef\xd3\x21\xe9\x6c\x0a\x85\xb0\xd6\x9d\x8a\xef\x74\x7e\xe3\xd9\x8b\xbf\xf6\x4e\xe7\x4c\x2f\x98\x4f\x77\xc2\x73\xa0\x21\x97\xec\x44\x77\x12\xe4\xba\xa5\xcf\x26\xc8\x75\x27\xe4\x3b\x39\xcb\x77\x02\x50\x19\xcb\xe8\x36\x82\xa4\x21\x5c\xec\xd4\x12\xff\x48\xfc\xa6\xec\x4c\xfd\xce\x56\x53\x80\xf0\xda\x84\x99\x14\x42\x5e\x77\x7a\x28\x21\x93\xe9\xe3\xfb\xe4\x33\x4d\x1f\xfc\x26\xbd\x50\x18\xce\x05\x8d\xe3\x62\x43\x62\xad\x5d\x74\x03\x50\x79\xfe\x41\x5d\x41\xa8\x4c\x85\x12\xa0\x09\x82\x4e\x7b\x27\xbc\x84\x1a\x47\xc4\x4e\x8b\x6a\x98\x13\x00\xe0\xc9\x8f\xb7\xc5\xd1\x33\x1f\xd5\x28\x54\xc3\xee\xa6\xf7\xa0\x84\x2e\xa0\xec\x6f\x63\x43\x84\xe8\xda\xf9\xdc\x89\x0b\xca\xef\x2d\x6e\x24\xe8\xf3\x1b\xeb\x49\x01\x0e\x6c\x67\xc7\xe7\x9c\x35\x3b\x97\x57\x67\xdb\xc1\x1f\xf4\x2a\x6b\x2b\xdf\x3f\xcf\x5b\xff\xa0\x57\x59\x68\x58\x58\x4a\x62\xa1\x11\x28\x52\x12\x0b\x4d\xc4\x47\x6c\xc1\x3b\xdb\xab\x95\x12\xec\x55\x16\x5a\x26\x40\x1a\xbb\xf0\xc6\xfe\x51\x80\xc7\xdd\x19\x1c\x22\x22\xba\x76\xb6\xe7\x59\x4e\x44\x83\x14\xec\xc5\x1b\x76\xe3\xc2\x41\xb8\xb3\x5d\xd7\xa8\x34\xfe\x72\x9d\x28\xde\x9d\x23\x9f\x7f\x74\x32\x25\x20\x4e\x34\xf1\x9d\xa1\xe6\xc4\x18\xbc\xe1\x28\x2e\x18\x83\x77\xb6\xb3\x59\x4b\x44\x83\x14\x8c\xc1\x3b\xdb\xf1\x0f\x35\xb2\xe3\x8f\x30\xb9\xe1\x0d\x4e\x9d\xa0\xaf\x0d\x71\x70\x21\x16\x77\x1b\xe6\xd1\x31\xbc\x6e\xc8\x81\x0b\x96\xe1\x5d\xf0\xc8\xe9\x44\x83\xed\xe2\x90\x1c\xa9\x71\x97\x44\x11\x47\xbe\xd8\x05\xff\xba\xce\xdd\x70\x97\xd4\xf8\x07\xe5\xe1\x7e\x20\x8f\xc6\x2e\xf9\x64\x8b\x27\xdc\x2e\x47\xb2\x2a\x58\x8f\x77\x61\x70\x01\xa1\xd8\x05\x59\xb9\xe3\xe4\xb6\x0b\x5b\x39\x5c\x7d\x1b\x9b\x4a\xc1\x7a\xbc\x21\xe7\x4d\xc2\xb8\xee\xc2\x40\x60\xf4\xdd\x85\x81\xc0\xe8\xbb\x61\xde\x4d\x9d\x98\xc0\x0d\xf5\x6e\xc9\x7e\x80\x6b\x54\x27\x40\x70\x83\xa1\x58\x70\x3d\xdf\x05\xa0\x82\x9c\xc7\xbf\x76\xb9\x72\x36\xa4\xf2\x6b\x2d\x63\xc9\xe5\x77\x13\xdd\x51\x7e\x8d\xdd\xbe\x43\x21\x80\x2d\x82\x6a\xbb\x31\xe9\x24\x69\xc6\x77\x39\xf7\xd0\x02\x04\xed\x96\x81\x97\x28\xdd\x0d\xd3\x6e\xc1\xe2\xbc\x0b\x1e\xce\x1d\xda\x96\x5d\x60\xa7\xc4\x09\x7e\xdf\x97\xce\xd5\xe7\xb4\xde\xf7\x45\x11\xb4\x09\x8b\x50\x01\xc6\x6c\xdf\x89\xf6\x9d\xb3\x67\xdf\x00\xa5\x12\xbf\xbb\xc1\x64\x2c\x80\x98\xec\x9b\x65\x80\xe9\x7a\xdf\xcd\x77\x0a\xbf\x7d\xe7\xe6\x37\xf9\xb0\xbb\xde\x08\xaf\x1d\x2f\x82\x0d\x19\x6e\x41\x06\xda\x77\x37\x23\x0a\x23\xe8\x4d\xe0\xad\x7d\x3f\x67\x5e\x63\xd3\xde\x37\x5a\x66\x29\x7f\xf7\x0d\x74\x23\xae\x86\xfb\x46\xcb\x2c\xe9\xd5\xbe\x1f\xca\x63\xb9\x60\x5d\x2a\xd8\xb3\xf7\x7d\x04\xd6\x82\x09\x7b\xdf\x50\x0a\x64\x96\xd1\x6d\xd7\x73\xf0\xdc\x2c\x10\xac\xd9\xfb\x66\x51\x60\xc0\xde\x37\x34\x93\x18\xb0\xf7\xcd\x29\x0e\x01\xf8\x86\xc7\xb6\x20\x95\xed\xdb\x51\x60\x71\x61\x70\x2a\xe8\x18\xf6\x0d\xed\x00\x86\xed\x0d\xa7\x6d\x92\x9f\x73\xdf\xb0\x75\x63\xe5\xde\x95\x43\x1c\x3d\xc4\xae\x0e\x02\x07\x18\x86\xa8\x82\x95\x7b\x57\xd4\xca\x1d\x25\xfb\x86\xed\xb6\x60\xf2\xde\xd5\xd1\x61\xd1\x55\x47\xe7\x21\x53\x94\xb4\x02\x03\xed\x7a\xd3\x04\x16\xa0\x01\x18\x82\xde\xec\x0a\x50\x09\xf6\xef\x5d\x1d\x4f\x4e\xbc\xea\x78\x8e\xce\x6f\xd6\xdf\xa0\x04\x84\xda\x8e\x86\x6d\xd7\x23\xd4\x96\x62\x09\x4d\x27\xf6\xec\x1f\x9b\x7f\x50\x02\x32\x16\x10\x1a\xbb\x32\xd0\x98\xc2\x77\x45\xa8\xed\x9d\x8d\x1d\x7b\x53\xc1\x7e\xbd\x81\xd0\x2c\x60\x30\x6f\xec\x42\x05\xfb\xf5\xae\xdb\x77\xa8\xd2\xd6\x03\xde\x9c\x40\x4f\xc2\x98\xbd\x2b\x9e\x23\xfd\x31\x27\x18\xd7\x8b\x55\xc2\x43\xb8\x3f\x66\x0b\xd9\x07\x66\xee\x5d\x19\x51\x2c\xdb\x9b\x98\x90\x82\x31\x7b\x57\xa4\x60\xe9\x91\x37\x0c\xb0\x05\xcb\xf6\xae\x06\x61\xa0\xa2\xd8\xf5\x3b\xf3\x0a\x33\xf7\x6e\x0c\x23\x1e\x39\xbb\x31\x8c\x85\xa3\xb0\x21\x2a\x77\xf4\x09\x1b\xe0\xcd\x82\x35\x7b\x37\xa4\x60\x0c\xd8\xbb\x21\x05\x03\x90\xb1\xe1\x7a\x2d\x50\x28\xee\x56\x7c\xff\x54\x09\x80\xcd\xe2\x06\xd4\x80\x59\x82\x13\x64\xb7\xdb\x46\xb3\x75\x82\xb0\x59\xb0\x6b\xef\x66\x68\x07\x6e\xc7\x5b\x88\xcd\x62\x2d\x18\x76\x62\x97\x77\x43\x60\x23\x76\x79\x03\xb1\x59\x30\x71\x6f\x98\x5f\x0b\xe0\x56\xdb\x60\x96\x7e\xee\xc9\xff\xd8\xe3\x1a\xa2\x36\xd1\xcf\xbb\x21\xc9\x11\xbe\xbc\xdb\x53\xf8\x4d\x89\xc6\x80\xa0\x51\xde\x80\x60\x16\x18\x6f\x76\x73\x1a\xb0\x62\x05\xb5\x24\x7a\x79\xb7\x41\xd5\x59\xb1\x0d\xb5\x6e\x1f\x96\x30\xce\xbc\x86\xc9\x77\xff\x82\x6c\xb8\xc6\xed\x86\xa4\x8e\x1d\x7e\x63\x3c\x2a\xc4\x3b\xef\xc6\xd1\x0a\xb2\xd5\x6e\x48\xed\xd8\xe7\x77\x43\x3c\xc4\x3e\xbf\x1b\x66\xca\x0e\x55\xe8\x06\xe3\xb2\x60\x9f\xdf\x2d\xcc\x88\x92\x9d\x99\xac\xd9\xb6\x29\xcc\xf7\xd9\x44\x50\xc7\xed\x06\x1a\x0f\x76\xfb\xdd\xf6\x2f\x40\xc2\x3f\x28\x8d\xa3\xb5\x21\x73\x72\x8f\xda\x90\xd8\x16\xae\x4e\xbb\x39\x2f\x39\x65\xb1\x41\x15\xe2\x7d\x77\xe3\x56\x80\x05\x7b\x03\x1e\x59\x08\xac\xde\xdd\xd9\xc7\x4a\x06\x30\xb2\x14\xe6\x43\x77\xc2\xb1\x92\xbb\x13\x8e\x95\xdc\xf1\x51\x79\xae\xe6\x1f\xb0\xa3\xb0\x92\x0d\x26\x7a\x70\x9e\xdc\x9d\xa9\x88\xa5\x7f\x77\x84\x5a\x2c\xfd\xbb\x33\x2d\xb9\xa7\x6d\x6c\x46\x85\x40\xec\xdd\xb9\x3a\xe0\x01\xb0\x0d\x32\x7a\xf0\x6a\xdc\x9d\xab\x03\xee\x00\xbb\x23\xdf\x7a\x00\xc1\x99\x7b\x5e\xe2\x1f\x28\xa3\x1f\x65\xe8\x0e\x39\x01\xf0\x2b\xdb\x58\xa4\x47\x81\xba\xb3\x1f\xdd\x6c\x41\x40\x45\x96\x9b\x25\xde\x11\x76\x31\xf4\xef\xce\x85\x02\xdb\xfe\x26\x2e\xa9\x60\xdb\xdf\x9d\x0b\x05\xb6\xfd\xdd\xb9\xd9\x61\xc3\xdf\x9d\x99\x77\x73\x1c\x63\x30\x4a\x8f\x92\x62\x1f\xf4\x0c\x0b\xd9\x10\xa5\x07\x54\x97\xdd\x99\x93\x20\xbf\x7c\xa8\xef\x65\x1b\xfb\x06\x27\x2a\x26\x9c\x6f\x5c\xf9\x2f\xa9\xcd\x27\xf6\x1e\x2c\x55\xdf\x10\x21\xf9\xf2\x37\xb8\x68\xa7\x87\xbf\x71\x01\xd7\xfd\xfb\xdd\xff\x22\xe9\x7c\x83\xdd\xe4\xef\xef\x01\xc4\x96\xf9\xcf\xbf\xd0\xec\xdf\xb8\x16\x98\x6d\x37\xbf\x03\x3e\x59\xde\x4f\x22\x51\x53\x16\x28\xd9\xf8\x76\x7c\x23\x83\xa9\x76\x51\xb7\x0c\x44\x52\xe6\xdb\x0c\x94\x53\x22\x4f\xb0\xfa\x40\x4e\xf9\x06\xa8\xd7\x20\x4e\x7f\x62\xf2\x61\xe7\xfe\x86\xcc\x69\x89\xfa\x80\x74\x8d\x6c\xff\x11\x96\xf2\xb7\x5c\x78\x29\x90\xe7\xbf\x01\x16\x23\xb2\xe0\x27\x2f\x2a\xca\x9c\x8f\xd0\x95\x1b\x19\xf6\x1b\x72\x54\x54\x7f\xe7\xff\xfe\xa7\xfd\xea\x06\xe1\x39\x02\xf9\x27\x8f\x2a\xfa\xb6\x6f\x80\xe9\x58\xad\x03\x4c\x56\x57\xa7\x2c\x10\x8e\x70\x50\xfd\x06\x3c\xbc\x58\x56\xbf\x01\xa5\x25\xb6\xde\x8f\x30\x99\x5a\xfe\xb7\x3b\xea\xd3\xfe\xb7\x8d\xed\x23\x82\xa6\x5f\x0f\xfd\xd5\x04\x58\xb5\x6c\xa0\xa6\x1e\xe6\x01\xe8\xde\x78\xb4\x7e\x03\x06\xbd\xdf\x78\x77\xc1\x56\x29\xbb\xa7\xbf\x44\x35\x1f\x9c\xaf\x9d\xed\xeb\x1b\xd0\x63\xfe\xe6\x0d\x04\x5a\x8f\x63\xd9\xdf\xbf\xb0\xfc\x1f\x5c\xb0\x37\xc8\x40\xdf\x90\xef\xf9\xe6\x1d\x78\x61\x41\xd6\xfe\x08\xd6\x11\x69\xfa\x1b\x20\x36\xc1\x15\xf3\x8d\x87\x7e\xb7\x3e\x83\x7c\x1a\xf5\x1c\xe0\xe9\xd9\x16\x20\xe5\x6f\xcb\x05\x30\x18\x4f\x8f\x6f\xc0\x52\xf7\xcb\x7f\xa6\xff\xd5\xae\x29\x1f\x30\xef\xc8\x89\x61\x59\x13\xd4\xf5\xc6\x3c\x00\xd2\xeb\xd7\x3f\xc0\x99\xe1\x55\xf2\xc1\x2f\xfb\x77\xec\xc1\x57\xec\xbf\x7c\xa0\x21\x18\xa4\x9f\x1d\xfa\xbe\x9d\xaf\x40\x80\x11\x16\xff\x81\xaf\x58\xfb\xef\x1d\xe6\xd6\x43\x7d\x16\x38\x9f\x95\xb2\xd6\xf7\xbf\xe6\x5f\xdc\x7f\x91\xab\xbe\x11\x50\x3f\x3c\xf4\x73\xb4\xbf\x08\xd7\xdf\x80\x5a\x13\xb4\xf4\x6f\x04\xec\x81\xd6\x07\xd8\xbb\xea\x7c\x0a\x59\x1a\xe9\x1f\xc8\xe8\x09\xb0\xfe\x06\x10\x63\xf5\x97\x27\x73\xda\x77\xc0\xff\xfc\xcd\x63\x00\x62\x9b\xeb\xed\xc8\x1f\x37\x61\xc3\xdf\x80\xaa\xa3\xb9\x77\x6c\xa0\xd0\x9c\xc7\x2f\xb4\xb7\xae\x3d\x01\x89\x1f\xea\x06\xea\x3a\xf8\x96\xdf\x78\xc1\xd5\xcc\xa6\x03\x06\x9c\xa9\xe7\x3b\xff\x82\x19\x7f\xe0\x43\xde\x10\x7d\x7d\x04\x3a\xdd\xcd\x3c\xa1\xd9\x2c\xae\x25\xb9\xba\x07\xf5\x01\x47\xb4\xbb\xa7\xc0\x46\x87\x03\xc2\x37\xa4\xe2\x74\xec\xc0\x96\x04\x1d\xe1\xc3\xaa\xd5\xda\xef\xf7\x99\x57\x08\xb5\x1f\x54\xbd\xdd\x35\x0f\x55\xef\xcd\x2d\xe3\x9b\x50\x03\x20\xa1\x7f\xf3\x92\xf2\xe0\xe2\x37\x0c\x83\xac\xff\xf9\xe3\x72\x7e\xf8\xfd\xfc\xe5\xf0\xfe\x26\x7b\x1f\x5e\x27\x1f\x16\x34\x79\x8e\xbf\x79\x89\xc2\x7f\xfa\x64\xe6\xff\x87\xfa\xe4\x9b\xbf\xbd\xec\xe4\xff\x89\x14\x75\xb2\xff\x0c\x35\x3e\x23\xf1\x71\xad\xa2\xe1\x1f\x97\xaa\x23\xfa\x7c\x9f\x70\x22\x95\x9f\x8d\xab\xd6\xff\x5f\xb9\xe7\xff\x33\xff\xdf\xff\xaf\xf7\x7f\xfe\x5c\xf0\x14\xfd\xb9\x2e\xbc\x26\xcf\xdf\x2b\xf3\xf7\x2a\xff\xfd\x0f\x61\x74\x57\x39\xab\xee\xcf\x55\x26\x64\x36\xe7\x1d\xd0\xfa\xcf\x63\x00\x32\x7f\x52\x96\xef\x08\x1a\x5a\x4f\x4a\xf8\x4e\x00\x05\x9a\xff\xe7\xcf\x85\xb7\xde\x79\x54\x70\x4e\x2e\x92\x1a\x49\xc5\xa4\x7e\x92\x8a\x49\x84\x10\xa2\xcf\xc8\x57\x3a\x59\x65\x81\x6b\x4e\x87\x66\xd4\x84\xe7\x41\x58\xf5\x4d\x4a\x98\x02\x9e\x5a\x3b\x29\x34\x2c\xc3\xbd\x04\x77\x7e\xbe\xce\x85\xfc\x3c\x44\xe4\x38\x29\x25\x93\xa2\x7f\x2a\x39\x97\x61\xca\xfc\xef\x7f\x1e\xfc\x4c\x32\x0c\x40\xe7\xb1\xfe\xfb\x9f\x27\xfb\x56\xdf\x26\xbd\x27\xa9\x52\xc9\xb3\xc7\x9d\xc7\x7d\xfa\xad\xff\xcf\x9f\x9c\x2a\xd5\x46\x2b\x86\x31\x3b\xa7\x73\xce\x9c\x07\xb0\xac\xe5\xa4\x34\x2a\x29\xf7\xcb\xd9\xd7\x32\x3e\xd3\xe7\xc1\xf2\x25\x65\x98\x32\xd4\x9c\x90\x62\xce\xc3\x98\xe4\x93\x72\x76\x8a\xf3\xa8\xff\xfd\xcf\x03\xcf\x4c\xce\xb6\x36\x9f\xd6\x3e\xb8\x19\xe4\x9c\xbb\x49\x06\xb3\x91\xb2\x4c\x31\x78\xf3\xa4\x34\x72\xc2\xd3\x16\x95\x58\x86\x04\xe4\x3c\xfa\xc9\x28\x9b\xf4\x9a\xf4\x9d\x24\x3a\x37\x5b\xef\xdc\x99\x37\x47\xa6\xcc\xb9\xfb\x61\xef\x24\x51\x03\xfb\x32\xd3\x97\xd0\x10\x64\xdc\x72\xcf\x23\x91\xc4\x5b\x4f\x36\x89\xf8\xda\x87\x14\xb3\x32\x88\x93\xe6\x0d\x9b\x37\xac\xd5\xe9\xf0\xbc\x6c\xcc\x8a\x93\x44\xdf\xe5\xb0\xa2\x67\x73\x7b\xf0\xec\xcb\xc0\x8b\x9c\x07\x55\xa0\x17\x6e\x47\x81\x8b\x3e\x56\xd2\xcc\x35\xff\x4f\xbe\x69\x0d\x7e\xcb\xf9\xee\x74\x0c\x77\x7b\x0c\x8f\xf9\x7e\x8a\x29\xfd\xbf\xff\x19\x04\x27\x65\xbc\x41\xff\x64\x70\x14\x88\x24\xce\xc0\x28\xfc\xc9\x37\x35\x40\x14\xce\x5c\xde\xff\x64\xbc\x42\x71\x2b\xc9\x35\x51\xcd\x2a\x7f\xd8\xe9\x82\x9a\x99\x4e\x35\xcb\xda\x45\x4a\x33\x05\x7a\x9f\x42\xca\x30\x05\x10\xd7\x4a\xca\x36\x05\x66\x01\x72\x2e\xe6\x53\xc8\x87\x9c\x4b\x35\x45\xaa\x6c\x52\xcc\xa7\xc0\x07\x4b\xce\xc5\x7c\x0a\x18\xcc\xe4\x7c\x53\xe7\x7a\x43\xb4\x4c\xce\x77\x31\x85\xaf\xc8\x79\xd2\x43\x5c\x84\x81\x6b\xcb\xd5\x96\x72\xed\x45\x7f\x94\x9b\x5d\xdd\x1a\x1e\xe8\x99\x94\x61\xca\xc4\x27\xf0\x7f\xfe\xe4\xee\xbc\xe9\xfd\x74\x19\x0e\x49\xb9\x3f\x0c\x5a\x3f\x13\xff\xe1\xb6\x59\x30\x27\x9c\x07\xc0\x19\x89\x94\x87\x94\x24\xf6\xdd\x49\x39\x5b\xc6\x79\x00\x28\xf1\x90\xd2\x4c\x19\x67\x14\xcf\xaa\x28\x30\xb8\x9d\xc7\xf7\xdf\xff\x0c\x2e\xd7\x05\xe2\xb4\x3f\xe5\xa2\xb8\x4a\xde\xd3\x94\x73\x12\x11\xd6\x59\x12\x3d\x5b\x12\xe2\xfe\xd9\xda\x4b\x3a\x6b\xe6\x4f\x49\x48\x2c\x67\x9f\x2a\xd9\x3a\xe6\x24\xf9\xe8\x49\x69\xa6\x74\xa8\x0c\x78\x87\xa6\x95\xfc\x50\x3c\x0d\x41\x11\x78\x1e\x70\x10\x74\x52\x1e\x53\x20\x50\xcb\xa4\x4c\x53\x80\xbd\x6e\xa4\x6c\x53\x3e\x78\x83\x4e\xca\x30\x1f\x08\x58\x8a\x29\xd5\x14\xe0\x31\xc9\xf9\xc8\x4b\x7f\x4a\x39\x22\x11\xd4\x9e\xc5\xdd\xbd\x14\x78\xc3\xcf\xbd\xac\xc0\xc8\x72\x1e\xcf\x29\xbd\x92\xf2\xfb\x0a\x26\x02\x53\x2c\x1d\x82\x5e\xba\x0c\x8e\x96\xf3\xa0\xce\xe4\xbc\xac\x33\x8c\xe1\x85\x56\x84\xef\x40\x16\x76\xce\xc4\x1a\xef\x59\x79\x15\x8b\x78\xc5\x8c\x51\xb1\x29\x9e\x07\x44\xdd\x27\xa7\xfa\x9d\x6b\xe9\x79\xb0\x6f\x9e\x8b\x61\x23\x1a\xe6\x3c\x80\x89\x3d\xc3\xd8\x08\x52\x39\x0f\x16\xda\x11\xe5\xda\xdd\x49\xc2\xb3\xfb\x06\x2e\xa1\xd5\x23\x45\x9c\xc7\x11\x74\x70\xf0\x6f\x8d\xb9\xdd\xf0\x4d\xed\x23\xfd\xf5\xe8\xf1\xcc\xfc\xff\x75\x8c\x36\xf8\x0a\xce\xe3\x9c\xdc\x48\xdb\xad\xb3\xf2\x5b\xc7\xb4\x03\x28\x78\xe3\x82\x70\x1e\x10\xa3\x1e\x99\xa7\x01\x49\x7c\x1e\x30\x9c\x9d\x01\xe8\xe9\xf4\xd8\x79\x9c\x33\x08\x3b\x5a\x2f\x9c\x8a\xbd\x14\x78\xa3\xce\xe5\xad\xc3\xc8\x71\x1e\xc0\x39\x9f\x71\xea\x0f\xfd\xdb\x1f\xf8\x2d\xc0\x28\xe8\xe3\x5c\x6c\xcf\x03\xc9\xf0\xba\xff\xe7\x4f\x9f\x8c\x5d\x27\xbe\xba\xb1\x72\x3a\x14\xbc\xe7\xb1\x20\x8a\xc8\xff\xf3\xe7\xc1\xb0\x73\x1e\x10\x1c\x43\xac\xfc\x9c\xa2\xce\x83\x36\x42\xf7\x0a\x92\xfb\x79\x54\xe8\x48\xa0\xb9\x39\x5f\x9c\x47\x06\x5d\x55\x66\x1a\x92\x2a\xe4\xd9\xa2\x1d\xe3\x25\x7b\x1e\x42\xff\x43\x35\xf1\x3e\x24\x9d\x6d\xb1\x65\xc1\xbd\xaf\x53\xe2\x98\x10\xd2\x62\x1a\x9a\x44\xdc\x9e\x07\xe8\x51\x02\x83\x9e\x2d\xe0\x3c\xca\x59\x41\xc0\xeb\xc5\x91\xd0\xce\x83\xe5\x2a\xcc\xe9\x11\xce\xce\x43\x50\x21\x90\x43\x4f\x7b\xcf\x83\xa5\x07\xfc\x1e\x2e\x31\xe7\x01\xaa\x13\x10\x87\x71\xf6\x8a\xf3\x40\xb4\x00\x52\x33\x18\xed\x19\x6e\x19\x20\x4a\x06\x1b\xf6\x8c\x4c\x25\xc0\x7c\x04\x19\xfa\x3c\x16\x49\xe0\x96\x9e\x83\xf6\x3c\xcc\xcb\xa4\x8f\xa4\x02\xb2\x68\x02\x31\xb5\xd8\xa0\x33\xda\xa3\x08\xba\x5a\x1e\x93\x86\x90\x34\x24\x4d\x93\xc8\x1e\x44\xc8\x60\xdf\x9e\x30\x8d\x8f\x22\xb2\xea\x6d\xbd\xce\x36\x3d\x8a\xa0\xaa\xb7\xb5\xaf\x54\xb5\x8b\x3d\x6b\x55\x2b\x25\x82\xfe\x18\xd5\x66\x57\xb2\x07\xc1\x94\x70\xe0\x3f\x33\x1a\xd9\x03\xb2\x8a\xc3\xcd\x79\x24\x31\x6d\x48\xb2\xf6\xe7\xec\x1c\xec\x83\x13\x57\x9c\xf3\x00\x09\x36\x89\x64\xeb\x70\x74\x81\x6e\xe9\xaf\xee\x70\x9c\xf9\x35\x88\xae\x98\xf1\x98\xfd\x63\xf6\x54\x95\x53\x77\x06\x7a\x58\xcc\x7c\x33\x1e\xf3\x3a\x9b\xe4\xb8\x05\xcd\x7d\xac\x3d\x4a\x76\xe4\x98\x49\xd0\xf2\x79\x90\xbd\x55\x1d\x76\xce\xa0\xaa\x56\x62\x58\xd5\x01\xf0\xac\x25\x0e\x07\x0d\x30\x25\x2c\x7a\x33\x86\x83\x36\xa9\xd7\x0f\x3a\xd7\x66\x9f\x89\x3d\xe0\x21\x98\x30\x9d\x9f\x07\x40\x1c\xce\x89\x69\x25\x26\xf8\xbb\xce\x9c\x69\x5e\x40\x1c\x10\xc3\x39\x63\x59\xaf\x45\x5e\x7e\xb8\xcc\x0b\xbc\x25\x54\x09\x13\xe2\xf2\xf3\xa0\x5e\x00\x46\xc6\x72\x68\xcf\xb6\x3a\x6e\x93\xc2\x7a\x05\x6d\xfc\x21\xf8\xda\xc6\x20\xfb\x1f\x78\xaf\xfd\x15\x34\x5b\x7c\xde\xb0\xaa\x1b\x48\x5d\x27\xd3\xb6\x12\x9b\x2e\xec\x64\xff\x3a\x42\xf8\x1e\x26\x67\xe1\x6b\x89\x2f\x25\x3e\x62\xfd\x5a\xe2\xcb\x04\x78\xfc\xd0\x41\x7b\x85\xc0\x11\xf9\xd7\x12\x5f\x3a\xc7\x29\xf7\xda\x39\x9f\xd9\x8b\xf7\x6b\x5e\x9f\x90\x33\xe4\xf5\x99\xd7\x47\xed\x07\x25\x7e\x0e\x1a\xf0\x26\x58\x12\x67\x7c\x76\xce\x47\xed\xc5\xd8\xbd\xe8\xe8\xcd\xd6\x71\x0b\xa9\xeb\x3e\xc1\x5e\x38\xaa\x48\xb9\x57\x98\xb4\x45\x9a\x01\xf0\x97\x36\xee\xb3\x4f\x0c\x68\x58\xe6\x76\x9f\xc0\x03\x6b\x80\x58\x37\x71\xba\x3a\x8f\x8f\x24\xb2\x77\x9f\xc0\xed\x6a\x10\x8b\x31\x77\x9e\x26\xf1\x21\xb0\xa1\xdb\x7d\x62\xbb\x4f\x08\xcb\x9b\xa9\xfd\x06\xe0\xb4\x8a\x92\x5b\x6e\x93\xaa\xc8\x30\x24\x35\x93\xa8\x57\x11\x77\xd8\x7a\xb1\x4f\x10\x74\x31\xb7\xfb\xc4\xbe\xc9\x8b\xe9\xbb\x6f\xf3\xba\xcd\x0b\x50\xe3\xdb\x7a\x01\x51\x4b\xf0\xc5\x04\x20\xfe\x3c\xf8\xb0\x0a\x47\x5c\x4d\xa2\x44\xc0\x68\xb7\x5b\x07\xae\x62\x03\x59\x75\xe2\x0d\x76\x1e\x54\x02\x38\x5a\xc0\xe3\xcf\x43\xa4\x14\xdf\xb2\x8d\x6c\x30\xd5\x8e\xee\x96\xd8\x01\x31\x7e\xf2\x3f\x8f\xe2\x09\xa5\xfb\x79\x88\xfe\xc2\x30\xbb\xd9\x6c\x00\x70\xab\x88\xcd\x6e\x36\xbb\x6f\x81\x56\x00\x38\xb6\xa8\x47\xec\x15\xde\x72\xb3\xd9\x88\xf8\xd5\x1e\x46\x14\x9b\x1b\x44\x45\x42\x7a\x27\xa4\xf0\xe7\x41\xe3\xc0\xbf\xdd\x6e\x36\x9b\xcd\xa6\x8a\xdb\xec\x66\x43\xc0\xfd\x68\xc2\x34\xbb\xb3\x6c\x76\x16\x82\x7d\xe7\x1e\x76\xc1\x11\xc2\x06\x11\x10\x73\x4f\x7b\xf8\xc8\x13\x03\x49\x6a\x6e\x77\x83\x0d\x72\x2f\xb1\x07\x73\x23\x4a\xcd\x1d\xa2\xa3\x50\x7b\x97\xfe\x66\xe9\xe3\x23\x33\xb7\x4b\x7f\xb3\xf4\x39\x8a\xe7\x76\xe9\xc3\x30\x3f\x40\x41\x9b\xf8\xbd\x9d\x87\x79\x99\xe4\x00\x6e\x6a\xcf\x36\x02\xf7\xfc\x79\xf0\x21\x1b\x04\x14\xf4\xe7\x41\x89\x9c\x36\xdb\xa5\xbf\x3f\x4a\xec\xb4\xf1\xb3\xf6\x44\xb5\x65\x36\x67\x3c\xe7\xce\x83\xec\xc5\x9b\xfe\xcc\xfe\xac\xda\x81\xe3\xff\x7c\x3d\xfc\x5f\x91\x36\x04\x2c\xf6\xf0\x7f\x2f\xb2\x17\x93\x18\x49\x70\xbe\x04\x1c\x10\xe0\x3c\x5f\x04\x89\xf9\xa6\x02\x1c\x34\x79\x25\xea\xf5\x66\x00\x98\x2f\xd1\x9f\xcd\x9e\xa3\x38\x8b\xdb\xec\x51\x8c\x17\xdd\x00\x0a\x6c\xe2\x38\x77\x1e\x8d\x24\x50\x8d\x4b\x37\x09\xac\x88\x5b\xf4\xe8\x65\x12\xd9\x17\xb1\x9e\xcd\x5e\xe4\x1d\xd6\xd3\x7b\x9b\x97\x70\x2c\x22\x3c\xdf\xe6\x75\x83\x44\x7d\x0b\x18\x1d\x26\x09\x1d\x42\x55\x5d\x88\x2f\x0b\xb1\x9b\x57\xf5\x43\x0e\x6c\x1c\x83\x26\x7e\x7d\xe7\xf1\x83\xeb\x20\x89\x0d\xf5\x15\x20\x9c\x6d\xf7\x6d\xb6\xb1\x01\x57\x2d\xe4\x34\x77\xfe\xf9\x9e\x3b\xff\xc0\x21\x7e\x02\x6f\x70\x1e\xf4\x2a\x3b\x31\xae\x82\xe7\x41\x89\x8d\xaa\xb6\x6d\x12\xcd\x16\x8e\xda\x15\xfc\x76\xf2\xfa\xa1\x52\x9b\x17\x11\x14\x58\xa8\xe7\xeb\x7a\x7c\x5d\x8f\xec\xd7\x6f\x77\xd0\x1e\xda\x08\x46\x3b\x28\x09\xe7\x01\xda\xf5\x0f\xc9\xda\xaa\xb2\xf8\xba\x60\xd5\x2e\x3e\x18\x17\x46\x77\xe6\x2c\x7b\x42\x50\x27\xce\x24\xfc\x08\xcf\xa3\x80\x7e\x4d\xf6\xae\x0e\x88\xfc\xc7\x23\x82\x78\xf8\xa1\x78\x4e\xc8\x9b\x6f\xd8\x85\xae\x0e\x36\x67\x68\xfd\xcf\xe3\xb4\xf1\x11\xcd\xdb\xb3\xf2\x05\xd0\x32\x5b\x89\x6d\x7f\xb1\x86\x1e\xb1\xc0\x5d\x43\xef\xeb\x87\xe4\xf5\x0e\x93\xce\x66\xf5\xd8\xd1\xaf\x3d\xf1\x51\x55\xc1\xbc\x3d\x05\x5f\x96\xd5\x63\x4f\x7c\x7e\xc8\x1a\x7a\x6c\xa3\x6b\xe8\xe5\xc8\xc3\xc1\x7a\x7e\xae\xa1\x0f\xd1\x18\xaf\xe9\xf9\x79\xe4\xe1\x27\x99\x60\xb7\x98\xdf\x35\x4c\x02\xc6\x7b\xf8\xe1\x6b\x12\x79\x71\x56\x7e\x89\x2e\xfc\x38\xb9\x86\x1f\x7a\x72\x7d\x59\x0c\x6f\x3e\xf4\xe4\x82\xf2\x7f\xe0\x10\x3c\x3f\xd7\x10\xdc\x11\x03\x8f\xdf\x89\xa2\xf3\x3c\xfc\x10\xf0\x6c\x65\xd7\x0f\x4c\x75\xac\xec\xf3\xf3\x98\xfa\xce\x22\x19\x43\x60\xec\xfb\x31\x69\x08\x6f\x41\xd2\x34\x89\x12\x41\x79\xff\x5c\x30\x1f\xab\x03\xf5\xf4\xfc\x5c\x1d\x9f\x78\xd3\x9c\xce\xa8\x58\xff\xcc\xaf\x81\x22\xce\x52\xf8\x3c\xb9\x3e\x15\x62\xec\xd1\x9f\xab\x03\x37\xcc\x01\xe8\xd0\xfc\xba\x25\x22\xbb\xe2\xc0\x3a\x3f\x8f\x93\x8f\xe9\x3b\x86\x48\xe2\x36\x9b\xe3\x04\x0f\xd6\xf9\x29\xa8\x7e\x1c\x14\xc3\x5e\x1d\x8e\x90\xe8\xd5\xe0\xe7\x7f\x23\x9b\x84\x0a\x94\xc8\xa2\xf9\x0d\x6b\x21\xb0\xf5\x25\xcc\xf9\x60\xbc\x3f\x60\x8f\x2e\x9c\x56\xe7\xe7\x59\xf1\x21\x39\x16\x91\xd1\x97\xb5\x5d\x7e\x2a\xa6\xf8\xfa\x7d\xfa\x99\x26\x4a\xb9\x4d\x10\xd7\xfa\x12\x6f\x3c\x9c\x2c\x61\x76\xf7\xbf\x0f\xe4\x4f\x41\xf2\x23\x3a\xa3\x08\xc1\xee\x12\xfa\x80\x58\xba\xf0\xf7\x9c\xdf\xb6\x73\xb6\x95\x82\x47\xe2\x73\x79\x7c\xe2\xf8\xe2\x9d\x39\xf1\x48\x3d\x0f\x2a\xc0\x22\xfd\x5e\xdb\xf3\x5a\x77\x28\x1f\xbe\xcf\x5e\x44\x72\x2c\xce\x81\xcf\x5e\xfc\x2c\x15\x31\xf4\x73\x1d\x7d\x9f\x25\xb0\x7f\x7c\x2e\xa4\xef\x33\x3b\x70\x09\x55\x37\xad\xeb\x32\x3b\x93\xb2\x49\x66\x07\x92\xcd\xc5\xc5\x73\x5d\x97\x8d\x10\x16\xfc\xc8\x8d\xe7\x41\x76\x5c\xc2\x17\x4a\xaa\xf3\x28\xa6\xf1\x5e\xf2\xdb\x24\xc6\xba\xd8\xe6\xe8\xb5\x97\x7a\x6d\xf8\x77\x97\xfa\xaa\x75\xe5\xee\x6b\x7c\x8a\x2a\x70\x5d\xb7\xd9\x09\x5f\xce\x52\x59\xd7\x2d\x02\x88\x49\xcd\x24\x3f\x35\xbb\xb3\x48\xfe\xac\xab\xaa\x47\x13\xff\x1d\xd5\xf5\x82\xbb\x3f\x95\x1f\x74\xfb\x34\x29\x44\x6d\xa7\xb1\xd5\x9a\x74\x2b\x2c\x62\x7b\xb7\xc2\x5d\x10\x77\x72\xeb\xbf\xd7\x6c\xff\x10\xd8\xdd\xf6\xa3\xe2\xbd\x84\x8b\xbb\x1e\xdb\xff\x88\xd4\x0e\xe0\xe2\xf5\x98\x1d\x80\x53\xf8\x3f\xac\x6b\xd8\xed\xa3\x0b\xe8\x0e\x3c\xfb\x78\x4c\x13\xc0\x82\xb6\x0e\x7b\x7d\xfc\x90\xe2\xa9\xc9\xb0\xad\xe2\xc2\x80\x7f\x04\x2c\xcc\x79\x98\x5b\x36\xcd\xdc\x40\x6d\xc5\xc5\x61\x5d\x73\x99\xf4\x09\x03\x01\xf2\xbb\x5f\x82\x99\x8b\x03\xc3\xc2\xa7\xf7\x3c\x7e\x99\x51\xe6\x72\x68\x5c\x6b\x78\xce\xad\x6b\x59\xb7\xb0\xf5\xc0\x68\xe1\xdd\x7b\x1e\x66\x47\x27\xb1\xd4\xd6\xc5\x52\xbb\xed\xa3\x70\x18\x44\x59\xc6\x7d\x6e\x01\x41\x73\x1e\xe2\x33\x50\x91\x6d\x1f\xb9\xbe\xb2\xd3\x75\xdb\xbd\xdb\xca\x49\x12\xb0\xad\xdc\x36\x3b\x49\x01\x5e\x87\x86\xc0\xf3\x2b\x8b\xfb\xff\xda\x30\x57\x84\x20\x7a\xc9\x15\x91\x2e\xf3\x03\x04\x4a\x25\xdc\x4a\xc6\x7a\x82\xb0\x94\x50\xb2\xac\x04\x40\x29\x77\xff\x95\x5c\x10\xc9\x05\x01\xe9\xc3\x82\xa6\xff\x3c\x8a\x78\x10\x24\xdd\x26\x75\x21\xef\x05\xc3\xb7\x00\xf1\xd2\x01\x26\x4b\xc9\x02\x58\x22\x80\x2c\xac\xe4\x12\x49\x39\xfb\x25\x69\xb9\x98\x86\x8d\x8c\x71\x4e\xa8\xd4\x57\x72\x25\x15\xd1\xf6\x5d\x49\x09\x14\xbd\x8b\xe3\x64\xa5\x6c\x7d\x31\x13\x5d\xc5\x22\x8a\x95\x2b\x66\x47\x45\x90\x02\x97\x8e\xd3\xa8\x0e\x16\x7e\xd3\xe7\xf1\x09\xc8\xcf\x6b\xb7\xfd\x86\x18\x88\xeb\xc6\xc2\xa5\xfa\x3c\x2c\x00\x38\xc1\x84\x68\xb8\x92\x6b\xb5\x88\xd9\x7f\x5b\x39\x8d\x63\x68\xac\x96\x8a\xba\x85\xa2\x2e\xe1\xd7\xb1\x52\x35\xbb\x6a\x76\x22\xf4\x57\xeb\xcb\x92\xbe\x7f\x5f\xda\x7c\x11\xcc\x8b\x18\xfd\xd5\x12\xaa\xcd\x67\xe2\xa4\x6a\xf3\xab\xa5\xc2\x28\x81\xe7\xf6\x9f\x95\xba\xdf\x8a\xd0\xdf\x1d\x1b\xe3\x62\x99\x9a\xa9\xdb\x7e\x77\x08\x17\x66\xea\x66\xe7\x76\x80\x5b\xd2\x4a\x8f\x83\xf3\x98\x1d\x10\x93\x38\x78\x9f\x87\xd9\xf1\xe9\xe3\xb8\x0e\x19\x06\x9c\x72\x6e\x07\x1a\xc3\x6e\x2b\x37\xec\x3a\x77\x08\xfc\x89\x56\x1a\x36\xcc\xd3\x52\x24\xc2\xe4\x16\x91\x5c\xfb\x2e\xb0\x34\x7d\x0f\x98\x87\xeb\x37\x5f\xc3\xf7\x5c\x74\x3f\x32\x83\x6d\x07\xb8\xc2\x7e\x3c\x06\xae\xb0\xe4\x09\x46\x70\xc7\x4a\x3b\x4c\x93\x1e\x80\x22\x5e\x47\xcc\x43\xed\x6f\x9a\x8d\x7d\xe5\x1d\xa0\xfd\xaf\x7d\xf7\x9a\x9b\x94\x03\xaf\x35\xf1\xa0\x83\xa0\x6f\xa5\xcf\x9a\xe0\xdf\x77\xa1\x95\x59\xe9\xb3\xa3\x5c\xaf\x3f\x6e\x00\xd7\x6b\xf6\xb8\xc2\xb3\x61\x81\x1d\x74\x1e\xcc\x8a\x7e\xfd\xf3\x30\x5f\xf9\x6a\x7e\x61\xe5\x65\x17\x40\x58\x5c\x59\xd5\x2a\xfa\x97\x95\x5d\xf6\xd9\x65\xdf\xad\x00\x95\xcf\x9e\x79\x37\x3b\x66\x76\x8d\xe7\x64\x05\xa8\x53\x9a\x26\x7d\xf2\x23\xc0\x09\x80\xd6\x64\x09\x24\x74\x81\x6d\xb1\x32\x32\xe4\xca\x60\x45\x5f\x68\x9a\x57\x2e\x16\xe1\x94\x86\xc0\x6d\x65\xa7\x74\x76\x4a\x63\x4c\x5b\xb9\xfe\xde\xb3\x0c\xc9\x02\x9c\xd2\xd8\x39\x4f\x1a\xf9\x71\xe9\x59\xb9\x19\x98\x4f\xf5\x9a\xd5\xeb\x56\xa5\x4b\xb5\x60\x2b\xba\xc1\xfc\x7c\xd9\xed\x27\x67\x7e\xfd\x31\x32\x58\xaa\x87\x9e\xd0\xf4\x38\xdf\x9f\x07\x9f\xfe\x92\xfc\xf4\x91\x20\x82\xa9\xaa\x95\x68\x61\x25\x4a\x97\x58\xf2\xe0\x16\x9d\x47\x32\xd0\x9d\xa4\x6c\x92\x24\x08\x92\x31\xb8\x1a\xb2\xab\x41\xf0\xf8\xec\x79\x99\x39\x2f\x51\x85\x2d\xd0\x8e\xce\xc3\x12\xe4\x68\x98\x96\x30\x2d\x81\xb1\x9e\xe6\x36\x8d\x21\x67\x70\xd0\xe5\xaf\xcc\x71\x79\x89\x05\x9f\xa7\x4d\x9d\xe6\x06\x7a\x22\x31\x01\xe7\x61\xe5\xb2\xac\x11\x66\x17\x56\x8e\x4d\x33\x87\x95\x33\x4c\xda\xfa\x7a\xec\x65\x57\x25\x04\x85\x2b\xbb\x2a\xb3\xab\x52\xc8\xf6\xbc\xd9\x47\xb2\x67\x1c\xe0\x09\x8b\xa0\x81\xf3\x20\xbb\x64\x12\xcb\x23\xbf\x52\x50\xb0\x02\xf3\xeb\x40\x80\x37\x5f\x6d\xc4\xeb\xcc\x79\x25\xa4\x68\x72\x4d\xd8\x4d\xac\xc0\x6a\xbb\x3e\x7b\xe9\x93\x22\x82\x85\x9a\x3f\x2b\x02\xfe\xca\x6f\x6e\x7e\x76\x13\x48\xcc\xa0\xc1\xac\x8c\x92\x72\x65\x7c\xde\x2f\x40\x19\x56\x71\x99\x16\x04\x4d\xc1\x44\x8b\x82\x66\x71\xe5\x36\xc9\x18\x14\x34\x8b\xeb\x10\x18\x86\x55\x5c\x87\xc6\x30\x5c\x02\xc9\x13\xc3\x70\x1e\x64\x27\xf9\x02\xfe\x14\xcb\x28\x06\x51\x49\x09\x62\x38\x0f\xfb\x57\x32\x05\x94\x97\xab\x78\x8a\x88\x1a\x5f\x3c\x45\x8a\xd1\xbb\x6c\x84\xc5\xe5\x55\xea\x8f\xaf\x82\x12\x70\x74\x58\x05\x61\xb1\xfe\x92\x5e\x93\xe8\xb7\x1f\x29\x86\x55\x03\x0f\xf6\xc2\x21\x62\x95\x66\x01\x46\xfe\x72\xac\x80\x47\x75\x1e\xf2\x69\x30\x58\xe0\x52\x9d\x07\xad\xfa\x25\xd9\x49\xae\x4b\x91\xc8\x4b\xb7\x93\x3c\xa5\xe0\x42\x5d\xa5\x5b\xdf\xfe\xa3\xce\xa0\xa9\x8f\xd9\x3d\x66\x47\xa9\x9e\x48\x85\x75\x09\xcc\xcb\x2a\xae\xcb\xa2\x7c\xda\xbb\x69\x76\x92\xeb\xb2\xcb\x74\x81\xa2\x6f\x15\x17\xa1\x10\xe7\x1a\x5e\x57\x19\xbf\xf7\x28\xd5\xd5\x85\x63\x4d\x12\x88\x15\x33\xec\x79\x58\x61\x56\x9c\xb6\xd6\x55\x24\x5e\x81\x8c\x74\x69\x6d\x5d\x45\x01\x52\x74\xf1\xa2\x00\x59\x10\x20\xab\xb5\x0b\x6b\xec\xea\x12\x77\x1b\x8f\x9c\xf3\xd0\x0e\x06\x10\x63\x09\xc7\x4b\xaa\x16\x4e\xe4\xe2\xf9\x56\x3c\xdf\x04\x14\x2d\xdb\x12\xb6\x61\xd9\xb2\x6f\x38\xac\x0a\x90\x0f\xa2\x46\x51\x80\x2c\x32\xb1\x08\xb9\x5d\x5e\xdb\xef\x99\xf7\xc8\x90\xe2\xf2\x2a\x9f\x0d\x73\x4e\x7c\x36\xcc\x83\x0b\xfe\xb0\x75\xbb\x22\xee\xeb\x97\x26\x09\x07\x65\xdc\xca\x86\xc2\x5b\xdf\x28\xe0\xd7\xed\x24\x86\x5e\x77\xdd\x4e\xe2\xdb\xc3\x64\xc8\xc1\xe1\x61\x72\x2b\xf6\x0d\xb9\x38\xf2\x63\xda\x30\x64\x9a\x24\xe6\xdd\xed\x99\x23\x72\xf5\xed\x99\xf3\xf3\x4e\x1a\x52\x5d\x28\x80\x61\xf7\x4c\x0d\x58\xd0\x5b\x01\xec\x76\xe9\xe0\x00\xbb\xee\xea\xa7\x1e\x4d\xc4\x0b\xaf\xdb\xb5\x73\x7b\x0c\x11\x2a\xbc\x74\x46\x59\x77\x33\x3b\x68\x39\xd0\x37\xac\x1b\x30\xf4\x4b\xe4\x64\x22\x54\xfe\xac\xdb\x69\x2c\x0a\xf2\xed\xa5\xea\x56\x8a\x1a\xff\x0f\xf5\xe6\xff\xe1\x38\xbf\x1f\x6b\x80\x8b\xf0\x85\x96\x62\xdd\xa8\xa0\xd7\x0d\x1d\x50\xba\x7e\xec\x21\xd6\x9e\x89\x99\x2e\xf9\x3e\x9c\x98\x37\x13\xf3\x5c\xb1\x48\xb3\x5a\x4b\x7e\x4c\x20\xe3\x6f\xb4\x0d\xeb\x46\xb3\x90\x08\x5b\x5d\x77\x58\xd5\xb0\x8c\x5b\x9e\x10\xcb\x08\xcb\x00\x21\xf9\x76\xb6\xe2\x3e\x73\xd2\x68\xa6\x53\x93\xb8\x97\x94\xc4\xef\xbd\xb7\x5d\xb4\xad\x0b\xb7\xdd\x5b\xd1\xeb\x46\xf4\x6a\x56\xc5\xe9\x4a\x68\x4c\x4a\x44\x84\xae\xdb\xe9\x7a\xe3\x52\x97\x04\xe5\xbd\xdf\x62\x9a\x01\xd3\x12\x91\x74\x93\x2c\x81\x7d\x83\x50\x9a\xf3\xa0\x04\xb6\xf4\xfb\x73\xe8\x3f\x1b\xc1\x5e\x0d\x7c\xdb\x79\x58\x2a\xf7\xce\xea\xa4\xae\xc9\x0e\x60\x43\xa8\x0a\x43\x95\x8d\x19\xad\xfe\xaa\x6e\xcc\x44\xce\x24\x2d\xc6\xab\x3a\xcf\xab\xec\x0d\xea\x09\xaa\x97\x20\xf0\xdd\x12\xbe\x1e\xab\x3a\xf5\x6b\x2e\xbe\x96\xe1\x3d\xb1\x04\x09\x42\xe8\x75\x1c\x8a\xce\x83\xb0\xef\xdb\xb7\xcc\x0c\x84\x07\x59\x48\x17\x08\x71\xe7\xc1\xb4\x94\x96\x04\xdd\xf8\xaa\xc5\x02\x38\xcf\xf5\x2e\x5a\xb5\x58\x5f\x7a\x4e\xff\xa2\x55\x8b\xd9\xd1\x4d\xfa\x13\x2d\xfc\x89\x12\x9e\x9d\x4b\x87\xa2\x55\xd1\x57\x48\x0b\x55\xd5\x57\xe0\x63\x94\xa4\x31\x5d\x80\xcd\x9d\x07\x7d\x2e\xed\x0a\x06\xed\x45\xb4\x50\x4a\x84\x50\x2e\x22\x84\xce\xc3\xca\x01\x93\x5b\x5d\x82\xb5\x4a\xc6\x2a\xe1\x0b\x4a\xc0\x55\x51\x02\x2a\x09\x00\x5a\xf7\x67\x55\x57\x20\x80\xcd\xb5\xd9\xd4\x61\x09\x20\x43\x57\xb7\xef\x3a\x7d\x4d\xfe\x17\x5f\x73\xe5\xc8\x35\x57\x5d\x39\xd5\x95\x93\xed\xcc\x39\x4d\x23\xc0\x14\x25\x49\x9d\xd6\x03\x81\x49\xfb\xcd\xaa\xcb\x12\x00\xbc\x97\xab\xaa\xaa\x74\xa8\x12\xf5\x74\xf9\x64\xec\xa4\x25\x05\x2c\x4a\x87\xba\xec\x24\x4c\xc3\xe0\x35\xad\xba\xec\x24\x57\xa1\x3a\x87\xea\x2a\xac\xae\x42\x22\xf9\x56\x75\x15\x8a\x73\x97\xf0\x77\x5c\xc4\x33\x9d\x07\xd9\x39\x7f\xc3\x4e\x42\xe9\x00\x90\xd3\xaa\x2a\x1d\xaa\x1c\xaf\xb8\xcd\xae\xaa\x82\xa1\xba\x6a\x54\x30\x54\x2f\x31\xd5\xe5\x40\xb0\xda\x6a\x2e\x87\x26\xef\x6a\x96\xc6\x46\xd1\xa5\x25\x8b\x78\x48\xca\x26\x15\x8d\xff\xb2\xe0\x54\xd3\xba\x69\x83\x34\x8a\x6d\xd2\xf4\xa2\x3a\x5e\xcd\xdb\x7e\xe3\x66\x2f\x85\xe3\x6a\xde\xec\x9b\x53\x18\xe5\xe8\x6a\x4e\xe1\x26\x15\xab\x97\xec\xe6\xc5\xbb\x35\xdf\xab\x32\xe5\xf8\x5e\xf3\x3d\xba\x40\x67\xb6\xd5\x86\x65\x00\x98\x0d\x52\xdc\x79\xd0\x79\x28\x76\x9a\x3b\x6c\x73\x3a\x79\x1b\x27\xf4\xe7\x3c\x8a\x69\x34\xc3\xb9\xd3\x7e\x0e\x04\x2c\xce\xa6\x26\xaa\x19\xd6\x79\x99\x64\x2b\x7e\x1e\x04\xcc\xeb\xb6\xec\xa9\x6d\x76\x2c\xa7\xe6\xfd\xb4\xbd\x16\x6b\xed\xbc\x3d\x36\x49\x74\x15\x8f\x89\xd5\x39\x8f\x6e\x9a\xef\xd9\x32\x07\xad\xca\xa2\xe3\xa0\xf5\x4b\x3a\x20\x93\xb2\x49\x72\x04\xcb\xc2\xe3\x95\xb1\x67\xb3\x63\x82\x76\xcf\xdb\xce\x79\x0b\x3a\xd6\x22\xb2\xe7\x3c\xe8\x3b\xb9\xcb\xba\xe3\xd3\xc1\x57\x48\x38\x39\xae\x8e\xc3\xcc\xea\xe0\x7b\x75\x14\x34\x1d\x5f\xbc\xd5\xdd\x75\xbc\xba\x11\xf6\x73\x1e\x96\x60\x12\x23\xd1\x6f\xdb\xca\xde\xdc\x55\xb3\x74\x47\x5b\xa1\xa6\x3b\xda\x82\xc7\xfd\xc8\xc8\xfa\x6d\x4d\xdc\x4f\xa4\x18\xeb\x4a\xc3\xc6\x02\x81\xbf\xb5\xba\x3a\x95\x5e\xed\xa6\x21\x0b\x91\xb5\x73\xf2\x78\x29\xeb\x4e\x9e\xee\xe4\x91\xc5\xab\x3b\x79\x3a\xe4\x36\x3f\xd6\xae\xae\xa0\xdb\xe5\xb5\xc9\xcf\xbf\x4f\x74\xbd\x27\x57\xe7\xe2\xf9\x63\xdd\xea\x2a\x65\x3b\x4a\x59\x20\xbd\x56\x57\x29\x8b\x93\x65\xfa\x1d\x71\x5d\xf9\xa1\x3f\x56\xd4\x81\x52\x29\xdb\x1f\xb3\xf3\x5b\x95\xb2\x5d\x22\x1d\x76\x0d\x00\xee\xfe\xac\x3e\x0c\xf7\x85\xcf\x08\x2f\xe5\x25\xc2\xdd\xef\xb0\xe9\xc3\xca\x01\x74\xd7\x99\xcf\x84\x2d\x9d\x87\x05\xb0\x79\x77\x15\x33\xdd\xf5\x81\x99\x7a\x75\xd7\x47\x77\x1f\x95\xad\xab\xab\xa8\xed\xd3\xec\x4c\x5a\x26\x51\x37\x0e\x96\x3e\x6d\xea\xb2\x59\x32\x2f\x2d\x87\x8e\x7d\xd4\xab\x87\xfe\x7a\x0b\x7f\xbd\xf4\xdb\xf7\xbb\xca\xdb\x8e\x01\x24\x49\x2a\xd8\xbd\x8b\x76\xb7\x34\xa9\xbb\xba\x82\x40\x7f\x2d\x95\x8a\xbc\x96\xea\x62\xeb\x2c\xac\xee\x62\xeb\x3f\xc6\x6a\xe7\xae\x8b\xad\x23\x05\xa7\xce\x99\xd1\xbd\x17\x76\x9c\x57\x64\xf7\x7b\x5c\x6b\x8f\x6b\x8d\x85\xf0\xb8\xd6\x9e\x1f\x87\x35\x6b\xed\xc1\x94\xb7\x04\xdb\x03\xb0\x6c\x81\xb5\x77\x1e\x16\xc0\x25\xe0\x51\x15\xf3\xb8\xdd\xe2\xf3\xbc\x1e\x45\xea\xc7\x7d\xd4\x61\x7d\x54\xb7\x3e\xa8\x5b\xc1\x66\x5c\x8f\xba\xd5\x47\xb1\x02\xe7\xef\xf5\x28\x56\x3c\x88\x15\x5e\x8c\x1e\x77\xdb\xc7\x45\x8f\x85\x7a\x3d\xea\x56\x1f\x57\xb8\xbd\xfe\xb8\xc2\x1f\x77\x60\x69\xb1\x1e\x75\xab\x0f\xba\xd5\x2e\xa5\x92\xba\xd5\xc7\xd5\xcc\x35\xeb\x51\xb7\xfa\x28\x56\xfc\x68\xb0\x6e\xdb\xe0\x0a\xff\xd1\x61\xb9\xc2\x9f\xfa\xa3\x03\xa7\x54\x57\xee\xa3\x24\xf0\x97\x9e\x2a\x4c\xdb\x06\x9f\x92\x64\x5b\x5d\xcd\x9d\x2b\xf0\xe3\x6a\x7e\x5c\xcd\x3f\xaa\x29\x57\xf3\xd3\xcc\x4e\x6a\x29\xaf\xad\x4f\x93\x6d\x8a\x52\xbd\xa2\x3e\x5c\x47\xff\x72\x42\x79\x1d\x7d\x5c\xae\x60\xa0\xad\x47\x3d\xd1\xa3\xf3\xda\x8f\xcd\x49\xd5\xe7\xe3\xf4\xf7\xda\xf6\x28\x80\x3f\xca\x0c\x0f\xa6\x9b\x47\x25\xcb\xe3\x64\x07\x66\x63\x3d\x2a\x59\x1e\x67\xb6\xd4\x43\x8f\x33\xfb\x51\x1c\x90\x75\xe8\x09\xe7\x98\x9c\x46\xd8\xa9\x1e\x6f\x90\x8f\xd2\x00\x46\xe5\xf5\xa8\x78\x79\x94\xc9\xa5\x19\x7a\x94\xc9\x1f\x8f\x1b\xef\x63\x8f\xc7\xcd\xb3\x6d\x86\x5d\xf0\xda\x05\xaf\x3c\xe7\x92\x6a\xa9\xfb\x7c\xd0\x7d\xfe\x7a\x40\xdd\xe7\xe3\x1a\x1b\x32\x66\x29\x36\x3c\x2e\x28\xef\x63\x8f\x0b\xea\xf1\xa4\x1a\x7e\xfb\x99\xdd\x67\x76\x74\xb2\xea\xd0\xc7\xc3\x6b\x48\x6a\xe5\x82\x22\xbe\x31\xfd\xb8\x80\x86\x4a\x95\xe1\x12\x18\x92\x59\x29\x4a\x8c\xe4\xb7\x6c\x32\xc3\x1b\xe4\x28\x56\x0f\x21\x74\x78\xb8\x8c\x22\x9f\x96\x49\xaf\x49\x7e\xca\xac\x1d\xce\xd0\xe1\x0c\x1d\x8f\x9c\x5a\x16\xeb\x79\x23\xeb\xcb\xf0\xbc\x19\xb7\x74\x60\x4c\xbd\xe1\xb5\x72\x54\xab\x27\x6b\x14\x3e\xce\x6b\x40\xa0\x4c\xd4\xf7\x1a\x9a\xea\x88\x6a\x4c\x99\xd0\xdd\x35\x54\x78\x12\xb9\x98\x7e\x74\x30\x7a\x23\x2f\xa2\x0d\x4f\x9a\x24\x5b\x66\xd7\xcc\x4e\xaa\x2d\x5b\xd1\xa5\x8e\x67\x36\x0e\x15\x9e\x03\x85\xa7\x94\x9e\xc3\x73\x67\x74\x73\xb3\x8f\x9d\xdc\xa3\x5b\x13\x3b\xc5\xc9\x4d\xec\xdf\x49\xa3\x54\x95\xa0\xe3\x31\x3b\xda\xea\xc5\x74\x00\x9f\x40\x40\xcd\x1a\xcf\x32\x49\xd2\xac\x62\xda\x2f\xb7\x97\xd7\x18\x30\x8f\xa2\x31\x2d\x54\x8a\x30\xa5\xeb\xc1\xa9\x80\x47\xff\x1a\x9e\x0a\xc4\xed\xa5\xec\x7d\x6e\xb8\x78\xc6\xb2\x6e\x5d\xea\x2f\x07\x67\x99\x5d\x97\x27\xcc\xec\x96\xd9\xd1\xac\x70\x6c\xc2\xe6\x3b\xd6\x2a\x32\xc5\x7b\x74\x79\x0e\x0f\x8f\x11\xe6\xf6\xfc\x5f\x1c\xe8\x44\xe9\xfd\x59\x82\x43\x3e\x1c\x06\x43\x35\xe7\xd8\x16\x86\xb4\x3c\x54\x73\x0e\xd4\x9c\x40\xf4\x2d\xe2\xf5\xce\x83\xce\xb1\x35\xdb\xce\x91\x5f\x5f\x32\x95\xe1\x65\x97\xa8\xbc\xf4\xd8\x40\xed\x7d\xe0\x43\xa6\x1f\xcf\xca\x50\x5d\x33\x64\x79\x4f\x4e\x2b\xd7\xe4\xe0\x40\xcb\x04\x40\xaf\xf1\x39\x98\x9f\xd9\x51\x82\xaa\x4f\x62\xf7\x7e\x1c\x79\xc4\xee\x9d\xc7\x27\x87\x19\xb4\x5c\x2e\x49\xc2\xf1\x12\xde\x2a\x6b\x7a\xc6\x11\x59\x97\x7e\x44\x2b\x53\x35\xe7\x94\xc3\xdf\x7b\xe7\xf4\x9e\x3c\x25\xbc\x92\xb2\x73\x2a\x01\x4e\xce\x0c\x30\x01\xd7\xf4\xcc\x98\xc5\x36\x70\xa5\x9a\xda\x0c\x66\xb1\x26\xb4\x7f\x7a\x17\x9d\xb7\xd9\xa1\x5d\x9d\xb7\xd9\xe1\x67\xe2\x6e\x36\x5d\xa4\x93\x45\x4a\xd8\xd5\x9a\x9a\xd3\x67\xd5\x89\xd0\x46\x68\x4e\x9f\xc6\x8c\xd3\xe7\x53\x39\x71\x56\x0b\xb0\x72\x6a\x83\xa6\xeb\x36\x49\xd9\xe6\xba\x9d\xcd\x0e\xb6\x54\x75\xa4\x13\x1d\xa9\x5b\xe8\x6c\xdd\x24\x08\xbb\x58\xdd\x53\x3b\xc5\x44\x9a\xcc\x59\xa6\x36\xa5\xc9\x89\x34\x09\x24\xe1\x9a\x9e\x49\xd3\xd5\x0d\x8f\xc9\x9a\xaa\x4d\xa7\x4b\x19\x1c\xb9\x35\x5d\xca\x53\xe7\x48\xad\xee\x53\x1d\xe9\x64\xd9\x8e\x5f\x92\x9d\x84\xb8\x28\x37\xc9\x9a\xae\xd1\x39\xcd\x4e\x42\x35\x25\x37\x62\x11\xd2\x48\x26\x2d\x93\xe4\x80\xa3\xd0\xf9\xfb\xd2\x36\x54\x29\xda\x2c\x74\x99\x1b\xab\x6a\x2e\x73\xc3\xc5\xc5\xed\x7d\x7a\xdd\x9d\x61\xbb\x9a\x8c\x6e\xb6\xcb\x35\xea\xc5\x73\xaa\x60\x9a\xfb\x97\x46\x11\x2e\xa5\xb9\xcd\x8e\x12\xb6\xbd\xf9\xd9\x2e\xc7\x46\x5d\xe5\x74\x0a\x7b\xa1\x5c\x38\x14\xaf\xc5\xa9\x92\x81\xec\x59\xcb\x53\x65\x61\x0a\x93\x5b\x62\x2d\x2f\xb2\x2b\x49\xd0\x26\x8d\x9b\x27\xcd\x42\x7f\x99\xb5\xc7\x2e\x95\x38\x2b\x59\xc6\x2d\xf5\x9b\x65\x48\xff\x25\xab\xff\x52\x59\xb9\x8a\xe5\x4a\xa8\xa6\x18\xb5\x00\xd0\x06\xc5\x6a\x2d\x55\x31\xab\x48\x18\x27\x17\x1a\x9e\x8a\x6b\x81\x2d\xa5\xae\x72\x15\x26\xf1\xba\xcd\x4d\x6a\x34\xdd\x49\x16\xea\x19\x1c\xa8\xd6\xc2\xcd\x6a\x2d\x89\x01\xb5\xe4\x2e\xe7\x3f\x98\xa6\xbf\x93\x71\xa9\x8a\x59\xd5\xdc\xb8\x62\x2d\x55\x31\xcb\xf9\xef\x45\x79\x39\xff\x57\x93\x16\xef\x91\x39\xce\x52\x9b\x7d\x32\x64\x96\xb3\x4f\x50\x73\x66\x59\xf5\x97\xc7\xc5\x72\xde\xc9\x76\xbf\x9e\xdf\x7b\x9f\x69\xbc\xa7\x6e\x7e\x71\xcb\xce\xde\xb2\x97\xb7\xec\xe5\xfc\x94\x3d\x7e\x29\x5a\x2d\x0f\x91\xdb\xfe\x74\x36\x2e\x4f\x87\x5b\x42\x3a\x4f\x87\x05\x98\x9b\x2c\x04\x6b\x39\x1b\xd7\xb2\x5c\xc9\xe4\xd4\xb4\x2c\xa7\xa3\x24\xee\xcb\xe9\xb8\x9c\x8e\x92\xb6\x2f\xa7\xe3\x0a\xbf\x45\x14\x58\xca\x56\x8b\x03\x40\xb6\x81\xb5\x54\xc5\x2f\xb9\xcd\xb4\xe0\x2d\x05\x9f\x85\xe0\x03\x34\xe3\x5a\x9f\x23\xe4\xb4\xad\xf2\x14\x3a\x6d\xd7\xa7\x37\xa9\x1c\x6e\x17\x8b\x2a\xdc\x66\xf1\x1b\x5f\xa1\x2f\x47\x70\x95\x20\xb6\x67\x19\x30\xb3\x42\x76\x43\x06\x32\x9c\xc8\x81\x46\x26\xcb\x89\x1e\xea\x31\x43\x1a\x43\xf6\x36\x83\x68\x56\xa4\x1f\x15\x1e\x05\xa8\xb3\x24\x8a\x26\x11\xc1\xb4\x82\xa0\xdd\x45\x14\xcd\x79\x0d\xb2\x39\x2f\x17\x44\xd3\x24\x3c\xe4\x56\xa8\x2a\x20\x9a\x26\x65\x02\xe7\x17\xd8\xb4\xe7\xf1\x99\xc6\x7b\x2a\x2d\x89\xad\xf9\x09\x42\xc6\xd6\xac\x70\xa1\x68\x3a\x0a\x35\x3e\xe1\xe1\x21\x83\x7a\xb8\x52\xc2\x53\x41\xcd\x43\xa8\xb4\x24\xa4\x26\x5f\x6c\x95\xe1\x41\x11\xf0\xa7\x5c\xd7\xf8\xf7\x71\x1e\xea\x34\x43\xa2\x45\xe2\x2d\x57\xb8\x90\xe2\x76\x98\xba\x04\x7d\x61\x9a\x14\x7c\xbe\x66\x13\x6f\xeb\x24\x03\x9e\x8b\x2b\xaa\x5d\x21\xe1\xa0\xd7\x96\x50\xc4\x82\x03\x60\x85\x22\x56\x40\xb7\xa4\x10\x17\xda\xb3\xc2\x75\xa4\xfa\xda\xb8\x99\x15\x88\x5d\x22\xdc\xaf\x50\xee\x22\x96\x26\x13\xb8\xbd\x42\x19\x8b\xc0\x99\x24\xf8\xfd\x8a\x61\x09\x92\xcb\xb1\x09\x87\x4e\x17\x01\x94\x3d\xc8\x97\x2b\x34\x33\x13\x40\x93\xb2\xfa\xe6\x50\x93\x4a\x34\xcd\x4f\x22\x34\x9a\x66\x85\xeb\x54\x83\x6f\xb8\x4e\x63\xfe\x38\x06\x99\x1c\xda\x9e\x89\xb4\xc9\x57\x91\x5d\xd0\x42\x3d\x34\x88\x45\x5c\xa1\x26\x95\xb8\x9a\x2c\x73\x79\x78\x8e\xc4\xa2\xba\xb6\x40\x0d\x40\x28\xea\xc9\xef\x1d\x8a\x7a\x04\xd9\x64\x20\x34\x97\x41\x36\x2b\x5c\xdf\x6a\x7e\xc3\xf5\x1d\xae\x6f\x19\xc0\x0d\xb3\x59\x81\x55\x2d\xe3\xfa\xbe\x42\xb5\x69\x10\x11\xab\x89\x23\x54\x9b\x12\x67\x73\x5e\xa3\x54\xcd\x19\xe1\xa9\x04\x80\xfe\x0a\x55\xa9\xb1\xad\x1d\xdb\x45\x28\xe1\x85\xf2\x97\xac\xe0\xa1\xfc\x45\x7c\x4c\xbe\xec\x25\x95\x77\xe1\x36\x20\xf9\x76\x7c\xbf\x4f\x3f\xd3\xe0\xe4\x53\x00\xdb\x9e\x5e\x2a\xcd\xb6\x2e\x22\x5b\xf6\xbd\xea\x6b\xd3\x24\x3f\x65\xa8\xb7\xda\x83\xed\x3e\xd0\x39\x34\xb7\x9a\xd9\xed\x6a\x56\xef\xb4\xf3\x2f\xcd\xaa\x30\xb0\x5b\x1d\xc0\x76\xad\x75\xcb\xf0\x9e\xb4\x95\xc0\xbc\xb5\x6f\x25\xb0\x2d\x5b\x65\x33\xc9\xaa\xb8\x72\xd4\x15\x6c\xa5\xb2\xed\x32\x51\x59\x60\xe0\xca\xda\x9e\x37\xda\x64\xb7\x57\x27\xa2\x55\xb2\x6c\xf3\xdb\xab\xd3\x56\xdc\x92\x79\x7a\x7b\xb9\xdf\x5e\x93\xe4\x84\xde\xaa\xea\x36\xda\xb3\xac\x4d\x76\x6b\x44\x26\x8a\x24\x83\x03\xba\x08\x25\x39\x0f\xb2\x93\x28\x79\xab\x50\xdb\x72\xe0\x4a\x92\x4c\x7c\xc9\x79\xb0\x4e\x30\x70\x6e\x17\xdd\xf6\xf0\xf2\x62\xb7\x75\xf8\x20\x90\x24\x83\x22\xba\xb6\x0a\xb5\x2d\xbd\xa6\x7c\xc8\xdb\x55\xb7\x5d\x75\x36\x5f\x85\xda\x76\x39\x49\x8f\x6c\x58\xc9\xda\xae\x13\x9c\xd6\xd7\xf6\x02\xb4\x15\xae\xa4\x32\xde\x6a\x0a\xf6\xf6\x5b\x2e\x4a\x46\x83\xac\x2d\xfd\xe6\x63\x92\x35\x71\xca\x4a\x19\xbc\xf7\xef\x53\x39\x26\x87\x9c\x91\x56\x85\xb8\xaf\xac\x45\x76\x7b\xdd\xdf\x5c\xed\x85\xbb\x5e\xdb\xab\xfd\x76\x6a\x0f\xee\xf1\x5b\x5d\xd9\xf6\xd4\x93\x0e\x78\x3b\xb7\xb7\xf3\x18\xc0\xea\xf5\x2a\x85\x11\x1b\x92\x44\x94\x5e\xaf\x5a\xe8\x17\x35\x58\x96\x9a\x17\x94\xe5\xf3\x60\x71\xa3\xb6\x31\x52\x64\xbd\xce\x6d\xf9\x75\x5f\xe7\xf6\xeb\xdc\x56\x92\x32\x7c\x64\xbd\x0a\x6b\xb2\xea\xbe\x3a\xeb\xbe\x40\x6d\x7b\x41\x7a\x3d\xd0\x5e\x25\x29\xa9\x74\x5f\x25\x29\x62\x3f\x7e\x77\xa6\xd7\x43\xe1\x75\xb6\x8f\x47\x6a\xca\x61\x9a\x25\x70\xc9\x7b\x95\xae\x5e\x45\xa9\x21\x79\xa6\xba\xac\x57\xe6\x46\x19\x27\x95\xa4\x08\x05\xf9\xdd\xad\x0c\x05\x59\x84\x7f\xa4\x22\x37\xec\xab\xa9\x99\x58\x90\xac\x23\xb1\xb1\x20\xeb\x65\x01\x14\xa9\x62\x5f\x17\x00\xc1\x20\x49\x4c\xe5\x45\xcc\xc7\x79\x98\x1d\x23\xf6\x7a\xbb\x20\xde\x23\x13\x0b\xba\x5e\x62\xb1\xd6\x0b\x14\x7b\x72\x6c\xd4\x13\xbc\x7d\xfa\x25\xb9\x75\x73\x03\xfb\x5f\xa3\xa1\xc1\x1f\xeb\xed\x16\xc0\x1e\xf3\xaa\x9f\x26\x20\x24\x89\xaa\xbc\x5e\x97\x13\xe1\x1f\x27\x8d\xec\xd4\x4f\x13\x06\x92\x13\x4b\xe7\xf5\xc0\x7a\x59\x3a\xc9\xc1\xd7\x57\xea\x1d\x36\x0b\xf1\xf0\xd5\x2f\xea\x3d\x2b\x88\x5b\xe4\x3f\x8f\xf3\x57\xf5\xf5\x3b\xcd\xc5\xb9\xe1\x09\x44\x9c\x48\x2a\xf2\xc8\xbe\x3a\xe9\x12\x34\x92\x93\xd3\xca\x8d\xff\xdd\x36\xc7\xc1\x54\x67\xf6\x6e\xd9\x47\x65\x41\xdd\xdd\x34\x98\x2d\x59\xbb\xaf\x0b\xeb\xdd\x96\xe0\xcc\xd5\x8e\xfd\x62\xc7\x2e\xbf\x79\xe5\xd5\xfe\x85\x37\x0a\x3c\xd9\xf5\x7a\xb5\x7f\xb9\xc6\x97\x1f\x23\xaa\xd7\x78\xc2\x44\x52\x71\xc2\x7c\xde\xbc\x89\x0d\x49\xa2\xe3\xae\x4f\x91\x90\xe0\x90\x4c\x10\xea\xfa\x3c\x0b\xbe\xe4\x6b\xb7\x4c\xa3\xbe\x96\x7c\x0d\xaa\x4f\x65\xbd\xcf\xa5\x81\xc0\xf6\xa9\x48\xfe\x8a\x85\x9a\xa6\x84\x45\xe0\x47\x06\x85\x76\x7d\xfa\xc6\xfe\x0d\x02\x61\x69\x7c\x2a\xcc\x88\x02\x49\x05\x70\x9f\xf5\xb9\x5c\x88\xf9\x48\xe2\xb1\xae\x4f\xd7\x8c\x4f\x3e\x51\xe4\xba\x4f\x1d\xda\x07\x6b\x75\xf1\x5a\xfc\x79\x19\xff\x90\x66\x44\x66\x5d\x9f\x0e\x3b\x9f\x0e\xdf\xde\x1f\x3f\x77\x47\xa0\xb2\x93\xe8\x93\xeb\x53\x41\xfa\xa1\xd0\x11\xfe\x71\x7d\x9a\x4b\x89\x7b\xc8\xba\xc5\x7f\x2a\x71\x3e\xa7\x44\xe1\x76\xfb\x29\xd7\x1b\x04\x21\xde\xe3\x32\x08\x62\x19\x04\x51\xbc\x53\x1a\x04\xb1\xbe\x6d\xfc\x04\xbb\xd9\xa7\x1e\xd5\x10\x05\x01\x1b\xc3\x10\x85\xb8\x8a\xdf\x36\x69\x55\x37\x69\x5c\xc7\x04\x93\x0b\x5c\xfd\xcf\xa3\x1b\x19\x61\xda\x30\x8d\x6f\x65\x72\xbb\xea\xef\xdb\xcf\x34\xa8\x4f\xd1\x19\xc6\xe5\x5e\x40\x38\x71\x5c\xe8\x0c\xe3\x6a\x0c\x37\xb4\x24\x17\xca\x87\xb8\x24\xf4\xc4\x9f\x35\xae\x61\xf5\x5c\x82\x00\xc1\xeb\xca\x1f\x97\x1d\x5f\x61\x5e\xb8\xe8\xf8\xd0\xbd\xbf\xc8\x75\x76\x0d\x6b\x87\xd0\x58\xaa\xc4\xab\xd3\xec\xa6\xd9\x99\xd4\x4c\x5a\xb2\xbb\xca\x01\x1b\xa6\x31\x16\x90\x55\xe0\xc4\xff\x27\x2e\x29\x6d\xe1\x84\xb8\x96\xcd\x5a\x12\xc6\x66\xd3\x8a\x69\x8d\xd7\xe8\xa5\x73\x2e\x9e\x87\x05\xd8\x9b\xcb\x02\x96\x05\x40\x2f\xbb\x2c\x00\xa0\x7a\x62\x1b\xe2\x0a\x5b\xea\xd4\x91\x0b\xee\x0a\xab\x1b\xb6\xb4\x48\x2d\x6b\x5f\x42\x26\xc1\x4c\x0c\x5d\xfe\xe3\x72\x86\x55\x90\xde\xaf\x70\x68\x9c\x4e\x72\xaf\xe1\xff\x7f\x1e\x66\x07\xaa\xfb\xb5\xcd\x6e\x9b\x1d\x95\x3b\x53\xeb\x3c\xa0\x2e\x4d\xbe\xf5\x92\xf4\x3a\x0c\x40\xba\xe3\xfe\x7f\x1e\xb0\xa0\xca\xa0\xfb\x5a\xdf\xd7\x02\xe0\x29\xb8\x5e\x47\xc6\xdd\xa4\x3a\x1f\x5e\x2b\xf7\x99\x5d\x95\xdc\xd6\xec\x3e\xb3\x93\xe2\xd6\x76\x39\x85\xab\x34\xad\x1c\xdc\x91\x2e\x3f\x05\x4f\x3e\xa1\x3e\x09\xe3\x0c\x4a\x95\x78\x15\x15\x60\x18\x41\x50\x64\x45\x4b\xc9\x6f\x93\x5d\x2c\x81\x2a\x6a\xc1\x20\x44\x20\x15\x99\xd1\x12\xa7\x74\xa4\x2c\x63\x2e\x9c\xab\xd9\x4f\xb3\xc3\x0f\x35\x94\xf1\x02\x91\x20\x59\x90\xed\xc7\x78\x81\x20\x5e\x20\x83\x70\x13\x09\x3b\x76\x18\x2e\x50\xf0\xcb\x8d\x94\x7f\x05\xd0\xc3\x45\x1a\x5e\x66\x04\x98\x31\x19\x94\xe4\x48\x5c\x44\xc3\x00\x82\x82\xa3\x57\x80\xbf\x7e\x1e\x0c\x97\x1c\xba\x68\x2c\x23\xb9\xa8\x5b\x92\xae\x77\x9b\x26\x5d\x2e\xfc\x05\x84\x13\x9c\x87\x4c\xbe\xcc\xfd\x74\x9b\xdd\x6d\x76\x26\x2d\x93\xa8\x9b\xbc\xb2\xdc\x2a\xc3\x68\x81\xd2\xa4\x13\x46\xa6\x08\xa2\x05\x32\xa1\x22\x61\xb4\x40\x18\x2d\x50\xe4\x47\x33\x5a\x20\x8c\x16\x28\x72\xa3\x19\x2d\x10\x49\x09\x02\x8a\xf8\x48\xcd\xec\x9a\xd9\x99\xd4\x4d\xa2\x6e\xcc\x9b\xe4\xa6\x91\x94\x29\xb8\x1a\x46\xea\x36\xab\x9b\x1b\x53\x33\x75\x27\x44\xb7\x26\x55\xaa\x61\x6b\x02\x44\x6b\x69\x16\xf1\x58\x63\x45\x83\xd6\xda\x3f\x4f\xf3\x48\x8f\x43\x07\x75\x1b\x01\xb3\x41\xb0\xc1\x79\x58\x03\xf9\x80\x87\x95\x1f\xe6\xec\x94\x1c\x7e\x0a\x23\x14\xf1\xb1\x91\xa6\x43\x2c\xdb\x34\x37\xb6\x48\xee\x51\xc6\x1c\x94\xe6\x2c\x9d\x8e\x13\xec\x24\xd9\x49\x3f\xed\x0b\xb7\x32\x02\xa2\x23\x4d\x7b\xd6\x23\x49\x2a\xb4\xe4\xc6\x05\x3a\xfd\x49\xe3\xdb\xe5\x80\x86\xac\xbb\xec\x96\x20\x83\x9d\x07\xc5\x4a\x47\x96\xc2\x3e\x73\x63\xe9\x4e\x19\x37\x16\xc3\x1a\x0a\xd6\xe8\x30\xac\x21\x92\x32\x49\x97\x57\x7a\xdb\x03\x5b\xb2\x62\x3a\x65\x9b\x9d\x32\x89\xb4\x63\xe9\xb5\x7a\xee\x2c\xdd\xc9\xf0\x9a\x9d\xdb\x48\x77\x31\xb8\x8d\x18\xd7\x50\xba\xa4\xd4\xb8\x55\x07\xe1\x0d\x99\x30\xdb\x48\xee\x22\xe9\xb3\xc6\xce\x86\xcf\x7e\x87\x54\x45\xf6\x2a\xa3\x1f\xc2\xe8\x87\x22\x2f\x58\x76\x67\x31\xfa\xa1\xc8\x09\x96\xdd\x59\x08\x55\x48\x85\xc8\xe7\x20\x60\xe1\x3c\xcc\x0e\x36\x5d\x54\x5c\x91\x15\x71\x30\x2a\x47\x46\xc4\x89\x8c\x88\x43\x04\x53\x18\xb7\x10\xd9\xbd\x06\x2b\x78\x64\xd4\xb7\x91\x93\x34\xc9\x5d\xc6\x65\xf6\x82\xcc\xfe\x03\xd8\x74\x18\xde\x10\xe0\xb3\xa5\xc2\x2d\x36\xb2\x3b\x4b\x86\x4c\x8b\x40\xda\xc8\xc5\xd7\x0a\x34\xb9\xf0\x99\x18\x04\x11\xd9\x65\xcf\x85\x35\x32\x92\x50\x64\x25\xa1\x47\xa6\x65\x24\xa1\xc8\x48\x42\x48\x29\x91\x15\x03\xb2\xeb\xfe\x91\x54\xb9\x9a\x9d\x8b\x5c\x86\x2d\xe3\x27\xc2\x58\x89\x22\xb7\xa1\xb1\x12\x01\x58\x5c\x2a\x52\x63\x89\x13\x17\x19\x55\x6d\x91\xfe\x2a\x37\x7b\x13\xb6\x18\xa4\x9e\x10\x3b\x2e\xb2\xab\xfc\x91\xd4\xd8\x55\x6e\x4c\x45\x91\x09\x2b\xbb\xca\x0d\xa0\x28\x32\x62\xe5\x6e\x76\xdc\x13\x8a\x35\x79\x6c\xc5\x63\x8d\x59\xf8\x44\x4e\x9c\x07\x5d\xc7\x44\x34\x7e\x22\x8c\x9f\x28\x4f\x93\xdf\xd9\x52\x95\x34\xa4\xbb\xca\x4a\x1a\x06\x46\x14\x8c\x61\x91\x87\x35\x9e\xd6\xce\x81\x05\xeb\x2c\xf2\x0f\xeb\x8c\xd7\x5c\xd9\xd9\x95\xfd\x3c\xb2\x43\x9b\x9d\xcb\x58\x86\xab\xac\x44\x42\x84\x44\x2e\xc5\xdc\x2c\x61\x59\x82\xfc\xdb\xcb\x12\x96\x25\x30\x3a\xcb\x46\x28\x1c\x3e\x4e\xce\x6d\x6e\x1c\xe7\xc5\x9e\xf3\x38\xcf\x2e\xc4\x21\xaf\xb5\x0b\x31\x7b\x39\x90\x63\x29\x73\x39\x08\x02\x1f\x72\xb1\x83\x5d\x9b\x46\x3c\x14\x29\x97\x8c\x78\x88\x2c\x21\x33\x47\x06\xa1\x0e\xe7\x61\xac\xa2\x54\xd6\x9f\x9d\x0e\x71\x7d\x91\x64\xfb\xf3\x4b\xc8\xe4\x4a\x95\x99\xda\x05\xe1\xd2\x94\x41\xa9\xb8\x34\x0d\x65\x28\x98\x16\xa2\x70\xd3\x08\x22\x1a\x32\xf0\x6a\x51\xb8\x69\x44\x71\xb5\x4a\x81\x54\x5c\xad\x85\xd5\x5a\x9a\x5f\xd2\xfa\x92\x6c\x29\xd2\x87\x11\x0f\x41\xc4\x43\x06\x2a\x29\x8c\x78\x88\xe2\xa2\x96\x1f\xa9\xa0\xa4\x0e\xa3\x20\xca\x90\x19\xdb\x15\x5c\xb2\x10\x91\xec\xeb\x05\x8d\x74\x40\xf0\x90\xc1\x54\x8a\xa2\x68\x50\x5c\xc1\x43\x5e\x6c\x57\x70\x71\x05\xff\xbe\xb4\x0d\xf7\xed\x6b\xb4\xeb\xf6\x53\x44\xea\x5b\xd6\xc8\xa2\x48\x5d\x38\x1d\xb1\xbf\x44\xf1\x74\x2c\x2c\xaf\x5b\x02\x1f\x62\x22\xce\xe3\x93\x99\x1b\x06\xee\x6e\x5b\xbb\xd9\xdd\x52\x77\x9b\x5d\x37\x3b\x2a\xdc\xcd\xae\x9b\x9d\x9d\xee\xf2\x2a\x2e\x2f\x38\x9c\x4a\xb7\x37\xb9\x72\xdf\x10\xf6\x04\x31\x11\xe7\x61\x09\x0e\xce\x63\xd7\x3d\x66\xd7\xe4\x02\xb7\x76\xcb\xda\xd9\xc5\xe1\x58\x23\xa4\xde\x89\x33\xa7\x28\xa4\x16\x84\x54\x99\x99\xca\xb6\x76\xcc\xf4\x1b\xc7\xdf\x28\xdb\xec\xb8\x06\xdd\xe7\xa6\xf9\xcf\xe3\x9c\xb0\x84\x3f\x51\x64\x59\xe7\x08\x29\x4e\x7a\x03\x11\x6e\x6e\xd3\x51\x5e\x2b\x00\x35\x5e\xe1\x08\x29\xaf\x15\x78\x8d\x5a\xbd\xfd\xd4\xbe\xf8\x0c\x51\x45\xee\x28\x9e\x48\x05\xb9\x96\x48\xc3\x28\x9f\xe3\xf9\x59\x82\xf3\xf4\xb3\x7b\x98\xf6\x22\x21\x87\x61\x0d\x71\x5f\xbe\xd7\x64\x37\x1f\xa6\xf9\x1e\xa2\x80\xa1\x0e\x71\x67\x8b\x85\xdc\xf0\x46\x8b\x1a\x37\x62\xe7\xed\x15\xe3\x46\x8b\x1a\xb7\xa4\xcd\x58\x72\xe3\xf6\xc4\x30\x86\xe1\x56\xda\x37\x86\x21\xee\xe2\xb7\x32\x9a\xe3\xbc\x12\xb7\xa4\xde\x97\x49\xb4\xf6\xe6\x64\xb9\xf1\x5b\x8e\xdb\x93\xe5\x6e\x66\xc7\xb6\x7f\x2b\xdb\xdd\xc8\x76\x32\x60\x19\xaf\x10\xb7\x33\x1a\xc0\x92\xb8\xdb\xef\x53\x4b\xb5\x07\x9c\xbe\xa0\x6c\xa6\x1b\xbe\x8c\x10\x66\x33\x6e\x34\x46\xb7\x15\xee\x66\x07\x54\xd8\xad\x68\x75\x3b\x7d\x0d\x7f\xb8\x31\xe5\x86\xe1\x0f\x71\x0f\xb3\x63\x71\xdd\xde\x26\xef\x61\xb1\xd2\xc6\x0f\x8b\x45\xc9\x79\x7b\xb4\xde\xcb\xea\x71\xb3\xbb\xe5\xfc\xbf\x97\xef\xa1\xa9\xbc\xbd\x63\xdf\xce\x8b\x5b\xf2\xed\x62\x19\x0a\x2a\x37\x82\x0a\x08\xbe\x61\x14\x40\xdc\x4e\x15\x69\xef\xef\xcf\xaa\x38\x2f\x24\x1a\xbb\xdd\x21\x6f\x6c\x71\xb7\xcc\xf7\x46\x06\x44\x85\xfa\x0f\x50\xb2\xa8\xe8\x62\xa2\x5e\xd6\x4e\xbe\x71\x5c\xf8\xa2\x3a\x55\x6e\x5a\x51\x9d\x2a\x06\x15\xdc\xb7\x74\xe0\x28\x2a\x83\x00\x81\x74\xdb\xa3\x86\x06\x04\xae\xff\x27\x8d\xf7\xdc\xad\x00\x15\xcd\x84\x25\x47\x75\xb7\xaa\xce\xb2\x1f\x9b\x7c\xfe\x7d\x6a\xb1\x92\x9a\x3b\xcb\x74\xfa\xbf\xff\x32\xca\x9b\x5d\x31\x3b\x5a\xe1\x8c\xc2\xcf\x3f\xdd\x78\x33\x07\xd4\x1f\xe7\xc1\x70\xb3\xa9\xe9\xf4\x1f\xd5\x89\x87\x37\x73\x54\x6f\x32\x04\x02\xe4\x1f\x01\xfd\x1d\x26\xc1\xb4\x2e\x3d\x3a\xda\xd1\xa8\x52\x87\xdf\x32\xa3\xe3\x7b\x11\xb8\xfe\x67\xa2\x88\xa3\x02\x94\x13\x15\xbd\xff\x5f\xd2\x7a\x5b\x5a\x65\xb8\x47\x62\xac\x5e\x64\x6a\xa5\x00\x0e\x34\xe8\x45\xce\x43\x4c\x61\x1a\xd5\x1c\x1a\x97\x04\xc1\xbc\x01\xf3\xc8\x79\xd8\x02\xe6\x75\x75\xfe\x57\xb7\xea\x1b\xda\xbd\xda\xcd\xae\x9b\x1d\x8d\x77\xf7\xae\x4e\x7f\xb6\xd1\xea\xf4\xaf\xee\xd4\x3f\x0e\x7b\x77\xea\xca\x4e\x8d\x25\x3a\xaa\x3b\x75\x75\x45\x00\xa4\x1b\xd5\x15\x51\xdd\xbd\xe5\x45\xad\xee\xde\xf2\x98\xdc\x58\x9d\xa3\x2a\x30\x55\x77\x6f\x1c\xc3\xa3\x7a\x15\xaa\x8f\x45\x90\x9d\xea\x9a\x6a\xa8\x35\xd8\xb9\x51\xbd\x0a\x55\xd8\xfa\x80\x60\x8f\xaa\x0c\x55\x5d\x73\xd8\xa6\xa3\xba\xe6\x0c\xa0\xb8\x7f\x9c\xf7\xd3\xda\x49\x92\xfe\xa3\xbb\xf7\xde\x43\x98\x43\x12\x02\x3b\xaa\x92\x10\x31\x0f\xf9\xd7\xb0\x65\x9f\xb8\x84\x6b\xf6\x35\x1b\xb1\x18\x56\xdb\x4a\x18\x44\x10\xfa\x90\x25\x79\xad\xea\x66\x0c\x79\xb8\x2b\x32\x64\x0d\x0b\x80\x8a\x17\x9b\x7b\x88\x5c\x1b\x22\xd7\xfe\x9a\xb0\x6d\xfd\xf6\x4b\x57\x88\x57\x23\x43\x1e\x6e\x55\x38\x86\x3c\x44\x45\xfc\xba\x89\xe0\x8c\xfa\x9a\xdd\x0b\x2d\x3d\xdb\x75\x55\x9b\x62\x64\xc4\x8d\xe1\x3c\x20\x72\x39\x8f\x97\xd7\xe8\xcc\xcf\x4e\x72\x27\x91\xf6\xbe\x7a\xc2\xc0\xee\x92\x01\x9f\x8b\xaa\xf4\x05\x96\xe9\x79\x8d\x42\xbd\x19\x11\x67\x91\xab\x44\xfa\xee\x2d\x8d\xbd\x45\x05\x59\x73\x6f\x81\x05\x26\xdd\x18\xc4\xa3\x79\x31\x6a\x72\xc5\xb3\x3d\x34\x4f\xa6\xe6\x16\x84\x77\x7e\x34\xb7\x20\x83\x36\xee\x1f\x17\xbe\x5b\x90\xd1\x18\xf7\x8f\x06\xdf\xcb\x12\x41\x19\xd9\x2e\x6f\xe8\x83\x03\x5a\x99\x5c\xf3\xbf\x23\xd5\xa2\xb9\x67\x35\x8f\x41\xd5\x40\x4d\x41\xac\x21\x88\x11\x65\x1b\x46\x79\x44\x73\x6b\xfb\xf1\xe2\x67\xeb\xee\x3e\x86\x3f\x7f\x34\x95\x34\x0d\x46\x5b\xf5\x71\xcd\x6d\xac\xc9\x5f\x5f\xe5\xe3\x2f\xc5\x34\x4a\xe0\x08\x68\x9e\x95\xad\xd8\x6a\xa4\x70\x28\x6e\xce\x83\x7e\xe5\x4e\xd3\x6e\xfb\xd5\xdd\x4e\x92\x7d\xd8\x6f\xce\xa3\x0b\x06\xc0\x90\x78\xa6\x36\x6e\x6b\x77\x63\xd0\x9b\xb7\x35\xe8\x6e\x72\xbd\x4d\xb2\x22\xec\x63\x44\xde\x46\x53\x23\xd3\xd0\xbe\xdc\xaa\x81\x60\xc2\x39\x0f\x18\xff\xe1\x60\x6c\x78\x03\x44\xab\x16\xc0\x3d\xaf\x79\x7f\x6b\x9e\xc6\xb2\xe0\x37\x4f\xe3\x06\xdd\xd5\xad\x32\xa7\x75\x1b\xa1\x30\xa9\x32\xa7\x29\x4c\x36\x84\x49\x7c\x2f\xa2\x79\x1a\x37\xb7\xa8\x66\xfb\xbb\xd9\xb9\x1f\xa9\xcd\x69\xee\x47\x4d\xc9\x11\xbf\xfe\x68\xee\x3d\xed\x31\x3b\x6a\xfc\x58\x63\x0f\x72\x95\x39\xf0\xea\x9c\x07\xed\x77\xfa\x0d\xdb\x3f\xcc\xcd\x99\xeb\xde\x63\x00\xce\x2d\x49\x7e\x73\xef\x31\xb2\xe6\xc6\x5e\x1f\xcd\xfb\x1b\x01\x36\x99\x80\x91\x68\x6e\x3d\x6d\x5a\x61\xb6\x32\x42\x6a\xce\x83\x81\x80\x17\xdd\xc0\x9a\x68\xee\x50\x04\x59\x47\x5b\x8e\xab\xdb\x91\x7c\xf7\xcd\xed\x08\x56\x9e\x5c\x7f\xb9\x39\xe9\x15\x88\x1b\x92\x6e\x0b\x4b\x08\x4b\xa0\x22\xea\x85\x5b\xd8\x06\xb6\x59\x78\x7b\xce\x83\x71\x65\x73\x6b\x61\x2f\x49\xe2\x2f\x87\x7d\x53\x07\x6c\xd4\xcf\xdd\xd9\x68\x8c\xfa\x89\xa6\x2c\xdd\x11\xee\x9a\xb7\xc6\xb6\xcd\x8e\x8a\x78\x6b\x6c\x6e\x5b\x9d\x9d\xb7\xb9\x6d\x35\xb7\x2d\x36\xc6\xf6\xda\x7c\xe5\x67\x15\x49\x22\xf7\x06\xc8\xbd\x99\xd0\x98\x68\xca\x49\xcd\xdd\x4d\x3d\x52\x53\x2f\x6c\xf8\xd1\x2d\xdb\xbd\xe1\x47\x61\xa8\xd1\x2d\x87\x7d\x73\x2f\x23\xe2\x28\x83\x40\x1d\x4d\x5d\x71\xfb\x7e\x68\x12\x7e\x6a\x85\x95\xa9\x65\xb7\x36\x22\x29\xfa\x65\xfb\x11\x3b\x88\x45\x3a\x0f\x86\x9a\xad\xdc\x88\xa4\xe8\x8a\xde\xf2\xd7\x77\x37\xb8\xee\x06\xd7\x91\x31\xba\x1b\x5c\x57\x9e\xea\x2c\xc4\x9e\xcc\x8e\xbb\xa4\x0a\xdf\xae\xe6\x07\xf0\xe7\x74\x4b\x50\x0f\x67\xd1\x79\x24\x5e\xe3\xcb\x9c\x4d\x32\x37\xa6\x7a\x57\x90\x37\x36\xea\x56\x05\xd5\xdd\xae\xba\x22\x96\x74\xf4\x44\x3b\x9d\x87\xd9\x3d\x24\x3d\x26\x59\xe1\xee\x6b\x61\xda\x19\xd7\x86\x68\xdf\x95\xba\xba\xdb\x95\x2a\xa8\xae\xb2\xd8\x40\xa8\x5b\x7d\x93\x81\x50\x41\xec\xd3\x49\xe3\x5b\x65\x2c\x62\x9f\xb2\x3b\x47\xaf\x7e\x0a\x17\x3f\xd1\x45\xd1\x55\x10\x75\xf7\x21\xf0\xf6\xa2\x2b\x3c\x19\x07\x75\x13\x39\x11\xc6\x41\x85\x31\x4f\x37\x34\x28\x61\xcc\x53\x74\xf8\xd9\x6e\x39\xe3\xbb\x4a\xa3\xee\xb5\x00\xb2\xb4\xe8\x5e\x0b\x3a\x72\x51\x73\xac\x95\x8b\xba\x7b\x93\xec\xf1\x5d\x35\xb0\xc1\x4f\xb7\xec\xe2\x06\x3f\x05\x01\x4f\x19\x72\x91\x20\xea\xe9\x4f\x74\x9c\x59\xef\x07\x91\x9d\xa8\xa7\xf3\xb0\x04\x93\xba\x49\x67\x09\xbb\x83\x11\x07\x75\x1e\xc0\xb9\xc8\x2e\xdf\x35\x6c\x75\x0c\x5b\xb8\x2a\x45\x57\x52\xea\xee\x60\x38\x7e\x84\xb1\x4f\xd1\x91\x94\x08\x79\x0d\x82\x9e\xce\x83\x5e\x92\x49\xbe\x6b\xd7\x22\xdc\x29\xbb\xf7\xf5\x69\xd5\x66\x23\x89\x16\x4c\xab\x36\x6d\x28\x17\xe4\xae\x62\x89\xd0\xa7\xec\x76\x68\xe8\x53\x74\xf7\x34\xfc\x3e\xa2\xab\x32\x36\x1c\xea\x56\xb1\xd6\xdd\xc0\xba\xd7\x9f\x07\x99\xbb\x6b\xd8\xea\xcb\xec\xa8\x88\xc2\x53\x67\xb3\x02\x0f\x23\xba\x86\xad\x1e\x8e\x42\xfd\xbf\x50\xb2\x77\x6d\x5c\x1d\x1b\x17\xd1\xaf\x61\x4c\x55\x74\xb7\x3c\x9c\xdc\xa3\xbb\x97\x75\x65\x2b\xd5\x73\x5d\xd9\xaa\x13\x52\x72\xab\x9e\xeb\x6e\x5c\xfd\xb5\x3d\x6c\xa1\x5d\x3d\x56\x77\x97\x7a\x9c\xcc\xea\x98\x8d\xdb\xba\x25\x92\xef\x6e\x49\xdd\x3d\x44\xae\x78\x23\xad\x82\x48\x2b\xdd\xb1\xc2\x48\xab\x78\xdc\x56\xe4\x72\x7f\x94\x91\x1e\xf7\x10\x79\xdc\x89\xb1\x3a\x8f\xcf\xb4\xd3\x67\x4f\x32\xbb\x44\x76\x8f\x49\x7e\x9a\x18\x4f\xb6\x55\xa2\xae\xce\x83\xca\x49\xcd\xfe\x68\xa8\x7a\xb0\x99\x6b\x02\x30\xf8\x2a\x1e\x77\x9a\x81\xf1\xea\x51\x79\x6c\x40\xd6\x3d\x98\x6b\x8f\xdb\x8a\x91\x56\xb7\xea\xbe\x47\x89\x87\x80\xab\x0c\x52\x6a\x3c\xda\xa0\x1e\x2f\x6e\x12\xa6\x13\x62\x75\x1e\x7e\x8a\xa4\xf1\x68\x70\x32\xd4\xea\x1e\x88\x15\x86\x5a\xc5\xa3\x2c\x23\x9b\xf9\xe3\x35\xed\xc1\xe0\xe4\xe9\xf3\xe0\xa0\x15\xcf\x6d\x76\xd5\x4f\xad\x09\xdb\x0a\x21\xac\xf1\x68\x84\x7a\xaa\x8d\x60\x1f\x7c\x54\x46\x3f\x5e\x99\xc0\x59\x8c\xc7\x2b\xd3\xc3\x95\xa9\xa3\x2b\x33\xaa\x2a\x1e\xb7\x0b\x22\x65\xe2\x51\x79\x6c\xa4\xd5\x3d\xd8\xf4\x09\xb1\x3a\x8f\x0f\x58\x19\x6b\xf7\x98\x1d\x3e\x5b\x9e\x79\x8f\xf7\xa3\x07\xbe\x72\xc2\xf6\xe2\x51\x44\x79\x70\x8a\xac\x38\x7e\xc6\xe3\x46\xf0\x70\x3d\xea\x6c\x34\x86\x68\xc5\xc3\xa2\xaf\x97\xb9\xa9\x7f\x78\xc0\x57\xa8\xb2\x85\x3f\x9a\x85\x0c\xe5\xaa\x12\x82\x1b\xca\x15\x40\xf7\xa7\x7a\xb1\x13\x3c\x2e\xc0\x87\x05\x08\xf1\x4a\x3c\x9a\x76\x9e\xb0\x08\x6e\xb8\x8f\xa6\x9d\x27\xcc\x0e\x6d\xcb\xa3\x69\xc7\xb0\xad\x0a\x8d\x4e\x18\xb6\x15\x86\x68\x55\xdc\xe7\xe2\xc1\x8f\x2b\x88\xd4\xd2\x69\x2f\x1e\x55\x6f\xcf\xb6\x9b\xd0\xac\x3c\xca\x01\x0f\x72\x80\x27\xad\x81\x5c\xf1\xbc\xe6\xc6\xb1\xf2\xb8\xea\x20\x05\x48\xf5\xe2\x58\x79\xbc\xab\x3c\xa2\xde\x5c\x8e\x84\x17\x93\x07\x93\x8d\x06\x20\x23\xb4\xc2\x08\xad\x0a\x4b\x75\x0c\xf5\xc2\x46\x68\x55\x70\x13\x63\x78\x98\xc3\x38\x97\xb5\x13\xc1\x38\x77\x1e\xcb\xd7\x3a\x69\x61\x1a\x25\xb0\xed\x0d\xad\x38\xc6\x76\x55\x7c\x5c\xc2\xd8\xae\x18\xd9\x4f\x91\x48\x86\x0a\x8e\x51\x2c\x95\x83\x60\xa8\x32\x1b\xb7\xb5\x63\x4d\x0c\x65\x74\x38\xe5\x32\x81\xa6\x61\x7c\x56\x8c\xea\xa7\xec\x4e\xc3\x49\x6c\xcc\x56\x05\x88\x3c\x86\x07\xa6\xc1\x58\x15\x0a\xe3\x18\xaa\x16\x88\xc9\xd2\x05\x32\x86\x9a\x35\x18\xdc\x52\xd5\xc5\x61\x28\xa4\xc3\xd2\x96\xaa\x5e\x09\x43\xeb\x89\x01\x5a\x72\x48\xc4\x70\x01\x18\x79\x55\x55\x10\x1a\x79\x15\x03\xe9\xbb\xaa\x20\x1c\x4e\x6d\xa2\xad\xb2\xe2\xc7\xd0\x54\x42\xb4\x55\xaa\x80\x18\x84\x61\x56\x41\x68\x55\xaa\x2a\x03\x87\xe6\x93\x31\xcc\x0e\xd1\x0d\x26\xb6\xf3\x30\x3b\x1a\xab\xf5\x04\x5e\xb3\x54\x33\x33\x7b\x28\xf4\x0e\xce\x91\xce\x09\x60\xfc\x54\x0c\x67\x36\xfe\x36\x31\x9c\xd9\xd0\x9d\x9d\x34\x6a\x12\x8e\xf6\x39\x43\x32\x11\xa9\x41\x30\xd5\x79\x58\x02\x52\xfa\xf0\xfe\x3e\xb8\xbf\x77\x7b\x5d\x39\x78\x6c\xa6\x8e\x9d\xae\x15\x93\xd0\xa9\xf3\xa5\x69\x0e\xce\x59\x06\x3a\x94\xc6\x50\x5a\x26\x9c\x4a\x7f\xd2\x18\x1e\x3a\xc3\x55\x02\xa0\x70\x0c\xa7\xff\x10\x41\x0a\x9a\xdb\x18\x8a\xc6\x06\x4d\xd5\xcc\x5e\x3f\xbc\xe5\x13\x3b\x95\x81\x02\x8a\x01\xcc\x7d\x0c\x54\x88\x9d\x9b\xe7\x50\x85\x48\xe8\x54\xaa\x70\xe0\xc6\x50\x32\x1e\x48\xc6\xc4\x94\xc6\x50\x32\x1e\xae\x2f\xd8\x6e\x63\x68\x64\x31\xb6\xaa\x02\xe8\x1b\xd3\xc5\x64\x20\x55\x05\x4c\x31\xa6\x46\x16\xe2\xa9\xb2\xf2\xd8\xf4\x04\x9b\x2e\x9c\xf1\x6f\x7f\xf6\x90\xa3\x23\x26\x32\x72\x2d\xa8\x19\xa6\x07\xdc\x74\xad\x41\xd9\x12\xd3\xb5\x36\x89\x5a\xa9\x00\xe9\xc6\x54\xc1\x38\x39\x1c\xaa\xb6\xb0\xe9\xe1\x40\x68\x95\x9e\xb5\x31\x3d\x1c\xa6\xcb\x8f\xa8\x95\x98\xca\xa1\xd3\xb5\xa6\x89\x64\xba\xd6\x0c\xa0\xaa\xb0\xa2\xc6\xf4\x42\x4c\x1c\x55\x7e\xd0\x95\x4c\xf0\x3d\x62\xb2\xd4\x34\x8f\x4e\xb5\x78\x84\x51\xa5\x4a\x88\x4a\x4c\x45\xd3\xd9\xc3\x34\x3e\x55\xc9\x46\xe0\x53\xaa\xb7\xd9\x79\x60\x4c\xd7\xc1\x8d\x52\x65\x7a\x0d\x9d\x6e\xe7\xd0\x70\xc6\x74\x3b\x9f\x6c\xe7\x9a\x5b\x0d\x52\x8a\xe9\xda\x50\xc9\x36\xb5\x90\x18\xb8\x54\x89\x28\x09\x03\x97\x62\xba\x9d\xab\x65\x9b\xde\x08\x27\x37\xc2\x07\x8f\xa5\xe9\x6e\x6e\x2c\x53\x55\xb5\x67\x2c\x53\x10\xcb\x94\xe1\xad\x0a\x63\x99\x62\x3a\x77\x21\x70\x8b\xa9\x7d\x70\x3a\x4f\x89\x31\x89\xa9\x70\x34\x51\x3d\xd5\xea\x50\xa8\xc4\x36\xe6\xa9\x42\xec\x16\x4b\x81\x69\x39\xb5\xd4\xef\x2c\x6f\x53\xeb\xf2\x3d\x04\x90\xa5\x6a\x68\x39\x53\x2a\x32\xeb\x72\xa6\x18\x07\x55\xeb\xed\x7b\x7e\x9b\xfc\x96\x5b\xd7\xf2\x3a\x45\xe8\x53\x26\x2e\x35\x96\xd7\xa9\x05\xf5\x7d\x85\x9f\x20\xd6\xfd\x4b\x33\x3b\x96\xea\x52\x28\x59\x08\x25\x78\x48\x87\x81\x4b\xb1\x9c\x77\x10\x20\xc6\xc2\x6b\x3c\x96\x93\x4c\xed\x8f\x91\x4b\x61\x94\x52\xf5\x2a\xba\xaa\xd9\xa1\x3d\x56\xa2\x5e\x6a\x8f\x97\x70\x67\xde\x09\x97\x5a\x97\x85\x5e\xb8\xc2\x9f\x18\x4b\xbd\xf0\x42\x2a\xa9\x80\x3e\xc4\x52\x9b\xb2\xba\xd9\x75\x92\xcc\x0e\x1d\x46\x05\x13\x2f\x96\x3a\x8c\xb5\xfc\x14\x01\x79\x69\xb3\x58\x1e\xe8\x0a\x88\xcb\x4d\x6e\x79\x2c\x2b\x97\xac\xf7\x97\xc6\xbe\xd4\x1d\x0b\xef\xe7\xcb\x71\xd4\x31\x43\x6a\x9d\x08\x0f\x52\xdd\x26\xc2\x83\x94\x88\x9f\x4c\xa4\x6b\x84\x0b\x3e\x1c\x5a\x00\xd4\x22\x1c\x5a\xa3\x80\xaa\x2e\x12\xe1\xd0\x12\xe5\x73\xd2\x0a\x69\x66\x97\xcc\x6e\x90\x64\x76\x99\x61\x74\xc3\x95\x4c\x27\xe2\x8c\xb0\x5e\xe8\x11\xba\x63\x45\xb6\x11\xac\xd0\x00\xba\x28\x02\x93\xc5\xd3\x4c\x9a\x26\x59\x28\xfb\x6d\xa8\xd7\x33\xbc\xa7\x7a\x3f\x95\x4f\x27\x88\xf2\xc9\x44\xc4\x07\x44\x3a\xe7\x71\xee\x89\x20\x8f\x05\xd1\x3f\x7f\x82\x20\x9f\xf3\x25\xaf\x69\xb1\x30\xe2\x07\xba\xa8\x30\xa4\x27\xc2\x59\xe7\x25\x36\x54\xeb\x19\xd2\x53\xbd\xc4\x86\x53\x2c\xdc\xb3\xdc\x8c\x42\x4f\x2b\x08\x78\x32\x9c\x4d\x11\xda\x27\xc2\x19\xc6\xd1\x12\xce\xb0\x50\x62\x00\x11\x20\xc2\xeb\x74\x38\xc3\xf4\xcb\x08\xf7\xac\x50\x3c\xf0\xde\x19\x8a\x07\xd1\x6f\x51\xdb\xa8\xb1\x77\xe7\x70\xcf\x72\x51\x84\x67\x37\x31\x3b\x99\x08\xfe\x20\x70\xe7\x3c\x6c\x84\x43\xe8\x4c\x34\x80\xa7\xfe\x3a\x40\x4d\x7e\x28\xd1\x12\xf3\x1b\x92\xdf\x04\xd1\x38\x19\x04\xf9\x88\x69\x0f\x73\x41\x25\x5c\x36\xc2\x0b\x2a\xc1\x38\xa9\x7a\x29\x0b\xf5\xfd\x46\xe6\x3c\x76\xba\xfa\xfe\x70\xfa\x3f\x1c\x86\xe1\xf4\x37\x5a\xa7\xfe\x4a\xd0\x64\x67\x18\x4e\x25\xe0\x20\x42\xed\x3e\xd1\x38\x99\x70\xd9\x08\xaf\x9b\xa1\xc4\x30\x1c\x1c\xaf\x9b\xe1\x6a\x22\x06\x21\xc2\xd5\x14\xef\x2f\x8d\xb6\xbe\xbf\x34\x8a\x1d\xa8\xa2\x24\xae\x89\x10\x14\x72\x20\xd1\x86\x9a\x2d\xe3\x6b\xaa\x77\xab\xed\x3d\x72\xbb\x53\x0e\x56\xd8\xf6\x10\xde\x1c\xc2\x83\xfb\x86\xf1\x35\xb1\x5d\x88\x83\xc5\xbe\x55\x45\x19\x73\x53\xf5\x57\x30\xe6\x26\xb6\x9b\xa7\x17\xa4\xad\xae\x1d\x32\x9a\x4c\x60\x6d\x6c\x57\x98\x61\x38\x75\xf4\xff\x8b\x2b\xba\x51\x3a\xb1\xb3\x39\xb3\x8f\x6e\xd5\x52\x46\xee\xd4\x81\x78\x63\xe4\x4e\x6c\x88\x2f\x2a\xa1\x7e\xb1\xf5\x58\xdc\x9c\xc2\xcd\x7b\xd6\x56\x1d\xb4\x99\xbf\x0d\x08\xb8\xd8\xce\x5f\x63\x6d\x1a\xe1\xfc\x61\xac\x4d\x40\x13\x93\xda\x65\xa7\xa9\x0e\x82\x27\x26\x7b\xbd\xdd\x5e\xf9\xa0\x75\x39\xaf\x0d\xd2\xac\xde\x63\x1a\x5b\xd5\xd6\x2b\x61\x0f\x8b\x60\x5b\xda\x2a\x92\x37\x8a\xe4\x61\x4d\xd4\xcc\xec\xe1\xa7\xac\x38\x83\x68\x02\xb6\x96\x93\xc6\xb8\x38\xf5\x8d\xa2\x69\x90\x8f\xc5\x56\x91\x4c\x30\x4d\x1e\x9c\x69\x5b\x45\xb2\x81\x35\x0d\xbf\xfe\x30\xb0\x26\xa0\x62\x49\xb2\xae\x85\x5c\x2c\xb1\x39\xd5\x9b\xb7\x8f\xed\x25\x0d\x32\x96\x93\x46\xa7\x38\x33\x37\xca\x8c\x06\x7e\x5a\x6c\x95\x19\xfb\xf5\x5b\x54\x8e\xdb\x59\x68\x14\x4d\x4b\xce\x2e\x67\xa1\x11\x33\x4d\xc7\x03\xe9\x57\x82\xc0\x99\xec\x65\x7e\x7b\xfd\x32\x88\xa6\xe1\xb2\x1e\x92\xad\xc4\x7b\x59\x65\x3a\xef\x55\xe9\x01\xdb\xca\x49\xbb\x49\x1b\xa6\x59\x15\xf4\x2f\xaf\xb3\xd5\x88\x99\xa6\x4f\xb8\x11\x33\xf1\x12\x15\xda\x60\x05\x8e\x57\xcd\xe9\x9b\x2c\x97\xad\xd9\x90\x99\x78\x39\xea\x07\xde\x25\xaf\x47\xfd\x9b\xcd\x8e\x65\xfd\x3a\x45\xdf\x6c\x55\xd8\x26\x5e\xa7\x28\x9c\x2e\xa9\x65\x6e\x91\x92\xba\x04\xa4\x2e\xd9\xb5\x04\x75\xcb\x9f\x80\x30\x25\xb5\x8c\x04\xf8\x7a\xac\x13\x39\x93\x75\xfd\x79\xdd\x74\x5f\x27\xb2\xfe\xb3\xaf\x13\xf9\x85\x8a\xb7\xe9\x40\x2b\xa5\x4a\x18\x46\xa3\x87\x90\x61\x34\x61\xc8\x4c\xcb\xb7\x69\x96\x80\x4f\xcf\x40\x60\x7d\xf5\x85\x23\x4a\x26\x35\x1d\x25\x5e\x35\x9d\x86\xcc\xe8\x48\x64\xc8\x4c\xbc\x4e\x77\xdd\x52\x5f\xa7\x3b\x91\x33\x27\x8d\xca\x79\xc1\x33\x3e\xa6\x79\x5f\x92\x31\x25\x08\x93\xc9\xc3\x81\xf0\x82\x47\x48\x4c\x6a\xd9\x01\x53\x87\x69\x7c\x0c\xa8\x24\x61\x7c\x4c\xbc\x2e\x1e\x7d\x3c\x5f\xd5\x19\xc6\xcc\x34\xaf\x38\xaf\x2b\xe5\x1d\x66\xc7\x1e\xf0\xaa\xc4\x7c\xa7\xd9\x99\x54\x4c\xa2\x22\x1c\x2f\xaf\x1e\x73\xaf\x30\x78\x99\x03\xe1\x55\x89\xf9\x72\x46\x10\x14\x1c\xaf\x67\xc4\x7b\x2e\x8d\xa9\xe9\x31\xf9\x7a\x5d\x24\xbe\x25\x35\x62\x27\xe2\xd5\x65\xdd\x60\x17\x75\x3e\x06\xbb\xc4\xeb\xd2\xd1\x05\x4d\x7e\x95\x80\x5f\xe5\xa4\xd1\x7c\x7d\xdc\xde\x73\x33\xcb\xc3\xb9\xe4\x6a\x82\x73\xe5\xbc\x46\x9a\xde\x3e\x70\xaf\x14\xf8\xd2\x03\x02\x96\xf3\x18\x24\x51\x5f\xaf\x64\x46\xd3\x34\xfd\xc3\x64\x5d\x89\x0f\x96\x7d\xc2\xaa\xc2\x00\x9b\xf8\x5c\x5f\x70\x1b\xc4\xe7\xfa\x32\xe8\xa6\x79\x83\x91\x8a\x25\xe0\x5d\x39\x69\xa7\x33\x3f\x95\x8a\xf0\xaf\x14\x35\x4d\x9f\x0e\x6d\x04\xda\xa4\x06\x45\x41\x7c\xda\x4c\x3f\x97\x17\x1c\x05\xf1\x29\x5b\x7d\xae\xa5\x42\x37\x7d\xae\x25\x78\x5c\x4e\xda\x20\x2d\x4c\xdb\x14\x41\x76\x7a\xb1\x7f\xc5\x52\x79\x4b\x0d\xe2\x87\x6c\xd5\xf4\x38\xf9\xd4\x20\x7e\x88\x39\xed\xe6\x48\xfb\x14\x73\xbe\x4a\xcf\x65\x93\xac\xb0\xab\xf0\x66\xaf\xff\xea\xef\xd3\x65\x5a\x26\xcd\x46\x78\x4e\xc0\x86\x17\x92\xb2\x04\xa4\x2c\x05\xe2\xe8\xf8\xf4\x8f\xfb\x10\x7d\xda\x8d\x06\xe5\x53\x5b\xf8\x75\x2a\x8c\xe0\xfb\x79\x74\x7c\x2e\x39\xfd\x35\x3e\x95\x25\x9f\xeb\x4b\x7f\x8d\xcf\xf5\x05\xa1\xcb\x49\xa3\x54\xcd\x97\x1f\x4e\xe6\xed\x66\x09\x7f\x3a\x99\x7f\x8f\x35\x66\xbd\x7e\x6a\x4b\xbe\xc9\x84\xbd\x39\x3d\x3f\x95\x7e\x1f\x22\x52\xd3\xd9\xe1\x53\xe9\x67\x8c\x51\x03\xe9\x3a\x8c\x31\x8a\xcf\x83\x42\x13\xfd\xe7\x41\xf1\x6d\xdf\xe3\xcc\xfa\x54\xc9\x7d\x2f\x4d\xbb\xff\xcd\x8b\x16\x86\x0c\xc5\xe7\x92\x01\x07\x3d\x3e\x85\x19\xf9\x55\x9a\x66\xd5\xcf\xf5\x21\x99\x4a\xd3\xaa\x2f\x99\x4a\x40\xa6\x52\x40\x61\x8d\x4f\xc5\xde\x87\xe2\xa1\x55\xa7\xaa\x8a\x07\xa3\x92\x1a\x66\xca\x0d\x63\xca\x79\x58\xec\xd9\x5a\xb6\x2c\x29\xfb\x4a\x97\x69\xfd\xa4\xa1\x9f\xdb\x57\xb2\x2a\x67\x0e\x6e\x68\x7a\xff\xec\x8b\x38\xff\x46\x8c\xc4\xbe\x88\xf3\xdf\x72\x76\x37\x50\xc4\xf7\x05\xd2\xc5\xbe\x0a\xd3\xe1\x1c\x7c\xfb\x62\x8f\xdf\x97\x13\x13\x6b\xf6\x96\xdc\x7b\x1b\x20\xd5\xb0\x22\x6d\x03\xa4\xb6\xcc\x29\x0d\xf3\xd0\x96\x39\x65\xc3\x9c\x52\x50\x9e\xee\x8b\x1b\xe3\x86\x2c\x25\x35\x2c\xd7\xfb\xaa\xb6\xcc\x79\x4e\x1c\xc2\x86\x32\xe5\x3c\x2c\xb6\xd2\xda\x6a\xb1\x0a\x3f\xad\xd2\xda\xe6\xb7\x0a\x3a\x58\x57\xf6\x85\xa0\xb3\xaf\xc6\x8a\x3b\xbb\xf7\xbe\x9a\x8d\x75\x52\x83\xfc\xbd\xaf\xee\xa7\xce\x60\x82\x0f\xf6\xd5\x2d\xd6\xd3\x00\xa3\xf4\x96\x89\x65\xc3\xc4\x52\xd0\xe3\x6e\x99\x58\xf6\xf5\x5c\xbe\xc6\xa7\x8f\xfd\xae\x50\xd3\x06\x9f\x4e\x3b\x60\xd2\x01\x96\x3a\xed\x4f\xe7\x2f\xda\xe8\x0d\x41\xca\x79\x2c\xd3\xe8\xbb\x69\x7f\x22\xd0\x37\x54\xca\xfb\x5a\x66\xb7\xcc\xce\x24\xfb\x13\xcd\x47\x03\x30\x70\x5f\x68\x05\x37\x61\x53\x05\x89\x6b\x1b\x36\xb5\x25\x4a\x69\x18\x60\x37\x0c\x29\xe7\x61\x4d\x6e\x4a\xc5\xa4\xb4\x09\x9b\x2a\x08\x66\xdb\xb0\xa9\x6d\x88\x54\x83\x80\x7d\xcb\x94\xb2\x89\x94\x2a\x84\x2d\x6f\x28\x52\xce\x83\xba\xd9\xfa\x6d\x53\xb7\xcd\x72\x3a\x6d\x3b\x73\xd3\x99\x83\xba\x6d\x3b\xd3\x55\x09\x4a\xdf\x96\x3b\x65\x1b\x49\xd5\xba\xc3\xfa\x5a\x5f\x45\x35\x30\xf9\xf6\xf5\x9a\xdd\x6b\x76\x26\x7d\x24\xb9\xc4\x9c\xfe\x9f\xad\x57\x78\xeb\x8e\xc3\x67\x9f\xbb\xc4\x3a\x4b\x4c\x26\x96\x2d\xc5\x4a\x43\xa3\xb8\x13\xb7\xf4\x9d\x14\x85\xe0\x22\xdf\xa9\xf8\x1e\xfb\x37\xfa\xf4\x6d\x14\xd2\x96\xda\xa4\x71\x39\xdc\x84\x24\x9d\x47\x37\xad\x93\xb6\x4c\x33\xbb\x9b\xec\x6e\xb3\xbb\xcd\x6e\x90\x54\x4c\x3a\xbd\x49\x2c\xf2\x4e\x5c\x8e\x37\x81\x47\xe7\x4b\x72\x43\xc7\xb7\x89\x42\x32\xdc\x74\x1b\x85\xb4\xa5\x36\x69\xcf\x11\x68\x77\x72\x81\x19\x99\xd4\xd0\x3e\xec\xe4\x02\x33\xe4\xa8\xc1\x98\xb6\x53\x35\xbb\x6a\x76\x24\x35\xdb\xa5\x00\x06\x1c\xd6\x26\xd6\xe8\x3c\xfc\xb4\x53\x04\xfa\xf4\x2d\x41\x49\xc3\xb7\x7f\x4b\x50\xb2\x93\x62\xd4\x33\x68\xc5\x63\xb1\xde\x2e\xc0\x70\xda\x30\x93\xfc\xd9\x49\xc1\x67\xd8\xc5\xd3\x3e\x99\xf4\x49\xa6\xd8\x69\x55\x5c\x60\x04\xa8\xef\x34\xcd\xce\xd5\x84\x1d\x6f\xcb\x3c\xb2\x0d\xef\x69\xb8\xed\xef\xb4\xcc\x6e\x91\x1d\x9b\x58\x5a\xf6\x27\x58\x47\x8d\x1b\xc7\x4e\xcb\x1a\xbb\x9a\xc6\x4d\xcb\xc2\xce\xdb\x16\xc1\x32\x31\x44\x67\x27\x65\x1a\x44\xd5\x9d\x3e\xab\xe2\x24\x43\x6c\xda\xe9\xfb\xbd\x67\x7e\x4c\x46\xe9\x43\x36\xfc\x1f\xa9\x23\xc2\x6c\x18\x3f\xce\xe3\x23\x8d\x81\xcc\x5c\x4a\x77\x46\x96\xe8\xc0\x85\xec\x8c\x2c\xb1\x33\xb2\x44\x62\x15\x67\xb7\xf1\x9c\xfd\x94\x69\x61\x7c\xcb\x96\xe5\xa3\x73\xad\xdb\x06\xb8\x6c\x59\x3e\x3a\x0e\xe8\x3b\x17\xb3\x2b\x66\x77\x7a\x20\xa3\xf8\xdb\xc6\xc1\x74\xfc\xcf\xb7\x71\x30\x5b\xe2\x8f\x0e\xc0\xc3\x96\xf8\x63\xe7\x66\x11\xec\x14\xb9\x59\x44\xb7\x2a\x2c\xee\xfc\xd8\xda\x87\x8e\x67\xe6\x19\x69\xb2\x65\xef\xe8\xc9\x86\x39\x2d\x8c\x3e\xe9\xc4\xbc\xef\xec\xb4\x30\xd4\xa4\x03\x4f\xb6\xa5\xea\xd8\x44\x9c\x14\x6e\x61\x5b\xaa\x8e\x9d\x71\xa6\xec\x44\xa9\xef\xcc\x45\x74\x43\xc5\x71\xd2\xfe\xed\x16\xb7\xf3\xb0\x41\xc3\xd2\x58\x98\xf0\x75\x9c\x87\x35\xb5\xbf\x9d\x71\x46\xa2\xf4\x64\x7f\xbb\x57\xe7\xf5\x43\xd2\xe5\xbd\x65\xb5\x96\x2d\x62\x7d\x65\x5c\x99\x76\x3e\x53\xae\x24\xfb\xd1\xfd\x3b\x2f\xb3\x6b\x7e\xfa\xcb\xee\x35\x8d\xbe\xc5\x63\x60\xe7\xb3\xb5\x17\xee\x90\x3b\x47\x31\xc9\x12\x98\x84\x52\x7e\x6c\x28\x3f\x0a\x86\xb3\x9d\xc3\x41\xde\x36\x82\xcd\x2f\x6f\x1b\xb1\xfd\x94\x23\x22\x3b\xa7\x0d\x8a\xe9\xc9\x11\xdd\xd6\xe4\xf5\xdb\x87\x22\xb8\x1d\x6c\x22\x5c\x4a\xea\x26\xd9\xdd\xaf\x7d\xc7\xd4\x97\xcc\x63\x67\xb6\x61\x9c\xed\xb7\xd1\x2e\x1b\x4a\x8f\xd4\xb3\x33\xdf\x55\x03\xa7\xc7\x49\xa3\x9b\x5c\x35\xc6\xb6\x74\xae\x95\x5b\x36\x8f\x4d\x88\x4b\x49\xe7\xbe\xb4\xff\xbf\x84\x9d\x3b\x8e\x64\xb9\x11\x45\x7d\xad\xa2\x77\xa0\xca\xe4\x27\x48\xa0\x3d\xd9\xd2\x1e\xb2\xea\x26\x81\x31\x66\xa6\xd1\x9a\xd9\xbf\xc0\x73\x64\x8d\x0c\x19\x85\x87\x0a\xe4\x23\x83\x8f\x0c\xc6\x87\x71\x19\x8d\xe4\xa3\x88\x63\x29\xce\xd2\x22\x8e\x25\x60\x57\xc4\xb8\xa7\x29\x47\x40\x57\xee\xcf\x0a\x5a\x49\xf3\x55\xf6\x83\xf6\xf0\xd5\x07\xc2\xb0\xe9\x01\x84\x59\xda\x93\x4e\xd1\x2e\x0d\x0f\x3a\x20\x57\xee\x9b\xd2\x64\xe4\xe9\x18\x3a\x8c\x90\x05\x1e\x30\x2b\xa2\xe3\x23\x66\x25\x4d\x81\xa6\xe4\x58\x1a\x71\x9f\x34\xa5\xf7\xc9\x0a\x6b\x4a\x2f\x35\xea\x2f\x8d\x2e\x9a\xcd\x35\x9b\x83\x39\x35\x49\x43\x78\x39\x84\x4c\x23\x45\x29\xad\x3b\x54\xa4\xad\x69\x83\x35\x34\x09\xc0\x85\x08\x94\x89\x90\x95\x7a\x22\xe3\x42\x56\x02\x64\xa5\x71\x2b\x5d\x84\xac\xc4\x02\x1f\x45\x05\xaf\x50\xd9\xe3\x3e\x9a\x34\x7a\x55\x76\x85\xac\x54\x73\x1e\x96\xcd\x2d\x9b\x9b\x90\xfc\x98\x88\x2e\xa7\xa1\x69\x8a\x6e\xc3\x0b\xae\xf6\x94\xe6\x48\x37\x23\x7d\xc2\xdb\xf6\xc3\x29\xcd\xe0\x07\xd2\x14\x57\xeb\x80\x14\x27\x5e\x69\x8a\xab\x45\x3f\xaa\x35\x66\xff\x65\x73\x2f\x9b\x63\x0c\x2f\xc7\xf5\xe9\x18\xd8\xf6\xda\xa7\x63\x50\x5a\x29\xc3\x95\x46\x5c\x34\x4d\xd1\xc4\xbf\x4d\x53\x34\xad\x17\x52\x00\xa5\x62\xbd\x90\x50\x2f\xa4\x71\x2e\x1b\xeb\x85\xc4\x7a\x21\x85\xe7\x9a\xa6\x68\x52\x36\xa4\x3d\x1d\x84\xa6\x55\xfb\x72\x10\x48\xb0\xf5\x42\x22\xb0\xa7\xf0\x5c\xd3\x14\x4d\xe0\x37\x8f\x6a\x8b\x2e\x14\xc3\xf6\x96\x3b\x94\x6b\xd3\x1a\x6a\x58\x43\xff\x5d\x87\x6f\x07\xab\x68\xe2\x91\xa6\x1d\xbb\x50\x0e\xbb\x8b\x53\x39\xb4\x86\x48\x81\x82\x48\x3b\x36\x77\x6c\xee\x92\x3a\xbe\x76\xc4\xda\x14\x2e\x69\xc4\xda\xa4\x53\x32\xa1\xc0\x6d\xa4\x13\x2a\x4d\xc7\xcc\x29\xf0\x08\xe9\x24\xba\xa4\xbb\x3a\xc9\xbf\x4f\x27\x59\x2e\x5d\xd5\x82\xd7\x97\xae\x6a\xb1\x98\x47\x91\xe2\x9e\xae\x99\x2f\x60\xa6\xf0\xfa\xd2\x55\x37\x7d\x7e\x49\xbb\x5f\xaa\xe3\xa8\xa6\xe3\x81\xd6\x40\x91\x82\x77\xb9\x0f\x3e\x3c\xd3\x28\xea\x25\x5d\x09\xe0\x9a\x82\x74\xad\x95\x5e\x6f\x69\xbe\xca\x9a\xed\x57\x89\x35\x2a\xf8\xa5\x93\xde\x16\x6b\x83\x14\xb9\xd2\xe9\xcb\x1e\x16\x3d\x4c\x06\xb6\xfc\x00\x5b\x86\x99\x6e\x31\x34\xe9\xe4\xe9\x17\xd9\xcd\xe9\x2f\x39\xf9\x92\x13\xbb\xf8\x92\x13\x97\xc5\xd8\xbc\xeb\xb2\xe8\xee\xe2\x20\xeb\xd3\xdd\xc5\xad\xd5\x51\x1c\x97\xa5\xbb\x63\x53\x9f\xe3\xd2\xf8\xdd\xdb\x8f\x82\x73\x5a\x1c\x97\xa5\xbf\x9d\x34\x97\x0f\xc5\xb0\x43\xf9\x8d\xfb\x38\xde\x96\x4d\x7b\xae\x15\xc1\x36\x05\xa8\x3d\x96\xe1\x48\xe7\x16\xd2\xe2\xbe\xb3\x80\xbc\xb9\x0f\xdf\xc5\x25\x14\x80\x93\x81\xc7\x5a\x5c\x6e\x96\xa1\xc7\x3a\x5c\x40\xa4\x07\x66\xb8\x80\x44\xe5\x14\xf9\x81\x11\x95\x13\x11\x38\xa5\x9f\x68\x59\x8f\x00\xc4\x69\xcf\xd5\xfe\xbf\x52\x1f\x04\xf1\x33\x34\x7a\x28\x63\x95\xa1\xd1\x33\xdc\x37\x51\x73\x02\x6a\x62\x61\x8d\xe2\x00\x30\xc3\xd5\x2a\xc8\xa6\x00\x89\x67\xb8\x5a\xa9\x9c\x71\x69\x1d\x9a\xcd\x61\x82\x73\x9f\x65\xc0\xcd\xdc\x07\x63\x24\x51\x38\x63\xc8\xc9\x60\x89\xf8\x26\x61\xd1\x58\x45\xa3\xb8\xf6\x3f\x62\x65\x32\x5c\xfb\x5c\x30\x96\xe1\xda\x1f\x60\x84\x8b\x0b\xc6\x32\x40\x86\x45\x64\x4c\x91\x16\x9c\x31\xed\x62\xda\x05\xcd\xe9\xf6\x02\x86\x79\x54\xb1\xce\x47\xf9\x15\xaf\xa7\xdb\x9a\xcc\x95\xad\x29\x35\xc5\x3e\x3c\xca\x49\x51\x44\xc8\x14\xce\x50\x44\x84\xc1\x54\x39\xc9\xcb\xe6\x96\xcd\x15\xa4\x92\xb4\x21\xc1\xc8\x72\xac\xda\x72\x24\x05\x67\x6c\xc7\xf5\x72\x5c\xe8\xb9\xa1\x77\x3c\xdc\x38\xf5\xf1\x86\x1b\xe7\x60\xe3\x6c\x0e\xdf\x8d\xd3\xda\x1a\xa5\x53\x36\x94\x9a\xa1\xd4\x2c\x07\xa6\x53\x2a\xac\xa4\x96\xdc\xc5\xe6\x62\x73\x70\xa7\x07\x3a\x34\x73\x96\x5d\xb8\xbf\x0e\xcc\x1c\x20\xd2\x11\x69\x92\xa1\x1c\x01\xea\xce\x50\x8e\x44\x9f\xd4\xf2\x0b\x2b\x47\x42\x4d\x8a\x2b\xac\x33\x8e\xcd\x1d\x9b\x83\x91\xe3\x20\x14\x19\x70\xde\x11\x57\x12\x70\x25\xde\x50\x13\x71\x25\x99\x4a\x11\x38\xef\x88\x2b\xc9\x54\x8a\xc0\x79\x47\x60\x49\x04\x91\x14\xe9\xa8\xb1\xf2\x47\xc0\x92\xb4\xd6\x24\x35\x49\x30\x82\xfd\x32\x89\x78\x66\x6a\x0d\xe9\x32\x8a\x12\xc9\x7c\xd8\x1a\x96\xf6\x24\xe2\x19\x91\x23\x45\x72\x69\x80\x8c\xdc\xc7\x97\x34\xba\xd0\x25\x99\x1a\x30\xfa\x87\x53\x03\x66\x62\xc0\x50\x49\x33\x93\xf3\xad\x4c\x85\x93\xdc\xd2\x4c\xa3\x48\x62\x42\x6a\x61\xe7\x4d\x25\x71\x82\xf5\x2d\xee\x1f\xce\xd4\x84\x11\x00\x52\x9c\x63\x66\x76\xbb\xe8\x76\x01\xc7\x3a\xc3\xc0\x40\xee\xcf\xae\xb0\x4f\xa5\x13\x1c\xc8\xa5\xf1\x3b\xa2\xaa\x01\x14\xd2\xd4\xfe\x82\x42\x32\x15\x62\x9d\xd2\x69\x00\x4a\xa0\x48\x71\x04\x9a\xa9\xc4\xce\x39\xa5\xd1\xc5\x74\x64\x44\x9b\x8a\xc3\xc3\x4c\x35\xd3\x24\x84\xaa\xe1\x20\x28\x24\x53\xe9\xe4\xba\xdd\x4c\x03\x50\x93\x8c\xea\xe2\x36\xf5\xcc\x25\x2b\x1a\x58\xdb\x15\xa0\x81\x35\x31\xb0\x9a\x9f\x5d\x95\x33\x95\x31\x1d\xd5\xa9\x8c\x89\x00\x29\x2e\x5d\xcf\x54\x0d\x51\x4e\xe5\x51\x14\xcb\xca\xd4\xb7\x9e\x9a\x4e\xa4\x8d\x66\xea\x47\x4f\x3d\x1d\x4e\x45\x63\x85\x94\x88\xed\xa8\x8d\x1f\x02\xa8\xe3\x3e\x96\x34\x86\xf1\x29\x7b\xda\x49\x9c\x7b\x66\x6a\x27\x4d\xec\x24\xc0\xd3\x11\xa1\x91\xa9\xb8\x73\x98\x91\xf9\x65\xb7\xca\xf6\x76\x6a\x95\xed\x99\x0f\x69\x0c\x37\xb2\xac\x46\xd4\xb7\x16\xa2\x91\xc9\x0d\x1b\xeb\xc3\x49\x8b\x93\x41\x78\x69\x7d\x60\xd9\x4c\xc3\x4b\x13\x81\x5f\xc4\xfd\x33\x0d\x2f\x09\xc8\x58\x5c\x14\x9a\xa9\x74\x8b\xb4\x58\x64\x9d\x46\xa4\x45\x26\xc9\x99\xeb\xc3\x59\x3b\x8e\x03\xeb\x69\x11\x47\xcf\xd4\x7a\x9a\x58\x4f\xcd\xa1\xa9\x24\x45\x5a\x2c\xae\xcf\x4c\x19\xd6\x15\x69\xb1\xb8\x3f\x33\xa5\x78\x17\x61\xdd\xc5\x65\x99\x29\xc3\xba\xf5\x90\xbd\xf1\x01\x6d\x49\x63\xc5\xf3\x55\x84\x50\xa4\x1e\x72\x42\xcc\xad\x94\x65\x61\x15\x0b\x9c\x79\x4a\x59\x16\x2f\xb1\xf4\xf3\xad\x25\x13\x60\x13\x4d\x53\xb1\x14\xe5\x6a\x72\xc7\x7c\x97\x41\xe2\x22\x48\x0c\xc6\x39\x65\x90\xd8\xba\x31\xeb\x03\x33\xae\x0c\x12\x0b\xab\x58\x24\xb6\xa6\x14\x6f\xf1\x12\x8b\x03\xe2\x88\x97\x48\x75\xe7\xec\xaf\x37\xb9\xd7\xff\x6a\xf5\x32\x86\x5c\xdd\xf1\xa0\x9a\x8b\x2c\xd2\x80\xaa\x68\x80\x73\x53\x0a\xba\x95\x66\x96\xc1\x41\xcb\xca\x04\xa4\x45\xd3\x7c\x2d\xd5\xb0\x08\x8b\xf5\xc0\x8a\xaa\x69\x6b\xd3\xd6\x78\x53\x8d\x5b\x57\xc9\xde\x9f\x31\x1c\xe5\xbc\x08\x84\x2d\xc3\x74\x65\x20\xcc\xe2\x33\xeb\x61\x17\x46\x9a\x05\x62\xac\x07\xcb\xa8\x14\x74\x11\x16\x8b\x0b\xd9\x23\xc2\x22\x94\x97\x69\x20\x96\x63\x79\x99\x14\x91\xe6\xf5\x20\xc0\x55\x06\x50\x40\x55\x5c\x1a\xaf\x6a\x82\x16\x3a\x17\x84\x71\x4a\x9d\x6b\xc5\x99\xf5\x70\x65\x2d\xb9\x5b\x72\xc7\xf6\x5f\xee\x11\xb5\x6d\x8e\xed\xa5\xf4\xc2\xa8\x2f\xd3\x3a\x3e\x4d\x6d\x39\x79\x39\x88\xbb\xbf\x1e\xf2\x82\xbf\x9f\x7d\x75\x4a\xc7\x57\x39\x9b\xd3\xe9\x43\x7a\x70\xc7\x55\x39\x9b\x65\x7a\xf6\x5d\x86\xe2\xb5\xcf\xc6\x3f\x38\xfb\xf9\x71\x49\xd7\x1c\x3a\x9b\xc4\xa4\xb3\xaf\x67\xdd\xc1\xbf\x9f\xfd\xb4\xad\xeb\x31\x77\x92\x04\xcf\x26\x02\x76\x48\x2e\xee\xf8\x1a\x67\x13\x8d\x3d\xfb\xba\xcd\x9d\xc2\x4b\x67\x13\x8d\x3d\xfb\xae\xc7\x0e\xee\xf2\xec\x26\x13\x57\xe9\x74\xac\xfb\x43\xd9\x89\xef\x67\xf7\x0f\x48\xeb\x92\xd0\x35\x87\xaa\x12\x9d\x2b\xc2\xce\xc6\x81\x3e\xd4\x96\xe8\x24\xd6\x9d\x8d\xf6\x39\xfb\x2a\x1c\x11\xa7\x87\x9a\x13\xf7\xf1\xbe\xa4\x09\xf7\xa0\xa8\x0f\xf9\xcd\x1d\xcc\xdb\x31\xb1\xf9\x90\xcb\x2c\x44\xf1\xec\x61\x5b\x77\x45\xf6\xe9\x18\xcb\x61\x5f\x73\xac\xb3\x0c\xce\x2e\xb9\xbf\x7e\x4b\xef\x4f\x7f\x65\x8f\xc5\x97\x90\xd5\xb2\xc7\xbb\x58\xc4\x85\x1f\x2b\x42\x1c\x2a\x42\xf4\xee\xa4\x61\x9e\x1d\xca\x3f\x74\xc0\xd7\xc7\x52\x0f\x67\x6f\x5e\x9c\x90\xb6\xac\x6e\xa6\x63\xf2\x71\xb6\xac\x6e\xf8\x72\x40\xb8\xe6\x67\x6f\x66\xc8\x05\xb0\x9d\xa1\x0d\x5f\xe5\x8b\x36\xff\xa2\xf9\xc5\x8b\x2f\xdb\xba\xbe\x50\x07\x2a\x7c\x28\x34\x71\x1f\xbc\xb8\x99\xc7\x4f\xa7\xe3\xf3\x32\xc1\xb5\x76\x67\x7f\xfa\xe2\x27\xdf\xfe\x83\xe6\x3f\x65\xe2\xea\x9c\x4e\xfe\xe2\x31\x31\xfa\x90\x18\x2d\x8a\xf7\x98\x18\x7d\x48\x8c\x16\x9e\x7b\x2c\x22\x71\xc8\x7b\xee\x43\xbe\xe2\x8b\xe1\x57\x9b\x5f\xc5\x4f\x78\x95\x8a\x30\xd5\x63\xbe\xf3\x21\xb7\x59\x48\xea\xd9\x6f\x59\x7d\x3f\xef\x3c\x3e\x79\xf1\xed\xaf\xde\x4c\x6d\x63\x3a\xde\x8e\xf1\x3a\xea\x9d\x6a\x05\x67\xbf\x15\x85\x73\x3f\x0e\x90\xcf\x43\xfa\xf2\x7d\xb0\x4c\x3a\xcb\xe4\xd8\xd6\xa1\xad\x6b\xa2\x1d\xce\xc0\xbf\x9f\x73\x57\x31\x95\xe4\xcf\x61\x7b\x3d\x1c\xf4\x72\xe5\xe1\xf1\x74\xf3\x70\xba\xf9\xe8\x7f\xf1\x98\xee\x3f\xbf\xbe\x7e\xfc\xed\x1f\xff\x7c\xfd\xf8\xd7\xeb\xd7\xf7\xb7\xaf\x3f\x7f\xfe\x7c\xff\xf6\x47\x7e\xf9\xfa\xe3\xdb\xdf\x2f\xf5\x5b\xde\xe7\x97\xdf\xde\x3f\xdf\xff\xfe\xfd\xcf\x9f\x5f\xef\x6f\x3f\x7e\xff\x71\xdf\xe2\xef\x3f\x01\x00\x00\xff\xff\x4d\x4c\x2d\xc1\x6d\xd7\x01\x00"); -func _dbec ()([]byte ,error ){return _dc (_bebc ,"GBK2K-H")};func _aefc ()([]byte ,error ){return _dc (_gcdcc ,"KSC-EUC-V")};var _bdgb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xe4\x46\x14\x04\xf0\xbb\x3e\x45\x1f\x37\x87\x8d\xfb\xfd\x51\xab\x05\x62\x61\xf1\xb2\xe0\xc3\x6e\x42\x1c\x92\xb3\x2c\xf5\x98\x81\x58\x33\xc8\xe3\x83\xbf\x7d\xa8\x57\x33\x0e\xe4\x60\xc6\x53\x96\x9e\xc4\xaf\xdc\xdd\x77\xf7\x0f\xdf\x1e\xb6\xe3\x25\xdd\xfd\xbe\x9f\x96\xc7\x76\x49\x87\xe3\xb6\xee\xed\xf5\xf4\xb6\x2f\x2d\x3d\xb5\xe7\xe3\xd6\x75\xa2\x69\x3d\x2e\x97\xdb\xd7\xf8\x58\x5e\xe6\x73\xd7\xe1\xfe\xc7\xf7\xd7\x4b\x7b\x79\xd8\x0e\xa7\x64\xbc\x6e\x7d\x3b\x5f\xaf\x4d\xe9\xee\x8f\xf6\x7c\x7c\xbd\xec\xef\xe9\xd3\xd7\xf5\xf4\xd4\x7e\x49\x6b\x3b\x20\xff\x6d\x5f\xdb\x7e\xdc\x9e\xd3\xa7\xfb\x9f\x8f\xf2\x11\x3f\xbe\x9d\xcf\xff\xb4\x97\xb6\x5d\xd2\x10\x59\xdb\xd6\xf8\xec\xee\xee\x7f\xcc\xe7\x9f\xf3\x4b\x4b\x77\x31\xe9\x33\xee\xfb\xcc\x8b\xe2\x6f\x7f\xb5\xfd\xf5\x78\xda\x92\xfc\x9a\xb3\xfc\x17\xff\xf9\x7e\x6e\x49\xae\x33\xfe\xfe\x71\x5a\x5b\xca\xb7\x89\x0f\xdf\xee\x4f\x6f\xdb\x25\xc9\x28\xc3\xc8\x50\xf8\xea\xcb\x69\x6d\xaf\xe7\x79\x69\xfb\xbc\x3d\xb7\x2e\xa5\x29\xe7\x9c\xbf\xa4\xc9\xbf\x7e\xff\xfe\x05\x6f\xf5\xbf\x2b\xba\xa1\xbf\xde\x79\x5c\x99\xdc\xee\xc8\xf9\x70\xf8\x92\x72\x37\x65\xe1\x77\xc1\x77\xed\x4b\x37\x65\x65\xa2\x48\x7a\xd1\x6e\xca\xc6\xc4\x90\x0c\xa5\x76\x53\x76\x26\x8e\x44\xb2\x7a\x37\xe5\x9e\x51\x1f\x91\x56\xcc\x2e\x8c\x4a\x44\xbd\x61\xf8\xc0\x68\x88\x68\x18\x31\xbd\x32\xaa\xf1\x06\xd9\x31\x7e\x64\x34\x46\x64\x19\xe3\x67\x46\xf3\xf5\x3d\x31\xfe\x89\xd1\x53\x44\x55\x30\x7e\x61\xb4\x20\xb2\x3c\x60\xfc\xca\x68\x8d\xc8\x14\xe3\x1b\xa3\x16\x51\x5f\x31\xfe\xc0\xe8\x10\x51\xf5\xdc\x4d\x42\x29\x09\x29\xcf\x63\xe9\x26\x21\x96\x04\x96\x5b\xaf\xdd\x24\xd4\x92\xd0\xf2\x92\x6b\x37\x09\xb9\x24\xb8\xbc\x16\xef\x26\xa1\x97\xf8\xd5\x14\xe3\xe9\x25\xe1\xd5\xdb\x80\xf1\xf4\x92\xf0\xea\x8b\x61\x3c\xbd\x24\xbc\xfa\x5a\x31\x9e\x5e\x12\x5e\x45\x1c\xe3\xe9\x25\xe1\x55\x3c\x63\x3c\xbd\x24\xbc\x4a\x41\xb1\x42\x2f\x09\xaf\x32\xa2\x59\xa1\x97\x84\xd7\x20\xa8\x56\xe8\x25\xe1\x35\x38\xaa\x15\x7a\x49\xbb\xf6\x8f\xf1\xf4\x92\xf0\x1a\x46\x54\xab\xf4\xd2\xf0\xaa\x82\x6a\x95\x5e\x1a\x5e\xd5\x51\xad\xd2\x4b\xc3\xab\x0e\xa8\x56\xe9\xa5\xe1\x55\x47\x54\xab\xf4\xd2\xf0\x1a\x15\xd5\x2a\xbd\x34\xbc\x46\x47\xb5\x4a\x2f\x0d\xaf\x71\x40\xb5\x4a\x2f\x0d\xaf\x71\x44\xb5\x4a\x2f\xad\xb7\xff\x55\xcc\x27\x98\x8e\xcc\x1c\xe5\x2a\xc5\x74\x66\x36\xa0\x5d\x25\x99\x06\x19\xda\xc7\x23\x68\xa6\x0b\x33\x45\xbf\x4a\x34\x5d\x99\xf5\x28\x58\xa9\xa6\x8d\xd9\x80\x86\x95\x6c\x7a\xe0\x22\xc9\xa8\xd8\xe8\x66\x99\x99\xa2\x63\x23\x9c\x09\xb3\x1e\x25\x1b\xe5\x4c\x6f\x0b\x2c\x77\x93\x91\xce\x82\x4e\x2c\xa3\x66\xa3\x9d\x71\x6d\x9a\xa1\x67\x23\x9e\x71\x71\x5a\x8f\xa2\x8d\x7a\xc6\xd5\x69\x15\x4d\x1b\xf9\x8c\xcb\xd3\x33\xaa\x36\xfa\x19\xfd\xdc\xd0\xb5\xd1\xcf\xe8\xe7\x3d\xca\x36\xfa\x19\xfd\xbc\xa2\x6d\xa3\x9f\xd1\xaf\x17\xd4\x6d\xf4\xb3\xe5\xb6\x2b\xe0\x19\xf4\x33\xfa\xf5\x05\x85\x1b\xfd\x8c\x7e\x7d\x45\xe3\x46\x3f\xa3\x5f\x11\x54\xee\xd7\x3d\x90\x7e\xc5\xd0\xb9\xd3\xcf\xe9\x57\x0a\x3a\x77\xfa\x39\xfd\x4a\x45\xe7\x4e\x3f\xa7\xdf\x20\xe8\xdc\xe9\xe7\xf4\x1b\x1c\x9d\x3b\xfd\x9c\x7e\x43\x41\xe7\x4e\x3f\x2f\xb7\xad\x0c\xcf\xa0\x9f\xd3\xaf\x0a\x3a\x77\xfa\x39\xfd\xaa\xa3\x73\xa7\x9f\xd3\xaf\x16\x74\xee\xf4\xf3\xb9\xcd\xc8\x46\xf7\xd8\xd1\x6f\x3b\x37\x7e\xc7\xf9\xf6\x71\xe2\x2c\x6f\xfb\xde\xb6\x4b\x9c\x6e\x71\xa8\xe0\xac\x38\x6e\xed\xe3\xa4\x3c\x9f\xce\xb8\x2b\x7e\xfe\x0d\x00\x00\xff\xff\xea\x94\xed\x0a\x55\x07\x00\x00"); -var _acgd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xaf\x2d\x3b\x72\xe5\x37\x7f\x9f\xe2\x0c\xdb\x83\xb6\x32\x93\xcc\x24\x09\x3c\x5c\xc0\x92\xba\xe0\x6a\xa0\x6d\xc3\x6a\xd9\x06\x0c\x0f\x92\xfb\x8f\x5c\x80\xf5\xaa\xf0\xaa\x34\xd0\xb7\x37\xb8\xd6\x6f\xed\x57\x6d\x18\x38\x75\x27\x77\xc7\x21\x93\x0c\x92\xc1\x60\xfc\x63\xf0\xef\xfe\xe1\xf7\xff\xf8\xfb\x5f\xfe\xf0\x97\xaf\xbf\xfb\x5f\x7e\xfd\xe3\xe3\x9f\x5e\x7f\xf9\x7a\xff\xe1\x97\xe7\xaf\xaf\x3f\xff\xf1\xdf\x7e\x7d\xbc\xbe\xe6\xeb\x5f\xfe\xf0\xcb\x4f\x3f\xed\xc7\xd7\xf3\x0f\x8f\xbf\x04\xd4\x7f\x8f\x7f\xbd\xff\xf4\xd3\x4f\xeb\xfb\x7f\xfa\xf7\x3f\xff\xe5\xf5\xaf\xbf\xff\xe5\xfd\xc7\xaf\xe2\x7a\xcf\x7f\xfb\x13\x75\xbf\xbe\xfe\xee\x7f\x7d\xfd\xcb\x1f\xfe\xfc\x97\x5f\xff\xfd\xeb\x3f\xfc\x0f\xcf\x3f\xce\xd7\x7f\xf7\xf5\x7c\xbd\xd7\xdf\xff\xe7\x5f\x9f\xaf\x5f\xff\xf0\xcb\xbf\x7c\xfd\x87\xff\x7c\xff\xe9\xfe\x65\xff\x14\xfc\xd3\xbf\xfd\xe9\x4f\xff\xcf\xeb\x5f\x5f\xbf\xfc\xe5\xab\xe9\x6f\xaf\x5f\x9e\xfa\xff\xa7\xbf\xfb\x87\xff\x72\xff\xe9\x7f\xba\xff\xf5\xf5\xf5\x77\xff\xfc\xcb\x1f\xfe\xf3\xef\xff\xe9\x3f\xfe\xf3\x7f\xfd\x5d\xff\x8f\xff\xa3\x4a\x55\xf8\xbf\xbd\x7e\xfd\xf3\x1f\xfe\xf8\xcb\xd7\x5e\xfe\xfb\xed\xb8\x7e\xfb\xfb\x7f\xfd\xf7\x3f\xbd\xbe\x76\x5a\xf9\x3f\xfe\xf9\xf7\xff\xf8\xf5\x7f\xee\x5f\xfb\xf6\x75\x9c\xe5\x1c\xff\x17\x7f\xff\xdf\xff\xcb\x1f\x9f\xaf\xaf\xcd\x50\xf5\x08\x1e\x7f\x7c\xbe\xfe\xfc\xa7\xfb\xf1\xfa\xf5\xfe\xe5\x5f\x5e\x3f\x7d\x7d\xfd\xbc\x6d\x3f\xbe\xfc\xef\xe7\xf6\xbb\x1f\xeb\x2f\xff\xb0\x75\xfe\xf6\xf3\x3f\xfe\xee\xef\xfd\xb7\xff\xb4\x75\xfe\xfa\xf3\x7f\xfa\xdd\xdf\xe7\xaf\xbf\xd3\x5f\xd7\xdf\x7f\xfe\x5d\xfb\x7b\xfe\xfe\xfa\xe5\xf9\xff\xe9\xe5\xa7\xdd\x9d\xff\xf2\xc7\xbf\x3c\x5f\x6f\xff\x4d\xfd\xfe\xbc\xbf\x7f\x7c\xed\xeb\x8b\xbf\x2e\xfa\x69\xdf\x36\xb0\xfd\xc3\xf3\xf1\x7f\xdf\xbf\xfe\xf4\xf3\xf9\xf8\xf1\x35\xda\x4f\x3f\xb7\xf5\xff\xf8\xe9\xe7\xf6\xfc\xf1\x35\xea\x4f\x3f\xb7\xd7\x8f\xaf\x7d\xdb\x7e\xfa\xf9\x71\xdc\xdb\x6a\x6a\xfd\xa8\xeb\x6f\x4d\x3f\xcf\x1f\x5f\x97\xff\x78\xfd\xf8\x1a\x45\xbf\xda\x8f\xaf\x76\xf8\x93\xfe\xe3\xeb\xaa\xae\x39\x7e\x7c\xed\xe7\xa1\x9f\xf7\x8f\xaf\xbd\xba\xc2\x5c\x4d\x0d\xfd\x7c\xac\x0a\x6e\xe1\xb9\x7e\xba\xd9\xd5\xff\x59\xf5\x73\x0d\xe5\x50\xdd\xb9\xfd\xf8\x6a\xc6\x60\xee\x3f\xbe\xae\xa1\x0a\xb3\xae\xde\x4e\xfd\x3c\xd7\x67\xae\x7b\xfd\xf8\x6a\xad\xeb\x67\xfb\xf1\xb5\xef\xfe\xac\xff\xf8\xda\x8b\x3f\x5b\x98\x5d\x42\x67\x0a\x33\xff\x75\x61\x76\x08\x9d\xa9\x8e\xaf\x9f\x7e\x7e\x94\x7e\xad\xcf\x56\xbb\x65\xb4\xd5\xf1\xa9\x9f\xab\xb1\x7a\xe8\xe7\xaa\x7b\xae\xc6\xca\x9a\x91\x5d\xe8\x94\xa9\xba\x6a\x41\x1d\xd7\x85\x4e\x5d\xcb\x3a\xca\x75\xe9\xf7\xae\xdf\xbb\x7e\x1f\xab\x8d\x76\xba\xa0\x08\xb8\x86\x80\x2a\xa0\x34\x01\x1a\x63\x53\x0f\x55\x88\x9d\xed\x74\xc3\x4d\x40\x73\x6b\x5d\x40\x2f\x02\x86\x01\xb7\x76\xff\xf8\x3a\xb6\x52\x5c\x32\x05\x68\x85\x6a\x7f\xb8\x35\x57\x7b\xba\x35\x97\xbc\x8c\x8e\x9b\x7e\xbb\x64\x4d\x58\x1d\x9b\x1a\x38\x54\x6d\xec\x2e\x11\x6e\xe3\xd0\xd8\xd4\xd8\x28\xfa\xed\x2f\x2e\xf7\x6f\xa0\xb9\x7f\x21\x33\x8c\xb3\x16\xa5\x0e\xe3\xdc\x5c\x72\xaf\xef\x87\xdb\x9d\x8b\x46\x45\x06\x75\x18\xe3\xee\xb6\x8c\xf1\xf0\xe7\x2f\xf7\xe2\x4f\xde\xee\x45\xc0\x6d\x8c\x3d\x9b\xf7\xee\x12\x4d\xfa\x7d\xb8\xc4\x80\x27\xbd\xfb\x1b\x4f\xfa\xd0\xf8\x6f\x0f\x40\x54\x52\x6f\x4d\x7a\xdf\xfd\x4d\x17\x6a\x42\x60\x51\xfe\xa8\xbb\xe6\xe5\x16\xfa\x97\x7b\x9c\xfa\xed\xbf\x83\xa4\xe6\xe8\x06\x49\xd5\x9a\x20\xa9\x85\x5d\xc4\xbe\x57\xf5\x30\x8d\xe2\xa1\x01\xcf\x62\xc0\x95\xc0\xd7\xd5\xc0\x57\xbd\x4c\xe3\xab\xad\x57\x27\x13\xee\x6f\xba\x1b\x50\xff\xd3\x13\x4e\xff\xb7\x67\xdf\xdf\x98\x48\xaa\x5b\x7b\x08\xf0\x22\x4d\x4f\xb9\x07\x30\x4d\x24\xd5\x0d\x78\x34\xc7\x9a\xbe\xb3\x33\x9a\x4d\x80\x46\xb3\xeb\xe7\x22\x79\xd5\x3f\x43\xf0\x87\x00\x8f\xa5\x5d\x02\x4e\xf7\x5e\xc4\x01\xe1\x5c\xff\x3f\xbc\xec\x71\x76\x0f\xf4\x72\xdb\xde\x0d\x57\x11\x60\xca\x6a\xee\x6a\x18\x1b\x57\xf3\x6e\x38\xdc\x95\x48\xab\xf8\xf7\x62\x89\xa5\x19\xe5\xa7\xd6\x4c\x63\x59\x04\xbf\xda\xad\x02\x20\xf8\x2e\x40\xa3\x51\x7f\x8b\xde\xf7\x3a\xf4\xd3\x63\x39\xfd\xb1\xd7\xe5\x72\x7d\xd6\xc5\x2d\x79\x5d\x3c\xfe\x6c\x04\x7f\xc3\x46\x70\x6b\x5e\x17\xad\xe5\xb9\x76\xc2\x02\xdc\x1a\x5b\x41\x43\xcc\x56\x30\x32\xac\x8b\xc6\x6b\x4e\xd5\xc4\xab\x4e\x6d\x05\xd1\xf1\xa9\x8d\x70\xe8\xe3\xdb\x8c\xe8\x32\xe0\x75\xe9\xfa\x98\x3d\x21\x42\x38\xd9\x13\xa7\x4b\xd8\x13\xfe\xc6\x63\x29\xae\xe6\x3d\xa1\xa1\xb0\x27\x5c\xc9\x7b\x42\xb8\xb3\x27\x8c\x08\xe3\x70\x01\xe3\xd0\x14\xad\xdd\x32\xea\xe6\xdf\x6f\xb5\xa4\x95\x9a\xac\x88\x01\xaf\x48\xd7\xf8\xd8\x2d\xe2\x95\x27\xbb\xc5\xbd\xac\xdd\xb2\xb6\x81\xab\x99\xc2\xbc\xa4\xec\x16\x0f\x8b\xdd\xe2\x85\xd0\x6e\x39\x5c\xc9\x6b\xe2\xc5\x66\xaf\x88\x87\x9e\x93\x35\x71\x35\x18\xaa\x81\xe7\xfa\xdc\x2d\xad\x7d\xaf\x5d\x77\x89\x68\x34\x3b\x97\x88\xe6\xec\x22\xc5\xe6\xd3\xa0\x1f\xbb\x00\xd1\x9f\x66\xa1\x75\xcf\x82\x2b\xbd\xf5\xf7\x35\x55\x6d\xd1\xe5\xa8\xfb\xa6\xdf\xbb\xea\xe8\x5b\xb1\xe1\xba\x17\xfd\x2e\xfa\xbb\x7f\x57\xfd\xfd\xd4\x6f\xb6\xd8\x10\xe0\x33\xa5\xb8\x96\x27\x40\xcc\xa7\x41\x96\xe2\xdc\x6d\x78\x17\x55\x77\xee\x29\x28\x6e\x0d\x76\xd1\x04\x78\x0a\xb4\xa7\x1a\x13\xad\xf9\x68\x53\xb2\x86\x06\xd8\xd7\x3c\x8f\xaa\xcf\x87\x37\x58\x17\xf5\x0c\x8f\x64\xef\xfa\xed\x29\x51\x53\x23\x93\xe5\x5a\x1a\x8b\x08\x79\x78\x8b\x75\x51\xfb\xf0\x58\xfa\xe6\x5a\x66\xd5\x54\xeb\x06\x86\x00\xd1\xe5\xe1\x86\x6f\xfd\xf6\xdf\xcd\x0f\xfc\xf5\xc3\xbd\x6f\x02\x5e\x06\xdc\xc9\xdb\x9d\xe8\x93\xdb\xd8\x6b\x9d\xc7\xbd\xfb\x70\x50\x8f\xde\x3c\xdd\x83\xf4\xe6\xe9\xe2\xef\xe3\x36\x96\xbb\x1b\x30\x96\x22\xa0\x71\x83\x65\x13\xa0\x49\xee\xfd\xfc\x8e\x11\x0e\xf6\xd0\x70\xeb\x4f\xa3\x67\xc0\xbc\x60\xb8\x2b\x23\xae\x95\x1e\xde\x45\x7d\x57\xbf\xec\x22\x1d\xb8\x63\x7a\xde\x45\x5a\x63\x7a\xde\x37\x7f\xe3\x21\xe9\xcc\x19\x6b\x71\x47\xd5\xb1\x3a\xa6\x47\xd4\x0d\x78\x10\xda\xd1\xc3\x3b\xa7\x6f\x6e\xcc\x23\xaa\x6e\x6c\xba\xc4\xdf\x80\xb4\xb1\x01\xe9\x55\x72\x77\xe3\x29\x59\xe6\xee\x4c\xf0\x29\xc0\x78\x6e\x06\x44\xea\xe2\x54\xb7\x8f\x93\xae\xad\x7b\xfb\x28\xe8\xda\x1c\xb7\x05\xa3\xae\x13\xf4\xee\xc6\xa6\xb8\x9a\xf7\xb1\xa4\xb7\x5b\x67\x41\x2d\xae\x65\xcc\x8a\x91\x31\x1d\xec\xee\xc6\xd3\x29\xf9\xe3\x86\x8a\xb5\x4f\x6f\x1f\x13\xdd\xd8\x78\x43\x8a\x3e\x6f\x1f\x0e\x5d\xf4\x7d\x43\xb9\x62\x8f\x77\xe8\xd3\x8d\x19\xcd\xe1\x6f\x4c\x88\xc3\x8d\x19\x9b\xdd\x25\x20\xb0\xa6\xf3\x86\xf6\x74\x52\xdc\x37\x5b\x47\x93\xc6\x4a\x8b\x9d\xdc\x2c\xae\x56\xfa\x9e\xa6\x3d\x0f\x7a\xad\x87\x28\xe8\x5e\x6c\x4c\x7f\x9b\xcc\xb7\x56\x62\x4a\xf8\xd4\xd4\x4d\x0e\x5b\x31\x90\xc9\x0c\x57\x7f\x31\x22\xbe\x4f\xcd\xef\xe1\x4f\xe7\x8f\x2f\x31\xd5\x69\x99\xb3\x8b\x59\x4c\xf3\x30\x91\xc3\xcc\x9c\xa9\xfd\x70\x1e\x03\x48\xb3\x87\x80\xd5\x68\xf1\x17\xb0\x5e\xf5\xbb\x66\x49\x83\x9a\x9c\x85\xa7\xeb\x78\xc1\x74\xb6\x3d\x16\x29\x09\x8b\x87\xa8\xc5\xbf\x6a\xf0\x7d\x48\xf0\x10\x53\x78\xf4\x4f\x2f\x0f\x11\x46\x71\xdd\x85\x7b\x71\x53\xcf\xdf\xc6\xfc\x80\x10\x74\xb8\x3c\xcc\x1a\xbb\x8e\xef\x07\x6b\x27\x09\xe5\x01\x43\xd0\x11\xf8\x80\x21\x9c\x06\x5a\xd4\x94\x87\x38\x80\x58\xde\xc3\xba\x54\x37\xc6\x30\x83\xe6\x12\x37\x2b\xc1\xfd\xc1\xae\xd6\x71\xf8\x60\xad\x25\x85\x3f\xd6\x5a\xeb\x90\x7b\xb0\x71\xa5\x2a\x3c\xb4\x59\x35\xb5\x0f\x76\xa7\x84\xbb\x87\x4f\xaf\xde\x0c\x78\x80\xfa\xfc\x19\xda\x5a\x98\xbc\x2c\x75\x55\x2d\xec\xab\x4b\x3a\x34\xcb\x7c\xf5\x97\x81\x22\xe0\x6d\x40\xdf\x58\x6b\xf0\x26\x78\xdd\xb7\x4b\x0c\x4c\x03\xab\x9f\xd7\xa4\xda\xfa\xe6\xad\xed\x7d\x1d\xc7\xf1\x1d\xfb\x7b\x5b\xa6\xab\x22\xfd\xb7\x35\x9c\x2a\x7e\xfa\x06\x23\x2d\xd3\x5b\x5b\xf4\xd8\xb4\x5f\xdf\x22\xb7\x63\x1b\x2e\x39\x0d\xe8\x1b\x91\xd5\xb1\x2d\xf2\x78\x6e\xda\x00\xdb\x5a\x82\xe7\xae\x4f\xb6\xb5\x45\x5e\xdb\x7c\xeb\xa8\x39\xf6\x45\x95\xaf\x7d\x7a\xcf\x94\xb5\x51\x04\xe9\xac\x5b\x27\xc4\x6b\x9f\xcf\x29\x32\x5f\x5b\x5b\x90\x8f\xb8\x94\x89\x3b\xac\xe1\x0b\x12\x17\x5b\x13\xf8\x3a\xfa\xb6\x66\xe0\x58\xd3\x24\xa0\xfc\xf8\xba\x52\xb2\x86\x72\x2d\xd9\x51\x80\x04\x6c\x7e\xaf\x49\xfb\x00\xe5\xaf\x81\xca\xaa\x0b\x58\x0a\xfd\x45\xcb\x6b\x24\xd7\x22\x1f\x01\xdd\x5c\x40\xbf\x87\xf9\x80\x7e\x6b\x33\x6f\x00\x8b\x52\xb6\xd4\x5a\x94\x72\x04\x97\x97\x66\xc5\x80\xb8\x90\x06\xba\x00\x75\x19\x40\x5d\xd2\x80\xd4\xfc\x46\x03\x8b\x0b\x49\xe2\x10\xf0\x50\x6b\x3b\xed\x59\x8c\x02\xa1\x69\xb2\xaf\x6e\x71\x87\x5a\xfa\x01\x28\xe3\x45\x05\x18\x6e\x86\x32\xcd\xd7\x75\xf4\x1d\xf0\xfe\xf1\xd5\x3a\x63\xde\xd7\x68\x9a\x18\xde\x82\xb4\x72\xa5\x05\x52\x97\x83\x81\xcb\x94\x31\x24\xdc\xbc\x8e\x5e\x34\x0d\x97\x94\x33\x81\x6b\x22\xf6\x6d\x91\xff\xeb\xe8\x32\x02\xec\x7b\x3f\x03\x96\x1f\x5f\x6d\xdf\x00\x4e\x97\x0d\xc0\xf1\xe3\xab\x97\x2d\x35\x6f\x41\x15\xe8\x6d\xda\xf4\x48\xa4\x66\xf7\xed\xa0\xea\x5a\xc7\x76\xa5\xd5\xb5\x67\xfb\x96\x0e\xa5\xea\x82\x5b\xb5\x11\xe7\x53\x24\x5e\x7e\xee\x01\xd7\x02\xb4\x1d\xc0\x0a\x2b\xc4\x61\x35\xf3\xd8\x3a\x98\xae\xb5\xea\x65\xf3\xec\x48\x51\x1a\xd2\xc6\x05\x2d\x2a\xd7\xb1\x2f\xe8\x10\x74\x01\x59\x93\x38\xf8\x70\x4d\x6b\x2f\x9b\x49\xfb\x5a\xc3\x1f\x92\xe7\x17\xb4\x3e\x94\x30\x29\x60\xcd\x5a\x19\x00\x62\xdc\xc7\x66\x4c\xdb\xe2\x4a\xbd\x6c\x03\x68\xba\xb0\x01\x3e\x0c\xba\x9d\x66\x46\x70\x80\x9c\x24\x66\x49\xf3\x02\xea\x02\x8c\x4b\x5b\x13\xd5\xb7\x3d\x50\x13\x44\xc5\xc5\xa8\xfb\xc6\xee\x6a\x8b\x57\xf7\x0d\x42\x95\xdc\xdb\x0b\x35\xfb\x5a\xfb\x06\x99\xf4\xae\xce\x06\xc0\x1a\x10\xeb\xd0\x45\x06\xc7\xde\x53\x11\xe5\xb6\x01\xb6\xb5\xb8\x1b\x40\xff\xf1\x25\xfd\x4e\x80\x78\x78\x6d\x17\xa0\x37\xea\x48\xe9\x5a\xce\x1a\x4c\xac\xa4\xb3\xf1\xfa\x5a\xa3\x76\x41\x3e\x7d\x4d\xc3\x35\x0a\x40\xf1\x96\xe9\xdf\x30\x5f\xd5\x1d\xd8\xdb\x04\xac\xdd\x74\xa5\xc9\xb5\x99\x32\x82\xb5\x23\xda\x96\xf6\xdf\xea\x9a\x79\xb8\x35\x43\x0c\x60\x4d\xa5\x74\x5c\x01\xab\xb9\x4a\x0b\x4b\xb2\xed\xfb\xa0\xf1\x45\x9b\xed\x3a\x98\xae\x75\xc2\xb5\x2d\xc0\xb9\x8a\x68\x42\x4c\x84\xb5\xee\x53\x18\xb9\xa7\xd1\x3d\x48\xb8\xda\xb0\xa5\xed\x84\x68\x86\xc5\x9a\x93\xdd\x2e\x6d\xa4\xc1\x72\x25\xf5\x5f\xb0\x0c\x49\xfd\x0d\x66\x3a\x2c\x79\x9d\x6c\x5f\xcb\x78\xc7\xde\x3b\x20\x87\xc6\x05\xd8\x0c\x0e\xc0\x6e\xb0\x01\xbe\xcc\x6e\xa8\x2c\x4d\xe3\xd8\x3b\x2d\x2f\x7e\x2a\xe3\xcd\x02\xa6\xa6\xb3\x78\x20\xd3\x32\xcd\xc1\x1c\x3e\x24\xac\x1d\x07\x8c\xf8\x61\x72\xa7\x0c\x41\x0b\xce\xf0\xf2\xd9\x27\xa3\x86\x40\xf3\x5f\x56\xf0\x25\x79\xf3\x37\x10\x84\xea\x05\xa8\x13\x55\x06\x5d\x81\xc7\x7f\x5b\xf9\xfc\x6f\x41\x4f\x04\xbb\x42\x22\xc1\x6f\xa5\x3a\xb6\xf7\xeb\x68\x42\x63\x6c\xb2\x49\x5c\x87\x8f\x88\x51\x56\xe5\x7e\x78\xe1\x47\x11\x53\xde\x4e\x13\xd6\x10\x17\xea\x87\x91\x18\x32\x85\xf4\xc3\x7b\x7b\xc8\xe6\xd1\x0f\xf7\x39\x4e\x37\x73\xf2\xdd\x92\xa2\xfa\x71\x6e\x86\xa6\x5a\xf1\xd9\x32\xc4\x92\xfa\x51\x2b\x90\xbe\xf3\x14\x8d\x6b\xed\xaf\x7e\x78\x83\x8d\x6b\x31\x9a\x7e\x78\x67\x8e\x6b\x09\x89\xfd\xa8\x1b\x90\x70\x29\x69\x53\xfd\xf9\x3c\x1e\x97\x36\xc0\x41\x91\xe8\xe9\x48\xc9\x21\xc6\x72\x02\x69\x9e\x3e\x8d\xdc\x66\x73\xa5\x19\x9c\x3e\xd8\x0a\x95\xa7\x78\x27\xb8\x4c\xf1\x4e\x50\x99\x9e\xfd\x91\x8a\x66\x6c\x29\x7c\xac\x9a\x0c\x4f\xfb\xa5\x78\x74\xad\x7b\xc1\x47\x05\xd4\x09\x63\x96\x3b\xc4\x80\x61\xe9\xa3\x89\x5b\xf9\xa4\x1e\xcd\xd3\x47\xf3\x0d\x03\x9c\x4f\x98\x21\x4e\xdd\x8e\x02\xf0\xf0\x5a\xa6\xbf\xb5\xc3\xcd\x9e\x86\x6c\x1f\x8d\x45\x6f\x4b\x94\xee\x87\x89\x78\xb4\x45\x5b\xfd\x38\xe9\xdb\xa4\x95\x65\x6e\x6b\x61\x65\x4c\x5b\xc0\x64\xc2\xc0\xcc\xf2\x45\x56\x41\x1c\xb8\x59\x92\x19\xdd\xe3\xd9\x01\x5e\x3a\x4c\xfd\x59\x37\x55\x79\x3f\x0d\xb1\xb2\x7e\xf0\xd9\x10\xb3\xf7\x96\x1d\x43\xcc\xde\xac\x60\x88\x67\xf4\xc3\x47\xc4\x18\x3e\x9e\xcd\x35\xc7\x60\x95\x07\x50\x51\xcd\x02\x54\x55\xd6\x81\x34\xd6\xfd\x3b\xa1\x58\x55\x2f\x55\xad\x40\x5e\x64\x30\x13\x5f\x6d\xc1\x6c\x8a\x6e\xcc\x23\x87\xad\x09\xc7\xfe\x01\x17\x09\xb4\xb4\xa2\x9d\xb9\x8f\x60\xaa\xc9\x35\xa2\x61\x50\x16\x4e\xc6\x0d\xad\x9e\x29\xf5\xd4\xfb\xb4\x1b\x92\x90\x97\x90\xdd\x00\x5f\x3e\xb5\x0c\x4e\xce\x6f\xa8\xf0\xd1\xcd\x4b\x7c\xc4\x8d\xc7\x80\x1f\x6c\x80\xee\x88\x5d\xf7\xb0\x1f\xe7\x60\x37\x3d\x4d\xb4\xc8\x3e\xe3\x39\xa0\x0e\x4a\xe1\x1e\x4c\xd2\xcb\x1c\x82\xe5\x7b\xd9\xa6\x3d\x4c\x66\xf7\xa5\xba\xd7\x61\x4e\x73\x37\x9d\x0f\xc7\xe1\xcd\x71\x1b\x8b\x7d\x33\x69\xdd\xd6\xef\x0e\x58\xc8\xfd\x80\x28\x7d\x92\xdd\x56\xed\x0e\xd8\xcd\xfd\xf4\xcc\xb1\x45\x6e\xab\x5b\xc7\x61\xf9\xe1\x7e\x9a\x93\x42\x39\xf7\x6b\x9c\xbf\xe1\x78\xbf\x72\x84\xe8\xd3\x39\x6c\x2d\x39\xbd\xcc\x53\x56\x91\xbd\x22\x4c\xce\x5b\x27\x5c\xe9\x67\x4a\x9b\x2c\xf3\x9f\xd2\xa1\xca\x9f\xd2\xa9\x52\x23\x35\x65\xfa\xa8\x87\x77\xfb\xb4\xed\xa3\x22\x74\x4c\x59\x3f\xea\x55\x03\x1d\x3f\xbe\x0a\x67\xe5\xbc\xd7\x6a\x55\xc4\xb6\x29\x0b\x48\x65\x3f\x4e\x4c\x20\xc5\xc2\xca\xf4\xf1\x58\xcf\x42\x97\x1a\x5b\xe9\x67\x1a\x92\x4f\xed\xbc\x52\x79\xfc\xf8\x3a\xb7\x33\x2d\xcd\x05\xf5\x40\x8b\x9c\x5a\xb7\x34\x33\x65\x28\x29\x97\x19\xf8\x14\x9d\x16\xa8\x76\xde\x3a\x5c\x6a\xab\x7c\x69\x25\xbd\xf8\x6c\x9f\xb7\xbd\x7b\xbb\xc9\x74\xde\xd2\xce\x2b\xd2\xe9\xbc\xb5\x8c\x05\xc6\x3d\x4d\xf1\x65\x0c\xe6\x53\x14\x5f\xc7\x48\xe9\xda\x56\x63\xcf\xe0\x64\xa6\xab\x23\x93\xaf\x8d\x55\xc6\xc1\x58\x6d\x90\xdb\x36\x2a\xcb\x6a\xf3\x5b\x53\x32\xca\xd5\x3d\xa3\x95\x19\xa7\x6e\x0d\x9c\xa5\xd4\xd7\xed\x53\xd9\x56\x8b\xca\x10\xa4\xd8\x97\xac\xd5\x14\xc1\x54\x36\xf4\xb4\xc1\x67\xf8\xd0\x98\xd3\x16\x36\x54\xc8\x39\x45\x4d\xa5\x7b\xdf\x4d\x89\x19\xc7\xe5\xdd\x31\x6d\x1d\x2a\x97\x15\xb0\x69\xe3\x4f\x41\xad\x9a\x98\x7d\xaa\xf7\xce\x9c\x36\x9f\x20\xeb\xce\x69\x03\xca\x01\xc5\xc8\x14\x54\x36\x66\x75\xda\x0c\x0c\xe3\x98\xd3\x26\xde\xdf\xea\x36\x0f\x27\xa5\x7d\xe1\x74\xd1\xae\x74\xb2\xd2\x19\xba\x8d\x41\x05\x95\x71\x4e\x89\x33\xa5\x57\x50\xd4\xca\x5f\x19\xeb\x5a\xe9\x52\x58\xe8\xe9\x85\x3e\xc0\x5e\x36\x0b\x34\xe6\x39\x6f\xd9\xf9\x6b\xca\x16\xa9\x8d\x0b\x74\xb4\x6e\x97\x4f\xef\xf9\x30\x2b\x62\x4d\x1f\x3a\x3e\x39\x07\xa7\x58\x5c\xdd\xc6\x77\xb6\x5e\x55\x2d\xaa\xda\x80\xa4\xd7\x9b\x53\x4e\xd9\xb0\xea\xee\x03\x74\x3e\xd6\x9a\x94\xa3\xa5\xfb\xb6\xca\xf6\x74\xbf\x66\xea\x64\x23\x3e\xd6\xde\xaf\x87\x65\xdd\x29\xf3\x57\x39\x2c\xa5\x4e\x59\xc0\x4a\x19\x69\xf3\xb1\x6a\xee\xf9\xee\xb9\xa0\x23\xb8\x88\x47\x7c\x70\x79\x2f\x88\x89\x79\x88\x45\x20\x93\xce\x87\x96\x78\xbf\x52\xb6\x18\xc6\x80\x0b\x88\xbd\xd7\xc3\x52\xc6\x7c\xac\xf5\xae\x28\x99\xf3\x21\xff\x44\xc9\x88\xd6\x6a\x97\x16\xac\x17\x43\xa8\x05\xd6\x27\x7e\x5c\xcb\x91\x36\xa7\xa0\xd4\x7c\xac\xef\x6a\x6a\x2e\x2a\x19\x17\x23\x5a\x44\x52\xeb\x19\x68\x2d\xe7\x0e\x4b\x7c\xd8\x7f\xb6\x81\xd9\xe2\x1c\xa5\xb3\xeb\x64\xdd\x3b\x7a\x07\xcf\xc5\xfe\x8f\x9a\x99\x90\xb7\xec\x33\xbb\xeb\x24\xae\x17\x3b\x5d\x06\xbf\xe3\x62\xc7\xe9\x60\x38\xea\x99\x1e\xee\xbf\x62\xab\x8f\x45\x76\xf5\xca\x0c\x2e\x76\x52\xb3\xfb\x1e\x22\xc2\xbd\xa5\xf7\x35\x86\x96\x99\x90\x81\x70\x64\xa5\x65\x21\x1c\x3b\xdf\x89\xcf\xb4\x12\xc8\xfb\x3d\x35\xff\x9a\x71\xcb\x84\x58\x51\x3a\xe7\x63\x69\x58\x15\xa5\x67\xca\xa2\x58\x5b\x56\x73\xb1\xa3\x8a\xfa\x35\x1f\xf2\x06\x5c\xec\x5e\x1b\x1c\xeb\x99\x65\x99\x6b\x80\x0a\x5a\x10\x34\x05\xa5\xea\x63\x11\x68\xa6\x62\xb1\xad\x3a\x60\x9e\x0f\x89\x0b\xe3\xd3\xca\x3a\xa7\x8b\xc5\xcd\xa9\x03\xff\x38\xd8\x73\xcf\xb5\xcb\xce\x8d\x69\x7a\xae\x5d\x56\x4e\x48\xf9\xb9\x36\x52\x41\xd9\x99\x4f\x6d\xa4\x66\x69\x7d\x3e\xd7\x46\x2a\x98\xc8\xe6\x73\x6d\xa4\x73\xeb\x69\xa5\x69\x7b\x54\xa0\xfe\xe3\xeb\xdc\x4b\xda\x5c\x03\xec\x57\x5a\x59\x1b\xa9\xef\xa9\xb9\x0e\x84\x7e\xa6\xbf\x35\xbe\xe3\x48\x0f\xcf\x1f\x5f\x67\x81\x35\x3d\xd7\x46\x3a\xcb\x95\xef\xde\x82\xe8\x7d\x6d\xa4\x52\x4f\x7a\xd0\x46\xea\x6c\x8f\xe7\x90\x99\x07\x3e\xf5\x5c\x1b\xe9\x2c\x2d\xdf\x89\x5d\x6f\x29\x93\x28\x10\x3c\xd7\x26\x2b\x1b\x1c\xed\xb9\x36\x59\x39\x59\xea\xe7\xda\x64\xe7\x05\xd1\x3f\x75\xea\x5e\x5b\x6a\xae\xf1\x5d\x7b\x7a\x90\xa9\xbc\xa7\x87\xc5\xf2\xaf\x96\x56\xd6\x26\xeb\x3d\xfd\x69\xfd\x3e\x6d\xbe\x45\x84\xcc\xa0\x85\x21\x18\x3a\xa6\xe7\xd4\xb4\x76\x5d\x18\xed\xda\x80\xc7\x75\xe6\xbb\xba\x66\x82\x83\xec\xb9\x36\x60\xd9\x4b\xbe\x5b\xe3\xab\x2d\x65\x3a\x2f\xc3\xf8\x9f\x6b\x07\x9e\x21\xc2\xe7\xda\x81\xe5\x33\xd9\x6b\x07\x96\x7a\x7e\x17\x8b\xa0\xaa\x53\x5b\x30\xd8\x3c\xb4\xf2\xcc\xd3\xda\x9e\xa5\x7d\xfa\x7f\xad\xb2\x92\xb2\x45\xbd\x17\x92\x94\x6c\xc5\xc7\x91\x75\x71\x24\xc8\xd8\xc1\x4d\xfb\xb3\x5c\x81\x8a\xc8\x29\x1f\xae\xe1\x8f\x10\x97\x3c\xaf\x23\x93\xbf\xf6\x67\xf9\x2c\x9a\x9c\xdc\xe1\xd9\x4f\x7b\xeb\x90\x8d\x9e\x6b\x7f\x5e\xfb\xa7\x87\x35\xfa\xb1\xa5\x15\x0b\xe5\xf9\x6e\xf1\x9f\x2d\x1b\xc4\xce\xee\x0f\xf4\xfa\xf1\x75\x1d\x88\x36\x92\xb1\x8f\x1c\xd8\x2f\x39\x61\xd2\xca\x6b\x6d\xcf\x82\x29\x76\xbe\x64\xf0\x3e\xe1\xc4\xaf\xb5\x3d\x8f\x03\x5c\x5e\x92\x36\x90\xb6\xe7\xcb\xc6\x32\x6b\xba\xd3\x2e\x89\x6b\xa4\xcd\x35\x3e\xb4\xcf\xf9\xd2\x39\x17\x42\x7f\x39\x16\xe4\xd3\xdf\xd2\x45\x43\xe8\x2f\x39\xa9\xca\x91\x1e\x1e\x0a\x6a\x0b\x2e\x6b\x7c\x03\x06\x20\x47\xc7\xde\xcf\x40\x52\x13\xf2\xdd\xb0\xa5\x97\xef\xd6\xf6\xbc\xae\xe0\x29\x51\x26\x67\xc4\xcb\x41\x23\x67\xca\xaa\xb6\x04\x6d\xca\x43\x1f\x06\xf7\xd2\xf6\xdc\x47\xca\xda\x8f\xaf\x0b\x9b\xde\x7c\xad\xed\x79\xb5\x9a\x56\x86\xc5\x39\xa0\x35\xbe\x88\x64\x32\xee\x1c\xfd\xd3\xc3\x62\x3f\xfd\x48\xcd\xa7\xa4\x81\x0a\xf4\x5a\x73\x06\xbd\xc8\xec\x73\x9c\x9c\xb9\xb2\xfa\x1c\x03\x96\x66\xa3\xcf\xb9\xb3\x79\x64\xf4\x29\x3d\xcd\xe8\x80\x8c\x00\xf0\xd2\xfe\xac\x1c\xc1\xb2\x07\x95\x51\x03\x2d\xa1\x0e\x1b\xe9\x7c\xad\xfd\xf9\x91\xff\x5e\x92\xc4\x7a\x08\x46\xdb\xf3\x84\xfb\xc9\x6e\xd4\xf6\x3d\x3d\x4c\x41\x41\xd4\xca\x7d\x5a\x79\xfe\xf8\xea\xd7\x48\xd9\xda\x81\x35\xa4\x25\x99\x0d\x5b\xf5\x94\x13\x6a\xaf\x90\xf2\x6b\xed\xc0\xb6\xb7\x40\x87\x20\xbe\xd3\x06\x2c\x1c\x90\x2f\x6d\xc0\x0b\x4e\xfc\x5a\x1b\xb0\x9c\x9f\x56\xc4\x7f\xe0\xe7\x2f\x6d\xc0\x33\xf3\xa2\x30\x93\x12\x12\x99\x0e\xb3\x08\xb4\x36\x60\x84\xbb\x97\xe3\xb2\xb2\x91\x12\x98\x05\xf4\x94\xf9\x25\x90\x2c\x27\x23\xdf\xc9\x74\x02\x67\x7c\xcb\x42\x51\x18\xed\x5b\x02\x7f\xa4\x5e\x7c\x6e\x9c\xc0\x6f\x9d\x8f\x1b\xa2\xc9\x7b\x6d\xc0\x56\x3f\x35\xed\x2c\x6d\x40\x97\xac\xcc\xf9\x6e\xad\x5f\xb4\xa2\xb7\xf4\xe4\x12\xe1\xf9\xad\x03\xf2\x82\x7a\x71\xdd\x9d\xf9\x50\xc6\x6a\xe4\x9d\xf7\xda\x81\xad\xd6\x34\xb3\x58\x68\x24\x5b\x5b\x08\x47\x69\xdf\xf3\xe5\xb7\xb6\x67\x0b\xa6\x3e\x3d\x21\xe6\xf7\xda\x82\x65\xe8\xdc\x2b\xb8\xd8\x84\xcb\x02\xaa\x1c\x0a\xdd\x90\xfd\x10\x14\xc9\x0f\x21\x41\xa1\xd8\x17\x76\x5d\x29\x91\x79\xf9\xf3\x91\x9d\x61\x2d\x35\x65\xa4\x95\x06\x5d\xfa\x26\x73\x90\x05\x93\x62\x1f\xd8\xd2\xf1\x03\xca\xf1\x20\xad\xb3\xd8\x27\xb6\x1f\xfb\x06\x9a\x52\xe8\x2e\x9b\xe1\x16\xf8\x74\x2f\x6e\xf7\xc0\x48\x2b\x16\x57\xba\xc3\x79\xe1\xc5\xa5\x97\x29\x1e\xd7\x01\x84\xfa\x06\xf0\x76\xab\xae\xd8\x65\x01\xdd\x47\x03\x2a\x0b\x12\xc5\x16\xdb\xda\xbb\x42\xfa\x04\x9d\x82\x3a\xd0\x25\x28\xdf\x35\xd9\x2a\x2a\x50\x57\xd9\x01\x34\x64\x50\xdf\x80\xee\x55\x76\xa6\xcd\xa9\x9a\x03\xe8\x21\x28\xad\xc8\x0b\x50\x52\xf6\x52\xd9\x05\xf4\x16\xe4\x36\x65\x0c\xe9\x0a\xd3\x15\x64\xdb\xce\x09\x74\xa8\x66\x20\x8d\x8f\x79\x19\x38\x0f\x07\xe0\x90\xa9\x6e\x18\x35\x07\x7a\x6c\xb5\x05\x5c\x85\xfb\x15\x48\xad\x32\xa5\xb2\x7c\xf4\xfd\x3a\x80\x34\x6b\xe7\x05\x74\xba\x8f\x13\x50\xd3\x76\x05\x6a\x2e\xcc\x97\x9a\x37\x48\x45\x76\x8f\x6e\x19\x6f\x41\xb7\xaa\xf6\x01\x38\x0d\xa6\xee\xc3\x0d\x55\xc0\xa7\xfc\x52\xa9\xab\xa9\xfb\x8c\xeb\xed\x71\x51\x28\x49\x6b\xab\x29\x95\x95\x64\xab\x83\x91\xc9\xdd\x65\xeb\xfd\x82\xbc\x76\x0d\x48\x6b\x77\xa6\x1d\xad\xdd\x05\xb6\xf6\xe0\x9c\x81\x84\xc0\x95\x56\xb4\x76\x6c\xbf\xdb\xf4\x77\x7a\x06\xa6\x25\xfc\xec\x16\x29\xd2\x7d\xab\x81\xe4\x05\x85\xac\xac\x0f\xef\x0a\x94\x10\x28\xea\xec\x05\xe8\x72\x61\x03\x54\xa4\x78\x67\xaf\x48\x25\x5e\xa5\x03\x70\xb8\xb4\x02\xde\x06\xd3\xcf\x34\x98\x7e\x1e\x06\x83\xd3\x53\x6e\x3e\x0f\xe6\x61\xa7\x62\xaa\xca\x80\xb7\xb1\x7d\xa4\xdf\xf6\x0d\x72\x96\x7e\xbb\xa4\x87\x54\x95\x93\x11\x7a\x7e\xd8\xd1\xd6\xa1\x4b\x69\xaa\x7d\x63\xcb\x3c\x6c\x42\x86\x84\xa5\x9b\xf6\x8d\x0d\xeb\xc8\x93\x7d\x6c\x0c\x5b\xb6\xc9\x7d\xc0\x89\xa4\x9d\xb6\x33\x5d\x2a\xae\xff\x64\xa1\xa5\x81\xf6\x8d\x65\x90\x06\xda\xce\xf4\x2f\x0b\xd6\x3e\x76\x06\x39\xb5\x4d\xd8\xb3\x56\x25\x51\xd1\x16\xb8\xf0\x29\xc7\xb7\xfc\x7a\x55\x35\x3a\x74\xe9\x60\x7e\x2b\x7e\x0b\xec\x06\x53\x2a\xb7\x2b\xbb\x5f\xda\xe4\x2a\x64\xd4\x62\x22\x1b\xac\xc8\xd1\x2d\xfb\x38\x52\xd7\xc8\x17\x2f\xae\xad\xc4\xfb\x60\xfa\xa4\x35\x2e\xf0\x04\xd4\xdc\xd6\x40\xb2\xa4\xc3\x56\x9e\x26\x9a\xc1\x54\x4b\xff\x6b\x67\x4f\xd5\x5b\x63\x19\x40\x22\x8a\x9e\x3e\x5e\x9a\x12\x20\xf9\x62\xcf\x41\x2b\x0e\xe3\x18\xe9\xc3\x81\x1c\x83\xfd\x26\x4d\x6e\x81\x3b\xa0\xf0\x81\x3d\x5a\x65\xd8\x3b\x1c\xe9\x69\x1f\x3d\xdc\x42\x42\x7b\xbb\x3e\x90\x4e\xab\xe3\x00\xb2\x3f\x35\xdf\xbd\x35\x48\x37\x2a\xf1\x77\x35\x0a\x28\x27\xdb\xc6\xec\xbc\xa0\xe0\x06\x24\x6c\x8e\xd4\x14\x01\x33\xe9\x76\x2f\xee\xfd\xca\x87\xda\xf1\x6c\x8b\x97\x0f\x44\xce\x83\x97\x9d\xaa\x50\xec\xcb\xc4\x0d\x6e\x92\x2b\xbb\xdd\xa4\xc5\xae\xc4\xbe\x33\xab\x92\xde\xfa\x06\xb9\xbc\x4c\x93\xc7\x00\x72\x2b\xa9\xe9\xe0\x09\xb7\x62\xc9\x07\x6d\x6a\x81\x55\xdd\x07\x12\x03\x86\x8b\x4a\x4a\xe9\x5b\x09\x24\x06\x07\x57\x90\x94\xd2\xae\xdd\x88\xbe\xc5\xf2\x2d\xa2\x2d\xc8\x0c\xc4\xcb\x36\x14\xdd\xb3\x17\x7b\x91\x17\x68\x53\xb8\x47\x35\x36\x71\xaa\x66\xc7\x62\x19\x9b\x23\xc4\x86\x8c\x77\x0b\x7c\xb8\xf4\x02\x7c\xe9\x66\xca\x6e\x70\xb7\x95\x1a\xca\x1f\xbb\xcc\xd2\xed\x90\x5a\x55\xc6\xd1\x51\xf8\xdc\xf2\x21\x52\x6b\x36\xb7\x95\xe1\x2b\x35\x57\x33\x21\x8e\x43\xbb\xa6\x39\x38\xa3\x8c\xa2\x7d\xd1\x8b\x59\xe2\x28\xe2\x9f\xcd\xc6\xb9\x32\x8a\x03\xf2\x2c\x06\x96\x51\xb1\xaf\x5e\x80\xb2\xd9\x60\x7f\x2c\xc3\x81\xe6\xad\x98\x6c\x87\x82\xbd\x17\xe8\xd9\xb8\xac\x10\x14\x70\xbe\x34\xa2\x66\x63\x69\x19\x4d\x73\xd5\x1c\x97\x53\x86\xa3\x91\x5b\x31\x21\x8d\xe6\xab\x20\xdb\x45\xa9\x62\xdf\x5a\x31\x2f\xb6\x93\x6f\x6f\x75\xf3\xf0\xbb\xd5\xae\xbd\xb8\xe5\x21\x26\xdf\xaa\x99\xf3\x70\x20\x67\xab\xad\x00\x5e\x06\x1b\xe0\x30\xe8\x96\x6d\xc5\x6e\x1c\xb6\x43\xf6\x80\xbd\x9d\xe6\x46\xe3\xe9\x25\x3b\xcd\xb9\x86\x14\xf4\x05\x1a\x67\x6f\xb0\xd2\xbd\xe1\x87\xa5\xf2\x76\x06\xd4\x61\x5c\x77\xef\xdb\xf1\xf6\x6c\x9c\x8d\x52\x0f\xf0\x04\xc9\xb7\x38\x5b\x3b\x7d\x00\xde\xba\x55\xb6\xc0\x6e\x50\xc6\xc0\x30\xa1\x5b\x82\xe6\x02\x35\xcf\xf7\x4e\x65\x73\xff\x7b\x1f\xc6\xd9\x23\xba\xf7\xdb\x58\xf9\xa4\xb8\x0f\xdf\xa5\x59\xba\xd1\x77\x4c\xfd\xf6\x5d\xaf\x61\x2b\x59\xb9\xcb\xbc\x7f\xf3\xec\x94\x5b\xb7\x82\x76\x22\x51\x16\x78\x1b\x34\x8e\xa7\x51\xbe\xcc\x61\xef\x4b\x86\xd6\xcd\x11\x67\xe5\xbe\x7c\xa7\x85\xb9\xb9\x15\xb6\xbd\xc0\x66\xd0\x64\xd5\x76\x4a\xa5\xb1\x35\x5b\x46\xcb\x7d\xfb\xaa\x09\x12\xe9\x6d\x87\xc6\xb6\x9b\xaf\xdd\xd3\x91\x84\xbb\x97\xe8\xb6\xe3\xa1\xd9\xa1\xbe\x40\xe1\xec\x40\x8a\x72\x4f\x6f\x32\xdb\x47\xcb\x3d\x1d\x36\x5d\xcd\x06\x6f\x19\xc6\x57\x65\x77\x64\x5f\x61\x73\xc4\xcb\x02\x1f\x06\x8d\xf3\xc3\x46\x2e\x1b\x8f\xcb\x2d\xdb\xd1\xde\xba\x85\xe8\x5b\xd6\x9b\xbd\x35\x4b\xe6\xf7\xcb\x5b\xb0\x9b\xc3\xde\x2f\x2b\x5b\xf6\x3f\x2c\xd0\xdf\x32\x93\x52\xc1\xf7\xd6\xcd\xba\x6e\x69\xa5\xfb\x05\x53\xb9\xa5\xee\x2d\x70\x07\xf4\xb7\xde\x91\xf7\x5b\x1a\x4a\x63\x37\xdf\x6f\xdf\xae\x40\x60\x9f\x9b\x68\xff\x1a\x16\x2d\xe7\xe6\xed\x6b\x4b\x47\x99\x45\x2d\xb7\xe1\x69\x9f\xc5\x2c\x07\xd9\x60\xfa\x16\x59\xb3\x2b\x78\x81\x9a\xab\x21\x0b\x5c\x99\xba\x0c\xb5\x3a\x32\x78\x2a\x26\x00\x25\x6d\xfa\x82\x4a\x1b\x26\xd0\x79\x69\x5e\xfb\x66\xfd\x6b\x3a\x5e\x21\xa7\xcf\x74\x74\xc1\xd8\x3d\xaf\x53\x91\x5e\x7b\xb7\x7a\x5b\xa6\xf9\x42\x44\xa6\xd9\xad\x0e\x05\x8b\xe1\x1b\x4d\xa8\x72\xd3\x51\xff\xdd\xce\xc7\x05\x5e\x02\x7d\xe6\x4e\x47\xf1\x77\x2b\xea\x05\x27\x6c\xdf\xcc\xcb\x26\x61\xe7\xd5\x14\x6a\x87\xe8\xde\x37\x33\x91\xe9\xf8\xe6\xb3\x7a\xa3\xd8\x14\xbb\x77\xa8\x1b\x03\xe0\x35\xcc\x7f\x6d\xe5\xdb\xfb\xee\xa3\xd7\x86\xbd\x3d\xaa\x91\x8d\x1c\x7b\xe4\x72\x5b\x32\xf6\x8a\xb8\x8d\x1e\xde\x77\x06\xf8\xa6\x23\x33\x91\xf9\x1e\xcc\xd5\xaa\x5c\xfb\x36\x5d\x59\xda\x40\xed\xbb\x3c\xb1\xdd\x06\xa9\xda\x0f\xdf\xcd\xd0\x3d\xaa\x57\xed\xdc\x65\xac\x42\xa3\x12\xde\xd8\x6d\xab\xab\xdd\x57\xb3\xba\x3d\xe1\x0b\x7c\x0b\x14\xa7\xab\xdd\xa7\x02\x31\x3a\xb5\x5f\x62\x6d\xdd\x47\xd7\x02\x5d\x59\x36\xd6\xea\xf0\xbc\xbd\x1f\x12\xee\x17\xf8\x32\xe8\x96\x9b\xcd\xa3\x36\xd3\x57\x07\xd0\xed\xdd\xe7\xdc\x02\x5d\x79\xb8\xb2\x2f\x6b\x54\x47\x18\x54\x6b\x6e\xeb\x8c\x34\x56\xf6\x6d\xf6\xc2\x10\xcc\x09\xba\x2e\xc9\x08\x94\x69\xbb\x30\x04\x07\x2b\x74\x1b\xef\xab\x65\xe6\xbd\xfb\xac\xaa\xfd\x69\x62\x28\xcd\x23\x7a\x1b\x67\x5d\x65\x59\xa0\x36\x59\xd7\xcd\x94\x57\x1d\x9b\xe7\xca\xc4\xb0\x40\x3b\x51\x53\xea\x25\x73\xec\xf0\x02\x1f\x06\x4f\x83\xe2\x22\x5d\xf7\x33\x5e\x75\xec\x36\x36\x5a\xbd\x5f\xa0\x0e\xa7\x4d\x9a\x6a\x1d\xbb\x38\x41\xaf\x1f\xf0\x36\xa8\xe5\x1e\x87\x36\x68\xaf\x97\x9b\x3a\x3c\xb1\xeb\x9c\xfb\x86\xef\xaf\xba\x1e\xdf\xf0\x08\x8a\x89\xbd\x4a\xba\xa8\xc3\x97\x56\xfb\x79\x54\xc0\xa7\x41\x63\xe1\x4b\x98\xd5\x91\x0e\x75\xf8\xc6\x60\x3f\xbd\x26\x83\x5b\x58\x19\xee\xa5\x45\x68\x0e\x4a\xae\x43\xa7\xc2\xde\x4f\xfa\xbd\xec\x2f\xda\xa9\xac\x80\xa1\x25\x22\x77\x40\xb1\x63\x9b\x11\xeb\xe8\x26\xc9\x8b\x79\xed\xc3\x0e\x33\x53\xf7\x18\x16\x81\xec\x86\xab\x83\x8b\x3d\xba\x2b\xf2\xaa\xc3\xb7\x30\xba\xed\x41\x0b\xf4\xbd\xe6\xba\x03\xba\x65\x93\xf3\xb0\xce\xd8\xaf\xe1\x11\x3d\x7c\x6b\xd5\xae\xd5\x3a\xe4\xcf\xd8\x7b\xdb\x3d\x84\xb7\x23\x11\x0e\xe6\xca\xa7\x7c\x77\x40\x54\xbd\x37\x93\xa4\x03\xa7\x17\xf8\xb2\x49\x5a\x68\xdc\x8e\x86\x6e\xb6\xd8\x2c\x50\x8b\x62\xff\x67\xbd\x2d\xf2\x75\x7b\x27\xea\x7d\x99\xd1\x5b\x65\xae\xb7\xa2\x5e\xf7\x6e\xa5\xb3\xde\xcd\xa4\x31\x24\x3e\xd5\xbb\xab\xe5\x6e\xcd\xb2\xde\x8a\xdd\xdc\xbb\x4f\x94\x7a\x3b\xf4\xa0\x0f\xb0\xb2\xf2\x56\x9a\xb9\xc8\x2d\xfd\x6c\xef\x0e\xaf\xa9\xf7\x33\x6b\xe4\xa6\x2c\x90\x77\x07\x53\x2c\xd0\xfd\x0e\x4a\x07\xa5\xc6\xd9\x12\xd1\x59\x25\xf6\xd7\xe9\x9d\xd1\x6c\x77\xaa\x53\xa6\xb6\x7d\x38\xf6\xa9\xce\x4d\x68\x0c\x5b\x7b\xea\x2c\xdd\x86\x77\x6f\xfd\x59\x44\xec\x63\xf3\x6c\xcc\xa2\x05\x1d\xe6\xa9\x75\xfa\xce\xf5\x70\x6c\x45\x9d\xba\x2f\xb8\x0f\x9b\x9c\xeb\xec\x7f\xe5\xe0\x5f\x90\xc2\x18\x3e\x90\xe5\x6c\xcf\xc5\xec\x76\x6e\xb4\x7c\x28\x8b\xe9\x99\x32\xb9\xe6\xf7\x7c\x38\xe4\x57\x4a\x99\x5c\x16\xdb\x00\x92\xc7\xad\xa6\xa6\x99\xf6\x07\x7c\xfe\xf8\x2a\xa7\xb9\xc5\x14\xc3\x2b\x36\x75\x2c\xe8\x6d\x6c\xe8\x5f\xce\x79\x9b\xb8\x16\xa4\xf8\x23\x9d\x93\x0b\x02\x71\xda\xd1\x16\xae\x1d\x74\xc6\xa9\x0f\x0f\x20\xf9\x61\x4a\xa0\x26\x7f\x7c\x1a\x95\x1f\xd8\xdb\x66\x2a\x66\xb8\x58\xb0\x5c\xd0\x4b\x03\x4e\x4d\xc5\x16\x1d\x83\xaa\x6b\x05\xca\xc8\xf8\x6f\xbb\xb2\xe8\x42\x41\xd8\x56\x0b\x16\x34\x8c\x69\x03\xbc\x85\x1b\xc3\x70\x34\xce\xc1\xca\x75\x89\xe3\x04\xf6\x2c\xd0\xfe\x1d\x66\xce\x52\xe3\x01\x85\xf4\x75\x72\xd6\x2d\xc8\xea\x0c\xd6\x15\x60\x41\x4b\x84\xdc\xb7\x2c\xa4\x3c\xe1\xdb\x08\x64\xad\x2d\x93\x6e\x57\xdb\x15\x68\xc8\xc5\xc3\xb4\xca\xb6\x6f\x3d\x7d\x41\x72\xae\x8d\x94\xbd\x3f\x01\x1f\x75\x0e\x22\x45\x3a\x50\xf9\xf1\x55\xac\x81\x2d\xa8\x3a\xde\xab\x02\x4a\x99\xab\x03\xc8\xbb\xa2\x04\xec\x56\x2a\x2e\x40\x45\x79\x6c\xe3\x5b\xa6\x3e\x87\x08\xcb\x21\x74\x0b\xf2\xbe\xdd\x81\x14\x6a\xc5\x88\x87\x45\x3b\x87\xe6\x2d\xf0\xfc\xf1\x75\x55\x66\x59\x97\x35\x6b\xb6\x92\x6e\x6b\x1e\xa7\xb9\xdd\xd4\x75\xcd\xba\x6f\xa9\x39\x3e\x31\x2e\x0b\xba\x7f\x0b\x6a\x5b\xe0\xc3\x2b\xc0\x38\x06\xea\x0f\x90\x90\x3b\x53\x26\x47\xcf\x41\x8f\xeb\x84\xac\x57\x86\x21\x67\xf2\xbe\x35\x3e\x54\x58\xc6\xbe\xb1\xcc\x03\xd2\xaa\x4c\xec\x14\x4d\xc2\x6e\xa4\x55\x94\xa3\x83\x8f\x64\xa5\x61\x63\xf9\x02\x75\x04\x04\x59\x49\x30\xd5\xae\xb5\x3a\x7d\xb9\xf1\x82\x7d\xe8\x42\x63\xdd\xb7\x1d\xe8\xb7\x50\x9e\x05\x5d\xda\x05\x29\x93\x4f\x0c\x1e\xa5\xc0\xbd\xa3\x41\x9f\x92\x2f\xeb\xbe\x05\x9a\x8a\x4e\x0a\xf4\xf8\x04\x04\x2d\xe8\x69\x64\x1a\xe0\x4b\x1f\x02\x99\x09\xb0\x5f\x65\xd8\xde\x07\xa4\x63\x99\x75\x94\x94\xd9\x9c\x48\x17\x8e\xe1\xb3\xe3\xa4\x3a\x86\xef\xd8\x37\x08\x42\xa6\xec\xfa\x1b\x34\x04\x6d\x40\xd2\xb7\x7c\xee\x4c\x9b\xae\xf7\x03\x54\xbd\xaa\x8e\x0a\xa8\x53\xc7\x2c\xb1\x66\x0b\xd2\xbc\x41\x81\x8e\xe0\xe3\x54\x99\x37\xb6\xce\x7c\x77\x29\xf0\x07\x54\x75\x6a\x5c\x9d\xb5\x90\x8f\x7e\x6b\x20\x23\x0f\xe1\x68\xe9\xe1\xed\x51\x00\xae\x23\xb2\xee\x7b\xa0\x22\x08\xbc\xc5\x01\x1c\x32\x57\x13\x8b\x57\xe0\xd7\xf7\xbc\x3f\x41\x57\x0b\x9a\xbf\x85\x63\x56\x02\xf5\x1a\x92\xb1\x23\xf3\x8e\x02\x06\x0a\xcc\x3b\x4e\xa6\x6a\x9a\x52\x2c\x29\x10\x97\xd7\xb2\x56\x52\x63\xab\x2f\x64\x54\xc7\xe5\xd5\x7d\x4f\x59\x53\x34\x4e\x9a\xe9\xfe\x30\xed\xc8\x19\x77\xe5\xc3\xe9\x88\x44\xa0\xa7\x9a\xb9\x80\x44\x2a\xd0\xad\x0c\x1f\xe5\x64\xe7\xe8\x52\xe7\x5e\x0b\xc7\xd7\x54\xd8\xc9\x0e\x2b\x9b\xf2\x6b\x67\x39\x24\x48\x1f\xbd\xa6\x4c\xf1\x69\x47\xbe\xeb\x3a\xbd\xd2\xe8\x90\x87\x1f\x44\xad\x3f\x3b\xca\x7f\x81\xd3\xab\x53\x00\x9f\x3f\xbe\xae\x33\x8d\x0a\xd3\x23\x35\xdf\x82\xa8\x78\x83\x29\x85\xb7\x03\xf2\x18\xb0\x6e\x4c\xed\x1b\x07\xdd\x14\x7b\xe8\xec\x71\xc5\x0a\xd6\x8d\x55\x9d\xa6\xb1\x8b\x1e\xe1\x1c\x9f\xaa\xd3\xb8\x32\xac\x5b\xf3\x78\xa4\x13\x45\x24\xd6\x40\x50\x19\x0d\x59\x10\x3b\x40\xc0\x91\x5a\xbe\xcb\x50\x1d\x59\x78\xac\x93\xe5\x5b\x76\x6d\x5b\xc4\xd8\x6b\x1a\x3a\xdd\x10\x93\x60\xd1\x9f\x43\x69\x4e\xaf\x41\xaa\xae\x33\xe1\x18\xa0\x2e\x37\x5c\x69\xf9\xce\xcc\x63\x0f\x3e\x2f\xe3\xce\x7a\xc1\xe7\xd8\x14\x76\xd8\x14\xce\xf0\x87\x6f\x15\xc3\x85\xa4\x2f\xad\x2f\x3b\xa0\x3c\x05\x9f\x42\x26\x73\x00\x0e\xa1\x97\x42\x19\x54\xa1\x57\x3b\x64\x6a\xd9\xd3\x09\xc2\x50\xea\xca\x00\x85\x68\xf4\x48\x7e\x1b\x20\xd1\xef\xc5\x87\xf2\x10\x17\xce\xd7\x87\x2f\x0b\x42\x69\x0a\x54\x3c\xf6\x8d\x19\x91\x27\x67\x75\x49\x1f\xb6\x10\xa1\xbc\x12\xab\xb8\x47\xaa\xb2\xf7\x66\xec\x50\xbb\x6d\x40\x05\xe9\x44\x26\xa0\x6a\xc7\x61\x75\x44\x62\xb1\x4d\xb2\x3a\xee\x6f\x7d\xc8\x38\x6f\x9f\xb7\xec\x76\x45\xf7\x15\xe5\x11\x59\x90\x39\x13\xbb\xc6\xd1\x7d\x63\x67\x7f\xcb\x09\xb3\x10\x4a\x5d\x05\x64\xc0\xa8\x1f\x08\x32\x41\xc8\x82\x0c\x9b\xd8\x5e\x98\x76\xb0\xa9\x24\xc8\x1f\x67\x10\x92\x13\xa6\x64\x32\xc5\xe2\xf6\x91\x32\x16\x25\xa0\x62\xde\xb2\x26\x0e\x45\x86\x2e\x1d\xd3\xd7\x0e\x4e\x6e\x87\xf1\xed\x91\xba\x9e\x50\x09\x9c\xc3\xa1\x7b\x1b\x34\xac\xf0\xbc\x63\x40\x8a\x4f\xc7\xb9\x32\x7b\xf6\xcf\x5c\x68\x37\xc4\xe7\xd5\x02\x3f\x7c\xda\xb1\x71\x05\x7a\xe9\x08\xc8\x97\x72\x3a\x42\xef\x4f\x5f\x61\x86\x1d\x10\x76\x77\x06\x02\x39\x9a\x19\xe2\x15\x2c\x89\xbd\x35\xb5\xc0\xac\x09\xbc\xab\x69\x55\xd7\x16\x61\x9d\x4f\x73\x40\xc4\x0a\x05\xde\xad\x09\x49\xab\x43\x02\x7c\x0a\x75\xca\x23\xbc\x29\xf2\xae\xea\x6e\xbe\x20\x49\x44\x35\xfd\x9b\xe3\xa4\xfb\xc5\x0f\xcf\x2b\xdd\xcb\xca\xd5\xd2\x68\x18\x22\xad\x22\x12\xc1\x75\xad\x90\x36\x07\x62\x57\x07\xca\x55\xd4\x35\x07\xca\xad\x96\x98\xbb\xdb\xc1\x7f\x1c\x98\x8a\x78\x3b\xf6\xc8\x73\x0a\x79\xab\xd1\x53\x9e\xa6\x59\xa4\x09\xf9\xaf\x56\x55\x1a\x72\x8c\x0d\x9b\xe6\xe9\xa8\x9a\x10\x81\x8f\x5a\xd4\x0d\x85\xae\xad\x0f\x03\x5a\x4a\x3c\xd2\x89\x66\xa8\xa4\x1d\x31\x07\x44\x3f\x07\xa8\x61\xcd\x72\x48\xda\x6a\xa7\x00\x5a\xfd\x61\x35\x5f\x36\x6e\x21\xbf\xbd\xac\x3b\xee\x30\x77\x47\xa5\xb5\xe3\xca\xa7\xc2\x0f\xe1\x57\xa6\xd9\xba\x97\x94\x81\xed\xf7\x46\x14\x87\xa9\xc5\x64\xe4\x30\xb5\xba\xed\x69\xf5\xe1\x76\x4e\x40\x07\xa3\x07\x3d\xa6\x3d\xa0\xa6\x1d\x0d\xd4\x77\xf2\xf7\xc8\x7b\x8a\x54\xab\xd1\x73\x15\xa9\xd6\x0b\xd2\xaf\x22\xd5\x56\xd5\x80\x0a\x8d\x61\xa9\xe5\xfe\xab\xa1\x36\xdf\x47\xa9\x51\x64\x5e\x96\xe3\x51\x33\x15\x9d\xb6\xda\x49\x27\x1a\x17\xc4\x67\xe7\xe0\xd5\x53\xe6\x8d\x19\xc8\x3c\xef\x4c\x97\x5a\xb0\x1d\xee\xe4\x8b\x88\x98\x51\x08\x49\x2b\xf0\x18\xc5\x84\xd5\xf0\xf6\x97\xe3\x30\xd3\x8c\x64\xbc\x93\x13\xf5\xe5\x30\x69\x58\xf0\x6b\xb2\xec\x34\x23\xee\x78\xc2\x48\x1d\xce\x35\x38\x78\x5e\x18\x01\xd2\x0e\x74\x98\x05\xb2\xdb\xab\x70\xa4\x2a\x16\xab\x5c\x40\x18\x39\x58\x1f\x19\xe0\x8f\x8e\xac\xf2\x76\x60\x3f\xb3\xf3\x0e\x69\xa5\xea\xe5\x4e\x1a\x60\x37\xd8\x01\xc5\x91\xaf\x74\xb2\x38\x72\x19\xa9\x6a\x79\xe4\x0a\x68\xfa\x81\x3b\xc9\xe8\xdf\x0b\xdb\xf6\x6d\x31\xaf\xa6\x4f\x9f\xe9\x9c\xbe\x8a\xa4\xaa\x59\x92\xb7\xc9\x87\x09\x7a\x63\x33\x80\xaf\xbe\x31\xa7\x42\x6a\x72\x8b\xd6\xc8\x23\xb2\x3c\x1f\xbd\xa4\x1d\x11\x4c\x4d\x4d\x71\x39\xb6\xd7\xdb\x5c\xae\xa6\x51\x63\x7e\xa4\xf0\xa9\x89\x0d\x02\xe6\x30\xa0\xaa\xeb\x95\x17\x4b\xfb\x96\xdf\xea\x4c\x33\x96\xf3\x22\x21\xbe\x15\xb3\xd8\x3e\x1f\xfa\x44\xcf\x4c\x8a\x8d\x95\xa0\x63\x2e\x96\x15\x99\xde\x4e\x48\x76\x6f\x1d\xbd\xa5\x65\x58\x90\x13\xda\x85\xbc\x27\xa5\xb0\x13\xdf\xe2\x6a\x75\xa4\x21\xed\xa7\x2b\x1f\x76\x5d\x5d\x02\x59\xfb\xcd\x3e\xdf\x31\x03\x05\xd0\x12\xd9\x91\x76\xb4\x78\x10\xf0\xdb\x97\xec\x25\x94\x9e\x64\x96\xd8\x6c\x0c\x39\x1d\xeb\xb6\x28\xb8\x00\x4a\xf3\x3c\x53\x68\x7c\x3a\x50\x73\x9f\x15\x50\xaa\xa7\x64\xe6\x05\xdd\x2e\x4c\x2f\x16\x5c\x52\x68\x81\xec\xcc\x97\x6b\xbd\xcc\xd8\x17\xf4\xf2\x79\x11\x0c\xde\x3f\xbe\x4e\x1b\x92\x4e\x67\xbb\x58\x03\x03\x21\x93\x9a\x08\xf8\x74\x64\x5e\xf9\x20\x3b\xac\x0a\xe9\x08\x3f\x9d\xf4\xa2\x3a\xe6\xea\x74\xa2\x8b\x7d\x5c\x69\x95\x91\xa4\xd0\x72\x42\x07\x3d\x4b\x6b\x57\xda\x31\x1d\xa6\xcc\x42\x4d\xd9\xbe\xe3\xdd\x27\xa9\x32\xda\x91\x19\x52\x9c\xed\x6e\x01\xed\x74\x84\x60\xb7\xe3\xfa\x74\x80\xe0\x61\xc5\xe9\xec\xdb\xed\x61\xf2\xa1\x22\x20\x4a\xb0\x13\x95\x2a\xe5\xa6\xa0\xa5\x62\x8d\x93\x59\xbf\xbd\x7a\xac\x97\x7d\x24\x17\xf3\xea\xc8\x77\xa5\xc2\x13\xa8\xcd\xf6\xf9\x50\x07\xfa\xa7\xaa\x87\x9c\x2e\xa6\x6e\xe8\xa4\xcc\xd2\x6a\x90\x59\x02\xc6\x96\x29\x77\x2c\x42\xc9\xda\x65\x5b\x80\x8e\xa5\xcc\x3d\x08\xc4\xfd\x0c\xe4\xbb\x13\xf9\x92\x59\xf6\xe4\xec\x56\x21\x20\x90\xdd\x61\xab\x0d\x7a\x56\xf6\x8f\x5e\xfa\x00\x92\x42\x7e\x05\xa2\xcb\x03\x50\x12\x57\x6f\x40\x92\xb8\xda\x06\xa4\xf9\x68\x15\xc8\x79\x0d\x52\x66\xda\x2e\x41\x00\x6a\x0e\x02\x16\x5e\x5b\x4a\xc5\xe5\x77\x50\x37\xa7\x4c\x59\x48\x94\x5e\x64\x41\xdd\xa1\x8f\xdd\x87\x69\xcb\x87\x2c\x57\xbe\xf4\xc9\x92\x19\x31\x51\x36\x30\xd0\x9d\xa6\xed\xd3\xce\xdb\xe8\x51\xf5\xf6\x2a\x14\x46\x2d\xdf\xd0\xc8\xe2\xee\x37\x18\xd1\x12\xde\x11\xf0\xb3\xdf\xc1\x3c\x67\x81\xde\x35\xa5\x03\x5a\xca\x2a\xf9\x54\x84\xd1\xd2\xae\x89\xbd\xb0\x10\xd3\x2b\xc8\x97\xc8\x79\x95\xe9\x9d\x4e\x50\x92\xaa\xba\x4c\x75\x30\x18\xf1\xc7\x2d\xf3\x67\x9a\xc9\xf4\xe5\xf0\x4d\xab\x5e\xc1\x40\xca\xc9\xc2\x32\x1c\xdd\xcb\x30\x80\xe8\x7f\x07\xd4\x32\xf4\x40\x3e\x5e\x6b\x05\xb4\x24\xce\xb8\x0e\x48\xa1\x9e\x80\x3a\x79\xa0\xcc\x03\x73\xe8\x99\x6e\x7c\x68\x32\xf3\x07\x42\x17\x6c\x0f\xcf\xda\x79\x00\x49\xae\x1a\x1b\x90\x4f\xfc\x1e\x90\x75\xe8\x80\x3a\xf1\x59\xb2\x43\xba\x41\xbd\xd2\x89\x08\xe3\xf3\xe1\x74\x97\x29\x7c\xb8\x1d\xf0\x43\xb2\xba\xa8\x0c\x65\xc0\xf7\x8e\x50\x06\xe8\x12\x49\x94\x59\xba\x6d\x79\x0d\xf4\x94\x7e\x02\x46\x98\x2b\x32\x2b\x53\x06\xab\x0f\xa4\x0d\x0a\xdb\x53\x42\xdf\xea\x08\xaa\x05\x59\x0f\x05\x1f\x85\xca\xd7\x20\x8b\x68\x75\xa6\x19\xd3\x17\x6c\x19\x5f\xe3\xe6\x71\x16\xeb\x8f\xd9\xa0\xc5\x16\xb3\x9e\x42\x9b\x44\xae\x6f\xaf\xd1\xaf\xba\x56\x7b\xc0\xb6\x10\x7b\x94\x66\xad\x18\x7f\xda\xf5\xe4\x42\xd4\xc5\x86\xf2\x0f\x46\xe6\x11\x23\x85\x8b\xdb\xfb\x6e\xd8\xb9\x56\xdd\x0c\x8d\xba\x36\x3b\x8c\x1d\xc8\xf2\x37\xbb\xd9\x5e\xd4\x76\x8c\x03\xf0\xd4\x2d\xc8\x7c\x29\x0e\xc2\x2e\x53\xce\xe2\x5e\x3e\x35\x9d\x2a\x66\x4b\xa1\xae\xf7\xb0\xaf\x8a\x2d\x65\xec\xc0\x82\x88\x0d\x19\xdb\x0d\xc6\x8d\x82\x05\x5a\x68\x82\x6a\xca\xad\xf5\x4c\x2f\x3a\x8e\xf6\xd0\x50\xf1\x79\x94\x51\xc3\x4e\x6a\x0a\x75\x57\x07\xe1\xa2\xdc\xf6\xcc\x5d\xe9\xc5\xba\x7a\x4d\xbb\x52\x64\x33\x27\xba\xe3\xb8\x7f\x10\xf2\x36\xab\x80\x4e\x83\xe6\x04\x5c\x0b\xb4\x1d\x04\x96\x56\x1c\x45\xd1\xb2\xa2\x0e\x0a\x3a\x32\x65\xd3\xbb\x90\x6e\xa6\xb1\x67\xb9\xa7\xf9\x02\x47\x54\x99\x3a\x31\x47\x9a\x35\x5b\x08\xf6\x32\x9e\x5d\x99\x6b\xbc\x9b\x97\x1b\xaa\x18\xfe\x1b\x50\x31\x42\x03\x50\x92\xff\x91\xc2\xcb\x85\x1d\xd0\x0c\xef\xba\x00\xbb\x07\x5e\x01\x8d\x51\x0a\x7d\x84\xc2\xa8\x2a\x72\x14\xcc\x47\x09\x9b\x8f\x9c\xaf\x55\xa2\xd2\xc1\x66\xae\x3a\x95\x0e\x76\x61\x35\x4d\x21\x2d\x12\xad\x75\xa4\x13\x24\xf6\x02\xe4\x2d\x9a\x71\x8a\x15\x1d\xdb\x01\x04\x3e\x8c\x6c\x58\x54\xa8\x8c\x4c\x24\x57\xd9\x3b\xca\x5f\x55\x9d\x6c\x61\x41\xde\x01\x10\x8a\x12\x2c\x97\xce\xde\x76\x26\xe5\x3d\x07\x6c\xe5\x64\xe1\x84\x50\x0a\xe5\xa2\x9c\x9c\x82\xbc\xf3\x39\xd5\x95\x45\x79\xd5\xa5\xa5\x44\x3f\xa6\xb4\x09\x87\x14\x9a\x3a\x11\x74\x2a\xcc\x08\xde\xa8\x0c\xca\xd5\x2e\xe7\xd3\xa9\xb1\x6a\x76\xbe\x72\x28\x13\xc8\xb0\xa0\xf7\xe7\xae\xf5\xd9\x95\x2b\x99\xbc\x0a\x0b\x72\x5a\xba\x94\x79\x9b\x71\xee\x10\x01\x31\x02\x39\x70\x28\x1f\x9e\x32\x56\x55\x20\xdd\xe7\x64\x31\x9d\x1a\xf9\x62\x7b\x2a\x00\xe7\x68\x2c\xad\x92\x23\xef\x03\x9a\x3d\x6d\x69\x18\x81\x9c\x4a\x2f\xc8\xf8\xe2\x77\xda\x94\x26\x0d\x0d\x28\x2a\xab\x44\x30\x51\x4c\xcf\x42\x9b\x0f\x75\xe6\x1d\x2c\xba\x52\x81\xd5\x03\x21\xf7\x84\xb3\x71\x28\x9f\x26\x42\x34\x06\xe7\x09\xbb\x1a\x5b\x51\x29\x93\x17\x98\x52\xeb\xbc\xfd\x6f\x90\xc2\x95\x46\xb9\x84\x5d\x39\x75\x72\xfd\x34\x0b\xeb\x00\x85\xdb\x56\xf7\x01\xf2\xb7\xd1\x65\x46\x6e\xf3\x06\x66\x59\x77\xd8\x72\x30\x38\x25\xf2\x1e\x11\xe2\x24\x62\xf7\x4a\xa9\x66\x1d\x56\xa6\x04\xc8\x25\x6c\xd9\x29\x90\xc7\x95\x56\x25\x4e\xb3\x81\x14\x17\x5b\x0f\x18\x85\xb3\x1d\x5f\xe9\xdf\x8c\xab\x64\x29\xa7\xb5\x38\x44\xc0\x13\x5b\x19\xfd\x8b\x73\x75\xa4\x07\xc7\x2d\x34\x24\x64\x25\x3a\x2e\x36\x01\x2c\x68\x38\xec\x86\x71\x38\x4a\xe3\x43\x13\x0e\xe9\x08\x76\xb6\xfa\xe7\xec\xbe\x4c\xcb\x7b\x07\x3a\x3e\x99\x02\x16\x04\xb2\x3b\x20\xc8\x16\x40\x4d\xe5\x99\x2f\x9d\x69\x34\x55\x95\x9b\xe0\x48\x1f\xe2\xb2\x88\xae\x97\xad\x19\x65\x4b\xa1\x68\xf4\xc8\x87\x92\x0f\x3e\x65\xe0\x9a\x1e\xb5\x0b\x0f\x20\x25\x54\x3c\x38\xd5\x2f\x69\x98\x07\x3a\xae\x72\xd0\x95\x6b\xa4\x4c\xd9\x09\x8e\x40\xf6\x5a\xa7\x15\x87\x29\x6f\xf9\x70\x28\xed\xf3\x05\x24\xd3\x4a\x9a\x71\xde\x60\x18\x84\x52\x3e\xed\xd5\x96\x85\x05\x6a\xe6\x4a\x20\x66\x2e\x5f\x6a\x8f\xa0\x50\x5d\xa2\xc1\xe8\x41\x0a\x9b\xae\x07\x8a\xb2\xa2\xa6\xcb\x89\xe2\x73\xe9\x46\x72\x4e\xe5\xcb\x51\xa5\x05\x9e\xa4\xa0\x9f\x7a\x20\xa5\x2a\x59\x54\x3d\x10\xf9\x2f\xf3\x48\x54\xb6\x4b\x07\xe2\x01\x21\x29\x93\x54\xe9\xc1\x54\xfc\x72\x63\xfb\x5e\xe1\x97\x69\xe6\x36\x08\xaa\xd3\xa2\xd2\x99\x66\x95\x48\x02\x41\x4f\xf1\x5a\x4b\x94\x01\x32\x3f\x41\xf9\x6d\x70\x45\xc6\xdc\x08\x37\x84\xa3\x34\x67\x25\x81\x15\x29\x52\xbc\x1e\x35\x65\x6b\x13\xd4\x2d\xed\x80\x5f\xaa\x8a\xcc\x10\x4c\x94\xa6\x6a\x31\x9b\xd4\x9d\x62\xa8\x07\xd0\x43\x82\x53\x10\x90\xb7\xe6\x4a\x99\x35\x2f\x78\x76\x73\x38\x51\x78\x61\x1b\xe0\x4e\x9f\x76\x87\x46\x2c\x6d\xce\x75\x81\x48\xe8\xf4\xdb\x23\x0c\x45\x69\xb6\xeb\x01\x07\x51\x9e\x6d\x82\x1b\x17\x64\xf7\x38\x08\xf1\x16\x02\x7c\xa1\xa1\x0b\xb2\x49\xdb\xbd\x7d\xd2\x72\x2c\x68\xd7\x5d\x4d\xda\xb9\x2d\x19\x41\xa4\x8a\x93\x5b\xe8\x81\xbc\x38\x5c\xdd\x03\x2d\xd2\x1f\x5b\x20\xcf\x5e\x3e\x54\x02\x11\xf8\x6d\xd3\x1d\xb0\xc2\xb9\xd5\xc4\xdf\x8e\x7a\x7d\xcf\xb6\x1b\xb6\x04\xe4\xfd\x66\x22\xe5\x20\x69\x8e\x67\x3d\xe8\x63\x32\xb1\x03\x90\x3d\x13\xd0\x3e\x18\x34\x85\x66\x1a\xe6\x60\x6b\x84\x41\x83\xfa\xb4\x82\x3b\xd2\xee\xda\x43\x47\xc8\x49\xbc\xb1\x64\xcc\xd3\x86\xd5\x34\x2a\x83\x56\x56\x4b\xd6\xb7\x83\x43\x45\x81\x61\x25\x92\xa1\x63\xbf\x4e\x6a\x2a\x84\xae\x1e\x6c\x7d\x87\x21\x8f\x70\x29\x65\x21\x2b\x67\x4f\x61\xd3\x7d\xee\x0b\x48\xe1\x44\xd0\xa4\xf3\x3e\x9e\x5b\x3a\x14\xb1\x9c\xe9\x42\xc8\x30\x8d\x0e\xef\xea\x0c\x82\xf0\xae\x58\x9d\x9c\xf8\xb1\x16\xf8\x6b\xf7\x81\x8c\x82\xaa\x68\xaf\x5e\x46\xbe\xf4\x1d\x0d\x24\x02\x87\x7b\x6d\x47\x3e\xf4\xe9\x3c\x52\xf8\x14\xe9\x80\x1d\xea\x03\xe7\x5f\xf7\xcd\xf0\xa0\x2e\x8e\x76\xed\x29\xbb\x3c\x1f\x15\x50\x12\xd9\x19\x88\x1d\x72\x02\x0e\x45\xe5\x80\x9e\x0c\x58\xc7\x99\x32\xdb\x22\x33\x77\x3e\x56\x51\xa8\x74\xd9\xb5\x7c\xd0\x31\xf7\xcb\x0c\x4c\x16\x04\xec\xa6\x43\xdc\x52\x28\x62\xe1\xd8\x72\x7c\x57\xbf\xd2\xa8\x76\xc4\xa7\xcc\x6e\xd1\xb4\x62\xc9\x2a\x90\x6d\x49\x90\x9c\x43\xba\x36\xd8\xe6\x30\x79\x5c\x29\xf3\x8e\xe4\x34\x56\x48\xd7\xd1\x8f\x40\x24\xf0\xea\x80\xea\xb2\xa6\x70\xad\x40\x2b\x29\xd3\xe9\x87\x76\x37\xbc\xca\x08\x20\xce\xa8\xdf\x0a\x87\x9a\xc2\xb4\xca\xd5\x53\x88\x10\x76\x01\xb2\xcc\x29\x35\x8f\x67\xd5\x07\x2f\x03\xd0\xa7\x4d\xa1\x61\x6f\x0a\xd4\x6a\xb1\xe3\x28\x50\xab\x1e\x57\xfa\x34\xc7\x67\x4f\x3a\xdc\x7e\x64\x81\x46\x4e\x4b\xb0\x77\xcc\x38\xc6\x8f\x61\xed\x13\xab\xae\xc2\x73\x4b\x49\xb3\x28\x9f\x99\x4c\xf3\xac\xcf\x87\xa2\x97\x2b\x5d\x82\x6c\x40\xab\x6f\x99\xf7\xdb\x11\x03\x14\xca\xc6\x79\x66\x5c\x8a\x16\x8c\x79\xcf\xc9\xf4\xeb\x07\x12\x69\xa1\xc5\x28\x9d\x7e\x3d\xa0\x17\xe5\xd3\x3f\x22\x93\x0d\x4b\x68\x65\x4f\xa1\x98\x26\x5a\xcb\xb0\x06\x41\xd5\x1b\x4b\x07\x4b\xe2\xb4\xf8\xad\xc0\xa6\x49\x01\xc7\xb1\xe1\xd4\xf8\xad\x20\x4f\xde\x21\xa7\x80\x8e\x28\x4f\x43\x5d\x7d\x9e\x40\xda\x5c\xe7\xb7\x37\x38\x57\x55\xa8\x20\xed\x40\xde\xe9\xc4\x43\x31\x89\xdc\x16\xb5\x38\x83\x6f\x2b\x07\x08\x85\x37\xbc\xe8\x4a\x55\x4d\x17\xe2\xed\x8d\xac\x05\xff\xd7\x3d\xe8\x63\x8f\xd4\xaa\x58\x32\x32\x4a\x9d\xbe\x06\xdd\x0b\x9b\xcf\x37\x9d\x07\x8b\xe7\xac\x85\x51\x49\x75\xcf\xb9\x6e\x08\x57\x0e\x25\x6b\x05\xd1\xf3\xf6\x71\x18\x6d\x56\xc1\x64\xbd\x72\xca\xde\x36\x8c\x46\x61\xbd\x9d\xc8\x09\xa1\x49\x37\xa4\x4b\x0c\x55\xb7\x73\x9e\x23\xeb\xf8\xde\xf3\x99\x31\xdb\x5e\x1e\x3d\xf2\x76\xe8\xe9\x9e\x42\x85\x1d\xc1\x36\x6e\x9f\x62\x1c\xeb\x8e\x34\x8b\xba\x71\x5b\xe3\xe4\x88\x71\xb2\xc5\x8f\x5a\xe9\x64\x8b\x15\x29\x59\x71\x66\xbd\x6e\x81\xb4\x1e\x1c\x3f\x8a\x2c\x2b\x0d\x22\xf4\xfd\xa8\x3d\xba\xea\x94\xcc\xbe\x21\x5e\x4e\x9b\x4c\xa3\xd8\x29\xd0\x8c\xd0\xb6\x05\xd9\x4a\x71\xa5\xee\x90\xaf\xee\x04\xf2\xf5\xbd\x0f\xe8\xd0\x01\xc8\xc5\x81\x67\x11\x74\xa6\x55\xcb\x68\xa1\xc4\x9a\x6d\xe9\xc6\xe1\xa6\xe5\x08\xa8\x6c\x1d\x9c\xac\x04\xa2\x45\xb9\x54\x24\x5a\xc9\x94\xf8\x4a\xc7\xd5\x46\x40\x1d\x33\x9c\x2b\xbc\x46\x90\x91\xc9\xd6\xda\x5a\xca\xa6\x66\x2f\x8d\x3e\xdc\x07\xd3\xe7\x53\xaf\x06\x59\xb1\xb8\x1e\xe4\xe4\x22\x80\x08\xa6\x85\x32\x4e\x80\x49\xd0\x79\xb0\xd1\x71\x79\x95\x40\xe2\x21\x88\x8c\x13\x12\xa5\x51\x28\x14\x56\x34\xad\x0e\xf4\x7c\xd8\x9c\xcd\x0f\xa8\xbb\x2a\xe3\xb8\x1d\x9d\x34\x82\x8f\xb7\x53\x56\xfe\x66\x5c\x74\xea\x14\x29\x61\xab\x0e\x4d\x1b\xb1\x16\x39\xe9\x5d\x4e\x88\x69\x96\xc7\x4e\x9c\x93\x45\x00\x25\x93\x30\x7c\x7d\x4e\x48\x08\x1c\x60\x81\x47\xea\x4a\xda\x0a\xfa\x52\x4b\xaf\x16\x7c\x6d\x5e\xbb\x82\x9f\xe2\x7c\xe9\xe4\x01\x81\x17\x20\x45\xee\x1c\x29\x3b\x14\x10\x3b\x80\x8a\x07\xb2\x03\x4a\x12\xa9\x29\xd4\x64\x72\x24\x29\x75\xc0\x92\xb1\x53\x55\xbc\x92\x31\x3f\xec\x54\x3f\xe0\x4d\x24\xc9\x1b\xe9\xf2\xad\x84\x76\x94\x39\x2d\x1e\xc3\x70\xb4\xd9\x08\x87\x79\xd8\x3a\x12\x7d\x56\xe1\x66\xf5\xd3\xa5\x48\x36\x86\x54\x05\x9b\x95\x86\x3a\xf7\xf0\xb1\x1c\x9d\xf9\x61\xa3\xdc\xf9\x37\x88\xdc\xa4\xcd\xfb\x20\x30\xdd\x0e\x73\xe7\x94\x5e\xfd\x83\xbb\x44\x8a\x4c\x9e\xb4\x8e\x3d\x5a\xf3\xc3\x5c\x36\xfc\xd0\xa9\xf3\x72\x0c\x3d\x6e\xdb\x31\x1a\x50\x51\x9f\xa9\x59\xb5\x5c\xcc\x33\x14\x7d\x04\x54\x3e\x2e\x76\x8d\x33\x10\x8c\x30\x4b\x85\xc2\xd5\x68\xdf\x0f\x38\x29\x2c\x58\xb1\x70\x35\x4a\xb4\xd3\x13\x8c\xe3\x03\x1a\x03\x66\xcf\x11\x92\xf1\x37\x2b\xda\x8d\x28\xe9\xd3\x29\x07\x4a\x45\x9f\x73\xca\x81\x86\x40\xe1\x68\xb7\x08\x09\x0e\x76\xdb\x0f\x18\xa4\xa3\xdd\xc6\xf1\xe9\xc4\xba\xcd\x15\x70\x91\x6c\x26\x5a\xc1\x6f\x35\x7a\x86\xb2\x11\x90\xf4\xf0\x74\x32\x82\xbd\x15\x74\x6e\x45\xc2\x1d\x0d\xa2\x50\xda\xba\x1a\x61\x5e\x71\x71\x35\x4a\x90\xe2\xe2\x8e\x5a\xd3\x85\x64\xe7\x9a\xef\x9c\x3b\xf1\x00\xd2\x2c\x7f\x5a\xb1\xd5\xf6\x0a\x36\x56\xdc\xd9\x6b\x8a\xa0\xab\x11\x16\x1d\x17\x17\x1b\xae\xe3\xe2\x3a\xcc\x89\xb0\x38\x44\x45\x87\xc5\x5d\x23\x65\x4a\xa9\xd7\xf2\x5d\xd7\xd5\x08\x7a\x30\xf5\x1e\x25\x5d\x28\x27\xd2\x95\x66\x4c\xa1\x25\xe0\xe3\x93\x11\x72\x41\x2f\xe1\xc6\xc4\x89\x04\x1b\xa4\xfd\x44\x88\x44\x88\x7a\x3a\xc7\x78\xcf\x3c\xca\x07\x3a\x62\xc0\x7d\x72\xc1\x13\x0c\x6e\x33\xa6\x20\x74\xff\x96\x77\x72\x41\x9e\x9e\x0c\x25\x24\x0a\x46\xb7\x31\x4a\xb3\xca\xd5\x93\x95\x9c\xbc\x4f\x02\xc4\x53\x73\x40\x87\x36\x05\x7d\x4c\x07\x0a\x31\x66\x29\xb7\x57\xd6\x55\x66\xbf\x01\xd5\xeb\x4a\x68\x8d\x90\xe4\x5c\x6f\x71\xd6\x3e\x2d\x31\xfc\xd6\xa1\x8f\xe1\xcc\xa4\x2c\xd8\x65\x4f\xa1\x42\x35\xcb\x95\x4f\xc9\xbf\x98\x76\x7d\x59\xd6\x63\x54\xc4\x1c\x99\x37\x17\x64\x1e\x06\x11\x28\x62\xae\x74\xf4\xa7\x97\x35\x96\x9c\x50\xc4\xab\xc5\x0a\xa4\xb0\xb3\x5e\x59\x03\x12\xa4\xe5\xe8\x77\xd8\x59\x44\x33\xc5\x99\x95\x01\x6d\x39\x0b\xda\xc8\x51\xff\xb2\x56\x02\xfd\x3a\xb2\xec\xea\x5b\x0a\x75\x27\x2f\xb8\xeb\x1c\x2e\x6c\x43\x85\x92\x1d\x7b\xcc\x47\x5c\x9f\xce\xfc\x29\x85\x59\x8d\xd8\xa2\x34\x14\x84\x79\x2d\x48\x11\xb2\x30\xb8\x97\xd3\x3d\xd7\xb4\x7a\x1b\xbb\x80\xde\x5e\x08\xc4\x0a\x51\xdb\xe3\xf5\x7d\x99\x5e\x8e\xbf\x81\x73\x13\xbf\x96\xb3\x5f\x89\x30\x6a\x9c\x48\x2f\xe8\x87\x51\xfa\x06\x27\x87\xce\x8b\x04\x09\x59\x21\x3b\x60\x63\x08\x53\xac\x5b\xcd\x21\xfc\xe2\x4c\x2e\x01\x7d\xce\xc0\xd6\x5f\x93\x91\x31\x25\x9c\xd1\x29\xb4\x10\xca\x2c\xbc\x9d\x6a\x20\x7e\x68\x67\x3c\x18\x11\x38\xde\xb6\xf1\xb5\x40\x62\xcf\x47\xaa\xf6\x4f\xf6\xd6\x05\x39\xa3\xdf\x09\x24\xb3\x1d\xf6\x0a\xc5\xba\x95\x8e\x26\xef\x50\xb7\xc6\xc6\x74\x3e\xb1\x0a\x35\xf9\xa1\xa0\x38\xca\xde\x48\x99\x38\xd5\x14\xaf\x76\x24\x76\xea\x8d\x7a\x9c\x71\xe8\x0e\x43\xd6\xdd\xc1\x6c\xf1\xf6\xbf\x87\x95\x00\xb0\xe1\xde\x52\x0b\x38\x85\x40\xa0\xa7\x16\x88\x21\x72\x96\xd6\xb4\xa3\x83\x2d\xed\x58\x1b\x8e\x98\xf4\x76\xb6\x70\x8c\x3b\x0e\x67\x6b\x10\x93\xa2\xd9\x48\x6d\xbb\x20\x72\x5d\x00\x39\x03\x45\xca\xac\x1a\xb7\x14\x5a\x9b\xa9\x29\xd5\x11\x08\x85\xbc\xa5\xdb\x8c\x4c\x9d\x44\xc5\x01\x2b\x78\x3b\x97\xfc\xc8\x77\x0f\x1d\x39\x4c\x8e\x2c\x7f\x9f\xc9\x31\x69\xb3\x99\x14\x4c\xb7\xc7\x15\xe8\x60\xba\x8e\xa8\xac\x58\xba\x23\x3a\xe2\xdb\x91\x22\x30\x6a\x45\xd2\x7d\x84\x0e\x52\x61\x7c\xd6\x71\x3a\x3e\xbf\xa5\x54\x63\xfc\xb4\x2a\x09\x8e\xbd\xfd\xf6\x63\x8f\x5b\x20\x49\x41\xa6\xf2\xa1\x47\xa0\x12\x31\xe1\xbc\x2d\xc7\x8e\xc1\x6e\x6c\xf6\xdd\x7a\x18\xc3\x91\x74\x0c\xd8\xf7\xb7\x0f\x67\x7a\x5a\x90\x32\xdf\x95\x94\xdd\x4a\xb9\xda\x80\x48\x78\x0f\xa4\x6b\x5a\x5b\x3a\x94\xab\xcd\x68\x0f\x47\xca\xf9\x22\xd8\x82\x94\x6e\x3a\xa8\xe9\xea\x02\x51\x3e\xc3\xef\x42\x8d\x06\x9e\xc3\xa9\xfd\x36\xba\x18\x16\x75\x8f\x94\x5a\xde\x3f\x69\xd6\xd7\xc3\x47\x1a\xd2\xba\x55\x66\xc3\x59\xb4\x71\x57\x8d\xcd\xc9\x5b\x4f\xc6\xef\xdc\xea\x1b\x65\xf0\x4f\x6f\xc7\xb1\xc1\x3f\x2b\x23\x71\x52\xd6\xcc\x0e\xa1\x69\x2d\x0d\x59\xbd\xaf\xa0\xe0\x33\xf6\x03\x99\xcf\x1c\xf9\x54\x79\x67\xae\xf4\x22\xba\xaa\x69\xc7\x5b\xf9\x64\xd8\xa8\x2a\x07\x75\x1d\x5d\x8e\xfc\x36\x36\xf3\xba\xe0\x47\xe6\xe2\x7c\x39\xc4\xd1\x99\x69\x39\xf7\x31\xe1\x0e\x65\xe4\x8b\x0f\x7e\x28\x21\x9f\x62\x40\xbe\xe3\xd9\x63\xf3\x39\x5a\xd3\x85\xf6\x00\xaa\xe5\xd8\x2d\x04\x32\x3f\xbb\xaf\x7d\x9a\xd3\x8e\x1d\x6f\x9a\xf7\xe7\xd8\xd1\xcc\x6d\x60\x18\x8a\x71\x2b\x17\x14\xba\x3b\x64\x13\x4b\xe8\x50\x90\x5b\xf1\x75\xc9\x05\xe9\xa8\xfc\x34\xeb\x74\x8c\xf9\xf0\xe1\xc9\xca\x87\x8e\x2f\xfd\x7c\xe9\x79\x0e\x06\xcc\x33\x85\x92\x03\x33\xeb\xbb\xef\xc9\xf8\xbe\xd8\x02\xcd\xdd\xcc\x97\xc7\x6e\xee\x96\xba\xb7\xc5\xdb\xe0\x80\x39\xcf\x36\xcd\x91\x68\xb4\xc6\xa7\xb0\xa9\x13\x24\x74\xea\x66\xfd\xf6\xdb\x72\xe3\x95\x96\xa4\x3f\x96\x34\xc4\xa9\x1b\xd0\xe6\x3e\xe8\x7f\xf7\xe1\x99\xc1\x58\x75\xc8\xe4\x2a\x76\xb7\xa5\x4b\x3c\x0b\x2d\xa0\x64\x82\x4f\x33\xa2\xa7\x20\x60\x59\x2c\xcb\x60\xf9\x2a\xe3\xc2\x04\x9c\x2e\xbc\xe3\x19\xa4\xa5\xab\xce\xa6\x72\x18\x1b\xc6\xcf\x41\x18\x1b\x86\xd3\x71\x20\x6d\x5d\xa9\x5b\x85\xc0\x0e\xe4\x93\xdd\x42\xdc\x38\xac\x1d\x7c\xbe\xf4\x65\xc8\x2d\x85\x4c\xde\x05\x78\xaf\xe3\xc9\x87\xd5\x38\x14\x18\x40\x74\xdc\x38\xe4\x74\x25\xf2\x70\x1c\x50\x89\x05\x98\x71\x98\x4a\xce\x14\x7a\xa9\x29\x93\xee\x8b\x51\xc8\x59\x26\x56\x8f\x0d\x50\x52\xe4\x19\x88\xa8\xab\xd4\x35\x19\xb0\xff\x14\xd3\xd6\x39\xcb\xc7\x61\xe3\x31\x56\xd6\xe1\x0c\x98\x2d\xf4\x75\x20\xf7\x77\x5a\x92\xab\xb5\x64\x4a\xe4\x5b\xe5\xbc\x18\x87\x05\xbc\x20\x44\x4a\xaa\x33\x85\xcd\x9b\x83\x09\xf2\x09\x09\x5b\xd6\x33\xf8\xbd\xee\xe9\x12\x76\x95\x86\xb4\xf2\x99\x2f\x85\x4c\x96\x0f\xb2\xcc\x5e\xbe\x74\x56\xac\x33\xe8\xad\xe9\xc3\x54\x37\x8e\xf0\x32\x3e\xb5\x07\x0c\xe6\xef\x24\x1d\x95\x03\xe5\x40\x6c\x83\xa0\x0f\x6b\xb4\x59\x5b\xee\xa8\x76\x06\x86\x1e\x90\x99\x97\x10\x37\xf0\x29\x3b\x21\xd8\x87\x07\x1c\xe4\x1e\x65\x3d\xe5\xf3\x0a\x07\x3f\xb8\x02\x68\xb1\x69\x14\x67\xd8\xa3\x19\x25\x12\x2b\x7e\xa6\x64\x41\x5a\x04\xcb\x1e\x83\x6c\x41\xd9\x1a\x05\x1a\xce\x87\xac\x7c\xbe\xd4\x9e\x82\xdc\x4b\xf7\x22\x6c\x40\x22\xe1\x2d\x65\x3e\xe1\x3e\xed\x30\xd1\x0d\xd0\x0a\x4d\xe1\xd3\xe1\x86\xbe\x37\x76\x8f\xe2\xd0\xda\x23\x9d\xf2\x0a\xd6\x0e\xa4\x81\x05\x59\xb1\xa7\xca\xc9\xa4\xe8\xb6\x42\x20\xa1\x1f\xb5\x5a\x08\xe4\x43\xf3\xa3\x2b\xad\xea\x48\x61\x85\x1c\xfa\x16\x1a\x71\xe8\x5b\xcb\x26\x2f\x64\xf4\x67\x57\x29\xd6\xad\xec\x50\x22\xa1\x6e\xd9\xf3\x84\xb3\x61\x8b\x1f\xc5\x52\x4f\x16\xcc\x2c\x09\xf3\xc5\x28\x3e\xd5\x7a\x20\xb3\xf0\x16\xf0\x2d\x7a\x37\x7e\x8e\x5f\x23\x44\x60\x38\xff\xcf\x40\x7d\x1f\xd5\xef\xda\x31\x25\x8a\x66\x3b\x4e\x18\x82\x83\xd9\x06\xca\xfc\x50\x30\xdb\xc2\x36\x75\x6d\x31\xe9\x69\x57\xbc\x04\x3e\x53\x2d\xfa\x40\x08\x0e\x66\x0b\x7b\x50\x30\xdb\x6a\xf6\x04\x54\x12\x50\x36\x6e\x65\x1f\x97\x80\xac\x43\x03\xf4\x31\x61\xef\xdf\xa8\x9e\xf9\x41\xbb\xce\x1b\x0d\x63\x71\xd8\x59\x45\x44\xf1\xc3\xfd\x3b\xde\x93\x51\x6d\x60\x1a\x29\xb4\x5c\x3a\xc0\x5d\x72\xe9\xf8\x4c\x98\x77\xe7\x00\x21\xb9\x11\x43\xa7\x7e\x9a\x7f\x47\x16\x1e\x95\xf4\x7c\x57\x4a\xad\x62\xb5\x80\x6b\x91\x3a\x87\x91\x03\xcd\x32\x7b\x0e\x34\x6b\xe1\x3b\x0a\x26\x3b\xba\x8d\x9b\xe3\xb4\x15\xc9\x76\xac\xe1\x67\xf6\x2b\xa7\xea\x49\xce\x3f\xe8\xfd\xe4\x9c\x68\x69\xc7\x3a\xce\x48\x9f\xe2\x16\x23\x75\x41\x6f\x00\x3a\x1b\x83\x97\xcc\xef\xec\x5f\xbe\x0b\xb5\x40\x33\x37\x24\x5b\x3f\xb0\xdf\x61\x34\x84\x7e\xa1\x24\x0f\xc5\x73\x55\xa2\xa9\xc6\x69\x69\x75\x80\x90\x5e\x1d\xbc\x20\xbe\x93\x0b\x8e\xa9\xea\x0c\x76\xd8\xd9\x9c\x92\xf0\xb3\xd6\xe4\x16\x0b\x9f\x3e\xed\x88\xc6\x16\x30\x14\x16\x55\x09\x25\x19\x8a\x8a\xaa\x68\x6f\xe3\x74\x06\xbe\x1c\x23\x0a\x92\xaa\x18\x34\xc7\xe9\x60\x16\x3c\x2c\xc3\x21\x53\x38\x91\xc6\xe5\x6b\x0d\xc4\x30\x8f\x0b\x53\x1f\x44\xa4\x10\xaa\x8a\x59\x6e\x28\x82\xea\x68\x4c\x90\x42\xa6\x7a\xdd\x53\xb3\xa9\xe6\x01\x64\xef\x8b\xad\x23\x7e\xce\x6e\x1f\x2d\x85\xb7\x10\x08\xe4\x38\x97\x20\xe7\x1d\x37\xd2\xaa\x2d\x0c\x48\xa4\x17\xde\x16\x68\xd1\x2f\xdb\x0f\x6c\x01\xe3\xc2\x76\x0d\xcf\xba\xb0\xde\x20\xea\x3a\x6e\x6a\xc7\xc3\x32\x14\x38\x55\x31\x6f\x8d\xcb\x0f\xb9\x20\x6a\x3b\xa9\x1b\x21\x56\xe3\xe2\x7d\xf9\x0e\x24\x2e\x9e\xf9\xf1\xd3\x2d\x99\xbc\xe1\xc3\xf2\xdb\xa7\x1b\xce\x71\xdd\xe0\x4a\xff\x37\xb8\x82\xba\x33\x20\xb1\x53\x14\x54\x55\x73\xb4\x5f\xd2\x4b\x22\x79\xe8\x79\xbe\xa3\xb5\x94\x49\x15\x2e\x69\x54\x5b\x35\x0b\x7d\x63\x84\x4a\xa3\xc6\x1c\xc8\x17\xff\xb3\x40\x98\xaa\x39\x36\x78\xbb\x0f\x29\xc4\x19\xd1\x5a\x38\x5d\x43\x1a\x84\x5b\x34\xfc\x19\x6c\x5d\x85\x46\xd5\xba\xa7\xf0\x14\x74\x02\x41\xde\x29\x14\x01\x81\x42\x83\x11\xf7\x80\x66\x42\xb0\x12\xe7\xd5\x6b\x39\x8f\x9a\xaf\x72\x11\x98\x3a\x1a\x54\x02\x1d\x34\xc2\x4d\x58\xc0\x86\x1a\x5a\x03\x0a\x43\x94\x52\xe5\xf5\xac\x39\x55\x14\xff\xb4\xaa\xa6\x5d\x6d\xb9\x3d\x1f\x7a\xcb\x41\x4f\x0d\x0d\x03\x36\xd4\x4c\x0a\x48\x1b\x0d\x0d\x23\x93\xa4\xc5\xc7\xe5\xe2\x97\x05\x2b\x81\x2a\xa3\xdd\x0c\x3c\xa0\x8f\x44\x8e\x2b\x87\x27\x8d\x28\xcd\x0d\x79\x0c\x19\xb5\xc1\xd5\x39\x1e\x14\x57\x54\xeb\x91\x42\x9f\x74\x2c\xa3\xe2\x8a\x6a\x45\x40\x54\x24\x51\xad\xa8\x5d\x8e\x24\xaa\x47\x6a\x9a\x7d\xc0\xc1\x08\x17\x8a\x6e\xe7\x47\x63\x07\x12\x61\x87\x55\x7f\xea\xc2\x06\x2e\x40\xc5\x32\x31\x9d\x1d\xf1\x08\x1e\xd1\x9d\x2e\x21\xea\x9c\x73\xa0\xb5\x9c\x08\x9d\x65\xda\x81\x2e\x41\x29\xb3\x97\x01\x14\xfc\xa4\x29\xa7\x69\xc7\x92\x0f\x3f\xe9\x8a\x68\xab\x1c\xc4\xdd\x11\x91\x99\xeb\x8e\x01\x80\xb3\xa3\xf3\xd4\x1a\xe8\x65\x21\x52\x57\xeb\x9b\x5e\x26\xc8\x52\x57\xe7\x32\x51\x90\x43\xd9\x9b\x6a\xe5\x3c\xe8\xce\x88\x70\x64\x4a\xe4\x5f\xc7\x69\x3f\x88\xfc\x89\xfe\xe8\xd4\x4e\xf5\xd3\x8e\xcd\x15\x30\x29\x85\xfe\xd4\x5a\xd2\xa5\xed\xcf\x57\x1a\xf2\xcd\xe6\x3d\x0d\xd9\x2f\x34\x82\xae\x49\xf7\x83\x83\x5f\xd6\x83\x51\x0c\xcc\xa4\x54\x1e\x6c\x70\x4e\xb7\xe1\x87\x11\x6b\x0a\x25\xce\xe1\x20\x1c\x23\xcb\x9f\xba\xc3\x0d\xa7\x74\x1a\x3c\x00\x65\x1c\xfd\xb4\xe4\xe5\xbf\x52\x68\x12\x4c\x43\x60\xe8\x39\x1c\xd2\xe2\x2a\x82\xfd\xd0\xdb\x08\xc4\x93\x8f\x01\xd7\xff\x80\x7e\x11\xef\x02\xb2\x72\xc3\x14\x3a\xc8\xa7\x7d\x06\xee\x8d\x08\xf7\x24\x72\xa7\x7e\x7f\x5d\x7e\xd5\xf5\x9b\xb6\x69\x96\x61\x9f\x80\xe2\x29\x25\x85\xa2\xc0\x92\x32\xb1\x14\xc4\xb0\xe1\x08\xd9\xcf\x7c\xdd\x8c\x1a\x84\x94\x3c\xe3\x84\x23\x3a\x76\x67\x2f\xe9\x44\x5b\xff\xcc\xb1\x30\x1c\x43\x58\x53\x28\xe7\x1a\x92\xc3\xed\xf3\x9f\x23\xf5\xb6\x1d\x07\x47\xe4\xb8\xd9\xdd\x57\xea\x8a\x02\x91\x40\x78\xbd\x91\x03\xf5\xf6\x15\xb5\x2c\x8a\x93\x40\xe1\x6e\x1d\x4e\x02\xb5\xe3\xc2\x1c\x0e\xc8\x69\xbf\xa1\xa0\xdd\x03\x7a\x8e\xb2\x89\x05\xd3\xb9\x9d\x3e\x92\x8d\x12\x36\xb5\xeb\x4c\xa1\x84\xbd\x08\x24\xe4\x68\xca\x4c\xfb\x0d\xc6\xab\x33\x09\x44\xdd\xc4\xf8\xa0\xb0\x9b\xfa\xc1\x5e\xef\xc6\x94\x54\x95\xde\x1d\x81\xf3\x46\xf0\xba\x02\x36\x8f\xa5\x03\x32\xee\x94\x0e\x77\xca\xc0\x6f\x06\x0e\xfa\x3e\x66\x21\x72\xbf\xb1\xf8\x39\xca\xfd\xc6\x62\x8b\xf8\xe0\x37\x16\xaf\xfe\x29\xf5\xb4\xd0\x90\x79\x01\x4c\xce\xef\x2f\x8e\x58\x2e\x1c\x7b\x53\x39\x15\x6e\x6b\x4a\xb8\x64\xc7\xf4\x7a\x33\x83\x8e\xb6\xa9\x9c\x18\xce\xea\x54\xcf\xd4\x94\xb4\xc7\xf1\x31\x93\xb6\xba\x03\x8a\xdf\xc0\xf6\x27\x5b\x7b\x4f\xab\x7a\xdc\xb5\xa5\x1d\xcf\x01\x93\x3b\x31\xea\x5d\x69\x88\x45\x1b\x80\x7e\xfd\xee\x02\x62\xcd\x28\xf4\xe5\x45\xbc\xc4\x43\xd1\x36\xb5\x62\x27\x98\xc3\xe8\xd2\xac\x02\x68\xea\x99\x0f\x15\x1d\xc1\xb1\x3e\xf1\xce\x05\x3f\x99\x9e\x63\x3c\x75\x2e\x27\xa2\x06\x06\xf1\x34\x78\x97\x87\x33\xad\x7e\x64\x16\xde\x73\x1c\x81\x9c\x7e\x3b\x13\xcd\x6b\xb4\xe0\xea\x88\x9a\x68\xba\xce\xe6\x34\xa0\x30\xc7\xd0\x7c\xe4\x83\x09\x49\x65\xc2\x1c\x39\x1a\x55\x77\xe2\xd0\x45\xc8\x9b\x26\x29\xce\x08\x05\xc6\x1c\x5b\xe6\x16\x81\x80\x43\xcb\x71\x31\x7b\x50\xd0\xd1\xc3\xf5\x8c\x31\x2d\x00\x5c\x29\x73\x00\x1d\x03\xf3\x53\xb9\x67\xca\xb4\x5b\xe1\xa8\x0f\x93\x13\x7c\x5a\xf1\x2b\x85\x6b\xf3\xe3\x61\x71\x0f\xe6\xe1\xb7\x2e\x46\x14\x52\x07\xac\x54\x36\x95\xf3\x2a\xd5\x2b\x65\xec\xeb\x06\x28\x26\x79\x05\x32\xfd\xb4\x7c\x29\x59\x85\x11\x3f\x48\x9d\xea\x65\x7f\xd8\xa2\x87\x0f\x79\x28\x79\xd2\x7e\xf4\xef\xef\x5c\xfa\x85\xdf\x5a\x3f\xed\x98\x09\x21\xeb\xf9\x45\xc8\xca\x3c\x3e\xac\x3a\x40\x4c\xce\xa3\x54\x59\x1c\x5e\x76\x8c\xc2\xf9\xd7\x8f\x39\x9e\xc3\x11\x29\x3b\xbe\xf1\xe1\x90\x94\x32\xd8\x8b\x0f\x87\x28\xe3\xc5\x1e\x0f\xbf\x12\x1b\xb9\x50\x4f\x66\x54\xa2\x3a\x87\x9e\xcc\xc8\x75\xe0\xf1\x20\xb0\x8a\xe9\xb2\x04\x19\xda\x7a\x38\xae\x0a\x77\xe1\x78\x20\xc7\xf4\xe0\xa0\xa4\xae\x7b\xfa\xb4\x78\xd9\x03\xfa\x00\x0a\xbe\x22\xb5\xc1\xee\xf3\xd3\x89\x44\xa5\xf8\x09\xe4\xd5\x8b\x31\x72\x34\x49\x65\x16\xc8\xa4\x04\x91\x3c\xa3\xce\x03\xe9\x3d\xbf\x9e\xef\x1e\xee\xb1\x00\x9a\x55\x80\xc0\xd3\xac\xa2\xe5\x4b\x91\x25\x03\x21\x59\x12\x42\xcb\x13\x47\x14\xcd\x0c\xfa\xbf\x00\x6d\x2a\x0d\x64\x8e\x83\xb6\xa0\x20\x8d\x5a\x3f\x10\x5f\xd2\xac\x13\xc1\x43\x24\x8a\xd8\xe8\xa1\x59\x05\x6c\x1c\xe3\x48\x99\xcf\x0c\x04\x98\x27\x1b\x1c\x59\xdc\xf1\x1b\x95\x69\xf6\x8b\x7f\xdb\x95\x32\x6f\xfe\xcc\x08\x9b\x1f\x45\x91\xb4\x46\xe5\xd3\x8d\x39\x50\xe6\xcb\x51\x72\x91\xdc\x49\x6c\x44\xdc\xce\x70\xb2\xee\x8b\xfb\xbf\x83\xec\x45\x64\x66\x18\x4f\x3c\xe9\xe8\x28\x7e\x7a\xaf\x45\x41\x70\xfa\xa2\xab\xc3\x20\x9e\x1c\x31\x59\x52\x73\x08\x50\x26\x9d\x11\xc1\x2a\xc3\x4f\xec\x5d\x08\x59\x2f\x14\x44\x34\x39\xa7\x28\xaa\x3d\x55\x3d\x2f\x17\xd0\x74\x72\x71\x20\x48\x83\x4e\xbc\x5f\xc1\xf6\xe5\x48\x4b\x22\x49\x86\xdf\xb2\xdb\xe3\x79\x71\x86\xa0\xc1\x55\xff\x41\x4e\x20\xfc\xc0\xc3\xb1\x1a\xad\x32\x4b\xaf\x41\x3f\x20\x61\xd3\x3e\x8e\xe8\xe1\x68\x8d\x1a\xec\x6f\x46\x0a\x16\xbe\xca\xce\x1e\x7d\x79\x03\x07\x07\x0b\x97\xe8\x16\x2f\xc8\x03\xa1\xf0\x05\x79\x64\xc6\xec\x46\xe2\x4e\xf7\x78\x59\x80\x44\xb3\xd4\x23\x73\x3d\x9c\xe9\xc5\x8e\x4d\xbb\xf2\x22\x55\xd4\x2f\x05\x5d\xd4\x9a\x61\x4b\x01\xfc\xa8\x7c\x04\x47\xc4\xd9\xf7\xf6\x8e\x45\xba\x74\xf8\x43\x45\xf9\x7a\x5b\x0a\x44\xbb\xd1\x5b\x6b\x3d\x7b\xd2\x0f\x95\x84\x4b\x39\xfc\xa1\x95\x94\x59\xea\x63\xee\x1c\xf1\x70\x42\x42\xce\xed\x73\x75\xb6\x8f\x33\xf4\x54\x4e\xd6\x37\xf6\x53\xc6\xfc\x36\xff\x1d\xdf\x66\x8a\x5d\x55\x9b\xfb\x04\x59\x45\x67\x45\x14\x7a\x0f\xc6\xcc\x28\xad\x0e\x44\x34\x57\xcc\x43\x82\xda\x87\x62\x1e\xca\xc9\x06\x7e\xb3\xd2\x08\x72\x8a\x72\xa8\x27\x34\xed\x28\x87\x8b\xe8\xcf\xe4\xcd\xae\x9f\x4f\x4d\x7d\x2c\xca\x3b\x8b\xcb\xdc\xda\xfd\x12\x65\x86\x37\x0f\x22\x71\x2b\xba\xe0\x38\xa1\x0b\xc7\x0f\xc4\xd6\xaa\xf8\x81\x55\x95\x76\x15\x25\xf8\x41\xd0\xb9\xca\x7b\x9a\xf1\x66\x4e\x9f\x56\x07\x33\x6c\x6b\x83\x91\xbf\xdf\x6c\xed\x0f\xe8\x33\xc0\x3b\xdd\x6f\x7b\x94\xe6\xe5\xbe\x37\xc7\xb2\x7a\x76\xef\xcd\x9e\x40\xfc\xe0\xf7\xc6\xeb\xb6\x1f\xd0\x39\xbf\x53\x57\x97\x43\x2d\x53\xdc\x8e\x5a\x20\xe7\xda\x02\x2d\x5c\x96\x94\x9a\xfe\x3b\x90\xd2\x6b\x59\x47\xba\x37\xc7\xbd\x12\x29\x70\x6f\x68\x91\x83\x2f\xc5\x07\x48\x76\x71\x2b\xc1\x4e\xe5\xf6\xd2\xbd\x39\x8c\x0f\x6b\xc4\xed\x88\x83\x73\xcb\x87\xa6\x8c\x20\x04\x13\x38\x41\xde\x36\x5d\x68\xec\x76\xda\x1c\xe7\xdb\x5d\x50\x95\xb3\xbb\x01\x59\x95\x18\xa9\x6a\xea\xac\x29\xb5\xa1\x31\x85\xa6\xce\x93\xa1\x2d\xde\xde\x38\xf1\x6f\x9e\xeb\xeb\xe0\xa7\x6c\xc0\x57\x6a\xfa\xc6\x07\x4a\xe5\xbd\x99\x68\x76\x70\x9f\x7e\x96\x96\x09\x9a\x16\x0e\x32\x5f\xbe\x23\x94\x81\xc8\x0a\x44\xb8\xf6\xbd\x71\xa4\x33\x7b\x8a\x0d\x28\xc4\x97\xdd\xca\x86\x53\x37\xc6\x6c\x97\x7e\x43\x8f\xb8\x77\xbf\xc4\xee\x8d\x74\xef\x2c\x58\x3e\x34\x4f\x00\xf5\x3d\x0b\x96\x86\x7c\x18\xe7\x53\xc4\x7f\x6b\x24\xb7\x5c\xfc\x47\x03\xf7\x5d\xee\x5a\x62\xe4\xef\x7d\xf1\x8f\x42\x12\x80\x7b\xe7\x00\xb0\xd2\x73\x2b\xab\x4d\x81\xe0\x6f\xbd\x25\x51\x48\x67\x70\xef\x4e\x64\x92\x91\x28\xd4\x93\xfb\x0e\x37\x61\x03\x9f\x32\x90\x63\x24\x7a\x2f\xaa\x65\x20\xf2\xbb\x39\x4b\xdf\x82\xe0\x08\xb4\xc3\xb2\x67\x2a\x2d\xaf\xe1\x63\xbd\x77\x1b\x9a\x36\x70\xd5\x45\x6d\xe7\x18\x5b\x10\xf3\xc3\x98\xc5\xdf\xcf\x2d\x90\xfb\xe4\x43\x27\x8c\xeb\xf4\x31\xe9\x03\x84\x24\xed\x3b\xd7\xf5\x82\x7c\xc6\x95\x14\x2a\x14\x6d\xa4\x90\x61\x1a\xf7\xa3\x43\xec\x0d\xd0\xcf\xf5\x9b\xf5\xdd\x87\x3d\xa7\xec\x46\xa7\xb4\xc1\x70\x7e\x1f\x8e\x3e\xea\x47\xaa\x7a\xab\x9e\xdf\x73\xf1\xfb\x40\xf0\x63\x86\xf4\xdc\x47\xb9\x2a\x0d\x39\x19\x09\x8a\xdf\x2d\xcf\xfc\xc1\xc3\xd2\x0b\xd4\x05\xb5\x3d\x5f\x76\xa3\x0b\x82\x4e\x59\x64\x96\x79\x1f\x98\x0f\x4e\x46\xaa\xd4\x58\xc8\x52\xb7\x7c\xfa\xf5\x4c\x3b\x37\x9d\x54\x40\x3f\x03\xcf\x87\x18\x7c\xd8\x63\xe4\xac\xa9\x41\xc8\xf9\x00\xd9\x8e\xf2\xaf\xf3\x1a\xf9\x79\x93\xb3\x06\x2d\xec\x3e\x1c\x33\x79\xd0\x89\xc2\x3e\x4e\xb6\xbc\x3d\xe8\x67\x26\x93\xf5\x4c\xcd\x5b\x10\x4b\x34\xdd\x21\xc8\xd9\xa9\x4a\x7c\xfd\x2d\x8f\xf9\xb1\xc1\x86\xed\x14\xbf\x18\x47\x41\x4e\x67\x67\xe0\x15\x47\xf1\xbb\x0b\x96\x22\xb6\x58\xf1\x5a\x5b\xa2\xbd\xe5\x15\x3f\x06\x7c\xad\xc0\xcf\xaf\x80\xe6\x07\x81\xf4\xca\xfa\x1e\xc8\x6b\xc0\xc4\xda\x2b\x1e\x6b\xd9\xed\x1c\x35\x31\x40\xdd\xca\x51\x53\x4f\xe6\xa7\x10\x5f\x16\x14\x24\x11\x9e\x2c\x9f\x33\xd6\xc4\xcc\x75\x2b\x63\xcd\x91\x85\x2f\x21\x99\x0e\xd8\xf4\x25\x03\x1b\x9e\x68\xf0\xf3\xa1\x71\x30\x25\xd8\x9f\x3e\xed\x3c\x54\x18\x64\xcd\xbf\xaf\x80\x5a\xe9\x3d\x7d\x88\x9c\x0a\xe8\x38\x7f\x64\x0f\xb2\x48\x17\x59\x15\xbb\x0b\x6a\x66\x5a\xa2\xe3\x59\x52\xe8\x79\xa7\x59\x48\xaf\xa6\x21\xdb\x32\x98\x20\xc5\x42\x86\x80\xe4\xc3\x3f\xb8\xfd\x78\xcb\x87\x5f\xb1\x51\xdf\xca\x5e\x73\x5c\x30\x0b\x3b\xf4\x89\x77\xbc\xed\xcf\x0f\x2b\x2d\x53\x2f\x25\x87\x26\x4c\x86\x25\x65\x22\x43\x8e\xed\x2a\xdb\xd2\xc9\xa6\xa8\xbe\x80\xc5\xaa\xd7\xee\x9a\x03\x48\x37\x9a\x98\xff\x8a\xa0\x6f\x01\xe4\xae\x10\x08\x73\x23\x1f\xfc\xe7\x24\x96\x0f\xbe\x9e\x35\x90\x19\x83\xf5\xf4\x5b\x4e\xf8\xd2\x1b\x08\x0c\x5e\x33\x01\x92\xc7\x7b\x4f\xd9\x50\xb8\xed\x05\x74\x2b\x47\x38\xa8\xca\x65\x70\xd6\xb4\xa9\x47\xd6\x4b\x20\xaf\x38\x73\xea\xe7\xe7\x06\xd7\x4a\xee\x9a\x55\x65\x5c\xb2\x38\xb6\x46\x27\x8e\x93\x0d\xd7\xaf\x18\x84\x6a\xea\x6a\x91\x6b\x1a\x12\x4b\xeb\x20\xc4\xe9\xf1\x69\x68\xe8\xbc\x00\xa3\xdb\xb8\x33\x2e\x9d\x25\xa1\xcf\xea\xd4\xdf\x5b\x20\x0b\x76\x88\x38\xd5\x77\x57\x08\x73\xbb\x2b\x01\xb0\xb4\xe3\x83\xe6\x6f\xb8\x40\x7f\x57\xfb\x37\xca\xe7\x4b\x19\x2a\x1a\xb3\x6e\x1e\x96\x99\x75\x14\xd0\x1e\x9a\x40\x0e\xcd\x64\xca\x09\x75\x66\x24\x08\x23\x56\x99\xef\x13\x51\x93\xc3\xce\x89\x69\x50\xe1\xef\xb3\xf3\x66\xde\x05\xa8\x4b\x68\x9f\x2f\x65\x19\x3f\x53\x26\xaa\x3c\xd3\x8c\xba\xfc\x40\x7a\xc5\x99\xd5\x3b\x4d\x69\x9c\xf6\x8e\x15\x40\x93\xbe\x4f\xec\x0b\x6c\xb4\xd3\x97\x08\x60\x19\x4a\x30\x53\xda\x91\x0f\xb5\xb0\x90\xef\x69\xb9\x04\x36\x79\x9a\xf1\x9c\x69\x74\x98\x40\xd2\xbf\x76\xcc\x99\x2e\xbc\x63\xf2\xa1\x22\xb9\x61\x09\xa7\x85\x96\x92\xd9\xc0\x48\x69\x5b\xcc\xad\x78\x84\x7a\x66\xfc\x0e\x4d\x8b\x3c\xea\xd4\x33\x27\xa7\xae\x82\x13\x3a\x9a\xc9\xad\xd4\x33\x31\x2a\xdf\xca\x35\x53\xcf\x33\xdf\x39\xcc\x28\x35\xc5\x14\xce\x40\x0e\xd6\x4e\x9b\x96\xba\x7b\x40\x31\x50\x4e\xf2\x13\x5d\xa8\x06\x54\xb2\xdc\x9e\x3e\xa0\x00\x30\x27\xf6\x2c\xa5\x22\xbb\x68\x0c\xca\x4b\x53\xf6\x60\x67\xaa\xe3\x38\x76\xb2\x99\x81\xc3\xe3\x3e\x27\x08\xd1\xa7\xc3\x5b\x6a\x96\xd2\x37\xa8\xa0\x01\xc5\x4a\xd4\x93\xc3\xfa\xb2\xf2\x03\x02\x8a\x94\x28\x39\x18\x2e\xdf\x39\xd9\xf2\x9d\x72\x53\x8c\x7c\x67\xdf\xdc\x91\x42\x8b\x45\xd6\xd2\x6f\x65\x90\xa9\x27\xdc\x8e\x0c\x32\xb8\x24\xef\x2b\x27\xde\x05\x28\x87\x01\x4c\xec\x42\xe6\x4d\x37\xba\x44\x1f\xa6\x71\xd9\x04\x82\x3f\xe6\xbe\xb8\x51\x9a\xaa\x8b\xc5\x5d\x1c\x37\x97\x35\xa1\x8b\x91\x40\x3e\x50\xd3\x65\xc5\x37\x55\x7d\x71\x8e\x93\x49\x89\x61\x0e\x82\x93\xee\x0b\x13\x07\x52\xa5\x33\xc3\x90\x48\xe2\x26\x33\x4c\xcd\x87\x66\xa3\x23\x5f\x5a\xf9\xea\xe9\x04\xae\xca\x30\x61\x54\x68\x54\x97\x59\x13\x22\xcb\x35\xe1\xaa\x4c\xe6\x04\x07\x5a\x9a\x8e\x7f\x63\xd4\x7a\xff\xbb\x7e\x20\xbf\xe8\x90\x76\x20\x83\x80\x6b\x19\xa2\xde\x10\xf2\x10\xfd\xc6\x21\x0f\x57\x67\x33\x36\xc4\xa4\x11\xf0\x12\x7e\x81\xac\xb3\xf7\x80\x4a\xd7\xb3\xa5\x21\x84\x8b\x01\xe8\xb3\xfc\x04\x32\x77\x84\x4e\x9b\x04\xa3\x3d\x55\x49\xf9\x42\x3b\xc3\xea\x60\xd0\x55\x58\xcc\x55\xfe\x06\xb1\xdb\x0f\x14\x92\x21\xe9\x76\xbc\xc3\x79\xa5\x0f\x6f\x4e\x38\x60\x43\x43\xee\x29\xf5\x22\xc1\x1e\xfc\xdc\x19\x81\x39\xb7\x5f\xcd\x8b\x28\xdd\x50\x86\x46\xaa\x7a\x77\x32\x2e\xd9\x42\x1b\x94\xd0\x74\x7e\x61\xf9\xba\x1d\x0b\x51\x46\x66\x16\x32\xf9\x94\x9a\x3f\xa0\x29\x11\x1a\x81\x0f\xea\x26\x59\x0b\x9e\xdf\xbb\xf9\x52\x30\x9e\xdf\xdb\x81\x13\x18\xa8\x6f\xf2\xb1\xe0\x86\xbd\x09\x9c\xc0\x07\x75\x37\x9e\xc6\x07\x43\x9d\x4b\x5c\xda\xbb\xbb\xf3\x22\xe0\xe1\xbe\xbb\xdf\x74\xe6\x40\x53\x0e\x96\xe4\xe1\xe5\x19\xb3\xb8\xe5\x6e\x85\x46\x54\xee\xde\xdd\x1d\x11\x08\x46\xdc\x59\xfb\x11\xf0\xe5\x5e\x8c\x42\xb7\x50\x0c\x8f\xea\x3e\x8b\xf0\xb4\xde\x4e\xae\x72\x71\xf9\xf8\xee\x58\xc7\x20\x5d\xc5\x4a\x14\x12\x10\xdf\xdd\x47\x4c\x4b\xd5\xe9\x8b\x0a\x3b\xa0\x88\xa1\xe5\x43\x50\x48\xa7\x12\x26\x33\x50\xb9\x39\x72\x54\x76\xfc\x18\x9c\x38\xfd\x66\xe6\x03\xea\x3c\x84\xe2\x7a\x48\x83\x69\xb0\xa4\x53\x33\xbb\xb7\xef\xf0\xe7\x4b\xe7\x1a\x81\x2d\x74\x7c\xe7\x23\xa0\xe8\x11\x19\xb2\x4f\xd6\x65\x00\xea\x8e\x10\x08\x2a\xde\xa1\xe2\xbc\xbf\x87\x0d\x1b\xec\x1d\xc5\x37\x14\x0c\xe8\xf7\xc0\xff\xcd\xb9\x32\xac\xe5\x10\xf3\x76\x0f\x2f\x61\x4f\xab\x7e\x11\x01\x3a\x19\xb6\x64\xe0\x2f\xbd\x07\xfe\x25\x0e\x3e\x25\x31\x39\xc8\x67\x7c\x0f\x26\x97\xfd\xe2\x47\xa3\x4e\x16\x69\x64\x3a\x41\xd7\x57\xaa\xea\x08\xa8\xe4\x3d\xc1\xf7\xb6\xc1\xff\x48\xa1\xd6\xb7\xa7\x59\x2d\x68\x4f\x55\xef\x6e\x0e\xc9\x81\xab\x20\x0d\x39\x40\x1b\x7b\xe7\x3d\xcc\x2b\xf1\xa0\xdc\x7e\x6f\x2a\xae\xc4\x5b\xa9\x42\x0a\x79\xb5\x6f\xa7\xff\xb8\x22\x31\xdf\xce\x9e\x16\xf3\xdd\x9d\x69\x69\x80\x52\x35\x38\xff\x6f\xc7\xf3\x61\xea\xbe\x6f\x2b\x6d\x98\x9a\xef\xdb\x56\x7c\xec\xd0\xf7\x6d\xe2\x85\x61\x3b\x19\x07\x76\xf0\xfb\xe6\x51\xe1\x2d\x20\xf8\x02\x5a\xdb\x8a\xfd\xee\xf6\xad\xa0\x68\xbd\xb7\x2f\xd7\x46\x3f\xb5\x07\xbf\xc5\xce\x63\x0f\xfe\xc0\x5b\x7c\xdb\x83\x1f\xaf\xe6\x7d\xf3\xe2\x32\xf4\x7b\x87\x91\xa4\x29\x26\x95\xe1\x31\xa9\x08\x8a\x76\xe9\x47\xf8\xb9\x6d\x99\x1b\x29\x93\x9c\xda\xfb\xf7\x1c\xfd\x76\xb4\x1e\x49\x9a\x6e\x79\xff\x3f\x16\x46\x7b\xff\x4f\x18\xf1\xcc\x4a\x1d\x80\x9e\xee\x23\xa0\x89\x1d\x8d\x75\xfa\xe4\x6a\x69\x56\x3a\x52\x0f\xf4\xf0\x33\x92\x40\x6f\x7f\xe8\x51\xcb\xa3\x5f\x2f\x78\x97\x92\x60\x54\x5c\xd2\x7e\xe0\xb8\x9e\x23\x65\x9e\x1f\x8e\x94\xc9\x22\xc2\xd0\x79\x49\x09\x77\xf2\x2d\x6f\xfb\x31\xe0\x5d\x4e\x58\x71\xb2\xfc\x93\x6b\x87\x7b\x40\xf7\x09\x3e\x16\x56\x61\xad\x7e\x53\x79\x70\x7f\xfb\xf6\x63\x49\x2d\x66\x16\x9e\x47\x8a\x7d\x8b\x67\x8d\x72\xae\xf9\x59\xa3\xc1\xad\xec\xdb\x3e\xf4\x3d\x5a\xed\x03\x33\x1a\x82\xc0\xc3\x32\x44\x94\x84\x87\xe5\x82\x18\x89\xe4\x1c\xdf\x63\xca\xb3\x37\x1c\x07\xda\x2d\x6f\x78\xe5\x56\xd8\x6d\xcf\xf4\xc5\x76\x7a\x98\xbd\xc7\xb6\xe2\xf7\x7f\xe2\x2a\xbf\x1f\x0e\x67\x2c\x9f\xd2\xa7\x41\x4a\x6f\x0e\x4c\x1a\x96\xe7\xf3\xfc\x14\x9a\x5f\x5d\x29\xbc\xd5\x6b\x05\x92\x51\xed\x0a\x64\x4e\x82\x04\xfb\xb0\xdd\x9a\x93\x4c\x49\x10\xea\xc5\x46\x7c\xf0\x8c\x78\x3a\x99\x1e\x4b\xaa\x7a\xb7\x1c\x69\xe7\xa5\x42\x4f\x90\xfd\xcb\xb1\x5b\x29\x5b\xc1\x1e\xff\xfc\xad\xfc\x04\xf5\x62\xd7\x39\x3f\x01\x49\x71\xef\x27\xf7\x88\x8e\x14\x42\x54\x34\xe4\xbc\xa1\xa9\xab\x83\xf5\x82\xfe\x9e\x0e\x23\x8d\x01\xce\xc9\x04\x06\xe7\xa1\x9e\xd8\xa9\x17\xb4\xe9\x27\x76\xe2\x32\x51\xa2\x81\x83\x78\xd3\xdb\x89\x06\x7a\x4d\x2b\x7a\x9d\x68\x4f\x2b\xd6\x36\xc0\x8d\x63\xe0\xc8\x87\x8a\x5d\xcf\x04\x38\x79\x00\x13\xf9\xe4\x9a\x2d\x1f\xde\x46\xa6\x02\xc9\xee\x71\xa5\xa6\x09\x0d\x2e\x63\x47\xf4\x05\x05\xcb\xf5\x7c\xf4\x9a\x32\xfa\x67\x6e\x78\xc6\x1d\x7e\xe0\x27\x74\xae\x60\xae\xfb\x6a\xb1\x1f\x29\x59\x40\x8d\xad\x47\xe9\x01\x6a\xb4\x94\xa7\x6f\xc4\xc6\xbe\xad\xfc\x00\xf5\xca\xfc\xcb\x80\x74\x05\x39\xac\xd4\x2d\x3d\x3a\x80\x19\x63\xd3\xcb\x24\x00\x3a\x2f\x9e\xaf\x87\x3d\xf9\x09\x9d\x92\x69\x7e\x99\x22\x3e\x85\x26\xbb\x23\x0d\x49\x6d\x81\x07\xbd\x60\x7b\x25\x5f\x36\xdd\x92\x3d\x81\x74\xdb\xef\x03\x29\x5b\x3f\x67\xf8\x0b\xe9\xbd\xa5\x70\xca\x7a\xd0\x80\x14\x43\xbe\xa7\x0f\x3d\x99\xd3\xbe\x8f\x13\xbf\xc9\x4f\x10\x2d\xe5\x65\xff\x08\x6c\xee\x85\x70\x87\xdf\x07\x27\x78\xdc\x52\x72\x82\x17\xf2\x17\xdf\x2f\xa7\xce\x8b\x21\xf3\xe5\x5b\xe3\xe8\xfd\x2f\xd2\x0d\x05\xd2\x65\x6b\xb8\xcf\xcb\x1e\x91\x4f\x97\xca\x37\x52\x03\x29\x2a\x80\xd5\x7b\xf9\x3d\x14\xf4\x3f\x3b\xce\x89\x5b\xb8\xed\x1a\xbf\x90\xc7\xe4\x1a\x3f\x1a\x87\x80\x5c\xe3\x07\x11\x29\xb7\x72\x1c\x94\x9e\x59\x15\xb3\xbe\xb2\x54\x8e\x68\x8f\x6d\xf6\x65\xbd\x31\xae\x09\xfb\xc2\x09\x15\xbc\x5f\xd6\x07\x62\x94\x7f\x59\x04\x84\x29\xbc\xb8\xab\x46\xd5\x69\xf3\x11\xd3\x28\x3f\x4a\x7c\x35\x7e\xb1\xbe\x7c\x20\xab\xd1\x50\xe8\xcb\xd4\x1b\x7a\x98\x7e\x2e\x2b\x1d\x5a\x3e\xad\xa9\x6a\x79\xb0\xa6\x21\x3d\xbc\xc1\xf1\xfe\x76\xbe\x20\xac\x17\x6f\xce\x86\x1a\x50\x49\xb3\xd9\x30\x6f\x48\xf9\x02\xaa\x3a\x28\x52\x53\x09\xa6\xe8\x42\x5e\xfb\xd2\x90\x45\xe4\xb5\xaf\xd7\x91\x0e\xb5\xef\x61\x2d\xf2\xd3\x97\xd8\xa6\xdf\xbe\x33\x13\xfb\xeb\xdb\x39\xe4\x23\x53\x92\xa8\x20\x86\x4a\x3f\xc9\x73\xa5\x50\x3c\x32\x12\x8d\xdf\xe0\x89\x01\xcd\x0e\xfe\x0b\x6e\xf2\x86\x1c\xd3\x27\xe6\x09\x76\xb3\x9e\xe4\xe9\xf1\x67\x2a\x6d\xc1\x9e\x53\xc2\x3e\xfc\x18\xe9\xe4\xc2\xaf\xdc\x70\xbf\xdf\xf6\xd3\x22\x1b\x93\xb5\x80\xd4\x1a\xb7\xb3\x16\xc4\x97\xf8\xf6\x53\xac\x99\x72\x99\xd8\xaf\x60\x63\x06\x9a\xee\x4d\x82\x70\x73\x79\xf3\x4b\x7c\x80\xca\x52\x70\x12\xb4\x7c\xdb\xb5\x7f\x7e\x7a\xd0\xb1\x8d\x8f\xcd\x79\x09\xb6\xb8\x61\xde\x3c\xf6\x99\x42\x26\x95\x21\x9a\xb7\x42\xd6\x6f\x44\xce\x8c\xd1\xcc\x15\xd3\xf9\x1b\x45\xb6\x06\x54\x82\xb4\x2d\x55\x8d\x79\x5a\xed\xb2\x03\x30\x46\x91\xe7\xf1\xf9\xce\x4f\xd8\x66\xc8\xbe\xc6\x75\xa5\x19\xd1\xaa\x7b\x9c\x9b\xef\x51\x9e\x81\x94\xfc\xc1\x1d\x4e\x67\x26\x68\xa7\x31\x9f\x8a\x00\x38\x98\xab\xe9\x37\x7e\x70\xe2\x4d\x07\x00\x10\x6b\x3a\x37\x1e\x3e\x39\x81\x6c\xc4\x3e\x80\xa6\xbc\x18\xe9\xc2\xfb\xe8\x4c\x33\x4f\x35\x9a\x66\x5e\x8a\x47\xd8\x81\x94\xdd\xfd\xe4\x43\x39\x8f\x51\xa9\x67\x72\x13\x78\x75\xa6\x72\x13\x54\xd8\xd3\xdc\xec\x3b\xf2\xc3\x4a\x0b\xbc\x34\xc6\xf3\x5b\x76\x3d\x79\xe1\x07\xd5\x72\xfa\x49\x9f\x02\x83\x9e\x4e\x79\x80\x26\x3c\xfd\x12\x4f\xcd\x5c\x61\x40\x39\x40\x41\x66\xda\xab\xf2\xa1\x89\xb5\xf2\x21\x2a\x60\x0b\x28\x5b\xe3\xc1\x84\xd8\x51\x09\xfb\x9a\x7e\x6f\x87\x67\x7b\xe6\xe6\xd0\x40\x7c\x32\x93\xa4\x06\x9c\x67\xd3\x49\x0d\x12\x5f\x37\x37\x47\x0a\x12\x35\x37\x37\x2b\xd8\x1f\xc8\xe7\x52\xd6\x8f\xc0\xb3\x46\xc3\xf2\x1e\xa0\xc7\xcd\xcd\xb6\x97\xcf\x42\x38\x72\xfd\xb3\x12\x88\xcd\x07\xbd\x92\x73\x0d\xf4\xa5\x14\x9d\x19\xf8\xf4\x5b\xc2\x81\xc4\x08\x7a\xa0\x97\xde\x23\x49\x97\xca\x6d\x65\x56\x3c\xf7\x4e\x82\x75\x20\xcb\x2a\x1b\x90\x33\xbe\x17\x20\xed\x18\x96\x6f\xb7\x54\xee\x83\x70\xee\xb6\xe2\x96\xb4\x22\xf3\xc8\x91\x1e\x74\xa2\x6f\x29\x13\x53\x3a\xf3\xdd\x5b\x90\x87\xeb\x97\x79\x38\xa4\xe6\xee\xab\x4a\x9d\xfe\x4c\x85\xcc\xe9\xee\xf3\x1b\x22\xdc\x71\x07\xa4\x43\x67\xcf\x08\x2d\xed\x8b\x45\x36\xec\xc2\x53\x0f\xf3\xac\xba\xa0\x23\x41\x12\xbd\x6e\xee\x64\xcf\x60\x1f\xea\x9d\x9e\xc2\x9b\x34\x53\x31\x0d\x07\xa1\x4a\x53\x31\x0d\xed\x1a\xe0\x13\xb2\xa3\x55\x9d\xda\x8d\x15\xd7\x0b\x3e\x65\x7c\x1a\xb5\xe2\xd1\x03\x3e\x34\xae\x06\x64\xbd\xa3\xa4\xd0\x93\x95\x76\xb4\x70\x2c\xf8\x8e\xc2\xc5\xf6\xe6\x01\x1f\xe8\xd3\xa9\x0e\xfc\xc4\xda\x82\x74\xa2\x5d\x8c\x43\xba\xf5\xd5\xb3\x58\xe8\xd6\x67\x40\x0b\x96\x99\x76\x34\x35\x5a\x3a\x9c\xbc\x02\x73\xc6\xe4\x25\x1e\x1c\x51\xf3\x70\xea\x48\xbf\xcb\xb7\x40\x0d\xcd\x07\xc0\x3c\x88\x69\x63\x1a\x94\x6d\x60\x0f\xe7\x3a\xac\x4e\xd8\xae\x30\x0f\xec\x74\xf9\xd2\xa7\xe3\x95\xaa\x60\x94\xba\x34\x0b\x46\xbe\xb6\xc2\x39\x33\x9d\x5e\x20\x8c\xe3\xc0\x9a\x71\x06\xb4\x88\x08\x2f\x3d\x9c\x40\x94\xfd\xef\x84\x02\x0d\x7f\xcf\x3c\x78\x30\x80\x91\x69\x0d\xb1\xcb\x4e\xc7\x34\x5c\xbd\xa6\x4f\x7b\x0c\x2e\x20\xa5\x40\x0b\xf2\x66\x14\xf8\x86\xa6\x42\x1c\x8e\x9e\xaa\xf0\x82\xd4\xb5\x1c\x96\x71\x72\x98\x5d\xe0\x83\x7e\x0d\x69\x1c\xac\x77\x20\xc9\x33\x8d\x99\xe6\x9d\xfb\xb4\x63\xcb\x3e\x03\x99\xc6\xf5\xfb\x9b\xf5\xd3\xa9\x06\xae\x2b\x1f\x8a\x32\xad\x7e\x4c\xc7\x3b\x5c\xd6\x31\xa7\xb3\x00\x84\x6d\x14\xc7\x3f\xe1\x62\x9a\x85\x8b\x4e\x30\x0e\x1e\xda\xe9\x9c\x2e\x05\xf3\x7c\xe7\x5b\x8e\x0c\x26\xc8\xf1\x06\x57\x4b\x5d\xf6\x0a\xbd\x6a\xb3\x92\x84\x66\xf2\x42\xce\x46\x2f\x37\x8a\x15\x5f\x4a\xd1\xc3\x5f\x3a\x8b\xf5\x3c\xce\xd7\x62\xf5\x9d\xdd\xe9\x9b\xfe\x17\x1b\xb9\xc0\xd8\x6d\xa7\x98\x0a\x13\x28\x61\x5e\x0a\x13\x28\x61\x5e\xc5\x89\x48\x70\x0d\x4d\xbd\x5b\xd3\x09\xd5\x98\xba\xe8\x5f\x78\x11\x6d\x3a\x32\xe0\x62\xe7\xea\x9d\x9a\x03\x4b\xfd\xf4\x35\xff\x0b\xae\x5e\x89\x2f\x82\x5b\xf9\x29\x9a\x96\x95\xf5\xe5\x7d\xb4\xce\x59\x6d\x18\x61\x8c\x0e\x14\xb8\xc8\x25\x3c\x2b\xae\x33\x77\xe2\x87\x68\xda\x09\xdd\x55\xef\x45\x8b\xdf\xb3\xb2\x17\x21\x26\x5f\xe5\xbf\x7a\xbe\xd4\xba\xb3\x96\x89\x22\x38\x81\x44\x05\xac\xa4\x63\x0a\x78\xf4\x64\x56\x2f\xe4\x00\x39\x99\x27\xfd\x60\xe8\x82\x8c\x38\x98\x3a\x0c\x09\x1f\xd6\x54\x14\x41\x25\x22\x7e\x56\x36\x3b\xeb\x51\x2d\x09\xd8\xd2\x36\x79\xa3\x06\xc3\xc7\x4c\x10\xc1\xe7\x53\xc7\xa1\xa6\x9b\x5b\x71\xbb\x35\x75\xed\xf9\x4e\x99\xcd\xb2\xec\xbc\x8a\xc8\xc9\x5e\xab\x7e\xe6\x83\x80\xee\x69\xbf\x7d\xc3\x31\x34\xed\xb7\x1f\xc4\x5e\x4f\x3c\xf5\x68\xed\x53\x0f\xca\x74\x94\x89\x79\x92\x1a\x9a\x89\xb7\xa7\x3e\xe1\xd4\x93\x57\x63\x88\xbc\x98\x27\x26\x47\x36\x19\x17\xfd\xf1\x38\xcd\xd3\x8b\x6f\xb5\x7d\xfa\xda\x7f\x8e\x2a\x3b\xf2\xc9\xaf\x3f\xe5\xba\x2f\x03\x8a\x3a\x7d\x45\x04\x3d\x7d\xfa\x71\x18\xde\x37\x99\xb8\xee\x6b\xaa\x5a\x52\x69\x29\xf4\x11\x5c\xf2\xa5\xba\x84\xfa\xed\x49\x6f\x27\x4b\x71\xde\x90\x14\x23\xc3\xeb\xc1\xd9\x29\x0f\xf9\x81\x81\x64\x9e\x8e\x17\x3b\x33\x63\x3e\x2d\x47\x0a\xe5\xdb\x47\x10\xb4\x13\x7c\xcb\xf4\x71\x3c\x06\x3f\x6b\x06\x6c\xab\xd3\xec\x72\xd0\xa3\xd3\x3e\x11\xc6\x3e\x49\x09\x10\x0e\x95\x24\x00\x9c\x71\x7e\x46\x25\x8c\xc5\xcf\xa8\x0c\x82\xdc\xa7\x5c\xdb\x95\x88\xbf\xe9\x6b\xff\xdc\x31\x9f\x17\x67\x65\x4b\x55\x0b\x29\xec\x0f\xdf\xf4\xe7\x1d\xa4\xe9\x87\x53\x2e\x66\x44\xaf\xa1\x54\xb2\x68\xce\x0b\x16\xc9\x76\xe1\x62\xff\x62\x34\xdf\xb2\xf0\x8b\xb8\x2f\xf6\x1d\x4e\xf1\x6c\x89\x0b\x03\xe9\xa7\x57\xcb\x29\x6c\xd9\xcb\x21\xc1\xd9\x30\x76\x84\x47\xb7\xb9\x06\x53\xc6\xd8\xb0\x3f\x43\x71\x7e\x3f\x05\x8b\xc6\xbc\x08\xff\xe4\x28\xbd\xf0\xc3\x20\x72\x5e\x37\xdd\x30\x58\xad\x77\xdb\xc0\x50\xe2\x10\x59\x75\x27\xf7\xf2\xf1\xd2\x4c\x5f\xcc\x3f\x6b\xea\x62\x3f\x85\x01\xfa\x2d\x14\x82\x12\xa7\xdc\xdb\x75\xdb\xc1\x5e\x27\x5b\xdb\xd3\x8e\x47\xe6\xa1\xb4\xce\xf4\x0e\x40\xeb\xe2\x70\x4e\x3f\x52\xd2\xd0\xa9\x1a\xc1\x0b\x67\x40\xd9\xb5\xe0\xaa\xf2\x51\xd7\x86\xec\xde\x30\x5d\xb1\x88\xf2\x58\x77\x54\xdc\xc9\x1d\x7d\x2c\x17\x53\x2e\xeb\xda\x40\x56\x1e\xeb\xda\xf6\x94\x5d\x82\x4e\x20\xaf\x60\x4f\x55\x5f\x6a\x18\x01\xed\x14\x62\xf5\xfd\x80\x09\xc9\xc4\x67\x73\xf2\xe0\x2d\x90\xf3\x2f\x32\xe8\x2c\x27\xbd\x48\x0e\xae\xc1\x47\x32\x15\x2f\xde\x2f\x50\xd6\xab\x4c\xd7\xcd\x22\xd0\xac\xd3\xb8\xb6\x14\x3a\xf5\x0c\x83\xf6\x4d\x00\x16\x53\x8e\xef\x3d\x27\x3d\xf7\xfe\x71\xf8\x4c\x79\xbe\x6b\xdb\x03\x29\x68\x33\x3d\xf2\xb6\x1c\x8d\x4e\x4f\x5d\x20\xa5\x0a\x0b\xa6\x8a\x83\xc1\x5a\x35\xfd\x06\x09\xb1\xfb\xb3\xd9\x94\xd5\x53\xc6\x3c\x32\x0a\x82\x64\x4a\xea\xda\x02\x93\x56\x9f\x8a\xe8\x01\x37\x3f\xa2\x1f\x6a\x21\xa1\x1c\xeb\xd1\xf1\x7a\xc0\xcc\xba\xac\x05\xdc\x17\x98\x72\x88\x17\xc2\x05\xa7\xdf\x1d\xc1\x5f\x3a\x3b\x42\x38\x3b\xd3\x8f\x8b\xb4\x23\x1f\x8a\xea\xd8\xd3\x1d\x7b\x15\x3b\xd1\xee\xf0\x76\x04\x82\x93\x74\x40\xbf\x52\xc6\x97\x26\x1e\x9c\x91\x53\xb9\x02\x6a\x43\xe1\xb2\x37\x9c\xb8\xad\xe9\xc4\x01\x3c\x5a\x33\xf5\xb6\x48\xd9\x58\xe4\x8e\x46\x05\xd1\xd9\xfd\xbd\x87\x24\xe5\xe1\x3e\xae\xf4\xe1\xf7\x43\xb8\xda\x33\xbb\xe3\x35\xf7\x14\xae\x91\x44\xa6\xed\x7e\x8a\x06\xaf\xe5\x94\x47\xfb\xe0\xcd\x89\xe9\x8c\x03\x38\xce\x66\xc7\x0d\xc9\xd9\xae\x1c\x03\x65\xdb\x52\x78\xba\x90\x76\x64\x06\xc2\xe3\x31\x95\x0a\xa0\x44\x10\xea\x5e\x4b\x1c\x67\xd3\x9e\xf1\xe8\xcd\x7a\x24\xa4\x36\x14\x50\x3f\x12\xd2\xd0\xda\xf5\x48\x48\x89\x90\x32\x7c\x28\x70\xd6\x0c\x84\xe3\xf1\xbd\xb9\x7b\x0e\xdc\x33\x6c\x43\x39\xd1\x4b\x96\xdd\x39\x01\xb8\x5c\x34\xfd\x82\x48\xe3\x54\x1f\x7e\x91\x92\x33\x6a\x60\x5d\x4c\x33\xc3\xf8\xec\x40\xac\x7a\x01\xb4\x57\xac\x06\xb4\x7d\x09\x82\x19\x5c\x29\x3f\xd3\xcd\x5b\x2d\x51\x57\x2f\x19\x11\x3a\x36\xed\xa7\x6f\x88\x41\xf2\xd3\x97\x33\xcd\xdc\x46\x16\x7c\x42\x04\xa9\x6a\x33\x0c\x67\xfc\x20\x58\x81\x93\xdb\xcf\x79\x64\xbd\x86\x63\xc2\x3f\x65\xda\xdf\xd0\xd6\xc0\x38\x8d\x00\x3c\xec\x40\xe3\x88\x1f\xda\xd1\x67\xa6\x52\x87\x03\x99\x7c\xe6\x70\xc2\xb5\x2d\x65\x0a\x71\xed\x69\x45\x6f\xac\x9e\xa9\xf9\xd2\xce\x4b\x99\x66\x03\xaa\x53\x5e\x81\xd5\x7d\x03\xdc\x45\x84\x81\x24\x44\xc0\xee\x9d\x74\x80\x38\x8a\xa9\xb4\x02\x05\x73\xf7\x54\x1e\x81\x83\xc8\x88\xe9\x78\x81\x11\x53\xd2\xed\x33\x85\x40\x84\x79\xdb\xc2\xc7\x94\x2b\x73\x40\xd9\x60\xaf\xb7\x1f\x91\x49\x1f\x8e\xb4\x84\x2b\xdc\x3e\xf7\xb7\x34\xe3\x6c\xcd\x3d\xcd\xd8\x1a\x0e\x24\x43\x1c\xaf\xe8\xcd\xdb\x62\x5d\x38\xc6\x6d\xb1\x2e\x5b\xf4\xb6\xa3\xf9\x4a\xb3\x0a\xc6\xe0\x39\xd8\xe9\x2c\x02\x1b\x04\xe1\x24\x02\xb9\x2f\x32\x6f\x3f\x6a\x7c\x66\xb6\x78\x3a\x68\x00\x3d\xdc\x6c\x3a\x15\xf3\x81\x71\xdf\xb6\x89\x84\x9a\x6f\x02\xe0\x38\xd6\x1c\x81\x80\x41\x7c\x2a\x87\xc0\x81\xd7\x63\x92\x43\x00\x2e\xaa\xe0\x84\xd2\x7b\x6a\x0e\x77\xc9\xc0\x10\xf1\x11\x60\xfc\x46\x47\xe4\xe0\x69\x15\x0d\x97\xfe\x74\x9e\x80\x56\x53\xb8\x78\xea\xc6\xd6\x53\x9a\x80\xca\xbd\xf2\xa9\xa8\x81\xfd\x24\xb8\x71\x4e\x5b\x76\xb9\xce\x32\x67\x96\x3a\x0d\x99\xd6\x3c\x41\x8e\x22\x20\x21\xf3\xf4\x23\x1c\xa3\xa4\x5d\xf3\x7c\x22\x05\xe6\x1c\x44\xcc\x00\x49\x9a\x80\x9e\x9c\x18\xa0\x5d\xe9\x73\x80\x42\xda\x95\x3c\x93\x51\x0f\x10\x0a\x0a\x7a\x90\x27\x55\xfd\xd8\x00\x13\xad\x68\x84\xda\xd0\x93\xa7\x19\x03\xe6\x1a\xc7\x26\xc4\xca\xc2\xf3\x19\xb8\x4c\xe6\xb4\x68\x48\xb8\xc6\x9c\x16\x0d\xa1\x61\x85\x1f\x54\x32\xc7\x4e\x5d\xf5\xaf\x3c\x64\x3e\xfd\xe6\x45\x4b\xff\x4a\x1d\x41\xe8\xd6\x74\x60\x02\x9e\xb8\x39\x1d\xc0\x0f\x5b\x98\xf2\x60\x45\x5e\x50\x4e\x80\xc5\xed\x40\x55\x56\xb4\xde\xbe\xbf\x3e\x3f\xfd\x38\x46\x54\xfa\x29\x16\x52\x32\x28\x3b\x17\xae\x4c\x95\xcc\x2a\xed\x4a\x1f\xb6\xd4\x1a\x72\x94\xc4\xd5\x99\x39\xbf\x9c\x81\xd3\x6a\xea\xe5\x8c\x55\x78\x02\x6a\xc8\x57\xaa\xea\xa1\x1a\xf8\xf4\xc3\x5e\x5c\x62\x47\xa6\x33\x11\xe4\xfa\xd3\x24\xda\x82\x08\x81\xe9\x54\x04\x38\xca\xe6\xc3\x17\xd2\xb7\x7c\xa9\x73\x1f\x45\xd8\xb1\x17\xdb\x48\x99\x5e\x07\x66\x58\x0f\xdf\x5c\x21\x38\x64\x2a\x2f\xc1\x71\xe4\x43\xa9\xa0\xdc\xdc\x9c\x0f\x8b\x28\xe8\xcf\x0f\x7b\x71\x33\x2a\x85\x8b\x6f\x5b\xbe\x53\x1c\x25\x72\xa8\x83\x3d\xc8\xb2\x31\xfd\xfe\x46\x94\xbf\x87\x2f\x3a\xb1\xc8\x79\x7e\x83\x2d\xe0\x47\x35\xc6\x99\x46\x5f\x1e\x7e\xfa\x7f\x8b\x20\xc0\x7b\x91\x6e\xc7\x9f\x34\x15\x05\xb2\xe7\xf2\xd2\x7c\x60\x4d\x3c\x03\x9a\xfd\x65\x5a\xed\xb9\x85\x2d\x3c\x7c\xf3\x11\xa6\xf5\xe0\x12\x2c\xa8\xc3\xfd\x10\x21\x95\xb1\xa0\x12\x8d\x3c\x15\x40\x52\xc9\x45\x36\x1f\xb6\x47\x11\x64\x33\xfd\xe0\x46\xac\xce\x3c\xb8\xf1\x41\xcf\x6e\x07\x44\x36\x45\x97\xf4\x38\x8a\x1e\x78\xc6\x18\x97\xa3\x10\xf0\x29\xce\x87\x93\x95\xc2\xc1\xfc\xfa\x06\x39\xd5\xa6\xdf\xdb\xf8\x08\x21\x7e\x70\x23\xb7\xab\xa6\x5e\xdc\x28\x51\x2f\x1f\x84\x28\xb0\x61\x15\xb3\x72\x8c\x9a\x4e\xec\x9c\x64\xd0\x4f\x8b\xc6\x39\x91\x15\xc3\x52\xb9\x9d\x33\x9f\x9d\x99\xed\x80\x7a\x05\xaf\xa5\xaa\x9f\x52\xdd\x03\x1a\xdd\x13\x48\xc6\x84\x2d\xed\x88\x81\x60\x5b\x73\x3a\x85\xc1\x55\x9e\xe9\x74\x0a\x84\x28\xcc\xe7\x00\x9f\x1d\xd0\xf8\x0c\xa0\xc5\xf1\x79\x12\x6f\xf2\x90\x06\x3e\xfa\xf9\x44\xa0\x42\x70\x7e\x5a\x8c\xee\x81\xcc\xd1\xf6\x34\x24\x84\xae\xf4\xa9\xa5\xc6\xf0\xe5\xd7\x32\x3e\x32\x8a\x33\x31\x10\x47\x38\x95\x89\x61\xe7\x5a\xdf\x74\xf8\x4b\x23\xe0\x66\x3a\xfe\x25\x77\xbf\xa6\x9f\xd2\x28\x63\xa4\x5d\x69\x16\x3d\x75\x65\x06\x3b\x03\x39\x63\x2b\x23\xf1\x5b\x2f\x68\x2b\x0a\x87\x29\x5b\xa6\x59\x46\xee\xcf\xea\x99\x48\x33\x21\xf6\xdf\x7e\xe6\x4e\x64\x19\x7f\x82\x9f\xd5\xe0\xc6\xc9\x7c\x3a\xe7\x0f\x8f\x0d\x4e\x87\xca\xf0\x98\xea\xf4\xdb\x19\xe4\x5d\x9f\x4f\x5f\xe1\x24\x4e\x65\x3e\x1d\x5e\x80\xa2\xf5\x74\x78\x01\x97\xd6\xe6\xd3\x74\x58\x53\x15\x3a\xfc\x3e\xe6\x7b\xfa\x61\x8d\x76\xc1\xb7\x9c\xca\x21\xca\xad\x82\x6c\x92\xc8\x67\x3a\xb1\x43\x3c\xb8\x7e\x74\x83\x47\xc2\xa7\x43\x6c\x48\x20\x3d\x1d\x62\xd3\xd9\x97\x44\xd8\x5c\xa9\xa9\x41\xa2\xae\x39\x01\x04\x0f\x2e\x4f\x5e\xe7\xc8\x90\x15\x53\x53\x79\x1b\x7b\x2a\xa4\xa6\x8c\x33\x55\xe5\xe4\xe2\x58\x77\x48\xcd\x4e\x78\xcb\x74\x9c\x4c\x23\x06\x6a\xbe\x14\xd7\x45\x3c\xc1\x7c\x99\xb4\x51\x72\x5e\x8a\x39\xdd\x6b\xa0\xa2\x87\x6f\x68\xc6\x21\xa7\xc4\x9b\xcc\x97\x9f\x8c\x09\x72\xc3\x98\xa7\xaa\xa8\x7e\xa4\x8b\x87\xc7\x11\x10\xec\x98\x01\x05\x2d\x44\x47\x76\x4a\x09\x32\xdf\xcf\x97\xc3\xf0\x90\x6c\x1c\x36\xd3\x08\xd0\x9a\xaf\xd0\x79\xea\xfa\x58\xcb\xa0\x6f\x23\x44\x27\x32\xf0\xc6\xa8\xac\x1c\x12\x47\x0c\x47\x2f\xc4\x0c\x34\xbb\x17\x9e\xde\x33\xa5\xa2\xed\x91\x42\x3b\x56\x03\xbd\xdd\x25\x9d\x48\x1d\x39\x32\x4c\xa9\x23\x5b\xa8\x45\xb2\x67\x29\x59\xf6\xe9\x7d\xc7\x3c\x4f\x78\x06\xcd\x8a\xb6\xf7\x2c\x97\x8c\x55\xbc\xf9\x34\x5f\x26\x66\x50\x7f\xfb\x25\x53\x58\x98\xe3\x5f\x72\x37\x72\x3a\x00\x26\xf6\xbb\x77\xf8\x64\x40\x6f\x27\x34\xc6\x37\xa4\x86\x68\xfa\x76\x60\x72\x6c\xb2\x6f\x4c\x0c\x81\x9e\x0a\xfa\xe0\x4b\x1d\xc3\xbc\xdb\x33\xfd\xfe\x06\x59\x9f\xa6\xf2\x4d\x24\x5f\xd5\x54\xac\x4a\x25\x66\x6f\xbe\xed\xf0\x47\xb8\x52\x74\xca\x11\x8d\xc8\xc1\x29\xf5\x83\x1c\xeb\x0e\x43\x71\x78\x0a\x0f\x29\xcc\xf7\xcd\x40\x98\x91\x9b\x81\xa4\xd4\xda\x24\xfc\xc6\xaf\x63\x70\xef\x61\x3a\x0a\x65\x3f\x4b\x0a\x9f\xfe\x94\xd9\x94\x80\x19\xe1\x4b\x71\x27\xb5\x67\xde\xed\xb8\x4b\x68\x87\x1f\xc1\x68\x04\x66\x4d\xc7\x9d\x10\xdc\x32\xdf\x4e\xf2\x9c\x30\x03\x05\x9e\x54\x92\xc9\xcf\x37\x8c\x0b\xdd\x53\xa9\x29\x6a\xff\x7c\xe9\x7d\x93\xa1\x39\x0f\x15\x8c\x54\x71\x28\xd5\x09\x4c\xaf\xbe\x61\xa6\xd4\x59\xbb\x40\x37\x2b\xe6\xb4\x40\x73\xc0\x2b\xe0\xda\x71\xbe\xaf\xb7\x20\x35\x74\x50\x26\x5d\xc2\xf9\xdb\x16\x24\x76\x70\xd2\x89\x2d\xcf\xbe\xfd\xb9\x40\x1f\x7c\x57\xc0\x53\x5f\x82\xc1\x70\xec\xfd\x09\xe4\xbd\xa9\x99\x5e\xa0\x73\xdd\x5f\xe9\x65\xe8\xcb\xb4\x63\xed\xaf\xa4\x21\x4d\xc9\xfe\xed\x6d\xcb\x55\x55\x02\xe9\x9e\x3e\x15\x85\x20\x4e\xbe\x20\x1f\x4a\x95\x2e\x45\x6f\x4e\x94\xb5\x20\x2f\x6e\x20\xc8\x0d\x64\x6d\xd2\xb4\xdc\xbd\x40\x85\x48\x9c\x29\x14\xf5\xef\xf9\x52\x0e\xb9\xcc\x8f\xe4\x3a\x5f\x89\x5b\x90\x07\x09\x3a\x56\x71\x37\x26\xfd\xf6\x18\x99\x66\x07\xf2\xd9\xcf\xbf\x40\x71\xef\x8d\x51\x99\x0e\x33\x46\x7b\x8c\x4d\x5b\x0b\x3c\x3d\xaf\x7c\x29\xbb\x46\x3f\x8c\xce\xee\xeb\x38\x67\xad\x80\x6a\xe8\x28\x40\xeb\xf8\xea\x25\x50\x11\x94\x0f\x35\xc6\xa3\x03\xd9\x7c\x7f\xa5\x19\x6f\xbf\x7a\x02\xda\x54\x7a\xa6\xb2\x31\x68\x40\x53\xea\xef\x01\x64\x45\xfe\x18\x80\xe2\x0e\x81\xec\xa1\xdc\x2e\x20\xab\xf5\x35\xa0\x0c\x7c\x4c\xec\xee\xd8\x63\x3f\xc8\xb0\x40\x05\x2c\x96\x54\xd5\xac\x7f\x20\xa3\x03\x02\xbe\x28\x7a\x32\x90\xe1\x6d\x40\xcd\xdb\xdb\x60\x03\x82\x1f\xd1\x85\xf5\x80\x8d\x66\x6e\x4f\x56\xaa\x8a\x39\x65\x8c\x52\x68\x47\x50\xb3\xd8\x5f\xae\x54\xd5\xeb\x34\x2d\x55\x87\x0f\x08\x20\x63\x0a\x6e\xa6\x0f\x36\x93\x03\x48\x1c\xf9\xbb\x20\xe9\x93\x1b\x93\x61\xbb\xe8\x41\x4d\x07\x22\x35\xda\xc4\x38\x52\xc1\x46\xc4\x92\xfd\xea\xc7\x31\x7e\xfb\xd0\x7a\xc6\x09\xa6\x4e\x7b\x13\x76\x72\x98\x74\xd8\xa0\x87\xf3\x24\xf8\x86\xd3\x02\x35\x1d\x9f\xaa\x9a\x0e\x76\x9d\x32\x62\x74\xc7\x3a\x2d\xc8\x8c\xf1\x4c\xa1\x29\xe9\x2c\x80\xba\x53\xd1\xd3\xaa\x82\x18\xd8\x75\x7a\xff\xa2\xda\x41\xb7\x20\x45\xdc\xf7\x0a\x24\x3a\x2a\x29\x63\x20\x14\x42\x48\xc1\x40\x8e\x96\x0e\x59\x1d\xb0\xb7\x74\x62\xdf\xd9\x06\x02\x7e\x00\xe3\x62\x99\x8f\x01\xb2\xcc\x81\x09\xab\xa6\xae\xd1\x63\x20\xbc\x77\x76\xa5\x4f\x6b\xc6\x9f\xba\xbe\x9a\x45\x3b\x0a\x69\x08\x9f\x3e\xb0\xaf\x41\x3e\x8e\x5e\x39\xd9\xce\x07\xd2\x4f\xa6\x16\xd3\xc9\xe7\x53\x59\x39\x1a\x7d\xea\x7e\x72\xff\x74\x62\x85\xbf\xa4\x21\xa5\x4a\xda\xd3\xce\xad\xcb\x7f\x54\x35\x01\x85\x15\x91\xa0\xe3\x2a\x01\x0f\x89\xd9\x74\x22\xe1\xbd\x6f\xf9\x52\x0b\x7f\x7e\x6b\xe6\x5e\x55\x75\x70\x64\x2a\x15\x2a\x11\x42\x3c\x78\xe0\x9b\x33\xc6\x69\x3f\x3a\x64\xc9\xd3\x18\xe5\x53\xa8\x6b\xb4\x2d\x90\xe8\x20\x2b\x8d\x5c\xcf\xa6\x21\xb7\xc7\xc9\x01\xa4\x64\x1e\xab\xa1\x80\xca\x1d\xc3\x89\x58\xcc\xfe\xa0\x0a\x85\xba\x94\x83\xa9\x2c\xd8\x4e\xd8\x99\x84\xba\x84\xc5\x3a\x41\x87\x93\x1f\x2d\x48\xf3\x03\xb5\x97\x1c\x9e\x34\x3b\xbc\x33\x3a\x90\x87\x19\xc8\x66\xb9\x92\xaa\xba\x1e\xc7\xa0\xcb\xa0\x4b\x30\x90\xcd\xee\x6a\x29\x84\xf4\x82\x81\x45\xae\x40\x4a\xf0\x05\x73\x28\x66\x78\x6c\xe2\xe2\x03\x11\x4e\x51\xa0\xc3\x34\x83\xc7\x8f\xe9\x09\xe1\x81\xac\x49\xad\xe4\x4b\x6d\x93\x96\x32\x16\x81\x76\xfc\xc8\x18\x5b\xb3\xf8\x60\x6b\xb4\xea\xdc\x2f\x57\x20\xf7\x08\x72\x26\x2d\xf6\x53\x99\x6c\x4c\xfa\x40\x94\x66\x4f\x2b\x25\xc7\x51\xe0\xf8\x0e\xbc\xf9\xcc\xb9\x85\x2d\x64\x80\xe2\x90\xf4\xf3\x03\xda\x3a\xc0\x51\x5a\xe5\xfc\xc9\xa1\x57\xfd\x20\x28\x93\x55\x21\x26\x50\xaf\x66\x80\x4c\x56\x35\xf5\x5c\xa9\x6a\x72\x6e\x01\x65\x66\x86\x8f\x39\x29\x48\x76\x69\xf5\x23\xde\xe5\xd3\xa5\xd1\xe3\xb4\x70\xe2\x8f\x1d\xd2\x22\x9e\xe7\x62\xd6\x15\xcf\xd3\x6b\xfa\xb4\x5c\xc6\x54\x3a\x64\x67\x14\x66\xaf\x0e\x10\x62\x98\x90\x5a\x4d\x65\x99\x4f\x32\x30\xdf\x76\x28\x81\x2c\x9c\x9e\x01\xbd\xb6\x35\x9d\xbe\xc5\xab\xc0\xf6\x96\xb7\x1b\x3e\x56\x4d\x5c\x10\x4c\x85\xb8\x1a\xe3\x34\xfd\x40\x95\xca\xee\x51\x3b\x6c\x8c\xb7\x41\xca\x95\x42\x7b\xdf\x3f\x0d\xe9\x58\x84\x2c\x95\xc1\xa3\xd7\x2c\x1f\x47\x5f\x1a\x32\x05\x41\x4f\xd5\x21\xb8\x67\xfa\x24\x04\x37\x0b\x68\x4d\x0d\xd6\x50\x9d\x26\xf2\xcc\xc4\xf3\xfc\x6c\x4d\xa9\x50\x68\x8c\xd3\x1c\xa8\xa7\x4c\x42\x77\x86\x69\xe9\x9d\x8d\xc1\x63\x20\x17\x7c\xe3\xb4\x30\xd6\x0b\x90\x91\x4d\x19\xc8\xe6\x4b\xbb\x1b\xd8\xfe\x8a\x19\xaa\xbd\xe5\x4b\xbd\xa9\xc7\x0a\xf1\x52\xc8\x09\x76\xa7\x45\x33\x06\xa2\xf8\xa1\x23\xbb\xef\xb4\x35\xe1\xfb\x2b\x95\xab\xaa\xd9\x6c\x1a\x55\x52\x43\x98\xee\x69\x8e\x37\xe8\x62\xf8\x35\xe7\x1d\x48\xdf\x8d\x0b\xc8\x01\x39\x2c\xe5\x69\x59\x6c\xd0\x8c\x83\xbe\x2e\xb6\xf4\xe9\xcc\x31\xe9\x83\x43\x91\x11\xdf\x30\x72\xd0\xd1\xd5\x85\x3e\x52\xa8\x77\x24\xf6\x94\x89\x51\x1c\x69\x54\xbc\x60\x30\x7e\x14\xc3\x1e\x50\xd7\x13\x82\xdc\x6d\xe4\xbc\xac\x8e\x3a\x0a\x87\x3b\xcd\xc4\x06\x6b\x85\x96\x08\x9d\x39\x22\xa9\x77\x10\x37\x0d\x8e\x94\x19\xd3\x34\xa3\xe7\x6e\xf7\x40\x5a\xd4\x0e\xa6\xd8\xc1\x7a\xfa\xf7\x19\x98\x95\x43\x65\x3c\xd3\xac\xb9\x58\x0b\xa8\x81\xec\x81\x1c\x64\x0f\x4b\x71\x06\x8f\x70\x2a\x87\x32\x8d\x2d\xd0\x2d\xe8\x04\xb2\xc1\x04\x01\xfc\xf2\x53\x4e\x91\xe3\x9c\xa5\xc3\xd6\xae\xab\x3b\x94\x69\x43\x62\xd0\x93\x25\x75\x6c\x29\xab\x82\x52\x76\x09\xda\x80\x6c\xae\x38\x03\xea\x0e\x0c\xcc\xd0\x0f\x94\xf8\xfd\xd4\x05\x19\xb9\x94\xb1\x76\x1d\x90\x19\x48\x27\x96\x64\x11\x32\x2f\x8c\xac\x9d\x96\x6e\x27\x95\xa7\x25\x1c\x98\xcc\xe5\xe5\xbb\x2e\xc8\x49\x17\x46\xfb\x33\x75\x17\xe3\x8c\x12\xed\x77\x48\xf6\x73\x04\x9c\x42\x90\xe9\x12\x9f\x1a\x5b\xda\xb1\x3b\x28\x93\xa7\x80\xa7\x81\x56\xef\x08\xa7\x6c\x67\xbf\x3c\x52\xd0\x90\x2e\x6e\x84\xc2\x50\x2e\x9c\x55\xd0\x81\xe3\x9d\x46\x16\x81\x7c\xb5\x57\x3e\x95\xdf\x1a\xe5\xa2\x75\x7b\x35\xd8\x50\x8a\x7f\xaa\x63\x4f\xa1\x16\x65\x4f\x99\xbc\xb6\xe0\xa3\xf4\x1d\x75\xec\x81\x86\xa0\x1d\xc8\xfd\x6f\x40\x9a\x00\x54\x0d\x85\x49\xd5\x81\xb6\xed\x30\xa9\xc1\xae\x74\x26\x8f\x0a\x49\x34\x84\x6e\x26\xb9\x11\xc9\x0f\x17\xe7\xcd\x91\x2b\x88\xe3\x91\x1c\x01\x59\x69\x4f\x81\x63\x98\x88\x11\x59\xa0\x63\x44\x5a\x40\x0d\x1a\xd1\x9a\xa8\xa5\x02\x6f\x54\xd8\x52\x1d\xac\x6d\x73\x26\x97\x73\xa4\x90\x65\xe8\x80\x66\xb2\x23\xa0\xac\x0e\x17\xdb\x48\xd1\x49\x65\x83\x84\x14\x8f\x54\x47\x96\x01\x39\x26\xf8\x4e\x77\x9a\xaa\xda\x8d\x9f\x0f\xbb\xc8\x22\x1f\x6a\xaa\xe1\x80\x4d\x47\xd0\x38\xbe\x8d\xef\x5e\x55\x35\xf3\x47\x3a\x14\xe5\xa1\xe5\x2b\x72\xa9\x0e\xa4\x70\x05\x2e\xd5\x01\xe5\x75\xdf\xc8\xbb\xa0\xe0\xee\x80\xb9\x8b\x35\xeb\xc8\xd2\x2d\x95\xad\xf3\xc2\x4a\xbb\xfd\x89\x35\x9f\x0a\xd9\x92\x2f\x85\x4f\x49\x99\x22\xd2\x58\x03\x3d\x80\x72\x7c\xbe\x93\x8b\xbb\xf4\x40\x56\xc7\x2b\x90\x82\x56\x91\x6f\xfc\x52\xca\x28\x29\x3b\x4d\x13\x69\x54\x89\x4e\xce\x54\xbd\x25\x3a\xa7\x51\x91\x6c\x49\xd9\xc3\x63\x4c\x3b\xcf\x1f\x5f\x57\x63\xa9\x94\xfe\xa3\x8e\x12\x48\x29\xd8\x91\xe2\x08\x7f\xba\xe0\x9c\x5d\xa2\xcf\x28\x29\xb4\x0b\x17\xee\xdc\x71\xe3\x20\xf6\xf7\xdb\x17\xad\x52\xb7\xb9\x21\x7a\xc1\xcc\xf9\xa9\x2b\x1a\x28\x81\xa6\xeb\xe6\x53\xe3\xc7\x82\xc8\x9c\x74\x41\xcd\x8a\x9c\xaa\xa3\x06\x72\xe8\x00\x07\x96\x9e\x63\x39\x3e\xe8\x99\xfd\xb4\x4c\x1e\x2f\xe8\xa4\xd0\x76\x9f\x2c\x89\x9e\x67\xed\x9f\x42\xf3\x60\x04\x1a\xc7\x55\x95\x32\xd2\xa9\x82\xea\x81\x14\x65\x75\xd4\x23\x90\xe6\x0b\xf5\x73\x58\xd0\xbe\xe0\x8e\xc3\xe1\xd3\x51\x8f\x87\xbd\x84\xd7\x16\xd0\x4e\xcd\x2b\x2d\x35\xcd\x66\x3e\xed\x3f\xbe\xae\xcc\x97\x62\xb2\x4a\x45\xbe\x70\xd4\x55\x39\x02\xf9\x40\xe5\x58\x1c\xf6\xac\x7c\xfa\xd0\xcc\x22\xb6\x91\xd5\xe4\x82\xe9\x8d\x61\xa3\x11\x92\xe3\xf0\x8d\xf9\x2b\xd8\xfa\x31\x7e\x68\x6f\xf8\xb2\xf2\x05\xf7\x74\xfc\x56\xa4\x55\xc7\x6f\xd5\x13\x59\x76\xf8\xce\x3c\xfc\x47\xc9\x52\x16\x0d\xa5\x17\x91\x6d\x4d\xa1\xc9\x76\x4f\xa1\xd1\xa5\xd9\xdb\x4b\xcf\x1c\x38\x62\xfb\xca\x74\x99\x21\x66\x4a\x30\x81\x66\x12\x24\x95\x0f\xb4\x43\xde\x69\xb9\x82\x1e\x79\xca\xd2\x89\x2f\xeb\x70\x64\x0c\x11\xd8\x1e\xf4\x30\x9b\x73\xaa\xeb\xd5\x96\x12\x1b\xb1\x42\xb4\x4a\xfd\x54\xb5\xe8\xdf\x53\xd5\xfe\x89\xcc\xad\x99\x1e\xb2\xc2\xf0\x0d\xa6\x6b\x4f\x9f\x1a\xf5\x19\x48\x41\x52\x8c\xc4\x51\x5a\xd7\x11\xe8\x50\xcd\x40\x9a\x02\x76\x18\x41\x5a\x74\xe8\x87\x61\xb8\x4e\xbc\x40\x9d\x7d\x67\x0a\x6f\xc5\x99\x02\x0d\x07\x82\x31\x21\xb7\x1e\xe6\x0d\x27\xf7\x63\x2f\xb1\x0f\x3a\x64\x6b\xff\x3e\xc2\x64\x55\xd5\xf1\x00\x07\xba\x7d\x61\xb8\xa7\x19\x5d\x6d\x65\x43\xdd\xa8\x74\x41\xd5\x04\xc2\x7a\x38\xba\x2b\x66\xe8\xdb\x57\xe3\x38\xbb\x6e\xdf\x8e\x42\xd9\xba\x39\xe7\x7a\x40\xa5\x94\xa9\xa9\xfa\xf8\xf1\x75\x6e\x70\xe7\x9b\x74\xcc\x94\x39\x05\xe2\xc5\xe1\x7f\x3b\xf2\x20\xb3\xe1\x1c\x64\x35\x65\x12\x9b\xc2\x9b\x94\x03\xa6\x8e\x4c\xf9\xb4\x2f\x09\xc4\x1d\x75\x0b\x39\x38\x75\xcb\x80\x51\x4d\xdc\x60\x57\x0a\x65\x83\x45\x6d\x9d\x16\x68\x98\x8d\x69\x29\x97\xcd\xe3\x60\xad\x81\xe2\xe7\x60\xad\xd1\xd2\x8a\x38\x6c\x4b\x2b\x22\x38\xe4\x29\xbd\xe1\x52\xca\xa7\xcd\x97\x47\x51\x00\x75\x92\xb2\x3b\x26\xf2\x0d\x55\x2d\x0e\x43\x8c\x8e\xd4\xba\x5a\xca\xc4\x20\x90\x71\x27\x84\x02\x6a\xc8\x45\xac\x8d\xa2\xb8\xd6\x26\x03\x55\x05\x78\x0e\x76\xf2\x74\x28\xcc\x08\xa4\xbb\x16\x3d\xed\xb0\xab\x02\x4e\xd1\x78\x50\xf5\x18\x3b\x90\xc6\xc8\xe6\x74\xbe\x99\xab\x05\x72\xc6\x91\x40\xac\x22\xd8\x38\x65\x10\xe7\xb8\x5e\x6f\x39\xe2\x16\xf2\xe3\x2d\xe3\xd3\x8c\x66\x8a\xc3\xc7\x11\x5d\x23\xdf\x59\x95\xba\x10\x48\x14\xe0\xb5\xc7\x2e\x30\xb9\x91\x83\xc8\xaf\x4c\x34\x75\x70\x14\x4d\xbb\xdf\x32\x1b\x3c\x3a\xcf\x10\xd1\x96\xb2\x72\x84\x66\x65\xc8\x4e\x04\x7d\xa6\x1d\xaf\xa3\x47\xe5\x8c\x35\x07\xac\xe2\x01\xfd\x0d\x20\xd8\x5a\x40\xf3\x76\x0e\x14\x45\x5f\x1d\xc7\x9e\x76\x44\x72\x48\x47\xce\x74\x13\x5c\x79\x06\xe6\xbc\xf2\xa1\x4f\x75\x9c\x29\x8e\xbe\x1a\x4c\xc1\x03\x1d\x0c\xda\x7d\x60\x10\x82\x5c\x15\x62\x55\x36\xf6\xce\xc3\x76\xee\x0b\x51\xef\x81\x45\x08\xee\xf1\x20\x7e\xe5\x4a\xa9\xf4\x8a\x96\x76\x65\x6d\xdc\x59\xbf\x87\x63\xbd\x39\x54\x15\xd5\x54\x47\x0b\xd4\x65\x2d\x62\x86\x2c\x17\xc7\xd9\xf3\xc0\x92\x03\x55\x3e\x24\xb0\x6c\x23\x85\xe6\xdf\x25\x85\x6f\xd9\x14\x98\x05\x22\x46\x60\x60\x0f\xa4\x66\x48\xff\x81\xed\x06\xad\xfa\xe1\x9c\xaa\xb1\xe9\x29\x78\xa9\x6c\x3d\x2d\x2d\x8a\xae\x88\x9b\xce\xa8\x13\x86\xe2\xe8\xa4\x06\xf4\xc4\x3c\xc3\x24\x3c\x9d\x31\xe5\x62\xa0\xcf\x4e\x9f\x7f\x03\xdb\x7e\xca\x06\x13\x27\xd3\xd3\x5e\xda\x18\xe2\x9f\x44\xf7\x62\xae\x78\xda\xe2\x07\xee\x4f\x0b\xc7\xf0\xcd\xa7\xd3\x50\x5c\x2d\x85\xde\x39\xe0\x27\x95\x7b\x20\x6d\xf1\xdc\xcb\xc5\x38\x9f\x7e\xf0\xb1\x60\xa2\x78\x22\x78\x94\x54\x96\x8d\xe6\x03\x29\x38\xf2\x03\x75\x57\xcd\x97\x3e\x57\xd8\xae\x44\x36\xc5\x12\xee\x54\x3e\x8d\x3d\xe8\x10\xa4\x1a\xe3\xa5\x1f\x87\xd9\x63\xd0\x56\x0c\x52\x89\x60\xa4\x9c\x3c\xc7\xc1\x21\xe4\x94\x3c\x63\xa4\x4c\x27\xc2\xa7\xcc\x0e\xc4\xac\x52\xc8\x86\x59\x50\xa8\xdc\xc5\x29\xfc\x44\xb2\x45\x39\x7c\xa2\x58\x83\x80\xaf\x6e\xc6\x08\xfa\xe4\x8a\xc0\x48\xa9\x4e\x8c\x91\x86\xf4\xbc\xe2\x95\x76\x98\x13\x30\x12\x81\x1d\xf0\x08\x3d\x1a\x53\xca\x96\x56\xad\x83\xb7\x7c\xe9\x0d\xdb\x52\xd7\xb6\x18\xa4\x3a\xa7\xf3\x09\xd3\x76\xfe\x9e\x51\x18\xb7\x82\x8b\x8e\xc6\xfa\xbe\x38\xed\x68\xf7\x45\x70\x27\x43\x23\x47\x4f\x4d\x43\x9e\xcd\x54\x65\x13\x0e\x40\xe5\x01\x04\xf9\x97\x45\xdb\x9e\x32\x11\x18\x44\xf3\x22\x38\x8e\xfd\xe0\x98\xa1\x52\x02\x79\x77\xf4\x80\xa7\x67\x88\x86\x2c\xb7\xc0\xa9\x9d\x69\xe7\x33\x92\x50\x14\xe8\xf9\x52\x7f\x6c\xd1\xce\xb5\x53\xaf\x34\x6b\x2f\x5a\x4b\x43\xc6\x8f\x41\xcb\x8b\x36\x90\xad\x79\x96\x06\xa9\x5c\x31\x44\xc7\x60\xcb\xbd\x2c\xe6\xb2\xe3\x9c\x7a\x67\x8f\x89\xf2\xe5\xbb\x2a\xc1\x15\xa2\x45\xc8\x71\xb4\xd1\x18\xa9\x2a\x91\x6b\x4b\xd9\x90\xe3\x3f\x1f\xea\x51\xda\x33\xfd\x9b\x84\xf3\x9d\x88\xe2\x83\x8d\x29\x98\xd3\xe9\x65\x22\x45\x38\x25\x9c\xe8\x0c\xa4\x33\x2e\xe4\xa2\x2b\xc4\x2d\x13\xc7\x31\x96\xfe\x17\x67\x3b\x37\x64\x3c\x25\xd7\x39\x37\x30\x25\xb9\x4e\x0c\xcf\x0e\x27\x8a\xf3\x46\xe1\x44\xe7\x06\x77\x7f\xdb\xf0\x1c\x4b\xb3\xf2\xe9\x9c\x1b\xc4\x4d\x34\x51\x4c\xb4\x8a\x26\x3a\xb7\x2d\x55\x2d\x10\x21\xe5\x29\x67\x4e\x39\x51\x4e\x95\x32\xa7\x6c\x3d\x90\x75\x26\xf8\x9a\x32\xe8\x9c\x1b\x3a\xef\x9b\x73\x0b\xa1\xf3\xed\x94\xbe\x88\x87\x6f\x25\x66\x8a\x01\x97\x24\x39\x48\x0b\x6f\x5c\x15\x9c\xb2\x6f\xec\xc9\xac\x81\x83\x8d\xf6\xf2\x37\x18\xbb\xf5\xd0\xcd\xb9\x61\x05\x78\x3b\x12\x24\x5c\x44\x91\x47\xe7\xb6\xa5\x55\x6d\xae\x04\x09\x38\xb6\xa8\x64\x23\x2a\xe1\xcd\xc7\x46\xf9\xe6\x4c\x63\x7b\xbd\x91\x98\xd1\xaf\xde\xe4\x63\x0a\x24\x47\x21\xdb\x40\xb1\x45\xe7\x96\xb9\x54\xe0\x6e\x89\x69\x5a\xb1\x45\x05\x0b\xf3\xd8\xbc\x60\x7b\x20\x9f\x8c\x3d\xa0\xf7\x9a\x89\x74\x28\x5e\xe8\xc0\x81\x3d\x14\x20\x74\x6e\xb6\x46\x8f\x8d\xcd\x6f\xd6\x3e\x9c\x3a\x66\x20\xd1\x0e\x85\x08\x9d\x58\xb8\x86\x22\x84\x9a\xef\x89\x2d\xc8\xc8\x0e\xa0\xa6\x9a\x17\x50\x77\x33\x01\x25\xdc\xf4\x40\x3e\xed\x06\x7d\x38\x93\x91\x13\xa1\x2e\xd0\xf6\xcb\x0e\xb6\x76\x01\x38\x13\xea\x02\x2d\x20\x0c\x9a\xba\x3d\x0b\xa9\xdb\x05\xa5\x21\xf3\x9f\x11\x90\x15\x04\x5f\x45\xbc\xfa\x12\xe4\x82\x9e\x52\xd5\xd2\x8e\x03\x2c\x07\x7d\x3a\x10\x1b\xc3\xf1\xd0\x0b\x34\xa7\x23\x67\x17\xa4\xd3\xa5\x7e\x40\x23\x44\xb3\xbe\x63\x70\x30\x7d\xb6\x9b\xd4\xac\xd9\x24\xcb\x0c\x90\x03\x07\x98\xea\xdd\xef\x8a\x99\x4a\xc6\x8e\xac\x78\xa6\x50\x2c\xe0\x08\x64\xa3\xa4\x35\xe2\xa1\xe0\x9a\x86\x0e\x36\x88\xad\xa9\x7b\x0a\x4d\x8b\xb6\xc0\x0e\xc7\xda\x90\x7e\x75\x81\x7a\x3b\x66\x0b\x64\x67\xd8\x00\x07\x3c\xd3\xe6\x4a\x63\xc7\x16\x71\x06\x7c\xda\xb5\xb8\x01\x32\x1a\x9a\xb2\xc3\xd0\x32\xe8\x70\x1e\x96\xc4\x5c\x8d\xfd\x06\x27\x30\xbe\x4d\x48\xf4\xaa\x68\x06\x27\xe6\x59\x90\x4f\xd9\x1e\x50\x94\x7c\xd0\xa7\xcd\x0f\xbe\xbc\xbd\x40\x13\xce\x0e\x82\x5e\x98\x23\x85\xf2\xd4\x6e\xcc\x60\x8c\xed\x60\x20\xbd\x15\x79\x75\xec\xc4\xc4\xf7\x14\x32\x50\x7f\xea\x27\x62\x70\xf9\x8e\x03\xa6\x7a\x06\x6c\xae\x5b\x00\x45\x9e\x47\x0a\x59\x36\x0f\xd4\xe9\x54\x46\x65\x03\x1d\xbe\x42\xdc\x58\x0b\x12\xaa\xb4\xd4\xd5\xae\x34\x3b\x1c\x0a\x65\x39\xb7\x23\x35\x65\xad\xf8\x7c\x67\xc2\xb1\x0a\x32\x0e\x87\x48\x5d\x69\xc6\x09\xa5\xc0\xce\xc2\x3f\x81\x69\xe3\x60\x91\xac\xcc\x8e\x83\x45\xba\x18\xb6\x3c\x2b\xfb\x9e\xba\xc6\x00\xd4\x39\x59\x2f\xda\x75\xcc\x00\x56\xa1\x71\x98\xad\x5a\xeb\x19\x87\xdf\x70\x38\x53\xd5\x51\xcf\xac\xbd\x72\xad\x94\x72\x7c\x1f\x73\x32\x0e\x5f\xa4\x08\xb2\xda\xb0\x8d\x9d\xee\xb0\x96\xc6\x06\x75\x52\x96\x81\x45\x72\x1c\x56\x29\xd8\x2d\x8a\x40\x39\xb7\x02\xaa\x53\x66\x90\x23\xcd\xf8\x34\xb7\xa8\x38\xfc\xb8\x0c\xbc\x79\x28\x00\xe5\xdc\x2c\x01\x8f\x42\xb2\x59\x4b\x33\x43\xf1\x27\x27\x71\x72\x43\x11\x27\x27\x52\xf8\x28\xf6\xe2\xa2\xfa\x0f\x1e\x93\xf1\x5d\xd7\x05\xea\x52\x77\x4f\xa1\xe2\x3d\xac\x04\x8e\x24\x5e\x81\x26\xca\x60\xbd\x1a\xa0\x11\xa2\x1d\x9b\x1b\xd2\x89\xcd\x0d\xe8\x79\xa3\x0c\xa8\x34\x0d\x89\x4a\x0b\xc3\x5c\xe4\x74\x6e\xec\x05\x45\x8e\x94\x1d\x12\x29\x3e\x3e\x39\x56\x8a\x8d\x8a\x0d\xee\x56\xd0\x11\x46\xbe\x34\x51\x30\x07\xde\xe3\x05\x04\x2c\x35\x1d\x29\x33\x97\x3c\xd2\x8e\xf6\xb8\x25\x9a\xa1\x18\x93\x55\x48\xdd\xa5\x06\x9c\x5b\x61\xcc\x53\x63\x66\x2f\x16\xb3\xe9\x9a\x32\xef\xcc\x4c\x9e\xb9\x41\x65\x42\xfc\xf8\xf8\xc9\xd1\xaa\xb0\x92\xd3\xcf\x64\x2d\xc8\xfb\x3f\x2b\xbd\xc8\xe0\x44\x6e\x1b\x45\x3c\xfc\x0c\xae\xce\x47\xdc\xe0\xe1\xd5\xb2\x19\x87\x70\x45\x36\xb3\x55\x6b\x54\xe4\x7c\xcb\xaa\xa3\x9a\x46\xe0\xcb\x0e\x07\x69\x0d\xf6\x59\xe1\xda\xd6\x09\x06\x2f\xc1\xb4\x3d\xa0\xed\xc9\x23\x95\xb5\x7e\x1c\x15\x8e\x00\x21\x05\xf0\x02\xa7\xe7\x8f\x5e\x87\x28\xfc\x0c\xa4\xa1\x7d\x9a\x7d\xb9\x97\x06\x68\x8e\x0e\x9b\x51\x98\x47\x23\xa4\x74\x54\x53\x02\x0c\x5d\x99\x5a\xce\x8d\x93\xa1\xb2\xf2\x2d\x85\xe6\xb5\x9d\x59\xb9\x35\xd7\xc1\xe7\xd6\xfe\xe3\x24\xa8\x98\x21\xd3\xce\xcb\x08\x04\xd4\x15\xb4\x20\x3b\x99\x5c\xbe\xb4\x04\xd6\x90\x71\xaa\x57\x1b\xee\xa0\x08\x90\x73\x83\x25\xea\xd5\x96\x73\x83\x30\x79\xb5\x05\xb1\xa5\x62\xc0\x6c\x69\x46\x93\x37\x52\x75\x71\xcf\xeb\xd3\xcc\x5b\x0e\x2d\x8f\x83\x17\x5c\x50\xa6\x87\x5f\x70\x69\x0d\xbe\x76\xf2\x0c\xf9\x01\x04\xf1\x5d\x80\xc6\xa7\x02\x0d\x0f\x3a\x85\x5a\x21\xf6\xf8\x09\x3f\x48\x27\x92\xc3\x59\x9f\x13\xe7\x05\x62\x9d\x9f\x74\xc9\x11\xcb\x93\x2e\x17\x22\xd6\x09\x3d\xc1\x12\x4f\x9f\x27\x30\x8b\xd3\x52\x1e\x5c\xcf\x6f\xba\x14\x36\xee\x69\x52\xbb\x02\x49\xde\x82\x8d\x9c\x26\xa6\xb6\x7d\xcf\xbc\x15\x2d\x72\x6e\x57\x3e\xf4\xb9\x88\x4c\x72\x22\x1d\x72\x60\x28\x5a\x84\x9b\x30\x0b\xd2\x3c\x43\x4b\xa7\xae\x42\x1d\xec\xff\x93\xfb\x23\x23\x1f\x4e\x0f\x92\xd9\x12\xcf\x21\x5c\x7a\x9c\x7e\x21\x0a\x72\x39\xcd\x47\x32\xaf\xf2\x9a\xa1\x52\x8d\xd3\x0f\x0e\x42\x20\x0a\xe5\x28\x84\xb6\x8f\xd3\xa4\xd4\x98\x72\xc7\x12\xb5\x2c\x33\xc7\x07\xe2\x93\x93\xd2\x54\x1c\xcb\xe3\x82\x42\xc0\xe7\xea\x30\xcf\x01\xa8\x6e\x20\x3c\xe5\xa1\xa9\x58\xd5\xc7\xa5\x03\x24\xe7\xc7\xd5\xe9\xb4\x02\xfa\x5a\x57\x3a\xd1\x21\x99\x0f\xa5\xa9\x55\xb8\x9c\x22\x39\x4a\x84\xa5\x0b\xa9\x11\x51\xe5\xf2\x83\xa5\xf5\x48\x5d\x5d\x37\x87\xd6\x2f\xec\x48\x1c\x52\x7e\x7c\x05\x3b\xef\x50\xd2\x99\x73\x6b\x29\x5b\x32\x63\xd9\x82\x80\xa3\x19\xd9\x24\x0a\xe5\x38\xb7\x7c\x88\xa3\xb5\x07\xb4\xa3\x89\x76\x10\x46\x3a\xe8\xf9\xe4\xa9\x34\x6b\x35\x1f\x51\xfe\x82\xfb\x20\x48\x3b\xe8\x83\xf8\xfa\x71\x99\xdd\xb4\x40\x92\x68\x33\xcb\x52\xde\x47\xa6\x07\xf9\x62\xa4\x0f\x33\x1f\x90\x9b\x7e\x12\x22\x90\x79\x0f\x7c\xea\x42\xfb\xe3\x6c\xb9\x90\x4a\x39\x50\x2f\xdb\x3b\x23\xdf\x5e\x66\x4d\x1c\xe9\x0e\x09\x69\xed\x48\xc3\x4a\x6a\x75\xa5\x21\xf9\x4f\xb6\xf4\xe2\xcb\x11\x8c\xc4\xf9\x90\x6a\x49\x55\x9f\x26\xac\xa6\x5e\x78\x39\x37\x38\x03\xe1\x22\x17\x8b\xa2\x70\x91\x73\xeb\x81\xc4\xc9\xe1\x13\x4d\x17\x90\xf0\x92\x8c\x66\x05\x94\xd5\xf3\xdb\x2f\x03\xf3\xeb\x68\x4e\x8b\xd1\x8e\xd4\x95\x41\x63\x0f\x24\xbe\xce\x06\x57\x26\x9d\xf5\x65\x3a\x51\xc4\x3b\x22\x58\x43\x2a\xfe\x80\xda\x99\xec\xa1\x06\xdf\x62\x2e\x9b\xef\xb3\x5d\x2c\xa0\x73\xe9\x44\xfe\x68\x50\x29\xc7\xad\x52\xe9\x9c\x98\x29\x46\x33\x95\x42\xc1\xbc\xf6\x52\x91\x80\x1c\x5a\x12\xd9\x40\x91\x25\x7b\x89\x92\xa1\xd0\x92\x72\x64\x28\x7e\x25\x3b\x73\xe0\xc4\x48\x48\x1c\xcd\x76\xd0\x4c\x81\xec\xe7\x2d\xfd\x8b\xf2\x72\xea\x34\x09\x40\x3b\xe4\xdc\x1c\xb2\x7d\xa5\x43\x4b\x3c\x19\xd5\x64\xf1\xe8\xd1\x89\x0d\x5a\x10\xf0\xe5\x5e\x84\x88\x66\xd9\x76\x04\x7a\xb8\xaa\xe7\xa3\x3b\x47\x33\xac\xab\xdb\x40\xf9\x7d\x4e\x93\x55\x55\xf4\x32\xd2\x0c\x2b\x52\x01\x95\x20\x08\xb1\xc5\x59\x6f\x70\x40\x8e\xee\x50\xeb\x56\x52\xa8\x67\xcb\x5b\x3e\x94\x54\x30\x82\x8e\x2d\x99\x0d\xc8\x8c\x14\xde\xa8\xb8\x92\xd2\x60\x05\x5d\xd4\xb3\xa5\x19\x19\xc7\xa3\x35\x29\x76\xe4\xb8\x3e\x65\x32\xbc\xc0\x26\xba\x69\x27\x5a\x5d\xb7\x5c\x94\x2e\x7c\xc1\x31\x6a\x9c\x9f\x87\xd9\xa2\x62\x29\x40\xe4\xc0\x8e\x36\x14\x20\xb2\x1f\xf0\x82\x6e\x2f\x7c\x43\x2f\x48\x80\x08\xfb\xa9\x9b\x8d\x45\xc7\xeb\x7e\x6f\xaa\xe5\xd3\x53\x69\x04\x41\xe1\x06\xbf\xf4\xd2\x94\x10\x06\x6c\x79\x49\x26\x9d\x0c\x57\x0d\xe8\x13\xa1\xa4\x59\x07\xd9\xf6\xf4\xf9\x30\x01\x05\xa3\xa7\x66\x9a\xc9\xbc\x2d\x5f\xa4\x4f\x8d\x33\xeb\x35\xad\x7d\xf4\x80\xfb\x8f\xaf\x5e\xb2\xb6\xd3\x37\xe9\x7b\x40\x71\x11\x8e\xba\xee\x2b\x00\xd1\x3e\xfa\x04\x5d\xf0\x23\xb7\x29\xdc\x49\x81\x27\xed\x82\x1d\xf9\x69\x9b\xf1\xe9\x73\x1d\x18\x3b\x2c\xc6\x81\x26\x1f\xf1\x43\x91\x26\xe7\xce\xb8\x1c\x69\x72\x20\x13\x3b\xd0\x04\xeb\xf7\x50\x9c\xc9\xb9\xb3\xbf\x94\xeb\x67\x4d\x57\x07\xf4\xbc\xa3\x3c\x2a\xce\x64\x61\xd7\x00\x87\x3e\x4d\xb3\xb7\xeb\xa6\x25\x65\xf7\x3d\xd3\x10\x13\x9d\x4e\x2d\x5c\xd7\xb4\xab\xa1\xc0\x83\x07\xba\x7f\x61\x28\xe8\xfe\x0c\x65\x28\x7e\xb9\xa5\xcc\x01\xf9\x68\x1c\xc3\x8f\xff\xf7\xb4\x63\x65\x12\x8a\x1a\x92\xc8\xa2\xbc\x29\x78\xe4\x8c\xad\x47\xa9\x7f\xce\x3d\x93\xe7\xc3\xb7\x61\x19\x70\x2c\x09\x6f\x4e\x2c\x70\x31\xe1\x3d\x53\xe2\xc4\xb9\x7b\x26\xec\xf6\x6c\x5e\x40\xde\x64\x29\x93\xa2\xb2\x05\x52\x40\x48\x49\x1f\x26\x53\xb6\xd1\x70\xb6\xe6\xeb\x53\x57\x41\x28\x99\x10\x99\xe7\xb8\x4c\x35\x94\x51\xe8\xdc\x33\xeb\x53\xe1\x62\x90\xcf\x40\x76\x03\x1b\xeb\x80\xd1\xaa\x86\x13\xc6\x70\x9c\x0d\xe8\x70\x4f\x5d\x3d\xec\x87\x74\x4f\x7c\x4a\x43\xb4\x1c\xbe\x5b\x10\xd5\x68\xe4\xb8\xcd\xa7\x6f\x97\x7a\x28\x8e\x49\x69\x0d\x49\xe2\xb6\xf3\x91\x33\x5d\x41\x29\xe7\xce\xf2\xdd\x26\x45\x50\x50\xe6\x20\xde\x51\x5e\x50\x57\x59\x01\x12\xe5\x7d\xba\xb0\x24\xc5\x19\xa5\x3c\x42\xe7\xbe\x7f\x9b\x50\xf0\x1a\x8e\x66\x69\x78\x33\xc6\xed\x34\xe2\xc8\xc8\xb7\x43\x9c\xda\x19\x50\xa7\xdb\xa7\xaa\xde\xbe\xbc\x52\x66\xec\x18\x15\x64\x08\xae\xa6\x3b\x64\x93\xdb\xe2\x7d\xe4\xf0\xdb\x96\x41\xd8\x91\x32\x10\x95\x58\x4f\x6f\x5f\x89\x22\x00\x6b\x28\x80\xa5\xc6\xea\x75\x3b\x28\x8e\x83\xe7\x76\xd0\x52\x3b\x03\x4a\x37\x43\x42\xe5\x59\xa3\x86\x72\x7d\xfb\x2e\x0a\x5c\x84\x9c\x42\x15\xda\xba\xe5\x96\x89\xb4\xc6\x1b\x47\x2d\x6b\x20\x01\x7f\x0f\x06\x53\x6b\x80\x38\xad\xe8\x96\xb5\x06\x2c\xa5\x6c\x47\xfb\x11\x0c\xb4\x22\x47\xca\xde\x42\xc0\xcb\x3c\x9d\x59\xaa\xc2\x0a\xa6\x19\x17\x72\xc2\x34\x45\x40\xea\x4e\x46\x54\xf0\x2a\x8e\xe9\xbb\x4b\x67\x0a\xbb\x67\x6b\x07\x34\x76\x81\x4c\xb1\xa0\x4e\x4c\x4b\xc4\xce\xd9\x79\x4f\x8c\xca\x76\x22\x87\x46\xff\x5f\xc6\xce\xe4\xfa\x62\x94\x57\xe2\xa9\x7c\x21\x5c\x1b\x33\x6d\x3a\x17\xb8\x43\xfe\x21\xbc\xe3\xaa\x5f\xb9\xdf\xee\xdf\x4b\x1d\x6c\x46\x21\x09\x51\x48\x82\xa3\xd4\x23\xdf\x0a\x71\x12\x07\x8c\x10\x27\xf5\x78\xbe\x64\x0e\x0a\xa4\x62\x6d\x3d\x94\xbc\x79\xa8\xdf\x1d\x36\x30\x57\x08\x80\x52\x8f\x87\x52\x8b\xd8\x75\xdb\xa1\x04\x41\xe1\x4f\xe5\x34\xaa\x00\x11\x26\x31\x85\x62\x68\x82\x4e\x01\x21\x37\xb7\xcd\xf6\x58\x88\xdb\xa2\x02\xb5\xb9\x6d\xa8\x3f\x65\x45\x8a\x9b\x1e\xd8\x4c\xc7\x6b\x22\x04\x4a\x3d\x10\x55\xc2\x9c\xd4\x03\x1b\x47\x31\x86\xce\x1c\x4f\x15\x63\xe8\x8c\x35\xb2\x1d\xaa\x79\xa4\x6c\x4b\x47\xd2\x53\x61\xdc\xca\x53\xa7\x1c\x7d\x35\x3d\x53\x32\x63\xf6\x9d\x90\x2a\x27\x88\xc0\xf9\xb6\x9e\x43\xb1\xbd\x07\xac\x3d\x21\xcb\x3f\xff\xbb\x78\x32\x37\xdf\x3e\x45\x02\x9c\x9b\x46\xaa\x1c\xbd\xa4\x54\xa8\x63\x24\xdc\xdb\x8f\x95\x5a\x3e\xdd\x3a\x6a\xa4\xc9\x8f\x82\x2d\x0c\x28\x59\x05\x23\x94\x14\x07\x56\xc1\x1b\x89\x91\x4a\x1d\x9c\xaa\xb1\x9f\xdf\xa4\x70\xe9\x50\x42\x8e\x3d\x7f\x7a\xc9\x1b\x54\x57\xbc\x23\x7a\x63\xc7\x42\x4f\x77\x94\xfe\x2c\x66\xfe\xdb\xf7\x10\xb1\x85\xde\x0e\x5e\x78\xa4\x56\xed\xbb\x92\x16\xf5\x88\x29\x3f\xa2\xe4\x58\x01\xa7\x84\x3a\x62\xba\x3a\x27\xd4\x74\xb0\xdc\x9b\xd4\x7d\x41\x06\xe2\x3c\x8e\x19\xa5\x7c\xd8\xd1\x0d\xce\x17\x95\x53\xff\x83\x7d\x81\x52\x77\xd8\x66\x09\xe8\x43\xe7\x08\x16\x7e\xfc\x99\x88\xe1\xfe\x56\x59\x77\x8f\xd4\x43\x57\x69\x44\xce\xae\xe3\xa1\xc4\xac\x68\xc0\xb7\x05\x18\x4a\xd6\xc1\x7f\x78\x2c\x31\x09\xef\xc3\x06\x70\x74\x9f\x23\xe6\xf9\xdb\xb6\x16\xb3\xf1\xb1\x8c\xc2\x25\xa2\x8c\x54\x47\x09\xbb\x7e\x7c\x07\x12\x9b\x57\x70\x9a\x9a\x45\xff\xf0\xda\x9c\x8d\xf5\x89\xcc\xca\xb7\xf2\x65\x20\x34\x3f\x98\x4c\x47\x7e\xb5\x88\x6f\xf9\x55\x6f\x5f\xae\x34\xaa\xf7\x73\x29\xb3\xf3\x0b\x69\xa2\x60\x3f\xe7\x48\x6f\x1d\x03\x85\x3d\xf1\xe1\x08\x89\xe1\xfa\xc1\xd1\xf1\x7c\xdb\xe4\xdd\xcd\xb7\x12\x3c\xe8\x3f\x21\x62\xca\x33\x07\x5c\x7f\x71\x46\xf9\x98\xef\xae\x74\xc0\x8f\xb8\x29\xb3\xa8\xc3\x1c\x50\x1c\xa0\x93\x87\x75\x53\x71\x80\xca\xc8\x88\x9d\x76\xe0\x29\x13\x7e\x93\x93\x9f\x82\xf9\xd4\xa3\xe6\x4b\x36\x41\x48\xb9\xd0\xf1\x28\x7e\x9c\x19\x3b\xce\x48\x85\xf3\x29\x05\x7d\xf7\xb1\x48\x44\x87\x08\x56\x53\x8e\x1e\x4a\xa7\x6d\x74\xa1\x82\xf9\xd4\x57\x56\xce\xd1\x79\x7b\x4f\xa1\xee\xce\xb3\x1a\x0e\x40\x15\x7f\x9a\x30\x36\xa5\x9c\xf9\xd3\xa6\xdd\x91\x0e\x48\x51\xe2\x3a\xfe\x38\x17\x2d\x67\x66\xa1\x68\x4a\xae\xc4\xbe\x51\x94\x15\xd2\x61\x9d\x67\x4a\xad\xb4\xb0\x43\x15\x95\xa7\xe6\xbe\xe1\xeb\x20\x8c\x54\xfb\xb5\x6a\x44\xba\x28\xf0\x4e\x3d\x90\xa0\x42\xcd\x54\x22\x64\x4c\x12\x54\xc5\x12\xff\x46\x4f\xd2\xa4\x1f\x31\x70\x3e\xfa\x3a\x4e\x5f\xae\x92\xbe\x88\x42\xcc\xf6\x64\xb3\x9a\x29\x75\x44\x4f\xea\xe5\xf4\x89\x09\xe0\x48\x3c\x51\x3e\x5f\x82\x6b\x70\x7c\x72\xfe\xaa\xa3\x33\xd5\x4e\x60\x15\x21\xf6\x8d\x02\x4e\xbd\xf2\x11\xd5\x74\x57\x3e\x22\xec\x15\x07\xe6\x89\xef\x4b\xa0\x9a\x1a\x6b\xce\xa0\x9a\xac\xd0\x97\x1b\xf8\x2b\x9f\x6a\x43\xb7\x54\xe3\xb9\xa4\xaf\x4e\x4c\xca\x86\xf9\xe2\xba\x48\x8b\x9b\x09\xa2\x5a\x7c\x17\x58\x28\x0a\xb6\x53\x0f\x36\x90\xd0\x31\x35\xfb\xf9\x8b\x84\xab\xa9\xc8\x59\xab\xf2\xa9\x24\x5c\x4b\x9b\x92\x70\x2d\x6d\xa8\x77\x59\x21\x29\xe0\x6b\xa6\x41\x5b\xed\x88\x2d\xb2\x54\x61\xac\x18\x48\xc3\x23\xf1\xe9\x24\x55\x47\x67\xb3\xff\x0c\x08\xed\x9c\xab\x84\xab\x29\xed\x75\xfc\x2d\xb8\x01\xdd\xe4\x94\x63\xd0\xcd\xf1\xd4\x63\x8f\x08\x4b\xf2\x1b\x2c\x74\xfa\xa0\xe8\x5d\x3d\x94\x04\xcc\x43\x69\x4b\x23\xc4\x0c\xc1\x89\xa7\xcb\x10\x9c\x8a\xf0\xf9\x85\x2b\x27\xa4\xa0\x67\x68\x4b\x25\xb1\x3a\x4b\xda\x77\x8c\x97\x48\x63\x65\xad\x2a\xb9\xd4\xf9\xf9\x5a\x09\x50\xf0\x04\xad\xd3\x42\xf9\xb4\xc4\x31\xf4\x87\x86\xbe\xd2\x05\x1d\x07\x30\x67\x7e\x96\x94\x88\x91\x9f\x2f\x9d\xa3\x4b\x7f\x3e\x69\xb2\x85\x7e\x3e\x5a\xb2\x89\x7f\x78\x44\xe0\x26\x65\xae\xaa\x47\xfa\x6e\xae\x6c\xa1\xb4\xa7\x33\x3d\x56\xc2\xc8\x38\x25\xa7\xaa\x47\x7a\x1e\x8e\x65\x94\xd2\xd0\x81\xad\x10\x24\x28\x67\x25\xc1\x7a\x4a\xd4\x8a\x53\x55\x9d\x33\x65\x04\x66\x87\x72\x57\xc3\x69\x8e\xc7\xc7\xf3\xf7\xf9\xdb\x4c\x25\x13\x72\x2b\xe5\x1e\xff\xa7\x02\x08\x9d\xaf\xa7\x5a\x5d\x94\xf2\xa6\x72\x2a\x91\x55\x89\x24\xf8\x39\xa8\x87\x45\xca\x7a\xf9\x7e\x81\x5b\x9c\xa5\x4c\x56\x85\xab\xc8\xa5\x4c\x56\xe5\x74\x1b\x4b\x89\xac\x8e\xb3\xe6\xc7\x2a\x8f\x4b\x37\xc5\xf9\xb0\x53\x0d\xfc\x42\x35\x9c\x13\x6c\xb5\x2e\x67\x92\x02\xce\xb5\x1c\x22\xc8\x71\xc8\x6e\xca\xbc\xed\x43\xd7\x7a\x21\xc4\x2c\x82\xd7\xcb\x37\x01\xbc\x4e\x5d\x2f\xf3\xc4\x48\x2b\xf6\x5e\x0f\xba\xe0\x10\x62\x93\xfe\x19\x2c\x34\x69\xd3\x8f\xaa\x38\xe8\x2d\x07\xec\x99\x57\xfa\x67\xa6\x18\xa1\x84\xc6\x9e\x34\xa2\x9b\x80\x63\xa4\x1e\x5b\x1e\x67\x9a\xb4\x72\xcf\x9c\xf8\x11\x20\x87\xc2\xa5\x04\x50\xf5\xc8\xc8\x00\xa1\x0c\x66\x53\x6c\x81\xa5\xb6\x5e\x89\x43\x0e\x35\xe5\xab\xa4\x11\x5c\x0c\xe9\x50\xb2\xf8\x40\xc9\x8c\x7c\xaa\xb1\xf3\x68\x86\xa4\x3f\xae\x48\x71\x81\xea\xe1\xc3\xf7\x52\x58\xa0\x83\x38\x10\x4b\xa8\xa2\x83\x60\x1c\x4b\x61\x81\x0a\xd2\x71\x1d\x43\xee\xc7\x19\xca\x27\x5f\xd6\xef\xb0\xa4\x1a\xa9\x46\x58\xf0\x96\x32\x9b\xe7\x33\x2d\xda\x0d\x66\xf1\xbc\x08\x0b\xe4\x78\x70\x37\xa9\xdd\x3f\x42\x79\xa5\xe9\xb9\x99\xad\x50\x8f\xbd\x60\xf9\x6f\xea\xd0\x9e\xee\x4c\xbf\x12\x1f\x50\x82\x5b\x14\x1a\x04\xdd\x90\x81\x80\x6e\x98\x69\xc3\x0e\xb3\x9a\x5f\xcd\x13\x7f\x86\x12\xbc\x3f\xb5\xdd\xe2\x93\xe6\x02\xff\x54\xd3\xd9\x8f\xb6\x62\x28\xad\x48\x66\x4b\x97\xe3\x07\x0b\x2b\x78\x53\xb9\x1e\x8a\x55\xa7\x3b\x8b\x95\xa5\x0d\x54\x64\xe1\x63\x29\xc5\xf3\xc5\x1c\x6c\x9f\xee\x0a\xad\x58\x29\x3e\x94\xc4\xe1\x0c\xe5\xed\x96\x05\x93\xdd\x4f\xd2\xbf\x9b\xf4\x11\xba\xd1\x79\xdf\x0c\x38\x40\xdd\x4d\x7e\xd5\x28\x1d\xf4\x39\x80\x65\x50\xe0\xa0\xc2\x0b\x81\xa5\xc0\x41\xf7\x8f\x07\xa4\x87\x3d\xa1\xec\xcb\x61\x71\x05\x94\x2a\xe5\x4a\x61\xf3\x46\x4d\xa1\xd7\xc8\x42\x79\x29\x02\x50\x75\x16\xfa\x9b\xfa\x4a\x3e\x36\x28\xf7\x87\x2f\xcd\x40\xc0\xba\xd6\x69\xf7\xff\x95\x42\xa9\x0f\xf8\xe0\x74\x10\x75\x47\x9d\xbb\x49\xc3\x7f\x19\x89\xee\x83\x8e\x87\x62\x42\x42\x8a\x83\x11\x40\xa7\x1d\xa7\xf0\xbe\xe2\xfd\xd4\xf3\x45\x8b\x68\x33\x5b\x31\xcb\xe1\x7f\xb8\xae\x5f\xe4\xae\x9a\xe9\xeb\x62\x35\xf3\xab\xd2\x38\x5f\x29\x54\xef\x10\x06\x02\x54\x95\xf9\x94\xb1\xb6\x8c\x6b\xb9\x77\x69\xd2\xf6\x6b\xa3\xb3\xcb\xc1\x70\xa9\xc7\xca\xee\xc5\x1a\x48\xd7\x71\xfd\xba\xce\x70\x1e\xf5\xd8\x38\x1b\x29\x94\xed\x4f\x80\xb7\xa5\x78\x3f\xf5\xcc\x4c\xda\xf6\xcf\x28\x65\x80\x9d\x61\x09\x01\x6b\xce\x57\x2a\xdd\xae\x86\x81\x10\xee\xc7\xe3\x28\xb6\xb1\x08\x3b\xb0\x8c\xa8\x02\xe2\xb2\x8a\x85\x13\xe7\xa4\xa5\x88\x3e\xf5\xa4\xaf\x8a\xe1\x33\x08\xf7\xb1\x84\xaf\x2a\x7d\x86\x52\x07\xd0\x5f\x0e\xef\x03\x02\x67\x15\x0b\x2a\xa2\x34\xac\x62\xae\x7b\x9a\x90\xcb\x0e\xe6\x31\xf4\x8a\xec\x97\x37\xc9\x3a\xf3\xa7\xf0\xf3\x2d\x7d\x35\x76\xc7\xf1\x90\x6f\x52\x7b\x38\x8d\x08\x6a\x81\x49\xbe\x8a\x81\x3c\x11\x64\xc2\x65\x55\x07\xe4\xbc\x29\x25\xe3\x64\xb2\x88\x21\x44\xf0\x8b\xe5\x18\x42\xf3\xa9\xe7\xa7\x99\xa4\x1a\xf3\x24\xb2\x52\x91\x80\x2a\xb0\x99\x65\x04\xd7\x79\x86\x52\x83\xa9\xd3\x11\x11\x78\x0b\xb1\x8a\x9f\x81\x39\x72\xf1\x4d\x1a\x48\x84\xaa\x35\x84\xab\x83\x74\x5d\xc6\x70\x91\xc7\xf3\x26\x1d\x46\x24\xd4\x4f\x8d\x42\xc9\xaa\x02\x4c\xbe\x4a\x2c\x7d\x7a\x84\xe5\xd4\x59\x22\x5b\x4e\xa0\x36\x56\x31\x73\xfd\x87\xb7\xf1\xab\xd8\xd5\xf1\xb4\x09\xe7\xa5\x1e\xab\x7b\x76\x54\xb1\xb2\x75\xb4\xe2\xb6\x1c\x2a\x88\xcb\xe1\x25\x14\x57\x3d\xd9\x34\x17\x5c\x7a\xe6\x53\x2d\x2e\xdd\x13\xa4\xeb\x88\x19\x73\x71\x93\x84\xb6\xbd\x06\x43\x09\xe9\xd5\x3d\xa0\xbc\xa7\x7b\xda\x5c\x16\x15\xa9\x57\xfe\x26\xec\x18\x05\x12\xaa\xe7\x91\x4f\xfd\x1e\x2f\xd4\x6d\x20\x02\xd0\x5b\x02\x95\xd5\xf3\x45\x99\x7d\x24\x1c\x62\xd6\x65\xa4\x7e\xcb\xb7\xba\x68\x3f\x59\xce\x0b\x3f\x1e\x92\xf4\xe2\xb8\x8a\xdc\xbf\x2c\x3b\x09\xe6\xb6\x2e\x3f\x49\xcc\x94\xc8\x41\x7c\x96\x54\x24\x1d\x3a\xd2\xa6\x53\xe9\x43\x99\x33\x11\x80\xc2\x97\x55\xb0\xa9\xcb\xf8\xb2\xb3\x84\xf2\xae\xa1\x3d\x9d\x47\x79\x80\xb7\x2e\xe7\xac\x45\x63\x1a\x5d\x76\xa2\x14\x15\x43\xa8\x82\x0f\x5a\x57\xf2\x2d\xb2\x94\xdc\x03\x60\xb6\x28\xa4\x50\x39\x4b\xbe\xb5\x74\xbe\x58\x2d\xb9\xd8\x9c\xa9\xee\xa6\x30\x33\xf3\xad\xb8\x32\x73\x85\xb7\xe3\xa2\xb3\x42\x0f\x9e\x0f\x25\x79\xec\xa3\xf4\xaa\x8e\x00\x4f\x34\x95\x45\x64\x20\x4e\x51\x8b\xc8\x40\x04\x54\x5c\x06\x86\x35\xa2\xa4\x2c\x45\xff\x29\xb8\xc8\x57\xc5\x6d\x81\x01\xa2\xb8\x3d\xa5\xa6\x19\x4b\xa0\x2b\x65\x8a\x5e\x4c\xdf\x2b\x67\x3e\x76\xa3\x10\x5d\xf5\x7c\x28\x3f\x7c\x29\x50\x08\x00\xfa\xa3\x1b\xf3\xcc\x97\xc1\x5f\x3c\xa7\x5c\xc6\x77\x11\xb7\x68\x55\xa7\xf9\x43\x41\x54\xaf\x3a\x86\x80\x63\x01\x9d\xe8\x32\xc7\x02\xba\x72\xa2\x70\x30\xa0\x46\xdc\x95\x55\xf1\xd0\x66\x58\x9c\x07\xd9\x16\x0a\x07\x34\x72\x30\xa8\x7e\x0a\x40\x50\xc7\x55\xcd\x16\x19\x89\x6c\xff\xf3\x4a\x99\x25\x59\x49\xff\x9c\x18\x36\xf5\x68\x24\x57\x7e\xd4\xdb\xf3\xf4\x07\x95\x99\xa1\xe8\x78\x58\x32\x68\x9b\x6e\xf0\x4f\xf5\xb5\x52\x9a\x90\xad\x76\x96\x54\x63\x06\x4e\x2d\x5a\x01\xf6\x33\x90\x32\xa2\x51\xae\x8a\xe1\x36\x52\xab\xc2\xa5\x22\x91\x1d\x2a\x88\xe7\x5f\xab\xda\x8a\xbb\xf2\xa3\x8e\x8a\x3c\x0f\x59\xcd\xc1\xda\x79\xdf\xb0\x9a\x45\x1c\xa7\xa6\x66\x7c\x90\xfd\x07\xab\x39\x0a\x43\x6c\x2a\x72\xa0\xa1\x79\x9b\x91\x19\x39\xa9\x09\x6e\x76\x9c\xec\x2f\x01\xcc\xea\xd9\x42\xd9\x56\x2c\x7f\x43\x4c\x96\xc3\x0a\xe1\x79\x58\xcd\x2a\x13\x35\xd4\x30\xe3\xd2\x03\x85\x15\xaa\x98\xae\xce\x78\x16\xbe\x6f\xe6\x50\xf8\xae\x59\x2b\x76\xca\xb0\xd4\x10\x4c\x8e\x14\xd4\x08\xdb\xb3\x9a\xef\xad\x5b\x66\xc4\x6a\xb2\xe5\x5b\xef\xfe\x96\x7a\xbd\x2d\x5a\xbe\xf5\x2a\xc0\x6a\xcd\xfc\x93\xa1\xd8\x5b\xc6\x03\xed\x45\x3a\xb4\x98\xb6\x4d\x48\x1f\xa0\x45\x4b\xa8\xb2\xca\x5d\xdf\x6a\x66\xa7\x9e\x1f\xbd\x6b\x9f\x42\x82\xf4\xd1\xfb\x30\x0d\xfd\x15\x0c\xe8\xc4\x26\x6d\x18\xfb\x25\xdf\xaa\x7f\x99\x31\x19\xfb\x60\x59\x56\x1f\x74\x6f\x42\x9a\x4b\x06\x94\x04\x34\x1b\xb7\x47\x74\xe5\xd3\xfe\xcf\xff\x3a\x38\x92\xd5\xb1\xee\x39\x01\x75\x9b\x64\xcc\x81\x33\xb0\xf1\x3e\x74\x75\x47\x02\x85\xd9\xba\xc1\xf0\xcf\x7f\xee\xea\x01\xf5\xf3\x8a\xf1\xe3\xd4\xea\xa2\x91\x48\xc7\x46\x0c\xd3\xa5\x04\x6c\x35\xfe\x0e\x01\xc3\x0a\x17\x12\x4b\xb8\xb0\xc2\xdd\xc5\xea\x16\x63\xec\xa1\x6e\x31\x86\x59\x20\x58\xd8\xa8\x58\xb6\x86\x85\xf5\x91\xae\x46\x36\x85\x14\xc7\x20\x9a\xba\x55\x54\xa6\xc3\x78\x68\x22\x48\xac\xbe\x8c\xd9\x40\xcc\x77\xcb\x26\x96\x52\xc8\xb0\x7a\xb2\xbf\xc8\x94\xc6\xdb\xd5\xd5\xcd\x21\xc8\xfc\xbe\xe9\x10\x8b\x87\xc9\x8e\x70\x72\x70\xa2\x46\xac\xa7\xd5\x37\xbb\x3a\xa4\x84\x0e\x8a\x47\xb8\xb1\x02\x9e\x7c\x39\x3d\x5a\x5c\x0f\xa4\x47\x23\x80\xe7\xea\x66\x18\xec\x82\x01\x22\x87\xc3\xe2\xb0\x47\x0a\x0c\xf2\x12\xc6\xac\x9e\x98\x38\x04\x1d\x8a\x0f\x61\xc8\x7b\x7f\x8e\x50\x62\x11\xb8\x49\xd9\xd2\x4a\x46\x3d\x6c\xfe\xcc\x50\x08\x36\x7a\xc0\xc2\x23\xd8\x86\x8d\x1a\x18\x68\x98\x0d\xd2\xa2\xb5\x22\x02\x80\xc0\x42\xbc\xcd\x59\x43\x51\x15\x01\x0c\x2d\x65\x52\x2b\x51\x2d\xc3\xaf\xa4\x88\x03\xba\x14\x67\xa8\x9e\x3d\xf5\x7c\x5c\x98\x46\xc4\x41\xc8\x6b\x03\xc7\xc0\xdc\x2d\x22\x0b\xc5\xdf\x21\xe4\x58\xc9\xf1\x54\xc0\xb1\x0a\xd8\x73\x0d\x5b\x43\x99\x57\xbf\x72\x8d\xbf\x63\x60\xb6\xb3\x87\x1d\x58\x68\x64\x49\xcc\x5d\x47\x3e\xb5\x6d\xc2\x20\x2d\x9b\x38\xc4\x08\xdf\x35\x2a\xa7\xd3\xe1\x17\xd5\x60\x4f\x97\x92\xae\x9d\x57\xff\x0f\xc2\x7b\xd8\x54\xe2\xfc\x15\xec\x17\xe7\x28\xc5\x1c\xaa\x00\xe9\x96\x91\x60\x3c\x7d\x59\x06\x82\x71\xcd\xbc\x86\xd1\x15\x33\x3d\x77\xb8\x90\x33\x3f\x7e\xdd\xbb\x74\xf6\xe7\x49\x77\x9b\xc6\x77\x9d\xcc\xeb\xe4\x4e\x1c\x79\x23\x7c\xd7\xa8\xaf\x14\x6a\x9f\x22\x7d\x04\xf6\xaa\xbc\xf7\x5e\x24\x7a\x8b\xa5\x34\xfd\xd8\x1a\x34\xe3\x9a\x0e\xb0\xcf\xc1\x12\x74\x17\x77\xeb\x8b\x50\x41\x84\xe2\x5b\x0a\x0e\x74\x54\x5e\xfa\xad\xc9\x9d\x23\xfa\x84\xe8\x40\x2d\x15\xfb\xf6\x07\xf9\x2c\x7c\x57\x2d\xaf\x54\xe4\xf5\x7b\xfe\xf4\xf5\xb6\xa7\xc8\xe9\xdb\x72\x28\x9e\x30\x10\x1d\x32\x60\x9a\xb7\xb6\x4b\xb8\xac\x5a\x5e\xa1\x6c\xce\xc3\x08\x93\x73\xdf\x0c\xb9\x35\x61\x4c\x4a\x44\x10\x33\x66\x11\xc4\xea\x1a\x8a\x55\x61\xda\x69\xbb\x26\xd5\xa0\x94\x6a\x7e\xfc\xea\xd3\xfc\xa8\x5d\x8c\x6e\x16\x7e\xea\x24\x8a\xcf\x5a\x7e\x45\x13\x0f\x99\x33\xaf\x91\x37\xfb\x26\x2f\x8d\x24\x85\xf6\xac\xb7\x90\x3e\xf5\x21\x94\x05\x9a\xaa\x05\xeb\x6d\x81\x42\xe6\x53\xe9\x8f\x42\x7f\x16\x67\xa3\x74\xc8\xee\x46\xc2\xdf\x2d\x01\xa1\x2a\xf1\x96\xd7\xf2\x83\xbb\xb8\xa0\x14\x90\xa7\x82\x40\x5d\x02\x3b\xd5\x82\x59\xb1\x0c\x0e\x25\x7c\xed\x5a\x18\x1d\x47\x4a\x6f\xa1\x57\x38\x4b\x3a\x67\x5a\x1f\x19\xa7\x6e\x34\xca\x91\x6a\xed\xa2\xa3\x7b\x58\x15\xe9\xad\x5c\x37\x25\xb5\x3a\x09\xf9\x60\x51\x0c\x68\x2a\x19\x89\x4c\x03\xf0\xc2\xcb\x69\xd1\x3a\x41\x06\x97\x71\x49\x27\x82\x5f\x11\x7a\x6a\xe1\xd4\xa9\x94\x69\x35\x62\x85\x94\x69\x84\x2e\x5c\x40\x8f\xe2\x3e\xdb\xf8\xe8\x10\x7b\x0a\x99\x53\x0b\x47\x29\x05\xc9\xb9\xa2\xf0\xb7\x2f\xe7\x09\x58\xb6\x8c\x35\x2a\x67\x0a\xf1\x9c\x42\xf9\x08\xdf\x53\xe8\xbe\x63\x20\x29\xb9\x59\x2d\xb8\x47\x04\x3d\xaa\xc4\x73\x5a\x1b\x3d\xde\xa1\x2e\x51\xf4\xd5\x4f\x48\xb8\xe1\x5d\x02\x22\x15\xa2\xeb\xac\xcd\x02\xa5\x8c\x0e\x30\x23\x7e\x32\x1c\x17\x99\x41\x42\xaf\x03\x25\x21\x5c\x50\x8d\x8e\xdf\x9e\xf6\x33\x7f\x7a\xba\x8e\x7c\xca\x48\xfc\xed\xdb\x37\x91\xf1\x5c\x38\x34\xcd\x04\xc5\xbc\x14\x9a\xa6\x10\x7f\x6f\x09\xfe\x53\xc1\x97\xac\xb7\x7d\x0a\x71\xa8\xbd\xad\x53\xfb\x7f\x70\x7c\xbf\xd9\x37\x58\x16\xc2\xf8\xd4\xc2\x51\xca\xb8\x9d\xb8\x9d\xdf\x76\xb6\x03\xfc\x5d\x0e\x2f\xd3\xe2\x97\x12\x36\xe7\xc8\xd1\xc6\x89\xba\x48\x9b\x7e\x93\x5a\x95\xf4\x5d\x30\xea\xe8\x4d\xa5\xed\x3a\xcf\x87\x92\x69\x83\x9e\x78\x03\x12\x44\xc3\x39\x15\x57\x18\xf3\x6d\x64\x74\x1c\x85\x8e\x4b\x93\x40\xac\xeb\xed\x77\x87\xc4\xbc\x5b\x6f\xbf\xfa\x1e\xa8\x1c\x45\xa6\x29\x31\x91\xde\x78\x00\xb2\x0e\x76\x4c\xc5\xff\x66\x94\x4d\x41\xd8\x1a\x65\x53\xf0\x64\x28\x68\x4d\x25\x9c\xc6\x32\xe6\x86\x4b\xd5\xe5\x7c\x5b\x13\xd8\xfb\x32\x04\xa7\x73\x4a\x7b\x3b\xac\x67\x26\x9a\xf7\xe1\xf0\xe2\xc7\x5b\x0e\x93\xd6\x31\x6b\x48\x7a\x7f\x93\xee\xce\x84\x52\x07\x98\x2f\x52\x68\x8d\x91\x42\x43\x04\x06\x94\x4e\x70\xc4\x3d\x5d\xc2\xd8\x9c\xe1\xa7\x8f\x85\x22\xbd\x23\x0e\x0d\xe1\x2c\x96\xe3\xd0\xd4\x12\x4a\x72\x98\x7d\xfc\x41\xa5\x8d\x14\x3a\x4a\x08\x76\x98\x61\x35\xe5\x4a\x23\xda\x0c\x1c\x94\x3f\x93\xfe\xa4\x4d\xf1\x08\xde\x93\x8f\xb3\x1a\xf3\xc4\x6d\x09\x49\x53\x0b\x06\xaf\x90\x34\x67\x5c\x34\xca\xa8\x75\xe6\x68\xae\x84\x5a\x27\x4f\xda\x16\xf9\xb4\x88\x84\xb6\x9c\x4f\x8b\x38\xb0\xeb\xe3\x37\x1c\x33\x1d\x70\x5e\xf9\x92\x42\x25\x7c\xec\xa1\xcc\x5c\x2c\x2d\xd1\x6c\xc0\xe4\x2e\x87\xaf\x09\x68\x79\x39\xa7\x56\x1c\x09\x1f\xa4\x05\xb2\xc4\xd1\x6c\x4a\xce\xf5\x1f\xbf\x20\x42\x20\x08\x78\x73\xf1\xd6\x7a\x19\x77\xd3\x41\x9d\xae\x8f\x23\x46\x10\x59\x66\x7d\xd0\xb2\x33\xcd\x28\x1f\x6f\xc6\x22\x63\x3d\x0e\x0a\x81\x6b\x2a\x21\xd0\x97\xb1\x35\x3d\xfe\xa4\x2f\x6f\x84\xb0\xc7\xbf\xe6\xbd\x1a\x4a\x6b\x8d\x68\x73\x36\xac\x83\x90\x48\xeb\xab\xbc\xc7\xbc\xc3\x5c\x02\xde\x9c\x00\xc0\x97\xe2\xd5\x9c\xe5\x0c\x65\x3c\x6f\x5a\x94\x72\x66\x15\x84\x96\xa9\xe0\x58\x96\xd1\x32\x3c\xba\x5b\x5f\x47\x3c\x07\x5d\xb5\x84\x96\xa9\x80\xa6\x97\xf1\x30\x3d\xa7\xbb\xaf\xf5\x00\x86\xa1\x70\x2d\x35\xac\xff\x45\x54\xe0\x5b\xf9\x72\x2c\x63\x35\xbf\x06\x58\x91\x50\x65\x29\xb2\xcb\x5d\x4a\xff\x7c\x6d\x07\x14\x69\x09\x05\x53\x49\x63\xb0\xbe\x3c\x59\x46\x40\x09\x05\x53\x89\x43\xbf\x04\x82\xa9\x24\x2a\x58\xc6\xc0\x10\x22\x7e\x09\x03\x73\x44\x39\x0b\x03\x73\xce\x4c\xb3\x05\x4e\xfb\x1b\x2c\xb8\xbe\x3c\x62\x4d\xa5\x7e\xcd\xcc\xaa\x0b\x7c\x05\x70\x64\x11\x68\x06\xa4\xd1\xfa\x62\x56\x8f\xfc\xa9\x5b\x05\xe6\x47\x70\x99\xab\x62\x69\x09\xd7\x92\x18\xba\xcb\xb0\x96\xdc\xc0\x28\xf7\x54\x25\x14\xf8\x72\xea\xa9\x0b\x68\xc4\x72\xee\xa9\x38\x96\x7f\x7e\xcb\x53\x42\xfd\xbc\x31\xf9\x54\xd7\x2a\xf1\xe5\x0a\xb9\x52\x01\xd3\x2e\x21\x57\x4a\x46\xa5\x48\x32\xe3\xe9\xdb\x64\x0b\x57\xc8\x21\x1c\x4d\xaa\xd1\x0e\xc9\x2d\x9c\x90\x2b\x85\x9c\x17\xeb\x67\x71\x83\x1d\x43\x12\x2b\x1e\x70\xae\x1f\x4f\x4f\xb1\xcc\x95\x89\xaa\x12\x7b\x7b\x19\x71\x52\xd2\x88\xd9\x83\x70\xdb\xcb\x90\x13\x80\xd0\x4b\x18\x93\xbb\xda\x06\xa9\x71\xa1\xd0\x0d\x15\x99\xbc\xf6\x58\x86\x8a\x4c\xde\x77\x2c\x23\x3e\x1a\x11\x7f\xf7\xcb\xf7\xaf\xf8\x8f\xb7\x61\x1d\xd3\x99\x01\x6f\xd2\xe6\xa5\xf7\xc9\x7e\xf9\x70\xd3\xf3\x2d\x15\x9f\x90\xcc\x4a\xbe\xf5\x8b\x7c\x6f\xff\xfd\x1a\x0c\x67\x40\x4a\x94\x9d\x14\x72\x35\x36\xf8\x55\xcf\x4a\xb9\xbf\xd9\x2f\x74\x86\x15\xd3\x7e\xf1\x42\x8f\x7a\x8c\x09\xc1\x4b\xb3\x5f\x56\x04\x3d\x9f\xfa\x46\xfd\x62\x30\x3a\x01\x97\x0c\xcd\x1b\x79\xf0\x23\x41\x24\xcc\xb6\xfb\x85\xe0\xb5\x46\xd9\x64\x58\xe2\xe9\xe8\x36\x3e\x83\xe7\x4f\xfb\x85\x92\x1f\x34\x2a\xb7\x48\xc7\xa9\xb4\x5f\xdb\x37\xf7\xa1\x94\x0d\xaa\xd1\xa8\x36\xd9\xab\x3c\x9f\x5a\x17\x5c\x4c\xaf\x80\x3a\xd7\xc1\x9c\x08\xfe\xef\xec\xad\x6d\x0b\xae\x51\x5e\x34\x79\x38\x13\x45\x0f\xa5\x1b\x81\x1a\xca\x47\x4e\x33\xe0\x26\x26\x0c\x1e\x9e\x7d\x18\x1e\x4b\xc0\xee\x2d\x64\x45\xb9\x2c\x78\x37\x21\x62\x08\x53\xb2\x05\xb4\x38\xf1\xd6\xed\x84\x88\x19\x21\xe1\x1b\xea\xb5\xec\x65\xed\x8d\xa6\x70\x22\xb7\x9b\xf2\x01\x6b\xd2\xa6\xdf\x1b\xbd\x52\xcf\x76\x87\xf2\xed\x5b\xa3\xce\xa7\xca\x39\xe7\x3d\xb0\x0f\xcb\xe5\x91\x2f\xf5\x86\xef\xc5\xfc\x38\x93\x5c\xe3\x3f\x9f\x63\x59\x5b\x27\x60\xea\xc4\x02\xdd\x4a\xc0\x54\xcb\xa4\x1a\xdb\xe7\x99\x2d\xb4\xf3\xc5\x5c\x2e\x66\x8b\x61\x2d\x2f\x09\x94\x13\x99\xe4\x53\x69\x63\xfc\x29\xfb\xf0\xfe\x9c\xf9\xd2\x47\xc1\x93\x79\x05\xf7\x9a\x1e\xd8\x11\x8b\x77\x6c\x1f\xd9\xbd\xf9\x58\xb1\x81\xea\xdf\xaf\x74\x36\x21\x68\xda\xd3\xea\x47\xfb\x26\xfd\xd3\xe4\xb1\x06\x82\x64\x54\x82\x3f\xee\xd3\xc7\x34\x56\x56\x88\x8c\x42\x28\xf8\x6d\x44\x46\xff\x97\x34\xef\xcf\x90\x92\xa1\x2c\xde\xe9\xa7\x03\x38\xd2\xb6\x00\x1a\x85\x68\x27\xfb\xb4\x67\x04\xdf\xcc\x76\xfa\x26\x6e\x74\xb6\xc1\x1b\x9c\x99\xf6\x69\x13\x72\xf2\xa5\x4f\x12\x69\x71\xda\x63\x99\x32\x7a\x97\x1f\xe9\x5d\x4a\x1d\x3a\x3f\x94\xd9\x00\x66\x3f\xed\x32\x21\xbc\xf9\x3e\x25\x57\x5e\x99\x1f\x1f\x22\x47\x3e\x95\x90\xb1\x25\xba\x4f\x0e\x91\x93\x71\x21\x73\x2a\x73\x20\x87\x4a\x4f\x87\x1c\x77\x0e\x26\x75\x96\xa5\x0b\x34\xd0\x3e\x79\x11\x40\x07\x22\x90\x42\xc2\x7a\x21\xef\xe5\x23\x42\xfe\x3e\xb1\x04\x53\x91\x8c\x05\x42\xa1\xef\xd3\x00\x44\x32\xec\x6c\x47\xb2\x21\x4f\xda\x3e\x79\x58\x9e\xb1\x28\xc0\x11\x61\x03\xf7\xe9\xec\xaa\xe9\x90\x8e\x9f\x3c\x37\xde\xa7\xad\xc2\xca\x5c\xea\xf8\xc9\x81\x64\x2b\xe6\x4d\xe5\x11\xea\x56\xd2\xa5\x4a\x68\xb0\x7d\x4a\xfb\xe0\x4d\xdd\xc5\x16\x23\xdb\xbb\xa0\x8a\xce\x14\x4a\x40\x33\xaf\x0e\x87\x43\x22\xae\x2d\xf0\xc6\xd1\x88\xe0\xb7\x1d\x0f\x87\xf7\x8c\xbb\x38\xf4\xb2\x2d\x89\x2d\x84\x46\x01\xb0\xbb\x0b\x67\x15\x3a\x5e\x10\x71\x95\x46\xd0\x43\x93\x5f\x0d\xd1\xc0\x27\xb8\x0b\x22\x0f\xa6\x28\x36\x26\x50\x44\x4e\xe5\x74\xb5\x87\x54\x0c\x4d\x1b\x6c\x3b\x18\x0d\xa6\xc4\x18\x0d\x02\x2e\x6f\xa1\x32\x2a\x88\x9a\x2d\x50\xc6\xa8\xec\x2f\x25\x76\xaa\x5c\x16\xee\x62\x4c\x11\xe7\x8a\xad\xc4\x4e\x95\xe0\x72\xbb\xf8\x60\xd3\x53\xab\x18\x8f\xf8\x49\xdb\x21\x78\xf0\x16\xec\x62\x14\x11\xd2\x51\x31\x77\x0a\x6f\x83\x76\x59\x6c\x5a\xc6\x21\x03\x97\xa0\xa2\xbb\xf8\x46\x14\xfb\x76\x0b\xdd\x51\x09\x62\xb6\x0b\x2c\x7a\xa6\xc9\xaf\xfb\x93\x6f\x7f\xea\x2c\xd5\x5a\x58\xa2\xe1\x1d\x90\xa7\x64\xd6\xc3\xb0\x4c\x88\x9f\x58\xa5\xb3\xb8\xa2\x10\xac\x05\x0f\x2f\xb2\xfc\xf2\x6d\x53\x6c\x1b\xc1\x2e\x8e\x4a\x18\xb3\x2d\xa0\xc5\xa8\x48\x1c\xb2\x30\xe1\x5f\xdd\x86\x4b\x5c\x3c\xab\xde\x86\x4b\x60\x9b\x6f\xc3\x25\x78\xe1\xb8\xaf\xc1\xc8\x52\x91\x79\xc8\xe6\xf8\x06\x13\xc1\x4b\xea\x6d\x4c\x04\x81\xa3\x36\x31\x79\x46\xfb\xdb\x09\xbe\x9d\x95\x89\x77\xa7\xfb\x32\x97\x20\x48\x2e\x87\xc5\xc4\x2b\xb9\x85\x90\x28\xcf\xb0\x89\xd0\x95\x32\x4d\x3c\x7b\xec\xb2\x13\x37\x06\x9d\x40\x11\xe5\x75\xa5\xd0\xaa\xa7\x31\x30\x47\xb0\xcc\xb8\xe4\xd2\x25\xb2\xe1\x76\xcc\x9d\x2b\x6d\x64\xad\x53\xeb\xcf\x1a\x96\x6f\x65\xac\x36\x22\x1c\x6c\x85\xd9\x39\x39\x08\x6e\x21\x28\x2a\xc1\xbb\xf6\xe5\x1b\x27\x9e\x8b\x6e\x21\x28\x6a\xec\x11\x03\x28\x9e\xd5\x94\xbf\x84\x67\x1e\xdb\x21\x78\x1a\x5e\x87\x0d\x80\xa2\xe7\x47\xef\x9b\xa7\x03\xda\x37\xe1\x03\x99\x59\x25\x13\x82\x75\xec\xd3\xc4\xae\xc6\x2a\xb2\x19\x14\x91\xe7\x24\x58\xce\x36\xd4\x82\xe7\xce\x1b\x10\x04\x0f\xd4\x77\x45\x9d\xd8\xb9\xb3\x8d\x89\xe0\x3e\x7c\x0b\x13\x51\x89\x49\xb4\x2b\x26\x4f\x49\x45\x8e\xbe\x32\xa1\x98\xd9\x90\xf0\x9a\x47\x4d\x52\xa4\xa7\xb7\x24\x4a\xc6\x92\x10\x12\xa2\xf2\xe8\x72\x0b\x08\x51\xaf\x74\xde\xc8\x41\xee\x1e\x76\x75\xa6\xc0\x2b\x85\x6c\x0d\xba\x2b\xb0\x20\xd1\x42\x77\xb5\xff\xa2\xa6\x07\xd2\x7e\x19\xa6\x5f\x5c\x5f\xa9\xd4\xf6\x11\xb5\x6c\xfa\xca\xa7\x82\xca\x44\xfd\x57\x5f\x46\xa7\x37\x32\x81\xc8\xb6\xb0\x8d\x66\x20\x98\xd1\x76\x6e\xa3\xc9\x93\x8b\x0d\xd0\x20\x2a\xa4\x59\x4b\x94\x50\x5d\x1d\x68\x50\x7a\x73\x69\x57\xd8\x56\x04\x9c\xa3\xe0\x2c\xd8\x84\xc0\x21\x19\xc4\x76\x08\x9c\x4c\x73\xc3\x4a\xe6\x04\x22\x88\x42\x25\xcc\xcd\x6e\x41\x1c\xbf\x20\x2d\xbd\x5a\x4a\xbd\x06\xf4\x96\x4b\x00\x6c\x20\xa3\x12\x08\x90\xb3\x9b\x0f\xa0\x47\x7e\x64\x0d\x52\x38\xdc\x0a\x23\x53\xee\x23\x62\xa2\x6e\x41\x16\x0a\xc8\xe1\x2d\xc8\x42\x01\xe8\xb4\x95\x85\xe8\x6e\xb2\x43\x9a\xd9\xae\x94\xda\xbe\xa6\x11\x8e\x9c\x57\xbe\xd5\x8d\x4a\xc6\x29\x8b\x16\x24\xc4\x6e\x6c\xd4\x2b\x85\x9e\x77\xe6\xd6\x17\x76\xf8\xf2\x77\xf3\x4e\xcd\xd4\x62\xd0\x62\xc0\x09\x4b\x50\x88\x9a\xbe\x1d\x91\xe6\x18\x4f\x2b\xbe\xd3\x41\xb1\x0b\x4c\x50\x62\xb1\x75\xcc\x05\xec\x93\x6e\xac\x70\xf6\x63\x37\x27\x70\x80\x73\xd8\x19\x9e\x39\x6c\x41\x0b\x2a\x2f\xef\xb7\x83\xd0\x74\xee\x8a\x76\x47\x11\x20\xda\xba\x33\xac\xcf\x7c\x2b\x45\x70\xfd\x1d\xe5\x7b\x77\x0e\xbc\x35\x7d\xd7\x66\x40\x0f\x38\x42\xcd\x23\x3f\x85\x35\x38\x63\x5f\x3a\x5e\x0d\xcf\x09\x77\x37\x93\x64\x94\x13\xa0\x2c\xe3\x72\xec\xcd\x9e\x42\xed\x14\x96\xaf\x13\xc8\x61\xe6\x53\x54\x65\x1a\xb1\x33\x2a\x53\xa2\xc3\x14\x6f\xb9\xb7\x83\xd9\x74\xd2\x65\xec\xee\x5b\x66\x6e\x5f\xb6\xb3\x28\x45\xe8\x74\x3f\x81\x8d\x2e\xef\x16\x33\xf0\x45\x77\x5e\x48\x92\x12\x6c\x85\xba\xa9\x17\xbc\x68\x48\x03\x2f\x50\xb7\x21\x0d\x17\xa1\x14\x76\xb7\x6d\x81\x22\x10\xa2\xe1\x38\x9f\x32\xaf\x42\xca\xd4\xf5\x2c\x9f\xdf\x59\x10\x61\x7b\x77\xfc\x68\x99\x04\xc1\xf7\xc8\xc6\xb2\x05\x7e\x18\x3c\xa3\xdc\x02\x3f\x9c\xb1\xc3\x3a\x86\x06\xb6\xb0\xb0\x0f\xa5\x66\x90\x9c\xf1\x11\x1e\xdd\xf9\x04\xd0\x36\x4a\xcc\x34\x88\xee\xb7\x0d\x8b\x20\xc2\xd1\xee\x36\xa2\xaf\x54\xaa\x7d\x7b\xa6\x16\xed\x45\x44\x05\x38\x08\x70\x8e\x7b\x0c\xba\x33\x20\x15\xae\x8a\xd9\x71\x7a\x25\xfc\x3d\x7b\x18\x2a\x73\xa4\x1e\x79\x4f\x19\x86\x41\x11\x04\x46\xda\xc3\x49\x6e\x70\x81\x38\xee\x0d\x3e\xd8\x3d\xcc\x76\x28\xa5\x61\xed\x76\xa4\x41\x33\x1a\x46\xb4\x73\x26\x45\xc6\x0d\x43\xfc\xd0\x16\xc3\x36\x6a\xcf\x7f\xec\x89\xb4\x21\xd3\x04\x23\x66\x90\x4e\x82\x11\xca\x7e\xe5\xd1\xf1\x76\x0c\x9c\x2b\xe7\x28\x63\x19\x40\x11\xee\x61\x96\x6b\xf9\x51\x00\xda\x92\x32\x29\x36\xb6\xba\x22\xe0\x8c\x9a\x21\x92\x6c\x39\x75\xca\xa2\x41\xe9\x28\xc4\xcd\x49\xba\xeb\xad\x08\x37\x95\x27\x41\x7b\xc0\x70\xe9\xb6\x1d\x0f\x8c\xde\xe1\x01\x62\x31\x18\x02\x51\xb8\xf7\xda\x23\x7c\xc3\xa8\x2c\x18\x11\x76\x42\x32\x8c\x58\x17\xc3\x9c\x82\x06\x1a\xb8\x86\xb2\xc4\xb0\x0a\x3d\xf7\x09\x8b\x26\x15\xb5\xe6\x78\xcc\x1b\x85\xad\xa9\x00\x5f\xf6\x74\x8c\xd1\x28\x2b\xe3\x1a\x26\x08\xf5\x2d\x78\x42\x01\xf7\xbf\x95\xe5\xa8\x82\x33\xdb\xd3\x4a\xef\x29\xb3\x80\x48\x21\x36\x2f\x92\x99\xd8\x33\x44\x6b\xdc\x06\x27\xe4\x5c\x30\x39\x77\x33\x32\xc7\xa2\x21\x7e\xd1\x16\x38\xe1\x8c\x8d\x30\xed\xfd\x39\x43\x59\x37\xa0\xe6\x14\x8a\xe6\x1e\x4a\x48\xf1\x12\x47\xb5\x89\x50\xc2\x39\xe4\x70\x33\x7d\xb6\xbf\x41\xdf\x5b\x48\x86\x12\x1b\x78\x62\x12\xe3\xc9\x9a\x30\x09\x03\x83\x11\x52\x26\x57\x77\x06\x2d\x1f\x3d\xf0\xe6\x3d\xc1\x09\x73\xc4\x99\xb6\x64\x11\x43\x93\xfb\x3c\x8e\x8e\x93\x80\xcf\x1c\x16\x9d\xb9\x88\xa0\x63\xdb\x61\x62\x00\x85\x6d\xa1\x1c\x0a\x6f\xb8\xb6\x32\x17\x55\xa0\x41\xdb\x38\x86\x09\xac\x71\x2f\x59\x34\x71\x9b\x2c\x8e\xc1\x23\xa4\x26\x2f\x94\xc3\xa7\xc1\xd1\x6b\x32\x77\x13\x52\xf1\x6f\xb0\xd4\x1c\xc1\x25\x07\xff\x85\x33\x16\x6f\x8c\xf3\x0a\x91\xd7\x68\x2b\xa0\xcb\x49\xd8\xf4\xbd\xbc\x5c\x8c\x6a\xa1\x60\x70\x39\x29\xa0\xcb\xc1\x93\xa5\x2d\x88\x43\x8d\x03\x73\xe1\xbd\x43\xa2\x18\xf0\xc0\x55\xf6\x36\xe0\xa1\x70\xdb\xbf\x97\xcf\x9c\x6c\x9a\xc5\x31\xe4\xa2\x5a\x2f\x10\xdc\x44\x82\x22\x2e\x38\xf7\xc2\xbc\xe9\x29\x55\x94\x79\x56\x6f\xe9\x1a\x25\x22\x55\xf9\x8a\x0a\x17\x6d\x7b\xb1\x51\x71\x70\x38\x5f\xd1\x04\xf0\xb7\x97\x4f\x1e\x88\x38\x47\x74\xe1\x3d\xda\xde\x08\x7c\xbc\x0b\x7b\xd0\xdb\x02\xe9\xde\x36\x28\xaf\x09\x4b\xed\x78\x2f\x38\xf8\xb7\x52\x1d\x15\x90\x5d\x7b\xa3\x1b\x30\xf1\xb6\x95\x03\x57\x7f\xdb\xf1\x5e\x62\x13\x6f\x4c\x9f\x33\x15\xd9\xc7\x73\x41\x49\xe9\xce\xd4\x63\x06\x9a\xe9\x9e\x8f\x29\x67\x3a\x6f\x25\x0c\xb7\x6d\x8b\x87\xf4\xcf\x26\x31\x3b\x5e\x91\x61\x8e\xe7\x1c\x27\x0c\xc6\xf9\x74\xcf\xb9\xa8\x60\x2f\x05\x78\x39\x1e\x8f\xd0\xc6\x94\x7d\x4a\xdd\x3f\x7a\xe0\xa5\x67\xc5\xb6\xd7\x3a\x53\xa2\xa3\xc7\xf1\x4a\xd9\xbd\x9a\x60\xd6\xf6\xb6\x48\x4e\xfb\x0e\x8d\x37\x33\x3f\x9b\x16\xe9\x80\xc1\xd2\x44\xed\xd8\xdb\x62\x38\x33\xb2\xad\xdb\x3c\x5d\x6f\xc2\x0e\x14\xa8\x53\xc9\x0f\x5e\x50\x56\xed\xf4\xf5\xad\x27\x1f\xe7\xf3\x29\xeb\x35\x20\x75\x14\xab\xf9\xd4\x87\x96\x1e\xd2\xc7\xdc\x9e\x6f\x59\xa2\x74\xe1\xa7\x73\x1b\xdf\x3a\x0e\x34\x59\xeb\xb6\x72\x03\xd5\x38\x1b\x15\x81\xa5\x86\x69\x15\x80\xe5\x00\xc3\xb3\x15\x80\xe5\x04\x9e\xb9\xdf\x7e\xd4\x11\x8f\xe6\x9b\x53\x4a\x4f\x3d\xf0\x13\x63\x31\xca\x69\xa6\x5e\x41\xfa\xc9\xe3\xb9\xdf\x0e\x98\x88\xbd\x21\xb4\xc6\x45\x48\xed\xed\xb0\x2a\x7d\x8e\xbf\xc3\xc2\xee\xb7\x98\x64\x02\xce\xdb\x4a\x39\x74\x93\x69\x85\x1e\xa5\x54\x2e\xd7\xcc\x89\x82\xb0\x00\x85\xdf\x04\x61\x89\x18\x34\xce\xe3\x22\x16\xd2\x7e\xdb\xae\x04\x7c\xb6\xdf\x76\xb9\xce\x50\x66\x37\xd6\xc1\x97\x47\x84\x4d\xda\x24\x2b\x22\xf9\xda\x7e\x63\x12\x20\x87\x84\x02\x39\x89\xe9\xb0\xdf\x9b\x19\x63\xb6\xf1\x63\x8c\x90\x5f\x2d\x53\xbe\x35\xc7\xbb\xf7\x0e\xb6\x92\x5b\x83\x8f\x6f\x5a\x51\xab\x1f\xef\x4e\x5e\x81\xec\x8f\x43\xff\xc3\xd4\x1f\xc3\x0e\xc9\x81\xb4\x1d\xf8\xe4\xe0\x16\x72\x3b\xf2\x49\xbc\xa7\x1f\x54\xf9\x08\x79\xef\x9d\xb8\x2e\x9d\x1a\xa8\x91\x68\x70\x7f\xc2\x0b\x1d\x72\xab\xef\x13\x4a\x89\x82\x8e\x74\x81\x99\x0f\x89\x6c\x61\x2c\x4e\xe9\xca\xf4\x7d\xf0\x80\x20\x18\x05\xe7\xb8\x1b\x0d\x69\xb3\x91\x13\xb6\x21\x1c\x71\x85\x09\xb3\x51\x73\xde\x56\xc6\xa1\xbb\x22\xfa\x47\x58\xd7\x57\xc8\x8f\xbe\xcd\x9f\x7a\x21\x95\xee\x4a\xd4\x80\xfe\xda\x42\x65\x14\xa2\x46\x6f\xe1\x2e\x6a\x45\x88\x2b\x51\x50\x0d\x2f\x0a\x67\x51\xc3\xa8\x8e\x68\x92\xcb\x24\x12\x03\x11\x66\x6a\x2b\xc0\xc9\x3d\x2c\xf7\xc6\xb0\x0b\xd0\x67\x5b\xb0\x8b\x1a\x4e\x14\xea\xa2\xe6\x0a\xc6\x59\x82\x8e\xdc\xba\x3a\xdc\x09\x8f\x91\xb7\x60\x16\x15\x54\xe6\x76\xce\xa0\xf9\x6f\xad\x3e\xc5\xe4\x53\xfb\xd3\x70\xac\x28\xde\xc9\xdd\x9f\x54\x4b\x6f\xd3\xa8\xf8\x12\x03\xd4\x79\x82\x3a\xd9\x7e\xb6\x02\x9e\xd4\xf8\x64\x1c\xef\xe4\xe2\xf5\xf6\xfe\x86\xdb\x68\xd5\x3e\x75\xae\xf6\xf7\x77\xb2\x55\x52\xea\x5b\xc5\x14\x0e\xa5\x3d\x19\x21\xcd\x6e\x25\x9d\xf8\x78\x70\xe9\x84\xcd\x57\x64\xda\x77\x21\x0c\xa9\x58\x98\xa0\x1c\xe0\x94\x1d\xa8\xe6\xe0\x6e\xf8\x47\x8e\x8c\x5f\x04\xd3\x0c\x69\x69\x78\xe4\x5b\x2d\x30\x12\xc3\x70\x8f\x19\x96\xff\xe2\x23\x45\x5d\x7c\x7d\x85\x93\x8b\xd8\xaf\x43\xea\x64\x5a\xe4\x23\x8d\x97\x46\x98\x8e\x01\xc2\x6b\x7f\x79\x39\xcb\xb1\xfe\xeb\xbb\xff\xdc\x13\x3b\x94\x49\xce\x94\x5f\x22\x41\xd4\x14\xfa\x34\x86\xad\x22\x70\xc6\x73\xd7\xe9\x58\x26\xd9\xf7\x3f\xb8\xaa\x43\xe9\x95\x12\xbc\x4a\x78\x92\x5c\xd9\x1a\xc7\x91\x63\xcc\xcf\xa1\x9b\xe2\x5c\xf9\xf1\x28\xb1\xfe\x07\x07\x8a\xe0\x19\x35\x1c\xf8\xd3\x79\x34\x47\x9e\x9f\x45\x0d\x73\xf0\xcb\x62\xe7\x53\xc9\x16\x26\xef\x87\xf8\xb8\xf2\xad\x76\x2b\xc2\x58\x59\x80\x4e\xa0\xa3\xfb\x67\xf4\xf3\x0c\x25\xab\x2a\x6d\xf8\x20\x90\xbb\xdf\x1f\x37\x21\x28\x6d\x01\x39\x4a\x5c\x22\x06\x72\xc4\xb0\x73\xe8\x90\xdc\x7e\x0b\xc7\x71\x46\x07\x3a\x74\x48\x8b\xa3\x45\xb0\x8e\x0a\x1e\x6e\xff\x58\x76\x3a\xc0\xb2\xa7\xac\xfd\xf3\xbf\x4e\x18\x88\x6d\x88\xc7\x73\x45\xfa\xb3\x64\x29\x29\xb4\xd6\xc0\x0e\xf8\xd9\xc5\x96\x1b\xdc\x9f\x95\x88\x66\xa7\x8f\x97\x79\xc0\xd7\xe8\x37\xe9\xfe\x0c\x28\xf7\xe0\x84\xba\x7b\xe0\x70\x66\x37\xa5\x93\xb5\xe6\xfc\xa6\xc4\x76\x9a\x8e\x9b\x5a\xae\xf4\x80\xf4\xf2\x54\x28\xef\xcc\x23\x85\x5a\x1e\xad\x64\x1f\x2f\x0b\x0b\x9d\xd0\x6f\x4a\x3e\x98\x93\x16\xed\x20\xb5\x07\xf9\x26\xc5\x11\x57\x28\xcd\xc0\x45\x57\xcd\x10\x17\x4d\xc8\x25\x51\x2f\x3a\xe7\xcb\x92\x87\x52\xf3\x52\x1f\x7d\x90\x63\xc8\xc2\xf4\x26\x8b\xc7\x11\x52\x91\x2d\x27\x2d\xca\x67\x6e\x7b\xf8\xa6\x24\x3d\x33\x01\x52\x26\x2d\x93\x63\x0f\x95\xd3\xb2\xf7\xa1\x3c\x41\xb5\x5e\x8c\x51\xa6\x43\xbd\x18\xbf\x9d\x50\xbe\xcf\xbe\x49\x86\xcc\x7a\x38\x06\x4c\xcf\x28\x37\xd3\x4c\xa3\x7e\x9f\xec\xe8\x12\x37\xe9\x75\xf6\xaf\xc7\x60\x28\x15\x92\x76\x26\x64\x77\x69\x83\x34\xeb\x33\xf1\x07\x07\xcb\xa3\x40\x02\x62\xc9\xc7\xdb\xff\x76\x48\x5b\xe5\xf9\xd5\x7a\xac\xba\x8b\x87\x97\xb7\x52\x88\xb4\x67\x09\x0f\xe7\x8c\x33\xce\xf6\x26\x87\x1e\x79\xd2\xa8\x85\x72\xa5\x6c\xf1\x27\x83\x93\x54\x1e\xce\x31\x75\x93\x7a\xcc\xe2\xd4\x4b\x37\xa9\x33\x62\x0b\xc5\x2c\xe5\xdb\xaf\xbf\x4d\xc5\x3e\xd2\x7b\x82\x0f\x87\x3e\x48\x19\xaf\xa1\x2a\xdd\x95\x1c\x1e\xaf\x23\xdf\xea\xfe\xa7\x85\x52\x08\xfb\x83\x61\x13\x97\x25\x94\xe5\x13\xb3\x70\xfa\xc1\x53\x67\x68\x27\x7b\xae\x42\xd1\x48\x81\xd4\x2d\xc0\x95\x42\x25\x20\x62\xf9\x4f\xbf\xa3\x9c\xee\x80\x41\x13\xce\x98\x73\x53\x5e\xee\x33\x85\xbe\x0b\xaa\x21\xad\xc5\xce\x7c\x6c\x66\xa0\xbb\xc6\x49\xcc\xfa\x77\x9c\xd8\xfb\x5b\x89\x81\xa7\x5e\x1b\xb3\x67\x2a\xfa\xb9\x5e\xf3\xcd\xc9\x3b\xdd\x1a\x52\x2f\x46\x4a\x28\x09\xd4\xa7\x4c\xef\x78\x9e\x32\x31\x76\x9d\x50\xda\xc0\x30\xd8\x89\x95\x8e\x8c\x10\x30\xe2\x6e\xb2\x43\x9a\x89\x06\x14\x93\x92\x6f\x7d\x6e\xce\x94\xd9\x74\xab\xf9\x73\x4a\x3d\xb3\x64\xda\x78\xbe\x7e\xb9\x29\x07\xec\x74\x35\x8a\x2b\x71\x39\x1b\xd0\x4d\x79\x8b\xb2\x93\x8a\x25\x61\x3b\xa0\x04\x8d\x38\x3d\x2c\x61\x0f\xee\x4f\x29\x74\x42\xd6\x5e\x53\xaa\x99\x65\x37\x18\x17\x70\x75\x7a\x67\x5c\x40\x85\xf7\x8a\x45\x1a\xfc\x5e\x32\xcd\x7c\xea\x84\x16\x2f\x36\xbe\x2f\xe2\x2b\x2c\x5d\x48\x1d\x10\x6a\x79\x7e\xe8\xc1\x76\x23\x2e\xbc\x90\x27\x70\x14\x37\xed\xe8\x8d\x0b\x03\xe1\xec\x90\x66\x62\xf8\xeb\xc2\x41\x51\xf3\xf1\x70\xe9\x05\xe9\x81\x86\x82\x85\xf2\xad\x7b\x7f\xa6\x13\xf2\xa7\xa0\x2d\x2e\x8e\xad\xb4\xc2\x84\xa5\x6c\x29\x3d\x79\x83\x12\x77\xb5\x50\xc8\x28\x4f\xc9\x05\xac\xe2\x21\x0d\x4d\xa4\x1e\xa9\x00\x3b\x98\x6e\xca\x37\x2c\x19\x09\x07\xc8\x33\xa5\xae\x97\x85\xf0\x1d\xf9\x78\x65\x52\x6e\x4e\xed\x0d\x35\xe4\x1b\xf3\x2b\xca\x55\x17\xdf\x67\x47\x7f\x5d\x06\x88\xcd\x92\x42\x63\x6f\xdc\x68\xf5\x4b\x27\x5f\xbd\xdf\x64\xf5\x06\x48\xa9\x04\x06\xd2\xa4\xe2\xee\x69\xf9\x96\xd8\xc8\x27\xa4\x66\xa5\x17\x28\x05\x97\x65\xe7\x28\x4f\xcc\xdd\x79\xaa\x75\x9e\x98\x99\x8a\x30\xea\x61\xc0\x3a\xe1\x8d\x09\x29\x43\xae\x85\x92\xb5\xd8\x2f\x28\x2b\xb8\x12\x52\x00\x84\x19\xca\x0c\x98\xde\xdb\x39\x5c\x52\x8f\x05\x37\x93\x52\x59\x35\x36\x88\x22\x04\x54\x67\x9e\xbd\xa9\x4b\x8f\xec\xe9\xed\x72\x7f\x18\x8a\x0f\x85\x3d\x65\x4a\x3e\x30\x52\xa9\xef\xf4\x33\x2e\x87\x22\xcf\xb0\x2c\xa2\x3a\x9d\x13\x7e\xb4\x60\xf1\x54\x14\x35\x5c\xec\xa4\x2e\x9d\x35\x69\x98\x5c\x58\x07\xca\xe9\x52\x6b\x4f\xa1\x95\x4c\x4b\xa1\xad\x69\x2a\xd2\x8d\x76\xad\xfd\x05\x05\x6e\x1f\xca\x07\x58\xa4\x64\xb3\x5d\xd5\xa1\xb2\x42\x7f\x22\xc1\xef\x6f\x2f\xf9\x3e\xe9\x90\x57\x0f\x8e\xf7\x43\xfa\xf1\x82\x65\x74\x2b\x3d\xfc\x52\xf5\xa6\x58\xaf\x0e\x69\xc3\x80\xb5\x55\xe2\x96\xb3\xb0\x3d\xdb\x62\x12\xf8\x55\xe7\xf6\xf1\x4a\xe7\x75\x51\x58\x59\x86\xe6\x99\x46\xdc\x36\x0e\x4e\xc8\x1a\xbd\x7f\x2f\x05\xfb\xd5\x77\xd6\xb3\x22\xde\x94\x55\xe5\x00\x68\x74\x93\x92\x09\x83\x2e\xf8\x8d\xcd\x44\xa2\xf9\x51\xbb\x73\x1c\xde\x94\x6d\x36\xb8\xad\xdb\x57\x3b\xb1\x9a\xf5\xaa\x7d\x54\x2c\xad\xee\xd3\x11\xa6\x55\xe7\xc6\x05\xe9\xa2\xcb\xe6\x72\x8c\x7c\xea\x1e\xa4\xcc\x87\x6c\x84\x54\x67\x05\xd9\xf6\x7e\xba\xee\x6c\xa1\x7d\xe8\x02\xb9\x4c\x46\xe2\x1b\xe3\xca\xc4\x77\x07\x5e\xe9\x2d\x9f\x8a\xa3\x46\x3e\xad\xda\x53\xf9\xd4\xa7\x47\x76\xa3\xb2\x9f\xd4\x8a\xbd\xa3\xeb\xe4\x63\xbc\x32\x4a\xd6\xf3\x4a\xa9\x85\x6f\xba\xa7\xe4\xbb\x17\xfb\x4f\x37\xc6\xb5\xc2\x8b\xbe\x05\xee\xac\xb5\xf3\x9d\xc4\xa8\xf2\x2b\x77\x27\x4a\xb9\x29\xad\xed\x4c\x2d\x8e\x4b\xc3\x38\x94\x27\xbe\xc0\x3f\x7e\x9b\x3e\x73\x1a\xd0\xfd\x6c\xad\x98\x3b\x1d\x11\x99\x15\xf1\x42\xcf\xfc\x29\xad\x8b\x08\xef\xf6\xbb\xa4\x6f\x7e\x52\x7a\xe5\x4b\x6d\x1a\xe6\x6a\x38\xe0\x45\x67\xbb\x29\x4d\x49\x29\xec\xa8\x81\xc9\xcc\xe4\x28\xdd\x48\x75\x76\xae\x3e\x86\x00\xac\x95\xc5\x1a\x38\x39\xae\x14\xb2\xc5\x53\xea\x03\x3c\x7a\x7f\x64\xd2\x53\xaa\xbe\xb3\x19\xfd\x50\xfc\xea\x3d\xdf\xfe\xfc\x2b\x7d\xf0\x13\xef\x89\x55\x3c\xbc\x89\xe6\x84\x52\x16\x74\xb8\x92\x37\xdd\xbd\xe7\xcf\x7b\x4e\x1a\xd2\xcb\x97\x9f\x8d\x2d\x35\x38\xbd\x60\x30\xeb\xc5\x77\x6d\x1c\x89\x74\xfb\x59\x0d\x8c\xbf\xa9\xcb\x73\x72\x41\x2a\x37\x09\xb6\x98\xae\x42\x4b\xce\x64\xc3\x31\x0e\x7b\xcf\x9f\x70\x5e\xbe\x55\x9c\x9a\x92\x46\x24\x3e\x33\xf1\x8a\xfd\x7b\xd6\x50\x3f\x75\xc0\x94\xb2\x7b\xd4\xc6\x51\x64\x62\x59\xa3\x6b\x7c\x4f\x3a\x5e\x57\xbe\x2d\x9e\xbc\x02\x69\x9b\x05\xab\x5c\x2f\xbe\xab\x13\x4b\xdc\x94\x72\x95\x1f\xa1\xf4\x36\x04\x19\xa3\x37\xdd\xb5\xbd\x42\xe9\xd6\x8d\x51\x4e\x47\xd8\x99\x68\x1e\x5d\x93\x96\x58\xa3\x93\x5d\x8b\x06\x99\x98\xdd\x57\x4a\xef\xd5\x6b\x9c\x61\xf4\xa2\xfb\x28\xe3\x4f\x14\xe1\xfd\xe9\xf2\xb8\x18\xa6\x51\x20\x3d\x3d\xb0\xe1\x88\xb6\x99\x8e\x47\xc8\x3e\xd1\x05\xeb\xdd\xdb\x13\xf2\x27\xcb\x87\x4f\x39\x1a\x63\xbe\x38\xd9\x47\x61\x85\x74\xfb\x7a\xbd\x6a\x3e\xb5\xfe\xbf\x42\x2a\x0b\xcd\x91\x4f\x7d\x9c\x38\x53\x38\x05\xb3\x08\x65\x8b\x04\x1b\x7c\x3a\xf6\x52\x4e\x8f\xd3\x31\xc0\x32\x99\xf2\xb4\xb6\x23\x14\xbb\x88\x65\xd8\x36\x2a\x33\x14\x19\xb6\x67\xfa\x2e\x5f\xeb\xe8\xf9\xf4\xab\x7a\xf2\xa5\xad\x34\x7a\xe0\x57\xe5\x07\x47\x16\xbd\x2a\xaf\x8d\x83\x91\x6f\x5f\xdb\x91\x2f\x2d\x9e\x90\x87\xca\xca\x51\x1b\xbc\xbf\xfc\xaa\x36\x46\xf8\xc2\x7d\x4a\x0f\xfc\xa8\x7c\xbc\x18\xa6\xf2\x69\xd4\x96\x36\x11\x1e\xcc\xad\x6e\x63\x6b\x83\x85\x16\x10\x1f\xa4\xf9\xb2\x5b\x13\x4b\x5a\x97\xaa\x35\x4c\xab\x6b\xd4\xda\x8e\x7c\x69\x79\x59\x43\x4a\xb4\xa3\x6f\x9d\x25\xe3\xea\x0f\x49\xf7\xe8\x90\x8e\xc8\x17\x62\x78\x6d\xeb\xf1\x8c\x6c\x5b\x31\x32\x6c\x4b\x07\x24\x9b\xaf\x58\xaf\x3e\x42\x3a\x6a\x7a\x3e\x9d\xfa\x34\xb5\x5a\x2a\xbb\x45\xa7\xbe\x28\x85\x53\x8a\x2f\x4a\x47\xb8\x6d\x1b\x15\xc6\xfa\xf9\x8d\x79\x3b\x43\x89\x47\x98\x90\xed\x3d\xcd\x86\xcf\x3d\xe9\xc8\xa7\x76\x72\x60\x47\x6f\x4e\x1a\x18\xe4\xba\xee\xac\x8d\xce\xfa\x71\xfa\x7c\x28\x8f\x92\xce\xfa\x8a\x04\xcb\x78\x3b\x8e\x68\x2c\x48\x67\xc5\xe8\x2c\xb4\xde\xa6\x9f\x2f\x4c\x3d\x52\x5d\xc4\xf2\xdb\x5e\x3d\x58\x76\x3b\x52\x4c\x5c\x71\x4a\x6e\x71\x16\x98\x5d\x17\xa1\xe5\x7c\xca\x84\x5d\x84\x2d\x9d\xaf\x62\x3c\x8d\xa0\x44\x4b\x48\x31\x45\xc6\x2c\x25\x1a\x27\xc1\xf6\x8a\xc0\xcf\x1b\x5f\x13\x86\xe8\x0e\xdc\x36\xf5\x38\xa6\x14\xfd\xd9\x4a\xe1\x51\x53\x8f\xa5\x0a\x7f\xbe\x9d\x34\x2c\x9e\xb2\x37\x6a\x14\x23\xcc\xef\xcd\xdb\x53\xb8\xfd\x6d\x0a\x7d\xbe\xca\xb7\xd3\xf2\x1c\x95\xf6\x66\xa3\x3c\xa4\x16\xbb\x84\xf2\x40\x0b\x94\xdf\xef\x0d\x28\x29\xbf\x34\xa2\xb3\x74\xc3\x86\xf5\xeb\xf3\x59\x9f\x6a\x6e\xde\x9f\x6c\x0c\xdf\x60\xce\x9c\x3f\xdf\x0e\x0a\x70\x85\xba\xed\x93\x86\x22\x78\xf3\x40\xb8\xff\x19\xfd\xfb\xfe\xd6\xaa\x11\x23\x51\x17\x9a\xb5\x5d\x69\x53\x21\x1c\x67\xca\xb6\xfc\xd7\x13\xca\x3c\xdb\xd3\xa6\xf6\xed\x08\x25\x45\x89\x3d\xfb\xe6\xbc\x89\x8d\xf8\x36\x02\x3f\x26\xc9\x1b\xa6\xc1\x3a\x78\x5b\xd2\x62\x95\xbd\x1d\xb4\x7a\xb6\x90\xd6\xdc\x18\x49\x7e\x9b\x3e\x5e\xe8\x75\xdf\x58\xb6\x2b\x15\xf9\x2d\x88\x3b\xef\x84\x10\x57\xc7\xc0\xfd\xc8\x25\x19\x29\xe3\xf4\x10\x27\x3b\xf7\x83\xcf\x98\x49\xf8\x70\x97\x4d\xff\x3e\x30\x02\x7a\xfe\x83\x3b\x0b\xa1\xf8\xf1\xd2\x23\x4b\x3e\x78\xb3\x58\x17\xbf\xf8\x2e\x23\x94\x1f\x99\xd0\x79\xbf\xea\x9e\x71\x2a\xeb\xc2\xb0\x36\xb4\xda\xc7\x01\x55\x67\x1a\xd5\xd5\x4f\x63\xf1\xf5\xc8\xfb\xee\x11\x8d\xe2\x73\xc4\x3a\x76\x32\x85\x76\x85\xb2\x38\x83\xa9\xfc\xaa\xfb\x42\xc9\xe9\xe1\x76\x6d\x0f\x25\x9f\xfb\xf3\xa3\xfa\x53\xf3\x1f\xfd\xa9\x90\xea\x0f\x6a\x4c\x4f\xba\x6b\x63\x47\x7e\x70\x14\x63\x74\x7f\x39\xdb\xd0\xd9\x2f\xe2\x95\x39\xf9\xb2\x4a\x33\xa4\x04\x08\x3e\x47\x27\x4c\x88\xc1\xf0\xf5\x0b\xaf\x12\xca\x12\x63\x84\x94\x17\x16\x6d\x44\xc6\x84\x89\x4d\xee\x14\x09\xc7\xc4\x0c\xc8\xad\x20\xfa\xd1\xb7\x82\xe3\x85\xb0\xf9\xe2\xbd\xc4\x6a\xe1\x92\x10\x09\xcb\x3b\xef\x6c\x51\x5f\x12\x8e\xd7\xc8\xb7\xde\x21\x9c\x9b\xbe\x4e\xb4\x97\x35\xfc\xe2\x46\x66\xe3\x7d\x1d\xcf\xad\x63\x7b\xeb\xe5\xf7\x01\xb2\xfb\x26\x75\x03\xd3\x52\x93\xad\xf6\x4c\x1a\xe6\x35\x1b\xf3\x8b\x63\x28\x53\xb1\x65\x2d\xa1\xe0\x7d\xd7\xd7\x50\x6e\xce\x61\x70\x0d\x8c\x6f\xdf\xee\x5d\x03\xcb\xfc\xcb\x66\x63\xdb\x7e\x9d\xb9\x71\xbc\x52\xaf\x57\x39\x85\x6f\xff\x9a\xc2\xcf\xcd\x3b\x35\xf5\xda\xcc\x61\xef\xfd\x6c\x37\xd7\x50\x0a\x2c\x80\x0a\xf3\xa3\xed\xf1\x82\x79\x7f\x0e\x50\x3a\x59\x0c\x65\x23\xa8\x0d\x8d\xa6\x64\x04\x23\x5e\xfa\x9f\xc3\xfe\x3d\x5f\x7a\x4f\xc0\x75\x3f\x0e\xbb\x23\x7f\x2a\x21\x0f\xa2\xd4\x79\x0b\x1a\xb2\xc0\x2f\xbc\xaf\xc1\x29\x43\x2f\xbc\x47\x3c\xbe\x3f\x78\x85\x25\xe5\x51\x37\x1c\x49\xfe\x81\xf1\xca\xb7\xac\x03\xf5\x0a\x02\xdd\x32\x4e\xdd\x0c\x16\xf4\x9d\x9f\x71\x8f\xd7\x4c\xa1\x82\x14\xb1\x9d\x74\x51\x78\xe8\x6d\xce\x9f\xd2\xfc\x67\x3d\x80\x6a\x24\x1d\xc1\x64\x01\x95\x8e\xe0\x6e\x85\xee\x2e\xba\xcb\x58\x84\x5d\x19\x47\x0a\x3f\xb2\xbb\xd2\x21\xf7\x9d\xde\xca\x8d\xdb\x52\xab\x0d\xad\xc1\xa1\x88\x7b\xc4\x4c\x26\x57\x4a\x59\x79\x0b\x91\x96\x42\xf3\x17\x87\xe3\x1f\x4a\x9f\xf3\xf0\x0f\x70\x4a\x38\xc1\x90\x85\xf1\x4a\xab\x52\x95\xe9\x3b\xfe\x13\xaf\xf6\x7c\x21\x63\x3c\x9d\xf3\x85\x8c\xb1\x26\x98\x4a\x34\x70\xf8\xed\xdc\x4d\xd1\xfd\x01\xa9\x09\x7c\x0a\x9b\xa2\x5a\x87\x92\x40\xf4\xde\x99\xba\x84\x2c\xf8\x5b\xa7\x2f\x21\xaf\xe1\x83\xd9\x7c\xf9\x69\x9f\x6f\xee\x6f\xd2\x2a\xce\x42\x64\x3a\x5d\x00\x0f\x8f\x6e\xd2\xcf\x36\xf9\xd6\xb7\x4d\x2c\xc4\x7c\x79\x45\x1b\x8d\x2e\x33\x5c\x87\x1a\xfe\x94\xfe\x2d\xef\x07\xba\xb0\xf4\xd2\xaf\xa6\x0d\xdb\xee\x3d\xf5\x78\xbb\x1e\xe9\x90\x59\x75\xa6\x22\x19\xc4\x19\x9a\xed\xea\x46\x9b\x0a\x21\xea\xa0\xe4\x37\xe5\x2c\xc7\xfc\x27\x14\xbb\x11\xa2\x37\x25\x0f\xc6\x99\x2f\xcd\x6d\x19\xb3\x35\x46\x0b\x25\x73\xc1\x5a\x7d\x1e\xb8\x2c\x69\xe3\xf0\x39\xc8\x6a\x72\xe6\x6a\xd1\xc2\x6e\x1e\x2c\xdf\x11\x12\x9d\xda\x20\x2d\xd0\xce\x54\xec\x48\xbf\xe6\xea\xe9\xd7\xe9\x97\x03\xb9\xf4\x79\x00\x23\x3c\x69\xc8\x7a\xde\xf9\x2f\x6f\x92\x76\x3b\xa4\x97\x85\x66\x27\xed\x5c\x90\x32\xa2\x7a\xea\xf5\x11\x39\xf5\xe8\xa9\x41\x4b\x23\xb2\x06\x7b\xfe\xfb\xb8\x49\xfa\xa7\x13\x32\x07\xc0\xa9\x17\xe8\x95\xa3\xf5\x3c\x9c\x29\xe7\x45\x59\x54\x0b\x9d\xd3\xf5\x65\x7b\xa8\x4b\x91\x2e\x43\x35\x77\xb5\x42\xba\xab\xa1\xb4\x2a\x9d\x89\x5f\x4c\x17\x93\x49\x7c\x91\xa7\xd4\x4a\x75\xa6\x54\xdd\x6b\x74\xc8\x46\x47\x96\x61\x33\xb3\x74\x01\xb7\x29\x5c\xa3\xd7\xeb\x27\x52\x69\xea\xa2\xb3\x3a\xa4\xd1\x4d\x49\xf0\x58\xbf\xce\xd3\x2e\xb2\x01\x4b\xf9\x2e\x73\x1c\x6c\x1c\x5e\x92\xdb\x1d\x34\x4f\x5f\xf4\xf8\xdd\xe9\x4d\x6a\x6f\xb4\x7c\x2a\xdd\x65\xfd\x39\x4f\x00\x6b\x2c\xad\x03\xf6\x5f\xf8\x83\xe6\x99\xad\x4c\xa3\x61\x8b\x0a\xd9\x4d\x36\x48\xef\xc8\x42\xab\x76\x71\x1a\x0b\x7a\x93\xd6\xdb\xf3\xcf\x00\x57\xf7\xb7\xde\xa1\x85\xe1\x58\x7b\x8c\xf4\x49\x57\x51\x30\xd1\xb9\xe8\x30\x5d\x5a\x4c\x0b\x1d\xf6\xd1\x2e\x23\x77\xf8\x62\xc7\x73\xbd\xc9\xea\x6f\x27\x24\xdb\x27\xa4\x8c\xd9\x91\x66\x18\x1b\x83\x21\x18\x4d\xd6\x06\xf5\x71\x84\x34\xef\x94\x74\x42\x6e\x34\x80\x1f\xf3\x74\x38\xb8\x9a\xb5\xd2\xb1\xbe\xa6\x4f\x18\x25\x85\x4e\x58\x4b\x38\xcf\xc8\x4d\xd2\x0e\x9d\xd2\xd1\x70\x1c\x48\xcb\xd3\x29\xc7\x91\x8f\x7e\x0d\x7e\x39\x7a\x47\x9f\xc5\x89\xdd\x1c\xaf\xe3\x26\x19\x40\x48\xf1\xbe\x2d\x84\xa9\x67\xdd\x27\xef\x2e\x6e\x52\xdc\x6d\xb5\x3f\x8b\x43\x55\x64\xf7\x39\x9a\xfe\x09\xda\x61\x3a\x9a\xbe\x63\xa7\xdc\x54\x73\x07\xf3\xad\xd9\xf2\xc8\xb7\x56\x1b\x36\xfa\xa7\xde\x63\xdf\x35\x75\xc8\xb7\x9e\x4d\xe6\xdb\xaf\xbf\xa5\x4b\xb8\x63\x53\x2a\x97\xb8\x43\x88\xdc\x94\x21\xc0\x0c\xcd\xf2\xc0\x9a\x74\xfa\x8e\x76\xe2\xef\x98\xc5\xb0\xe7\x8c\xc5\x4b\x8e\x22\xf5\xf3\xec\xf3\xf5\x4a\xad\x12\x16\x33\xb5\x2e\x17\xa6\x5a\x56\x22\xd5\x8a\x61\xd9\xd5\xc5\xf0\xd6\x03\x95\x52\xac\x52\x50\x37\x05\x37\xc1\xc5\xa8\xed\xba\x45\x40\x15\x3b\x0d\x66\xca\x64\x40\x20\x73\x4a\x78\x81\xee\xf9\xa1\x03\x20\x94\xa9\x08\xfa\xe7\x09\xd8\x62\x16\x9e\xde\xb2\x85\x2e\x5f\xaa\x20\xaf\x2e\x3b\x72\x50\x2a\x0e\x99\xdf\xd8\xf1\xba\x5f\xae\x1d\xd6\x75\xc8\xfc\x13\x20\xc6\xf4\xd3\xed\xce\x44\x2b\xd2\x7d\xed\x30\x8d\x1e\x72\xd7\x8e\x78\xd2\xc3\xed\x13\xaf\xc5\xd4\xbb\xed\xbb\x1a\x3e\x15\x24\xba\xc3\x41\xd7\x74\x8b\xf4\xcd\xef\x5b\x38\x88\xcd\x8b\xd0\x41\x23\x7f\xea\xa0\xc0\xa6\xf4\xc3\x6d\x6e\x6a\xe6\xe5\x74\x80\xc8\x6f\xdd\x3c\xd7\xfe\x0a\xa5\xcc\xd9\x95\xce\xf9\x82\xec\x40\x51\x5e\x7e\xe9\x8b\xfd\x3e\x15\xf7\xfe\x28\x1c\xe1\xe6\x45\x94\x21\xba\x27\x76\x1a\x07\x4a\xf5\x72\xe4\x32\x38\xd8\x71\xf0\xfb\x43\x75\x0f\x3a\x7f\x3a\xca\x31\xe3\xd2\x11\xf7\x7c\xb1\x33\xae\x98\xa3\xe9\xa0\xf2\x6b\x96\x14\x7a\xd6\x59\x20\x3d\x04\xbe\x90\x94\xba\xea\x2e\xc7\x43\x29\x64\x2d\x7a\xda\x6f\xc3\xb3\x51\xf5\x36\xfc\x8c\x14\xf5\x2d\xf8\xc9\x41\x69\x5e\xb2\x5c\xf1\x0d\x4f\x5d\x8a\x5f\x27\x5c\xa8\xd7\xe0\xf7\xa7\x7f\x5b\xe4\xf3\xd2\xe5\xc2\x0b\x16\xf5\xc3\xf1\x92\xa9\xdb\x1e\x46\x3a\xe7\x0d\xed\xf3\xcc\xac\x83\x25\xe9\x90\x16\x32\x54\xa4\xb7\xe2\xb5\x23\x6d\x15\x87\xbf\x76\xa6\xae\x0e\xa6\x79\x42\x5a\xe4\x9c\xf9\x73\xea\xdb\x02\xb5\x44\x9d\x50\x4a\xc7\xdf\x52\xe6\xb0\x58\x29\x13\x6f\x1f\xe9\x1d\xc2\xe8\x82\x54\xaa\x4b\xf6\x16\xf7\xf7\xce\x82\x7e\x93\xba\x34\x85\x7b\x2a\x0a\xb4\x84\x54\x94\xac\x33\x7f\xba\xeb\x67\x0a\x6d\x63\xd3\xe6\x74\x5f\x1b\xd4\x16\x45\x07\x04\xf1\x9e\x3d\xff\x7d\x84\x88\x4b\x99\xdd\x6a\x35\x6d\xfc\xdc\x06\xb5\xfa\x9d\xc0\x0c\x75\xb8\x90\x6f\x25\x47\xfd\x8e\xe8\xa6\x3c\xe9\x4c\xa4\x33\x61\x56\xba\x23\x31\x1a\x13\x47\x37\xfb\xb5\x67\x05\x96\xa7\x3c\x65\x4a\x9a\x97\xce\xe9\xc9\x57\xcf\x80\x65\x97\x13\xaf\xe0\x26\x35\xe7\x4f\x4f\xad\xf5\x59\x65\x29\x4d\xce\xbb\xb3\xda\xaf\x73\x60\xb4\x38\xee\xff\x70\x42\xe2\x9b\x14\xa7\x23\x08\x1c\xf7\xbf\x3f\x54\xb5\x68\xce\xa7\x62\xa5\x33\xd5\x2a\x9b\x33\xdb\xc7\x69\x00\x7a\xe6\x06\x8b\xfe\x4a\x7f\xbc\x61\x4b\xfe\x94\xb8\x45\x6a\x36\x5f\x8e\x0d\x74\x8e\x9e\xd5\xd7\x0e\x7f\x34\x7b\xdf\xc0\xd9\xcc\x66\x06\x85\x5d\x9b\x19\x94\x79\x6d\x8e\xb3\xdd\xf3\xe3\xdb\x4d\xa6\x56\x67\x28\x0e\xf5\x13\x45\xa5\x18\x75\xe8\x18\xbf\xaa\x6f\x69\x51\x1a\xbb\xc3\x91\xc2\x20\xdc\xdd\xa1\x9e\x69\x57\x3d\x92\xa0\x99\x09\x99\x58\x3d\x86\xbf\xbf\x4d\xb5\x5a\x2f\x16\x01\x98\xc1\x81\x0d\xd4\xa4\x85\x3b\xeb\xde\xd0\xc2\x35\xa4\x44\x3e\x93\xe7\x67\xf4\x27\x07\x08\xc7\xe0\x1f\x07\x66\x8c\x63\xf0\x03\xcb\x9c\xc2\x20\x94\xab\x86\x72\x1b\x74\x9d\xa3\x79\xcd\x8f\x6e\x83\xee\x6c\x5b\xae\x58\x43\x7e\x45\xdf\x9f\x36\xa6\x44\x23\x9d\xdb\xd6\xf4\x59\x12\x8b\xad\xe7\x47\x8f\x99\x25\xf1\x7d\xe9\xc8\x8f\x3f\xb7\xe1\xde\x75\x44\x1a\x16\x8c\x70\x0d\xf7\x14\x54\x48\x31\x45\x09\xe5\x91\x74\x28\x66\xab\x41\x0a\xaa\x8b\xfc\xef\x46\x7c\x1d\xc8\x22\x3d\xbf\x3f\x2f\xcc\x3a\x87\xf2\xef\x4f\x99\x1f\xcc\xd5\xff\x20\xb9\xbb\x05\xde\xd3\x59\xe3\xab\x46\xba\xc7\xc8\x20\x75\x2b\xd3\x1f\xaa\xb8\x90\xde\x0a\x0f\x79\x72\x12\x17\x42\xe2\x7c\xc1\xc2\x9d\xfb\xf8\xa7\xd0\xf8\x8d\xd4\xa3\x9d\xf0\x54\xa3\x98\xf7\x70\xb0\xf1\x11\x33\xa7\xfd\xce\xd1\xf1\x29\x95\xae\xc7\x12\xea\xa8\x73\xac\x2f\x3d\xa9\x2f\x33\x9d\x35\x5b\xe6\x47\xbc\x0f\x28\xa1\x6e\x97\xd1\x51\xf3\xa7\x6e\x94\x66\xfe\xb4\x7e\xe0\x68\xd1\x7d\x03\x70\x3c\xbf\x5a\x9d\x21\x57\xf4\x52\xbe\x82\x77\x9c\x1d\x71\x05\xdb\xfa\x35\xfc\x4c\x45\x08\x96\xa7\x50\x2b\xc8\x46\x31\xa0\x02\xfc\xea\x04\x34\x31\xa8\x56\xe1\xfc\x2b\x48\xd3\x39\xc8\x5d\x83\x25\x3e\xec\x39\x38\x9e\x6f\xcd\x52\x2d\x1f\x33\xd2\x0a\x69\x30\x16\x92\x7f\x58\x26\x31\xd9\x03\x67\x0f\x5d\xd2\x3b\xf7\x0a\x3c\x72\x0e\x58\xac\xa5\x19\x71\x11\xeb\x3b\x60\x1b\xf8\x78\x60\x05\x22\x08\x79\x22\x7f\xa4\x19\xce\x0a\x69\x06\xf7\x62\xda\xe1\xcd\x49\x4b\xa9\x15\x72\x1a\x92\xb7\x00\x84\xdf\xd4\x83\xf6\xf3\x04\xbe\x36\xfd\xa2\xbd\xa3\x48\x06\x67\xc0\x74\x58\x8a\x8c\x0c\xf9\x37\x29\x4d\xc6\x2a\x3a\x90\xff\x38\xd2\x28\x36\x5b\x49\xa9\x1d\x2a\xe9\xbf\x97\x1c\xc7\xd1\xe0\xd4\x9f\x56\x7d\xeb\xe3\x04\xa8\x37\xe9\x2e\x85\xf2\x11\x30\xdd\x77\x32\xa3\xfa\x94\x6a\xbe\xf1\x1d\xe9\xb1\xfa\x5d\x91\xeb\x15\x28\xe3\xee\xd2\x05\x69\x46\x43\x83\x09\x95\x51\x72\xe4\x33\x28\xe3\x1a\x2d\xe4\xe5\x5f\x53\x93\x6f\x41\xe9\xbf\x31\x1a\x80\x61\xa6\x23\xef\x8f\xe3\x21\xed\xe3\xa1\x4f\x13\x47\x13\xbc\x25\x98\xc6\x91\xee\x3b\x10\xff\x95\xf9\x36\x4c\x23\x32\xda\x81\xf7\xc7\x81\xe8\xd7\xdb\xf6\x02\x2e\x63\x1a\xa5\x01\x8a\x65\x0a\xa5\x71\x77\x97\x6a\xe5\x4a\xea\xcf\x8f\xec\x3e\xc6\x0d\x2e\x97\xe3\xe1\x5c\xcc\x2f\x35\x79\x8d\x7b\xbe\x55\x45\x9c\xeb\x27\x6b\xca\x8a\x4f\x36\x79\x0f\xe9\x13\x76\x26\xdf\x2b\x9e\xe9\xc5\xed\x93\x71\xeb\xd0\xc7\x0d\xf8\x9c\xe8\xa6\xcc\xae\xcd\x0e\xac\x19\xc7\xe5\xef\x68\x11\xc5\xe5\x27\xd0\xc8\x4d\x29\xaa\xc5\x95\x4a\xdd\xd9\xbf\x91\x86\x73\xfa\xa2\x38\x4b\xe4\xf0\x97\x78\x64\x85\xbc\xa8\x5c\x82\xce\xc5\xe3\x68\x0e\xcc\x82\x5e\x8c\x2c\xdf\xb2\x62\x42\x30\x08\x88\x51\xe2\x6b\x59\x58\x32\x25\x85\x4e\x61\x52\xa0\x14\xc6\xe3\x95\x6a\x3c\xc4\xfc\x28\x96\x7e\x1a\x94\xf4\xc6\x60\x5e\xbe\xae\x62\xa2\x96\x4f\x8a\x9c\xab\x57\xd8\xa5\x42\x6a\x16\xb1\x65\x85\xd7\x18\x61\x81\x65\x40\xeb\x53\x8d\x9d\x79\x4f\x1b\xf6\xf8\xd2\x1b\x2c\x64\x8c\x81\xc5\xe1\x10\x0f\xe2\xc2\xbf\x84\x73\x6f\xd9\x25\xdd\xf3\xad\x61\x8e\xe9\x82\x93\xbe\xff\x5b\xaa\x49\x47\x02\x3b\x29\xc0\x38\xe0\xb4\x65\xe6\x61\x99\x97\x05\x02\x27\x7d\xc1\x37\xee\x6a\x19\xf6\x56\xf2\x9e\x1a\x8a\x46\x68\x93\xd4\xb3\x2e\x14\x7e\xe3\x1e\x4b\x81\xbc\x99\x90\x0b\xaf\xb9\x8d\xa5\xbc\x42\x79\x57\xf4\x90\x0a\x13\x8d\x8d\xa8\x97\xed\xc7\xc9\x36\xd8\x6c\xff\x91\x46\x96\xec\xb5\xb4\x61\x2f\xce\x95\x6f\xed\xc9\xa3\x7b\x7a\xda\x5e\xb9\x63\x9b\x1b\xb3\x02\x69\x6b\x74\x07\x77\x4f\x73\x13\xcf\x09\x26\xdd\x5a\x5d\xae\xd8\xa6\xa0\x1f\xe5\xc0\x1b\xbb\xb1\x52\x33\x6a\x39\x92\xb8\x90\x9d\x4a\x44\x50\x0b\x82\xc2\x89\x07\xb8\xa5\x9a\xdb\xb8\x2b\x38\x6f\x2f\x4b\x4f\x76\xd7\xd6\x53\x45\x6e\x88\xe6\x5e\xc6\xb7\xd2\xa2\x60\xce\x57\x49\x59\xd5\x97\xf9\x8f\xe5\x4a\x61\x57\x61\x87\xb2\x0e\x61\x77\x3b\x65\x41\xee\x5f\xfc\xea\x7e\xd6\x4c\x25\xf7\x14\x19\x96\xf8\x67\x70\x02\xdc\x3c\xbf\x40\x16\x6d\x02\x30\xcc\x94\x4a\xae\x72\xb8\xf6\xa3\xfc\x68\x85\xcd\x59\x1f\xa3\xc7\x50\x94\xfe\xfc\xc8\x54\xd2\x79\x69\x9b\x81\x08\xde\xdc\x73\xa6\x7f\x32\x77\x73\x44\x7e\x0f\x3a\xd4\x20\x0f\x19\xa2\x29\xbc\x54\x4f\x81\xa2\x07\x03\x52\x33\xf4\xd4\x33\x44\x1d\x50\x02\x82\xf7\xfc\xc8\x06\xeb\x90\xdb\x98\x63\x28\x23\xab\x2a\x94\xcf\xbd\xec\xdb\x37\xc6\x06\x7e\xa4\x37\x9e\x6b\x64\xde\x9b\xf7\xd4\x38\xbd\xfc\xb6\x7e\x1c\x23\xff\x7a\x12\xf2\xab\x4f\x3d\xec\xbf\xb7\x19\xea\x48\x45\x3f\x1d\x1d\xe8\x83\x4e\xd7\x80\x22\x67\x30\x2c\x30\xad\x30\x2c\x75\x1c\xff\x41\x78\xbf\x01\xf2\xa1\xa3\x0c\x53\xc9\xf5\x95\xde\xd2\xdf\x9d\x4d\xb5\x76\x36\xc3\xfd\x6f\x0c\x51\xc4\xcc\x1b\xc5\x93\x2e\x6d\x4b\x50\x36\x80\xdf\xcb\x5f\x83\xc5\x7f\xc3\x0b\x68\xb4\x37\xce\x9c\x7c\x6b\xb5\xce\x14\xd9\xf5\x0c\xae\x6e\x3a\x51\xc2\x04\xec\x3c\x3f\x4e\x18\x43\xf7\x3f\xc3\x4b\x81\xb1\xf9\xc1\xd2\x40\xfb\x7d\x1c\xe6\xb6\xe7\x4f\xb1\xc6\x19\xca\x86\x06\x9b\x47\x6f\xed\x6f\x92\x8a\x58\x62\xcc\xcb\x0f\x06\x24\xf2\x43\x6f\xe4\x6b\xee\xb7\xfc\x44\x3e\x97\x3b\x1f\xae\x1b\x7a\x48\x7a\x0f\x29\xaf\x48\x43\x0e\xe8\xd9\x7b\x1f\xb0\x95\x40\x2d\xe5\xe4\x6c\xf8\xe1\x58\x3b\x52\x28\xb1\x70\x86\x72\xe0\x7d\x3a\x00\xe0\x65\xe4\x4f\x31\x3d\x57\x68\x1f\x82\xd7\xb6\x34\xe9\xce\x86\xb2\x89\xcd\x9a\x39\x53\xc1\xe3\x5a\x05\xd3\x32\x32\xd7\x42\x96\x0d\x4c\x5f\xb2\x0f\xf0\x58\x74\x7e\x30\x1e\xd9\xfa\xbc\x8b\x07\x9a\x38\xf5\x2e\xbe\x8e\x33\x15\xfd\x44\xb9\xbb\x5f\xc7\x02\xe5\xb5\xe6\x04\xa9\x02\xb4\x7c\x0a\x7f\x52\x73\x85\xe4\x17\xeb\x03\x2b\xd9\x4f\xd4\x73\x45\x64\xb8\x49\xcf\x45\x03\x70\x13\x70\x54\xf3\x8b\xef\x77\xa6\xd4\xbb\x12\x97\xa9\x53\x07\xe4\xde\xc7\xaf\xce\xc7\x89\x6e\xd3\xab\xf3\x9a\xfb\x23\x83\x4f\xc6\xc9\xb8\xbf\x76\xda\x9e\xe9\xbd\x5c\x59\x80\x4b\xe7\x97\x85\x99\xf9\x75\x7a\x29\x1a\x24\x39\xb0\xf2\xab\xde\x07\x3d\x8d\x7e\x64\x5f\xa7\xcc\x1b\xb1\xa5\x22\x33\x2b\x5a\x41\x6f\xd2\x6b\x6e\xa2\xf4\x24\xfd\x24\x01\xc6\x4d\x8a\xab\x8e\x50\xb6\xab\xd2\x05\x19\x8b\xb9\x88\xca\x9b\xf4\x99\x42\xaf\x37\xcb\x64\xe9\x8d\x03\xe2\xcb\xa6\x9c\xf9\x53\x2b\x8a\xf0\xfc\xe1\x61\x65\x3f\xff\xbc\xef\xb0\x1b\x7e\x00\x36\x11\x8f\x3f\x2b\x71\x34\xfc\x6f\xfa\x7c\xcd\xb2\xfc\xd8\x85\x58\x53\x3f\xfc\x49\x2d\xa5\xae\xb7\x42\xa9\xde\xf8\xc9\x7e\xde\xa2\xa8\x5f\x47\xfe\x8f\x5d\xfe\x93\x16\x8f\x07\xeb\xb7\xe0\x3f\xba\xa0\x33\x7d\x26\x53\x00\x92\x3a\x50\x2e\xbf\x2c\x36\x4d\x2e\x27\x6d\xc8\xa7\x16\x78\xc8\x1e\x61\x44\x0a\xcf\x57\x27\xcf\xd0\x5b\xca\x96\xeb\xc9\x9f\x6f\x93\xe9\x90\x9f\x4d\xfe\x07\xcf\x8a\xe1\x24\x03\x45\xf4\x73\xa8\x02\x64\xb9\x9f\xac\x5f\x63\x84\x3c\x3c\x3f\x07\xa4\x72\xa6\x20\xa5\x02\x3d\x41\xfa\x09\x5d\x72\x9e\x80\x03\xe7\xcf\x57\x83\x27\x96\x85\xde\xa9\x57\xce\x59\x4b\x79\x09\x4e\xa0\x27\xcb\x79\x08\x86\x73\x70\xdf\x24\x73\xd2\x20\xa7\x4b\x0f\x48\x57\x14\xea\xe3\xc2\x13\xd2\x2c\xdf\x29\x9d\xe6\xea\x4e\xa9\xcd\xbb\x1a\x4a\xeb\x32\x42\x09\xe9\x68\x27\xf1\x7a\x4d\xda\xa4\x83\xd3\xca\xa5\x43\x7a\x6f\x5b\xd5\x2c\xc1\x49\x06\x66\xd0\x7a\x39\x28\xc9\x18\x54\xc4\xd1\xff\x29\x55\x34\xe6\xf4\xc0\x00\x21\x3b\xb4\xd7\xcb\xb0\xd1\x8b\x49\x60\x79\x0f\x7e\x64\x5d\x26\xa5\xb2\xae\x40\xf2\x2c\xc1\x40\xc8\x0f\x79\x53\x96\x61\x93\x39\xf0\xfe\xe4\x11\xc7\x7a\x39\xa0\x55\x65\x24\x32\xd6\x71\x4c\x2c\x83\x3b\x3a\x67\xa4\x75\x70\x20\xb7\x32\x5e\x87\x2e\xe2\x1c\x4c\xfb\xa6\xba\xfb\x97\x42\x16\x3f\xa5\x36\x51\xac\xa4\x96\x5e\x86\x8f\xfa\x54\xe4\x24\x1e\x96\x0a\xcb\xc0\x0f\x82\x28\xdf\xa4\xb7\xaf\x8d\x94\x75\xd8\xd1\xc6\xab\x93\x25\x8c\xc6\xe9\xb4\x13\x37\xc5\x72\x7b\xe4\x07\x93\xcd\x92\x1e\xc6\xe8\xa6\x4b\xdc\x9f\xcf\x14\x7a\x37\x1d\x29\x55\x88\x87\x96\xc2\xb7\xce\x8a\xf4\xde\x81\x53\xff\x25\x25\xe8\xd3\x05\xad\x44\x79\x28\x99\x54\x95\xbe\x6f\x61\x80\x32\x09\xde\x01\x8d\x61\x5a\x16\xf2\xa0\x7b\x9d\x38\x63\x0f\x28\x49\x58\x6b\xd4\xa5\x48\xfb\x05\x2c\xdd\x3a\x07\x1d\x1f\x90\xae\xf5\x84\x92\x06\x3d\xf3\xa3\x36\xba\x3d\x56\xcb\x38\x8b\x13\x64\xe5\x12\xb0\xa2\x5c\x30\xb1\x23\xed\x3b\xd3\xf6\x4d\x59\x64\x1d\xd4\xe3\xbd\x01\x67\x0a\x73\x71\x81\x26\x5c\xbc\x18\xc7\x38\x59\x8e\xa5\x8f\x4b\x67\x9d\x76\x8b\x3a\xe5\xd2\x4d\xda\x49\x36\xd3\x03\x6b\xcc\x93\xbe\x2f\x64\x4d\x83\x94\x10\x6d\x7c\x8b\x10\x85\x49\x04\x8d\x28\xbc\x07\x59\x27\xf7\xe4\x83\xde\xcb\x2d\x06\x5a\x60\x9d\x3e\xe0\xb4\x50\x66\xcc\xa7\x50\xf8\x79\xa2\x07\x2c\xbf\x2f\xc7\x63\xb2\x8c\x8b\xe8\x5c\xbf\xaf\x33\xb2\x90\xe9\xdc\xe6\xd3\x91\x8f\x8b\x4b\xf3\xb1\x36\x4b\xa3\x47\x4e\x5c\xc9\xb6\x07\x34\xe1\xf4\x28\x37\xa9\x15\xec\x29\xb4\xa8\x19\x7f\x0b\xf2\xe5\xe0\xfb\x9c\x6c\xd7\xb9\x59\x5f\xf7\xa0\xf8\xe4\x0d\x0f\x39\xc0\x3e\xe7\xa6\x55\xcc\x5f\x2d\x5f\xfa\xd6\x6f\xe4\x53\x36\xca\x05\x89\x8a\x4c\xa9\xa6\xb3\xa7\x50\xfa\xbd\xa5\xcc\x56\xac\x2d\x8c\x55\xb8\xa4\xb4\x65\xb0\x04\xdb\x28\x8e\xcb\x7b\x53\x32\xc3\xac\xed\x57\x61\xd3\xc3\xe3\x82\x74\x1c\x13\xc7\xdb\x32\xa4\x03\xc7\xc0\x2a\x76\xba\x00\x17\x5f\x42\x78\x9c\x24\x73\xb8\x49\xf7\x2f\xf5\xda\x17\xc0\xa6\x2f\x78\x56\x60\xc0\x82\xb7\x7d\xf2\x31\x77\x88\x27\xdd\xf7\xb1\x19\xf1\x21\x2c\x46\xe1\x22\x6c\x05\x7c\x91\x39\x5a\x5e\xc2\xfc\xa8\xdb\xd8\xc9\xa4\xd8\x1e\x76\x10\xb5\x9b\xb4\x8c\xca\x1c\x59\x60\xf4\x7c\xcb\x58\x68\xd3\x80\x60\x87\x93\xb9\xc9\x6d\x92\xc1\xe8\xe6\x67\x20\x27\x8b\xe4\xc9\xe0\x20\xb0\x0a\xcc\xc0\xd0\x08\x9d\x0f\x18\x63\x5d\x1c\x8d\x2f\x28\x5a\x1d\x90\x1a\xb7\x8d\xf0\xe5\x57\xf8\xb3\x3d\x7f\xfa\x92\x8f\x6a\x7d\xd3\x7c\xa2\x3f\x2e\xaf\x29\xe2\xd7\xb1\xf1\x31\xa5\x97\x9f\xe8\x47\x6a\x1a\x28\x71\x02\x23\x5c\x97\x5f\x0f\x3b\x91\xd3\x4d\xbe\xdd\xdb\x54\x24\x29\x0f\x14\x70\x5d\xf6\xad\xb6\x94\xda\x67\x02\x6a\x6f\x19\x00\x31\x78\x20\xb3\x8c\x80\xe0\x82\x62\x01\x72\x00\xb2\xb6\x2e\x8b\x06\x1f\x03\x97\x83\xde\x63\xcd\x2c\x63\x1c\x46\xa6\x48\xd6\xd5\x09\x9c\x6d\x5d\x68\x04\xcc\x83\xcb\x89\x71\x59\x09\x9e\xf7\xcf\x7c\x6b\x8c\x26\xa8\x8b\x75\xd9\x96\x3e\x5e\x21\x35\x11\x28\x85\x2b\x2b\x4c\x1f\xfc\xd2\x06\x9b\xe4\xf2\xe9\x68\x22\x1f\x15\xd9\xfe\x2c\x19\xca\x66\x52\xfc\xa7\xd0\x0b\x35\x16\x54\xcd\x23\x2a\xa8\xd3\x9f\xa6\xf0\x72\x87\x52\x5a\xdd\x4a\x87\x6c\xee\x7d\x4a\x65\xa3\x9c\xf9\x55\xb7\x34\xcc\xbc\x90\x0d\x67\x76\x4f\x45\x4d\xf9\x9c\xb5\x1c\x7e\xe0\x04\xa8\xb7\xaa\x75\xd1\x91\x56\x24\x1a\xb2\xc1\xab\xad\x36\xbc\xba\x4b\x11\x06\x6a\xf4\x76\x75\x2a\x22\x1e\xc5\x2d\xc7\x1b\x88\xad\xa3\x78\x03\x27\xb7\x3d\xab\xda\xd4\x1f\xa1\x86\x3b\x74\x41\x6a\xed\x67\x9a\xfc\xe8\x69\xc8\x84\xfa\xca\x87\x42\x5f\x75\x97\x33\x52\x66\xdb\x0f\xf3\xce\x00\x05\x1e\xb9\x2c\x41\x12\xce\x0b\x0e\xaa\xbe\xbc\x3b\x4b\xfb\x5b\x92\x2b\xf8\x40\xa9\x2c\x66\x0d\x9b\xa6\xc9\xed\x21\x33\x10\xa3\x85\xd1\xcd\x40\x0d\xce\x42\x87\x84\x18\x38\xb2\xf0\x8e\x70\xf9\xca\x52\x6f\x8f\x99\x25\x71\x92\x17\x20\x83\x8b\xd0\xfb\xed\xa9\xd7\x9b\x8e\x7d\x5f\x7d\x56\x43\xde\x29\xaa\x41\x25\xc6\xd1\x32\xba\x80\x3b\xde\xa5\x10\x07\x17\xc7\xb8\x65\x70\x01\xb7\xb8\xcb\x68\x82\xe8\x87\xe6\x6b\x9a\x49\x07\x1c\xd3\x80\xa4\x86\x37\xf9\xd1\xc3\x84\x50\x0a\xca\xc7\x3a\x0b\x5c\x50\x70\xad\xaf\x06\xbf\xb0\x1b\x9b\xf1\x80\x40\xfe\x96\xd0\x05\x03\x47\xd0\x6a\x28\x0f\x9f\x4f\x97\x43\x1c\x5c\x93\x51\x3a\x0e\xff\x35\xd3\x05\x7b\xf0\x47\x2a\xa2\x7f\xf4\x5e\x60\x83\x28\xb7\x66\xaf\xbc\x13\x99\xde\xa4\x3c\xb0\xf9\xd3\x9a\x04\x59\xdc\x6c\xad\x1c\x99\x3d\x07\x30\x3a\xb1\xae\x9a\x65\xd2\x4c\x3d\x5e\xfa\x33\x85\xb7\xc2\x8f\x2a\x69\x4e\x18\x99\x33\x8b\x70\x0a\xe5\xcc\xe4\x6e\xc5\x7d\x64\x2b\x18\x98\x10\x45\x62\x60\xc2\x38\xaf\x90\x8c\x9a\xf9\x43\x08\x65\xfe\x48\x40\x9a\x6a\xbf\x5a\x95\x7c\xfa\x93\xf3\xc9\x9d\x75\xdc\x84\x82\x45\xd9\x6d\x7f\x20\x2a\x1c\xce\x7f\x9c\xd8\xfc\x00\x0a\x78\x2d\xba\x3a\x87\x09\xd8\x84\x98\xfd\x11\x7c\x8e\xa3\xc0\x33\xa4\x45\x04\x7f\x22\x83\xad\xee\x28\xe7\x35\x14\x53\xe2\x61\x3b\xcb\xff\xd3\xa3\x69\x54\x26\xbd\xc5\xf3\x73\x84\xac\x6a\x84\x7a\x0c\x1b\x3d\x2f\x7a\xef\x04\x81\x69\x64\xd2\x83\x14\x5a\x37\x3c\x15\x59\x37\xb0\x64\x8a\x9c\x70\x72\x75\xbd\x3a\xca\x2a\x85\x72\xf0\x4f\x04\x9d\x63\xed\x9f\x47\x26\x65\x79\xcd\xf2\xa7\xc3\x9a\x84\xb2\x16\xc1\x74\x76\xd0\x05\x5c\xa1\xcb\x41\x17\xa2\x27\x0c\x1a\xe0\xe5\xc1\x52\xe0\xfd\x7b\xe2\xf3\xe3\x76\x67\xd3\xe4\x5b\x7f\xa6\x1e\x1b\xc7\xf9\x56\x7e\xbe\x0b\xd1\xe2\x58\xfb\xe7\x81\x11\xeb\x98\x0c\xe7\x81\x51\xa6\x28\x0c\x07\x77\x0c\xab\x1b\x0a\x7a\xa0\x1a\x8c\x1a\xc8\x89\x6e\xa0\x8e\xce\x90\xc5\x93\xdb\x21\x85\x67\x8c\x69\x35\x6c\xaa\x82\xa9\x5c\x82\x09\xd4\x08\x90\xe1\xdc\xde\x04\x50\x5b\x03\x0d\xc4\x99\x4a\x30\x81\x12\x4b\x10\x98\x00\xaf\x85\x97\x61\x02\x11\x03\x43\x46\x0e\x4f\x2e\xd6\xf0\xc3\x84\x79\xfc\x0d\x1b\x5f\x43\x70\x3a\x02\x6e\xac\x81\xb0\xc1\xee\x57\xf0\x87\xc2\x4b\x80\xe5\xd8\x0f\xbc\x00\x5e\x03\x0b\xa8\x86\x54\x70\xed\x11\x4a\x86\x34\x21\xda\x96\xc1\x05\xd9\x00\x0a\xac\x5f\xb3\x5b\xc7\x62\x59\x68\x64\x31\x5f\x4c\xc9\xb2\xc8\x67\xc3\x02\x18\x20\x08\x9b\xb3\xfd\x9f\xa5\x84\xf2\x56\xc2\xb6\x1b\xbe\xed\x69\x59\x43\xa1\xa0\x9e\x55\x72\xf6\x10\x76\xa8\x32\xfa\xd7\xa7\xb7\x7e\x9d\x7f\xd6\xfc\xe8\x45\x82\xa9\x9c\xd2\x7f\xc6\xa2\x30\xb6\xe0\x59\x41\xa9\xa4\xd2\x52\xad\x0f\x93\x29\x93\x28\x64\xd3\x0d\xfb\x31\xd8\x48\x06\x21\x70\x3f\xb2\x0c\x3a\xe0\x45\xeb\x72\xc4\xfc\x0c\x79\x46\x0e\x75\x48\x1b\x3f\xf0\xe2\x24\x53\xed\x05\x65\x21\x85\x03\x64\xda\xe3\x01\xe0\x6e\x4d\x0b\xa9\xe7\xcf\xb7\x2b\xca\xaf\x02\x44\xf6\xb4\xa2\xe0\x6d\x9c\x48\x67\x52\x9a\x9a\x92\x45\x0d\xa4\x6e\x4d\xfb\x2e\x41\xd3\xae\x89\x54\xc2\xfa\x56\x10\x89\x9a\x99\x9c\xb8\xac\x6a\x2a\xb2\xff\x08\x81\x31\x27\x4b\x4d\xa3\x1c\xbd\xb1\x3b\xa7\x03\x65\x96\x23\xa4\xf1\x8a\x34\x83\xac\x29\xfc\x8a\x59\xc3\x11\x5f\x31\x1d\x2a\x71\xc3\xd6\xc4\xab\x82\xd6\x9e\x7e\x86\x00\x53\xcf\xb0\x1b\xf5\xca\x01\x4d\xb4\xaf\x65\x40\x42\xbc\x4b\xd3\xd7\x42\xbc\xd3\x59\xd3\xf7\xcf\x30\xc2\x44\x5f\x3d\x7f\xba\x07\x0c\xd4\x37\x0c\x3d\x3f\x6a\x5f\xc3\xc3\x13\x9b\x26\xb3\x2b\xa6\x01\xfb\xb9\xd6\x80\xc1\x07\xa4\xa2\x85\x62\x56\x2d\xd4\x17\x3d\x10\x08\xe1\x04\x5d\xbf\x96\xe3\x2b\xda\x9f\xba\x04\x42\xb8\xa5\x66\x81\x6c\xae\x36\xa5\x92\x58\xec\xb1\x85\x88\x82\x15\x16\x46\x72\x1a\xe5\x74\x85\x1d\xba\x30\x73\xe0\x14\x45\x8e\x38\x79\x6a\xb5\x1c\x39\xa2\xcf\xfc\x69\xb6\x66\xdc\xcb\xba\x0d\x4e\x35\x4a\x81\x40\x5b\x6b\x99\x89\x38\x2e\x39\xe2\x3f\x11\xba\xd6\xe2\xe0\x85\x51\xb3\x1c\x57\x17\xa1\x6e\x58\xc2\x95\x79\x5f\x7e\xd9\x92\xa9\x5e\x66\x0b\x66\xda\xb0\x04\xd0\x16\x8b\x00\x14\x27\xf2\xd5\x21\x27\x5a\xe6\x40\x11\x27\x62\xe2\x18\x94\x30\x33\xe4\x4d\x1b\xcc\x9e\x98\x64\xb6\x87\xf4\xb8\xe8\x8f\xdf\xad\x9c\x3d\x15\x09\x22\x50\xfe\x8c\x4c\x7b\x7f\xfa\x71\xb5\x4c\x09\x07\xeb\x9e\x56\x24\x7c\xb1\x63\x36\xda\x2a\xd4\xa5\xb2\x03\x4a\xb3\x8e\x5d\xb7\xed\xd4\xce\xd4\x2a\x20\x45\xe5\xb5\xd4\xda\x70\x45\x87\xb2\xf9\xff\xfc\xb9\xf4\x69\x85\x92\xa3\x92\x2d\x45\xe4\x0a\xa0\x0f\xcb\xe0\x06\x62\x0f\x2d\x83\x1b\x3a\xc0\xde\xa5\xb0\xfd\x95\x58\x43\x4b\x51\xfb\x07\x37\x97\x4b\xc0\x87\x8b\x37\x0e\xcb\x31\xfc\xe7\x43\x79\x1c\x03\xca\x3c\x9a\x41\x5a\x51\xb5\x54\xa3\xf6\x11\xbc\xc2\x36\x74\x80\x2a\xcb\xd8\x06\xb0\xdc\x4b\x60\x86\xf3\xc2\x20\x15\x7c\xa1\xc4\x17\x2b\xf8\x42\x25\xf4\xe6\xda\xce\xea\x32\x52\x66\x6d\x82\xff\x69\x73\x52\xca\x72\x38\x60\x02\xea\x63\x3b\xca\xe4\x08\x65\x23\x04\x1b\x53\x91\x33\x2a\xd7\x30\x6b\x3b\x6e\x2f\x7c\xb6\xcd\x75\x88\xd9\x8d\xa5\x93\xb5\xc2\x78\xc6\x22\xd9\x40\x63\xa8\xd5\x0f\x15\x8e\x7c\x6a\xd3\x8b\x41\xfa\xa8\xff\x50\xcc\x63\xaa\xc1\xd6\xa2\x3f\x78\x87\x4b\xaa\xfd\xc9\x45\x6e\x86\x50\x54\x8d\x4a\x90\x98\x65\x60\x43\x1a\x11\xb0\xa1\x02\xd9\x5f\x0e\xb8\x71\x65\xaf\xbf\x7d\x5e\x47\x9e\x38\xfc\x06\x2f\x68\x97\x90\x0c\x95\x68\x08\xeb\x6d\x5e\x41\x79\x28\x7f\xc0\x79\x31\x91\x0e\xc5\xd1\x01\x5d\x2f\x27\x10\xb8\xb2\xd5\x1d\x6e\x23\x47\x57\x63\x13\xc2\x1e\xc6\x26\x9c\x80\xc7\xd6\x3b\xc9\xfa\xa1\x7c\x6c\x83\x3f\x15\x52\xe3\x24\xe4\xd7\x7a\x3b\x03\xff\x15\x8a\x61\xe5\x53\xed\x9e\x16\x0a\x96\x48\xb5\x16\xb1\xb8\xb3\xde\x1c\xa8\xd8\x86\x6f\x27\x02\xca\xc8\x62\xf0\x42\xfa\x62\x3b\x82\x9d\x30\x1a\x61\x92\xb7\x8f\x54\x68\x3a\xc1\x1a\xce\x13\xa4\xee\x12\xac\xa1\xce\xcc\xb4\x25\x53\x06\xea\xe0\x0d\xb0\xf7\x7b\x63\x81\xa7\x11\x1b\x39\x3d\xa4\x67\x0c\x1b\xd6\x30\x86\x33\xf7\x47\x1f\xfb\x75\x4e\xf6\xc6\xc7\x02\x07\xc6\x14\x8c\xa1\x64\xd1\x3e\xe1\x84\x09\x39\x74\x6b\x91\x1f\x15\xf0\x94\xad\xf9\xd1\xb1\x1c\xd8\xf3\xfa\xe8\x7e\x81\xa8\x09\xeb\x63\x01\xd3\xd3\xbe\xed\x52\xf8\x52\x68\x88\x92\x3d\xad\xb8\x1d\x95\xc0\x1c\x4b\x69\x08\xce\xe7\x47\x9d\xc4\x00\x7d\xac\x8f\x63\x63\x1d\xf0\x9e\xb2\x10\x94\x23\x1d\xc7\x86\x1e\xe3\x6f\xc9\x4d\x30\x10\xd6\xe0\x63\x61\xc4\xce\xfc\xa0\xae\x90\x5b\x1f\xee\x13\xf0\xff\x18\x28\xc1\x03\xde\xf5\xc1\x11\x3c\xf3\xad\x64\x35\x4b\xf2\xf1\x7d\x7c\x34\xc0\xc7\x9e\xe0\x5c\xa8\x7d\x7c\x82\x1a\x29\xb4\xc5\x73\xa5\x50\xbb\x61\x84\x92\x3a\xcd\xe5\x1b\xb8\x89\xa8\x84\x8f\x01\xba\x84\xf8\x5d\x4e\x35\xc0\xe3\xdf\xe5\x48\x21\xd1\xfd\x1f\x6e\xf8\xd8\xe5\x1f\x34\x5f\x66\x57\x4e\x1f\x9e\xe6\xac\x8f\x9f\x04\x10\xc5\x71\x7d\x71\xfe\x71\x42\x56\xce\x80\x12\x27\xa2\x73\x06\x10\xeb\x76\x7d\xd1\x4a\x35\xa4\xe4\x05\xf3\xf7\x35\x5f\xc0\x41\x0e\xf8\x71\x02\xb3\x5e\x5f\x0b\x13\x46\xf2\xc5\xaa\xc1\x4f\xf1\xe5\x74\x75\x85\x94\x6c\x63\xe6\x85\xce\x28\x05\x1e\x12\x38\xa3\x70\x1d\xbe\xbe\xf6\xfb\x1f\x48\x69\x62\x81\x64\x5c\xb6\x63\x1e\x4a\xc6\x08\xce\x2b\xa1\x38\x2a\xe8\xd2\xf5\xe5\xe0\x85\x1f\x47\x41\x43\x2a\x40\xdd\xf5\x35\x0b\x8d\xfc\xa8\x5b\xcc\xe7\x47\x8d\x8a\x2d\xe4\x24\x03\x93\x10\x44\xeb\x9b\x10\x03\x50\xb6\xa0\x91\xd8\x8e\x1f\x92\xad\xf8\x35\x9a\x86\x20\x44\xcb\xe1\x43\x78\x73\xb4\x8c\xd9\xb8\xa2\xd1\xbf\x1c\xc2\x10\x41\xce\x23\x50\x60\xb6\xaf\x2f\xa4\x80\xaf\xaf\xaf\x39\x66\x86\xf2\x36\x9a\xf9\xd3\x93\x87\xf0\xff\x6e\x8b\x03\xc6\x69\x54\xce\xf9\xfc\x6a\xff\x06\xf3\xae\xf0\x21\x67\x14\x9e\x12\x09\x54\x40\x7f\xeb\x67\x60\x15\xf8\xf4\xf5\x1b\x7e\x5c\xd6\xa1\xd4\x05\xa2\x77\x2e\xc5\x16\x69\xaf\x87\xf2\x85\xde\x84\xf2\xd9\x0a\xd6\x13\xfa\xe3\x8c\x28\x71\x96\x81\x41\xf8\xd5\xf5\x83\x11\xf3\xa9\xd6\x6f\xa6\x49\x73\x9e\x07\xfd\xf3\xad\x66\xe1\x98\xfa\xf3\x69\x8a\x50\x9e\xeb\xe7\x20\x02\xb1\x8f\x88\x26\x12\xb3\xc7\x49\x08\x06\x71\xd0\xd7\x0f\x2b\xa8\x85\xfc\x68\x2c\xf4\xc8\x4e\x1e\x78\x48\xf0\x8f\x92\x2b\x12\xa1\x3f\x5a\x6e\xd8\x85\xfe\x68\xaf\xf4\xc0\x20\x3b\xc2\x36\x2d\xa1\x3f\x1a\x08\xa7\x05\xfa\x83\x97\x9d\x4b\x70\x8f\x8b\x88\x65\xcb\xa8\x8d\x51\x38\xff\xfe\x8c\xf5\x0f\x94\x40\xa8\x8d\x96\xbb\x1f\xe5\x16\x68\x71\xe8\x2b\x42\x48\xcb\x4d\xcb\xcf\x48\x7f\x02\x59\xad\x1f\x2e\xe1\x2b\xa5\x36\x4a\x2c\xcd\xb6\xc2\x7c\x34\xce\xdc\xdb\x51\x3e\x3a\x6f\x11\xf6\x0b\x4e\xe8\x21\x8b\x3b\xf8\xb7\x0f\x65\xbf\x90\x49\xd6\x15\xfb\xe5\xdb\x29\xb4\xc3\x56\x14\x90\xc6\xab\xe7\xfd\xe2\x72\xd2\x42\x73\xbf\xf0\x28\x5f\x29\xb5\xc9\xd7\x53\xaa\x55\x3a\x42\xc9\xae\xe7\xcc\xbb\x5f\x8e\x3b\x43\x9c\x88\x2d\xe4\x48\x03\x16\xb6\x05\x1c\xb9\x08\x17\xb3\x15\x4e\xa4\xbd\xf2\xe3\xcd\x55\x0d\x20\xd0\x56\xde\x82\xc6\xc5\xd0\x7e\xf9\x8d\x00\xf8\xf0\xfd\x82\x6b\x2c\xb7\xb7\x92\x13\x74\x9e\x6e\x6d\x25\x27\x68\xb8\x23\xf7\x0b\x75\x55\x99\x3f\xe4\x09\x53\xb2\xdc\x01\xaa\x41\xba\x58\x79\xed\x97\x11\x45\x18\xe1\x5b\xa8\x92\x86\x2b\x75\xbf\x60\xb1\x8b\x0e\xdd\x4c\xd5\x78\xd4\xba\x15\xa4\xa4\xe1\x0b\xdc\x2f\xec\xe5\x9e\x42\x5f\x30\x5d\x34\x8a\x31\x54\x19\xe8\x36\x72\xa4\xd0\x28\xd6\x50\x67\x30\x9b\x2e\x31\x47\xe6\xb9\x93\xf9\x93\xec\x71\x2a\xc4\x9b\xd2\x1a\x9d\xa9\x47\xd9\xf1\x4a\xca\x6e\xfb\x22\x7d\x3f\xcc\x7e\x16\x2e\xfb\xc0\x8b\x78\x85\xd4\x0c\xd9\xfd\xb2\x0f\x24\x8f\x77\xc0\x3e\xe0\x28\xcb\xcd\x7d\x20\x4f\x8e\x90\x6f\xfd\x5a\xa0\xec\xb9\x19\x50\x5a\x23\x1b\xe9\xfb\x98\xee\x01\x65\x28\xb2\x4a\xf7\xcc\x16\x67\x28\xaf\xd1\xa0\xd6\xa9\x3d\xc8\x6c\x39\x7c\xc9\x28\x47\x0a\x87\xfe\x9c\x50\x96\x43\x35\x6d\xda\xdc\x18\x8c\x6c\xc2\xc4\x21\xd5\x3f\xf8\x54\x41\x4a\x1a\xb0\x95\x7d\xf8\x86\x82\x08\xad\x1b\xac\x0c\x0a\x73\x0b\x2b\xd3\xb2\x7b\x0f\x4b\xa9\x42\x87\x30\xb7\x6b\x2a\x9a\xae\x88\x1e\x2d\xcd\x57\xa1\x07\x98\xd0\x0f\x69\x0b\xb1\x32\x47\x86\xce\x14\xb8\x91\x94\x0b\x1c\x33\x36\x81\x49\x80\xcd\x6f\x05\x26\x29\xc0\x41\xb6\x12\x32\x34\x1e\x07\xed\x83\x8b\xad\x87\xd4\xbe\xe7\x3a\x7e\x1f\xf8\x9b\x47\x9a\xf1\x81\xbe\xa6\x54\x28\x76\x58\xcc\xc0\x1b\x9e\x85\xee\x93\xac\xc3\x07\x94\xb8\x08\xf6\x3b\xc3\x36\x03\xd2\x56\x17\xeb\xad\x08\x27\xa5\x3e\x85\x7a\x00\xf0\xca\x9f\x8a\xbc\xda\xd3\x22\x76\x1f\x85\xe6\x22\xab\xff\xad\xf8\x26\x05\xaf\xf0\x3e\xb9\xa3\x78\x0a\xab\x82\x12\xbf\xa0\x94\x41\xbe\x85\x92\x0a\x4f\x8b\x92\x34\x25\xe3\x30\x9c\x98\x10\x5b\xdb\xb8\x9b\x23\x14\x48\xc6\x42\xcf\x97\x04\x1f\x92\x46\xd1\x4b\x1a\x2f\x51\xf6\x09\x93\xfc\x6d\x8a\x6f\x47\x36\x21\x02\xc6\x76\x60\x93\x51\xce\x90\x7e\x22\x3a\xa1\xc4\xef\x68\x95\xd3\x42\xe8\xca\x97\x12\x07\x25\x5f\x7e\x55\xc6\x6c\x70\x3c\x4b\x35\xdb\x1d\x67\x54\xdb\x1d\x67\x71\xac\x01\xd1\x12\x0a\x69\xd2\xc0\xfe\xef\x13\x0f\x74\x4d\xad\x96\xd1\x93\x21\xfb\xc1\xc1\xcc\x2c\x5b\x3c\x5d\x69\x52\xf7\x04\x35\xd5\x5a\x83\xf8\xec\xbd\x8b\xe5\x13\xfa\xa4\x0c\xf5\x07\xa1\x5c\x86\x2d\x11\x04\x89\xc0\x39\xed\x55\xf3\x23\x8c\x35\x20\xd5\xbf\xe7\xd3\x8f\xff\x4c\xa1\xe0\x18\x57\x0a\x7d\x5a\x64\xd9\x05\xaa\x69\x20\xe2\x77\x30\x35\x6c\xb6\xe2\x57\xb1\xc7\xa4\x47\xd3\x5e\xcb\x92\xd2\xfb\x20\x90\x49\x28\x98\x46\x2d\x35\x69\xc1\xd8\xa6\x05\x01\x65\x5b\x6d\x3b\xa4\xca\x24\x58\xd9\x56\x0c\x95\x06\xd2\x7e\x17\xbc\xd0\x08\x7b\x85\x54\x29\x18\xd4\xdb\xe0\x1c\x22\xf0\xed\x62\x97\x34\x7a\xbe\x98\x0f\x61\x59\x80\x3a\xdc\x54\x6c\x01\x75\x0a\x56\xfa\x2e\x9c\xff\x27\xdd\xb3\x0b\x1a\xef\xc0\x16\x36\xa7\xbd\x32\xb7\xe6\x92\x4c\xc9\x16\x7b\xa7\xe7\xb6\x98\x0b\x42\xb0\xd8\x6c\xca\xe2\xfa\xba\x0b\xe5\xa3\x40\x28\xed\xd5\x98\x4a\xe0\x5d\xa9\xd4\xde\x4d\x37\x78\x71\xf5\x75\x41\xa9\xf9\x16\xca\x36\x52\x09\xa9\xc8\xfc\x2c\x88\xb3\x6c\xc4\xe6\xb8\x6c\x3b\x23\x25\xae\xe1\xe6\x3b\x94\xe2\x9d\xc2\x2f\x0a\x89\x52\xa2\x1f\xae\x30\x08\xa4\x11\x59\xcc\xd4\x85\x7f\xd9\x96\xf4\xbe\x1c\x28\x82\x67\x4b\xfb\xf2\x21\x1d\x3f\xd3\x56\xfe\x8d\x93\xb7\x75\x5b\x11\x53\x1a\xf8\xf0\x7d\x71\x32\x9b\x21\xbb\x80\x2a\xf9\x74\x68\x20\xa9\xc6\x98\x11\x66\x47\xbc\xd3\x32\x10\x79\x92\x80\xf4\xef\xcb\x8c\xd4\xd2\x39\x33\x12\x22\xf5\x42\x0d\x22\x27\x0d\x09\xe2\xd1\xec\x76\x52\x8f\x96\xde\x38\x77\x70\x4d\x19\xa3\xa2\x73\x8b\x9e\xa7\x1e\x2b\x5b\x58\xf2\xf2\xed\x19\x0b\x7b\x39\x9f\x64\x3a\x04\x40\x68\xa6\x50\x92\x0a\x49\xad\x08\x29\x57\x14\xf1\xe5\x9c\x06\xc8\x42\xa3\x85\x7a\x44\xec\x65\x8e\xcc\x2c\x13\x22\x85\xf6\xad\x02\xd3\x57\xb9\x91\xae\x4c\x8f\x9c\x8b\xc4\x15\xdd\x17\x86\x7b\x66\x60\x8b\xe9\xfb\xdf\xce\xef\x4d\xd8\x13\xb0\xb9\xdb\xc8\xa1\x0b\xf7\xcf\x16\x74\xe8\x2c\x6c\xc3\xea\xa0\xea\xaf\x50\x97\x26\x3d\x3f\x9a\x23\x06\x94\xf8\xf5\xa9\xc5\xf6\x0e\x12\xbf\x3a\x17\x21\x42\x4b\x40\xa1\x06\x5a\x7f\x3b\x06\x0a\xaf\x47\x76\x75\x64\xd8\xf6\xb4\xe1\x49\xee\x50\x1a\xe4\xa0\x1a\x7b\x19\x10\xea\x20\x8a\x78\x9b\xb1\x6b\x78\xb9\x42\xfa\x8e\x19\x7b\xb0\xda\x38\xc3\x48\x27\x24\x0a\x2f\x37\x76\x45\xda\x3d\xa5\xb6\x1d\xaf\xb4\xa3\xce\x8f\xd4\x6b\x18\xdb\x95\x5f\xe1\xd9\x7c\xfb\xd5\x46\xa0\x51\x31\x29\x57\x63\x5b\xb0\xa2\x03\x37\xdf\xae\x36\xf7\xd3\x3d\x9b\xfb\xbc\x1d\xd9\x0e\x7c\xd2\x32\x5f\x8b\xde\x32\xb5\x56\xad\x3d\x85\x74\x96\x45\x31\x8f\xc2\x32\x95\x23\x24\xaa\xad\x3a\x45\x61\x16\x05\xae\xe4\x47\x6b\xd3\xcc\x1e\x01\x4c\x58\x5b\x39\x16\xb2\xd9\x2a\x62\xf2\x95\x42\x59\x8e\x23\x94\x61\x14\x4f\xad\xde\x5d\xaf\x54\x2b\x4d\x8b\x09\xe7\x70\x26\x83\xac\x2e\xbb\x81\x2d\x81\xf5\x1a\xc6\x3f\xf2\xb0\x01\x63\x87\x87\x9d\x65\x65\x72\x7b\xb8\x1b\x17\x31\x4c\x4a\x73\x78\x9e\x52\xf3\xaf\x6c\x83\x91\x6f\x61\xb8\x0a\x69\x16\xa3\x55\x3f\x3b\xc1\x9d\xbe\x9b\x4f\x85\x58\xf8\xcd\x32\x90\xd7\x19\xbb\x61\xe2\xa3\x8b\x1d\xd4\x84\x17\x49\xdb\xa9\x54\x78\x47\xb4\x1b\x3c\x34\xa0\xe4\xa0\x86\x71\x9b\xf1\xd4\xd9\x80\x0d\xbb\xae\xa5\x91\xbb\x7b\x00\x21\xb7\x92\xae\x0c\x5e\x11\xed\x66\x05\x8a\x60\x6b\xe6\xa8\x99\x2f\x8d\xf1\x63\x3f\xb6\x45\x5f\xf3\xad\xb9\x06\x95\xd9\x6c\x9f\xa1\x24\x94\xad\xe5\x8c\xb4\x68\x32\xfe\x73\xa4\x68\xe6\x2f\x04\x54\xb3\xe2\x45\x94\x0a\xab\xd4\xc0\x61\x6e\x61\x95\x12\x8c\x6b\x3b\xa4\x0a\x2f\x3e\x77\x03\x57\xdd\xf2\xa3\x1e\x92\xa6\x33\x96\x88\x33\xd5\xd8\x2c\x40\x9d\x37\x07\x50\x9e\xa9\x75\xa8\xc5\xd4\x6a\xbf\x41\xcb\xa7\xd2\xa0\x23\x94\xd2\xd4\x5f\xf9\x54\x8c\x98\x79\x94\x3a\x3f\xc2\x2d\x3a\x91\xc6\x64\x21\xbe\x0a\xaf\x77\xb6\x21\x4f\x3d\x56\x67\xb7\xe3\x82\xee\x18\xc5\x44\xd8\x8f\xdd\x1d\x57\x87\x65\xed\x80\x07\xd8\xf0\xc6\x34\xf5\xff\x10\xb5\x70\x77\xc7\xaa\x27\x92\xe7\x16\xfc\xa9\xe0\x78\xdd\x82\x3f\x9d\x17\x27\x52\xe1\x9d\x1a\xd7\x78\xbb\x3b\x92\xee\x4c\x99\x39\xa0\xa5\xd0\x53\x47\xcf\xe1\xdd\x96\x5a\x97\xfc\x95\xa1\xa4\xa5\xd1\x82\x42\x46\x35\xa0\xae\x5b\xc0\xa8\x06\x02\x74\x0b\x09\x55\x9e\xe9\xd0\xa9\x83\x5b\xa3\x0d\x10\x8a\xb7\x25\x5b\x40\xa8\xa3\x94\xb4\xa1\x53\x08\x78\xd5\xdd\x1d\x2c\x9f\xc0\x9c\xbb\x63\x1a\xb6\xd4\x7b\x9f\x8a\x80\xcf\xed\xee\x30\xce\x57\xca\x96\x5b\x49\x87\x6c\x28\x8e\x94\xbe\xb5\xb4\xe9\xd1\xc7\xdf\xb2\x5e\x46\x78\x23\x08\x3a\xbe\x10\x84\x46\x97\xb0\x04\xbd\xba\x15\x5b\xe5\xca\x09\x8e\xd8\x2a\x38\xa6\x77\xdf\x74\x21\xdf\x6e\xfd\xe9\x6f\x87\x2f\x7b\xb8\x4c\xdc\x0a\xae\x72\x10\x03\x6d\x2b\x7c\x4a\x39\xd9\x15\x42\x49\x35\x90\x9c\xdb\xc1\x53\x2e\x5c\xd3\x5b\xb0\xa8\x06\x4a\x70\x0b\x15\xd5\x80\x75\x6e\x81\xa2\x1a\x70\xb9\x3d\x26\x0c\xcc\xa7\x78\x34\x46\x48\x8d\x2b\xdd\xf1\x4b\x49\x3c\xe5\x7b\x84\x65\x42\x6e\x9d\x54\xf3\xe7\xdb\x23\x99\x90\x96\x62\x2d\xa4\x6e\x0b\x66\xea\x95\x10\x63\x51\x06\x6e\x30\x76\xe6\x30\x9b\x20\x28\xc6\x72\x87\x52\x56\x44\x9d\x50\x4d\x80\xde\x50\xee\x1d\xfb\xc2\x61\x54\x7a\x4e\x87\xc3\xc1\xed\x32\x6a\xa3\x13\x0a\x0c\x35\x58\xf9\x33\xbf\x0a\x23\x35\x43\xd9\x29\x86\x61\x23\x50\x54\x03\x20\xba\x87\xf9\x00\x95\x3e\x8c\xfb\xe7\x29\xcc\x56\x88\x95\x06\x7a\x6e\x2b\x5d\xce\x5d\x4f\xfe\xec\x2a\x64\x0e\x74\x5c\x05\x59\xb7\x05\x98\x6a\x00\xba\xf6\x30\xc7\xb0\x33\x06\xa2\x2a\xff\xe9\x74\x8a\x9e\x33\x42\xea\xe4\xb1\xcd\x56\x60\x96\x42\x7c\xf3\x2d\x50\x54\x03\x9f\xb7\x03\x8a\xc2\xc6\x99\x78\xcf\x7a\xfe\x6c\xfa\xf6\x05\xe5\xa3\xe1\x0c\x29\xd6\x8b\x9f\x4b\x71\x59\xce\xfe\xb4\xb2\x7d\x76\x85\x12\xe4\x1a\x2d\xe3\xe4\x39\xe7\x99\x4f\x1d\xe2\x93\x37\x1e\x7b\x3a\x0a\x38\x03\x9b\x3a\x7b\xf0\xe8\x7e\x1b\x23\x05\xfa\x78\x0b\x22\xd5\x08\xbc\xb6\x15\xb1\xe5\x0c\x26\x7d\x4f\xcb\x23\xac\xc9\x69\x79\x94\xee\x4c\xe6\x87\x36\x6e\x4e\xeb\xc4\xbd\xdc\xd3\x8f\xfa\xb8\x96\xda\x20\xa2\x72\xfc\x9b\xcb\x33\x92\x42\x2f\x1e\xbd\x93\x13\xff\xf8\x0f\xcf\x32\xb7\xb0\x53\x0d\x70\xd2\x16\x74\xaa\x47\xac\x09\x3a\x55\x88\xac\xb4\x27\x5e\xb5\x19\x12\x2e\xa4\x3b\x7e\xb6\x84\x64\x9d\x60\x66\x1e\x92\xc5\x0c\x69\x7f\x30\x36\xd8\x34\xab\x61\x89\x4c\x33\x57\xe6\xf9\x3e\x53\x34\xd0\x47\x5b\xc0\xaa\x06\xee\x62\x4f\x63\x64\x0a\xfb\x40\xc0\xaa\x06\x60\x62\x3b\x9c\xcb\x0c\x23\x0a\x4a\x75\x46\x76\x2e\x73\x1e\xba\x56\x78\xa8\x47\x81\x2f\x79\x62\x01\x04\x6c\xf2\xe8\x70\x8b\xb7\x15\xa4\xa5\x45\x11\x2f\x5d\x3d\x87\x81\x05\x9c\x6a\xdc\xdb\xef\x85\x18\x9b\x29\xd4\xb6\xc4\x08\x5e\x93\xa5\x0c\xa9\xa5\x64\x9e\x17\x70\x70\xf8\x6e\x61\xec\x33\x59\x8e\x55\x40\x10\x5d\xa7\xf6\x6f\x71\xaa\xbd\xbd\x4b\x61\x6e\xdf\xf1\x0f\x32\x4f\x90\xe8\x7f\x14\x2c\xef\x37\xee\xc9\x87\xf4\x5c\x22\xba\x40\x00\xf0\x34\x66\x7f\x70\x12\xb0\xc1\x3e\x8e\xbf\xcd\x7d\xd7\xfe\x58\x0f\x60\x1d\x7d\x1c\x30\xfd\x29\xb3\x7b\x0a\x63\x45\xb7\xec\x8d\x1b\xb6\xfd\xb1\x35\x80\x89\xfc\xb1\xc2\xc7\xb0\x55\xa4\x82\xbb\x7f\xf4\x00\x61\xce\xbe\xf9\x4c\x7a\x0f\xe9\x8b\x0a\xae\xc2\xf6\x07\xed\x9c\xee\xfa\x7c\xcd\xa3\x90\xfd\xf1\x56\xe9\xf9\x56\xe1\x99\xd9\x38\x64\xd5\x78\xbe\xb4\xca\x18\x29\xfc\xea\x42\x90\xee\x6e\x87\x90\xa4\x8c\x67\x7a\x23\x85\xb6\x7a\x18\x8b\x42\xa4\xc7\x71\xa4\x8b\xf3\x72\xb1\x4a\x1f\xaf\x20\x62\x4e\xb7\xe8\xc1\x12\xef\x0f\xcf\x6b\xd0\xdb\x5f\xb0\x82\x30\xb1\xb2\xf2\xb7\xdc\x50\x7d\xcd\xd2\x3d\x9f\x2a\x4c\x25\x4a\xea\x6b\xe1\xc9\x3e\xd1\x05\x7b\xcb\xc5\x8d\x72\xf2\xb7\x5c\x0e\x29\xa3\x46\x01\xb1\x4f\x86\xfe\x49\xd0\x7f\x67\xe8\x6f\xb9\x9a\xd1\xe5\xfb\x3d\xab\x69\x51\x51\x7e\x9e\x36\xe0\x1f\xaa\x45\xc5\x23\x3a\x7c\xfb\x5e\xb9\x64\x74\x4a\xfe\x96\x6b\x9b\x2f\x17\xa4\x6c\x1c\x67\xe4\xef\xf1\xb0\xea\x1a\xbd\xe5\x12\x85\x64\x1b\x65\xa6\x50\xe2\x01\x96\xf9\x5a\xd2\xc2\xe0\x5f\xbf\x97\x86\x0f\x1d\x19\x61\x12\x39\xd9\xf9\xf8\x5b\xf4\x07\x71\x12\x5e\xf9\x11\xee\x61\x12\xf4\x8e\xa2\xa3\x22\x1c\x26\x01\x20\xaf\x93\xf3\xdf\x9f\xa6\x56\xb3\xcf\x4c\xa9\xfb\x13\x4a\xd2\x0a\x7e\xf9\x5a\x6b\x67\xa1\x7d\x91\x75\x96\xff\x60\x7c\xeb\x4e\xbd\xe5\x7a\xe0\x6b\x6e\x82\x61\xbf\x16\xac\xe1\x17\xdf\x4f\xf0\xe4\x63\xeb\x82\xfd\x88\x36\x71\xb6\x8e\x9a\xab\xc7\x1f\x56\x20\x86\xba\xee\xdb\x8f\x02\x3b\xfd\x90\x06\x33\xa4\xd5\x1d\x52\xf9\x67\x53\x6f\xa6\x22\x21\xf5\x30\xac\x94\x74\xe3\x6e\xe5\x82\xd4\xf9\x9a\x38\x12\xdb\x21\x14\x72\xe4\xfb\x99\x2b\x60\x83\x9f\x45\x05\x62\x58\x17\xe1\x37\x53\x74\x48\x3a\xcf\xb7\x72\xc4\xf1\x62\xd6\x09\xf8\x5b\xdc\x82\x3f\x27\x8e\x03\x2e\xb4\x7f\x5c\x18\xbc\x52\xaa\xc9\x9c\xf9\x93\x81\x31\x14\x2b\x55\x38\x48\xd9\xf9\x0f\x1e\x03\x39\x3b\xff\x5d\x0f\x7f\x3a\xb6\x39\x96\x9e\x2f\xc6\xc7\x05\xbb\xfb\x62\x3c\x3e\x3b\xe5\xc3\x68\xf1\x11\x39\x1d\x46\x8d\xc7\x55\xd1\x0c\x4a\x2c\x19\x5d\x8c\x17\xa3\xdf\x87\xd3\xea\x17\x3f\xcb\x1c\xce\xaa\x7f\xd9\x51\x7c\x53\xa7\x6f\xa6\x26\xa4\x82\xed\xcb\x42\xbc\xa9\x4b\x2d\x16\x28\x65\x50\xd4\x8a\x0c\x27\xe0\x6f\xe7\x53\xa9\xef\x04\x66\xc8\xe1\x71\xe4\xdb\x65\x32\x15\x6d\xfd\x9a\x42\x31\xdb\xd3\x1f\x8b\xeb\x99\x4f\xcd\x06\x47\x4a\x2d\x2c\x2e\x7e\x95\x15\xe6\xa7\xd3\xc3\xe9\xfa\xef\x6f\xe9\x83\xf4\xa8\xdd\x35\x37\x65\xf3\xf6\x0a\x79\xf9\x5b\x9a\x71\xd0\xcd\x23\xd5\x36\x77\x37\xdf\x76\x9d\xf7\xe9\x82\x4e\x90\x8e\x1a\x31\x06\x81\x17\xfc\x0e\x67\x38\x9d\xff\xdd\x7b\x2a\x12\x43\x9d\x2f\xe6\x76\xd1\x66\x0a\x1d\x58\x3d\x73\x2d\x57\x98\x43\x4c\x8c\x41\x74\x85\xeb\x45\xbd\x8e\x94\x72\x5e\xd4\x64\x5f\xd8\xf5\x62\x7d\x6d\xba\x37\xc6\x8d\x48\xa8\xd4\xb4\x7d\x71\x72\xd1\x61\x45\x4f\xb7\xda\x1a\x4e\xe9\x7f\x17\xa6\x5e\x7b\x1d\x26\x5d\x0a\x8b\xd1\x09\x99\x5b\x67\xa6\xd7\xd1\x8d\x5e\xe1\x31\x81\x70\x8c\x5e\x1b\x4e\xf7\x7f\xf7\x21\xe4\x4f\x7f\x9a\x3a\x90\x18\xf5\x84\x64\x9f\x0d\x48\xba\x5f\x20\xc5\x66\xcc\x99\xae\xc2\xdb\xc9\xaa\x1d\x5e\x61\x26\x50\x77\xd6\xa7\xaf\x3b\x87\x13\xf6\xb7\x93\xae\xeb\x56\xba\x9d\xf4\xf5\xf0\xb5\xce\x4c\x2d\xee\x1c\xcd\xeb\x40\x57\x5f\x0f\x79\xc8\xbd\x45\xcf\x97\x1b\x9c\x50\xf4\x94\xbe\x2d\xb8\x26\xa5\xea\xc0\xf9\x82\x32\x9f\xa4\x77\x76\xb8\x17\x1a\x91\xb3\xe9\x3e\x5a\xfc\x21\xc3\xef\x4f\xe1\x71\x1a\x91\x32\xf0\x99\xe9\xa6\x8a\x28\x3a\x6b\x4f\x54\x3a\xb0\x2d\xbe\x1e\x52\xd3\x7a\xd2\x75\x05\x33\x37\x7c\xf7\xa6\x24\x67\x4e\xba\x6a\xdb\xf0\x3a\x52\xf8\x51\x21\xf3\x6a\xfc\x43\x4b\xfb\x9a\xc9\xd3\xb3\x7c\xe2\x03\xad\x0d\x52\xb2\xe4\x1c\x50\xb7\x90\x36\xe8\xe8\xa6\xdc\x9b\x09\xa5\x18\x33\xa3\x42\xf9\x04\x30\x53\x8d\x92\x67\x8e\x03\x6a\xab\xfd\x54\xaa\x74\xa7\x23\xd5\xb0\x17\xe9\x8e\xdc\x9f\xb6\x0a\x6f\x4a\xa9\xd3\x27\xd5\xf8\xf9\xdc\xb8\xa0\xa6\x47\x9c\x42\xf1\x0e\x3b\x46\x17\xd7\xcd\xd6\xee\x4d\x79\x9b\x1e\xa9\xf5\x23\x61\x4e\x57\xa7\x65\x17\xeb\x41\xf8\x88\x4c\x80\x5d\x48\x99\x00\xdb\x11\x17\x8c\xad\xcb\xe9\x72\xd5\x7c\x6a\x41\xc1\x2a\x9f\xf6\x15\x5c\x6c\x09\xe7\xd9\xf0\x4b\xea\x9b\x5a\xba\x4b\x62\xcc\xd6\x3c\xc6\x8a\xdc\xa4\x44\x57\xc9\xa7\x5a\xc9\x92\x6a\xf4\x40\x89\xfd\x72\xe2\xf0\xa4\x1a\x69\xa5\x23\x95\x4a\xbe\x1c\xa9\xc5\xaf\xa7\x2e\x36\xe1\xb9\x79\x63\x9d\x6f\x15\x9a\xf3\x72\xfb\x45\x3b\xdd\x66\xcd\x4d\x89\x21\x90\x18\xc5\x87\xf8\xeb\x48\x61\x93\x38\x39\xa1\xac\x5e\x99\x10\xdf\x38\xf7\x17\x12\xae\x90\xe5\x36\xdf\xb2\xd3\x26\xe4\x2d\x89\xfc\x3c\xef\xa6\x6c\x26\x4f\x2a\x72\x54\x07\xbf\x32\xba\x49\xfb\x15\xd0\x85\xc4\x71\xb8\x8e\x7c\x2c\x26\xcd\x58\xa6\x36\x49\xc9\xa7\xe2\x91\x74\x01\x1e\x61\x28\x32\x35\xcf\x2b\x6d\x7c\xe5\xcb\xa1\x4e\xb0\x0d\xc8\xc9\x02\x8b\x50\xa9\x98\x22\x42\xab\x2c\xef\x98\xfc\x68\x61\x73\xe4\x53\x69\x4d\x27\xa1\xb8\x49\x8b\xdf\x96\x6a\xb5\x2f\x51\x7d\xc5\x18\xcd\x8e\x4c\x2b\xf2\x09\x45\x81\x95\xcd\x8c\x30\x12\x60\x53\x35\xa4\x9c\x7a\xe9\x91\x8f\xea\xd7\x99\x8a\x6c\xfd\x36\x26\xc8\xa0\xdf\xfe\xca\xaf\x72\x69\x1d\xe9\x83\xd9\xa4\x5d\x90\xcb\xdf\xe6\x57\x8b\x9c\x33\xbf\x8a\x6d\x6b\x5a\xf5\x85\x71\x2a\xfa\xfa\x4f\x57\x74\x19\xd5\xc7\xee\xf4\x85\xf5\xec\xe8\xf1\xcb\x0f\x9f\x60\x71\x07\x95\xc8\x42\x28\xa6\xc4\xe5\x3b\xb5\x9b\x52\x2c\x8d\xfe\x82\xd2\x52\x5f\x69\x62\x29\x78\x4b\xca\x7c\x29\xf4\x77\x2a\xfb\xfb\xdb\x8f\x87\xc5\xaf\x93\x6d\x4d\x9b\x93\xf9\x0a\x39\x5c\xda\x21\x75\xf3\xcc\x12\x5e\x66\xb0\x2b\x65\xb6\xd6\x5b\xfe\xfc\xba\x19\xbe\x35\xd8\xd3\x8f\x99\x6e\x52\x62\x10\x85\x4f\x72\x8e\x2b\xad\x20\x5a\x90\x51\x8a\x46\xd1\xce\x2b\x94\x72\x53\x4c\x64\xd4\x85\x85\x72\xa6\x26\xf1\x18\x5b\xf2\x0a\x8f\x51\xaf\xc4\xc9\xcc\xcc\x0b\x37\x55\x1e\x0a\x2e\x62\x7a\x95\x1c\x39\x32\xf3\xc2\x02\x49\x87\x38\x97\x64\xd1\xfc\x16\xe1\xca\x72\xdf\xbc\xd0\xa2\x8e\xb9\x19\x3e\x66\x48\xfb\x51\xda\x84\xd4\x66\xc6\xc8\x20\x23\xc6\xc9\x82\x3b\x34\x44\x7d\x9d\xf9\x56\xb3\xcd\x1e\xf5\x8d\x6f\x7d\x95\x7c\xab\x50\x0c\xc8\x34\xc7\x89\xa8\xc8\x08\xdd\xea\xb6\x28\xc0\x8a\xb0\xe9\xd4\x63\x7d\x84\x41\xa0\xa8\x11\x67\xac\x0e\x5d\xf8\x5e\x2f\x14\x59\x0d\x67\xa4\x50\x33\xdd\xbd\x39\x6a\x24\x08\x4d\xfa\x79\xed\xbf\xa5\x56\x65\x25\xa5\x42\x5d\x95\x14\x1a\x0a\x97\xfe\x2d\x4f\x1f\x8d\xda\x67\xd7\xb1\x66\x74\xfb\x7a\xbe\x10\xc0\xd5\x32\xe3\xa1\xbc\xcd\xb0\x10\x94\x3e\xa2\x45\x82\x28\xde\xc3\xdd\x21\x7a\x20\x30\x65\x54\x99\xee\x5b\x4b\xcd\xb4\x6f\x3b\x63\x99\x11\xf9\x95\x06\x3b\x52\x01\x1d\x5a\x58\xdc\x01\x1d\xea\x8b\x85\xd7\xf5\x6a\x0b\x87\xeb\x76\xb5\x45\x0c\x29\xda\xc3\xfd\xe9\x09\x69\x6e\x2b\xa9\xc8\x32\xab\x5f\x90\xb2\xd9\x5a\x28\x09\x75\x4e\x17\x0e\x06\x31\xfb\x91\x36\x2d\x62\x7b\x4a\xad\x3e\x3d\x5b\xce\x26\x31\x3b\x66\x81\x6f\x5e\x33\x05\x8a\xf0\xd0\xc2\x88\xb9\x87\xcd\x38\x1d\x04\xe4\x42\xcc\xeb\xe6\xb5\x54\x44\x4f\x9b\x74\x21\x15\xe9\x06\xe8\xf9\x54\x19\x19\x47\x9a\xb4\x5c\xc4\x48\xd0\x5d\x6b\xcb\xbe\x69\x5c\x5f\x75\x26\xcc\x22\x01\xbe\x54\xe2\x89\x96\xad\xd0\x7c\x3f\x35\xf3\xa3\x04\x42\x66\x0b\x2d\xd3\x29\xb4\x15\x9b\x09\xe1\x24\x8b\x82\xd4\x2d\xe9\xd9\xaf\x14\xb2\x28\x0c\x44\x77\x0d\xcf\x14\xc8\x31\xf1\x6f\xad\x5a\x84\x0c\x8b\xc7\x48\xe8\x02\x5f\x7d\xfa\x2d\xd2\x4d\x89\x81\x33\x2a\x5d\x7d\x16\x74\x55\x37\xff\x20\xb5\x9d\x59\x62\x5c\x57\x48\xf1\xcf\xf8\x33\x1d\xf2\xfd\xa9\x0f\x2b\x58\x2d\x1d\xa9\x42\x0f\x9c\x69\xa2\x94\x54\xab\x81\x8c\x01\xa5\xb9\x1b\x05\x0a\x13\x26\x85\xac\x6c\x85\xd4\xb8\xb0\x47\x3b\xac\xf6\x74\xde\x2e\x0c\x0c\xb7\x6e\x21\x83\xb5\xac\xd4\x12\xe7\xc8\xa8\x65\xc1\xcc\xa8\x3c\x82\x46\x5c\x98\x29\x1d\x7f\x19\x3b\xde\xb7\xa8\xe7\xc8\xaf\xee\x6e\xfe\xf4\x2a\xe4\x4b\xeb\x67\xc4\x1c\xe9\x23\x3a\xcc\xdf\xfd\x38\xbb\x85\xb2\x86\x61\xe5\x7d\x1b\x1a\xdb\x5e\x81\x20\xda\x89\xd3\xc0\x77\xa1\x73\xe6\x47\x07\x1e\x4a\x1b\xd6\xb3\xd8\xfd\x1d\xe5\x83\x06\xf4\xed\x67\xc9\x40\x10\x5d\xe8\xd9\xee\xd3\x31\x02\x20\xa9\x24\xe8\x80\x83\x1d\x3d\xb3\xe7\x6b\xae\x8e\xf6\x21\x66\xc4\x33\x09\x3a\x1d\x57\x63\x7a\x6f\x52\xd9\xd7\x1e\xca\xba\x08\x65\xd9\xcd\x8b\x33\x85\xf6\x5e\xa1\x75\x1d\x5f\x62\x76\xa4\xa0\x23\x4a\xd4\x17\x32\xc9\x89\x27\xc6\x85\xbe\xf1\xd5\xe9\xc9\x0e\x54\x7c\x89\x76\xce\x54\x64\xa3\xaa\x43\xcd\x7f\xfe\x57\x5f\x25\x65\xf7\x92\x15\x2c\xc2\x01\x83\x71\x12\x50\x74\x89\x33\xc7\x04\x05\x97\x68\xe5\x95\x06\x7d\xdd\x59\xa1\xec\x71\x81\x8b\x75\x03\xdb\x0a\x46\x9d\x6e\x5c\xaf\x03\xfb\x6a\xc8\x40\x2e\x18\x71\x0e\x26\xd1\xd8\x0b\xce\x55\x51\x5b\x28\xab\xa5\x9a\x4f\x6d\xfe\x61\x09\xe9\x6e\xf6\xfc\x97\x72\x00\xd9\xb4\x68\xeb\x1e\x4e\x1c\x3e\xc9\xd7\x74\xe0\xee\x6b\x49\x23\x78\xfa\x31\xc3\x87\x23\xdc\x5e\x98\x07\x03\x8f\xdd\xcc\xc7\x53\x7d\x4f\xa1\xc0\x6a\x67\xca\xb6\xca\x68\x44\xf7\xee\x31\x57\x74\xdd\xda\x0a\xac\xef\x30\x13\x35\xe7\x7a\x5d\xa9\xb6\x82\x11\x34\x22\xf4\xf2\xed\xcd\x7a\xa3\xa6\x50\xc9\x50\x91\xc1\xc3\xb6\xf3\xf3\xe3\x50\x35\xcc\x87\x4c\xe7\x7e\xa6\x8c\xa9\x0b\xe9\x7d\x81\x4a\x57\x9c\x89\x56\x30\x1c\xa6\x03\xd8\x9e\x1c\x7a\xb9\x45\xed\x67\x4a\xad\x19\x6b\x48\xd2\xfe\xbd\x20\x1d\xe2\xf1\x82\x62\xfd\x3a\xa4\x8f\x99\x57\x2a\xb6\xbc\x62\x5b\x4f\xe4\x15\x52\x67\x02\x75\xc3\xfb\x32\xd1\x7f\xa9\xd9\xd7\xf4\x57\xcb\xc7\x1a\x3a\x96\x85\x22\x48\xb4\x82\x49\x32\x25\x93\xca\x91\x2f\x3d\xf2\x76\xfd\x2d\xc4\x7d\xcd\x5a\xd0\xe4\xba\x58\x6d\x05\xa5\x3a\xb1\xa7\x38\x3a\xe9\x62\xb5\xe5\xb4\x31\x71\x09\xb7\x90\x97\x0a\xe9\xba\x8f\xe9\x88\xa4\x09\xd0\x6d\xe6\x53\x0f\x84\x75\xe1\xb8\x86\x81\xa9\xeb\xd2\xf3\x35\xd2\xa4\x02\x0c\x20\x92\x94\x24\xa3\x15\x58\x51\x39\x32\xce\x9a\x89\x26\x72\x5b\x26\x4b\xd2\x2b\x92\x62\x1a\xc9\x91\x53\xfb\x04\xbd\x86\x1b\x65\x22\xae\x5a\x3e\x16\x1b\x23\x1d\x26\xe2\x0a\x11\xbe\xd0\x79\x98\x04\x0b\xbe\x29\x21\x19\x68\x3e\x9e\x2e\x3d\x20\xed\xf9\xed\x21\x95\xb8\x0a\x56\x5e\x96\x3b\x6c\xa5\x85\xab\x17\xad\xe2\x5b\xd1\xd9\x91\xdb\xbe\x15\x2d\x18\x87\x6b\xd2\xa5\x14\x5e\x76\xa6\xd0\x25\xf3\x54\x04\xda\xf2\x25\x7b\x84\xd6\x52\xd2\xb8\x7a\xa5\x26\x09\x94\x99\x4f\xc5\x0b\xec\xa6\xe5\xa3\x53\x76\xbe\x13\x5b\xf4\x17\xe6\xe1\x72\x92\x94\x23\x85\xf7\xe4\x1f\x30\xf9\x72\x60\xe4\x57\x4b\x45\xde\xa5\xd8\x3b\xcb\x02\x05\x01\xa7\x68\x13\xad\xc0\x0b\xca\x88\x51\x62\xa2\x3b\xf4\x44\x7d\x5d\x69\x52\xb1\xf3\xb3\x10\x1c\xb2\x30\x04\x96\x5c\x83\x05\x13\x79\x61\x7f\x61\x8e\x2d\xbf\x55\xc9\x8a\x3a\x44\xc0\xd5\xf3\x6d\x77\x2b\xf9\x16\x1b\x14\x4a\x43\x41\xaf\x39\x4c\xc5\xb8\x30\xb2\xd6\xf6\x48\x52\xe8\x3d\xd8\x43\x2a\x40\xda\x48\x23\x0c\x25\xa4\x1f\x99\xc0\x80\xce\xad\x51\xd1\x1d\x3b\xc2\xc7\xad\x6c\xcc\x69\x54\xad\x22\x43\x1c\x61\xb8\x6d\xc6\x60\x6a\x15\x19\xe2\xca\x39\x4a\x09\x32\xce\xd1\x53\x8d\x3d\xe1\x2d\x3f\xde\x22\xad\x22\x5b\xb6\x65\xcb\x95\x26\x96\x57\xbe\x41\xea\xe8\xdb\x52\x8f\x16\xec\x4a\x8b\xda\x3a\x6c\xc9\x6d\x06\x62\xf9\x76\x18\x88\x1f\x75\x1d\x10\xf3\x70\xa3\x90\xb0\x1d\x15\x70\xa2\x15\xf6\xcd\x5e\x70\x34\x03\x11\xa0\x23\x6a\xc6\xe9\x33\x3a\x7c\xa8\xf8\x13\xe7\x9c\x69\xc3\x8b\x37\xd2\x08\x9c\xc7\x40\x84\x24\x8a\xcf\x6d\xdb\x29\x1d\x81\xba\xb1\x9b\x50\x98\xce\x97\x91\x53\xd5\xb6\x2e\xcb\x12\xe8\x8c\x57\xe0\xbc\x8d\xd9\x84\xda\xdb\xce\x1c\x77\x21\xcf\x14\x64\xa2\x15\x14\x89\x82\x4c\xb4\x92\xfe\x98\x7f\x50\x89\x89\x31\xd1\x5f\x7f\xcb\xf0\x1d\x76\x72\x9b\x6f\xe2\x87\x22\x67\x94\x5a\x63\x34\xe4\x81\xe2\x51\x94\x81\x72\x7f\x0f\x8f\x24\x3f\x5e\x5a\xda\x50\x06\x8d\x4d\x28\x19\x34\xec\x69\xe5\xd9\x68\xe5\x4a\x2d\xe6\xf5\x11\xd2\xa0\x08\x28\x5b\x42\xe9\x1b\xe6\x32\x1b\x41\xd9\x31\x8e\x83\x99\x7c\x1b\x6b\x76\x61\x76\xbf\x7d\x7e\x8f\x4e\x71\x42\x8c\xfe\x42\xce\xbd\xcd\x23\xa8\x1f\xe7\xbc\xc8\x05\xd7\xdb\x42\x05\xcd\xef\xb8\x11\x67\x14\x57\x02\x47\x70\x04\x25\x03\x46\xd4\x91\x32\x60\xb4\x82\x15\xf5\xe6\x72\x09\x8b\xef\x6d\x05\x84\x63\xe7\xad\x0b\x87\x82\x21\xfb\xc6\xb4\xc6\x00\x7d\x9b\x2b\xae\x50\x55\x14\x6d\xc8\x3b\x38\x7b\xca\xba\x7f\x4c\x1b\x43\x19\xee\x53\xa8\x89\xc6\xe7\xf8\x26\x23\x03\x87\x4e\xb0\x29\xd7\x48\x0f\xcc\xc2\xec\x8c\x8f\x0d\x1e\x4c\x67\xd2\x68\x44\x79\x7e\xb0\xb3\xaf\x7c\x6b\x21\x38\x53\xaa\xee\x62\x1e\x2a\x38\x45\x6f\xcc\xbb\x83\x53\xf4\x17\xc2\x54\xe1\x28\xce\xf1\x4a\x21\xf8\x63\xa8\x7b\x13\xc5\x59\xf4\xb1\xb9\x8c\x9d\xfb\xe1\x82\x92\xb9\x74\x36\x8e\xb8\xba\x3e\xbe\xa0\x8c\xe8\xf8\xf8\x2d\xf8\x85\x19\xe0\x28\x13\xf5\xf5\xd4\xcb\x8e\x63\x28\x58\x4d\x33\xa5\x43\xfd\x4b\xab\x82\xb1\xe7\xa6\x56\xd9\x39\x46\x43\x37\x2a\x3b\xc7\xd1\x7b\x46\xe6\x27\x6b\x31\x04\x3e\xde\xf4\x6c\xaa\x8f\x17\x34\x73\xb2\x1d\x7c\x81\x1e\x18\xa7\xd5\xd9\xe5\x1f\xe7\xb1\x45\xc3\x29\x8b\x46\xfb\xf7\x53\x78\x31\x85\x3f\xf5\xc7\xb5\x7e\x07\x1d\xb8\x20\x59\xc1\x0a\x69\xa9\x48\xbd\x5f\x96\x6c\x42\x59\x69\xd4\xd4\xd4\xd5\x68\x87\x12\x4f\xf5\x54\x2b\x21\xc4\xa6\x17\x3c\xe5\xfe\xb1\x40\x4a\xa0\xa3\x47\x15\xef\xe1\x2e\xe4\xcf\x69\xe1\x41\xad\xde\xe7\x2d\x65\x76\xd9\xb2\x8f\xbe\x7e\x3a\x14\x63\xc2\x70\x94\x1c\x4e\x88\xea\x70\xcd\x14\x7a\xbb\xa2\x48\xbf\x08\x85\x19\x52\xb2\xee\x0a\xa5\xdd\x8a\xd1\xa7\xb8\x0e\xad\xb0\xb1\xbf\x36\x57\x5b\x28\xdb\x41\x98\x16\xce\xdb\xd1\x5f\xec\xc1\xaf\x4d\x52\x56\xde\xf0\x94\x1a\x67\xa0\xf0\x29\xad\x60\x05\x7f\x97\xd1\xb2\x74\x00\xd9\x82\x1e\xfb\xa2\x45\xd8\x00\x8e\xf9\x30\xff\xcb\x65\xe6\x17\x86\xa2\x1e\x39\x73\x0a\xa7\x86\xaf\x6f\x90\xa3\x0f\x03\x3a\xe1\xc4\x21\xd0\xc9\x4d\x0e\x48\xc9\x28\x64\xb1\xe2\x38\x9c\x0d\x9e\x51\xe0\x86\xd1\xd8\x0c\x3f\x4e\x2e\x48\x78\x87\x6a\x68\xec\x39\x21\x50\x8e\x7e\xa5\x4c\x7c\xd0\x43\xd9\x5e\x61\x0e\x7e\x3c\xdf\x41\xc3\x38\xc3\x47\x7f\xe5\x63\x99\xa7\xd9\x37\x84\x75\xa8\xaf\x90\xbe\x7a\xa4\x4d\x9f\x70\x46\xa8\xb7\x20\x66\xa1\x3e\xfe\x31\xa4\x30\x84\x88\xd7\x9f\x17\x7e\x84\x72\x07\x50\xfb\x06\xab\x8c\xd8\x53\xc0\x53\x62\x24\x09\x9e\x52\x1a\x92\xd9\x81\x1b\x6a\xdc\x40\x3f\xeb\x91\x8c\x53\x36\x41\x96\xc8\x60\x95\x59\x42\x09\xa2\x8b\x47\xeb\x67\xcd\x80\xd6\xf8\x59\x15\xb0\xc7\x15\xd2\x61\x34\x14\xb0\x43\x3a\xc4\x07\xf4\x8b\xe4\x60\x76\xfc\x04\xa7\x3e\xdf\xaa\x37\x33\xdf\xbe\xfd\x2d\x13\x62\x8e\xf1\x98\x67\x02\x3c\xd8\xec\x98\x2f\xab\xf9\x87\xf2\xcd\xd5\x80\xf2\x83\x12\xcf\xfa\x74\xc8\x06\x0c\xd5\x29\xb0\x4a\x77\x36\xb2\x9b\x52\x07\x3c\xc8\x29\xac\x4a\xf1\xf3\x85\x9b\x72\xfb\x13\x4a\x2f\x2f\x46\x9a\x30\xc3\x36\x3e\x45\xf4\x37\xba\x63\x31\xd2\x69\x63\xb2\x5a\x15\xb2\x9b\x4c\xa9\xe5\x88\x6d\x8b\xf9\xf2\xba\x4f\x2a\xf2\x86\x9f\xb4\xa2\x85\x2d\x69\xc4\x7b\x78\x52\x8d\x8e\x19\xa0\x2c\xe6\xcb\xc1\x33\xb1\xc3\xe6\x0b\x58\x01\xd5\x68\x5f\x72\xff\x3d\x5f\x76\x3f\x4c\x66\x20\xeb\x43\x3d\x16\xed\x33\x94\xd2\xfb\x58\x8a\xcd\xc3\xce\x51\x84\xe5\x34\x92\x03\xcc\xca\x3c\x7c\x6c\xc4\x0c\x9b\x4a\xcf\x31\x1a\x33\x70\xe8\x92\xdf\x01\xca\x6f\xca\x0c\x6a\x89\x37\x1d\xf1\xe0\xc4\x68\x9c\x4a\xdd\x51\x1c\xba\xe1\xa6\x7e\xee\x1e\x85\x9c\x04\xad\x96\xa6\x02\x19\x9c\x93\xde\x1e\x13\xce\xa3\x99\xe9\xa4\x9c\x07\x94\xec\x8c\x7a\x50\xaf\x43\x0b\xbe\xe0\x83\x03\xc3\xfe\xa2\x4b\x7a\x1c\xe7\xec\xc3\x37\x75\x6a\xfa\xf2\x69\xd1\x43\xb5\x50\xd6\x60\x69\x93\x7d\x7a\xe4\x4f\x1f\x22\xe9\x82\x5d\x08\x58\x9c\x53\x61\x0d\x1a\x88\xa0\x79\xd8\x3d\xca\x81\x65\x2a\x3d\x48\xc3\x4b\x36\x9d\x1e\x04\x83\x77\x0a\x7b\xd2\x8c\x7c\xbc\xa9\xaf\xbe\x4c\xd9\x4f\x14\xd3\x45\x42\x89\xf1\xb7\x13\x65\x0a\x89\x52\xce\xcc\x25\x17\xc5\x83\xee\x6c\x86\x49\x9b\xba\xe3\x3b\xe0\xe0\xc3\xb8\x64\xbf\x0e\xbe\xc9\xae\x2e\x30\x68\x1f\x3e\xeb\x01\x9b\xc8\x16\x04\x7c\x32\x95\xaf\xa4\xd4\x30\xc2\x66\x89\xd2\x05\xf3\x85\xe5\xe3\x74\xdc\x84\x51\x6d\x19\x4e\x05\x4e\x68\x40\xba\xa6\xc1\x28\x17\xfc\x7e\x12\x11\x13\x01\xe0\xd8\x08\x17\x2b\xa6\xf0\x07\x67\xf6\xd4\xe9\x4b\x3c\x4c\xfb\xe9\xac\x24\xb3\xb3\x44\xa7\xfd\x10\x2d\x94\xf9\xff\xa2\x07\x6c\xeb\x33\x35\x4d\xa1\xca\x4e\xa8\xb7\x0e\xa3\x69\xd3\x81\x11\x07\x43\x91\xc6\xbf\x60\x12\x07\x40\xe0\x7a\x77\x12\xb9\xa0\x9e\xd4\xb3\x6c\x83\xa4\x0b\x5a\x7a\x70\x77\x53\x18\x8f\xbb\x90\x5f\x0d\x44\xe6\x52\x66\x9e\xc4\xf7\xe2\xdb\x7b\x05\x47\x83\xdb\x84\xf2\x38\x2b\x1b\xfb\x64\x51\x68\x03\x03\x7d\xa4\x50\x9c\x98\x69\xdf\xe6\xc4\x34\x61\xbf\xd7\x95\x5a\xbf\xee\x7b\x9a\xf4\x30\xfd\x6d\x41\xc5\xdb\x0e\x9b\xca\x16\xd2\x80\x04\x4c\x45\x2b\xb8\x0b\x3b\xa4\x9c\xfa\x36\x82\x66\xb1\xa0\x39\x43\x59\x96\x5c\x50\x4b\x6d\xa4\x1a\x6d\x79\xeb\xb3\x59\x0c\x44\xe4\x08\x30\x05\x24\x69\xa0\x3f\xa6\x92\x83\x34\xb0\x0e\x53\xc9\x41\x8a\x53\x0c\xdf\x54\xf1\x38\xe8\xcd\x74\xfb\x54\x33\x3d\x59\x29\x53\xfb\x27\x2d\x2a\xe7\x2a\xe6\xda\x2c\x0b\x06\x99\x90\x3a\x57\xd4\xf4\x6e\x59\xf5\xd0\x81\xe5\xc0\x33\xf9\xd4\x52\xaf\x50\xb8\x99\x3a\xba\xe7\x64\xda\xb5\x30\x68\x43\x3c\x38\xee\x4d\x07\x15\xe0\xca\x7f\x16\x0e\x66\x88\x32\x03\x33\x46\x2d\xf4\x70\xfb\x16\x81\x2d\x66\x60\x86\x53\x7c\xde\x94\xcd\xe8\x46\x9f\xbc\x9a\xcc\xc9\x65\xbb\x7e\x84\x92\xdd\x6c\x9f\xef\xbc\x50\x05\x36\x40\xe6\xc5\x05\x3b\x4a\xd6\x09\x3d\xe2\xd5\x9f\x97\x1f\xde\x64\x3f\x2a\x26\x40\x69\xb0\xa2\x62\x00\x14\xc7\x94\xbf\x29\x8d\xac\xa4\x4c\x4a\x8d\x91\x18\x4f\x01\x28\x67\x92\xde\xa3\x3e\x9f\x9a\x11\x90\x33\x17\xbb\x71\xa6\x49\x0d\x8c\xd9\xbc\xd8\x8d\x0d\xca\x73\xcb\x8a\x0a\x6c\xd1\x81\x74\x4c\x3d\xde\x2f\x98\xb0\xf3\x42\xba\xb3\x53\x79\xca\xcf\xd9\x7e\x1a\x6c\x31\x6a\xc9\xc7\x9e\x69\x7a\xa0\xd3\x7c\x8c\x99\x8b\x30\x7d\x93\x0e\x6d\xbb\x0c\xe6\xdf\x4e\x94\x79\x71\x7e\x67\x8f\x5d\xdc\x50\xc0\x63\xce\x04\x32\xd2\x8c\xe1\x3d\x1c\xa8\xa6\xb0\x17\x05\xb3\x7a\x0a\x7a\xd1\x47\x16\xc5\x4f\x42\x38\x5f\x4d\x3d\xd9\x6f\x5c\xb9\xcf\xea\x8d\xcc\xcc\xeb\x89\x7e\xb9\x18\xa6\x93\x79\x4c\x9c\x8d\x53\x0f\xef\x1b\x57\xc8\xd3\xe9\x3b\x2e\x98\x46\x18\x8d\xdc\x22\x4c\x43\x34\xb8\xd8\x9c\xd5\x71\x65\x8f\xd4\xc2\xe6\x80\x0c\x03\x51\xeb\xf4\xe6\x40\xe7\x02\xd2\xc0\xe0\x9d\x02\x69\x8c\x86\xcd\x52\xcd\x42\xe8\xee\xca\x19\xfc\x4a\x45\x72\x27\xb6\x14\xba\xeb\x69\x73\xaa\x9a\x50\xb6\xcb\xf2\x9f\x99\xad\xa7\x03\x16\x91\x35\x1d\xb0\x9b\xab\x33\x32\x39\x80\x9e\xe9\x5a\xf6\xff\x67\x12\x6e\xd9\x7f\x45\x05\x0b\xfa\x51\x8e\x4c\x97\x70\x81\xb5\xe6\xc7\xad\xfe\xd0\x03\x2b\x89\xb4\x18\x59\x42\xa1\xb5\x33\xf2\xa0\x1a\xb7\xc5\xa1\x71\x56\x44\x7f\x1a\x31\x6e\x0b\xd7\xfa\xac\xbe\x63\x00\x0e\x39\x95\xb0\xa3\x5d\xe9\x82\xef\x18\xb8\x2e\x99\xc6\x77\x5c\xe8\xd1\x86\xee\x86\x0f\x84\xe1\x28\x38\x1e\x26\xcf\xe5\x9d\xe2\xff\x26\xad\x00\x59\x86\x36\xdc\xdf\x54\xa4\x65\xa0\x07\x6d\xd0\xfb\x90\x92\xc5\x4f\x23\xdb\x85\xe9\x90\x63\x23\xf8\xe4\x31\x1b\xe6\x3c\x2a\xa6\x59\x1b\x20\x68\xf4\xd0\xbe\x5d\x19\x0a\xda\x80\xf9\x6c\x96\x42\xe9\xad\x8c\x00\x2e\x2a\x66\xc3\x02\xad\x8c\x4c\x26\x01\xa8\xbd\xe9\x77\xf6\xd7\x53\x26\x09\x80\xd0\xe6\x9d\x7d\x7d\x6a\xf5\x64\xe6\x5b\xac\xd3\x4e\xf7\x70\x22\x62\x00\x1a\xe0\xc1\x85\xfc\x6c\x7e\x2a\xc8\x31\x77\xea\xa9\xfd\xc9\x9d\xe0\x6c\xc8\x28\x4e\x58\x02\x83\xb4\x2b\x33\xad\x38\x36\x47\x4b\x3d\x4b\x57\x13\x74\xc8\x69\x1b\x66\xaa\xb9\x55\xd7\xb8\x52\x8b\xf5\x44\x56\xc1\x39\x9b\x9f\xee\xfc\xf4\x1a\x8a\x1f\x95\xb7\xa8\x71\x10\x69\x18\x95\x23\xa4\x05\x12\x87\xb8\xc6\x25\x46\x67\xe5\x7d\x77\x9f\x83\x5b\xb3\xc9\xd2\xf2\xad\x56\x1e\x95\xd2\xb0\x23\xe1\xf1\xee\xf7\x11\x76\x26\xcc\x8e\x07\x0a\xcd\x45\x22\x90\x6c\x24\x83\x3a\x2e\x34\x97\x41\x1d\xa3\xc2\x16\x06\x75\xf4\xd7\xcc\xb7\x3a\x1c\xa1\x2d\x3b\xb7\x5d\x3d\xa4\x94\x0a\x4b\xdf\xcd\x5e\xed\x6f\x1f\xca\xf4\x33\xf9\x0b\x2d\xd2\xb9\xb7\xc0\x16\xf3\x6b\xf7\x0b\x91\xed\xd7\xee\x5c\x5e\xce\x0e\xcf\xa4\x49\x78\x86\xc3\xac\x31\x1d\x23\xa6\xb6\x93\x7b\x1c\x6c\x06\x81\x38\xda\x85\xd6\xe0\x45\x7b\x24\x5f\xc7\xd7\xc0\x91\x54\x4f\xda\x4b\xac\x55\x81\x3a\x1a\xf7\xfe\x33\xf9\x3b\x60\x93\x00\x35\xd0\xb3\xdd\xd9\x3b\x79\x69\x31\x8d\xcd\x18\x35\x23\x95\xa1\x02\xfa\x70\x76\x96\x37\x9f\xaa\x15\xf6\xaa\x1e\xad\x9f\x03\x25\x4c\xaa\x0f\xdc\x4c\xd3\x38\x0d\xee\x11\x67\xe7\x52\x0a\xd1\x6c\x9c\xc6\xa8\xcc\xd8\xf0\x11\x02\x4d\x31\x6c\x65\xc2\x6e\xce\xfb\xd1\x99\x03\x63\x2f\xb8\x3f\x9d\x7e\xc3\xce\x15\xe8\xf4\x1b\xf6\x7e\x70\x54\x1b\xe8\x1f\x26\x73\xe0\x6e\x44\x0a\x0d\xf9\x09\xb8\x79\x9d\x02\x58\x54\x9c\x84\x53\x00\x8b\xca\xbd\xf5\x34\xc0\xa2\x1f\xd8\xb9\x03\xa7\x01\x2b\x36\x6c\x76\xf6\x34\x62\x51\x37\x43\xda\x0c\x87\x4d\x46\x96\x9e\x66\x7c\x9a\x85\x4f\xc7\x22\x0b\x02\x43\xc3\x64\x4d\x07\x71\x22\xf6\xfc\x6a\x8e\xa7\x19\xe7\x2e\x44\xe9\x28\x5d\x47\xbb\x32\x4e\xf6\xf2\x0c\xc9\x60\x68\x14\x9f\x03\xab\x34\x1c\x94\x20\x4e\x07\x30\x0f\x95\xe5\x1e\x1c\x03\xb3\x86\x36\x43\xe9\xd1\x64\x45\x19\x8d\x1e\x99\x1f\x6d\x60\xaa\x4f\x87\x69\xe9\xb0\xe7\xc4\x1a\xa9\x29\xd5\xf6\x41\x50\x3a\x47\xc6\xc4\x22\x73\x56\x0c\x3c\x6a\x73\x66\x11\xf9\x14\x85\xd0\x53\x2a\xf9\x3b\xf2\x67\xfd\xe7\x7f\x17\xe0\xe2\x49\x02\x8d\xca\xb4\x18\x0d\xd1\x8f\x57\xfe\x94\xb7\xf2\xa9\x56\x3e\xf6\xb8\x70\xa6\x03\xdd\xb3\x12\xd3\xd7\xda\x71\x08\x4c\x9b\xb0\x3d\x6d\x6a\x4e\x10\x9c\x7e\x3b\xde\x0f\x8c\x1c\x63\x1c\x2a\x9e\xc4\x39\xed\xb0\xc8\xc1\xd9\x8f\xc7\xf1\xf9\xcd\xe9\x50\x66\xf1\x49\xe8\x49\xf8\x39\x11\x3e\x93\x87\x6e\x19\x28\x87\xcf\xb4\xaa\x6b\x25\xae\xcf\xa6\x5f\x7d\xf7\x03\xe6\x98\x66\x87\xf8\x8a\xe6\x86\xcb\xa8\x78\xfb\x09\x48\x2a\xb2\x77\x28\x5d\x72\x62\x1f\x94\xaf\x61\x0e\xc4\xbb\x1f\x73\x21\xbd\x99\xc1\xe5\x67\x05\x11\x4e\x86\x2e\x8c\xca\xc8\x0d\x5d\x28\xcf\xb7\xd6\x5a\x74\x78\xe1\xcf\xc3\xd8\x5a\xde\xa7\x0f\xa5\x74\xa4\xa8\x0c\xd0\x08\xd7\xeb\xcf\xa8\x84\xf7\xb7\x3e\xbe\xe3\x89\x58\x16\xe7\x71\xcf\x2c\x5f\x0e\xc6\x1b\xb2\x6c\x0c\xe6\x5b\xe7\x5f\x3a\x53\xe6\x46\x51\x9d\x46\x1c\x70\x9f\x30\x97\x3d\xf6\x39\x05\x2f\xfb\x80\x90\x88\xcb\x1b\x13\xc1\xb1\x38\x3b\x32\xbb\x4e\x70\x41\xc6\xb1\x9b\x94\x0c\x44\x60\x2f\x9f\x1d\x73\x80\x5f\x6c\xe2\xf4\xd6\xa6\x63\xbc\x18\xcb\x67\x84\x9c\x8b\x37\x90\x38\xec\x9b\x8d\x01\x38\x42\xd2\x6c\x83\xd4\x0e\xc2\xec\xdd\x76\x33\xe6\xa0\xbe\x2d\x97\x31\x49\x95\xc6\x22\xd7\xe8\x73\x5b\x5d\xcf\x54\xe3\x30\x3a\xa9\x86\xa0\x1f\x50\x8a\x60\x80\xc9\xb2\x11\xd2\xac\xe8\xf6\x21\x21\x3e\x8e\xed\x0d\x3d\x43\xd9\xa5\xc7\x2e\xd8\x78\x7d\x46\x4a\x85\xca\x29\xa9\xc8\xeb\x7b\xa6\x99\x7b\x95\x70\x7d\xcf\xed\x83\x41\x5c\x0e\xc6\x19\xc4\x45\x6b\x9c\x01\xfe\xfd\x09\xce\x20\xde\x91\x6d\x98\x52\x45\x05\x0b\x4b\x50\xb2\x49\x0d\x25\x38\xe3\x1e\xd9\x68\x6f\xd6\xd0\x60\x82\x33\xce\x0b\xa5\xaf\x68\xdc\x5c\x4c\x65\xa8\x68\x5c\x47\x4c\xa1\x07\x4a\x1c\xa4\x5b\x66\x5c\x0e\x3c\x82\x12\xb4\x38\xb4\x37\xd7\xbb\x4c\x81\x74\x75\x3d\x52\xc6\xf6\x4d\xa1\xa6\x00\xb6\xdd\x12\xed\xfd\x78\x48\xef\xc1\x8c\xcb\xa9\xde\x58\x14\x21\x00\x5a\x1c\xbf\xbe\xf2\xe7\xfe\x76\xfa\xca\x1f\xa8\xc7\x7c\xfb\x16\x31\x67\x76\xdf\xf9\x13\x87\xe9\x26\x9b\xea\x49\xad\x5e\x3e\xd8\x49\x09\x2a\x5a\x9c\xdf\x46\x04\xc4\x69\xa7\x74\x15\x2d\xae\xdc\x37\x98\x38\xe6\xf5\x2d\xe5\x91\xc9\x02\x2d\x50\xd9\x64\x6f\x63\x2c\xe3\x2b\x79\x73\xb7\x04\x9b\x2a\xb9\x45\xab\x6c\x56\x25\xb7\x68\xf5\x95\x32\x0b\xeb\x99\x42\x43\xb3\x6a\x4a\x35\xef\x2d\x94\x95\x73\xc6\x29\x93\x20\xbe\xb7\xb7\xb1\xe4\xcf\xa7\x36\x4e\x33\x6a\x4c\x45\xb4\xf3\x1b\x03\x01\x69\x62\x8c\xc2\xec\x35\xa5\x30\x1f\x0b\x21\x5b\x31\x4e\xcf\x37\xee\xc9\x0c\xdc\xec\x05\xdb\x0a\x95\x70\x57\x94\x7a\x99\x15\x48\x4b\x22\x30\x1d\xf3\x6d\x2f\x56\x0c\x40\x43\x0f\xe2\x35\x16\xbc\xa0\xc5\xf5\xfb\xf6\xab\xd6\x5e\x43\x2e\x57\x44\x97\xcc\x71\x67\xaa\x65\xe4\x4c\x84\xac\x87\x78\x98\x3f\xb6\x1e\xda\xeb\xcf\x38\x85\xf7\xb7\xc5\xdf\x16\x48\xef\x3a\xbc\x46\x46\x10\x00\xab\x9f\x1f\x5e\x31\xe6\x53\xed\x32\x98\xe1\xe3\xdb\x8e\xf8\xad\x94\xd1\xa2\xc5\x11\x6b\x40\x41\x2e\xd6\xa6\x20\x04\x2d\x5e\x2c\x41\x06\x4e\xde\x0e\x4c\x41\x04\x5a\x9c\x89\x1f\x3f\x33\xc8\x7d\xcb\x47\x3e\xca\x78\xf9\x88\x98\xd1\x5b\xbe\xd5\x1c\xa0\x24\x95\xa6\xa2\x55\xe4\xc3\x07\x8d\x94\x26\x97\x3b\x90\x4f\x85\x86\x67\x0f\x7e\x74\x78\x8c\x8b\x52\xb1\x34\x5a\x45\xda\x2a\x5c\x46\x8b\x83\xf2\xc3\xc2\xa7\x1a\xee\xa6\xe0\x3e\xa7\xa1\x78\x9c\x29\x1f\x2f\x3c\x6c\xf0\x11\x8c\x96\xf7\x8e\xd3\x01\x33\x2a\xfb\xfc\x83\xf3\x92\x03\xcf\xc7\x66\x63\x9c\x20\x1f\x3f\x17\x80\xf7\x1c\x30\x83\x07\xb1\xd3\x79\x26\xfa\xc1\x16\x54\x1c\x8c\xbb\x43\xf9\x56\x66\x43\x43\x0c\x38\x12\xc6\x88\x4b\xf2\xeb\x3c\x7e\xbd\xe5\xdf\x8f\x12\xc9\x76\x28\x73\x3c\x2b\xff\xb5\x6b\x2a\x5a\xe7\x6b\xbb\xb1\x21\x29\xbf\xbe\x4e\xc8\xf9\xe3\x9b\xed\x3c\x21\xa9\xaa\x41\x6a\xd1\x70\xe2\x38\xf9\xc3\x68\xc8\x26\xa3\x04\xe2\x10\x53\x44\x8b\xfb\x4f\xfa\x64\x93\xbe\x65\xb0\xb2\x1c\xe2\xa6\xf9\xb2\x45\x5b\x7e\x55\x2b\xe9\x91\xf3\x10\xc5\x3f\xf6\x15\x78\x24\x7e\x19\xe7\x77\xa8\x39\xf6\x7c\x75\x93\x33\xd9\x75\x5f\xef\xc1\x9a\x32\xc9\xca\xa7\x9a\xaf\xfb\x93\x7a\x0c\x52\xe3\x00\xf2\xb3\xd4\x87\xc9\x1d\x7c\x62\x34\xa4\x8d\xd2\x3b\xb4\x78\x91\x9c\xcf\x21\x2e\x13\xc1\x02\x5a\x9c\x34\x04\xa6\xb8\x9e\x7a\x2c\x31\x7a\x4a\xad\xa6\xf1\x51\x28\xa1\x43\xab\x38\x1b\x1d\xa8\x62\x34\x84\x98\x80\x01\x2d\x2e\xb0\x9f\xa5\x75\x4b\x19\x2b\xd8\x20\x9b\xa7\xa4\x40\xda\x40\x62\xaa\x7f\x80\xe2\xb1\xd9\x7f\x58\x03\x19\x8c\x45\x72\x83\xd3\x0d\x06\x00\x07\x3f\x7f\xf6\x42\xc7\x51\x43\x20\x0b\x00\x11\xf3\x87\x45\x9f\xa1\xfb\x9a\xa1\x21\x52\x08\x56\x91\x73\xa4\xa2\x55\x74\xde\xa5\xcc\x9f\x5d\x37\x39\x97\xfd\xbc\xfc\x1c\x97\x7e\x2c\x7f\x26\x58\x78\x80\xca\xe1\xe9\xe7\xb3\x7d\xbc\x59\x3f\x73\x43\x6c\x9b\x9f\x9d\x35\xd7\x53\x93\xa1\xcb\x4c\x93\x8f\x7b\xd7\x53\xd3\x56\x1c\x15\xba\xab\xf3\x7b\x3c\x2e\x3f\x8c\x4a\xcf\xc3\x32\x22\xa0\x72\x7c\x5a\xc4\xb6\x00\x31\xbe\x14\xce\xa2\xd5\xbf\x23\x5f\xdd\x9f\xb2\x52\x03\x52\x90\x12\xef\xf0\xf5\xb2\x57\x11\x17\xe9\x72\xac\x8b\x7e\x3c\xa5\xcc\xe7\x84\x14\x6f\x5b\x57\xae\x97\xa5\xb9\x25\xd2\x12\x64\xa0\xd5\xd4\x83\x9f\xe0\x60\x2c\xb6\x02\x2c\x29\xd6\x0b\x0b\xb4\xd2\x21\x24\xc5\x49\x23\x0e\x6e\x81\xe5\xbd\x04\x2f\x68\x78\x31\x96\x82\x5b\x34\xdc\x28\xeb\x85\x07\xb2\x33\x27\xf0\x60\xfa\x87\x7d\x5a\x53\xaf\x25\x68\x4f\x27\xde\x6e\x86\xee\x3b\x4c\x1e\x5e\xb5\xa5\x74\x11\x7d\x1c\x7c\xbb\xdc\x7d\xea\xb5\x00\x6a\x8c\xd4\xe7\x98\x99\x32\x6d\xcc\x4e\xa5\x86\xb3\xf2\x8c\x64\xbd\x00\xce\x77\x7a\xbf\xbc\xf7\x0a\x1f\x1b\xbd\x76\x65\x3e\xb7\xdb\x64\x8e\xd0\x1b\x85\x91\xfa\xe5\x0f\x1e\xc1\xa5\xb0\x18\x0d\xb7\xc6\x7a\xd9\x44\xed\x34\xca\x1b\x8b\xce\x04\x5a\x58\x65\xc6\x50\x23\xd6\x9d\xeb\xc0\xc1\x30\xa0\xbc\x25\x5a\x0a\x35\x6c\x3a\x7f\xf8\x39\x06\xae\xbb\x75\x58\x58\xf5\x7c\x6a\x27\xb7\x7d\x06\xcb\x19\x21\xb8\x90\x5a\x24\x84\x70\x3e\xa5\x9b\x64\x59\x3a\xe4\x5b\xb0\xc2\x7c\xfb\xf9\xe7\x7f\x95\xa3\xde\x3a\x50\x38\x9d\xfe\x4d\xfa\x17\xd2\xfd\xa3\x5a\x01\x12\xf1\x20\xad\x83\xa7\x64\x3e\x0e\xaf\x03\xd9\x95\x7a\x1d\x80\x9d\x75\x38\xb0\x2e\x0a\x9d\xb7\x75\x91\xa1\x20\xd7\x7c\xca\x5e\x46\x5d\x9c\x4f\x0f\x2c\xe5\x5a\x5a\xf9\xe8\xca\x27\x5d\xd0\x6e\xc9\x30\x1d\xc9\xe7\x80\xc1\x40\x64\xe0\x2a\x5b\x8e\xdb\x81\x21\xb0\x8c\xc8\xa8\x19\xf5\x72\x18\x02\xda\x58\x6c\x16\x96\x81\x44\xe7\xf9\xd1\xba\xbd\xe4\x5b\x2f\x7d\x28\x4f\xe6\x60\xd4\xbe\x38\x71\x6e\x9a\xb1\x84\xa5\x38\x31\x53\xd6\x81\x70\xec\x29\x54\x87\x06\x53\x22\xbc\x0d\x67\xec\xe5\x60\x1c\x33\xdd\xe3\xd8\x0c\xbb\x1d\x7e\xc6\x71\x85\x4d\xac\x2a\x07\x7d\xb7\x30\x4c\x7f\xec\xcc\xb4\x98\x5f\xe7\x60\x7e\x2e\x48\xed\x8d\x91\x42\x77\xa7\x43\x69\xf9\x5e\xf9\x52\xee\x53\xe6\xee\xb4\xfc\xf2\x19\x62\x9d\x66\x18\xba\xea\x98\x1a\xa3\x50\x8b\x0d\xce\xc1\x7f\x76\x6c\x44\x9a\x9d\x66\x09\x1f\x8e\xd6\xe9\x85\xb5\x43\x67\x9d\x0e\x74\x88\xc7\x71\x9d\xd8\x2e\x17\xa5\x5e\xca\x19\x4a\x9b\x66\xfe\x8d\x57\x59\xa7\xfd\xd2\xf8\x40\xd7\x69\xd4\x9b\xe3\x78\xde\xa4\x03\xdc\x32\x12\xdb\xa3\x93\xd9\x91\x47\x84\xc3\xda\x72\x1a\x07\xce\x42\x4b\x30\x89\xc3\x61\xb1\x6f\xca\x0b\x99\x2f\xbb\x5c\x51\x29\xb3\x2c\xed\x21\x2d\x37\x2e\x66\xd2\x07\x0d\x1f\x3b\x56\xe1\xa0\x61\x73\x64\x09\xfb\x40\x26\xeb\x9b\x3a\x75\xf5\xff\x82\xd2\x25\xad\x8f\xab\xab\x38\x76\x34\x11\x1a\x96\x03\x65\x54\x47\x20\xbd\x49\x4b\x4f\xfa\x57\xb8\x26\x3d\xd2\xa8\xde\x1d\x5d\x50\x1c\x2d\x1e\x52\x2e\x4d\x47\xd5\xbc\x49\x2b\x9c\x8b\x76\xe4\x01\xe1\x68\xb6\x14\x37\xa3\x0c\x58\x5d\xc1\x30\xee\x3f\x43\x0a\xc6\x50\x52\xed\x47\x3f\x32\x32\x34\xc8\x48\x3d\x7a\x53\x9d\x39\x71\x02\xb3\x3e\x42\x0a\x66\x9a\x0e\xe0\xb6\x80\xf5\x8b\xce\x1a\xd9\x7b\x85\x77\x0d\xb0\xb7\x73\x2a\x60\xf7\x2f\x45\xb8\x38\xaf\x34\xb2\x3d\x90\x7c\x59\xa5\xe7\x99\x2e\xdc\x5b\xb0\xa9\x02\x5a\x94\x99\x61\x49\x63\x70\x10\x5b\x06\x46\x00\x9e\x59\x02\x46\x9c\xad\xa6\x52\x45\x3d\xb5\xfd\xb2\x2e\x2c\x56\x9b\x6a\xcb\x09\x17\x38\x96\x2d\x65\x58\x68\x0d\x35\x7e\x61\x84\xf8\xe8\xb5\x84\x9a\x28\xd1\x93\x4e\xb1\x80\xd1\xbe\x04\xa1\x68\xdc\x9b\xad\x8b\x23\x24\xf2\x45\x08\x8a\x23\xc3\x50\x16\x85\xd2\x7a\xca\x8a\x7e\x0c\x65\x78\x0a\xed\x7b\xad\x4e\xfa\xa6\x3d\x9b\xb9\x21\xc8\x04\xbe\xc8\x75\xe9\xd0\xcf\x71\x63\x09\xf7\x70\xcc\xce\x76\x72\x90\x89\x7a\x64\x06\xd8\x97\xac\x8e\x23\x47\xd4\x03\x53\xe6\x42\x6e\x22\x46\x00\x37\x38\x1e\xf0\x4d\x5a\x29\x21\x47\x04\x51\x68\x58\xe2\xeb\xb2\xd7\xb8\xd5\x14\x8a\x27\xd8\x44\x97\x5f\x35\x65\x67\x5c\x6c\xce\x11\x72\xeb\xdb\xfc\x29\x9f\xc0\xc1\x8e\x73\x06\x82\x9e\xad\x60\x3c\x03\xc7\x93\x55\x9d\x87\xd9\x29\x82\x6e\xd2\xf3\x79\x41\x69\x3d\x9f\x1f\xab\x3f\x4d\xa1\x3d\xb6\x33\xa5\xd6\x3c\x98\xb2\xd5\x2b\x7a\xe6\xdb\xcf\x3f\xff\xfb\x7f\x3d\xb0\xc0\x64\x16\x80\x30\xe0\xcf\x5d\x86\x29\x94\x7c\xeb\x6c\x01\xf8\x4e\x57\x45\x19\x3f\xdf\x5a\xbb\x4c\x9a\x99\x3e\xbb\x3e\x1f\x6b\xc9\x91\x75\xd5\x88\x48\x66\x57\x61\x28\x9a\xb3\xa4\xdf\x94\x57\x0d\x91\xe9\x6c\x01\x23\x3b\xa0\x3a\xb3\x53\xf6\x9c\x50\x0c\xed\xb6\x5d\xff\x94\xe1\xca\x25\xd0\xb2\x77\x84\x69\x68\x31\xfe\xaa\x13\xa7\xf6\xf4\x5d\xa0\x86\xd8\x8d\xd5\x0f\x5e\x62\x63\x0a\xe3\xd0\x62\x0a\x56\xde\xd1\xa5\xb7\xf2\x2c\x01\xe1\x59\x95\x83\xcb\xa4\x4d\x0b\x88\x92\x42\x1b\x91\x93\xc5\x97\xdb\xc9\xa9\x5b\x6f\x4a\x3c\x85\xc7\x76\x19\x1c\x51\x8f\x74\x17\x28\x73\x26\xc1\xb7\x56\x78\x5a\x97\xb1\x12\x31\xf0\x1c\x0a\xa3\x61\x54\x0a\x2a\x71\x94\x81\xa5\x23\xac\x44\x99\x88\x0c\x07\xbf\x88\x78\x15\x36\xa2\xc4\x54\x6d\x8e\xab\x05\x0f\x19\x1a\xd1\xd0\xd6\x2d\xec\x96\x36\x3c\xb5\xa1\xe4\xd2\x18\xf9\x94\xae\xa6\xd6\x9f\x32\xc6\xd0\xa2\x7d\x97\x0d\x45\xea\xc8\x17\x31\x9f\x9a\xb3\x45\x45\x15\x34\x1f\x87\x63\x6b\x11\x09\xa3\x84\x52\x67\x8f\xfc\xa9\xce\x5e\x0c\xd9\x2f\x5a\xd8\x38\x80\x1f\x1a\x62\x0a\xf0\x43\x4d\x87\x74\xf0\x88\x51\xd6\x16\x02\x83\xa1\x98\x9f\xd0\xc1\xcd\x69\x7a\x32\x23\xf2\x4d\xc6\xec\x08\xbc\x21\x94\x76\x23\xea\xd9\x99\x03\x88\xcd\xb3\x9a\x9f\x4f\x35\x0e\x21\xcd\xda\x06\x35\xea\x64\x01\xf8\x44\x16\x80\x06\x7c\xcd\xab\x45\x9a\x31\xeb\xbe\x04\xc3\xd9\xbc\x1a\xe2\x8c\x33\x80\x21\x0c\x51\xc0\x2d\xdc\x94\x8a\xc5\xfc\x57\xfe\x74\xff\x5c\xe6\x48\x18\x0d\xb3\x50\x31\xf7\x8f\x1c\x98\x3b\x07\x47\x36\x06\xe1\x23\xc6\x2b\xdf\x5a\x01\xb1\x42\xdd\xa2\x04\x8f\xfb\xea\x18\xfd\x2d\xa5\xea\x1f\xe2\x81\x08\xf9\xec\x4d\x07\x81\xa8\xe0\x81\x97\x00\x04\x27\xfe\x94\xe5\x98\x10\x91\x8a\xdd\x37\x8c\xb8\xee\x97\x63\xe0\x8f\xd6\x52\x6a\x56\x44\xd1\x39\xce\x7d\xe5\x69\xdd\xea\xbe\xac\x6a\x1c\x33\xbb\xb7\x6e\x86\x2a\x38\x41\xe7\xa9\xc5\xea\xd6\x0e\x35\x9f\xd2\x6a\x0a\x3f\xae\xa8\x43\xc2\x70\x9e\x5e\xa2\x39\xbc\x42\xe9\x15\x2e\x2e\xf8\x25\xcc\x40\xc1\xdf\xbd\x86\x77\x27\x72\x50\x98\x81\xbb\xbb\xf9\xd4\x89\x3e\x52\x28\x86\x1b\xa9\x55\x0c\x07\x8b\x2b\x42\x43\x39\x66\xfe\xf3\x41\x28\x3f\x4e\xaf\xef\x84\xb2\x7d\x81\xb0\x10\xbc\x20\x7e\xc0\x25\x74\xc1\x11\xa6\x19\x7e\xa6\x02\xc2\x74\x39\x7e\x7e\x3d\x90\x01\x0e\xee\x10\xf9\x30\x0c\xa4\x67\xe7\x1a\x7b\x70\x5b\x4d\x7f\x4a\x70\x41\x0f\x5a\x36\xc7\xb0\x49\x01\x4b\x13\x67\x9f\x9b\xa1\xe5\x68\x0e\x11\xd9\x83\x6d\x9d\xae\x2f\xc6\x45\x0f\x96\xcd\x53\x04\xcd\xc8\x1d\x04\x94\xb7\xd9\x91\x9a\x64\x9c\xb4\xfc\xe9\x5d\x86\x45\x31\x1c\x3f\x8f\x53\x92\x63\xeb\x37\x14\xeb\xb0\x5f\x9a\xbb\x8c\xa5\x60\xfa\x07\x81\xc0\x96\x62\x3d\x94\x71\xa5\xcc\xb9\x86\xa8\xc6\x21\xae\x9e\x5a\x6d\xa6\x3c\x85\x76\x26\xd1\xb9\x6d\x39\x43\xe7\x9c\xe8\x63\xa6\x09\x45\xc2\x40\x3c\x80\x73\xe0\xf2\x64\x0d\xdc\xa4\x9c\x9a\xa6\x8f\x7b\x5c\xef\xac\x69\x23\xa5\xa5\xb0\xb8\xf0\x82\xa4\x7b\x0d\xd2\xdd\x1b\x50\xf6\x7d\x3f\x15\x69\x9f\x70\x3e\x77\x1c\x88\x49\x78\xcc\x35\x7d\x85\xda\x38\xe2\x18\x22\x51\x0f\xa4\xb6\x43\xe6\x73\xa7\xb4\x1c\x06\x62\xd4\x94\x49\x4a\xb2\xc1\xe6\xa4\x7f\x74\xd7\xa9\xbc\x60\x53\x01\x26\x0a\x97\xa4\x8b\xf0\x11\xf8\xf8\x97\x01\x13\x93\xa7\x99\x6b\x22\x93\x38\xbc\x4e\x98\x2f\xdf\xbe\xfd\x6b\x1a\xfd\x78\xa0\xa9\xd8\xb0\x63\x28\x1d\x3e\xce\x0c\xdb\x8f\xad\x8e\xf4\x4f\x47\xd2\xb0\x22\x31\x22\xd8\x36\x44\xe2\xe7\xc2\x66\x4d\x5e\xe4\xd1\x83\x45\x6f\xf3\xa7\x31\x3b\xa9\x55\x97\x42\x23\x65\x12\x00\xe8\x9f\x69\xe3\x86\x9d\xea\xf0\x11\x04\x93\x58\x8e\xae\x1f\x95\x2b\x98\xc5\xf5\x4a\xdf\x0c\xf1\x47\xbc\x4f\x27\xef\x42\xba\x07\x82\x91\x99\xdc\x82\xac\xb2\x2d\x1c\x5b\x3f\x52\xc4\xd1\xf4\x67\x3c\x04\x0e\x17\x51\x79\xb6\xb2\x16\xac\x87\x9a\x58\x3e\xd2\xc0\x97\x0b\xd6\x63\x5e\x97\x2d\x62\x38\x6f\xc9\x23\x9b\x6d\xb2\x0c\xbf\xe1\xed\xc0\x32\x76\x63\xd2\x77\x61\x35\xc8\x88\x75\x53\xdb\xb5\xe6\x53\x20\xb5\x50\x1f\x3d\x54\x49\x77\xbc\x89\x59\x82\x85\xbd\xc2\x2e\x16\xac\xa3\x81\xb0\x59\xcb\x96\x74\x4d\x45\x62\xcb\x08\x61\x83\x3c\x26\x36\xc0\x9a\x74\x36\xd5\x5a\x37\xc2\x05\x82\x75\x94\xc1\xea\x2d\x3b\x59\xb9\x9c\x59\xcb\x9a\x32\x43\xf1\x3d\x4e\x0d\xe5\xde\xb2\x85\x1c\x90\x22\xb2\x7d\xd9\xb4\x81\xb9\x8d\x06\x69\xf0\x8b\xd0\x20\xc7\xac\xa1\x2c\x63\xf2\x9f\xf6\x30\xbb\x74\xa1\x61\xaf\xbf\xa3\x5f\x2d\xc7\xb1\x28\x23\xb3\xb5\x1c\x45\x88\x29\x10\x1e\x20\xf6\xdb\xc2\x35\x9b\xa9\x44\x76\xa2\xe4\x05\x32\x39\x27\x1b\xc8\xb1\x2a\x78\xc3\xba\x96\x2d\x6e\xee\x7f\xd6\xda\xcc\x2c\xdd\xc5\x0c\xe2\xa4\x2f\x54\x49\x89\xcf\x79\xd9\x3b\x56\xb3\x28\xb2\x8a\xe2\x15\x57\x00\x8a\x91\xd3\x97\xf0\x27\xe5\xc5\x6e\xdf\x66\x52\x8e\xaf\x1b\x26\xc5\xa2\x33\xdc\xa4\x8d\x7c\x6a\x89\x73\xe5\x5b\x69\xc2\x9a\xc2\xe1\xc2\x0e\x89\x7c\x1c\x90\x3e\x11\x5c\x21\x95\x83\x15\x5d\xb8\xfd\xec\x01\x81\x28\x34\x4a\x6b\x23\x3d\x50\xdc\x0f\x58\x78\x73\x33\x80\xe0\x32\x38\x65\x02\xac\x5b\xdb\x09\x5a\x33\x94\x9b\x2f\x2f\xde\x52\x2c\xc0\x28\xe1\xb5\x0d\xe7\xa5\x1e\x49\x47\xd4\x8b\xd0\x27\xe5\xc5\x0a\x6d\x5f\x09\x8f\x23\xf5\xe8\x78\x32\xf3\xa3\x5e\x70\xa3\x16\xb7\x4f\x82\x30\x85\x43\x5e\x10\x04\x74\x6d\x4b\x4a\xac\xa1\xed\x83\xdf\xcc\x7f\xba\xba\xc5\xa8\xd9\xb6\x02\xd1\x7c\x0a\x5b\xd1\x1a\xc6\xd0\x76\x42\x7a\x02\x72\x2f\xe3\x50\x46\x0d\x65\xb9\xcd\xa7\xbe\x11\xe0\x66\x71\x29\xa4\x45\x23\x48\xf9\x72\x48\x8b\xc6\x99\x7f\xfb\xf1\x03\x11\x5c\xd6\xb6\x31\xce\xfb\xac\xb5\xfd\x82\x15\x2d\xb8\x7d\xd0\x4b\x5f\x75\x7b\xc5\x2b\xa2\x65\x40\xcb\xcc\x6a\xe0\xe6\x1b\xf9\x51\x79\x21\x5e\xf9\xd1\x9b\x82\x5d\x2a\x04\x4b\x21\xfa\xec\x7a\x3b\x9d\x12\xa2\x51\x78\x96\xe3\x60\x3e\x84\x60\x29\x84\xf6\x59\x00\x58\xc2\xbd\x6f\xe4\xe6\x91\x5a\xbb\x56\x20\x7f\xfa\xea\x00\xc6\x7a\x23\x38\x61\xdf\xb7\xcd\xcc\xa7\x07\x56\xe7\x23\xcd\x7c\x85\x4e\x3f\xa1\x7e\x6e\x85\x3f\x65\x75\x12\x86\x75\xbd\x61\x49\x2c\xb9\xb7\xdd\x83\xb0\xaf\x83\x63\x10\xeb\x75\xbd\xa7\xbb\x97\x2f\x1d\xcc\x78\x40\x2d\x95\x1d\x50\x5b\x2e\xfd\x34\xc1\xc4\xe6\x53\x45\x80\x7b\xaa\xb1\x25\x59\x43\xa2\xa0\x68\x72\xb9\xaf\x4c\x97\x1d\x89\x0f\xe5\xce\x31\x03\x92\x94\x84\x71\x5c\x8e\xb0\x41\x98\xcb\xf5\x76\x1c\x30\x78\xd9\x01\x36\x46\x98\xe9\x1d\xbe\xa3\x56\x71\x1a\xd1\x50\xd7\xdb\x48\xf5\x03\x29\x65\x78\x0a\x6f\x00\xd6\xdb\xf8\xe4\xdc\x10\x0a\x8f\xd2\x08\x3a\xb9\x3e\x32\xe3\x88\xff\xb8\x08\x6f\x51\xeb\xdf\xc0\xc2\xf5\x19\xb0\x73\x83\xe4\xf4\x33\x20\x2d\xb6\x50\x2c\x42\xa7\x34\xc2\xca\x2d\xe3\x51\x88\x24\xb9\xc0\xa3\x10\xc9\x6d\x19\x8f\xd2\x9f\x6a\x7f\xa2\x3c\x27\x41\xa7\xb0\xc1\x15\xee\xe2\xee\x02\xd5\xfa\x69\x0d\xcb\xf9\xe1\xe4\x79\xa5\x50\xcb\x80\xf5\xe1\x78\x16\xb1\xbe\x04\x56\xb9\xfb\x1e\x52\x4c\x82\x58\x57\x2e\x98\xff\x63\xec\x4d\x72\x65\xd9\x95\x74\xbd\xfe\x1d\xc5\x9a\x81\xdc\x59\x13\x38\xd8\x1d\xb5\xa5\x39\x90\x11\xe1\xc2\x6b\xbc\xcc\x8b\xab\xcc\xf9\x0b\xb4\xef\xff\x63\x2b\x95\xc2\xdb\xa7\xb1\xb0\x48\x73\x06\x6b\x1a\x8d\x56\x36\xb9\x22\x5c\x6f\xac\x2a\x85\xaa\xdf\xe8\x39\xfb\xf8\xa3\xd7\x22\x27\x7c\xeb\x0d\x53\xca\xb2\xd8\xb7\xc2\xb4\xa9\x1e\xdc\x39\x99\x03\xf8\x66\x23\x24\x17\x8d\xf9\x11\x6a\x20\x10\xcc\x1c\xee\xfa\xa2\x11\x8d\x52\xb4\x99\xaa\x21\x1a\xd7\x74\x2e\x5c\x7b\x79\x54\xf1\x58\x95\x2f\xd4\xf5\x46\xf7\xdd\x27\x08\xd7\x1b\xbe\x73\xe4\x7a\x63\x78\xcc\x7a\xbb\xea\x9c\xa2\xe6\x32\x87\xe7\x27\x38\x03\xf2\xad\xb7\xde\x22\xe4\x3c\x12\x5c\x71\xa8\xd1\x70\xc5\xd1\xe4\x59\x6e\x7d\xc4\xa8\x16\x5e\x8f\x18\x32\x0a\x35\x7e\x72\xbc\xb0\xf4\xa6\xfa\x68\xb3\x69\x6a\xc3\xdb\x86\x2d\x1d\x96\xf5\x63\xa6\xb3\xcc\x9e\x2b\xd2\xee\x72\x2b\xb1\xbb\x34\x27\x8a\x14\x63\x41\xf6\x47\x86\xb9\x2a\xca\x8e\x11\x79\xf8\x91\x68\x5a\x37\xed\x47\xb4\xbd\x78\x6f\xf2\xa7\x71\x8b\x23\x12\xba\x32\xa7\xbb\xd1\x7b\xa2\xff\x27\x31\xf6\x89\xfe\x7f\x1a\x6d\xca\xc2\x27\xe3\x96\xdc\x21\x1a\x6e\x72\x4c\xb5\x2f\xf8\x04\xc2\xb5\x5b\x41\x10\x24\xf4\xde\x04\x41\x90\x77\xa5\x7d\x73\x94\x21\x43\x37\xe2\xde\x21\xa4\xb8\x43\xdc\x9b\x6f\x35\x72\x8b\x4f\x00\x69\xb0\xc3\x54\xbe\xc9\xd9\xd2\x0e\x53\xf9\x33\xb4\xa4\x2c\xef\xd7\xaa\xdc\x66\x64\x45\xd9\x98\x6b\x36\xf5\xbe\x99\xdc\xe2\x5a\x1f\x7a\xa0\xa2\xe0\x73\x48\xfa\x2d\x39\xb1\x44\xe9\xfb\xc6\xea\x79\x24\xb5\xa2\xb3\x5b\x5d\xb8\xc6\x4f\xd5\x21\x48\x0e\x21\xf8\x7d\x4f\x4d\xa7\xfa\x20\x52\xb8\xbb\xf0\xe9\x7d\xf2\x40\xe1\x46\x4b\x0c\xbf\x11\x06\xdb\xc4\x68\x23\xe1\x15\xc3\x74\x23\xe1\x95\x29\xff\xbe\xf5\xa8\xf7\x34\x10\x4e\x4f\x8c\xab\x2d\xa1\xae\x2e\x80\x8d\x25\xbd\x9c\x9f\xed\x10\xf1\x96\xdb\x0b\xc1\xd9\x2e\x9a\x94\xa5\xf5\xd5\x12\xc2\xcc\x23\x18\xd7\xc9\xc6\xba\xb8\x1e\x5c\x1b\x7b\xd8\xec\x93\xa2\x16\xb7\x96\xc5\xd9\x68\xa4\xfe\x59\x88\xb9\x6f\x6d\x29\x68\xfe\x8d\xdc\x56\xe6\xb8\x9b\x98\x0a\xb2\x47\x24\xde\x7f\x93\x29\xe5\x4e\xc1\xd0\x95\x30\x58\xd1\xff\x93\x24\xc5\x9b\xb8\x09\xde\xb6\x18\xbc\x27\x89\x63\x09\xf8\x7f\x0f\x5d\x7b\x1b\x8b\xf7\xa1\x1b\x72\x87\xc5\x7b\x93\xc5\x04\x31\xfe\x9b\x94\xb8\xb7\xe2\x28\xe8\xf2\x22\xe4\xff\xc9\xba\x2c\x17\x1d\x64\xf5\x26\x74\x82\x54\xaa\x77\x48\x84\xb3\x50\xc6\x0e\x89\xf0\x9d\xc5\x6f\xdd\x21\x11\xce\xd5\xa3\x8e\x7d\x20\xd4\xbc\x09\xab\x20\xb2\x75\x27\xc9\xf6\xdd\xbd\x60\xf0\x8a\x7f\x43\x58\xff\x3b\xbb\x0d\xd9\x29\x35\xe5\x98\x2e\x4d\x1e\x3a\x51\xd5\xbf\x8b\x57\x8f\xe7\x2e\x9e\xe2\x52\x7e\xdd\x08\x8e\xa5\xec\xb7\x89\xa9\x20\x87\xb6\x3b\xc4\xc8\xd9\x58\x06\xc1\xb1\x44\x94\x3b\x05\x4b\x48\x7a\x80\x3b\x04\xc7\x39\xbb\xd7\x81\x81\x46\x77\x2d\x9c\x98\xa1\x6e\x43\x6d\x8e\xa4\xf6\x23\x0a\x90\x14\x60\x76\xc8\x98\xf3\xfd\xfd\x46\x4f\x5d\x4f\x44\x86\xd5\xf1\xc9\x92\x29\x0c\xe5\x02\x37\x81\x67\xb7\xe4\xcd\xda\xbb\x11\xc3\x21\xcb\xc3\xe9\x0e\xc3\xfb\xe2\x75\xca\xc6\xfb\xfe\xc8\x29\x1c\xfe\x25\xc6\x84\x53\xb9\xd8\x2a\x60\xef\x9d\xf5\x50\x4a\xfe\x48\xc0\xe1\xac\x9c\x76\x6b\x57\x36\xc6\x31\xdc\xf3\x60\x7e\x68\xf9\xb3\xae\x08\x0f\x24\xac\xc3\xe5\x38\x79\x67\x11\x20\x2e\x1b\xc6\xe2\xe2\x9f\x6d\x05\x7b\x10\xed\xb2\x33\x86\x38\xa2\x7a\x76\x46\xd9\xf2\xae\xce\xc6\xf6\x68\x6e\x65\xc7\x5d\xa8\xbe\x4b\x85\xc5\x8d\x80\xb4\xbe\x1f\xc3\x5b\xfc\xa5\x36\x63\x23\xcb\x10\x7f\x13\xfc\xa1\xde\xdf\x6c\x9c\x3b\xff\x30\x5e\xf7\xd2\xd1\xdc\x11\x19\xa2\x49\xd7\x73\x47\x2c\x88\xac\x57\xe5\xce\xc8\x53\xa5\xbc\xb0\x33\x76\xe5\xc3\x95\x42\x0d\x64\x4d\x5e\x3c\x9d\xee\xef\x2f\x99\xbc\xa9\x8f\x18\x5f\xea\x44\xc8\x89\x80\x88\xc2\x2d\x27\x02\xd2\xc3\xd8\x19\x6f\x11\xc9\x1f\xd9\x07\xd9\x1f\x61\x73\x79\x39\x37\xaa\x20\xd5\x15\xa3\xae\xe4\x5c\x2c\xae\xae\x87\x2c\xc9\x6b\x75\xbd\xea\x20\x15\x21\x3b\x9f\x72\xba\xb7\x15\xed\x41\x8e\xd8\x76\xe1\xdd\xd3\x9d\x8b\x43\x24\xf4\x52\x86\x30\x93\xb3\xb1\x9c\xdd\xf5\xc4\x69\xd7\xad\x53\xd8\x6d\x30\x4b\x76\x41\xd9\x53\xd4\xe6\x2e\xd0\xbb\xbd\xfd\x19\x73\x17\x2e\x54\x21\xee\x02\x1f\x3e\x39\x17\x8b\xab\x6d\x8a\xdb\x82\x2e\xf4\x5b\xa0\x6b\x86\x86\x2c\xfe\xa6\xc8\x86\x22\xdd\x8a\xea\x7a\xb4\xba\x74\x36\x04\xab\x49\x8f\x7d\x87\x65\x97\x25\x03\x61\xd9\xed\xb5\x95\xb0\xec\xad\x0f\x7f\xd3\x6e\xf7\xc7\xf0\x92\xa1\xf5\xaa\x98\x75\xdd\x3c\x00\x36\x72\x56\xa9\x94\x10\xb2\xfd\xf4\x80\x0e\x11\x35\x40\xec\x0f\x42\xb6\x37\x29\x70\x28\x48\xbb\x94\x32\x76\xc8\x55\xb3\x04\x63\x04\x69\xb7\x3a\xe3\x0e\xb1\xea\x2d\x85\x0d\x22\xad\x9f\x71\xd0\x62\x03\x57\xe9\xc0\x37\x3d\x89\x78\x99\x6f\x39\xff\xbf\x85\x0f\xc3\x72\x3c\x7b\xab\x35\x3d\x7a\x78\x45\xef\x10\x79\xde\xf2\x1e\xaf\xc0\xea\xf5\x16\x26\x6f\xba\x13\x45\x91\x29\xb2\xba\x9e\x07\xbb\x49\x54\x22\xf4\x1d\x66\xdc\xad\x0f\x7f\xe4\xca\x9e\xce\x42\x6c\x0a\x3f\x48\x5a\x29\xd5\x19\xe2\x9e\xdb\x4f\x97\xe2\x9e\xd7\x5b\x48\x32\xcc\xaf\x93\x18\x58\xc4\x39\x3f\x15\x69\x6c\x38\x65\x93\x55\x03\xd1\xcc\x0f\xc9\xa3\x9f\x6e\x50\x9f\x88\x32\xbc\xf1\x1b\xdb\x36\xa4\xd8\x72\xc1\x47\x58\xf2\x93\x55\x27\xb8\x70\xa4\xda\xa2\x48\xe4\x52\x18\x50\x24\xf2\x24\x85\x95\xdd\xb6\x42\xb9\xf9\xa7\x71\x1b\x0a\x9f\xf4\xa1\xa1\x36\x65\x83\x76\x11\x9a\x92\x23\x7d\x69\xde\xec\x2e\x5d\x17\x5d\x41\x7d\xa8\x4b\x43\xd9\xc1\x29\x74\xc5\x78\x8a\xd7\x06\x09\xb3\xeb\x26\x29\x2a\xb1\xca\x9b\xc4\xec\x5b\x56\xd7\x77\x73\x36\xce\xaf\xf0\x49\xc7\x89\x9b\xc4\x87\xbb\xcb\x99\x8f\x08\x1f\x0b\x43\x8b\x0b\xc7\xb9\x9c\x2e\x8b\x94\x44\xe7\x52\x21\xc8\xf5\xb6\x24\x04\x79\x93\x66\xc2\xee\x3c\x51\xb5\xed\xc2\x28\xfb\x36\x35\x11\x46\xd9\x4d\xf2\x14\x82\x8e\x27\xf1\x8e\x88\x32\xde\x24\xda\x20\xc8\xf8\x19\x89\xaa\xe1\x74\x4b\xe5\x67\x77\x49\x16\x44\x31\x85\x4d\xf6\x3d\xb3\x2b\xd2\x09\xd6\x0c\x11\x8b\x4c\xe4\x54\x87\x73\x21\x4d\xa2\x1d\x32\xd4\xac\x28\x34\xc4\x0a\x3f\xd5\x3a\x1b\x91\x8d\x75\x99\x84\x65\x75\x93\x30\x63\x4b\x66\xaa\x17\xec\x0e\x99\x69\x13\x7b\x5c\xa1\xc2\xe7\xd0\xc5\x33\x70\xe1\xa0\x57\x29\x11\xc0\xb3\xbc\x81\x6e\x79\xae\x1f\x42\x0d\x03\xbf\xab\x7a\x6e\xef\x41\x5c\x5d\x1d\x2e\x64\x9f\xe2\x84\x12\x1e\xfc\x0c\x45\xd5\x22\xdf\xd4\x53\x73\x0f\xdd\xf0\xc9\x85\xa3\x83\xf7\x9f\xbd\xa6\x28\xe6\x77\xbd\x75\x49\x21\x6c\xec\x92\xbf\x12\xd8\xfb\x9e\x92\x6c\x39\xb2\xb7\x1e\xa6\x3b\xe4\x8b\x36\x38\xde\x18\x41\x8b\x53\x47\x74\xee\xf3\xcb\x5b\x59\xa2\xfa\xe9\xc6\x0d\x91\x62\x13\xbf\x4d\xe1\xb9\xc5\x9d\x54\x78\xee\xe1\x77\xa8\xec\xa5\xfd\xb8\x1c\x5b\xaf\x5f\x06\x1e\x56\xce\x4d\xdc\x53\x62\x69\x67\x19\xd7\x10\x2d\xbb\x89\x4b\x44\xb0\xec\x26\xd6\xc1\x0e\x61\x5f\x13\xfb\x86\xc8\xd9\x4d\x1c\x3e\x45\xce\xae\x77\x77\xd1\xd8\x0a\xb7\x1b\x84\x25\x22\xe2\x49\xee\xe1\xdb\xb7\x5a\x10\xa2\xc8\x9e\xc9\x12\xea\x66\x9e\x5a\x33\xcd\x6d\xc8\xfe\x9a\xdf\x4d\xb8\x83\x17\xf3\x62\x4f\x5e\x8b\xed\x9b\xe5\x2e\xac\x2e\x1b\x2a\x34\xba\xe0\x42\x9c\xd7\x4c\x8a\x23\xce\x9b\x72\xc5\xaf\x58\xda\xc3\x0f\xec\xc9\xb1\xd3\x3e\xc6\xe5\xbb\x38\x1b\x04\xcf\x3e\xbf\x74\x51\x0e\x96\x5e\xa8\x53\xcf\x45\xdd\x12\x18\x40\x0f\x3f\xb8\xa7\x14\xdd\xf4\xf4\x9d\x5e\x7c\x15\x0e\xb5\x11\x53\xd2\xe1\xe8\xdd\xbe\x81\x14\x22\x7b\x8e\xe6\x8a\x5a\x14\x55\xef\x45\x6c\xe9\xca\x9b\xc2\xde\xda\x70\x32\x96\x26\x12\xf0\x20\x80\xf6\xd9\x19\x6e\x34\x96\x4d\x27\x22\xc2\x62\x37\x53\xcb\x48\xea\x4c\xc3\x21\xa9\x33\x81\xb7\xd8\x35\xc2\x03\xf2\x00\x3f\x9a\x3f\xc6\x46\xd1\xd6\x0c\x49\x5d\x33\xc9\x86\x68\xce\xb7\x12\xb2\xb8\x39\x74\x8d\x22\x8b\x33\x31\xb3\xa4\x80\x2a\x22\x0d\x83\x6b\xd3\x41\xe1\xff\xbd\x99\xea\x58\xc2\xd4\xcd\x45\xb9\x2d\x74\x51\x2e\x76\x8d\x86\x4c\xc8\xec\xa9\x10\xa2\x7b\x79\x13\xb9\xd1\x37\x59\x57\x0c\xf5\xe7\xfe\x86\x6c\xc3\x17\xf0\xc2\xe8\xc6\x44\xcb\x12\x06\xd6\x4d\xb3\xb4\x53\x84\xae\x17\x68\x40\x5b\x21\xac\xb3\x53\xf5\xd0\x82\xe7\xf0\x9d\x14\xf1\x13\x85\xac\xe5\x10\xfe\x16\x59\xbb\xb8\xe6\xdd\x7b\xd0\x89\x6e\xa8\x30\xdd\x6e\x72\xac\xb2\x97\x98\x15\x5d\xfd\x41\x25\xa1\x7f\xcb\x86\xde\xb0\xa4\xcd\x7b\x6d\xc5\x5e\x51\xff\xf0\xeb\x63\x36\x48\x08\xd2\xda\xd0\x83\x30\x2c\xb7\xbb\xd4\x29\xf6\xc6\xe2\x41\x4a\x79\x7b\xb3\x4f\x74\x5f\x60\x9a\xed\x4b\x69\xeb\x52\xcf\xce\x06\xb2\xd1\x95\x80\xa8\x4c\xfe\xd7\xf7\x66\xd7\xe8\x0a\x40\x52\xe6\x7b\x59\x76\xdb\x97\x1b\x0c\x16\x66\xfe\xb3\x30\x73\x23\x37\xab\xb7\x28\xbe\x0d\x9f\x43\xf4\xc8\x16\x4f\x4b\xf4\x3a\xb2\x31\xe3\x74\x59\x66\x4b\x3d\x6f\x87\xfc\x2b\x2b\xe4\xd6\x0e\x19\x57\x16\x67\x7d\xe3\xd5\xdd\x28\x1d\xe7\xec\x73\xe8\xe6\x40\xac\x65\xbc\x28\x6f\xec\x92\xdc\x6f\x09\xb2\xa4\xca\xb7\x37\x4a\x8a\xd2\xfa\xdb\x7b\x6b\x9e\xd5\x79\xd1\x6c\x3a\x01\x48\xa4\xbe\x3d\x22\x6e\xcd\x2d\x0e\x02\x02\xaa\x2e\x41\xd7\xc6\xe2\x7a\x88\xd9\xb0\x41\x01\xd5\xdf\xf0\x43\xec\x36\x63\xdd\x85\xa8\xf1\xb8\x3e\xcc\x60\x7a\x41\x79\x4b\x45\x6f\x87\xc5\xf5\x2d\x3b\xa2\xfd\x62\x1b\x7c\x73\x1c\x0d\xa1\xc9\x97\xa8\x39\xad\x6e\x18\x55\x27\xa9\x61\x6c\x8c\xaa\x8d\xc5\x91\x4f\xf9\xb0\x62\x0a\x6d\x8c\xf9\x02\x23\x08\xef\x85\xc8\x29\x7b\x7a\x5e\xdc\x1b\x42\xd3\x2f\x74\x46\xa4\xf6\xb7\x43\x02\x75\xd7\x5b\xcf\xaf\x17\x16\x51\x12\xd6\xef\x17\xe8\xa2\xf9\x63\x4c\x96\x30\x4b\xc8\xa0\x9a\x11\x1d\x9e\xdc\x4d\x81\x61\x42\xdd\xef\x6f\x23\x41\x5e\xe8\x94\xbc\x10\x36\x48\x2b\x70\xbf\xd0\x4a\x1c\xdd\x5f\xe3\x98\x34\x7f\xd4\x6c\xa9\x4d\x9e\xf7\x52\xfc\xdb\x2f\x3c\xbe\x16\x7f\x5c\x87\x94\xd3\x63\xe2\x85\xb2\x9c\x99\x7e\x2f\xbd\xfd\x85\x3a\xe4\x12\xfe\xfe\xfe\x94\xed\xe6\xe5\x5c\x84\xd2\x51\x1f\x36\x73\xab\x36\xb7\xbc\x5c\x6a\xe2\x75\x1d\x75\x97\x85\x74\x17\x45\x2b\x4f\xef\xcd\x9d\x08\xad\x79\xef\x2f\x3c\xbd\xfb\x38\xbc\xc4\xcb\xea\x6e\x86\xb9\x56\x87\xd8\x7c\x5e\x95\xe0\x5e\x0d\xa1\x2b\xd9\x65\x4b\x17\x79\xbf\x85\x83\xbe\xd9\xd8\x26\xdd\x39\xb8\x04\x3a\xd8\x38\x81\x2f\xdf\x8a\x62\x9f\xe8\x8c\xbd\x41\x57\x9a\xaf\xb7\x77\xed\x54\x36\xba\xae\x55\x91\x0f\x78\x09\xf1\x36\x22\x33\xaf\x67\x88\xcc\xb2\xcc\x2c\x36\x12\x33\xcf\xd6\x1b\x86\x55\xf3\x0f\xf5\xb0\xd4\x5e\x7c\x4b\x61\x56\x38\xfc\xad\x8b\x4d\x53\x8b\x49\xb7\xa7\x4b\x26\xdd\x66\xc5\xbe\xd9\x9b\x1e\x26\xa6\x14\xda\x6f\x6f\xf4\x97\xf4\xf4\x7e\xeb\xe9\xa0\xd3\x19\x9e\xc9\xbf\xac\xf3\x0f\xd5\x88\x87\xf0\xd1\x7d\xa8\x83\xf4\xe1\x69\xdb\x5c\x34\xb6\xb8\xa6\x92\x38\xf9\x43\x04\x97\xe2\xe4\x9b\x33\xfc\xd1\x86\x1f\xce\x6a\xcb\xa8\x95\xb3\xe3\x4b\xea\x7f\x16\x6b\x12\x62\xbf\xf8\xd1\x1e\x9e\xc8\xdb\xef\x5a\x23\x88\x7e\x71\x7f\xe8\x1d\x33\xf0\x41\xff\x44\xc4\x34\x86\xcb\x52\xf7\x20\xc0\x7e\x56\x68\x02\x02\xec\x9f\x9e\xfb\x87\x31\xe7\x9a\xba\x0f\x78\x56\x0a\x39\x1b\xa3\x66\x53\xa0\x61\xd4\x9c\xaf\xef\x0f\x83\xcd\xd5\xdc\x22\x33\x27\xb4\x12\x46\xcd\x69\x8a\xe8\x55\x44\x7d\x29\x86\x28\xa2\xfe\x30\x33\xfa\x09\x4d\x00\xc5\x51\xde\x61\xe2\x9c\x7d\xc4\xf1\x7c\x6e\x66\xe3\xa3\x67\x55\x75\x76\x84\x6d\x90\x48\xb8\x47\x5b\xf6\xdb\x0a\x94\x8f\x90\xd9\xc3\xad\xda\xbf\x59\x62\x8a\xd2\xfb\x67\xaa\x83\xaa\x89\x77\x73\x75\x8e\x8b\xa0\xb9\x2c\xf2\x82\x6f\xd9\xc0\xcb\xa2\x9f\x1f\x31\x5d\xbf\x65\x03\xd9\x8b\x97\xf3\xe8\x99\xa5\x25\x0b\xa3\xe6\xe6\xfb\xf9\x11\x06\xd5\xde\x7b\xf4\x1a\xd6\xba\x84\xfb\xf3\x66\xde\xe9\x23\x3f\x04\xae\x07\x61\x50\x71\xd1\x70\x26\xd4\xdd\x66\xf4\x40\x1c\x8b\x47\x6e\xef\xd5\x75\x98\xa5\xb7\x7f\x27\xfc\xee\x1f\xc6\xf6\x12\x5b\x24\xfc\xa4\xdb\xbf\xd6\x7e\xc4\x3a\x75\x5f\x79\xc8\x89\x1b\xf0\x88\x10\x6b\x2e\xab\xa3\xa0\x6a\x43\x12\x60\x26\x49\x98\x49\x37\xa9\x96\x10\xf1\xff\xfc\x52\x1d\x0a\x87\x9c\x16\x63\x3d\xde\x60\xa7\xda\x39\xae\xd8\x52\xa0\x95\x93\x23\xa8\xf9\x54\x0e\xca\x7a\x38\x7b\x5e\xfc\xe9\x72\x51\x5e\xfc\xc3\xf5\xc4\xc4\x06\xd7\xe3\xe4\x5a\x78\xbd\xea\xca\x69\x62\x5d\xcf\x8e\xce\x16\xe5\x78\xb6\x07\x36\x9f\x44\xf9\x6f\x33\x88\xb6\x49\x90\xff\xc6\x69\x9c\xc4\xf8\xcf\xc9\xdf\x62\xaf\xcd\xae\x6f\xbc\x09\xa6\x6a\x09\x0e\xfe\xf5\xcd\x85\x52\x8c\x9b\xe7\xca\x9f\xce\xb5\x68\x2f\x2b\x17\xe1\xce\xbf\xbf\xe3\x10\x37\x0d\x23\x9c\x30\xe6\xea\xdc\x8a\x59\x75\x51\x78\x11\xc3\x1f\x43\x3d\x38\xce\xc8\x24\xf6\x7f\x9b\x97\x73\x11\xbe\x34\x6b\x1a\x83\xcd\xc7\x4b\xfa\xe4\xee\x28\xe9\x5c\xa8\xf6\x64\xf5\x6d\x45\x00\xa3\xe2\x6f\x3d\x4a\x6a\xbe\xf5\xbe\x9c\xfe\xc8\x0d\x5e\x9d\x8d\x48\xd7\x43\xf3\x86\xd1\x1b\x87\x69\x8e\xb0\x85\x96\xf3\xd6\x93\x0b\x5d\x83\xae\x45\x0d\x5e\x02\xfc\x96\x93\x63\xaa\xfc\x0d\xf6\x45\xd3\x3c\x6e\x42\xce\xa8\xaf\x71\x7d\xa3\xf9\x7e\x72\xa1\x10\x33\xfe\x68\xc7\x73\x8a\xb2\xe0\x6e\x83\x3b\xb0\x53\x6b\x48\xc6\x33\x11\x54\x4e\x2e\x85\x19\xed\x54\x0e\x6c\xd2\xfd\x91\x63\x3f\x9d\x0d\x95\x4c\x0d\x12\xb1\x79\xd7\x20\x43\x4e\xde\xe6\x5d\x95\x5b\xa1\x90\xe9\x16\xc3\x06\xb9\xb8\x0d\xe8\xa4\xe1\x6c\x38\xba\x4d\x2e\x1a\x3e\x87\xba\x9a\x88\x0d\x98\x6e\x95\x0c\x86\x21\xf1\x91\x4f\x2e\x7c\x9e\xbb\x6b\x6c\xc0\xdb\xbf\x8b\x83\x7c\x0f\xe5\xe6\xaf\x9f\x5e\xdc\x51\xed\x31\x2d\x32\x16\xd1\xbc\xe2\x4e\x0e\xb4\xdc\x93\xb2\xcc\xa3\xda\x0f\x84\x99\x75\x70\x90\x8f\x77\x21\x80\x5b\xaf\x53\x9d\x23\x4c\xa0\x87\x3b\x17\xe1\xe6\xbd\x8e\x12\x9e\xa3\x43\x70\xb2\xa1\x3b\x9a\xfd\xc3\xe8\xb9\x36\xf2\x8d\x8f\xd9\xdb\x39\x9e\x45\x1e\x48\xbc\x67\xc6\xf7\xe3\x27\x1e\x74\x9a\x80\x40\x97\xe8\x58\xcc\x71\xeb\x6d\xe3\xee\x04\xef\x63\x26\xb5\x28\x9e\xe3\xd4\x90\x83\xe7\x58\xbc\x8e\x6c\xd6\xe4\x6f\xe1\x84\x51\x27\x29\xe4\xf1\x09\xc6\xdb\xc9\xf1\x00\x9f\xfe\xb8\x62\x75\xfc\x31\x7c\xe7\xe9\x58\x63\x54\x3d\x93\x86\x11\xa4\x66\xd1\x21\x0f\x33\xea\x46\x84\x83\x93\x8b\x83\x9c\xba\x72\xf4\xbb\x2a\x97\x7f\xfd\x54\xbc\x8b\x9d\x5c\xec\xd4\xea\x5a\x40\xfa\xdd\x45\x83\xa8\x98\x2e\x8a\x7c\x6c\xba\x6c\x6c\x5c\x21\x12\xe4\xf8\x44\x88\x3f\x39\xed\x95\xa2\x2c\x48\x56\x0b\x90\xc4\x68\xeb\xee\x5e\xcc\x79\x66\x92\x13\x8a\xcf\xdd\x1f\x43\x52\x3a\xb4\x3d\x92\x04\x1a\xee\x91\xb8\xdb\xd5\x3f\xe5\x85\xa4\x5b\x20\x49\x36\xea\x4e\x48\x26\xe5\xaf\x4b\x6b\xab\x3e\x61\xb7\x81\x1c\xec\x64\xb9\x7b\xbe\x5f\xe3\x3c\x09\xf7\x26\x11\xa6\xdf\xb2\x2d\x54\x5b\x5c\x34\x36\xa2\x56\x37\xe4\xf5\x0a\x64\x76\x72\x8c\x54\xbd\xc7\x20\xab\xeb\xf2\xc3\x7e\x7b\x6a\x3f\x27\x09\x46\xa6\x9a\x24\x8c\xc1\xed\x75\x92\x4e\xe8\xf7\x6b\x20\xca\xac\x91\x89\xe9\x2a\x84\x9b\x88\x6c\xad\x0b\x47\x9e\xee\x7d\x53\xe1\xe9\xbe\xa3\x88\x30\x47\x08\xd8\xef\x5b\x1f\xb3\x90\xda\x48\xca\x6a\xb6\x9b\xb2\xd0\xf5\xc3\x3f\xd5\x3e\x9e\xca\x12\xa9\xb4\x2b\xa7\x13\xe8\x8f\xe1\x24\xbe\x31\xd4\x2c\xc2\x6c\x38\xcb\xec\x6a\x5a\xb2\x5e\xc1\xf3\x8f\x54\xf7\x29\x1b\x57\x7b\x56\x2b\x68\x62\x22\x02\x3c\x59\x24\x67\xee\xe0\x0c\xad\xeb\xec\x8f\xf0\x40\x45\x4e\x20\xf2\x1e\xba\x32\x43\xe2\xdd\x70\x17\x7a\x72\x25\x72\x1a\x99\xf6\x82\x67\x01\x2f\x0d\x55\x13\xa8\x87\xae\xf0\x47\x48\xb5\xef\xf2\xfd\x88\x24\x4c\x9b\x0a\xdf\xf8\xd3\x97\x6f\xc6\x2b\x48\x17\xb2\xcf\x2c\x78\xfa\x7e\xc5\x92\x5d\x9d\xf7\x82\xab\xe2\xcd\x3a\xf9\x97\x41\x1d\xea\x2e\x2e\x7a\x91\x4e\x67\x63\x64\xc5\x39\x9e\x14\x3a\x30\x05\xad\x09\x13\x43\x45\x54\xbb\xce\x0f\x82\xeb\xd4\x86\xb3\xbc\xc0\x34\x81\xf2\x86\xdf\x84\xb9\x42\xac\xdc\x66\x51\x4d\x7a\x3d\x6a\x22\xc2\x01\xfe\x68\xd9\x45\xd1\x00\xad\x53\xd9\xce\xc0\xfd\x53\x36\xdd\x74\x33\x81\x83\x4a\x52\x0e\xee\xe0\x70\xbd\x2f\x7e\xea\xaf\x30\x49\x75\x66\x64\x19\xde\x34\xc1\x65\x69\xb0\x2a\xac\xcb\x45\x35\x61\x8a\xd0\x3c\x6b\x10\xdc\x97\x73\x60\x33\x2d\xb2\xbc\xde\xdf\xc2\xcb\x61\x36\xde\xb0\xc6\x38\xb9\x9b\x2e\x65\x65\x99\x16\xe7\x98\x96\xe6\x2c\xd7\xdd\x74\x45\x10\x3c\x3a\x9b\x45\xa2\x14\xed\xe6\x02\xff\x3c\x5d\x6e\x87\xf3\x36\x5d\xd5\x9b\xaf\xac\x55\xc5\x8c\xa0\x69\x9d\x2b\x78\x3d\x89\xb2\x0a\x03\xef\x9c\xd4\xa9\x0a\x5e\x2f\xfe\x65\xc4\xe9\x17\xb1\x1c\xb6\xdf\x0a\xd6\x77\x72\x11\x20\xf4\x5b\x32\x14\xca\x35\x29\xb2\x04\x6f\xda\x3b\x58\x82\x67\xa1\xba\x3a\xd5\x1d\xd5\x13\xd4\x4a\xd3\xf5\x5c\xa1\x4f\x8a\xbf\xc5\x24\xf8\x60\xe2\xcc\x7e\x8a\xce\xaf\xd2\xd1\xd6\xe4\xca\x84\x7c\x7e\xb3\x9b\x51\xaa\xf0\xd2\x4a\x68\x28\x41\x86\x54\xf7\x2f\x78\x04\xb3\xf8\x9b\xce\xde\x54\x36\x90\x6d\x71\xae\xd3\x8a\xc6\x12\xc6\xb9\x53\xa7\x0d\xe7\xf6\xbe\x14\x43\x41\x41\xfe\xfd\x4f\x8e\x03\xa3\xed\x58\xd9\x0a\xc2\xef\xe8\x20\x4c\xdd\x6b\x95\xa7\xfe\x70\x1b\x41\x69\x5c\xba\xea\x43\x09\x21\x5d\x42\xe0\x35\x68\x0b\x13\xe2\x75\x6b\x46\x34\xac\xad\x19\x71\x96\x97\xb5\x76\x54\x13\x77\x4a\x3b\xaa\x81\x1a\x6a\x55\x8e\xfb\x47\x28\x1b\x57\xf7\x63\x68\xcb\x34\x14\xaa\xba\x4e\x44\xd8\x73\xcb\xa1\xea\xc9\x31\x25\xfe\xa5\xfa\xf0\x47\xd5\x94\x53\x36\xd0\xb9\x86\x86\x79\xb7\xa9\xdf\x86\xc0\x3c\x69\x9b\x60\xde\xfd\xed\x2d\xdc\x2a\xbf\x1c\x5a\x6c\xb7\xa6\x73\x85\x52\xc4\x34\x55\x29\x7b\x6e\x6d\xbe\xc6\x9b\xab\x5f\x2e\x1b\x4b\x26\xaa\xbe\x4d\xb5\xa9\x2c\xce\x04\xba\x96\xa5\x71\x4b\xe8\x76\x0c\x67\xf6\x32\x21\x3f\x39\x4d\x90\xfa\x87\xb7\xc9\x74\x27\x65\xe3\x8c\x09\xe3\x85\xfe\x44\x9b\xba\x16\x1a\x7e\xce\x3c\x12\x08\x08\x21\xce\xe6\x2b\x43\x3f\x3c\xc8\xa5\x9b\x70\x42\xb3\xa2\x26\x11\xa4\x18\x78\x8f\xe1\x8a\xe2\xad\x3f\x9b\x46\x02\xfd\xd0\x34\x97\x5c\x27\xc3\x13\x44\x88\x9d\xec\x8f\xd1\x57\x61\xb7\x86\xc2\xe8\xf4\x2a\x6c\x30\xae\x57\x1e\x5a\x63\x7a\xbe\x78\x4e\x75\x6d\x9a\x8e\x53\xeb\xa9\x49\xe8\xba\x6d\xf4\x4a\x09\x45\x8b\x5c\xb4\xc9\xd1\xb3\xb8\x35\x96\x50\xb3\x50\x70\xcf\x93\x8b\xfd\xd5\xfc\x2d\x66\xaf\xb9\x8d\xa0\x9f\x8b\x6b\x09\x5b\x8c\xe1\x16\xc2\xbf\xbf\x90\x50\xc7\xc9\x8c\xae\x0e\xfc\xdc\xfb\xc1\x26\xfd\x0b\xed\x60\x14\x2c\x66\x73\xc9\xb8\x28\x74\x83\x86\xad\x79\xbe\x75\x59\x75\x94\x88\xbb\xd6\x27\xb4\x2d\xe4\xb2\xe9\xe4\xa2\xa3\xdd\x45\x5f\x11\xe3\xc8\x4d\xbc\xe3\x19\xec\xe6\x83\x52\x29\x2e\x19\x5b\x40\x58\xa4\xf3\x62\xef\x6a\x3e\xc8\xd4\xcb\x5d\x0b\xba\xb4\x7b\xd2\x08\xb2\x38\x5c\x32\x68\xa3\xe1\xd9\x46\xc3\xae\x7b\x2d\x10\x01\x27\xcf\xf0\x46\xff\xc4\x53\x8c\x99\x48\xd2\x2b\x51\x36\xe9\xdd\x55\xe1\x4e\xc2\x6f\x4f\x94\x2f\x66\x77\xc5\x6f\xca\x6a\x9c\xa1\x7c\x31\x45\x39\xcb\x5e\xdd\xec\x16\x74\x31\xc6\xf8\x66\x43\xf5\xaa\xb8\x2c\x7d\xd0\x7b\x6f\x40\x7c\xfa\x15\x1d\x8a\x1a\xa3\x69\xd9\x07\xc4\x67\xd7\x68\x06\x66\x97\xd5\x45\xf1\xa7\xcc\xe4\x86\x9e\xc6\x30\xe3\x28\xf4\x34\xda\xd4\x94\x85\x9a\x46\x9b\xdd\xdf\xe2\xc8\x88\xa0\x1d\x42\x1b\xee\x0e\xcf\x5f\x91\x67\xe8\x61\x4c\x73\x15\x86\x0e\xbf\xde\x98\xe1\x9a\xbe\x5f\xba\x31\x22\x88\x7f\x9b\x7a\x59\x0c\x64\xa3\x49\xcf\xc8\xd0\xb4\x28\x97\x66\x56\xb1\xf8\xb5\x7f\xf1\x4c\x5f\x93\xd8\x01\x03\x2b\x59\x0f\x72\x33\x1f\xfe\xe1\x2b\xbe\xa9\x7d\x18\x72\x3d\x3b\x1b\x4b\xa2\x73\x10\xd6\xda\xa3\xa9\x73\xb8\xa1\x1f\xe3\xfe\x1b\xa4\xf8\x1c\xea\x7a\x51\x36\x78\x60\xb7\xab\x8d\xc9\xd3\x41\x9c\xba\x3d\xf4\x64\x9a\x5e\xda\xaa\x6c\xdc\xf1\xa2\x2b\xd1\xf5\x98\xc3\xb5\x2e\x3a\x34\x95\x8d\x23\x35\x9c\x63\xaf\x65\xb7\x12\xa7\xa8\xba\x91\x87\x46\x54\x2d\xe7\x5d\xd7\x66\x98\x80\xcb\xff\xcd\xc9\x81\x0e\x93\x3f\x06\xe7\x4b\x6f\xa2\xa9\x85\xcf\x2e\xcb\xb4\xab\xc9\x60\x1b\x4f\x11\x15\x72\x8b\x7f\xf9\x87\xb1\x45\xf4\x46\xc3\x8c\xbb\x26\x3d\x97\x50\xfc\x18\x23\xf9\x6b\x30\xfe\x45\xcc\xa1\xe9\x31\x45\x77\x4f\x02\xf5\x0d\x6d\x11\xec\xb8\xab\xae\xa4\x09\x15\xab\x2b\x69\xe2\xb2\x70\x24\xd7\xc3\xb9\x15\xdd\x1d\x7a\x1e\xe9\x12\xad\x32\x51\xbd\xeb\x3a\x17\x13\x5b\x57\xb3\x89\xa4\xbc\xd1\x45\x77\x4f\x08\x89\x2e\x92\x31\xac\xb0\x73\xf7\x40\x71\x4a\x31\x34\xb4\x85\x93\x22\x75\x09\xab\xeb\xac\xe5\x0c\xe5\x8d\xec\x33\x1d\x4e\xf0\x47\xd6\x4d\x23\x1f\xf8\x43\x17\xc2\x42\xb5\xae\x17\xff\xf2\xcd\xd7\xa9\xec\x87\xee\xaa\x70\xe8\x5b\x75\x3d\xf5\x64\x3c\xdd\x8b\xb3\x41\x6a\x69\x72\x17\xc7\x5a\xcf\x96\x05\xaa\x17\x05\xbe\x44\x7c\xea\x26\xc4\x76\xda\x6f\xbb\x25\xe2\x33\x3b\x1b\xec\x59\xf7\x16\x5c\x2f\xec\xbe\x42\x74\x35\xbf\x3f\x64\x7e\xb4\xfb\x15\xda\xbf\x0b\xcf\xc9\x40\x5a\xc4\xc0\x42\xc6\xda\x75\x90\x17\xcf\xcb\xa1\x1d\x8e\xf7\x7c\x6f\x45\x34\x30\xa6\x79\x70\x0a\xbb\x3f\xf4\x88\x45\xeb\x22\xfb\x38\x2c\xde\x1a\x5d\x07\x3d\x6c\x99\xdb\x14\x61\xb8\x24\xb4\x17\xc2\x58\x30\x57\x45\xb7\x4a\x23\xa3\x7f\x2b\xe2\xd0\xe9\x04\x2c\x2d\xbe\xf6\x18\xce\xf4\xc7\xd0\xb3\x0a\x67\xfa\xd3\x5c\xb2\x0d\xbf\x3f\x25\x7f\x05\x6d\x6a\xbb\x6e\xd1\x07\x42\x28\x44\xe2\x1f\x43\xb7\xa9\x74\x36\x7c\x47\x87\xce\xc6\x29\x5c\x95\x55\xaf\x9c\x8d\x97\xe0\xd0\xa5\xbd\xe1\x3f\x89\x02\xdc\x5c\x01\x22\x16\xb7\xbc\x90\xa9\xff\x98\x06\x36\xe7\xe2\xdd\xaa\x5b\x71\x43\x08\x88\xa2\xda\xc2\x0b\xd5\x95\x06\x5e\xd0\x5e\xde\x98\x7d\x26\xed\x95\x30\x4c\x1e\x96\x88\x6c\x51\x95\xa2\x06\x37\xf2\xa4\x2e\xda\x8c\xf0\xfb\xc5\xf3\xa9\xc3\x5f\x5c\x11\x5d\x70\x51\xba\xe0\x1e\xf1\x32\x99\xae\x36\x24\x82\x7f\x56\x47\x39\x45\xb9\x3e\xdd\x79\x62\xbc\x75\x37\xc2\xed\xe1\xe9\x42\x49\xb3\xeb\x99\xb0\x43\x62\x59\x45\x55\x84\x59\x73\xf2\x69\x52\x30\x7e\x33\x90\x43\x33\xe4\x6e\xc3\x1f\x67\x9c\x7d\xed\x84\xb3\xc7\xfa\x25\xaa\x2a\xf4\x42\xe4\x38\xe6\xe4\x5e\xf8\xce\x55\x2e\xb4\x6c\xc4\x3e\x7f\x0d\xf5\xa6\x2a\x1b\xba\xed\xdd\xb9\x88\xaf\x5f\x84\xa6\xc2\x38\x39\xdd\xaa\xf5\x35\x34\x77\x4d\x59\xde\xcf\xd9\x65\x9f\xe8\x8f\xca\x06\xab\xa3\x89\xc8\xc5\xc2\x78\x0c\xa1\x46\x39\xbe\x37\xcf\xf6\x05\xff\x32\xe9\xc4\xe2\x07\xbf\xdd\x2e\x1b\x94\x80\x70\x77\xd8\x18\xf7\xeb\xf2\x0f\xb5\x08\x5d\xd9\x77\x0c\xc5\x45\xe3\x6a\xeb\xae\x46\xbb\x4b\x1f\x03\xa1\x54\x4d\x50\x18\x15\x8f\x26\xea\x31\x3c\xe4\xf7\x4b\xaf\x92\x50\xfe\xe8\x97\x5e\x08\x2f\x9c\xd3\x58\x30\x16\xaa\x20\x72\x2d\x74\x72\xc1\xa4\xc9\xae\x86\x1b\x3b\xbb\x9e\xe0\x81\x79\x42\x30\x6a\x1b\x42\x68\x2f\xcc\x3e\xfa\xb7\x07\xc1\x50\xb8\x5d\xed\x2b\x64\x4c\xfe\xe5\x27\xfa\xa3\xb9\x0a\x12\xd5\x0c\xd0\xf0\xb2\x5f\x2e\xd7\xb2\x85\x2a\xd4\x75\xf4\x40\xba\x17\xf3\xdc\x65\xfd\xba\x5c\x96\xab\x4c\x58\x46\x6a\x20\x16\xdc\xbc\xb4\xd5\xfc\x71\x9f\x9c\x5e\x37\xa1\x92\xd1\x2f\x6d\x98\xb7\xc8\x14\x21\xd4\xb7\x6e\xab\x5b\x39\x8c\x1f\x9b\x3f\x2e\xf6\x9a\x2b\xda\x61\xb0\x5e\x95\x83\x41\xa7\x5f\xc2\x38\xb3\x20\xe5\xed\xed\x34\x95\x05\x45\xea\xfc\x87\x1a\x46\xbe\xaa\x3f\x72\x67\x6b\xf7\x87\xa9\x72\xbf\x44\x12\xbf\x41\x4f\xdd\x3f\x14\x7e\xf4\x2f\xa1\xa3\x84\xfe\xc3\x56\x39\x99\xe7\x13\x0a\x1b\xfd\xba\xdd\x3f\x0e\xbc\xb6\x5e\x78\xdd\xef\x97\x76\xf0\x7b\x69\x32\xf5\x4b\x51\x18\xa2\xef\xdf\x78\x36\x4d\xda\x35\x6f\xdd\x5e\x1e\x78\xbc\x48\xcc\x5d\xc4\x5a\xb9\x26\xa1\xe8\x37\x5b\xe1\x76\xa3\xbc\x56\x3c\x18\xec\x81\xdc\x0a\x42\xed\xa1\x8d\xf2\xd6\xbb\x57\x17\xd2\xdb\x5b\x63\x28\x1b\x08\x74\xba\x2c\xb7\xa0\x88\xfa\xb7\xae\x36\xd1\xff\x61\xb0\xdc\xaf\xdb\x15\x71\xa5\x88\x80\x0b\x83\xe5\x54\x75\x92\xde\xf8\x82\xb7\x6c\xe4\xa3\x97\xae\xce\x20\x6e\xfa\xc7\xd0\xa5\xfe\x11\x47\x44\xc8\x45\x66\xc8\x43\x6f\x7c\xdc\xf4\x17\x4d\x8b\xcc\x90\xbb\x08\xa6\x0f\xb6\xb1\xa3\xfe\x0d\xd1\xe6\x47\x64\x8f\xe8\xc6\xcf\x8c\xcd\x2c\xea\x40\x2e\xfc\xcd\xfe\x0e\x9b\xe5\x74\xb9\xd1\x90\x4a\x0f\x6d\x80\x8f\x6e\x36\x91\x48\x1f\xc9\xa1\xfd\x43\x1e\x7f\xc5\x65\xb9\x68\x75\x23\x7d\x44\xd6\xea\x92\xfe\x48\x3f\x5d\x87\x38\x54\x71\x86\x85\x2a\x1f\x71\x4c\x86\x3f\xe2\xc7\x39\x2b\x47\x1f\xa6\xeb\x9d\xb4\xea\xaf\x90\xa3\x22\xb0\x42\xdd\x26\x5f\xda\x75\xa1\x60\xd3\x2f\xbd\xc5\x3e\x3b\x50\xae\x28\xce\x8f\x98\xa8\xc2\xdd\x1f\x31\x37\xd4\x28\xea\x2e\x35\x89\xe4\x7c\x46\x60\x4b\x21\xf6\x87\xd7\xa9\x76\xce\x43\x70\x96\xa1\x13\x1e\x0a\x2e\xdd\xa4\xf5\x83\x5b\x76\xf3\xa1\x51\x77\xa9\xa9\xb8\xac\x3a\x3f\x94\x7d\xd1\x07\x37\xca\xfa\xeb\x16\x0f\x7d\x97\x6e\x2a\x33\xd4\x5d\xf2\xad\x75\x7a\xe0\xaa\x0e\xe1\x9c\x08\xe7\xdf\x2f\x11\x44\x72\xe9\x3f\x2e\x97\x85\x1b\x20\x74\x15\xe1\xfd\xbb\x65\x37\x0f\xb7\xcb\x70\x3d\xb0\xb7\x85\x5b\x15\xde\x3f\x39\x07\x7a\xd2\x6e\x08\xe5\x97\x7e\x65\x7f\x0c\x34\x2c\xfa\x0d\xdd\x97\x69\x99\xd5\xb3\x34\x63\x6a\x73\xd1\x5b\xcd\xbc\x8e\xb4\xa8\x0a\x69\xa6\x0c\xe1\xda\x07\x0c\x6e\x9e\x70\xe8\xa2\xc8\x0d\xcf\x54\xd4\xfe\x69\xd9\xcd\xe3\x15\x56\x33\x5b\xfe\x23\x5d\x58\x48\x27\xe6\x93\xb8\xfd\xa7\xe2\xac\xac\x4e\x71\x57\x36\xd6\x9f\x85\x21\x8c\xff\x99\x96\x5b\xd9\x1e\x1f\xab\x72\x83\x8a\x5c\x96\x1b\xb1\xb9\x19\xee\x6b\x50\xfc\xbc\x58\x53\x3a\x4c\x3c\xfe\x7e\x65\x75\x81\x43\x0b\xa6\x20\x3a\x7f\x52\x0c\xeb\x93\x0d\x3e\xdd\xe5\x1f\x06\x17\xff\x72\xd1\xb8\xd6\xb2\x7a\x87\xf3\xa6\xe1\xa2\x67\x0d\xbb\x34\x3b\xe6\xb5\xe2\xce\xcb\xea\x1c\x76\x73\xf3\xfb\x51\xbf\xd4\x1c\xec\xa0\x26\x86\x1a\xd1\x13\xa3\x3b\xcb\xf1\xfe\x66\xe1\xa2\x57\xd5\xc4\xa5\x9c\x35\xe8\x1d\x77\x95\xa7\x56\x61\x99\x34\x5d\x5c\xc9\x45\x7d\xf7\x92\x69\x46\x40\xc3\xe2\x55\xce\x0b\x8f\x5f\xd2\xd1\x98\xa1\xb1\xd1\x2f\xce\xf3\x94\x5f\x7b\xa9\x17\xcd\x9b\xeb\x9c\xe3\x3c\x43\x45\x43\xee\x70\xa6\xa3\xfe\x0f\x7f\x43\x31\xb9\xfb\x23\x67\x52\x3d\xba\x51\xd7\xae\xfa\x38\x83\xa4\x2a\xce\xe1\x7c\xaf\x29\x07\xf5\x57\xd5\x1f\x1d\x42\xc8\x8b\x79\xb3\x46\xb5\xfe\x11\x97\xcf\x50\xc5\xe8\xa8\x54\x9d\xdc\x8b\x7a\xdc\x9f\xb8\x2b\xb5\x89\x6f\xad\xf5\xad\x36\xb9\xaf\xdd\x21\xde\x1a\xe2\x02\xce\x1b\x72\x90\xc3\x31\x6f\xa1\xe7\xae\x49\x00\xe7\x8a\x1d\x47\x98\xff\x7e\x69\xd3\xde\x18\xa2\x27\x4f\x02\x06\x26\xe8\x92\x4e\x22\xfb\x9f\x9f\xaa\xbf\xd8\x9b\xa0\x1f\x3a\x89\xed\xdf\x2f\x2f\x99\x78\x8d\x5d\x65\xc5\xc5\xae\x6a\x95\x5d\xe3\x09\xdc\x71\xca\xdc\x28\xf7\x73\x55\x9b\x3b\x70\xd8\xf7\x77\x31\x27\xd5\x2d\x06\xfd\x0e\xd9\x44\x3c\xfe\x7e\x71\xdf\xce\xa4\x4d\x02\xa7\x83\x78\xfc\x27\x4b\xad\x21\x6c\xc9\xc2\xe4\xb3\x8a\xe7\xc6\xb3\x72\x5a\xda\xc2\x0d\x46\x58\xe1\xa4\x30\xd5\x93\x40\xc2\x59\x6c\x90\x19\xd2\x95\x7e\x71\x31\xce\x90\xae\xa4\xae\x33\xdf\xdc\xe6\x54\x96\x97\x6e\x77\x36\x06\x0d\xf2\x23\x8e\xf0\xd9\x8b\x49\xd9\x19\xc1\xaf\x8b\x72\xb1\x46\xcd\xdf\xc2\x5a\xf6\x76\x07\x10\xfc\x77\xb7\xf9\x84\xa6\x91\x72\xda\xd2\x55\xb9\x78\x37\x0d\xe7\x82\xb1\xa7\x89\x6d\x60\x24\x9e\x7f\xb3\x41\x72\x36\x7f\xd3\x55\xa1\x16\xd9\x7a\xcd\x39\xde\xfe\x3a\x28\x84\x02\xae\x5a\xbc\xb0\x36\xbd\x8b\x16\x08\x51\x8a\xb1\x5e\x78\xca\xf5\xb3\x6d\xca\x12\x35\x7d\x7f\xc8\xe4\xf8\x87\x71\x8b\x08\xcf\x36\x51\x09\xd5\x1d\xd8\x3c\x1c\xdd\x01\x22\xba\x75\x17\x8e\xed\xd3\xb5\x3e\xb1\x29\xb3\xf8\x7a\x13\xd1\x4a\x72\x51\x23\x36\x35\x2a\xff\xad\x5e\x2e\x28\x8c\xee\x5f\x62\xf4\x9e\xd4\x7b\xde\x17\xdd\xb9\xd8\xc0\xba\x42\x9a\x2e\x23\x6f\x11\x76\xb0\x0e\x63\x13\x81\x29\xe4\xd5\xb9\x8b\x34\xd1\xd8\xa8\x4e\xd1\xef\x8a\x0c\x2c\xa9\xf2\x94\x89\xea\x18\xfe\x25\xf7\xa3\x16\xbe\xb3\x63\xba\x7f\x89\x15\x16\x57\xff\x0c\x61\x4a\xbf\x34\xb0\x10\xa6\xf4\x4b\x93\xd0\xe5\xfa\x8d\x6b\x77\x76\x1c\xb8\xde\xba\x19\x3a\xbb\xe4\xfb\x31\x0e\xb1\x6b\x65\xcf\x7c\x4b\x8e\xb8\xb6\xd4\x1d\x61\xc8\xa4\xbe\x4f\x6e\xef\xe6\x7a\xa2\x3f\xc3\x1f\xb9\x09\x92\x06\x26\x33\x07\x8f\x53\x68\x30\x69\x64\x28\xff\x48\x88\x4b\x50\xe1\x7e\xb9\x2c\x68\x70\xa8\x0f\x38\x2c\x94\x48\x97\x10\xc3\xfd\x1a\xae\x87\xa9\x16\xf2\xc2\x9c\xb5\x9c\xc3\xf9\x47\x1c\x3e\x70\x01\xa5\x6a\xc7\xd4\x6a\x27\x65\xc1\x1d\x50\x97\x44\xbe\xed\x17\x24\x37\x81\x6f\xcf\x47\x67\xd5\x41\xfd\x94\x4d\x0f\x03\x7f\x86\x59\x67\x92\x0e\xe7\x1c\x92\xfa\xb8\x22\x4c\xfb\x24\x60\x9d\x23\xb8\x35\x12\x7d\xce\x21\xb2\x2a\xab\x83\x38\x73\x92\x18\x77\xe2\x00\x56\x9c\x15\x47\xba\x95\x9e\x1c\x91\x6e\x4f\x59\x7f\x3d\x9b\x15\xc3\xa3\x49\xa4\xdb\x34\x74\x5a\xa6\x88\x6a\xed\xce\x09\x5a\x54\x3d\x08\x0d\x6a\x75\x2e\x0e\x0b\x4c\xd4\x39\xd9\x8c\xbc\xdc\x08\x81\x9b\x4c\x26\x4d\xf8\x33\x53\x39\x44\xc3\xba\x65\x27\xcf\xa0\xe1\xa2\xe2\xcf\x08\x7f\xe0\x97\xb5\x26\x61\xb0\x60\xd9\xe7\x26\x02\x6b\xb2\xdf\xa6\x8b\xc6\xfe\x9f\x1a\x15\x97\x2e\x34\x3d\x71\x6c\x15\xad\x79\x4e\x73\xf3\xdd\xd7\x40\x75\x92\x8f\x11\xd5\x56\x4e\x31\xa6\x82\xda\x16\x11\x5f\xf0\xf6\xab\x10\x56\xb0\xf6\xbb\xb4\x4e\xe6\x0c\x06\x5e\x76\xbf\x43\x4a\x7c\x5f\x6e\x81\xdd\xa3\xfb\x04\x83\x4e\xb1\xd5\x67\x18\x70\x76\x89\x28\xe7\xc4\x8c\xba\xf8\x9b\x66\x43\x2d\x86\x96\x91\xe4\x29\xc4\xbe\xcd\x52\x5d\x21\xf4\xad\xa2\xd0\x9f\x5c\xc4\x9c\xa8\xae\x26\xd8\x09\x9e\x7f\x3d\xa3\x74\xc1\x4e\x54\x53\xc4\x12\x26\x10\x6e\x96\x08\x7b\x4e\xdd\x99\x9e\x00\xa1\x39\x6d\x96\x25\x7e\xb1\x50\xe2\x92\x38\x4a\x3b\x62\x89\x5f\x2c\xec\xb0\x50\x6c\x14\x97\x65\x86\x6c\xe1\x16\xcb\x60\x86\x0b\xd7\x3c\x9b\x7f\x19\x0a\xe2\xd3\xd5\x82\x12\x75\x14\x91\x34\x8c\xe1\xdc\xfe\xf5\xd3\x4c\xc1\x2d\xc2\x1d\x68\x4a\x90\x3a\x14\xdd\xf7\xf8\x73\x6d\xba\x5e\x10\x41\x24\xb1\xab\x67\xd8\x85\xde\xc5\x03\x09\x84\x78\x6b\x9b\xc9\x63\xeb\x6c\xfe\x65\x8f\x8f\x4d\xb9\x11\x39\x75\x1c\xa1\x43\x75\x35\x70\x71\xa6\x8b\x86\xf7\x97\xe4\x5a\x5f\xf1\x3a\xd0\xf8\xe1\x1f\x0a\x49\xc8\x99\xab\xf8\xe1\x73\xe1\x53\x38\x69\x1e\xd1\xfb\xbe\x9c\xd3\xac\xaa\x8d\x85\x6f\x5e\xa1\x43\x05\xf7\x15\x3f\x7a\x86\xf0\xa2\xdf\xa2\xcd\x97\x34\x74\x35\x2c\xdd\xc6\x22\x07\xc2\xee\x54\xa1\x9e\x4f\x8e\x57\x87\xd7\x67\x05\x57\x57\xfb\x30\x8c\x49\x15\x7a\x75\x3a\xf0\xaf\xd4\x0e\xe7\x3a\x3b\x58\x01\x11\x27\x61\x80\xfb\xed\x35\x38\x5b\xb6\xe8\xb1\x3f\x97\x36\xe9\xe5\x2c\x3e\x4f\xff\xcc\x49\x99\x0b\x7d\x72\xf7\x15\x53\x44\x69\xc9\x11\x2f\x58\x76\xba\x53\xe1\x82\x6b\xf7\xb7\x12\x5a\x7b\x4d\xb9\x1a\xae\x8d\xa6\x72\x11\x48\x4b\x04\xc7\x96\x4f\xe1\xaa\xdc\x8c\x61\x0c\xe5\xa0\x21\x44\xf2\x85\x09\x6a\xbf\x6f\x37\x88\x93\x1f\x37\x18\xfb\xf3\x76\x13\x9f\xc8\xa9\xf9\xd8\x91\xe2\x50\x12\x39\xf8\x2c\x87\xda\x60\x47\x6a\xad\x36\x91\xd9\x8a\x8b\x0e\x06\x5c\x94\x9d\xbf\x7e\x4a\xd6\xd3\x72\x4f\xcd\xaa\x7a\x1e\x7b\xb0\x25\x7f\x0c\x2c\xf5\xcd\x69\xe2\x5c\x2d\xca\x35\x9e\x01\xef\x49\xb5\x12\x22\x50\xdf\xd7\x1b\x75\x5c\x11\x55\x18\xaf\xa6\xe4\x6f\x6c\x2c\xcf\x79\x5c\x80\x52\x3c\x9b\x5b\xac\x21\x57\x0a\x81\xaa\x9b\x3e\x84\x17\xb9\xea\xf2\xd9\x52\xd5\x13\x71\xb6\xa1\xf9\x74\xd4\xc2\xeb\x6a\xb9\x3c\x92\x78\x15\x48\xd8\x44\x18\x61\xb9\xeb\x9e\x84\x11\x4e\xd6\x93\x27\x8c\x70\xbe\xb5\xb0\x08\x28\xb2\x68\xe0\x97\xe4\x5f\xdd\x59\xe1\x33\x97\x8d\x9d\x9d\x9c\xe3\xed\xaf\x35\x09\xe9\x85\x5c\x64\x4f\x62\x03\xcb\x17\xdb\x24\x34\xb0\x9c\xf2\x4e\x42\x03\x9f\x46\x8a\xb2\x61\x98\x29\x7a\xf4\xa5\xf0\x2d\xce\xc5\x7e\xd1\xbc\x22\xf4\xb8\xb5\xce\x21\xe6\x90\xdf\xc9\x49\xb4\xdf\xee\x1b\x1e\x99\xc7\x90\x82\xd5\x0c\xab\x56\xf9\x01\x9c\x04\xfb\xed\x26\x48\x5e\x53\xb3\xa3\xce\x61\x62\x20\xed\x1d\x62\xff\x7e\x9f\xae\x2f\x11\x78\xc5\xd5\x62\xf0\xa0\x9c\xec\x06\x74\x8f\x84\xf0\x42\x4e\x66\x4e\x2e\x8c\x95\x44\x70\x12\xea\x77\x4a\x83\x66\xbe\xc0\x3c\x5e\x11\x90\x8b\x6e\xce\x97\x08\x24\xed\x49\x09\x1d\xdc\x81\x1d\xc2\xc0\xe9\x6f\x0d\xc3\x05\xcd\xcf\xb9\x10\xe5\x61\x7e\x12\xe8\x57\x8e\x38\x26\x81\x7d\xe5\x7d\x74\xce\x37\x6a\x2e\x52\x83\x9a\x61\x14\x2a\xeb\xdc\x49\xb0\x5e\x39\x06\x3d\xb9\x18\x95\x2a\x7d\xb3\xe6\xc5\xd5\x74\xaa\xf1\x0f\x63\xd1\x8b\x7f\x18\xed\xeb\x2c\xbd\x85\x40\xaa\xeb\x89\xbb\x60\xfa\x87\xa2\x9b\xbb\xb2\x81\x7a\x75\xc5\xbe\x51\x8c\xd0\x61\x7a\x4b\xad\xce\xdf\x2a\xef\x29\x67\x5b\x70\x3e\x54\xeb\x54\xef\xfc\x11\x5e\x82\x28\xbb\x70\x9c\x2a\x93\xb9\x93\x83\xca\xef\xce\x6e\x7e\xea\x6c\xe0\x90\xe2\x5c\x04\xf7\x6e\xf9\xcf\x58\x1b\x49\xc5\xad\x03\x13\x96\xa6\xbd\x68\xff\xbe\x03\xbb\x88\x55\x4a\xb0\xe0\xd3\x01\x17\x65\xd6\x35\x21\x50\x61\xda\x03\x6f\x69\x7f\x0a\xd9\x44\x28\x61\x1b\x9a\x4d\x9c\xb3\x96\xe6\x6f\x60\xc6\xdb\xb5\x06\xda\xf6\x0c\x84\xe8\xde\xa8\xe7\xbd\x84\x0a\xd5\x64\xe8\xf5\x49\xf2\x35\xdf\xd2\x09\xd2\xc6\x7f\xa3\x34\x2c\x14\xf6\x96\x70\xab\xbb\x6c\xac\xbb\xe8\xfb\x90\x67\x58\xdf\x9c\xa8\xc3\x67\x0d\xb4\x24\xf1\xf8\xbc\x45\xb2\xbf\x45\xc1\x77\xff\x12\x3a\x4c\x48\xe3\x83\x5c\x75\xa8\x70\x78\x60\xb5\x59\xc0\xfc\xc8\x70\x79\x2a\x17\x17\x49\xf5\x0f\x63\xf2\x44\x09\x7e\x60\x84\x8f\xef\x0f\x99\x11\xff\xf0\x1d\xaf\x56\xfd\x70\x8a\xce\xd0\x2f\xa7\x0e\x9b\xca\xe2\xd4\x5e\x02\x95\xf9\x11\x23\xd4\x65\x21\xe7\xb4\x9d\x3e\xde\x5d\xfe\x69\x0c\x5b\xb4\x9e\xe4\x15\xb2\x22\x9a\xf2\xbf\x2a\xfd\x34\x05\x2b\x6e\x42\x5d\x1f\xf1\xba\x85\x55\x42\x98\x61\x15\xb9\xf9\x61\x97\xb8\xf7\x6c\x8b\xe6\x1f\x86\x9b\x25\x77\x0f\xe3\x77\xa9\x95\xcd\xb0\x14\xce\x2d\xf9\xa3\x0e\xa3\x3a\xbb\x75\x6c\xf4\x55\xbc\xed\xee\x2c\x5c\x4a\x21\xa4\x8f\xe8\x6c\xcf\xe7\xd6\xd0\xd4\x09\x74\x31\x25\x99\x51\x7c\xe2\x2e\xa3\xb0\x89\x6c\xe3\x16\x31\xf0\xb0\x6a\xc2\x97\x0f\x9a\x16\x43\xa3\x41\xb6\x21\x71\x80\xe2\x13\x77\x99\x08\x39\x3e\xb1\x18\xf7\xc4\x27\xfe\xf2\xc8\x11\x6d\x0c\x29\x74\x4c\x0c\x7b\xa7\x34\xea\x88\x5e\x7c\x7e\xca\x84\xca\xb2\x57\x12\x8a\x89\x65\xef\xf0\x95\xfb\x88\x27\xa5\xfe\xea\xfe\x49\x2e\xab\x0e\x77\x65\x21\x5f\x92\xb3\xdc\x87\xe2\x22\x3c\x13\x96\xc7\x74\x36\xb6\x87\x8e\xd3\xa3\x1b\xc8\xf3\x22\x8a\x45\x6c\x83\x47\x3c\x05\x6d\x08\x24\x23\x43\x72\x66\x07\x37\x1e\x9e\xc5\xe0\x2f\x99\xa3\x1c\x36\xbb\x39\x0d\x7f\x63\xdb\x89\x5d\x22\xe9\x87\x64\xb5\x84\x2f\xfe\xf2\x47\x1f\xf4\x78\xb2\xbf\x41\x9d\x0f\x7f\x8c\xc3\xa7\xfd\xf1\x40\x0c\x6b\xa3\x29\x78\xb1\x99\xf5\x48\x42\xa4\x68\x48\xb8\xe2\x1b\x37\x66\x93\x68\xc5\x19\x0f\x68\x27\x17\x81\x83\xc0\x9c\x0e\x5d\xcc\xb2\x2c\xa4\x20\x63\x7e\x3f\x72\x25\x14\xe5\x5a\x68\x85\xbb\x1a\x30\x27\xef\xaa\x85\x88\xe4\x6f\xc4\xcb\x9c\x8a\x63\x5c\xd3\x70\x9b\xb1\x44\xc3\x4d\x42\x54\x66\x77\x5d\x4b\xe4\x46\x83\x86\x61\x8b\x11\xc8\x38\x8b\x13\x46\x1c\xe3\x1b\x87\xbf\x93\x38\xc6\xb9\x78\x20\x98\x53\x56\x7f\xd3\x28\x9d\x05\x19\x81\x17\x16\x36\xbc\x78\xa7\x9c\x84\x31\xce\x52\x2c\x74\x14\x63\x09\x2f\x88\x62\x7c\xeb\xb5\x44\xd4\xe2\xf3\xd1\xfd\x51\xd7\x07\x59\xf4\xc2\x64\xf2\x43\xd8\xe2\x7e\x0f\x55\xa4\x1b\x6b\x68\x60\xdc\x58\x9e\x5a\x94\x84\x66\x76\x45\x5c\x11\xdf\x9f\xc2\xb9\x77\x0f\x17\x1e\x77\xdd\x4a\xa8\xca\x5e\xea\x91\x5e\x65\x9e\x30\xc9\x82\xba\x46\x1a\x94\x93\xe4\xf7\x0b\x69\x4f\xf2\xbe\x40\x9b\x50\x1c\xff\x15\xb6\xbb\x66\xcd\xad\x90\xf6\x98\x73\x48\x84\xe3\xbb\x88\x9b\x4a\x4c\xe3\x4c\xb4\xa0\x49\x4c\xe3\x2c\x8c\xb1\x42\xf6\xe3\xb7\xe7\xba\x70\xc9\x99\x40\x61\x44\x2d\x4e\x0a\x0f\x3b\x89\x53\x6c\x4a\x7f\xdd\x22\x96\x38\x36\x84\x2d\x4e\xf2\x64\x3b\x09\x5b\xec\xbb\x46\x51\x8b\x65\xf5\xba\x6e\x76\x90\xf6\x93\xdc\x4f\xcb\x7c\x7d\xc9\xdf\xb4\x56\x17\x69\x8f\xb8\x13\x8a\x4b\xdc\xef\x6f\x36\xd4\x31\xa6\xeb\x09\xb6\x53\xf7\x37\x50\xd2\xb7\xe8\xb9\xb6\xa5\x60\x47\x58\xe2\x2c\xa2\x9c\xc8\xc3\x45\xea\x2a\xeb\x46\x47\x67\x3a\xc7\xbe\x2c\xea\x1c\xa4\x4a\xd6\x0c\xc8\xfb\xaa\x66\xfd\x86\x1a\xd1\xfe\xb9\x31\xe7\x4e\x5a\xcb\x70\x27\xfd\xbb\xe7\xbc\xb0\x41\x90\x04\xaf\xcd\x38\xa7\x9f\xc4\xae\xed\xb2\xb0\x24\x74\xed\xe9\x80\x3f\x72\x34\xa1\x49\x09\x65\x9b\xcc\x58\x59\x61\x1a\xd9\x65\x6f\xb9\x64\x1a\x29\xe9\x00\xa1\x6d\xbb\xac\x1d\x1d\xda\x56\x4a\x9a\x2b\x81\xd7\x34\x6a\x62\xdb\x0e\x31\xbf\x57\x92\x88\xe6\x5b\x2f\xb8\xe3\x5b\x13\xe2\x42\xfd\x36\xc3\x50\x92\xb9\xc0\x0a\xf3\xc7\x2e\x93\xbb\x95\x21\xbe\xe1\x33\x2c\x79\x14\x96\x9e\x34\xe1\x6d\xbb\x8c\xd4\x56\xd6\xf6\x2a\x2e\xab\x3e\x38\xcb\xb4\x54\xd7\xcb\xb1\xd7\x79\x0c\x13\xc6\x4c\xec\xed\x49\x50\xda\xf6\xad\x37\xde\xc4\x55\x93\x42\xdc\xd9\x3c\xdc\x5b\xdd\x37\x55\x65\x83\x3c\x91\x6a\xd9\xca\x7a\x1e\x55\x67\x83\xb1\x98\x3d\x34\xb1\x6d\x74\x20\xf3\x92\xfd\x60\x55\x76\xc6\xd8\xfc\x53\xc8\xd8\xea\x4e\xec\xf8\xe8\xdc\xfb\xd7\x4f\x49\x7f\xc3\xd2\x7e\xe5\xb3\xfc\x35\x67\x77\x3e\x6c\x99\x85\xb5\xb1\x7d\x94\xe5\x0a\x81\x70\x4f\x8b\x4d\xd9\x12\xc1\x8b\x5d\x54\x5d\x77\x59\xd8\x1f\xea\x6b\xf0\x16\xa5\x51\xa2\xf8\xb6\x55\xb7\x51\x91\x34\x5f\x5b\xbe\x68\xad\xfd\x31\xcc\x2b\x6f\x7f\x83\x80\x10\xf2\x28\x48\x50\xc4\x24\x5d\xe1\xb2\xb7\xcb\xb4\x8e\x70\xb7\x59\xcc\x66\xc2\xdd\xde\xbe\x37\xb0\x89\x14\x8d\xb5\x8a\x6c\x94\x84\x58\xc2\x42\xb2\x4b\xf0\x41\xb8\xdb\x3b\x7f\xbf\x95\xf8\xa6\x06\x65\xbf\xf4\xad\x67\xc4\xc7\xa1\x1c\x48\x59\x67\x23\x8c\x1c\x7b\xe2\x51\xb8\x4a\x5c\x1a\xb2\x63\x5b\x45\x62\x04\x6d\xe1\x12\x97\x86\x4c\x92\x08\x8d\x9b\x6c\x6d\x45\x68\xdc\xd1\xb5\x0f\x0b\x16\x0c\xd5\xdf\x78\x48\xb8\xb3\xc1\x8a\x4e\xb7\x66\x32\x14\xb7\xbc\x94\x45\xa4\x4c\x53\xef\x50\xc6\x1a\x1e\xc9\xd6\xc0\xd4\x05\x94\xcc\xc5\x36\x57\x74\xdb\x9a\xb5\xd5\xaa\x9e\xcd\x10\x93\x84\xb7\xed\x32\x49\x21\x82\x6d\x17\xc7\x9b\x00\xb6\xa7\xa8\x2b\x62\x39\xa7\x2b\x82\x1d\xf0\xcd\xc6\x72\x6a\xe9\xc3\xde\xb1\x8b\x2c\x22\xd6\x6d\x97\x61\x02\xb1\x6e\x4f\x87\x8a\xb2\x10\xd8\xc2\xfe\x35\xd4\x38\xc4\x44\x5d\x55\x62\x06\xe1\xd0\x3a\xe9\x5f\x53\x2e\xce\x9b\x1b\x99\x78\x2b\x99\xfe\xa8\x59\xf0\x2f\x35\xd9\xea\x03\x26\xae\xf9\x72\x96\x1b\xfa\xfb\xf5\xe1\xab\xaa\x22\x60\xb9\x5e\x71\x0a\x6b\x9a\x61\x7c\xac\xf0\x0d\x9c\xae\x6f\x4e\xcd\x34\x65\x21\x7c\x85\x36\xc3\x0e\x4e\x31\x21\x26\x61\x4e\xcf\x47\xe6\xbe\x09\xd5\x88\x50\x09\x71\x6d\x17\x73\x8e\xb8\xa6\xe7\xa3\xea\x45\x5e\x96\x9d\x3b\xb7\x7b\x16\x1d\xd5\x50\x25\x16\x63\x77\x21\x82\xad\xf2\xd3\x40\xf4\xd2\x94\xc4\xbd\x25\x7c\x69\x92\x4d\x16\xe1\x4b\xb3\x58\xcb\x4b\x5e\x84\xc5\xa0\x25\x22\x69\x97\x2a\x2f\x01\x49\x4f\x87\x5c\xf6\x21\x4b\x45\x3d\x28\xdf\x2c\xba\xa0\x0f\x8d\xcc\xd9\xb3\x7b\xf5\x82\x5a\x98\xaf\x89\xad\xb6\x10\xc1\x4a\x7d\x78\x21\x73\x95\xee\xee\x42\xe4\x5a\xb3\x70\x44\xc7\x8f\x8c\xb6\x5f\x98\x9a\x75\xe9\x77\x2a\x08\xaa\x54\x70\x57\x47\xa3\x4b\x26\xca\x8a\x89\x3a\xf4\xde\x50\x4c\xd4\xac\xb3\xd4\xc1\x0a\x9a\x59\xb9\xfd\xd5\x8b\x82\x10\xa8\x49\x51\x32\x4f\x36\x36\xb9\x10\x63\x87\x0c\x9d\xd7\xdf\x20\xc5\x43\xe6\xda\xa5\xf7\xbb\xba\x5e\xcf\xc3\xfd\x7b\xe2\xa3\x1a\x91\xbc\x5f\x3b\x0a\x19\xab\xf4\xb0\x08\xad\x7a\xda\x54\x45\xba\xfd\x75\x1f\x45\x08\xd4\x2e\xed\x3e\x42\xa0\x9e\x8f\x2e\x1b\x9d\x17\xc6\xef\x08\x22\x65\x2d\x44\x40\xd4\x54\x34\xce\x30\x28\xeb\xd2\xdf\x23\x00\xea\x59\x86\x5b\x59\x24\xd6\xda\xe2\x03\xf2\x51\xec\xb4\x35\x40\x28\x30\x8f\x14\x10\xb5\x98\xba\x1d\x58\x21\x99\x1e\x19\x68\xf0\x89\xd7\x45\x84\xd4\x33\x70\x7f\xfd\xc4\xbd\xec\x7a\x63\x8e\x44\xac\x0c\x24\x95\xb2\xbb\x70\x88\x54\xd3\x18\x11\x22\xd5\xba\x3a\x0a\x91\x6a\x3c\x80\xcf\xe0\x9a\x85\xbd\x47\x30\x59\xa5\xc7\xb6\x86\x78\xf2\xc2\xe5\x92\x2d\x8b\xa1\x46\xfc\xd2\x7b\xf8\x1e\x92\x70\x59\x6c\xaa\x65\xdb\x35\x9d\x42\x64\xcd\x35\xbb\x13\x28\x7e\x67\x0f\x35\x54\x84\xa4\x97\xb7\x06\xa4\x81\x88\xa0\xf0\x28\x9c\x7d\x4d\x0e\x5d\x04\xda\xad\xf2\x28\x2c\xf3\x22\xc2\x92\x9e\xac\xfa\xbf\x35\x38\x7f\x3d\xaf\x07\x71\xe2\x97\xec\xde\xf2\xb7\x6c\xdc\x37\x70\xa6\x08\x36\xda\xa5\x95\x44\xac\xd1\x74\x49\x6f\x7f\x21\x6b\xf6\xe5\x3c\x21\x00\x60\x54\xad\xa9\x87\xec\xf4\xc7\x58\x7e\xd1\x1c\x93\x0b\x44\xdc\xa7\x85\x11\x5a\xcd\xdf\x2c\xcb\x9f\x5c\x98\x1d\x39\xdd\x87\x38\x31\xa2\x1d\xb0\x49\x93\x01\xb1\x22\x8f\x5e\x12\xb5\x11\x7a\xb4\x13\xe6\x68\x2a\xd6\x68\x92\xad\x0c\xc1\x46\xbb\xd4\x5e\x08\x36\x7a\xd7\xac\x0b\x2f\x4c\xd4\xba\x9f\x50\x8a\x35\xea\xbb\x27\x8c\xd2\xee\xae\x17\xd5\xe4\xec\xc3\x39\x21\xd4\xe8\x69\xc4\x1f\x63\x77\x0a\xc3\x4d\x8e\xac\x56\x77\x42\x2e\x34\x95\x04\xcb\x37\x75\x0e\x8a\x51\x34\x6c\x48\xaa\xbb\x0f\xcb\x64\x57\xc0\xd6\x21\xe2\x63\x92\x86\x12\x51\x1c\x4f\xf3\x45\x59\x30\x51\x72\xd9\x98\x3a\x61\xd1\xc5\xf3\x41\x4c\x1e\xc2\x38\x9e\x41\x2a\x1b\x8f\x51\x49\xb3\x08\xe3\x78\xca\xea\xa7\x5b\x53\xe9\xaf\x50\xeb\xd3\x59\xee\x24\xf5\x01\x1e\x9b\xf7\x8c\xe2\x38\x8a\x17\x43\x1c\xc7\x4e\xfc\xaf\x49\xe4\xc6\x94\xcc\xfd\xc0\xff\xac\xe4\x59\x6b\x9b\xc3\x36\x94\x15\xba\x99\xca\xe2\xf3\xa0\x2a\xd7\x68\x34\x29\x3b\xa8\xf7\x56\xf6\x83\xca\xad\x2b\x8e\x45\x12\x1d\x44\x08\xc6\x29\xa3\x09\x42\x30\xf6\xd4\xd3\x9f\x71\x39\x12\xc0\x29\xf3\x93\xb5\xa1\x32\x65\x1b\x42\xb8\xc6\xfb\xfb\xc2\xd9\xf0\xd4\xcc\x02\xc1\xda\x49\x3a\xab\x0b\x63\xa7\xfe\xfd\x25\x53\x96\xdd\xa3\x57\x7c\x54\xd1\xa5\xee\x3a\xcb\xca\x68\xf2\x31\x6f\x9a\xb2\x48\x21\x10\x63\x17\xe7\x96\x40\x8c\xa7\xac\x9a\x59\x5a\x28\xcd\x2f\xea\x11\xd3\xbf\x8c\x4d\xa7\xeb\x4f\x06\x4d\x7e\x0a\x13\xa6\xb1\xe8\x1a\xdd\x10\xac\xba\xc3\x42\x42\xd8\x93\xbf\xc5\x33\x54\xfc\x3e\xe2\x32\x76\x31\x0e\x09\xcb\x78\x2a\x55\xef\x40\x52\xba\xa4\xe4\xe8\x36\x27\x97\x65\x9f\x17\x57\x4b\xef\xd4\x1d\x34\x5a\xfd\x6a\x56\x28\x46\xbf\x9a\x65\xd2\xe4\x87\xf1\xcb\x28\xad\x28\x9b\x58\x25\x17\xce\x34\xeb\xaf\x31\x7f\xba\xa6\xf0\x6e\xfb\x7d\xba\xe1\xdd\xf6\xf2\x7a\x13\x7f\xf1\xf2\xc2\xbc\xb8\xc4\x64\x43\x43\x50\xc5\x7b\xca\x30\x66\xbd\xb4\x75\x74\x95\xbe\x50\x60\x90\x51\xc8\x7a\x41\x8a\xe8\x16\x7b\x4d\xb5\xe3\x9a\x02\x39\x0c\xe7\xd8\x2b\xba\x67\x09\xa5\x38\x65\x72\xa1\x50\x8a\x97\x1f\xef\x2f\xb0\x93\xee\xad\x17\x16\xb4\x59\xc8\xe2\x05\x42\x12\xd6\x7d\x29\xa6\x88\xc8\x0d\xfc\xcf\x4e\x99\x93\x10\x30\xf1\xd4\xab\x1e\xe2\xbd\xce\x57\x55\xc8\x00\x6b\xd6\x4e\x0f\x11\x60\xf7\xc3\xf9\x85\x27\x8e\xef\x3c\xa0\x32\xe5\x77\x3f\x7e\x62\xa5\x74\x4a\xfc\xc4\xbb\xb9\x4d\x04\x2c\xb2\xce\x21\x7e\xe2\x2d\x95\x02\xc5\x4f\x94\x4a\xdc\x0a\x19\x60\x97\xdd\xf0\x42\x06\x28\x5f\x6a\x44\x4f\xcc\x32\xf1\x53\xb4\xc4\xcb\xeb\xf0\x1e\x1a\xa6\x6b\x65\xdb\x57\x57\xf4\x44\x45\xcc\x50\x48\xf6\xba\x5f\x0a\xd8\x15\x75\x21\x48\x49\xf6\xbc\x9e\x21\xbc\xeb\x26\xc4\x91\xd6\x49\x39\x94\x28\x87\xa7\x0d\x67\x85\xaa\x54\x2d\xea\xc6\x7e\xc9\x23\x67\x9b\x97\xae\xee\xb7\x4e\xbb\xee\x51\x02\x1d\x7e\x5f\xbd\xef\xa5\xb1\xa9\xbf\xba\x2a\xaa\xbf\x12\x2a\x42\x1f\xcf\x22\x0d\x49\x58\x96\x04\x66\xd9\xa3\xd9\x4c\xa0\x73\x35\x8a\xaa\x1a\x04\x2c\x52\x30\x22\x62\xe1\xf9\xa5\x7a\xa4\xa3\xa8\xd9\x46\x0a\x76\x79\x17\x7d\x58\x26\x6d\x05\xa4\x60\xdf\x67\xf9\x07\x71\xbd\x74\x8a\x56\xc8\xc1\xce\x4f\xab\xb2\xec\x1b\x5d\xa6\x92\x8b\x49\xfb\x85\x28\x85\xf7\xf7\xd9\xfe\x11\x7d\xd1\xfe\xac\x27\xee\xa8\x85\x92\xa7\x13\xb5\xf0\x96\x30\x8e\xa8\x85\x8a\x97\x36\x15\xb4\xf0\x92\x61\xcc\xfa\xb0\x1f\xb4\x93\xc2\x76\x28\xd7\xee\xa2\x6c\x48\xe7\xc0\xd9\xba\x97\x3f\x7a\x5b\xe8\xea\xc5\x31\xef\xe5\x3d\xf8\xd1\x86\xf0\x2c\xc1\x8b\x96\x4d\xc8\xfa\x88\x9c\xcc\xfe\x1a\x1b\xcd\x3d\x5a\x9a\x15\x35\x1b\x08\xbe\x17\x17\x0d\x5d\x27\x5d\x82\x92\xa9\xc9\xd8\x65\x85\x4c\x2d\x7d\x87\x4d\x50\x72\xbd\xb0\xf0\xb7\x7b\x79\x0f\x86\xc3\x5d\x85\x94\x3b\x39\xf0\x5a\x72\xd9\xd8\x39\x1e\x8a\x0e\x7b\x77\xd9\x41\x59\x57\x74\x48\x20\x13\x64\x61\x49\xa4\x78\x73\x27\xc7\x41\x74\x6f\x89\x75\x29\xa5\xf2\x85\x64\xee\xf2\x31\x08\x9f\xbb\xdd\xe4\xad\x6c\x90\xa4\x6d\xb3\x90\xcc\xe5\xe4\x9c\xa6\x2f\x29\xcb\x89\x51\x1f\x10\xcd\xf9\xc0\x84\x64\xae\xe7\x6f\x23\x5a\x16\x57\x14\xa8\x41\xa4\xa6\x44\x6f\x66\x9f\x84\x74\xad\xfb\x34\x3d\xc1\x44\x90\xa4\x70\x3d\x53\x3d\xc8\xca\x32\x27\xee\x6d\x20\x07\x73\x19\x1f\x22\x37\x5f\xee\x6d\xf0\x2a\x8a\xe9\x98\x90\x9e\x75\x9f\xbc\xb0\x2b\xea\x59\xb4\x5e\xb8\xd8\xed\xc6\xf4\x18\x19\x65\xad\xd1\x83\x42\x9a\xd9\x58\x8f\x77\x94\xda\xc4\x03\x42\xf1\x2f\x09\x88\xec\xde\x22\x09\x31\x43\x04\x3f\xba\xf3\xfa\x66\x1f\xb2\xaa\x29\x08\xcc\xef\x40\x83\x30\xf8\x4e\x3c\x77\x84\x47\x8d\x6d\xaa\x05\x66\x18\x2f\x49\xbf\x63\x3d\x5b\xfd\xd3\xc8\x36\x77\xf2\xed\xaf\x6c\xf9\xee\x2c\x0f\x0d\x6d\x5d\x59\x2b\x99\x85\xfa\x68\xdf\xb0\x19\x76\x38\xd6\x1d\x72\xe8\xb2\x2f\x6e\x14\xe9\xf9\xec\x8b\x4b\x84\x4e\xec\x8b\x5d\x04\xe5\xb2\x43\x12\xd7\x33\x07\x6b\x87\xad\x52\x57\xff\xf6\xc5\xae\x29\xae\x45\x13\xe6\x1f\xbe\xa2\xe8\x50\x2e\x7c\xdd\x75\x17\x05\x75\xc2\x1e\xd9\x21\x79\x2b\xba\xe0\xf6\x85\x14\x45\x1c\xa3\x1d\xa2\xb7\x9e\x8b\xc6\x01\xb2\x61\xcc\x1b\x03\x28\x2d\xd1\x0e\x03\xa8\xae\xc5\xdd\x97\xc8\x0e\x77\x27\x5e\x36\x72\x47\xb6\x11\xae\x5d\xb2\x28\xdb\x97\x36\x9f\x67\x40\x4f\xe2\xae\x61\xb2\xf9\x8a\x46\xb2\xc0\x02\x45\xcd\x60\x16\x23\x06\xe7\x46\xd6\x96\x8b\xfa\x17\x64\x47\x2e\xae\x07\xb2\xa3\xfb\x23\x8b\xed\xa9\xc5\xa0\x66\xfe\xd9\x9d\xf8\x29\x0b\x75\xeb\xd1\x60\x49\xfb\x9d\xa3\xa0\x60\xeb\xed\x8f\x9f\xe8\x83\xfb\x17\x86\x1d\x97\xba\xc0\xb6\x2d\x9a\x22\xd4\x9b\x2e\x77\x9e\x7d\x5b\x55\xa9\x68\x9b\xa4\x7a\xf4\x08\xf7\xda\xe3\x7c\xe6\xf2\x1c\x21\xb5\x1b\xea\x41\x28\x9a\x08\x8d\x6f\x2c\xb6\x92\xfb\x2a\xf2\xb6\xbb\x0b\xd1\x59\x5e\xe8\xc4\x9e\x3d\x8d\x38\x0b\x5b\x00\xf2\x7b\x23\xd2\xbb\x84\xd6\x15\x9a\x76\xca\x04\x89\xd0\xb4\x3d\x43\xdd\x10\x9a\xb6\xe7\xea\x5f\x86\x41\x59\x72\xb5\xac\x36\xcf\x81\x1d\x16\x5b\x59\xbe\x4c\x14\x42\xb6\x7a\xfa\x10\xe9\xcd\xab\xaa\x4d\x0c\x63\x65\xf5\x49\x0c\xd9\xa2\x77\x1a\x21\x64\x4f\x59\x7f\x8c\x59\xa8\xae\x08\x62\x0c\xfc\xbb\x6f\x91\xb6\xee\xa0\xf6\x23\xef\xf0\x7d\x6b\x3f\x0e\x57\x0c\xee\xa9\x1a\x69\x30\xf5\xb3\xbb\xb4\x78\x02\x24\x55\xbc\xd4\x7f\x7f\x15\x3e\xf4\x57\xa6\x45\x3d\x14\x4d\x95\xd4\x2a\x5e\x9f\xbc\x7b\x6f\xdd\x7e\x4d\x35\xc1\x9d\x97\xa8\x7f\x87\x83\xdb\x9e\x3d\x1c\xe1\xb1\xe2\x6c\xe0\x10\x8f\x46\x81\xe7\x9b\x3f\x42\xc0\xf0\x70\xda\x21\x8b\xca\xba\x23\x08\x19\x79\xca\x0e\x65\xe9\xef\x54\x2e\x42\xa1\x5e\xfe\x61\x1c\x70\xa8\x24\x02\x48\xf6\x0c\xe5\x46\x88\xc8\x2e\x6b\x7c\x62\x42\x9e\x4a\x55\x4d\xe8\xbc\xcb\x56\x97\x08\x91\x99\xb8\x71\x27\x17\x4a\xee\xc5\xd5\x70\xc7\x0f\xb5\x21\x7c\xac\x6d\x5e\xc4\x41\xd4\x19\x40\x84\x94\x9b\x3f\xc6\xfc\x68\xb6\x42\x84\x94\x25\x47\x20\xe6\x63\xcf\x90\x7b\xc4\x7c\xec\xf2\x73\xa3\x20\x8f\x53\x96\x47\x8a\xeb\x98\xfd\x43\x64\x46\x32\x18\x22\x58\x63\xcf\x42\xaa\x05\x6c\xd8\x55\xab\xbc\x0d\x39\x07\xc9\x31\xd4\x9d\x78\x3a\xc9\xad\xdd\x2e\xdc\xa7\x6e\x71\xd1\x71\x0d\x0a\x0e\x3d\x4f\xae\x5d\x82\x95\x23\x67\xdd\x5b\x82\x9f\xef\xef\x5e\xd1\x53\xd7\x09\xc2\x1f\x2a\x2a\x32\x8b\xfb\x7c\x17\x2d\x48\x57\x23\x7a\x0f\x4f\xd5\xb4\xb1\xcc\xf2\x4f\xe9\xfa\x54\xc5\x1b\x82\x32\xbb\x6c\xe0\x8f\xee\xb2\x8c\x8b\x51\x86\x88\xa8\x67\x5d\x2b\xd5\xab\x35\x95\x05\x8d\x43\x1d\xed\xca\x8d\xa8\x89\xad\x22\xd7\xa7\xb3\x31\x25\xea\x6d\x15\x99\x55\xfd\xcb\x58\xcc\xfe\x67\x99\xe7\xae\x58\xfa\xcb\xf2\x69\x23\x22\x92\xf3\xa3\x5d\xa1\xb8\x75\x2a\x2a\x9c\x7f\xc9\x8f\x76\x48\x81\x7a\xd6\xc6\x43\xea\x23\xf7\x31\xbb\x0a\x3b\x08\x9d\x85\x94\x27\xc9\xf0\x71\x87\x9b\xcb\xdc\xbf\xdf\x98\x77\xe1\x95\x2a\x5c\x51\xfd\x35\xe6\xe0\xfb\x51\x73\xa0\x36\x51\xab\x36\x7e\xad\xc4\xa6\xf6\xb1\x8d\x48\x9c\x0a\x4a\x3b\x89\xc4\x99\x9b\x87\x19\x3c\x14\xc9\x32\x89\xbc\xa9\x58\xcb\x27\x17\x3b\x58\xdb\xb2\x8a\x54\xf2\x30\xb9\x46\xb4\xf0\x78\xab\xbc\x44\x2f\xee\x8a\xab\x41\xdf\x1c\x15\xed\x0f\x63\xdb\xa6\x9b\x03\x76\xa0\xc2\x6d\x4e\x19\x45\x6d\xb9\xab\x14\x4b\x7e\x63\x51\x99\xbf\x1f\x99\x6a\x7f\xe3\xf1\xa5\x03\xa8\xe8\x9b\xc6\xbd\x4d\x37\xc9\xf4\x4f\x83\x09\xa9\x9b\x24\xfc\x4c\xa6\x2c\x76\xee\x6e\xe2\xa0\xe9\x12\x6a\xa8\x25\x5e\x70\x3e\x76\xe3\xb2\xd0\x86\x93\x71\xe4\xa5\x39\x6b\x2c\xcc\xd4\x2f\x83\xbb\x9a\xa7\x46\x2a\x07\xd3\x97\xb3\x81\x14\x5d\x2b\x46\x8d\x92\x58\xee\x26\x57\xe7\x97\xb3\xb1\x30\xc2\x8a\x16\xb0\xe9\x6e\x68\xac\x8c\x56\x1f\x89\xda\xf5\x2d\xca\x55\xe0\xde\x82\xed\xa7\x3f\x32\x30\xf7\x36\x16\x51\x9e\x4f\x08\xcb\xd9\xb3\xe7\x6b\xab\x7b\x6e\x92\x4b\xd0\x23\x43\xe9\x54\xc6\x60\x44\xe9\x3c\x85\x8b\xb2\x71\x5c\xb4\x84\xe1\x4b\xb2\xfb\x66\xe8\xe2\x7b\x55\x7f\x64\xfa\x9a\x72\x2d\x8a\xba\x56\x1d\xe6\xa1\xac\x3a\x5f\x95\xd5\xe4\xba\xa2\x27\x7e\xca\xb0\x43\x1c\xd7\x8b\x26\xb3\x8b\x05\xaf\xab\x2a\xdc\x42\x76\x79\x2b\x24\xec\x66\x2f\x5a\x23\xcc\x18\xe7\xe5\x0e\x4d\x56\x85\x47\x27\x91\x36\xef\xea\x9b\x4c\x96\x8a\x97\x07\x2a\x9e\x89\x66\x90\xe8\x9a\x97\x9e\x30\x3b\xcc\x11\x7b\x71\x77\x97\xe4\xca\x2e\x0b\xe7\x4d\xe4\x72\xd7\x73\x47\x77\x64\x0f\xee\x7a\xb9\x5c\x56\x7d\xf2\x47\x06\xae\xb1\x11\x44\x44\xfc\xa0\xdd\xd1\x8a\xef\xfe\x98\x69\x45\xd3\x82\x46\xa2\x6f\x37\x44\x79\xe5\xd2\xc8\xe3\x3e\x1d\x5e\xe0\xb8\x05\xa4\xcf\x4e\x98\xce\x5e\x3c\x29\x5b\xfd\x61\x9c\xc8\xee\xa6\x8c\xd8\x36\xce\x20\x2d\x64\x26\x4c\xe7\xf9\x7a\x29\xfb\x26\x9b\x94\x55\x55\x4c\xc3\xc0\x26\xdf\x97\xf1\x40\x28\x7e\xfd\x0d\x17\x87\x7b\xc0\xe7\x86\x3f\xb1\x07\x14\x9d\x8c\xc1\xb6\x0c\x3a\x4d\x9e\x84\xd0\xad\x17\xf5\x3f\x0c\xeb\x7a\x51\x17\xc2\x78\xee\x96\xac\x9d\xc0\x88\x5d\x71\x04\x88\x8b\x78\xa6\xd3\x1f\x37\x8d\xf8\x97\x87\xe8\x91\x53\x9f\x3d\x35\x65\x2e\xaa\xe0\x15\x91\xc3\xed\xde\x94\x19\x19\x21\x14\xbb\x74\x31\x09\x9a\x78\x3e\x3a\xdb\x99\x83\xa9\x6c\xac\x19\x1c\x08\x82\x1f\xf6\x22\x2c\x16\xbe\xf4\x7a\xd1\x2d\x15\xae\xf4\x8a\x29\x44\xac\xda\x8a\x30\xe7\xd2\xc4\x7e\xb3\xd8\x62\xb9\x9a\xc1\x47\x67\x35\x4a\x37\x19\xe3\xd2\xc1\x5f\x62\x21\x89\x00\x08\xdb\xb5\x22\x79\xc7\x96\x79\x9a\x89\xb0\x30\x4f\xeb\x25\x39\x77\x68\xbb\xac\x6b\x69\xa1\xc4\x62\x0a\x2d\xec\xd1\x7a\x49\xce\x05\xd6\xd2\xc9\x59\xe8\xc3\x99\xee\x41\x10\x55\xb4\xdb\x96\x8e\x8a\xbb\x87\x4d\x91\x2f\xe7\x25\xc2\x47\x04\x65\x58\xab\x9d\xc2\xea\x51\x70\x94\xe4\x3f\x83\xd0\x87\x5d\x7e\x61\xf6\xe2\xa8\x24\xe7\xe2\xf0\x16\xe7\x22\x4a\xc8\xe5\x36\x76\x70\x6b\xd5\x9f\xb3\x27\x4a\xff\x36\xc8\xe6\xbf\x9d\x0d\xad\xab\xee\xe6\x23\xd4\xbe\xae\x50\x44\x52\x59\x42\x8a\xbd\xf1\x8f\xf6\xcd\x69\xf9\x9a\xb2\x5a\xb0\xae\xec\x26\x3b\x94\x7d\x85\x71\xc5\xad\x5c\x84\x9f\xd3\xad\x18\x12\x29\x45\x6b\x9f\xc4\x36\x4c\x7e\x5d\x45\x6c\xc3\x5e\xb2\x73\xdc\x9f\x1a\x57\xc8\x98\x6a\x2b\xfe\x38\x43\x43\xcb\x39\x38\x4b\xea\xeb\xa4\x79\x75\x95\xdd\x23\xb6\xc4\xe6\x1c\x66\x37\xff\x30\x3b\xea\x5b\x3c\xac\x8a\x18\x08\x08\xa3\x2e\x39\x1e\xd9\x9b\xbd\xa4\x79\xdd\x7a\xcb\x8b\x4c\x0e\x13\xb4\x5e\xbe\x45\x21\x46\x9a\x2b\x0a\xec\xe9\x09\xf0\x8e\x70\x36\xe2\xdf\x98\xac\x09\x33\xb3\xf3\x55\x43\x89\x0d\x52\xbe\x39\x66\x24\x3b\xcb\x22\x08\xa1\x63\x77\x56\x74\xe5\xec\xad\xa1\x51\xf6\x25\x8c\x29\x94\x23\xdb\x32\xd9\x02\x6e\x0b\x7f\x8a\xbf\x7e\xc2\x8b\x71\x52\x0e\xc6\x92\x66\x1e\xd9\x4f\xf5\x73\x21\x0c\xc1\x4e\x27\xfc\x15\x2a\x5b\x4f\x8b\x30\x0c\xbb\xe5\x32\x87\xd8\x87\xa7\x26\xb5\x0a\x82\xd0\xf6\x7b\x09\x41\x64\x7f\x64\x82\x45\x91\xbf\xd0\x89\xf5\xeb\x06\xbb\xb1\x7c\x7d\x2b\x86\x36\x2c\xce\x3e\x7c\xfd\x1b\x48\x1c\xf7\x78\xd2\xcd\xd9\x2f\xcc\x82\x44\x45\x86\x7b\xbc\x53\xed\x50\x96\xc7\xbf\x5e\x10\x21\x36\xea\x45\x7b\x37\xdc\xd3\x9d\x0e\xea\xa7\x9b\xa1\x8a\x5c\x7e\xe9\x7d\xac\x83\xf7\x92\x60\x41\x0f\x15\xc5\x17\x94\x0d\x27\xf1\x05\x73\xf9\x96\x0d\x17\xe4\xde\x86\x2f\x1f\x68\xf5\x29\xde\x3f\xa5\xba\x22\x06\xae\xbd\xf5\x16\x3b\x45\xf7\x43\x08\x8b\x4e\x76\x28\xdb\xa8\x69\x2a\x0b\xd6\xd7\x32\x87\x91\x58\x2f\xd5\x3f\xdd\xbf\x7e\xaa\x54\xbc\x14\x29\x50\x6e\xd2\x88\x14\x68\x37\x31\xfb\xcd\x8d\x20\x7a\xea\xcd\xfa\xdf\x7a\x65\xbd\x39\xe0\xa2\x91\x14\x35\x50\xf6\xa0\xfb\xad\x0d\xa0\xdd\xf1\xf6\x06\x70\xe1\x41\x61\x0d\x6d\x72\x2f\x6a\xf3\xbc\xe1\x9f\xc8\xe8\x72\xbf\x45\x52\x69\x3f\x84\x79\x57\x31\x86\x0e\xb1\x53\x97\xed\xf5\x7e\xeb\x1a\x18\xce\x4e\x2a\x52\x27\xb8\x07\x9a\xeb\x89\x15\x6f\xfe\xa6\x36\xfd\x51\x6d\x6a\xe4\x8b\x53\xa3\xad\xf4\xc6\x55\xbb\x4c\x24\xf7\x5b\xc4\xb6\xde\x65\x21\xb0\xea\x45\xf8\xe2\xad\x4b\xa2\x38\xcb\xb2\xe9\x96\x08\x13\xaf\x5e\x74\xfc\xde\x21\x67\x2e\xcd\xd5\x72\x2c\xaa\x3f\xbe\xc9\xd2\x4a\x48\x83\xb2\x84\x41\x3b\xc4\x3f\xe7\x23\xd5\x7e\x74\xac\x85\x43\x3f\xa8\xb2\xfb\x71\xfa\xe1\xa8\xea\x54\x7f\xb4\x52\xda\xfa\x1f\xe9\x2f\x66\xd7\x14\xb3\xd4\x9d\x7b\xff\xfa\xa9\x52\xbd\x50\x60\xc6\xeb\xfb\x4b\x10\xae\x0e\x75\xb8\x87\x4b\xd9\xfc\x33\x19\x58\xf9\xd1\x1b\x06\x56\xe7\xab\x6a\x12\xe5\xeb\xc2\x41\x67\xda\x36\x93\xa0\x86\x77\xf5\x15\xf4\x81\x55\xee\x2b\x1b\x89\x4b\x95\x8e\xc7\xb6\xc4\x45\x93\xf8\x60\xc0\xe6\x97\x19\xc1\x0a\xcb\xfd\xfd\x1a\x8c\x64\xac\xdd\xd6\xfc\xb0\x38\xd8\x9d\xae\xc5\x7e\xaf\x58\x81\x3e\x0b\xce\x57\x2d\xb1\x0f\x4f\xf6\x21\x3b\x22\x1b\x8c\x9f\x3b\xe3\x45\xf3\x59\x25\xf6\x70\xe6\x0d\xf8\xa0\xc9\x7b\xba\x51\xc8\xc2\xab\x83\xa1\x73\xb2\xa8\x6b\xc6\xeb\xe3\x59\x11\x2b\xe4\xfc\x96\xc2\xb0\x04\x32\x12\xa6\x67\xc5\x9b\xfb\x56\x30\xd6\x67\x11\xcb\xa1\xf0\x1a\x7e\xd0\xfc\xec\x43\x5d\x8e\x87\xe8\x5d\x78\x6f\x3c\x0b\xbf\x3c\x85\x07\xd1\x83\x0a\x64\xc7\xdb\xd6\x83\xea\xe2\xad\xd8\x09\x0f\x9a\x83\xb7\xfc\x54\x3f\xab\x13\xb9\x20\xf6\xe2\x23\xfd\xba\x8c\xec\xf7\x41\x0d\x6e\x40\xde\x3f\xa8\xc1\x0d\xc8\xc8\x07\x35\xb8\x8e\x07\xe4\x47\x5a\x70\x05\x39\xff\x83\x16\xdc\x28\xe3\x8f\x1e\x56\x1e\x54\xe4\x46\xd1\x48\xc2\x7d\xfb\x28\x73\x2a\x87\x69\xd2\xe5\x8f\xed\xd7\xcf\xa8\x5a\x98\x11\xc6\x19\xb5\xbb\x3b\xfb\xe4\x46\x56\xee\x15\x39\xff\xee\x7d\x72\xdf\xbe\x7d\x22\xe7\x26\xc2\x74\xd6\x43\x5c\xe1\x44\x29\x25\xe5\xc2\xae\x37\xfb\x1b\x71\x77\x9a\xb3\xc4\xc3\x51\x83\x2b\x3c\x0b\x66\xcd\x86\x5c\xfc\x16\xe5\xc2\x4d\x99\x3b\xba\xc2\xc9\xb0\xbb\xb6\x50\xb4\x71\x83\xef\x20\xbb\x58\xc6\xa1\x0d\x31\xf4\x11\xf7\x46\xd9\xed\x07\x77\x2e\xc3\x44\x78\x50\xce\x3b\x59\xff\x36\xe8\x42\xe4\x3c\x0f\xba\x7a\x77\xe6\x52\x79\xd0\xd5\xeb\xf8\x96\x7f\x50\xd5\x3b\x15\xab\xf3\xf1\xd0\x91\x86\xef\xc9\x4e\x2a\xd6\x60\xe2\xb0\xe4\xec\xfe\xc7\x53\x27\xf3\x3e\x3d\xd9\x50\x9f\xc0\x6d\xc8\xc9\x72\x58\x92\x6b\xfe\x90\x75\x2f\x1e\x7e\x4b\x43\xa1\x06\x78\xb2\x53\x59\x86\x3b\x6e\x65\x19\x6e\x2e\xca\x32\xdc\x9a\x94\x65\xb8\xbd\x2a\xcb\x70\x53\x57\xb6\x45\x74\x8e\x4b\x39\x86\x9b\xfd\x53\x86\x5b\x5c\x96\x4b\x7f\x0e\x65\xc3\xac\xe7\x5b\x96\xd1\x76\x77\x91\xa3\x54\x5c\x96\xd1\x16\x77\x82\xd1\x66\x67\x19\xed\xd4\x78\x74\x2a\xab\xaa\x9a\x8c\xb6\xfa\x2b\xa3\x4d\xfa\x2d\x86\x06\xb9\xfb\x2b\xa3\x2d\x9a\xb8\xa9\xc5\x75\x16\x2c\x53\xd5\xab\xc9\x70\xa7\x1b\x8a\x67\xac\x17\x3b\x5c\xe1\x9f\xdf\x3a\xcb\xea\x56\x57\x15\xe2\xc1\xfb\xfb\x5b\x5c\xa7\x78\x6e\xa6\xd6\x4f\x33\x87\xa5\x0b\x12\xd5\x93\x65\x44\x42\x10\xf8\xd3\xc9\x39\xf9\x2b\x23\x12\x56\x0d\x3d\xc5\x5b\xaf\xbe\x07\x45\xc5\x53\xb3\x16\x1b\xf7\x61\x45\x58\x35\xfc\xe5\x9f\xaa\x5c\x98\x05\xec\x2e\xcc\x88\xb2\x7b\x15\x0b\x28\x2c\x1a\x7a\x8d\xb7\x14\x12\x4e\x36\xdc\xb6\x26\xef\xb1\xa0\x15\x72\x13\x1a\x0d\x2d\xae\xa9\x79\xdc\x04\x9d\x40\x59\xf1\x81\xab\xd0\x51\xb5\x7f\x76\x9c\xd4\x0e\xe1\x75\x72\x81\x7e\x41\x37\x3b\x76\x79\x27\xc8\xcd\xb3\xd1\x75\xc5\xe9\xc2\xb3\x43\x31\x8c\x37\xd7\x03\xf1\x3f\x2e\x15\x7c\xc9\xb8\x57\x19\xbc\x4a\x28\x83\xb1\xb6\x32\x98\x8b\x2a\xd3\xa3\x06\xff\x28\xcc\xbc\xdc\x52\xf8\xb6\x77\x0d\xaf\x5f\x3f\xc2\x55\xfb\x45\x2c\xd5\xac\xcc\xa1\x19\xb3\xab\x7b\x7e\xfd\xb4\x3f\x5b\xed\x3f\x8a\x64\xce\x2e\x21\x90\x79\xd3\xcc\xbc\xf0\xb8\x74\x29\x73\x2a\x0c\x12\xf9\x81\xa4\x27\xfc\xd9\xa3\x60\xdd\x5d\x7d\x8d\x60\x24\xac\x3d\x94\x34\x52\xa0\x47\x51\xbc\x8b\x8b\x9d\xda\xb8\xb8\x88\xe1\x0d\x23\xef\xd9\x6f\xc2\xac\xeb\x4b\xf4\x8d\x3d\x0a\x05\x8a\xd7\xd1\x07\xfa\x13\x7f\x06\x0f\xf1\x81\x71\x9e\xff\x10\x1e\x98\x40\x1c\x0f\xc1\x81\x07\xec\xd8\x87\xd8\xc0\xe8\x88\x3c\x04\x03\x8e\xc7\xf7\x73\xcd\x87\xb0\x6d\x23\x9c\xfe\x45\x1e\x06\xd8\x15\x92\x28\x00\x81\x69\xef\xa0\x71\x0f\x00\xc3\xf6\x3b\x85\xb6\xfb\x73\xad\x8b\xb0\xb7\x77\x0e\x0f\x44\x01\x48\xd8\x6a\x87\x82\xbe\x00\x71\xf5\x07\xdb\x05\xc0\x42\x08\x71\xf6\xb4\x00\x68\x35\x95\xef\x4f\xe2\x22\x29\xa1\x9b\x14\x80\x2c\xa9\xf1\xa1\xd2\x02\x50\x51\x0d\x0d\x97\x72\x01\x80\xa2\xc8\xe3\x5b\x02\x4d\x76\xd4\x95\x03\x80\x7a\x1e\x3a\x98\x01\x80\x5a\xee\x61\xda\x19\x80\x0f\xca\xb4\xa1\x36\x18\x00\xdc\xbc\xf6\xb0\x58\x3c\x00\xbb\xec\x0c\x5d\xc1\x00\x14\x8d\x76\x4e\x03\xe2\x8e\x28\x61\xe6\x19\x80\x46\x00\x8c\x90\xce\x04\x00\x96\x2e\xaa\x62\x01\xf8\x92\x22\xc5\x00\xa4\x63\xe1\xb9\x29\x00\xa8\x96\x5e\xe1\x93\x2e\x00\xf1\x38\xba\x7b\x28\xe6\x07\x40\x5a\x39\xf1\x10\x38\x00\x19\x42\xa3\x8a\x03\x00\x3b\xfe\xc0\x67\x01\x48\x0c\x2e\xee\x9c\x00\x48\x28\x58\x93\x5a\x59\x08\x43\x50\x39\x09\x00\x02\x8f\x72\x7b\x5d\xb0\xe0\xb9\x51\x51\x09\x80\xf0\x62\x84\x44\x08\xc0\x66\x19\x02\xbb\x05\xe0\xa5\x9f\x78\xf5\x17\xee\x10\x72\xf8\xc3\x05\xc0\xf5\x1e\xca\xbc\x07\x80\xdc\xec\x46\x5e\x0b\x40\xab\x3f\x55\xc7\xc6\x0c\x04\x29\x65\x00\xe8\x07\xd2\x17\x01\x68\xd6\xcb\x00\x1f\xf1\x0e\x09\x1b\x80\x37\x7e\x25\xb3\xb6\xc3\xad\x48\x41\xf0\x53\x01\x40\x1d\x84\x91\x62\x00\xb8\xc8\xe0\xaa\x02\xc0\x6d\x46\x49\xf7\x17\xb0\x29\xd1\x05\xd8\xbc\x6a\xe2\xcd\x00\x60\xe9\x27\xc3\x80\x68\x05\x7e\x55\x00\x70\x5f\xd3\xc2\x59\x28\x00\x7c\x41\x96\xec\x4a\x89\xea\x0f\x37\x2a\x00\x8f\x00\x45\xad\xc8\x75\x6a\x8f\xb0\xae\x02\x7c\x08\x8c\xa0\x9e\xce\xae\x8e\x75\x97\x80\xec\xe8\x45\x33\x76\xe3\x04\xeb\xd0\x4a\x6a\x05\xf7\x40\x77\x2f\xd3\x3f\x79\xa3\x28\x5c\xa6\x26\x68\x11\x16\xb4\x8d\x6c\x00\x32\x94\x5e\x93\x06\x87\x15\x49\x1f\xce\x6f\x19\x34\x57\xe1\x93\x7b\x17\x7a\x5e\x85\x71\x6e\xef\x86\x08\x5f\x0f\x00\x7c\x52\x4b\x37\x00\x7d\xa7\xf0\x2c\x15\x80\x86\xd8\x33\xfc\x80\x0a\xf0\x02\x90\x0c\x60\x03\x85\x53\x40\x00\x44\xbb\xac\xd5\xfd\x40\x62\xd2\x6b\x73\x09\x08\xd8\x5e\xdb\x9f\xb4\xe0\x55\x9a\xc9\xfb\xf6\x1a\x47\x43\xbd\x76\x03\x70\xb2\xd2\xeb\x70\x9f\x50\xcc\xea\x15\x6c\xbc\x12\x91\xf5\xee\x5e\x85\x6c\x12\xf1\xa1\xee\x69\x44\x91\x86\x2a\x6d\x5f\xc0\x87\xd9\x6b\x42\x36\x69\x12\xd2\xaa\x16\xe1\xda\x34\x37\xc3\x68\x3a\xc2\x09\x53\xf0\xbb\x37\x4d\x67\x92\xc1\x75\x6f\xda\xf6\x69\x21\x90\xec\xad\xba\x04\xc6\x0d\x3d\x2e\xad\x00\xbc\x65\xa8\xa6\xbd\x93\xa4\x92\xd9\x9b\x30\x58\x92\xaa\x14\x4c\x6a\x00\x9c\x83\x88\xf4\x19\x00\x9d\xe9\xd0\x9a\x0c\xc0\x44\xdb\xec\xe6\x32\x5a\x89\x78\xf5\xe9\x0a\x77\x51\xcf\xb5\xb2\x42\xcc\xf5\xae\xbd\x92\x87\xb6\x5b\x68\xe1\x08\xc0\x32\x08\x2f\xe4\xd1\x37\x0e\xfc\x34\x1f\x79\x04\xd3\xe4\xee\x5d\xeb\x9c\xe5\x2b\xbd\xdc\xc5\xad\x3c\x38\x25\x0d\xfb\x39\x01\xf4\x93\xf2\x05\xd0\x6c\xcb\x5f\x80\xdc\x04\xfe\xae\x63\x01\x48\x5f\xc0\x03\xe0\x5b\x07\xf3\x11\x11\x2d\x00\x88\xbd\x90\xf4\x13\x5f\x46\x7d\xfc\x06\x6c\x00\xc5\x00\x22\xcc\x75\xcd\x7a\x9e\xd2\xdb\xe9\x1e\xfe\xcc\xb4\x32\x6e\xff\x84\xf0\x96\x7d\x08\xa5\x65\x5c\xf1\xde\x7d\xe8\x9a\xc8\x53\x53\x38\x2f\x97\xe0\xfd\xd5\x87\xa7\x70\xf2\x02\xeb\xe1\x81\x42\x00\x14\xcb\xa6\x4b\x08\xb7\x0c\xaf\xcb\xc4\x12\xa0\x0f\xcf\x18\x4e\xba\xee\x1e\x7e\x84\x00\xc4\xc5\x4a\xd4\xfc\x00\xa0\xe7\x4d\x54\x75\x01\xe4\xb3\xc8\x3d\x7d\x14\x9b\xae\xbb\xa7\x0f\x77\xf1\x5d\xd3\x17\xf0\x50\x42\x95\x2e\xed\xc2\xa1\x8d\x9b\xf1\x06\x71\x00\xaa\x63\x2d\x0c\x69\x87\x48\x80\xbc\x61\xbf\xf4\xa9\x7d\x9a\x37\xc1\x8f\x4b\xf2\x68\x77\xe6\x19\x19\xae\xed\x02\x40\xb8\xdc\x3e\x85\xf5\xb2\xf4\x71\x46\x9e\x2e\x51\x55\xc2\x13\xb4\xe5\xfa\x76\x16\xff\x04\x83\xc5\x3e\xbd\xd7\x11\x74\x1e\x80\x9b\x7d\x13\x84\x79\x6a\xf5\x0b\x71\xdf\xd3\x75\x6b\xe3\x96\x91\x40\xb6\xa1\x68\x10\x80\x82\x2d\xea\x75\xf9\x27\x58\x9c\x8e\x4b\xdb\xa1\x8c\x8e\xc3\x9f\xd0\x6c\x0e\x00\x52\x89\x62\xb2\xaa\x0c\x98\x64\xe3\x12\x06\x2f\x0a\x27\xe0\x6b\xa3\xcc\x41\xe8\x96\x4b\x97\x53\x91\xbb\xc7\x71\x89\x68\x28\xf2\x4d\x43\xfc\xc1\x03\x58\x74\x74\x84\x2b\xe2\x00\xf0\x74\x1d\xb7\xa6\xb4\xac\x37\x25\xee\xdb\x25\xde\x98\x6e\xdd\x22\x80\x8a\x14\x39\x87\xd1\x47\xd9\xc4\x0b\xce\x53\xd4\x5d\xd9\x43\x9a\x80\x75\x7c\x01\x31\xd8\xfb\x37\x00\xa3\xae\x5b\xd7\x68\xd9\x13\xbf\x05\xb7\xf6\x5c\xd9\x0b\x37\x0c\xb7\xbb\xbe\x1f\x89\x5e\x74\x91\x54\x62\xf1\xdf\x23\x3c\x93\x00\xc0\xa3\xc7\xad\x75\xaa\x23\x4c\xe8\x0f\xa0\x0a\x80\x8f\xe9\x71\x8b\xde\xa9\x84\x9c\x3c\x00\xff\xa4\x33\x85\xb7\xae\xe2\x4a\xac\xc0\x03\x70\x1d\xb2\x18\xbc\xb5\x6f\xab\x7c\xf0\x8f\x43\x64\xff\xf1\xfe\xaa\x33\xa1\xcb\x7d\xe9\xd4\xd7\x99\x31\xfe\x4d\xb7\xeb\x2b\x2e\xa1\x81\xe2\x35\xfb\x1e\x29\x19\x80\xdf\xd5\x62\xa2\xbd\x4e\x51\xe0\xde\x4c\x75\x12\x72\x63\x84\x89\x29\x00\x62\xd4\x26\xed\x95\x2a\x3f\x21\x4d\xd3\x5b\x31\x97\xbe\xbb\x5e\x28\x01\x80\x93\x2a\xd2\xb8\xda\xa0\x39\x69\xd7\x57\xac\xcc\xee\x3c\x93\x4b\x6c\x6c\xcb\x93\x76\x57\xc5\x60\xec\x00\x9a\x01\x18\x96\x86\x77\xb4\x00\xa0\xc3\x3f\x7c\xc6\xeb\x06\xf7\x8e\xb0\xa7\x01\x40\x1d\xf9\x72\x09\x91\x18\x57\x36\x60\xb0\x00\xd9\xa3\xdf\x0a\x09\x68\x9a\xbd\x6e\x78\x10\x23\xbb\xa7\x5b\x61\xf9\x82\x93\x10\x00\x82\x9b\x0d\x13\xf1\x75\xcb\x8d\x66\x16\x6a\xa9\xc8\x10\x0f\xc0\x95\xca\xa7\x61\xce\xae\xe3\x4d\x98\x0e\x13\xf1\x75\xcb\xd3\x55\xce\xfe\x09\x3e\xa8\x46\xce\xee\xa9\x22\x5c\x64\x61\xa3\x36\x2e\x76\x57\x16\x36\x6a\xe3\xc2\x35\x5f\x16\xaa\x6d\xe3\x56\x1d\xd5\x3f\x21\x6c\xf9\x08\xa1\x7a\x00\x06\x4f\xb8\x26\x02\xbc\x0d\x0e\x57\xb9\xf5\x1e\x6b\x03\x97\xc3\x23\x0f\xff\x64\x81\x9e\xb2\x88\x86\x36\xb0\x46\xba\xc2\xc2\xe4\x00\x14\x5e\x63\x64\xa1\xb8\x86\x2f\xe0\x7b\x14\x5d\x1b\x0d\xc7\xaf\xe7\x51\x73\x09\xc0\x0b\x65\x14\x4d\x50\x5b\x59\x00\x0f\xce\xde\x4a\x8a\x08\xcc\xb6\x2a\xdc\xb0\xf6\x1b\x00\xf6\x29\xd5\x75\xa0\x98\x55\xc2\x77\x64\x00\xba\x2a\xf5\x04\x2d\x9d\xd8\xe2\x09\x32\xe7\xab\x08\x73\xb4\xb5\x98\xe4\xa2\x4b\xb2\xd9\xc6\x34\x44\x47\x01\x40\x3c\x8b\xe3\xfc\x03\x90\x86\x77\x2f\xda\xb8\x6d\xdf\xb8\x3d\xa9\x7a\x5c\xb5\x9d\x90\x9d\xa4\x2f\x40\xa3\xad\x42\xf9\x0d\x16\xd0\xdd\x2f\x2f\x83\x77\x61\x4d\xae\x14\xb1\xce\x30\x8d\xde\x36\x16\x07\xa3\x8a\x64\xec\x0a\x34\x8f\x4f\xe3\x00\x14\x30\x58\x70\xc3\x01\x60\x80\x5f\x75\x15\x77\x91\x48\xa3\xdd\xf7\x17\xb0\x01\x5c\x06\xb0\x94\x4d\x28\xa8\x13\xe4\xe4\x1e\x4d\xc7\xa3\xcf\x9b\x98\x28\x4d\xd8\xa1\xcf\x41\x4f\x9b\x76\xf2\x01\x54\x00\xae\x43\x36\xe4\xad\xb8\x8e\xa5\x18\x2c\xdf\x56\x16\x36\xf2\x4d\x9b\xbf\xe3\xd1\xf4\x26\x9e\x29\x00\x8e\x58\xd3\xda\x76\x7c\x5a\xde\x84\xcc\x3c\x80\xa5\x48\xd7\x4d\xf4\x5f\xc7\xb9\xc4\xa1\x65\x35\x41\x8b\x66\x09\x16\x12\x80\x0f\x2b\xd7\x44\xfd\x77\x59\xf8\xe0\x3e\x25\x00\x8a\x0f\xd4\x85\x83\xfa\xbe\x88\x62\x97\x3c\x1f\x1b\xbf\x45\xd8\xb0\x05\xa0\x4a\xaf\xaa\xb9\x44\xe3\x98\x76\x1d\x8f\x0e\x1b\xf1\x00\xfc\x13\x3d\xcf\x87\x4e\xd4\x10\x83\x67\x74\xe1\xa0\x31\x12\xd8\xa1\x6b\x2c\x63\x4c\x1e\x53\x26\xa1\xc7\x90\x8f\xed\xae\x29\x1c\x04\xf1\x3b\x00\xd7\x81\xdf\x3e\x1c\x6b\x1e\xc0\x14\x86\xe9\x22\x08\x87\xc2\x9e\x8c\x5e\xfb\x9f\xef\xaf\x31\x2b\x5e\xa3\x4c\x81\x8f\xc9\x2d\x30\x4c\x2c\x0f\x5c\xea\x1e\x80\xba\x60\x07\x2f\x43\x37\xc9\xc0\x89\xcb\x01\xdc\x06\x28\xd6\xd8\xed\x9f\x84\xce\xe7\x5d\x92\xf6\xfd\x01\x28\x38\xaa\x5a\xf1\x29\x37\xb1\x3c\xd6\x70\x20\x3b\x97\x40\x52\x30\x86\xee\xc0\xb1\xa6\xe2\x14\x79\x6e\x96\x83\x82\x0a\x53\x8c\xb5\x15\xa7\x54\xdb\x6b\x2c\x39\x41\x36\x39\x3d\x7c\xa3\x8d\xe6\xb1\x3c\x0a\x83\xdc\xdd\xec\xe3\xf0\x29\xaa\x14\x3c\xd0\x9b\x88\xf8\xb1\x0b\x1b\x61\x88\xd0\x1b\xbb\xaa\x5f\xa2\x5b\xc6\xee\x0a\xa2\x33\x5c\x45\x48\xbc\xce\x74\xb4\x2f\x80\x46\xc6\x17\xa0\xa0\xe0\xa2\x6c\xc6\x76\x40\xd6\xe9\x4a\xb7\xe6\x78\xba\xd2\x8d\x2c\xa8\xbb\xc0\x4b\xf1\x81\x44\xd8\x0c\x23\x9f\x29\x5c\xa3\xe0\xa7\xf7\x98\x5a\xa6\x39\x96\xfc\x44\x68\x4f\xcf\x99\x18\xdb\x14\xcf\x65\xce\x8e\xce\xad\xa9\x6b\xfb\x8c\xcf\x43\x84\x88\xdc\x3a\xdf\x63\x56\x03\x5e\xf2\x86\xa2\x29\x9e\xf3\xad\x4a\x85\x9d\xe5\xce\xeb\x1e\x26\xc8\xe7\x9a\x52\x58\xd7\x09\x9e\xbb\xc2\x4d\xed\xee\xe9\xee\xb2\xef\x48\xaa\x43\x8a\x85\x33\xf4\x59\x00\xa0\xb9\x9e\x85\xae\xe7\x9e\x52\x36\x15\x8a\x9b\x7b\x49\x3f\x3c\xbb\xd2\x2d\xbd\xe5\xe2\x3a\xb6\xad\x48\x8a\x01\x32\x0c\xaa\xee\x18\xa6\x7c\xf3\xea\x5f\xc0\xec\xff\x6f\xc0\x1a\x97\xd4\x4f\x45\x44\xad\x71\xc9\xb4\x4d\x1b\x6a\x8d\x34\xa4\x26\x5e\x04\xc8\xd2\xe9\xd5\x7c\x2c\x85\xdb\xef\x29\xb9\x8e\x25\xe2\x59\x68\x72\x29\x6e\xdd\x34\x07\x72\x4d\x59\x0c\xdd\x3a\x93\x6b\x12\x55\x7c\xde\xe2\x62\xae\x69\xad\x4e\x51\x44\x6b\x0e\x94\x3c\xb2\x50\xdc\x9a\x04\xb1\x9d\xb7\x48\xa4\xb5\x88\xbf\x51\x6e\xa1\xa7\x8d\x53\xe4\x1b\x5f\xcf\x00\xb8\xf0\x87\xd6\xf6\x00\x40\xa4\x7a\x59\xef\x69\x55\x92\xf9\xbb\x04\x4c\x5c\xed\xd3\x3d\xdf\xe8\x1a\xa4\xf2\x05\x84\xd7\xb1\xeb\xd6\x13\xf7\x00\xe0\x84\xea\xc8\x6d\xdc\xe9\xa6\xcb\x63\xd9\xf3\x23\x9e\x88\x4e\xe9\xc6\xfb\xed\x5d\xae\x56\xbe\x00\x1e\x7d\xda\xb8\x07\x80\x87\xeb\xf4\x2d\x81\xfe\xd4\x2d\xa4\xb5\x71\x1e\x9b\xae\xbb\xb7\x2f\x20\x54\x19\xee\xef\xf0\xd1\x7c\x28\x77\x77\x1d\x44\x9f\xbb\xee\xf9\x1b\xf0\x40\x56\xb8\x63\x0f\x3a\x79\xe9\xfa\x96\x08\xf2\x26\xb7\xfa\x2d\x81\x0a\x9b\xe5\x02\x1b\xaf\x9b\xe9\x32\xfa\xd8\x72\x82\x79\xa5\xf6\x2d\x81\x5a\x81\xe9\xf2\xf7\xac\xc8\x55\x87\xc8\xac\xcf\x40\x0b\xb6\xdc\xc2\xea\x9f\x89\xc5\x41\x36\x6a\xfc\xe0\xca\xfd\x2e\x49\x47\xec\x91\xbb\xd1\x6a\xde\xf1\x23\xff\x9e\xe6\x91\x3c\xeb\x92\xe5\xba\x58\x44\x0f\xee\x38\xbb\xaf\x81\x47\xdd\xca\xb3\x7e\x7f\x21\xd2\x76\xfc\x06\x0c\x98\xde\xff\xf5\xf2\xca\xe3\xbf\xdf\x5d\x0f\xde\x33\x7f\xb3\xdd\x9f\x45\x0c\xb4\xdc\xef\xdf\x00\xb0\x93\x90\xc0\x83\x63\xca\xd3\xc5\x64\x00\x02\x5a\xf3\x64\x9e\x75\xd3\x25\xbf\xfd\x0f\x80\x35\x4d\xdf\x12\xb4\x32\xf2\xb7\x8e\xd0\x0a\xea\xdf\x51\x45\x14\xab\xde\xf3\x37\x2f\x27\x0c\x9a\xda\x03\x60\x1e\x92\xdb\x48\xd2\x75\x6b\xdf\x9f\x60\xde\xd3\x45\x3a\x3d\x2b\xa1\x25\x60\x26\xce\x83\x1f\xc6\xd3\x2d\x8f\x35\x87\x82\xbc\xb9\xe1\x0f\xae\x0d\x7f\xf3\xe7\x1e\xbc\x1b\xf6\x36\x3d\x17\xb8\x30\x2c\x96\xf3\x3c\xf8\x29\x3c\xbd\xf8\x5d\x22\xfa\xd9\xfa\xb7\x8d\xd0\xc5\x6d\xbf\x0b\x04\x4f\x23\x9b\x7e\x7b\x70\xec\x77\x67\xf3\x00\x0f\x00\x39\xd8\x75\x7f\x01\x28\xcb\x7c\x67\xaf\x68\x32\xbe\x1d\xc7\x8b\x9e\x25\x67\x0f\x7e\xf4\x4e\x15\x06\x54\x69\x05\xd4\xfe\x05\x40\x7a\x7d\x57\xa0\x6a\x67\x0c\x8f\xbd\x21\x5a\xf7\xfb\xd8\xca\x34\xe5\xfa\x76\xb4\x4b\x57\xaa\xb5\x2f\x80\x57\x79\x73\xb3\x52\xae\x4f\xff\x8b\xa0\x15\xff\x5a\xff\xf6\x7f\x7d\xfe\xf1\x57\xba\x7e\xfd\xfc\x55\xcf\xc0\xff\xf1\x57\x7d\xff\xfa\xf9\xab\x47\x18\x93\x7f\xfc\xf5\x4a\x67\x2c\xe7\xdf\x99\xa6\x33\x27\xaf\x58\xd8\xf3\x2f\x54\x99\x7a\x40\x5e\x40\x70\x5d\xf5\x8f\xbf\x5e\xf9\xbc\x34\xce\xbf\x1a\xaa\xbd\x01\xe9\x01\x81\x51\x75\x1d\xc8\xd9\x64\xe7\x1f\xc4\xef\x81\x2c\x7e\x85\xa3\x87\x1c\x10\x7e\x25\xb7\xe5\x07\xb2\xf9\x55\xe8\x64\x9d\x15\x78\x85\xcd\xc0\xf9\x37\x71\xae\x7a\xda\x8f\xf7\xf6\xf9\x17\x7d\x0c\xc2\xe6\xb5\xa9\x3d\xe2\x67\xdf\xe8\x2a\xbe\x42\x69\xf7\xfc\x8b\xdf\x86\xbf\xf9\x57\x88\xc6\xcf\x3f\x82\x78\x05\xa4\x01\x89\xa3\x7e\xfa\x1e\x3e\x4b\xce\x3f\x7e\x77\xb0\xe7\x2b\x5e\x9b\xe7\xdf\x07\x58\x0a\xd8\x13\x30\x9c\x8f\x04\xd1\xf6\x0a\x6d\xce\xf3\x6f\x53\xee\xb4\x10\xee\x20\xce\x3f\xf9\xc8\x07\x36\x80\xc5\xf5\x13\x62\xa5\x57\xb8\x5d\xf8\xeb\x45\xa0\xd4\xb0\xbe\x78\x85\xde\xdb\xf9\x77\xba\x72\x51\x6a\xbd\x00\x05\xe6\x0e\x45\xe7\x57\x78\x2e\x38\xff\xce\x1e\x09\x6d\xdc\xd7\xc3\x22\x41\x40\x86\x4e\xe0\x2b\x1c\x7b\x9f\x7f\x51\xd9\x79\xf5\xbc\x82\x6b\x7e\xfe\x05\x0a\x0f\x2d\xe5\x77\xbc\xc5\xcf\xbf\x17\xb0\x1e\xb0\x0f\x30\x1a\xad\xe3\xc0\xce\x9e\x3d\xff\x6a\x54\x37\x03\xd4\x02\x14\xdc\xfa\xd8\xbb\xef\x30\x1d\x3e\xff\xa2\x6b\x67\x95\xdf\x77\x74\xed\x1d\xde\x74\xef\x40\x97\xef\xc0\x7b\xe7\x1f\x6d\x9e\x9b\xe3\x1d\x76\xb0\xe7\x1f\x6d\x86\x92\xca\xbd\x43\xd9\x87\xc4\x83\xcb\xe6\xf9\x8f\xbf\x3e\x69\x84\x8b\x64\x12\xf7\x41\x77\x0d\x68\x6c\xe7\x48\x44\x90\xb4\x21\xe8\x34\x74\x45\x17\x02\x1a\x56\xc3\x24\x22\x1a\x39\x4e\xf6\xd3\x08\x5e\x16\x89\xf9\xeb\x67\x66\x81\xd3\x50\x83\x21\x4a\x9f\x28\x32\xa5\x51\x0f\xde\x23\x51\xa2\x74\x15\xb8\x19\xbc\x7e\xfd\x4c\x02\xf1\x9e\xdc\x36\xf8\x13\xa5\x6f\xc0\x1e\x4c\x5c\x83\x48\x9f\x22\xb7\x0c\xde\xbf\x7e\x06\x96\x5d\x69\x84\x86\x1f\x89\xf9\xeb\x67\x60\x99\x75\x72\x2e\x1d\x0e\x28\xf0\x70\x93\xa0\xde\x48\x60\x21\x29\x68\x33\xb4\x13\x2f\xaa\x08\x3e\x0c\x9f\xc0\xa9\x3c\x18\x7a\x24\xea\xaf\x9f\x91\x35\x87\xa1\xbd\x46\x02\xdd\x9a\x31\x05\xef\x86\x87\xae\xbc\xa1\xdb\x50\xee\x82\x80\x86\x50\x98\x04\x07\xe6\x0b\x6f\x86\x47\xf4\xa9\x5b\xd0\x65\xe8\x3e\x75\x64\xa0\x5e\xf7\x08\x71\x75\x27\xd4\x8c\x4f\xd6\x75\xa0\x93\x5d\x2f\xea\x8e\x97\x2e\x89\xd0\x0f\xae\x82\x16\x43\x43\xd1\x13\xb5\xd6\x04\x3f\x8b\x44\x28\xe0\x66\x41\x97\xa1\x9b\xd2\x4c\x61\x44\xc5\x21\xb1\xd9\xb1\xd4\x1e\x0a\x37\x24\x98\x2b\x6d\xac\x88\x99\x4e\x62\xfd\xfa\xc1\x3e\x24\x8d\x50\xa5\x25\xf1\x89\x11\x15\x6a\x07\x43\x44\xa2\xe0\x37\x57\xe5\x3d\xe3\x81\x3b\xc6\xad\xca\x3f\x9e\xf2\x10\x39\x8e\x5b\x7d\xfc\x78\x0b\x7d\xe0\xe9\xe3\x4b\xf0\x64\x3f\x86\x87\x5c\x07\x6f\x7a\x69\x3c\xde\xfc\x88\xdd\x1a\x3e\xf7\x12\x11\x46\x23\x11\xe7\xad\x1a\xac\x23\x44\xf0\xcd\x41\x94\xc3\x34\x7d\x84\x66\x42\xc3\x28\xb4\x2c\x4f\x6e\x08\x3c\x51\x7c\x49\x80\x03\x3d\x46\x02\xbb\x91\xd0\x15\x3c\xd9\x97\xe0\xe1\xce\x07\x7b\x8e\x93\x6b\x06\x83\x15\x43\x27\x2c\xcd\xec\x46\xf3\x00\x5e\x04\x9f\x86\x83\x6c\x71\x73\x78\xb2\x5b\xf0\xb8\x70\x2f\x3c\x2d\x9c\x6c\x35\x3c\x6e\x46\x6c\x3b\xd3\x2c\xae\x1f\x7b\xe4\xd2\xa9\xbe\x1a\x8c\x57\x59\xfc\x38\xa7\x59\xd7\x5b\xe0\xf5\x39\x87\xb4\x30\xa6\x78\xb4\x93\xc8\xa1\x1e\xc6\x84\xb5\x21\x70\x30\x2c\x06\x66\x50\x09\xe1\x1f\x89\x1a\x95\xd0\xc3\xee\x11\x21\x95\x6a\xf8\x27\x4d\x84\x38\x24\x11\x95\x6b\x91\x86\x7b\x18\xda\xba\x23\x69\x9c\x43\x98\x61\xc2\x26\x68\xf8\xf4\x4c\x84\x30\x24\xf1\x0e\x64\x74\x89\x0e\x81\xea\xf8\xff\x23\x44\x3e\x69\x86\x56\x1d\x89\xc0\x27\xd8\x32\xa6\xe9\x03\x4b\x48\xb8\xb3\x01\xe9\xeb\xdb\xab\x18\x62\xb2\x81\x9f\xb4\x84\xf3\x60\x12\x41\x84\xe0\x9a\x2e\xad\x2e\x9c\x87\x67\xd0\x03\x8f\xf9\x5c\x3e\x6b\x0b\x5d\x36\x83\xdf\x3a\x3c\x72\x3f\x95\xf0\xbd\x92\xd6\x47\xe8\x00\xbf\x4e\x07\xeb\x45\x2f\x77\xb0\x76\x49\xbc\x21\xba\x33\xf0\x75\x0b\x8e\xc6\x34\xd1\xca\x12\x16\x57\x24\xd0\x37\x0a\xf5\xb5\x84\x2d\x0c\x89\xfa\xeb\xa7\xe0\xd0\x2b\x61\x80\x42\x22\xfd\xfa\x29\x35\xd3\xea\xa3\x8d\xbf\x1f\x99\x57\x74\x81\x8b\xc1\xf5\xab\x73\x9f\xc7\xc5\x32\x9e\x44\xfa\xf5\x83\x22\xf1\xc9\x54\x43\xfb\xaf\x9f\xd0\x09\x88\xcc\x10\xf4\x34\x01\xaa\x39\x99\x62\x68\xfd\xf5\x43\x68\xfd\x93\x69\x86\xc6\x3e\x60\x2c\x27\xfb\xad\x63\x82\x6a\x27\xf0\x9d\x05\x8f\x25\x4a\x18\xf4\xe5\x71\xb3\x87\xf3\x00\x17\x14\xda\x4c\xee\x75\x3a\x7b\x15\x5f\xb0\x27\x53\x0c\x6d\xbf\x7e\x3a\x51\x04\x4f\x6e\x1a\x1c\xfe\xc7\x50\x04\x3e\xd9\x6d\xf8\xeb\xd7\x4f\x2b\x59\xd0\xb7\xa1\x9f\x33\x74\x41\x97\xba\x11\xe8\x01\x37\x93\x79\x64\x77\x23\x88\x52\xf4\xd5\x4f\xa6\x1b\xba\xe2\xb2\xcb\x02\xbf\x0d\x8e\x8a\xef\x80\xea\x7e\x3d\x09\x50\xe6\xa0\x74\xdf\x82\x43\xcb\x36\xdc\xf3\x9e\xec\x32\x9c\xf2\x85\x79\x1d\x4b\xe5\x61\x3d\x5e\xb7\x06\x39\xd6\x32\xfc\xcc\x1f\x5a\xb3\x79\x8c\xad\xf1\x84\x02\x77\x6f\x37\xe0\xd0\xf8\x25\x71\x88\x00\xcc\xba\x4e\xee\x65\x70\x20\x41\xfc\xe2\xe6\xb1\x3c\x7e\x18\x7c\x17\xf1\x8b\xb2\xef\xb6\x93\x88\xf2\xde\x6c\xcb\x9d\x5c\x10\xad\x65\x34\xc1\x8b\xe1\x23\x7a\xc3\x1c\x2c\x77\x92\xf3\x70\xe1\xa4\x36\x8f\xed\x39\xdb\x81\x4b\xaf\xa2\xf2\x2f\xef\x15\xe8\xf5\x9b\xf0\x18\x27\xfb\x11\x3c\x30\xdb\x8d\xa7\xf2\x93\x5d\x86\x47\x00\x21\x3c\x44\x9f\xec\x23\x78\x74\xf3\x26\x7c\xdd\xc9\x0e\xc3\x67\xc0\xef\x24\xb8\xeb\x0f\xf6\xe1\x3d\x35\x9b\xaf\x5d\x0c\x0f\x47\x4e\x38\x2b\x3d\xd9\x6f\xf9\xa0\x69\xa7\xd6\x36\xbc\xf7\x91\x68\xc0\xa7\xe0\xdb\xf0\x57\xc0\x35\xfd\xa1\x30\x18\x89\x49\xbb\x45\xf5\xcc\x6a\x38\xf5\x54\xb6\xeb\xc7\xa7\xfa\xc3\x05\x9a\x6f\x81\x87\xc1\x71\xf7\xcf\x24\xf0\xc7\xe0\x73\x33\x35\x4d\xc2\xc7\x7b\x21\x28\x8b\xde\x2e\x55\xe2\x25\x0c\x63\x9b\x81\xed\x6e\x1e\xc1\x51\x24\x31\x62\xea\x83\x3a\xcb\xb3\xea\x94\x4d\xdc\x90\xcb\x85\x53\x26\xd6\x16\x09\xb4\xbb\x42\x4b\x5f\x52\x7c\x12\x95\x77\x7f\x03\x0e\x4a\x3e\x89\x60\x7f\x62\x12\x7e\xb2\x8f\xe0\x08\x02\xf1\xc2\x58\x10\x7b\x91\xb8\x81\x27\xe0\x5b\xf5\x87\xb9\x75\xba\x31\x51\x2f\x58\x10\x47\xe2\x6c\x5d\xf4\x5d\x23\xb7\x0d\xc6\xd4\xa0\x07\x58\x0b\x75\x12\xaf\xa8\x45\xbd\x7c\x83\x11\x4e\x02\xa7\x5d\xed\x12\xfc\x6d\x78\xe8\x5b\xa0\x97\x5e\x76\xf8\x80\x23\x11\xee\xe8\x20\x52\xca\x7e\xdc\xfb\x78\xa7\x1d\x78\x05\xbe\xd4\xfb\xd0\x0b\x2e\x10\x75\xd5\xb8\xfd\x24\x18\x6c\x58\x22\x54\x3f\x73\x2a\x48\x37\xdd\xe0\xe0\x3a\x6e\x6e\x8e\x93\x48\x01\x0f\x33\x87\x3a\x12\xfb\xf2\x24\x4a\xc0\x0b\xf5\xa7\xa9\x7a\x92\xd4\x72\x83\x6a\x3c\xd9\x47\xf0\x45\x37\x8b\xe0\xcb\xf0\x60\x0a\x2a\x30\xc3\xc9\x2e\xc3\xa5\xcd\x4b\xbb\x79\x4c\xe0\x39\x22\x0f\xde\x06\xb3\x03\x4f\x82\xd9\xa9\x0c\xab\x0c\x75\x3f\x9c\xed\xe8\xf6\x3c\xb9\x97\xc1\xc1\xee\x0e\xb5\x8e\x93\x75\x35\x45\xd5\x84\x31\x42\x1d\x05\x52\xf8\x24\x06\xf0\x29\xb8\xcb\xe3\x23\x10\x0f\x82\x95\x47\x17\x89\xd3\x4b\x08\xa1\x3a\x1a\x87\xb0\xf2\x56\x82\x13\xf9\x91\xd6\x07\x89\x7d\xc0\x99\x4a\xda\x56\xdf\xc3\x97\x46\xc1\x4d\x7a\x1d\x7d\x6a\xe6\xd1\x77\x98\x84\x23\xaa\x68\xb1\x92\x08\x0a\x22\xd7\xfa\x67\x72\xaa\x1a\xeb\x57\xb0\xfe\xc1\x53\x4c\xc5\x64\xdf\x4a\x9f\xa4\x40\x3f\x56\xd8\xac\x24\xb0\x74\x9c\x2c\xc0\xf2\xd0\xc2\x32\x3f\xdd\x5c\x2a\x75\x2c\xcf\xd0\x22\xb6\x87\x3a\xbb\x20\xca\x4e\x22\x26\x14\x6f\xa9\x27\xbb\x0c\xdf\x28\x2d\xe7\x80\x6f\x37\x1b\x56\xca\xa8\x5c\x7d\xea\x78\x0d\x15\x7f\x11\x9c\x1e\xbb\x8c\x3a\x5e\x5e\xaf\xc0\xca\xe9\xf6\x4c\xbf\xd6\x36\xfc\x05\x9c\xee\x7c\x86\xca\x07\xde\x4b\x37\x0e\xf4\x2b\xea\xb5\x24\x82\xe7\x84\x1f\xac\x8a\x22\x20\x89\x38\x2d\xd0\xcb\x75\x5e\x1a\xed\x0c\x97\x6a\x05\x6f\x67\x75\x5e\x60\x92\x93\xa0\x1a\x46\x85\xb2\x2e\x89\x4f\x54\xc3\x24\xcf\xcc\x1b\xf8\x24\xce\x3e\x81\x5f\x50\xfd\x2e\x38\x09\xb4\xa0\x19\xed\xf4\x6e\x9e\x21\x6b\x4f\x37\x11\x40\xeb\x14\xc7\xe0\x24\xfa\xa9\x86\xa5\x42\xf3\x8f\x04\x11\x7e\x07\xad\x76\xf0\x72\x25\x88\xfa\x81\xc7\xe4\xcc\x01\xd2\x3f\x89\x20\x41\x71\x9a\x52\x51\x67\x27\x11\x3b\x07\xaf\xe4\x75\x4e\xa1\x06\xe2\x6f\x1f\x6a\x8e\x7a\xe6\x52\x79\x62\x56\xdf\xe0\xd9\x3a\xe7\x36\x3c\x76\x60\xc1\xff\x48\x9d\xde\x3a\x73\xc1\xb0\x2e\x37\xfd\xdc\x9e\x1d\x5c\x38\xdf\x10\xfa\x95\xa0\xaa\x24\x50\x68\xbe\xa9\x5f\x24\x40\x25\x40\xea\x29\x4f\xfd\x2f\xcf\x83\xc2\x86\x12\x2f\xb1\x12\xfc\x93\x44\xe0\x7d\xbc\x67\x55\x02\x76\x92\x08\xed\x78\xec\x0d\x4f\xb6\x1b\x3e\x7e\xfd\x14\x0c\xaf\x4f\xee\x6d\x70\xe0\x18\x7c\x42\xd7\xf9\x1e\xea\xbe\x74\x67\xf1\x8c\x51\x09\xcc\x48\x02\x65\xf3\xc4\xb0\xf4\x6c\xaf\x8a\x2e\x28\xbf\x08\x75\x7a\x0f\x12\xbd\xae\x94\xb8\x57\x2a\x41\xdb\x48\x04\x3f\x9d\x18\x64\x75\x25\x6d\xf1\x95\xd8\xe2\x78\xb7\x39\xd9\x65\x38\x1a\xec\x41\xdd\x9e\xec\x23\x38\xb2\x3a\x6c\xc4\xeb\x4a\xd0\x6b\x27\xc1\x6c\xb2\x67\x09\xb3\x43\x02\x95\x74\x50\xe7\xca\xdc\x5b\x95\x68\x3a\xa5\x82\xc5\x08\x91\x43\x82\x59\x08\xf3\xa5\x4a\x1c\x1b\x12\x6c\x92\x20\x13\xeb\x32\xa6\x5d\x81\x69\x4b\x68\xa0\x9c\xdc\x76\x35\x21\x52\xbb\x31\x80\xab\xab\x1a\x5e\xa5\x42\xcf\x1e\x27\x92\x05\x89\x83\x98\xb1\xd1\xac\xab\x2f\x75\x9e\x68\xfd\xa5\x70\x5b\x62\x9d\x48\xe2\x1c\xc4\xca\x12\x62\xd4\x47\xa2\xe2\x73\x86\x39\x5e\xba\xe4\xd6\x92\x0e\xf9\xc5\x5c\x6e\x61\x35\x5c\x75\x97\xca\x01\xc2\xf7\x31\x89\x03\x26\xd8\x52\x5d\x6f\x48\xc1\x8a\xc3\xe0\xbb\x60\xdf\x5c\x71\xb1\x4b\x22\xae\xd0\x92\x29\xff\x81\x04\xad\x72\x71\x7b\x17\x4d\xf1\x47\xe7\x0a\x1d\xb6\x03\x67\x6e\x1e\xcf\x41\x28\xde\xa4\x1b\x97\x0f\x75\x5f\xda\x21\xb8\xf0\x2c\x98\x43\xd5\x7d\x09\xf5\xe2\xa4\xb1\x60\xe4\x54\x71\x05\x48\x42\x4a\xf8\x14\x17\xa3\xa6\xe2\xf0\x2f\xdd\xbc\x35\xeb\xce\xea\x0d\xde\xf4\xd2\xad\x05\xc7\xfd\x58\x24\xc2\x93\xc2\x5d\x3a\xbd\xa9\x70\x58\x2b\x6e\xbc\xd2\x8d\x83\xf5\x8a\xb7\x28\x12\x87\x32\x75\xe7\xc7\x54\xb3\xc8\xcd\x0b\x86\xba\x15\xbd\x03\x12\x07\x07\xc2\x39\xab\x7b\x6a\x2e\xf7\xd4\x5c\x72\x7a\xf6\xd4\x05\xb1\x65\x80\x57\x83\xc2\xad\x58\x95\x90\x40\x9b\x9f\x25\x84\x34\x24\x71\x36\x08\xbc\xd0\xea\x57\x7b\xf5\xab\x9d\x60\xa2\x75\x6f\xa1\x22\xd4\xf9\x0a\x7c\xbf\x8a\xe3\x12\x12\x88\x36\xd8\x7e\x5b\x7c\xbf\x8a\xdc\xbe\x60\x04\x26\x4d\x3f\x12\x33\xc0\x8c\xe9\x25\xe2\x05\x3b\xb7\xbb\x54\xf0\xe2\xf6\xa5\xb7\x75\xe9\xd5\x9b\x56\xdf\xba\x1e\x70\x95\x50\xba\x26\xf8\xed\x05\x7c\xb3\x80\x15\xf4\xb7\xc5\xe0\x3b\x89\x98\xb2\x0a\x62\xd9\x8f\xa7\xf2\x99\x82\x67\xc1\x93\xe1\x28\xfc\x83\xe7\xf6\x33\x87\xe1\x33\xdc\xbc\x09\xbc\x34\x65\xe8\xa7\x74\x4c\x9d\xdb\xb8\xe9\xe5\x49\x74\xdc\x30\xf7\x80\x27\xc3\x53\xf4\x9e\x40\xdf\xcd\xf4\x61\x83\x3e\x4c\x77\x0d\x76\xee\xc9\x7e\x0c\x7f\x80\x57\xe0\x5b\xd5\xc4\x0b\xbd\x84\x08\xe6\xd3\xd0\x5a\x23\xf1\x39\xe0\xc0\x13\x6d\x08\x3b\x9d\x44\xe0\x89\xd3\x99\x3f\xd2\x58\x0d\x23\x36\x12\x07\xeb\x10\x5d\xab\x8d\xc6\x7d\x7e\x12\xcc\xdc\xc8\x82\x67\xc3\x0b\x70\xfa\xda\xdc\x7a\x83\xb6\xe6\x28\xb6\xd1\x5d\x4f\x57\x3d\xf3\x16\xfc\x63\x38\x63\x9e\xd4\xdf\xc1\xa5\x27\x81\x67\xeb\x38\x2b\x6d\x8c\xa1\x6e\x86\xed\x48\x21\x10\x45\x83\x30\x24\x71\x2e\x1a\x22\x0b\xb4\xb1\x3c\x45\x8b\xda\x71\x4d\xdf\xc6\x72\x2f\x71\xe7\x14\xb2\xf1\x93\xf3\x44\x87\x2e\xe3\x29\x3e\x04\xff\x18\x4e\x35\x89\xea\x5f\xdc\x1b\x27\x11\x06\x02\xad\x33\x09\xef\xa1\xea\xdf\xb8\x21\xa8\x9d\x5e\x7e\x96\xea\xf9\xa0\x8e\x82\xcb\xb8\x36\xc4\xe3\x6a\x36\xcd\x80\xb1\xd6\xc6\xb3\x54\xff\x83\x93\x3b\x4c\x50\xdb\x78\xb6\x26\x01\x9b\xc0\x89\x6d\x6f\x9b\x49\x6b\x38\x13\x9e\xf7\x70\x7e\xd5\x66\x52\xff\xc5\x24\x2e\x35\xf6\x73\x9b\x19\xfa\xf9\x24\xa2\x7e\x42\x56\xb4\x89\x10\x33\x12\xf7\xaf\x9f\x8a\x67\xa7\x06\xcb\x98\xc4\x22\xae\x3e\xd5\x14\xad\xc9\x2c\xec\xe7\x50\x24\x3c\x59\x4e\xe9\x49\xd4\x53\x4d\x55\xf1\xfd\x32\xf8\x4d\xf1\x18\xed\x6c\x9a\xb5\x19\x7b\xab\x5e\x9d\x41\x75\x77\xa6\xd3\x19\xf5\xbd\xbb\xf2\x0e\x0a\xc0\xee\xf8\x64\x3f\x86\xb3\x56\x93\x39\x10\x25\xd8\xa0\x04\xd3\x8d\x59\x6d\x9b\xba\x3e\x4f\xa2\x9d\xea\x27\x53\x30\xa7\xa6\x26\x78\x48\x77\x09\x2b\xa6\x93\xe5\x4a\x69\xb0\x78\x2b\xfe\xc4\x4e\xee\x65\xf0\x1b\x13\x1e\x55\xb3\x5d\x3c\x5e\xd0\x0d\x16\x4e\x9b\xcb\x33\x8f\x1a\xed\xc4\x5b\x53\x9b\x0b\x6c\x7a\x12\x2f\xbc\xbd\x33\xda\xed\xb9\x09\x0f\x56\x49\xb1\x6d\xda\x7c\x21\x2d\x6a\xc4\x7f\xaf\x77\xa6\xb8\x38\xbe\x0d\x33\x94\xca\x83\xb5\x11\x2f\x99\x44\xcc\x3c\x0e\x81\x1b\x71\x4d\x49\xc4\x83\xbb\xc5\x83\xbb\xad\x9b\x87\x6f\x5b\x37\xe8\xb4\x87\xbd\x7d\x5b\xde\x67\xd2\xa9\xe8\x83\xc9\x21\x36\x26\x89\x0d\x9c\xf2\x7a\xf9\x4a\x79\x39\xdd\x9d\xf3\xb0\x32\x54\x6c\x53\xb0\xc6\x3e\x92\xe0\xee\x4f\x56\x7f\xd8\x80\xab\x1a\x5e\xd5\x1f\x90\xd1\xea\xc2\xb3\x0b\xbb\xc1\xd2\x2a\xfd\xe9\x3a\x6f\xab\x83\xaf\xf1\x8a\xde\x96\xb1\x85\xfc\x3e\xf4\xa1\xf2\xba\x71\x9b\x1c\x0a\x14\xcc\xa8\xdb\x92\x24\xec\x24\x02\x2f\x10\x45\xbd\xad\x05\xd9\xdb\x20\xaa\xee\x82\x97\x8a\xb6\xd6\x52\xfd\xeb\xac\x83\xc2\xa0\x35\x22\xf6\x90\xb8\xa9\x26\x0b\xfe\x31\xfc\x01\x1e\x9b\x87\xa0\x38\x24\x38\xce\xaa\x7e\xf3\x8e\x6d\x44\xac\x39\xe5\x99\xe6\x0d\xf9\x72\x12\x0c\xab\x53\xcf\xcb\xdd\x7f\xa9\xfb\x60\xc1\xf5\x1a\x5a\xde\x17\xa6\x59\xc4\x29\x6d\x84\x88\x20\x31\x4f\xf7\x41\xe1\x4b\x5c\x9f\x06\xf1\x77\xba\x43\xf5\x9f\xa9\x6a\x3e\x50\x47\x23\x51\xfe\xe3\x59\xc0\xad\xcd\x3d\xc0\xd5\x84\x35\x20\xb1\x4f\xf5\xda\x54\x1f\xb7\x1a\x71\x05\x4e\x71\x7a\xf9\xe8\xa6\x59\x0f\x37\xcd\xc8\x4d\xf0\x6e\x38\x16\x5e\xdc\x10\xeb\xd1\x91\x90\x63\xfc\x4e\x08\xb8\x86\x97\x75\x12\x25\x1c\xc4\x75\xc0\x2a\x2e\x5f\xe5\x72\x6d\xda\xb6\x04\x62\x0d\xaf\xcb\x77\x41\x12\xdb\xf0\x1d\x4c\x82\xea\x19\xed\xf6\x45\xb9\x1b\x0f\x5f\x98\xa3\x6d\x4f\x2d\xa2\x54\x21\xfb\x64\xb8\x5b\xbc\x8b\x93\x08\xdc\x4b\xc8\x8d\xb6\xa7\xbb\x89\x9f\x8a\x4e\x88\x8c\x86\x47\x3e\x12\xf1\x0e\xd7\x05\x6d\xba\xac\x41\x97\xd5\xc2\x1a\x9a\x2c\x6b\x56\xa7\xac\x97\xe0\xae\x66\xab\x1a\xd0\xe6\x96\x20\xf5\x24\x42\x47\xad\xab\xfb\x8f\xbb\xaf\x59\xc6\x57\x6e\x1f\x37\x5b\xff\x24\x82\x05\x08\xc2\xeb\x23\xd3\xfd\x93\x08\xea\x23\x14\xb4\x22\x5b\x0d\x0f\x3d\x98\x7a\x53\xbe\xb2\x37\x4f\x22\x1c\xd2\xc4\x49\xef\xa3\x71\x72\x4f\x22\x74\x5f\xf1\x82\xd6\x7d\xfd\x77\xae\xff\x24\x96\x72\x1f\x83\x9b\xf8\x24\x5e\xbf\x7e\x2a\x4c\xdf\x3e\x26\x3b\xfc\xec\x8d\xf0\x4d\x55\x93\xe0\xee\x0d\x56\x2e\x05\x45\x8a\x3e\xa6\x9b\x9d\x6a\xb6\xd2\x9d\xe9\xea\xc3\x1b\x65\x12\x67\xba\x8f\xed\x7a\x74\x12\x67\xfb\x1b\xe2\xc1\x3e\x50\xe3\x89\xc4\xb9\xd2\x08\x85\xdf\xc7\x8b\x27\x5b\x47\x66\x7e\x97\x50\x07\x3f\xd9\xa9\x41\x4b\xab\x17\x2f\xe3\x1d\xd3\x6b\x12\xfd\xd7\x0f\x6a\x6a\x91\x5b\x06\xb3\xf4\x99\xea\xdf\x43\x83\x0b\xfe\x7b\x45\x70\xd4\xc7\xdb\x2b\xf9\xe6\xf8\x12\xed\xe3\x64\x5d\x5c\x73\xd1\xa9\x46\xdc\xf8\x93\x60\xee\x82\x28\xe9\xf0\xd5\x23\x11\x0f\xcb\x42\x98\xec\x3e\x2f\x76\xe2\x49\x04\xff\x6b\x04\x36\xec\xf3\xe2\x72\xe9\x53\x97\x0e\x8e\x0e\xfb\xd4\xa3\xed\x24\xe2\x40\x12\xd4\xed\x9c\x33\xda\x45\x8c\x7e\x97\x11\x7c\xb1\x3e\x13\x58\xef\x24\x22\x04\x1a\xce\x88\xfb\xd4\x25\x72\x12\x31\xc9\xaa\xa6\x80\xc5\x4e\x02\xa3\xb4\x44\xb3\x55\x4b\x3c\x2b\xce\xb8\x71\xd4\x79\xb2\x6f\xc3\x29\x9f\xa9\xa7\x69\xe3\xce\x50\xb3\xaf\x3d\x09\x0c\x65\x79\x12\x41\xfa\x11\xba\xb8\xcf\x3e\x35\x5a\x4c\xb7\xc7\x6d\xf8\x56\xf9\x70\x2a\x5b\x79\x27\x75\x53\x31\x1d\x2a\xa6\xa2\x4a\x22\x03\x11\x12\x8d\x60\x04\x55\xf0\x6d\x38\x86\x75\x8d\x39\x96\x74\xed\x24\xd2\xa9\x26\x5e\x0e\x1d\x9b\x58\x12\xe1\x95\x1c\xcf\x8c\x1d\x4b\x58\x12\x23\x8a\xd3\xaa\x98\x62\x27\x11\xb5\xf4\x22\xf0\x30\x78\x05\x38\xce\xd0\x94\xf4\xf8\x24\xde\x54\xce\x48\xd7\x54\xa3\x41\xe3\xd4\x3e\x99\x5f\xdd\x95\x27\x11\xfe\xac\x71\x02\x78\xb2\xc5\xf0\x38\x0c\xa3\xa9\x1a\x6f\x0f\x9c\x9b\x4a\xe5\xa3\xcf\xb5\xd5\x9b\x60\xcf\x56\x5c\x8c\xf6\x29\x19\xf4\x49\x84\xaf\x6f\x9d\x68\xf8\x66\x24\x0e\xd9\x17\xea\xb2\x27\xb7\x55\x7b\xf0\xc9\x2a\x04\x49\x9f\xef\xa1\x4d\xf0\x26\xb4\x25\xb1\x22\xfb\xd4\xf3\xf4\x24\x3a\xb5\x77\xc1\xb5\xda\x6f\xce\x02\x51\xe1\xbb\xf9\x67\x27\x11\x11\x85\x2e\xad\xd3\xc7\x73\xf6\xc1\x91\x2f\xaf\xa3\x6e\x82\xad\x43\xb0\xd5\x01\x76\x9c\x8f\x8e\xda\xc4\x50\x7b\x10\xe0\xac\x13\xcb\x9e\x44\x20\x65\xe2\x1e\xf7\x25\x7d\x95\x93\x88\x30\x24\x78\x67\xef\x2b\x1b\x2e\xad\x54\x7c\xf0\xf4\x95\xb5\x3f\x56\xc6\x0c\x05\xd6\x74\x5f\x12\x31\x74\x45\x47\x9e\x08\x3c\xfb\x92\x7e\x57\x57\xac\xde\x82\x87\x9e\xbe\x9a\xeb\x09\x0f\xd9\x95\xa8\xae\x1d\xab\x48\x12\x6f\x0c\x2a\x63\x43\xad\x21\x3c\x47\x6c\xcf\x8a\x98\xb2\xe3\x8d\x8b\x44\x2c\xe1\x1d\xcc\xc5\xbe\xbc\x2d\xf1\x8e\x54\x91\x52\x76\xe2\x17\x92\xa0\x33\x6c\x6e\x42\xf6\x91\x88\xce\xb0\x11\xd6\x76\x2d\x9b\x5a\x2a\x43\x32\xce\x25\x98\x5b\x25\x6e\x55\x5f\x12\x99\x9e\x04\x33\x3f\xe8\xcb\x5b\xc8\x66\x85\x15\x69\x9d\x9a\xe0\x8f\x50\x31\xd1\x91\x52\x0a\xcd\xd2\x4f\x5f\x8f\x87\xf4\x68\x48\xa0\x6e\xa2\xe1\x90\x58\xc0\x63\x9f\x6d\xa9\xf2\x75\xc2\x8e\xa4\x74\x53\x3f\x71\x3d\x48\x84\x13\x4a\x5e\xdb\x9d\x48\x1c\x24\x62\x3f\xe1\xe8\xa7\x6f\x69\x0b\x9d\x04\x16\x91\x20\xb9\x9d\x75\xad\xee\x8c\xc6\x3e\x41\xbc\x3a\x31\x1d\x48\x08\x4e\xfd\x46\xa2\x5b\x48\x94\x78\x2f\x7d\xb7\xa1\x76\x1b\x7e\x0a\x34\x0f\x78\x2b\x27\x11\x6e\xe9\xd1\x34\x39\xd9\xb7\xe1\xe1\x65\x9e\x98\x46\x7d\x77\x1e\x65\x27\x11\xd4\x02\x2f\xca\xbe\xa7\xd6\x70\x87\xab\xad\x16\x06\x6a\x9f\xbe\x45\x9f\x77\xdc\x3a\xdf\x03\x75\xc4\x8e\x5b\x67\x12\xf3\x14\x2f\x02\x8b\x46\xd9\xeb\x20\x87\x76\x6b\x72\x96\x27\x2d\xde\x5e\x8d\x60\x5a\x7d\x8b\xc8\xef\xc8\x54\x53\x42\x1e\xd3\x91\x95\x92\xf8\x44\x71\x81\x79\x43\x9c\xc4\x7d\xc0\x9a\xc9\xb7\x57\x0a\xf7\x89\x45\x18\x64\x1b\x53\xec\xc0\x14\x4d\x1b\x61\xeb\x01\x77\x12\x98\xbf\x0e\xc3\x87\xe1\x31\x22\xed\x8f\xb7\xd7\xe3\xad\xf5\x98\x0c\xe9\xd1\x9d\x89\x87\xc7\x46\x5c\xf6\x6e\x3e\x56\x17\x1f\xab\x5e\x5a\x8e\xc7\xd5\xe0\x8a\x60\xc2\x87\x18\x56\x7e\x19\x28\xbf\x34\x62\xdd\x9d\xdc\x23\x70\x50\x0e\x09\x9d\x8e\x31\x32\x42\x9a\x93\x08\xc7\xa3\x78\x25\x1d\xa3\x82\x73\x4f\xe2\xf4\x06\x69\xf2\xc9\x75\x83\x83\x4b\x8b\x3f\xd1\x31\x3a\x13\x7f\x12\xf1\xde\xe8\xf7\xdf\x60\x64\x9d\xd2\xea\x55\xdc\xb4\x0d\xa7\x8a\xc3\x8a\x29\x27\x11\x64\x02\xa2\x8e\x61\xc5\x94\x93\x08\x7d\xf1\xb8\x96\x86\x25\x95\x03\x49\x65\x43\x6e\x3f\x70\xe4\x44\x22\x04\x9b\x5d\x43\x93\x7e\xe6\x40\x3f\xb3\x21\xbe\x91\xad\x21\x89\x71\xc0\xc1\x37\x1a\xd6\x3f\x39\x89\xc0\xc7\x84\x7b\x1c\x43\xaf\xff\x93\x08\x74\x81\x27\xcc\x31\xd6\x52\xab\xf8\xfe\xee\xc4\xab\x39\xd9\x6e\x38\xd6\xb9\x9d\xf2\xaf\x21\x38\xea\xde\xa3\x68\xac\x12\x45\x0e\x44\x91\x29\xf1\x30\x1d\xe3\xe5\x05\x0b\xac\xd7\x10\xbb\x0c\x1c\xb8\x90\x78\x28\x4e\x35\xba\x0d\x07\x14\x65\x4a\x1e\xd6\x87\xbb\xf6\x24\xc2\x1a\xb2\x04\x05\x38\xa6\xe4\xf3\x27\x91\xb0\xe6\xbd\x04\x9f\x86\x2f\xe0\x51\xff\x4c\x4b\xf0\x44\x04\x44\xc2\x90\x8c\x99\x35\xac\x99\x89\x16\x0b\x0b\xfa\x64\x3f\x86\x3f\xd8\x02\xd3\x6e\x81\x69\x72\x12\x99\xf2\x1d\xb8\x86\x3b\x4b\x0c\x17\x97\xa9\x63\x16\x28\x8e\x93\xc0\xa4\x38\x53\x8d\xb8\xff\x63\xc2\xfd\x4f\xb8\x0a\x3c\xd9\xdb\x70\x86\x55\xe8\x4e\xe3\x14\x9d\x04\xd3\x16\x64\xfc\x40\x64\x49\x02\xeb\xe2\x4a\xbb\xd2\x11\x39\x89\x8a\x5d\xf2\x25\xf8\xdb\x70\xa6\x99\xad\x39\xa7\xeb\x99\xc4\xcd\x2f\x2a\x3f\xb9\xcd\x07\xf4\x5a\x52\x4c\xf0\x61\x5e\xd3\x80\x32\x6b\x28\x2b\x0f\x38\x4c\x24\xb0\x7e\x8e\xab\x6c\x98\xc0\x1a\x22\xb0\xea\x35\xba\xe0\xd3\xf0\x15\xd5\x08\xbc\xd5\xfb\xc5\x55\x86\x52\xd3\x98\xaf\xad\xea\x5f\x44\xc3\x42\xc6\x37\xe0\x48\x91\xc0\xea\x18\x64\x32\x3f\x5c\x11\x27\xd1\x28\x2f\xb8\x17\xeb\x83\x7f\xa1\x70\x6c\x73\xb2\x4b\xf5\xe3\x55\xa8\x7a\xd6\x1e\x21\x99\xf9\x10\x87\xbf\x25\xea\x79\xb8\xfa\x4e\x22\x54\x03\x99\xfc\x75\x73\x45\x9c\x04\x93\xc9\xd1\x82\xb3\x45\x22\x18\x74\x9d\x23\x84\x13\x29\x12\x61\x23\x81\x43\xeb\xb1\xb2\xba\xbf\xf2\x59\xcd\x56\x83\x92\x3a\xb9\x6d\x70\xbc\x2a\xd0\x7e\x1e\x2b\x6b\x0d\x57\x58\x90\x34\xb4\x91\x86\x19\x5f\x43\x8c\xaf\x8a\x2b\xe8\x81\x37\x34\x12\x0f\xbd\xa1\x9a\xc2\x7b\xe0\x24\x98\x34\xb6\xda\x2a\xae\x1e\x3b\x9f\xca\x23\x67\xac\x22\x34\xb5\x22\xae\x51\x6b\xea\x7c\x9b\xea\x65\x23\x86\x12\x12\xa5\x81\xb7\x5b\x12\xef\x70\xf6\x47\x6f\xbc\x61\x09\x19\x9f\x12\xc2\x9a\xb1\xa4\xe8\x3e\xf0\xcb\x7a\xe0\xcc\xb1\xd4\xd1\x4f\x22\xa8\xe4\x9a\x0c\x5f\x86\x07\x3a\xaa\x99\x59\x58\x5a\xc2\x15\xd1\x0c\x1a\xbe\x08\x07\xde\xdb\x48\xd0\x6c\xa1\x9a\xb7\xa7\x1e\xcf\x63\x95\x6b\x7e\x10\xd1\x93\x44\xfe\xf5\xd3\x3a\x1b\x70\x19\x4b\x2d\x61\xa9\x06\x6a\x5f\x1f\x61\x23\xc2\x7b\xb6\x30\x18\xff\x0c\x82\x8d\x91\x08\x92\xbd\x76\xc1\x21\x51\x06\x51\xc2\x0e\x3c\xaa\xd9\x09\x5a\xe4\x24\x18\x6c\x70\xb7\x4f\xf6\x6d\x78\x78\x16\x0f\x96\xec\xd8\x58\x22\x45\x22\x3a\xc9\x9d\xb8\xb3\xa6\x66\x67\x7c\x3b\x76\xc0\x45\x33\xbf\x43\x34\xdd\xc2\x63\xd3\x67\xec\xae\x65\x25\xe0\x49\xeb\x93\x26\x3b\x2f\xe3\x41\xf8\x92\x7b\xc2\xfe\x1c\x56\x4a\x1b\x5b\xeb\x87\x54\xe4\x64\x87\xe1\x33\x5c\x40\x0a\xac\x7b\x98\x00\x1f\x6d\x04\xcb\x7b\xec\x21\xf4\xb7\x71\x95\x31\x34\xbf\x08\x31\x49\x0c\x6a\x8f\xbd\x6a\x15\xb6\x21\x15\xb6\x39\xd8\x4d\x7b\xba\xfa\x09\x7d\x85\x50\x6d\x6c\x19\x2b\x9c\x44\x06\x4e\xef\xb7\x96\x1b\xcb\xe1\x94\xc2\x59\xd8\x67\x6c\x71\x33\x07\xde\xfb\x53\x42\x36\x3c\x70\x95\x49\xe2\x06\xce\xb0\x44\x91\x0d\x28\xb2\x94\x50\x99\x1d\xfb\xed\xfe\xbc\xd5\x9f\x4a\xbb\xef\xe5\xf2\x67\x23\xb4\xa1\x75\xfd\xb8\x7a\x7c\x79\x4f\x98\xa8\x63\x7f\xbc\x3f\x3e\x44\x15\x0c\x8f\x3a\x9f\xb1\x45\xe2\x0f\x3c\xaa\x35\x85\x44\x19\x17\x84\xdd\x49\xc4\x9d\x87\x6c\x65\x5a\xbf\xf8\x24\x18\x2d\xfe\xc9\xc7\xcd\x68\x27\x3a\x6f\x6d\x12\xfc\x62\x64\x96\xf6\x24\xb8\x4b\xf0\xcd\x3e\x84\x6f\x4e\x22\xd0\x1c\x5e\x3c\x27\x3a\xbd\x24\xe2\xea\xec\x33\xfd\x99\xc6\x9a\x38\x05\x22\x41\x8c\x77\x3c\xcd\x9b\x9b\x37\xe1\xe6\xdd\x03\x46\xf9\x44\x18\x48\xa2\x10\x4f\x8d\xe6\x1b\x0f\xd6\x09\xbf\xef\xae\x8a\x0a\x6a\x69\xe1\x44\x5a\xd8\x14\x35\x78\xe8\x19\x31\xe5\x39\x6d\xc0\xf8\x9e\x56\x37\x9b\xa8\x9b\x9d\xea\x3b\xf0\xa5\xd9\xe8\xb8\x9b\x26\xf6\xc3\xe8\xdc\x64\x27\x11\x73\xad\x58\xb8\x88\x1a\x49\x7c\xa2\x78\x02\xcc\x4a\x9e\x44\x0b\xdf\xac\x74\x66\x78\xaa\x75\x8a\x70\x2a\x3b\xc7\x98\x9a\x9b\xc1\xbe\x42\x84\x73\xb2\xcd\x70\xe6\xe6\x5b\xfe\x65\x78\x5c\x94\x9d\x58\x01\x63\xb8\xf3\x83\x10\x9b\x88\x7c\x4e\x56\x4b\x16\x2a\xa2\x07\xce\x0e\x1a\xee\xe6\xd8\x2a\xcf\xe4\x4c\xd7\x3f\x55\x3f\x61\x2c\xcc\xeb\x9c\x38\xb2\x39\x70\xfa\x29\x9a\x75\x42\xb3\x8e\x56\x0d\x76\x35\x1b\x77\x0e\xc4\x77\xb1\x0e\xf4\x49\x30\x0d\x04\x24\x18\x7a\x86\x9f\x44\x5c\xa0\x93\xf8\x08\x63\x0f\xc1\x23\x82\xca\x5d\x15\xd1\x68\x6c\x77\x73\xab\x9b\x38\xc1\x1f\x6f\xd7\x0f\xbd\xd0\x79\x21\xcd\xf1\xf1\x16\xf9\x40\x43\x73\x41\xcf\x21\xba\x60\x62\xfa\xd3\x15\x95\x79\x7c\xb6\xaa\xf9\x68\x76\x08\xec\x65\xed\xb9\x89\xf6\xdc\x81\x33\xac\xc7\xab\x15\x9a\xc0\x5d\x21\x67\xe7\x05\x16\x3f\x89\x78\x93\x4c\x26\x6d\xca\x6c\xe0\x24\x58\x5c\xe2\x1c\xcc\xc6\x23\xf1\x24\x98\x35\x62\x30\x4c\x19\x9c\x9d\xc4\x3c\xd5\x13\xcc\x67\xb6\xf9\x36\x38\x70\x0f\xfc\xa7\x39\x3b\x14\xf4\x49\x04\x92\x51\x94\xf7\x29\x43\xb4\x93\x68\x94\x1f\x82\x7f\x0c\x7f\xc2\x20\x90\xde\x0c\x21\x93\x89\x03\xc8\x01\x7f\x68\x9a\x1f\x38\xcd\x0f\x1c\xc4\x14\x98\xd3\xa3\x9a\xb0\xb7\x10\xc9\xcc\x29\x05\xf7\x89\xb3\x82\x7e\x73\x0c\xcd\x82\x3b\x89\x19\x6e\x7e\x29\x2d\x7b\x8f\x93\xa0\xf3\xac\xa0\x95\xcf\x26\xca\x67\xfd\xd6\x54\x4a\xe9\xf8\x24\xe2\xfe\xe0\x9e\x98\xf3\x23\x8c\x37\x43\xc7\xc8\x28\x67\x7e\xdc\x17\x79\xc1\x9a\x5a\xa9\x8f\xc7\x4a\x48\x6b\xb4\x64\xe7\x14\x5a\x3e\x89\x40\xcb\x30\x70\xe6\xf4\x3e\x98\xda\x07\xa3\x09\xee\xde\x3c\xea\x8d\x62\x61\x4b\x17\x79\xca\xfc\x7d\x4c\x85\x37\xbe\xb5\x41\x56\x44\x60\xbd\x21\x27\xe7\x12\xa3\xe6\x24\xc2\x9c\x37\xb1\xfd\x30\x7c\x27\x11\x0c\x1c\xc5\xdd\xb4\xe4\x75\x22\x79\xed\x37\x51\xf2\x56\xd2\xa1\x5a\x09\xbf\x76\x68\xce\x4f\xd3\x8d\x53\x74\xe3\x98\x0a\x04\x5e\xb4\x80\xab\xb0\x2d\x1d\xf5\xbd\x40\xdd\x9e\x04\xf5\x28\x2c\x7b\xd1\xfe\x5b\x25\x94\xe4\x1d\xc3\xbc\x78\xb0\x45\x71\xe6\x15\x9a\xbf\x6c\x57\xa3\xee\x28\x46\xb6\xd8\x43\x27\x41\x35\xf4\xb2\x6a\x17\xaf\x88\xfc\xe8\x30\x81\xab\x41\xe1\x9f\xc4\x08\x70\x07\x2c\x6c\xbc\xe2\x6e\x70\x30\x2c\xf3\x14\x27\x3c\xc5\xd3\x17\xda\x14\x0d\x34\x89\xc9\x90\xd2\x54\x40\x7e\x23\x75\x84\xc1\x3d\x29\x94\xb4\x68\xa3\x93\x88\xbe\x28\xc8\xba\xb4\x0a\x4e\x82\xd0\x90\x8a\x00\xdf\x3d\x22\xa2\xb4\xa5\xa9\x30\xe2\xc3\xb5\x0f\xc5\x43\x52\xb8\xfb\xa5\x6d\xb6\x96\x62\x0a\x2b\x7e\xf9\x72\x3d\x21\xf3\x4d\x97\xe2\xea\x9a\xb6\x3d\x89\xb3\x5b\x93\xc2\x61\x6f\x5e\xe0\x27\xf1\x04\x98\xda\xb7\x77\x4d\x38\x8b\xeb\x28\x85\xce\xb5\xbd\x4c\x21\xff\x4d\x49\x31\x89\x96\xe4\x4a\x13\xfb\xb0\x94\x10\x9a\x9d\xec\xdb\x70\x75\x46\xe5\x5d\xfd\x8b\xea\x09\x5e\xb7\xa4\xb0\x7c\x12\x2b\xc0\xaa\x45\xb8\x06\x96\x68\xc7\x00\x77\x2e\x69\xa2\x9e\x04\x1e\x2c\x14\xd9\xfc\xe5\xf5\x7b\x29\x22\x2a\x81\x5c\xd6\xdb\x9d\x09\xa6\x42\xcf\x84\x7f\x5b\x6f\xef\x60\x71\xd8\xe1\xcf\xce\xf5\x5e\x3a\x09\x6f\x07\xc2\x57\x35\x5e\x10\x62\xd5\x24\x8c\xa9\xe6\x92\x85\xdd\x49\xe0\x2b\x46\x91\xdf\x3f\xae\x3f\xde\x99\x38\xb1\x8e\x9c\xce\x1f\xe1\x5b\x50\xdf\x9d\xeb\xf1\x0e\xc6\x46\x2d\x7f\x43\x6d\x83\xf8\xb6\xfd\xce\x14\xc7\x64\x66\xac\xfb\x96\xd7\x9b\xfa\xff\xa1\xae\x5a\xff\xef\xc4\xd5\x36\x69\xb7\x6f\x79\xa0\xb9\x1d\xe7\xd8\xb5\x2d\x3c\xe4\x28\xbc\x8f\x34\xb4\x4f\x02\xbf\x38\x0e\xba\xab\x73\xb5\x8b\x82\x36\x7f\xc3\xe6\xbe\x0d\x57\x48\x7c\x87\xa8\xcd\x82\x43\x6a\x4e\x45\x0b\x95\xad\xf7\x49\x00\x9f\x8e\xdf\xfa\x36\x3c\x56\xcc\xb1\x50\x35\xd3\xbb\x6a\xa6\x15\xf9\x54\x92\xb1\x93\x50\xe0\x52\x87\x05\xed\x86\x13\xeb\xeb\x1b\x7b\x92\x5d\xbb\xbb\x83\x8c\xd2\x9d\x01\x83\xf5\x24\x12\x31\xfc\xaa\xe0\xcb\xf0\x1d\xc1\xfc\x14\x39\x6e\xa8\xd9\x25\x87\x9a\xd9\x11\x00\xb7\xe1\x11\xcb\xe7\x1b\x09\xf0\x63\x30\xb1\x83\x14\xd6\x69\x1b\x1e\x46\x5c\xbd\x38\x96\x99\xa8\x0d\xe4\xea\x29\x3b\x66\xef\xf6\x24\x6c\x82\x17\x15\xc7\x2f\xdb\x06\x47\xc4\x36\x07\xf3\x1a\x9a\x82\x17\x71\x08\x15\xdb\xe8\x25\x94\x86\x76\x64\xba\x1c\xf3\xe8\x25\xdc\x85\xb7\xa9\xd3\xa8\xa3\x54\x69\xa1\xe2\x21\x9c\xb2\x23\xac\x89\xc7\x3c\xf7\x9b\xd0\x5f\x0a\x87\xf9\x5e\xcd\x60\x02\x2c\x39\x0e\x92\x6a\xff\x68\x7e\x15\x7f\x4a\x46\x3c\x27\x81\x1f\x24\x85\x1a\x91\x70\xc9\x4e\x5c\x6a\x71\x08\x1e\xd6\xfb\x24\x08\xa8\xe3\x90\x31\x03\x70\xac\xd7\xa8\x8a\x06\x32\x5c\x4b\x3c\x2b\x07\x7a\xc6\x27\xb7\x0c\xde\x07\xfc\x8d\xa5\xb1\x01\x4f\xc5\xe3\x21\xda\xc0\x92\x1a\xfd\x49\x84\x25\x5d\x12\x34\x1b\x1a\xce\x0a\x88\x1a\xb2\xa5\x11\xf6\xb0\x91\x3a\x0a\x15\x0f\x7e\xc2\x48\x0c\xcc\x2e\x55\x7c\xbb\x78\xdc\x18\x43\xe1\x20\x44\x76\x3f\x68\xf1\x4a\x0b\xe5\xf1\x2b\xf8\xe1\x15\xdc\xa7\x02\x20\x88\xd2\x3a\x89\x15\xe0\x5b\xe0\x6d\xf0\xd9\x8c\xf3\x76\xe9\xb7\xc1\x9f\x28\x3d\x15\x06\x43\x3d\x09\x1d\xef\xae\x48\x4c\x7b\x8e\x6a\xf0\xb9\x73\x52\xcb\x2e\xde\x0d\xa7\x2b\x8e\x56\xc1\x42\x10\x19\xaf\x75\x45\x8c\xe0\x74\x3d\x44\xa3\xeb\xc3\xb1\x27\x96\xa1\xc1\xde\x56\x40\x89\xa5\x7e\xbc\x34\x18\x05\x93\x10\x34\x54\xc7\xc7\xed\xa8\x12\x8f\xa0\x21\x11\x95\x10\xef\xd9\x6f\xd7\x11\x8a\xe4\x8a\x39\xb3\x45\xdc\x3f\x3b\xf0\xb0\x83\x88\x3c\xda\x23\xfb\x89\x7d\x7c\x7f\x23\x47\x44\x9f\x49\x62\x45\x7a\x5d\xc5\xdf\xf6\xef\x6f\x72\xce\x71\x39\xc2\x04\xc6\xea\x4a\xc6\xef\xe4\x95\xed\x00\x7e\xd7\x89\x93\xa6\xab\xe5\xef\xef\x7e\xd7\x59\xb1\x84\xfc\xdd\x97\xf6\xbb\xce\x88\xb2\x7c\xdf\x5d\xce\x82\xd2\xc2\xee\x91\x24\xa8\xbd\xc9\x63\x59\xdb\xb0\x27\x95\xec\xb0\x87\xed\x0c\xb0\xc7\x4a\x29\x39\xf1\x1c\xf8\xf5\xe9\x17\x24\x98\x92\x38\xa7\xcb\xe5\xbf\x5e\x32\x27\xf3\x3f\xd7\x3f\xff\xf1\xbf\xff\x1f\xeb\x9f\xff\xe7\xfa\x9f\x9f\x9f\xd7\x7f\xfe\xeb\x5f\x9f\x7f\xfb\x8f\xf7\xff\x78\xfd\xc7\xcf\xff\x76\xa0\x3f\xef\xcf\xf3\x3f\xfe\xed\xf3\xaf\xcf\xff\xfd\xef\xff\xf9\xaf\xd7\xe7\xe7\x9f\xff\xfe\xcf\xf3\xab\xf8\xfb\x7f\x02\x00\x00\xff\xff\xbb\x47\xae\x74\x89\x44\x03\x00"); -var _ffd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x9e\x7b\xef\xcc\x68\x04\x22\x50\x12\x1e\x78\xf1\x5e\x4b\xd3\x7f\x50\xba\x70\xa4\x71\x30\x34\xb2\x91\xed\x45\xbe\x7d\x39\xf7\xd8\x29\xbc\x45\x70\x74\x22\x5d\x29\xbf\xe3\x19\x6d\x1e\xb7\x4f\xdb\xe5\x70\x09\x9b\x5f\xd6\xe3\xf4\xdc\x2e\x61\x7f\x58\xe6\xb5\x9d\x8f\xd7\x75\x6a\xe1\xa5\xbd\x1e\x96\xae\x13\x0d\xf3\x61\xba\xdc\x0f\xfd\x63\x7a\xdb\x9d\xba\x0e\xd7\x3f\xbf\x9f\x2f\xed\x6d\xbb\xec\x8f\xc1\x78\xde\x7c\x3d\xdd\xce\x0d\x61\xf3\x6b\x7b\x3d\x9c\x2f\xeb\x7b\xf8\xf4\xd3\x7c\x7c\x69\x3f\x84\xb9\xed\x91\xff\xbc\xce\x6d\x3d\x2c\xaf\xe1\xd3\xe3\xb7\x67\xf9\x88\x9f\xaf\xa7\xd3\xbf\xed\xad\x2d\x97\x20\x9e\xb5\x65\xf6\xcf\x6e\xf3\xf8\x75\x77\xfa\xb6\x7b\x6b\x61\xe3\x93\x3e\xe3\xba\xcf\x3c\xc9\xff\xf6\x47\x5b\xcf\x87\xe3\x12\xe4\xc7\x18\xf3\xff\xf1\x6f\xef\xa7\x76\x9b\xd5\x6d\xfe\xfa\x7d\xfb\x14\xfe\x96\x20\x31\x68\xce\x43\xfc\xe7\x96\xff\xf9\xf5\x38\xb7\x10\xef\x77\xda\x3e\x3d\x1e\xaf\x78\x84\x3e\xc5\xca\x50\xf8\x2f\x4d\xc7\xb9\x9d\x4f\xbb\xa9\xad\xbb\xe5\xb5\x75\x21\x8c\x31\xc6\xf8\x10\xc6\x64\x5f\xbe\x3c\xe0\x69\xbf\x3b\xa3\x2b\xf5\x76\xe5\x61\x66\x72\xbf\x22\xc6\xfd\xfe\x21\xc4\x6e\x8c\xc2\x63\xc1\xb1\xe6\xd2\x8d\x51\x99\x28\x92\x2c\xda\x8d\xd1\x98\x18\x92\xbe\xd4\x6e\x8c\x89\x49\x42\x22\x51\x53\x37\xc6\xcc\x28\x7b\xa4\x15\xb3\x0b\xa3\xe2\x51\x36\x0c\xef\x19\xf5\x1e\xf5\x03\xa6\x57\x46\xd5\x9f\x20\x26\x8c\x1f\x18\x0d\x1e\x59\xc4\xf8\x1d\xa3\xdd\xed\x39\x31\xfe\x85\xd1\x8b\x47\x55\x30\x7e\x62\x34\x21\xb2\xd8\x63\xfc\xcc\x68\xf6\xc8\x14\xe3\x1b\xa3\xe6\x51\xae\x18\xbf\x67\xb4\xf7\xa8\xa6\xd8\x8d\x42\x29\x71\xa9\x14\x87\xd2\x8d\x42\x2c\x71\xac\x64\x59\xbb\x51\xa8\x25\xae\x95\x4a\xac\xdd\x28\xe4\x12\xe7\x4a\xb5\xa4\x6e\x14\x7a\x49\xba\x99\x62\x3c\xbd\xc4\xbd\xb2\xf5\x18\x4f\x2f\x71\xaf\x5c\x0c\xe3\xe9\x25\xee\x95\x6b\xc5\x78\x7a\x89\x7b\x15\x49\x18\x4f\x2f\x71\xaf\x92\x22\xc6\xd3\x4b\xdc\xab\x14\x14\x2b\xf4\x12\xf7\x2a\x03\x9a\x15\x7a\x89\x7b\xf5\x82\x6a\x85\x5e\xe2\x5e\x7d\x42\xb5\x42\x2f\x69\xb7\xfe\x31\x9e\x5e\xe2\x5e\xfd\x80\x6a\x95\x5e\xea\x5e\x55\x50\xad\xd2\x4b\xdd\xab\x26\x54\xab\xf4\x52\xf7\xaa\x3d\xaa\x55\x7a\xa9\x7b\xd5\x01\xd5\x2a\xbd\xd4\xbd\x06\x45\xb5\x4a\x2f\x75\xaf\x21\xa1\x5a\xa5\x97\xba\xd7\xd0\xa3\x5a\xa5\x97\xba\xd7\x30\xa0\x5a\xa5\x97\xd6\xfb\x77\x15\xf3\x09\xa6\x03\xb3\x84\x72\x95\x62\xba\x63\xd6\xa3\x5d\x25\x99\x3a\x19\xda\xc7\x2d\x68\xa6\x13\x33\x45\xbf\x4a\x34\x9d\x99\x65\x14\xac\x54\xd3\xc6\xac\x47\xc3\x4a\x36\xdd\x73\x91\x44\x54\x6c\x74\xb3\xc8\x4c\xd1\xb1\x11\xce\x84\x59\x46\xc9\x46\x39\xd3\xfb\x02\x8b\xdd\x68\xa4\x33\xa7\x13\x8b\xa8\xd9\x68\x67\x5c\x9b\x66\xe8\xd9\x88\x67\x5c\x9c\x96\x51\xb4\x51\xcf\xb8\x3a\xad\xa2\x69\x23\x9f\x71\x79\xa6\x88\xaa\x8d\x7e\x46\xbf\x64\xe8\xda\xe8\x67\xf4\x4b\x19\x65\x1b\xfd\x8c\x7e\xa9\xa2\x6d\xa3\x9f\xd1\x2f\x0b\xea\x36\xfa\xd9\x74\xdf\x15\x70\x0f\xfa\x19\xfd\x72\x41\xe1\x46\x3f\xa3\x5f\xae\x68\xdc\xe8\x67\xf4\x2b\x82\xca\xd3\x6d\x0f\xa4\x5f\x31\x74\x9e\xe8\x97\xe8\x57\x0a\x3a\x4f\xf4\x4b\xf4\x2b\x15\x9d\x27\xbb\xed\x9f\xdc\x8e\x24\xab\xef\xa2\xf7\xdd\x12\xbf\xe3\x5d\xf3\xb1\xfb\x4f\xd7\x75\x6d\xcb\xc5\xdf\x34\xbe\xc1\x63\x7f\x3e\x2c\xed\xe3\xad\x75\x3a\x9e\x70\x95\xff\xfc\x17\x00\x00\xff\xff\x33\x87\xd9\xc1\xe1\x06\x00\x00"); -func _eec ()([]byte ,error ){return _dc (_fcg ,"Adobe-Korea1-1")};func _gedf ()(*asset ,error ){_ggfd ,_dbgg :=_bdaa ();if _dbgg !=nil {return nil ,_dbgg ;};_fdfb :=bindataFileInfo {_ag :"Adobe-CNS1-7",_bc :1877,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491225,0)}; -_gda :=&asset {_cd :_ggfd ,_dce :_fdfb };return _gda ,nil ;};func _dgdf ()([]byte ,error ){return _dc (_ebe ,"Hankaku")};func _ceae ()(*asset ,error ){_ebbgd ,_cfegg :=_bbbg ();if _cfegg !=nil {return nil ,_cfegg ;};_fcce :=bindataFileInfo {_ag :"UniJISPro-UCS2-HW-V",_bc :4376,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492860,0)}; -_cbde :=&asset {_cd :_ebbgd ,_dce :_fcce };return _cbde ,nil ;};func _cb ()(*asset ,error ){_dcd ,_ced :=_agf ();if _ced !=nil {return nil ,_ced ;};_bbg :=bindataFileInfo {_ag :"78ms-RKSJ-H",_bc :14250,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490899,0)}; -_ecae :=&asset {_cd :_dcd ,_dce :_bbg };return _ecae ,nil ;};var _bdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x8f\x63\xb7\x11\xbc\xeb\x57\xf0\xe8\x1c\x9c\x79\xfc\x66\x03\x03\x01\xc6\x4e\x06\x19\x07\x8e\x03\x6f\x9c\x04\x08\x72\x78\x24\xfb\x2d\x04\x64\x24\x41\xa3\x0d\xb0\xff\x3e\xe8\x2a\xcd\xca\x59\xc4\x80\x4d\x4f\xa9\xd8\x2c\x36\xab\xc9\x96\x1e\x3e\xbc\x3c\xbd\x1c\x0f\x57\xf7\xf0\x97\xcb\x69\x7c\xd4\xab\xdb\x0e\xc7\x79\xd1\xb7\xd3\xe7\xcb\x50\xd7\xf5\xd3\xe1\xb8\xdb\xf9\xe0\xe6\x61\x5c\xdf\xff\xc4\x30\x5e\xd7\xf3\x6e\x67\xf3\x3f\x7e\x79\xbb\xea\xeb\xcb\x71\x3b\xb9\x48\xde\xfc\x7c\xbe\x71\x9d\x7b\xf8\x45\x3f\x1d\xde\xae\x97\x2f\xee\xbb\x1f\xe6\xa9\xeb\xef\xdc\xd4\xcd\xf0\x9f\x2f\x53\x2f\x87\xe3\x27\xf7\xdd\x8f\xeb\x79\x3d\xfa\xaf\x1f\x7c\xfc\x7c\x3e\xff\x5b\x5f\xf5\x78\x75\x1e\x98\x1e\x27\xc6\xdd\xc3\x87\x9f\xd6\xf3\x9f\xd7\x57\x75\x0f\x2d\x9e\xff\xf3\xfd\x2f\x7f\xfa\xf8\xe3\xf7\x7f\xc4\x67\xf8\xe8\x6f\x7a\x79\x3b\x9c\x8e\xce\x2f\xbf\x5f\x96\x72\xc7\xff\xfa\xe5\xac\xb7\x58\xbb\x87\x5f\x5f\x9e\x7e\xde\xb6\x37\xbd\xba\x85\x8c\x7f\xfc\xfa\xf2\xe4\xfe\xe9\x9d\x5f\x5c\xc8\x31\xa4\x7f\xdd\x88\x7f\xff\xe9\x34\xf5\x46\xda\x65\x6e\x68\x9c\xa6\xbe\x9d\xd7\xa1\x97\xf5\xf8\x49\x77\xce\x3d\x2e\xcb\xde\x39\xf7\xd8\x96\xbd\xfd\xd5\x7c\x5a\xf6\xee\x51\x9e\x9f\x3f\xe0\xef\x1f\xf8\xe9\xd3\x33\xfe\xfa\xc3\x82\x4f\x9f\x3f\xdc\x3e\x7d\x7e\xc2\xa7\xcf\xcf\x7b\xdb\xe3\x37\xb1\x77\x9e\x4b\x1e\x4f\xd7\xa9\x1b\x31\xac\xf6\xe8\xb7\xbd\xf3\x36\xe3\xb7\x1f\xed\xfc\xb2\xdc\x34\x1e\xe6\x8d\x1d\x8c\x5d\xd5\x16\xc1\x3f\x7e\x67\x3a\x21\xf6\x86\x48\xdd\xbd\x6b\x6e\x1e\xcc\x12\xa3\x41\xe4\xf9\x75\x18\x24\xc5\xa0\xde\x00\xf5\x6d\xef\x5c\x4d\x16\xcb\x0f\x42\x43\x01\x89\x41\x73\x05\xa4\xcd\xa0\x8c\x89\x1b\x63\x6d\xd5\xa0\x8a\x89\xdb\x20\x34\x00\xd9\xc4\x90\x36\x83\x42\xc6\xc4\xb6\x18\x54\x30\x31\x54\x31\x48\x00\x35\x0f\x48\xd6\xbd\x73\xcd\x5b\xf8\x20\x9c\xb8\x79\x83\x52\xd8\x3d\xb6\xc8\x0d\x45\x6c\x48\x42\x36\x88\x1b\x8a\x52\x0c\x6a\xcd\x20\x4e\x8c\xbd\xec\x9d\x5f\xbc\xe9\x8a\x9d\xd0\x04\x14\x6d\x62\x62\xac\x64\x5a\xfc\x92\x4d\x6a\xaa\x84\x2c\xbc\x5f\xc4\x56\x4c\x0c\x9f\xc4\xef\x9d\xf7\x8b\x65\x35\x31\x3c\x86\x9a\xb0\xc7\xb4\x92\x65\x43\x4d\xcd\x03\xf2\x84\xbc\x41\x42\x28\x10\x0a\x80\x20\x62\x8d\x84\xe2\xde\xd5\xbc\x44\x40\x89\x50\x02\x8b\xe1\x33\xa1\x0c\x16\x44\xac\x85\x50\x31\x28\x70\x62\x25\x54\x0d\xf2\x0c\xdf\x08\x35\x83\x22\x45\x08\x21\x01\xc4\xf0\x2b\xa1\x15\xea\x17\x40\x9d\x50\x07\x84\x4c\xac\x83\xd0\x80\xae\x04\x68\x12\x9a\x80\x1a\x20\x25\xa4\x90\x5a\x00\x31\x5f\x36\xd4\xbc\x20\x56\x67\xbe\x6c\xa8\xd9\x23\x56\x67\xbe\x6c\xa8\x39\x42\x44\x67\xbe\x6c\xa8\x39\x70\x22\xf3\xd5\x91\xaf\x88\x15\x3b\xf3\x65\x43\xcd\x99\xb1\x98\xaf\x8e\x7c\xc1\x00\xa9\x33\x5f\x9d\xf9\x82\xae\xce\x7c\x75\xe6\x0b\x99\x60\x29\x60\xa8\x39\x32\x16\xf3\xd5\x91\xaf\x44\x11\xcc\x97\x0d\x35\x2f\x14\xc1\x7c\xd9\x50\x73\xc0\x09\x75\xe6\xcb\x86\x9a\x3d\x57\x64\xbe\x6c\xa8\x99\x2e\xec\xcc\x57\x47\xbe\x92\x41\x99\xc6\xcc\x30\x79\x88\xb6\x62\xa6\x0b\x31\xb8\x88\x82\xc9\x2c\x98\x2c\x60\xa1\x90\x33\x8d\x99\xe7\x34\x16\x44\xe4\x89\xf0\x19\xf5\x18\xe1\xc2\xc2\xf0\x05\xe1\x13\xb2\x5a\x18\xbe\x98\xc9\x5d\x6a\x26\xa2\x48\x20\x14\x10\x9e\x50\x24\x64\x13\xe9\xd5\x42\x47\x17\x9d\x5f\x4b\xa1\x32\x7c\xcd\xd8\x63\xb6\x89\x35\x43\x57\xad\x38\x0e\x84\xaf\x5c\xb1\x36\xf3\x44\x41\x0a\xab\x10\xb2\xc1\xd5\x12\x00\x79\x42\x1e\x90\x07\x14\x08\x05\x40\x58\x91\xba\xaa\xd8\x09\x95\x90\x00\xad\x84\x56\xb0\x18\xbe\x13\xb2\xe3\x28\x28\x85\xc6\x7c\x35\x4b\x8e\xf7\xb8\x4d\x84\xea\x05\x37\x40\x80\x27\x84\x52\x05\xac\x80\x52\x58\xc9\x5a\xc1\x4a\xa8\xc7\x95\xac\x15\xac\x54\xed\x84\x3a\x59\x1d\xac\x8c\x14\x76\xb2\x3a\x58\x25\x9b\xae\x41\xd6\x00\xab\x36\xcb\xea\x20\x6b\x80\xd5\x92\x1d\xed\x24\x6b\x82\x25\xb8\x6a\x27\x59\xd3\x58\x61\x81\x57\x95\x2c\x35\x56\xf0\xb8\xd2\x94\x2c\x05\x2b\xe0\xb4\x37\xb2\x36\xb0\x62\x32\xf5\x1b\x59\x1b\x58\xc9\x2f\xbb\x47\xe1\x8b\x26\x0b\x58\xf0\xaa\x2c\x8d\x10\x58\xd9\xca\x5d\x6e\xaf\x22\x5e\x98\x50\xed\x1a\x12\xbe\x30\x82\x27\x20\xd4\x56\x76\x8f\x12\xc8\x0a\x60\x89\xd5\xa3\x04\xb2\x02\x58\x52\xd3\xee\x51\x78\xb9\x0b\x2e\xf7\xb8\xd8\xc5\x27\xbc\xdc\x25\x1a\x2b\x7a\xf3\x84\xf0\xda\x16\xdc\xd1\x31\xb4\x6a\x10\x59\x09\xac\x98\x4d\x3d\x6b\x48\x50\x43\x31\x55\x53\xcf\x1a\x12\x94\x42\xc4\xd5\x21\x2c\x05\x41\x29\xc4\x52\x4c\x3d\x4b\x41\x0a\x58\x35\x14\xbc\xdf\xef\xef\xee\xff\x7b\x8a\x85\x86\x97\x8a\x20\x2d\xdb\xe6\xe8\x6e\xa9\x08\x22\x76\xbd\x49\x23\xab\xd5\xb0\x77\x69\xb1\x6b\x57\x68\x3f\x81\xfd\xd2\x62\x45\x2d\xb4\x9f\xc0\x7e\xc9\x37\x9b\x48\xfb\x09\xec\x97\x82\x9d\x96\xd0\x7e\x02\xfb\xa5\x58\x2d\x2b\xb4\x9f\xc0\x7e\x29\xe1\xb4\x68\x3f\x81\xfd\x52\x2e\x16\x9e\xf6\x13\xd8\x2f\x15\x9c\x16\xed\x27\xb0\x5f\xaa\xc9\xb2\x42\xfb\x09\xec\x97\x1a\x4e\x8b\xf6\x13\xd8\x2f\x49\xb4\x33\xa5\xfd\x04\xf6\x4b\x82\xd3\xa2\xfd\x04\xf6\xcb\xde\x0a\x51\x68\x3f\x81\xfd\xb2\xc7\x69\xd1\x7e\x02\xfb\xe5\xe8\x4d\x3d\xed\x27\xb0\x5f\x8e\x76\x5a\x78\x4f\xe7\x76\xeb\x66\xa2\xdd\xd7\x4a\x47\x2a\x1c\x99\xf3\xb2\x18\xd4\x08\x61\x62\xb6\x03\x54\x3a\x52\xe1\xc8\x5c\xac\x1f\x50\x3a\x52\xe1\xc8\x5c\xed\x84\x94\x8e\x54\x38\x32\xb7\x6a\xe1\xe9\x48\x85\x23\xb3\xd8\x09\x29\x1d\xa9\x70\x64\x59\x4a\x32\x88\x2c\x38\xb2\x78\xbb\x63\x95\x8e\x54\x38\xb2\x84\x1c\x0c\x22\x0b\x8e\x2c\xd1\x9e\x62\xa5\x23\x15\x8e\x2c\x29\x99\x7a\x3a\x52\xe1\xc8\x82\x0b\x55\xe9\x48\x85\x23\x4b\x09\xa6\x9e\x8e\x54\x38\xb2\x14\xbb\xc2\x95\x96\x53\x58\xae\xa0\x59\x52\x5a\x4e\x61\xb9\xd2\xec\x26\x56\x5a\x4e\x9b\xb1\xea\xb2\x98\xfa\x46\x16\x2c\x57\x97\x62\xea\x69\x39\x85\xe5\xaa\xb7\x9e\x47\x69\x39\x85\xe5\x6a\xb0\x2b\x5c\x69\x39\x85\xe5\x6a\xb4\x16\x41\x69\x39\x5d\xd9\xcd\x24\x53\xbf\xa2\x9b\xd1\xd5\x5a\x97\x16\xcc\xbe\x4a\x17\x72\x60\x0b\xaa\x3d\x79\x42\x36\xb1\x99\x27\xb4\xa7\x48\x68\x03\xcb\x36\xd4\x33\x27\x66\x0f\x96\x00\x0a\x84\xec\x56\x2f\x38\xc7\x9e\x3b\x21\x7b\x6d\x9a\x10\x52\x42\x88\x05\x4f\xf4\xc2\x58\x25\x81\x05\x5d\x25\x13\xb2\xae\xb4\xd8\x7d\xad\xbd\x08\xa0\xba\x82\x85\x15\x2b\xc3\xb3\x81\x46\x72\x58\x43\x1c\xd8\x40\x6b\x6f\xdc\x90\x0d\x55\x3c\x36\xd4\x28\xf5\xd6\x66\xdb\x39\x76\xf4\x16\xda\xef\x6d\xb6\xf6\x41\xe8\xde\x66\x6b\x47\x9b\xad\xfd\xde\x66\x6b\xdf\xb8\xe2\xbd\xcd\x56\x54\xf0\x6d\x60\x9b\xad\x03\x6d\xb6\x8e\x7b\x9b\xad\x83\xdb\x1e\xf7\x36\x5b\x07\xa5\x8e\x7b\x9b\xad\x43\x38\x11\xed\xac\x78\x93\x3a\x56\x4e\xb4\xc1\x35\x1c\xed\x58\x39\x71\xe5\x1e\xb1\x22\x1e\x7f\x0e\xae\x59\xeb\xa2\x83\x06\xc0\x50\x25\x60\x45\xb4\xb3\x1c\x5c\xb3\xfb\x4b\x07\xda\x59\x0e\x55\x82\x07\x54\x08\x15\xb0\x18\xbe\x12\xaa\x60\x05\x40\xc8\xd7\x18\xd0\x05\x03\x8c\x41\x5d\x03\xba\x02\xa4\x0e\xea\x52\xb0\x2a\x56\x54\xb2\x94\xac\x04\xe8\xc6\x32\xf5\xb2\x60\x45\xa5\x7a\xa5\x7a\x6c\x48\xa9\xde\x06\x87\x97\x4b\x87\x52\xbd\x52\x3d\x52\xa8\x54\xaf\x1d\x2c\x88\xd0\x41\x68\x80\x45\x11\x13\x10\xbe\xcf\x30\x39\xbc\x57\x39\x54\x41\xb9\x4f\x56\x07\x06\xc7\xf0\x33\x05\x42\x01\x2c\x01\x14\x09\x45\xb0\x38\x31\x11\x32\x93\x4b\x64\xf8\x4c\x28\x1b\xeb\x06\x15\x42\x05\x2c\x0f\xa8\x12\xaa\x60\x05\x40\x8d\x50\x03\x8b\x10\xaa\x63\x16\xe8\xb2\x76\x43\x67\xa1\xae\x02\x5d\xa8\xed\x59\xa8\x8b\x5f\xd0\x0a\x56\x64\xc1\xcc\x16\xde\xbf\xa0\xe9\x6c\x64\x35\x24\x9a\xb1\x1a\xd5\x37\x24\x1a\x95\x36\x1b\xd5\x37\x24\x3a\xe6\xff\x7d\x8a\x43\xf8\xf6\x25\xd6\xd9\xb8\xb7\x86\xaf\x82\xc2\xb0\xdc\x5b\x83\x89\x70\xb1\xcc\xc6\xbd\xb5\x09\x16\x21\x25\xa4\x60\x55\x40\xa8\x8a\x29\xc9\xbe\x0a\xe2\x6e\x9e\x42\x3d\xc2\xd4\x61\x23\xac\x9d\x79\xff\xa6\xa9\xb3\x13\xba\x7f\xd3\x54\xbe\x8b\xaa\xf7\x96\x58\x15\x2d\xb1\x6a\xc1\x8a\x78\x0d\xb4\x10\x42\x97\x5c\x16\x8b\xc5\xd7\x53\x95\x17\x0b\x2e\x03\xe5\xc5\xa2\x6c\x9c\x3d\x26\x0a\x59\xf7\xc6\x59\x15\x8d\x33\x07\x36\xce\xaa\xc2\x89\xf7\xc6\x59\x15\x8d\xb3\xea\xbd\x71\x56\x45\xe3\xcc\x81\x8d\xb3\x2a\x1a\x67\xd5\x7b\xe3\xbc\x99\x8f\xed\x3f\xfc\xed\xc1\x5e\xbc\xcd\x12\xb8\xbd\xff\x20\x11\xcc\x90\x9b\x6d\x67\x7b\x7f\xc2\xad\x1d\xf8\xed\xf9\xd9\xff\xbf\xae\xe7\xdd\xd7\x1f\x7e\xc6\xe7\xcb\x45\x8f\x57\xfc\xcc\x84\xdf\x76\xdc\xd4\xed\x70\xd4\xaf\x3f\x59\x9d\x4f\x67\x9b\x85\x7f\xff\x1b\x00\x00\xff\xff\x91\x5b\x63\x45\xde\x12\x00\x00"); -var _cfaef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4d\x8f\x3f\x39\x72\x98\x79\xef\x4f\x51\x47\xed\x41\x3b\xc9\x77\x12\x68\x14\xb0\x3b\xb3\x8d\x9d\x83\x64\xc3\x23\xd9\x06\x0c\x1f\xf2\x85\x39\x6e\xc0\xd3\xdd\xe8\x69\x1d\xf4\xed\x0d\x3e\x0f\xff\x23\xc1\x30\x50\x75\x29\x66\xfe\x98\x64\x30\x18\x0c\xc6\x1b\x83\xbf\xfb\xfd\x1f\xff\xf0\xc7\x9f\x7e\xfc\xed\xe3\x77\xff\xf1\xd7\x9f\xef\x3f\xcd\xdf\x3e\xde\x1f\x7f\x7a\x7e\x9d\x7f\xfd\xf9\x5f\x7e\xbd\xe7\xc7\x35\xff\xfc\xe3\x4f\xdf\x7d\x17\xe2\xc7\xf3\xe3\xfd\xdb\xb7\x47\xfe\xdd\x7f\x39\x7f\xf9\xee\xbb\xf5\xfd\x9f\xfe\xf5\xaf\xbf\xcd\xbf\xfc\xf1\xa7\xf7\xe7\x8f\x64\xbd\xe7\x5f\x7e\xd9\x75\x3f\x3e\x7e\xf7\x9f\xe6\x9f\x7f\xfc\xeb\x6f\xbf\xfe\xeb\xc7\xdf\xfd\x3f\xcf\xcf\xd7\xfc\xbf\x3e\x9e\xf9\xae\xf7\xff\xe1\xd7\x67\xfe\xfa\xe3\x4f\x7f\xfe\xf8\xbb\xdf\xff\xe3\x9f\xc2\xdf\x5e\xff\xe9\x5f\x7e\xf9\xe5\x7f\xce\xbf\xcc\x9f\x7e\xfb\x68\xbc\x9b\x3f\x3d\xfc\xff\xee\x77\xbf\xff\x87\xf3\x97\x7f\x3c\xff\x32\x3f\x7e\xf7\xcf\x3f\xfd\xf8\xfb\x7f\xfc\xd3\xdf\xff\xf3\x3f\xfd\x10\xea\xdf\xff\xff\xfc\xcc\xaf\xff\x79\xfe\xfa\xd7\x1f\x7f\xfe\xe9\x23\xfc\xdf\x47\x18\xff\xf6\xfa\x9f\xfe\xf5\x97\xf9\x11\x76\x2b\xff\xf5\x9f\xff\xf8\x87\x8f\xff\x16\x3e\xc2\xf1\x11\x4b\x19\xe1\xbf\xef\xf7\xff\xe5\x1f\x7e\x7e\xe6\xc7\xe1\x53\x12\xfe\xfb\xe7\x67\xfe\xf5\x97\xf3\x9e\xbf\x9e\x3f\xfd\x79\x7e\xf7\xf1\xf1\xfd\x71\x1c\xc7\xe7\xc7\xfa\xfb\xfe\x0f\xed\x87\x1f\x3e\xd7\xbb\x3f\xf4\xe3\xf8\xc3\xef\xd7\xfb\xef\xff\xf0\xff\xfe\xf0\xc3\x1f\x7e\xd8\xef\xff\xbf\x7f\xab\xfb\x03\xef\xe6\x4f\xcf\xff\xd6\xe2\x77\xc1\x8e\x7e\xfa\xf9\xb7\x67\xbe\xbe\xdb\x7d\x7c\x7f\x1c\xe1\xfd\xfc\x08\xeb\xab\x7f\xff\xf3\x77\xe1\x38\x36\x74\x3f\x3e\xf7\xff\x38\x7f\x5d\x1f\x9c\xc7\xaa\xb9\x0a\xe5\xf3\x23\xd6\x83\x62\xfb\xfc\x08\xad\x53\xec\x9f\x1f\x21\xb5\xdc\x78\x18\x9f\x1f\xa3\x52\xba\x3f\x3f\x42\x3e\xf2\xe0\x61\x75\x36\xca\x2a\x5e\xc7\xe7\x47\xec\x34\x72\x85\xcf\x8f\x18\x22\xc5\xd5\x5e\xa0\xc2\xbd\xba\xeb\xad\xd3\xf8\x1d\x7c\xa0\xc9\xbb\xf3\x30\xf8\xe2\x1e\x3e\xd0\xd2\x7d\xae\x87\x7e\x00\xe6\x13\xfd\x85\x6f\x9e\xe4\x43\xe6\xa1\xad\x0e\xf9\x62\x1e\x7e\x41\x97\x33\xf8\x90\x78\xa0\x97\xbe\xab\x0d\x7f\x01\x98\x69\x2f\x89\xfe\xe7\x6d\x35\x1a\x9e\x8f\x0f\xfc\xf2\x46\x1f\xf8\xe6\x4d\x3e\x00\xcc\x4b\xff\x00\xf9\xda\x4b\xa6\x97\xd7\x5e\xa2\x9f\xdb\x4b\xf4\x17\x7b\x89\x0b\xb9\xe1\xd8\x98\x29\x3c\x6c\x98\xd7\x37\x21\x38\xe4\x3e\x78\xb0\xcb\x83\x6f\xc2\xe9\xf8\x03\x0f\x97\xbf\x50\x2d\xfa\x00\x38\x21\xfb\x90\x7d\xb8\xfd\x26\xf1\xb0\x87\x46\xa7\xc5\xa6\x13\x0d\xd4\xdd\x00\x0f\xf7\x23\x04\x74\x7a\x4f\xfb\x59\xb8\x09\x8f\x98\x0e\xb4\xf6\x38\x9f\x90\x42\x78\x36\xa2\xf8\xe6\xc9\x8e\x14\x08\x9e\xea\x83\xdf\x88\xaa\x68\x6b\x1b\x3b\x36\xb0\xb1\xb3\x90\x1b\x8b\xfd\xa4\xc2\xc3\xc6\x8e\xbf\xd8\x74\x6a\x3c\x08\x75\xe2\x97\x6a\xb5\x94\x78\xb0\xe9\xcc\x43\x2b\xfe\xb2\x26\x31\xf6\x3d\xec\xcc\xc3\xae\xb6\x10\x1f\xef\x2a\xf1\x53\xed\x6e\x9f\x1f\x85\x41\xc7\x45\x90\x05\x7a\x8a\xf7\xb5\x8a\x40\x05\x92\x06\x75\x9f\xb1\xde\xae\x36\xd2\x91\xbf\x2d\x8e\x74\xfc\xbb\xb5\x94\x8e\xfb\x5b\x73\x99\xc9\x4e\x03\xa0\x73\xf1\xa1\x8e\xef\xbe\x0f\xf3\x9a\x22\xb4\xf3\xf0\x8a\x0f\x7e\xb9\x37\x85\x1f\x3c\xec\x81\x86\xef\xbe\x8f\xc7\xb1\xf0\x9e\xea\x02\x3a\x1e\x50\x4b\xe4\x7d\x58\x80\x2c\x9c\xc7\x23\xae\x2a\xab\xef\x78\xc4\x85\x89\x40\x85\xb8\x46\xbb\x16\x46\x3c\x62\xfb\x5b\x85\xb4\xea\x36\x3e\x4b\xab\x6e\x8b\x14\x17\x9e\x5b\xa3\x38\xf7\x00\xa3\x5c\xa1\xd5\xb5\x50\x63\x38\xd2\xe2\x27\x95\xe2\xfa\x70\x2d\xd2\x18\x8e\xb1\xde\xae\x0f\x43\xa8\xf0\x90\xc2\xfb\x18\x7c\x28\x3c\xc4\xcf\x8f\x41\x9d\xb1\xf8\x09\x43\x09\x63\xf1\x93\xcc\xef\x23\xae\xa2\x15\x56\x2f\xb9\xc2\x20\x37\x53\xfb\x3f\xb0\xb9\x18\x46\xff\xfc\x88\x25\x52\x5c\x20\x14\x60\x9c\x0d\x64\x2f\x66\x12\x63\x58\x0c\xb0\x34\x8a\xe7\x5a\xca\x89\xe2\xfc\xfc\x88\x6b\xb9\xc6\xb8\x98\x6a\x4c\xbc\x8d\x0b\xae\xc5\x2a\x62\x8c\x0b\x02\x06\x11\x23\x2d\x58\xe1\x5a\x15\x68\x2c\xae\x16\x16\xa9\xc5\x98\xf2\x82\x96\xc6\x16\x32\xe3\x5a\x6a\x31\xa6\x7b\x75\x41\x85\xb2\x46\xc6\x7c\xc5\xba\xba\x08\x54\x58\x84\x1c\x23\xbd\x8d\xf5\x59\xa6\x0b\xc6\x91\xe9\x18\xde\xcd\xf4\xc7\x0b\x20\x79\x3b\xdf\x6f\x13\x9a\x17\x7a\x0b\x33\x50\x16\x9f\x49\xcc\x78\x59\xa4\x92\x16\x5b\x8b\x65\x91\x63\x0a\x54\x08\x54\x28\x14\xf3\x2a\x56\x8a\x7d\x15\x1b\xc5\x55\x77\xb1\x99\x58\xe2\xaa\xb0\xf8\x67\x2c\x91\xb7\x54\x48\xbc\xe5\xb3\xc4\x5b\x1a\x63\x09\xe7\x63\xd0\x75\x71\xbe\x17\x83\x8f\x65\x8d\x3a\xe4\x03\xd2\x2a\x70\xa1\x7c\x74\xab\x65\x1e\x6a\xe2\xa1\x58\x0d\x28\x8b\xd4\xd3\xfd\xa5\x59\xcd\x7e\xba\xd5\x80\xaa\x0c\xab\x01\x57\x39\xad\x06\xe8\xb0\x8a\x7c\x74\x21\x70\x3f\xeb\xfe\xf2\xd8\x80\x10\x4c\x1f\x6c\xfa\xb5\x1a\x10\x54\xc7\x03\x89\x97\xea\x78\x58\x12\xa5\x3a\x9e\xee\x2f\x8e\xa7\x02\x4e\x75\x3c\xac\xa7\x52\x1d\x4f\x67\xd8\xd5\xf1\x54\x9b\x76\x3c\x0d\x70\xaa\xe3\xe9\x36\xe0\x78\x1a\x50\x57\xc7\xd3\xec\x67\x8f\x07\x40\xab\xe3\xa9\x82\xf3\x7e\x7e\x24\x88\xaa\xb4\x35\xb7\x50\x73\x69\x59\x6e\x44\x87\x7d\xac\x69\xb2\x78\xae\x22\x00\xf6\x6b\x15\x01\xaf\x33\x8f\xb4\xd1\x9f\x55\xa4\x8d\xbe\x48\x7b\x00\x65\x5f\x74\x37\x80\x71\x38\x62\x56\x55\x19\x90\x10\xb5\x17\xed\x26\x56\x55\x41\xea\x70\xf2\x4f\x98\x17\x6d\x5c\x6c\x19\x54\xb8\x60\xca\x74\x7d\xad\xb1\x0c\x8b\xb0\x58\xa0\xb8\xdd\x44\x28\x36\xb8\x24\x45\xf8\x3f\xed\xba\x4d\x31\xa4\x1b\xce\xc9\x67\x73\x81\x13\xe9\x6d\x2e\x70\x58\x76\x15\x06\xc5\x74\xd5\x83\x76\x0b\xc5\xbf\x2d\xb0\x9a\xe1\x43\x81\x62\xf8\xb6\x02\x6b\x86\x0f\x2d\xc8\x5a\x7a\xc0\xe6\x92\x9f\xe2\xec\x87\x7c\xb0\xf3\x90\x79\x60\x00\x93\xed\xa5\xd5\xf1\x25\xc3\x9a\xa3\x58\x73\xf0\x00\x63\x6d\x20\x7d\x0e\xf7\xec\xbc\xc0\x9d\x67\xf1\x97\xc0\x43\xf3\x81\xae\xce\xd3\x87\xc4\xc3\x6e\x20\xf3\x30\x7d\x58\x83\x9c\x57\xf5\x81\xd6\xae\x5d\xad\xf1\xb0\xab\x31\x8a\x8d\x6e\x98\xee\xbc\x77\xd3\xc0\x06\x72\x5b\x83\x8d\xcc\xc7\x6f\xe0\x1e\x73\xba\xb1\xc2\xbe\xdf\xc5\x76\x0a\xdb\xc4\xbb\xb6\xc4\x02\x75\xbc\x0b\xf1\x05\x2e\xf8\x2e\xc4\x57\x40\x7f\x8f\xb5\xd5\xc2\x26\xdf\xe3\x5d\x6f\x57\xaf\x6f\xa0\x05\x48\xec\x0d\x61\xbd\xb6\x18\x3f\x3f\x2a\x04\xf6\xae\xdd\xae\x30\x61\xef\xe2\x5c\x15\x2e\xf7\x2e\xbe\x5e\x06\x88\x7c\xd7\x9e\x53\xd8\x44\xde\xb0\xf6\x68\x90\xf8\x2e\x76\x5f\x8f\xc3\x36\xd6\x86\x9e\xed\xf0\x5e\x6d\xd8\xdc\xf3\xf9\x51\x61\xfd\xef\xda\x10\xea\x01\xf2\x5e\x76\xad\x56\xd9\x08\xde\xb5\x6b\x15\x07\x1b\x19\x00\x3d\x2e\xb6\x58\x0f\xd0\xfb\xc6\xd5\x8a\x5d\xae\x4d\xa1\x14\x7a\x5c\x7b\x69\x3d\x1c\xe3\xa2\xb3\x16\x69\x7b\xd1\x59\x29\x54\xce\x0b\xea\x62\x05\x7a\x8f\xbc\x5e\x9c\xb2\x1e\x50\xf0\xbb\xf8\x5c\x3d\x20\xec\x77\xf1\x95\x5e\x81\x69\x71\x95\x0e\x87\x7a\x1b\x28\xdb\xe5\x55\x3b\x58\x65\x2d\xf2\x1a\xe0\xb0\x6f\x67\xc4\xb0\xaa\x77\xed\xb7\x35\xc0\x2b\xdf\xb5\x7b\xd6\x04\x0f\x7c\xd7\x7a\x2d\xd0\xf9\x7b\x22\x6a\x08\xf9\x22\xb7\x52\x41\xf8\xf9\x88\x15\xab\x2f\x8a\xa8\xce\xda\x5a\xbe\xad\xb1\x4f\xbd\x8b\xba\x16\xe7\xa7\xfc\xf2\x9e\xf2\x5a\xc1\xe3\x70\xdc\xf7\xbd\xe4\x00\x11\xb6\xc4\xc9\xdc\x9c\xba\x67\x11\x7d\x3c\xd6\x43\x42\xe3\x59\x93\x9b\x8e\x25\x71\x84\x46\x71\x11\x45\x5c\xd0\x24\x85\xec\xd4\x16\xfa\x52\xb8\x5d\x55\x8b\x3e\x53\x40\xe3\x68\x75\x6d\xac\x29\x40\xc6\x09\x32\x49\x31\x6d\x69\x24\xad\x87\x73\x35\xbb\xc4\xe5\x94\xd6\xd8\xe3\x62\xb7\x29\xdd\x6b\x2b\xa7\xb3\xb4\x38\x4d\x5c\xc8\x49\x69\x49\xc0\x31\x51\x61\x01\x1c\x93\x6f\xd7\xf6\xbc\xb6\x93\x94\x91\xa1\x72\xeb\x3c\xac\xd9\x0e\x25\x2f\xdc\xa7\x9c\x4f\x58\xe2\x1a\x6d\xca\x08\xe9\x0d\xf1\x3d\x65\x37\x8d\xe1\x37\x6d\x41\x53\x10\xb8\x53\x6e\xeb\x9b\x9a\xe9\x25\xb7\xc7\x6f\x7c\x80\xfb\xb1\x3d\xa6\x0c\x43\x6e\x70\xe1\x94\x07\x1b\x0d\x0c\x3c\x65\xd9\x07\x0a\x4c\xca\xe8\x71\x25\x2f\x4e\x9a\xb2\xac\x00\x5d\x2e\xe5\x5b\x3a\x2f\x83\x87\x85\xb6\x52\xfd\xe6\x59\xdf\xd4\x23\x7d\xc5\xd0\x52\x5e\x9c\x37\x94\x51\xf8\x6c\x56\x18\x39\xa8\xcf\xef\xe5\x90\xfa\x77\xdf\xa7\x02\xff\x6d\x71\x2d\x98\x54\x90\x2d\x5b\x5d\x0c\x22\x29\x32\x34\x94\x83\xa4\x94\xd0\x10\x48\x92\x9b\x7c\xef\x8b\x28\x93\x3b\x71\xad\x87\x0f\xe2\x24\xd2\x74\x03\xdd\x61\x89\x7e\xa9\xb4\xe8\x2f\x34\xdd\x1a\xa3\x60\x0e\x4b\x83\x2c\xe2\xda\xa3\x53\x81\x7b\x67\xd4\x86\x54\x46\xa3\x81\xcc\x37\x83\x6a\xe8\x78\xc9\x4d\xac\xc2\x86\x52\xd9\x48\xcd\xf4\xc3\x62\xa8\x61\xe9\x37\xa9\x20\xc2\x37\xb4\x8b\x54\x44\x2a\x0a\x6f\x2a\xf7\xfe\x86\x6a\xb7\xfa\x77\xa4\x53\x98\x6d\x19\xe2\x80\x4d\xad\x1e\x07\x4d\xa3\x61\xd5\xe4\x10\x50\xaa\x2a\x62\x59\x2a\x0f\xdb\x20\xbb\x6a\x2a\x0f\x38\x48\x42\xf0\xb2\xdb\x22\x3f\xa4\x82\x2e\xdb\x06\xd3\x5a\xd0\x65\xab\xc4\x5b\x98\x92\xd6\xab\xdf\x4c\x7f\x59\x0f\x6c\x8a\xa1\x0d\xfa\xa9\x01\xe5\x0d\x86\x9a\x2a\xca\x68\x1b\x10\x70\x0d\xca\x50\x8b\x37\xa4\x1a\x69\xba\xac\xed\x3c\x55\x34\x8e\x71\x04\x1f\x1e\xc7\xc3\x37\xac\x8d\xde\xec\x27\xad\x7e\x6a\x03\x89\x15\x3a\xc8\x1d\xda\xa9\x99\xed\x3e\x2f\x89\x7a\xa9\x39\x50\x33\x18\xad\x99\x6f\xf2\xda\xf2\x52\xcd\xae\x80\xc6\x2f\x08\x6e\xa5\x33\xd2\x0a\x85\x0c\xa4\xb8\x54\x5d\x42\x07\xeb\xbe\x76\x49\x2c\x2d\xec\xd4\x01\xe2\x33\x74\x50\x4f\x25\x84\xc1\x2f\x6c\xad\x25\x14\x9a\x66\x6b\xed\xb5\x03\xce\x05\x89\x15\x96\x5d\xbd\x82\xc3\xa6\xe9\x6b\x35\x50\x90\x90\x52\xbd\x20\xd8\x52\xc1\x0e\x2b\xad\xc8\x93\x2a\x44\x91\x63\xe3\x97\x3b\x49\x55\xb4\x76\x43\x89\x65\xf8\x0b\xe4\x22\xb3\xa8\x90\x4b\xa9\x8d\xf1\x68\x46\xc9\xcc\x5c\xc5\x3e\x92\xc7\xe1\x03\x0b\x30\x0a\x1b\xe4\x52\x2a\x0b\xa3\x42\x21\x79\x1c\x8c\x07\x73\x49\x6e\x2c\xef\x3a\xa3\xe3\x61\x16\x96\xc0\x14\xea\x60\x9d\x56\x56\x70\xad\x90\x4b\x7d\xe1\x6a\x1d\x5c\x37\xd4\xd9\x3c\x58\x80\x6d\xf3\x64\x38\x54\x43\x01\xae\x2e\xe7\x76\x80\xc4\x02\x7a\xdb\x01\x1d\x0c\x30\xda\x02\x08\xe9\xd0\x68\x43\x57\xcd\x0d\x1c\x34\x08\x29\xb7\xe8\x2f\x74\x9a\xa1\xc4\x16\xf9\xa6\xd8\x29\x54\x55\x2a\x1c\xb7\xa5\x6d\x57\xe1\x17\xb4\xd9\xca\x1e\x9c\x5a\xb2\x35\xd6\x76\x4b\x2e\xb3\xb2\x06\xd7\x60\xcc\xb5\x0f\x1f\x92\x4c\x96\x07\x44\xfb\xd2\xfc\xa5\x22\x57\x26\x76\x81\x06\x73\x68\x83\xa5\xd9\x90\x6f\x73\x87\x28\x1a\xb3\xdd\x92\x38\x40\xaa\xca\xb5\xe4\xaf\x18\x66\x63\x8a\x06\x32\x7c\x6a\x2c\xd5\x12\x2b\x6d\x60\x5e\x6a\x81\x55\xd3\x58\xaa\x35\xc0\x09\xfb\x01\x83\x19\xcc\x7e\x0f\xe8\x0a\x8d\x06\x7a\x3c\xfc\xc5\x07\xd0\x5d\x97\xc4\x9b\x7a\x72\x26\x97\x58\x9d\x7a\xea\xc2\xba\x86\xd4\x51\x5d\x3a\x96\xbb\xd4\x9b\xeb\x96\x21\x75\xc6\x57\x91\x00\x53\x87\x4c\xb3\xcc\xaf\xaf\x3d\x3b\x54\x8c\x1f\xa9\x3f\x92\x02\x34\xdb\xa1\xbf\x81\xfa\x96\xfa\xab\x20\x0c\xee\x07\x74\xd1\x06\x13\x3e\xb0\x53\x34\x57\xf4\xc0\x10\x51\x9c\xe3\xe1\xe4\x35\xab\x25\x47\xca\x1c\x0f\xcc\x58\x6d\x40\x7f\x03\xa8\x6b\x63\x08\x03\x66\x3e\x14\x15\x06\x72\x79\xce\x50\xd9\xe8\x32\x32\x76\xf3\xd1\x25\x46\x78\xf1\x18\xd1\x0d\x80\x7e\x86\x48\x5c\xda\x64\x1a\xe3\x72\xf6\x69\x0d\x9e\x5f\x3a\x83\x1b\x27\x8b\xab\xb3\x77\x8e\x6b\x8f\x07\x08\x30\x63\xd5\xc3\x06\x58\x4f\x3d\x40\xc0\x83\xf5\x94\x2b\xfb\xd1\xc0\xe2\xd8\x90\xbd\xd2\x70\x82\x07\x0c\x73\xc8\x8b\xb1\x0a\xa4\x01\x2f\x6e\x11\x4e\x78\xb2\xd2\xaa\x5c\xfa\xdc\x2b\xad\xfb\xe0\x2e\x0a\x76\xce\xc0\xee\xd6\xfc\x25\xb8\xbb\x31\x84\x33\x32\xb8\x01\xae\xcf\xb8\x39\x21\xbf\x24\x66\x01\x13\x4f\x3a\xb1\x1f\xb6\xc1\xd4\x9f\x28\xeb\x55\xc9\xe2\x2c\x36\x3d\xfc\xe5\x76\x3f\xa2\x1f\xf4\xe6\x82\x69\x29\x9d\x28\xb7\x15\xa3\x6d\x3a\x51\x6e\x5b\x84\x4b\x9f\x7b\xd5\x40\x7c\xe7\x09\x29\x17\x36\xb4\xf3\x72\x4e\x11\xbc\x4e\xf4\x8a\x2a\x53\x3a\xb1\xee\x66\xc9\xe5\x7c\x59\xde\x87\x10\xec\x0d\xcd\x7e\x5e\x09\x76\x00\x8e\x32\x06\xf6\x86\x74\x1d\xac\xc1\x02\xae\x2f\x56\x49\x77\xfd\x5c\x71\x37\xc0\x2f\xda\x50\x1b\x04\x7b\xb1\x1f\x75\xec\x46\xe9\xca\x4c\x23\x1a\x43\xba\xb0\x37\xf4\x03\x8a\xbf\x34\x0a\xd4\xc2\x2f\xcd\xcd\x96\x75\x7a\xb5\xfd\x4d\xe1\x41\x3d\x95\xed\xf1\x6a\x28\xeb\x39\x52\xad\xcb\x7a\x2a\x0f\x28\x81\x5d\x1a\xbd\x10\xdc\xca\x01\x33\xbf\x20\xcb\xb2\x21\x50\xfa\xe8\xb0\xd2\x4b\xc1\x2d\x41\xe4\x17\xdc\xa6\x60\xec\x4d\xd7\x2d\xf3\x83\xc8\x2f\xb6\x93\x72\x1c\x8c\xf4\x61\x99\x1d\x90\xe5\xc5\x6e\xd0\x0f\x56\xfd\xa5\x21\x7c\xff\xa2\xed\xfb\x40\x6a\xbb\x94\x17\x3a\x74\x70\xbd\x8a\xa8\x70\xcf\x5b\x66\xee\x5a\xb8\x43\x50\x7c\xa9\x3c\x28\xfd\x22\xe5\xdc\x0a\x0f\x2d\x51\xad\xb8\x7e\x58\xc1\x77\xd7\x8a\x0b\xf5\xde\x5b\xa5\x4f\xf1\x2b\x86\x79\x63\x80\x2d\xee\xb7\x37\xac\xa7\x26\x81\xd8\xbb\xdd\xe1\x03\x64\x9a\x2b\x5d\xcd\xcb\x3d\x8d\x6f\x30\x98\xf5\x03\x88\x1e\xac\xee\xe3\x00\xf0\x07\x3b\x6a\xc6\xcc\x99\x1e\x65\x9b\x0a\x86\x9f\xa4\x71\x1e\xd1\xf1\x49\xb6\x06\x97\x7e\x32\x2a\xb3\x4a\xc4\x93\xdd\x9f\x6c\x20\xab\x13\x01\xc1\xa3\x25\xac\x40\xcd\x0f\x72\x4a\x6d\xac\x80\xc7\xbd\x26\x97\xcc\xc3\xb0\x01\x1f\x4e\x9b\x06\x50\x76\xa1\x52\x11\xa8\x1e\x2d\xdb\x07\x13\xf1\xa0\x11\x94\xcc\xb0\x9f\xae\x74\x85\xb2\xf1\x74\xd9\x22\x24\xf7\x68\xf3\x3e\x50\x97\x9e\x4e\x6b\x1b\x07\x43\x02\xf6\x1b\x44\xa0\x82\x75\x21\x3d\xa7\x44\x02\xc9\x3d\x57\x66\xdd\x42\xf4\x0f\x32\x6e\x8e\x30\x8b\x47\xb3\x41\x75\x08\xb7\xcc\x02\x89\xf9\xd1\xc3\xd3\xc5\x0e\x9b\x46\x69\x91\x4e\x9d\x46\xec\x84\xe9\x51\x82\xc1\x82\x98\x1e\xc4\xda\x9a\x20\xb9\x07\xdb\xad\x1a\x61\x7a\x70\xeb\xd4\xc1\xd4\x3f\xcc\x69\xd9\xe8\xd5\x45\x13\x92\x0f\x6e\x41\x2c\xc8\xe7\x45\x8e\xac\xf0\xa1\x07\x2d\xb1\x0d\x47\xfa\x02\x41\x42\x64\x98\x1a\x84\x1a\xfc\x61\x2a\x18\xd8\xe9\x44\x30\x68\xaa\x99\x33\xab\x0e\x20\xa7\xcc\xa2\x78\x86\x00\x3f\x31\xb4\x55\x39\xd4\x3c\xdd\xba\xe1\xdf\xf3\x94\xf5\x30\x8d\xda\x6b\x6a\x41\x7e\x98\xa0\xb7\xec\xa6\x91\x23\x0b\xa6\xc1\x34\xd9\x5b\xf2\xb0\x69\x70\x5d\xdc\xa0\x27\xcb\xbb\x60\xdd\x4b\xf3\x16\x3b\x6c\x9c\xda\x6b\x7a\xb0\x35\x71\x9d\x90\x71\xe7\xe3\x8e\xe8\x37\xba\x6f\x30\x0b\xa4\xe9\x92\x29\x89\x7e\xe0\x0f\x0d\xeb\x7c\x9a\x38\x69\x4a\x45\x0c\x9c\x6a\x1a\xae\x1f\xad\x3f\x19\x4f\x4a\x9a\xc8\x91\xa5\x20\x61\xce\xbd\xef\xc1\xd5\x26\x33\x57\xdc\x27\xe6\x94\xae\xf7\x03\x36\xcc\x2a\xaa\x60\x3d\xe3\x80\x5d\x4d\xd9\x7c\x40\x7c\x99\xcc\x69\xc1\x8e\x9b\x26\x73\xda\xdd\x38\xe7\xbb\x47\xea\x2f\x7b\xa4\x74\xfa\x4a\xd7\x70\x42\x8c\x51\xa1\xa4\xe6\x03\x5b\x9d\xf4\x86\x15\x6a\x35\xed\x2f\x4d\x09\xcc\x07\xf4\x89\x00\x53\x7a\x75\x95\xe1\x0c\x49\x2f\x1b\x40\xc1\x62\x9d\x30\xc4\xac\x3d\x8c\x87\x2a\xa0\xec\xfd\x2f\x6c\xbe\x07\x98\xf9\xab\x4a\xde\x01\xf4\xc5\x99\xd3\x52\xf1\xc1\xa5\xc9\xde\xff\x8a\xf8\xc4\xcc\xbd\x3a\xc4\x30\x6f\xa6\x17\xe1\xa1\x07\x04\xa8\x17\x0f\x65\x8b\xac\x92\x17\x7f\x63\xeb\x6d\x7c\xc5\x30\x5f\x85\x30\x54\xbe\x7c\x80\x86\xca\x52\xcd\xc7\xe1\xea\x5c\x80\xe7\x03\x7e\xd7\x31\x8a\xe6\xc3\x7d\x10\x73\x6b\x3e\xb2\x40\x74\xaa\xa9\x92\x63\x97\xcc\x47\xd9\xab\x73\xac\x07\x19\x19\x86\xa2\x7c\x60\xf5\xae\x48\x98\xf9\x90\x91\x61\xd2\xcd\x87\xe2\x34\xa6\xde\x7c\xb8\x77\x8e\x0c\x38\xae\x9a\x54\x81\x00\x6e\x33\x82\x4d\x5f\x2a\xaa\x85\x4e\x59\x0e\x35\x1c\x80\xa3\x99\x22\x04\x1e\xf0\x32\x56\xec\x29\xf9\x78\x54\x06\x07\xad\xbd\xa2\xbb\xd2\xc0\xab\x08\xb4\x56\x40\x0e\x87\x1b\x40\x3d\x78\xd0\xde\xb0\xe8\x2f\x07\x51\x85\x3c\x94\x83\xa8\x8a\x6b\x5b\xce\xe1\x50\xea\x49\xab\x9f\x80\x15\x69\x84\x44\x03\xec\x13\x25\x64\x7e\x41\x04\xea\x11\x84\x04\x6d\xf5\x25\x50\xad\xee\x06\xd6\xe0\x42\x73\x05\x34\x7e\x69\x40\x8d\x16\x9e\x43\xdf\x4d\x03\xc1\x70\x6d\x04\xa0\xd6\x86\x1e\xc1\x41\x60\x93\xef\x38\xa5\x73\x80\x0b\x64\x28\x26\x6b\xee\xea\x31\xd0\x1a\x8b\x38\x23\x2d\xe6\x00\x2d\x0d\x3c\x26\x39\xb0\x23\xe6\x90\x79\x80\xb0\x0a\x8b\x38\x47\xf7\x75\x56\x5a\xc6\x07\x16\x7a\x5f\x2b\x20\x47\x78\x64\xc6\xe1\x90\xf1\x62\xad\x7e\xa8\x56\xd5\x9b\x3b\x0f\xad\x3a\xc1\x3e\x40\x07\xf8\xd9\x72\xec\xb7\x0f\x0b\xd0\x38\x1c\x42\x5c\x93\x15\x31\x38\xf6\x91\x79\x40\xa3\xae\xf9\xe0\x1b\x74\xac\x8c\xda\x91\xa3\x1a\x75\x5e\x6c\x24\xc7\x77\xab\xbd\xf4\xa3\x18\x58\xf6\x2f\xb7\x62\xd3\x6a\x20\xa1\x8e\x8e\x40\x03\x29\x8a\x90\xb5\x9e\x72\xaa\x2e\xfc\xc8\x2f\xc3\x99\x4b\xfc\x32\x34\xd9\x31\xc1\xe9\x72\x31\x81\xaa\x74\xef\x8d\x73\x75\x9a\x1e\x16\xa4\xb8\x4e\x12\x9f\x43\x48\x46\x16\x44\x1f\x64\x71\x08\x0f\x39\xa9\xef\x49\xfe\x3a\x88\x7b\x5c\xfb\x6b\xce\x87\x9a\x20\x18\xcd\x46\x03\xc4\xc5\x98\x73\x46\x21\xee\xb8\x30\x73\x8e\x36\xbd\x04\x81\xac\x9d\x30\xef\x6a\xdd\xa9\xaf\x34\x3d\xb4\x74\x1e\x3e\xc8\x23\x1b\x0f\xaa\xb0\x58\xd8\x72\x06\xf1\x15\x47\x77\xce\x97\x73\x5a\x69\x9a\xd8\x8e\x2a\x7a\xf3\xb5\x69\x67\x51\x48\xbe\x65\xb2\x2c\x99\x8c\x8e\x38\x8e\xe8\xc3\x36\x24\x44\x1e\xa0\x78\xb4\xa0\x9c\xb5\x44\xb0\x8b\xe6\xcc\x76\x32\xf0\x68\x65\x0d\x8d\xa5\x8a\x83\x29\xf9\xfb\x0d\x86\xc5\x8c\xbf\x31\x67\xb6\x93\x8a\x9f\x22\x67\x42\x3a\x4a\x74\x08\x4a\x05\x78\x18\x72\x9e\x2a\x65\x85\x07\x85\xd7\x96\xfa\x17\x0c\x33\x17\xb8\x40\xc7\x2f\x97\xcb\x21\x65\x2e\xc9\x2f\x17\xb8\x40\xc1\x80\x91\xcb\x21\xf9\xc0\xc8\x8a\x6e\x6e\xac\x74\xb9\x10\xa3\x31\x70\x13\xe6\xa2\x1c\x89\xc3\x2b\x17\x4d\x1b\x69\x49\x64\xb9\xa0\xf6\xe6\x04\xb6\x4a\x9c\x1a\x4a\xd6\x60\x0b\x36\x8b\x92\xb3\x0f\x5a\x08\x92\x0f\xec\xc4\xb1\xd3\x29\xee\xa8\x5c\x92\x0f\x9b\xdf\x2d\xd4\x95\xbc\xfb\xa1\xd3\xa2\x64\xd1\xe8\x54\xc5\xae\x54\x7f\x71\x8a\x20\x1f\x3d\xaa\xe3\xb0\x53\x5d\xa5\xd2\x5f\xd9\xa6\x34\x1b\xa8\x8a\xc2\xe2\x40\xdf\x64\xca\x74\x5a\xa5\x8b\x46\xd3\xcd\x25\x04\x91\x68\x6c\xed\x84\x3b\xe4\x82\x88\x9a\x91\x39\x72\x39\xe5\x0f\x50\x59\xd1\x7f\x95\xc4\x9b\xbe\x41\xb4\xfd\x5c\x0c\x19\x41\xf2\xcb\xc5\xd9\x0f\xb0\x84\x32\x5d\x9d\x30\xa5\xea\xcc\x61\xfe\xc8\xdb\xc7\x17\x87\xbf\xc0\xe2\x12\xab\xa6\x86\x6d\x53\x4a\x3c\x08\x28\xd3\x58\x75\x17\xbb\x05\x69\x34\xcc\x98\xa2\x73\x45\x63\x2b\x15\x2a\xab\xdb\x9b\xb9\xc4\xf4\x5c\xf1\x7d\x8c\xc0\xfe\x5a\x2f\xa7\xbe\xd2\xe9\x2d\x33\x67\x0d\x56\x84\xb0\x82\xca\x97\x35\xa5\x95\xc8\x2c\xd4\x77\x0b\x20\x0b\x07\x4d\x1d\x04\x8d\x26\x37\x94\xa7\x82\xb1\x3f\xb7\x24\xaa\xc0\x4e\xcb\xd9\x07\xbe\x51\xd3\x70\x0f\x6b\xf9\x15\x55\xfc\xd2\x34\xb2\xc1\xa5\x1b\xb6\xec\x8e\x94\x9d\x1b\x88\xaf\xf8\xc0\x72\xc3\x3d\x58\x31\x35\xe5\x86\xdf\xa5\x05\x9b\x96\x77\xb9\xa9\xb7\x57\x73\xc1\x58\xb3\xd0\x0f\x4d\x4d\x2c\xd5\x7e\x68\xbd\x60\xdb\xea\x09\x8c\x12\x7d\x90\x7b\xd1\x08\x05\x53\xea\x6c\xf7\xa5\x42\x55\x5d\x33\x4b\x5c\xb2\x5a\xee\x6a\x1a\x6e\x27\xfd\x34\x20\x86\x59\xe8\x08\x02\x05\xaf\x74\xee\x22\xb1\xb1\x98\xfa\x63\xd3\x50\x48\x57\x38\x3a\x58\x0b\x5d\xad\xf5\xb0\x81\x57\x9b\x1f\x34\x3a\x94\xfc\xf0\x7c\xe7\x11\xb6\x6d\xbe\xf2\x30\x85\x60\x0d\x61\xc0\x64\x0b\xbe\xb0\x3c\xa2\x9a\xd3\xf0\x17\xc5\xa4\xe8\x2f\xaf\x0e\x8e\x85\xaa\x81\x09\x72\x88\xc4\x81\x95\xbb\x14\x86\x3d\x92\x22\x2a\x4b\x66\x24\x39\x21\x1b\xcd\x50\xb4\x52\x4c\x1a\x06\x3c\xb9\x98\x86\x72\x96\x7b\xcb\x30\x86\x20\x77\x1f\x4e\xab\xd1\x34\xf6\x86\xdc\x3b\xb0\x61\xec\xca\x6e\x5b\x1a\xae\x72\x01\xd7\xe3\x74\x4a\x98\xac\x01\x93\xcd\x45\x40\x95\x30\x53\x01\x21\x53\x3b\x0d\x0f\xa7\x4b\xa6\xa4\xf0\x15\xc3\x3c\x83\x9a\x14\x80\x9f\x31\xdb\xe0\x82\xe8\x4c\xbb\xf5\xd5\xd5\xa9\x69\xa3\xb0\x20\xcf\x53\x02\x66\xf6\x4f\xe6\xb8\x45\xa4\x84\x13\xdd\xa7\x60\xc8\xca\xa7\xb6\x45\xd9\xd5\x39\x77\xd3\x54\x7b\x05\x0f\x32\xbd\x82\x81\x52\xb0\x9e\x6d\xeb\x41\x9c\xce\x57\xf4\x17\x58\xdc\x15\xd5\xff\xd8\x51\x2e\xc8\xb4\x12\x49\x97\x2f\xd5\xeb\x04\x5f\xbd\x70\x21\xf5\xc4\x82\xd4\xa2\x93\x4b\xf7\x41\xc9\x02\x62\xbc\xf0\xbe\xd5\x04\x5d\x5c\x7d\x6b\x45\xb4\x36\xdc\x14\xe1\x29\x97\x81\x12\x2e\x48\xcd\x3b\xb9\x0a\x8e\x9e\xa6\x04\xfd\x5d\x3a\xfc\x13\x72\xca\x75\x89\x51\x84\xd7\x6b\x1b\x93\x61\xbf\x97\xfb\x2d\xb1\x6f\xf9\x56\x44\x25\x8c\x27\xdf\xe8\x31\xd5\x65\x77\x6b\xfc\xaa\xec\xf8\xb7\xd6\x8b\x01\xeb\xb9\xb5\x5e\x28\xcd\xdf\xba\xde\x08\xf9\xcb\x77\x56\x34\x59\x9a\x47\xbe\xf5\xbf\x60\xdd\xcc\x77\xf1\x01\x66\x7e\xc3\x23\x2b\x51\x34\xf9\xae\x1b\x6a\x1a\x68\x32\x32\xc4\x99\xbb\xed\x4d\x90\x6a\xda\x28\x06\x32\xc7\xdd\xe5\x9e\xac\x8d\x5b\x83\xc5\x60\xdb\xba\x25\x0a\xd7\xc6\x0d\x17\x28\x18\xcc\xf2\xad\xcb\x25\xb3\xbf\xde\x48\x23\x65\xc0\xc8\xb4\x07\x35\xc9\xe5\x46\x64\xa8\x41\x84\xa8\x8e\xee\x4e\xe1\x0f\xd5\x05\xf9\x1c\x8e\x87\xf9\x79\xd8\xd4\xab\xe2\xcc\x03\x21\xd5\x0a\xbd\x3d\x98\x47\x73\x65\xa5\x3d\xcd\x6d\x18\xec\x3c\x6d\x63\x67\xe1\xfa\x61\xd9\x0d\xf4\xbf\xac\x31\xa5\xa5\xd1\x78\xd0\x6b\x04\x7f\x98\x7f\x8b\x8d\xc8\xf3\x20\x50\xab\x51\x4c\xab\x68\x05\x47\x0f\x20\x73\x81\xa8\x0b\x30\xcf\xa3\x7f\x7e\xb8\xf3\xcc\x03\x9f\xbe\x8d\x9c\xab\xe8\x97\x7a\xf7\x29\x1a\x89\x10\x29\x3f\x9f\x1f\x95\x5d\x61\x1e\x44\x14\x04\xcb\x44\x5b\xa0\x3b\xcc\x35\x5e\x3c\xbe\x79\x12\x6d\x51\x7c\x9b\x3f\x3f\x1a\x2b\x78\xae\xbd\xb2\xc1\x10\xe6\x92\x71\xdc\xf7\xe7\xda\x98\x1a\xb8\x9c\x6b\xb5\x35\x56\xd4\x34\x50\xb5\x76\xdf\x3b\x76\x96\xfe\x24\x84\xa2\x10\xf3\x90\x27\x1c\xa2\x11\xb7\x9b\x27\xf1\x88\x98\x33\xf2\x8c\xfd\xf3\xa3\x24\x3f\x40\x47\x8b\x8e\x34\x32\x3c\x80\x74\x05\x2b\x47\x4e\x22\x2d\xaa\x45\xc7\x67\xd9\x10\x4a\x91\xba\xb8\x72\x45\xd5\x9b\x89\xd8\x08\xe4\xf8\x99\x0c\x8e\xa4\xf9\x25\x6d\xd5\xd4\xad\x5e\x17\x08\xa0\x1a\xfe\xd0\x6a\x6f\x5f\xf1\xbf\x99\xd6\xfc\x38\x84\xa5\x38\x4b\x3d\x73\x2d\xb4\xe6\xf0\x13\x93\x82\x04\x37\x93\xf4\xea\x70\x96\xd0\x56\xd0\xef\x66\x0e\x7f\x0b\x4d\xc8\x33\x47\xa2\x59\xf8\x38\x43\x21\xbe\x2e\xab\x23\x06\x93\xa5\x0f\x7a\xca\xf4\x6f\x71\x1b\x26\xfc\x72\xe1\x0d\xe9\x63\xe6\x67\x01\xc3\xb8\x96\xb4\xd0\x9c\xf2\x25\x2b\x34\xa7\xbc\x38\x0f\x80\xb8\x24\xc1\x78\x48\x9f\x65\xec\x30\x9e\x3c\x77\x60\x9d\x34\x09\x17\x68\x55\x54\x2d\x69\xb1\x8c\xfd\xc1\x03\x60\x14\xd7\xa4\x38\xe7\x65\xd1\x1c\x7b\xeb\xac\xe3\xf3\xa3\xc3\x68\xa7\xaa\x62\x77\x1a\x88\x79\x48\x8e\xae\xb9\x07\x08\x5a\x33\x88\xc4\x4a\x06\x91\x30\x56\x03\xb0\x08\x10\xce\x53\xa7\xae\x7b\xd0\xec\xf1\xf3\x23\x15\xd7\x46\xff\x16\x7c\x94\x67\x27\xf8\x08\xf0\xbb\xce\x77\xe4\x9a\xd9\x17\xfe\xaa\xcd\x68\x56\x71\x32\xb1\x50\x2b\x44\x4f\x82\x66\x5c\x56\xdd\x11\x32\x98\xce\x10\xf9\x94\x50\x1a\x44\xcf\x39\xe2\x2a\xd2\xe7\x20\x7c\x07\x25\x68\x2e\x2d\xb7\xc2\xe0\x09\xfc\xaa\x6c\x30\x13\xb1\x2c\x37\xe9\x6f\x80\x1c\x7a\x1c\xae\x26\x91\x33\x04\x85\x3e\xc7\xa4\xec\x7b\x8c\x21\x52\xc7\xd2\xe5\x8a\x08\x58\x9b\x7f\x45\xb1\x98\x4b\xa9\xc3\x49\x9a\xe7\xa9\x02\x2f\x0f\x5a\xbc\x56\xb9\x81\xf0\xb2\x2e\xdb\x59\x62\x61\x77\x01\x63\x8e\xc1\xf9\x9c\xe7\x12\xc6\xe3\xe1\x8a\x5a\xc2\xe2\x38\x24\x20\xf5\xc2\xe6\x74\xa3\x9d\xa7\x80\xd0\x34\x2f\xa2\xad\x18\xc8\xb5\x49\xc5\xaf\x6f\xdd\x95\x7e\x6e\xa4\x84\xac\x68\xed\x6c\x95\x1d\x9c\x50\x67\xe5\x3a\xec\x9d\xf5\x08\xbe\x5e\xb8\x84\x9d\xcf\x7b\xa1\x12\x5e\x3c\xef\x4e\x0d\x7a\xbd\x09\x90\x0a\x56\x59\xd3\xc4\xc6\x34\x0d\xa8\x88\xce\xd3\xb3\x78\x97\x5c\x63\xe9\xec\xcd\x59\x78\x84\x97\xea\x8f\xcb\x95\x3e\x1f\x26\x5b\xa6\xb4\x54\xd5\x0d\xf9\x92\xa1\x9a\x78\x9a\xb2\x15\xcb\x8b\x5b\xca\x71\x27\x60\x21\x8f\x62\xfe\xac\x07\xd2\xf1\xf4\x04\x42\xdd\xf5\x35\x6c\x21\x83\xcc\xa9\x1b\xc7\x6a\xef\xf1\xf9\xd1\x9d\xd7\x97\x0e\x1c\xf7\x1b\xd7\x6b\xa0\x59\x42\xee\x10\xf3\x4b\x30\xaf\x87\x93\xb9\x54\x8b\x7a\xb4\xaf\x1c\x29\x79\xbe\x6b\xaa\x5d\xb3\x2f\xcc\xa4\xd9\xac\xe4\x88\xec\x3c\xdf\x6b\xd5\x01\x41\xef\xb3\xba\x03\x6d\xba\x27\x55\x0a\x30\xb9\xe2\x05\xca\x18\x5c\x8d\xaf\xc9\xef\xda\xe2\x88\x35\xc8\xef\xc1\x14\x22\x08\xbc\x87\xde\xf8\xe1\x0f\x82\x9d\x28\x03\x36\x33\xfa\xb2\xdf\xa9\x3e\xbf\x07\x0b\xa2\x53\x3c\x17\x30\xd6\x20\x7e\xcc\x0f\x9f\xf5\xd6\xf6\xd8\x04\xaa\x1d\x2d\xb0\xa0\x74\x63\x07\x35\x30\x10\x3c\x58\x31\xbb\x66\xa3\x07\x55\x57\x09\x1f\xec\x48\xa6\xaf\x0a\xa1\xb8\x7f\x83\xa0\xd0\x69\x00\x14\x5f\x1b\x1b\xc9\x7a\x34\x6c\xd0\xed\x9f\xf0\xc0\xaa\x36\xfa\xc6\x6e\x25\x3a\xd6\x09\xdb\xec\xd9\x70\xc1\x66\xad\x87\xcd\xcd\xf2\x5a\x0f\x2a\x82\x2f\xea\x04\xc6\xf8\xfc\xb2\x5b\xe5\xca\x36\xfc\xb2\x5d\x69\x3f\x7d\x91\x50\x34\x70\xbc\xe8\x87\x1b\x54\xf7\x2e\x0e\xc0\xe4\x17\x6f\xbf\xda\xe1\x6b\xc0\x4d\x44\x8e\x7a\x89\x86\x70\x25\x1b\x9f\x18\xc4\x3f\xfa\x0a\x06\xf1\xfc\xb2\x5d\xe1\x69\xca\xef\x92\x16\xab\x16\xe2\x77\xed\x5c\x95\x80\xb9\x4c\x10\x63\xd5\xe0\xf7\x66\x23\x39\xc4\x3c\x66\x08\x95\xe1\x37\xab\xf2\xa2\x70\x12\xeb\x18\xf0\x75\xe4\x37\x7b\x0c\xc1\xaf\x01\xd5\x29\xc9\x88\x3a\x22\x0c\xdf\x74\x6e\xcd\x87\x85\x3d\x2d\x82\x2f\x31\x01\xc7\x6e\x74\xd2\xa8\x0d\x81\xc9\x0c\xd8\x85\xd8\x51\x49\x94\x68\x4a\x8d\x31\x2f\xde\x48\xcd\xc0\x2f\x96\x10\x4e\x29\xe4\x77\x6d\x85\x35\x48\xaf\x48\xbe\x07\x7a\x13\x1e\x80\x1a\x24\x40\x1c\x00\x7b\x06\xd9\x17\x5d\x9f\x2f\xdb\xe2\xe1\x44\x15\xd1\x58\x29\x03\xa7\xf0\xe3\x34\x3f\x8a\xdf\x82\x46\xe9\x1b\x2b\x2a\x91\x20\xf9\xad\xa0\x14\xd5\xe2\xad\xc2\x4f\xfd\x2a\x46\xc1\x6e\x25\xfa\xb5\x5b\xa7\x51\xa6\x2f\x9c\x88\x29\x5b\xff\x04\x57\xf4\x5b\xd7\x14\xe7\x60\x7d\xe2\x25\x61\x71\x6f\x9d\xbc\xb7\x4d\x02\x24\x11\x58\x5f\xd4\xa0\x94\x2c\xeb\xa5\x74\x90\xee\xd4\x88\x33\x6f\x5b\x40\xa8\xc2\xbc\xb8\x25\x55\x66\xdf\x25\x2e\x57\x15\x98\x77\x49\xcb\x35\xb9\xa0\xd6\xce\x5e\xf3\x61\xfd\x41\xd9\x36\x4f\x80\x66\xf0\xa8\x0e\xc4\x86\x64\xfc\x29\x35\x8d\xe3\x2b\x76\xf6\x36\x82\x77\x5d\x16\x68\x66\x29\xdb\x30\x23\x82\x0f\xbf\x4b\x62\xa8\x49\xa2\x5d\x02\x43\xcd\x08\xa1\xef\x92\x17\x6a\x0e\xd6\x71\x70\x00\xd2\x1d\x1c\x18\x58\x72\x44\x4d\xae\xd3\x8e\xb0\xc4\xa6\xf0\x76\x07\x47\x5f\x38\x5c\x95\x41\xde\x25\x49\x54\xf5\x80\x17\xdf\x6b\x6e\xd2\xb5\x52\x45\xb2\x63\x02\xca\x93\x1f\x00\x28\xdb\xfd\xbb\x14\xc8\x8a\x4b\x37\x13\xa2\x1b\x12\xfb\xf0\x3b\x04\x14\x20\x90\x26\x08\x9a\xc9\x2f\xe2\x44\x66\x97\x7c\x51\x31\x53\xb6\xdc\xa8\x63\x7d\xc2\x7b\x5d\xa5\x43\xb2\xb0\x8e\xf0\x30\x80\xe1\xd2\x62\xc0\x28\xa4\x5a\x34\xdf\x21\x89\x00\xe7\xb9\x57\x38\x8d\x9e\x9b\xc7\x01\x9d\x91\x1d\x19\xb9\xcb\x90\x60\x62\x39\xf2\x4b\xcc\x69\x73\xa2\xd5\xe4\xaa\xcb\xe8\x42\x38\x71\xed\x5f\xec\xee\xc8\xa8\xaf\xde\x9f\xbd\xee\x2e\xfd\xac\x00\x6b\x20\xbb\x08\xb8\x0c\x31\xf1\xfd\xc2\x76\x93\x65\x21\x7a\xb8\xc3\xbf\x4b\xf6\xa8\x4a\xe1\xef\xb5\x43\x67\x99\x66\x45\x0f\xa7\x5f\xc9\x43\x46\xa0\xe8\x21\x47\xc5\xd7\xaa\xa4\xfe\x62\xda\x6e\x62\xe0\xd6\x0e\xc6\x30\xef\xc2\x08\x80\xfa\x6e\x7c\x6b\xfd\xae\xd7\xd7\x86\x80\xce\xd1\x18\x56\xef\x2a\xbc\x85\x0e\x48\x6f\x05\x23\x57\x89\xb2\x8b\x73\x7e\x1b\x0c\x64\x25\xa1\xa6\x67\x6c\x61\x78\xac\xf3\x8b\x99\xa4\x49\x2f\x8f\x52\x92\x75\x90\x38\x65\x47\x4f\x65\x94\x00\xa1\xc7\xd1\x25\xff\xe8\xac\x06\xd0\x47\x40\x7d\xaf\xab\xc3\xfa\x02\x6a\x9b\x37\x65\x06\x60\xd4\xa9\x34\xe8\xa9\x80\x68\x3b\xc0\x29\x3d\x12\xc8\xd3\x5c\xf1\x53\x38\xa9\x63\xa8\x70\x16\xed\x46\x49\x75\x99\xfa\xa4\x07\x77\x87\x25\x14\xc5\xe0\x46\x3b\x5f\xce\x7e\xf2\x81\x7e\x14\x45\xa1\xf7\xe5\x14\xaa\x13\x82\x4f\xc5\xf0\xf6\xfc\x2e\x19\x29\x06\x49\x64\x09\x49\x4d\x0f\xde\xbb\x84\x24\x83\x93\xf2\xbb\x04\x9e\x18\xa4\x84\x57\x0b\x9a\x53\xf8\x72\x3e\xcc\x99\x7a\x0d\xf0\x95\x99\xbf\xc2\xd4\xbe\xfb\xbe\x10\x98\x1e\x31\x38\x94\x1d\x9a\xce\x79\xd2\x72\x2c\x81\xa6\x85\x61\xa5\x4a\x17\x9d\x72\xe3\xbd\x65\x1c\x96\x39\x7e\xc5\xdd\x0a\xae\xda\x18\xd6\x62\x2c\xc7\x12\x7e\x22\xd1\x65\xe5\x58\x22\x4f\xc3\xf7\x51\x8e\x25\xf2\xc4\xb2\xf6\x98\x72\x04\x31\x92\x28\x47\xca\xbe\x4f\xf4\x4e\x3b\x4b\xfe\x89\x61\xad\xd0\x72\xa0\xe6\xb3\x10\xcb\x11\x84\x96\x36\x97\x30\xd4\x38\x6f\x5b\x8e\x00\xa2\xa2\xed\x08\x4f\xa0\x2c\x9e\x2c\x5f\x20\xd6\x3a\x37\xdf\xfa\x7e\xd2\xaf\x7d\x31\x8d\xb6\x19\x39\x0a\x21\x6c\x51\x98\x81\x61\xc9\x51\x2d\x1e\xd6\x61\x12\x0f\xda\xe1\xf0\x1d\x87\x16\x0b\x47\x19\x63\x38\x18\x63\x14\x4e\xcb\xc0\x29\x4e\x22\x70\x1e\xf4\x1b\x81\x33\x5a\x16\x87\xcc\x42\x04\x4e\xc7\xbb\xa4\xb1\x88\x75\xb7\x1c\xb8\x64\x72\x13\xe8\x25\x9a\xb5\xe8\x3c\x27\x80\x16\xa0\x14\x78\x4f\x9d\x25\x99\xe9\x9f\x2f\xc7\xb6\x1d\x39\xe7\x09\x72\x93\x2e\x12\x90\x0a\x51\xda\x47\x76\x19\x32\x07\x04\xc3\x41\x99\x13\x22\xf0\xc2\x72\x2c\xe9\xaa\x11\x8c\x52\x8e\xcc\x31\xc4\x0a\x5a\x32\x53\x56\x2c\x57\xca\x34\xba\xe4\xa9\x58\x8a\xed\x74\xbe\x05\x2d\x99\x13\x91\xd5\xf2\xc9\x7b\xdb\xbf\x28\xdb\xce\x4d\x1d\x46\x86\xc9\x80\x28\xae\x72\x64\x54\xf0\x6a\xfb\x92\x19\x75\x0a\xb0\x59\x7f\x89\x56\x8d\x80\xcc\x72\x14\xce\x48\x56\xda\x2f\x3a\x17\xa4\xcb\x25\x4f\xb5\xe6\x00\x3c\xc2\xd7\xc5\xe3\x12\xa2\x62\xa9\x56\x12\x22\x7a\x2b\x40\x54\x40\x63\x11\x22\xeb\x4f\x7a\xb3\x07\x8c\x02\x85\xf7\x15\xcc\x25\xea\x57\xa0\x4b\xb4\xb3\x84\xa8\x06\x57\x2c\x04\x27\xc4\x52\x19\x19\x41\x8b\xa5\x4b\x2d\xb5\x7f\x7e\xf4\xd4\xfc\x60\xd0\x28\x00\x55\xd0\x95\x98\x82\x0a\x70\x05\x34\xd6\xcd\xb3\xfd\xf8\x01\x2f\xb6\x0a\x74\x42\x5d\xc5\x17\x1f\x34\xa1\xa3\x4e\x13\x22\x3a\x68\xe0\xce\x39\x5b\x12\x55\x2c\xd5\xb2\x90\xd2\xce\x92\xa8\x62\xa9\x00\xd1\x98\xe3\x06\x1a\x1b\x98\x73\xee\x1b\x30\x48\x37\x4b\xd8\x49\x87\x03\xe8\x86\x7b\xcb\x75\x96\xb4\x63\x3c\x73\x39\x96\xb4\xd3\x93\x73\xb3\x24\x9c\x74\x48\x8c\x4b\xaa\xe9\xc4\x46\x95\xa3\x1b\x97\x21\x29\x2f\xe9\x45\x2b\x75\x39\xfa\x4d\x99\x91\x79\x5e\x50\xfc\xf6\xc9\xfb\xaf\x82\x9f\xcb\x31\x0c\x83\x14\xe1\x4b\xce\x49\x87\xb3\x38\x04\x91\xd6\x96\x9c\xa3\x31\xbe\x1c\x4b\xce\xe9\x49\xba\x5a\x72\x4e\x3a\x9c\x88\x25\xdb\x24\xc4\xf7\x72\x0c\x4e\x39\xba\x2e\x06\xc7\x1c\x0b\x38\x1b\x40\x2e\x0d\x0f\x21\xb7\x9d\x87\xb2\x75\x80\x5c\xdc\x2f\x39\x27\x1d\xae\x91\x53\x34\x01\x9b\x9e\x33\x34\xb6\xc2\x61\xe8\x54\xe4\x17\xe7\x83\xd5\xc9\x8f\xe7\x52\x50\x5d\x6c\x4b\xfa\x49\x45\x5e\xb3\xa4\x9f\x71\xd8\xc1\x85\x8a\x2c\xee\x97\xc0\x63\x7c\x4a\x39\x96\xbc\x93\x8a\xfc\x5d\x63\x8b\xc0\x2d\x79\x27\x15\xf9\xd7\xd5\x79\x6f\xf9\xa4\x0c\x3c\x4b\xde\x49\xc5\xad\xe9\xf2\x68\xbd\xd4\x79\xa1\xbe\xbb\xf0\xae\x49\x25\xb0\xb5\xe4\x20\xfd\x95\x85\x4c\x0d\x06\xa2\x94\x63\xc9\x3e\xfa\x24\xcb\x71\x0b\x1c\xf5\x6f\x81\x63\x60\x37\xc0\xb9\x66\x6f\x81\x63\x60\x37\xc0\x39\x4b\x4b\xf4\x31\x1c\xbc\x90\xe2\x61\x1c\x52\xb0\x27\xc0\xa4\x1d\x4c\xf8\x99\xd4\x07\xe5\x58\xe2\x4e\x1a\x8e\x6c\x89\x3b\x69\x58\xc9\x20\xb6\x22\x1f\x5c\xf2\x4e\x1a\xb6\xba\xe4\x9d\xb1\x79\xdf\x92\x77\xc6\x5e\xe5\x4f\xa1\x0e\xd0\x2d\xd9\xc7\xe3\xf6\x85\x0c\x12\x63\x6f\x75\x04\x6d\xd4\xe4\x82\x5c\x02\x4f\x1a\xe2\x71\x09\x3c\x63\xaf\xfe\x25\xe4\x8c\x26\x71\x19\xa2\x9c\x93\x20\x19\x98\x27\x03\x5b\x62\xce\xd8\xac\x50\x37\xc4\x66\x12\x13\xf8\xc4\xfc\x04\x3e\xe9\x91\x93\xa9\x43\x0c\xcf\x0a\x4c\x60\x6c\x36\xde\x33\x9e\xd9\xa9\xef\xb7\x03\xf0\xac\x73\xf2\xde\xf6\x39\x3f\xe7\x9a\x9f\x0f\x75\xac\x0f\x22\x9d\x85\x25\x39\x8d\xcd\x5f\x5e\x00\x95\x37\xbd\xe2\x11\x78\x5e\xf1\xc8\x00\x0c\xa7\x29\x83\x0e\x96\xb0\xa4\xeb\xbc\x1c\x2f\x8a\xfb\x5e\x09\x98\x8a\x8e\xbd\x34\x97\xe8\x94\xd3\x6e\xf6\xa2\xcc\x10\x88\xbf\xc9\x5d\x91\x00\x31\xea\xd8\x8b\x0d\x33\xd2\xb1\x99\x0f\xee\xbc\x03\xcf\x7b\x21\x4b\x46\x4e\xc5\x72\x10\xe3\x99\x87\xc8\x0f\x83\x72\xf2\x8b\xca\x43\xe6\x07\x2b\x01\x2f\x64\x19\x08\xf8\x39\x64\xe9\xe1\x90\xce\x96\xea\x51\x0c\xe2\xaa\x99\xdd\x21\x84\x83\x73\x87\xb4\x8b\x57\x38\x60\xb2\x2d\x64\xe5\xc8\x6e\x45\x26\xe5\x08\xc7\x61\xad\xcc\x0f\x5f\x45\x93\x94\xb0\x24\xab\xec\x14\x06\x4c\x4b\x01\x37\x4c\x09\x4b\x9c\xca\xce\xb9\x29\x3e\x02\xfe\x8b\x12\xf0\x9c\x04\x1c\x34\x25\x2c\x61\xa9\xe0\xa8\x28\x01\x5f\x66\xe0\x84\x55\x21\x97\x42\x39\x84\x8c\x80\xf6\x50\x60\xd7\x01\xf7\x4a\xe0\x34\x4f\x09\x66\x7e\x28\x30\xfb\x60\xee\x07\x5c\xa6\x25\x60\x90\x0a\x1c\x62\x2a\x21\x92\xeb\x82\xbd\xde\xa4\x22\xb9\x89\x57\xad\x50\x72\x5c\x43\xdd\xe2\xee\x33\x45\x3e\xf1\x07\x8e\xe4\x42\x2d\x01\x0b\x53\x24\xb8\xbe\x04\x2c\x4c\x11\xcf\x40\x09\x4b\xda\x29\x98\xd6\x4b\x58\xc2\x4e\x21\xef\x48\x09\x9e\xaa\x26\x28\xa6\x04\xec\x4a\xc8\x77\x61\x09\x41\xf8\xce\x4a\xc0\xc2\xe4\xb8\x97\x08\x54\x1d\x5c\x5e\x12\x7d\xb3\x88\x30\x44\xd3\x59\xae\x44\xb1\x61\xaa\xa6\x28\xc3\xa4\x08\x4b\xb2\x0b\xcc\x35\x52\x07\xc1\xdb\xb2\x5a\x33\xa6\x60\x81\x2c\xa1\xec\x30\x24\x2a\x11\x3e\x93\x24\x14\xec\x47\x09\x66\x13\xb0\x1f\x25\x67\x19\x81\xa7\x25\x41\x28\x2a\xa9\xf4\x56\x96\x04\x26\xe8\x4b\xdc\x69\x31\xf8\xed\x92\x45\x1d\x9c\xd2\x8e\x30\x2c\x69\x27\x76\x3f\x5c\xe2\x97\x33\xb5\x64\x9d\x9e\x6c\x04\x83\x51\xcd\x88\x10\x81\xf4\x11\x9d\x2f\x97\xac\x93\x86\xd3\x5c\x97\xc4\xd8\x01\xa5\x62\x62\xb5\xc6\xd2\x54\x6d\xb0\x82\x18\xeb\x62\x38\x2a\xb6\xed\xa1\x53\x49\x02\xcb\x91\xe3\x59\x22\x4f\xb5\xbd\xc6\x76\x01\x2a\x88\x7e\x6e\x84\x76\x97\x80\x19\xe8\xb0\x7b\xbc\xa6\x44\x17\x94\x80\xd3\x94\x28\x88\x12\x70\xf0\xec\xf5\xda\x3c\xe5\xb0\x1f\x90\x82\x13\x88\xec\xac\x4a\xe1\xe9\x9c\xbb\xb6\x28\x7e\x5d\x2c\x5d\x3f\x18\x50\x74\x73\x28\x08\xe8\x12\x48\x86\x2b\xad\x6b\xab\x64\xe4\xfa\x67\xa5\xb5\x7d\x04\xc8\xf7\xc8\xee\x12\xe7\x40\x53\x94\x38\x87\xf9\x42\xac\xcf\xb9\x72\xe0\xc7\xb0\xd2\x19\xee\xd0\xff\x60\x0d\x43\x4b\x93\x4d\x7a\xce\x5e\x0a\xde\x16\x14\x6a\x11\x74\xb7\x91\x75\xa2\x9c\xb1\x9f\x84\xd3\x03\xaa\x08\xaf\xe1\x54\x3a\x76\x04\xe7\x09\x26\xe8\xfa\xe4\xec\xba\x1f\xdc\x88\x90\x14\xcd\xd7\x23\xa0\x48\x19\xe2\xe7\xf2\x0c\xbd\xaf\x51\x8d\xb3\x94\x7c\x79\xe0\x4d\x86\x6b\x90\xcd\x52\x02\xbe\x62\x67\xdf\xe2\x31\x01\xe5\x52\x7f\x65\x6b\x08\x98\x60\x54\xf1\xc2\x85\x1d\x29\xf8\x9e\xe5\x2d\x33\xbf\xc4\x02\x03\xf4\x40\x59\x17\xcc\x1b\x5d\x4e\x66\xec\x09\x82\x21\x1a\x96\x2c\xd1\xa2\xeb\xe7\xf6\xe4\xa7\xec\xff\x66\x05\x45\xbf\x46\x9b\x43\x19\x08\xb7\x04\x44\x77\x37\xda\x9c\x5b\xc7\x8d\xa6\xec\x64\x63\x46\xa9\x99\x3d\x99\xe4\x46\xad\xb9\x5d\x78\x9e\x24\xb3\x8b\x9b\xdb\xa8\x28\x96\x84\x67\xa3\x0b\xbc\x3f\x88\xa4\x2e\x59\xc4\x89\xcd\x2a\x1e\xb6\xeb\xdd\x94\xae\x1d\xc7\xfa\xdc\x6c\x49\x7e\xfc\x30\x97\x96\xa7\x7c\xdf\x07\x7d\x79\xae\xfe\x79\xec\x94\x08\x25\xe0\x60\x72\xa0\x73\x07\xdf\xd1\xe8\xdc\x8b\x0e\xf8\x8c\x6f\xc8\xec\xc5\x61\x6d\xf1\xb1\x08\xd3\xab\x58\x6d\x39\xc1\x18\xf8\x80\x2d\x5e\x7b\x50\x09\x6f\xf9\x96\x75\xa1\x84\xb5\xc5\x73\xd0\xb5\x84\x17\xf5\xd1\x4f\xf7\x59\x75\xbf\x75\x4a\x99\x2d\xcf\x0d\x13\xa4\x5c\xe2\x61\x4e\x14\x74\xf2\xb8\x36\xe8\x0a\x74\x91\xd4\x1b\x8d\xb4\x20\x25\x1e\x7a\xc3\xfc\x01\xcd\xca\x6f\xb5\x1e\x36\xeb\xe8\x82\xf3\x87\x25\x4b\xa3\x79\x47\xc2\x15\x38\x9d\x58\xe2\x76\xe5\x34\xca\x8b\xe7\xb3\xb8\xe2\xda\x63\x09\x3a\x2d\xd1\xd4\x0e\xc3\x1a\x8f\x22\x19\x65\xfc\x18\xc3\x56\x5e\x1d\x22\x8b\x46\xa2\xc1\x42\x6a\x8c\x31\x6a\x82\x07\x4c\xf6\x54\xdc\x46\x85\xfc\x3f\x01\x17\x4f\x89\xec\xa8\x15\xb3\x78\x89\xd1\x30\xfe\xe0\x03\xb2\x11\xfc\x98\xdc\x40\x41\x81\x24\xb2\xa1\x12\x9b\x54\x48\x40\x50\x33\xb2\x34\x49\x83\x42\x0d\xfb\x41\x73\x2e\x5d\xe3\xd6\x91\x74\x62\x92\x83\xfa\x5e\x0e\xca\x20\xd8\x66\x13\x53\x19\xb1\x29\x28\xad\x91\x73\x68\x81\x07\x14\x06\x18\x20\xc5\xc7\x7d\xa8\x85\x86\x32\x36\xc2\x6a\x9d\x0a\x44\x40\x9a\x1d\x8e\xf5\x35\xaf\x82\x17\x52\x18\x34\x38\x74\xf4\xcc\x20\xdc\x2b\x9a\xcd\x20\xf9\xad\xa7\xd1\x19\x65\xd6\x2e\x08\xa0\x79\x07\xcc\xf1\x71\xc1\xc6\xe3\x0f\x05\x5b\x54\xf6\x3d\xd6\x12\x3f\x2e\xf2\x05\xeb\x34\x47\xc3\xd0\x4c\xf9\xd3\x77\x4b\xf2\x02\x7f\x80\x17\x64\xbf\x96\x17\x30\x4c\xb6\xd3\x90\xbf\xf2\x8b\x16\x83\xd9\xcd\x89\x51\x48\xca\xd4\x70\x1c\x97\x88\x09\x21\x3a\xc0\xea\xd9\x4d\xe4\xb2\x58\xd1\x38\x9d\xd3\x8a\x36\x2e\x45\x6b\x2a\x70\xea\x2a\xac\x5a\x2c\x57\xec\x18\xce\x84\x96\x02\x31\xbb\x2d\x05\x74\xdc\xd0\x3e\x9d\x5e\xfc\x2d\x7b\x03\x8b\x0d\x45\x4b\xec\x34\x85\x1a\x3f\xf0\xfc\xb1\xeb\xa4\xa9\x12\xfa\x35\x6a\xa9\x60\x37\x54\x51\xe7\x8e\x20\x89\x21\x1d\x77\x18\x43\xf7\x3d\xb4\x8e\x99\xb5\x90\x29\x2d\x2b\xe1\xc7\xb5\xa3\x66\x45\xc1\xe8\x01\x32\xe2\x27\x4a\x1c\x06\x62\xc0\xa2\xe2\xda\x60\xb3\xda\x52\x5c\x9b\x6a\x56\xdd\x31\xc4\xbf\x66\x61\xc2\x47\x11\xb3\xcb\x94\x30\xb8\xc4\x29\xc7\x12\x89\x86\x88\xc3\x65\xc7\xf9\xc7\x94\x9c\x58\xf7\xd6\x8d\xff\x71\xed\x7c\x30\x25\x0e\x5c\xf1\x14\x4f\x58\x39\x9f\x9e\xc6\x76\x3a\xd4\xa5\xbe\x0f\x76\xa3\x78\x9a\xea\x41\x58\x4f\x02\x42\xba\x1f\xe8\xc9\x10\xb1\x78\x32\xdc\x35\x23\x51\xc9\xbb\xd2\xde\xfd\xd8\x65\x3d\x8d\x50\xb3\xfd\x11\xe4\xa0\x32\x12\xdd\xfd\x64\x29\x97\x6b\x1f\x14\x6c\x3f\x03\x70\x98\x17\x42\xc2\x26\xc6\xa1\x89\x64\xfd\x0c\xc9\x3a\xf6\xe6\xd8\x4c\x17\x91\x6c\xc8\xb9\xa6\x33\x8f\x62\x1f\x72\xb9\xb5\xe1\xb5\xe8\x7a\x7c\x0c\x65\x43\x56\x8d\x6e\x6c\x01\x09\x39\x92\xb4\x44\x6d\x21\x3e\x58\x9e\xec\x9b\x0c\x26\x6a\x04\xf1\xc1\xa2\x28\xac\xe4\x5c\xfc\x56\x26\xc5\x9a\x9c\xf0\xc1\xa2\x28\x05\x3d\x64\x91\x92\xa6\x1f\x6c\x41\xd2\xfd\xda\xe1\x92\x36\x82\xf8\x48\x7d\xbc\x9f\xca\xae\x76\x66\x36\x82\x2e\xf3\x23\x79\x53\x71\xa0\x4b\x2f\x4e\x45\x1e\xb4\xf4\xdf\xb1\x57\xd0\x44\x3d\x17\xdb\x53\xcd\xd1\xe1\xbc\x68\x8e\xae\x5d\xb2\x60\x1c\x1a\xba\xe2\x2b\x29\xf2\xc5\xbb\x35\x24\x9a\x65\xeb\xd3\x70\x15\x89\xc4\x8e\xd9\x6d\x6a\x6d\x7e\xa5\xca\x48\xde\xb1\x73\x0e\x95\xf8\x9e\x9f\x1f\x55\xb2\x5a\x6a\x2e\x07\x6d\x0b\xa7\x4c\xea\x01\x89\xa5\xc3\x60\xb7\xe4\xc3\x5a\xa2\x08\x01\x89\x7d\x4f\xdb\x78\x3a\x64\x90\x83\x32\x92\x09\x83\x4c\xda\xf0\xd9\x36\x52\x60\x17\x07\xca\xb4\x94\xd2\x9e\x76\x19\xe3\x18\x98\x4b\x4b\xbb\x24\x03\x52\x49\x6b\x0f\xac\xa3\x7c\xc5\xdf\x12\x26\xfd\xfd\xb5\x13\x58\x29\x9f\xdf\x12\x28\x95\xc4\xc6\x79\xc0\x8d\xd3\xda\x38\xdb\xee\x18\xdd\x0c\xc3\x57\x5a\x5b\xe5\x80\xfb\xa6\xb5\x51\x72\x36\xb0\x24\xc3\x1f\x86\xaf\xd1\xcf\x77\xd9\xf4\x8d\x6c\xdc\x29\xee\xc4\x27\x20\x42\xa3\x3c\xe2\x6c\x22\xb8\x4f\x97\x7f\x49\x51\x26\x69\xb3\x12\x0e\x5f\x27\xed\x2c\x20\x37\x61\xbe\xb0\xbe\x79\x03\x70\xca\x96\x94\x94\xd6\xd0\x48\x13\x5b\x6b\x20\x2a\xa8\x24\xb6\xd0\xa8\x49\x3c\xad\x3d\x54\x8b\x52\x22\x70\x6f\xf8\xb1\x69\x0f\x93\xcd\xba\x96\xed\x0e\xaf\x9c\x20\x25\x2c\xe2\x70\x85\x64\xfc\x03\xd5\xf3\x16\xd0\x7c\x4f\x60\x21\xe8\x5a\x9b\xac\x9b\x78\x22\x88\x4f\x3c\x13\xc4\x87\x1c\x92\x88\xe1\x63\x11\xa7\xb5\xd9\x12\x92\x5b\x12\x76\x7a\xe7\x27\x3b\x27\xb6\x46\xc4\xc9\xb0\x47\x43\x78\x59\x55\xc9\xbc\x92\xac\xf2\xa4\xaa\x2a\xa2\x88\x26\x77\x59\x24\xd5\x56\x56\x7c\x52\x3b\x75\xa2\x0b\xb6\x52\xd6\x57\x2a\x48\x4e\x36\x69\x9e\xa7\xfd\x7e\x91\xea\x61\xf5\xd7\xfd\x86\x36\xb1\xba\x8b\x0c\x76\x4c\x27\xba\x22\x00\x22\x0c\x26\xd2\x1b\x75\x75\xd5\x54\x4d\xb9\xc9\x58\xea\xce\xca\x03\x9c\xf5\x5b\xba\xae\x92\xaa\x2b\xca\x86\x0c\xde\x3d\xfc\x61\xc1\x20\x11\xae\x0d\x53\x73\x4e\x5a\xfb\x65\xc5\xbb\x57\x52\x93\xf2\xa8\xe2\xb9\xdc\xc2\x46\x95\xd4\x4c\xc5\x1b\x41\x06\x3a\x13\x12\x41\x06\x9a\x0f\x12\xa1\xca\xbd\x3a\x18\x43\xbc\xcb\xe1\x03\x7e\x2b\xb8\x40\x22\x62\xc0\x2d\x2b\xad\x0d\x93\xdc\x6c\x25\x75\xa2\xc8\x24\x3b\x7d\xf5\x88\x37\x69\x98\x1b\x47\x12\xd4\x71\x8f\xf0\x95\x06\x4e\x59\x4c\x60\x9c\x3a\xab\xda\x33\x12\x4a\xa5\xaa\x5d\x1a\x08\x5f\xcd\x46\x11\xbe\xc4\xe2\x40\xa4\x10\xea\xa1\x74\x03\x82\x86\xfc\x84\x09\x1b\xc2\x4c\xd9\x74\x1e\x05\x31\x39\x9d\x1e\x3d\x0b\xfe\xa2\x3e\x63\x19\x2f\x40\xb5\xd2\x4e\x1a\x02\xa8\xa7\x2e\x01\x7f\xe8\xc6\xfd\x01\xc7\xb9\x63\x26\x01\xd6\x03\xce\x1a\x73\xd2\x4e\xf5\x20\x5b\x3c\xb1\x53\x4a\x77\x98\xca\x87\x4c\xc8\xdc\x61\xc5\x99\xbe\xb6\x28\xc1\xe7\x17\xd6\xbe\xf6\xa5\x52\x9a\x50\x5f\x63\x16\xbd\x57\xdd\xb9\xdd\x4a\xba\x0c\x07\x04\xfc\xb5\x41\x37\xa7\xfe\x36\x65\x0f\xdb\x4d\xd2\xc9\x9f\xec\xfe\xc6\xbf\x26\x45\xb9\xfb\x6a\x26\x4f\x04\x19\xda\x3e\xce\x7c\x99\x03\x3a\xa8\xf4\xbd\x54\xd0\x8d\x8f\x7b\x1f\xf5\xb4\xc5\xc5\xc6\x24\x4b\x2d\xd8\xdd\xc9\x7b\xb6\x7c\xe2\x2f\x4e\x86\x6b\xf8\x31\x65\x23\x18\x78\x5c\x28\x4c\x0c\x3e\x7b\x7d\x16\xe9\xd9\xc2\x8a\x3f\xec\x98\x5f\xfa\xc3\x6b\x6f\x90\x56\x49\xea\xa0\xf2\xba\x47\x4a\xe0\x73\x37\x5f\x85\xc8\x34\xb7\xbd\x93\x2f\x96\x82\x59\x08\x03\x2e\x69\xa6\x9d\x0e\xaf\xa4\xb5\x27\x93\x80\xb9\xa4\x59\x3e\x3f\xba\x0b\x62\xed\xce\xdd\xb1\xcd\xa5\x29\x4a\x27\x6b\x9f\xd6\xd3\x94\xe6\xb9\x2a\xd8\xf0\xb5\x8a\x36\xb6\xe8\x56\x56\xbb\xb4\x56\x4d\x1c\x69\xb2\xac\x05\x8f\x65\x4d\x5d\xc2\x20\xb1\x4e\xa5\xb5\x9d\x2b\x70\x72\x6e\xb2\xcb\x0d\xd6\xbe\x4e\xb4\x59\x49\x2f\x90\x81\xdd\xd7\xd3\x4d\x62\xf7\xf5\x9c\x9d\x0b\x77\xed\xea\xba\x1c\x13\xc1\x8d\xee\x9d\x6b\xfb\xee\xae\x66\xf5\x59\x95\x67\xce\x64\x0e\x10\x9b\x97\x36\x3b\x68\x30\x1f\x79\x15\x0f\x8a\x4b\xf1\x64\xcf\xc9\x46\xec\x0f\x6b\xac\x5d\x1f\xd4\xe5\xb5\xeb\x73\x90\xbf\xe4\xa5\xec\x8e\x68\xe5\x25\xc0\xc0\x02\xf2\x52\x75\x07\x76\x89\xbc\xa4\x82\x01\x69\x65\x94\xde\xe4\xdb\x77\x55\xa0\xdd\xc0\xae\x0b\x68\x4b\x22\x18\xcc\x60\x5e\x02\xc1\x48\xbe\x95\xd1\x08\x51\x30\xc2\x02\x01\x28\x73\x42\x71\x6f\xf0\x99\xb0\x46\xbd\xd9\x39\x20\x96\xb0\x7d\xe5\xe0\x59\xa9\xe6\xc3\x05\x61\x58\xe9\xa6\x12\xc3\x40\x95\x96\xc9\x65\x4e\x4d\x91\x4d\xa6\x64\x54\x69\xfd\xf7\x59\x53\x35\x0b\x86\xb4\xb4\xa1\x76\x7b\x8e\xc6\x48\x38\x86\x25\x16\x54\x8d\x6e\x9c\x6b\xad\x71\x7f\x81\x97\x61\x58\x87\x08\xbc\xfd\xb1\x60\x5b\xc6\x7e\x0d\x11\xe4\x25\x44\xd4\x78\xf8\x1e\xa8\x59\x7c\x19\x81\x22\xec\xf6\x85\xda\xf6\x31\xbb\x30\xf5\x99\x98\xcb\xaa\xff\x34\x73\x5a\xc0\x50\x80\x8c\xb5\xdb\x30\x82\xec\xb9\x6e\xce\x1f\x96\x9c\xf4\x03\x80\xa3\xe4\x31\x26\x08\x2a\x2f\xd9\xa2\x72\x28\xbb\x64\xd4\xf3\x10\xbe\xe4\x5d\x39\x39\x0e\x3f\x12\xe3\xf6\x02\xec\x4e\x11\x82\x87\x41\x06\x39\x89\x71\xcb\xaa\xd3\x28\xfb\xe6\x19\x34\x9c\x23\x67\x4d\x46\x34\x8a\x48\x62\xc8\x44\xce\x82\x0e\xb4\x1e\x26\x10\x09\xd9\xac\xd0\x20\x0a\xa1\x44\xc3\x5a\x26\x1e\xd3\x10\x0b\x53\x17\x1a\x16\x92\xf3\x3e\x03\x64\xa5\x5b\xa5\x1e\xb0\xb3\xb9\xde\x92\x0f\xc2\x2a\x18\x9c\x00\x10\x9d\x85\x79\x67\xdd\xe7\x4a\xa8\x1b\x3b\x57\x26\xea\x31\xb3\x5b\x65\xce\x99\x26\x29\x0b\x41\x22\x23\xa3\x93\x27\xb1\xe6\xe2\xb7\xd8\x49\xec\xab\x62\xba\x80\xb9\x66\xcc\xdb\x39\xfb\xbe\x9b\x6a\x9b\xb2\x27\x47\x9b\x0d\x9d\xda\x3c\x81\xc8\xd8\x48\x97\x0d\x92\x47\xce\xf6\xa0\xe4\x81\x98\x90\x97\xb8\xb1\x4d\xe2\xb9\xa1\xcb\x49\x10\xcd\xa3\x1b\xd4\x41\x0e\x91\x79\x99\xc5\x51\x2f\x76\x26\x4e\x32\xdb\x8e\x71\x92\x2e\x4b\x0d\xe4\xec\x4b\x59\x03\x39\xac\x3b\x6b\x20\x17\xc1\x8d\x68\x3d\x17\xb8\xb1\x91\x5d\x18\x08\xe2\xdc\x30\x60\x92\x13\xd5\x0d\x2b\x6b\xb2\x0c\xcc\xf2\x09\x0e\x4c\xa8\x38\x64\xc3\x1f\xe5\x35\x86\x3f\xca\xdb\xd0\xfe\xdd\xe5\xb3\x67\xb3\xb4\xab\x66\x63\x1e\x11\xec\x32\x46\xf7\x2c\x07\xe4\xf0\x44\x96\x53\x19\xda\xe8\xba\xe5\x7c\x7f\x12\x11\x9c\x98\xc8\xd9\xf2\xf4\x9c\x0b\x65\xd7\x9e\x13\x8e\x15\x21\xb1\xf7\x72\x60\x7d\x7b\x59\x33\x56\x7a\x0e\xc4\x96\x9d\xe3\xb2\x3b\x1c\x2d\x0a\x87\x9c\x91\x24\x4a\x9a\x64\x4d\x7e\xa9\x42\x98\x87\xe2\xa5\xb4\x86\x54\x95\x9d\x71\x24\xa9\x24\x3f\xc0\x52\x5f\xa3\x03\x1a\xa6\x14\x96\xd7\x9d\x4e\x33\xa3\xe6\x50\x45\x63\x63\xce\x9e\xaa\x70\xca\xcf\x0d\x14\x7d\x9f\xca\x9b\xd2\xf3\x49\x70\xa0\x04\x80\x2c\xa5\x1f\x30\x9b\xc2\x17\x65\x39\x6b\x77\xd8\xf5\x87\x27\x25\x28\x23\xe9\x61\x3b\xc9\xa7\x27\x28\xfc\x16\x33\x9b\x44\x78\x7a\xc4\x81\xf1\x2c\x31\xaa\xaa\xd7\x99\xe3\x53\x25\x84\x73\xfc\xd5\x1d\x32\x5f\x66\xf8\x04\x6a\x9c\x01\x39\xb8\xa8\x70\x06\xe8\x69\xc9\x1e\xc6\xec\x22\xff\x42\x3e\x95\x24\x2f\xe4\x53\x51\x6c\xf2\xb3\xfc\x55\xf6\x91\x92\x4d\x8b\xd7\x25\x2e\x23\x33\x9b\xad\x39\x26\x5b\x43\xfe\x76\xea\x8d\xd2\x2c\xd6\x67\x4c\x2e\x0e\x03\x36\x51\x43\x4c\x3a\x60\x48\xd4\xce\x5a\x2a\xfb\x56\x96\xc3\xb4\x9e\x3d\x2c\x22\x11\x18\xb0\x29\x9b\xd4\x8e\x82\x2b\xc5\x24\xa7\x5a\xd3\xb3\x36\x15\xd1\x71\xeb\x02\x15\xf9\xb7\x96\x6f\xa1\x33\x54\xa1\xef\x6a\xa8\x5e\x92\xd3\xfd\x32\x34\x50\x6e\x64\x66\x77\x4d\x18\x76\xe9\x82\xf5\x18\x7b\x53\x1a\x78\x1c\x1c\x3f\x4c\x33\x02\xf3\xc1\x24\x0c\xce\xc9\x9e\x9a\x1c\xe9\x61\x6a\xb3\x95\x83\x22\x90\x45\xb9\xdd\x24\x26\xce\x51\x4f\xec\xa5\x52\xd6\x24\xd2\x4c\x3e\x36\x89\x89\x13\xec\x49\x4c\x9c\xa3\x9e\xa8\xdf\x52\xdc\x24\x76\xcf\xe1\x4c\xf4\x09\x29\xc8\x10\x4c\x67\x6a\x7a\x62\x47\x46\xf9\x62\x1c\x95\xa4\x5f\xfc\x58\x4e\x1b\x32\x59\x94\xd7\x19\x44\xe9\xf4\xbc\x74\x20\xea\x5f\x4c\xb3\xbb\x4c\x67\x68\xaa\xf9\x25\xce\x0e\xf2\x2e\x07\x98\xa0\xfd\x62\x42\x0c\x83\xb6\xc8\xd0\xd0\x48\x81\x51\x48\xd0\xd0\x48\xae\x51\x0a\x31\x97\x1c\x23\x2e\xc5\x98\xcb\xe2\x7b\x2e\xed\x40\xa7\x29\x07\x0e\xa5\x6c\x19\x4c\xb0\x1e\x0a\x9e\x08\x32\xbf\x15\x52\x3b\x34\xb2\x6a\x14\x72\xe6\x37\x57\x40\x31\x80\x80\xfc\x51\xa5\x68\xb6\x29\x36\x84\x70\x8d\x6e\x43\x66\xfd\x18\x04\x22\x80\xa1\xec\x7b\xe7\xd2\xf7\x1e\x50\x07\x45\xc5\x38\x4c\x47\x63\xbc\x65\xf2\x03\x93\x4d\x25\x7f\x00\x3c\x58\x68\x09\x9e\xf7\x67\x66\xcb\x16\xa8\xfc\x24\x7a\x76\xdf\x11\x2d\x29\xca\xbc\x3f\x85\x5c\x13\x31\xb0\x7a\x4a\xdc\xed\x02\x49\xc4\x01\x03\x0b\x29\x51\x75\x6d\x37\x75\x73\x53\x8c\x95\xb0\xc5\x0c\x5b\x9d\xbc\xf7\x83\x97\x32\x73\x42\x50\xa4\xdc\xa1\x2c\xd1\x29\x72\x08\xb0\x94\x44\x98\x1b\x1b\x0a\x79\x2d\xa2\xe6\x2a\xae\x0f\x68\x72\xd3\x42\x7c\x24\xe9\x92\x0b\xe9\x2e\x9a\xeb\xb6\x24\xa0\x76\x4e\x96\x40\x15\x75\x42\x97\x44\x6c\x1e\x1b\x1f\x19\x31\xcc\xaf\x5b\xb8\x87\xa0\xa9\x29\x93\x55\x38\x71\x26\xaa\x98\x1b\xa3\xa9\xd6\x14\x63\x2b\xd9\x98\x0a\x69\xde\x35\xdd\x14\x63\x2b\xd9\x41\x4b\x26\x06\xef\x6b\x63\x5a\x31\xee\xc0\x5e\x32\x01\x7a\x42\x82\xf3\xa4\x96\xe2\x0f\xb8\xd1\x60\x20\x65\x67\xaf\xed\x76\x83\xb3\x80\xbd\xb0\x18\x86\x39\xfc\x00\x7c\x37\xcb\x38\x08\x76\x7d\xf1\x4d\x0f\x85\x61\xc0\x4b\x8b\x61\x98\xec\x33\x24\xf8\x68\xee\x03\xe6\x4f\xee\x32\x59\x92\x7d\x44\x8e\xe4\x15\xee\x55\x88\x1c\x85\x2c\x5c\xab\x10\x35\xf6\x90\xf6\x23\x1a\xb4\xea\x05\x09\x55\xab\x27\x17\x24\x44\xce\x81\x16\xee\x47\x88\x72\x4a\x52\x83\x44\x8e\x32\x97\x62\x88\x25\x2c\x90\xfb\x10\xa2\x06\x7a\xae\x43\x88\x06\x1e\x70\x1b\x82\xe7\xcd\x0b\x97\x21\xc4\xe2\x88\x95\xcc\x38\x22\x5b\x8a\x3e\x14\x67\x88\x0b\x0f\xca\x66\x02\xe6\x8f\x48\x22\xa0\x99\xa2\x52\x6a\xda\x2e\x12\xd9\x43\xc3\x52\x21\xb9\xea\x16\xd9\xfc\xa1\x69\xa4\xa6\xf7\xe6\x4d\x16\xb6\xbb\xd4\xd0\xbc\x9b\x85\x6e\x9c\xac\x25\x3c\xf5\x2c\xe4\x86\x53\xba\xc4\x3b\xd6\x58\x49\x05\x37\x8a\x01\x6e\x05\x37\xca\x21\xed\x2e\x41\x2a\xe9\xf6\x2e\x5d\x75\x54\x86\xb2\x84\xa7\xa4\x6f\xa6\x74\x02\x4e\x87\x95\xf0\x22\x09\xb5\xd7\x33\x34\xcb\x00\x2d\x5a\x89\xb8\xcc\xce\x21\x01\x0e\xc7\xfe\x76\xf2\xde\x36\x89\x10\x71\xaa\xf4\xcc\x6c\xce\x37\xb4\x21\x33\x7a\x02\x2c\xb3\x2b\x74\x10\xdc\xe8\x3c\x70\x91\x83\xc6\x38\x6e\x72\xe8\xd9\x15\x67\x80\xa5\x2b\xcb\x00\x4b\xa7\xc7\x00\x4b\x57\xf7\x10\xa3\x00\x34\x70\x01\xa0\x47\x96\xf1\x52\x87\xfa\x4b\x86\xea\x59\xee\x71\x62\xc7\xb6\x1d\x03\x2c\x5d\x09\x58\xa3\xb2\xc4\xc9\xd1\x54\x45\x5c\x72\xc5\xf4\x2c\xb7\x39\x41\x62\xf5\x3d\x48\x74\x85\x9c\xda\x42\x8a\x3f\x88\x45\x80\x3b\xc1\xa2\x8b\x93\xa0\xcd\x63\x7f\x40\xf4\xa7\xd3\x7d\xca\x32\xa8\x73\x19\x6e\x28\x4f\xba\xf0\xa1\x0b\xc5\xc5\x7c\xbb\x1f\x5c\xce\xb7\x75\x76\x0e\x71\x7a\xbb\x00\xdb\x65\xb1\x25\x20\xbb\xbe\x0c\x10\x91\xad\x12\xac\xa9\x07\xdb\xfb\x2f\x8a\xe6\x88\x62\x50\xa6\x98\xb9\x89\x18\xb5\xef\xdb\x34\x9b\x32\x44\x22\x34\xd5\xeb\xca\xcd\x59\x50\x21\x37\x5a\x53\x3a\x32\x2a\x53\xe2\x27\x2a\x53\x1d\xaf\x2c\x61\x27\x95\xf2\x35\x7f\x33\x64\x53\x10\x0d\xd9\x74\xae\x49\xda\xbf\xb9\xeb\x6d\xa4\x8d\x9d\x13\x5a\xea\x36\x75\x3b\x0a\xea\x3f\x8e\x02\x40\x08\xde\x54\x42\x26\xbb\xb9\xd9\x5b\x4b\x79\x12\xef\x01\xfc\x71\x10\x00\xfb\x14\xca\xc0\xf0\x10\xdc\x25\x9d\x78\x88\xa5\xdb\x99\x16\x31\x0e\x6b\x97\xf2\x0c\x20\xb2\x7c\x32\x54\x5b\x72\x04\xbe\x27\x72\x57\xee\x46\x84\xe7\x26\x08\x42\x32\x7a\x75\x0b\xdd\x1e\x2b\xba\x9b\x80\x2d\xee\xa7\x60\xf3\x01\x71\x9c\x9b\xd3\xeb\xaf\x42\x2c\x2b\x4b\xfc\x8a\x62\x6e\x49\x5f\xa9\xb8\x5f\xe3\xc6\xda\x84\x68\xea\xaa\x21\x8a\xa6\x29\x97\x1c\xf3\xa4\x63\x85\x08\x8e\xba\x98\xb0\xa1\x98\xda\xdd\x83\xff\x85\xd4\xee\x43\x75\xbe\xbc\xa6\x5a\x91\xe5\xbe\xc4\xbb\x8a\xa6\x97\x78\x52\x51\xfc\xe2\x43\x13\x01\x2f\x31\xa4\xf2\x15\xb3\x0f\x0f\x19\xd4\x8b\xa1\xd6\xb5\xfe\x6a\xa8\xf5\x3d\x01\xa5\xce\xf9\x4b\x40\x29\x04\x57\xb9\x6b\x68\x30\xb7\x15\x83\x99\xbb\x7a\x3d\xb8\xe0\x09\x46\x57\x31\x99\xb9\xc3\x7b\x0f\x8b\x39\x2a\x0a\x59\x9a\x12\xe9\x3f\x4a\x5d\xa2\x59\x32\x58\x90\x0c\xf4\x89\x8c\xc1\xa5\x1e\x02\x64\x99\x8e\x61\xb7\x95\x3b\x8c\x8c\x5a\xa9\x44\x6d\x56\x0f\x5f\xd4\x60\xcf\x74\x10\x08\x6b\x85\xa3\x55\x6e\x3a\xd2\x8a\x43\x12\xa8\xa1\xf5\xbc\x06\x81\xf0\x5b\xd0\xd5\xad\x7f\x51\x66\x34\x41\x20\xac\x43\x44\x70\xf7\xdb\xa9\xc9\xcc\x4a\x04\x2c\x33\x9f\x15\x13\x58\xe5\xa6\xa8\x52\xbd\x43\x84\x43\xfb\xa5\x46\xad\x49\xb6\x65\x56\x3d\x8e\xa4\x16\xd3\xe6\x17\x12\x93\x94\x1a\x09\x54\x86\xc7\xd5\x48\x74\xad\xa3\x88\xc6\xb4\x8a\x27\x4c\x5c\x87\xdc\xdb\x44\xfb\xc5\x10\xe6\xba\x04\xb5\xac\x93\xa5\x26\x2d\xe9\x54\x4a\xc6\xcd\xda\x47\x22\x6e\x56\xe0\x49\xd6\x73\x68\x5b\xa8\x4b\x0c\xcb\xea\xd3\xd5\x4c\x39\x1e\xe7\xa8\x9e\x26\x76\x7f\x21\x7f\x7f\xf6\x04\x40\x4d\x1b\x2c\xa6\x23\x11\x01\xec\x0c\x78\x84\x58\x46\x6f\x92\xff\xc3\x2d\xaf\x2e\xb9\x2c\x6b\xde\xe6\xf2\x9d\xf5\x03\xf0\x66\x5d\xb7\xd2\x14\x06\xac\x63\xc3\x82\x05\x6b\x87\x2a\xd5\x2c\x9b\xf5\x07\x23\x93\xbb\x3f\x08\xa4\xf4\x86\xc8\x75\xa4\x2f\x13\x79\x94\x9a\x1d\x82\x13\x6e\x3c\xa8\xe6\x92\xaa\x59\xcb\xc3\x55\x5c\x3a\x90\xb5\xdf\xd4\xac\x09\x43\x14\x78\x7f\xdd\xfe\xa4\x78\xf7\x04\x6b\xaa\x2e\x49\x2c\x6b\x0a\xaa\xc5\xdc\xe7\x98\x40\xeb\x92\xbe\xb2\xb6\x8a\x5a\x36\xd4\x34\x5c\x06\x0e\x6b\x2b\x6d\xd4\x5a\x6b\xdf\x35\xc1\xd8\x8a\x01\x64\xd8\x40\x2a\x91\x2b\x41\x2f\xb4\xf7\x1f\xec\x90\xe8\x5a\x09\x63\x96\x94\xea\x36\x5f\xf2\x7d\x25\x8c\xb9\x5a\x26\x52\x19\x1d\xa1\x56\x0d\x82\x98\x4e\x6b\x25\x52\xb9\xda\x12\x60\x55\xdf\x13\x95\x88\x36\x54\x97\x9c\x96\x55\xa5\x6b\xbd\x79\x6f\xf9\xb1\x21\x10\x57\x77\xb8\x9b\xbf\xbc\xd4\x02\xd8\xb6\x21\x07\xf1\x8d\x08\x92\x6a\x59\xe3\x25\x6c\xbd\xb6\x6d\xbd\x64\x18\x0d\xca\x75\x86\xdb\x22\xd6\xbd\x96\x9b\x31\xd6\xae\xb4\x26\xe4\x74\xde\x44\xa8\x1f\x6f\xdb\x9f\x0f\x1a\x33\x8b\x5f\xe8\x83\x3e\xfc\x05\x78\x8b\x34\xc9\x41\xe2\xa0\x58\x4a\x3a\xb8\xe2\x21\x13\xef\x93\x08\x0a\xb2\xb5\x1b\x8a\x2d\x4d\x72\x96\x38\xe8\x4f\xaa\x7d\x47\x1d\xd0\x32\x59\x49\x3c\x9c\x53\xbb\x61\xd9\x52\x6e\xe7\x02\x42\x99\xc6\x4e\x5e\x2f\xb2\x3d\x43\xac\x1f\xb6\x76\x93\x1f\x67\x3f\x99\x44\x30\xd8\x2e\xe1\xe2\x4e\xfa\x10\x46\x80\x1f\x1e\xda\x75\x7e\x86\x60\xb9\xba\x06\xf9\x51\x9c\x1f\x8c\x65\xf1\xdb\x27\xdd\x68\x6f\xda\x25\x12\x27\x7e\x6b\xf8\xf4\xc1\x6f\x6e\x1f\x00\x92\x33\xc3\x71\x83\x3f\x3c\x3f\x87\x86\x5c\x49\x54\x92\xab\x44\x64\x70\x4e\x74\x2e\x4c\xaa\xef\xa1\x36\x6e\xe0\x28\x59\x54\x9e\x78\xe7\xe5\x14\x58\xc3\xa2\x21\x71\x15\x73\x58\xe4\xc4\x7a\xf1\x66\x8e\x98\xa5\x54\xd2\xc8\x45\xc3\x6c\x49\xcc\x57\x94\x08\xaa\x16\x31\x63\x62\xbd\xb2\xa3\xe9\x7e\xac\xd8\xc1\xa2\x06\xb5\x8a\x1d\x2c\x6a\x8d\xab\x4b\xa2\x2b\x75\xff\x50\xfc\x81\x2e\xf1\x30\x72\xab\x41\xa9\x57\xa3\x0c\x2a\xf6\x85\x1f\xfb\x87\x9b\x1f\xfc\xc0\x74\xa0\xce\xdd\x12\xe8\x8a\xa1\x1f\x5c\x04\x52\x8c\x02\xaa\x4b\x9e\x2b\xfa\xe2\xbd\x13\x24\x91\x6a\xa7\x78\x0d\x48\x0a\x32\x7f\x6f\xab\x0c\x72\xec\x25\xd2\x99\xdd\xaf\xd4\x25\xd2\x15\x43\x68\x2a\x57\x57\x1a\x60\x51\xb1\x65\x25\x6d\xde\xf5\x26\xec\xbe\x7d\x79\x6a\xa1\x62\xe7\x4a\xda\xab\xeb\x43\xba\x2a\x71\x4f\x1c\x6c\xd2\x3a\xee\x65\x23\xa9\xa0\x3b\x7a\xd9\x48\xf7\x50\x5a\x7d\xda\xb7\xfb\xb3\x4a\x5d\x12\x58\xdf\x75\x70\xb9\x01\x17\x32\xd7\x6e\x06\x5f\x97\xcd\x1b\x62\xc2\xe8\x38\x51\x23\x6e\xcc\xb1\x22\x29\x10\x03\xbb\x8f\xf5\x55\x62\x60\x8d\x9a\xe4\xe6\x92\x1d\xc9\x59\xa7\x4e\x0c\xdf\xe3\xb8\x10\x4b\x24\x5c\x09\xbb\x8e\x3c\x5d\xde\x3b\x49\xe4\x23\xca\xe6\xe6\xe9\x40\x84\xf4\xe5\xa9\xd7\xaa\xf0\x65\x7c\x3e\x69\x1b\x6b\x76\xad\xbc\x64\x32\x70\x41\xbc\x3b\x4d\x12\x65\x93\xa0\x29\xea\x98\x70\xbc\x49\x9c\xaf\xe6\xcc\x55\x6e\x87\xee\x58\xa6\xa8\x71\x3e\x58\xf7\x28\x57\xa9\x44\xdd\xce\xcd\x3b\x35\x83\xef\x31\xda\x80\x8e\xc6\x69\x60\x52\x82\x95\x76\xa8\x1e\x0e\xca\x68\x60\xac\xa4\xb6\xe4\x9e\xa1\x27\xaf\x05\x45\x0c\xdc\x90\x6d\x09\x3e\x66\x74\x2a\x24\x9b\xcc\x86\x34\xb4\xb0\x37\x1c\x5a\xda\x7e\x40\xf6\xab\xb6\x0f\xa7\xec\xcf\xb5\x86\x16\xbf\x99\x06\x9e\x26\x1e\xd6\x3c\x62\xf4\x6d\x91\x98\x5d\xd6\x67\x8b\x4b\x07\x61\x7d\xb4\x25\xd1\x0c\x8c\x8d\x2d\x1a\x35\xc1\xf0\x97\x3c\x63\x58\x25\x17\xbc\x90\x1b\xb7\x34\xd3\x7b\x0d\x6b\x2f\x09\x90\x15\xca\xad\x2f\xdc\x6b\x51\xbc\xf3\xa5\xec\x2a\x4b\xc4\x19\xd0\x6e\x4b\x24\x79\x71\x20\xba\xd7\x84\x0a\xa1\xa4\x0f\x41\x47\x28\x21\x9f\x73\x69\xd8\x8a\xba\x31\x0b\x5e\x11\xe3\x49\xef\xa6\x4f\x8d\x7d\xa5\x65\xb3\xa8\xc2\xb2\xf7\xd5\x31\x9a\xa6\xda\x4e\xd1\x65\x59\xb5\x1f\x81\xaa\x61\x11\xd2\x49\xd6\x08\xa7\x35\xf2\xb5\xe9\x56\xdb\xcd\x5e\xbc\xb7\x0e\x1e\xd7\xdd\x35\x9b\xe8\xae\x2f\xac\xc0\x8d\xf0\xe1\xe1\x81\x86\xec\x41\x06\xfc\xd2\x08\x03\xf2\xa4\x73\x23\xfb\x89\xae\x8d\xe6\x2d\xba\x49\x02\x31\xa9\x9f\xfa\x7d\x33\xf1\x29\xa7\xf7\x4b\xf3\x7e\x02\x43\x7b\xda\xbe\xf3\x12\xf8\xc8\x44\xe2\x91\x81\xf6\xed\x92\x4b\xca\xfb\x5a\x4b\xca\x4d\x1f\x1b\xc8\xac\x38\x5c\xa4\xf2\x7d\xa9\x25\xc8\xd8\x77\x5a\x02\xb8\xae\xb7\x62\x1d\x1c\x45\xc5\x0e\xf0\x5c\xb1\x95\x34\xbc\x6d\x99\xdd\xab\x71\xc5\x9d\x67\x0e\x1a\xde\x36\xee\x4e\x28\xad\xe1\x0c\xac\x5f\xa5\xab\x2c\x8d\xd4\x24\x9e\x22\x68\xcd\x3b\x38\x19\x76\xdb\xd6\x79\x1f\x80\xaa\x5a\xde\xf7\x86\x52\xf6\x76\x3f\x7b\x37\x67\x34\x4c\xac\x21\x1e\xe4\x2e\xec\x24\x1a\xf1\x7c\x41\x43\x22\x50\xce\x69\xdd\x4b\x33\xc1\x4d\xf7\x5a\x2d\x31\xe8\xd5\x34\x86\x43\xb6\xae\x6b\x84\xfe\xc8\x3b\x66\x68\x42\xeb\x7b\xb9\x31\x5c\x0e\xb5\x18\x04\xd1\xc6\xbe\xb0\x00\x68\xf5\x91\x21\xeb\xb7\x61\x9a\x2c\xcb\x85\x83\x53\xb4\xe4\xf1\x15\xe1\xc0\x29\x66\x94\x46\x23\xd4\xc8\x20\x8b\x46\x8e\x10\x23\x3d\x1a\xe1\xb6\x86\x6f\x34\x8f\xb5\x18\x15\xd1\xd6\x86\x5f\x0d\xba\xf0\x3a\x24\x85\xcc\x66\x86\x5c\xa3\x8e\xdb\x29\xc7\xa6\x37\x9d\x65\x6c\x12\xed\x24\xf2\xdc\xb5\x89\xab\xcc\x48\x8f\x66\xb6\xd2\xb6\x1f\xcc\x97\x85\xd8\xd5\xf6\xa5\x96\x94\xd9\xab\xc7\x5e\x9c\x97\x69\x9a\x5d\xf3\x17\x6e\x37\x59\xe8\x85\x11\xdc\xfe\x2e\x4c\xff\x02\xb8\xf6\xea\x16\xc5\xd2\x85\x6d\x5d\xb2\xc6\x2d\x55\x72\xb7\x21\x32\x03\x38\x11\x5c\x6b\x18\x9d\x46\x33\x72\xba\x8d\x34\xee\x35\x8c\x8e\xee\xc6\xde\xcf\xfe\xd0\x6e\x3c\x22\xfb\x3d\x29\x0c\xec\xcd\x3b\x59\x8c\xe6\x6e\x37\xe0\xb9\x40\x6e\x6c\xff\xa8\x18\x6d\x5f\xbf\xe7\xe0\x3c\xde\xe2\xa8\x6f\x41\xb2\x55\xb1\xe1\x07\x44\x41\x3b\xbb\x9c\x68\x89\xd6\x7f\xf0\x3a\x20\x76\xb5\x07\x47\x83\xf5\x1f\x5c\x25\xd5\x3a\xde\xbf\x84\x3c\xd8\x9e\x9b\x70\x6a\x3a\xd8\x89\xba\x5d\x83\x1e\x7d\xdd\x1c\x8c\x68\xa2\x2a\x93\x5c\xfb\x74\xf4\x80\x4a\x9b\x44\xff\xed\xf7\xd8\x83\x9d\xde\x99\x78\x4f\x43\x13\x7b\xb0\xcb\x8c\x84\x69\xdd\xdd\xcb\xcb\xc6\x94\xb6\x1b\xce\xab\xbe\x1b\x25\x20\x52\x16\x49\xf0\x50\x77\x1b\x9c\x84\xa6\x4a\xdd\x84\x0f\x29\x5a\xb4\xb9\x73\x9f\x83\x8c\x97\xd0\x44\x79\x21\x0e\x2b\x03\xd5\xb8\x6b\x6b\xe7\xea\x68\x38\xac\x36\xa9\x93\x26\x64\x53\x34\x11\x45\x1e\x63\x6a\x6f\xe5\xbd\x6d\x62\x32\xdf\x6d\x76\xde\x5b\x87\x3d\xda\x49\xc3\xf1\x45\x56\xc6\xc2\xed\x5d\xcd\xe0\xa6\xf6\x3a\x00\xfb\x72\x00\x0c\x6c\xc7\x1d\xf1\x31\xc9\x95\x9b\xeb\xad\x1f\x02\x1d\x29\x73\xe3\x65\xfc\xf2\x64\x7d\x3f\x8c\x03\x1a\xb6\xc0\x90\x58\xb0\xfd\xc0\x0b\x10\x2c\xe3\x05\x60\x67\xee\x88\x1d\x9a\x1f\xfb\xe1\x90\x2a\x65\x5c\x64\x50\x74\x3f\x18\x12\xa0\x93\xf1\xd9\xcc\x7d\xa5\xe3\x22\x53\xf4\xec\x07\x43\xda\xa3\x70\x4e\xa8\x13\x9c\x06\xfa\xe2\xd2\x9d\x22\xfe\x3a\xb9\x46\x8d\x17\xeb\x78\xbc\x86\x9b\x18\x17\x9b\x75\x8f\x08\xf4\x25\x82\xf4\x0c\x35\xf4\x80\x90\xb3\x5b\x7a\xb8\x77\xd8\x3a\xd8\xc0\x21\xb1\xee\xa9\x1e\x9d\x39\x5c\x8a\x96\xb4\x06\xf6\x18\x28\xd3\x90\x66\x18\x25\xb5\x1e\x13\x5f\x33\x4e\xef\xbb\xde\x1f\x4b\x02\x8c\x39\x6e\x02\x05\xee\xd8\xf8\x21\x53\xee\x94\x7d\x2f\xd8\x36\x8a\x01\x7a\xd7\x17\x6c\x1b\xc2\xdf\xe0\x84\x44\xc0\x8e\x76\x8c\xa5\x1c\xce\xd0\x93\x0b\x97\xa1\x25\x80\x93\x04\xbc\x76\x1b\x5a\xea\x5c\x2f\x5e\xfd\x36\x61\x1d\x87\xb6\xc9\xc0\xdd\xb3\x93\x99\x80\xcd\x09\x49\xc0\x26\xde\xbd\x0a\xcf\x03\x12\x3d\x81\xdf\x5d\xc6\x9c\xeb\x88\x13\x0e\x10\x67\xd6\x7b\x4c\xd5\x8d\xba\xf9\xc7\x8d\x68\xee\xd9\x8b\xa5\xd8\x7e\x7a\x16\x17\x8c\x8d\x93\xb6\xc6\x59\xf5\x8c\x1d\x16\xfe\xd9\x33\x59\x0a\x60\xca\x3d\x63\x87\x85\xf9\xf6\x6c\xd7\xbe\xe7\xd4\x97\xf8\x5d\x72\xce\x50\x27\xef\x45\x33\xac\x65\xf2\x7c\x56\xcb\x9c\xf1\x90\x68\x0b\x47\x08\x04\xae\x14\xda\xb1\x8c\x39\x1c\xe6\xd9\x0b\x36\x59\x78\x44\x2f\xc2\xe9\xb7\xc2\xc9\x58\x96\x54\x34\x8c\x25\xeb\x64\x73\xeb\x6d\x7f\x2c\xa0\x00\x5d\x30\x79\x17\x2b\xe9\x68\x74\xb9\x54\xa1\xe3\x87\x0a\x74\x12\x6d\x55\x1a\xf7\xbd\xd0\x81\x95\xaa\x81\xde\xf2\x50\x57\xf0\x01\x74\xc1\xc3\xfb\x4e\x39\xe2\x2c\x54\x8e\xf6\x54\xcb\xe0\xc8\xe5\xc2\xc9\x5c\x35\x9e\x6e\xe6\x36\xcd\x72\xbd\x19\x43\x80\x4b\xb9\x37\x6c\xb2\xc3\x5a\x05\xe1\xdf\xaf\x49\x46\x20\x85\x61\x34\x39\x84\x89\x43\x45\x3a\x4e\xfb\x12\x8f\x86\xdc\xb0\x37\x2c\xa3\xec\x1e\x7d\x89\x47\x59\xf7\x46\x5f\xe2\xd1\x3e\x0b\xd8\x1b\x66\x5b\x0c\x21\x9d\x63\xbd\xda\xf6\x7a\xc7\x5e\x8c\x4d\xa4\x77\xac\xb6\xe3\x4b\xe5\xb4\x2f\x29\xca\xdb\x2c\x4a\xef\x02\xce\xe8\x3a\x80\x77\xcb\x18\x4f\x87\x75\x38\x96\x39\xec\x44\x0b\xb8\xef\x4f\xbe\x05\x7d\x9d\x13\x25\x98\x6d\x7a\x9f\x94\x7d\xff\x32\x50\xde\x0f\x8e\x1e\x60\x1d\xec\x03\xc0\x5d\xaa\xc3\x44\xd3\x8e\x74\x08\x9c\x3f\x64\x3e\x06\xc3\xc3\xcb\x70\x85\x74\x00\x11\x46\xe6\x3e\xb4\xf2\xa0\xe8\xf4\x9d\xf4\xd5\x49\x19\x9c\x1a\x15\x39\xc3\x44\x87\xbb\x2d\x0c\x90\xfb\x73\x6c\xa8\x02\x85\x04\x76\x28\x57\x77\x44\xb0\x43\xb1\xb5\x23\x76\x1d\x4a\xdf\x9d\x3b\xbe\x0e\x65\xf7\x7e\x62\xe8\x75\xe0\x1e\x40\xde\x24\x78\x9a\x9f\xc0\x2f\xb0\xf3\x0a\xd5\xbe\xc2\x4a\x74\x7a\x50\x6a\xf3\x50\x4f\x4a\xa9\x07\x90\xc4\x3f\x6b\xb2\xec\xa7\xd9\x18\x45\x8a\x9e\x35\x43\x3c\xfa\xb5\x81\xa4\xfb\x0b\x23\xa9\xf3\x87\xc1\xa5\x67\x27\xe1\x32\x49\x8f\x0b\xfd\x32\x0e\xd1\x4d\xe2\xf2\x3e\x7c\xd9\xc1\xa5\x6e\x9a\x6c\x79\x1b\x1e\xfd\x65\x62\x20\xf4\x93\xd7\x5a\x0c\xe6\xc6\xd6\xd8\x2c\x6b\x6b\x44\x9d\xea\x37\xc6\x50\x24\xb6\x7e\x6b\x0c\x25\x9e\xa7\x2f\x29\xcd\x54\x7e\xa5\xdf\x86\x47\xca\xc8\x6f\x03\x39\x65\xa2\x46\x10\x75\xb4\x94\x7e\x63\xa0\x93\x43\xdc\xdb\x8a\xc8\x0f\x8f\x19\xd7\x9d\x15\xac\x2c\x1e\xd4\xed\xcf\xb6\x22\xf2\xc9\x93\xf8\x01\x4c\x3c\x1a\x11\x45\xcb\xa3\x11\x11\xb0\x1e\x8d\x88\x12\xe4\x43\x22\x6d\xf7\x85\x67\x50\xb6\x0b\xad\x68\x32\x86\x47\x2b\x9a\xcc\xdd\xeb\xf2\x0c\x2d\xf0\x62\x85\xb8\xf7\x1b\x63\xc5\x8d\x15\xe8\x84\x87\x67\xc1\x9a\xdb\x56\x06\xc0\x53\x5b\x19\x60\x71\x8b\x40\x4a\x62\x9e\x3b\xdb\x52\x12\x45\x93\x64\xd2\x72\xc1\xb9\x54\x0a\x51\x8a\x4c\x27\x71\x4c\x35\x5a\xca\x58\x5e\x76\x8e\xa7\xee\x55\x39\xcd\x6f\xbd\x1a\x2c\xe3\x11\xe8\x24\xbf\xdd\x92\x8b\xd7\xa4\x1a\x91\xd2\xf1\x63\x69\xb9\xe9\x2f\x7c\xc9\x9d\x65\x49\x5a\x63\x0b\x57\xef\xa6\xcc\x05\xeb\x38\xd4\xd4\xa0\xac\x71\x78\xef\x7a\xa0\xec\x49\x6b\x6c\x51\xe3\xd8\xb7\x69\x37\x1e\x2a\xda\xb5\xb5\xbc\x98\x3f\xd9\xd6\xb9\xef\x89\x2f\x83\xb3\xcc\x9e\xcc\x1e\xa4\x64\x57\x4c\x1d\x06\x10\x61\xc9\x1b\x06\x10\xb5\xaf\x2e\xd8\x2e\xfb\xce\x0a\xb3\x93\x0c\x04\xa9\xe8\xa6\xcf\x95\xaa\xc5\x03\x2d\x83\x63\x61\x58\xc8\x46\x58\x72\x41\xb0\x06\x46\xb9\x6c\x59\x9d\x16\x58\x83\x17\xb7\x1c\xfe\x80\xe8\x64\x90\xce\x88\x8a\xf6\x80\xbe\xc4\xa5\xbc\x3b\x5e\x12\x52\xf6\xd8\x3a\x77\x65\xe4\x63\xd7\x27\x19\x26\x98\x59\x72\x10\x59\xff\x0a\x17\x68\xa8\xcd\x8d\xc8\x31\x09\x2b\x98\x51\xdb\xf6\x38\x25\x01\x30\xc8\x43\xec\xac\x5c\xaf\x51\xcd\x7d\x32\x52\x58\xaf\x69\x2e\xa9\x4e\xa2\x76\x0f\xaf\x30\xdd\xc3\xe6\xb0\x96\x2e\xee\xb1\x6d\x3a\x7c\x61\x26\x11\xe7\x15\xc9\x45\x31\x91\xeb\x37\x6a\x86\xad\x0c\xbc\x44\xca\x6d\x83\x63\x57\x5c\xcf\x5c\xc6\x3e\x5f\x05\xf4\xd8\x5b\xf4\x25\x8e\x22\x75\xf2\xad\x97\x96\x3b\x93\xc5\xfc\x24\xb4\x5f\xec\x0b\xbc\x7a\x5b\x20\x92\xc1\x20\xd9\x59\xd8\xdf\x2a\x3c\x53\xae\x4a\xaa\xb4\x53\x89\x94\x90\xb2\xaa\x62\xbf\x75\x8a\xf6\x29\x1a\xad\x08\x34\xcd\x4a\x6c\xd5\x62\x0e\xcf\xcc\xb1\xeb\xb8\x55\x5b\xe6\x08\x2f\x5b\xf8\xa8\xf2\x44\xea\xe3\x7f\x89\xb2\x92\x61\x38\xf3\x06\x0f\xf1\x21\x91\xa2\xb4\x8c\x66\xa6\x7c\x8a\x79\xcd\x07\x98\x68\x5a\x14\x45\x51\x83\xdc\x2c\x92\x93\xd6\xd1\x70\x52\x19\x3d\x72\x2c\x91\x82\x0b\xe2\xcb\x68\x9e\xe2\x05\xb4\xe6\xdc\x31\x47\x4b\x8a\x18\x1b\x18\xce\xea\x1f\x96\xc9\xe3\x21\xf5\x60\x61\x51\x90\x1f\x08\x11\xb0\xd7\x81\x0c\x51\xac\xb1\x44\x2e\x6c\x25\xa3\xaf\x7d\x18\xeb\xec\x20\x8d\xab\xca\x80\xf7\xa5\x14\x7d\x12\x5e\x0e\xec\xf9\x98\x81\xa1\xc5\x93\x5e\xc3\x0c\xef\xd2\x74\x37\x8b\x3d\xb8\x18\xd2\x14\x48\x42\x00\xf0\x94\xfa\xd0\xb9\x02\x27\x1c\x43\xd7\x86\xc4\x80\x00\xe0\x49\xc7\x81\xfd\xc5\xd0\xbc\x31\xcc\xde\x4f\x67\xc8\x02\x01\x41\x7a\x78\x33\x39\x77\xf3\x97\xc1\xf6\x6f\x24\xf6\xc0\xaf\x12\x36\x14\x78\x16\x14\xe2\xc6\x29\x48\xe0\xca\x0c\xf0\xb6\x74\x6a\x02\x04\xbc\x53\xf0\xac\xcf\x66\xe2\xfa\x42\x26\x30\x40\x74\x9c\x32\x35\x20\x3d\x81\x74\xd7\x67\xbb\x73\xc8\xa7\x97\x79\xee\x8f\xb5\x87\xf8\x83\x37\x83\x7e\xe9\x6c\x1d\xfb\x16\x75\x57\x0d\x69\x4a\xb4\xba\x0c\x92\xc2\x9a\x53\x61\x60\xe4\x51\x53\x1a\x17\x21\xf4\xc8\x8d\x03\x13\x4f\x46\x83\x18\xc4\x28\x9b\x16\x60\x5c\xdb\xfa\x08\xec\xde\xa2\xd9\x9d\x5f\xef\x8e\x93\x32\x89\x43\xce\x2e\x1b\x25\x08\x39\x8b\x07\xb7\x25\xe4\x0b\x43\x1f\x5b\xcc\xd8\xf6\x1e\x7b\x7e\x4d\x4d\xcb\x0f\x9c\xe8\xd6\x6a\x37\xc8\x1c\xeb\xd1\xf0\x41\xf0\xb1\x07\x6f\x86\xf6\x1e\xd5\xec\x81\x2f\x47\x45\x6b\x20\x56\xb8\x19\x0f\x52\xc7\xe6\xee\xc7\x18\x4d\x11\x51\x87\x29\x4f\xbe\x7d\xec\x05\x6f\x56\xf2\xf6\x31\x2b\x09\x36\xe0\x19\xa0\x1c\x85\x88\x73\x00\xe2\x82\xf8\xe4\x8c\x04\x34\x3c\x88\x26\xe7\xf5\x82\x1d\xdb\x47\xea\x50\x45\x1d\x5e\xc9\x8a\x08\x31\x1e\xd9\x18\x08\x26\x9c\xd9\x23\xe9\xe3\xd9\xb7\xa1\x52\xde\x80\xfa\x01\xb1\xeb\x08\x72\x83\xd4\xb1\x1a\x04\xbc\x25\xbb\xed\x8f\xdd\x09\xed\x6c\x52\xe6\x5b\x12\x9f\x18\xe1\x3f\x70\xfb\xec\xcd\x6b\xee\x38\x57\xca\x6c\xf9\x0e\x7e\xba\x1d\x83\x14\x2c\x48\x6a\x13\x63\x0a\x9c\x75\x30\x6b\x4a\x45\x53\xd8\x80\xc7\xdb\xe2\x14\x3d\xb8\x9b\x3b\x86\xdd\x10\xc0\xb9\x26\xa7\xc0\xf9\xde\xfb\xe9\x44\x23\xf2\x49\x31\x73\xd3\x78\x05\x95\x2e\x96\xac\x52\xb5\x57\x8d\x97\xed\x40\x9c\x2a\xa9\xb8\xae\x48\xd3\xdf\x25\x04\x33\xae\x38\x67\x78\x95\x34\x57\x79\x41\x78\xd1\xd7\x31\x5e\x11\xec\x26\xc6\x21\x74\xad\x29\xfb\xe6\x70\x39\x00\xc7\xd0\xb5\x15\x8d\x97\x31\x48\x5e\x2f\x63\xd8\xdf\x1a\xc2\xbd\xca\x27\x19\xfb\x65\xe3\xde\x33\xae\x8a\x76\xee\xeb\x07\x59\xdd\xfb\xce\xf1\x6e\x19\x73\xd0\xf0\x63\x76\xc9\xfd\x5e\xb3\xe9\xb0\x25\x30\x09\x44\x27\x21\xd3\xc5\x70\x76\xae\x94\x6a\x26\xb2\x3a\xcd\x50\x0b\x2d\x9c\xc1\x5b\xac\x30\x0e\x9c\x01\x5b\xa9\xcd\x92\x96\x56\x0c\x9f\x41\x4b\xee\xa0\x8c\xa9\x94\xc9\x3d\x4d\x4b\x0b\x15\x9e\x41\xab\x6e\xa7\xec\x9d\x71\x60\xef\x0c\x98\x50\xf7\x07\x4e\xb4\x8d\x22\x83\x75\xeb\x20\x83\x09\x1d\x82\x0f\x39\xe3\xcb\x19\xcd\x4e\xc0\xfa\x3a\x4d\x46\xdb\xbf\x54\x52\xbd\x07\xab\xea\xb0\x3b\x4d\x5b\x2b\x6e\xbd\xed\xbe\xc3\x52\x4f\xf3\xd3\x42\xb1\x5e\xcd\x5e\x0c\xc6\x3f\xa3\x17\x19\x8a\x9f\x68\x0e\x3d\x7f\x31\xcb\xac\xa0\x11\x38\x6d\x34\xfe\x99\xb0\xe6\x41\x51\xa7\x06\x20\xa7\x2f\x61\xcd\x4b\x96\xb1\xa4\xb2\x29\x9e\xe4\x9b\xad\xfb\x5b\x6f\x63\xce\x7e\x8c\xd9\x0e\x06\x77\x66\x04\x40\x3f\x36\x58\x9a\x95\x79\x66\xac\xa7\xd5\x32\xd6\x53\x3b\x23\x25\x9b\xc7\x23\xce\xec\xcd\xf7\xc1\x1f\x84\x8e\x81\x66\x6c\x8d\xc5\x4a\x40\x87\x1b\xee\x24\x43\xad\x14\x7e\x12\x1a\x5d\x05\x28\x23\x22\x15\xdb\xc1\xbe\x88\x24\x71\x12\x02\x6d\xe4\xfb\x49\x08\x74\x47\x0f\xe4\xf2\xfa\xc6\xed\x90\xe5\x2c\x02\x47\x9b\x06\xde\x78\x18\xf3\x2c\xa2\xce\x1f\xb0\xed\x4a\xa3\x64\xa8\xed\xec\xfd\x67\x11\x75\x8c\xb2\x78\x2f\x2a\x82\xcb\x89\x00\x57\x77\xcf\x58\x42\xb3\x3d\x03\x69\xb5\x51\x13\x27\x58\x1f\x94\x26\x1b\xc5\x52\x2f\x26\x3c\x37\xef\x9c\x55\x2f\xc7\x73\x11\x28\xf1\x25\xcb\xfa\x17\x9d\x84\x2a\x82\x19\x02\xc1\xd4\x5d\x1c\x55\xf1\xeb\x7b\x33\x3c\x58\xf6\x3a\x0f\x89\xb7\x3a\xfd\xb6\xea\x10\x00\x89\x20\xeb\x3c\x82\x0f\x8c\x41\xf2\x24\x53\x4d\xdf\x60\x78\x71\x9d\x0b\x90\x44\xb6\x5d\x64\xec\x5b\xfd\x50\x70\x4e\xd2\xd3\x28\xa3\x9d\x0d\x53\xa0\x58\x32\xc9\x9b\x31\x27\x67\x3b\xf9\xc1\x32\xa6\x47\xa9\xad\x61\x23\x75\x40\xc6\x64\x3b\xd1\xcd\xcb\xd5\xaa\x1f\xbc\xf4\x00\x18\x7d\x2f\x4d\xba\xeb\x9a\x95\xad\x45\x62\x5b\x8f\x00\x9e\x9d\x80\x62\x67\x82\x60\x9b\xa2\x70\x73\x76\x2f\x14\x1f\x7e\x01\x50\x52\x4d\x17\x28\x00\x31\xe6\xda\x35\xd3\x5d\x1a\xe0\x86\x38\x6b\xfd\x96\x27\x96\x21\xe5\xb6\x93\x0c\x73\x75\xd8\xf5\x92\x0c\x93\x16\xcd\x93\x38\x6b\x1d\x97\x27\x49\x6d\x3d\xe0\x76\x1a\x67\xed\x94\x0e\x4f\xdc\x8b\x82\xe1\x2a\x06\x7f\xc3\x7c\x47\x2e\x1a\xa2\xae\x35\x25\x9d\xe3\xa2\x07\x40\x1a\x82\xca\x70\x86\xf8\xb3\x0e\x36\x66\xa7\x71\x00\xb6\xf3\x6e\x46\x00\x0f\x5b\x9d\xa7\x57\x79\xcb\x71\x88\xcd\xce\xe9\x4b\x7d\xd4\x7b\xfc\x86\xea\xdf\x79\x3a\x12\xcb\xd8\xa3\x25\x73\xa2\xb5\xb5\x4d\x9e\x27\x36\x68\x51\x78\x7a\x1d\xaf\x40\x9a\x2c\x60\x53\xe4\x29\x25\xf8\x05\xd0\xbb\x22\x4f\xa1\xe7\xbd\x59\xee\x5c\x3c\x97\x16\x4f\x1a\x22\x42\x7b\x8f\x83\x08\x6d\x23\x2b\xb8\x65\xd0\xdb\x94\xcb\x79\x61\x77\x65\x5b\x3e\xc9\xb1\xab\x58\x7b\x5e\x64\x0f\x93\x32\xc9\xb1\xab\x7f\xf1\xbc\xb0\x10\x3b\x32\xf2\xed\xea\x5d\x3f\x2f\x2c\xc4\xce\xe3\x85\x25\x5b\x5a\xbc\xb0\xcc\x36\xeb\x60\x20\x76\x05\x12\xd9\x6d\xa4\xc1\x79\x0b\x3f\x75\x6e\xac\xda\xc8\x15\xe7\x0d\xfc\xae\x33\x93\xe4\x29\x18\x9e\x44\x76\xeb\x75\x3c\x6f\x81\xb6\x6c\xca\x33\x80\x30\xca\x5b\x04\x19\xe5\xdd\x7c\x0f\xd0\x92\x00\x81\xdc\x86\x1c\x9c\xb7\x40\xdb\x0e\x56\x6d\x69\xcf\x0b\x7b\xb5\xbf\x9d\xb7\xbe\x6d\x0c\xcd\x5e\xc9\x38\x54\x2e\x4f\xd3\xe2\x19\xff\x74\x12\xa8\xad\x4f\xe8\x7c\x88\x2c\x41\x42\x39\x9f\x86\x36\xca\x80\x1e\xa2\x4c\x90\x4a\x4e\xc2\xb4\xfb\xae\xb3\xe0\xd3\x7f\x79\x12\xa6\xad\xc4\x75\x2e\x91\x71\xe8\x22\x3b\x09\x19\xea\xbb\x1d\x8c\x38\xc1\xbe\xb0\xd1\x22\xf5\x9c\x04\x0d\x29\x4a\x9e\x4b\x7c\xcc\x06\x15\x9e\x44\x6c\x2b\x4a\x9e\x13\x13\xed\xae\xef\xc5\xd1\x52\xc5\x74\x00\x20\x69\x32\x00\x45\x23\xd2\xf0\x2a\x4a\x9d\x53\x35\xdb\xfa\x00\x2d\x2b\x9a\x02\x6d\xa3\x00\xbd\xbf\x15\x68\xbf\xd5\xf2\x04\x40\x46\x75\xab\x89\x9e\x58\xb7\xb2\x16\xbb\x93\x44\xbc\x5a\x10\x4e\x52\x15\x1d\xba\x72\x4e\x13\xf1\x2a\x63\x99\x88\x57\xdb\xc2\xf9\x7a\x85\xce\xfe\xc4\x7b\xbb\x1c\x36\x52\xe3\xa1\xda\x73\xee\xc8\x24\xb7\x27\x73\xf4\xca\xfa\x4c\xcb\xab\xaf\xed\xc4\x11\x59\x34\x3b\x9f\xdb\x3e\xc6\xbc\x5c\x87\xc6\x5a\x26\xe0\x3a\xbc\x41\x8f\x41\x5e\xe6\xe2\x55\x43\xba\x0e\xcd\xcb\xa0\xeb\x3a\x04\x2d\xda\x40\xa7\x4f\xbf\xd7\xa4\x9c\x29\x0b\x4b\xa5\x8c\xd1\x1b\x13\xe3\x75\xec\x5c\x2c\xf6\x21\x28\x4c\x9b\x17\x7e\x06\x5d\x4e\x97\xb7\x94\x9b\x7d\xf5\xda\x59\x7a\x59\xaa\x57\x30\xf5\x4f\xf6\x17\xaf\x9a\x14\xae\xa0\x4d\x17\xae\x7b\xed\xbc\xbc\x5f\xb3\x3b\xef\x16\x0d\xdc\x13\x56\xae\x9d\xb5\x17\xc9\xe7\xda\x51\x52\x10\xd2\x15\xc8\xf1\xc8\xf2\xbf\x82\x41\xaf\xd9\x4f\x5e\xf3\x03\xd1\x6d\xdc\x83\xa0\x5a\x34\x0d\x07\x6c\xe8\x22\x28\x3c\x68\x8e\xbd\x96\x24\x59\x4c\x2f\x77\x99\xcf\xd7\xa3\x75\x97\xf9\x7c\x3d\x59\x75\x21\x56\x06\x4d\x9f\x57\xd4\x30\x9d\x7d\x20\xb9\x6f\xf5\x13\x2f\xdd\x4d\x76\x79\xfb\x89\xc0\x3c\x1a\x90\xed\x7f\xfa\x0b\x30\x93\x21\x21\x18\xdf\x74\x25\x83\x4a\xa9\x85\x21\x2e\x68\x1a\xbe\x88\x24\xd7\x36\x76\x25\xed\xcf\x7e\xb0\xe3\x43\x79\x58\xe2\x64\xa9\xa2\x22\x7b\xb5\xab\xa0\x70\xc9\x61\x65\xab\xbb\xb4\xd0\x99\xce\xf1\xca\x3b\xf0\xd2\x5f\xd0\xef\x3c\x6c\x75\xe5\x9d\x36\x8e\xd1\x13\xf0\x9d\x34\x61\x5e\x84\x54\x65\x4f\x92\x5c\xd9\xec\xc2\xc9\x87\x7d\x31\x10\x78\xcd\x72\x35\xd6\xd3\x85\xd9\xce\x2f\x96\x98\xd8\xa4\xf8\x25\x24\xca\x70\x2e\x6f\x85\x82\xb9\x5d\xf8\x02\x3d\x93\x76\x15\x6d\x45\xd6\xf1\x96\x69\x5a\x31\x56\x4a\xd2\xad\x5e\xea\x0c\x9e\x8d\x9b\x82\x41\x5f\xe6\x2f\x40\x4f\xbe\x88\xa1\xda\xf7\x01\x5c\xdf\xd2\x0b\xd2\x6a\xd5\x41\xe4\x0f\xe8\x31\xc3\x96\x08\x05\xd9\x5f\x1b\xf9\x5f\xed\x0e\x29\x05\xb3\x07\x77\xd9\xc6\x3d\xb0\x86\xf3\x3b\xf8\x5e\x01\x9e\x86\x5a\xe2\xbd\xe5\x6d\x1e\x65\x6c\x7a\x05\xa3\x3f\x28\x99\x38\xe8\x25\xe5\x8d\xbe\x7f\xc0\x4f\xc4\x16\x7b\x35\x49\x0d\x50\x09\xab\x0e\x1e\x26\xbc\x0c\xab\xae\xc5\x5f\x1e\x26\x9b\xc1\x2d\x69\xae\xa8\xca\x5f\x04\x55\xfb\x9a\xf4\x04\x7b\x65\xf4\x9d\xb6\x96\x6f\x91\xeb\xe4\x26\xdc\xce\xb4\xd7\x55\x5f\x9c\xdb\xd1\xe0\xe1\x73\xf0\x04\x52\x79\x28\xf9\xea\xce\x99\x55\xb0\xe9\xb9\xf6\xbb\x0e\x19\xa8\x88\x38\xaa\xae\x04\x79\x91\xbf\x49\x37\x15\x77\xf8\x56\xee\x5f\x2e\x97\x77\x2d\xa1\xcb\x79\x9d\x6f\x1f\x0e\x78\xec\x3c\x33\x94\xbb\x17\x89\x53\x1e\x5e\xe9\x4d\xd9\x0b\xd3\xed\xc0\xcb\xc6\x6d\x14\x0d\x4f\xb6\x32\xbc\xd7\xda\x46\x8d\x9d\x92\x35\x1a\x3b\xe5\xe4\x9f\xea\x32\x34\x84\xed\x4e\x87\xed\x65\x9a\x01\xd9\xea\xa9\x96\x4c\x07\x27\x51\x5e\x76\xac\x07\xaf\xd5\xf4\x25\xbb\x23\xc1\x30\x57\xa8\x97\xeb\x24\x00\xca\x71\x9f\x1c\x09\x97\x57\x5c\xa8\xca\x42\xc2\x3d\x91\xe6\x00\xbe\x2e\xa2\x8d\x64\xe4\x4b\xdc\x8a\x5e\xe7\x72\x5d\x1c\xcc\x16\xda\xcb\x1b\x83\xdd\x37\x96\xbc\x15\xcd\x8f\x77\x2d\x79\x2b\x7a\xc5\xca\x75\x11\x6b\x24\x2d\xdc\xe8\x1d\xd5\x32\x2a\x9f\x93\x45\xb0\x95\xd1\xd6\xd7\xbd\xcf\x82\xfa\x40\xb0\x91\xb3\x78\x13\x2e\xe1\xb4\x93\x70\x78\x73\xa2\x9b\x70\x1e\x57\xde\x8d\x16\x20\xf9\xdc\x68\x01\x32\x5e\xe4\x24\x43\x04\xae\x1b\xd1\x5a\x86\x7a\x23\x9c\xda\xd7\x83\xf9\x9e\xbd\xf6\x7a\x30\xdf\x4b\x91\x8f\x4a\x80\x75\x5c\x6b\xf4\x4b\x1a\x61\x63\x0c\x2f\x6e\x5d\xaf\xb5\xf8\x03\xc2\x9d\x80\x7a\xca\xcd\x43\x6b\xd7\xb3\xe3\x89\x41\xfc\x83\x7f\xdd\xa5\xb3\x44\xa0\xac\x4f\xf4\x52\x04\xf2\xbd\x22\x90\x9c\x78\xe2\xc0\x71\x65\x73\x29\x81\x26\xaa\x6b\xe2\xcc\x91\x6b\x4d\x44\xb5\xfd\x5e\x51\x8d\xbe\x90\x7a\x74\xd3\x5e\x64\x75\x32\x7e\xf2\x5a\x52\x8f\x37\xe9\x97\x6b\x49\x3d\x59\x0f\xf5\xb5\x24\x9d\xac\x5b\xf8\xd2\xa7\x67\x8a\xc5\x8b\x04\x8d\xba\x4d\x2e\xaf\x69\xf7\xa8\xdd\xf5\x1a\xf9\xef\x0f\x04\xd8\xcb\x6a\x5e\xac\xa1\x74\xcc\x89\x35\x51\xfd\xea\xa5\x82\xf9\xdf\xdb\x72\xd5\x29\x63\x1d\x81\x59\x72\x3d\x76\x34\xff\xdc\xed\xa1\x33\x6d\xfd\x5c\x95\x1d\x6d\xff\x36\xc6\x1a\xae\x73\x1b\x63\x9d\x6d\x08\x0d\x04\x4a\xbb\x0f\xbc\x87\xc9\x86\x70\x9b\x74\xbf\x35\xb9\xca\x2a\x9a\x99\x38\x5a\x5e\x84\x89\xc8\x76\x7b\xf7\xa4\x2d\x86\x3d\x5c\x9a\x0c\x9a\x87\xaa\xbf\xe8\x94\x00\x06\x52\x19\xef\x3a\x30\x0b\x84\x97\x3b\xec\x2c\x14\xd6\x57\x1f\xee\x7e\x80\x4a\xc1\xf2\xb8\xa3\x31\x3a\x70\xb9\x9b\x64\x8c\x50\xfe\x6d\x92\x00\xd5\xca\x3b\xb2\xbf\x81\xa1\x68\xfa\x48\x5f\xe3\x87\x60\x09\xdd\x26\x54\xda\x6d\xca\x38\x29\xaf\xdd\xbf\x1b\xfd\x7a\x93\x7c\xd1\x20\x93\x9b\x80\x6b\x9d\x27\x77\xe2\x04\x0b\x94\x7f\x73\x33\xb2\x4d\x7a\x33\xb2\xc5\x73\x01\x60\x05\x32\xcb\x8b\xfd\x25\x29\xf4\xdd\xde\x96\x3f\x28\x6f\x8f\xf9\x2a\x93\xab\x38\xc3\x8f\xb8\xa1\xbc\x66\x67\x9a\xed\x7f\x29\x9e\x5f\x30\xb4\xdb\xe3\xf7\xdc\x87\x5b\xee\x6c\x46\x59\x76\x93\x9b\x94\x46\x06\x7a\xdc\xc4\x5e\x6b\x56\xbb\x91\x1f\x8c\xe1\xb8\xcb\x01\x41\xf1\xbe\x04\xca\xa0\xb7\xc8\x71\x58\x5a\x37\xe2\x43\x1c\xfe\x20\xdf\x63\xd4\x18\x99\x22\xdc\xfb\xe6\x86\xe5\xb0\xeb\x60\x94\x11\xa7\xc5\x2b\x60\x91\x38\xee\xca\xd6\x8d\xa6\x7c\x57\xd7\x2e\x1f\x54\xd7\x2e\x50\xd4\x2d\x5e\xd3\xea\x92\x1a\x8a\x39\x58\xef\x25\x1c\x14\xa5\x09\x2f\x69\x4f\x5a\x18\x6e\x6e\x7b\x34\xe8\xe5\x26\x7f\x22\xf2\xc0\x6d\x54\x35\x6f\xf1\xf2\x79\x08\xe8\x26\x6d\x91\x87\x7b\x6e\x52\x12\x0d\xc3\x20\x6e\xbc\x78\x02\xad\xe7\x4e\x7a\xd7\x5d\x67\x93\xdd\x25\x87\xfe\x79\x73\xf7\x72\x2c\xfe\x20\xa5\x31\x48\xae\x49\x34\xed\xc6\x4d\xf6\x44\x0f\x4c\xde\x9d\x50\x78\x3b\x76\xeb\x76\x5c\xa4\x12\x32\x49\xc9\xbd\xdd\x71\x2c\x09\x77\x6b\x64\x84\x9b\xdd\xda\x6c\x2a\x37\x2e\x38\x6d\xaa\x37\x3b\xb7\x19\x3b\x6e\x36\xe5\xae\x54\x7c\x9b\x55\x51\x67\xd6\xed\xa5\xed\x0a\x34\x37\xf1\xcd\x26\x9e\xbc\x3d\xcf\x64\x22\x98\x7b\xbc\xfc\x40\x19\xbf\x9b\x07\x95\x6e\xac\x28\x5a\x5e\x6f\xfc\x6e\x45\xfe\xb3\xf6\xee\x5a\x24\xa3\x53\x2a\x66\x3c\xc4\x3d\x1b\x04\x7e\xe3\x77\x2b\xae\x46\xfc\x6e\x45\xca\x61\xef\x36\xea\xe2\xe6\x80\xbb\x56\xaa\x7b\xed\xe3\xb5\x48\x82\x58\x4f\xb4\x15\xdd\x27\xfe\x20\x58\xe9\x7d\x3a\x00\xf0\x42\x8a\x20\x93\xa2\xde\x27\xac\x8b\x5d\x98\xcb\xf5\x77\x92\xcb\xfb\x12\x7e\xcb\x88\xad\xce\x81\x0e\x37\x76\xf6\x1b\x87\x5b\x41\xb0\xf3\x2e\x7e\x8d\x33\xb7\xfe\x36\x89\xc8\x83\xee\xde\x31\x71\xef\x64\xc7\x2e\xa8\x5b\x33\x9d\x0b\xf7\xc6\xf5\xe1\x94\xe3\x03\xd3\x60\x7a\xe3\x03\xd3\x06\x7d\x93\x70\x51\xfb\xf2\x7d\xe3\xf8\x70\xf8\xdc\x9e\xa8\xa1\xf2\xbe\x5d\xb1\x80\x8d\xdb\x4b\x23\xf7\x8d\xdb\x4b\x83\xdd\xfd\xe8\x59\xe2\xdb\x9d\x0f\xd9\x86\xf0\x7b\xe9\x21\xbf\xd9\x87\x87\x3b\xe9\x8d\xb3\x4b\x6b\xf6\xfd\x08\x1d\xc8\x78\x14\xa6\x7c\x2f\x21\x31\x82\x47\xe8\x6c\x48\xe8\x6c\x07\x88\x5c\x7f\x8f\x10\x31\x9a\xb9\x05\x37\x1f\x10\x7f\x5c\x46\x73\xb3\x29\x5a\x22\x47\x4f\xfc\x3a\x95\xdc\x3d\x95\xd6\x6c\xed\x81\xf3\x30\x3e\x62\xa3\xa3\x73\xed\xd9\x26\x13\xe1\xdf\xdc\x13\x60\xea\xbf\xdb\x64\x3e\x12\xd9\xcb\xc6\x19\xac\x83\xd6\xac\xd1\xf8\x5e\x1b\x73\x34\x0d\xe0\xfd\x22\x5d\x4a\x65\xaf\xd3\xc5\xd4\xbd\x8b\x9f\x25\x29\xfd\xbd\x80\xc2\x3a\xb7\xb2\x9e\x95\x04\xcf\xde\xf0\x0a\x41\x5a\x0f\x81\xcf\x89\x65\xf5\x90\xfe\xc7\x8c\x80\x8f\xa1\xca\x60\xed\xd9\xbb\xb7\xef\x31\xbe\x13\xc1\xf1\x18\x86\x0c\xbb\x79\x0c\x43\x6e\xd6\x27\x63\x4d\xb1\x7d\x8c\xef\xac\xed\x27\x18\xd9\x84\x2c\xf2\xe0\x8e\xaa\xb0\x83\x87\x4c\x3d\xbd\x5b\x46\x7e\x44\x46\x7b\x82\xb7\x18\x40\x41\x4f\x10\x22\x5b\x02\x22\x36\xed\x87\x18\xe6\x5a\xf7\xd7\x08\x14\x70\x9f\x87\x0c\x3e\x9d\x9d\xe7\xc1\x1d\xa5\xb0\xf7\x98\x60\xb9\x59\x5f\xcd\xcd\x46\x01\x15\x37\xd5\xc3\x35\x89\xbd\x59\x46\xd4\x65\x3f\x7c\x22\xde\x0d\x7c\x5f\x4f\x14\x52\xd0\x12\xf1\x0c\xa0\x8c\x3f\xa4\x01\xf2\x62\x90\x27\x0a\x28\x68\x89\x38\x37\x9a\xf5\x85\xd3\x76\xcc\x44\x21\xd0\x11\x80\xba\xe5\xd7\x74\x70\xd4\x4a\x42\x04\x14\xc4\xe6\xe8\x2a\x7f\x12\x86\xe3\xee\x7b\x0c\xde\x22\x9b\xb0\x65\x6d\x97\x4f\xc2\x4c\x6c\xcf\x86\x2d\xc3\x53\x1f\xbd\x56\x8e\xde\xb0\x65\xd4\xe7\xc7\xb0\x65\x5c\x07\x4f\x42\xf8\xdc\xfd\x22\xa2\x75\xeb\x23\x93\x8b\x09\xa4\x87\x36\x1c\x8e\x21\xcc\x52\x45\x46\x7c\x41\x7c\x78\x32\x40\x3b\x1d\x59\xa0\x01\x28\x03\xb4\x14\xc5\xf9\x72\x45\x8c\xc7\xc3\x5c\xde\x3c\xf4\x64\x0c\xda\x88\xc9\x4f\x56\x57\x97\x44\xb2\xa0\x82\xec\x8c\xc9\x15\xf6\xf9\x64\x54\x09\x27\x90\x88\x67\xe3\xd2\x9e\x8c\xfa\xe0\xe4\x14\xd4\x07\xb6\xf2\xa7\x08\x1d\x1d\x14\xa1\xa3\x9d\x22\xea\x40\xcb\xbe\x67\x08\x36\xf4\x78\x39\x82\x71\x3a\x4f\x11\x0a\x5b\xc2\xe2\xa3\x07\xfa\x29\x5e\xa5\xc1\x40\x2b\xc9\x23\xa4\x41\xc3\x93\xe1\xfa\x8f\x21\xc9\xb0\xcc\xa7\x62\x59\x76\xe9\x18\x9e\xec\x12\xe4\xc6\x03\x93\xa3\x3c\xd5\xa1\xd1\x71\x25\xe4\x0e\x76\xfe\x54\x52\x58\x48\x15\xc4\x17\x75\xc3\x4b\x1e\xa3\x93\x77\x59\x20\xbe\xbc\x95\xe1\x31\x8f\xb3\x52\xc6\xa3\xf9\x01\x79\xfc\xf9\x26\x95\xd8\x1c\x16\x65\x98\xf4\x43\xb8\xb2\xce\xbb\x07\x5b\x44\x37\x30\xe8\x21\x5e\xb9\xef\x0f\xb0\xce\x8a\x9c\x86\x75\xd6\xd5\x4d\xbc\xb2\x7b\xcb\xd3\xd5\xa7\xa8\x4f\xa8\x91\x5e\xc3\x87\x58\x23\x23\x1b\x9e\xae\x0e\x05\x72\xfa\x3e\x61\x09\x96\x89\x49\xd6\xc3\xf7\x74\x94\x2b\x76\xc1\x87\x98\xe4\xbe\xcb\x40\xbd\x3f\x16\x6a\xbf\xd5\x23\x22\x75\x90\xee\xc7\x1d\xee\xe9\x1e\xc5\x71\x9c\x43\x43\xac\x70\x0c\x0d\xb1\x0e\x68\xc9\x3e\xd9\x30\xdf\x67\x68\x94\x15\x90\xb1\xa5\x46\x7a\x1c\x9a\x88\x05\x17\x49\xe8\xd0\x88\xf1\x0c\xe3\x79\x1d\xed\x92\x84\xb2\xb1\xbd\x0f\x92\xd0\xa1\x19\xe3\x19\xdb\x2e\xcb\x2f\x3b\x02\x59\xac\xef\x08\x64\xe7\xe9\xdc\x60\x82\xc6\x6d\xbd\x90\x11\x9d\x5a\x5f\xd9\xec\x1f\x63\x8c\x0c\x83\x7d\x4e\xad\xad\xd2\xe2\xa9\xb5\x55\x62\x3c\x3d\x00\xef\x38\x4f\xe3\x7e\x25\xdf\xd3\xb8\x5f\xf9\xe3\xa9\xed\x55\xa2\x3d\xd5\x43\xe5\xf1\x97\xb6\x57\x97\xc2\xa5\xed\xd5\xa5\x7a\x19\x06\x2c\x67\xbf\x34\x20\xcb\x4a\x88\x49\xf6\x76\xf7\xf2\x10\x93\x5c\xbd\xd7\xe4\xb9\x34\xbe\x4a\x9d\x97\x62\xb8\x3f\xec\x23\xfc\x00\x7d\x69\x1d\xb3\x7c\x53\x06\xb0\xeb\xa1\xcc\x90\xef\x1d\x89\x07\xf8\xf7\x36\x6c\xfb\x40\xb0\xa7\xe7\xd9\x1f\x6c\x1c\x71\x63\x93\xa3\xdf\x2a\x0a\x8f\xc7\xbd\x95\xef\x9f\xfb\x41\x09\xf0\x8b\xd7\x1f\xe8\xe5\x31\xc4\x4f\x0e\xb1\xc4\x9f\xa2\x3e\xf1\x3c\x99\x32\x60\x3d\x9e\x3b\x77\x05\x2f\x51\xa8\x6c\x7e\x8f\x49\xa2\x56\xf9\xe5\x63\x80\xaf\x44\xb2\x84\x1e\x73\xed\x3c\xc4\xf7\x64\x7b\x5b\x0b\x4b\x7c\x20\xfd\x68\x0a\x79\x88\xf4\x31\x8b\xdf\x43\x12\x6a\xaf\x4c\x7b\x26\x1b\x9c\xe8\x98\x5a\x48\x29\xae\x9d\x42\x2a\x9d\x6b\xa3\x10\x11\x4b\x6a\xd2\xf5\xf3\x78\xb6\x5b\x94\x92\xb3\xd0\x8c\xb9\x0f\x17\x1e\xea\x64\x7c\x38\xdd\x65\xf7\x08\x36\xfb\x40\xef\x83\x07\x45\x37\xd3\xc3\x61\x6e\x05\x9e\x87\xfc\x37\xfa\xfa\x1e\x82\x68\xa4\xd2\x97\xc8\x54\x80\x99\x87\x2a\x52\xa4\x8c\xf2\x3e\x28\x0e\x53\xa4\x5b\x47\xcd\xa6\x53\x36\xe8\xa8\x7c\x79\x88\x6b\x1e\xea\x3d\x95\x32\x26\x4b\x28\x61\x06\x2d\xe7\xbc\x0f\x5e\x77\xcd\x66\x3a\x97\xb0\x52\x0b\xf2\xdc\x44\x58\xd1\x6d\x3d\x71\x76\xe8\x4b\x9f\x04\x01\x17\x28\x75\x22\xab\xe8\x8b\x9d\xa4\x81\x36\x54\x71\x6a\x78\x70\x48\xf8\x35\xf4\x29\xcf\xa0\x2e\x6c\xc7\x48\x03\x48\x70\x93\x23\xde\x46\x83\x4c\x72\x3a\x1b\x02\x31\xf1\x56\xe8\x4f\x9b\x88\x1b\x09\x39\x79\x46\x45\x44\xeb\x20\x22\x06\xdb\x41\x2a\x0c\xd6\x9f\xe6\x9e\xe7\x03\x13\x07\xb2\xc7\x4c\x12\x07\x76\xa4\x81\x69\xcc\x8b\x08\x27\x59\xa0\x9a\xfd\x34\x59\x20\x24\x37\x93\x53\x68\x59\x71\x06\xa4\x64\xb7\x5b\xbe\x55\x18\x18\xbe\xdf\x09\xe1\x81\x2e\x63\xae\x83\x6b\xce\x8c\xb9\x4e\x80\x96\x64\x90\xf4\x0d\x4f\x8d\x0f\x26\xf8\x9a\x6e\xfa\xa2\x22\xe3\x67\xad\x7e\x80\x9f\xb5\x5b\xc6\xcf\x2a\x8a\x3c\xe6\x54\xed\x00\x4b\x8e\x73\xcc\x71\x26\x55\x89\x59\xd8\x5c\xd8\x8c\x66\xc1\x24\x9f\xac\xc3\x7e\xc2\x2e\x30\xd7\x36\x9f\xf5\x4b\xcd\xb2\xf9\xb6\x95\xf4\xed\xed\x5f\xb6\x0a\x6b\x53\x2f\x1c\x9d\x5a\x75\xf3\x6d\xb0\x54\xc3\xfa\x01\x3d\x74\x62\x78\xf0\x10\xc9\xac\xf8\x4d\x77\x1d\xfd\x67\x88\x9b\xb3\xba\x85\xb0\x9b\x4d\xce\x76\x07\x13\x0a\xce\x25\x1c\x14\xf3\xb4\xcd\x2a\x39\x8b\xd8\xba\x99\x31\xd3\x68\xf8\xb1\xbb\xd6\xe4\x4c\xb7\xb4\xda\x30\xf6\x03\xb9\x87\x95\x80\xbb\x69\xb4\xa2\x33\xcf\x2a\x01\x69\x93\x98\xad\xad\x7c\x02\x70\xf8\x24\xa4\xf1\x25\x06\xb4\xfd\x21\xc6\x26\x86\xe2\x8d\x0f\xe2\x81\xec\x7f\x8a\xb8\x13\xd7\x84\x8b\x80\x68\x63\x19\xff\xf4\xea\x07\x17\x56\xdf\xee\x6f\xda\xc1\x1f\xa1\x69\x77\xf6\xed\xcd\xa1\xaf\xee\xee\x60\x25\x6c\x1f\xd2\x84\xb6\x0f\x69\xc5\xf0\x63\x11\xa5\xed\x43\x9a\xe0\xfc\xb7\xc7\x00\xa7\xb6\x0f\x51\xae\xdb\x02\x26\x39\xbf\x9d\x3f\xa2\x33\xbd\x10\x12\x91\x46\x0e\xaf\xbd\x9c\xba\x1e\xe4\x41\x9e\xe7\x96\xb3\xe8\x7a\xb0\xb7\x53\x39\xcd\x32\x51\x8c\x4e\x10\xd6\x0b\x6d\x54\xf3\x74\x81\x03\x85\xa7\xb6\x1d\x19\x9e\x87\x1e\xbe\xb4\xc1\xcd\xb5\xdf\x47\x13\x8c\xcf\x53\xae\x60\x63\x27\x65\x80\x3a\xe5\x0a\x8c\x02\x27\x44\x72\x10\x27\x1c\x22\x0a\xe0\xe4\x3d\x00\x5e\x72\x20\xd0\x7a\x79\x03\x09\xed\x5c\x32\x0b\xbe\xc5\x09\xa1\xe6\x3b\x71\x42\xa8\x5f\x4f\x8e\x82\x7b\x37\xcd\x34\xfb\x70\x72\xad\x5d\x28\x8e\x88\x5f\xf3\x46\x7f\x41\xe2\x99\x37\x12\xb2\x18\x30\x0e\x43\x4c\x1a\x87\x21\x36\x6e\x8e\x17\x0a\x84\x71\x18\x72\xac\x9b\xd0\x1d\x76\xcb\x69\x1c\x86\x58\x25\xa1\x9e\x9b\xd7\xdc\x49\x86\x87\x1f\x23\x95\x4a\x61\x5e\xe9\x64\xe8\xc5\x7c\x10\x45\xa5\x30\xd2\xe8\x69\x2e\x99\x0f\xab\x34\x5b\xe6\x00\x9a\x74\x6b\x74\x06\x9b\xf3\x34\x3a\x23\xfb\x1e\x61\x9a\x9d\x7a\x72\x81\xa1\xa6\x96\x69\x74\x86\x0b\xe7\x39\xe1\x08\xb6\xe9\x91\x2f\x51\x64\x78\x06\x92\xd7\xe4\x62\xc3\xbc\x81\x53\x42\xdc\x50\xc0\x68\x64\x08\x6b\xd3\xcf\x06\x27\xcc\xa9\x7c\x28\x18\x78\x27\x0c\x74\x98\x04\x68\x18\x4d\x30\xa7\x42\x97\x6b\x7c\x6e\xae\x03\x36\xa6\x72\xa3\xf8\x9b\xca\x8d\x2e\xa0\xb9\xef\x06\xb0\x97\x1b\x99\x84\x86\x5f\xc5\x0c\xd9\x19\x41\x17\xc9\xa0\xd0\xf9\xa6\xcf\x8f\xe2\x71\x81\xb9\x84\x84\x22\xd2\x08\xb3\xd0\x8d\x33\x91\x11\xbc\x42\x6b\xbe\x9a\xba\xc4\xda\xbb\xb7\x7a\x1f\x08\x3b\x15\x55\x1e\x47\x6a\xbb\x3b\x5c\xa0\x3a\x96\xa7\xb2\x84\xbd\x61\x84\x5d\xdf\xbe\xc7\xda\x86\xe0\x82\xef\x11\x61\x26\x9d\x32\x42\x28\xcc\xef\x3d\xb0\x61\x42\x27\x2f\x37\x4e\x68\xfc\x78\x8f\xae\x72\x4e\x99\xd3\x1f\xec\x1d\xef\x92\x36\xb4\x9b\xbc\x88\x13\xd9\x3b\x51\xdf\xc3\xfb\x10\xf7\x07\xd3\x5f\xec\x81\xa3\x9a\x0b\xfe\x37\x18\x49\x05\x6c\x5c\xb7\x88\xcc\xf1\x06\xf2\xab\x52\x39\x90\x7b\x93\x16\x97\xd0\x50\x3d\x37\xfc\x06\x4e\x53\xd2\x76\x90\x69\xf9\x21\x4c\xcb\xb6\x4d\x55\xac\x58\xf8\xe2\x7b\xf0\x4c\xcb\xcb\xc5\x0e\x3a\x5e\x5e\x82\x12\xfa\x7e\x8f\x11\x0d\xf4\xbf\x49\x33\x11\x7d\x91\x6c\xd8\xcc\x3d\x2f\xb1\xb1\xde\x54\xff\x7a\x38\x1a\x55\xf9\x25\xa9\xb0\xdb\xde\xbb\xe5\x04\xeb\x60\x03\x19\x7e\xab\x57\x54\x94\x27\x1d\x6d\x8e\x37\xa1\xb0\x7f\x1d\x1d\xf2\x66\x24\x4d\x27\x24\xb3\x81\x8b\xf9\xec\x32\x64\x18\xd9\xa5\xe7\xfb\x0e\x9d\x03\xa2\x59\xea\xb4\xa4\xbe\x99\xcc\x6a\xe8\xd7\x6f\x36\xb0\xc4\xe9\xcf\xa8\x0d\x22\x01\xcf\x44\x89\xbb\xbb\x89\xe0\x6e\x53\xaf\x22\x39\x4d\x95\x63\x11\xb3\x45\xd3\xbf\xb3\x72\xdf\xa2\xac\xc8\x68\x89\x6d\xd0\x34\xf5\x9a\x0e\x18\x41\xff\x2d\x18\x61\x30\x28\xbe\x45\x26\x66\x7d\x0f\x7f\xc0\xaa\xdf\x25\x60\x14\xb3\xd9\xbd\x4b\x72\x28\x8e\x99\xfb\x1b\x94\x4b\x5f\x23\x58\xcd\xac\xf2\x56\xa9\x19\xe2\xf0\x30\x53\xf0\x83\xb6\xe6\x4e\xea\xac\xd8\xa3\x1c\x3f\x81\xaa\x9e\x1d\x7a\x09\x7f\xf0\x22\xe8\xb7\x12\xbf\xdc\xad\x8f\x8c\x97\x84\x01\xd5\xdd\x99\x5b\x82\x45\x36\x8c\xe0\x6d\x4a\x35\x0c\xc0\xdc\xc1\x5e\xcb\xfc\xea\xef\x60\xf5\xbe\xf8\x3b\x3c\xa7\xfd\x92\x27\xc6\xec\x1f\xaf\x59\xe5\xd8\x3b\xde\xe6\x16\x6e\x7d\x38\x4d\xb3\x83\x7d\x81\x29\xd0\x99\x33\xc6\x89\x22\x67\x4c\x61\xc3\x7b\x9b\x4a\x84\xef\xcd\x89\x06\xaa\x91\x2a\x8a\xab\xa7\xeb\xe7\xdf\x3f\x88\x22\x7a\xeb\xce\x13\x1d\x20\x54\x18\x09\xf1\x9a\x4a\x06\xa6\xfa\x72\xa8\x49\x8d\xe8\xc5\x71\xa2\x4b\xed\x1d\xd8\x7a\xd1\x76\xde\xe1\x92\x61\xf4\x4b\x78\x88\x66\xca\x7a\x87\xcb\xc4\xf7\xd0\x41\xf7\x3d\xe2\x34\x9b\xd9\x3b\x9c\x1a\xeb\x60\x7d\x1d\xd6\x71\x3a\x80\x79\xb0\x71\x76\xfb\xc2\x8c\x29\x0d\x9d\x78\xb4\xa4\xa1\x13\x83\xab\xbc\xc5\x4b\x13\xd4\x66\x5f\x83\x48\x87\x3f\x68\x1d\xa4\x63\x0f\x27\x7b\x6d\xf2\xbb\xe4\x86\xa4\x01\xe4\x3d\x31\x40\x0d\x3f\x56\xcc\x06\x8a\x13\x31\x5b\xaa\x26\xb5\xaf\x89\xf8\xde\x13\x31\xdb\xa9\xb9\xbc\xab\xcf\x49\xbe\x34\x51\xb8\x36\x97\xb4\x90\x8d\x5b\x7b\x89\x10\x55\x23\x7c\x97\xaa\x9f\x8d\x81\x7b\x2f\x62\x01\xb3\xef\x75\x26\x3a\xa0\x6b\xaf\x59\x30\xb3\x8f\x25\x3b\x6d\xea\xfa\x02\x75\xe9\xe5\x94\xbd\x71\xae\x28\x6a\xa0\x79\xef\x2d\xd1\x01\xd6\x8d\x4b\xdb\xf7\xd9\x15\x4c\x53\x37\xd9\x2f\x2d\x72\xd1\x95\x0b\x8f\xfb\x0a\xcc\xf7\xf6\x22\x49\x78\xc8\xe2\xc5\x15\xa2\x79\xf1\xc5\x15\x62\xce\x9a\xf7\xe1\xa4\xd8\xd7\xb7\x6c\xbd\x0f\x2e\x36\xa9\xf2\x71\x9d\xd0\xf9\x83\x3c\x2e\x95\x11\xb9\xe0\x32\x79\x5c\x32\x56\x67\x77\x96\x17\x23\x57\xc8\x17\x1e\xe3\xce\x77\x33\xde\xce\x6f\x33\xae\x12\xdf\xe3\xb1\xd8\x4c\x82\xd3\xc8\x7b\x89\x79\x2f\xb2\x6b\x8f\xbb\xaa\x3c\xf8\xf1\x72\x3a\xc8\xd3\x9b\x2f\xf6\x03\x6f\xfa\x7a\x27\xeb\xd6\x39\x31\x27\x9c\x54\xac\xdd\x40\xa6\xc2\xc1\x9f\xb8\xdb\x47\xe5\x16\xd2\x89\xab\x51\x44\x22\x44\x78\xe0\xe4\x7d\xed\x17\xd8\x38\xde\xe3\xa1\x94\x17\xe3\x82\x26\xee\x97\x23\x3d\x71\xd7\x07\x11\xae\x2a\x0e\xf1\x78\xa0\xe5\xe5\x2a\x49\x0f\xba\xbc\xaf\x88\xb0\xce\x6b\x0e\xc5\xef\xbe\xaf\xc7\xe1\x7d\xf8\x89\x32\xda\x7a\xb6\x8c\x1b\x70\x11\x4e\x3d\xdc\xee\xd7\x42\xaa\x07\xe7\x8e\x49\x46\x5c\x0f\xce\x1d\x97\xc5\x20\xeb\xc1\x6e\xcf\x56\x51\x8f\xc3\xf6\xeb\x2a\x13\xc2\x40\xf6\xff\x7a\x84\xc0\xb7\x81\x32\xc4\x18\xe9\x4b\x29\x20\xd3\x17\x21\x0c\xd8\xa2\xeb\xa1\xb5\xa1\xd3\x97\xd6\x86\x6e\x1d\xac\x0d\xc9\x76\x80\x39\xda\x97\x30\xdb\xa6\x67\xe5\x6d\x47\x98\x33\xe5\xc7\x9c\x4e\x94\x21\x88\x44\xd9\x5b\x9a\x23\x38\xd9\x67\x73\x68\x27\xaa\x38\xd2\x7e\x74\xc7\x69\xfe\x80\xc6\x62\x07\x9a\x24\x04\x22\xe2\xc7\xdc\x0d\x35\xd3\x77\x53\x86\x9d\x8a\xc4\xb8\xe3\xee\x29\xa3\x41\x75\x06\x13\x05\xda\x76\x00\x3a\x59\x47\x5e\x6f\x3b\x02\x3d\x28\x8b\x68\xda\xe4\x66\xa9\xda\x9c\x8d\x04\xd4\xce\x46\x02\xbb\x09\x2c\x92\xb8\xae\x44\x3e\x4e\x52\x93\x65\x6f\x9e\x67\x60\xc4\x54\xe0\xc2\xa9\xc7\xbe\xb5\x32\xd3\x10\x07\x9e\xbb\xa3\xc9\x81\x7d\xd5\x32\x3a\x9d\xa3\x21\x6d\x5d\x17\xa5\x59\x0c\x01\x1d\x87\xa2\xbb\x90\xe2\xf4\xe8\x4e\x13\xf1\x16\xdd\x69\x25\x81\x5d\x17\x13\x46\x51\xe0\x0a\xaf\x87\x91\x13\xce\x87\x91\x13\x8e\xc0\xc8\x89\x5d\xf6\x92\xf0\xca\x07\x1e\x97\x76\x68\x88\x24\x5d\x62\x37\x72\x42\xa2\x2e\x78\x17\xbb\x75\x08\x0c\x73\xfe\xb8\xf6\x19\x43\x4d\x3d\x0a\x1a\xad\x04\xc8\xc9\x9b\xf4\xa5\x26\x5a\x8f\xa2\x48\x09\xca\x0a\x7e\x59\x27\x14\xd9\xa5\x3b\x0f\xdc\x64\x10\x9d\x1f\x2f\xb1\x74\x85\x54\x00\x94\x48\xb8\x7b\x8a\xc0\x80\x7a\x6c\x31\x06\x0c\x10\xc6\xd9\xa5\x7e\x44\x9a\xb8\xdb\x44\x47\x70\xfe\x39\x7b\xd3\xa5\x5a\x2c\x24\x5d\x42\xaa\x68\xba\xfb\x5b\xe0\x1c\x96\x5f\xde\xd3\xbe\x6e\x15\x91\x84\xd9\xa4\xbb\x92\x39\x91\x9d\x87\x73\xdb\xf4\x0c\x89\xbe\xb6\x25\x7d\x1f\x08\xac\x13\xec\x8e\x44\x1d\x00\xa9\x4b\x31\xd4\xe9\x48\xd4\x91\xae\x3b\x6e\x61\x5b\xed\x0c\x5f\x46\xd0\x15\x1b\x40\x45\x67\xf8\xae\xa9\x8e\x72\x1f\x00\xa9\x23\x36\x0c\x86\xdf\xf1\x84\x0e\xdf\xdf\xb4\x69\x5f\x0e\x59\x18\x50\xee\x45\xfb\xf0\x76\x51\xcb\x91\x36\xe9\x6b\x08\x8f\xe5\x42\x7d\xda\x1f\x78\xa9\x65\x5e\x43\x78\x80\x79\xe0\x48\x17\xd5\x88\x2e\x49\xa6\xc6\x45\x9a\x49\x9a\x1a\xd0\x4e\x64\x5c\xb8\x39\x2a\x46\x9c\x7a\x0c\xf1\xce\xc0\x94\x63\x06\x1f\x9f\x02\xe4\x7b\xcc\x94\xce\x93\x32\x4d\x72\xad\x9d\x26\x7f\x29\x0c\xf3\x34\x5d\x52\x05\xee\x13\xd1\x6a\x00\xdf\x75\x70\x9d\x29\x7d\x63\xc4\x18\x07\x1f\x70\xa0\x25\xc8\xec\xaf\x7d\xa5\x07\x1f\x13\x62\x59\x45\x24\xd6\x0d\xae\x21\xad\xc7\x92\x57\x52\x90\x8b\x2e\x79\xc5\xc4\xb7\xf5\x20\xc2\x12\x75\xb4\x1e\x4b\x76\xe9\x7b\xd5\x92\x00\x6f\xec\x6f\x2f\xea\xf8\xfe\xa6\x6c\xc7\x0f\x7d\xf9\x2d\x66\xd4\x21\x70\x5c\xd6\x28\xbd\x13\x9d\x39\x9c\xf0\x7b\xe9\xb2\x45\xbc\x20\xc1\x0c\x59\xd0\x12\x61\x3a\x41\x2b\xf5\x30\x20\xd3\x76\x08\xc8\x44\xa5\xa8\x07\x01\x99\x68\xca\xf5\xb8\xb9\x59\x52\x98\x6f\xfc\x9a\xbb\x3e\x30\xbb\xf8\x49\x90\x57\x87\x7d\xdd\xb4\xcf\x58\xb8\x7c\x73\x6c\x18\x26\xef\x85\xd3\x7b\x63\x81\x81\xdb\x08\x82\xc4\xf2\x88\x43\xea\x1b\x77\x39\x64\xb4\x8f\x88\xf3\x03\xee\xb7\x14\xd0\xe7\xe4\x3d\x00\x3d\x5c\x30\x2a\xd0\x8f\x88\x03\xb8\x07\x20\x0e\xa8\xd7\x1c\x7a\x9b\x53\x90\x43\xaf\xf9\xc3\xc4\x18\x9d\xe9\x79\x0a\x11\x1f\xcf\x08\xd4\x96\x93\x19\xbb\xbe\x0a\xdb\xad\x87\xd7\x75\x3a\x0e\x6e\x84\xaa\x2e\x1e\x2c\x26\x85\x60\xfa\x7a\x60\x31\x31\x11\x71\x3d\x0c\x38\x49\x92\xf4\x54\x13\xb6\xda\x0b\x64\x05\x88\x5f\x20\x2b\xa0\xe1\x15\x32\xd0\xf0\x72\xca\x4a\xfc\xbf\x18\xca\x0a\x10\x93\x3f\xaf\x88\x12\xae\x24\xc0\x95\x5c\x8f\x17\x43\x59\xb3\x4e\xa7\x8e\x65\x74\x4c\x61\x7d\x31\x94\x6d\x18\x38\xe3\x56\x98\x23\xae\xea\x2c\xd2\x1b\x92\x52\x8d\x2e\x80\x97\x09\x96\xc8\x96\xd8\xd4\xd1\xb2\x6a\x38\x1c\x40\xa7\xcc\x31\xab\x61\x39\x51\xbf\x52\x86\x28\xe1\x72\xe1\x00\x68\xe6\x34\x70\x3b\x01\x21\xec\x35\x1c\x66\x49\xa4\xe7\xc0\x55\x05\x1c\x96\xa8\x81\xab\x0a\x70\xa4\xd7\xb0\x64\x31\x73\x7a\xd6\xb0\x64\xb1\x8e\x10\x5b\x03\xb6\x17\x93\x59\xd7\x40\x6a\xde\xba\x2b\x61\x70\x2e\xbe\xc7\x63\x0e\x8f\x0c\x4b\x18\xeb\xe8\x83\x35\x60\x86\x91\x79\x84\x20\xd4\x40\x1a\x5c\x4a\x7c\x1b\x70\x48\x64\xeb\x54\xde\x03\x75\x10\xbd\xf4\x15\xbc\xfe\x30\xf8\x03\x79\xce\x86\x0d\x91\x60\x0c\x34\x86\x80\xb1\x23\x5b\x7e\xf8\xd8\xfa\x02\xb7\xd0\x1b\x90\xc0\xf4\x5a\x2c\x25\x80\x00\xa1\x0a\xd8\x11\x7f\x09\x42\x48\x58\x22\x55\xe2\xd8\x48\x0d\x24\xfe\xed\x0e\x81\xcc\xbf\xc8\xc0\x35\x44\x4c\xa0\x6c\xf9\x81\xd4\xbf\xdd\x89\x8a\xb8\x45\x9a\xf5\xd1\xd7\x10\x36\x42\xf2\xd4\x94\x1f\x27\x82\x07\x90\x54\x02\xf1\x25\x55\x5c\x24\x6c\xb2\x6c\xeb\x21\x09\x04\x0d\x25\x8e\x68\x21\x2e\x05\x4e\x3c\xb7\xb1\x1f\x26\x95\x2c\x13\x49\x2d\x22\xb5\xe7\x20\x46\x85\x8c\xb9\xd5\x21\x9b\xfe\x97\xcc\xe6\x35\x78\xb5\x37\x4b\x34\x64\x2c\xc3\xcd\xf7\x40\xd1\xfd\x40\x4f\x0d\x90\x66\x49\x87\x11\x64\xbc\x36\xc5\x3a\x37\xed\x30\xcc\x2c\x85\x58\x47\xe0\xac\x23\x2a\xe8\x8b\x04\x34\x05\x37\x4d\x0d\x05\x0b\x53\xb3\xac\xe6\x0a\x2a\x0a\x9a\xab\xa8\x28\xc4\x73\x0b\x74\x71\xbd\xb3\x5a\x42\xc1\x5e\x28\x0d\x16\x71\x64\x0f\x5a\x2c\xc5\x51\xc1\xba\x1b\x2d\x63\x93\xae\x80\x8a\x17\x09\x77\x48\x0d\x78\x91\x3a\x37\x05\xd4\x50\x41\x98\xb8\x40\x70\xaa\xcd\x2e\x08\x30\x51\x82\x0d\xd5\x63\x6c\x12\x4f\x45\xb5\x8e\x5f\x05\x83\xd4\x50\xd1\xfe\x8b\x2d\x10\x30\x21\x05\x71\x09\x01\x6e\xa4\x1a\x08\x45\xc1\x65\x51\x03\xa9\x6e\x08\x92\xad\xa1\x9a\xdc\x58\xde\x80\x7d\x08\xbb\x43\x0d\xcd\x09\x06\x12\xc2\x52\xf0\x8f\xd4\xd0\x30\xe4\x55\x3e\xc6\x0b\x85\xc5\xb5\x06\x0f\xc7\xb8\xec\xb9\x80\x20\xcb\x3f\x1a\x73\x5d\x2c\x6f\xa3\x9e\x1d\x08\xa9\x3f\x10\x2b\x1f\xfd\xf8\x71\x2e\x7c\x00\x54\x44\xba\x60\xe0\x09\x5b\x7d\xe8\xea\x0c\xae\xa0\x8e\xad\x1c\x81\x25\x74\x23\x3e\x5c\x72\x5d\x1b\x89\x83\xe8\x76\x5e\x7c\xd0\xa2\x08\x9a\xfa\xb6\xe0\xfb\xbd\xd6\x89\xfd\x8b\xce\x42\x67\xb6\x0b\x0a\x93\x39\x40\x14\xd2\x6b\x18\xe4\x4c\x73\x09\xee\xe0\x13\x17\xed\x0e\x3e\x91\x16\x0c\x3e\x49\xfe\x50\x4c\x79\xc0\xa8\xcc\x83\x73\x48\x18\x9e\x93\xe1\xaa\xe4\x1a\x3c\x28\x33\x76\x2f\xb8\x1c\x92\xb5\x04\xd8\x09\xf7\xb2\x4e\x32\xde\xd5\x60\x5e\x9c\x43\x12\xdd\x91\x28\x4e\xc9\x0e\x3e\x71\xc1\xee\xe0\x13\x27\xe5\x14\x32\x6b\x41\x72\xc9\xf7\xba\x10\x24\x25\x32\xde\x35\x97\xfe\x69\x50\x8c\xb8\x3f\xa1\x31\x01\x3e\x99\xc5\xe4\x07\xa2\xce\xe5\x75\x8a\x3a\x3f\xd8\x50\x51\xeb\xd2\xcf\xea\x8a\xdf\xc9\xef\xe4\x35\x5c\x76\xde\x5c\xda\x97\x88\x94\xe6\x76\x08\x8a\x6c\xce\x10\x94\xea\xae\x75\x71\xed\x05\x7a\x6d\xb8\xb6\xb8\xe2\x83\x23\x11\x7a\x43\x50\x52\xb6\x31\x83\x68\x76\x37\xdb\x21\xeb\x37\x9e\x6b\xb0\x17\x9d\xb3\x4e\x31\x11\x29\x79\xb8\x48\x6e\x23\x65\xe4\x6a\xdc\x58\x70\xb8\x90\x6f\x4f\x2c\x22\x6b\x85\x7b\xfb\x6c\x68\x78\x67\xcf\x93\x97\xdf\x1c\x0e\x70\xba\x6e\x0e\x8e\x0d\x9b\x1a\xbc\x07\xac\x5b\x52\xb5\x3e\xfe\x63\x69\xe5\xde\x94\xca\x64\xdd\x9c\xb0\x94\x08\x6e\x2f\x77\x10\x43\xfa\xc8\x9a\x6b\xd4\xe3\xc9\xcd\x85\x4c\x8a\xbc\x78\xc8\x24\x1f\x6f\xb7\x70\xa5\x3c\xba\x46\xdd\xda\x1f\xad\x72\x72\x0b\x8c\x4f\xf1\x70\x26\x30\x3e\x85\xea\xa6\xcc\x35\x04\x55\x4d\x27\x2c\xd1\xac\x24\x51\xe4\x95\x04\x55\x66\xa0\xf7\xaa\xca\x6d\x96\x28\x56\x36\x7d\xcd\x1d\x31\xe4\x27\xdd\x5a\x00\x33\xbd\x6a\xa3\x7d\xa9\xbe\x86\xe9\x3d\x1c\xf2\x38\xac\x58\xf1\x70\xdc\xaf\x51\x44\xb2\x0e\xec\x55\xf1\x10\x09\x4b\x6c\x2b\x0a\x94\x81\x23\x37\x5b\x7e\xe0\xc8\x8d\x62\x79\x58\xe2\x59\x51\x54\x0e\x4b\x3c\x2b\x55\x1e\x82\x9f\x2b\x6e\x2e\xbe\xe4\xb3\x52\x5d\x92\xaf\xa9\x04\x5d\x46\xaf\x27\x0f\x6c\xe9\xd1\xdf\x26\x50\x93\x1f\xfc\xda\x63\x7f\x0b\xbe\xb8\x04\xb4\xa2\x61\x21\x72\x94\x27\x25\x96\x54\x44\xe2\x4a\xe2\x3b\x7a\x6f\x67\xa0\xa8\xb5\xb3\x52\x5e\x02\x17\xab\x31\x72\x65\x3a\xa4\x12\xb9\x27\x1d\x8a\x8b\x41\x6b\x9d\xaf\xf1\x49\xc0\xea\xa2\xb1\x32\xd9\xb2\xd6\x2b\xeb\x6b\xbd\x02\x32\xd2\xc9\x38\xad\x11\xf9\x47\x91\x27\x46\xe5\x02\xbe\x8d\x84\x4e\xb2\x08\x63\xe4\x80\xbe\xed\x44\x44\x01\xdb\xe1\x26\x27\x8d\x1c\x11\xe9\x47\xf3\x4a\x8c\x6e\xbc\x96\xd9\x78\xc5\x42\x34\xc5\xfa\x7e\xd8\x3c\x39\xf3\x00\x63\x81\x91\xc6\xc4\x51\x2a\x24\xb8\x98\x5c\x8a\x40\x91\x24\x46\x7a\x4b\x9c\x1d\xb6\x37\x9c\x60\xd0\x58\x4c\x5e\x40\x3c\x6c\x47\x59\x60\xff\x82\x51\xd2\xa1\x71\xed\x38\x17\xb5\xd5\x98\xb6\xe1\x80\x32\xb6\x2c\x3f\xce\x9b\x3b\x50\x26\xe9\x3b\x5c\x2f\x2e\xe9\xa7\x6d\x20\x32\x0e\xff\x6c\x1d\x34\x29\x56\x5a\xcc\x08\xce\x6c\x36\x31\x23\x38\x47\xdf\x73\xfd\xaa\xc5\x5b\x83\x37\x83\xcf\xc0\xc3\x18\xb9\x15\x13\x61\x24\x16\x63\x33\x78\x4d\xd8\x6c\xb2\xc8\xed\x82\xc0\x5e\x3c\xbe\x4f\x71\x91\x0e\xf1\x3c\x35\x16\x1c\x96\xc9\xf7\x9e\xde\xa7\xc8\x71\x96\xdd\x36\xc7\x59\x58\xe3\x91\x8b\xca\x09\x0d\xa9\x91\x8b\xca\x09\xff\xa9\x91\x83\xbe\xc1\x91\x7a\x34\x87\xd6\xab\x16\x72\x00\xe0\x9c\x6f\x90\x4a\xb1\x15\x05\x69\x0a\xfb\x50\x55\x6a\x8f\xde\x94\x34\xac\x34\x59\xb2\x80\x56\x65\x41\x34\xca\x3d\x08\x44\xf8\xd7\xc8\x89\x9d\x28\xe6\x31\xfe\xa4\x5d\x07\x4e\x8c\x8e\x13\x71\x67\x11\x8b\x5f\x23\x07\x78\x83\x33\x48\x6a\xbe\xb8\xeb\xe0\xc2\x42\xe9\x8a\xdc\x34\xce\xd9\xa5\x1a\x49\xce\x17\x85\x07\x6f\x56\xd8\xfd\x62\x22\x47\xf5\x89\x5e\x90\x84\xe2\x10\xf5\x66\x59\x9f\x9b\xc6\x83\x14\xd2\x85\xf3\x2b\xef\x69\x8d\x9e\xf3\x25\xd6\xa5\xc6\x8e\x61\xdd\x65\xeb\xcd\x49\x2e\x31\x0f\x15\x71\x72\x60\xfd\x2c\x67\xa3\xec\x90\x18\x9e\x41\x36\x0e\xa9\x3b\x3c\x1b\x65\xf7\x73\x78\x06\xd6\xd8\xa8\xd7\x64\x26\xa9\x6c\xc8\x2e\x19\xab\x89\xfd\x1c\x2b\xd2\x0d\x07\xbe\x16\x86\xe8\x80\xf1\x21\xdc\x70\xca\x70\x8d\x12\x48\xad\x0f\x87\x97\x01\xec\xbb\x94\x00\xce\xe3\xbd\x87\xcb\xed\xf4\xac\x3b\x6c\x34\x62\x25\xaa\x1a\xdb\x22\xd2\x88\x9a\x64\x3c\xb1\x9c\xcb\x27\x3c\xf4\x53\xac\x43\x28\xa1\x64\x62\x42\xbe\xfd\xad\x0b\xd7\x6f\x31\x42\x23\x93\x45\x0e\xfd\x14\x19\xa7\x87\x7e\x90\x69\xa2\x5e\xb0\xe0\x7b\x6c\xd0\xf0\xf8\x78\xc9\x23\xe9\x17\xc9\x43\xf5\x3a\x7a\x00\x88\x4d\x21\x5e\xb8\xee\xe5\x8b\xe6\xd8\x13\x5d\x97\x81\x07\xc0\xe0\xe5\x96\x87\xef\x4d\x35\x65\x9b\xc2\xe6\xb7\x92\x0f\xf5\x91\x32\x8c\x23\xaf\x11\x5f\x58\x96\x56\x6f\x4d\x20\x42\x7d\x8b\x3b\xa0\x46\xe2\xf0\xaa\xf5\x1a\x6f\x73\xfc\xd0\x2c\xd7\x7d\x6b\x5e\x88\x5e\xaa\x20\xb9\xdc\x82\xca\x70\x6e\x51\x6a\x6f\xa2\x94\xe1\xdf\x06\x4c\x58\x36\x8f\x99\x75\x38\xa5\xe7\x04\x7a\xc0\xc8\x76\x10\x3d\x34\x77\xc4\x47\x07\x0a\x80\x3e\xde\x4d\xe3\x7b\x01\x95\x47\x20\x84\xa8\x9c\xc7\xc7\xfc\x52\xcc\xdf\x63\x26\x30\x3a\x7e\x04\xc8\xf7\xb7\x57\xb6\x50\x46\x8f\xc9\x8e\x6c\x1f\x24\x92\x81\x91\x59\x57\x33\x62\xe4\x52\xc9\xee\x4c\x71\xdf\x51\x97\xc8\xa7\x97\xdc\x83\x8a\xb9\x6f\xbc\x59\xe5\x25\x38\x54\xad\x6a\x11\xb9\xa1\x3b\x04\x6e\x4b\x48\xf2\xcd\x17\x8b\x38\xf2\x64\x24\x3f\x49\x97\xba\x4c\x69\xe7\x0c\x92\xd2\x4e\x0b\x54\x34\xb6\xd6\x59\xe6\xa0\x90\x96\xb7\x48\x9c\xad\x56\xc7\x88\x2f\x4c\x73\x67\xc4\x17\xa6\xc5\x32\xbe\x8e\xd8\xbe\x84\xdf\xf6\xa7\xf7\x8b\x50\xc6\x32\xcb\x4e\x9e\xf0\x91\x69\x9c\x4b\x87\xf0\xfb\x1e\x23\x45\xf1\x3d\x2e\x07\xa8\x34\x1d\x5e\x82\xd3\x29\x73\x00\x0b\xfc\x24\xa2\x77\x39\xbd\x55\x13\x3e\x35\xcd\xd5\x09\x9f\x1a\x99\xbe\x6b\x32\x97\xef\x97\x97\x44\xd7\x74\x68\xbe\xb7\x93\x97\x06\x68\x98\x3b\x11\xc8\x4c\x51\x53\xf0\xc2\x14\x80\xe5\x38\xb0\x96\xc4\x84\x38\xc2\x41\x84\x9a\xbc\x10\x3c\x39\xa2\x08\xb4\xac\x84\x64\x3c\x2d\x58\x4a\x11\x63\x76\xb2\x8c\x31\x3b\x5b\xc7\x4b\xc3\x87\x3f\x88\x32\x20\xc2\x1b\x95\x87\xb5\xb8\x75\x60\x40\x91\xc9\x60\x1a\xe8\x22\x11\x74\xbb\x7b\xc6\x1b\x55\x35\x09\x26\x84\x0a\x4e\xf6\xd5\x84\x54\x91\xb9\xd4\xa9\x26\x42\x6b\xb8\x7e\xb0\x26\xd2\xce\xa5\x64\x0f\x18\xe1\xf7\x7b\x4c\xa6\xd9\x86\x80\x5b\x8c\x27\x1c\x01\xce\x56\x22\x92\xdb\x36\xb9\xba\x3b\xf9\x5e\xb7\x96\xb3\x95\x89\x61\x10\x20\xb2\xd1\x71\x46\xab\x26\x92\xce\x45\x47\x40\xd2\xb9\xb4\xeb\x08\x9b\x75\xf0\xcb\x40\x49\x89\xbc\xbf\x49\x64\x23\x84\x24\x61\xcb\x38\x29\xaa\xef\x81\xad\xfa\x5e\xd8\x84\x07\x94\xb2\xd2\x92\xde\x2e\x27\x93\xc4\x74\xc9\xf6\x8b\x58\xa4\x5f\x1d\x5c\x62\xbd\x88\x44\xbf\x15\x4e\xbf\x05\x4e\xdb\x2f\xce\x31\x53\xa6\xe3\x6b\xf7\xf5\x68\x8b\x03\x38\xed\x2c\xba\x4d\x12\xe9\xe1\x06\x1a\x46\xaa\x58\xd4\xa3\x95\x10\xc1\x1c\x25\x5e\xa9\xe6\x28\x09\xae\x69\x08\x32\xa9\x6a\xfa\x41\x68\x4a\x64\x81\x1b\xce\x31\xb9\x45\x54\xd1\x13\xc7\x87\x87\x1f\x90\x10\x6e\x4f\xfd\x92\x4c\xa2\xd2\x59\x5a\x92\x49\x24\xe6\xb6\xa6\x06\x40\xc9\xf7\x98\x83\x9b\xf5\x05\x0e\x20\x1a\xe6\x7e\xc9\x60\xdf\xdd\x2d\x2e\x1a\xa6\xf6\xfd\x03\x90\x4a\x4f\x4b\x34\x69\x5c\x13\x57\x53\x03\x50\x47\x89\x38\x52\xdd\x97\xd3\x92\x47\x62\xb3\x12\xde\xad\x21\xe1\x74\xc8\xdd\x9e\x97\xc4\x11\x9b\xa8\xc3\xd3\xd5\x5c\x99\x1d\xa8\x5d\x5c\x78\xb7\x46\xb2\x3e\x68\x14\x13\x78\xb7\x1a\xc2\x5e\xea\x3a\x26\x00\xce\x13\x3c\x24\x02\xaa\xa9\x63\x59\xad\x36\x04\xa4\xce\x2c\xae\x2e\xf5\xeb\xd4\xf1\x09\x48\xbd\xb8\xbd\x86\x40\x0c\x81\x06\x13\x44\xec\x34\xa7\x63\x68\xb8\x66\x30\xb8\xbd\x9a\x6b\x17\xb7\xd7\x10\x20\xa2\x77\x14\xfc\x13\xd1\x3b\x4d\xee\x30\x9c\x6f\xfa\x1d\x62\xd1\xf6\xc5\xe2\xd7\x7c\x6d\x08\xb8\x8d\x41\x0b\x12\x15\xee\x31\xce\x95\xd7\x44\x98\x4f\x73\xce\x4f\x69\x81\x0e\x4f\x0c\xc5\xc8\x7a\xe9\xc4\x5d\xe1\x74\x9e\xb8\x60\xc4\xde\xa9\x1b\x08\xa0\x4e\xb1\x0d\xe6\x4f\xb1\xed\x7b\xc8\x42\x18\x4e\xd8\x89\x33\x78\xe2\x81\x71\x40\xa7\x03\x12\x06\xe9\xd7\x3a\xc0\x2c\x32\x2e\xec\xed\x22\xec\xc2\x75\x65\xfb\x97\x17\xd3\x4b\xe4\x97\x0d\x01\xf4\x85\xbb\x41\x7a\xbc\x71\x31\x54\x3e\x40\x76\xe9\x5c\x26\x5d\xd3\x8d\x93\xc4\x45\x7b\x63\xb9\x77\x3a\x75\x82\x39\x9d\x46\x13\x23\x4b\xa6\x9b\x55\x51\xad\xdf\xa8\x43\xc7\x37\x56\x7c\x17\xfc\xad\xd6\xc4\x08\xc8\x56\x62\x58\x44\x22\x5b\x89\x82\x61\xd2\x09\x26\xb3\xbb\x89\x8d\xab\xb6\x03\xd0\x62\xe8\x56\xa1\xe5\x5b\x33\x97\x60\x7e\x49\x66\x04\x1e\x7e\x6c\xea\x92\x66\x99\x01\xb8\xc4\x1f\x9c\x24\xa2\xf1\x71\x29\xdb\x10\x40\xcb\xdd\x1f\x80\x96\xc6\x1f\xbc\x8d\xae\x64\x6e\xe4\xd6\x88\x9d\x1e\x3c\x3b\xdd\xf6\x01\xda\x85\xf9\xe0\x79\x70\xd1\x3d\xde\xb0\x2c\x56\x1e\x3c\x3b\xd2\xd9\x64\xce\x9c\x63\x9d\x66\xd8\xa2\x92\x37\x44\x72\x23\x75\x4d\x13\x42\x6b\x7e\x00\xff\x95\x0d\x4c\x46\x20\xf5\x4f\xaf\xae\x1c\x56\x5a\xca\x7a\x94\x27\x70\xba\xc8\x20\x8c\x34\xc5\x3b\xc3\x99\x0c\xa1\xf9\x1e\x17\x06\x0a\x46\x9a\x40\x27\x95\xbe\x40\x27\xe3\x7f\x39\xf2\x68\xfb\x3a\xce\x04\xe2\x95\x26\xac\x83\xe3\xac\xf9\x5e\xf4\xd2\xfe\x8b\x37\xc7\xe5\x4e\xf8\x50\xd5\xec\x95\xf0\x96\xe9\x0a\x49\x3b\x09\xf0\xfe\xe1\x96\x66\x6d\xca\x7d\x1f\x98\xb2\xfe\x2c\xa8\x3c\x7b\x5d\x01\x37\x5d\xd7\x7c\xe0\x93\x41\xd4\xcd\xc7\xb9\x10\xc0\xf2\xcd\x4b\xf6\x19\xc4\xe1\xd7\xcc\x35\xdc\x1c\x29\xaf\x59\x17\x16\x2b\x21\x63\x77\x21\x9a\xb0\x66\x5c\x58\x5a\x6c\x32\x46\x18\x15\xda\xcc\x8d\xdc\x6a\x5e\x39\x24\xea\xf0\x2d\x37\x72\x6b\x2b\xcb\xdc\xc8\xad\x92\x94\x97\xa8\x33\x54\x80\x73\x10\x1e\x60\x23\xb0\x38\xee\xfa\x38\x4c\x98\xa8\x1c\x70\x92\x08\x33\x09\x51\x54\x98\xb3\x96\x1a\x64\xb7\x1c\x03\xdf\x7e\xe9\x3e\xcd\x9a\x71\x10\x64\x33\x66\x1c\x8e\x24\xd5\x1c\x2b\x0d\x77\xca\x50\x49\xb0\x0c\xb0\xc1\x0e\x4f\x00\x01\xd8\x6d\xd2\x01\xd8\x08\xb0\xbb\x3e\xc8\x0b\x02\x25\xf2\x18\x28\x8e\x2e\x4e\xd7\xd7\xcc\xd5\x96\x9c\x9c\xaf\xd9\x0b\x0f\x76\x43\xa6\x5a\x41\x98\xcc\xe4\x5c\xd3\xca\x97\x93\x80\xd2\x50\x72\x9a\x6d\x08\x40\x91\xb8\x73\xda\xe4\x03\x74\x4b\x28\x1b\xee\x8f\x79\xc7\x3e\x3b\xe4\x64\x54\x5e\xb1\x96\xb0\xfa\x83\x48\xf6\x8b\x05\xab\x72\x6c\xc6\x4d\x16\x1d\x0f\x6e\x32\xb2\x18\xd4\x9c\x05\x95\x31\x70\x16\x4a\xe5\x20\x73\xfe\xc9\x58\x9d\xcc\xf9\xa7\x2e\x91\x2c\xb1\x69\xa8\xb8\xe4\x42\xe2\x22\x56\x5b\xe6\x9a\x27\x1d\x80\xd9\x73\x51\x0e\xdf\x73\x51\xd5\xf7\x38\xb7\xaa\xdf\x0e\xda\x01\x7e\xae\xce\xde\x32\x54\xd6\xca\xd3\xed\x0c\xff\x90\x94\x51\x04\x08\x1c\xe9\xdb\x72\x25\xe8\xdb\x82\x45\xe6\x8a\x33\xc6\xc1\x70\x37\x83\x51\x70\x19\x6f\x96\x1a\x47\xae\x78\xdb\xfe\x17\x61\x67\x72\x36\x3d\x8b\x03\xc0\x54\x26\x04\xdb\x2c\x82\xcb\x9f\x8b\x0d\x76\xfe\x21\xcc\xd3\x55\xfa\xce\xef\x0d\x77\xb3\x08\x10\x42\x68\xe5\x98\x57\x94\x59\xca\x66\x6b\x37\x24\x23\x67\xbb\x92\xa7\x01\xf7\x89\x5e\xc9\xcd\xe0\x73\xa8\xa2\xb0\xf2\x69\x51\xc9\xd3\xa0\x2c\xb7\x76\x5d\x29\xb8\x5d\x2a\x49\xb3\x71\xab\xe8\x35\xd4\x25\xb8\x46\x21\xd5\x86\x64\x54\xd5\x54\x6e\x73\xa0\x6d\xe3\x7a\xa9\x78\x4b\x69\xe3\x54\xf1\xa1\xd6\x2c\xa1\x86\x8b\xc7\xd0\x21\x78\x96\x91\x4f\x3a\x72\xa0\xaa\x0c\xfb\x41\x2a\x27\x13\x5c\x75\xa1\x1e\x0e\x2c\x56\x30\x37\xdd\xa3\x3d\xf2\x43\xef\x63\x27\xa4\x1b\x74\xb3\x8c\x05\xbc\xbb\xa3\xa4\xe6\x80\x92\xd6\xa1\xce\x25\x6c\xae\xfe\x07\xea\x5e\x87\xde\x6d\x88\xd1\x2b\x0a\xab\x50\x36\x54\x87\x9a\x16\xae\xb1\xaa\xc6\x8a\xdb\xaa\x4e\xe3\x8f\xe4\x07\xca\x33\xe8\x72\x25\x59\x93\xda\x98\x3a\x51\x9b\x72\x7f\xd6\x99\x6a\x49\x1b\xe8\x2d\xed\xd4\xa7\x5b\x39\xfc\x60\xad\x9c\x89\xfa\xaa\x66\x8b\x04\xd1\xbe\xb8\xca\x8a\x40\x29\xbe\x65\x52\xa9\xad\x82\x05\xae\xe9\x37\xed\x51\xbe\x81\xd0\xd5\xcd\xc4\x4d\x70\x90\xf5\x16\xe1\xe9\xea\x06\x5c\xd8\x83\x7a\x8b\x77\xfe\x2e\x4c\x7f\x2a\x51\xab\x8a\xac\x66\xc7\x28\xb2\x9a\xa3\xa3\xe8\xf5\xf4\xab\xc7\xe2\x3a\xaf\xa6\xd0\x3e\xa5\xbd\x8f\xab\x4b\x83\x54\x63\x71\x1b\x56\xd4\x58\x98\x50\xf7\x4a\x3e\x27\x95\x89\x15\x2d\x56\x24\x91\xc0\x77\xba\xce\x6c\xae\x0a\xcf\x53\x83\x16\x6a\x78\x74\x9f\x8f\x32\xb3\x42\x09\x15\x53\x2c\x33\x69\x93\x34\xe3\xc7\x61\xd5\x21\xcd\x50\x07\x75\xe4\x1f\xc4\xa3\x94\x50\x98\xcc\xc9\xf5\x31\x7f\x93\xe7\x38\x53\x36\x79\x38\x48\x9a\xad\x66\xab\x2e\xb2\xd9\x8b\xbb\x68\x9a\x86\x38\x6d\x26\x27\x67\xba\x52\x49\xc6\xc7\xd6\x9d\x1c\xae\xaf\x6e\x61\x02\x8c\x9d\xa1\xa1\x68\xbe\x2b\x7f\xd0\xad\x09\x9b\x0e\x31\x57\x5b\xe9\xc3\x93\x49\xf6\x26\xd5\x5c\x75\x27\x84\xfe\x81\x62\x4c\x1a\xba\xb5\x30\x17\xc4\x9d\xa7\x80\x09\xbe\x44\xe8\xcc\xb2\x5a\x63\x57\x84\xe4\x4d\x39\xe0\xab\xba\x4e\x4e\xe0\x9f\xc6\x0a\xe0\x5f\x05\x54\x76\xac\xc6\x4a\xc2\x88\xc6\xaa\x2a\x34\xa8\xff\x34\x56\x4c\x5e\x77\x2b\x72\x3f\xf4\x6a\x7e\x85\x2b\x7b\xd6\x25\xfb\x72\x4c\x7c\x57\xa4\x4a\x2f\x66\xf0\x2e\x97\xf1\xe1\xba\x0c\xc4\x27\xf4\x00\xfc\x91\x11\xcb\x45\x41\x6f\xa5\xac\xa4\x7e\xb9\xcf\xf4\x84\xb3\x96\x92\xa9\x8a\xe2\x4a\x61\x44\xfd\x14\xb9\x4a\x26\x3e\x83\x90\x4a\x80\x3f\x93\xd4\x4b\x5a\x50\x4a\xf9\xf4\xae\x9f\x92\x76\xe8\x47\x43\x2b\xa5\xb0\xb0\x1d\x8a\x84\xc3\x0f\xe5\xc0\x9c\xdb\x86\x6b\xd6\xa5\x0e\xb4\xfd\xb8\xab\xa6\xe8\xa5\xc1\x5d\x5d\x6a\xcc\x1b\xd2\xa4\x4b\x45\x71\x3b\x0c\x36\x05\x2b\xd0\x0e\xb3\xd7\x17\x7b\x36\xef\x16\xec\x7c\xc3\x4a\xfb\x52\x4d\xdd\x0e\x5c\x51\x21\xd6\xed\xd4\x59\xd6\x61\x0c\x7d\x4b\x98\xe2\xde\x4e\x33\x72\x41\x8f\x1a\xe9\xa0\xf0\xfc\xea\xed\x34\x88\x2a\xe7\xbb\x21\x51\xba\xa2\xd9\x24\xfc\x60\xfc\x53\x5d\x1f\xc3\x9f\xc6\x14\xf0\x77\x63\x0a\xc0\xe0\xb4\x53\xf5\x9e\xad\x8d\x2f\x60\x25\x8d\x25\xc3\x01\x79\x7c\x7b\x73\x36\xac\x85\x8a\x2a\xb8\x76\x65\xe4\x01\xaa\x5d\xe9\x81\x07\x5c\x57\x41\x0d\x78\x52\x36\x0c\x01\x13\xc1\x62\xbb\x28\x3d\x6a\x97\xe9\xef\x41\xe2\x86\x6d\x76\x91\x9f\x6f\x44\xb9\xf5\x6e\x6f\x3f\xc6\xab\xfd\x18\x8c\x3f\x68\x60\xfb\x71\x65\x4d\x81\x41\xbb\x32\x4a\x9a\x30\x9b\xcc\xfc\xf4\x83\x00\x45\x40\x8c\xfd\x51\xc3\xe3\xb8\x37\x62\xdd\x28\x4e\x6f\x25\x71\x12\xc0\xd0\xba\xe5\xef\x4d\x05\x96\xad\x0d\x06\x42\x91\xe4\x48\x6e\x75\x11\x55\x99\x60\x49\xed\x2f\x65\x55\xba\x4c\x4f\x5d\x1c\xb4\xb4\x15\xe5\xcf\xf6\xa3\xf0\x96\xfa\x64\x28\xd7\x14\xb3\xfd\x78\xaf\xae\xc9\x65\xab\xa6\x8c\xa2\x1f\xf5\x72\xa2\x88\xe2\xae\xfc\x5d\x7f\xc0\xe9\x1f\x48\x21\xb8\x5b\x1a\x71\xee\xd4\xda\x36\x92\x29\x48\xb6\x5b\x43\x44\xc2\x93\xb4\x21\xcb\x0a\xae\xce\xd6\x90\x42\xb8\x8a\xf8\x92\x25\xae\x10\xf2\x2e\xb8\x6a\x5b\x53\xea\xc4\x02\x35\x63\xc0\x77\x3b\xe2\x09\xd8\xad\xb4\xa9\xc4\x6c\xc8\xb1\xa9\x21\x56\x33\x3b\xb9\x77\x44\xeb\x3c\xa4\x9d\x4e\xe7\xd1\x64\x47\x9d\x37\xa9\x58\xd6\x7d\x93\x02\x45\xe7\x41\xe7\x32\x76\x1e\xcf\x4e\x3f\x33\x20\xb8\x67\xdd\x87\x85\x0d\xb6\xa3\x31\x34\xae\x65\x97\x98\x10\x44\xe4\xe3\x8a\x6f\x98\x08\x69\xa3\xda\x42\x1a\x4f\x47\x98\x08\x69\xdc\xd4\x42\x96\x42\xfc\x4e\xbb\x20\x51\x21\x64\x75\x86\xd5\x64\x75\x9c\xaa\x6a\xb7\xc3\x4d\x09\xef\x1b\x6e\xb4\xa6\x82\x8d\x64\x1c\xbd\x61\x1b\x74\x92\xfa\xa3\x37\x94\x65\x97\x86\x37\x4d\x6d\x99\x57\x51\xd3\x27\x7d\x72\x0d\x36\x24\x59\x10\xe9\x66\x16\x84\xee\xf6\xc1\x84\x85\xb6\x9f\x6d\x18\x36\xc7\x83\x3f\xdc\x1b\xba\x9a\xc8\x0b\xb8\xfa\xda\xe4\xe5\xed\x19\xfe\xf1\x56\x53\xda\xdf\x66\x92\x46\x2b\x35\x28\x85\x95\x38\xc3\x8a\x56\xdb\x34\xe9\x35\x45\x24\xb1\xd2\x0c\x65\x53\x92\x22\x3c\xcb\x88\x69\xd9\xdb\xe4\x7d\xc9\x4d\xd5\x6e\x9f\x0b\xf4\x7f\xf3\x5c\x90\x72\x63\xec\x73\x92\x06\xae\x37\x64\x4b\x59\x1f\x7f\x29\x8b\x61\x7e\x1b\xca\x2a\xb0\x6c\x8a\x1a\x82\xd7\x5b\x43\xb9\xa6\xc9\x62\x53\x9a\x24\x31\x25\x1d\x01\x49\x57\x7b\xbb\x91\xa1\xc0\x3f\xb4\x1f\x4b\x54\xbc\x11\xdb\x93\xeb\xce\xbc\x1e\xc3\x74\x7b\x15\x3c\x5e\x51\xfe\x31\x24\x32\x74\x6b\x42\x72\x5b\xa3\x3a\x73\xa5\x55\x9d\x89\x72\x8f\xe1\xd0\x1d\x4d\xa1\x48\xf9\xd3\x4a\xa4\x3d\x68\x1c\x60\xbc\xda\xc2\xf1\x0f\x86\xbe\x2d\x54\x3a\x8e\x82\x21\xf6\xe5\x9c\x48\x49\x5e\x1c\x45\x03\x6a\x09\xc1\x8f\xf7\xf9\x77\xb9\x2c\x08\x84\xa7\x65\x23\xe7\x80\x55\x6e\x86\xd5\x1b\x22\xcc\x86\x3c\xc2\xd2\xb6\x1f\x1b\x34\xf5\xa2\x68\xdb\x90\xfb\x6e\x96\x9e\xe8\xdc\xc5\xcd\x3c\x01\xde\xa5\xdb\x78\x08\xde\x72\x3b\x09\xa1\xdd\x7a\x4b\x8a\x3e\x3b\x6f\x49\xa0\xd2\x58\x27\x04\x1d\x36\xc8\x43\x8f\xa3\xd8\xe1\x1a\x22\x1b\xd2\x74\xb1\xc1\x04\x99\x5f\xaa\x37\x32\x91\x7b\x84\x88\x34\x63\x97\x46\xfe\xb7\xa5\xb1\xa5\x28\x62\x16\xe0\xa5\x8d\x67\xd8\xe9\xd5\x8e\xf6\x8c\xb8\x26\xbd\x69\x75\xe3\x4a\x7c\xaa\xe7\xad\x43\x0e\x3d\xe9\xc9\xa7\x7a\x9e\x39\xa2\x3d\x2b\xd2\x8d\xcf\xd4\x6f\x96\x45\x06\xa0\x21\xbd\x53\x73\xfb\x3e\x8d\x21\xec\x47\x03\x28\x78\xb6\x7e\x70\x45\xb1\x70\xdd\x3c\x4e\x50\x89\x8e\xda\x8b\xa4\xcb\xbd\x13\xb3\x46\x1c\xee\x78\x94\x93\x25\xa2\xf7\x03\xcd\x69\xb1\x0e\x67\x04\x4c\xed\x87\x67\x64\x50\x46\x19\xdd\x1d\x0b\x40\x8b\xfd\x00\x68\x38\x96\x58\x3b\x29\x0b\xe8\x45\xd9\xdc\x02\x96\xc9\xa5\xc5\x0d\xd8\x75\x3d\x83\xbf\xea\xba\x9e\xc1\x47\x74\xc2\xe7\x8a\x5b\x1d\xee\x46\x81\x5d\x3f\x13\x85\x28\x37\x83\x24\x51\x1e\xee\xa8\x7f\xa0\xab\xe3\x72\xef\x78\xa1\xcf\x6c\xa0\x29\xcb\xb4\x05\xf7\xa7\x23\xe8\x58\xe6\xcc\x2e\xef\x52\x46\xc3\xb1\x4c\x39\x77\x37\x92\x2e\xfe\xdb\xbd\x93\xe3\x49\xab\xdb\xae\x63\x19\x64\xa4\xe3\x58\xa6\x9c\xb8\xe3\x58\x46\x18\x8d\xde\x75\x2c\x73\x19\x2f\xb4\x9c\x97\xbf\x7b\xb0\x1d\xe0\x87\x5b\xaa\x18\xba\x11\xf7\xdc\xa6\xa2\xa1\x0d\x34\xb7\xa3\xb3\xd3\x0e\xb5\xe3\x40\xa6\xbe\xa1\xe3\x40\xa6\xa4\xbb\xe3\x40\xa6\x5a\xa1\x17\x34\x8a\x88\xca\x7a\x01\x38\x97\x08\x07\x32\x35\x38\x1d\xcb\x1f\x55\x06\x9d\x54\x4f\xb8\x3e\xf6\xae\x72\xcd\x15\xaa\xa8\x7e\x9d\x30\x61\xfa\x4d\x42\xd6\x7b\x85\x80\x88\x44\x6a\xda\x84\xba\xea\x64\x20\xa4\xaa\xda\x9c\xbe\xbc\x87\x6b\x8d\x87\xbb\x09\xd0\x7a\x57\xd7\x16\x7f\xf2\x6e\xbd\x66\xd6\x52\xf6\x57\xed\x9b\xc3\xa8\x71\x13\xe0\x06\xf0\x22\x65\xd3\xad\xda\x7d\x37\x5e\x9e\x22\xd6\x8e\x6e\x4d\x23\x8c\x4e\x6a\x27\xd2\x7c\xf7\x4e\x6a\x27\x12\x47\xf6\x4e\x6a\x27\x02\x44\xf4\x2e\x6b\x02\x9d\xe9\x0d\xb2\xe8\xfe\x92\xda\xa9\x58\xee\xda\xc8\xc3\x8d\xf5\x8e\xfa\x86\x1b\xb6\x77\x74\x4e\xcd\x4a\x45\x54\x64\x84\x0e\x47\x25\x06\xa9\xbb\x83\x5b\xea\xa4\x76\xd2\xa8\xba\x13\xef\xd7\xdc\x72\xbd\xab\xc8\x13\x6d\x64\x66\x3c\x35\xc9\xcc\xc0\x24\xf7\xce\xb5\xed\x96\x75\xd8\xa8\x29\x18\x5e\x5d\x34\x08\xae\x73\xa1\x08\x64\x5b\xee\x64\x40\xc1\x3d\x96\x21\xb1\xf4\x08\x05\xb2\xea\x69\x25\x58\x2d\x69\x8f\xd9\x9f\xe0\x57\x3a\x29\x3f\xf5\xb6\xea\x81\xf8\x5f\x7c\x0a\x64\xe7\xd3\x7e\xd0\x59\xb8\x3d\x21\x7f\x61\x5b\x43\xf2\x38\x1d\x63\xf2\xc0\xf7\xf4\xc1\x65\x23\x31\x19\xc8\x8e\x3d\xf8\x32\x3a\x6a\xf8\x3a\x31\xf7\x74\xcd\xeb\x3f\x7e\xa6\xc8\x27\x75\x62\xeb\xe9\x3a\xd7\xc9\xf7\xad\x3b\x5e\x1f\x08\xb6\x3d\x05\x03\x79\xa7\x54\x6f\x48\x28\x20\xff\x9d\x14\x4f\xfa\xe3\x75\x59\x1e\x1e\xe5\x7d\xaa\x6c\x70\x3e\x24\xfc\xd6\x49\xac\x4f\x04\xb2\x1e\xe4\x89\x40\x56\x5a\x37\xf1\x48\xc8\xdf\x07\x65\x3b\x42\x1e\x9b\x75\x6e\x73\x6d\xd9\x29\xc2\xc0\x2c\x23\x60\x43\xca\xdb\xe5\x7f\x10\xb5\xf6\x1f\xff\x33\x65\xd4\xfa\x2d\x67\x0a\x10\x7a\xa1\xe5\xf6\x93\xd1\xdb\x57\x6c\xbf\x93\x03\x65\xd2\x69\xe0\x2c\x02\x28\x17\xf2\xf8\x62\xd4\x3c\x12\xd3\x15\x06\x89\xdd\x69\xd4\x2c\x06\xa4\x51\x33\x2c\x60\x7f\x08\xb3\xe0\x21\x4f\x87\x7a\xf8\xa3\x8e\x51\x73\xde\x5e\xfd\xc1\x06\xdb\x33\xfa\x28\x1c\x14\x5d\x33\xd5\xb7\x38\xfa\x28\x79\xcb\x8f\x1f\xf4\xc3\xa9\xe3\x78\x4f\xc8\xa6\xde\x35\x69\x3e\xf3\xe3\xf1\xc3\xe1\xb7\x1f\x76\xfc\xfa\x61\x7b\xd3\xa6\xba\x2c\xc8\x96\x4e\x32\xf1\xf4\x8e\xd8\x48\x06\xa6\xff\x38\xa1\x2a\x13\xd7\x11\x1b\x0d\x17\xdb\xb4\xdf\xa7\x94\x67\x09\x0a\x03\x6a\xa1\x7c\x66\xeb\xed\x7c\xfd\x47\x54\x72\xc2\x4a\x8e\xc8\x8c\xdb\xbb\xa9\xbe\x7f\xb8\xf1\x17\xc1\x23\x04\x9f\xe2\xd1\x9e\xe6\xcb\x3c\x20\x3a\x29\xbe\x15\xa0\xf5\xbd\xe0\x2f\x19\xf4\xc7\x29\x35\xcd\xae\x7a\x32\x4a\x88\x9d\xbb\xbc\x91\x30\xbf\xc6\xda\x07\xb0\xd7\x74\x0c\x12\x62\x44\x3c\xff\x28\x21\x99\xbb\x7d\x11\x76\x84\x3a\xa5\x64\x57\x8b\xa7\x36\x58\xfb\xe9\x43\x4a\x11\x46\x90\x7c\x2c\xbd\x63\x24\xa4\x4e\xa0\x63\x18\xd4\x44\x66\x0d\x83\x3c\xfd\x1f\xe6\x2c\x22\xed\xc7\xf3\x50\x0c\xfc\xb1\x3c\x97\x9a\xb9\xc0\x93\x4b\xbb\xdf\x38\x24\x53\x41\x19\xc3\x41\x8d\x3d\xe3\x40\xbb\xc4\x02\xc4\x8f\xcd\x99\x3e\x82\xe3\x40\x4e\x0f\x39\x0e\x6c\x89\x39\xfb\x71\xa8\x2b\xa0\x88\x19\x58\xd8\x12\xab\x2b\x6e\x87\x38\x74\x38\x68\x76\xb3\xcd\x8e\x44\xd9\x68\xed\x02\x71\xe6\xeb\x8a\x26\x04\x04\xbe\xec\xea\xc4\xa2\x41\xa8\xf1\xc0\x1a\xb2\x1b\x41\x10\x60\x3d\x39\xe3\xc7\x9f\x14\x95\x31\x71\xda\x2d\x37\x44\x60\x76\xac\x22\x2c\x2e\x49\x10\x8d\x51\x66\x29\x9e\x8a\x1f\x7f\x32\x7d\xb5\x84\x99\x83\x88\x93\xda\x03\x9e\xa4\xea\x5d\x1b\x97\xd2\x29\xcb\xc1\xa6\x33\xb4\x81\xf9\x18\xf9\x22\xa0\xae\x4d\x89\xa7\xcb\x94\xc9\xc8\x0d\xbb\x1d\x05\x32\x43\x5d\x58\x0d\x7d\x4c\xa3\xb0\xce\xc0\x88\x1a\x6a\xfa\x6b\xf7\x89\x02\xbc\x64\x02\x38\x1d\xbd\x68\x84\xcb\xe8\x70\x1d\xba\x5f\x06\xc9\x00\xce\x1c\x09\x2b\xdc\xea\x50\x9b\xf9\x51\x94\xf3\xb6\x4b\x38\x6f\x74\x21\x21\x33\x52\x9d\x76\x95\x95\xa6\x12\x1e\xec\x2a\x0c\x03\x0f\x76\xa2\x03\xf5\xf8\x31\x26\x5d\xdf\xf1\x20\xf4\x8e\x1a\xdf\xa8\xa4\xa5\xe7\xb5\x14\x38\xb3\x97\xec\x73\x53\x66\x62\x30\x12\x84\x4c\xe9\xd1\x18\x8b\x13\x1f\x04\xe4\x55\x27\x18\xf0\x17\x2a\x45\x03\xa3\x63\xa2\x15\xf5\xc0\xe8\x58\x77\xe1\xc0\xbf\x4a\xdd\x62\x34\xfb\xb7\x4f\xce\xea\x69\x7d\xde\x34\xc2\x09\x4b\xa1\xae\x30\xcc\x16\xa9\x14\x31\xba\x07\xc0\xd5\x4a\x16\xc1\x75\xe9\x5e\x24\x80\xa7\xa7\xb9\xe2\x9b\xe8\x3c\x25\x86\x7f\x80\xd3\xae\x3b\xda\xa6\xa9\x40\x31\xcc\xec\x68\xb7\x61\xd8\x76\x16\x23\xcc\xbf\xcf\x24\x30\x31\x26\x2e\x50\x0f\x33\x81\x8b\xea\x44\xcf\x69\xe3\x4f\x6d\x6b\x84\x7e\x95\x36\xe2\x08\xba\xd5\xd8\x1f\x13\xc3\xaf\x07\x82\x10\xc5\x3c\x61\x34\x9d\x69\x7d\x8e\x8a\x27\x13\xf9\x88\x36\x12\x81\xcd\xb1\x8e\xa4\x81\x59\xf1\xd4\xeb\x31\x30\x2b\xd6\x53\x35\x86\x90\x5b\xc9\x47\x10\x03\x0c\x21\x67\x80\x21\x70\xd6\x31\x85\x25\xab\x31\xcc\x77\x0b\xa0\x58\x12\x37\x69\x08\x21\xfa\x88\x3f\xd3\x83\x2c\x43\x04\x49\xee\x31\x8c\x9d\xed\xfe\x4e\x33\x5f\x03\xc4\x14\x52\x7f\xe7\xb5\x83\x1c\x28\xb0\x36\x56\x38\x15\x58\x1b\xeb\x01\x18\xba\x52\xb9\xb9\x53\xe0\x18\x8c\x2c\xe2\xc4\x98\xeb\x31\x79\xa1\x79\x08\xe5\x24\x20\xef\x31\x75\x42\xf5\x77\xf7\xdc\xfe\x31\x0b\xf6\xfc\xde\x66\x10\xf1\x70\xc2\x3d\x0c\x59\xec\xc0\xc0\xb8\x27\xed\xc2\xaa\x98\x2c\x4b\x3d\x6e\x73\x9a\x01\x06\xac\x80\x9a\xa8\x78\x14\x06\xb8\x83\x24\xf5\x9e\xee\x20\x26\xc6\x4a\x15\x02\xbd\x90\xaa\xca\x20\xc7\x80\x36\x64\x01\x1f\xa0\x9b\x44\xfc\xd8\x80\xae\x4d\x58\x20\x33\x31\x52\x45\x3c\xbc\x5e\x5c\x47\x52\x7a\x6b\xa3\x16\xc8\x4f\x34\x09\x0b\xcd\x8a\xd5\x0f\x04\xe9\xba\x35\x52\x0a\xd2\x75\x6b\xfc\x13\x4b\xe0\x00\x94\xd4\xdd\x0a\x78\x63\x09\x9c\x75\x04\xce\x32\x4f\x28\xcf\x02\x99\x0a\xb4\x9c\x0a\x32\x12\x10\x3b\xad\x07\x19\x09\x48\x49\xd5\x63\xf1\xfa\x74\xb1\xc9\x4e\x90\xd7\x01\x8c\x80\xaa\xd3\xd8\xe9\x3b\x49\x99\xe7\x9d\x0b\x67\x72\x02\xd1\x7d\xeb\xfc\x4f\x9f\xdb\xb7\x27\xe3\xa2\x4b\x6a\x32\xf0\xb1\xf3\xfc\xdb\x02\xe8\x3c\xda\x66\x2a\x10\xd5\x10\xaf\xa8\x09\x0e\x32\x15\x10\xa2\xb8\xc7\x06\x6a\xe9\x2b\x82\x16\x35\xe1\x01\xfb\xa0\x16\x39\x88\xe1\xab\xed\x5a\x28\x4e\x11\xd5\x88\xc1\xe3\x2b\x2a\x88\xc1\xa3\xbd\x5a\xbc\x66\x10\xa0\xcf\xd7\x95\xf3\x77\xb6\x55\xd4\x7c\xbd\x18\x59\xd1\x97\xad\x0c\xcb\xc0\x26\xca\xbe\x99\x98\x83\x32\x2b\xca\x5b\x29\x5e\x57\xd4\xb2\x2b\x4a\x59\x5b\x66\x8f\x90\xb6\xcc\x3c\x40\x02\x69\x8c\x66\x88\x81\x2a\x49\x6e\x33\xcc\x7a\xe0\xfa\x64\xd6\x03\xe6\xab\x2d\x73\xb3\x8e\x30\xff\x15\x2c\xa9\x87\x86\xce\xde\x77\xf8\x4d\x55\x6d\x17\x43\x4b\x67\x4f\xd1\x27\x8e\x38\xca\xab\xe0\xd5\x16\x1e\xa9\x5f\x83\x71\xe8\x9c\xc0\xf8\xe3\xf0\x4c\xe5\x47\xba\xa0\x0d\x3e\x34\x8d\xbf\x6c\x83\xb6\x55\x69\xfb\x80\x65\x09\xe5\x5f\xe3\x34\x80\x12\xb8\x38\x48\x74\x60\x64\x90\x41\xda\x6d\x5d\x48\xc6\x89\x9d\xd4\xb4\x8c\x38\x30\xac\x0f\x5b\x93\xf5\x07\xf5\x01\x84\xd4\x06\x25\x2c\x1b\x05\x6d\xda\x00\xa3\xde\x61\x47\x18\x23\x0f\x7f\x7f\x25\x87\x95\x0f\x5e\xcd\x9c\xb8\x41\xa2\x03\x52\x5c\xf6\x71\x29\x84\x60\xb4\x2b\x6f\x38\x5a\x93\xdd\x80\x74\x91\x7d\x90\xdd\xa0\xb0\x81\x43\x4e\x86\x53\x30\xc8\x68\xa0\x7b\xc7\xb8\x30\x39\x16\xa2\x0b\xb3\xde\x61\x1d\x21\x2a\x94\x89\x37\x32\x2d\x03\x10\xc7\x6f\x14\x84\x09\x02\xa1\x11\xb4\x7d\x92\x79\xbb\x80\xb0\x23\x19\x1d\x6e\x98\x81\x11\x74\x0a\x76\x06\x71\x88\x2f\xe7\x5f\x84\xc8\x5e\x59\xb0\x69\x1d\x20\x0a\xcb\x08\x3f\x9c\x99\x46\xd0\xce\xa6\xa8\x5c\x83\x15\x19\xe4\xe4\xd6\x09\x68\x20\xa8\x51\xe2\x38\x14\xd4\x0c\x7f\x47\x50\xe3\x3a\x56\xc1\xa6\x53\xe5\x34\x30\xa9\x43\xeb\x68\x97\xa2\x2a\xec\x2b\xfe\x21\xd4\x0e\x86\xd9\xb1\x98\x48\xa4\x9f\x71\xc0\xa5\x0e\xed\xa3\xc3\x5e\x05\x9b\x69\x92\xa0\x9b\xbc\x9e\x7d\xe0\xa5\x55\x12\x22\x77\x19\x88\xb4\x8f\xb6\x8e\x79\x94\xdc\xc0\x06\xd4\x6e\x08\xfa\x25\x1d\x80\x46\x6b\x4a\x91\x18\x00\x2e\xab\x6a\x05\x3e\x9a\xea\x19\x48\xf7\x20\x9a\x60\xa8\x87\x1a\x1d\xd9\x8d\xe3\x69\xa8\x0c\x85\x1b\x81\x28\xc6\xc9\x91\x04\x51\xbf\xd1\x11\x18\xa1\x8a\xc3\x1a\x2a\x8b\x91\x81\xf4\xc5\xed\x09\xac\x6a\xa1\x22\x43\x43\x65\xcf\x42\x28\x3f\x62\x2c\x62\x0c\xfb\xa2\x18\xda\x26\xbb\x46\xda\x26\x3b\xe7\xc0\x08\xd5\x95\x27\x08\x8f\x3e\xf6\x83\x20\x3c\xfa\x8f\x8d\x81\xde\x0d\x71\xc8\x18\x18\xce\xda\xa7\x66\xca\x59\x27\xef\x67\x1b\xa3\x84\x13\xbf\x06\x40\xbb\x90\xda\x2c\x43\x06\x47\x06\x0a\x74\x07\x07\x50\x8b\xce\x1a\x2d\x8b\xfe\x83\x19\x8c\x3f\xed\x7f\xc7\x60\x7a\x62\xe8\x60\x89\xb9\x9a\x86\x86\xcb\xdc\xf5\x43\xc3\x65\xb7\x77\xba\xdc\x2c\xe5\x64\x1a\xe2\x15\x71\x7c\xb4\x4a\x1b\x84\x20\x54\xcc\x3e\x08\x41\xa8\x4f\xcf\x98\xfa\xee\x78\xc6\xa6\x10\x3a\x18\x40\x88\x1a\x13\xb9\x9c\x38\x43\xbc\x1e\xfd\x99\xc7\xed\xba\xf2\xbb\x06\xc9\xee\x9b\x06\xc9\xee\xf9\x8d\x6e\x13\xba\x3c\x34\x48\xce\xb6\xe6\xfd\x80\x03\x1f\x5a\x24\x8b\x54\x5a\x24\xbb\x7c\x37\x4b\xe9\x66\x11\xc6\x58\xe7\xd3\xa1\x45\x32\x6c\xd2\xb8\x05\xd4\x4e\x05\xd4\x3e\x41\x06\x18\x85\x71\x8b\x0c\x4c\x86\xbc\x8a\x61\x3f\x0f\x40\x8b\x48\x8f\xab\x48\xdb\xc7\x03\x43\x9f\x3f\x4e\x6a\xc8\x25\x0e\x83\x01\xb9\x1b\x4a\x54\xc8\x08\xd0\x07\xe6\xcc\x4d\x89\xd3\x78\xf2\x62\xa0\x49\xfa\x5c\x09\x87\x29\x14\x55\x35\x8d\xe5\xf6\xb0\x4a\x4b\xf6\xd3\xce\x7e\x6c\xd0\x30\x4a\xc5\xc0\x5a\x59\x13\x90\x81\xb5\xb2\xc6\x98\x03\x6b\x65\xdf\x4a\x63\x61\xf9\xa0\x2d\xcc\xf8\xf1\x4a\xc5\xc7\xd2\xd0\x5c\x59\x6a\x85\xb9\xb2\x8f\x9f\x81\xb9\xb2\x06\x87\x03\x35\x93\xd1\x44\x06\xc9\x15\xb5\x32\x1d\x58\x28\x6b\x1d\x3a\xb4\x50\x76\xc9\x48\xae\xa8\x65\xe9\xd8\x8d\x47\xb4\x75\x30\xa7\x75\xdb\x7e\xac\x52\x51\xc1\x3e\x7e\x9c\x52\x51\xf1\x3e\xb0\x50\xf6\xf1\x36\xb4\x4a\x76\xf6\x9b\xc7\x38\x8f\xbd\x41\xc4\x1e\x7d\x0f\xc7\x8b\x30\x42\x8a\x8c\xbd\xb1\x8f\xba\xf1\xa2\x9d\xf6\xdc\xa2\x54\xea\xf9\x3b\xe3\x3a\x2f\x4c\x8c\x0d\x50\x32\x7e\x5c\xd0\xd0\xaa\x76\x90\x65\xd1\xe7\xcf\x78\x11\x93\x8a\xb3\xaf\xf0\xd8\xf6\xa5\x1f\xeb\x7f\xf4\x43\x99\x8c\x07\xfa\x06\x8d\x0f\xd8\x3c\x5c\x9f\x6b\x05\xcc\x9a\x1e\x4b\x8f\x3e\xd6\xca\xbd\xf8\x58\x2b\x6f\x1a\x4d\x8f\x3d\xbc\x1f\x5a\x74\x51\xed\x13\x66\xfb\x64\x83\xdd\x6c\x62\xf6\x68\x6b\x3a\x88\xd9\xa3\x2a\x78\x10\xb3\xc7\x30\x3a\xe3\xdb\x94\x7f\xeb\x30\x61\x6d\x0c\xdb\xdd\x67\xb2\x36\xf0\x74\x13\xd6\x26\x0c\x24\x33\x0f\x75\x2e\xcd\x7f\x58\x53\xe8\xdf\x3c\xdc\xd7\x49\x99\xf5\xbd\xfc\x1d\x58\xb9\x46\xe7\x81\xc6\x9f\xcb\x7f\xea\xd5\x75\x1c\xe3\x2f\xd2\x36\x71\x2b\x27\x9f\x47\x9f\xc4\xf1\xe9\xa7\x3d\x2b\x4d\xb7\x37\x30\x35\x47\x64\x27\x2e\x21\xc4\x08\x1c\x6a\x33\x0d\xe3\x03\x5d\x9d\x27\x58\x0b\xc7\x34\x09\xe9\xa3\x58\x62\x1a\xd2\x07\x32\x3a\x4f\x0f\x71\xa5\xdc\x98\x91\x6d\x39\x5e\xa7\x75\xd4\xa9\x08\x84\x12\xa5\x99\xff\xdc\xc6\x77\xb2\x39\x5a\x00\x75\x22\xf3\xb2\x2f\xfe\xb8\xc4\x2c\x5a\xe0\x69\xde\xb5\xac\x98\xda\x1f\x73\x7c\x66\x41\x9b\x0d\x93\x3f\x89\xb3\x43\x40\xcd\xdf\x83\x09\xd4\xf2\x77\xa4\xdd\x3c\x83\xa6\xe6\xc7\xdc\xc3\x13\x7e\xc8\x78\xc2\xbf\xb7\x04\x8d\x99\x45\x41\x25\xc0\x6b\x64\x6a\x7e\xec\x06\x13\x98\xe7\xca\xfa\x08\xe3\x87\xe5\x4d\xa7\xd6\x79\x8d\xae\x6b\x63\x20\x75\x9e\x5a\x1f\x8b\x43\x5a\x1f\x43\x63\x67\x05\xea\x6a\xb9\xb8\xf1\x4c\xad\x0a\x76\xa3\x0c\xd8\xd5\xb2\x31\xfb\xc3\x0f\xec\xb8\xb3\xb5\xe0\xb1\x60\x15\xf0\x84\x02\xdb\x65\xe3\xcc\xcd\xea\xda\xd1\xb6\x01\x05\xd4\x7a\x36\xd7\x8e\x7e\x1a\xa2\x49\xd1\xb8\xa1\xbc\x70\x06\xc9\xde\xc0\xad\x4f\x7c\xc1\x7c\x21\xcd\xc6\xda\xf1\x24\x98\x38\xb1\xab\x86\x9b\x18\x38\x5f\x59\x5f\x40\x01\xa2\x3d\x0c\x60\x1d\x01\x75\x00\x94\x1a\xcd\x3e\x31\xe2\x6e\xd6\x07\x68\x98\xbe\xd9\xdd\x70\x96\xb1\xe7\x51\x04\xea\xee\x3a\x02\x75\x77\x06\xcc\xcc\x60\x88\x87\x67\xa4\xbb\xfd\x36\x40\xfd\x52\x2c\x87\xf7\x0d\x20\x11\xb6\xa7\x3b\x9d\xce\x14\x3c\xec\x84\xf0\xd1\x8d\x6e\x76\xa7\xc0\xd4\xb0\x88\xd6\xfd\x6b\x12\xe1\xb9\x8b\x3a\xdd\xc3\xe6\xef\x4c\x81\x1b\x76\x86\x87\x8d\xfe\x89\xe6\xa3\x93\xea\x0c\x3d\x88\x5d\x97\xd4\x63\x35\x6b\x89\x0a\x96\x1b\x23\xd0\x2b\x86\xd2\xda\x43\x4c\x74\x5a\xdd\xf9\xab\xd3\xe2\x5a\x9c\xe4\x98\x30\x00\xc6\x24\xb4\x8f\x8e\x86\x33\xc0\x16\x09\xd4\x30\x5c\xd5\xf4\xe3\xa2\x23\xa0\xf8\x71\x71\xd3\x67\xcb\x34\xc2\xf3\xc1\x75\x30\x07\x9a\x22\xcf\xd1\xf0\x38\x23\xa8\x9e\xe4\x7f\x52\x55\x3b\xc7\x4b\x99\x9e\xd0\x4b\x29\x4c\x99\x13\xf1\xec\xdf\x9e\x5b\x73\x62\xb0\xe4\xea\x4c\xd5\x68\x76\x40\x4c\x23\x61\xff\x71\x62\x53\xf5\xf9\x9c\x18\x8b\x7b\x1a\xa6\x3a\x76\x8f\x03\x4a\x2b\x95\xc6\x73\xde\x54\xb2\x31\xd6\xe2\xdc\x3a\xf3\xc7\xa1\x55\x6d\x2f\xe7\x04\x72\xb7\x7a\x9a\x41\x46\xd2\x95\xca\x2c\xa0\x50\x99\xe5\x4e\x60\xcc\x53\x8d\x97\x30\x6f\x52\x1b\x48\xd7\x6f\x64\xce\xc5\x32\x42\x67\x0f\xd6\x8d\x41\x09\xf7\xda\xbc\x01\x3b\xdb\xaa\xfc\x72\x00\xa0\x46\x26\x34\x6f\xa1\xb6\xbe\x50\x5b\x1f\x73\x7c\xa9\x2f\x26\xd1\x6a\x5e\x26\x5a\x30\xcd\x6b\x27\x91\xa4\x75\x86\x9c\x0f\x13\xf0\x06\x78\xd4\xc6\x01\xdb\xe3\x23\xdd\x83\xf8\xb8\xee\x56\xc2\x98\x9b\x4b\x7d\x3e\x4e\x80\xb5\x26\xd8\xb4\xfa\xf9\x49\xb0\x69\x2d\x60\xe7\x23\xd0\x00\xf7\x08\xa8\x75\x04\xd4\xfe\x41\x12\x84\x51\xf3\x61\xa9\x8b\x7d\x0a\x28\x93\x41\xdd\xd5\xf3\xee\xc1\x94\x5a\x5b\xe3\xb9\x50\x23\x78\xf4\x96\x2b\x4d\x47\xcb\x95\x66\x00\xd2\x5d\x28\xe3\x99\x0b\x80\xe0\x1a\xe6\x62\x15\x45\xa2\x25\x70\xd6\x67\xef\xbd\xff\x96\xab\xe8\x58\x62\xb0\x63\x01\x9c\x14\x6c\x13\xb0\xdd\xf3\xb2\x33\xb6\xaf\x7f\x00\x10\x6c\xcf\xdc\x02\xc4\xec\xb7\xc9\xd6\xdc\x03\xe4\x60\x83\xfc\x18\x7d\x12\x67\x5a\x69\xe2\x7c\x53\x6c\xc2\x42\x22\xb3\x3a\xf4\xf1\x9f\xd8\x3e\x1f\xfa\xd7\xcf\x57\x4d\xe4\xb4\x0d\x06\x7b\x7a\xe7\x4f\x34\x63\x87\xf6\xa0\x93\xc4\xd8\x5a\xf7\x4f\x05\x57\x86\x6a\x9a\x68\xc6\x0e\x83\x30\x4c\xc4\x55\x87\x21\x75\xe6\x8b\x51\xbd\x58\x83\xef\xfd\xa1\xab\xff\x44\x30\x75\x18\x1c\x60\x7e\x42\x26\xab\xf1\x61\x3d\x2f\xc2\x7e\x42\x29\xc6\x7e\x02\xe6\xf1\xff\x12\x30\xc6\xff\x74\x4e\x90\xd9\x31\x2b\x85\xf2\xb2\x89\x45\x91\x09\x52\xfb\xfc\x04\xd3\x9d\xfb\x04\xd3\xad\xf8\x00\xd3\x5b\xec\x13\xcc\xc3\x5a\x9f\x1f\xbf\x61\xee\x43\x7d\x2f\x67\xec\x3e\xd0\xf7\x42\x0d\xee\x03\xe3\x7f\xc8\xc7\xad\x3c\x4a\x85\xdb\x7d\x08\xff\xe5\x07\x56\x91\xe0\xdc\x7d\x68\x15\x09\xa2\xdd\x87\x73\x81\xc6\xdd\x24\xb4\x38\x0c\x4a\x71\xc3\xb8\x1d\x86\x5c\xb8\x49\x6f\xa1\x33\xcd\x7d\x68\x3a\xd2\xe2\x2f\x92\x77\x6b\x92\x64\xb0\xd4\x1b\x91\xd8\x61\x78\xc5\xfb\x70\x6e\x10\xb1\xfb\x64\x3a\xe0\xd9\x7d\xba\x03\x41\xd9\x19\x40\xac\xee\x33\xf1\x84\xe6\xa7\xdb\x01\x9a\xde\x67\x6a\xac\xed\xcb\x29\x70\x34\xef\x13\xbf\x8c\xb0\xac\x56\xa6\x5a\xcb\xdd\x38\xfc\xd0\x70\x8a\x45\xbf\x4f\xa1\x3c\x04\x00\xed\x7b\x08\x18\x5e\x40\x30\x21\x37\x46\x4b\x87\x41\x40\xee\xcb\xcd\xa0\xab\x4b\xef\x0b\x60\x44\x11\x78\x68\x46\x78\x5f\x89\x3f\x8c\x71\xb9\xe6\x87\xd5\x54\x6c\x0b\x30\xd6\xd5\x53\x19\xdd\x4d\xb8\xeb\x46\xe6\x85\x7e\x1b\x9e\x48\xdf\xa6\xfb\xca\xc0\x18\x74\x5d\x34\xbd\x74\xd3\x30\x89\x6e\xd2\xf7\xbb\x54\xff\xf1\xe3\x87\x01\x1a\xb1\xdc\x45\xb5\x3e\xa3\x14\x74\xe9\xee\x4a\xb9\x29\x5b\x47\xad\xbe\x3b\x54\x54\xb2\x73\xfc\xef\x82\x73\x86\x48\x66\xd2\x70\x15\x3d\xb7\x59\xc3\x0d\xd1\x73\x57\xd7\xc8\xce\x88\x52\x74\x7a\xa3\xdc\x35\xe5\xbf\x74\x50\xd1\xfd\x73\x12\xee\xaa\x05\xa7\xb8\x0c\x67\x78\xaa\x8d\xbc\x89\xe5\x68\x58\xf2\x9b\x04\x1e\x23\x07\x99\x0e\xef\x1f\x0f\x7f\xd8\xc0\xe8\x27\x4e\xab\x0a\x17\xf4\xea\x6e\x5a\x1e\x88\x3a\x2d\xe1\xa2\x4d\x33\x64\x88\x70\xa1\x6f\xac\xc6\x16\xb8\x9b\x0b\x59\xfc\xa7\x09\x18\x50\x36\xa1\xe4\x8c\xdf\x4d\x6f\x0d\x48\xc1\xdd\x5c\x63\xcb\xae\x31\x4b\xd9\x34\x9d\x70\x23\x5a\x2e\xb2\xa3\x68\x3a\x21\xcc\xcd\x85\x2d\xb6\xc7\x2b\xc7\xad\xe8\x09\xbf\x1f\x27\x7f\xd0\x9c\xac\x61\x24\x9e\xe8\x37\x36\x4e\x43\xfd\xd0\xdd\x13\x7a\x00\xee\xc9\xf8\xd8\x5c\xe8\x9d\x31\x6c\xe3\x79\xba\x61\x5d\xac\x84\x10\xdf\xdd\x55\x16\xdd\x7a\xc2\x6f\xd7\x2c\x79\xd6\x12\x7c\xb7\xb2\xe7\x92\xb3\x31\xa1\x7b\xb6\x6b\x11\xc9\xc2\xd2\xc6\xf8\x48\xfa\x37\xdd\xd8\x64\xb7\x23\x3f\xde\xff\xfe\xd7\xb4\x27\xbe\xb5\xc2\x96\x89\xbf\x07\xce\x2a\xdc\x6e\xf7\x3f\x23\x6c\xfa\x1a\x66\x94\x76\xf9\x86\xbe\x36\x70\x4f\xf7\x20\x20\x97\xf4\x6e\x18\x1c\xae\xf9\x61\x40\x38\x18\x91\x5b\x57\x38\x99\xb2\x7b\x98\x4a\x5b\x72\x9b\xb9\xd0\xb9\xc9\x6e\xbc\xdf\x4e\x4d\xa0\xee\x61\xdc\x3a\x89\xca\xd0\xb8\x72\xfc\x4d\x17\x7f\xfc\x63\xd3\x2c\xe6\x9e\xce\x01\x3e\xe4\x36\xf6\x91\xaf\x89\x7b\xe6\x1c\x18\x69\x3a\x07\xe0\x99\xce\xa1\x5a\x2b\x2d\x9d\x01\xe1\xc7\x33\x36\x8d\x64\xee\xcc\xb6\xee\x72\x4e\x4d\x7b\x9b\xed\xf5\x10\xaa\xfe\x83\x87\xd0\xb4\x2f\x25\xbb\x52\x9c\x99\x73\x63\xa5\xa7\x5b\x20\xd2\xdf\x82\xcf\x1f\xb7\xe0\xc3\x5e\xdd\x37\xde\x4e\x12\xe2\x1f\xdf\xd8\x34\xa3\xbf\x6f\x9d\x9d\x9a\xad\x85\x5e\xcc\xbe\x85\xbe\xd9\x17\xe7\x47\x23\x82\xdb\xc8\x90\xbe\x5c\x6e\xed\xc2\x35\x92\xb9\x6f\xcc\x6d\x84\xfe\xd6\xaf\xc8\x75\x31\xa4\x92\xca\xc9\x1b\x1e\xb0\xe9\x2f\x7e\x3f\x84\x67\x13\xfa\x47\x1b\x79\x31\xe8\xf1\x38\x48\x59\x48\x22\x6a\x78\x93\xfb\xd1\x27\x64\xd8\x97\x41\xff\x86\x7d\x3d\xd4\xb2\xb9\xc3\xc3\x2c\xde\x9a\x87\xfb\xe0\xbd\x89\xd3\x68\xf0\x96\x7b\x39\x3a\x4b\xb4\x8c\x5c\x05\xa7\x76\x2f\x63\x69\xc1\xfc\xde\x44\x4d\xba\xe4\x78\xef\x25\xc3\xef\xf0\xb8\xcc\x35\x59\xac\x7b\x99\xf3\xe4\xf0\xc3\x20\x80\x62\xc2\xd2\xaf\x49\xf8\x97\x16\xdb\x2e\xec\x32\xcf\x89\x07\x68\xeb\xcb\xe4\x66\xc0\xef\x5d\xfa\x0e\xde\x3f\x7e\xaf\xc9\xd6\xdc\xaa\x3a\x55\x60\xdd\xc6\x4c\x92\x15\xba\xb7\x8e\x55\xe2\xfc\x36\xd1\x9f\x1d\x13\x37\x52\xea\xb7\x13\x16\xd6\x42\x9b\x28\x78\xaf\x3b\x6d\xa2\x44\x44\x8d\xc7\x75\x69\xbc\x5f\xe1\x72\x61\x5f\xbd\xbf\xe0\xb6\xef\x97\x98\x89\x70\x68\xf7\xab\x8f\x97\x8b\xf9\xcf\x5c\xca\x5a\xb7\x1f\xc0\x65\x64\x46\x3d\x4b\x6f\xec\xa5\xc8\xde\xdd\x6f\xa3\x34\x6a\x3b\x7a\x6b\x2f\xae\xc0\xff\xfe\xf4\xe4\xe2\x59\x7b\x7f\x72\xb5\x92\x5c\x58\xbc\x92\xeb\x9f\x01\x19\x79\xa7\xdf\x04\x64\xd4\x21\xe7\xfe\x71\x78\x29\x50\xb8\x61\xf0\x8a\xd7\xf0\x03\xeb\x56\x0e\x08\xeb\x83\x90\xad\xf8\x82\x7f\xe0\xd7\x8a\x37\xce\xf3\xe3\xd7\x9a\x8a\x94\xe7\x68\xee\xb8\x4d\xf0\xb2\x62\xf1\x1f\x78\xaf\xf4\x02\x79\x0e\x73\x4e\xb1\xe1\xcf\x69\x44\x47\x5a\x60\xb6\x5d\x44\x8b\xe7\xc7\x2b\xe5\xa1\x78\x60\x95\x8a\x5c\xe8\x03\x47\x54\x64\xc8\x9e\x33\x8f\xbe\xff\xe0\x89\xa5\x60\xef\x51\x3d\xc8\x18\x18\x40\x41\x47\x1f\x6c\x9e\xf4\xe0\x78\x7e\x9c\x4e\x57\xc8\xf6\x90\x55\x4c\x9d\xc4\x63\x58\xa4\xf9\xa7\xe4\xef\x41\x29\x58\x0f\x87\x43\x67\x05\xdd\x78\x50\x04\x56\x3b\x2e\xea\x63\x2c\xa3\x37\x80\xce\x3c\x28\x08\x2b\xb4\xf4\x31\x4a\xd2\xc8\x4a\x08\x75\x84\xb6\x28\xe4\xb5\x81\x82\x66\x26\x5a\x10\x33\xc2\x4b\x3c\x64\x36\xd7\x97\xe4\x29\x8a\x19\x2d\x2b\xf9\xb0\x0e\x02\x5f\xdb\x2a\xf7\x02\x43\x1f\xe5\x5e\x2e\x3e\x1e\xf8\xea\x1c\x1f\x45\x5d\x70\xb6\x0f\xb1\xa9\x55\xfd\x3d\xe4\x32\xd7\x16\xec\xa9\xc8\x37\x20\x21\x4f\x25\xb9\xd1\xb4\x4f\x9e\x77\xcd\x7e\xf0\x59\x6f\xd6\xf1\x79\x67\x5b\xde\x9e\xee\x6d\x85\x59\x15\x86\x86\xab\xb0\x30\x34\x5f\x3b\x70\x3f\x4f\x33\xde\x1f\xc4\xf7\x49\xb6\xa6\xda\x24\xd9\x1a\xdb\x24\xf3\xc5\x80\xcd\xdc\x09\x97\x1d\xc0\xca\xb8\x02\x2d\x93\xff\xfa\xb1\xb8\x14\x6c\x6e\x28\x45\xd7\xfe\xc7\xbc\x34\x83\x28\x3d\x3d\x69\x0f\x7f\x90\xb8\xcc\xa7\xe6\x83\x81\x76\xf1\x67\x92\xc1\x5b\xe4\xd1\x09\x10\xf0\x2d\xca\x9f\x1e\x53\x79\xb8\x4a\x5d\xd4\x61\x85\x61\x3a\xa2\xbb\x04\x81\xe4\x87\x43\xff\x98\xc8\x5c\x13\x99\x47\xa7\xb0\x84\x3a\x64\x2c\xad\x25\xf9\xb7\x8c\x0a\x96\x91\x61\x4b\xc2\x3b\xfe\x41\xd0\xe4\xc8\x64\x15\x53\x13\xf3\x68\x07\x05\x51\x79\xc8\x5b\xaa\x52\xe0\x19\x72\x3e\x22\x0f\xe9\xc6\xd4\x64\x3e\x43\x1e\x18\x18\xb0\x89\x52\x45\xf7\xe0\x2f\x66\xc4\x83\x87\x54\x1e\xf5\xf0\xf7\x89\xce\xd9\xb6\x37\x65\x06\xc6\x41\xec\xc8\xf2\x47\x99\x53\x94\x2a\x40\xfa\x21\x5e\x91\xc6\xcf\xcf\x44\x26\x0d\x23\xfb\x60\x20\xad\x75\xf5\x33\x91\x75\x67\x19\xad\x4c\xd6\xe7\xe0\x88\x3b\x53\x21\x1b\x30\x1b\xdc\x59\x0f\x90\x47\x7f\x79\xdd\x4a\x1e\x23\x3d\x8b\xce\xb7\x4f\x20\x87\xbb\xf3\xcd\xe6\x3f\x32\x9b\x52\x28\xd3\x87\xe7\x5e\xdd\x32\x7e\x76\x0c\xea\x40\x52\x9f\x27\x51\x87\xe6\xbf\xcb\xbd\xe9\x9e\xf6\x60\xd9\x24\xa5\x7e\xb8\xce\x8d\x66\xf1\x10\x30\x51\x45\xf0\xf3\x04\x4b\x46\xa7\x0f\xce\x06\xe2\xc2\xb3\x98\xaa\x65\x94\x24\x4e\xe2\xc1\xe5\x0d\x29\xfb\x43\xa0\xa1\x8e\xfc\xf1\xc9\x40\x43\xa2\xff\x72\x0e\xed\x4f\x77\xb0\x27\x8d\x97\x9d\xc8\x92\xb3\x10\xad\xb9\xcd\x8b\x7c\xc2\xb3\x54\xef\x53\x5c\x4c\xca\x32\x66\xa1\x56\xe7\xc2\x74\xae\xe4\x13\x33\x82\xf9\x83\xc1\x92\x31\x20\x9e\x8d\xbc\x58\xca\xbc\x35\x43\xa0\xe8\x72\x58\x3d\x6d\x8e\x29\x4b\xb0\xad\x73\xb3\xf6\x76\x0f\x30\x6c\x09\x97\x79\x46\xe0\x7b\xb6\x68\xcf\x32\x91\x4d\x5c\xb5\xeb\xa3\xb8\x27\x61\x78\x7f\xc7\xd9\x30\xf9\xcf\x5b\x40\x63\x2b\x49\xac\x01\xe2\xed\x94\x19\xec\x77\xab\x87\x96\xa4\xcf\x2b\xda\x03\xd0\xab\xf5\x83\xe7\xf3\x45\x13\x28\x32\x11\xe8\x47\x26\xfc\xf9\x10\x6b\x4b\xf4\x95\xb9\x28\xbe\x7f\x48\x24\xde\xbb\x0d\x10\x7e\xb9\x2a\x29\x58\x61\x72\x4b\xc1\x8a\xd6\xc5\xeb\x48\x5a\x19\x7c\x88\xe3\x70\x8d\xeb\xd0\xc6\x17\x94\x5b\x26\x07\x35\xe1\xc6\x42\xb4\xe2\xf5\xbc\x0e\xe9\x26\x44\x7b\x1d\x83\xd5\xb4\x2f\x1f\x17\xdd\x5a\xba\xd6\x4d\xff\x91\x53\x6a\x7e\xe0\x0f\xad\x51\xd9\xfa\x5d\xef\x86\x89\x5b\xa8\xb4\x20\xa1\x0b\x8d\x16\xe7\x66\xe9\x9d\x05\xc3\xb3\x08\xad\x2c\x62\x2e\x62\x19\x1a\xe2\x78\x9d\x08\x0f\x2d\x62\x0e\x0c\xaa\xad\x53\xd9\x82\xdd\x10\x72\x53\x91\xc7\xc2\x69\x4b\x35\xe3\xc2\x4f\xcb\x6d\x5f\x97\xa6\x4a\x8c\x75\xd5\x5f\x99\xdd\x5d\xd8\x05\x19\x11\x73\x5d\x9d\x3a\x2c\x2b\x0a\x2f\xad\x24\x16\xe9\xc6\x83\xdb\x60\x5d\x9e\x38\xfa\x29\x6e\x22\xc0\x99\x9f\xcb\x6b\x76\x15\xcd\x47\x61\xc5\x56\x51\x2c\x4a\xaf\x5e\xf6\x27\xc5\x74\xf2\xb6\x41\x67\xc6\xd6\xd1\x18\xc8\xa1\x8b\xd9\x34\x29\xc2\x45\x2b\x9b\x5b\x25\x89\xba\x63\x3f\xbf\xd6\xe0\xc6\x32\x47\x85\xba\xb0\x55\x0c\xdd\x45\x91\xec\xf3\x50\x84\x55\xcd\x13\x42\x11\x4d\x2f\x2b\x41\x82\x8a\x9c\x00\x9e\xe0\x46\xc6\x59\x95\xe0\xc3\x9c\xdf\x85\xbc\x22\xd3\x9f\xad\x8a\x19\x76\x36\xd6\xae\x1a\x40\x91\x50\xe4\xd2\x35\x02\x1d\x3b\x49\x52\x75\x99\x91\x65\x71\x5b\x1f\x6e\x13\xf7\xb3\x74\x7f\xb5\xa1\x13\xa0\x1f\x48\xf0\x0e\x1b\xdc\xae\x0a\x13\xe6\xe2\x3e\xdc\x70\x43\x2f\xbb\x10\xc4\xe4\x71\xa5\xbd\xc2\xaf\x3f\x79\xb7\x85\xde\x4a\x4b\x87\x45\xcc\x65\x63\x41\x2c\x62\x2e\x93\x0f\xb5\xaf\x8e\x11\x38\x2f\xd1\x85\x64\x41\x7d\xe4\xea\x18\x69\x8b\xb4\x5c\xea\xba\xf1\xac\x8e\x41\x38\x0c\xc7\xea\x18\x69\x7b\xbc\x30\x94\x4e\x33\xe1\xf5\xbb\xed\x33\xec\xe2\x32\x99\xb9\x98\x44\x8c\x66\x33\x4b\x2d\xb4\x50\xaa\x1a\x17\x29\x47\x8d\x72\xbe\x42\x87\x6d\xdb\xfa\x04\x74\x04\x98\x03\xc9\xc7\x22\xe7\xa8\x49\x2b\x16\xce\xe3\x19\x1f\x74\x85\xa0\x3a\x02\xa0\x4a\x30\x22\x63\x49\x50\xf6\x9d\x63\x9d\xcf\x28\x1e\x7c\xc8\x1e\x38\x67\xd8\x03\x6f\xda\x85\xf8\xc2\x98\x98\x0b\xee\x40\x55\xeb\x82\x3b\x30\x69\xd6\x42\x78\x21\x05\x5c\xc6\x61\x76\xdf\x88\xc3\x6c\xa0\x8e\xf5\xe3\x0e\xba\xac\xee\x1a\xae\xa3\xfd\x40\x67\xa4\x79\xc8\x30\xd4\x65\x2e\x2c\xa6\x75\x5e\x59\xc3\x25\x65\x89\xa6\x4b\xca\xc4\xa6\xcb\xc8\x7e\xcc\x02\x81\xa0\x7f\xdd\xcd\xc5\xc8\xe9\xde\x5b\x47\xd8\xfc\x9d\xfd\xf6\x10\x4d\x8d\xfe\x81\x61\x62\x94\x9f\x65\x08\xa2\xb8\x32\x71\x00\x70\x8e\x13\x62\xe4\x16\x23\x81\x48\x61\xec\x82\xfd\x68\x86\x29\x5c\xb7\x97\x84\xd3\x37\x3c\x33\x57\xd2\x32\x3c\xb3\x74\x87\xf0\xcc\x9a\xb5\xac\x9b\x87\xba\x58\x74\xcb\xb9\x39\x1f\xe2\x33\xcb\x02\xac\xcc\x52\x4a\xa7\xea\x93\xf4\xe2\x5a\x8f\x46\x9f\x56\xc2\x4a\xdc\x05\x83\xdf\xd0\x7c\x61\x61\x3d\x6d\x44\xb2\x85\xf5\xb4\xaa\xff\xa5\x29\xd0\xb0\x2d\x1b\xc5\x53\x6c\xe1\x42\xa5\xd1\xc7\xd2\xfb\x5c\x32\xa5\xcf\x94\xa7\x79\x09\x9c\x65\x80\x83\xd1\x5d\x18\x52\x6b\xe4\xb2\x30\xa4\xd6\x48\x67\x61\x48\xad\xd1\xca\xd2\x84\x08\xd6\x6d\x61\x48\xed\xdb\x6e\x2d\xe0\x74\xb1\xe1\x4b\x92\x6c\xc2\x96\x68\xa8\xb2\x56\x1a\x97\x32\xf9\x25\x70\x4c\x06\x0b\x6b\x79\xc3\x85\xaf\x95\x89\x3e\xfb\x22\x3e\xb3\x12\xa9\x05\x97\x62\xdc\xb5\x45\x7c\xe6\xa4\xf7\x24\x36\xd5\xd0\x62\x61\x62\xad\xb9\xcf\x22\xc9\xa9\x46\x17\x4b\x3d\x13\xe2\xe0\xa5\xb9\xb5\x17\x19\xec\x8b\xe6\x44\x6b\x4f\xea\x5b\x07\x33\x5f\x57\xcb\x10\xce\xd3\xfe\xc5\x03\xeb\x8b\x52\x7f\x7a\x7e\x2d\xf9\x1c\xf1\x73\xeb\xba\xe6\x4d\xf8\x1a\x8e\x84\x3f\x5e\x25\x4e\x40\xfb\x8a\x93\x40\x68\xda\xb0\x6e\x59\x4b\x03\xdb\x8a\x17\xac\xab\xb9\xc0\xba\xfd\x30\x0b\x0f\x9b\x99\xc0\xae\xfc\xe3\xe1\xb4\xd9\xd1\xa2\x6c\x25\xa7\xc1\x92\xbd\x72\x64\xd6\x17\x61\x58\xee\x1f\x8f\x74\xe9\x4a\xb3\x3e\x11\x86\x3a\x9f\x4b\x0f\xd0\x9f\xc8\xcc\x92\x61\x7f\xad\x3a\x78\x7d\x02\x04\x82\x69\x18\xad\xaf\xd3\x36\xd8\x33\x6b\xb9\x7f\xdc\x52\x78\xf1\x6c\x83\x3d\x1f\xa0\xd2\xfe\x31\x4b\xe1\xab\x64\xe3\xf6\xae\xc1\xe2\x3e\xcc\xf9\x10\xfe\xa1\x88\x85\xd3\xb6\x8f\xa0\x45\xa7\x3c\x28\x4f\xca\xbf\x77\x98\xd2\x92\x8d\xaf\x98\xd6\x9f\xfb\xc8\x5c\xe1\x94\x17\x70\x0b\x06\xcf\xc1\x53\xf0\x70\xab\xb9\xec\xf3\xa3\x4f\xc6\x22\x04\xb4\xb2\x99\x8d\xe3\xbb\x4f\xcc\x8d\xe3\xbb\x16\x88\x1b\x0b\x6c\x45\x69\x1b\xa1\x89\xea\x8a\x7d\x0a\x1b\xf0\x90\x5b\x55\xfb\xcd\x7d\x8a\x7a\xc0\x03\x6f\xa5\x8e\x76\xeb\x03\x3f\x2d\x03\x4f\x8e\x8b\x3d\x3f\x07\x78\x23\x60\xf1\x36\xde\xd7\x05\x6c\xcc\x05\x4f\xf7\x76\x70\x9f\xec\xcb\x97\x0d\x93\xbf\x72\xe5\x6c\x0d\x74\x60\xc2\x56\xf8\x02\xa9\xd9\xaa\x92\x2e\x1b\x13\xef\x25\x47\x00\xba\xcb\xf2\x62\x64\xa0\x23\x89\xaa\x46\xa0\xfb\x72\xe5\x2c\xc3\x85\x72\x68\x77\x91\x04\x31\x56\xd1\x76\xd1\xb2\xcf\x0f\x56\x51\x77\xf8\xe9\xef\xec\x3d\x24\x68\xc3\xaf\x69\xa2\xbd\x8b\xa9\x19\x81\xa1\xb8\xf3\xc0\x4c\x50\x1e\xf5\xf9\xbb\x08\x3f\x2b\xa1\x9b\x3c\xe4\x68\x9b\x25\xfe\xb4\x8c\x2d\xff\x70\x5c\x57\x94\x3e\xab\x2b\xca\x58\xa8\x9e\xe4\x7b\x36\xa9\x58\x65\x70\x76\xd5\xf6\x9f\x8b\x69\x2b\xe2\xf0\x31\xbf\x89\x00\x5d\x1d\x99\xa8\x39\xa6\xe5\xdc\x78\xa9\x7b\x9b\x6e\x38\xa8\x4c\xca\xbb\xcd\xd9\xa5\x6d\xc3\xfe\x31\x4e\x61\x3e\xac\xdd\x5c\x3b\xe0\xe8\x07\x65\xd6\x05\xd7\xf4\x2a\x86\x20\xf9\x30\x8d\xd5\x26\xbf\x69\xc9\x3a\x30\xd3\x10\xce\x4d\x7e\x53\x13\x54\xed\x0e\x74\xdc\xe3\x9b\x48\xd2\xb2\x3a\x9b\x94\xed\xe5\xfc\xd3\x87\x7f\x93\xc3\xbd\xe4\x80\x1c\x17\x17\xfc\xc7\x5c\x5d\x32\x1a\x1b\xe3\x6d\x93\x77\xed\x10\x70\xcb\x70\xe9\x52\xc5\xad\x89\x8f\xbe\xba\x3b\x78\x13\xb8\xbd\x98\x72\x2b\xd5\xdd\xc1\x41\x72\x1a\xc4\x9c\x36\x8f\xe8\x0e\x5c\x19\x44\x81\x70\x1a\x76\x7a\x53\xdf\xd1\x1e\xfa\xb1\xed\x02\x0a\x16\x1f\xb3\x6e\xa5\x9b\x1b\xb3\x6e\x5d\x6c\x77\x08\x35\xbf\x63\xd6\xad\x98\x78\xa7\x14\x86\x0b\x69\x13\x7e\xba\x66\x99\xa7\x29\xec\xe1\x1e\x3c\x2d\x3c\x6c\xc3\x7d\x60\xbd\x49\xb4\x6a\xba\xb2\x3d\x9c\x80\xf5\x9d\x00\x00\x29\x9d\x71\x19\x95\xce\x64\x7d\x27\x60\x3f\x2e\xbb\xc0\xb9\xec\xf6\x43\x2c\x03\x29\x90\x1a\x24\x1f\x7a\x7b\x3a\x03\x56\x05\x71\x8e\x89\xe0\xf6\xf4\x6d\xed\xef\xbc\xca\x44\x55\x2c\xba\x65\xc0\xf6\x64\x02\xae\x22\xcc\x58\x06\x9c\xd8\x53\x4c\xb2\x92\x98\x04\x44\x33\x23\x42\x01\x52\xba\xa0\x79\xe6\x6f\x45\xd1\xee\x3f\x91\x9f\x7d\xeb\x6e\x52\xc0\x27\xc9\xbe\x11\x43\x49\xb6\x7e\xdc\xd5\xa5\xd7\xf6\xc6\xb6\x5a\x9f\xf1\xfd\xe4\x2e\xf8\x71\xf1\x07\x0d\x7e\x0c\xd5\x48\x2a\x84\x41\x75\xd2\x42\x0c\xaa\x55\x0d\xef\x1f\x43\x95\xe6\x5a\x9b\x8c\xaa\x6a\xaf\xb7\xa1\xa2\xf5\x15\xd9\x0f\x6f\x4e\x8f\xcf\x03\x74\x6e\xa7\x29\x55\xbd\xb3\x90\xf2\xf8\x4e\xde\x84\x93\x56\x41\xb6\x1f\x20\x75\x61\x7e\x9c\xd6\x48\xf2\x41\x34\xe9\x9c\x3d\x46\xd9\x0a\x0b\x37\xd1\x7b\xd4\x7c\x6e\xd2\xa8\x2a\x13\xdd\xa4\x51\xcd\x33\x81\x4d\xf6\x91\x75\x26\xfd\xd8\x27\x70\x8a\x0a\xa4\x51\xd5\x95\x7d\xff\x98\xab\xcb\xe0\x8b\x1b\xa1\xcf\x21\x5e\x2f\x04\x7b\xe2\x3e\x26\xd9\x89\xca\x3f\x7e\xea\xd2\x6f\x7e\x6f\x16\xd4\xb3\x85\x49\x76\x6e\x1f\x26\xd9\x2a\x12\x36\x01\xa4\x0f\xe7\x88\x49\xb6\x66\xe8\x9b\x00\xd2\x87\x68\x4a\xd6\x55\x95\xe8\x7b\xe3\x13\x2e\xb9\x24\xeb\xaa\xda\xe5\xbd\x59\x5b\xd1\x77\xbb\xdb\xf6\x09\x9c\x62\x26\x71\xa2\x55\xf9\xee\x17\x38\xbd\x34\x49\xae\x9a\x97\xef\x0b\x9c\x9e\xd1\x97\xb5\x95\x00\x13\x26\x5a\x79\xf3\x26\x95\xea\xf8\x3b\xff\xea\x7e\x05\x9c\x45\xc5\xa6\x3b\xb9\x86\x57\xc0\x59\xbc\x97\xc5\xce\x8e\x59\x6c\x91\xe5\x15\x29\x04\x9c\x09\x49\x53\x5f\x09\x0a\xe5\xcf\x85\x67\x91\x3e\x26\xe4\x02\x7c\x22\x08\xe3\x92\xa5\xc3\xf8\x97\x1b\xfb\xee\x23\xdb\x8a\x2c\x96\x59\x78\xb1\xf7\x03\x59\xdc\x1c\x1c\xf0\xb5\xaa\xd8\x1f\x30\x8b\x80\x9f\x08\x62\x7d\x54\x14\x9e\x20\x6c\xba\xf3\x34\x99\x99\x43\x39\xc4\x7b\xb8\xf2\x9d\x72\x3a\x10\xfb\xc7\x6f\xb9\x15\x41\xbd\x87\xbc\x05\x38\xf2\x1e\x80\x77\xd8\x42\x25\x3c\x88\xf7\x1e\xf9\x38\xa2\xc9\xe9\x3b\xb9\xfa\x31\xfc\xa0\xda\x89\x39\x3a\xb4\xe3\x3d\x01\x1d\x1c\x78\x49\x71\xea\x2b\xfb\x3d\x01\x1d\xc1\xd8\xab\xe3\x7d\xb7\x2d\x1a\x15\x70\xe0\xbd\x30\xef\x87\xe9\x7a\xaf\x93\x32\x83\xfd\x98\xa2\xd1\xc3\x3a\x98\xfa\x73\x27\xbc\x3f\x06\xa9\xf8\x8c\x7d\x2f\xcc\xd2\x21\xe5\xef\x85\x60\xdb\xb1\x2e\x04\xdb\x61\x7d\x4c\xe8\x11\x7a\xbd\x97\xda\xf1\x1c\x58\x27\x89\x6c\x81\x4e\x08\xba\xfb\x2a\xad\x6a\x96\x81\x9a\x07\xfa\x8b\x7b\xbe\xf2\xe1\xf7\x52\x2c\x49\xaf\x4a\xb4\xe0\x6f\xdf\x82\xe9\x39\xd2\xb9\xb7\x60\x7a\xee\x6a\x15\xb6\x01\x15\xc8\x5b\x9c\x81\x75\x14\xbb\xb3\x23\xea\xab\xc2\xfa\xe8\xab\x9a\xbf\x03\x9b\xf0\xa8\x97\x42\x6a\xf5\xaa\x97\x72\x25\x90\x4e\x69\x42\xf0\x22\x9e\xd2\xb6\xe0\xad\xac\x9c\xdb\x4f\xfe\x54\x6d\xb6\xdf\x8a\x4a\xc0\x5d\xaa\x8c\x0b\xd5\x7c\xb1\xc6\xbe\xb2\xec\xb8\xc0\x59\x5d\x07\xeb\x0b\x83\xbf\x13\x23\x50\x83\xd5\xb7\xe9\x65\xe0\x2a\x36\xa1\xf0\x0f\xf6\x12\x16\xf5\x6d\xac\x04\x2f\xe9\x17\xdb\x6c\xc5\x13\x6f\x03\x22\xde\x7d\x6f\x73\x2f\x99\x41\x4b\xb1\xb5\x0d\x58\xae\x1c\x60\xea\x2f\xe4\x1f\xb8\x11\xc0\x14\xbe\x4d\x0c\x74\x64\x30\xb0\x5b\x07\x59\x7f\x13\x0a\xf7\xd2\x32\x7b\xe9\xba\x77\xd6\xd1\x35\xea\xee\x25\x7b\xd6\x99\x81\x7d\x76\xd7\x94\xb5\x20\x2c\x62\x0f\x7f\x67\x06\x61\x7d\x9c\x24\x60\x82\xdf\x8e\x13\x8a\x48\xd7\xc5\xc6\x3f\x29\xdb\xdb\x39\x5e\xbc\xd1\xde\xce\x46\x64\x99\xc5\x77\x12\x44\x16\xd2\x6c\xfb\x0d\x81\x65\x65\xd0\x82\x5d\x59\x16\xf1\x00\x24\xbc\x67\xfd\xdd\xec\x7b\x87\x7f\x78\x5e\xfc\x03\x08\x91\x44\xbc\x44\x13\xea\xbc\xd1\xdf\x48\x7e\x97\x0f\x35\x56\xde\xb4\xef\xa0\x85\x27\x78\x48\x15\x2c\x3f\x8a\x25\x81\x0f\xab\x6a\xf9\xe8\x17\xab\x6a\x99\xce\x77\x60\x56\xce\x35\xfd\x4e\x95\x2e\x80\x41\x80\x43\xb9\xab\xd7\xa0\x3e\x82\x87\x81\xb4\xdc\xf2\x6b\x50\x1f\x51\x09\xfb\x68\x19\xdc\x77\x1a\xf8\x95\x47\xda\xab\x02\x6b\x5a\x89\x78\x93\xe2\xd8\x44\x4f\xe0\xa2\x62\x2c\xad\x0c\xfb\x9d\x02\x44\x19\x5b\x69\x9d\x3e\x5f\x6c\xa5\x65\xbb\xdf\x1b\x35\xa3\xb3\xbc\x31\x30\x87\x57\x78\x31\x95\x96\x1f\x7e\x6f\xac\xdc\xa5\x0a\x84\x8d\x96\x6d\x7c\x6f\xb4\xc0\xc3\x32\x2e\x05\x62\xc9\x8d\x3d\xbe\xeb\x7e\x03\x4f\x71\x5c\xb5\x52\xf4\x89\xe9\xb3\xb1\x34\x5e\x4c\x9f\x55\x08\xbe\x0f\x8b\x25\xf5\xc7\xf2\x59\x56\xf4\x7d\xb0\x38\x1f\xb6\x4d\x35\x39\x03\x93\xb7\x3e\x89\xe2\xc3\x8a\x72\x6f\xbe\x29\xb6\x12\x3a\xec\xa0\x55\x3f\xbe\x0f\x90\x4a\x51\x1f\xed\x72\x24\xbb\x28\xd3\x12\xe9\x31\x8a\xd6\x92\xe7\xc5\x28\x5a\x56\xff\xc5\x28\x5a\x2e\xf8\x5d\x38\x91\x70\x5b\xbe\xcb\x29\x58\x76\x49\x2d\x33\x85\xd3\xb2\x53\x00\xba\xe5\x92\x32\x7d\xec\xa3\x55\xee\xbd\x8b\x25\xf5\x00\x2f\x14\xeb\x70\xd6\x2f\x76\xd3\xaa\x2c\x5e\xec\xa6\xe5\xee\x5f\x3d\xe2\x50\x11\xbd\xd8\x4d\x9f\x09\x1b\xf0\x9f\xfe\xae\xea\xc8\x32\xf0\x73\x63\xbf\x9b\x2d\x80\x6b\x78\xc9\x68\x9f\x87\x7f\xb3\x05\x5e\xa7\xa9\x8c\xb3\x2c\xfc\xc0\xfc\x63\xc5\x6a\xcb\x3a\x18\x06\x78\x36\x7e\xec\xd7\x94\xa1\x7f\x31\xb4\xe9\x86\x8b\x7a\x0d\x1e\x70\x48\xa6\xb7\x22\x39\x51\x7f\x2f\x40\xb2\x16\xda\x0b\xd3\xfa\xbc\xc6\x09\x38\xbc\x2b\xc9\x98\xe1\xb3\xfc\x7d\x9d\x28\xbb\xf9\x22\xf2\xf7\x1c\xbc\x4c\x54\x1c\xf9\xb1\x3e\x55\xcb\xc0\x97\x4c\x1a\xba\xc7\xbc\x3f\x76\xa7\x6a\x15\xfa\xfe\x58\x9c\xaa\xca\xff\xfd\xb0\xa6\xf7\x1c\x7c\xe8\x9c\xe6\x9f\x76\x70\xef\x8f\xff\x49\x3f\x83\xf7\x1b\x74\x60\x19\x33\x72\x51\x4f\x8d\x9e\x36\x0e\xef\xa7\xfa\x1d\x68\x35\xa2\x56\xfc\xf4\x7e\x6a\x2e\x04\xeb\x05\x2c\xd6\xf9\x73\x1a\xbf\xf2\x97\x9a\x3e\x36\xe3\xc3\x84\x5a\x2b\xcc\x0f\x13\x6a\x23\x48\x7d\x07\xde\x02\x59\xa7\x4a\xe7\x6c\xcd\x04\xa7\x0d\x3a\x0d\x2a\x65\xfc\x1d\xa6\x75\x86\x20\x59\x89\x49\x84\x7f\x60\xcb\x01\xea\x7e\x86\x39\x92\x9d\xff\xd2\x42\xfa\xf4\x9f\x6d\xf3\xc2\x07\x9b\x31\x2d\x33\x0b\x88\xd2\x47\x56\x0f\x75\xae\x1f\xc6\xd2\x1a\xe2\x7d\xa7\x9b\x41\x47\x3f\x56\xad\x6a\x48\xfa\x9d\x3a\x86\xb1\x4c\x1f\xa2\xac\xe1\xf6\x7d\xe4\xfb\x50\x23\xfc\x9d\x38\x34\x4c\x5b\xbc\x82\x01\x80\xe8\x00\x0f\xe5\x33\xdf\x8f\x41\xab\x6a\x34\xbf\x4b\xbd\x0f\x28\xfc\x5d\xae\x20\x83\x63\x03\xad\x45\xf0\x67\xb0\x46\x13\x73\x7f\x97\x28\x62\x6b\x8d\x01\xaa\xdd\xb2\x84\x61\x4f\x93\x21\x58\x41\x52\xb5\x6a\x9c\xfb\xfd\xb8\xb2\xaa\x71\xe9\x77\x81\xbf\x87\x23\x88\xbf\xb6\x65\xc9\xc2\xc1\x58\x32\x2e\x81\x8f\xbc\x1e\x0a\xf6\xbe\xc2\xbe\x73\x80\xbf\x22\xd4\x00\x54\x5c\x4a\xfa\x2f\x09\x35\xc0\x19\x5c\x69\xfa\x87\xca\x54\x7f\x07\x68\x6e\xa8\x0f\x7b\x6a\x2d\xb0\x3f\x7c\xec\x94\xf8\x7d\x68\x19\x0f\xc5\x85\x5f\x11\x77\xfd\x83\xe5\x1e\x36\x4e\x8f\x60\x5b\x8b\xbb\x96\xb1\x38\xb7\x52\x75\x0a\x80\x5a\x55\x52\xc3\x4d\x7e\x58\x1b\x29\x1a\xfb\x0c\xc8\xa4\x5f\xf6\x57\x5d\x0c\x16\xaf\xaa\xf0\x76\x1b\x5a\x1e\x03\x3f\x30\x5e\x17\x7b\x9b\xfa\x6e\x9b\x37\x6d\x3a\x44\x5f\x92\x7e\xe8\x7b\xf0\xa9\x79\x34\x4a\xce\xd7\x94\xca\x37\xff\xd1\xac\xbd\xdb\x64\x40\xe0\x58\x67\x74\x8f\x87\x51\x7c\xbe\x46\xa8\x3b\x6e\xf9\x2f\x05\x67\x09\x8a\x96\xf7\xdd\x26\x9a\x3f\x67\x5f\x1f\x7d\xb1\x10\x3f\xae\xac\xea\x20\xf1\xa9\x7a\x54\x8b\xfd\x75\xa1\x87\x07\xfe\x7a\x42\xef\x3f\x95\x26\x8c\xde\x49\x1a\xef\xa9\xea\xc2\x1b\xb6\xd0\xdb\x01\x0e\xe2\xeb\x02\xec\x21\xeb\xfa\x0a\x74\x87\xd4\x73\x03\x4e\xf8\x23\x63\x88\x8a\x91\xcf\x74\xf7\x73\xfe\x45\xf3\xbe\xee\x64\x80\x2c\x9c\x0c\x93\x8c\x84\x9f\x31\x0d\x6e\x0d\x37\xf0\x45\xee\xaa\x1f\x9e\x1b\xa8\xe1\x17\x39\x01\x20\x23\x9f\x88\x6e\x28\x1f\xda\xca\x26\xa7\xf3\x91\x50\x44\x67\x9b\xcf\x48\xd7\xaa\x54\x3e\xf3\xe1\x8b\xd9\x91\x8b\xef\xe8\x7a\xa1\x54\x47\x14\x77\xb8\xd6\x3f\x8c\xaf\x13\xd1\x53\xaa\x26\x28\x23\xa1\x67\x5a\x43\x74\x61\xc4\x91\xe8\xc2\x1c\x87\xab\x6f\x0b\x81\x87\x57\xfc\x48\x49\xa2\x19\xfc\x67\x0a\x7d\xc3\x24\x7d\xda\x61\x1b\x3a\xe0\x33\x25\x89\xaa\x94\xcf\x94\x24\x46\x62\xfa\xcc\xa1\x6f\xcc\xa8\x8f\x1c\xfa\x7a\xf7\x7c\x53\x64\x97\x26\xcc\x34\xe8\x00\x7c\x13\xe7\x1b\x53\xf7\x9b\x7a\x9a\xb8\xc6\x53\x90\xa5\x47\x33\x17\xdc\x6a\x41\xcf\x96\xb7\xf7\x92\x4d\x12\x5d\x99\xd9\xf4\x21\xe4\x1d\xf2\xe3\x1b\xab\x51\xc2\x3e\x02\x66\x9b\x38\xfb\xcb\x80\xd9\x62\xe8\x9d\xc6\x25\x7e\xe0\x11\x81\xa4\xe8\xd3\x56\xda\x44\x62\x1f\x5e\x76\xc6\x18\xfb\xc8\xa1\x6f\xd6\xe5\x4f\x4b\x69\xb3\x93\x7d\x77\x1a\x9a\x58\x4b\x5b\x7d\x17\xec\xd6\xd7\x40\xa4\xbe\x75\xe8\xf0\x78\x6b\x7f\x75\xba\x93\xb7\x53\xf1\x54\xdc\x9a\xf1\x7b\x71\x3d\x7a\x1e\x88\x95\x8f\x73\xa1\xfd\xe3\x5c\xa4\x8b\x24\x20\x31\xe4\xf7\x87\xbb\x9d\x11\xed\x3e\x73\xd9\xaa\x30\xf8\x1e\xa7\x62\x59\xf0\x5d\x6e\x83\x4c\xf2\xec\xff\x32\xc8\xa4\x7b\xf7\xe4\x0b\xc2\x0f\xa1\xf7\xac\x64\xc4\x49\x37\x12\x1b\xec\x61\xbc\xc2\xcf\x94\xfa\xa7\xa8\xbb\xd8\x08\x1e\x98\xdf\x12\x78\x2a\x99\xcc\x04\x56\xea\x5b\xc2\x4e\x4f\x4b\x1b\x1f\x51\x62\xe5\x75\x65\x4f\x69\xf7\xc5\x14\xd3\xb4\x4b\x12\x66\x6e\x13\xf3\x89\x7d\x4b\xf0\x45\x83\xe5\xe2\x0b\x97\x21\x2b\x7b\xb6\x11\x7c\x8f\xe4\x4a\x3c\xf2\x23\xc1\x07\x1c\x73\x9a\xc8\x1f\x7d\x5b\x7b\x7a\xa7\xfc\x63\x25\x5b\xde\x8c\x5b\x93\x23\x2b\x4d\xc3\xa8\x31\xa4\xd9\x6d\xf5\x32\xfb\x30\xd4\x4e\xa6\x68\x27\x2c\xd6\xd2\x10\x4f\xac\xc8\x9c\xfc\x22\xc2\x7b\xd2\x84\x8e\x5f\x9d\x14\xc4\xaa\x4c\x6a\x22\xe6\xbf\x95\x5a\xfe\xa1\x65\x7f\xff\x9b\x22\x66\x5a\x7e\xa7\x96\x49\x4e\x9c\x34\x11\x30\x93\x8f\x79\x05\xda\xdf\xb1\x35\xf5\xe2\x7e\x85\x59\xec\x7f\x31\x1e\xf4\xd6\xff\x71\xb0\x2d\x6f\x7a\x32\x9c\x24\x7d\x21\xc3\x49\x32\x53\x5f\x4e\x85\x06\x5f\xae\x2a\xe0\x63\x00\xfe\x8f\x6c\xe2\xf0\x77\x25\x87\x68\x3e\x38\x1d\x47\x3f\x0c\xc0\xcd\x1c\xfa\x99\x91\x3f\xd9\x23\xb3\x9f\xfc\x1b\x86\x84\x27\x92\x0a\x13\x9e\xc0\xe1\xc4\x01\x4b\x7a\x71\xdf\xc7\x71\x64\xf4\xf2\x93\x0f\x0c\x44\x31\x1b\x8a\x23\xed\xcd\x7e\x2b\x14\x07\x4a\xd4\x0b\xfe\x36\x0e\xd3\x9f\xfc\xa8\x53\x1c\x47\x3a\x10\x58\x6b\xf2\x87\x7d\xdd\x82\xef\x07\xee\x0b\xcd\xd6\x06\x3d\x3c\x6c\xae\xb1\x65\xfc\xca\xe7\x49\x99\xc1\x4f\x23\x89\xfe\xee\xcf\x38\x4e\x4d\xf1\x27\x65\xad\x3c\x3a\xdd\x9a\xd4\x84\xe8\xb2\x71\x90\xd4\x04\xf7\xc6\x38\x4e\xdd\x05\x1a\x50\x9d\xba\x0b\x58\xe9\xa1\xcc\xd8\xa7\x46\x70\xdd\x7e\x75\x17\xb0\xc1\x2b\xde\xfa\x41\x46\x96\x93\x95\xbb\x34\x07\xed\x8c\x71\x69\xce\xe3\xfa\x5c\x46\x84\x3c\xfc\x10\xac\x46\xc7\x17\x60\x9d\xcc\xea\x12\xac\xee\x87\xae\x03\x83\x29\x5e\xba\x0e\x74\x56\x08\xb7\xbb\x71\xe4\x87\xb1\xee\x03\x90\x7f\x4c\x65\xeb\x4e\xbe\xe8\x47\x10\xcc\xeb\xc7\x55\xb6\x6e\x8b\xa2\x4f\xc1\x60\x14\xd8\x4a\x23\xca\xc4\x51\x4c\x0f\x13\x0c\x59\xcc\x08\x13\xcc\xcc\xcc\x24\x04\xa1\x89\xc3\xd4\x24\x44\xad\x89\xa3\x24\x98\x8e\xf9\xf8\x61\x9b\x65\x1b\xab\xbd\x00\xc0\xca\x14\x41\x1e\x7c\x54\x7d\x1f\x06\xf0\x57\x61\x1e\xc0\xac\xed\x5a\xb8\xcc\x84\x9c\x2a\x87\x1b\x60\x9c\xf0\x99\x1d\x90\x87\x46\x6c\x23\x14\xf8\x18\xb6\x87\xa7\x1c\xe4\x9e\x89\xa3\x69\xd7\x0d\x2c\xcd\x6c\x33\x93\x39\x37\xf9\xea\x0e\xc8\x3f\x06\xb1\x71\x19\xc6\xd1\xd2\x0a\xd6\xbe\x32\xd4\xad\x4d\xb0\x4d\xac\xc2\xd2\xcc\x16\xd3\x80\xe5\xc7\x21\x36\x74\xc5\x71\x10\xb0\xb3\xa0\x71\x8c\x03\x1b\xf3\x52\x45\x7d\x58\xc4\x82\x16\x2d\x0e\x58\xc4\x92\x78\xf9\x63\x11\xdb\x14\xc5\x7f\x1c\xa2\x09\x66\xe2\xc0\xd0\xbc\x34\x21\xc6\x41\xae\x34\x77\x3c\xe3\x2a\x78\x72\xbb\x79\x24\xa6\x1f\xe8\xf9\x00\x05\x06\x31\x7a\x0e\xa8\xc6\xdf\x05\xeb\xba\xde\xf7\xbf\x92\xf2\xc7\x61\x92\xb9\x13\x70\xb0\x66\xcb\x1e\x08\xfb\x49\xbc\xb0\x38\xb0\x5a\xab\x18\x60\xc7\xa1\xd5\x5a\x56\x0a\x75\x01\xc0\x1f\x1a\x5f\xb1\xae\x9a\xb0\x61\xdb\x1a\x07\x41\x3f\x71\x88\x8a\x03\x76\xaf\x4f\xd1\x2a\x12\x4a\x6a\xc9\xe2\x25\x5e\x63\xbe\xde\xdd\x23\x42\x7a\xe6\x24\x31\x50\x43\xe6\x17\x07\x21\x3d\x71\x2c\x8b\x83\x90\x9e\xc8\x92\xe3\x30\xc3\x49\x95\xb4\xc9\xd3\x49\x4f\x4c\xd6\xdb\xc4\xa2\x61\xda\x4c\x2b\x09\xc7\x64\x08\x02\x76\xe2\x08\x17\xc7\xd4\x16\x8b\xc5\xd6\x16\xcd\x85\x37\x60\xa7\x8b\x03\x07\x87\xda\x22\x8e\x29\x18\x2c\x07\x01\x3b\xbb\xb3\x9e\x26\x99\x05\x6c\x6c\xd1\xba\xe8\x43\x52\xdd\x43\xb2\x44\x60\xce\x71\x39\xc0\x8d\xb5\x8b\x98\x08\xc3\x56\x43\xba\x8d\xba\x94\xa8\x08\x71\xa8\x2d\x6d\xce\x1a\x8b\xf7\x81\x7c\x23\x8e\x5b\xb3\x54\x4f\x32\xb1\xab\xd0\x3c\xc6\x71\x6b\x90\x61\x25\x4c\x59\x8a\xbf\x13\x6b\xdf\x03\x02\x53\x36\xdd\x6c\x78\xb2\xe9\xf1\x7a\x34\x65\x61\xf5\x1e\xe1\x03\x0c\x6c\xd4\x30\x48\x88\xe3\xc1\xc0\xe2\xa4\x1f\x78\x2d\xc2\x0a\xc4\xa1\x2d\x5a\x08\x04\xbc\x16\x3a\xe2\x38\x14\xea\xe5\x31\x83\xd5\x0a\x4c\xed\xe3\xc8\xe0\x55\x92\xd6\x1f\xab\x15\x87\xd4\x78\xb9\x50\x17\x80\xac\x4c\x14\xc1\x28\x0b\x35\xb9\x48\xb7\x50\x8d\x3b\x23\x6c\xdd\xab\x28\xbb\x7c\x06\x4a\x97\x48\x7f\x92\xd4\x77\xa1\xdc\x17\x17\x49\x7f\x82\x9d\x62\x1c\xdb\x80\x8a\x62\xca\x46\x37\xee\x85\xb6\xd1\x8d\x7b\xd7\x6c\x94\xfb\x92\x01\xec\xe0\xf3\xa6\xda\xa8\xc0\x3d\x13\x5b\xe8\x18\x18\x6d\x67\x71\x1b\x37\x56\x08\x5e\x0e\x1b\xcb\x03\x57\x63\x03\x9c\x8b\xb1\x01\xce\x9b\x65\xcb\xf2\x8b\xc6\x2f\x8a\x7b\xe9\xef\x0b\x70\x5e\x4c\x1a\xc5\x7b\x30\x5f\x95\xf5\x2c\xde\xab\xea\x99\x3a\x6a\x19\x1d\x4c\x9b\xad\x43\xb4\x24\x74\xd4\xe1\x2c\x55\x2d\xe6\xef\x68\xe5\x2e\x29\xbf\xba\x45\x47\xfe\x54\xea\x32\x1a\xb1\xa3\x0e\x41\x55\xcf\xe8\x94\x3f\x14\xd1\x1e\xdd\x0f\xcd\xc2\xb4\x2d\xea\x7c\x37\xe7\xdb\xd4\x67\x66\xe8\x19\x5b\x17\xaf\x3e\xb4\xbd\x3f\xd6\x27\x4e\x75\x8e\xac\xfb\x79\xa0\x10\xed\x7f\x19\xa2\xc4\x49\x54\x29\x64\x43\x71\xa6\x65\x18\x37\xf0\x49\x58\x29\x78\xf8\x38\x09\x04\x85\xdd\x75\x9c\x04\x82\x3a\xa0\x3a\xe7\xa1\x7e\xdc\xd1\xd1\xe3\x77\xda\x9e\x42\x62\xd9\x35\x0b\xca\x2e\x87\xe5\x5f\x9f\x01\x79\x38\x49\x68\x4b\xfc\xa5\x38\xf1\x81\x6b\x7d\x58\x09\xb5\xd0\x60\x4a\x2a\x29\x27\xbf\x5f\xa8\x85\xac\xa3\x92\x92\x0b\xfd\x54\x49\xc9\x7d\x70\x5e\x68\x5a\x26\x40\x18\x05\xea\xf7\x14\x8f\x53\xc5\x64\x58\x46\x55\x02\xb3\x76\x5e\xbe\xd7\xc3\x06\xde\xb8\xd9\x5a\xb7\x7f\xc8\xdd\xa9\xd6\x71\xb2\x16\x17\x20\x0d\xe0\x26\x6e\x14\x71\x90\xe2\x54\xeb\x38\xa9\x5f\x04\x09\xf0\x4a\x1a\xfa\x31\x69\x38\x91\x86\x93\x4e\x9c\x70\x22\xf5\xcc\xae\x84\x90\xd9\x15\x14\x69\xd3\xdf\x15\x5a\xba\xde\x38\xfd\x2b\x04\x8e\xb3\x1a\x2a\x15\x42\x7a\xe2\x13\xe7\x0d\x75\xe2\x13\xe7\x35\x7e\x22\xa5\xc2\x07\x2c\x4e\x42\x41\xc9\xb2\x9e\x7a\xfc\x4f\x57\xa7\xa2\x89\x70\x45\xaa\xba\x1d\x7f\x27\xe8\x0f\x98\x79\x56\xa5\xc1\xce\x09\xaf\xb8\x22\x3e\x54\x94\x0f\x2e\x3f\x5e\x71\x45\xcc\x44\x43\xd9\x9d\x69\x6a\x28\x9d\x11\x89\x6f\xe5\x83\x4f\x5c\xe4\xcc\x09\x1d\x27\xd1\xa3\xa4\x03\x27\x99\x6f\x8b\xd8\xd4\x80\x9b\x23\x7b\xa2\x95\xcc\xc5\x4c\xad\x64\xf5\x03\xf9\xbd\x68\xd6\x80\x5b\x4c\x69\xe8\x1c\x44\xe9\x26\xa8\x8e\x0c\xa8\xd9\x16\x50\xc5\x32\xa2\x44\xc9\xbe\x9f\x64\xc1\x95\xf2\x9d\x9d\x05\x76\x1b\xba\x0b\x6c\x1d\x55\x4f\xb4\xed\xea\x19\x98\x65\x47\x4f\xe2\x72\x75\xd7\x97\x35\x45\x11\x99\xa8\x64\x88\x28\x57\xa5\x0b\xb3\x63\x01\x73\xb5\xfe\x63\xf8\x6c\x07\x70\x02\xac\x8a\x4a\x48\x18\xc7\x33\x5c\x52\x26\x63\x18\x73\x0c\x5b\xe2\x0c\x21\x65\xc6\xc4\x82\x1a\xf8\x00\xc5\x89\x6c\x6b\xf2\x46\x8e\x33\x23\x99\xbb\x00\xb0\x34\x9d\x80\xb0\x71\xc2\xd3\xd4\xee\x29\x0d\x97\x98\xd1\xb1\xc4\x1f\x71\x59\x4b\xaf\x86\xd3\x0f\x18\xc7\xe2\x2a\xc4\xfe\xef\x7f\x95\x90\x0f\x71\xc2\xed\xd4\x10\x5f\x87\xae\x16\xb0\x5a\xe7\x50\xa2\xcd\x0d\x7a\x2a\xd0\xc2\x50\x25\x4e\x04\x5a\xa7\xe8\xa1\x40\x0b\xe3\x92\x38\x51\x7e\x1e\xbf\x4b\xf0\x2f\x62\x37\xd2\x49\x83\xc9\x65\x48\xd0\x61\xe7\x7a\x69\x1c\x40\x3a\x10\x79\x17\xff\x60\x0a\xc3\x63\x36\x24\xbd\x1e\x72\x93\xee\x7a\xa7\x9f\x8a\xb8\xbc\x94\xcf\x69\x14\x6b\x17\x94\xac\xbb\xa7\x87\x68\x32\x05\x2e\xf8\x33\x2d\xc2\xdc\x7d\x33\xed\xca\x43\x9c\x18\xeb\x0f\x2f\xca\x93\x4c\xbb\x84\x8d\x88\x73\x2a\x11\xf5\x1c\xcd\x94\x22\x3a\xbc\x72\x38\x4f\xde\x54\x0e\xe7\xaa\x4f\xc5\x88\x39\x0c\x62\x4f\x17\xda\xc4\xbb\x98\xaf\xc7\x79\x2b\xc4\x15\x9b\x6e\x33\x85\x5d\xfe\x53\xb4\xba\x67\x31\x6e\x25\x74\x9e\x9a\xf4\x2b\x94\x24\xdc\x0a\x12\xc5\x71\x22\x4e\x35\x17\xc6\x74\x2b\xf2\x96\xa7\xe9\x56\x9a\xd8\x4f\xea\xdd\xe6\x16\xc2\x66\x35\xfc\xd6\xe2\x34\xc5\x4a\x73\x63\x9e\x04\x93\x26\xc8\xbb\x9a\xe8\x60\x8a\x15\x0c\xd6\xe3\x7c\x94\x23\x8a\xb5\x8f\xb2\x5a\x01\x33\xc7\x4a\xf3\x30\x91\x56\x25\xef\xe0\x33\x45\x5e\x42\xa6\xc8\xcb\xa3\x0e\x1b\xa6\x1d\x74\x9c\x29\xe5\x92\x20\xa6\x94\xcb\x59\x9a\xb1\x57\x2a\x90\x42\x2e\x77\x66\xa5\x24\x8e\x7f\x96\xc2\x43\xe1\x5f\x7a\xa6\x79\xca\x53\x82\xe5\x62\x2c\x02\x95\x48\x45\x4d\xac\x22\xcd\x4e\xf9\x95\x1b\x93\xf2\x2b\xf7\x72\x31\xbc\xa4\x33\x85\x54\x6e\xff\x56\xd8\xc9\xb4\x8c\x24\x75\x4a\x9e\xcc\xce\x2b\xfd\x57\x78\x75\xba\x93\xe8\x41\x87\x24\xc3\xec\xbc\xa7\xeb\xb5\x5d\x22\x97\x75\xbb\x44\x40\xf2\x63\xc7\xea\xf0\xfa\xd8\xa6\x7b\xf1\x2c\x6f\xe4\x3d\x92\x02\x92\xad\xe4\x81\x7f\x8d\x50\xe1\xc9\x49\xd9\x95\x5b\x97\x39\x78\x25\x2b\xaf\x62\x34\xc6\x23\x3f\x4b\xde\x6f\x2f\x21\x35\x2e\xc6\xfe\x27\x9c\xb2\x92\xe9\x08\xc4\x75\x25\x52\x1e\x2f\xf2\xec\xca\xf5\x9f\x29\x90\x62\xec\xcf\xfc\x91\x3c\xa5\xcf\x2f\xa1\x62\x8c\x7f\x62\x28\x9a\x90\x5c\x37\x8f\x9d\xdc\xdd\x29\x63\x85\x48\x4a\x4f\xd7\x38\x3f\x9c\x95\x3d\xa8\x86\x24\x38\x25\x7c\x66\xda\x3d\xa5\x62\x0a\x9e\xba\x7d\x29\x78\xe2\x6c\x5c\x87\x39\x03\xa8\x75\xa5\xe0\x09\xe4\xbe\x0e\x7d\x7d\xc2\x6a\xc5\x7f\x1a\x1f\xcd\x7f\x2a\x1f\x1d\x11\xcf\x49\x59\x21\x4b\xd8\x5e\x17\x97\xe3\x2f\xbb\x96\xb8\x14\x4b\x11\xd3\x2b\xae\x74\x83\xe4\x0d\x7e\x1d\x48\x80\x2e\xfb\x7b\x3d\x12\x93\x0f\x9c\x80\x90\x28\xc7\x75\x2a\x81\x01\x50\x8c\xd3\x74\x14\x88\x0b\xc1\x54\x75\xc7\xaf\xd3\xbb\x03\x44\xba\x10\x46\x15\x4c\x17\xe3\x32\xfe\x01\xe6\x44\x71\x9d\x46\x6f\xf0\x8f\xed\x1f\xf4\x6c\xbe\x5c\x79\x97\xeb\x32\xb0\x02\xa8\x7f\x21\x75\xca\xa7\xe2\x65\x2a\x3a\x19\x93\xcb\x8c\xb9\xb9\x3a\x88\xa0\x4a\xcf\x8f\xdf\xb6\x49\x1f\x2e\x53\xe9\xfa\x5a\xbe\x2e\x5e\x1c\x8e\xf8\x20\x42\x68\x56\x72\xfa\x90\xe7\x8b\x7c\x74\x04\x61\x8b\xab\x80\xaf\xdc\x14\x57\xd1\x5b\x81\xe2\x90\x68\x52\xf6\x45\xc3\xca\x61\x45\xe6\x8b\xe9\x2a\xbe\xbd\x28\xca\xdd\x5b\x05\xdd\x63\xf1\x77\xdc\x1d\xc1\xe7\x4b\x0e\xcf\x97\xef\x55\x79\x65\xba\x35\x95\x07\x4d\xb7\x52\xf5\x1a\xb1\x12\xe7\x87\xfb\xf2\x22\x33\x1d\x14\xe5\xaa\xc2\x66\x15\x79\x70\xe0\x81\x77\x23\x7a\x63\x5c\x55\xc6\x07\xf8\x91\x2a\x35\x19\xfe\xeb\xc7\x96\x95\x80\x11\xbe\x54\x4e\x62\x69\x1a\x57\x73\xeb\x5d\xdf\x1f\x63\x56\x15\x2a\x5e\x30\x66\xff\x60\x6d\x8a\x24\x01\x89\xd4\x73\xd5\x21\x6e\xc0\xb0\x0a\xcb\x02\x74\x4d\xb1\x1f\xd7\xd5\xa5\x62\xd2\xd3\xd1\xc8\x85\x23\x9a\x20\x75\x4a\x94\x33\xb0\x01\x07\xed\x42\xe6\x84\xd1\x60\x5c\x5d\xaf\x3e\x3a\xed\x38\x20\xba\xdd\xdd\xb3\x9c\x95\x10\x0d\x88\xe1\xe8\x21\xbb\x03\x77\xc4\x12\xe2\x41\xc7\x55\x43\xc4\xed\xbc\xbc\x2f\x3b\x55\x1a\x40\x5b\x2c\xf5\xa5\x0f\x17\xea\x44\x22\x17\xc6\x15\xb8\xe3\x40\xda\x2e\x39\x2e\x18\xce\x4b\xdb\x7c\x8f\x2d\x61\xd6\xf3\x2c\x12\x66\x3d\x8f\xa2\xb6\xf9\x59\x1f\x64\xc9\xb2\x6f\x2e\x16\x3a\x78\x09\xf2\x4c\xbf\x06\x6f\x11\x2e\xd0\x8b\x70\xea\xc3\x09\xc3\x4f\xfd\x03\x82\x2c\x72\xf8\xd8\xc6\xf5\xe3\xa7\x86\x92\x94\xeb\xc7\x4e\x8d\x40\xc0\x76\x99\x05\xc6\xa7\xf0\x35\xc4\x16\x1b\x63\xef\xe2\xca\x69\x4a\xe6\xf2\x6a\x4a\xd6\x1d\xf9\x33\x7f\x03\xdb\x4d\xb4\x4e\x49\xe5\x45\xb4\x4e\x09\xe2\x95\xec\x11\x23\xab\x0d\x4c\x5c\x99\x1a\xc7\x36\x5b\xc8\xef\x89\x5e\x13\xc3\x0f\x0f\x60\x32\x4e\xd7\x5f\x79\x29\xe2\x9a\xc6\xa4\xe3\x22\xbf\x92\x93\xe2\x22\xbe\x08\xd9\xa9\x44\xfb\x32\x34\x27\x5e\x90\x71\xdd\xc6\xe5\xe1\x6a\xba\x08\xab\xd4\xa4\x53\xb7\xae\xa1\x5c\x15\xd7\x9d\x6e\xac\xc0\xf3\xe3\x83\x1a\xf9\x61\xe3\xba\x95\x21\x4b\x67\xe0\x83\xcc\x10\x18\xd7\x6d\xd0\x17\x27\x4a\x78\x74\x8f\x17\x6c\x50\x74\x29\x1b\x99\x66\x7c\x50\x5f\x37\x91\x95\x29\xe2\x1e\x99\x7b\x9e\x21\x36\x45\xd4\x47\x69\x22\x60\x3c\xf8\xeb\x4a\xc9\x48\x83\x2b\xdf\x7f\x19\x02\xd3\xd3\x42\x1e\x18\x9f\x86\x17\x2c\xcb\xe5\xb6\x2d\x4f\x08\x03\x20\x45\xba\xdc\x35\xf2\xc0\x24\x09\xc6\x7d\xd1\x17\xd0\xb5\xf0\x52\x6b\xd6\xbf\x41\x72\x26\x43\x4e\x98\x9c\x0b\x91\x14\xba\xe8\x82\xae\x2d\x4a\x36\x40\xda\xe8\xb1\xde\x02\x47\xa7\x7a\x29\x8a\x22\x7a\x29\xba\xa6\x7a\x26\x4a\x99\x08\xa6\xd0\x45\x10\x73\xbf\x48\x72\x08\xa6\xd0\x5d\x2d\xcd\xb7\xbc\x6e\xb7\x27\x99\x09\x6c\x01\x72\x2c\x84\x8d\x12\xca\xd7\xd0\x2c\x6e\x39\x41\x13\x0e\x71\x93\xa0\x09\x58\x9e\xc7\x45\xd0\x84\x43\x1a\x4d\xa0\x04\xdc\x1d\xe2\x22\x24\xe6\xf4\xa8\xbd\xac\x84\x78\xf4\x63\x52\xe2\xf0\x96\xf8\x10\x88\x89\x39\x1f\x02\x31\x6f\xc8\x4f\x32\xc0\xc4\xb0\x48\xcf\xd5\x25\x3d\x5c\xee\xc6\x27\x19\xb0\x1f\xae\x2a\xd9\x80\x0f\x9a\x29\xcc\xa4\x8d\x4b\xfa\x86\xd4\x28\xb1\xe0\x43\x50\x06\xa7\x73\x29\x34\x62\xdc\x72\x20\x27\x83\xd1\x28\xb8\x12\x12\xc5\x32\x8a\x29\x56\xa4\x21\x45\x1b\x2c\x05\x3a\x85\x18\xe3\x47\x58\x0b\x99\x16\x50\x14\x22\x87\x1f\xd9\x93\xa4\x62\x52\x5e\xbf\xf2\x65\x7d\x47\xfe\x41\x51\x48\xc8\x32\x94\xaa\x17\x02\x2a\x90\x54\x3c\xca\x79\xd1\x78\x50\x2e\x50\x2f\x40\x3d\xf1\x42\xa8\xd6\x07\x08\x6e\xbd\x72\x0a\x04\x90\x9e\x08\xd6\xaa\x03\x60\xb4\xcf\xf4\xcb\x89\xa3\x41\xb5\x0e\x52\xab\x6e\xff\x50\x50\x96\xbd\x20\x3c\x22\xd5\x48\x14\x84\x47\x24\x19\x8b\xa2\x55\x3b\x1c\x7c\xb9\x20\x8e\xa7\xf5\x83\xb2\xbf\x0f\x28\x6b\xf1\x03\xa3\x5b\x1e\x03\xe5\x32\x94\xf1\x65\x4f\x8f\xf4\x17\xb0\x8d\x40\x8e\x89\x62\x14\xb2\xce\xc5\x69\x59\x6e\x03\xfc\x2a\x18\xb3\xc7\xf9\x27\x7d\x2b\xc8\x9c\x82\x93\x54\x8a\x33\xb1\x03\x67\xc2\x2a\x68\xe9\x3e\xfc\x1d\x92\xcf\xed\x5d\x14\x38\x0d\xeb\x04\x57\xbc\x65\x9f\xc8\xcd\x06\xd3\x73\x0b\x8c\x05\xb1\x44\xb7\x8c\x04\xa8\x5b\x89\x7b\xa1\xdb\xfa\xa5\x27\xeb\x7c\x94\xa9\x53\xbd\x0a\x58\x43\x14\x60\xe3\xb4\x53\x85\x55\x90\xb6\x52\xf3\x2e\xa0\xa7\xea\xd3\x9f\x35\xac\x8d\x9e\xac\x34\xd4\x68\x30\xe9\x8a\x75\xa9\x28\x51\x05\xcf\x06\x9a\x28\x5e\x0e\xa1\x75\xdf\x65\x73\x6c\x54\x5c\x74\xc5\x52\x97\x28\x4b\xe4\x26\xe2\x49\x46\x31\x72\x93\x97\x7e\xd1\x3a\x4b\xed\x48\x69\x18\xa2\x88\x0b\x84\x7c\x38\xd4\x76\x14\x43\x3e\xf4\xec\xeb\xf6\x03\x58\x8c\xf9\xd0\x5d\x13\x59\x1a\x55\x59\x45\x33\x2a\x79\xc6\xa2\x19\x95\x0c\x48\x41\x17\x76\x5e\x76\xd0\x79\x27\x36\x6b\x4d\xff\x60\x2e\x46\x84\xbc\xb2\xc9\xe3\x3f\x00\x80\x32\xec\xbc\xec\x39\x7c\x93\xd1\x44\x3f\x42\x59\xbe\xf2\x63\x55\x0c\x66\x1a\x25\x34\x27\xf0\xec\x6b\xf9\x74\x88\xfe\xd1\x78\xca\xb0\x29\xea\xbb\x4e\xe7\x1f\x64\x77\xef\xb6\x90\xcb\xb3\x2b\x74\xcd\xae\x7d\x3c\x3c\x15\xec\x48\x5d\xe9\xb4\xc1\xf6\x83\x55\x45\x34\x54\x72\xbb\x50\x84\x95\xcb\x65\xc5\xee\x49\xa1\x79\x41\x4c\x54\x14\x73\x95\x91\xaf\x03\xa6\x4b\xd8\x86\xa2\xd4\xae\x0c\x72\x26\xd8\xa2\x41\x84\x81\x96\x2c\x31\x5e\x7d\x05\x77\x42\x9f\xcb\x65\x48\x49\x58\xe9\x41\xe6\x5e\x26\x41\x34\x07\x35\xa6\x05\x6f\xc2\x1c\x76\xf9\x7c\xb3\xba\x3c\xa9\x65\x73\xde\x09\x0f\xb9\xed\x64\x82\x8a\xe1\x19\xf2\x77\x96\xcf\xa5\x9c\x84\x8e\xb0\x57\xf8\x14\x6d\x77\xa2\x20\xd7\xe9\x32\x0a\xc5\x40\x0c\x22\x35\x62\x9d\xda\x3d\xb2\xda\x3a\x09\xc7\x8d\x77\xb0\x07\xf3\xf6\x12\xa5\xf1\xcd\x25\xea\x1c\x6e\x2e\x51\x6e\xf5\x82\x14\xa7\x4b\x9d\x6f\x2e\x54\x37\x48\x4d\x99\x46\x06\x05\x4e\xa6\xbb\xd3\xb7\x37\xaa\x03\x28\x29\x71\x51\x51\xa1\xf5\x6c\xc0\xf5\xea\x11\x37\xe8\x83\x13\x85\x61\x99\x2e\xb6\xea\x31\x27\xfd\x70\xbb\x4a\xe6\x1f\x36\xaa\xfe\x15\x1c\x20\xca\xc3\x35\x2c\x7d\x47\xb2\x33\xbd\x1b\x1e\xae\x64\x18\x8f\xf2\xa0\xe3\x93\xee\x3f\x99\xfa\x8d\x75\x42\xbf\x36\x45\x81\x07\x0e\x4c\xb2\xa8\x42\xcd\x2d\x7a\x60\x0c\x84\x16\xce\x69\xfa\xfb\xc2\x3f\x5c\xf2\xb0\xe0\x11\x9c\xc5\x52\x90\x2a\xcd\x5a\x4e\x83\x45\x5e\x40\x2a\x4a\x2e\x34\x81\xb0\x51\x65\x01\x69\xb5\xf1\x34\xbf\xba\x1f\x68\x02\x5d\x0f\x94\x74\x79\xf7\x2e\x1e\x20\xe2\x06\x7c\xd4\xcc\x8e\x60\xa3\x72\xc1\x91\x06\x25\xdf\x52\x60\xaa\x52\xa4\x52\xd4\xcc\xc1\x90\x16\x35\x73\xb0\xff\x45\xcd\x9c\x87\x91\x78\x0f\x9d\x10\xcf\x51\x36\x5c\x89\x67\x7f\xf3\x60\x93\x28\xa8\x9a\x9b\xfe\x0e\xf7\xe1\xe1\x55\x4d\x37\x6c\x8b\x9a\x0e\xc9\x55\xc1\x41\x51\x39\x7f\x79\x89\x88\xe0\x8a\xbd\x92\xff\xee\xc7\x65\x1e\x4b\x5a\x18\xb0\x0a\xe1\x5c\x79\x7d\xe3\x8b\xb0\x2f\x7e\xcd\x22\x3e\xe6\x4d\xad\xb9\x8b\x86\xaf\xf2\xd6\x35\x7c\xd5\xb4\xb5\x70\xb3\x4e\xf8\x21\x26\x6d\x90\x2b\xcb\xb6\x72\x4a\xd6\x07\x56\x77\x9a\x48\x0e\x5d\x95\x79\x31\x4c\x03\xf1\xae\xa3\xa8\xfe\x73\xc9\x3e\x5c\x25\x5d\x4a\xb5\x7f\xf0\x62\xe5\xf3\xed\xeb\x54\x55\xff\x49\x6c\x91\x15\xb5\x24\x0a\xea\xff\x9c\xe9\xa7\x84\xbf\xd8\x2d\x9a\x36\x01\xd7\xd1\xd0\x8d\xf8\x70\x8e\x74\x31\x65\xe5\x58\xf0\xaa\xfe\x8f\x05\xa8\x64\x09\x26\x6a\xfc\xef\x7a\x34\x0e\x71\xe3\x03\x86\x0a\x90\xaa\xba\x3f\x76\xb4\xea\x7e\x08\x36\xd5\x03\x46\x8b\x55\xaa\x72\x7b\xc3\xb6\x4c\x61\xda\xa9\xbc\xa8\xf5\x71\x37\xac\x02\x81\xaa\x70\xda\x96\x09\x4c\xc7\xe2\xd9\xca\x8c\xeb\x8f\xd9\x3b\x43\x43\x99\x7a\x5e\x26\x60\xab\x7c\x54\x89\x1f\x73\x48\x71\x92\x70\x9c\x30\x5e\x5c\x2a\xf5\x94\x36\x71\x0b\x56\xf3\xc0\x60\x22\x18\xf5\x44\x92\x70\xd9\x1c\xaf\x92\x69\xd9\xe8\x5a\xd9\x02\x5e\x8b\x35\xae\x28\x12\xc3\xc1\x2f\x38\x28\x4e\x4a\xbd\x70\xd9\x12\x74\x79\x41\xb6\xbd\x5e\x95\xb2\xbf\xc3\x17\x3a\x55\x95\x8a\xd3\xb6\x38\xc5\xf1\xd0\xac\x3f\x56\x70\x90\x64\x38\xea\x85\x2f\xdf\xf0\x77\x18\xe4\x3f\x23\xa0\x44\xbd\xe4\x9e\x05\x16\xc0\x2f\x3b\x78\x29\x3b\x38\x7e\x67\x48\x7f\xab\xfc\x22\x67\xa8\xca\x12\xc2\x6d\x56\x59\xc2\x62\x1d\x1c\xe6\x44\x1a\x59\x42\x4e\x72\x2d\xbe\xf6\xc3\xc6\xb8\x1e\x29\xa9\xac\xf2\x7e\x2a\xa3\xab\xbe\x90\x20\x6c\x2d\x86\xf8\x86\x71\xaf\x32\x79\xb6\x90\xc9\x83\xd3\xaf\x3f\x26\xaf\xc8\x9a\x56\x79\x3c\x8e\x41\x85\xc7\xab\x24\xa7\x8c\xaa\x46\x32\xfc\x03\x25\x14\xee\x34\x51\x09\xd9\x49\xc2\xc1\xa8\xd5\x13\xd5\xad\x65\x40\xdc\xea\x3f\x49\x3e\xfd\x30\x18\xc9\xe9\xe8\x88\x27\xc4\x72\xec\xf1\x71\x54\x8f\x4a\xb2\x9a\xe2\xe0\xaa\x1b\x9d\x78\xd3\xc8\x13\xe2\x5b\xd5\x37\x7a\x8e\x9a\x9c\xa7\x8d\x75\xd7\xe3\xe6\xab\x64\xab\x29\x9e\x2f\xf4\x8d\x3e\x0a\x6a\x53\xdc\xc7\x7e\x35\xad\x36\x5c\x68\x94\x8c\xbe\x34\x6a\x73\xd1\x98\x51\x57\xc8\x07\x17\x51\xbb\x31\x33\x2e\xff\x51\x13\x26\x72\x76\xdc\x24\x9c\x2a\x76\xf5\xc4\x41\x8f\x0a\xa7\x98\x96\x3f\x55\xc3\x7a\x5f\x9d\xb5\x9b\x44\x4e\xda\xf0\xe3\x1b\xab\xa6\x7d\xb5\xa3\xea\xaa\x56\x32\xf5\xb7\x38\xd2\x33\xd4\x3d\xf0\x62\x63\x4f\x54\xd2\xa8\x5d\xc7\x14\x51\xba\xcb\xd6\x03\x15\x76\xf4\x84\x8a\x8f\x1a\xc9\x34\xb3\x56\x1a\xd5\xfb\x46\xae\x91\x7c\x3d\xa3\x47\x12\x76\x46\x0c\x65\x3c\x9e\x2d\x98\xcb\xd0\xe4\xaf\x86\xfc\xb4\x2b\x91\x01\xca\x3d\xca\xb0\x91\x87\x4c\x47\xd5\x7c\x5e\xd6\xa4\x06\xbc\xbd\xe7\xc3\xd0\xe5\x97\xeb\x3d\x30\xf7\xf7\x40\xa9\x6c\x54\xe4\x50\x53\x38\x06\x7b\x50\x7f\x5c\x64\xd5\x48\xad\xaa\x6c\x94\xfd\xa9\x2a\x1b\x95\x34\x54\xf5\x89\x3d\x3b\xf6\x09\xe0\xba\x0e\x65\x4a\xc0\x95\x2a\x44\x31\x18\x23\xf9\x7c\x71\xd6\x99\xca\x08\x9a\x18\x76\xfc\x12\x18\xa4\x5f\xe7\xe5\x30\x86\x1a\xbf\x9c\xd8\xd4\x50\x57\x8a\x3c\x79\x0e\x78\x1c\xb0\xa5\xd2\x66\x3d\xea\xcc\xe7\x00\xd3\x44\x55\xa8\xd9\x6e\xd4\xa9\xea\xc6\x21\xb7\x28\x06\x64\x13\x85\x92\x2b\x8e\xa2\x70\x70\xe1\x56\x14\x85\xe7\xe5\xb1\x36\xd2\xf8\xe5\x5a\x90\x95\x86\x84\x42\x51\x91\x82\x75\x22\xb9\x44\xcd\xe8\xe2\xd3\x0f\xe5\xd0\x0c\x78\xfb\x4c\x00\x90\x1b\x33\xe9\xf2\x97\x69\x72\xd4\x1b\x03\x64\xef\x04\x8d\xe9\xd5\xab\x57\x8d\xe9\x55\xee\xd7\x8c\x5f\x2a\xc9\xd6\x64\x5e\xed\x78\x7d\x7c\xf3\x50\xeb\x51\xe3\x23\xd1\x7e\x52\x0f\x45\xcf\x68\x0d\xf3\xd9\x52\x1f\xcd\x7b\xdd\xff\xc7\x87\x8e\x34\xf5\x51\xcd\x22\x39\x41\x85\x78\x9d\x6e\xf9\x63\x42\x32\x31\xcb\x60\xe5\x91\x00\x68\x93\xcc\xa3\xb3\x3e\xaa\x55\x84\x46\xd3\xdf\x6c\x82\xe9\xaf\x67\x61\x69\x92\x2c\xfe\x2c\x35\x43\xee\x92\x92\x3a\x95\x59\x75\x29\x87\x94\x3c\x19\xd4\x5c\x8e\xae\x2e\x83\xfb\x64\x35\x85\x13\xe2\xdc\xf2\x45\x06\xc8\x19\xb9\x5c\x6a\xbc\x92\x94\xfb\xf1\xf1\x56\xa3\xb9\x2c\x24\x1e\x71\x51\xcd\xc4\x7c\x5a\x6b\x1b\x2d\x9b\xbe\xe0\x1b\x4d\xd8\x1f\xf5\xc7\x37\xb6\xf0\x8c\x22\x9a\x33\x39\x5e\x54\x34\x8a\xe5\x82\xa1\xaa\x08\xe7\x4c\xfe\x1f\x95\xb0\xa7\xc3\xbd\xc0\xb5\xb2\x68\xe2\x55\xcd\x43\xe8\xef\x3e\x25\x58\x15\xd8\x48\xdf\x76\xf5\x85\x94\x0f\xcb\x68\x39\x65\x07\x5e\x62\xa9\x4b\x85\x30\x8b\xcf\xd3\x41\x34\xb0\x52\xb3\x31\xb9\xfe\x00\x15\x23\xf8\x9e\x77\xc5\x8b\x18\xd1\x89\xbe\x88\x95\x98\xe7\x0b\x0b\x9e\x4d\x79\x2c\xf0\x48\xac\x28\x16\xbb\x62\xf0\xfa\xe5\xd3\x1a\x28\x3e\xa5\xb4\xf2\x31\x1a\xae\x17\x79\x1f\xcc\xbd\x42\xcc\xfe\xbc\xa6\x80\x83\x38\xa9\xc5\xb5\xf8\xd0\xc5\x70\xdc\x9b\xce\x93\x4a\x99\xda\x21\xe5\xf7\x8f\xe6\x10\x07\x1f\x52\x25\xb0\xaa\xe9\x0d\xa9\xe2\xab\x1d\xca\x05\xc0\xd7\x96\x3a\x3d\x2e\xc3\x76\xe4\x81\xf9\x0d\xdf\x4e\x15\x8e\x97\x1f\x5a\x9e\xc3\x53\xb5\xd3\xf7\xbf\xe5\x8c\x7d\x08\x30\xc6\x34\x3f\xb2\x09\x99\x07\x19\x04\xee\x2c\x08\x3b\x1a\x0d\x5d\x1f\x36\xfb\xd1\x14\xc8\x35\xeb\x3b\x75\x1b\x08\x15\x28\xd9\x30\xf9\x82\xbe\xb4\x1f\x73\x16\x78\x69\x45\xbb\x08\xb3\xe2\x00\x97\xf1\x3b\xad\x03\x3a\x83\xb4\x0d\xe9\x1a\x8e\xef\xd1\xc8\xd4\x42\x96\xac\x68\x97\x5b\xc6\x0c\x30\xdf\x22\xd6\x6f\xb4\xa2\x98\xe3\xf0\x23\xf3\xe9\xd2\xba\x10\x1f\x93\x4d\x6e\xc4\xc0\x2a\xf9\xfb\x63\x00\x43\x5b\xa0\x04\x77\x95\x0b\xa1\xe0\x60\x26\x1a\x36\xdd\xa1\x2a\xad\x91\x4d\xa5\xab\x74\x6f\xd5\xb7\xf3\x9f\x89\x2a\xa2\x61\xfd\xad\x91\x74\x93\xb3\x11\x80\x2a\x4b\x31\xfc\x03\xe3\x54\xa1\x44\x96\x85\x53\x54\x34\xc4\x57\xcd\xfb\xaa\xc9\xda\x28\xbf\x69\xe4\x19\x2e\x59\xcb\xf8\x42\x20\x7e\x33\xdc\x96\x20\x1b\x6e\xcb\xb1\x9b\xa2\x0f\x1b\x20\x66\x76\xb8\xc6\xe3\x49\x98\x08\xb6\xa5\x2d\x40\xeb\x66\xd4\xe7\xf8\xb5\xce\x9e\x71\xa3\x34\x82\x8b\x1f\xe2\x44\xf7\x1d\x65\x03\xb9\x3b\x11\xe1\xc7\x99\x94\xe2\x86\x93\x1b\x8f\x94\xdb\xd1\x3a\x0c\x71\xb1\xd3\x2d\x31\x02\xa4\x9e\x98\xe3\x3f\x6e\x2d\x3d\x05\x94\x82\x8b\xad\xc1\x8b\x0c\xdc\x79\xa2\x05\x06\x64\xdc\x65\x2d\xe0\xe1\xb8\x3d\x5a\x0c\x7e\xb7\x31\x52\x45\x3b\x8d\xcc\xfa\x60\x03\x25\x89\x62\x8f\xce\x7a\x44\x52\x8c\x16\x58\xd9\x58\x1e\x79\x79\xd2\x7e\x98\x17\x08\x3a\xdc\x86\x76\x0f\x3c\x13\xda\x40\x91\x0f\x87\xd4\x7e\x4c\x85\x69\x1e\xa2\x0d\xb3\x0e\xb0\xfc\xa8\xdf\x3c\x7a\x03\xf1\x8a\x93\x18\xb9\x06\xac\xe6\x70\x0d\xa6\x63\x63\xd2\xea\x66\xa7\x7d\x92\x0b\x32\x71\xbf\xe5\xe5\xdb\x26\x6a\x2d\x7f\x96\xe0\xd1\x91\x8e\x75\x92\x90\x99\x9d\xf2\xc7\x8d\xf8\xc2\xf3\x46\xc2\x5f\x99\xf1\xa6\x01\xb5\x48\x83\x41\x34\x6e\xa7\xd1\xb8\x70\xbb\xa2\x9d\xf6\xc8\xef\xf1\x26\x6b\x46\x96\x72\x42\x88\x72\xb4\x05\x6a\x44\x96\x52\x3c\xdc\x1e\x50\xd1\x13\xfd\xbb\x52\x43\xe3\x9f\xf6\x88\x8a\xd6\x01\x15\x3d\xe9\x0f\xa8\xe8\x94\x1f\x65\x0e\x4c\x0d\x49\x8e\x86\x4f\x6d\x09\x1d\x33\x58\x52\x15\x60\xf8\xdd\xac\x57\xd2\x36\xd3\x00\x6b\xcd\xd9\x56\xa5\x12\x1d\x11\x71\x4a\xbd\x67\x23\xca\x94\x6a\xcc\xb6\x94\x94\xbb\xb5\x98\x58\x27\x61\x58\xbc\x7b\xbb\x8d\x51\x36\x38\x7b\xc3\x49\xb9\xfb\x84\x93\xd2\x97\xa8\x91\xe1\x57\xf7\xa3\xb6\x31\xe2\x95\x26\x13\x1e\x4a\x7d\x79\x23\x63\x6f\x71\xf6\xbf\x3b\xb4\xa8\x44\x68\x9b\xd7\x6f\xb5\xad\x47\x86\x55\xc1\xbd\x2c\x72\x29\x36\x8f\xc8\xea\x1f\x2f\x95\xfc\x9d\x13\xe3\x3e\x91\xe2\xb7\xb8\x44\xa4\xf8\xd5\xaf\xa2\xfd\xee\xd6\x52\xa4\x00\xa4\xfb\x2d\x6e\x32\xe9\x7e\xb5\x2f\x68\x5c\xa7\x1a\x51\xb4\x57\xa0\xff\x54\x5e\x34\x02\x20\xd4\xec\x98\x0b\x4f\x22\xf9\xbb\x54\x8b\xba\xa3\xf6\xf1\x8a\xf4\x58\x91\xcf\xd7\x57\x71\xfb\x0a\x65\x56\xe3\xab\x94\x01\x84\x60\x08\xd5\x15\x20\x18\x82\x7a\x82\xf6\x79\xd2\x01\x9c\x78\x07\xe4\xb9\x88\x46\xbc\x83\xe2\x8e\x90\xcf\x57\x8b\xc6\x46\xb8\x03\x45\x40\xed\x43\xbd\xe1\x8e\x7c\xc2\x6c\x3f\x5c\xd8\xee\xec\xc7\x9b\x08\xce\xab\x1f\xc0\xcf\xe9\xef\x87\xf0\x9f\x94\x7d\x6b\xd0\x51\x3f\x4c\x89\x59\x29\x87\x88\x67\x2d\x23\x19\xf0\xb8\xeb\x07\x86\x80\xcd\xb2\x2e\xed\xd5\x26\x38\xe5\x57\xc7\x50\xd7\x51\x6d\xee\xab\x6d\x50\x76\x51\x7f\x8b\xd7\xcf\x03\xc0\xe9\xe9\xf4\xa1\x56\xfd\x83\x77\x25\xf7\x73\x37\xed\x9b\xe7\xb6\x9b\xf6\x4d\x31\x6a\x37\xed\x9b\xe2\xcf\x7e\xe6\xd3\xac\xf3\xa1\xaa\xa3\xd8\xb3\xaa\x8e\x62\x1b\xdf\x69\x70\x9d\xdd\xec\x6e\x44\x14\x8e\x7e\x26\xe5\x74\x1c\x29\x27\x9d\x5d\xbe\xd3\x98\x22\x16\x3f\x07\x11\x0f\xa3\x5f\x78\x92\xdb\xda\xf4\x6e\x3d\x6b\x61\x76\xe2\x18\x17\x41\x2d\xaa\x95\x64\x81\xa0\xae\x9d\xd0\x06\x72\xf9\x3d\xed\xba\xa7\x2d\x78\x3f\x5c\xee\xcf\xe5\x8b\x11\xc4\xeb\x45\x1a\x6e\xc7\xc5\x07\x10\xa8\xd7\xcd\xfa\xa6\xc7\x45\xc7\xb8\xfb\xbc\x84\xa5\xe0\x74\x0b\x31\xe9\xc5\xe7\x9b\xd3\x32\xeb\x5b\xb7\x05\x99\xde\xba\xfd\x1a\x2a\x77\xd8\x5a\x95\x8d\x50\x96\x04\x8c\x2d\xaa\xea\xc8\xc1\xe4\x5e\xd1\xd9\xb8\xd9\x55\x9d\x0d\xa8\xdc\x35\xfd\x11\x6f\x10\x99\x9c\x91\x2d\xb0\x90\x73\x1f\x6b\x5e\x1c\x0c\x0f\xfb\xd0\x08\xe1\x10\x1d\xfe\x21\x4e\x31\xa4\xf9\x14\x71\xf5\xe0\x26\x42\x87\xa0\xde\xc8\xae\xd4\x2d\xcb\x32\xba\xdb\xb8\x98\x75\x4d\xd9\x7a\xc3\x39\xd2\x09\x37\x5d\x38\x91\x1d\xf4\xa6\xf1\x1c\xc3\x37\x8d\xe7\xc4\x9c\xa6\xa7\x24\x5c\x6e\x6f\xba\x70\xba\xf8\x64\x31\x51\x3a\xda\x33\x8b\x09\x8c\x71\x27\x8b\x89\xa6\xe3\xbd\xeb\xfa\xc7\x4c\x7a\x32\xaf\xc0\xd8\x1b\x7f\x00\x49\x9a\xfe\xb8\x12\x9a\xfe\x28\xbd\xeb\x7d\xf2\x74\xb1\x45\x1a\xa7\x31\xf8\x8f\xf1\x68\xea\x65\x3a\x8c\x87\x89\xd5\xa3\xff\x18\x8f\xa6\x28\xa8\xf7\x5c\x3a\x56\x0b\x17\xb2\x52\xda\x9f\x5e\x18\x3d\xe4\x0c\x78\x2f\x74\x93\xb3\xe1\x23\x1e\x1d\xa9\x48\x21\x08\x70\xf4\x80\x4d\xf0\x77\x9c\x88\x60\x6a\x3a\x79\x52\x14\x8f\x77\x8d\xb1\x71\x16\x8f\x1e\x44\xd8\x02\x30\x39\x94\xd3\x01\x88\x73\xcf\xc5\xd5\x87\x9e\x03\x5c\x99\x7d\x60\x12\xc2\x3d\xd1\x0d\x85\xee\xf6\xc0\xab\xe4\x19\x45\x2f\xa6\xb7\x6a\x1f\x5e\xc9\xb6\x7d\xb8\x0d\xad\xef\x85\xd3\xad\x84\xb8\x5a\x34\x21\x3b\x8a\x5e\xac\x1d\x96\x24\xb2\xa7\x89\x78\x52\x22\x36\xb9\x59\xec\x95\x54\x29\xda\x83\x75\xc2\x4e\x15\xb1\x8a\xf0\x52\xe4\xad\x88\x3e\x89\xad\x20\x82\xce\xa4\x3a\xfc\x81\xb0\x22\x70\xff\x8d\x6e\xfa\x33\x15\xdb\x1d\x01\x45\xe0\x4b\x1c\xfd\xf6\x7d\xef\x12\xdf\xf9\x70\xf7\x43\xf7\x4e\x49\xf3\x9d\x7b\x6e\xd7\x3a\xa6\x50\x24\xd0\x36\x92\xce\xfe\xa0\xdb\x70\xae\x04\x7b\x22\xc8\x54\xf4\xc7\xbb\x88\x9d\x40\x82\x10\x3a\x02\xf7\x27\x49\xbc\xad\x9d\x08\x13\x7c\x7c\xaa\x89\xb9\x66\x38\x53\x04\xd2\x15\x1a\x10\xac\x34\xfa\xa3\x53\xcc\xaf\xb8\xb4\xd8\xe0\x67\xf8\x97\x29\x7c\xb0\x2f\x4a\xd2\x3a\x32\x82\x99\xf5\x11\x11\x88\x1d\x4b\x6c\xb2\xed\x64\x53\x81\x5b\x67\x31\xde\xc0\x1d\xf9\x40\xe4\xa9\x36\xd2\xa5\xd7\x14\x91\x2e\xf5\xa5\xee\x9b\x08\x92\x36\xc0\x94\xb8\x2b\x38\xea\xbc\xf5\x07\x59\xa1\xa2\xcb\xa8\x78\x97\x6d\xac\x34\xc2\x5e\x17\x4b\x66\x4f\x5e\xaf\x4c\xe1\x85\x61\xe5\x01\xd7\x5f\x2f\x29\x3a\x7d\xb9\x0a\x3c\xf6\x2f\x46\xcc\x8e\xac\xdb\xfb\x25\x39\x79\x89\xd2\xe0\x9c\xb1\xd0\x39\xb5\x1e\xe8\x2f\x89\x56\xbc\xfa\x5e\xc9\x8c\x87\xf8\x4d\x7d\xb4\x1f\x08\xda\xed\x09\xe3\x5d\x7b\xfa\xd0\xb3\x7a\x46\x3f\xf4\xac\x12\xd2\x2f\x0d\x88\x28\xe3\x19\x19\x96\x3d\x42\xd6\xc1\x41\x93\x27\x6e\xff\xe0\xa7\xdd\x29\x64\x03\xd3\xa5\x40\x45\x34\x5d\x60\x6c\x7d\x14\xcc\x74\x6c\x7d\x8e\x84\x81\xc7\xa0\x98\x87\x57\x18\xf9\x8b\x22\x30\x25\xd6\x93\x36\x60\x28\x88\x2f\x14\x61\x4c\x6f\x8e\x7a\x1c\xf6\x6f\x59\x3e\xde\x3a\xf0\xf1\x3c\x2d\xc2\xb8\x48\x0a\xb3\x83\x80\xdd\x5a\x3b\xc4\x09\xdb\xcc\x55\x19\xe7\xc5\xef\x7f\x8a\xf1\xe2\xc7\x5d\x84\x62\xe7\xf8\x31\x14\xa1\x10\x36\x4e\x78\x79\x84\x9b\xf1\x63\x0d\x42\x53\xbc\x50\x12\xa0\x70\x2d\x08\xc9\xed\xb5\x1d\x17\x1d\x71\x37\x07\xe6\xbf\x5d\x26\x3c\xf0\xf2\x52\xcc\x19\x58\xff\x86\x12\xb4\xf8\x71\x03\x21\x5f\x11\x17\xcf\x8b\xb0\xcc\xf3\xc2\x45\xd0\xe3\xab\xb0\xe2\x81\xa6\x45\xef\xf5\xb8\xa4\x59\x4c\x1c\x63\x1a\x8f\x40\xfc\xae\xf8\xe1\x31\x8e\xe2\xc8\x74\x5a\xd0\x9e\x39\x40\xc1\xb8\xc0\x01\x0a\xb1\x51\xdd\x89\x22\x11\xb5\x0e\xaf\x05\xb0\x27\x08\x2d\xa9\xa5\x77\x14\x24\x24\xee\x68\x01\x9e\xd3\x7e\xa0\xa7\xee\x90\x56\xc1\xca\x29\xc3\x94\xae\x3a\x21\x44\x85\x25\xe7\x98\x04\xc1\x25\x35\xab\x8e\xea\xd1\xb3\x0e\x4f\x81\x66\x4f\xa0\x39\xef\xb7\xf8\xdd\xff\xa5\x38\x1b\x34\x23\xd5\x19\xa3\x0c\xa9\xa2\x40\x93\xa2\xb1\xbc\x0d\xee\x5a\xe8\x30\x84\x09\x85\xa5\x41\xba\x7e\xfd\xc6\x03\xe7\xab\xea\xe6\x10\x11\x52\x2d\x5a\xe0\x88\xe5\x4b\x3d\xd4\x8b\x70\x9e\xa3\x7b\xe6\x19\xac\xc3\xee\xc3\xe8\x04\xd1\x1e\xd5\xd8\x05\x8e\x55\xca\x02\x02\xc7\x2a\xb5\x7a\xf1\xbb\xd0\x67\x75\x02\x38\x56\x91\xc1\x27\xa2\x0b\x0f\x0b\x81\x7c\x41\xd9\x5b\x74\xe1\xb1\x7f\xe1\x71\x5c\x68\x90\x38\x94\x7a\x8f\x66\x25\x7d\x7f\x5c\x5e\x43\x70\xcb\x7a\x85\x9e\xdf\x4a\x21\x22\xd4\xa1\x41\x6e\x82\xb4\xf9\x6a\xe0\xc2\x74\x66\x3e\xda\x23\x14\xcf\x8b\x6d\x91\x1c\xbc\x1f\x70\xf0\x6e\x5c\xe4\xf8\xf6\x45\x60\x2d\x77\x31\xdd\xa7\xa0\x8e\x91\xee\x53\x30\xbe\x91\xee\x53\xd0\xd9\x18\x2a\x5e\xec\x4c\x5f\x2a\xfb\x4a\x5f\x2a\xee\xde\x18\xd8\x34\x09\x64\x2a\x34\x5c\x3a\x1d\xa4\x74\xed\x0e\xb5\x1b\xee\xd9\xc0\x8d\xc7\x75\x34\x02\x50\x77\xf1\x8c\x00\xe4\x46\xe9\x2b\xd5\x6d\x81\xf8\x41\x17\xf8\xc0\xe4\xb7\xaa\xdd\x8b\xd4\x73\x64\x2d\xf8\xd6\xcb\xd1\x75\x89\x3a\xa7\x1f\xda\x3d\x09\x4a\x2a\x3a\xdc\x3b\x73\xaa\x5e\x82\x3f\x65\xa2\x05\x60\xca\x44\x8b\x1e\x86\x03\xf2\xa4\xa7\x42\x43\x9c\xbb\xbd\x43\x68\x81\xaa\xc2\xd7\x53\x18\xdc\x47\x0d\x66\xdc\x5e\x1b\x7f\x7a\x9b\x85\xea\x09\x0d\xe0\xe2\x96\xf3\x66\xd2\x37\xbe\x29\x2e\xf8\x2d\xc3\x28\x65\x53\x53\x01\x33\x10\x6a\x2a\x54\x12\x86\x9a\x0a\x15\x6d\x41\x1e\x55\xb5\x71\xf1\xc8\xd5\xc0\xc8\x04\x5a\x8b\x53\x2b\xbb\x40\x6b\x71\xaa\xae\x8c\x27\x1f\x01\xcc\x46\x9f\x73\xfd\xa4\xe3\x49\x66\xdb\x6a\x3f\xc0\xbc\xee\xc3\x20\x3e\x7a\x1e\x85\xba\x09\x57\x2c\x35\x10\xee\x12\x8c\x46\xd3\x8a\x3c\xb4\x16\xd6\xd4\x22\x96\xf1\x2d\x5d\xd8\xa5\x4c\x0b\x90\x51\x3a\x0c\xfd\x9e\x62\xa5\x1d\x98\x4d\xb8\x77\x89\x51\x1d\xb1\x4d\xd8\x09\x03\x14\x24\x45\x0d\xa9\x3c\xae\x4b\x45\xc1\x65\xec\x94\xe4\x33\xe5\x1d\x44\xa3\xb0\x7c\x13\x4d\xc2\xae\x10\xb3\x5b\xf4\xca\x64\xb8\x6d\xf0\x0c\x01\xd9\xd0\x3f\x47\x78\x79\x20\x4b\x54\x09\x95\xcd\x95\x1c\xaf\x71\x44\xfc\x59\xb3\x29\x80\x83\xdb\xe8\xb2\xc1\xf1\x7a\xa5\xb0\xb6\x2f\xa2\x4a\xf8\xf2\xf8\xf1\x14\xa5\x48\x3b\x5f\xc8\x5c\xb5\x53\x1c\xa6\x3c\xa2\xfa\x26\xa9\x40\x0f\xd3\xa2\x6a\x4b\x13\x70\x15\x46\x25\x8f\xf8\xb4\x47\xa0\x58\xc5\x1e\x2b\x91\xd7\x44\xf2\xff\x21\xcb\x73\x5b\x4c\x23\x32\x6c\x80\x0d\x34\x8f\xa6\xf8\x30\xd0\xe6\xc5\x19\x1f\x12\xc5\x61\xff\x5b\xc3\x54\xca\x18\x16\x69\x4f\x3c\x90\x5a\x10\xf5\x30\x86\xd9\x45\x86\xbf\x63\xea\xc4\x8d\x37\x0e\x4c\x9d\x80\x6e\x20\xbf\x68\x93\x89\x0e\x93\x88\xc0\xf4\x8c\x03\x21\x7c\x76\x84\x91\x15\x3b\x32\x4c\x0a\xc2\xe2\x8d\xd3\x01\x68\x8b\x30\xc2\xf0\x27\xe3\x4c\x52\xd0\xf8\x58\x7e\x30\xf4\x89\xf0\x4f\x90\x0c\x59\xe3\x35\x34\x4e\xa2\x16\x80\xef\xe3\x82\x43\x67\x91\x86\x3a\x05\xa8\xc5\x48\x06\x03\x90\x92\xc1\xb0\x3e\x02\x3f\x16\x69\x60\xfc\x9b\x7d\x5e\x08\xff\x9c\xc2\x8f\xa5\x08\xf9\xf6\x71\xc1\x3d\x17\xfb\xe7\x79\xc4\x41\x19\x17\x5c\x4e\xb1\x9f\x45\xff\xfe\x2e\xd0\xc2\xf0\x52\xc7\xfe\x91\x58\x42\xd6\x46\x01\x66\x97\xa8\x08\x33\xe3\x92\x8d\x55\xbd\xc9\x20\x1b\xab\x44\x75\x14\x24\xfb\x2e\x5d\x81\xd3\x62\x33\x07\xdc\x88\xc6\x0c\x03\x6e\x44\x3b\x8c\x91\x96\xbd\xb0\xff\x03\xd9\x43\x27\x6d\x60\x0c\x64\x0f\xad\xfe\x1d\x2e\x65\x54\xf3\xb6\x43\x95\x46\xc5\xc8\xc8\xce\xab\x6e\xee\xbc\xbb\x06\x9c\x88\x8a\xd0\x51\x0d\x83\x09\x97\x3d\xea\x80\xc1\xb1\x0c\x73\xc4\xad\x3b\x60\x57\x54\x7d\x8e\xaa\xaf\x5f\xf7\x8f\xc5\x1f\xcc\x11\x3e\x46\x26\x68\x54\xb8\x23\x91\xa0\x21\x57\x85\x1e\x0c\xbd\xcb\xf5\xe3\x1c\xc4\xbf\x96\xb3\x1c\x2d\x45\xbd\x0c\xdd\x04\xb6\xfb\xe1\xf1\xb5\xb9\xc7\xd7\x16\x90\x0a\x51\x9c\xf8\xd4\xc1\xe3\x6a\x10\x93\xda\xc0\x44\xa3\x1b\x75\x04\x9e\x60\x10\x64\x5a\x73\xa7\xd1\x31\x08\x82\x18\x8d\x0e\x2f\x06\xef\x3f\xba\xcf\x20\xeb\xfb\x0c\xb2\x0c\x8f\xe6\xd6\x74\x69\x94\xbf\xc3\xa3\x39\xe7\x00\x88\xb0\x8c\xb8\xd6\x09\xa0\xbb\xa8\xe2\x90\xba\x0b\x5f\x69\x83\x04\xaa\x55\xc4\x0f\xf8\x1d\x2e\xa3\x91\x3c\x46\xb7\x05\x72\x4c\xd8\x8a\x31\xa0\x88\x62\x26\x2c\x46\x55\x85\x36\x7e\x5c\xc5\xac\xa2\xd7\x80\x3d\x74\xb9\x07\x1c\x98\xfb\x36\xe4\x82\xf2\x0f\xb8\x20\xae\xd5\x31\x1c\x1a\x58\x61\x1d\xd2\x73\x74\x0c\x09\xa4\xc3\x7d\xf4\xc4\xef\x13\x11\x2a\xc4\x72\x20\x25\x20\x53\x73\x8c\xe9\xc8\xd4\x9f\x30\xa6\xf0\xfa\x63\xc2\x98\x7a\xe8\x94\x18\x78\x48\x27\xbc\xa8\xc8\x33\x73\xce\x36\x96\xaf\x62\x31\x74\x90\xd6\x38\x65\x10\x6d\xba\x4a\x1e\x4c\xbb\xea\x7b\x69\x60\x03\xa1\xf5\xd9\xd0\x3d\xda\xc7\xdc\xd0\x3d\x5a\x03\x9a\x41\xa4\x40\x25\x2e\xe3\xf6\xc9\x9f\x1f\x48\x75\xc5\x1f\xbd\xa3\xb5\x6c\x19\xb7\x7e\xf4\xf9\x8f\x4c\xa1\x58\x70\xab\x78\x4a\x20\x65\x1f\x9c\xd6\x83\xb4\xd9\x23\xf8\x28\xfb\x80\x7d\x1a\x4f\x32\x82\xb4\x7f\x84\x98\x85\x7b\x84\x18\x89\xcf\x80\x63\x68\xc6\x49\x19\x08\x26\xc2\xa8\x43\x43\x8e\xc1\x30\x2b\x43\x29\x85\x37\xc2\xa3\xb8\x45\x0a\xff\xc0\x09\x22\x31\x1e\x38\x47\x1b\x81\x67\x2c\x39\x79\xba\x5d\x84\x5c\x16\xaa\xa5\x20\x44\xac\x5a\xc9\x6c\x5a\x4b\x66\xd3\xcd\x5d\x8e\xc7\x10\x4b\xc6\x13\x38\x96\x32\x65\xa7\xbb\xe4\x3c\x85\x6a\x29\x53\x86\x8f\x1a\x4b\xd6\x53\x50\xf0\x8d\xd6\x5e\x74\x6c\x8d\x7f\x84\x77\x9b\xa8\x5e\xb4\xc1\xc6\x21\xce\xf2\xa7\x75\xde\x80\x17\x39\x8c\xc7\x34\x0c\x27\x2d\x3c\x3b\xe7\xc6\x74\x30\x7a\xe8\xca\xd2\xc6\x46\xe8\xeb\x65\xb9\xe5\x57\xb3\xb9\x2c\xaa\x53\x30\xee\xdf\x25\x70\x86\xf7\xbb\x04\x1b\x63\xd8\x21\x93\x3a\x5e\x39\x66\x27\xa7\xa0\xc3\x6b\xe2\x45\xcc\x1c\x36\x97\x5f\x76\x05\x5f\xf9\x65\xa1\x24\x06\xb5\x4f\xd2\x61\x08\xbf\xcb\xc3\xf5\x62\x5e\x3e\xf3\x1f\x59\x14\x5a\x7c\x9a\x13\x8b\x96\x5a\x39\x18\x98\x6b\xe8\x3e\xad\xae\x66\x60\x2a\x7b\x2a\x39\x18\xfa\x52\xc3\xaf\x8d\xcf\x88\x59\x3c\xc1\xc6\x07\x8b\xed\x2e\x7f\x4a\x66\x3c\x93\x04\xf4\x53\xde\x33\xe0\x46\xce\xc8\x16\xaf\xb5\xec\xeb\xf3\x9f\x1f\x36\xcc\x83\x80\x82\xf0\x81\xf3\x10\x14\xde\x7f\xd3\xb0\x7d\xea\x72\xe6\x21\x87\x0c\x5d\x9a\x87\xd1\x2d\x8a\x6d\x94\x40\xb3\x92\x53\x3f\x68\x0f\xcf\x3c\x70\xdf\x66\x92\xf3\x54\x18\x5e\xfd\xd0\x2e\x87\x6d\x99\xa7\x5c\x31\x1b\x36\x33\x0e\xdf\xb4\xda\x84\xf7\xf5\x0f\x0d\x6e\x90\x82\xcd\x8c\xb7\x07\x87\x3d\x4f\xd3\x56\xf2\xc2\x99\xa7\x79\x2b\xe1\x71\xe6\x25\x23\x88\x42\x6c\xa2\x09\x31\x13\x49\x4c\x23\xee\x91\xe7\x26\x26\xaa\x10\x93\xb7\xc4\xfc\x71\x2a\x4d\x57\x81\x69\x90\x3d\x83\x80\xcc\x1f\x4b\xd2\xb4\xa0\x99\x17\xfe\x18\x5c\x45\xf3\x22\x3b\x3f\x57\xc8\xbc\xf4\xbc\x2e\x7e\x28\x85\x81\xa1\x99\xa8\x45\x8a\x36\x85\x13\x4d\x48\xd1\xac\x6f\xa2\x09\x19\x9a\xf2\x4c\x34\x21\x43\x53\xa0\x59\x64\x51\x39\xb3\xb3\xa4\x91\x10\x10\x93\x80\xac\x6a\x96\x37\x31\x37\x2d\x06\x66\x9a\x30\x24\x45\x71\xcf\x2c\x6a\x35\x29\xa6\x53\xb6\xbf\x2b\x8f\x6c\x8e\x82\xc3\x63\x73\x10\x79\x56\xbb\x45\x38\x0b\x8b\x34\x49\x3c\xa6\xb5\xd8\xac\x08\x45\xb3\x0c\xfb\x0a\x4b\x38\x31\xd1\x20\xe6\x6f\x4c\x18\x94\x99\xbf\x23\x9a\x83\x4d\x9b\x98\x9a\xaa\xa9\x99\x15\xd1\x59\xd6\x47\x34\x97\x75\xb0\x12\xca\x3a\xb0\x72\x1c\xbf\xd9\x60\xe5\xdc\xe5\x06\x2b\x27\xfa\x34\xd8\x4f\xb1\xa7\xc1\xca\x89\x63\x0d\xdd\xb3\x88\xd8\x64\x45\x99\x63\xc3\x83\x45\xd4\x69\xb0\x75\xd3\x7e\xf0\x1e\x51\x75\x3b\xd1\xaa\x64\x10\x84\xa9\x25\x07\xdc\xd6\xd4\x92\x03\x4a\x33\x1b\xcc\xa8\x78\xaf\x25\x87\x68\xd7\x50\x9f\xcf\x3f\x69\xe0\x6c\x70\xd7\xa2\x67\x77\x7a\x74\x4c\xba\x0e\x6f\xa6\x89\xf9\x6a\x9b\x8e\x8e\xf9\x87\xba\x9e\x89\xf9\x87\x64\x77\x92\x78\x6d\x0c\x1b\x04\xbf\x5b\x1f\xc1\x99\x6b\x4c\xea\x0d\x95\x51\xb3\xa3\x5a\x77\x8d\x93\x05\x62\xa6\xfa\x35\x79\x0f\xce\x90\x29\xa3\x23\x72\x6f\x18\xfa\x71\x92\x7b\xc3\x60\x8f\x33\xf9\x24\xd6\x2c\x10\x0b\x41\xac\xe6\x8f\x35\x9a\x55\xd4\x0f\x44\x41\xc5\x01\x54\x96\xc1\x22\xcf\x64\x93\x18\x4c\x65\x8a\x42\x83\x39\x64\x56\x18\x61\x20\x45\x83\x3b\x9f\x5a\x81\x68\x8f\x32\x87\x62\x4a\x37\x1e\x73\xd2\x20\x4a\x7c\x4c\xa5\x2f\x3e\x86\xe6\x40\x10\xc4\xfd\x3f\xd3\x94\x03\x56\x71\x1a\x6a\x46\x45\xd4\x34\xb4\xb2\x6f\xa9\x99\xce\xd4\xce\xd0\xd0\xca\x3a\x6a\xce\x74\xa6\x86\x81\x9d\x86\x56\xd6\x7b\x72\xa6\x37\xb5\x2b\x34\x93\x4f\x71\x9c\x8c\x1d\x68\x07\xea\x79\x3d\x79\xa9\x71\x81\x6b\x99\xc6\xa1\xc9\x03\x8a\xcc\x25\x7c\xdb\x4e\x33\xc7\xfa\x3a\x9d\xb2\x56\xfa\x0c\x4f\x63\xcf\xe8\xaf\x3b\xe5\xad\x74\xf6\x9d\xaa\x6c\xae\xfc\x07\x13\x25\xb5\x82\xd3\x28\xcc\x2e\x81\x82\x9a\x6c\xa1\xa0\x46\x7c\xc2\x53\x29\xce\x6c\xee\x95\x02\x94\x29\x98\x91\xbc\xdc\x49\xeb\x59\xb4\x5b\x45\x4b\xb5\x9a\x84\x9f\x5a\x99\xf8\xde\x43\xf6\xa8\x6d\xb4\x9c\x2f\x73\x40\x41\x32\x63\x20\x87\x09\x6b\x55\x74\xdb\x9b\xb0\x56\xc5\x98\x78\x13\x61\x4c\x31\xf8\xdd\xfc\xf1\x59\x5d\xce\x6e\x3e\x22\x37\xf0\x3e\x1b\xec\xb1\x8e\xb2\x59\x8a\x86\x12\xa5\x8a\x46\xa2\xee\x9c\x36\xa2\xd2\x72\x43\xff\x11\xc3\x3d\xe6\x52\xd7\x00\x48\x4b\x64\xb3\xd3\xa5\x21\xa2\x95\x4c\xe0\xc6\xd2\xea\x7a\xa4\xbf\xe3\x44\x56\x63\x8c\xa2\x99\x01\x02\x5d\x1b\x02\x04\x1e\xd9\x2d\xaf\x79\x09\xc0\xe2\x35\x2f\x7d\x43\x82\x33\x95\x90\xcf\xed\x35\x20\x85\xde\x52\x5c\x56\x03\x17\x23\x1d\x46\x26\x91\x00\x13\xc9\x70\x25\x6a\x6e\x1e\xae\x44\x4d\xac\x22\xe2\x5f\x13\x75\xf6\x47\x7d\xda\x12\xf0\x8f\x48\xe4\x31\xf5\x24\x32\x5c\xe0\x7c\x49\xcf\x37\xfd\x83\x97\x31\x8f\xc0\x49\x52\x33\x6d\x42\xe6\x8f\x75\xba\x34\x89\x98\x48\x70\xea\xdf\xa1\x53\x26\x2e\xde\xcd\x53\xf0\x0a\xa1\x90\x08\x21\x9d\x19\x3e\x30\xd9\x0a\xa4\x35\x69\x0a\x3d\xf1\x07\x52\xe9\x38\x71\x01\x4a\xd4\x36\xd5\x18\xb7\xc8\x8d\xf9\x08\xf9\x6b\xe2\x3e\x24\x64\x93\x32\x84\x8c\x47\xee\x8d\x13\x8f\x51\x73\xef\x1f\x7b\x53\x48\xea\x13\xb7\x99\x5d\x55\x57\xde\x07\x16\x43\x30\x57\x37\x7e\xda\x06\xa3\xbd\x0f\xac\x84\x2e\x1b\xf3\xdc\x1d\xd6\xe1\xb9\x7b\x39\x80\xf1\x53\x79\xee\xdc\xda\x8e\xb0\xca\xf7\xc9\x9b\x88\xbb\xe9\x26\x21\x06\x89\x1b\xe3\x3e\x79\x13\x56\xeb\x63\x90\xc3\x63\xe3\x3e\x79\x99\x41\xea\xee\x93\xf7\x21\x24\xfa\x3e\x25\xb9\xf6\xc9\xcb\x94\xc3\x78\x13\x15\x50\xeb\xe2\xfb\xe4\x45\xd8\xed\x1f\x8a\x0b\xfd\xbc\xc9\x56\xa6\xd8\xee\xbe\x84\x81\x09\x9b\xda\xc2\xcb\xf8\xd6\x00\xc4\xdb\xf8\xbe\xf4\x02\x74\xc1\x2e\x5f\x59\x2e\xc6\x95\x5e\x23\x00\x72\x29\x04\xcb\xde\x08\xca\xe2\x0a\x5c\x8a\xfe\x6d\x5f\xa4\xc5\x2e\x9a\x59\x2d\x60\xba\xee\x4c\x9e\x7f\xfa\x07\x42\x75\x90\xe3\x2e\xf9\xb4\x61\x10\x62\x09\xa7\x69\xfa\x5d\x78\xdb\x34\x5b\xf8\x94\xb2\xab\xcd\xef\x80\x28\x6b\x73\x09\x09\xa9\x29\x9a\xeb\x5c\x7d\xd8\xd0\x6b\xcd\xb8\xa8\xb4\xa8\x49\x43\x99\xbb\x7e\x35\x5a\xdd\xde\x15\x1a\x2a\xe8\x1a\x89\x90\x03\x2d\x6e\x78\x9d\x93\x3c\x56\x71\xc3\xec\x64\xd8\xb6\xbb\xfa\x42\x15\xf1\x7e\xec\x4e\xf5\xfa\xbd\x2b\x0f\x09\xd7\xa4\xc9\x70\xdb\xa2\x29\x85\xe6\xe1\x7c\x37\x29\x35\xb3\x6a\x52\x6a\xb8\x80\x1b\x8b\x8f\x53\xe5\xcd\xdd\x92\x3a\x5b\x6d\xf9\x01\xc4\xcd\xe0\x49\xce\xf2\xc7\x6a\x34\x85\x62\x77\x37\x7a\x22\x07\xe8\xee\xf2\xdb\xfe\x41\x78\x6b\xd7\x17\x05\x8e\x99\x1a\xe3\x36\x32\x8b\xb4\xf6\x96\x17\x60\xee\xd1\x30\x8d\x00\x76\x1d\x9c\xb9\x33\x6f\xd2\xd0\xeb\x5c\x70\x47\xa6\xbb\xa4\x7c\xab\x7f\xa4\x8c\x3c\x75\xda\x76\x0b\x11\x6b\x18\x12\x48\x3b\xc2\x36\x17\x62\x79\x93\x1e\x55\x63\xcd\x1b\xa9\xca\xcc\x72\x26\x37\xa7\xa7\x51\x21\x47\x74\x84\x0f\xb3\xd6\x9a\x37\x29\x51\x9b\x3b\x36\xd0\x6f\x7a\x22\x86\x34\xd4\xdf\x11\x46\xba\xdd\xda\x6a\x38\x33\xcd\x30\x5c\xa2\x89\x90\xec\x6f\x1b\xbd\x1b\x56\x23\xb4\xf0\xb8\x27\xfa\x7f\x6e\xf3\x1b\x4e\x63\x90\xe3\x39\xee\x09\x43\xc7\x15\x78\x4f\x19\x3a\x86\xd7\x78\xc3\x4d\xfd\xb1\x19\xa5\xb8\xa7\x53\xca\x64\x5b\x64\x63\x62\x14\x29\xc0\x8c\xf1\x74\xdf\x1c\x6c\xcf\x0f\xe9\xbd\xa4\xec\x77\x4a\x52\x84\x42\x49\x4a\xf8\x07\x5e\x4d\x70\x2e\xf7\x8d\x24\x42\xfc\xbf\x39\x31\xdc\x29\x37\x37\x7a\x06\x15\xb8\x55\xb6\x18\x3a\xe8\x56\x5a\xd2\xf3\x43\xd3\x33\xd7\x56\x71\x89\x9e\xd3\xb7\xda\x16\x43\x0c\xdd\x6a\x5b\x0c\xf2\x7c\xab\x6d\xb9\xb2\x5a\x9e\x26\xc7\xe1\xf1\x2f\x55\x42\x76\x92\x71\x6c\x6e\xc2\xcc\x0d\x3d\xf6\xef\xc7\x57\xae\xc8\xf9\xf8\xfa\xe6\x0f\xd4\x28\x64\x06\x88\x9b\xfb\xbb\x29\x24\xbb\x75\x1e\x96\xb5\xbd\x97\x9e\x14\xf4\xbb\x50\x7d\x58\x34\xb4\x8d\x24\x89\x78\xbd\x9a\xf4\xde\x66\x35\x20\x81\x60\xdc\x1b\x59\xb6\x84\x76\x7b\x13\xd2\x9a\xdc\x05\xe9\x03\x76\x23\xb7\x18\x5a\x76\xdc\xa8\x54\xaa\xf6\xee\xf7\x16\xef\x25\xf2\xbf\xeb\xb9\x68\x73\x7c\x63\x52\xaa\xb5\xf4\xed\xf5\xec\x63\xfd\xd6\x8e\x54\x3a\xa0\x1d\xa9\xfb\xf9\x7a\x97\x31\x6f\x6d\x4a\x5d\x36\x7c\x34\x6a\xcd\x3f\xa6\xea\x43\xff\x49\x10\x6d\xce\x45\xe2\x56\xbf\x70\xcf\x30\x47\xf7\xab\xb8\x6f\xd8\x1c\x71\x9f\xeb\xf9\xf1\x64\x76\x16\xa6\x1a\x18\xce\x0f\xc9\x84\x01\xc6\x6e\xf3\x60\x39\x23\xd5\x27\x9e\x64\x2d\x31\x72\x3d\x91\x58\xcc\x2c\xab\x87\xe8\x7e\x78\xf6\x7f\x3d\x3d\x07\x0f\x3b\x7e\x7f\xd0\x9f\x90\x41\x27\x9e\x43\xae\x64\x50\x76\x2f\x26\x65\x8e\x32\xa0\x3e\xd8\x6b\x90\x32\x27\x9e\x43\x2c\x6a\x7e\x60\xb0\xe1\x2b\xfc\x41\xc9\x42\xd2\x95\x78\x50\xb2\x90\x3d\x27\x1e\x0d\x39\x90\x4b\x3e\xbf\x2b\xfc\x52\x8b\xff\x68\xc8\xc1\x02\x3c\xda\x6a\x80\x11\xcf\xa9\xe5\x0a\xf7\xcc\x83\x6b\x87\x14\xf8\x31\xd6\xca\xb4\x01\x1c\x4c\x73\x00\x38\x18\x68\xe5\x83\xaf\xad\x22\x9e\xe7\x44\x34\xef\xf4\x4f\x43\x16\x80\x27\x0f\x3a\x99\x01\x3b\xf8\x10\x84\xc5\x3d\x7c\x70\xbc\x15\xf5\x1f\x1c\x6f\x65\xcc\x1f\xed\x3c\x40\xc5\xe7\xc2\xda\x82\x5d\x78\x08\xf2\xd6\x14\xba\x3f\x97\xaf\x46\xcb\x5e\x62\xcd\x5a\x82\xfa\x27\xc1\x7b\xf0\xd1\xf5\xf9\xf0\x5c\x18\x63\x40\xdb\x1f\x8d\x43\x9a\xc3\x3b\x27\xa7\x01\x55\x05\xab\x9f\x22\x55\xb5\xcc\x43\xd8\xc1\x71\xc3\xf5\xb1\xf2\x68\x4c\xc2\x25\xff\x68\x4c\xc2\x61\x7e\x34\x26\x81\xfa\x3f\x85\xf5\x86\xac\x3c\x25\x63\x85\xdb\x18\xe0\x10\x2a\x3c\x24\x1b\xd5\xd7\xec\x51\x0f\xa3\xa3\xf5\x03\x27\xd0\xa6\xfb\xab\x45\x88\x0b\xa2\x45\x88\x60\x13\xf1\xd7\x80\xe0\x4f\xc5\x60\xdb\x9d\x40\x25\x63\xf4\xaa\x87\xe8\xbf\x64\x79\x8c\x47\x0b\x12\xc8\xcb\x53\xe1\x1f\x8b\xf5\xe1\x1f\x5d\x22\xd2\x93\x1a\x09\xf7\xd1\xb2\xc4\x1d\xd2\xb2\x84\xdb\xe1\x69\x30\xb7\xdc\xd9\x4f\xfb\xbd\x95\x0d\x70\xf6\x10\x63\x4e\xa9\xdc\x43\x42\x52\xc3\x00\x3f\xcd\x4b\x5e\x5c\x6a\x02\x4d\xa7\x4d\x40\xe9\xa8\xcb\x0f\x02\x10\x61\x7a\xab\x88\xde\x95\x4f\x21\x45\x7c\x88\xd3\xab\x92\xe7\xe9\xa8\x0e\xdc\xb4\x0e\x83\x0a\xdd\x7f\x3a\xaa\x03\x37\x99\x38\xbd\xea\x57\x1e\x4d\x48\x44\xf4\x2e\xd1\x46\xce\xf8\x68\x2b\xe2\xce\x76\xb9\x55\xa6\x89\xa9\x48\xda\x6a\x3c\x04\xe7\xad\x50\xd7\x27\x04\x8f\x29\x84\x37\x1c\x0d\x42\xe8\x98\x66\x08\x1d\x90\x06\xf9\xe4\xc2\x7e\x80\xce\xf3\x19\x40\x97\xe5\xc1\xef\xcc\x26\x92\x48\xd3\x58\x53\x10\xd5\x3f\x8f\xd6\x1f\x70\x6b\x8f\xd6\x1f\xda\xfa\x3e\x58\x7f\x18\x11\xf7\x49\xf9\x83\xfb\x3f\x64\xfc\xdc\x44\xac\x3f\xb4\x5d\x79\x4c\x00\xa5\x21\xfb\xa3\xf9\x87\x0e\x0e\xcf\x90\xd0\x7a\x18\x07\x84\x16\x36\xfb\x49\xf9\x85\xfb\x35\xb5\x57\x11\x77\x91\x5f\xa4\x36\xe4\x31\x56\x2e\xef\x9d\x67\x3a\x75\x5b\xc8\xd9\x8b\xbb\xe4\x82\xd2\xeb\xe2\x51\x5e\xa1\xe9\xed\x33\x25\xda\x52\x42\x45\x14\xda\x79\x3f\x33\x21\xb6\x9a\x37\x03\x7f\x60\x15\x22\x13\xf5\x90\x24\x4a\xbf\xa2\xe7\x16\x2a\x51\xc4\x70\xb8\x79\x68\xd5\xf7\x68\xde\xf3\xa8\xa3\xd1\xee\xf8\xb9\xe5\xd9\x6d\xe2\xfb\x49\xe4\x36\xb6\xad\x92\xd9\xc7\x70\xb6\x62\x06\x4c\x47\x18\xce\xe3\x21\x65\x93\x7c\xde\x63\x00\x5b\xc5\xb4\xcf\xa3\x6b\x9f\x08\xf4\x90\xaf\x6b\xf8\x87\xcf\x0a\x51\xee\x51\xff\x21\x1a\x2c\x4f\xc4\x9f\x6e\x66\x0f\x6a\x1a\x19\xc4\x67\x09\x00\xeb\xaa\xcd\xa8\xba\xd9\xc7\xd8\xb4\x12\x88\xa5\x18\xc8\x73\xb1\x14\x03\x79\xda\x48\xe2\x29\x13\xf1\xa4\x32\xc6\xd3\xb6\x24\xfb\xd2\x42\x13\x08\xa8\x15\x7b\x0c\x48\xab\x04\xe3\xd9\xb2\x56\xae\xa5\x41\x68\x0d\xf0\xfe\x18\x84\x76\x58\x56\x95\xe1\x5a\x6e\x5e\x23\x62\xab\xe9\x94\xe4\xdc\x9f\x54\xab\xb8\x18\xa9\x56\x71\x93\xb7\x46\xfe\x62\x8f\xc1\x6a\xad\x85\xb9\x69\x12\x7b\x63\xd5\x2a\x71\x79\x52\x11\xe3\xc4\x30\x3e\xcd\x0b\x26\xf5\x30\x4e\xf2\xe5\x61\x25\x4a\xbf\xc9\x0a\x02\x8a\x91\x6b\x35\x20\x7d\x5e\x66\xe2\x89\x4a\xa5\x8c\xb7\xfb\xab\x52\xc8\xf3\xf5\x1a\x63\x08\x5e\xf9\x49\x15\x8b\xe4\x36\x55\x2c\x5e\x31\x66\x4d\x92\x19\x7c\x54\xab\x08\xe4\xe7\x33\x4b\xf6\x40\x1d\x8b\x16\x2c\xcf\x27\xb7\x24\xc8\x9f\x6f\x2e\xef\x1c\x98\x99\xf4\xa9\x7c\x52\xfd\x22\xd5\x25\x92\x6d\x9e\xcf\xd4\xbe\x80\xd6\xeb\xd0\x72\x05\xc2\xbe\x0e\x2d\x97\xaa\x1f\xc2\xcc\x85\xbe\x8e\x84\x79\xf0\xa1\x2e\xa6\xf8\x8f\xef\x44\x10\x63\x1d\x4e\xc0\x9e\xd5\x0b\x71\xf1\xaf\xc3\x77\x62\xb3\x49\xc2\x5c\xf9\xc0\xbc\xaa\x5b\xc6\xbc\x0a\x44\x5e\x87\xac\x74\xb5\x5f\x41\xe6\x5a\x5a\xa7\x20\x73\x46\xd7\xc9\x8e\x0f\xff\xc8\xab\x02\x20\x4f\xa3\xe1\x70\xc8\x96\x59\x94\xc4\xde\x85\x2a\x27\xb4\xf5\x5e\xaa\x72\xe4\xc2\x96\xaa\x1c\x29\xfe\x3a\x11\x22\xf2\xa6\x59\xa7\xef\x57\x2e\x95\x65\xee\x24\xd9\x8b\x75\x91\xea\x09\xb4\x5e\x97\x9a\x24\x96\x7f\xfd\x58\xa0\x26\x7f\xbb\xd4\xf0\xe4\xba\x64\x82\x25\x8e\xe8\xba\x70\xab\x87\x6e\xaf\x4b\x9f\x74\x88\xc7\xba\x12\x62\xc0\x47\xf7\xa3\xf9\xc7\x42\xf7\xa3\xad\xcc\xd2\x55\x56\xdf\xda\x75\x25\xf0\x8c\x58\x84\xd1\xa5\x34\x8d\x92\x81\x81\x56\xe6\x2b\x70\xf6\x05\xeb\x2e\x90\x6f\x15\x82\x7f\x55\x5b\x4c\x3b\xf6\xe3\xf1\xc3\x5a\x39\x24\x53\x29\x78\xc4\xbb\x45\x3f\x56\xa6\xa9\xfb\x58\xb0\x32\x3d\xd7\xf1\xc7\xca\x64\xe4\xf5\x85\x4c\x23\x19\xfa\x55\xd5\x7b\xb9\x5d\x35\x19\x77\x56\x05\x39\x86\x99\xfd\x63\x55\xb5\x60\xa7\x3d\xdf\x7e\xfc\x69\xd6\xb2\xaa\x7a\x31\x5b\x6d\xca\x80\xf3\x63\x5e\x9a\x72\xad\x85\x69\x49\xd7\x31\x61\x61\x4e\x52\x74\xd1\x5e\x88\x42\x8a\xb1\x32\x56\xd3\xfb\x97\xa3\xbc\x9a\x4e\xf1\xa7\x1d\xe8\x07\x7f\x5a\xed\xf6\x03\xa8\x4d\xc3\x64\x18\x88\x85\x2c\xa4\x5c\x39\x8e\xf6\x12\xdd\xde\x7e\x6f\x44\x63\xbc\x2e\xe4\x22\xc6\x87\x5d\xa4\x57\x92\x44\x2d\xd2\x2b\x49\xb9\x17\x9e\x30\x12\xcb\x65\x76\x25\x5d\x79\x17\x9e\x30\x45\x5f\xde\xd5\x53\x0b\xc7\x84\x75\x85\x91\x45\x59\x44\x0a\x29\x5a\x48\x2d\xfc\x62\xf4\xfc\x5c\x3d\xa1\x72\x14\x92\x43\x89\x88\x70\x41\xa5\xb9\x7f\xf8\xc5\x74\x63\xd5\x2d\x02\xcf\xf9\x5a\x5a\x06\x07\x71\xea\x7a\xc1\xa8\x8b\x58\x88\x65\x0c\xe7\xb0\x02\x95\x1b\x97\xf9\x4a\x1e\x07\x41\xe5\xc2\x74\xb6\xc9\x0d\xac\xf0\x11\x66\x6b\x83\x8c\x3a\x2b\x84\x2b\xf9\xe8\x5b\x83\x57\x98\xdb\xab\x70\x05\x1e\x65\x0d\xf7\xca\x49\x0d\x9e\x61\x30\x09\x6b\xf0\x24\x16\x72\x25\x2a\x02\x38\x90\x56\x3b\xf4\x40\x16\x0c\xe7\xb2\xcc\x18\x20\xd7\xb6\x26\x0a\x3f\xd7\x40\x01\x8a\xf0\x29\x33\xf1\x5c\x2b\x33\x71\x76\x13\x7b\x33\xc8\xed\x9a\x58\x92\xc3\x67\xad\xc9\xa3\x40\xe4\x9b\xf2\xa0\x97\x95\x64\xb5\xad\x04\xab\x2d\x4e\xdc\x18\x05\x79\x72\x6f\xe4\xc8\x0e\x7c\xf3\x02\xe1\xa6\x58\xe4\x47\x37\xb8\xe8\xc2\x23\x26\x19\xae\x45\x24\xb8\xaa\x51\xd0\xba\xe5\xb5\x01\xef\x36\x2d\x98\x34\xe0\xce\x89\xfa\x0f\x36\x3b\xdc\x33\xeb\x41\x0d\xe6\x59\x25\x2f\xba\x06\x26\xeb\xc1\x7e\xc7\x6d\x78\x60\x73\xed\xe8\xc1\xa6\x9b\xfb\x76\x21\x3b\x19\xba\xd4\x2d\x42\xf4\x1b\x48\x7f\x61\xb5\x7a\xe8\xd9\xb3\x34\x42\xd1\x9a\x7e\x21\x48\x39\x34\xa6\x5e\x8f\xc1\xa1\x91\x60\x2c\xfd\x63\x0c\x87\xba\x56\xca\xac\xa8\xb6\x92\xc5\x02\x16\xac\x52\x92\xa7\x5c\x69\x95\x22\x34\xcb\x57\xa4\x7b\xa9\x55\x8a\x17\x4e\xf2\x3e\x6e\x6c\x9a\xa5\xb8\x76\xcb\xf3\x90\xed\x7d\x2b\xfe\x8a\x3b\xb9\x0a\x86\xdf\x99\x15\xc6\x8f\xe4\x83\xac\x26\xf7\x20\x4e\x6e\xc2\xa0\xb8\x90\x5b\x39\x04\x97\xff\xda\xde\x7d\x00\xbc\xb9\xfb\x9c\xc9\xf6\xb6\xb6\x5b\xa4\x48\xee\x48\xb2\x3a\x7f\x13\xbf\x17\xff\x42\xb7\xe5\x4d\x94\xa0\xb7\xd7\xfb\x86\x11\xdf\xe4\x30\xfc\xb8\xa5\xeb\xc0\xf5\x26\x91\x67\x25\x5e\xa3\xfe\x26\x04\x29\x8a\xa5\x67\x54\x24\xc5\x77\xca\x82\xc5\x29\xc6\x3e\x5d\x9f\x47\xd5\xe9\x7f\xea\xd3\x78\x6c\xad\x2f\xd3\xe5\xb0\x18\x5f\x06\x7a\x07\x34\x44\x37\xc5\x4c\x10\xeb\xf3\x49\x60\x93\xa9\xed\x80\x1f\x3a\x76\x39\x8a\xc9\xb5\xdc\xa3\x8f\x08\x23\xbc\x4d\x56\xda\xbe\xfe\x80\xdc\x30\x38\x26\xad\xd9\x84\xc9\x15\xdd\xb6\x26\xb1\x8c\xb6\x31\x89\xf5\x35\xb0\x8f\xfa\xdf\xff\x2e\x33\x06\x6d\x18\x1d\x92\x51\xc7\x46\xbc\x63\x28\x95\xfd\x63\x73\x2e\xf2\x52\xc7\x46\xd4\xe3\xf3\x6c\x13\x5a\x8d\x94\xea\xb1\x09\xad\xa6\xd7\xc4\xfe\x31\x3c\x97\x6e\x16\xfb\x80\xde\x4c\xdb\xee\xdf\xef\x97\x63\x21\xf4\x19\xd6\x47\xe8\x03\x95\xdf\x3f\x6e\xe7\xd2\x13\x63\xeb\xbd\x03\x1f\xb0\x15\xfa\x80\x94\x5b\xa1\x0f\xbb\xba\x4f\xa4\xce\xa7\xe5\x46\xd9\x3a\x48\x9d\x61\x54\xf6\x89\xd2\x8c\xeb\x68\x9f\xd0\x48\xf8\x94\x8d\x5c\x48\x6b\xbc\x7d\x02\xff\x25\x0c\xc0\xcf\x61\xde\x84\xff\xd0\x3e\x70\xeb\xf4\x33\xec\x47\xf8\xfd\x1d\xf8\xb9\xb1\xf6\x25\xfc\xf4\x7f\x21\xb4\xe2\xea\xdc\x84\x02\xd1\xd3\x63\x5f\x26\x9c\x63\xf3\x36\x99\x9d\x44\xd7\x4d\x10\x36\x4f\xce\xbe\x90\x58\xc0\x4e\x6e\x62\xab\x79\x28\x36\x82\x9c\xe9\x86\x5d\x1f\x65\x26\x8c\xed\xed\x74\xb3\xcb\x6f\xe0\xe9\x84\xb1\xbd\x9d\x02\xf1\xe3\x8c\xae\x09\x95\xd9\x0a\x6f\xa0\x0b\xbb\x48\xbf\xfd\x5d\x9a\x6d\x3f\x93\xfa\x2c\x10\xd6\x2d\x1e\xd2\xad\x4c\x27\xac\xbf\xa8\x63\x3f\x08\x9c\x78\x9b\xec\x2a\x3c\x96\x11\x2c\x71\xd8\x77\x15\x1e\xe6\x52\x85\xc7\x72\xa5\x4c\xff\x5a\xdf\x72\x9e\x77\x55\x6e\x66\x19\x63\x0b\x0e\xc0\xd6\xe0\x16\x1a\xb7\x6b\xea\xc0\xac\xf4\xbb\x5b\x86\x2b\x5d\xbf\x5f\xd9\x09\x2b\xc6\x81\x63\xdb\x3f\x4e\x68\xc8\x63\x6d\x6c\x6c\x87\x0b\xf4\x63\x8a\x86\xa6\x49\xfb\xc7\x13\x8d\xe1\x22\x36\xef\x1c\xfa\xfc\xb1\x47\x43\xc3\xa6\x8d\x44\x47\x3b\x88\xdd\x4c\x54\x28\xfa\xe9\x38\x14\x96\x17\x95\x2c\x2b\x76\x16\xff\xf0\x22\xfa\xd1\xf9\x3f\xe8\xdb\x6e\x4c\x43\xa4\xea\x48\xa0\x60\xe0\x37\xee\x46\x46\xab\xdc\x5d\xd0\x2d\x23\x74\x82\x99\xde\x18\xa8\x0c\xf7\x01\x17\x23\x89\xf1\xc6\xbe\x57\xc9\xf1\xc6\xbe\x77\x88\x3b\x18\xae\xa8\x7c\xda\xd8\xf4\x6a\x90\xb5\xbb\xc0\x5a\x76\x59\xe9\x3f\x58\x56\x5e\x07\x3b\xc0\xbb\xfc\x1d\xd8\xdc\x92\x40\x74\x0e\x5b\xb3\xf5\x2e\x82\xa2\xed\xc0\xbc\x55\x3c\xd2\xd4\xd7\x15\xd3\x9e\xc5\xc3\xa5\x3d\x8b\x0b\x16\x5e\xd7\x94\xb5\xf4\x15\x17\xb4\x60\xb1\x1f\x0d\x7d\x21\xc5\x5b\x43\x5f\x89\xcc\x40\x66\x26\xbe\x0c\xa4\x52\xe2\xe3\x40\x12\xe5\x99\x1b\x5e\x9c\x52\x16\x92\x4d\x8e\x3c\x69\x43\x88\x2c\x03\x51\xd8\x2b\xda\x1f\x4f\xef\x40\xdd\x6b\x59\x03\x60\x47\x9b\x30\x13\x92\x22\x8d\x81\x6d\xab\x31\xb0\xe4\x0d\x53\x97\x99\xf4\x56\xc9\x91\xc6\x46\x7b\x2a\x2b\x16\x26\x62\xa2\x99\x7c\x6d\x9b\x3d\x49\xe3\xf0\x4d\x4c\x34\xd9\xba\x3d\x65\x26\xb8\x66\x36\xc2\x22\x23\xf9\x6c\x0d\x58\xb4\x74\xda\x37\xf9\x0c\x24\xf6\xb7\xec\xac\xc8\x70\xeb\xd5\xcd\xcd\xb6\xef\x04\x85\x11\xcd\x9d\xa4\x33\xf2\xbe\x0d\x6a\xe8\x39\x33\x79\x92\xca\xd7\xad\x79\xb0\xee\x8d\xfb\x56\xec\x2f\x71\x24\x93\x92\x36\x40\x1b\xc9\xd3\xe5\xea\xde\xe9\xf3\x6d\xc7\x09\x3e\xcd\x1f\xc0\xb7\x35\x52\x28\x5d\x28\xf6\x23\xf4\xf4\xf4\x78\xfb\x7a\x7f\x20\x91\xd2\x67\x67\xff\x38\xb4\x6a\x4c\xe6\xfd\x24\xec\x40\x88\x40\xca\xd8\x5e\x5b\x81\x94\x46\xdf\x1b\xb5\x97\x96\xfe\xfb\x41\x7a\xe8\xba\x27\xb3\x76\xf9\x81\x8c\x50\x8a\xb4\x4c\xbe\xea\x2a\x2c\xd7\xd7\x73\xba\x14\x64\x4a\x3f\x96\x02\x38\xaf\x17\xb9\x38\xe5\x54\x7b\xe5\x02\x03\xcb\x8f\xa5\xab\x06\x20\xdb\x2b\x97\x94\x3d\x59\xc2\x65\x79\xcb\x06\x58\xcb\x95\x93\xe8\xa4\xe2\xcc\xcd\xda\x26\xd9\x74\x4b\xc8\xa8\xa4\xba\x65\xcb\xc5\x29\x3c\xdd\x70\x71\x43\x07\xe4\xbd\x65\x9d\xbc\xac\xb7\x12\x3c\x0f\xd2\x26\x51\x96\x04\x19\xc9\x96\xaf\x8c\x8d\x8d\xb0\xcf\x92\xbd\x93\xb9\x64\x5a\xdb\x27\x4e\xb6\x46\xc8\xe8\x11\xdb\x22\xea\x9f\x4e\x69\x7b\x2b\x80\x14\xd7\x5f\x45\x9e\x2c\xec\xab\x19\x96\xd4\x01\x27\x6b\x75\x41\xfb\xf5\xb5\xed\xde\xbf\x32\x5e\xe2\xf7\x6b\x2c\x44\x09\xc1\xeb\xc4\xa4\x34\x98\x1f\xab\xad\xda\xaf\x13\x63\x2b\xdf\x14\x19\xda\x1c\x29\xa1\xd7\xaf\x6a\x39\x0d\x35\x37\x6a\x39\xf5\x61\xfb\xd3\x54\x4c\x7c\xf9\x12\x46\xfa\xfa\xb1\x8a\xd5\x67\xd6\x86\x53\x3c\xb4\x45\xd9\x1f\xc2\x4b\xaf\xda\x64\x14\xc5\xee\x2f\xe1\x65\xbe\x5f\xc2\xeb\x3f\xc0\xe8\xb2\x7e\xc2\x28\x01\xf9\x30\xca\xf0\x7a\x56\xc9\x97\x77\x35\x72\xb1\xa1\x43\xe1\x56\xcb\x27\xc4\xef\xa1\xc6\x18\x44\x78\x8f\x24\x33\x27\x1f\x18\x65\xb3\x76\x2f\xe1\x5c\xe4\x01\xde\x03\xad\x30\x30\xbe\x19\xa2\x8d\x23\xf8\x1e\x0a\x32\x87\xff\x28\xc8\xcc\xe6\x0a\x32\x39\x9c\xaf\x72\x2d\x43\xdd\xbe\x3f\x4e\xaf\xca\x38\xbc\x8a\xb5\x38\x77\xef\xe9\x93\x83\x69\xbd\xa7\x82\x4c\xb0\xe0\x3d\x7d\x72\x4c\x3f\x94\x64\x42\xd9\xde\x53\xad\x76\x76\x90\x8f\x11\x20\x3b\x95\x58\x4e\x7b\x53\xf6\x6a\x7b\x41\x06\xd9\xdf\x1f\x67\x57\x25\xf5\xef\x8f\xb3\xab\x5e\x62\xef\xa5\xba\x1d\xc4\x79\x2f\x01\x9b\x7e\x14\x6a\x31\x2d\xcc\x9b\xcf\x92\x4d\x9a\x1f\xfe\xc3\x1b\x4d\x33\xe2\xf7\x52\x42\xc8\xb6\xbc\x97\x12\xc2\x6e\x67\x64\xab\x07\x43\xde\x2b\xe5\x98\xd6\xe2\x65\x04\x7a\xbf\x17\x2f\x23\x57\xc2\x48\x2f\x6a\x7a\xde\x82\x45\xb9\x3b\x47\x3a\x71\x39\xb3\xd7\x38\x2f\xca\x7e\xde\x82\x6d\xbb\x13\x31\x19\xd4\xb0\x92\xf2\x4c\x4e\xc0\x8b\x7c\x4c\x9e\xea\x2d\x3e\x97\x78\x73\xbf\x85\x27\x9d\x2b\x5a\x84\x3c\xec\x4a\xd9\x66\x38\x86\x36\x30\x4d\x10\x79\xe0\x0d\x21\x74\x1a\xb6\x70\x1a\x4c\xaf\x3a\x0d\x4e\xc0\x5b\x9d\x06\xe3\x55\x85\xb1\x48\x1a\x5e\x24\x6a\x72\xc8\xaf\x56\x42\xbe\x81\xde\xea\x3c\x00\xdd\x48\x32\xb0\x06\x6f\x46\x92\x11\xcb\x2b\xd1\x3b\xc5\xcc\x9a\x3b\x60\x2d\xa1\x85\xa8\xbd\x19\x3c\xc6\xd9\x36\xed\xe5\xf3\x1f\x82\xc7\x88\x3f\x19\x3c\xc6\xc5\x6a\x0a\x36\xdd\xc1\x0c\x18\xe3\x3a\x34\x25\x9b\x4e\xab\x91\x5a\x5f\xa4\x69\x08\x36\x45\xb9\x26\x7b\xd1\xff\xb4\x5b\x7e\x33\xb2\x4c\x77\x54\xc4\xb4\x1e\xa7\x34\x33\x12\xa1\x0c\x33\xe3\x23\xe1\x25\xcc\x8c\xa6\xce\xaf\x49\xa5\xe4\xee\xdf\xee\x0c\x5c\x81\x6e\xbe\xb8\x62\x13\xc5\x09\xae\x66\x37\x13\xf8\x69\x35\x6c\x93\xaa\xe5\x14\xf3\xb3\x34\x5d\x79\x28\xd3\xc4\x68\x29\xaf\x98\x17\x21\xda\x65\x98\xb4\x17\x21\xda\x65\x1c\xb3\x37\xcc\x70\x05\xa7\xf1\x06\x51\x2f\x61\x65\x5f\xa4\x68\x97\xd1\x3c\x5e\x62\xc9\x5c\x86\x4d\x7b\x33\x5d\x39\xdc\xe9\x8b\xd7\xfa\x65\x80\xb4\x37\xf3\x95\xc3\x9f\xbe\x81\x35\x55\xb5\x89\xaf\x7b\xee\xde\x17\xd1\xdb\x35\x2e\x9b\x20\x26\xf5\xac\x04\x62\x52\x31\x34\x7c\xe8\x5f\xfe\xf1\xa1\x8d\x86\xa7\x7d\x31\x95\xbe\xc6\xe5\xc7\xe9\x07\x1d\x0f\xe2\xf7\xb8\x60\xc8\xe1\x8a\x11\xb0\xde\x61\x34\x1e\x14\x06\x2f\x6c\x64\x31\x0a\xd5\x3b\x48\x89\x2f\x96\x0d\xbd\x17\x10\x7c\xbd\x99\xcc\x5c\xbc\xfe\x31\x92\x4d\xbb\xc1\x77\xa6\xd0\x81\x39\xa2\x77\xcc\xbc\x0f\xef\x44\x66\x2a\x32\x4d\x64\xa6\x22\x29\xac\x64\x31\x14\xe2\xfb\x63\x25\x9b\xca\x9b\x77\x6a\xce\xeb\xa1\x9a\x66\xa4\x77\xef\xa7\x02\xd4\x62\xb5\xcc\xf9\x04\xc0\x53\x01\x6a\x71\x14\x04\xa8\x12\x17\xf3\x4f\x19\xd0\xf8\x85\x65\x0c\x55\x14\xef\x9d\x39\xc0\x19\xdf\x14\x95\x0a\x5d\x5e\xfd\xa8\x92\xb4\x19\xfc\x3f\x89\xc5\xf6\x03\xd0\x3e\x54\x2c\x21\xdd\xfa\x8a\xfc\x51\x50\xb6\x3d\x0b\xf3\xe1\x17\x7a\x70\x7d\x7c\x85\xc8\xf9\x0c\xff\x15\x1f\xf2\x96\x37\x6f\xcd\xdf\xb2\x7c\xc6\x9d\x32\x4e\xe3\x57\xa1\x86\x9c\xa2\xaf\xaa\xde\x81\x74\x7c\x55\x82\x7d\xfa\x0f\x81\x9f\xa6\x7f\xe8\x8b\xce\xe4\xbf\x9a\xf8\xe5\x87\xfa\x02\x58\xc0\x4f\x31\xfc\x70\xc4\xdc\x60\x47\x54\xec\x98\xff\x98\x2d\x84\xc5\xfb\x90\xd0\x6b\x94\xf6\x35\xf2\xf7\x3b\x41\x52\xb8\x84\xb6\xe7\x1f\x94\x27\x34\x5e\xff\x0c\x5b\x05\xae\x7d\x18\x1b\xa8\x73\xfc\x9a\xb2\x19\xeb\xe0\x39\x31\x2d\x2b\x83\xb1\x57\x64\x18\xd3\xfa\xc8\x30\xa6\x03\x60\xa1\x2c\x14\x1d\xc3\x1b\xe7\xdd\x91\xc1\x80\x59\x9f\xfe\x10\x5c\x53\x5f\xe7\xb9\x06\x19\xff\x3a\x8f\x23\x30\xf1\xd3\xba\x80\xbb\xe5\xd3\xba\x80\x03\xf6\x11\x74\x5b\x23\xdf\x4f\xbf\x07\xe9\xe0\xc7\x3b\x31\xc6\x9f\x8f\xe0\x2f\x65\xee\x28\x2c\x3e\x6c\x0c\x14\xbf\x7c\x21\xb7\xe4\x6e\x06\x26\xac\x1c\xca\x2f\x74\x67\x6b\xd6\x92\x8f\x61\x52\xd0\x87\xb3\xe4\x87\x17\x2e\x87\xea\x0b\xd5\x70\x6e\xb3\xe1\xb8\x7d\xc5\x7d\x88\xe3\x2f\xc3\xc2\x7c\xbf\xc7\x64\xd3\x50\xf6\x1b\xd2\x27\x37\x73\xa8\x2e\x81\xd8\x7c\x83\xf4\x8d\x3c\x1a\x3e\x9e\x96\x45\x6b\x89\x4f\x2b\x85\xec\x8a\x70\x2e\x22\xc9\x48\x97\x66\xca\x9b\xcd\xb4\xd7\x17\x5c\x07\xdc\x61\x5a\x6a\x9e\x47\xdf\x54\xc2\x47\x47\x13\x09\x19\xcc\xcd\x87\xa5\x63\x18\x07\xe1\x9b\x88\xc8\x04\x83\x30\x55\xde\xca\xdf\x44\x44\x36\x6d\x9c\x78\x6f\xaf\x37\xc7\x86\xe1\x26\xa2\x1e\xd1\x76\x22\x7a\xb2\x0e\xd2\x79\xe9\xe5\xc7\xf3\xb1\x2a\xf1\xfc\x6e\x0c\xa9\x87\x65\xde\xdc\x22\xcf\xcd\x9b\x5b\x24\xbc\x31\xaa\x16\xf1\x6e\xc2\x9e\xc0\x5a\x7c\x37\xb2\x81\xe1\xef\x8a\xa7\x45\x12\x5d\x49\x7b\xf6\xf4\x3a\x39\xbb\x82\x05\x17\x3e\x53\xf0\x6a\xe9\xf6\x69\x29\x69\xc0\xc9\x8f\xe7\xe2\xcc\x72\x5e\xe2\x8c\xf2\xe4\xfb\xc7\xf6\xea\x2d\xc3\x0f\x42\x98\x35\xfb\xf2\xd6\x71\x57\x1f\x14\x87\x1e\xcb\x87\x4b\xa7\xd9\x40\x5d\x9d\x1b\xf3\x48\xf5\xab\xff\x48\xf5\xfd\xc3\x57\x3b\xbb\x44\x0a\x17\x9f\xd3\xdf\xef\x51\x79\x99\xca\xf7\x23\xf0\x67\x97\x52\x2d\x64\x88\x10\xe3\x8f\x74\x2e\xe6\x74\xfa\x48\xe7\x62\x1a\xa7\x8f\x58\x9f\x95\xf7\xfe\xb7\x10\x91\x0d\xeb\x23\x4e\x74\x05\x17\x62\x3a\xb7\x68\x21\xa6\x73\x8b\x96\x7b\x0a\x72\x10\xea\x33\xa9\xe2\x56\x4c\x47\x9f\x84\xf4\xcc\x89\x6d\x15\x05\x62\xcd\xce\x77\xbb\x1f\x1f\x27\x9c\x91\x5f\x9f\xb8\x28\xb0\xbf\x7c\x7d\xd9\xe4\xd5\x99\xde\x25\x7b\xd5\x5a\x88\xb3\x3e\xbf\xdc\xfc\x7c\x7e\x49\xa6\x5e\x1f\x96\xd2\xa3\x37\xd1\xc2\x9e\x13\x2d\x6c\x23\xdf\x6e\x5f\x9f\x9b\x4f\xad\xb4\x46\x10\xe9\x3f\x98\x49\xd7\x24\x8d\x11\x24\x68\x3c\xc0\x2e\xbd\x04\xbf\x4f\xa6\x8d\xe1\xb5\x3f\x50\x71\xf5\x7d\xa8\xa3\x1d\xfd\x43\x9d\x21\xb6\x99\x2e\x77\xfc\xae\x9d\x71\x1c\xa4\x9a\xfd\xcd\x64\x1c\xd8\x18\x90\x1b\x61\x1c\x06\xd3\xc4\x2a\x77\x1c\xbe\xbe\xae\xf3\x0f\xba\x37\x0e\x24\xf4\x38\xc7\x8f\xc3\xf0\xd9\x3f\xac\x1a\x87\x06\x98\xc5\x9e\x03\x4c\xb2\xce\x10\x5e\x41\x41\x8a\xfc\xbb\x71\xc7\x61\xcc\xcd\xdf\x3c\xc6\x81\x28\x9e\x2c\xe0\xe3\x40\xe4\x4e\x40\xe9\x71\x60\x67\x49\xfa\xdc\x71\xf0\x10\x23\xb1\xd9\x38\x7e\x4f\xaf\x40\xa4\x33\x0e\xc5\xec\xc5\xdf\x3b\x68\x68\x19\x31\x7b\x61\xdc\x13\xe3\xee\xc2\x58\x8a\xd9\x8b\x6d\x21\x27\xd3\xb2\x28\xe9\x58\x5b\xa0\x3b\x1f\x2f\x95\xec\x54\x9c\xa4\xa3\x2b\x45\x1a\x54\xba\xb0\x4a\x9b\x40\x7d\x29\x5e\x29\x74\x65\x6e\xdd\xab\xf8\x0f\xa1\x36\x07\x30\x5d\xbf\x57\x2d\x92\xe7\x71\xf8\x16\x2b\x4e\xf4\xca\xeb\x80\xd5\xb8\x7c\x16\x0c\xd6\x12\xa7\xd2\x41\xa0\x9f\x71\xe0\x50\x51\x09\xaf\x39\x8e\x62\xd4\x97\xca\x4c\x8a\xce\x6d\x8e\x5f\xdc\x58\xff\xa8\xff\xfd\xcf\xa0\x5f\xe3\x28\xaa\x86\x01\x85\xd0\x5b\x87\xa0\x14\xf7\xce\xdf\x27\xcb\x69\x19\x6d\x89\x93\xfd\x3d\xa0\xa2\x1f\xf6\xc9\x4d\xed\xf4\x2a\x37\xf2\xa4\x0e\x82\xf2\x79\x01\xb7\x82\x72\xc7\x32\x62\x85\x0b\x55\xa1\xec\x62\xa3\x32\x70\xd1\x44\x53\xc6\x06\xfc\x4d\x92\x58\xad\x44\xb0\xaa\x41\xe3\x26\xa5\x66\xfa\xbf\x97\x8c\x1e\xb1\xe3\x68\x06\x24\x6b\x56\x52\x52\x56\xfd\x47\x62\x97\x5d\xbd\x34\xa1\x4c\xca\x90\x7a\x89\x43\x3d\xc3\xce\x03\x49\x37\xf2\x77\x65\x14\xa2\x62\x1e\x38\x88\x8c\xc3\x48\x98\x68\x44\xc6\x61\xd2\x10\x32\x02\x8f\xc3\xc4\x71\x25\xbb\xe6\x7d\xe9\x92\x98\x44\xce\x65\x08\x0f\x3e\xad\x23\x09\xbd\x1f\xc4\xfd\x9c\xcc\xdd\xec\x70\x93\xc1\xf3\x75\x21\xfe\x87\x56\x19\xe2\x27\x0f\x87\xe1\x29\x0c\x62\x6a\x56\xf0\x13\x7e\xe1\x70\x45\xf5\xb0\xc4\x1c\x7f\x1c\x83\x74\x56\x6e\x1f\xd9\x6c\xb1\x56\x1d\xc7\x40\xad\x20\x7a\x0c\x57\x1a\x30\x30\x6f\xc4\x7e\x62\x1c\xc6\xb3\x72\xe0\xcc\xef\x06\xd8\x03\x87\x61\xe7\x39\x0f\xd0\x0c\x80\x4c\xe3\xd6\x19\x6b\x1a\x08\x88\xe9\x98\xd2\x4d\xda\x63\x4a\x37\xa7\x3f\x35\x3e\x01\x86\x49\x04\x79\x61\x9e\x79\x9d\x51\xf6\x09\x65\xdb\x45\x1d\x26\x39\x33\xfe\x20\x65\x59\x78\x1b\x20\x69\xee\x6e\x22\x66\x89\xbd\xfe\xa5\xc5\x1d\xc7\x4d\x14\x42\x17\xdf\x6c\x6f\x95\x51\xd4\xeb\x27\x42\x9a\xd5\xad\x59\xbe\x4d\x3a\x47\x59\x36\x0a\x50\x48\xe4\x96\xb8\x41\x72\xda\xee\xb6\x23\x59\xc6\x7f\x73\x1c\x86\xfb\x16\x99\xd2\x35\xd2\xdf\xab\x31\x92\x28\x37\xfa\x61\xac\x27\xe3\xb0\xb2\xde\xa6\xe7\xbf\xc4\x80\x47\x8f\x1b\x46\x86\x07\xe8\x12\x85\x27\xd5\xb5\xcc\x87\x6b\x5f\xeb\x91\x71\x70\x8f\x9f\x9e\x54\xb2\xaf\x9d\x22\x19\xb2\xe0\x76\x79\x3c\x97\x64\x01\x00\x49\xbf\x76\xe6\xef\x93\x32\xc3\x91\xc5\x16\xa9\xf4\x38\xb8\xe0\x51\x21\x8f\x03\xa7\xc7\xd3\xd3\xc5\x05\x7f\x48\x65\x71\x7a\x3c\xbd\x32\xf6\x41\x5b\x16\x0f\x27\x8b\xd3\x3a\x1b\xb5\x97\xfd\x6f\x81\x63\x06\x5b\x92\x05\xd0\x1b\xd8\xbc\x92\xf0\xc3\x38\x1d\x77\x0b\x1b\x93\xdc\x37\xf5\x81\x81\xd0\x99\xf0\xbb\xe3\xc0\x5d\xf2\x14\x9f\x37\xb7\x50\xc2\x00\x9c\xce\x11\x17\xc9\xd3\xfa\x2f\x37\x92\xeb\x40\xae\xb5\x53\xd2\x8a\x87\xe4\xe1\x22\xfe\xd8\x8d\xeb\xf0\xbc\x90\xf3\xf6\xf4\xe6\xc1\xeb\x62\x5c\xee\x07\x9c\x43\x0c\x51\x81\x3c\x6a\xd5\x63\xfb\x42\x50\xdd\xf2\x0f\xf5\xad\xa8\xf6\xc1\x7a\x49\xfb\x3f\x59\x2f\xda\xfe\x58\x88\xab\x8a\x09\x1f\x97\xb3\x88\xf0\xe3\x20\xa2\x7b\xa5\x7c\xbe\x61\x3d\x56\xa4\xc6\xad\x22\xf3\x27\x85\xb7\xd3\x9b\xb2\x1d\xfd\xde\x6b\xdd\xe5\x25\x35\x6e\x15\xc7\x3f\x01\xb5\x3e\x9a\x4d\xb6\xe3\x24\x1d\x2e\xf9\x88\xc7\x89\x9e\x9f\x24\x9c\xe3\x3c\xd0\x33\x73\x13\x9d\x87\xb4\xb4\xf9\xc1\xad\x0d\x5d\x3e\x65\x1d\x58\x96\xf3\xc8\xd3\x65\x4f\x42\x1a\x94\xa7\xd8\x68\x0b\x5e\xd5\xd5\x9e\xb4\xe4\x61\x01\xce\xc3\x1b\xd2\x26\x69\x91\x08\xb4\xe7\x99\xf7\x08\x6d\x7e\x3c\xc3\x40\x0e\x3a\xce\xd3\x8b\xaa\x50\x0e\x43\xbc\x31\x88\x3e\x1b\xd3\xd6\x93\x06\xcc\xe9\x94\x03\xab\xb6\x78\xf8\xc3\x06\x9b\xb2\x23\xbc\x94\x1b\xe5\x8f\x32\xf5\x49\x96\xc6\xc3\x73\x9c\xf8\x6c\x78\x05\x9d\x17\xba\x67\x70\xe9\xbc\xd0\x3d\xbb\xb0\xfa\x6c\x70\x9c\x4f\x12\xe7\xe2\x19\x3d\x4e\x42\x70\xf2\x4c\x1f\x27\x0c\x83\x8f\xc9\x71\x5e\x0f\x7f\xfc\xa5\xd1\x18\x27\x5a\x7c\xb4\x3b\xe3\xbc\x84\x9c\x45\x57\x8b\xcf\x29\x38\xd5\xe2\x73\xa2\x4f\xb8\x8a\x89\x18\x72\x9c\x25\x03\x13\x30\x27\x43\x55\x4c\x57\xc7\x64\x68\x48\x88\xc6\x59\xf0\x7f\xe8\x40\x89\xc6\x9e\x70\xcf\xe3\x44\x33\x4f\x52\x99\x71\x92\xee\x16\xf7\xb8\x71\xea\x85\x71\x39\x38\xdc\xc4\x80\x3c\x9c\x64\x39\x43\x82\x37\x4e\x1d\x2f\xb8\x76\x4e\x38\x0b\x72\x9b\x8e\xd3\xbc\x66\x73\xda\xc0\xd1\x6c\x00\xd7\xc9\x7d\x74\x92\xae\xbf\x38\x89\x2a\x14\x40\x57\x85\x02\x88\x54\xd3\x43\xaf\x4e\x52\xda\x62\x62\x38\x4e\xbd\x2d\xb8\xcb\x4e\xd5\xf4\x9c\xeb\xb3\xa1\x4f\x0e\xc6\xd5\xf3\xa2\xfb\xbb\xf7\x29\x30\x34\xdd\x8a\x9b\x7f\x3c\xbf\xd9\x88\x10\x3f\x0e\x65\x36\x11\xe8\xc7\x93\xcc\x26\x5a\x76\x14\xca\x6e\x3c\x1e\x19\xcd\xd3\xf5\x63\x4f\x66\x73\xdb\x74\xc2\x10\x43\x8d\xe9\x39\xfd\xfd\xb7\x42\xc3\xfd\x20\xa6\x67\x13\x29\x71\xc2\x68\x6e\xb3\xb1\x3b\xa7\x63\xe9\x86\xc5\x55\x74\x76\x2d\x8e\x3c\x35\xca\x4c\xb8\x27\xce\x1f\x2b\x33\x9b\xe8\x8a\x9a\x1d\xe7\x94\x71\x06\xca\xe5\xc9\x0c\x42\xe8\xa8\x8f\x9a\x1d\x8b\xb9\x71\x06\xcb\x12\xd6\xe9\xd4\xa1\xff\x10\x3a\xfb\x84\xa1\x13\xa5\xc2\x43\xdd\x6c\x8c\x4d\xe2\xe9\x02\x13\xc2\x33\xd1\x6b\xb8\x39\xcc\x79\xa0\x53\xe4\xd2\x38\x8d\xd9\x79\x4a\x51\x08\xc2\x1d\xc5\x83\x6f\x1a\xb2\xd3\xb3\x6b\x1a\x32\xbc\x8d\xc6\x39\x50\xc2\x72\x71\x9c\x23\x5d\xd7\x98\xde\x90\xb7\x64\xa1\x86\x26\x73\xae\xcd\x48\xde\xd2\x7f\x92\xb7\xb4\xbd\x30\xd2\x6f\xca\x3e\x20\x9f\xa7\x21\x24\xc2\xf5\x99\xc9\x34\xd2\x19\x19\xc9\x9a\x8b\xa8\x13\x46\x88\x07\x46\xe9\x16\xa9\x8d\xb9\x15\x6e\xbe\x7a\xf5\x10\x8b\x74\xc2\x80\x5d\x3b\x8d\x05\x11\xd2\x18\x75\xe9\xe1\x9e\xdf\xbe\x45\xa4\xc0\xe8\xd2\xcf\x22\x56\xc1\xd4\x9c\xc5\x83\x77\xfb\x32\xb1\x63\xe4\x54\x59\x09\xe9\x69\xe2\xb0\xc1\x20\x8a\x0b\x76\x27\xcb\xcb\x54\x10\x88\x9c\xc5\xf6\x08\x41\xce\xe2\xf2\xa5\x10\xc4\x63\x6c\x6c\x4e\x42\xb1\x8d\x93\xe0\x5a\x33\xff\x50\x7f\xe5\x56\xea\x2d\x5a\x5c\xcb\xe4\x7a\x5c\xcb\x27\x41\xb6\x8d\x0f\xa8\xf3\x2f\xf5\xc5\x38\x7f\x3c\x51\x4b\x4a\x6e\xb0\x70\x99\xc4\xf3\xc9\x97\x16\x73\x20\xa2\x67\x12\xc7\xe7\xa5\xcc\x44\xf1\x2a\x4d\x52\xbe\x0e\xca\x34\x5e\x3e\xb9\x3c\xeb\x3f\x86\xaa\xe5\x9d\xb0\xe4\xf3\x99\xcb\xf2\x81\x3f\x6c\xad\x9c\x77\xd0\xed\x42\x5d\xe4\x41\x5e\xaa\x8b\x78\xe4\x9c\x19\x6d\x42\x0a\xfa\xe3\xb5\x5a\xde\x29\x4b\xb5\xd7\xf0\x23\x41\x07\xdc\x1f\xb7\xd5\xea\xff\x19\x7b\x8f\xb3\x6d\x79\x9e\xe1\xb6\x95\xaf\x04\x9c\xed\xc9\xdb\x0b\x60\xe8\xbf\x84\x7d\xb0\x96\xee\xf3\xf9\x67\xd7\x9e\x11\x1c\xe4\x24\x2b\xcb\x01\x92\x8e\xac\x0a\xc9\x56\x23\x03\x0d\x90\xb6\x2a\x0d\x68\xa3\xb4\x43\x9e\x44\xf5\xad\x3c\xc9\x1f\xc1\x66\x00\x17\x91\x41\xbb\x1d\xee\x50\x62\x00\xe3\x0e\xc1\xb2\x7f\x1e\x25\x8e\x76\xa9\x7d\x35\xed\x62\x14\x39\xc5\x4f\x8f\x3c\x29\x93\x62\x5c\xae\x2c\xc6\x34\x3c\x68\xb3\x10\x86\x4d\xd0\x3b\x89\x10\x5d\x52\xa2\xe9\x99\xcc\x02\x5d\x47\x5c\x72\xf7\xbd\x52\x1a\xef\x8b\x47\x9a\x85\x99\x96\xb8\x72\xd7\x12\x95\x7c\x4a\x8f\x3c\x91\x73\x00\xb8\xdf\xd8\x8d\xd4\x50\x2d\xee\xe5\xf1\x4a\xd8\xf9\xbd\x1b\xd8\xdb\x17\xf0\x82\x03\x45\xdd\xbd\x44\x44\xa8\xbb\x0f\x6f\x06\x4d\x21\x9d\xcc\x57\x6a\xf7\x2b\x93\x0f\xe8\xba\xe6\xb3\xe4\x52\xe1\x19\x31\x17\x13\x93\x09\x50\x21\x5b\x97\x09\x50\x81\x85\xd3\x47\xb5\xd0\x6f\xe6\xd9\x93\xda\x78\x76\x77\x4c\x9e\x4f\xd6\xdd\x32\x2a\x04\x20\x15\xb2\x42\x97\x62\xa3\x98\xa9\x81\x62\xb3\x76\x8e\x00\x9a\x13\x24\x0a\x67\x31\x27\x38\xf1\x41\x43\x1f\x05\x55\xc9\xa7\x31\xb3\x99\x4d\x70\x68\x9d\xd9\xcc\x26\x84\xcc\x9d\x39\x29\xef\xe1\x8c\xe6\xa4\xbd\x6d\xb3\x0e\xc8\xd3\x09\x20\x46\x05\x11\xc4\x67\x26\x8d\x59\x73\x02\xd0\x76\x63\xb8\x3c\x33\x6e\x1f\x98\xb4\xce\x9c\x0f\x78\x1f\xe0\x20\xfc\x68\x8a\xef\x99\xd5\xa1\x7c\x86\xe0\x75\x32\x70\xf3\xe8\x4b\x90\x70\x69\xc5\xf7\x70\x66\x5d\x5a\xbd\x58\x72\x76\x97\x58\x68\x9b\xaf\x1d\xb8\x89\x22\x4a\xf2\xaf\x99\x8b\x54\x1a\x15\x70\x3d\x95\x1a\xc8\xb8\x9e\x8a\xe4\x73\xf9\xa8\xd9\xc5\xd6\xcb\x08\x53\x16\xeb\x9f\x89\x1c\xba\xd8\x48\x19\x4b\x46\xb9\xe8\xac\x25\xa3\xcb\x00\x5d\x94\xa3\xaf\xc7\xb4\x6f\xbe\x40\x86\x70\xa3\x64\xd2\xc2\x36\x81\x20\x15\x6c\x4b\x7f\x79\xa6\x7d\x8c\x06\x05\x81\xb0\x36\x9e\x99\x83\x8f\x68\x2a\xd3\xc9\x24\xfb\x7f\xb3\x77\x22\x53\x28\xa9\xcb\xd5\xab\x26\x7e\x78\xd5\x70\xf5\x67\x74\xd3\x87\x87\x20\x9b\xe5\x7f\xd8\x87\x59\xfe\x87\x43\x6c\x5e\x3c\x6e\xa3\x10\xe2\x74\xeb\x88\xba\x96\x7f\x44\xc1\xcb\xa6\xc5\x63\xcb\x06\x4c\xf2\x38\x7d\x51\xb7\x0c\x61\x9e\x11\xd7\x64\x0c\x97\x3f\xc4\x21\xc9\xc8\xd4\xa8\x4f\x6e\x1e\x20\x93\x98\xe0\x6d\x31\x33\xca\xe5\x96\xe3\x05\x9f\xf5\x69\x15\x5d\x45\x3c\x4f\x10\x42\x45\xd9\x51\x36\x59\x09\x9e\xa6\x33\x1b\xc6\xbc\x58\x45\xe9\x2a\x53\xf3\x11\x3f\x4d\x9a\x3f\x9b\xb0\x15\x0a\x37\x0f\x77\x87\xcf\x8d\x85\xf4\x59\x3a\x10\x42\x33\x23\xdf\x59\x9e\x08\x22\x65\x24\x67\x68\xc8\x28\x3a\xdf\xc6\x3c\x1f\xf1\x07\xfb\x35\xe5\x23\xf9\x23\x92\x3a\x1a\xff\x99\x3f\x1a\xa9\xa3\xe3\x9f\xd9\x70\xa4\x60\xce\x1c\x39\x4b\xe8\xfb\x23\x97\x7a\xb2\xeb\xa9\xfc\x85\x32\xd0\x41\x46\xe9\x98\x19\xa1\x4e\x9c\xf8\x29\x9a\xa7\xd1\x69\x90\x69\x1b\x7a\xa8\xcc\xa0\x11\xfc\x48\x8d\xe7\x10\xfc\x50\x7e\x91\x13\x05\x9a\x2d\x2f\x25\x1a\x74\xfc\xd1\x43\xa6\x0b\x98\x79\x21\xc6\x75\x52\xc9\xa2\x26\xcd\x93\x97\x52\x15\xda\xff\xe8\x9f\x2e\x31\x93\xd7\xc5\x33\x40\x9b\x69\xcd\x43\xfd\xd1\x45\x3d\x76\xa4\x49\xfd\x5d\xb4\x53\xac\xc1\x77\x92\xfa\x0f\x17\x84\xa4\xfe\x43\x4c\xa6\x67\xaa\x63\x21\xc1\x3f\xa1\x18\x67\x56\xe4\xe3\x58\x4e\xf1\xbe\xe7\xf8\x23\x95\x7a\x9c\x85\x13\xa0\x3d\x96\x1f\xa5\xd4\x87\x27\xec\x94\x45\x74\x7a\x4f\xa1\x66\xf4\x10\x4a\xdd\x25\x40\x8b\x44\xb8\x8c\x99\x4f\x47\x60\x07\x8e\x00\x48\x21\x9f\xba\xb3\xa8\x8c\xc8\xe5\x46\x6b\xd4\xdd\xa7\x17\x50\x7b\x04\x43\x46\xc4\x68\x3e\x6a\xa9\x0f\x37\x36\xc4\x52\x77\x55\xf1\x0e\xe9\xc2\x06\xdd\xd4\xdd\x5b\x17\x33\xed\x89\xbf\xb0\x39\x17\xb6\x8f\x30\xea\x71\xaa\x2f\x61\x06\x4e\xdc\x65\xbb\x2b\x89\xc7\xc8\x5c\x22\xfa\xdb\x69\xa7\xa1\x9b\xa9\x86\x96\xcb\x1f\x2d\xd4\x09\x22\x39\x33\xb4\xd0\x98\x22\x01\x88\x99\x99\x9d\xec\xd0\xc4\x3b\x4e\x7d\x5d\xf3\xf8\x4b\x1f\x3b\xf3\x46\x30\x83\x40\x21\xa3\x2d\x8a\x9b\x63\x17\xbe\x03\x18\x59\x56\xb0\x8a\x98\x59\x61\x52\x7c\x47\x48\x23\xa6\xdd\x78\x17\xb8\x27\xb7\x7e\x34\x2e\x85\xd2\x24\x4f\xb7\x12\x24\xd1\xcc\x46\xd2\x55\x7c\x46\x6a\x04\xdf\x90\x09\xb2\xa5\x44\x3e\x2b\x41\x72\xb3\x3e\x5c\x5f\xde\x9c\x78\xc9\x56\x45\x99\x99\x80\x5b\x87\x58\xed\xe1\x64\xb8\xbe\x8a\x93\xbc\x50\x08\xbe\x25\x8d\x93\x09\xbe\xa5\x7c\x37\x93\xb8\x5f\x31\x77\x26\xbe\x56\xf2\x86\x23\x59\xbf\x1c\x4e\x26\x03\xab\xbc\x4b\x26\xee\x56\x72\x1d\xb1\x21\xec\xd5\x63\xf5\x08\x35\x15\x5e\xa1\xf6\x99\xe9\x75\xf4\x48\x9f\x92\x37\xfc\x8b\x0c\xcc\x8d\xf2\x02\xb4\x78\x0e\xe9\x13\x0e\x94\x33\xbf\x4c\xaf\xd4\xce\xab\x84\xc5\x75\xc7\xcf\x64\xc6\xbd\xf9\x3a\xbf\xcc\xcb\xeb\x10\x7c\x66\x08\xee\x2c\x5d\x6c\x25\x42\x33\xa6\x84\x1a\xa6\xcc\xfc\xa2\xbc\x14\xe7\xa1\xfd\x1a\x84\x1e\x9d\x05\xc9\x94\xac\x5c\x39\x1c\xc4\xe4\xd9\x3d\x52\x78\x76\xe6\x3b\xcf\xec\x11\x8e\x7a\x41\x48\x45\x72\xd6\x59\xf4\x40\xa9\x96\x41\xe0\xc8\x3e\x2a\x78\xa0\x90\xae\x6d\x16\x3d\x50\x8a\xfd\x5e\xf2\x2a\xbe\x30\xf5\xcd\x42\x88\x83\x59\xf2\xa2\xbe\x8a\x8d\x5a\xd4\x57\x09\x74\x10\x51\xdc\x7d\x25\x21\xa3\xe3\x08\x95\x90\x3d\x45\x29\x84\x74\xcc\x5e\xf9\x08\xaa\xd1\x1d\x42\x68\xaf\xa6\x35\xd0\xd5\xb0\xa0\x25\x23\xa5\x63\x11\x0b\x81\xdb\xbb\x63\xcb\x95\xef\x54\x96\x8a\xe2\x90\x96\x0c\x78\xd9\xba\x83\x76\x98\x3b\x09\xaa\x61\x5d\xa0\x73\x2e\x08\xdc\xde\x9d\xbb\x2c\x06\xf1\x19\xe0\x9c\xbb\x8f\xce\x1a\x24\x05\x9f\x45\x32\x8b\x25\x2f\x38\x89\x60\x10\x3f\x0b\x4e\x22\x18\xc1\xcf\x42\x80\x76\x92\x93\xcf\x42\x80\x76\xfc\xdd\x66\x81\xe4\xc2\x27\x6e\x16\x48\x2e\x8c\xef\x67\x41\x7f\xd5\x5d\x63\x8c\x72\x08\xeb\x30\x0b\x24\x17\x46\xf6\xb3\x14\xb6\x17\x47\xb3\xe0\x3c\x32\x1d\x57\x01\x4e\xf7\x84\x21\xdc\xbd\x60\x4a\x01\x50\x2e\x8c\x82\x27\x09\x56\xff\xb3\x54\x68\x77\xc8\xcf\x52\x9d\x50\xca\xe3\x49\x82\x1d\xfe\x2c\x84\x4c\x25\xbd\xf9\x2c\x84\x4c\xed\x6e\xc6\xea\x84\xfe\xa9\x71\x2d\x95\x1d\x06\xc2\x28\x95\x51\x80\x90\x0a\xda\x33\xe2\x74\xcc\x42\x0c\x55\xf5\x07\xa5\x3a\xdb\x02\xcb\x6c\xbb\x23\x2b\x3b\x21\xdb\x0e\x42\x66\xee\x95\x42\x6c\x55\x82\x62\xcc\xd2\x1c\x90\xdf\x59\x05\x8e\x57\x21\xb6\xaa\x9a\x84\xd2\x5c\x05\xda\x6f\xee\x10\xcb\xa8\x86\x70\x79\xba\x98\xcd\xda\x6a\xd1\xa6\x73\x86\xe2\xac\x61\xdd\x3a\x4b\x0f\x64\xcf\x1f\xe2\x8c\xca\x60\x14\xe9\x27\xb7\x1e\xf4\x53\x76\x9f\x7f\xf4\xd3\x94\xbb\x28\x03\xea\xda\x41\x7f\xe4\x53\x5e\x6e\xed\x01\x45\x2d\x50\xa4\x72\x53\xb3\x57\x06\x32\x59\xb7\xea\x40\x26\xeb\x96\x9c\x30\x3c\x1e\x85\x09\x0c\x4e\x18\x31\x3e\x2a\x36\xb9\xb3\x4c\xc8\x7a\x3b\x9e\x08\x62\xdd\x33\x13\xb2\xde\xd9\xc6\xcb\x75\x79\xd6\x26\xba\xcd\xf8\x8e\x90\xd8\x7d\x3e\x11\xbb\x7a\xe4\x27\xc0\x79\xd6\x30\xaa\x59\xd1\x31\xc0\x79\x98\x89\x33\xa6\xbc\xab\x60\x7d\x57\x95\xb9\x14\x3c\x61\x97\x7b\x69\x21\x3d\x76\x79\xf0\x8a\xcd\x1e\x42\xec\x6b\x54\x11\x97\x25\x5f\x02\x10\xcb\x01\x58\xde\x99\xb3\x4d\xc4\xdc\x6e\x91\x85\x04\x55\x24\xb2\x1c\x00\x33\x84\xe7\xac\x19\x86\x66\x59\x4e\xaf\x95\x1d\x01\x23\x3b\x11\x1c\x3b\xbd\x27\x80\x7a\x22\x4f\x19\x28\x1a\x3d\x5d\x62\x80\x38\x01\x94\xfb\xab\x9c\x2c\xb1\xcb\x7a\xb2\xc4\xcd\xef\xcc\xb4\x7b\xf3\x04\x50\xb1\xee\xc9\x72\x47\xfb\x48\xbf\xa3\x9d\xdb\xe5\xb3\x03\xd7\xde\x8e\x5d\x7b\x2a\x5f\x4c\xaf\x4b\x06\x31\x64\xa2\xaf\x59\x48\x89\xbb\xdc\x2c\x52\x3a\x52\xf3\x85\xd4\x71\xd3\x63\xf7\x51\x3a\x73\x8a\xd7\x6f\xa4\xc3\xe2\xf5\x1b\xe9\x70\x3c\x23\xc6\x86\xb8\x2e\x37\x3c\x3d\x22\xce\x72\x23\x1d\x46\x5b\x59\x6e\x64\x1d\xdd\x32\x88\xb4\xb9\xe2\xca\x8d\x43\x97\x48\x14\xf3\x99\x38\x43\x37\x49\x9e\x97\xfd\x82\xc0\x44\x96\x37\x6c\xb5\x6b\x86\x63\x46\x0f\x6c\x49\x0a\xdd\x29\xf6\xbb\xe5\x2b\xf9\x4e\xda\x5c\xe2\x82\xcc\xb2\xb5\x9b\x5a\xbe\x20\xb0\x45\x22\x55\x36\xfc\x0b\x62\xab\xb2\x81\x54\x54\xab\x21\x0e\xc2\xe1\xb2\x85\xd4\xf2\xf0\x94\x7f\x46\x8a\x9a\x85\x04\x33\x33\x3a\x01\xf4\xe8\x1c\xc1\xbc\x18\x69\x0b\xb9\x65\xf0\xcd\x46\x98\x56\xcc\xb5\xeb\x77\x72\xed\x4e\xb1\x19\x89\x67\xa6\xed\x3c\x4c\xbd\xeb\x49\x8c\x34\xf2\xe1\xcf\xf2\x30\x20\xb1\x28\xb9\x76\x27\x44\x4e\x79\x18\x44\xb3\x3c\xaa\x0b\x2f\xda\xc7\xa3\x60\x79\x60\x16\xaf\x91\xa8\x46\x1a\xb6\x3c\xde\x17\xae\xa1\x62\x26\xd7\xe7\x01\x68\xaf\x72\xf2\xf2\x16\x1b\x7a\xdd\x2f\x74\x46\x5e\xde\x62\x43\xa4\xa9\x99\x51\x9e\x55\x80\xd3\x2c\x2f\x40\x0b\xd0\xcb\x2a\x78\x37\xbd\x78\xd1\x79\x71\xbe\xec\x11\x91\xd4\x2b\xd0\x96\x77\xa2\x7d\x06\x68\x8f\xef\x4b\xbc\x29\xf7\xa6\xea\x3c\x27\xf7\x75\x8f\x7f\xcf\xf5\x60\x72\xc1\xd0\xf5\x50\xd3\xe1\xb3\x3b\xc4\x67\x05\xcb\x6c\xc2\x7a\x00\x1c\x2c\x6a\x3d\x08\x59\x88\x96\xa1\x1e\x6e\xe0\xce\x33\x1b\x78\xfa\x8c\x7a\x26\xca\xbb\x81\x27\xcf\x00\x37\xac\x8b\x7a\x86\x01\xd4\x03\xe0\xfc\x9e\x3c\x80\x00\x9a\xdc\x05\x3e\xb3\x0b\x20\xbe\x6a\x72\x42\x69\x13\x2d\x60\x73\xb6\x2a\x72\xab\xae\x76\xb2\xa6\xd0\x1e\x59\xc5\xf9\xb2\x8b\x5b\x42\x8e\xb1\x61\xf3\xd3\x54\x9e\x56\xdc\x31\x4c\x09\x31\x2b\x41\xd7\x66\x94\x42\xdc\x31\x9c\xbf\x6c\x4a\x13\x70\x64\xcd\x1c\x8d\xea\x0f\xb4\x40\xce\x59\x36\x66\xab\x65\x90\x87\x09\x3b\x16\x3f\x5d\x84\x56\x33\x0a\x18\xb0\x4d\x2d\x08\x84\xc0\xf2\xf5\x23\x9d\x0a\xfe\x92\xb3\x16\x84\x43\x20\xcf\xfa\x91\x4e\x0b\xef\x9a\x59\x0b\xb2\x20\xae\xa3\x5a\x90\x26\xc2\xe8\xd5\x82\x32\xa6\x5b\x17\x65\x8c\x7d\x15\x76\xd5\xb2\xbc\xe7\xd9\x76\x4e\xca\x08\x03\x03\xe8\xb6\x73\xd3\xa6\xe5\x37\xf0\x30\x47\x48\xb4\x9a\xd4\x4b\x2d\x0c\x00\x0c\x5e\x95\x68\x71\x35\x55\x25\x5a\x9c\xbb\x5a\x01\xda\x09\x56\x80\x35\x2c\x8f\x00\xab\x5a\x1e\xfd\x16\xb7\x48\xad\x00\xed\xf6\xac\xf2\x6b\x87\x15\x16\x85\x7c\x3e\x0d\xef\x6e\x6d\xc0\x76\xa5\x2a\xda\x37\xf7\x4f\x65\xde\xb9\x53\x6a\x45\x13\xc7\x01\xab\x0d\x48\xdd\xf4\x0d\x4d\x5c\xfe\x53\xf6\x56\xc9\xff\xd7\xc0\x06\xb5\x99\xec\x8b\x6b\xb5\x36\xc7\xc4\x58\x0d\xcd\xa6\x5c\xa1\x92\x0d\x90\xe4\x90\xb3\x36\x8e\xcd\xb4\xcb\x08\x4d\x0f\x5c\x64\x06\x24\x29\xc2\xac\x64\x06\x24\x35\xd2\xac\x38\xf8\xe2\x1d\x3c\x6b\x73\xc3\x2e\x5b\x72\x50\x0e\x84\x41\x55\x61\x72\x2f\xd1\x50\x77\x80\x54\xc6\x9f\x17\xdf\xde\x59\xa1\xe1\xc2\xcc\xae\x92\x3f\x10\x3f\xe6\x59\xbb\xe2\x3c\x07\x41\xf4\x37\xc5\xcb\x35\x14\x8f\xf4\xa6\xe2\x11\xaa\xad\xf6\xc9\x6c\xf8\xdd\x75\x61\x37\xa1\x84\xc4\x17\x79\xd6\xee\x0e\x02\xea\xce\x0e\x4a\x96\x07\xea\x21\x10\x40\xed\x81\x23\x26\x5c\xf3\xc8\x0c\x09\x23\x44\x0e\x15\x31\x5c\x53\x8d\x5a\x89\x0a\x47\x24\xdb\x59\x89\x0a\xd7\x3c\x88\x43\x89\xba\xdf\x9d\x79\xc6\x3f\x94\x8d\xda\x10\x50\x57\xcb\x33\xf1\xd0\xa6\x75\x78\x06\x2c\xe3\xfc\xfa\x1d\x48\x3d\xf5\xc3\xb8\xed\xee\x5d\xac\xaf\x4c\xc7\x34\xeb\xcc\xf4\x40\x0d\x74\x93\x2b\xc5\x8b\x60\x50\x7d\xba\x93\x1d\x35\x1e\xbe\xea\x6a\xea\xb4\x0f\x2b\x78\x9c\x28\xb3\x50\x85\xba\xce\x06\x87\xc3\xea\x76\xd6\x7f\xc1\xe1\x18\x45\xa4\x0d\x74\x62\x0d\x6e\x9f\x5c\xf7\xa5\x7c\xd4\xb5\x5e\xa2\xac\x28\xa6\x96\x94\x4b\xa5\x46\xb0\x38\x91\xf5\x47\x2d\x56\xe9\xf2\x6a\x6c\x7b\x85\x8b\xd5\xc0\x71\xc9\x23\x83\x93\xb0\x14\x78\x0d\x27\x61\x37\x02\x4e\xc2\x12\xaa\x35\x9c\x84\x45\x01\x86\xb9\xc7\xca\x7b\xd6\xf0\x12\x16\xeb\xa9\xda\x4c\xe2\xcc\xd3\x63\xd5\xfd\xe3\x60\x3c\xd5\xe1\x19\xec\x4a\x18\xed\x16\x87\xad\x59\xc3\x33\x58\xfc\x1f\x9e\xc1\x22\x30\x13\x07\x29\x73\xa8\x5a\x7b\x4b\xe3\xd6\x53\x39\x83\x3b\x2d\x7c\x83\xc5\x0c\xe1\x1b\xec\x55\x74\x05\xd4\xfc\xb9\x84\xda\x59\xc7\xdc\x5b\x62\xb5\x1a\x0a\x37\xee\x8c\x4b\x6d\xf4\xf4\x05\x05\xb4\x47\x3b\xbc\x80\x45\x1f\x11\xb4\xc5\x0b\x21\x82\xb6\xb8\xaf\x2e\xa7\x16\x90\x35\xe9\xd2\x40\xb3\x9a\x84\x30\x3b\x4c\x1c\x84\x65\x6f\xea\xed\x36\xe1\x7b\xf8\x07\x3b\x7f\xe1\x1f\xec\x20\x6f\x35\x3d\xb4\x7b\x73\xbc\xa3\x50\xe7\xfb\xfc\x13\xfb\xdd\x2e\x80\x08\x82\xd8\x77\x72\x33\x15\xcf\x61\xe9\xfc\x4a\x52\x22\x59\xad\x6a\xf4\x97\xe4\x7e\xbf\x63\x97\x58\x3b\x26\x9c\x79\x31\x29\x91\x3a\x81\xba\x9d\x70\xef\xb7\x8f\x90\x0d\xa3\xbc\xba\x1d\x8b\xd4\xc5\x47\xd5\x56\x59\x97\x6a\xda\xa1\x24\x5e\xdd\xe1\xca\xc3\x28\x75\x2f\xc6\x21\x71\xd6\x88\x12\x23\xf4\xfa\x11\xe3\x9e\x38\x2b\xda\xcd\x5a\x3c\x25\x8f\x3a\x5f\x57\x3f\x24\x79\xae\xab\xae\xbf\x6a\xb0\x2b\x3a\xcd\xa6\x9e\xbd\x3e\xaa\xf6\xbd\x87\x55\x58\x0e\x2f\x53\xcd\xca\x87\x27\x18\x17\x5f\xed\x98\x2b\x86\xe4\x4d\x3a\xeb\x51\x11\xe3\xee\xd3\xc5\x77\xb8\x49\x5f\x4d\x44\xe8\xf1\x55\x0f\xe3\x56\x52\x97\x39\xdc\x24\xaf\x16\xac\x1e\x46\xdd\x7a\x87\x27\x4b\xb7\xde\xe1\x3c\xbd\x81\x7d\xec\x46\x90\x3d\x18\x3a\xf9\x0e\xcf\xfc\x2b\xc8\xde\xe1\xaa\x3d\x87\x2b\x80\x68\xee\x18\xe2\x8c\x57\x55\x92\x57\xfa\x47\x59\x56\x4d\x8a\xdb\x11\x9a\xa4\xc5\x8b\x40\x57\x5f\x0c\xc5\x4e\xcb\xed\x10\x49\x42\xd3\x34\x4d\xce\x7b\xd4\xe9\x34\xd6\x79\xf6\xba\xf1\xfb\x14\xca\xc4\x8b\xf0\x83\xde\xdb\x21\xfc\xd9\xfe\x85\x9f\x7d\xd6\xd4\x8c\x12\x4b\x7d\xb6\x43\xf8\xb3\x7f\x84\x3f\xdb\x5a\xa8\xc2\x80\x2c\x69\x01\xce\x16\x6a\x38\x0d\xe3\xf0\x32\x5b\x8a\xc1\x50\x25\xe1\x14\xbe\xac\x51\x81\x98\x4e\xd4\xa1\x12\xc8\x6f\xb6\xd0\xa1\x72\xa9\xb4\x84\xd7\xd0\xb2\x94\x63\x01\x15\xb4\xe4\x58\xba\xa5\xb4\x0c\xf1\x59\xe8\x39\xe4\x2d\x09\xbd\x13\x96\x84\xbe\x09\x8a\xd0\x73\x65\xb4\xec\xf4\xb3\x65\xdb\x47\xcb\x56\x9c\x39\x66\xc3\x99\x18\x67\x8e\xd9\xb4\x65\x57\xc5\xd1\x72\xe3\x87\xb5\x63\xf7\xf8\xe2\xee\xc9\x96\x12\xe2\xea\x4b\xcc\xbe\x8d\xc5\xee\xb1\x4e\xec\x1e\x26\x2c\xc7\x1e\x61\x92\x4c\x15\xa0\x50\xa8\x95\x80\x92\xc9\x28\xaa\x1b\xb9\x26\x1a\x96\xed\x5d\xc9\x45\x2b\x1e\x39\x47\x56\xdc\xbf\xdc\x52\xad\xd8\x0f\x04\x47\x33\x29\xc0\xb2\xbe\x76\x2a\x9c\xc5\xa6\xef\x6f\x11\xb4\xaa\x9d\x0a\x87\xa1\x19\x4e\x8f\x60\x1b\xb3\x55\xec\x54\xdc\x17\x3a\xff\x16\xb7\x9c\x6e\x7b\xe5\x6f\xdc\xd8\xaa\x76\x37\x9c\xce\xa6\x6f\x70\x71\xa3\x54\xb4\xf9\x4e\x55\xc5\xee\xc6\xe1\x7c\xd4\x6b\x5d\x6e\xb9\xaa\x02\x70\x08\xcd\xad\xe7\x9a\x10\x6c\xdb\xb5\x7a\x8c\x8d\xb9\x69\x0e\x87\xa3\xd9\x9a\x46\x91\xdc\x39\xad\xe9\x85\xe8\x41\x31\x01\x81\x86\xef\xad\x39\x1e\x8f\xa3\xd9\x08\x8a\xbb\x0b\x31\x5f\x92\x50\x6b\xa6\x23\x20\x0a\xf2\x6c\x4d\x5b\x21\xab\x28\xa8\x16\x34\x95\xbc\xc5\xcd\xdd\x84\xd3\x8d\x83\x15\xfe\x8a\x86\xd5\x21\x81\x01\x5b\x77\x3d\xdc\xb6\x3d\xd6\x83\x41\x77\x2d\x35\xa2\x98\x03\xa8\xfe\x89\x05\x61\xd0\xdd\x01\x34\x5f\x1c\x80\xfb\xa6\x3b\xe7\x20\xa7\xd6\x99\x5b\x37\x6e\x17\x4c\x77\x64\x58\xf1\x83\x5d\x5b\xc7\x21\x5f\xac\xd1\x63\x6a\xf9\x31\x62\x6a\xf9\x33\xa4\xae\xc4\x5a\x23\x26\xd0\x17\xfa\x9f\x2e\xe7\x70\x02\xc5\x81\x98\xf5\x27\xd9\x94\x86\xde\x37\x4d\xb7\x97\x5e\x81\x12\xc7\x0d\xbd\x6f\xd2\x02\xa4\x61\x1c\x97\x64\xf8\x1a\x16\xff\x9a\x15\xb4\xa9\x03\xbb\x28\x01\xe7\xe0\x24\x11\xdd\x88\x63\x9c\xa6\x7b\x6b\xea\x89\xef\x29\xf8\x48\xd0\xa6\xb5\x47\x43\xe0\x99\xa6\xa8\x72\x0a\x73\xb2\xb1\x41\x29\xdb\x12\x64\xf1\xe1\x14\x64\x08\xe9\x36\xb1\xad\x8a\x4e\x42\xb1\x0f\xf8\x33\x26\xd3\x86\xb7\x0d\x33\x7e\x3c\x8d\xd3\x0c\xf8\xf5\x70\xe4\xae\x6b\xc4\x3b\x4e\xfa\x38\xb4\x85\x9a\x5d\x58\x20\x62\x97\xf6\xdb\x6d\x09\xbe\x35\x34\xa9\x82\x6d\x6f\x2b\xc0\x67\x90\xd0\xb0\x53\x43\x8c\xb6\x02\x7e\xeb\x08\xbf\xf8\x6d\xc5\x94\x5b\xe7\xa2\x65\x1b\xbb\x79\xf6\x7b\x80\xef\x0f\xc1\x17\x25\x42\xc4\x26\xad\xa2\xda\x19\x6b\x01\x94\x66\xcb\x96\x31\x6a\xa7\x6b\xe1\x39\x81\x88\x4d\xda\x6a\x36\x13\x37\x69\x99\xd1\xce\xce\x64\x02\xb2\xe6\x79\xda\x52\xb6\x13\x03\xa8\xa8\xbe\x30\xf4\xa1\x7b\x52\x35\x69\x34\xd0\x4e\xec\xd4\x1c\x15\xd9\xb1\x55\xef\xb5\xcb\x58\x02\x42\x15\xae\x87\xd3\x97\xea\x0b\x63\x0c\xd7\x43\x38\x88\x76\x19\x59\xc0\x95\xd4\xf7\x50\x0b\xb8\x86\x26\x39\x6b\x02\xd7\x70\x3e\xac\x76\x7f\x69\x7f\x64\x0d\x23\xa3\xae\x3f\xc5\x81\x0d\xaa\x35\x6b\x75\xd7\xcc\xd8\xa4\xdb\x55\xbb\xc3\x76\x8d\x25\xbb\x65\xf6\x44\xd5\x91\x55\x1b\xf2\xac\xdd\x31\x20\x86\x6d\x56\x6d\x7d\xb5\xda\xed\x80\xdc\x1a\xb7\x03\x9a\x36\x60\xa8\x04\xb8\xe5\x76\x1b\x2a\xc1\x79\xbe\x9d\x5b\xab\x5c\xfe\xb0\x8a\x16\x76\x02\xa3\x95\x8a\x5b\x36\xcc\xed\x00\x79\x3b\xeb\xb4\xb4\x35\x58\x11\x4b\x40\x9d\x66\x85\x14\x6d\xeb\xb9\xcb\x44\x41\x90\x4e\x85\xdd\x2d\x6c\xf2\xbc\x82\xb6\xbe\x3f\xde\x12\x1a\xe5\xc9\x72\xb6\xad\xeb\xb7\x28\x6f\x1b\x38\x50\x34\x4b\x44\x43\x85\x36\x0d\xb2\x35\x2b\x76\x6a\xdb\x68\x08\xa2\xcc\x47\x0a\xc6\x89\x7d\x04\xd3\x89\x7d\x0c\x8d\x20\x96\x34\x85\xb7\xe2\xa3\xf6\xe8\x61\x2c\x02\x7c\x04\xcd\xdb\xec\xd1\xff\x14\x60\x3e\xe2\xb6\x29\x41\x69\x8f\x26\x68\x5e\x4d\x11\xde\x50\xfc\x8d\xd4\x34\x2b\x74\x69\x28\xa2\x9b\xae\x0c\xed\x09\x30\x29\xf6\x1a\xb4\xc1\x3f\x6f\x80\xc9\x6c\x98\xe1\x3b\xe8\xbe\x57\x4a\x71\xf8\xa7\xeb\x46\x03\x98\xc4\x76\x96\x8b\x69\x6f\xcc\x26\xd0\xe0\x5a\xd9\x3d\x02\xa4\xcf\xd4\x0c\xa6\xe1\x59\xd9\xdd\x56\x90\xb6\xad\x46\x05\xed\x60\x9c\xbe\xd7\x38\x0d\xce\x58\x38\x5d\x32\x96\x7e\x18\xa7\x81\x85\xe9\x87\x71\x1a\x58\xb2\x0e\xa1\x5b\x4b\xfc\x31\x15\x25\x93\xd1\x0f\x43\xf2\xd2\x4f\x3f\xb0\x51\x62\x5b\x76\x02\x3b\xe3\x6e\x3c\xbb\x09\x37\x35\x61\xec\x87\x10\x57\x9e\x81\x78\xd9\xfb\x6d\x4b\xd6\x56\x11\x30\x2d\xf5\x9a\xc6\x89\x62\xd0\xaf\x4d\x16\xbc\x7f\xf4\x6b\x23\xc0\xd1\xec\xc4\xb9\x59\xf8\xee\xcf\xae\xe7\x04\x8e\xc1\xb3\x43\xa7\xd6\x12\x55\x06\x9e\xc4\x8d\xe7\xa9\x15\x28\xc3\x82\x4e\x2d\x47\xb3\x97\x93\x52\xb6\xa5\x45\x51\xb1\xca\x6d\x29\xdb\x7a\x7c\x61\x26\x92\x09\x33\xd9\xb0\x3d\xeb\xdb\xc8\xb6\xea\xd9\xec\x99\x10\x29\x3d\x87\xa7\x14\x0d\x64\x23\x08\xb3\x61\xbb\x29\x3e\xb5\xc1\xed\xb8\x60\x16\x32\xff\xce\x9e\x23\x34\x06\xfd\x40\xb7\x16\x0d\xdf\x7b\x56\xd0\xe6\xa4\xe5\x18\x01\x50\x67\x23\x68\x54\x5f\x0c\x27\x9c\x05\x67\x33\x36\x9f\x63\x04\xcc\x33\x34\x6c\xd7\x76\xaa\x9b\xf2\x53\xaf\x80\x8e\xeb\x44\x91\x1f\xef\xd0\xb0\x25\xff\xed\xae\xd1\x89\x3c\x51\xd4\xe5\x75\xa2\x45\xab\x79\xe9\x26\xfd\xd4\x6d\xaf\x13\x0d\x27\x3c\x6c\x3b\x94\x6f\x38\x3e\xf4\xa2\x69\x1b\xd4\x7e\x87\xf4\x0d\x57\x86\x4e\x08\x1c\x35\x26\x1d\x32\x38\x5c\x2f\x3b\x94\x6f\x55\x22\xd5\x09\x58\x51\x54\xfb\x76\x13\x62\x69\x13\xdd\x21\x49\x8b\x76\x08\x1d\x92\xb4\xa8\x11\xee\x55\xa3\x34\x80\xa9\x5a\x0b\x51\x1d\x8d\x73\x4c\x27\x19\x3c\xf5\x70\xeb\x6a\x99\x5d\x41\xb5\xcc\xb0\x56\x9d\x0c\x9e\xcb\xdd\xd4\x54\x00\xfb\x8c\x16\x30\xea\x5e\xff\xfb\xbf\xa2\xd9\x73\x6f\x88\x12\xb3\xdf\x1f\x9e\xfd\xfe\xf2\x4c\xdd\xae\xf4\x83\xd3\xde\xbb\xfc\x9a\xeb\x18\x34\xa5\x73\x18\x34\xa5\xb3\xfb\x8f\xa6\x04\xa8\x0e\x49\x14\x8d\x05\x49\x61\x95\xe5\xde\x63\x75\x8c\xff\x2c\xf7\xd7\xbb\x16\xb0\x56\x47\x3b\x29\xb5\xdd\xfb\x8b\x65\x14\xcf\x03\xeb\x29\x48\xc5\xfe\x2f\x25\x27\xcf\x41\xb8\x33\x6b\x43\xb3\x1b\x2b\x60\x76\xe3\xc2\x0c\x2c\x53\xdc\x68\x03\x6b\x14\x37\xfa\xc0\xfd\xcd\x99\x1d\x18\x2f\x79\xb6\x06\x86\x29\xee\x83\xa1\x70\xc3\x13\x4c\x54\x67\x0d\xc3\x3a\x29\xb3\xd4\x6c\x75\x52\x66\x69\x15\xd1\x51\x71\x13\xdb\x70\xf6\x89\x01\x82\xbb\x6b\x62\x56\xcb\x9d\xd2\x89\x1b\xa1\x05\x74\x9f\x18\x20\x20\xba\xea\x0b\x53\x14\xd8\x98\x4e\xd8\x08\x0d\x91\xfb\x8a\x51\xd2\x01\x6a\x6d\x39\xaf\x8e\xad\x60\xec\x9f\x25\x70\x96\x01\x38\x0f\xdd\x12\x38\x46\xb6\xb0\x9a\xe8\x3e\x63\xa3\xe2\x6c\x2d\x6c\x54\x9c\xa1\x25\xa0\xcc\xe8\x02\x50\xae\x8e\xbe\x00\xd4\xb3\x7f\x8a\x23\x45\xca\x27\x90\xba\x4d\x4e\x37\x2e\x0d\x9d\x02\xea\x77\x36\x2e\x74\x54\x3f\x05\x14\xe0\x4e\x80\x13\x0d\x9e\x00\x27\xda\x39\x31\xe9\x10\x3b\x9f\xce\x28\x40\x68\x1e\xa8\xc1\x78\x3f\x71\xca\x12\x6a\x55\xd6\x8e\xf2\x22\xc4\xa5\xd3\x6e\x2a\x0c\x75\x5b\xfd\x42\xd1\x1e\x15\x50\xb4\x3b\xfc\xcb\xa3\xc4\xd4\x5d\x9a\x34\x58\x1e\x8b\x00\xa7\xf1\x42\xd1\xee\xda\x5f\x1c\xb1\xe8\x00\x45\x7b\xd4\x45\x87\xee\x08\x6e\x94\xfd\xae\xf1\x8d\x2d\x85\x6d\xa2\x05\xcf\xf1\x5d\x78\xfe\x64\x8f\xfb\x8d\xf3\x9b\x73\x7f\x63\x15\x10\xcf\x02\xcb\xa8\x6f\xad\x02\x00\xf6\x16\x58\x96\xe7\xc6\xfe\x42\xc0\x6f\x2c\x01\xe2\x3b\x36\x17\x2e\xc3\x47\x97\x15\xa9\xba\x8e\xf6\x5b\xb3\xfd\xbe\x3f\x00\x09\x2c\x37\x3b\xca\x6f\xa9\xea\xbe\x91\xca\xbb\x24\x28\xbc\x75\x86\xe9\x28\xbc\xf5\x79\xeb\x1f\x49\x56\x34\xb7\xef\x1f\x45\x36\xf5\xc5\xeb\x5b\x9c\xe4\xf3\xcd\x77\xe0\x47\xbf\xbd\x02\x86\x87\x32\x4c\x2a\xfa\x6d\xdd\x35\x3a\x7a\xec\x15\xcf\xc2\x06\x3c\x8f\xb0\x31\xc1\xb8\x48\x68\x49\xd3\xd1\x5d\xeb\xb4\xd3\x3f\x3a\x6c\xea\x4d\xd3\x1f\xe1\xb1\xfc\xc5\x33\x7d\xa1\xbb\x36\xfc\x40\xff\xa8\xb0\x22\xdd\xda\x1f\xa3\x36\x4a\x07\xbc\x08\x7f\x3d\x80\xaf\x13\x41\xe5\x17\x61\xdb\xf0\x19\x2d\x89\xfb\xf7\x45\xb7\x03\xff\xda\x5f\xb4\x24\x62\x87\x17\x3d\x8f\x17\xc9\x2b\x42\xfe\xea\x0e\x12\x75\xca\x30\x8d\x03\x09\xe6\xf4\x59\x25\x99\xcf\xc0\x00\x9e\x1e\x07\xfa\x25\x28\xac\x81\x6a\x59\xf6\x70\x90\xa7\x53\x8e\x6e\x1c\x68\x6a\xa6\xdf\x4f\xca\x17\x9e\x55\xb7\xfa\x1d\xb5\x1f\x97\xcb\x38\xd0\xae\x4c\x9f\xd1\xae\x80\xb9\x46\x32\x54\x06\x08\x7e\x44\xf0\x09\xa6\x74\x24\x54\x61\x60\xe8\x91\xcc\xf2\x32\x2c\x85\x08\x1f\x8c\x3b\x14\xd5\xc9\x35\x0d\xcc\xf6\x0e\x39\xe3\xa1\x1f\x84\x0c\xc0\x48\x88\xf0\x21\xac\x87\xa2\x3a\x99\x94\xa1\x74\xce\x2b\x76\xe4\xb8\xac\x68\x39\xa3\x4e\x80\x99\x18\x59\x4f\x37\xa8\xbe\xa1\xac\x4e\xce\x70\x20\xab\xd3\xc0\x69\x28\x91\x93\x97\x1a\x19\x71\x3c\x97\xe6\x50\x20\xa7\xd3\xc8\xc8\x06\xe4\x38\x6c\x6b\xfb\x62\x5b\x01\x18\x8d\x29\x90\x93\x31\x1d\x0a\xe4\xe4\x8c\x47\x71\x92\xd8\xd7\xa3\x04\x64\x16\x43\xa1\x50\xfd\xd1\xac\xc2\xf4\x91\xe2\x53\x73\xae\x81\xd4\xee\x50\xc8\x30\x8a\x90\x71\xd6\x06\x29\x3e\x35\x57\x1a\x45\x28\x93\x55\x1e\x7b\xf4\x0f\x7a\x0e\x08\xf3\x51\xd5\x0d\x40\x21\x8d\x1a\x41\x4f\x00\xb2\xc6\x4a\xfa\x47\x47\x24\x4e\xd9\x40\x30\x77\x78\x6f\x0f\x32\x73\x6a\x76\x38\x54\x0c\x4f\xab\x2b\xa8\x64\xbb\x8f\xf0\x8b\x70\x5e\xc3\x2f\xc2\x62\xe1\x17\x31\xd6\x5f\xf8\x6e\x84\xd3\x84\xfb\xb2\x21\x79\x45\xb4\x30\x9a\x92\x57\x2e\xff\xd1\x5c\x4d\x56\xa3\x29\x79\xed\x96\x1a\xd4\x00\xe6\xa6\xe0\x75\x08\xc1\xe2\x87\xb5\x95\xbb\x72\x5e\x47\x53\x1e\x3a\xac\xa2\xdc\xd8\x55\x32\x3e\x86\x2e\x69\xa3\xc5\x40\x99\xe7\xe6\x40\x3d\x18\xfd\xa0\x65\x7e\xf4\x18\x27\xb0\x04\x15\xe5\x36\xe9\x4a\xb7\xdd\x99\x1d\x41\xbd\xa7\x27\x62\x65\xb8\xcb\x3f\xc2\xa9\xea\xfc\x34\xba\xa2\x62\x37\x79\x17\xe4\x69\x75\x75\x30\xf0\x39\xa3\x0b\xf2\xb4\x58\x80\x6c\xcb\x82\x2c\xaa\xe8\x01\x32\xdd\x10\xf4\xaf\x2d\x07\x03\x51\x35\x8f\xf8\xa3\x7a\xc4\xf3\x3b\x94\xce\xd3\xf2\x08\xf8\x19\xf2\x50\xd1\xc0\xf4\x0f\xe1\x1f\xb6\x25\xfc\xd6\xd6\x07\x11\x12\x62\x8c\x80\xdf\x2a\x4e\xb9\xf0\x0f\xd9\x31\xae\xce\xa1\x90\x4e\x3f\x8c\x81\x0b\xab\x5e\xfd\x63\x2a\x68\xf6\xbb\x34\xa8\xcb\xa7\x8c\x4e\xc3\xa4\x81\x8c\x6e\x4a\xcd\x8c\xa9\x5c\xd3\xa1\x28\xa4\xd3\x2f\x63\x28\xa4\xd3\x06\x69\x4c\x13\xf0\x44\x6b\x4a\x90\xa3\x18\x52\x4e\xb1\xab\xa2\x38\x79\x87\xb1\x14\xb9\x42\xf7\x8c\x25\x79\x0c\x39\x31\x56\x80\xc6\x30\x15\xb9\xe9\x17\x32\x96\xd0\x70\xe9\x0e\x45\x6e\x7a\x83\x0c\xa5\x6c\x5a\xca\x8d\xa5\xcc\xd5\x11\x2c\xc5\x84\x2e\x93\x72\x36\xed\x7f\x06\xba\x62\x0d\xc5\xc7\x7a\x99\x1a\x7a\x21\x6c\xb4\x72\xbd\xa1\x28\x4d\xb5\xdd\x38\x83\x6e\xf7\x4f\x53\x83\x4b\x27\x86\xec\x08\xc0\x4e\x25\x7e\x36\x7c\x22\xf1\x73\xce\xf5\x68\x95\xb3\x1f\xa7\x22\xbf\xe8\x46\x91\x5f\xb1\x98\x22\x3f\x51\x93\xbe\xae\x71\xdd\x5c\x4a\xa9\xc4\xb3\xfa\xba\x6a\x59\x36\xc8\x76\xae\x69\xeb\xd0\xd7\x55\xdf\xa0\xa1\xaf\xab\x32\x83\x61\x66\x54\x0d\x93\x87\xbe\xae\x3a\x03\x0e\x33\xa3\x6a\xe5\x35\x74\x7c\x95\xa1\x1e\xfa\xb6\x3a\x98\xcb\xc1\x30\x4b\x57\x0c\xc6\x5e\x1c\x4c\x00\xe6\x60\xa2\x58\x0c\x86\x17\xbd\x5b\xb9\xca\xc7\x6d\x84\x3c\xd7\xe5\x76\x2c\xb0\xc9\xe3\x56\x7c\x59\xfd\x13\x83\x01\x96\x3b\x06\xc3\x9c\xdf\xca\x32\xe9\xff\x46\x7c\x59\xfe\xb4\x7b\x1e\x77\x0c\x4d\x70\x5c\x28\xef\xb3\x9b\xb1\x45\xd3\x8e\x4d\xb4\x7f\x9b\x7a\xc2\xbd\xb9\x91\x19\x7b\x4d\x6f\x5c\x72\x25\x16\xb0\x73\xcc\x71\xcf\x6c\x05\x05\x22\x7a\x24\x70\x5d\xab\x8b\xa1\x04\x2e\xee\x7f\x25\x70\x71\x81\x2b\x81\x8b\xb9\x31\xc1\xab\xa2\xed\xa1\x5f\x6c\xdc\x9a\x8a\xe3\x94\x20\x0f\x9c\x64\x73\x4c\x81\xe9\xd4\x66\xd4\x79\x2d\x46\x6b\xe4\x18\xa9\x62\xed\x27\x70\x2b\x13\xfd\x84\xd4\x10\xa0\x15\xc7\xc5\x15\xfc\xc4\x08\x18\x33\xca\xe6\x1c\xd7\xa6\x82\xba\xb8\x8f\x9f\x10\xdc\x32\xd0\x27\x86\xe3\xcb\x69\x1d\x5b\x73\x04\x62\xf7\x8f\x46\x6c\x35\x1a\x73\x00\x12\x17\x4f\xb0\x8a\xbe\x20\xf5\xb4\xfa\x9b\x79\x66\x2c\x6f\xcc\x33\x83\x79\x85\xd2\x5d\x4f\x70\xb3\xae\x49\xd3\x40\x02\xa7\x05\xda\x78\x15\x67\x3a\x31\x88\xe0\x34\x75\x19\xaf\x42\x43\xc8\xf9\x41\x3a\x35\xed\xda\x86\x42\x37\x25\x7b\x53\xa1\x9b\xa6\x5d\x53\xa1\x9b\xeb\x3f\x0f\xc5\x84\xdd\x17\xa5\x99\x9c\xc6\x89\x04\xae\x2b\x8c\x98\x07\xe2\xd8\x28\xa5\x98\x13\x8e\x63\x1e\xca\x0c\xbb\x2d\x2b\x81\x85\xc9\x99\x87\x20\x77\x1b\x53\xd0\x09\x8b\x34\x15\xc2\x29\x82\x9d\x24\x57\xd3\x4c\x6d\x22\x83\xab\x6a\xa3\x26\xa2\xb6\x2c\x06\x98\x49\x99\x25\x87\x7e\x26\x93\x72\xb1\xe5\x67\x8a\xe0\x91\x07\x2f\xca\x00\xab\x0d\x18\xdb\xcf\x19\x08\x91\x9a\xfd\x24\x1d\xb3\x05\x3a\x11\xc5\x95\xcd\x34\x43\xa2\x26\xcc\xe4\x50\xf3\x3a\x9b\x1f\x69\xd9\xb4\x5b\x9c\xa4\x50\x23\x3c\xf4\x9c\xd9\x84\x5c\x4e\x8c\xe2\x34\x2d\x7a\xa6\xe2\x34\x45\x88\xd3\x44\xb2\x9a\x60\x4e\x88\xce\x22\x36\x9a\x21\x4e\xeb\xbe\x98\xaa\x8b\xf3\x3b\x73\x80\xcf\x28\xff\xc9\xd6\x6c\x60\xcb\x79\xdb\x4f\x48\xac\x98\x26\x84\x6b\xe6\x5e\x9d\xd3\xd0\x67\x9e\xf9\x49\xf0\x69\x0d\x37\xa7\x82\x36\x6f\xad\xa9\xa0\xcd\x8b\x76\x42\x82\x96\x1a\x7f\x3a\x61\x31\xfd\x11\x31\x69\x6d\x6b\xfa\xc2\xa0\x09\x39\xed\xa5\x33\x3f\x72\xb4\xc9\x8a\x4e\xc5\x6a\xb2\x15\x13\x9f\x91\xa2\xe6\x7c\x2a\x63\xd3\x20\x60\x96\xd7\x3f\x4c\x93\xc4\x29\x38\x73\xe2\x41\xa2\x9d\xd0\x54\xd3\xfc\x21\xa6\x3f\x50\xe3\xac\x32\x7b\x80\x59\x15\x4e\x3a\x33\xca\xe2\x6a\xbc\x40\x29\x55\xfb\x24\xb6\x91\x27\x03\x47\x90\x14\x65\xd8\x8b\xf2\xba\x93\xa0\x26\x5a\xf1\xce\x86\x4b\x81\x83\xff\xa8\xcf\x49\x54\xc6\x39\x91\xbf\x11\xb9\x71\x4e\xcc\x14\x55\xf3\xcc\x06\xeb\x57\x2c\x2f\xf1\xe3\xd0\x3f\x7a\xb3\xea\xff\x32\x3f\x0a\xb3\x6a\xbc\x31\x9b\x38\xc4\x4d\x88\xba\x37\x74\xdc\xf3\x23\x2a\xab\xde\xd1\xb3\x93\xe6\xcc\x4d\xd4\x8d\x56\xcf\xb6\x41\x2e\x17\xa2\x98\xa9\x73\xaf\xd6\xe7\xb3\x2b\x02\xf3\x99\x53\xe3\xe2\x74\xfc\xcb\xdc\xe7\x1d\x07\x20\xf7\x79\x47\x1c\xd6\x6c\x55\x21\x90\xe5\x1f\xb7\x9f\x2f\x38\x00\x41\xdb\xcf\x81\xbf\x0c\xf4\xe7\x1c\x08\x84\x20\x65\xe6\x40\x20\xe4\xe6\x47\x26\xa7\x87\xf1\xc4\x4d\xa5\x4e\xbf\x23\xec\x59\xb6\x83\x9f\x0e\x64\xe8\x1c\xc4\x28\x80\x58\x9e\xa4\xbd\xd7\xc7\x6d\x0e\xfb\xe5\x3b\x69\xef\x09\x10\x3d\xe7\x44\x52\x0a\x17\x32\x0d\x70\xa2\x2b\xe3\x9c\x86\xdf\x11\x83\x90\xd3\x7e\x39\x47\x13\x41\xce\xb0\x25\x64\x23\xae\xb3\xfe\x28\x8e\x66\xe2\xf3\xe0\x14\x4d\x1c\x26\x96\xcf\x2a\x0d\x10\xb8\x4c\xf4\xb2\x33\x96\x67\x21\xee\x81\x96\x9c\x3a\xa4\x38\xf1\x0b\x71\x8f\x63\xd6\x09\x65\x58\x1e\x29\x8e\x13\xaf\x13\x8a\xe3\x24\x35\x9b\x46\x09\x53\x27\x14\xe7\x1a\x27\x14\x4d\xac\xa6\x4e\x28\x8e\x59\x27\x14\x89\xb8\xb9\x8c\x0f\xe3\x71\xd0\x0b\xc5\x13\xbc\x10\x52\x39\x63\xa7\xc9\xf3\x1c\xe8\x29\xd8\x80\x71\xba\xe9\xa9\xa0\x4b\x8a\xcb\x76\x0a\x1e\x13\xa6\xeb\x09\x74\xc1\xd4\xdd\xc4\x3d\xa2\xbb\x89\x27\xe9\x74\x22\x7d\xd6\xfe\xce\x75\x26\x93\x9b\xb7\xe8\xbc\x90\xea\x88\x6c\x2e\x4e\x92\xf7\x13\xe2\x37\xcd\x10\x26\xe2\x37\x23\x27\x4e\xc4\x6f\x9a\x84\x4c\xc4\x6f\x71\x44\x2e\xa4\x37\xdc\xa6\xf3\x42\x9a\x04\x65\x31\x3f\x7a\x6e\x6a\x9f\x32\x21\xe7\x9a\x4c\xe3\xc4\x53\xc5\xa8\x4e\x13\xd2\xac\x06\x2e\x44\xff\xd9\x8f\x28\x45\x77\x9e\x36\x7c\x4c\xa4\xab\xe6\x8d\xec\xc4\xed\x79\x23\x3b\x59\x56\x06\x7b\xa8\xb4\x99\x1b\x83\x5c\x0f\xfd\xc6\xc8\x15\xb2\x78\x22\x4d\x93\xaa\x9d\x1b\xb3\xdb\x3f\x73\x0c\xcd\xa9\xd8\x0d\xbe\x74\x86\xd8\xcd\x86\x91\xf4\x14\x9f\x45\x39\x0c\x7c\x23\x6d\x12\xf1\x6f\xa1\xb5\x43\x54\x01\x45\x00\xb1\x2a\x16\xef\x6e\x24\x3d\x70\x77\x13\xb1\x9b\x24\xf4\x7c\xb0\x7f\x16\x67\x3e\x06\xc0\xf3\xce\x35\x4f\x47\x90\x13\xe4\xe9\x50\x12\x3a\x35\xdc\xcb\x51\x5d\xe9\x84\x68\xd0\xe4\x1c\x71\x9b\x91\x9c\x43\x39\xe5\xd4\x72\x2f\x6e\xd0\x17\x03\x45\xf1\x0f\x29\x38\x94\xc2\xce\x57\xa4\xe6\xee\xd5\x56\x2f\xae\xd9\x37\x40\xb1\xba\xa0\x30\xd8\x57\xd1\x0e\x90\xbc\x21\x72\x62\x46\xde\x80\xd1\x4e\x02\x46\x1b\x26\xef\x8d\x34\xca\x1b\xf0\x32\xac\x57\x39\x20\x3c\xeb\x82\xb0\x0a\x0f\xe9\x85\x43\x88\x57\xe1\x3a\x90\x45\x41\xc9\x2c\xd4\x97\x87\xa6\x0c\x0b\xea\xe9\xd0\x2e\x64\x11\xb2\x44\x9f\xd2\xa5\x39\x9e\xe6\x43\x8b\x0c\x1e\x3a\x98\x2e\xad\xf1\x34\xbe\x58\x5a\xe3\x69\xef\xb2\x34\xc0\xd3\x46\x66\x91\xa7\x43\x0f\xc5\xa5\x88\x4e\x13\x99\x85\x9a\xf2\xd0\x78\x62\x25\x2c\xd5\x58\xac\x95\x02\x94\xc9\x0b\x06\xa8\xcd\x1a\x5a\xf2\x80\x69\x56\x92\xe1\x65\x47\xac\xec\x0d\x44\x0d\xf3\x6c\xe8\x24\xb3\xb2\x3c\x26\x27\x61\xe9\xe6\x91\xa3\x4a\xa3\x0a\x33\x94\x65\x84\x41\x55\x2b\xcb\x08\x4f\x1b\x93\x13\x67\x5f\xaf\x8c\xed\x51\xb1\x14\x11\x64\xd8\xcb\xcb\x98\xaf\x7a\xbb\xac\x1c\x70\x01\xa4\x89\x36\x74\x0c\x58\x45\xd9\x01\x48\x76\x15\x19\x61\x7f\xc8\x94\x35\x5f\xe4\xc3\xd8\x53\x0b\x5a\xc7\xdd\xb9\x8a\x3c\x25\x3b\x72\x15\x99\x32\xa0\x2f\x72\x57\x76\x28\x77\xd5\xfc\x41\x50\x24\x61\x2c\xc1\xc2\xf0\xa2\xbd\x9c\xfe\x48\xcb\x64\x19\x3a\xad\x2d\x33\xe9\xeb\x79\xb4\x08\x73\xef\x41\x59\x55\xde\x84\x1d\xb9\xb0\x82\x1b\x4a\x11\x96\x19\x67\xff\x15\x93\x1d\x71\xb3\x55\x19\xaa\x62\xcb\x52\x87\xcd\x06\xe4\xa1\xd8\xd2\xab\x05\xb3\x4d\x9d\x16\xac\x12\xa0\x21\x52\x6b\x9e\xaf\xd5\x88\xa8\x3d\xac\xa2\xb5\x45\xb7\x94\xb4\x3e\xd7\xe3\x6a\xd2\xfa\xdc\x5e\xcb\xd4\x17\xff\xea\x68\xba\xc0\x8d\xba\xc8\x83\xf1\xaf\xca\x0b\xa9\x4f\xf7\x64\x95\x8d\x76\x23\x6c\x49\xfc\x08\x86\xe4\x4f\xc5\xef\xea\xc1\x20\x58\xad\xa2\xe4\x67\xd6\x23\xa4\x09\x34\xdd\xea\x72\x0e\xe0\xaa\xd5\x83\xda\xb6\x0a\xea\x77\xc1\x34\xd8\xc9\x21\x9c\x24\xa0\x55\x5a\xb8\x7a\xb0\x0a\x02\xaa\x22\xdb\x61\x76\x63\x38\xb1\x01\x86\xd9\x1f\xdc\x3f\x24\xa0\x95\xd9\x5f\x43\xea\xda\x76\xc9\x9d\x11\xf1\xf0\xd6\x30\x4d\xae\xa0\x0c\xf9\x03\x81\x1c\xe6\x72\xa8\xd6\x91\x8c\xae\xfe\x79\x50\x1b\x5b\x05\x31\x1e\xb4\xcd\x0a\x37\x0a\x8f\xd5\xc4\x97\x5f\xcc\x33\xb9\xc2\x3d\x54\x1f\x65\x54\xe4\x40\x17\x49\xd6\x24\xc7\xd7\xec\x70\xa6\x80\x0b\x91\x54\x03\xc2\x19\xcb\x6d\xab\x21\x1c\xb2\x29\xc2\x52\x1c\x9e\xfc\x88\x85\xc2\x04\x4d\xb4\x71\xce\xdc\xd2\x0a\x9c\xdb\x66\xe9\x87\xeb\x5c\x23\x1a\xeb\x0a\x06\x16\x34\x90\x72\xaa\xf5\xd1\x40\x45\x1e\x7f\x41\x03\x49\x4b\x2d\x68\x20\xc5\x6f\xeb\xa3\x75\x96\xec\xc2\x5a\x5c\x61\x4e\xb4\x0e\x14\x71\x50\x0d\x07\xa7\xfd\xff\xd2\x83\x42\x0f\x90\xa5\xd3\x44\x1c\x55\x9d\x26\x34\xb1\x5b\xc6\x83\xd3\xaa\x6f\xe9\x34\xa1\x8d\xdc\x0a\x21\x59\xf7\xa5\x7f\xe8\xc4\xe5\x38\x63\xb6\xac\xe2\x04\x0d\x5b\x16\x81\xd1\xff\x89\x89\x5c\x74\xaf\x88\xa9\xdb\xa3\x98\xa2\x5b\x5d\x11\x93\x9d\x5c\x0a\x0b\x18\x8b\x46\x66\xf2\x51\xeb\xf2\x38\x42\x93\xad\x4b\x66\xd7\x6d\x7e\x69\xf0\x42\x2f\x97\x34\x60\x94\xc2\x10\x43\x18\x2f\x63\x90\x39\x49\x97\xc9\x2d\x44\x27\x08\xb5\x54\x0a\x2e\x84\x5a\xa1\x90\x5d\x77\x24\xf9\xa0\x8a\x16\x5a\xe2\xd5\x8d\xa2\xdd\x8d\x6d\xf8\x10\xb1\x07\x3e\xb1\x71\x3b\xe2\x13\x9b\xbd\x13\x36\xc4\xab\xd8\xfa\xa3\x3d\x96\xe2\xe4\xa5\xca\xcf\x93\xf3\xd1\x1b\x4b\x23\xf0\xf5\x1c\x3c\xd3\xef\x47\x7b\x2c\x6d\xe3\xd7\x93\x79\x06\xb8\x07\x7d\x93\x47\xf0\xa9\x7c\xa7\x9d\xc7\xed\x4d\x5f\x1f\xad\xb2\x94\x50\xaf\x27\x16\xcc\xca\x6a\x55\xaa\xbd\x19\xbd\xd9\x75\x0d\xc2\xc5\x03\x28\xe1\xa2\x55\xe3\x32\x90\xbd\x16\x9a\x4b\x62\x45\x0b\xc9\xf5\x7a\xe7\xb8\xdb\x3f\x6a\xa5\x55\xab\xbc\xb1\x7e\xbe\x28\xb9\x70\xeb\x7f\x04\x4a\x33\x20\xf1\x7a\xe5\x55\x3d\x20\xaf\x91\x97\xca\x9f\xce\x74\x8b\xd0\xf6\x8a\x48\xd6\xab\x20\x20\x9a\x30\x3d\x36\x83\x3b\x95\xfe\x70\x5a\xcf\x03\x9b\x88\xe1\x77\x18\x42\x4e\xeb\x49\x44\x59\xad\x87\x4e\x83\xc8\x02\xd8\x79\x60\x09\x00\x5e\x3d\x3f\x72\x23\x57\x86\x78\x1e\xdf\x49\x37\x52\xe7\x69\x8c\x34\x6e\xfb\x93\xc0\xf4\x46\xe1\x3c\xc9\x05\xab\x09\xd9\x99\x0a\xdf\x13\xcf\x44\xa8\x58\x7e\xef\x7c\x07\x1e\x02\x7d\x18\xf3\xf2\x34\x30\xfd\xb2\x1d\x98\x89\x69\xdd\x5b\xdf\x26\x00\x4a\xb2\x65\x76\x2c\x5b\x66\xa3\xa0\x21\x08\xc4\x93\x40\x68\x0b\x6e\xe5\x34\x96\x2c\x47\xe9\xcc\xe8\xfb\x59\x96\xd3\xf8\xb1\x0e\x0c\x42\x64\x28\x84\x3f\x33\xb1\x0a\x38\x3c\x27\xf2\x98\x66\xf4\xc6\xd3\x18\xb1\x4e\x4b\x16\x0a\xa6\xab\x60\x82\xe0\x54\x98\xdd\x15\x16\xf0\x2c\x28\xa7\xb3\xdf\x41\x73\xd0\x9f\x67\x18\xe4\x0b\x76\x91\xc9\xb0\xa1\x93\x42\x80\x54\xd0\x96\x27\x2b\xdf\x3c\x5b\xc6\x9b\xbe\x5b\x08\xed\x71\xb7\x10\xe7\x08\x54\x76\x56\xf8\x1b\xf6\xf2\x59\x61\xb8\x20\x11\xcf\x2a\x14\x96\x01\xc1\xb2\x8d\xce\x1a\x88\x1e\x88\x08\x16\xbb\xb8\x61\xcf\x0a\x67\xd5\xac\xec\xa1\xb5\x0c\x9c\x55\xb1\xf2\x4b\x19\x3a\x23\x8f\x2b\x59\x7b\xe7\x49\x0c\xfb\x05\xef\x7d\x22\x4b\x31\x02\xc2\xd9\x9c\x16\xcb\x37\x46\x46\x3b\x4d\xe0\x2c\xcf\xac\x70\x32\x4f\x6d\x99\x60\xd6\x4e\xec\x97\xc8\x40\x3c\xcf\x4e\x5f\x9c\xc4\x93\x98\xb0\x6a\xce\x4e\x12\xaf\x4a\xc9\x9d\xfa\x69\xba\xc3\x75\xc7\x74\x2c\xa8\xdd\x7a\x1e\xbe\xc0\x45\x39\xa3\xfa\x63\x3a\x18\xfd\x31\x9d\x21\xfd\x31\xc1\xe1\xa7\xfe\x98\x50\x54\x67\x77\x05\x28\x4f\x18\x58\xcf\xf9\x49\x18\x58\x09\xc2\x13\x4f\x4b\x09\xfe\x73\x80\xa5\x1c\x00\x9e\x96\xaa\x0e\x4f\x42\xbf\xaa\xb9\x3c\xc9\xc2\xea\xad\x70\xe2\x5d\xa9\x01\xd9\x39\x80\x87\xab\xe3\x1c\xc0\xd3\x7c\x36\x20\xc3\xb2\x82\xdb\x80\x0a\x93\x59\x71\xe9\x27\x28\xd4\xd9\x22\x0d\xab\x82\xa7\x93\x34\xac\x2a\x59\x4f\x42\xde\x4b\xb8\x9e\x53\xe0\x00\x7a\x62\x5c\x00\x75\x71\xce\xc0\x93\x40\x3a\xd1\xd7\x3b\x2b\xe8\xcb\xb4\xab\x39\xa7\xd7\xaf\x53\x87\x88\xa4\x96\x3f\xb3\x08\xcd\x73\xe1\xb6\x26\x6e\x5a\x6a\xa6\xdd\x32\x0b\xae\xd0\xf3\xbf\x82\xcf\x00\xfa\x05\x67\x03\xa5\x7b\x9a\x99\x55\x61\xcf\x49\x04\x59\x05\x3c\xe7\x0a\x3c\xcf\x64\x11\x41\x56\xe1\xc5\x19\x72\x13\x71\x86\x0e\x98\xce\xfa\xe9\x4a\xd2\xf7\x09\x50\xee\x8e\x53\x38\xa8\x7c\xc2\x9d\x7a\x64\x4e\x14\xd2\xee\x26\x88\x05\x6d\x84\xce\x13\x85\xbe\xb8\xea\x14\x22\xbf\x13\x77\xd1\x48\x00\x27\x74\x83\x81\x62\xce\x33\x66\x57\x28\x4c\x15\xe9\x7c\x9c\x21\x9a\xa4\x3e\x99\x57\x0d\x5d\x74\xe2\x4f\x69\x98\x9e\xd3\x8c\x39\x45\x6c\x7a\xa1\xa6\xf5\x0c\xa1\x25\x3b\x34\xfc\x3b\xc9\x81\xdf\xc5\x0e\xba\x53\xaa\x98\x3a\x75\xa7\xd4\x72\xe4\xc4\x9d\xd2\x18\x4a\xa7\x89\x71\x66\x74\x22\x03\x2a\x2e\xc3\x9d\xd2\x60\x49\xa7\xf9\x56\x35\x66\x39\x6f\xc1\xa2\xa9\x5b\x32\x0b\x82\xef\xc4\x9d\xd2\xc0\x3b\xa7\xd9\x56\x67\xbc\xc8\x99\xba\x2d\x6f\x99\x64\x9b\x42\xc5\xa7\x95\xd2\x89\xff\xa4\x31\x7c\x4e\x7c\x26\x7b\x34\x6b\xd4\x66\xd1\xd6\x8d\x64\x55\xa4\xaa\x97\xa4\x9e\x1f\xe7\x96\x47\xf6\x3c\x91\x78\xd5\xa0\x4f\xe7\x16\x44\x0f\xe9\x66\xe6\xc4\x74\xfa\x42\x6a\x59\x73\x6e\xa7\xd1\xfd\xb6\xe5\xdd\x05\x45\xc5\x97\xd6\x02\xe7\x06\x2e\xef\xe1\x8f\xec\xa9\x81\xf9\x50\x7b\x25\x4d\xa3\x4e\xd5\x5e\xda\x3a\x9d\xa8\xbd\x92\xc6\x51\xe7\x23\x5f\xeb\xee\x40\xef\x95\x14\x2b\x9f\x4f\x70\xdf\xd4\x41\xd5\x95\x14\x56\x9f\x8f\x24\x2a\xe0\x13\x1f\x36\x30\xbb\x89\xf5\x75\x44\x38\xd1\x6d\xb5\x58\xc6\x07\x1e\xdb\x9d\xf6\xa0\xeb\xf6\x80\x9b\xaa\xc7\x53\x64\xaa\x1e\xa5\x75\x27\xa4\x4f\xd2\xd8\xea\x7c\x91\x09\x78\xa4\x22\x5a\xac\x27\x12\x01\x8e\xd6\x68\xe7\x0b\x50\x62\xdf\x17\xa0\x44\x8e\x48\x69\x8c\x12\x76\xe2\x50\xb9\x0c\x13\x76\x12\x45\xd6\x28\x3e\x27\x04\x51\x92\x77\x39\x5f\x66\xd1\x03\xf9\x0a\xa0\xbd\x05\x80\xdf\xb8\xaf\x83\xa4\xa5\x60\xa6\xeb\x80\xbb\x66\xda\xaf\x43\xa6\x7f\x58\x48\x4d\x32\x67\xfe\x3a\xe4\xfa\x21\x08\xae\x43\x4d\x32\x77\xfa\x85\x2d\xb9\xe7\xf0\x32\x9b\xaa\xf1\x62\xae\x43\x9c\xb1\xac\x2f\x69\xcf\x75\x7f\x1d\xf8\x1e\x15\xab\x4b\xd9\x83\x66\xae\x84\xf2\xb8\xfe\x49\xd9\x5d\x49\xc9\x01\x78\xe4\x32\xd5\xaa\x21\x6e\x2e\x53\xad\x6a\xa8\x7e\xa5\x58\x78\x80\x4b\x31\x38\x46\x6a\xaa\x55\x43\x95\x5c\xd8\xa3\x4b\xdd\x5e\xc9\xb1\x81\xad\xae\x44\x6c\x5c\xf6\xca\x65\x0a\x56\xc3\xd9\x5c\x09\x59\x47\xb5\x13\x65\x1d\xd3\x52\xc8\x3a\x9c\xd9\x14\x1c\x0c\x73\x96\x54\xde\xc1\x6c\x5e\xd9\x71\x32\xe6\x1c\xd0\xd3\x6e\x56\xec\xc0\x81\xba\xc2\x18\x9d\x9d\x70\x65\x35\xb4\xec\xd5\x2b\x2b\x05\x61\x65\xaf\xac\x86\xb6\xf8\x67\x42\x5b\x5b\x5f\x05\x2d\x28\xe7\x22\x39\xab\xb4\xc4\x95\xd1\xcf\x82\xe2\x2e\xe3\xd7\x2a\x42\xbf\xb2\x9e\x34\xcd\x17\x85\x23\xae\x2c\x12\xa4\x1c\x73\x54\x54\x91\xba\x67\x4a\x80\x0c\x2c\x25\xa0\xa4\x81\x22\x94\xcd\x3a\x42\xc9\x69\xb9\x8a\x3e\x3f\x56\x11\x4a\xf6\xfe\x55\x94\xdb\x34\xfb\x54\x6e\xe3\x34\x15\xf5\xc8\xcd\x17\xe1\x74\x9a\x4b\xcc\x2c\x7f\xaa\xaa\x5c\x87\x43\x2e\x56\x25\x2d\x57\x55\x70\x02\xb9\x7d\x55\x53\x4a\xb8\x7d\xaa\x66\xfe\x6e\x9f\xaa\x74\x07\xc8\x6a\x80\x6c\xfd\x60\xf7\xfd\x83\xee\x39\x6a\xa8\xc8\xf5\x98\x44\x16\xc5\xe9\x9f\x5b\x39\x80\xf5\xb7\x50\x32\x67\xe6\x69\xd5\x10\xf2\x32\x4f\xab\x16\x8c\x57\x0b\x30\xe9\x46\x21\x94\x76\x94\x57\x33\x2c\x2d\x52\x8c\xcb\x7c\x89\x5a\x2b\x5e\xa6\x70\xd5\xd0\xec\x0a\x91\x94\xa7\xae\x11\x94\xdb\xb3\x45\x06\xd7\x00\x93\x0c\xae\x32\xcd\x57\xbb\x79\xb6\xb2\x4e\x2a\xae\x05\x8a\xb6\xa6\x5c\xf6\x42\x38\x65\x6c\xce\xcb\x1c\xad\x52\x39\x97\x71\x74\xbd\xca\xae\x90\x39\x41\xcc\x5d\x5d\xb7\x94\xe6\x9f\x4e\x7d\x46\xd2\x83\xcd\x63\x8c\xe6\x68\x95\x82\xb8\x10\x40\x35\x8d\x5f\xae\x6e\xea\x1e\x57\x9c\xec\xad\x06\x43\xbd\x14\x40\x1d\x16\x12\x62\x68\xd8\xab\x0b\x24\x70\x91\x34\xc9\xac\x37\xd7\x47\x56\x36\x2d\xd7\x2e\x62\xe7\x6a\x36\x77\x0d\x7d\x4f\x9c\x9f\xa1\xf0\xcb\x89\x18\x8a\x05\x18\xc7\x08\xb1\x00\xe3\x18\x8a\x05\x3c\x14\xf3\x80\xbf\xe4\x07\x16\x59\x4d\xaf\xfa\x6b\xea\xab\xe1\x69\xc1\x6d\x32\x94\x2b\x17\x4a\xb7\x12\xa7\x65\xaa\x11\x77\x83\x99\x7b\x35\x8e\x0e\xc2\xa5\x88\xce\x74\xe1\x1e\x39\xd7\x9f\xea\xdd\xcb\x24\xad\x4a\x36\xae\xa9\xe3\x86\xe3\x99\xc1\xfd\x32\x52\x68\xce\x65\x24\xec\x2b\x68\x4e\xae\xa4\x6b\xa9\x35\x05\x1e\x12\xb3\x2a\x7a\xba\xc8\xbf\xaa\xb8\xe9\xfa\xc8\xc2\xa6\xac\xea\xc2\x0a\xab\xea\x3d\x71\x45\x5e\x55\x66\x03\x11\x53\x51\x56\x71\x2d\x95\xd8\x36\x75\x46\x46\x29\xfa\xbb\x8c\x5b\x2d\x86\xe4\xca\x1e\x5a\x0e\xdc\xa2\x0b\xb0\xe5\x5d\x94\x8d\x2c\x9e\xaf\xff\xfd\x5f\x90\x6d\x77\x41\x4e\xc2\xbc\xde\x45\x01\x57\xb5\x90\x74\x17\x03\xbc\x71\x53\x89\x1f\x20\x04\x71\xd0\x2d\x42\x50\x03\x72\x57\x4f\x9a\xfd\x89\x10\x94\x83\xdc\x0a\x9c\x39\xc3\xb7\xa1\x17\xa7\x4d\x4d\xb8\x71\xba\x20\xba\xe2\xe2\xfc\xdd\x55\x36\xc4\xef\x48\xe3\x60\x22\x6f\x0d\x43\xab\x65\x82\x48\xb4\xeb\x87\x1f\x16\xf2\x32\xe4\x8c\xdf\x64\x54\x95\x9b\xbb\xc1\x11\x93\xdc\xdc\xf3\xfe\x30\x41\x5b\xe0\x8b\x5b\x44\x00\x43\x73\x37\x03\xf7\x32\xba\x06\xa8\x60\x81\xbb\xc1\xa6\x47\xa3\xb2\xa0\x34\xda\xe5\x77\x19\x4e\xb0\x82\xb4\xd9\xe5\xc2\x7c\x86\x0b\x83\xa6\xbb\x3b\x8c\x8e\xed\x77\x99\x03\xbf\x43\x1f\x35\xcb\x3b\x4c\x86\xaf\xf7\x73\xb3\x7c\x8c\x8c\x97\xa1\xc1\x1b\x58\xf2\xd6\x15\xda\x28\x69\xf7\xf0\x32\x04\xaf\xdd\xe4\x3a\xf3\xfa\xb8\xcd\x75\xa6\xc2\xe9\x8e\x5c\xca\x8e\x3a\x72\x29\xbb\x42\x44\xc3\xf6\x00\xdc\xe8\xcc\x0d\xe7\x73\xe3\xc7\x42\xf2\xe5\x79\x0f\x5c\x4e\x5c\x6a\xc2\x3c\x16\x30\xc6\x3d\x11\x05\x80\x6e\x6e\x42\x3b\x4a\xe6\xdd\x04\xde\x31\x43\xe1\x2d\xaf\xe7\x94\x4d\x99\x4f\x9f\x51\x7a\xba\x75\x65\xf5\x86\xcf\xb0\x7a\xee\x24\x59\x3d\xf5\x8e\xb7\x5e\xca\xf2\xe4\xf7\x92\x12\xa4\x25\x2d\x23\x8d\xfb\x77\xeb\x99\x6c\x30\xc5\x7b\x79\x1d\x75\xff\x68\x89\x15\x75\x54\x7d\x38\xd3\x66\x3c\x33\xbe\xc3\xfd\xef\x80\x32\x21\x4b\x1f\x2b\x47\x6b\xd2\xb3\x28\x45\xf8\xe1\xa8\xae\xf6\x57\x90\x09\xc7\xa8\x03\xdc\x7d\x62\x3a\xe0\x9c\x9f\x98\x29\x38\xe5\x84\x60\x34\x84\xd2\x6d\xd8\x45\x61\x3f\x31\x22\x70\xc1\x4f\x0f\x08\x50\x9c\xee\x46\xdb\x54\x74\x65\x5f\xe4\x51\x74\xe5\xf5\x61\x29\xfd\x4f\x33\xe8\xfb\xc4\xf5\x01\xd4\x72\x5f\x2e\x20\xad\x5d\xec\x67\xf0\xdd\x7d\x21\xda\x07\x7b\xdd\x17\x22\x15\x70\xf9\x7d\x21\x5c\x77\x74\x17\x22\x15\x10\xf6\x7d\x61\x9e\x52\xfc\x3e\xf9\xce\x48\x55\xaa\x3b\x4d\x2a\xd5\xb9\x28\xef\x0b\xb1\x8b\xa7\xf9\x42\x00\x55\x2c\x8f\x7b\x44\x11\x06\xc4\x40\x22\x9b\x0b\x98\x41\xf4\xf7\x8d\x68\xc6\x3d\x41\x24\x48\x33\x4f\xde\xb7\xf0\x53\xfe\x46\x34\xe3\xa6\xbe\x51\x8a\x83\xd4\x6f\x22\x41\x4a\x92\xdf\x6a\xdd\x21\x68\x6e\x34\xed\x32\x0d\xb7\xd1\x1c\x8d\xf6\x7c\xdf\x91\xd9\x8f\xda\x06\xb8\x81\x9e\xb9\x77\x70\xc3\x54\xd9\x1a\xda\x8b\x23\x30\x6d\xac\xb2\x0d\xb7\x1c\x9e\x34\xd8\x1d\x4c\x9d\x53\xb6\x65\x8e\x9d\xa7\xed\xa6\x43\x52\x72\xc3\xd5\xf5\xa8\x22\xde\x13\x09\x6e\xf1\x9e\x85\xe2\x68\x00\xcc\x03\xcb\x0e\x71\x79\x3f\x84\x17\x71\xda\x1e\xd8\x61\x11\xb9\x99\x59\xd5\xcf\xdf\x8f\xec\xbb\xcf\x32\xa1\xa2\x53\x65\xd8\x6a\xe5\xef\xc7\x44\x60\x9e\xcb\x07\x05\xb2\xcb\x87\x3c\xbb\x6b\x20\x72\x3f\xf2\x9a\x10\xd0\x77\xf0\x71\x10\xca\xb7\x22\x6c\x89\xd6\x1b\x46\xee\x1f\xe2\xc0\x60\x31\x49\x5b\xdf\xa8\xe2\x55\x15\xdc\xa8\xe2\x53\x4c\x04\xc2\xed\x5e\x3c\x8a\x08\xb7\x63\x22\x5f\xed\x55\x45\x48\xf8\x12\x4b\x80\xdf\x18\x32\x4a\x18\xdf\x88\xb2\x63\xe5\x5e\x78\x0c\xd7\x47\x4f\x62\x85\x28\x5b\x49\xb6\x52\x97\xad\xe9\xa2\x62\x9a\x6d\x60\x1c\x85\xa4\x5b\xe7\x61\x85\x51\x1b\xd3\x45\xe5\x90\xfb\x80\x5c\x9c\xb6\xa5\x02\x13\xd6\x7a\xc3\xe3\x49\x87\x6e\x78\xbc\x41\xba\xd9\xb9\xe1\xf1\xba\x93\xba\xb1\x55\x34\x14\xff\x3e\x24\xc5\xbe\x85\xdb\x49\xb3\x41\x0b\xc1\xb9\x55\xa7\x71\xc3\xb9\x55\x75\x5a\x3b\x61\x38\x18\xa5\x34\x1c\xb4\x93\x14\x64\x92\xa5\x8c\xb7\xc8\x65\xbb\xf5\x17\x2e\x51\x07\xf3\x3a\x8e\xcf\x86\x27\x0b\xac\xb4\xb1\x67\x0c\x07\xc2\x6d\x76\x07\x44\xd0\xbb\x63\x55\x04\x1a\xdb\x5d\xd4\xc5\xd8\xb9\xd0\x34\xe1\xd9\xc6\xf3\xf0\x1a\xde\xdc\x68\x3a\xf8\x6d\xe3\x79\xc4\xcc\xc5\xf5\x66\x53\x43\x85\x02\x63\xc7\xb8\xcb\xf8\x54\x7b\x10\x2e\xdc\xa5\x1a\xe8\x84\xd8\x26\x7b\xe0\x8a\xb8\x2c\x83\x90\x3f\xfd\x19\xf4\x60\x0f\x5c\x01\x1d\xc7\x77\xd3\xcd\xe2\xc4\xe3\x40\x50\x55\xc8\xec\x21\xb5\x24\x24\x5e\x75\x54\xf0\xaa\x13\x92\x09\xd6\xa9\x7e\xd7\x92\x10\x54\xb9\x3f\x52\x75\xba\x93\x37\xf2\x4e\x53\xed\x6d\x2c\xc2\xf4\x29\xdc\xdc\x7b\x26\x0e\xdc\x53\xb4\x43\x67\x84\x9e\x53\xac\xb4\x17\xaa\x2a\x50\xc3\x5e\xc8\x59\x5d\xa3\x85\x9c\xd5\xba\x48\x27\x3d\x82\x3b\xa4\x93\xcd\x42\x98\xa6\xb8\xda\x86\x87\x93\xde\xde\x4b\xc5\x13\x68\x62\x63\xda\xaf\x77\xe9\x36\x0a\x9c\x7a\xcf\xad\x42\x53\xc9\xf4\x46\x26\xa9\x9b\xe7\x3e\x3d\x9a\xd0\x66\xfb\x34\x27\xeb\xb0\xca\xf0\x8f\x2f\x9e\x53\x3a\x51\x14\x19\x3b\xe1\x8c\x5b\xd6\xc6\xe0\xfa\x54\xbb\xee\x53\x65\xff\x12\x98\xed\x1f\x26\xf1\xd4\xeb\xdf\x69\x3f\x75\x55\x87\x1f\xdb\xd8\xf9\x17\xb5\x60\xdb\xf0\x1a\x1e\xbc\xcb\x6d\x42\x97\x17\x4e\xa1\x6e\xab\xcb\x2d\x43\x1f\x97\xa4\x9e\xe5\xd9\x09\xc9\x46\xb9\x68\xdd\x56\xd8\x7d\x19\xc7\x72\x5f\x58\xba\x71\x91\x6f\xdc\x31\x4d\xac\xb5\x11\x4a\x0e\xa9\x88\x8d\x3f\xa6\xc1\xc7\x36\xfe\x98\x26\x19\xde\x08\x28\xff\x6d\x29\xfc\x2c\xd5\xff\xec\x9b\x0b\x14\x04\xb5\x09\x45\xac\xfd\xe0\xc6\xcf\x52\x76\x61\xdf\x5c\x94\xae\x1f\x21\x87\x4d\x57\xb9\xc9\xe4\xad\xed\xdd\xbe\xd1\x5b\xb8\xac\x44\x1c\xd6\xea\x6f\x6f\x77\x91\xcf\x6c\x59\x08\xc3\xad\xff\xa5\x28\x8f\x6b\xac\xc7\x08\xb6\xc0\x59\x08\x93\x39\xa8\xdb\xad\x55\x18\x37\xe8\xd6\x19\x53\x14\x89\x06\x56\xe3\xc6\xbd\xdd\xd6\x76\x06\xd0\x60\xdb\xad\x33\x66\xb7\x7d\x6e\x77\x77\x96\x96\x60\x62\x2b\x35\xb3\x6e\x3f\xad\xc2\x44\x4f\x6a\x66\x6d\xe7\x41\xad\xe0\xe0\x71\xcc\x94\x16\xde\x0f\x8a\x17\x68\xa0\xfd\xa0\xe7\x70\x42\x1f\xf4\x2e\xee\x95\xef\x1e\x5b\x3a\xbb\xef\x87\x5b\xdf\x63\xf3\xc0\x6c\x78\x6a\x1e\x8e\xa2\x93\xf8\xdd\x68\xcb\xdb\x71\x13\x53\x58\x49\xd5\x7e\x85\x93\xba\x44\x81\xf3\x2e\xde\xaf\x70\xfa\x1d\xca\x43\x44\xf8\xc2\x15\x78\x14\x5e\xfb\x05\x36\x04\x8e\x9a\x63\x6e\xe3\xb7\x49\xa2\xee\x30\x0b\x73\x1b\xbc\x41\x7a\x7c\x60\x3c\x06\x70\xcb\xfd\x4f\x39\xdf\x83\x31\x7e\xf7\x7a\x7b\x0c\xf5\x26\x0f\xf0\x44\xe2\x71\x8e\xc6\x73\xe8\xc1\xd8\x6d\x5d\xfa\x85\xed\xf4\x68\x4f\xe6\x95\xf8\x1c\xd2\x2f\xac\xf7\xa3\x41\x99\x67\xfb\x31\xbe\xdb\xbf\x7e\x1c\x05\x88\xe2\xc1\x88\xac\xb9\x99\x9f\x03\x3c\x63\x63\x1a\x94\x59\x23\x0c\xca\x84\x4c\x9f\x4f\x35\x60\x4f\x52\x5a\x1e\x55\xb4\x9b\x88\x3a\x92\x30\xcd\x3f\x4a\xf4\x05\x26\x49\xc3\xd8\xa5\x71\xdc\xd4\x71\x3d\x3a\x87\x2a\x52\x79\x74\x0e\x95\x67\x7b\x74\x0e\x55\x72\xf3\x18\xd5\x4d\x6d\xe7\x93\xb8\xb3\x02\x1a\x68\x2e\xa7\x29\x39\x16\x3a\xc9\x81\x33\x19\xb1\x21\xdd\x6c\x16\x9f\x51\xdd\xf9\x1f\x7d\x46\x55\x0b\x3e\xfa\x8c\xaa\xc2\x7b\x72\x0c\x85\x71\x65\x3d\x0e\x1c\x31\x4e\xa3\x7a\xd0\x3f\x88\x23\x9b\x48\xfe\xc1\x6e\xcd\xd8\x00\x4f\xa4\xd0\xaa\xf6\x22\xef\xce\xbe\x7f\xb4\x5b\x93\x24\x7e\x0a\x82\x74\x07\x52\x82\xe4\x02\xfa\x22\xc9\x65\x0d\xcc\xe9\x1c\x15\xf2\xc7\x24\x73\xf0\x14\xc5\xfb\x70\xaf\x4f\x21\xe2\x98\x60\x21\x7f\x0c\xdc\xf8\x94\xb8\xd4\x19\x7c\x51\x64\xce\x8d\xf6\xd4\xa0\x05\x99\x22\x0d\xd7\x24\xed\x9f\x8a\x09\x9d\xe3\xad\x82\x42\x8f\x86\x76\x93\x71\x7c\x10\x23\x84\x19\xf9\x63\xf4\x36\x03\x98\x3f\xd5\x2b\xc6\x76\x91\x37\xbb\x8d\x2a\x94\xa0\x33\x54\xa5\x04\x2d\xaf\xb8\x79\x59\x48\xb1\xfa\xb2\x73\xe5\xcd\x60\xf6\xa7\x1a\x48\xc4\x76\x9b\x0c\x37\x77\xc7\x63\xf0\x36\xa3\x80\x3c\x4a\x15\x25\xe0\x9e\x26\x2d\x68\x15\x85\xb7\xdd\x97\x60\x3d\x2d\x85\xf0\x96\x9b\xf3\x69\x0a\x6f\x87\x2f\x0a\x6f\x41\xad\x8f\x36\x6f\x71\x0a\x95\x2b\x2a\x2e\x78\x4c\xd0\xa5\x0e\xf0\x41\xae\x18\xab\xd2\x83\x7c\x65\x64\x5a\xbd\xa9\x11\x7c\x7a\xd0\xb2\xd4\xef\x85\x2a\xfe\xc0\x94\xc4\xe5\x52\xde\xa8\xde\xf0\x41\xde\x18\xfb\x43\x79\xa3\x2a\xce\x07\x79\xe3\xd0\x32\xf0\x89\x90\x1b\xc3\xfa\xa7\x77\xb5\x0d\x23\x15\x9d\xfe\x88\x4b\xdc\xfa\xaf\x2f\xb4\x8c\xec\x62\x68\x09\xfa\x60\xd8\xa6\x7c\xf6\xc1\xb0\x2d\x6b\x6f\xf3\x20\x7e\x54\xa4\xfb\x20\xc7\xe8\x31\x2d\xe4\x6c\x57\x88\xfb\x0c\xf5\xec\xed\x4f\xc3\xbe\xc7\x8c\xee\xb2\xf1\xcf\x90\x32\x67\xfe\x46\x90\x21\x00\x3d\x1c\x80\x85\x10\xb3\x19\xb0\xeb\xd1\x1a\x4e\x95\xe8\x33\x71\xe2\xe1\x6a\x7f\x26\x4e\x3c\xd0\x02\xcf\x34\xbe\x90\x9b\xfa\x23\xfe\x9a\x99\xab\x9e\xa9\xbd\xa0\xa7\x90\xe8\x6e\x0a\xbb\x1f\xcd\xe1\x02\x4f\x7d\x24\x62\x33\xe1\xd6\x33\xb5\x23\xb4\x0b\xa4\xb8\xd3\x2e\x74\x39\x9a\xb6\x04\xeb\x30\xed\x42\x33\x42\x4b\x21\x27\x29\x8a\xef\x1e\xa2\xb9\x05\x9a\x59\x21\x62\xa5\x0f\x64\x95\x81\x8c\x96\x12\x56\x2e\xbf\x67\x05\xeb\x00\x88\x2b\x84\xaa\xb6\xa5\x33\x11\x77\xde\xb3\x4c\xd9\xe6\xce\xfd\x68\xc6\x16\x67\x18\xb3\xb7\x62\xcc\xaa\x07\xb3\xb7\x62\x34\xa9\x07\x02\xb2\x18\x9b\xeb\x81\x80\x2c\xca\xf3\x9f\x53\x57\x0a\xa7\x85\x28\xc2\x45\x21\xe5\x03\x05\x59\x62\x57\x9c\xca\x51\x01\x46\x02\x52\x7c\x80\x1c\xc4\x94\xc5\x0f\xe4\x63\x0d\x14\x82\x9b\xe8\xd0\x88\xf7\x51\xbe\xe1\xfe\xbc\xe4\xd1\xc5\x73\x98\xbd\x4d\xd9\xa0\xe7\x82\xcd\xf5\x0c\x6b\xf6\xa6\x7d\xd2\xa3\x33\xa7\x72\x87\x07\xeb\xb6\xe8\xc4\xb8\x68\x1a\x9f\x3d\xb7\x5c\x23\x92\x84\xe7\x0e\xe0\x69\x18\xb7\x4a\x45\xb2\x0f\x31\xce\xba\x67\xc8\xf4\xed\x6e\x9b\x1b\xd7\x21\x37\x04\x0e\x96\x41\x4f\x3e\x37\xc6\x51\x30\x7d\x0f\x39\xdb\xb5\xf2\x7a\x48\xbf\x65\xba\xe2\x07\xfb\x39\xc5\xf7\x0f\xf6\x73\x26\x7a\x7c\xa0\xde\x4c\x0b\xfb\x40\xbd\x95\xf8\xae\xc2\xd6\x63\x49\x9a\x2d\xb3\xd4\x3f\x90\x6c\xa6\x3e\x79\x30\xa6\x33\x27\xec\x43\x7e\x88\x12\x40\x60\x10\xe5\xcc\x3c\x72\xf6\xb6\x6a\x92\xd1\x28\x45\xf6\x07\xed\xac\x1e\x23\x68\xb8\x78\x46\xcd\x40\xe8\xf5\x18\x29\xc3\x13\x6d\xa4\x0c\x0f\x1d\x96\x71\xff\xba\x26\xcb\x83\xf6\x57\xcf\x03\x89\x2b\x96\x7b\x11\x3a\xba\xa6\x21\x60\x10\xee\x17\x4e\x4c\x04\xf2\x0a\x05\x93\x44\x3a\x07\xc5\x6a\xcf\x2b\x59\x6b\x79\x84\x56\xd2\x02\xaf\x64\x2d\x50\x90\xda\x41\xa3\xae\xe7\x95\xac\x65\x64\xaf\xb4\xb8\x75\x31\xd3\x71\x34\x2f\x16\x32\x5c\x3b\xef\x01\xb9\xc8\x75\xf4\x12\x72\x43\x46\xea\x3d\x20\x17\x59\xf1\xf7\x90\x5c\xb4\x3c\x82\x63\x4e\xd1\x7b\x20\x35\xe5\x5a\x7b\x0f\xa4\xa6\xd3\xba\x90\x91\xeb\x4f\x97\xde\x97\x18\x1c\x92\x11\x6f\x50\x67\x60\xf3\x57\x13\x7f\x71\xfe\x9b\x70\x2a\x60\xfe\x5e\x82\xe7\x6a\x8b\xf9\x9a\x80\x94\x45\x79\x93\x8c\x26\x20\x06\x69\xc5\x45\xf4\x26\xb9\x3b\xae\xf4\x37\x48\xab\x68\x16\x52\x25\x9e\x91\x66\x0d\x9b\x82\xb0\x8a\xda\x10\x56\xc3\xae\x21\xac\x84\x2f\x08\xab\x78\x91\x80\x02\xcb\xbc\x41\x40\x71\x36\x5f\x03\xe4\xb2\x48\x6f\x46\x9a\xc5\x8d\xfa\x4a\x3e\x45\x05\xce\x32\x3b\xe5\xcd\x41\xe0\x59\x21\x90\x84\x7f\x24\x60\x8a\xcd\xe2\xf1\x6e\xa9\x62\x3c\x22\x67\x07\x17\xc7\xa4\x08\xf2\x2d\x48\x9f\x1d\x47\x51\x61\x0e\x57\xf0\xea\x02\xa0\x50\xf4\xfd\x47\x4c\xd9\x98\x3c\x32\x14\xdb\x5b\x08\x3f\xeb\x40\x08\x2a\x96\x94\x97\xbe\x84\xdf\x90\xeb\x7a\x4b\x58\xe8\xd8\x30\xfa\xff\x6e\x21\xd4\x33\x2e\xad\x34\x96\xc1\x71\x5e\x68\xac\x26\xe6\x7c\x2b\x7e\xd8\xdd\xe7\xa0\x5f\xe8\x50\xdf\x00\xb7\xd9\x47\x70\x35\x09\xcf\x17\x4a\x4a\x94\xf8\xd6\x20\x3c\x01\x3d\x3c\x03\x38\x40\x6f\x25\x22\x63\xf1\x19\x53\x7c\x04\x40\xaf\x2a\x59\x0d\xce\xde\x16\x28\x91\xfe\x54\xc9\x6a\x3f\xf7\xa2\x88\x51\xd5\xfa\xaa\x88\x89\x25\x69\x71\x19\x5a\x45\x43\x64\x87\x28\xc1\x14\x7b\xae\x69\x56\x0f\xc9\xf0\x9a\x7e\xc1\xa0\xf0\x6f\xd3\xae\x7e\x5a\x27\x2e\x44\xfb\x44\xb0\x26\xf8\xdd\xcb\xb1\xf9\xe2\xe5\x48\xa1\xee\xe5\x18\x2f\x1a\xd9\x83\xb8\xde\xae\x91\x3d\xc8\xe7\xed\xaa\xdf\xdc\xda\xc4\x67\x88\xec\x51\xef\x12\x32\x4a\x2d\xb1\x03\x70\x2d\x18\x48\xc4\x5c\xaf\x11\xae\x0c\x2a\xfd\x6a\xef\xe5\x54\x70\x35\xd6\xd8\x2a\x5a\x84\x7b\x00\xb8\x19\x23\x07\xd2\x6b\xb6\x70\xfb\x3e\xf1\x72\x8e\x66\xbf\x75\xd0\x1d\xf2\x3d\x1d\x2c\xc3\xb8\x94\x22\x52\x9e\xf0\x55\x66\xa8\x7d\xbd\x09\x97\x65\xbc\xb0\xdc\x7e\x46\x26\xd5\xce\xf3\xbd\xbe\xbd\x21\xf6\xe2\xba\x9c\x66\xd3\x79\x31\x19\x1f\x2a\x48\x5e\x6c\xbf\x22\xe9\xdf\xeb\x45\xaa\xb9\xd8\x8b\xf1\xd7\x54\x85\xf9\x1a\x25\x5f\x5b\xba\xf7\x22\x8f\xa9\xab\x66\x36\x6f\x6f\xa7\x97\x9b\x54\x91\xfa\x7b\x2b\xce\xa4\x93\x5b\x73\x03\xa0\xba\x0d\x2a\xf8\xa7\xbd\xdf\xfb\x5d\xbe\x5d\x75\xf0\x6b\xd6\x4b\x93\x31\xbc\x37\x49\x42\x05\xe5\x56\xe8\x89\x68\xf5\xbd\x49\x17\xe8\xd6\x36\xbc\x81\xe8\xe5\x8e\x68\xc9\xc0\xb8\xa5\x05\xb9\x35\x5f\x2c\xbe\xf4\x13\x7d\xb7\x99\x4e\x69\x69\x93\x7e\xd3\xa1\x2b\x61\x71\x71\x36\x39\x43\x45\x98\x1b\xd5\xa3\x73\xb5\x49\x74\x2a\x3a\x8a\x90\xf8\x56\x36\x9b\xa5\x60\x98\xcd\xd2\x01\x3d\xa4\x54\x14\x4f\x3c\xda\xcd\x53\xf9\x41\xf8\xe5\xd6\x31\x99\xa5\x07\xca\x64\x96\xdd\xba\x18\x66\x8b\x21\x1f\x82\xd5\x79\x02\x1f\xbc\x73\xdd\x5d\x24\xf2\xd6\x2d\xe5\x7d\xf0\x61\x76\xb9\x5e\xb4\x5b\x9e\x4b\xd2\x75\x9b\x45\xe5\x25\x07\xa5\xb6\x0a\x2f\x39\x28\xa5\x64\xdf\x57\xd9\xac\xcf\xa8\x7f\xb3\x75\xbd\x3a\xa0\x51\xdf\x17\x4d\x23\x2a\x83\x97\x14\x94\x1a\x2d\xbc\xdf\x1d\x3b\x14\x8e\xbf\xef\xa6\x0c\x40\x93\x80\x52\x63\x86\x97\x54\xdf\x18\x59\xac\x83\x54\xdf\x04\xe6\x5f\xc7\xe1\x76\xef\x3c\x67\xca\x14\x9e\xb1\x1a\xcf\x99\xe7\xca\x77\xcb\x34\xbe\xdb\x0e\x16\xe4\xdf\x96\x5c\x07\x76\x5b\xfd\x58\x16\x42\x36\xfc\x8d\x78\x1d\x07\x44\x52\x54\xc0\x5e\xfb\xa3\x45\xd7\x71\x7c\xc7\xfd\x38\x78\x4e\x07\xcf\x94\x21\x65\x52\xb1\x63\xc4\x1d\x0d\xcb\xe7\x75\x7c\x57\x6d\x39\x92\x3f\x1a\x15\x1a\xcf\x9d\xef\x96\x19\x7c\xf7\x19\xc5\xe0\x02\xba\xa4\xbc\x92\x11\x7f\x77\x6e\x39\x12\xc0\x25\x81\x63\xc4\xdf\x9d\x5b\x0e\x47\xff\xdd\xb9\xe5\x70\xc4\x49\x40\xe9\x37\x0b\x28\x6d\x66\x01\x05\x86\x9c\xf9\x4e\xfb\xdf\x55\x5c\x8e\x83\xf6\xbf\x9b\x78\x96\x0c\x3c\x19\x49\xe4\xf2\x3b\x92\xc8\xc6\xe0\x33\x64\xda\xa2\x5f\xd2\x26\x91\xe3\x76\x1d\x05\xdd\x70\xa7\xdf\xa2\x68\xd4\x86\xc8\xf2\x8d\x6a\x61\x1d\xe4\x4d\x22\x5d\xf8\x3a\xb4\x6e\xef\x36\x84\xbf\x05\x34\xd8\x3a\x48\x9c\x44\xde\xcb\x75\x98\x14\xc9\x99\x28\x48\xd2\x87\x8d\x7e\x10\x2d\x47\xa6\x11\x7b\xe7\x19\xc3\xf5\xe5\x32\x55\xd1\xa1\xdf\x11\xd9\x75\xbf\x77\x2e\x60\xd7\x9b\x4c\xde\xcb\xe9\x22\x93\x37\x3c\xc2\x3a\xaa\x04\x19\xd3\x55\xb1\xa1\x5e\x00\x57\xbd\x9b\xaa\x2f\x9b\xca\x16\x12\x22\xbf\xbf\x3c\x33\x34\xac\xdb\xd7\xf1\x17\x65\xb7\x8e\x26\xe8\x2c\x62\x93\x94\xf4\x19\x52\xd2\x9d\x8a\x19\xfc\x74\x47\x62\x06\xbf\xdc\x3c\x88\x28\x1a\x06\xa7\xeb\x68\x18\x0d\x3b\xe1\xc4\xb0\xca\x0e\x83\x30\x02\xd9\xb9\x6c\x88\x2a\x5d\x45\x42\x0a\xe4\x68\x14\x83\x66\x3b\x23\x4a\x55\x76\x07\x74\x75\x55\x8d\xc9\xec\x50\x97\x4e\x6c\xf7\xb6\x63\xd8\xdc\xa8\x8d\x70\x0f\xeb\x30\x48\x15\x92\xe0\x75\x18\xa4\x6a\xda\x94\x94\x9c\xdf\x95\xd5\x4d\x06\x81\x7e\xa9\x0d\x8f\x8c\xfa\xa5\xe9\x33\x24\x65\x14\x52\x3f\x3a\x80\x76\x04\x4d\x09\x24\x03\xe1\xd3\x00\xf4\x11\xf4\xa5\x2f\x48\xa2\x06\x50\x0d\x84\x62\x83\x71\x1b\x52\x1e\x7d\xcf\x3a\x06\xb6\xc3\xd3\x1f\xde\xc7\x7e\x0f\x32\xce\x96\x30\x35\x8d\xbe\x35\x35\xad\xf6\x8d\xa9\x69\xc0\x81\x4e\xd2\xed\x88\xb8\x21\xc5\xf6\x1a\xd2\x77\xb4\x84\xbd\x14\xc4\xfa\x3a\x26\x52\x9c\x02\x7c\xc6\x92\x77\x9f\x1a\xa7\x6a\x79\x34\x67\x00\xeb\x9f\x41\x0d\x80\x9d\x98\x39\x16\x80\xfd\x97\x61\xdc\x1a\x5f\x77\xb1\x3f\x16\xe6\x59\x2e\xfd\x32\xfe\x2f\xf0\xad\xfa\xbf\xff\xeb\xc9\xa9\x59\xa2\x4a\xc0\x5b\x8b\xef\xd6\xbd\x78\xa6\x33\xd2\x84\x17\xd7\x71\x79\xdd\x03\x10\x69\xc2\x8b\xb3\x77\x9a\xb6\x9c\xbe\x4e\x6f\x7e\xcb\x40\x7c\x89\xc8\x4e\x72\xa7\xbb\xa2\x4a\x0c\x44\x88\x64\x06\x2f\xae\x3a\xf2\x82\x1a\xd8\xe5\xd4\xed\xc9\x46\x1f\x7f\x00\xf5\x49\xdc\xd7\x42\x0f\x17\x71\x5f\x2b\x15\x4c\xf5\x2d\x44\x17\x57\x78\x61\x64\x97\x57\x38\x0d\x99\xf6\xbb\x30\x13\x44\x8e\x8a\x1d\x0a\x59\x44\x68\x88\x75\x98\xea\x5b\x88\x2e\x1d\x7b\x9c\xd2\x8b\xfc\xcf\x0e\xe1\xe2\x2a\x8d\x0a\x2f\xcf\x34\x74\xe3\x61\xe9\x2e\xbc\x51\x79\xba\x45\x20\x82\x6a\x20\xcb\x9b\x3c\xcf\x42\x7a\xe3\x68\x35\x59\xcc\x9b\x84\xd4\xd3\x0a\xdc\xe7\xae\xd3\x4d\x36\xe7\x69\xa3\x98\xab\xb8\x53\x37\xc8\xbb\xd0\xa6\xa9\xb9\x85\x7a\x7b\x6f\x33\xe2\x8f\x20\x19\xa4\x5e\x59\xc7\x9e\x3c\xd3\xce\xe6\x7a\xf6\x6a\xdc\x5c\xcf\x5e\xb7\xdb\xeb\xd9\xf2\x5c\xc9\x09\x18\xa0\x5f\x86\x6b\xf6\x70\x25\xff\x99\xd0\x6d\x1d\x10\x37\xc4\x42\x5e\x07\xc4\x0d\xf9\xe6\xd7\x41\xa6\xee\xe1\x65\xf1\x40\x70\x24\x06\x84\xaa\xe7\x88\x32\x68\xf3\xdc\xe5\xc4\xe3\x24\x95\xc6\x3a\x88\xbb\x79\x04\x50\x68\xf0\xdc\xc0\x1f\x41\x33\x8b\x80\xbf\x12\x58\xf4\xfb\x7a\xc3\xf9\xcc\x65\xd4\x69\xf3\x23\x5c\x56\xdc\xc4\xb8\xd8\x25\x88\x98\x75\x7c\x84\xcb\x8a\xeb\x91\xbc\x8f\x41\x0f\xbc\x76\x6c\x65\xae\x47\x4f\xfc\xeb\xf5\xf8\x3d\x27\x04\x05\x5e\xd1\x09\x41\x81\xd7\x72\x3a\xbc\x2a\x2b\xcf\x85\xef\x9d\x67\x6f\x4a\x9f\x1b\xdf\x1b\xcf\x08\x37\x96\xe5\x07\xdf\x7d\x46\x67\xc7\xa9\x4e\x08\x13\x88\xc7\xb3\x92\x32\x82\x21\x0c\x5e\x9a\xf6\x8b\xfe\x8b\x13\x9b\x0e\x2e\x4d\x4e\x75\x4a\x08\x34\xc0\x1a\x29\x21\xd0\x60\xa7\xa5\x8f\x9e\x29\x04\x5c\x5d\x29\x71\x81\xb2\x95\x53\x42\x88\xc1\xae\x4b\x90\x30\x04\x41\x5d\x89\xe0\x9d\xf0\x25\x2b\x7d\xe4\x4c\xf5\xa8\xa4\x88\xdd\x39\x6c\x48\x6f\x15\xf6\x66\x52\x3d\x93\xa3\xbb\x10\x67\x00\x1f\x62\x84\xe2\x7c\x99\x73\x27\x3b\xa0\x88\xea\x69\xef\x46\xf5\xc4\x64\x7b\xa5\xac\x52\x4c\x18\x95\x30\x64\x07\x18\x61\x3d\x39\xac\xc9\xb4\x3b\xa8\x16\x57\xca\xa2\x7d\x9f\x35\x24\x9b\x56\x89\x9b\x09\x00\xb2\x0b\x6f\x97\x5e\x4c\x3e\xab\xa1\x99\x02\xe6\xcd\x24\x2c\x05\x95\x18\x18\x21\xa1\xad\xe9\x16\x32\xc0\xe7\xb4\x7a\xa8\x6e\xa0\x17\x93\xaa\x1b\xe7\x48\x0d\x8d\x04\x44\xc2\x42\x3c\xbb\x82\x61\xed\x2d\xbc\x45\xf9\x3b\x27\x38\x69\xed\x8d\x33\xd8\x4a\xd5\x68\xf9\x0e\x5e\x83\xce\x69\x03\x55\x36\xcb\x06\x50\xbe\x14\x6c\x6f\x56\x42\xf9\x32\xe3\x19\x01\x67\xb2\x86\xa8\x07\xb8\xaa\xac\x04\x0b\x54\x11\xce\x16\xcb\x80\x26\x0a\x23\x6f\xa0\x86\xec\xb3\x3a\x4b\x77\x04\xc9\xb0\xc9\x60\xb0\xd2\x47\xd3\x4c\xf2\xfe\xac\x44\x68\x24\x52\xeb\xac\x44\x68\x24\x02\xfb\xaf\x44\x68\xa4\xc3\xd1\x35\xe4\x9b\x60\xea\x84\x10\xa1\x27\x8f\x58\x03\x17\x80\xfe\x53\x88\x0d\x3c\x0f\x48\x0a\x46\x71\xd6\x49\xd5\x28\xbd\x9b\x48\xd5\x28\x3d\x9d\xba\x87\x92\x32\x1f\x51\xb3\xa4\xcb\x13\x1e\x80\x64\x46\x5f\x09\x13\x50\x09\xff\xd4\xc5\x18\x7f\xd9\xe2\xad\xd4\xa5\x67\x3d\x8e\xa4\x6e\x14\x61\x27\x5c\x05\x89\x31\xbc\x52\x3f\x79\x66\x06\x71\x15\x5c\x42\x05\x55\xd3\x89\xd6\xbf\xd2\x70\x53\xbb\x93\x24\x6b\x62\xf9\x21\x6b\x8a\x98\x03\xb2\xa6\xb8\x5f\x20\x6b\x3a\x39\xf7\x57\x82\xac\x29\xa2\x91\xe1\xf1\xb4\x25\x55\xbe\xee\x43\x23\x6d\xc6\xc6\x1f\xda\x31\xb9\x36\x53\x02\x4b\xd4\x43\x40\x4d\xac\x45\x57\x9a\xca\xec\x20\x20\xd3\xf4\x10\x31\x45\x13\xea\x6e\x5a\x5b\xd9\xe1\x62\x4e\x27\xb2\xc3\x78\xbe\x5d\x1c\x6b\x28\x80\x77\xb8\x53\xb7\x44\x47\x65\x04\x4d\x89\xce\xb4\x20\xef\x3c\xc2\x2b\x0e\x0e\xbd\x2f\xc9\x79\x11\x82\xc9\x68\x64\x0c\x92\x61\x32\xa5\xc9\x93\x61\x32\xa5\xaf\x93\xd9\x68\xa2\x0a\xfd\x07\x0a\x5b\xc8\xe3\xc4\x47\x26\xa3\x91\x99\x48\x26\xa3\x89\x15\x32\x19\x4d\x60\x46\x93\xd1\xc8\x05\xa4\x13\x43\x5d\x0f\xde\xa9\x16\xce\x51\x9e\x6a\xde\x9c\x98\x33\x30\x0d\x50\x86\x31\x4d\xf7\x45\x2d\xa2\x93\x1c\x26\x33\xc9\x06\x14\xca\x01\xfe\xa9\x3f\x8a\x93\x79\xc5\xc9\xa7\xfe\x85\x9f\x87\x98\xea\xc2\xd6\xdf\xfd\x65\x3a\x9a\xe9\x88\xa1\x6f\x46\xa0\x17\x23\x05\x4c\x87\x7c\x69\xf9\x2f\x94\x44\x0a\x18\xee\xbc\x7f\xa4\x8f\x2f\xda\xd3\x8b\x1b\xaf\x50\x18\xd9\xf2\xe3\x0b\xc5\x0c\x15\xe0\x61\xbe\xd5\x24\x51\x43\x71\x50\x15\x4f\xdf\xaa\x95\xc4\x2f\xff\xe8\x22\x06\xfc\xd1\x45\x2d\x16\x5c\xe9\x90\xc7\xc6\x70\x4b\xee\xdc\xdb\xe3\x64\x77\x68\xd4\xa2\x0c\x10\xc6\x77\x64\x1e\xd1\x0e\x8c\xb2\x53\x75\x63\x7b\x0a\x8d\x9b\x4c\x35\x23\x1a\x09\xe1\x0f\xd0\x19\xbb\xc0\xe9\xd8\x38\xc4\xbb\x9a\xd0\x57\x64\x18\x58\xc9\x90\x97\x48\x7f\x56\xda\x08\x46\xa0\x53\xd2\x46\x30\x02\x95\x9e\x36\x16\xd8\x22\xb0\x7d\x52\xd9\x0e\xc4\xa2\x3e\x8b\x45\x6d\xc7\xac\xfe\xc8\x15\xd2\x83\xa0\x03\xd6\x3d\x11\xc9\xe0\x80\x58\x4a\x24\xe4\x26\xdb\xc0\x4a\x91\x23\x51\x8c\xf3\x28\x63\x00\xec\x07\x34\x2a\x3e\x26\xc2\x39\x3e\x25\x2b\x91\x9d\xfb\x40\x96\x90\xd0\xcf\x90\xb6\x63\x25\x29\xaa\xe8\x18\xcd\x50\xe3\x19\x95\x4c\xf9\x33\xee\xd4\x4a\x64\xdf\x26\x53\xd9\x4a\x92\x5b\xd5\x06\x10\x82\xb8\x99\x89\x75\x60\x4a\xec\x95\xd0\xd7\x14\x6f\xc1\x17\x08\xab\xdf\xa1\xf9\x60\xb0\x12\x34\x59\x53\x5e\x93\x3e\xda\x6b\x05\xe8\xaf\x31\xf0\xdc\x8b\x68\x69\x84\x3d\x4b\x7c\x31\x51\x59\xe2\x2b\xf9\x1d\x3c\x0f\x76\xcc\x12\x5f\xdc\x99\x99\x80\xe9\x58\x07\xaf\x2c\xf1\x55\x2c\xdf\xf9\x5e\x79\xc6\x1c\x9a\xfb\x2f\x87\x04\xa9\xd9\x10\xd4\xd7\xb0\xd0\x49\xa3\x85\xe7\x9b\xe7\xc5\x33\x56\x52\xec\xfa\x7c\xc8\xc2\x0c\x7b\x00\x6a\x26\x26\x23\x5a\xaa\x50\x3a\x39\x21\x5d\xe1\x64\xe4\x24\xd4\x89\xe7\x90\xae\xd0\x03\xb4\xd8\x51\x7c\x86\x36\x2c\x16\x9a\x46\x74\x63\xfc\x09\xea\xb6\xf8\x2c\x78\x80\x91\x00\x2f\xdb\x33\x44\x2c\xc7\x38\x43\x56\xe9\x4a\xbf\x32\x02\x22\x14\xc2\x2b\x67\x27\x09\x90\x32\x93\xc4\x19\xcb\x19\x28\x38\x57\x39\x03\x05\xdb\x3b\x43\x52\x85\xd4\x29\x6b\xf5\x52\x9c\x25\x83\x24\x60\xfa\xb0\xb2\xa1\xd2\x95\xc0\xe5\x0c\x95\x0a\x6e\xcb\xe4\xe8\x96\x8b\xcb\x1f\x19\xb5\x90\x45\xae\x4c\x8e\x6e\x14\xf4\x2b\x93\xa3\xdb\xf3\x9a\x89\x9e\xb0\xec\x0e\x9d\x4d\x43\x84\xbd\x32\x49\xba\x51\xae\xae\x5c\x24\x59\x2d\x34\x79\x06\xf0\x02\x32\x71\x70\x24\xe9\x96\x7e\xcb\x28\x6c\x3a\xd6\x3e\x2b\x93\x99\x7b\xb9\x58\x0a\xa1\xdc\x62\x05\x91\x8f\x53\x5c\x11\xf9\xb8\xea\x55\xc1\x89\x83\xae\xe2\x37\xc7\x56\x91\xdf\x38\xf9\x55\xf0\x00\xf5\x23\xc4\x96\x9c\x68\xae\x82\xc4\xd8\x74\xa7\x59\x7e\xbf\xf8\x6e\xf9\x9b\x79\xb1\x37\xa0\x73\x73\x93\x80\x1b\x31\xeb\xca\x15\x6a\x9f\x6b\x21\x93\x8c\x1b\x51\xec\xca\xca\x9c\xdc\xdc\xca\x9c\x38\x48\xf9\xa3\xcf\x16\xb2\xde\x95\x49\xb7\xad\x98\x35\xa3\xda\x69\x38\x00\xaf\x4c\xba\x6d\x99\xc0\xdc\x9c\x53\x00\x6d\xb1\xe8\xbe\x40\xe4\xb8\x27\x9b\x50\xfb\x8c\xaa\x0e\x0b\x86\x95\x49\xab\x2d\x01\x91\x09\x94\xae\xf1\xc8\xca\x10\x6b\x18\x7a\xae\xdc\x5d\x7f\xba\xeb\x5a\x4b\xbb\x5b\xbb\xc0\x5a\xc1\x0d\x00\x7c\x3a\xec\x70\xc9\x66\x1d\x76\xa6\xe5\x31\x27\x5c\x7e\xbf\x84\xd5\x17\x6c\x05\x57\xfd\x0b\xc5\xe5\x0e\x53\xb5\xec\xc5\xf4\xec\x8e\xaa\x3b\xcf\x0c\x64\x38\xcf\x7c\x1f\xec\x57\x68\x8f\x3c\xb4\xc3\xe3\x52\xc9\xc6\x73\x52\xc8\x91\x83\x40\x03\x96\x20\xd0\xdc\xb1\x41\xa0\xb9\xf6\xe3\x23\xa4\xbc\x0b\x33\x72\xa7\xe2\xf6\x1d\x1e\x22\x17\x0d\xc1\xd3\x51\x5c\x10\x23\x40\xc9\x98\xe5\x8f\xa4\xab\x4a\x52\xb2\x9e\x7a\xf2\x09\x19\x8b\xe7\x43\x5a\x31\x1b\xed\x41\x18\xa1\xf5\x1a\xf6\x1d\x2b\x4f\x28\x4d\x17\x1d\x99\xd4\x21\x9f\x90\x89\x08\x75\x04\x2c\x98\xc0\x1c\xff\x7a\xc1\xdd\x20\xb0\x86\x34\xa1\x62\xa0\x6c\x5c\x08\xe5\xc4\x19\xa2\xf0\x88\x81\x4d\x79\x41\x77\xec\x74\x30\xae\xb0\x91\x34\x93\x4d\x13\xfc\xa1\x78\x1a\x71\x1d\xf2\xce\xcf\x26\xe6\x56\xbe\x99\xb1\x7c\x39\xa4\x94\xf3\x47\x2d\xd6\x00\xd9\xbc\xdc\x32\xa9\x99\xe0\x0f\x01\x97\xc1\x1f\xfe\xb5\x15\x93\xcf\xc0\x34\xbc\x96\xf2\xca\xcb\xd9\x07\x46\xc3\x4a\x15\x0f\xbd\x86\xd7\x8a\x60\xb3\x86\xd7\x31\x65\x67\x4c\x32\x8d\x19\x49\x4a\x26\x37\x9f\xc1\xa3\x32\x96\x53\xc3\x4d\xf7\xee\xe9\x86\xf1\x14\x9c\x31\xcd\x74\x7a\x0a\xb3\x3f\x02\x66\xeb\x07\xcc\x0c\x20\xe2\x43\xb8\x2b\x4f\x60\x76\x93\x18\x63\x53\x69\x48\xbe\xd4\xd8\x89\x8f\x88\x0f\x11\x67\xfe\x92\xec\xf7\x3b\x40\x06\xd2\x82\xa6\x3c\x02\x7b\x98\x88\x5b\x71\x63\xbe\x60\x08\xec\x1d\x92\xb2\xc6\x3d\x79\x79\x05\x54\x7b\x94\x23\xb0\x13\xac\x09\xdc\xed\x97\x49\xec\x60\x08\x32\xc1\xa7\x66\x11\xb1\x46\xb0\x08\x61\xb9\x61\xab\x5d\x16\x73\x6f\x4b\xc3\xe7\x1b\x13\x02\x27\xdf\xf8\x10\x81\x11\x89\x0f\x11\x27\x92\xf8\x10\x87\x9c\x58\xc6\xa0\xe7\x08\xac\x8e\x52\xf1\x90\x2f\xcb\xb7\x52\x5e\x11\x8d\x29\xb6\x65\x08\xb2\x29\xb6\x03\xe5\x99\x62\x5b\x42\x34\xeb\x5b\xa4\xdc\x36\xef\x00\x99\x06\x8c\x24\x11\x78\x7b\x3b\xc7\x80\x6c\x24\x89\xc0\x5b\xdb\x5b\xc2\x3b\x5d\x17\xa4\xb8\xa1\xf4\x3a\x92\x87\xc9\xc6\x95\x90\xbb\xc9\xe1\x82\xe4\x04\xe2\x75\xd4\x8b\x1b\x46\x4f\x23\x39\xa2\xbc\x85\xd3\x03\xb7\x03\x4e\xfa\x21\x7e\xc4\x11\x97\xd6\x13\x70\x02\xf4\x23\xb9\xf1\x67\xb8\xf9\x95\x75\x4b\xb2\x5b\xe9\x51\x35\x72\xf9\x71\x15\xdc\xb4\xfa\x25\xc5\x35\xf0\xc4\x32\xf8\xe2\x32\x88\x81\xf4\x4b\x72\xde\x1e\xb1\xb4\x04\x19\x71\xb6\xfe\xad\xef\x63\xe0\x5a\xa9\xaa\x27\xf0\x84\x03\x8a\xd1\x31\xa0\xf7\x60\xae\xa9\xf2\x3a\xb8\x78\xc9\xe2\x26\xea\x43\x95\x36\x42\xe2\xae\xfc\x6a\xd8\x01\xdf\x90\x09\x3e\xb1\xa4\x43\x74\x52\x0a\xba\x2c\x64\x85\x12\x6c\x11\x7d\x42\x98\x8d\x3e\xe1\x09\x7e\xb5\x79\x2a\xfe\xd0\x2e\x45\xf8\x23\x16\x05\xb7\x5d\x39\x34\xac\x5d\xbe\x68\x58\x0b\x81\x54\x0e\xad\x54\xb8\x9c\x4b\x78\x30\xc1\xa1\x97\x03\xb1\xd1\xf4\x59\x1d\x41\xb7\x14\x37\x8b\x5a\xae\x62\x98\x0a\xaf\x99\x72\x38\x00\x0e\x5e\x39\x02\x66\x8b\xe9\xe1\xb3\x2c\x26\x5f\x3e\x84\x46\xa0\x87\x75\x04\x1a\xd5\x5d\xc1\xf8\x5b\x3d\x61\x31\xfc\x44\x45\x83\x56\x0c\x3f\x21\xb5\x5c\x22\xfc\x84\x70\x62\x79\xa4\x3c\xb3\x18\x7d\x02\x5b\xbc\x55\x12\x06\xc0\xd3\x76\x31\x4c\x8e\xef\xe8\x5d\x04\x2b\x09\x30\xec\x72\x49\x01\xa3\xa5\x84\xb1\xd9\x47\xc0\x08\x5c\x19\x18\xa7\xcf\xd8\x4e\x3b\xf8\xac\x4c\x81\xda\xc6\x25\x95\xf7\x2c\x39\xc0\xb5\x54\xe0\x39\x8b\x61\xc4\xc1\xe2\x15\xe3\x92\xaa\x17\x2d\x84\x9b\x50\x78\x59\x8c\x51\x4a\xfe\xb6\x55\xb2\x5b\x64\xfa\x07\x43\xa0\x78\xd6\x0c\xd1\x45\xcd\x31\x12\x5f\x88\x56\xb2\xac\x8e\xe5\x92\x4d\x69\xb9\x24\x17\x5f\x08\x3d\xd1\x48\x49\xba\x8a\x96\x4b\x6e\xa3\xb0\x5c\x72\xb8\x61\xb9\xc4\x3e\x2c\x05\xe0\xed\x30\xac\xc0\xbb\x6d\x05\xc0\x0c\xd1\x88\xa5\x0a\xaf\x0a\x72\x45\x13\xeb\xad\x02\x31\x3b\x64\x98\x4a\xf5\xe8\x80\x8c\x4b\x0d\x24\x61\x1d\x4c\x23\x08\xfa\xb2\x8a\x89\x0e\x63\xc8\x66\xee\xae\x88\x9a\x8b\xb6\xdf\xa2\xb6\x42\x50\x89\xa6\xac\xa7\x54\xa5\x38\x20\x8f\xa2\xf5\x37\xe7\xb0\x68\xfd\xed\x00\xb4\xfe\xf6\x2e\x2a\x98\x2f\x29\xfa\x2d\x1a\x7f\x13\x11\x66\x15\xfd\xc8\x09\x1b\xb8\x8a\x71\x4d\xf1\xde\x5f\x05\x93\x25\xc9\xb0\x62\xae\x6e\xdc\xfd\x57\x31\x57\xb7\x98\xbd\x98\xab\x5b\x02\xb6\x98\xab\x5b\x24\x59\x9a\x40\xfe\xcd\x11\x97\xe6\x08\x00\xb4\x39\x02\xdb\x8e\x11\x30\xb4\x26\xd4\x9e\xea\x20\x82\xe1\x7d\x8b\x89\xbc\xc5\xc6\xc5\x44\xde\x44\x54\x5b\x05\x32\x78\xa8\xb6\x28\x26\x5d\x94\x69\x2b\x26\x5d\x14\xe3\x96\x8e\x35\x98\xfb\x81\x28\xa7\x33\x1d\xd6\x77\x70\xd5\x3f\xd3\xbb\x99\x99\xc2\x1c\x3c\xe4\x78\xa5\x2b\x47\xcb\xbe\xe8\xd2\xea\xd1\xc0\x36\x5c\x29\x62\xe9\xca\xd1\x3c\x26\xdd\x34\x22\x42\x46\x00\x0a\x89\x99\x32\x02\x7e\xaa\x98\xee\x3b\x10\xde\x90\xcc\x74\x9a\x06\x20\x83\x63\x8b\x7a\x5a\x2f\x8c\x32\x62\x3d\xe8\x05\xfb\xef\xda\xec\x5f\x4d\xad\x2c\x58\x31\xf5\xb7\x3a\x96\xa2\xaa\x16\x43\x9f\x55\x4c\xfd\xed\x5d\x5f\xa0\x99\x1b\x51\x93\x56\x31\x0f\xb8\x67\x08\xc1\x67\x96\x4e\x2a\x90\xc9\x41\xa9\x14\x6c\xc3\xd5\x45\x14\xd3\x80\x4b\x44\x94\xa9\x85\xac\xbd\xa0\xbb\x1d\x87\x90\x41\x27\x37\x72\x72\xac\x62\x78\xf9\xc3\x83\xae\xa9\xb8\x34\x77\x99\x9a\xe0\x7b\xa0\xb0\x15\xaf\x2e\xe6\xd4\x81\x20\xfa\xdf\x56\x61\x6a\xa0\x8c\x73\x4c\xb3\xe2\x52\x69\x9d\x82\xb5\x78\x53\x61\x53\x50\xf9\x66\x89\xdb\xb2\xf4\x20\x70\xd2\x49\xfe\x1d\x57\x09\x74\x72\x96\xcc\x2e\xc4\xb9\xa8\xee\x8c\x85\xba\x59\x44\xb3\x50\x37\xbb\x31\x75\xb6\x97\xb0\x2e\x4b\x80\x01\x7e\x69\x59\x28\xf2\x36\x60\xda\x70\x29\xf4\xb5\x97\x98\x2e\x2b\xa0\x67\x2a\x90\xb6\x66\x29\xe3\xa2\x41\x9d\xd2\x98\x12\xd2\x56\x08\xb2\x72\x12\xf1\xd4\xb3\x0d\xfd\x9c\xa5\x7f\x0b\xf4\x73\x96\x7d\x28\x8a\x5e\xbb\xd3\x07\xfd\x9c\x25\x0b\x4a\xc8\x61\x21\x94\x8a\x72\x58\xe9\xfc\x02\x01\x9d\xbb\xbb\x5c\x39\xac\x2c\x53\x21\x30\xab\x76\x02\xe5\x8c\xab\x9c\x71\x22\x93\xad\x9e\x18\xe3\xb2\x4a\x02\x16\x13\x86\x23\x99\x2b\x57\x4c\x3e\xb0\xe0\xde\x98\xe5\x3f\x0a\x69\x8c\x30\x1d\x5d\xe5\x0a\xf0\xe9\x44\x69\xad\xfc\x43\xb9\x02\x62\xff\x70\x48\x9b\x6b\x04\x35\x3d\x8a\x63\x51\x42\xdb\x1c\xe5\x25\x77\xed\x91\x33\x8a\x7d\xe0\x59\xf3\x80\x77\xe1\x0f\x13\x77\xf1\xec\x5d\xb0\x0b\x04\x4c\x33\x7f\x77\x4f\xd9\x1d\x28\xc3\x97\x61\x15\x8b\x11\x98\xd4\x49\xd2\x0e\xbe\x8b\x28\x21\x9b\xeb\xff\x0f\x56\xba\x40\x53\xe7\xee\xa6\x25\x2d\x78\x8f\x8e\x1e\xdb\xf3\x87\xaa\x2e\x51\xc0\x76\x08\xf0\x1d\x65\x2b\xf0\x66\x38\x46\x9d\xed\xee\x66\x48\xea\xde\x3d\x27\x3b\xc6\xc3\x40\xb7\x9b\x43\x14\xb4\x49\x12\xed\x7c\x6e\x92\x44\x47\x0d\x87\x46\xef\x3b\x76\x86\x9d\x38\x4e\x48\xf5\x02\xa5\xdd\xb0\x2f\x5f\xc5\x1c\xe1\xdd\xdb\x61\x13\xc2\xda\xa5\x81\xb6\xae\x5a\xb9\x94\x47\x80\x69\xf8\xc9\x74\x42\x6d\x33\x12\x75\x2f\xaa\x87\x20\xd5\x62\x1f\x73\x10\x75\xf1\x9a\x39\x88\xba\xe7\xf2\x01\x46\x37\xd6\x13\xf3\xc8\xdc\x3d\x31\x77\xc0\x88\xeb\x7e\x5f\x92\x45\xaf\x37\xb8\x77\x3b\xde\xfa\xa1\x93\x29\xa4\x17\x9a\x33\x5e\x54\x17\xc4\x8b\x71\x5f\x04\x33\x02\xd3\xba\x35\xcd\x03\x2e\xd7\x51\xde\x98\x25\x8b\x69\xdc\xeb\x30\xdf\x08\xfc\x6c\x6b\xb7\xad\x09\x1b\xce\x2e\x1e\xe0\xc8\x04\x2e\xfe\x35\x29\x91\x44\x7a\x8d\x4c\xe0\xd0\x98\xf5\x90\xec\x19\xfe\xc1\x51\x9e\x43\x53\xf1\x7c\x6c\xe2\xd2\x7a\x04\xcc\x83\x97\x80\xb9\xf0\x32\x5d\x0c\x8b\x69\x90\xcc\xf6\xa9\xe6\x21\x92\x6f\xab\xe6\x21\xd2\xce\xa8\x1e\x01\x73\xe5\x45\x23\x1b\xae\xc6\x7a\x08\xf4\xf2\x8f\xe9\xcb\x21\x4f\x6a\x12\x68\x6e\xfa\x8a\x57\x64\x96\x71\xab\x29\x82\x23\xfb\x12\xda\x59\x5a\x4b\xfa\x1a\x71\xb7\xd6\xe4\x1a\x08\x68\xa4\x35\x5a\xbe\x60\x3c\xac\xbc\xbe\x42\x33\x6b\x96\x51\x23\xab\x11\x57\x68\x4d\x3a\xa3\x24\xa1\x11\x6d\x81\x37\x6b\x0e\xd0\xa8\x0f\xa9\xab\x2f\xf8\xaa\x90\xba\x95\xfc\xf7\xab\x66\x9d\x69\x96\x7f\x86\xb3\xeb\x8b\xeb\x0e\x7a\xa9\x91\x98\xc8\xd9\x8d\x3c\xdf\xcb\x3f\x68\x64\x5c\x36\xf3\x12\x1d\xd1\x58\x40\x63\x95\x07\x35\x13\x23\xcb\xc6\x63\x72\x0d\x4d\x4b\x74\x38\x66\x13\x80\x27\x17\xa7\xe0\x9f\xc5\xee\xac\x85\x2d\xe0\x34\x17\xdc\xb3\x04\xcb\x6c\xdf\x84\x1c\x5b\xd5\xac\x44\xd2\xaa\x95\x48\xfd\xc3\xf5\x2b\x01\xbc\xd5\x55\x78\x59\x48\xb3\x6f\x81\x2f\xb1\xfe\x76\xa8\x41\xba\x4b\x5e\x14\xa1\x38\x61\xa6\x28\x3a\x84\xcb\x3c\xe0\xc9\x3a\x55\x42\x2d\xf9\x52\x7c\xf9\x93\x70\xac\x98\xf4\xe3\xc9\xba\xaa\xa1\x98\xb0\xef\x5f\x55\x35\x3e\x06\xfe\xab\x86\x1a\xbf\xdb\xb8\xf9\x9f\xa2\xce\x56\xba\x68\x1d\xe3\x75\xb9\xd0\x2d\xec\xe5\x19\x77\x93\x72\xa9\xbe\x18\xf2\x89\x63\x58\xa1\x7e\x4b\x71\x76\x9b\x24\x3a\x58\xa9\x36\xc9\x40\x17\x47\x1b\xfd\xe2\x1a\x6a\xa3\xaf\xe6\xbd\x12\xbd\x3f\x8e\xb1\xa6\xf8\x5a\x89\x55\x5c\x17\xe3\xac\xe1\xba\x28\x46\xa8\x91\x88\x88\xfb\xa9\x76\x69\xa5\x62\x75\xbc\xc4\x8a\xcd\x9a\xa4\x69\xf8\x02\x81\xa1\xce\xb8\x1a\x86\x5f\xae\xa8\x1a\x86\xbf\x55\x1b\x33\xd2\x35\x62\xfc\x3a\x0c\x63\xce\x20\x8d\xc9\x4f\xce\xb3\x55\x71\x5d\xc4\x83\x76\x55\x63\xf2\x4b\xb7\x55\x63\xf2\x13\x35\x6e\xd5\xa1\xcb\x9b\x43\x31\x40\x7f\xf3\xd8\x13\x54\x4d\x03\xc3\x6a\x50\xb5\xe6\x39\x83\x3c\x0d\x75\x56\x1d\x9e\x4d\x67\x0f\xff\xc4\x15\x6d\x61\xb4\xe7\x16\x34\x74\x9a\xf7\x5c\x85\xd4\x2c\xde\x60\x55\xea\x52\x8b\x9d\x0a\xe1\x34\x49\x8c\xb6\x2a\xf2\x45\x43\x3a\xad\xaa\x11\x7e\x75\x92\x23\x5c\x81\x07\x70\x6b\x1f\x6f\xb1\x37\xbc\x00\xbe\xf9\x6b\xff\x8e\xe6\x07\x41\x63\x67\x4d\xef\xba\xa6\x5b\x26\xcb\xda\x18\x99\xc9\xc7\x57\x1b\xd8\x60\x34\x0b\x61\x2e\xc5\x25\xd6\x86\xe2\x32\x08\xaa\x36\xd4\x65\x57\x6b\xbc\x56\xa7\x0a\xa4\xb6\xc2\xff\x36\xb1\x7f\x67\xc2\xda\xc4\xa4\xbb\xf8\x5d\x3f\x0a\xd0\x4a\x9b\x18\x89\x60\xa9\xd2\xa6\x1a\xcd\xc6\xb3\x1a\x4d\xbf\xe3\xd3\xc5\x92\x34\xa2\x71\x1c\xd0\x32\x8d\x68\x1c\x47\xb1\x3c\x1a\x2f\x87\x3d\x51\x06\xdb\x31\x51\x3a\x0e\x36\x5a\x5b\xe8\xe0\x58\x9b\xb6\x30\xdb\x62\x93\xb7\x85\x52\x8c\x43\xd2\x16\x81\x94\xd8\x18\x6d\x29\x42\x4a\x56\x16\x67\x72\xbd\xb5\x85\xa6\x89\xf5\x6b\xcb\xe0\x7e\xc9\xea\x17\x6a\x14\x9b\x45\x97\x93\xec\x0e\xfd\x4d\x94\x79\x79\xa6\x32\xb4\x71\x25\xfa\xf9\x6a\xa7\x02\x70\xa6\xf8\xd4\x51\xae\xfa\x82\x34\x3c\x5b\x03\x4b\x11\x27\x86\xa8\xc3\xea\x0e\xdb\x19\x08\x9e\x29\x3e\x03\x58\xe0\x38\xa5\x2c\xd9\x39\x4d\xf9\xb1\x2c\x70\x3b\x5d\xd4\x62\xef\x1b\xb1\x9a\x0d\x2b\x5a\x74\x80\x97\xd2\x44\x08\x90\xf6\x11\xc0\x55\x85\x53\x83\xfe\x5d\x78\x1d\xac\x66\xb6\xce\x8f\x98\xfd\x03\x11\x36\x53\x79\x12\xfd\x7d\xb5\x2b\xb8\x56\xc6\x89\x10\x59\x7b\xbb\x76\x85\xf8\xca\x97\x6d\x15\xbb\x0d\x99\x9b\x55\x5e\xff\x00\xdc\x2d\x73\x0d\x71\xdf\xee\x60\xa1\x69\xc0\xf4\x9b\xcb\x93\x60\xfa\x4d\x70\x7e\xbb\xa3\x7f\x5f\x10\xfb\x2c\xdb\x0a\x89\x00\xeb\x7d\x2b\xd0\x71\x72\xb5\x2f\x00\x91\xb4\x1d\xfc\x00\xb0\x6c\xf8\x2f\x70\x52\xdb\xf8\x9c\x7b\x8e\x20\x4b\x89\x09\xb2\xda\x77\x58\x1b\x51\xb5\x57\x93\xc6\x54\x04\xdd\xcc\x7b\xa9\xd4\xbb\x3d\x11\xbb\x9f\x66\x21\x32\xb5\xe7\x6c\x8f\x97\x25\x7d\x3f\xda\xe0\xba\x62\xb8\x74\x96\xe4\x3c\x20\xaf\x2d\xc9\x19\x7e\xe2\x78\x53\x4c\xc2\x50\xab\x81\x9e\xd4\x85\x2e\x9e\x0d\x26\x14\x2f\xcf\xff\xfe\xaf\xe3\x71\xb2\xfa\x47\x5f\xe8\xbe\xb5\xba\x16\x7a\xcc\x55\xcf\x99\xef\x8d\xe7\xc2\xb3\xe5\xb5\x42\xee\x3c\x13\xb6\x6e\x5a\x06\x62\x22\x59\x46\x8b\x0e\xfa\xfa\x70\x54\xf7\x82\xe9\x66\x35\x4c\xd6\xc5\x22\x99\x03\xdd\x8b\x16\xc9\xf4\x1b\xb4\x03\xe5\x4d\x69\xc8\x2e\xef\xe1\xa6\xc0\xb2\x74\xe4\x61\x5d\xf6\xbd\x7f\x64\x41\x1f\x10\x58\xfd\xa3\x0a\xfa\x70\x04\x50\x05\x8a\x9e\xfb\x47\x14\xf4\x01\x0d\xd3\x0b\x2e\x46\xd5\xef\x84\x1b\x00\xb5\x76\xa5\x67\x10\x04\x1d\xe1\x59\xd7\x98\xa4\x9b\xa8\x90\xfd\xd4\x2b\x26\xc9\xec\xc0\xae\xe8\x8c\xed\xd4\xb9\xf1\x4d\x20\xb7\x7a\x25\xdf\x5e\x54\xc0\xdc\x78\x59\x01\x73\x63\x7b\x6b\x78\xf1\x80\xf4\x7a\xc3\xe8\x55\x48\x1b\x56\x2c\x36\xda\xb0\x62\xb1\xcd\xf0\x1a\x60\xbb\xf7\x86\xb5\x8a\x50\x7c\x97\x7b\x6e\x0e\xa7\x61\x0e\x9c\x2d\x83\x85\x8a\x43\xfe\xae\xf9\x8c\x07\xf8\xea\x0d\xd3\x60\xf8\xa3\xde\x31\x07\x76\xea\x3a\xae\x44\x4e\x1d\x12\xa5\xa9\xc2\xbf\x63\xfa\x26\x7b\xdf\x3b\xde\x37\xcd\xca\xf7\xf7\x1d\xb4\xd1\x3b\x2e\xca\x08\x04\x7b\xc7\xb4\x17\x0a\xa7\x13\x31\x5f\x6d\x62\x1f\x18\xa5\x34\x9f\x41\xcf\xce\xd0\xd0\x4a\x86\xba\x03\x47\x9c\x62\x5d\x6c\x50\x60\x92\xfa\xc0\xbc\x58\xa0\xb9\x8f\x6b\x3b\x7c\xc1\x1a\xa6\x59\x08\xa3\x0d\xa7\x6b\x3c\xdc\x0b\x74\x36\xb9\x23\x9c\x89\xe9\xc2\x72\xd2\x3b\x8a\xd3\xc3\xa9\x9b\x5c\x0c\xae\xd3\xd4\x36\xe3\xaf\xc8\xa5\xab\x1b\x47\xca\xcd\x1d\xb7\x98\x3d\x0a\x89\x3d\x7a\x73\xd9\x21\xdc\xbd\xda\xf6\x4e\x50\x29\xed\xbb\x3b\x57\x51\x6d\x20\x84\xfe\x5d\x45\x4b\xa3\xee\x1e\x37\x11\x2d\x11\x54\x4a\xfb\x8c\xbe\x50\x2c\x3b\x69\xaa\x36\xa3\x51\xd5\x2a\xdc\x25\x3d\xb4\x99\x5c\x20\x5d\x6d\xa6\xc2\xbc\x8e\x34\xa6\xe2\xae\xbf\xba\xda\x4c\xc5\xae\x1d\x69\xcc\x48\x51\x6c\x89\x7d\x69\x1a\xcf\x7f\xe5\x97\xdd\x7c\xd1\xcb\xd3\x68\xca\x1b\x5d\xa9\xba\x59\xa1\x97\x18\x08\x0b\x37\xa5\x21\xdd\xf8\x50\xea\x8f\x3b\xe6\x6e\x24\x31\x58\xfd\x82\xab\xb7\xbc\x08\x9a\xee\xd0\x45\xf6\xa8\xeb\x1e\x67\xb4\x97\x7b\x9c\xd9\x51\x74\xa2\x9b\x58\x37\x28\x94\x0d\x11\x9f\x50\xd2\xa6\x1b\x9f\xd0\x46\x6f\x4c\x73\xdc\xe4\xb7\xab\xef\x77\x57\x9f\xb5\x20\x3e\xa1\x17\x53\xff\x6e\x8c\x75\x78\xd0\x08\x03\x25\x4d\xdb\x6f\xa7\xdc\xf2\xd8\x71\x14\xdb\x81\x0e\x70\x8c\xe8\x0c\x55\xd8\xf6\xd0\x19\x5a\x08\x01\x47\x22\xc4\xe7\xea\x5c\x24\xda\xac\xf7\xed\xc5\xe5\xf7\xe1\x74\xf9\x43\xd9\x97\x4b\xbf\xf1\x11\x76\xcb\x2b\xe0\x88\xe5\xde\xc4\xca\xf6\x10\x72\x0f\x29\xeb\xe8\x26\x63\x8e\x0d\xb2\x11\x83\x79\x82\xbd\x93\x24\x36\xfa\xa3\xf3\xb0\x63\xe5\x1e\xd2\xc5\xab\x3f\xc8\x9a\xa0\x73\xba\x37\x8f\xf4\x53\xe7\xe6\x51\x85\xd8\xb5\x50\x73\x7c\x84\x77\x92\x6e\xeb\x84\x6e\x6a\x0e\xef\xf5\x1c\xd2\x35\xa1\x9b\x0e\x57\xf4\xcd\x94\x61\x0c\x5c\x60\x75\xba\xb1\xde\xc6\x6c\x02\xc5\x47\xf8\x16\x8d\x59\xfa\x8b\x01\x0b\x02\xc3\xfe\x4e\xca\xf8\x1d\x0b\x1c\xcf\xf3\x7b\xf2\xdd\x8e\x59\x39\xd1\x1c\xf6\x68\xda\xea\x75\xa3\x3b\x39\xfe\x41\x70\x79\x75\xd7\xe3\x88\xb3\xb2\x78\x29\x7a\x91\x25\x5e\x2a\xf4\x51\xe7\x59\x5d\x13\x3b\x62\x1c\x2a\x47\x21\x81\xc7\xb1\x28\x65\xf5\xcb\xd5\xf6\xc7\x66\xb5\x1b\xcf\x0f\xcf\x99\xe7\x97\x67\x5a\x42\x18\x91\x1a\x94\xc2\x48\x89\x1f\x85\xe7\x6c\x4b\x34\x4b\xd8\x41\x7d\x11\x46\xea\x3c\x33\x0c\x03\xc1\x13\xe2\xf3\xc3\x21\xbe\xd8\xae\x78\x53\x70\x13\xca\x00\x36\xfc\x50\x31\xb7\x5a\xff\x0b\xdf\x8d\x84\xd4\x7d\x09\x80\x32\x54\xf6\xc8\xc8\x71\xea\x81\x33\x9b\x3f\xdd\xd1\x64\x85\xa8\x1c\x95\x91\x03\x07\xf8\x47\x72\x8a\xc6\x0c\x13\xef\x61\x19\x86\x89\x27\x56\xd8\x1a\x19\x39\x1f\x34\xc0\x50\x94\x41\x34\xb5\x35\xb2\x22\x2c\xce\xef\xc8\x24\xca\x82\xfe\x1e\x85\x10\xda\xe0\xd5\x01\x35\x51\x75\x8a\x19\x21\x89\xa0\x29\xf4\x6e\x61\x4e\x3e\x4a\xd0\x53\xfe\x11\x15\xbb\x11\x8a\x54\x8d\xd3\xac\xc8\x00\xa7\xff\x35\xa0\x16\x82\x9b\x19\x3a\xfd\x4b\x8f\x8c\x6a\x34\x6a\xba\x44\x7c\x10\xbc\xcd\x40\x42\xe0\xb6\x1d\x0a\x05\x64\x62\x86\x42\x01\x39\x97\x81\x6d\x7f\x6c\x3d\x6d\xfb\x9b\xd3\x4a\x3c\x80\xa5\x31\xcd\x30\xf3\xb1\xe2\xd7\xd1\xcc\xed\xc5\x89\x1b\x4d\x6a\x05\x50\x90\x0f\x4c\xe5\x5a\xa3\x79\x82\x98\x23\x64\x05\xb5\x09\x4b\xd3\x00\x28\x5b\x5d\x8b\x8a\xf8\xb3\x95\x46\xd3\x25\xb2\x02\x6d\x4b\x06\x3a\xaf\x2a\x75\x31\xf0\x3d\xd4\xb6\x6c\xe0\xce\xaf\x9b\xc3\xe8\x32\x88\x3e\xb3\x45\xa3\x0c\x23\x74\xbb\x7e\x94\x46\x3e\xb8\x41\x47\x87\x37\x45\x23\x3e\x30\xef\x3a\x5c\xe9\x1e\xc1\x60\xed\x8c\x8b\x9d\xeb\x65\x60\xb5\x75\xb8\x4f\x10\x0c\xcc\x64\x21\x4d\xb8\x5c\xf5\x81\xc5\x99\x83\x83\xbc\x90\x7f\x18\xc3\xe9\x00\x3a\x6d\xb6\x62\x5f\x0e\x0d\x9d\x60\x8e\x86\x46\x5b\xc5\xee\xc2\xf2\xd1\x2a\x71\xd1\xda\x87\x88\xc4\x05\xd0\x0e\x3f\x30\xc9\xf4\x0a\xe6\x26\x1a\x61\xb5\x65\x6b\x53\x83\x22\xb7\xbc\x26\xfa\xa4\xf8\x5e\x43\xb3\x2d\xfb\x47\x03\xd5\x89\x79\xbf\x86\x96\x5a\x22\xc1\x81\x06\xaa\x2a\x2f\x19\x33\x56\xcd\x96\x2f\xd6\xc3\xfa\x70\x7d\xc9\xef\x72\x7d\xd5\x1f\x2f\x3f\x68\xca\xe0\xcd\x2d\x5e\x86\x2f\x94\x42\x83\xa4\x03\xc6\xd0\x5c\xbf\xc5\x8b\x6a\x46\xee\x91\xb1\x34\x38\xf7\x2c\x2c\x49\x03\xe8\xbf\x11\xf6\xfa\xae\xe9\x92\x4e\xe8\x36\x10\x3b\x88\xe1\x7f\x6c\x72\xf8\xea\x8d\xd0\x20\x89\x17\x4e\xb1\x07\xf7\xca\xc0\x5e\x5f\xbb\x88\x11\x1a\x24\xe7\x55\x0d\x52\x1c\xbf\x13\x6e\xcc\x4e\x42\x67\xe4\x54\x86\x9a\xc8\x45\x32\x74\x51\x4c\xb8\xb1\x2f\x63\xc5\x08\xea\x50\x7b\xfe\x13\x19\x1a\x17\x33\x56\xf3\x12\xd1\xb8\x17\x2f\x99\x7b\xd1\xae\x74\x4f\x77\xc7\xa2\x39\xea\xfa\xb7\x8d\x2b\xf0\x1c\x30\xa8\x39\x22\xd0\xe2\x1a\x6a\x8e\x86\x98\xc6\x8c\x80\x2a\x2e\x07\x6a\xa4\xae\xcb\xe2\xb8\x8c\xbf\x24\xda\x83\x16\x9a\xe4\xf4\x5b\x03\x1e\xba\xb6\xe8\xf4\x15\x89\x01\xce\xad\x44\xc2\x7e\xb0\xf4\x9f\xce\xd5\x1d\x40\xb3\xa2\xe8\x97\xa6\x53\x0d\x3b\x1d\x5b\xeb\x0e\x4c\x45\x8f\x98\x65\x05\x8f\x38\x6e\x32\xc6\x0f\x7f\xe0\x7a\x34\x6d\xe9\xe6\x72\x07\x78\xcd\xb0\x62\x9d\x34\xc3\x8a\xa5\x0d\x33\x2c\x4f\xa6\x66\x58\x81\xa9\xd0\x13\xd5\x40\x81\x1f\x19\xd5\x94\x74\x0c\xa9\x28\xc5\x82\x63\xcb\xff\x77\x4b\xa9\x43\x14\x85\x05\x1d\x25\x3a\x0e\x3a\xca\xb1\xa8\x29\xd2\xb1\x69\x04\xdf\x0e\x64\x4f\x4c\x11\x2d\x3f\x21\xcb\xa6\xbe\x2c\xb9\x6e\xc1\xe3\x1f\x2d\x04\xcc\x28\x7e\xcc\xa5\xbe\x86\x91\x1b\x60\x05\xc6\x13\x2b\xc1\x8f\x37\xae\x76\x5a\x36\x32\xf3\x72\x91\xb1\x6d\x32\xe6\xd5\x1a\x2f\xee\xa7\x30\x32\xe3\x55\xca\xef\x52\x90\x6f\x27\x36\x2d\xfa\x9c\xd4\xbc\x19\x5f\x68\x42\x87\xaf\x3a\x47\xf5\xc1\x20\x18\xb3\x5e\x29\xe3\x25\x2c\x09\xf4\xda\x44\x4d\x53\xc8\x72\xb3\x26\x81\x1a\x14\x9f\x4f\xfc\x1a\x49\x53\xbf\xa6\xfe\x8b\x6c\x95\xf9\xd1\x37\x45\x4e\x60\x12\x00\x49\x7a\x7f\x1e\x38\x43\x45\x19\x24\x5f\x60\xb4\xa9\x3f\x22\x1b\x70\x7e\xb4\x4a\x51\x06\x34\x51\x9b\xcc\x01\x6b\x39\x51\x9b\x8c\x0c\xae\x99\x06\x93\x74\xa5\xa6\x9e\x87\xd1\x2e\xe1\x8b\xd4\x3c\x4d\x1d\x0f\x15\xfb\xcc\x14\x18\xcd\x3f\x32\x57\xe0\x9a\xa9\xe7\x61\xf4\x8f\x19\x91\xd2\xb9\x09\x09\xd2\x54\xbc\x4f\x48\x10\xad\xf9\xa7\xae\x86\x8a\x90\x66\xd6\xee\x8d\x5d\x37\xb3\x68\xd7\xf1\x66\xed\xde\x1c\x4c\x16\xd3\x36\x9e\x21\xed\x04\x32\xeb\x19\x55\x05\x45\x11\x16\x7b\x6b\x42\x9c\xe8\xdd\x30\x0d\x67\xd4\xec\xbe\xc8\x91\xb1\x1b\x26\xd4\x49\x6d\xec\xed\xa9\x55\x90\x71\x34\x66\x19\xd4\xb7\x94\xc8\x19\x18\x71\x3c\x3c\xa2\x8f\x8b\x67\x2a\xd7\xd8\x64\x54\x36\x04\x11\xc1\x6b\xd6\xac\x71\x7e\xa8\x62\xd0\xc7\xe5\xaa\x90\x4c\x46\x4d\xff\x84\x34\x69\x1f\x56\xf9\x03\x1d\x4e\x8c\x82\xd2\x70\xfa\xc3\x28\x88\xed\x3c\xab\x77\x05\xf2\xa6\x59\xa5\x42\x03\x20\xb8\x94\x78\x16\xef\x0a\x35\x4c\x4a\x80\x46\xa8\x45\xe7\xa5\x79\x03\xd0\x10\x02\x91\x45\x7e\xd2\x35\x8d\xf4\x48\x9c\xaf\x35\x49\x1f\xa3\xd6\x7b\x1a\xc5\x88\x60\x60\x6b\x62\xcf\xa3\x62\x7a\x1a\xe8\x91\xe8\x5e\x6b\x1a\xe8\x51\xbd\xda\x24\xb9\xb1\x9a\xe1\xd9\x94\xda\xd9\x96\x81\x1e\xd5\xcd\xcf\x1e\x02\x39\x8a\x61\xb4\x33\x20\x8d\x66\x97\x7e\x14\xf8\x4e\xda\x96\xe5\xf3\xd4\x51\xc3\x97\x25\x26\xb1\x8a\x41\xfd\xa2\xca\x05\xea\x65\x1a\xd1\x96\x74\xe2\xdd\xad\xd9\x8d\x11\xc0\x44\xa8\x12\x71\x7f\x0d\xdd\xb5\xfc\x6e\x44\x66\x27\x65\x84\xe6\x81\xda\xe4\x35\x50\xc3\x36\x4f\x5c\x4c\xdc\xdc\x27\x52\xec\xe2\xf7\x17\xf4\xc2\x72\x20\x08\x16\x55\x93\xc6\xff\x3b\x00\xb4\x8a\x89\xb1\xe2\xca\xe9\x75\x46\x5a\x99\x45\x82\xff\xa6\xe5\x06\x09\xfe\x53\x25\xd5\xd0\x22\xc3\xff\x87\x90\x6c\x57\xd5\x8a\x2b\x85\xd7\x9a\x26\x88\xd3\xcb\xac\x8b\x79\x2e\xd0\x31\x5c\x1a\x09\xff\xbf\x1f\xbe\xa8\x2d\x77\x9b\x5c\x5a\x1a\x70\x7f\x91\xf2\x3f\x95\xe4\xd1\x42\x38\xdc\x48\x5f\xbf\xe6\xad\x6f\x1d\xbd\x84\x73\x5a\xb2\x4a\x40\xc9\x58\x6e\xed\x93\xc0\xe0\xd3\xa8\x81\x7a\xe4\x4c\xac\x25\x2a\xf9\x88\xd6\xbc\x4d\xe3\x2a\xcc\x77\xa4\xa6\xf0\xe5\x71\xba\x59\x52\x62\xf9\xa9\x67\x25\x29\x7f\x6a\xc5\x63\xb7\xa3\x14\x55\x88\xe0\xa7\x76\x72\x3e\x32\x14\x8e\xf9\x91\x9c\x98\xbe\xe0\x8c\x2b\x62\xd2\x17\x1f\x4a\x65\x12\xd9\x4f\x0b\x58\x93\xf7\x57\x95\x5c\x24\xef\x2f\xca\x17\x26\x8c\xb9\xcc\xe4\x84\x31\x97\x13\x25\x8f\xff\xbf\xd3\xa3\x95\xae\x6e\x1c\x13\x9f\x32\xc9\xbf\x19\xdc\x3b\xb0\xbe\xda\x9c\xbb\x0c\xb2\xec\xce\xe2\x0b\x51\x6d\x4b\xaf\x08\xdd\xad\xf5\xe2\x73\x52\x7c\x5e\x3c\x5b\x48\x62\x95\x2b\x91\xf4\xfc\x45\x44\x6b\xde\xfd\xc3\x9b\x6b\xc9\x83\x7b\x57\xaf\x03\x0d\x09\x57\x03\x89\xf7\xab\xd7\xf6\x32\x34\xb2\xca\xe9\x15\x2c\x38\x64\x28\x89\xf7\xeb\xbf\xda\x27\x5b\xd6\xda\x10\xf4\xd0\x06\x66\xda\x1f\xa4\x94\x5f\x64\xda\x6f\xba\x7f\x45\xa6\x7d\xf9\xe6\x45\x7c\xbe\x91\xff\x8a\x6d\xbf\x56\xf2\x64\xd8\x82\x32\x35\xf0\xce\x32\x66\xb2\x84\xef\xc2\xf1\x5e\xc1\xc4\x4a\x71\x18\x2a\x2f\xc8\xd7\xb2\xcf\xa0\x70\xf6\xc2\x4a\x3a\xe0\x72\x55\x93\xc4\xbf\x1d\x51\xdb\x8b\x05\xe4\x44\x0e\xff\x26\x8f\x64\xa6\xfe\x64\x14\x26\x32\xf5\x7f\xa8\x9d\xb6\xb4\x82\x6d\xd6\xc7\x0a\xf6\x88\xea\x12\xf7\xf6\xa8\x15\xac\x41\x55\x96\xc6\xae\x3a\xbb\x2f\xf4\xff\x5a\x16\x47\xaa\x7e\x23\xac\x44\xaa\x7e\xcd\x76\x23\x55\xbf\xee\xa0\xcb\x5b\xce\x78\x2b\x91\xab\xdf\xc0\x2f\xe4\xea\x0f\x37\x55\xd3\xf3\xcf\x02\x16\x23\x3d\xff\xc7\x4f\x58\x45\x3e\x67\x5a\x25\x68\x1b\x80\x29\xb2\x1d\xd1\xb2\x34\x7c\x15\x1a\xee\x12\x87\xac\x58\xdf\xe0\x1f\xa6\xee\xcf\x2a\x76\x4d\xdd\x3f\x48\x3b\xb9\x4c\xdd\x9f\x8d\x4c\xb4\x08\xc9\xa7\x2a\xd5\x6c\xfd\xd9\xf8\x3e\xcb\x74\x6a\x5d\x30\x09\xd6\xa7\xca\x77\x55\x23\x86\x25\xab\x48\x97\x67\xdb\xd2\x1e\x21\x5b\x5f\x1b\x46\xe7\xac\xaa\x1f\xb2\x01\x73\xab\xe9\x55\xb0\x1a\x2a\x21\x57\xa9\x21\xb5\x70\x95\x0c\xe3\xa7\x19\xad\xe9\xfd\x8b\x42\xfa\x45\x0c\x64\xc2\xd8\x2e\x52\xfd\x7f\xc8\xcb\x76\xbd\x81\x98\x30\x18\xfd\x92\x04\xd2\x9b\x51\x4b\xd5\x65\x48\x3f\x63\xdc\x90\xf7\xbf\x69\xff\x62\xda\xff\xa9\xab\xaa\x69\xff\x57\x3c\x87\x86\x9e\xea\x18\xba\x16\xad\x9b\xcc\xf5\x3f\x8b\x33\x89\xa1\xeb\x30\x1e\x10\xa9\xe0\xb3\x36\x22\xa6\x82\x8f\xf5\x5e\xca\xac\xc0\x76\x6b\x21\x11\x80\x4a\x25\x2f\xfc\xc7\xd4\x33\x12\x53\x27\xe8\x6f\x1a\x99\xe1\xb5\xe5\x30\x33\x7c\x6a\xce\x5d\xf0\x8f\x20\x33\xf3\xbf\x27\xf5\xf5\xe6\x7f\xef\xe4\xd7\x5a\xe4\x7f\x6f\x1a\xcc\x2f\xd2\x25\x28\x13\x24\xc9\x7b\x6a\x25\x6a\x28\x65\x01\xcf\x2d\x23\xdc\xba\xf5\x4e\x91\xa4\xb5\x1f\x9e\xad\x00\x05\x6c\x0f\x17\x3e\x65\xdc\xa0\xeb\xc2\x77\x4f\x6c\x70\x21\x9c\xe0\x96\x5d\xe4\xf8\x09\x3c\x73\x89\x47\x69\xff\x42\xf2\x29\xbe\xe3\xfa\xac\xb1\x33\x2f\x3d\x87\xdc\xc0\xe6\x76\x8d\xd3\x60\x6e\xd7\x38\x00\x97\x57\x0e\x37\xcb\x32\xb9\xab\x4a\x41\xf2\xc0\xd7\x40\xb1\x7a\xe2\xe8\xcd\xbb\xcc\xe1\xea\x2d\xbd\xb0\x29\x6c\x31\x10\x94\xab\xb3\x70\xe5\xad\x5b\x8c\xdb\xfe\xe4\x8f\x57\x38\xea\x40\xe2\xac\x5b\x7a\xde\x0d\x16\xbe\x39\xa2\x91\xf0\xcd\x71\xeb\x86\x6f\x8e\x63\x0d\xa6\x50\xec\xb8\x11\x32\xb9\xc4\x1b\x7a\xde\x13\xa5\x67\x8e\x27\xe2\xe3\x02\xab\xea\x2f\xb2\xd4\x7f\x95\x01\x3a\x7c\x71\x44\x08\xe1\x8b\xe3\xb9\xd9\x48\x6a\xb3\xa5\xe4\xad\x9d\x34\x52\xbc\x2a\x36\x22\xb3\xfd\xd7\x96\xd5\x91\xa8\xb8\x59\x36\x42\x14\xb7\xa7\xf7\xb7\x82\xbb\xe5\xfd\x9d\xdd\x14\x08\xd3\x55\x64\x91\xdc\xfe\xdb\xaa\x96\x12\x4f\x0b\xf0\x23\x99\x1f\xc5\xd0\xf6\x65\x88\x3d\x13\xdc\x27\xc3\x77\x98\xd3\x3e\x19\xbf\x63\x91\xef\x35\x29\xab\x34\xa7\x7d\x6a\x82\xfc\xc0\x8d\xc4\x73\x1c\x0f\xc0\x0c\x16\xd4\x09\x7b\xbd\x34\xe8\xff\x95\x1f\x98\xbe\xc8\x75\xc2\x12\x9a\xec\x3e\xad\x78\x51\xa1\x3e\xad\xef\xc1\xf5\x6a\xd2\xd7\x46\xf7\x16\x53\xdf\x27\xdd\x35\x4c\x7d\x9f\x74\xc4\x20\xbb\xfd\xf7\x02\x68\xb0\xa4\x1a\x25\x9f\x1f\x17\x1a\x26\x81\xa7\x3e\x34\x7a\x52\x9c\x87\x87\x78\x59\x4a\xc1\x0f\xe4\xc6\x79\x28\xf8\xe1\xfc\x9c\x9a\x11\xaa\x60\x3c\x35\x23\x54\x9a\x71\x6a\x39\xa8\xee\xf8\xd4\x72\x50\x95\xe1\xa9\xe5\xa0\x47\xe3\x34\xf3\x2b\xf1\x3c\xd7\xa9\xe5\xa0\x96\x32\xe4\xc8\x6f\x3a\x96\x9d\x1a\x0e\x7a\x68\x48\x92\xff\x55\x01\x1a\x0d\x07\x15\x83\x9d\x9a\x07\xea\xa2\x7b\x6a\x1e\xa8\x0d\x10\xc9\xf1\x9b\xa6\x97\x67\xf2\x0a\x01\x96\xa4\xb1\xea\xb0\x61\xa9\x61\xbb\x4c\xf2\x2a\xd3\xea\x92\xc3\x1c\x1e\xf2\xe3\x7f\x7f\xac\x63\x0e\x34\x48\xb7\x53\xbb\x41\x89\xff\x33\x2b\x9f\x66\xd1\x4e\x25\xf2\x8a\x2a\x4e\x25\xf2\x92\xa3\xa7\x99\x5b\x35\x25\x38\x73\xc0\x6c\x6b\x6a\x9f\x9d\x4e\x33\xb7\x4a\xe8\x9a\x59\x3f\xab\x56\x3c\x4d\xdd\xaa\xba\xf2\xd4\xa2\x30\xfb\xec\x25\x58\x6c\xcc\x1c\x6e\xc5\xfa\x5e\x82\x45\x68\x64\xe1\xd9\x4f\xa7\x72\x7c\x76\xed\x69\xea\x56\xcd\x5a\x4e\x28\x8a\xac\xad\x12\x39\xf8\xbf\x3f\x56\x81\x0f\x73\x3a\x4d\xe3\xaa\x56\xf3\x84\x6d\xf6\x34\x9b\x9d\x3f\xab\xb6\x39\x4b\x10\xfa\xfe\x51\xda\x9f\xed\x45\x46\x15\x12\x9e\x04\xfd\x69\x4a\xc2\x9b\xa1\xbf\xa4\x64\x37\xdf\xd6\x98\x87\xa5\x14\xb4\xe5\x3f\x71\x23\xf9\xfb\xdb\x84\xc5\x26\x7f\xff\x57\x8b\x11\x54\x4d\x1e\x20\xdd\xce\x8a\x14\x0e\x71\xd7\x59\xe5\x37\x21\x62\x4f\xe8\x13\x52\x9c\xae\xb3\xc6\x6d\xcf\x70\xa0\x4f\x8a\x1e\x0f\x26\xfd\x2f\x3a\x66\x90\xf4\xff\x7b\xb1\xbe\x86\x87\xee\x2e\x18\x6f\xc3\x3b\x90\xf6\xff\xfb\x21\x60\xea\x3b\xdc\x28\x61\x84\xe8\x1e\x6c\x06\xea\x75\xdb\x05\xe9\xc1\x3c\x4b\x7a\x68\xab\x76\x42\x7a\x68\xe4\x72\x36\xb9\x2b\x4e\x3d\xc9\xff\xbf\x52\xf4\xd2\xbc\xaa\xa6\xf5\x8d\x49\x32\xed\x12\x86\x17\xda\xfe\x34\x66\xb0\x2c\xca\xd9\xd1\xb0\x08\x7d\x97\xd3\x83\x88\x3b\x65\xca\xd5\x2b\x9f\x30\xe5\x92\x9a\x67\x8f\x78\xf6\x8c\x5e\xde\x5b\x33\xf6\x53\x4b\x45\x01\xd6\x52\x51\x4b\xfa\x13\xde\x7b\xc8\xbb\x9b\xef\x7e\xc8\xe1\x93\xe8\x3d\x2b\xea\x25\x9f\xfb\x32\x8c\xdd\x79\xa2\x5a\xe4\x02\x38\x2f\xe5\xfe\xa2\x0f\xf8\xe7\x91\x5d\xee\x4b\x55\xb0\x87\xec\xf2\x06\xf0\xf4\x18\xea\x45\xbb\xe1\x13\xb7\x5c\x19\x3d\x92\xbb\x37\xad\x1f\xc8\xed\xfe\xd5\xb0\xe1\x53\xfe\xdb\xb6\x54\x34\x0a\x3d\x0c\xb4\x86\x17\x26\x77\x6f\xa4\x2b\x5d\x26\x77\x4f\x1a\x61\x9d\x61\x5d\xe5\x19\xd1\xdb\x40\xce\xfc\x44\x32\xac\xaf\xde\x19\x9e\x07\x90\x44\x26\x71\xcf\x8a\x83\x4f\x1d\x0c\xbc\xf3\xce\x08\xae\xef\x5c\xdc\x9e\x11\x4f\xff\x77\x91\xb7\x09\xa1\x7f\xee\xd8\x47\xcc\x05\x0e\x01\x3a\x8b\x90\xac\xbd\x91\x3d\x66\x9d\x3b\x44\xab\x00\x89\x56\x5c\x92\xc0\x64\xed\x5d\xbd\xe5\x69\xcc\x16\x71\xf7\x96\xfc\xef\xbe\x60\xe2\x22\xb2\x50\x98\xab\xab\x04\xb9\xd6\x8b\xaa\x09\x53\xad\x57\x1d\x22\xce\x47\xe2\xc7\x5b\x85\xc4\x7c\xd2\x99\xe7\x13\xe4\x8e\x2f\x41\xc4\x00\xe3\x13\x44\x8c\x7f\xb8\x6e\xed\x31\x7c\x56\x3d\x76\xaf\xa2\x13\x8f\xdd\x1b\x4b\xcf\x50\xd4\x74\x77\x31\x87\x57\xac\xba\xd9\xd3\x2b\x56\xe5\x9c\xe9\xd3\x3f\x9c\xc8\x4b\xdc\xf7\xb6\x06\x8f\xe8\x0e\xd1\x50\x5f\x33\x82\xf3\x95\x63\x5b\x56\x89\xf5\xb6\x0a\xe6\x4e\x89\x29\xbb\x30\xce\xcf\x1a\x74\x5c\x5c\xb8\x3d\x41\xfd\x5d\x58\xea\x6b\xb0\x4b\x3a\xf5\xa6\x63\xa8\x09\xd4\xb3\x22\x80\xeb\x30\xb4\x57\xb7\xba\x77\x17\xf7\xb5\xe9\xd4\xb3\x01\x39\x4c\xa7\x9e\xfb\xfc\x33\xe4\x20\xb9\xd6\x9b\xa7\xf2\x3a\xe2\x5e\x13\x1c\xdd\xca\x41\x4a\x97\xa6\xfa\x8a\xbe\xae\x30\xd5\x67\xff\x9b\x4f\x3d\x8b\x2f\x4c\xa1\x5e\x75\xd7\x30\x85\x7a\x91\x8d\x30\x85\x7a\x49\xf6\x63\x26\x3e\xbd\x58\x49\x95\xde\x48\x4c\xb4\x48\x6f\xde\xa2\xe1\x8c\xf9\x33\x74\xac\xc9\xcd\x8b\xfa\x68\x92\x9b\x67\x55\x29\xa4\x33\xaf\x0a\x3b\xcc\x66\xae\x25\xf4\xe5\xfd\x28\xa3\x63\x6a\xf3\x9e\x9a\xa5\xe4\xb9\x9c\x26\xa3\xe1\xab\xcf\x35\x9f\x79\xd1\x55\x8e\x7c\xe6\x43\x01\x1d\x19\xcc\x9b\x74\xd4\x55\x90\x0a\xd9\x94\x6c\xb5\x86\x5c\x57\x89\xa1\x2f\x5e\xa4\x90\x38\x56\x91\xcc\x5c\xf3\x5d\x92\x99\xa7\x9e\xb2\x2f\x71\xf3\xf9\x12\x80\xd1\x7d\x81\xeb\xe1\x60\x98\xa5\xbc\x6a\x0a\x62\x32\xf2\x43\x8e\xff\x22\x81\x90\xec\x02\x89\xc9\xab\xa2\x1e\xf2\x92\x7f\x85\xd8\x24\x32\xcf\x5a\x3c\x44\xfe\x71\xb9\xc4\xc8\x3f\x2e\x87\x61\xfe\xf1\x5c\x9c\x6f\xa5\xc2\xd1\x09\x54\x58\xb4\x85\x54\x98\x33\x66\x5a\xf2\x2a\xd6\x27\x2d\xb9\x09\x35\x96\x59\xc9\x4b\xca\x96\xc2\x3e\xdf\x0d\xa1\xdd\xbc\x5e\x8e\xe6\x21\x2f\xba\x79\x9a\x7a\x5c\x3d\xd4\xe5\x35\xa5\xe9\x16\xb9\xc7\xcb\xe1\x0c\x37\x91\xbe\xcf\xaa\x7e\x3d\x06\x5d\xa9\xcf\xf2\x25\xc6\x4e\x5b\x46\xd8\x95\xc5\x35\x79\xf8\x21\xa5\x6c\xf2\xf0\x49\xc2\xeb\x45\x8e\xf0\xaf\x01\x9a\xee\x70\x17\xe0\x84\xcb\xe8\xb9\x92\xdd\xd7\x10\xc3\xb8\x73\x86\x7d\xba\x85\x87\x92\x26\x07\x36\x02\x00\x06\x36\xdc\x9f\x3e\x8b\x46\xdc\xb8\x3a\x5c\x6a\x5c\x75\xe9\x70\xa9\x65\x21\xd9\xc4\xbf\x62\x76\x23\x13\x21\x82\x40\xdf\x6d\x26\xfc\x45\x3a\xf1\xef\x0f\xad\x4d\x53\x0b\x41\x35\x99\x4f\x3c\x29\xb9\x34\x9f\x78\xd7\x33\xd4\x14\xe2\x49\xfb\x01\x53\x88\x67\xb5\xcc\xd7\x0c\xe4\x47\xa7\x53\x1d\x17\xd8\xd7\x34\xe1\x5d\x99\xec\x85\x67\xe5\x58\xf1\xe7\x71\x03\x30\x04\xae\xea\xae\x92\xd0\x34\xe1\xc9\x3b\xe2\x22\x0f\x8f\x06\x8b\xa4\x0c\xff\x7e\xd0\xd8\x8a\xe3\xc3\x70\x4c\x5e\x1c\x07\x6b\x79\xdf\xb8\xd4\xa6\x28\xd6\x18\xc7\x1c\xe2\x59\x03\x9c\x0b\x69\x44\xcf\xc8\x03\x4c\x22\x9e\x35\xf2\x31\x89\xb8\xe9\xb0\x97\x49\xc4\xb3\x1a\x9b\xeb\x0c\xf4\xfb\xa7\x95\xe1\xa5\x12\x5c\xa5\xd1\xa5\xe2\x5b\x4b\x8a\x4b\xc5\xb7\xc1\x12\x2f\x5d\x27\x35\x69\xb9\xce\x38\x6b\x40\x84\xe5\x5e\x89\x52\x17\xcf\x2c\x09\xaa\xee\x12\x4d\x3d\x7c\xb7\xf2\x6b\x1f\x54\xc6\xa0\xaf\x47\x0d\x9d\x1d\x49\x39\xb9\x2e\xf5\xd7\x0a\xb3\xae\x10\xf2\x73\x37\x5e\xaa\xac\x8d\x19\x7c\x29\xbf\x37\x10\xf1\xa5\xc8\x3e\x76\xbb\x19\x7c\xdc\x9f\xb7\xcc\x13\x64\xd1\x75\x6b\x27\x24\xc6\xd7\xbf\xd1\x20\xc5\xd7\x1d\x7d\xd2\x98\xe4\x47\x81\x63\xba\x30\xee\x56\x1b\x7b\xa1\x8c\xd6\x9e\xe6\xba\xd1\x31\x78\xf0\xee\x58\x0d\x2a\xec\xe8\x84\x21\x87\xd3\xe1\xf2\x85\x51\x1a\x52\xe5\xd2\xe9\xb0\x58\x45\x04\xca\x65\x7a\xa9\x3f\x36\x44\xc9\xa5\x21\x9e\x86\xf3\x17\x86\x78\x7a\x57\x5e\x12\x26\x86\x0e\xb9\xb6\xd2\x34\x07\x19\x2e\x88\x62\x73\x2d\xc2\xb5\x44\xbe\x34\xc5\xd3\x56\xdf\xfc\xf2\x59\x43\xc8\xeb\x09\x30\x81\xec\x09\x30\x6d\x40\x63\x82\x65\x1d\x8c\xa6\xc4\x7b\x3a\x1e\x8a\xd9\x23\x99\xb0\xa3\x0c\x2f\xc4\x65\x29\x6d\x6c\x44\x1c\x6f\x00\xc3\xc2\x84\xdc\xdf\x25\x0f\xfb\x72\x57\x59\xf7\x42\x15\x5a\x97\xee\x85\x2a\x49\xaf\x57\xac\x0d\x2c\xd0\x1c\x55\x7d\xda\x7d\x48\x74\xc1\xc5\xdc\x72\xef\x6a\x5c\xef\x70\x02\x04\xd9\xdc\x72\xef\x6a\x7f\x6f\xa9\x0e\x95\xbc\xb7\xac\xbc\x12\xb3\xfb\x08\x63\x08\xff\x28\x74\x05\x75\xdd\xb2\xf2\xea\x00\x6f\x13\xfc\x66\xbb\x91\xdd\xe4\x74\xdf\xd0\x12\xad\x0a\xcd\x3f\xf2\x01\x38\x4d\xea\x0b\x8d\x70\xa7\x48\xbd\x4b\x2f\x90\x12\x3d\x35\xab\x04\x98\x74\x09\xc7\x3e\x55\x06\xdf\x49\x0b\x78\x6e\xed\x3b\x49\x0b\xb3\x1f\x6e\x98\xf4\x11\xe3\xcc\xea\x7c\x38\x41\x77\x96\x0f\x2c\xbe\x68\xfc\x5f\x2c\x26\xef\xc7\x4d\x70\x67\x79\x3f\x4b\x05\xc7\x60\xa9\xcb\x52\x8c\x39\x4c\xf0\x41\x76\x37\xaa\xe9\x79\x58\xfd\x91\x6c\x03\x32\xf9\xed\x01\x7a\xbc\x8b\xc6\x20\x8c\x5f\xcb\x7b\xe9\xec\xbb\x68\xf5\xc0\xa6\xbb\x8b\x52\x67\xb6\xd0\x6d\xd8\x36\x32\x45\xaf\x5b\x27\x3e\xad\x78\x6e\x9d\xf8\x34\xe5\xbd\x65\xb2\x75\x91\xbe\x21\x35\x9a\xf6\xf7\x37\xaa\x6a\x63\xa0\xdf\x45\xa6\x94\x8d\x7e\xcb\x63\xe7\xf5\x67\xf8\xd6\x5b\x06\x7c\xd8\xab\x1c\x2b\xf7\xef\x6d\x94\x5d\x4d\x00\x6e\x99\x6c\x9d\x42\xee\x1a\x63\xf0\x4f\xc4\xbc\xa0\xdb\xf0\xd5\xe3\x9a\xbd\x91\xfc\x2f\xfd\x1e\xee\xe0\xac\xb9\xb3\x6f\x24\xff\x24\xcd\x59\xb7\x8c\xb5\xbe\x5a\xb7\x66\x79\x7a\x71\xdd\x72\xd9\xf5\xb0\x4f\x43\x6f\x3a\x3b\xb2\xd9\xa4\x6f\x59\x77\x8d\xcb\x94\x62\x2d\xec\x32\x68\x5a\xfa\xc5\xd8\x40\x37\xb2\xff\x56\xdd\x5f\x10\x33\x9a\x04\xdd\x12\x33\x15\x34\x70\x37\x98\xa5\x28\x04\xff\x1d\xed\x9a\x44\xce\x65\x0b\xc2\xe6\xb0\xba\x27\xbf\xfb\x22\x60\x2e\x75\xf0\xdf\xf4\x2e\xff\xad\xc5\xfe\xad\x73\xa0\x51\x71\xee\x1e\x26\x8e\x8c\xbf\x6b\xd6\xe8\xcc\x76\x8d\x85\x5c\x0d\x39\x70\xed\x60\xee\x70\xfc\xf3\x14\x85\xe3\x9f\x47\x3a\xfc\xfb\x5c\x00\xb4\xd9\xdd\x1b\xfb\x0e\x07\xbf\x69\xb1\x70\xf0\xa3\xb5\x7f\x0e\x7e\x40\x30\x64\xee\xa3\xce\xe9\x8b\x75\xf4\xff\x4e\xd6\xb9\xd5\x4b\x30\x84\x07\x4f\x03\x77\xe4\x43\x74\x44\x8f\x34\xb9\x6c\xf5\x26\x21\x0f\x7b\x51\x85\x47\x1a\xf6\x15\x3b\xf8\x81\xe9\x87\x90\x21\xa3\x7a\x55\x32\x68\x42\x75\xa5\xf1\x26\x54\x3f\x34\xaa\xb9\xb5\xe1\x11\xcd\xbc\x52\x85\x2e\xf0\xab\xbc\xdc\x8d\x14\x3a\x52\x17\x42\xf9\xa9\x9c\x1a\x29\xd5\xbf\x3f\xf4\x6e\xe6\x5a\xc3\xf3\xdc\x9a\x33\x2b\x59\x35\xa9\xfa\x21\xdf\xb7\x83\xbb\x63\xee\x48\xaa\x5e\x15\x59\x98\x53\x3d\x49\xd2\x90\x53\xfd\x7b\xc9\xbc\x74\xe8\x45\xab\x07\x98\x56\x9f\x96\x4a\xbc\x20\x3e\x87\x39\x35\xa9\xba\x09\xf9\xd6\x0e\x23\x66\xd8\x1e\xf2\xa5\xb7\xc3\xb6\x0c\x2e\xa4\x3d\x13\x29\xd2\x9b\x66\xfa\x1b\xbe\x2c\x2e\x8d\x9d\xa4\x02\xd9\x13\xe6\x4e\x4f\x8d\xe9\x33\x77\x7a\xd2\x7e\xc4\xdc\xe9\x7a\x79\x98\x2e\x3d\x35\x10\xdb\x36\xbc\x50\x6b\xfe\x51\xca\x01\xab\xb1\x73\x50\x84\x00\xa3\x5c\x94\xa4\x9c\x6b\x67\x49\x42\x04\x59\x1b\x9e\x4f\x1b\xf6\x9d\x83\x22\xa4\xcb\x8c\x21\x6b\xf1\x59\x3e\xcf\x76\x03\x2e\xa6\x45\x09\xa7\x1c\xe0\x2e\x52\x7d\x88\x42\xb6\x82\x4c\x15\xb8\x1b\xc4\x9a\xb5\xe6\xd9\xc5\x40\x3c\x02\x56\x82\x24\xf6\x65\x58\xc7\x17\x09\xbb\xbf\x65\x8c\x5b\xc5\xa9\xd1\x23\x36\x88\xd6\xa0\x22\xbb\x04\x74\x2c\x81\x51\xca\xd5\x01\x6c\xb2\x9a\x19\xf0\x62\xd7\x00\x9b\x29\x54\x6f\xaa\x75\xd3\xd6\xef\x49\x33\xf0\x5d\x25\x41\xe1\xad\x77\x95\x97\x81\xd4\xdb\xc1\xe1\x81\x58\x77\x70\x78\xee\xc0\xe0\xf0\x40\x0c\xbb\x9a\xcd\xcb\x19\xa9\x92\x87\x6e\x82\x66\x6c\xed\xe1\x0b\x02\x29\xeb\x9b\xda\x4c\xf9\xe1\x56\x27\xaa\xc2\x6e\x9b\x17\x56\xf6\x63\x9b\x0b\x56\xf5\xfe\xd6\x42\x48\xc9\xe4\x36\xd1\x59\xf1\xa4\xb4\x20\x56\x99\x27\x13\x9d\x89\x72\x77\x0b\xa0\x7d\x11\xe8\x69\xa7\x12\x38\x56\x31\xd5\x72\xfc\x70\x00\x1c\xc8\xdd\xa5\x6f\xe9\x5f\xc3\x68\xd0\xd2\x36\xb3\xab\xd6\x5a\x1b\xc4\x98\x95\x56\x6d\x33\xbb\xaa\x5d\xda\x88\x26\xb5\xea\x26\xb7\x7f\xca\xda\x30\x90\xdc\xbf\x29\xa6\x24\xb7\x7f\x8a\x68\x4a\x26\xf7\x1f\xd9\x65\x36\xe5\xab\x44\x4c\x24\xf7\x8f\x59\x1e\xd2\x97\x16\xc3\x89\xda\x50\x16\xdb\xfc\xaf\xca\xdc\xc9\xe9\xff\x91\x97\xb4\x6c\xf6\x56\xed\x85\x49\xdc\xff\x15\x03\x18\xd3\xb7\x2a\x5b\xdf\x06\x24\x4f\xd9\x3a\xdb\x3a\x02\x20\x8f\xe6\x76\x1a\x01\x1a\x2f\x86\xef\xd1\x5e\x99\xb4\xfe\x5f\xa7\xd4\x81\x7f\xcc\xca\xf3\xf7\x34\x00\x86\xbb\xd6\x44\xaf\x7a\x58\x90\xe5\xff\x2b\x06\x6c\x32\x93\x1a\xfb\xed\xe9\x10\xa2\x4e\x0c\xc1\x17\x14\x2f\x1e\xd0\x19\xb4\x3b\xc3\x59\x52\x0d\x62\x01\xc3\xef\xa8\xf8\xdb\x70\x89\x23\x36\xcd\x92\x28\x14\xa7\x2c\x69\x57\x38\x94\xbd\x24\x0a\x21\x48\xf6\x92\x76\x15\x75\xad\xa0\x5d\x2d\xa6\xb4\x74\xd8\xb4\xb4\xab\xd8\x72\xa9\x2b\xe9\x82\xa3\xae\x44\xb4\x22\x67\xa9\xc8\x71\x1b\x83\x47\x9d\xf2\x3e\x03\x6a\x66\x4a\xce\x52\x5d\xeb\x96\x79\x54\xd7\xba\xcf\xc8\xd1\x6f\xb1\x18\x02\x80\x9e\x52\x72\x6e\x36\x99\x47\x45\xd4\xdb\x50\x3b\x4a\x30\xb7\x36\xd4\x6a\x55\xf7\x29\x43\x1e\xad\x49\x70\x36\xeb\x48\xf1\x8a\xbe\x4f\xa5\xbf\x54\xb9\xa4\x71\x45\xa5\x97\xe2\x19\xc7\x76\x49\xf0\x3a\x39\xb8\x87\x4d\x57\xea\x52\x78\xd7\x7c\x51\x78\xe7\xe5\x85\x91\x59\x49\xa2\x7f\x64\xe4\xd3\x4d\x74\x49\x09\xd7\x3f\x89\xc7\x7d\x45\xec\x71\x41\x90\x3b\x13\xf9\x18\x1d\x5d\x81\xe8\x96\x6b\x55\x70\xbb\x6f\x13\xda\x7a\xc4\x6f\x07\x04\x2d\xb0\x6f\x44\xd8\x1e\x2b\x63\xa5\x27\x08\x80\x6d\xac\xf4\x38\xfd\x66\xd2\x4b\xd5\xc6\x1c\x43\xf5\x8f\xf6\x19\x10\x1f\x1b\xf5\xf9\x30\xd6\xc6\xbe\x95\xcf\x55\xfb\xbc\x24\xb4\xfd\x13\xf3\x6e\x3f\xce\xbb\x4b\x7a\x3b\x82\x26\x38\xaa\xa6\xe0\x8e\xb6\x32\x78\xd5\xae\x1b\x17\xe7\x22\x7f\xbf\xb7\x14\xa7\x24\x00\xd6\xd6\xe6\xa2\xd8\xc6\xb9\xd4\x22\x6f\x2b\x9e\xd7\x31\x77\x6f\xc9\x7e\x31\x03\x51\x79\x8c\x51\xbb\xb7\x24\xa7\x4b\xb2\x55\xf9\x38\x37\x5b\x92\x19\xc2\x78\xef\x18\x8d\x7f\x8c\x56\xef\xf1\xdf\x46\xaa\xf0\xd2\xd9\x46\xaa\x90\x52\xc1\x71\xad\x28\xd1\xd8\x5a\x68\x4b\x3f\xef\x47\xd2\x34\xf9\x47\xd2\x34\x8a\x55\xff\x00\xce\x83\x6e\xc8\x96\x1f\x69\xd6\x78\x01\xe8\x2a\x2e\x79\x02\x68\xa6\xf3\x91\xb4\x8f\x17\x49\xfb\xec\x8b\xa4\xbd\x58\xf3\x91\x82\x76\x6e\x88\x6b\x59\x8c\xc2\xb1\x5f\x49\x68\x51\xf8\x1b\x70\x32\xd0\x57\x38\x9d\xdc\x57\x38\xc5\xd4\x6f\xcc\x34\x4d\xbf\x01\x28\xb0\xbd\x12\xd7\xce\xd4\x2b\xd4\xce\xee\x1b\x3c\x08\xe3\x79\x55\x5c\xba\x8b\x5e\xc9\x6e\x37\xce\x1b\xa4\xbe\xc5\xb4\xe6\x61\x45\x9e\x23\xc8\xfb\xc6\x8b\xb0\x41\x47\x3e\x87\x64\x37\x4d\x3f\x87\x64\x37\x54\xe9\x73\x04\xe1\xbf\x78\x09\xc2\x7f\xf0\xa2\x0f\x13\x0b\xf7\xc0\xb1\x0f\xa3\xc1\x3c\x70\xec\x45\x22\xed\x39\x54\xb7\x4d\x9b\x16\xd0\x6e\x31\x6f\x0e\x70\xf5\x73\x08\x28\x18\xf9\x49\x2a\x05\x41\x20\x4f\x92\x73\x00\x71\x3f\x49\x3b\x58\xf0\xee\x93\xe4\x1c\x96\xc5\x1c\x82\x10\xa8\x18\xd0\x5d\xe9\x81\xe6\x2c\x4a\x11\x9f\x64\xfc\x14\xae\xb8\x27\x85\xc2\x10\x40\xd1\x12\x28\xbb\x7d\xa0\x3f\x25\xd2\x1f\xbd\xed\x8d\xec\xf2\xc8\xf2\x4b\x7b\x3d\xd8\xec\x49\xa3\x3f\xb2\xff\xea\xd2\x1e\x3d\x9c\xab\xcf\xe4\x1e\xb7\x0b\xd9\x16\x79\x74\xd3\xa3\x0f\x19\xc7\x67\x90\x30\x10\x34\x40\x46\xf4\xa5\x2b\xfa\x13\x6e\xcd\x36\x35\x31\xbd\xb7\xb6\x51\xef\x94\x03\x9a\x1e\xbd\x93\x63\x7c\x91\x1e\x3d\xf5\x94\xfe\x0c\xe8\xf0\x84\x14\x96\x0b\xe9\x31\xf0\x9d\x34\xfb\xe3\xcd\x29\x83\x66\x96\x74\xf1\x80\x59\xd2\xb3\x6c\xec\x33\x83\xde\x14\x52\xbd\x66\xdc\x1b\x4b\xc9\x3d\xe8\xf7\x31\xf0\x9d\x2a\x14\xf2\xa4\x37\x19\x37\xd3\xa4\x1b\x29\xcc\x34\xe9\x59\x75\x88\x69\xd2\xab\x71\x4a\x1e\x2e\xe1\x2e\xb6\x78\x88\x82\x17\xd3\xbf\x74\x53\xe9\xb6\xe5\x6d\x36\xad\xe2\x6d\x06\xc2\x7f\xe2\x0e\x76\x65\x96\x58\xd5\xfd\xb3\x10\x9f\x38\xb0\xe5\x66\x74\xa2\x17\x0c\xb2\x1b\xe6\x74\x2f\x1e\xbe\xc4\x5e\x64\xc4\xa7\x32\x2f\x17\xcd\x64\xec\x01\xf2\xe9\xfa\x5b\x8a\xc0\x2e\x83\x9b\xf1\x89\xc0\xd1\xee\x65\x6e\xe3\x9e\xa3\x18\x0c\x97\x13\xc6\x65\x5c\xf5\x80\x34\x17\x7b\x97\x63\x20\x19\xfb\x77\x45\xf9\x47\xc6\x68\xd8\xa5\x8c\xd1\xb0\x01\x45\x73\xdc\x44\xe6\x69\xcf\x72\x36\x4f\x04\x98\x86\xc0\x7d\x74\xd6\xe6\xce\x7d\x48\x48\x2b\x41\x65\x02\xf7\x62\xac\x86\xc7\xcb\x58\x3a\xf2\xb9\xc8\x83\x29\x60\x44\x8b\xd6\xc2\xe6\xf9\x77\xc3\xb2\x94\xdf\x0d\x5b\xe5\xa2\x1f\xc3\xde\xa9\x9e\x78\x54\x44\xab\x41\x7a\x6e\xe3\x39\xc2\x2f\x3f\x91\x8d\x04\x5a\x93\x34\xef\x45\xff\x97\x87\x0b\x76\xa8\x72\x7c\x8c\x81\x27\x7b\xf1\x70\xc1\x8e\xe1\xb2\xde\x32\x4f\x6e\xab\x1b\x33\xc7\x6e\xc3\xda\xf3\xd9\xbd\x70\x59\x41\x86\x88\x66\xbd\x35\x2b\xd4\x28\x09\xe0\x8b\x3e\x1d\x24\x7d\xff\xce\x18\x90\x10\x24\x44\x3d\x11\x99\xde\xdb\xe1\xc4\xed\x38\x2a\xcc\xe8\xf6\xa8\xf8\x8c\xe0\xdd\x61\x84\x43\xb6\x58\xf4\x81\x7b\x70\x14\x91\xde\x1d\x8e\xc7\xf4\xee\x59\xbd\xce\xa3\x10\x58\xf1\xd5\xa3\x10\x58\x2d\xd1\x63\xf8\x39\x75\x41\x0f\x52\x60\x99\x8c\xc7\x9b\x2c\xb9\xbb\x9e\x20\x19\x6c\x2c\x02\x74\xd8\x18\x74\x9b\x63\xf7\xee\x0a\x88\x43\x22\x2c\xda\x7b\x95\x44\xf9\xc3\x1b\xc1\xb6\xbc\xad\xb4\xa6\x22\xcd\x7b\x0b\x88\x5f\x53\x0e\x88\x0f\xcd\xe5\xe6\xae\x0f\xed\x36\xe4\xed\x63\x1c\x3a\x79\xfb\x47\xf5\xb6\xfa\xc5\x47\x0f\x6e\x37\xd7\x6b\x48\x2f\x8f\xb3\x71\xe8\x9c\xef\xd7\x38\x74\x4a\xe2\x5e\x55\xdd\xe2\xd0\x37\x64\xd0\xf4\xf9\xc6\xbd\x05\xde\x7d\x0f\xa0\x6c\x7f\x06\xcf\x7e\x8d\x4b\xa7\xf3\xc8\x1b\x17\x5c\xf7\xe5\x74\xd4\x85\x17\x72\x4e\x80\x44\xde\x70\xde\x86\x58\x7e\x75\x88\x62\x01\x48\xed\xde\x94\x98\xbd\x46\x8e\x53\x94\xf7\x72\x1f\x55\xbd\x1b\x4c\xfa\x5e\x12\x38\x98\xa4\xef\x6d\xb2\x65\xcc\xf9\x5e\x12\xdb\x98\x9c\xef\xdf\x0b\xa0\x28\x83\x56\x1e\x43\xa6\xf7\x14\xb6\xff\xa4\x77\x2f\x72\x1b\xaf\xd6\x60\x5e\x42\xa6\x7a\xcf\x4a\xc2\x4c\xf5\x9e\xdd\xca\xaf\xd6\x60\x8a\x0c\xc9\xf5\x9e\xba\x56\x42\x2f\xd6\x60\x43\x59\xfd\xab\x87\xb6\x54\xc9\xab\xea\x5b\x42\xe4\xd5\x34\x4c\x91\xe7\x8b\xa8\x3a\x2b\x19\x25\x2b\x7c\x53\x98\x68\x52\xf8\x2c\x1e\x78\xc3\x34\x8c\x13\x40\x52\xf8\x26\xde\x37\x29\x7c\xf6\x0e\x7e\xff\x05\x8c\xa1\x94\x72\x6b\xa3\x26\xbc\xca\xad\x8d\x38\x41\x8a\xf8\x66\xe6\x24\x33\xc4\x17\x03\xd4\x98\x21\xbe\x18\xc1\xdd\x0c\xf1\xa5\x46\x37\x52\x55\xc5\xc6\x94\xa6\xb8\x98\xa4\x88\xd7\x9e\xf0\x2d\x81\x5e\x19\x72\xf1\x30\xd3\x70\x0d\x58\x28\x15\x8e\xe0\xe0\x34\xb2\xbf\x7f\x27\x80\xb9\xa8\x5e\x62\x1c\x9a\x57\xf9\xb3\x1e\x17\xaf\x6e\xe1\xde\xbb\xaf\xf2\x67\x35\x27\xaf\x96\x5d\x5e\x29\xe4\x89\xaf\x5a\x1a\x91\x26\xbe\xc5\x88\x95\xb2\x48\x7c\x92\x32\xfe\x9b\x58\x1b\xf6\x98\x73\x09\xbc\x5a\x79\xc9\xf9\xbd\x88\x5c\xe6\x68\xbe\x60\x5a\x5b\x7d\x46\x7b\x6b\x0c\xba\xb7\xc5\xce\xa0\xfb\x16\x3b\x83\x96\xc3\xa8\xdc\x91\x35\xd5\x33\x4e\x99\xb2\x14\x35\xdb\x24\x8d\x6f\x33\xd9\x98\x1c\xee\xb2\xb1\x58\x72\xab\xb8\xe4\x3c\x87\xef\x95\xbb\x04\x59\x8a\xd8\xc0\x9c\xf1\x53\xdf\x7d\x72\xc6\x37\x2f\x8e\x48\x19\x6f\x2e\xd4\xb7\xcb\x73\xb9\x63\x23\x5e\x72\xbc\x60\xf4\xe1\xb1\xd4\xfe\xcb\x78\x29\x2f\x42\x16\xc3\x77\xbf\x43\xd4\xcf\xbd\xf1\x2a\xa2\xae\xee\x51\x43\xd0\x39\xf9\x86\x93\x73\x57\x44\x38\x39\x8f\xa5\x32\x69\x6f\xe0\x57\xe2\xce\x1b\xf8\x1d\x92\xc0\x6e\x5e\x44\x24\x45\xda\xe2\x45\x44\x32\x8d\x96\xf1\x4e\xcc\x8b\x3c\x96\xa1\xec\x76\x27\x93\x2b\x56\x12\xfc\x95\x7e\x52\x98\xfc\x2e\x79\xeb\x28\xe5\xde\x07\xfa\xe5\xde\xcf\xfe\x30\x1d\x9b\xe7\x10\xc1\xc5\x3a\xa2\xbe\xdb\xcd\xc5\x5f\xb2\xa2\x7f\x2b\x63\x48\xba\xdf\x02\x99\x2c\x35\x5d\x1e\xdf\x50\x7d\xdb\xde\x19\x27\xc3\x97\x20\xc8\x81\x01\x31\x44\xcf\xa2\x70\x49\x22\x63\x81\xfc\x4b\xc2\xef\xce\x38\x75\xa5\x73\xdc\x08\x28\xa6\xb6\xa5\x2f\x34\xd1\xd4\xea\xf3\x85\x26\x9a\xda\x96\xbe\xd0\x44\x53\xc3\x35\x32\xf4\xa7\x19\xa8\x19\xca\xa7\x7a\x7f\xbf\x3a\x72\xab\x45\x7f\x8d\x80\xe6\x25\x64\x96\xfe\x75\x88\xb5\x6f\x75\x43\x10\x03\xef\x6d\xfe\x26\xd7\x07\xbe\x7d\x29\x38\x30\xe9\xfd\x52\x78\x41\xd2\xfb\xef\x85\x7e\x22\x87\xfd\x87\x1d\xf6\xac\xc7\x56\xfd\xa7\x33\xb6\x1f\x90\xcc\x56\xcc\x5c\xfd\x00\x72\xa8\x98\xba\xc6\x07\x24\x8f\x04\x8b\xf2\x03\xb2\xc4\x9a\x3f\x24\xe1\x87\xa9\x5b\xf2\x37\x03\xf1\x61\x48\x28\xfd\x57\xe2\x74\xbc\x3f\x38\x56\x20\xa7\x5f\x15\xc6\x30\xf0\x86\x89\x0f\x97\x1f\x7e\x70\x20\x83\xa8\xe8\x27\xe2\x83\xd1\xc6\x3e\xf2\xc8\x0f\xdb\x08\x15\xe9\xd7\x28\x94\xc6\x1c\xf5\xdf\xe0\xd4\x1e\x0c\x42\x78\xc4\x07\x1d\xe5\xf2\x3f\x48\x55\x03\xf4\x31\xfe\x35\xaa\x00\xcb\x20\x32\xf1\x81\x7d\x9a\x3f\xc4\x10\x1f\xb0\xe1\x1d\xe3\x5f\xb7\x8a\x6b\xfa\xf8\xaf\x17\xe4\x1a\x0d\x8b\x2c\x3f\xc0\x98\xf7\xfc\xeb\x56\x9e\xb7\x43\x2e\xc4\x07\x63\x64\xcf\x7f\xdd\xca\x52\x4e\xe4\x50\x7e\xe0\xae\x30\x48\x85\x1f\x40\x7e\x2d\xfd\xd6\xf6\x19\x3a\xf8\xe6\xff\x3e\x34\x1b\xfd\x07\xba\x8c\x4a\x63\x1b\xc5\x87\xc7\xd4\x75\xbf\x12\x1c\xa9\x8e\xa4\xc1\x0f\x97\x3e\x54\xeb\x07\x98\x54\x35\x2a\x05\x3f\xe8\xfc\x0f\x31\xec\x07\xa8\xc7\x5e\x7f\x53\x28\xfd\x52\xc7\xf8\x37\x16\x2f\xfe\x49\xb0\x38\x3f\x98\x57\x00\x82\x23\x3e\x00\xfa\xfc\xaf\x0d\xf6\x69\xfb\x6f\xd6\xbd\xc8\x7a\xfd\x6d\x5c\x31\x5d\xaf\xf9\x57\x65\x44\xa2\xa0\xdf\x07\x03\x4d\xd6\xdf\xe6\x17\x81\x4c\x38\xca\xf8\x80\x67\x32\xb6\x90\x7e\x40\x50\x38\xff\x9f\x6e\x39\x89\x9d\x3b\x3f\x3e\xc4\x76\xf8\xf5\x02\xc1\x6a\x6c\xa3\xf8\x70\xab\xc4\xb7\xdb\xb4\x31\x04\x48\x75\x8e\xff\x3e\x54\xa7\xf0\xf8\x7d\x78\x1d\x5c\xfe\xf7\xa1\xbb\x94\xe3\x57\xc2\x18\x1e\xc4\x67\x8f\x0f\xea\xe0\x8f\xdf\x07\x50\x77\x9d\x71\x3c\xbe\x0f\xd9\x0f\xed\xdf\x07\x03\x76\xcd\xd8\xb8\x69\xdf\x98\xa2\xcc\x7a\xfc\x7a\x01\xf4\x91\xff\xeb\x05\xda\xb8\x61\x7d\xc5\x87\xed\x32\x40\x76\xf8\x41\x38\x6a\xfd\x37\x38\xa5\xc0\x1d\x37\x6a\x3f\x80\xf3\x3a\x81\xa0\xfc\x60\x64\xd2\xf1\x9b\x0f\x25\x93\x06\xe2\xf5\x03\x88\x6d\x60\x11\x1f\x1f\x9a\x90\xe6\xdf\x07\x2d\xb4\x62\x9f\xa6\xbd\x23\xe6\x76\xfa\x4b\xa7\x15\xa5\x39\x4c\x47\xfb\x37\x59\x4a\x7e\x0c\x31\x1c\x1f\xa2\xc7\xf2\xfb\xc0\x15\x01\x82\x8e\x0f\x40\xdd\xfa\xbf\xc9\x7a\x8a\x8e\x1c\xe3\xf7\xa1\x99\x29\xf2\xbf\x12\x58\xd3\x4d\x68\x56\x3e\xbc\xca\xa5\xe6\x6f\xaf\x48\x89\x8e\xfc\xdb\x09\xde\xfb\xda\x1c\xee\x59\xf3\xd6\x2a\xa3\xe5\x58\xb4\xbc\x55\x6a\xd7\x19\xb7\x40\xde\xb7\x93\x95\x62\x15\xf3\x0e\xb5\x28\x41\x03\xfd\x00\x8d\xde\x09\x69\xed\x87\xa6\xe2\xf0\xbf\x12\x46\xaf\xed\xeb\x5f\xb7\xfb\x09\x1e\xf8\x5f\x89\x98\x31\x82\x15\xfb\x41\x13\xca\xfa\xeb\xf6\x41\x79\x64\x7a\x46\x3f\xcc\x88\x3e\xf4\x0f\x74\xa4\x02\xa9\xb5\xf5\xfb\x60\x00\x11\xe8\xcd\xf8\xb0\xfd\xf0\x0f\xd2\x17\xb1\xde\x3c\x7e\x70\xbc\xda\xea\xb5\xf2\xaf\x0d\x69\x86\x45\x02\x2a\x3f\x98\x58\x7e\xf4\x5f\x09\x71\x3c\x74\x99\x1f\x4c\x3a\x85\x5c\xd6\x0f\xb0\xff\x75\xd6\x5f\xb7\x1c\xfb\x89\xe4\xd7\x0f\x70\xd3\xbd\xfe\x26\xe8\x75\x4b\x21\x55\xf4\xc3\x1b\x55\xea\xef\x83\xa7\xbc\x5a\xa5\x6c\xcd\x8d\xc6\x8c\xd3\xf5\x7d\xd8\xde\x24\xf5\xdf\x87\xec\xae\xce\xbf\x12\x68\x78\x47\x8e\x85\xfa\x3e\x70\xb3\x1e\xe5\xbf\x12\xd1\xed\xaf\x17\xe3\x50\x1e\x01\xfa\xf7\x21\x8b\x7d\xcb\xef\x03\x5a\xa9\xfc\x5f\x2f\x50\xea\xb3\x06\x2e\x29\x81\x8f\x66\x8d\xcb\xb8\xec\xdb\xe0\xc0\xad\xfc\x7a\x81\x58\xd5\x40\x3f\x3e\xdc\x56\xf9\x35\x3a\x5d\xca\xd8\xeb\x65\xdf\x4a\xdb\x8e\xf4\x83\x03\x89\xd9\xec\xf9\x57\x42\x74\x5c\x83\x4a\xf8\x3e\x98\x0e\xe1\x3f\xd0\xd1\x49\xcc\xff\x07\xf4\x48\x03\xb0\xfe\xfb\xa0\xc0\xf2\xbf\xb1\x6c\xa3\x13\xce\x1f\xe8\xdb\xf4\xb8\xe9\xd7\x8b\x26\x76\x35\xff\x26\xf9\x89\x0f\xbf\x29\x7c\xcd\xd7\xd2\xfe\x41\xba\x8d\x42\x82\x3c\xc4\x0f\x59\x89\xe1\x6f\x82\xd4\xda\xd7\x3a\xd3\xef\x83\x41\xb6\x7e\x83\xdb\xdc\x79\x23\xad\xfe\xfb\x30\xdc\xa7\xbf\x2a\x30\x70\x63\x8e\xff\x4a\x78\x4c\xdb\xfc\x7d\xb8\xbd\xf2\x7f\x70\xc0\xb4\xf5\xd6\xfe\x6b\x03\x84\xdd\x7f\x83\x53\xc7\x3b\x6b\xfe\x37\xa7\xaa\x76\x7b\x2a\xbf\x5e\xa0\x34\x3a\x96\xb6\xf1\xe1\x76\x0a\x7f\x1f\x96\x46\x64\xed\x37\xda\xe5\x4d\xf2\xdb\xc9\x9b\xab\xb6\x23\x36\xf3\x83\x01\x8e\xd0\x78\xf8\x01\x0a\x78\x22\x98\xe3\x83\x54\xd3\x44\x58\x16\x1f\xa4\xcd\x7e\x93\xac\x2a\x60\x62\x81\x13\x1f\xb6\x47\x3d\xfd\x3e\x3c\xb6\x31\x7e\x1f\xe4\x28\x8e\x5f\x2f\x28\x00\xc6\x4a\xbf\x46\x41\x6c\x63\xfd\x76\xe1\x03\xfa\xac\x79\xfc\x57\xc5\x6c\x1b\xe5\xd7\x2d\xb3\x3e\xd0\x59\xf9\x01\x8d\xfa\xec\xf5\xd7\xed\xf0\x44\x95\x1f\x60\x10\x6b\x7d\xfe\x86\xff\x44\x1a\xef\xd4\xfe\xbe\xc0\xbe\xd2\x4a\x4c\x8e\xdf\xdc\x18\xa1\x7b\xfd\x8e\x3d\xca\x80\x6f\x18\xc7\xef\xc3\x29\xea\xf8\xef\x03\xe8\x07\x4f\x3b\x3f\x98\xa6\x1b\xff\x19\x3f\xb8\xac\x69\xfe\xa6\x62\xb9\x01\xe7\x6f\x5c\x5a\x2d\xff\x23\xdb\xcb\x56\x52\xdd\x8f\x1f\xa6\x50\xc2\x3c\x66\x9f\xbf\x0f\x62\xbd\xf1\x1b\xb9\x5c\x55\xff\xed\x6a\x85\xc2\x3d\xfd\x70\xc9\x13\x84\xca\xef\x94\x23\x15\x4d\xf3\xf8\x9d\x8c\x67\xbb\xcd\xeb\x0f\xd2\x57\x7c\x34\x7e\x55\x30\x8d\xea\x47\xfb\xef\xc3\xe9\x14\xfe\x7a\x79\x9d\x8f\xe3\x1f\xe8\x2f\xeb\xdc\xda\x6f\x92\x15\x5a\xb5\xf2\x6b\x43\x59\xd3\xfc\x47\x95\x7e\x1f\x1e\x27\xe8\x57\xa2\x48\xca\x8c\x5f\x09\x6f\xf8\xf9\x43\x1d\xaf\x31\x86\xcb\x0f\x83\x2b\x74\x19\xf9\x77\xdc\x14\x43\x8c\xf4\x43\xfa\xaf\x96\xeb\xb8\x99\xf8\x01\x25\xc8\xac\xbf\x3d\xfb\x9e\x96\xf8\x9d\x8c\xf7\xb2\x8d\x59\x7f\x1f\x9a\xab\xff\x5f\x09\xd1\xe0\xef\xd8\xbf\x97\x18\xfc\xbf\x12\x10\x5d\x75\xfc\x07\xfa\xe3\xf9\x6b\x3f\x38\xfe\x3f\xc6\xde\x24\x57\x93\x65\xb9\xd6\xeb\x9f\x51\xe4\x0c\x14\xe1\xb5\x03\x1b\xd9\x51\x5b\x9a\x43\x14\xee\xc2\x6b\x3c\xf2\xe2\x8a\x9c\xbf\x60\xeb\x33\xf7\x38\x24\x44\xe4\x6d\x24\x22\x7f\xdb\x11\x5e\x17\x56\x2e\x23\x71\x5f\xa9\xdf\x1b\xcc\xed\x3e\xf5\x26\x47\x69\xf1\xa3\x23\x2d\x66\x78\x9d\x03\xe9\xc5\x97\xb1\x49\xcd\x05\x21\x7b\x3b\xf6\x27\x3a\xb1\x6a\xcb\x9b\xc0\x66\x3a\xfc\x4c\x33\x02\x8c\x96\x9f\xbe\xc9\xef\xab\x2a\x3d\x80\x13\x7c\xbf\x94\x4d\xd0\xec\x47\x5f\x63\xe9\x7d\x1a\xe7\x51\xdc\x6f\x74\x2f\xb4\x6e\xc2\xcb\x21\xb7\xab\x05\xcb\x26\x97\xfd\x89\x33\x16\x2e\xd6\xa5\xf7\x79\x7c\x39\xec\x32\xc0\xec\x2f\x65\xf7\x05\x63\x43\xe8\xbb\x0c\x9d\x8b\x35\x94\xdd\x30\xac\xfa\xfd\xfc\x3e\x61\x3c\xca\x6e\xc7\x8b\x9b\x89\x2f\xcb\xf4\x3e\x03\x48\xd4\x8f\x20\x0b\x71\x5d\x02\x57\x7a\xdf\x40\x4b\xd3\x7a\xe3\x75\x3e\x22\x9d\x9b\xc0\x92\xaa\xab\x1d\xb8\x6d\xd5\x7a\xee\x32\x92\x8f\xe9\x47\xa0\x61\x75\x8d\x3a\x7e\x3a\xb5\xef\x21\xc4\xbb\xa6\x95\xb6\x26\x1b\x23\x7f\x2b\x75\x75\x6e\x90\x8d\xb9\x1c\x9b\x90\x60\xf8\xf6\x0a\x1a\x95\x98\xeb\x63\x95\x31\x9c\xe1\x0b\x79\x13\x54\x68\x3d\x56\xb5\x18\xaa\xf0\x58\x82\x40\xd2\xcb\x94\x76\xa1\x13\x5c\x97\xb8\x9a\x8e\xca\x3f\xcb\xae\xe2\x04\xf8\xee\xf6\xbd\x21\x6e\x76\xb1\x1e\x46\x40\x32\xde\xe3\x81\x9e\xb8\x2d\x0e\xd0\x08\x17\xba\x84\xfd\x46\x85\xe3\x49\x69\x13\xb0\xe9\xb5\x35\x0d\xe8\xee\xca\x52\x1d\xa4\x17\x35\x1b\x86\x4a\x27\x3c\x70\xd5\x6b\x05\xcd\x07\xf7\xe4\xe3\xd8\x84\xc2\x00\xed\x37\x06\x20\x9d\x61\xf7\x85\x34\xeb\xd5\x77\x65\x76\x21\x36\x67\x67\xc4\x8d\xa0\x43\x5a\xb6\x19\x08\x01\x66\x3e\xfe\x49\xc3\xc7\xdb\x11\xed\x99\x0f\x78\x7e\x71\x54\xce\x8b\xf9\x33\x02\x9b\xa9\xef\x26\x64\x4e\xac\x73\xbf\x81\xde\x29\xa4\x4d\x20\xd4\xa6\xbb\x58\x97\xdf\xe7\xf6\x8e\xd6\x45\x18\x9e\xd3\x64\xb7\x5a\xfe\x0c\x29\xb8\x70\x90\x5f\x5c\xd6\x5a\x4a\xab\x0c\x3c\xc8\x80\xb1\x82\x00\xdf\x2a\xe4\x22\x11\x60\x43\x72\xeb\xeb\x13\xbc\x05\x4a\x3e\xc3\x26\x74\x0a\x5d\x65\x8c\x08\x17\xe6\xd7\x75\x7e\x47\x71\xb4\x87\xfd\x86\xc4\xf7\x52\x9c\x7f\xce\xef\x10\xef\x5b\xca\x57\x86\x22\x77\x5b\x3a\x76\x19\xae\x9a\x09\xbb\x61\x0f\x7a\x96\xb0\xcb\x90\x7c\x95\x73\xd9\x84\x17\xc8\xb8\x76\x6c\x02\xe2\x7b\xdc\x65\x70\xe8\x7f\x23\x86\x81\x30\x9f\x69\x7f\x82\x68\x78\xec\xa9\x1c\x80\x3a\xe7\x63\x13\x74\xd5\xa6\xb6\x07\x99\xab\x36\x2d\x1d\x9a\x11\xb4\x87\x7b\xfd\x08\x68\x2e\x77\x19\x08\x7e\x65\xa9\x22\xf2\x3b\xc1\x4d\x68\x65\x35\xcc\x4d\x4a\xa9\xaf\x01\x62\x77\xe5\x92\xfb\x26\xa8\xda\xbe\x47\x7d\xea\x70\xc9\xeb\xb4\xc9\xef\xcc\xe4\xe7\xae\xab\xa5\x52\xe1\x9f\xad\xee\xc9\x9e\x20\xc9\x2e\x85\xa9\x11\xd0\xa0\x7e\x0d\xd3\xf5\x94\xd6\x71\x9c\x5f\x54\xff\x65\x29\x3c\x8c\x80\x0a\xf1\xeb\x1c\x32\x7c\x28\x65\x13\x50\x11\xed\xe5\x80\x1e\x3a\xad\x43\x3f\xbf\x68\x9c\xf3\x59\x77\x5f\x6e\x04\xf2\xf6\xbd\xc1\x0a\xda\x8b\x1f\xed\x73\x2e\x5f\x2d\xba\xaf\x52\xa8\x1f\x01\x17\xbe\xaf\x73\x8f\x9f\x8b\xbb\x73\x8f\x6f\x8f\xdd\x17\x1d\xd8\x39\xc7\x5d\x86\xac\xd4\x39\xf4\x8f\x70\x53\xed\x2e\xf4\xe5\x48\xdf\x87\x0b\x8c\x45\x3b\xe3\x26\x0c\x38\x8d\xbd\xb4\xd1\xb2\xb5\x75\xc8\x19\xa1\xc0\x7a\xec\x89\x9a\x1c\xfa\x7b\xcf\x4d\x31\x7c\xe9\xfc\x96\xc3\x74\x85\xcd\x6e\x98\x56\x61\x29\xe1\x23\x3c\x9c\xad\xd4\x52\x5c\xfe\xce\x02\x3f\x76\x02\x9b\xd0\x2f\x52\x23\xa0\x20\xf4\x6a\x8d\x70\xb1\x92\xfb\x26\xc0\x23\x3a\x97\x50\x5e\x42\x59\x80\x7c\x74\x02\x9c\x68\xfa\xde\x20\x0e\x28\xec\x76\xc8\x91\x3a\x2f\xad\xb4\x11\x32\x2e\xbb\x9b\xc0\xf1\x99\xeb\x6e\x98\xcc\x60\x29\x7c\xd5\x72\xc2\xb4\xef\x8d\xc2\x27\x7e\x93\x18\x01\xf7\xd8\x73\xf7\xb6\xa0\xd9\x3e\xf6\x27\x1c\x8e\xb5\xec\x4f\x2a\x0c\xdf\x57\x4b\xe3\x9e\xa8\xbb\xe9\x0d\xd6\xe3\xf8\x08\xe8\x36\xcf\x5d\xa8\xb4\xd2\xf5\xa8\xbb\x5a\x02\x1e\x73\xd8\xb5\x90\x02\xa7\x1f\xbb\x16\x39\xc7\xe4\x10\xbf\x37\x38\xa4\xfd\x0c\x2a\xef\x03\x7a\xed\xba\xf2\x8b\xb3\x62\x39\xd7\x4d\x90\x3d\x01\x48\x37\x27\x90\xb6\xf3\xf8\x17\x24\xb0\xe2\xca\xd3\xb2\xd4\x7f\x46\x68\xb4\x69\x4f\xbc\x76\x46\x92\x8d\x1c\x02\xc7\x60\x69\x8b\x40\xb4\x44\x2e\x65\x7d\x42\xc8\x43\x4a\x7b\x06\x5e\x09\xa3\xa5\xa4\xfd\xc9\x49\x16\xde\xbf\xbd\x01\xcc\x4e\xf8\x08\x0f\x19\xb5\xd6\x8a\x24\x28\x21\xd5\x54\x37\xa1\x72\x96\xec\x37\x38\x17\x97\x89\xa7\xbc\xb8\xe7\xb7\x9a\xf6\x1b\xf2\x76\x2f\xad\xef\x32\x0a\x97\x4f\xde\x6f\xc0\x85\x35\xbf\xae\x8b\xf3\x7a\x6d\x31\x7f\x46\x70\x45\xf0\xb9\x09\x8d\x89\x5f\x33\xc0\xcd\x9a\x5a\x5f\xb3\x88\x63\x67\x49\x7b\x16\x71\x73\x4c\x6d\x8f\xd8\x58\xbb\x6b\x7d\x32\xa2\xdb\x5a\x56\xa1\x83\xb4\x2a\x4b\xff\x6c\x84\x9b\x5c\xad\xab\x61\x43\xeb\xbe\xf5\xbe\x3e\xc1\xb8\x5e\xca\x9e\xb9\xf9\x38\x3a\x7a\xdc\x04\x9c\x69\xfc\xde\xac\xbe\xed\x5b\x72\x0d\x48\x7d\x9f\x8a\x48\xe6\xbc\x48\xf5\x25\xda\x8a\x2f\x40\x23\xb8\xa6\xbc\x6f\x02\x82\x4e\x5e\x6f\xa0\x11\x6a\xd5\xa7\xb2\xbe\x04\x2a\xf4\xa3\xf5\x4d\x18\x22\x9c\xab\x1d\xf8\x9e\xe7\xe6\xda\x9c\xfa\xe2\xee\xdc\x96\xc2\xc3\x08\x1c\x50\xc7\xae\x05\xe3\x5c\x3b\x76\x2d\xaf\x7b\x02\x6e\xc2\xe0\xf2\x71\x01\xb4\xbe\x2f\xc2\xf4\xd7\x17\x3c\x17\xeb\x79\x6e\x42\xa0\xa5\x69\xb5\x63\xc8\x2d\xa2\x14\x9f\x6c\x23\x00\x36\x5d\xf7\x1b\xa0\x91\xa7\xba\x6a\xc1\xd1\xad\x2c\xf5\x4e\x75\xc6\x9e\xdc\x46\x10\x5c\x67\x94\x77\xa1\x6e\x28\xc8\x6b\x80\xe6\x01\x5c\x45\xdc\x04\x57\xec\x97\x35\x62\xb2\xde\x9f\xa5\xc6\x55\xed\xd4\x79\xd4\x96\x0e\xad\xbe\x93\xd3\xa6\xc7\x55\xcb\xf4\x7c\x49\xce\x68\x35\x3f\x8e\x5b\x72\x5e\xc4\x08\x0c\x90\xdf\x24\xed\x7d\x64\xae\x6a\x4b\xe5\xde\xde\xa7\xbb\xd1\x63\x7f\xe2\x82\x9f\x1f\xe9\xcd\xad\x31\x65\x71\xa2\xed\x7d\x81\x7e\x58\x86\xa4\xf6\x12\x5c\xd2\x96\xa2\xa4\xbd\x04\x5f\x94\xb2\x6b\x79\x2b\xac\x69\xdd\x6f\x5c\xae\x7e\xd8\x04\x2d\xed\xbe\xf4\x22\xcd\xcd\x33\xc0\xfd\x89\x30\x0e\x04\x50\xbf\x27\x9a\x0b\x5c\x2d\x95\xd5\xd2\x89\xdd\x39\xf4\xb0\x09\xe4\x6f\xcb\x6b\x80\x26\xf8\x31\x25\xee\x4f\x5e\xcf\x33\x7e\x6c\x02\x8c\x45\x59\xbd\xe5\xba\x6e\xc9\xef\x9a\xbe\x94\xd0\xc5\x19\x8b\xfe\x3e\xce\x46\xf9\x34\xf4\xf7\x21\xbc\x7f\xad\xf5\xee\x46\xb1\xd2\x7d\x37\xf4\xf7\xb9\x31\x99\xfb\x8e\x32\xc2\x83\xa9\x7d\x97\xc1\x78\x9c\x69\x7f\xb2\x8c\xf1\x69\x13\xfc\x93\x5d\x0b\x81\xcf\x4b\xb3\xdd\xdf\x17\xfe\x7f\xa9\x32\x8d\x70\x13\xee\xb4\xca\x20\xa0\xab\x2c\xbe\xaa\x2f\x0b\x4c\xd9\xb5\xbc\xd2\xf1\xe4\xa5\xfc\xed\xef\x8b\xa7\x65\x0f\xfb\x8d\xdb\x8d\xfb\xab\x96\x41\x76\x8e\x1e\xff\xe4\x7c\xe6\x6f\xb3\x65\x77\x8d\x23\xf0\xf9\x1e\xce\x51\xb0\x96\xc7\x35\x14\xa8\x10\xdb\xe2\x07\xfa\x52\x10\xb6\xf6\x11\x60\xfd\xf3\xfe\x84\x68\xef\xb2\x67\x11\x07\xbf\x7c\xe6\x8f\x80\x7a\x75\x0f\x27\x6e\x6e\xad\x1f\x7d\x13\x60\x53\x63\xda\x84\x9b\x2b\xae\x6e\x02\x56\xea\x63\xbf\xe1\xc7\x71\x59\xe3\x8b\x60\x5d\xc3\xae\x76\x36\xe2\xf6\xce\xd5\x5b\x77\x64\x39\xc2\xae\x16\x6d\x4e\xdd\x2b\x61\xa9\xcc\xce\xb5\x78\xa6\xac\x53\x65\xdd\x57\xd7\xfb\x48\x27\x50\x97\x4c\x72\xbd\x8a\x7f\x3d\x4b\xf5\xad\x72\xbd\x04\xc1\xa6\xa5\x96\xbd\x7c\x11\xb7\xe4\xb7\xc0\xf5\x3e\xa8\xee\x96\xfd\xea\xf2\x15\x59\x6a\xdd\x85\x4e\x32\x33\xfa\x78\x5c\xef\xeb\xd0\x6a\xae\x24\xb8\x5e\xe2\xf6\x6a\x2b\xab\x61\xaf\x2b\xd5\xea\xaa\x96\xf8\xb1\xb6\x0e\x5b\x23\x78\x68\xeb\xaa\x85\xfb\xbb\xd4\xef\x8d\x8e\x2c\xb0\xdb\x31\x14\xa9\x5b\x43\x5e\x85\x0e\x14\x51\x61\xf7\x76\x1d\xc7\x75\xb5\x03\xe1\xb1\x2e\x33\xd1\xe5\xb2\x62\x4b\x75\x11\xa6\x6b\xec\xeb\x2a\x03\xef\xc2\xb4\x34\x05\xd7\x3b\xa3\xf7\xa5\x2c\x82\xec\x57\xe5\x88\xab\x61\x1c\xe9\x69\x31\xd4\xd7\x8b\x0f\x4d\x0d\x67\xdf\x04\xa2\xdc\x7c\xe6\xee\x97\x30\xf8\xbc\x84\x7a\x23\x88\x49\x8a\xde\xb9\xfb\x7d\xe4\xca\x57\x4f\xaf\xf6\x7e\x89\xcd\x6e\xc9\x2f\xc1\xfb\x7d\xc8\xa1\xb2\x76\xf9\xbd\x34\x16\x4b\x7c\xb8\x9d\xe5\x2e\x8b\x7b\xbb\xb7\x92\xd1\x6f\xc5\xfb\x7d\xba\xef\xe1\xbc\x08\x3a\xb0\x53\xcf\xbb\x50\xac\x97\xa7\x1f\xb6\xf7\xfb\x38\x34\xd8\x57\xc6\xed\x73\xdb\x17\xe1\x71\xf0\xb0\xdd\xb9\x07\xc5\x7e\xd9\x4d\x47\xa7\xd8\xf2\x22\x10\xaf\x9b\x96\x36\xd8\x08\xb4\xb4\xad\x32\xe0\x44\x5b\x6a\xab\x1d\x30\x8d\x35\x9c\xc7\x26\x60\x4f\xc8\xfb\x93\x42\xa1\x79\x7f\x82\x22\x3b\xc4\xd5\xf4\xb7\xb3\x60\xda\xea\x2d\x51\x69\xad\xb4\x5d\xe8\x85\x6e\x25\xc6\x4d\x48\x18\x3a\x76\xa1\xde\xfd\xb6\xdf\x18\x28\xe5\xfb\xea\x0b\x66\xa2\x52\x77\x5f\x46\xc4\x52\xdf\x57\x2d\x23\x79\xe7\xd6\x34\x60\x5f\x49\x3d\xed\x32\x74\xd7\xd4\xb0\xe7\x76\xdc\xbe\x0a\x57\xd3\xe5\xfc\x7c\xb6\x63\xf7\x05\xa1\xbe\xa5\xfd\xc9\x7c\x58\x41\x6d\x8d\xfa\x1c\x48\xe8\xde\xb9\xe7\x05\x37\xa1\x25\xe7\x23\x9e\x17\xdc\x81\x7a\xf8\x2d\x60\x04\xee\x3c\x5f\xa7\xcf\x4b\xfc\x7c\x4b\xce\x03\x3c\xef\x53\xc1\x85\xf2\xa5\xfd\x2c\x5e\x64\x1d\x28\x8f\x3b\x93\xa4\x9e\xf7\x27\x8e\xbd\xee\xbd\x7d\xfc\x9a\x4c\xd9\x65\x88\xe7\x7d\x24\xe5\xb7\x7a\xac\x37\x5e\xd4\xa1\xbd\xae\x96\xba\xbe\xb8\xe7\xf5\x09\xb1\x9c\x29\x7c\x6f\xa0\x59\xeb\x6d\xf5\x16\x57\x91\xd4\xcb\xbf\xa0\x42\x7c\xdc\x60\x58\x5a\x3c\x37\xa1\xa3\xbc\xd9\x04\xd9\x27\xfa\xd1\x57\xbf\x9c\x6f\x5d\x6b\xe5\x71\x73\x60\xea\x6d\x13\xc4\xb9\xe4\xe8\x97\xaa\x11\xc8\xa6\x1f\x56\x23\x87\x0c\x38\xa5\x85\xbe\x09\x01\x29\x79\x7f\x12\x5d\xd0\x39\x36\x21\x51\xcb\x26\x78\xe2\x81\xd0\x36\x61\xe0\x1a\xb1\x9a\x3e\x74\x52\xa4\xc5\x20\x3c\x2f\xe1\x39\x6d\x49\x3e\xcf\x62\x97\x7b\xf9\xde\xb8\x90\x48\xf7\x1b\xae\x33\x2a\xbb\x73\xc4\x74\x9c\x7b\xf1\x10\xd7\x91\x7a\xd9\x0d\x23\x55\x4a\xef\xbb\xb7\xf8\xd5\xf4\xb2\x3f\x01\x96\xb6\xf7\x45\xc0\x4b\x3e\x2f\x49\xfb\x59\xfe\x5f\x4b\x7c\x7f\xfc\x76\x6e\xa9\xaf\x5a\xfc\x66\x5d\xda\xf6\xc7\x37\x42\x5e\x7e\x30\xcf\x3b\x5f\x6e\x81\xbe\xc6\x63\xea\xe2\x28\xcb\x80\xf3\xbc\xd3\x2d\x18\x7b\xf1\xb8\x8a\xa8\xc6\x5d\xcb\xc4\xa9\x73\xaf\x7b\x57\x00\x2d\x1e\xeb\x71\x2d\x77\x5e\x8e\x8b\xef\xfb\x1c\xe4\x26\xf6\xf3\xf9\x75\x35\x75\x0e\xce\x8b\xbc\x2f\xe0\x1a\xa9\x7b\x19\xaf\x1b\xa3\xca\x32\x7d\xbf\x2f\x88\x13\xa9\xbb\xc2\xe3\x7d\x05\x0d\x71\x12\x7c\x24\x02\xf8\x03\xc0\x5d\x42\xc0\x73\x68\xdd\x9b\xef\xab\x48\xf5\xb3\x2f\x6b\xb9\x11\x50\x75\xd7\x5d\x86\xdf\xdf\x7d\x35\x9d\x93\x33\xad\x9b\xd5\x08\xa8\x99\x76\x3b\xb0\xc9\xe7\xc5\x94\x9b\x70\x8d\x33\x69\xda\x6f\x38\x3f\x53\xf6\x1b\x0f\x4a\xa4\xb6\xdb\x01\xfa\xd1\xd9\x77\x2d\x93\x03\xca\x17\xcc\xfb\x8e\xc3\xbd\xee\x36\x81\xec\xf5\x6b\x8b\xbd\xee\x38\xd5\xd2\x2e\xc3\x4d\x3c\x6d\x77\x7f\xa0\xee\x5a\xca\x85\xf7\x1d\xd9\xdd\xf0\xda\x26\x4c\x1c\xb8\xd6\x78\x0c\xd7\x4c\xed\xbe\x10\x24\xd6\xcf\xb8\xfa\x82\xf3\x63\x3f\x7c\x15\xda\xe1\xe0\xc6\x81\x5d\xc6\x85\x90\x92\x56\x6f\x5d\xc3\x5e\xbe\x5a\xa4\xa8\xcc\x25\xed\x42\x49\xcd\x53\xf7\xdc\x62\x15\x2a\x8b\x15\x7b\x5f\xe2\x31\xda\x72\x14\x7a\xdf\x09\x60\xcf\x52\xfe\xbe\x6e\x44\x2e\xeb\xd8\x32\xc2\xc4\x9e\xb0\xfa\x02\xc7\x93\x6a\x5e\x4d\x9f\x24\x08\x09\x61\x13\xe0\x66\xcf\x73\x13\x2e\xf4\x44\xc7\x2e\x94\x13\xbc\xf7\xdd\x52\x31\x05\xa5\xa5\xfd\x89\x98\xb5\x7c\x7c\x65\xa0\x10\x2b\x69\xb7\xf4\x45\x3b\xee\x83\x3c\x5c\x73\x99\x96\xe6\x64\xbc\xaf\x73\x1a\x7e\x06\x8d\x97\x30\xb4\xb6\x94\xf2\xe3\x1d\xa8\x74\x9a\x8f\xc7\x58\x43\xf8\x37\x02\x82\xdf\x19\x57\xa1\xc4\xa7\xf4\xc3\x6f\xc5\xf1\x7a\x54\xc0\x32\x68\x4d\xd7\x5c\xb6\xe5\xc4\x31\xdf\x47\x8b\xbf\x2c\x75\xcc\x5c\xe2\xf6\xba\x37\xe7\x62\xb4\x16\xe7\x35\x97\xb3\xd1\xd1\xf6\x27\xba\x04\xc9\x0d\x0f\x01\xdd\x77\x8d\xfb\x13\x6e\xa0\xe5\x9d\x36\x9d\x8d\x2a\xfd\xfc\x13\x52\x25\x6f\x4f\x77\x7c\xd8\x6d\x9a\xa8\x44\xc2\xee\x17\xb1\x49\xc5\x47\x6f\x2e\xc7\xa3\xda\xd7\x27\x40\x6c\xe4\xa5\x6e\x9e\xae\x13\xc8\xd9\xb7\xdb\x7c\x1d\x35\x21\xe4\xd5\xea\x97\x0c\xb2\x21\xed\x37\x50\x11\x55\x5f\x2b\xd3\x39\xa8\x9c\xf7\x70\xbe\xb7\x9b\xcd\xf2\x26\xe8\x70\x89\xe5\xfb\xe4\xc2\x0a\x52\x37\x81\xf1\x75\x16\xc2\x08\x0f\x63\xf3\x7d\xf2\x42\x58\xe3\x4b\xac\x75\x5a\x5a\xdd\xf9\x12\x93\x9c\x42\x59\x04\x42\x84\xdb\x5a\xc4\xd3\x9d\x75\x5a\xea\xab\x73\x23\x60\xaf\xd9\x2d\x45\x41\x98\xcb\x9e\xa3\x11\xc8\xa6\xf5\xb7\x37\x48\xe0\x9c\x56\x6f\x71\xe4\x2c\x8b\xe5\x9e\x7e\xe5\x83\x47\xe9\x84\xce\x61\xbb\xcb\x80\x8f\x2f\x69\xb7\xa3\xf9\x1b\xbb\x5a\x8c\x95\xdf\xcc\xc1\x40\xa6\xd0\x56\xf7\x07\x69\x6d\xd2\xd7\xb9\x1b\x43\xd2\xb1\x86\x10\x3f\x98\x74\x86\xfd\xc9\x64\x45\x1e\xbb\x50\xdc\x5e\x8e\x3d\xd9\xb8\xbd\xe4\xf2\xd5\xc2\x25\xb8\xbc\xbb\xe6\xb6\xc5\xfd\x8d\xc0\x44\x1d\x6b\x7d\x10\xeb\x94\x8f\x3d\x0d\xf8\x6f\xb7\x63\x0f\x90\xe2\x87\xce\xfc\xf5\x56\xe1\x35\x67\x3f\xf6\x0e\xc5\x3b\x1b\xd0\x1b\x08\xee\x9d\xdd\xf7\x1b\xcd\xb5\x6c\x79\x13\x3c\x67\xf6\xf7\x09\x0c\x75\x5f\x2b\xc8\xf9\x88\x5e\xe3\x26\x54\xc4\xed\xdd\x30\x99\x44\xc9\x69\xe2\x84\x8c\xe3\xf0\x1a\x20\x5c\x56\x4a\x8e\xbb\xb7\x03\xb5\x5b\xff\x08\xbe\x82\xbe\x4f\xc4\x36\xc4\xb8\x0b\x1d\x1c\xd8\x5f\xd3\x27\x2b\x08\x0e\x3b\x1f\xef\x83\x1e\x3f\x72\x2d\x18\x01\xe8\xd4\x5e\x3f\x82\x73\x6f\xfb\x13\x52\x93\x54\xa4\x05\x11\x1e\x86\xb0\x6f\x02\x1b\x08\x0e\xdb\x08\xa4\xe4\x74\xd1\xd0\x08\x04\x68\x77\x16\xae\x08\x4c\x76\xfe\xde\x60\xbf\x7c\xed\x68\x38\xb7\xa5\x4d\x70\x1d\x5a\xd9\xd5\x3e\x2c\x6d\x14\x36\x46\x80\x25\xac\x79\x7f\xa2\x21\x24\x2b\xb6\x08\x60\x44\x65\x77\xc3\x13\xc1\x6f\xb4\xb8\x08\x58\xc8\x33\x0b\xc6\x08\x9e\x56\xbd\xae\xa6\xbf\x9e\x5b\x9d\x03\x5b\x04\x66\xbf\xec\x42\x13\x3a\xd6\xbc\x1a\xf6\x66\xba\x5f\x77\xa1\x19\x31\x66\xcf\x0b\x58\x3b\xf5\xd8\xdd\x7f\x7d\xe1\xf6\x5d\xa8\x7b\xda\x7d\x7d\x41\xa5\xea\xfc\x9d\x11\x24\x91\xb6\xb2\x07\x08\x89\xb4\xf8\x6d\x24\x42\xc6\x65\x65\x37\xec\x82\x15\x6b\xbb\x0c\x37\xbc\xb6\xdd\x52\x67\xc5\xd2\x2e\x43\x0e\xc7\xf5\x6f\x63\x3a\xdd\x76\xbd\x3e\x41\xfd\x97\x63\x5e\x9f\x60\xe8\x68\xe7\xb1\x3e\x41\xec\xc8\x65\x77\x0e\xbe\x2a\x97\xdd\x0e\xbc\x10\xf3\x91\xfe\x7c\x81\xe9\x6d\xfc\x2d\xf6\x7a\x43\x4a\x2e\x65\x8f\x0d\x70\x01\x39\xec\xf1\x55\x20\xbe\xd5\xf8\x11\xe0\x5b\xbf\x37\x80\x91\x29\x7b\x9e\x39\x06\x5b\xff\x3e\xc1\x1a\xe3\xbc\x8d\x08\x88\x42\x6d\xf7\x9c\x88\x82\xb2\xf7\x0e\x4c\x46\xcb\xdf\x27\x6e\x0c\x3e\xd7\xe8\xb9\x63\x79\xde\x83\x05\xd7\x91\x8f\xb4\xca\x50\xf8\xa7\xbd\xb1\xd6\x2c\xf1\x94\xe9\xeb\x0b\x81\x84\xd9\x9d\x27\x44\x40\x59\xd1\xf3\x26\x80\x81\x92\xda\x26\xb0\x44\xfb\x26\x34\xec\x68\x7b\xab\xa0\x97\x6c\xee\xde\x24\x02\xec\x72\xdc\x6f\xb8\x72\xfd\xab\x45\x03\x94\xdd\xff\xc4\x08\x80\x76\xd6\xdd\x7d\x3c\xf7\x72\x0c\xbb\x2f\xc4\x2c\x9d\x67\xdf\x04\xec\xe9\xde\xdb\xf3\x7d\x0e\xef\x7e\x5e\x84\xc8\xaa\xe6\xb0\x15\x01\x86\x1a\x89\xd4\x08\x19\xe7\xf4\xaf\x0c\x98\x13\xb7\x80\x1a\x01\xc7\x87\xea\xa3\xbe\x02\x5d\x48\x17\xeb\x04\x58\x0f\x6e\x45\x23\xc0\x7a\xb8\x19\x40\x04\xdc\x09\x7c\x55\x9f\xef\x23\xa9\x25\x97\xbe\xab\xc5\x1f\xce\xa5\x16\x11\x7c\x4c\x57\x19\x58\x62\x9b\xbb\xae\x19\xc1\x43\xe9\xd2\xfa\x04\xf4\xaa\xe4\xfe\x16\x46\x70\xbf\x3c\xf8\xe7\x7c\xbe\xe0\x7d\x94\xa3\xae\x96\x8e\xc0\x0a\xda\x23\x36\x08\xeb\xe9\xdf\x27\xd5\xc7\x74\x8d\x98\x40\x27\xce\x7c\x1e\xbb\x0c\x40\x73\xdc\x63\x2e\x9f\x2f\xd1\xe6\xad\xec\x51\xc7\xd6\x92\x8f\x1c\x37\x61\x52\xe8\x2a\x83\x7b\x33\x1f\x79\x0d\xf2\x1c\xa0\xa2\x95\xb2\x09\x3a\x06\xa3\x9f\x9c\xe1\x05\xc9\xb4\xad\xed\x11\x5e\xc0\x44\xeb\x11\x37\x01\xe5\xcd\xc9\xdd\x6b\x04\xad\xb1\x5a\xf2\x26\x4c\x3c\x54\x7c\x15\x1a\x81\x9b\xc4\x47\xdd\x08\x04\xde\x22\x5f\x89\xa0\xd3\xe1\xe8\xbb\x1d\x04\x51\xb8\x5a\x56\x04\xd2\x7b\x84\x45\x00\xa4\xb0\xb8\x23\xa7\x08\x98\xcc\x91\x59\x45\x70\xc6\x73\x15\xea\xf1\x30\x39\x85\x4d\x60\xd1\x95\x5d\x28\xb7\x51\xfd\x6a\x41\x24\x0b\x7d\xb5\xf4\x75\x1d\xcf\x19\x37\x21\xb1\x60\x76\x3b\x22\x5a\xb6\xaf\x61\xe8\x12\xda\x47\xe0\x46\x73\xd7\x08\x11\xb0\x49\xd4\xdd\xb0\x44\x94\x89\xef\x7d\x23\xe0\x5e\x91\xf7\x27\x1e\xbb\x7c\xee\x86\x21\x0a\xd5\x63\x13\x2a\x1a\xc3\xef\x0d\xe2\x04\xdd\x78\x2b\x82\x8f\xc7\xae\x05\xaf\x0e\xd7\xd3\x8a\xc0\x65\x1c\x77\x6f\xe1\xcd\x3c\xf6\x52\x84\x06\xf7\x76\x6c\x82\xab\xa7\xf6\x10\xc2\x00\xbb\x51\x4c\x04\x24\x95\xf0\x7d\xe2\xc1\x0b\xdf\x1b\x98\x42\xd2\xee\x6d\x43\x61\xd3\xbe\x6a\xb1\xaf\xe4\x5d\x46\xc7\x71\x2a\xfe\x39\x0e\xcc\xde\xbe\x5c\x11\xb5\x3f\x97\xb8\x9a\x3c\xc4\x40\x04\x0c\xb9\x71\x0f\xd6\x45\xe8\x58\xdb\x6d\xba\xfc\xc0\xde\x6d\x42\x8d\x90\xeb\xee\xc6\xed\x0e\x72\xbb\x8c\x25\x4e\xed\xb1\xb9\x71\xa2\xfa\xe6\x08\x71\xaa\xee\xdd\xe5\xe2\xd4\xba\x15\xc3\x0b\x04\x58\x3e\xfa\x6e\xe9\x8b\xe5\xbf\xee\xe5\xf5\xba\x5b\xd1\xee\x9c\x94\x6a\x39\xed\x1d\xea\x51\x74\x1e\xcb\x69\x04\x24\xb0\x9e\x77\xc3\xd0\x5d\xe5\xaf\x0c\x1c\xba\xcf\x6f\x11\xc3\x1d\xc7\xb8\x3f\x99\x18\xa3\xe2\x6e\x98\x84\x94\x1c\xf6\x59\xe2\x62\x9d\xeb\xf4\x45\x20\x50\xb5\x7e\x9f\xe0\xa2\xb1\x97\x97\x03\x38\xd5\xbe\x5a\x0a\x3a\x53\x73\xf3\xb9\x08\xa8\x00\xf6\x6a\xf2\x08\xbe\xbc\x8f\x9f\x11\x50\xdc\xc6\xb6\x09\xb0\x54\x47\xde\x04\x94\x37\xc7\xf7\x09\x7b\x67\xef\x0c\xd4\xc3\xe4\x10\x73\x42\xc1\x5a\xf7\x11\x98\xec\xe3\xfb\x04\x35\xf5\x9e\xec\x11\x3c\x1b\x61\xdd\x04\xa4\xa7\xb6\xdb\x11\x09\xbb\xdc\x43\x88\x39\x22\xc7\xb0\x1b\x86\xff\x57\xfd\xca\x40\x02\x3b\xca\xee\x3e\x81\xdd\x47\xff\x3e\xc1\xc9\x6e\xaf\x53\x02\xf6\xb2\xeb\x8b\x45\x00\x27\xe7\x1b\x53\x32\xf7\x9d\x7b\xdb\xfb\x05\x16\xbe\xde\x16\x8e\x8e\xbd\x3d\x86\xf4\x92\x39\x7e\x85\xca\xbe\x99\xdd\xe2\x2e\x02\x32\xeb\x3e\x07\x60\x1a\x73\xfc\xdb\x1b\x1d\xa6\xfc\x23\xe8\xe8\x70\xa1\xcd\x08\x44\xaa\x1c\x75\xf7\x16\xdb\x64\xf9\x46\xac\xbb\x37\xf2\xae\xa5\x7b\xd3\xbf\x37\xf0\x63\xdd\x7b\x0e\x77\x93\x7c\xec\x4b\xd0\x39\xd1\xfe\x15\x7a\xe1\x61\x5a\x3e\x42\xe5\x48\xdf\xed\x90\x13\x66\xf1\x68\x06\x11\x98\xb9\x7d\x0c\x62\x26\xca\xf9\x9b\x06\xd7\x9c\xec\x1d\x25\xe4\xa3\xb3\x84\x6f\x39\xa0\xba\x6b\x7b\x13\xe2\xe8\xdb\xf2\xbe\x7c\x40\x28\xca\xee\x7e\x23\x02\x9a\xcb\x6f\x69\xe3\xed\x96\xbf\x51\x47\x95\x79\x94\x4d\x00\x1f\xc8\x7d\x72\x45\x60\x9d\xee\xee\xe3\x4b\xd3\x8f\x7d\x5c\xe0\xfa\xda\xca\x5e\x63\xe8\xe0\x4b\x76\x56\x2c\xbe\x60\xad\x67\xb7\x92\x19\x01\xe7\x9a\xe2\x3b\x3b\x2e\x67\x3f\xf7\x70\x33\x82\x98\xf9\x76\xf8\x56\x8f\xee\x47\x97\x17\x5f\x15\x5f\xe1\x0a\xdb\x11\x7c\x2c\xc2\x09\x73\xe2\xed\x88\x7e\xc0\xd6\xd3\x85\x8a\xe8\x96\xa0\x7a\xb6\x8f\xe0\xc1\x3e\xcd\x09\x23\xba\x3d\x6f\x95\xc1\xf6\xa8\xee\x0e\x61\x04\x2d\x87\x1a\xcb\xb1\x09\x78\xec\x1c\x8b\xe0\xb6\xeb\x25\x08\xc7\x57\x20\x25\xf6\x49\x5a\x84\xc6\x91\xd3\xf7\x27\x0d\x4e\xf4\x5c\xdd\x07\x42\x43\x60\x3e\x7f\xbc\xc0\xec\x6d\x8e\x8e\xb0\x06\xdc\x91\x2c\x4a\x5f\x83\x35\x6f\x42\xa5\xf6\x60\xb9\xeb\xda\xba\x49\x92\x47\x14\xb7\xec\x0b\x30\xb9\x2f\x69\x0d\x5e\xe8\x0e\x74\x39\xbd\x91\xe9\x7d\xe5\x2a\x52\xcf\xb2\x09\x09\xfd\x97\x8f\x4d\x72\x63\x5f\x3d\x77\xa1\xa8\x21\xeb\xda\x4c\xc9\x25\xdc\xe6\x81\x50\x39\xf9\xe5\x53\xdb\x57\xa8\xdb\x7c\xc2\x2e\x63\x38\x77\x1c\x9d\x30\xa4\x4b\xaf\xa7\x9f\x8b\xc9\xcf\xf8\xbc\x44\xde\xe4\xb3\x58\xdc\x2a\x64\x84\x8e\xa2\xe1\x5c\xdd\x77\x74\xaf\x70\xac\xde\x12\x5c\x56\xdd\xdd\x2b\xa7\x15\xa5\xed\x00\x0f\x46\x40\xeb\x58\xfe\x46\xe0\xe2\xf0\x23\x2c\xbf\x8f\xab\x33\xfc\x70\xc9\xef\xc3\xc5\xd1\xfd\x76\x36\x02\x1a\x10\xe7\x6c\xf3\xfb\x60\x04\x8a\x7d\x97\x81\xf7\xdf\xe2\x8f\xf2\xfb\x14\xb4\x17\x7e\x40\x19\x01\xa9\x36\xec\x32\x3a\x9a\xf2\xba\xde\x20\xea\xb4\xd5\x74\x6e\x82\x6e\x45\x77\x05\x10\x01\x69\x21\xac\x6a\x51\x20\xa7\xfe\x95\x81\xd2\xc4\x51\x23\x44\xd0\x95\xef\xfe\x5f\x22\x78\x3b\xe2\x22\xc0\x95\x66\x3f\x06\x8d\x90\xe9\xdc\xf7\x86\x77\x6e\x97\xe1\x16\x8c\xaf\x1d\x38\x0e\x2f\x0d\x59\x76\x5e\x2f\xb9\xb6\xcf\x08\xb7\x3b\x0c\xae\x31\x05\x26\x20\xe7\xbc\xab\x7d\x51\x42\xb7\x35\x84\xc0\x04\xd4\xd3\xef\xab\xfc\x82\x40\x59\xdd\x23\xc3\x08\x0c\x90\x1b\x3d\x8c\xc0\xad\x58\xeb\x2a\x14\x3c\xc4\xbc\x2e\xc1\xec\x57\x4b\xeb\xbb\x2f\x44\x13\xe5\x33\xae\x6a\xf1\x71\xca\xee\xf3\x9c\xb3\x4b\x71\x29\xef\xbe\x10\x6b\x58\xea\x9e\x7d\x77\xa1\xf3\x28\x1e\x23\xb8\x3d\x3d\xad\xa6\x4f\xa0\xed\xbf\xf5\xe1\xbe\xf9\xee\x0a\x9c\x97\x5f\x7d\x8e\x69\x17\x8a\x35\xf7\x0c\xbb\x8c\x81\x98\xeb\x3a\xc5\xe2\x2a\xc4\x7a\xa6\x8f\x80\x5e\xc4\x3f\x29\xdb\xbe\xe9\x0d\x2b\x6e\x05\xc9\xb1\x6d\xc2\xeb\x96\xb6\xb8\x08\x28\x08\x4f\xdf\x1e\xc5\x9d\x05\x5a\xc6\xfe\x6d\x04\x70\x69\x3c\x4a\xd4\x08\x19\x31\xd7\x39\xaf\xb2\xd8\x6c\xd7\x5b\x1b\xe1\x41\xec\xcf\xab\xa5\x43\x2e\x74\xad\xf7\xd5\x52\x9f\x97\xd2\xd3\x26\x20\x60\x7c\x9f\x5c\xbe\x70\x3f\x02\xf6\xcd\xbc\xda\x31\x3c\xdd\x89\xef\x97\xe2\x4e\x1c\xd5\x63\x8c\x8c\xd0\xd8\xea\x3e\xd9\x65\x85\x59\x9c\xf5\x23\x24\xce\x8f\x55\x28\xf1\x57\xd9\xa3\xc5\x8d\x40\x7c\x5e\x3c\xe2\x26\xb8\xb7\x0d\x65\xd4\xf7\x39\x18\x42\x9f\x17\x23\xb0\x81\x9c\xef\xae\x0e\xfe\x53\xc2\xb9\x09\xc9\xad\x97\x61\x11\x70\xa0\x3c\x7c\x25\xd7\x85\x19\x12\xc3\xae\xe5\x62\x08\xc3\x7e\x83\x90\xa2\xc5\x78\x56\x77\x46\x4b\xab\x73\xd5\x4d\x54\xc9\x31\x0b\x72\x7d\x41\xc7\x4f\xd6\xb9\x3f\x5e\x60\xd5\x4d\xdf\xcd\x4d\xce\x46\x48\x9e\x8c\x71\xd5\x88\x1d\xbb\xbb\x07\xaf\x11\x6e\x08\xbb\x91\x08\x07\x39\x1c\x9b\x90\x08\x14\xdf\x1d\x75\xe7\x89\xe2\xc2\xb9\x11\xf0\xd9\x70\x29\xae\xfa\xa6\x4e\x4b\x7a\xaa\xce\xeb\xe5\xb3\xae\x76\xc0\x85\xe5\xc5\x53\xd4\x15\x95\x5c\x77\xc3\x3c\x2a\xb9\xf8\xf9\x5c\x5d\x85\x58\x62\x5a\xed\x10\xb6\xda\x99\x1c\x1b\xc6\x08\xec\xbf\xa3\x84\x4d\x08\x30\xf6\x8c\x6f\xf3\x69\xed\x6e\xf4\x10\xc1\xe3\x5a\xe2\x22\x24\xd7\x3b\xed\x37\x08\xdb\xf0\x18\x1d\x23\x34\x74\x02\xae\x1f\x6d\x1e\x28\x57\xdd\x04\x68\x04\x78\xdf\x75\x2b\x36\x77\x4e\xaf\x2d\xaf\x76\x90\xff\xa1\x2d\x6e\xb0\xb9\x86\x2c\xad\x9d\xd1\x5e\x40\xf0\x9b\xdb\xd3\x45\xc0\x69\xe1\x08\x9b\x80\xc4\xef\x6c\x6a\xf3\xab\x25\x3b\x16\x83\x11\x2e\x2c\xa0\x3e\x51\x46\x20\xba\x2a\xec\x76\xdc\xde\x8e\xfd\x09\xa1\xdf\x6e\x01\xcd\xed\x1d\x19\x55\x44\x59\x2d\x25\xb6\x2e\x9f\xed\x23\x00\x47\x95\xdb\x26\x10\x70\x93\x57\xc3\x00\xea\x4c\xe1\x5c\x4d\xc7\x06\x56\x96\x28\xd4\x7c\x2a\xeb\xe2\x78\x9a\x87\x6d\xb7\x9a\x57\x2d\x33\x7b\x48\xdf\x6a\xe9\xbc\xb1\x1b\xa5\x55\x2d\xec\x72\x5d\xfc\x4c\x73\xa5\x6b\xf6\x98\xa5\xdc\xdf\x67\x8d\x7a\x59\x04\xcf\x16\xec\x1b\xb2\xbb\x65\x29\xbb\x93\x9d\x08\x2c\xed\xbe\x3f\xe1\x1c\x58\x32\x5a\x7f\x9f\xe2\xfe\x27\xc7\x22\x34\xd4\x90\xce\xf1\xf4\xe5\x96\x98\x7d\x69\x1b\xa1\xe3\x70\x10\x37\xe1\xe5\x3c\xda\xed\xe8\xd8\x6a\xd3\xaa\xc5\xfd\x03\x97\xea\xa0\xbf\xca\x12\x70\xd6\xd6\x57\xa1\xf8\xf6\xe5\x70\xc6\x4d\x20\x11\xc1\xb9\xfa\x02\x68\x7a\xcb\x69\x11\x10\xfb\xab\xc7\x92\x19\x21\xe0\x09\xb1\x07\x88\x13\xbc\x95\xef\x93\xdb\xad\x53\x75\x13\x50\x0c\xec\xa6\x83\xab\x5a\xbf\xce\xe1\x94\x9a\xc2\x1e\x0f\x4c\xa2\x6d\x69\xc8\xba\x7b\x75\xd4\x10\x36\x21\xb9\xca\x3d\x2f\x82\xf3\x99\x69\x35\x8c\x6b\xa1\x2d\x55\xf7\xf2\x2f\xce\x5f\xb5\x78\x41\x95\xe8\x87\xc1\xf5\x92\x02\xaa\xae\x89\xba\x16\x4b\xb8\xd4\x5d\x97\x47\x79\x35\x8f\x8a\x34\x82\xb3\x84\x3e\x0d\x97\x4f\x65\x59\x47\xce\xe5\x51\xb3\x65\xe9\x34\xae\xf7\x71\xd9\xd9\xb5\xc1\xd7\xf2\x73\x70\x30\x85\x7c\x2d\x1c\xb5\xf3\x58\xb5\x10\x96\x54\x1d\x6b\x2b\x2f\x0f\xe4\x96\x77\xc3\xf0\x40\x6e\x8e\x3b\x62\x04\x9c\x63\x97\xde\xfa\x7a\xc9\x10\xd0\xdc\xe5\xcd\x08\xd8\xc0\x96\xc0\x75\x39\x8e\x5a\x3d\xdb\x2e\x14\xcf\x90\x9c\xd7\x00\x79\xf4\x8f\xbb\x9b\x8b\x40\x2c\x59\x5c\x4d\x1f\x6e\xb4\xc9\xab\x5a\x57\xa5\x04\x67\xd6\x2e\xe7\xef\xb2\x43\xc8\x88\x10\xd0\x14\xfc\x0b\x36\xb0\xcb\x83\xbc\xd3\x92\xd6\x2f\x77\x7f\x6b\x1e\x5e\x64\x04\x8f\x06\xf8\xde\x40\x33\xd5\xf3\xaa\x11\xcc\xd4\xd6\xfb\x7e\xc3\xc3\x0c\xeb\xea\x39\xa0\x9a\xd5\xc3\x47\x44\x70\x5d\x7a\xdd\x84\x80\x2a\x62\x57\x0b\xdc\xe6\x5a\xe6\x46\x40\x97\x9e\x77\x2d\x15\x57\xfc\xbe\x6b\xe1\x56\x4c\x7b\xf4\xb0\x3d\xa5\x78\x9e\x9b\x80\x7e\xb4\x95\x4d\xf0\x19\xd8\x04\x87\xfb\x3a\x37\x01\x13\x7c\xd9\x03\x3e\xd1\x07\x3a\x18\x41\xbe\xfd\x8a\x4b\xeb\xe4\xbc\x57\xb8\xa3\xfb\x06\x88\xc0\x25\xe8\xcb\xfc\xf6\x8d\xd0\x0f\x57\x33\xdd\xee\xd3\x5a\xf2\xf7\x89\x54\xd6\x69\xf1\x7a\xf7\xfb\x34\xda\xe1\x9c\x86\x11\x30\x14\xf8\x51\x7a\xbb\x49\x23\x97\xaf\x1d\x97\x2f\x9e\xba\x08\x38\xc6\x94\xaf\x1d\x37\x39\xa9\xc3\xae\x16\x5b\x9c\x23\x47\x19\x81\xee\x2f\x13\x8f\x11\xdc\xcb\x65\x7f\xf2\xb2\x00\x7d\xc4\x6e\x0f\xd8\x6b\xd5\xcf\xc5\xdb\xf1\xba\x9a\x87\x2a\x8a\xe0\x0e\xa5\xdf\x27\x98\x11\xc3\x47\xc0\xd4\x9b\xc3\x26\xe0\xd2\x5b\xfb\x26\x80\x1b\xd0\xcf\x4d\xc0\x67\x2a\x7c\x84\x8b\x01\xda\xed\x60\xab\x2c\xb9\xf7\x76\xdb\x42\x5b\xcc\xf0\x72\xd7\x2e\xed\x7b\xe3\xf2\x08\x9c\xba\x09\x40\x27\x97\x63\x13\x18\x8f\x96\x36\xc1\xd9\x97\xdd\xf4\x8b\x2d\xd6\xbf\x42\x0b\x0d\xdb\xe3\x81\x1e\xee\x1b\xd3\xd7\x19\xfb\xbc\xdf\x78\xb9\x9d\xd3\xae\x05\x0b\xe8\x12\x95\x6f\xd7\x08\x95\xfe\x15\x8a\xfd\x2a\xed\x4f\x70\x6d\xcc\x1e\xc5\x2f\x02\x50\xa3\x7b\x08\xc9\x5a\x90\xfb\x9e\x4a\xee\xab\xec\x98\x21\x79\x39\x96\xa7\x78\xec\x4f\xc4\xef\xa6\xb8\x27\x7b\x24\xa4\x85\x3d\x1e\xe8\x7a\x8b\x3b\x85\x1b\xa1\x00\x01\xb1\xe7\x65\x20\x09\xba\xeb\x8c\x08\x04\x2f\x9c\x6b\x08\xdd\x0e\xef\x1e\xb7\x22\x80\x37\xfa\x35\xac\x61\xf3\xf9\xaa\xe5\x02\x3b\xf6\x1a\x1b\x0e\x37\x5a\x77\xd3\x5f\x94\x0b\x5f\xc3\x5e\xac\x42\x7b\xd4\x1d\x5e\xe0\x0c\xbb\x61\x98\x33\x43\xdf\xd5\xbe\x88\xb9\x5f\x4b\x65\x9a\x4d\xe7\xdf\xaa\x55\x5f\xd2\x5e\x52\xc4\xf9\xa7\xa5\xd3\xb8\x57\xf4\xfc\xb7\xc6\x90\xd1\x4a\xdf\x9d\x73\x1c\xd9\x73\x0f\x32\x21\x7d\xa5\xec\xf1\x80\x37\x6b\x7d\x1f\x17\x78\x20\xe7\xc5\xcc\xdf\x4b\x98\x4e\xce\x14\x3c\x2f\x79\x20\x6b\xf5\x33\x79\xb9\xe2\x37\x47\x05\x33\x02\x37\x49\xf5\x76\x3c\x0e\xac\x96\x8b\xdf\xf0\x8f\xdf\xce\x29\xfa\xcc\x3d\x1e\xfd\xd3\x6a\xfa\x08\x6e\x46\x3c\x36\x01\x87\x74\xb7\xa2\x3e\x8e\x94\x9a\xe2\xd7\xb0\x97\x00\xaa\xf6\xe7\x40\x66\x7b\x7b\x22\xe2\xc5\xdd\xea\xe9\x61\x5f\xab\x91\xca\xd0\x76\xb6\xa5\x35\x78\xdc\xa2\x9a\x1c\x8f\x49\x84\x97\xd1\x4b\x8b\x80\x59\xe4\xcc\x79\x13\xdc\x08\xb4\x09\x85\x10\xe3\x73\xd7\xe2\x98\x97\xbe\x9a\x9e\x65\xa7\x5c\xf6\x89\x67\x69\x0c\x73\x59\x43\xe1\x1e\x2f\x61\xb7\x14\xeb\x43\x5b\x0e\x3f\xcf\x3b\x08\x42\xf6\x28\x6d\x11\x60\xfe\xf6\x0c\xf8\xba\x77\x48\x39\x23\x00\x9b\xb0\x94\xc9\x8f\xc3\x51\xb5\x52\x37\x61\xc0\xec\x94\xd5\x5b\xee\xde\xe6\x81\x0c\x46\xe8\x18\x2c\xf6\x2c\x82\xfd\xd7\x97\x49\xe3\x7d\x9f\x00\x1b\xe2\x87\xcb\x72\x2c\x6f\x8e\x4e\x60\x04\xb6\xec\x3a\xb0\x5f\x07\xe2\x2d\x31\xaf\x37\xdc\xb2\xbb\x58\x8f\x77\xc5\xc6\xac\x5b\xf1\x5d\xa8\x98\x4b\x65\x6d\x04\x14\x0d\x65\xb5\x83\x7c\x2e\x69\x39\x3e\x18\x61\x20\x80\x9e\x4e\xe0\x4c\x4b\x87\x5f\x60\xaf\x83\xd7\x56\x0f\x99\x34\x42\x74\xd6\x23\x6d\x02\xf2\x77\x5f\xb5\x8c\xec\x4a\xb5\x8f\x00\x23\x9b\x8e\x4d\xa8\x18\x3c\x57\xd3\x31\xe0\xd4\x65\x50\x7e\xdd\xfa\x90\xe2\xee\x1c\x22\x59\x5d\xc7\xe0\xeb\xf0\x3a\xd9\xc1\x84\x8c\x90\x5c\xa7\xb8\x3f\xc9\xa0\xfa\x1c\xfb\x13\xf7\x4f\xda\x63\x3a\x1b\xc0\x0a\x79\x8d\xa9\xc7\xe8\x38\x64\x4a\x1e\x2f\x69\x30\xdb\x5a\x96\xc3\x23\xbd\x53\x77\xd6\x63\xb8\xba\x3c\x2f\xbf\xbc\xb1\x22\xb4\xca\x57\x06\xbe\x23\x8b\x4b\x18\xeb\x42\x8f\x75\xbd\xe1\xfe\xfd\xeb\xa0\x1c\xee\x76\x96\xd6\xc2\x1d\x7e\xd5\xd6\xc5\xc8\x0e\x17\x84\x9b\xe3\x8f\x1a\x61\x3a\x61\x7d\xe2\x78\x79\x4b\xeb\x38\x5c\x73\x52\xd6\x85\x3e\x96\xe5\x71\x59\xed\xc7\x3b\xe0\x22\x97\x49\x63\xb8\xcb\x58\x8a\x3e\xc8\xc3\xad\x75\xb9\xee\x6a\x3d\x45\x8c\xa3\x25\x1a\xe1\xe6\x80\xaa\x7d\x13\x06\x47\x7a\x59\x04\x05\x73\xe4\xe5\xb4\x30\x5c\x3f\x9a\xbf\x4f\xe6\xc1\x36\xad\xab\x5a\xb2\x19\xe4\xa5\x3f\x1f\x2f\x50\xfb\x29\xb6\xb6\x09\x04\xca\xe5\xef\x0d\x76\x65\x5b\xd5\xe2\xc0\x95\xcf\x8f\xa0\x33\xa8\x3b\x10\x89\x11\x06\xfb\xf6\xd8\x85\xd2\xd2\xe2\x0b\x77\x2e\x71\xbb\xf9\x34\x4c\xd7\xd2\x37\x0f\x96\x37\x02\x89\x50\x96\xde\x7a\xbe\xcf\x03\xff\x5f\xd7\x27\x0e\xbe\xb5\xd6\xc7\xf4\x38\xff\xe4\x80\xa4\x22\x80\x92\xe6\x87\xfe\xdc\xfa\xf3\xaf\x0c\x10\x06\x97\xc8\x30\x5d\x7f\x5e\x97\x9b\xe6\xf2\xfb\x4e\x0e\xa6\x60\x04\x44\x76\x0f\xf9\xcc\xcb\x23\x3b\x2d\xa7\x96\xe9\x5c\x53\xf6\xb0\x93\x3c\xdf\x91\xdc\xd5\x2c\x6d\x02\xe6\xbb\x63\x11\xa6\x27\x07\xde\x2d\x9d\x0e\xbc\xc7\x92\x2a\x87\xeb\x34\x92\x47\x88\x88\x80\xac\x88\xee\xcd\x08\x27\xb6\xeb\x78\xfc\xf1\x02\xb3\xb7\xe1\x8e\x1d\xd9\x43\x84\xc4\x22\x3e\x16\x01\xeb\x94\x83\x92\x18\xa1\xf9\x27\x7d\x11\x00\xd0\x73\x1c\x24\x23\xdc\x68\xdb\x91\xd6\x45\x40\x06\x66\x01\x1a\x01\x28\x29\x57\x67\x88\xe0\x81\x99\xbb\x16\x62\x9f\x73\x5b\x3d\x7f\x03\x5c\x69\x5b\x85\x7a\x58\xae\x63\x99\x19\x21\x63\x36\xdb\x0d\x03\x9d\x33\xbb\x5b\x83\x11\xa4\x89\xa9\xbe\xff\x8c\x70\x79\x19\x9b\x70\xfb\xed\xbc\xc6\x83\x13\xbc\xf6\x73\x35\xcc\x33\x53\xe5\xdd\x74\x0f\xc9\x71\x07\xd5\xb2\x3c\x45\xab\x2b\x19\x8d\x00\xe4\xa7\x47\xe1\x1a\xa1\x63\x2f\xad\xab\x2f\x40\xf5\xd6\x1e\x57\x6f\x31\x28\x17\x77\xaf\x28\xc7\x72\x5d\xcb\x6d\xcd\xb3\xef\x61\x77\x94\x35\x82\xbb\xae\xb5\xd5\x74\xdf\xb2\x21\xac\x42\xd9\xa1\xc9\x51\xf9\x44\x40\x11\xb5\xfb\x32\x2b\x89\xf4\xcb\x6a\xe9\x6c\xde\x39\xba\x7f\xfa\x96\x4d\xce\x94\x1b\xa1\xb0\x3e\xe0\xe4\x44\x40\xf1\x02\x97\x5e\x96\x9f\x62\x76\xb0\x37\x23\xb8\x03\x14\xcb\xbc\x9c\xee\x76\xd6\xdc\x71\xd8\x08\x91\x69\xe0\x26\x11\x81\xdd\x95\x36\xa1\xf8\x1b\xab\x61\x64\x8e\xcb\xb5\xef\x42\xb5\x82\x8a\x8b\xca\xe5\x74\x11\x24\x95\xa3\x6e\x02\x16\xae\xbc\x9a\xee\x1e\x2a\xee\x4d\x61\x04\xc0\x5d\xdc\x5b\xdd\x08\xe4\x37\x70\x51\x59\x04\x5c\xe0\x8f\xd5\x8e\xe1\x39\x0b\xea\xb9\x09\x0f\x9d\x5b\x0d\x43\xd5\x9d\xdc\x17\xd6\x08\xe2\x89\x52\x2a\x8b\xc0\x75\xdd\x1c\xe9\xd0\x08\xc0\xa0\x27\x3f\x07\x82\x3b\x94\x56\x0f\xeb\x31\x02\x56\xe5\x23\xae\x37\x60\x2b\xfb\xe1\x3b\x6a\x79\xdd\x25\x0f\x63\x37\x02\x27\xb8\x83\x5f\x8b\xd0\xd9\x2f\xfb\x13\x38\x0d\xc7\xa9\x33\x82\xa3\x69\x22\x2a\x8b\x80\xb3\x80\xef\x97\xb0\xe6\xc5\xfd\x69\x45\xa0\x1d\x3e\xc8\x61\xc5\xd4\xb8\x8f\x61\x59\xde\x6e\xd9\x19\x3e\x23\x80\x41\xe8\x20\x06\x22\x5c\xe8\x45\xd2\x26\xdc\xf0\xf1\xbb\x0c\x2c\xf5\xb9\xc7\x4d\x90\x3e\xd0\xd5\x5d\x46\xc0\xef\xc3\x55\x77\x46\x78\x3d\x24\x60\x8f\xd8\xcb\xcd\xfa\xbd\x81\x81\xc1\x11\x41\xca\x72\xf1\x6a\xed\x1b\x8f\xc1\x75\x7d\xec\xa6\xe3\x8d\xe5\x90\x78\x22\xe0\x2b\x1d\x76\x2d\x84\x8c\x78\x5c\xbb\x08\x40\x0e\x1e\xab\x50\xe2\x6a\x9b\x63\x0e\x19\xc1\x7d\x2e\xf3\x2a\x63\xad\xd3\x5a\x36\xa1\x23\x76\x6c\x82\xd8\xca\xe6\x20\x06\x22\x10\xa5\xbd\x67\xce\x45\x65\x57\x61\x94\xed\x16\x15\xeb\x6e\x87\xdb\x15\xf7\xcc\x8d\x44\x08\xfa\xf1\x95\xe1\x7a\xeb\xaf\x0c\xa2\x88\x7b\xda\x04\x60\x57\xca\x57\x06\x8e\xf6\x5f\x19\x58\x3e\xce\x7c\x6c\x02\xd1\xd1\xa1\xfc\xf9\x02\x0b\x6e\x9d\xca\x79\x0f\xa7\x5b\xa7\x5c\xa9\x26\x02\x72\x63\xda\xfd\x5a\xe8\x31\x79\x13\xd8\xc3\xe7\x47\xc0\x69\xe8\x5c\x1b\x61\xb8\x22\xaa\xee\x7e\x81\x02\xe9\xf8\x05\x22\xe0\xda\x18\xbe\x4f\x58\x5e\xed\x7b\x03\xc7\xb4\xaf\xa3\x2f\xf0\xff\xdf\x1b\xaf\x87\xc3\xee\x32\x10\x41\xdc\xbb\x44\x04\x07\xc2\xde\xed\x18\x1c\xc7\x5f\x19\xc3\xbd\x80\xf7\x80\x0f\x0e\xfd\xf6\x15\xaa\xf1\x6d\x5f\xf7\x59\x80\xf1\x58\x6f\x4c\x17\x51\xeb\x2a\xc3\x8f\x9f\xba\x57\x13\xa0\x35\xa5\xef\x31\x5d\x40\x13\xf5\x23\x60\x15\x6a\xdf\x27\x04\xec\xed\x25\xea\xf8\xbf\xee\x1a\x21\x82\x5b\xdc\x57\x5f\xa6\x3b\x71\xf4\xfd\x89\xa3\xfb\xee\x2d\x4b\x26\xa5\xbc\xee\x9a\xe0\xba\xde\x1c\xcb\xee\x4b\x71\x97\xb1\x5d\x06\x06\xbe\xb8\x8f\x41\x6e\xc5\x1c\xf7\x78\x10\x20\x5a\x16\xeb\x11\x16\x8e\xa1\x07\x21\x97\x85\x9b\x5f\x8f\xba\x3b\x87\xbe\xc7\x39\x5b\x11\x60\xfe\xf6\xde\x41\xd7\x5b\x1c\xfd\xcd\x08\x58\x62\x8f\x7d\x74\xb8\x6f\x51\xfd\x3a\x87\x97\x6a\xdc\x67\xc9\x7c\xe1\x89\xfa\x2e\x03\xf5\x8e\x87\xf6\x8a\xc0\xf1\x93\x3f\x82\xc3\xa6\xad\x05\x33\x71\x03\x72\xad\xbf\x08\x00\x89\xed\xa3\x94\x78\x87\xe4\x82\x9f\x08\x1e\xfe\xf9\xbd\xe1\x9e\x21\xbb\xe9\x83\x05\xb3\xcf\x12\x4f\xec\xe1\x88\x31\x65\xe1\xf7\x27\x0f\x75\x2e\x71\xa1\xbd\xb8\x0a\xb1\xc4\xcd\xc8\xfa\x7d\x15\xdd\x80\x93\x1d\xe9\x50\x04\xbc\x65\x61\xec\x8d\x10\x58\xeb\x88\xfd\x22\x20\xf9\xa4\x8f\x80\xe7\x6f\xde\xb5\x44\x42\x3e\xc3\x47\xc0\x0f\xc6\x8f\xf4\x95\x03\x20\xbb\xda\xde\x08\xe0\x9f\xc4\x63\x57\x0b\xb3\x16\xfc\x5a\x88\xae\x33\xaa\x61\x37\xdd\xfd\xd9\xe3\xb9\x09\xdd\x85\xfa\xf5\x09\x76\xf8\xb6\x36\xd0\xc6\x56\x2f\x7b\x3c\x38\xb0\x93\x87\x17\x89\xa0\x33\x7e\x31\x27\xd1\x1d\x4a\x73\x0c\x7d\x13\xe8\x7e\xd8\x9f\x80\xe9\xea\x46\xe4\xb2\xe0\xc2\xab\xc3\x6a\x18\x01\xe9\x7a\xdd\xce\xd1\x5d\x2c\x53\xfd\xde\x78\x71\x28\x6d\x6b\x3c\x80\x2c\xcd\xd1\x97\x43\xf4\x75\xda\x16\x47\x9c\xde\xa7\xb2\xb4\x11\xb7\xcb\x82\x83\x4e\xae\x61\x17\x81\x79\xf1\x6d\x9a\xdc\x8e\x96\xa3\xdf\x24\xc9\x35\x75\xc9\xdd\xa2\x8c\x00\x66\xa7\x6b\xea\x44\xc0\x2b\xb3\x6f\x02\x87\xb4\xc3\x73\x95\x85\xdc\x9c\xcb\xb1\x0b\x1d\x8e\xf7\xf7\xbd\xc1\xce\xf6\xb9\x4d\x0b\x8e\xca\x05\xbf\x92\x9c\x8d\xaa\xee\x7f\x62\x84\x13\x4d\xee\x2e\x14\x5e\xb5\x95\x63\xf5\x96\xb4\x01\xa9\xc7\xf6\xe7\x0b\x2c\x6d\x1c\x32\x3f\xf5\xd2\x72\x08\x73\xa9\xd0\x08\x40\xa0\xba\x4d\xde\x08\x1e\xc4\xd4\xd6\x70\xc2\x30\x65\x07\x7c\x2d\xc9\x9d\xb9\x92\xdb\xa0\x4b\x5a\x28\x74\x6e\xd0\x2a\xd9\x37\x53\x72\xe5\x9e\x11\x08\xad\x77\x89\xdf\x08\xf0\x8b\x6e\x06\x28\x0b\x76\x38\x75\xdf\x6e\xd9\x45\xc3\xec\xe8\xda\x46\x00\x98\xcc\x7d\x95\x44\xe0\x2c\x71\x36\x35\x3b\xf4\x49\x8e\x65\x13\x06\x66\xfc\xba\x3f\x19\xa0\x5a\xfb\x79\x94\x5f\xb2\xae\xb7\xea\x73\x94\xdf\xd7\x71\xc8\x8e\xb6\x09\xf8\x8e\x38\xbf\x28\xed\x1e\xb5\xe4\x45\xc0\x13\xa9\xa7\xfd\x06\x08\x18\xee\xf6\x52\xb2\x23\x0b\x54\x97\xd6\x8d\x00\x07\x55\xce\x55\x2d\xa7\x6f\x0d\x5e\x6d\x71\x77\x82\xea\x21\x6c\x65\xf9\x7f\xa5\x25\x0a\x95\xe5\x19\xe2\x18\x57\x65\xe1\x66\x36\x87\x93\x31\xc2\x70\xb4\xa5\xbc\x08\x8a\xf3\xc9\xb1\xef\x37\x26\x6e\x89\x79\xbd\xe1\xfe\x5f\x0e\xad\x55\x16\x12\x66\x5a\x32\x49\x59\x01\x37\x8e\x02\x6f\x04\xb1\x76\xdd\xc3\x58\x44\x20\x9b\x5b\xfb\xde\xc0\x0f\x6d\xb7\x74\x65\xc7\x40\xbf\x61\x84\xec\x17\xd8\xea\xbe\xa3\x58\x7a\xf2\x26\x23\x74\x12\x48\xa4\xdd\x0e\x00\x70\x3d\xa7\x98\x08\xa8\xbb\xfc\x02\x2b\xee\xdf\xdf\x1c\xca\xd9\x08\x89\xed\xb6\xdf\x70\x13\xf1\xda\x5d\x65\xf9\x09\x3b\xd0\xaa\x11\x7c\xad\xfb\xf1\x53\x5d\xde\x6c\xee\xd5\x61\x04\x5c\x23\x16\xdb\x5e\x3d\xbc\x28\xad\x86\x55\xf7\xb6\x69\x9e\x30\xcd\x08\x12\xd9\x8b\x87\x6d\x1b\x01\xa4\x70\x57\x44\x89\x00\x7a\xab\x9f\xf1\xd5\x63\x37\xaa\x03\xe0\x96\xea\x01\xf7\xc5\xbd\x32\x8d\x40\x38\xbd\x1b\x09\x8d\x40\xbe\xb8\xf2\x11\x2e\xaa\xf5\x9b\xb5\x3a\xd8\x7a\xf7\x3c\x2f\x46\x78\x70\xf4\xed\x9b\x40\x3a\x57\xcf\x06\x57\xea\x32\x88\x7f\x85\x92\x46\xa1\x39\xb6\xba\x11\x40\x28\x72\xdb\xa4\x11\xe0\x44\xdd\xb3\xba\x34\x4f\x2c\xd0\x3c\x96\xcc\x08\x0d\xdb\xb5\xdf\x35\x6d\x47\x12\xc6\x4d\x80\x35\x75\x40\x60\x11\xe8\xad\x1f\x06\x6d\x05\xa8\x79\x2e\x02\x11\xd0\x3a\x62\x11\x16\x81\x20\x1b\x3f\x9f\x9b\x23\x69\x35\xc7\xdd\x35\x42\x00\x66\xd7\x2f\x9f\xe6\x52\x6d\xad\xbe\x5f\x9a\xdf\xbd\xc9\xe3\x48\x8d\x80\x17\xf3\x3a\x50\xda\xfb\x92\xdc\xab\x7c\xb5\x74\x0a\x8d\x9b\x00\xf8\x8f\x9b\xdd\x8d\x80\xbb\x49\xfa\x0a\xbd\xd9\x51\x65\xbf\x01\xd4\xb7\x9b\x55\x8d\x00\x0b\xb4\x34\x75\xcd\xfd\xad\x93\xc3\x38\x1a\x21\x7a\xb5\xab\x61\x2b\x10\x63\x37\x4c\x09\xae\x4d\x22\x5d\xdd\x77\xfb\x8a\x83\x4e\x8b\xe0\x31\xb1\xdf\x1b\x85\xeb\x64\xd7\x72\x3b\xbb\xff\xbd\xe1\xba\xa6\x35\x73\x1e\xcd\xe0\xd0\x7c\x46\x98\xa8\x54\xff\x15\x09\x6c\xb9\x6a\xb5\xde\x56\x37\x3c\x45\x94\x07\xef\x19\x61\x00\xa2\xe5\xb2\x78\xf7\x4c\x4c\xc5\x4d\x8a\x46\xf0\x4b\xd0\xcf\xc5\xfe\xbe\x8f\x87\x29\xa4\x4d\x60\xbb\xf9\xc4\xf7\x77\x1c\x00\xc6\x95\x55\x06\x22\x6f\x75\xad\xbf\x11\x90\x3d\x3d\x6a\xc5\x08\xd9\xc3\x14\xda\x22\xb8\xc3\xbf\x33\x5d\xf7\x4b\x1e\xfe\x7e\x7a\x4b\x6f\x37\x8a\x15\xb7\xc6\xd8\x09\x16\x88\x4a\xf0\xbb\xf7\xf5\xd3\xa6\x78\x20\x43\x19\x2b\xe8\x3d\xf8\xb6\x1f\xce\x52\x55\xd7\x94\x97\xe9\xf0\xc7\xd5\x7d\xb7\xea\xe9\x41\x5d\xd5\x21\xcc\x6b\xd8\xf6\x09\xa4\xa7\x5a\x1d\x6c\xbd\xb8\xf1\xa5\x0e\x77\x61\xcd\x2d\x6d\x02\xa1\xac\x0e\x67\x21\x82\x0a\x8d\x4c\x83\x08\xf8\x28\xb4\x4d\x20\x8b\x92\x07\xaa\x8a\xe0\xf9\xaf\xce\x45\x48\xe0\xed\x30\xea\x46\x20\xf5\x87\x6f\x15\x23\x74\x80\x1e\x39\xc1\x8d\x80\x7f\x81\xbb\x8c\x19\xe1\x71\xaf\x8e\xb0\x08\x8e\x62\x93\x56\x2d\xc0\xe3\x95\xbe\xfb\x82\x13\x47\x71\x77\x7e\x11\x10\xb8\xf2\x6a\xba\xeb\xe3\x7d\xf6\x8d\xd0\x1d\x8e\x7d\xf5\x05\x5f\xc7\x65\x9a\x15\x01\x91\xec\xab\xf6\x75\xbb\x40\xdb\x04\xac\xe5\x61\xbd\xe1\xa0\xa0\x32\x39\x8f\xe3\x9c\xbf\x7f\x05\xe9\xe6\xc7\x61\x82\x46\x90\x6f\xcb\x38\x6c\x55\xc9\xe4\x37\x0e\x13\x36\xc5\xdb\x8c\xc3\x96\x45\x10\x40\xe8\x38\x80\x30\x10\x54\xd6\x38\xe0\x5e\x94\x51\x6d\x1c\xac\x6a\xe5\x5c\x1a\x07\xb8\x5d\x95\xda\xec\xb0\x8c\x72\x12\x1b\x07\xae\x5b\x12\xbf\xc7\x09\x96\xa0\x60\x3a\xc6\x19\xc6\xef\x5f\x45\x81\x22\xe3\x64\x53\x1d\xa7\xfe\xe0\x20\xd4\x76\x3e\x8d\xd3\xee\x72\x50\x94\xc6\xe9\x9e\x96\x45\x9f\xe0\x9f\x2e\xa1\x74\x9c\x88\xbd\x92\x83\xc7\x59\x1c\xac\xbc\xe9\x07\x0a\xa9\xd2\xed\x47\x3f\x7f\xff\x4a\xf2\xe3\x18\x27\x3e\x3e\x02\xc3\x1b\xa7\x1d\x34\x51\x5a\xef\x71\xde\xf4\xab\xea\x07\xf9\xe0\x15\x04\x30\x4e\xb1\x00\x02\x93\x1c\xe7\x60\x28\x6c\xfb\x8d\xe0\xf0\x61\x9d\x1f\x78\x47\xd8\x39\x37\x82\x6d\xb9\x22\x1d\xec\x08\x76\x85\xc6\xa0\xf1\x0a\x76\xaf\x45\x21\xde\x8c\x80\x61\x51\xa9\x25\x47\xb0\x9e\x44\x61\xe5\x8d\xe0\x1d\xe1\x47\x23\x94\x20\xe8\xc7\xe5\x75\x74\xfd\x70\x39\x48\xb5\x5f\x36\xf6\x3a\xbf\x46\x00\x57\x5a\x3e\xc5\x23\xd8\x12\xd2\xf1\x31\xc2\x98\xbf\x7f\xd5\x03\x32\xe7\xa5\x74\x1d\x23\x1e\x74\xca\x4e\xae\x11\x01\xb0\x92\xe9\x7a\xc4\x78\xfd\xfe\x95\x14\x46\x35\x22\x8a\x65\x79\xb1\x8f\xa8\x5d\x76\x0a\x58\x64\x44\x58\x33\x09\xc6\x23\x32\x5b\x82\x77\x1f\x31\xd9\x02\x34\xe6\x72\xc4\xec\xde\xe8\x55\x3f\xac\xdc\x70\xa8\x76\x5b\x81\x49\x96\x97\x11\x8b\x97\xf4\x27\x39\x64\xc4\xea\x29\xa1\x54\x36\xac\x4f\x52\x71\x75\x5a\x71\x76\x40\x8c\x48\x62\x5a\xba\x1c\x61\xca\x0f\x3a\x73\x39\xfa\x93\x6a\x35\x69\x30\x46\xfe\x80\x96\x4c\xe9\x0c\x46\xc4\x33\xf2\x60\x94\x1e\x4f\x45\xa8\xfe\xbf\x1f\x7a\xd4\x88\xf8\xb0\xc4\x43\x6d\xd1\x8e\x3c\x4e\xcd\x5e\x7c\x9f\xdf\xbf\x50\x8a\x8f\x38\xbc\x30\x95\x8c\x87\xa9\x54\x6d\x23\x11\x5f\xa4\x18\xe3\x91\xb0\x56\x48\x1d\x34\x12\x51\xae\x0a\x80\x1e\xc9\x67\xc6\x58\x9e\x91\xce\x6a\xdd\x4c\xfc\x5f\x87\x51\x54\x35\x29\xf8\x5b\xa7\x7e\x38\x84\x8e\x75\x33\x61\x16\x53\x9c\xc6\x48\x09\x25\x42\x50\x01\x76\xed\x04\x1d\xaa\x23\x15\x94\xce\xdd\xba\x99\x6c\x94\xe3\x61\x27\xe5\x48\x95\x2f\xb4\x0d\x13\xd0\xc0\x52\xd5\x8f\x04\xc4\xbf\x20\x6c\x47\x5a\xa8\x3d\x6a\x32\x0b\x56\x08\xc2\x23\xd9\x30\xe7\x43\xa3\x94\x4c\xa8\xc2\xf2\x31\x32\xde\x24\xf2\x0c\x1d\x99\x4e\x2a\xa2\x6b\xe4\xe0\x3f\xa2\x7e\xc0\x02\x46\x7e\xb8\x37\xa9\xb5\x32\x4b\x56\x20\x07\xfe\xc8\xa0\xc2\x08\x9e\x71\x64\xfc\x98\xd9\x3d\x99\xab\x93\xe3\x30\xdf\x9e\x04\xdc\xda\x9c\xed\x58\x95\x47\xda\xc8\x36\xb1\xba\xc4\x46\xc6\x43\x4c\x5a\x94\x91\x25\x7d\x1d\xe2\x59\x47\x39\xbc\x76\x2b\xb6\xe0\xde\x29\x0c\x87\x51\x70\xbe\x16\x30\xdb\x28\xe5\xda\x2c\xc2\x28\xcd\x23\xf7\xad\x91\x85\xe5\x27\x6e\x62\x14\xf7\x8c\xd5\x29\x58\x2e\x67\x2b\xac\xf9\xe5\xf1\xd7\x8a\x7e\x94\xdf\xbf\xaa\x72\x8f\x8d\x32\xfd\x13\x6b\x7d\xd5\xc0\x1c\x4a\xcb\x35\xaa\x0f\x8c\xf1\xf8\xa3\x16\x7a\xac\xa3\xab\x92\x5a\x48\xae\xf5\xa3\x12\xf2\x7f\xda\xbd\x31\x2a\x76\x06\x71\xfd\xa3\xbe\xd1\xce\xe7\xaa\x3f\x4c\x3c\x1b\xf4\x7d\xc3\x9b\x40\x68\x54\xa3\xc1\xb1\x2b\x28\x63\xb4\xe2\x85\x59\x9b\x9b\xbb\x9e\x69\xfd\x37\xb1\x87\xa7\x2c\x18\xa3\x3b\x76\x81\x26\xa3\x17\x34\xda\x9a\xa6\x2e\x83\x4b\x96\x75\x6d\xf4\xea\xce\x01\xd6\x9d\xde\x1c\x6d\x52\xdf\x34\x22\x32\xb3\x4a\x23\x92\xf2\xf4\x1f\x75\x3b\x14\x8c\x8e\x37\xbb\x9c\x91\x46\x77\xfb\x69\x56\xd1\x8d\x4a\x35\x3b\x1d\x4f\xa0\xd3\xff\x22\x1e\x89\x25\xd4\x49\x5d\x29\xcc\xea\xd1\x51\xf3\xc8\x3b\x73\x74\x0e\x14\x65\x65\x1e\xbd\xc3\xbe\x68\xde\x3a\xb0\x2d\xa7\x6e\xc2\x7e\x91\x90\x8b\x02\x7c\x46\x35\x20\xfd\xf2\x08\x51\x15\xa0\x7b\x95\x70\xd1\xd1\xe1\xd7\x95\x02\x66\xf4\xdb\xbd\x1d\xf4\x0d\x71\x04\x72\xe9\x1e\x1d\xac\x97\x1a\xfe\x64\x2b\x1f\x1d\xe5\xec\xa9\xdb\xa9\x3b\xca\xbb\xe6\xbb\x3f\xf4\x42\xbb\xaf\xc3\xeb\x54\x4d\x7e\x97\xc2\xbf\x71\x30\x77\xe0\x9d\xa3\xae\xda\x8e\xc2\x50\xd0\x14\xa3\xbf\x5e\x9a\x5e\x43\xc5\x1b\x98\x3c\x42\xf2\x94\x48\x6a\x74\x60\x57\x02\x33\x09\x07\xc9\xb9\xd6\xe1\xdf\x15\x14\x3e\xba\x74\x5e\x55\x9e\x3e\xa3\x0f\x06\xa8\x6a\x8a\x50\x79\xc8\xbe\x33\x3a\x66\x29\x99\x83\x46\x77\xb7\xa5\xa0\xa2\xb9\xcc\xc4\x26\x8d\xeb\xc8\xdf\x85\x79\x1d\x8c\xa3\xc9\x80\xe3\x3a\x59\x4b\xda\x41\x17\x67\xae\x3c\x81\xc6\x45\x98\x41\x4c\xbc\x16\xf9\x4b\xd5\x0f\x5a\x90\xf9\xe6\xa1\x00\xd5\x83\xf6\x25\x8a\x45\xb8\x70\x41\x90\x0f\xdd\xb8\xf0\xb4\x95\x67\xdb\xb8\x80\x91\x96\xdd\x6b\x5c\x04\x1d\xcb\xed\x67\x5c\x64\xc5\x96\xcf\xcb\xb8\xc0\xf9\xe5\x0e\xba\xd0\x28\x44\xdd\xa7\x57\xf6\x56\xab\x1e\x04\x17\xd9\x3d\xc6\x45\xdc\xae\x40\x7d\xc6\x45\x0e\x57\xee\xa0\x2b\x7b\x69\xfc\x45\x87\x88\x74\xd0\xe3\xc2\xd0\x0f\xc7\x74\xe1\x7d\x20\x53\xe0\xb8\x00\x33\x92\x6d\x63\x5c\x95\xfd\x14\xd5\x6a\xae\xda\xc8\xf0\xba\xfb\x8f\x58\x98\xcb\x99\x93\xa8\xe6\xb0\x85\xa4\x64\x1d\x17\x5b\x28\x66\x35\x07\x18\x0f\x45\x4e\x8d\xab\xb3\x37\x1a\x3f\xc8\x1c\xaf\x1d\x70\xf9\x7e\xd2\x9d\x76\x01\x35\x1f\x3b\x3f\x48\x53\x2e\xd6\xf0\x22\x29\xa5\xfc\x5a\xc6\x45\x4c\x49\xa5\x6d\xdc\x36\x51\x2c\xdc\x05\x7b\x24\xf5\xd0\xb8\x30\xbe\x2a\xc1\xc9\xb8\x2e\xbc\xc2\xb4\x31\x2e\xdc\x29\xe4\x5f\x31\x2e\xdf\x90\x9d\x1f\x89\x7a\xd4\x02\xb0\xe0\x95\xe2\x7e\x5c\x38\x7d\x4b\x9d\x35\x2e\x72\x6c\xc9\xd3\x78\x5c\xa8\x8f\x94\x35\x6e\x5c\x0f\x8b\x22\xa9\x1e\x8e\x72\x2f\x0d\x51\x51\x61\x4f\xe3\xf2\x14\x4b\xba\xfe\x2e\x3c\xc5\x22\xb3\xf0\x7a\xd1\xea\xe9\xeb\x5d\xd0\x58\xbf\x9e\x6d\x57\xf5\xbc\xde\x1c\xfd\x40\x85\x21\xa4\xb5\x71\x01\x83\x95\x58\x96\xa0\xd6\xc9\xed\x7e\x5c\x28\x36\xaa\xce\xc8\xcb\xb7\x19\x5b\x66\x72\x60\xb2\x4b\xa6\x97\x66\x0d\xbd\x61\x13\xe5\xd0\x30\xee\x83\x73\x48\xbb\xe4\x46\xb2\x93\x23\xf0\xb8\x7d\x9b\x69\xea\xef\x93\x31\x90\xe8\x70\xe3\xe7\x83\xb4\x70\xe3\x11\x89\x84\x70\x07\xc7\x9a\x4f\xfa\xe1\xdf\xf0\xc3\x21\xe5\x55\x29\xc6\x12\x44\x84\x3b\x38\xec\xb9\xda\xe6\x09\x00\xc4\x02\xdd\x62\x4e\x03\x57\xed\x8d\x53\xa0\xf1\xf5\x7f\x38\x30\xef\x14\x7e\xff\xc2\xce\x32\x6e\xb1\x14\x51\x88\xbc\xe3\xfe\x5b\x76\xfa\x71\x27\x47\x38\xe5\x87\x63\xdb\xea\x35\xb6\xa0\x30\xed\xc6\x9d\xd3\xb6\xd8\x8e\xdb\xbd\x1d\xc5\xfa\xdd\x98\x3c\xaa\x96\xdf\x0d\xc3\x2b\xf0\xa6\x71\xcb\xd1\xfb\x10\xf4\xde\xb8\x2b\x8e\x66\x3a\x8a\x6f\xf4\x83\x42\x80\x18\x37\x17\xa4\xa0\x7f\xc7\x5d\x1d\xf6\x84\x1f\x6c\x1a\x46\x1b\xe0\x0d\x99\x88\xc7\x0d\xbf\x26\xb3\xec\xb8\x2b\xf9\x14\xb4\x83\xee\xea\x70\x00\xfc\x40\xf0\xd5\xf9\x72\xe3\x1b\xd9\x18\x46\xdb\xea\x55\x01\x94\xe3\x6e\x0e\x83\xa1\xd6\x78\xec\x58\xe0\x2d\x42\xcd\x68\x8d\x3b\xe2\x04\x5e\xa3\x4e\x5a\xd3\x3e\x68\xa4\x71\xbb\x2f\x96\xce\x8d\x1b\xd9\xbc\x69\xdb\xdf\x04\xf4\x2a\x6c\x78\xdc\x9d\x02\x28\xcd\x78\x79\x40\x0b\xc7\xdd\x71\x22\xd2\x01\x79\x5f\x5f\xb8\xe0\xb8\xc5\xf0\x9d\x72\xe1\x1e\xb7\xbb\xc1\xf8\x0f\x3c\xb3\x74\x22\xdd\xd7\x07\xe7\x38\x6e\x64\x5d\x85\xb1\x8d\xdb\x73\xac\xe9\x18\xbc\x4d\x58\x2c\xbe\x15\x10\x16\x95\x22\x79\xdc\x48\xe9\xc2\x0e\x1b\xf7\x8d\x13\x26\x3f\x38\x0e\x32\x3b\x86\xe3\x40\x21\x96\xe3\x06\xc1\x43\x0a\xdf\x71\x93\xd6\x46\x51\x5d\xe3\x36\x69\x33\xc3\x58\xdd\xc0\x7a\x28\x32\x6b\xdc\x8f\xc7\x38\xf0\xfd\xfc\xfd\xab\x75\x16\x21\x8e\xfa\x99\xb2\x5e\x8f\x0f\xd4\x68\xea\x00\x89\x4a\xca\x3d\xee\x97\xc6\x48\x64\xbb\x5f\x6f\x0c\x7f\x61\x9c\x75\x66\xdc\x26\xd2\xb7\x46\x95\x24\x6a\xcb\xf4\x79\x60\xab\x2a\xfc\x38\x7f\xaf\x50\x99\x71\x0f\x8f\x9b\x51\x61\xc3\x53\xd0\xa8\x1a\x30\xf1\x33\x9b\x7c\x3a\x62\x91\x46\x63\x52\x80\x36\x39\x38\xdc\x2d\x8b\xd3\x50\xe8\x73\x11\x84\xe7\x90\xef\x60\xe0\x38\x25\x25\x25\xfe\xae\x03\x6d\x2f\xe6\xa3\xf1\x18\x07\x5e\x9b\xee\x5b\xb7\x09\xc9\xb9\x70\x60\x4b\xc5\x55\x70\x3c\xee\x6c\xa6\xcb\x17\x3d\x12\x1e\x81\x83\x0c\xe9\x24\xfc\x19\x64\x47\xc7\x47\x6f\x3c\xeb\x5a\x56\x2b\xc1\xdc\x91\x16\x72\x3c\x78\x46\x22\x80\xe1\xf8\x8f\x2b\xcf\x70\xa7\x7f\xe1\xcb\x0e\xb2\x5a\x36\x65\xb5\x1c\xe4\x87\xc8\xb2\x9c\x8c\x27\xbb\x7d\x47\x0d\xcd\xee\xa3\xa5\x16\xe4\xfb\xf7\xaf\xae\x6c\x54\x43\x01\x7f\x31\x52\x4b\x71\xf6\x57\xb5\x70\x8a\x74\xad\x99\xa7\x7c\x06\xa8\x81\x77\x1b\x86\xa3\x41\x5a\xf6\x1a\x75\x40\x91\x19\x20\x2b\x77\xc0\xf0\xe8\x27\x61\x3f\x0d\x8c\x9b\xad\xc4\x3f\x85\x10\x0c\x00\x44\xb3\x42\x80\x86\xe7\x78\x97\x83\xc4\x78\x3a\x05\xea\xf0\x79\xb8\xcb\xe5\x58\x3c\x3c\x93\xae\x62\x34\x07\xb1\xc8\x59\x28\xf5\x83\x28\x52\x1c\xc5\x07\x20\xce\x00\x30\x8f\xc7\x13\x41\xe8\xee\x7b\x1c\x99\x47\xbc\xe3\xe3\x91\xda\xaa\xe6\xf2\x7c\x74\xfa\x1e\x94\x4d\x39\x74\x0c\x72\xf3\x12\x9c\x3d\x40\x28\x00\xae\x64\x60\x62\x6d\x0a\x0c\x1b\xc0\xc9\x35\xd4\x65\xc0\x96\x92\x9c\x77\x10\x05\x51\x04\x7a\x3b\x5e\xcf\x3c\xae\xb5\xff\xca\x07\xaf\xa0\x78\x21\xec\xb5\x48\xcd\x37\x00\xa6\x21\x9b\xed\x78\x4f\x94\x5b\xda\x22\x2f\x1e\x97\x02\x61\x1b\x9e\x1e\x48\xe0\x4d\x83\xfc\x6d\xe0\xb3\x8c\x17\x58\x88\x83\xb6\x9d\xb4\x5a\x6b\xd4\x83\xc4\x04\xa2\x35\x88\xe5\x12\xfc\xc8\xf0\x30\x2e\x05\x01\x0c\x42\xb8\x48\xb7\x3c\xde\xe0\xb9\x97\xd5\x03\x00\xec\xd0\xd1\x60\x70\x68\xf2\x67\x1b\x6f\xf4\x9c\xbc\x6a\x40\xf4\xe0\x72\x7e\xdc\x1b\xe1\x70\x60\x90\x23\x1d\xd3\x20\xd5\x47\x41\x2f\x41\x98\x18\x78\xd2\xe3\xcd\x5f\x38\xc5\x78\xed\x42\xeb\xc2\x71\x1a\xa4\x99\x27\x83\xc4\xc0\xbb\x9d\x28\x97\x01\xfc\x5c\xe1\xc8\x93\x15\xab\xc8\xb5\x6a\x80\x11\x42\x32\xce\xf1\x22\xef\x29\x80\x64\x60\x60\x8d\x72\x60\x1d\x04\x90\x25\x9f\xd0\x15\x3f\xa3\xae\x79\xc4\x92\xce\xbf\xd7\xe3\xf7\xc5\x33\x81\x14\x02\xf4\xf6\xc0\xad\xae\x04\x8a\x7e\x1d\x94\x5b\xa5\x8d\xfa\xfb\x57\x54\x7c\xc9\xc0\x5b\xb3\x21\x28\x11\x2c\xd6\x90\x80\xb0\xcc\xba\xce\x69\xb8\x32\x4d\xbd\x71\x50\x32\xe4\x1c\x54\xb3\x0d\x01\x66\x78\xd0\x9f\x6e\x3d\x10\xa8\x49\x00\x39\xf0\xc9\x4f\x6c\x73\xdc\xd5\x08\xb2\x1f\x44\xaa\x72\xd3\xae\x88\x0a\xb1\x69\x58\x09\xf0\xc3\x19\x03\x05\x0e\xb2\xc8\xf0\xdc\x1f\x3a\x1b\x01\xa9\x6e\x88\x12\x63\x61\xeb\xa9\x35\xb6\x0f\x3b\x1c\x3e\x9e\x64\x38\x39\x0d\x12\xbe\x67\x21\xb3\x0d\x07\x40\x8a\x94\x4c\x5e\xf7\x68\x7b\x7f\x46\x04\x5e\x0d\xf4\x8c\xc8\xb8\x1a\x9b\x19\x49\x6f\x24\x0f\xa9\x19\x6f\x44\x9e\x43\xdf\xb8\xd8\x67\xbc\xc2\x8c\xc3\xdd\x9c\x55\x00\xe8\x4d\xd2\x8c\xce\x08\x72\x53\x6c\xfc\xa0\xe8\xaa\xd7\x24\xf6\x55\x81\xc4\xcd\x74\x78\x3d\x87\xfd\x38\x69\xa8\xb1\x31\x13\xed\x58\x15\xe7\x31\xd3\x49\x3d\x27\xaf\x91\x09\xcf\xd8\x90\x99\x4e\xea\xb1\xc5\x36\xd3\x89\xe8\x7b\xaa\x68\x24\xbd\x16\xf4\x4d\xa0\x0b\x7f\xcc\xdb\x3f\x93\x4b\x7e\x41\x05\x46\xdc\xc9\x8b\x7e\x24\xea\x4d\xaa\x17\x04\x16\xa5\xe6\x9e\x09\x73\x4f\x4b\x6a\x78\x19\x3b\x6a\x64\x26\x71\x80\x35\x68\xb4\x12\x91\x40\x62\x25\x66\x5a\xb9\xce\x55\x34\xc6\x0e\x29\xab\x27\x1a\x3b\xb2\xa0\x4f\x34\x76\x35\xd0\x1c\xb2\x9f\x2b\x6e\x73\xa6\x86\x7d\x36\xab\xe8\xee\x09\xe3\x34\x5a\x1d\xfb\x54\xe2\x87\xbf\xa6\x56\x13\xae\x13\x68\xf5\xe5\x2d\xd0\x0f\xd0\x7a\x15\xc4\x3e\x13\xf9\x01\x62\x55\xa5\x2f\xe9\xa2\xba\xea\x19\x1e\xe1\xac\xd2\x86\x67\x52\x52\x3d\x20\x1f\x37\x4d\x78\x02\x24\x4a\xea\xd8\x99\x86\xe7\x00\xd1\xe8\xe0\x85\x21\xdb\xd9\x4c\x9e\x67\xaa\xa9\xdb\xc4\x91\xcb\xf0\x34\xd3\x74\xe3\xb3\x0a\x70\x41\xe7\x50\x0b\x40\x63\x88\x8c\xf5\xf4\xd9\xb7\x02\xf2\xe1\x82\xb5\xbd\x96\xab\xe3\x56\x59\xdb\x32\xe1\x64\xf2\x51\x9d\x99\x2b\x8a\x4a\x33\x37\x91\x72\x14\xcc\x0c\x13\xa9\xc4\x74\x33\x73\x13\xc9\x35\x78\x66\x4f\xcf\xa8\x55\x96\xdd\xa3\x4a\x73\x9a\x61\x1c\x15\x99\x35\x33\x51\x48\xca\xd6\x3f\x33\x8c\x9f\xa0\xb4\x66\x86\xd9\x53\xa2\xa6\x99\xb1\x46\xe8\xaa\x9f\x79\x78\x70\xae\xbe\x81\xf1\xd2\x5d\x3a\x4b\x44\x2c\x30\xfe\x66\x96\x08\x47\x60\x5c\xcc\x2c\x80\x0c\x29\x70\x74\x16\xd6\xa8\x4e\x81\x59\x92\xab\x44\xf4\x17\x16\xac\xd2\xad\xce\x92\xfc\xb5\xa4\x1f\x9a\x53\x81\x35\xcf\x42\xd4\xba\xbc\xa2\x67\x61\x5d\xcb\xb1\x6d\x16\x90\x81\x95\x54\x7b\x96\xec\xa9\xf7\xf5\x1a\xde\xd8\x51\xab\xb7\x54\xe7\x70\x54\xe9\xe5\x2a\x39\xfd\xc5\x3a\x27\x06\x73\x16\x9b\x6b\x05\x05\xce\xc6\x75\xc7\x46\x6a\xe4\x4e\x62\x23\x35\xcc\x82\x6c\xa4\x4e\x40\x84\xe0\xa1\xe7\x75\xd8\x05\x63\x27\xed\xbc\xec\xcc\x20\xbb\xe6\x44\x05\x54\x1a\x7f\x08\xee\xdd\x6e\x2d\xbc\xc0\x5b\x11\xce\xd0\xbc\x40\xcb\x12\x10\xc4\x04\x83\x32\x49\x09\x3d\x07\x59\xeb\xa4\xab\x9e\x9c\xfb\x49\xaa\xe6\x89\x2f\x74\x92\x46\x7a\x92\x1a\x3c\x0a\x9a\x66\x72\xee\x6b\x61\x90\x73\xc0\x8e\xf6\x89\x91\x3d\x4a\xbd\x30\x01\x34\x88\x52\x22\x4c\xa2\x6f\x62\xe5\x63\x1b\x39\xb9\x4d\xce\x29\x61\xfc\xe0\xbf\x01\x5d\x7c\xd0\x0f\x2d\xfe\xa4\xff\x26\x7b\xbb\xeb\xbf\xf9\xf7\x2f\x41\x9e\x4e\x42\x34\x8c\x27\x98\xd3\xe3\xfe\x34\x11\x80\x1a\x18\x0f\x3d\x15\x89\x15\xbc\x6c\x9b\x11\xad\x70\xc1\x67\x2b\x4d\xce\xc4\xbb\xe5\xf8\xaf\xe2\x75\x88\xff\xfd\x38\x54\x80\x80\x94\x6a\x13\x9c\x1c\x8d\x0d\xa9\xfd\x34\x32\xd3\x18\x21\xce\x37\xa1\x63\x29\x40\x7e\x4e\x63\x82\x14\x46\x3a\xc9\x2b\x74\xa8\x04\x3b\x92\x95\x3f\x67\x92\xe4\x3b\x56\x06\xc2\x16\xb7\x8f\x89\x96\x76\xac\x74\x59\x4b\x3b\x4a\x79\x32\x49\xaf\xa2\xe9\x04\x23\x41\xbb\x0c\xec\x3e\x9d\xf1\x53\x7a\x31\xbb\x32\xa7\x22\x08\x85\x15\x31\xf1\xc2\xd5\x8d\x00\x6a\x4f\xd2\xad\x38\x49\xe2\xa5\xf3\xc5\x71\x9d\x0e\x9d\xcb\x73\x68\x98\xf9\xaf\xbc\x09\x8e\xfe\x3f\x7b\x27\xfc\xf3\xfa\xb7\xff\x67\xfc\xf5\x73\x1c\xd6\xb3\x9f\xe3\xd0\xbd\x6d\xbf\x4d\xa0\xb5\x47\xb4\xc2\xc2\x5f\x3f\x47\xb4\x13\xfa\xe7\x88\xd7\xf9\xfb\x57\xb2\xd3\xe2\xd0\xed\x6b\x8f\xfe\xfb\x97\x3c\xa8\x0e\x5d\xb4\x3f\x47\x7c\x64\xf8\xb4\x72\xe2\xc3\x3b\x26\x5d\x2a\x02\xe5\x48\xa7\x6a\x4a\x5a\xaa\x51\x81\x97\x87\x4c\x4c\x3f\x47\x8a\x4e\xb3\xd2\x53\x84\xc6\xda\x13\x2f\x14\x0e\xbb\x53\xed\x01\x5a\xae\x28\x0f\x14\x9c\x11\xff\xfa\x09\xa7\xf1\x21\xf6\xe8\xbf\x7f\xe9\xe4\x08\x67\x85\x62\xd7\x92\xbc\x9b\xc3\x69\x92\x81\x3d\xea\xef\x5f\xca\xeb\x1f\xce\x5b\x25\x9f\x3a\x1a\xa3\x36\x5d\x08\xc6\xe2\xda\xe3\xb2\xb9\xb0\xb7\x64\x2e\xb5\x87\x7d\x67\x63\x10\x22\xef\x44\xd2\x71\x5b\xfd\xf1\xbd\x44\x79\xfd\x24\x48\x7f\xfd\x84\x74\xa8\x05\xba\xde\x15\x5a\x19\x12\xad\x4c\xd6\x4a\xe1\x83\x07\x5d\xae\xf6\x78\x4d\x0e\x37\x4a\x2e\xaf\x51\xb2\xdd\xc7\x72\x90\x0d\xd9\x98\x59\x7b\x44\x93\xce\x6c\x44\x72\x83\xd2\x6c\x53\x76\x51\x6c\x91\xd8\x23\xca\xfc\xfb\xd7\x4f\x18\x4d\xad\x26\x16\xbf\x0a\xaf\x3c\x08\xda\xd4\x1e\x2f\x34\xeb\x8b\xfc\xf0\xed\xf1\xc2\x54\x59\x69\x8a\x93\xb7\x47\x85\x66\xdf\x6a\xdb\xdb\x23\xfe\xfe\x25\xc8\xa0\x30\x8f\x06\xe5\x36\x11\x9a\x77\x1e\x28\xe3\xf7\x2f\xe1\xea\x84\x69\xcc\x91\x3d\x9a\x31\xda\x41\x94\x29\x8a\x2d\x3d\xb9\x49\x04\x39\x64\xd9\xa3\x18\x45\x25\x07\x4a\x36\x89\x5a\xe2\x5a\x90\xef\xfb\x4f\x90\xab\x96\x10\x32\xc2\x8c\xb4\xc7\x64\x6b\x89\x64\x61\x46\xca\xb1\xf5\x24\xfd\x44\x50\xd0\xae\x3d\xac\xf6\xac\xba\x62\x87\x72\xd9\x3b\x50\x68\xb3\xed\x53\x71\xe8\x61\x26\x8d\xe5\x34\x19\x44\xfc\x73\x98\x89\x5e\x98\x18\x2e\x26\x38\xcc\x44\x7b\x8c\x49\x96\x7a\x3a\xcc\x9c\xa0\xb4\xdf\xbf\x2a\x7d\xcf\x17\x14\xfb\x2a\xa9\x1c\xdb\xe0\x3f\x41\x9b\xbb\x51\x7b\xa1\x64\x3b\x5e\x75\xe3\x84\x59\x68\xa1\x2d\xdf\x56\x54\x72\xa5\x3d\xb6\x54\xa4\xcf\x08\x02\x57\xb1\x47\x93\xf5\x57\x05\x55\x2a\x93\x08\x7e\x68\xdd\x28\x58\xed\x27\x90\xfb\xe4\x08\x1a\xa2\x46\x51\x52\x96\x29\x1b\x69\x98\x8d\xb7\xa4\x18\x13\xb6\x4d\x98\x9d\xb7\x24\x3c\xcb\x9c\x1f\xe4\xc0\xff\x13\xa6\xb8\x10\x31\x55\x61\x5e\x0c\xb7\xc4\xe5\xc8\xdc\x5e\x8c\x37\xb8\xd6\x4d\x5d\x36\x56\xc5\x1e\xe0\xa4\xab\xf5\x17\x63\x67\xbb\x2e\x1c\xbc\x75\xd3\x7a\xf9\x0f\x48\x03\x15\x04\xed\x62\x8f\x53\x9e\x24\x5a\x5e\x0f\xed\x7a\x4c\x4e\x3a\x18\xe3\x87\x95\xf2\x5c\xbf\x7f\x45\x69\x1f\x83\x12\xa7\xda\x63\x9a\x34\x55\xf4\xe1\x4b\x59\x26\xa1\xa5\xc8\x62\x79\x69\xfd\x6b\x57\xbd\x12\x5f\xc4\x43\x2b\x3c\x1e\xba\xd4\x8c\x11\x88\x87\x5d\x5e\xf6\xa8\x9c\xee\x49\xb4\x06\xad\xfb\xde\x8f\x87\xdd\x5f\xf6\xc0\xeb\x5f\x94\x07\x0a\x90\x53\xa2\x0c\x28\x44\xb4\x1a\x45\x27\x62\x3c\x64\x1a\x32\x41\x22\x1e\x76\xa9\xdb\x43\x03\xca\x3b\x2f\x14\x80\x87\x8c\x12\x68\xa3\x1d\x40\x12\xda\xe2\x11\x69\x8f\xad\x68\x85\xde\xdb\xc8\x88\xd2\xb9\xd9\x8b\x7a\xd2\x6f\x68\x62\x73\xca\xa1\xd2\x3b\xa5\x23\xde\x2a\x0a\x3b\x1e\x17\xdf\xca\x57\x33\x36\x7a\x33\x79\x6f\xfa\xb5\xd6\xff\xfa\x89\x27\x23\x73\x5a\x3b\xc4\xb9\xc4\x53\xf3\x15\x4f\x29\x1e\xab\x7c\x8d\xa3\x3c\x5b\xec\x01\x4b\x64\xab\x32\xca\xc1\xc5\x1e\xb4\xc4\x78\x9b\x78\x6a\xca\xe2\x49\xe2\xd4\x62\xeb\x32\xc6\xa6\x11\x8b\xcd\x6e\x72\x13\xce\x62\xec\x1a\x55\xb9\x56\x28\x34\x34\x0d\x1b\x18\x7b\x4c\xdb\x19\xcd\x28\xb6\x21\xed\x11\x7f\xff\x92\x4b\x5f\x52\x78\x93\x3d\x92\xb1\x5f\xc6\x12\x24\x49\x93\xf6\x78\x74\x1f\x17\x91\x5e\x48\x8c\xb4\x3e\x54\xe3\x93\x20\x5c\xe5\x01\x97\x04\x7c\x6c\x0f\x3b\x96\xb6\xd7\x08\x97\xe9\xff\xdf\xfd\x9a\x84\x48\x62\x8f\xfa\xfb\x97\x0c\x11\x49\xe1\x47\xf6\x48\x46\xb1\x9a\xa7\xd6\x41\x12\xec\xab\xbc\x56\x93\x62\x74\xec\xa1\x7d\x9b\xf5\xd2\x54\x5b\x84\x6e\x84\x87\x75\x66\x8d\xe5\xc3\x79\xa3\x6e\xa4\x12\x45\xb2\xe3\xa5\x6a\xb5\xe6\xe3\x0e\x22\xdd\x76\x2f\x28\xc8\x2e\x9f\xc6\x86\xd9\x43\x86\x7c\x19\x42\xb3\x9c\xa6\xec\xa1\x4b\xdd\xd8\x88\x7c\xda\x72\xb6\x87\x0e\x14\x99\xb9\xf2\x19\x5e\xd1\x14\x6a\x1c\x84\x39\x9f\xe5\x56\x65\x0f\xdc\x22\x4e\x7d\x1b\x2b\x34\x3b\xd5\x64\xd7\xcb\x67\xe1\x53\xbb\xd6\xa4\x24\xca\x67\xeb\xa2\xd8\x59\x24\x0f\xa9\x2c\x77\x29\x7b\x18\x2f\xa3\xe4\x7a\xf9\xbc\x69\xac\x3c\x72\xa5\x1b\xca\x5a\x61\xf6\xd0\xf1\x1c\xf4\xe1\xa4\xa8\xa9\xa2\xf2\x5f\x3f\x59\xde\x52\xf6\x90\x7a\xb7\x89\x52\xa0\xd8\x5d\x60\x5c\x78\x0e\x36\xe4\xf6\x08\xbf\x7f\x29\x51\x58\xe6\xee\xcf\xba\xfb\x4f\x39\xe2\xe4\x10\x35\x80\xc1\xee\x96\x22\x07\x96\x1c\x74\x8a\xe7\x90\x75\x63\x04\x15\xa5\x6b\x3c\x07\x3b\x97\xa3\x82\x45\x72\xa8\x37\xa4\x47\x6c\xbf\x3e\x6c\x34\xca\x0e\xe4\x2e\x5b\x54\x0e\xad\x42\x62\xe0\x93\x48\x7c\xd8\x7c\xe0\x6d\x90\xc3\x45\xc3\x2e\x1a\x06\xe9\x85\x64\x03\x2a\xef\xca\x1c\x06\x6d\x15\x13\xa0\x3b\x3a\x87\x49\x5b\xe7\xfc\xfd\x4b\x3c\x40\x8e\xda\xb9\x39\xda\x70\xc8\x2b\x2f\x47\x9d\x5f\x39\x1e\xdc\xb6\x36\x7c\xd1\x6e\xc3\x9f\x2c\xc7\xab\xa0\x88\xe9\x1c\xc5\x4f\xe5\x68\xcc\x88\x60\xd4\x72\xac\x15\x8a\xb8\x27\xcd\x20\x9b\x36\x6b\xd3\x96\x60\x9c\x76\x16\x7b\x67\x0f\x3b\x51\x64\x25\xcb\xf2\xcd\xb1\x47\xd1\x3e\xb2\x76\xa6\xa9\xb2\xd2\xb4\xdb\x53\xe8\xb7\x39\xeb\x92\xcb\xb9\x5a\x43\x85\x00\x91\x33\x1f\x66\xfb\x30\xca\xb6\x90\xc5\xf1\xd8\x23\x19\x49\x2b\xb2\x1c\x1a\x99\x62\x47\x6e\x54\xfe\xa0\x5c\xc4\x3e\xe4\x62\xec\x43\x92\xa5\x3a\x17\xf1\x42\xb9\x88\x17\x3a\x15\x1f\x99\x8b\xee\xaf\x5c\xa4\x62\x08\xe2\x77\x73\xb9\x29\x4d\x7e\x11\x51\x3e\x8a\xb9\xea\xa6\xc8\xd5\x6e\x8a\x2a\x39\x27\xd7\x23\x42\x4a\x12\x26\x44\x3a\x35\x1d\xf5\xd4\x74\xd8\x3e\xce\x35\x40\x32\x8e\xa7\xe8\xd6\xc9\xb5\xf2\xa1\xad\xa0\xa2\x10\xe7\x5c\xbb\x46\xb1\x76\x1b\x45\x05\x03\xe4\x16\x35\xfa\xcd\x98\x9e\xc8\x6e\x6f\xaf\xde\x6a\xaf\xb1\x97\xb2\x10\xe6\xc6\x3e\x68\x53\x9e\x86\x26\x29\xe6\x7e\x8a\xd4\x4d\x0a\x92\xfe\x3e\x77\x36\x67\xb7\xcd\x29\xed\x7c\xee\x09\x0a\xd1\xaa\xa7\x8d\x74\xcf\x90\x8c\x9b\x09\xa7\xd6\xe0\xc5\xe6\xbf\x6c\xf3\xd7\xa0\x05\x7d\x47\x91\x6e\xc9\x38\x81\xa5\x73\x27\x2d\xdf\x5b\x4a\xdb\x78\xf2\x9e\x4e\xb4\x7c\xdb\x89\x26\x8f\xf8\x7c\x53\xfe\x9d\xd5\x08\x28\x17\x94\x5b\xf3\x61\x8d\xb8\xd9\x1c\x32\xfa\x49\xb9\x9f\x6f\x46\x06\x2b\x5c\x95\xd0\x9a\xef\x57\x67\xd7\xfd\x76\xdb\xc6\x76\x63\xe5\x7b\x68\x9d\xdc\x26\xbc\x27\xc5\xe5\x65\x99\x80\xec\x61\x97\xfb\xa9\xeb\x29\x3f\x2c\xfc\xc7\x16\x7e\x94\xdf\x52\x96\x43\xaf\x3d\x4e\xb5\xa2\x8a\x94\x21\x21\xa6\x07\x91\x06\x24\xf4\x11\xfa\x30\x6b\x39\x09\xd1\x38\x88\x1f\xcd\x82\x4a\xb5\x47\x36\xb9\x48\xb3\x21\x74\x4c\x7b\x5c\x3a\x40\x29\xbf\xd2\x0a\x3b\x2f\x0a\x1b\x44\x88\x11\xf6\x50\x2b\xd4\x73\xa5\x19\xb2\x47\xd2\xf9\x69\x55\xca\x07\xdc\x1e\x5a\xad\x15\x1a\xdd\x54\xe6\x54\xe1\xe0\xe7\x71\x68\xc9\x0d\x5b\x9f\x02\x12\xc9\xc2\x31\xb7\x87\xbd\x23\xa3\x5c\x16\xac\xa9\x3d\x6c\x0c\xe5\x89\x9c\xe5\xd9\x6d\x8f\x26\xa7\xaa\x02\xed\x85\xc6\xf9\xaf\x7b\x42\x40\xc8\xf6\x20\x1c\xcf\xda\x3a\xb8\x74\xe4\xd7\x8d\x9a\x2c\x8f\x9b\xd2\x4c\xe0\x0a\x42\x3b\xca\xca\xb4\x65\x8f\x60\xa3\x6f\x02\x70\x56\x26\x2d\x7b\x68\x3d\x89\x23\xc9\x4a\xd0\x6f\x8f\x2c\x93\xb0\x51\xd8\x44\x33\xd8\x50\xe4\xad\x1b\xfd\x9f\xef\xe1\x2c\xd1\xc2\x1e\x38\xf5\xd9\x4c\x4c\xce\x62\x98\xe3\x64\x7c\x76\x16\x57\x6c\x0f\x5c\xa8\x54\x15\xe7\xee\xbc\xb4\xa1\xa2\x48\x0f\x1f\x4a\xf3\x18\xe4\xfa\x50\x0e\x4d\x4e\x39\x6c\x72\x80\xf5\x28\xf2\x29\xb6\x87\xed\x3b\x25\x32\x2a\xa7\x78\x93\x72\x1a\x6f\xd2\x95\xa0\xb7\x9c\x05\x92\xbc\x52\xa5\x46\x29\xa7\x89\xef\xf6\xf0\x31\xb6\xd7\x82\x0e\x97\x12\x64\x32\x8a\xd2\x82\x97\xa0\xfb\xbf\x04\xa9\x95\x6c\x83\x96\x60\x7b\xdc\x1e\xb7\xf1\x47\xb6\x8d\x4b\xd0\x54\x97\x60\x23\x16\x15\xaa\x55\x82\xa4\x9b\x12\x92\x66\xdf\x4e\xc7\x12\x32\xc5\x9b\x04\xa3\xd4\x2a\x25\xe8\x1c\x2f\x81\x73\xdc\x24\x80\x12\xe8\x63\xc0\x96\x6b\xe2\x5e\x09\x12\x13\x4b\x20\x9a\xcc\x06\xac\xc4\x53\x6f\x45\x9b\x34\x00\x24\x8b\xa4\x64\x7b\x58\xb3\xa4\x93\x29\x31\x25\x91\x24\x61\x45\xd5\x18\xe9\x76\x1c\x12\x7b\xed\x0e\x2f\xe8\x07\x8a\xf4\xeb\x51\x8c\x62\x49\x9a\xfa\x92\x6c\xe9\x76\xdd\x2f\x25\x55\x48\x55\xa3\x6a\x57\x55\x49\xf7\x2d\x92\x49\x13\x49\xae\x0f\x25\x4d\x35\x42\x9a\xd7\x4c\x8d\xd9\x8e\x3b\x7b\x98\x18\x22\x6d\x47\xc9\x4c\x47\x96\x9b\xba\xe2\x11\x4a\xd6\x25\x57\xb2\x89\x5a\x20\x50\x94\xdc\x78\xcb\x18\x4b\xd2\x05\x95\x2c\x56\xba\x64\x3b\x9e\x30\x33\x17\xf9\x7c\xda\xc3\xb8\xf0\x43\xb1\xc0\x25\x4b\x2f\x52\xb2\x71\x30\xb8\xe5\x95\xfc\xdc\x90\x4c\xf2\x91\x83\x4b\xc9\x43\x33\x9b\x6d\x44\x84\xc2\x58\x8a\x0e\xc2\x52\xec\x20\x8c\xca\x76\x52\x8a\x78\xd1\x52\xe4\x20\x7f\xea\xac\x2f\xe5\x85\x26\x25\x44\x90\xef\x71\x29\xba\x1f\x8b\x54\x9a\x67\x10\x13\x5a\x0a\x63\x5d\xb4\xc4\xa2\x5c\x6c\x4a\x99\x6a\x6e\x99\x0c\xa3\x28\x03\x8a\xc9\x51\x62\x30\x4a\x35\xf1\xe5\xa7\x54\x63\x59\x8b\xc0\x58\x0a\x97\x5c\xd1\x25\x87\xbf\x5d\xa9\xda\xb1\xa5\xda\x8e\x0d\x0a\xc5\x29\x95\x35\x50\x6d\x0d\xe8\x78\x29\x55\x47\x68\xa9\x62\x72\x15\xe9\x51\x6a\xa1\xf4\xea\xa0\x96\x46\xaa\x0d\x52\xb7\xad\xde\x55\xba\xe4\x87\x52\xad\xff\x45\x46\xda\xd2\xc4\xa3\x15\xe9\x64\xab\x38\xd5\xd2\x74\x52\x95\x66\x27\x55\xd5\xdd\x51\xda\x0b\x49\x2e\x07\x8a\xa8\x2b\x9d\x25\xd0\x6d\x09\xf4\xa0\xed\x27\x77\x38\x7b\x0c\x8d\xab\x09\x99\x45\x3e\x5c\xf6\xb0\x9b\x56\x3a\xe6\x72\x89\x2f\x2d\x97\xf8\xd2\x20\x2f\xe9\x22\x07\x28\x7b\x70\x7a\x99\xbc\x56\x6e\x31\xd6\xe5\x96\xb4\x18\x85\x86\x5a\x6e\xf1\x9d\xe5\x96\x12\x38\x4a\xe9\x5d\xee\x93\xf7\x50\xd8\x4a\x13\x54\x6e\x5d\xd4\xe5\xb6\x8b\xba\x4a\x39\x55\xe4\xce\x63\x0f\xa0\x42\xad\xa7\xb7\xe4\xf7\x72\xdb\x8e\x6d\x4a\x5b\x58\xb8\x25\xcb\x6d\xc2\x7a\x17\x52\x58\x91\x43\x8a\x3d\x58\x2e\xc6\x08\x94\x9b\xd5\x28\x57\x91\x2e\x4b\x7a\xb9\xc5\x60\x95\xdb\x6e\x16\x40\x13\xca\x3d\xb4\x40\xef\xa1\x05\xda\x55\x25\x6b\xe5\xb6\xb5\x82\x3d\xbe\xdc\x93\xb6\x1a\xff\xd6\x15\x0d\x54\xee\xc9\x87\xd3\x18\x60\xb9\xe5\x17\x65\xae\xb0\x87\xcd\x9d\x94\x5b\x45\x2e\x14\xf6\x30\xd6\x40\x49\xec\xcb\x13\x2a\x24\xbb\x2b\xa2\xce\x90\x27\x0c\x48\x5a\x8b\xda\xbe\x02\x44\xb4\x07\x26\xdc\x20\xd2\x0b\x49\x3a\xe2\x43\xc5\x67\xad\xa9\x47\x66\x4a\x31\x6f\x45\xc1\xd6\xf6\x50\xa0\x85\x16\xb1\x00\x99\xec\x81\xcb\x98\x2d\x0d\x01\xea\xd8\x83\x4c\xdf\x22\x49\xbc\x2a\xc2\x78\xa9\xc2\x5a\x29\x32\xe6\xda\xe3\xb5\xc1\x0f\x36\x38\xca\xf1\x60\x8f\x62\x83\x63\x92\x4e\x51\x0e\x72\x7b\xd8\x5b\x4a\x46\x53\x84\x1d\x62\x8f\x2a\x92\x75\x5b\xd1\x6d\xf6\xb0\xe9\x90\x1f\x78\x11\x56\xb4\x3d\x40\xcb\xb4\xfb\xbc\x4c\xc6\x50\x6a\xed\xae\x0c\xa6\x45\xe8\x91\x3f\x45\x09\x18\x48\xd3\x5d\x91\x0e\x2b\x1a\x08\xc4\xc3\x8a\xee\xa0\x1e\x72\x7f\x0b\x3a\xcb\xea\x61\xd7\x80\x3d\x74\xb3\x28\x53\x45\x3d\xc4\xf0\xd4\x43\x0c\x4f\x3c\x8c\xd7\xaf\x87\x76\x4a\x3d\xe4\xc8\x1f\x15\x28\x5b\x8f\xcc\x7b\xb2\xbd\x10\xd8\x52\x0f\x31\x38\xf5\x10\x83\x13\x8d\xd7\xfb\xd3\xe5\x5c\x8f\x4a\x53\x65\xfa\x12\x36\x5e\x3d\xee\x24\xd2\x6d\xf7\x83\x57\xf6\x50\x99\x31\x3b\xd5\xdb\xfe\x42\x92\xe3\x6f\xe9\x76\xc2\x56\x49\xb0\xf6\xb8\xe4\x58\x2f\xd2\x09\xc9\x06\x2c\x4a\x6f\x50\xd1\x55\xd4\x53\x77\xf8\x79\xda\xda\xac\xa7\x76\x43\x95\x74\x99\x64\x80\xab\xa7\xce\xd3\x7a\xea\x3c\x3d\x75\x04\xd6\x53\xab\xba\x9e\xb6\xaa\x73\x34\xe6\xa9\x06\xdd\x79\x35\x9c\x1c\xb1\x0d\xda\x80\x36\x19\x9b\x6a\xb4\xa0\x8e\x06\x52\xb2\xdb\xe5\x55\x83\xb8\x84\x1a\x8c\x4b\xa8\x5a\x3f\x15\xb9\xb1\x4a\x6e\x6c\x8a\x9f\xac\x41\x2b\xb6\x4a\x48\x24\xb7\x7b\x0d\xba\x70\x6a\x90\xee\xe6\x14\x80\x41\x0d\x97\xc6\x23\xc8\x65\x25\xc8\x89\xb1\x06\x46\x32\xd8\x48\x16\x29\x9e\x6a\x18\xea\x7c\x90\x19\x54\x00\x0b\x35\x4a\xa2\xad\x91\x5d\xa2\x58\xe2\x1a\x75\xd4\x54\x82\x64\x4e\xdd\xb5\x35\x16\x7f\x6f\x8a\x2f\x35\x39\xaa\x46\x2d\xdb\xaa\xe8\x97\x22\xcb\x5a\x55\x54\x8a\x3d\xa4\x0a\xb5\xfb\xb7\x26\xc6\x03\x53\x77\x53\x58\x4f\x45\x32\xac\x92\x0c\xa3\xce\x8c\x2a\x63\xb5\x3d\x6e\xdb\x03\x26\xf3\x55\x99\x02\x7e\x6a\x32\x11\xa2\x4b\x1a\xae\x32\x5c\xdb\xe3\x51\x18\x92\xca\x97\x32\xa1\x26\x14\x9b\xd2\x34\xd7\xf4\x52\xa7\xed\x8e\xaa\x2c\xde\x55\x36\x59\x7b\xd8\xc2\x92\xef\x64\x4d\x52\xad\x54\x09\xa0\x81\x79\x97\x49\xd6\x1e\xba\xba\x8f\x08\xed\x81\xf6\xda\xf2\x50\xfb\xb3\x34\x37\x35\x9f\x88\x14\x5d\xb4\xa0\x3e\x29\x96\x24\x0a\xce\xa2\x2a\x7a\xc4\x1e\x36\x7b\x76\xca\xd6\x1c\xf9\x30\xea\xfc\x0c\xa2\x54\x28\xc6\x6c\x2b\xcc\xb1\x66\x89\xe0\x35\x9b\x40\x52\x84\x8b\x5b\x73\xe2\x2d\xdb\x8b\x55\xc2\x43\xcd\x85\xfa\x6c\xb2\x82\x90\x88\x6a\xee\xea\x63\x36\xbe\x1c\x40\xcf\x9a\xa5\xbd\xad\xb9\x13\xf0\x69\xd3\x96\x2f\xfa\x78\x61\x4f\x52\xb3\x2e\x3e\x94\x42\x57\x00\xe2\x15\x26\xa6\x8a\x89\x09\x62\x58\x2a\x0c\x4b\x15\xc3\x42\xe0\x4d\x55\x44\x8b\x3d\x14\xcd\xa2\xb1\x29\x9c\x35\xc5\xf8\xb5\xa4\x14\x28\xb5\x70\x84\x14\x1d\x21\xe8\xd8\x6a\xa9\xbc\x56\x71\x86\x8d\x22\xdd\x90\x6c\x72\xe5\x3a\x51\x8b\x4c\x19\xb5\x00\x2b\xac\xbd\x5f\xa4\x0b\xac\x45\xeb\xff\x50\x98\x4e\x2d\xd2\x22\xd6\xf2\x0c\x6b\xac\x46\xac\xb0\x04\x8a\x2d\x81\x28\x8f\x97\x8a\xa0\x5e\xeb\xa1\xb3\x45\x8d\xad\x52\xce\xd6\x8a\x72\x56\xb6\xc2\x5a\x39\x35\xaa\x9d\x1a\x55\x5e\xa5\xb5\xca\x72\x51\xab\xcc\x81\x72\xc5\xaf\x55\x46\x88\x5a\x8d\x01\x21\x28\xa7\x56\x9d\xec\xb5\xea\x64\x97\x08\x53\xab\xae\xaa\x5a\xed\xaa\x6a\xb2\x1d\xd6\x9a\x29\xcb\x76\x5c\x97\xd2\xac\x22\xf5\x57\x49\xfd\x49\x1e\x8d\xb5\x32\x49\x55\x93\x74\x2a\x0f\x41\xad\x37\x85\xdd\x3a\x80\x78\xed\xa1\xad\x72\xe0\x0c\x8a\x5f\xad\xf5\xa1\xb4\x07\x66\x44\xf3\x54\x25\x29\xd7\xfa\xc2\x64\xd0\xa9\xa1\x35\x55\x87\xd6\x94\x06\xad\xb1\xd4\x1b\x00\x69\x4d\x24\xb1\x2c\xb5\xd9\x52\xaf\xca\xf1\x52\x9b\xa4\xdb\xda\x6c\x01\x12\x7a\x59\x5b\xd3\x62\x6c\x36\x5d\x5d\x10\x81\xb5\x75\x15\xdf\xba\x71\xae\xb2\x2b\xd7\xc6\x41\xdb\x1e\x62\x9c\xec\x52\xab\x52\x62\xfc\xd4\x26\x17\x83\x33\x68\xd4\xda\xa0\x4e\x99\x3f\xad\x5b\x46\xe3\xf4\x6d\x0a\x68\x3b\xe5\x77\x55\x3b\xc7\x6f\xe7\xf8\x15\xc7\x56\xbb\x58\x88\xda\xe5\xba\x16\x94\x4a\xbf\x76\x89\xf6\xb5\x27\xb2\xa5\xdb\xc0\x75\x6e\x2b\x85\x07\x11\x2a\x54\x15\xb5\x63\x0f\x99\x8a\x95\x04\xb0\x76\x49\x43\xb5\x9b\x34\x44\x48\x62\xed\x37\x5f\x2a\x78\x5c\xa1\xdd\xb5\xbf\x6a\x2f\xb1\x2b\x5d\x77\x4a\x17\xef\x54\x15\x66\x52\xa5\x9c\xaa\x9d\xe3\xa6\xdb\x71\xd3\xa4\xe5\xaf\x97\x78\xbf\x7a\xd9\x8a\xeb\x32\xa0\x56\xb8\xd0\x2a\x2e\x34\x49\x8f\x5d\xaf\xa2\xe2\x15\x39\x91\x15\xe1\x51\x2f\x89\xe8\xf5\x92\x88\x1e\xe4\x17\x5e\xaf\xf2\x40\xd3\x6d\xda\x4e\x95\x26\xd5\x5d\xbd\xe4\x14\x17\x65\x48\xaf\x97\xb4\x8c\x55\x71\x14\x35\xe7\x7f\xe1\x9e\xbe\xba\xe6\x48\x41\x10\x51\xfe\xf2\x55\x91\x0e\xf6\xc0\x54\xaf\x61\xb8\xb8\x5b\x2f\xee\x56\xb9\x7f\x55\x85\x2d\xd8\x03\x17\x86\xa8\x06\x48\x8d\x5b\x15\xaa\x00\x16\x6b\x95\xcf\xbf\x3d\x4e\x5b\x65\xdd\xba\x28\x4e\xd4\x1e\xd5\xce\x11\x9d\x6f\xf2\xec\xb5\x07\x15\x98\x00\x5e\x9f\xa8\x19\x12\x02\x4b\x96\xa3\x75\x55\x24\xb6\x3d\xba\x0a\x83\xa4\x1e\x08\x9b\xbf\xca\xc2\x53\xe1\xfc\xaa\x38\xbf\xa4\x54\x31\x55\x20\x2d\xf6\x50\xf9\x41\xeb\xff\x81\xd5\x50\x6a\xe7\xd4\x74\xd2\x3f\x83\xc2\xac\x35\x59\xae\x96\xf5\xa5\x15\xca\x7a\xd6\xe4\x09\x51\x5f\xca\x7f\x29\xdf\xd8\xff\xfa\x72\x80\x92\x62\xea\x90\x17\x46\x1d\x1c\x2d\x40\x20\x9c\x41\x03\xa9\x94\x53\xf6\xd0\x00\x89\xab\x18\xac\x57\xa5\x98\xc9\xf2\xe0\xae\x43\xa2\x61\xc5\xcc\x4b\x08\x41\x9d\xb4\x43\x26\xcd\xd6\xb4\x49\x26\x8b\x1f\xd0\xe2\x24\x0b\x42\x9d\xdc\x1d\x82\xf3\x6a\x4d\x5c\x16\xe6\xc8\x2a\x73\x64\x4f\x0d\x52\x87\x64\xec\x93\x14\xc6\x75\x72\x44\x63\x6b\x3c\xe5\xfa\x54\x27\x07\xb2\x60\xbc\xda\xc9\x6b\x17\x75\x5e\xa7\x95\xaf\x7e\xca\x4e\x67\x8f\x5b\x6f\xd9\x08\x61\x9b\xab\xb2\xcd\xb5\x53\x3d\x9f\xdc\x27\x02\x2e\x89\xdc\x60\xf3\xa5\x4a\xe3\xb7\x3b\x2c\xc5\x84\x8f\x51\x96\xa3\xa4\xb0\xaf\x2a\x57\x09\x7b\xe8\xe2\x3e\x75\x71\x4f\x96\xcb\xb4\xe5\x92\x3a\xaf\x4d\x7a\xa9\xb8\xc6\x20\x65\x43\x9d\x32\x72\xd5\x29\x23\x57\x90\xa5\xa4\x61\xb4\x6b\x32\xda\x55\x69\xe6\xda\x11\x6f\x91\xc0\xdf\x94\xf4\xd0\x0e\x71\x28\xed\x30\x0e\xa5\x29\xa1\x60\x3b\x74\xaf\xb5\x43\xf7\x9a\x38\xe3\x76\x34\xbe\x44\xad\x6f\x87\x63\x3b\x74\x12\xb6\xc3\x76\x42\x90\x19\xb7\x9d\xd9\x46\xbb\x9d\xb8\x68\x4b\x11\xde\xe4\xc2\x60\x0f\xcd\x80\xf1\x31\xed\x94\x39\xaf\x9d\x36\xda\x49\xba\xeb\x76\xea\xf8\x69\xa7\x8e\x9f\xa0\x00\xc0\xa6\x00\x72\x7b\x68\xe3\xe7\xa8\xd2\xd4\xf9\x26\x93\x49\x53\xda\xcf\x26\x7b\x87\x3d\xee\xdf\xbf\x82\x80\x93\x5b\x90\xc8\xd2\x82\x44\x16\x99\x01\x5b\x10\xbb\xdf\x82\xd8\xfd\x53\xfe\x6a\x4d\x61\xe5\xf6\xe8\x0a\x83\xd6\x97\x05\x92\xa2\x41\x83\x32\x17\xb7\x20\x1b\x5c\x0b\x4d\x3c\xa2\x09\xe8\x2d\x6a\x0d\x35\x05\x53\x07\x29\xa6\x5b\xd2\x55\xd4\x92\x5c\x5f\x0f\x45\x0b\xb5\x2c\x9e\xb9\xe5\xa0\x8e\xda\x91\xd0\x32\x15\xe4\xa2\x3a\x35\x51\x59\x9a\x83\x96\xa5\x39\x68\x0a\xa8\x6d\xb2\x08\xd8\x43\xde\x00\xc6\xe0\xb4\x22\x53\x55\x2b\x38\x9c\x28\x37\x4e\x2b\xba\xae\x9b\x98\x13\x1b\x22\xab\xb4\x48\x79\xd0\x8a\x6c\x55\xf2\x00\x68\x45\xb7\x6e\x2b\x76\xeb\x36\x31\x68\x0d\xc3\x40\x93\x61\xc0\xba\xfb\xd7\x4f\x93\x41\xc0\x1e\xf1\xf7\xaf\x28\x60\xd5\x56\xa5\x7a\x6c\x1e\x36\x2b\x37\x23\xbb\x2d\x45\x93\x8f\xcf\x21\x0c\x81\x56\xa5\xf2\x6d\x15\x95\xaf\xa2\xf1\x5a\x9d\x7c\xab\x9c\x26\x41\xee\x0a\xad\x89\xe9\x6c\xba\x90\xcf\xc0\xcc\x34\x29\x5c\x5a\x3b\xad\xab\xb2\xb1\xb7\x26\xb9\xce\x66\xee\xf7\xaf\x5a\xaa\xde\x92\x58\xd7\x1a\x7a\x6c\x89\x2e\xad\x55\x68\xb2\xb1\xe8\x10\x6b\x4d\xbe\x25\xad\xb5\x20\x2f\x19\xeb\x43\xbb\x29\xff\x06\x55\x53\xbd\x6f\x0f\xaf\x49\x7b\x2b\x06\xa6\x35\xf1\x5f\xad\x19\xe7\xd1\x15\x9e\xd0\xda\xe4\x2d\x69\xdd\x0f\xc1\x89\xb7\x2e\x8d\x51\xd3\xb5\x9d\x94\x20\xa5\x75\x79\x89\x34\xd9\x2a\xce\x43\xb1\x46\xad\xcb\xdc\xd0\xba\x6c\x8d\xa7\xf0\x44\x5a\x97\x1d\xa1\x75\x94\x46\x41\xeb\xb9\xcb\x6e\xd0\xba\xec\x06\x41\x10\xf7\xad\xb3\x63\xba\xbc\x50\xa3\xa2\x70\x5a\x7f\x79\xcf\x0e\x92\xa6\x6c\x16\xad\x4f\x5a\x22\xaf\xcd\x53\xb9\x41\xdb\xc5\x14\x5e\x36\x85\x41\xc6\xd7\xa6\x70\x49\x7b\x18\xa7\xa3\x48\x8b\x76\xc9\x7c\xd1\x2e\x5b\xfe\x80\xd4\xb5\xab\xf2\xa1\xbc\x74\xe4\x0a\xd8\xae\x97\x0f\x15\xf1\x72\x28\x98\xa8\x29\xfc\xcd\x1e\x59\xd1\x42\xc6\x05\x37\x5d\x78\xf6\x30\x66\x59\x26\x99\x76\x4b\x3d\xd6\xee\xa4\x0b\x4d\x13\xa3\xa8\x2a\x7b\xc8\x8b\xec\xa8\xe5\x8f\x57\x76\x53\x80\x93\x3d\xb4\xe0\x93\x16\xda\xdd\x1b\x34\x98\xc0\x64\x8d\xc2\x78\xd1\x64\xbc\x68\x4a\x1f\xd2\x1e\x76\x19\xe9\xbc\x8e\xa0\x46\x29\x6b\x80\x3d\xf2\xef\x5f\xbd\x68\x79\xcb\x44\x61\x0f\x31\x69\x52\x8a\xb4\xe7\x82\x66\xcc\x6b\x10\xf0\x6f\x53\xd6\x27\x7b\x18\x1b\xd8\xaa\x2a\xe0\xbc\x12\x36\x60\x92\x39\xa9\x3d\x3a\xbe\xdb\x33\xb4\x32\x72\x10\x89\x96\x8d\x57\x24\x7b\x4b\x19\x7a\xed\xc1\xae\xd0\x72\x57\xd6\x7d\x7b\xd4\xdf\xbf\xc8\x8f\xd3\x5e\x3a\xf0\x5a\x07\xba\x04\x84\xa6\x0c\xef\xf6\x98\x22\xd9\xa0\x0a\xda\xc8\x1e\xc9\x48\x3a\x0d\x07\x3b\x96\x5c\xdb\x87\x64\xaa\x86\x06\xa7\x49\x83\x73\x9e\x0a\x71\x6c\xb2\x78\xd8\x43\xea\x0f\x46\x68\x88\x87\x6f\x43\x6e\x32\x51\x50\xc2\x6d\x70\x08\x0b\x9a\xb4\x49\xe9\xd5\x06\x27\x9d\xd4\x3b\x64\x76\x68\xf2\x88\xb4\x87\x6c\x5d\x26\x14\x36\x3c\x03\x1a\x09\x61\x0f\x4e\x98\x49\x47\xe5\x56\x75\x1e\x4d\x1b\x7b\x72\x84\x01\x38\x1f\x84\xd0\xd6\xf0\x4f\x6a\xc0\x7d\x06\xe1\xa9\xb5\x99\x79\x2f\xe3\xd6\xa3\x9d\xa2\xcb\xdf\x1e\x78\x7a\x51\x07\x67\xdd\x24\xd2\x4c\x9e\xf5\xfd\xd0\xa9\xd0\x0f\x3b\x15\xb2\x9a\xd2\x0f\x71\xca\x5d\xf7\x5a\xd6\x76\xef\x87\xb8\xfd\x7e\xf4\xb6\xa2\xfa\xfb\x61\xc2\x86\x3d\x64\x9a\x3f\x45\x12\x57\xdc\x0f\x9b\xda\x26\xd8\x92\x7e\x68\x27\x76\x81\xba\x34\xf9\xb8\x75\xb9\x96\xd8\x03\x93\xb7\x0d\x52\x97\x93\x81\x3d\x64\x4b\x4e\x26\x26\xf4\x33\x5e\xd0\xb4\xff\x85\xab\xd0\x85\xee\x62\x0f\xe2\x2a\x8d\xa9\xe8\xa7\x76\x54\x3f\x6d\x60\xaa\xe2\x2a\xba\x9c\x11\xec\xa1\xf5\x60\xe3\xd6\x4f\xfa\x79\x2a\x5e\xe9\x68\x5d\x35\x34\x6a\x55\x4c\xc8\x21\x87\xf0\x7e\xea\xb8\xee\x27\xc7\x75\xca\xaa\x55\xdc\x70\x3f\x8d\x1b\xce\x02\x11\xef\xa7\xe4\xe7\x7e\xca\x08\x10\x94\x00\xb2\x9f\x83\x06\xdb\x28\x34\x39\x84\x77\xa9\x8e\xec\x61\x0c\x4f\xd2\xb8\x05\xf1\x06\x3d\x20\x25\xc9\xa3\xbc\x87\x09\x0d\xe8\x77\x46\x2e\xea\x48\xec\x51\x47\xe2\x29\x11\xba\x0b\x08\xc4\x1e\xaf\x7c\x97\xad\xab\x82\xe3\xb0\x47\xc7\xe5\x05\xda\x05\x0d\xb7\xd4\x6c\xa3\x94\xb2\xfa\x9f\xb2\xcd\xb3\xbc\xef\x7b\x2a\x7c\xaa\x93\x20\x0a\x6a\xa1\xcb\x5f\xd1\x1e\xc3\xe4\x76\xe3\xf6\x7a\x92\x41\xad\x27\x19\xd4\xa2\xa0\xc1\x7a\xbe\xf4\x69\xc6\x57\x34\xd8\xb4\xca\x0d\xdd\x1e\x97\x0c\xac\x87\x68\xe2\x0a\xbb\x54\x0a\x59\xfe\x8c\x3d\xbf\x1a\xb8\xac\x30\xc2\x10\x8d\x87\xed\xf9\xe5\x35\xcc\x1b\x02\x60\xe9\x45\xa2\x75\x2f\x49\x5e\x30\x5a\x24\x45\x46\x9c\x5e\xec\x92\x0d\x92\x05\x7a\xb1\xfb\xcd\x1e\x72\x1c\x33\xa6\xad\x17\x26\x55\xaa\x85\x28\x60\xd6\x2e\xfd\x82\x3d\xec\xc4\x38\xec\x2c\xe8\xa5\x53\x96\x9d\x12\x5d\x80\x37\xbd\xe8\x4c\xed\xc5\xce\xd4\x28\x37\xf9\x2e\x7f\x01\x7b\x34\x3b\xbf\x8d\x41\xeb\xc2\xcf\xb0\x47\x55\xf1\x6a\x84\xa4\xf4\x2e\xc3\x4d\x54\xf8\x5f\xaf\x3a\xca\x7a\xb5\xbd\x9f\x84\x41\xd1\x65\x22\xb1\xc7\x43\x27\xa1\x0d\x68\x92\xe5\xe5\xce\xdf\xab\xdc\xbe\x7a\x8d\x5d\xd0\x26\x51\xa4\x17\xd2\xd0\xdc\xa9\x82\x4c\x69\x76\xbe\x67\x69\xc4\x7b\x95\x41\xab\xcb\xb2\xd2\xc5\xdc\xf4\x2a\x51\xac\x57\x45\x8d\x47\x89\x1a\xbd\xbe\x14\xa6\x30\x8a\x20\xe7\xc9\x2e\x84\x0e\x7b\x0c\xda\x61\x53\xdc\x74\x5f\xf6\x26\x96\x47\xee\x83\xbd\xc9\xc3\xa4\xb7\x43\x5e\x1a\x76\x99\x77\xe9\x12\xec\x61\xac\x81\x3c\x28\x3b\x8c\x4c\x17\x23\x13\x95\x78\xb8\x37\xb1\x01\xbd\x99\x3c\x9c\x64\xa4\xeb\x8d\xe5\xdd\x14\x8c\x14\xe4\xd9\xdb\x1b\x13\xdc\x84\x5c\x1c\x94\x79\xa0\x37\x79\x51\xf4\xa6\x58\x95\xa8\xd8\xc4\xde\x2e\x2a\xbd\x70\x19\xa7\x6d\x62\x5b\xba\xd8\x96\x33\x88\x7b\xec\x8d\x6e\xb5\x29\x7f\x11\x63\x3b\x7b\xd7\x31\xdb\x3b\xc7\xac\x1c\x14\x7a\x67\x66\xba\x66\xe6\x14\xd0\x61\xef\x92\xb4\x7a\x97\xdc\xa9\xe3\xbe\xf7\x8b\x4f\xf1\x21\x11\x82\x6b\x17\x84\x85\x3d\x12\x21\xd7\x7f\x36\x59\xf7\x4e\xa3\x80\x9e\x38\xbb\x26\x58\xb0\x0b\xf6\x50\x27\x43\x85\x76\x41\xb3\x53\x58\xe2\x4d\xbf\x74\xa6\x77\x69\x07\xce\x28\xfc\xc9\x2e\xdb\xd5\x4f\x17\xe6\x40\x62\x18\x2f\x1a\x25\x26\x25\x2b\x9c\xac\x63\xc1\xea\xb2\x60\x25\x05\x78\xf5\xfb\xd0\xda\xb8\x05\x74\x11\x84\xdd\xd5\x6f\xe6\x49\x36\xab\x33\x0a\x89\xa5\x2b\xdc\xfe\xa7\xdf\x92\x60\xa3\x80\x10\xfa\xcd\xe8\xe0\x1e\x72\x48\x90\xeb\x8a\x90\xb7\x47\x50\x43\x44\x92\x57\x74\xbf\x95\x49\xf5\x10\x63\xda\x6f\x0e\x49\x19\x9f\xce\x20\x7f\xad\x2e\x83\x90\x3d\xb0\xa5\x19\x0b\xd7\x1f\x56\xb3\x84\xfd\xac\xfc\x62\x5d\x08\xa1\xf6\x08\xf8\xb7\x59\x2f\x5e\x76\x10\x30\x69\x41\x16\x85\xfe\xca\x10\xde\xc9\x09\x1c\x0e\xf5\x42\x59\x8f\xec\xa1\xde\x56\xde\x93\xe0\xd6\x5f\x09\x6e\x41\xea\xe6\xfe\x32\xc9\xa4\x86\x0b\x32\x5b\xf5\x97\x93\xed\xd5\xc9\x16\x65\x91\xea\x82\xbb\xb7\x87\x09\xec\x2c\x72\x85\xec\xd9\x03\x99\xcc\x98\xad\xae\x04\x18\xf6\x78\xf5\x9a\xd5\x8a\xfb\x76\x97\x78\x7f\x9e\x4a\x08\xd4\x95\xcf\xcc\x1e\x05\xe7\x94\x28\x1a\x9f\xea\xac\x17\x96\x5d\x1f\x5c\xa6\x43\x6c\x6d\x94\x1e\xae\x2b\x20\xe2\xa7\x8b\xa5\x38\xcf\xe3\xb0\xf7\xd0\x09\x74\x74\x02\x41\x5e\xcc\x1d\x1e\xa1\xcb\x8b\xf9\x0c\x42\xc7\xe8\xf0\x08\x5d\x3c\x42\x96\x3a\xa1\x4f\x6e\xce\x29\x43\x40\x54\xcc\x7b\x9f\x8c\xdd\x14\x2c\x40\x54\xc8\x6c\x9f\x6c\xc1\x49\x9c\xa4\x27\x4d\x49\x91\x1c\x07\xeb\xbf\x93\x68\x2a\x21\xe6\xa5\x04\xf2\xee\xfa\x2f\x79\xfd\xc3\xfe\x9b\xb1\xcd\xeb\xbf\x85\xbf\x09\xf2\x2e\x39\xee\xeb\xfa\xaf\x42\x23\x1a\x88\x9e\xe9\x21\xed\xdf\xfa\x6f\x26\xf6\xe6\x5c\x7f\x93\x40\xec\xff\x55\xf4\x8d\xe3\xda\xe7\x83\x04\x0f\xeb\xbf\x95\x54\xc0\x3b\x2f\xc1\xe0\x3b\xfd\xb7\x7d\x81\xd7\x87\x26\x78\xe0\xb4\x5b\x00\xfe\x20\xd0\x62\x1c\x64\x52\xd4\x94\x8c\x43\x3a\xca\x81\x99\xad\x28\x94\x62\x1c\xc9\x69\x04\x62\x2a\xc6\x5d\x36\xb7\x9f\x71\x64\x72\x3c\x28\x2c\xf9\x10\xc3\x3e\x0e\xc1\xa8\x80\x90\x3f\xe4\xf6\xf9\x33\x0e\xf2\xf5\x81\x66\x77\x54\x68\x0a\x5a\x2d\x59\xb1\xad\x87\xd6\xee\x38\x04\x44\x50\x32\xd0\x7a\x0a\xe1\x18\x87\x34\xc8\x45\x49\x9d\xc6\xf1\x50\x07\x29\x90\x05\x1f\x3b\x0e\xe9\x69\x87\xd8\xb5\xb3\xc8\xa1\x77\x1c\x93\x3a\x48\xc5\x23\xf7\xae\x71\x48\x4f\x3b\x0e\x05\x4d\x16\x99\x3c\xc7\xc9\xb8\xe0\x77\x5a\xc4\xcb\x0f\xcc\x75\xe3\xc4\x24\xa6\x9c\xc9\xe3\x94\xaf\xde\x38\x89\x21\x26\x04\x18\xc6\x6f\x9c\x89\x84\x51\x02\x4e\x12\x77\x67\x0f\xcf\x41\x2b\xc0\x3d\xb1\x34\xe3\x14\x4b\x53\x08\xab\x3d\xa5\x4b\x1d\xa7\x42\x6e\x48\x6c\x38\x4e\x19\xbc\xc6\xa9\x20\xf7\x02\x56\xcc\x29\x3e\x67\x9c\x9e\x00\x51\x41\xa8\x04\x91\x0c\x71\x7b\xa7\xc3\x31\x9c\xe2\x09\xc6\xd9\x69\x4b\x03\xf4\x2f\x41\x23\x02\x57\x21\xbc\x84\x9b\x8c\x93\xbc\x69\x4a\xbe\x3f\xe4\xda\xfa\x33\x08\x38\x29\x60\x62\x9c\xb7\xc6\x59\xfe\xac\xb6\x2e\x55\x9e\xe4\xa5\x71\x3e\xac\x47\xda\xf7\xd0\x37\x4f\x82\xa0\x28\x76\x69\x76\x7e\xc6\xc9\x38\xcb\xf4\x32\x82\x6e\xe4\x21\x6d\xce\x59\x9a\x82\xf1\x83\xce\xbf\x11\x74\xfe\x95\x9e\x80\x07\xd4\xb7\xc1\xd7\xb5\x10\x04\xa4\xc8\xf9\x19\x81\x71\xd1\x79\x3a\x50\xe8\x8c\xd0\xa0\x75\x80\x02\xd5\xbe\x00\x0c\xa7\x02\x09\x46\xd0\x1e\x1b\x81\x50\x5d\x22\xd1\x71\x52\x1d\xe1\x86\x26\x94\x81\x70\x43\x1b\xb8\x5a\x3b\x42\xa0\xc6\x39\x80\xd3\x00\x58\x64\x98\xf4\x63\x12\xcc\xaa\x70\xe3\x28\x49\x79\x44\x90\xa5\x41\x8f\x8c\xa7\xd3\x88\x82\xd3\xfc\x46\xdd\x50\x23\x46\x87\xea\x17\x3c\x9e\x64\xb8\x11\x23\xc8\x7a\x0a\x9b\x8f\xba\xa1\x46\x04\xb9\x5b\xc1\x45\x23\x26\xca\x43\x4f\x22\x57\xce\x11\xc5\x3e\x8f\x48\x8a\xf5\xd3\xb1\x07\x5f\x68\xe4\xa8\x07\xf6\x4f\xec\xca\x88\xd9\xd3\x6c\x0a\xf0\x4f\x67\xc8\x88\xe4\x36\x93\x86\x73\x44\xf1\x65\x23\x6a\xff\xa6\xb3\x03\x47\x98\xa0\x81\x09\x78\x9c\x7f\x64\x12\x46\x64\x6a\x22\x19\x39\x65\xa3\x1d\x72\xc7\xb5\x87\xc7\x0e\x6a\xd8\x2a\x4d\x25\xb3\x8c\xd4\x30\x23\x36\x9a\x0a\xb6\x6f\x60\x88\xe4\xcb\x37\x22\x40\xd5\x32\xb9\x8c\x28\xb5\xff\x88\xc4\xbd\x03\x54\x15\x39\x42\xe2\x03\x0d\x90\xc6\x87\xb6\x3c\x68\x46\xb5\xec\xe2\xc3\xf0\x02\x24\x1a\x41\x5d\x7c\x79\xef\x25\x73\x90\x8e\x24\x49\x2a\x3f\x23\x0e\xcf\x08\xac\x69\x18\xbc\x47\x3a\x18\x80\x9e\xe2\xe4\x3d\x92\x25\x48\x76\x1a\x44\x59\x8d\x44\xee\x72\x19\xa0\x47\x92\x3c\x35\x88\x36\x23\xab\xdf\x50\x30\xf6\xcf\x48\x2b\x35\x8c\x10\x07\x39\x82\x53\x20\x08\x1e\x7c\xc4\x48\x79\xe4\x72\x01\x83\x49\x22\xd2\xcf\x48\x19\xb8\x61\xc5\xc4\x27\xd9\x63\x46\x62\xba\x94\x14\x67\xa4\x42\x79\x20\xe1\x09\x1d\x7a\xa4\xa2\x6d\x4b\xe0\x74\x4a\xb4\xaf\x52\x5e\x03\x60\xb5\x00\x65\x58\xa0\x91\x64\x07\x78\xc5\x4e\x5b\xb4\xcd\x92\x0c\x7b\x23\xc9\x26\x38\x12\x63\x2f\x47\xbc\x21\x4f\xea\x9f\x91\x40\x93\x07\x68\x26\xbd\xd4\xc1\x58\x49\x01\x3a\x32\x63\x95\xc9\x5f\xa2\x3c\x19\x23\x4b\xc9\x3d\x32\x63\x25\x1f\xc1\x91\xd9\x3e\x39\x38\x4d\x80\x86\x92\xc7\x47\xf6\xb4\x38\x11\x2c\xc4\x02\x0d\xfc\x62\x41\x59\x64\x69\x1e\x46\x26\xa5\x81\x5c\x3d\x47\x96\xaa\x60\x64\xf2\x16\x81\x1c\x90\x2f\x68\x9e\x41\x9d\x6f\x4d\x4e\xfe\x19\xf9\x85\xc6\xb7\x92\x04\x87\x24\x41\x19\x63\x46\x7e\xa9\x15\x68\x78\x30\x8b\xf0\x99\x1b\x59\x3c\x4f\x92\x9f\xeb\xc8\x62\x16\x46\x66\x04\xe4\xd8\x38\x0a\x23\x50\x88\x3f\x55\x1a\x83\x51\xb8\x84\x0a\x31\xb5\x0a\x53\x1f\x45\x02\xc0\xc0\x58\x9d\xa4\x1a\x1c\xc8\x9a\xa3\x68\x76\xc9\x6a\x39\x4a\x81\x86\x1b\x29\x00\x29\x45\xda\xee\x51\xd8\x31\x5d\x10\x32\x78\x96\x0f\x3c\xcb\xb3\x92\x9a\x8c\x72\x51\xef\x45\xfa\x10\xf0\x1d\x2f\xf5\xa3\x00\xdf\x73\x80\xec\xc8\x65\x50\x48\x6d\x7d\x08\xff\xa4\x4c\xbe\x55\xdf\x1c\x57\xa1\xd2\xb7\x0a\x6e\x15\xc8\x9b\x95\x59\xab\xc0\xb4\x28\xf7\xe0\xa8\xac\xc8\xba\x32\x74\x0b\xbc\x51\x7c\xf4\xa8\xd2\x98\xe6\x70\x02\xdb\xa8\xb6\x54\xe5\xc9\x27\xbb\xea\xa8\x92\x9f\x46\x05\x2c\x0c\xe8\xca\x2a\x35\xe7\xa8\x2b\x4d\x8e\x80\x1d\xe5\x3c\x38\xea\xf4\x94\x35\x42\x6e\xa4\x7d\xed\xf0\x74\x56\x45\x34\x8d\x5f\x03\x9f\x0b\x0c\xc3\x16\x54\x5e\x03\xb4\x31\xea\x10\x6d\x32\x6b\x8e\x46\xae\x22\xe5\xeb\x1d\x98\x9b\x47\x03\x0a\x66\x61\x40\xf2\x2d\xf5\x2a\x9d\xca\xe8\xd4\xdb\x3d\x83\xa7\x90\x43\x70\x82\x1f\x72\x82\x3f\xdb\x09\xcc\x9f\x62\x03\x47\x2f\x9e\x88\x1a\xe4\xc8\x08\xcd\x21\x1f\x05\x14\xc8\xa9\xdb\x1d\xef\x52\x97\x5f\x67\x1d\x74\x32\xe1\x70\x59\x75\x31\xc9\xa3\x03\xa7\x25\x0f\xe7\xd1\xa5\x70\x1f\xbd\xe2\x07\x13\x81\x90\xd4\x98\xf6\x06\x50\x62\x06\x2f\x92\x6f\xc1\xae\x02\x94\xa4\x73\x1a\xf4\x0e\xd4\x22\xed\xeb\xf4\xa3\x3b\x84\xa3\x20\x0e\x3b\xfd\x00\x9d\xea\xd4\xce\xea\x5c\xce\xdd\xd1\x3f\x2b\x34\x7f\x8f\x70\x79\xca\xe3\xc2\xee\x00\xd5\x29\x55\xe0\xe8\x30\x87\xfd\xa6\x1f\x9a\x8f\x7e\xd3\x0f\xf9\x3f\x36\x19\x4e\x07\x36\xf1\xd1\xc1\x16\x00\xbd\xab\xdf\x3a\x0d\xba\x83\x7e\x32\x1f\x0f\xdf\x3e\x8e\x1f\x06\x64\x24\xfd\x00\x8a\x40\xfe\x52\xa3\xbf\xf4\x17\x5c\x95\xe0\x60\x90\x8c\xfd\xeb\xd0\x91\xaa\x63\xf0\x1e\xc9\xc7\x58\xa7\x7d\x50\x87\xe4\xc7\x06\x9c\x72\x1f\xf4\x6d\xf2\x9e\x43\x3b\xf2\x9e\x98\xd7\x16\x98\x23\x98\xd7\x4e\x86\xd3\x00\xde\x20\x6b\xe8\x02\xb4\x27\x00\xed\x27\xed\xcd\xb8\xc0\xe0\x0f\x00\xe7\x71\x96\x5c\x87\x83\x44\x82\xf1\xa8\x3a\x2e\x10\x59\x14\x30\x3e\x2e\x09\x39\xe3\xc2\x1f\x2a\xfc\x0b\x1a\x81\x71\xc9\xa5\x66\x5c\xa0\xd7\x29\xa9\xc8\xb8\x02\x45\x83\x4e\x17\x2a\x58\x91\x34\x21\x3a\x4d\x08\x7c\xd1\x69\x98\x15\x81\x43\x84\x1f\xba\x80\x30\x57\x9e\xf1\x71\x49\x26\x1e\x17\xb0\x54\xe0\x12\x5f\xf0\xd9\x17\x50\xcb\x4a\xe2\x33\xe4\x98\x60\x0f\xf0\x0c\x05\xb3\x83\x4d\x64\x5c\xe2\xb3\x1b\x17\xfb\x05\x9f\x2d\xdf\x05\xa3\x69\x88\xd8\x52\x17\x08\xb1\x42\x2c\x19\x97\x6c\x1b\xe3\x02\xf1\x22\x32\xbc\xf0\x98\x17\xee\xf8\xe0\xb0\x5e\x4d\xcb\xe9\x62\x0b\x00\x3d\x77\xb1\xdc\x2f\x90\xd9\x64\x9d\x1a\xd7\x45\x1d\xc0\xb0\x39\x6c\x26\x47\xeb\x45\x12\x6c\x8e\x95\x8b\xa5\x7d\xb1\xb4\x1d\xa8\xf2\x66\x5a\x49\x4b\x28\x6d\xd8\xb8\x6e\xfa\xf1\xd0\x0f\xc0\x1c\x1f\xea\x65\x79\x02\xe6\x8a\x4e\x65\x5c\x2f\x48\x7d\x8c\xc1\xcb\xb7\x2c\x4f\x30\x90\x2f\x19\x27\xc7\x35\x1c\xca\x10\x1a\xfd\x25\xe5\x4e\xd2\xf2\xbc\xe0\x8b\x2f\xc9\x5b\x2d\x01\xf2\xc9\x92\xbd\x40\xe5\x4d\xa0\x66\x4e\xc6\x0f\xa0\xe7\x04\xa8\x25\x47\xf0\x05\x5e\x69\x02\x3d\x0e\xd9\x00\x6d\x4e\x4b\x09\xa4\xc5\x0a\x8d\xf7\x40\x7c\x83\xa7\xbe\x81\x98\x4a\x8e\xae\x98\xa1\x69\xfc\x12\xb8\x8a\xf2\x5b\x18\x77\x60\x0c\xb4\xfe\x6e\xa9\x69\xc6\x1d\xc0\xee\x04\xc1\x4d\x66\xdc\x71\x8b\x1f\x6f\x1c\xd5\xb7\x14\xf7\x43\x31\x44\xf6\x1e\xb4\x01\x8d\xb6\x74\x30\x15\x35\xa6\x37\x88\xed\x4a\x9d\x37\x6e\xf8\xf1\x3b\x79\x7a\x60\x80\x13\x6f\x68\x98\x2d\x74\x74\xdd\xf0\xe8\x37\x30\xcd\xf2\x01\x1c\x37\x0c\xca\x0d\xbe\x11\xb2\xc6\x9d\xe9\x9b\xe7\x73\x3c\xa0\x51\x07\xf9\xf7\x60\xb4\x08\x52\x1a\xa8\xaa\x72\x15\xc3\x78\x17\xc6\xb4\x80\x6b\x77\x80\xb4\xc8\xb7\x0e\x35\x0c\x72\x5e\xa1\x5e\xa0\xa9\x80\x14\xbb\x2b\xef\x81\x73\xda\xf8\xb6\x32\x06\x5c\x11\x19\x38\x3d\x98\xf5\xbb\x39\x4c\xa3\xfa\x06\x9b\x71\x73\x6d\x64\xad\xab\xbb\x31\xce\x0d\xf4\x3e\x70\xfd\x3a\x73\x09\xb4\x70\x03\x7a\x11\xd9\xf4\x06\x1e\x4d\xba\x90\x81\x61\x70\xdc\xdd\x81\x14\x55\x47\xa7\xbc\x0e\xce\xa0\xb0\x98\xe4\x56\x6e\x0f\xb0\xff\x40\xb0\x64\xbf\xdd\x9e\xcf\x07\x74\x45\x64\xdd\xfb\x62\x4c\x81\x35\xbc\x58\x6b\x97\x67\xd6\x04\x11\x91\x79\xf3\x24\x34\xd4\x71\x33\xa6\xb7\x43\x1a\xaa\x7d\xb2\x42\x8f\xfb\x66\xac\x00\xcb\x64\x5f\xde\xc0\xa2\x36\x87\x3e\xa4\x5e\x50\xf5\x33\x6b\xfc\xa1\x0e\x4f\xb5\xe0\xd8\x83\x8c\x01\x29\xe1\x1a\x6b\xfc\x65\x7e\x5f\x4f\xb6\xaf\xf1\x7b\x19\x03\x80\x4f\x1b\xe8\x82\x83\xf6\x91\x4c\x50\x61\xfa\x83\xa0\xb3\x71\x93\xfe\xab\x81\xab\x89\x10\x73\xe3\xc0\x9d\xa9\x63\xd0\x96\xe1\xb9\xbf\xd5\x37\xae\xa6\x7b\x90\xae\xaf\x82\x60\x48\x1d\x80\xa7\x36\xf0\x40\xd1\xb5\xdc\xd3\x13\xcd\x03\x6e\x48\x3f\x60\x79\x1a\x88\x83\xd2\x85\x8d\xe7\xa0\x2d\x02\xb8\x7c\x14\x8a\x30\x1e\xcf\xd3\x0d\xbc\x1d\xec\xd7\xca\x33\xad\x73\xed\x81\xf5\x7d\x3c\x7f\xee\x01\xad\x43\xa3\xcd\x80\xde\x71\x85\x3d\x27\xd9\x51\x74\x15\x3f\xdc\x51\x4f\x00\xbc\x50\xe7\xdf\xc3\xde\x97\x0b\xff\x99\xa5\x72\x1f\x0f\x42\xd6\x23\x1c\x9a\x2c\xfd\xde\x50\x3e\x2d\x7b\xf8\x7b\x82\xf9\x93\x13\xec\x20\x1c\x8f\x0c\xca\x83\x78\xbc\xf1\x90\x80\x29\x3b\x5a\x22\xfd\xe0\x8e\x52\x82\xa9\x41\x90\xde\x78\x3c\x0d\xb2\xee\xb7\x07\xf9\xfc\xc9\xd4\x0b\x12\x20\xf2\xf9\x4a\xbd\xce\x18\xa0\x5f\x7b\xc8\xff\x80\xee\x8b\x50\x82\xa1\xa8\x3e\xcf\x6f\x36\x88\xe7\x1b\x0f\x00\xe7\x85\x31\x60\xff\x3e\xe0\xc9\x29\x21\xcb\x78\xd8\xab\x64\xd9\x6f\x25\xfe\x0b\xb2\xfd\xc3\xf5\xf7\x80\x22\xde\x01\x1d\x6c\x5e\x34\x43\x2e\x6e\x99\x58\xc1\x41\xac\x60\x93\x55\x7b\x28\x5b\x9c\x3d\x68\x2a\x18\x92\xfd\x82\x06\x4e\x9f\xae\x83\xa7\x53\x5e\xa7\x3c\xe0\x31\x2f\xa6\xf0\x72\x80\x45\x4d\x03\xdb\x9b\x74\x5d\xad\x00\x03\xc9\x56\x7e\xe0\x28\x51\xe7\x3d\x70\x94\x0f\x12\x0d\x48\x76\x0f\x1c\xe5\x83\x0a\xb8\x80\x27\x79\x31\x94\x37\xe0\x95\x5a\xee\x0f\x1c\xe5\x73\x83\xd8\xc8\x32\xbe\x59\xb2\xb7\x03\x2f\xaa\x2d\xa8\xcb\x1e\xb6\xa3\x6c\x8f\xe3\x41\x2d\x29\xc7\x81\xb3\x90\x41\xe0\x61\x3b\x3e\xa8\xc6\x0e\x10\xf6\x50\x1f\x91\x21\xac\x80\x33\xa7\xec\x60\xf6\x28\x78\xe5\x83\xcd\x58\xa1\xd1\xb7\x02\x2a\xa3\xea\x7d\x81\xf2\x2e\x05\x6c\x45\xbe\x3d\x01\x35\x14\x9b\xf1\xca\x9b\x73\xbc\xa7\x23\x3a\x82\xb4\xa8\xf6\xbd\x64\x05\x3d\xc0\x7f\x14\xea\xc9\x78\x51\x09\xa3\x1a\x7b\xe5\x7a\x30\xde\xe0\x20\x89\x6a\xb3\xcc\x4e\xe3\x0d\x80\x20\x82\x0e\x88\x3a\xef\x15\xa2\x53\x21\x7b\xc6\x8b\x3a\xef\xf5\xb4\x6c\x80\x15\xa2\x36\x7d\xc9\x6d\x4b\x96\x8c\x17\x56\xf0\x8d\x0e\xde\xa8\x31\x80\x15\x24\x89\x74\x53\xca\xdb\x81\x33\xe3\x90\x33\xe3\x59\x50\xd3\xbd\xb2\x18\x0c\x59\x4e\xec\x3d\xe1\x11\x72\x3d\xbf\x09\x00\x4a\xb1\x55\x2f\x7a\x01\x72\xa4\x15\x92\x58\xbc\xa8\x66\xdf\xc4\x5c\x8a\xc3\x7f\xb9\x9e\x5f\xae\xe7\xd2\x81\x7e\x64\xac\xc8\x4a\x45\xfe\x09\xa5\xac\xb7\x07\xe9\x54\xc4\x6a\xbd\x5c\xd9\xa4\x60\x2e\x48\xbb\x2f\x2c\xe8\xeb\xc9\x4e\x24\x31\xbc\xa8\x34\x49\xb3\x5c\xd0\xc9\xbc\x5c\xc5\x9e\x38\x90\xc4\x06\xaf\xfc\x77\x86\x2c\x40\x46\x53\x5b\x90\xd6\xc8\x58\xd4\x48\x12\xf0\x72\x65\xbf\xba\xb2\x49\x5e\x36\x5e\xf4\x6b\x6f\xa3\x3c\x1d\x5d\x6f\xa3\x3c\xd4\xa6\x67\x04\x63\x92\xf6\x49\x37\x52\x90\xc6\x95\xdd\xd9\x1e\x0e\x52\xa9\x7e\x34\xe6\x9c\x9c\xa8\xf2\x12\x1e\x2f\x7a\xb8\x17\x75\x32\x89\x04\x5e\xae\xd8\xf7\x72\xb4\x4a\x00\x2a\xa9\xe3\xe2\x5b\xe0\x45\xd9\x6f\xaf\xa7\x1f\x64\x0d\xa1\x57\x79\x89\x9e\x41\xba\x7a\x91\xae\xde\x97\x38\x81\x03\xf0\x4a\xd6\xc1\xe0\x3d\xda\x37\x68\xb3\x22\xdd\x4a\x00\x4b\x73\xb2\xfe\x26\xe9\x9e\x80\x0b\x85\x55\x25\x6b\x54\x91\xff\xfa\x18\xec\x41\x10\xcc\x0a\x52\xd3\xe0\xca\x21\x53\x7c\x09\x05\x9a\xd6\xe4\x60\xcf\x28\x6e\x67\x0c\xf6\xcc\x40\x8d\x4d\x02\x9b\xc1\xba\xc7\x35\xa7\x20\xc6\x0c\xae\x0d\xf2\x31\x97\xa8\x2b\x6c\x60\x46\x19\x19\xf7\x6f\x81\x46\x0f\xd6\x95\x5c\x6c\xcf\x12\x41\xd1\x64\x0d\x91\x65\xb9\xa0\x77\x1c\x5c\x07\x43\xfa\xbf\x12\x1d\xf9\x92\x7a\xc9\x08\x0f\x86\xfa\xa8\xd4\xcb\xfc\x02\x34\x3f\xd0\x7d\x81\xb9\x54\x10\x45\x06\x62\x8c\xa7\x1f\x05\x94\x7f\x20\xc6\x78\xae\x65\x10\xeb\x71\x27\x1a\xa4\x39\x2b\xa0\xcb\x0f\xd8\xaf\xe1\x73\xce\x98\xca\xcf\x62\x78\xf2\x75\xa0\xe2\x07\xe2\xce\x40\x42\x07\xc5\x2d\x8a\x2d\x98\x11\x90\x4a\x05\xc1\xcf\xa8\xab\x7d\x46\xae\x53\x41\x88\xcf\xa8\xbd\x3a\x51\x77\xe3\xfe\x39\xa3\xea\x9d\x42\x02\xf3\xe4\x65\x13\x3d\xf0\x8c\x2b\xa1\x99\xca\x53\xb0\xe4\x8c\xa0\xdb\x0b\x99\x74\x46\xb1\x73\x33\x82\xaf\x28\x18\xd2\xa9\x48\xdf\x9f\x19\x27\xef\x55\x7d\x3b\x69\xdf\x04\x8b\xaa\x09\x4a\x52\x92\xf7\x4c\xa4\x33\xab\xe0\x39\xd2\x8f\x74\x00\xd0\x09\xdc\xa2\xf4\x98\x93\xbc\x35\xb5\x1d\xc0\x6c\x3e\xd0\xc0\xb6\x14\xda\x21\x21\xc4\x53\xaa\xdf\xb3\x36\x10\x2a\x25\xb2\xcc\x14\x1c\xaf\x93\xf7\x34\x06\x29\xfa\x7b\xa2\xe9\xec\x9c\x09\x20\x43\x21\x82\xcf\x94\x68\x9f\xc6\xaf\x6a\xbf\x4d\xf4\xc5\x33\x91\xff\xe0\xac\xe9\xbf\x5e\xf7\xad\xfc\xf7\xdb\x7e\xa6\x4c\x0b\x80\x2e\x3c\x81\xa3\xcc\xb4\x5e\xab\xae\x9e\x5d\xb5\x69\xd5\xcd\x54\x3c\x0d\xa4\x7a\xa9\xd3\x6c\xa6\x0a\xae\x25\x68\xa3\x3a\xb9\x66\x02\xa3\x1d\x74\xbb\x54\x29\xaf\x81\xb3\x19\x80\xe3\x4c\xd0\xc0\xb7\x8c\xaa\x43\xa7\xd4\x4c\x8d\x6c\x70\x42\x82\x4c\x8a\x32\x9d\x52\x48\x9f\x35\x00\x7c\x2a\x21\x62\xa6\xcb\x71\x3b\x05\x87\x79\x51\xde\x45\xbd\x8c\xc6\xc5\xa8\xb1\x22\xa4\xb8\x98\xe9\xa6\x1f\xa4\xd7\x95\xb3\xca\x4c\x37\xb3\x7a\x93\xfd\xad\x42\x63\x16\x1e\xcf\xf7\x26\xcc\xce\x87\xf7\xc8\x18\xd2\x40\x39\x7d\x29\xef\x05\xec\x54\x28\x84\x68\xc0\x67\x7a\x49\x8a\xdd\xb5\x9a\x5e\xfa\xf1\x8e\x6d\x74\x9e\xf8\x1d\xcf\x04\x10\xac\x14\x1c\x33\x0d\xbe\x1d\xcc\x74\x57\x7f\x07\xe3\x3c\xc1\x1c\x05\x09\x76\x32\x06\x93\x7a\xc1\x07\x9d\x8c\x33\x88\xb1\x82\x03\x98\x68\xde\x67\x66\x15\x2b\x43\xfc\xcc\xac\xe2\xcc\x0a\x13\x03\x3d\x15\x01\xf6\x33\x33\x39\x35\x94\xa4\x71\x66\x31\xa8\x33\x83\x57\x29\x5c\xe9\x99\x65\xe5\x99\x19\xc6\x13\x38\xd6\xdc\xa8\xa3\x79\x7a\x4f\x95\xa7\x9b\x64\x66\xf2\x24\x49\x28\x99\xb9\x53\x2f\xdc\xa1\xf2\x45\xcd\xcc\x5c\xe6\xee\x79\x4f\x55\x47\xe7\x5b\x20\x7a\x19\x2b\xc5\x8b\xd9\x83\x6f\x35\xa6\x59\x3a\xbe\x99\xd1\xf1\x75\x50\x4d\xe5\x52\x34\x33\x89\x28\x3a\xe0\xa6\x72\x5f\x98\xf9\xf5\xd4\xce\x6a\xf3\xa0\x5e\x0c\xe8\x5d\xa8\xb0\x52\xec\xdb\x03\x8c\x52\x70\x38\xe5\xba\x3d\x71\xdd\x26\xa0\x7b\x16\xe9\x70\x67\x21\xcf\xc9\x42\x1f\x55\x5b\x0a\xe9\x4e\x14\x1e\x3e\x8b\x38\x94\x89\x2e\xbf\x4a\x1f\x3f\xd1\xe5\xcf\x42\xf2\x13\x71\x9b\xb3\xc8\xf7\x6d\x16\x76\x6d\xd7\xe9\x53\xd8\x97\x25\xf3\x6d\xe3\x3d\xcd\x6f\xc1\x67\xb2\x6b\x6d\xc8\x28\xf0\x33\x4b\x25\x07\x98\xe6\x1c\xaf\xb3\xe9\x49\x96\xe4\xdf\x3f\x8b\xb8\xe1\x59\xc0\x6c\x3d\x68\x1f\x7b\x41\x71\x6b\x42\x05\x9c\xe5\xa1\x17\xb6\x4a\x33\x30\xa6\xd2\x71\xce\x62\x72\xa7\xc4\xd2\x59\x06\x2d\x1b\x20\x4f\x0a\x88\xb4\x4c\xde\x9a\x73\xe3\x95\x4d\xac\x02\xb3\x12\xec\x2f\xd3\xf4\xc4\xd1\x6a\x36\x72\x1c\x83\x2c\xd9\xe4\xc0\x33\x1b\xf8\xc3\x42\x08\x9b\x4d\xe2\xdc\x6c\x9c\x8b\x45\xb3\xdd\xc4\x8f\xce\x46\x36\x49\xe1\x70\xcf\xc6\xec\xb4\x08\x94\xb2\xee\x95\xc6\x4c\x34\x5c\x19\x64\x7d\x99\x43\x3e\x5f\x73\x90\x75\x4c\x41\x39\x93\x78\xe9\x49\x3a\x6f\xe3\x92\xe6\x60\x5e\x87\x74\xf3\x7c\xc7\xb9\x3b\x54\xbe\x80\x65\x87\xe2\x30\xe6\xf0\x38\x0c\x51\x5e\x28\xa4\xae\x15\x45\x2d\x18\x52\x70\x0a\x25\x73\xc8\xb4\x3b\x07\x10\xfc\x2a\x99\xb5\x31\x12\x8a\x0b\x51\xa8\x4b\x28\xb4\xb4\x90\xb5\x32\x4c\xb8\x0c\x20\xae\x26\xea\x32\xbe\x35\x68\x04\x46\xa6\x67\x99\x60\x35\x51\x12\x14\x39\xf0\xa8\x3d\x99\x92\x33\xc9\x64\x45\xa1\x85\x76\xa8\x07\x10\x5b\xa5\x4c\x9a\xca\x54\xce\x09\x4d\xcc\xcf\x1c\xe5\xfe\xfd\x8b\xb3\x13\xdc\xc5\x39\x0f\x22\x2c\x04\x56\xaa\xda\x15\x1a\x1e\x81\x12\x65\xe6\x26\xa8\x70\x82\x2e\xa5\xef\x02\x25\x54\xf6\xe4\x49\x00\xcd\x54\x00\x4d\x28\xe1\xbf\xde\x51\xf6\xe3\x7f\x5f\xff\xf8\xeb\xff\xfc\xbf\xae\x7f\xfc\xdf\xd7\xff\x1e\xbf\x9e\xff\xfc\xe7\x3f\xc7\xbf\xfd\xc7\xfb\xbf\x9e\xff\xf8\xf5\x7f\x18\xf5\xd7\x3b\xe6\xff\xfa\xb7\xf1\xcf\xf1\xff\xfe\xfb\x7f\xfe\xf3\x19\xbf\xfe\xf1\xef\xff\xb0\xaf\xf4\xef\xff\x0b\x00\x00\xff\xff\x64\x34\x19\xf3\x78\xd4\x03\x00"); -var _dffa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4b\x6f\x1b\xb7\x17\x05\xf0\x3d\x3f\x05\x97\xf9\x2f\xf2\x37\xdf\x0f\x80\x18\x20\xef\x7a\x91\xa6\x68\x9a\xb6\x40\xd1\xc5\x90\xbc\x34\x04\xd4\x92\x20\xcb\x0b\x7f\xfb\xe2\xde\xe3\xb8\x45\x17\x89\xac\xa3\xcb\xa3\x99\xdf\x10\x9a\xb9\x79\x77\xfb\xfe\xf6\x78\xb8\xea\x9b\x9f\x2e\xa7\xf1\x95\xae\x7a\x1d\x8e\xf3\x42\x0f\xa7\xc7\xcb\x20\xdd\xe9\xee\x70\x54\xca\x3a\x3d\x0f\xe3\xfa\xfd\xad\xbc\x8c\xfb\xfd\xac\x14\xaf\xff\xfa\xf4\x70\xa5\xfb\xdb\xe3\x3a\x69\x8f\xb9\xf9\x78\x7e\x9e\xd5\xfa\xe6\x67\xba\x3b\x3c\x5c\x2f\x4f\xfa\xd5\x9b\x79\xea\xf4\x3f\x3d\x69\x71\xfe\xe5\x32\xe9\x72\x38\xde\xe9\x57\x9f\xde\xda\x97\xf4\xeb\xe3\xf9\xfc\x17\xdd\xd3\xf1\xaa\x8d\x64\x74\x9c\xf2\xaa\x6e\xde\x7d\xde\xcf\x3f\xee\xf7\xa4\x6f\x3e\xbd\x7d\xfd\xe1\xdb\xbb\xd7\x3f\xc8\x07\x92\xff\x4a\x97\x87\xc3\xe9\xa8\xeb\xff\x8d\x49\xff\xc4\xbf\x3c\x9d\x49\xdb\xe7\xf5\xdf\x6e\xdf\x7f\x59\xeb\x81\xae\xda\x1a\x74\xdf\xfc\xfe\xed\xf6\xbd\xfe\xc3\x6a\x6b\xb4\x8b\x3e\x99\x3f\x9f\x47\x7f\xfb\x7c\x9a\xf4\x7c\x00\xca\xe1\x5c\xc6\x69\xd2\xc3\x79\x1f\x74\xd9\x8f\x77\xa4\xb4\x6e\xc6\x6c\x5a\xeb\x56\xcc\xc6\xef\xde\xd8\x37\x76\xd3\xed\xe3\x87\x8f\x1f\x36\x3e\xea\xff\xcc\x2b\x8b\x9a\xe3\xe9\x3a\x69\x21\x93\x86\x66\xd7\xa6\x73\xb6\x89\x17\xfd\xfb\x53\x55\xcd\xf3\x37\x1f\xe6\xf3\xbc\xe3\x79\xfe\x4f\xe6\x9b\xe3\x2f\xcc\xb4\xe9\x62\x83\x6a\xbb\xdd\xf9\xfd\x6e\x17\x6d\xba\x26\xd5\x76\xd7\x25\x70\xe4\x36\x6d\xab\xe1\x84\x22\x12\xda\xb4\x0b\x92\x2c\xcc\xac\xb1\x69\x17\x39\xf1\xa8\xf1\x5c\xe3\x92\x53\x6d\x0f\x48\xc2\xf2\x9b\xf6\x91\x9b\x23\x92\xb8\xd2\xa6\x83\xaf\xaa\xed\x09\x49\xea\x65\xd3\xd1\x45\x4e\x06\x92\x15\x37\x1d\x03\xcf\x64\xcc\x64\xfe\x20\x19\x6e\xce\x13\x09\x1f\x44\xf2\xbc\xaa\x60\xa6\x0c\xb3\xe9\x94\x0a\x27\x43\x8e\xb9\xd0\xbe\xe9\x6c\xf8\x08\xeb\x1e\x38\xa9\xc4\x72\x9e\x67\x76\xac\xda\xd7\x0b\x46\x47\xd2\xb9\xa7\x9a\xa2\x5a\x37\x92\x74\x23\x3c\x7c\xee\x1d\x60\x5d\xc0\xac\xf1\x41\xb5\xee\x10\x39\x89\xac\xe3\x75\xf0\xe8\xe2\x61\x9d\x73\xaa\x75\x80\xf4\x20\x91\xe7\x4b\xd1\x21\xd2\xa3\x44\xc1\x72\x3d\x48\x7a\x92\x28\x1a\xae\x87\x40\xcf\x88\x2a\xd7\xe3\x84\x7b\x91\x28\x55\xae\xaf\x88\xaa\x44\xb9\x70\x3d\x4e\xb0\xcb\x09\xda\x52\xb8\x1e\x67\xd8\xbb\x44\x35\x73\xfd\x40\x34\xe4\xd2\x19\xd6\xeb\x13\xd1\x94\xc8\xf2\xe5\xec\x84\x88\x24\x72\x7c\x3d\xfb\x42\xb4\x24\xf2\xbc\x0d\x06\xb8\x86\x70\xb9\x10\x82\x6a\x03\x5e\x43\xbc\x5c\x64\xf8\x01\xaf\xe1\xb0\x59\xbc\x53\x6d\xc0\x6b\x60\xff\x64\x97\x54\x1b\xf0\x1a\xe2\xe5\x8a\xe3\x7a\x78\x0d\xf1\x72\x95\x2f\xd9\x80\xd7\x10\x2f\x6f\xf8\x9a\x0d\x78\x0d\xf1\xf2\x96\xb7\xcc\x80\xd7\x28\x88\x78\x9f\x0f\x78\x0d\xf1\xf2\x8e\x37\xfa\x80\xd7\x10\x2f\xef\x0b\xd7\xc3\x6b\x88\x97\x0f\x99\xeb\xe1\x35\xc4\xcb\xc7\xcc\xf5\xf0\x1a\xe2\xe5\x53\xe2\x7a\x78\x0d\xf1\xf2\x39\x71\x3d\xbc\x86\x78\xf9\x12\x83\x6a\x13\x5e\x53\xbc\x7c\x0d\x45\xb5\x09\xaf\x29\x5e\xc1\x04\xa7\xda\x84\xd7\x14\xaf\x60\x7d\x52\x6d\xc2\x6b\x8a\x57\x70\xde\xa8\x36\xe1\x35\xc5\x2b\x78\xc7\xf5\xf0\x9a\xe2\x15\x82\xe5\x7a\x78\x4d\xf1\x0a\xd1\x72\x3d\xbc\x66\x5e\x75\xd3\x21\x19\xae\x87\xd7\x14\xaf\x90\x6a\x54\x6d\xc2\x6b\x8a\x57\xc8\xa5\xaa\x36\xe1\x35\xc5\x2b\x94\xe2\x55\x9b\xf0\x9a\xe2\x15\x6a\xce\xaa\x4d\x78\x4d\xf1\x8a\x26\x5b\xd5\x26\xbc\xa6\x78\x45\x9b\xb8\x1e\x5e\x53\xbc\xa2\x8b\x5c\x0f\xaf\x29\x5e\xd1\x47\xaf\x1a\xc1\x8b\xc4\x2b\x86\x90\x55\x23\x78\x91\x78\xc5\x18\xac\x6a\x04\x2f\x12\xaf\x28\xbf\x10\x04\x2f\x12\xaf\x98\x5d\x55\x8d\xe0\x45\xe2\x15\x8b\xe3\x7a\x78\x91\x78\xc5\x6a\xb9\x1e\x5e\x24\x5e\xc9\x58\xae\x87\x17\xc9\xfe\x4a\xd6\x70\x3d\xbc\xa8\x20\xaa\x5c\x0f\x2f\x12\xaf\xe4\x2a\xd7\xc3\x8b\xc4\x2b\xf9\xc2\xf5\xf0\x22\xf1\x4a\xa1\x70\x3d\xbc\x48\xbc\x52\xcc\x5c\x0f\x2f\x12\xaf\x94\x12\xd7\xc3\x8b\xc4\x2b\xe5\xc4\xf5\xf0\x22\xf1\x4a\x25\x66\xd5\x16\xbc\x96\x78\xa5\x1a\xad\x6a\x0b\x5e\x4b\xbc\xb2\x09\x51\xb5\x05\xaf\x25\x5e\xd9\xf2\x2f\xf3\x82\xd7\x12\xaf\xec\xbc\x57\x6d\xc1\x6b\x89\x57\xf6\x8e\xeb\xe1\xb5\xc4\x2b\x07\xc7\xf5\xf0\x5a\xe2\x95\xa3\xe5\x7a\x78\x2d\xf1\xca\xc9\x54\xb9\xd1\x7d\xbf\x3d\xf1\xdf\xfc\x54\xf0\x72\xa3\x1e\x8f\x97\x0b\x1d\xaf\xf2\x4c\x20\xf7\x63\xbe\xa1\x1e\x8e\xf4\xf2\x7c\x71\x3e\x9d\x79\x95\xfc\xfb\x3b\x00\x00\xff\xff\xf6\x6c\x4f\x32\x8b\x08\x00\x00"); -var _gdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\xc1\x6e\x9b\x40\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\xd0\xc2\xee\x02\xbb\x2b\x55\x91\xaa\xf8\x50\x52\xa5\xa9\xe2\x26\xad\x54\xf5\x80\x61\xb0\x90\xea\x05\x01\x3e\xf8\xed\xab\xf9\xc7\x75\x0f\xd6\xd8\x9f\x77\x7e\x0d\x68\x36\x7f\x68\x76\x4d\x1a\x37\xca\xbf\x2d\x53\xb7\xe7\x8d\x86\x31\xf5\x0b\xaf\xd3\x79\xe9\x98\x0e\x7c\x1c\x53\x96\x19\x4b\xfd\xd8\x6d\xff\x7e\xa2\x74\xa7\x76\xce\xb2\xfc\xe5\xcb\xfe\xf1\xfd\x67\x3a\xaf\x7c\x85\x87\x66\xb7\xbf\xac\x1b\x9f\x9a\x34\x4c\xe4\xb4\xb1\x3f\xcf\xd7\x66\xa2\xfc\x85\x8f\xe3\xba\x2d\x17\xba\xfb\xd4\x4f\x07\x7e\x47\x3d\x0f\xe2\xcf\x4b\xcf\xcb\x98\x8e\x74\xf7\xd8\xce\x6d\x32\xb7\x3f\xf6\xe7\x79\xfe\xc3\x27\x4e\x1b\x19\x18\xa7\x1e\x35\xcb\x1f\x9e\xda\xf9\x6b\x7b\x62\xd2\x41\xde\xc0\xd0\x37\x5e\xd6\x71\x4a\x64\xec\x87\xa2\xa8\xfe\xfb\xf7\xcb\xcc\xd7\x98\x2c\x7f\x6d\x76\xcf\xc3\xb0\xf2\x46\xa1\x2c\xf4\xcc\xcf\xd7\x66\x47\xbf\x0c\x99\x82\x6c\xe5\x5c\xfc\x7d\x3d\xfa\xe3\x69\xea\x6f\x8d\xd6\xeb\xe3\x74\x63\xbf\xb4\xe9\xc8\xd9\xc7\x60\x4a\x73\x4f\x52\xec\x3d\xf9\x10\xbc\x50\x55\x80\x2a\x03\x8a\xa0\x83\x52\x2f\x14\x8d\x50\xad\xa7\xea\x12\x54\x82\x22\xc8\xb7\x20\x34\x06\x8d\x97\xe2\xa3\x91\x78\x1b\x07\x21\x14\x1f\x4d\x10\x6a\x71\x0a\xc5\x47\x13\x41\x4e\xc9\x09\xd9\x02\x54\x29\x55\x20\x03\xf2\x4a\x1e\x64\x85\x3a\xcd\xea\x90\x65\x9d\x10\x2b\xb1\x52\x09\xd2\x78\xd6\xf8\x0a\xa4\xf1\xac\xf1\x35\xa8\x53\xea\x40\x32\xbd\x2b\xf1\xd8\x28\x3e\xda\x00\xb2\x4a\x16\x14\x41\xa5\x92\xbc\x9c\xe8\x0a\x50\xad\x54\x83\x0c\x28\x28\x05\x90\x4c\xef\x6a\xcd\xaa\x91\xe5\x64\x7a\x17\x30\x2a\x8a\x8f\xae\x04\x55\x4a\x18\xd5\x55\x20\xaf\x84\x37\xe1\x6a\x10\x2b\x31\x08\xd3\x47\x6d\x8c\x3a\x44\x90\x95\xbc\x2d\x83\x7c\x97\xcb\x70\x5b\xce\xee\xbc\x2c\x9c\x36\x5c\x05\x2c\xa1\x6c\xd1\x98\xf8\x76\xcf\xe6\x69\x96\x2e\x7c\xfe\x06\x00\x00\xff\xff\x51\x31\x38\xdc\x93\x03\x00\x00"); -func _gfg ()([]byte ,error ){return _dc (_aa ,"90msp-RKSJ-V")};var _adgf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x4b\xcf\x27\x41\x76\x9f\x89\xed\xfb\x53\xd4\x52\x5e\xc8\xcc\xb8\x9d\x88\x00\x1a\x05\x58\xa2\x29\x73\x21\xdb\xb0\x24\xdb\x80\xe1\x45\x5e\x39\x0d\x0c\xbb\x89\x26\xb5\xd0\xb7\x1f\xc4\xf3\x44\x91\x83\xc1\x60\xaa\x36\x15\x6f\xfe\x33\xe3\x1e\xe7\x16\xe7\x9c\xdf\xdf\xfc\xc7\xbf\xff\xdb\xbf\xff\xf3\x9f\xfe\xe5\xc7\xdf\xfc\x3f\xff\xfa\x97\xfb\xbf\xbc\xff\xf2\xe3\xfb\xd3\x9f\x9f\xbf\xbe\xff\xfc\x97\xff\xfe\xd7\xfb\xfd\x71\xbd\xff\xf0\xa7\x3f\xff\xe1\x0f\x29\xff\x78\xfe\x74\xff\xcb\xaf\x3f\xf9\xef\xfe\xc7\xf3\x9f\xfe\xf0\x87\xf5\xfd\x7f\xf9\x1f\xff\xfc\x2f\xef\x3f\xfe\xfd\x9f\xbf\xbf\xfc\x28\xbe\xf7\xfc\xf7\x7f\xda\xef\xfe\xf8\xf1\x37\xff\xaf\xf7\x1f\xfe\xf4\xcf\xff\xf2\xd7\xff\xf1\xe3\xdf\xfd\x5f\x9e\xbf\x5c\xef\xff\xe9\xc7\xf3\x7e\xeb\xf9\xff\xe3\xaf\xcf\xfb\xd7\x3f\xfd\xf9\x1f\x7e\xfc\xbb\xff\xf4\x1f\xd2\xbf\x3e\xfd\x2f\xff\xfd\x9f\xfe\xe9\x7f\x7e\xff\xf1\xfd\xf3\xbf\xfc\x68\x3c\x7b\xff\xfc\xf0\xff\x1f\xfe\xe6\x3f\xfe\xe7\xf3\x9f\xfe\xef\xe7\x3f\xbe\x3f\xfe\xe6\xbf\xfd\xf9\x4f\xff\xe9\x3f\xfc\xfb\xff\xf6\x5f\xff\x2e\xc5\xbf\xff\xbf\xf1\x2b\x3f\xfe\xbf\xdf\xbf\xfe\xf3\x9f\xfe\xf2\xe7\x1f\xe9\xff\x7c\xa4\xf8\xb7\xc7\xff\xf5\x7f\xfc\xd3\xfb\x23\xed\x4a\xfe\xbf\xff\xed\xef\xff\xf6\xc7\xff\x2f\xfd\x48\xc7\x8f\xdc\xe2\x48\xff\xff\xfd\xfc\xff\xf3\x9f\xff\xf2\xbc\x3f\x0e\xff\x2a\xf6\xfe\xfe\xcb\xf3\xfe\xf3\x3f\x9d\xf7\xfb\xd7\xf3\xcf\xff\xf0\xfe\xe1\xc7\x8f\x3f\x1e\xc7\x71\xfc\xfc\xb1\xfe\xfd\xf1\x6f\xfb\xdf\xfd\xdd\xcf\xf5\xec\x6f\xc7\x71\xfc\xed\x7f\x5c\xcf\xff\xf8\xb7\xff\xe1\xef\xfe\xee\x6f\xff\x6e\x3f\xff\xbf\xfe\xdb\xbb\x7f\xc7\xb3\xf7\xcf\xcf\xff\xa6\xc6\x3f\x24\x1b\xfa\xf3\x5f\xfe\xe5\x79\x3f\x9f\xed\x36\xfe\x78\x1c\xe9\xfb\xf9\x23\xad\xaf\xfe\xd7\x3f\xff\x21\x1d\xc7\xee\xdd\x9f\x9e\xfb\x7f\x3a\xff\xba\x3e\x38\x8f\xf5\xe6\x2a\xd4\x9f\x3f\x52\x74\x8a\xed\xe7\x8f\x9c\x4b\xab\xfc\xd1\x7f\xfe\x48\xdd\x57\xc6\xcf\x1f\xe9\xc8\x14\xe7\xcf\x1f\xbd\xa7\xb2\xca\xd7\xaa\x22\x78\x7c\xa5\x9f\x3f\x52\xa6\x92\xab\xff\xfc\x31\xe7\x2a\x3d\xab\x86\x3c\x56\xf1\x3d\x7e\xfe\x08\x2b\x7b\xd3\xcf\x1f\x11\xbc\xf0\x8e\xf5\xb4\x51\x9c\xab\x48\xb5\xef\xf9\xf3\x47\x4c\x8b\xf7\x7a\xea\xbb\xcf\x2a\xd2\xc2\x97\x7f\xfe\x88\xc1\x0b\x5f\x59\x45\xea\xfd\x68\x8d\x77\xbf\x55\xd9\xf0\xdd\x55\xd9\xa0\x89\x6f\x55\x36\x57\x77\xd3\x41\x1f\x56\xcf\x52\x5a\x35\x74\x9e\xa6\x6b\x15\xd7\xe0\x53\xa6\x18\xab\x58\xeb\xfa\xcc\xe2\xea\xef\xec\x14\x57\x77\xc6\xb1\x8a\xb1\xde\x1d\x7c\x76\xbf\xeb\x33\x9e\x3e\x8c\x98\x26\x1e\xfa\x4b\x13\xcf\xaa\x6c\x50\xd9\x13\xab\xe8\x0b\xab\xde\x31\x29\x32\x78\x6b\xa0\xbf\x6b\x6c\x89\x01\xcd\xf5\x6e\x6e\xab\xeb\x73\xb5\x96\x83\xe2\xfa\x2c\xdf\x6b\xf0\x47\xa2\x38\x57\x71\xd5\x90\x9f\xb9\x96\xe2\x58\x6f\x54\x86\x7c\xac\x2a\x2a\x55\xd4\xf4\x87\x3f\xa6\xb7\x7c\xab\x8a\xf6\x87\x3f\xe6\xe3\xc8\xac\x6c\xac\x72\x3a\xa8\x23\x0d\xfe\x28\xab\x96\x74\x50\x5e\x9b\xe5\xe0\xfd\xd4\x78\x9c\x28\xc7\x7a\xdc\x57\x31\x67\x97\x3f\x1f\xd9\x17\x32\x65\x5e\xa0\xba\xb2\xea\xee\xd4\x56\x7c\xa3\x50\xbe\x7e\xfe\x48\x6b\x16\xf3\xd1\x9e\x9f\x3f\x9a\x75\x9c\xb7\x3b\x72\xbd\x92\x8e\xb2\xf6\x5b\xa3\xe8\x97\x95\x32\xa3\x4c\x3c\xa7\x23\x6b\x35\x73\xca\xc9\x31\x04\x7f\x38\x38\xde\x9f\x79\xb5\xc4\xeb\x73\xd5\xb8\xd6\x20\xe7\x63\xed\xf1\xd2\x29\xae\x43\x54\xd6\xbb\x39\xad\x4a\x4a\xa1\x48\x93\xf9\xa0\x7c\xae\xc7\x93\xe2\xf3\xf3\x47\x6a\x89\xe2\xbb\x8a\x54\xb1\xce\xe1\x9c\x99\xc7\x79\x0d\xb8\x66\x8a\x4c\x65\xb6\xdc\xd6\x63\xdf\x58\x4b\x56\x82\x22\x35\x37\x8a\x6b\x46\xaa\xc5\x55\x73\xe5\x85\xb2\x56\xa0\xd1\xf4\x9a\xbe\xd4\xe8\x7d\x59\xe3\x2e\xf4\xad\xac\xad\x50\x7c\x4a\xdf\x78\xba\xb6\x6e\xaa\x7c\x56\xef\x55\xe4\x85\xc6\x62\x65\xc6\x17\xab\x9b\x8d\xae\xad\x8d\x95\x2a\x03\x99\x8c\xda\x29\x9a\xab\x9b\x95\x79\x39\xe9\x3c\x35\x5f\x0e\x95\xce\xbd\x9f\xcb\xbc\xc8\xd6\x26\x35\xff\x3b\xc4\x27\x97\xb4\x96\xa0\xae\x66\x1b\x74\x68\x9d\xe0\xdc\xce\xd5\xec\x3a\x53\xb9\x5d\xac\x11\x2f\x5c\xac\xd1\xea\x57\xbb\x59\xdd\x49\x11\xea\x34\x28\xae\x79\x5a\x54\x24\xb7\x75\xfe\xd2\x22\x12\xb9\xdd\xab\x2b\xeb\x04\xe7\x58\x9b\x25\xad\x73\x9d\xe3\xa0\x86\x42\x91\x6d\xb3\xa8\x44\x8e\x0a\x25\x4b\x14\x57\xcb\xb1\x3a\xf1\x8e\x63\x6d\xbe\xba\x28\x58\x7e\x47\x5a\x7f\x1c\xcc\xca\x3b\x2a\x7f\xb0\xec\xef\x18\xfe\x51\xf9\xe3\xf2\x8f\xc6\x1f\xec\xde\xc3\xda\x66\xf7\x0f\xbe\x39\xfd\x83\x4e\xbd\xe7\xe9\x1f\x54\x7d\xbe\xfc\xc1\x34\xbc\x6b\xec\xeb\x8f\xcc\x1f\x56\xcd\x5a\xbc\xb7\xdf\x2c\x9a\x90\xbf\x45\xfc\x2b\x94\x38\x7f\xeb\x9c\xd7\xce\x59\xfc\xd6\x91\xae\x3d\xfb\xbc\xf0\x7c\x52\xae\xeb\x7d\x8e\xc0\xc7\xe4\x1c\xa9\x24\xfe\x08\x36\x97\x1f\xf7\x9f\x3f\xea\x08\xcb\xe3\xe7\x8f\x92\x8b\x8d\x4d\xde\xb1\xd2\x73\x3d\xe7\x30\x7f\xc7\xf5\xf3\xc7\x1c\x3e\xbe\x57\x5b\x61\xfd\xcf\xaa\x86\x83\xfd\x1d\xef\x2a\x77\xfb\xf0\xfd\xfc\x91\x8f\x49\xb3\x8b\xdc\xb4\x23\xd1\x14\x27\xae\xda\x9d\xb5\x4d\x72\x63\x9f\x7c\x8b\x0a\xd5\xc1\x54\x7e\x8b\x0a\xd5\x9e\x2c\xb7\x55\xae\x96\x25\x43\x6c\x8b\x2f\xf5\x9f\x3f\x4a\x71\x2c\x69\xed\x7e\x4f\xc2\x97\xe6\xcf\x1f\x75\x72\x98\x3e\xce\x71\xce\xbe\x7f\xad\x4e\x64\xdf\x59\x03\xc8\xc3\x86\x9f\x9f\x3f\x72\x75\x42\xd7\x09\x6f\x2d\xfb\xfc\xfb\xf9\xa3\x84\x0b\xb0\x8e\x78\xa9\x90\x97\x6f\xd1\x9d\x16\x76\x74\x91\x9d\x94\x9a\x33\xb1\x0e\x7f\x19\x1c\xdd\x2f\x57\x08\x88\x1f\x2f\xae\x3b\x33\x0d\x2c\x3a\x59\xa3\xd1\xb9\xdc\x17\x19\x2c\x56\x0a\x75\x1a\x3e\x9f\x3f\x7f\x94\x59\xfd\xf6\xfc\xf9\xa3\x95\x83\x59\x5f\xf4\xa2\x94\x69\x5b\x8b\x77\x1c\x87\xdf\x3e\xeb\x79\xf2\xfd\xc5\xa0\xd2\xee\x0f\x27\x64\xd0\x9f\x45\x94\xf3\x31\x19\x58\x61\xa7\xbb\xd8\x25\x73\x5e\xa8\xbf\x14\xbe\xf5\x9d\x0a\x0d\xf5\x79\x63\xf5\xe8\xdb\xa2\x43\x2d\xef\x7a\x56\xff\x4b\xf8\x7c\x70\x72\xad\x73\xae\x71\x39\x96\xb2\xfa\x1f\x4e\xdc\xe2\x00\x2d\x0e\x26\xae\xdc\x6b\x8c\x2e\x00\x54\x6c\xef\xa6\xf2\xc2\xe4\x5d\xbd\xc5\xbc\x4a\x85\x66\x7f\xeb\x04\xd7\xe6\x20\x2b\xfc\xcd\xad\xbe\x8e\x73\xe9\x4e\x4a\x2d\x50\x38\xbe\xad\x9c\x60\xb7\x4d\x6d\xc8\x31\x3e\x8f\xb5\x48\x10\xee\xaf\xae\x1d\x94\xeb\x6f\xc9\xd9\xb7\x88\x6b\x2d\x6e\xaf\x3a\x29\xdb\xa9\x75\x48\x47\xb5\x23\x6b\x75\x52\x66\xa4\x8b\x02\xd7\x56\x6c\xf0\x81\x92\xfa\xed\x5a\x9d\xe6\x8a\xd4\x8f\x8e\xf0\x4e\x83\x1d\x43\xb6\xbe\xc5\xbc\x73\xf7\xdb\x45\xbe\x4b\x85\xec\x7f\x6d\xed\xae\xc3\x81\xb6\xba\x9e\x7b\xb6\xda\xda\x5d\x47\xf3\x5b\x76\x57\xf2\xb9\xe2\x9d\xef\x0f\xce\x93\xef\xac\xd5\xd9\xbb\xa2\xad\xe3\x7d\x24\xcb\xd7\xcf\x1f\xf5\x57\x1f\x16\x5d\x9b\xae\xf8\x62\xd6\x25\x3b\xd9\x6d\x9d\xef\xa3\x5a\xff\xb7\xe6\xc1\x33\x0a\x6b\x19\xee\xa2\xc5\x5b\x4a\xf7\xc8\x85\xbb\x8b\x3a\x63\xf5\xbf\x48\x1b\x62\x9d\xef\x1c\xcc\x55\xb4\x75\xcc\x9c\xdb\x88\x9f\x3f\x7a\xda\x75\xf6\x9f\x3f\xfa\x71\x58\xcf\x80\x66\xbb\x35\x03\xba\xee\xb7\xf6\x9f\xfe\x2c\x29\x2d\x8f\xfd\xfe\xea\xff\xd8\x75\x3e\xcc\x27\xeb\x15\xef\x9a\x37\x8f\x7a\x7c\x9c\x26\xde\xef\x1e\x6f\xaa\xef\x09\x21\x04\xbe\xf1\xf5\x35\x00\xf9\xe7\xd7\x0b\x83\x67\x00\x7d\xed\xae\x56\x2c\x2f\x02\xb5\xe9\x65\x8f\xd5\x18\xb4\xfd\xeb\x6b\x00\x65\xfa\xce\xf8\xf9\xa3\x67\x09\x78\x5f\xc7\xbb\xbb\x60\xfd\x5c\x84\x7a\xd7\xbf\x16\xa0\x38\xd1\x7d\x0d\xa0\x4e\xeb\x81\xc9\xbb\xd8\xfd\x65\x82\x58\xd4\xfe\xf1\x9c\x6f\x17\x27\x8b\xf0\xc8\x2d\x46\x56\x32\x6c\xe8\x1b\xab\xff\xd9\x3e\x8f\x02\xe9\x61\x5c\x8b\xbf\xd5\x06\xab\xff\x06\x4a\x81\x74\x74\xac\xd3\xa1\x34\xf6\x8d\x75\xbc\x37\xa9\x5a\x2c\xb0\x36\xf9\xc0\x58\x1a\x42\x81\x4b\x7d\x63\x2d\x40\x71\x73\x0f\xd8\xf4\xde\xd1\x8b\x33\x76\xa5\x8d\x6f\x3c\x9c\x69\x3b\xc4\x0e\x6a\x96\xd7\x0a\x4c\x77\xf4\x94\xc3\xd1\xd1\x89\x98\x30\x5d\xca\x25\xcc\x8d\xc3\x91\x4d\xb9\x25\xad\xcd\x35\x82\x4d\xd0\x96\x0c\x93\x46\xb6\x22\x38\x9c\xdb\x6f\x71\xe4\x5e\xab\xcf\xd7\x0a\x34\x09\xe6\x44\xc7\x71\xf5\x26\x1c\x42\x56\x39\xd7\x0a\xa0\x36\xe4\x6f\xae\x23\x8c\xde\x90\xbf\x09\x81\x95\xd0\xcd\xb5\x02\xe3\xb0\x5d\x06\xe0\x6a\x23\xe6\x64\xb7\x1c\x72\xce\xec\xf2\xb8\x73\xf1\xe8\xe4\xe8\xcf\xb5\x04\x19\xa1\xe5\x43\x2d\x9b\xd3\x7d\x83\x62\xd6\x64\xe4\x67\x40\xb9\xfc\x60\x8d\xa0\xbb\x36\x4b\x49\x1b\x45\x26\xba\xb4\xb4\xa4\xb8\xfb\x21\x5d\xb4\xea\xb7\xd7\x1a\x65\x6d\xbf\xa5\x68\x4b\xee\xae\xc5\x61\x9c\xeb\x84\x1c\xbf\x6a\x5b\x04\x38\x24\x3f\xe7\x62\xe1\x9b\xb6\xa2\x0b\x76\x77\xc0\x52\x06\xc7\x26\x63\x4b\x90\xcb\x79\x97\x19\x9e\xe4\xe4\xaa\x3f\x7f\x8c\x4d\x72\xae\xf6\xf3\x47\x9f\xd6\x79\xad\x23\x3e\x25\x93\x4b\x93\x2c\x55\xe6\x76\x0d\x48\x1d\x73\x7f\xc1\x00\xe5\xd4\xd7\xb9\x46\x7d\x30\x1b\x17\x2a\xc4\xfe\xf6\x46\x28\xb4\xfc\xfc\xfc\xd1\x37\x47\xbe\x58\x1f\x77\xe7\x92\x5c\xdb\x26\x6f\xf7\x81\x78\xc4\xfb\x37\x1b\xcc\xd3\x78\xaf\xfd\xd5\x3d\x2d\x77\x59\x6d\xc9\x78\xef\xba\xa4\x1d\x49\xd4\xbd\x56\x67\x9f\x84\x25\xa2\x8e\x82\x86\xf4\x2d\x19\x35\xff\xaa\x73\x09\x89\x69\x48\x97\x96\x8a\x56\xaa\x1c\x6d\x09\x72\x69\x4a\x7f\x6e\x15\x50\x1b\xbb\x7f\xfe\x98\xdd\x13\x72\x2b\xc7\xdb\xd1\x97\x41\xfa\x0e\x0c\xd0\x8d\xf7\xc8\x23\x78\xff\x59\x0b\x50\x24\x0f\x4b\xf9\xec\xc3\xc5\x7b\xd6\x00\x32\x22\xec\xb7\x34\xd1\xae\x60\xff\x3d\x8b\x44\x8d\x75\xea\xca\x81\x92\xb5\x16\xbe\x1c\x8a\x86\x95\x22\x92\xd5\x91\xfd\x83\x5d\xe7\x3b\x09\x0d\x62\xad\x6f\x41\x51\x4c\x16\xe1\xd3\xc7\xd1\xfc\xe3\x53\x89\xeb\xeb\x8f\x09\xe3\x2d\x4b\x5e\x5f\xec\x8a\x3f\xd6\x54\x97\x63\x86\x7f\xd0\xc6\x87\x80\xcc\x18\xca\xf1\x0d\xff\xe0\xb5\xa5\x0b\xaf\x3f\xe8\xed\x77\xfa\x07\x7d\xf9\x2e\x55\xcf\x82\xaa\xbf\x74\xbf\xf5\x47\xca\x10\xda\xd5\x78\x2e\x5b\x27\xe4\x8f\x93\x91\x1e\x6b\xef\x94\x72\xfa\xcb\xa2\xfd\xa5\xdc\xd5\x3f\x06\x7f\x38\x94\x35\xfb\xa5\x3c\xcd\x0a\x56\x4f\x6a\x55\x88\x5f\xe4\xb0\xd4\x2e\xf1\x59\x0b\x56\xda\x54\x88\x67\xc4\x71\xec\x3f\x56\x05\x91\x94\xdb\x97\xd6\x56\x66\x52\x73\x58\x7c\xab\xcc\xf0\x35\xe6\x62\xde\x9f\x7f\xac\x59\x9a\xcf\xe1\x1f\x7c\xf3\xec\x5f\xe2\x0f\x7f\x2c\xe7\x6e\x74\x09\xe9\xe5\xaa\x56\xd0\xd7\x78\xee\x5d\xdb\xda\x0f\xe5\x7e\xad\x60\x31\xef\x7a\xb4\xf0\x8f\xf1\x87\x3f\xd6\xd4\xac\x6d\xb1\xdd\x5a\x8a\xe3\x59\xca\x58\x2d\x6a\xde\xc7\xe2\x73\xb5\x5c\x2a\x3f\x8b\xcc\xd6\xf2\x3c\xfe\xb1\xbe\xa9\x8f\xb5\xad\x75\xaa\x51\xfd\x66\xad\x53\x8d\xf0\x9b\xb5\x4e\xb5\x67\x3b\xba\xb6\x7f\xed\x79\xfa\x47\x5b\x7f\xf4\xfd\xcd\xaa\xba\x0f\xab\x5e\x04\xad\xce\x3d\xbd\x6b\x45\xeb\xec\xcc\x1b\x76\x8d\x3a\xfb\xe3\x1f\xab\xea\x89\x2e\x36\x8e\x75\xe4\xea\x9c\x97\xbf\x50\xc1\xfc\xfc\x63\x55\x3d\xaf\xf0\x8f\xf9\x1b\xda\x57\xe7\xd5\x7d\x73\x4d\xd0\xdd\xfd\x63\xc9\x3a\xf5\x3e\xb3\x7f\x74\xfe\x28\xfe\xb1\x06\xfb\xa8\xb5\xa5\xc5\x63\xea\xfb\x6f\xea\x58\x7d\x97\x3a\x96\xe0\x2b\xf5\x5d\xea\x58\x3a\x58\x93\xfa\x1e\xc8\x6b\x8b\x60\xd6\x77\x1d\xa8\xd2\xd7\xb9\xac\xef\x52\xb5\x6a\x5d\xfb\xa3\xbe\x4b\xd5\x2a\x79\x58\x86\x95\x2e\x22\x59\xdf\xa5\x6a\x95\x31\x7c\x1f\x46\x34\x7d\xfe\xa0\x6e\xd8\xd8\x0b\x05\xb7\xfc\xd9\x30\x2f\x2d\x65\xab\xa2\xb7\xd4\x57\xf3\x86\x2f\xa5\xdd\x3b\x6a\x45\xdb\x8a\x45\x9e\xeb\xbb\xb4\xad\x82\x89\xa3\xbe\x6a\x5b\x87\xe5\x40\x2a\x62\xc8\xa9\xfb\xb1\xb5\x2e\x5a\x8d\x4e\x5f\xdf\xa5\x6d\x25\xc4\xde\xfa\x26\xa4\x99\x66\x2f\x2e\x4c\x1e\x36\x76\x63\x42\xf1\x9d\xc5\x4b\xdb\x61\x3d\x2f\x8d\xd1\x09\x34\xa9\x66\x87\xb2\x07\x77\x30\x8f\x19\x51\x2b\xa8\x74\x69\x52\xf5\x70\xbe\xb4\x38\x1d\xc3\x2f\x90\xe4\xd9\x7d\x6f\x1e\xbf\x14\xe4\xfa\x66\x6d\x65\xc3\x1f\x4e\x58\x98\x3f\x28\xed\x32\x84\xa5\x4b\xb5\xbe\x6b\x5d\xda\x6c\x5b\x47\xb9\xbe\x18\xb2\xc2\x65\xde\x84\xc5\x25\x41\x69\x2a\xd9\x97\x76\x5f\xf9\xba\xd0\x57\xbb\x51\xa4\x24\xc3\xb7\xe2\x97\xa2\x5e\xdf\xe2\x54\x72\xa2\xde\xa5\x37\x15\x88\x57\x7d\x0b\xe6\x17\xa7\x60\xe9\x4d\xa5\x87\x1f\x5f\x08\x98\xb6\x20\xe1\xe3\xd0\xbd\x4b\x71\xca\x6d\xf7\x63\x6d\xd0\x92\x6c\xe1\xfb\x65\x0a\xa8\xef\xd2\x89\xf2\x70\x10\x55\xb2\xc7\xb9\x7c\xab\x62\x1f\xbd\xa8\xce\xa5\x9b\x6c\x1d\xcb\xda\x13\x2d\x2c\xc5\x27\xf7\xea\x07\x4b\xf1\xc9\xee\xa5\xa5\xf8\xac\x0f\xe8\x77\xa5\x7f\x1e\x8d\x45\x21\xca\x48\x3e\x5f\x73\x59\xdd\x1a\x8b\x76\xa5\x19\x96\x3f\xa4\x79\xc6\xb9\x34\x9f\x5c\xad\xa7\x39\xc7\x0e\x14\xd5\xe7\x28\xf4\x7b\xa9\x3e\x79\x86\x1f\xb0\x59\x2b\xdd\x6e\x4e\x31\x04\xe4\x5d\x64\x2f\x0d\x67\xb2\x69\x2d\x3d\x7c\x6b\x29\x0f\xd9\xa6\x97\xf2\xa3\x61\xa4\xbe\x0d\x23\x86\xdd\x6e\x10\x9c\x69\x6b\x4b\x49\xd8\xeb\x86\x92\x93\x1a\x2d\x2f\x25\xa7\x0c\x97\x04\x25\x67\x3a\xb4\xe0\x98\xb8\xeb\x97\x6e\x52\x7b\xa6\xbc\x94\x8a\xdc\x5d\xce\xa5\x54\xe4\xf0\xc4\xa0\x53\x1c\xc9\x73\xb5\x08\x7c\xc9\xc1\x90\x97\x70\x5f\x92\x1f\x2c\xc1\x7d\x64\x3f\x58\x42\x79\x6e\x83\xc1\x0c\x47\x56\xf2\xef\xa8\x1c\x56\xab\x5a\x3c\xc9\x4b\x64\xaf\x0d\x3a\xf9\x8e\xd3\x1a\x6c\xe6\xe2\x88\x33\x69\xe3\xfe\x65\x1b\xaa\xef\xa2\xd3\x35\xdc\x28\x88\xec\xd9\x9d\xbf\x44\xf6\x5c\x25\x52\xf3\xb0\x22\x26\x61\xc9\xec\xb5\x04\xad\x61\x7f\x9d\x92\x8a\x89\x55\x2a\xf3\xf1\x92\x0c\xca\xc8\x3e\x67\xf7\x39\x99\xd3\x03\xcb\xe4\x63\x82\x3c\x92\xcb\xb8\x64\xf3\x7a\x38\xf0\x45\xf8\xcb\x74\x96\x17\xf7\x1d\xe1\x0a\x4d\xf6\x7a\x66\x34\x4b\x06\xd7\xa2\x55\xdf\x13\x35\x54\xa2\x06\x59\x47\x22\xa9\xaf\x42\xc1\xde\x40\x4b\x06\xcf\xc9\xb3\x8b\xc5\x73\x48\x29\x96\x08\x5e\x93\xfb\x8a\x6b\x92\xec\x14\x71\x4f\x32\xab\x8d\x4d\x74\x7f\x1b\x70\x4e\xf7\x1f\xf4\xb4\xd8\x00\xcc\xcf\xbd\xb7\xc4\xec\x12\x0e\x19\x76\xd2\x64\x0e\x4b\x82\x2e\x9b\x6a\x5e\x1a\xc1\x78\xe7\xaa\x56\x4a\xb7\x2f\x24\x38\x39\xcb\x75\xfe\x32\xd6\x55\x6c\x86\xb5\x3b\xe4\x8b\xcd\x3a\xe9\xdd\x8d\x46\xeb\xea\xdf\x28\x84\x4e\xe9\x8d\xc5\xd0\x86\x6f\xd6\xc6\xbd\x77\x63\x71\xf3\xb8\x21\xee\x66\xb9\xd5\x12\x77\x0b\x42\x4f\x7d\x31\xc9\xee\x1d\x75\x73\x63\xb4\x4f\xc6\xcd\xae\xb7\xd7\xda\x2d\xab\x1f\xc0\xac\xdd\x20\xf7\xed\x07\xfe\x81\x4d\x61\xb7\xf0\xc2\x28\x18\xfe\xe3\x31\xe1\xf9\xe3\x31\x69\xfe\xb1\x56\x6d\x73\x9c\x25\xd8\xd6\xb0\xe5\x25\xae\x95\xea\x79\x5b\x92\x4a\x69\x0e\xe7\x59\x34\xac\xba\x1d\x1f\x4c\x53\x1e\xab\x67\x31\xdc\x21\x81\x7e\x30\x5c\x56\xbf\x85\x13\x75\x9f\x7f\x1c\x43\xbe\x7d\xdd\xe3\x56\xf4\x62\x79\x75\x0d\x5e\x7b\x27\x5d\x7d\x0b\x26\x1e\x16\xea\x5d\x5b\x2a\x3c\xdc\x6f\x83\xda\x30\x82\x97\x4d\x2e\xc3\x79\xdd\xe4\xe1\x4b\x30\x4d\x9b\x7e\x59\x4d\xc4\xb8\xf7\x5d\x5b\xa7\xbb\x75\x3e\x04\x0e\x4f\xd1\x97\xfc\x98\xd9\xfe\xd6\x72\xee\x31\x7f\x2c\xa7\x32\xc0\xe7\xde\x71\x9d\x3f\x78\x7a\xf7\x83\x45\x4b\xf6\x78\x10\xc1\x93\x93\xb7\x44\xeb\x92\xdd\xc0\x0a\xd7\xbb\x4b\xdf\xa3\x39\x84\xf2\xeb\x0f\xf4\xfb\x83\x8a\x2f\x1d\xb7\x62\x9f\x5e\x3f\x04\x7f\x24\x0c\x55\x07\x65\x76\x06\x8c\x1c\x5b\x72\x4d\xf4\x15\xa3\x71\xc1\x60\x54\x31\x1a\x6b\xe8\xae\x18\x8d\xd3\x3a\xd9\xbf\xa1\x6e\x58\x94\x53\x40\x33\xb0\x28\x57\x84\xf9\x8a\x51\xb8\x36\x26\x07\xa3\x70\xcd\xec\x2c\x8c\xc2\x0a\xef\x15\xa3\x70\x3e\x8a\xef\x3b\xe3\x8d\xf2\x8b\x10\x41\xc7\x31\xfe\xee\xe7\xdc\xef\x14\xe6\xe9\xf3\xd2\xc9\x43\x86\xf5\xb7\x2a\x50\x7c\xca\x2c\x89\xad\x85\xf5\xb7\x14\x87\x87\xcc\x82\x49\xa8\x62\xfd\xcd\x98\x69\x2a\xd6\xdf\xda\xd9\xd2\x58\x79\x8b\x4b\x87\x95\xb7\xf6\x61\x03\x6b\x3a\x24\x2b\x58\x70\x93\x9c\xf5\x53\x1a\xc1\x12\x52\x31\xe1\xd6\x3e\x7d\xa9\xf8\x83\x7f\xb8\x09\xe8\x85\xd2\x48\x76\xc2\x0a\xdd\x38\xac\xaa\xfb\x03\xed\x21\x8d\x14\xf6\x25\x56\xdc\xf5\x03\x03\x42\x1c\x51\x82\xc3\x8c\xbb\x7e\xf0\xad\x9b\x1f\x2c\x3f\x74\x84\x26\x30\xc5\x56\x47\x87\x74\x51\x33\x9d\x5d\x32\x41\xe9\xce\x00\x32\x41\x85\x22\x60\x0d\xad\x01\x87\xc2\x1a\x5a\x25\xef\x58\x43\x6b\x76\xf6\x1a\x67\x0e\xfb\x42\xd5\x1c\x1a\xd5\x1f\x18\x68\xb6\x05\x84\x82\x09\x5b\xc7\x1e\xba\x7e\xa0\x1b\x8d\x09\x77\x79\x31\x88\x8e\xca\x16\x40\x26\xc8\xae\x68\x3b\x99\x7c\x66\xa6\x5d\xdc\x9b\x5b\x56\x08\x67\x68\x8d\x61\x0e\xbf\x85\x6e\xc0\x34\x34\x88\x76\xbb\xbd\x64\x85\x3c\x1c\x66\x60\x15\x81\x13\x69\xf8\xe4\xfe\xa2\x62\xf8\xac\x18\x8f\x2b\x86\xcf\xd5\x51\x2a\x0a\x77\x06\x23\x08\x6f\xe6\x1d\xce\x92\x2e\xf2\xf4\x34\x85\x16\x42\x6b\x85\xf0\x3b\xca\x25\x75\x4c\x0f\x13\xca\xa3\x9a\x0d\x06\xcb\xda\xdd\x9d\xdd\xbd\xe0\xf6\xec\x48\xa6\x8e\x1e\x0b\xe4\x70\x57\x2d\xb5\xad\x0e\xf7\x0b\x16\xc8\x43\x0e\x82\x09\xb2\x76\x78\x23\x26\xc8\x52\x3d\x79\x98\x17\x31\x55\xd5\x6d\x5e\x44\xc4\xc0\xbc\x98\x0e\x49\x0b\xf6\xc5\x91\x1c\xbf\xa2\x8c\xac\x02\x03\x63\xca\xee\x7a\xa4\x95\x8e\x30\xfa\x29\xad\xe4\xea\x0f\x17\x56\x57\x7f\xb8\xfd\x81\x11\x2d\x71\xa5\xd4\x6c\xdb\xaf\x3f\x30\x63\x83\x35\x71\x3a\x94\x57\x32\x04\x1f\x1b\x63\xc5\xb4\x55\x35\x25\x0e\x37\xfa\xdc\xbd\x65\x78\x33\x10\xc2\x7c\xa9\x63\x57\x64\x6e\x26\x96\x4e\x27\x73\xda\x0f\xd8\x11\x86\xc2\x8a\xaf\x45\xc5\x20\x58\x86\x1f\xa3\x4a\x86\xe7\xea\x74\xb3\xb6\xdf\xdd\x3a\x54\x8d\x82\xc9\x19\x45\x22\xa9\x2e\x13\x12\x49\x72\xe9\x4f\x54\x31\x27\x17\x89\x44\x79\x1b\xa3\x60\x1d\xd2\x81\xd3\x03\x8b\x52\xa3\xe1\x6f\x78\xdc\x4f\xd7\x35\x18\xd4\x12\x49\xca\x70\xcd\xce\x45\x77\x26\xac\x17\xe3\x5d\x49\x8d\xbe\x5f\xd0\x23\x37\xc8\x92\x24\xa6\xf2\x12\x86\xb3\x54\xe0\x8c\x18\xce\x92\xd2\x2a\x86\xb3\x3a\xdc\x1f\x08\x06\xdc\xa1\x54\x6c\x5c\x75\xec\x32\xec\x16\x59\x00\x1b\x57\x6e\xee\xb3\x25\x0b\xd4\x21\xf5\x5a\xec\xbc\x34\x37\x2c\xec\x3c\x3c\xc6\x8f\x34\xca\x33\xf7\x38\x64\xcb\x0e\x79\xbf\xc5\x90\x61\xe8\xdf\xc3\x90\xdd\x42\x30\x7d\x95\xc6\x6f\x31\xfd\x3a\x10\x12\xbe\xc5\xf4\x47\xa0\x56\x7d\x2f\x82\xbe\xa3\x94\xe7\x67\x27\xfe\x45\x52\x4b\x34\xf0\x06\x2d\x33\x45\xaf\xbb\xda\x5a\x61\xfa\x43\xaa\xb6\x98\x7e\x6e\xee\xbe\xd7\xae\x32\xce\x77\xa9\x1e\xc9\xb9\x78\xb1\x8e\x3b\x04\xae\xda\xbb\x73\xfd\xb9\x75\xdd\x0a\x4b\x00\xc8\x05\x5d\xf2\xfb\x76\x97\x98\xe1\xcf\x2e\xf9\x12\x2d\x4b\xb0\x3f\x66\xa9\xb8\xe6\xdf\xf9\xf3\xc7\x6c\xbe\xcf\x2a\xec\x8a\x3e\xdf\xe9\x7f\xf8\x63\xc3\xd7\x48\xfb\x7b\xc3\x30\x38\xf2\xaa\xa8\x1d\x07\x76\xf3\xee\x73\x0e\x66\x59\x94\xbf\x1d\xc7\xf5\xf3\x47\x9f\xe1\x0f\xcc\x76\xf6\x03\x66\xbb\xf9\xce\xeb\x07\xc1\x1f\x4e\xf7\x5c\x65\x7d\x51\x30\x6c\xb7\x23\x61\xd9\xdc\x3f\xe8\x44\x40\x4d\x49\xab\x65\xa2\x89\xb4\x64\xac\x52\x2c\xaf\x03\xc0\x95\x57\x3b\xb0\x45\xcc\xb0\x8c\xb4\xb1\x08\x4a\x3b\xb0\x45\x1c\x4c\x59\x3b\x92\xfd\xf3\x07\x0d\x97\x94\xb3\xdd\xc8\x74\x16\x36\x0f\x85\x6c\xb8\xb9\xd4\xb1\x9f\x07\x2d\x1f\x94\xbb\x1f\xd0\x57\x8c\x0e\xdc\x7d\xb4\x23\x4f\x06\xe7\x07\xdc\x10\x0e\x2b\xba\x20\x27\x8c\x27\xbb\x27\x19\x02\x36\x07\x2c\xbe\xed\xc8\xae\x09\x0d\x2c\xa6\x5b\xb9\x29\x6f\x7a\xcf\x1c\xa5\xfa\x87\xd7\x8b\x54\x5a\xdc\xd0\xd5\x3f\xd0\x20\x5d\x87\xca\x6e\xc8\x96\x95\xf4\x68\x99\xbb\xcc\xe1\x10\x96\x4a\x3f\xda\xa4\xd7\xd5\x1e\x59\xb6\xd2\x46\xa5\x95\x2e\xd9\x0d\x2e\x2d\x0f\xbb\xdd\x9c\x17\x86\x0f\xdf\xc4\x97\xa9\x1d\xcd\xae\xc6\xef\x54\xd4\x76\x2c\xae\x5a\xc2\xee\x06\xc4\x2e\x68\x31\xe8\x8a\xe3\x5b\x8c\xab\x23\x26\xb5\x63\x31\xae\x31\x5c\x2e\x6e\xda\xa6\xf3\xd1\x17\x79\x40\xac\x6a\x87\x3c\x6c\xbf\xe3\x64\xb2\xb1\xb8\x2d\xcb\x2e\x10\x7e\x1f\xb5\xf2\x0e\xec\xa9\x27\xda\xc2\xd1\xa3\x15\x16\x6e\x48\x1b\xf9\x16\x3e\x80\x9b\x55\x3b\xe0\x03\x47\xf5\xa0\x2c\xcd\x75\x60\xcb\x6b\x87\x97\x4a\xae\xc3\x09\x6d\x74\xdf\x9f\x2a\x07\x74\x54\xda\x5f\x9d\xe4\x93\xf9\x73\x7b\x9f\xe1\x0f\xd4\x7a\xe2\x98\x61\x37\xd0\x38\xf7\xd9\x38\xd9\x57\xc5\x8f\x6f\x28\x2e\x2d\x2f\x32\x3e\x7a\x63\x45\x97\x32\x39\x3b\x9d\x58\xba\x64\xdf\x0b\xcd\x6d\xcc\xb4\xd3\x17\xb3\xe8\x88\x2f\xdb\x75\x67\x5c\x7d\x8d\xa6\xd3\xd3\x0b\x0a\x55\xfc\x00\xbf\x83\x64\x45\x4b\xf5\xde\xef\x73\x75\x32\x1d\xcc\xa2\xf4\x23\xb9\x87\x97\x3a\x38\xa6\x7b\x18\xea\x3e\x1d\xa4\x37\x18\xd5\x29\xe2\x0a\xa3\x7a\x48\x96\x16\x37\x8a\xeb\xf7\x40\x4b\x3d\xdb\x0f\x37\x5b\xdd\x8f\x5f\xb6\x2a\x1d\x7a\x69\x4c\xfa\x24\xed\xb5\xce\x17\x8f\x90\x83\x75\x5d\xa4\x77\x4c\xeb\x7f\xd9\x4f\xee\x95\x57\xad\x8f\xce\x41\x6e\x87\xfb\x60\x11\xcf\xd2\x9c\x5c\xb5\x27\xee\x6f\xda\xf1\xb1\x31\x3b\x1f\x2c\x4a\x3a\x8e\xfd\xfc\xf4\x25\x76\x05\xea\xd3\x01\x95\x4c\x50\xcf\xce\xf0\xf1\x43\x4c\x47\xed\xfe\xe0\x7c\x25\xca\xc5\x1f\x1a\x7f\x70\x57\x06\x49\x4a\xfb\x4e\x66\xe9\x02\x2d\x1d\x4e\xc6\xa4\xcc\xae\xa8\xd6\xb4\x06\x97\xc2\x32\x7d\x1a\x36\x67\x9f\x96\xcc\xda\xd2\xc1\x49\xa8\xb4\x90\xa0\xe8\x9c\xdb\x94\xec\x13\x34\x29\x2d\x1a\x5b\xb2\x35\x49\x63\x2b\x34\x33\x25\x76\x4c\xf2\xa5\x46\x99\x26\x16\xbd\x9d\xa3\xd1\xc2\x22\x9f\x1d\xe9\xaa\x25\xc9\x67\x9d\x7c\xb0\xc8\x67\x6e\x2c\x44\x5a\x14\x70\x70\xdd\xdd\x52\xe1\xae\x8a\x43\x95\x96\xe2\x31\xa6\x53\xb6\x28\xdd\x98\x50\xfd\xb4\x28\xdd\x98\xc9\x77\x6e\xca\x7e\xfb\xfd\x72\x4b\x6a\xa9\x6a\xe2\xe6\x9d\xaa\xe5\x89\x61\xe2\xdb\x75\x34\xb6\x64\x82\x00\x16\x28\x01\x3e\x9e\x95\x9b\xa0\x96\xf0\x06\x41\x66\x68\xa9\x22\x56\x75\x2b\xed\x7e\x6c\xad\x03\x43\x81\x1f\x4f\x7c\x61\xfc\xf8\xf4\xa5\xdf\x49\x6f\x2d\xd5\x25\xac\x96\xdd\xdf\xdb\xaf\x6c\x13\x87\x04\x68\x65\xc2\xe4\xd9\x9c\x9c\xa5\xde\x74\xa9\x4c\x6a\x2c\x45\x73\x4b\x60\xf2\x44\x12\x68\x49\xa2\x1b\x0c\x10\x6f\x8f\x01\xf9\x4c\x8b\x00\x27\x3c\xd9\x5a\x92\x00\x37\xa7\xb9\x61\xd5\xe3\xc0\xa6\xe0\x7a\xa3\xd1\x02\x6e\x17\x78\x76\xb5\x14\x78\x7f\x1d\x54\xba\x74\x8c\x91\xb3\xef\x38\x58\xa8\x00\x5e\xb0\xd3\x4d\x13\xdc\xbd\x4e\xdf\x5f\xa3\xc1\xb7\xa6\xa5\x50\xac\xb3\xad\xcf\x6f\xe9\x11\xa6\x50\x29\x4b\xea\x3a\x01\x32\x32\x4d\xa1\xcd\x0d\xde\xb9\x5d\xac\xbe\x54\x71\x0d\xa0\x77\xa8\x2b\x92\x96\xd4\x31\x47\x79\x6a\xb8\xb9\x51\x22\x48\x1d\xef\x47\xf7\x7d\x5f\x64\x32\xdc\xf7\xdd\x11\x54\x2b\xba\x50\x93\x6c\x6c\xa9\x4f\xc9\x91\x75\xb4\x07\x3f\x18\xfa\x49\x31\x9c\x81\x04\x0a\x75\x4f\x23\xff\xf2\x78\x6b\x09\x87\x89\x61\x63\xe8\x2d\x1d\x12\x92\x06\xb7\x39\x4e\x35\xea\x49\x72\xf5\x31\xa6\x16\x4f\xe8\xcc\x18\xd4\x19\x0c\x36\xd0\xee\x20\x67\xfc\xf2\xa2\x6b\x69\x72\x99\x61\xbb\x73\x28\x41\xd1\xf0\xe4\x5e\x3c\x68\x78\x3a\xb2\x46\x4f\xb9\x15\x2b\xd5\x1f\xf0\xdd\x41\xd6\x49\xfa\x5e\xda\x3b\x2f\x40\x5b\xd0\x1c\x4e\x09\x28\x27\x2d\x69\x11\x6d\x88\x4d\x69\x71\xa8\x8a\xe5\xa2\x25\x19\x14\x64\x39\x9d\xd7\x2f\xcf\xbe\x96\x4e\xaf\x73\xfc\x18\x83\x8d\x07\x08\x17\x81\x64\xcb\x17\x73\xe7\x98\xf1\xf5\xcc\x8e\x13\x87\x47\xc5\x98\xa4\x81\x13\x63\x4d\x4b\x8b\x2b\xe5\x0a\xd3\x4b\x17\xe6\xd7\x66\x45\x6b\x95\x9b\x44\x93\xfb\xff\xb6\x1b\x80\xa6\xbb\x1f\x2f\x5d\x10\x79\xe7\xe6\x2a\xd4\xe7\x4b\x15\x29\x87\xdb\xee\x86\xae\x36\x38\x66\xba\xf1\x93\x92\x34\xdc\xd0\x55\x89\x9e\x56\xcd\xe6\x30\x6f\x04\xf6\xb0\x26\x67\xdb\xf1\xe0\x8f\x5a\x3d\xc0\xf7\x8d\x29\xc5\x0f\x1e\x5c\x0f\x58\x05\x2f\x95\xdb\xee\xd3\x87\x88\x4f\x4d\x32\xc1\x66\x07\x1f\xae\xe7\x3c\xc1\x0f\xca\xad\xc4\xf4\x91\x5e\xb8\x7d\xb8\x8e\xdd\x94\xf8\x3d\x7e\x39\x55\xb6\xf4\xe2\xa8\xe4\x32\xbc\xfa\xf8\xb3\x54\x18\x11\x87\x24\xfd\xa5\xa2\xf0\xb4\x2d\xd6\x57\x0e\xf7\xfc\xfb\xfa\x83\x6f\xad\xfe\x15\x47\xfa\xd1\x42\x8a\xdf\xd2\xb7\xa5\x86\x8c\x24\xe9\x52\x0d\x89\x83\xbe\x7c\x08\x3c\x92\x4b\x39\x69\x48\x5a\xbe\xf6\xcb\x0b\xb4\xa5\x2f\x20\xc8\x36\xd9\x7d\xc9\x1f\x90\xe7\xdd\x2c\x8b\xdd\xee\xed\x0e\xb7\x2d\xfb\x95\x35\x53\x87\x1b\xf9\xbb\xa9\x93\x59\xc3\x54\x89\x71\xb7\xa5\x6f\x8f\xcf\x1f\x70\x55\x63\xd6\x32\xa6\x4a\x85\xea\x0c\x77\x96\x65\x65\x5d\x69\xeb\xa0\xcc\xa5\x0c\xc7\x26\xe3\x18\x11\xcd\xf7\x3b\xaa\xea\xa4\x8c\x3d\x77\x97\x51\xb0\x54\x42\xf2\x81\x9e\xcb\xf4\xe7\xa5\xff\xb4\xe3\xb0\x22\xec\x26\x48\x69\x78\x9d\x97\x69\x87\xd0\x72\x70\x53\x6e\x39\xc5\xcf\x1f\xd1\x92\xef\xb0\xf1\x39\xa2\x19\x3f\x82\x60\xe3\x67\xdc\x5b\x31\x36\x37\xdd\xd4\x3b\x32\x41\xf6\xc2\xb5\xf8\xdc\x65\x87\xdf\xe8\xc0\x5e\x58\x02\x5c\xd5\x8b\xea\x55\xe6\x62\x55\x6d\x29\x2f\xf5\x25\x4f\xb8\x01\xce\xea\xb9\x21\xb2\xe9\xad\x7e\x04\x7c\x45\x7f\x75\xee\xa7\x5a\xce\xb6\x90\xad\x09\x8b\x98\x73\x84\x27\xbb\xda\x42\xc6\x7c\x79\x04\x22\x68\x2e\x4e\x3c\x35\x15\x6c\x45\x1c\x08\x3c\xdb\x6b\x73\x22\x0b\x0e\x41\xdd\x32\x4c\xc9\xb9\x28\x13\xc1\x8e\x39\x2a\x3a\xd0\xfb\x8e\x3c\x96\x1e\x79\x33\x1a\x4e\x00\x5a\x11\xf7\x28\x2d\xeb\xaa\x82\x4b\x53\xcb\x15\x86\x8b\x3c\x96\x97\xb4\xa0\xc7\x41\xcb\x55\x73\x22\x1f\x57\x85\x65\xdf\x59\x52\x8a\xdc\x2a\x2f\xde\x5f\x66\xf5\x7d\xb8\xa1\xbd\x40\x73\xea\xcd\x6f\x1f\x2e\x0f\xe8\x69\xd3\x2b\x92\x6f\xf1\xea\x54\x62\xcb\xf0\xf3\xd8\xcf\x21\x4b\xbb\xe1\x06\x77\x73\x2a\x1a\x2a\xb5\x0d\x78\x53\x09\x43\xc8\x0d\xbd\x24\xdc\x47\x9a\x1f\xe1\x01\xf8\xf4\xd7\x8e\x60\x96\x83\x5a\x6d\x41\xd3\x62\xec\x97\xe0\x99\xd9\xf2\xf0\x07\xbf\x60\x86\x87\x3f\x9c\x90\x2b\x96\x70\xb1\xf4\x3e\x5d\x91\xd0\x22\x41\x37\xe0\xdc\xdd\x09\x86\x71\x1f\x11\x34\xd7\x9d\x3c\x2a\x5a\x9c\xbb\xef\x09\xe8\xec\x11\x0e\x6d\xee\xae\x08\x84\x39\x77\x3d\x54\x98\x99\x71\xf8\x03\x1b\x03\xf6\xdb\xc3\xb2\xec\x97\x0f\x46\x59\x02\x2f\x74\x2f\x8f\xb5\x3c\xc9\x93\xba\x58\x71\x39\x3c\x18\x03\x29\xa6\xd2\x8b\x71\xae\x21\x4c\x1b\xb8\x6c\xe0\xb7\xe4\x2d\x0f\x44\xcf\x5d\xdb\x83\x88\xcd\x60\x71\x54\xec\x8e\x75\x2e\x12\x88\x7b\x50\xcb\x53\x12\xe8\x4c\x79\xeb\xe9\x6a\xc3\x9b\x9b\x5d\xd4\x58\x18\x1e\x76\xbc\x0a\xb3\x44\x63\x7a\xb3\x42\x6b\x93\x69\x96\x38\x2c\x06\x9e\x13\xe4\x2d\x73\xa3\xa9\xe6\x92\x17\xff\x6e\x7b\xac\x18\x17\xdb\xf0\x9d\x01\x6b\xb6\x8c\x1c\x74\x58\xcf\x89\x50\xe0\xfb\xba\xd0\xf0\x0e\x7e\x3f\xcd\xd3\xaa\x27\x9f\xdb\x01\x36\x5d\xad\x73\xa9\x7c\xed\x70\xd9\x2f\x0c\xbe\xc8\x62\xf9\xd6\x21\xcd\x4e\xdc\x70\x03\x37\xd6\x9d\xfd\xc1\x3f\xb8\xb9\x83\xe9\x10\xc4\x54\xb3\x73\x27\xab\xed\x9e\x6f\x58\x6d\x97\x10\xcb\x6a\xbb\xf3\x72\xe3\xa6\x21\xa1\x78\x0c\x22\xe0\x03\x18\xe7\x41\x30\x53\xcb\x4f\xc6\x14\x6e\x99\x2d\x27\xd5\x5c\xaa\x64\x3b\xac\x88\x50\xb5\xa3\x4b\xf9\x9e\x01\x89\xf6\x83\xb5\x53\xc2\x03\xfb\xd8\x74\xb6\x89\xa5\x87\x10\xe0\xd5\xb2\xfc\xb8\x3b\xee\xc5\x8f\x47\x75\x0d\xd1\x4a\xd3\xb4\xb9\x8f\x0b\x61\x9e\xbf\x4b\xd5\xab\x30\xf3\xcc\xed\xe0\xd1\x91\x0b\xf3\xab\xaf\x0d\xdd\xf8\x1c\x10\x83\x83\x9b\x4e\x2b\x5a\x7c\x72\xe0\x71\xdd\xf2\x87\x85\xc1\xe9\xfb\xe6\xaf\x08\x89\x96\x3f\xbc\x85\xa4\xfc\xf0\xba\xe1\x3a\x7c\x78\x95\x23\x50\x17\xdc\x94\x0a\xd3\x5d\x54\x2b\x59\xe8\x02\x4b\x53\x63\x2a\x87\xf3\x02\xdf\x2b\xf0\x34\x82\x0a\x5a\x31\xac\x23\xfc\x80\xdd\xa9\x0e\x57\x8e\x8f\x88\x04\x7e\x48\x5e\xb8\xf3\x5c\xcf\x21\x96\xa7\x10\xa7\x81\xef\x61\x2b\x7a\x0e\x35\x9f\xbb\xe8\xcd\x1f\x26\x21\x85\x41\xf9\xfc\x15\xe4\xd1\x4a\x42\x5c\x86\x06\x94\xcc\xfe\x47\xec\x2a\x28\x95\xaa\x38\x25\xbb\xc5\x6c\xd9\xb8\x8b\xfd\x12\xd7\x19\xd5\x8f\xd7\x72\x86\x95\x2e\x16\x35\xa6\xbd\xc6\xc6\xa6\xcc\x5e\x16\x8b\x1a\x07\x1c\xaa\x14\x37\x34\x64\xa9\x14\x16\x04\x01\xa5\xc0\x7e\x5c\xa8\xc2\x4d\x18\x4e\x90\xad\xe0\x98\x23\x51\x2f\xc5\x4a\x2d\xb3\x13\xd8\x21\x65\xa9\xaa\x43\x79\xa3\x2c\xe6\x63\xc4\x4a\x2b\xaa\xaa\x1a\xb6\x0a\xdc\x47\x83\x46\xd1\x49\x87\x3b\xd3\x56\xaa\xee\x58\x74\x4f\x27\x1d\x6e\x06\x5b\x21\x74\xa1\xec\x97\xd0\x55\x1d\x43\xe5\x9e\xb3\x94\xdf\xd1\xb7\x52\xb7\xcb\x02\x65\x9c\x73\x76\xc5\x18\x6c\xd8\x64\x65\x87\x25\x38\x10\xbd\x73\x60\x4e\x65\xa9\xaa\x95\x68\xce\x56\x1a\x9e\x64\x70\xd7\xb2\x38\xdb\x90\xd5\x94\x66\xf8\x1b\x0d\xe0\x92\x48\x2c\x42\x2b\xad\xe3\x90\xe4\x3b\x27\xc4\xc1\x32\xa4\x59\x75\xa8\xa0\xb5\x26\x37\x8d\x1c\x4f\x82\x58\x16\xc7\x4b\xc9\x65\x69\xec\x44\x84\x96\x12\x6b\x27\xaa\xc3\x15\x1c\x13\xf1\x46\x6d\x05\x95\x37\x5c\x6b\x2e\xe2\xf0\xc2\x6b\x25\xb8\xa6\x77\xdb\xcb\x2d\x25\x3f\x25\xdc\x40\x74\x69\x71\xcb\xc2\xc5\x41\x2b\x72\x4b\x2e\xca\x5a\x89\x7f\x0d\x31\x6a\x45\x25\x99\xdb\xa0\x56\x96\x92\x5c\x76\x57\xd1\x86\xbb\x13\x10\x78\x52\x7b\x2c\x97\x32\x5c\xb3\xcb\xd5\xf1\x52\x81\xc7\x15\x95\xe1\xee\xf6\xe0\xee\xee\x70\xe6\x51\x86\xb3\xb3\xd7\x71\x45\x76\xaf\x77\x37\x04\x54\xa6\xa8\x0d\x17\x6b\x1a\xac\xa1\xad\x4d\x5f\xf2\x8f\x93\x7e\x5b\x2b\xf7\x2e\xbe\x64\x98\x80\x47\x6b\x40\xae\xb8\xb4\x68\x65\x78\x99\x43\xd3\x83\x40\x0d\x8f\x9c\x2e\x49\xc5\xb2\xf2\x22\x5d\xf2\xba\x8e\x4b\x98\x56\x06\xc4\xdb\x95\x5e\xec\xb4\xa6\x5d\x29\xa2\x80\x1f\x73\xdf\xb6\x8f\xd3\xc4\xfc\xea\x31\x5b\xaa\xee\x18\xce\x05\xaa\xee\xde\x92\xd3\x6f\x99\x54\x99\xa6\x86\xf3\x82\x1f\x50\x71\x2b\x2d\xae\xd9\xbb\x93\xa4\xda\xcb\x2d\x47\x2b\x8b\x6d\x16\xcd\x60\x05\x5f\xfc\x8e\xb8\x58\xb4\xcb\x7a\x29\x50\x50\x7b\xfb\xae\x89\x68\x21\x09\x19\xd7\x6e\x87\x37\x1b\x45\xbb\xac\xe3\xe4\xde\x2d\xbb\x01\xb0\xc5\x6a\x99\x2a\x27\x1b\x00\xda\x5d\x2e\xfc\xb9\x3c\xe1\x97\x33\x2c\x4d\xc0\x32\x3b\x5c\xc3\xab\xf9\x03\x7d\xbd\xe2\x57\xb8\x5a\x2b\x58\x60\xb3\x64\x00\x16\xac\x99\xa8\xc8\x82\x95\x09\x8a\x6e\x3e\x4e\x25\x2c\x38\x79\x40\x17\x07\xee\xdd\x63\x72\x8f\x5f\x71\x6f\xad\x10\x47\x9c\xec\x2a\x97\x73\xc7\x7e\x7e\x11\xa4\x40\x8f\x96\x7a\x5b\x94\x03\x0a\x4e\xea\x72\xca\x02\xff\x6d\x6e\xaa\x87\x60\x24\x78\xf4\x76\x9f\x1e\x1e\x5c\x1c\x72\x12\x7c\xb9\x70\x83\xa7\xc9\xbd\x70\x83\x97\xa4\xc5\x8b\xfd\x56\xcd\xec\x45\xf6\xab\xa1\xad\xa0\x0e\x4f\x4f\xc6\xa3\x1f\x3f\x1f\xe3\x91\xd3\x8e\xdf\x13\xb8\xd7\x85\x47\x2c\x2f\x2f\x86\x47\xd9\xc2\x5b\x7e\xc5\xfb\xb5\x82\xde\xbc\x37\xc7\xdb\x90\x8d\x6d\x05\x0f\x09\xcf\xae\x37\x7a\x43\xaa\xf6\x0e\x68\x8e\x3f\x4c\xca\x7e\x70\x72\x25\xc3\x44\xbd\xc6\x71\x32\x39\x98\x9e\xeb\x7e\xff\xf9\xf9\x43\x51\xba\xa0\x7e\x37\x8f\x83\xda\xb7\x74\x6f\x89\x04\x45\xfb\x43\x59\x22\xc1\xa2\x10\x94\x09\x04\xf3\xfd\xcf\x20\x12\xdf\x71\xe3\x4a\xeb\xf4\xf3\xa9\x7e\xa0\x09\xc5\xe7\x6b\x00\xda\xe9\x0b\xea\x75\x73\xf0\x4b\x9e\x28\x0a\x88\xe5\xdb\x73\xcf\x00\x96\x82\xdd\xf0\x97\x6b\xe5\x33\x98\xd8\xd6\x1e\x9e\xaf\xd9\xaa\xba\xfc\x28\x20\x10\x7b\x5e\x0b\xd3\x55\x75\x82\xc6\xe3\xb4\x55\xcc\xdc\x99\x29\xaa\x47\xc5\xfd\x76\x50\x76\x9f\x84\x3f\x04\xd5\xfa\x83\x93\x1d\x56\x85\xbb\x1d\x42\x65\x3d\x60\x6c\x18\xdd\x2a\x66\xee\x3a\x7d\xe7\xf2\x83\xc6\x1f\x5c\x28\xed\x97\x9e\xc5\x67\x92\x1f\xeb\x7d\x6a\x97\x3e\x9c\x66\x79\x67\xc9\x2f\x85\x08\xfb\x56\xd5\xc9\xa1\x07\x75\xe9\xe4\x8b\xbe\x52\x46\xba\x60\x79\xaa\xd1\xf1\x32\xaf\x9a\x20\xc5\x0e\x21\x39\x04\x2b\x25\x2a\x04\xae\x51\x93\x86\x39\x86\xa6\x52\x3e\xba\x35\x61\x36\x3d\x2c\xbf\xd8\x77\xed\xc5\x22\x63\x99\x0d\x59\x31\xa9\x47\xb5\xcc\x66\x80\x10\x57\x85\x9f\xc1\xce\xa8\x4b\xf8\x69\x44\x63\xb5\x8a\x4b\xb4\x22\x6b\xcd\x7d\x29\xa8\xd4\x4f\x6c\x69\x63\x2f\x54\x1c\xa2\x03\x2e\x5e\x55\xee\x07\x9b\xb3\xa2\xdc\x8f\x69\x9d\xde\xcb\xf9\xdc\xe8\x58\x9f\x13\x3e\xe7\xbc\x67\x6e\x02\x7d\x5f\xc1\x69\xb0\x61\xea\x12\x9c\xaa\xa6\xee\x5a\x98\xc7\x61\x59\xaa\xe7\xa4\x16\x5d\x41\xfd\x00\x7b\x3c\x34\xac\xa2\xf4\x4b\x01\x2a\x0e\x48\x52\xf4\x5a\x76\x57\xad\x49\x26\xcb\x30\xd1\xfa\x55\x93\xab\x57\xa1\x0a\x82\x95\xab\x50\x89\x75\x2d\x46\xad\x23\x6b\x55\xee\x0e\x0e\x57\xa1\x3a\x79\xbc\x84\x78\x55\xdc\x0b\x5e\x05\x68\xfa\xac\x55\xff\x61\xd6\x99\xab\x80\x43\xd1\xae\x22\x42\xa9\x94\xd6\xea\x91\xe1\x6b\x7c\x9a\xa5\x17\x55\xa9\x69\x20\x5b\x54\x42\x35\x35\x20\xd4\xc6\x8e\x81\xe2\xd6\x46\x20\xad\xad\xe1\x99\x54\xea\xf1\x3b\xfa\x56\x89\xe3\x2c\xf6\xa4\x39\x3d\xd3\xda\x0c\x44\xf5\x07\xdd\xb1\x99\x67\x44\xa1\xbd\x48\xe1\x62\x38\xda\x25\x0b\xb5\xe2\xb2\x2a\x0b\x4d\x37\x66\xd0\xc7\xfd\x52\xf7\x07\x46\x1b\x86\x03\x52\xee\xec\x4c\x9b\x5e\x22\xcc\x3a\x55\x94\x0b\x9e\x5e\xbe\xc3\xb9\x99\xfb\x07\x1c\xb4\x60\xc2\xb5\xdb\x82\x65\x66\xc1\x99\xea\xda\xa3\xe8\x6b\xe7\xfa\xd1\xdd\xd8\x59\x6e\xd7\xa2\x7b\xc0\x19\x27\x66\x7b\xaf\x28\xeb\x48\x36\xc6\xc7\x83\x1d\xe8\xe9\x55\xb2\x91\x10\xd6\xe1\xa0\xfd\xda\x41\xef\xaa\xb8\x58\x46\x2e\xaa\x48\x30\x15\x96\x50\xb1\xe8\x4f\x37\x94\x97\xc3\x1a\xd9\xeb\x20\x34\xc4\x59\xc2\xdf\x48\xd3\x7d\xc5\xdf\xc8\x5b\xbd\x3a\xed\xd3\xfe\x03\xa7\x4d\xf7\xca\xb4\x4f\x56\x3b\xed\x13\x53\x66\x4c\xa3\x83\x20\x70\xaa\xb8\xa1\x96\x60\x94\xb5\xbb\x55\xcd\x09\xd3\xa5\x5e\x92\x51\xab\x2e\xdc\x92\x6d\x16\x45\xa3\xbc\x2a\x55\x65\xaf\xa7\x03\x45\xf4\xaa\x4b\xb6\x69\xf2\xc1\xba\x64\x9b\x26\x7f\xa9\x4b\xb4\xa9\x51\x2d\x5f\x64\xea\xf0\x63\x44\x38\xc9\xd1\x69\x63\x96\x5f\x2b\x65\x08\x84\x0c\x16\x27\x80\xfb\x80\x63\x93\x54\x2e\x04\x54\x58\x2a\x17\x02\xc7\xf4\x68\x7b\x23\x20\x8d\xb8\xe8\x2b\x0a\x68\xbd\xbc\x81\xa3\x7b\x4b\xfe\x69\x44\x46\xb4\x7a\xdd\x3f\x7f\xcc\xc3\xf5\xc1\xf0\xaf\xd8\x52\x2f\xbb\x61\xff\x88\xfc\x53\xf9\xa8\x4b\x48\x52\x56\xaf\x88\x48\x6a\x7b\xf5\x66\xaf\x62\xd9\xab\xb7\xab\x50\xfd\x83\xc0\x4c\x69\xb6\xb7\x06\xb3\x5a\x11\xa1\xa5\x12\xff\x9b\x88\x1e\x97\x0d\x53\xc6\xa6\x4d\xb8\x42\x6f\xce\xb1\x84\xa7\xe6\x15\x77\xc5\xe3\x79\xba\x6c\xf7\xbb\x3a\xe4\xa7\xf4\xd3\x6d\x81\x7d\x63\x53\x5a\x9c\x9f\x0e\xab\x7c\xec\x28\xd5\x2c\xf9\x6a\xb1\x27\xca\x61\xdf\x98\x21\xec\x1b\x5e\xcf\x55\xe4\xab\x63\x8f\x40\x4f\xa8\x29\xc5\x7f\xec\x91\x3f\xb0\x84\x6e\xe1\xe7\xa5\x4c\x97\xf0\x84\xca\xbe\xaf\xfb\xf3\x44\x9c\xab\x4b\xa0\x1a\xdd\x33\xf9\xe2\x35\x21\x43\x45\x56\xda\xab\xfc\xb2\x8f\xe4\xd8\x2f\xce\xa4\x76\x6f\x3b\x3f\xf9\x0e\x2e\x31\xed\x77\x31\xaa\xad\xe2\x19\xb5\x77\xf1\x12\x98\x8a\xee\x1e\x15\xa7\x67\x2f\xfb\xea\xc7\x4e\x77\x45\x91\x61\xb4\x5b\xd6\xcf\x61\x2b\x16\x20\xc3\xec\x9d\xf1\x39\x6c\xa6\xc0\x4b\x82\xe9\x8a\x7e\x08\x99\x70\xe1\xa6\x70\xe3\xd5\x43\x43\xb8\x49\xfb\x87\xca\xe6\x1b\x94\xdd\x1b\x70\x92\x76\xe8\x7c\x9e\x28\xe3\x27\xcf\x02\xb7\xc3\xb5\xe8\xfe\x30\xd7\xc2\x37\x8a\x2c\x3c\x07\xb1\x29\x85\xd8\xc0\x92\x42\x9a\x3e\x4f\x2d\x79\x72\x7d\xce\x09\x80\x61\xb6\xcc\x46\xe1\xd4\x37\xfd\x91\x89\xcf\x6c\x0d\x8b\xbe\x97\x2a\x8d\xe4\x12\xde\xa7\x35\x92\x48\x10\xb5\xd1\x5a\x76\x62\xa0\xf6\x0d\x2b\xfe\xec\xfe\x20\x4d\x9b\x7e\x01\xa7\xaf\xd6\x84\x2b\xb4\x73\x51\x68\x1a\x43\x50\x2b\xfa\x48\x31\xb2\xe2\x89\x46\xd6\x6f\x85\x35\x41\x21\x68\xe4\x88\xa8\xd5\x8f\xd9\x7d\xd5\x77\x1e\x3d\x09\xe9\x06\xbc\x9a\xe8\xa8\xd6\x0a\x13\xe3\xe4\x91\xb5\x25\x69\xe6\x6c\x95\x99\xb1\x4b\x18\x4f\xd2\x01\xbd\x6a\x44\x38\x49\xc9\x1b\xf7\xfc\xa4\x3e\x6a\x8d\x7b\xfe\x44\xc4\x67\x6b\xa4\x7d\xd0\x19\xa0\x2d\x26\xbe\xe4\x00\xca\xe7\x5a\x12\x8b\xdf\x52\xdd\xec\x51\x63\x9c\x2e\x55\x23\x2a\x18\x06\xd7\xf0\x34\x4e\xe4\xc2\x68\xad\x71\x18\xab\x3f\x40\x4c\x39\x72\xad\x31\xce\x66\x45\x8e\xd3\xb1\x35\xe3\x56\x78\x89\x14\x3c\x81\x72\xd8\x82\x7b\xca\xc3\xe7\x8d\x1b\x1a\x46\xb0\xf8\x6f\xae\x6e\xaa\x70\x3d\x7d\x1f\x6b\xae\x0d\xc7\x65\x03\x6c\x00\x1c\xa7\x3a\xa7\xa1\x05\x1b\xdd\xa9\x20\x58\x54\x63\x76\xd3\x38\xe0\xea\x74\x76\x15\xfb\xbf\x75\x84\x3e\x4c\x14\xad\xdb\x6b\xd4\x99\xd6\x21\x0e\xf0\xdc\xd6\x75\x00\xf5\x2d\x99\x2e\x0a\x56\x1b\xac\x8e\x5d\x1d\xa4\xe4\x40\xaa\x6a\xc3\xbd\x40\xb7\x07\x5e\xf1\xee\xdb\xb1\x84\xe4\x5f\xcf\x07\xdf\xd2\xeb\x81\x0b\x1f\xac\xae\x61\x4c\x18\x6e\xc8\x41\x4f\x77\x5b\x9e\x1d\x3a\x37\xdd\x22\xae\xd4\xb4\x13\x96\x39\x3c\x1e\x4e\x2e\xd1\x4b\xf6\x03\x16\xdf\xf3\x38\x91\x8e\x76\xf9\x41\x2a\x61\x60\x53\x23\x93\xdb\x7c\xd2\x1a\xa4\xae\xe1\x99\xe5\x0d\x6a\x3b\x4f\x7c\xbf\xf8\xe0\x74\x11\x9c\xa3\xc5\x27\xc7\xe2\x3d\xbf\xa1\x6f\xed\x74\x96\x91\x6c\xda\x49\xdc\x3a\x94\xb6\x5d\x8c\x03\x26\x4a\xa2\xa4\xa1\x7d\x96\x4c\x49\x55\xae\xd6\x2e\x77\xa2\xc7\xf2\x62\x27\xba\x2a\xb8\x74\xa5\x4d\xa3\xb8\x3d\x9f\x2e\xc5\xa5\xda\x1d\xbe\xc5\x34\xd8\xfb\x0b\xba\xa9\x48\xdc\x08\x28\xd2\x4b\xb3\x11\x63\x9f\xbc\x40\x6f\x37\x13\x0a\x87\x69\xf8\xf5\x6a\x10\x25\x67\xd3\xa8\x6e\xde\x9b\xdb\x32\xa9\xc0\x6d\x73\x90\xe9\x76\x3b\xeb\xf4\x63\xb1\xbf\xa1\x97\x56\x7b\x18\xa9\x04\x48\x3e\xe7\xd2\x3f\xdc\xc0\x7a\xe6\x1e\x57\x92\xae\x3e\x9e\x69\x7b\x81\x7d\xbf\x3a\x7d\xcf\xc9\xe1\xf5\x25\x57\x63\x58\x13\x16\x8c\x6c\x4d\x1c\x09\x44\xd2\xf6\xb8\xc6\xc8\xcf\xed\x71\x8d\x29\xbf\xee\x28\x4f\x29\xee\xbf\x43\x8a\xfa\x4a\x74\x24\xb5\x2f\xee\x62\xce\xc0\x4b\x07\x11\x92\xda\xcb\x4a\x38\xe1\x2f\xfd\x43\x1d\x69\x18\x11\x12\x51\x31\xad\x61\x44\xa8\xbb\xa2\xc5\x13\x0e\xfb\xf4\x42\xa7\xbb\x95\xd2\x25\x44\x9b\xf6\xb9\xd6\x9e\x04\x6e\xd1\xab\x15\x2d\x2d\x7f\x1e\x4e\xeb\x07\x81\xe8\x7e\x40\x90\xad\x34\xe1\xe3\xf8\x4e\xcb\x1c\x5f\x4d\x2f\xb1\x98\xdc\x62\x75\x94\x59\x07\x16\x8e\x14\x5a\xa3\x41\xbe\x02\x56\x96\xb4\xdb\xc5\x41\xb7\xa7\x3f\x4c\x2e\xa6\x0a\x65\xe8\x1d\xbd\x8b\xa5\x75\x4f\xe2\x6d\x1b\x71\xf1\x89\x00\xcb\x16\x38\xfc\x92\x11\xa3\x05\xae\x65\x7a\x3d\x44\x62\x41\x77\x45\x89\xe1\xb0\xb8\x91\xcc\x7c\x41\xc3\x04\xf2\x1c\xd9\x8f\x2f\xb4\x6b\x7a\x9d\x10\x05\xd9\x19\xc1\x2d\x77\x22\xda\xa1\x45\x72\xcc\x56\xca\x44\x22\xb6\x04\xca\xb2\xd7\x32\x91\x5d\xb5\x4e\xb9\x33\x15\x34\x80\xb6\xbc\xdd\x58\x22\xe3\x5c\x97\x2c\xdf\xbc\x44\x03\x8b\x59\xb6\x76\xf8\xfc\xa5\xd7\xf4\x88\xeb\x84\x80\x4c\xc5\xe2\x95\xd3\xd3\x1d\x2a\xc5\x36\x06\xaf\x24\x98\xa2\x05\x4a\x71\x4a\xce\x51\x81\x79\xb1\x15\x82\xcc\x79\x04\xf4\xb7\x28\xc8\x16\x87\x15\xb9\x20\x48\x58\xb1\xb4\xe5\xa9\x3b\x62\x90\x74\xe9\xd7\x4b\xa7\x2f\xd9\x04\xb1\xe4\x10\x96\x40\x11\x56\xee\x36\x25\x5a\x4a\x2e\xc9\x62\xae\x53\xe7\x42\x82\xfc\x9b\x1e\x37\x51\x1d\x27\x15\xe1\x07\x4c\x5e\xb9\x16\x8b\x0f\xb6\xb5\xfd\x7f\x43\xe3\xa2\x39\xb3\x74\x71\xa9\xb6\x4d\xaf\xc0\x68\x76\x97\xa5\x6b\x36\x48\x0f\x1b\xfb\x07\x8a\x13\xc1\x04\x72\x1c\x48\x36\x90\x92\xee\x26\xb1\x34\xd9\x46\x0c\x79\x8b\x70\x06\xdd\xae\x61\xb7\x2c\x3b\x83\xbe\xe4\x39\xa1\x17\xe1\x0c\xba\x46\x78\xbe\x1d\x6e\x69\x63\x77\x5d\xdf\xc5\x61\xab\x7a\x69\x2c\x0e\xdb\xf4\x29\x8c\x90\x9a\xf8\xfe\xc7\xba\x33\x37\xdd\xc9\x84\x64\x07\x1a\xb1\xfe\x51\xb1\x34\xe2\x49\x60\x7e\x8b\xbe\xbb\xca\xa0\xb9\x27\xd7\x78\x18\x7a\xb8\x91\x94\xae\x45\x37\xc3\x21\x4d\x74\xfb\x0a\x5b\x0d\x72\x08\xa9\xb2\x47\x9f\xac\x17\x53\xd3\x5d\x6d\x38\x54\x0c\xe7\x8c\x9a\x96\x5a\xdb\xb4\xc4\xc4\xd2\x6a\x5b\xf3\x98\x71\x69\x1e\x2e\xfc\xf0\x08\x31\x88\xe1\x11\x82\x9c\x04\x61\x34\x6a\xec\x41\xa2\x1e\x0d\x51\xb1\x14\xd6\x46\x1c\x4c\x8b\x59\xfd\x80\x51\x93\x48\x50\x02\x17\x58\xef\x8b\x7b\x6e\xe9\xa2\x45\xe1\x3b\x4e\xd6\x01\x3a\x1b\x46\xb1\x24\x0f\x29\xb9\x6d\x54\x3a\x62\x71\xc2\xa9\x89\x25\x96\x3a\xb9\x84\xdc\x55\x5e\xdc\x6f\x1e\x98\xc0\x02\xab\x79\xf8\xed\xa5\x7f\xa0\x87\xf1\x92\x84\x50\x11\xe9\x65\x74\x65\x8c\x0b\x7f\x3f\x3f\x40\x21\x54\x6b\x8c\xa5\x11\x4e\x59\x45\xe0\xcf\x1c\x48\x46\x81\x3f\xb3\xfa\x7a\xdc\x1e\x33\xdf\x61\xe2\x3d\x72\x18\xcd\x75\x32\x09\x7c\xc2\x92\x71\x12\x41\x6a\x17\x15\xc2\xc0\xcf\x79\x7f\x00\x27\xd3\x7f\x2d\x9e\xfe\x2b\xd3\x5c\x8b\xc7\x3b\x45\xdf\xb9\x60\x2c\x3e\xbf\x75\xa8\xf3\x07\x8e\xa2\xfb\xe2\x21\x64\xd2\x91\xa1\xaf\x79\x13\x1e\x2f\x57\x4b\xd8\x31\xe2\x65\x17\xfa\xed\x8b\x44\xe6\x0c\x71\x1d\xbd\x3d\xe1\x03\xfb\xb7\x6a\x4b\xbc\xec\x73\x89\xc6\x6b\xcb\xc8\xcb\x81\xcb\x74\x41\xba\x08\xdc\xc3\xaa\x2b\xfb\xe9\xbd\x46\x8f\x3e\x7c\x54\x9d\x23\x38\x54\xb3\x81\x8f\x73\x8e\xe8\x15\xe8\x67\x06\x0c\x84\xbe\x5a\x9e\xc8\xc5\xa1\xca\x5e\xcc\xcf\x05\x5f\xef\x74\x33\x68\x34\xcb\x4c\x1d\x92\x6d\x3f\x5c\x70\x14\x89\x8e\x8b\xb4\x0e\x85\x7d\x71\xab\xa9\x4d\xb2\x9b\xd1\xf0\xb0\x4c\x27\xb8\x56\xe9\xc7\x49\xd9\xe7\xf8\xd8\x40\x95\xfb\xe1\x88\xab\x7f\x3c\x38\x9b\xa7\xdf\x91\xb7\x9e\x90\xce\x38\x31\x3d\x15\xca\xf4\x2a\xc1\x43\xf7\x73\x36\x7a\x6e\xfe\x31\xf8\xc1\x97\xa0\x7b\xcc\x71\xff\xb7\x64\x83\x8d\x5c\x2a\x45\x93\x6e\x27\xae\xa4\xc0\x13\x48\xab\xd2\xbc\xc3\xef\xa8\x74\x7a\xf8\x74\xfd\xb2\x32\xc7\xaa\xc3\xa5\x0e\xc7\x8a\x4a\xa7\x21\xb2\xeb\x7e\xc5\x3e\xec\x28\x68\x07\x4a\x66\x2f\x56\xea\x73\xb3\x25\xf2\x2d\xc9\xfa\x14\xf4\x3b\xb9\x25\x48\x6c\xd9\x3a\x2c\x24\x65\x28\x46\x37\x29\x9f\x15\xe1\x59\x95\xbc\x37\xea\x15\xff\x14\xf4\xaa\x4e\xf0\x89\xea\x70\xc7\x64\x1a\xd9\xb2\xdd\x66\xdb\x77\x98\xce\xb1\x7f\x40\x7a\xd9\xcf\x49\x6b\xe1\xd0\xc8\x1b\xa1\xe6\xda\x8d\x11\x65\xcf\x74\x7c\xab\xb4\x7c\x75\x6e\x97\xb5\x6a\xf4\x86\x1f\x93\x53\x81\x51\xb4\x4d\xdf\x71\x8a\xe8\x28\xfc\x66\x3f\x36\x00\xce\xea\x71\x6b\x85\xdb\x74\xae\x96\x75\x62\xeb\xe4\x7d\x38\xdc\x6d\x5c\x21\xab\xda\xf6\x70\x4b\x22\x03\x75\x12\x42\x18\x55\xd3\xe5\x36\x79\xff\x31\x98\x15\xbf\x60\xde\x77\x4d\xa4\xb1\x73\x31\xe1\x36\x47\xb5\xec\x9e\x74\x83\xa2\xcf\x1d\xb0\xdf\x1e\xaf\x3f\xf8\x07\x96\x78\x87\xdf\x59\xd9\x66\x99\x0b\x44\x68\x6a\xf7\x76\xd8\x6d\xd4\x6d\x81\x1e\x75\xa6\x02\xed\xa9\x73\x09\x5c\x5c\xb3\xc1\x1d\x59\xf3\x39\x57\xe5\xf6\x0e\x96\x72\x40\xcc\xfb\xb0\x7e\xe6\x8b\x3c\x12\xe4\x32\x6b\x7d\x50\xa7\x73\x87\xbb\xb3\x52\x49\x9f\xf6\x8d\x3e\x13\x41\xa9\xe7\x6f\x3f\x71\x83\xf1\x98\x9f\x89\x6d\x40\xdf\x4e\x52\xc4\x1e\x3e\xd7\x97\x9f\x7a\x30\x68\xea\x13\xd4\x31\x68\x26\xaf\xbd\x3b\x89\xd3\x64\xda\x1d\x83\xe6\xe1\xd6\xe7\xae\x36\xa9\xfc\xf7\x93\x79\x87\x2c\xf6\x53\xf7\x83\x5d\x2d\x5e\xbd\xdd\xe6\x6e\x7f\xf0\x2d\x26\x1e\xb3\x52\x27\x6f\x83\x06\xb4\x7e\xb1\xc7\x3d\xd6\x97\x5e\x4e\x1e\x97\xcb\x0e\xb2\x6a\x17\x4b\xee\xb1\xe3\x52\x96\xd8\xe7\xd6\xef\xc5\xcc\x9c\xc7\x5b\x89\xd6\x32\xe9\x2f\x11\x04\x3a\xb6\x41\x83\xe7\x3a\xba\x91\xb2\x64\x37\x17\x82\x7e\x3d\x9d\xcb\xd7\xdd\x16\xc6\x41\xfd\x62\xfb\x63\xbb\x74\xfa\x61\xc8\xfb\x7d\xe8\xc6\xef\x63\xb3\x3a\xec\x46\x41\xa2\xab\x2b\x29\xb1\xf7\xc7\xbc\x8f\xd4\xac\xae\xe4\x52\xbf\x70\x52\x78\x4c\x47\x23\x52\xd3\xec\xaf\x15\xd1\xf5\xd7\x8a\x9c\x64\x34\x1c\x85\x81\xfe\xf9\x01\x53\xf3\xa1\x44\x7a\x02\x3e\x87\x41\xc3\xe4\x05\x9b\x12\x1e\xd2\x82\x91\x4a\xab\xf5\xcf\x06\xd6\xfb\x03\x9d\x46\x41\x6f\xe0\xdd\x9b\xb4\xfd\x8f\x23\x63\x63\x0b\xca\x8d\x28\x9e\x49\x19\x9b\x2e\x9b\x69\x2c\xf6\xd1\xbc\xaf\x1e\x07\x11\x29\x9c\xbc\x71\x70\x60\x90\x49\x87\x6c\x82\x24\xac\x6d\xe8\xde\x8b\x80\x3a\xb8\x3e\x54\x6b\x18\x28\x35\x12\xf9\xa1\x4e\xc3\x09\x18\x89\x85\x60\x04\x23\x21\xe8\xda\x21\xd4\x95\x63\xbf\x6f\xc8\x3f\x22\xf7\xc8\x0e\x87\x9e\x6a\xe9\x2b\x3e\xaf\xb8\x58\x33\xe4\xac\xbf\x31\x1d\x42\xfd\xf0\x26\x71\x14\x72\x46\xd8\xf0\x52\x3f\xba\x2e\x0d\xa3\x10\x50\xe7\x00\x4c\x30\x6d\x9d\x95\x25\x80\x7c\x8f\x45\xa6\x07\x99\x60\xdb\xc0\xd3\x55\xaf\xed\x41\x76\x9f\x16\x96\x9f\x9f\x3f\xa2\xed\x77\x58\x57\x4d\x6a\xa3\x22\x17\x23\xe6\x0f\x3c\x88\x92\x56\xa8\xb1\xe8\x74\xd9\xad\x91\x98\x5a\xcb\xde\x20\xd8\x25\x69\xda\x1b\x38\xc7\x7a\xb5\x34\x16\x31\x1f\xcd\xd5\x6c\xf8\x85\x3b\x1c\x28\x75\xe6\x20\x8d\x40\x68\x43\xd8\x1e\xea\x02\x7b\x5e\x02\x53\xad\xf3\x18\x9c\x0c\x54\xb4\x81\x8b\x8e\x37\xa0\x23\x20\x55\x90\xc5\xa1\xb3\xaa\x3d\x5a\xe2\xf5\xf0\x3a\x64\x60\xfe\xd2\x43\x61\x68\xfe\xd2\x8e\x31\x06\x8b\x03\x9b\x1a\x98\xbf\xd4\x5c\x07\x74\x34\xa9\x71\x0e\x08\x69\xde\x1f\x54\x7f\xa0\x5a\xbc\x69\x7e\xd5\xc4\xbe\x40\x20\x1d\x78\xab\x7a\x27\x3b\x16\xf5\x2c\x05\x86\x3f\xc8\x7d\xa9\x86\x36\x88\x03\x21\x1b\x78\x1b\x93\x03\x3d\x7c\x0e\x47\xd5\xa1\x7d\xcc\x7b\x1d\x23\xbb\x84\x71\x2b\xa9\x10\x8f\xf9\xe2\x40\xce\x04\xe0\x35\xb3\x17\x77\x91\xc9\xac\x1b\xd9\x20\xbf\xa4\xc1\x25\x03\xcb\xd4\x74\x3d\x89\x29\xf4\x1a\x63\x5c\x17\x93\x64\x59\xf6\xcd\xe6\xb9\x4c\x52\x66\xa5\xc4\x0b\xea\x87\x30\xee\x7d\x31\x47\x99\x15\xb1\x22\xee\x55\x92\xb2\xf0\xc0\x84\xd4\xa0\xb6\x03\xeb\x90\xd7\x35\xe3\x31\xd3\x32\x44\x7c\x90\xe7\x30\x9c\xfa\xa7\xfa\x03\x33\x80\x7d\x68\xfe\x36\x07\x5c\x1b\x0f\x11\x74\x28\x53\x03\x17\x50\x72\x26\xb4\xb1\xe8\xe3\x34\x50\x6c\xe0\xdc\x69\x6c\xc1\x58\x54\x6f\x64\xbb\xf5\xa2\x3f\xc0\x70\x07\x5e\x26\xc9\x00\xa3\x81\xd7\xe7\xb4\x52\xc5\xec\xe6\xce\xc7\xeb\x33\xbb\x87\x5e\xe2\x44\x1d\xec\xeb\x8d\x05\xbc\x78\xbc\xd7\xaf\x1c\xd3\x6d\x2c\xf9\xbb\x64\x0f\xec\xbb\x93\xbe\xf9\xf5\x5a\x3c\x05\xa8\xb1\x08\xe8\x18\x9e\x58\x1c\x47\xca\x2e\x7b\xa3\x66\x19\x4f\x4c\x4f\x2c\xfe\xa3\xfb\x54\x2f\x02\x3a\xbc\xed\x18\x1f\xd2\x2e\x47\x6b\x2e\x3a\x69\x72\xeb\x36\x0f\x87\xb0\xff\x20\xa1\x35\x9a\xd8\xd4\x49\x83\x45\x9d\x84\x78\xeb\xed\x30\x31\xf8\x24\xd2\xd1\xb4\x79\xe0\x89\x8a\x26\x36\xc9\xe7\xad\xb7\xfc\x5c\xc4\xb1\xfc\x2a\x07\xd9\xcf\xf8\x38\xe9\xdd\xda\x28\x9f\x88\x07\x34\x40\x5c\x43\x92\x0a\x4c\x82\xb7\x55\x94\x27\x94\xd2\x38\xd6\x99\xd7\xcc\xef\xde\x65\xbb\xcd\x69\x9f\x58\x79\xc2\xd6\x72\xa3\x4c\xad\xd9\x3d\x37\xfc\xa2\xff\x4a\xd6\xdd\xa6\xe6\x1f\xe3\x73\x26\x99\xb8\xa3\xfa\x05\x29\x50\xf6\x73\x53\x83\x58\xab\xae\x8a\x9c\xde\x69\x24\xc4\xee\x13\xf6\x12\x14\xb3\x49\x24\x84\x5e\xf1\xb3\xc8\x34\x39\xb2\xb3\xe8\x12\x4a\x5f\x71\x8a\xf0\x7a\x60\x96\x4e\x56\x20\xba\x57\x06\x42\x07\xbd\x28\xda\xdd\x98\x8c\xe2\x2c\xf9\xbe\xb3\xe4\x74\x73\xd1\xa2\x30\x3a\xbd\x68\x69\xbb\x05\x76\xb4\xd3\xc7\x7d\x8a\x82\xe9\x54\x5c\x77\x07\x54\xa7\x0f\x5a\x31\x8d\x9b\x74\x66\x70\x39\x95\x7b\x4d\xf2\xc2\xed\xc5\xc2\x27\x22\x5c\x9f\xea\x86\xde\xb5\x32\x4b\xce\x37\x72\xbc\x7c\x60\x9a\xeb\x05\xfe\x3b\x65\x10\x7a\x92\xcd\x66\xe6\x20\x66\xcf\x9c\x2e\x08\x30\x93\x8b\x16\xa5\xdd\x89\x2b\xa9\x26\x87\xd9\x88\xfb\x46\x5a\x9c\x18\x97\xc8\x44\xdc\x66\xc3\xb3\x8d\xec\x40\x6d\x2e\x2d\xa0\x79\x3d\x3f\xc9\x53\x5d\xa1\x1b\x53\x8b\x92\x11\x42\x33\xa0\xb4\xc8\xcd\x13\xc3\x11\xe2\xc4\x24\xd5\xb4\xa2\xdf\x0c\xc2\x08\xac\xd3\x4b\x17\xfd\xc3\xe6\x62\x22\x63\xcf\x51\x3c\xfe\x60\x0b\x10\x4e\xc8\xd7\xc4\x9f\xd3\x9b\xfa\x49\xf2\x68\xaf\xfc\xa7\xa6\x9f\xc8\xbe\x14\xcc\x2a\x4d\x6b\xfa\x09\xb7\x34\xee\x10\xe4\x2c\x6b\x93\xf4\xd1\xad\xff\xd6\x41\x84\x24\x9a\xc9\x00\xdb\x39\x00\x07\x81\xb9\xcd\x61\xc8\x2f\xb3\xb6\xd8\x53\x28\x85\x90\x67\xb3\xe8\x9b\x3d\xc7\xee\x96\x7f\x10\x2d\x87\x68\x33\x49\xda\xa2\x23\xfc\x24\x5c\x9e\xf4\x8d\x6d\x0e\xa7\x1c\x82\x3e\xc9\x0a\x4d\x6a\x96\x36\xc7\x43\x0b\x0c\x9c\x18\x09\x6f\x81\xe7\x34\x39\x0d\x43\x22\xf8\x91\x44\x72\x6d\xce\xbe\xde\x97\x9e\x70\x6f\x93\x02\x4d\x6d\xe2\xf8\x60\x24\xce\x5c\xfc\x6c\x18\x81\x39\x17\x3b\x0b\x1d\x99\xe7\xc9\x70\xac\x74\xa9\x09\x61\x48\xc5\x5c\x6a\x42\xd1\xaf\x7f\xa2\x0d\xa8\xce\xcd\x25\xf3\x87\x8e\x85\x13\xd1\x5e\xe7\xa1\x79\x7e\x3c\xa7\xdd\x25\xe6\x87\x2c\x72\x5e\xc4\x29\x78\x7e\xbc\x35\x09\xe7\x0b\x07\x4d\x45\xca\x79\xd1\x21\x1b\xbb\x59\x51\x24\x9b\x79\x9f\x54\x64\x59\x5a\xcf\x28\xcd\xfe\xea\x54\xe3\x57\x69\xfa\x87\xf9\xd8\x30\x6b\xf3\x90\x7b\xdc\xdd\x8d\xc8\xaf\xcd\x61\x3e\xce\x16\xed\x02\x32\xa3\xee\x34\x1f\x97\xc3\x19\x22\x31\x4a\xf2\xec\x79\x37\xa2\x8f\xd8\x7c\x30\x8a\x49\x64\x1e\xd6\x09\xb6\x34\x5f\xa6\x11\x1d\x69\x62\x21\x4a\x21\xb5\xc2\x45\x52\xf9\x62\x92\xdb\x24\x49\x03\xc9\x55\xa6\x8c\x3f\x81\xb2\x51\x5e\x9a\xde\xc8\x6b\x78\x9a\x1f\x7e\xa5\x6e\x1d\x22\xf2\x74\xbf\x3e\xb9\x6c\x4f\x1a\x5e\xcf\xc3\xb4\x7d\x93\xb2\x4e\xac\xec\x9d\x13\x63\x10\x89\x04\xdb\x79\xa8\x91\x5a\x26\xb5\x05\x5d\x3a\x0f\x67\xa0\x52\xb6\x1b\x56\x04\x58\x02\x33\x7c\x26\x4e\x02\x0a\xe3\x99\x6c\x80\xbd\x73\x82\x13\xa4\x51\xe4\x24\xde\x4e\xa7\xdc\x33\x99\x4b\x9e\x8a\xc8\x17\x62\xc6\x8f\xd3\x50\x3a\xa8\xef\x99\xfd\xb6\x50\x66\xc2\xc8\x01\xd9\xce\x2c\x82\x8b\x3f\x18\xe4\x42\x99\xfb\x00\x60\x1d\xda\x59\x58\x67\x36\xe4\xe9\x7d\x80\x3e\xc3\x67\x61\x07\xc3\x1d\x4f\x24\xf5\xd4\x39\x0a\x67\xd1\xb1\xd6\x97\x18\x1b\x8a\xe7\x59\x0f\xca\x8d\x72\x42\x60\xb1\x6c\x5c\x19\x43\xab\x64\x9f\x47\xe2\x38\x2b\x3b\xd2\xc6\x16\x8d\x0d\x8d\x22\x27\x86\x13\x2d\x04\x67\xd0\x3b\x48\xcf\x49\x7a\x7e\xbd\x41\xce\x60\xe7\x15\xdf\x39\xb9\xa7\xb6\xbc\xf4\x1a\x9d\x5f\x4f\x92\x4e\x69\x44\x3c\x3b\xf5\xb3\x09\x4f\xa2\xb8\xb5\x7d\x9f\x9d\x7a\xa0\x09\x67\xa7\x3f\xf5\xb7\xc1\x59\x67\x47\x6c\xb5\x62\x23\xaa\x51\xc3\xcf\x25\x0c\x67\x3d\xf2\xce\xc9\xd9\x76\xd0\x67\x5f\x9d\xe2\xe8\x9d\xa7\x8d\xf0\xad\x67\x1b\x5d\xe0\xbc\xf0\xf3\x44\xe1\x3d\xbd\x5c\x35\x0b\xc5\x79\x35\x14\x1d\x2a\xba\xd8\x61\xa8\x8b\xe7\x92\x73\x87\xc6\x99\xd3\x33\x8f\xa0\x70\xde\x84\xfa\xb9\x49\x6e\x68\xad\x1b\x89\x20\x27\xef\x15\x4f\xfc\xaa\x0d\x31\x3c\x3d\xe7\xce\xea\xce\x73\x18\xfe\xc1\xfa\xc3\x7d\x4e\x2f\x3e\x75\xb7\x3d\x41\x96\xd2\xb8\x71\x3e\x0c\xcd\x33\x22\x05\x80\x22\x9d\x80\x4b\x69\x55\x39\x01\xe7\xd2\x22\x73\x22\xb0\x7a\x9d\x7d\x7a\xa3\x69\x06\x81\xd3\x43\xef\x3c\xbe\x36\x40\xa5\xb8\xee\x28\x65\x9e\xca\xab\xc3\x95\x7b\x9d\x60\x7e\xf8\x38\x55\xee\xb6\xaf\xd1\x23\x7a\x47\xc6\xee\x0c\x81\xbd\xd6\x39\x9f\xba\xc0\x5f\xeb\xa4\x4e\x83\x3b\x2f\x4f\x6a\x58\xb6\x81\xe9\x4b\x7e\x5c\x29\xdf\xa4\xfc\xa0\x4c\x94\xac\xca\xff\x95\xd8\x3e\x4c\xcb\x25\x08\x8c\x79\x8b\xae\x25\x4e\x4e\x4d\xe1\xd7\x52\x9d\xa7\x01\x14\xd7\x12\xe3\x66\x86\xaa\x5e\x85\x4c\x1d\xec\xff\x0b\x6f\x96\xa4\x6a\x73\x79\x24\x61\xc4\x97\x47\x52\x36\x7e\x71\x45\xa7\x0f\xeb\x55\x6c\x9a\x2e\x15\xc2\xb4\x10\x0e\x2f\x4f\x21\xb2\xd1\xb5\x14\xe6\x69\x8c\xdf\xa5\xc9\x92\x55\xbb\x40\xe8\xd2\xa4\x70\x91\xd6\x2e\x4d\x66\xfe\x6a\xac\x02\x26\x85\xab\x61\x60\x74\xcc\xe4\x7d\x28\xfb\x83\xf0\x03\x5a\x20\xab\x9d\x02\xee\xd5\x04\x91\xf1\x39\x62\xc2\x6e\x8d\x2d\xcf\x32\x5f\xc0\x7c\x74\x87\x69\x56\xbb\x66\xa5\x38\xa8\x55\x9f\xbf\x36\xe0\xc7\x84\xae\xd8\x23\x89\x01\xcb\x7f\x05\x11\x2a\x6c\xff\x2b\x70\xa3\x87\x0d\x5d\xc1\x41\x0f\xcb\x44\x79\xb3\x45\xae\x20\x8b\x06\x02\xf7\x05\xc1\x90\x09\x5d\x4b\x96\x1a\x7a\xce\x5f\xfa\xaf\x20\xa6\x5c\x62\x72\xb0\x99\x2f\x6e\xd4\xb4\xfc\x5e\xdd\xe9\x72\xde\xbb\xd3\xc5\xda\xe0\x64\x9a\x74\xf9\xba\x90\xab\xc2\x05\x59\xd2\xd3\x90\x17\x5e\xdd\xa0\x07\xe7\xa2\x23\xa7\xec\x0f\x88\xb2\x77\xb2\xbb\xe3\x77\xb6\x3b\x9a\x1f\x7c\xee\x42\xe5\xd7\xd3\xf1\x02\x2f\xca\xdc\x24\x97\x2a\xbf\x79\x77\xae\x81\x6b\x80\x13\x80\x97\xa9\xbe\x71\xd7\x92\xa9\x6a\xcd\xbf\xd5\x4d\xaf\xe1\xfa\x3a\xcd\x4b\xe0\xaa\x86\x3e\x5f\x43\x8c\x04\x6b\x5e\xfb\xbb\xf9\xf8\xf4\x7d\xbb\x85\xa1\x3b\xfb\xed\x8d\x7a\xe5\xfb\xa6\x74\xe3\x39\x96\xd8\xe9\xbe\xf7\x0e\x4f\x4f\xf1\x6b\x36\x7e\x60\xdd\xa7\xbd\x70\xc1\x26\xbb\xcc\x03\x81\x54\xa6\x4c\x73\x4d\x12\x0b\xef\x77\x50\x47\xdc\xeb\x64\xeb\x25\x6f\x74\xbb\x40\xd2\x50\x62\xbf\xa6\x89\xa5\xe8\xd1\x14\x8c\x85\x5e\x13\xf3\xba\xfd\x17\x2f\xa1\x34\x60\x94\x17\x41\xaf\x86\x1c\x5c\xa6\xf1\x75\x17\x60\x10\x96\x5d\x5d\x27\x01\x28\xc5\xf7\x1d\x81\xcf\x03\x77\x38\x86\x79\x12\xbb\xed\x6a\x9d\xa6\xef\xe3\xf9\x45\x8c\xa4\x9d\x13\x88\xcc\xe3\x73\x81\xa0\x05\xc7\xb8\xc8\x80\xa7\xdf\xde\x45\x96\x79\xe3\xbb\xaf\xcb\x3c\x7c\xd3\x97\x06\x0d\x33\x32\xf0\x2b\xb2\xc7\xe7\xc2\x89\x31\x5b\x7e\xbd\xf2\xa4\xfc\x61\x0c\xa3\x7c\x1b\x88\xce\xc0\x8c\x97\xd5\x1a\x71\xdd\xe4\x27\x46\xe6\xbd\xf0\xb9\xf1\x2e\xf0\xba\x85\x99\xb1\xcc\x8d\xc7\x61\x45\x24\x66\x41\x6e\xbd\x10\x2b\x95\xa4\x2e\xc4\xca\xac\x9c\x7f\x61\x49\xd1\x57\xfc\x42\xae\x34\xe7\xd9\xf5\x10\xba\xee\x1a\x73\xc1\xe8\x5d\xc8\xf5\x90\x39\xcb\x4e\x60\xf0\xcd\x0a\xa5\x17\xac\x64\xbf\x64\xc0\x2b\xc2\xdd\x85\xe9\x23\x2b\x32\x5f\x98\x82\xf5\x55\xbb\x10\x1f\x9b\x07\xf1\xc5\x6d\x08\x1d\xf5\x7a\x3b\xd7\xc5\x96\x49\x8f\x8f\x7c\x76\xbd\x98\xe1\xdc\x5d\xb0\x9e\xac\x4c\x7e\xbd\xc4\xe6\xca\x32\x5e\x38\x83\x87\x18\x53\x49\x56\x1e\xbe\xde\x97\x96\xed\x9e\x63\x40\xb0\xbe\x88\xbb\xd5\x23\xf8\xfa\xb0\xfa\x59\xeb\x17\x58\x49\xa9\x49\xb0\x49\x65\xe0\xeb\xfb\x57\x70\xae\x76\x7d\x5a\xc6\x7c\x6e\x56\x54\xfa\xf7\x19\xa9\xcc\xd8\x8c\x99\xf1\x7c\x11\x90\xab\x65\xf4\x3e\x9c\x3d\x04\xd1\x1b\xf3\xb4\x47\xea\x3e\xf0\x8c\xe3\xe3\x9b\xdb\xcd\xac\xd8\x77\x1f\x6a\xbb\x99\x72\x47\xcf\xac\x94\x07\x0a\x90\xb5\x22\xd1\xa1\xf9\xdf\xe4\xd8\xd5\x30\x76\x1f\x4c\xd2\xf0\x9d\xdb\x4a\xad\x88\x3c\x25\xd3\x5e\xe0\x76\x16\x7e\xf0\xfd\xc2\x1d\x6b\x77\xb2\xab\x1c\xaa\x1b\xdb\x76\x61\xc2\xee\x24\x3c\x21\xbd\x48\x92\x7a\x9f\xd3\xd3\xdf\x07\x9e\xde\xc9\x99\x2d\x7e\x45\x6c\x05\x1c\xe8\x36\x1e\x58\x71\xf4\x4e\xa2\x21\x58\xbe\xfc\xc1\x8e\x21\xd7\x84\x3f\xb0\xdc\xd0\xba\x3b\xe7\x5f\x40\x69\xed\xce\x6e\xc0\xea\x0f\x62\x4d\x31\x3d\x58\x80\x74\x3d\xbb\xb1\x00\x65\x05\xc4\x9b\x64\xbc\x46\xa9\xdf\xdc\xa0\x82\x99\xd0\x6e\xa0\xd2\xb4\x2a\xdc\x05\xef\x7c\x98\xd3\x5d\xb8\x69\x46\x0e\xbc\x4d\x9a\x3b\x7d\x4e\x2e\x59\xb4\x94\xdb\xdb\xd4\x61\x3d\xfa\xd1\x5b\x0f\x0a\xc5\x7e\x4e\xde\x79\x28\xc5\xad\x17\x6c\xf7\xdb\x0f\x6e\xc4\xbc\x54\xdc\x2c\x39\xe0\x37\x11\xc4\x2a\xb5\xb7\x4e\xb0\xae\x04\xc9\xfc\xcd\xf1\x71\x13\x0e\xac\xab\xc3\x5d\x35\x60\xf9\x5c\x28\x15\xea\x07\xac\x4c\x3d\xf3\xae\xd2\x61\xeb\xe7\x2e\xd1\xdd\x8a\x0f\xac\xd4\xed\xc6\x32\x63\x3c\xc6\x8d\x28\xa2\xb5\xfe\xc6\x8d\x67\xda\x16\x56\x79\x9d\xe8\xee\xe6\x79\x83\x85\xdd\x61\x94\x15\x3f\x10\x9b\x6b\xca\xbf\x1b\xd3\x7d\x76\x73\x07\x2c\xc9\x49\x0c\x53\xfe\xf9\xad\x41\x56\x7e\x1b\xbc\xc3\x60\xc2\x5d\x04\xcf\xbb\x03\x69\xd2\x15\xc3\x1a\xa3\x33\xd1\x1d\x92\x83\x6e\x6b\xef\x2f\xc4\xbc\x76\x73\x65\xaa\x13\xd9\xdd\xdd\xe9\x30\xf8\x9b\x78\x5c\x73\x4a\xdd\xe4\x91\x52\xb3\xbc\x3b\x5e\x03\x1e\x0d\x94\x8f\xbd\x0f\x86\x1f\x63\xd3\xbe\x01\xde\xd2\x74\x7d\x63\x64\x51\xd8\xbf\xf1\x6f\xf5\x8e\xe9\xe6\x72\x54\x5b\xee\x3d\xf0\xe8\x40\xe4\xba\x27\xce\x78\x28\x01\x37\x6e\xac\x92\x98\x1b\xf6\xbc\x87\x46\x48\xc8\xe6\x13\xf7\xc4\xa1\xc7\xc6\xc8\x49\xd8\x77\x45\xf4\xd4\x1d\xc5\x7d\x80\x3e\xe0\xf7\xa4\x61\x49\xcc\x62\xaa\x9d\x24\xa0\x0d\xc8\x93\x06\xe0\x45\x03\xf1\xa4\xa9\xe9\xdc\x64\x8f\xd8\x03\xe3\x9e\x34\xa7\xe4\x0f\xb8\x89\x20\x7d\xdf\x27\x95\x86\x2f\x11\xd1\x06\xc7\xbc\x71\x60\xf5\x6e\xe8\x36\xfb\x93\x39\x2c\x6e\x3c\x58\xa5\xf4\x37\x4a\x56\x96\x1d\xde\x78\xb0\x36\xbb\x84\x07\x6b\x4e\xee\xce\x0b\x3f\x19\x69\xcc\xe2\xb1\x26\xac\xb9\x2f\xe6\x2e\x7c\xe5\xf5\x7d\x6b\x15\xa1\x80\x8a\x08\x8f\x35\xc3\x79\xbb\x6f\xfb\xc4\x4b\xf8\xb2\x6a\x5f\xbe\x6f\xc6\x23\x29\xe5\x9a\x55\x8b\xea\x4d\x64\xea\x5e\x72\xdd\x40\xc7\x6f\x5d\x7a\xef\xd7\x8a\x19\x12\xae\xa0\xde\x64\xdd\xc6\x93\xa2\x37\xdc\xaf\x80\x02\x2e\xd1\x4b\x6c\x9e\x3b\x94\xb4\xf0\xd9\xcb\x92\x9b\x80\x52\x13\x3f\xde\x24\x6e\x4a\x9e\xe2\x4f\x50\x12\xcb\x5c\x71\x79\xb0\x3e\x37\x87\xe3\x83\x93\x69\x48\xbc\x3f\x43\x10\xe9\x12\x8c\x69\x27\x33\xbc\x31\xfb\x6b\xe2\x7b\x08\xc1\x34\x24\xe9\x39\xc4\x59\xce\x94\x97\x36\xaf\x00\xf2\x1c\xe2\x62\xac\x6f\x1f\xb8\x80\xf1\x8e\x4f\xb2\xe5\xe1\x1f\x48\xfc\x10\x8a\x07\x17\x4e\xa3\x2e\x1f\xe2\x17\xda\xfe\x18\x90\x4d\xc6\xfc\x60\x9f\x57\x24\x78\xb2\x15\x4d\x7f\xb0\x47\x54\xa4\x7b\x26\x67\xfd\xc1\x3e\x9f\xbd\xb9\x79\x84\x77\x09\x5f\xc2\x93\x6d\x3f\x07\x79\x04\x63\xc3\x93\x6d\x6d\x4d\xd8\x03\x09\xd7\x1c\xf3\x14\x76\x10\x64\xf8\x29\xbc\x83\xf4\xf9\xd4\x0e\xfe\x32\xef\x57\x0e\x13\x87\xe0\x21\xc2\x4f\x3b\xfa\xc3\x3d\x28\xb0\x7d\xed\x69\xdc\x06\xd9\x69\x3d\x1c\x11\x58\x9e\xe6\x88\xa9\x87\x74\x06\x9b\xf6\x3e\xcd\x86\xf9\x00\x2f\x10\xf3\x7c\x3d\xa1\xf7\x0d\x2b\xf5\xe8\x74\x38\x2c\x73\xca\x60\xea\x4f\xe0\x1f\xe5\x5c\x77\x46\x03\xf1\x7d\x16\xed\x99\x00\x37\xb7\x87\x98\x37\x59\xf4\x43\xcc\x5b\x06\x60\xa4\x3d\x83\x58\x73\xf6\xd4\x33\xf4\x95\xa2\x7b\x8b\x7e\x4c\x93\x2a\x3c\x48\xf7\xd9\xcb\xd5\x67\xda\x3d\x6a\x25\xbe\x4c\xcb\xfe\xb3\x24\xf4\xa9\x1b\xf1\x73\xfa\x31\xf3\xe2\x61\x75\x2e\x38\xac\x12\xab\xe7\x9a\x86\x8a\xd0\x55\x10\xdd\xcc\xae\xf5\x90\xd1\x2d\x1b\x39\xfc\x5c\x37\x50\x6c\x94\xb9\x1f\xf4\x5a\xe0\x59\x27\x74\x98\xa9\xe0\x41\xc2\xcd\xfa\xf2\x3f\x04\x55\x69\x8e\x7d\x1e\x99\x09\x63\xc3\x8a\x92\x75\xf8\x78\x9e\x4a\x3f\xe8\xf7\x73\xfd\x42\x47\x6d\xcf\x63\x4d\xd5\xaf\xc9\x91\xe5\x82\x92\x16\xba\xc1\x96\x1e\x20\x1f\xb4\xa2\x3c\xaf\x7e\xbb\x96\xdb\x2f\x68\xd5\xf6\x90\x81\xd4\x6b\x9b\xe7\x35\x43\x98\xdf\x92\x65\xc6\xd9\xe6\x68\x9b\x84\xe1\x51\x92\x2d\xe8\x13\x0f\x97\x7e\xc3\xf1\xe3\x1d\x91\x5d\x43\x9d\x23\xec\xd0\x47\xf2\x4e\x67\x9e\xe4\xcf\x87\x6b\x4e\x1c\x54\x72\x07\x9b\xbe\xd4\xc6\x20\x0b\xfb\x71\x27\xa8\x99\xfe\x7c\x64\x74\x81\xf6\x3e\xdf\xfb\x0b\x02\xb6\x3d\x38\x85\x13\xc7\xf1\x1b\xea\xf6\x2a\xbf\x1a\x88\x28\xf0\x95\x97\xd6\x00\x5f\x15\x93\x9c\xbc\xfb\xd6\xb0\x51\xae\x7e\xd0\xf9\x83\x1b\x6f\xfa\xf5\x9a\x55\x0d\x4b\xcd\x2b\xbd\x31\x66\x10\x74\xac\x62\x34\x20\xc8\x57\x65\xec\xd6\xd8\xf7\xe8\x1a\x02\x5c\x19\xbb\x00\xc0\x55\xd3\xa7\x00\x1c\xab\x66\x0a\x57\x70\xac\x84\x91\x6d\xe2\x58\x81\xe3\xd4\xc4\xb1\xda\xb9\x7f\xc0\xb1\xca\x7a\xba\x83\x63\xd5\xcc\xfd\x2b\x8e\x95\x04\x4a\x1c\x2b\x57\x14\x1c\xab\x2a\xf3\x06\xc7\x2a\x55\xce\x15\xb0\x54\x43\x87\x5f\x61\xa9\x0c\x2b\x04\x95\xaa\x1a\x24\x00\xe0\xd4\xd0\xe7\x1f\xc0\xa9\x94\x25\x9f\x20\x4e\x95\xb1\x2b\x32\x0d\x14\xe5\xe2\xc8\x2c\xbb\xf5\x20\x9f\x20\x4e\x0d\x73\x55\x80\x2b\xd5\xcd\x39\x04\xae\x54\xf3\xc2\x19\x58\xa9\x64\x2a\x4a\x51\xa2\x4c\x89\xf3\x92\x8d\xc6\xb4\xbe\x6f\x35\x7e\x6b\xf8\x07\x56\x54\x4e\x3d\x90\x51\xd3\x6b\x38\x20\xa3\x5a\xdb\x1f\x6b\x53\xf1\x1d\x2c\xfe\xb0\xe8\x57\x67\x70\x0e\x34\x90\x4c\x79\x38\xef\xd8\xa9\x76\xec\x38\x90\x4c\xd3\x10\x06\x10\x99\xa6\x9a\xcc\x2b\x99\xac\x96\x21\xc3\xd5\x77\xb8\xdc\x86\xfd\x82\xbc\xb4\x2a\xa2\xd6\x60\x5e\x6c\x01\x7c\x59\xbd\xbf\xde\x20\xcd\xc5\xfe\xe0\x42\x93\xa3\x77\x21\x5f\xa0\x77\xfd\x5f\xd1\x8e\x9b\xc8\x4b\xaa\x21\x2f\x37\x72\x63\xbf\x63\x38\x3a\x62\xc9\x8b\x33\xb6\xb6\xdc\x97\x1b\xb9\x5c\x1d\xb3\x51\x54\xb0\xde\x77\x09\x8a\x5d\x73\xdc\x8b\x09\x5b\x25\xfa\xed\xe4\x29\x74\x93\x77\x01\xa7\x19\x26\xa9\xd0\x34\x3b\x81\xf9\x34\xb4\xf1\xbe\x78\x97\x80\xb9\xdc\x80\x26\x6f\xc6\x02\x00\x46\x5e\xbd\x22\x7c\x87\xbd\x73\x65\x41\x6b\x4d\x6e\x23\xd1\x14\x6c\x00\x83\x90\xe4\x0f\x84\xa7\x16\x1e\x53\xa2\x93\xbd\x13\x01\xbd\x29\x9b\x77\x0e\xf0\xa6\xa6\xb1\x4c\xf0\xa6\x6c\x44\x25\xe8\x4d\xd9\x08\x56\xd0\x9b\x6a\xf6\x80\x20\x89\x1a\x79\xf3\x22\x88\x7a\x3f\x04\x04\x7a\x32\x68\xe5\x95\x91\x6c\xa2\xb0\x2f\xef\x6c\x81\xb0\xf9\xfd\xc1\xe5\x4b\xfe\x80\xf5\xe2\xb0\x85\xc7\x1f\xac\x8a\xf0\xb5\xdd\x1c\x9e\x99\xee\x97\xd3\x49\x62\x09\x31\xfc\xa8\xf9\x02\xdf\x94\xf6\x86\x24\x64\x2b\xe6\x6f\x45\x37\x60\x9b\x86\xae\x05\xc0\x36\xa5\x7d\x5d\xbd\x71\x9b\x90\x99\xc0\x67\x6a\x66\xa7\x14\x9f\x69\x3b\x80\x82\xcf\xd4\x64\x02\xef\x05\x20\x18\xa2\xcb\x4b\x00\x56\xd9\x1f\x93\x7c\x45\x72\x43\xfc\x95\x89\xe0\x5e\x12\xac\x85\xa4\xc1\xa4\xa3\xee\x07\xfc\xcb\xf7\x6c\xe2\x0a\xa3\xbf\x2b\xc8\x48\x2d\x3c\x9f\x8f\x8e\x9a\x3e\x17\x27\xcc\x32\xcb\xee\x11\xc3\x77\xc5\xb8\x3b\x00\x8d\x3a\x10\x1f\x0d\x3c\xa3\xe9\xb5\x2b\x78\x46\xdd\x54\x1b\xc0\x19\xf5\xe9\x54\x12\xaa\x14\x1e\x5b\xe5\x53\xed\x31\xc0\x16\x35\x60\x09\x1b\xb0\x45\xeb\x07\x7a\x84\x3d\x06\xf8\xe1\x06\x24\xd1\x50\x9e\x7e\x75\xf1\xc3\x72\xf4\x2a\xac\x6e\x6a\x68\x2a\x50\x87\x03\xbf\x52\xdd\x7b\xf1\xf1\x93\xed\x83\x3c\x24\xec\x78\x7b\xbd\x3b\x84\x97\x02\x3c\x94\x4d\x06\x09\xee\x50\x33\x4a\x48\x60\x7c\xed\xee\x9f\x6e\xe4\x1c\x55\x80\xf1\xb3\x6e\xfd\x60\xde\x37\xd3\xf6\x88\x79\x9f\x8d\x0c\xfa\xcc\xa2\x3d\x2c\x5f\xbf\x30\xce\x1b\xe0\x44\xc5\xe0\x6b\xf1\x87\xb2\x11\x40\x00\x10\xb5\x42\x4f\x81\xb4\x4f\x3b\xf7\x35\x98\xf6\xa2\xa2\x37\x30\xed\xd3\xf6\x85\x15\xd4\xde\x3b\x5f\x41\xed\xb3\x31\x32\xe0\x17\x25\xa7\x55\x50\x7b\xef\x05\x3e\x6d\x20\xdd\x26\x3e\x4e\x1f\xe5\x2c\x2f\xe4\x1d\x70\xe6\xbb\xef\x2c\x36\x54\x74\xda\x02\x69\x68\x9b\x87\xc5\x99\xcf\xf2\x2a\x80\xe6\x9b\xfe\x4a\x02\xcd\x6b\x76\x04\x50\x3e\xbc\x6d\x06\x50\x7e\x7d\xe0\x0f\xe8\xcd\x1c\x4a\xf1\x88\xb2\xe1\x25\x00\x12\x15\x60\x7a\x9a\x90\xf2\xd9\x10\x11\x00\x89\xa6\x32\x8d\x78\x44\xd9\x68\x0e\x00\x89\xc6\xd8\x65\x80\x0f\xa1\x69\x22\x0d\xe9\xb4\x2d\xd2\x50\x36\x86\xe1\xf3\xa2\xd3\x09\xe7\x8a\x45\x59\x1c\x74\xa1\xe9\x55\x1d\x80\xee\x69\xe7\x2e\x05\xb4\xbd\x2b\x3e\x00\xc8\x3e\x94\xef\x04\x64\xcf\x6d\x7f\x41\x5a\xf9\xe1\x07\x9f\x3f\x30\x22\xad\x1f\xd0\x16\x40\x88\x52\xd6\xc9\x4b\x14\x22\x13\xe5\x00\x42\x94\x34\xee\x0a\x42\x94\xe5\xbf\x82\xb2\x7b\x2b\x03\x08\x51\x33\x19\x1e\x18\x44\xcd\x64\xaf\x60\x10\x35\x23\xb7\xc1\x20\x9a\x92\x7e\xf1\x85\xcc\x79\x07\x98\xba\xf0\xf9\x0d\x30\xf5\xa2\xad\x05\x4c\xa1\xd5\x18\x95\x12\x3e\x1c\xfd\xb7\x17\x0b\x20\x0e\xad\xaf\x68\x92\xbb\x19\x1d\x30\x00\x16\x4a\x1e\x35\x30\xd5\x93\xb9\xe8\xc0\x54\x4f\x59\xd3\xc5\xa7\x37\xba\x3b\x87\xac\xdf\xda\xb3\x40\x1c\xaa\x86\x7b\x03\x9e\x5e\xc1\xde\x69\x62\xa7\x67\xed\x18\x60\x11\x89\xfd\xdf\x00\x46\x6f\xe6\x1d\x02\x18\x7d\xbd\x44\xd3\xdb\xe2\xc2\x68\x89\x6a\xca\x6a\xf8\x00\x13\xed\x80\x0f\x80\x89\x92\xce\xb2\xc0\x9e\x17\xef\x7e\x81\x3d\xaf\xfb\x78\xa1\x01\xe9\xff\xf3\xa9\x01\x69\xd5\x00\x98\x28\xab\x25\x08\x4c\x64\xe0\x2a\xb8\x44\xeb\x25\xfa\x2a\xf0\xb9\x67\x87\xfc\xde\x9a\xf5\xc1\x25\x6a\xb1\x5b\x20\x27\x19\x9a\xa1\xb0\x44\x26\x2d\x05\x96\xa8\x99\x08\x59\x4c\x73\x65\x78\xf0\x86\x46\xf2\xe4\xe0\xd6\x29\x6d\x06\x6f\xa8\xe9\x97\x2c\x74\x79\xd6\x62\x20\xde\x90\x71\xf0\x60\x97\x67\x43\xb6\xc1\x2e\x6f\xe6\x4a\x06\x7b\xa8\x29\x45\x7f\x32\x4c\x95\xe4\x0d\x52\xee\x56\x9c\xee\x6a\xd8\xd1\xb7\x15\x37\xbe\x3e\x4d\xda\xc4\xd7\x27\x64\x1e\x1b\x20\x30\x42\xdd\xb4\x12\xc2\x08\x79\x29\x0c\x5a\x50\x0b\x37\x0c\x60\x41\x5e\xb4\x7f\xb2\x3e\x69\xad\xa6\x9b\x7d\x32\x2f\x87\xc0\x98\x2f\xd7\xd9\x09\x5b\xcc\xaf\x0f\x27\x12\xcf\x51\xcd\x46\xe0\x78\x67\x3d\x58\x80\x14\x2a\xe6\x24\x04\x52\xa8\x19\x1c\xf3\x99\x91\xc3\x53\x43\x1a\x6f\x6f\x26\x80\xdc\x6e\x9b\x2b\x90\x94\x7b\x6f\x61\xa1\x06\x5d\xc0\x5f\xde\xf5\x7e\xb0\x34\x8a\xee\x2e\x7c\x80\xcf\x87\x4f\x81\x3b\x14\xb2\x20\xb0\xb5\x5b\xd9\xe5\xe0\x7d\x46\x06\xbc\xe0\x3e\xea\x0f\x08\xae\xcd\x77\x70\xf1\x28\x3e\x5f\xd3\x65\x86\x4a\x10\x85\xaa\x76\x32\x10\x85\x9a\x52\xce\x87\xb9\x48\xcf\x17\x80\x83\xaa\x8a\x3a\xf8\x40\x4d\xfb\xe4\x47\x36\x31\x33\x3f\x7c\x84\x65\xe5\x70\xcd\x70\xac\xd7\xf3\x12\xe0\xa0\xa6\x2b\x16\xf8\x40\x09\x40\xaa\xf6\x01\x5e\x61\x12\x15\x20\x81\x9a\xbe\x89\x1f\x78\x15\x5e\xb7\x7d\x1a\x85\x34\x04\x7d\xc4\x65\x79\x87\x0a\x3e\x50\xd3\xfd\x46\x7c\x20\x08\x5a\x00\x0f\xe4\xb5\x57\x1c\xf8\xeb\x20\x73\x2c\xda\xcc\xd5\xe3\x41\xb9\xf0\xad\xef\x38\xca\x4a\x99\x91\x2d\xb2\x1f\xa0\x03\x35\x6e\xab\x02\x74\xa0\xca\x61\x0c\xc0\x81\x5a\x5f\xba\x6c\x80\x01\x94\x97\x5c\xf2\x7f\x4c\xdb\x42\x80\xa0\x4c\x1e\xca\x00\x20\xa8\x12\xb6\x1a\xc7\xd6\x04\x2d\xeb\xf5\xc9\x28\x50\xf8\x80\x85\x0c\xc0\x82\xd6\xc7\xfe\x70\xf1\x83\x15\xdd\x88\x63\x0c\x63\x23\x17\xb7\x55\x26\x35\x17\x89\x8e\x02\xac\xa0\x86\x43\x6f\x80\x15\x94\x91\xc2\x03\xac\xa0\x46\xd2\xcb\x00\x2b\xa8\xc0\x69\x43\xa8\x20\x72\x82\x05\x50\x41\x8d\xac\xb4\x01\x54\x50\x1a\xf6\x21\xd3\x07\xa7\x12\xa6\x9b\xec\xc3\xe2\x9a\x0d\x87\xa5\x00\x12\xa8\x02\x2a\x16\x20\x02\x05\x2e\x95\x01\x1a\x7b\x23\x9b\x46\x1c\x04\xf9\x66\x6e\xca\xe2\xa8\xec\xec\x4e\x47\xf1\xf8\xec\x99\x4e\x90\x7d\x14\x19\x3c\x0e\x50\x2b\xb0\xc3\x06\x88\x40\x49\x63\x7d\x00\x09\x94\x0f\x17\x4e\xd0\xde\x83\x8a\xe4\x8d\xe4\x72\x8e\x03\xde\x88\xd6\x1d\xc0\x03\x95\xda\xf9\x78\xb1\xb7\x88\x4e\xb7\x71\x46\xf8\xf5\xfe\x43\x99\xde\x91\x9e\x0a\xbf\xb1\x38\x16\x7b\x0b\x5c\x4a\xe3\x00\x32\x8f\xeb\xb0\x38\x70\x3a\x82\xd2\xc6\x11\x62\xb1\xfa\x9c\x4b\xb9\x69\x3d\xee\x30\xa6\x22\x04\x0c\xf0\x1d\xf2\x5b\x38\x8d\x5c\x0c\x74\x77\x70\x48\x14\x86\x8d\xe1\xb4\xdc\x28\xe3\x80\x90\xdc\xc2\xdd\x1c\x23\x54\x8a\x4e\xd8\x5c\x63\x75\xc2\xb0\xe5\x6e\xcb\x8c\xa0\xbb\x80\xcc\x04\x58\x13\xc3\x5e\x77\xf6\x7c\xf1\x7d\x5b\x9e\x74\x8f\x5b\x85\x1c\xbc\x44\xd2\x0c\x2e\x22\xe3\xc0\x2b\x93\x9b\xa9\x38\x00\x98\x20\xd9\x5f\x1c\x30\x9a\xbe\x9f\x73\x68\xed\xe9\x64\x61\x3d\x06\xd3\xec\x7b\x6e\x59\x70\xf9\xf7\x3c\x7a\x93\x00\xe1\x09\xd0\x8d\x5a\xdf\x3f\x30\x04\xb7\xc2\x64\x08\x85\x05\x44\x35\x33\xec\x3e\x8e\xe9\x18\x98\x00\x52\x65\x98\xed\x2e\x8e\xc9\xec\xb9\x24\x60\xf1\x12\x93\x18\x40\x20\x65\x9c\xea\x03\xa4\xa3\x5a\xdc\x60\x42\xeb\xee\xa3\x46\xf8\x01\x79\x2d\xe3\xc0\x2f\x13\x73\x79\x80\x74\x54\x0f\x8f\xc5\x69\xcb\x6c\xbc\x73\xb7\xec\x0f\x64\xdc\xb5\x7b\xa4\x9d\xca\xfb\xf0\x70\x13\xd1\xed\x92\x69\xa7\x3c\x78\x97\x53\xe3\xd6\x20\x60\xab\xbb\x6d\x17\x37\x9b\xb8\xda\x06\xe8\x48\xa3\x48\xa0\x2e\xfb\xea\xb1\xba\xf0\xc7\x75\x40\xe4\xa6\xea\xfb\x03\x2e\x7e\x2d\xdf\xe0\xe6\xb9\xe7\x6f\xa6\xb8\x5a\xe6\x1a\xce\x63\x7b\xeb\x26\xf1\x3b\xe5\x34\x40\x4b\xca\x78\x7c\x05\x68\x49\x85\x94\xb6\x71\x10\xe6\xd5\x77\xd9\x7c\xca\x0e\x83\x38\x2f\x1c\x30\xe2\x78\xd4\x1d\x24\x81\xe4\xc3\x18\x12\x04\x59\x54\x65\x48\x8f\xd3\xe9\xec\x3c\xa6\xfc\xa1\x2c\xe4\x84\xab\xfd\x72\x71\x24\x5d\x7d\x31\x74\x79\x0c\x5e\xd3\xca\x5b\xc6\x0b\xab\xfb\xce\x94\x82\x50\x86\xc6\x92\x44\x3a\x8e\x57\x88\x1a\x1b\x70\x27\xb3\x8e\xc6\x3a\xb8\xf0\x98\x43\xab\x2b\xc4\xfd\xfd\xb0\x73\xdc\x80\x34\x89\x03\x69\xb3\x8b\xcb\xfb\x65\x56\x8e\x86\x31\x87\x4e\xc9\x1b\x8a\x27\xe8\x04\x71\xa8\x78\x22\x31\xc6\x01\x16\xee\x21\x9f\x21\x17\x66\x76\x94\x5c\xeb\x23\x98\x07\xc0\x4e\x13\x0c\xe6\x00\xd8\xa9\x81\x5a\x10\x02\x3b\xe1\x55\x1e\xa0\x34\x05\xfe\x45\x91\x34\x66\x02\x14\x13\xc0\x34\x55\xd0\x16\x02\x98\xa6\x8a\xb7\x60\xa4\x43\xb2\x37\x28\xc3\x64\x99\x95\x44\x92\x0c\x62\x96\x03\xcc\xa5\xc6\x9d\x5e\x24\xec\x91\xe0\x0e\x46\x4a\x98\xb6\xd8\xdc\x89\xfc\x17\x69\xbf\x43\xd6\x78\x66\x11\x2c\xa6\xe6\x7a\x27\x52\x5e\x00\x3b\x11\x09\xd7\x54\x99\x41\xf2\xb2\x85\x34\xd3\x91\x64\x55\x4c\x6f\xca\xf8\x93\x38\x62\xd9\x10\xb3\x95\x0a\x76\x74\xa6\x1a\xec\xa6\xc9\x85\x54\xa4\xf2\x62\x45\xa0\x61\x80\xe7\x8b\x0d\x93\x36\x91\xab\xbe\x10\x41\x69\x9f\x4f\x20\x94\x5a\xdf\x3f\xe0\xfc\x65\x45\x9a\x14\xf7\x3b\x8f\x1f\xd0\x1a\x17\xd4\xe4\x54\x0b\x00\x93\x8a\xe4\x23\x6d\x5b\xa3\xe5\x41\x92\x5b\x7a\xda\x76\x6b\x74\x69\xb1\x9b\x0e\xa4\x72\xa4\xcd\x6e\x7c\xce\x7e\x27\xf5\x6b\xa4\xf6\x31\x1e\x5e\x82\x0f\x91\x7f\x21\x52\x68\x09\xf1\xf9\x1a\x7f\x75\x9c\xc0\x28\xe0\x4d\x11\x80\x27\x65\xa2\x31\x03\xf0\xa4\x55\x29\x13\xb0\x18\xd1\x4c\xd0\xcf\xa4\x93\x1b\xec\x00\x94\xa4\x91\xed\x2a\x90\x0a\x06\x5d\x05\x28\x49\x85\x04\xd8\x01\x18\xd2\x4c\x8e\x0d\xc7\xb6\x0c\x8e\x42\x80\x86\xd4\x80\x7c\x08\xd0\x90\x46\xb5\x35\x23\x7c\x61\xab\x80\x15\x8d\xbd\x6c\xc4\x93\x49\x21\xd2\x10\xc0\x83\x6e\x83\xea\xae\x04\x93\x86\xbd\x70\x13\x2e\xad\x65\x64\x27\x0f\xad\x05\xb3\x73\x80\x5c\x34\x93\x1b\x49\xc6\x32\x6c\x61\x7a\xbe\xe8\xea\x24\x7a\x6d\x3f\x67\xb6\xc7\xef\x82\xe8\x03\xcc\xa1\x3e\x61\x40\x89\xb8\x5d\xbc\x96\x22\xe1\xa9\x4f\xf2\xe5\x48\x27\x12\x84\x3d\xf1\x3a\x1a\xef\x97\x00\x98\x68\xe0\x92\x1d\x00\x13\x35\x44\xf1\x48\xa7\x3b\xc8\x09\x39\xdd\xa3\xfc\x40\x42\x25\x0c\x88\x01\xd0\xd0\xd8\x6b\xcd\xdd\x55\xf7\x70\x70\xa3\x3c\x3d\x88\x44\xed\x72\xb3\x12\x60\x05\x8d\xe4\x50\x6f\x2c\xc0\xd6\x0f\xe2\xdd\x3e\x7c\x8b\xbe\x4f\x57\xf7\x86\x8d\x79\xc4\x6e\xcf\x2a\x65\x55\x0c\xb7\x95\xe0\x05\x6e\x6e\xef\xad\xc8\x78\x15\x89\x64\x11\xa8\x58\x91\x1e\x52\x62\x40\x8f\xd3\xa2\xcd\xb3\xba\xad\x5e\xa2\x88\xe1\x37\x69\xa7\xe1\xa3\x01\xaf\x98\xa7\xab\xfb\x72\x11\xe7\x80\x3f\xf2\x20\xc3\x64\x85\xe3\x21\x87\x5f\x00\xc7\x33\x92\x5b\x8f\xf8\x5b\xc9\x22\x68\x3c\x43\x91\x11\x34\x9e\x24\xb2\x54\x80\xc7\x33\xc9\xdc\x1e\xe0\xf1\x24\xad\x6a\x01\x20\xcf\xd8\xe3\x44\x99\x30\xd2\x25\x40\xe4\x19\xca\x83\xc9\x5c\x7b\xac\x2c\x80\x3c\x03\xbf\xb6\xc8\x52\x52\x78\x0a\x60\x3b\x13\x13\x6c\x00\xb6\x93\x24\xaa\x82\xed\x64\xfc\x71\x03\xb0\x9d\x02\x54\x62\xe4\x63\xcd\x36\x79\xda\x22\x03\x42\xca\x45\x4a\x00\xc2\x53\xc8\xaa\x14\x80\xf0\x14\xae\x58\x23\x1b\xa0\xc6\xcc\x67\xcd\x79\xcc\x85\xe0\x3c\xce\x11\xe0\x3c\x99\x14\x22\x91\xd5\x30\xdc\xa7\x79\x69\x18\x93\x40\xe6\xc8\x92\x6a\x26\x0f\x04\x9f\x8c\x23\x74\x80\xe0\x13\xf8\x2b\x06\x08\x3e\x95\xdc\x77\x91\xd3\x1e\x81\xad\x11\xfb\xcf\xd2\x02\xe1\x13\x78\x12\x45\x5e\xf4\x3c\xca\xe4\x83\xbc\x1d\x22\xfd\x23\xf1\x03\x1f\xe4\x4c\xb9\x53\xde\xdd\xf3\x8f\xfa\xf3\x47\x90\x12\x21\xf2\xa2\xf4\xa1\xec\x9a\x75\x7a\xc2\x3f\x32\x32\x29\x82\x3d\xdd\x00\xfd\x64\xdc\xa5\x43\x9c\x1f\xb1\x35\x03\xa0\x9f\xe0\x0e\x27\xc0\xf9\x59\x3f\xd0\xf1\xfc\xe2\x99\xe3\x0f\x9f\x3f\x30\xf7\x78\x55\x4b\x7d\xb3\x39\x02\x71\xc2\x8b\x5c\x38\x79\xd9\x32\x88\xc1\xd0\xb7\x8c\x5d\x90\x64\xa2\x01\x02\x90\xde\xa8\x01\x88\x4f\xc4\xfe\xf6\xa5\x6c\x03\xe8\xa2\x30\xf7\x5c\x49\x98\x8d\x84\x21\xb6\xcf\xe1\x40\xab\x98\x63\x30\x6b\xc0\x7d\x82\xbb\x8e\xc8\x02\x27\xb8\xa2\x44\xab\x65\xfc\x9c\x03\x44\x9f\x52\x9d\xbe\xaa\x0b\x98\xcf\x0d\xe9\xa2\x17\x55\xa2\x49\x2f\x0c\x56\x6b\xbf\x8b\xc3\x8a\x4c\xa8\x33\xfb\x3e\x63\x2f\xdc\xeb\x45\xa0\x73\x76\x47\x10\xdc\xdc\x77\xbd\xf8\x6b\x70\xe4\x72\x98\xaa\x9c\x6f\xc9\x2a\xc1\x0d\x7f\x00\xe3\x53\x9b\x3b\x11\x3d\x28\xcf\xfd\x01\x10\xd0\x8e\x1a\x45\x08\xcf\xe1\xc8\x04\x3d\x2b\x7d\x64\x9c\xac\xf1\xae\x89\xac\x1d\xcf\x65\x0f\x2f\x1f\x7d\xfe\x79\xfd\xb2\xca\xb0\xa5\xec\x6e\x15\xea\xc7\x4e\xa0\x07\x49\xc5\x32\x41\x69\xc4\x7c\x47\xc6\x40\x87\xe3\x43\x80\xfa\x93\x84\x2c\x0f\x60\x7f\x2a\x0e\x62\x91\x85\x63\x45\x61\xcd\x1b\x73\x8f\x4a\x87\x37\xc6\xcc\x36\xc0\x02\xc5\x5d\xbf\xd8\xd8\x94\x60\x00\xdd\x0d\x64\x40\x80\xba\x53\x48\x47\x13\x82\xee\x84\xfd\xd7\x6d\x6a\x7a\x7c\x26\x02\xf3\xa0\x5d\x6c\x6c\x4d\x6a\x33\x65\x99\xb4\x35\x39\x9f\x12\x83\xe9\xf9\x74\xb6\xb8\xad\x0a\x8f\xdb\x34\x27\xbd\x65\x61\x50\x28\x9f\xea\xc3\x7c\x7c\xe2\xe0\x26\x09\x03\x6e\x00\xa3\x5f\x80\xd2\x93\x8a\x4a\x50\x06\x6f\x80\x54\x06\x91\xcd\xc9\xeb\x61\x53\x07\xb2\xa7\x27\x21\x65\x87\x15\x11\x77\xef\x1e\xba\xc4\xe1\x60\x98\x97\xf7\x70\x34\x40\x6c\x9a\xa2\x47\xbe\x44\x4b\x43\xb1\xca\x28\x28\x45\x7a\x06\x6a\xde\xe1\x12\x5c\xfb\x34\x53\x7e\xfd\xc0\x1f\x50\xa6\xdc\x38\x70\xbf\x3d\x1c\x51\xbe\x0f\x77\xce\x8d\x89\xc5\x45\xbb\x85\xfa\x60\x91\x6f\xdd\x2a\xfd\x18\xa8\x0f\xd8\x22\x78\x3f\x99\x3c\xd8\x21\xdc\x4f\xf5\xd8\xdd\xec\x52\x57\x8d\x24\x4a\x45\x23\x43\xc6\xd3\x83\x40\xc0\xc8\x37\xdb\x54\xb2\x7d\x43\x77\x9c\xc7\xfb\xf3\x03\x6a\x7d\x84\xdb\x62\x92\x04\xd6\xc3\xf6\x1a\xe2\x03\x81\x54\x1d\xf9\x31\x8c\x8c\xaf\xf1\x0c\x19\x3e\x6e\xbe\xcf\x38\xc1\x2d\xe8\x0e\x87\x34\x4d\x65\x97\x91\xf4\xdc\xe4\x78\x87\x85\x8c\xe7\x71\x08\xd6\x49\xc6\x68\x39\x95\xa8\x41\x12\x61\xc1\x81\x6c\xec\x05\x93\xc4\x3d\x0e\x18\x81\x4a\x0b\xd8\x40\xab\x13\x0c\xf3\xe5\x86\xc8\x9d\xfd\x9a\x07\x94\x91\xa1\x6a\x11\xd5\x19\xf9\xdd\x89\x4d\x28\x0b\x0b\xe7\xf3\x9b\xf9\xa5\x43\xf8\x8e\x55\x39\x21\x56\xc2\x22\x99\x59\x1a\x55\x6d\xee\x0a\x34\xaa\xa2\x3c\x0b\x12\x51\x1a\xc7\x6f\xc5\xb6\x0c\xe8\x9f\x69\x6b\x22\xa3\x70\x65\x8f\x03\xb9\xa0\xaa\x04\xe0\x73\x62\x1d\xec\x47\xb6\x6f\x17\xe2\xf3\xf0\xf9\xc1\xda\xde\x9a\x7e\x32\x5e\x2a\xe1\x84\x93\x18\x6a\x73\xae\x8f\x09\x44\xb2\x04\xd8\x68\x55\x3a\xf9\x23\xa9\xd2\x51\xe6\x6e\xa6\x58\x96\x46\x5a\x1e\x8b\x89\xd1\x58\x21\x09\x6f\xf3\x53\xb3\xb9\x50\x86\xeb\x93\xb9\x2f\x8a\x61\xe9\x6c\x1e\x91\x89\x70\x80\x88\x92\x34\xf4\x77\xca\x00\x30\xe3\xf0\x1d\x40\x16\x15\x72\x47\x44\x21\x9b\x7f\xeb\x7e\x2c\x98\xce\x5a\x08\xa1\x8c\x14\x5a\x81\x32\x4a\x0a\xee\x45\xc7\x65\x16\x14\x24\xa3\xca\xa5\x62\x14\x93\xf9\x4e\xdf\xc7\xac\x98\x7d\x67\x20\xff\x51\x9c\x22\xfb\xf9\x0e\x49\x61\x8b\x6d\x71\x90\xa6\xe5\xb5\xd0\xdc\x6c\x46\x21\xae\x89\x1c\x37\x01\xa8\x51\x23\xd1\x67\x08\x6a\xa4\x4d\xae\x14\x9c\xaa\xaa\x65\x12\xd6\x3a\xc6\xc5\x51\x0b\xd9\xbb\xa2\x98\x37\x9f\x4d\x25\x5e\x91\x71\xe1\x01\x5e\x51\x51\xe2\x05\xaf\x28\xd7\xea\x07\x1e\x17\x06\x50\x25\x4e\xf0\xf8\x62\xde\xfc\xe4\xc7\x4b\x44\xde\xf5\x08\xe5\xe8\xb7\xec\x82\xea\xeb\xfa\x45\x53\x3f\x56\xc8\xe2\x24\x02\x36\xa4\x26\x0c\x44\x50\x06\x9f\x2b\x80\x08\x2a\xcd\x01\x84\xbb\x06\x01\x51\x8c\x20\xf5\x2b\x31\x82\x3c\xa7\x60\x04\x25\x6d\xa1\xc0\xff\xe4\xe9\xcc\x05\x01\x5e\xf0\x07\xd0\x7f\x1a\x2e\x68\x21\xfa\x8f\xb7\xcb\x01\xfa\xcf\x24\xce\x2e\x4a\xb8\x3f\xf6\xd7\x00\x67\xc0\x75\x80\x05\xca\x7b\xde\xcd\x9d\x0f\x35\x02\xfe\x67\x72\xaf\x18\x22\xfb\x00\x70\x1f\x02\xfb\x90\x94\x2b\xc0\xef\x69\x65\x97\x2f\x08\x2a\xf5\x70\x0f\x36\x5c\x6f\xd2\xdf\x17\x2e\xf6\x42\x60\x9f\xea\x66\x04\x37\xaf\xba\x19\xf1\x04\xcc\xae\x13\x9e\x23\x5c\x7d\x45\x31\xc2\xc8\xc5\x27\xa4\xbb\x3a\x5d\xc3\x86\x19\x25\x5a\x64\x21\x65\x67\x88\xeb\x53\x3d\x36\x98\x21\x4b\x72\x2b\x0f\x68\x8d\x67\xc8\xfc\x81\x0e\x79\x6a\x55\xa5\x85\xb9\xbb\xca\xd7\xc4\x71\x12\x5c\xba\xc4\x5e\xd0\x4b\x7c\xde\x7d\x89\xb5\xe5\x26\x8c\xb0\x80\x00\xe5\x27\xef\xbd\x76\x5a\x93\x1d\x3c\xcd\xf5\x43\x4d\xb0\x5d\x2e\x24\x43\x94\x9f\x92\xf2\xef\xb0\x9b\x03\x08\xa0\x4c\xbc\x68\x00\x01\xb4\xbe\xa2\xfd\xd3\x60\x1b\xab\x43\x68\x83\x1d\x94\xed\x2d\xed\x3b\x6c\x09\x0f\xee\xe9\x5c\x15\xff\x40\xaa\xc4\x08\x00\x4e\x50\xd3\x34\x04\x4e\x50\x2b\xbb\x81\xcf\x0f\x98\x9f\xeb\x58\xc7\xd5\x83\x42\x9a\x7c\x52\x51\x04\x98\x41\x4d\x73\x5b\xb9\xbc\x8a\xa2\x17\x5c\xb2\x55\xe7\x19\x97\xcb\xa2\x86\x56\xae\xed\xc0\x4d\x79\x77\xc9\x9a\xe8\x92\xdd\xbb\x5c\x3e\x77\x1d\x3e\x29\xfb\xd0\x5d\xbb\x4f\x74\xf0\x5e\xd2\xfd\x3e\xed\xdc\xcb\x15\x49\x2c\x32\x40\xd1\x86\x52\xb0\x77\x96\xfd\x81\xc1\x50\x96\x21\xee\xd2\xc0\x9b\x16\xec\x06\x00\xb9\xdd\x43\xf4\x10\x2d\x60\xbf\x65\xe3\xfb\x5c\x3f\x3b\xf0\x8f\x32\x1b\xc4\x3d\x4b\xea\xdf\xbd\x0e\x8f\x95\xfa\x8e\xdd\xb6\xe5\xf7\xe0\x07\x5e\xd2\x9b\xdb\xd5\xc5\xa9\xb3\x24\x49\x28\x81\x4b\xfb\x78\x11\xf6\x5a\xf6\x73\x94\x23\x98\x37\x20\x3e\x79\x4f\xe5\x8b\xf3\x96\xeb\xf0\x41\xc6\x5d\x37\x10\x70\x4b\x92\x9e\x7e\x22\x2a\x33\x36\xb9\x21\xf1\x3c\x51\xe4\x86\x48\x53\x42\xf4\x94\xe4\x41\xe5\xa2\xae\x48\x83\x3e\xc2\xc7\xba\x4d\xbc\xbe\xc4\x02\xa1\x42\x93\xba\x2c\xc4\xe2\x21\x9a\x36\x80\xe2\x49\x38\xd1\x06\x50\x3c\x99\xf4\x09\x01\xe2\x4e\xe6\x6e\x3d\xaa\x4e\x2d\x2c\x15\x90\x39\x8d\xd8\x9e\xa8\xa6\x3d\x64\xd9\x84\xcc\x29\x69\xf8\x03\xe1\x79\x56\x84\xaa\xec\xce\x05\x1b\x27\xe1\xad\x19\x60\xe3\x14\x92\x8e\x04\x10\x38\x1d\x08\xa0\x00\x02\xa7\x91\xfe\x2f\x80\xc0\x29\x9a\xc1\xaa\xb0\xb4\xbb\x47\x89\x54\xc1\xcd\x06\x5c\x37\x6b\xc2\x94\x89\xaf\x6c\x6c\x0c\x1c\x68\x36\x50\x37\x4d\x4b\x23\x38\x36\x85\x3b\xf7\x10\xc6\xa6\x70\x27\x1c\x55\x90\x5a\x64\x22\x70\x6c\x92\xd6\x01\xd0\x67\x9a\x6a\xac\xe8\x33\x65\x4f\x5e\xc1\xa0\xc6\xe2\x02\x39\x53\xa6\x63\x28\x06\x92\x58\x7e\xfd\x80\x41\x2c\x55\x34\xf0\x88\x0a\x80\x65\xd6\x0f\xf4\xa9\xda\x57\xbe\xa8\x46\x77\xf1\x41\x25\x02\xa9\xfa\x41\xfc\xfc\xa1\x96\x01\xe0\x4c\xf5\xb0\x8a\x37\xa3\x7e\x26\xde\x4c\xc9\xfb\x0f\x33\xd0\xf0\x52\x23\xdb\x9a\x75\x36\xb7\x1e\xf3\xd2\xf6\x16\xee\xbf\xa3\x71\xb5\x29\xa5\xd1\x13\x40\x67\x94\x47\x80\x8c\x99\xca\x35\xb5\x6d\xb7\x68\x66\xb0\x49\x12\x58\xec\x66\x3a\x24\x9a\x27\x14\x47\xf3\x2c\xc0\x30\xa9\x64\xc7\x1d\x6a\x24\xac\x8b\x1c\x10\x91\xb4\x86\x33\xe8\x9e\x0b\xfd\x3c\x29\x2f\xed\x72\x78\x60\x41\x86\x99\x78\x1e\x04\xc8\x30\xa9\x64\xd4\xda\x2a\x0f\x84\xc9\x02\x0d\xd3\xbb\x33\x32\x48\x35\xe8\x78\x86\xb3\x60\x4d\x22\xbd\xc0\x58\x40\x7a\xc9\xfb\xd4\xe0\xf3\x51\x48\xb6\x17\x75\x90\xdc\xc6\xbe\x0e\x73\x43\xf1\xd2\xf4\x32\x9d\xb9\x45\xd9\xcc\xb6\x30\x01\x05\xf0\xa8\x4c\x53\x23\x85\x7f\x34\x6e\x89\xe9\x1e\x37\x6b\xc5\x6e\xe3\xb7\xb1\x37\xc1\x34\x89\x93\xef\x90\x2d\x0d\x56\x07\x6c\x4b\x1f\xbe\x7f\x6e\xef\x42\xca\x6d\x0d\xd3\x33\x0d\xd8\x1c\xde\xe9\x51\xe5\x34\xb2\x71\xa0\x5a\xfa\xdc\x1f\x10\x9f\xb0\xcb\xd8\x2f\x8a\xef\x30\xf3\xa8\xd1\x55\x4e\x03\x16\x5c\x00\xd5\x52\xe5\xd0\x20\xb5\xac\x1f\xf8\x1a\x6b\x69\xd9\x65\xfc\x82\x9d\x8b\xcb\x31\x43\x13\xeb\xa5\x97\x81\x65\x67\xd5\x35\x91\x09\x65\x64\xb1\x7a\xb9\x70\x96\xb5\xfb\x5b\xed\x8d\xac\x67\xb5\x6e\x38\x7b\x48\xee\xb0\x7d\xae\x2f\x70\x3a\x21\x7d\x00\xba\x34\xef\x00\x40\x74\x19\x5e\x93\x80\xe8\xa2\x1f\x5d\x88\xe8\x22\x1a\x5e\x80\xe8\x32\x40\x70\x0a\x10\x5d\x8a\xbc\x53\x40\x97\x02\x32\x7d\x54\x73\xd7\x7b\xc6\x6f\xb2\x63\xb9\xba\x4b\x29\xed\x63\xb7\x76\xfb\x81\x35\x31\xb1\x4e\xcd\x62\x66\x9b\xe0\x57\x95\x52\x15\x6b\x41\x5d\x8a\x1b\x51\x6e\xb6\x49\xe4\x83\x6d\x00\x69\xac\x3e\x76\x16\xd6\x56\x97\x56\xda\x87\x23\x52\xfb\x74\x87\x92\xdc\xa1\xba\xd6\x8f\xf3\x3a\x7d\x89\x64\x7d\xd5\x97\x50\x3e\x10\x4d\xab\xfc\x4f\x7d\x15\x24\x97\x71\x78\x08\x88\xdb\x2d\x45\xba\xf8\xea\xe2\x42\xb5\xf2\xbf\xe2\x0c\xe2\x9b\x52\xec\x20\xe1\x0e\x45\x83\x18\x78\x2f\x26\xab\x8e\x8a\xb3\xe7\x26\xee\x4b\xa3\xec\xda\x93\x2b\x21\x0b\x7b\xb7\x7f\x5c\x1a\xba\x7b\x17\x97\x1c\x43\xb2\x2d\x97\x54\xf3\xa9\x8b\x4b\x0e\xf9\x5f\xfd\x70\x15\xb7\xe5\x8f\xeb\x0b\xcf\xe5\x67\xa6\x00\x1a\xfe\x44\x01\xfa\x5d\x1e\xcb\x00\xef\x25\x95\xcd\xaf\xb4\x41\x4b\x9d\x3e\xa7\x07\xd2\x0a\xe0\x4b\xc6\x85\x3b\x36\xc6\x0b\x4b\x26\xc6\xcb\xde\x2e\x60\xbc\x0c\x59\x25\x50\x2e\xcd\x5b\x1f\xb0\x5c\x86\xd4\xa9\xa5\x4c\xbe\x5e\x9e\xcb\x1d\xa5\x36\x80\xb9\x8c\x34\x7c\xc9\x5a\x11\x9c\x9a\x09\x22\x99\xce\x86\xf7\x67\x51\x7e\x69\x89\x0c\xc6\xac\x65\x4b\x24\x8d\x1b\x7e\xb0\xbd\xbb\x3b\x7f\xa0\x72\xd8\x0f\x55\x52\x19\x41\x4b\xa0\x14\x23\xa7\x35\xb2\xa3\x91\x79\x26\xda\x52\x31\x07\x59\x7a\x03\xbc\x98\x41\x3c\x43\x34\x43\x63\x59\x25\xf0\x62\x86\xa6\x46\xf0\x62\xf2\xee\x6a\xc6\xb6\x3f\xfc\xd6\x79\xdd\x1f\xc3\x1a\xc2\x97\x30\x2c\xa0\x1b\xb6\xa2\x19\x9a\xa9\x2c\xa4\x51\xe1\x7c\x35\x12\xd8\x54\x87\x59\x1c\xb3\xd3\x57\x40\xd5\x1f\xfe\x40\xcc\x0c\x4c\xa9\x09\xfa\x2e\xd5\x6f\xc5\xf8\x7d\x66\x0c\x6e\xac\x62\x09\x74\x4c\x25\x1c\x3b\x04\x7f\xd1\x1a\xd6\xaa\x88\x27\xbc\xb3\x18\x6a\xf7\x9a\xac\xe1\xdf\x02\x06\x49\x00\xfe\x92\x35\xfa\x03\xfe\x92\x0a\x6e\x5f\xd1\x48\x2e\xec\x99\x05\xf0\x25\xa4\xed\x00\xbe\x68\x0a\x6c\x0d\xa8\x02\xa4\x9a\x66\x0a\x8e\xdd\x40\x03\x18\xd4\x79\x6c\x8e\x00\xc2\xdd\x9a\x5e\x36\xfe\xe0\xaa\x75\x6b\x15\xc2\xce\x96\xb9\xa1\x44\x2d\x68\x04\x3a\xa8\x94\xb7\x10\x1b\xc3\xb2\xe9\x4b\x7d\xe7\xa2\x77\x0c\x73\x69\x9f\x59\xa3\x48\x33\x91\x06\xfc\xb9\x75\x8f\xbe\x13\xdc\x35\x4f\x5a\x76\xaf\xda\x72\xd7\x7d\x8a\xc1\x99\x16\xd3\x81\xfe\x52\x4b\xfd\x03\x4f\x65\x94\x13\x30\x65\x06\x79\xf7\x03\xf4\x97\xa1\xbe\x0a\xfa\x4b\xf7\x22\x1a\xc4\x97\xd2\x9d\xc8\x8d\xab\x46\x3d\x43\xb7\x52\x7a\x31\xf5\xeb\x65\x2a\x84\x4c\x73\xbf\xcc\x9d\x9a\x98\x8a\x16\xeb\x0d\x2d\x8f\x4d\xd6\xab\x85\xbc\x91\x81\x7e\xd7\x8a\x9d\xb7\xec\xad\x87\x0a\xa9\xd8\xb9\xb1\x60\xbc\xf8\x04\x0c\x26\xeb\xca\xd3\x30\xf4\x9a\x93\x2b\xda\x5c\x44\xbf\xed\x97\xc8\xd5\xe3\xc9\x20\x5f\xa6\xa6\xad\x46\x9a\x0a\x13\x36\x46\x13\x9c\xdd\x0f\x4e\x9c\x4c\xab\xe5\xe6\x35\x24\x65\xfb\x94\xfc\x83\x98\x5d\x87\x77\xee\x3e\xd1\x73\x54\x49\xef\x99\xdb\xb9\xfb\xf4\x3b\xd7\xde\x68\x7a\xcc\x4c\xab\x26\xf3\x27\x5a\xb5\x18\x33\xc4\x15\x47\x93\xfb\x57\x29\xde\x89\x65\xc4\xf6\x17\xf7\x2f\x64\xfa\x08\x10\x63\xba\xbc\x5c\xc4\x98\xa2\x5c\x08\x62\x4c\x0a\x27\x71\xb1\xec\x20\x16\x30\xda\x62\xd9\x05\xd8\xbe\x68\xa4\x3e\x9a\xd2\x81\xdb\x35\x43\xe5\x6a\xb7\x6b\xc6\xa0\x16\x37\x0e\x82\x04\x03\x20\x99\x4c\x34\x6b\x00\x24\x13\xcd\x21\x88\xfb\xee\x14\xde\xf8\xb6\x1d\x96\x1f\x2b\xf5\x63\xee\x84\x30\x25\xb4\x9b\xa0\x00\xf4\x24\x80\x64\x22\x1c\x1a\xa9\x92\xc2\x23\x0b\x06\xed\x21\x6d\x7e\xb1\x98\x60\x79\x69\xf2\x43\x6f\x4d\x40\x79\xc9\xc9\x9d\xb6\xd8\x5e\xc9\x28\x1c\x4d\x77\x17\x97\x08\x1b\xac\xec\x1a\x2c\x97\xaa\xce\x04\x96\x4b\xf5\xc2\xaf\x01\xfc\xaa\x5c\xd7\x48\xa0\x7f\xb8\x31\x31\xaf\x4e\x47\xf3\x41\x06\x77\x19\xcb\x82\x84\x0c\x07\x14\x3d\x24\x40\x69\x09\xdb\x05\xa5\x25\x15\x0d\xc1\xb1\x94\x3b\xa7\x3a\x8e\xc2\x3b\x41\x59\xab\x9b\xaf\x9c\x3c\x2f\x94\x51\x8c\xd4\x24\xc3\x74\x10\x6c\x04\x10\x5b\x92\xe1\x2a\x01\x64\x4b\x56\x35\x06\xb2\x25\x93\x99\x2b\x62\xb1\xb2\xea\xfd\x30\xf0\x2d\x85\xfc\xcc\x01\x7c\x4b\xb8\xa3\x63\xf1\xa8\xf0\x38\x80\xc6\x12\xfa\xee\x00\xc6\x92\x0a\x59\x17\x23\xb4\x88\x72\x80\x82\xd8\x05\xa7\x37\x70\x47\x51\x2f\x8a\xec\x39\xb1\x35\xdc\x51\xd4\x0c\x81\x66\xa9\x5e\xe4\x84\x21\xbe\x61\x45\xb6\xc0\xa6\x05\x82\xa5\x90\x01\x3e\x80\x60\x59\x3f\xf0\x56\x49\xf4\x89\x7e\xcb\x98\xf6\x4b\x8c\x01\x11\x03\xa8\x95\x20\x12\x21\xa2\x10\xed\x37\x7c\x87\x49\x92\xb8\x06\x89\x1a\x40\xd3\x0a\x80\x53\x02\x8c\xb6\x88\x2a\xe8\x3f\x0d\x00\x4a\x46\x22\x92\x08\x7c\x2a\x49\x72\x11\x80\xab\x6c\xce\x1f\x15\xe5\x11\x79\x26\x1a\x09\x28\x9d\xbc\x26\x62\x06\xc3\x6c\x76\x94\xe1\x9b\x03\x0a\x35\x23\x1a\x1d\xc5\xdc\x00\xc6\x4a\x78\xd0\xa2\xb1\x75\x90\x70\xc0\x52\x19\x64\xae\x8b\x80\x99\x94\xe6\x88\x1b\x0d\x73\xac\x43\xab\x68\x73\x5a\x82\xd1\xa0\x2b\x80\xa5\x52\x08\x15\x0c\xb0\x54\xd2\x56\xdc\x01\x53\xc9\x87\x43\x50\xf7\x6b\xbb\x2a\x7d\xbc\xfd\x9a\x60\x71\xa4\x1a\x80\x52\x72\x86\x25\x02\x94\x52\x94\x6e\x81\x40\xc1\x18\xf2\x1b\xe2\x26\x3e\x4a\x21\xb2\x33\xc0\x47\xc9\x5e\xd5\x83\x8f\x12\x1e\x1a\x60\x50\xaa\x94\x2e\xfa\xda\xc6\xcd\x99\x1a\x4a\x64\xbc\xa3\x5e\xd8\xdc\xd3\x83\xa9\x75\x1c\x30\xa7\x01\x69\x08\xd4\x3f\xc5\x8b\x20\xcb\xd2\xaf\x8f\xb9\x09\xb7\x13\x8b\x39\x15\x6d\xa9\x01\x3a\xa7\xbe\x66\x41\x24\xb5\xa3\xc6\xfd\x45\x4a\x15\xa7\x6e\x17\xbc\x7e\xda\x67\x66\x6c\x11\xfe\xae\xfd\x24\x70\x64\x01\x46\x3e\xc2\x5c\x94\x76\x13\x4d\xeb\x70\x45\x89\x1a\x03\x42\x3a\x82\x94\x73\xf2\x89\xb8\xf1\x46\xb0\xfb\x1a\xe2\x64\xa2\x71\x13\x1c\xe3\x64\xdd\x5e\xf7\x5b\xd6\x39\xcb\xd6\xf0\x5e\x09\xe4\xa3\x58\xf4\x72\x16\xcf\xea\xd2\x32\x4a\xf5\x63\xb0\xb9\x05\x29\x0c\xa0\x48\x8a\x42\x27\x90\x23\x23\x21\x2b\x05\x69\xe3\x14\xaf\xe3\x85\x1a\x48\x25\xd0\x12\xf6\x59\xfd\x48\xb8\xe4\x32\x6d\x00\x11\x8f\x1b\x10\xd7\x09\xb1\x26\x80\xb8\xd6\xcf\x06\x64\x91\xd4\x1d\xdb\xc7\xdc\x49\xb7\x70\x4d\x51\x48\x01\x65\x24\x25\x09\xc3\xd2\x0c\xb2\x97\x37\xa2\x8c\x94\xf0\x78\x7e\x5e\xde\xdb\x80\x88\x36\xab\xdc\x0f\x74\x5f\x1a\x00\x72\x64\x48\xa9\xbb\xde\x7b\x88\x87\x5d\xef\xbd\x6e\x79\x51\x55\x22\xa8\x02\x04\x91\x7d\xcd\x2c\x82\xc8\xb6\x5c\x82\x20\x92\x74\xed\xed\x09\xa9\x86\x53\xd5\x21\x9e\x80\x6e\x45\x87\x78\x7a\xb5\x04\x60\x48\x12\x63\x27\x40\x0c\xc9\x12\xcc\x9e\x70\x11\x45\x93\xea\x0a\xf8\xa4\x73\x89\x6e\xf2\x1b\x5b\x93\xc4\x6a\x1d\x16\x4a\x84\xa4\x08\xd1\x33\x3c\x15\xa1\xb3\xe3\xee\xe1\x2d\x2d\xb0\x22\xd9\x63\xd8\xbd\x45\x72\xfd\xc1\x15\x29\xc4\x90\x05\xb8\x22\x79\x38\x19\x9a\xd2\x58\xf2\x2e\xe9\x85\xdd\x74\x49\xaf\xf7\x66\x5d\xd2\x0b\x7b\x12\x6f\xa4\x84\x1d\x17\xfe\x8a\xf5\xe9\x45\xc4\x02\x5f\x32\x51\x3e\xb3\x54\x4c\xe9\x4f\x0b\x05\x86\xc9\x52\x81\x31\xb2\x55\x4f\x31\x46\x8c\x0f\x0c\x30\x46\xaa\xd7\xf7\xbd\x7a\xfd\xc8\xc7\x00\x39\xeb\x9e\x0c\xf6\x48\x32\x78\x33\xfa\xd2\x03\x42\x85\xaa\x93\x18\xc7\x7b\x27\xb0\x47\x42\x0f\x24\xb0\x47\xd6\x07\xd6\x04\x19\xc9\x76\x03\xc6\x85\xd4\xd2\x4d\x5a\x6c\x57\xf1\x7f\x97\x42\x74\xdc\xdf\x8b\x52\x48\x27\x93\x5f\xfe\x7d\xe4\x42\x5f\xa4\xbc\xaa\x86\x00\x4d\x62\x36\xf1\xe8\x1a\xdf\xbc\xe0\x00\x9c\x24\x48\x2c\x14\x80\x93\x94\xea\xac\x41\xbe\x75\x6e\x15\x9c\x64\xcf\x38\x79\x73\xf4\x0c\x00\x76\xa4\x7a\x81\x02\xec\x48\xa8\x54\x00\x3b\x12\x3a\x76\x80\x2e\x92\xf4\xec\x15\x5d\xa4\xe8\xd4\x0e\xba\x48\x3a\xdc\x72\xdd\x4c\xb5\x34\xb6\x34\x89\x3e\x1c\x77\xe7\x5a\xd1\x13\x41\x46\x3e\x72\x7e\x46\xc7\x71\xb1\xec\x53\x40\x02\xd0\xbd\x5f\x55\x24\x08\x61\x0d\xb0\x49\x22\x7b\x16\x3b\x4b\xe1\x29\xe8\x8e\x1f\x81\xb0\x77\x0c\x1b\x88\x41\x1d\xdf\x11\xe2\xaa\xa3\x0f\xb7\x99\xeb\x42\x4a\x3e\x8d\x44\xa0\x96\x24\x05\xf2\x3e\x68\x01\x66\xd9\x09\xe8\xda\xd7\x36\x1d\x87\x7a\x3d\x7a\xbb\x41\xd3\x86\xa9\x80\x67\x12\x8a\xf0\x7d\xca\xb2\x18\xdd\x24\xf7\x11\x64\xb3\xab\x62\xe8\xb5\xd3\xf1\x25\x69\x8e\x74\xb2\xcf\xdc\x80\xf8\x92\x14\x23\x36\xba\xe9\x49\x3d\xa5\x44\x3e\x17\xc3\x43\x3a\xee\xf5\xba\xa2\xf5\xc5\x37\xaa\xfe\x86\x9d\xdc\xc6\xa4\x69\x08\xe0\x50\x4a\xf5\x63\xe1\x50\x20\xf1\xdd\x5b\x2d\xfd\xe0\xc1\x43\x89\x8c\x48\xd1\x55\x37\x74\x15\x06\x0f\x25\x88\xde\x0e\xf0\x50\x82\x64\x24\x01\x1c\x4a\xda\x0e\x11\xe0\xa1\x14\xd2\xe5\x84\x70\x28\x60\xc0\x87\x70\x28\x02\xb4\x06\x70\x28\x41\x40\x55\x74\x35\x0a\x89\x6d\xc7\x07\x5f\xc5\xaa\x73\x73\xa5\x68\x07\x36\x4a\x10\x8f\x14\x5d\xb3\xa1\xba\x72\x27\xb1\xaa\x72\x51\x37\xaf\x9e\xfb\x9b\x98\x69\xaf\x11\xc1\x4f\x89\xec\xe1\x58\xda\x45\x68\xaf\x15\x4b\xa5\x18\x23\x01\x98\x4a\x68\x8d\xee\xa0\x37\x27\x7b\xb4\x94\x02\x72\x4a\x45\x27\x1b\x9e\xce\x21\x1d\x3b\xdc\xfe\x14\x33\xdc\xe1\x71\x17\x74\x52\x3a\x40\x92\xe5\xdd\x16\x96\x37\xef\x10\xc1\x52\x09\xdd\x32\xc0\x52\x09\xe5\x9d\xfe\xb8\x9c\x52\x54\x1c\x3f\x06\xfc\x0e\x1c\x95\xc8\x12\x57\x32\x8b\xec\x73\xa5\x75\x4e\xc7\x6c\x70\x54\xb6\xbb\x66\x57\x1b\xd9\x47\x7a\x69\x23\xa1\xf9\xb9\xbf\x26\x86\xf3\x25\xba\xe1\x66\xc0\xdb\x43\x63\x2f\x98\x2a\x59\x41\xa0\x7f\xae\x81\xe5\x45\x80\xd5\xa1\xba\x7e\x1b\x7a\x96\x76\xb0\x02\xc2\x31\x7f\xe6\x9a\xa2\xb1\x8f\x6e\xef\x77\x5c\x65\x89\xa8\xf9\xec\x20\xfe\xa0\xad\x44\xfe\x6d\xe2\x90\x00\x71\xa5\xaa\x0e\x88\xb8\x52\xc0\x91\x8e\x21\xbe\x24\x64\x67\x1c\xba\x48\x56\xca\x8e\xcf\x32\xd3\x5c\x6d\x91\x80\x1e\xf6\x3a\x50\x2c\xa1\x2f\xe7\x50\x89\x01\x7c\x2b\xc6\xc1\xa9\x69\xfe\xc0\xa6\x84\x61\x0c\x6f\xae\xc8\xb0\x16\xe2\xb5\x80\x0f\x1b\x23\x39\x23\x10\x8e\x91\x88\x86\x82\xf9\x02\xde\x52\x8e\xfd\x35\x27\x3c\xfb\x0e\xb3\x03\x05\x06\x97\xa5\x78\x6f\x3d\x32\xdd\x1e\x96\x91\x47\xad\xc7\x6c\xfe\x1c\xcb\x41\x6a\x0e\xbd\x68\x87\x26\x2e\xdf\x2f\x64\x3f\xe8\x3e\x07\x71\xcd\x29\xc2\xf3\x51\xd1\x63\xe0\xf9\x58\x06\x4b\x34\x08\x82\xce\x0e\x19\x35\x44\x9f\xf2\x81\xeb\x23\x29\xfd\x62\xc0\x17\xc3\x89\xaf\x95\x25\xf5\x5b\x12\xa2\xef\x77\xd0\x18\x8b\xef\x74\x1b\x60\xee\x2a\xe9\xb6\x0a\x45\x06\xd6\x7d\xcc\x7a\x38\x59\xa4\xf8\xdf\x76\x0f\xd0\x61\x2a\x69\xb9\x63\xc8\x47\x75\xe0\x07\x1e\x26\x0c\x03\x01\x1d\x26\xed\xdb\x57\xe0\x61\x36\xbf\x14\x1d\x86\xb4\x53\x31\x64\xa4\x03\xd2\x2a\x3c\x8c\xf7\x64\xa0\xc3\x64\x15\xd7\x81\x35\x2e\x3b\x61\x24\xa6\x35\xda\x68\x6c\x17\x0e\xde\x09\xc7\x4c\xbf\x41\x56\xf6\x12\x73\x2c\x1d\x26\x32\xc7\x7e\x10\x54\xa6\xad\x6c\xe0\xcc\x6f\xf0\xca\x00\x0f\x32\xdc\x6b\xba\x79\x0c\x24\x55\x10\x64\xc2\x1b\x8e\xd1\x69\x80\x03\x37\x54\x53\xf4\xd3\x1f\xe4\xb8\x26\x81\x47\x0c\x39\x1c\xbc\x12\xa4\x98\xdc\x9c\x55\x11\xb7\x54\xa5\x41\x8a\x89\xec\x86\x84\x79\x95\xe1\xfe\xe7\xce\xca\xe0\x8c\xc1\x9d\x95\x6a\xe5\x18\x1f\xb5\x32\x7e\x6c\x62\xde\xc6\x0c\xb3\xc1\x61\xa4\x1b\x8b\x15\x4d\x6f\xb4\x01\x81\x19\xfa\x79\x80\x01\x93\xca\xb0\x1b\x5c\x41\xe9\x9d\x32\x4e\x21\x67\x68\x80\xfc\xa9\xdd\x5d\x7e\xa2\x20\x41\x56\x05\x8a\x69\x2e\x0e\xc9\x31\x88\xd2\x8e\xb1\x6f\x97\x9c\x55\xec\x4b\x81\x70\x31\xb4\x2f\xb9\xf3\x48\xb3\xad\x7d\x62\xc8\x0d\xe4\x7b\x43\x6e\xe0\x84\xdd\x07\x24\x8d\x8a\x6e\x05\x2c\x84\xc7\x71\xb3\xce\xbb\x4c\xb0\xed\x2e\xbb\x3e\x30\xe6\x41\x54\xd5\x61\xad\xde\xd8\x68\xcf\x1a\xb7\xa0\x83\xf4\x09\x6f\x02\x1d\x04\x41\x8d\xa9\xba\x32\x0f\x15\xa0\xfd\xbc\xa3\x92\xfd\xd6\xfa\x06\x9a\x8c\x29\x04\x63\x78\x37\xa3\x8f\x12\x70\x32\xd9\x50\x59\x20\x64\xfa\x70\xdb\xbc\x42\xbe\xd3\x77\x12\x6f\x93\x23\x3c\x06\x99\x50\x49\x47\x1a\x40\xbd\x94\x62\x3d\xc4\x3f\x95\xe9\x0f\x12\x76\xc7\x4a\x3e\x28\xdd\xf8\x06\xc1\xbe\x8a\xa2\x60\xbd\xc4\x3e\x4d\xe2\x2e\x22\xcc\x8c\x4f\xcf\x30\x17\xfb\x83\x82\xa2\x7e\x4e\x7d\xea\xc8\x7f\x1d\xf3\x80\x9c\xa0\xd6\x4c\x68\x77\x62\x5d\x26\x2e\xf6\x1a\xc3\xa7\xea\x8e\xae\xe4\xa0\xc0\xd4\xb6\x3f\xf6\x76\xd3\x8f\xd9\x5a\xd0\x96\x99\xec\x36\xef\xa4\xe4\xc7\xfe\x81\xc9\x8d\x7e\x83\xd7\x12\x5e\xb0\x01\xa6\xb2\x05\x9b\x29\x9a\x15\x0c\x0f\x9c\x94\xd0\x65\x14\x3c\x94\x28\x68\xd6\x42\x9d\xb8\x8f\xa7\xb7\xf4\x64\xac\x8c\x29\xd9\x44\xaa\x04\xea\x24\xbc\x14\x03\xad\x64\x68\x83\x9d\x8d\x50\x1f\x84\x36\xb0\x47\x8a\xb7\x41\x60\x8c\x84\x9e\xd3\x53\x1b\x7e\xf2\xf9\x43\x3d\xbe\x8f\x9e\x60\x87\x9a\x2b\xe5\x30\x97\x74\x1e\x2e\xe1\x24\xa6\x55\x8d\x63\x42\x7e\xf4\x01\x9b\x98\x50\xaa\x5e\x0a\x93\x4c\x96\xba\xa9\x00\x32\x12\x2a\x3e\x60\x8c\xac\x97\xfc\x7a\x1d\x64\x45\x4a\x30\x46\xc2\xfb\xd2\xd9\x89\x0c\x80\xc9\x83\x2b\x32\x0e\xe7\xab\x9b\x92\x8a\x03\x3b\x8d\x13\x62\xaf\x03\x2b\x12\x7a\x06\x03\x2b\x12\xba\xf4\x4d\x02\x56\x55\x64\xe7\x70\x08\x54\x84\x6b\x59\x95\xfc\x00\x23\x92\x8c\x20\x06\x46\x24\x55\x3d\x83\xc1\x11\x09\x2f\x11\xe7\xce\xb1\x00\x03\x12\x47\x64\x6f\xb7\x61\x73\xbe\xc4\x54\xba\x49\x88\x52\xd5\x2b\x61\x4e\x02\x17\xdc\x54\xd3\xae\xd2\x1a\x99\xfd\xbd\xd1\x9b\x48\xce\xbb\x61\x64\xdc\xb2\xcb\x7a\x34\x30\xf3\xc8\xb8\x55\x4b\xe6\x5c\x32\xee\xfc\xf5\x12\x15\xed\x97\x9c\x61\xc4\x8c\x89\x8c\x2b\x11\x00\x17\x64\x48\xb0\xe6\xc5\x0c\xbb\xc3\x2e\x40\x28\x9c\x30\x91\x66\x5d\xdb\xcb\x4a\x19\xc1\xe5\xf6\x67\xa5\x48\x46\x69\x2e\xb9\x98\xb7\x15\xd1\x18\xb8\x20\xfa\xd6\x81\x0b\xd2\xf7\xae\xc5\xee\xad\x5b\xf1\xbc\xb9\xcd\x73\x15\x30\x7b\x6b\x2a\x9c\xdc\x35\x57\xc3\x47\x00\x12\x49\x24\xe5\x08\x40\x42\xc2\x7b\x4b\x30\x3f\x32\x08\xc9\x31\x1f\xc2\x4a\x5c\x35\x60\x01\x4a\xf9\x6d\x04\xc3\x7c\xb1\x1c\x41\x40\xe6\xeb\x62\x51\xd9\xc7\x59\x92\x02\x90\xea\x47\x3f\xc8\xf9\x79\x33\xce\xe8\x10\x1e\xab\x97\x89\xc0\x7e\x84\x9e\x4d\xc2\x7e\x54\x12\xf3\x05\xb0\x1f\x03\xd4\xb3\x00\xf6\x63\x80\x6e\x11\xe7\x22\x3e\xd3\x61\x9c\xa4\xe5\x21\xcf\x44\x00\xd6\x31\x94\xaa\x4f\xef\x46\x91\xfe\xcf\x44\x3a\x17\xeb\x4c\xdc\xd5\x20\x98\x9d\x3b\x5e\x9f\x71\x9f\x4b\x62\xdb\x91\x7f\x67\xce\xfe\x30\xf9\x03\x04\xd7\xc3\x97\xd8\x70\xd5\x32\x1b\x88\x4c\x49\x71\x12\xa6\xaf\x9f\xc5\x99\x1d\xcf\xda\x27\xa7\x00\xab\x7a\xc9\x89\xef\xa1\x6a\x0d\x74\x47\x78\x47\x7e\x82\x13\xe0\x2d\xdb\xb9\x48\xd7\x20\x3b\x5c\x9c\x85\x5d\x89\x4a\x72\x12\xf6\xe2\xc5\xea\x89\xf0\xe7\xcc\x9f\xc8\x6f\xb2\xe6\x93\x28\x96\xdd\xa1\x2a\xcd\xa0\x1e\xe2\x29\xb5\xf8\x9f\x8d\xe5\x85\xea\x9d\xcd\xd1\xf0\xad\xe1\x91\x50\x00\x90\x3e\x52\xd5\x7c\x77\x36\x76\x6e\xf5\x63\xfc\x2d\x6c\x58\xd4\x24\xbd\x1b\x4e\x8c\x0c\xd3\x21\x93\xc0\x57\x97\x9b\x93\xb4\xff\x5e\x4a\x9f\xde\x32\x3a\x8f\xd2\x15\x8e\xd5\x89\x76\xaf\xed\xef\xc4\x65\x55\x85\xf9\x24\xc6\x5d\x7d\xe9\xd4\xe2\x5a\x7c\xc7\xd1\x33\x2b\xc4\x28\x56\xb5\x93\x93\x7b\x42\xaf\x8c\xcf\xc9\x51\x42\x5d\x3a\x27\xbe\x13\x0e\x0d\x20\xa1\xe2\x16\x59\x54\x62\x7a\xad\x7e\x9e\x4e\x0b\xef\x9c\xfa\x61\x43\x0d\xce\x25\xfa\x0c\x52\x97\xc6\xb9\x14\xec\xb9\x57\x9f\xd0\x43\xaf\x9e\x01\x0f\x59\x1f\x58\x13\xf3\xd5\xfc\x00\xab\xa3\xf3\xb8\x44\x9f\x39\x9c\x96\xcb\x8a\x78\xff\x62\xf1\xad\x08\x07\x18\x00\x03\xe3\xbc\x61\x3d\xf0\x6a\x00\x40\xe6\x5e\x28\xb0\xe8\xf6\xc6\x59\x67\x78\x4a\x30\x80\xf6\x48\x55\x79\xfa\x5c\xfa\xe5\xdc\xbb\x82\x30\xc1\x3d\xbf\x8f\x42\x1d\xcf\xf7\xf9\xa5\x73\xaf\x12\x21\x23\x7b\xcd\xbb\xe4\xb1\x7b\x25\x8c\xf4\x9a\xf0\xec\xaa\x4c\x7c\xbe\x4c\x9e\xdb\xe2\xa3\x7b\xd0\xaa\xf3\xa3\x26\x57\x07\xd7\x0c\xb3\x0e\x5c\x87\x9e\x0e\x89\xf2\xe2\xb0\x75\x3f\xa7\x47\x4c\xfc\xb5\x58\xfe\x74\xb7\x00\xe7\x31\xdd\xa7\x57\x62\x04\x50\x94\xcb\x34\x57\x72\xcc\x0b\xb4\x9d\x04\x21\x00\xce\x23\xc9\xc2\x2e\xce\xaf\x3a\xfe\x05\x6e\xb2\xd6\xf1\x0b\x39\xa2\xf5\xdf\xba\xc1\x5d\xdc\x2f\x19\x5a\x07\xec\x47\x95\x37\x88\xee\x61\xc8\x0d\xe8\x1e\x49\xf8\xd9\xb8\x90\x38\x9a\xad\x14\x83\xf7\xfc\x18\x12\x9d\x7c\x8e\x0b\x3a\xd3\x74\x11\x7c\x46\xe6\xdb\xb8\x2a\xe6\x58\xa7\x86\x23\x0c\x82\x43\x5c\xd5\x06\x98\xe3\x0b\xd3\x24\xd9\x8c\x03\xfc\x90\x44\x12\x99\x00\x3f\x64\xe8\x64\x01\xba\x47\x78\x37\x05\x40\xc7\xdc\x0d\x7b\x54\x75\xe7\xb9\xd6\x51\x1d\xc7\xfe\x21\x73\x4d\x49\x4f\x83\x28\x03\xc4\x15\x91\x3b\xf4\xa5\xba\x04\x31\x6e\xbe\x13\xc8\xfb\xf4\x2e\x04\x7e\xf3\x1d\xec\xc3\x1c\x4f\x90\x38\x46\x73\x11\x97\x58\x31\x74\x8b\x05\x6f\xa3\x1b\xc5\x24\xde\x86\x57\x9c\xc0\x6d\xa4\xaa\xa7\xe0\xd5\xc1\xa9\x40\xf6\xb8\x90\x37\x54\x8f\x41\xcf\xa8\xba\x84\x5f\x4a\x12\x2e\xb4\x92\x44\x71\xee\x86\x12\x0d\xeb\x81\x71\x4f\x1f\x29\x00\x32\xd6\x4b\x0c\x7f\xe0\x93\xbd\x7f\x38\xd1\x3a\x68\xcd\x28\xe8\x6e\x0b\x66\xea\x47\x7f\xbb\x94\x43\x30\x79\x81\x7e\x51\xf5\x35\xba\x4c\xc5\xa4\x47\x37\xe8\x17\x5d\x35\x1d\xf4\x8b\xf5\x03\x7d\x9a\x1e\x3e\x7e\x38\xa1\x49\x50\x03\xd0\x29\xa6\xf4\x09\x14\x8a\x00\x33\x2a\x40\xa1\x98\xd2\xa7\xeb\xf4\x5b\x7a\x01\xf5\x90\xaa\x5c\x78\xdf\x69\x7f\x00\x9d\x22\xc8\x08\x1c\xa0\x53\xec\x28\x4e\xd0\x29\x52\x73\x68\x38\xdf\x55\xe5\x04\xe0\x29\x6a\x4e\xbe\xc4\x39\x74\x1f\x41\x7a\xd2\x6e\x80\x33\xe6\x52\x29\xa0\xc8\x3c\x2e\x6e\xf2\x0f\xc7\x8f\xd2\x25\xa9\xde\x28\x14\x48\xb4\xa0\x50\x8c\x3d\xca\xdb\x84\xf2\x2c\xed\x6d\x16\x0c\xcf\x11\xa1\x5b\xaa\xb8\x17\xf9\x97\xb6\x1d\xe8\xd2\xe7\xdb\xdd\x86\x32\x06\xb6\x67\x08\x49\xa1\xd4\x7f\x81\xed\xa9\x75\xee\x7a\x4c\xfc\x44\xa5\x0f\x6a\xb0\xcb\xec\xad\xbe\x43\x7e\x86\x0d\x30\xa9\x28\x62\x87\x1b\x86\xeb\xab\xea\x25\xef\x85\x3c\xb4\x89\x15\x09\x7e\xbd\x41\x04\x62\x22\xcc\x68\x01\xc2\x44\x9a\x30\x67\xc0\x23\x8a\x8e\x09\xd7\xc7\x55\x3b\x8a\xf6\x85\xbd\xac\x9a\x2a\x01\x20\x89\xd8\x33\x89\xf2\x55\x11\xca\x2f\x0c\x69\x7a\x8c\x5c\xca\x42\x3a\x1a\x00\x0c\x31\xf5\x5c\x01\xf3\x21\x48\x87\x18\x40\x3e\x44\x65\xb6\x81\x7c\x08\x2f\xc2\x37\xe4\x03\xab\x03\x9c\xc3\xac\xbf\x85\x39\x0d\xa0\x1e\x02\xc0\xb6\x00\xea\x21\x55\x2f\x2d\xc5\x7a\xd0\x48\x02\xd6\x43\xd5\x12\x0d\xd4\x43\x1e\x08\x50\x37\x66\xb1\xea\x05\xe0\xbd\x24\xae\xdc\xf7\x07\x5c\xe1\x4c\x3f\xa0\xeb\x28\x6c\x62\x40\xc8\x7e\x85\x79\xa8\x6e\x39\x11\x1c\xa2\xf9\x31\xd1\xbb\x4c\xd4\xad\x58\xa6\x79\xee\x26\xb0\xb9\x4e\xcb\x7a\x47\x5a\xc6\xd5\x16\x75\xf7\x36\xae\x19\xe5\x0a\x30\x87\xf5\x31\x33\x88\xcf\x80\x17\xb8\x1b\xcc\x81\xbd\x78\x13\x2d\xd5\x2c\xb2\x2a\xd3\xd7\xb9\xc3\x83\x2c\xdd\x66\xe6\xcd\x7e\xca\xc4\x26\x9f\x3f\xd6\x6f\x63\x8a\xb1\x96\x3f\xc2\xc0\x18\x66\x81\x2f\xb1\x43\x01\x8b\x48\x55\x9b\xe2\x4d\xa8\x55\x3b\x7c\xa9\xf8\x83\x7f\xe0\x77\xed\xfa\x9a\xce\x69\x97\xc9\x0e\xea\xe4\x61\xff\xd3\x4d\x12\xf8\x87\xa2\x8b\x0c\xf0\x0f\xb5\xb1\xbd\x81\x7f\x28\x6a\xcd\xf7\xe2\x2b\x55\xc7\xe1\x1b\xb8\x7d\x25\xb7\x5b\xbe\x52\x9d\x16\x7c\xc9\x75\x5b\xb8\xcd\xc1\xe1\x9c\x62\x84\x1b\x61\x99\xa4\x03\xee\x97\xa6\xa7\x2c\xf3\xd5\x24\x2c\xfb\x07\x62\xb4\x0f\x3f\xc0\x51\xc7\x5e\x83\xab\xaf\x9b\xe1\x0d\x9c\x94\x86\x37\x80\x21\xd2\x70\xb2\x41\x93\x32\x2b\xce\x6d\x5a\x5f\x8c\x6d\xe0\x42\x14\x0d\x1f\xb7\xf9\x0c\x51\xd1\x6f\xf9\x0d\xd4\x0d\xa4\x86\xa2\xb7\x16\x40\x0d\xa9\x2a\xe9\xdf\x9d\x00\xae\x61\xb9\xf8\x03\xb5\x92\x21\x5d\x9f\xde\x1b\xeb\xdc\xf6\x6a\xbb\xc1\xc6\x1f\x36\x41\xd6\x41\x63\x9a\xef\xce\xcd\xb6\x7b\x84\xf4\x4c\xde\x6c\x0a\xed\x60\x10\x38\xd0\x0e\x55\x1b\xe1\x0d\xd6\xd3\x3e\x94\x43\x50\x6e\xb4\xfa\x7b\xb8\xb2\x96\x6d\xcc\x8f\xbb\x2f\xf9\x35\xc9\xae\xdd\x16\x44\x5b\xa9\xd1\x08\x12\xd1\xdd\xe5\xc4\x4e\x1d\x4e\x18\x20\x11\x86\xc9\xdc\x58\xfc\xf6\x31\x32\x03\x87\xbd\x06\x1b\x5a\xd9\x1b\x2c\x88\x54\xb5\x59\xdf\x06\x2f\xbb\x15\xc8\x09\xb8\x4f\x39\x6e\x6c\xd5\xeb\x69\x90\x21\xb2\x17\x62\x20\x43\xac\x1f\xf8\x02\x68\x08\xbd\xf7\x6e\xfc\xdb\x0c\x9f\xb8\x89\x94\x22\x13\x5e\xdc\xd8\x0b\xc9\x81\x1b\x37\xee\x6d\xba\xbb\xde\xb8\xb7\x55\xb2\x72\x06\xb8\x12\xcd\x50\x49\x71\x25\x14\xd8\x80\x95\xc8\x63\xf7\x42\xc7\xcc\xf2\xdb\x8b\x05\x40\x27\x9a\xf6\xf0\xfb\x34\xb0\x8e\xee\x92\xf6\xc9\x1c\x04\x00\x50\xb4\xbd\x46\xa4\x7d\x32\x77\x04\x68\x12\xc9\xac\x00\xf7\xe5\xfd\x3e\x3d\xbc\x9c\x35\xc7\xb7\x98\x65\x35\x80\xf0\x26\x78\x7a\xd3\x1b\x1c\xd5\xf7\x7e\xbd\x70\x2c\x28\xbe\x43\x8a\x65\x97\xe8\xc6\x8c\x84\xa8\x70\x9b\x0d\xca\xe5\x32\x22\xca\x29\xc0\x70\xa9\x5d\x0b\x24\x8a\xb4\x5d\x58\x6e\x72\x18\xea\xf6\x70\xe3\x44\xbe\x97\x6b\xb1\xc7\x06\x72\x4b\xdc\x8f\xdb\x9b\x8f\x61\x8f\x3a\xcb\xdf\xa4\x2a\xd4\x01\xf0\xc6\x85\x5c\x73\xfb\xcd\x25\x95\x71\x07\x37\x08\x4f\x73\xbf\x83\x14\xd0\x3c\xc5\x44\x4a\x91\x91\x3e\xc0\xbd\xc8\x26\x33\xb9\x05\x0b\x44\x45\xbd\x5f\x53\xea\x32\xbd\xaf\xdb\x5e\x2e\x01\xc2\xd3\x26\xc3\x78\xc6\x69\xe3\x14\xda\xa2\x6a\x7c\x06\xda\x22\xef\x83\xb8\xf8\x6c\x1b\x1e\x07\xc2\x93\xf7\x9c\x92\xff\x5e\xff\x3c\x20\x2f\x8a\x12\xf4\xfd\xb9\xb0\x3e\x77\x83\xba\x20\xb8\x8c\x78\xe9\x73\x7f\xbb\x4b\xfe\x81\xdc\xb0\x5f\x32\xbf\x88\x65\xbb\x24\xb5\xfe\x4e\xaa\x65\x86\xcd\x8d\x28\x49\x37\x32\xd9\xad\x40\x64\xb2\x51\xfe\x37\xa9\x11\x35\x21\xdc\x9f\xb3\xc7\x31\x7e\xb4\x6a\xe8\x71\xf1\x1c\xf8\x0e\x23\x74\x3c\x24\x41\x34\x7c\x16\x84\x8d\xa6\x63\xc5\x73\x5c\x30\xab\x4a\xf9\xe6\xb9\xef\xc3\x7d\x1c\x35\xd0\x1b\x6d\x60\x21\x7b\x92\x51\x28\x34\x90\xb0\xca\xd3\xd5\x27\x79\xca\x18\xdc\x43\x72\x43\xd3\x0a\x3d\x89\xb1\x21\xee\x00\xc3\x91\x49\x62\x19\xc0\x70\x88\xba\x1e\x40\x6f\x64\xef\x0a\x1f\x33\xd8\x2b\xef\x08\xbd\xe1\xbd\xc7\xa3\xe5\x03\xe2\xf0\x90\x19\xca\xe3\x2a\xc2\x06\x38\x60\xf1\xc0\x03\xf5\x0c\x7d\x50\xa7\x8c\x84\x7e\x0a\xdb\x16\xae\xf4\x98\xef\x83\x44\xaa\xf1\xc0\x02\x0d\xd9\x7e\x08\x49\xf6\x92\xe1\xc1\xe3\xbb\x92\xdc\x34\x9e\x42\x26\x75\x64\xe8\xa7\x00\x6a\x97\x6d\x01\x60\x94\xc3\x0f\xd8\xd0\x10\xd0\xa7\x92\x84\xc1\x5e\x73\x1d\x56\xb5\x1b\x3d\xd5\xd3\xc3\xc7\xd5\x6e\x70\x34\x1e\x2e\xc4\x0c\xba\x7a\xaa\xa0\x5b\xd4\x5a\x85\x97\xf5\xf9\xe0\x63\xe6\x05\x66\x5a\x23\xf9\x12\xa8\x5b\xd5\xe6\x2e\xe1\x22\x29\xdf\xbe\xe4\x0f\x90\xaa\xe2\x0f\x2f\x4e\xa6\xbf\xf5\x7c\x7b\x2a\xc7\x00\xd2\x02\xd0\xc8\xaa\x8d\xa9\xc2\x2d\xdd\x5c\x76\x0f\xf1\x5f\xde\x6d\x3f\x4d\x9c\x69\x06\x0b\x33\x37\xfd\xc2\xd3\xf0\x2a\x86\x77\x3e\xc0\xbb\xaa\xa9\x80\x52\x92\x4c\x2e\x1f\xc0\x94\xb4\xb1\x2b\x15\xdf\x60\xd7\xc4\x0a\x57\x5b\x36\xfb\x34\x7b\xff\x09\x88\x05\xec\xf9\x01\xc2\x69\xb8\x48\xe1\xc5\xa9\x65\xe4\x0e\x8e\xf8\x23\x52\x2c\x9c\xfa\xc1\xcd\x44\x1f\x10\x61\x4d\xc0\x14\x0c\x60\x4d\xaa\x36\xbf\x07\x27\xf3\xe1\x66\x07\x04\x1b\x44\xdb\x78\x16\xcf\x9e\xc9\xc3\xd1\xe9\x35\x54\x13\xe8\x93\x12\x6e\x3f\xee\xcd\xa6\x1b\x48\x85\x51\x07\x29\xa1\x4f\x40\x2e\x8e\x07\x16\xac\x35\xef\xc1\x1b\xc4\x58\x9d\x87\xb8\x66\xef\xff\x9f\xe1\x54\xec\x16\x74\xfe\xa4\x47\xe4\xcd\x37\xdf\xe1\x33\xdd\x66\xe8\x70\x8f\x19\x47\xac\x15\x28\xc4\x70\xf8\xd3\x0d\x61\x13\x93\xd0\x4e\x58\xea\x33\x9d\x60\x3f\xfe\x08\x0e\xa0\x7c\x3a\xbf\x54\xa4\x8b\x39\xf4\xf4\x91\x37\x9b\xca\xed\xd9\xe9\x15\x19\xf4\xb9\xcf\x16\x65\xb3\x83\xb8\x0a\x8b\x39\x17\x6f\x6d\x81\x6c\xc9\x29\x2c\x63\x28\x6f\x7e\xac\xec\xe0\xfb\xe6\x3d\xb1\x17\x1c\xf6\xb0\x17\xf4\x34\x7c\x1f\x66\x87\x24\xf4\x5c\x48\x45\xb6\x85\x4a\x6a\xae\x0f\x60\x60\x92\x69\x09\x9e\x8b\x55\x86\x99\x3e\x6a\x9b\xee\x04\x72\x89\xec\xf9\x05\xf8\xc5\x3c\x0f\xcf\x4d\x12\xf3\xea\x3b\x10\x22\x67\xe5\x26\x7c\x42\x02\x05\x92\xee\x3e\x87\x0f\x77\xfa\x7e\x4b\x32\x7c\x2d\xca\xcf\xd3\x4d\x98\x4e\x03\xe4\xeb\x95\x09\x3e\x0f\x04\x07\xd6\x05\x04\x4c\x53\x79\x01\x02\xa6\x99\x06\xf4\x79\x76\xb6\x75\x6a\x92\x39\x62\x2e\x79\xde\x6d\x3c\xa4\x0c\x38\x82\xa3\x79\x9d\x76\xbb\xf7\xc2\x8a\x5d\x8f\x17\xe0\x9b\xfd\x92\x60\xd8\x56\xea\x1d\xa5\x15\xb1\xd7\xba\x6b\x40\x06\xc4\xe9\x1a\x7c\x24\xbe\x43\x23\x7a\x64\x7c\xba\x2a\x3d\x86\x51\x79\x36\x65\x7c\x26\xfc\x7c\x16\xe3\x1b\x5a\x2a\x9e\xc5\xf8\xa6\x16\x79\x30\x61\xf2\xe1\x99\x05\xd9\xb0\x9a\x08\xf4\xf9\x10\x84\xf7\x4b\x18\x0c\x76\x0b\xec\x60\xc9\x02\x57\x86\x60\x15\x84\x80\x2e\x80\x49\xc5\x0b\xf0\xa0\x77\x38\x2f\x4e\x1a\xa8\xf0\xbf\x21\x6f\xaf\x0c\x0f\xa9\xe0\xe5\x0a\x11\x38\xf5\x78\xe5\x77\x6c\x4a\x90\x5f\x52\xd5\x8d\x09\xe8\x97\x9c\xd8\x7d\x42\xbf\xe8\xde\x0c\xf4\x4b\xf5\x6e\x11\xe8\x97\xf5\x41\xe1\x0f\xe7\xdf\x32\xa9\x9f\xd8\xae\xaf\x4c\x11\x1a\x08\x94\x4b\xf5\x02\xf6\xd5\xce\xc8\xa1\x7c\xb1\x33\x1a\xa4\xf8\xe6\x9d\x48\x81\x5e\x90\xa6\x43\x7f\xb7\x57\xb8\x6f\xf6\x28\x38\x30\x6d\xd8\xc0\xe2\xa2\x43\xe9\xe7\xcd\xb8\x99\xb1\x8e\x2f\x4c\xb4\x9a\xc3\xf4\x95\x8b\x86\x2f\xdd\x84\x78\xd1\x23\x6f\x3e\x87\xcf\x5f\x3f\xb0\x1b\x64\x79\xe4\xa4\x00\x0a\xd3\xbc\x3c\x7f\xd5\x30\x4d\x07\xfb\x2e\xfe\x9a\xb5\x4a\xbd\x6a\x95\x18\xbb\x5e\xd3\xec\x1b\x45\xf4\xe2\x6e\xa9\x4b\xf2\x4b\x9a\x0f\x3d\xba\x01\x7f\xc9\xe0\xc4\x86\xe0\x2f\x40\x3f\xc7\x5b\xe9\x92\xef\x57\x69\x00\xb3\xdd\x9c\x6d\xce\x8d\x88\x2f\x8a\x4e\x00\xbe\xac\x1f\x18\x10\x09\xae\xcc\x10\x07\xe2\x4b\xf5\x42\x0d\xc4\x97\xa9\xad\x18\xc4\x97\xe6\xed\x3c\x00\x2e\xcd\x64\x29\x6f\xd8\x1a\xef\x13\x2d\x6c\xe0\x14\xd0\x29\x65\xcf\x4b\xff\x08\x42\xa1\xfe\x41\xd2\x2c\x57\x44\x9d\x4c\x95\x09\xec\x94\xac\x51\xe1\x55\x27\xb3\xa7\xa8\x5e\x26\xc0\x05\x22\xa5\x0d\x2b\x22\x7f\xbb\x46\x59\x50\x4e\x86\xf9\x7b\x7e\xa1\x9c\x60\x25\x00\xe6\xa4\x69\xec\x07\xc0\x24\x1b\x45\x0b\x80\x49\x57\x74\x06\xbf\x64\x7d\xe0\x1f\xb6\x40\x4d\x27\x30\x15\x9c\x3e\x01\x4c\x76\x0b\xa7\xb9\x55\xd1\x5f\x40\x30\x69\xfa\x0d\xbc\x78\xe8\xed\xed\x6c\x04\x0f\x6c\xff\xbd\xa4\xa6\x08\x36\xaf\xca\x0f\xcc\xf1\x55\xf9\x41\x36\x05\xbc\x64\xbd\xc4\x04\x90\x43\xc2\x94\x21\xaf\x69\xa4\x14\x48\x45\x2f\x91\xcd\x82\x5e\xd2\x86\xa7\xfd\x62\xc3\x4c\x6b\x65\x79\x86\xef\xc3\xd3\x14\x4e\x5f\x60\xf9\xf4\xd5\x78\x75\xdc\x80\x32\xbf\x37\xdd\x80\x86\xbe\xb7\xdd\x70\xbb\xdd\x60\x3d\xc2\x8b\xdf\x45\xfa\x87\x06\x87\xf7\x76\x06\x90\x5a\xdf\xdb\xad\xe4\xd7\x64\xbd\xae\x7e\x70\x73\xdd\x63\x19\xc2\xa9\x84\xf9\xde\x6b\x5b\x19\xcd\xfd\xde\xce\x37\xdb\xea\x71\x9a\x3c\x01\xb8\x01\x9a\xff\x09\x48\x95\xf5\x83\x6f\x91\x48\xcc\x19\xc0\x0f\xd0\x5b\xde\xf7\x11\x08\xde\xf2\xce\x7e\xfb\x3b\xbc\xd3\x78\x55\xc0\x9c\x37\xcc\x90\x7b\x35\x84\x19\x93\xc6\x3d\x6e\x7d\x06\x22\x8b\x91\x0e\xa0\x7f\xe9\x9c\x09\x42\x4b\xd3\xe1\x16\x84\x96\xd5\xba\x1f\x70\x11\xed\xec\xa0\x7f\xd5\x5d\x91\x98\x83\x96\xdd\xb2\x12\x0e\xd3\x46\x39\xa6\x17\x98\x70\x57\x18\x37\x7d\xbd\xae\xdf\x97\xb0\x7c\xdf\x27\x68\x57\xd9\x11\x44\x97\x55\x11\x2b\xbc\xf5\x2c\x26\x8a\xac\x91\x39\x7c\x89\x8c\x93\xfb\x03\x42\x16\xa4\x1b\x1f\x40\x34\x34\xf0\x1d\x9b\xff\x37\xfe\x20\x8a\x1b\x52\x01\x74\xcb\x4e\xe9\xf5\x1d\x88\x91\xdd\xb2\x15\x75\xca\x58\xe0\x58\x6b\x30\x56\x84\x21\x09\x30\x56\xaa\x29\xbb\x81\x58\x69\x06\x5a\x7d\xff\x0b\x61\x67\x72\x34\x2d\xcf\x6c\xdb\xf9\xb5\xe2\x37\x01\xb5\x99\x8a\xb8\xf1\xf9\x02\x14\xf8\x6f\xc2\x09\xd6\xd2\x3b\x7e\x66\x14\x05\xa8\x4f\xa5\xb2\xd9\xfb\x93\xf6\x69\xe6\xcc\x2b\x0e\x13\xf2\xf7\x15\x87\xc9\x89\xfc\x92\x25\x2b\x40\xdb\x6b\x96\x2c\x7b\xce\x5b\x5d\x29\xbe\x6c\x25\x7c\x1e\xc6\x14\x16\xef\x4b\xa8\xbc\x69\xca\x2f\x59\xb2\xff\xbe\xe9\x7a\xb0\x30\xa5\xc0\xf2\xc7\xcb\xcb\xd4\x54\xcf\xb1\xab\x43\x26\x15\xf3\x76\x61\x52\x49\x4f\x99\x10\xa9\x74\x88\x7e\xe6\xdb\x60\x14\x39\xbc\x76\x64\x97\x2f\x24\x4e\x78\x9a\xf0\x09\xf5\x2e\x90\xcc\xdb\xf0\xe6\x22\x73\xe0\x4e\x29\x7d\xbf\xfd\x1d\x94\x96\x73\xe7\x05\x8a\x49\xb3\xde\xeb\xc9\x65\x39\x54\x8a\x7e\x84\x31\x54\x28\xa9\xae\x02\xe3\x49\x9a\xb9\x09\x99\xc9\x46\x52\x94\xcc\x44\x07\xcb\x3b\x40\x22\x60\xae\xbd\x1e\x29\x0c\x7d\x7c\x89\x99\x11\x5a\x0a\x66\x93\x21\x94\x91\xcc\x26\x1d\x26\xa2\x09\xb3\x49\xee\x46\xe3\x9d\xea\xab\xfa\x06\x54\x47\xcc\x6d\xb8\x48\x76\xbe\xcb\x2b\x98\x3b\x32\xf1\x9d\x80\xfa\xb2\xbe\xe1\x28\x49\x71\x57\x5e\x4d\x87\x86\xfa\x40\x52\x32\xe0\x05\x9f\xaf\xa6\x43\xd8\xda\xe7\x8b\xe9\x50\x6b\x29\x84\x25\x4b\x40\x08\x08\x4b\x86\x8e\x81\x37\x36\x42\x12\xc5\x81\x4b\xa1\x41\x45\xbe\x92\x6e\x78\x13\x84\x25\x43\xc4\xb6\x37\xac\x13\x6d\xc8\x03\x9f\x0c\x5f\x12\xf6\x70\x7a\xdf\x86\xa2\xd1\x41\x4c\x92\x7b\x46\x27\xe8\xb3\x76\x53\xca\xae\xe5\x0b\x4e\x4a\x0a\x4b\x0b\x63\xdc\xe0\x97\x35\xaa\xf8\x4d\x4e\xc7\xac\x73\xa8\x45\x52\x1c\x2c\x28\x44\xaa\xe0\xa8\x9b\x1c\xc4\x67\x24\x07\x59\x7f\x5a\xe0\xde\x13\x4e\x49\x67\x0d\x3b\x95\x41\x6a\xaf\x46\xbf\x65\x93\xbe\x83\xc5\x32\x31\xe8\x15\x8b\xd7\x19\x74\x91\x44\x80\x0a\xf3\x82\xce\xde\xdd\x31\x5f\xdc\xe6\xce\xa0\x8b\xc9\xee\x52\x34\xff\xc9\xb5\x4e\x8c\xe0\x81\x2c\x7d\x41\x81\x70\x8b\x7c\xd9\x6a\x3c\x01\x43\x22\x92\x3a\x10\x25\x08\xf1\x18\x0a\xc7\xc7\x58\xce\x5c\x61\x85\xf6\xfd\x41\x06\x1f\xcf\xff\xf4\xd6\x7b\xff\x22\x8d\xca\x6b\x68\xc5\xd1\xdc\x5f\x98\xb5\x04\x29\x81\xe3\x63\x18\x58\x27\xc7\xc7\x9e\xe8\x0f\x49\xf6\x7e\x07\xde\x72\x8d\x03\x52\x76\xa8\x12\xbd\x58\xbb\xf6\x9c\x07\x3a\x61\x4f\x67\xa0\x13\xc4\x24\x7e\xd1\xc8\xa1\xc9\x9a\xd0\x77\x14\xe9\x21\x27\xfc\x1d\x4b\x54\x20\xe9\x3b\x86\x90\x44\xf0\x77\xa4\xba\x9f\xfc\x1d\x83\x2d\x31\x0e\xa2\x6a\xa8\x46\x1c\x87\x27\x83\xe4\x9a\x44\xb0\xaf\xbb\x02\xa2\x8e\x32\x40\xf7\x8b\xe3\x00\x05\xfd\xdb\xc3\x02\x76\x8e\x55\x92\xfb\x44\x54\x0f\x28\xbb\xe3\x20\xa2\xfa\xf8\x76\x80\x80\x74\x23\x80\x71\x8e\xa3\xb0\x1b\x84\xcf\x40\xd4\x00\x33\x77\xc0\xba\x31\x58\xd0\x21\xe9\x06\xd1\x87\x01\xe9\xc6\xf7\x90\x5f\xfa\xe1\x58\xae\x5c\x3f\xfe\x41\x23\x0a\xf5\xf8\x56\x43\x40\xc7\xb1\xd0\xda\xe3\x00\xf0\x9c\x74\xbc\x80\x76\x63\x01\x27\x1f\xd0\x6e\x2c\xc8\x65\xe3\xf8\x24\xee\x42\xbd\x8c\x43\x8b\x15\x09\x49\x71\x34\x40\xae\x17\x55\xc2\x32\xc5\xc9\x35\x0e\x2c\x53\xd8\x8d\xe3\x40\x5b\xe6\x2c\x15\x50\x67\x2c\xdc\x19\x71\x74\x00\xd2\x17\x35\x45\x7e\xb2\x3f\xc7\x81\x0d\x07\xb4\xdf\x80\x39\xa3\x0c\x9c\x92\x01\x75\x46\x72\x5c\x0d\xd8\x32\x92\x04\xa6\x38\x06\x99\x6d\x83\xc2\x06\x04\xbc\x8b\x0f\x61\x85\x59\x8e\xc8\x84\x59\x2d\x69\xf1\x14\xcc\x8d\xe7\xa7\xa2\x8a\xef\x4f\xad\x66\x3e\xcf\xb9\xad\xf1\x1d\x40\x5f\x31\xc1\x87\xec\x17\x03\xfa\xd6\x80\xfd\xa2\x90\x62\x12\xb0\x5f\x54\x66\x58\x1c\x41\x96\x76\xe1\x99\x20\x5b\xe9\xa0\x00\xac\x33\xa3\xf8\x25\xcd\x33\x96\x0c\xdb\xe1\x74\x94\x49\xe3\x19\xe5\xa0\x68\x20\x60\x9b\x73\x81\x34\x1e\xe6\x6d\x1c\x44\x19\x62\x11\x8c\x23\xcd\x29\xe6\x79\x20\x60\x49\x78\x8b\x63\xb3\x1a\xf2\x2e\xe8\xe5\x87\x83\xbf\x19\x0b\x29\x18\x60\xf2\x51\xac\xf6\x22\x87\xa3\x78\x4d\x6c\xac\x33\x61\x99\x13\xfe\x57\x66\x56\x1c\x0b\x0a\x68\x07\x68\x99\x85\x4e\x53\x45\x36\x3f\xa8\x89\x89\xf7\x85\xd2\x09\x02\x6a\xae\x31\x59\x03\x0f\x46\x1d\xcf\x04\x50\xe1\x21\x53\x45\x75\xf9\xa0\xb5\x8f\x62\xd5\x89\x2d\x9c\x4e\xf4\x4b\xcc\xf1\xee\x0f\x08\x55\x5d\x26\x17\x04\x28\x8e\xc4\x65\x88\x23\xa5\x5d\x1e\xed\x68\x1e\xfe\x8b\x51\xec\x34\xa2\x11\xb1\xa2\x06\xec\x14\x52\x6d\xc5\x21\xf8\xab\xcb\xfe\xb6\xf3\xb9\x7f\xc3\xe7\xe3\xf0\xde\x42\x93\xfb\x0c\x89\x04\x93\xc2\x80\x72\x25\x9b\x2f\x8e\x9b\x05\x5d\x9c\x64\x44\x32\x62\xee\x8c\xe3\x53\xbb\x73\xf7\xcb\x4f\xaa\x16\x0a\x80\x22\x89\x0c\xaa\x80\xa4\xa2\x0c\x8e\xf3\x01\x4b\x45\x1f\x0a\xa5\x1f\x86\x25\x67\x37\xea\x2d\x48\xdb\x71\x60\x5a\x19\x7b\xbd\x91\x91\xcf\x69\x2b\x20\xa0\x68\xcd\xfe\xfa\xd4\xdb\x39\x1d\x76\x50\xdc\x0e\xa7\xfd\x63\x69\xe1\x57\xb5\xca\x79\x0d\x58\x86\xc3\xfc\x48\x17\xe5\x7d\xd7\x86\xbd\x4a\x10\x00\xa6\xa2\x80\x51\x22\x87\xe2\x03\xc6\x42\x58\x52\xe2\xc0\x9a\x32\xb6\x6c\xfc\x14\xdf\xba\xec\x61\xc4\x32\x59\x88\x21\x11\x04\xb1\x0b\x51\x10\xb2\xa8\x62\x51\x08\x8f\xb6\x46\xa5\xe0\xdc\xa3\x69\x05\xde\xc0\x81\xbb\x28\x60\x85\xa8\xc7\xbe\x66\x1a\x7f\x1b\x57\x94\x22\xc2\xc5\xe1\x1b\x74\x40\xa7\x34\x04\x2e\x41\xa7\x01\x8d\x44\x21\xcf\x33\xca\xa7\xf9\xa6\x9d\x04\xfb\x43\x55\xa0\x15\x22\x1a\x39\xef\x44\x31\xe6\x9a\x21\x2c\xcd\xd9\xc9\x77\x40\x6f\x01\xe1\x23\x4a\xff\x16\x2b\xd6\xb4\x80\xe5\x21\x89\x8d\x0b\x48\x1e\x26\x79\x45\x01\xc9\x43\x19\x64\xf0\xc4\x3f\x96\x07\x0a\x20\x49\x64\xa0\xc5\x44\xd1\x26\xde\x78\x08\xc8\x6c\xa2\x13\xa2\x0c\x16\x5e\xa5\x16\xc3\x17\xa6\x7f\x10\x1f\xcf\x82\x81\xb4\x61\xed\xaf\xa2\x41\x0e\x8e\x22\x01\x6b\x43\x25\x99\x2a\x0a\x1a\xe4\x80\x7a\x25\x0a\x21\xd8\x64\x00\x07\x74\x0e\xfa\xed\x03\x3a\x87\x39\x6d\xdc\x84\x09\x6d\x7f\x95\xc8\x00\x36\xa8\x32\x77\x35\xfc\x83\x73\x1c\x13\xba\x90\x08\x89\xdf\x21\x60\x70\x98\x18\xd6\xa3\x84\x1f\xa5\x6d\x28\x8d\x83\xbc\x9d\x28\x61\x37\xd1\x01\xf8\x9e\x9b\x2f\xec\x88\x48\x6a\x97\x70\xb0\x21\x6d\x8a\x0c\xae\xac\x36\x08\x19\x12\x52\x99\x90\x90\x61\x10\xb1\x1f\x45\xb9\x37\xfe\x62\x95\x89\x42\xb6\x3a\x99\x3f\x51\x96\x55\xa4\x49\xf8\x90\x73\x7f\x99\x40\x11\x27\x10\xa1\x93\xe4\x74\x04\xe4\x0c\x73\xfa\xee\x27\xf7\xd6\xe4\x91\x8b\x3d\xcd\x57\x95\x62\xcd\xfe\xbb\xec\x0e\x1f\xea\xfe\xe1\x0f\x66\x90\x63\x7d\xc1\xf2\xc0\x32\x86\x83\x21\xd2\xf5\xf0\x49\xa5\xd5\x2d\x58\x3e\x86\xe6\x97\x6e\x53\xf6\xe8\x8f\x1b\xbe\x47\x84\x49\x01\x24\x7a\xd8\xc7\x30\x83\x83\x81\x1a\x32\x2c\x88\xcb\x17\x30\x2c\x4c\xb0\x83\xa2\x90\x02\xe2\x4e\x56\x7e\x04\xe6\x0e\x5f\x66\xd8\x9b\x2f\xbf\x74\x38\xd7\x8f\x5d\xe1\x35\xd9\x6d\x88\x7a\x58\x18\x82\xe4\xb6\x80\x85\x61\x82\x11\x1d\xe5\x01\x8b\x61\xfa\xfc\x03\x13\x2a\xe5\x22\x4a\x0e\x1b\x43\xd8\xd0\x74\x05\x48\xa3\xe0\x4c\x52\xa9\x6b\xce\xcf\x4f\xa9\x5b\xdd\x4a\xab\xd4\x11\x40\x10\x70\x27\x14\x75\xa3\x2a\x90\x23\x6b\x06\x6a\x83\x04\x2f\x21\x20\x18\x48\x55\x94\xaa\x96\x05\xc3\x40\x54\x12\xda\x48\xdd\x8a\x5a\x1d\xd9\xe4\x7a\x99\x8f\xec\x1f\xb8\xb9\x90\x07\x72\x04\x0c\xc2\x97\x02\x8e\x80\xba\x2c\xba\x91\xec\xee\xfd\x4f\x68\x60\x4a\x0c\xb1\xff\x87\x25\x37\x41\xf8\x16\xd7\x24\x6b\x17\x5f\x25\x6e\x07\xbd\xa7\x7e\x27\x59\x2c\xdf\x51\x35\x5b\x2e\xbf\x48\xc6\x46\xf1\x33\x17\x61\x4b\x3e\x63\xde\x34\x7d\x0a\x6f\x40\x23\x9a\x2a\xe0\x0d\x08\xce\x40\x51\x25\x46\xf3\x3e\xd1\x97\xc4\x46\x46\x25\x4a\xe6\x38\xbc\xa6\x29\xc8\x0b\x90\xff\x27\x78\x72\x01\x88\xff\x24\xdc\x24\x2a\xd8\x1b\xc3\x3e\xc1\xca\x39\x9c\x9a\xc0\xf8\xaf\x6e\x07\xe1\x70\x23\x74\x2d\x2a\x51\xd6\xc3\x59\x24\xbe\x3f\x67\x8f\xa8\x3b\xdd\x9b\xd1\xac\x64\x94\x10\x5e\x10\x95\x90\x99\x01\x38\x45\x54\x62\x66\xd2\xc1\x21\x66\x66\x10\x51\x1b\x15\x10\x63\x4c\x5e\x51\x01\x31\xde\x8d\x46\xb6\x11\xb8\x14\x50\x05\x54\x0c\xdd\x21\x55\xc0\xe8\xfb\x05\x16\xb9\xc3\x4c\x16\x09\x00\x0d\x01\xf4\xff\x54\x18\x56\x10\xa2\x88\xb9\x8c\x1a\x58\xfb\x51\xd1\x84\xfb\x57\x6c\xd5\xc0\x24\xe9\x28\x7f\x22\x2c\xf7\x94\x12\x93\x18\x61\x5b\x4d\x7a\x73\x74\x84\xdd\xb0\x63\x50\xe9\x86\xcd\x27\xe5\x1a\x23\x5f\xd4\xb4\x5f\x90\x7f\x95\xb0\x4c\xf0\x69\xa2\xa6\xfd\xf2\x27\xee\x5b\xd4\xb4\x19\x54\x65\x09\x7b\x4d\x75\x17\x70\x6b\x2c\x2c\x30\xfc\x27\xd1\x67\x51\x85\xe8\xb0\xff\xbe\x73\x6c\x2a\xba\x85\xde\xaf\x4e\x8e\xcd\x80\x49\x4d\x4e\x6b\xc2\xae\x59\x4f\x19\x29\xa8\xee\x05\x29\xb5\xe3\x8b\x91\xd5\x2d\xba\xfe\x8b\xd3\xe4\xab\xdf\xa1\xb6\xbb\x3d\xd6\x1d\x7b\x42\x87\x80\xae\x8b\x21\x30\xea\x0d\xf7\xab\x1f\x55\x15\x43\x48\x02\xc3\x3f\x76\xed\x6e\x2d\x70\x3e\xcf\x34\x46\x6c\x01\x98\x3f\xdc\x96\x01\xcc\x1f\xee\x68\x02\xe6\x8f\xe1\x28\x9a\x2f\xa2\xf4\xc0\x18\x3a\xf6\x64\x97\x60\xda\x3e\xc2\x77\x96\xae\x67\xf4\xb8\x31\x5c\x4d\x28\x72\x6d\x7f\xc9\x60\x12\xbf\x64\x11\xf6\xd2\x43\x11\x4e\x38\x8c\x99\x1e\x65\xaa\xb4\xd2\xb6\xff\x81\xb9\xd3\xc9\xf4\x28\x94\xbc\x0f\xa8\xba\x1d\x6c\x2e\x1c\x87\x0b\x90\xeb\x87\x9b\x29\xc8\xf5\x7d\xd7\x9a\x1c\xe7\x66\x7f\xbd\xb6\x80\x5a\xbf\xf4\x97\x2b\x14\x2e\x30\x77\x21\x10\xe8\x87\x1b\x4f\x7d\x4d\x69\xa4\x0e\x2f\xa7\xe0\x7d\x1f\xf3\x48\xfa\xee\x0f\x30\xb3\xef\xfb\x22\xd0\x0f\x22\xab\x02\x04\xfa\xe1\x56\x28\x02\xfd\x20\x13\x2e\xda\x61\xc9\x8d\x6b\xf8\xb2\x9b\xf7\xd9\x9d\x98\x6b\xad\xf8\x4c\x70\xcd\xbe\x08\x98\x73\x34\xec\x97\xee\x85\x4d\x8a\x68\x9a\xd6\x8a\xd5\x9e\x5c\x63\x76\x64\xad\x0a\x48\x8f\x03\x36\xc0\xa3\x1f\x2a\x37\xe0\xd1\x0f\xb5\x41\x70\xe7\x87\xa2\x5d\xdc\x79\xcf\x68\xe0\xcb\x0f\x42\xa1\x02\x50\xf9\xa6\xde\xda\x76\x0e\xb3\xd7\x46\xcd\xfa\x3c\xa4\xad\x28\x74\xad\x8a\x30\x86\x5a\xd9\xaa\xde\x71\x5e\x68\x14\xd6\xbd\x86\xf0\x62\x78\x3d\x7c\x81\xe6\x83\xb8\x0b\x65\x53\xb4\x66\xc6\x06\x5f\x6d\x4c\x90\xee\x7d\x26\x08\x3a\x05\x48\xf5\x65\x90\x70\x1a\xad\x61\x96\x60\xda\x01\x55\x5f\x56\xfa\x90\x34\x64\x74\x5d\x77\xa4\xd8\x79\x1b\xe6\x4e\x8f\xa2\xe0\xd6\x27\x19\x1b\x01\x6c\x7d\xba\x34\x81\x9e\x1f\x38\xa3\x03\x88\xf9\x81\xb3\x21\xda\x70\x85\x20\x87\x1a\xdb\x41\xb3\xda\x70\x3a\x4f\xb6\x0c\x30\xe6\x07\x24\x93\x01\x64\x7c\xa4\x1f\x95\xa0\x12\xd0\xba\x68\x12\x83\x15\xff\xb0\x09\xbe\x40\xaf\x8e\xbf\x5c\x0a\xd1\xb4\x78\x86\x2f\x3d\x7e\x99\x5e\x23\x8c\x42\x0d\xbf\x85\x10\x9c\x5e\x5b\x77\xec\x1a\x00\xcd\xe7\xe1\x04\x22\x4d\xd0\xe3\x8e\xa0\xf3\x72\x34\x47\xd3\xe4\xe9\x40\x8a\xee\x77\xf8\xd0\xf2\x21\x5a\xfb\x89\xfe\xdc\xd3\x35\x2e\x68\xb5\xbc\x8f\x45\xaa\x58\xf4\xcf\x17\xa8\x6c\x30\x17\x87\x5f\x7a\xfd\x83\xb7\x13\x03\x4e\xf1\x1a\xc2\x4f\xbf\x94\x81\x0f\xc3\xfb\xe9\x0b\x8c\x06\xc1\xfd\xcd\x3e\x74\x17\x99\xfb\x87\x78\x39\x5e\x7f\xdb\x1a\x71\x0e\x01\xd6\xfc\x84\xe2\x3a\x80\x97\xaf\x1e\x7e\xdb\x32\x22\x8a\x2a\xb1\x1f\x14\xfb\xf5\xdb\x0f\x26\x39\x4f\x01\xba\xbb\x58\x13\x21\xba\xfb\x50\x6b\x04\xde\x5d\xc6\xc5\x00\xc5\x7d\x16\xd7\x22\xfb\xc1\x72\x4c\x4c\x7e\x46\x5b\x68\x40\xeb\xfe\x5b\xed\x17\xe8\xdc\x76\x0c\xda\xb1\x36\x32\x10\xdd\xa7\xa7\x4e\x80\xdb\xa7\xd6\x39\x81\xdb\xc9\x92\x08\x50\xd8\xa7\xb6\x93\x76\xfb\x51\xd7\xca\x6d\xb5\xa9\xdd\xb7\x21\x4c\x82\x64\x02\x14\xf6\x49\xcc\x4b\xb4\xef\x98\xde\xc8\xbd\x0c\x11\xd9\x89\x67\x0f\x10\xd9\xcb\xbf\xe1\xb9\xed\x0b\x7a\x9e\x8d\x02\x92\xea\x00\x92\x7d\x7a\x88\x6e\x80\x61\x60\xca\x0d\x90\xd7\x27\x96\xed\x10\x79\x7d\x4c\xd7\x96\xdc\xc7\x2e\xcc\x4f\x53\x9e\xb8\x7b\xa3\x3d\x4e\x37\x7b\x1b\x55\xd9\x23\x68\x7b\x1c\x67\x8b\x7e\x2c\x82\xe2\x88\x8d\x38\x9c\x30\xa4\x1e\x16\x45\x28\x76\xce\x2d\xe1\x54\x89\x89\x2a\x8a\x0e\xf3\xbf\xc7\xf1\x7e\x74\xff\x98\xfc\xc0\x4d\x46\xcf\x74\x00\xf3\x60\x2d\x8e\x7e\x60\x6e\x62\x1b\xe8\x87\x5d\xdf\xb9\xa6\x33\x58\xca\xe0\x9f\x37\xe5\x49\x2f\x40\x21\x1c\xde\xbf\x78\xe6\xab\x51\xff\x64\x6b\x57\xce\x76\xe8\xb7\x70\x1e\x04\xa8\xe5\x53\xc3\x6b\x87\x95\x5f\x8e\xdf\xe8\xe8\xdc\x1a\x30\xbb\x3a\x37\x5e\xbf\x00\xdb\x7c\x6a\xcf\x13\xdb\x5c\x66\xdf\x00\xdb\x7c\x6a\xce\x14\xdb\x5c\x0a\xe2\xe8\x95\x81\x60\xa9\x77\xc2\x05\x06\x04\x77\xd1\xd1\xcc\x35\x98\xf6\x86\xd3\xcc\x06\x11\x90\x0e\xd8\x56\x80\x86\xde\x08\x25\x0a\xc0\xd0\xeb\xea\xde\xc7\x8d\x13\x5e\x93\xa0\x82\xc8\x12\xf3\x5c\x2e\xd8\xe8\x82\x50\x20\x1a\x7a\x27\xbb\x05\xf9\xd1\x05\x6a\x40\x53\xe8\x44\x08\xc0\x77\xf9\x87\x90\xeb\x26\x5e\x33\xda\xe0\x93\x17\x89\x28\xa3\x93\xfb\xa4\x3d\xa4\xa3\x59\x2f\x14\xd7\x3e\x1c\x00\xea\x85\xd1\x80\x34\x95\x10\xc4\x5c\xc2\xc9\x00\xc4\xbc\x61\x13\x0f\x40\xcc\x05\x51\x8e\xae\x3d\x15\xa1\x03\x6e\x79\xc6\xbe\x26\x66\xc7\x6e\x9e\xa0\x7e\xb0\x92\x7b\x40\x36\x64\x85\x30\x89\x12\x19\x1b\x5d\xa8\x07\x3b\x30\xc8\xcd\xb6\x0f\x94\x76\x38\xba\x03\xa8\xf2\x32\xc2\xf9\x47\xb8\x02\x51\x26\xd1\x05\x2a\x42\x0c\x76\xc5\x5d\x38\x01\xcd\x8a\xdc\x7f\x9c\xfe\x41\x79\x02\x15\x15\x1f\xa2\xbc\xe2\x57\x2d\x0f\xc9\xd1\x49\x97\x24\x13\x28\xfa\xb2\x67\xa8\x07\x9c\xf1\x23\x9d\xbf\x62\x0d\x21\x15\xba\xe9\x8f\xb6\xf4\x24\x3d\xcf\x12\x44\x11\xe2\xd4\x04\x64\x78\x1e\x4e\x5f\xc4\x94\xfa\x09\x10\xde\x0b\x27\x6f\x88\xa3\x0d\x7a\x61\x00\x8b\xbd\x9a\x05\x83\xd0\x59\x7d\xd7\x23\x39\xae\xf7\x00\xfc\x7a\x29\x9a\xba\xe9\x8f\x28\xd2\x9d\xc8\x65\x43\x13\xa3\x0b\xaf\xd3\x7c\xc1\x26\x74\x3f\xfb\x35\x01\xc8\xfe\x10\xfd\xda\xb0\xc0\x00\xfd\x7a\x2e\xd7\x2c\x61\x5b\xc6\x29\x06\xe8\xd7\xd2\x44\x85\xe8\xd7\x87\x7d\xfc\x60\x42\x41\xc7\x14\xfc\xda\x58\xa1\x00\xfc\xba\x85\x2d\x42\x29\x4d\xe7\xf5\xc3\x51\xc2\xd9\xfa\x8a\x7a\xcc\xfd\xd7\x97\xa7\x3f\x70\x67\x2b\x16\x64\x7c\x40\xd9\x01\x8a\x7a\xc2\x2a\x12\xa0\x4f\x77\x72\x87\x62\x90\xe6\xe3\xf1\x6b\x40\x96\x0e\x8a\x52\x0c\x32\x79\x74\x2b\x07\xe8\xd3\x93\xb0\xe4\x18\xfa\x63\x08\x12\x88\x51\xc8\xa7\x61\x10\x81\xa5\x2e\x46\x97\x04\xb8\xd4\xd3\xa3\x3b\x20\xd3\x45\xad\x0e\x90\xe9\x41\x76\x5a\x00\x32\xdd\x00\x57\x0b\x30\xa6\x8b\x21\x0c\x01\xc8\x74\x53\xdb\x19\x20\xcd\x69\x9a\x05\x57\x3a\xc8\x1c\x09\x70\xa5\x8b\x0e\xdd\x00\x58\xba\xc1\x32\x18\xa3\x9a\xe3\xc2\x57\xd1\x33\xbb\x6d\x20\x28\x4a\x1f\x7b\x80\x38\x5d\x08\x9f\x0b\x10\xa7\xe7\xda\x2f\x20\xfe\xa7\xf7\xe9\x01\xbc\xfb\x31\xf4\xa5\x23\xff\x07\xf9\x38\x6a\x6f\xc3\x24\xec\xf0\x1a\x8c\x09\x44\xe7\xf8\x84\x5f\x03\xbb\x3b\x40\xa8\x2e\xc6\x27\x04\x10\xd5\xc5\x6d\x01\x88\xea\xa2\x87\x3e\xc0\xa8\xae\x69\xd1\x26\x83\xa6\xf7\x37\xef\xb8\x9f\xfa\x16\x01\x10\x44\x21\x44\xf5\xca\x3f\x5d\x0c\xe0\x57\x4f\x2d\xe0\xe0\x57\x17\x23\x0a\x62\x80\xee\x03\x56\x51\x08\x66\x0d\xaa\x57\x00\x66\x3d\x15\x1d\xe3\x13\xb2\x53\x99\x02\x98\x75\x25\xe3\x3c\x86\x76\x55\x7c\xd1\x31\x00\xdf\x01\xdb\x28\x40\xb9\x6e\x61\xdd\x81\xd2\x01\xab\x32\x04\xaa\xf6\xa8\x09\x50\xf5\x38\xec\x29\x44\x6a\x38\x01\x87\x3c\xdc\x3e\xcf\x39\x1f\x89\x07\x34\x75\xa8\x03\x0d\x50\xe7\xa6\x63\x6a\x08\xb0\x95\x03\x3e\x47\xcd\x0d\x98\xea\xd4\xfa\x05\x02\xf5\xdc\xf5\xc1\xfb\x3e\xf0\x99\xc7\x90\xf2\xd6\x09\x44\xe2\xce\xbf\xf1\xfd\x64\x6d\x10\x7e\x12\x22\x50\x0f\x78\x2a\x03\x08\xea\xaa\xf7\x71\x90\x73\x1e\x56\x23\xd8\xba\xbd\x0f\xc4\x8e\x12\x75\xa4\x41\xde\x34\x21\xc1\x3c\x46\xac\x01\x4d\x1d\x2a\xe7\x23\xb5\x7d\xf2\xcc\x62\x69\x79\x84\x19\x52\x10\x3a\xd4\xeb\x6b\xff\xe1\x6a\xd2\x0c\x0b\xbb\x58\x80\x4d\x1d\x9a\x95\x80\xa6\x2e\x63\xf7\xf6\xa7\x7e\xc6\x61\x11\xe2\xc6\x59\x0d\xa0\xa9\x07\x74\x61\x01\x34\x75\x09\x17\x23\xb8\x71\xcd\x39\x4a\x5c\xd9\xc1\xee\x3b\x96\xab\xc0\xc6\x11\x36\xac\x8b\x12\x68\xea\x20\x92\x27\x40\xa6\xee\x7b\xe6\x13\x36\x3c\x40\x0d\x8e\x01\xdb\xc4\x1e\x08\x92\x54\xed\x30\xb9\x8f\x1c\xdb\x93\xe4\x04\x76\x3f\x50\xa5\x43\xf1\xb8\x51\xa5\x35\x1d\x6c\x58\xe9\x5d\x30\x86\x10\xb4\x6c\x50\xa5\xc3\x0d\x62\xe0\xe8\xd7\xdc\x36\x2e\x64\xae\xcd\xbf\x04\x2b\xf5\x3a\x79\x86\xa1\xc5\x26\x42\x6c\x74\x00\x36\xdd\x3c\x8f\x03\x36\x5d\x9b\x92\xf2\x7a\xc8\xfa\xe2\xfa\x66\x10\x6c\x24\xe9\xf4\x87\x93\x99\xf0\x32\xfd\x02\x60\x4d\x17\x20\x20\x02\xac\xe9\x22\x92\x6a\x8c\x1b\x0a\x25\x5b\x76\x23\xa1\x14\xb3\x00\x0c\x55\x57\x0e\x3a\xb3\x7b\x3f\x20\xd4\xa1\x09\x09\xac\xe9\xbe\x3f\xea\x4e\x06\xb8\x71\x8c\x1f\x18\xea\xce\x1d\x72\x73\x08\x13\x09\x00\xa9\xc3\x1d\x07\x40\xea\xef\x05\xbe\xaa\x71\xc5\x66\x62\x81\x06\xde\x21\x86\x4e\x32\x0f\xe4\xe3\x87\xdb\xca\x36\xc3\xf5\xb0\x07\x04\xd4\xea\x61\x09\x8f\xed\xe7\x99\x87\xf6\x5b\x3d\xf7\xb1\x85\x26\x0a\x9c\x75\x40\xb9\x17\xc0\x59\xc7\x5e\xd9\x0f\x83\xc0\xc6\x07\x9c\xf5\xf7\x82\x5f\x02\x9e\x53\x49\xf7\x5c\x3c\xf4\x57\x7c\x6f\x0c\x33\x77\xdc\x14\x88\x65\x38\x14\x50\x22\xcd\xb9\xbb\xbc\xa6\xe9\x52\xc8\xcb\x1c\x73\x37\xfa\x36\xc5\x80\x38\x30\x00\xc1\x0e\x8f\xac\x1b\x04\x1b\x01\xb8\x31\xb0\xbb\xf7\x69\x36\x56\x98\x89\xb2\x3f\x9d\x63\xf3\x53\xf6\xc3\x18\x05\x10\xb1\x83\xe4\xc8\x00\x11\x3b\xd6\xbe\x6f\xc1\xc9\x35\xf0\x3a\x6c\xdf\xb3\x58\xf0\xe0\x9a\xef\x70\xda\x9d\x18\x64\xa6\x93\x6c\x16\xfb\x6f\x71\x4d\xff\xa1\xcc\x00\x88\x1d\x86\x31\x4c\x7d\x6f\xce\xd0\x09\x87\xbb\xa6\x7a\xd0\xb1\x97\x1b\x96\xe0\xd8\xee\xa1\x80\x63\x07\x09\x1e\x31\x2b\x61\x32\x36\xad\x32\xd3\x39\xec\x4d\x28\x7f\xa7\x43\x3d\xe1\x0b\xd4\xe4\x07\x9a\x76\x78\x84\x06\x4d\xbb\xe9\x91\x01\x4c\x3b\xdd\xf9\x00\xd3\xfe\x5e\xa6\xf3\xc4\x80\x5d\x5e\x93\x92\x56\x7c\x81\x2c\xfd\xb4\x16\xb7\x2f\x58\x34\x6b\xc0\x6a\x37\xaa\x8a\x4a\x30\x1b\xa3\x80\x5a\x03\xc8\xb6\x19\xc0\x01\xc8\x76\xe8\xb8\x9a\x0d\x62\x0b\x0b\xc0\x84\x33\xf7\xbb\x0c\x82\xa3\x09\x96\xd3\xdc\x43\x8e\x11\x1f\x2c\xf5\x98\x8d\x69\x81\x32\x36\xbb\x7d\x44\xc7\x03\x0d\x3b\xf7\x30\x83\xc4\xed\x66\x08\x12\x77\x10\xa3\x13\xb3\xdb\x66\xc7\xbf\x2f\x26\x8f\x6f\xe3\xe6\xa1\x99\xdd\x96\xf1\x9d\xc1\xf2\x41\x9c\x83\xbe\xfd\xbd\xeb\x0f\x96\x0f\x92\x1a\xf8\xed\x32\x77\x5f\xe0\x02\xd0\x56\x35\x07\xed\x99\xde\xb7\x3d\x56\x63\xd8\x1e\x8a\x1b\xb0\xa6\x78\x0d\x9e\x0a\xc1\xf8\x31\x01\x69\xd8\xb3\x0d\xea\xf9\xb9\xaf\xc7\x7f\xff\x4b\xcd\xf6\x20\x71\x7f\x1f\xa5\xae\x44\x7e\x68\xc3\x13\x89\x7b\xee\x12\x26\xed\xb4\xe4\xbd\x11\xdb\xa2\xc9\x34\x44\x5d\x9e\xf3\x86\xe8\xdb\xb7\xe9\x62\xc7\x0d\x2b\x92\xfe\xd3\x19\x85\x33\x12\xef\x86\xe8\xf3\x3c\x1f\xf0\xb4\xb3\x0b\x4d\x23\xdf\xec\xc9\xb8\xf1\xbd\xf8\x9d\xef\x54\xb0\x7c\xe4\x9b\xf1\x4e\x35\x52\x69\x41\x87\x08\xb1\xb9\xe7\x11\xfe\x30\xb5\x9e\xcf\xa7\x1d\xcf\x66\x33\xd9\xb6\x3d\x21\x01\xda\x5d\x8f\xe2\x43\x9f\x5a\xb4\xec\x09\x00\x1e\xc2\xb9\xc6\x99\xc8\x5d\x1b\xd0\xee\xe5\xca\x21\x66\x64\x82\x69\x11\x93\x54\x5a\x37\x6d\xc0\xbc\x5b\xfc\x19\xd6\x1b\xf3\xdb\x9f\xa7\x1b\xfa\x84\xf5\x3e\xd8\xb9\xe6\xb7\x93\x4e\xf7\x70\x60\xbc\x9b\xdb\xf0\xbc\x84\x40\xe6\xf9\x6f\x07\x0c\x8d\x7e\x93\xe8\x8e\x49\x0e\x5b\x80\xf5\x1d\x9a\xc1\xe6\xc5\x4c\xb2\x57\xe5\x5e\x00\x27\x33\x26\x58\x0e\x69\x93\x36\x55\x2f\xd7\x37\xc1\xe4\xae\x55\x60\x1a\xb4\x92\x82\x01\x5e\x89\x73\x0e\x30\xc0\xcb\x24\x66\x33\xa6\x7b\x9d\x73\xf5\xb6\x04\xdb\xf0\x6d\x76\xdd\x13\xf6\xfc\x36\xbb\x49\xe2\x6f\x4c\xc2\xaa\xa7\xef\x02\xae\xe4\x34\xfc\x1d\x44\x34\xf0\xea\x0f\x23\xbf\xa2\x8a\xc8\x3a\xe3\xbb\xe6\xcf\x66\xa2\x0d\xcc\x1f\x20\x5f\x2e\x55\xf3\x56\x8b\x92\xf4\x27\x74\xb3\x0f\x09\x20\x40\x27\xfd\x8c\x2e\xf5\x85\x8b\xf3\x04\x15\xfa\xb6\xc0\x4c\x25\x09\x0c\xbb\x2a\x4c\x80\x92\x7f\x1f\xa5\xaa\xdf\x81\x2f\x8b\x42\x92\x24\xd6\x69\x30\xcd\x7c\x80\xac\xda\x6f\xf4\x4f\x32\x3a\xf9\xb0\x52\x85\x33\x74\x07\x99\x54\x1f\x22\xc6\xd9\x89\xf2\x00\xd1\xee\xa2\x7f\x0c\xae\xa3\x84\xd7\xa2\xdd\x32\xbe\x3d\x6f\xea\xa2\x07\xdf\xbc\x06\x8e\x01\xf0\xcd\xbf\x87\x28\x02\x82\x40\x5d\x09\x80\x9a\xb7\xe5\x28\xe0\x0e\x0e\xe7\xeb\xab\x5b\xd2\x97\x11\x25\x06\x07\x01\x6a\x5e\xb4\x46\x01\x6a\xfe\xfd\xf1\xfd\x00\xd5\xfc\xfb\xd1\xf9\x41\xf2\x50\x7a\xdd\xf9\xec\xe0\x1a\x08\xc5\xe1\x0b\xc2\x6b\xb1\xbc\xc5\x35\x27\x60\x3a\xc4\x35\x9f\xfa\x65\xc1\x35\x9f\x6a\xfb\x01\xe1\x03\xc9\xe2\x11\x58\xc2\x34\xbb\x86\xc0\x5b\xcc\x87\x20\xda\x5a\x33\x44\x10\x6d\xbd\x0f\x3b\x01\x75\xbd\x82\x45\x94\x72\xad\x3b\xa0\x94\x97\x6d\x47\x05\xa6\x5c\x20\x91\x00\xa6\xbc\xbb\x9b\x82\x40\x3e\x77\xbd\x39\x0a\x6e\x93\x27\x08\xe4\x35\x30\x1d\x02\x2e\x3e\x35\xfb\x44\x13\xe3\xd4\xfb\x20\xe0\x31\x45\xa3\x71\x9a\x62\xbb\x8a\xe6\x12\x60\x89\x86\x8c\xb8\x2c\xb2\xe0\x30\xb7\xcd\x96\x01\x2b\x84\xf1\x72\x40\x93\x77\x5d\x34\x21\x34\x03\xcb\x18\x64\xf2\xb2\xad\x96\x40\x93\x4f\x62\x38\x03\x38\xf2\x69\x58\x24\x80\xe2\x2b\xbd\x3f\xe8\x3d\x84\x46\xe0\x1f\xae\xfb\x1a\x67\xbf\x4d\x00\x21\x01\x04\x86\x08\xe0\x4e\x81\x05\x8a\x30\xdc\xa5\x79\x1f\xbd\x47\x93\x13\x10\xe0\x13\xd6\xb8\x08\xe2\xa5\xb5\x79\x04\x80\x83\x98\x80\xfe\x90\x71\x00\x87\x4f\xc2\xf2\x23\x08\x26\x34\xd2\x22\xa6\xae\x26\x7a\x4d\x87\x00\x82\x00\xc4\xee\xa9\x4b\x05\xc0\x6e\xb3\xb6\x02\xc0\xee\x09\xda\x6c\x00\xd8\x3d\x5d\xa6\x60\x74\x57\x70\x0b\x22\x72\x13\x45\x73\x7d\xf3\x0c\xdd\x94\x7e\x93\xb2\xc8\xbd\x24\x1f\x29\x02\x7b\xbe\xae\xaf\x80\x3a\x36\x8a\xf7\xf1\xc1\x3b\x97\xbe\xf3\x51\x6a\x84\x0c\xa0\xbe\x84\xa4\x0e\xb0\xb4\x47\xb5\x80\x13\x93\x27\xa2\x42\xc8\x6c\x21\xa9\x03\xc8\x6c\x59\x4f\x03\xc8\xec\x22\xd6\x73\x80\x99\xdd\xf5\xb8\x84\x80\x60\xce\x7b\x21\xb3\x3d\x3c\x80\x99\x2d\x25\x49\x00\x99\xbd\x0c\xfe\x10\x19\x7b\xcf\x50\xb0\x50\x27\xc7\x48\x91\xb1\x85\x7a\x0e\x91\xb1\xc3\x29\x0d\x02\xc1\x9e\xba\x17\x6a\x8a\xd3\xf5\xa2\x63\xd8\xb1\x03\xfa\xf6\xa9\x61\x25\xbe\x3d\x21\x0c\x1f\x0d\x38\x1f\xd2\x86\xe2\x13\x76\xbb\x8c\x9f\x7c\xa3\x14\x06\x7f\x9c\xdb\x77\x6c\x68\x1c\x46\xf0\x77\xb3\x19\x71\x1f\x3b\x99\xb6\xa4\x78\x40\x68\xe2\x94\x13\x8f\xb5\xc6\xa2\x0d\x40\x75\x37\xea\x24\x94\x9b\x80\x94\x46\x60\xdd\xf7\xfc\x13\x8f\x3d\x69\xc7\x48\xb2\x5a\x7c\xe3\xf4\x0f\xbf\x0b\x64\xe1\xbe\xc6\x06\xe4\x38\xe0\x02\x80\xb1\x2c\xe2\x93\xc0\xcb\x66\x92\xad\xe2\xf6\x08\xa2\x75\x6b\x4e\x2a\xf3\xfd\x31\x5c\x05\x06\x37\xc1\x38\x23\x5e\x62\x5c\x30\xab\x03\x75\xdd\x34\x2d\x0a\x75\x6d\x10\x26\x48\xd7\xd5\xc8\x0e\x91\xae\xf5\x2a\x24\x59\xfd\x6a\x69\x49\xb2\x8a\xe7\x51\x31\xab\xc9\x98\x0d\xb0\xa9\xa5\x9a\x0e\xb0\xa9\xab\x66\x35\x50\xa7\xa7\x4e\x08\x50\xa7\x1b\xf9\x26\x01\xe8\x74\x11\x7e\x33\x92\x2c\x96\x03\xdf\x46\x92\xcc\x28\xd8\x65\x00\x47\x6d\x3a\x79\x24\x81\x7d\xa2\x5d\x46\x42\x52\x6e\xfb\x53\xac\x1d\xfd\xe0\x59\xa4\x47\xe3\xd8\x91\x85\x65\xc8\xc1\x26\x2b\x52\x89\xa5\x91\x98\xeb\x44\xa3\x8c\xc4\x5d\xb1\x5b\xa7\x5c\xb6\x3c\x40\x75\x8c\x2f\x49\x8f\x0e\xc0\xc0\x85\x98\xd7\x71\xf8\x07\x0b\xd7\x7a\x20\xa3\x01\xe6\x8f\x6c\xe0\x9b\x33\x65\x52\xfe\x07\xf6\x1f\x70\xb1\x1b\x68\x65\x01\x2e\x76\x87\x06\x2d\xc0\xc2\x9e\x3a\xe5\xd2\x93\x80\x71\xbf\x80\x61\x57\x85\x9d\x60\xd8\xc2\x4f\x46\x4a\xbe\x8a\x5e\x03\xe8\xf5\xca\xf5\xa7\xf1\x0d\x44\xec\x22\x16\x60\xa4\x8c\x71\xe8\x18\x40\x62\x17\xb1\x13\x23\x15\xda\xfb\xd3\x54\xac\xf8\x90\x15\xeb\xfe\xc0\xca\xc6\x81\x53\x88\x6b\xb1\x23\x03\x88\xeb\x69\x80\x13\x10\xd7\x45\x18\xc6\x00\xe3\xba\xa5\x6f\x03\xb5\x03\xac\x51\x24\xc8\x39\x2e\x16\xe0\xab\x57\xf7\x79\xa0\x61\x55\x89\x81\xa6\x2e\xb3\x21\x15\xc1\xa6\x9e\x4a\x3f\xa0\xa9\xab\x61\x9a\x39\x49\x61\xb7\x00\x5c\x17\xc1\x42\x4b\xa8\x79\xea\x7e\x9e\x28\x5d\x07\x09\x64\x58\xc3\x86\x13\x44\x36\xe3\xaf\x12\xa7\x84\x5e\xa7\x4c\x47\x9e\xfd\x3c\x25\x08\xdf\xd7\xa4\x3e\x0e\x1f\xfa\xc4\xdd\xbe\x84\xb6\x81\x45\x9a\x12\xba\x59\x1f\xf5\xef\x66\x01\xe8\xdf\x6e\x15\x80\x57\xb7\xe8\x5e\x9b\x9c\x4c\x8b\x97\x2d\x5e\xbe\x4d\x8b\x9d\xe1\x80\xc1\x86\x2d\xc6\xb7\xa1\x1b\x0c\x50\xeb\xb2\xbb\x14\x88\x9b\xe9\x39\x23\xc1\x66\xd3\x25\x06\xda\xf5\xf7\x07\x5f\x3a\xad\x06\xc5\x91\x46\x3f\x8d\xe9\x4b\x48\x15\xb4\xf9\xa7\x3b\x84\x86\x7e\x40\xb1\x0b\xf9\xef\x91\xee\x10\x5a\xfd\xf3\x24\x82\xd0\x16\x21\xfc\x3d\x7f\x03\x84\x5d\x97\x95\xba\x64\xa0\xa7\xb8\x8b\xfd\xdc\x05\xc8\xa6\x30\xf6\x33\x22\xf2\x53\xbd\xcb\xf1\xf7\x19\xd6\x9c\xeb\x4f\x68\xb7\xe6\xf3\xac\x7d\x20\xdc\x22\xbf\xcd\x22\xeb\xfe\xd0\xcf\x3f\xac\x05\xaa\x2b\xa2\x79\xa3\x6b\x3b\x58\x18\xc8\xb4\x6b\x01\xae\x3d\xc9\x89\x0d\xc0\xb5\xab\x31\xe1\x60\x6b\x17\x00\x4c\x23\x7f\x92\x66\xd2\x2f\xc4\x52\xaa\xdd\x02\xa7\x5d\xd5\xd0\x41\xc3\x9e\x6a\xf4\xe9\x46\xc3\x39\x0e\xd0\xeb\xd5\x2d\x17\x78\xca\x3e\xbc\x0f\x31\x8d\x75\x40\xf0\x87\x8b\xfd\x01\x2d\x0d\xd5\x36\xf1\xfd\xea\xb3\x48\x35\xe9\xfd\x32\x8e\x17\xfd\xf4\xf9\x4a\xc8\xc1\xcb\x2f\xb6\xab\xe2\x35\xc3\xc1\x8c\x14\xf3\x7a\x82\x96\x10\x60\x5e\x57\x75\x36\x30\xaf\xa7\x5e\x4d\xe0\xac\x83\xcc\xda\xef\x2c\xcb\x7d\xaf\x81\x9d\x65\xe2\xad\xc2\xea\x67\xcd\x8a\x60\xed\x16\xba\x80\x28\x13\xc0\x2d\x16\x19\xe1\x6a\x4d\xab\x9e\x34\xc7\x87\x2e\x32\x5c\x7c\xc6\x23\x33\xcf\x10\x3d\xe9\x51\x5a\xc8\xeb\x60\x90\x17\xaa\xe9\x37\xc6\x7f\x88\xb7\xd5\x88\xfd\xdf\x1f\x20\xf6\x9f\x7e\x15\x27\x7b\x07\x36\x02\x94\xdd\x9a\x5d\xa0\x44\x35\xca\x71\xe1\x80\xd0\x3c\xb2\x3a\xa9\x3d\xf6\x0d\x18\x96\x1a\xac\x16\x74\x01\x13\xca\xcd\x58\xd0\x6c\x1e\x1c\x32\x16\x7c\x01\x9a\x75\x40\xd6\x9e\xda\x1f\x16\x5c\x37\x9a\x19\x44\xd6\x26\x03\x30\x40\xd6\x9e\x9a\x13\x40\xd6\x16\xf8\x25\x96\x31\xde\x68\x79\x20\x6b\x37\x2d\xaa\x02\x6b\xab\x9e\xaf\x89\x54\x1d\xd5\x3f\x88\xc0\x46\x43\x5a\x00\xfe\x2f\x47\x4e\x53\x89\xa7\x2c\x20\xb7\xe7\xb4\xcd\x93\x5a\xdb\x31\x24\xc6\x00\x6b\x14\x4b\x74\x12\xd0\xaf\x62\x11\x13\x09\x6c\x47\x00\xa0\x5d\x0c\xc0\x5c\x3a\x1d\xf6\xfd\x65\x74\x3d\x6d\x36\xae\x1b\x25\x1e\x04\xed\x9e\xb6\x99\x40\x48\xd5\x48\x70\xb2\xeb\x6e\x03\x39\x2f\x73\x7a\xdf\x77\x29\xf8\x13\xa5\xa9\x5d\x72\xa5\x91\xbf\x14\x8c\x7b\x17\x4c\x8a\x58\xcb\xe7\xb9\xc6\x59\xab\xa7\x4e\x38\x6c\x53\x36\x44\xbd\xf6\xc4\x2d\xa0\xb5\x2e\xea\xa5\xbd\x1e\x44\xd2\x58\x9f\x74\x5a\xc6\x9c\x2e\x33\xf3\xfc\x28\x71\xdc\xa2\x8d\xc6\x32\x8e\xdb\x59\x8c\x95\xbe\xf9\xa5\x4f\x0c\x75\x15\x0a\x20\xb0\x2b\x64\x3d\xb1\x48\x0f\x9f\x9a\x10\x17\x5c\x91\xc5\x66\xa2\xb3\x92\xff\x16\xe0\x64\x17\xc1\x2d\x03\xa0\xec\xae\x5f\x62\xed\x74\x14\x4a\xb8\xad\x86\x8d\x33\x1f\x05\x05\x6e\x61\xcc\x77\xcf\x58\xd8\x31\x3c\xec\x03\xac\x5d\x64\x0a\x0d\x90\xb5\x9b\x87\x3b\x90\xb5\x8b\xfc\x95\x01\xb4\xb6\xc8\x54\xb1\xb0\x5e\x28\xdd\xd6\xaf\x62\x5a\xe1\x05\x32\xbf\x75\x34\x2d\x6c\x11\xfa\xc4\x40\xd3\xee\x20\x01\xc6\x02\xc6\x7f\x21\xa1\xd6\xa3\x7d\x9b\x76\x62\x76\xdf\xf9\x28\x0b\xf7\x71\x71\xce\x3f\x84\x3b\xdb\x4b\x6a\xc5\xaa\x76\xeb\x31\xed\xc8\xaf\x9e\xfe\x41\xf5\x3e\xad\x78\x02\x56\x13\x8b\x48\xc9\x9d\x23\x22\x28\x37\x88\x6c\xb1\xc8\x5a\xd9\x79\x21\x0b\x3e\x98\xc3\xd1\xc2\x32\xa1\xf5\x62\x11\xef\xa8\x09\x76\xbd\x38\x79\x50\xbc\xd6\xeb\x57\xd9\x59\x80\xf1\xae\x5a\x54\x41\xeb\x6e\xc6\x3b\x00\xd6\x5d\x76\xc8\x3e\x68\xdd\x53\xd3\xe9\x79\xd8\x05\xbe\x30\xb9\x1e\x5c\x5f\x64\xb7\x7a\x6d\x09\xfb\xab\xa4\x3c\xd0\xaf\xe7\x27\x67\x1b\x40\x92\x71\x16\x8c\x68\xe3\x2f\x64\xf2\x38\xc9\x7b\x51\x87\x3e\x8b\x04\x80\x95\x6b\xcc\x7e\x08\xaf\x53\xc0\x49\x25\x96\x40\xe0\xc6\x73\x00\xf7\x1d\x83\xe3\xea\x59\xb1\x24\x71\x74\x03\xbc\x3b\x34\xaa\x9d\x8d\x49\xe7\x2a\x3a\x71\x1c\x83\xcb\x17\x27\xc1\x8a\x6a\x39\xa0\x7a\x7f\x0f\xf9\x07\x86\x41\x46\x0f\x58\xef\x32\x4d\xfc\x39\x31\x23\xb8\x51\x9f\x88\x63\xa7\x29\x78\xdf\xf5\xd8\x25\x38\x78\xe1\xdb\x80\x7d\x20\xa6\xce\x4e\xc6\xa2\x5d\xdb\x3d\xcc\x53\x57\x0c\xd7\x1e\xf2\xcf\x8e\xb0\xb0\x37\x3f\x7d\x34\x35\x1e\x9d\x9f\xda\x39\x8d\xc3\x3f\x3f\xa1\xdb\x76\x27\x4d\xc2\xf3\x6d\x0e\xa6\x67\x6d\xfb\x27\xf1\x2f\x06\xe6\x9d\x1a\x8c\x3d\x34\x9c\x04\x2b\xee\x82\x83\x90\x0a\x04\xed\x19\x46\xec\xf1\x21\xbc\xb5\xd3\x10\xfd\x53\xae\xc6\xf4\x21\x8e\xd3\xe1\x43\xc0\x40\x1d\x3e\x23\x5d\x3a\x05\x24\x06\x7d\x8e\x4a\x27\x90\x8b\x1e\xb9\x4e\x02\x66\xb6\xde\x7d\x82\xb9\x68\xc6\x19\xc8\xe1\xdd\xb8\xe8\x33\x77\xc9\xbe\xad\x81\x9e\xd2\xc0\x5c\xdc\x3a\xe2\x99\x38\x68\x1c\x91\x44\x1c\x39\x77\x75\xe9\x3a\x3a\x0b\xe0\xb2\xe1\x7d\x1c\x17\x0e\x88\x71\x83\xec\xd4\xc0\x8b\x17\xad\x48\xe7\x62\x35\xb1\xf3\x01\x35\x5e\xa0\xee\x89\x73\x71\xb2\x74\x22\xe1\xab\xdd\xda\xcc\xb9\xa4\xca\xe2\x5a\x5f\x2d\xcb\xef\xc4\xf7\xba\xa7\xc8\x49\x0b\xc2\x67\x6c\x81\x8b\xe6\xb4\x05\x94\x70\x3a\x54\x94\x70\x12\x8d\x99\xbe\x70\xf9\x82\x7f\xe0\x87\xc0\x9a\x70\x9e\x78\x37\x30\x39\x9c\x32\x1b\xa0\xb3\x81\x53\x1e\xaa\xb2\xe7\x05\xb5\xf5\xf0\x1a\x2a\x70\xbb\x0b\x63\xb3\x71\xce\xe7\x2d\x4b\x3d\xdf\x04\xb7\xa3\x3b\x38\xc8\xe2\x6d\x51\x3b\xb1\x3e\xcc\x7d\x0d\x7c\x2d\xe2\xf4\xd4\xd8\x6c\xd4\xef\x69\x8c\x90\xa3\x26\xb0\x93\xed\xff\xe1\xb7\xb2\x5f\x7e\xb8\x83\x9d\xcd\xc4\x9a\xc3\x13\x13\x80\x9c\x57\x33\x5f\x4f\xe2\x0c\x55\x04\xcf\x4f\x16\xd7\xb6\xaf\x51\xe5\x8d\xcb\x38\x61\xf4\x9d\xfb\x05\xa7\x08\xfd\x08\x34\x93\x2e\xe0\xf3\x13\xa6\xb5\x3a\x21\x15\xa6\x46\x28\x9c\x9a\x79\xd1\xc0\xcf\x17\x65\x8e\xbd\xf2\x7c\xb5\x07\xf1\x0c\x7c\xf5\x55\x99\x42\xc0\xb8\x59\x62\xa7\x86\x85\x50\xbc\x61\xa8\xfd\xd4\xc8\x3f\xc4\xdb\x75\x38\xa5\x39\xf5\x5c\x64\x6a\xd3\xee\xeb\x70\x3e\x20\xc6\xae\x23\x29\x66\x71\x6d\xcf\x2e\x7f\x50\x17\x7a\xf0\x3a\x70\xe4\x0d\x5f\x78\xb9\xff\xd5\xfd\x22\x62\x68\x82\x84\x1a\x57\x91\xca\xca\x6b\xa1\x97\x7d\x68\xf0\x42\xe5\x7a\x71\x4d\x01\x3a\x35\x61\x8b\x8a\xab\x88\x5e\x49\x09\x9f\xf8\x0d\x68\x7a\xe2\xda\x78\xbf\x4c\x76\x60\xdc\x03\xf0\xc2\x00\xa2\x3d\x5c\x35\x17\x0e\x4b\xb3\x62\x2f\xf0\x07\x01\x69\x8c\x4b\x6b\x30\xc0\x8c\x71\x61\x76\x30\xc4\xe3\xc2\x61\x39\x01\x8e\x8c\xab\xda\x50\xdf\xb8\xb8\xf6\x21\xe1\xd6\x7c\xe6\xe7\x0b\x3e\x64\xfd\xbe\x69\x70\x21\xed\x9d\x4f\x97\xd2\x1e\xd8\xc9\xb8\x70\x65\xc2\xa9\x14\x20\xc0\x07\x50\xb5\x71\x69\x27\xf6\x44\x00\x02\x7c\xd5\x53\x7f\x69\x27\x06\x5f\x27\xae\x26\x87\x8a\x45\x58\x36\xca\x27\xd8\xf0\xa1\x4c\xbc\x3a\xcd\x46\xa3\x01\x1b\x3e\xb4\xcb\x83\x0d\x1f\xa6\x08\x8a\x0d\x3f\x81\xcb\x89\x4b\xd8\x41\x24\xed\xd5\xed\xfd\xe6\x53\x98\x67\x9b\x7f\xdc\x7c\x95\x4e\xd6\x16\xc1\x06\x09\x80\x7c\x75\xbd\x5f\x43\x42\x38\x3e\x8a\x25\xc2\xa8\x9d\x0b\xb2\xad\x99\x7e\x68\x00\x0e\xbf\x7c\x88\xa9\x68\xb2\xd1\x45\x14\xa7\xf1\xb0\x97\xee\x4f\x30\x75\xe2\x1a\xf4\x93\x63\x37\xec\x27\xb4\x92\x6b\x30\x44\xe9\x67\xf1\xe0\x14\xcb\xbb\x7d\xc8\x1f\x2c\x18\xd6\x08\x48\xf6\xa1\xfd\xf0\x52\xc3\x4f\x56\x1e\x48\xf6\x51\x5d\x12\xf8\x3c\x81\xb3\x8c\x6b\xd2\xaf\x56\x16\x72\x4a\x8f\xbe\xa0\xd4\x87\x3b\xfe\x15\xf6\x37\x55\x0d\xa7\xd9\xf4\x07\x8c\xab\x28\xa3\xc0\xd7\x7f\x7f\x50\x6f\xb4\xfa\x66\x09\x61\x87\x4f\x9f\x62\x9e\xa1\x42\x5e\x20\x51\x19\x33\x74\x85\xd3\x1d\x95\xeb\x4a\x79\xac\xa8\xc7\xb7\x3d\x85\x31\x95\x40\xd0\xa7\x9b\x90\x10\xf4\x33\x1d\xec\x14\x56\x96\xeb\x75\xf0\x02\x0f\x2d\x51\xc6\xbc\x26\x07\xd8\x59\xbd\xf6\x5a\xa1\xae\xd8\x4e\x8c\x24\xbd\xbe\x6d\x28\x8c\xb6\xbc\x08\x19\xd2\x48\x09\x32\x7d\x49\x67\x19\x29\x4f\xc6\xd0\x5f\x32\x11\xa3\x68\x5f\x27\xd1\x60\x36\xed\xdb\x54\x42\x13\x3a\x88\xf5\xa1\xb5\xf6\x3a\xfd\x3e\x65\x7d\x7b\x4a\x2d\xe8\x29\xd7\x85\x08\x71\x01\xe1\xcd\x6c\xe5\xcf\x5c\xad\xeb\xb2\x70\xfa\x95\x0c\x28\xf0\xff\x03\x10\xfa\x30\xf4\xf4\x62\xc3\x01\xfa\x23\x00\xa1\x2f\xd3\xac\x3e\x50\xe8\xbb\x19\xcb\xd7\x6d\x56\x1f\x5d\x43\x3a\xd4\x34\x29\xe9\x82\xe2\x18\x0c\xb1\xb8\x3c\x16\x2c\x05\xd2\xb7\xe3\x2c\xd5\x1b\x70\xeb\xc3\xe0\xd3\xeb\x67\xd1\x54\x09\x3f\xe6\xd4\x2b\x07\x3c\x7d\x35\x8f\x47\x84\x79\x1d\x60\x20\xcc\x47\xdb\xcf\xd0\xe1\x8e\xe2\xa6\x73\xa4\x80\x07\x3f\xbe\xd3\xf2\x53\xf2\xb3\xb3\xfb\x00\x3c\x1f\x9a\x72\x2f\xfc\x8a\xe6\xee\x5d\x92\x7b\xf9\x9d\xd7\x4a\xa0\x02\x80\x42\xbf\x20\xae\x8a\x0b\x43\x87\xae\xf5\x8b\xf8\x99\xe6\x34\xd6\x4d\xa8\x06\x0e\xf2\x7c\x68\x06\xbe\xde\x7d\x76\xfc\x3e\x7b\x7f\x7a\xfd\x82\x0d\x35\x40\x9b\x2f\x66\x93\xde\x04\xc7\x68\x12\x06\x6d\x3e\x34\x28\x03\x28\x9f\xf0\x71\x86\x80\xf2\x5b\x07\x04\x50\x3e\x54\xe3\xc0\x81\x0f\x71\x10\x6e\xe2\x5b\xb4\x27\x03\xfd\x1e\x9a\x8d\x85\x7e\x9f\x8b\x35\x00\xf4\x7b\x1a\x2b\x08\xf4\xfb\xf7\x07\xc5\x55\x1b\x9a\x5c\xfb\x55\x1f\xd2\xf5\x4f\x69\xd5\xde\xf3\x19\x87\x93\x12\x90\xd9\xc6\xa5\xdd\x92\x73\x1c\x5e\x73\xfe\xb5\x39\xa8\xd8\x9e\xc7\x00\x5a\x0f\x78\x74\x02\xa0\xf5\x50\xbb\xbb\xf5\xe6\xc1\xcf\x12\x77\x6f\x80\x7f\xd0\x5f\xc8\x59\x37\x8b\xbb\xa3\xc4\xb3\x8b\x80\x83\xbe\xb4\x5e\x83\x77\xbe\xb4\x0b\x83\x77\x9e\x70\x87\x06\x18\xe7\x4b\xa3\xc0\x4d\x80\x06\xd0\x7a\x01\xde\xf9\xd2\x9a\x7e\x4f\xe2\x18\xb4\x4d\xdc\x04\x68\xd4\xfd\xd0\xcf\x3f\x7c\x9b\xe6\x20\x34\x01\x42\x5f\x80\xba\x05\x40\xe8\xd5\x40\x51\x70\xd0\xbb\x8a\xfb\x1d\xe8\x58\x76\x11\x11\x1a\x9a\x57\x80\x3e\xef\x9a\x69\x04\x23\x57\x71\xbb\x17\x5d\xc1\xe6\x7f\xe3\x68\x83\x9e\x38\x6e\x30\x4e\x0d\x50\xba\x11\x43\x3b\x42\xe7\x56\x33\x66\x06\xdf\x0b\x07\x6e\xf3\x43\x16\x46\x01\x8a\x24\x54\x93\x7b\x31\x37\xed\x8a\x25\xa6\x1d\xd7\x8a\x27\xe4\x22\xf0\xe3\x65\x07\xdc\x80\x3f\xde\x0d\x9d\x06\x7f\xbc\x1b\x3f\x29\x9c\xf8\xdc\xcf\xc8\x00\xcf\xf5\x25\xe5\x22\x05\x5f\x7e\x94\xd6\x7f\x3a\x6f\x55\x57\x03\x00\xbc\x18\x6a\x0d\x9e\x77\x85\x5e\x27\x6e\x45\x90\xbd\x78\x23\xc1\x51\x08\x6e\x6d\x0e\x47\xfe\x69\x85\xbb\x3f\x99\x14\xfb\xcb\xb7\x7c\xef\xd4\x04\x25\x38\x8e\xfd\x43\x24\x74\x3a\xf9\x76\xd8\x2d\x87\xf0\x08\x35\x65\x60\xbd\x9b\x69\x4e\xc0\x7a\x47\x43\x8b\xb8\x89\x1c\x0c\xbd\x4d\xf7\x4f\x2a\x74\x5f\x06\x43\xdc\x1e\x84\x27\xc8\x13\x14\xd8\xdf\x21\x22\x0d\xd8\xdf\x72\x9b\x04\xd0\xdf\x75\x0f\xb5\xb1\x0e\xae\xaa\xc7\x6a\xf3\xee\x63\x98\x29\x65\xbd\x1c\x4a\x5d\x0c\x70\xb9\x87\x19\x63\x20\x73\x2f\x9d\x1e\x00\x73\x7f\x7f\x30\x1f\x48\x77\x77\x7b\x10\x98\x7b\x87\xda\x82\xcc\xbd\x74\xb2\xdc\x78\xea\xc2\xbc\xbe\xfb\xa5\xec\xe5\xdb\xdf\x42\x01\xa5\x3a\x40\xec\x2e\x3b\x88\x46\xc8\xee\x74\x6a\x91\x0d\x64\x68\x85\xd0\xdc\xe1\x6e\x02\x34\x77\x6a\xac\x03\x99\xfb\xfb\x63\xf2\xa3\xf2\x59\x1f\xb2\xb6\xf4\x13\x98\xdd\xe9\x12\xfa\x1d\x10\xea\xd1\xbc\x1f\x9a\xb8\x81\x33\x3f\x30\x93\x3c\x9a\xfc\x0e\x52\xa1\x0f\x9f\x27\x1f\x0e\x11\x0d\xae\xf7\xf7\x51\x5f\x36\x76\x9a\x17\x8a\x39\x7a\x54\xa9\x7c\xa2\x4e\xd7\xf3\xaf\x70\xba\x62\x19\xfc\x3e\xe5\x7b\x29\x35\x7e\xc5\x6c\x79\x04\x3c\xe0\xdf\xd9\x99\xd6\x82\x7f\x87\x78\x01\x80\x7f\xa7\x7b\x3c\xe0\xdf\xe9\xd1\x1c\xf0\xef\x10\x19\xe9\x57\x6e\x9a\xc0\x7d\x30\x4f\xb5\x74\xfe\x08\x35\xd4\x2a\xf7\x83\x84\xc3\x75\x03\x0e\x78\xdd\x7d\x54\x81\x60\x64\xdb\xfb\x11\x70\x31\x6c\x66\x3b\x48\x9b\xe6\x19\x8c\xd7\x62\xaa\x80\x03\xbe\x74\x8b\x83\x03\x9e\x86\xd8\x03\xf7\x9d\x66\x7c\x03\xf7\xbd\x34\x8c\x82\xf6\x5d\xc2\x38\x16\xe0\xbe\x17\xdc\xce\xf1\x23\xf3\x48\x17\xf9\x0f\x83\x88\x1b\x11\x70\xdf\xdf\x0b\x3c\x44\xec\x9f\xd9\x1a\xc0\x7d\x7f\x7f\xf8\x14\x48\x65\x6c\x94\xc0\x7d\x7f\x7f\xf8\x29\x34\x6f\x36\x16\x90\xb9\x97\x00\x23\x80\x6f\x97\x28\x96\x3d\xd4\x4b\xf8\x12\xa0\x4c\x5a\xd2\x80\xc6\x4e\xe7\xea\x0f\xc2\x25\x75\xc2\x1f\x06\x15\x7d\xfb\xa0\x61\x87\x00\x19\xbf\xe9\xe4\xb6\xd5\x33\x99\x3c\xfe\x01\xa4\x11\x8b\xf2\x67\xa4\x5d\x78\x0d\x72\x42\xf5\x9a\x39\x82\x54\xfb\x05\x27\x50\x5b\xf0\xa9\xaf\xe1\xf6\x06\x4c\x76\x09\x13\xd7\xc0\xc9\x4e\x9d\x4c\xbf\x04\x4c\x8c\x3d\xed\x27\x79\xa3\xc9\x52\xbf\xf4\xab\x74\x77\x32\xb5\xa7\xf7\xad\xea\x9f\x20\x70\x01\x8a\xf6\x32\xfc\x00\x14\xed\x34\xf7\xef\x97\xc0\xb5\xb2\x16\x7f\x8b\x9d\x93\xed\x18\x1c\xec\x34\xd9\x1e\x18\xec\x12\x22\x7c\x81\x83\xbd\x4c\xd9\xf8\x99\x91\x6f\xc3\x49\x48\xf2\x28\x0b\x92\x75\xe8\xb3\x03\x99\x3a\x0d\x7a\xfc\x81\x42\x02\x29\x73\xfc\x4e\x00\x30\x1c\xeb\x6f\x2b\x08\x8d\x4d\x20\x56\x97\x10\xbb\xe6\x87\xbd\xdb\xa3\xe2\x0f\x7b\xb7\x61\x7b\x40\x59\xa7\x16\xeb\x1f\x76\x11\x23\xb8\x7e\x17\x13\x08\x71\x07\xac\x75\x7a\xc2\xfd\x5d\x88\x25\x47\xeb\x62\x1e\xb3\x77\xfc\x20\x5a\x82\xaa\x21\x7e\x98\xc1\xc3\x8c\xa2\xdf\xf5\x63\x79\x7b\xed\x84\xa3\x05\x17\xf8\x98\x2e\xa0\x4f\xdf\x5d\x9e\xea\xc1\xbe\x5e\x1e\xd8\x7f\x98\x4b\x20\xf3\x0f\x70\xb0\x97\x1b\x18\xd8\xd7\xe9\x91\xf1\xf7\x73\xee\x51\x30\x81\x77\x01\x95\x7d\xfc\x7e\x7e\x94\x96\xfd\xfc\xa8\x2f\x83\x1b\x69\xf7\xfe\x6c\x8d\x1f\xd2\xa2\xe8\x35\x7e\x30\x27\xf7\xcf\x6e\xf4\x8f\x6f\xd7\x08\xdd\x7a\x60\x62\x2f\xcf\xcc\xbf\x47\x82\x50\x17\x1f\xb1\x76\xa6\xb3\x80\x89\xbd\x3c\x71\xff\x00\x26\x8d\x2d\xde\xd8\x67\x8c\x09\xfb\xa1\x1f\x1b\x2f\x0d\x40\x76\xaa\x8c\xfe\x08\xf5\x18\x1c\xe7\x7e\x58\xb4\x03\xac\xda\x00\x20\x7b\x69\x42\x00\x20\x7b\x69\xa4\x10\x1f\x3b\xb6\x04\x61\xff\xa9\x68\xa0\x3f\xf7\x9f\x2d\x42\x5e\xeb\x44\x71\x6e\x33\x61\x11\x6c\x33\x5b\x20\xbc\xd8\x3f\x99\x55\xcf\xf1\x4d\x79\x3d\x33\xcf\xc1\x0b\x6c\xc6\x00\x61\x2f\x8f\x98\x00\x61\x2f\x2d\x1c\x20\x57\x2f\xab\x0a\x72\xf5\xf2\x80\xfe\x28\x94\x69\xf3\x53\x9c\x24\x7e\xa8\x20\x64\x98\x61\x0f\x4a\xb4\xa7\xe7\x07\xdc\x3b\x8f\xd8\x00\x51\xa7\x01\x68\x0f\xb1\xdd\x5a\x78\xc0\x95\x0e\x43\x66\xc0\x95\x2e\xfb\xa4\x0a\xb0\xf4\xd2\xe0\x00\xb0\x74\xaa\xcc\x3d\x0d\x00\x45\x6b\xad\xb8\xf6\xf9\x66\xe7\xb1\xfd\x82\x2b\xbd\x3c\xa8\x3e\x8d\x5d\x89\xd3\xf6\xd3\xdc\xbb\x29\xb9\xa1\x36\x30\x93\xc0\x9e\x2e\xfb\x04\x0b\xf8\xf4\xf2\x3c\x0f\xf6\xf4\xf7\x87\xc5\x7d\x75\xd5\x25\xf8\xc8\x81\x6e\x8c\xce\x83\xce\xae\x2f\x6b\x23\x54\xb3\xce\x1f\x23\xbd\xd1\xfd\x9f\x6e\x35\x28\xba\x33\x84\x18\x06\x9e\xae\x40\xa4\x1a\x80\x49\xed\xc2\x30\x6f\x84\x71\x36\x0f\xf8\xa5\xd9\xcb\x5f\xe2\x0d\x8c\xeb\x14\x12\xe5\x19\x64\x25\xda\xa6\x21\x35\x2c\xa5\x80\x40\xa5\x49\xe9\xc1\x80\x2e\x34\xc8\x43\x02\xa9\x29\x0d\x8f\xf6\x73\x56\xc7\x33\x6d\x6a\xf3\x07\xeb\x0c\x49\x04\xdc\xf5\xda\x5d\x30\xcd\x99\xe4\x99\x38\xb8\xe6\x99\x40\x96\xa2\x39\x3d\x88\x78\x3d\xec\x4f\x80\xe0\xeb\x1c\x08\x87\x9a\x82\xc3\x6f\x72\x4d\xcc\xb5\x26\xd0\x47\xb9\xed\xe8\x6e\x14\xec\xe1\x43\xcc\x62\x36\x97\xc7\x70\x6a\x91\x04\x9e\x34\x4e\x9c\xce\x4c\xc3\xda\xbc\x7e\x7c\x88\xaa\x26\x31\xed\x8e\x1c\x62\x5f\xe7\xdc\xb3\x98\x40\xfb\x7a\xf8\x02\x65\x83\xae\x6d\x4e\xbd\xe8\xda\xa1\x47\xfa\x91\xbf\x9c\xd3\xe3\xb3\x2e\xc6\xd4\x87\x80\x47\x72\xbe\x92\xb5\xaf\xd7\xf6\x39\x0f\x0c\xc2\xcc\x01\x02\x3d\x8c\xd4\x04\x68\xbb\x2c\x6b\x47\x9c\x47\x71\x3e\x9c\xe0\x6c\x39\xd7\x09\xf3\x28\x76\xfc\xb7\xc7\x74\x0d\xc8\xe0\x6f\x57\xc3\xb1\xc0\xdf\xae\x2a\x9d\xcf\xb7\xf7\x34\x55\xa2\x87\x68\x3f\x93\xec\x1e\xc8\x83\x85\x92\x7a\x4e\xbb\x65\xfa\x43\x1a\x6a\x0a\x23\x0c\xb0\xd8\x30\x6c\x26\xda\x6a\xc0\xeb\x2e\x61\xc7\x73\x3e\x31\x42\x14\xb8\xee\xef\x43\xbe\x20\x5f\xb9\xd7\x92\x2e\xf9\xb2\xee\x78\x6a\x07\x3a\xe0\x5e\xdd\x97\xf8\xf3\xf4\x0a\xe8\x80\x62\x92\x80\xd6\x5d\xb5\xa9\x3c\x17\x89\x88\x87\xcf\xbc\x44\x21\xf3\xfd\x9b\xf4\x64\x2b\x21\x4f\x83\xad\x84\xd0\xc8\x53\x1e\x60\xdd\x0d\xdc\xfb\x78\x4c\xa6\xaa\xbe\x4b\x1d\x50\x0b\x1e\x01\x08\xd0\x93\x1e\x4e\x3b\xc7\xfe\xbe\x2e\x40\xbf\xf3\xc0\x58\xe8\xf3\x98\xf6\xd9\xaa\x80\xed\x9e\x46\x22\x8a\xda\xed\xbe\x00\x6a\x77\x53\x80\x03\xda\x5d\xdd\x5f\x01\xed\x9e\x6a\xfd\x80\x76\xb7\x6a\x7b\x77\x78\xb9\x95\xfe\x01\x39\x60\x25\xe4\x6f\x77\x21\x6b\xd4\x09\x9f\x01\x7a\xcd\x21\xfe\x91\x5e\x5e\x2c\x8c\x83\x95\x53\xe5\x47\x78\xdf\x7e\x97\x93\xa3\xeb\xec\x07\x01\xbe\xc2\x9f\xf4\xac\x66\x25\x08\x9f\xdc\x8d\x7f\x1c\x55\x25\x0b\xbe\x89\xe1\xd0\x3f\x1e\xf5\xa8\xc4\x43\x5c\x96\x3d\x07\xb6\xa1\x51\xf4\x8f\xd8\x86\x0a\xce\x87\x8a\xba\x80\xf0\x12\x97\xfa\xb7\x58\x7b\x14\x41\x2e\xe6\xe7\xc7\x17\xf8\x1a\xfb\xea\x1e\x13\xc3\x29\xd9\x56\xc1\xfb\x6e\xe1\xf3\x90\xcd\x0b\xa6\xf5\x10\x66\x69\x50\x3d\x38\xe0\x45\x8f\x33\x38\xe0\x65\x8b\xb2\x57\xf1\x12\xfe\x00\x1f\xd4\x89\x21\xad\xd2\x2e\x8c\x49\xa8\x2c\x7b\x65\xd9\xfb\x2a\x04\x58\x78\xd7\xf3\xf4\x7e\x87\xb2\x2a\x66\xe6\x0b\x8e\x03\x34\x76\x01\x56\x78\x15\xe4\x09\xac\xf0\xaa\x97\xeb\x3d\xdc\x6c\xd8\x92\x5e\xc2\xd7\xcd\x0b\x78\xcd\xa2\x1e\x7e\x88\x2c\x51\x76\xf3\x17\x97\xc8\x36\x54\x80\x2e\x5e\x8c\xd8\x02\x5d\xbc\xc0\xe2\x17\xa0\x8b\x57\x3d\xbe\x2f\xa7\x32\x38\xbf\xe2\x2d\xcc\x2a\x6b\x57\x88\x68\xec\x7e\x87\xe9\xcf\x4e\x0d\x1a\x79\x31\xa0\xee\x15\x35\x62\x3f\x03\xa4\x03\x33\xe9\x2d\x22\x46\x7a\xad\x10\xb1\x2b\x08\xe2\x54\xa3\x7f\x75\x66\x17\xaf\x49\xe6\x40\xa7\x04\xa5\xbc\xc1\xc8\x15\xa0\x8e\x37\xad\x60\x2f\xc4\x10\x95\xf1\x78\x89\x8e\x37\x14\x03\x3c\xf1\xa8\xfb\x5a\xf1\x6b\xdf\xb9\x83\x77\xaf\xf7\x00\xd2\x4c\x62\x90\xd4\xd9\xdf\x8e\x81\x9d\xe3\xc3\xeb\x81\x4b\x1b\x09\x20\xe2\xcb\xe0\x42\x30\xc4\x4b\xb4\xe5\x1b\x0f\xfb\xa0\xd7\xfa\xc2\xd8\xa7\x5e\xe0\x71\xf5\x72\x83\x34\xde\x8c\xf1\x07\x69\xbc\x1b\x04\xfe\x0e\xc9\x65\xbc\x76\x41\xef\x1f\x60\xc5\xec\x0f\x99\x25\x4d\x35\x86\x15\x77\x7c\x86\x09\x50\x74\xc7\x20\x1e\x96\xcd\xe2\x05\x57\x6d\x9f\x12\xde\x49\x88\x20\xfb\x37\xd8\xe4\xda\xfe\x5e\xc3\xe1\x99\xf2\xef\xc4\x23\xe9\x5c\x98\xe0\xe2\xb1\xd2\x5f\xd1\x20\xed\x31\xe0\x74\x43\x3c\x38\x10\xc8\x03\x14\xf0\x00\x81\x7c\x42\xfb\x18\x00\x90\x37\x93\xe4\x04\x20\x0f\xfd\xc2\x00\x90\x4f\x37\x51\x00\xc8\xc3\x98\xc5\xd7\xf3\x5d\x77\xd4\xcd\x74\xb6\x7a\xc0\x4d\xec\xc5\x90\x96\xc0\x57\x13\x8c\x1f\x3f\xc4\xf1\xae\x23\x31\x5f\x8f\x77\x02\xc8\x82\x27\xbe\xf4\xde\xbd\x6a\x02\xdd\x55\x02\xfa\xa4\x16\x87\x57\x4d\x00\x5e\xe3\x00\x69\xbc\x41\x9c\x1e\x20\x8d\x7f\x7f\xf8\xfa\x43\x52\x09\x0f\xe1\xb7\xd0\x1b\xfc\x92\xc5\xac\xaf\xfa\xd5\xfe\x87\x00\x78\x17\x07\x5f\x94\x99\x77\x61\x21\x66\xbb\x04\x8e\xbc\x44\x77\x2d\x41\x7e\xa4\xcd\x1e\xc8\xf1\x56\xff\x16\x70\xef\xb7\xa3\x2f\xe3\x97\xdf\xd3\x20\x21\x57\xda\x89\xf5\xcc\xf9\x74\xda\x9f\xae\x28\xfc\xe9\xc6\x80\x02\x4e\x5e\x42\x8f\xf2\xab\xdd\xd0\xf5\xce\xd6\x6a\x1a\x02\x88\xe4\x65\x4f\xb4\x0b\xec\x75\xe7\xd9\xb7\xb5\x76\xf7\xf4\x97\x48\xa7\x10\xa5\xed\x25\x3a\x5f\x7b\x1b\x10\xe6\xdf\xf2\xf2\x87\xf4\x4e\x74\x34\x0e\x0e\xcf\x01\xef\x4d\xca\xaa\x5d\xa5\x69\x50\x8c\xc0\xf7\x26\xbe\xb7\xf8\x82\x03\x60\xfd\x6e\x0c\xaa\x4e\x2f\x8f\x82\xca\x1a\x8f\x82\xba\xd4\x5f\x88\x2d\x96\x2d\xfd\x61\xd8\x74\x16\x41\x8f\xb4\xe5\xcb\xa6\x3e\xe2\x43\xa4\x54\xb9\x0f\x00\x6f\x1e\xcd\x99\xf6\xf8\xae\xf7\xb1\xd0\x73\x28\x78\xbf\xdd\xe9\xdf\xca\x7c\xac\x10\x1d\xf3\xb8\x28\xac\x1d\x1b\x4d\xfa\x07\xe7\x37\x76\xc2\xf7\x55\x09\xb2\x42\xdf\x06\x14\xc6\xf3\xbf\x40\xb3\x75\xf6\xce\xd7\x93\x59\xdf\x7f\x98\xa2\xe3\xdb\xf6\x4b\xfd\x7f\xff\x3f\x0f\x36\x0e\x0c\x43\x79\x10\xe0\x49\x2c\x66\x1e\xc0\xb4\x05\x76\xab\x3c\x0e\xa2\x05\x3e\xc1\x96\x07\xd9\x51\xa0\x52\x24\x30\xe9\x1d\x5b\x55\x1e\xb2\xf2\x56\x3f\x04\x44\x40\xf5\xf9\x5b\xa8\x05\xae\xc5\x9d\xe4\x79\x88\x8a\x88\x9f\x4b\x80\xd1\xbf\xc2\x16\x3f\xcc\xfd\x1b\x5c\x33\x20\xe0\xe9\xe5\x51\xcc\xfd\xa3\x04\xa2\xfe\x89\x3a\xc8\x03\x67\x0a\x7a\x47\x1e\x84\x3b\xad\xfd\x32\xbb\xcb\xf4\xdd\xc5\xc1\x94\x4b\xb3\x36\xf2\xbb\xc6\xdb\x8e\xad\x20\x8f\x6a\x25\xfc\x3e\x49\xc4\xa8\x11\x09\x2e\x7a\x10\x8a\x94\xc7\xb7\x71\x68\x45\xcc\xa3\x9e\xe0\x43\xf8\xbc\x19\x95\xfb\x4b\x88\xf5\xfd\xc7\x4f\x0f\x98\x5f\x32\x3d\x90\x2f\xe1\x55\x2f\xf6\x57\xb3\xb3\x2b\x9d\xda\x36\xcc\x03\xd7\x4a\x07\xcb\x23\x43\x98\x44\xbb\x3c\x1a\x88\x3a\x9d\xe2\xbe\x0d\x69\x70\xac\xcb\x83\xcc\xe1\x5d\x0d\xac\x84\x58\x11\xf2\xf0\xdc\x38\x1c\x12\xbc\xed\x48\xdd\x04\xab\xfd\xfb\xc3\xaf\x32\xf5\x92\x87\xbe\x4d\xab\x02\xdc\x91\x80\xb8\x07\x92\x2c\x0f\x6c\x81\x68\x20\x79\x74\xe2\x9e\xc3\x67\x08\xac\xf7\x3b\xdf\xbe\xd6\x77\x61\x64\x0b\x93\xef\x98\xc7\xa0\x57\x1b\xa3\xe6\x41\x13\xfd\x3b\x0f\xa0\x36\xc8\x5a\x49\x80\xde\xbf\x3f\x7c\x63\x72\x50\xe4\xab\xf8\xd1\x03\xda\xd1\x04\x02\xbe\x1d\xed\x2f\x11\x97\x87\x9b\x1b\x18\x6c\x79\x48\xec\x57\xe8\x4e\xce\xa6\x38\xfe\xf3\x00\xc7\xb8\x34\x9e\x21\xa0\x8b\x94\x8b\x04\xef\x3d\xab\xd3\x89\xfd\x29\xad\x2f\xee\x73\x82\x1a\xf2\x08\xc9\x5f\x7c\x06\x90\x24\xa7\x4a\x6c\xc9\x4e\x01\x31\x18\x79\xda\x81\x5d\xb2\x39\x76\xb0\xc2\xa7\x4d\x72\xdf\x1a\x96\x0c\x7f\x1f\x46\xc2\x04\x20\x3e\x21\xeb\x4c\xf0\xe1\x93\x73\x67\x82\x0f\x3f\x67\x32\x85\xc4\x87\xb7\x16\xc4\x7f\xed\x0e\x24\xfe\xab\x38\x39\xd8\xe7\x86\xad\xfc\xf6\xb9\xb6\x17\x56\x8a\xee\xec\xfd\x5d\x09\x0a\x80\xef\xaf\xda\x02\x40\x95\x62\xd7\x22\x75\x91\x59\x32\x78\xd5\xbe\x40\xa2\x02\x51\x42\x09\x88\x7c\xc3\x6e\x93\x87\x47\xd6\x11\x3e\xc4\xa1\x47\x69\x22\x88\x07\x3c\x25\x79\x2c\x51\x60\x69\xff\x52\x90\xfb\xd0\xcd\x57\xbd\xaf\x9a\xe4\x7d\xe7\xae\xf2\x84\x43\xee\x70\x52\xb3\x31\x56\xe7\x9f\xfe\x7c\xd7\x19\x6c\x52\x58\x8a\xf3\xd0\x61\x36\x5c\x1e\x66\x33\xec\x6b\x13\x8a\xa8\x11\x8e\x7e\xb4\xde\x3c\x74\x9e\xed\x8f\x5e\x14\xe6\x7d\x97\x96\x5d\xcf\xd1\x76\xaf\x3f\x78\x3c\x14\x70\x60\xda\x23\xeb\x53\x4c\xfb\x18\x0e\x1b\x98\xf6\x43\xd9\x05\x41\x60\xb3\x76\xd7\xae\x9d\x7f\x7c\x22\x77\x8b\x10\xb0\xef\x48\x21\x4b\x71\xec\xa7\x33\xfb\x52\x00\x2d\xdf\xb6\xc3\x28\xfa\xb2\x46\x96\x66\xb0\x38\x35\x85\x87\x77\x28\xa4\x08\x28\xee\x4e\x3c\x76\xd9\xa5\x8c\x92\xd7\xde\x26\x13\x4f\x1c\xca\xfd\xdb\x0a\xd1\xfc\xdb\xe5\xaa\xbc\x92\x94\xca\xe6\x10\x43\x0c\x0e\x41\x1e\xe4\x48\x0f\x85\xc6\x4d\xc6\x4b\x50\x30\x1c\x84\xcb\x59\xce\x71\x73\x28\x28\x74\xd8\x4d\x27\x18\x19\x12\x43\xe9\xf3\x43\xe6\xee\x97\x19\x04\x47\xf6\x3b\x6f\xb6\x66\x77\xfd\x2c\x8c\x0a\x7d\xe7\xcd\x72\x58\x30\x81\x06\xcb\x09\x0c\x1d\x61\x58\x51\x36\xe8\xe2\xcc\x21\x2b\x2f\xe6\xfe\x41\x01\xae\x72\x52\x2d\x0e\xe7\xe6\x63\x01\xbe\xfc\xf8\x82\x7f\x10\xb5\xe8\xe0\x00\xbc\x5a\xec\x6b\xb2\x9c\x71\xda\xe6\x41\x6e\xc6\x16\x7b\x5a\x5e\x6d\x3e\xa9\x19\x78\x02\xf2\xd0\xf0\x3a\xff\xcc\x60\xc8\xe3\x15\x99\xde\x2f\x84\x6f\x51\xdf\xef\x64\xd9\x0f\xc5\xb7\x27\xcb\xa9\x18\xfb\xb4\x82\xe5\x50\xa3\x13\xc4\x74\x6e\xc0\x5b\xb8\x85\x06\x71\xcd\x80\xec\x66\x39\x5c\x33\x8d\xeb\x4f\x80\x10\x90\x9f\x05\x34\xed\xb6\x9f\x21\x4b\x9a\xde\x04\xb1\xbf\xc2\xc2\x92\xe5\xc0\x75\x4a\xed\x40\xef\x6f\xf8\xff\xb3\xc8\xa1\x1f\x5e\xdb\x1f\x7c\xbf\xc8\xcd\x7a\x70\x8d\x47\x3e\xbc\x6f\x7f\x54\x3f\x44\x68\xd5\xa7\xa6\xa6\xa8\xfe\xe1\xae\x23\xaa\x3f\xe6\x81\x14\xd5\x3f\xc0\xb1\x4d\x60\xfd\x2b\x20\x3d\x59\xbe\xe3\xe4\xe2\x6c\x90\x85\x18\x68\x8e\x22\x59\xaa\xcd\xa7\x04\x39\x04\xe9\x3b\x20\xfe\x4b\x4c\xff\x80\x7a\x0a\x75\x39\x8b\xf4\xf5\x48\x71\xf0\xfe\xe7\xe8\x7c\xd4\xe3\x21\x99\x1d\x59\x1a\xa8\xb9\x83\x12\x70\xe6\xc1\x5d\x9c\x85\x9c\x12\x90\x8f\xb2\x74\x2c\x19\x83\x8f\x76\x5f\x9e\x14\x0d\x90\x15\xa9\x61\x09\x73\xc0\xf7\x87\x4f\x11\x1c\x3c\x7c\x9b\xd8\xf4\x7d\x4d\x1b\x2c\xd9\xe3\xa4\xba\x06\xcc\x01\xa9\xce\x56\x3c\x4e\xaa\x9d\x14\x8e\x93\xc4\x9e\x64\x21\xf7\x8e\x40\x9f\x84\x5e\xe0\x7b\x88\x56\x93\x9e\x42\x44\x74\x96\x01\x14\xa2\xfd\x4d\x4e\x5e\xd8\xdf\x83\x63\x13\x82\xbf\x90\x7a\x02\x9f\x4f\x16\x22\xa8\x15\x08\xc5\x6c\x13\x67\xc3\x74\x0f\xa4\x6d\x24\x9b\xb8\xed\x41\x2e\xf0\xad\x08\x3e\x3a\x59\xf8\x4e\x37\x76\xe5\x98\xce\x37\x10\xb2\xd2\x2e\xd3\x4c\x8c\xb9\x36\xe1\x1d\x98\x6e\xb9\xc5\x2c\xbe\xf4\x21\x1b\xed\xec\x0b\x56\x26\xf2\xa1\x70\xd0\xdc\x03\xc4\x79\x12\x5a\xd9\x84\x8f\x20\x88\x12\x4d\xf9\x08\xf0\xbc\x27\x74\x04\x8d\xb8\xaa\x2c\xc4\x89\x40\x63\x96\x85\x00\xb7\x3d\xdd\xa0\x5a\x24\xba\x25\xcb\xb7\x2d\x17\x50\x70\xb2\x64\xb1\x12\x74\x40\x32\x7d\x1c\x05\xa0\x39\x86\x43\xe5\xd1\x92\x43\x7a\x42\x6c\x50\x8a\xf3\x2a\x25\xb6\xe4\x7a\x39\x29\x9d\xd1\xe4\x79\x0f\x87\x8a\x84\xc0\xe2\xbc\x72\x6b\xdd\xf5\x00\x80\x83\xfc\x87\x2c\xf2\xed\x1e\xbe\x7c\x93\x4d\x46\x69\x06\x63\xdb\xdd\x27\xce\x5c\x94\xa3\x82\x39\xd8\x8d\xbf\x9c\xcc\x74\xe4\x6f\x21\xe6\x3a\x08\x64\x4f\xd8\x0e\x2a\x48\x48\x59\x38\x23\x36\xab\xfd\xed\x9a\x13\x26\x90\x84\xe1\xa0\xe1\xa5\xca\x72\x81\xf6\xbc\xe2\x2f\x09\x57\xe0\x67\x19\xc1\x30\xea\x23\x0c\xe5\x80\x3e\x42\x87\x0b\x1f\x61\x77\x88\xf4\x11\xa2\xf6\x97\x6f\x63\x6b\x64\x75\x26\x14\x09\x93\x40\x98\x94\x22\x61\x0b\xa9\x5b\x5e\x74\xaf\x51\xab\x6d\xc5\x2d\x59\x07\xdf\xbf\x6d\x85\xd7\x48\x4d\xe2\xd4\xb3\xdc\x2c\x39\x25\xd9\x4d\xdc\x02\x87\x0c\xe8\x15\xbe\x87\x7c\x83\xd4\x3c\xb4\x85\x82\x23\xb1\xd8\x81\xdb\x90\xea\xa8\x00\xe6\xd8\x95\x2d\xf2\x28\xa0\xb4\xc1\xa3\x90\xcb\x4e\x03\x80\xb1\x2a\x73\x48\x19\xc7\x1c\x93\xe5\xc1\xd7\xda\x7c\xc6\x8f\xda\x1e\xac\x9e\xd3\xa5\xf8\x58\x6f\x3b\xec\x21\xd4\xa8\xf9\xc7\x0f\x23\x24\x8d\x7e\x05\x2c\xf6\x9a\xbc\x7a\x8e\x83\xb0\x2d\x54\xcf\x18\xb2\x2d\x44\x28\x8b\x8c\x9b\xb3\x9d\x06\x93\x00\x63\x90\x75\x1f\x2c\x1b\xd7\xcd\x3f\x26\x3f\x08\x7a\x6c\x5e\x03\xa5\xc6\x3c\x86\x9e\xa1\xe3\xf3\xcb\x7a\x04\xd0\xd3\xbe\x9c\xb8\xcb\xfd\xa8\xb0\x5f\x8b\x6b\xfc\xbc\x34\xa1\x1e\xb6\x8d\x45\x00\x9f\x43\x54\x0b\xf3\x64\x09\x0a\x42\x56\xf2\xc9\x21\xcb\xcb\xea\xc9\x12\x53\x6d\xd6\x02\x87\xe5\xfe\xe3\x02\x81\xd9\xb7\x85\x28\xf0\xab\xb6\x1a\xc9\x54\x0b\x38\x0b\xcd\x97\x51\xa4\x2c\x01\x7b\xa3\x6c\x9d\x09\x4d\x44\x60\xdd\x4c\x69\x22\x02\x64\xbd\xac\xd2\xc4\xb3\x00\xa1\x89\x08\xd7\x0a\x2c\x11\x05\x6c\xd9\xac\xc0\x47\x91\x5f\x9d\xb5\x3a\x99\xd2\x87\x30\x8f\xd8\xaf\x4d\xb2\x5f\xaf\x0b\x61\x4d\x54\xc3\xf3\x24\xf6\xb9\xac\xa2\x89\x87\x0f\xb9\x77\x7a\x1d\xc0\x2e\xfb\x82\x55\xf5\x79\x02\xbd\x58\x63\x55\x3f\xa4\x27\x42\xe8\x24\x82\x6c\xee\x94\x35\x02\x58\xba\xac\x9d\x01\x65\xdb\x91\x35\x02\xc8\xe2\x94\x35\x22\x9c\xc6\xb5\x63\xed\x18\xfe\xe1\x57\x1d\xf6\xce\x57\xed\xfb\x4e\xdb\x90\xeb\x50\x45\x34\x75\x4f\xa8\x22\x02\xdf\x78\x42\x15\xa1\x1b\x2d\xe1\x7d\x88\xe6\x58\x11\x2f\xe8\x52\xaf\x53\xeb\x00\x2b\x0e\xae\x87\xef\x5c\xc3\x75\xf8\x07\xe3\x03\xfc\x38\x10\xe5\x59\x71\x3c\x2a\xca\xe0\x7a\x88\xb6\x5f\x20\x7a\xc7\xc9\x07\xe1\xd7\x9e\x7c\x61\x3c\x26\xcf\xcb\x01\x61\x47\x06\xd0\x0f\xa8\x0e\x95\xfd\xe4\x38\xfe\x3c\xa2\x56\x0e\x81\x84\x13\x67\xf5\x10\xe8\x79\x05\x16\x89\x81\x63\x2d\x61\x91\xe8\xc5\x5a\x05\x40\x15\xcb\x12\x01\x79\xa0\xd9\xdf\xc6\x33\x20\xb7\xcc\xfa\xed\x2f\xb5\xda\x50\x80\xa3\x62\x4f\xd7\xef\x40\x38\x60\xba\xcc\xfa\x6d\x3c\x9d\xbc\xed\xac\x6e\x3c\x84\x54\x25\xb4\x13\x83\x78\xb9\x84\x76\xa2\x37\xbb\x86\x50\x6c\x03\x33\x12\xda\x89\xb6\x67\x62\xc2\xd8\x62\x13\xd2\x6a\xf0\x82\x3b\x55\xba\x4a\x61\x83\x3f\x9c\x0f\x22\x92\x38\xbc\xdf\xe9\x70\x1c\x4e\x07\xd8\x82\xf1\xb2\x65\x5d\x34\x9f\x4d\xb8\x7e\x1b\x55\x23\xd6\x25\xeb\x22\x21\x11\x69\x5f\x3d\x03\xa6\xab\x0c\xe6\x60\x2d\x41\x55\xe3\x68\xba\xb2\xbe\x43\xe0\xd0\xa6\x54\xbf\xb3\xde\xd0\xb4\x53\x37\x94\x23\x1d\x73\xe2\x27\x74\xc5\xb9\xb5\x01\x79\x91\xf5\xdb\xda\xc6\xb1\x28\xe1\xdb\xda\x06\xf8\x53\x59\xbf\xad\x6d\x68\x8f\xaa\x10\xc0\x17\xe7\x00\x07\x42\x35\x46\x08\x31\x3c\xae\xc0\x87\x21\xcb\x5b\x42\x87\xd1\x96\x13\x1a\x3a\x8c\x3d\x65\x2e\x19\x77\xa9\x8f\x8e\x4e\x80\x7b\xb3\x0a\x82\x85\xf2\x28\x67\x06\xce\xbe\xac\xf0\x0f\x17\x45\xc9\x65\xd7\xf9\xf2\x22\x8f\x94\xfa\x70\x4c\x8c\x74\xed\x11\x72\xb3\x6c\x8c\xdb\xa9\x5b\x68\xc5\x1e\xbb\x67\xf4\x65\x55\xb9\xbe\xed\x3a\xaf\x2d\x99\xd2\x88\x24\x0f\x9f\xbf\x2d\x99\x8f\x1a\xb5\x99\x16\x7d\xd3\x45\x6c\x2d\x30\x6e\x94\xa2\x68\x84\x71\x43\xbb\x1b\x8c\x1b\xcd\xb3\xa1\x84\x1b\x81\xc7\x3c\x61\xdc\xe8\x5b\x28\x41\xb8\xa1\x05\xaa\xfe\xda\x77\xcd\x96\x53\x31\xd2\x6a\x4b\xa8\xbf\xf1\xdd\xef\x7e\x68\xfa\x21\xaa\xf7\x9d\x2c\x6b\x38\x39\x7f\x54\x75\x97\x06\x86\x53\xfa\xcc\x4d\x01\x7e\xe8\xe7\xcb\x54\xdb\x13\xe4\x2e\xf9\x85\xea\x83\x87\x60\xb3\xdc\xd2\x00\x36\x4b\x10\xba\xb2\x1a\xd4\x93\x6e\x3f\x0f\x55\x55\xa2\x3f\xce\x3b\x3a\x09\x4f\x66\xb5\x2f\x60\x21\x56\x75\xae\x24\xfa\x1f\x0e\xed\x63\x12\x88\xef\xbe\xf8\x0c\xa9\xa9\x31\x3d\x9e\x8c\xa4\xf4\xd8\x13\xf8\xb5\x00\x46\x07\xea\x0e\x9c\x12\x09\x75\xc7\xf7\x82\x7f\x2c\xec\x66\x94\xa0\x81\xd8\x73\x5e\x7d\x99\xc1\x68\x35\x92\x77\x04\x28\xc9\x09\x79\x47\xd7\x1e\x02\x79\x47\x25\x56\x21\xe1\xee\x28\xf3\x4f\x0e\xfb\x6c\x87\xf0\xe9\xbe\x84\x3f\xb2\xf9\xe1\x49\x89\x93\x6b\xeb\xeb\x35\x43\xc4\xc2\x6d\x70\x1a\x83\xcd\x9a\x0d\x2e\x7c\x2d\x89\xed\x70\x88\xd8\x98\x64\x0b\x21\x02\x29\xdb\x81\x08\x60\xa1\xb4\xb2\x9b\x91\xfc\x60\x8c\x2c\xd9\x28\x51\xa2\x79\x52\xba\x10\xd0\xdd\xb3\x41\xb8\x49\xd2\x5a\x42\x1d\x22\xf5\x5e\x42\x1d\x22\x0d\x61\xb6\x2a\x0a\x08\x55\x22\xe1\xca\xad\x6f\xd3\x7f\xd0\xfd\xd0\x7f\x14\x4f\x9c\xd0\x7f\x0c\x97\x62\x73\x27\x07\xc0\x38\x1b\xa8\xcc\x85\x65\xd9\x3c\x66\x42\x82\x90\xf2\x82\x68\xdc\x6d\x6e\xe5\x2a\x0b\xad\x31\x9d\xa6\x6f\x30\xda\xdd\xfb\x03\x83\x3e\xd5\x76\x8b\x5f\xbe\x1c\xbe\xec\x0f\x40\x25\x1d\x86\xa6\x61\xcf\x0f\xd1\x66\x96\x5c\x33\xb0\xd4\xf3\x4d\x6b\x36\x9a\x2a\x75\x66\xfb\xf0\x9a\x5a\xb0\x03\x37\x32\x6d\xab\x9d\xd7\xed\x48\x7a\xd8\xbd\x1f\x66\xb8\x6c\xdd\x88\x6b\xaf\x6d\xf4\x37\x31\x21\x0f\xa9\xff\xae\x6d\x33\x35\xfa\x4e\x9f\xd5\xd3\x71\xd3\x4c\x0c\x9b\x6c\x36\xcd\xc4\xce\x92\x61\xa0\x89\x0f\x31\x1b\x80\xf6\xcd\x06\x09\x68\x71\x4c\x86\xa5\xf1\xc2\xb4\x09\xbc\x40\xbe\x14\x89\x5e\xd9\xa6\x3d\xec\xbc\x9a\xd0\xa5\x39\x26\x30\xe3\x81\xa7\x96\x6d\x22\x5b\xa6\xd7\xcc\x5b\xb4\xae\x06\x31\x5e\x75\x41\x4c\xe6\x2d\x52\x03\x3a\x93\x01\x93\x7e\xc2\x66\x32\x20\xd6\x48\xd8\x4c\x7a\x2d\x56\x88\xfe\xc5\x70\x0a\x2f\x49\xd7\xa8\x01\xb3\x48\xd1\x0a\x02\xb3\xc8\x20\xf5\x3c\x21\x10\x19\xc0\x4a\x25\x04\x22\x03\xc0\xb5\x84\x40\x64\x14\x17\x6b\x52\x4f\xb4\xc0\x86\x89\xf7\xb0\x7b\xa1\x09\xd5\x30\x0d\x1b\x48\x92\x59\x91\x10\x80\x34\x62\xa6\xb2\x2d\x64\x2c\xf2\xb6\x2d\xc6\x18\x91\x01\x19\x48\x2a\x1a\x9b\x86\xdc\xe5\x80\xbb\x57\xbb\x06\x17\x95\x73\x76\x2d\x2a\x87\x58\x69\xda\x6b\x97\xd3\x6b\x31\x34\x4e\x04\xe0\x67\x42\x4b\x54\x3b\x19\x1b\xf6\xc9\x86\xc1\x36\x96\xfd\x7b\x92\x75\xed\xdb\xa7\xc2\xd1\x6b\x8b\xa6\x08\xf7\xe4\xf4\x79\xfa\x9a\xfd\x40\xee\x91\x74\x90\xdd\x64\xd9\xad\xe0\x18\xa9\x5a\x3b\xa5\x18\xd1\x66\xd4\x80\x5a\x8e\xb5\x1f\x62\x90\xf3\xaf\xd4\xac\x84\x8c\xa4\x1e\xce\x7a\x77\x60\xf4\xf4\x26\x69\x15\x8a\x0f\x24\x25\x83\x6c\xc0\x94\xa4\x24\x96\x43\x8a\x43\xb4\x28\x87\x88\x35\xf2\x58\x09\x7b\xc9\x20\xce\x27\x9b\x1b\xf0\xf2\xfe\xe0\x3e\xef\x9a\x60\xb1\xec\x66\x60\x2b\x73\xbf\x20\x18\x36\x6d\xf2\xb0\xba\xd2\xb7\x61\x5f\x55\xb0\xc2\x73\x45\x9e\x41\xb6\x6f\x13\x95\x1a\x33\x9b\xe9\x14\xba\xca\xda\xb7\x8b\x0e\x52\x6a\xb2\xfd\x1c\x79\x1b\xe1\x2e\x8a\x12\xd9\x20\x1b\x20\x01\x3a\xdb\x8f\xa9\xa8\xf0\xf9\x29\xeb\x50\x35\x20\x3c\x19\x55\xf1\x86\xa3\x74\xcb\x71\x76\xce\x5a\xbc\xcf\xdc\xf5\x79\x58\xf7\x0f\x65\xcc\x77\x88\x1d\xba\x2b\x1b\xc1\xad\x87\x1d\xf0\xda\x49\x54\x9b\x44\x30\x32\xf2\xb3\x99\x08\xa6\x10\x7f\x21\x05\x40\x2f\xeb\xec\x6a\x09\xbe\x5b\xf6\xc3\x5e\x6d\x5c\x57\xff\x98\xfc\x68\xbc\xb1\xb8\xe6\x5c\x58\x7d\x7b\xf8\x50\xf0\xc3\x8e\xf1\x4b\x4e\xcb\xca\xb5\xc9\xe0\x3e\xc3\x8a\x60\x0f\xe8\x07\xe1\x50\xd3\xe7\x7f\xec\xc0\x5e\x3f\x28\x51\xd6\xc2\x2e\xe2\xf9\x62\x55\x2d\x99\x9d\x0b\x76\x90\xec\xc5\x8e\xa7\x00\x36\x25\x82\x55\xb2\x7f\xa7\xd3\x0a\xda\x47\xc2\xa1\x32\xdc\x0d\xe0\x50\x69\xe4\xc4\x25\x14\x2a\x8d\xf8\xdf\x84\x1c\x25\x75\x2f\x74\xb6\x9b\xca\xce\x08\xbd\xc9\x22\x18\x33\x3b\x0c\x53\xc4\x6a\x25\xf4\x26\x83\x64\x97\xec\xcd\xb2\xe8\xa1\x4e\x59\xd5\x6b\x42\x03\x2c\x77\x38\xae\xdc\x27\xbc\x54\x1b\x3c\x9c\x25\x7d\xf8\x2e\x9c\x25\xfb\x10\x05\x67\xc9\x20\xe7\x2c\xe1\x2c\x19\xd5\xc6\x0f\x4f\xf6\xde\xa7\x12\xec\x29\x1d\xb0\x47\x97\x5d\x9f\x8e\x9f\xdd\x2e\xda\xa3\x63\xc9\x99\x10\xc4\xeb\xec\xd3\xf1\x0b\xdf\x9e\xc4\x48\x53\x55\x44\x75\xb5\x7a\x58\x19\x53\x2b\x75\x27\xbb\x6c\x4d\x5f\xb8\xb1\x64\x7b\xcd\x9c\x72\x00\x01\xc1\x49\xc8\x6a\xb3\x13\x8c\x4a\xd0\x7e\x6e\xfa\x93\xc3\xde\x86\x5d\x0a\x54\xe9\xec\x61\x65\x11\xd7\x3d\x98\x6c\xa8\x37\x1d\x7f\x61\x92\xd5\x94\x1d\x42\x69\x78\x08\x13\xf6\x94\xa1\x8e\x07\x7b\x4a\xaa\xbe\x75\xf6\x06\xbd\x5c\x1d\x1b\x65\x1e\x6c\x0e\x3d\xec\x3f\x3e\x44\x1e\x03\xc4\x85\x09\x47\xca\x20\x02\x30\xe5\x48\xc9\xef\xd0\xf5\x87\x80\x83\x40\xa5\x2a\x9b\x3b\xe4\xf9\xc0\x46\x67\x37\x13\xd7\xe3\x19\xcc\x2a\xa3\x3a\x6f\xbe\xbd\x63\x1d\xce\xb9\xe5\x08\xf0\x02\xc7\x3c\xad\x57\x1d\x43\x65\xaa\x19\xf7\x85\xfb\xc0\x3a\x72\xce\xd3\x1d\xd0\x39\xb5\x11\x43\x9f\xfd\x3b\x31\x75\x80\x41\xb3\x8b\x8f\xcf\xae\xde\x39\x18\xa5\x5a\x6f\xe7\x64\xa4\x73\xb4\x1b\xde\x89\xec\xea\xb0\xe2\x13\x67\x9f\x30\xb1\x0c\x52\x93\xb2\x23\x8b\x53\xa5\xb7\x7f\xb2\x38\xc2\x76\x5e\x0c\xb1\xdd\x4f\x70\x4a\x7a\xde\xe8\x17\x8b\xd4\xea\x7d\x42\x7a\x79\x32\xe8\xb7\x6b\x88\x97\x09\x02\x3d\xec\xfe\x1b\x45\x0b\x65\x04\xae\x97\x51\x51\x71\xfa\x6d\x50\x3b\xb5\xc0\x51\x96\x1e\x5c\xfa\xed\xe4\xa2\xaa\x3f\x04\x1c\xde\xc7\xfe\x03\xe7\xc7\xf6\x93\x6e\x9b\x9a\x71\x60\x87\x19\x90\x7b\x67\xe7\xd4\xb3\xa7\x38\x51\x97\x5d\x91\xf3\xb3\x09\xa8\x35\xf0\xbe\x54\x8f\xb3\xd0\xbe\x0c\x22\x74\x13\x76\x97\xb1\xab\x4a\xd8\x65\xaa\xe3\x41\xef\x32\x54\x1c\x61\x77\x19\x64\xd1\x67\x7f\x84\xc0\xf3\x85\x9d\x96\xed\x0f\x7c\xd4\x2e\x41\x60\xc9\x14\xd8\x5d\x81\xed\x47\x5f\x66\x12\x9b\x70\x07\x71\x6c\x0b\xbb\xd7\xaa\x2a\x12\x5f\x7a\x9b\x8f\x42\xf5\x32\xd4\xcc\x86\xfe\x23\x24\xa2\xc4\x2d\xe9\xe6\x0a\x71\x4b\x25\x70\x30\x47\x91\xb1\x61\x71\x2d\x36\xa3\xf7\x4f\x1c\x99\x3e\xff\x7c\x25\xd3\x79\x70\xb5\x0c\x62\x65\x73\x60\xc7\x4b\x85\xf7\x20\x30\x04\xa2\xb3\x1c\x75\x97\xc6\x57\x49\x2e\xd0\xe8\x31\x2a\xac\x99\xc5\x6b\x14\x8f\xe5\x0b\x98\x10\xbb\xf7\xc1\xcd\x67\x21\x43\x98\xd2\xca\xbe\x66\x21\x33\x19\x20\x4c\x19\xe4\x62\x24\x7c\x29\x43\xe5\x1a\xbe\x14\x79\x9d\x73\x90\xf1\xc5\x3a\x1a\x84\x72\x90\x17\x9c\x03\xee\x3e\x70\x5a\x73\x90\x92\x9b\xca\xca\x81\xc2\x4e\xce\x50\x0e\x72\x00\x0e\x7b\x05\x6f\x93\x89\xbe\x09\x6d\x8a\x9c\xd0\x39\x3a\x6e\x6f\x64\xd7\xe8\x04\x32\x86\xf7\xe9\x2e\x9f\x57\xaa\xb3\xee\xc6\x60\xc5\xb3\x67\xc2\x9a\x52\xcc\x8b\xcc\x31\xdc\x4e\x06\xd7\x4c\x9d\xe1\x43\xbb\x64\x7f\x90\x28\x52\xbc\xa6\xf9\x48\xca\x81\x22\x4f\xf2\x4e\x0e\xe9\xab\x59\x22\x03\x09\x9f\xae\x91\x31\x59\xf2\xc8\x8e\x31\x6d\x02\xa5\x11\xd1\x91\xf3\x2f\x80\xa4\x84\x79\x25\x75\x9a\x0e\xb2\x0c\x74\xdd\xc1\xbc\x32\xaa\xa3\x1e\x96\x88\x00\x81\x79\xa5\x37\xab\x05\x09\x20\xe1\xcf\x39\x04\x79\x77\x9d\x40\xb0\x32\xc8\x1d\xca\xa1\x38\x66\x1f\x19\xe8\xf0\x64\x42\xe5\x08\x32\x70\xd1\x4d\x06\x70\xee\xca\xf5\x81\x0e\x5f\x9d\xa0\x9f\x0e\xff\x7d\x94\x97\x13\x01\x8a\xe2\x3e\x08\x47\x3c\x9c\xe9\x98\xee\x72\x77\x2d\xda\xbd\x6e\x77\xa8\x5a\x4a\xee\x59\xf3\xc9\xee\x45\x7e\x66\xc2\xdb\x22\xc3\x76\xca\xdb\x92\xbb\xcf\x41\x80\x4f\xa7\xdf\x27\xbb\x3f\x55\x84\xeb\x8b\x38\x6f\xda\x83\x7a\xaf\xf1\x02\x4e\x95\xb5\xeb\x8d\x61\x8d\xcc\x96\x84\x23\xa5\x24\x29\x42\x39\x4e\x2d\xb0\x74\xe5\xe9\xc8\xfb\x36\x5a\xfc\x9e\x5b\x38\x8d\x40\x72\xce\x71\xe2\x65\xb3\x7a\x98\xcd\xfe\x7d\x08\xba\x19\x9b\x83\x46\xaf\x36\x33\xb0\x82\x55\x97\xf7\xe5\x30\xb0\x0b\x0f\x05\xbf\x25\x93\x78\x06\xaf\x48\x0e\xc5\x35\x5b\xed\x26\x31\x61\xff\x87\xb8\x24\x3d\x3e\x8d\xdb\xc9\x4e\x93\xd1\x96\xf7\x82\x00\xd4\x51\xd7\xe0\x50\xf8\xb2\x97\xc3\x67\x52\x04\x53\x4e\x08\x4d\xea\x72\x99\x61\x5a\x22\x56\x31\x07\xf9\x62\x5b\x40\x3d\x6a\x97\x3c\xff\xc9\xd8\xd4\x7a\x2d\xab\xc8\x44\x57\x86\x54\x64\x1d\xae\xf5\xd7\x64\x5b\x9e\x27\x42\x20\xf5\xbb\x8c\x57\xd9\x43\xad\x5f\x41\x17\x7d\xc8\x97\xf9\x10\xce\x1c\x22\x18\x73\x28\x56\x51\xfe\x20\x02\x59\x24\xa9\x27\x3c\x20\xc3\x9e\x9b\x9f\x86\xbb\xe7\xdd\xc4\x1b\x63\x64\x06\x9c\x20\xa9\xdb\x7f\x2a\x86\x11\x07\xf0\x7d\x0c\xb2\xba\x12\x2a\x8f\x05\xdd\x43\xce\x2d\x61\xbf\xc6\xc3\xcc\xb1\xd4\xbf\x21\xda\x18\x24\x69\xa5\x44\x1b\x09\x00\x70\x42\xb4\x31\x08\xc6\x4d\x38\x34\xd2\xf3\x14\x9c\x18\x9d\x54\xa2\x9c\xb8\x28\x52\xcb\xdd\x6c\xb6\xd2\x3f\x2e\xff\xf0\x07\xfd\xbe\x7c\x88\x40\x2e\x9b\x66\x44\x1a\x2b\x64\x76\x30\xf6\x58\x52\xb3\x13\x4f\x4f\x5f\x4f\x4c\x13\xab\x7a\xcd\xd9\x02\xf1\x29\xdf\x85\x26\x0b\xf8\x2e\x22\xf7\x33\xa4\x17\x54\x9f\xa1\x12\xb0\x95\x25\x14\x17\xa9\x4c\x92\xe2\x22\x61\x22\x4b\x28\x2e\xfa\x6e\xe7\xe0\x54\x83\x26\x0f\xc5\xc5\x34\x14\x12\xc6\x8a\xd4\x42\x00\x17\x45\xd9\x1d\x3c\x09\x61\xfc\x93\xbf\x3e\xe7\xb4\x44\xb6\xa5\x89\x5f\xc3\x3d\x1d\xa6\x8a\x66\x40\xd2\x44\x77\x5c\x0e\xd7\x27\xab\x42\x3b\x0f\x4c\x15\xa1\xc1\x44\xa6\x0a\x8d\x64\x30\x55\x34\x7d\x84\x50\x55\x34\x2d\x88\x33\x5e\x9e\xe1\x9b\x70\x5b\x93\x5e\x96\x33\x01\x0e\x73\xb0\x70\x4b\x00\x3f\x91\x33\xd9\x88\x51\x44\xa6\xa4\x52\xd3\x67\x70\x83\xa1\x3f\xcd\x64\xac\xd0\x00\x60\xa1\x88\xdd\x1b\x84\x4d\x27\xf4\x0a\x39\xc9\x94\x22\x61\x38\xe7\x82\x84\x6b\x5f\xfb\x32\xd7\xa7\x2f\x53\x39\xe1\x11\x6c\x3c\x81\xce\x1a\x6d\x26\x10\x2f\x5a\xea\xe6\x49\x44\x20\x46\x9b\x09\xc4\x8b\xc6\x9c\x79\x3a\xb8\xce\x1e\x30\x5e\xb4\x04\xcd\x93\xd6\x23\xf1\x27\xc4\x4e\xbb\x42\xe4\xcd\xaa\x3e\x6f\xf6\x0a\xc4\xcb\xbc\x88\x3a\x62\x27\x98\x17\x31\x95\xce\xb0\x8b\xc2\x9c\x91\xc4\x65\x4d\xe7\x05\xf0\x2e\x6a\x21\x90\x57\x94\xec\x76\x05\xb9\x45\xea\x3f\xb0\x57\x34\xbd\x6c\x90\x57\x7c\x0f\xd1\x84\x9b\xe6\x84\x2f\x9c\xee\x9f\x5c\x83\x49\x65\x5f\x13\x15\xad\xe6\x05\x7b\x45\x68\xc2\x81\xbd\x22\xb4\x3b\xc1\x5e\x61\x56\x74\x4a\x52\xa1\x06\x00\xff\x44\x68\xc8\x98\x3f\x92\xa9\xfc\x26\xdc\x4c\xd9\xed\x96\xdf\x05\xc3\x87\x1f\xa2\x30\xd7\xff\x8f\xc2\x6c\x81\x09\x3f\x56\x82\x08\x69\x8d\x5c\xf3\x61\x2c\x91\xb4\x32\x4b\x84\x8b\x0d\xcb\x78\x76\x4b\x26\xe6\xaa\xdb\x4a\xa2\xa2\xb7\xec\x78\xed\x77\x5a\xf3\x5a\x53\xef\x63\xa3\x71\xb6\x1b\x17\x65\x25\xe4\x8c\xb0\xd2\xef\x2e\xe0\xfb\x28\x9c\x11\x0d\x44\x81\x84\x32\xe2\xfb\x63\xf1\x43\x14\xc4\xc1\x35\x25\x63\x5a\x08\x80\x10\x0c\xf9\x88\x83\xa9\xb6\x7c\xd9\x5a\x4c\xae\x69\xe6\xfe\x0e\xa3\xbf\x7c\x9e\x26\x5b\xf0\xa7\xe5\x76\x3d\x7e\x51\x6c\x19\xcf\x90\x71\x93\xe3\xf0\x21\x02\x72\x10\x2f\x81\x89\x3b\x95\x23\xf1\xa9\xbf\x2d\xf7\x1f\x9c\x8b\xaa\x5f\x42\x8e\x1a\x05\x0a\x41\x45\x68\xd3\x08\xa0\xca\xd2\x68\xca\x28\x18\x2f\xe8\xfa\xc0\x0b\x9e\xc6\x62\x86\x20\x66\x4c\x4f\xa8\x2b\x2a\xe9\x11\x09\x73\x45\x68\xbd\x0a\x20\x24\x35\xc0\x44\xb5\xb2\x6c\x00\x21\xa0\x19\x12\x02\xe6\x8a\xa8\x56\x43\xe4\xb1\xe3\x4f\xd9\x16\xc2\x92\xd9\xc0\x06\x52\x9a\xbd\xd0\x80\x06\xb3\xea\xb8\xac\x35\x60\x85\xb0\x62\x76\x02\x1c\x49\x9a\x94\xa0\x9c\xe8\x1e\xa0\xa2\x83\xce\x85\x78\x0a\xac\xd6\xff\x9e\x01\x30\xcc\x4e\xeb\x76\x01\x1b\x4e\x74\xe8\xbc\x6d\xf6\xa0\xa9\xac\xab\x50\x0b\xd6\xb0\x18\x66\xc7\x3a\xf0\xc3\x71\x61\x97\x89\x21\x48\x8f\x6f\xb0\x5c\x0d\xf7\x0a\x1c\xde\x1e\xed\x43\x9c\x2f\x76\x74\xa8\x2c\x02\xe4\xbd\x84\xca\xc2\x7c\xf9\x84\xc9\x22\xd4\xb9\x61\xb2\xc8\xb9\xef\xd3\x66\x76\xe8\x20\x06\x2a\x0d\x39\x8a\xf0\xa3\xd4\x02\xc3\x03\x89\x05\x19\xb1\x31\xde\xfd\x01\x07\x9c\x63\x87\x51\x3a\x8d\x74\x09\xf8\xae\x8d\xce\x0c\x61\xbe\x30\x8b\x45\xd8\x4d\x8c\x6f\x3a\x09\x68\x5b\x52\x6d\x84\x35\x94\x16\x0b\xd4\xca\x84\xd2\x22\xb4\xa4\x04\xb0\x93\x5a\xa1\x82\xdd\x40\xb3\x08\x54\x17\x25\x8d\xd3\x85\xeb\xa2\x01\x94\x91\xb1\xec\x0b\x9a\xb0\x18\x73\x4e\x04\xff\x38\x2d\xa8\x35\x30\x92\x69\x25\x30\x25\x1b\x6c\x03\x5b\x45\x68\x52\x81\x94\x22\x3c\xd2\xc2\x49\x11\x7b\x2e\x00\x04\xe9\x91\x3e\xc8\x52\xcd\xe9\xe2\x40\xd2\xab\x30\x42\x50\x11\xda\x03\x24\xa8\xc8\xe9\x8c\x44\xbc\x7b\xd8\x8f\x8b\xbc\x1e\x9b\x7c\x41\xe7\xe5\xc2\xc7\xff\xba\xcf\x1e\xb0\x55\x08\x18\x90\x71\x33\x3a\x4e\x9e\x9b\x1c\x6c\xa7\x82\x72\x5f\x83\x64\xdc\xe4\xa4\xa1\x01\x86\xe6\xdf\xe9\x40\xdf\xf0\x22\x39\xdd\xf0\xc6\x9a\xde\x92\x41\xa2\x8c\x06\x98\xc0\x00\xa1\x19\x24\x64\x2d\x52\xe8\x20\xe0\x3d\xe9\xc4\x8f\x21\xc4\x3a\x12\x3f\x1b\x4a\x07\xfc\x78\xd7\x99\x0a\xb6\x81\xc7\x72\x78\x2f\x96\x31\xe8\xf2\x5e\xc8\x39\x9d\xf0\x5e\x88\xb0\x90\xb0\x58\x84\x66\x06\x48\x2c\x8a\xe8\x14\x09\x8b\xc5\x0e\x35\x91\xc5\x22\xa7\xbd\x41\x72\xcc\x1e\x74\xcc\x09\xda\x39\xe3\x05\xfe\xc2\x99\xf7\x2a\x67\x69\x1a\x2e\xce\x3d\x9f\x71\x71\xa6\xd1\x95\xf1\xe9\xc0\x19\x76\xd2\xeb\x47\x29\x40\x11\x6f\x98\x54\x7e\xd2\xbb\x93\xaa\x9b\x79\xd8\x08\xd4\x8f\x24\xf8\x15\xf8\xc1\xcc\x2d\xd6\x27\xd7\x36\x88\x17\xc0\x30\x30\x78\x0f\x26\x8b\x35\xd9\x68\x52\x23\x85\x3a\x24\x54\x16\x60\x32\xfc\x21\xe1\x52\xe1\x4e\x2e\x79\xc2\x73\xd1\x3c\xa5\x41\x73\x11\x1a\x0c\x60\xb3\x08\x15\x75\xf8\x2b\x52\xdd\x21\x35\x61\x18\x30\x99\x80\xd6\x78\x40\x4c\x4c\x18\x86\xf1\x40\x72\xb1\x40\x92\xcc\x44\x9e\x1a\x93\x90\x04\xb7\x1a\xb9\x93\xe4\x3e\x6a\x81\xcd\x86\x5c\x42\x43\xca\x66\xd7\x2e\x5f\xe6\x58\x50\xfc\x83\x45\x64\xa7\x41\x00\x04\xf3\x5d\xa6\x71\x42\x48\x01\xb8\x24\x1a\x94\x5b\x09\x97\x44\xe6\xf0\xfa\x04\x41\xa1\x72\xcd\xec\x00\xdb\x2c\xe1\x95\x68\xc6\x17\xc2\x2b\xd1\x0d\x74\xc8\x41\xc6\x45\xf1\xda\x5c\x75\x5a\x89\x68\xd5\x08\x9e\x8a\x56\x23\x38\x73\xc0\x92\x14\x5e\x9f\xfe\x41\x3b\x87\x78\x44\x34\x01\xd0\xc5\xf4\x18\x05\xdf\x44\xa4\x6f\xe3\x38\x5c\x4e\x82\x4f\x53\x1f\xc0\x56\x67\x42\x46\xa7\xba\x08\x27\x45\x68\x85\x4b\xac\xce\x9e\x35\xe0\xa7\x28\xc5\x3e\xc2\x3c\xa1\xdd\x26\x35\x3a\x93\xbc\x98\xf0\x53\x34\xa0\xe4\x12\x7e\x8a\xb2\x67\x96\x9a\xbc\x5a\x15\x04\x15\x3d\x9d\x4d\x8a\x75\xa8\x11\x32\x03\xfd\x04\x55\x3b\x31\x3a\xa7\x21\x36\x09\xc6\xe3\x81\xe6\x09\x8d\x45\x1f\xce\x24\x8d\x16\x7a\x9d\x32\x84\x45\xa2\x1e\x01\x0c\x2e\x52\x37\xc3\x60\x2f\x1a\x84\x92\xaf\xbd\x3b\x09\x6e\x4d\xd0\xfe\x33\xd1\xf2\x41\x6b\xc8\x4c\x4b\xa3\x04\x82\x8f\xd2\x8c\x8d\x4c\x83\xb4\xb8\x24\x2d\xce\x29\x89\xec\x37\x64\x33\xb1\x59\x40\xa4\x93\xa9\xec\x57\x66\x43\x9a\x51\xf5\xce\xc1\x8e\xd1\x86\x53\x6f\x4d\xb2\x23\x29\x18\xeb\x31\x40\x45\x09\x75\x85\xe8\x61\x09\x73\x45\xc9\xb0\x84\xd3\xc8\x72\x6a\x81\x3a\x7f\xec\xfb\x96\x86\x9e\x0f\x29\x45\x4b\xaf\x89\xca\xd9\x2b\xf9\x82\xca\xd2\x95\x8f\xc5\x18\x5a\xb7\x94\x26\xc2\x03\x4c\xde\x38\x15\x7d\x06\x9e\x39\x05\x73\x22\xb1\x35\xf0\x43\x1f\x11\x46\xa5\x41\x1f\xb1\xc2\x89\x84\x12\xae\xa2\x97\x37\x87\x56\xcc\x9c\x09\x8d\x2a\x00\x5e\x99\x3f\x5b\xa3\x98\x81\x46\x55\x05\x0b\x5e\x89\x6e\x80\x6d\xfe\xec\x53\x0a\x46\x23\x57\x7d\x49\x48\x8b\xa0\x97\xca\xc4\x1a\x91\xae\x05\x6d\xc4\x06\xe5\xe5\xcf\x2c\x53\x5a\xf3\xd8\x8f\xf4\xa9\xcc\xa9\x88\xdf\x7c\xe0\xa8\x73\x59\x20\xe0\x0d\xf9\x4a\x09\x52\xff\x24\x97\xc9\x7c\xc1\x75\xb6\x40\xb9\x4f\x6d\x11\xfe\xbb\x4f\x96\xf2\x83\x98\x61\x85\xc6\x0b\x21\xb3\x0b\x0b\x7c\xf6\x2d\x7c\xc8\x6f\xd8\x22\x5b\x82\x54\xc7\x0a\xbb\x72\xee\x6b\xfb\xd5\x67\x5e\x0b\xf8\xaa\xbe\x74\xfe\x35\xaf\x21\x83\xea\x5e\xa3\x89\xa3\x9f\x2e\xdc\x71\x40\xba\xe5\x22\xa2\x34\x93\xed\x7f\x21\xd7\x75\x6f\x2c\xd5\x72\xa4\x92\xd4\x17\x86\x83\x2d\xf4\x6a\xed\xed\x0b\x61\x6d\x60\xd5\xaa\x36\x79\x71\x6d\x3c\x10\xef\x56\x8e\xc5\x2c\x00\x98\x2f\xc2\xf8\xa9\xd5\x0e\x48\xbc\xbd\xb6\x12\xc8\x95\xf5\x09\xeb\x6d\x7a\x5f\x0d\x81\xce\xaa\x82\x12\x23\x8c\xca\x5a\x04\x81\x0a\xdf\x9e\x0b\x89\xae\xef\x65\x11\x22\xb2\x63\xe9\x57\x93\x51\xd1\xaf\x12\x28\x86\xbc\x81\xdd\x22\x0c\xca\x5b\xdd\xb4\x58\x9e\xe9\xc0\x57\x5b\xf2\x10\x23\x8c\xfb\xc0\x7f\x41\x1f\x91\x10\x54\x84\xbe\x2f\x08\x2a\xaa\x4a\x07\x04\x15\xcb\x5c\x92\x25\x7d\xa7\xcf\xe8\xa7\xd3\x8b\x06\x29\x85\x90\x79\xb9\xa6\xe8\xdd\x3e\xc4\xd6\x90\xcb\x1f\x37\x86\x7e\x6a\x0a\x33\xa7\x11\x5a\x2b\xcc\xec\xa5\x76\xda\x32\x50\xcd\x16\xf1\xf9\x7b\x94\x15\x61\x46\xc8\x2c\x0d\x15\xf6\x30\x7e\xb3\x34\x12\x66\xa1\xbf\x1a\x16\xb4\x52\x5c\x43\x5f\x00\xa5\x36\xfd\xd2\x57\xf2\xf2\x1a\x48\x17\xa0\x3e\x73\x11\x3d\x61\x1e\xed\x22\x7a\xe2\x5f\xa7\xca\xc3\xe6\x1c\x39\x49\x93\xf0\x21\x18\x2a\xba\xc3\x06\x62\x39\xf4\x7e\xb9\xb4\x3c\xc0\xb1\x90\x0b\x28\xaf\xee\x64\x3b\x09\x2f\x77\x92\x5c\x95\x6b\x6a\x71\xc1\x1a\x63\x5f\x88\x52\x6e\x9b\x2f\xad\x6a\xb4\x40\xe7\x96\x8e\x28\x48\x26\x96\x46\x1b\x38\x26\xc2\x48\x44\x38\x26\xaa\xc6\x1f\x39\x26\xdc\x23\xa0\x98\xf8\x5e\xa6\xe4\xdb\x13\x8f\xd7\x42\x5f\xd0\x1c\xcc\x13\xbd\xf9\x02\x31\xeb\xfb\x43\x09\x1a\x85\xcf\xc3\x72\x86\x7e\x08\xdb\xc4\xf7\x51\xaa\x0a\xc5\x84\xc2\x6d\xc1\x0b\xed\x4e\xbf\xc0\x92\x35\xcf\x70\xfd\xec\x17\x67\x0f\xd2\xcd\xcc\xb7\xf5\xf3\x4b\xd3\x1f\x0f\x7f\x50\xa5\x47\x24\x14\x3a\x46\x3d\xd5\xac\x30\x98\x28\xc2\xf3\x29\x44\x14\xa5\xd9\xf5\xd0\x39\xeb\x53\x86\x30\x22\x46\xf9\x33\x71\x61\xbd\xa4\x4d\x20\x13\xd7\xcb\xbe\xc7\x1e\xb8\x34\xdd\x2e\xf6\xe2\x25\xaa\x23\xe2\x6d\xbd\xce\x0e\xfb\x1c\x33\x05\x80\xd8\x09\xb5\x44\x57\x38\x42\x2d\x91\x50\x86\x26\xcc\x12\x01\xdc\x5a\xc2\x2c\x11\x3a\x85\xce\x4f\x8c\x75\x63\x1f\x4f\xa2\xe7\x0d\xa4\x38\xc1\x3e\x4f\xb0\x1a\xf2\x24\x54\x61\xee\x97\xed\xc2\x5d\xc2\x4d\x09\x7e\xc9\x2e\x44\x78\xc1\x3f\x91\xba\x20\xcf\xe3\xf5\x0f\xbe\x5b\x4c\x51\xa0\xae\x05\xc0\x2d\x86\xfe\x54\x7f\x5d\xcb\x3f\x3e\xf5\xd9\x10\xad\xb3\x90\xfd\xb3\x5f\xb6\xd5\xc8\xc1\xb3\x58\xdb\xc9\x35\x2e\xd2\xc3\xeb\x9b\x88\xf9\xc3\xcf\xe2\xa5\x59\x7e\xe9\xf1\x0f\x6a\x8e\xfa\x6b\x5a\x22\xd4\x15\x69\xf0\xda\x89\xdd\x61\x1d\x87\x3f\xac\x07\x2f\x00\x8c\xab\x2c\x3b\xb1\x35\x77\x34\x32\xf8\x2d\x12\xec\x92\x3c\x3f\x29\x9a\x10\xaa\xe5\x89\x14\xdd\xae\xaa\xf3\x93\xa2\x9f\x60\xe5\x9a\x90\x2a\x26\x39\x0c\x15\x61\x6e\xe8\xd9\x19\x2d\xef\x77\x9f\xa7\x3d\x78\xde\xb6\x5f\xfc\xec\xa2\x66\xf8\xc2\xc3\x43\xde\x7f\x7d\x88\x3f\x40\x57\x74\x4f\x84\xae\xa2\x6c\x27\xde\x39\x2a\x6f\x78\x0d\x16\x8b\x6e\xb2\x13\xf0\x2e\x43\x3f\x4e\x2c\x10\x40\xac\xe6\xf9\x69\xc3\xb9\xf6\x57\x49\xa4\x72\xdc\x11\xd4\xe9\x7d\x70\x1a\x35\x09\x9f\x1b\xa7\x91\x02\x26\x58\x55\x28\x18\xa7\x31\x14\xf6\xbc\x78\x5e\x4e\xac\x69\x76\xc3\xf0\x8f\x8b\x43\x1d\x1d\x00\x40\x2f\xa8\xca\x79\x7e\xea\x6c\xe8\x3b\x3e\xc1\xe7\x5d\x0e\xd5\xb4\xcd\xc8\x23\x18\x34\x12\xc2\x98\x3c\x0d\xb8\x67\x09\x9e\x28\xb3\x30\x8b\xe4\x19\x02\xbc\x51\x6b\x0d\x19\x7b\xb2\x07\xe3\xdc\xbd\x06\x8b\xc4\xa1\x0a\x6b\x61\x01\x2f\xd7\x7c\x28\xe9\x2e\xa4\x2b\x44\x19\xb9\x17\x50\x32\x6c\x76\x69\x6a\x8f\xf7\x7e\x52\x18\x1a\xe2\x99\xf0\xfc\x60\xfa\x39\x31\x6b\x03\xc5\x93\xf0\x67\xa4\xde\xdf\xf3\xdb\x14\x5a\x77\xee\x2c\x6b\x8a\x99\x53\x02\x0d\x25\x27\x44\x19\x09\xd9\x75\x9e\x24\x70\x2d\x8f\x2a\xe7\x3a\x19\x11\xbe\x8a\x85\xc3\x68\x22\x88\x32\xca\x52\xb3\x97\x29\x63\x4f\x92\x13\x52\x5f\xa7\xa1\xe0\x5e\x6a\xf3\xe7\x49\x8f\x21\x09\xcf\x4f\x15\xce\xb9\x1f\xa2\xc3\xec\x55\x3c\x76\xe3\x4f\xfe\xfa\x94\x77\x63\x79\x1e\x80\x77\x23\xf7\xa4\x3e\x09\x30\xb2\xb5\xd7\xc1\x35\x3d\x65\x84\xbb\xea\xe4\x09\x8e\xa4\x1e\x03\x38\x35\xd2\x38\xc1\xf3\x5a\xac\x4b\x1a\x08\x49\x9b\x61\xb5\xf0\x6b\xec\x40\xe6\xf3\x66\xde\xa3\x63\x9c\x6c\x44\x4b\xdd\xeb\xd4\x60\xe2\x94\xbb\x85\xfc\xa3\x9b\xb1\x87\x2f\xf5\x21\x08\x36\x12\xbe\xe4\x3c\x85\x16\x56\xcb\x82\x60\x23\x85\xb1\x38\x09\xcc\x58\x2a\x4a\x27\xae\xc1\xe5\x44\x23\xbb\x6b\xa9\x10\x9d\x68\xe9\x6e\x82\x27\xf1\xeb\x4b\x85\xe5\xfc\xb9\x88\x78\xfb\x27\xdf\x3a\x15\xfc\xe1\x5a\x73\xbd\xff\x82\x67\xe8\x8d\x1f\x1a\x97\x63\xcf\x3e\xa6\x5f\xe5\x64\x1f\x5b\x66\x2f\x40\xee\x91\x9e\x82\xce\x87\x2e\x50\xe6\x3f\x76\x81\x1d\x0e\x57\xb3\xc8\x14\x10\x7a\x94\x65\xbe\x03\x8c\x1e\xa9\x69\xe4\x04\xbf\x58\x55\xf1\x7c\x28\x9a\x2d\xf4\x7c\x6c\x35\xda\x0b\x54\x1f\x69\x82\x36\x54\x1f\xe9\xe9\xed\x7c\x59\x8e\xb6\x07\x7d\x7d\x19\x20\x7a\x7e\xbb\xde\xde\x4e\xa5\x00\x31\xc2\xf3\xfc\x36\xb7\xd8\xcb\xe8\x85\xe9\xc4\xa1\x46\x77\x5f\x06\xe4\xc3\x0d\x92\x46\x96\x9d\x24\x27\xaf\xb2\x8b\x60\xd1\x72\x68\x81\x34\xe4\xfb\xc3\xcf\x62\xec\x63\x8b\x97\x34\x64\x19\xa8\x73\x81\x65\xdc\x90\xbc\x97\x7b\x26\xeb\xe5\x3a\x80\x2e\xa5\x88\xeb\xb0\xcf\xf6\x43\xc8\x79\x2a\x05\xab\x48\xea\x05\x87\x54\xe4\x7b\xc8\xb7\x03\x1d\x3c\xb9\xc6\xd1\x5e\x2d\x8d\x6a\xb0\x91\x40\x1e\x52\x96\xc1\xe2\x97\x5b\x23\x47\x13\x08\x43\xb6\x3a\x02\x61\xc8\xf7\x10\x5f\x2d\x8e\x8a\xd7\x00\x19\xd9\x86\xe2\x8c\x45\x7c\x40\x2b\x92\x6a\x7c\xd0\x8a\xa4\xfe\x71\x58\x45\x76\x14\xd6\xe5\x36\xe9\xae\x77\xb9\x4d\xd2\xfb\x17\xf0\xf1\x80\xac\x27\xec\x21\x1b\xa9\x44\xf6\x90\xa5\x4f\x10\xf6\x90\x34\x30\x15\x92\x90\xf4\xa8\x05\x49\xc8\x76\x35\x43\x12\x92\xc6\x9c\x42\xff\x91\xc6\x4d\x43\xf9\x91\xc6\xe9\xc3\xdf\x91\x26\x0c\x41\xc7\x91\x82\x66\x5c\xee\x6d\xe9\x7d\x3c\x9e\x88\x76\xb8\x32\xb6\x3e\x24\x57\xc6\xd2\xc1\x04\x57\x46\x76\x6c\xa5\x70\x65\x6c\xdd\x08\xaa\x8c\x34\x21\x19\xaa\x8c\xef\x05\xbf\x44\x4d\x59\x59\x17\x84\xce\x06\xbd\x5c\xe4\x0b\x2f\x44\xc2\x35\x21\x9e\x65\x23\xb9\x80\xf7\x88\xbf\xc5\xdc\x25\xc9\x3f\x33\xfc\x0a\xc2\x22\x90\x16\x97\xe1\x78\xf6\x2b\x28\x1d\x1e\xac\xa1\xb5\xd8\xf9\x05\x57\xc2\x7d\x8f\x0c\xba\x60\xa8\x33\x89\xf7\x5a\x95\xad\x91\xae\xe4\xc0\x60\xb8\x9f\x4c\x16\x4b\xc3\x33\x54\x16\xa9\xaf\x07\x2a\x8b\xd4\x66\x06\x7b\x45\x2e\xcc\x01\xb0\x57\x94\xa5\xad\xf9\x5a\x76\x32\xa5\xb9\x37\x68\x9d\xbe\x4e\x48\xf6\xfc\xd2\x89\x42\x6f\x13\xd8\x1b\x54\x8c\x2f\x31\x31\x9c\x1a\x62\x48\xf9\x51\xd2\xa4\x0c\xd4\x84\x07\xa3\x99\x89\x04\x0f\x46\xd3\x12\x0e\x0f\x46\x07\x8c\x34\xe1\xc1\x68\x1e\x7f\xe1\xc1\x28\x62\x81\x27\x44\x18\xdd\x3c\x96\xeb\xc4\x01\x8e\xa8\xbc\x88\xee\x3b\x90\x3f\x17\x14\xa0\x0a\xdd\xcb\xdd\x42\xb3\xf3\x45\xac\xb6\x3e\xc9\x0b\xe4\x47\x03\xb7\xae\x0b\x03\x90\x53\xe3\x42\xf5\x75\x36\x10\x01\x08\x39\x40\x5e\xa0\x50\x0d\xe7\xde\x36\xc7\x53\x3b\x22\x00\x97\x66\xf7\xeb\x22\xf6\x70\xbf\x20\xbc\x9c\xd7\x32\x40\x5a\x80\xd4\xb5\x7c\xe8\x06\x0d\xde\x2e\xba\x61\x37\x47\x46\xc3\xc4\xd1\x54\xcf\x2e\xed\x3f\x2e\x55\x8f\x42\x76\xfb\x6d\x90\xbf\x4b\xf5\x96\xc5\xdd\x87\x80\xa6\x73\x2a\x7c\x3b\x53\xdf\x0b\xe0\xdb\x98\x7a\xee\x6b\xf0\x75\xac\x1c\xe7\x25\xb3\x18\x2f\xe0\x21\x13\x7d\xfb\xfa\xb6\xa5\x0e\x72\x54\x5e\x6e\x4b\x3a\x14\x20\xee\xe8\x3a\xdb\x2e\xb0\x1f\x55\x8c\xae\x6f\x5b\xea\x0b\x15\xfb\xfa\xe1\x47\x46\xed\x87\xb7\xa3\x18\xbe\x74\xe9\xc1\xb5\xeb\xbe\x2d\xaa\x2f\x5b\xe3\x16\xe5\x5c\xc6\x90\xd4\x95\x8b\x40\x6e\xa4\xe3\xfa\xe0\xc2\x54\xa8\x02\xf1\xa8\x9f\x0d\xce\x8f\x6e\x82\xcb\xf5\x88\x38\xec\x33\xe0\xc7\xb8\xe6\x00\x41\xd6\x77\x07\x17\x48\x11\x99\x3d\xaf\x47\x56\x1f\xff\x20\x45\xd0\xd9\xfb\x88\x2e\xe6\x47\xbf\x5e\x81\xe6\x24\xaf\xc7\xb3\x3f\x8d\xc4\x5b\xbc\x9c\xf9\xe6\x51\x39\x3f\x5e\xd2\x4f\xf6\x33\x8d\x67\x68\x00\xe0\x8e\x3a\x82\xaf\x17\x28\x4a\x57\xc1\x4b\xc7\x71\xe6\x84\x6b\xa4\xe9\xed\xbf\x80\xe0\x18\x76\x0a\x9e\x66\x71\xa9\x2e\xc8\x56\x3d\x14\x5c\xec\x72\xa2\x7e\xc0\x4d\xd2\x97\x92\xe9\xdd\x74\xb4\x5c\x3f\x80\xc7\xf8\xee\xcb\x33\x5f\xa7\xc0\x4c\xd2\x4d\xb1\xb9\x0f\xb9\xef\x0f\xae\x2b\xf7\xff\x94\x6a\x37\xfb\x9f\xd3\xeb\x3e\x18\x85\xea\x07\x06\xb0\x4e\x85\x6b\xc8\x63\x98\xef\xd0\x9f\x74\x73\x06\xee\x83\xf4\x5c\x2a\x75\x73\xae\x14\x81\x3f\xef\x6f\x5b\xec\xba\x65\xe1\x48\xa9\xda\xd6\xe0\x48\xe9\x9e\xb5\xe0\x48\x29\xda\x44\xe0\x48\xa9\xc7\xbe\x4f\xeb\x98\x3a\x37\x78\x21\xea\x30\x77\x11\x7b\x86\x96\x72\x5e\xd4\xb9\x7c\xe3\xcb\x76\x07\xba\x0b\x3d\xcc\xb1\xf5\x96\xed\xbb\xf8\x9d\x8b\x67\xa8\x9b\x9e\xec\xf0\x3b\x3f\xee\x53\xae\xa7\x48\x9d\x52\xd0\xab\x34\x45\x2b\xec\x2a\xdd\xc8\xdc\x9b\x53\xa4\xe1\x0e\xf7\x77\x88\xec\x9e\xe5\x60\x5d\x69\x26\x48\xc2\xba\xd2\x3d\x73\xdd\x15\xce\xbb\xee\xf3\x44\x38\x57\x9f\x07\x72\xc1\x61\xab\x84\xd2\xb0\xce\x6e\x92\xb9\x45\x61\xba\x01\x1a\x51\x4e\xde\x4d\xc8\x0d\xea\xa6\xb5\x8e\x69\x07\x03\x4b\x35\xca\xea\x86\x8e\xdb\x93\xef\x2d\xb2\xb3\x1d\xf4\x1d\x2d\xd3\xa8\xaf\x9b\x0c\x6c\x91\x4f\x20\x66\x69\x5a\xfd\xef\x81\xa5\x87\xed\xfd\x26\xa4\x09\xa4\xbf\xbc\x61\x9c\x85\x2c\x29\x6f\xa2\xed\x77\x7b\xa7\xd9\x59\xde\x57\x75\xa6\x6e\xa4\x36\x35\xeb\x40\x5c\xfb\x40\xf8\xdc\x40\x69\x0c\x9f\x27\xd4\xc8\x6d\xff\x86\x2c\x6a\x4f\x14\x1c\x06\xf0\xed\xe6\x8d\x63\x00\xfa\x95\x94\x66\x45\xcb\xc2\xcd\x3e\x2a\xe6\xd4\x8d\x93\x60\x09\xe4\x75\x03\x40\x15\x7e\xf4\xdb\x3c\x37\x90\x1c\xd4\x2a\x61\x68\x84\x74\x2a\xd0\x03\x27\x74\x2a\x69\x36\xf4\xed\x16\xd9\x9c\x36\x1c\x9f\xd4\xee\xee\x13\x2e\x80\xe9\x7d\xce\x9b\x6c\x7f\xf7\x77\xe0\xc9\xe6\x14\xda\xe7\x1d\x6a\x7a\x7a\x64\x61\x34\xe4\x19\xdc\xdf\xc1\x8a\x81\xea\x71\x73\x26\x4a\x54\xb8\xfb\xdb\xf1\xd2\x2c\xd1\x1b\x98\x7d\x61\x72\x6e\x77\x3c\xe1\x11\xe0\x62\x59\xe0\x14\x26\x5c\x2c\xa1\xb4\xba\x89\x23\xd2\x5c\x73\x93\xb5\xb4\x84\x72\xb8\x09\x24\x12\xfb\xe1\xbe\xa8\xa9\xfd\x0e\x7f\x94\xe9\xcc\x12\xb9\x2c\x4d\xea\x37\x41\x91\x6a\x4c\xf7\x25\xfb\x85\x1f\xe2\xf8\xb6\xab\xf7\xe3\x19\xba\x42\x4e\xda\x66\x47\x8a\xb4\xe1\x8c\x82\x95\xea\x70\x04\xbf\xbd\x70\x41\xbd\x92\x37\xc7\x34\x83\x78\xef\xef\x98\x96\x7a\xda\x6f\x4e\x69\x06\x2b\x43\x1b\xb3\xf6\x2c\x25\xab\x69\x69\x0b\x84\x19\x26\xd5\x59\x60\x86\xc9\x4f\x45\xf8\x4b\xaa\xdd\xb6\x0f\xd9\x09\x6d\x4c\xa6\xd5\xfa\x51\x2d\x17\x1b\xe7\x31\xad\x8f\x37\xae\xed\x60\x7b\xbf\x09\xe2\x5c\xcd\x9e\xfa\x59\x2f\xea\x08\x3c\x87\x42\xf8\xfe\x39\xfb\x50\xe9\x6e\x4f\x6a\x36\xca\x6d\x50\x00\x03\x38\x64\xb2\x3b\x6b\x7e\x4e\x33\x14\x3f\x48\x64\xb2\xf9\x07\x74\x00\x1e\x2e\x6e\x8e\x73\x73\x5f\x63\x41\x76\xb2\x73\x9a\xd3\x6d\x74\x7b\x9a\x13\xf2\xe0\x06\x4d\x52\x83\x0a\x6c\x34\x0b\x10\xc8\xbc\xe1\x6a\x34\x71\xfc\xfe\x36\xc8\xd5\x5c\x89\xb0\x04\x40\x1d\x9e\x37\xf1\x54\x69\x9f\x13\x58\xaa\x62\x05\x6b\x4c\x9a\x5c\x0c\x69\xcc\x82\x59\x26\x6f\xfc\x2a\x1e\x39\xee\x17\xab\x06\x2a\x87\x64\x32\xc2\x04\x4a\x26\xb3\x00\x6b\x4e\xa8\x61\x16\x30\x9e\x29\x35\x4c\xa2\xa1\xfd\x0e\x69\x2e\x27\xd7\x0e\x15\xc7\x23\xb8\x61\x32\xe8\x61\xb9\x61\xc4\xa6\x90\x1b\x66\xb9\xe4\xe4\x86\x31\xa6\xed\x77\x38\x17\xc3\x1f\xa8\xf2\xf4\x05\xa4\x31\x0b\xc4\xcd\x84\x10\x66\x87\x41\x6d\x7a\x17\xea\x0d\xbd\x4b\x9a\x13\xfe\x23\xa8\x49\x83\xd5\xef\xdb\x0a\xba\xe1\x64\xbf\x22\xbd\x09\xcf\x57\x5d\x40\xac\x02\x38\x60\x4a\xb2\x7f\xc1\x01\x53\x0c\x20\xfc\xb1\x5d\x68\x40\xff\x55\x9d\xd1\xd4\xfa\xdb\x2e\xb4\x70\xfe\xbe\xdd\xa2\x1b\xc2\x2c\x65\x0c\x60\xf4\xf9\x03\x9d\x58\x4b\xc5\x4f\xea\xc6\xea\x33\xe7\xb7\x43\xa4\x75\xb8\x60\xe2\xf6\x3b\x04\x49\xee\xcf\x9b\x7c\x41\x9d\xeb\x43\xc8\xa0\xdf\x31\xe2\x87\xef\x90\x60\xac\xc7\x14\xea\x99\x6a\x90\xe7\x8f\xdd\x45\x57\xcd\x4f\x27\xd1\xf4\x19\xe0\x3c\xed\x4f\x76\x1d\x9d\x0a\x3f\x10\xad\xa0\xfb\xc8\x9f\x3c\x8f\xfb\x99\xd3\x89\xc9\xf5\xc5\xbb\x7e\xff\xa6\x4b\xbc\xfe\x71\xdf\xef\x3f\xf0\xfb\x52\xe7\x46\x46\x0a\x22\x0f\xd6\x9a\x09\xd8\x75\xc2\x5a\x53\x3d\xab\x43\x5a\x53\xe1\x3f\x4f\x48\x6b\xba\xf2\x05\xce\x9a\x2e\xd8\xc2\xaf\xeb\x5e\xa0\x6e\xa4\x2d\x98\x99\xfd\xeb\xd2\xe5\xd0\xc6\x0e\x1c\x69\xf3\x9b\xd4\x67\x7f\x13\x72\x65\xfb\xe4\x3b\x9c\x36\x6d\x07\xb0\xda\x14\x5d\xd3\xbf\xd1\xc0\x2c\xe2\x9b\x43\x5f\x24\xdf\xf9\x76\xcd\xd9\x59\x93\xbf\x41\x36\xff\xf4\x5d\x74\x7c\x05\xdb\xef\x3b\xcc\x76\x11\xa2\x7e\xdf\x61\x76\xee\xc2\x88\x1c\x9e\x7f\xfb\x13\x7e\x90\x42\x1a\xb5\xfd\xfb\x0e\xba\xdd\x58\x14\xb8\x76\xba\x5b\x1b\x5c\x3b\x1d\x70\xe9\xfc\x0d\x57\xa3\xcb\x60\x12\x19\xc9\xee\x01\x09\x4f\x83\x44\x25\x21\xe1\xe9\x9e\x10\x7f\x53\xf4\x5b\x9f\x81\x9f\xdb\x0f\x4d\x65\x0e\x82\x13\xa6\x9e\xa6\x20\x83\xa9\x27\xfe\x7d\x54\x99\xe8\xb5\x2b\xd6\xc9\x86\xa5\x57\x78\x83\x1f\xc8\x5b\xa2\x60\xc2\xd4\x13\x7b\x62\x08\x95\xb9\xaf\xc1\x94\x75\x85\x87\xe8\xd5\x3e\x0f\x73\xa1\xcd\x07\x49\xcb\xe0\x9d\x5f\x76\xbe\xc3\x33\x10\x1c\x1b\x12\xf5\x03\x96\xd9\x50\xd8\x5f\x4a\x6d\xce\x33\xb0\xb5\x99\xd5\xf0\x5b\xbe\x4b\x59\x58\x61\xb5\xd6\xfd\x96\x50\x6d\x5e\x83\x52\x8f\xa6\x01\xc9\x4e\x33\x52\xf3\xc7\xe6\x0f\xb1\x72\xca\x8d\x23\xa0\x2a\xdc\x38\xcb\xe0\x54\xb8\x71\xba\x68\x38\x70\xe3\x54\xed\xce\x3f\x82\xc3\x8c\x21\x86\x27\x27\xf6\x62\x71\x6b\xee\xae\x58\x02\x81\xf7\xec\xf4\x98\xda\x9d\xce\x84\x1d\xec\x69\xce\x31\x75\xfd\xfb\x14\xd0\xda\xcd\x4f\xbd\x3c\x44\x57\x80\x70\xd5\xf6\x35\x4d\xb6\x99\x84\x93\xad\x7f\x3f\x20\x0d\x72\xe2\x42\x9b\xe3\xfa\xc2\x06\x2a\x04\xd2\xef\xb6\x30\x76\xca\x9f\x67\x4a\xd3\xa8\xe1\xd6\xa9\x9a\x8e\x7e\x3f\xeb\x4d\x27\x11\x29\x06\x76\x77\xfe\xc8\x13\x5e\x7b\x64\xe5\x04\x28\x5e\x43\x3f\xe4\x12\x93\x37\xc7\x9d\x82\x60\x03\x83\x9c\x7f\x0f\xd5\x0e\xef\xe3\x39\xb4\x87\x1f\x7b\x8c\x7d\xe9\xf7\x18\x91\x44\x5d\x71\xd9\x6d\x59\x43\x64\x99\xa9\x70\xb0\xe3\x54\xe3\xc1\x20\xbe\x69\x5a\x40\xe1\xbd\x29\xcb\xd0\x19\x88\x6f\xaa\x76\x69\x78\x6f\xbe\x3f\x68\x03\xd9\x15\xbb\x09\x84\x96\x0d\x07\xf7\xa5\x34\x37\xbe\xd7\x76\xa6\x45\x30\xfb\xe9\x98\xe7\x50\xb9\x5e\x5c\xf3\x21\x5e\x7e\x3c\x31\x51\x1a\x84\x38\x65\x75\x76\xc1\x87\x9d\x4f\xd0\xad\xe7\x00\x25\x05\x85\x05\xa6\x9c\x9d\x41\xfa\x14\x3b\xc6\x6b\x0b\xf3\x19\x0e\x8d\x74\x12\x84\x38\x61\x1f\x3d\x9c\x6e\x20\x12\x49\xc8\x71\x42\x97\xd7\xc3\x9e\x63\x8c\xfb\x53\x11\x49\x8c\x2c\x44\x39\x65\xe9\xfb\x84\x29\x27\x0c\xe6\x86\x28\xe7\xfb\xc3\x1f\x0c\x21\x5b\xf4\x03\x40\x95\x20\xcf\x0f\xbb\xce\x1a\xe5\xcf\x2c\x53\xf8\x75\x02\x46\x98\x84\x46\x27\xd5\x62\xa1\xd1\x09\x3b\x13\x86\x9c\x70\x24\x60\xc8\x89\xce\x44\x81\x07\x27\x44\xe0\x7d\xe0\xa8\x74\x18\x1f\xb0\xf6\x97\xc7\xa2\x87\xb8\x85\xd9\xbc\xd6\x8c\x4b\xd5\x41\xaa\xe8\xc8\x8c\xc7\x23\x52\x7a\x9f\x02\x96\x1f\x82\x1b\xda\x4e\x96\x4f\x1e\xe9\x09\xed\xcd\xd2\x37\xf1\x10\xb2\xeb\xd2\x7d\x26\xa4\x9c\x76\xf2\x24\x27\x93\x29\x03\xed\x8d\x78\xe9\x29\xbd\x8d\x1b\x2c\xec\x36\xc5\x98\x74\xd8\x6d\xca\x1a\xc3\x1f\xf4\x25\x5a\x0a\xf4\x36\x01\xfd\x7f\x3e\xc4\x76\x2d\x71\x0b\x1f\x32\x8a\x85\x49\x84\xf7\xe6\xfb\x83\x26\x04\x73\xc3\xf9\x43\x60\xef\xfa\xf7\x14\x6b\x1d\x81\xfe\x04\xc1\x47\xd5\x87\x1c\x6c\x47\x9e\x60\xde\x3d\x13\xa5\xa0\x77\x1a\xa7\x63\xca\x72\x7a\x8c\xfa\xb2\x08\x0e\x6e\xda\x47\x1e\xa2\x24\x96\xa0\x81\x0f\x38\xfa\x06\x07\x3e\xba\xcd\x0c\x30\x86\x51\x67\x19\xf8\x06\xa1\x4e\xa4\x13\x36\x41\xe3\x6a\x5e\xdf\xbe\x40\xa7\xe1\x4f\x53\x3c\x48\xa8\xb3\x5c\x80\x12\xea\x18\x8b\xff\x40\x0b\x6c\xe6\xef\x43\x3e\x9b\x07\xdd\x67\x29\x99\xe9\xb3\xe5\x08\xf9\x8c\x67\x46\x4a\x5b\xf6\x86\xdf\xb1\x37\x9c\xd5\x70\x73\x6a\xb2\x78\x34\xb8\x0a\x5a\xfc\x40\xce\xa9\x1b\x14\x42\x9d\xa5\xf1\x1e\xb2\x9c\x80\xb6\x39\x21\xcb\x59\xc6\xc9\x41\x90\xb3\x02\x45\x49\x82\x1c\x50\xf6\xf3\x11\x46\xd8\xee\x26\xcf\x4d\x23\xb8\x7c\x37\xbb\xbf\x2e\x5c\x8b\x6c\xb8\x0f\x07\xae\x6e\xcb\x08\xec\x4d\xeb\x80\x03\xcb\x08\x98\x07\xbe\x5e\x21\x1b\x1e\x53\xdb\x9c\x9f\xf7\xf3\xdf\xff\xa6\x7a\xc9\xb3\xa9\xd0\xbc\x66\xf6\x08\x08\x0b\x47\xcc\x3e\x69\x40\xed\xb2\x34\x32\x42\xdb\x92\x7b\xa2\xc3\xd7\xab\xfb\xe5\xf1\xa4\x81\xac\x7f\xa0\x17\x33\x62\xf0\xd1\xdb\xe3\xbb\x10\x87\x69\x49\x7d\x48\xb8\xd8\x8d\xf7\xa4\x81\x24\x86\xfa\x64\x19\x7b\xf6\xe8\xeb\x51\xbd\x83\xfb\x64\x99\x78\xf9\x78\xd4\xd0\xef\xfb\x1e\x92\x3d\x35\xae\x91\xe3\x50\xfc\x24\xec\x27\xfb\x3c\xf2\xea\xc7\x11\xe4\xef\x25\xd0\x0b\xb2\x82\x7c\x8f\xf4\x8f\xce\x0f\x30\x0c\x96\x6f\x5b\x41\x8a\x28\x34\x88\x49\xb8\x19\x4f\x94\x8f\x50\x9e\xc4\xea\x7f\x06\xf3\xc2\x87\x92\xbd\xfa\xd2\xc5\x41\x98\x7a\xc1\x33\x29\x26\x33\x9c\x26\x69\xe6\xd3\x4b\x7e\x84\x01\x16\x2f\xc9\xc5\x9e\x18\xa1\x2e\x09\x75\xa2\xf7\x13\xd4\x69\x0e\xe4\x5b\xf5\xa8\x70\x9f\x28\x30\x18\x4a\x12\x86\x92\xd4\x9c\xf2\x92\x0e\xa1\x43\xfd\xc5\x4b\x63\x0c\xdc\x4b\x76\x9c\xc9\xf5\x90\x95\x2c\x6d\xd1\x92\x95\xec\x60\xfd\x17\x76\x48\x31\x78\xdf\x4e\x2c\x34\xf2\xe0\xed\x56\xce\xfb\x28\x4e\x56\xb4\x13\x5c\x88\x70\x84\xcf\x24\xb5\x91\x41\x55\xb2\x8f\x73\xef\x4e\x7c\xa3\x30\x08\x46\x76\x18\x24\x04\x23\xcb\xf0\x48\x09\x46\xa0\xbc\xc8\x17\x1d\x55\xc6\x8a\x7c\xa7\xb3\x8f\x6e\x54\x49\x15\x7d\xe2\x45\xe6\xea\xbb\x78\x41\xe8\x11\x81\x16\x7e\x92\xa2\xe3\x51\x7e\x12\x0f\x1d\xaf\x66\x2c\x03\x84\xdf\x4f\x93\x9d\x7b\x6e\x00\xfb\x30\xf7\x47\xbf\xd3\xc2\x9e\x4c\x9f\x90\xae\x46\xba\x43\x62\xd2\x4c\xe9\x85\xc3\xa4\xb8\xb1\x40\x4f\xd2\x85\x4a\x85\x9e\x64\xee\x3e\x8a\xe4\xda\xfb\x28\xa6\xd3\xeb\xfb\xbb\xcf\xbe\xf9\x42\x35\xec\xc9\x56\xd6\x12\x63\x37\xde\x20\x80\xce\xc1\xcc\xdd\x5f\xfe\x20\xa4\x09\x2d\xf8\xfd\x34\xe2\x09\x87\x6e\x42\x6d\x52\xf4\xa8\x42\x6d\x52\x05\x8a\x85\xda\x64\x7a\x50\x80\xd9\xa4\x18\xa3\x0d\xb3\x49\xdd\x33\x50\x88\x08\x1b\x9c\x74\x0a\xdb\xf3\xab\x44\x36\x38\xfa\x25\x7b\x78\xf7\xc4\xc2\x22\x69\x0b\x56\xf5\x21\x4a\x36\xf4\xc1\x12\x3e\x69\x3b\xdc\x57\xdf\x45\xbc\xaa\x73\x19\xb8\x78\x28\x6f\xf2\x5d\x8c\x59\xf7\x43\x74\xd7\xf2\x5a\x4e\x19\xbf\x79\x72\xdf\x6f\x5e\x44\x93\xfb\x8c\x68\x0a\xcc\x22\x05\xb5\xca\x38\x2c\x2a\x45\xdb\x0c\x2c\x2a\xc5\x28\xdb\xf7\x53\xea\xab\xea\x27\x1c\x28\xe1\x86\xfe\x1a\xda\xe0\x7e\xf1\x9e\x9b\x7e\x98\xce\x23\x12\x4f\xf7\xd9\xab\x7b\xeb\xdf\x2b\xd2\x56\xfa\xd0\x83\x29\xce\x87\xa0\x7b\xb3\x68\xe0\xdf\xb5\x95\x43\xa0\xd2\x34\x8e\xc1\x9f\x92\x8a\xbd\x17\xf0\x21\x1d\xfb\xf2\xa7\x08\x32\x00\x67\x4a\x75\x43\x92\x33\xc5\x43\x99\xcc\x28\x46\x37\xbe\x37\x27\x3a\x07\xc4\xb8\x08\xcf\x86\xaf\x5e\x29\x3f\x84\x57\xea\x70\x49\x69\x71\x13\xd4\xed\x35\x91\xc4\x12\x88\xd0\xfb\x16\xc5\x5f\xa2\x4d\x56\x32\x97\x9b\xb8\x42\x1a\x62\xde\xef\x8c\xd0\x15\xf1\x2f\x47\x04\xb3\x38\xe0\x5c\xf9\x1e\xa2\xe1\xe4\x50\x1b\x6b\x04\xe7\x4a\x31\x1e\x05\xce\x95\x61\xc4\x0b\x9c\x2b\xc5\x40\xb2\xf7\xc7\x24\x50\xe8\xfd\x1c\x96\xfd\x32\xbe\x20\x7b\x0d\xe7\x94\x50\x47\xef\x77\xd6\x68\xc2\xd5\xbe\xf0\x8f\x8d\xfd\xcc\x57\x55\x33\xcb\xdf\x07\xb5\x98\x4d\xea\x35\x94\x42\x8f\xed\x0b\x6a\x9f\xf1\x91\x30\xb9\x0c\x23\x64\x60\x72\x19\x1e\x17\xdf\xc7\x99\xb2\x1f\x4a\xfe\xf0\xab\x8b\x6b\x6a\xc1\xe1\xa4\xef\x17\x30\xe4\xd8\x7c\xc3\x2d\xf6\x44\x79\x74\x8c\xd0\xe6\xe7\xe1\x65\x6b\x61\xaf\xfa\xf6\x6b\x12\x22\x6d\x78\xed\x3c\xbe\x44\x90\x61\xda\x61\x70\xde\x8b\x98\xfa\x82\xff\x77\xb8\x8e\x5f\x79\xbf\xbc\x86\xcf\xfc\x9b\xb9\x0b\x1a\x98\x46\xaa\xc5\x82\x06\xa6\xc1\x92\xb0\xa0\x81\x69\xe4\x87\x2e\x58\x60\xda\xdc\xf7\xe9\x96\x6f\xd1\x2c\x58\x60\x06\x31\x2c\x0b\x16\x98\x4a\xf0\xee\x3a\x0e\x24\x6c\xf7\x79\xf2\xa3\xbf\x31\x58\xb0\xc3\x0c\x22\x7d\x96\xec\x30\x0b\xaf\xf9\x82\x1e\x66\xac\xfd\x90\x89\xd9\xd3\x2f\xc9\x14\xc7\xf5\x77\xf8\xe9\xf0\xc9\x2c\x78\x63\x06\x61\x2b\x0b\xda\x98\xc2\x11\x6c\x49\x1b\xb3\x62\xff\x40\xf1\x5f\x34\x41\xaa\xe8\x83\x2a\x91\xb1\x4e\x54\xc8\x92\x36\x06\x8a\x81\x75\x18\x75\x41\xc2\xcb\x3a\x64\x8a\x6e\x7e\x08\xed\x2b\x2c\xcd\x04\x49\xaf\x6d\x43\xf8\x55\x28\x6e\xaa\x2f\x3c\x4c\x30\xaf\x45\xb9\xa4\x6d\x95\x65\xb1\x28\xad\xda\x84\xc9\x35\x49\xa4\x16\x4c\xfc\x22\x69\x75\xeb\xa8\xd6\x94\xef\x57\xfb\xc8\x77\xf1\xb4\x1e\x5e\xbf\xdf\x7d\xcb\x32\x20\xbc\x52\xb9\xe6\xdc\x4c\x9a\x49\x0e\x3d\x59\xa7\x0b\x76\x98\x4a\x96\xd8\x92\x1d\xe6\xb0\xe0\xa6\xcc\x4c\x46\xa4\x99\xa4\xce\xcb\xb0\x8a\x0e\x47\xa7\x93\x7f\x61\xf3\x55\x12\xc2\x11\xe9\xcc\x0b\xbf\x44\x62\x25\xee\x81\x05\x3b\x4c\x92\xdc\xb5\x60\x87\xf9\x5e\xf0\x07\x47\x9f\x83\x2a\x75\x58\xd7\x17\x25\x13\xfc\x38\x7c\x61\x10\xf9\x1e\x94\x4c\x88\x23\x94\x57\x0b\xd6\x98\x20\x90\x7b\xc1\x1a\x93\x78\xa6\x17\xa4\x31\x5f\x01\x7c\x08\xc4\xa9\xe2\xe0\x0c\xd6\x66\xf8\x02\xb3\x30\xfe\x3a\x99\xae\x83\xa0\x12\xc8\xcb\xd6\x31\xf4\x73\x1f\x16\x4f\xc0\xa4\x5d\xae\xb1\x2d\x9d\x59\x93\x68\x91\xa0\x78\x13\x86\xd0\xcd\xd7\x41\xc6\x10\xd1\x40\xeb\x00\x69\x90\x78\xad\x75\x60\x6d\x5b\x00\xda\xac\xe3\xd3\x64\x3a\x9c\x23\xeb\x98\x56\x98\x2e\xdc\x31\x96\xbe\x80\x7e\xe0\x82\x20\x19\xa8\xfb\x4c\x98\x12\x47\x2d\x3c\x0a\xb2\x13\x2e\xc8\x68\x06\x3b\xe4\x82\x8b\xa6\x93\xbc\xb6\xe0\xa2\xf9\x1e\xa2\x64\xa2\x59\xf6\xbc\x34\xc5\xd3\x3e\x17\x20\x20\x1d\xc9\xc0\x4c\x6f\xbd\x3d\x2f\xa2\x44\xae\x83\xc0\x4a\x8c\x6f\x0b\xc6\x9a\x41\xb4\xce\x82\xb1\xe6\x7b\x88\x56\x87\x1b\x2f\x0f\xa5\x38\xfc\x54\xf6\x3b\x47\x66\x3b\x78\x26\xe9\xa5\xf4\x3e\xf2\xcd\xce\x4f\x5d\x46\x7c\x34\xe1\x66\x76\x1c\x92\x4e\x4a\xbf\x69\x55\x5d\x7f\x3b\xf2\xc6\x6b\x86\xdb\x65\x00\xe9\x76\x75\xc2\x2e\x58\x87\x1d\x9e\x45\xfc\xff\xbe\x5f\xfd\x10\x25\x2f\x26\xdd\xa0\x46\x86\xe7\xa4\x22\x71\xc9\x11\x48\xb5\x97\x5d\x59\xe9\x0c\x34\x98\xb5\xff\x48\xff\xf0\x07\x6e\x6a\x27\x0d\x7c\x37\x2b\x95\xc0\x20\xac\x2c\x05\x21\x3a\xcc\x4a\xe5\x11\x68\xc7\x7b\xc5\x7f\x07\xcc\xbe\x9c\xcc\x27\x7e\x6a\x17\x30\x3a\x0c\xd0\xfd\xeb\x80\xc7\xed\xb0\xbb\x05\x52\x51\x40\x9e\x0e\x96\x13\xeb\xc4\x1b\xef\x3a\x3d\x9d\xd4\xcd\x12\x58\xf1\xfb\x0f\xf3\x64\xb8\x7f\x11\x6c\xe0\x9c\x46\x6d\x29\x0e\xd0\x65\x3f\x75\x1a\x84\xbd\x73\x2f\xd4\x8b\x80\x02\xa5\xe5\x05\x15\x6a\xf7\x65\xa2\x25\x9c\xae\xd0\xb1\xae\x74\x35\x13\xae\xb3\x17\x07\xe0\x89\xd3\xee\xfb\x0e\xbd\x7d\x2f\xda\x0b\xde\x21\xe5\x11\xd6\xce\x3d\xc7\x88\xbe\x69\x4e\x75\xe0\xb7\xf6\x74\x40\xcf\xd9\xd3\x5e\x3d\x27\xad\x05\x24\xac\x7b\x5e\x81\x97\x58\x6c\xe6\xa7\xca\xd4\xbe\xef\x13\x8d\x10\xdc\x47\x93\xd9\x73\xf2\x67\xa8\x0f\xcf\xa8\xc9\x90\x3e\xb3\x8e\x1f\xcd\x77\x8e\xfd\x2c\xc0\x97\x19\x5a\x65\x93\x51\x33\x4a\xd7\x1d\xd8\x49\x4d\x7f\xae\x12\x77\x45\x8e\xd8\xfb\x05\xd0\x12\x57\x2a\xfd\x9f\x4f\x89\x6a\xca\x5d\xe2\x69\x96\x12\xf2\xa1\x53\x5d\xd2\x0f\x62\x77\x3f\x4f\xca\xe1\xf8\x5b\xc8\x3d\x56\x91\xd2\xd5\x48\xd2\xa9\x68\x26\xae\x43\xfa\xec\x3a\xd2\xa8\x87\xde\x59\x14\x83\xf1\xb4\xda\xb3\x2f\x47\xc3\x41\x27\xa0\x79\x74\xe5\x06\x47\x79\x40\x64\xd6\xf1\x32\x74\x4a\x01\x4f\xf2\xc9\x18\x41\x36\x53\x20\x96\x5f\xc5\xe8\x4c\xd2\x1b\x56\x31\x3c\x85\xc9\x0e\x0b\xcd\xf7\x87\x3f\x08\x8a\xa3\x1a\xd0\xd0\x24\xc6\x82\x05\xad\x4c\xa6\xf7\x55\x07\x48\x04\x5b\xc5\x28\x4c\x8b\x30\x0a\x93\xa0\xaa\x05\xaf\x4c\xba\x51\x4a\x1f\x03\x8a\xc8\x82\x25\xa6\x2f\x9f\xa9\xf4\xb9\x1f\xc2\xd9\x07\x99\xe1\x2a\x35\x40\x9b\xf2\x9a\x73\x2f\xab\xa9\xb0\x43\x2f\x62\x83\x16\xb4\x32\x1d\x37\xe0\x82\x56\x46\x08\xab\x05\xab\x4c\x77\xdb\x83\x55\x26\xd0\xe1\x56\x69\x32\xab\xd2\x7d\xa5\x59\x6d\x5f\x1e\xfe\x41\x95\x4c\x43\x58\xbe\x01\x60\xfa\x41\x57\x92\x92\xe0\xf4\x28\x00\x80\x1d\x48\x4b\xe8\x66\x06\x99\x14\x4b\xba\x99\x45\xd0\xcc\x82\x6e\xc6\x1c\x90\x05\xdd\x4c\x07\x1f\x6a\x15\x0d\xa1\x16\xd6\x75\xa4\x78\xcd\xd9\x98\x85\x0f\xdb\x4c\x75\x2d\xc2\x29\x13\x1c\xb8\x97\x9c\x32\x8b\xe8\x9b\x05\xa9\x4c\xad\x16\xc0\xae\x8c\xfb\x7f\x15\x19\x47\x99\x3d\x05\x67\x16\x36\x97\x55\x06\x44\x51\x7e\x74\x62\x1e\x46\xf7\x2c\xdf\x2e\x1a\xb0\x2c\xad\x22\x16\x98\xad\x24\xef\x56\xd5\x4b\xae\x19\x67\x5b\xd1\xea\x8a\x24\x87\x46\xa6\x76\xeb\xa0\xcb\x0a\x97\xcc\x92\x46\x46\x4d\x07\x16\x99\xef\x0f\x7f\xc0\xec\x12\x5e\x63\x65\x44\xf4\x17\xcd\xb1\x28\x59\xb0\xc8\xd4\x62\x4d\xc3\xda\xd1\x02\xb7\x60\x3c\xf4\xab\x68\x8d\xb5\xaf\x81\x77\x24\x9e\x6d\x95\x6f\x0b\xae\xd1\xbd\x1f\xe4\x54\x52\xa3\x20\xc2\x0a\xf5\x19\x0a\x9a\xe8\x76\x23\x36\x80\x74\x1a\x69\x72\x65\x0b\x2d\x9a\x5c\x39\x6d\xac\xa2\xc9\xb5\x53\x3b\x4d\xae\x9c\x55\x16\xfc\x32\x9d\xfc\x9c\x25\xbd\xcc\xe2\xf4\xb0\x0a\x21\x35\x98\x37\x56\x49\x4c\xbf\xf6\x1e\x08\x3c\xe4\x6f\x2d\x78\x67\x02\x5b\xf9\x2a\xfa\xd1\x1a\xa5\x2d\xb7\x22\x0a\x58\x2e\x23\xaa\x07\xa1\x69\xb8\x8c\x38\xa3\x93\xcc\xba\x60\x9d\x89\xb4\xef\x00\xd7\x01\xc8\x67\x95\x13\x2d\xd1\xa9\x46\xb0\x4c\x71\x2e\x13\xef\xd2\x6d\x8d\xbe\x33\xbb\x45\x17\x59\xff\x0b\x2b\x64\xc1\x03\x93\x4d\xc9\x70\x9b\xdc\x43\x45\xc8\x66\x5b\x4a\x5a\x88\x60\x56\x38\xc7\xc8\x66\x5b\x7b\x59\xdd\x9a\xf9\xbd\xb6\x97\x15\x2c\x9c\x96\x8b\xb3\xd5\xf4\x82\xbd\x7e\x6e\xd6\x8f\x13\xe2\xdb\x5e\xda\x9e\x10\x18\x67\x87\x8d\x02\x8d\x77\xec\xe2\x60\x34\x50\x7e\x70\x9a\x2e\x8a\x80\x5b\xfa\x09\xde\xd5\xe1\xb6\x65\xa0\xa7\x69\x36\xce\x42\x98\x4a\xb7\x41\xbf\x5d\x3d\x86\xe5\x47\x02\x20\xbb\x3f\xbc\x33\xb1\xa5\xec\x77\x82\xd6\x73\xb7\x0a\x5e\xb9\x50\x34\x98\x0e\xec\x6c\xc2\xf9\x46\x4e\xed\x2a\x58\x79\xbb\xb5\x7b\xfc\x26\x43\x84\x23\xee\x20\xe8\x67\xc1\x3b\x13\xcb\x65\xff\x5a\x23\xe6\x00\x0c\x65\xc7\xb1\xff\xf0\x6d\x5e\x78\x7d\xbb\xd0\x38\x0c\xc3\x9e\xde\xe4\xa0\xc1\xa7\xb0\x60\x91\x59\x38\x93\x3e\x6d\x8f\x67\x26\xd7\x54\x09\x75\x04\x82\x98\x85\x6f\x70\x49\x10\x43\xf4\xd4\xaa\xe0\xe7\xac\xc3\xfb\x1c\x2d\xd0\x46\xea\x41\xb8\x01\x79\x2a\x0b\xb2\x98\xa5\xf6\x0c\x59\xcc\xc2\x97\xb6\xa0\x84\x09\xf5\xf9\x8a\xe9\x16\x6b\xf6\x82\xf9\x25\xc1\x66\x5f\x15\xff\x19\x27\xf4\x55\x6b\x37\x2a\x8e\x5a\x13\xef\x81\x9d\x6a\x55\x6c\xb7\x78\xfa\x56\xad\x34\x3f\x7c\x06\xca\x22\x5b\x59\xad\x11\x5a\x04\xa4\x2e\x4b\x11\x55\x31\xe4\xaa\x8e\x54\x76\x00\x87\x1c\xee\x16\x7d\x92\x0b\xee\x96\x85\xd3\x6a\xc1\xdd\xb2\x70\xc1\x2c\xb8\x5b\x16\x1e\xb2\x55\xbf\x43\xdd\xc2\xbb\xb6\xa0\x6e\x49\x4c\x09\xab\x36\x32\x3e\x99\xe5\xb5\xe3\x55\x64\x1a\xd5\x6e\x03\xf8\x7e\xe7\xfb\xcc\x28\x58\x5c\x16\x8e\xa3\x55\x3b\xdf\x64\xd1\xd7\x61\xb4\x9c\xd7\xbc\xcb\x3e\x5a\x87\x83\xef\x98\x7d\x32\x3f\x89\x8e\x59\xb0\xb8\x24\xf1\x7b\xab\x92\x84\xd6\xac\xf4\xa0\x57\xd8\x9d\x2b\x72\x9e\x34\xa7\x05\x89\x8b\xde\xd9\x05\xaf\x4a\x25\x67\x61\x41\x97\x22\x8c\xec\x82\x2d\xa5\x1e\xc5\x01\xc7\xad\x35\x1c\x3f\x92\x7f\x55\xc6\xe1\x48\xd1\x6b\xb9\x6a\x72\x4e\x43\x9c\xc1\x91\xb2\x5c\x8d\x50\xa4\x7c\x1f\xf2\x21\x0e\x96\xce\xae\xc4\xd7\xc3\x39\x00\x32\x93\x9c\xc8\x30\xc9\x4c\x0e\x92\xad\x56\xc5\xb5\x84\xc3\x74\xd5\x4f\x18\x2e\x82\xeb\x17\x2c\x27\xf5\x20\xe4\x65\x41\x73\x92\xcd\x29\xb8\xac\xb7\x65\xe3\x80\x22\x3b\x63\xd5\x4f\x64\x7e\x7f\xfc\x15\xf3\xb6\x60\x47\xc9\xe9\xb4\x3f\x0f\x5a\x4e\x31\xa7\xad\xa2\xab\x4e\x5b\xc5\x06\x04\xf1\x89\xc0\x17\x0b\xe2\x93\x05\x08\xd4\x82\xf8\xa4\x1e\xa4\xe3\x2c\x88\x4f\x16\xf1\xf0\x0b\xe2\x93\xa5\xd2\x0b\xf1\xc9\x1a\x0e\xe4\x27\xb2\xd7\xb0\x51\x24\x25\x2b\xdd\x20\x3e\xf9\x3e\xe4\x1f\xf6\x1b\x2f\x7c\x87\x87\x45\x40\xd6\x82\xbd\x24\xe7\xbe\x9f\xbe\xe0\x1f\x68\x72\xce\x27\xc2\xf5\x0f\x82\x70\x97\xf4\x25\x38\x28\x17\xf4\x25\x4b\x93\x0a\x2c\x25\xe9\xb1\xa5\xde\x8e\x06\xdb\x77\x45\xa8\x0f\xbf\x7a\xdb\x03\x6c\xc7\xf5\x86\xcb\x10\xe1\x58\xef\xe9\x1f\x74\xc7\x4d\x06\x8e\xc5\xdd\x84\x90\xba\x2e\x6f\x8a\x2b\xbe\xc0\x2c\x42\xf0\x41\x4d\x12\x44\x3e\x2d\x98\x43\xd6\xd8\xd7\x04\x36\x17\xe7\xef\x8f\x17\xfc\x28\x30\x39\xc3\xd9\x45\x5c\x83\xa7\x4c\x48\x41\xd6\xb0\xeb\x1f\xc6\xc4\xc5\xfe\x38\x26\x88\xd3\xfa\x30\x26\xce\xd9\xc7\x89\x13\xbe\xc1\x8a\x72\xd9\x3d\x06\xe8\xf9\x36\xfc\x40\x87\x25\x50\x0b\x67\xdd\xcb\x34\x71\x7c\x60\x96\xc6\x4f\xbe\x2a\x19\xc9\xc3\xa9\xf4\x5a\xb2\x02\x0b\x3f\x5e\xb1\x4a\x46\x03\x62\xfe\x83\x2c\xa4\x1e\x40\xb3\x2d\xc8\x42\x16\x34\x8a\x0b\x7e\x8f\x05\x4e\xd6\x82\x8a\x23\xdd\x7e\x60\xe2\xa8\x87\x66\xa8\x86\x63\x4d\x2d\xa7\x61\x9d\x23\x6e\x76\xb5\xc2\x7e\xc5\xe0\x36\xc8\x9b\x1d\x05\x18\x3a\x16\xf0\x65\x0b\x86\x8e\x05\x10\xe1\x6a\x85\xa6\x31\x95\x1a\xac\xce\xb8\x12\x56\x03\x97\xec\x50\xef\x68\x95\xa8\xcf\xc3\x3f\x64\x35\xe0\x43\x06\xe2\xe1\x3e\x59\x70\x7a\xa4\x67\x49\x38\x3d\x72\xb2\x1a\xe1\xee\x58\x98\x8e\x17\xd4\x1d\x72\x0b\x2d\x18\x3a\x92\xfc\x88\x05\x41\x47\x36\x3f\xfa\x29\xe6\x0b\x67\xc0\x82\x88\xa3\x1e\x9a\xf3\x20\xe2\x58\x30\x5b\xad\x66\xb2\xf0\xf0\x43\xaf\x91\xf0\x94\xdc\x19\x1e\xa6\x6a\x23\x8b\x98\x18\xfc\xd5\x88\x83\x3b\x80\x00\x5b\x30\x71\x2c\x20\xc3\x16\x4c\x1c\xab\x5b\x0d\x70\x19\x88\x0e\x58\x0d\x7e\x2d\x75\xb3\xd6\xa1\xea\xc5\xf1\xb8\x5a\x37\x02\x94\xd2\xf0\xc9\x11\x1c\xb0\xda\x30\x40\xd3\xeb\x8b\x67\x28\x6c\xfa\x0c\xed\x9f\x8c\x94\xd5\x9e\x8c\x4e\xf7\x19\x62\xb4\x2d\x78\x5e\xba\x92\x28\x80\xdc\x5f\x42\xc5\x56\x0b\x9a\xc6\x49\xb7\x91\xa5\x7b\xe4\x5f\xd1\x6f\xab\x05\x93\x09\x55\xb5\x61\x82\xd2\x3a\xd2\xa4\xbf\x62\xf3\x68\x89\x0b\x05\xc9\xdb\x70\x88\x1d\x1a\x5f\x1b\xb0\x33\x4a\x8d\x86\xe5\x88\xc8\xe6\xd5\x34\x10\xd9\xb1\x44\x10\xec\x2e\x10\xb3\xc1\x49\xa9\xd8\xc6\xa1\xb2\x60\xbc\x58\xea\x63\x52\x53\xc0\xa8\xbe\x1a\x72\xf6\xb0\x0f\x14\xa7\x88\x22\x29\x2b\xc0\x2c\x58\x50\x56\xd4\x83\x70\x9e\xd5\xb6\x38\xf5\x43\x4c\x69\x17\xd3\x69\xa7\xd9\x9e\xd3\x55\x46\x07\x2a\x4f\x2b\x6a\x7f\x3b\x8d\x60\xa7\x4a\xa7\xc1\x93\x48\x5d\x68\x2e\x0c\x89\x58\xed\x62\x2e\x0e\xaf\xbb\x0f\xf1\xa9\x8b\xc1\x0b\xaf\x6d\x10\x5f\x05\xfe\x61\xd8\x63\x8a\x4d\xd7\xeb\x4d\x23\x50\x24\x1a\x51\xd8\x7b\xf6\x81\xda\x70\x34\x1b\x71\x3b\xf2\x34\xee\xbe\xfc\x83\xaf\x2a\x36\xa7\x7f\x20\x1e\xd1\xda\x1a\xd1\xd8\xc3\x45\x0a\xb4\xc3\xb4\x04\x94\x56\x4d\xf1\xd0\x4c\x2c\x4d\xce\xd0\x49\x18\x73\xb1\x60\x93\x08\x2d\xce\xb0\x49\xd4\xa3\x39\xa7\x1f\x92\x9e\x1d\xd0\x07\xc9\x82\x66\xd7\x40\x7c\x38\x5a\xf3\x0d\x67\x03\xed\x47\x9c\x86\xd5\x46\x6b\x25\x85\x6b\x35\xb5\x56\x4f\x0c\xed\xb5\x03\xfc\x23\xfd\x83\x36\xa0\xb5\xea\x8b\x80\x37\x62\x91\x9e\xb0\xa0\x7e\x58\x70\xe6\x2e\xa8\x1c\x12\x5c\xbb\xd5\x95\x7c\xf8\x96\x57\x57\xf2\x71\x04\xee\xc5\xee\x0e\xae\xa9\x5e\xfa\xb2\xb1\x13\x14\xa0\x14\xe4\xe0\x01\xdd\xc3\x1a\x88\xdc\x5e\x19\x73\x0e\x5c\x50\x3c\x18\x9a\xb3\x7a\x15\x85\xfd\xab\x68\x6f\x94\xc5\x3a\xee\xc8\x28\x60\x25\x57\x6f\xce\x0b\x5b\xd0\xd0\x74\x18\xa9\xae\x52\xc9\x6c\xeb\xcd\x71\xde\x6f\xbb\xf7\xfb\xb6\xc2\xcb\x87\x98\x3c\x68\x89\x9d\x48\x01\xad\x21\x1d\x40\x2f\xd8\xa1\x57\x87\x22\xfe\x20\xe6\x73\x75\xe2\xa8\x88\xa9\x5a\x30\x44\xc8\x95\xb0\xfa\xd8\x99\x7d\xfe\xa0\x2f\x10\x5e\x7d\xaa\x17\xd3\x7e\x02\xac\xc8\x2f\x59\x7d\xd3\xf4\x54\x7f\x30\x86\xe9\x0b\xa0\x76\xb0\xae\xe0\x6f\xa8\x87\x47\x57\x08\x1c\x96\x56\xa6\x6e\x66\x27\xd3\x10\x9a\x86\xef\x21\xde\x16\x3d\xa6\x7b\x8d\x61\xdc\x61\x88\x94\x15\xc8\x1f\x8e\x09\x45\x68\xff\xb6\x7e\xe4\x82\x6a\x70\xea\x61\xce\xe7\x5f\x6e\xd4\xd5\x43\xd6\x4f\xaa\x05\x33\xdf\x6e\x2c\x36\x6d\xf5\x05\x68\x1b\xa6\xc7\x12\x88\x19\xa6\xbe\x08\xf8\x17\x9a\x7a\x70\xd7\x0d\x4f\xa0\xe1\xd7\x5f\x78\x54\x69\xb7\x66\x6c\x6b\xb5\x3a\x2f\xf3\x51\xac\xd8\x79\xf8\x3c\x13\x9f\xf0\x9e\x05\x63\xc3\x74\x2b\x80\xb1\xe1\xfb\x83\xe2\xe4\x96\xad\xbe\x81\x61\x0f\xe1\xda\xf1\xb1\x03\xe8\xb8\xfa\x92\x60\x9c\xfb\x9f\x4e\x5a\x89\x01\x5a\xb0\x3a\x14\xcf\x3a\x9d\xe4\x53\xe2\x98\x57\x3f\x09\x06\xd8\xf7\xc9\xa9\xda\xd7\x41\x96\x25\x4d\x23\xf9\x54\x7f\x43\x3f\xa5\xbc\xf0\x19\xba\x65\xdf\xa7\x5b\x8a\xdf\xbc\xb9\xa6\x01\x50\xb3\xeb\x86\xe8\x9f\x00\xad\xcb\xfb\x5a\xb3\x7d\xfe\xaa\xdf\x33\x68\xb3\x30\x4b\xb4\xe2\x37\x61\x60\x87\x7d\x70\x75\x12\x6e\x8a\x0b\xfa\x53\x47\x3b\xd8\x18\x0b\x9e\x88\xaa\xd7\x0d\x9a\x88\xa9\xdb\x10\x9a\x88\x4e\x7c\xc8\x82\x26\xa2\x01\x98\xb4\x3a\xb6\x07\xf5\xdd\xfe\x89\xdb\x3a\x1d\x3e\xc8\xd5\x49\x4f\x5a\xfd\x53\x52\x9b\x07\x91\x8e\x92\x4a\xe0\xcf\xea\x77\x38\x18\x7e\xf4\xf5\x07\x25\x7f\x22\x73\xea\x13\xeb\x10\xa7\xab\xa5\x74\x88\xd3\x0f\xfc\xcf\xab\xc3\x9c\x9e\x08\xb7\x0e\x73\x3a\x84\xcb\x4b\xce\x08\x4d\x23\xfd\x13\xa5\xbd\xdb\x45\x0f\xdd\xe2\xd0\x7f\xa2\xb4\xa5\xcd\x79\xf6\x64\xe1\x43\x0f\xa5\xed\x6b\xc6\xc3\xc2\x60\x51\xd7\x37\x01\x65\x44\x81\x63\x63\x41\x19\x51\xf7\x38\xbd\xe4\xfc\x3a\x33\x49\xc5\x24\x26\x66\x75\xa0\x05\xaa\x63\x40\x9a\xa5\xda\x51\x7f\x99\x98\x56\x94\x34\xcb\xe9\x3c\x78\xa9\x83\xf2\xef\x3d\x61\x09\xa1\xd2\xaf\x92\xc7\x4a\x90\x4f\xe9\x56\x05\xc3\xc4\xd4\xd4\x3d\xf0\x81\x13\x1d\xf5\x1d\x9f\xfe\xfb\x5f\x53\x90\x8e\x83\xd6\xb3\x2f\x8e\x4f\xca\x4f\x2d\xe0\x83\x50\xb3\xc6\xe6\x3e\x64\x07\x0a\xdf\x25\xef\xb8\x78\x7d\x81\x0b\x1c\x5c\x03\x61\x48\x4f\x0f\xb2\x1b\x35\xb0\xc2\x66\xd1\xc8\xfb\x59\xff\x88\x2a\xf8\x26\x7c\xe6\xda\xbf\x07\x06\x69\x22\xf6\x16\x04\x16\x35\xf6\xf3\x74\x2e\x1b\xc1\x28\xca\x38\xe4\x31\x0c\x16\xf5\x20\xac\x65\xc1\x60\xd1\x40\x0b\x5b\x30\x58\x4c\x38\xf1\x16\x04\x16\x55\xd7\xf8\x20\xbd\x91\xc4\xae\xef\xc0\x48\x64\x00\xb5\xae\xe4\xd1\x33\xa1\x86\x7a\x32\x01\xe0\xdf\x71\x81\x04\x97\xbf\x18\xb2\xbe\xbd\xfc\x2b\x71\xf9\x12\x0b\xd2\x76\x10\x41\xec\xb9\x73\x54\x16\xcf\xae\xfa\x4b\xe8\x32\xcf\x93\x14\x69\x14\xc0\x68\xee\x0c\x48\x94\xd1\x58\x25\x56\xfd\xdb\xb8\x26\x39\x48\x0b\xfe\x8c\x56\xec\x9c\x6f\xaf\x9a\x64\x63\x2e\xf8\x33\x8a\x67\x0b\xf8\x33\xa6\x16\x54\x08\x34\xbe\x8f\xf2\x72\x27\x49\x06\xd1\x0e\x9b\x46\xd5\x8f\x01\x9b\xc6\x24\x35\x7a\x41\xa6\xf1\xbd\x40\x97\xe3\xe2\x76\x9b\x84\x40\xe3\xfb\xc3\x37\x16\x6f\x50\x34\x74\xed\x00\x19\xad\xb1\xb7\xc0\xe9\x8f\x9b\x87\xa8\x93\x16\x74\x5f\x90\x95\xdd\xce\xc0\x82\xae\xa1\x1c\x36\x8d\xef\x65\x1f\x72\x41\x3b\x75\x3f\x3d\x7d\x2a\xcf\xc6\x80\xaa\xd9\xa9\x35\x3e\x99\xb7\xec\xca\xb9\x67\x04\x9f\xfd\x36\xd0\xaa\xf6\x05\xeb\x45\xdd\x8d\x20\xb0\xed\xd0\x10\x37\xe6\x4b\xff\xd1\x35\x90\xdf\x7a\xd4\x18\x41\x66\x36\xea\x1d\x0c\x18\x72\xfc\xae\x81\x73\x17\xf8\xdf\x4f\x75\x44\x17\xe7\x7e\xba\x21\xa1\x4d\x8e\x4f\x49\x5f\x9a\x37\x47\x02\x7b\x60\x7b\x72\x72\x9f\x1a\x25\x31\x8e\x6c\x60\xf0\x59\x7c\x2f\xfb\xd5\x8b\x20\x56\x1f\xba\x79\x81\x76\xa6\xa3\x98\xfe\x78\xf8\x83\x01\x4a\x83\x55\x79\x61\xd9\x01\x68\x59\x43\xf3\x8d\x73\x43\xf3\x8d\x56\xa7\x01\x14\x83\xb1\x10\x30\x60\x88\x8e\xf1\x1d\x31\x38\x16\x51\x27\xb0\x75\x0e\x27\xdc\x59\x4d\xc3\xa5\x71\xa0\xcc\x1b\xcd\x01\x1d\xc6\x4a\x1b\x41\x30\xb0\x9e\x1c\x48\x2f\x24\x58\x5b\x92\x5e\xa8\xbb\x42\x7a\xf1\x7d\xc8\xaf\x5e\x94\xec\x43\x34\xd4\x45\x07\x9f\x2c\x50\x6c\x6b\x10\x31\x16\xca\x87\x8b\xde\x73\x16\x6b\x3c\x71\xbd\x69\x3c\xd1\x6a\x31\x30\x9e\xec\xe5\x7e\xf9\x51\xda\x4f\x82\xa7\x12\x77\xc0\xa4\x5e\x5c\x63\x1c\x08\x34\x60\x0c\x0e\x04\x9a\xba\xc7\xed\xc9\x96\xe7\xdd\x89\x34\x58\x0d\x90\x87\x61\x47\x58\xd2\x6a\x1c\x9e\xd4\xc7\x2d\x2f\x1a\x43\x42\x72\x89\xd6\x8c\x71\x63\xe4\x57\x7c\xfd\x3e\xfd\xae\xd8\xf1\xc4\x1e\x6b\xd8\x80\x4a\x63\x19\xc0\x31\x38\x28\x68\xa1\x86\x56\x23\xf4\xed\x42\xab\x51\x8f\xb1\xff\xa0\x09\xca\xe2\x07\xc3\xe4\xf2\xba\x82\x2d\xeb\x35\x1f\x65\x0f\x18\x98\xb1\xc3\x26\x13\xb1\xa5\xcd\x11\xee\x8d\xd6\xea\xdf\x02\xee\xdb\xe1\x86\xd6\xcf\x01\x29\xd2\xa1\xc1\x69\xe0\x3c\x3d\x9c\x95\x0f\x4c\x09\x68\x6b\x83\x70\x2e\x12\xcc\xd6\x78\xdd\x09\xa8\xc9\xb7\xf5\x8d\x70\x50\x5e\x7c\x2a\x3e\x4f\x94\x97\x41\x52\xb0\x80\xd4\x2d\xe0\x8c\xf2\x72\xd4\xd9\x06\xbb\xe3\x40\x94\xd7\x6e\xe9\x46\x40\xa6\x9b\xbe\x6d\xb0\x91\xf4\xb8\x06\x04\x4c\x46\x39\x8d\xd7\xad\xd8\xeb\x87\xfb\xf4\xc6\xfb\xca\x6d\xf8\xbd\x3c\xa1\xcf\x73\x9f\x9d\x87\xb4\xea\x5e\xe3\x43\x41\x17\x84\x41\xa4\x13\xc7\xbd\x60\x10\x19\xc1\xf9\x0b\x06\x91\xef\x43\x85\x1f\xc9\x1f\x93\x6b\x62\xc4\xd2\x0f\x3d\xc0\xdc\xf9\xc2\xfb\x3d\xc3\x3e\x38\x41\xdf\xf4\x20\x23\xe5\x88\xe2\x69\x7e\x07\xa8\xa1\xea\x3e\x21\x7e\x3a\x3c\xb2\xcf\x02\x32\x29\x02\x60\x96\xf4\x8f\xc6\x8f\xcb\x1f\xfe\x83\x2e\x52\xbc\x26\xc6\xa2\x5b\xc4\xe3\x43\xd4\x83\x14\x50\x4d\x4f\xd3\x2d\x55\x9b\xcc\xac\x38\x6d\x91\x87\x53\xaf\x30\x2b\x7d\x92\x3b\x43\x8c\xe0\x9a\xdf\xa6\xd6\x20\xc4\x59\x53\x27\x2f\x62\x6f\xc2\xe9\x3a\xed\xb1\x06\xc2\x00\x32\x73\x36\xa0\x5c\x59\x31\x13\x4a\x57\xa5\xca\x6c\x6c\xc1\x68\x41\x30\x9c\xf4\xc9\x74\x81\xe0\xa4\x2f\x2b\xd7\x68\xc1\xb0\x2c\x5b\x30\xfd\x81\x89\x9f\x72\x3b\x41\x7e\x7e\x67\xa3\x07\xb0\x8d\xcd\x4e\x03\x90\x73\xd3\xfd\x4d\xd5\x67\x76\x12\xf3\xac\x51\x27\x29\x0a\x01\x38\xa1\x7d\x25\x6b\x74\xcd\x6f\x0f\xac\xaa\x2f\x93\x64\x9a\xba\x3f\x44\xa4\xcb\xb0\x34\xc5\xd0\xf4\x07\x91\x67\xbb\x4a\x80\x21\xec\x97\x7f\x78\x51\xe9\xba\x81\x2e\x86\xc0\x84\x73\xa5\xeb\xa5\x84\x73\xa5\x01\xb4\xb6\xa6\x40\x76\xac\x2e\x39\x57\x00\x59\x5d\x50\xae\xd4\x63\x38\xc1\x86\x09\xc3\x8c\xec\xb0\x5f\xec\xbc\x81\x37\x1e\x49\x3a\xdd\x1a\x35\x4c\x4c\x22\xb6\x34\xcf\x41\xc6\xd2\x9b\x23\x0b\xf6\x9d\x52\x6f\x4e\x55\x3f\x8a\x23\xc0\xdc\xf0\xc7\x39\x13\xf7\xb5\xf7\x81\x21\x3f\x7c\x1e\x15\x00\x59\x35\xb5\x8b\x69\x4f\x81\xc9\xa5\x6b\x48\x9d\x1e\x45\x91\x61\xd3\xa3\xa8\x36\x87\x19\x0c\x0f\x1b\xc0\x24\x6d\x32\xfd\x2a\x11\xe6\xc6\x05\x4e\x3c\xca\xb3\xf8\xcc\x24\x50\x93\x5a\x90\x36\x69\x00\xc2\xc4\x59\x52\x91\xbc\x53\xb4\xa2\xe3\xaf\xbc\x85\x35\x93\x25\xed\x44\x24\x82\x5c\x43\xe4\x4c\x97\x34\x3b\xff\xe4\xb8\xaa\xa5\x6a\x1a\x42\xae\x49\x6e\x9a\xd5\xb3\x1f\x22\x8b\xca\xe5\x93\x8e\x11\x4a\x07\x24\x2f\xdd\xb8\xcf\x99\x66\x0a\x78\x4d\xcc\x24\xc7\x94\xb9\x38\x45\xb9\x66\x96\x1c\x21\xf4\x0d\x00\x49\xe1\x24\xf0\xec\x4a\xf2\xf3\x9a\x3b\x02\xcb\x87\x30\x8b\xf0\xcd\xef\xe4\xda\x72\xbf\x7b\xfa\xbc\x7f\x80\xa3\xe5\x2c\x83\x44\x46\x15\x0f\x82\x98\xb6\x25\x00\x39\x9f\x9a\xf7\x21\x88\xa9\xc7\x74\x8a\x82\xf8\x00\x47\xf6\x9a\x46\x4a\x39\xd5\x2f\x70\xb7\x7c\x01\xf8\xa2\x03\x3c\xda\x35\x2f\x25\x3a\x5f\xbd\x70\xec\xb9\x74\xaf\xe1\x43\x74\xf1\x45\xc0\xbe\x32\x4d\x9a\x59\xfd\x4d\xf3\x62\x20\x8b\xd7\x9f\xae\xb4\xa5\x95\xbb\xfd\x1e\x79\x98\x06\xb4\xef\x4e\xce\xa6\x1e\x73\xe6\xf5\xfa\x10\x6f\xdc\xec\x3e\xec\x1a\x93\x20\x2a\xb0\xeb\xd6\x94\xc3\xd0\x69\x66\xb0\xb8\x8b\x43\x4f\x89\x6b\xd4\x58\x71\x94\x17\xc8\x66\xbe\x8f\xfa\x10\xca\xaf\xbb\x06\xf9\xa3\x46\x2c\x4d\xbc\xdc\x5b\x3a\x80\x73\xad\x3e\x0e\xd9\x4c\x01\x30\x6c\x4d\xbc\x29\x5a\xd9\x27\x5c\xb4\x80\xda\xac\x09\x68\x9e\xce\x1e\x08\x66\x52\x0f\xdb\xf4\x5c\xab\x22\x07\xc1\x4c\x18\x9a\x37\x7f\x26\xf8\xd3\xdb\x90\x14\x0c\x85\x2f\x21\x54\xc7\x16\x3f\x40\x2e\x18\x0f\x3c\x85\x5c\xe0\x7c\x3d\x1f\xd6\xb1\x13\x09\xc7\xb6\x1e\xae\xf9\x10\xc6\xac\xd4\x17\x08\xd6\x01\x79\x55\xc5\xa8\x1d\xc4\x33\x7a\x12\x27\x66\xc4\x3d\xc1\xd8\xac\xf5\xcd\x4e\xad\x88\xd3\x59\x05\x04\xde\xe1\x24\x79\x6d\x8e\x7d\x44\x56\xe9\x9e\xab\x2f\xea\x83\xd2\xc7\x6d\x19\xec\xe4\x15\x82\xc3\x32\x82\x50\xd2\x84\xee\xbe\x80\xbb\x16\x5c\xd0\x15\x87\xb3\x0a\x09\x02\x25\x4d\xe8\xd5\x83\x92\xa6\xeb\x84\x96\x92\x46\x7b\x24\x94\x34\xd5\xc8\x49\x68\x68\xaa\x0b\x23\x70\xa3\xeb\x28\x8a\xc3\xf6\x73\x9f\xed\x17\x80\x87\x05\xf3\x4c\xd5\xe2\x07\x75\x4c\x53\xe3\x86\x3a\xa6\x1e\x46\xd2\x40\x1d\xd3\xf6\x0b\x15\x2f\x20\xc3\x19\x20\xb2\x6a\xfd\x8d\xef\x7c\x18\xfa\xc3\xa2\x31\x82\x18\x45\x20\x7e\xa9\x07\x00\x5e\x2b\x9a\xb8\x00\x94\x86\xd1\x72\xf9\x0c\xfc\xc1\xc7\x9f\xba\x5b\xe0\x19\x8f\xee\x4b\xb4\x0e\xf1\x16\xa4\x41\xe9\x05\x0c\xb7\xc4\x38\xfc\x03\x28\xdf\xee\x35\xeb\xd0\xeb\x51\x49\xe5\xa1\x75\xc3\x29\xc0\xcb\x43\x1c\x3a\x5a\x34\xa0\x9a\x43\x21\x88\x61\x1e\xa0\xf7\xc1\xbc\x67\x85\xc5\xb7\x49\x15\x5d\xb9\x01\x5e\xf6\x61\xe4\x09\x3c\x30\x95\xfc\xa0\x15\x93\xc3\xa9\x5d\x09\x1e\x0f\x89\x83\x0b\x1e\x98\xae\x8d\x28\x26\x07\x16\x24\x6c\x4c\xec\x75\xa8\x4d\x11\xa4\x0a\x39\xb6\xec\x20\xb0\xb3\x2d\xa8\x5f\xea\xa1\xb0\x82\xfa\xc5\xe0\x31\x49\x5d\x94\x29\x12\xb6\x28\x3a\x20\x69\x69\xee\x7b\xa1\x38\x27\x03\x62\x41\xd2\xa2\x32\x11\xf9\x78\xdf\x1f\x20\x64\xa3\x71\x86\x67\x31\xa3\x10\x60\x72\xf9\x7e\x50\x1c\xd9\x98\x0a\x92\xf8\xe4\x76\x83\xe7\x74\xc5\xff\x31\xf6\x3e\xb9\xba\x84\xbe\xba\x5e\xff\x37\x8a\x3b\x84\xa2\x0a\x6c\x23\x2d\x9d\xb9\xd4\xdf\xf4\xd2\xc8\xfc\x1b\x11\xcf\xf3\x9d\x28\x52\x72\xb5\x4f\x8b\xb5\xbd\xab\x3e\x28\x30\x60\xcc\xeb\xd7\xb8\x10\x0f\xc7\x80\x63\x56\xa8\x0d\xa7\x2d\xe5\x5d\xc8\x76\x42\x8d\x39\x6d\x12\x56\x00\xb9\x5c\x9a\xa6\x25\xb9\x5c\xd6\x7f\xf8\xc6\x47\x6d\x7c\xc4\x5a\xa0\xd3\xdd\x2d\xe5\x97\x4b\x7b\x1b\xf8\x51\x70\x0e\x26\x4d\xcb\xd4\x13\x98\x9c\x89\xf4\x16\xa6\x67\x22\x2c\x62\x92\xae\x4c\xe1\x4d\xe4\x5c\xd9\x37\xbd\xba\x29\xfc\x87\xa3\x5f\x72\xf4\x81\x6a\x69\x92\x5c\xa5\xc4\xed\x25\xe0\x1c\x0f\xce\xf9\x10\x1b\xe8\xdc\xf6\x88\x23\xb6\x3b\x39\xe2\x78\xf3\x92\xf0\xa4\x79\x08\xc8\x37\x21\xed\xe3\x87\x44\xe7\x08\x85\xce\x57\xea\x67\xff\x5e\xbf\xb4\xdb\x0a\xf8\xcd\x5c\xff\x93\x93\xc5\x26\x80\x39\x3f\xb6\x7d\x35\xe6\x83\xf3\xc1\xa6\xae\xb5\xa7\x48\x92\x37\xcb\x9b\x5f\xad\xb7\xda\xa4\x98\x3c\xf8\x5b\x62\xea\xc6\xdf\x9c\xf1\x77\x9f\xb1\x06\x94\xdb\x7c\x2a\x81\x1e\x92\x4f\xa5\xbc\x0e\xab\x4d\x52\x79\x6b\x00\x85\x1e\xca\xa7\x2f\x27\xff\x20\x36\xb3\xf9\xf2\xe5\x7f\xf8\x14\xc4\x45\xbb\x0f\xd9\x65\xcc\x31\x52\xb3\x94\x9e\x24\x52\xb3\x94\xb7\x04\xa4\x66\xc9\xf4\x05\x28\xfc\xa1\x9d\x99\xd5\xf0\xf9\x73\xba\xae\xe6\x3c\xef\xfc\xbd\xc6\xc4\x28\x10\xd2\xaa\x4c\x62\x67\x67\xed\x04\xad\xfb\x09\x3b\x53\x49\x87\x5b\x01\x00\x72\xd9\x2b\xb0\xa1\x5e\xbd\xd5\x21\xde\x86\x67\xc0\xf3\xc0\x12\x38\x8b\x80\x4d\x81\x13\xbf\xb4\x2a\xa8\x2a\x69\x55\xf6\x4d\xdf\x63\x1d\xfe\xd0\x3f\xef\x4d\x4d\xae\xa2\x33\x84\x1c\x2a\xe5\xb1\x80\x1c\x2a\x09\x7b\xdf\x2c\xd2\xba\x7a\xa6\x20\x9f\xca\xd4\x1d\x4c\x3e\x95\x32\x44\x84\x1c\x2a\x95\x2c\x63\xa4\x50\x99\x5e\xd7\x95\x6e\x28\x35\xab\xbc\x2e\xb6\x3f\x06\xd7\x4f\xf6\x25\x11\x9c\x51\xfe\x3d\xf8\x9b\x67\x42\x6b\x82\xc9\x51\xb0\x89\xe8\x1e\x2d\x69\xa3\xad\x19\x7a\xff\x70\x20\x20\xec\x0c\x47\x9a\x6b\x64\xe3\x32\xc8\x75\x62\x9e\xd3\x49\xaa\x93\x7d\x9b\x9b\xff\xe1\xe7\xd0\x6c\x89\x3b\xd5\x56\x62\x20\x7e\xdd\xf2\x4b\x73\xe5\x8f\xca\xdf\xe7\x33\xe4\x68\x53\x59\x13\x63\xde\x41\x49\x00\x7d\x53\x39\x79\x51\x59\x0e\x8a\x00\xce\x66\x43\xc9\x91\x98\xbf\x77\x5f\x33\x92\xf2\x37\xe7\x49\x1b\x0a\x49\x68\x53\x9f\x61\x34\x81\xa1\x7c\x92\x3d\xe5\xd0\xe0\xa8\x5f\xe6\x01\xde\x2d\xd2\x16\xaa\xa9\x85\xb9\xaf\x46\x6a\x95\x3b\xf3\x0a\x96\x94\xee\xdf\x10\xd0\x39\x1a\x78\xd4\xbc\x6c\x28\x3c\x6a\x22\x1f\xc8\xb6\xb2\x3a\x8b\x0f\x76\xb5\xf6\xc8\x52\xac\xd6\x8d\xbd\xad\x30\xbe\x75\xc7\xd4\x84\x9a\xce\xaf\x99\xbf\xae\xa6\x49\x04\x79\xa6\xdd\xce\x22\xee\xc2\x5d\x73\xf8\x90\x6f\xe0\xc4\x67\xc3\x29\x6e\xd6\x0f\x67\x21\x2b\xbd\x56\x5c\x89\x87\x22\x27\xc3\x2c\xf3\x39\xaa\x09\xde\x34\xa9\x77\x6b\x3b\x68\xc2\xea\xc8\xee\xb2\x6f\xd3\xd5\xe0\x04\x8b\xce\x8a\x56\xd8\xee\x9a\x77\xa5\xdb\xcd\x11\x81\x62\x74\x13\x40\x4d\x76\x97\x1f\xfe\xbc\xb4\xd1\x45\x31\xd6\xc5\xf2\x8e\x89\x5a\xf8\xd7\xc4\x1f\x93\xf6\x65\x8a\xfc\x2d\x68\xcc\x0e\x27\xee\xed\x87\xb2\x81\x90\xeb\x65\x0a\x3a\x2e\x7d\x64\x3a\x52\x0b\x1f\xd9\x6f\x3d\x84\x47\xfa\xb7\xbc\x99\x4d\xd1\x93\x3a\x89\x5c\xe2\xb7\x40\x3d\x45\x87\x2b\x97\xa2\x8d\x5f\x7d\x34\x14\x7c\x99\xc4\xb8\x7e\xe8\x8b\x1f\x8d\x73\x49\x69\xec\x0a\x40\x2e\xfd\x5f\xea\xfc\xda\x28\x86\x16\xa4\x09\x5b\x34\x39\x6b\xed\x13\xb3\xf9\xfd\xba\xb2\xf4\x59\xd4\x8b\x8f\xd0\x56\xbc\xea\x89\xcb\x1b\x66\xb0\x2e\xe6\xd2\x0c\xc6\x48\x27\x71\xcb\x7a\x88\x9f\x25\x34\x51\x84\x1b\x19\x5a\x4a\xbb\x99\x0c\x2d\xf9\xdf\x2f\x90\x5e\x60\xf3\x87\xcc\x51\xfe\x4f\xb6\xb7\x39\x8d\xfd\x47\x57\xa6\xdb\x8b\x40\xbf\x09\xdb\x8a\xdb\xe2\xdc\xf8\xaa\xdd\xbf\x89\x5f\xda\x7c\x46\xed\xc7\x24\x99\x1b\xfe\xc4\xe6\xdf\x0f\x5d\xb2\xba\xcd\xe4\x2f\xfa\x1f\x49\xfe\x22\x35\xf6\x24\xf7\x4b\x09\xb1\x9e\xbf\x8d\xa3\xf8\x9b\x95\x92\x29\x4e\xbe\x97\xa9\x77\x67\x82\x1c\x25\xe6\x78\x92\xfb\xa5\xc2\x77\x77\xfd\xc1\xfc\x3e\x3c\x2a\x84\xa1\x4e\x53\xb9\x78\xff\x48\x96\x96\xd9\x76\xff\xc6\x73\xcb\x46\x33\xb9\xbd\x68\x9e\xd3\x26\xc0\x4e\xb8\x72\xe7\xc4\xeb\x03\x25\xf7\x9c\xa0\x84\xc8\x90\x3f\xc9\xde\xb2\x37\x18\x8b\xe7\x24\x8a\xff\xb0\xef\x08\xd0\xd3\xfb\x3a\xb9\x9a\x17\x45\x31\x07\xae\xee\xee\xdf\xc0\xa7\xd0\xd0\xc9\x35\xfd\x2f\xcc\x68\x12\x88\x07\x91\xce\x9c\x50\x48\xaa\x59\xe4\x84\x59\x0f\xf9\x0f\x92\xeb\x60\x9c\xcd\x61\xca\x16\x7f\xc9\x6f\x70\x74\x88\xa9\x33\xf8\x70\xb2\x6b\x40\xe7\x3d\x67\x40\xbd\xc5\x01\x86\x6c\x31\xeb\x05\xaa\x0e\x8f\x36\x54\x1d\x56\xe7\x97\x02\xe2\xf7\x20\x3d\x09\x91\xdb\xed\xbe\xb5\x85\xec\xda\xe9\xd3\x74\x59\x58\x7f\x13\x4a\x15\x92\x2d\x4c\x32\xc7\x1c\x1e\x30\x67\xfa\xa1\xbf\x87\x3a\xcd\xf0\xa1\x01\xa3\x9a\x3f\x14\x10\x21\xd3\xbc\x64\x6a\xd9\xa2\xb5\x55\xec\x86\xa9\x91\x82\x66\x37\x59\xd0\x9c\x6b\xaf\x68\xbf\x01\x25\x58\x8e\xdc\x70\x73\x92\x13\xbc\x6d\x7e\xb4\x9b\x05\x86\x1a\x89\x6a\x86\xb1\xa1\xe4\xa9\xd9\x49\xdb\x34\x67\xd1\x22\xb5\xb3\x48\xaa\xa6\x06\x9b\x38\xbc\xfb\x0c\x2d\xc2\xea\x98\x6c\x0a\x9d\x8d\x63\xe2\xa9\x69\x70\x20\xcc\xb9\x76\x85\x61\xc0\x1f\x79\x6d\x9a\xfe\x85\x89\x69\xdf\x60\xb9\x9c\xb3\x6c\x2a\xdf\x5c\xbf\xa6\xd2\x19\x05\xad\x12\x7b\xca\x64\x57\x30\x42\x90\xec\x37\x87\xe8\x7e\xb2\xdf\x74\x2d\x24\x92\xdf\x74\x2f\x8b\x27\x2e\x99\xe9\xbb\x27\x57\x79\x2c\x1a\x93\xec\xe0\x7a\xcf\xc9\x77\x53\x87\x1d\x79\xe2\xba\xb2\xbf\x40\x96\x4e\x7f\x1f\x67\x8b\x08\xa1\x29\x57\xb4\xa7\xd6\x09\x75\xa6\x81\x90\x13\x67\x8b\xb6\x0b\x79\x6d\x52\x77\xfb\x7c\x00\x28\x3a\x6a\x40\x93\xbc\x69\x26\x03\x4d\xb9\x01\xcf\x47\x55\xc0\xe4\x98\x5c\x51\xe8\x95\x9e\x0f\x28\x36\x5c\x3e\x13\xcc\x92\x08\xa9\x89\x2d\xaf\x43\x97\x94\x35\xeb\x65\x6b\x23\xcb\xc0\xfc\xa7\xf9\x46\x3e\x9b\xf5\x96\xd5\x60\xf4\x95\x3f\x67\xef\xab\x1c\xa0\x4b\xdd\xf3\xe6\x2b\x7d\xb6\xeb\xcc\x6b\x58\x25\xda\xc1\xf2\xbf\x3b\x6b\x5e\xd3\x6f\xf0\x02\x54\xfe\x46\xbe\x4c\xac\x7b\x2f\xe7\xc8\x3a\xb3\x37\xf7\x02\xd2\xce\xa4\x37\x04\x27\xac\x2a\x2a\x3b\x09\x62\xa6\x80\x42\xf3\xc3\x88\x25\x22\x3f\xcc\xd4\x5d\x47\xb6\x97\x29\x02\xea\x24\x9e\x1a\xb6\x93\x79\xee\x17\xa1\x97\xbc\x0b\x29\x6e\xf3\xea\x88\x54\x2c\xd3\x48\xd2\x13\xd4\x25\x04\xcf\xf3\xe4\x62\xb8\x69\xb5\x9d\x98\xcf\x5a\x52\xa4\x62\x99\xa4\x39\x9d\xe7\x01\xca\xfc\x27\x67\x2c\x50\xdd\xd3\xd5\x71\xfa\xae\x3f\xc4\x22\x70\x82\xb4\x74\x85\x23\x5f\xcb\x14\xbf\x72\xe2\x01\x20\xfb\xe5\x3c\x59\x29\x45\x0f\x9d\x20\x9a\x5c\x4c\x4e\x30\xf0\xde\x78\x92\xba\x65\xff\x6d\x14\xe4\x6e\x99\x1e\xc4\x4c\xbe\x42\x26\xb1\x79\xba\x22\x92\x88\x79\x9e\x00\xe2\xd3\x0e\x00\x10\x2f\x38\x9b\xac\x2c\x93\xf4\xa7\xf3\x1c\xf2\xc4\xf2\x0c\x99\x58\x84\x34\x92\x89\x65\x6f\x86\x62\x9d\x40\x33\xf5\x43\x9c\xd8\xd7\x86\x09\x90\x8a\x65\x92\x16\x76\x92\x89\x65\x6f\x46\xb7\x92\x8a\x65\x37\xdc\xff\x34\x96\xd8\x9a\x09\x76\x12\x16\x4e\x2a\x96\x0e\x3b\xe5\x24\x13\x4b\xdb\xd1\x3c\x32\xb1\x1c\xcd\x8e\xc4\xd6\x6e\x30\x15\x4d\x52\xb1\xb4\xd6\x7d\xa1\x73\x41\xa0\x7c\xcd\x69\x83\xe9\x4e\x16\x4a\xd8\xf7\x26\x59\x59\x76\x63\x7e\xcf\xb5\x50\xc6\x96\xfe\xcd\x15\x07\xdb\x12\xd9\x5a\x0e\xd7\x8c\x73\xad\x93\x41\xce\xc4\x79\xba\x4e\xfa\x65\x6b\x99\x0c\xfd\x93\xe7\x2f\xbf\x38\xcf\x94\x5d\x84\x27\x8a\xf4\x2e\xfb\xef\xeb\x8b\x06\xb1\xe3\x92\xde\x65\x37\xfe\x85\xf4\x2e\xad\xec\xd2\xb5\x4e\x86\x90\xb4\xd3\x75\xf2\xf7\xc9\x20\xb0\x5c\x03\x4e\xd7\xc9\xf4\xe5\x1b\xce\x69\xe5\x20\x18\xd4\xd3\x65\x3b\x07\xec\xad\xf3\xd4\x76\xb6\x82\xb5\x32\x86\x13\xfb\x9c\x58\xed\xac\x13\x64\x80\x09\xe7\x35\x19\x60\x56\xc5\xfe\x63\x1d\x3b\xf6\xe9\xcb\x70\x43\x38\xc8\x90\xf9\x93\xbd\x75\x92\xcf\xa5\x8b\x1d\x24\x9f\x4b\x6c\x3f\x79\x68\xf2\x53\xc3\xb2\x8a\x03\xea\xd0\x49\xca\x96\x26\xfe\xfc\x94\xa5\xc4\x59\x44\x06\x73\x2f\x75\x48\xd9\x92\xe1\xfc\x85\x60\x58\xa3\xf3\x24\x15\xa2\x9e\xaa\xf3\xe2\x77\x54\x90\x6b\x4a\xed\xd9\xfe\xb5\xba\x9d\xc4\x6f\xe9\x36\x3f\x09\xed\x35\xdf\xf2\x24\xe9\x4b\x1a\x5b\x78\x92\x89\x2c\x54\x6e\x56\x6c\x7d\xb7\x24\x80\x49\x8f\x40\xe7\x8d\xd1\x81\x3d\x45\x3e\x96\x5f\x7c\x36\xf9\x58\xf6\x1f\x24\x81\x7c\x2c\x69\x78\x28\xf9\x58\xa6\x38\x94\x73\x2d\xeb\x87\x2e\xe7\xf3\x31\x0b\x08\x3f\xca\xc5\xb3\x61\xdb\xe4\x6c\xf9\xc5\x76\x93\xb3\x65\xfd\xa8\xff\x28\xb0\x1a\xbe\x80\x33\xc9\xb9\xea\x32\xfc\x5b\xc4\xb8\x85\xd6\x7a\x21\x05\x4b\xfe\x66\x06\x24\x85\xe2\xad\x48\xbb\xb2\xb7\xdf\x24\x66\x7d\x36\xfe\x81\xb4\x2b\x53\x14\xd7\xf9\x5a\x03\x3f\x0a\x17\xa1\xd0\x22\x12\xa7\xec\x8d\x34\xbc\x93\xcc\x29\x49\x2e\xf2\x49\x8a\x93\x6e\x93\x2e\x9d\x2c\x8c\x35\x89\x4c\xf6\xb6\xd3\x8c\x0b\xcf\xaf\x56\xcd\xc5\x82\x0e\x67\xec\x24\xab\xc9\x7a\x28\xf9\x87\x55\xaf\x5e\xba\x30\x77\xb5\x58\xc8\x45\x32\xc5\x13\x5d\x10\x0d\x6a\xa4\x5c\x3b\x3d\xcc\xf2\x79\xed\x3e\xef\xdf\xdd\x99\x7b\xf0\x0f\x48\xd2\x7c\x79\x57\x47\x99\x59\x24\x26\x29\x52\x2b\x4c\xf2\x92\xec\x92\x91\xce\x6b\xc7\x94\x0f\x1f\x12\xab\x40\x33\xe0\xbf\xd0\x0d\x7e\x1d\xf6\x3d\x5b\xe0\x45\x2e\x2f\x2f\xe7\xaf\x63\x5f\x16\x08\x47\xd4\x0b\x92\x5a\x31\x1c\xd7\x61\x22\x66\x6a\xe3\x62\xd4\xf8\xc2\x4b\xb0\x3d\x1a\x73\x75\xbe\x01\x2d\xb9\xe0\x12\xd4\x6d\x7a\x75\x55\x8f\x4f\xe0\x5a\xb4\x79\x6f\x70\xc1\xc3\xae\x7f\xeb\xea\x1e\xb1\xfc\x51\xc6\x8d\x3d\xf6\xea\x9e\x33\x7c\x9e\x71\xde\xad\xe0\x83\xf0\x9e\x2f\x1e\x9b\x3f\x4a\x2b\x08\xb4\xf2\xde\xe0\x82\x82\x56\x9d\x24\x55\xca\x8f\x49\x80\x54\x29\x7b\x33\x82\xc1\x5c\x29\x90\x5b\x4f\xd3\x9d\xec\x76\x45\xe2\xc6\xc6\x64\x27\x8b\xc9\x24\xe9\xd4\xbc\x0a\x0a\x3b\xfb\x94\xc5\xb4\x79\xfd\x79\x11\x20\xf5\xfb\x21\xd3\x98\xd8\x5f\xac\x75\x32\xe4\xce\x0b\x36\x05\x2d\xaa\x8b\x00\x51\x72\xde\xcd\x4b\xea\x3d\x55\x52\x8a\x3d\x15\x69\xe2\x7d\x67\x6b\x20\x73\xc9\x8f\x76\xe5\x92\x24\x4f\x05\x03\x0a\x03\xd7\xd8\x24\x99\xc8\xde\x20\xc3\x9a\x24\x13\xf9\x51\xc7\x90\x4c\xa4\x74\xd1\x92\x96\x63\x8a\x0b\x20\x2d\xc7\xd4\x09\x4c\xca\x8d\xe9\x25\x0d\x19\x37\xf6\xd6\x55\x05\x92\x41\x91\xf9\x7e\x5e\xe6\x62\x55\x3b\x31\xf1\xc4\x36\x91\x29\x63\x6f\x86\xe6\x92\x2a\x63\x66\xfd\x13\xd2\x4b\xbe\x8c\xa9\x6f\xfe\xd2\x94\x13\xa1\x41\xc2\x8c\x09\xcf\xdc\x24\x49\xc6\x34\x62\x96\x24\x19\x53\xbc\x0a\x49\x32\x76\x33\x69\x4c\xb2\x64\xcc\x54\xa5\x89\xc1\xf4\x6a\xeb\x7a\xf1\x16\x3a\xf0\xc4\x03\xb5\xae\x46\x10\xdf\xa3\x0b\xed\x32\xfd\xe0\x54\x4e\xcd\xaa\x16\x48\xc8\xf6\x53\xf6\x8f\x75\x93\x1e\x21\xbb\xc3\x4c\xf6\x1d\xb2\x3b\xfc\x08\x4c\x6e\x57\x07\x76\x4b\x12\x34\xcc\x62\x4b\xb9\x81\x65\xc8\x6e\x34\x6f\x80\xed\x62\x94\xc9\xdc\x50\x3f\xf9\xee\x0b\x83\xbf\xd1\x26\xf6\x8b\xdb\x15\xc1\x00\x4e\x32\x2b\x4c\x61\x56\x64\x50\x98\xc2\x8f\xc9\xa0\x30\x49\x6d\x36\xc9\x9a\x30\xc5\x2e\x93\x29\x61\xca\xb5\x72\x1f\x56\x4c\x65\x9c\x9e\x35\x58\xc9\xa0\xb0\x37\xf1\x67\xf7\x41\x05\xb8\x47\x6e\x80\x15\x4d\xb8\x25\xb9\x15\x66\xfe\xfe\x56\x3d\xd0\xa1\x9b\xa0\x4a\x5d\x9f\xf7\x71\xfa\x1f\xf4\xc6\xc1\x0d\x2b\x2a\x71\x1f\xcc\x5e\x76\xaf\xbb\x5b\x05\xed\x20\x7a\xd2\xb3\x87\x19\x18\xbc\xe6\xb8\x07\x6d\x45\x19\x6e\xcf\xd2\x06\x2b\xde\x40\xde\x85\x2c\x93\x8e\x61\xfd\x07\x6f\x0f\xb6\xa0\xe6\xdb\x49\x50\x81\x0f\x31\x56\x98\xd4\xf7\x50\xad\x94\x0b\xa9\xb4\xfb\x96\x19\x39\x5d\x05\xef\xe0\x20\x8e\xb5\x71\x87\x13\x90\x9a\x93\x1f\x62\x73\x21\x51\xc3\xfe\xa3\x6b\xb8\xa5\x08\xc5\x38\xbb\x3d\xc5\x7a\x49\x76\x2f\xeb\xac\x6b\x92\xdc\x24\x86\x36\xaa\xe7\xae\xcd\x87\x68\x13\xa7\x55\xd7\xc1\x5f\x9e\x07\x16\x0e\x72\x38\xa4\xb1\x34\xa6\x70\x68\x02\x8d\xee\xe2\xb2\x86\x8d\xfd\x36\xe2\x92\xc5\xe2\x76\xa5\x11\x44\x74\x4f\xfb\x0c\xd5\xbd\x49\xfb\x2c\x18\x94\x4c\x0f\xeb\x3f\x68\x2d\x31\x8f\xfa\x9a\xc8\xca\xb0\xff\x20\xa0\xa6\x65\x30\x04\xe0\x3e\x7f\x95\x53\xc9\x69\x25\x36\x97\x98\xc4\xdd\x1e\xd1\xaa\xf1\x12\x99\x4c\x06\x87\x3b\xd2\x4d\xc8\x75\x53\xd3\xa4\x17\xb3\x43\xb4\x06\xb0\xe2\xa1\xf6\x4f\x2f\xef\xa1\xf0\x2f\x03\x48\x6e\xdc\x6d\xe1\x1c\x7a\xcd\xbb\xc9\x67\x7f\x66\xf3\xe4\x37\x61\xe7\x37\x74\xe5\xfe\x11\x13\xab\xee\xe6\xbc\x67\x32\x3e\x26\xa4\x47\x51\x1e\x2f\x50\xd0\x26\xd8\xf6\xf7\x66\xe4\xc7\x23\x3f\x06\xe6\xe7\xd3\x0c\x6b\x2d\xfe\x26\xec\x9e\xf9\x07\x2f\xfe\xde\x04\x92\x40\x8c\x3f\x63\xfb\xe7\x31\x15\xd6\xfc\xf5\x16\x75\x12\x8a\x17\xe8\xdd\x63\x82\x79\x16\x15\xa8\xef\x4b\x53\x5b\xea\x7b\x99\xde\x26\xdc\xf7\x15\x9c\x8c\xe1\xac\x9f\x46\x55\xc1\x59\x3f\x7f\x3f\xca\x4d\x88\x0e\x72\xf8\xe2\x53\x68\x07\xbc\xf0\x53\xe7\xf7\x83\xaf\xaa\xa1\x38\xcf\x50\xce\xef\x7b\xa7\xc1\x94\x87\x39\x7d\xea\xa8\x80\x39\x3d\xbd\x28\x78\x4c\x47\xcc\xec\x82\x20\x7d\x0a\xd4\x78\x38\x42\x39\x72\x8f\x47\x28\xed\x18\x48\xce\xeb\x48\x5f\xa6\xd1\x0c\xdd\x43\xdc\x88\x1e\x8f\xa7\x1c\x09\x2a\xc6\xf1\xd2\xb4\xd3\x1f\x88\x6f\xbd\x47\x7d\x88\x17\x56\x4f\x1e\x80\x2a\xc1\x02\xfe\x68\xfc\xa7\x23\x31\x6d\x06\x2f\x9f\xdc\xa0\x60\x28\x3c\xc4\x91\x79\xe3\xf9\x90\x07\x58\x6f\x0e\x6c\xe3\xb5\xf9\x69\x02\x41\x6c\x1d\xbe\x6b\xef\x38\x1f\xf6\x49\x6f\x5a\x1f\x53\xfc\x92\x44\x65\x3e\x37\x7d\x87\xc6\xc1\x1d\xbe\xfe\x83\xb7\x4d\xda\xe1\xdf\x0f\xcd\x3e\xfc\x1b\x6b\x8d\xd5\xe5\x79\xf8\x4e\x8d\x83\x07\x07\xc8\x4f\x99\xc8\xa0\xe1\x91\xe2\x01\x7e\xe9\x11\xef\x21\xd4\x55\xd7\x3f\xec\xdc\xd3\x23\xc5\xf3\xd9\x0a\x9a\xf7\x39\x82\x3c\xff\xd1\x47\x87\x7f\x43\xd7\xfa\x7b\x86\xdf\x67\xce\xc0\x9c\x3d\x3d\x3f\xbc\xcd\xba\x82\xbf\x6d\xc3\xc1\xdf\x17\xcf\xec\xfc\x7d\x4b\xe0\xe1\x43\x68\xfd\xef\x6f\xae\xc6\x58\xe2\xa1\xd1\xde\xbd\x1d\x7c\xd7\x5e\x16\xaa\xe0\x6b\x88\x29\x06\x0a\xf4\xda\x21\xf8\x07\x7a\xed\xdd\xed\xe1\x75\x8f\x73\xf5\x7e\xb9\x1e\x14\x97\xfe\x92\x0f\x62\x63\x15\x7c\x9d\x14\xae\xfd\xf0\x6b\x77\x1d\x9b\xaf\xe8\x78\x77\x0b\xf8\xb5\xbb\x6e\x99\x57\x4b\xd7\xb5\x1c\x0a\xed\x90\xe3\xe0\x3d\x68\x07\x9a\xfa\x02\x31\x14\x64\xfc\xba\x15\x7a\x67\x0d\xb7\xf6\x01\x65\xea\x7c\xc9\xf7\x20\x75\xd3\xbb\x76\xc2\x90\x71\xe9\x5d\x3b\x61\x48\xd7\x04\xcf\x76\x73\x13\x79\xd7\x7e\x17\x92\x23\xbd\xc7\x27\xcb\xf7\xfa\xbb\xff\x5a\xc4\x0f\x01\x9c\x20\x25\xd0\x84\x7f\x3b\x74\x73\xbf\x1d\xd7\xa9\x2f\x93\xa8\x41\x70\xe3\xfb\xdf\x08\x40\x6a\xeb\xd4\x50\x3e\x44\xd7\x33\x77\xde\xf1\xab\x81\x37\x06\xdf\x8c\x59\x04\x1b\x77\x88\xff\x78\xf5\xb3\xe8\x6d\x7e\x07\xdf\x83\xb1\xf5\x0e\x2c\x71\xfb\x5e\x43\xb9\x8e\x7f\x1e\x54\x5f\x7d\xd4\x9e\x66\xde\x41\xc3\x58\xe4\x61\xfa\x8e\x5f\xc3\xe2\x97\x3b\x86\xbf\x87\x2f\xf8\x1f\x6b\x9d\xd1\x49\x0f\x8b\x77\xd7\x19\x06\x8b\x77\x4a\x9f\xf1\xea\x49\x91\x47\x0b\x16\xef\x74\xb1\x7b\x65\x3b\x90\x23\x0b\x16\xef\x69\xdc\xcb\x4b\xec\x99\xde\x8a\xff\x26\xf1\x66\xe8\xdd\xa1\x3d\x30\x42\xe2\x5d\xf2\x2f\xbc\x69\xde\x64\xbe\x21\x21\x6c\xef\xca\xa5\xc4\xe7\x6f\x36\x68\x2f\xa2\x61\xe1\x4e\xef\x4e\xe1\xce\x4e\x6f\x70\xe1\xce\xde\x3d\xc0\xbc\x13\x43\xc4\x96\x92\x63\xc9\x9b\x5d\x58\xb1\x77\x73\x89\xcc\x77\xb2\x13\x62\x33\x41\x8b\x5d\x87\xdf\x8c\x57\x42\x04\xee\xcb\x42\xa6\xd3\x18\xfa\xeb\x09\x09\xe9\x7c\xa5\x7e\xb1\xef\x08\x5c\x2d\xf6\xa9\xd7\xb4\x09\xfe\x0e\xae\x03\x8f\x75\xef\xe5\x4c\x56\x6d\x7e\x01\xff\xbc\x00\x25\x8b\x21\x49\xf0\x62\x17\xb9\xc8\x26\xbc\xd8\x87\x51\x1b\xf0\x62\xef\x46\x80\xbe\x37\xc1\x0f\x9c\xb4\x5e\xdd\x08\x82\xb1\xdf\xc7\x0c\x4d\x7c\xf2\x43\x6e\x2e\xbf\x80\x85\xcf\x3b\x8d\xf7\x91\x1a\x90\x2f\xd6\x0e\xc0\xd4\x78\x01\xa2\xb9\xd3\xbd\xdc\xcd\x35\xaf\x39\x5f\x0d\x04\x5b\x4d\x16\xf2\xdf\x38\x11\x61\xd5\x48\xfb\x34\xdf\x97\x13\xa5\x0a\xce\xa5\x5d\x0d\x5f\xe0\x44\xe9\x24\x78\x71\xa9\x70\x80\x78\xf5\x16\xb0\xf7\xcb\xc8\x6d\x3c\xfd\xcb\xd5\x5c\x33\x80\xe3\x95\x35\xd4\x49\xfd\x79\x45\xc3\xcb\x40\xd4\xda\xaf\x93\x88\xab\x12\x25\xf5\xea\x6b\x98\x2a\x9b\xa7\x89\xe1\x43\x42\xfa\xfc\x1b\x7b\x93\x83\x2d\x9c\xda\xb2\xa3\x4e\x38\xb5\xf7\xe6\x55\xe8\xb7\x61\x84\x75\xff\xbe\xfd\x0f\x9f\x02\xf9\xd5\xfd\xfb\xe5\x76\x7e\xf2\xf7\xe7\x43\x6b\x80\x3e\x88\x40\x21\x8f\x9f\x52\x72\xbb\xaa\xc1\xc8\xbd\x1e\x2a\xfe\x81\xca\x58\x45\xb3\x2f\xd9\x39\x3e\x02\xad\xf2\xf7\x86\x9f\xca\xdc\xfb\x1a\x1c\x5a\x0c\xd1\xb7\xcb\xb4\x1a\xfc\xed\x70\x75\xff\x83\xe1\xc2\xe0\xfc\x48\x8a\x10\xd3\x87\xec\x71\x9e\x39\x1c\x2d\x6a\xf3\x3c\xe1\xbe\xf0\x1d\x0e\x17\xed\xf3\x3c\xe1\x95\x25\xf4\xdc\x8d\x34\x9b\xf3\x3b\xec\x0f\x26\x10\xd4\xdb\x29\xfe\xec\xeb\xb2\xe3\xd0\x56\x2e\xed\x3c\xe4\x7c\x78\x9c\x8d\x82\xfd\x40\x4f\xeb\xe0\xfc\x58\x21\x97\x01\xf8\xff\x5e\xe3\xf2\xff\xb3\xc4\x7d\x43\xea\x48\xba\xd3\x03\xc9\xfc\xfd\x80\x80\x37\xba\x10\xe4\x87\xf1\x9a\x1f\x96\x54\xda\x1f\x1e\x2f\x1c\x30\x2c\x29\x08\x80\x27\x34\xde\xa5\x1b\x1c\x1a\xef\xbd\xb9\x3e\xc3\xe3\xfd\x23\xfe\x83\xad\x7b\x26\x06\x31\x4c\xdc\xf2\xf9\xce\x4f\x73\xcb\xc5\x15\x26\xee\x69\x48\xd0\xf7\x33\xb1\xa8\xed\xe7\xbb\xe0\x87\x8c\x3f\xb2\xd5\x25\x60\x90\x56\x03\xa2\x10\x3b\x0a\x39\xf6\xae\x49\xf6\x99\x16\xc6\x81\x80\xf2\xca\xb3\xc5\x47\x96\x81\xdd\x2f\x9b\x26\xeb\x42\x0e\xaa\x41\xee\x46\xa8\xab\xa7\x31\x97\xd0\x52\xef\x1a\x67\xd0\x52\x37\x0f\xf0\xd0\x52\x87\x18\x42\x68\xa9\x53\xda\x39\xd9\xa7\x9d\xbb\x9f\x69\x59\x6d\x3f\x51\xfa\x3b\x29\x32\xe7\x77\xfd\x28\xc2\x68\xb5\x07\x11\xd7\x71\x18\xa1\xf7\x5d\x12\xcd\x0f\xc8\xef\xde\x30\x98\x3f\x16\xc2\x9d\x6b\xc5\xa7\xfa\xf6\xdc\x80\xb4\x77\x58\xe1\x7f\x02\xdf\x5d\xfd\xa8\x00\x16\x2a\xd3\x08\x3e\xd5\xdb\xc3\x21\xe1\xf7\xeb\x4f\xf5\xfd\x79\x38\x50\x59\xc3\x53\x7d\x3c\x58\x7b\xab\x31\x03\xc1\xf9\x3c\x25\x2b\x79\x21\x18\xdb\xf3\xe0\x57\xd8\x39\x13\xbd\xc9\x5d\x83\xa4\x85\x6f\x4e\xa8\x6c\xe7\xfa\xf3\x66\x57\x1e\xfc\x89\x91\x51\xff\xf9\xfb\xe6\x6e\x7b\xd6\x32\xfa\x4d\x4e\xa1\x1c\x17\xbf\x39\x61\x32\xe7\xbe\xf5\x9b\xaf\xdb\x4e\x5f\x7f\x7f\xc2\x41\x57\x65\xdf\x49\x96\x49\x26\xe0\x77\xe2\x94\xd8\x01\xd6\x7e\x67\xb3\x07\xd7\xaa\xf0\x91\x40\x05\x14\xd6\xf7\x42\x21\xbc\x3e\xe5\x7b\x8d\x27\xe9\xfc\x39\x7f\xcd\xfc\x4c\x61\xb2\x11\xce\xf9\x61\x62\x81\x6c\xff\x4c\x34\xb0\x26\xf4\xf7\x01\xd9\xdc\xf8\x73\xad\xe3\xeb\xe9\xce\x3f\x70\x2c\x0f\xfe\xec\xca\xfd\x07\xe0\x9d\xff\x3d\xf4\xfe\xff\x3a\xff\xcf\xff\xe3\xfd\xcf\xdf\x06\x51\xf0\xdf\x26\x83\xea\x7f\xfe\xb6\xfd\x3e\xd7\xbf\x77\x22\xa8\x40\xdd\x6c\xc7\x6c\x4b\x74\x9c\xab\x61\xcb\x6e\xda\xe0\xa2\x58\xc5\xfa\x84\xb5\x18\x6f\xc7\xe5\x33\xcb\xc6\xe7\x94\xbb\x41\xef\xb0\x8a\xc9\x55\xf5\x7f\xfe\x36\x68\x0a\x56\xc1\xa5\xc1\x8e\x24\x90\x1c\x5e\x23\x2c\xc9\xa1\x64\xad\x34\xd8\xcd\x3b\x5c\xc9\xab\x90\xa3\x1c\xc9\xad\x04\x5a\xdf\xb6\x24\xcb\x14\x5d\xc5\x01\x5c\xe5\x3f\x7f\x7b\x5b\x2b\xc4\x2a\x20\xf3\xdc\x96\x24\x95\x68\xd2\xac\xd1\xdb\xe1\x9a\x5b\x85\x19\x64\x91\x84\x92\x09\xca\x77\x89\x20\xd4\x5a\x45\x01\x20\x5f\x92\x65\x84\xad\x02\x0b\x73\x20\x09\x25\x6b\xa1\xe0\x78\xbd\xef\xf1\x2a\xe2\x7e\x7d\x35\xe9\xd8\xe7\x92\x1c\xfb\x09\x5f\xe6\x7f\xfe\xf6\x6e\x23\x7b\x78\x49\xb5\x24\xc9\x4f\x77\xe6\x54\x43\x52\x7c\x7e\x37\x51\xc8\x92\x10\x43\xfc\xb7\x13\xe6\xc9\xb1\x64\x27\x98\xf3\x6f\x1f\x00\xd1\x48\xae\xb8\x13\x0f\xb9\x8a\xb5\x68\x12\x34\xb1\x13\x75\xb8\x0a\x12\xc5\x25\x2f\x5e\xf4\xa4\xc1\x79\x50\x2b\xee\x44\xb0\xad\x82\xa7\x96\x3d\xb5\x63\xb0\xad\x02\x50\x2f\x50\x86\x9d\x44\x2c\xab\x60\x9e\x42\xe3\xb7\x93\x6a\x65\x15\xa7\xb2\x8e\xec\x41\x36\x8d\xf0\x5d\xa7\xae\xfd\x9d\xa5\x8c\x55\x00\x03\x71\x27\x11\xca\xdf\xae\xb9\xb6\x93\x53\x69\x7f\x4f\x9f\x3b\x7d\x2e\x36\x64\xbf\xe7\x1e\x65\x3b\xb2\x0f\x19\xf7\xf1\x3b\x66\xd6\x8e\x4d\xb7\x8a\xa1\x8c\x36\x5f\xa1\xcc\xb5\xc5\x6f\xbb\xac\xc3\x25\x0e\xff\xe0\xfe\xda\x2b\x58\x73\x4b\xc6\x77\xdc\xd6\xfb\xd9\x07\x6b\x8d\xdd\x21\x49\x5f\x05\x5b\xea\xb6\xda\x77\x40\x72\xbe\x0a\x0e\x96\x08\x4a\xc1\xf7\x1b\xf5\x03\x76\xf1\x55\x98\x60\x0c\x49\x57\x62\xd4\x3f\x92\x50\x42\x22\x5a\x25\x8f\x92\x97\x34\x7f\xd4\xb5\xcc\x85\x55\xa0\xac\xcb\x96\x3b\x98\x01\xab\xe0\xb3\x49\x25\x79\xc0\xc8\xbd\x8a\x53\x59\x2d\x59\xf7\x55\xf0\x74\x83\x76\x32\x00\x87\xb4\xc0\x1b\xf7\x84\x07\xb4\xc0\xab\x78\x95\xf1\x6b\xa7\x6f\x12\x29\xbf\xcc\x9c\x03\xd6\xd5\x55\xfc\x9e\x5a\xed\x80\x3f\xf5\xef\x68\xe4\x81\x5f\xa7\xd9\xa3\xed\xa5\x64\x19\x26\x6b\xb9\x3c\xda\x9a\x08\xab\x60\x35\x26\xeb\xfc\xd1\x4e\xfa\xa6\x39\x44\xb8\xce\x8f\x9d\x15\xea\xd8\xc9\x6f\xbb\x36\xba\xe3\xa8\x35\xb7\x0e\xe8\x74\xda\x06\xcf\xe8\x71\xac\x86\xaf\xc2\x56\xf0\x26\xfc\x2f\xab\xf8\x2d\x98\xeb\xdd\xee\x00\x75\xae\x51\x76\xa2\x00\x8e\xde\x69\x1b\x74\x1c\xfb\x8e\xab\xec\x70\x26\x1e\x04\xef\xaf\x19\xbf\xc6\xc0\x99\x77\x0c\x77\x2b\x1c\xf8\xc7\x58\x1b\xed\xdf\x61\x18\xe3\x8e\x3b\xed\x08\x9f\x0b\xb0\xc1\x07\xfb\xc1\x41\xb4\xe1\xdf\x11\xcd\xb9\xbe\xac\xd9\x83\x58\xc1\xbf\xc3\x58\x8b\x83\xd4\xe4\x47\xfa\x6e\x2a\x83\xea\xe3\x28\x65\x22\xd6\x0e\xbc\x8b\xc7\x54\x36\x9b\x00\x47\xbe\x77\xae\x1f\xff\x3b\x80\x25\xed\x07\x37\x35\x07\x58\xa4\xbf\x63\xde\x26\x78\x46\xbb\xa6\xfd\x22\xbe\xa3\x6f\x6b\x51\x3d\xc0\x74\xfc\x1d\xa0\x33\xf6\x0e\x52\xea\x38\xad\xc3\x1b\xf8\xbe\xad\xa5\xee\x38\xed\x97\xd3\xe7\xc0\x6b\x1e\x97\xcf\x71\xd3\xb4\xd6\x02\x64\x9d\x7a\x2f\x9f\x23\xfb\xeb\x71\xfb\xdc\x6d\x30\x38\xe1\x7f\xc7\x6d\xfb\xf0\x64\xee\x1d\xd8\xcf\x41\xc6\xd2\xbf\xe3\xf6\x5d\x90\x5a\xc7\xe3\xbb\x8f\x32\xdc\x14\xc7\xab\x8c\x83\xc0\x3e\x30\x16\x8e\x4f\xd9\xa7\x0c\x97\x66\x77\x52\x76\xf8\xdb\xf7\x01\x05\x4e\x87\xb3\xfd\xaf\x6f\x3e\x07\x70\xa9\x37\x9f\x83\x14\x76\x1f\x64\xf0\xee\x6e\x24\xbd\xf9\x1c\x47\xb2\xbe\xfb\xdc\x8e\xcc\xeb\xef\x7e\x28\x83\x91\x6b\x0f\x2c\x91\x0e\x0b\xd7\x5f\x97\x70\x29\xc8\x1f\xd8\x21\x59\xfa\xeb\xb0\x28\xed\x31\xf6\xff\xb6\x99\xdd\x8f\xff\xff\xb6\xe8\x7e\xac\x85\xed\xaf\x1f\x5c\xee\x04\x91\x31\x1d\xaa\xa2\xbf\x7e\xd8\x04\x98\xa0\xba\xaa\xdd\x3b\xd7\x48\x81\xfd\xd9\xfb\xc3\x67\xaa\xc6\x41\xb7\x75\xd5\xb8\x8f\x9f\x6c\xad\x5b\x5d\x95\xed\xc6\x4d\x26\x88\xc0\x4e\xb0\xe4\x5f\x37\x72\x31\x01\x60\x74\xa2\x15\xff\xba\x2a\x9b\xdc\xa4\x77\x55\xb6\xe7\x0e\x2e\x02\x3c\xff\x3a\x33\x29\x33\x95\x27\x6d\x21\xf0\xe6\xaf\x27\xce\x03\xd3\x23\xf6\x4c\xea\xc8\x5f\x7e\x65\xea\x20\xa2\xe3\xaf\x3b\x05\x4c\xae\xdc\x9d\x02\xdd\x29\xa0\xc7\xbb\x3b\x05\xfa\x64\x2a\x27\x67\xf9\x3e\x99\xca\x5d\xab\x2e\x89\x97\xed\xa0\xe2\x56\x41\x1d\x20\x92\x3a\x20\xb8\xbf\xfe\x83\xb9\x41\x5b\xdc\x27\xfb\x5c\x9f\xee\x73\x6d\xa3\x0e\xf6\xb9\x0e\xd4\x6d\xc9\x3a\x32\xfa\x74\x12\xda\x67\x66\xa1\x3e\x59\x7e\xfa\xc4\x27\x61\xce\xe1\x3e\x4f\xdb\xc7\x1e\x54\xa0\xfb\xfa\xbc\x6c\x1f\xdf\x51\x30\x87\x74\xa7\x59\x77\x4a\x99\x53\xa1\x3b\xa5\xba\xd3\xa7\xc8\xd2\xd3\x9d\x3e\xfd\x86\xcc\xd7\x24\xbe\x9d\x0b\x95\xbf\x7e\x5b\x2f\x07\xe0\x4e\xc2\xe9\xbf\x4e\x7a\xe9\x65\x21\xaf\xdf\xe3\x96\xe2\xaf\x3b\xa5\x8a\xb3\x43\x77\x4a\xf5\x67\xd9\xa4\x7b\xd5\x32\xad\xfb\xb3\x4e\xb9\xab\x98\xbe\x5b\xc8\x18\xb7\x87\x3d\xb7\xf0\x65\x77\x1c\xc1\x7f\x9d\x2c\x93\xfb\x64\x39\xeb\xef\x46\x1d\x2f\x59\xb0\x36\x9c\x95\x1d\x87\xe6\x5f\xc7\x7f\xb9\x64\xeb\x3b\x70\x35\xae\xc2\xe5\x9b\x7a\xf1\xe9\xad\xc2\xa5\x1a\x3d\x78\x07\xf5\xbe\xc6\xdd\xc2\xb9\xd9\x5f\xf5\x0f\xdf\xd7\x92\x51\x47\xa4\xb2\x52\x96\xc8\x7c\x17\xf3\x6b\xc3\x6e\xec\xb8\xb9\x56\xc1\xdd\x8f\x3a\x8e\x63\xea\xaf\xbf\x62\xe3\x39\xd5\x74\x0c\x9d\x55\x58\x07\xe3\x86\x01\xb3\x8a\x44\x46\xdf\xbf\x8e\xb9\xa9\xda\x36\xf0\x7b\x5d\x5b\xa4\xbf\x97\xbf\xc7\x12\xa2\xdd\xd1\x5f\xb3\xec\x40\x0d\xd9\xb5\x31\xfa\x4b\x86\x9d\x8d\x94\x69\x1d\x77\xd0\x5f\xc7\x13\xb4\x64\xd4\xf1\xf8\x1d\x50\xe8\x6e\x90\x32\x74\x1c\x36\xab\xb0\x2d\x41\x1f\xbc\x8f\x32\xbf\x37\xa8\xe3\x43\x37\x70\xa6\xb4\x0d\xdc\x6d\xff\x36\xfa\xcf\x84\x64\xb2\x2e\x76\x7c\x24\xab\xb0\x8e\x5a\xe3\x4b\x32\xb2\x55\x48\xf4\xbf\x8c\xe3\x4e\x1a\xb1\x55\xf8\xbd\x93\xdf\x63\x5b\xef\x64\x0c\x5b\xb2\x81\xcc\xe7\x76\xbf\x8d\xe5\x91\x54\x60\x7f\xfd\x73\x7c\x61\xa5\xee\xb8\x1c\x56\x41\x3f\xef\x8d\xdf\xeb\xa9\xec\x56\xb6\xbe\x8d\x13\xfe\x2a\x7c\x97\xb9\xff\x39\xbe\x9c\xdf\x97\x8c\xdf\x8b\x47\xd9\xab\x6c\xf5\xd5\x97\xbe\x9b\xbe\xbb\x8c\xec\xce\x79\x7e\x15\xa7\x32\xea\x28\xf4\xef\xab\xdf\x73\xbc\x3b\xed\x03\x28\xad\x36\xce\xea\x9d\x54\x51\xab\xf0\x5d\xc6\x8d\xac\x4f\xab\xf8\x94\xd1\x7f\xa7\xf5\x9e\xfe\xde\xa0\x7d\x97\x75\x5c\x26\xf9\x0f\xbe\x57\xdd\x30\xd3\xd2\x06\x6e\xa2\x7f\xb7\xcf\xdd\xd2\xb2\x24\x7d\x7a\xfb\x1c\x89\xc7\xb7\xdd\x71\xbb\x1d\x37\x52\xa6\x6e\x30\x41\x77\xd2\x1e\xad\x22\x94\xd1\x96\xd7\x7e\x7e\xed\x67\xe6\x16\xe9\x81\x56\x61\x3f\x3b\x6e\x9f\xcf\x7d\xa9\x6c\x22\xf3\x39\x98\xf5\x37\x32\xbd\x0f\x92\xf7\xac\x62\x28\x2b\x64\xa9\x0c\xbd\x02\x17\x32\xb0\x67\x57\x91\xca\x26\xb2\x47\x19\xdf\x4b\x90\xfd\x20\x27\xcd\x2a\xba\xb2\x40\xf6\x21\x3b\x8c\x5b\x5d\xe3\x36\xb6\x43\x99\x3a\x04\x2a\x7e\x90\x0c\x66\x15\xa1\x2c\x91\x9d\xca\x2e\x63\x5e\x79\x97\x23\xd2\x20\x9d\xcb\x92\xf1\xee\x08\x65\xbf\xd8\x58\xbe\x63\xd8\xbe\xf0\xb9\xe0\xb9\xf0\x39\x75\x0d\x3f\xcd\x20\x3b\xca\xdf\x30\x01\xca\x46\xf4\xd4\x20\x9f\xc9\x2a\x4e\x51\xde\xf4\xd5\xda\x74\x56\x61\xff\xfd\x3f\x24\x94\xff\xfb\xed\x7e\x90\xa7\x64\x15\x36\xa1\xe8\xb6\xb2\x09\x65\x57\x4e\x9a\xc5\x71\x6b\x6c\xa4\x4a\xdb\xb0\xf5\xc7\xc6\xd6\x39\xc8\x19\xb2\x64\xbc\x3b\xed\x0e\x39\xd1\xba\xc3\x75\xfe\x64\x7c\x12\x0c\x5c\x83\xb4\x1c\x7f\x63\x73\xe9\x82\xe3\x7e\x90\x30\x63\x15\x53\x19\x75\x5c\x7e\xd2\xe5\x15\xfa\xce\xa7\x5f\x0e\xcd\xfd\x7b\x97\x7a\x71\x00\x0c\x72\x65\xb4\x0d\x02\xf9\x41\x82\x8c\x55\x94\x32\xba\xe8\xb6\x2d\x04\xaa\x6c\xfd\xe0\xf7\x1e\x55\xe2\xf1\x5d\x87\xfa\x51\xc5\x1e\xdb\xd2\x51\x93\xe7\x52\xf6\xbb\xce\xa7\xde\xc7\xb6\xe8\x0e\x81\x97\x67\x6c\xaf\x7d\xf5\xfa\xbd\x0e\xf5\xeb\x73\xf0\x7f\x49\x38\x35\x38\xd6\xac\xc2\xf6\x05\x75\x7c\x7e\x2f\x49\x24\xa4\x2d\x1a\x6d\x43\xd6\xb6\x9f\x6c\xfd\x1e\xc9\x1d\x56\xc1\x18\x41\xa8\x3d\x48\xf2\xb0\x0a\xbf\x6d\x2d\xa3\xa3\xa9\xee\xcd\x25\x13\x12\xee\xd1\x76\xbe\x83\x34\x0d\x6d\x23\x40\x65\x90\x9b\x61\x15\xa1\x8c\x3a\xb0\x28\x47\x73\x5a\x40\xfa\x3c\xda\xf1\x28\x7b\x95\x51\x6f\x67\x2c\xc9\x93\xd0\x24\xc8\x19\xe4\x43\x58\x85\xef\xee\x3c\xa7\xba\x93\xfa\x60\xc9\xa8\x23\xac\xd7\x29\x80\x7b\x73\x34\xa7\x40\x8b\x54\xb6\xf4\xa0\xa5\x75\x98\x6e\x07\xb7\xe6\x68\xe5\xbb\xea\x2e\x6e\xf7\xd1\xd4\x5d\xd3\x05\xc8\x79\x32\x48\x0b\xb0\x8a\x4b\x59\x22\xf3\xf7\xe6\x8f\xbb\x6f\x8d\x65\x9b\xfe\xde\xf4\xf7\x98\xb6\x6d\xda\x66\x97\x5b\x38\xd6\x46\x3b\xad\x83\x14\x7a\x1b\xde\xbc\xd1\x4e\x9f\x3b\xed\x97\xe0\x39\xf5\x19\x52\xff\xb6\x0d\xc7\xf2\xb2\xde\xcb\xdf\x4b\xea\xb8\x99\x83\xd0\xf5\x2f\x19\x6d\x56\x27\xdb\xe3\xbb\xc5\x73\x8f\xef\x3e\xbe\xeb\x58\xbe\x3e\xf7\xfa\x2e\xf3\xb2\xbd\x43\x99\xef\xae\x2d\x71\xc0\x2f\xbf\x0a\xe6\x2a\xee\xaf\xb1\xb3\x15\x8f\xdd\xad\x18\x58\xc2\x80\x4b\xfe\x6f\xc0\x22\xbf\x64\x6b\xdc\x76\xcc\xb4\x01\x6b\xfc\x92\x05\xb2\x57\x19\x6d\x01\x7e\x30\x76\x5c\x04\x03\x16\xf9\x26\xe5\xc3\x80\x39\x7e\x15\xa9\x6c\xb5\x6f\x3f\x7c\x0e\xd6\x98\x8d\x6b\xf9\x01\x19\xfc\x2a\xac\x03\x3d\xd8\x5d\x82\xe1\x71\xef\x5c\xbd\x0c\x78\xdc\x57\x61\x0e\x62\xa6\x2f\x7c\xee\xab\x98\xca\xf8\x34\x55\x72\xef\x36\x0f\x75\xd9\x07\x5d\xb5\x0f\x9b\x87\xba\xec\xaa\x29\xec\xed\x4b\xc6\xa7\x0d\xab\x0d\xbb\x60\xf0\x6e\xf8\xae\x6a\x1a\xb6\x25\xec\x3e\xe2\x72\x24\x2f\x18\x3b\x7e\xbf\xb1\x1b\x7b\x03\x40\x76\xec\x19\xca\xec\xe6\xa0\x4b\xcb\xcf\x2d\xbf\x03\x35\xd8\x55\xc9\x5d\x47\x03\xd1\xab\x63\x9f\x3e\xa7\x05\xc0\x75\xe5\x80\xf7\x7c\x15\x76\x69\x51\xef\x79\x2b\x7b\xc8\x85\xc2\x67\xb8\xc2\xee\x97\x9f\x31\x19\x8d\xcb\x57\x5d\x4d\xf1\x55\x0f\x48\xc4\x57\x41\x53\x88\x23\x1b\x50\x83\xaf\x82\xa6\xa4\x9a\xf1\xa8\x05\xae\x92\x40\xea\xc7\xfe\xfa\xb9\x2f\x9f\x9b\x8e\xb8\xda\xb7\x6b\x1c\xa6\x23\xfe\xd9\x7d\x9f\xef\x1e\xb4\xcf\xd5\x6f\xd7\x00\x48\x87\xed\xb3\x4b\x35\x00\xb8\x9e\x1b\x87\x06\xc0\xb1\xf9\x6e\xef\xc8\xa6\x32\xd3\xbc\x31\x7b\x61\xe1\x5e\x85\xcf\x0d\x9e\xc3\xe7\x31\x8e\xe6\x73\xc3\xe7\x5e\x65\xb6\x8f\x21\x3a\x38\x40\x8e\x63\x1f\xca\x78\x17\x57\xec\x38\x5c\x39\x01\x09\x8c\xc3\x95\xf3\xd8\xfd\xbd\xe0\xf7\x70\x07\x0f\x8e\xdf\x6d\x03\x79\x36\x8e\xe3\x56\xe6\x77\x24\xcf\x75\xdf\xed\xca\x58\xb1\xa1\xa6\x5e\x85\x75\x30\x94\x30\x4b\xaf\xc2\xe7\x18\xa3\x23\x7d\x17\xbf\xf9\x06\x44\x71\x1c\x18\x91\xe3\xf0\x30\x51\xdb\xbf\xcf\xf6\x03\xaa\xe8\x55\x94\xaf\x24\x32\xbb\xc3\x45\x0f\x3c\xe2\x80\x2e\x7a\x15\xa9\x8c\xe7\xa6\x4d\xd0\x65\xc7\xd9\x7e\x1c\x6e\xec\xd0\x3a\xb7\x0d\x94\xc3\x80\xbe\xf9\x6f\x1c\x6e\xec\xb8\x85\xc6\x71\x59\xaf\x0b\x21\xd7\xb1\xe3\x70\x63\x3f\xb4\x45\xc1\x15\x8c\x43\x55\x84\x9f\xb9\x6d\xe5\xf0\xdf\xb6\xcf\x73\x0a\x20\x80\x71\xb8\x38\x1e\x64\x77\xde\x08\x68\x1d\x38\x2c\x56\xe1\xef\xb1\x11\x1f\x9f\xef\xba\x99\x72\x3f\x35\x60\x20\x5e\x85\x6d\x61\xa1\xee\x0e\x7f\x77\xf8\x09\xf7\x1e\xde\x0d\x8c\x7e\xd8\x16\x66\x63\xc7\x91\x39\xba\x36\x21\x7c\xec\xa3\x6b\x13\x76\xcf\x15\x10\x57\x0e\xa8\x80\x57\x61\xbd\x0c\x6b\x77\xf5\x81\x00\x78\x40\x7a\x31\xba\xfb\x61\x77\x3f\x84\x94\x7c\xe0\x9e\xff\x1b\xb0\xf8\xb6\x0d\x86\xc6\x01\x29\xef\x2a\x68\x32\xe1\x70\xa3\xbb\x1f\xf6\x5f\xfa\x39\x4c\xe0\xee\xf0\x42\xa9\xbb\x64\x54\x3b\x95\x91\xb2\x6d\x9b\x0c\x51\xd7\x46\xc3\xcb\x3f\x34\xe5\xe0\xb9\xfd\x1b\xd2\xd7\x6e\x93\x51\x83\x8f\x76\x15\xe7\x7f\xfd\xaf\x01\xca\x77\x40\x15\xbb\x0a\x3a\x05\xff\xd4\xe8\x97\x8f\x39\xb8\xdc\x39\x8f\xae\x95\xd5\xef\x1f\x89\x15\x55\xb8\x7e\xf4\x87\x74\xb9\x18\x18\xf0\xb9\xae\xc2\x1a\xd6\x0c\xeb\xee\x67\x5d\x7b\x0a\x08\xce\x80\x70\x75\x15\xb7\x32\xfa\x49\x7b\x0a\x6e\xd5\x25\xe3\xdd\xcf\xa1\x90\x7e\x06\x22\x8f\x01\xd7\xe9\x2a\x50\x15\x6e\x9f\xc7\xd8\x4e\x65\xa8\x0a\x98\xa2\x31\x9a\xcf\x35\x9f\x63\xb8\x87\x47\x8a\xa1\xaa\x00\x0d\x1a\x70\x92\xae\xc2\x7e\xaf\xf5\x65\x43\x1b\x0b\xf2\xd1\xc1\xed\xc4\x18\x6e\x7b\x70\x8d\xb6\x0d\x0f\xfa\x80\x5f\x74\x15\x36\x8f\x05\x79\xb8\xed\x8d\xe3\xf7\x1c\xd5\x6a\x76\x49\xf0\xd9\x20\xd1\x18\xf0\x72\xae\xa2\x94\xf1\x19\x2e\x28\x63\x6d\x75\xcd\x08\xd8\x01\xbb\xe6\x2a\x76\x65\x1d\x99\xef\x0e\x7f\x8f\xd9\x3c\xdc\xe3\xa0\xd0\x6c\x86\xaa\x8e\xe1\x1e\x07\x93\xe6\x92\xf1\x69\x61\x5b\xa0\x5b\x31\x42\x75\xc0\xa2\xf9\x37\x46\x76\x64\x9c\x96\x46\xfa\xbd\x84\x8a\x6a\x19\x0f\xb5\x76\xa0\xb5\xc6\x64\x8e\x51\x3e\xc6\xb6\xb7\x8e\x07\xc8\xec\xd1\xf2\x33\x3a\xdd\x32\x6d\xca\xb4\x29\x6c\xcb\x5c\x25\xad\x22\x95\xd1\x05\x6a\xf2\x98\xbf\xfc\xc5\x74\x3d\x8e\xb0\x31\x4e\xeb\x40\x5b\xa0\xa8\x5c\x85\x9f\x11\x3e\xe7\x67\x5c\x76\x41\xf0\xb9\xd7\xa3\xec\x5d\x9f\xa1\xb2\x78\xd8\x80\x2e\xb2\x89\x65\x18\x43\xf5\x86\xf8\x71\xc9\x78\xce\x2d\x73\xac\xf3\xf1\x80\x20\x68\x8c\xdb\x57\x1f\x6b\x60\xce\x0f\xcf\x15\xe3\xb1\x25\xd8\x75\x43\xfd\x86\x69\x71\x74\x55\xef\xb5\x21\xaf\x9d\x32\x69\xf0\xe7\x87\xa1\xf2\xa6\x9c\x1c\xc3\x8d\x55\x3e\xc5\xae\x36\x7e\x7e\xeb\x77\xfb\xd8\xea\xbb\x70\x16\xc0\x66\xd8\x1a\xce\xc6\x11\xce\x82\x80\xd0\xb7\xe1\xc8\x1a\x30\x13\xae\xe2\x50\x36\x91\x4d\x65\xa7\xa8\xe0\xd5\x9f\x30\x07\xae\x62\x57\xc6\xbb\xaa\x7c\xec\xa2\x87\xb1\x08\x21\x0f\x5c\x85\x75\xa0\x66\xe1\xde\x08\xa7\xdf\x92\xad\xce\x83\xaf\x6f\x15\x3e\xc7\xe9\x2d\xf0\xe9\x8f\x18\xb6\x05\xbd\x80\x2d\x6f\x15\xd6\x81\x25\x1f\xc3\x3a\x54\x6f\x12\x19\x0d\x88\xf1\x56\xc1\x3d\x18\xe1\x9f\x23\x3c\x44\x47\x58\x2f\x2b\x46\xb8\xaf\xc6\x32\xcd\xc6\xf0\x33\xd2\xc7\xd2\x57\x39\x93\x87\x87\xe4\xe0\xa0\xd1\xf0\x77\x0d\x18\xe2\x56\x61\xb5\x18\xf7\x70\xba\xad\xc2\x6e\xc1\x90\x0f\xf7\x52\x18\xdb\x96\x8c\xe6\xa9\xb6\x71\xfa\x1c\xfb\x48\x68\xd5\xc5\xe9\x10\x31\xe2\xe1\x0a\x1c\xa7\x77\xcf\xf3\x7f\xb0\xc5\x43\xd6\xb6\x0a\x7f\x9a\x33\x79\x78\x0e\x81\x3f\x6d\x0d\x0c\x9f\xa4\xa6\xc3\x9d\xb6\x64\x7c\xba\x67\x68\xa8\xd2\x5a\xe3\x46\x78\x84\x67\x68\xa9\xd1\x0c\x66\x1b\xd0\x9e\xfd\x8d\x50\xaf\xf7\xc6\x67\xba\x25\x07\x5b\xb2\x6c\x15\x03\xba\xb3\x55\x30\x5a\x44\xb3\x8e\x78\x6c\x8b\xfa\xbf\xab\x11\x5a\x8c\x70\x91\x2d\x19\x6d\x79\x1d\xc1\xd7\xf6\x71\x76\x0f\x95\x1d\x3e\xb2\x25\x63\x18\xb4\x22\xe1\x1f\x5b\x32\xb4\x49\x2b\x32\x9c\x01\x44\x8e\x0e\xaf\x0d\x46\xc2\xed\xd9\x76\x8c\x7f\xc8\xbf\xfe\x46\x72\x37\x6a\xb6\xc7\x91\xdc\x8e\x8e\xf4\x76\x94\xf8\xb3\x91\xce\x80\x6c\xf6\xdf\x18\xc8\x1e\x65\xaf\x32\xde\x75\x56\xa4\xb3\x02\xf2\x96\xe1\xd5\xc4\x80\x12\x6c\xc9\xa8\x77\xb7\x5e\x23\xbc\xf8\x8c\xf4\x48\x04\xf9\xd7\x7a\x8c\x9f\x73\x6f\x80\x04\xac\x99\x75\x79\xa4\x93\x07\x92\xaf\x25\xa3\x29\x9d\x61\xcb\x6e\x37\xa3\x61\xe9\x99\x28\xbb\xdd\xcc\x32\x93\x5a\x20\xe9\xe4\xd9\x71\x0f\xa4\x06\x28\x3c\x5e\xad\x91\x41\x76\xa4\xfb\x40\xba\x0f\x90\xde\x70\xa4\xe7\x9a\x4c\xdb\x87\x5a\xc1\xb5\xb5\x0a\x2f\x92\x59\x54\x52\xaf\x54\xba\xe8\xeb\xc1\xf3\xd6\x65\x24\x86\xaa\x61\x5f\x23\x35\x55\xb2\x7c\x0e\xb5\x82\x66\xeb\x6f\xe4\xf4\x39\xcc\x81\xf4\xfc\x93\xd3\xe7\x50\xa1\x9c\xf6\x01\x47\xf2\x06\x18\x77\xa4\x8b\x79\x5e\xbe\x6b\x9f\x6a\xac\x24\xc6\x4a\x3b\xd8\x6c\x52\x63\x25\x6f\x9f\x53\x0d\xb4\x3a\x21\xb6\x6a\xed\x70\xc8\x5d\xcd\x13\x6f\x67\x83\xff\x75\xe4\x63\x1f\x3c\xbe\xcb\x26\x92\x4f\x28\xb3\x0e\x0e\x0e\xa9\x9b\x08\xae\xab\x25\xa3\x2d\x9a\x35\xc9\x31\xbd\x91\x2f\x63\xa4\x6a\x9f\xaf\xcf\xe1\xe9\x4b\xd7\xf8\x54\xc5\x35\x13\x61\xae\x5a\x45\x28\xa3\x0e\x55\x3c\x55\xf1\xc3\xb1\xd4\xda\xe5\x26\x6b\xc9\x56\xbf\x40\x56\xb5\x8a\x2e\x35\x7f\x43\x56\xca\xa6\xb2\x03\x19\xef\x96\xd4\x20\x07\x9b\x46\x69\x12\x55\xfb\xbd\x3b\x91\xa5\x32\x74\x12\x7e\x96\x51\xdc\xd8\x0c\x78\xa4\x9a\x11\x68\xa3\x34\x89\x6a\x37\x82\x1a\x7b\xa5\xdc\x20\x0a\xfb\xa7\x71\x23\x37\xca\x03\x55\xe1\xbd\x37\xb1\xea\x28\x0f\x54\x75\xf8\x2e\x4b\x49\x69\x8d\x57\x57\x86\x1e\x94\xbe\x80\x52\xc7\xa1\x41\x1a\xe5\x06\x51\xea\xb8\xae\x3c\xd8\x9d\x56\xf1\x28\xf3\x39\xf4\xa5\x30\xbd\x1b\xc9\x21\x46\xe9\x76\xaa\x38\x95\xf1\x1d\x6e\x1a\xa5\xad\x03\x13\xfd\x28\xcf\xf3\xb0\x29\xb5\x06\xd9\xf7\x80\x42\x69\x15\xd6\xc1\x5c\x2d\x5d\x51\xb0\x16\x2d\x19\xcf\x95\xdf\xab\x8e\x13\xc0\x35\x4a\x1d\x2f\x77\x08\x4d\x87\xd2\x88\x81\xef\x67\xed\x69\xb4\xc5\xd3\x56\xb9\x1b\x0c\xfb\x5e\xbd\x2f\x97\x7b\x92\xb5\x8c\xf2\x90\x5f\x97\xd0\x1f\xfb\x59\x2b\xa6\xee\x4d\x19\xe3\x71\xdb\xcf\x2e\xf7\xba\xed\x20\xf3\xf9\x1b\xe5\xd2\xae\xdb\xae\xd4\xf1\x52\xc7\x75\xc7\x95\x3a\x5e\x8f\x6d\xe1\x20\x50\xea\x73\xfd\x52\xf4\xb2\x61\xd7\xc7\xba\x06\x8f\x4e\x33\x54\x69\x94\x66\x7a\x7d\xac\x1b\xc3\xbe\xff\xd4\x2b\x97\x71\x12\xd2\x8d\x52\xc7\x4b\x1d\x1f\x8e\x87\x3a\x5e\xea\x38\x79\x99\x86\x37\xb3\x63\x42\xe1\xdc\x48\x78\x34\x20\xcb\x59\x05\x7a\x40\x10\xd7\x98\xea\x3d\xb4\x38\x4b\xb6\x74\x63\x6a\xf0\x4c\x0d\x1e\xc2\xb2\xc6\x54\xc7\xa7\x3a\xae\x8b\x6e\xba\xdc\x4f\x97\x7b\x98\x78\xc7\x74\xb9\x87\xfa\xa6\x19\xc2\x34\xa6\xba\x3b\xd5\x5d\xd8\x6e\xc7\x3c\x6c\xcb\x61\x5b\x18\xdf\xa9\x6b\x6b\x76\xfb\x99\x79\x39\xd5\xe7\xe9\x3a\x3e\xfe\x27\xbb\xfd\xf4\xa0\x39\xcd\x39\xaf\xa7\x6f\xba\xcc\x4f\xed\x26\xf0\x25\x63\x8e\x4b\xd9\xa7\x8c\x4f\xd2\xf3\x0a\xf9\xcc\x92\xf1\xe9\x4e\x81\xc9\xe5\xa6\x31\x53\x43\x4c\xc7\x98\x2e\xfd\x7a\xff\xa6\xea\xfe\x23\x7d\xd1\xd3\xe7\x25\xf7\x80\xd7\x65\xc9\xf8\x74\xd5\x1d\xca\x95\x65\x4b\xd1\x16\x1d\x0e\xd3\x29\x40\xe4\xce\x98\x4e\x01\x21\x91\x72\x45\x8e\xa9\x91\xc4\x5d\xf7\x92\xd1\xbe\x69\x5b\x34\x9c\x80\xec\x8d\xa9\x37\x76\x3a\x55\x74\xe1\x4d\x0d\xa7\x49\x16\x15\x4f\x4b\x53\x0f\xd9\x74\xf6\x10\xde\x3c\xa6\xc6\xd2\x74\xd7\x20\xa2\x6f\xc0\xad\xb2\x0a\xbb\x00\x4d\x9c\xfa\x2a\xe6\xe5\xbb\xac\x02\xd3\x19\x35\x6f\x9b\xac\x86\xdd\x6a\x0e\xf7\x66\xd2\x60\x8d\xe9\x4e\x32\x6f\xbb\x9e\x55\x7e\x6a\x18\x4d\x0d\x23\x60\x28\x63\xea\xdc\x85\xd4\x64\xc9\xa8\xe3\xf5\xd3\xde\x5f\x56\x56\x9e\xf3\x72\x61\x72\xb9\xd0\x42\x6d\xf2\xb4\x30\x9d\x3d\xe0\xe6\xc7\xf4\x22\x61\x02\x94\x6a\xc9\x90\x9f\xce\x8a\x73\x83\xa9\x81\x45\xf4\xf4\x14\x70\x7a\x0a\x80\x40\x63\xc0\x81\xf2\x37\xce\x1f\x4f\x14\x0b\xc8\xa9\x5d\x74\x72\xdf\xd0\x08\xb1\x19\xa7\x76\xd1\xa9\x5d\x44\xa8\xc3\x38\xdb\xef\x5d\xab\x45\x33\x4e\xfd\xc2\xa7\x76\x11\x00\xf7\x71\xee\xa1\xac\x94\x25\x32\xdb\x72\x58\x2f\xda\x02\xfb\xc9\x2a\xac\x03\x2d\x38\xbd\x83\x80\xf4\xa4\x19\xc9\x35\x4e\x4f\x10\xf0\x9a\x2c\x19\xbf\xe7\xa1\xf9\xf4\xd0\x0c\xa4\x7a\x9c\x1e\x9a\x4f\xae\xe6\x9a\x4e\xe5\xd3\xab\xb9\x53\x23\x88\x78\xd1\x71\x3a\x63\x4e\x37\x08\x02\xc0\xc7\xe9\x8c\x81\x90\xa4\x49\x16\x3f\x4e\x0f\xc8\xa7\x07\x64\x42\x4a\xc7\x19\xbf\x77\x6f\x65\xb4\x19\x84\xe6\xf8\x51\x8a\x10\x94\x3b\x4e\x8d\x25\x68\x43\x96\x8c\x77\x3d\x91\x40\x07\xb2\x64\xbc\xab\xa7\xef\x74\xc6\x00\xa7\x18\xa7\x77\x15\x10\x6a\xb4\x06\x62\x7e\x9c\x1a\x46\xa7\x27\x5f\xa2\xae\xc6\xe9\xc9\xf7\xf4\xe4\x4b\x30\xfe\x38\x4f\xeb\x50\xed\x09\xf0\x18\xf0\x60\xac\x22\x95\xf1\x9c\xc6\x12\xdc\x15\xcd\x80\x9d\x71\xaa\xf6\xa7\x1b\x89\xee\xb8\xd3\x73\xc3\xc9\x3d\x5b\x2b\xfb\xde\x23\xf2\xe9\x11\xb9\xec\x67\xcf\x0d\xa7\x06\x54\x61\x47\x9f\xba\x80\xce\xc7\xe7\xb8\x4b\x39\x9f\xdf\x73\x9f\x32\x9e\x7b\xd5\x3f\xae\x95\x1b\xb4\x46\xe3\x7c\x1d\x5f\x37\x1c\xc2\x68\x06\xac\x13\x7f\xe3\xfc\x6c\x9f\x63\xe4\xb9\xe1\xc4\xfb\xdc\xca\xf1\xf0\xdc\x00\xcf\x44\x6b\xba\xf2\xce\xef\xf7\xae\xf5\x32\x1e\x97\xde\x67\xe8\x25\x5a\x23\xe7\xcb\xb8\x9c\x1f\x97\x67\x04\x08\x69\xc7\xa5\x11\x74\xed\xd4\x4b\x0c\xcc\xb8\x34\x82\x2e\x0d\x1e\x00\xbe\xe3\xd2\xe0\x81\xdd\xa1\x35\xd0\xbb\xe3\x72\x83\xb8\xdc\x20\xe0\x64\x1c\xd7\x31\x95\xf9\x1c\x2e\xd3\x4b\xf7\xe3\xe5\x29\x59\x4f\x1b\x30\xb8\x55\xf8\x1c\x3a\x7e\x81\x22\x1b\x97\xba\x0b\xcf\xfc\xb8\x80\xad\x8c\xcb\x95\x5d\xdf\xd8\xa5\x71\x03\x8b\x42\x6b\xd0\xb1\x8f\x4b\xe3\x06\x06\x85\x66\x7c\xc7\xb8\xd4\xc9\xcb\xd5\x7e\xd2\xf7\x97\xc6\xfa\xa5\xd7\x86\x70\xba\x71\x79\xfc\xbd\x3c\xfe\xea\x43\xbb\x4e\xeb\x55\xff\x80\xf8\x8e\xcb\xa5\xf8\x3a\xad\x17\xe3\xf5\xba\xfc\x36\x0d\x19\x1d\x66\xd7\x65\x9f\xaa\x7f\x24\xa2\x1e\x70\x21\xac\xc2\x6f\xc3\x50\xbd\x34\x5a\x2e\x75\x6d\x3a\x1e\xea\xda\xc5\xb2\xbb\xc3\x8a\x31\xa0\x3f\x58\xc5\xad\x8c\xf6\x69\xa0\x5c\x26\xfc\x77\x4d\x84\x51\x60\x15\xaf\xb2\x55\xc7\xad\x07\xe5\xc6\x8f\xb8\x03\xaf\x1a\xb7\x06\x32\x94\x00\xeb\x58\xdd\x91\x31\xcf\x6f\x8c\x82\x7d\x63\x1e\xdd\x3a\xfe\x6e\xbc\x20\xfb\xc6\x9c\x21\xe4\xff\x6f\xdc\xac\x75\x84\x2f\xfc\x73\xb3\xbf\xb5\x2d\x20\x02\x68\xfb\xc6\x94\xba\x55\x1d\xe2\xfe\x97\x8c\x9f\xf6\x3c\x78\x77\x3f\x89\xe1\xbf\x7b\x28\x4b\x65\x34\x4b\xe3\xe1\xc6\x78\xd8\x75\x8a\xdd\x1a\x0f\xc4\xec\x2f\x19\x75\xb8\x3c\x12\x96\xbf\x64\x74\x87\x4e\x17\xc2\xf3\x9b\x6c\x75\xe3\xd6\x75\x7d\x87\x9f\x89\x4a\xdc\xe9\xef\xa5\xef\x62\xef\xde\xaa\xd3\x9d\x76\x2f\xd3\xec\xf6\x2a\x97\xf0\x8e\xb6\x83\xc8\x1a\xb7\x90\x83\x5b\x4e\x22\x80\x8f\xe3\xd6\x78\x20\x72\xbe\xed\x24\x53\x1f\xb7\xce\x42\x02\xe8\x9b\x48\xba\x71\x4f\xbb\x7c\x2d\x8f\xc3\x9b\xdc\xdb\x9b\xdc\xfb\x34\xf9\xc6\x46\xf3\x74\xba\xdc\x90\x06\x99\x0a\x62\xdc\xde\x9b\xdd\x97\xcf\xb1\xd3\xdd\xae\x84\x37\x9a\xb8\x43\x1a\x39\x6e\xcd\x67\x22\xe7\x97\x8c\xe6\xdd\x0e\x07\x47\xc9\xbd\xa9\x25\x1a\x00\x37\xab\x9e\x79\x4e\xc6\xad\x2f\xfc\x7e\xac\x97\x95\xf5\x7e\xec\xd2\xd7\x7a\x59\x45\x6f\x8f\x8d\xf7\x6b\x1d\x98\xc0\xb7\xde\x42\xa2\xeb\x97\xac\x90\xd9\xe6\xd7\x6e\xc1\xf3\x70\xab\xd9\x44\xde\x2f\x19\xdd\xa2\x99\x7d\x7f\xb6\xcf\xa1\xd4\xa4\x06\xac\xd7\x76\x80\x5b\x43\xb0\xde\x78\x36\xdb\x8c\x09\xfc\x38\x03\x9e\x35\x03\x06\x19\x39\xc7\xe3\xa5\xf2\x83\x5b\x71\xd7\xdf\xf5\x68\x65\x3f\x9b\xcd\x63\x11\x78\xbc\x54\x7e\x9c\x28\xfa\xbb\x1e\xef\x61\x80\xfb\x2d\x59\x21\xbb\x95\x3d\x32\x9e\xd2\x94\xe6\xbb\xbb\xef\xb2\x08\x3c\x1a\x0a\x8f\x13\x0a\x12\xa8\xf1\x88\xe1\x79\x9c\x1d\x50\xa4\x8e\xc7\xd9\xf1\xc0\x86\xb3\xeb\xe4\x7a\xb4\xbc\x1f\xac\xec\x5d\xe7\xd5\xa3\xb7\xe4\xe1\x24\xb9\xeb\x94\x7a\x5c\x58\x9f\x6e\x0a\x28\xcc\xd9\x47\xef\xfa\x33\x52\x19\x6d\xf6\x74\xf9\x70\x83\xbc\xc3\xb4\x36\x1e\xdd\x8f\x0f\x8b\xed\xae\x53\xea\x71\xb1\x7d\x70\x3f\xca\x56\x3e\x1e\xbd\x2a\x4f\xda\x66\x6c\xcd\x47\x4f\xfa\x83\x19\xbd\x83\xe5\x1a\x4f\xfd\x64\xb6\x99\xd9\xf6\xe8\x7f\x7c\xa6\x32\x87\x4d\x93\xf9\x99\x7e\x2f\x33\xeb\xf1\x66\xe7\x99\x7e\x07\x0b\xeb\x73\xfa\x1d\xa7\xef\x32\xdb\x1e\x0d\x85\xe7\xfa\xc9\x68\xb3\x4e\x42\xa2\xe4\xdb\x7e\xd8\x57\x3a\x04\x1f\x55\x5c\x4c\xd5\xe3\x1d\xdd\xa3\x8a\xc3\xbc\x36\x1e\x6d\x5c\x82\xe4\xdb\x4e\x6a\xa0\xf1\x08\x96\x79\x54\xf1\x03\xb5\x7f\xde\x43\x99\x75\x70\x62\x7f\xdc\xc4\x1f\xb2\x0d\x99\x29\x71\x3c\x7a\x41\x1e\xbc\x20\x3b\x6c\x13\xe3\xd1\xd5\xfd\x70\x42\xdc\xc5\x5e\xbd\x5e\x0d\xbf\x18\xb4\xbb\x9e\x9b\xd7\x0d\xfb\xdd\x4c\xe6\xc8\x54\x78\x5d\xbc\x5f\x75\x52\xcf\xcd\xeb\xe2\x4d\x6c\xfb\x92\xad\xfe\x7b\x5d\xbc\xdf\xdd\xef\xc0\xa0\x78\xd5\x35\x23\xa9\xf6\x83\x93\xdf\xab\xb7\x8e\x10\xf4\xb6\x43\xe8\x33\x5e\x37\xf1\xf7\xf0\x5d\x36\xbf\xf7\xb8\x94\xe1\x72\x66\x7f\x20\xf4\x7c\x15\x9f\x8f\xad\x6e\x7e\x5d\xb0\xdf\xee\x67\x30\x3d\x5e\x55\xf2\x1d\x36\x19\xa7\xc0\xab\xfa\xbd\xaa\x9f\x0e\x99\x77\xdc\xca\x1e\x65\x3c\x17\x36\x2f\x7e\xcf\xf1\x69\xaa\x24\x51\xdb\x6d\x87\x09\x68\xbc\xba\xba\x41\xa5\xb6\x5d\x47\xcb\xab\xaa\x11\x71\xb3\x64\xb4\xcf\x5b\x9b\x97\xfd\x7f\x17\x97\xf5\xaa\x56\xaf\x84\xc5\xe2\xad\x0c\xab\x19\xef\x69\xbd\x4c\x85\xd7\x15\x96\x10\x9a\x26\x33\xd5\x78\xdd\xeb\xdf\xcb\x36\x33\xbc\xaf\xb6\xe6\x8b\x5d\xb9\x8b\xad\x32\x34\x66\x08\x5b\x35\x24\x67\xbc\xee\xeb\x2f\xd9\x35\x76\xaf\x6d\x5e\xef\x59\x5e\xd5\x4f\x87\xcc\xeb\x15\x31\xb1\xcc\xcd\x50\x9b\xf1\x6a\x57\x0a\x6f\xdd\x75\xd2\x08\x6f\x1d\xaf\xb9\x1a\xbb\xc3\xa6\xaa\x11\x37\xdc\x76\x52\x78\x8c\x57\x07\x05\x21\xc3\x4b\xb6\xda\xf2\x79\xc4\xfa\x36\x7f\x8f\xcb\xd5\x4f\xfc\x96\x81\xbf\xe4\xa5\xfb\xe7\x5e\xff\x79\xb4\xfa\x5c\x1d\xf5\xeb\x88\x88\x1d\x1f\x47\xab\x5d\x88\xd6\xe7\xd1\xea\x53\x63\xc9\xcb\x3c\x3e\x4d\x4c\x80\xb1\x4b\xc6\xbb\xfa\xcf\x08\xdb\x6d\x3b\xb9\x3c\xc6\xe7\x31\xea\x53\xed\xc8\x93\x31\x3e\x4d\x4c\x51\xb2\x06\xac\x8c\xaf\xdb\x16\x55\x51\xff\xcf\xe7\xfe\x4f\xc8\x6c\x33\xa3\xcb\xf8\x5c\xf5\x08\x97\x5d\x32\x9e\xd3\xec\xfc\xe2\x97\x46\x69\x43\xf6\x7b\xce\x7a\xd9\x9c\x3f\x7d\xc9\x1f\xcc\xe5\xbb\x7e\x9d\x4f\xbf\xf1\x2f\x08\x56\x1f\xce\xa7\xd9\xf9\xd5\x4f\xc6\x73\x1e\x85\x08\x66\x5d\x32\xda\xec\x4a\x48\xc0\x6a\xdb\xdd\xad\x80\xc7\xae\x22\x95\xf1\xae\x47\xa1\xef\xf4\x3b\xca\xe7\x50\x3b\x91\xb3\x3b\x39\x89\xc7\xa7\x7a\x12\x8f\xda\xf6\xe1\x50\x0b\xe5\xfa\x48\x7b\xba\xc3\x48\x33\x3e\x3d\x00\x9f\x2a\x4b\xc0\xe5\xf8\x3c\x0a\x01\xa0\x6d\x3b\xf4\x36\xe3\xd3\x00\xf8\x54\x59\xe8\x64\xc6\xa7\x01\xf0\x69\x9e\x06\x53\xf4\xd3\x2b\xf0\x71\x14\xda\x61\x91\x19\x9f\x46\xc1\xa7\x51\x20\x6c\xeb\xd3\xf7\xf6\xbd\xa1\x8c\xdf\x7b\x4b\xd9\x54\xc6\xf7\x7a\x6d\x4e\x30\xd9\x92\xd1\x3e\x8f\x47\x9f\x26\x30\x2c\x31\xe3\xf3\x78\x24\x3a\x77\x87\x08\x66\x7c\x9f\x7a\xa0\xf1\x00\xa7\x4b\x00\xcb\x5d\x05\xa9\xd1\x96\x4a\x86\xe0\xdc\xd8\x36\xab\x5d\x2a\x14\x1b\x48\xb3\xd8\x34\x0a\xf0\xf9\x84\x91\x69\xf1\x8b\x4c\x83\x77\x25\x40\xef\xae\xa2\x94\x25\xb2\x57\x99\x5d\xb0\x4e\x3d\x21\x88\x37\x04\xf1\xee\xf8\x81\x62\x03\x08\x1e\x1b\xae\xe4\x3d\x96\xfa\xc5\x76\x58\xc7\xf1\x7b\x8e\xf6\x31\x15\x62\x73\x51\x06\xca\x15\x1b\x53\x21\xb6\xc3\x77\x07\xcf\x01\xec\x08\xf0\xbd\x6d\xc7\xc1\x13\x5b\xb7\x2d\x1a\x05\x70\x07\xc6\xb6\x96\xe3\x55\x58\x47\xd2\x96\x61\x1d\x9a\xcc\x70\x10\xc7\x36\xec\x03\xa7\x0c\xf0\xae\xd8\x86\xbf\x17\xf6\x41\xf2\x7b\x61\x97\x86\x43\x59\xb4\x0f\x60\x79\x6c\xf8\xe0\x76\x08\x8f\x62\x4b\xdb\x97\xaa\x50\xd1\x66\x3c\x0a\xb1\x25\x49\xff\x76\xaa\x2d\xbb\xa0\x7c\x75\xd2\xbc\xb2\x8a\xb2\x79\x93\xae\x02\x24\x19\x9b\xd6\x36\x51\xfe\x21\xc0\x37\x36\x1c\x0f\x72\x8a\xc6\x36\x1d\x22\x1c\x0f\x3b\x70\xb1\x30\x4c\x2f\x36\xdc\x72\x3b\x70\xb1\xd8\x4e\x9b\xc7\x7d\xa6\x9c\x18\xb1\xe1\x96\x8b\xcd\xcd\x00\x08\x59\x80\xf6\x5d\x85\xb2\x9d\xcf\xbd\x1c\x0e\xed\x0e\x20\x64\xb1\xdd\xd6\x7b\x5b\xef\xc1\x73\xb7\x43\xee\x66\x00\xac\x2c\x04\xf3\x86\x60\xde\x1d\x08\x59\x6c\x8f\xc3\x81\x07\x7b\xc7\x61\x14\xdb\xeb\x73\xaf\xed\xeb\x7c\xef\x67\x1d\xf8\xd1\x4c\x95\x1a\x02\x72\x43\x40\xee\x0e\xd7\x59\x34\x4c\xe1\x68\xda\xbd\x40\xc8\xa2\xe1\x48\x8b\xa6\x8a\x03\x17\x8b\xa6\x8a\xb7\x66\x5b\x50\x17\x81\xbb\x01\x56\xb7\xed\x38\x91\xa2\xe1\x34\x0b\x81\xbb\x3b\xdc\x6f\xd1\x58\xd9\x03\xfc\x6e\xdb\x21\x96\x0b\xc3\x1a\xa3\x69\x8b\x10\x12\x18\x4d\xb5\x6f\xda\xbd\xe4\x0d\x8b\x86\xdd\x1b\x82\x79\x77\x28\xf3\x42\x30\x6f\x80\xdf\x5d\x32\x9e\xeb\xb6\xcf\x53\x21\x04\x77\xd1\xb8\x76\x0f\xc1\xbc\x3b\xfc\x6f\xd1\x86\xdf\xab\x8a\x43\xa9\x10\x4d\x15\x6f\xda\xc2\x60\xc4\xa2\xa9\xe2\x4d\x15\x87\xc4\x27\x0c\x69\x0b\x41\xbf\x3b\x39\x64\xa2\xa9\xe2\x4d\x15\x07\x37\x16\x2d\xfc\x0e\x60\x6f\x3b\xb8\xb1\x68\xaa\x7d\x53\xed\x71\x54\x45\x53\xc5\x5b\xf9\x7b\x2c\x1b\x02\x81\xa3\x69\xa0\x54\x57\xe6\xef\x95\xbf\x37\x78\x77\x5a\xaf\xba\x8b\x03\x2a\xda\xb4\xcd\xda\xcc\xc4\xa7\x45\xc3\x66\x8e\x76\x1e\xca\xe8\x83\xd3\x77\xb5\x99\xe1\x81\x89\x76\xda\x57\x97\x6d\x61\xea\xb7\xcb\xb6\x90\x54\x7b\xaf\x1c\xff\xdc\xec\x43\x9c\x70\x34\x6d\x9f\x72\xf8\x2f\x7f\xfa\xf6\xa7\x8b\x4f\xba\xfd\xe9\xdb\x26\x14\x5d\x7e\xab\x3a\x4e\x01\xfc\x53\xd1\x1e\x9b\xfa\xf8\x7b\x0e\xf5\xeb\x30\xe0\x5e\xde\x49\x8f\x11\x0d\xdb\x27\x9a\x53\x00\xb2\xff\x68\xb8\x97\xa3\x01\x32\xd9\xc1\x9a\x45\xfb\xac\xd7\x0d\x02\x5e\xf3\xd8\xf1\x8b\x85\x78\xe2\x1d\x5c\x59\xec\x18\x28\xb1\xab\xc6\xf8\xac\x62\x57\x65\x89\xa7\x5d\xb2\x35\x05\x76\xd5\x73\x57\x3d\x41\x87\xc5\xae\x7a\xee\x1e\xd5\x20\x25\x89\xdd\x15\x58\xb0\xef\x4e\x2a\xc8\x10\xec\x1b\x80\x7d\x03\x67\x7f\xec\x6a\xec\xae\xc6\xe2\xee\x8a\x7d\x58\x85\xda\x89\xbb\x2b\x76\x4c\xe5\x10\xeb\xbb\x93\x65\x30\xf6\x61\x93\xc3\x6e\x59\xa7\x80\x30\xe2\x3e\x8c\xb8\xdf\xc9\xa5\x10\xbb\x9a\xb8\xab\x89\xb0\x4a\xc5\xee\x02\xbc\xe7\xef\x39\xda\x42\xb4\x4f\xec\xfa\x3b\x88\x7b\x8f\x9d\xcb\x92\xd8\x93\x95\x95\x9c\x89\xb1\x97\xbf\xa7\x99\x8d\x5b\x2c\x76\x57\xe5\xdd\x55\x19\xb7\x58\xec\x5c\xa0\xc4\x3e\xfd\xb6\xc9\xbb\xd3\x36\x9b\x9a\x7e\x4e\xea\xe0\x12\x24\xc4\x04\x93\x26\x6c\xfd\xc3\xef\x65\xb5\x3d\x08\x52\x0e\x00\xc2\x7f\x21\x28\xf8\x00\x28\x1c\x3b\x11\x9f\x01\x36\xb8\x1d\xe0\xc8\x62\xbf\xfc\x3d\x6e\x41\x0e\xb8\x22\x62\xc7\xf5\x16\x3b\x2a\x79\x90\x03\x21\xf6\xc7\xdf\xc3\xa4\x3e\x36\xd5\x40\x55\x13\x14\x7c\x80\x19\x8b\xfd\xb5\x0f\xb8\xb5\x38\xc0\x8c\xc5\xfe\x39\x94\xdf\x4f\xb6\xde\x3d\xb8\xaf\x8e\x83\x7b\xbb\x03\x80\x58\x1c\xae\xac\xc7\x3a\xc4\x2d\x59\x47\xc6\x98\x1f\xcd\xef\x60\x63\x3f\x38\xd1\xc5\x81\x5b\xf6\x80\x00\x24\x0e\x0d\x8a\xc3\x6c\xe3\x80\xc1\xe2\xe0\xea\x21\xc0\xf7\x2e\x19\xef\xba\x8a\x1e\xbb\xdf\xc1\x8a\x7e\x68\x3c\x1c\x87\xdf\x81\x6e\x1c\x87\xed\x3b\xec\x17\x56\xf9\x83\x13\x5d\x80\xf9\x6d\x07\x08\xb1\x38\x0e\xdb\xd7\x7d\x17\x7d\x39\xba\x6d\xe9\xbe\x8b\x6e\x1c\x78\x14\xe2\x18\xf6\x7d\x51\xaf\x2b\xeb\x31\xfc\xde\xa2\x5f\xd4\xc9\x23\xec\x17\x56\xf4\x23\xac\x23\xed\x03\x76\xec\x23\x6d\x1f\x3a\x79\x10\xc5\x18\x87\x2b\xe6\xc1\x35\xc3\x41\x54\x69\x1c\xe9\xf7\xa6\x89\x0a\xd1\x83\x43\xfd\x3b\xf0\x32\x1c\x70\x5d\xc4\x31\xfd\xbd\xe9\xef\x35\x9e\x9b\x53\xd9\x2f\xc9\x21\xfd\x7c\xf9\x1d\x1c\xe9\x0e\x00\x5c\x71\x5c\xfe\xde\xe5\xef\xb1\x52\x43\xd9\xb1\x8a\xc3\x74\xa3\xbc\xeb\xce\x7e\xdc\x72\x5e\x38\xbe\xb7\x63\x6e\xb2\x45\xa2\x18\x03\xb8\xef\x2a\x6c\x8b\xe3\xfb\xf8\xee\xe3\xb7\xb1\x44\x1c\x8f\xe3\xc1\xf2\x77\x00\xf4\x8a\xc3\xa5\xee\x78\xad\xc3\xf1\x7d\x7d\xee\xb5\x0e\xc7\xf2\xb5\x4f\x59\xfe\x0e\xb2\x43\xc7\xf1\xf9\xbd\x9f\xcf\x31\x96\x5d\x3d\xed\xbf\x8c\xf9\x18\x6e\x7d\x0b\x65\xcc\xb7\xc6\x58\x76\x40\xe9\xd1\x9b\xfd\xc2\x92\x0d\x25\xc9\x2a\xec\x97\xe2\x5d\xbc\x61\x21\x2a\xf9\xc0\xf3\x15\x5d\x23\x57\x54\xf2\xd1\x58\xc6\x3b\xa0\xf4\xe8\x2c\xa7\x07\x9e\xaf\xe8\xc0\x89\xa2\x63\x01\x1c\x70\xc8\x04\xb0\xe5\x55\xf8\x1c\x63\xd9\xd5\xd3\xae\x9e\xee\xec\xe2\x40\x99\x57\xe1\xbb\xcc\xe9\xde\x7d\x8e\xf5\xf4\x00\xb6\x15\xdd\xf5\xb4\xb3\x9e\x1e\x78\xbe\xa2\xbb\x9e\x76\x80\x77\xe6\x0a\x09\x49\x46\xa2\xab\xa7\x78\xc3\xa2\x13\x3d\x19\x3d\xac\xb7\xaf\x31\x02\xdf\xbc\x8a\x5d\x19\xfd\xe2\x7a\xda\xd5\x5d\x3c\x64\xd1\xd5\x5d\x10\xd0\x3b\xa0\xf3\xe8\xaa\x6e\xc7\x00\x38\xc8\x32\x1a\xbd\x6c\xca\xb4\xc9\x0c\xaf\xc8\xe7\x10\xf9\x7c\x00\x9f\x0a\x91\xcf\xd1\x09\xa2\x3d\xc8\x24\x15\xfd\xb4\x29\xa7\x4d\x61\x19\xef\x2e\xa7\xfd\xfc\xbd\x4b\xbd\x97\xbf\xb7\x96\xc4\x01\x15\x7e\xf4\xdb\xd6\xdd\xf6\xf2\x6c\xff\xde\xeb\xbb\x7b\x73\x7f\xec\xa0\xc9\x87\xab\xb0\x5d\x85\x3d\x1c\xd4\xd7\xda\x5c\x30\x01\x4d\x45\xc7\x2f\x11\x1d\x50\xe8\x01\x68\x2a\xfa\xe7\xef\xe1\x16\x3b\x70\xd1\x45\x77\x61\x15\x07\x7d\x90\x79\x2f\x86\xfb\xb5\x38\xe8\x03\x20\x55\x0c\x4f\x6a\x83\x30\xca\xe3\x60\xf1\x16\x1b\x1d\x62\xa3\x0f\x72\x73\xc5\xd0\x8c\x1d\x9c\xd4\x8e\x83\xc9\x3d\x3c\x95\x8d\xfd\x27\x5b\x3d\x34\x5c\x58\x05\x38\x1f\xb8\xf2\x62\xb8\x88\x0e\x95\x13\xb7\x5d\x0c\x40\x6c\x31\x0e\xbf\x97\xae\x1c\x9a\xa2\x83\x4b\x8b\x03\x96\x90\x18\xdd\xdf\xc3\x3c\x3d\x00\x5c\xc5\xe8\xb6\xaf\xdb\x2f\x41\x1d\xf8\xc5\x42\x20\xf4\x71\x04\xdf\xa1\xc9\x3a\x5c\x58\x0f\x26\xb2\xa0\xe7\x18\x61\x9b\x99\xc8\xc3\x85\x75\xb0\xd9\x1f\x84\x56\xc6\x08\xfb\x05\x5f\xd9\x41\x38\x7c\x8c\xb0\x8e\x30\xd1\x39\x1b\xb6\x08\xe7\x18\x6a\x22\xb1\x93\x31\xca\xdf\x73\x11\x85\xff\x24\x06\xfe\xb3\x20\xf1\x7f\x3b\xe0\x1e\x09\x12\xfc\xaf\xe2\x53\x46\x5b\xa6\x32\x36\xf6\xa3\x33\xbe\x64\xe3\x5f\xc5\xa1\x8c\x6f\x73\xb1\x1d\x2e\xac\xdd\xb1\xbc\xec\x17\x1c\x14\x47\x67\x82\x02\x63\xfe\x8b\xc1\x5d\xed\xd1\xd9\x74\x87\x8b\x2d\x08\xe6\x25\xa3\xde\xc7\xbe\xc7\x7d\x7b\x74\xc7\xd2\xc5\x76\xb8\xd8\x92\x22\x29\xc6\xe3\x77\x3c\xb6\x99\x85\x7a\xbc\x3e\x87\xfb\xf6\x80\x3e\x2c\x86\x9b\xfd\x50\x77\x3b\x66\x36\x48\xe6\xbf\x00\xc3\x1c\x60\xbf\x42\xec\x72\x8c\xcf\x2a\xb0\xdb\x04\x2f\xc7\x50\x75\xbb\x43\x8e\x9b\x2d\x60\x90\x58\xb2\x55\x45\x70\xf3\x10\x02\x9a\x0f\x18\x77\x22\x54\x67\x32\xb0\xb7\x03\x76\x9d\x10\xd0\x1c\xe1\xfa\xdb\x99\xdc\xe1\x09\x8c\x44\xea\x4b\xc6\xbb\x5c\xdf\x86\x29\xd4\x0f\x68\xb2\x23\x3c\x81\xc5\xee\xa7\x61\x8f\x05\xb4\x4a\x11\xbb\xcf\xb1\x4e\x93\xfd\x7c\x15\x0e\x11\x53\x3a\x5c\x7f\x49\x6e\xbe\x64\xd4\xa1\x4d\x40\xd2\xf2\x76\x0c\x4c\xf0\xd0\xc4\x25\x9d\xf8\x92\xf1\xae\xea\x1c\xaa\x33\x21\x96\x41\xfa\xf0\x55\x34\x65\xb4\x05\xec\x66\x04\xb0\x85\x03\x4c\x57\x84\x27\x30\x32\x86\xb7\x03\x4c\x57\xc8\xa2\x11\xa4\xfb\x5e\x32\x7e\x2f\xfc\x0e\x4e\x5b\x07\xa1\x98\x11\xda\xb8\x24\xe4\x6e\x07\xa1\x98\x11\xae\xbf\xa1\xed\x00\xce\x2b\x04\x4d\x07\x40\xe9\x25\xe3\xdb\xd2\x6f\x73\x2a\xe0\x0f\x8c\xd0\x9e\x08\xa7\x02\x69\xb2\x23\xf4\x32\x88\x9a\x96\x5c\x26\xc2\xa9\x10\x2e\xde\xf8\x08\x03\x08\xf5\x2a\x86\x32\xda\x3c\x6d\xcb\xf4\xdb\xb0\xdb\xc2\x93\x5a\x9c\xd6\xab\x6e\xc0\x17\x16\x71\x5a\x6f\xd0\x66\x6d\xe1\xd0\x16\x1e\xea\x06\xd7\xd0\x21\xba\xfa\x00\xe7\x15\xe1\x89\x8e\x6c\xd6\x4b\xc6\x18\x69\xc7\x84\xb6\x30\xd9\x8a\x22\x9c\x6e\xa0\xa8\x97\x8c\xf6\x79\x64\x0b\x6d\x1b\xa8\xb8\x23\xb4\x63\x4c\xfc\x7c\x10\x9e\x19\xa1\xcd\x02\x12\xba\x1d\xe1\x98\xbb\x05\x90\xe3\x39\x3a\x66\x51\x3c\x7e\x9a\xb3\x0d\xd7\x5f\x90\xeb\x79\x15\x43\x19\xdd\xec\x4e\x11\x9a\x36\x10\x3e\x47\x38\x03\xc3\x19\x88\x9b\x2f\xc2\xdd\x43\x44\xf5\x81\x9b\x2f\xc2\xdd\x23\xdc\x3d\xc0\x6c\x05\x19\x9b\x57\xe1\xbb\xec\x00\xe9\xee\x21\x7a\xfa\x00\xc7\x15\xe9\x14\x24\xe3\xf2\x92\xed\xc8\x5e\x65\xd6\x81\xba\xa4\x26\x10\x19\x95\x97\x6c\x22\x2b\x65\x0c\x07\xa1\x98\x21\x7a\x3a\x52\x73\x47\x5f\x5d\x3a\xb5\xd2\xa9\x45\x1a\xb9\x48\xfd\x77\xa9\x69\x03\x18\x2b\x52\xd3\x26\x35\x6d\x48\x27\x12\x24\x3f\x5e\x85\x6d\x61\x57\x48\xa7\x5b\x76\xeb\x60\x57\x48\x77\x94\x74\x47\x01\xa0\x15\x39\x7c\x6e\xf8\x1c\x6a\x90\x84\xd1\x84\xa9\x8d\x8f\xc8\x7f\x07\xd7\x87\x48\xea\x48\x93\xeb\xeb\xca\xcb\xb0\xf9\x61\xb7\xb1\xaa\x64\xd8\x7c\x2d\x24\x5d\x79\x22\xa9\x03\xfe\x9a\x76\xc0\x7f\x1a\x59\xfe\x5e\xd9\x1d\xac\x2a\xe9\x2c\x4b\x67\x99\x3e\xba\xd4\xf7\x91\x6e\x2e\xc9\x4a\x03\xac\x7a\x15\x5d\x19\xef\x02\xa7\x8b\x74\xf6\x24\xab\x4a\xba\xb9\xa4\x96\xbc\x3e\x44\x51\xd3\x91\x6e\x24\xa9\x4a\xdc\xd6\x4b\x20\xbd\x89\x41\x23\x35\x6e\x44\x43\x1f\x30\x66\x46\xba\x41\xa4\x1b\x04\xc4\xaa\x41\x86\xdf\x55\x94\x32\xea\x50\x65\x53\x95\xd5\xcf\x96\xaa\x6c\x6a\xf0\xa4\x43\xad\xca\x8a\x7c\x3e\x60\xe5\x8e\x52\x3d\x45\x39\x1f\xf0\xbe\x07\xb0\xe5\x55\x0c\x65\x13\x59\x29\xf3\xdd\xf2\x39\xd4\xa4\x76\xbf\x8d\xf1\x10\xbd\x1c\x25\x0b\x1f\x20\xac\x10\xa9\x1c\xe5\x69\x50\xff\x99\x48\xe5\x00\xa9\x1c\xbb\x4d\x39\xac\x16\xdf\xc6\x41\x92\x89\xa8\xe3\x54\x76\x29\xe3\x55\x0f\x79\xe0\x90\xdb\xa1\x4b\xad\x34\x9e\x01\x25\xc7\x1e\x8a\x18\xc9\x72\x4d\xd6\x53\x56\x6a\x06\xd9\x56\xdb\xa1\x07\x8c\x34\xa9\xab\xa0\xa7\x80\x65\x05\x49\x4e\x57\xc1\x48\x02\xc1\x0a\xb1\xc6\x41\xd6\xd2\x25\xa3\x29\x9e\xe7\xca\x75\x95\x28\xc9\x10\x7f\x1c\xa5\x66\x94\x6d\x71\x5d\x2d\x3c\xba\x07\x04\xbb\x51\xae\xab\x75\xfa\x2e\xfb\x70\xa9\x41\x62\x92\x0f\x20\x58\x51\xfa\x13\x80\x21\x2f\xd9\x1a\xdd\xd2\x9d\x55\x9e\xfb\x88\x92\x0c\x12\x88\xfe\x45\x69\x8a\xe8\xba\x2a\x4d\x11\xf2\x89\xb6\x03\xba\xf2\x10\x7f\x1c\xa6\x0c\x3d\xa6\xdd\xec\xe2\x48\x56\xd0\x25\xa3\x0e\xcf\x7d\xc5\xbd\xc8\x01\x2c\x2b\x00\x28\xaf\x82\xb5\x1b\x26\xe2\x28\x6d\x11\xa0\xc9\x4b\xc6\x73\x9f\x6d\xc6\x1b\x7c\xc0\x1b\x1c\xe4\xf7\x5c\xc5\xa7\x6c\xb5\x6f\xea\x0d\x9e\x6a\xdf\x64\x71\x9c\x9e\x05\xa7\x67\x41\x5d\x61\x80\x8c\x57\x61\x9b\x59\xe4\x27\xe8\x86\x00\x4a\x1c\x5c\xce\xc7\xd4\xec\x98\x00\x1e\x0e\x72\x92\xc6\x04\x3a\x1f\x53\xb3\x83\x6c\x82\x31\x3d\xf6\xcd\xdd\xa6\xb0\xe6\xcd\xc3\x77\x5d\x2f\x61\x73\x0f\xe1\xc7\x31\x75\x59\x10\x01\x19\x53\x8d\x9c\xae\x97\x44\x40\xc6\xd4\x02\x9f\xba\x2c\x74\x67\x91\x69\x73\x15\x53\x19\xef\x7a\x3c\x04\x66\xdc\x0e\x22\x20\x63\x7a\x3c\x24\x3d\x66\x3b\x40\x6a\xc5\xd4\x3c\x99\x9a\x27\x73\xfa\xdc\xef\x5d\xeb\xc5\x54\x9a\x61\x9b\x71\xc1\x75\xc2\x1d\x63\x6a\x95\x93\x0b\x73\xc9\x68\x9f\x26\xcb\xc4\x2a\xef\x90\x8c\x87\xd8\xe4\x20\xed\xe5\x92\xd1\xbe\x74\x38\x80\xec\x77\xdd\x59\xe2\x95\x03\x6e\xae\x25\xeb\xc8\x1e\x65\x9f\x32\xbe\xd7\x69\x44\x4e\xc9\xf0\x80\x35\xb5\x58\x84\x30\x9b\x18\x39\x84\x30\xc7\x04\x71\xd4\xf5\x7a\x91\x18\x72\x15\x89\x8c\xd3\xf0\x74\x66\x81\x64\x5e\x32\xba\x45\x23\x1f\xd4\xf2\x92\xf1\xae\x56\x07\x70\xe4\xd6\x49\xcf\x14\x53\xaf\x1c\x70\xe4\x25\x9b\xc8\xec\xe6\xcb\x77\xf1\x69\xcb\xf1\x15\xf3\xb2\x0e\x66\xb9\x78\xe5\x98\xc4\x56\x77\xe8\x77\x63\xde\xfe\x1e\x67\xd5\x0e\x7f\x64\x48\xcd\x17\xa4\x81\x6c\x52\xf3\x87\xd8\xe4\x20\xbb\x63\xeb\x7a\xb3\x48\xda\xb8\x0a\x7f\x4f\x35\x70\xb6\x01\x51\x6e\x5d\xcf\xd5\x74\x66\xcd\xd7\xbe\xc2\xdb\x31\x35\xfc\x21\xb5\x6d\x1d\x64\x57\xcc\xcf\xe1\xfd\x7c\x8e\x59\x7e\xea\x51\x39\x99\x45\x9d\x70\xc4\x38\x9d\x45\x27\x16\x7d\x07\x9e\x15\xa7\x57\x89\x27\x16\x7d\x87\x6f\x2c\x04\x27\x07\x79\x19\x5b\x07\x9e\x15\xa7\x9e\x3f\x68\x72\xe3\xa0\x9b\x4f\x8d\x7c\x20\xca\xeb\xb1\xa5\x05\xe7\xee\xab\x38\x03\x7b\x63\xf2\x9e\x2e\xf5\x64\x6a\x5c\xb2\xff\x81\x0b\xff\x74\x27\x38\x0f\x5b\xcf\xdc\x3e\x35\x54\x40\x30\x2f\x19\x2d\xd5\x50\x39\x99\x78\xbd\xb1\x4e\x9f\x9e\x0b\x4e\x7c\x30\x1d\xe0\x57\x80\x63\x5e\x85\x5f\xc4\x22\x70\x72\x0f\x1f\xa4\x6b\x6c\xa6\xfa\x8e\xb3\xdf\xca\x3e\x65\xf4\xa4\x3e\x45\x92\x31\xb6\x0e\x18\x2c\x4e\xfd\xdc\xe7\xf0\x93\x58\x04\x84\x33\x07\xb9\x16\x5b\x27\xcd\x63\x9c\x5a\x27\xa6\x47\xec\xfa\xba\x4e\x27\x14\x68\xe5\xd6\x1b\x13\xfe\x74\x42\x9d\x4e\x28\xd8\xfa\xe2\x74\x42\x9d\x4e\x28\x92\x0b\xc6\xa9\x9f\x9b\xcc\x85\x4b\xc6\xb7\x69\xb1\x90\x90\xb0\x75\x7d\x58\xa7\xb3\xec\xe4\xb6\xa6\xeb\xc3\x3a\x3d\x03\x9c\xce\xb2\xdd\xd1\xf7\x06\x87\x5c\x83\xad\xeb\xd7\x3a\x3d\x17\x9c\xdc\xf5\xf7\x5d\x8d\x70\x96\x9d\xf8\x28\xfb\x8e\x51\x7c\x7a\x23\x69\x86\xc0\xae\x5f\xeb\xd4\x1f\x7e\x42\xdb\xd2\x09\x3d\x0c\x52\x05\xae\x62\x57\x46\xbd\x97\xef\x02\x8f\xee\xe4\xd0\x0c\xe1\xd1\x71\x3a\xf3\x08\x47\x8c\xd3\x99\x47\x2a\xbf\x25\xa3\x9f\x6f\xdf\x7d\x94\x39\xe6\xcf\x4f\x86\x66\xef\x8e\x91\x7e\xf3\xd3\x19\x45\x92\xba\x38\xb5\x80\x40\x30\xb7\xae\x73\xea\x74\xf6\x9c\x9f\x6d\xe1\xac\x7a\xea\xa3\x14\xce\xdc\x89\xed\x0b\xe1\xcc\x21\x9c\xb9\xef\xec\xaf\x32\xfd\x05\x59\xf4\x5a\x07\xf9\x15\x97\x77\xf8\x97\xb3\x8c\xe4\x47\x71\x39\xcb\x48\x98\xd7\x3a\x69\x6a\xe3\xf2\x2c\x7d\xe1\x06\xea\x64\x3c\x88\xcb\x3d\x4d\x28\x74\xd7\x4d\x75\x39\xf3\x2e\xa7\x19\x04\x9d\x71\xb9\x81\x91\x12\x6f\xc9\x68\x8b\x57\x43\xe4\xb3\x6b\xfd\xe0\xac\x7a\xe9\x5f\x17\x0a\x6d\x8a\x8f\xb8\x9c\x33\xe6\xb4\xeb\x4e\xe5\xcb\x39\x43\x3e\xbb\x25\xa3\x5e\x8d\x7b\xf2\xd7\xb5\x0e\xba\x2c\x2e\x8d\x7b\x21\xd3\xfd\xc0\x65\x21\x64\x3a\x84\x4c\x77\xd0\x65\x71\x39\x67\xc8\x3a\xb7\x64\x13\x99\xef\x3a\x67\x0e\x2c\x52\xf0\xd3\xab\xa0\xaf\x74\x3f\x5d\x5a\xef\x57\xfa\x1d\x6c\xba\x97\x7e\x78\xd0\xd4\xad\x1f\xcc\xad\xcb\xf9\x71\x61\xb7\x75\x5d\x4d\x97\xf3\x83\xc4\x74\x01\x29\x58\x5c\x6e\x2e\x64\x9b\x6b\x9d\x70\xbf\xb8\x9c\x0a\xd7\x9a\x0a\x01\x7e\x2d\x2e\x2d\xb9\x6b\xfa\xb5\x8e\xae\xee\xcd\x0b\x9a\xf6\x5f\x43\xbc\x2c\x22\x2f\x5d\xeb\x87\x03\xae\xd9\x7f\x99\x71\x1e\x1c\x59\x5c\xfa\x99\x2e\xfc\x4c\xfd\x50\x09\xbc\xf2\x14\xbb\xdd\xf5\x65\x89\xdd\x0e\x52\xd5\xb5\xde\x31\xbc\x2e\x27\x0c\x10\xee\x25\xa3\x5e\xb7\xa5\x0b\x2e\xaf\x4e\x00\x60\x5c\x4e\x8e\xcb\x6d\x49\x27\xd0\xa5\x11\x78\x71\xd5\xdf\xc1\xa0\xc5\xa5\x8f\x8a\xcc\x75\x4b\x46\x5b\xf4\x51\x5d\x8f\x75\xb0\x0d\x5f\x6e\x4b\x17\x70\xc2\x4e\x96\xb8\xb8\xbc\xd6\x27\x73\x5c\xeb\x90\x31\xc4\xf5\xfe\x9e\xb3\x5e\x4e\xa0\x64\x93\x5b\x05\x0a\x04\x06\x2d\x2e\x0d\xbe\x0b\x83\xaf\x77\x15\xc3\xd3\xf0\xe5\x56\x05\xb3\x41\x48\x8d\x19\xb7\x5b\x95\x3e\x2f\x92\xca\xad\xe2\x52\xb6\xbe\xf7\xf6\xb8\x71\xaf\x6d\x27\x88\xe1\x8b\xdb\x2b\x52\x50\xe2\xad\x77\xec\xea\xdb\x7d\xe2\x76\x9f\xe8\xe8\x0a\x29\xda\x56\x61\xb5\xe9\x73\xaf\xb2\x4f\x19\x55\x68\xa0\xdd\xea\x3c\xf1\x84\x71\x6b\xa0\xdd\xea\x37\xd4\x60\x71\xab\xdf\x24\x66\x5b\x32\x3e\x43\x03\x0d\x28\x77\xeb\x50\x83\xc5\xed\x89\xf5\x0e\x9f\x43\x0d\x6e\x6f\xeb\xc9\xb2\xb6\x64\xd4\xeb\x3c\x00\xf2\x3d\xe0\xa3\x89\xdb\x69\x00\xc5\x6e\xeb\xb0\x8a\xc5\xed\x75\xa8\xf0\xef\x4e\xce\x8b\xb8\xdd\x3a\x48\xb5\xd6\x3a\x90\xb5\xb8\x75\x1f\xdd\x4e\x0d\x5d\x5e\xb7\x5b\x82\xf0\xef\xae\x7b\xeb\xd6\x55\x04\x0a\xbc\x75\xdd\x5b\xb7\x07\x5b\x50\xe0\x4b\x46\xf7\xb9\x4d\x80\x02\x5f\x32\x7e\xcf\x99\x00\x79\xe9\x92\xd1\x16\x0d\x2f\xb1\xde\x7d\x1c\xf1\xef\x9d\xfe\x76\x27\xb8\xdd\x09\x06\x2b\xfc\xed\xcd\xa8\x50\xf0\x0e\x11\x59\xdc\xb7\xa3\x7a\xdb\x04\x76\xf5\xdb\xcb\xfa\xfb\xb6\x8b\xb0\xdf\x6e\x6d\xb0\xdb\xdd\x41\x4f\xd7\xad\xa3\xf5\xd6\x06\x03\x0d\x17\xb7\xca\x7e\x73\x49\xd0\x07\xa7\xb4\xdb\x73\xf4\xfd\xda\x16\x56\xa3\x5b\x65\xbf\x5f\x9f\xe3\x94\x26\xec\x3b\xee\xa5\xd8\x83\x54\x84\x21\x9a\x3b\x1e\x37\x02\x9d\x5f\x8f\x1b\x01\xa9\xd7\x96\x6c\x20\x2b\x65\x36\x85\x45\x4b\x38\x77\x3c\x6e\x04\x03\xd3\x4f\x2a\xd7\x78\x34\xc1\x74\x88\x09\xe7\x0e\xe1\xdc\x9d\xb4\xef\x21\x9c\x3b\x1e\x9c\xaa\x9d\xc0\xc7\x78\xdc\x08\x1e\xee\x0d\x3a\xd9\x08\xe2\xf1\x42\xf6\xd9\x79\x97\x28\xc6\x10\xe2\x1d\x64\x51\x5b\xb2\x35\xd2\x8f\x93\xe7\xe1\x74\xd3\xa1\x21\x0e\x21\xde\xf1\xf4\xdf\x73\xd4\xeb\x09\xe5\x71\x81\x07\x0c\x17\x8f\x27\x8f\xc7\x93\x07\x29\xd1\xe2\xf1\xe4\xf1\x78\xf2\xd0\x23\xf6\x78\x1f\x20\x9c\xbb\xeb\x11\x7b\xd4\x76\x50\xdd\x4b\x46\x1d\x5e\x6a\x09\xe7\xee\x7a\xc4\x84\x73\xc7\xe3\x46\x40\x64\x63\x3c\xce\x80\x47\xe3\x89\x84\x60\xf1\xb8\x39\x3c\x38\x50\xbb\x28\xb7\x47\x58\xcb\x03\xed\x44\x17\xd1\xf6\x38\x2b\x1e\x67\x85\x5e\x32\xd2\x55\xfc\xc5\x33\xfd\x5e\xd4\xea\xf1\xe2\xf6\x59\xbb\xc4\x20\x6b\x7e\x3c\x9e\x50\x1e\x4f\x23\xa4\x5c\x8d\xc7\xe5\xfc\x71\x39\x27\x89\x6f\x3c\x2e\xe7\x8f\xcb\x39\x7c\x65\xf1\x88\x6a\x21\x0b\xdb\x92\xf1\x7b\x9e\xe9\x1f\x67\x82\xce\xb4\x47\x9b\xe8\x71\x89\x27\xa1\x6e\x3c\xde\xf9\x3e\xce\x0e\x52\x31\xc5\xe3\xcd\x99\x28\xf2\x2e\xf0\xed\x71\x76\x3c\x8f\x9f\x81\x5d\xf3\x88\xe6\x02\x4c\xbe\x64\xbc\xfb\xd8\x05\xe0\x24\x7b\xa8\x42\x2e\xfb\x80\xc9\x97\x8c\xae\xd2\x31\xfa\xb8\x15\x84\x6a\xe5\xfd\xee\x03\xfe\xb1\xa7\x2a\xe4\x99\xfe\xd1\x4e\x12\xd1\x26\xd9\x77\xbc\x2e\xf1\x84\x40\xc6\xeb\x69\xe4\xd5\x4e\x22\x04\x32\x44\x91\x87\x28\x72\xb3\xef\xc4\xeb\xb2\x4f\xca\x8d\x66\x3e\x9f\x20\x37\xdb\x2a\x6e\x65\x81\xec\x55\x66\xbd\xf8\xe0\x5f\xef\x77\x01\x9d\xb7\x9e\x6c\x5f\xaf\x57\x68\xaf\x76\x12\x74\xf6\xf1\x7a\xa8\x7f\xdd\x33\x48\xcc\x10\x22\xcb\xc3\xa4\x66\x3d\xd9\xd2\x5e\xa7\x82\x4c\xc7\x9d\x3c\x37\xf1\x7a\xb6\x78\xbb\x6d\x61\x4b\x7b\xc5\xd0\xbc\xc3\xe7\xb0\x75\x5e\x81\x8d\x2f\x8c\x55\xba\x71\x44\x9b\x87\x68\xf3\x4e\xa4\x64\x88\x36\x0f\xd1\xe6\x9d\x94\xb8\xf1\xea\xc9\x12\x6d\xde\x89\x9e\x8c\x57\x57\xd6\xeb\x8c\x11\xe4\xf6\x3a\x63\x24\x49\xee\x82\xdc\x5e\x01\x8b\xe4\x81\x68\x5d\xf0\xda\xeb\xb9\xfc\xf5\xc8\x40\x3a\xd0\x78\x9d\x09\x22\xd0\xbb\x7b\xd0\xeb\x5e\xf0\x6a\x14\x91\x99\x35\x5e\x0f\xe1\xaf\xc7\x03\x22\x25\xe3\xd5\xbd\x05\x60\x7d\xc9\x78\x4e\xf7\x96\xe8\xf5\x2e\xa0\x4d\xf4\x7a\xbc\x5a\x40\x02\xda\x4c\x0a\x11\xaf\x47\x86\x62\xbf\x31\xb1\x43\x48\xba\xdc\x89\xb2\x8c\xd7\xdb\xb7\x17\xa7\x69\x27\xd3\x5a\xbc\xaa\xfd\xab\xda\x43\x7a\x16\xaf\x8b\xfd\xeb\x51\x40\xf0\xda\xab\x7b\xeb\x75\xb1\x77\xfa\xbe\x3a\x48\xdf\xd7\xef\x60\x96\x8b\x54\x8f\x57\xcb\x46\x17\xdf\xab\x65\xf3\x7a\xe0\x16\xe4\xf6\xea\x34\x7d\xf1\xf3\xf7\xc2\x3a\x79\xb5\x6c\x48\x72\xd5\xba\xc0\xb7\xcf\x43\x38\x20\xf6\x25\x0b\x64\xa9\xac\x94\x4d\x64\xa7\x32\xdf\xc5\xe1\xfa\x79\x3c\xf8\x3c\x98\x17\xd3\xfc\xf3\xaa\xed\x73\x2a\x10\x79\x19\x9f\x53\xe1\x53\xed\x0b\xa7\xf8\xe7\xf1\xe0\x53\xed\xc9\x75\x16\x9f\x9e\xd4\xef\xb0\x2d\x4c\xe9\x4f\xb3\xe8\x53\xc5\x0b\x3d\xf8\x84\x30\x08\x59\xef\x10\x86\xc7\xe7\xcd\x31\xfc\xce\x83\xf4\x2b\xf1\x09\x1c\xfb\x3c\x3d\xcf\xad\xfe\xbd\xd5\x7f\xa2\x7d\x49\x3e\xd5\xba\x8e\xc2\xcf\x7b\xe5\x4f\x43\x6a\xa2\x39\x9f\x7b\xcb\xe7\x81\x7b\xa2\x39\x02\xe4\xe3\xe3\xb6\xa0\x8b\x99\xfb\xbc\x7f\x86\x61\x7a\xc9\xf8\x72\xf7\x16\xb2\x41\x2d\x19\x5f\xe4\x9e\x21\x18\xbe\x4f\xf6\x0c\xc1\xf0\xf1\x11\x34\xd7\x75\x1e\x7e\x1e\x1e\x3e\x0f\xd7\x93\x09\xff\x39\x2b\x3e\xf7\x87\x89\xe6\x7c\xee\x0f\x9f\x87\xe6\xc9\x9e\x21\xb5\x74\x08\x90\xef\xf0\xa7\xc5\xe7\xa1\x59\x6a\xe9\x3e\xd5\x08\xcf\x05\x9f\xe7\x02\xbd\x8c\x9f\xe7\x82\x4f\x17\x96\x5e\xc6\xef\xb4\x5e\x37\x12\xbd\x8c\x02\xe9\xe3\xd3\xba\xd2\xcb\xf8\x69\x3e\x91\x0c\x6a\xc9\x78\x57\x64\x05\x39\xa1\x96\x8c\xfe\xf3\x82\xed\xbb\x6c\x8b\x9a\xe3\x41\x5a\x70\x7d\xd7\xf3\x28\xb8\x3e\x3e\x37\x0d\x01\x72\x82\xeb\xe3\xc3\x61\xdc\xf5\x32\x7e\x42\x80\xbf\xc7\x31\xe2\xea\xe4\x7b\xd4\x26\xcc\xac\x01\x2d\x7f\x7c\x9a\x59\x1f\x33\x6f\x10\x37\x1a\x02\xee\x43\xc0\xfd\xd0\xf3\x28\xe0\x3e\xbe\xf7\xf7\x2e\x75\x68\x7a\x7d\xaf\xef\xe2\x88\x10\x5c\x1f\x60\xe7\x97\x6c\xfc\xe7\x2f\xcd\x10\x91\x1b\x9b\xcb\x20\xbe\x34\x45\xcd\xa7\x94\xd6\x03\xf7\x61\x02\x97\x5f\x85\x09\xe3\x8e\xbe\x64\x6c\x38\x49\x12\x97\x25\x2b\x64\xa1\x2c\x91\x75\xde\xc5\x8b\x9c\x00\xe5\x97\x8c\x3a\xf0\x75\xe5\xc6\x21\x7c\x00\x9a\x4b\xf2\xb9\xac\x82\xcc\x41\xb8\x14\xd3\xbc\x2e\x29\x6a\x7e\x10\x2c\x9a\xa2\xe6\x93\xf4\x2e\x6d\x00\x90\x4b\x20\xf4\xab\xf0\x7b\x83\xf6\xb1\xe1\xa4\xb4\xd9\x83\x34\xa0\xb9\xb1\xe1\xa4\x14\xd9\x03\x97\x62\x6e\x1c\xc2\x13\x40\xfd\x92\x51\xc7\xf0\xdb\x86\xf5\x16\xcf\x0d\xeb\x1d\x7e\x5b\xd1\x7f\xc3\x36\xe3\x45\x36\xb3\x5d\x6e\xc3\x7a\xc3\x7a\x27\xed\x0b\xeb\x0d\xbf\x77\xf2\x2e\x07\x97\xdc\xc2\x71\x9b\xbc\x9b\xf6\x15\x1e\xe3\x01\x68\x2e\x81\xd0\xaf\xe2\x52\x46\xff\x95\xcf\x95\xcf\x2d\xa3\x20\xe5\xca\x4e\xa1\xf4\x03\x76\xb4\x04\x43\xbf\x8a\x47\x19\x75\x94\xed\xe3\x54\x3f\x00\xcd\xa5\x50\xfa\xdc\xa6\xef\xee\xbc\x3b\xed\xd3\x69\xbd\xea\x06\x97\xdc\x29\x6c\x7e\xc0\x98\x96\xdb\xe5\x58\xe2\x0a\x1e\x38\x17\x73\xbb\x7c\x8e\x39\x33\x70\x24\x26\x18\xfa\x55\xa4\x32\xfa\xf9\xb6\x7d\x5c\xdd\x0d\x1c\x89\x09\x86\x7e\x15\x3e\x37\xa8\xe3\x51\xff\x1e\x9f\x0b\x7e\xef\xf5\x39\xe7\x02\xb4\x67\xb9\x7d\xca\xbe\x9f\x8c\xe7\x3e\xfb\xfe\xb3\x7d\x45\x9f\x7e\x7e\x1b\x67\xe9\x01\xf5\x7f\x92\xc8\x67\x15\xb6\x99\xb1\x34\x33\x4a\x36\xe7\x02\x00\xb9\x6c\x38\xa4\x52\x0e\xec\x41\x8a\xbb\x6c\xdc\x2c\x67\x63\xc7\x19\xf0\x9a\x65\x6b\x3e\xc7\x75\xde\x20\xe4\x33\xe5\xc0\xce\xc6\xcd\xf2\xc0\x41\x98\x0d\x43\x2b\x1b\x3e\xde\x81\x83\x30\xdb\xe1\x73\x87\xcf\x2d\xdb\x3f\xdb\xe1\x73\xe0\x92\x06\xce\xc0\x6c\xec\x2e\xd9\x00\x72\x0e\x00\x6d\x29\x6c\x3e\x1b\x00\x8d\x01\x97\x58\x36\x0c\xa8\x04\x15\xdf\xc6\xce\xdc\x6a\xea\xa9\x70\xf8\x01\x52\x2d\x1b\x00\xb9\x24\x7d\xd8\x92\x05\x32\x9f\xcb\xdf\x73\xd4\x0b\x40\x2e\x1b\xb1\xf9\x03\xf4\x5a\xb6\xf4\x7b\x39\x4d\x0f\xa8\xfa\x53\xae\xec\x04\x15\xbf\x64\xbc\x8b\xd3\x35\x85\xc8\x0f\x12\x7d\x67\x53\x4f\xa1\xc2\x6e\x83\xdb\xa7\x34\x4b\x59\xca\x8b\x3d\xf6\x65\x7d\xa5\xb0\xf9\x24\x5d\xd9\x92\x51\x87\x7a\x0a\x52\x7e\xc9\xa8\xe3\x74\x3c\x00\x21\x0f\xc8\xbf\xb2\x71\x41\x98\x0d\xee\xf7\x71\x34\xbe\x17\xa7\x6b\x36\xf6\x85\x71\x30\x67\xda\x65\x9f\xb2\x07\x0c\x9c\x81\x09\x71\xf6\x2a\x1e\x65\xf4\xf3\x65\xbf\xdc\xbe\xbb\xd3\x16\x75\xbc\xa9\xe3\x38\x0d\xb3\xdd\xd6\x7b\xfb\xee\xf1\x6f\x32\x9d\x6c\xb7\x3f\x8d\x8b\x69\x00\x69\xcb\xf6\xd8\xac\xc7\x66\x39\xd4\x8f\xcd\x7a\xfc\x24\x96\x56\xb0\xf6\xab\x78\x95\x31\xfc\xaf\xdd\xc1\xcd\xf7\x20\x3a\x35\x1b\x37\x24\xd9\xb8\x21\x11\x45\x98\xed\xb5\x5e\xa7\x0f\x11\xab\xd9\x9c\x3e\xed\xb3\x5e\x96\xd6\xe6\xf4\x69\x9f\xf5\xb2\xb4\x9a\x1c\x28\x85\xe1\x0f\xfc\x8c\xb9\xbb\x95\x48\xeb\x3d\x88\x4e\xcd\x1d\x60\x46\xee\x4e\x1f\x9c\x8a\xb9\x3b\x7d\x76\x40\x18\x03\x0e\xb1\x94\xd6\x3b\xa5\xeb\x1e\x07\x43\xbd\x43\x55\x90\xbb\x5b\x44\x5f\xc7\xe9\xdc\xdd\x22\x76\xb7\x08\xa0\x6a\x09\x4f\xf7\x2a\x42\xd9\x40\x36\x95\xd1\x66\xdc\x76\x29\x37\x77\xee\x4e\x15\xc2\x49\x73\x77\xaa\x00\xdb\x5f\x32\xea\x08\x65\x66\xbe\x83\xaa\x3f\x77\xa7\x8a\x9c\xdb\x03\x58\x5a\xca\xb9\x9d\x72\x6e\x0f\xf8\xbd\x72\x4f\xdf\x75\x49\xef\x2c\x85\xf2\x70\xa7\xd8\x7c\x49\x4a\x73\x77\xfa\xc8\xcd\x3d\x08\x31\xcd\xdd\xe9\xb3\x27\x59\x01\x93\x2a\x00\x5e\xa4\x70\xfd\x01\x35\x58\x0a\xd7\xcf\xdd\x19\xd5\x07\xdd\xe7\xec\xd9\x9d\x3d\x40\xd5\x72\x9f\x36\x65\xfa\x19\x41\xf3\x5c\xf9\x85\xf0\x4b\x34\x9a\xfb\xe9\xbb\xa7\xef\x26\xbf\x77\xfa\xee\x69\x97\x3a\x94\x9c\x49\x72\x77\x46\x01\x55\xcb\xfd\x72\x28\x2f\xdb\xc7\x2a\xba\x5f\xd6\x01\x5e\x95\xbc\xf1\xb9\x3b\xa1\x76\x37\x08\xd0\x6b\xb9\xdf\x7e\x86\x93\xa7\x3b\xe2\x4e\x1e\x58\xc0\xdb\x18\xeb\x68\x95\xd2\x7f\xe7\x0e\x70\x75\x10\x91\x9a\xbb\x33\x61\xd7\x58\xc2\x95\x97\xfb\x6b\x57\xe1\x93\x1a\x20\xd5\x52\xf4\x7f\x8a\xfe\x1f\x43\x2d\x50\xc3\x77\x37\x08\x5c\x74\xb9\xab\xe1\x44\x04\x0c\x22\x02\x73\x77\x7f\xd8\xdd\x1f\x08\x52\x4d\xa8\xc0\x57\x41\xcf\x0f\xe6\xfb\xe1\xfe\x60\x90\xc0\x18\x87\xcf\x31\xb1\x0e\xf7\x07\x80\x6a\x79\x70\x38\xcf\x43\xa5\x27\x23\x6f\x42\x05\xfe\x97\x87\x7b\x06\xae\xba\x3c\xf6\x43\x59\x57\xc6\xbb\xe0\x5b\xf3\xe0\x94\x32\x70\xdf\xe5\xb1\xfb\xee\xe1\xbb\xeb\xb4\x95\x32\x82\x27\xb1\x02\x4b\xc6\xef\x81\x79\x4d\x19\xc1\x07\xc1\xac\x79\x74\x9f\xeb\x3e\xc7\x24\x3f\xdc\x5b\x8e\x6e\xd7\xb3\x17\x1c\x4e\x98\xa3\xdb\x07\xb9\xb4\xea\x70\xc2\x10\x2b\xb0\x64\x3c\x37\xfc\xb6\xe1\x73\x45\xbf\xe0\xe3\xca\x23\x1c\x8e\x5a\x6a\x60\x90\x40\x1e\x4e\x0e\xfc\x6d\x79\x68\xdb\x1c\x6a\x38\x01\xa9\x69\x40\x40\x1a\x10\x30\x00\xaa\xe5\x51\x7e\x87\xb6\x0d\x0c\x61\x79\x68\xdb\x1c\xf8\x9f\x46\xb0\xbf\x1e\xd3\x6f\x53\xeb\x83\xc5\xe0\x50\xeb\x0f\x1c\x50\x03\x54\x5a\x9a\x49\x2f\xcd\xa4\x37\xf0\xc1\xe5\xe1\x4c\x38\x9c\x09\xe1\x98\x3b\x13\x0e\x2e\xef\x06\x39\xfe\x13\xde\xf1\x55\xd8\x96\x83\x3a\xb4\x8b\x0c\x3a\x18\xf8\xd6\xf2\xb8\xec\x17\x4e\xe7\x83\x64\x00\x29\xfd\x78\x1e\x4e\x05\x10\x68\x69\x12\xd1\x94\x7e\x7c\xe0\x5b\xcb\x43\x5b\xc9\x40\x84\x41\xb4\x68\x4a\x3f\x9e\x87\x9b\x02\x79\xc6\xf3\x70\x2a\x18\x74\x30\x40\xa0\xe5\xe1\x06\x70\xb8\x01\xe0\x20\xcb\xc3\xa9\x60\xd0\xc1\x20\x32\x34\x8f\xd7\xf1\xfd\xfc\x5e\xf6\xf0\xe3\xb3\x2d\x9f\xbf\x87\xfd\x64\xca\xb5\xec\xa0\xf0\x06\x90\xb0\xec\x2e\xf6\x5d\x5b\x89\x3c\xb1\xd9\x9d\x0b\xdd\x73\x03\x30\xb1\x34\x10\x21\x3b\x27\xf1\x01\x1d\x58\x76\xfc\xb3\xd9\xc1\x70\x0f\xc2\x36\xb3\xab\xf7\x5d\xbd\x4f\x96\x8d\x7e\xf8\x2e\xe4\xa4\x83\x70\xcc\x34\xc0\x20\x89\x29\x58\x32\xea\x25\x8a\x36\x3b\x51\xb4\x23\x0f\x7e\x4f\x1d\xef\x1c\xbb\x07\xce\xab\x94\x1e\x3d\xbb\x76\x3e\xe1\x98\x69\xe0\x40\x76\xed\xf7\xa4\x4f\x3b\xbe\xd8\xec\xf8\x5d\x07\xf0\xaf\xec\xe1\xb7\x71\x5e\x1e\x30\xf5\x67\x27\xa0\x3c\xbb\xd9\x4f\x33\xfe\xed\xc5\xcf\xae\xc9\x6f\xac\xc1\x48\x86\xc6\x58\x83\xec\x38\xa3\x46\x32\xcd\x7a\xd9\xac\x02\x92\x85\xb6\xf7\xb2\x55\xce\x8a\x74\x64\x9c\x15\xdd\x59\x01\x88\x2c\xfb\xb4\x0a\x2d\x79\x40\x64\xd9\xb9\x79\x4b\x63\x0d\x46\x71\xd2\xe8\xa7\xbf\x07\xac\x6a\xe0\xb3\xca\xee\x1a\x0f\x03\x7b\xec\xac\xa1\xd0\xb0\xaf\xe2\xf3\x31\x3a\xdc\x65\xbf\xab\xd8\xc5\xc4\xeb\x97\x1d\x04\x55\xcd\xc0\x3d\x95\xdd\x83\x81\x71\x0a\xa3\x58\x6b\xbb\x8a\xdd\x3d\x04\x14\x0b\x66\xf7\x10\xd0\xb5\x80\x48\xdd\x9f\x06\x2c\x24\x54\xed\x4b\x46\x1d\xaf\x83\xef\x41\x17\xb7\x53\x76\x0f\x01\x5d\x2b\x06\x77\x52\x1a\x88\x90\xfd\xb3\x0e\xb6\x3e\xf3\x01\xa6\x81\x08\x83\x98\xc9\x1c\x5c\x3c\xe4\xe0\xf2\x6c\xe0\x3a\xca\x01\xa6\x23\x87\x87\xda\x2a\x65\x8f\x32\x7f\x8f\xfd\x6b\xec\xfe\x9e\x07\xdd\x62\x52\x18\x88\x90\x43\x2b\x06\xff\x4f\x1a\x74\x90\x06\x1d\x0c\xdc\x44\x39\x60\x3b\x48\x83\x0e\x06\x88\xb1\x34\xe8\x20\x0d\x3a\x18\x04\x40\xe6\xd0\x8a\x19\x2a\x31\x64\xfb\x69\x1a\xdc\x1c\x38\x82\x06\xe4\x5e\x39\x86\xdf\xc1\x25\xc3\xc0\xe9\x93\x83\x10\xef\x34\xe8\x60\x40\xf8\x95\x43\xcb\x86\xd8\x83\x25\x2b\x64\xa9\x8c\x7e\x06\x45\x96\x23\x6c\xb3\x96\x0d\x28\xb2\x84\x4f\x7d\x15\xf4\x01\x4e\x9f\x1c\x6a\xe9\xc0\x65\x3a\x08\x9e\x4c\x03\x11\x12\xc6\xf5\x36\x26\xd6\xa7\x81\x08\x69\x20\xc2\x00\x5a\x96\xd2\xaf\xa7\xf4\xeb\x03\x68\x59\xc2\xa7\xbe\x0a\x74\x88\x48\xc9\x84\x4f\x7d\x15\xbe\xcb\xc6\x34\x2e\xbf\x63\xad\xb9\xa9\x6f\x63\x68\xc7\x8f\xcb\xee\x73\x78\x35\x3b\x8c\x4d\x18\x04\x4f\xa6\xb4\xea\x39\x6e\x3f\xcd\x21\x57\x25\x87\x6b\x2d\x81\x92\x39\x6e\xbb\x4f\x95\x24\x81\x7b\x0e\xcf\xa5\xc3\xb5\x76\x32\xb3\x08\x4a\xf8\xcb\xf1\xfa\x9c\xaa\xf1\xfa\x1c\x88\xe7\x01\x57\x58\x1a\x74\x90\x10\xa6\xb7\x00\x6d\x96\x43\x53\x84\xd8\x83\x25\xa3\x0e\x4d\x11\x62\x0f\x96\xcc\x77\x55\x3f\xd4\x59\x5a\xc9\x0c\x2e\x05\xd2\xa0\x83\xd8\x50\x97\xd0\xd8\x26\x09\xeb\x92\xad\x7e\x09\xd7\xdf\xc0\x6f\x13\x90\xf0\x67\xb8\xfe\x06\xf7\x63\x01\x09\x7f\xc6\xee\xbb\xbb\xef\xa2\x1a\xe1\xfa\x4b\x9c\x41\x0b\x82\x27\x33\xf4\xc7\x10\x67\xb0\x64\x3b\xb2\xa9\xec\x54\xb6\xfa\xd9\x00\x83\x0c\xbc\xa3\xa1\xbf\x28\x54\xf1\x58\x2a\x3e\x03\x6d\x21\x00\x61\x15\x7e\x2e\x5b\x64\x68\x76\x48\xc0\x1e\x1b\x33\x3f\x74\xbd\x48\xb6\x1e\xba\x8b\xc2\xa5\x3b\xd0\xf0\x80\x83\x2c\x25\x5b\x4f\xc8\xd6\x27\x24\x9a\x19\x5a\x1d\x91\xb6\x98\x05\x22\xf4\xb2\x44\xda\x62\x16\x08\x43\x09\xd2\x50\x82\xd8\xf0\x3a\x44\xf9\x5c\xf9\x1c\x5a\x15\x2a\x2e\xd1\x03\x4b\xc6\xd7\x6a\x89\x18\x4a\x10\x64\x97\xcf\x98\xf6\x80\xe9\xd6\xf5\x34\x85\x96\x88\xa4\xec\x01\x78\x2d\x43\xa5\x27\x7a\x60\xc9\xf8\x5c\x3c\x9d\x69\x88\x40\x00\x5e\x4b\x43\x04\x12\xa2\xf5\x16\x7a\x8b\x0c\x11\xc8\x40\xeb\x83\x10\xcb\x0c\x17\xe2\xe0\x2a\x2c\x9a\xda\x72\xdb\x55\x68\x7d\x34\x76\x5c\x59\xd7\x53\xd6\xf5\xd0\x83\x14\xce\x84\x60\x26\x04\x89\x31\x13\xca\xf4\x55\xd0\x07\x8d\x85\x3d\x9c\x09\xc1\x4c\x08\x3d\x48\xe1\x11\x13\xb8\xff\x92\xf1\xbd\x6a\x78\x7c\xb6\x8f\xa3\x94\x38\xff\x14\xe7\x1f\x40\xd6\x12\x80\xff\x2a\x0e\x65\x03\xd9\x50\x16\xca\x12\x59\x2a\xab\xff\xfa\x5f\x91\x18\x4a\x42\xff\x13\x64\x7f\x0b\x28\xf7\x33\x75\xc6\x48\x92\x1e\x50\x90\x65\x6a\x60\x08\xf3\x0f\x9d\x4a\xe6\x6a\xcd\xdc\xfd\x5c\x8e\x5c\xc9\xad\x57\x42\x82\xbe\x64\x34\x45\x03\x43\x48\x7f\xb4\xda\xff\xbd\xd1\x8b\xf8\x4f\xc9\xd1\x83\xd4\x92\x29\x39\x7a\x66\xb7\x59\xac\x1f\xe9\x72\x9e\xeb\x50\x1a\xdc\x7f\xa5\x7c\xe9\x29\x37\x7a\x10\x7f\x99\xc9\x65\x57\x26\x97\x5d\x01\x4e\x2d\x53\x97\x4e\xc2\x7b\x13\x64\x9b\xcc\x04\xac\x9a\x89\x9b\x31\xa0\xd2\xcf\x74\x4e\x00\xec\x5f\x32\x7a\xc3\xd5\x3c\x39\x7f\xc6\xce\x00\xa6\xa6\xb8\x28\xff\x00\x93\x96\xa9\x9b\x31\x71\xeb\x07\x99\x25\x33\x55\xf6\x54\xd9\xc1\x9f\x65\x7a\xd8\x4c\x50\xa8\x01\xfe\x2c\x73\xda\x96\x69\x9b\x99\xc7\x22\xff\x33\x97\xa5\x1d\x69\x87\x6b\x61\x27\xf7\x5f\xb1\x73\xe2\xc9\xd3\x41\xc5\xe8\x08\x92\x4d\xa6\x01\x02\x69\x80\x40\x40\x50\x96\xe9\xaa\x9f\x97\x9f\x8b\xa5\x96\xea\x7a\xc2\x56\x10\x3b\x73\x3b\x6f\x7b\x5e\xbd\xd6\x83\x95\xae\xf0\x30\xa9\x2f\x19\x9f\xfb\xf8\x1c\x46\x47\xec\x8e\x9a\x2e\x96\x64\x85\x0f\xe0\x6c\x29\x5d\x7a\xe6\x67\x5b\xd8\xe8\xf3\x73\xc4\x09\x2b\x0b\xa2\x29\x33\x3f\xbb\x00\xcf\x63\x1c\x58\xbf\x52\xa3\x27\x6c\xe8\x4b\x96\xc8\x4e\x65\x74\x33\x89\x25\x53\x6a\xf4\x94\x1a\x3d\x88\xb0\x4c\x69\xd0\x93\x78\x82\x08\x9c\x64\xe5\x62\x5e\x6b\x31\x0f\x6d\xee\xd2\x34\x21\x9a\xa0\x85\xfe\xab\x52\xd5\x89\x26\x58\xb2\x42\x66\x0d\xae\xf9\xfa\xaf\xca\x35\x5f\x12\xf4\x20\xe6\x32\x8b\x4b\xdf\x34\xb6\x40\x4c\x6b\x96\x6b\x3e\xb1\x05\x41\xf4\x47\x96\x56\x4d\x75\xab\xe5\xd8\x5b\xaa\x7c\xb9\xbe\xeb\xc7\x2a\x8f\x90\x85\x19\x1e\xfa\xa7\x0c\x4b\xc8\x1a\xb9\x7e\x0e\x15\x2d\x4f\x95\x35\xec\xbb\xa1\xcc\x16\x87\xad\x63\xba\x94\xde\xf6\xe2\xa4\x19\x40\xe3\xb2\x74\xcd\xc0\x98\xbe\x64\x3c\xa7\x99\x5d\x69\x53\x58\xb7\xe1\x4d\xff\x4b\x18\xd3\x97\x8c\x5e\x29\x7b\x4a\x95\x27\xba\x32\x4b\x95\x2f\x55\x1e\x3a\xfb\x34\xa4\x21\x0d\x69\x88\xc3\xc1\x98\xfe\x1e\xa7\xca\x00\xb9\x96\xd2\xa7\xa7\xa1\x0a\x01\x4a\x2d\x4b\xfd\x2e\xf5\x1b\x94\x5a\x96\x6b\x79\xb9\x96\x83\x52\x4b\xe9\xd3\x53\xfa\xf4\xd0\xb5\x25\x7d\x7a\x4a\x9f\x1e\x9d\x1d\xbd\x6e\xbb\x8f\x1b\xaa\x20\xab\x65\xd6\xad\x62\xdc\xd6\xa1\x16\x3c\x0e\x11\xc0\xeb\x80\x3d\x2d\xa5\x59\xcf\x7a\x7c\x57\x2d\xe0\x1e\x38\x0d\x69\x88\x8e\x01\x68\x48\x43\x1a\xd2\x10\xba\xc0\xea\x55\x0b\x70\xb0\x04\x91\x99\x49\x7c\xc3\x2a\x5e\x65\xd4\xe1\x7c\x81\x95\x7d\xc9\xe8\x53\xf7\x06\xa2\x1d\x5a\xe8\x02\x2b\x0d\xf7\xe2\xd6\x2a\xf4\x77\x49\xc7\x9e\xd2\xb1\x87\xfe\x2e\xe9\xd8\xd3\x70\x88\x00\xf5\x96\x86\x43\xa4\xe1\x10\x41\x08\x67\x1a\x0e\x91\x13\xef\x4c\x00\x7b\xcb\xa9\x77\x66\x36\xbf\x8d\xb5\x60\x6a\xf4\x4b\xbd\x1e\xfa\xc0\x26\xa8\xed\x9c\x5a\x49\x9d\xbd\xda\xb0\x89\x34\x46\x22\xc8\x7b\x93\x53\x8f\xfe\xdc\x6d\x33\xba\x31\x75\x5d\xce\xc3\x71\x43\x37\xa4\x68\x4f\x63\x24\x02\x38\x5b\x1a\x23\x91\x93\x98\xb2\xd0\xe1\x35\x3d\xb9\x4e\x2d\x27\x42\x33\x73\x6a\x26\x19\xfb\x10\x64\xc4\xcc\x39\x6c\xf3\xf0\xb9\x9d\x7a\x9d\x33\xc6\x3e\xc4\x60\xcc\x8d\x7d\x48\x62\x1f\x42\x93\x48\x0a\xf6\x94\x82\x3d\x74\x6e\x19\xe6\x90\x93\x03\x6e\x00\x53\xcb\xe9\x34\x9a\x4e\xa3\x81\x61\x67\x9e\xf1\x34\x7c\x21\x88\xb8\x4c\x73\x8a\xe7\x74\xe7\xd0\x91\x35\xdd\x39\x66\xd9\x14\x86\x5c\x5a\xf6\x34\xa6\x21\x60\x60\xcb\xa9\xeb\x92\x90\x85\x25\xa3\x4b\x35\x89\xe6\xe9\xa7\xb1\x84\x4f\x8f\xa6\x30\xac\xb7\xd0\xf1\x34\xcf\xdf\x73\x8f\x32\xba\x54\x47\x8c\x3c\xea\x41\x02\xcb\x9c\x3a\xea\xe5\x4c\x8f\xe1\x10\xdd\x0e\x9b\x53\x86\xa4\x96\x39\xdd\x12\x26\x97\xba\x31\xe6\xbf\x43\xed\x72\xea\x9e\x9c\xdc\xf9\x46\x38\x82\xce\xa8\xc9\x9d\x56\x80\x17\xcb\xa9\x15\x65\x28\x43\xe8\xe7\x9a\xde\x69\x49\xbd\x1e\x44\x5a\x26\xf1\x0a\xab\xf0\x5d\x2c\xb0\xe9\x2e\x32\x01\x59\x07\xd8\xb0\x9c\xce\x80\xe9\x0c\xd0\x2f\x75\xea\x9f\x84\x6d\xbd\x05\xf9\x2d\xf3\xd4\x62\x82\x6e\x7d\xc9\x0e\x64\x68\xf1\x09\x78\x28\xf4\x55\x9d\x90\x43\xa4\xa1\x0c\xa1\x5f\xea\xd4\x67\x09\xdd\xfa\x92\x0d\x64\x97\xb2\x47\xd9\x1a\x6a\x79\xd6\x53\x9e\xf5\x00\x07\x96\xc6\x37\xe4\xb9\xfb\x1c\x43\x7d\xea\xb3\x94\x67\x3d\xf4\x55\x11\xb9\xb0\x0a\xeb\xe5\x78\x77\xba\x91\xc8\xa9\x1e\x30\x9b\xa5\x9c\xea\x79\xba\x91\xe8\xab\x3a\xbd\xfb\x3a\x87\xbf\xc7\x19\xed\xd4\x78\x82\x5a\x7d\xc9\x3a\x32\xbf\x23\x7e\xcf\x2d\x55\x34\x08\x21\xa1\x51\x6f\x01\x48\x2b\x4f\x8f\xbd\x27\xfe\x9c\x20\x7c\x31\x4f\x1d\x36\xf2\xa7\x07\xe1\x8b\x29\x7f\x7a\xc2\x9f\x9e\x9b\x4d\x76\x56\x48\x9f\x1e\xc9\x06\x7e\x7a\x78\x38\xd5\xf6\x64\x51\x3e\x01\x59\xe7\xe9\x46\x02\x46\x2b\xa5\x54\xcf\x93\x08\xc9\xd0\xa5\x75\x6a\x3b\x19\x5b\x10\xc9\x6c\x3c\xbd\xe6\x3a\x35\x94\xd2\xa1\xf4\x50\x60\xcc\x40\x40\x53\x9f\xc6\x0c\xe4\x09\xd4\x21\xd2\xa1\xd4\x29\x4f\xe8\xc0\x92\xf1\x69\x1e\x14\x4e\x0f\x0a\x5a\xd3\xa7\xc6\x13\xcc\xea\x2d\x88\x9a\xcc\xd3\x8d\xe4\x7c\xfc\x3d\x16\xdb\xf3\xf1\xf7\xdc\x34\xf4\x63\x9d\xba\x22\x4f\x0f\x05\xc9\x15\xed\xa9\x2b\xf2\x54\xc5\x61\x1d\x4b\xe9\xd3\xf3\x7c\x6d\x8b\x43\xf9\xda\x96\xd7\xbe\xe2\x08\x7e\xba\x69\x9c\x1a\x54\xb0\x8e\x25\xc1\x07\xab\xb0\x5e\x87\xd2\x0d\xe2\x74\x83\x48\x66\xb7\xf1\x06\x79\x6d\xd6\xcb\x02\x7c\x69\x78\x5d\x6b\x96\x24\xbc\x1c\x79\x89\x74\x30\xdc\x20\xc0\x72\xe5\x25\xd2\xe1\x72\x76\x14\x33\xf5\x12\xe9\x70\xb9\x3f\x10\x49\x99\x97\x86\x97\xe1\x06\x41\x02\xcb\xbc\x9c\x09\x97\xfb\x83\x8e\xb1\x4b\xad\xbf\xd4\x7a\xb8\x44\xf2\x52\xeb\x2f\x4f\xd1\x3a\xcb\x0c\x2d\x48\xa2\x09\x96\x8c\xe7\x44\x2b\x5c\x9e\x18\xc0\x6d\xe5\xa5\x0d\x74\xe1\x6d\x0f\x70\x5b\x79\xa9\xcd\x17\x88\x83\x80\x09\x3f\x0d\x19\x48\xc8\xd6\x5b\x80\xdb\xca\xcb\xdb\xdd\x2b\x6d\x0b\xf6\x93\x21\x03\x79\xa5\xf5\x62\x43\x43\xb9\xbe\x0a\xdf\x65\xdf\x34\x64\x20\xaf\xf2\x39\x6c\xaa\xcb\x45\xfe\xf2\x7c\x0c\x1e\x2b\x8d\x23\xc8\xab\x6c\x1f\xc3\x7b\xe9\x93\x24\x8e\x60\xc9\xa8\x63\xda\x3e\x55\x1c\x3c\x56\x5e\x22\x0e\x8c\x10\x08\x98\xc6\xf2\xf2\x7c\x70\xb9\x19\x14\xb7\xc5\x97\x4e\x21\x48\xde\x93\x28\x91\xbc\x34\xa9\x2e\x8f\xc7\xfa\xe3\x60\x75\x5f\x85\xd5\x72\x92\xba\x34\xb3\x2e\xcd\x2c\xa0\x5c\x49\xb4\xc0\x2a\x68\xf2\xf4\xf7\x34\xb3\x2e\x67\x02\x24\x65\x29\xb9\x7b\x5e\xee\x0f\xfa\xe3\x24\x77\xcf\xcb\x99\x40\xf2\xcb\xbc\x34\x9f\x24\x7c\x0f\x00\x57\x79\x3d\xb6\xef\xf5\x5d\x16\x71\x83\x06\xf2\x7a\xad\x83\x45\xfc\x7a\x6d\xdf\x32\xb3\xf2\xf0\xe7\x9c\x30\xd7\x6b\x15\x58\x68\x97\x13\xe6\xf2\xb4\x3d\xb1\xd3\x2f\x2f\x74\x09\x31\x58\x32\xaa\xf0\x54\x72\x69\x65\x4d\xd6\xfa\x4b\x2b\xeb\xf2\x04\x3e\xb1\xe4\x6e\x42\x99\xf3\xf6\xb4\xad\x2b\xef\x06\x83\x9d\xb7\x7b\x07\x3c\x68\x79\x83\xb6\xcb\x9b\xc0\x9b\x80\xf4\x2c\x6f\x4f\x25\xb7\x33\x01\xac\x56\xde\xae\xff\xb7\xc7\x6d\xfd\x71\xf2\xd1\xe7\xad\xa5\xa4\x3f\xee\x06\x6f\x9d\x06\x21\x84\xfe\x38\x83\x10\xd2\x20\x84\x98\x9c\xb8\x6e\xcf\xd3\xb7\xeb\x3f\x91\x9e\x79\xeb\x28\xba\x71\x0a\x25\x38\xaa\x84\x19\x7e\x15\x2f\x32\x2c\xe6\xdb\xbb\x28\x83\x0b\x52\x1f\x98\xc1\x05\x49\x3c\x41\xcb\x6d\xdf\xfe\xbd\xd5\xdf\x4e\x9e\x1b\xaf\x68\x0a\x9f\xba\xd3\x9f\xc1\x91\x94\xd0\xf3\xe7\xed\x3d\xee\x5d\xfe\x34\xc3\x60\x50\x41\xde\xac\xfb\x29\x2c\xea\x76\xdd\xbf\x59\xf7\x73\xb3\x7b\x5d\xf7\xef\xe9\x27\x61\xec\xde\x5e\x4b\xdd\xa7\xf5\x32\x41\x6f\x27\xc0\x8d\x35\x94\x1b\x1e\x8e\x5b\x6b\xe8\xc6\x1a\xfa\xed\x4b\x06\x1a\xa4\x81\x06\x49\xa4\x65\x1a\x49\x90\xf7\x65\xfb\x98\xb4\xb7\xae\xd2\xfb\xb2\x5e\x87\xc1\xab\xaa\xfb\x7a\x96\x26\x62\x5c\xdd\x9e\x47\x88\x3b\x58\x8f\x21\x73\xa2\xdc\xb7\x9f\xc1\xd2\x2d\xf7\x7c\x12\x77\x90\x07\x1b\xf3\xad\x6d\x75\x3f\xbf\xc7\xa8\xc1\x1d\xe3\x7e\xac\x95\x55\xfa\x76\xc7\x20\xc4\x60\xc9\x78\xce\x63\x06\x6c\xf3\x2d\x61\xda\xcf\xfb\xb3\x0a\x2e\xaa\x92\x78\xcc\x7c\x34\x76\x88\x1d\x98\x3b\x9d\xfc\x78\x8a\x26\x74\x60\x3d\xb6\x3a\xe0\xd1\x27\xfa\x70\x02\x48\xc2\x36\xf3\xd1\xc5\x4f\x98\xc0\x92\xad\x41\x7b\x74\x19\x3d\xe0\xd6\x52\xfc\x93\x31\x03\x09\x13\x7c\x4b\x08\xc7\xd2\x98\x81\x7c\x76\x9b\xc7\x80\x3f\xae\xf0\xc6\x07\x64\x63\xde\x3d\xba\x91\x9e\xc3\xe7\x58\xb9\x1f\xed\x1a\x58\xdf\x97\x8c\xf6\x0d\xdb\xc7\xc9\x37\x1b\x73\xec\xd1\xd9\xf3\x60\xc3\x64\x63\x20\x1f\x57\x7d\x63\x06\x52\xf7\xd5\xa3\x19\x6f\x7c\x40\xea\xbe\x7a\x54\x5c\xc2\x04\x5a\x36\x46\xe8\x11\xd3\x43\x98\xc0\x92\xf1\x1d\x3a\x85\xa4\x80\x4f\x02\x2e\xf3\xd1\x9d\x0f\x13\x7c\x4b\x68\xf0\xd3\x58\x80\x7c\xca\xef\x60\x88\x1e\xcd\xf8\x87\x68\x98\xdc\x99\x8b\x8f\x27\xe4\x47\x65\xd6\x69\xf5\xe8\x00\x7a\x54\x66\x31\x51\x8f\x37\x51\x0f\x2b\x7c\x7a\xed\xf4\x9c\xf6\x0b\x6e\xff\x84\x20\x2c\x1f\x97\x6e\x81\xff\x09\x5d\x7e\x3e\x1a\x2c\x82\xfc\x53\xa7\xd5\x23\xb4\x00\xc6\xf8\x96\x10\x84\xa5\xc0\xff\x7c\xb8\x8a\xca\xfd\xf0\x5d\xc7\x8d\xe5\x3c\x77\xc7\xcd\x6b\xa7\xe7\xf1\x5d\xd6\x46\x81\xff\x29\xf0\x3f\x75\x64\x3d\x9e\x86\x9f\xd7\x36\x63\x3c\x3d\xde\xb1\x3e\xaf\xdf\xcb\x8e\xfb\x78\x1a\x7e\x54\x5d\x58\xc3\xf2\xd1\x88\x81\x45\x7e\xc9\x78\x57\x75\x36\x18\x20\xc5\x67\x19\x0c\x90\xef\xe6\xf7\x72\x0c\x7a\xb5\x58\x5e\xf5\x79\xe7\xb2\xd0\x60\x80\x7c\x9b\x7d\xc5\x8e\xfb\xea\x03\x7a\x77\xc7\xa3\x94\x75\x65\x7e\x1b\x3b\xa9\x34\xf3\x29\xcd\x7c\x92\x74\x31\xa5\x99\x4f\x69\xe6\x53\xef\x96\x80\xfe\x7c\x89\x6d\x49\x3d\x59\xaf\x27\xd5\x17\x8b\x25\x09\xcc\xcc\x57\x87\xcf\x0b\xc8\x26\x0f\xb6\xcd\x57\xe7\x0e\x20\xfe\x96\x07\x73\xf0\xf5\x54\x2a\x7a\x3f\xf5\x51\xbd\xea\xf8\x1b\xbe\xcb\x02\xfb\xaa\xe3\xaf\xeb\x34\x14\xff\xf9\x6a\x93\xbf\x90\xb8\x25\x49\x17\xf3\x55\x9f\xdf\xf4\x39\xe6\xdb\xab\x3e\xbf\x78\x7c\x52\xe7\xd3\xab\x97\x1f\xba\xf9\x25\xa3\xcd\x65\x1d\x24\x01\x49\x41\x54\xaf\xfa\xfc\xaa\xcf\xf0\x82\xa5\x88\xfe\x7c\xc1\x11\xe4\xe1\x18\xe9\xf1\x79\xf1\xf8\xa4\xde\x27\xd1\xfb\x09\x7a\x3f\x9a\x5d\xa5\xad\xfd\x72\x3b\x9a\x3a\xa4\x5e\x55\xf7\x5d\xeb\xe7\xcf\x4f\x2f\xcb\x7c\xbe\x4b\x31\x7f\x6e\xfa\xd7\x43\xe2\xbb\x96\xc5\x9f\x47\xfe\xf5\xde\xfe\x5d\xdb\xfd\xcf\x21\xff\x7a\x6c\x84\x3a\xfe\xe7\x8f\x17\x67\x9f\x90\xc5\x87\x8b\xd7\xe7\x26\x0f\xda\x3e\x1a\xf3\x42\x94\x7d\x82\xb2\x0f\xb8\x12\xf3\xf3\x1a\x1f\xf6\xf8\x68\xf4\xee\xe7\x8a\x09\xc6\x3e\x1a\xa7\x0c\x19\xe0\xf3\xdb\x73\x89\x58\x6b\x3f\x7d\x8c\xdf\x3a\xf3\x05\x9c\x88\xf9\xa9\x4a\x1f\x4c\x25\xae\x64\xdf\xe1\xcf\x77\x47\x80\x3d\xe4\x73\x77\x07\x4b\x9f\x30\x90\xa4\x50\xfa\x94\xfd\x3d\x45\x89\x09\x82\x4f\x41\xf0\xa9\xcb\xed\x53\x91\x3e\x37\x7c\x5d\x6e\x9f\x4a\x03\xc6\xbd\x65\xdf\x8e\x7f\x6f\xee\x9f\xf7\xfb\x9f\xeb\xa6\x1e\x39\xf1\xf0\x29\x1e\x3e\x3b\x6b\xd5\xa7\x4e\x01\x8b\x5f\x32\x9a\xa5\x4e\x7d\xae\x9b\x7a\xdf\x3e\x5d\x22\x1f\xd6\x72\x0a\x40\x13\x0f\x9f\xf0\xc6\x2f\x19\xdd\x28\xc6\xf1\xc3\xfd\x91\xdd\x01\xd0\xfd\xf1\x71\x0d\x9a\xdd\xee\x3e\xfd\xbd\xd3\x77\x71\xbb\x88\x7d\xcf\x8f\x88\x90\xec\x8e\x81\x1b\x3e\xd8\xf7\x9f\x9e\x7d\xde\x96\x7e\x2e\x9b\x3a\xda\x84\xb9\xa7\xbc\xf2\xd9\x1d\x18\x37\xf2\xcf\x8d\x5c\x07\xda\xa7\x63\xf1\x73\xd9\xd4\x81\xf6\x89\x57\xfc\xb8\x1a\x4d\x52\x1c\xa4\x30\xf7\x14\xe6\x9e\xc4\x8d\xa6\x30\xf7\x84\x4a\x7e\xc9\x68\x9e\x16\xef\xf7\x5a\x07\xdb\xce\xa7\x79\x0b\x6d\xfc\x92\x0d\x64\xb6\xef\xb5\x9b\x59\xbe\x3e\x4d\xd9\xcf\x65\x93\xb8\xd1\xfc\xbc\x1a\xfd\x5c\x36\xe1\x3b\x2b\x21\xed\xb5\x61\xb6\xe6\x58\xf3\xaf\xc0\xb2\xaf\xe2\x53\x96\x4b\x86\x83\xaf\x36\xd2\xc8\x25\x28\xb2\xda\x30\x03\x4a\xd2\xf7\x1c\x8d\x77\x31\x03\x4a\xd2\xf7\x24\x5b\x73\x6d\x04\x8e\xd4\xb6\xb4\x5f\x0b\xa2\x80\xb2\xff\xd5\xe6\xaa\x39\x94\x61\xc9\x96\x9c\xef\x39\x96\x55\x51\x1b\x70\xc5\xda\xd4\x7f\x1c\x6d\x25\xe7\x7b\x01\x58\x6f\x39\x0e\xde\xed\x7e\x06\x1c\x28\x09\x2d\x5a\xc9\x03\x5f\x9b\xab\x2b\x68\xb3\x92\xdf\xbd\x36\x57\x52\x90\x65\x25\x2a\xbd\x36\x57\x4d\x1c\x72\xb5\x85\xcf\x91\x08\x26\x41\x87\xd5\x96\x76\x01\xd7\x40\x49\x20\x67\x89\x36\x2f\x89\xdb\x13\x24\x58\x01\x29\xff\xab\xcd\xd5\x70\xac\x21\xaf\x6d\xda\xe6\x69\x9b\x93\xe7\x30\x4b\x6b\x3b\xad\x77\x0d\x6f\x6d\x97\x5d\x05\x32\x2a\x41\x82\xd5\x06\x32\xaa\xe0\x60\x6f\x39\x26\xbf\x77\xfb\xbd\xb7\xc3\x31\xf9\x8e\xdb\xef\x78\xac\xc3\xe1\x7d\x94\x71\x90\xca\x70\x28\x51\xab\x12\x1d\x9e\x44\x5e\xd6\xf6\xfa\x7b\x4b\x93\x02\xec\x5f\x09\xfa\x2e\x41\xdf\x09\x65\x59\x09\xfa\xae\x46\xca\xa1\x04\x1c\x56\x0d\x4f\x41\x35\x5c\xc9\x09\x65\x59\x35\xb5\x4a\x70\x78\x02\x18\x2b\xc1\xe1\x25\xf7\x7a\xe2\x98\xab\x46\xce\x97\x6a\x4b\xe1\x82\x30\xdd\x6a\x78\x0a\x0a\xb6\xf5\x96\xb0\x98\x55\xc3\x93\x5c\x8d\xfb\x98\x24\x66\xb3\xda\xee\xab\xda\x91\xf8\xdb\x0a\x7e\xf5\x55\x0c\x65\xfc\x1e\xf1\x0f\x25\xa5\x7a\xe2\xd2\xad\x76\xf8\x7b\x6a\x10\xd8\xb0\x82\x23\x7d\x15\x36\x39\x78\x97\x8b\xf4\x6a\x83\x5e\x19\x1d\x91\x5f\x31\xec\x15\x06\xb7\x11\x8f\x5d\x2d\xec\x81\xa4\x29\xa9\x2c\xed\x64\x06\xb7\xb1\x44\x96\xd0\xf0\xc4\xdd\x56\x60\xc2\x57\xf1\x50\x05\x1d\x5a\x7e\x45\xfd\x1e\xa3\x25\x65\xb5\x5a\x91\x5c\x66\x55\x9b\x56\x31\x7d\x8e\xf1\x96\x14\xbd\x1a\xd1\x41\x99\x1b\x5f\x86\x2b\xac\x1a\x78\xa6\x24\xff\x43\x35\xac\xc8\x6a\x5a\x91\x84\x4e\x16\xf0\xef\xbf\x6a\x97\xcf\x31\x9d\xdb\xe5\x73\xea\x5e\x3a\xb8\xb7\xb2\xdb\x77\x77\x7e\x4f\x7d\x6c\x38\x88\x33\x1d\xb5\x47\x65\x71\x99\xcb\x83\x36\x3f\xd6\xe1\x32\x87\xbb\xad\x84\x60\x97\xac\xe7\x49\x56\xc8\x92\xf5\xbc\x9a\x07\x1b\xc2\x1f\xab\xbd\x7e\xdb\xe7\x73\x0e\xc7\x67\x5f\xad\xd5\xae\x3b\x9d\x45\x65\x57\xfb\x6c\x32\x5d\x2a\x11\x7a\xed\xdb\xbe\x16\x7a\x5a\x02\xf2\x7a\x15\xcf\x7f\xfd\xaf\xe3\x58\xfb\x6f\x89\xbf\x2e\xf1\xd7\x89\x9f\xae\x76\x5c\xbd\x25\xfe\x3a\x73\x1d\xcd\x6b\xdf\xfd\xb5\xb5\xd4\x25\x57\x77\xb5\x63\x2d\x96\x90\xec\xc4\x25\x57\xc2\xaf\x0b\xf8\xb5\x86\x52\xc1\x9c\xbe\x8a\xc7\xc7\x94\xa1\x8c\x3b\x00\xd3\x4c\xa6\xf7\xde\xad\xb5\xfb\xf9\x73\x20\xf3\xdd\x6e\xd7\x31\xdc\xd0\xa9\xaf\x82\x6a\xc9\x0d\x50\xbb\x1a\xba\xbb\xc7\xe3\x6a\xab\x3d\x7c\xce\x43\x7d\xb5\x7f\x03\xed\x6b\xe7\x6c\x54\x60\xb9\x5b\x12\x55\x59\x7b\xd8\x04\xf7\x7d\x3c\x71\xb5\xab\xd4\xbb\xfb\x3e\xb0\xb5\x12\xb0\x5d\x02\xb6\xb3\xd6\x39\xa3\xf6\xb2\x09\xda\x92\x78\xec\x4a\x74\x76\xed\x6a\x3a\xd1\x97\x25\x12\xbb\xf6\xe9\xef\xb1\x26\xec\xc4\x31\xd4\xee\xd9\xa8\x3a\xcf\xb1\xc7\xd7\xee\x1e\x4f\xf4\x65\xed\xae\x9e\xbb\xab\x67\x0d\xda\x7c\xd9\xbd\x9e\xc2\x0b\xad\xd9\x6f\xdf\xf5\x1c\x04\xc1\x5a\x09\xb1\xae\xfd\xfe\xbd\x4b\xbd\xb7\xdf\xb1\x2c\x4c\x43\x89\x6a\x7f\xec\x96\xc7\x6e\x61\x13\xd8\x01\x73\x14\x00\xea\x25\xe3\x73\x5f\xbb\xca\xa3\x4c\xb1\x4e\xec\x9f\xd5\x7e\x56\x9b\x34\x45\x6d\x15\x61\x9d\xa0\xea\x6a\xff\x7c\xd7\x95\xb7\x50\x26\xf9\xd5\x0b\x04\xf5\x92\x2d\x8d\x90\x4b\xbd\x8e\xe6\xef\xd5\x44\xd6\x95\x8d\xd5\xe4\x23\x11\x95\x22\x26\x44\xcd\x1d\x19\xab\xe7\xe1\xe9\xa6\x58\x4f\x0e\xa2\xcc\xea\xf0\x74\x03\xf8\xae\x80\x42\xaf\x82\xa6\x00\xb4\x2b\xf8\xd2\x57\xb1\x2b\xe3\x39\xf7\xe4\xc3\x15\x15\xa0\x5d\x1d\xdd\x26\xab\xb0\xd0\xb5\xd5\x01\xf8\xae\x0e\x4f\x37\x38\xf6\xea\x50\x61\x8f\x41\x2f\xb3\x24\x1c\x61\xb5\x6b\xfb\x35\x7e\xa9\x60\x50\x5f\x05\x2d\xc6\x87\x57\xb0\xa5\xaf\xc2\x16\x33\x13\x0f\x1c\x4a\x75\x68\x4b\xe2\xaf\xab\x83\xc8\xe4\x3a\x74\x32\x11\x5b\x59\x87\x2b\xaa\x18\xe9\x04\x7a\x57\x62\xa4\xeb\x20\x32\x20\xf1\xe1\xd5\xe1\xce\x2d\x46\x3a\x89\xc1\x2c\xc9\xd5\x4b\x8c\x74\x92\xb8\xa0\xc4\x3e\xd7\x71\xda\xbe\xa0\x57\xc0\x3e\xd7\x71\xda\x7b\x2c\x28\xc7\xe5\x73\x6b\x61\x1d\x70\x37\xd5\x71\xd9\xe4\xcb\xc7\x94\xa9\xa2\x87\xf6\x25\xae\xbe\x82\x7c\x7d\x15\x76\x9e\x7a\x71\xdb\x53\xb7\x9d\x5c\x34\xd9\x85\x17\x2a\xf6\x25\xa3\x93\xd5\xdb\x43\xef\x11\xd0\xbb\x3a\x34\x04\x84\x3e\x27\xe4\x6f\x75\xc0\x56\x51\x72\xb0\x27\x79\x0b\x4a\x0e\xf6\x02\x01\xdd\x0a\xd7\x61\x09\x7d\xae\x83\xab\xb7\x22\xdc\xb2\x8e\xcf\xf6\xad\x95\x77\x00\xa7\xa9\xe3\x53\x07\xb8\x6e\xa8\xed\x27\xf3\x73\x51\xef\x22\x02\xb3\x80\x46\xaf\x62\x2a\x5b\xd5\x76\xd5\xbb\x37\xab\x60\xef\x01\x1a\xbd\x8a\x4b\x59\x22\xe3\xf7\x00\x45\xb7\x02\x79\x57\xdd\xf5\x18\x5a\x76\x19\x9e\xaa\xab\xde\x7d\xf7\x55\xcc\xc1\xae\x11\xd1\x31\x43\x8b\x44\xa0\x05\x82\x7a\x15\x1d\x19\xfa\xd8\x01\xf2\x15\x78\xea\x25\xe3\x5d\xcd\x55\xc1\xd5\x45\xa0\x66\x81\xaa\xfe\xab\xce\x34\x28\x90\x77\xd5\x35\x4d\x3b\x81\x68\x85\x47\xb2\xba\x53\x43\xf6\xf6\x22\x50\xb3\x3a\x48\x8f\xea\x5c\xc6\x15\x41\x99\xd5\x87\xed\x0b\x9f\x4b\xda\x12\xfe\x5e\xf8\x7b\xc9\xef\xb9\xe0\x4a\xb7\x5e\x04\x5b\x56\xd7\x8c\x10\x02\x5d\xf8\x0b\xab\x3b\x11\xfa\x9a\x08\x03\x9f\x50\x75\x75\xbe\x63\xad\x16\xc9\x3a\xab\x73\xce\xaa\xce\x1a\x5c\x20\xe5\x4a\x56\xf6\x12\x29\x5d\x50\xbf\x15\x14\xed\x7f\x05\x39\xfb\x92\xd1\x14\xd7\xe5\xce\x39\xab\x9a\xa3\x0b\x59\x45\x81\x84\x6e\x45\xbc\x64\x75\xd7\x6a\x08\xdb\x97\x8c\x77\x55\xfa\xce\xba\x5c\x1c\xb0\xab\xbb\x2e\xc3\xe2\xbe\x64\xbc\x7b\xdb\xcd\xa0\x35\x8a\xcc\x9c\xd5\x1f\x47\x1c\xeb\xb7\xf0\x17\x56\x7f\xfc\x5c\x7c\x51\xd5\x1c\x36\xad\x8d\xfe\xfa\xbd\xcc\x71\xa1\xd2\x25\x8f\x7b\x41\xd0\x56\xfd\xf3\xb9\x4f\x59\xac\xf5\x46\x58\x74\x09\x81\x2e\x27\xef\xd0\x84\x85\x7e\xbd\x15\xd8\xb5\x1a\x1a\x0d\xa3\xd9\x7f\x4c\xb6\xe1\x2a\x3c\x58\x85\x0b\xdf\x60\x0d\xee\x87\x0b\xc4\xf4\x92\xad\x49\x34\xd4\xdc\xc1\x5d\x40\x41\xbc\x56\x60\xa4\x57\x71\x2a\xa3\x2d\xe0\x91\x6a\x70\x17\x5c\x00\xda\x6a\xa8\x7e\xd0\xb4\xb7\x65\xba\xfc\x7b\x9b\x1f\x2e\xdc\x43\x8d\xdd\x59\xa4\xe1\x6d\x5f\x05\xcd\xda\xd9\xe6\x07\xd7\xc7\x35\x38\x4c\x15\x61\x97\x35\x08\x9f\xaf\x31\x7c\x8e\x89\x27\x7d\x7b\x89\xa4\x5e\xb6\xcf\x92\x85\xdd\x81\x87\xa1\x9c\x8d\xc3\x03\x16\xe0\xe9\x56\xb8\x0e\x6b\x84\xcd\x4f\xdf\x65\xe6\x0d\xcd\x8b\x91\x7e\x26\xb3\x6c\x68\x33\x8f\xb4\x5e\x66\xd9\x48\xeb\x05\x55\x51\xb8\x0e\x4b\xfa\xf6\x12\x35\x5d\xb8\x09\x6b\x68\x34\x8f\xe9\x73\x2c\xd3\x43\x75\x1f\xd3\xee\xe5\x10\x27\xcd\x7b\x49\xf3\x5e\x80\xe0\x6a\x9c\x0e\xff\xe9\xbb\x0e\xbf\x46\xf3\x38\x6d\x0b\x6b\xb2\xd4\xef\x25\xf5\x7b\xed\xac\xc9\xe0\xaa\xff\x4a\x9a\xf7\xc2\x9d\x58\x43\x75\x1f\xaa\x36\x9c\x6e\x05\xe7\xfb\x2a\xe8\x17\x5c\x87\x05\xae\x7a\x15\xbb\x32\x9e\xc3\x87\x50\x83\xf5\xbc\x0e\xa6\xde\x78\xec\x3f\x0e\x76\x05\x08\xae\x86\xeb\xf9\x60\x3d\x2f\x52\x0a\xd4\x70\x3d\x17\x5e\x5d\x07\x26\xdb\xf8\x54\xb1\xcf\xe7\x1c\x37\xed\x10\xa1\xd4\x85\xeb\xb0\xc2\x29\x10\x9b\xef\xb2\x62\x86\x8b\x77\xe0\x43\x28\x5c\x87\x15\x9a\xd7\xe1\xb4\x20\xfe\xb2\xc2\x05\x3d\xb8\x0e\xab\x83\x71\x0b\xae\xc3\x2a\x9c\x16\xc7\x18\xc8\x2e\x65\x8f\xb2\x42\xc6\xf8\x42\xf7\xde\x0a\x77\x62\x85\xbe\x86\xc0\x88\x29\xe2\x2f\x2b\x70\xab\x95\xdc\xef\x75\x04\xed\x73\xaa\x08\xc3\x2e\xe2\x2f\x2b\x34\x6c\xe2\xf0\xdb\x38\x8b\x85\xce\x86\xe8\xbe\xcb\x54\x8e\x61\x9b\x87\xdf\x8b\xd5\x1d\xb8\x68\x4b\x4e\xf7\x22\x55\x40\x89\xaf\x2e\xf1\xd5\x45\xea\xce\x82\xcc\x7d\x15\xa1\x8c\x77\xc3\xbe\xc2\xac\x2e\xdc\x64\x15\xe1\xb7\x71\xe5\x50\x80\xd4\x2a\x3c\x3f\x42\xed\xbe\x64\xbc\xeb\x8a\x0e\xce\xba\x15\x54\x6a\x15\xe5\xb7\xb9\x7c\x03\x3e\xab\x98\xb6\xcf\xa5\xba\x3b\x46\x1e\x0c\xe3\xf4\x39\x8e\xcb\x02\xa7\x4b\x0e\xf6\xb5\x19\x21\xb3\x5f\x5c\xbe\xa1\x4d\xab\xb8\x6c\x0b\x37\xc3\xd5\x1d\xa3\xcb\x71\xbb\x6c\x0b\x0e\x12\xc1\xd4\x05\xc5\x7a\x5b\x9b\xd6\x92\xc1\x2b\x54\xf2\xad\x17\x81\x95\x05\x62\x7a\x15\x8c\x2f\x3e\xb1\x8a\xc7\x3a\x1e\x9f\x73\x8c\x1e\xdb\xc7\x01\xb2\xf0\x93\x95\x60\xea\x12\x4c\x5d\x04\x5b\x56\xbc\xf6\xbd\x7a\x0f\xbf\x5a\xc1\xbe\xbe\x0a\xfb\xcf\xf1\x7d\xd5\x0d\x70\x13\x6b\x13\x5c\x32\x97\xf9\x58\xa6\xb9\x37\x3b\x25\x0e\xbb\xc4\x61\x17\x19\x43\x0b\x00\xf6\x2a\xac\x96\x95\x5a\x6e\xf5\x02\x7a\xdd\x0a\x3c\x5a\xa5\x4e\x8e\xc4\xc9\x51\x83\x95\x5a\xd0\x75\x41\xb1\xbe\x64\xab\x29\xa9\x3a\x43\xa7\xde\x4a\xd7\x59\x12\x10\x53\x49\xe4\x62\x11\x94\x59\x82\xae\x2b\x41\x06\xad\xcd\x03\x99\xef\x6a\xb4\x80\x5b\x2b\x39\xd8\x4b\x0e\xf6\xd2\x77\x96\xe0\xe5\x2a\xdd\x21\x06\xb6\x52\x92\xc1\xab\x12\x1f\x5b\xe9\x4f\x4b\x0f\xa5\xe0\xb6\x5b\x0d\x2c\xeb\x74\x2a\x88\xc8\x2e\xc0\x6c\x25\x07\x7b\xc9\xc1\x5e\x83\x25\x3b\xdd\x16\x40\x61\x2f\x19\xcf\xb9\x2d\x80\xb8\x6e\x45\x04\x66\x25\xb7\xca\x05\xd7\xfa\x92\xd1\x16\x0d\x19\x10\xd7\x4b\x46\x5b\xd2\xe7\xd2\xef\xe0\x28\x95\x5a\xf9\xa0\xb0\x5b\x91\x26\xb4\x12\x2c\x6a\xe5\x32\xf6\x93\xfc\xd0\x95\xee\x00\xa9\x0d\x34\xd0\x16\x11\xd9\x95\x1c\x30\x0b\x62\xb4\xca\xf2\xe7\xea\xf7\x73\x54\xeb\x2c\x4a\x67\x91\xae\xb8\xd4\xf0\x4f\x8d\xa0\x81\x4d\x95\xd3\xee\x9b\x36\x99\x55\x3c\xdd\x15\xe4\x67\xaf\xc1\x2a\x2e\x4c\xbb\xf2\xb4\x5e\xac\xe8\x3c\xad\x97\x4b\xba\xb5\x80\x2e\x99\x86\x91\x30\xed\x0a\x56\x76\x61\xda\x95\xce\x2c\x80\x6e\x95\x9e\x10\xd2\x99\x15\x7e\xaf\x33\x2b\x9d\x59\xd1\xfe\x8d\xbf\xab\x74\xe2\xa5\x13\x4f\xb7\x5c\xea\x35\x4c\xee\xf5\x4a\xb7\x5c\x6a\x4b\xe5\x63\x53\xd5\x1c\x27\x5e\x3e\x36\x41\x8d\xd0\x96\x4a\x6d\x29\xb0\x71\x25\x6d\x7c\xe5\x6b\xf3\xd5\x92\xcf\xcf\x04\xd1\x5a\xe0\xe0\x2a\x3d\x40\x88\x00\xaf\xc0\xc3\x93\x6e\x42\xe9\x26\xa4\xaf\x2e\xdd\x84\xd2\x99\x17\x2c\x3e\xe5\x26\x54\x9b\xf5\xb2\x41\x94\x2e\xc7\xf2\x04\x01\x49\x5a\x95\xb3\xb1\x36\xdb\xcc\xe2\x23\x2a\xbc\xaa\xf9\x6d\x68\x93\xb0\xf0\x82\x65\x7e\xc9\xd6\x30\x94\x76\x58\x39\xcb\x82\x45\xa5\xf4\xe8\x00\xf1\x6e\x45\x6c\x67\xd5\xe1\xef\x1d\xb6\x99\xe1\x2f\x37\x97\x3a\xac\x97\x4d\x43\xc0\x77\x15\x6e\x9e\x82\xd4\xac\xca\xa3\x41\xe1\xb5\x2e\x30\x74\x55\x7a\xad\xcb\x19\x05\x86\xae\xca\x53\x73\x79\x34\x20\x4d\x67\x89\xee\xae\xf2\x68\x90\xac\x0c\x05\x31\x70\x89\xee\xae\xc4\x70\x83\x95\x7e\x15\xbe\x8b\xb7\xae\xf4\x64\x17\xfe\x99\x02\x1c\x57\xe5\x54\x29\xa7\x0a\x64\x65\x55\x4e\x95\x72\xaa\x64\xa7\x0f\x9c\x2a\xc5\x19\xb9\xf4\xe0\x95\x3e\x9b\xe2\x8c\x5c\x7a\xf0\x6a\xfa\x6d\x6e\x42\xc9\xe6\x22\xe2\xbb\x24\xac\xaf\x74\x2c\xdd\x84\xca\x69\x41\x9a\xce\x12\xf1\x5d\x75\xf9\x6d\x1c\x85\xca\x4d\xa8\x34\xaa\x88\x86\xa8\xd2\x33\x5e\x97\x75\x38\x6e\x97\x75\x68\x68\xe9\x89\x93\xc4\xbe\x44\x81\x57\xb2\x19\x94\x1e\x4b\x51\xe0\x45\x34\x68\x95\xfe\x9e\x72\x7e\xe8\x9e\x2b\x0f\xd3\x92\xdd\x17\x80\xb9\x12\x05\x5e\xe5\xc6\x04\x60\xae\xea\xb1\x4f\x35\xc8\x52\x3d\x70\x63\x82\xf3\x7e\xc9\x18\x23\xe7\x47\x11\x7a\x5f\x44\x97\x96\xc8\xf0\x2a\x62\xe0\x8a\x7c\x04\x25\xe2\xbb\xca\x5d\x08\x46\xb4\x2a\x4f\xd3\xe5\x99\x84\x7c\x04\x35\x9d\x0b\x13\x97\x7c\xc1\x88\x56\x53\x97\x3c\x80\xee\x25\x9b\xc8\x4a\x19\xba\x46\x8a\xcf\x9a\xce\x8f\xe9\xfc\x20\x71\x41\x89\xee\x2e\xd1\xdd\x45\x3a\xcf\x9a\xce\x8f\xe9\x6e\x45\x18\x6a\x4d\xf8\x5a\x6a\x72\xd1\xb3\xb4\x1b\x59\x28\xb3\x0e\x76\x03\xe8\xf0\x57\x61\x1d\x18\xf0\xd3\xa3\xf3\x74\x17\x82\xfd\xac\xa6\xbb\xd0\xf4\xec\x02\xda\xae\x44\x77\xd7\x74\xce\x90\xe2\xb3\xa6\xae\xd1\xe9\xce\x04\xda\xae\x66\xf7\xdb\x40\x77\x17\x8c\x68\x35\xf5\xe7\xcb\x62\x5f\x3a\xd1\x64\xb1\x2f\x10\xdd\x4b\xc6\x73\xee\x42\x20\xba\x5b\x81\x98\xab\xa9\xfb\x69\x72\xfb\x53\x7a\xc7\x84\x77\xd7\xf4\x70\x02\x3c\xae\xa6\x73\x6b\xba\x33\x01\x8f\xab\xe9\xe1\x64\x02\x6e\x5d\x43\xb0\x64\x65\x9f\x82\x0b\x29\xbd\x68\xb2\xd8\xd7\x74\x6e\x01\x8f\x2b\xb0\xde\xab\xf0\x5d\xc7\x72\x5a\xaf\x5b\x13\xe1\xaa\x35\xdd\x9a\xa6\xf3\x6d\x3a\x96\xfa\xa4\xa6\x67\x71\x92\x1e\xd4\xf4\x2c\x2e\x34\xbc\x26\x6b\xf6\x3c\xad\x17\x30\x54\x81\x71\xab\xa9\xd1\x37\x35\xfa\x08\x57\xad\xe9\xd6\x34\x3d\xb3\x4f\xc7\x52\xdf\x95\xd4\xf6\x05\x6f\x59\x49\x6d\x5f\xd3\xed\x4a\x3f\xda\xd4\x10\x84\xe1\x7e\xc9\xf8\x3d\x0f\x36\x93\xdb\xfa\xce\x66\x2f\x82\xbc\x20\xb8\x8f\xee\xe8\x3e\xd6\xe0\x29\x7e\xaa\x05\x9e\xe2\x01\x85\xb7\x82\xf1\xac\xa6\xf7\x5a\xa2\xc1\x0b\x76\xb3\x9a\x9e\xe2\xe7\x6b\x8f\x62\x56\x4e\xdd\xb0\x53\xd7\x95\xae\xb5\xe9\x6e\x34\x3f\xdf\xc5\x28\x10\x35\x5e\x22\xc4\x8b\x08\xd6\x12\x21\x5e\xa7\xb3\x88\x08\xd6\x3a\xb9\xdb\x2f\x89\xed\x8b\x68\xd5\x3a\xf5\x49\x41\x5c\xdf\x26\xd1\xaa\x75\x82\x28\x29\x51\xde\x93\xb4\x9e\x75\x3a\x3b\x4e\x66\xc7\x24\x32\xb5\x64\xb1\xaf\x93\xe3\xca\xdc\x1a\xf5\x7a\x5c\x11\xf9\x3d\xc9\x83\x50\x52\xd7\xd7\x89\x7d\x37\xb7\xff\xc9\x66\x7f\xba\x31\x9d\x87\xd5\xa1\x38\x32\xdb\xd7\x89\xa9\x37\x09\x66\x2d\x99\xed\xeb\xec\x56\x87\xe2\x9c\x4e\x3c\x41\xe5\x93\x00\xd7\x92\xd9\xbe\xce\xee\xbb\x6c\x1a\xa7\x27\x21\x59\xec\x27\x11\xa9\x75\x7a\x69\x76\x0e\xbb\xa3\xfb\xdc\xad\xcc\x77\x39\x7d\x9c\x7a\x0a\x04\x9a\x4f\xf2\x29\x14\x34\xf7\xab\xb0\x5e\x8c\x82\xd3\x09\x2a\xf8\x7c\xea\x53\x3b\xd3\x7a\xf3\x27\xa3\xcd\x6e\x6a\xb2\xdd\x4f\xfd\x6c\xb2\xdd\x97\x48\xf3\xa9\x9f\xed\xf4\x22\x42\xb6\xfb\xb9\xe1\xc1\x3f\x75\x06\x8b\x3e\x9f\xfa\xde\x44\x9f\x97\xe8\xf3\xb9\xa1\x4e\xe7\x74\xf8\xd7\x64\x2c\xfd\xc3\xa7\x87\xad\x73\xda\x05\x68\x18\x48\xf4\x55\xf8\xb9\x68\xd8\xa9\xf9\x77\x9e\x36\x0f\xa7\x80\xc4\xf6\xff\x37\x63\xe7\x92\xeb\x3f\x6e\x44\xe7\x79\xaf\xa2\x77\x10\x89\x7a\x90\x07\xf8\x23\x93\x8c\x93\x3d\x48\x14\x09\x78\x60\xbb\xd1\xb1\xf7\x1f\xf0\xfb\xee\x24\x9e\xb4\x07\x17\xc2\x2d\x88\x3f\x3e\x54\x2c\x56\x15\x0f\x0f\x1b\xb8\xf4\x25\xa3\x1b\xce\x31\x01\xe9\xd9\xb0\x47\x02\xd2\xdb\xf3\xda\x5d\xfc\x0e\x18\xed\xd7\xc3\xdf\x23\x22\x79\x5c\xfb\x04\xa9\x07\xde\xb4\x26\x48\xbd\x3d\x9c\x66\x0d\x17\x90\xb6\xc7\x9c\xda\xc3\x5e\x47\x80\x08\xb6\xc7\x99\x27\x70\x3d\xe6\xf2\x40\xac\xaf\x07\x9f\x72\x57\x3b\x9d\x79\x60\xd5\x97\x8c\x36\xbb\x01\xf2\x0c\xdf\x23\xc9\xf0\x0c\xdf\x03\x5f\x1b\x30\x82\x4d\x52\xfc\x26\x48\x3d\xc0\x6c\xda\xeb\xba\x24\xb1\x7d\xcc\xef\x49\x6c\xdf\x5e\x4e\x22\x05\x3c\x60\x7b\x9d\x79\x22\xcd\xb3\x63\xa3\x5e\x33\xbf\x6f\xb1\x0e\xd6\x96\xd7\x75\x09\x2e\xfb\x3d\x1c\x71\x6d\xaf\xa9\xdf\xb7\xd8\x3e\xd4\xe5\x75\x96\xbd\x9c\xd7\x0e\x5c\x6a\x4d\xa4\x79\x7b\xf1\xe5\xb2\xa3\x1a\xaf\xfb\xc7\xaf\x53\x86\x4b\x19\x9a\xe8\xf3\xf6\x9e\xbe\x87\x0f\x29\x89\x7d\x7b\x9d\x1e\x46\x92\xaf\xdb\x73\xef\x65\x5b\xf8\xbe\xaf\x29\xdd\x57\x15\xe7\x02\x86\xf6\xaa\xe2\x2f\x49\x81\xc0\x91\xd6\xde\xfb\xe7\xbd\xa1\x6c\x7d\xcb\xd7\xe8\x08\x10\xfa\x92\x05\xd9\xa5\x8c\x6f\xc9\x81\xd5\xf6\x56\xc7\x14\xff\x2e\x5c\x22\xda\x5e\xf7\x45\x5e\x8e\x22\xc5\x44\x9f\x28\xf5\xf6\x92\x50\x08\x97\x2d\xb4\xd7\xa9\xf0\xb2\x2f\x12\x93\x7a\xaf\x39\x62\xd9\xee\x03\x1e\xb0\xbd\xfa\x77\x22\xd2\x53\xd8\x69\x12\x69\xde\x40\x9a\x9f\xdc\x15\xd4\x5e\x37\x90\x01\x92\x9f\x90\x41\x34\xc1\xe2\x0d\xb0\xf8\xe9\xe2\xfa\x1a\xfd\x03\x0f\x3f\x1b\x3a\xfa\xaa\x7b\xef\xb2\xfa\x67\x1c\x12\x55\x0f\x54\xf8\xe9\xca\xfa\xaa\x79\x30\xc9\x9f\xdc\x1c\xd4\xba\x8a\xd2\x97\x89\x3e\xa1\x72\x68\x5d\x9f\xa6\xef\x37\xa2\x1b\x11\xbf\xd5\xcb\xbe\x44\xf4\xa8\x1b\x6b\xf7\x65\x92\x4f\x17\xc6\xae\x92\xf4\xe5\xbc\xc8\xe7\xd9\xba\x96\xb8\x2f\x4b\x2c\x9d\x67\xeb\x06\xda\x50\xc4\x9f\xae\x94\xdd\x38\xbb\x6b\x54\x0b\x2b\x60\xd7\xa8\x4a\x03\x1f\xd3\x91\x5d\xad\x11\xa9\x1d\x50\x8b\xad\x73\x8e\xa1\x49\x0d\x1f\xae\x98\x68\x52\xc3\xb7\xce\x31\xd0\x70\x1e\xa3\x75\x8d\x6f\xbf\xfc\x7a\x58\x9e\xee\x5e\x5a\xd7\xa8\x16\xd2\x23\xdd\x34\x14\x34\xf0\x7b\x0a\xde\x6f\x77\x27\xb7\x83\x0a\x4c\xe1\xbb\xf4\xea\x28\x01\x4f\x48\xc1\x9b\xe9\x6e\x2c\x74\x82\xea\x1c\x58\x8a\x6e\x1a\xaa\xb3\xc3\x16\x53\x8f\xdd\xe8\x41\x18\x77\x60\x90\x6b\xf2\xc0\x37\x90\xdb\x4b\x46\xdf\x4c\xb5\x76\xad\xe5\x41\x84\x22\x8c\xbb\x41\xfd\xbe\x64\xbc\x67\x00\x0d\x72\x7b\x0f\xa7\x6d\x5b\xd7\x5a\x76\xbc\x94\x98\xa2\xec\x7a\xec\x9d\xe8\x35\x87\x9f\x43\xef\xbc\xe3\x2f\x84\x6b\x22\x5a\x57\x4f\xc0\x46\xef\xe1\x2c\x6c\xeb\xe2\x09\xfa\xb4\x7d\x2c\x18\x5d\xaf\xbb\x4f\xdf\xe3\x7b\x7c\x7a\xd8\xb2\xb0\xe7\x20\xf2\x80\x7e\x7d\x3d\xec\x07\x90\x0f\x91\xd2\xed\x23\xbd\x99\x03\x8f\xf3\x33\xda\xfc\xf4\x0d\x0e\xb6\xe2\x3e\x35\xe8\x03\xe6\xc7\x31\xd0\xf6\xe9\xd4\x7e\xcb\xa9\xbd\xcf\xeb\xaf\xf1\xf5\xed\xd3\xe5\xfd\xb8\x62\x1d\x98\x5a\x13\x09\xdd\x3e\x22\xc7\x1c\xac\x1c\x9f\xe9\xc6\x4f\xcb\x72\xb0\x4a\x7c\xa6\xd9\x01\x3a\x2f\xd9\xea\xf7\xa7\x65\xf9\xd4\x07\x53\x9a\x9f\x56\x44\x84\x73\xb8\x45\xa2\x7d\xcd\xb6\xbb\x78\x42\x29\xd7\x3e\xbf\xfd\xa7\x15\xe1\x76\x88\xf6\xe9\xc9\xca\x76\x9e\x93\xfd\xbc\xcf\xd4\xfb\xa7\x3e\x70\xc6\xb6\x49\x77\xde\x3e\x38\x1e\x02\xcd\x5c\xfb\xdc\x69\xfa\x48\xbd\x87\x5b\x52\xdb\x67\x92\xe5\x7b\x6c\x1f\xf3\x55\x24\x74\x03\xfc\xbc\x64\x37\x32\x74\x09\x76\xf4\x3d\xdc\xd1\xd8\xa4\x40\x6f\x22\xa1\x73\xb2\x4a\x88\x84\x6e\x5f\xf7\xf7\x58\xc9\x3f\x23\x42\xe9\xce\x63\x4a\xf3\xd3\x45\xfd\xfa\xfc\x9f\xbf\x8b\xf2\x6b\xb2\x9d\x37\xd9\xce\x03\x7d\x5c\xfb\x54\xb9\x6f\x79\xaa\xf5\xa7\xa4\xf6\xeb\x53\x0b\x4f\x66\xf1\x67\x3c\x08\x0f\xfa\x1e\x13\x9f\x9f\x89\x4a\x78\xd0\x97\x8c\x9f\x03\x07\xdd\xc4\x41\xe7\xc4\x7f\xf8\xf4\x5a\xbf\xf9\x53\x96\xaf\x66\xbe\x04\x6c\x74\x3d\x09\x7b\x3e\x37\x57\x85\x46\x07\x7c\x60\x13\x1a\xdd\xe4\x49\x0f\xf8\xc0\x26\x4f\x7a\x1b\x9b\x03\x4f\x92\x73\xb8\x95\x35\x36\xab\xc5\xb9\x1d\x2a\xb5\xdc\xe9\xe1\x20\x6e\x1b\x6e\x6f\xc9\x93\x1e\x2e\x91\x68\x42\xa8\xdb\x20\x3f\x1f\x2e\x91\x68\x42\xa8\x9b\x3c\xe9\x11\x33\x38\x54\xfe\xa1\x23\x6b\x42\x73\xb8\xbb\x3a\x5c\x76\x05\x03\xca\x93\xde\xc6\x61\x1d\x98\xf1\xe1\xf6\x16\xe8\xea\x25\xa3\x7d\xa6\x55\x40\x57\x57\x53\xba\x52\xa7\xb7\x41\x84\x18\x73\x9c\x43\x9b\x3a\xd8\x70\x8d\x98\xc1\xe1\x7c\x81\x4e\xbd\x9e\x4c\x17\xd9\xd4\xdb\xd0\xcc\x5e\x07\xa3\xa7\x99\x1d\x97\xad\x63\xa1\x1b\xa6\x38\x07\xe9\xcc\x5c\xa8\xd9\xd0\x77\x1d\x2e\xec\x9c\xe1\x6d\xc3\x85\x5d\x40\x76\x4c\x85\xc2\xb7\xbe\x1e\xaf\xb2\xf5\xc1\x47\xf5\x3d\x6e\x70\x8d\xa9\xd0\xa1\xef\x3a\xf4\x5d\x85\x1b\x0e\xa7\xdf\xd0\xf4\x0a\x37\x1c\x9a\x54\xf0\xd6\x7b\x20\x9e\x6b\x83\x83\x03\x0d\x06\xf5\x3d\x90\xcc\xb5\x61\x30\x28\x75\x7a\xcc\x71\x0e\x83\x41\xa9\xd3\x73\xa9\x2d\x9a\x59\xa9\xd3\x23\x04\x71\x18\x0c\x8e\xd7\xaf\xeb\x58\xe9\xa8\x4a\xa7\x9e\x4b\x0d\x32\xf0\x1b\xaf\x5f\x08\xd3\x32\xcc\x53\x0e\x50\x0b\xe1\x30\x6f\x1b\x26\x1d\x07\x49\x95\x40\x46\xd7\x86\xd9\xfe\xa1\xb3\x29\xde\x70\x98\x74\x1c\xc0\xc5\x62\xc2\x52\x8c\x77\x1b\x64\xfb\x73\xab\x05\x4e\xa2\xa1\x03\x2a\x68\x70\x18\xfa\x49\xb1\x1e\x2e\x75\x68\xc3\xa4\xe3\x20\xa9\x92\x9b\xe5\x62\x3a\x3b\x26\xc9\xc4\x98\x88\x14\xd5\xdd\x40\x72\xef\x31\xe9\x28\x4d\x7a\x9b\x9a\x72\x0e\xe4\xb6\xa9\x03\x0a\x4d\x7a\x0e\x86\x7e\x3a\x11\x26\x79\x91\x88\x23\x9c\xee\xdf\xca\x9c\x9e\xfb\xe7\x3d\xab\x28\x76\x8d\x15\x64\x1e\x96\xd5\x27\xe5\xc2\x85\x26\xc3\x7a\x9b\x87\x4d\xe6\xb3\xc9\xb0\xde\xe6\x61\x53\xf0\x2b\xa7\xf9\x13\x59\xd7\x23\x6a\x70\x9a\xc5\x17\x3d\x9e\x9b\xcf\x36\xcd\x39\x4e\x7d\x57\x73\x98\x53\x2f\x64\xb2\xf1\x15\x2e\x66\x68\xd3\xcc\xbe\xf0\xf1\x70\xe6\xb7\xc9\xa1\xde\x84\x8f\x07\x7e\xba\x36\x5d\x39\x66\xe5\xd6\x23\x16\x47\xa1\xe0\x0d\x28\xb8\xdc\x11\x6d\x9a\xc3\x07\x10\x2e\x75\x44\x93\x18\xbd\x4d\x6f\x55\xb2\x5f\x7a\x0c\x40\xbf\xef\x03\x3b\x35\x35\xfc\x53\xc3\x2f\x00\x71\x6a\xf8\x61\x38\x5f\x32\x2a\xe0\x18\x41\x9b\x68\xf2\x6e\xcb\x54\x50\x59\xcc\xc3\xb1\xe0\x26\x8b\x79\x93\xc5\x3c\xb0\xdf\x35\xe1\xdd\x6d\x92\xad\x88\x38\xc5\x29\x6a\x6c\x92\x45\x4c\x65\xd2\x83\xeb\x5e\x0f\x46\xb8\x12\xec\x0a\xe5\x6e\x42\xb9\xc3\xb1\xe0\x36\x55\xd0\x69\x84\x54\x99\xf4\xd3\x6d\xa6\xa9\xf5\xae\xd7\x7f\x11\xbf\x4f\x5d\x91\x09\x32\x2c\xe2\x18\xa7\x09\xc0\x39\x6d\xea\xed\x4f\xab\x83\x5a\x7c\xc8\xf6\x22\xaa\x3b\x12\x95\xa7\x2e\x3b\x11\x89\xc5\xb3\x19\x18\xc1\x9c\x17\x20\xd9\xeb\xe1\xef\x2d\x25\x0c\x98\xec\xf5\xb0\xf9\x6d\x47\x76\x28\x3b\x95\x51\x16\xaf\x37\x70\x8e\x5f\x59\xeb\x5b\x44\x70\x47\x04\x77\xc8\xa9\x46\xae\xf1\x6c\x7a\xc2\x1c\x42\x8e\x5c\xe3\xd9\xb4\xd0\x75\x99\x8e\x6c\x38\x34\xd9\x4e\xcb\x86\x6e\x60\xa1\x03\xe5\xb8\x34\x65\x91\x56\x3c\xdb\xf5\xf3\x1a\x3f\x47\xda\x3b\x1b\x69\xef\x40\xce\x17\xb8\xc3\xd7\xa3\x2b\xa3\x79\xb7\x4d\x21\x85\x17\x90\x91\xd9\x9a\x4d\x01\x25\x93\xb6\x1c\x95\x6c\x38\x2f\xd9\x48\xc3\xa5\x15\x46\x80\xfd\xd3\x6c\x5a\xd4\x76\x50\xf6\x71\x44\xd5\xc3\x76\x30\x2a\x8f\x23\xaa\x45\x6d\x07\x6d\x79\xfd\x3d\x28\x92\x03\x7c\x31\xf0\x7f\xff\xca\xa6\x82\x91\x2a\xcd\x46\x60\x94\x8d\x1d\x9d\x00\x69\xcc\xd6\x1d\x16\xad\x67\x3b\xe9\x2f\x4e\x6f\x36\x15\x91\xc3\xca\xd9\x3e\xdb\xf2\xd9\x8f\x8b\x7a\x3f\xcb\x6a\x51\x81\x34\x06\xd4\xf7\x7a\xd8\xe6\x9b\x36\x0f\xc7\x54\xeb\xd9\xd4\x96\xa9\x16\xe8\x1c\x83\x5f\x0c\x3c\xe1\xeb\xe1\x38\x57\xda\x3c\x2d\xab\x46\x82\x5f\x8c\x28\xf1\x88\x12\x4f\x43\x83\x44\x84\x47\x44\x78\xc0\x2f\x66\x07\xd3\x98\x7d\xff\x79\x6f\x7d\xa3\x7d\xf7\xbd\xdd\xf7\xa2\xec\xe7\x3d\xfb\xcb\x37\x17\x12\x9e\x5d\x7f\x83\xf8\x30\xbb\x1a\xbe\x83\x07\x08\x01\x62\x76\x8e\x6c\x65\x57\xc3\x89\x10\x23\x5d\x78\x76\xfd\x0d\xd2\xac\xd9\xf1\x37\xb2\x03\x6a\x0c\x60\xc5\xc0\x27\xbe\x1e\x8c\x55\x0a\xef\xb1\x3d\x13\x98\xc4\x2b\x7e\x6d\x64\x10\xcf\x7e\x59\xed\x41\x77\x2f\xab\x35\x36\xe3\x74\x71\x84\x8e\x67\xbf\x6c\xca\xc1\xcf\x5d\x76\xc3\x78\x0d\x04\x63\x76\xd5\x79\xd7\x69\x00\xc1\x98\xbd\x3a\x04\x46\xf4\x9c\x38\x0e\x98\xf1\xf5\x18\xab\x29\x85\xde\x36\x47\x5e\xff\x80\x64\x6c\xc0\x8c\xaf\xc7\x54\x46\x93\x63\x93\x63\xcf\x6e\xde\x8b\xa3\xa2\x1f\xc1\xc1\xe4\xec\xb1\x8a\xc7\x51\x46\x33\xc0\x91\xaf\xc7\xb1\xaa\x3d\x14\x39\x50\x2a\x7d\x2a\x2d\x7e\x7e\x8a\x32\x50\x76\xec\xb5\x75\xe0\x08\x42\xe2\x35\x52\x8a\x47\x80\x79\xa2\xae\xbc\x0e\x94\x5e\x44\xd4\x95\xcf\x5a\x97\x9a\x87\xf4\x71\xa4\xf8\x8e\x14\xdf\x21\x17\x1b\x80\xe5\xbf\x22\x96\x3c\xc0\x17\xb3\xe3\x1c\x04\x2c\x79\xd9\x36\x55\x65\x58\x76\x9e\xca\x28\x3b\xad\x76\x19\xd2\xb2\x6d\xa8\x00\x88\xf1\xf5\x38\x90\xad\xa5\x26\xf0\x78\xaf\x47\x55\x76\x23\x7b\x94\x75\x65\x94\xdd\x2d\xbb\x5b\x16\xf3\x50\x70\x22\x52\x96\x2a\x2f\xd9\x85\x0c\x1d\x28\xa5\x20\x3b\x79\x4f\xb5\x85\xd5\x7b\xc9\x56\x3f\x0a\x6c\x53\x29\x87\xef\x31\xc5\x8b\x46\xb8\x1c\xf6\x6d\x45\x1e\x29\xaa\x32\x58\xf3\x25\xa3\x2d\xa7\x65\x4f\xfb\xbb\x16\x8e\x80\x2e\x5f\x0f\xfb\x71\xf3\x7b\xa7\xfd\x38\x2d\x8b\x55\x97\x0a\x3c\x60\xcd\xcb\x46\x22\x34\xe5\xb2\x6f\x97\xbf\xc7\x62\x52\xd4\xf9\xb2\x74\x7e\xc9\x28\x4b\xe2\x37\xe5\xb2\x1f\x95\xb6\xa8\xf3\xe5\xde\x91\xf1\xc9\xa5\x11\x0f\x34\xe2\x4b\xc6\x38\xe3\x3c\xa7\x2c\x47\x79\xc9\xf8\xbd\xdb\xdf\xbb\xbf\xa5\x06\x2c\x26\xe5\xb6\x79\xd5\x61\x66\x31\x11\x94\x9e\x52\xed\x1a\x6a\x00\x1a\x7d\x3d\xc6\x92\x91\xf4\x0c\x68\xf4\xf5\x28\xca\x18\x82\xe6\xb0\xb4\x4f\x19\x65\x9b\x4d\x0e\x43\x40\xd2\x33\x85\x4d\x98\x40\x19\xbe\x64\xb4\xc5\xf9\x52\x82\x0a\xed\xe5\xaf\x71\xf6\x81\x4a\x7c\x3d\x6c\x02\x46\xa6\x3c\x56\xf7\x5a\xdd\x41\x53\x5f\x47\xfc\xbd\x95\x31\x42\xaf\xd5\x75\xdf\xc3\x52\x48\x0b\x1e\xa0\xeb\x4b\x46\xf3\xfb\xcf\x7b\x76\x9d\x05\xa3\xb0\xaf\x99\xf2\xed\xca\xf8\x82\x9f\x5f\xe1\xeb\xca\x18\x8e\xe1\x7b\xc3\xf6\x61\x02\xe0\x08\x5f\x0f\xdf\x63\xbe\x0b\x6e\x0f\x78\xf6\x25\xe3\xf7\x5c\x1c\xa0\x0a\x5f\x32\xda\x32\x6d\x8b\xb3\x8c\x3b\x27\x72\x38\xcb\x8e\xcd\xb2\x4c\xf8\xc3\x05\xe3\xe0\x78\x3a\x91\x53\xe0\x12\x5f\x8f\x9f\xa2\x6b\xc4\x01\xbf\xaf\x07\x8a\xc8\xdd\xb5\x39\x9c\x64\xc7\x5e\x95\xf9\x5e\x57\xc6\x10\x70\xe4\x3a\xd2\x87\xe7\x28\x97\x32\xaa\x2d\xd6\x51\x1e\x65\x94\x2d\x96\x75\x32\x42\x30\x9c\x43\x2f\xe9\x38\x76\x65\x07\xb2\x53\x99\xbf\xb7\xf3\x7b\xba\x44\xe0\xe8\x97\x6c\x0d\x81\x60\xf9\x00\x96\x2f\x1b\x58\xca\x1c\xba\x3f\x60\xe6\x97\x8c\x7e\x38\xf1\x60\x11\x2f\x1b\x47\xb3\x23\x80\x3e\xc7\x55\x95\xf1\x9e\x3e\xd1\x71\x59\x76\x45\xa3\x39\x9c\x78\xc7\x6d\x59\x7c\x8e\xc3\x85\xe5\x58\x0b\x4b\xd9\x0a\xab\x83\x48\xfb\x1c\xf7\x54\xb6\xd4\xea\xc0\xa5\x0f\xd4\xe3\x4b\x46\x1d\xd5\xcf\x51\x99\xdc\x24\x2f\x73\x90\x1c\xcc\x51\xed\xdb\x6d\x59\x54\x17\xa6\xf2\x25\xa3\xac\x3e\x16\x14\xe5\x65\x2b\xa8\x0b\x58\xfc\xf5\xf0\xf7\x50\x17\x21\xf9\x39\x9a\xdf\x08\x6f\x14\xbe\xf2\xf5\x70\xac\x30\x20\xc2\xef\x03\xf5\x78\xd9\x20\x1e\xcc\xe1\x12\x74\x3c\xbe\x17\xca\xbe\xf6\xe3\x45\x75\x0f\xbf\xb9\xeb\xcd\xf1\x56\x65\xb4\xf9\xf5\xf7\xde\xa1\x8c\xdf\xeb\xd6\xdb\x2d\xbb\x33\x7e\xdd\x3a\xfa\xad\x8c\x3a\xba\xdf\xe8\x63\x0a\x72\x25\x46\xa4\x1e\xcf\xf1\x5d\xca\xe8\xdb\x67\x1d\xdf\xab\x8c\x71\xf9\xfc\x46\xdf\x32\x66\x9c\x09\xcc\xe1\x5a\x75\x0c\x9b\xc7\xcc\x3f\x74\xcf\x0e\xd7\x2a\x18\x05\x23\xae\x3e\x87\xb3\x88\x1c\x67\x64\x1e\x0f\xcc\xe3\x65\x03\x4a\x99\x93\x3d\xcc\x9c\xdb\xa3\xac\x21\xeb\xca\x2c\x8b\xdd\x3f\x49\xe9\xe4\x74\xca\x1c\xd8\xf8\x53\xb7\x0b\x02\xf2\x25\x3b\x90\x0d\x65\x96\xa5\xcd\x50\x93\xaf\x87\xdd\x65\x96\x9f\xec\x75\xe6\x5c\xf1\x85\x39\x93\x88\xbf\xcf\xe9\x2c\x3a\x88\x21\x4e\xa0\x6c\x39\x9d\x45\xdc\x8f\x1b\xb1\xf6\x01\x6b\x5f\x36\x2e\xc3\xcd\xe9\x92\x76\x3a\x8b\x48\x63\xe6\x3c\xed\xee\x79\x28\xa3\xac\x81\xc5\x79\xa2\x55\x27\x36\xfe\x24\xf5\x93\xf3\xda\x95\xf1\x9e\xb3\xe8\xbc\xe8\x06\x29\xcb\x9c\xb7\xdd\xb8\x19\x3e\x52\x91\x39\x9d\x31\xe7\xfd\x28\xa3\xac\xeb\xcd\xe9\x8c\xe1\x10\x72\x4e\x80\x00\x39\xeb\xad\x8c\xfe\xea\xb2\x01\xcd\x2f\x1b\x87\x90\x23\x53\x79\x60\x27\x5f\x32\xca\x3a\x3b\x80\xe6\xdf\xd5\x6e\x18\x80\xc0\x54\x7e\x03\x07\x89\x30\xfd\x9c\x6b\x3a\xdc\x86\x38\x22\xf2\x73\xa6\x2f\x11\xd1\xcc\xf9\xd8\x8e\x35\x19\x64\x54\xca\xe9\x5a\x02\x04\x5f\x42\xa5\x9c\xce\x81\x73\xc5\xbd\x37\x48\x90\x9c\x86\x28\xe7\x4b\x8d\xf6\xd3\xc8\x03\xac\xfd\xcd\xd9\xac\x48\x3d\x9e\x73\xe9\xf7\xdd\xf0\xe9\x4e\x97\x0c\xd0\xf7\x65\x83\x84\x30\xb2\x91\x07\xf4\xfd\x6d\xb8\x73\xea\x97\x9d\x83\x56\xb0\x28\x9d\x43\xd5\x5c\x1a\x7f\xb7\x8b\xb7\xd8\xc1\xcf\x39\x1a\x22\x7e\x6b\xfc\x14\x9c\x88\xa8\x72\x5a\xe5\xa4\x20\x96\xe8\x9c\x36\x7f\xd2\x7c\xd6\xa8\x8b\x04\x67\xae\x8d\x46\x60\x73\x2e\xd7\x8f\x6b\xa3\xdf\xe8\xb3\xe8\xfd\x5c\x1b\x3f\x8f\xc5\xb9\x74\xdb\x00\xef\xdf\x0d\x6d\x96\xd2\x3c\xd7\xce\x5b\xed\xaf\x61\xf5\x01\xaa\xbf\x1e\x2f\x25\x56\xb3\x2f\xdd\xb7\xeb\x60\xf0\x42\xed\xaa\xfa\x75\xd0\x5f\x1c\x58\x21\xfc\xb9\x56\xd4\x7c\x67\x5b\x1f\x55\x88\x7e\xe0\x3c\xbf\x39\x96\x95\xcb\x95\x01\x50\xfe\x6d\x50\x73\xe9\x91\x5d\xcb\x23\xbb\x81\x98\xe4\xba\xfc\xf9\xb5\x3c\xdc\x9c\xd3\x8a\x44\xe7\x01\xa5\x7f\x1b\xe5\x5c\xea\xfd\xb5\xf4\xfe\x4e\x29\x88\xac\x71\x39\x5b\x37\x5b\x68\xb9\x5c\x13\x2e\xd2\x3c\x20\x49\x72\x55\xdf\xaa\xcc\xfb\xd3\x21\x66\xcf\x20\x97\x4e\xd6\xe9\x18\x37\xdf\x6b\xbe\xc7\x8a\x7f\x81\x7e\x09\x5c\xe7\x4b\xc6\x7b\x24\x32\x73\xa5\x2a\xa3\x71\x9a\x7a\x90\xf7\x65\x23\x4d\x1d\x49\xce\x73\x3d\xbc\x47\xfa\x39\xd7\x63\xbf\xde\x5d\x19\xed\x23\xff\x93\xeb\xbd\x94\xf1\x25\x5f\xeb\x7d\xa9\xf7\x72\x98\x34\xf5\x97\xa6\xfe\x72\x9c\x34\xf5\x57\xb7\x2c\x21\xe2\xa5\x17\x75\x75\x26\x3e\x69\xea\x08\xcd\xcf\xf5\x1d\xca\x28\xfb\x59\x87\xa6\x1e\xdc\x6d\x64\x3e\xcf\x35\xe8\x07\xe7\xd3\x73\x19\x8a\x5f\xe3\x54\x86\xf2\x0d\xfb\xa6\xfd\xd7\x70\xca\x7c\x9e\x6b\x45\xdf\x57\xbd\xd7\xb0\x00\xbf\x5f\x8f\x73\x89\x18\xe5\xdb\x08\xe4\x5e\x0a\x7d\xc1\x13\x97\x5b\xa3\x0e\xc4\xfe\x32\x69\x03\xce\x7e\x3d\x1e\x44\x4b\xe3\x44\xd1\xe7\x2e\xd8\x4c\x8e\xbf\xe7\x26\x39\x99\x5b\x5b\xcd\xc9\xe7\xdc\xda\xea\xfb\xb0\x0b\x78\x05\xb7\x91\x34\x64\xe6\x4b\x46\xdb\xd4\xcd\xfb\x74\x98\xf0\x00\x6e\x13\x39\xb7\x9e\xcc\x65\x1f\xd4\xce\x5b\x4f\x06\x58\x6f\x64\x2e\xcf\xad\x27\x03\x86\x37\xf7\x6d\x2f\xee\x5b\x19\x65\xf5\x5a\x6e\x6d\x30\xb9\xec\x48\x53\x9e\xbb\x76\x65\xf4\xad\xda\x16\xed\x2d\x79\xeb\xdc\xb1\x2d\xa1\x2d\x90\x50\xe6\xd6\x6f\x07\x09\xbf\x64\xeb\x53\xdc\x8f\x63\xf0\x50\x07\x97\x11\xe7\xd6\x4c\xde\xb0\x3c\x5d\x24\x68\x6e\x93\x36\x00\xdc\xcb\x46\x3a\x3a\x77\xf7\x5b\xe8\x83\x73\xef\x70\x6e\x6d\xe7\xad\xbf\x0d\xdf\x64\x6e\x8d\xe7\xad\xf1\x84\x6f\x32\xb7\xda\x73\x7f\x4d\x19\x4d\xf9\x6c\xde\x67\x53\x8e\xa5\xc9\xb7\xe6\xf3\x56\x53\x48\x65\xe7\xd6\x2f\xbf\xc7\x50\x46\x5b\x4c\xe4\x80\x73\x2f\xdb\x8d\xd3\x77\x4f\xcb\xea\xab\x83\xb3\xcd\xad\x09\x05\xe1\xbe\x64\xab\xac\x4c\xe3\xa9\x46\xbf\x37\x9f\xb7\xaa\x67\xd5\x48\x17\x9c\x6d\x2a\x3c\x67\xa9\x7b\x51\x76\x21\x3b\x95\x59\xc7\xdd\x90\x55\x65\x8e\x0b\x5e\x86\x48\xf8\x00\x7e\x5f\x32\xea\x35\xfa\xad\xaa\x24\x07\xe5\x53\x55\x49\xe8\xc7\x97\xcc\xf7\x86\x32\xc7\x05\xf7\xa1\x9a\xaa\xac\xba\x0f\x5c\x3c\x1c\xe0\xee\xeb\x61\x59\x0c\x6d\x35\x2f\x59\x4f\xc7\x85\x20\xa1\xea\x3e\x54\x23\x62\xf2\xdb\xa9\xc0\x9e\x52\x75\x1f\x38\x51\x9f\x7a\xd9\xb7\x8b\xbe\x71\xc9\x70\xea\x65\xdf\xae\xa6\xac\x22\xeb\xca\x3e\x65\xd4\x61\xa4\x5b\x6f\xbe\x39\x18\xdd\x54\xdd\x0c\x00\xf1\x4b\x46\x7f\x4d\x60\xd6\x5a\x94\x51\xaf\x4e\x78\xd5\xa5\xa8\x87\x32\x74\xa3\xaa\xe2\x64\xa5\x23\xec\x3d\x40\xdc\x97\x8c\x7a\x55\x7b\x20\xee\x55\x35\xad\x1a\xdc\xaa\xc1\x85\xab\x32\xf2\x90\xa7\x1a\xc1\x92\x61\x4e\x35\x44\xad\x86\xa8\xd5\x4f\xa9\xbf\x5d\xf5\xb7\xab\x9f\xd2\xdc\x27\x08\xf7\x25\xa3\x6b\xe6\x7c\xaa\x86\x99\x0b\x85\x53\x5f\xeb\x7d\xf9\x1c\x66\x98\x45\xb8\xa7\x6a\x84\x4d\x13\x57\x8d\x70\xd5\x08\x9b\x12\xae\xdd\x3a\xba\xc3\xec\xa7\xd4\x30\xd7\xcf\xb2\x7e\x4a\xf3\xa1\xd5\x69\xa4\xc3\x54\x4d\x18\x55\x0d\xb3\x1e\x53\xd5\x30\xd7\x71\x29\xfb\x6b\xf6\x9b\x54\x73\x47\x75\x45\xbf\x77\xf1\x03\xea\xa5\x40\x71\x5e\x36\x33\xc6\x82\xd9\x53\xe7\x50\xb6\x14\x42\x9a\xf2\x00\x48\x8f\xfa\xdf\x9c\x27\x6d\x47\xff\xb9\xce\x25\x4d\x2b\xdd\x9c\x27\x5c\xe7\x92\xa6\x0f\x02\x5d\xf9\x92\xad\x8e\x43\x5a\xbe\x1e\xcc\x4f\xce\xbb\xa7\x99\xd2\x6f\xce\x13\xae\x7d\x89\xdc\xe5\x69\xce\x13\xbd\x28\xb9\xcb\xd3\xcc\x1c\xe9\x46\xc9\x53\x9e\xa6\x39\xe7\x20\x7b\x9a\x0e\x49\x33\x58\x35\x11\x2c\x6e\x3d\x10\x95\x2f\x59\x43\xc6\x40\x82\x5b\x2f\x1b\x0c\x95\x11\xb7\x9e\xa6\x89\x37\xc1\xdb\x9c\x13\xcd\x39\x01\x22\x28\xcd\x8c\x50\x33\x23\xa4\x6f\xd4\x9c\x27\xcd\x79\xa2\x73\xd4\x40\x33\xa4\xe9\x8e\x9b\x08\x6e\x2e\x05\xed\x66\x98\x83\xcb\xdf\xf4\x9f\xdb\xf2\x9f\xeb\xee\x90\xea\x2c\x03\x47\x97\x4d\x2e\xcd\x94\x7e\x5b\xaa\x5e\x77\x07\x54\x4d\x6f\x0f\xa7\x81\x70\x53\xc5\xa7\xa7\xad\xa5\xa1\xee\x0e\xf1\xe3\x30\x3d\x74\x41\x5f\x4b\xc8\x7a\x20\x29\x0f\xac\x46\x69\xaf\x5f\x56\xff\x03\xb2\xcb\x34\xfd\x0f\x10\xeb\x65\xcb\xcf\x7b\xf6\xc0\x15\x84\x33\xf1\x69\x66\x71\x40\xa2\x97\x4d\x7f\x0b\x72\xf2\x5f\x69\x86\x9a\xe6\x8a\xe5\x28\x0f\x1c\xe5\xf2\x37\x47\x70\x7a\x00\xa7\x97\x0d\x84\x52\x9a\xd1\x27\x18\xf5\xfb\xf2\x3b\x18\x7c\xb6\xcf\x1a\x1c\x11\x3d\x92\x66\xa6\xd4\x2c\x73\x53\xdb\x61\x2d\x8f\x59\x2e\x09\xca\xd3\x5c\x52\xa2\x8a\xe9\xa4\x34\x53\x3d\x1c\x93\x8f\xd0\xf4\xc4\x80\x94\x23\xf1\x91\x64\x3c\xa0\xd1\x97\xac\x21\x1b\xca\x50\x4f\xf7\x79\x84\xa1\x27\x06\xa4\x00\x77\x13\xa7\x05\x5c\xe3\x4b\x46\x59\xf3\x3a\x31\xa1\xca\x99\xf8\x48\x3c\x9e\x38\x55\x00\xf3\x46\xb8\x7a\xe0\x1f\x5f\x32\x7e\xcf\x88\x34\x7a\x39\x5c\x4b\x9c\xe8\xe5\xc4\x24\x2b\x67\xe2\x13\xf3\x3a\x71\xaa\x70\x2d\x71\x02\xc0\x2b\x59\x81\x69\xd9\xb9\x8e\x26\x31\x22\x05\xb5\xbe\x64\x15\x99\xfd\x65\x49\xd9\xb9\x7a\x26\xc2\xd5\x03\x4f\x79\x38\xf9\x9c\x18\xa4\x86\x1c\xeb\xce\x99\xf8\xc8\x4f\x1e\x28\xc9\x97\x8c\xf7\x9c\x29\x00\xd9\xcb\x6e\x3e\x5a\x04\x7b\x20\x23\xbf\x5c\x90\xa3\x1b\x1e\xb2\x35\x3b\x47\xe2\x23\xef\x78\xe0\x1d\x5f\x32\x8a\x9a\x5d\xc9\x5a\x1b\x2e\xd7\xde\xb8\x35\x00\xb6\xfc\xba\x1d\x63\xe7\x4e\x96\xc9\x5f\x25\x69\x88\x4e\x38\x68\xf2\xb2\x6f\xcc\x8b\x38\x2f\x20\x1a\x5f\x32\x5a\x62\xf8\x09\x9a\x7c\xc9\x18\x4f\xed\x7f\xfa\x8f\x8c\x3a\x74\xa3\x82\x73\xbd\x9b\x64\x96\x1a\x3c\xe0\xbf\xcb\xce\xb5\xc2\x89\x2a\x0a\xae\xbb\xec\x5c\x21\x9c\x68\x7d\xc1\x75\x97\x9d\xcb\x5e\x12\xd3\x91\x30\x7f\x2f\xd9\xea\xed\xa3\x3b\x03\xae\xbb\xec\xd0\xc3\xe5\x51\x1f\x1f\xdc\x99\x1d\xe8\x6a\x1e\xdd\x19\x58\xbe\x97\x8c\xf7\x74\x5d\x60\xf9\x2e\xbb\xe9\xd7\xc7\x04\xc9\x43\xae\x70\x07\xba\x9a\x47\xb3\xfa\x1c\x96\xa5\xbf\x8f\x66\x15\xd4\x75\xd9\x77\x76\x5b\x9e\x93\x7e\x3c\x2b\xb6\x0b\x47\xa2\xf3\xa8\x2a\xe0\xac\xd7\x6b\xfc\x1c\x47\xb1\xf3\x9c\x36\x8f\x61\x81\xc2\x7b\x3d\xec\x06\xde\xbf\xac\xdd\x01\x7b\xbd\x64\x41\xd6\x95\x39\x04\x2c\xb3\xa0\xad\xd7\x63\x57\x46\x37\xf4\x3e\x9e\xdb\xb2\x58\x87\x47\x4f\x03\x80\xf5\xbd\x11\x17\x8b\x9b\xce\xc3\x2d\x6b\x30\x97\xe6\x61\xbf\x3e\x20\xa5\xcb\xce\xf9\xf5\x80\x8d\x5e\x8f\x83\xd7\xe8\x84\x99\xf2\x27\x8e\x09\x39\x5a\x21\xd2\x01\x22\x7d\x83\x72\xce\x03\x68\x25\x0f\xd7\x9d\x00\x72\xce\xe3\x5e\xd3\xf3\xf0\x63\xfe\xbe\x4a\xf6\x3c\xd4\x69\x22\xf7\x31\x37\x0e\x66\x7a\xc9\xa8\x40\xab\xfa\xbc\x28\x54\xf9\x6f\x16\x76\x88\xbc\xd7\xe3\xb4\x08\x6d\xef\x0e\x4e\x7f\x94\xf1\xa1\xdc\x7f\x85\xea\x5b\xe6\xa9\x3c\xba\x20\x4f\xb7\x55\xe4\x54\x1e\x8d\xee\xf3\xfd\xc8\x68\xd5\xb0\xa5\xc3\x96\xaa\x46\x66\x3d\x40\x4f\x2f\x19\x55\x68\x62\xa1\xee\x2e\x3b\x47\xe1\xf3\xe8\xa1\x3f\xd3\x1e\x61\x76\xa5\xee\x0e\xd4\xdd\x4b\x56\x91\x9d\xca\xac\x03\x75\x7b\x4d\x7d\xbc\xaa\x79\x61\x73\xef\x55\xcd\xa1\xf0\x5e\xb2\x86\xcc\xb2\x3b\xba\x60\xaa\xf6\xe5\x38\x76\x00\x5b\x2f\x19\x75\x14\xcb\x16\xf4\xa8\xa0\x5b\xaf\x39\x8f\x17\x73\xba\x9b\x96\x7d\xf5\xc6\x01\x51\x97\x1d\x9c\x69\x80\x52\xff\xca\x7b\x6e\xca\x96\xae\x8a\x9e\xce\xab\x9e\x9b\x96\x7d\xcd\x68\xbc\x04\x8d\x3b\xec\x98\x79\xf5\x28\x5e\x3c\x8a\xfd\xc0\x85\x7b\xdd\x57\x05\x29\xbd\x64\x94\xad\xb6\xaf\x5a\xf6\x50\x66\x59\x92\x74\x3b\xac\x97\x11\x29\x9d\xb7\xd1\x96\x03\x57\xe1\x35\x5f\x01\x02\xba\xec\x5c\xb9\x92\x57\xab\xf8\x86\x71\xe1\xf8\x79\x5e\x55\xf8\x8d\x6d\x76\xfc\xd4\xe1\xf7\xf1\x3d\xe6\xeb\xab\x09\x7c\xd5\x44\x90\x2e\x11\x03\x9d\xb7\xdb\x16\xc7\x40\xb5\x7a\xc9\x25\xec\xdc\x7d\x92\xd7\x68\xf0\xfd\x18\x3f\xee\x34\x89\xe4\xd8\x01\x06\x5d\x76\x7d\x0d\x89\xb0\x03\x11\xf6\x92\xd1\x5f\x57\x6e\xc8\xaf\x53\x99\xd6\x2f\x98\xa8\xc0\x7d\xbd\x5e\x43\x06\x34\x25\xef\xb4\x5a\x02\xd3\xd7\xd5\xfc\x9d\x5d\xd9\xfa\xb9\xae\xaa\x75\xb6\x3d\xf7\x13\x95\xec\x06\x83\x5d\xb5\x3a\xd9\xa5\xe9\xae\xe6\x7d\xb3\x0e\x72\x07\x02\xb0\x03\xe8\x7a\xc9\x56\xbd\xdd\xb4\x71\x67\xdb\x73\x3f\xc9\x09\x74\xd3\xc6\xbd\x58\x07\x9e\x80\xb0\xec\xc0\x7d\xbd\x64\xfc\x9e\x0e\x6d\x3f\x1c\x02\x54\x12\x06\xec\xf5\xe0\xb3\x71\xe2\x3b\xdd\x20\x0f\x3e\xec\x25\x5b\x2a\xd9\x35\xb3\xdd\x15\xd9\x94\x92\x30\xec\x80\xb2\x5e\x32\xca\x9a\x8b\xe8\x17\xf5\x9a\x52\xea\x9a\xcf\x4e\x2e\x62\x07\xe5\x98\xae\x53\x0a\xa2\xba\xec\x1c\xdb\x4e\x37\x47\x0c\x94\xba\xec\xa6\x8a\xba\x81\x1a\x84\xd7\x65\x37\x05\x24\x94\x3a\x40\xa9\x97\x8c\xb2\xe6\x83\x81\x52\xcb\x32\x98\xde\x6c\x0a\xf1\xdc\x0e\x4f\x5e\xba\x4b\x77\x27\x9e\x83\x64\x30\x5d\x3b\x0b\xc6\xba\x02\x04\x4c\x8f\x9d\x55\x6f\x2f\x3f\x9a\xcb\x39\xb4\xd9\xf5\xc2\xb6\x77\x5d\x61\x50\xd7\xf5\x72\x38\xf5\x7b\x21\xcd\xae\x7a\x96\x02\xb0\x03\x00\xbb\x5e\x84\x68\xdd\xf0\xae\x2f\xb7\xb6\x72\x57\x48\x64\xc7\x8e\x4c\xd8\x40\x00\xd3\x0d\xee\x20\xbf\x2e\xfb\x85\x63\xd0\x0d\xee\xfa\x8a\xe7\x2a\xa7\xa1\xd3\xcd\x38\xf7\x6e\x63\xd5\x12\x53\x29\x00\xbc\xe5\x2f\x4c\xd7\xe7\xed\xdf\xcf\xaf\x51\x83\x99\x94\xfe\xad\xae\xdf\x98\x80\xee\xd4\x01\x06\x2e\x7d\x61\xa4\xd0\x0e\x14\xda\x65\xe7\x7e\xdf\x74\xfd\xe0\xbe\xfc\xe0\x7a\x33\x99\xba\x5b\x9e\x90\x6b\xaf\xd7\x68\x9b\x7e\x47\x1f\x7e\x29\x52\x1c\xdd\x64\x1d\xd8\xf2\x25\xa3\x0a\x27\x5d\x1f\x56\xe1\x77\x19\x8e\xdb\xb4\xc1\x6a\xb5\xd1\x61\xd7\x98\x9b\xd5\x12\x68\x9e\x4f\xc3\x0d\xf2\x32\x9f\x33\xec\xdb\xad\x97\x25\xf0\x73\x7f\x13\x50\x79\xd9\x39\x35\x9e\x4f\x83\xfc\x39\x9b\x40\x54\xe6\x13\x0f\xf3\xb1\x31\xb3\x9b\xc1\xfa\xf4\x79\xa1\xdf\x5e\x32\xea\xd5\x67\xf9\x34\xd2\x1c\x01\xcf\xe7\x6c\x82\x7e\xbb\xec\xa6\xa1\x3e\xfd\xdb\x8f\x94\xc9\x6e\x1a\xea\xd3\x8f\xf9\x74\x5c\x6f\x0c\xe8\x67\x7a\xe4\xd3\x71\xbd\xb1\x00\x9f\x89\x67\x98\xb9\xcb\xae\x97\xfa\xc1\x9b\x98\x4f\xc7\xe3\x26\x3e\xf8\x0c\xe7\x3e\x8d\x39\x50\xc9\x7c\x1a\x73\x30\xea\x4b\x46\x5b\xdc\x71\x01\x7b\xbe\x64\x7f\x0d\xa8\x8b\x4c\xdc\x01\x86\x5e\x76\x10\x8d\x91\x75\x3b\x1f\x29\x90\xbd\xa2\x5f\x9f\x76\xfd\xd3\xdd\xe5\x7e\xad\x7c\xba\xbb\xdf\xc3\xa7\x36\x6b\x03\xdd\xf6\x7a\x0c\x65\x34\xcb\xf9\xf0\xbd\x18\x53\x78\x10\x23\x13\x77\xbe\xf7\x51\x46\x37\xf5\x4e\x3e\xd7\x84\xea\xb0\x75\xdf\x53\xaf\xb9\x76\x24\x9f\x69\x0c\xf0\xe5\x65\x07\x04\x98\xef\xb3\x7d\xaa\x62\x45\x3d\x3f\x7d\x08\x10\xe3\x65\x37\x23\x2c\x62\x3c\x1f\x61\xda\x6e\x9a\xe5\x33\xf3\x07\x70\x7c\xc9\x7c\xcf\xdf\x53\x15\x5d\x28\x84\x8c\x67\x6c\x7c\x42\x11\x7a\xc2\xc3\x33\x54\x45\xee\xfa\xc8\x50\x15\x87\xfe\x42\x63\xac\x64\xc9\xce\x28\xec\x1e\x30\x2b\x86\x1e\xf0\x58\x1a\x76\x0b\xfc\x11\xe0\x1d\x00\xde\x65\x87\x4b\x30\x82\xb9\x03\x98\xfb\x36\x96\x1b\x5a\xeb\xc1\x39\x07\xe8\xcd\x32\xf4\x89\xc7\xc9\xef\xdb\x5c\x5d\x85\xa1\x4b\x6c\xae\x45\x8c\x76\x06\x57\x39\x71\x07\x42\xe4\xcc\x0e\xb0\xed\xb2\x0b\xd8\x1b\x7a\xbf\xc3\xbd\x0e\x94\x62\x68\xbd\x07\xd9\xe5\x1d\x0a\xc2\x8c\xea\x6b\x15\x05\x70\x53\x6b\xe8\x11\x43\x8f\xbd\x64\x37\xb2\x43\xd9\xad\x8c\xb2\x6e\x76\x0c\x2c\xfa\x6d\xef\xb5\xe8\x43\x8b\xee\xee\xd7\x30\x6b\x31\xe2\xcf\x31\x6d\x86\xfa\x39\xe2\xcf\xe1\xcb\x8d\x38\xbe\xfa\x1d\x42\xf8\x40\x7a\xaf\x87\x03\xc0\x62\x2a\xb8\x3b\x43\x9d\x15\xae\x37\xd4\xd9\xa1\xce\x0a\xd7\x13\xdc\x9d\xa1\xce\x0a\xd7\x1b\x6e\x11\x0e\xb6\xc9\x77\xe1\x7a\xc3\x6d\xf2\xa1\x1e\x9b\xcd\x19\xea\xf1\x58\x06\xbe\x3a\x5b\x87\xc8\xc6\xd1\xfd\x39\x5c\xfb\xa1\x6a\x8f\x6e\x53\xb0\x62\x43\xcb\x0e\x8b\xf7\x92\xd1\x64\x77\xce\x87\x2e\x90\xc9\x1c\x71\xe1\x19\x46\x81\xee\x7f\x0d\x5d\xeb\xa1\x5b\xc4\x9d\xc0\x19\x4e\x8b\xa1\x21\x67\xf9\x1f\x1a\xed\xe1\x4c\x09\xde\xe2\x30\x47\x3e\x9c\x29\x9c\xbb\xce\x70\xa6\x0c\x67\x8a\x80\xc0\xa1\x0b\x34\x26\x23\x6f\xa6\x66\x38\x53\xc6\x72\x8b\xee\x8a\x0e\x88\x1e\x0f\x94\xe0\xeb\xb5\x55\xad\x04\xe0\x99\x3a\xd6\x61\x55\x9f\xc6\x8a\x53\x0f\x48\x50\xdf\x74\xe7\x05\x24\xf8\x92\x35\x64\x9f\x32\x9b\xc7\x1a\x28\x2c\x3c\xf3\xb0\x29\x18\x81\xa9\x13\x3d\x97\x7d\xae\x95\x4d\x8c\xa9\xb3\x33\x4f\x07\x0f\x1d\x98\x66\xb4\xa7\x31\xa5\x69\x14\x60\xde\xeb\x61\x15\x2c\x3d\x22\xbb\x33\x2f\xbb\xc1\x3c\x9b\x4e\xa0\xa9\x19\x77\xa2\xcd\xcb\x6a\x8d\x29\x39\x13\x9d\xe9\x6e\xe1\x04\xbb\xb5\x07\x5b\x31\xcd\x49\x4c\x4d\x7b\x70\xa8\xa6\xa6\x7d\x6a\xc6\x9d\x6a\x53\x33\x0e\x54\xbc\x14\xb1\x79\x53\x9f\x7c\xe2\x28\x15\xd3\x28\x82\xc5\x03\x58\xbc\x14\xce\x44\x67\xea\x28\xcd\x35\x87\xaa\xdb\x67\x53\xac\x23\x00\xf2\xf5\x1a\x23\x6f\xe2\x1b\x22\xf1\x25\xa3\x5a\xdd\xa2\xb9\x66\x52\x29\x50\x0b\x66\xba\x07\x34\x63\xb5\x7e\x49\xf3\x81\x20\xcd\x97\x8c\xdf\x73\x6a\x80\x24\x2f\x85\x5b\x42\x9e\x0d\x2d\x78\xe0\x4a\x2e\xd9\xd6\x4a\xf6\x88\x82\x7d\x84\x13\x06\x64\xc8\x53\x94\x09\x7e\x12\xf2\xf1\x1c\xca\x84\x72\x84\x8d\xf6\x47\x28\xc7\x03\x0e\xe0\xd8\xb6\xe5\x09\x3c\x6c\xfd\xff\x7a\xce\x15\x32\x1c\x5b\x29\xf9\xed\xd7\xa8\x04\xe0\x83\x0b\x45\x71\xf8\x86\xac\x35\x83\xd4\x3e\x67\x32\x46\x65\x69\x18\xf0\xad\xec\xc2\x01\x47\x63\x67\x70\x98\x5c\x2d\x9c\xbd\x9e\x0f\xe6\x7d\x72\xdf\x59\x29\x5c\x56\x3c\xb9\xf5\x6c\x3d\x7c\x6f\x69\xf2\x7c\xc8\xae\x4d\xee\x31\x5b\xb2\x2c\x59\xf1\xbd\xf2\xf3\x7b\x94\x25\x11\x3d\x39\xee\xbe\x64\xe7\x6f\xbf\xe6\xf0\xf7\x58\x35\xe8\xfd\x1c\xe4\x55\xe6\xd8\xdb\x4f\x7b\x27\x47\x83\xd6\xe3\x5c\x31\xff\x7f\x1e\x85\x3b\xff\x73\x59\x9f\x03\x08\xe4\xe4\x10\x11\x27\x5d\xe6\x38\xfc\xcd\x83\xdf\xa4\x16\xd6\x9f\xc9\xfa\xc3\x6e\xe1\x74\xf9\x99\x2c\x3f\xd0\x67\xcf\xc1\x8c\x9a\x1c\x32\x62\xf7\x70\x7a\x8d\xc3\xe4\x1a\x87\xab\xf1\x0e\x0b\xd4\xe4\x12\x07\xfc\xb3\xc9\xc2\xf4\x6b\xb2\x00\xed\x1b\x84\x94\x93\x65\x68\x3d\x2a\xb2\x43\x99\xef\xc1\x05\xb6\x71\x52\x7e\x72\x2c\x68\x3d\x5e\xbf\xcc\xf5\xdb\xaf\xe9\xad\x03\x93\x5b\x07\xca\xf2\x92\xe6\x04\x6e\x3a\x99\x79\x70\xd3\x4d\x0f\x18\x4c\x0f\x18\xdc\xed\xff\x1f\xa1\xf5\xcf\xdf\x9f\x3f\x7e\xfb\x5f\xff\xfb\xf9\xe3\xff\x3c\x7f\x1f\xbf\xf7\x7f\xff\xf9\xe7\xf8\xc7\xbf\xbe\xbf\xf5\x7f\xfd\xfe\x3f\x96\xf4\xf7\x6f\xcc\xbf\xfd\x63\xfc\x39\xfe\xef\x3f\xff\xfd\x67\x1f\xbf\xff\xf1\xcf\x3f\x56\x29\xfe\xfe\x5f\x00\x00\x00\xff\xff\xdd\x4e\x8e\x02\x63\x04\x03\x00"); -type bindataFileInfo struct{_ag string ;_bc int64 ;_bd _ce .FileMode ;_bg _f .Time ;};func _dgcga ()(*asset ,error ){_egde ,_aeaga :=_fcad ();if _aeaga !=nil {return nil ,_aeaga ;};_cffeb :=bindataFileInfo {_ag :"WP-Symbol",_bc :846,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493083,0)}; -_fgce :=&asset {_cd :_egde ,_dce :_cffeb };return _fgce ,nil ;};func _fccff ()([]byte ,error ){return _dc (_aaa ,"KSC-EUC-H")};var _abee =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x90\xbb\x6e\xeb\x30\x0c\x86\x77\x3f\x05\xc7\x9c\xe1\x54\x96\x83\xf4\x32\x16\xf6\x50\x0d\x71\x8a\xba\x49\x0b\x14\x1d\x1c\x89\x32\x04\xd4\x94\xa0\xcb\xe0\xb7\x2f\x2c\x3b\xee\x20\x10\xfa\xc0\x4f\xd4\x4f\x56\x8b\x46\x90\x89\xc0\x5e\xbd\x95\x1d\x46\xd0\x86\x94\xc7\x60\x93\x97\x08\x57\x1c\x0c\x15\x05\xaf\x40\x19\x19\x6f\xd7\x5c\xe4\xd8\xbb\xa2\x60\x75\xdb\x55\xff\x5f\x20\x05\xbc\x01\xd1\x74\x53\x88\x38\x0a\xd2\x16\xf6\x8b\xa8\x92\x5b\x65\x00\xf6\x86\x83\x09\xd1\x4f\xb0\x7b\x56\xf6\x8a\xff\x40\xa1\x9e\xf9\xc9\x2b\xf4\x86\x06\xd8\xd5\x6d\xc7\x37\xdc\x25\xe7\x7e\x70\x44\x8a\x50\x66\x86\xa4\x72\x2d\x58\x7d\xec\x5d\xdb\x8f\x08\xcb\x37\x2e\x19\x67\x7a\x41\x1f\x8c\x25\xe0\xe5\x5d\x59\xde\xff\xf1\xf7\xc9\x21\xf0\x55\x3f\x8b\xe6\xa4\x75\xc0\x08\x4f\x87\xe5\x69\xf6\x79\x16\x0d\x7c\x71\xe0\x25\x54\x87\xfd\xe3\xc3\xf7\xda\xfa\x71\xb4\x6a\x13\x91\x54\x0e\xbb\x8d\x97\xc9\x7b\xa4\x98\xa3\xe6\x31\x73\x9f\x21\xdc\xf6\xe8\xac\x9b\xad\x7c\x7e\x03\x00\x00\xff\xff\x26\x9e\x08\x33\x73\x01\x00\x00"); -func _faef ()([]byte ,error ){return _dc (_egdd ,"UniJISPro-UTF8-V")};var _fcbe =map[string ]func ()(*asset ,error ){"78-EUC-H":_bb ,"78-EUC-V":_cf ,"78-H":_ff ,"78-RKSJ-H":_ed ,"78-RKSJ-V":_feea ,"78-V":_bcf ,"78ms-RKSJ-H":_cb ,"78ms-RKSJ-V":_gea ,"83pv-RKSJ-H":_gfa ,"90ms-RKSJ-H":_ef ,"90ms-RKSJ-V":_ccfb ,"90msp-RKSJ-H":_fag ,"90msp-RKSJ-V":_ccg ,"90pv-RKSJ-H":_degg ,"90pv-RKSJ-V":_dda ,"Add-H":_dgd ,"Add-RKSJ-H":_bdb ,"Add-RKSJ-V":_gcf ,"Add-V":_aggg ,"Adobe-CNS1-0":_afa ,"Adobe-CNS1-1":_agcd ,"Adobe-CNS1-2":_cda ,"Adobe-CNS1-3":_cdgb ,"Adobe-CNS1-4":_cfa ,"Adobe-CNS1-5":_ddab ,"Adobe-CNS1-6":_cca ,"Adobe-CNS1-7":_gedf ,"Adobe-CNS1-UCS2":_egeb ,"Adobe-GB1-0":_bfgd ,"Adobe-GB1-1":_dag ,"Adobe-GB1-2":_adfb ,"Adobe-GB1-3":_bag ,"Adobe-GB1-4":_dfc ,"Adobe-GB1-5":_cee ,"Adobe-GB1-UCS2":_geac ,"Adobe-Japan1-0":_ffg ,"Adobe-Japan1-1":_dbcf ,"Adobe-Japan1-2":_cde ,"Adobe-Japan1-3":_bgf ,"Adobe-Japan1-4":_dceg ,"Adobe-Japan1-5":_feg ,"Adobe-Japan1-6":_gegc ,"Adobe-Japan1-7":_cff ,"Adobe-Japan1-UCS2":_fbca ,"Adobe-KR-0":_bcde ,"Adobe-KR-1":_dbdc ,"Adobe-KR-2":_eef ,"Adobe-KR-3":_gdff ,"Adobe-KR-4":_gbe ,"Adobe-KR-5":_fdec ,"Adobe-KR-6":_dggg ,"Adobe-KR-7":_gfgd ,"Adobe-KR-8":_acaf ,"Adobe-KR-9":_ffcd ,"Adobe-KR-UCS2":_bfgf ,"Adobe-Korea1-0":_gbef ,"Adobe-Korea1-1":_cac ,"Adobe-Korea1-2":_cedf ,"Adobe-Korea1-UCS2":_bfb ,"B5-H":_aebf ,"B5-V":_egcd ,"B5pc-H":_gfc ,"B5pc-V":_dba ,"CNS-EUC-H":_ebca ,"CNS-EUC-V":_eae ,"CNS1-H":_eaae ,"CNS1-V":_gcb ,"CNS2-H":_febce ,"CNS2-V":_dgeb ,"ETHK-B5-H":_bgd ,"ETHK-B5-V":_daeg ,"ETen-B5-H":_abege ,"ETen-B5-V":_bacb ,"ETenms-B5-H":_adg ,"ETenms-B5-V":_cfe ,"EUC-H":_cab ,"EUC-V":_ffde ,"Ext-H":_bgb ,"Ext-RKSJ-H":_bfdg ,"Ext-RKSJ-V":_gba ,"Ext-V":_fegge ,"GB-EUC-H":_affc ,"GB-EUC-V":_ffgg ,"GB-H":_fdef ,"GB-V":_fbd ,"GBK-EUC-H":_eaad ,"GBK-EUC-V":_fdgc ,"GBK2K-H":_dfab ,"GBK2K-V":_egga ,"GBKp-EUC-H":_fgf ,"GBKp-EUC-V":_gdae ,"GBT-EUC-H":_bdbg ,"GBT-EUC-V":_gcc ,"GBT-H":_ggdd ,"GBT-V":_gcag ,"GBTpc-EUC-H":_bffa ,"GBTpc-EUC-V":_dacf ,"GBpc-EUC-H":_bbcc ,"GBpc-EUC-V":_fbab ,"H":_ebfc ,"HKdla-B5-H":_bfgdd ,"HKdla-B5-V":_fgcc ,"HKdlb-B5-H":_dfaa ,"HKdlb-B5-V":_dcag ,"HKgccs-B5-H":_acca ,"HKgccs-B5-V":_ceag ,"HKm314-B5-H":_fgb ,"HKm314-B5-V":_gfbf ,"HKm471-B5-H":_fegc ,"HKm471-B5-V":_cgff ,"HKscs-B5-H":_fge ,"HKscs-B5-V":_dbag ,"Hankaku":_abed ,"Hiragana":_ggcc ,"KSC-EUC-H":_cdfg ,"KSC-EUC-V":_deeb ,"KSC-H":_dddgd ,"KSC-Johab-H":_bacc ,"KSC-Johab-V":_gacd ,"KSC-V":_fbbd ,"KSCms-UHC-H":_eaeab ,"KSCms-UHC-HW-H":_deae ,"KSCms-UHC-HW-V":_efee ,"KSCms-UHC-V":_cgeg ,"KSCpc-EUC-H":_ddbd ,"KSCpc-EUC-V":_caad ,"Katakana":_edadf ,"NWP-H":_gbga ,"NWP-V":_beef ,"RKSJ-H":_caebb ,"RKSJ-V":_gfbba ,"Roman":_fdbc ,"UniAKR-UTF16-H":_dacd ,"UniAKR-UTF32-H":_febb ,"UniAKR-UTF8-H":_eagd ,"UniCNS-UCS2-H":_eaee ,"UniCNS-UCS2-V":_dcea ,"UniCNS-UTF16-H":_bfgce ,"UniCNS-UTF16-V":_cfbgb ,"UniCNS-UTF32-H":_bdbc ,"UniCNS-UTF32-V":_cafc ,"UniCNS-UTF8-H":_dcb ,"UniCNS-UTF8-V":_fcee ,"UniGB-UCS2-H":_ccda ,"UniGB-UCS2-V":_fdge ,"UniGB-UTF16-H":_eccg ,"UniGB-UTF16-V":_ccff ,"UniGB-UTF32-H":_fgbb ,"UniGB-UTF32-V":_dbb ,"UniGB-UTF8-H":_bcae ,"UniGB-UTF8-V":_ddge ,"UniJIS-UCS2-H":_gagc ,"UniJIS-UCS2-HW-H":_efbc ,"UniJIS-UCS2-HW-V":_fcaf ,"UniJIS-UCS2-V":_fbfg ,"UniJIS-UTF16-H":_dcbc ,"UniJIS-UTF16-V":_abdad ,"UniJIS-UTF32-H":_gdgb ,"UniJIS-UTF32-V":_daagb ,"UniJIS-UTF8-H":_dfge ,"UniJIS-UTF8-V":_ceaa ,"UniJIS2004-UTF16-H":_ggbg ,"UniJIS2004-UTF16-V":_bfecg ,"UniJIS2004-UTF32-H":_gcff ,"UniJIS2004-UTF32-V":_fdcd ,"UniJIS2004-UTF8-H":_bggb ,"UniJIS2004-UTF8-V":_bgccc ,"UniJISPro-UCS2-HW-V":_ceae ,"UniJISPro-UCS2-V":_abca ,"UniJISPro-UTF8-V":_dcdf ,"UniJISX0213-UTF32-H":_fbef ,"UniJISX0213-UTF32-V":_ebee ,"UniJISX02132004-UTF32-H":_gdaab ,"UniJISX02132004-UTF32-V":_ddcgc ,"UniKS-UCS2-H":_facf ,"UniKS-UCS2-V":_egba ,"UniKS-UTF16-H":_bada ,"UniKS-UTF16-V":_gdcf ,"UniKS-UTF32-H":_afead ,"UniKS-UTF32-V":_agbcf ,"UniKS-UTF8-H":_gdfa ,"UniKS-UTF8-V":_bcce ,"V":_eefee ,"WP-Symbol":_dgcga }; -var _ebe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x52\x4f\x8b\xdc\x20\x14\xbf\xfb\x29\xde\x71\x7b\x69\xd4\x4c\xb2\x19\x10\xa1\xec\xb0\x34\x85\xed\x96\x4e\xb7\x2d\x94\x1e\xdc\xf8\x1c\x64\x3b\x2a\xc6\x1c\xe6\xdb\x97\x67\x32\x53\xe8\x21\x9a\xdf\xbf\xf0\xcb\xd3\xe6\x61\x3c\x8c\xc1\x17\x68\xbe\xe4\x38\x1d\xb1\x80\xf3\xc1\x66\x9c\xe3\x92\x27\x84\x57\x3c\xf9\xc0\x98\x90\x60\xfd\x54\xae\xb0\x6e\xd3\xd9\x24\xc6\x28\x7f\xbc\xcc\x05\xcf\x63\x70\x11\xda\xd5\x67\x97\xb4\x79\x01\x9a\xaf\x78\xf2\x73\xc9\x17\xb8\xfb\x60\xe3\x2b\xbe\x03\x8b\x8e\xf8\xe7\x6c\x31\xfb\x70\x82\xbb\x4f\x26\x99\x20\x6e\xc2\x71\x49\xe9\x0f\x9e\x31\x14\xe0\x95\xc3\x60\xeb\xce\x9a\x87\x27\x93\x3e\x9b\x33\x42\xf3\xd1\x84\x37\xf3\xb6\x54\xbe\xd2\xdf\x31\xcf\x3e\x06\x10\xfc\x3d\xe7\xfd\x3f\xfe\xdb\x25\x21\x88\x2d\xff\x32\x1e\x9e\x9d\x9b\xb1\xc0\xd0\xaf\xdf\x6e\x7e\xbe\x8c\x07\xf8\x25\x40\x70\x90\x5d\xbb\x1b\x7e\x6f\xd6\x1f\x4f\xd1\xe2\x56\x80\x89\xf5\x77\xa6\x68\x71\x4e\x66\xc2\x6c\xc2\x09\x19\x80\xe2\x5c\x83\x7a\x7c\xd4\xd4\xf1\x3f\x95\x09\xbe\xa5\xbc\x5d\x19\x25\xc9\xdd\x39\x0d\xb2\x15\x4c\xf5\x84\x68\x59\x91\xd0\xa0\xee\x51\x83\xdc\xf7\x4c\x0d\x84\x86\x4e\x43\x2b\xef\x99\x1a\x7a\x42\x4e\x43\x27\x7a\xa6\xf6\x94\xa3\xa5\xdd\x49\xa6\xf6\xe4\xdc\x93\x26\x7b\xa6\x0c\x21\xeb\xb6\x1c\x92\xd3\x59\x0d\xdd\x4e\x30\xe5\x90\x10\x69\xc3\x50\xfb\x5e\x7b\xd1\x3b\x9d\xe6\x6d\xba\xd3\x92\x33\x86\x52\xcf\xb2\x0e\x91\xa6\xe0\x03\xde\xee\x45\x8a\x89\x52\xf5\xf9\x1b\x00\x00\xff\xff\xd5\x41\x84\x18\x43\x02\x00\x00"); -var _afca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4d\x6b\xdb\x4c\x14\x85\xf7\xf3\x2b\x66\x99\x77\x91\xd7\xf7\xce\xb7\x40\x18\x4a\x42\xc0\x94\xb4\xa5\xe9\x17\x94\x2e\x64\x69\x64\x04\xb5\x24\x64\x79\x91\x7f\x5f\xee\x1c\xc5\x85\x1a\x8c\xec\x47\x33\x3a\xd2\x73\x34\xb3\x7b\x38\x3c\x1e\xc6\x61\xd5\xbb\x4f\xcb\xd4\xbe\xe4\x55\xf7\xc3\xd8\x2d\xf9\x32\x5d\x97\x36\xeb\x63\x3e\x0d\xa3\x52\x6c\x74\x37\xb4\xeb\xdb\xdf\x72\x68\xcf\xcd\xac\x94\xcc\x7f\x79\xbd\xac\xf9\x7c\x18\xfb\x49\x5b\x8c\xeb\xae\xf3\x36\x56\xeb\xdd\xe7\x7c\x1a\x2e\xeb\xf2\xaa\xef\xde\x75\xd3\x31\xff\xa7\xbb\xdc\x0b\xff\xb8\x74\x79\x19\xc6\x93\xbe\x7b\x3f\x2d\xb9\xe1\xdb\x89\x97\xeb\x3c\xff\xce\xe7\x3c\xae\x9a\x0a\xcb\x63\x57\x8e\x6a\xf7\xf0\xdc\xcc\x1f\x9a\x73\xd6\xbb\x72\xad\x7b\xcc\xbc\xc7\xb0\x72\xf6\x5b\x5e\x2e\xc3\x34\xea\xea\x7f\xa2\xf0\x17\x7f\x79\x9d\xb3\xe6\xed\x2a\x3f\xbe\x1e\x1e\xf5\x4f\xd6\x4c\xda\x78\x47\xe9\xd7\xc6\xbf\x3f\x4f\x5d\xde\x32\xcb\x93\x3d\x4c\xd7\x71\xd5\x95\xb5\x16\x8c\xf1\x54\xed\xd4\xe5\xcb\xdc\xb4\x79\x69\xc6\x53\x56\x5a\xd7\x44\x44\x7b\x5d\x1b\xf7\xf4\xb4\x97\xdb\xfd\x67\x84\xb2\x71\x9b\x39\x74\x20\x6f\x33\x88\xfa\x7e\xaf\xe5\x43\xaa\x26\x06\x63\x30\xe3\x83\xaa\xc9\x80\x19\x30\xcf\x46\xd5\x64\xc1\x2c\x58\x0c\x49\xd5\xe4\xc0\x5c\x61\x4c\xc6\xa9\x9a\x3c\x98\x07\x33\x49\x32\x02\x58\x00\xf3\x56\x32\x22\x58\x04\x8b\x95\x64\x24\xb0\x54\x98\x21\x27\x19\x15\x58\x05\x66\x49\x32\x1a\xb0\x06\xcc\x07\xc9\x38\x82\x1d\xc1\x12\x4b\x46\x0b\xd6\x16\x66\x29\x4a\x46\x07\xd6\x81\x59\x23\x19\x19\x2c\x83\xf9\x24\x19\x3d\x58\x0f\x96\x1c\xa9\x9a\xe1\x8f\xe1\xcf\x51\x15\x54\xcd\xf0\xc7\xf0\xe7\xac\x37\xaa\x66\xf8\x63\xf8\x73\x81\x92\xaa\x19\xfe\x18\xfe\x5c\x0a\x4e\xd5\x0c\x7f\x0c\x7f\x9e\x8d\x64\xc0\x1f\xc3\x9f\xb7\x51\x32\xe0\x8f\xe1\xcf\x07\x2b\x19\xf0\xc7\xf0\xe7\x53\x92\x0c\xf8\x63\xf8\x0b\xec\x24\x03\xfe\x18\xfe\x82\x23\xc9\x80\x3f\x86\xbf\x10\xa4\x73\x86\x3f\x86\xbf\x50\x49\xe7\x0c\x7f\x0c\x7f\x91\xa5\x73\x86\x3f\x86\xbf\xe8\xa4\x73\x86\x3f\x86\xbf\x18\xa4\x73\x86\x3f\x86\xbf\x58\x49\xe7\x66\x7b\x63\xe1\x2f\xb1\x74\x6e\xe0\xcf\xc0\x5f\x72\xd2\xb9\x81\x3f\x03\x7f\x29\x4a\xe7\x06\xfe\x0c\xfc\xa5\x4a\x3a\x37\x6e\x5b\x01\xd1\xed\xb5\xae\x0c\x87\xb2\x0e\xde\xde\x77\xf9\x2d\x1b\xc6\x6d\x01\xb7\xd7\x65\xc9\xe3\x5a\xb6\x8b\xb2\x42\x65\x85\x0d\x63\xbe\x6d\x3d\xf3\x34\xcb\xac\xf2\xfd\x13\x00\x00\xff\xff\x1d\x46\xc4\xed\xa6\x04\x00\x00"); -func _cg ()([]byte ,error ){return _dc (_eeb ,"78ms-RKSJ-V")};func _ceag ()(*asset ,error ){_abbe ,_cgae :=_cefa ();if _cgae !=nil {return nil ,_cgae ;};_geag :=bindataFileInfo {_ag :"HKgccs-B5-V",_bc :615,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492370,0)}; -_gegd :=&asset {_cd :_abbe ,_dce :_geag };return _gegd ,nil ;};func _egg ()([]byte ,error ){return _dc (_ae ,"78-EUC-V")};func _dfge ()(*asset ,error ){_faeb ,_bdcad :=_feee ();if _bdcad !=nil {return nil ,_bdcad ;};_cgac :=bindataFileInfo {_ag :"UniJIS-UTF8-H",_bc :214153,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492958,0)}; -_gabag :=&asset {_cd :_faeb ,_dce :_cgac };return _gabag ,nil ;};func _fcbcg ()([]byte ,error ){return _dc (_gaagb ,"UniJISPro-UCS2-V")};var _aefe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\x4f\x6f\xdb\x30\x0c\xc5\xef\xfe\x14\x3c\x76\x87\xce\x92\x3d\x47\x0e\x50\x14\x58\x93\xa1\xf3\xa1\xeb\xb0\x36\xdd\x80\x61\x07\xfd\xa1\x02\x01\x8b\x2c\xc8\xf6\x21\xdf\x7e\x10\xe9\x79\x3b\x04\x2f\xf9\xe9\x3d\x8a\x8c\x58\x1f\x86\xe3\x10\xc3\x0c\xf5\xd7\x3c\xda\x17\x9c\xc1\x87\xe8\x32\x4e\xe3\x92\x2d\x82\xc1\x73\x88\x55\x25\x1b\x70\xc1\xce\x7f\x7f\x92\xd8\x8b\x4e\x55\x55\x3f\x3e\xbc\x26\x7b\xfb\xe9\x74\xb8\xfd\x0c\xcb\x84\x2b\x3d\x0c\xc7\x97\xeb\x34\xe3\x65\x88\x7e\x84\x96\xd3\x6e\x49\x6b\x05\x80\xfa\x1b\x9e\xc3\x34\xe7\x2b\xdc\x7c\x74\xa3\xc1\x77\xe0\xd0\x17\xfe\x9c\x1d\xe6\x10\xcf\x70\xf3\xf8\x20\x37\xfa\xb2\xa4\xf4\x1b\x2f\x18\x67\x90\xc4\x30\x3a\xd2\xaa\x3e\x3c\xe9\xf4\x45\x5f\x10\xfe\x6b\xe5\x8d\xce\xe8\xe8\x0d\xf3\x14\xc6\x08\x52\xbc\x17\x62\xf7\x8f\xbf\x5e\x13\xae\xb5\xaa\xfa\x34\x1c\x9f\xbd\x9f\x70\x86\x5d\x2f\xd8\xf3\xe3\x34\x1c\xe1\xa7\x04\x29\xa0\xe9\x5a\xd5\xfd\x5a\xad\xdf\x9f\x46\xb7\x05\x1b\xc1\x03\xd9\xe0\xb2\x8e\x67\xac\xee\xb4\xd4\xcd\x3d\xac\x02\x9d\xea\x08\xb5\x8c\x5a\x42\x1f\x08\x69\x46\xba\xa0\x7d\x4f\xc8\x30\xb2\xf7\xa0\x94\x60\x97\x63\xe4\xc8\xb5\x2f\xc8\x70\x79\xe3\x0b\xea\x9b\x82\x3c\x12\x2a\xa2\x94\xd8\x55\x77\xba\xd5\xb2\x20\x12\xe8\x54\x4f\xa8\x67\xb4\xa7\xa0\x20\x64\x19\x59\x72\xb5\x84\x90\x11\xd7\x52\x05\x19\x6a\xb5\x35\x86\x5c\x54\xde\x38\x46\x8e\x5c\x54\xbe\x34\xb4\x0a\x74\xaa\xb4\xda\x3a\x1a\x88\x44\x29\xc1\x88\x83\x8e\x82\x92\x9a\x70\x1c\x2c\x02\x3b\x41\xc8\x73\xd0\xd3\x8d\x7b\xba\xd1\x73\xd0\xf3\x3f\x41\x7d\xf1\xd8\x2d\x8f\x2d\x65\x59\x89\xed\x1d\xca\xf7\xb2\x89\xdb\x72\xd8\x25\x67\x8c\x33\xed\x21\xbd\x7f\x79\xc0\x10\x71\xdb\xf4\x34\xa6\x92\xa2\xcf\x9f\x00\x00\x00\xff\xff\x3c\x9a\xd2\xc8\x15\x03\x00\x00"); -var _ggfdb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\xcf\x6a\xdb\x4c\x14\x05\xf0\xbd\x9f\x62\x96\xf9\x16\x5f\x2d\xcd\x7f\x41\x08\x94\x64\x51\x17\x92\x86\xa6\x4d\x0a\xa5\x0b\x59\x73\xc7\x08\x6a\x49\xc8\xf2\x22\x6f\x5f\xe6\x1c\x55\x5d\x84\x1b\xfd\xac\x7b\x39\x23\x69\x66\x7f\x7f\x78\x38\x0c\xfd\xa2\xf6\xcf\xf3\xd8\xbd\xc8\xa2\x72\x3f\xa4\x59\x2e\xe3\x75\xee\x44\x1d\xe5\xd4\x0f\xbb\x5d\xad\x55\xea\xbb\xe5\xef\x25\x4a\x77\x6e\xa7\xdd\x6e\xff\xf4\xf6\xfc\xff\x27\x75\xbd\xc8\x7a\x7d\x7f\x78\x78\x79\xbf\x2c\x72\x3e\x0c\x79\x54\x86\x7d\xe9\x3a\xad\xbd\x4a\xed\xbf\xca\xa9\xbf\x2c\xf3\xbb\xba\xf9\x98\xc6\xa3\xfc\xa7\x92\xe4\xe2\x5f\xe6\x24\x73\x3f\x9c\xd4\xcd\xe7\x76\x6a\x87\x7a\xfb\xe1\xe5\x3a\x4d\xbf\xe5\x2c\xc3\xa2\x2a\x98\x0c\x09\x75\xb7\xbf\x7f\x6c\xa7\xa7\xf6\x2c\x0a\x39\x5e\xa1\xc0\x57\x99\x2f\xfd\x38\xa8\xba\xfa\x50\x55\xfe\x9f\x7f\x7b\x9f\x44\xd5\x6b\xf7\x8f\xef\x87\x07\xf5\xb3\x56\x75\xa5\xb4\x33\x26\xfc\x5a\xfd\xed\x71\x4c\xdb\x5d\x36\x32\x7a\xd7\xa7\xb9\x1d\x4e\xb2\xbb\xd5\xb5\xd6\x77\xaa\x14\x73\xa7\x42\x8c\x01\x64\x49\xf6\x4e\x45\xed\x23\xc8\x91\x5c\xa1\x60\x41\x47\xd2\x11\xa4\x41\x1d\xa9\x03\xd5\x85\x0c\xc9\x48\x19\xdf\x80\x6c\x0d\xb2\x0e\x84\x59\xd6\x93\x7c\x69\x8c\xbc\x2b\x90\x02\x66\x79\x50\x24\x45\x50\x03\x6a\x48\x0d\x08\x51\x6d\x0b\x72\x47\x8c\xc7\x5d\x9e\x51\x3d\xa2\x7a\x12\x73\x79\x46\x35\xa0\x44\x4a\x08\x51\x48\x6b\x29\x84\x12\x75\xa8\x76\xb7\xda\x6a\xa4\x47\x09\x4d\x1d\x41\x86\x64\x40\x0d\xc8\x91\xca\x1a\x1b\xcd\xc6\x40\x0a\xa0\x1a\xd4\x90\x1a\x50\x79\x84\xd6\x72\x96\xc5\x2c\x5d\x42\x58\x4f\xf2\x24\x0b\xe2\x78\xcf\xf1\x0e\xc4\xf1\x9e\xe3\x3d\x48\x48\x02\x2a\xaf\xd6\x31\xbd\x63\x7a\x1d\x41\x86\xc4\xf1\x0d\xc8\x91\x30\xde\x54\xa0\x40\xc2\x78\x53\x83\x1a\x12\xd2\x9b\x92\xde\x31\xbd\x63\x7a\x53\xd2\x3b\xa6\x77\x4c\x6f\x2c\x88\xe3\x99\xde\x38\x10\xc7\x33\xbd\xf1\x20\x21\x21\xbd\x41\xfa\xc0\xc6\xe0\x41\x25\x7d\xb2\x55\xa1\x64\x73\x21\x5b\xa2\x26\x4f\xf2\x58\xa3\x2b\xb3\x32\x97\x8d\x12\x62\x8c\x20\x4d\xe2\x4b\xab\x41\x96\x64\xb7\xad\x90\xb9\xec\x5c\x3e\xf2\xf5\x79\x65\x7e\xe4\x59\xcb\xb6\xa0\xac\x33\x29\x6f\xcb\xce\x06\x21\x50\xd6\xef\x3e\x3b\x2c\x08\x65\xdd\x30\xd9\xb1\xb1\x14\x6c\x18\x19\xd2\xb6\x37\xcb\xff\xe5\x1c\xda\xce\x85\xee\x3a\xcf\x32\x2c\x38\x85\x70\x00\x94\x4d\xdd\x0f\xb2\x9d\x70\xd3\x38\x95\x2e\xfc\xfd\x09\x00\x00\xff\xff\x92\x05\x36\x37\x0d\x05\x00\x00"); -var _dbdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x6f\x1c\xb9\x11\xbd\xcf\xaf\xe8\xa3\x73\x70\x44\xb2\xc8\x6e\x12\x08\x04\x04\x36\x82\xc8\x80\x93\x20\xb2\x9d\x00\x41\x0e\x3d\xd3\xa4\x32\x40\x34\x1a\x8c\xa4\x83\xff\xfd\x82\xaf\x86\xaf\xb4\xda\x5d\x60\xe1\x7e\x55\xc5\xfa\x22\xeb\x43\x73\xf3\xe9\xee\xf3\xdd\xe9\xf8\x32\xdd\xfc\xe3\xf2\x74\xb8\xaf\x2f\x53\x3b\x9e\xb6\x4b\x7d\x7e\x7a\xbd\x1c\xea\xb4\xaf\x0f\xc7\xd3\x6e\xe7\xc3\xb4\x1d\x0f\x2f\x03\xe2\x9f\xc3\xe3\x7a\xde\xed\x6e\xbe\x9f\x8e\x5f\xee\xee\x83\x73\xf1\xe3\xf7\x6f\x7f\x91\xf0\xf1\xaf\xd3\xeb\x73\xbd\x32\x3f\xdd\x7d\xbe\xff\xf9\xfc\x52\x1f\xef\x4e\xed\x69\x12\x55\xb2\xbd\x9e\xaf\x8a\xa6\xe9\xe6\x9f\xf5\xe1\xf8\xfc\x72\xf9\x39\x7d\xf8\xf3\xf6\xb4\xaf\x7f\x98\xb6\xda\x3a\xfd\xef\x97\xad\x5e\x8e\xa7\x87\xe9\xc3\x97\xf5\xbc\x9e\x3c\x19\xf7\xaf\xe7\xf3\xff\xeb\x63\x3d\xbd\x4c\x0b\x68\xf5\xb4\xe1\xdf\xdd\xcd\xa7\xaf\xeb\xf9\x6f\xeb\x63\x9d\x7e\xeb\xd4\x0f\x88\x40\xe2\x47\xbd\x3c\x1f\x9f\x4e\x93\xff\xa3\x73\xb3\x91\xbf\xfd\x3c\xd7\xc9\x5f\x35\xfd\xfb\xfb\xdd\xe7\xe9\x3f\x7e\xf2\x6e\x0a\x69\xf6\xf9\xbf\x57\xfa\xbf\xbe\x3e\x6d\x94\xf2\xce\x69\x1c\x87\xe3\x76\xf8\xdf\x7a\xd9\xfd\xc9\xe1\xbf\xbd\xbb\x9d\x72\x98\x8b\xe2\xe0\xbc\xbb\x9d\x96\x5c\x84\x38\x01\x07\xe2\x19\x38\x0d\x1c\x94\x9f\x89\x95\xbf\x0c\x2c\xa1\xeb\x5f\xa8\x4f\xa4\xe3\x3c\xb0\x2f\xdd\x9e\x64\x42\xdf\xe1\x4c\x18\x3a\x2c\x84\xd2\xe1\xd0\xed\x0f\xf1\x76\xca\xe2\x3d\x71\x02\x76\xc4\x33\xf0\xf0\xdd\xd7\x8e\xdd\x1b\xbc\x00\x47\xe2\x0c\x4c\x7d\xb5\x00\x0f\x5f\xa5\xec\x6f\x27\x1f\x7c\xcc\x24\x1c\x40\x98\x8d\xb0\xa9\xc4\x42\x42\x05\x21\x39\x12\xda\xbb\x23\xab\xd3\x23\x85\x04\xaf\x47\x66\x12\xc2\xfb\x23\xa2\x12\x89\x84\xa8\x04\x93\x48\xef\x8f\xcc\x2a\x41\xc7\xd6\x1e\xfb\x5b\x81\x0c\x6c\xfc\x02\x6c\x4e\xac\xef\x35\xee\xbb\xc0\x12\x88\x0f\xc0\x9e\x78\x03\x1e\x81\x27\x77\xb8\x9d\x96\xc8\x87\x93\xdc\x06\xbc\x10\x57\xe0\x99\xb8\x01\x0f\x7b\x09\x0f\x33\x39\x21\xf6\xc0\xd4\xe7\x03\x70\x24\x16\x60\xea\xf3\x11\xfa\x3c\x71\x02\x36\x7d\x33\x70\x20\x5e\x80\x4d\x5f\x06\x2e\xc4\x05\xfa\x4d\xdf\x0a\xcc\x78\xfd\x1e\xd8\xf4\xf5\xf8\x53\x30\x7b\x1b\x30\xe3\xf7\x15\xd8\xe2\x69\xc0\xb4\x1f\x10\x7f\x60\x3c\x01\xf1\x07\xfa\x13\x10\x7f\x60\xbe\x50\x98\x49\xa8\x0f\x85\x99\x84\xf6\xc3\x02\x4c\xff\x42\x06\x36\x7b\x88\x8f\xc5\x96\x02\xe2\x13\xb3\x8f\xf8\xc4\xec\x21\x3e\x4f\x7b\x02\x7f\x3d\xe5\x25\x22\x1f\xd4\x27\xb0\xe7\x78\x3e\x42\x3e\x32\x9f\x11\xf1\x45\xe6\x33\x22\xbe\x48\x7f\x23\xee\x97\x95\x96\x22\xf4\xb3\x8c\x52\x44\xfc\x91\xf6\x23\xe2\x8f\x66\x0f\xf1\x27\xe6\x23\xc2\x9f\x34\xf4\xcf\xfd\xbe\x72\x08\x9e\xb8\xbf\xe7\xe0\x0b\x71\x05\xdf\xe4\x1b\xf0\xf0\x77\x71\x5a\xb5\xcb\x30\xb8\xf4\xba\xce\xc1\x5d\x15\x88\xc3\x83\xc8\xe3\x81\x89\xc3\x83\x28\xa3\xec\xc5\xe1\x01\x94\x51\xb1\xe2\x90\x90\xe2\x33\xb1\x00\x53\x1f\x02\x2e\xc3\x01\x71\x08\xb0\x8c\x00\xc4\xc5\x02\x1c\x06\x9e\x71\x7e\x3c\x48\x71\x59\x31\xfd\xc9\xaa\x2f\x11\xab\x3e\xfa\x97\x2b\xf0\xd2\x67\xda\x18\x2a\xbb\x1c\x7f\x67\xca\x88\xeb\x9d\x33\x87\x85\xb6\x0b\x92\xbb\xd0\x37\x34\xc1\x59\xc4\x08\x08\x36\x30\xd8\x55\x9d\x63\xb0\x2b\x9c\x13\x06\xbb\xc2\xb9\x37\xe7\x11\xac\xd0\xe0\x01\xe7\x85\xc1\x56\xc5\x0c\xb6\xaa\x3e\x06\x5b\x55\x1f\x83\xad\x08\x56\x78\x19\x4d\x2f\x6f\xd8\x0b\xad\xdd\x4e\x41\x5c\x1a\x0e\x8a\xeb\x73\x55\x46\xdf\x17\x71\x7d\xee\xc9\x28\x17\x11\xd7\x5b\xb6\x2f\xb3\x09\x60\x78\xd1\x43\x71\xb3\x0a\x78\x12\x16\x25\x24\x12\xb2\x12\xec\x48\x51\x82\x19\x59\x95\x30\x93\xb0\x07\x61\x31\xab\x07\x25\x04\x12\xf4\x15\x52\x00\x6d\xb3\x44\x7a\xe1\xe1\x66\x34\x3e\x66\xac\x18\x56\x2f\xb3\x11\x32\x04\x98\x18\xaf\x4e\x66\x5a\x44\x21\x49\x62\x14\xbd\x91\x65\xe1\x55\x4b\x40\xe6\x22\x83\x0a\x9a\x39\xe6\x5e\x7a\xa7\xeb\x04\xd3\x30\x23\x06\x13\xc0\x65\x46\x26\xae\xb7\xb2\x2c\xac\x34\x41\x2b\x2b\x6f\x3c\xd8\x54\x21\x5d\x10\x8f\x03\x74\x41\x50\xdb\xce\x51\xa3\xe8\xed\x46\x62\x78\x30\x9a\x93\x88\x2c\x38\xe0\x4d\x20\x2b\x81\x3e\x48\x41\x94\xf4\x41\x56\x15\x30\x15\x7b\x08\x98\x4f\x07\x15\x60\xa2\x65\x53\x02\xbd\x8c\x5e\x09\x3c\x12\x91\x59\xf3\xaa\x77\x88\x2c\xc9\xb0\x3a\x15\x8c\x80\x2a\xb2\xcb\x8e\x2b\x12\xc5\x28\x22\x1e\x8b\x39\x1d\x71\x95\xac\x12\x49\xa8\x62\xbb\xba\xa4\x79\xb3\x3c\x25\x51\x82\x49\x44\x25\x30\xb3\x09\x3e\x46\x9e\x58\xb0\x83\xb9\x37\x04\xcd\x83\x39\xb1\x68\x1e\x22\x1f\xd8\x52\x95\xc0\xf7\xb0\x34\xbc\xb0\xab\x8a\xd6\x1c\xba\xd1\x28\x9b\xd6\x1c\x5a\xfb\x42\xbe\xd7\xdd\x67\xcc\xfa\xd6\xb4\x55\x8f\xbb\x69\x4d\xf0\x80\xc6\x6e\xd2\x9a\x80\xef\xa8\x40\x1a\xba\x85\x1b\x38\xa9\x7c\x22\xd6\x6e\x32\x13\xeb\x79\xc3\xf5\xed\xa8\x68\x0d\xdd\x2b\xe7\xf2\xab\xd6\x2b\x0b\x5b\xef\x65\x3d\x3d\xd4\xeb\xdc\x91\xbe\xe1\x8f\x4f\x8f\x36\x9b\x6c\x29\x23\x2f\xb9\x7e\x57\x31\x73\xfe\xf6\xf9\x35\x3e\xbb\xb9\xb8\x70\xb4\xf6\xde\x35\x3e\xb1\x45\x65\xdb\xea\x66\x63\x61\x81\xe2\xa6\x9f\x7a\xbb\x1a\x9f\x05\x2c\x53\xb8\x1a\x6b\x0f\x96\xad\x1d\x42\x56\xc0\x84\x17\x3a\xdf\xcb\x74\x7c\x62\x59\xf2\xb6\x5c\x78\xb2\x04\x7b\x02\xe7\x72\x92\x64\x2c\xac\x00\x8e\x6e\xf4\x1a\x1c\x9f\xd8\x6e\xf8\xa7\x42\x12\xb3\x85\xcb\x4c\xd1\x16\x07\x3b\x85\xfa\x48\x6c\x9e\xce\x0d\x37\xc4\xf5\x74\x2e\x39\x73\x80\x30\x1b\xe2\xb0\xc9\x16\x47\x96\x8f\xc6\xc2\x58\x72\x1c\x6b\x7e\x36\xd6\x82\xbb\xb4\x91\xe8\xdf\x68\x2c\x78\xb0\x6c\xba\xae\x24\xf2\xca\x8c\xc7\xce\xc9\xd7\x8c\xd5\xd0\xb5\x58\x8c\xbe\x8d\xd7\x21\xbe\x15\x1d\xd0\x42\xde\x6a\xbc\x06\x9e\x95\xa4\x85\x2d\xd8\x82\x7c\xb1\xd6\xd9\x6b\x6b\x34\x7e\xd1\xd9\xc3\xca\xf5\xab\xf1\xb4\x05\x67\xea\xec\xdb\xd0\x68\xcf\x5e\x79\x36\x11\xb2\xf1\x74\xba\x14\xeb\xed\x66\x4f\x9c\x76\x6d\x36\x06\x89\xc6\x4b\xca\xb3\x16\x6f\xe7\xa2\x9e\x0b\xd6\x06\xc5\x78\xb3\xf2\xac\x05\xee\x8d\xa7\x9d\x29\x58\x43\xb6\x18\x92\xea\xb4\xb9\x99\x92\xf1\x54\xe7\xb8\xbd\xd6\xf8\x56\x5a\x43\xe5\xe4\x42\x56\x6a\x64\xcd\xd7\x3f\x24\xfd\xb5\x2b\x68\x13\x00\x78\x5c\xcf\x3b\xfe\xde\x70\x78\xbd\x5c\xea\xe9\x05\xbf\x6e\xe0\xc7\x84\x69\xab\xed\x78\xaa\xfc\x19\xe5\xfc\x74\xee\xa7\xf0\xff\x2f\x01\x00\x00\xff\xff\x7d\x93\x70\xb7\x72\x11\x00\x00"); -func _eba ()([]byte ,error ){return _dc (_fcf ,"Adobe-Japan1-UCS2")};func _bdb ()(*asset ,error ){_abb ,_aedf :=_agg ();if _aedf !=nil {return nil ,_aedf ;};_fg :=bindataFileInfo {_ag :"Add-RKSJ-H",_bc :12790,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491088,0)}; -_bab :=&asset {_cd :_abb ,_dce :_fg };return _bab ,nil ;};var _dae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbc\x4b\xaf\x27\xbb\x75\x9f\x3d\xef\x4f\xb1\x87\x7e\x07\x7e\x55\x17\x92\x45\x02\x1b\x0d\x24\xbe\xc0\x42\x60\x27\x88\x9c\x0b\x10\x64\xc0\xab\x72\x80\xa8\xcf\x41\xeb\x68\xa0\x6f\x1f\xf0\x79\x4a\x8a\x2d\x38\x38\x83\xc6\xbf\xc9\x2a\x92\xab\xc8\xdf\xba\x2f\xee\x5f\xfd\xcd\xaf\xff\xf6\xd7\xdf\x7e\xf8\xf9\xe3\x57\xff\xe9\xfb\x8f\xfd\x37\xf3\xe7\x8f\xf5\xc3\xb7\xf1\x7d\xfe\xfe\xc7\x3f\x7c\xef\xf3\xa3\xcd\xdf\xfe\xf0\xed\xcb\x97\xf3\xfa\x18\x3f\xf4\x9f\xff\xd4\xe4\xa7\xff\xae\xfe\xf4\xe5\xcb\x1e\xff\x9b\x3f\xfe\xfe\xe7\xf9\xbb\x5f\x7f\x5b\x3f\x7e\xdc\xbe\x37\xfe\xf0\xd3\xfb\xee\xc7\xc7\xaf\xfe\xf3\xfc\xed\x0f\xbf\xff\xf9\xfb\x1f\x3f\xfe\xea\xdf\x8d\x1f\xdb\xfc\xff\x3e\xc6\x5c\xbb\xff\x3f\x7e\x1f\xf3\xfb\x0f\xdf\x7e\xfb\xf1\x57\x7f\xf3\x4f\xbf\x39\xff\xdc\xfd\x9b\x3f\xfc\xf4\xd3\xff\x9e\xbf\x9b\xdf\x7e\xfe\x48\xf4\xcd\x6f\x83\xdf\x2f\xbf\xfa\x9b\x7f\xac\x3f\xfd\x53\xfd\xdd\xfc\xf8\xd5\xdf\xfd\xf3\x3f\xfc\x87\xbf\xfe\xf7\xf1\xaf\xff\x81\x27\x3c\xf8\xaf\xf3\xfb\xef\x7f\xf8\xf1\xdb\xc7\xf5\xff\x1f\x47\xf9\xbf\xdd\xff\xfc\xc7\x9f\xe6\xc7\xf9\x4e\xf0\xdf\xff\xcb\xaf\xff\xf6\xe3\x7f\x9c\x1f\xe7\xf1\x71\xc5\x98\xaf\xff\xf9\xf6\xff\xb7\x7f\xfc\x71\xcc\x8f\xc3\xd6\x25\xe9\xfd\xc7\x31\x7f\xff\x53\xed\xf3\x7b\xfd\xf6\xdb\xf9\xe5\xe3\xe3\xf3\x38\xbe\x7e\x7c\x7c\x7c\xe6\xe3\xeb\x6e\xe5\x27\x1c\x5f\x3f\x3e\xff\xfe\xef\xfe\xfe\xef\xbe\x6e\x1a\xff\xe2\xfd\x2f\xa7\xd3\x7c\xfb\xf1\xe7\x31\x97\x7d\xcc\xf0\x79\xae\xaf\x1f\xe7\x1e\xf1\x2f\x1f\x7d\x39\x8f\xe3\x5d\xf7\x87\xd1\xff\x57\xfd\xfe\xe5\x33\x97\x70\x7f\xfd\x38\x9f\xe7\xcc\x34\x3a\x8d\xeb\xa6\x31\x76\xe3\x0e\xcf\x6e\xc4\x93\xc6\x91\x76\xa3\x26\x1a\x67\xa0\xd1\x68\x64\x26\xa8\x4e\xf0\x30\xa6\x3a\x41\xb6\x31\x7d\xc2\x6b\x7d\x39\xf5\xb1\x1b\xa3\x38\x35\x4f\x46\xdd\x8d\x7c\x46\x1a\x4e\x7d\xfa\x5a\xf7\x09\x14\x0c\xa7\x3e\xcf\xdd\x98\xd2\x76\x42\xf5\xbc\x78\xed\x62\xcc\xbc\x7d\xc2\x6c\x8b\xa9\xef\x6b\x8f\xa9\x7b\x5f\xcf\x27\x87\x48\x83\x09\xce\xe4\x93\xe1\x93\xbd\x4e\x8d\x92\xc3\x1e\xd4\x38\x6d\x6c\x42\xeb\x73\xda\x28\x34\xd8\x90\x8b\x0d\xa9\xcf\xc3\x93\x78\xd0\x70\x82\xc8\xd4\x4f\xf3\x35\xc7\xf8\x3d\xf1\xa2\xc1\xa2\x97\xb4\x3d\xae\x13\xf7\xf7\xd4\x9a\x6d\x30\x75\x4b\x36\xa0\xba\xb1\xce\xe5\x27\xb4\xf7\x35\xa8\x6e\xc5\x27\x50\xdd\xdf\x75\x68\x4c\x27\x48\xd0\x36\x99\xe0\x7e\xf6\xa2\xed\xdd\x90\x7c\xd3\x88\x4c\x50\x02\x0d\xc7\xe4\x44\xc3\x45\x4b\xa4\xe1\xa2\x1c\x70\x0b\x2e\x5a\x7c\xcd\xcf\x06\x14\x2d\xf8\xd9\xc5\xd7\x24\x27\xef\x3d\x68\x31\x7b\xf4\x2c\x1a\x99\x20\x3b\x81\x1b\x7f\x1f\x50\x10\xc5\x01\x1b\xdf\xd2\x7b\xda\x4c\x90\x9c\xe0\xda\xaf\xf5\xb4\x8f\xbe\x1c\xd7\xde\xd1\x0e\x76\xca\x01\x94\x3b\xd8\xc9\x25\xed\xd7\x06\x5f\x5a\x0e\x36\x64\x30\xe6\xb9\xef\x4c\xc3\xd9\xee\x42\x43\x58\x9e\x17\x0d\xc9\x09\x27\x8d\x69\x83\x27\x1e\xfd\x1d\x6e\x1a\xef\x6b\xac\xe3\x69\x97\xcc\x18\x4f\xfb\xe6\xb0\x46\x8d\x36\x12\x8d\x77\x51\xc8\xa9\x2e\x7a\xf1\x9a\xa7\x7d\x83\x9d\xd1\x85\x32\x70\x19\x42\x39\x1c\xfb\xc9\xe4\xb0\xf2\xf1\xec\x27\x73\x53\x1d\x4e\xd6\x9c\x10\x1d\x4e\xbe\x7a\xa6\xcd\x72\xe7\xc3\xf8\x09\xd1\xf9\x78\x22\x8d\x66\x23\xd1\x98\x5f\x3f\x2e\x0e\x67\xd6\xf7\xa5\x87\x46\xfb\xfa\x11\x2e\x0e\x6a\xb6\xf0\xf5\x23\x94\x83\x99\xc0\x5d\x3e\x60\xeb\xd9\x8b\x0d\x86\xf7\x0d\xe9\xc4\xbe\xcc\x71\xec\x11\xf0\xf1\x9c\x92\x9b\x6d\x2c\x1b\xd0\xbb\x5c\x30\xef\x89\x57\x7c\xbe\x7e\xdc\x37\x0f\x16\x30\x09\x42\x6b\x45\x17\x01\xa8\x2b\xbe\xe3\xf7\x27\xae\xf4\xd8\x88\x34\x18\x73\x1f\x85\xc6\x1e\x73\x9c\x50\xb9\xf6\xf1\xe5\xcc\x67\xad\xe7\x9d\x2c\x21\x5d\x5f\xa9\xf8\x6f\xc9\xc9\xd5\x0e\xdf\x64\x58\x7f\xbf\x81\xf9\x7a\x62\xa5\x64\xe3\xa5\x81\x65\x7b\xa5\x51\x0e\x1a\x7b\x07\x4b\xf0\xff\x1b\x0d\xe9\x96\x86\xf1\xbe\xc5\xa7\x22\xb1\xf2\x51\xd8\x83\xd5\x6d\xf0\xa9\x6b\xef\x67\x08\x08\xb6\xb5\xf6\x31\xc5\xbd\xa1\xe5\x88\x12\xb3\x99\xb5\x1c\x69\x7c\xfd\xb8\x8f\x2d\xf0\xca\x01\x4e\x43\x48\x89\x86\x3b\x55\xf2\x6e\x80\xd3\x00\x0b\x94\xe3\x3d\xe7\x52\x76\xc3\xf3\x3c\x0f\x66\xde\x6c\x13\x8f\x83\x07\xeb\xfc\xfa\x11\x9f\x7d\x04\xe5\x4c\xd1\x97\x4e\x1a\xd3\xc6\xb5\x1b\xcf\xdb\xb8\x77\xa3\x6e\x4e\x0d\xe9\xb6\x71\xf9\x64\x53\x79\xb6\x4d\xcc\x15\x1c\xd3\xdf\x25\x37\xcd\x57\x08\x7b\xcc\x73\x6d\x32\xaf\x14\x7c\x92\x68\x0c\x1b\x9b\xe6\xab\x9d\x1b\xa6\x81\xff\x5e\xfb\xbf\x7b\x8d\x8b\x99\xd2\x0d\xf1\xd7\xd8\xab\x1f\xe9\xa2\x31\x5f\x8a\x99\x76\xbd\xa4\xec\xef\xba\x93\xab\xb3\x95\x77\xad\x36\xf6\x87\xdd\xdd\xd7\xb6\x00\x28\xf7\x3b\xc1\xd6\x31\xe5\x9e\xef\x98\x40\xa3\xd9\xd8\xe4\x07\x64\x65\x3e\xb7\x92\x2a\x61\xcb\xca\x27\xdc\x7b\xe6\x20\xd0\xce\x73\x53\x1f\xc0\xc5\x91\xa2\x8d\x77\xfc\x26\x2d\x06\x3f\x72\x0b\xb7\x12\xa3\xd4\xf0\x05\x51\xa4\x9f\x5b\x43\x94\xd8\x5d\x66\x4b\xba\x12\xb7\xfe\x4c\xe7\x96\xe2\x25\xb1\x7d\xb1\x30\x3e\xa1\xb3\xf3\xb9\x45\x60\x49\xe9\x9d\x6c\xd3\x9c\x86\x1b\xbb\xc5\x4c\x49\x73\xaf\x19\xc3\x66\x8e\x92\x80\xdc\x79\x6c\x09\x56\x72\x7a\xd7\xdc\x4f\x32\x6a\x2d\x3e\x1c\x53\x06\x40\xf1\xe1\x64\x72\xbd\x6d\x3c\x34\x96\x0d\xc6\x6c\x49\xb1\x85\x16\xb3\x35\xb7\xf0\x6d\x24\x5f\x2b\x34\x1e\x9f\x30\xb5\x9a\xec\x8e\x4c\x8d\x26\x8b\x0f\xa7\x93\x9b\x9f\xf0\x3e\x69\x8a\xc0\x8b\x46\xf7\x09\x14\x70\x6e\xf1\xe1\xa8\x32\x62\x33\xa3\xda\x4b\xee\xc1\x27\x50\x20\x0f\x9f\x89\x09\x86\x6a\xc0\x09\x64\x48\xa4\x45\xc9\xaf\x0d\xe2\x04\x43\xbb\x25\x31\xc1\xf4\xb3\x39\xd2\x3c\xdd\x1d\x4e\x31\xbb\xa3\x0f\xa7\x90\xd7\x41\x83\x53\xcc\xcb\x23\x29\x7c\xe9\x92\x50\x8e\x34\x2f\x09\x85\xc1\x32\xa7\x10\x1f\xce\x37\xc3\xf8\x19\xd9\x5b\xf2\x52\xf7\xa4\xbd\x68\x09\x97\x7b\x10\x68\x48\x0e\xa7\x5d\xc0\x41\xbe\x38\x9f\x82\x82\x88\xcf\xe5\x6b\xc9\x27\x4e\xa0\x05\xb0\x45\x57\x29\xc1\x93\x03\x14\x25\x7a\x72\xa9\xd0\x50\x79\x3d\xc7\x2f\x48\xc9\x52\x92\xc3\xb6\x2e\x2a\x25\x09\x92\x0b\x22\x10\x13\xf1\xb9\x58\xf7\x79\x29\x62\xdd\x27\xdb\x60\x29\x64\x46\xbe\x80\x42\xa9\x6e\x10\x1c\x54\x40\x59\xbe\x38\xfd\x52\x5d\x27\x38\x26\xfa\x84\xa9\x5f\xdb\x34\x3a\xc6\x45\xef\xbd\xc3\xa5\x79\xc6\x0f\xdb\xf0\xe2\xef\x86\xd0\x26\xa1\x08\xaa\xd2\xd5\xe1\x0f\xeb\x74\xed\x4c\xa0\x50\x86\x2a\xf8\x61\xd1\xe1\x3a\x99\xa9\x5f\x5c\x3c\x50\x3d\x5f\xaa\x59\x47\x79\x8e\x71\x5b\xca\x94\x6a\x8f\x48\x89\x82\x82\x2a\x65\xbe\xb3\xf9\x04\x76\xc0\xec\x2d\x65\xca\x0e\xd9\xa9\x97\x07\x4e\x63\x89\xe6\x7b\x37\x6a\x78\x3f\x21\xd1\x40\xa4\x60\xad\x94\x1a\xc4\xd2\xb6\x2f\x4a\x8d\xf2\xd3\x36\x77\x4a\x8d\x52\xcd\x91\xd4\x84\x7e\xbb\x63\xa1\x71\xfa\x9a\x8d\x97\x36\x1b\xd2\x06\x07\xd4\xe4\xc9\x6d\x9d\x56\xea\x6b\x2f\x15\x1b\xd5\xd7\xa0\x2d\xbd\xac\xca\x3a\x8f\x30\x95\xb6\x07\x98\xde\xcf\x4d\x43\xab\xa8\xd8\xf0\xe4\xb6\x8d\x55\x6a\x75\xe3\xe1\x9a\x5a\x1d\x83\xf0\xaf\xaf\x25\x55\x6c\x14\xd7\x81\x82\xea\x31\xc2\x4f\xb5\x79\x24\x81\xa9\x9b\xac\x8a\x88\xd3\x6e\xce\x37\xca\xaf\xbe\xd2\x26\xb0\x8e\xd2\xe6\x9d\x0d\x69\x13\x9f\xe0\x6c\xdd\x27\x7c\x42\x13\x21\x9e\x42\x7f\xa7\xe6\x4b\x87\x8c\x1f\xd8\x6b\xb4\x51\x0e\x88\x84\x3a\x5e\x72\x68\xbc\x70\x89\xd0\x26\x5c\x02\xb0\xac\xd3\x03\x46\x60\xd6\xe9\x5e\xc3\x18\x75\xbe\x66\x22\x53\x4f\x45\x02\x5c\x52\x5f\x99\x02\x97\xd4\x25\xc8\x61\x8c\xba\xfc\x84\xb8\xc7\x68\xd3\xc7\x87\xd3\x6e\x2f\x76\xb6\x53\x50\x5a\x74\x51\xc4\xa2\xf6\x79\x7c\xd2\x4d\x03\x15\x16\xe0\x1f\xed\xf3\xf8\x24\x1b\xcd\x27\x91\x86\x78\x4b\x36\x86\x4f\x36\x39\x4d\x88\x85\x6d\xf5\x94\x86\x09\x7a\xa9\x5d\xdb\xab\x5b\xc0\x41\xdb\xf2\x20\x16\xc4\x50\xc3\x36\xbd\x8f\xdb\x21\xce\xec\x64\x8f\x33\x17\x1b\xa2\xc5\x99\xab\xe0\x85\x67\x9b\x66\x47\x28\x3e\x81\xce\xc8\x91\xb6\xea\x6c\x30\x56\x7b\xb5\x56\x66\xb6\xe6\x6c\xc0\xad\x61\xaa\xe4\x08\x9b\x36\xf4\xee\x51\x92\x0d\xb6\x20\x23\x97\x9b\x5a\x3c\x9e\x36\xba\x4f\xc2\x2f\xc9\xcb\x86\x7c\xc9\x11\x8d\xd4\xfa\x2b\xdb\x21\xaf\xbb\x2e\x66\x45\x03\x30\x39\x62\x56\x34\xc4\x50\xcc\xb0\x53\x53\x93\xc7\xd3\x46\xf4\x09\x5f\x8e\x8b\x1c\xb3\x1b\x3c\xe6\xd7\x8f\xe7\xcc\x3e\x58\x3e\x80\xd4\xc9\x99\x44\x34\x4d\xc3\x91\x8e\x59\x6a\xa6\x6b\x5e\xbe\xe6\x9a\x52\xa3\xae\xcb\x52\xa3\x2d\x14\x11\x22\x6d\x62\xd7\x66\x64\x40\x9b\x7e\x1b\x20\x6d\xcb\x09\x9c\x6d\xe3\x32\x64\x44\x40\x5b\x08\x94\x88\xb4\x6c\xf8\x35\x39\xc2\x4c\x1d\xed\x76\x06\x64\x55\x47\xbb\xe5\xf8\x36\xde\x31\x85\x06\x18\xcd\xef\x18\x30\x1a\x91\x48\x5d\x5c\x67\x64\x62\x8f\xf7\xd7\x8f\x24\x5f\xf4\xe8\xa6\x21\x0e\x7a\x74\xd3\x10\x07\x3d\x26\x9f\xd8\xe8\x36\x98\x39\xba\x9d\xe8\x95\x0e\x92\x23\x5e\x7d\xe9\x08\xcb\x1c\xe1\x73\x7c\xd0\xa8\x95\xd5\x93\x34\xc3\xe6\x5d\xc1\x19\xdf\xf1\xf9\xeb\x47\x2e\x60\xb7\x27\x49\x7e\xe7\x92\x64\x38\xb6\x23\x37\xef\x70\x3a\xb1\xc4\x6c\xff\xad\xf4\xf4\x12\xe3\x93\xe9\x13\xbe\x66\x73\x52\xce\x2e\xf9\x78\x34\x7e\x33\x06\x68\xcc\xc9\x86\xfb\xec\x32\x72\x52\x74\x32\x39\x29\x83\xf0\x5e\xdd\x1a\xb4\x79\xd7\x36\x8e\xc8\x82\x0e\x27\xc5\x0c\xc7\xf7\x2a\x69\xc8\x82\xde\x64\x04\x0c\x94\xbe\x25\x65\xc2\x07\x2f\x7d\x0b\xca\x4b\x41\xdb\xbb\x24\x63\xb3\x76\x90\x1e\x0b\x7c\xd4\xb7\xd0\x7c\xf2\xed\xff\x9d\x0a\x7e\xef\xd3\x93\x81\xc5\xfb\x94\x16\x58\xbc\xbf\x38\x43\x2d\x77\x8c\xa5\x58\xc4\xc9\x72\x19\xb4\xaa\x6e\xff\xa3\xde\x18\xca\xbf\x02\x82\x06\xa0\x89\xb8\x66\x65\x04\xc7\x14\xc7\x48\x1a\x70\x18\x51\x56\x29\x36\x4e\x9f\x44\x1a\xd1\x46\xa2\x21\xa1\x38\x5a\x63\x7b\xb1\x25\x25\xdf\xaa\xdb\xa3\x75\x95\x37\x88\xc1\x99\x19\x83\x88\x05\x00\x0d\x41\x93\xe0\xee\x91\x34\xe7\x39\xce\xf1\x68\x09\x20\xca\x86\xc7\x59\x80\xd3\xf0\xd0\x0a\x10\x32\x84\x90\x13\xfc\x30\x38\xb4\x58\x80\xc0\x50\xfc\x25\xf8\x61\xe0\xcf\xc6\x82\xb0\x19\xed\xb6\xc1\x04\x18\xed\x39\x05\x1b\x7e\x1a\xea\xc0\x80\x44\x4e\xc1\xc6\xe3\x13\x3e\x01\x91\x99\x13\x8a\xcf\x50\x45\x2c\x58\x95\x43\x9b\x1b\x5b\x66\x18\x1f\x48\x60\x78\x28\x3e\xcb\x73\xfd\x92\x90\x1c\x4a\xbf\x84\xea\x1b\xfa\xc4\x09\xba\xa7\x52\x21\x41\xf7\xd4\x43\x4a\x90\x3a\xdf\x6d\x84\xba\x89\x9d\x92\x0e\x14\xe9\x94\xdf\x12\x8c\x60\x88\x24\x1d\x4c\x3d\x09\xe9\xa5\x83\xcd\x9a\x8f\x8b\xa2\x92\x26\x46\x4b\xd2\x5f\x9e\xba\x72\xe9\xb1\xe1\x04\x92\x63\x24\x25\x01\xcb\x89\xb6\x4a\x87\xb4\xc9\x63\x09\x8c\x12\x63\xd9\x4f\x20\x54\xb3\x36\x65\x26\xf0\xec\x6e\x1f\xbc\x33\x33\xe4\x3d\x3a\x90\x3c\xab\x9b\x0d\x92\x09\xc6\x9c\x89\x50\x4e\x99\xba\x58\x29\x43\x9a\xa6\x4d\x42\xe8\x4f\x4c\x9b\x74\x48\x5a\x93\x34\xa9\xd1\x97\x4c\x08\xa3\x37\x68\x43\xf8\xa2\x4c\xf7\xfd\xc1\xce\x99\xc3\x2d\x28\xd0\xb6\xed\xd0\x72\x03\xf1\xb9\xde\xb7\x18\x8f\x91\x91\xf5\xd7\x26\x47\x95\x14\x86\x73\x33\x66\x3a\xa3\x0f\xa6\x0f\xf6\x90\xe5\x19\x3e\xf8\xdc\x0b\x61\x9e\x1f\x94\xd6\x42\xca\xde\x11\x0d\xbd\xb0\x42\x83\x47\xbd\x9e\xc3\xd7\xf6\x77\x2e\x3f\x5a\xd7\x6b\xb5\x97\x80\x42\x03\x44\xe8\x7a\xad\xbe\xc7\xa4\xcb\xa9\xfb\xe9\x13\x66\xdb\xba\xfb\x2e\x8f\x6f\x75\x1f\xf0\x96\xca\x55\x97\x6a\x0d\x02\x4a\x04\xb1\xca\x9a\xef\x93\xfd\x69\x6b\x15\x1b\xf1\xcb\x67\x3d\x82\xa4\xed\x6f\xab\x87\x8a\x0a\xa7\xa7\xbe\x71\x1a\x9c\x9e\x7a\x80\xcf\x80\x00\xa8\x87\xa1\x0d\x3c\xa0\x7a\x68\x0b\x6d\x02\xea\x21\xa0\x70\x80\xea\x81\x5d\x93\xee\xb7\xe1\xae\x6f\xcf\xa6\x1e\xd5\x65\x6e\xc6\xe8\xd7\xe2\xcc\xd4\x63\x48\xcd\xd6\xae\xf5\xd0\x3c\x38\x32\xa4\x0d\x8e\x30\x30\x5e\xab\x13\x4f\xa2\x1e\x5a\x9d\x47\x80\x98\x3f\xd9\x96\xcc\xbc\xde\x58\xe9\x1e\x7f\x6e\x1d\x7e\x6d\x91\x55\xcf\xad\xc2\x09\x36\x57\x24\xee\x15\x36\x55\x6d\xc6\xeb\xeb\x47\xc0\xf3\xe9\xd7\xde\xe2\x48\x78\xbb\xdf\x1b\x8a\x11\x7d\xd7\xef\x6d\x64\x47\x94\x62\x0f\x5b\x70\xc6\xb0\xad\xae\x9e\x36\x75\xe9\xd8\x2b\xf5\xac\x89\x42\x40\xbe\x67\x2c\xdf\x4c\x40\xbe\xbf\xde\x34\x01\xf9\x5e\xb6\xb6\x4f\x17\xff\xdd\xd2\x28\x1d\x5b\xb8\xf7\xba\x89\x4b\xe7\xde\x80\x91\xf6\xe1\xe6\x67\x33\xc4\x78\x36\xe3\x66\xc2\xd0\xa3\xee\xd5\xf2\xb9\xc5\xda\x40\xbe\x14\x18\x60\x36\xe6\x3f\xca\x3e\xcb\xd9\xb7\x09\x75\x9e\xc7\x16\x08\x73\x12\xf4\xb9\xf8\xb8\x75\x20\xf1\x4f\x30\xb7\x0e\x0c\xc1\x93\x78\xc1\x3a\xd1\xe0\x57\xda\x32\x7f\x5d\x48\xa1\xeb\xd9\x3c\xbc\x02\xa0\xbd\xe2\x9e\x7a\x25\xc0\x70\x95\x6d\x97\xae\x82\xc0\x04\xf5\xff\x52\x2e\x86\xf0\x17\x62\x71\x15\x0e\xfa\x4e\x1b\x35\xab\xc0\xc5\x37\x42\x7b\xe1\xd8\x5d\x84\xcd\x16\xde\xdb\x85\xa6\x5f\xf8\x2a\x4f\xe6\x95\x3d\xf8\xde\xd2\x71\xd5\x0d\x8b\xeb\xdc\x3a\x6e\x19\xd1\x4f\xc7\x71\xed\x46\x14\x16\x5b\xb6\xad\xa6\x95\xf1\xf0\x5d\xad\xbe\x4f\x78\x6d\xcb\x99\x9b\xb8\xdc\x7a\xad\x65\x1c\x86\xf5\x1a\xb7\xf8\x08\x0b\x03\x30\x11\x18\x5b\x6d\x29\x8c\xb6\x9d\xb9\xb4\xd2\x32\xfe\xc2\xea\x5b\xe1\x66\x30\xb0\x7a\x14\xe2\x5b\x50\xaf\xd7\x96\x7a\xb6\x59\xb1\xb4\x85\x12\x3e\xf1\xea\x2f\xf3\x6c\x6d\xb3\xfa\x23\xf8\xb7\xd0\x5c\x7d\x03\x2d\x84\xc0\x90\x97\xaf\xb7\x29\xb3\xfa\x36\x6d\xef\x73\xab\xf8\xd5\x5f\xec\x3f\x36\xfc\xc8\x07\xc2\x38\x7d\x92\x35\x4b\x13\x21\x3f\x5b\xca\x2e\x93\x01\x19\x3f\x64\xa1\x06\xd3\xbd\xb9\x6d\x0d\x76\xe2\x62\x8b\xc6\x16\x44\xf7\xb5\x1d\x97\x35\xfe\xb4\x06\x8d\x3d\xed\x7d\x6d\x41\xbc\xc6\x2b\x3b\x69\xc0\x2f\x6f\x50\x64\xcd\xf7\xab\xb6\x88\x5e\xd3\x84\x03\x5a\x6a\x11\xc8\xbf\x1f\x36\x72\x6a\xe1\x3d\x5b\x79\x2c\x14\xc6\x95\x19\xbd\x6d\xff\xe7\xc8\xff\xef\x78\xcd\x9b\x2b\xbc\x8e\xaf\x1f\x9f\xa8\xa3\x2f\x7f\xca\x35\xee\x93\xf8\x4a\xb2\x24\xee\xbe\x6d\xb6\x7e\x6e\x3a\xc8\x99\x10\xff\x87\x75\xf6\xcf\xa4\x8f\x20\xf8\xb3\x85\xd3\x67\x7e\xf0\x2d\x8a\x11\xeb\xec\x7c\x19\xb9\xf7\x24\x22\xf1\x79\xf3\xca\x67\xce\xc6\x89\x71\xbe\x72\x76\x6c\x26\x11\x92\xf3\x66\x89\x9c\xb7\x26\xdc\x3f\x55\x0e\x27\xd3\xe8\x7c\xc5\x6c\xdd\x63\x22\x30\x24\xfb\x8a\x7d\x85\xbe\x49\x1f\xf6\xda\x83\x8c\xce\x65\x6f\xee\x67\x2e\xa6\xd6\x10\xc8\xb9\xb8\xae\xe1\xa3\x07\x68\xe4\xd2\x5c\xc3\x58\x11\xdb\x9f\xcb\xe6\xd5\xfd\x43\xb8\xe4\x21\x3d\x51\xba\x63\xcd\xca\x3c\x7c\x2f\x0c\xb9\x7f\x5c\xa3\x98\xa8\x74\xbe\x61\xa6\xcc\xf4\xe9\x90\xbe\x69\xc6\xed\x84\x96\x2d\x75\xf7\x8f\x39\xb0\xcb\xbc\x66\xb5\xef\xcd\x82\xfa\x5e\xa7\x6f\xbd\xef\xd1\xb7\x95\xee\xfe\x79\xd3\x93\x66\x31\xef\xdd\x67\xf0\xe7\x39\x13\xa9\x44\xf7\xc5\x18\xd0\x73\x3e\x64\x14\x63\xb3\x8f\x28\xc6\x99\xcd\x73\x2e\xfa\x4c\x8d\x9d\xe4\x25\x6a\x82\xbe\x8a\xe2\x7d\x88\x52\xe6\xfa\x5c\xf6\x05\xb3\x9a\xe6\x3b\xb3\x7d\x26\x03\x39\xa3\xea\x3e\xd7\x6a\xea\xf0\x32\xad\x59\xec\x23\x4a\x73\xdd\xac\x51\xf9\xb6\x8a\x65\xfa\x5c\xb7\x19\x4f\xd7\x68\x26\x24\xc9\x9e\x10\x8c\xf9\xcc\x06\x5b\x9e\xcb\x0c\x6c\x77\xbe\x6e\xaa\xd1\xef\xed\x7e\xef\x70\x2c\xf9\x99\x3a\x92\x7d\x6f\x8e\xd6\x3e\x69\x36\xc1\x0c\x67\x66\x54\xc2\x67\xae\xd3\xb1\xe0\x94\x10\xcc\x67\xae\xc4\xdd\x9e\x6c\xb6\x78\x39\xdf\xbb\xf7\x8f\x09\x53\xbe\xb7\x19\x9d\xbd\x48\xe5\x34\xcf\xa3\x05\xc7\x66\xdf\x1b\xf4\x89\xd3\xab\x90\xdd\x8c\x8e\x45\xf4\x3e\x38\xd2\xb9\xc5\x68\x9f\x34\x17\x93\xa5\xec\x95\x21\x95\x27\x9b\x5a\x4d\x97\x7d\xbc\x67\x7e\xae\x25\xf6\xc5\x00\xc9\x53\xc8\xb1\x37\xcf\x43\x59\xfd\x94\x9b\x35\x3a\x38\x6d\xee\x41\xe2\x3c\x9a\x38\x6d\xb8\x54\x0f\x16\x77\xee\xf2\xe0\xeb\xf3\x9a\xfd\x46\x36\x7f\x66\x5d\xc7\x6c\x06\xb9\xbb\x86\x1e\x64\x2e\xe4\xe9\x7b\x45\x96\xf4\xfe\xf6\x6d\x6c\x74\xcf\xed\x15\xcf\x85\x8c\x75\xf7\xdc\xba\x61\x78\xbc\x9a\xdc\x07\x7b\xd5\x31\x4e\xca\x61\xbe\x77\xb2\xf7\x7a\x79\xe5\xb8\xc9\x8c\x06\xf6\x60\x44\xe5\x50\x34\xad\x0b\xcd\xaf\xcf\x85\x93\x93\x87\x34\x8f\x77\xaf\xc0\xcb\x48\xcd\xbe\x61\x9f\x63\xc1\xc1\x30\x36\x59\x1e\x73\xb9\x8f\x7d\xc5\x3e\xde\x7b\x86\x7d\xee\x33\x32\x62\xb8\x07\xc3\x58\x75\xe1\xcc\x47\x4d\xf6\xb9\x2e\xb2\x13\x27\xed\x33\xeb\x6a\x3d\x85\x33\x47\xad\x7c\xe6\x61\x0e\x0a\x7d\x9c\x71\xa5\x3e\xf3\xd0\xdc\x44\x7b\xe6\x21\xef\x0f\x3d\xdd\x03\x9a\xa7\x67\x34\x4d\xa5\x91\xfe\xc9\x53\x39\xa9\x27\x14\xc8\xe8\xe4\xe9\xf7\x4e\x23\x0b\x18\x36\x19\xbd\xb3\x7f\xa6\xa9\x63\x73\xc2\xce\xc7\x1e\x84\x33\x91\xdd\x75\x0f\x74\x7f\xc2\xf9\x26\x92\xbb\x7d\x24\x2a\x4f\x13\xbc\xee\xc1\xac\x8e\x65\x5f\xa6\x38\xd0\xc1\x09\xca\x9c\x29\xef\x4f\x1c\xd1\x70\x16\x73\xcb\xd1\xbe\x87\xec\xaf\xc9\xee\x06\x5e\x66\x37\x23\x7c\xb0\x6e\xaf\xf6\x75\xfa\x90\x9d\x53\x0c\x4d\x62\x0b\xe1\x22\x9f\x3e\x87\xb4\x80\xa1\x70\xb9\x07\x62\x68\xa2\xf8\x03\xf6\x6c\x9e\xcb\xef\x5d\xd0\x4c\x5a\x21\xcf\x25\xcd\xcb\xf7\x48\xa9\x2f\xf7\x79\x61\xfe\x85\xeb\x31\x6d\x5d\xed\xf3\x3d\xf8\x72\x89\xbf\xd7\x83\xb9\x39\xcb\x95\x7c\x0f\xac\x05\xeb\x58\x96\x58\x5b\x8f\x99\x6b\xf8\x63\xa9\x6b\x17\xb8\x0a\x84\xea\xf3\x72\x4f\x17\x31\xcb\xb0\x6d\x73\xb5\xfc\xbf\x51\xe4\xf3\xaa\xf9\xbc\x9a\x43\xb0\x2d\x83\x85\x14\xab\x67\xfb\x8a\xe9\x6b\x33\xd6\x1c\xff\x1a\xf6\x21\xce\xd6\x00\x26\x8b\x78\x60\xb0\x9a\x67\xa9\xae\x16\xee\x5e\x30\xc8\x8e\xe7\xf3\x59\x0e\x82\x6b\x21\xe0\x41\x61\x1a\xef\x1f\xde\x0b\xc4\x51\x0e\x44\x57\x39\xa2\x90\x25\xca\x7a\xa0\x72\xca\x01\x14\x43\x20\x90\x71\x3c\xce\x07\x9b\x85\x40\x40\x09\x87\x68\xff\x98\xd9\x7e\xcc\x5f\x9f\xf4\x09\xb1\x40\x42\x06\x8f\xe8\xb3\x1c\x42\x27\x10\xd6\x3d\x80\x4e\x39\x88\x2a\x85\x48\xb8\xe9\x40\xac\x94\x83\x1c\x5d\x30\xa0\x88\x9b\xb3\x7f\x58\x23\xe2\xd9\x9f\x7e\xdb\x49\x3c\x26\x44\x82\x02\x67\x4a\xf6\x71\x84\x09\xbf\xf0\xe4\x08\xcb\xf9\xbc\x7d\x99\xcc\xf7\x4d\x1f\x21\x92\x90\x08\x74\x9e\xdd\xf9\x50\x61\xc1\x28\xc5\x89\x28\x2c\xa7\xeb\x26\x82\x6e\x97\xeb\x5e\xf8\xc8\xc1\x4c\xda\x15\x22\x7d\x7a\x90\xe6\xb6\xae\xf4\xf6\xb1\x7f\xc6\xeb\xaf\xcd\xc3\x9f\xe5\x72\xaf\x1e\xe7\x73\xaf\xae\x6a\x1f\x6e\xfe\x55\xa1\xf9\xda\x6a\xf7\x62\xf7\xae\x06\xc5\x97\xd4\x19\xe0\xbe\xa4\xee\xc2\xa1\x0c\x99\xe8\xfc\x35\xd8\xa9\x4b\x86\xca\x7c\xd9\x05\x43\x95\x0b\xe3\x39\x50\xc3\x54\xae\xe5\x7c\x7e\x59\x26\x1a\x76\xfb\x65\x77\x72\x0d\x4e\xf2\x46\x59\x95\x5b\x8a\x0b\xde\xfd\x2d\xc5\x37\x91\x91\x60\xc0\xee\xae\xa0\xe0\xc6\x89\x0f\xc6\xcd\xee\xce\x1a\xb7\xb4\x20\xa8\xcb\x2d\x2d\xb7\xf1\xea\x83\xac\xd9\x3d\x5d\x83\x08\x62\x3c\x08\x95\xdf\x18\x55\xe5\x86\xbe\x78\x70\x92\x41\xfa\x82\xb9\xd3\x83\xe4\x64\xd8\xde\xd1\x67\x09\x26\x2c\xf1\x4e\x4b\x80\x41\x4b\x30\x04\x87\x6f\x5d\x82\x34\x07\x38\x2b\x52\xd8\x51\x42\x67\x8d\xe0\x1a\xf8\xa3\x25\xba\x46\x34\x43\x77\x12\xe7\x88\x18\x69\x25\x9a\xa8\x3b\x09\xb1\x44\x8c\xb4\x12\xe1\x98\x88\xa1\x55\x62\x72\xec\xf3\xf6\x31\xd6\x75\x23\x0a\x36\x5e\x84\x23\x63\x87\x13\x22\x06\x68\xb4\x4e\x22\x0e\x68\x8e\xd2\x82\x40\x2a\x49\x5a\x92\x59\x64\x4a\xa0\x4a\x12\x69\x09\x03\x25\x52\xd5\x54\x12\x86\x74\x49\x44\xd1\xa2\x09\xf3\x84\x22\x29\x49\x5a\xee\xcc\x7c\xd2\x92\x4c\x56\x98\xa6\x4f\xc3\xf9\xc8\x12\xc4\x00\x36\xd2\xe4\x7b\x93\xd9\xa9\x3f\x15\x21\x0c\xfb\x98\x2f\x10\x8a\xd5\x39\x29\x3a\x1d\x46\x09\x8a\x4e\x47\x79\x7c\xcf\x00\xb6\x4e\x47\xc9\x7e\x87\xa1\xc6\xbc\x35\xe1\xfe\x31\xe3\x0f\x17\x65\x14\x62\xc9\xa6\xa5\x93\x63\x95\x38\xf9\x31\x05\x46\x9a\x28\x3f\xd1\xbe\xb7\xe2\x82\x94\x3e\x46\x6e\xc9\x6f\x4d\x07\x1c\x98\x95\x4c\xaf\x63\x73\x12\xc0\xd6\xb1\x29\xf9\x2d\x7d\xb9\xad\x8f\x90\x96\xfa\xbe\x67\xfd\x83\xeb\x36\x4b\x00\xa2\xc5\x0e\xc3\x3e\x73\x51\x44\xc7\x72\x83\x53\xb3\xc1\xab\x53\x9a\xbb\xdf\xf1\x66\x1e\xc1\x41\xee\xd2\x67\xce\x11\xe3\xbf\xe4\x71\xdb\x67\xa9\xc5\x63\xdf\xfb\x9e\xd9\x44\xe7\x1b\xdd\x3e\xe9\x23\x44\x48\x04\x66\xff\xf8\x1d\x9c\x6f\x9e\x7e\x87\x61\x79\xb1\x9b\xa7\xf3\x4d\xab\x31\xb2\xb5\x10\xd3\x3e\x4b\x49\x8a\x45\x0c\x8e\x5d\x26\x6f\x93\xc5\x10\x7e\x87\x01\xc4\xb3\x58\x9e\xc0\xba\x3a\x7c\xf9\x7a\xcb\x1c\xb2\x7d\xd3\x3e\xf2\xea\xd1\xf7\x8c\x57\xc8\x0b\x05\xa3\xb9\x14\x53\x93\x78\xf1\xa5\x44\xf6\xb4\x18\x4b\xb8\xde\xba\x04\xdf\x33\x2a\x7c\x59\x02\x20\x9e\x8b\x3e\xf8\x45\x2e\xa1\x28\xd9\x8b\x19\xeb\x8b\xe0\x78\x79\x92\x7d\x8f\x7d\x96\x36\x14\xfb\xa4\xef\x2d\x50\x80\x07\xad\x87\xcd\x17\xfb\x5c\x94\xba\xa5\xf9\x6d\xec\x41\x51\xee\x16\x03\x9a\x97\x55\x19\xcd\xb1\x4d\xfa\x9e\xf3\x17\x95\x7d\x29\x4d\xf2\xfb\x3b\x84\x6d\xeb\x6f\x1f\x47\x43\x81\x5f\xc1\x51\xfd\x2c\xc5\x30\xef\x55\xac\x64\x08\xf6\x49\x02\x8a\xbd\x0c\x49\x10\x12\xf8\x29\xa5\x08\x09\x4b\x6f\xf3\x6d\x9d\x89\xa2\xb5\x18\x44\xc1\xa6\x29\x65\xf9\x9e\xd5\x2d\xf8\xb0\xa5\x2c\xb7\x5c\x9b\x95\x7a\xdc\x52\x3d\xea\x6a\x9c\xe5\xbe\xed\xe3\xb8\x6a\x34\x45\x6f\x29\x00\xf6\x55\xb1\x14\x37\x5b\x58\x84\xa3\xba\x7f\x2c\xa8\x48\x16\x20\x00\xe3\x6a\x14\xff\x26\xd8\x5f\x3d\x2e\x6b\x6d\xb3\x75\x20\xfa\xa6\xa5\xca\xa2\x8a\xae\x5a\x7d\xcf\x78\x84\x95\x17\x55\x95\x53\x3d\x2e\x8a\x9d\x4b\xf5\xb8\x2c\xca\xcd\x6f\x75\x42\x63\x4f\xab\x41\x75\xc5\x5e\x95\x1d\xab\x19\xdd\xc0\xbe\x54\xd9\x11\xd7\xf3\xcc\x14\xf5\x95\x3a\x8a\x7d\x6f\xa2\xde\x3e\xbf\xc3\x7d\x0e\x40\x16\xa7\x74\xff\x00\xbb\x70\x5b\x38\xe0\xbe\x98\x0b\x0b\x96\x81\x4c\x20\x56\x8d\x92\x06\xab\x34\x54\xc5\x15\xd6\xcb\xc1\x82\x08\x6c\xdb\x52\x4d\xbe\x06\x6b\x1c\x96\xeb\x7a\x46\x01\x5a\x9a\x67\x64\x71\x70\x56\x7c\x53\x0f\xbc\x7f\xac\x0d\x78\xeb\x09\xd8\xab\x37\x7c\x18\xde\x4a\x82\x68\x9f\x34\xa3\x9e\x5b\x9c\xf6\x99\x7b\x4f\xd6\x08\x70\x96\xcd\xca\x33\xd5\x41\x53\x2c\xb7\xb7\x72\x24\xd9\x17\xec\x93\x96\x62\x15\x41\xb1\xcf\xef\x20\x4f\xd7\x34\xbe\x5a\x55\xa4\x23\xce\x5a\x95\x16\xeb\x1e\x43\xb1\x4e\xc0\xef\x30\x5f\x46\x8c\xb4\xb4\x3a\xec\x33\x23\x48\x1a\xa4\x29\xaa\x9b\x38\xd0\x88\x6c\x4d\x9a\xdf\xea\x11\x92\x2f\xad\x55\xfb\xcc\x4d\x62\x7a\xe8\x63\x97\xa6\x7a\xb6\x94\xb2\xa9\x9e\x9b\xbc\x6a\x9a\xac\x0d\xdf\x1b\x66\xe3\x1d\x4b\xdc\xa2\x34\xc5\x77\x3c\x4d\xe4\x67\xfb\xde\x3a\x04\xbe\x6d\xb8\xf7\x16\x3c\xc7\xcb\x44\xbc\x7b\xf5\x66\x50\x2f\xb3\xfb\xee\xd5\x34\x8f\x6b\xf9\x80\xa2\xba\x4d\xeb\x03\x2e\xd3\xf3\xd2\xb2\xde\x62\x00\xd6\x50\x7c\x37\x31\x14\xc9\x56\xb5\x25\x2d\xcb\x2c\xb3\xc5\x1b\x4b\x5a\x2c\x66\xcb\x56\x08\xa8\xda\xdb\x9b\x99\x35\x35\x2f\xae\x7a\xf0\x7b\x2f\xb3\xfa\xc1\xbe\x64\x0a\x9f\x0c\xb4\xb8\xea\xe1\x4d\xcb\x93\x3c\x56\x46\x18\x2b\x8e\x19\x15\xdb\xe3\x63\x9f\xdf\xf6\xa6\xef\xa7\x7d\x56\x55\x04\x33\xef\xae\x91\x5c\xc3\xfc\xb9\x62\xbe\x3f\xce\x17\xcd\xa3\xdf\xf6\x59\x35\x80\xcc\xe9\x9a\x05\xfd\x71\xac\x49\x71\x4d\x80\x6e\x99\x4a\x36\x03\xae\x7c\xe9\x56\xb2\x65\x72\x4c\x5d\x4c\xf6\xfa\xce\x67\xaa\x3d\xd9\xe7\xf9\x92\xe5\xea\x35\xdb\xe7\x9e\x3e\x26\xde\xfd\x5e\x0b\xdb\xb2\xa9\x71\x55\x49\xb7\x42\x39\xa2\x4a\x7a\x73\x5d\x2b\xdb\xb2\x89\x72\x65\x53\xb7\x3e\xd2\x22\x8d\xae\xd9\xfc\xc6\x64\x22\xbc\xd5\x35\x29\x7a\xb7\xc8\x00\xb9\xd6\x87\xf3\x69\xce\x95\xc3\x3e\xf7\xef\xc5\xa4\x55\x02\x62\xd2\xd8\x4d\x24\xde\x54\xba\x32\xac\x4f\x53\xc9\xc8\xbf\x3e\x3d\xa3\x69\x1a\xfb\xb2\xcf\xfd\xd3\x3c\x2c\xd6\x50\x88\xc9\xbe\xde\xf7\xf8\xde\x55\xed\x13\x07\xd9\xb4\x3d\xf4\x0d\x65\x53\x7c\x93\xfc\x8f\x7d\x96\x41\x64\x73\xfd\xd5\x3e\x4b\x0b\xd0\x79\x23\x74\xfb\x2c\x1d\x30\xbb\xad\x99\x3b\xde\x4a\x91\x62\x02\x3f\xdb\x27\xaf\x52\xc9\x30\x34\xcd\x87\xa5\x4d\x09\x19\x31\x34\x29\x86\x66\x41\x62\x0f\x86\x6e\xc2\x78\xf3\xc0\xf0\x82\xf1\xa1\x62\x7c\x28\x13\x73\x2b\x43\xd9\xe4\xa5\x80\x58\xe2\x2f\xfb\xf6\x65\x54\xc9\xaf\x92\x1f\x9d\x7a\xda\x67\x4a\x1c\xb6\x18\x42\x62\x34\x13\xdb\x96\x3e\x34\x3f\xc9\xac\x29\xc5\xfa\x65\x34\xe7\x6b\xce\x47\x55\xc7\xd0\xf2\x1c\xfd\x2d\x1a\xa0\x82\xa0\x3b\x9f\x21\xaa\x64\xf5\x42\x97\xfc\x37\xa7\x6c\x75\x82\x22\x6e\x74\x3f\xe9\xb1\xcf\x6d\xd3\x1c\x49\x96\x41\x10\x7b\x28\x43\xb1\x57\x80\xfb\x50\x4d\x0e\x33\x97\x84\xda\xca\x50\x14\x8e\xf1\x16\x13\x40\x8b\x1e\xcd\xd0\x8b\xe0\xca\x45\x19\x8a\x1a\x43\x63\xc9\x92\x78\x43\x63\x65\x12\x9a\x4d\x07\x62\x6f\x2a\x6a\x66\xf4\x3d\xa0\x38\xf5\xae\x66\xf2\x3d\xac\xb8\xa9\xb8\x98\x98\x19\xe9\x88\x96\x19\x24\xfb\x3c\xea\x64\x81\x01\xdf\x36\xcd\x51\xa7\x64\x99\x80\x63\xf5\x22\x12\xa6\x87\x21\xb4\x62\x0e\x27\x11\xaa\x2c\x86\xcb\xca\xac\xae\x6b\xf5\x82\x1e\x83\xd7\x31\xd2\x01\x7b\x1b\x42\x2b\xb3\xbe\x29\x7e\x68\x16\x07\xb3\x9a\xc2\x7f\x2c\x28\xe0\xdc\x66\xb3\xb2\x01\x16\x9d\xaa\x2b\x43\x6d\x39\x65\x0b\x07\xfc\x0e\xe2\x25\x89\xab\x20\x65\xaa\xc2\xe6\x8b\x0d\x4b\x02\xf4\x4a\xe6\x5b\xee\x01\xfb\x4c\xb1\x31\xcd\xaf\x1f\x16\x32\x88\x8d\x69\xf5\x75\xc2\xea\x9f\xdd\xef\xe8\xee\x1f\xa6\xd6\x14\x1b\x44\xf0\x76\x1f\xfb\x22\x36\xe6\x8b\x0d\x3c\x01\xc3\x79\xc5\x70\x5e\x4e\xc5\xf2\x04\xcf\x68\xf8\x6d\x88\xb3\xa9\x48\x9a\x9a\xaf\x0f\xe6\xd7\x14\x2f\x73\xf8\x6d\xd2\xa2\x98\x9a\x62\xe8\xc1\xb3\x98\x62\xc8\x50\x60\x32\x2e\x65\x28\xb0\x4c\x4c\xa8\x64\xf5\xfe\xd4\x84\x32\x3c\x98\x2c\xd5\x9f\x7a\x2f\x73\x99\x8f\x3b\x7c\xaf\xd8\x57\x2d\x76\xa0\xa2\x40\xfc\x2d\xf1\x77\x22\x06\x96\xf8\x5b\xd4\x0a\xa4\x93\x32\xce\x15\x8a\x7d\x8e\x25\x5a\xb0\x54\x7f\x4b\xf5\x67\x79\xfb\x52\xfd\x79\x0d\x26\x9d\xa8\xd3\x95\xd8\xfb\x25\x4e\xad\x96\xe7\x6a\xcc\xfe\x79\xcb\x2b\xac\xa8\x70\x8d\xe4\x58\xb0\xb6\x1e\xc7\x5a\xa1\x72\x5a\x12\x21\x26\x97\x85\x26\x27\x67\xb4\xc4\xcb\x42\xbd\x24\x3d\xb3\xa5\xdc\x58\x60\x23\x5d\x98\x23\xab\x83\x35\x2f\xc2\xa4\x4b\x9a\xe5\xf3\x65\x41\xc9\x65\x09\x85\x91\x81\xe5\x19\x5d\xb7\xd5\x17\xd2\x37\x7d\xcf\x6f\xd3\xf4\x5d\xec\x73\xd2\xe3\x5a\xaa\x83\x25\x9f\x5f\x89\x5a\x0b\xd4\x41\x3d\x30\x1f\x12\xa1\xd9\x7a\xe0\x39\x56\xe3\x93\x89\x34\x4f\x35\x3e\x59\x0f\xf9\x1c\x17\xa8\x1e\xf0\x79\x3d\xde\x24\xf3\x41\x51\x04\xb1\xb4\x7a\xc0\xbf\x89\x8b\x8f\xf5\x78\x9c\xcf\x0a\x20\xae\xa0\xd5\x83\x10\x78\x35\x3e\x99\x6e\xeb\x3e\x50\xf7\xd5\x6b\x36\xe9\x7e\x2b\x36\x1c\x4b\x3c\x36\xdd\x16\x5e\x74\x69\x01\xe3\x89\x0a\xeb\x7a\x0c\xbf\x63\xf8\xde\x63\x9f\xef\x0d\xd7\x78\xac\xd3\x38\xe8\xc3\x43\x4f\x94\x6a\xd7\x83\xbd\xaa\xc7\x74\xdd\x42\x3d\x08\x6a\xb7\x1e\xba\x09\x54\x8b\xd7\x03\x37\xa1\x1e\xba\x09\xd4\x48\xd7\x63\x49\xb3\x66\x1a\x65\xcf\xd5\x18\x68\x3d\xb7\x16\xdc\x0c\x58\xcf\xad\x08\xf7\xcf\xde\xa8\xdb\x81\x27\x2e\x76\xf5\x1e\x10\x95\x2e\xdc\x02\xfa\xac\xa7\xec\x72\x51\x2f\x92\xed\xa1\x56\x64\xcf\x64\x98\xb3\x12\xaa\xa4\xc0\xbf\x1a\xa8\xac\x84\x0c\xb9\xea\x57\x0d\x18\x56\x82\x83\x61\x03\xa9\x1a\x1a\xac\xf7\x16\x50\x54\x18\xd7\x1b\xf1\x54\xef\x2d\x91\xb0\xcd\xab\x61\xbc\x4a\x78\x0e\x2d\x5e\x0d\xce\x55\x02\x71\x84\x7d\xaa\x61\xb8\x4a\x28\x8d\xfb\x71\xd5\x40\x5a\x25\x40\x46\xcd\x6b\x35\x3c\x56\x09\x71\x95\x0d\xed\x6a\x80\xab\x12\xa4\x2a\x00\xcc\x10\x55\x35\x44\x75\x6c\x1d\x59\x8d\x50\x55\x23\x54\xe7\x55\x7e\x51\x9b\x57\xe3\x57\xd5\x38\x12\xb9\xd2\x6a\x18\xa9\x7a\xf5\xe3\xa2\x7a\xc7\xc8\x48\x35\xca\x70\x6f\x91\x5b\xcd\x66\x57\xbd\x6a\x1c\xbb\xaa\x53\x5d\xdf\x5a\xfa\x6d\x04\x54\xfd\xdd\x5a\x5f\xa5\xb8\x07\xea\xd6\x55\x53\x84\x69\x7b\x4d\xd5\x0c\x61\xd5\x4a\xa7\x7c\xbc\x6a\xa4\xd7\x37\xc9\x17\x37\x88\xb5\x6d\xab\x25\x97\x05\x9e\x18\xbe\x45\x1a\xec\x3a\xb6\x18\xac\x5a\x39\x15\x35\x7c\xa1\x95\xaa\x5a\xb8\x7a\xd7\x90\xeb\x89\x55\xc5\x57\xc9\xaf\x5c\x17\x7c\xa3\xac\xac\xc8\xa2\x8b\x28\x41\x55\x14\xd5\xb5\x59\xe4\xa2\x92\xb3\xae\xe1\x5b\x6f\xe1\xd1\xf5\xe5\xb3\x99\x88\x68\x30\xe1\x15\x36\x7f\x34\x73\x04\xed\xf0\xda\xdc\xb6\xf0\x9a\x70\x6e\x20\xf5\xa2\x26\xb2\x09\xd5\x26\x30\x51\x32\x4d\x64\x36\x91\x49\x9a\xbf\x09\xcd\x06\x34\x2f\x2e\xdc\x36\xb1\xd9\xc0\xe6\x45\x4d\x66\x13\x9c\x8d\x98\xf2\x7d\x6c\xbc\x36\xb1\xd8\xc0\xa2\xf5\x32\x4d\x30\xb6\x20\xcc\xf7\xe6\x34\xd1\xd8\x40\xe3\x4d\xa2\xa9\x09\xc7\x06\x1c\x6f\x84\x4a\x13\x8f\x0d\x3c\xde\x61\x6f\x4e\x13\x90\x0d\x40\xde\x61\x6f\x4e\x13\x91\x0d\x44\xde\x54\xcb\x36\x11\xd9\x40\xa4\xe5\x42\x4d\xc8\x35\x20\x77\x53\x04\xd6\x84\x5c\x03\x72\xf7\xb3\x3d\xe4\x26\xe4\x1a\x90\xbb\xf3\x76\xb8\x9b\x90\x6b\x40\xee\x2e\x71\x0f\x14\x72\x0d\xc8\x05\xec\xa6\x26\xe4\x1a\x90\x0b\xd4\xfb\x37\x21\xd7\x80\x5c\xe0\x92\x52\x13\x72\x0d\x7f\x38\x5c\x69\x0f\x6c\xc4\x4d\x1a\x28\xf4\x22\x67\x13\x85\x0d\x14\x06\x44\x64\x13\x85\x8d\x2c\x70\x08\x6c\x8e\x28\x6c\xa0\x30\x44\x36\x47\x14\x36\x50\x18\x70\x0f\x9a\x28\x6c\x33\x9e\x5f\x3f\x02\x35\x9b\x6d\xc6\x9b\x2e\x06\x52\x11\xd9\x04\x66\x03\x98\x81\x9b\x2e\x4d\x60\x36\x80\x69\xd6\xa3\x09\xcc\x06\x0a\x03\xd9\xf8\x2e\x0a\x3b\x28\x0c\x65\x6b\x96\x2e\x0a\x3b\x28\x8c\x54\xa3\x76\x51\xd8\x41\x61\x3c\x29\x64\x13\x85\xfd\xac\xf5\xeb\x47\xbc\xb6\xb7\xd4\x4f\xa2\x4f\x1d\x60\xc6\x6b\x5b\x12\x5d\x60\x76\x80\x19\x89\xbf\x75\x81\xd9\xaf\xad\x6c\x23\xf9\xbc\x7e\x91\x75\xe8\x60\x35\x12\x79\xea\x62\xb5\xdf\xdb\xc2\x8d\x04\x67\xfa\x8d\xc5\xd0\x81\x6f\xe4\x46\x45\x17\xbe\xfd\xde\xfe\x41\xa4\x4a\xad\x23\x67\x3f\x3b\x88\x8e\xd4\xa1\x77\x11\xdd\x43\x8c\x5f\x3f\x22\x37\x2d\x7b\xc0\xf9\xee\x0a\x5c\x2a\x85\xbb\x20\xef\x80\x3c\xa6\x6d\xf7\x75\x41\xde\x01\xb9\x17\x3a\xba\x20\xef\x80\x3c\x66\x6a\xf7\x04\x79\x4f\x0a\xef\xfb\xde\x5d\xbe\x95\x1a\x5b\xb8\xc7\x25\xcc\xcf\x9e\xb6\xe9\x80\x8c\xeb\x09\xe3\xae\x27\x14\xe4\xcd\x65\x9c\x9e\xa6\x53\x2d\xfb\xd8\x7b\xb9\xa3\x2b\xaf\x6f\x6a\x91\xba\xec\xd1\x15\xd8\xb7\x95\x85\xf2\x47\x57\x24\xdf\xf8\x87\x5d\x06\xe9\x44\xd5\xcf\x40\x6a\xa9\x67\x8c\xcf\x9e\xbd\x19\x96\xa0\x8e\x78\xfb\xfe\xa1\xd6\x22\x15\xc6\x4e\xc7\x7a\xb3\x8b\xf2\xda\x9e\x89\xdf\x75\x2f\x0b\x3e\x5c\x8b\xec\xc4\xc7\xf7\x8f\x75\x15\x1b\x68\x5d\x2e\xec\xd4\x3b\x45\x2e\x10\xf4\x82\x5d\xd8\x09\x5a\xa7\x83\x55\x0b\xd1\xcf\x0e\xaf\xa6\x63\x83\xb6\xcb\xab\xbd\x6c\x0d\x99\x8e\x58\x28\x93\x64\xe7\x28\x29\x4a\x94\x71\xf5\xb2\x0d\x83\xcf\x0e\x47\xa7\x73\x8b\x82\x2e\x47\x77\x38\x3a\x9d\xdb\x53\xeb\x72\x74\xa7\xf6\x25\x51\xe3\xd3\x2b\x3a\xbd\xc3\xe4\x89\x8c\x52\x97\xc9\x3b\x4c\x9e\x60\xdf\x2e\x93\xf7\xe6\x5b\x5b\x69\x76\x39\xba\xc3\xd1\x89\xab\xca\x5d\x8e\xee\x5d\x0d\x7d\xed\x81\x72\x74\x87\xa3\x53\xda\x5a\xb1\xcb\xd1\x1d\x8e\x4e\x69\x6b\xc5\x2e\x47\x77\xd8\x37\x51\x14\xd7\x65\xdf\x0e\xfb\xa6\xbc\xb5\x62\x97\x7d\x3b\xec\x9b\xca\xfd\xfc\xa2\x4e\xee\x72\x77\x87\xbb\x9f\x63\x2b\xcd\x21\x77\x0f\xb8\xfb\xe1\xea\xf5\x90\xbb\x07\xdc\xfd\x70\x15\x75\xc8\xdd\x03\xee\x7e\xae\xad\x34\x87\xdc\x3d\x60\x65\xff\x82\xc6\x90\x95\x07\xac\xfc\x84\x23\xef\x2e\xdf\x82\x6f\x1f\xa2\xa5\x43\xbe\x1d\xb7\x56\xca\xf6\x02\x87\x4c\x3a\xe0\xc8\x87\xd2\xd7\x21\x47\x0e\xd8\xef\xa1\x8a\x79\xc8\x7e\x03\xf6\x7b\x40\xf9\x90\xfd\x86\x16\x4f\xde\x1a\x72\xc8\x7e\x03\xf6\x7b\xc0\xf8\x90\xfd\x06\xec\x97\xc9\x76\x0e\xd9\x6f\xa4\xed\xa2\x79\x63\x7c\x24\xcc\xf9\x91\xb4\x95\xf6\x0e\x0f\x19\x6b\x50\x34\x68\xca\x67\x3c\xc4\xc6\x06\xbc\x96\xdd\x09\x59\x6d\xc0\x6a\x5e\xf8\x1c\x72\xda\x80\xd3\x32\x97\x3b\x87\x8c\x36\x60\x82\x1c\xb6\xf6\x18\xf2\xc0\x00\xdd\x19\x21\x30\x44\xf7\x00\xb7\x39\x26\x8a\x7a\x7d\x0b\xdc\x7a\x0f\x60\x88\xdb\x51\xb7\x60\xb0\x42\x7b\xd4\xe9\x5b\x0c\x24\x1f\x3e\xc4\xed\x00\xb7\x99\xbf\x23\x32\xc4\xed\x20\x62\x6c\x81\xd3\x30\x60\x3c\x80\x72\x26\x96\x36\x84\xf2\x00\xca\x99\x58\xc5\x10\xca\x03\x28\x97\x63\x6b\xdb\x21\x94\x07\x50\x2e\xb0\xd8\x10\xca\x83\xe8\x45\x21\xe5\x3b\x0c\x5e\x0c\xd0\x5d\x48\xd7\x0c\xd1\x3d\x40\x77\xc1\x55\x19\xa2\x7b\x80\xee\x42\x32\x64\x88\xee\x01\xba\x4b\xd8\xf2\x6b\x08\xdf\x01\x7c\x4b\xdc\x4a\x60\x0a\xdf\x09\x7c\x4b\xda\xd2\x6b\x0a\xdf\x09\x7c\x4b\x4a\xf9\xcb\xe7\x14\xbe\x13\xf8\x16\x8a\x7d\xa7\xf0\x9d\xc0\xb7\x10\xe6\x9d\xc2\x77\x02\xdf\xc2\xcd\xf3\x29\x7c\x27\xf0\x2d\x14\x43\x4d\xe1\x3b\xcd\xed\x1f\x44\x18\xa6\xf8\x9d\xe6\xdd\x0f\x72\xa1\x53\x00\x4f\xf3\xe9\x07\xf9\xb8\x29\x82\xa7\xb9\xf3\x83\xa4\xd4\x14\xc2\xd3\xfc\xf7\xc1\xad\xd3\x29\x86\xa7\x79\xed\x83\x04\xc5\x14\xc4\xd3\xdc\xf4\x11\xb7\x32\x98\xa2\x78\xaa\x0c\x0e\x2a\x37\xa6\x98\x9d\xaf\xf1\x4e\x44\x60\x8a\xd0\xa9\x32\x38\xa8\x3d\x9e\x42\x74\xaa\x0c\x0e\x8a\x00\xa7\x18\x9d\xe6\x79\x0f\x02\x97\x93\x4b\xf1\x9f\x53\xe1\x7d\x94\x6d\x97\x4c\x81\x3b\xbd\xfd\x7c\x1e\x6c\x95\x39\xc4\xa9\x25\x7f\x1e\xdb\xc3\x9b\xa2\x79\x6a\xca\x9f\xfc\xa5\x8b\x29\x9c\xa7\xb6\xfc\x79\x3e\x7b\x3e\xf1\x3c\xeb\xeb\x5d\x6c\x39\x3f\x45\xef\xf4\x7e\xe6\x79\x6f\xa5\x31\xb9\x9f\xf9\x39\xb5\xf0\xcf\x9b\x83\x14\xd2\x93\xf8\xfe\x79\x72\x95\x63\x12\xe5\xdf\x3f\xbc\x47\xf2\x65\x0a\xea\xa9\xdd\x7f\x86\x0d\xbb\x29\xaa\x27\x35\x79\xe7\x49\x40\x7c\x76\x0a\x26\xa7\xc5\x78\x67\xda\x4e\xd3\x14\xea\xd3\xa2\xb8\x93\xcb\x41\x53\xac\x4f\x6f\x29\x9d\x5c\x14\x99\x16\xc0\x4d\x23\x75\x27\xd7\x35\xa6\x68\x9f\xde\x95\x39\x49\x82\x4c\xe1\x3e\x27\xb5\x1b\x67\x06\xa3\x93\xda\x8d\x69\x61\xd6\x89\xe0\x9a\xf2\xc0\x34\x8a\x71\x52\xf0\x37\x65\x82\x69\x94\xe0\xa2\x80\x70\xc9\x05\xcb\x8b\x19\x17\x7f\x81\x61\x1d\xd8\x2f\x4b\x0f\xfe\x3a\xa9\xdc\x97\x35\xd6\x41\x14\xe3\xa2\xb0\x6d\x1d\x58\x56\x4b\x0f\xf9\xc2\x26\x5b\xf2\xcb\x3a\x89\x26\x5c\x17\x25\xe5\x27\x85\x86\xeb\xa4\x66\xfc\x42\x0d\xae\x13\xf5\xbc\x5e\x27\x99\xa4\xe8\x92\xb1\x96\xd5\x3f\x17\x77\x2c\x96\x9c\xb5\x2e\xa2\x8b\x17\x7f\x48\x62\x5d\x44\x6d\x96\x55\x3d\x57\x78\xe8\x73\xec\x45\x24\xf6\x22\x19\xb6\x2e\x02\xfb\xcb\x9a\x9b\x8b\xeb\x99\x4b\x1e\x5c\x37\x89\x8c\x2b\x66\xfa\x48\x64\x2c\xf9\xf2\xf2\xfe\x80\x7c\xb9\xe4\xcb\x2b\x6d\x69\xbd\xe4\xcb\x15\x88\x2a\x5d\x5c\x91\x5e\x81\xe8\xe7\x92\x57\xaf\x67\x5b\xd5\x4b\x5e\x5d\x81\x68\xd1\x45\x52\x6a\x85\xe6\x7b\x04\xec\x2f\x12\x3c\x2b\x20\xe0\x96\x3c\x7d\x95\x6d\x04\x2d\x79\x7a\xc9\xd3\x17\x17\x02\x97\x3c\xbd\xe2\xfb\x1e\x97\x01\xe4\xe9\x95\xd8\xe7\xfb\x48\xc7\xbf\x56\xe1\x29\xfe\xa5\x06\x5f\x89\x98\xce\x52\x0a\xdc\xc4\xf6\x96\x52\x60\xbd\x26\x21\xf1\xb9\xa5\x14\x58\xaf\x49\x88\x69\xb3\x94\x02\xeb\x35\x09\x2f\x2a\xf2\x95\x02\xeb\x35\x09\xb9\xbf\xbe\x94\x02\x4b\x8e\xbf\x49\xc1\x2e\x39\x7e\xc1\xe4\xe7\x1d\x39\x41\xca\x05\xf6\xcf\xf4\x9e\x07\xef\x39\xd6\x72\xf2\x9b\x2b\x86\xab\x74\xdf\x23\xbe\x79\x27\xc7\x52\x71\xb5\x4c\xcf\xdf\x98\xd7\x8b\xbf\x44\xf0\xb9\x5e\xc7\x9f\xdb\x6b\x4b\x69\xb1\x4c\x93\x27\x52\xd3\x8b\x1b\xfe\xfb\x87\x40\x0c\x9e\xd2\xe2\x3a\xff\xe7\x52\xaa\xa4\xb0\xa5\xc5\x52\xaa\x2c\xd3\xdf\x29\xc4\x4c\x5f\xb1\xcf\x9b\x0f\x6f\x5f\xa3\xcf\xcb\x64\x81\xfb\x17\xa6\xbf\x57\x35\xae\x15\x40\x18\xb9\xf0\xcf\x55\x8d\x61\x79\xb7\xc3\x32\xec\xf5\x86\x21\xd0\x49\x4b\xc9\xb5\xfc\x0b\x53\x09\x07\x63\x91\x57\xfe\x5c\x8d\xf4\x5e\x8a\x5e\x3e\x89\x9c\x65\xa3\x3a\x23\x91\x76\x5a\xe4\x8b\x3f\xd7\x1b\xc3\x20\x35\xb3\x94\x70\xcb\x1b\xe0\x09\x89\xb4\xc8\x03\x7f\xae\x66\x9c\x9b\xfa\xbc\x45\xde\x76\xff\x30\x96\xbc\xc8\x32\x55\xbb\xbc\xc8\x9d\x12\x68\xe7\x7a\xf6\xe7\x32\x15\x9a\x08\x1d\x2d\x53\xa1\xab\x19\x8f\xc4\x63\x5c\x5c\x62\xde\x3f\xcc\x47\x0c\x7a\x29\x45\x97\xd7\x93\x13\xf1\xe1\x65\x3a\x73\xf5\xe0\x7b\x48\x81\x1e\x7d\x8f\xdb\xa5\x89\xeb\x69\x8b\x9b\xcb\x9f\xcb\xbf\x6e\x95\xb8\x8c\xb6\x4c\x5d\x2e\x6f\x08\x27\xfe\x4e\xc3\xe2\x1e\xf0\xe7\x32\x4d\x99\xf8\xe3\x02\x8b\xfc\xe4\xfe\x71\x0d\xb0\xa1\xf4\x5e\x9d\xeb\x81\xe9\xbd\x77\x43\xac\x7f\x79\x79\x37\x61\x07\x2d\x2e\xef\xee\x9f\xf7\x26\xca\x41\x9f\x6b\x74\xdf\x43\xd2\x90\x27\xfc\x5c\x9d\x12\x85\x94\xfd\xb6\x29\x7d\xc4\x19\x93\x1c\xdf\x89\x33\xae\x8e\xc6\x49\x59\x9a\xd1\x38\x4b\xad\x91\x32\x78\x56\x6b\x2c\xd3\x76\x89\xbf\x75\xb6\x4c\xdb\x2d\xff\x26\x57\xca\xdc\x28\xb2\x5c\x7b\xa9\x5d\x12\x4e\xf7\x52\xbb\x2c\x2f\xaa\x26\x2a\x08\xd7\xf0\x7c\x87\xb1\xea\x12\xbc\x9d\xc3\xb7\x0d\xe3\xa5\xdc\xef\x5d\x43\x9a\x87\xf4\x51\xae\xbd\x06\x71\xd0\xf5\xe6\x90\x4a\xe1\x72\x8d\xf4\x4d\xff\x22\x1e\xd5\x82\xcb\xc0\xc1\xb2\x94\xfa\xa1\x5a\x70\x59\x36\xbd\xa6\x7f\x0e\x8e\xbb\xa3\x8b\xbb\xa3\xfb\x87\xc0\x1a\xb9\x9c\xa5\x56\x5b\xde\xfd\x7c\x8e\x6d\xec\xaf\x29\x6f\x4d\xcb\xf1\x0f\xef\xf7\x50\x8e\xbf\xe6\xf0\x8a\x15\xd7\xb8\xe6\x74\x8d\xe9\x35\x8f\xdb\xbe\x61\x9f\xb1\x5b\xae\x9b\x4d\xf7\x5e\x2d\xf9\x9c\x21\xfc\x6b\x89\xb9\x1b\xbf\xab\x3f\x7d\xf9\xf3\xdf\x3e\xec\x7f\xf8\xfe\x7d\x7e\xfb\x99\xbf\xb3\xc8\x5f\x38\xfc\x18\x73\xfd\xf0\x6d\xfe\xf9\x6f\x36\xfe\xf4\xe3\x4f\x7b\x14\xff\xfe\x4f\x00\x00\x00\xff\xff\x69\x55\x86\x2d\xdf\x51\x00\x00"); -func _bggb ()(*asset ,error ){_fcfa ,_ecdga :=_aeef ();if _ecdga !=nil {return nil ,_ecdga ;};_dfcff :=bindataFileInfo {_ag :"UniJIS2004-UTF8-H",_bc :214224,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492828,0)};_fagf :=&asset {_cd :_fcfa ,_dce :_dfcff }; -return _fagf ,nil ;};func _dcfa ()([]byte ,error ){return _dc (_fdga ,"CNS1-H")};func _fgcc ()(*asset ,error ){_bcc ,_cffe :=_cfda ();if _cffe !=nil {return nil ,_cffe ;};_aad :=bindataFileInfo {_ag :"HKdla-B5-V",_bc :613,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492314,0)}; -_gfecg :=&asset {_cd :_bcc ,_dce :_aad };return _gfecg ,nil ;};var _dbe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x2c\xde\x6b\x69\xfa\x0f\x4a\x17\x8e\x35\x0e\x86\x46\x36\x8e\xb3\xc8\xb7\x2f\xe7\x1e\x3b\x94\x2e\x82\xa3\x13\xe9\x4a\xf9\x1d\x8f\xe6\xe6\xee\xe1\xfe\x61\xdd\x9f\xd3\xcd\xcf\xa7\xc3\xf6\xb1\x9f\xd3\x6e\xbf\x2e\xa7\xfe\x7a\x78\x3b\x6d\x7b\x7a\xea\xcf\xfb\x75\x18\x44\xd3\xb2\xdf\x9e\xaf\x87\xf1\xb1\x7d\xd9\x1c\x87\x01\xd7\x3f\xbe\xbf\x9e\xfb\xcb\xc3\xba\x3b\x24\xe3\x79\xcb\xdb\xf1\x72\x6e\x4a\x37\xbf\xf4\xe7\xfd\xeb\xf9\xf4\x9e\x3e\x7d\x59\x0e\x4f\xfd\x87\xb4\xf4\x1d\xf2\x9f\x4e\x4b\x3f\xed\xd7\xe7\xf4\xe9\xee\xfb\xa3\x7c\xc4\x8f\x6f\xc7\xe3\x3f\xfd\xa5\xaf\xe7\x54\x22\xeb\xeb\x12\x9f\xc3\xcd\xdd\xb7\xcd\xf1\xfb\xe6\xa5\xa7\x9b\x98\xf4\x19\xd7\x7d\xe6\x49\xf1\xb7\xdf\xfb\xe9\x75\x7f\x58\x93\xfc\x98\xf3\x7f\xe2\x5f\xdf\x8f\x3d\xc9\x65\xc6\x9f\xbf\x3d\xdc\xa7\xbf\x24\x49\x4e\x5a\xca\xd4\xfe\xbe\xe4\x7f\x7c\x3b\x2c\x3d\xe5\xeb\x9d\x1e\xee\xef\x0e\x6f\xeb\x39\xc9\x94\x5b\x63\x28\xfc\x97\xb6\x87\xa5\xbf\x1e\x37\xdb\x7e\xda\xac\xcf\x7d\x48\x69\xce\x39\xe7\xdb\x34\xfb\x97\xaf\x5f\x6f\xf1\xb4\xff\x3b\x63\x18\xcb\xe5\xca\xfd\xc2\xe4\x7a\x45\xce\xbb\xdd\x6d\xca\xc3\x9c\x85\xc7\x82\x63\x2d\x75\x98\xb3\x32\x51\x24\x45\x74\x98\xb3\x31\x31\x24\x63\x6d\xc3\x9c\x9d\x89\x23\x91\xac\x3e\xcc\xb9\x30\x2a\x11\x69\xc3\xec\xca\xa8\x46\x54\x0c\xc3\x47\x46\x63\x44\xe3\x84\xe9\x8d\x51\x8b\x27\xc8\x8e\xf1\x13\xa3\x29\x22\xcb\x18\xbf\x61\xb4\xb9\x3c\x27\xc6\x3f\x31\x7a\x8a\xa8\x09\xc6\x6f\x19\x6d\x11\x59\x1e\x31\x7e\x61\xb4\x44\x64\x8a\xf1\x9d\x51\x8f\xa8\x34\x8c\xdf\x31\xda\x45\xd4\x3c\x0f\xb3\x50\x4a\x42\xca\xf3\x54\x87\x59\x88\x25\x81\xe5\x56\x74\x98\x85\x5a\x12\x5a\x5e\x73\x1b\x66\x21\x97\x04\x97\xb7\xea\xc3\x2c\xf4\x12\xbf\x98\x62\x3c\xbd\x24\xbc\x8a\x8d\x18\x4f\x2f\x09\xaf\x52\x0d\xe3\xe9\x25\xe1\x55\x5a\xc3\x78\x7a\x49\x78\x55\x71\x8c\xa7\x97\x84\x57\xf5\x8c\xf1\xf4\x92\xf0\xaa\x15\xc5\x0a\xbd\x24\xbc\xea\x84\x66\x85\x5e\x12\x5e\xa3\xa0\x5a\xa1\x97\x84\xd7\xe8\xa8\x56\xe8\x25\xfd\xd2\x3f\xc6\xd3\x4b\xc2\x6b\x9c\x50\xad\xd2\x4b\xc3\xab\x09\xaa\x55\x7a\x69\x78\x35\x47\xb5\x4a\x2f\x0d\xaf\x36\xa2\x5a\xa5\x97\x86\x57\x9b\x50\xad\xd2\x4b\xc3\x6b\x52\x54\xab\xf4\xd2\xf0\x9a\x1c\xd5\x2a\xbd\x34\xbc\xa6\x11\xd5\x2a\xbd\x34\xbc\xa6\x09\xd5\x2a\xbd\xb4\x5d\xbf\xab\x98\x4f\x30\x9d\x98\x39\xca\x55\x8a\xe9\x86\xd9\x88\x76\x95\x64\x1a\x64\x68\x1f\xb7\xa0\x99\x6e\x99\x29\xfa\x55\xa2\xe9\xc2\xac\xa0\x60\xa5\x9a\x76\x66\x23\x1a\x56\xb2\xe9\x8e\x8b\x24\xa3\x62\xa3\x9b\x65\x66\x8a\x8e\x8d\x70\x26\xcc\x0a\x4a\x36\xca\x99\x5e\x17\x58\x1e\x66\x23\x9d\x05\x9d\x58\x46\xcd\x46\x3b\xe3\xda\x34\x43\xcf\x46\x3c\xe3\xe2\xb4\x82\xa2\x8d\x7a\xc6\xd5\x69\x0d\x4d\x1b\xf9\x8c\xcb\xd3\x33\xaa\x36\xfa\x19\xfd\xdc\xd0\xb5\xd1\xcf\xe8\xe7\x05\x65\x1b\xfd\x8c\x7e\xde\xd0\xb6\xd1\xcf\xe8\x57\x04\x75\x1b\xfd\x6c\x7b\x7d\x2b\xe0\x1e\xf4\x33\xfa\x95\x8a\xc2\x8d\x7e\x46\xbf\xd2\xd0\xb8\xd1\xcf\xe8\x57\x05\x95\xfb\xe5\x1d\x48\xbf\x6a\xe8\xdc\xe9\xe7\xf4\xab\x15\x9d\x3b\xfd\x9c\x7e\xb5\xa1\x73\xa7\x9f\xd3\x6f\x14\x74\xee\xf4\x73\xfa\x8d\x8e\xce\x9d\x7e\x4e\xbf\xb1\xa2\x73\xa7\x9f\xd7\xeb\xab\x0c\xf7\xa0\x9f\xd3\xaf\x09\x3a\x77\xfa\x39\xfd\x9a\xa3\x73\xa7\x9f\xd3\xaf\x55\x74\xee\xf4\xf3\x4d\x8b\x6c\x72\x8f\x37\xfa\xf5\xcd\x8d\xdf\xb1\xef\x7d\xec\x44\xdb\xb7\xd3\xa9\xaf\xe7\xd8\xf5\x62\xb3\xc1\x5e\xb1\x5f\xfb\xc7\x0e\x7a\x3c\x1c\x71\x55\xfc\xfc\x1b\x00\x00\xff\xff\x71\x52\xeb\xb8\x6d\x07\x00\x00"); -var _ebfa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9a\x4f\xcb\x24\x47\x72\xc6\xef\xfd\x29\xea\xb8\x3e\xd8\x53\x95\x19\x7f\x32\xa1\x69\x30\xd2\x82\xc5\xb2\x5e\x63\x79\x6d\x83\xf1\xa1\xab\xba\x5a\x0c\x58\xef\x0c\xef\x8c\x0e\xfa\xf6\x26\x7e\x4f\x4b\x62\xed\x85\x3d\x88\x90\x1e\x65\x46\x45\x46\xc6\x9f\x27\xb2\xdf\x0f\xdf\x7c\xf7\xed\x77\x6f\x1f\xbf\x2e\x1f\xfe\xe5\xfd\xd3\xf1\xfd\xf9\x75\x79\x7e\x7c\x7b\xbc\x9f\x5f\x3e\xfd\xf4\x7e\x9c\xcb\x7e\xfe\xf0\xf1\xed\x72\xd9\xda\xf2\xf8\x78\x7c\xfd\xe5\x3f\x11\xc7\x8f\xf7\xcf\x97\x4b\xed\xff\xfe\xe7\x2f\x5f\xcf\x1f\xbf\x7b\x7b\x7e\x5a\xba\xd6\x3d\x7e\xfa\xfc\x5a\xbb\x2c\x1f\xfe\xf5\xfc\xe1\xe3\x97\xaf\xef\x3f\x2f\xbf\xfb\xc7\xc7\xa7\xfd\xfc\xbb\xe5\x71\x3e\x0b\xff\xd3\xfb\xe3\x7c\xff\xf8\xf6\xc3\xf2\xbb\x3f\x7c\x7a\x3f\xef\xdb\xaf\xff\xe3\xfb\x9f\x3e\x7f\xfe\x9f\xf3\xc7\xf3\xed\xeb\xb2\x82\x9d\x6f\x0f\xe4\xe5\xc3\x37\x7f\xbc\x7f\xfe\xe7\xfb\x8f\xe7\xf2\xe1\x0f\xdf\x7f\xf3\xf7\xff\x04\x0a\xf8\xef\xe7\xfb\x97\x8f\x9f\xde\x96\xf9\x0f\xeb\x1a\xbf\xc1\xff\xf6\xf3\xe7\x73\xd9\x5e\x9b\xff\xfc\xdd\xb7\x7f\x7a\x3e\xbf\x9c\x5f\x97\xb6\x4a\xf1\x87\xff\xfc\xf3\x77\xdf\x2e\xff\xb5\x2d\xdb\xba\x34\xb7\xb5\xfd\xf7\x6b\xe9\x7f\xfc\xf1\xd3\xe3\x7c\x7d\xfd\xb2\xe9\x2c\xc7\xa7\xc7\xf9\xe5\xf3\xfd\x38\xdf\xef\x6f\x3f\x9c\x97\x65\xb9\xb6\xad\x6d\xb7\xe5\x9a\xbf\xcf\xdf\xdf\xca\xc8\xff\xb3\xe2\xb2\xad\xeb\x6b\xeb\xc7\x87\xa0\x5f\xb6\xb4\x2d\xcf\xdb\xb2\xad\xdb\xe5\xda\x9a\x90\x16\x7e\x5b\xb6\xe9\x97\x6b\xeb\x42\x7a\xad\x69\x61\x97\x6b\x33\x21\xe6\xfd\xb6\x74\x1f\x85\xb8\x83\xd4\x1a\x5b\xe7\xe5\xda\x5c\x6b\xbc\xdd\x6f\x8b\x79\x69\xf6\xbe\x82\xf4\x79\x5b\x2c\x40\x4c\x6b\x7c\xdc\x16\x4b\x90\x10\x92\x85\xf0\xf5\x90\x9e\x08\xbb\x2d\xbe\x95\xe6\x14\x92\xf1\xbc\x2d\x3e\xf2\x72\x6d\x43\xc8\x68\x76\x5b\x22\x02\x24\x84\xc4\x6d\x89\x5c\x41\x86\x90\x67\x21\xf5\xad\xd1\xb5\xab\x6c\x8e\x2c\xcd\x53\x7a\x66\x21\xe9\xa5\xf9\x2e\xe4\x9e\xfd\xb6\x0c\x4e\xb1\x0b\xd9\x33\x6e\xcb\xec\xe5\x8d\x43\xc8\x51\x87\xd9\xd6\x56\x1f\x3b\x5c\x50\x02\x79\xbf\x5c\xfb\xca\xaa\xbe\xca\xd3\x23\x2e\xd7\x2e\xe7\x77\x39\x7f\x1b\xeb\xe5\xda\xe5\xfd\xde\x80\x5a\xda\xe5\xda\xe5\xfe\x8e\xfb\xb7\x1e\xe3\x72\xed\xf2\x7f\xc7\xdb\x9b\x45\xbb\x5c\xbb\xdc\xdd\x1d\xc8\xbd\xd4\xcb\x73\x3d\x80\xc2\x4b\xbd\x5c\xd7\x13\x28\xad\xd4\xcb\x77\x1d\x2f\x6c\xa3\x97\x7a\xb9\xa1\xe3\x86\x6d\xf6\x52\x2f\x3f\xf4\x3b\x31\xb0\xb6\x52\x2f\x47\xf4\x1d\x68\xab\x63\x77\x79\xa2\x1f\x40\x6d\x2b\xf5\x0f\x41\x0f\xa0\xbe\x96\xfa\x53\xd0\x09\x64\x6b\xa9\x7f\x0a\x7a\x0a\x9a\x71\xb9\x9a\xfc\x65\xf8\xab\xf9\x5c\x2f\x57\x93\xbf\x6c\x53\x20\x0e\xbb\x5c\x4d\xfe\x32\xfc\xd5\x32\xc7\xe5\x6a\xf2\x97\x29\x5c\x47\xb6\xcb\xd5\xe4\x2f\xc3\x5f\x6d\x56\x80\x98\xfc\x65\xf8\xab\xaf\x51\xea\xe5\x2f\xc3\x5f\x7d\xf3\x52\x2f\x7f\x19\xfe\xea\xcd\x4a\xbd\xfc\x65\xf8\xab\x77\x2b\xf5\x72\x8e\xe1\x9c\x6e\xbd\xd4\xcb\x39\xb6\xdb\xb3\x32\xa4\x97\xfa\xdd\x57\xa0\x12\xb6\x6d\xac\x72\xad\xaa\xe4\xe9\x9e\x09\x14\x82\xe2\xb6\xf4\xe0\x40\xbb\x27\x50\x04\xd9\x56\x5f\xdc\xe3\x05\xe5\x6d\x49\xe2\xcb\xf6\x18\x40\x18\xe1\xb3\x36\xea\x3a\x8c\xeb\xa8\x68\xb8\x5c\x4d\xd7\x61\x0f\x2b\x28\x37\x2f\xa8\x6c\x7c\x89\x6e\x78\xe2\x21\x53\x1f\xa5\xbe\x67\xb0\x51\xea\x11\x39\x57\x56\xc5\x04\x42\x7d\x8e\xd2\xa5\xab\xb5\xb3\x1d\xb7\xa5\x8f\x35\x81\x1e\x82\x1e\x40\x0d\xe8\x04\x62\xe3\xa8\x9c\x36\x05\x80\x3d\xf3\x7e\x5b\xba\xd4\x3f\x73\x17\xb4\x03\x35\xa0\x43\x50\x6d\x9c\x15\x13\xae\x30\x91\xe8\x73\x76\xa0\x26\xa8\x15\x64\x01\xd4\x81\x7a\xb2\xca\x0a\xea\x43\xd0\xf8\x6d\x55\x55\xa6\xab\xaf\xe5\x09\x5b\xcb\x39\xbe\xe2\x09\x89\x9e\x15\xbe\xbe\xba\xbe\xe8\x47\xad\xea\x82\x1e\x82\x1e\x75\xb5\x7d\x03\x3a\x81\x54\x10\x2b\xf9\x5c\xe1\xeb\x5b\x55\x4d\x5b\x47\x99\xba\xb9\x09\xb2\xdb\x62\xbd\xd2\xdd\x37\x2a\xa9\x84\x6d\x95\xc8\xbe\x11\x13\xbe\x55\x1c\xd8\xd6\xb5\x6a\x08\x1a\x6c\x74\xa0\x29\xe8\xce\x2a\x6d\xdc\x81\x62\x65\x15\x50\xc8\x88\x12\xb6\x61\xfd\x16\x4d\x50\xab\x7a\xba\x62\x6a\x74\x41\x65\x44\xaf\x90\xf3\x2d\x64\x44\x09\xeb\x43\xba\x52\x90\xec\x9a\x40\xb2\x2b\x76\x56\x25\xd0\x21\xa8\xfc\xb5\x99\xd4\x3f\x04\x95\xbf\xfa\xdc\x80\x4e\x41\x27\xab\x04\x3d\x81\x12\xeb\xb9\xb4\x2d\x65\x7d\x62\xbd\x61\x57\xca\xfa\x12\xd6\x27\x76\xa5\xac\x4f\x5c\x68\x38\x3a\x65\x7d\x62\xfd\xc4\xd4\x94\xf5\x39\x59\xa5\x8d\x77\x41\xe5\x42\x5b\xb5\x51\x2e\x2c\x61\x9b\x69\xa3\x0e\x94\x0f\x56\x69\xa3\xac\xe7\xb6\xab\xff\x55\xfb\xfd\xa5\xcb\xfe\xb5\xc6\xeb\x2a\x5c\x12\xb6\x11\x1f\x4d\x71\xdb\x2a\x56\xcd\x36\x41\x26\x28\x58\xb5\x01\xa5\x20\x6c\xdc\x1a\xd0\x2e\x68\x07\x9a\x40\x87\x20\x9c\x5e\xb5\xcc\x1b\x89\x28\x61\xd6\xa4\x1e\xb3\x5b\x97\x11\x15\x45\xad\xcb\x88\x12\x66\x8d\x8d\xbd\x0b\x22\xba\x1d\xf5\xfd\xb5\xf1\xa4\xb9\x63\x57\xe7\xb6\x9a\xa1\x2b\x51\x6f\xd2\x65\x9d\x55\x1d\x48\x07\x2a\x61\xbe\x25\x90\x0b\xe2\xb6\x52\xab\x42\x90\xb8\xc3\x00\xd2\x19\x4b\x98\xcb\x2e\xd3\x19\x8d\x33\xa6\x20\x9d\xd1\xb0\xab\x71\x20\x93\x5d\xa4\x98\x37\x74\x29\xc5\x1a\xf9\xe4\x9d\x55\xca\x27\x84\x6d\x29\x68\x0a\xc2\x08\x22\xb2\x29\x9f\x9a\xf2\x9c\x7c\x6a\xca\xf3\xe6\x4f\x56\xb1\x31\xa8\x19\x08\xdb\x12\x7f\x29\xeb\x10\xe6\xc6\xb1\x95\x75\x08\x73\x05\x80\xb2\x0e\x61\xf0\x01\x6f\x21\x7f\x05\xd6\x07\x67\x0c\x59\x5f\x99\x66\x1e\x18\x11\x32\x35\x30\x35\x31\x35\x64\x2a\x89\xe8\x32\x55\x89\xd8\x2a\xad\x6c\x1b\xac\x4a\x99\x5a\x09\x63\xb1\xa2\x3e\xf5\x45\x92\x27\x56\xac\x57\xf2\x20\x6c\x1b\x9c\x51\xc9\xd3\xe0\x69\xa1\x00\x48\x19\x41\x0e\x6c\x14\x08\xb5\x62\xef\x82\x66\xc5\xaa\x5a\xb1\x1b\x95\xa5\xb1\xca\x54\x59\x4c\x95\x85\xdb\x36\x55\x16\x23\xeb\x3a\x81\x69\xca\x3a\xc4\xab\xbc\x59\x3e\x04\x9d\xbf\x96\x37\xb5\x75\xf7\xa6\x82\x3a\x80\x5c\x90\xff\x5a\xde\x1c\x76\xe8\xe2\xa6\x2a\x6f\xae\x1c\x42\xbc\x6a\x99\x2b\x87\x9c\x84\x51\x2d\x73\x25\x0c\xe2\x75\x20\x6f\xc4\x97\xcb\x88\x51\x1b\x45\x24\x3c\xaa\xdb\x98\x05\x90\xba\x0d\xc2\xb6\x48\x20\xfc\x15\x84\xaf\xa1\x2b\x14\xbe\x08\xdb\x52\x10\x5f\x84\x94\x98\x93\xee\x22\x25\x9e\xca\x8e\xea\xce\x9e\xca\x0e\x84\xbb\xb3\x4a\xd9\x91\xa1\xab\xad\xb4\x4a\x05\x13\x22\x94\xdb\xa9\x60\x82\xe0\x58\xb4\xb2\x4b\x04\xc7\x87\xa0\xe2\x16\x2e\x42\xe8\x10\x42\x4b\xc2\x57\x9c\xc7\xe1\x3c\x36\xc8\x0e\x71\x1e\xdf\xc9\xed\x49\x5a\xed\xca\x6d\x84\xab\x7e\xed\xca\xed\x1d\xbb\x26\xb1\xba\xcb\x2e\x84\xcd\xd6\x80\xb4\xb1\xd4\xfb\x5a\x83\x89\x8b\xcd\xf8\x51\x57\xeb\x2b\xa6\x1e\xba\x5a\x44\xaa\x4e\x1c\xba\xda\x43\x1b\x69\xc5\xe2\x3c\xfe\x60\x23\x44\xd5\x1f\xda\x88\xf0\x95\x14\x7d\x68\xe3\xc3\xb5\xaa\x9c\xf3\x50\x9d\x40\xf8\x46\x2a\x3c\xd4\x8a\x1f\x95\x30\xd5\x86\x0a\x52\xc2\x20\x32\x8a\xf3\xf8\x23\xb5\x11\x23\x1a\xd6\x8b\x19\xf9\x59\x11\xed\x8d\x84\x39\x15\xd1\x08\xf7\xa2\xb3\x7e\x2a\xa2\x11\xde\x8b\xf3\xf8\xa9\xd6\x82\xf0\x4e\xe4\x88\x2c\xf9\xb3\x6a\xb4\x77\xae\xf6\xa9\x1a\x8d\x48\x71\x8b\x67\xc7\xae\x67\x95\xa1\xca\xc4\x82\x54\x86\x10\xde\x6b\x6e\xf0\xa7\xca\xd0\xb3\x12\xce\x3b\xd5\xe4\xa9\x1e\x8e\x70\x23\xdd\x9f\x2a\x30\x4f\x19\x51\x81\x19\x22\x5e\xb1\x26\xea\xab\x3b\xc7\x9a\x2f\x68\xbb\x2d\xc1\xa5\xc5\x4a\x77\x0e\x68\x90\x5b\xd5\xe8\x10\x0d\x8a\xad\xb2\xcb\xad\xd2\x2a\x36\x5a\x93\x84\x43\x41\x63\x23\xd3\x02\xd6\xe0\x56\x0d\x3b\xc4\x1a\x24\xbc\x6f\x6c\x0c\xad\x42\xbd\xd7\x81\x42\x8d\x35\x9a\xa0\xfc\xdb\xad\x38\x54\xa5\xa2\xd7\x05\x7a\x54\x03\x8a\xce\x05\x4a\xe4\x5a\x37\x1f\x9d\x22\x18\xd4\x32\x67\x38\x0c\xd5\x32\x89\xec\xd5\xf2\xc2\xe8\xe1\x61\x35\x6c\x7a\x96\x3b\xc3\xda\x14\x34\x51\x3f\x80\xee\x40\xd2\xc5\x17\x55\xb8\x82\x62\xe3\xa3\x66\xea\x50\xb1\x91\xf0\x81\xef\x54\x6c\x82\x49\xda\x47\x85\x5f\x78\xd7\xc6\x57\xc3\x76\xa0\x2e\x68\xb0\x0a\xf5\x14\x1b\x09\xb3\x4a\x9e\xf0\x7e\x17\x74\x67\xd5\x04\xda\x05\x51\x92\x9a\x20\x9c\xee\xd5\xc3\x7d\x54\x4f\x0a\xa7\x87\x4b\x98\x75\x8c\x20\xcf\xc3\x0d\xeb\xb9\x53\x37\x59\x4f\x2b\xb6\x8e\x5d\x26\xeb\x8d\xc1\xbd\xa8\x5a\x38\xfc\x5a\xc2\x18\x9d\xc2\x5d\x07\x2a\xe1\x63\xa2\xcb\x9b\x20\xce\xd8\x05\xe9\x8c\xe4\xe6\x98\xf8\x8b\xdc\x94\x30\xeb\x58\xcf\xe8\x14\x5e\xad\xc9\x27\x11\xe9\xa9\x63\xd3\x5a\xac\x28\x64\x38\x89\x28\x21\x82\x13\x9e\x3a\x36\x89\x38\x65\x57\xea\x40\xe2\x78\x35\x3b\x87\x0a\xbd\x84\x59\xd5\xc5\x08\x05\x40\x14\x89\xf3\xd9\x05\x99\x20\xfc\x55\x14\x32\x82\xfa\x13\x51\x35\xc7\x67\x17\x94\x82\x68\x1a\xc5\x07\x22\x78\xb2\x88\x20\x53\x66\xd5\xd8\x08\x65\x4a\x88\xc4\x55\x71\x8e\x50\x98\x20\x9c\x41\x26\x42\x61\x12\xf0\x3a\xab\xf6\x19\xd1\x65\x17\x35\x63\xca\x54\x85\x09\xc2\x8c\x90\x8b\x2e\x53\x3b\x76\x99\x20\xd9\x45\xe7\x32\x9c\xa3\xce\x15\x51\xd1\xe2\xd3\xb1\xab\x1f\x82\x88\x9c\xc0\x2e\x45\x4e\x10\x39\xd3\xf1\x97\x22\x07\x61\x1b\x79\x1e\x8a\x1c\x84\xcf\x40\x17\x1d\x22\xc2\xd4\x3e\xb1\xde\xe4\x09\xe3\x1e\xc9\xf3\xb0\xbb\x20\xc6\x9d\xd7\x46\xc2\x37\x88\x9c\x19\x7c\x51\x91\x13\x8a\x9c\xe0\x40\x8a\x9c\x20\x72\x68\x40\x11\x8a\x9c\x50\xe4\x04\x67\x54\xe4\x44\x11\x42\x9f\x29\x5d\x3a\xb6\x93\x43\xa4\x7b\xb8\x8c\x70\x3c\x91\xf8\xde\xe5\x09\xc6\xc3\x4d\xa6\xba\x3c\xe1\xdc\x50\xca\x08\xdd\x10\xb4\xd1\x64\x04\xb4\x51\xc2\x27\x99\x16\xa1\xf8\x82\x36\x1a\x65\x37\x42\x07\x0a\xbc\x3a\xb4\x51\x5e\xa5\x7d\xaa\xc6\x46\xc8\xab\xb0\x2c\xa3\x02\x44\xe8\x8c\xb0\x2c\x4b\xbc\x1a\x3a\x23\xb5\x7f\x0e\xad\x92\xa3\x21\x97\xa6\x03\x85\x8e\x1d\xf8\x7e\x48\xbd\x8e\x0d\xb9\x34\x1d\x28\x74\xec\x12\xf1\x4a\x05\xd5\xeb\x08\x8e\x3d\xf4\x45\x1d\x1b\x0a\x6a\xb2\x3e\x75\xec\xd4\xb1\xd9\xa8\x3e\x82\x30\x1b\x1c\x5b\x7d\x04\xf1\xea\x10\x91\xba\x47\xca\xf6\x1c\x18\xa1\xb2\x8d\x30\xd3\x81\x54\xb6\x43\xdc\x55\x81\x99\x3a\x76\x32\xb6\x52\xa3\x23\x75\xec\xe4\xb6\xa7\xd4\xeb\xd8\x8c\x87\x26\xeb\x55\x3a\xe0\x62\x3e\x6b\x6c\x0d\x71\x31\x09\x53\x33\x4b\x55\x80\x84\x5b\x4c\xaa\x5c\xc2\x2d\x24\xcc\x30\x35\x95\xee\x59\x29\x1e\x6b\xb1\xd2\x48\x35\x0a\x84\x59\x31\xc9\x48\x35\x8a\xd4\xb0\xf7\xfa\xe2\x2e\x68\x67\x63\x03\x3a\x04\x1d\xbf\x90\xcb\x48\xd5\x89\x54\x9d\x98\x1d\xe8\x14\xf4\x64\x23\x10\x2f\xb2\x12\x66\xf4\xf0\x54\x3b\xc9\x9a\xec\x62\x5d\x1d\xe8\x29\x88\x4b\x9b\x40\xa6\x8d\x25\x62\xdd\x30\xd5\xb4\xb1\x44\x26\xbe\x4f\x93\x27\x2a\xb7\x63\x6d\xeb\xdf\x6e\xc5\xa9\xd4\x47\x98\x51\xfb\xd3\xe4\x28\x55\x83\xa9\x4f\x0d\x41\x77\xf4\x62\xb6\x52\x3f\x35\x1e\x52\xe8\x45\x80\x25\x02\xbe\x18\x69\xf2\x0a\xfc\xda\xe5\x3b\xb5\x29\x44\xac\x8d\xab\x51\x9b\x4a\x7a\x92\xcb\x51\xea\x49\x59\x65\x24\x56\x1a\x63\xaa\x8c\x20\xcc\x57\xae\x99\xd7\x9c\x48\x47\x17\x8d\x31\xfd\xa5\x8b\xf1\x70\x45\xbd\xf2\x1c\x62\x1e\x2b\x0d\x48\xc4\x5c\xc2\x1c\xba\x21\x62\x2e\x11\x2b\x55\x3d\x95\xc1\x08\xf3\x8d\x90\x51\x06\x67\x45\x77\xac\x64\x5d\xe6\x0b\xaa\xa4\x4e\xb9\x50\xd1\x0d\xc9\x8f\x95\x1c\x10\xc9\x8f\x11\x6c\xa4\x96\x0d\xe9\x1a\x9a\x2b\xa9\xea\x43\xa9\x3f\x2a\x5d\x83\xa7\x9b\x18\x4a\x57\x84\x39\x0d\x68\x28\x5d\x87\x1e\x65\x86\x56\x35\x41\xc1\xc6\x04\x92\x7a\xb2\xce\xe9\x49\x43\x76\x21\x62\xab\xa9\x25\x86\xb2\x0e\xa1\x61\x2d\x86\xb2\x0e\x11\xdb\xeb\x8b\xbb\x20\x6e\xdb\x03\xe8\x10\xf4\x60\x95\x01\x9d\x82\x18\x9d\x60\x6c\x1a\x64\x62\xf2\xb3\x00\x8f\x6b\x31\x95\x88\x08\x73\x2a\xcb\x54\xdf\x9d\xa4\x98\x4a\xf8\x54\x8a\x21\x34\x73\xc5\x54\x8a\x4d\xd3\x2a\x74\x29\xe4\x10\xe6\x38\x7a\x2a\xe4\xa6\x3c\xc1\x75\x4c\x79\x02\x91\x2a\x5c\x53\x9e\x60\xc0\x8a\x06\x1f\xd0\x80\x15\x77\x52\xac\x11\x00\x77\x7b\x41\xc5\xaf\xb7\xd6\x81\x70\xf4\x9d\x91\xae\x51\x89\xef\x8a\x1c\x84\xf1\xa8\x1c\x77\x45\x0e\xbf\x62\x44\xdf\xd8\xc8\xd4\x22\x61\xdb\x10\xa4\x8d\x98\xda\x49\x98\xbb\x4c\xbd\xeb\xd2\xe0\x88\x77\x99\x7a\x2f\xdf\x47\x6f\x82\x0e\x41\x1c\x9b\xaa\x7e\x17\x7f\x42\x44\xef\x52\x7f\x0a\xe2\x3a\xa8\xea\x9a\x18\x63\x6f\xd8\xd5\x0d\xc8\x04\x91\x0a\x43\x90\x0b\xc2\x2e\x28\xd5\xae\x4b\xdb\x75\x69\x23\x80\x86\xa0\xc1\xaa\x09\x34\x05\x4d\x56\x0d\xa0\xbb\x20\x58\xc3\x4b\x3d\xc1\xb4\x17\xa9\x89\x4e\x90\xef\xa2\xc6\x7b\x27\xbe\xa6\xa0\x43\x50\x55\x13\x5e\x24\x62\x17\xc1\x41\x98\x4f\x0e\xc4\xbb\x58\xec\x5c\x5a\x27\xbe\x76\x5d\x1a\xc2\x9c\x4a\xbc\xeb\xd2\x10\xe6\x14\xd4\xdd\xba\x20\x67\x23\xd6\xab\x16\xee\x14\x3e\x9f\xd2\xa5\x33\x12\x72\xcc\x6f\xb1\x2b\xe4\x76\x85\xdc\xd4\x46\xd9\x45\x49\x63\xa4\x8b\x5d\x25\x8d\xdf\x1b\x2c\x48\xab\x5d\xcc\x08\xa1\x27\x83\xd8\x55\xd2\xf8\xbd\x21\xf8\xa5\x29\x76\xd7\x17\x79\x17\xe3\x15\x21\x76\xd1\x20\x46\xf3\xe8\x70\x0b\x8d\xe6\xc1\x1c\x1e\x56\xc3\x6d\x68\x0e\x97\xb0\xd8\x0c\x28\x05\x25\x50\x00\x0d\x41\x93\x8d\x82\xee\x82\xee\xac\x1a\x40\xbb\xa0\x93\x55\x82\x9e\x82\x9e\x90\xcb\x3a\xd0\xa1\x66\x76\x40\x7a\xa3\x09\x6a\x82\x1a\xb7\x9d\x40\x5d\x90\xde\x40\x1a\x90\x0b\xe2\xc5\x8b\x09\xea\xe8\xb2\xbe\xb8\xaf\x5e\x4a\xe2\xe8\x32\x15\x1e\xcc\x4b\x49\x1c\xe2\xc1\x88\xb0\x86\xf5\x8a\x1c\x84\x05\xd9\x71\x68\xa8\x3a\xaa\x7d\x86\x46\xaf\x43\xed\x93\x5f\x0c\x2d\x3a\x46\x28\x26\x0e\xc3\xae\x17\x24\xbb\x78\x18\x0d\xb2\xe3\x50\x4c\x20\x2c\x18\x4b\x0e\xf5\xc7\xa3\x42\x23\x34\x67\x1d\x26\xbb\x44\x8d\x89\xfb\x43\xfd\xf1\x70\xa9\xcf\xbf\x6c\xc5\x11\xff\xaf\x13\x1f\xae\x8f\xbb\x3e\x8e\x0e\xb1\xe4\xc3\x7f\xa3\x78\x87\x98\xed\xe1\xbc\x15\x91\x3b\x87\x3a\xde\x51\x5d\x2e\x8c\x42\x7c\x88\xc6\x22\x2c\xe8\x78\x87\x68\xec\x41\x13\x34\x12\xe5\x50\x13\x44\x58\x98\x36\xca\x08\xba\x94\x26\x94\x43\x5d\xea\xa0\x4b\x85\x71\x5c\x75\xa9\x83\xba\x25\x6e\x78\xa8\x6e\x1d\x7a\x9e\x94\xa9\xf9\x5a\xc5\x65\xc1\x92\x0f\x75\x16\x84\x85\x82\x48\x9d\x85\xe7\xa3\x10\x4b\xd6\xf3\x51\x3c\x78\x96\xe7\x3d\x2c\x1e\x2a\x52\x8f\x22\xb8\x61\x94\xc5\x87\x5e\x22\x10\xde\xe9\x9e\x0f\x91\x5d\x5e\x81\x42\xad\x52\xaf\x40\x71\xd6\xd8\x10\xce\xa0\x71\xf2\xa6\x2c\x11\xe2\x60\xa7\x46\x08\x9e\x7c\x42\xa1\xa6\x27\x9f\x78\x0a\xaa\xcc\x4f\x3d\xc0\xe4\xaa\x9f\xaf\xcb\x85\xf9\xfa\x03\x00\x9e\x43\x62\xd4\x81\x52\xcf\x21\xd9\xa8\x5b\xb3\xbc\x9a\x3c\xe4\xbf\x84\x67\xd1\x94\xd4\x7b\x7e\xf2\x84\x1b\xb3\x06\x8d\x6c\x38\x47\xc2\x33\x59\x85\x73\x92\xa7\x95\x5c\x2b\x46\x53\x6f\x27\xd9\x2b\xf7\x72\xad\x80\xcc\xde\x5f\x10\x74\xa0\x38\x6b\x76\xf2\x30\xbb\x36\x56\xad\x49\xbd\x9d\xa4\x55\x7d\xc8\xad\x12\x25\x8d\xfa\x20\x11\x56\xb5\x39\x79\x47\xb9\xa6\x95\xa3\x73\xab\xe0\x4e\xc3\xd1\x12\x11\x5a\x85\xa3\x93\xe7\x94\x6c\xc5\x59\x53\xcf\x29\xe9\x82\x5a\x19\xa1\x61\x3d\x19\x1b\xb2\x6f\xb5\x8a\xd9\xe1\x25\xac\xd5\x3d\xa6\x46\x08\x89\xec\x73\x00\x85\x20\x4c\xed\x5a\x95\x82\x4e\x56\x15\xa4\x49\x20\xb3\x4a\x46\xda\x9a\x05\x51\x32\x24\xac\x99\xa0\x09\x64\xac\xea\x75\x43\x62\xb3\x12\xd6\xaa\x5c\x67\x9a\x56\x55\x6d\x4e\xab\x20\x4f\xd1\x4d\x09\xa3\x4b\xa5\xe8\x66\x42\xeb\x92\x29\x3f\x45\xeb\x72\x54\x7c\xa5\x61\xfd\x20\xbe\x24\xd2\xb9\xda\x41\x7c\x25\xb4\x2e\xa1\x4f\x29\x5a\x27\xe1\xeb\x60\x63\x4a\xd7\xeb\x8f\x21\x6a\x95\xe8\x53\xbe\xfe\x3e\xa2\xfa\x62\x8a\xa6\x48\x64\x16\x75\xcd\x3b\x03\x90\x44\xf7\xca\xda\xbc\xf3\xfb\x6b\xc2\x49\x52\x97\x26\x4e\x22\xd1\x49\xf7\xbc\x93\xdb\x09\x43\xc8\xac\x1c\x4a\x31\x84\xdc\x05\x55\x3e\xa6\x9a\x4d\xd2\x3a\x72\x54\x0e\x25\xfd\xe3\x25\xfa\xd8\xb4\x8a\xf0\x25\x91\x73\x14\x0b\x4a\x25\x72\x92\x8f\x39\xa3\xfd\x45\x0d\xac\x7f\xff\xf1\xfe\xf9\xf2\xeb\x9f\xf4\x1c\x3f\xbd\xbf\x9f\x6f\x5f\xf9\x03\x22\xfe\x78\x67\x79\x9c\xcf\x8f\x6f\xe7\xaf\x7f\x8c\xf4\xf9\xd3\xe7\xda\xc5\x3f\xff\x1b\x00\x00\xff\xff\xd3\xfe\x56\x0b\xb8\x24\x00\x00"); -func _ccag ()([]byte ,error ){return _dc (_gaa ,"ETenms-B5-V")};func _cgeg ()(*asset ,error ){_fbbb ,_gabe :=_bcfg ();if _gabe !=nil {return nil ,_gabe ;};_dgddc :=bindataFileInfo {_ag :"KSCms-UHC-V",_bc :716,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492580,0)}; -_deeag :=&asset {_cd :_fbbb ,_dce :_dgddc };return _deeag ,nil ;};func _ebgc ()([]byte ,error ){return _dc (_dace ,"UniAKR-UTF32-H")};func _ddf ()([]byte ,error ){return _dc (_febc ,"90msp-RKSJ-H")};func _agf ()([]byte ,error ){return _dc (_fa ,"78ms-RKSJ-H")}; -var _edaae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x96\x4d\x6f\x1c\x37\x13\x84\xef\xf3\x2b\x78\xf4\x7b\x78\x23\x7e\x93\x0d\x2c\x16\x30\xa4\x08\x91\x03\xc7\x81\x15\x27\x01\x82\x1c\xe6\xa3\x47\x58\x20\x9a\x5d\xac\x56\x07\xff\xfb\xa0\xab\xd6\x4e\xe2\x83\x40\x6d\x4d\x75\x4f\xb3\xf9\x90\x9c\x9b\xdb\x87\xbb\x87\xed\x70\x71\x37\x3f\x9f\x8f\xf3\xa3\x5e\xdc\x7a\xd8\x96\xb3\xbe\x1c\x5f\xcf\xb3\xba\x49\x9f\x0e\xdb\x30\x84\xe8\x96\xc3\x7c\xf9\xf2\x13\xc3\xfc\x3c\x9e\x86\xc1\xe2\x1f\x3f\xbf\x5c\xf4\xf9\x61\x5b\x8f\x2e\xd1\xb7\xbc\x9e\xae\x5e\xe7\x6e\x3e\xea\xd3\xe1\xe5\x72\xfe\xec\xde\xbc\x5d\x8e\x93\xfe\xcf\x2d\xba\x9a\xfe\xe1\xbc\xe8\xf9\xb0\x3d\xb9\x37\xef\xc6\xd3\xb8\x85\xaf\x0f\x1e\x5f\x4f\xa7\xbf\xf4\x59\xb7\x8b\x0b\xd0\x74\x5b\x30\x0e\x37\xb7\xef\xc7\xd3\x4f\xe3\xb3\xba\x9b\x8f\x3f\x3e\xbe\xfb\xff\x0f\x90\xa1\xfe\xaa\xe7\x97\xc3\x71\x73\xc1\x7f\xe7\x7d\xfd\x47\xff\xe5\xf3\x49\xaf\x69\x86\x9b\x4f\x0f\x77\x1f\xd6\xf5\x45\x2f\x2e\x06\x4f\xcf\xef\x9f\x1e\xee\xdc\x1f\xc1\x05\xef\x62\x49\xa9\xff\x79\xb5\xfe\xf6\xfe\xb8\xa8\xa3\x69\xc8\x9c\xcd\x7c\x5c\xf4\xe5\x34\xce\x7a\x1e\xb7\x27\x1d\x9c\xdb\x79\xbf\x77\xce\xed\xba\xdf\xdb\xaf\x1e\xb2\xdf\xbb\x9d\xdc\xdf\xdf\xe2\xf7\x5b\x3e\xbd\xbb\xc7\xaf\xef\x3d\x9e\xde\xdf\xda\x53\xdd\x96\x6f\xb2\x0d\x81\x2f\xd9\x8e\x97\x45\x57\x6a\xc8\xbf\x0b\xeb\xde\xc5\x14\x2c\xe6\xdf\x0f\x87\xe0\xfd\xb5\xae\xc3\x72\xf5\x47\xf3\x37\xb5\xd7\x3a\x87\xa0\x2f\x45\xf5\x00\xb9\xa6\x64\x52\xa7\x34\xce\x26\x49\x35\x69\xea\x90\xa6\x75\xef\x5c\xcb\x08\x9c\x29\xcd\x0a\x49\x4c\x5a\x46\x48\xda\x4d\x2a\x08\x5c\x99\x6b\x6d\x26\x35\x04\xae\x33\xa5\x19\x92\x05\xc6\xbc\x9a\x14\x0b\x02\xbb\x37\xa9\x22\x30\x36\x31\x49\x20\xf5\x00\x49\xc6\xbd\x73\x3d\x58\xfa\x28\x0c\x5c\x83\x49\x39\x0e\xbb\x9e\x38\xa1\x84\x09\x49\x2c\x26\x71\x42\x49\xaa\x49\xbd\x9b\xc4\xc0\x34\xd5\xbd\x0b\x3e\x58\x5d\x69\xa2\xb4\x40\x4a\x16\x98\x99\x2b\x5b\x2d\xc1\x17\x2b\x35\x37\x4a\x96\x3e\x78\xb1\x37\x66\xa6\xcf\x12\xf6\x2e\x04\xdf\x4c\x62\x7a\x0c\x2d\x63\x8e\x79\xa4\xcb\x86\x96\x7b\x80\x14\x28\x05\x93\x84\x52\xa4\x14\x21\xa1\x88\x31\x51\x4a\x7b\xd7\x8a\x4f\x90\x32\xa5\x0c\x17\xd3\x17\x4a\x05\x2e\x14\x31\x56\x4a\xd5\xa4\xc8\xc0\x46\xa9\x99\x14\x98\xbe\x53\xea\x26\x25\x16\x21\x94\x04\x12\xd3\x8f\x94\x46\x54\xef\x21\x4d\x94\x26\x48\xe8\xc4\x38\x53\x9a\x51\x57\x86\xb4\x50\x5a\x20\x75\x48\x4a\x49\x51\x6a\x85\xc4\x7e\xd9\xd0\x8a\x47\xae\x89\xfd\xb2\xa1\x95\x80\x5c\x13\xfb\x65\x43\x2b\x09\x45\x4c\xec\x97\x0d\xad\x44\x06\xb2\x5f\x13\xfa\x95\xf0\xc6\x89\xfd\xb2\xa1\x95\xc2\x5c\xec\xd7\x84\x7e\x01\x80\x3c\xb1\x5f\x13\xfb\x85\xba\x26\xf6\x6b\x62\xbf\xd0\x09\x6e\x05\x0c\xad\x24\xe6\x62\xbf\x26\xf4\x2b\xb3\x08\xf6\xcb\x86\x56\x3c\x8b\x60\xbf\x6c\x68\x25\x62\x85\x26\xf6\xcb\x86\x56\x02\xdf\xc8\x7e\xd9\xd0\x0a\x29\x9c\xd8\xaf\x09\xfd\xca\x26\x75\xf2\xd5\x6d\x0f\x85\x00\xc8\x85\xac\x0a\xc0\x8c\x28\x55\x08\xa6\xc0\x15\xb1\x42\x23\x5d\x23\x5c\x19\x98\x8c\x74\x8d\x70\xe5\x66\x5d\x9d\xe8\x9a\xe0\x2a\xa0\x70\xa2\x6b\x82\xab\x16\x9b\xd0\x4c\xd7\x0c\x57\xeb\xc6\xd7\x4c\xd7\x0c\x57\xcf\x36\xa1\x85\xae\x05\x2e\xc1\x09\xb0\xd0\xb5\x98\x2b\x7a\xb4\x50\xe9\x52\x73\xc5\x80\x9d\xa6\x74\x29\x5c\x11\x4b\xbb\xd2\xb5\xc2\x95\xb2\x55\xbf\xd2\xb5\xc2\x95\x83\x1f\x76\xc2\x93\x54\x3c\x5c\x68\xa1\xf8\x4e\x09\xae\x62\x14\xca\xf5\x34\xc6\xc1\x17\x9b\xed\x0e\xe1\xc1\x27\x38\x99\x62\xeb\x75\xd8\x49\xa4\x2b\xc2\x25\x86\x89\x44\xba\x22\x5c\xd2\xf2\xb0\x13\x9e\x39\x82\x33\x27\x79\xdb\x8f\xc2\x33\x47\x92\xb9\x52\xa8\x71\xd8\x09\x4f\x13\xc1\xd1\x91\x62\x6f\x26\xd1\x95\xe1\x4a\xc5\xaa\x2f\x74\x15\xb8\x72\xb3\xea\x0b\x5d\x05\x2e\x10\x2d\x95\xae\x0a\x57\xad\x56\x7d\xa5\xab\xc2\xd5\x0c\x5f\x69\x74\x35\xb8\x7a\xb1\xea\x1b\x5d\x0d\x2e\xb1\x6d\x25\x9d\xae\xde\xe2\xde\x65\x6f\xdb\x5d\xc8\x97\x80\xaf\xec\xed\xf4\x15\xf2\x25\xe0\x2b\x87\x6e\x81\xe4\x4b\xc0\x57\x8e\xb6\x1c\x42\xbe\x04\x7c\xe5\xd4\x6c\xda\xe4\x4b\xc0\x57\xce\x58\x0e\xf2\x25\xe0\x2b\x97\x6a\xe9\xc9\x97\x80\xaf\x5c\xb1\x1c\xe4\x4b\xc0\x57\x6e\xd9\xa6\x4d\xbe\x04\x7c\xe5\x8e\xe5\x20\x5f\x02\xbe\xb2\x24\x9b\x36\xf9\x12\xf0\x95\x05\xcb\x41\xbe\x04\x7c\x95\x10\xad\x7a\xf2\x25\xe0\xab\x04\x2c\x07\xf9\x12\xf0\x55\x52\xb0\xea\xc9\x97\x80\xaf\x92\x6c\x39\x70\x8e\x2f\xeb\xf5\x16\x4d\xd6\x68\x25\x72\x0a\xe4\x4a\xf1\x1e\x37\xf8\x97\x7b\x77\x88\xf1\xdb\x9b\x58\x09\xa4\x02\xc8\x52\x6c\xfd\x94\x40\x2a\x80\x2c\xd5\x6e\x29\x25\x90\x0a\x20\x4b\xb3\xf5\x53\x02\xa9\x00\xb2\xf4\x66\x2f\x27\x90\x0a\x20\x8b\xd8\xfa\x29\x81\x54\x00\x59\x7d\xcd\x26\xd1\x05\x20\x6b\xb0\xe3\x47\x09\xa4\x02\xc8\x1a\x4b\x34\x89\x2e\x00\x59\x93\x5d\x10\x4a\x20\x15\x40\xd6\x9c\xbd\x49\x74\x01\xc8\x8a\x2b\x49\x09\xa4\x02\xc8\x5a\xa3\x55\x4f\x20\x15\x40\xd6\x6a\xd7\x9b\x12\x48\x05\x90\x15\x57\xb8\x12\x48\x05\x90\xb5\xdb\x55\xa9\x04\x52\xbb\xb9\x9a\xf7\x56\x7d\xa7\x0b\x40\x36\x5f\xad\x7a\x02\xa9\x00\xb2\x05\xbb\x89\x95\x40\x2a\x80\x6c\xb1\x58\xf5\x04\x52\x01\x64\x4b\x76\x71\x29\x81\xd4\x91\x77\x6c\xb6\xea\x47\xdc\xb1\x3a\xda\x85\xda\x63\xcf\xff\x59\x3f\xfb\xdf\x3e\x67\xbf\x7e\x5e\xce\xaf\xe7\xb3\x6e\x17\x7c\xcc\xe2\x33\xd2\xbe\x03\x0f\x9b\x7e\xfd\x30\x3e\x1d\x4f\x16\x85\xbf\xbf\x03\x00\x00\xff\xff\x88\xa2\x71\x91\x44\x0b\x00\x00"); -func _bfb ()(*asset ,error ){_add ,_gcdf :=_cbb ();if _gcdf !=nil {return nil ,_gcdf ;};_dgb :=bindataFileInfo {_ag :"Adobe-Korea1-UCS2",_bc :144546,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490590,0)};_eefe :=&asset {_cd :_add ,_dce :_dgb };return _eefe ,nil ; -};var _bdeg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xcf\x2d\x39\x72\xe6\xb7\xaf\x4f\xf1\x2e\xc7\x8b\x71\x9f\xe4\x7f\x02\x85\x0b\x68\x24\xcd\xb8\x17\x9a\x31\xac\x91\x6d\xc0\xf0\xe2\x24\x83\x14\x0a\x70\x57\x15\xaa\xab\x17\xfa\xf6\x46\xfe\x7e\xa7\x65\x43\x36\x70\xb5\xe8\x7e\xea\xc6\x9b\x99\x87\xc9\x8c\x08\x06\x19\x0f\x83\x7f\xf8\xdb\x3f\xfe\xdd\x1f\x7f\xfe\xe9\xf7\xaf\x3f\xfc\xcf\xbf\xfd\xb2\xfe\x71\xff\xfe\x75\x7e\xfa\x39\x7e\xdb\x7f\xfe\xe5\x2f\xbf\xad\xfd\x75\xef\x7f\xfe\xe9\xe7\x1f\x7e\xb8\xd2\x57\xfc\xb4\x7e\xff\xeb\x3f\x81\xf5\xa7\xf7\xaf\x3f\xfc\xf0\xdc\xff\x8f\xff\xf2\xe7\xdf\xf7\x9f\xfe\xf8\xf3\xf9\xe5\x2b\x7b\x5d\xfc\xe5\xd7\xcf\xb5\x5f\x5f\x7f\xf8\x5f\xf6\x3f\xff\xf4\xe7\xdf\x7f\xfb\x97\xaf\xff\xf0\x37\xf1\xcb\xbd\xff\x87\xaf\xd8\xe7\x91\xff\xb7\xdf\x62\xff\xf6\xd3\xcf\xff\xfc\xf5\x1f\xfe\xcb\x7f\xba\xfe\x55\xfa\x8f\x7f\xf9\xf5\xd7\xff\x6b\xff\x69\xff\xfc\xfb\xd7\x85\x6c\xff\x1c\xe0\x0f\x7f\xf8\xdb\x7f\x78\xff\xfa\x5f\xdf\x7f\xda\x5f\x7f\xf8\x2f\xff\xe9\xbf\xff\xc7\xbf\xff\xa7\xbf\xfd\x8f\xff\x13\x7f\xe1\x0f\xff\xeb\xfe\xed\xcf\x3f\xfd\xf2\xf3\xd7\xf5\xfa\x1f\x5f\xaf\xf6\xff\xc8\xff\xfb\xbf\xfc\xba\x3f\x4f\xfa\xe1\x0f\xff\xf4\xc7\xbf\xfb\x6f\xe7\xfc\x79\xff\xfe\x55\xc6\xcb\x6b\xfe\xf7\x7f\xfa\xe3\xdf\x7d\xfd\x1f\xd7\xd7\xf5\xfa\x4a\x35\xf7\xd7\xff\xf9\xb9\xf4\x7f\xfb\x87\x5f\x62\x7f\x79\xd1\x0f\xc9\xb7\x59\xbf\xc4\xfe\xf3\xaf\xef\xb5\x7f\x7b\xff\xfc\xcf\xfb\x87\xaf\xaf\x1f\x5f\xaf\x6f\x5f\x5f\x5f\x3f\x8e\xd7\xb7\xe7\x5f\x7f\x73\xfd\xcd\xf5\xed\xeb\xc7\xff\xfc\xf7\xff\xf9\xef\xbf\x3d\xed\xfe\x37\xd7\xff\x70\xf9\x98\x9f\x7f\xf9\x3d\xf6\x51\xc6\x13\x7e\xbc\xce\xb7\xaf\xde\xaf\xf6\xdc\xf4\xff\xfe\xeb\x0f\xd7\xeb\xf5\xf9\xe9\x9f\xe2\x73\x43\x7a\x6e\x78\xfe\x8f\x1b\x7e\x4c\xcf\x2f\xf6\xfd\xed\x6b\x5c\xe5\x87\x1f\xdf\xd7\xfb\xf9\xf7\xfb\x3a\xfb\xdb\xd7\x6c\x3f\xfc\xf8\x4e\x37\x82\xb4\xd3\xb7\xaf\x6b\xbe\x1e\xc9\xae\x4a\xf6\xb7\xaf\x54\x90\x1c\xaf\x39\xeb\xdb\x57\xaa\x8f\x24\xfb\x98\xfc\x3c\x26\xb5\xf4\xc3\x8f\xef\xa2\xa4\x9c\xfc\xed\x2b\xd7\xe7\xc9\x55\x49\x3d\xed\xdb\x57\xc9\xf3\x87\x1f\xdf\x4d\x49\xbb\xc7\xb7\xaf\x9a\xea\x23\x59\x4a\x4e\xfd\xf6\x55\xcb\x73\x4d\xf7\x9a\xfe\xfc\xa1\xbd\x9e\x27\xf7\x50\xf2\x34\xa2\xe5\xe7\xae\xe1\x35\x63\xbd\xbe\x7d\xb5\x36\x1e\xc9\xa2\xcd\x63\xbf\xbf\x7d\xf5\xd7\xd3\xc2\xf9\x2e\x8f\x64\xee\xa7\xeb\xf2\x73\xcd\xdb\xbb\xde\xe7\x5f\x3b\xe3\x56\x72\x3f\xcf\x99\xaf\xf1\xc3\x8f\xf7\x0b\xc9\xfd\x7a\xf7\x6f\x5f\xf3\x79\xf7\xfb\xf5\x1e\x4a\x06\x3d\xda\x11\x4d\x45\xf3\xb9\xc8\xdb\xde\x4a\xde\x5c\xa4\xe8\x56\xb4\xbe\x7d\xcd\xea\x93\x42\xc9\xe6\xa2\x89\xe8\x20\x7a\x3a\x64\xd6\xf2\x48\x6e\x9f\xfd\x40\xef\xe9\x42\xe4\xc3\xef\xf3\x7c\xb2\xfa\x48\x9e\x06\x7f\xa0\xf7\x94\x10\xd9\xf0\x48\xdf\xbe\x66\x47\x12\x59\x49\xe6\xa2\x8c\xa8\x28\x2a\xdf\xbe\xe6\xe4\xd9\x51\x95\x54\x2e\xa2\x05\xd1\x14\x3d\x6f\x37\xbd\xcd\x06\x04\x6f\x97\x68\x41\xf8\x76\x0f\xcc\xc9\xfb\xc6\x52\xb2\xb8\xa8\x21\xf2\x85\x77\xfe\xf6\x75\xbd\x5e\xf4\xc1\xb6\x05\x0f\xf4\x9e\xe8\xcd\x6d\x13\xf6\xcd\x55\x3c\x6b\xfb\xac\x1d\x5c\xa5\x68\x2b\xda\xcf\x55\x7e\x86\x6d\xe7\xf1\x85\x7b\xe6\xf1\xc7\x8e\x39\x89\xab\xe8\xe2\x63\x37\x1c\xba\x21\xf3\xd2\xc7\x46\x3c\x8a\x79\xbd\xec\x99\xd3\x15\x75\xae\xa2\xff\x8e\x1f\xfe\x81\xeb\x65\x53\x8f\x1f\xe7\xf0\x71\xb2\x37\xda\x37\x87\x76\xa5\xe7\x17\x35\xb1\xfb\x7a\x14\xf0\x7a\xe5\x82\xa8\x2a\x6a\xdc\xa8\xa8\x2b\xea\xcf\x55\xa8\xda\xa5\xaa\x5d\xaa\x5a\x6e\x88\xa6\xa2\x37\x57\x25\x44\xb7\xa2\x9b\xab\x3a\x22\xfa\xeb\x7a\x4c\xf9\x7a\x95\xe7\x03\x5d\x77\x52\x94\xb8\x6a\x20\xca\x8a\xf8\x1c\x95\x67\xdd\x45\x11\x9f\x3f\xd3\xfa\xbb\x29\xa2\x73\xaa\xcf\xb2\xa9\xea\x64\xb9\x10\xf1\xda\xd7\xa3\x81\xd7\xab\x72\xa3\x1a\x08\xf4\x5e\x78\xc7\x65\x23\xd6\x7c\xae\x6a\x34\x75\x7d\x6e\x44\x97\x6c\xea\xf2\x85\x16\x5d\xd8\x79\xed\xc5\xa7\xbd\x02\x05\x2f\x88\xc2\xc7\x07\xef\x38\x68\x7d\xf8\xf8\xe0\x1d\x31\xc4\x4b\xa5\xbf\x82\xbe\x1f\x34\x42\x15\xbf\x54\xf1\x42\x53\x55\xf1\x2b\xf8\xc5\x41\xbb\xc2\x5f\xdc\xb4\x1e\x7b\xbd\xb6\x8f\x57\x7d\x27\x37\xaa\xbe\x97\xea\x5b\x33\x22\x1f\xbf\x9f\xfe\xba\x5e\xb4\x6b\xdb\x5f\x9b\xef\x88\x59\x5f\xdb\xef\xf8\xc0\x75\xbd\x78\xa1\x6d\x4f\xe0\xb2\x7a\x55\x64\x4f\x3c\x7a\x7f\x5d\x98\xc2\xa5\xde\x03\xbd\x57\x9a\xaa\xde\x5f\x8f\xae\x5f\xd7\xc5\x2f\x1e\x3b\xe7\xd8\x7a\x6e\x3c\xb6\xfe\xd1\xfb\xeb\xba\xe8\x68\xf5\xfe\x52\xc9\xfd\x68\x2a\xf9\xf5\x78\xf6\xeb\xc2\xdd\x5c\x27\x14\x61\x7c\x8d\x77\x3c\x36\x02\x25\xbf\x30\x85\xa4\x92\xa7\x47\xb1\xaf\x0b\x13\x4d\xef\xa6\x88\xc7\xb7\x82\x68\x28\x7a\x6c\xfb\x7a\x7c\xf7\x9d\xd4\x55\xa0\xf7\xd6\x10\xf1\x8b\xe9\x51\xc6\xeb\xc2\x14\xd2\x5d\x15\xf1\xd1\xd0\x9c\xa4\x62\xa6\xc7\x57\x5e\x17\xdf\x31\xe9\x2c\x93\x8a\xd9\x68\x84\x8a\x99\x16\xed\xe2\x0b\xa5\xe5\x8d\x0b\xe3\x6b\xdc\xb8\xba\x22\x3a\xda\x46\x2c\xde\x31\x05\xad\xef\x2f\xc6\xe7\xbf\x0e\xaa\xff\x7f\xe3\xec\x9d\xc2\x97\x0b\x1e\x32\xf8\xa9\xf8\x3c\x84\xaf\x35\x78\x13\x15\x0b\xb8\x18\x60\xef\xb4\xf1\x52\x40\xef\xe3\x42\x64\x77\x3e\x70\x5d\x33\x21\x4a\x8a\x70\x5c\x43\x51\x51\xc4\x77\x98\x74\xa7\xca\x90\x74\x82\x28\x7c\xd2\x09\x26\x9c\x60\x7a\xd1\x77\x3a\x41\x06\xf0\xde\x07\x37\xfa\x99\x13\xdf\x34\xa5\xa7\x5d\x0e\xea\x77\x7e\x63\x4f\x3c\x3e\xbf\xb3\xa2\xcc\x55\x05\x51\x51\x44\x47\xcd\x8e\x68\x28\x1a\x5c\x35\x11\x4d\x45\xcf\xa7\x19\xaf\x0b\xd1\x5b\xd1\xd3\x5f\x29\x2b\xda\x8a\x36\x57\x25\x44\xbc\x50\x46\x19\x12\x4e\x30\xab\x0c\x40\x1f\xaf\x8c\xa8\x29\xe2\x17\x8b\x22\x7f\xf1\xf6\x17\x69\xaa\xca\x90\x6f\x7e\xb1\xd0\xd4\xdb\x5f\xbc\xfd\x45\xde\xf1\xf6\x17\x1f\xc7\x75\x25\xfc\x62\xd6\x71\x01\x7d\x60\xae\x79\xd9\x13\x8b\x9e\xa8\x8a\xec\x89\x07\xfa\xa0\xa3\xf3\xb2\xa9\xa8\x5f\xc2\x10\xb3\xea\x07\xf4\xf1\x52\xd4\x15\x3d\x56\x97\x1a\x7d\xbf\x42\x51\x70\x15\x5d\xa8\x46\x02\x57\x6a\x3e\xfe\xd3\xd4\xe7\x6b\x8f\x8b\x1b\x83\xaf\x9d\xf1\x8b\x09\xed\xce\xfa\x45\xa0\x8f\x8b\x8e\xd6\x2f\xe6\xa0\xbf\x88\x0f\x72\xd8\x5f\x41\x7f\x5d\x8a\xec\xaf\x07\xae\xd4\x7d\xd6\xad\xe8\xe6\x2a\x3a\xda\x91\x1e\xb8\xd2\xf0\xf1\xb6\x3e\x68\xfd\x45\xdf\x6b\x0a\x99\xb8\x32\x61\x1d\x79\xdb\x08\x34\x7a\xe0\x92\xb2\x1a\x0d\x5c\x69\xf0\x8b\x3a\xd4\xbc\xe9\xaf\x8b\x8e\xd6\xa1\x02\x57\xc2\x3a\xf2\x56\xe5\xf0\xb1\x83\x88\x2b\xeb\x63\xf3\xa6\xf5\x93\x46\xe8\x50\xf3\x13\x4f\xf4\x71\xf9\x78\x9b\x8a\x0d\xa5\xe9\x8d\xf6\x2a\x36\x34\x70\x82\x59\x1b\x02\xae\xac\xfa\xea\x63\x81\x3e\x08\xba\xb2\x3e\x16\xb8\xb2\x8a\xa9\xa5\x01\x7d\x24\x45\xbe\xe3\x13\x35\x5c\x59\x95\x33\x6a\xc8\x87\x5e\xd5\xac\x8e\xbd\x8a\x3d\x66\x3a\xda\x90\xfa\x2e\xd8\xe3\x20\xa4\x2a\xda\x63\x21\xb6\xc8\xbc\x76\x31\xb6\x28\xc4\x16\x23\x29\xea\x8a\x9e\x9e\xc8\x34\xb5\x18\x35\x00\x7d\x10\x2c\x15\x3d\x71\x79\xf3\x8b\x78\xf5\xa2\xf1\x01\x7d\x60\xa2\xe5\xa6\x27\xca\xcd\x3b\x7e\x44\x36\xe2\x46\xef\x09\x96\x8a\x26\x5a\x9e\x48\xe1\xca\x58\x6d\xb9\x87\x22\xbe\x10\x31\x4f\xd1\x44\xcb\xcd\x2f\xe2\xe8\x8b\xc6\x07\xf4\xc1\x08\x51\x8c\x6e\x0b\xf6\x98\xb1\xda\xa2\x3d\x16\xed\xd1\xc7\x6b\x8f\xe5\x31\xab\x2b\x33\x60\x17\xcd\x0a\xe8\x23\x7b\xa3\x8d\x20\x02\xc9\xd5\xc7\xbf\x15\xbd\xb9\x8a\xfe\x32\x02\x29\xd8\x63\xae\x8a\x42\x11\x1a\x4d\x64\x54\xb4\x47\xe0\xca\x8d\x9e\xd0\x1e\x8b\xf6\xe8\x0b\x69\x8f\x25\xe8\x2f\x86\xcf\xa2\xf1\x95\xa0\xbf\x88\x9f\x8a\x41\x49\x09\xda\xc5\xc8\x55\x34\x3e\xa0\x8f\xe2\x8d\xb6\xeb\x81\x2b\x77\xba\x50\xe3\x03\xfa\x28\x8a\x6c\xea\xa6\xf5\xc4\x4f\x65\x7f\x44\xb4\x9e\x28\xab\x18\x48\x00\x57\x26\xae\x2f\xea\x7d\x51\xef\x89\xb2\x8a\x7a\x5f\x0e\xdf\x91\x21\xa0\x18\x22\x00\x7d\xf8\x39\x8c\x83\xcb\xa3\xc5\x57\xc1\xd5\x96\x63\x53\xd5\x68\x62\xb1\xa2\x46\x17\x34\xba\xe0\x1e\x9d\x12\xde\xf5\xd1\xe8\xab\xe0\xbf\xaa\x1a\x0d\xf4\xc1\xb0\x5e\x1d\x61\x80\xab\x5c\xf9\xfb\x43\x71\xd5\x06\x2a\x91\xf3\xa8\x3e\x77\x2a\xba\x79\xc8\x40\xb4\x14\xd1\x77\xc4\x65\xd5\xd0\x03\xb8\x0a\x96\x52\x1d\x93\xaa\x36\x80\xca\x54\x6d\x00\xb8\x4a\x52\xe4\x9b\x38\x26\x11\x97\x55\xc7\x24\xe0\x2a\x58\x4a\x35\x72\x06\xfa\x68\x3c\x5e\xb3\xa8\x8f\x29\x5c\x85\x39\x44\x75\x98\xaa\x37\xed\x6a\x8a\x6c\x17\xe3\x48\x41\x49\xab\xe3\x48\x75\x1c\x21\x66\xa9\x2a\x7c\x5d\x7c\x87\xe2\x55\xb7\x22\xbe\x03\x83\x46\x5d\xbe\xf6\xa3\xa4\x57\x21\x24\xaa\x2a\x29\xd0\x07\xea\x57\x8d\xaf\x2b\x7a\x5b\xaa\x22\x3f\x0d\x33\xc8\xc1\xd0\x52\x9d\x41\x56\x7c\x7f\xc1\x06\xaa\xea\x57\x83\xfe\xea\xf4\xbd\x01\x4e\xc5\xf7\x97\xce\x2f\xea\xfb\xab\xbe\xff\x23\xf2\x59\x9b\x77\xec\x34\x75\xfb\x8e\x9b\xfe\x42\xe1\xab\x8e\xbe\xa2\xdd\x85\xd1\xa6\xaa\xdd\x55\xed\x46\xe1\xab\xda\x5d\x0f\xcf\x22\xa2\x67\xdd\xe1\x01\x9f\xa5\xc8\x67\x11\xed\x96\xa9\xc8\x67\x1d\x9f\xc5\x3b\x9e\xcf\xb3\x1e\xbd\xad\x78\x75\x17\x2e\xee\x46\x18\x54\x51\xf8\xa6\x92\xb6\x37\x0a\x40\xa8\xd7\x0c\x80\x81\xab\x32\x86\x37\x3d\x31\xd0\x07\x41\x5c\x33\x58\x02\xae\xca\xe8\xdc\xd4\xd5\x66\xb0\x34\xfc\xc5\xb7\xa2\x37\x57\x29\xba\x15\xf1\x69\x87\x8d\x58\x8a\x68\x2a\x23\x6a\xd3\x85\xb7\x9b\x4f\x4b\xa8\xd7\xd4\xd5\x86\x0b\xaf\x84\x7a\x4d\x17\x0e\xf4\x41\x7f\x35\xe7\x82\x0d\xf5\xad\x8c\x5c\x4d\xf5\x6d\xaa\xef\x18\x88\x6c\x3d\x2e\xbc\x26\x6f\xf4\x17\x99\xf8\x0d\xc6\xf0\xa6\xbf\x6e\x04\x4b\x15\x4f\xdc\x0c\x96\x9a\xc1\x12\x63\x78\x33\x58\x02\xae\x8a\xf7\x6c\x2a\x79\x53\xc9\xf1\x52\x4d\x25\x6f\x38\xe7\x5a\xbc\x31\x14\xf1\xd1\x18\xe9\x9b\xce\x19\xb8\x58\x49\xba\x9b\xce\xb9\xa9\xe4\xf8\xb2\xa6\x92\x37\x94\xbc\x12\xea\x35\x95\xbc\xe9\x9c\xd1\x89\xa6\x73\x06\xae\x4a\xa8\xd7\x9c\x31\x02\x7d\x30\x17\x6c\x61\xbb\x08\xa9\x2a\x06\xd3\x0c\xa9\x80\x3e\x59\xf0\x68\x7a\x75\xe0\xaa\x18\x4c\xd3\xab\x03\x7d\xbe\x14\xf9\x1d\x1f\xbb\xb9\x2a\x1e\xa0\x39\x23\x00\xfa\x24\x34\x6e\xce\x08\xda\xe6\x17\xb1\xc7\x66\xcc\x03\xf4\xa9\xae\x3a\xaf\x6c\xac\xa7\x54\xf4\xbe\xed\xcf\xe3\x17\x57\xd1\x5f\xda\x10\x70\x55\xd5\x57\x1b\x6a\x0c\x07\x93\x38\xa5\x39\x1c\x00\x57\x55\x31\x0d\x83\x80\x3e\xf1\xea\xcd\x30\x88\x45\xbc\xab\xaa\x72\x1a\x1f\xd0\x5d\x5a\x6b\x2e\xb1\x34\xd6\x53\x2a\x13\xa1\xe6\x38\x02\xf4\xa9\xc1\x18\x19\x01\x57\x55\x01\x1c\x5a\x1a\x93\x97\x79\x79\xa3\xad\xd7\x44\xe7\xf3\x85\x5c\x37\xbc\x3b\xe3\xc8\x24\x9c\xed\x9a\x68\xc7\x1e\x1b\x1d\xdd\xb5\x47\xa0\x4f\x0c\xa6\x6b\x8f\x1d\x1b\x6a\x2f\x45\x68\x4e\xc7\x86\x26\x21\x68\xd7\x86\x3a\x36\xd4\x88\x70\xbb\x36\x04\xf4\xc9\x08\xd3\xb5\xa1\xfe\x8c\x0a\x57\x63\x95\xaa\x3b\x2a\xf4\xdb\x5f\x9c\x88\xfc\x45\x26\x2f\x8d\x78\xb3\x1b\x19\x01\x7d\x7e\x44\xf4\x44\x5f\xfc\x22\xf6\xd8\x8d\x79\x3a\x36\x34\x19\xad\xba\x36\xd4\x17\xcf\x22\xca\xea\xcb\x67\x2d\x9f\xa5\xe8\xf3\xac\x9b\xab\x68\x84\xa3\x02\xd0\x27\x63\x5a\xd7\xac\x3a\x36\xd4\x8a\x8f\xb7\x27\x08\x70\x66\x6a\xdf\x1f\x8a\xbb\x43\x0b\x70\x35\x42\x0f\x17\x70\x85\x3e\xf1\x19\xdd\x29\x4a\x0f\x3e\x4d\x51\xe4\xa7\x79\xec\xa9\x4f\xe2\xd8\xae\x3d\x75\xe2\x9f\xc6\x80\xdd\xb5\x14\xa0\x4f\xe2\xd8\xee\x00\xd4\x59\xcd\x69\xd5\x1b\x6d\xb6\xc6\xc3\x50\xdc\x35\x1e\xe0\x6a\x98\x58\x77\x4c\x02\xfa\xb4\xef\x1c\x93\x3a\x63\x52\x63\xb1\xb5\x3b\x26\x75\x66\x1a\x33\x2b\xb2\x5d\xcc\x34\x1a\x43\x5e\x77\xa6\xd1\x19\x93\x26\x03\x76\xd7\x9e\x80\xab\x75\x6f\xfc\xb4\x8b\xee\x24\x12\xec\x9a\x58\x67\x9d\xa6\x61\xae\xdd\x09\x03\xd0\xa7\xdf\xe1\xf8\x99\x89\xcb\xda\x50\xa4\x16\x11\x97\x4d\xe2\xc5\xae\x3d\x75\xcc\xa2\x8d\x47\x6f\x5d\x2a\xbf\x87\x36\x80\xdb\x1d\xda\xc0\x78\x7b\x63\x41\xc4\x8d\x03\xed\x66\xfd\xfc\x1e\x6a\xf7\xb8\x6d\x04\xcf\x32\xc8\x1f\x84\x2e\x1d\x13\x1b\x2a\x29\xd0\x5d\x0b\x1f\xf7\xad\xe8\xe6\x2a\x45\x4b\x11\x1f\x0d\xe7\x3c\x0c\x70\x80\xab\x27\x7f\x71\x2b\xa2\x73\x08\xe2\x86\x53\x81\x81\x0d\xb8\x86\x3d\xb4\x01\xa0\x4f\x5c\xf8\x70\x68\x21\x07\x70\xb9\xa8\x3c\x1c\x47\x06\x53\x81\x59\xbd\x71\x28\x7a\x2c\xc5\x85\xe0\xa1\xa5\x0c\x2d\x85\x50\x6f\x68\x29\x03\x1b\x70\x89\x77\x68\x03\x43\x1b\x60\x38\x18\x2a\xf9\x60\x1c\x71\xdd\x74\x38\x8e\x0c\x46\x88\x49\x40\x38\xd4\xe8\xc1\x08\xe1\x2a\xe6\x50\xa3\x07\x41\xfe\x64\x38\x18\x0e\x07\x83\x65\x46\x57\x1e\x87\x5a\x08\xf4\x89\xae\x0e\x67\xc5\x03\xdf\xdf\x9b\x57\xf9\x2c\x7d\x3f\xeb\x6d\x43\xdf\x0f\x5c\x1d\xf5\x1d\xfb\xf3\x78\x46\x9b\x8f\xc8\xcf\xc1\xb4\xd5\xc5\xb5\xe1\xb4\x15\xe8\x93\xe0\x72\xa8\x85\xc0\xd5\x51\xdf\xa1\x16\x0e\xbd\xfa\xe7\x46\xdf\x11\xc5\xec\x9d\xaf\xad\x62\x0e\x15\x93\x61\x6a\xa8\x98\x03\xc5\x74\x5d\x6c\xaa\x98\x93\xf5\xef\x8e\xae\x4e\x3d\xf1\x54\x31\xbb\x57\x4d\x45\xa8\x09\x23\xfd\x34\x3e\x07\xfa\xec\x17\x22\xbe\xd0\x24\x3e\x1f\xa8\xef\xd4\x5f\x03\xdd\x84\xc8\x74\x49\x1c\xb8\x5c\x46\x9a\x2a\xf9\xd4\x85\x77\x45\x45\x51\xe1\xaa\x8a\xa8\x2a\xaa\x5c\x45\x23\xf4\xea\x13\x17\xee\xd2\xcf\xd4\x85\x4f\x4d\xa1\x7b\x23\x7d\x3f\x51\x4c\x97\x58\xa6\x8a\x09\xf4\x89\xb9\x4f\x03\x9c\x49\x14\xef\x62\xc0\x5c\x9f\x1b\xf9\x68\xf4\xea\xd4\x5f\x4f\xa2\xf8\xc1\x1a\xdb\x54\x0b\x81\x3e\xbb\x22\x5f\xfb\xd1\xbc\xcb\x49\xf7\x74\x99\x72\xea\x57\xed\x7b\xb5\x70\x12\x94\x0c\x1c\xcc\x54\x0b\xa7\x41\x09\x61\xf6\xd4\xd5\x02\x97\x93\xc8\xa9\xab\x05\xfa\x1c\xde\xe8\xe7\xc0\xfb\x3a\x3d\x9c\x7a\x5f\xa0\x4f\xa2\x86\xe9\x8c\x00\xb8\x9c\xe5\x4d\x03\x9c\xa9\x8f\x26\x9c\x9d\xfa\x68\xe0\x1a\x95\x46\xe8\xa3\xa7\x3e\x9a\xd8\x62\x6a\x1d\x13\x1f\x3d\xaa\x8f\xb7\x57\x59\x33\x9a\x2a\x93\x6b\x46\x13\x83\x19\x55\x91\xaf\x6d\x18\x44\xd0\x3b\x0d\x83\x80\xcb\x09\xda\xd4\x6d\x03\xdd\x2c\xd9\xd4\x6d\x4f\xc2\xa0\x81\xa5\x4d\xc3\xa0\x69\x18\x84\x5f\x9d\x86\x41\xc0\xe5\xd4\x6b\x6a\x56\xf3\xa0\x39\x44\x33\xd3\xc8\x68\x62\x30\x43\xf5\xd5\x60\xa6\x06\x43\x34\x33\x35\x18\xe0\x72\x22\x34\x8d\x8c\x80\x3e\x67\xff\xfe\x50\x3c\x0d\x9c\x26\xd3\x1d\xe7\x49\xd3\xc0\x09\xe8\x26\xee\xa6\xd3\x1d\xe0\x72\x06\x64\xa6\xf4\x7e\x33\x68\x38\xb7\x79\x3b\x68\xbc\x0d\x9c\xa6\x57\x0d\x45\x68\x11\xdd\xf9\x76\x8a\x02\x0c\x33\x7e\x6f\xa7\x28\x6f\x06\x8d\x41\x77\xbe\x1d\x34\x80\xf1\x7a\x29\xf2\xc6\xc7\x93\x5f\x93\x05\xd7\xb7\x91\x0d\x30\x5e\x04\xc0\x6f\x8d\xe7\xcd\x5a\xe7\x24\xbc\x7a\x1b\x48\x00\xe3\x85\x51\xbf\xf5\xc4\x6f\x62\x0b\x43\x84\xb7\x9e\xf8\xfd\xd8\xc0\x78\x11\x00\xbf\xb5\x81\x37\x6e\x77\xb2\xa4\xf4\x56\xb1\x80\xf1\xb2\x11\xba\xdd\x37\x2b\x8f\x8e\x6f\x6f\x27\xa4\xc0\x78\x61\xfa\xef\xfd\x79\xd6\x33\xe4\x39\x26\xbd\xf5\xb1\xc0\x30\xab\xf9\x56\xd7\xde\xe8\x87\xe3\xc8\x5b\xfd\x00\xaa\xb1\xe7\x5b\xb7\xfb\x46\x3f\xf4\xfd\x6f\xf5\x03\x18\x2f\xc2\xe4\xb7\xfa\x41\x2e\xfb\x9a\x4c\xe0\x4d\x66\xdf\x37\x73\x54\xbd\xd4\x6d\x00\x0c\x8c\x17\x91\xf3\xed\x4a\x09\x70\xe9\x59\x6e\xa7\xad\xc0\x78\x31\x21\xbd\xfd\xda\x37\x73\x54\x7d\xc6\xad\x27\xbe\xdf\x7c\x34\x7c\xd9\xed\xd7\xbe\x9f\x2f\x7c\x69\xc1\xb7\xeb\x29\xf7\xe3\x9c\xc7\xeb\x52\x74\x14\x1d\xae\xe2\x17\x5d\x4f\x01\xc6\x8b\xf8\xfa\xd6\x5f\xdf\x38\xe7\xc9\xec\xe0\xd6\x39\x03\xc3\x94\xef\xad\x73\x06\x2e\xed\xe9\xd6\x39\xdf\x4f\x7c\x3d\x5e\x97\x8f\x1f\x8a\x68\xfd\xf4\x46\x5b\xaf\xca\x11\x5f\xdf\xaa\xdc\xfd\x78\xcf\xa4\xae\xde\x7a\x4f\x60\x98\x18\xbe\xd5\x2f\x20\xfd\x55\x64\xbb\x82\x5e\xc5\x5f\xdf\xce\x18\xef\xc7\x09\xa6\x17\x2b\xb5\xb7\x4e\xf0\xde\xb4\x4b\x91\x9a\x73\x3f\xa3\x73\x32\x4d\x7b\x3b\x3a\x03\xe3\x95\x15\xa1\x39\xf7\xa1\x5d\xb8\xca\x5b\x67\x03\x8c\x17\xba\x7a\xeb\x6c\xee\x47\x5b\x92\x69\xda\xdb\xd1\xf9\x3e\xfc\x22\x93\xee\x5b\xcd\xb9\x1f\x6d\x49\x2f\xc2\x8d\x5b\x37\x02\x0c\xf3\xce\xb7\x7e\xe2\x86\xde\xf1\xc2\xbd\xdd\xfa\x09\x60\xbc\x8a\x37\x6e\x45\xbc\x23\xee\x6d\xa9\x72\x40\x7a\xa1\x85\xeb\x9d\x14\x61\x8f\x0c\x2d\xcb\x15\xbe\xf5\xa6\xa9\x0c\xeb\x4b\x2d\x5c\xaa\x1c\xb1\xeb\x52\xe5\x80\xf4\x42\x7d\x97\x0e\x66\x3d\x9a\x37\xec\xaf\xe5\xb2\x08\x90\x5e\xdd\x46\xdc\x8a\xe8\xc2\xa2\x68\x29\xe2\x85\x70\x69\x4b\xc5\x04\xc6\xab\xd8\x54\x5e\x68\x3d\x0a\x94\x5e\x0c\x79\xcb\x61\x7d\xdd\x58\x1a\x7d\xbf\xd4\x9c\x75\xf3\x8b\x38\xfa\xa5\xe6\x00\xc3\x44\xfa\x32\xc2\x5d\x8b\x8f\xc6\x5a\xc3\x32\x1f\x0e\x8c\x17\xc3\xd4\x72\x59\x04\x48\x17\x8e\x6f\x19\xce\x02\xe3\xc5\x14\x67\x19\xce\xae\xc7\xf1\xa5\xeb\xe5\x8d\xb6\x6b\xf1\x69\xab\x8f\xb7\x73\x9e\xd8\x35\x5d\xb8\xa1\x65\xec\x0a\x8c\x57\x55\x64\x53\x1f\x48\x17\x1e\x60\xad\x4f\x53\xe9\x09\xa6\x4b\xcb\xc5\x93\xf5\xc4\x16\xe9\x62\xb1\x69\x19\x5b\x00\xe3\x45\xbc\xb9\xb4\x8e\xf5\xa8\x7f\xba\xb0\xda\xe5\x72\xe0\x0a\xbe\x23\xfa\xb5\x74\xb5\x40\xba\x98\xa3\x2e\x23\x90\xa5\xf7\x45\xbf\x96\xde\x77\x3d\x11\x48\xba\x92\x22\x9b\x1a\xf4\x2a\x81\xea\x32\x02\x01\x92\x79\xe7\x65\x04\x02\x8c\x57\xb3\x11\xb6\x1e\xe3\xbb\x88\x8c\x96\xc6\xb7\x36\x7d\xaf\xae\x1a\x5b\x00\xe9\x22\xb0\x5f\xc6\x16\x4b\x7f\xaf\x62\xea\xef\xd7\xa6\xf5\x58\xda\xd2\x6a\x97\xfe\x9e\x48\x72\xe9\xef\x81\x74\x95\x7f\x47\xae\x78\x19\x98\x2f\x87\x83\xee\xaf\xfb\x26\xd0\xac\x2e\xa6\x61\xcb\x38\x63\x1d\x94\x81\x01\x7b\x39\x1c\xac\x83\x32\x10\x12\x2d\x23\x88\x75\x78\x96\x7a\xab\xb9\x2e\x6c\xf3\xe2\x6b\x85\xb6\x09\xa4\x8b\xc8\x26\xb4\xcd\x78\xa3\x45\x78\xe2\xd0\xc4\x02\x7b\xba\x88\xd5\x43\x7b\x8a\x37\x8f\x27\xe4\x0e\x8d\x27\xde\x3c\xbe\x2b\xa2\xa9\x71\x63\xe7\xc4\x2c\xa1\xbf\x06\xd2\xc5\xa0\x11\xfa\x6b\x60\x5c\x2f\x45\x55\x11\x7d\x47\x08\x19\xc6\x03\xc0\xd0\x2c\x42\x13\x8b\x9b\x2f\x6f\x53\x9d\x31\xc6\x33\x3d\x1c\x12\x2d\xc2\xe9\x21\x90\x2e\x86\x83\xd0\xea\x62\xf9\x8b\x15\x91\xbf\xb8\xf8\xa6\xc4\x3c\xa1\xf1\xc4\xf2\x17\x79\x6d\x2d\x25\x1e\xb3\x48\x89\x10\x21\x34\x8b\x58\xfc\x22\x43\x5e\x68\x16\xf1\x28\x7c\x4a\xde\xa8\xc2\x03\xe3\x62\xc8\x0b\x15\x3e\x1e\x25\x4f\x89\x91\x2b\x5c\x07\x04\x86\x74\x8c\x50\xe1\xe3\xd1\xd5\x64\x06\x3e\x0c\x93\x03\xbd\xd5\xc4\x42\xbd\x0d\x06\x8d\x84\x0d\x84\x83\x06\x30\x2e\x86\xbc\x70\xd0\x88\x47\x73\x52\xc2\xf7\x87\x9a\x13\x44\x0d\x17\x0b\x4f\x61\xd4\x10\x38\x7a\x88\x7c\x77\xa8\x39\xc0\xd0\x10\x43\x47\x0f\xa4\x84\xb3\xd9\x2a\xd3\xc6\xab\x5f\x49\x51\x56\x54\xb8\x6a\x20\xaa\x8a\x2a\x57\x75\x44\x4d\xd1\xd3\xf7\x09\x07\xb1\x55\x39\x60\xc8\x1c\xd9\xc6\x16\x40\x4a\x38\x88\xad\xa3\x07\x86\x46\xbd\x55\xcc\x8d\x57\x4f\x98\xfe\x56\x31\x81\x71\x11\xea\x6d\xbd\xfa\x7e\x62\x8b\x64\x3e\x7c\x1b\x5b\x00\xe3\x62\xe6\xbf\x9d\x0b\xee\x9b\xd6\x63\x8f\x5b\xc5\xdc\x04\x12\x17\x59\xcd\x6d\x20\xb1\xd1\x55\xf3\xe1\x5b\x5d\xdd\xea\x2a\x03\xf6\x56\x57\xf7\xcd\x77\x44\xa3\xb7\x8a\x09\x0c\xdd\xc8\x56\x31\xf7\xa3\x79\x29\xa1\xd1\xdb\xe5\x07\x60\x5c\x7c\xb4\xad\x0b\xdf\xf8\xd8\x44\xe8\xb2\xf5\xb1\xc0\xb8\x58\x59\xda\x86\x1b\xfb\x51\xb3\x94\x5f\x8a\x7c\x56\xf8\x2c\x9a\x1a\x9f\x67\x3d\xfd\x65\x46\x79\xeb\x3d\x81\x21\xd3\x66\xeb\x3d\xf7\xa3\x72\x29\xa3\xab\x5b\x95\x03\xc6\xc5\xe0\xbf\x75\x95\xfb\x71\x95\xc9\x8c\xf2\xd6\x55\x02\xe3\x2a\x8a\xfc\xda\x0f\xa4\xac\x9a\x38\x0d\x03\xc6\xc5\x48\xbf\x75\xa8\x40\x32\xef\xbc\x75\xa8\xc0\xd0\x17\x6e\x3d\xe6\x7e\xbc\x64\xca\x2a\xc0\xfe\x34\x55\x02\xa7\x8f\xc7\x0d\x6d\xc2\xa0\xcc\x7c\x77\x1b\x06\x01\xe3\x62\xd5\x65\xeb\x31\x81\x94\x7d\x21\xd7\x2d\xb6\xd6\x41\xd4\xb0\xb5\x8e\xfd\x44\x46\x29\xdb\x08\x23\xa3\x8d\xab\x95\x73\xb4\x35\x98\x8d\x75\x64\x02\x89\xa3\x75\x1c\x4c\xc1\x54\xf4\xd1\x14\x8e\xa6\x80\xdb\x3e\x9a\xc2\x41\xc9\x4d\x45\x1f\x95\xfc\xa8\xe4\x04\x12\x47\x25\x3f\x28\x79\x6e\x3e\x2b\x14\xf1\xd1\x08\x24\x8e\x4a\x7e\x16\xbf\xc8\x24\xe1\xe8\xe5\x80\x71\x11\x48\x1c\xa3\x06\x20\x65\x26\x68\xc7\xb5\x06\x60\x5c\x36\x42\x5f\x78\x70\x7c\x99\xf4\xcd\x59\x9f\xc7\xd3\xd1\xcc\x54\x8e\x8b\x60\x87\x68\x39\xe3\xef\x8f\xf1\xc0\x61\xea\x75\x11\x6e\x1c\x43\xe3\x83\x62\x16\xfc\xfd\x51\x31\x8f\x8a\x09\xe9\xec\xa8\x98\x07\x95\x33\x31\x7c\x54\xb9\xc3\x50\xec\x00\x76\xd4\xaf\x83\x9a\x98\xc0\x3d\xaa\xc9\x51\x4d\x7c\xed\xfd\x79\xd6\xf3\xd1\x4a\xfa\x77\xe4\x8a\x8f\xde\xf3\xe8\x3d\x71\x36\x47\xef\x09\x24\xf3\xbb\xc7\xd1\x19\x18\x57\x53\x64\xaf\x3c\x91\x77\x2a\xe8\xed\x71\xfe\x06\x0c\x79\x64\x47\xb7\x0b\x24\xf3\xbb\x47\x8d\x3c\x6a\x64\xf3\x46\x3f\x0d\x1a\x59\x70\x23\x47\x8d\x04\xc6\x45\x30\x7d\x0c\xdf\x81\x54\xb2\x37\xda\x05\x84\xef\x0e\xd8\x47\x25\x3d\x68\x64\x79\x8c\x7a\x49\x63\x16\xc6\xd5\x2f\x44\x49\x11\xad\x7f\x8c\x67\xbd\x70\xe1\xc2\xb8\x9e\xc8\x66\xbd\x98\x31\x2e\xd8\xce\xa9\x3c\x66\xb1\x64\x3b\x0b\xe3\x7a\x5c\xe5\x92\xee\x2c\x24\x32\xca\x4b\xba\xb3\x30\x08\x11\x16\xd4\xe7\x07\x68\x57\xf5\x17\x0f\x22\x26\x7e\x57\x47\x74\xdb\xd4\x9b\x76\x35\x5a\x7f\xdb\xae\x27\x18\x1f\x57\xa7\x11\x64\x22\x85\x54\x9e\x8e\x5e\x90\xa6\x7f\x5c\x2f\x47\xfa\xc1\x3b\x62\x03\xeb\x45\xb4\x5b\x06\xcf\x5a\x36\x82\x68\xf7\x9a\xb4\x0b\xed\x5e\x10\xa3\x53\x79\x14\x7e\x49\x8c\x16\xc6\x35\x79\x7c\xf8\xac\x07\x52\xf9\x88\x9a\x22\xda\x35\x69\x57\xd8\x2e\xa2\xdd\xf2\xc4\x16\xeb\x15\xb6\x8b\x68\xf7\xfa\x88\xec\xc2\x90\x3f\x4f\xbb\xf0\xc4\xc2\xb8\xa6\x8d\xf8\xb4\xeb\x70\x15\x9d\x43\x3c\x20\x8c\xe4\x8d\xdb\xfe\xc2\x2c\xea\x8b\xc7\x6f\x1f\x8f\x59\xa4\x17\x3d\xb1\xfd\x42\x98\x45\xbd\x68\xea\xf6\x0b\x11\x82\xa6\x17\x5f\x7b\xdb\x08\x42\x50\x12\xc3\x4b\x52\xf5\x7a\x31\xd5\x24\x0c\x5a\xb0\xa9\x1f\xa8\x5c\x45\xbb\x8e\x3d\x81\x16\x42\x31\x5c\xaf\xe3\xe3\xd1\xc2\xfa\x78\xe2\x25\x11\x7a\x5d\x8f\x7e\xa5\xfa\x8c\x5c\xeb\x52\xbf\xe0\x43\x8f\xf4\x84\x54\x0b\x52\xf4\x03\xbc\xd0\x33\x42\x2c\x59\xcf\xeb\xc2\xe3\xa5\xcb\x67\x6d\x45\x3c\xfe\x71\xa8\xeb\x52\x99\x2e\x26\x6b\xe9\x09\x70\x16\x14\xe5\x07\xe8\xe8\xc6\xe3\x09\x1b\xd7\x75\x3f\xbe\x0c\x6e\xe2\xba\x6e\x6f\x7c\x46\xe4\x54\x1b\xed\x62\x66\x26\x0c\xb8\x89\xeb\x62\x66\xb6\x2e\xa6\x61\x15\xeb\xb8\x96\x4d\x7d\x60\xa4\xac\xa8\x2b\xa2\xf5\x4f\xc8\xbe\xa0\x3b\x7f\x60\xa4\xcc\x0b\x31\xac\xaf\x6b\xd1\xae\x4e\x23\x96\xed\x42\x31\x93\xfd\xa5\x62\xc2\x61\x4e\x64\x5b\xd7\xa5\x62\x02\x23\x3d\x7e\x62\xc9\x67\x5e\x17\x3e\x96\x3c\xea\xba\xd4\xaf\x8b\xa9\x13\x9c\xc9\x75\x31\x75\x5a\xd7\xa3\x5f\xa9\xa2\xab\x57\x7c\x1e\x4f\x4f\x64\x1a\x11\xf6\xc4\x33\xba\xa7\x86\x7e\x49\x71\x5e\xd0\x9a\x07\xdb\x3f\x16\xdc\xe6\x07\x06\x57\xf1\x2c\x55\xee\x52\xe5\x0a\x3d\xa1\xca\x01\xa9\x5d\x74\xa1\x2a\x77\xa9\x72\x7e\x5a\x55\x0e\x76\x72\x6a\x7e\xda\x63\x47\xe3\x44\x13\x9e\x49\xa6\xb2\x90\xc8\x90\xae\xeb\xf8\xda\xc7\x76\xf1\x8e\x6a\xe1\xc5\xea\x06\x19\xd2\x75\x1d\x1b\x41\x38\x0b\xe3\x73\x49\x5e\x16\x52\xe3\xd3\x4a\x5e\x16\x52\xe3\x3b\x26\xdd\x23\x84\xe5\x91\xaa\x57\x4d\x45\xbc\x10\x3d\x91\xf4\x72\x89\x25\x29\x82\xde\x05\x6b\xf9\x81\xc7\x03\x34\x6f\xd4\x33\x25\x15\xf3\xf1\xf7\x4b\xa6\xf2\x4a\x4f\xa8\x98\xda\x33\xa2\xae\xc4\x92\xc1\x4a\x37\x4d\x6d\x3e\x6b\x2b\xa2\xa9\xcd\x67\x1d\x45\xcf\x1c\x24\x75\x1a\x41\x70\x29\x24\x32\x99\x2b\x2d\x5f\x88\xb5\x86\x84\xbf\x4f\x6a\x74\x22\x44\x20\x93\xb9\x92\xee\x11\xf2\xf3\x80\x04\xba\xd2\xb2\xa9\x8b\x77\xfc\xdc\xe8\x3b\x32\xf3\x4f\xf8\xe8\x14\x3e\x3e\xe8\x2f\xfc\x6a\x0a\x1f\xcf\xe0\x0f\x09\x74\x25\x06\xff\x95\x82\x5f\x1c\xe9\xbb\x43\xf1\x4a\xaa\x72\x0a\xf4\x63\xd0\x20\xfd\x22\x90\xc8\x57\x2e\x49\xd5\x0b\x3e\xf4\x48\x28\x3c\xa4\xe8\x07\x2a\x57\xd1\x77\x2a\x69\x62\x9a\x9e\x26\xcd\x56\x49\x81\xd4\xf1\x65\x49\x25\x85\x41\x3d\xd2\xe7\x46\x7b\xf8\x81\xd4\x2f\x1e\x7f\xec\xe1\x07\x06\xbc\xce\xe5\x16\x28\x21\x91\xfb\x5c\x49\xbf\x98\xd0\xc8\xec\xe3\xd5\x48\x20\xb1\x59\x68\x25\x86\xf5\x95\x70\x95\xc4\xea\x2b\xe9\x2a\xa1\x5e\x27\xb6\xef\x2c\xa9\xd7\xc2\xc8\x97\xa2\xa4\x88\xd6\x3f\xe1\xc6\x92\x41\x2d\x0c\x22\xfa\x95\xd5\xc8\x4c\xbc\xc8\x9e\x91\x05\xc1\xfa\x03\x23\x63\x62\xf2\xac\x57\x66\x90\x25\x5f\xb9\xb2\x83\x2c\x30\xf2\x33\x21\x5d\x59\x55\x06\x7a\x63\xa4\x97\x7a\xbd\x60\x50\x27\x52\x98\x4b\x06\xb5\x30\xf2\xa5\x88\x2e\x84\x08\x9d\xd8\xca\xb0\x24\x42\x2f\x98\xce\x83\x69\xc5\xca\xea\x5a\x66\x74\x26\x39\xb9\xb2\xa3\x33\x30\x32\x03\x90\x44\x68\x21\xf5\xae\xc8\x5f\x24\x1c\xcd\x78\x03\x89\xd0\x2b\xa3\x6b\x1d\x55\xce\x2a\x53\x66\x74\xce\xf6\xaa\xa3\x33\xac\xe7\x44\xda\x71\xc9\x7a\x16\x46\x4e\x74\x4e\xd8\xab\x8c\xbb\x1d\xb7\x9b\x1d\x77\x81\xc1\x44\x66\x65\xc7\x5d\x98\xca\xa9\xa3\x85\x32\x95\x85\x91\x13\xaf\xad\x16\x42\x38\x4e\x50\xe8\x97\x84\x63\x61\x64\xbf\xe3\xf6\x85\x50\x39\x32\x91\x4b\xc2\xb1\x30\xf2\x33\x2b\x5e\x12\x8e\x17\xf4\xe1\x04\x09\x7d\x65\x9d\x60\x3e\xbe\x23\xdf\x51\xfd\xca\xc4\x88\x43\xcd\x39\xbe\xa3\x2a\x87\xc7\xcb\xaa\x1c\x24\xe3\x34\xfc\x68\xc7\x76\xe1\x2a\x73\xb6\x11\xb6\x0b\xc5\x84\x2e\xbd\xe4\x20\x2f\x58\xc0\x69\xf0\x85\xca\xfd\x11\xa1\xab\x8c\x5c\xb0\x83\x1f\x78\xec\x11\xe6\xed\x2a\x2c\xa5\x0a\x23\x33\x72\x15\x83\xb8\xc2\x88\x4a\xda\x71\x15\x47\x54\x60\xc0\x1b\x5e\xb2\x78\x17\xcc\xdd\x34\xf0\xb1\xc5\x11\x15\x18\xd9\xc7\x3b\xa2\xc2\xb6\x4d\x03\x57\x59\xf4\x52\xc0\xc8\x84\x1b\x45\x2f\x05\x24\x18\x8c\x4b\x32\xee\x2a\xaa\x49\x56\xe4\x2f\xa2\x26\x24\xdb\x56\x51\x4d\x8a\x6a\xc2\xc8\x25\x3f\x77\x15\x66\x2d\xf0\x09\x57\xd9\x3e\x1e\xcf\xc4\x8c\x71\x15\x3d\x53\x41\x4d\xc6\xe0\x85\x54\x93\xa2\x9a\x30\xbe\x15\xd5\xa4\x3c\xe3\x63\x82\x32\xb7\xa0\xef\x7e\x60\xe4\xe2\x8d\xa1\x08\x35\x21\x04\x95\x9f\xbb\x0a\xe1\x19\xdc\xe8\x55\x74\x43\x6c\xbc\x4c\xd0\xc9\x56\x71\xf8\x04\x46\x2e\x3c\x5e\xcd\x01\x12\x14\xb0\x55\x74\x56\x10\x7b\x07\xd3\xd6\x25\xb1\x77\x41\xec\x4d\xd0\xb6\x96\xc4\xde\x05\x99\x77\x64\x62\xfd\xa2\xe6\x00\x09\xaa\xd5\x2a\x6a\x0e\x30\x98\xdc\x2e\xb9\xbe\x0b\xae\xef\x60\x47\xe8\x92\xeb\xbb\x20\xf6\x26\x78\x55\x4b\xe6\xee\x82\xad\x3b\xa0\x5e\xaf\xaa\x97\x83\x6d\x9b\x26\xc3\xba\x6c\x5b\x61\x30\xdf\x5d\x55\x95\xab\xac\xe0\x40\xf1\x59\x55\x67\x05\x8c\xfc\xcc\xec\x96\x9c\x5c\x21\x41\xde\x59\x72\x72\x17\x04\xdc\x91\x9b\xa2\xcf\x2f\xf2\xda\xe8\x44\x65\x51\x47\x18\x10\xb4\x57\x75\xc0\x06\x12\xe4\x9d\x25\x4d\x57\x18\xb9\x79\x23\x3d\x01\x01\x37\x41\xcb\x59\x12\x70\x85\x91\x71\x69\x55\x2f\x07\xdb\x36\x4d\x5f\x5b\xc5\x04\x46\x66\x28\x96\x6d\xbb\x2a\x2a\x37\x6d\xaa\x2a\x57\x55\x39\x1c\x9f\xd4\xda\x05\x77\x36\x91\xac\x5b\x10\x68\x3f\x30\x72\xff\xfe\xac\x78\x49\xb3\x5d\x55\x2d\x1a\xfc\x94\x5a\x54\xd5\x22\xcc\xa2\xaa\x45\x50\x63\x13\xe9\xe3\x25\x35\x76\xc1\x44\xcd\x24\x3a\x57\x73\x00\x82\x95\x3a\x32\x11\x84\xac\xd4\x05\xc7\x34\xbf\x70\xce\xcd\xaf\xd5\x74\x10\xd8\x93\x7c\xd3\xd5\x9e\xef\x90\x5f\xf9\x85\xe8\x56\xc4\x77\x20\x72\x6e\x7e\x87\xf6\x74\x7a\x26\x67\xb6\x9a\x9d\xde\x1c\x93\x86\x37\x7e\x7e\xf1\x70\x15\xed\x32\x70\x02\x46\x26\x66\x71\xff\xf1\x82\xaf\x9a\xc9\x86\xad\x66\xdc\x0f\x51\x75\x64\x82\x12\x89\xaa\xab\x2d\xda\x85\x9d\x37\xa3\x24\x28\xa8\x23\x0f\x45\x36\x22\x78\x16\x96\x22\xb9\x54\x18\xac\xc0\xac\xe6\x37\x85\x49\x9a\xd9\x39\xb9\x64\x92\x0a\x23\x0f\x9a\xea\x24\x12\x5e\x67\x7e\xa1\xf0\xf2\x3a\x17\xbc\xce\xc1\x3a\xcd\x92\xd7\xb9\x20\x6e\xe6\xd7\xf0\x2a\x5f\xfb\x81\x91\x27\xef\xa8\xcf\x00\xf2\xcb\x46\x38\xb4\x34\xdd\x08\x51\x96\x24\xce\xd5\xd8\xbf\xfd\xf2\xf1\x2a\x40\x53\x01\x26\x8f\x57\x01\xe0\x72\xe6\xd7\xe7\x46\x9b\xaa\x1b\x61\x86\x2d\xaf\x73\xc1\xd8\xcc\x24\x07\x96\x8c\x4d\x61\xb0\xb1\x60\x35\x7d\x06\x90\x59\xf6\x5f\x92\x38\x57\x7f\x7c\x46\x66\x8d\x7f\x75\x7d\x06\x30\x58\x78\x5a\xf2\x3a\x85\xcc\x1a\xff\xea\xba\x11\xa8\x9e\x23\x33\xdd\x91\xea\x29\x64\x36\x53\x2e\xa9\x9e\xab\xeb\x6c\x98\x74\x77\x9d\x0d\x90\xaf\xcb\x46\xdc\x8a\x9e\x8e\x2e\x9f\x76\x2d\x45\xc1\x55\x19\xd1\x56\x74\xb8\x8a\xa6\x92\xd6\x5e\x70\x44\xf3\x45\xcc\x23\x47\x74\x41\x08\x1d\xec\x94\x58\x12\x42\x17\xec\xcf\x7c\xe1\xde\x64\x7f\x2e\x18\x9f\x83\x05\xb1\xd5\xd5\xfb\xfe\xe8\x7a\x66\x95\x7c\x75\x9d\x4d\x47\xc9\xcb\x8b\xd6\xab\xe4\x40\x66\xcd\x7a\x75\x95\x1c\x18\xc5\x17\x52\xc9\x81\x7c\x31\x60\x77\x67\x07\xc0\x28\x97\x37\xda\xd4\x45\xaf\x32\x14\x4b\x2e\x15\x46\xf1\xb5\x1d\xb0\x81\xcc\x3a\xf3\xea\x0e\xd8\x50\x50\x47\xb9\x7c\xbc\x2f\xf4\x18\x49\x66\x6d\x78\xc9\x37\x15\x46\xb9\x7c\xbc\x2f\xb4\x50\x80\xa2\xc8\x17\x22\xe5\x52\xec\xc2\xf0\x85\x1e\x1b\xca\xac\xc1\xae\xae\x0d\xf5\xb0\x5d\x74\x8e\x6b\x33\x40\x66\x61\x73\x49\x28\x15\x46\x21\x74\xe9\x9a\x15\x8c\xd1\xcc\x92\xe5\xea\xce\x2e\x80\x51\x08\x2e\x65\x8f\xae\xfe\x44\x7f\x99\x15\xc2\xd5\x8d\xfe\xa0\x8a\x0e\xf6\x89\x2c\xa9\xa2\x0b\x2e\x68\x66\x25\x6e\x75\x4d\x14\xc6\xe7\x60\x1d\x71\xc9\xf8\x5c\xfd\xd0\x2e\x3c\x53\x37\x62\x83\xb8\x39\x4a\x56\x64\x7f\x1d\xb4\x70\x2a\x52\x01\x0e\x5a\xe8\xa7\x3d\x76\x21\x66\x45\xba\x6b\x75\xcd\x0a\x18\xac\x36\xae\xae\x59\x75\xcd\x0a\x4b\x93\x04\xba\x86\x66\x85\x0d\x0d\xcd\x0a\x18\x05\x9d\x18\x9a\x15\x54\xd1\xec\x92\x94\x54\xd1\x05\x55\x74\xb0\x4c\xb9\xa4\x8a\xae\xf1\xe8\x7d\x76\x81\x68\xa8\xf7\xc0\x60\x99\x72\x0d\x07\x6c\xd8\xa3\xd9\x75\x1e\xd9\xa3\xc2\x60\x4b\xcb\x1a\x9a\x02\x90\xc9\x93\xad\xe1\x10\x00\x0c\xaa\x46\xac\xe1\x74\x1a\x12\x68\x76\x9d\x47\x12\xe8\x82\xe5\x39\x5c\xf2\x1c\x6a\x21\x90\x5d\x4f\x91\xf1\x29\x8c\x52\x14\xd9\xfa\x47\x0b\xb3\x2b\x25\x43\x2d\x04\x86\x0b\xa3\x43\x4f\x0e\xe4\xc4\x48\x2f\x09\x54\x18\x05\x5d\x95\x04\xba\xc6\x13\x6f\x66\x57\x37\x86\xf1\x26\x30\x5c\x3e\x95\x17\xba\x20\x81\xe6\x54\xbe\xcf\xa0\x5e\x72\x44\x85\xc1\xae\x9e\x35\x8c\x3d\x07\x7a\x9b\xaa\x3f\x65\x1b\xd5\x5b\xcc\x62\xa8\xb7\xd0\x3b\xb3\xab\x13\xc3\x10\x12\x18\x85\x18\x6f\x38\xf9\x18\x0c\x07\xa4\xbe\xd6\x70\x38\x80\xfd\x39\x0a\x6b\x18\xb2\x3f\x17\x54\xcf\x4c\xea\x6b\x49\xf5\x5c\x43\xbd\xad\x74\xa7\x7a\x0b\xe4\x34\x14\xd9\x54\x26\x1f\x85\xb0\x6f\xa8\xca\x40\x4e\x43\xd1\x52\x84\x37\xc0\x10\x87\xaa\x0c\x47\x34\x93\x20\x5b\x72\x44\x85\xc1\x9e\xa4\x35\x9d\x15\x53\xdd\x23\x27\xc6\xb7\xa9\xef\x07\x46\x61\x44\x9d\xae\x29\x02\xd9\xc5\x80\xa9\x2a\x4f\x55\x99\x75\x66\xc9\xa5\x6b\xbe\x69\xd7\xf4\xf1\x4b\x11\xed\x62\x01\x71\x1a\xcd\x40\x2e\xcd\x19\x47\x2f\xb9\x54\x18\x85\xd1\x59\x72\xe9\x82\x49\x9a\x33\x2e\x5c\x26\xa9\x30\x0a\x6e\x44\x26\xe9\x9a\x8f\x76\xe7\xcc\x5a\xc3\x54\xbb\x61\x8f\x8e\x42\x8c\x37\x0d\x47\xe7\xe2\x17\x99\x9a\x4f\x5d\xf8\xd4\x5f\xb3\xa4\x34\xb5\x01\x20\x3b\x93\x9d\xcb\x5f\x5c\xfe\x22\x3d\xa1\x0b\x9f\x8f\x0d\x64\xe7\xa8\x53\x1b\x00\x46\x21\x1c\x9d\xeb\xf3\x8b\x8f\xff\x71\xc6\x28\x05\x55\x18\xa5\x2b\xb2\x73\x30\x1e\x67\x8c\x53\xe3\x99\x1a\x0f\xe1\xe8\xd4\x78\xe6\xe3\xa3\xb3\x13\xbf\xe9\xd4\x7c\xea\xaf\x51\xb9\xa9\xbf\x86\x6f\x9a\x9d\x60\xc9\x37\x15\x46\x21\xde\x94\x6f\x2a\x64\xa7\x28\xf2\x4d\x85\x51\xba\x8f\x47\xef\x21\x97\xe6\x5c\x69\x84\xfe\x1a\x18\x85\x65\x59\xc9\xa5\x42\x76\x8a\x22\xb9\x54\x18\xec\x40\x5b\x92\x4b\x85\x9c\xab\x22\x5b\xbf\x6d\x3d\x6a\xe2\xfc\x0d\x8e\x69\xce\xaa\x9c\x01\x34\x30\x4a\x57\x64\x47\x3f\x43\x40\xce\x2a\x93\xb1\x18\x30\xcc\x50\xc8\x24\x5d\xd0\x46\xb3\xb3\x03\x69\xa3\x6b\x12\x78\xb1\xe7\x6d\x4d\x03\x2f\x20\x1b\x8c\xcb\x24\x15\x46\x21\xfa\x9b\x9a\x28\x90\xb3\xaf\x6d\x78\x06\x93\x74\x94\xe1\x8d\x7e\xed\x43\xaf\xda\x54\x07\x0d\x60\x14\x4c\x54\x12\xe8\x7a\xbf\xd1\x2f\x6e\x7c\x3b\x42\xc0\x0b\x1d\xec\xb2\x5b\xf2\x42\x85\x9c\x19\xb9\xe4\x85\x0a\xa3\x7c\x44\x53\xd1\xe4\xaa\x84\xe8\xad\x08\xfd\xc2\x90\xa5\x8a\xae\xb7\x96\x86\xd5\xbe\xb5\xb4\xb7\x96\xc6\x90\xf7\xd6\xd2\xde\x58\x9a\xe1\xd9\x5b\x4b\x7b\x33\x95\x28\x84\xa0\x6f\xc7\x11\x38\xa6\xb9\xb0\x78\x22\xc7\x54\x18\xec\xfe\x5b\x6f\xa7\x12\x70\x4c\xb3\xc1\x92\x1c\x53\x61\x98\xd1\x79\x3b\xb4\xbc\x1f\x83\xc9\x0e\xfe\x6f\x0d\x06\x18\x85\xb1\xf2\xad\xc1\xbc\xb1\x8e\x82\xa5\xbd\xb5\x8e\x37\x0b\x57\xe6\x7d\xde\x8e\x23\xf0\x55\xb3\x83\xbf\x7c\xd5\xf5\x66\x8d\xbf\xe2\x60\xde\x1a\x0c\x7c\xd5\x5c\x18\xa6\xe4\xab\x0a\x83\x2d\x88\xeb\xed\xa8\xf0\xc6\x3a\x0a\xc3\xd4\x5b\xeb\x00\x86\x39\xa4\x77\x7c\x7e\xf1\x70\x15\xcf\x72\x79\x0b\x18\xd5\xce\xd1\x60\xa0\xc3\x66\x07\x1d\xe9\xb0\xc2\xa8\xb8\x34\xe9\xb0\x0b\xee\x6b\x2e\x58\x9a\xdc\xd7\xf5\x7e\x42\x9f\x61\x3e\xea\xed\xb2\x3f\xac\xd6\xac\xdb\x96\xd5\xba\xde\xac\x95\x56\x1c\xdf\x5b\xf5\x05\xb2\xce\xea\xad\xfa\x02\xa3\x12\x35\xc8\x7d\x5d\xf0\x5d\xb3\x6e\xe8\xad\xfa\x02\x83\xad\x91\xeb\x7d\x3e\xbf\x48\xdf\x63\x1d\x6f\x87\x13\x60\xd4\x4b\x91\x9d\xc3\x08\xf3\x98\xfb\x77\x87\x62\x39\xb5\x0b\x6a\x6c\xd6\xf4\xa5\xc6\x0a\x83\x2d\x97\xeb\x56\xe1\xa1\xc6\xe6\x32\x14\xdd\x8a\x6e\xae\x6a\x88\x96\x22\xda\xc8\x04\x4b\xb6\xac\x30\xcc\xd2\xdd\x4e\x2b\xe0\xc1\x66\xcd\x42\x1e\xac\x30\x2a\xd1\xae\x3c\x58\x21\xab\xca\xf2\x60\xd7\x8d\x0d\x54\xa2\xa4\x5b\x1b\x00\xb2\xea\x27\x35\x56\x18\x35\xf9\xf8\xa9\x68\x73\x55\x42\x74\x14\x1d\xae\x42\xe4\xb4\xe2\x26\xee\x67\x6f\xeb\xba\x35\x0b\x60\xb0\x61\x74\xdd\x46\x5c\x40\xfe\xbc\x90\xa3\xcd\x4d\xdc\x5f\x19\xa6\x6e\xcd\xe2\x26\xbc\xfa\xeb\xe3\xfd\x45\x92\x0e\x95\xe9\x8e\x64\xdc\x05\xf3\x36\x57\xec\x49\xe6\xad\x30\x2a\xc6\x73\x3b\x15\x00\x72\x65\x45\x54\x32\xae\x30\x2a\x83\xd9\xed\x68\x03\x3f\x37\xff\x55\xe4\x2f\x6a\x03\xc4\xd7\xb7\x36\x70\x63\x03\xec\x34\x5d\xb7\x36\x70\x6b\x03\x44\x95\xb7\x36\x00\xe4\x8a\x3d\xdd\x0e\x07\x72\x7d\x2b\x43\x9e\x5c\xdf\x75\x33\x3b\x60\x3f\xea\xba\x9d\x1d\xdc\x5a\x0a\x61\xb2\xf4\xdf\x75\x33\x81\x67\x3f\xea\xba\x9d\x30\x40\xff\x1d\x26\x4d\xa5\xff\x2e\xb8\xbe\x99\x9d\xa6\x4b\xae\xef\xba\xf1\xfd\x6c\x9d\x5d\xb7\xc6\x03\xe4\x4a\xb8\x21\xfd\x57\x18\x9f\x17\x32\x62\x83\xc5\x9b\x2b\x89\x74\x59\xbc\x4b\xca\xae\x09\x58\x29\xbb\x0b\x32\x6e\xae\xd8\x93\x64\x5c\x61\x54\xc2\xe4\xa5\x57\x87\x79\x9b\xd9\x43\xba\x64\xde\x0a\xc3\xce\x91\x79\xbb\x60\xdb\xe6\x3a\x7c\x16\xef\xb8\xd4\x68\xc2\xe4\xa5\x46\x43\xc0\xcd\x15\xbd\x5f\xaa\xaf\x64\x5c\x3b\x47\x32\xee\x5a\x2c\xfd\xb0\xef\x73\x2d\x97\x7e\x80\x51\x89\x4a\xd7\xfd\x79\xfc\xe3\xf1\xa8\x21\xb7\x96\xea\x0b\x8c\xca\xe0\x2f\x3f\x77\x41\x8d\xcd\x0d\x87\x2a\x35\x56\x18\x6c\xfc\x5d\x4b\x5d\x05\x72\xbb\x14\xf9\x8b\x7a\x75\x42\x84\xa5\xfa\x02\xb9\x61\xa2\x12\x68\x85\xe1\x47\x93\x40\xbb\xd6\xa3\x98\xb9\x31\x21\x5d\x2a\xa6\x04\xda\x4a\x20\x21\x81\x76\xc1\x90\xcd\x0d\xbd\x5f\x3a\x7a\x60\xd4\xe6\x8d\xb7\x22\x5a\x9f\x15\xd9\x7a\xe2\x27\xb6\x1a\x2f\xd9\xb2\x0b\x3a\x6c\x36\xd1\xb9\xf4\xfd\x4b\xbd\x6f\x8a\x6c\xd7\x03\xb9\x31\xda\xc8\x96\x15\x06\x1b\x92\x97\x6c\xd9\x05\x5b\x36\x37\x14\x53\xb6\xac\x30\x54\xb9\xa5\x29\x40\x5b\xcd\x8d\x31\x69\xa9\xab\x4b\xdf\x4f\x84\x2b\x85\x75\xad\x47\x31\x73\xb3\x0b\x55\xcc\xa5\x57\x57\x31\xf5\xea\x40\x6e\x36\xd5\x79\x03\x44\xd7\x61\xea\x5e\xa2\xeb\x82\xaf\x9a\x1b\x37\xca\x57\x15\x46\x65\xd0\x08\xfd\x2a\x7c\xd5\xdc\x88\x79\xe4\xab\x0a\xc3\x04\xbf\x7c\xd5\x15\x68\x61\xc3\x93\x87\x5a\x08\x8c\x4a\xec\x1a\x3a\x51\x38\xaa\xb9\x0d\x9f\xb5\x14\xd1\xf7\x18\x8c\x7c\xd5\x15\xf8\xd5\x36\x15\x1d\x45\xf8\x55\x62\x57\x29\xac\x0b\xbe\x6a\x6e\x78\x72\xf9\xaa\xc2\x90\x52\x10\x06\x25\x40\xee\x24\x8c\x42\xef\x1b\x7a\xdf\xee\x8d\xb6\x8b\x09\x69\x67\xf0\x0f\x27\xa4\xc0\xa8\x0c\x60\xa1\x13\x05\x32\x25\x22\x57\xe8\x44\x43\x2d\xb4\x73\xd4\xc2\x78\x94\x29\xb3\x3f\x73\x85\xca\x04\x8c\xca\xc2\x68\x18\x6e\x40\x61\xcd\xe6\x28\xa5\xb0\x0a\x43\x12\x43\xa8\x5f\x81\x5f\xa5\x50\xdf\x0a\xfd\x6a\xa8\x39\xa3\x7c\x7f\x28\x0e\x15\x0b\xc8\x1d\x1f\x1b\xae\x72\x87\x6e\x97\xa0\x35\x74\xbb\x71\xe8\x02\x7c\x6c\xb8\xb0\x09\x8c\x3a\x14\xd9\x05\xb8\x4a\x0a\xc7\xad\x38\x9f\x1b\x71\x36\x43\xd1\x54\xf4\x7c\x40\xca\xb8\x2d\x79\xb0\x0b\xee\x6b\x66\x17\xe6\xda\xc6\xc4\x92\x5e\x2b\xca\x20\xe9\x55\xc8\x26\x3a\xb7\x51\xc3\x36\x6a\xc0\xbd\xc9\x83\x5d\x90\x5e\x33\xbb\x30\x97\xa4\xd7\x25\x9d\xb5\x12\x26\x4b\x67\x5d\x9b\xe5\x96\x8e\xfa\x6d\x97\x5b\xa4\xb3\xea\x04\xa5\xb3\x0a\xb9\xa3\x0c\x5b\xed\xde\x6a\x37\x71\xec\x56\xbb\x37\x6b\x8a\x9d\xcf\xbc\x55\x52\x60\xd4\xa9\xc8\x5f\xc4\x7b\x76\x5f\x48\x25\x95\xce\x2a\x4d\x44\x3a\xeb\xda\xe8\x6d\xb7\xa9\xea\xed\x26\x72\x66\xbb\xfd\xda\x2a\x29\x90\xbb\x8d\x50\x49\x81\xd1\x50\x65\x79\xb0\x42\x1e\x9f\xc7\xdb\x13\xc4\xd7\x3a\xe7\x6d\x7c\xbd\xf1\xc4\xd4\x0a\x5b\x5b\x4f\xbc\xc9\xf8\xb1\x7d\x6a\x6d\x15\x7e\x3f\xea\x9b\xa9\xa3\xb5\xb6\x8b\x7e\xd0\x61\x47\xfb\x88\x7c\x16\xde\x93\xea\x51\x6b\xeb\x3d\x81\xd1\x88\x3d\x65\xcb\x0a\xd9\xdc\xa7\x6c\xd9\xb5\x1f\x85\x1f\x8d\xd8\x73\xab\xf0\xf0\x55\x33\x15\x9f\xd6\x76\x58\x07\x46\x23\x46\xdc\x2e\xd5\x03\x99\x3a\x47\x6b\xbb\x36\x03\x0c\x87\x16\x19\xae\x6b\xb3\x36\x63\x1e\x75\x3b\xf8\x03\x83\x92\x02\x6b\xab\xd1\x40\xa6\x9e\xd0\xda\x6a\x34\x30\x1c\x80\xb6\x21\x37\xdc\xd5\x4c\x3d\xa1\x25\x77\x75\xc1\x5d\x1d\x8d\x18\x51\xee\xea\x82\x5c\x9a\xa9\x89\xb3\x24\x97\x0a\x43\xf2\xcd\x71\xc0\x06\x32\xf5\x62\xd6\x51\x0b\x81\xd1\x08\xe2\x8e\x93\xb5\x83\x16\x52\x09\x66\x1d\xb5\x10\x18\x52\x74\x8e\x5a\x78\xf0\xb1\x54\x82\x59\x47\x1f\x7b\x18\xe9\x1b\x31\xe2\x71\xa4\x07\xf2\xe8\xfe\xe2\x5b\x11\xdf\x91\x81\xf1\x38\xa5\x3b\x68\x34\x1b\x15\xd7\x51\xa3\x81\xd1\x70\x49\x47\x8d\x06\x32\xe5\x55\xd6\xd1\x13\x1f\x08\x33\x8d\x78\xf3\xb8\x24\x0e\xa7\x36\xb3\x9d\x71\xc9\xa9\x15\x86\xd4\x21\x39\xb5\x42\x66\x3b\xe3\x92\x53\x2b\x0c\x07\x59\x39\xb5\xeb\xa8\xd1\x4c\x5b\x8f\x1a\x7d\x58\x4f\x69\x59\xd1\x52\x44\xeb\xa7\xbf\x68\xeb\x89\x2d\x28\x76\xbb\x64\xde\x0a\x99\xa2\x22\xeb\x18\x5b\x00\xa3\xa1\x26\x92\x71\x17\x04\xdc\x4c\xb9\x90\x75\xf4\xea\x90\x71\x87\x03\xb6\x64\x5c\x21\x53\x4a\x63\x49\xc6\x15\x46\x43\x4d\x8e\xd6\x01\x64\xf3\xbb\x47\xeb\x38\x5a\x07\x4b\xa9\x47\xeb\x38\xc4\xd4\xf3\x52\x64\x53\xb5\x0e\x62\xc4\xa3\x75\xc0\xf5\xcd\x6c\xd9\x5c\x72\x7d\x85\xd1\x88\x11\x8f\xb1\xc5\xc1\xb9\x4f\x2c\xed\xe8\xdc\x81\x41\x85\x88\x75\x74\xee\xd0\x7f\x33\x25\x2b\x96\xf4\x5f\x61\x34\x3c\xb9\xfc\x5e\x21\x4f\x3f\xad\xc6\x07\x8c\x46\x30\x2e\xbf\x57\xc8\x6c\x12\x5d\xf2\x7b\x85\xd1\xaa\x22\x5f\x88\x99\xec\xf4\xd3\x6a\x56\xc0\x90\xef\x25\xbf\x77\x41\xd3\xcd\xd3\x8e\x76\xec\x90\xa6\xdb\xaa\x37\xda\x2e\x56\x5d\xa6\x5d\xe8\x84\xf4\x68\x8f\x8f\xf1\x85\xcc\xdd\x80\x87\x9b\xd9\x70\x1a\x2f\xd6\x37\x85\xd1\x9e\xd8\x35\x5e\x8c\x30\x01\xc3\x36\x53\xde\x20\xac\x2e\x1c\x2f\xad\xf6\x89\x5d\x43\xb6\x6d\xc0\xb0\xcd\xf3\x89\x9f\x02\x9a\xed\x03\xb6\x9e\xc7\xdf\x3e\x1e\x4b\x9b\x6d\x7c\x77\x28\x0e\x0b\x12\xc7\x8b\x85\x14\x68\x6a\xf1\x22\xfe\x89\x17\x26\xc6\xe6\xf7\xa0\x5e\xf1\x07\x06\x34\xb5\xb0\x6e\x71\x40\xd3\xcd\x6c\x58\x8f\xd7\xf2\x4d\x1c\x34\x1a\x5d\x80\x3d\xc5\x8b\xc5\x48\x36\x73\x07\x8c\xde\x0f\x0c\xc8\x6c\x21\xb1\x37\x5e\x2a\xd6\xa4\x11\xdb\x97\x53\xb1\x1a\x37\xa2\x58\x41\xbd\xe1\xc2\x7e\xd4\xb0\xde\xb0\x30\xda\x33\xee\xc6\x6b\xdb\x88\x47\x8b\x0a\x3b\x4d\x43\xb6\xac\x30\xa8\x31\x1d\x56\x25\x16\x0a\x5b\x41\x43\x02\xad\x30\x5a\xe3\x85\xd0\xa2\x80\x21\x5b\x5e\x89\xa6\x1e\x5f\x88\x25\x38\xca\x85\x84\x65\x83\x03\xd2\x6c\x61\xaf\x66\xbc\x8e\x8f\x67\x49\x1c\xf6\x55\xbc\x8e\x8f\x7f\xf4\xa3\x90\x9d\x0e\x39\xb5\x71\x31\x59\x6b\x4f\xa0\x19\xf0\x6b\x3f\x50\xc8\x4e\x87\x34\x5b\x61\xb4\x27\x84\x0c\x4b\x10\x07\x6c\xdb\xf2\x2a\x8a\xba\x22\x4c\xec\x89\x1a\xc2\x12\xc4\x41\xbd\xe1\xc2\x06\xc8\xb0\xde\xb0\x30\xda\xe3\x89\xc3\x7a\xc3\x01\x19\xb7\x90\xe9\x0e\xc9\xb8\x41\x09\xe2\x41\x7c\x1d\x96\x20\x0e\x6a\x0c\x17\x32\xdd\x71\xa9\x6b\x14\x14\x1e\x94\x31\x09\xe8\xbb\x1f\x28\x6c\xfb\x0b\x59\xbc\xc2\x20\x0a\x0f\xeb\x0d\x0b\x85\x0d\x7d\x71\xdd\xb6\x8b\x90\x9b\x62\x27\x21\xd7\x37\xa0\xec\x16\x36\xf4\x85\x94\xdd\xb8\x0c\x37\x06\xad\x5f\x3e\x7e\xf1\x2c\x1b\xa1\x7e\x5d\xea\x17\xca\x74\xa9\x5f\xf0\x73\xcb\xcb\x46\x10\x6e\x04\xc5\x89\x07\xdc\xc4\xa0\x42\xf1\x03\xbc\xe3\xe0\x1d\xc3\x77\x24\x98\x26\xee\x8f\x2b\xec\xe8\xe0\x59\x93\xa6\x86\xcf\x62\xa1\xae\x7d\x44\x76\xe1\xe3\x31\xcb\xf5\xe2\xc6\xed\xd7\x56\xa3\x27\xaf\xad\x46\x53\x63\xb8\x90\xd6\x0e\x88\xb9\x0f\xd0\x5f\x93\x46\x6c\xfb\xeb\x51\xdf\xc2\x76\xb3\xb8\x54\x5f\xc9\xb8\xfd\xc5\x3b\xaa\xbe\x40\x61\x23\x59\x58\x6f\x38\xa8\x31\x3c\xfa\x8b\x77\x3c\xbe\xe3\xa1\x5d\x89\x1b\x8f\xed\x22\x28\xe9\x36\xf5\xf8\xb5\x1f\x57\x59\x48\x6b\x87\x2c\x5e\x61\x30\x1f\x09\x59\xbc\x01\x73\xb7\x5c\x89\xd7\xd6\x3a\x60\xf1\x8e\xfe\x52\x64\xeb\xd1\x7b\x36\x6c\x85\x94\x5d\xa1\x90\x9d\x0e\x29\xbb\xc2\xe8\x4f\x5c\x17\x49\x53\x48\x8f\xde\x17\xf6\x4a\x45\x52\xef\x81\x01\xbd\x33\x2c\x54\x1c\x70\x7d\x0b\xfb\x9b\x42\xae\xaf\x30\xfa\xa5\xe8\xad\x88\x46\x3c\x83\x59\x24\x95\x1c\x18\x90\x40\x23\x11\x06\x45\x7a\x74\xbd\xb0\xd1\x27\x60\x07\x7f\x60\xf4\x27\x46\x0c\x49\xc2\x42\x21\x3b\x1d\x56\x38\x0e\xaa\x1a\x8f\x8e\x67\x82\x43\xfc\xc0\xe2\x2a\x5a\xaf\x46\x4b\x12\x66\xb2\x16\x92\x84\x85\xc2\xce\x94\x90\x24\x2c\x0c\x68\xa7\x21\x49\x38\x60\x01\x17\xf6\x9c\x44\x5a\xb6\x6b\xd9\x2e\x1e\xbf\x6c\xd7\xa2\x5d\x9d\xd6\x2f\xdb\xb5\xec\x2f\x7a\x55\x1b\x02\x0a\x3b\x40\xc2\x02\xca\xc2\x60\x7a\x18\x52\x89\x83\x3a\xca\x85\xbd\x1d\x91\x96\xed\xc2\x60\x28\x66\x1f\x49\x83\x81\x24\x5c\x28\x9a\x1c\xb2\x80\x85\x01\x1d\x36\x52\xf8\x8b\x4f\x9c\x52\x2e\xcc\x2a\x85\x9f\x83\x38\x85\x52\x40\x91\x88\x53\x02\x32\x70\x61\x6f\x47\x58\x21\x39\x20\x06\x0f\xea\xd9\x87\xc4\xe0\x48\x18\x4c\x42\x0b\x93\x06\x93\x70\xee\xd4\xaa\x8f\xa4\x75\x40\x0c\x2e\x49\x05\xd8\xb6\x5e\x53\xc8\xbc\xa3\xa6\x00\x94\x84\x59\x49\x0c\x16\x46\x57\x57\x35\x85\xf4\xe8\x7d\x49\x7e\x0e\xf5\x5e\xae\x30\xf5\xe5\x43\xae\x70\xc0\x0f\x2e\xc9\xce\x39\xb6\x8b\x49\x68\xcf\xdf\xa7\x6d\x45\x3a\xea\xed\x63\x30\x25\xf9\xbe\xc7\x5e\x81\x38\x40\xad\xf9\x48\x0e\x2d\x94\x7c\x2e\xec\x21\x0d\xc8\xc7\x1f\x18\x4c\xa7\x43\x0e\x72\xc0\x3b\x2e\x89\xf7\xb5\xfc\x73\xc0\x2e\x1e\xb0\x8b\x43\x76\xb1\x50\x60\xfe\x87\xec\x62\x61\x40\x12\x0e\xab\x38\x47\xbe\xe9\x28\xc6\xa4\x7c\xfb\x78\x46\x88\xfe\x04\x74\x91\x1d\x21\xe0\x20\x97\xf4\x11\x15\x45\x98\x05\xf1\x4f\xd6\x2c\x80\x42\x7d\xe6\xc8\x0e\x1a\xc0\xe8\x58\x9d\xe5\x9f\x83\x92\xcf\x25\x55\x7f\xf1\x56\x44\x4f\x7c\x6e\xa4\x27\x60\x2a\x97\x54\xf9\x45\x15\x3e\xab\xf0\x0c\x66\x96\x6c\x16\x0a\x04\xfe\xb0\x64\xb3\x30\xba\x8f\x57\xe1\xf3\x33\x9c\x14\x76\x9a\x46\x26\xc8\x0f\xf9\xcc\x1d\x3b\x97\xcf\x1c\x30\x95\x4b\x62\xc0\x96\xa9\x2c\x0c\xaa\xb5\x47\x56\xe1\x29\x9a\x5c\xa8\x96\x1c\xd9\xe1\x40\x0e\x32\xd5\xda\x43\x0e\x72\x50\x53\xb9\x50\xe1\x38\xac\xa9\x2c\x8c\x4e\x2c\x66\x4d\xe5\x80\x96\x5c\xd8\x43\x1a\xd2\x92\x85\xd1\x89\x04\xad\xa9\x1c\x54\x4b\x2e\xf9\xc5\xd7\x36\xe6\xc9\x8e\x10\x44\x6c\x92\x97\x03\xc2\x72\xc9\x38\x67\xab\x25\x0b\x83\xd5\x8d\x90\xbc\x1c\x14\x3d\x2e\x19\x4f\x6c\xd1\x63\x61\x50\xe6\x3d\x24\x2f\x07\x54\xe4\x02\x2f\x3d\x2c\x7a\x2c\x8c\x6e\x47\x1b\xf3\x00\x05\x1a\x77\x48\x4b\x16\x06\x65\xde\x43\x5a\x72\x50\x0e\xb9\x90\xfc\x8e\x62\xcc\x03\x0c\xca\xbc\x87\xa5\x91\x85\x02\xa9\x3a\x8a\xbe\xbf\xb0\x8c\x0d\xbd\x3c\x8a\xbe\x9f\x3a\xc8\x25\x63\x9b\xd6\x41\x0e\x68\xcd\x83\x55\x97\xb0\xe8\x71\x50\xf4\xb8\x64\xf4\xde\xa2\xc7\x21\xc5\x99\x55\x97\x90\xe2\x2c\x14\x58\xbc\x61\x1d\x64\x61\xb0\xea\x12\xd6\x41\x8e\x72\xd3\x13\x28\x79\x51\x31\x81\x01\x55\x3d\x8a\xbe\x1f\x28\xa4\xb5\xa3\xe8\xfb\x8b\x8e\x7e\x3c\x5f\xdb\x6a\xc9\x41\x39\xe4\x42\x5a\x3b\x8a\x5e\x1d\x18\x10\xda\xa3\xa8\xe4\x40\x61\x5b\x69\x48\xbd\x8e\xa2\x46\x0f\xba\x50\x8d\x06\x0a\x34\xdb\x90\x7a\x2d\x0c\xca\x74\x85\xd4\x6b\xa1\x40\xa0\x0d\x0b\x28\x07\xa5\x91\x47\x1f\xf4\x84\xbe\x1f\xea\x75\xc9\x76\x74\xd8\x85\xa4\x6f\x3a\x51\x16\x35\x91\x1f\xa0\xbf\x18\x34\xa0\x61\x7f\x60\xb0\xb2\x14\xb2\xb1\x83\x3a\xc8\x25\xdb\x39\x61\x7f\x69\x1d\x93\xa6\x6a\x1d\x30\xb0\x0b\x34\xca\x28\x9a\x02\x30\x58\x7f\x0a\xd9\xd8\x42\xc9\x3e\x5e\xeb\x28\x5a\x07\xf1\x53\xd1\x3a\x60\x60\x17\x48\x8d\x61\x01\x65\x61\xb0\x4a\x15\x16\x50\x16\x0a\x1c\xc0\x90\xa0\x1d\x52\xaf\xa9\x7b\x1f\x52\xaf\x03\x9e\x75\x29\x44\x6c\xf2\xac\x85\x01\xb5\x3f\x8a\x31\x0f\xa4\xea\x02\xd7\x2e\x24\x55\x0b\x83\x22\x63\x21\xa9\x3a\x24\x55\x53\x4c\x3e\x24\x55\x07\xb5\x8f\x0b\x34\xb7\xb0\xf6\xb1\x30\x28\x13\x1f\x92\xaa\x85\xc2\xe6\xd5\xa8\x06\xf6\xc0\xa0\x4c\x7c\x58\x21\x39\x28\x87\x5c\x4a\x9a\x88\xb6\x22\x1a\x41\xcc\x53\xb5\x0e\x08\xda\x05\x6a\x5a\x48\xd0\x16\x06\x65\xe2\x43\x82\x76\x40\xd0\x2e\x70\xc7\x42\x82\x76\x50\x02\x79\x50\x26\x3e\xaa\xa6\x00\xf5\xba\x94\xe2\xb3\x6c\xd7\x6d\xbb\x78\x47\xad\x03\x28\x70\xb4\x42\xea\xb5\x30\xd8\xab\x10\x52\xaf\xa3\xde\x7c\x0e\x86\x93\xaa\x75\x00\x63\xd8\x39\xcb\xa6\x32\x04\x40\x89\x8a\xaa\x75\x00\x83\x02\xf0\x61\xb5\x65\xa1\x94\x5a\xbf\x3f\x14\x5b\x8c\x59\x18\xd4\x87\x8f\xaa\x3d\x55\x46\x08\x58\x4e\x51\x35\x1e\xe8\xe1\x83\xd5\xc2\x90\x1e\x2e\x14\x6a\x2a\x87\xf4\x70\x61\x0c\x26\x91\xd5\xc9\x07\xf4\xf0\x02\xe7\x28\xa4\x87\x0b\x83\xfa\xf0\x51\x1d\x5a\xa8\xcf\x5c\xe0\xf6\x84\xf5\x99\xa3\x32\xd3\x18\x7e\x79\x87\x16\xa0\xc0\x42\x09\x4b\x36\x0b\x63\xf8\xe5\xb5\x27\xa0\x14\xe6\x49\xb2\xcf\x85\x41\x15\xf9\x90\x7d\x1e\x75\xf3\x8e\xb8\x91\xea\xe4\x83\x92\xcd\x83\x2a\xf2\x61\xc9\xe6\xa0\x4c\x73\x81\xa1\x11\x55\xe3\x01\x06\xa5\xea\xa2\x6a\x3c\xf5\xf0\x8b\x8c\x5c\xd5\x58\x0a\x5e\xfa\x18\x6a\x91\x43\x8b\xe7\x4a\x55\x4c\xac\x3a\x87\x00\x6a\x53\x95\x8d\xa5\xa0\xaa\x17\x98\x10\x21\x55\x3d\xa8\xdc\x3c\x58\x5d\x8d\xe6\x08\x01\x55\xbd\x90\xa7\x0f\xa9\xea\x41\x01\xe5\xc1\xea\x6a\x58\x40\x39\xa8\x96\x5c\xc8\x4e\x87\xd5\x92\x85\xc1\xea\x6a\x48\x68\x0f\xd8\xeb\x85\x8c\x72\xc8\x5e\x17\x06\xd5\xda\x43\xf6\xba\x50\x6a\x9e\x88\x42\x11\x5f\x1b\xed\x96\xd0\x2e\x94\xfa\x69\x84\xed\x52\x95\x19\x5a\x64\xaf\x07\x8c\xf5\x52\x7d\xbc\xbe\x5f\xf6\x3a\x75\xd8\x43\xf6\x7a\x34\xb4\xb0\x7e\x44\x6f\x45\x6f\xae\xa2\x11\xba\x70\xca\x2c\x17\xf2\xa8\x61\x99\x65\x61\x50\x55\x3d\xe4\xb8\x07\x1c\xf7\x42\xee\x33\xe4\xb8\x0b\x83\xa2\x7d\x21\xc7\x5d\x28\x64\x0f\xc3\x9a\xca\x21\xc7\x7d\x30\x98\xc9\x71\x0f\xaa\x25\x97\xda\x7c\x96\xed\x22\xc8\xa7\xf6\x7a\x58\x2d\x39\x1a\x91\x51\x45\xa3\x9b\xea\x0b\x0c\x4a\xfb\x45\x53\x7d\x81\x42\x66\x2d\x2c\xa0\x2c\x8c\x61\x53\x55\xdf\xc6\x6a\x10\x39\xb3\x68\x0e\x07\xc0\x60\xb7\x51\x34\x87\x03\xa0\x54\x06\xd9\xe6\x70\x40\xe5\xe5\x31\x88\xc5\xac\xbc\x1c\x14\x50\x2e\xa4\xb5\xc3\x02\xca\x21\xf7\x9e\x3d\x49\x21\xf7\x3e\x20\xda\x17\xf2\x3e\x21\xd1\x5e\x18\xc3\xce\x39\x76\x21\x13\x86\x8a\x75\x48\xb4\x0f\x0a\x28\x0f\x4a\x0e\x86\x05\x94\x83\x72\xc8\x85\x8c\x4e\x34\xe3\xa7\xe6\x08\x41\x94\x25\x85\x3e\xe0\xcb\x97\xf6\x52\x54\x14\xa1\x13\x44\x46\xf2\xe5\x03\x72\x7c\x69\x8c\x10\x92\xe3\x03\x26\xfc\x60\xf5\x3e\x64\xc2\x0b\x85\x0c\x45\xc8\x84\x17\x06\xab\xf7\xd1\x9d\x11\x00\x85\xdc\x43\x48\x8e\x8f\xee\x70\x40\xd0\xdb\x1d\x0e\x80\x42\x26\x20\x24\xc7\x47\xd7\x86\x58\x59\xea\xda\x10\x50\x58\xe3\x0f\xf9\xf2\xc2\x60\x8d\x3f\xba\x51\x16\x50\x58\xbd\x0f\x6b\x2a\x07\x7c\xf9\x31\xf8\x68\xf2\xe5\x03\xaa\x7a\xa1\x34\x72\x48\x55\x17\x06\xbb\xb3\xa2\xeb\xa3\x61\xac\x17\xd6\xac\xc3\x6a\xc9\xc2\x20\x13\x10\x5d\xeb\x80\x78\x5e\x58\x67\x8e\xae\x46\x4b\x42\xa7\x38\x7a\x48\x42\x8f\xfe\xa8\x6f\x69\xa8\x49\x8f\xcf\x8d\x7c\xa1\xa1\x08\xf5\xa5\xae\x70\x71\x69\xb1\xab\x5f\xc0\x20\x5f\x10\xdd\x39\x2a\x50\x5c\x9c\xb3\xec\x70\xc0\x32\x1f\x94\x3d\x0f\xcb\x0e\x07\xfc\xf1\xc2\xce\xdc\x90\xec\x1d\x50\xa4\x4b\x9b\xcf\x0b\x59\x20\x57\x18\x6c\x24\x0b\x0f\xcc\x0b\x18\xd4\xc5\x69\xab\x0c\x6a\x61\x90\x8e\x08\x19\xd4\x42\x71\x2e\x29\x83\x5a\x18\x03\x2d\xb4\x66\x6e\x8c\xa7\x8f\x8a\xb3\xc4\xe1\x98\x26\xa9\x9a\x7a\xe9\x21\xa9\x3a\x60\x50\x97\xce\x62\xa6\x0c\xea\x80\x41\x3d\xd8\xba\x16\x32\xa8\x85\xc2\x29\x62\x21\x83\x5a\x18\xf3\xf5\xef\x98\x15\x0f\xfd\x0f\x9c\xeb\xe2\x84\x54\x52\xb5\x30\xd8\xff\x16\x92\xaa\x85\xe2\xf4\xd0\x5a\xbc\x31\x48\x73\x50\x02\x3d\x86\xc3\x27\x74\xe9\xe2\x94\x4e\xba\xb4\x30\x28\x81\x1e\x43\xa3\xa6\x40\x6e\xe9\x2c\xb8\x0e\xe7\xf7\xb0\xa6\x07\x7b\xe9\xc2\xca\xb8\x01\xc5\xb9\x70\xa4\x53\x48\x71\x0e\x08\xc7\x85\x6c\x6b\x48\x38\x16\x06\x49\x9a\xb0\xe6\xad\x50\xc8\x7d\x86\x35\x6f\x85\x31\x19\xf2\xa6\x6b\x51\x40\xe1\x04\xa4\x90\xa9\x1c\xd0\x92\x07\xa9\x9c\x90\x96\x1c\x54\xa0\x2d\x86\x90\x56\xa0\x15\x06\x55\xd1\x63\xfa\xe5\xe1\xfa\x16\x4e\x95\x09\xb9\xbe\x41\xb9\xd9\xc1\xee\xbd\xb0\xdc\x6c\x40\xd9\x2d\x8e\xa8\x52\x76\x85\x41\x2a\x27\xa4\xec\x06\xfc\xdc\xe2\x38\x22\x3f\x57\x18\xd4\x3b\x0f\xf9\xb9\x01\x19\xb7\x90\x89\x0c\xc9\xb8\xc2\xa0\xde\x79\x48\xc6\x15\x8a\x5e\x5d\x32\xae\x30\xd8\x2f\x18\x16\x7f\x8d\xc9\xf2\xa7\xfe\x7a\xba\xc0\x03\x0c\xaa\xa2\x87\xc5\x5f\x03\xb6\x6d\x19\x4c\x64\xa6\xb1\x05\x34\xdb\x41\x8a\x29\xa4\xd9\x06\xd4\xd8\xa2\x2f\x93\x1a\x1b\xd0\x61\x0b\x09\xc5\x78\xeb\x50\x61\x59\x0e\x6a\x9c\x87\x2c\xcb\x80\x20\x59\xa8\xa0\x1d\x6f\x23\x23\xc9\x92\xa6\x36\x24\x4b\x06\x34\xc8\x42\xdd\xe8\x90\x06\x29\x0c\xea\xd4\x86\x34\x48\xa1\x50\x1a\x39\x2c\x01\x2a\x0c\xea\x6a\x86\xcc\xc8\x80\xf3\x58\x28\x7a\x1c\x72\x1e\x85\x31\xd1\x2f\x49\x8d\x71\xb3\xce\x43\x09\xe2\xb8\x9d\x43\x00\x83\xea\x9b\x61\xed\xd0\xa0\x50\x68\x61\x57\x61\x58\x28\x54\x18\xa6\x5c\x64\x43\x06\x0c\xc8\x42\xa9\xdf\xb0\x50\x68\x58\x28\x94\xca\xb8\x21\x1b\x32\xa8\xbe\x59\x7c\x21\xab\x6f\x0a\x63\xe2\xcb\x6e\x23\x23\xa0\x52\xa4\x35\x6e\x5d\x38\x30\x26\xbe\xec\x36\x32\x82\x3c\x58\x29\xd2\x1a\x92\x07\x85\x41\xfd\xdc\xb8\xf5\x2c\x40\xa5\x46\x67\xc8\x27\x14\x06\x55\x41\xc3\xe2\x9e\x71\x3f\x1e\xa0\x52\xa3\x33\x6e\x3d\x00\x30\xd8\xe1\x18\xb7\x53\xcd\xfb\xd1\xe8\x4a\xf5\xcd\xb8\xd5\x68\x60\x50\x0d\x37\xe4\x13\x06\x1c\xc2\xfa\x22\xae\xbb\xd5\x68\x60\x52\x61\x34\x6e\xa3\x65\xa0\x52\xf8\x32\xa4\x18\x0a\x93\x6a\xb8\x21\xc5\x30\x60\x0a\x56\x0a\x5f\x86\x4c\x41\x61\x52\x0d\x37\x2c\x14\x1a\xf7\xa6\x5d\x55\x91\xed\x7a\x60\x52\x0d\x37\xe4\x13\x06\x7c\xc2\x4a\xe9\xc8\x90\x4f\x28\xcc\x4f\x47\xeb\xbf\xa0\x18\x56\x8a\x42\x86\x14\xc3\x80\x4f\x38\x5f\x2f\x6f\x1c\x8a\xe8\x7b\x82\x12\xc9\x83\x41\x2d\xcc\xfa\x62\x05\xd9\x5a\x98\xc2\x64\x47\x68\x2c\xbf\x23\x24\xbd\xca\x51\x8a\x21\x49\x4f\x98\x14\xb5\x0d\x49\x7a\x01\x31\xaf\xb2\xfb\x2f\xac\x98\x29\x4c\x2a\xd8\x86\x15\x33\x83\x5a\x98\x95\xdd\x7f\x61\x2d\xcc\xa0\xf0\xe5\xa4\x82\x6d\x58\xf8\x32\xa0\xdf\x55\x76\xec\x85\xf4\x3b\x61\x9a\x0b\x5c\x2a\x00\xf4\xbb\x7a\xe1\xac\xa4\xdf\x09\xf3\x85\x2f\xb4\x7e\x65\xc0\xa2\xab\x26\x2d\x64\xd1\x09\x93\x0a\xb6\x21\x8b\x2e\xa0\xcc\x55\x2a\xc3\x85\x94\xb9\x58\x7e\x5a\x16\x82\xa5\xcc\x05\xd5\x24\x2b\xfb\xe7\xc2\x6a\x92\x41\x89\xc8\xc9\xa1\xa5\xb1\xfc\xda\x8b\x8f\x66\xee\x61\xf9\xd1\x96\x1f\x0d\x8f\xb9\xfc\x68\x10\xeb\x2a\xe5\xc3\x42\x62\x9d\x30\xd9\x67\x1b\x4b\x6f\x02\xd7\xae\xb2\xe7\x2d\xe4\xda\x09\xd3\x4c\xe6\xd2\x75\xc0\xaf\xab\x14\xe0\x0a\x8b\x4a\x06\x5c\xbb\xa9\x0d\xc9\xb5\x13\xe6\xeb\xdf\x71\x1c\x44\x58\x73\x52\xa8\x54\xc8\x8a\xd0\xd9\x50\x86\x72\x72\xb0\x6a\x58\x86\x32\xe2\x71\x1d\x95\x4a\x54\x11\x2e\x58\x50\x8d\x72\xbe\xb2\x22\x14\x2b\x6e\xf4\x83\x41\x36\x8c\x2a\x81\xc9\x59\xab\x21\xad\x2f\xa0\xf2\x55\x33\x0c\xd6\x9c\x14\x26\x3b\x86\x23\x8c\x2a\x29\x43\x59\xaf\xe1\xb3\xfc\xc5\xdb\x5f\x54\xe4\x2f\x06\xad\xc7\x97\x49\x9f\x13\x26\xfb\x8a\x43\xfa\x5c\x50\xdb\xb1\x26\x94\xc1\xda\x8e\xc2\xd4\x1b\x44\x7c\x9e\xf5\x98\xab\x4b\xf5\xd2\xe7\x84\x69\x7e\x37\x74\x23\x70\xe5\xaa\x4b\xf5\x72\xe5\x84\x49\x2d\xde\x08\xb5\x88\xa2\x90\x95\x12\x43\x61\x51\x48\x61\x52\x78\x37\x2c\x0a\x19\x81\x16\x25\x1f\xaf\x16\x85\x5a\x84\xff\x91\x1f\x17\x81\x16\x51\x58\x27\x42\x2d\x0a\x4d\x9f\x20\x4c\x7e\x5c\xc4\x33\xf9\xa8\x2e\xc2\xc7\xf9\x3c\x1e\x3b\xff\xdc\x18\x8a\x78\x47\x74\xcd\x6a\x92\xc2\xa4\x3c\x6f\xc8\xa2\x0b\x0a\x39\xd6\xc4\xe8\x6c\x21\x47\x61\x52\x9e\x37\x64\xbe\x05\x04\xb6\x4a\xb5\x9a\x90\xc0\x26\x4c\xb3\xd3\x56\x6d\x0c\x4a\x34\x56\xf6\xa9\x85\x25\x1a\x85\xf9\x22\xdc\xb0\x44\x63\xc0\x50\xab\x89\x64\xee\x76\x81\x07\x98\x2f\xa6\xad\xb2\xd5\x02\x56\x59\x75\xe1\x7c\x3b\xb4\x00\x53\x1f\xbb\x1d\x5a\x80\xea\x92\xf8\xd6\xb3\xc0\x3d\x9b\xe6\xc3\xb7\x6a\x02\x0f\xad\xba\x24\x2e\x0f\x4d\x98\x7a\x62\xab\x36\x06\xc5\x17\x2b\x3b\xbd\xc2\xe2\x8b\xc2\x7c\x31\xb9\xb5\xf8\x62\x50\x43\xb1\x52\x8d\x24\xac\xa1\x28\x4c\x4a\xfd\x86\x35\x14\x03\xd2\x59\x65\x0f\x57\x48\x3a\x13\xa6\x5e\x5d\xd2\x59\xc0\x1d\xab\xec\xce\x0a\xb9\x63\xc2\x34\x4f\x2f\x77\x2c\x28\x7f\x58\x5d\xec\xde\x7e\xed\xed\xd7\xc6\x41\x48\x27\x0b\xe8\x64\x35\xd3\x85\xd2\xc9\x84\x4a\xb5\x88\x38\x7a\x80\xf3\xe6\xf1\xcd\xab\x8a\xa2\xc2\x55\x0d\x51\x55\x84\x89\x36\x6f\xe4\x0b\xc1\x1d\xab\x94\x86\x08\xb9\x63\xc2\x74\x00\x3a\x2a\x00\x4c\xb0\x9a\x99\x90\x1e\xad\x16\x0a\xd8\x94\x52\x20\x05\x4c\xa8\x6c\xea\x0f\x29\x60\xc2\x94\x52\x70\x1c\x80\x60\x85\x55\xb6\x3c\x85\xac\xb0\x38\xcb\xd6\xd3\x08\x67\x53\x30\xb9\xaa\xeb\xcc\x32\xb9\x84\x29\xf1\x40\x26\x57\x40\xdb\xaa\xec\x48\x0f\x69\x5b\xc2\x74\xac\x94\xb6\x15\x50\xb5\x2a\x9b\x99\xe2\x38\xaf\x04\x26\xf5\x86\xe3\x38\xaf\x3c\x28\x13\x9b\x99\xe2\xa8\x4c\x30\xb9\xe6\xcb\xd7\x76\x3e\x03\x6d\xab\x72\xb8\x5e\x48\xdb\x12\xe6\x8b\x65\x11\x69\x5b\x01\x47\xab\xba\xce\x2c\x47\x4b\x98\x94\x1d\x8e\xe3\x60\x06\x54\xf6\x61\x87\xb4\x2d\x61\x52\x7a\x3b\xa4\x6d\x05\x95\x1a\x6b\x61\xe4\x3a\x06\xe3\xc0\x7c\x31\xa7\x97\xc9\x15\xb0\xb7\x6a\x49\xfe\xe2\x54\x64\xeb\xbd\xd1\xd6\xe3\xd2\xd8\x3e\x15\x32\xb9\x84\xf9\x22\x04\x95\xc9\x15\x70\xb4\x6a\x49\x3e\xde\xef\xb8\xf9\x8e\xcc\xfc\x8f\xab\x2e\x70\xb4\xaa\x0b\xd4\x72\xb4\x84\x29\xe9\xc3\x1a\x8c\x01\x6d\xab\xb2\x21\x39\xa4\x6d\x09\x93\x82\x0a\x71\x1c\x18\xe1\x68\x55\x16\xa8\xb7\x1c\xad\x0d\x71\xaa\xb2\xce\xbc\xa9\x55\xf8\x00\x1e\xf3\xd1\x9c\x6d\x7d\xc2\x0d\x25\xaa\xb2\x14\xbb\xa5\x44\x09\xf3\xf5\x0c\x3a\x5b\x4a\xd4\x86\xf3\x54\xd9\x61\xb4\x5f\xcb\x1b\x17\xb6\x3d\x78\x3c\x93\xee\x4d\x15\xc3\x5a\x3e\xa2\xad\x08\xbf\x3a\xbe\x4f\xdb\xda\xaf\xe5\xaf\x33\x98\xb1\x97\x6e\x7b\x46\xbc\x30\xa1\xaf\x6c\x4b\x21\xee\x97\xfa\x31\x69\xd0\xb6\x8d\xea\xc7\xe4\x4d\xb6\x5d\xf0\x74\x7a\xe5\x10\xbb\xed\xd9\xeb\xc2\x7c\x4d\x45\x5e\xc5\xb2\x2c\x87\xc5\x6d\x4f\x55\x17\x26\x05\x24\xb6\xa7\xaa\x6f\xb8\x50\x95\xdd\x33\x5b\x2e\xd4\x7e\x39\x68\xd0\x54\x89\x4f\x1b\x66\x52\x65\x45\x74\xcb\x4c\x12\x26\xb4\x9a\x2d\x33\x49\xa8\xec\x19\xd9\x54\x11\xfc\xc0\x7c\x3d\x86\xb8\x2d\x26\xb8\xe1\x2c\x55\xd6\x3a\xf7\xc5\xdc\x59\x98\x2f\x5e\x1b\x2e\xd3\x03\x99\xab\xb8\x11\xff\x23\x4c\xe2\xd8\x2d\xa5\x69\xc3\x4c\xaa\xec\xba\xd8\x32\x93\x84\x49\xd5\xeb\x0d\x4b\xe9\x03\x95\x7d\x0b\x5b\xb2\x92\x30\x29\x7f\xb1\x29\x52\xf8\x00\xed\x42\x65\x2e\xf5\x83\x5a\x85\x93\x98\x78\x5b\xab\x70\x43\x69\xaa\xec\x35\xd8\x52\x9a\x84\x09\x75\x68\x5b\x72\x70\x43\x56\xaa\xb0\xf5\xb7\x64\x25\x61\x12\x39\x6f\x4f\x55\xdf\x17\xa1\x0b\xec\xf5\x4d\x15\xc1\x0f\x4c\x8e\x2a\xdf\x16\x13\xdc\x30\x93\x6a\xf3\x85\x54\x00\xe0\x82\x5b\xb8\x3d\x2f\x5d\x98\x54\xa4\xdf\x92\x95\x36\x05\x04\x6b\xfb\x88\xba\xa2\xce\xba\x3c\x4d\x65\x30\xdb\xd0\x90\x2a\xd4\xeb\x2d\x0d\x69\x43\x43\x9a\xb0\x9c\xb6\x34\xa4\x0d\x83\xa8\xb2\x7b\x66\x5b\x00\x50\x98\x54\xb7\xdf\xb2\x89\x84\x0a\xfd\x77\x7b\xc6\xb9\x30\x29\xf1\xb1\x2f\x55\x8e\x63\xcf\x6b\x4b\xbc\xf6\xf1\x73\x1c\x3e\x87\x8d\x38\x36\x02\xd3\x67\x01\x71\x4b\x43\xda\xf0\x8c\x2a\xfc\xdc\x0d\xd9\xe8\x03\x93\x99\xc6\x96\x73\xb4\x39\x09\xbd\x72\xdc\xda\xf6\x24\x74\x61\x52\x25\x7c\xcb\x39\xda\x9c\x58\x5e\x61\xde\xee\xa4\xe6\xc0\xc7\x99\xd0\xb6\xb6\x7c\x1c\xa1\x24\x4c\x41\x3e\xce\x86\x69\x33\xa9\xc6\xbd\x65\xda\x08\xb5\x3d\x4e\x70\xcb\xb4\x11\xe6\x65\xeb\xfd\xda\x1c\x5c\x5e\xdb\xe0\x59\x61\x23\x18\x47\x2e\x5f\x88\x71\x64\x53\x6f\xaf\x42\x73\xdb\xd6\xdb\xdb\xb0\x6b\x26\xec\xab\x0d\xc5\xe6\x03\x95\x2d\x29\x5b\xa6\x8d\x30\x61\x5f\xed\xe4\xd7\x86\x70\x53\xa1\x80\x6d\xab\xf2\x6d\xc8\x37\xf3\xb2\x73\xf0\xea\x1b\x2a\x4c\x85\xa3\xb5\xa5\xc2\x08\x93\x0a\x22\x5b\xae\x8b\x50\x61\x00\x6d\x78\x2f\x0f\xf0\xd1\xec\x42\x3f\x1a\x50\xfb\x33\x42\x6c\x89\x2d\x42\xed\x7c\x6d\x8b\xeb\x09\x93\xf2\xcf\x5b\xae\xcb\xe6\x78\xf3\xca\x8a\xe8\xce\x7e\x47\x60\x5e\xc5\x67\x35\x45\x6f\xae\x2a\x88\x6e\x45\xbc\x50\xf1\xf1\xbc\x10\xc4\x96\xca\x5a\xe7\x96\xd8\x22\xcc\xab\x2a\xf2\xf1\x8b\x5f\xf4\x46\xbf\x76\xd6\xf8\x2a\x8d\xd0\xf8\x20\x7d\xd4\x3e\x68\x84\x9f\x03\x98\x14\xdb\xdd\x92\x3e\x36\xdc\x8d\xda\xf1\x85\x72\x37\x84\x09\x21\x6b\x5b\x78\x6e\xc3\xd7\xa8\xe4\x9d\xb7\x55\xe6\x36\x67\x58\x4f\x26\x55\xdb\x33\xac\x37\x95\xe5\x2a\x89\xe1\x9d\xfd\x1c\xd9\xcf\xc1\x30\x65\x95\xb9\x0d\x51\xa3\x8e\x8b\x2e\x3c\x9f\xc7\xa3\x98\xcf\xb0\xbe\x25\x6a\x6c\x88\x1a\x95\x7c\xe7\x96\xa8\xb1\x8b\xbd\xfa\x0c\xeb\x5b\x56\xc6\xe6\xc0\xea\xca\x6a\xe3\xf6\xc0\x6a\x61\x72\x4e\xc0\xf6\xc0\xea\x0d\x51\xa3\x92\x31\xdc\x12\x35\x36\xb5\xe8\x26\x93\xbd\x6d\x2d\xba\x0d\x51\xa3\x72\x26\xf3\x96\xa8\xb1\x21\x6a\x4c\x26\x7b\x5b\xa2\xc6\xe6\x90\xe9\x4a\xce\x6d\x7b\xc8\xb4\x30\x39\x73\x60\x7b\xc8\xf4\x86\x49\x51\x59\x6d\xdc\x32\x29\x84\x09\x35\x6d\xcb\xa4\xd8\xd0\x26\xea\x68\xdf\x3f\x0e\x62\xcb\xaa\x10\x26\xf5\x5e\xb6\xac\x8a\x0d\xed\xa1\x92\xf0\xd9\xd2\x1e\x84\x79\x31\xa2\x5a\x84\x6e\xc3\x84\xa8\xc3\xbe\x53\x3f\x80\xc9\x1c\x75\x7b\x22\xb4\x50\x87\xbd\xc2\x54\x53\x98\xd4\x8e\xd9\x25\xec\x3b\xa6\x9a\x9c\x14\xbb\xe5\x4b\x08\x13\x46\xdd\x96\x2f\xb1\x0b\x71\xd9\xb0\x11\xdb\x4f\xb3\xfd\x45\x6f\xf4\x17\x0f\xdd\xc9\xc0\x68\x5d\x3a\x61\x52\x2d\x79\x17\x15\x0b\x8e\x43\x65\x79\x7d\xcb\x71\x10\x26\xd5\x92\xb7\x1c\x87\x0d\xcb\xa0\xb2\x65\x60\x7b\x00\xb3\x30\x29\x4d\xb3\x65\x1c\x6c\xb8\x04\x75\x3e\x53\xe0\x2d\x97\x40\x98\x54\x4b\xde\x56\x76\xdb\xa4\xf1\x2b\x47\x29\x6e\xf3\xf4\xc2\xa4\x5a\xf2\x36\x4f\x2f\x54\x4e\x66\xda\xd5\x2f\x04\x4c\xaa\x25\x6f\x53\xf7\x9b\xa4\x7c\xa5\x66\xdb\x36\x29\x2f\xcc\x84\x13\xac\x7a\x62\xd2\xda\x95\xf3\x9b\xb6\x69\x6d\x61\x52\x32\x67\x57\xad\x0e\xa8\x2c\x46\x6e\x33\xdd\xc2\x84\xa7\xb8\xab\xfd\x55\x89\x8c\xa6\xaf\x6d\x64\xc4\x79\xc5\x33\x61\xc1\x9e\x57\x2c\x34\xd6\xc8\xb6\x99\xee\xdd\x1e\xf7\xd6\x58\x10\xdb\x4d\xf7\x06\xcc\xc4\x88\xea\x11\xc6\x9b\x33\x86\x1b\x0b\x62\xdb\x33\x86\x37\xd5\xdc\x26\xe7\x5b\x6c\xab\xb9\x09\x8d\xc5\xa2\xdd\x8c\x9f\x80\x99\x3e\x8f\xe7\xb5\x49\x91\x37\x68\xef\xdb\x14\xf9\x26\x2d\x3e\xa9\x01\xb4\x9b\x61\x32\x69\xed\xc6\xa2\xce\x36\xad\x2d\xcc\x64\x23\x8c\x79\x38\xf8\xb7\xb1\x94\xb1\x9b\x5f\xa8\xf9\x39\x18\x18\xcd\x61\x6f\x12\xd6\x8d\xa9\xf9\x36\x61\x2d\x4c\x88\x97\xdb\x84\xf5\x26\x57\xdc\x98\x4e\x6f\x73\xc5\x9b\xa4\xe9\x4c\xd7\xd3\x13\x26\x4d\x37\x89\xbb\x99\xf0\xc4\x26\xee\x36\x45\xa0\x1a\xb5\xe6\xb7\x45\xa0\x36\x47\x88\x4e\x6a\xbc\x6c\x8f\x10\xdd\xe4\xf2\x1a\x04\xda\x6d\x2e\x4f\x98\xcc\xfc\xb7\xb9\xbc\x4d\x5d\xa8\xa6\x8f\xb5\x2e\x94\x30\xa9\x04\xb3\x3d\x09\x74\x73\x12\x68\xbb\x98\x43\x78\x12\xe8\xa6\x7a\xd4\xcc\x74\xb4\xd5\xa3\x36\xe5\x9d\x9a\x4e\xc1\x8c\xdf\xa6\x58\x53\xd3\x3a\x86\xe1\x06\x30\xe1\xda\x6d\x0b\x37\xed\xf1\x7c\xe1\x46\xcd\xee\x3d\x74\xa8\xc0\x64\xf9\x61\x0f\xbf\x36\x55\x9a\x9a\x9f\xd6\x2a\x4d\xc2\xa4\xe0\xeb\xb6\x4a\x93\xd0\xe0\xae\x6e\xab\x34\x6d\x4e\x02\x9d\x14\x7c\xdd\x9e\x04\xba\x39\xd7\xb3\x25\x74\x62\xf8\xb5\x39\xd7\x73\x52\xf0\x75\x8f\x65\xeb\x1f\x1f\xdb\x28\xbd\xbd\x4d\x4e\x0a\x13\x0e\xe0\xf6\x40\x4f\xa1\x51\xb8\x69\x9b\xaf\xdc\x64\x22\x67\x46\x31\xcd\x44\x6e\xd2\x8e\x8d\x15\xaf\x6d\xda\x51\x98\x14\xc0\xd9\xd6\x72\x12\x1a\x05\xa7\xb7\x99\x48\x61\x52\xa4\x75\x0f\x83\x25\x32\x91\x0d\x72\xea\x36\x13\x29\x4c\xf8\x84\xdb\x54\xe3\x26\x63\xd8\x38\x52\x65\x9b\x31\x14\x26\x45\x5a\xb7\xc5\x9a\x84\x96\x9a\x57\xd9\x88\x40\x01\x32\x22\x15\x73\x3c\x6a\xd6\x12\x31\xf5\x30\xa6\xe6\x70\xd0\x99\xed\x1c\x7d\x34\xd0\x38\x06\x65\x7b\x38\xa8\x30\x29\xcc\xb3\x87\xb1\x18\xd0\xa8\x2e\xbd\x87\x8a\x39\x54\x4c\x86\xcf\xa1\x62\x72\x5e\x68\xa3\xba\xf4\xf6\xbc\x50\x61\xb2\x40\xb4\x3d\x2f\x54\x68\x50\x58\xb7\x75\xa5\x84\x99\xfd\x1c\xc6\x16\x40\x4b\x5d\x91\xef\xa8\x92\x67\xba\x50\x25\x27\x13\xda\x12\x81\x84\x45\xa4\x84\x49\xdd\xd6\x6d\x11\xa9\x4d\xc5\xa8\x46\x2d\xa8\x6d\xc5\xa8\x4d\x95\xa8\x49\xdd\xd6\x3d\x74\x7c\x40\x4b\x8c\x7c\xa6\x53\x85\x99\xcb\xf5\xfd\xa1\xd8\x82\x52\x9b\x04\x6c\x83\x53\xbb\x4d\xc0\x0a\x93\xd5\xaf\x6d\x02\x76\x93\x47\x6d\x2c\xfa\x6d\xf3\xa8\x9b\x92\x4e\x93\x0a\x46\xdb\x53\x41\x85\xa6\xd5\x4d\x2d\x05\x98\x14\x7f\xdd\x56\x7c\xda\x14\x6e\x6a\xda\x93\x85\x9b\x84\x09\x6d\x74\x5b\xb8\x49\x68\x6a\x91\x67\x87\x0a\x93\xe2\xaf\xdb\xcc\xed\x26\x5b\xdb\xd4\x0f\xcb\x3b\x09\x13\x72\xe9\xb6\xbc\xd3\xa6\xfe\x52\xf3\xcb\x5b\x7f\x49\x98\x94\x88\xdd\x1c\x1a\xfa\xc0\x7c\xae\xf2\xf1\xf1\xb9\x11\xa3\x46\xbb\x3d\x28\x74\x93\xa6\x6d\x2c\xfa\x6d\xd3\xb4\xc2\xfc\xab\xc8\xd6\x6f\x7e\xb1\x29\xf2\x17\x55\x3f\xfc\xb5\x35\x93\x84\x46\xc1\xd6\x6d\xcd\x24\x61\xe6\xaa\xc8\x46\xa0\xa4\x19\x85\x9f\xfb\xd3\x08\x94\xb4\xd2\xab\x2a\x29\xd0\x28\xd8\xba\xcd\xef\x6e\x32\xb7\x93\x65\xc6\x6d\xe6\x76\x93\xad\x9d\x94\x51\xda\x6f\x63\x4f\xa0\x41\x08\xdd\x16\x35\xda\x6f\xbd\x27\x71\xac\x15\x8c\x36\xb5\x89\x1a\xb5\x89\xb6\xb5\x89\x84\x49\x39\xd1\x6d\x6d\xa2\x4d\x89\xa1\x46\xb9\xc7\x6d\x89\x21\x61\xb2\xf2\xb8\xdf\xce\xfc\xa9\x27\xd4\x0a\x6e\xd7\x7a\x42\xc2\xcc\x44\x6c\xd6\x13\xda\xd4\x13\x6a\x70\x31\xb7\xf5\x84\x84\xc9\xfa\xe4\x7e\xeb\xde\xa8\x27\xd4\x58\xea\xda\xd6\x13\x12\x66\x26\xae\x7b\xeb\xa5\x28\x1e\xd4\x58\xea\xda\x16\x0f\xda\x6f\x6d\x93\x98\xf8\xad\x6d\x92\x2b\x6e\x1c\xb2\xb1\xcd\x15\x6f\x52\xbe\x8d\x4a\x54\xdb\x94\xaf\x30\xa1\xb3\x6e\x0b\xe0\x6c\x32\xbf\xad\x0c\x45\x6f\x45\x6f\xae\x9a\x88\x78\x21\x4e\x7a\x6c\x94\xb6\xd9\xb7\xfd\x05\x4c\x96\x2c\xb7\xd5\x6e\x36\x15\x6a\x1a\x95\x95\xb6\x15\x6a\x84\x49\x95\xa6\x7d\x1b\xd7\x51\x5c\xa6\x51\xc1\x68\xdf\xeb\x23\xba\xb9\x2a\x21\x5a\x8a\x9e\x2e\xa4\xf6\xcc\xb6\xf6\x8c\x30\x29\x56\xb9\x6f\xbb\x90\x7a\x31\x8d\x42\x33\xdb\x7a\x31\xc2\xf4\x0b\xdd\x5a\xc7\x4d\x17\xba\x4a\x75\xdb\x85\xc0\xa4\xa4\xe5\x36\x7d\xbc\xa9\x2a\xd3\x60\xf7\x6d\xab\xca\x08\x93\xa5\xd4\x6d\x62\x78\x53\xbd\xa5\x51\x25\x65\x5b\xbd\x45\x98\x94\xb4\xdc\x66\x5b\x37\xd9\xd6\xe6\x9a\x91\xd9\xd6\x4d\xa9\x96\x06\xcd\x6d\x5b\xaa\x45\x98\xac\xc1\xee\x65\x5c\x47\xa9\x96\x46\xd1\x87\x6d\xa9\x96\x4d\x11\x96\x09\x49\x78\x5b\x84\x65\x2f\x34\xda\xa5\x9f\xa5\x46\x03\x93\x35\xd8\xbd\xfc\x42\x94\x6a\x69\x94\x24\xd8\x96\x6a\xd9\x9c\x9b\x38\xa1\x12\x6f\xcf\x4d\xdc\xa4\x79\x1b\x25\x09\xb6\x75\x59\xb6\xf9\x5d\xd5\xd7\xfc\xae\xd0\xa0\xa6\x6d\x8b\xb0\x08\xb3\xe0\xbf\x4c\xf9\x6e\x8e\x3c\x6c\x0d\xfd\x5a\x7a\x39\x60\xaa\xe4\xa6\x7c\x37\x29\xdf\xc6\x39\x12\xdb\x94\xaf\x30\xa9\x85\xb9\x2d\xe8\xb2\x49\xcd\x36\xa8\x69\xdb\xca\x26\xc2\xa4\xf0\xe5\x36\x4d\xbb\x49\xad\x36\x6a\x96\x6c\x53\xab\xc2\x84\xbc\xbc\xd7\xf9\x5c\xf5\x8c\xbb\xd4\x2c\xd9\x56\x36\x11\x26\x65\xba\xb6\x09\xd8\x4d\xd2\xb5\x35\x46\xfa\xe5\x77\x04\x26\xe5\x31\xb7\x09\xd8\x4d\x6a\xb5\xb1\x37\x76\x9b\x5a\x15\xa6\x26\x6a\xee\x74\x93\x28\x6d\xec\x1b\xdd\x26\x4a\x85\x49\x79\xcc\x1d\x7e\x5a\x0a\x9c\x34\x88\x62\xdb\xc3\xf9\x76\x30\x5d\xa2\x3c\xe6\x0e\x3f\x2d\xc9\xd1\xc6\x9e\xca\x6d\xb1\x13\x61\xba\xb2\x6d\xa2\x54\x68\x54\x36\xd9\x26\x4a\x85\x59\x18\xe6\x2c\x89\x22\x34\x76\x4b\x6e\x4b\xa2\x08\x93\x52\x9b\x3b\xb4\x5a\xa0\xb5\xf9\x7d\xda\xd6\x36\x01\x2b\x4c\x58\xde\xdb\x73\x00\x37\x45\x54\x1a\x64\xb6\x6d\x11\x15\x61\x52\xcf\x6c\x5b\x44\x65\x73\xf6\x5f\xe3\xf8\xfa\x1d\x6a\x51\x90\xb7\x71\x8d\x3e\x1c\x64\x39\xe8\xaf\xb1\x69\x71\x87\xfa\x11\x7a\x03\x46\x41\x0f\xfd\xdb\xa4\x7c\x1b\xfb\xf2\xb6\x29\x5f\x61\x52\x1e\x73\x9b\xf2\xdd\x54\x4c\x69\xec\x7f\xdb\x56\x4c\x11\x26\xb5\xd1\xb6\xe7\x00\x6e\x0a\x94\x34\x76\xa3\x6d\x0b\x94\x08\x93\xa3\x93\x76\x38\xe4\xc5\x33\x5a\xb5\x8e\xfa\x85\xb1\x14\x30\x29\xb5\xb9\xc3\x58\x8a\x3c\x6c\xeb\xbe\x90\x5a\x14\x87\xfe\x62\x14\x24\x3f\xfb\xc0\xd3\x5f\x6c\x1a\xda\x66\x5b\x37\x29\xd0\xc6\xae\x9e\xbd\x1d\x93\x80\x09\x2f\x7d\x5b\x08\x64\x53\xfc\xa3\xb1\x37\x63\x6f\x3b\x7a\xdb\xd1\xcc\x77\x2d\x04\xb2\x37\xa1\x0b\xc7\xb1\xef\x6d\xaf\x92\x04\x9c\x54\xdf\xdc\x26\x01\xf7\x21\xc9\x4c\xc1\xb2\x7d\xb4\x27\xb2\x28\x8d\x2d\xf2\xc7\x2c\xca\xe1\x40\xaa\x36\x9f\x5e\x3d\x1e\x48\x25\x4c\xaa\x91\x1c\x0f\xa4\x3a\x6c\x6b\x6f\xf3\xe9\x89\xe3\xb6\xf6\xc3\xa1\x4a\x93\xd5\xe8\xf3\xc2\x13\x9f\x17\xa7\x97\x43\x39\x39\x1c\xb6\xf4\xc0\xf3\x69\x59\x5d\x3d\x1e\xb0\x24\x74\x8e\x30\x3e\xa4\x39\x3e\x30\x61\x7f\x1e\xb3\x1d\x87\x03\x96\x3a\xb3\xe2\xe3\x01\x4b\xc2\xa4\x62\xc1\xf1\x80\xa5\xc3\xfe\xf0\x0e\x39\xe2\xb8\x3f\x5c\x98\x54\x2c\x38\xee\x0f\x3f\xec\x09\xef\x50\x1d\x8e\x07\x2c\x09\x13\x26\xe9\x31\x73\x72\xd8\x32\xde\x29\x7b\x7e\xdc\x32\x2e\x4c\x2a\x16\x1c\x33\x27\x42\x7f\xd9\x85\xc7\x76\x11\x39\x53\xb1\xe0\xb8\xb1\xfc\x90\x4c\xe9\x50\x0a\x8e\xc9\x14\x61\x36\x3b\xfa\xd8\xae\x43\xbb\xe8\x1c\xf3\x2b\x87\xcd\xe0\x1d\xce\xd1\x71\x33\xb8\x30\x29\x62\x70\x3c\x99\xe9\x90\x85\xe9\x64\xba\x8f\x59\x18\x61\xb6\x8f\x68\x29\x0a\xae\x6a\x88\xb6\xa2\xcd\x55\x05\x11\x3d\x41\x9a\xa5\x93\x77\x3e\x6e\x19\x17\x26\xa5\x0e\x0e\xe9\x97\x07\x78\xa1\xc6\xe3\x6f\x1f\x7f\xfb\x42\x3c\x1e\xf5\x3d\x64\x4e\x3a\xe9\xd0\x63\xe6\x44\x98\xf8\xeb\x43\x16\xe5\x01\xba\xb0\x2b\xf2\x85\x96\x5d\x38\x10\xbd\x15\xad\xe7\xaa\xc1\xe3\x97\x8f\xc7\x4f\x34\x9b\xba\x7c\xa1\x45\x17\xce\x17\x22\x5f\x88\x49\x24\xbe\xff\x98\x5f\x39\x1c\xd0\xd4\x49\x64\x9d\x4b\x5d\x05\x26\x55\xad\x8e\x29\x17\xa1\x73\xe2\xef\x31\xe5\x22\xcc\xe6\x6b\x87\x8d\xe0\x28\x7c\xd2\x37\xc7\xc3\x9a\x84\x49\xf5\x84\xc3\xc1\x4d\x0f\xf0\xac\x8b\x1b\x55\xcc\x4b\xc5\x6c\xde\xf8\x79\xd6\xd3\x7a\xf6\x74\x9f\x4b\xc5\x34\xe5\x42\xf5\x84\x63\xca\xe5\x90\x5f\xe9\x1c\x0e\x7a\xcc\xaf\x08\x93\xea\x09\xc7\xfc\x8a\xd0\x29\x42\x7e\xcc\xaf\x08\x13\x8a\xf3\x71\x4f\xf7\xb9\x50\x4c\xd2\x11\xe7\x52\x31\xc9\xaf\x4c\xaa\x27\x1c\xf3\x2b\x27\x31\xf5\x6a\x3d\x21\xa2\xa3\xd9\x68\xdd\x61\x39\x9d\x74\x7b\x95\x6a\xf2\x0c\x66\xc7\x4d\xd7\x87\x33\x97\x3a\x2c\xa7\xe3\x99\x4b\xc2\x6c\x43\x11\x8d\x60\x57\x74\xa7\xb2\xf7\x71\x57\xb4\x30\x29\x10\x70\xdc\x15\x7d\xd8\xd0\xdc\x59\x5e\x3f\x49\x35\x49\xaa\xc9\xa0\xa9\xeb\xf3\x2c\x5e\x68\xbc\x10\x2d\x45\xb4\x7e\x2a\xb2\xf5\xa8\x09\x8b\x3a\xc7\x5c\x8d\x30\xc9\xaf\x1c\x73\x35\x87\xd3\x94\x3a\x0b\xd4\xc7\xd3\x94\x84\xd9\xd0\x1c\x36\x4d\xff\x78\xc8\xc2\xf4\xcb\xc7\xfb\xb5\x81\x49\xb1\x81\x63\x16\xe6\xa4\xe7\x0b\x77\x16\xfa\x0e\xbb\x9a\x3f\x30\x9f\x51\xf4\x7b\x43\xf1\x71\xef\xf3\x61\x8f\x72\x67\x25\xed\x78\x90\x91\x30\xa9\x58\x70\x4c\xd2\x1c\xb6\x17\xf7\x94\x14\x85\x22\xbb\xc0\x1b\xfd\x75\x9c\x0d\xa7\xa6\x1d\x33\x32\x87\x33\x84\x3a\xfc\xa5\xe3\x19\x42\xc2\xe4\x48\xa7\x93\xb5\x60\x72\x22\x9d\x63\x61\x8f\x3b\x73\x85\x49\xa9\x83\xe3\xce\x5c\xa1\x73\xf6\xd5\x71\x67\xae\x30\x89\x07\x4e\xf6\x03\xb2\xe7\xb6\x53\xf5\xfa\xb8\xe7\x56\x98\x14\x44\x38\x1e\x18\x74\x38\x30\xa8\x27\x54\xc6\x03\x83\x84\x49\x41\x84\xe3\x81\x41\x87\x94\x4b\xe7\x40\xaa\xe3\x51\x40\x87\x0d\xb6\x93\x6c\xd8\x71\x83\xed\xc9\xcf\xa0\xd1\xf3\x47\xf4\xb9\xf1\xcd\x55\x15\xd1\xad\xe8\xe6\x2a\x7e\x51\x73\x05\x26\x05\x11\x8e\xa9\x9c\x43\xfa\xa6\xb3\xa6\x78\xdc\x86\x2b\xcc\xee\x8d\x9a\x2b\xd0\x39\x44\xea\x98\xdd\x11\x66\x47\x19\xc8\xf4\x3c\xb0\xb8\x8a\x5e\xf5\xa3\x01\xb3\xfb\x78\x3f\x1a\xd0\x59\x36\x3b\xa6\x72\x0e\xe9\x9b\xce\x1a\xd9\x71\x83\xad\x30\x49\xdc\x1d\x53\x39\x87\x24\x4d\x67\x37\xed\x31\x49\x23\x4c\x8a\x2b\x1c\xce\x13\x7a\x80\x67\x15\xae\xba\x7d\xd6\xed\xb3\x14\xf9\xac\xc5\x0b\x31\x56\x16\x5d\x38\x30\x29\xae\x70\xcc\xdb\x1c\xb2\x30\x9d\xbd\xad\xc7\x33\x84\x84\x49\x10\x77\xdc\xdb\x7a\xd8\xa2\xda\x59\x45\x38\x6e\x51\x3d\x9c\x21\x34\xfb\x33\xcb\x3b\x9e\x21\x74\x0a\x6a\xc2\x7e\xd4\x53\x54\x93\xa2\x9a\x60\x0a\x1e\x18\x74\x8a\x9f\x76\xf0\x42\x7e\xda\xe2\xa7\xbd\x68\xaa\x9f\x96\x0d\xa3\x1d\x6e\xcf\x71\xc3\xa8\x30\x29\xae\x70\xdc\x30\x7a\xd8\x30\xda\xe1\xf6\x1c\x37\x8c\x0a\x93\xe0\xf2\x78\x56\xcf\x21\x4d\xd2\x99\xdc\x1e\xd3\x24\x87\x03\x74\x3a\x07\x17\x9c\x6a\xdf\x57\xa6\xe6\xfd\x23\xe2\xb5\xc9\x89\x74\x08\x33\xc7\x9c\xc8\x61\x7f\xe5\x24\x8f\x7a\xdc\x5f\x79\xea\xe3\x04\x3b\xd5\x7f\x4f\xd5\x09\x02\xb3\xa7\x8a\xa8\x2a\x7a\x2c\x8d\xb0\xf1\x98\x39\x11\x26\x95\x14\x8e\x99\x93\x43\x9a\xa4\xb3\x9d\xf1\x98\x26\x39\xa4\x46\x26\x65\x02\x4f\xd5\xe3\x01\xbd\x30\x42\x54\xfb\x9e\x33\x71\x26\x69\xda\xe3\x99\x38\xa7\x62\x8f\x54\xff\x3d\x55\x7b\xac\xda\x63\x56\xe4\x0b\x31\x7c\xc2\xa1\x39\xd5\xe1\x13\x98\xd4\x5b\x38\xee\x83\x3c\x75\xd3\x5f\x7c\xb4\xaa\xab\xe4\x98\x9c\xd9\x71\x43\x9e\x83\x73\xaa\x1f\x0d\xe7\xec\x46\x45\x61\x52\x2a\xe1\x98\xd1\x39\xa4\x6f\x3a\x95\x75\x8f\xe9\x1b\x61\xb2\x09\xe6\x98\xbe\x39\xa4\x6f\x7a\xc5\x03\x98\xbe\x11\x26\xf5\x09\x4f\xd5\xf8\x48\xdf\x74\xca\x19\x1f\xd3\x37\x87\xf4\x4d\xa7\xc6\xf0\x31\x7d\x23\xcc\x4e\xf4\x67\xfa\xe6\xb0\x85\xb1\x13\x66\x9f\xa6\x02\x00\x93\x73\xde\x4e\x63\xb9\x46\xe8\x54\xfc\x3d\x4d\x9d\x00\x26\xd9\xe9\xd3\x8c\xeb\x48\x05\x75\x6a\xf9\x1e\x53\x41\xc2\x64\x5a\x72\x9a\x71\x1d\xb9\x9e\xce\x4a\xc9\x69\x1a\x32\x30\x3b\x86\xec\x6e\xc9\xd3\x6e\x5a\xcf\x17\x6a\x8e\xce\xe4\x7d\x66\x27\xde\x34\xef\x73\xd8\xa8\xd8\xa9\x27\x7b\xdc\xa8\x28\x4c\xb6\xda\x9c\xa6\xbf\x07\x3a\x7c\x9e\xd3\xb4\xed\xa6\x6d\x13\xfd\x99\x1d\x12\x3a\x7c\x9e\xd3\xd4\x42\x13\x46\x1d\x5d\x35\x61\x74\xc8\x08\xf5\xfa\xb9\xd1\x46\x10\x81\x50\x89\xe1\x98\x0a\x3a\x9c\xeb\x32\x49\x91\x1f\xcf\x75\x39\xec\x66\xeb\x94\xa7\x3b\xee\x66\x3b\xec\x60\x9b\xec\x18\x3e\x6c\x63\xfb\x40\x67\x53\xda\x71\x37\x9b\x30\x49\x7e\x1f\x77\xb3\x1d\xf6\xa9\xf5\x96\xff\x4d\xae\x78\xe4\xff\xcf\x48\xec\x2e\x36\x61\x8e\xcf\x8f\x63\x4e\x1c\xde\xd2\x29\xec\x76\x3c\xbc\x45\x98\x6c\x18\x3e\x5d\x03\x06\x3a\x25\xdb\x8e\xe7\xb9\x1c\x76\xc4\x4d\x36\x0c\x1f\x77\xc4\x1d\xb6\xbf\x75\x27\x2d\x6e\x7f\x3b\x6c\x79\x9b\xc3\x17\x31\xb0\xe1\xa4\x96\xee\x4c\xc0\x93\x5a\x0e\xa7\xb3\x4c\xb6\x02\x9f\xae\x01\x73\xba\x4a\x37\xe2\xf6\x74\x15\x61\x0e\xec\xd0\xed\x6f\x87\xc4\x5a\xe7\xc8\xc9\x63\x62\x4d\x48\x1d\x5d\x20\xc9\xf6\xe3\xe9\x58\x18\x75\xae\x4e\x3f\x1f\x51\xe2\x59\xf4\xa6\x16\x46\x9a\xac\xb3\x12\x71\xba\xce\x13\x98\x90\x04\x4e\xd7\x79\x92\x32\xeb\x06\x49\xa6\xcc\x0e\x67\x9d\x4c\xb6\x15\x1f\xcf\x3a\x11\xae\xc4\x6b\x9b\x45\x13\x2e\x07\x7a\xb3\x68\xc2\xc5\xa1\x8f\x67\xb0\xd4\x79\x48\xac\x4d\x36\x0c\x1f\x13\x6b\xc2\x55\x3e\xcf\x0a\x45\xf1\x88\x08\xf1\x86\x91\x2d\x30\xd9\x43\x7c\x86\x43\x25\x70\x69\x61\x9e\xae\x72\x38\x51\x65\xb2\x87\xf8\x0c\xb5\x0f\xb8\xa8\xe3\x78\x86\x16\x06\x5c\xce\x2a\x86\x0a\x09\x4c\x36\x0c\x1f\xcf\x60\x11\x2e\xdd\xa2\xd9\xbd\x43\x2a\x6f\x0e\x14\xc0\x54\x9e\x70\xb1\x57\xf7\x0c\x63\x69\xb3\x7b\x6c\x18\x3e\x66\xf7\x84\x8b\x4d\x3d\x67\x38\x8c\x90\xe4\x9b\x6c\x05\x3e\xc3\x18\x0e\x48\xb0\x02\x8f\x09\x3f\x61\xb2\xc9\xf7\x0c\x87\x70\x20\x5d\xbe\xb6\x1a\x0d\x24\x4e\x3d\x3f\x6e\x63\x3c\xa6\x05\xd9\xf7\x7b\x4c\x0b\x0a\x89\x5c\xca\x31\x2d\x78\xd8\xb3\x38\xd9\xd1\x7b\xdc\xb3\x28\x24\x96\x60\x8f\x99\x42\x61\x0e\x82\x06\xf6\x2f\x3e\xc0\x29\xe0\x9f\x1b\xfd\x68\x04\xf4\xec\xe8\x3d\xe6\x13\x85\x44\xf1\xf2\x63\x3e\x51\x98\xc3\xbe\x77\x78\x03\x92\x1e\xc9\x7c\xe2\x61\x8b\xe1\x64\xdf\xef\x19\x8e\x52\x40\x66\xf7\xc2\x31\x79\x28\x64\x0a\xc3\x1d\x93\x87\x42\x86\xcf\x7e\x4c\x1e\x0a\xf9\xe5\x17\x72\xd9\x02\xc8\x2f\x5b\xaf\x59\x99\x16\x64\xe7\xda\x31\x2d\x28\x64\x72\xdf\xc7\xb4\xa0\x90\xb3\x4d\x75\x10\x1c\x96\xf9\x6f\x5e\x65\x17\x5a\xcf\xfc\x73\xa3\x5d\x48\xc8\x33\x3a\x3a\x61\xc8\x03\xe4\xfa\x11\xf9\x8e\xcc\x3d\x60\xac\x1c\xd3\x82\x42\x76\x26\x61\x5a\x50\x98\x30\x56\x8e\xbb\x2c\x85\xdc\x55\x4c\x3d\x00\x5b\x2a\xe7\x60\x32\xe5\x96\x4a\xa1\x38\xef\x33\x9f\x28\x14\x4e\x49\x3d\xe6\x13\x0f\xf9\xc4\x39\x34\x64\x47\x62\xa0\xe4\xcf\xe3\xed\x7b\x4b\xcf\xf8\xb5\x0d\x83\x81\x39\x08\x07\x4c\x31\x0a\xc5\xf1\xda\x1c\xa2\x30\xd9\xbe\x7b\xa6\xe3\x35\x50\x28\xe3\x7e\xa6\xe3\x35\xe7\xd4\x4c\xb6\xef\x1e\xcf\xa9\x11\x0a\xa5\xb1\x8f\xe7\xd4\x08\x93\xbd\xba\x67\xea\x86\x80\x42\x99\xdb\xe3\xd1\x35\x42\x69\xff\xa6\x52\xd4\xf3\xdf\x7f\x7a\xff\xfa\xc3\xdf\xfe\xc3\xfb\xd7\xff\xfa\xfe\xd3\xfe\x5a\x7f\xf9\xed\xb7\xfd\xf3\xef\xf1\xd3\xfa\xfd\xeb\x0f\x8f\xf4\x2b\xf6\xf9\xe9\xe7\xfd\xdb\xfe\xf3\x2f\x7f\xf9\x6d\xed\xaf\x5f\x7f\xf9\xf5\xb9\x8b\xff\xfd\xdf\x01\x00\x00\xff\xff\xeb\x41\x9d\x3c\xf2\xad\x00\x00"); -var _bfee =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\x90\x82\x01\xe3\x56\xaa\x2a\xb5\xe4\x10\x54\x25\xad\x4a\x9b\x5d\x69\xb5\x07\x62\x4f\x90\xa5\xc5\x58\x06\x0e\x79\xfb\xd5\x8c\x59\x76\x0f\xd1\x84\xcf\xf8\xd7\x78\x4c\x5a\x37\x87\xc6\xd9\x19\xd2\x3f\x61\xd4\x2d\xce\x70\xb3\xce\x04\x9c\xc6\x25\x68\x84\x2b\xf6\xd6\x25\x89\xc8\xc1\x58\x3d\xbf\x3d\x72\xd1\x43\xe7\x93\x24\x3d\xfe\x1a\x4a\x25\xf6\x3f\xe5\xfe\x08\xcb\x84\xab\xd6\xcd\xa1\xbd\x4f\x33\x0e\x8d\xbb\x8d\x50\xc4\xdd\x66\xf1\x6b\x02\x40\xfa\x17\x7b\x3b\xcd\xe1\x0e\xbb\x1f\x66\xbc\xe2\x27\x30\x78\x23\xff\x1d\x0c\x06\xeb\x7a\xd8\xd5\xe7\x56\x6c\xdc\x2e\xde\xbf\xe0\x80\x6e\x06\xc1\x86\xce\x70\x4d\xd2\xfa\xd4\xf9\x73\x37\x20\x7c\xe8\xe5\xc2\x6b\xbc\x74\xc1\x30\xd9\xd1\x81\xc8\x3f\x67\x99\x7c\xf7\x7f\x77\x8f\x6b\x56\x92\x3e\xfe\x6f\x0e\xf0\x24\x40\x64\x90\x4b\x99\x57\xcf\xab\x3f\x9c\x46\xb3\xbd\x25\xf2\xd8\xbe\xb6\x26\x74\xae\xc7\xe4\x5b\x27\xca\xeb\x77\x58\x8b\x28\xaa\xb2\x22\x93\x1d\x1b\x15\x51\xa8\xb2\x60\xd3\xd1\x74\x34\xc9\x66\xa2\x21\x59\x46\x52\x09\x96\x2a\x27\x29\x59\x64\x94\x8a\xe4\x0b\xcb\xd7\x28\x94\x5e\xe6\x2c\x31\xa7\xa2\x9c\xd8\x81\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\x63\xc1\x42\x85\xce\xa2\x68\xc6\xdb\x59\xe9\x3f\xdd\xed\x36\x6d\xbd\x84\x80\x6e\xe6\x9b\xe5\x81\xd2\x90\xac\xc3\xed\xdb\xf1\xa3\xa7\x5d\xfc\x7b\x0d\x00\x00\xff\xff\xd6\x6a\x50\x18\x67\x02\x00\x00"); -func _fc ()([]byte ,error ){return _dc (_gdf ,"90pv-RKSJ-H")};func _ebaa ()([]byte ,error ){return _dc (_cgd ,"UniJIS-UTF16-H")};func _gce ()([]byte ,error ){return _dc (_dbe ,"Adobe-CNS1-5")};func _gacd ()(*asset ,error ){_dbccg ,_eaf :=_eecc ();if _eaf !=nil {return nil ,_eaf ; -};_ggbe :=bindataFileInfo {_ag :"KSC-Johab-V",_bc :716,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492521,0)};_ffcde :=&asset {_cd :_dbccg ,_dce :_ggbe };return _ffcde ,nil ;};func _afa ()(*asset ,error ){_ggd ,_gfe :=_fdd ();if _gfe !=nil {return nil ,_gfe ; -};_fce :=bindataFileInfo {_ag :"Adobe-CNS1-0",_bc :1587,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491131,0)};_dbd :=&asset {_cd :_ggd ,_dce :_fce };return _dbd ,nil ;};var _addc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9a\xcb\x8a\x66\x39\x76\x85\xe7\xf1\x14\xff\xb0\x3d\x68\xe7\xd1\x5d\x82\x20\xa1\x5d\xdd\x4d\x17\xa6\xdb\xc6\xe5\x1b\x18\x0f\x74\x4d\x12\x9c\x11\x41\x64\xd6\xa0\xde\xde\xec\xf5\x9d\x2e\xdb\x85\xa1\x06\x85\x2a\x56\x1e\x49\x5b\x5b\x6b\x5f\xf5\x7f\xf8\xee\xfb\xdf\x7f\xff\xf2\xf9\xdb\xe3\xc3\x3f\xbe\xbf\xce\x1f\xf6\xb7\xc7\xf9\xfc\xb2\xde\xf7\xd7\xd7\x1f\xdf\xe7\x7e\x8c\xfd\xe9\xf3\xcb\xd3\x93\xf3\x8f\xf5\x79\x7e\xfb\xeb\x9f\x1a\xe6\x97\xfe\xf6\xf4\x64\xf3\x7f\xf8\xe9\xeb\xb7\xfd\xe5\xfb\x97\xf3\xfa\x08\x7c\xb7\x7e\x7c\xbb\xbf\x7d\x3c\x3e\xfc\xd3\xfe\xf4\xf9\xeb\xb7\xf7\x9f\x1e\xbf\xf9\xdd\x7a\x1d\xfb\x6f\x1e\x6b\x1f\xc3\xff\xe1\x7d\xed\xf7\xcf\x2f\x9f\x1e\xbf\xf9\xee\x2f\x3f\xb8\x9f\xe1\x1f\x7e\x7c\x7b\xfb\xaf\xfd\x65\xbf\x7c\x7b\x38\x61\xfb\x65\x69\x7c\xfa\xf0\xdd\x9f\xfb\xdb\x5f\xfa\x97\xfd\xf8\xf0\xa7\xbf\xff\x34\xe7\xd7\xdf\xfe\x5d\xfa\xed\x9f\xf4\x6f\xfa\xa7\x7f\xdd\xef\x5f\x3f\xbf\xbe\x3c\xdc\xdf\x5e\x57\xfe\x1f\xf8\x9f\x7f\x7a\xdb\xf7\x52\x4f\x1f\xfe\xfd\x5f\xbe\xff\xfd\xe3\x3f\xdc\xc3\x5d\x0f\x9f\x42\x6b\xff\x79\xe3\xff\xf6\xe7\xd7\xb5\x1f\x17\x7f\x79\x84\x9f\xaf\x6b\x7f\x7d\xeb\x73\xbf\xf7\x97\x4f\xfb\xe9\xf1\x78\xbe\xae\x8f\x8f\xc7\xe3\xb9\x5e\x1f\xed\xaf\xfa\xbb\x78\x7d\x7c\x3c\xff\xf1\x0f\x7f\xfc\xc3\x47\x93\xf2\x17\xdf\x3f\x39\x96\x79\x79\xfd\xb6\xf6\x01\xd3\x0a\xcf\xee\x7c\x7c\x38\x9b\xf1\xbf\xff\xe9\xc9\x5d\xd7\xbd\xef\xe7\x75\x7f\xed\xed\xeb\xb2\xed\xeb\xe7\xda\xb5\x5b\xed\xfa\xbb\xb8\x7c\x19\xd6\x9d\xb0\x9d\x0c\xf3\x3e\x3c\x3d\xd7\x11\x85\x8d\xe8\x85\x35\x2f\x2c\x81\xf1\x5d\x8b\xc2\x0a\x58\x01\x4b\xc2\x1a\x58\x03\xcb\xc2\x06\xd8\x00\x2b\xc2\x96\xb0\x74\x81\x55\xc3\x52\x04\x8b\x86\x85\x4b\xfb\xa6\x0a\x56\xc1\x24\x5f\xea\x60\x1d\xcc\x64\xd9\x9c\x6d\x47\x9b\x1b\x9d\xce\xb1\x63\x16\x96\x3b\x98\xed\xb1\xf3\x14\x56\x92\xb0\x6c\x32\xef\x52\xc0\x96\xb0\x02\xb6\xc1\xf6\xc7\x87\xaf\xcd\x10\x34\xb5\x3b\x33\xab\x17\xc6\xcc\x59\xc1\xec\x64\x7b\x4a\xba\xbd\x25\x89\xf7\xa6\xf9\xbd\x91\x64\x6f\x61\x51\x92\x1c\x24\x3e\x60\xc9\xe6\x1e\x4e\x71\x74\xda\xe8\x8b\xed\x71\x38\xed\x49\x7c\x27\xed\x9d\xcc\x77\x39\x1b\x86\xa6\x4e\x96\xa6\x8e\x6e\x37\x86\xcb\x64\x3e\xc8\x7c\xa6\x64\x09\x41\xdf\xcd\x0c\xc6\xdc\x5c\x85\x31\x77\x35\x30\xcd\x5d\xba\xb5\x73\x86\x30\x9d\xed\x9c\x05\xa6\x3d\xa2\xbf\x9e\x9e\xdb\x25\x99\xdb\x95\x06\x98\x37\xcc\x84\x7d\x6e\x57\xe6\xbb\xa4\xef\x0a\xdf\x15\xed\x11\x73\x11\xd6\xc1\x74\x43\x57\x02\x1b\x60\xcc\x2d\xc2\x74\x8e\x76\xa1\xfb\x58\x9d\xb0\x22\x6c\x14\xb0\x6c\xd8\x68\xc2\x90\x2f\x19\x5b\x9a\x43\x3e\x97\xa5\x83\x54\x84\x99\xe2\x6c\xd0\x8d\x67\x77\x09\x3b\xc2\xca\x8d\x55\xc3\xd8\x57\x83\x8b\x39\x68\x6e\x0f\xc2\xd8\x23\x87\xf8\xf4\xdc\x3c\x7b\x78\x64\x2e\xde\x64\xf1\xcc\xf5\x1d\xcc\x38\xd4\x7c\xd7\x1e\x7e\x5c\xc6\x2a\x3b\x85\x1f\x7c\x65\x83\xaf\x5a\x6b\x78\x10\x6f\x48\x10\xa2\x1d\x3d\x8c\xaa\x3a\x95\x17\xa3\x9a\x3f\x92\xac\x26\x61\x87\xef\x90\xac\x1a\xb7\x5b\x40\xb2\x90\xa5\xa5\x2a\x6d\x86\x2c\x2d\x05\xa4\x6d\x4e\x18\xd2\x86\xae\xdb\x69\xa1\x09\xd3\x4d\x84\xa9\x3d\x9a\xb1\xb6\x85\xa9\x3d\x02\xb2\xb4\x62\x67\x08\xc8\x12\xb6\xdd\x62\xba\x2e\xed\xbb\xa7\x30\xc9\x92\x2e\x69\x38\x22\x4b\x94\x0f\x49\x97\x6f\xc2\x74\x8b\xb1\xf0\x5d\xb0\xb9\x11\x59\xe2\x3d\xb7\xd9\x1e\x89\xb9\x29\x4e\xc3\x5c\x4d\xc2\xc4\xb2\x94\x9a\x30\xf3\x21\x2d\x25\xc9\x9c\x58\xcf\x6b\xdf\xc4\x7a\x69\x6a\x5f\x1f\xed\x76\xd2\xd4\xbe\x89\x3d\xd0\x73\x66\x8f\xcc\xdc\x20\x1d\x64\xe6\xe6\x15\x0c\x8b\x66\x69\x2d\xaf\x24\x8c\xb9\x51\xba\x2f\xcc\x2d\xcc\x8d\xe6\x0b\x5b\x61\x6e\xe1\xbb\x94\x4c\xbe\xca\x77\xb5\x98\xfe\x52\x4e\xb6\x5e\x95\xff\x61\x70\xa9\x48\x7f\x15\xcb\xd0\x60\x98\xc9\x5c\x61\x9e\x06\xc3\x8a\xb0\x03\x76\xc0\xb4\xc7\xd0\x7d\x68\x30\xac\x09\x6b\x60\xd2\x55\x91\x5e\xea\x58\x60\x1b\xcc\xf4\x5c\xa7\xd8\xa7\xc1\xb0\x20\x2c\x82\x45\xb0\x28\x8c\x3d\x26\x32\x3b\xc9\xbc\x91\x6f\x23\x9f\x78\x55\x37\x67\xdb\xf7\x77\x92\x6f\xb3\xaf\x0d\x86\x49\xbe\x83\x5e\x6c\x70\xa9\xc8\xb3\xd4\x83\x2c\x07\x59\xbc\xe4\x3b\x13\x6c\x82\x99\xfe\x5a\xd4\xbe\x1a\x0c\x0b\xc2\x12\x58\x02\x8b\xc2\x0e\x18\xba\xf2\x26\x73\xcb\xd2\xb3\x06\xc3\xb2\xb0\x0d\x86\x5e\xbc\x9d\xa3\x15\xd6\x2b\xf7\x7a\x55\x58\x05\xab\x60\x76\x8e\xd6\x25\xb3\x06\x97\x4a\xb8\x84\xb1\x5e\x67\xbd\x60\xe7\x68\xdc\x51\xbb\xef\x28\xe8\x1c\x03\x59\x06\xb2\x84\xa0\x9c\xe0\xaf\xb1\xfc\xff\x0b\xef\xad\x6d\xb6\xdb\xf7\x76\x3a\xe6\xd1\x75\x69\x30\xcc\x8e\xd9\xa3\x96\xd6\x60\x58\x16\x36\xc1\x50\x65\xb0\x63\xf6\x24\x9a\x74\x4c\xaa\x04\x3b\x66\xcf\xa2\xb1\x06\xc3\x9a\xb0\x0a\xc6\xd1\xa3\x1d\xb3\x17\x5d\x83\x06\xc3\x9c\xb0\x0d\xc6\xd1\xa3\x1d\xb3\xe3\xe0\x34\x18\x16\x84\x15\x30\x68\x12\xa3\x30\x64\xb9\x29\x1b\x75\x8e\x31\xc0\x06\x98\xce\x81\x29\xf7\x9b\x8a\x51\xe7\x58\xa2\x93\x06\xc3\x74\x8e\xc5\xbe\xeb\xde\x57\xe7\x58\xec\xb1\x58\x4f\x81\xaa\xa3\xd3\x7e\xeb\x54\xe6\xdd\x77\x04\x43\xa7\x49\xf2\x6d\x74\xb0\xd1\x41\x92\x7c\x50\xb6\xdf\x94\x4d\x92\xef\x64\x30\xae\x5a\x41\xae\x1f\xce\x71\xee\x7d\x4d\xbe\xa1\x74\x85\xc1\xb0\x26\xac\x83\x71\x6f\x96\xb2\xb5\xc1\xbd\x8d\xfb\xde\xb2\xe9\x99\xd4\x89\xc1\x30\x2f\xac\x82\x21\x5f\x0e\xc2\x58\x2f\xdd\xeb\x45\x61\xac\x97\xee\xf5\x92\xb0\x0d\x86\xa9\x64\x3b\xc7\x20\x80\x8f\xfb\x7e\xb3\x64\x2e\xc8\x7c\x9b\x40\xd1\xbe\x04\xf0\x51\x58\xaf\x68\x3d\x78\x30\x6e\x1e\x28\x0c\x0d\xdc\xa3\x06\xc3\xb4\x1e\x2e\x6e\x74\xce\x51\xa4\x03\x02\xfd\xe8\xc8\xac\xb0\x39\x3a\x32\x77\xf6\x50\x38\x18\xb8\xc2\x71\xbb\x42\x25\x04\x03\xae\x8d\x9b\x43\x55\xfb\x0e\x64\xb9\xdd\x9e\x5c\xf5\x98\x9c\x6d\xa2\xfb\xa6\xb9\x13\x5d\x4d\xed\x4b\xd8\x1d\x93\x7d\xe7\x04\x93\xfe\xe0\xda\x58\x0e\x4c\xeb\x2d\xce\x41\xd8\xa8\x72\xd5\x83\xb0\xa1\xc1\x30\x9d\x77\x71\x47\xeb\xde\x43\xe7\x5d\x0b\x4c\xee\xb1\x3a\xe9\x74\x21\xb3\x0d\xc5\x55\xa6\x72\xdc\x75\xf8\x4c\xe2\x6d\x54\xba\x11\x45\x9e\x7a\xe0\x95\x07\x5e\xb9\xca\x53\x0f\xbc\xf2\xc0\x2b\x57\xa7\xe3\xee\x06\xc6\xd1\xe4\xbd\xc7\x66\xdb\xcd\x1e\xf2\xc0\x83\x2c\x43\x83\x61\xda\x17\x8a\x0f\x28\x5e\xe5\x6d\xc7\xe1\x68\xa7\x81\x69\x5f\x68\x3f\xf0\xde\x55\x9e\x75\x12\x11\xa7\xaa\x8d\x54\xe5\x45\x67\x8c\x60\xac\x27\xef\x38\x63\x05\xab\x60\x49\x58\x07\x43\x7d\x72\x6b\x53\x95\x45\x9b\x09\xf9\xe4\xd6\x66\x4a\x60\xa8\x5e\xee\x65\xa6\x02\x36\xc0\xb4\x5e\xba\xe7\xa2\x7a\xb9\x83\x99\x91\x2f\x5f\x60\x4e\x98\x07\x43\x66\x45\xf1\x99\x91\x39\x23\xb3\xdc\xc6\xc4\x4d\x4e\xdc\x64\x95\x3b\x98\x44\x9c\x49\xc4\xa9\x72\x07\x33\x0f\x30\x93\x25\x44\x45\xc9\x99\x91\x25\xdf\xb2\x80\xe9\xce\x67\xb9\xf7\x95\xae\x88\x4c\x93\xec\xa1\xca\xcc\x67\x69\x60\xe8\x5e\xe6\x3b\x31\xcb\x89\x59\x56\xe5\xdf\x13\xb3\x9c\x98\x65\xcd\x5a\x0f\xb3\x9c\x44\xb0\x5a\xa4\x83\xce\x1e\x1d\xfd\xc9\xcc\x67\xe7\x6c\x9d\x3d\x94\x57\x4f\x32\x46\x0d\x86\x49\xa7\x9d\x73\x10\xfd\x6a\x91\x2c\x64\xbd\x93\x48\x57\x65\xfa\x73\xc8\xb4\x26\x99\x47\x15\xc7\x27\x59\xc6\x9c\xe8\x40\xa6\x3a\x27\x3a\xc0\xb4\x9a\xcc\x72\x62\x46\x13\x33\x6a\x32\xad\xb9\x58\x4f\x95\x6d\x6a\xca\x6e\x26\xbc\x9f\x5b\x32\x37\x0f\x86\xcc\xf0\xbe\x89\xbb\x13\xde\xcf\x73\x7f\x27\x99\x0f\xe7\x38\x92\xa5\x29\x34\x2e\x5c\xf6\x82\xa7\x64\xcd\x4b\x15\x70\x5b\x70\xb2\x29\x34\x2e\x5c\xf6\x8a\xcc\x55\x18\x5c\x64\x23\x8b\x6c\xa4\xc5\xf8\xeb\xd1\x7e\x25\xa9\x4d\x83\x4d\x49\xc2\x12\x18\xc7\x54\x44\x5c\x50\x5b\x43\xcb\x99\xcf\x3a\xd0\x2d\x95\xdd\xfe\x82\xc5\x0b\x16\x93\xdf\x2f\x58\xac\xc1\x30\x9d\x08\x36\x2d\xd8\xd4\x64\x15\x0b\xe6\x2c\x98\xd3\x64\x15\x0b\x96\xac\x5e\xc1\x74\xca\xce\xbe\x38\xef\x26\x0b\x58\x38\xef\xd5\xef\xb9\x92\x65\xc8\xca\x34\xb8\xd4\x14\xe8\x16\x75\x8f\x06\xc3\xb4\xc7\x60\x8f\xc1\x71\x15\xe8\x16\xc9\xc3\x22\x79\x68\xb2\x80\x05\x9b\xd6\x40\xe3\x0a\x74\x6b\xa0\xf1\x79\xef\x21\x59\xa8\x67\x16\xb9\x6d\x53\x50\x5b\x24\x14\x6b\x72\x0e\x59\xc0\x22\x18\x2c\x82\x41\x93\x05\xac\x29\x46\x2c\x1c\x7f\x93\x05\x2c\x1c\xff\xc2\xc9\x37\x31\x7b\x2d\xe6\x12\xec\x9b\x02\xd8\x82\x4d\x4b\xb5\x41\xbe\xe4\x95\xe9\x61\xb4\xad\xfb\xc8\x97\x3c\xf0\xe6\x3e\x76\x4e\xc2\xa4\xd3\x8d\x57\xd1\x60\x58\x14\xd6\xc1\x3a\x98\xd6\x2b\xa2\x8b\x06\xc3\xb2\xb0\x00\x16\xc0\xb4\x07\xf5\xc7\x2e\xf7\x7a\x55\x18\xeb\x15\xd6\xd3\x7d\xec\x32\xc1\x26\x98\x13\xb6\xc1\x38\x87\xee\x83\x4e\x49\xdb\x9d\x73\xe8\x3e\x76\xe7\x1c\x3d\x83\x49\xbe\xde\xc0\xee\x3d\xb4\x2f\xdc\xd8\xe6\x34\x5c\xbe\xa4\xfb\x4d\x60\xdf\x83\x73\x48\xf7\x7b\xb0\x9e\x0d\x86\x69\x3d\x72\xea\x2d\x1e\xe4\x4b\x9e\x66\x93\x44\x6a\x30\x4c\x7b\xc0\x0d\x0d\x86\x35\x61\xec\x21\x6e\xe4\xab\x6a\x5f\xea\x9e\x3d\xd1\x7d\xd5\xbe\x70\x43\x4d\x1e\xc3\xa4\x7b\x92\x82\x3d\x91\x59\x9e\x6b\x93\x14\xec\x85\xcc\x4d\xeb\xc1\x0d\x0d\x86\x69\xbd\x85\xcc\x0b\x99\x9b\x74\x05\x5f\xf6\xb9\xe7\xea\x6c\x44\xdd\x7d\x24\x8b\x53\xcd\xb4\x0f\x67\x3b\x92\xc5\xa9\x16\xda\xd4\x47\x74\x95\xb2\x93\x37\xa3\xab\xd4\x8e\x22\x6c\x76\x8a\xba\x87\x08\x7b\xd4\xbb\xcb\x4e\x75\xca\xc1\x73\x9d\xc8\x7a\x81\xb9\xe2\xe9\xc9\xf7\x77\xa6\xd3\x43\xff\xe0\x58\x30\x72\xd9\xe9\x7e\x0f\x5c\xa3\xfb\x94\x9d\xee\x8d\xee\x53\x3b\xdc\x91\x93\xae\x0e\x77\x74\xe4\xf9\xb3\xbf\xc0\x26\xd8\x06\xb3\xb3\x1d\x12\xb2\xc3\x7d\x78\x25\x41\x87\xda\xf4\x28\x93\xc9\x5e\x19\xcf\xd9\xf2\x07\xe7\x88\xbb\x5e\x7e\xed\x9c\x0e\xc6\x7a\x16\xe9\xfa\xa5\x9e\x66\xbf\xe4\xa9\xb3\x3a\x6b\xfd\x52\x46\xd1\x2f\x25\xcd\xd9\x1b\x37\xfa\x95\xb2\xb0\x2c\x6e\xf8\xe6\x0c\x53\x3d\xd8\xe9\x52\xe5\x60\x59\x55\xbf\x64\x0b\x9d\x2e\x55\x0e\x5e\x7b\x74\xf6\x50\x42\x9b\x83\xe9\xb4\x5f\x4a\x68\xfb\x05\xef\x43\xd0\x7a\x9d\x7d\xe5\x73\x72\xb0\x4c\xa6\x5f\x93\x7d\xa7\x74\x1a\xb2\xf6\x58\xac\xa7\x42\x24\x87\x22\x4c\x85\x48\xbf\x36\xeb\x19\x87\x3a\x1d\xae\xee\x2c\xd1\x6f\xcd\x00\x55\x71\xdd\x29\xa3\x0f\xaa\xb0\xba\x53\x6a\xd3\x9d\x04\xb6\xf2\xb5\xd3\xdc\xea\x0e\x4a\x69\x21\xa5\x71\x0c\x6a\x52\x76\x77\x0a\x48\x31\xa4\x08\xa9\x20\xdb\x10\xdb\x8d\xe6\x57\x57\xf3\xcb\x9b\x93\xe9\xb4\xbe\xba\x1a\x51\xc1\xa8\xda\x69\x43\x75\xb5\x9c\xa2\x5d\x5c\xa7\xe1\xd4\x83\x55\x72\xd1\x4c\xb5\x07\xb5\x23\x7a\x30\x4b\x54\xeb\xae\xd3\x30\xea\x6a\x0e\x25\x33\x83\x4e\x6b\xa8\xab\x35\x94\xcd\x51\x75\x1a\x43\x5d\x0d\x9f\x62\xee\xb1\xd3\xee\xe9\x6a\xed\x28\xdd\xed\x34\x76\xba\x1a\x3b\xcd\xe8\xd5\x69\xeb\x74\xb5\x70\xe4\xcc\x3b\x0d\x9c\x4e\x03\xe7\xb2\xd8\xd0\xe9\xdf\x74\xfa\x37\xce\x12\xd3\x4e\xfb\xa6\x57\xb4\x68\xb9\x6f\xaf\x7c\x55\x0f\x8a\xcd\xbf\x1a\xc6\x7b\x63\x91\xa6\x45\x82\xb9\x9a\xde\x58\xa4\xdd\x8d\x55\x5b\x97\x6e\x7d\xbf\x4b\x67\x4b\x63\x3b\xcd\xfa\xde\xef\xa0\x61\x13\x07\x5f\x51\x58\xe5\x66\x14\xa1\xae\xea\x43\x5f\xa9\xdc\xec\xe4\xd8\x9d\x3c\x4f\x29\x6c\x27\xcd\xeb\xa4\x33\x4d\x9c\x9e\x67\x03\xe9\x6a\x45\xd5\xc5\x44\x85\x79\x7f\x59\x19\xd3\x17\x13\x15\xb9\xbc\x1c\x74\x27\x70\x75\x9a\xe5\x4e\xdc\x25\x06\x74\xf9\x21\xef\x65\x1e\xb8\xa1\x2e\x17\xe1\x83\xe5\x5e\x1d\x0f\xd1\x8f\xb1\xde\x07\x73\x10\xfd\x2c\xbe\xba\x85\xf0\x4f\xcf\x83\x0e\xf3\x90\xad\xf9\x68\xee\x7a\x60\x6a\x43\x8d\x5e\x9f\x2c\x9f\x1a\x58\xc1\x10\xc1\x7d\x36\x47\x35\x60\xf8\x80\xab\xd9\x4c\x63\x40\xd6\x01\x59\x8b\xb9\xdb\x01\x5b\x87\xd8\xea\x95\xa3\x0f\xe8\x3a\x44\x57\xaf\x84\x67\xc0\xd7\xa1\x86\x66\xb8\x8c\xc2\x03\x7a\x0e\xd1\x33\x38\x53\xce\x80\x9f\x23\xc2\x7c\x53\xce\x80\xa0\x43\x04\x0d\xde\x94\x33\x60\xe8\x10\x43\x83\x7c\xc7\x80\xa2\x43\x14\x0d\xd1\x94\x33\xe0\xe8\x10\x47\x43\x34\xe5\x0c\x48\x3a\x44\xd2\x90\xcc\x61\x0d\x48\x3a\x44\xd2\x90\xa3\x4d\x84\xa4\x43\x24\x0d\xea\xff\x0c\x48\x3a\x44\xd2\x50\x9a\x4d\x84\x85\x43\x2c\x0c\xd5\x1c\xc9\x80\x85\x43\x2c\x0c\xcd\x72\x88\x01\x0b\x87\x58\x18\x2f\xb3\xf7\x01\x0b\x87\x58\x18\x9d\x79\xe6\x01\x0b\x87\x58\x18\xfd\x65\x2a\x84\x85\x63\x58\xbc\x8c\xde\x2a\x8b\x31\xf4\xca\x30\x44\x4c\x1e\x28\x06\xc4\x1c\x22\x66\x94\xd7\x1b\x10\x73\x88\x85\x31\x4a\x39\xb0\x70\x88\x85\x31\x49\x39\xb0\x70\x88\x85\x31\x49\x39\xb0\x70\x6c\xcb\x8e\x63\x96\x72\x76\xf2\x40\x5e\x3b\x02\x05\x41\x5a\x2b\x5b\xa1\x3f\xe0\xea\x10\x57\xa3\x7a\x59\x03\xae\x0e\x71\x35\x56\x8b\x84\x03\xae\x0e\x11\x33\xd6\x56\x9e\x9e\x27\xc4\x9c\x22\x66\x6c\x16\x2b\x26\xc4\x9c\x22\x66\x52\x6a\x36\x21\xe6\x14\x31\x93\x33\xb7\x3a\x21\xe6\x74\x96\xf9\x24\x6f\xa5\xc9\x74\x2a\x9d\xa6\xb8\x9a\xbc\xc5\xf2\x09\x57\xa7\xb8\x9a\x82\x69\x75\xc2\xd5\xe9\x2d\xfd\x48\x7a\xa7\x99\x7e\x0e\xa0\xa1\x89\x4e\xd0\x14\xa4\xb5\xa2\x96\x87\xd1\x33\x58\x15\x9b\xa2\x79\xfb\x19\xd4\xd7\x9b\x22\x79\x8a\xa6\x89\x09\xc9\x67\x18\xf5\xe3\x23\x25\x2f\x48\x09\x14\x43\x4a\x49\x6b\xa9\x4f\xc9\x90\x92\x59\xc7\x94\x1b\x7f\x9e\xb2\x8e\x94\xcc\x0d\x4f\xac\x63\x46\x2b\x4c\x52\xf6\xf6\x55\x54\x70\x65\xa0\x47\x3e\xa3\x4a\x95\x89\x8b\xcf\x51\x13\x11\x42\x36\x94\xb2\x65\x5d\x13\x1b\x9a\xb2\xa1\x54\x2c\x5a\x4c\x6c\x68\xca\x86\x52\xb5\xca\x6b\x62\x43\x33\x13\x2e\x42\x78\x7a\x9e\x90\x7c\x36\xcb\x6c\x52\xd3\x19\x9b\x7a\x06\x0c\xd9\x02\xe1\x6c\x7a\x9f\x9c\xcd\xaa\xef\x7c\x49\xcf\x4d\xcf\x84\x53\xc6\x91\x2f\xa3\xc4\xc4\x38\x66\xb3\x28\x95\x2f\x2b\xbd\x67\x53\x27\x89\x21\x5f\x01\xe8\x08\xb2\x6a\x92\x54\x70\x36\xb5\xbb\xa7\xac\x2a\x3b\x33\xc7\x89\x55\x4d\x59\x55\x76\xc9\x24\xc5\xaa\xa6\xba\x84\xd9\x3b\x13\xa2\x2b\xf8\x32\x90\x8e\xcd\xae\xe8\x3b\x65\x7b\x59\xef\x7e\x13\xdb\x9b\xb2\xbd\x2c\xab\x9a\xd8\xde\x1c\x7c\x65\xe1\x6d\x62\x68\x53\x86\x96\xa3\x85\xb7\x89\xa1\xcd\x49\x2c\xb5\xf0\x36\x31\xb4\x29\x43\xcb\xd9\xc2\xdb\xc4\xd0\xa6\x0c\x2d\xe7\x6a\x13\x31\xb4\x29\x13\xca\xc5\xe2\xd7\xc4\x84\xa6\x4c\x28\x57\x8b\x5f\x13\x13\x9a\x32\xa1\xdc\x2c\x7e\x4d\x4c\x68\xca\x84\xca\x65\xf1\x6b\x61\x42\x4b\x26\x54\x2e\x8b\x5f\x0b\x13\x5a\x32\xa1\xe2\x2c\x7e\x2d\x4c\x68\xc9\x84\x8a\x37\x12\x2e\x4c\x68\xc9\x5e\x8a\x72\xb2\x85\xbd\x2c\xd9\x4b\x89\x57\xfd\xd5\x48\xbc\x30\xa7\x25\x43\x29\xb1\xd8\xba\x18\xca\x0a\xe4\x13\x56\xa7\x2c\xac\x62\x89\xdc\x45\x94\x59\x90\x7b\x89\xb6\x45\xaf\x10\x0b\xda\x2e\xd1\xb6\xa8\x23\xb9\xa0\xed\x22\x37\xa9\x16\xb8\x16\xb4\x5d\xa2\x6d\x51\x23\x60\x41\xdb\x25\xda\xd6\xcb\x02\xd7\xc2\xf5\xaf\x6c\x36\x5d\x2f\x0b\x5c\x2b\xcb\xa6\x19\x6a\x31\x62\xad\xac\xfa\x73\x65\x12\x1d\x53\xfa\x22\x40\xac\x62\xa5\x7a\x75\x4d\x90\x2a\x39\x86\x5a\x6b\x13\x34\x80\x6c\x22\xea\x24\x8c\x2c\x85\x91\xea\xcd\xf5\x2f\xc2\xc8\x52\x18\xa9\xc1\x5c\xff\x22\x8c\x2c\x85\x91\x1a\xcd\xf5\x2f\x2c\x6c\xc9\x52\x6a\x32\xe3\x59\x58\xca\x12\xe1\x6b\x32\x27\xb5\x20\xfc\x12\xe1\x6b\xb6\x8a\x61\x41\xf8\xd5\x97\x41\x7a\x78\x59\x5d\x2d\x4d\x86\xea\xa4\x9c\xbe\x99\xa8\xb5\xf4\x88\xba\x20\xfc\x12\xe1\x6b\x35\xc7\xb2\x20\xfc\x1a\x96\x65\xd7\x5a\x83\xa0\x22\x48\x13\xab\xd5\x5f\x0b\x1b\x58\xb2\x81\xaa\xd2\x7c\x61\x03\x4b\x36\xd0\x2e\x8b\x9e\x0b\x1b\x58\xb2\x81\x26\x73\x5d\xd8\xc0\x52\x01\xdf\xf4\xce\xb8\x96\xea\x2c\x86\x76\x49\x2e\x4a\xfa\x25\x4b\x69\xfa\xcd\xc0\xc2\x52\x96\x2c\xa5\xa9\x98\x58\x58\xca\x92\xa5\xb4\x60\x01\x62\x61\x29\x4b\x96\xd2\xa2\x05\x88\x85\xa5\x2c\x59\x4a\x4b\xe6\xc1\x37\x96\xb2\x65\x29\x2d\x5f\xc9\x20\x7d\xb5\x65\x29\x2d\x5b\xfd\xbc\xb1\x94\x2d\x4b\x69\x7a\x07\xd8\x58\xca\x96\xa5\x34\xf5\x61\x37\x96\xb2\x65\x29\xad\x59\x86\xbe\x31\x85\x2d\x53\x68\xcd\xbc\xee\xc6\x14\x36\xef\xc4\x97\xea\xe9\x8d\x2d\x6c\xde\x75\x2f\x67\x3e\x6f\x63\x0c\x9b\x37\xdc\xcb\x9b\xe3\xdd\x58\xc3\xe6\x0d\xf7\xd2\xef\x40\x36\xe6\xb0\x79\x9b\xbd\x82\xdd\xc9\xc6\x1e\x36\xef\xb0\x97\xde\x52\x37\x06\xb1\x79\x87\xbd\x92\x95\x1d\x1b\x8b\xd8\xbc\xb9\x5e\x7a\xb1\xdf\x90\x7d\xdf\x29\x7b\xb1\x5a\x72\xc3\xe3\x4d\xce\x7e\x15\xab\xfd\x36\x44\xde\x24\xed\x57\xcd\xa6\x4d\x98\xbc\xab\x7a\x14\x97\xba\x7e\x9b\xf7\xd5\x4d\x26\x7f\x35\x4b\x3d\x36\xf4\xde\xbc\xfb\xb9\x4b\xaa\x6a\x7a\xf4\xd8\xe4\xef\xee\xb2\xba\x6c\xc3\xf9\x4d\x02\xef\x2e\xa3\xe0\x86\xf4\x9b\x0c\xde\xb9\x62\xeb\xc1\xfa\xdd\xef\x9a\xc2\x22\xcb\x86\xd0\x9b\x47\x19\x17\xcc\xd1\xef\xa1\x77\xec\x4d\x5e\xef\x82\x2e\x12\x96\xef\xa1\x37\x52\x17\x8c\x87\x7b\x9c\x1b\x73\xc8\x9c\x85\x79\x30\xcd\x8d\x46\xf4\x0d\xf7\x37\x15\x80\x8b\x46\xc5\x0d\xf9\xf7\xd4\x43\x83\x4b\xc6\xc5\x3d\xf5\xd0\xc0\x60\x67\x0b\xc2\x8e\x30\xd6\xcb\x56\x52\x6d\xac\x64\xd3\xff\x73\x59\x77\x84\x99\xec\xa5\x8e\xb0\xd3\x1b\xf3\xa6\xff\xb7\xe9\x73\x39\xbd\xeb\x6e\xac\x62\xd3\x33\x72\x7a\x30\xd9\x98\xc5\xde\xfa\x0d\x81\xab\xe2\xf2\x56\x67\x96\xc1\x79\xa5\x6f\x7b\xeb\x77\x05\x9b\xfe\x86\x93\x03\xdd\xd8\xcf\xa6\xf7\xe0\xd4\x27\xdc\x18\xd0\xa6\x07\xe0\x2f\xbb\xdf\x83\x05\x9d\x4b\xad\x52\xef\x5c\x35\x4c\x29\x09\x83\xc9\xdc\x84\x15\x61\x14\x79\xce\xee\xe8\x60\x6a\xe7\x52\xdf\xc7\xbb\x2a\x4c\x99\x17\x83\xdd\x91\x13\x36\x85\xb1\xaf\xf2\xb8\x83\x4d\x1e\xa7\xbe\x9e\xf7\xa6\xd3\xe3\x72\x00\xeb\x9c\xad\x09\x1b\x60\x3a\x6f\xd6\xbe\x4e\x89\xc8\xb9\xcb\xf6\xe0\x8a\x61\xc8\xc2\x2f\x50\x7c\xb0\x88\x71\xb0\xe8\xe3\xd5\xa7\xf1\x31\xd8\x5c\xaf\x3e\x21\x83\xf3\xc5\x38\x79\xbc\x7a\x37\x87\x5f\xaa\xf8\x58\xf4\x1d\xeb\x79\x75\xde\x7d\xb4\x52\xe0\x78\xf5\x45\x0f\xbf\x25\xf1\xc9\x6c\xe1\xe0\x0f\x4e\xd0\x6f\x17\x7c\xaa\xc2\xf4\xfa\x70\xf0\x11\x5e\xf5\xc7\xc1\x47\x1c\x7c\x84\xcf\x16\x5f\x0e\x3e\xe2\x44\xf5\x31\xbd\x1e\x73\x4f\xd4\xaf\x70\x0e\x7e\xc3\x17\x4b\xe2\x0f\x7e\xe3\x44\xf5\x8c\x7c\xbd\xda\xff\x0d\xe2\xc9\xff\x32\x86\x9f\xa8\x8e\x30\x83\x49\x9a\x85\xb1\xb2\xde\x99\xbc\xde\x94\x4e\x94\x7b\x3e\x78\x24\xdf\x2e\x93\x0a\x8f\x74\xf0\x48\x5e\x6f\x09\x07\x8f\x74\xd2\xfd\x9d\xa5\x4a\x07\x8f\x74\xb2\x6e\x30\xa8\x1b\x7a\x32\x37\xa8\xc1\xe6\x82\x45\x61\x54\xf6\xea\xdc\x1d\x3c\xd7\xc1\x73\x05\x75\xe9\x0e\x9e\xeb\xe0\xb9\x82\xb2\xbd\x83\xe7\x3a\x78\xae\xe0\x2d\x5b\x38\x78\xae\x83\xe7\x0a\x41\xcc\xc1\x73\x1d\xbc\x54\x88\xba\x7d\xbc\xd4\x91\x63\x72\x21\xe9\xf6\x9b\xba\xba\xe7\xee\x32\xa4\xaa\xef\x98\xdb\xec\x72\x5d\x48\x96\x6e\x9d\xa6\x2e\x27\x83\x7d\x97\x84\x25\x30\xd3\x69\xc8\xd2\x5f\x53\x87\x8a\xc1\x51\x69\x9e\x36\xd9\x43\x5d\xce\x90\xd9\x57\xcf\xec\xa7\x2d\xe6\x9a\x85\x1e\x3c\xe1\xe9\x77\xb7\x4c\x7a\xc1\x13\x9e\xbb\x99\x11\x93\x59\x23\x9e\xf0\xdc\xdd\x0c\xd5\x11\x07\xaf\x77\x78\xae\xcd\xf2\x3e\x87\xe7\xda\xc3\x33\x6c\xce\x11\x6c\x0b\x63\x3d\x35\x87\x0e\x5e\xef\x4c\xfd\x1a\x31\xeb\x17\x33\x67\x2a\xdb\x3f\x33\xea\x3b\xfd\x4a\xe5\x4c\xbd\xc5\x30\x54\x15\x26\x67\x26\xa6\xea\xad\x25\xeb\xc7\x27\x47\x6f\x8a\xcf\x87\x67\xbf\xac\x1f\x9a\x1c\x9e\xfd\xce\x94\x51\x64\xfd\x3a\xe2\x4c\x05\x88\x83\xb3\xcd\xfa\x15\xc0\xc1\xd9\x9e\x39\xd4\xa8\xd4\x2b\xfb\x99\xaa\xad\x18\x62\x8c\x92\x44\xb5\xd5\x99\xfa\x81\x43\x56\xc2\x73\xa6\x1a\x63\x67\xd2\x07\x2c\x4d\xa2\x6c\xb6\xd5\x6f\x68\x32\x0c\x9f\x9b\x53\xa0\x01\xd5\x44\x07\x3f\x7d\x96\x5e\x4d\x73\xb5\xc4\xee\xe8\x69\xea\xf9\xe0\xbb\x73\xb5\xaa\xfb\xe0\xbb\xcf\xa2\xe7\xac\xdf\x84\x9d\xa5\x9e\xf3\xb9\xdf\x28\x9a\xc5\x9b\x83\xef\x3e\xfa\x19\xa5\x2b\xfa\x5d\xd7\xd9\xea\x8f\x1e\x3d\x23\xb8\xa2\xb7\x87\xb3\xf5\x66\x74\xf0\xf1\x45\xfd\xfe\x83\x8f\x3f\x6a\xfb\xbb\x72\x59\xba\x7d\xd4\xfc\xbf\x07\x5f\xb5\x83\x0a\xe1\xb3\x15\x95\x8a\x3a\xf1\x67\x6f\x76\xd5\x1b\x5d\x71\x41\x33\x39\x2d\x91\xa0\xb8\x5f\xbc\x9f\xd9\xff\x7f\xe9\x6f\x4f\x3f\xff\xe2\x77\xfe\xf8\xfe\xbe\x5f\xbe\xe9\xd7\xc5\xfa\x55\xef\x63\xed\xf3\xf9\x65\xff\xfc\x4b\xe5\xb7\xd7\x37\x9b\xa5\xff\xfe\x3b\x00\x00\xff\xff\xa0\x76\xd7\x85\xd5\x2c\x00\x00"); -var _dfb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x8b\x1b\x47\x18\x04\xe0\xfb\xfc\x8a\x39\x3a\x07\x67\xbb\xdf\xaf\xee\x86\xc1\x10\xdb\xd8\xec\xc1\x49\x88\xf3\x05\x21\x07\xad\xa6\xb5\x08\xb2\x92\xd0\x6a\x0f\xfe\xf7\xa1\xba\x24\x93\xf8\x60\x64\x95\xa5\x77\xe4\xa7\x7a\xa6\xfb\xee\xdd\xfd\xfb\xfb\xc3\xfe\x32\xdf\xfd\x7c\x3e\x6e\x3f\xf7\xcb\xbc\xdb\x1f\xd6\x73\x7f\x3e\xbe\x9c\xb7\x7d\x7e\xe8\x8f\xfb\xc3\x34\x65\x99\xd7\xfd\xf6\x72\x7b\x3b\x5e\xb6\x4f\x9b\xd3\x34\xe1\xfb\x9f\xbf\x3c\x5f\xfa\xd3\xfd\x61\x77\x9c\x95\x9f\x5b\x5f\x4e\xd7\xcf\xce\xf3\xdd\x2f\xfd\x71\xff\x7c\x39\x7f\x99\x5f\xfd\xb0\x1e\x1f\xfa\x77\xf3\xda\x77\xc8\x7f\x3a\xaf\xfd\xbc\x3f\x3c\xce\xaf\x3e\xbe\xcd\x5f\xd3\xcf\x2f\xa7\xd3\x3f\xfd\xa9\x1f\x2e\xb3\x8f\xac\x1f\xd6\xf1\x3a\xdd\xbd\xfb\xb4\x39\xfd\xb8\x79\xea\xf3\xdd\x18\xf4\xfa\xe3\xdb\xfc\x9a\x9f\x19\xff\xf4\x7b\x3f\x3f\xef\x8f\x87\x39\x7f\x9f\xd2\x7f\xe2\x5f\xbf\x9c\xfa\x9c\xaf\x23\xfe\xfc\xed\xfe\xfd\xfc\x57\x9e\x73\x9a\xc5\x23\xf9\xdf\xd7\xfc\x8f\x4f\xc7\xb5\xcf\xe9\x76\xa1\xfb\xf7\xef\x8e\x2f\x87\xcb\xac\x49\xaa\x31\xcc\xfc\x0f\x6d\x8f\x6b\x7f\x3e\x6d\xb6\xfd\xbc\x39\x3c\xf6\x69\x9e\x97\x94\x52\x7a\x33\x2f\x25\x3e\x7c\x78\x83\x1f\xfb\xcd\x27\xa6\x9c\xd2\xf5\xab\xfb\x95\xd1\xed\x2b\x29\xed\x76\x6f\xe6\x34\x2d\x29\xf3\x7d\xc6\x7b\xf1\x98\x96\x24\x4c\x04\x89\x67\x99\x96\xa4\x4c\x14\x49\x89\x3a\x2d\xc9\x98\x18\x92\x9c\xc4\xa6\x25\x39\x23\x1f\x91\x54\xcc\x0e\x46\x31\x22\x57\x0c\x2f\x8c\xca\x88\x4a\xc3\xf4\xca\xa8\x8e\x5f\x90\x0c\xe3\x1b\xa3\x36\x22\x4d\x18\xbf\x61\xb4\xb9\xfe\x4e\x8c\x7f\x60\xf4\x30\xa2\x9a\x31\x7e\xcb\x68\x8b\x48\x53\xc1\xf8\x95\xd1\x3a\x22\x15\x8c\xef\x8c\xfa\x88\xbc\x62\xfc\x8e\xd1\x6e\x44\xd5\xd2\xb4\x64\x4a\xe5\x21\x65\xa9\xc5\xb4\x64\x62\xe5\x81\x65\xea\x32\x2d\x99\x5a\x79\x68\x59\xa4\x3a\x2d\x99\x5c\x79\x70\x59\x0d\x9b\x96\x4c\xaf\x6c\x57\x53\x8c\xa7\x57\x1e\x5e\xae\x05\xe3\xe9\x95\x87\x97\x87\x62\x3c\xbd\xf2\xf0\xf2\x5a\x31\x9e\x5e\x79\x78\x45\x36\x8c\xa7\x57\x1e\x5e\x61\x09\xe3\xe9\x95\x87\x57\x04\x8a\xcd\xf4\xca\xc3\x2b\x1a\x9a\xcd\xf4\xca\xc3\xab\x64\x54\x9b\xe9\x95\x87\x57\x31\x54\x9b\xe9\x95\xfb\xb5\x7f\x8c\xa7\x57\x1e\x5e\xa5\xa1\x5a\xa1\x97\x0c\xaf\x9a\x51\xad\xd0\x4b\x86\x57\x35\x54\x2b\xf4\x92\xe1\x55\x0b\xaa\x15\x7a\xc9\xf0\xaa\x0d\xd5\x0a\xbd\x64\x78\x35\x41\xb5\x42\x2f\x19\x5e\xcd\x50\xad\xd0\x4b\x86\x57\x2b\xa8\x56\xe8\x25\xc3\xab\x35\x54\x2b\xf4\x92\x7a\x5b\xab\x98\x4f\x30\x69\xcc\x0c\xe5\x0a\xc5\x64\xc3\xac\xa0\x5d\x21\x99\x0c\x32\xb4\x8f\x4b\xd0\x4c\xb6\xcc\x04\xfd\x0a\xd1\x64\x65\xe6\x28\x58\xa8\x26\x9d\x59\x41\xc3\x42\x36\xd9\xf1\x26\x49\xa8\x58\xe9\xa6\x89\x99\xa0\x63\x25\x9c\x66\x66\x8e\x92\x95\x72\x2a\xb7\x1b\x2c\x4d\x8b\x92\x4e\x07\x5d\xd6\x84\x9a\x95\x76\xca\x7b\x53\x15\x3d\x2b\xf1\x94\x37\xa7\x3a\x8a\x56\xea\x29\xef\x4e\xad\x68\x5a\xc9\xa7\xbc\x3d\x2d\xa1\x6a\xa5\x9f\xd2\xcf\x14\x5d\x2b\xfd\x94\x7e\xe6\x28\x5b\xe9\xa7\xf4\xb3\x8a\xb6\x95\x7e\x4a\x3f\xcf\xa8\x5b\xe9\xa7\xdb\xdb\x53\x01\xd7\xa0\x9f\xd2\xcf\x03\x85\x2b\xfd\x94\x7e\x5e\xd1\xb8\xd2\x4f\xe9\x17\x19\x95\x1b\xfd\x8c\x7e\xa1\xe8\xdc\xe8\x67\xf4\x8b\x40\xe7\x46\x3f\xa3\x5f\x54\x74\x6e\xf4\x33\xfa\x95\x8c\xce\x8d\x7e\x46\xbf\x62\xe8\xdc\xe8\x67\xf4\x2b\x81\xce\x8d\x7e\x16\xb7\x47\x19\xae\x41\x3f\xa3\x5f\xcd\xe8\xdc\xe8\x67\xf4\xab\x86\xce\x8d\x7e\x46\xbf\x1a\xe8\xdc\xe8\x67\xf4\xab\x0d\x9d\x1b\xfd\x8c\x7e\x4d\xd0\xb9\xd1\xcf\xe8\xd7\x0c\x9d\x1b\xfd\x8c\x7e\xad\xa0\x73\xa3\x9f\xd1\xaf\x35\x74\x6e\xf4\xb3\x1d\x9f\xb5\x82\xce\x9d\x7e\x9e\x6e\xcf\xdf\x34\x2d\x4e\x3f\xe7\xae\x90\x0a\x3a\x77\xfa\xb9\x30\x6b\xe8\xdc\xe9\xe7\xc3\x4f\xb2\xa0\x73\xa7\x9f\x1b\x33\x47\xe7\x4e\x3f\x77\x66\x05\x9d\x3b\xfd\x7c\xf8\x89\x24\x74\xee\xf4\xf3\xc2\x4c\xd0\xb9\xd3\xcf\xb9\x3f\x88\xa3\x73\xa7\x9f\x73\x83\x90\x82\xce\x9d\x7e\xbe\xb9\x6d\x1a\xb8\x06\xfd\x9c\x5b\x84\x0a\x3a\x77\xfa\xf9\x96\x99\xa3\x73\xa7\x9f\xaf\xcc\x2a\x3a\x77\xfa\xf9\xf0\x13\x4b\xe8\xdc\xe9\xe7\xf4\x33\x45\xe7\x41\xbf\xa0\x9f\x39\x3a\x0f\xfa\x05\xfd\xac\xa2\xf3\xa0\x5f\xd0\xcf\x13\x3a\x0f\xfa\x05\xfd\x5c\xcd\xc6\x36\x7e\xdb\xad\xa7\xdc\xbe\xdd\xbf\x83\xba\x61\xb7\x7d\x10\xbf\x80\xba\x41\x5d\xaf\x58\x11\x41\xdd\xa0\x6e\x64\xac\x88\xa0\x6e\x50\x37\x14\x2b\x22\xa8\x1b\xd4\x8d\xc0\x8a\x08\xea\x06\x75\xa3\x62\x45\x04\x75\x83\xba\x25\x63\x45\x04\x75\x83\xba\x45\xb1\x22\x82\xba\x41\xdd\x12\x58\x11\x41\xdd\xa0\x6e\x69\x58\x11\x41\xdd\xe8\xb7\xcd\x1b\xd7\xa0\x6e\x50\xb7\x1a\x56\x44\xb9\x1e\x71\xa8\x5b\x03\x2b\xa2\x50\xb7\x50\xb7\x36\xac\x88\x42\xdd\x42\xdd\x96\xb1\x22\x0a\x75\x0b\x75\x9b\x61\x45\x14\xfa\x15\xfa\xb5\xc0\x8a\x28\xf4\x2b\xf4\x6b\x0d\x2b\xa2\xc4\xf5\x68\x65\x0f\x38\x49\x48\xaa\xff\x6b\x06\x7f\x1f\x87\xd0\xaf\x07\xc3\xed\xcb\xf9\xdc\x0f\x97\x71\x06\x1d\x87\x3f\x9c\xdd\xf6\x87\xfe\xf5\x3c\x7b\x3a\x9e\xf0\xb5\xf1\xe7\xdf\x00\x00\x00\xff\xff\x1a\x9a\x7e\x09\xfb\x0a\x00\x00"); -func _gcaad ()([]byte ,error ){return _dc (_ebge ,"UniJISX0213-UTF32-H")};var _bcef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd3\xcf\x6e\xda\x40\x10\x06\xf0\xbb\x9f\x62\x8e\xe9\x21\x65\xff\x78\xbd\xb6\x84\x90\x1a\x90\x52\x0e\x69\xab\x52\xd2\x4a\x55\x0f\xe0\x1d\xa3\x95\xca\xda\x5a\xec\x03\x6f\x5f\xcd\x8c\xe3\xe6\x10\x7d\xe1\x67\x7f\xbb\x63\xbc\xac\xb6\xfb\xdd\x3e\xc5\x11\x56\xdf\x72\xdf\x1e\x70\x84\x2e\xa6\x90\xf1\xd6\x4f\xb9\x45\x38\xe3\x25\xa6\xa2\xd0\x06\x42\x6c\xc7\xb7\x8f\x1c\xed\xf5\x34\x14\xc5\xea\x98\xe2\xf3\xd3\xe3\x71\x7b\x30\x8f\x9f\x61\xba\xe1\xcc\xdb\xfd\xee\x70\xbf\x8d\x78\xdd\xa7\xae\x07\x2b\xf5\x30\x0d\xf3\x12\x00\xab\xef\x78\x89\xb7\x31\xdf\xe1\xe1\x53\xe8\xcf\xf8\x01\x02\x76\xe4\x5f\x73\xc0\x1c\xd3\x05\x1e\x9e\x9f\xf4\xa2\x87\x69\x18\xfe\xe2\x15\xd3\x08\x25\x1b\xa6\xc0\x59\xac\xb6\x2f\xa7\xe1\xcb\xe9\x8a\xf0\x7e\x96\x57\xbe\xc8\xd7\x5e\x31\xdf\x62\x9f\x40\x9b\x8f\x4a\xb9\xff\xfe\xe3\x3e\x20\xe8\x79\x91\x5f\xc7\xfd\x0e\x7e\x6b\xd0\x0a\x8c\xb3\x95\xff\x33\xfb\xcf\x97\x3e\x2c\x77\x99\x52\xc6\x6f\x63\xc8\xa7\x74\xc1\x62\x6d\x94\x2e\x37\x30\x87\x6b\x6a\x12\x53\xb1\x50\xb8\xa6\x29\xd6\xc6\x18\x47\xc2\xe1\xbd\xaa\x8b\xb5\x55\x4a\x6f\x60\x0e\xe7\x1d\x8b\x11\x31\x24\x25\x4b\x2d\xd2\x6d\xc0\xd5\x2c\x5a\xb1\x68\x6a\x35\x22\x56\xc4\xf2\xd2\x15\x53\x29\xe4\xa8\x66\x58\x2a\x11\x4f\x35\x53\xac\xbb\x8e\xb7\x97\x70\xbe\x66\xa9\x45\x1a\x6a\x29\x96\x56\xa4\xa5\x7b\x2c\x0b\x8a\x20\x6f\xe6\x89\xf4\x89\x49\x9f\xe9\xa6\x8a\x25\x88\x84\xb7\x87\xed\x3a\xdd\x09\xd1\x83\xf8\x86\xc4\x9e\x59\x28\xbc\x57\x42\xd2\xb3\xdc\xd3\x3c\x81\x95\x1e\x45\xa5\x58\x9c\xf4\x28\x5c\xc3\xdb\x39\xa9\x51\xb8\x86\x47\x72\x32\xa5\x93\x29\x4b\x22\xb4\x4c\xc8\xdf\x92\xd6\x74\x78\x96\x77\x48\xff\xd3\x99\x5d\x8e\x51\x3b\xe5\x8c\x69\xe4\x13\xcb\x07\x85\x5e\x7e\x4c\xb8\xfc\x28\x86\x7e\xa0\x16\xff\xfd\x0b\x00\x00\xff\xff\x66\xba\x5f\xa0\x40\x03\x00\x00"); -var _gbc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x95\xcd\x8a\xe3\x46\x14\x85\xf7\xf5\x14\xb5\x9c\x2c\x26\xae\x7b\xeb\x1f\x84\x21\xb8\x19\xf0\x62\x66\x42\x9c\x4e\x02\x21\x0b\x59\x2a\x19\x41\x2c\x09\x59\x5e\xf4\xdb\x87\x5b\x47\xdd\x81\x31\x18\xd9\x9f\xab\x74\xac\xef\xc8\xd7\x87\xd3\xf9\xe5\x3c\x8d\x9b\x3e\xfc\xba\xce\xdd\xa5\x6c\x7a\x18\xa7\x7e\x2d\x8f\xf9\xb9\x76\x45\x5f\xcb\x6d\x9c\x94\x22\xd6\xfd\xd8\x6d\xef\x6f\xeb\xa1\xbb\xb7\x8b\x52\xb2\xff\xf2\xf6\xd8\xca\xfd\x3c\x0d\xb3\xb6\x58\xd7\x3f\x97\x7d\xad\xd6\x87\xdf\xca\x6d\x7c\x6c\xeb\x9b\xfe\xf4\x4b\x3f\x5f\xcb\x4f\xba\x2f\x83\xf0\xef\x6b\x5f\xd6\x71\xba\xe9\x4f\xa7\x6f\x17\xfa\xc0\x97\xe7\xb2\xfc\x5b\xee\x65\xda\xb4\xa9\xac\x4c\x7d\x3d\xaa\xc3\xe9\x6b\xbb\x7c\x6b\xef\x45\x1f\xea\x99\x3e\xcb\xbe\xcf\x58\x54\x3f\xfb\xa3\xac\x8f\x71\x9e\x34\x99\x9f\x8d\x09\xff\xf3\xdf\xdf\x96\xa2\x69\x3f\xc9\xeb\xf9\xe5\xfb\x30\x3c\xca\xa6\x73\xd8\xf7\xfe\xf5\x7a\x7e\xd1\x7f\x93\x26\xa3\xd9\xdb\xec\xfe\xd9\x97\xfe\xf9\x75\xee\xcb\xfe\x2d\xea\x95\x9e\xe6\xe7\xb4\x69\x72\x26\x67\x40\xc2\x65\x76\x73\x5f\x1e\x4b\xdb\x95\xb5\x9d\x6e\x45\x69\xdd\x18\x63\xcc\x51\x37\x36\x7e\xf9\x72\x94\x2b\xf8\x61\x85\xf2\x61\xdf\x39\xf6\x20\xef\x3b\x8c\x19\x86\xa3\x96\x87\x51\x8d\x21\x30\x02\x63\x1f\x54\x63\x18\x8c\xc1\x3c\xb1\x6a\x8c\x05\xb3\x60\x31\x24\xd5\x18\x07\xe6\x2a\x23\xc3\x4e\x35\xc6\x83\x79\x30\x4e\x92\x11\xc0\x02\x98\xb7\x92\x11\xc1\x22\x58\xcc\x92\x91\xc0\x52\x65\x6c\x9c\x64\x64\xb0\x0c\x66\x8d\x64\xb4\x60\x2d\x98\x0f\x92\x71\x05\xbb\x82\x25\x92\x8c\x0e\xac\xab\xcc\x9a\x28\x19\x3d\x58\x0f\x66\x59\x32\x0a\x58\x01\xf3\x49\x32\x06\xb0\x01\x2c\x39\xa3\x1a\x82\x3f\x82\x3f\x67\x72\x50\x0d\xc1\x1f\xc1\x9f\xb3\x9e\x55\x43\xf0\x47\xf0\xe7\x82\x49\xaa\x21\xf8\x23\xf8\x73\x29\x38\xd5\x10\xfc\x11\xfc\x79\x62\xc9\x80\x3f\x82\x3f\x6f\xa3\x64\xc0\x1f\xc1\x9f\x0f\x56\x32\xe0\x8f\xe0\xcf\xa7\x24\x19\xf0\x47\xf0\x17\xc8\x49\x06\xfc\x11\xfc\x05\x67\x24\x03\xfe\x08\xfe\x42\x90\xce\x09\xfe\x08\xfe\x42\x96\xce\x09\xfe\x08\xfe\x22\x49\xe7\x04\x7f\x04\x7f\xd1\x49\xe7\x04\x7f\x04\x7f\x31\x48\xe7\x04\x7f\x04\x7f\x31\x4b\xe7\x0c\x7f\x0c\x7f\x89\xa4\x73\x86\x3f\x86\xbf\xe4\xa4\x73\x86\x3f\x86\xbf\x14\xa5\x73\x86\x3f\x86\xbf\x94\xa5\x73\x86\x3f\x86\xbf\xcc\xd2\x39\xc3\x1f\xc3\x5f\x76\xd2\x39\xc3\x1f\xc3\x5f\x8e\xd2\x39\xc3\x1f\xc3\x5f\xce\xd2\x39\xc3\x1f\x57\x7f\x72\x3b\x4b\x06\xfc\x71\x06\x73\xd2\x39\xc3\x1f\xb7\x60\x51\x3a\x67\xf8\xe3\xea\x4f\x6e\x0a\xc9\x80\x3f\xee\xc0\x58\x3a\x67\xf8\xe3\x1e\xcc\x4b\xe7\x0c\x7f\x5c\xc0\xa2\x74\xce\xf0\xc7\xd5\x1f\xb1\x91\xce\xed\xfe\x8b\x37\x60\x2c\x9d\x5b\xf8\xb3\x04\xe6\xa5\x73\x0b\x7f\x96\xc1\x92\x74\x6e\xe1\xcf\x56\x7f\x64\x8d\x74\x6e\xe1\xcf\x3a\x30\x2b\x9d\x5b\xf8\xb3\x1e\xcc\x4b\xe7\x16\xfe\x6c\x00\x4b\xd2\xb9\x8d\xfb\xf4\x21\x3e\xca\xb8\x4a\xa6\xce\xa0\xf7\x59\x23\xaf\x65\x7a\x7f\xcc\xd3\xee\xb9\xae\x65\xda\xea\xec\xae\x13\x53\xa6\xdb\x38\x95\x8f\xff\x81\x65\x5e\x64\x57\x7d\xfe\x17\x00\x00\xff\xff\xdd\x7b\x1f\xc6\x33\x06\x00\x00"); -func _dgg ()([]byte ,error ){return _dc (_bef ,"Adobe-Japan1-7")};func _gdfa ()(*asset ,error ){_agcab ,_ebfcf :=_ece ();if _ebfcf !=nil {return nil ,_ebfcf ;};_baaf :=bindataFileInfo {_ag :"UniKS-UTF8-H",_bc :143593,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493060,0)}; -_bbccc :=&asset {_cd :_agcab ,_dce :_baaf };return _bbccc ,nil ;};var _daff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\xdb\xab\x65\xb9\x75\xee\xdf\xf7\x5f\xb1\x1e\x7d\x1e\xce\xe9\x29\x69\x5c\x24\x28\x36\x1c\x6c\x43\x3a\xe0\x38\xc4\x71\x12\x08\x79\x98\xb7\xd5\x14\xa4\xab\x8a\xea\x6a\x88\xff\xfb\x30\x7e\xdf\xb2\x83\x4d\xa0\x1f\xcc\xe7\xfe\x4a\xd2\x1a\x1a\x1a\x57\x69\xee\xef\x7e\xfd\xfd\x6f\xbe\xff\xf4\xf1\xdb\xe3\xbb\x7f\xfc\xfa\xf9\xfc\xc3\xfd\xed\xf1\xfc\xf8\xe9\xfa\x7a\xff\xf4\xf9\xe7\xaf\xe7\xfd\x38\xee\x1f\x3e\x7e\x7a\x7b\x6b\xfd\x71\x7d\x3c\xbf\xfd\xf9\x3f\x81\xf3\xc7\xfd\xcb\xdb\x5b\xcd\xff\xc3\x9f\x7e\xfa\x76\xff\xf8\xfd\xa7\xe7\xe7\xc7\xd0\xb8\xeb\xe7\x2f\xaf\xb1\x8f\xc7\x77\xff\x74\xff\xf0\xf1\xa7\x6f\x5f\xff\xf4\xf8\xd5\xff\xbf\x3e\x1f\xf7\xff\x79\x5c\xf7\xb3\xf8\xdf\x7f\xbd\xee\xaf\x1f\x3f\xfd\xf0\xf8\xd5\xdf\xef\x5f\xf6\x4f\xed\x2f\xff\xf0\x87\x9f\xbf\x7c\xf9\xcf\xfb\xc7\xfb\xd3\xb7\x47\x87\xbb\x3f\x5d\xe0\xdb\x77\xbf\xfe\xdd\xfe\xe5\x1f\xf6\x1f\xef\xc7\x77\xbf\xfd\xaf\x6f\xff\xf7\xef\x60\x21\xff\xe5\xfe\xfa\xd3\xc7\xcf\x9f\x1e\xad\xfd\xbf\x6d\x8b\xff\xe1\xff\xf9\x4f\x5f\xee\x47\x7b\xcd\xfe\xe3\xf7\xbf\xf9\xfd\xf3\xf9\xd3\xfd\xed\x31\xe6\xa6\x31\xff\xf6\xc7\xef\x7f\xf3\xf8\xf7\xf6\x68\xdb\xa3\xfb\x18\xed\x3f\x5e\x43\xff\xf5\x77\x9f\xaf\xfb\xa1\x41\x6f\x4d\x9b\x39\x3f\x5f\xf7\x4f\x5f\xf6\xf3\xfe\xba\x7f\xfa\xe1\x7e\x7b\x3c\x3e\xf4\xd6\xdb\xfb\xe3\x43\xfe\x36\x7f\xfb\x5e\x52\xfe\xcd\x88\xb7\xb6\x6d\xaf\xa9\x1f\x2f\x51\x7f\x9e\xd2\x5b\xcc\xf7\xc7\x23\xc6\x28\x2a\x96\xa8\xf5\xfe\x48\xcb\x09\xb5\x43\xe5\xfd\xfe\x78\xe4\x16\x6f\x1f\x7a\xd7\xc4\xde\xa1\x7a\xbe\x7d\xe8\x63\x6c\x45\x8d\xb1\x8a\x9a\x5b\x51\xc6\xa8\xe1\x7b\x51\x0b\x2a\x44\x65\x51\xb3\xd5\x5a\xa6\xb5\x2c\x47\x51\xd6\xdf\x3e\x74\x17\xe5\x19\xef\x8f\xc7\xea\xfe\xf6\xa1\x87\xa8\x18\xf3\xfd\xd1\xb6\xd6\x8a\xd2\xf2\xe1\x50\xa3\x46\xa5\x46\x65\xfd\x4b\xdb\x7c\x15\xe5\xa2\x12\x6a\xd5\xf2\x4b\xa3\x96\x3f\xdf\x1f\x8f\x3e\xa0\x02\xe9\x81\xc7\x40\xd4\x25\x51\x17\xdb\xee\xab\x44\xdd\x35\x71\x67\xe2\x60\xdb\xbb\x26\xee\x8c\x1a\xab\xe4\x3a\x34\xea\xa8\x5f\x7c\x58\xaf\xe5\x8f\xec\xa2\x3a\x6b\x39\xd4\x10\x55\x13\x7d\x2b\xdd\x9f\xdd\x8a\x3a\xe3\x89\xee\x4b\xfa\x4b\x6b\x5d\xe3\x7e\x7f\xa4\x7b\x4d\xbc\x8c\x5f\xbc\x3c\x8a\x9a\x50\x25\xd0\x0b\xe6\xe8\xb5\xd6\x25\xb9\x2e\xd6\x8a\xad\xce\xf1\x4a\x51\x05\x8f\x8c\x0e\xa5\xe5\x11\x35\xa3\x41\x75\x51\x1d\x0a\x21\x24\xea\x95\x65\x13\xd1\x0d\x6a\x17\xc5\xd1\x86\x96\x3f\x44\x9d\x35\x6a\xb4\xb7\x0f\x63\x43\x7a\x41\x6b\x75\x8e\x63\xeb\x5d\x54\x67\xd4\x80\x1a\x50\xa3\x33\x2a\x8b\x1a\x2f\x6a\xbc\x3f\x72\x8c\x0d\xca\x44\xed\x35\xca\x0c\xea\x10\x75\xb0\x96\xa8\x13\x2a\xae\x1a\xe5\xbd\xa8\xb8\x45\xdd\x8c\x42\x88\xd2\xca\x87\xb1\xd5\x1e\x5b\xdf\x10\x22\xf5\x8b\x05\x19\x23\xa0\xf4\x8b\xb5\xaf\xd6\x4b\x85\x63\x4b\x2d\xff\xda\x23\xa2\xe6\x25\xea\xae\x51\xad\x28\xb9\xd5\x68\x7d\x41\x2d\xa8\x5d\xd4\xce\xc4\x09\x85\xf4\xad\xf6\xd5\x7a\x67\xd4\x70\x51\xce\x28\x51\x21\xaa\x8c\xbc\xdb\x06\xb5\x44\x71\x1c\x2f\x4a\xcb\x0f\x44\x45\x39\x4d\x9a\x68\xe3\x62\x54\x83\x42\x13\x0d\xef\xe8\x86\x10\xd6\x45\x71\x1c\x36\xa0\xd0\x04\x5e\xdf\xba\x43\x85\x44\x0d\x14\xad\xe5\x43\xcb\x6b\xdb\xab\x28\x05\x85\xd1\x7b\xbe\x3f\xda\x68\x03\x6a\x8a\x9a\x4c\x74\xa8\x25\xaa\xa4\x1f\x65\x5f\xa3\x4b\x39\x5d\xca\xb1\x80\xe2\x17\x7b\x59\x74\xc3\xa2\x47\xc7\xa2\x05\x19\x96\x50\xfa\xc5\x32\xcc\x36\x12\x2a\xb5\x56\x6a\xad\x09\xa5\xb5\xea\xd0\x9a\x71\xda\x5d\x87\x06\x64\x18\x42\xe4\x2d\xea\x66\x54\x09\x31\xb4\x21\xa0\xd9\x96\x50\x5d\x14\xfa\xf2\x0d\x0a\x7d\x11\xec\x9a\x6d\xb5\xd6\x90\x56\x81\xb0\xc5\x44\x7b\x8d\xaa\x73\x34\x8e\x63\xd8\x12\xb5\xde\x1f\xbe\xb1\xc7\x61\x48\x3f\xc2\x18\x55\xd2\x8f\x70\x51\xd8\x84\x33\x31\x42\x54\x9d\x90\x25\xa2\xea\x84\x86\x4e\x08\xbb\x1f\x3a\xa1\x81\x91\xdb\x84\x92\x91\x0f\x19\x39\x47\x3b\x64\xe4\x23\xbd\x46\x2d\x36\x94\x5a\xbe\xc0\x17\x46\x3e\x32\x45\x2d\x46\x69\xa2\x44\x95\xa2\xdd\xa0\x24\x84\x54\xc8\xb6\x15\xdc\x87\xa1\x1c\xdf\x4a\x7a\x93\x72\x4c\x26\x57\x21\x6d\x98\x94\x03\xb8\x84\x30\x33\x51\x75\x68\x8e\x3f\x9a\x5d\xa2\x38\x34\x17\xc5\xa1\x99\xb3\x3c\x96\x63\xae\xe5\x0b\x22\xe6\x84\xd2\xf2\x68\xd5\x51\xa1\x49\xab\xf6\xd2\x2a\xa2\x4a\xab\x86\xf4\x9e\x25\x84\xf2\xd0\xf0\x32\xcc\xe6\x15\xb6\x87\xcb\x30\x81\x0c\x9f\x50\x28\xda\x47\xd9\x6a\x60\x39\x4e\x8c\x16\x64\xf8\x22\x21\xff\x39\xef\xfe\x6f\xa9\x78\xb8\xe9\xa7\xf8\xf5\x20\x08\x2a\xe5\x09\x5a\xcc\x05\xd5\x45\xa1\xbb\xd8\xa0\x86\xa8\x3a\x9a\xa8\x04\x34\x42\xfe\x14\xf2\xa7\x10\x85\xd8\x61\xce\x28\xd6\xb2\x10\x15\x64\x1b\x83\x4a\x51\x25\x44\x4a\x08\x7b\x8a\x22\x8f\x54\xd2\x18\xe1\x6c\x2e\xca\xbe\x5a\x72\x34\x11\x97\x28\x8e\x26\x06\x14\x47\x13\x65\x6b\x2d\x83\x51\xb2\x35\x20\x23\xf8\xc5\x74\x51\xa5\xe1\x4c\x26\xca\x8a\x80\x8c\x70\xa8\x53\x14\xbf\x38\xd9\xb6\x3c\x38\xe4\xc1\xaf\xe5\x5f\xbf\x88\xf4\x18\xbc\xea\x81\x91\x1d\x21\xe6\x80\x32\x51\x12\x22\xa1\x10\x22\x2b\xd4\xb6\x9c\x50\x23\x45\x25\xa3\x26\x14\xb1\x2c\xcb\x30\xdb\xe4\x98\xd3\x34\xd1\xb0\x22\x62\x59\x4a\xab\x59\x46\xda\x66\xdf\xa0\x6e\x51\x24\xa0\x14\x85\x56\xa9\x4d\xda\x24\xf6\xa7\xec\x16\xc8\xc8\x06\x35\x44\xf1\x8b\xe4\xca\x74\xfd\xa2\xf3\x8b\xc9\x1e\x5d\xbf\x58\x55\x56\x9b\x1c\x47\xfa\x21\xaa\x54\xd8\xa6\xd6\x42\x85\x19\xa5\x09\xaa\xac\x91\x21\x4d\x04\x9a\x40\xf7\x29\xb7\xc8\x2a\x11\xda\xc4\x53\x28\x9c\x5e\x90\x81\x99\x64\x4a\xd4\xac\x58\x36\x43\xd4\x12\x45\x4e\x4a\x87\xda\x45\xa1\x09\x89\xaa\x13\x02\x32\x08\x5c\x53\x27\x34\x07\x72\x11\xc2\xa7\x32\x3d\x90\xf1\xa2\x90\x6b\x1a\x72\x11\x59\xa6\x1c\x06\xc8\xa8\x42\x75\x4c\x45\x96\x89\x01\xac\x56\x8a\x56\xa9\x37\x16\x1e\xbc\xd0\xea\x92\x2b\x2c\x79\x70\x55\x59\x63\xc9\x83\x17\x06\xb0\xb0\x9c\x25\x03\x58\x32\x00\x4c\x6e\xc9\x00\x16\xb1\x6c\x91\xf2\x96\x7e\x71\x29\x96\xa1\xe8\xa5\x58\xb6\x4a\xf7\x7d\xdb\x4a\x13\x4b\xba\x07\x7c\x12\x76\x97\x63\xbe\xab\x7c\xa8\x6f\x14\x4b\x2b\x5e\x14\x16\x2d\x21\xe4\x43\xab\x7c\xa8\x6f\xa4\x83\x25\x1f\x5a\xf2\x21\x2c\x7a\xc9\x87\x56\x1d\x47\xdf\x08\xa8\x4b\xc7\xb1\x74\x1c\x13\x51\x75\x1c\x94\xb3\x7d\x23\x74\xa8\x9c\x1d\x7b\x99\x5c\xdf\xf0\xb4\x5d\x26\x07\x64\x4c\x51\xfc\xe2\x5e\xe1\xb1\xb7\x2a\xd9\xc7\x1e\x29\x4a\xca\x11\x85\x72\x76\x44\x6d\x58\xe1\x2e\x51\xf7\x97\xa8\x09\xe5\xa2\x4a\x88\x46\xde\x55\xb5\x3c\x8e\xce\xf2\x2e\x2a\x45\x69\xf9\x09\x35\x45\xad\x1a\x85\xbb\x1f\x8a\x72\x87\xa2\xdc\xd4\xc4\x43\xd4\xc1\x28\x51\xa7\x28\x2a\x36\x52\xcb\xd1\x51\xf4\x51\xc7\xd9\x1b\x36\x71\xa8\xa4\x3a\x54\x52\x2d\x51\x5a\x5e\xa2\xa2\xc2\x53\xa2\x9e\x65\x13\x5d\x95\xd1\x29\x9b\x00\x32\xaa\xbb\x18\xa7\xd6\x3a\x8d\x51\x98\xef\x69\x1a\x65\x1a\xc5\x44\x7b\x8d\x5a\x55\x22\x50\x0f\x9c\x4a\xfe\x67\xf9\x73\x57\x49\x75\x7a\x8a\x42\x13\x2f\x4a\x6b\x95\x31\xf5\x41\x55\x7a\xca\x98\x4e\xc7\xad\x48\x53\x27\x1d\xc1\x38\x91\x7e\xb4\xa2\xd4\x4a\x8c\xab\xf4\xd5\x07\xf5\xd3\x25\x7d\x5d\x72\x85\x25\x0a\x7d\x5d\xe5\x70\x7d\x90\xdf\x2e\x95\xa0\x40\xc6\x12\x85\x5c\x57\x95\x1b\x5d\x45\xdc\xa5\x72\xe3\x92\xf9\x2e\x51\x98\x2f\xdd\x45\xb7\xea\x1b\x86\xba\x8b\x41\x47\x91\x49\x3d\x70\xc9\x4c\x2e\x44\x35\x6a\xfd\x5b\xa2\xde\x15\xa3\xbb\x94\x73\x2b\x46\x03\x99\x14\x71\x77\x47\xae\xbb\xfa\x86\x6e\x24\xff\x5b\x7d\x03\x90\xb9\x19\x94\x89\x62\xf9\xd8\x7e\x39\x15\xdf\xe3\xa9\x19\x4f\x16\x29\xdd\xdd\xca\xe7\xb7\x23\x10\xb1\xec\x56\x24\x06\x92\xae\x78\xdc\x8a\xc4\xb7\xf3\x53\x9c\xd6\xad\x73\x00\x32\x29\x21\x6f\xd5\xb1\x77\x45\xe2\xee\x92\x51\x91\x18\xc8\xe4\x4c\x6f\x45\xe2\x1b\xad\x38\x55\xe5\x53\x5a\x79\xe2\x03\x4e\x23\xf3\x94\x0f\x00\x99\xaf\x51\x9c\xe9\xb3\xcc\xa4\x3b\x25\xf7\xd3\x97\xa8\xb2\xee\x24\x2e\x3e\x5d\x13\x4b\xae\xee\xd8\xed\x53\x72\x01\x99\xd5\x61\x8f\xa7\xea\xeb\x67\xb0\x16\x67\xfa\x0c\xad\x15\x5a\x4b\x13\xb5\x16\xa2\xd2\x6a\x9a\x1a\x3f\x41\x8f\xca\x6f\xa6\xc6\x4f\x90\x59\xdd\x81\xa9\xf1\xb3\xcd\x18\x55\x41\xd0\x36\xd3\x28\xd3\x28\x83\xd2\xa8\x52\x48\xa7\xb6\xb0\x8d\x52\x4d\x90\x59\xd6\x6d\x1b\x21\xc9\xb6\xca\x5c\x1d\xf3\xb3\x2d\x25\x44\x6a\xad\x80\xd2\x5a\x84\x4a\xf6\x68\x1b\xa1\xd2\x36\xea\xd8\x6c\x48\x4f\x05\x62\xb4\x74\x3d\xab\x7f\x33\xb5\x74\xd6\x88\x52\x59\xb5\xba\x35\xa2\x94\x20\xb3\x32\xbd\x35\xa2\x94\x20\xa8\x79\x8c\x26\xf0\x83\xd1\xbf\xf5\x64\x8f\xea\xdf\x04\x99\x5d\xd4\x0e\x65\xe5\x4f\x59\x81\xde\x5a\x55\xbe\x2f\xc8\xec\x1d\xea\x12\x85\x5c\x55\xba\x58\xa3\x90\x10\xe4\x4b\x2e\xca\x33\x6b\x58\x61\x26\x72\xb9\x46\xc9\x0a\xcb\x11\xad\x85\x46\x71\xb4\x39\x11\x35\x24\x97\x8e\xb6\xba\x75\xd3\xd5\x8f\x35\x69\x62\xd5\x28\x75\x79\xd6\xab\xbd\xec\xb3\xfa\x5d\xeb\xe3\x12\x75\x31\x91\x51\xb4\x9a\xd6\x8d\x51\x06\x25\xe9\x81\xa4\xb8\xb4\x6e\x1a\x45\xae\x9c\x55\x5c\x5a\x27\x57\x0a\x32\xfb\x84\xd2\xc4\x28\x3f\xa7\x44\xb0\x1e\x43\x14\x7e\x8e\x7d\x75\x7c\xc8\x7a\xc5\x9c\x3e\x2b\x5e\x5b\xa7\xcd\x17\x64\x56\x64\xb1\xce\x1d\x88\xf5\x8a\x39\x7d\x6a\x43\xe4\x24\xeb\x89\x31\x71\x42\x9d\x76\xc7\xe8\x18\xfb\xaa\x60\x63\xea\x18\x05\x99\x43\x94\xa4\x47\x39\x94\x1b\xa6\x8e\xd1\x06\x66\xb2\xb0\xaf\x21\x33\x19\x32\x93\x61\x50\x53\xd4\x64\xd4\x84\x5a\xa2\xb0\xc2\xf2\x6d\x1b\x38\xb2\x8d\x8e\x10\x5d\x6b\x5d\xa2\x6e\x46\x25\x14\x7b\x1c\x43\xa3\x98\xa8\xe3\x18\x3a\x8e\xb1\xa0\x10\x75\x94\x26\xfa\x32\x44\x95\x26\x80\xcc\x17\x25\xe9\x51\xce\x5a\xfc\xa2\x94\x03\x64\x9a\xa8\x10\x75\x30\x2a\xa0\x4e\x51\x1c\x5a\x15\x97\x36\xa4\x2f\x7a\xc1\xb1\xa1\x42\xf5\x82\x66\x25\xea\xa0\x32\x32\x93\xa8\x26\x51\x8d\x51\x12\xd5\x2a\x7d\x8e\x0d\x7d\x19\xe9\x53\x90\x69\xa2\x96\xa8\x55\xa3\x8c\xb5\x48\x9f\x82\xcc\x17\x75\x88\xe2\x17\x2b\xe5\x99\x9a\x48\x41\x26\x86\xa9\x26\x52\x30\xb6\xea\xe9\xcd\xe4\x56\x26\xb7\xd2\x44\xb9\x95\x55\xe0\x1c\x5b\x75\xd8\x66\xae\xe5\x0b\xcc\xb1\x09\x93\xf9\x9a\xb6\x5d\xa5\xb1\xa9\x89\x14\x8c\x8d\xc8\xe4\x8a\x85\xae\x58\x88\xbb\xbb\x62\xa1\x97\xe5\x8c\x56\x89\xd1\x5c\x96\xe3\xb2\x1c\xd3\xc4\x29\xea\x62\x54\x40\xdd\xa2\xb0\x09\xa4\x77\xd9\x84\x57\x0e\x1f\x8d\x50\xeb\xe4\x70\x41\xa6\xb3\xfc\xd0\xf2\xa5\xef\xd1\xba\xa8\xd7\x44\xb6\xcd\x1e\xd5\xc9\x9a\x73\x1c\x0d\x1f\x72\x1d\x87\xeb\x38\x9c\xe5\x75\x1c\x5e\xba\x1f\x0d\x93\x73\xe9\x1e\xc8\x74\x34\xa1\x90\xe6\xa5\xc9\xd1\xac\xff\x62\x2a\x36\x77\xe9\x8e\xa6\x28\xab\xb4\x35\x77\x29\xca\x51\x94\xb4\xe2\xda\x49\x81\xcf\xd7\x28\xc9\x58\x01\x62\x34\xfd\xba\x02\x84\x2b\xc9\x56\xcb\x6f\x4e\x92\x35\x0f\xd4\x19\xa2\xa4\xce\x02\xef\x1b\xfb\x55\x18\xf1\xca\x23\xa3\x11\x7f\x5c\x79\x04\x70\x93\x56\x52\xcb\x27\x8a\x9a\xe8\x2e\x25\x44\x4a\x51\x1c\xb3\xb2\x0d\x6d\xfe\x68\x55\x13\x9b\xda\x7c\x8b\x81\x10\x55\x1c\x5a\xc8\x07\x80\xcc\xaa\x89\x2d\x74\x34\xdc\x79\x8f\x4e\xa0\x0f\xe5\xca\x50\xae\xac\x8a\xde\x42\xb9\x32\x4a\x47\xa3\x13\x63\x83\xf2\xdd\x42\x75\x4a\x34\xa8\x10\x55\xa7\xd5\xf1\x81\x90\x29\x87\xc2\x2e\x49\x36\x14\x76\xa3\x12\xc5\xa0\xda\xb5\x08\x89\x5a\x90\x59\x0d\x83\x45\x48\x88\xd2\xe4\xe8\xec\x31\x94\x9d\x83\xee\x40\x59\x30\xe8\x0e\x2c\x2a\xb5\x8c\x8e\x5b\x84\x52\x0b\x90\xdc\x20\x5b\x84\x84\x48\xd6\xe2\x38\x42\xc1\x06\x88\x29\xe5\x28\x38\xd3\xe6\x8f\x5e\xfd\x9b\xa9\xcd\xb7\x2c\xef\x18\x1d\xad\xa6\x02\x2a\x90\x5c\x63\x5b\x52\x2c\x19\x7d\xfc\xe0\x42\xdf\x52\xa9\x38\x95\x8a\xc9\x95\xa9\x54\x4c\x57\x3d\x46\x15\x38\x96\xb2\x2f\x20\xb3\x1a\x06\x4b\xd9\x57\x06\xa3\x88\x78\xa9\x0a\x24\xb5\xed\x14\xf5\x1a\x55\xf5\x80\x13\xaf\x53\x49\x36\x95\x64\xab\xe9\xb6\x94\x26\xb2\x0a\xe8\x31\x38\xc7\xa4\x17\x14\x64\x56\xd3\x6d\x29\xc3\xa4\x77\x1e\x03\x15\xaa\x77\xb6\x59\xa1\x63\x8c\xea\x3e\x6d\x72\xbb\x21\xc8\xac\x3e\xdc\x26\x95\xb3\x4d\x62\xc6\x98\xa2\x6e\x51\xd8\x57\xf5\xe1\x36\x15\x33\x80\x31\x16\xa3\x78\xd1\x11\x64\x62\xf7\x73\xe8\x17\xb1\xaf\xb1\xa0\x64\x5f\x40\x66\xf5\xe1\x36\x5d\xbf\x58\x66\x32\x8c\xb8\x38\x65\x26\x40\x26\x87\x36\x95\xc3\x67\xf9\xcd\x30\x62\xec\x54\xb6\x99\xca\x36\xd5\x74\xdb\x94\x01\xd0\xd3\x0f\xc3\x98\xd4\xd3\x0b\x86\xb1\xc7\xa5\x80\xba\x3a\xf5\x00\x9a\x58\xd2\xc4\xea\x4c\x44\xae\xa5\x3d\x02\xc9\x6d\x90\x2d\xed\x11\xf0\x86\x5c\x4b\x7b\x04\x86\x91\x05\xd7\xd0\xf2\x03\xe9\xa9\x2d\x16\x9d\x86\xad\x81\xf4\x4b\x6b\xb9\x28\x49\x8f\x5c\x0a\xbb\xab\x9c\x77\x18\x26\xb7\x14\x50\x81\x54\xe1\xc5\x8d\x42\x41\x9d\x90\x57\x93\x60\x4b\x39\x09\x48\xae\xa4\x6c\x29\x27\x2d\xa2\xa7\x13\xaf\x97\xc2\x23\x90\x39\xd9\xa3\x4b\x54\xf4\xe5\x94\x7a\x6a\xf3\x6d\xaf\x38\x31\x1c\x57\xd8\x15\x27\x80\xcc\x29\xca\x44\x95\x15\xc6\xc6\x44\xe5\xca\x5d\xb9\xb2\x7a\x67\xdb\x25\xd7\x5e\xad\xc4\x08\xea\xf3\x9d\x56\x42\x90\x89\xbe\x76\x45\x93\xbd\x02\xdf\xe0\x32\xd3\x76\x05\x3e\x20\xb3\x1a\x0e\xdb\x53\x13\x11\x95\xab\x54\xd3\x65\x80\x60\xa8\xd6\x3f\x74\xb4\x87\x72\xe5\x12\x35\x44\xb1\x3c\x61\xe8\x90\xbb\x1f\x72\xf7\x6a\xbd\x4c\xf7\x03\x76\x90\x93\xb8\x2a\xb3\x43\x39\xe9\x50\x4e\xc2\xc8\x0f\xe5\xa4\x83\xc8\x44\x1b\x67\x87\xfc\x11\x48\xd9\xd7\xa1\xc8\x74\x54\x26\x18\x2a\xbc\x0e\xd5\x4f\x87\xea\x27\x8e\xf6\x50\xfd\x74\xb0\x6d\x55\x33\x87\xb6\x0d\x58\x7b\x51\x5a\x9e\x6d\x2b\xc9\xea\x62\xc1\x4e\x74\xaf\xd4\x74\x4a\xf7\xe7\x4b\xf7\xa2\xd0\x3d\x17\x00\x63\x6e\x4c\xa4\xb3\x13\x64\x56\x6b\x6e\xa7\x8e\x83\xcb\x80\x31\x39\x21\x5d\x06\x08\x32\xa9\x40\x4e\x95\xff\x27\x2e\x3a\xfb\x2f\x77\xc5\x76\xca\x83\x81\x9c\x24\xc6\x53\x1e\x7c\xb2\xdf\x49\x4e\x3a\xb5\x5f\x20\xcc\x45\x49\x20\x1a\xac\x49\x65\x73\xaa\xc1\x02\xc6\xc4\xf5\x4f\x95\x90\x40\xbe\x36\xa7\x12\x12\x18\x93\x4c\x7f\xaa\xe4\x06\x72\x52\x55\xea\x5a\xc3\x2e\xdc\x95\x2b\x4b\xbb\xe4\xae\x40\x4e\x4c\xf9\x92\xbb\x5e\xe5\x43\x63\xe2\x03\x97\x0a\x3a\x20\x27\xe5\xe8\x25\x7f\xba\x08\x6f\x73\x69\x94\x89\x32\x46\x05\x94\x8b\x2a\x93\x51\x77\x70\x49\xe9\x40\xf2\x22\x63\x97\x7c\xe0\xaa\xd8\x3f\xd6\xc6\x5a\x8a\xfd\x40\x4e\xfc\xfc\x92\xad\x71\xf9\x31\x16\xee\xaa\xcb\x0f\xbb\xb1\xdb\x45\x1d\x7b\xcb\x6e\x81\x9c\x74\xd8\xb7\xec\xf6\x4e\x84\xc0\xf5\x6f\x29\xfa\x4e\x8d\x5a\x50\xaf\x51\xf7\xfb\xc3\xb6\x51\x72\xe9\x16\x41\x90\x93\x16\xe5\x29\x17\x7b\x56\x10\xb4\x8d\x56\xe0\xa9\x20\x08\xe4\x24\x0b\x3e\xc7\x6b\x94\xd7\x28\x67\x2d\x85\x37\x20\x36\x36\xf4\x54\x55\xf9\xac\x24\x6b\x1b\xe5\xc6\x53\x49\x16\xc8\x49\x39\xfa\x54\x92\x7d\x96\xa2\x8d\x32\xd9\x75\x65\xe0\x9b\xb3\x7c\x05\x1b\xdf\xa8\x53\x04\x83\xa2\xd5\x37\x52\xb1\xd3\x9a\x1b\xaf\xc0\xae\xd6\xdc\x79\xef\x34\x2e\xea\x9c\x47\xcf\x17\x24\x3e\xe0\x7a\xfb\xf4\x66\xf1\xfe\xb0\x5e\x42\x78\xe3\xb5\x43\x90\xb3\x39\xd4\x14\xb5\xd7\xa8\xae\x51\x87\x28\xb4\xda\x02\xea\x14\x75\x32\x2a\xa1\xf4\x8b\xa6\x5f\x14\xa5\x5f\x44\x54\xde\x77\x5d\xbd\xb3\x77\x51\x95\x93\x5c\x1d\xa3\xd3\xc6\xd9\xa8\x28\xe5\xfa\x92\x42\x90\xb3\x31\x6a\x68\x54\xa9\xd0\xc6\x14\xb5\x8b\xc2\xad\xda\x82\x42\xd4\x61\xac\xb5\x18\xe5\x5a\x4b\x46\xde\x37\x28\xad\x55\xe5\x9d\xd9\x8b\xba\x45\xe1\x56\x95\x5a\x7c\x10\x33\x9c\x37\x46\xb3\x6a\xc3\x5c\x6f\x8c\x82\x9c\x1d\x51\xb9\xf4\x73\xba\x3c\x23\x87\xbb\xba\x3c\xe7\x2d\xcf\x48\xd8\xae\xb7\x3c\x41\x12\x27\xdc\x78\x39\x71\xab\x08\x62\x5e\xee\xee\x3c\xcf\xbd\x60\x6c\xc1\xa8\xd0\x28\x96\x77\x84\x50\x37\xe5\xce\x69\x7b\x15\x4b\xee\x3a\x6d\xd7\x69\x77\x46\xe9\xb4\xbd\x82\x95\x79\xe5\x37\xa7\x15\x78\x41\xce\x6a\x94\x5d\x1d\x81\x53\x8c\x1b\x69\xca\x55\x8c\x0b\x8c\x57\x4d\xd7\x9b\x9b\x20\x67\x0f\x28\xd6\x8a\xd4\x28\xa8\xd4\xa8\xd4\x28\xd6\xca\xd7\xa8\x5a\x9e\x77\x32\x57\xa1\xea\x29\xaa\x1a\x3f\x57\x11\xe7\x14\x71\xc6\xc3\x8c\xab\x88\x13\xe4\xec\x1a\x85\x26\x28\x83\x8c\xfb\x14\x57\x19\xe4\x7c\xc5\x52\x85\x46\x51\x44\x75\x41\xf2\xac\xe4\xfa\x8a\xc5\x57\x1d\x9a\x6f\x15\xb6\x7d\xe9\xd0\x80\x9c\x43\x14\x2a\x5c\x55\x5a\xfb\x56\xee\xee\x3c\x27\xbc\xa0\xe9\x68\xf5\xaa\xe0\xd4\x16\xbe\xa1\x68\xd5\x16\xbe\x97\xbb\xfb\xc6\x5a\x3b\xee\x2e\xc8\x39\x1a\x14\xb6\x4a\x6d\xe1\xbc\x50\xb8\x6a\x0b\x41\xce\xd1\xa1\x38\xb4\x5d\xcb\x57\xde\x75\xd5\x03\x7e\x94\xe5\x78\xe3\x17\x0f\x59\x0e\x90\x3c\x8a\xf9\xc1\x9b\x9b\x1f\x3c\xa4\xb7\x8a\x39\x4e\xd6\x7f\x41\xce\xa1\x89\x98\xef\x41\x97\xc8\x13\x82\x1f\x54\xf1\x82\xc1\xbb\xb3\x1f\x64\x54\x27\xf9\x7b\x9b\x50\xb2\xfb\x43\x76\x3f\x90\x4b\x2a\x04\xbc\x55\xa2\xf0\x43\x2a\x3c\xd4\x4b\x26\xcb\x53\xb2\x3b\x5f\xfa\x78\xdf\x90\x8b\x2e\x51\x90\x3c\xd6\xf9\x91\xda\x50\xaa\xe3\x9c\xbf\x98\x8a\x5d\xe5\x82\x9f\x9a\x41\x80\x50\x16\x74\xf2\x88\xd3\xb5\xb8\xf2\x88\xdf\x1c\x0d\x1f\x34\xf8\xad\xa3\x01\x06\xef\x82\x7e\xeb\x68\xee\x8a\x19\x6e\x9c\xd6\xad\x98\x71\x2b\x66\x54\xb1\xe3\xb7\x62\xc6\x5d\x62\xbb\xe1\x16\xb7\xc4\x06\x1a\xb7\xd1\x7e\x53\xab\x3b\xd9\xc6\xa9\x9c\x5d\xd9\xc6\x9f\xe5\x16\xee\x98\xdf\x53\x6e\x01\xe4\x1c\x13\xca\x44\xd5\x44\xaf\xc2\x3c\x94\x0e\x62\x2b\xbb\x77\xaf\x82\x2e\x36\xee\xfb\x05\x39\xc7\x82\x4a\xa8\x0a\x5c\x1e\xb5\x7c\x6c\x04\x2e\x41\x4e\x83\xc2\x2d\x62\x2b\x51\x9d\xc7\xfe\xd8\x52\x6b\xa5\x1e\xbf\x45\x69\x2d\x84\xe0\xc5\x2f\x94\x5a\x82\xaf\x76\x9c\x87\xa8\xd0\x57\x3b\x82\x9c\xd6\xa0\x4e\x51\xa5\x42\xae\x9e\xa3\x11\xc2\xa3\x29\x7d\x96\x53\x47\x23\x7d\x06\xe9\xc0\x79\x55\x08\xa5\x83\xe0\xbb\x17\xe7\xc1\x3a\xf4\xdd\x8b\x20\x67\xe5\xb7\xe8\x5a\xbe\x57\x5f\xe9\x14\xc0\xd1\xe9\x2b\x05\x1d\xaf\x8b\x4e\x6d\x21\xf0\xe9\x4c\xa4\xb6\x10\x8c\xe6\x9a\xa8\xe5\xb9\xdd\x98\x15\xb8\x42\x97\xa4\x82\x9c\x86\x5c\x94\xb6\x41\x9a\xf2\x59\xfe\x14\x4a\x53\xa1\x6f\x55\x66\x59\x77\xe8\x5b\x15\x41\x12\x92\x62\xe0\x62\x31\x2a\xad\x3b\x17\x9b\x31\xa8\x9f\x04\x49\xa9\x17\x83\xfa\x29\x48\x40\xbe\xba\x46\xdd\xa2\xf4\xe5\x48\x87\x42\x2e\x52\x8b\xaf\x32\x93\x50\x6a\x09\xc3\xa2\x57\x75\xeb\x61\x58\xb4\x20\xa7\x31\x0a\x8b\x0e\x32\x8c\xaf\x2a\xf2\xc3\x08\x10\x02\xe3\xed\x33\xb8\x5f\xfc\x10\x24\xa0\xd8\x36\x26\x92\x0e\x04\x49\xbd\x19\x4a\x40\x61\xe5\xd4\xb1\x49\x08\x9c\x5a\x90\xd3\x59\x4b\x2a\x24\x4d\x05\xcf\xb4\xa1\x34\x15\x5e\xa2\x06\x05\x4e\xb8\x44\x75\x89\x5a\xd5\x4c\xb8\x44\x05\x62\xab\x34\x15\x4e\x0e\x17\xe4\xac\xee\x20\xc8\x75\x1f\xc2\x6b\x43\xb1\x2d\x26\x6a\x43\x40\xf2\xa2\x1c\xae\x0d\x91\xcc\xa2\x55\x46\x0d\x25\xb3\xe0\xa3\x8f\x68\xd5\x60\x85\x3e\xfa\x10\xa4\xcc\x44\x1f\x7d\x44\x68\x62\x35\x32\xa1\x34\x15\x7c\x2c\x10\x1d\x21\xf4\xb1\x80\x20\xb9\x63\x0b\x7d\x2c\x10\xba\xdd\x18\x55\x48\x84\x6e\x37\x04\x29\xfb\xd2\xed\x46\xf0\xfd\x40\x8c\xce\x44\x72\xa5\x20\x27\xfe\x98\x04\x85\x20\x31\xc6\xa8\x78\x1d\x4a\x8c\xc1\x97\x01\x31\xb0\x2f\x7d\x19\x20\xc8\xc9\x86\xf4\x65\x40\x4c\x54\x38\x42\xa3\x0e\x51\x52\xe1\x82\x42\x85\x33\x59\x2b\x4b\x5f\xdc\x3b\xbc\x20\x27\x36\xa1\xeb\x87\x20\xc9\x06\xb7\x7a\xa1\x24\x2b\x08\x33\x51\x5d\x54\xe7\x99\x76\x40\x0d\x51\x17\xa3\x3a\xd4\x2d\x8a\x36\x0c\xb7\xd2\xf5\x43\xac\x92\x2b\x08\xa2\xb1\x24\x17\x90\xf2\xb4\x45\x35\x13\xcb\xe9\xa0\xa2\xf6\xb8\xe8\x2e\x04\xed\x25\x04\xdd\x45\x2c\x89\x5a\xa5\x5e\x28\x15\xc7\x5e\xb2\x04\xc5\x52\xec\x14\x12\x82\xc1\x63\x6e\xec\x14\x12\xb1\x57\x10\x2d\xf3\x84\x4a\x51\xd4\xc1\xd1\xa1\x08\x30\x7b\xc9\x15\x4e\x94\xdb\x25\xd7\xae\x2a\xab\xca\xb3\xd8\xa9\xb2\x62\x2f\x57\x08\x17\x25\x57\xd8\x15\x4d\xb0\xfb\x5d\xd1\x84\xb4\x1e\x51\x95\x77\x28\xad\xc7\x51\xe1\x31\x82\x08\x70\x28\x3c\x1e\xea\xd9\xaa\xa7\x8f\x83\x9e\x2d\x0e\x2f\x21\xf8\x2c\x30\x0e\xee\x24\x05\xcd\x71\xbe\x43\xa1\xe3\x28\x63\x0c\x3e\x03\x88\x83\x0b\x48\x41\x4e\x6c\xe2\xe0\x72\x2e\xc8\xb5\xc1\x1b\x76\x1c\x4a\x01\x40\xce\x48\xa8\xd7\xa8\x12\x35\x9b\xfd\x75\x2a\x8e\xf6\xb7\x99\x38\x94\x89\x83\xc6\x3d\x78\xa4\x0b\x35\xee\x82\xce\xa3\x53\xa8\x71\x8f\x33\xf4\x2c\x58\xbf\x74\xca\x51\x4e\x39\x0a\xa7\x7c\xca\x51\x4e\x6c\x94\xcb\x89\x38\x65\xa3\xe7\xcb\x46\x17\x94\x8b\x2a\x11\xe9\x47\x43\xb9\x3f\xae\xfa\xc5\xa0\x43\x89\x4b\xbf\x08\xe4\x24\x52\xd2\xfa\x7e\x08\x9e\xec\x43\xa7\xac\x27\x7b\x41\xce\x6c\x50\x97\x28\xd6\x5a\x1a\xa5\xb5\x14\xf0\x52\x94\xd6\x92\x10\x24\x67\x55\x1b\x71\xf3\xf4\xc9\x63\x58\xdc\xdc\xc9\x08\x72\xe2\x74\x37\x77\x32\x71\x63\x57\xab\x9a\x96\xb8\x65\x57\xb7\xec\x2a\x59\x4b\x76\xc5\x73\x7a\x2c\x12\xfd\x4d\xdf\x27\xc8\x59\xb5\x61\xdc\x14\x6f\x41\xb5\x11\x0b\x8b\x51\xb5\x11\x4f\x82\xd4\x56\x8d\x7f\x3c\x15\xa4\x80\x54\xe2\x7a\xca\x3c\xa8\x36\x72\x2b\xb9\x52\xd5\x46\xf2\x09\x72\x6e\x65\x1e\xa9\x4f\x90\x05\xc9\xab\x63\xea\x13\xe4\xdc\xe8\x63\x5a\x83\xa2\x1a\x15\xe4\x4c\x26\x12\x62\x73\xa3\x7c\x6a\x55\x18\xe5\xe6\x5a\x9e\x7b\xba\x99\x0b\xaa\x8b\x2a\xeb\x6b\xc6\x5a\xec\x51\x90\xb3\x0a\x90\xdc\xd8\x63\xea\xab\x64\x52\x78\xea\xab\x64\x41\xa3\x00\x49\x0a\x9b\x17\xe4\x9c\xa2\x24\x04\x7b\x6c\x55\x51\xe5\xeb\xef\x03\x9a\xa8\x3a\xda\x54\x01\x92\x54\x18\xd9\x67\x40\x5d\xa2\x38\x8e\xa9\x51\x37\x14\xf1\xb4\x57\x7d\x93\xbc\xfe\xbe\x20\x27\xcb\xeb\x11\x38\x79\xf1\xcd\x51\x3d\x77\xea\xc5\x57\xd0\xb8\xfc\x4a\xbd\xf8\x0a\x92\x57\xda\xec\x18\x66\xf6\xd4\xb7\xde\xfc\xa2\xf6\x08\xb4\x51\xfd\x68\xea\x95\x36\xa9\x49\x72\x94\x45\xa7\x6a\x92\x54\x6f\x3b\xd0\x97\x7a\x5b\x41\xce\xe9\x50\x28\x5a\x6f\x93\x56\x3d\x51\xea\x6d\x52\x90\x93\x6d\x53\x66\xbc\x20\x0d\x9b\x50\xe8\x4f\x42\xec\x1c\x95\x46\x52\x21\x36\xf7\xca\x39\x93\xdb\xad\xdc\xb9\x02\x11\xb4\xb5\x44\x71\x8e\x04\xbc\xc9\x87\x95\xa9\x80\x97\x04\x96\xc9\x77\xaa\xa9\xd0\x91\x67\xb9\xd5\xe4\x2b\xee\x3c\x53\x54\xee\xef\x8f\xc9\x9f\x2a\xa4\x6e\xca\x04\x0f\xae\x40\x52\x37\x65\x49\x04\x98\xdb\xe6\x7f\x15\xa4\xea\xff\xff\xb8\x7f\x79\xfb\xcb\x1f\xa7\x9c\x3f\x7f\xfd\x7a\x7f\xfa\xc6\x9f\xc2\xf0\x57\x28\x8f\xeb\x7e\x7e\xfc\x74\xff\xe5\xcf\x6a\xbe\x7c\xfe\x52\xb3\xf8\xdf\x7f\x07\x00\x00\xff\xff\xcf\x44\xd9\x36\x82\x33\x00\x00"); -var _aaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x5a\x4d\x8b\x65\x39\x72\xdd\xbf\x5f\x71\x97\xe3\xc5\xb8\xf4\x11\x0a\x49\xf0\x78\xd0\x74\xf7\xe0\x62\x18\x8f\x71\xbb\x6d\x83\xf1\xe2\x4a\x0a\x15\x09\xae\xcc\x24\x2b\x6b\xd1\xff\xde\xc4\x39\xb7\xab\xed\xb1\xa1\x17\x43\x4c\x9f\x92\xe2\x86\x42\xf1\x71\x42\x2f\x3f\x7c\xff\xf1\x87\x8f\xcf\x4f\xef\xc7\x87\x7f\x7a\x7b\x99\x3f\xd9\xfb\xb1\x9f\x9e\xd7\x9b\x7d\x79\xf9\xfa\x36\xed\x18\xf6\xe9\xe9\xf9\x76\x8b\xe9\x58\x4f\xf3\xfd\xd7\xff\x84\x98\x9f\xcf\xd7\xdb\xcd\xf7\xff\xf4\xcb\x97\x77\xfb\xfc\xf1\x79\xbf\x1c\x99\xeb\xd6\xd7\xd7\x6b\xed\x71\x7c\xf8\x67\xfb\xf4\xf4\xe5\xfd\xed\x97\xe3\x0f\xdf\xad\x97\x61\x7f\x77\x2c\xdb\x8e\xff\xf5\x6d\xd9\xdb\xd3\xf3\xa7\xe3\x0f\x7f\x7e\x79\xb3\x33\x7e\xfb\x87\x9f\xbe\xbe\xbe\xfe\x97\x7d\xb6\xe7\xf7\x23\x00\xb3\xe7\x05\x79\xfb\xf0\xfd\x5f\xce\xd7\x7f\x3c\x3f\xdb\xf1\xe1\xcf\x3f\x7d\xff\xc7\x1f\x7f\xfe\xfe\x8f\xff\x80\x7f\xc1\x3f\xfc\xab\xbd\x7d\x79\x7a\x79\x3e\xfa\xdf\x87\xa0\xbf\xc1\xff\xf2\xcb\xab\x1d\xf1\x52\xf0\xf3\xc7\x1f\xfe\xba\xf7\x17\x7b\x3f\x62\xa0\xf2\x0f\xff\xfe\xf3\xc7\x1f\x8e\xff\x88\x47\x0c\x47\x2a\x12\xc2\x7f\x5e\x4b\xff\xed\x2f\x2f\xcb\x2e\x0b\x6e\x89\xe7\x99\x2f\xcb\xbe\xbc\x9e\xd3\xde\xce\xe7\x4f\x76\x3b\x8e\x7b\x08\x8f\xe3\x38\xee\x2d\x3c\xfc\xbf\xbe\x8b\xdf\xc5\xc7\x71\xff\xd3\x8f\x7f\xfa\xf1\xe1\x66\xff\xcd\xfa\x5b\xa4\x9a\xe7\x97\xf7\x65\x9b\x18\x34\xdc\xe3\x7e\x1c\x2d\x74\xf1\x4d\xff\xf3\x5f\x6f\x6e\x26\x3f\xfd\xb4\xae\x0d\xc9\x37\x54\xbb\x36\xdc\xcf\x78\xfa\x37\xcf\xb8\xed\x71\xc4\x10\x6f\xf7\x33\x11\x49\x56\x1e\x47\xec\xe5\x76\x3f\x33\x91\xec\x6b\x92\xfa\x2e\x21\x22\x2b\x3f\x8e\x5c\x9a\x23\xab\x00\xf1\x35\x12\xfa\xed\x7e\x16\xae\x29\xe7\xf9\x38\xa4\xb8\xe6\x32\x02\x90\xd1\x1f\x87\x28\x90\xc9\x35\xab\x3d\x0e\xa9\x40\x8c\xc8\x76\x04\x5f\x57\xea\x51\x93\xc7\x51\xa2\x6b\xae\x44\xaa\xed\xc7\x51\x5a\xbd\xdd\xcf\x46\xa4\x9d\xf2\x38\x54\x15\x88\x12\xd1\xc7\xa1\x35\x00\x69\x44\xb6\x23\xfe\xad\x36\xb8\xcb\x6d\xd6\xea\x9a\x3b\xf5\x74\x47\x6a\x71\xcd\x27\x91\x73\xe7\xc7\xd1\x70\x8a\x41\x64\x6c\x7d\x1c\x3d\xbb\x37\x26\x91\xe9\x87\x89\x21\xf9\xc7\xe6\x22\xb4\x01\x95\x7c\xbb\x8f\x80\x55\x23\xd0\xd3\x4d\x6f\xf7\x41\xe7\x0f\x3a\x3f\xb6\x70\xbb\x0f\x7a\x7f\x24\x40\xa9\xca\xed\x3e\xe8\xfe\x01\xf7\xc7\xac\xed\x76\x1f\xf4\xff\x80\xb7\xa3\x68\xba\xdd\x07\xdd\x3d\x0a\xa0\x52\x5c\x3d\x3d\x37\x14\x90\x16\x57\x4f\xd7\x8d\x0a\xa8\x8a\xab\xa7\xef\x06\xbc\x10\x5b\x76\xf5\x74\xc3\x80\x1b\x62\xcf\xae\x9e\x7e\x18\x27\x62\x20\x24\x57\x4f\x47\x8c\x01\x28\xfa\xb1\x07\x3d\x31\x26\xa0\x14\x5d\xfd\x22\xb4\x00\xe5\xe0\xea\x8d\x90\x01\x92\xe0\xea\x37\xa1\x4d\xa8\xeb\xed\x3e\xe9\xaf\x09\x7f\xa5\xd2\xc3\xed\x3e\xe9\xaf\x19\x19\x88\x4d\x6e\xf7\x49\x7f\x4d\xf8\x2b\xd5\xda\x6e\xf7\x49\x7f\x4d\x86\x6b\xab\xe9\x76\x9f\xf4\xd7\x84\xbf\x52\xf7\x00\x99\xf4\xd7\x84\xbf\x72\x50\x57\x4f\x7f\x4d\xf8\x2b\xc7\xe2\xea\xe9\xaf\x09\x7f\xe5\x24\xae\x9e\xfe\x9a\xf0\x57\xce\xe2\xea\xe9\x9c\x09\xe7\x64\xc9\xae\x9e\xce\x99\x63\x6e\xcf\x90\xec\xea\xc7\x0a\x80\x5c\x48\x8c\x58\xb5\xb8\xca\x93\x27\x97\x5a\x01\x29\x21\x7d\x1c\x59\x71\xa0\xb1\x2a\x20\x53\x64\x9b\x7f\x71\xd8\x05\xd5\xc7\x51\x11\x5f\x73\x58\x03\x04\x23\x4a\xf7\x8d\xbc\x8e\x89\xeb\xc8\x9a\xe2\xed\x3e\x79\x1d\x73\x4d\x87\x6a\x2c\x0e\xb9\x8d\x97\xc8\x02\x4f\x2c\x9a\xba\x5c\x7d\xae\x8a\x8d\x54\x0f\x51\x7b\xc0\x2a\xeb\x80\xa0\xbe\x36\xd7\xc5\xab\x9d\x76\xce\xc7\x91\x5b\xa8\x80\x16\xa1\x05\x28\x01\x32\x40\xd8\xd8\x3c\xa7\x27\x03\x60\xee\x7d\x3e\x8e\x4c\xf5\x7b\x0f\x42\x03\x50\x02\x34\x09\xf9\xc6\xee\x31\xb1\x18\x26\x14\xb9\xf7\x0c\x28\x11\x4a\x0e\x89\x02\xca\x80\x46\xc5\x2a\x71\x68\x34\x42\xed\xb7\x55\x5e\x99\xee\x2b\xb8\x27\x24\xb8\x73\x56\x80\x27\x28\x72\xf5\xf0\x5d\x61\xf1\x8b\x6b\xfa\xaa\x4c\x68\x11\x5a\x7e\xb5\x39\x02\x32\x40\x2c\x88\x9e\x7c\x8b\xe1\xbb\xa2\x57\x4d\x09\xcd\x4d\x8d\x4b\x08\xc9\xe3\x90\xec\xe9\xbe\x22\x2a\x29\x85\x44\x4f\xe4\x15\x11\x13\x2b\x7a\x1c\x48\xcc\x5c\xd5\x08\x35\x6c\x2c\x80\x3a\xa1\x13\xab\xb8\x71\x00\xb2\x80\x55\x80\x8c\x46\xb8\x90\x08\xeb\xa3\x25\x42\xc9\xeb\x69\x80\xa9\x96\x09\xb9\x11\xd9\x43\x6e\x45\xa3\x11\x2e\x24\x37\xea\xaa\x84\x68\x57\x07\x44\xbb\x6c\x60\x55\x05\x34\x09\xb9\xbf\xa2\x50\xfd\x22\xe4\xfe\xca\x3d\x02\x32\x42\x86\x55\x84\x36\xa0\x0d\xeb\x71\x69\x71\xd3\xfa\x0d\xeb\x05\x76\x6d\x5a\xef\x42\x72\x87\x5d\x9b\xd6\x6f\xb8\x50\xe0\xe8\x4d\xeb\x37\xac\xef\x30\x75\xd3\xfa\xdd\xb1\x8a\x1b\x4f\x42\xee\x42\x09\xdc\x48\x17\xba\x90\x28\xdc\xc8\x03\xed\x85\x55\x8a\x66\xfd\x6b\x87\xfd\xff\x9a\xee\x42\xc5\xba\x84\xa0\x3d\x2e\x16\x2e\x0a\x89\x88\x8f\xc4\xb8\x4d\x1e\xab\x22\x91\x90\x10\x52\xac\x8a\x80\x2a\x21\xd8\x18\x13\xa0\x41\x68\x00\xa2\xfa\x49\x08\x4e\xf7\x5a\xb6\x12\x12\x91\x42\x24\x51\x3d\xec\x4a\x83\x46\x78\x14\xa5\x41\x23\x5c\x88\x24\x6c\x1c\x99\x10\xa2\xbb\x40\xfd\xb8\x36\x1a\x9a\x3b\xec\x1a\xb8\xad\x34\xa1\xab\x42\xfd\xa4\xae\x99\xb1\x2a\x03\xe2\x81\x5c\x48\x89\x15\x50\x21\x84\xdb\xaa\x5c\xa5\x84\xc8\x1d\x1a\x20\x9e\xd1\x85\x14\xda\x35\x79\xc6\x89\x33\x56\x42\x3c\xe3\x84\x5d\x09\x07\x9a\xb4\x0b\x29\x56\x12\x74\x31\xc5\x12\xf2\xa9\x64\xac\x62\x3e\x41\x48\xac\x84\x3a\x21\x18\x81\x88\x4c\xcc\xa7\xc4\x3c\x47\x3e\x25\xe6\x79\x5a\x1b\xab\xb0\xd1\x50\x33\x20\x24\x56\xf8\x8b\x59\x07\x21\x45\x70\x6c\x66\x1d\x84\x14\x06\x00\xb3\x0e\x42\xc0\x07\x56\x32\xfa\xcb\x60\xbd\xe2\x8c\x46\xeb\x3d\xd3\xa4\x28\x8c\x30\x9a\x6a\x30\xb5\xc2\x54\xa3\xa9\x48\xc4\x42\x53\x99\x88\xc9\xd3\x4a\x62\xc3\xaa\x4d\x53\x3d\x61\x44\x03\xd4\x6f\x7e\x11\xc9\xa3\x8c\x55\x26\x0f\x84\xc4\x86\x33\x32\x79\x12\x78\x9a\x32\x00\x36\x8d\x40\x90\x47\x14\x08\xb6\xe2\x95\x09\x75\x8f\x55\xb6\xe2\x25\xa8\x2c\x09\xab\x84\x95\x45\x58\x59\x70\xdb\xc2\xca\x22\xc8\xba\x8c\xc0\x14\x66\x1d\xc4\x55\xde\x64\x2f\x42\xf6\xad\xbc\xb1\xad\xaf\x72\xb2\xa0\x36\x40\x85\x50\xf9\x56\xde\x0a\xd8\xe1\x22\x37\x65\x79\x2b\xcc\x21\x88\xab\x96\x15\xe6\x50\x41\xc2\xb0\x96\x15\x26\x0c\xc4\x75\xa0\x72\x22\xbe\x0a\x8d\x68\xbe\x91\x44\x62\xa9\x77\x1b\x11\x05\xc4\x6e\x03\x21\x51\x2b\x20\xf8\x4b\x11\xbe\x02\x5d\xca\xf0\x85\x90\x58\x09\xe1\x8b\x20\x25\x52\x90\xee\x24\x25\xab\x32\x3b\xbc\x3b\xaf\xca\xec\x80\x28\xa5\x60\x15\xb3\xa3\x1a\xaf\xd6\xd3\xaa\x32\x98\x20\x94\xb9\x5d\x19\x4c\x20\x38\xa2\xc9\xed\x22\xc1\x59\x8d\x90\x73\x8b\x45\x42\xb8\x40\x08\xa5\x22\x7c\xc9\x79\x16\x38\x8f\x34\x64\x07\x39\xcf\x1a\xc8\xed\x8e\xb4\x1a\xcc\x6d\x88\xc2\xfa\x35\x98\xdb\x03\x76\x75\xc4\xea\xa0\x5d\x10\xd2\x53\x02\xc4\x8d\xae\xbe\x04\x1f\x4c\x16\xd9\xcc\x9a\x7e\xb5\x25\xc0\xd4\xc9\xab\x85\xa8\xac\x13\x93\x57\x3b\xb9\x11\xad\x98\x9c\x67\x2d\x6c\x04\x51\x5d\x8b\x1b\x21\x4a\x40\x8a\x2e\x6e\x5c\x8b\xab\xdc\x39\x8b\x75\x02\xa2\x44\xa4\xc2\x62\x2b\x5e\x9e\x30\x25\xc2\xfa\xc5\x84\x81\xa8\xea\x9c\x67\xad\xcd\x8d\x30\x22\xc1\x7a\x32\xa3\x65\x1e\xd1\x25\x21\x61\x8c\x11\x0d\x51\x8a\xd3\xd9\x65\x8c\x68\x88\x92\x9d\xf3\x2c\x63\xef\x80\x28\x19\x91\x43\xb2\xb4\xb6\xd7\xe8\x92\x71\xb5\x9b\x35\x1a\xa2\x92\x5b\xec\x01\xbb\xb6\x97\xa1\x92\x9d\xfd\xad\xcd\x32\x04\x51\xb2\xcf\x0d\x6b\xb3\x0c\x6d\x4f\xb8\x92\x51\x4d\x36\x7b\x38\x44\x11\xa4\xfb\x66\x81\xd9\x34\xc2\x03\xd3\x48\xbc\x2c\x6c\xa8\xf7\xee\x6c\x61\x5f\x50\x7c\x1c\x8a\x4b\xb3\x80\xee\x6c\xa0\x41\x45\xbc\x46\x1b\x69\x90\x45\xcf\xae\x22\x9e\x56\x16\xd1\x9a\x28\x0a\x28\xa8\x45\x64\x9a\x81\x35\x14\xf1\x86\x6d\x64\x0d\x14\x25\x47\x6c\x34\xae\x82\xfa\xa2\xe9\x77\x5b\xb1\xb1\xef\x5a\xe2\x0e\xbf\x79\x63\x95\xb2\xec\x17\x58\xd4\x1b\x90\x65\x5c\x20\x45\x0d\x01\xab\x50\x04\x0d\xb5\xac\x60\x38\x34\xd6\x32\x8a\x9a\xbd\xe5\x99\xa0\x87\x9b\xf8\xb0\x59\xaa\xbb\xd3\xe4\xec\x84\x3a\xd4\x37\x40\x27\x20\xea\xc2\x17\x59\xb8\x0c\xc5\xa6\x34\x9f\xa9\x8d\xc5\x86\xa2\x34\xf8\x8e\xc5\xc6\x30\x49\x97\xe6\xe1\x67\x65\x70\xe3\xd5\xb0\x0b\xa0\x4c\xa8\x61\x15\xd4\xa3\xd8\x50\x88\x78\xf2\x58\x19\x27\xa1\x13\xab\x3a\xa0\x41\x08\x25\x29\x11\x82\xd3\x8b\xf7\xf0\xd2\xbc\x27\x59\x41\x0f\xa7\x10\xc9\x30\x02\x79\x6e\x65\xc2\x7a\xdc\x69\x99\xb4\x1e\xad\x58\x32\xec\x9a\xb4\x7e\x62\x70\x77\xaa\x66\x05\xfc\x9a\x42\x30\x3a\x59\x59\x3c\x90\x8b\xd2\x3a\x74\xad\x44\x08\x67\xcc\x84\x78\x46\xe4\x66\xeb\xf0\x17\x72\x93\x42\x24\xc3\x7a\x8c\x4e\x56\xbc\x35\x95\x8e\x88\x2c\x9b\xc7\x46\x6b\x11\xa7\x90\x56\x90\x88\x14\x24\x38\x56\x36\x8f\x8d\x44\xec\xb4\x6b\xf3\x40\x24\x71\x3e\x3b\x1b\x0b\x3d\x85\x88\xd7\x45\x53\x06\x80\x3a\x89\x2b\x3d\x13\x12\x42\xf0\x97\x53\x48\x53\xd4\x1f\x53\xaf\x39\xa5\x67\x42\x95\x10\x9a\x86\xf3\x01\x53\x3c\x59\x98\x22\x53\xba\xd7\x58\x53\x66\x8a\x92\xc4\x79\x71\x36\x65\x98\x40\x14\x0c\x32\xa6\x0c\x13\x05\xaf\x13\x6f\x9f\xa6\x83\x76\xa1\x66\x74\x9a\xca\x30\x81\x10\x41\xc8\xe9\xa0\xa9\x03\x76\x09\x21\xda\x85\xce\x25\x70\x0e\x3b\x97\xa9\x47\x4b\xe9\x05\x76\x8d\x49\x08\x91\xa3\xb0\x8b\x91\xa3\x88\x9c\x5e\xe0\x2f\x46\x0e\x84\x44\xe4\xb9\x32\x72\x20\x4a\x57\xe8\x42\x87\x30\x9d\x6c\x9f\xb0\x7e\xd2\x13\x13\xf7\xe8\x85\xcb\x74\x9e\x84\x30\xee\x5c\x1b\x11\xbe\x8a\xc8\xe9\x8a\x2f\x32\x72\x94\x91\xa3\x38\x10\x23\x47\x11\x39\x68\x40\xa6\x8c\x1c\x65\xe4\x28\xce\xc8\xc8\x51\x27\x84\xa5\x57\xea\xe2\xb1\x17\x72\x08\xe9\xae\x8b\x46\x2c\x78\xa2\xc2\xf7\x8b\x9e\xc0\x78\x18\x69\xea\xa2\x27\x16\x6e\xa8\xd2\x08\xde\x10\x68\xa3\xd0\x08\xd0\x46\x8a\xd2\x91\x69\x6a\x8c\x2f\xd0\x46\x41\xd9\x55\xe3\x81\x0c\x5e\x6d\xdc\x48\xaf\xa2\x7d\xb2\xc6\xaa\xd1\xab\x60\x59\x82\x0a\xa0\xc6\x33\x82\x65\x49\x85\x57\x8d\x67\x44\xed\xef\x8d\xab\xe8\x68\x90\x4b\xe1\x81\x8c\xc7\x36\xf8\xbe\x51\x3d\x8f\x0d\x72\x29\x3c\x90\xf1\xd8\x2e\xf4\x4a\x05\xd6\x6b\x35\x1c\xbb\xf1\x8b\x3c\x36\x28\xa8\xd0\xfa\xcd\x63\x6f\x1e\x1b\x1b\xd9\x47\x20\x44\x1a\x8e\xcd\x3e\x02\x71\x75\x08\xdd\xbc\x47\x94\xed\xde\x60\x04\xcb\x36\x84\x08\x0f\xc4\xb2\xad\xe4\xae\x0c\xcc\xcd\x63\x6f\x8c\xad\xa8\xd1\xba\x79\xec\x8d\xdb\xee\x54\xcf\x63\x63\x3c\x14\x5a\xcf\xd2\x01\x2e\x56\xba\x8f\xad\x46\x2e\x46\x21\x6c\x66\x95\x15\xa0\x82\x5b\x74\x54\xb9\x0a\x6e\x41\x21\x02\x53\x2b\xd3\xbd\x7a\x8a\x6b\x70\x56\x6a\x95\x8d\x02\x42\xc4\x99\xa4\x55\x36\x8a\xca\x61\xef\xfa\xe2\x20\x34\xb0\x31\x01\x9a\x84\xe6\xaf\xe4\xd2\x2a\xeb\x44\x65\x9d\xe8\x19\x90\x11\xda\xd8\x08\x08\x2f\xb2\x14\x22\xe8\xe1\x95\xed\xa4\xfa\x64\xa7\x21\x14\x40\x9b\x10\x2e\xad\x03\x9a\xdc\xe8\x42\x43\x84\xa9\x93\x1b\x5d\xd4\xda\xf2\xef\xb7\xe2\x3a\xe9\x28\x4f\x7d\xc5\xbb\xa9\x55\xa6\x3e\x84\x08\x6a\x7f\x9d\x74\x14\xab\x41\xe7\xa7\x1a\xa1\x13\x1b\x61\x36\x53\xbf\x72\x3c\x44\xa1\x27\x01\xa6\x50\xf0\x45\xab\x93\x5e\x01\xbf\x2e\xf4\x1d\xdb\x14\x84\x86\x84\xab\x61\x9b\xaa\xe8\x49\x85\x8e\x62\x4f\xaa\x5e\x46\x34\xa0\x31\x56\x96\x11\x08\x29\x01\xd7\x8c\xd7\x1c\xab\x0b\xba\xd0\x18\xeb\xba\x74\x61\x3c\x0c\x50\xcf\x3c\x07\x31\xd7\x80\x06\x44\x62\x4e\x21\x05\x74\x83\xc4\x9c\x42\x03\xaa\x7a\x65\x06\x43\x48\x89\xf0\x17\x33\xb8\x7a\x74\x6b\x40\xd6\xd5\x7d\x41\x9e\xd4\x95\x2e\x64\x74\x83\xe4\x6b\x40\x0e\x90\xe4\x5b\x33\x6c\x44\x2d\x6b\xd4\xd5\x38\x57\xa2\xaa\x37\xa6\x7e\xf3\x74\x55\x3c\xdd\x58\x63\xba\x42\x48\x41\x03\x6a\x4c\xd7\xc6\x47\x99\xc6\x55\x89\x90\x62\x63\x05\x44\xf5\xc8\xba\x82\x9e\xd4\x68\x17\x84\x46\x9f\x5a\xac\x31\xeb\x20\x38\xac\x59\x63\xd6\x41\x68\xbc\xbe\x38\x08\xe1\xb6\x8b\x02\x9a\x84\x16\x56\x09\x20\x23\x84\xd1\x09\x8c\x8d\x83\x8c\x75\xfc\x2c\x80\xc7\x35\xeb\x4c\x44\x08\x29\xa8\x2c\x9d\x7d\xb7\x23\xc5\x58\xc2\x3b\x53\x0c\x82\x33\x97\x75\xa6\x58\x9f\x5c\x05\x5d\x0c\x39\x08\x29\x70\x74\x67\xc8\x75\x7a\x02\xd7\xd1\xe9\x09\x88\xca\xc2\xd5\xe9\x09\x0c\x58\x9a\xc0\x07\x38\x60\xd9\x89\x14\x4b\x08\x80\x73\x5e\x90\xf3\xeb\x98\x32\x20\x38\xfa\xc4\x48\x97\x50\x89\x4f\x46\x0e\x84\xe0\x51\xd9\x4e\x46\x0e\x7e\xc5\xd0\x1c\xb1\x11\x53\x0b\x85\xc4\x46\x88\x1b\x61\x6a\x46\xc2\x9c\x34\xf5\xe4\xa5\x81\x23\x9e\x34\xf5\x74\xdf\x6b\x4e\x84\x26\x21\x1c\x1b\x55\xfd\x24\x7f\x82\xd0\x9c\xa9\xde\x08\xe1\x3a\x50\xd5\x39\x31\xda\x38\x61\x57\x16\x40\x42\x08\xa9\xd0\x08\x15\x42\xb0\x0b\x94\x6a\xf0\xd2\x06\x2f\xad\x29\xa0\x46\xa8\x61\x55\x07\xd4\x09\x75\xac\x6a\x80\x4e\x42\x60\x0d\x97\x7a\x04\xd3\x70\x52\xa3\x19\x41\x3e\x48\x8d\xc7\x40\x7c\x75\x42\x93\x90\x57\x13\xbc\x48\xd8\x20\xc1\x81\x90\xd2\x71\x20\xbc\x8b\xd9\xc0\xa5\x65\xc4\xd7\xe0\xa5\x41\x48\x41\x25\x1e\xbc\x34\x08\x29\x28\xa8\x63\x66\x42\x05\x1b\x61\x3d\x6b\xe1\x40\xe1\x2b\x9d\xba\x78\x46\x84\x1c\xe6\x37\x1b\x0c\xb9\xc1\x90\xeb\xdc\x48\xbb\x50\xd2\x30\xd2\xd9\x60\x49\xc3\xef\x0d\xa2\x48\xab\x41\x66\x04\xc1\x27\x03\x1b\x2c\x69\xf8\xbd\x41\xf1\x4b\x93\x8d\xc5\x2f\xe2\x5d\x0c\xaf\x08\x36\x48\x83\x30\x9a\x6b\x06\xb7\xe0\x68\x6e\x98\xc3\x55\x7c\xb8\x35\xce\xe1\x14\xa2\x51\x00\x55\x42\x15\x90\x02\x6a\x84\x3a\x36\x12\x3a\x09\x9d\x58\xd5\x00\x0d\x42\x86\x55\x84\x36\xa1\x0d\x72\xe9\x07\x9a\x6c\x66\x13\xa4\x57\x13\xa1\x44\x28\xe1\xb6\x2b\xa0\x4c\x88\x6f\x20\x09\x50\x21\x84\x17\x2f\x4c\x50\x73\xd0\x7a\xe7\xbe\x7c\x29\xb1\x39\x68\x2a\x78\x30\x5e\x4a\x6c\x92\x07\x43\xa8\x24\x58\xcf\xc8\x81\x10\x45\x76\x4c\x0e\x55\xd3\xdb\xa7\x72\xf4\x9a\x6c\x9f\xf8\xc5\x50\x34\xc3\x08\xc6\xc4\x9c\xb0\xeb\x82\x68\x17\x1e\x46\x15\xd9\x31\x19\x13\x10\xa2\x18\x4b\x26\xfb\xe3\xf4\xd0\x50\xce\x59\x73\xd2\x2e\x52\xe3\xd6\xfe\x77\x2b\xd6\xfa\x7f\x3a\xf1\x64\xf7\x9c\x8b\x1f\x87\x89\x8b\x1f\x5f\xfc\x38\x7c\x4e\x96\x3c\xd7\x6f\x14\x6f\x92\xd9\xce\x85\xb7\x22\xe4\xce\x64\xc7\x9b\xde\xe5\x54\x50\x88\x27\x69\x2c\x84\x28\x3a\xde\x24\x8d\x9d\x68\x82\x82\x44\x99\x6c\x82\x10\xa2\xc2\x8d\x34\x02\x5d\x8a\x13\xca\x64\x97\x9a\xe8\x52\x2a\x38\x2e\xbb\xd4\x44\xdd\x22\x37\x9c\xac\x5b\x93\xcf\x93\x34\x75\x5f\xab\x70\x59\x60\xc9\x93\x9d\x05\x42\x94\x41\xc4\xce\x82\xe7\x23\x25\x4b\xe6\xf3\x91\x2d\x3c\xcb\xe3\x3d\xcc\x16\x8b\xd4\x72\x82\xab\x82\xb2\xb8\xf8\x12\x01\x51\x32\xba\xe7\x22\xd9\xc5\x2b\x90\xb2\x55\xf2\x15\xc8\xcc\xc7\x06\x2d\x18\x34\x0c\x6f\xca\x14\x4a\x0e\x66\x1c\x21\xf0\xe4\xa3\x0c\x35\x3e\xf9\xd8\x26\xe4\x99\xbf\xf9\x00\xb3\x03\x7f\xbe\x76\x17\x6e\x3e\xad\x6c\x3c\x87\x68\xf3\x03\x6d\xbe\x77\xec\x84\xba\xd5\xdd\xab\x1b\x0f\xf9\x97\x28\xd5\x69\xca\xe6\x7b\xfe\xc6\x13\xae\x76\x1f\x34\x76\x82\x73\x28\x4a\xad\x58\x05\xe7\x6c\xbc\x9d\xd4\xe0\x31\xba\xf9\x76\xb2\xb3\xe7\x5e\x0d\x1e\x90\x3b\x8f\x0b\x02\x1d\x70\xce\xba\x33\xf2\x70\x67\x6e\xf4\x5a\xb3\xf9\x76\xb2\xc5\xeb\x43\x8d\x9e\x28\x5b\x50\x1f\x28\x54\xbc\x36\x6f\xbc\xa3\xdc\xb7\xb8\xa3\x6b\xf4\xe0\xde\x02\x47\x53\xa8\x72\x15\x1c\xbd\xf1\x9c\x52\x93\x73\xd6\xcd\xe7\x94\x5d\x08\x25\x37\x82\xc3\xfa\xc6\xd8\x50\x73\xf4\x55\x98\x1d\x2e\x21\xc9\xef\x71\x73\x84\xa0\xa8\xb9\x37\x40\x4a\x08\xa6\x66\xae\xaa\x84\x0c\xab\x1c\xe2\x24\xb0\xab\x97\x8c\x2a\xa1\x3a\x84\x92\x41\x21\x49\x08\x75\x40\x13\xab\xb2\xdf\x10\xd9\x2c\x85\x24\x2f\xd7\xbb\x4e\xae\xf2\xda\x5c\xc5\x83\x7c\x93\x6e\x52\x08\xba\xd4\x26\xdd\xdc\xa0\x75\x15\x53\xfe\x26\xad\xdb\xcd\xe3\xab\x0a\xac\x6f\x88\x2f\x8a\x5a\x70\xb5\x0d\xf1\xb5\x41\xeb\x2a\xe8\xd3\x26\xad\xa3\x28\xa1\x61\xe3\xa6\xae\xeb\x8f\x21\x7c\x15\xe9\xd3\xbe\xfe\x3e\xc2\xfb\xe2\x26\x4d\xa1\xa8\xd5\xa9\xeb\x3e\x31\x00\x51\xe4\xe2\x59\xbb\x4f\xfc\xfe\xba\xc1\x49\x2a\x2f\x8d\x9c\x84\x22\x23\xdd\xf7\x89\xdc\xde\x60\x08\xb5\x7a\x0e\x6d\x32\x84\x3d\x08\x79\x3e\x6e\x36\x9b\x8d\xd6\x51\x9b\xe7\xd0\x46\xff\xb8\x44\x6e\x91\xab\x10\xbe\x48\xe4\xda\x9c\x05\x6d\x26\xf2\x46\x3e\xd6\xfe\x37\x8f\x85\xfe\xff\x3f\x9f\xaf\xb7\x6f\x7f\x25\x34\xbf\xbe\xbd\xd9\xf3\x3b\xfe\x26\x09\x7f\x0b\x74\x2c\xdb\x4f\xcf\xf6\xed\xef\x9b\x5e\x5f\x5e\x7d\x17\xfe\xf7\xdf\x01\x00\x00\xff\xff\x47\xc0\xc3\x30\x0b\x25\x00\x00"); -func _gbcf ()([]byte ,error ){return _dc (_fcc ,"Adobe-Japan1-4")};func _eaeab ()(*asset ,error ){_adbb ,_afcd :=_bged ();if _afcd !=nil {return nil ,_afcd ;};_gdaa :=bindataFileInfo {_ag :"KSCms-UHC-H",_bc :13690,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492561,0)}; -_dbef :=&asset {_cd :_adbb ,_dce :_gdaa };return _dbef ,nil ;};func _ccff ()(*asset ,error ){_edac ,_gebe :=_ceffg ();if _gebe !=nil {return nil ,_gebe ;};_ffcb :=bindataFileInfo {_ag :"UniGB-UTF16-V",_bc :723,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492760,0)}; -_cfccd :=&asset {_cd :_edac ,_dce :_ffcb };return _cfccd ,nil ;};func _cee ()(*asset ,error ){_bgcb ,_bcb :=_abe ();if _bcb !=nil {return nil ,_bcb ;};_dfe :=bindataFileInfo {_ag :"Adobe-GB1-5",_bc :2811,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491284,0)}; -_gee :=&asset {_cd :_bgcb ,_dce :_dfe };return _gee ,nil ;};func _ebc ()([]byte ,error ){return _dc (_ebb ,"Add-V")};func _fbbg ()([]byte ,error ){return _dc (_dfea ,"UniCNS-UTF8-H")};var _geee =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\x41\x6b\xdb\x4c\x10\x06\xe0\xbb\x7e\xc5\x1e\xf3\x1d\xbe\x7a\x57\xab\xd1\x4a\x10\x0c\x8d\x0d\xa9\x09\x69\x4b\xdd\xa6\x85\xd2\x83\xa4\x1d\x19\x41\x2d\x09\x59\x3e\xf8\xdf\x97\x99\x77\xeb\x1e\xc2\x24\x0f\x3b\x3b\xf3\x2a\x48\x9b\xdd\x61\x7f\x18\x87\xd5\x6c\x3e\x2f\x53\x77\xe4\xd5\xf4\xc3\x18\x17\xbe\x4c\xd7\xa5\x63\xd3\xf2\x69\x18\xb3\xcc\xe5\x26\x0e\xdd\xfa\xf7\x4f\x2d\xdd\xb9\x99\xb3\x6c\xf3\xfc\xf4\x92\xbf\xfc\xff\xc1\x5c\x2f\x9c\x64\x77\xd8\x1f\x6f\x97\x95\xcf\x87\xb1\x9f\x8c\x47\x67\xbc\xce\xa9\xdb\x98\xcd\x17\x3e\x0d\x97\x75\xb9\x99\x87\xf7\x71\x6a\xf9\x3f\x13\xb9\x17\xff\xb4\x44\x5e\x86\xf1\x64\x1e\x9e\x9f\xdc\x5d\x8f\xd7\x79\xfe\xcd\x67\x1e\x57\x43\x6a\x3c\x46\xad\xd9\x66\xf7\xda\xcc\x1f\x9b\x33\x9b\xb4\xc6\x9b\xba\xf2\x1b\x2f\x97\x61\x1a\x8d\x7b\x67\x6d\xf9\x8f\xbf\xde\x66\x36\x2e\xb5\xff\xf8\x76\xd8\x9b\x9f\xce\x38\x6b\x72\x2a\xad\xfd\x95\xfc\xfb\xeb\x14\xef\xa7\x0a\x87\xc5\xbb\x21\x2e\xcd\x78\xe2\xec\xb1\x71\x4d\xbe\x35\xa9\x50\x20\x15\x0f\xf1\x22\x85\x4a\x03\x69\xb6\x86\xea\x4a\xa5\x85\x74\x5b\x13\x82\xc5\xa1\x08\x8a\x72\xa8\x16\x69\x71\x75\xdb\x6f\x0d\x55\xb9\x48\xcf\x2a\x52\x42\xb0\x65\xf6\xd8\xf8\xc6\x09\x69\xa1\x50\xa9\x54\x90\x5a\xda\xac\x4a\x07\xe9\xe4\x8c\x57\x61\x08\x2e\x0a\x42\xad\x2e\xe9\xdb\x56\x0e\xe9\xd5\x6d\x84\x44\x3d\xa4\x77\xcb\x2e\xa9\x50\x90\x25\x7d\xd4\x24\x5a\x42\xb0\x20\xf4\x45\xed\x73\xba\x41\x44\x9f\x94\xd2\xaa\xf4\xe8\x93\x42\xb5\x8e\xeb\xd1\xd6\xeb\x03\xd0\x95\x10\xd7\x23\xae\x73\xd9\x63\x53\x20\xae\x96\x3c\xf7\x54\xab\x79\x98\x57\x2b\x71\x8e\x60\xa4\x16\xac\x5a\x80\x05\x9c\x83\xd5\xb0\x1a\x26\x21\x8b\x0e\xf7\x75\xe9\x3e\x9d\xc1\x30\x86\x85\x5c\x0d\x33\x38\xcd\x28\xd4\x30\x83\x31\x43\x1f\x76\xc1\x0c\x63\x98\xec\x47\xc8\x41\x29\x87\x3e\x6f\x42\x0e\x4a\x39\xf4\x9f\x49\xc8\x41\x29\x47\x45\x6a\x01\x96\x66\x04\xb5\x1a\x86\x1c\x95\xcc\x25\xe4\xa0\x94\xa3\x92\xfd\x08\x39\x28\xe5\xa8\xb4\x17\x39\x28\xe5\xa8\x6a\x35\xcc\x48\x39\x2a\xdd\x05\x39\x28\xe5\xa8\x64\xe7\xba\xb4\x62\x5a\xf2\xdc\xd7\x85\xbc\x91\xf7\xd7\x43\x7e\x97\x0f\xc1\xfd\xdd\xec\xae\xcb\xc2\xe3\xaa\x9f\x01\x7d\x07\xe5\xbd\x1a\x46\xbe\x7f\x64\xe6\x69\x96\x2e\xfd\xf9\x13\x00\x00\xff\xff\xa0\x8a\xa9\xe1\x90\x04\x00\x00"); -var _gbf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\xcb\x6b\xe3\x56\x18\x05\xf0\xbd\xfe\x0a\x2d\xa7\x8b\x69\xee\xf7\xb8\x0f\x81\x18\xe8\x24\xcc\x90\xc5\xb4\xa5\xe9\x0b\x4a\x17\x8e\x75\x1d\x0c\x8d\x6c\x1c\x67\x91\xff\xbe\x9c\xef\xd8\x29\x74\x11\x1c\x9d\x48\x9f\x94\xdf\xc9\xd5\xcd\xcd\xed\xfd\xdd\xfd\xba\x3f\x8f\x37\x3f\x9f\x0e\xdb\x87\x7e\x1e\x77\xfb\x75\x39\xf5\x97\xc3\xeb\x69\xdb\xc7\xc7\xfe\xb4\x5f\x87\x41\x74\x5c\xf6\xdb\xf3\xf5\x30\x3e\xb6\xcf\x9b\xe3\x30\xe0\xfa\x87\xb7\x97\x73\x7f\xbe\x5f\x77\x87\xd1\x78\xde\xf2\x7a\xbc\x9c\x3b\x8e\x37\xbf\xf4\xa7\xfd\xcb\xf9\xf4\x36\x7e\xf8\x61\x39\x3c\xf6\xef\xc6\xa5\xef\x90\xff\x74\x5a\xfa\x69\xbf\x3e\x8d\x1f\xbe\x7e\x96\xf7\xf4\xe1\xf5\x78\xfc\xa7\x3f\xf7\xf5\x8c\x61\x7d\x37\xf4\x75\x89\xcf\xe1\xe6\xf6\xdb\xe6\xf8\xe3\xe6\xb9\x8f\x37\x31\xe8\xe3\xd7\xcf\xf2\x91\xe7\xc4\x8f\x7e\xef\xa7\x97\xfd\x61\x1d\xe5\xfb\x94\xf2\x7f\xf1\xaf\x6f\xc7\x3e\xca\x65\xc4\x9f\xbf\xdd\xdf\x8d\x7f\xc9\x28\x69\xd4\xec\xb9\xfe\x7d\xc9\xff\xf8\x76\x58\xfa\x98\xae\x37\xba\xbf\xbb\x3d\xbc\xae\xe7\x51\xd5\x32\xef\x30\x08\x7f\xa1\xed\x61\xe9\x2f\xc7\xcd\xb6\x9f\x36\xeb\x53\x1f\xc6\x71\x4e\x29\xa5\x4f\xe3\x9c\xeb\x97\x2f\x9f\xf0\xb0\xff\x3b\x63\x68\xed\x72\xe5\x7e\x61\x72\xbd\x22\xa5\xdd\xee\xd3\x98\x86\x39\x09\x8f\x05\xc7\x9a\xcb\x30\x27\x65\xa2\x48\xb2\xe8\x30\x27\x63\x62\x48\x6a\x69\xc3\x9c\x9c\x89\x23\x91\xa4\x3e\xcc\x29\x33\xca\x11\x69\xc3\xec\xc2\xa8\x44\x94\x0d\xc3\x2b\xa3\x1a\x51\x9d\x30\xbd\x31\x6a\xf1\x04\xc9\x31\x7e\x62\x34\x45\x64\x09\xe3\x37\x8c\x36\x97\xe7\xc4\xf8\x47\x46\x8f\x11\x35\xc1\xf8\x2d\xa3\x2d\x22\x4b\x15\xe3\x17\x46\x4b\x44\xa6\x18\xdf\x19\xf5\x88\x72\xc3\xf8\x1d\xa3\x5d\x44\xcd\xd3\x30\x0b\xa5\x24\xa4\x3c\x4d\x65\x98\x85\x58\x12\x58\x6e\x59\x87\x59\xa8\x25\xa1\xe5\x25\xb5\x61\x16\x72\x49\x70\x79\x2b\x3e\xcc\x42\x2f\xf1\x8b\x29\xc6\xd3\x4b\xc2\x2b\x5b\xc5\x78\x7a\x49\x78\xe5\x62\x18\x4f\x2f\x09\xaf\xdc\x1a\xc6\xd3\x4b\xc2\xab\x88\x63\x3c\xbd\x24\xbc\x8a\x27\x8c\xa7\x97\x84\x57\x29\x28\x56\xe8\x25\xe1\x55\x26\x34\x2b\xf4\x92\xf0\xaa\x82\x6a\x85\x5e\x12\x5e\xd5\x51\xad\xd0\x4b\xfa\xa5\x7f\x8c\xa7\x97\x84\x57\x9d\x50\xad\xd2\x4b\xc3\xab\x09\xaa\x55\x7a\x69\x78\x35\x47\xb5\x4a\x2f\x0d\xaf\x56\x51\xad\xd2\x4b\xc3\xab\x4d\xa8\x56\xe9\xa5\xe1\x35\x29\xaa\x55\x7a\x69\x78\x4d\x8e\x6a\x95\x5e\x1a\x5e\x53\x45\xb5\x4a\x2f\x0d\xaf\x69\x42\xb5\x4a\x2f\x6d\xd7\xbf\x55\xcc\x27\x98\x4e\xcc\x1c\xe5\x2a\xc5\x74\xc3\xac\xa2\x5d\x25\x99\x06\x19\xda\xc7\x2d\x68\xa6\x5b\x66\x8a\x7e\x95\x68\xba\x30\xcb\x28\x58\xa9\xa6\x9d\x59\x45\xc3\x4a\x36\xdd\x71\x91\x24\x54\x6c\x74\xb3\xc4\x4c\xd1\xb1\x11\xce\x84\x59\x46\xc9\x46\x39\xd3\xeb\x02\x4b\xc3\x6c\xa4\xb3\xa0\x13\x4b\xa8\xd9\x68\x67\x5c\x9b\x66\xe8\xd9\x88\x67\x5c\x9c\x96\x51\xb4\x51\xcf\xb8\x3a\xad\xa1\x69\x23\x9f\x71\x79\x7a\x42\xd5\x46\x3f\xa3\x9f\x1b\xba\x36\xfa\x19\xfd\x3c\xa3\x6c\xa3\x9f\xd1\xcf\x1b\xda\x36\xfa\x19\xfd\xb2\xa0\x6e\xa3\x9f\x6d\xaf\x6f\x05\xdc\x83\x7e\x46\xbf\x5c\x50\xb8\xd1\xcf\xe8\x97\x1b\x1a\x37\xfa\x19\xfd\x8a\xa0\x72\xa7\x9f\xd3\xaf\x18\x3a\x77\xfa\x39\xfd\x4a\x41\xe7\x4e\x3f\xa7\x5f\x69\xe8\xdc\xe9\xe7\xf4\xab\x82\xce\x9d\x7e\x4e\xbf\xea\xe8\xdc\xe9\xe7\xf4\xab\x05\x9d\x3b\xfd\xbc\x5c\x5f\x65\xb8\x07\xfd\x9c\x7e\x4d\xd0\xb9\xd3\xcf\xe9\xd7\x1c\x9d\x3b\xfd\x9c\x7e\xad\xa0\x73\xa7\x9f\xd3\xaf\x4d\xe8\xdc\xe9\xe7\xf4\x9b\x14\x9d\x3b\xfd\x9c\x7e\x93\xa3\x73\xa7\x9f\xd3\x6f\xaa\xe8\xdc\xe9\xe7\xf4\x9b\x26\x74\xee\xf4\xf3\x1d\xdf\xb5\x8a\xce\xf3\x65\x0f\x49\xd7\xf7\x6f\x1a\xe6\x4c\xbf\xcc\x5d\x21\x55\x74\x9e\xe9\x97\x95\xd9\x84\xce\x33\xfd\x72\xf8\xa9\x28\x3a\xcf\xf4\xcb\xce\x2c\xa3\xf3\x4c\xbf\x9c\x99\x55\x74\x9e\xe9\x97\xc3\x4f\x35\xa1\xf3\x5c\x2f\xfb\x59\x4e\xc8\xb4\x6a\xec\x6a\xd7\xdd\x0b\xdf\x63\xe7\x7f\xdf\x8c\xb7\xaf\xa7\x53\x5f\xcf\xb1\xef\xc7\x86\x8b\xfd\x72\xbf\xf6\xf7\xff\x21\x8e\x87\x23\xae\x8a\xaf\x7f\x03\x00\x00\xff\xff\x6b\x9d\x07\x71\x6f\x08\x00\x00"); -func _dbab ()([]byte ,error ){return _dc (_caa ,"KSC-V")};func _dfbb ()([]byte ,error ){return _dc (_gfec ,"Adobe-Japan1-2")};var _bdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x8b\x1b\x47\x18\x04\xe0\xfb\xfc\x8a\x39\x3a\x07\x67\xfb\xfd\xec\x1e\x18\x0c\xb1\x8d\xcd\x1e\x9c\x84\x38\x5f\x10\x72\xd0\x6a\x46\x8b\x20\x2b\x09\xad\xf6\xe0\x7f\x1f\xaa\x4b\x72\x88\x0f\x46\x56\x59\x7a\x47\x7e\xaa\x67\xba\xef\xde\xdd\xbf\xbf\x3f\xec\x2f\xe3\xdd\xcf\xe7\xe3\xf6\xf3\x7a\x19\x77\xfb\xc3\x72\x5e\x9f\x8f\x2f\xe7\xed\x3a\x3e\xac\x8f\xfb\xc3\x30\x88\x8e\xcb\x7e\x7b\xb9\xbd\xed\x2f\xdb\xa7\xcd\x69\x18\xf0\xfd\xcf\x5f\x9e\x2f\xeb\xd3\xfd\x61\x77\x1c\x8d\x9f\x5b\x5e\x4e\xd7\xcf\x8e\xe3\xdd\x2f\xeb\xe3\xfe\xf9\x72\xfe\x32\xbe\xfa\x61\x39\x3e\xac\xdf\x8d\xcb\xba\x43\xfe\xd3\x79\x59\xcf\xfb\xc3\xe3\xf8\xea\xe3\x5b\xf9\x9a\x7e\x7e\x39\x9d\xfe\x59\x9f\xd6\xc3\x65\xf4\x9e\xad\x87\xa5\xbf\x0e\x77\xef\x3e\x6d\x4e\x3f\x6e\x9e\xd6\xf1\xae\x0f\x7a\xfd\xf1\xad\xbc\xe6\x67\xfa\x3f\xfd\xbe\x9e\x9f\xf7\xc7\xc3\x28\xdf\x97\x92\xff\xc5\xbf\x7e\x39\xad\xa3\x5c\x47\xfc\xf9\xdb\xfd\xfb\xf1\x2f\x19\xa5\x8c\x1a\x1e\xed\xef\x6b\xfe\xc7\xa7\xe3\xb2\x8e\xe5\x76\xa1\xfb\xf7\xef\x8e\x2f\x87\xcb\xa8\x53\x49\x5e\x61\x10\xfe\x87\xb6\xc7\x65\x7d\x3e\x6d\xb6\xeb\x79\x73\x78\x5c\x87\x71\x9c\x4b\x29\xe5\xcd\x38\x57\xf9\xf0\xe1\x0d\x7e\xec\x37\x9f\x18\xa4\x94\xeb\x57\xf7\x0b\xa3\xdb\x57\x4a\xd9\xed\xde\x8c\x65\x98\x8b\xf0\xbd\xe0\xbd\x46\x0e\x73\x51\x26\x8a\x24\x44\x87\xb9\x18\x13\x43\x52\xb3\x0d\x73\x71\x26\x8e\x44\x8a\xfa\x30\x97\x60\x14\x3d\xd2\x86\xd9\xc9\x28\x7b\x14\x86\xe1\x95\x51\xed\x51\x9d\x30\xbd\x31\x6a\xfd\x17\x14\xc7\xf8\x89\xd1\xd4\x23\x2b\x18\xbf\x61\xb4\xb9\xfe\x4e\x8c\x7f\x60\xf4\xd0\xa3\x26\x18\xbf\x65\xb4\x45\x64\xa5\x62\xfc\xc2\x68\xe9\x91\x29\xc6\xaf\x8c\xd6\x1e\x45\xc3\xf8\x1d\xa3\x5d\x8f\x9a\x97\x61\x16\x4a\x49\x97\xf2\x32\xe5\x30\x0b\xb1\xa4\x63\xb9\x85\x0e\xb3\x50\x4b\xba\x96\x67\x69\xc3\x2c\xe4\x92\xce\xe5\x2d\x7d\x98\x85\x5e\xe2\x57\x53\x8c\xa7\x97\x74\xaf\xb0\x8a\xf1\xf4\x92\xee\x15\x69\x18\x4f\x2f\xe9\x5e\xd1\x1a\xc6\xd3\x4b\xba\x57\x8a\x63\x3c\xbd\xa4\x7b\xa5\x17\x8c\xa7\x97\x74\xaf\x4c\x14\x2b\xf4\x92\xee\x95\x13\x9a\x15\x7a\x49\xf7\xaa\x82\x6a\x85\x5e\xd2\xbd\xaa\xa3\x5a\xa1\x97\xac\xd7\xfe\x31\x9e\x5e\xd2\xbd\xea\x84\x6a\x95\x5e\xda\xbd\x9a\xa0\x5a\xa5\x97\x76\xaf\xe6\xa8\x56\xe9\xa5\xdd\xab\x55\x54\xab\xf4\xd2\xee\xd5\x26\x54\xab\xf4\xd2\xee\x35\x29\xaa\x55\x7a\x69\xf7\x9a\x1c\xd5\x2a\xbd\xb4\x7b\x4d\x15\xd5\x2a\xbd\xb4\x7b\x4d\x13\xaa\x55\x7a\x69\xbb\xad\x55\xcc\x27\x98\x4e\xcc\x1c\xe5\x2a\xc5\x74\xc3\xac\xa2\x5d\x25\x99\x76\x32\xb4\x8f\x4b\xd0\x4c\xb7\xcc\x14\xfd\x2a\xd1\x74\x61\x16\x28\x58\xa9\xa6\x2b\xb3\x8a\x86\x95\x6c\xba\xe3\x4d\x52\x50\xb1\xd1\xcd\x0a\x33\x45\xc7\x46\x38\x13\x66\x81\x92\x8d\x72\xa6\xb7\x1b\xac\x0c\xb3\x91\xce\x3a\x9d\x58\x41\xcd\x46\x3b\xe3\xbd\x69\x86\x9e\x8d\x78\xc6\x9b\xd3\x02\x45\x1b\xf5\x8c\x77\xa7\x35\x34\x6d\xe4\x33\xde\x9e\x5e\x50\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\x0f\x94\x6d\xf4\x33\xfa\x79\x43\xdb\x46\x3f\xa3\x5f\x08\xea\x36\xfa\xd9\xf6\xf6\x54\xc0\x35\xe8\x67\xf4\x8b\x44\xe1\x46\x3f\xa3\x5f\x34\x34\x6e\xf4\x33\xfa\xa5\xa0\x72\xa7\x9f\xd3\x2f\x0d\x9d\x3b\xfd\x9c\x7e\x99\xe8\xdc\xe9\xe7\xf4\xcb\x86\xce\x9d\x7e\x4e\xbf\x2a\xe8\xdc\xe9\xe7\xf4\xab\x8e\xce\x9d\x7e\x4e\xbf\x9a\xe8\xdc\xe9\xe7\x79\x7b\x94\xe1\x1a\xf4\x73\xfa\x35\x41\xe7\x4e\x3f\xa7\x5f\x73\x74\xee\xf4\x73\xfa\xb5\x44\xe7\x4e\x3f\xa7\x5f\x9b\xd0\xb9\xd3\xcf\xe9\x37\x29\x3a\x77\xfa\x39\xfd\x26\x47\xe7\x4e\x3f\xa7\xdf\x54\xd1\xb9\xd3\xcf\xe9\x37\x4d\xe8\xdc\xe9\xe7\x3b\x3e\x6b\x15\x9d\x07\xfd\xa2\xdc\x9e\xbf\x65\x98\x83\x7e\xc1\x5d\xa1\x54\x74\x1e\xf4\x0b\x65\x36\xa1\xf3\xa0\x5f\x74\x3f\x15\x45\xe7\x41\xbf\x70\x66\x81\xce\x83\x7e\x11\xcc\x2a\x3a\x0f\xfa\x45\xf7\x53\x2d\xe8\x3c\xe8\x17\x95\x99\xa2\xf3\xa0\x5f\x70\x7f\xd0\x40\xe7\x41\xbf\xe0\x06\xa1\x15\x9d\x07\xfd\x62\x73\xdb\x34\x70\x0d\xfa\x05\xb7\x08\x53\x74\x1e\xf4\x8b\x2d\xb3\x40\xe7\x41\xbf\x58\x98\x35\x74\x1e\xf4\x8b\xee\xa7\x5e\xd0\x79\xd0\x2f\xe8\xe7\x86\xce\x93\x7e\x49\x3f\x0f\x74\x9e\xf4\x4b\xfa\x79\x43\xe7\x49\xbf\xa4\x5f\x14\x74\x9e\xf4\x4b\xfa\x85\xb9\xf7\x6d\xfc\xb6\x5b\x0f\xe2\xdf\xee\xdf\x49\xdd\xf4\xdb\x3e\x88\x5f\x40\xdd\xa4\x6e\x34\xac\x88\xa4\x6e\x52\x37\x05\x2b\x22\xa9\x9b\xd4\x4d\xc3\x8a\x48\xea\x26\x75\x33\xb1\x22\x92\xba\x49\xdd\x6c\x58\x11\x49\xdd\xa4\x6e\x15\xac\x88\xa4\x6e\x52\xb7\x1a\x56\x44\x52\x37\xa9\x5b\x13\x2b\x22\xa9\x9b\xd4\xad\x13\x56\x44\x52\x37\xd7\xdb\xe6\x8d\x6b\x50\x37\xa9\xdb\x1c\x2b\xa2\x5e\x8f\x38\xd4\x6d\x89\x15\x51\xe5\x7a\xec\x69\x15\xd9\xa4\xed\x7f\x6a\xf8\x7b\x3f\x20\x7e\x3d\xb4\x6d\x5f\xce\xe7\xf5\x70\xe9\xe7\xc3\x7e\x30\xc3\xb9\x6a\x7f\x58\xbf\x9e\x35\x4f\xc7\x13\xbe\xd6\xff\xfc\x1b\x00\x00\xff\xff\x7b\xfe\x2b\xdd\x97\x0a\x00\x00"); -func _gbga ()(*asset ,error ){_abef ,_fega :=_aedda ();if _fega !=nil {return nil ,_fega ;};_bbac :=bindataFileInfo {_ag :"NWP-H",_bc :15060,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492613,0)};_gbgc :=&asset {_cd :_abef ,_dce :_bbac };return _gbgc ,nil ; -};func _fgc ()([]byte ,error ){return _dc (_dgcc ,"Adobe-CNS1-UCS2")};var _dfbbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\x39\x6e\x0f\x5b\x4b\x56\xe4\xd8\x50\x16\x4a\x42\xa9\x59\xb6\x2d\xcd\x66\x5b\x28\x3d\x38\xd6\x38\x15\xd4\xb2\x90\xed\x43\xde\xbe\x68\x6c\x4d\xe8\xc1\x48\xdf\xfc\x1e\x69\xfe\xd1\xe4\x87\xe6\xd8\x38\x3b\x43\xfe\x2d\x8c\xdd\x09\x67\xe8\xad\x33\x01\xa7\x71\x09\x1d\xc2\x05\xaf\xd6\x65\x99\x2c\xc0\xd8\x6e\x4e\x48\x4b\x37\xb4\x3e\xcb\xf2\xb3\xb3\xcf\xa7\xc7\xf3\xeb\x27\x55\x3c\x7e\x86\x65\xc2\x2d\x7e\x68\x8e\xa7\xdb\x34\xe3\xd0\xb8\x7e\x04\xb5\xe6\x9b\xc5\x6f\x67\x00\xe4\xdf\xf1\x6a\xa7\x39\xdc\xe0\xe1\xa3\x19\x2f\xf8\x0e\x0c\xf6\x31\xfe\x35\x18\x0c\xd6\x5d\xe1\xe1\x79\x0c\xd8\x4a\x16\x4e\x8b\xf7\x7f\x71\x40\x37\x83\xa4\x18\x3a\x43\x6b\x96\x1f\x5e\x5a\xff\xa5\x1d\x10\xfe\xab\xe7\x8d\x54\x12\xdf\x30\x4c\x76\x74\x20\xdf\x0b\xa1\xef\xe1\xd7\x9b\xc7\xed\xb0\x2c\xff\x79\x6e\x8e\xf0\x4b\x82\x14\x50\x68\xbd\x53\xbf\xb7\xf8\x8f\x97\xd1\xf0\x5f\x52\xae\x0e\x3a\x6b\xba\x3f\x6d\xc8\x3e\x08\x21\x44\x21\x64\xf9\x04\x95\x28\x65\xe2\x42\x47\xd6\xd5\xca\x4a\x48\x15\x79\xaf\x57\xee\x7b\x21\x89\x4b\xe6\x8e\xb8\x66\xc6\xc8\x95\x48\xac\x2e\xc4\x7b\x66\x43\x5c\x31\xf7\xc4\x9c\xaf\x29\xbf\x2c\x12\x23\xdd\x5f\xab\xd8\xb3\x54\x7a\xb6\x67\x2b\xa1\x75\x57\x64\x2f\xea\x09\xd2\x76\x47\x36\xea\x64\x23\x96\x9d\xb6\x05\x49\x25\x4b\x15\x4b\x92\xcc\x95\x9a\xcd\xef\xee\x12\xf5\xa5\x54\xec\x33\x65\xf5\xbd\xa8\xa9\x05\x6c\x51\xb6\x2c\xc9\xd5\x9d\x64\x77\x17\x96\x34\x35\xa2\x16\x9b\xb1\xd5\x08\x41\x9c\x43\x9e\x8b\x6e\x09\x01\xdd\x4c\x53\x48\x2f\x1f\x5f\xd3\x3a\xe4\x49\xf7\xa3\x8f\x59\xf4\xfd\x0b\x00\x00\xff\xff\x9c\x40\xf9\x5e\x15\x03\x00\x00"); -var _cdgbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x6b\xf3\x30\x0c\x86\xef\xf9\x15\x3a\xf6\x3b\xf4\x8b\xed\x26\xb4\x85\x12\x18\xe9\xa1\x29\x74\x1b\xcb\xba\x0e\xc6\x0e\xa9\xad\x06\xc3\x22\x1b\xc7\x39\xf4\xdf\x0f\x3b\x59\xc6\x0e\x46\xd6\x23\x4b\xbc\xaf\x9c\x96\xd5\xbe\x22\xed\x21\x7d\x76\x46\xd6\xe8\xe1\xa6\x49\x39\xec\xcd\xe0\x24\xc2\x15\x5b\x4d\x49\xc2\x05\x28\x2d\xfd\x4f\x1a\x83\xec\x1a\x9b\x24\xe9\x99\xf4\xb1\xaa\x97\xe7\xb2\x16\xcb\x03\x0c\x3d\x4e\xbc\xac\xf6\xf5\xbd\xf7\xd8\x55\x74\x33\xb0\x1a\xfb\xd5\x60\xa7\x19\x00\xe9\x0b\xb6\xba\xf7\xee\x0e\x8b\x07\x65\xae\xf8\x0f\x14\xde\x02\x7f\x72\x0a\x9d\xa6\x16\x16\xc7\xc6\x36\xc4\xe7\x42\x3d\x58\xfb\x85\x1d\x92\x87\x2c\x32\x24\x15\x63\x92\x96\xa7\xc6\x3e\x36\x1d\xc2\x5f\x3d\x97\xe5\x21\x3e\x88\xf5\x37\x74\xbd\x36\x04\x5c\xfc\x67\x2c\xff\xe5\xaf\x77\x8b\xc0\xa7\x41\xef\xe7\x6a\x0f\x1f\x1c\x38\x03\x91\x67\xd9\xe6\x73\xe2\x97\x93\x51\x08\x6c\xcc\xb2\xd1\x84\xd4\xca\x35\xd4\x62\xb2\x63\x4c\xb0\x02\x76\x8c\xe5\xd7\x02\xc4\x8a\x07\x92\xcb\x91\xc8\x02\x36\x6b\xbe\x8d\x48\x45\xb4\xc6\x02\xc4\x56\x04\xd2\xe4\x91\x84\x20\xb6\x3c\x18\x9a\x87\x86\x7b\x58\xe5\x6c\x4d\x0e\xce\x21\xf9\xb8\xc8\x28\x3c\x88\xd1\x84\xf3\x67\x59\x63\x43\x57\x3c\xdf\x01\x00\x00\xff\xff\x9f\x7a\x2c\x1b\xd8\x01\x00\x00"); -func _dbag ()(*asset ,error ){_ccfg ,_gffg :=_fcgf ();if _gffg !=nil {return nil ,_gffg ;};_aee :=bindataFileInfo {_ag :"HKscs-B5-V",_bc :633,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492464,0)};_eegaa :=&asset {_cd :_ccfg ,_dce :_aee };return _eegaa ,nil ; -};func _cf ()(*asset ,error ){_ceb ,_ee :=_egg ();if _ee !=nil {return nil ,_ee ;};_fd :=bindataFileInfo {_ag :"78-EUC-V",_bc :900,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490853,0)};_gb :=&asset {_cd :_ceb ,_dce :_fd };return _gb ,nil ;};var _gbdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x41\x8b\xdb\x30\x10\x85\xef\xfe\x15\x73\xdc\x1e\x5a\x4b\x56\x1d\x25\xb0\x2c\x74\x13\xd8\xfa\xb0\xdd\xd2\xec\xa6\x85\xd2\x83\x23\x8d\x83\xa0\x91\x8d\x6c\x1f\xf2\xef\x8b\xde\xb8\xde\x43\x78\xd1\xc7\x7b\xa3\x19\x6b\xca\x7d\x73\x68\x62\x98\xa8\xfc\x9e\x7a\x77\xe4\x89\xba\x10\x7d\xe2\xb1\x9f\x93\x63\x3a\xf3\x25\xc4\xa2\xd0\x15\xf9\xe0\xa6\xff\x47\x88\xbb\xb6\x43\x51\x94\x4f\x8f\xaf\x1f\xbf\xd2\x3c\xf2\x72\xde\x37\x87\xe3\x6d\x9c\xf8\xda\xc4\xae\x27\x23\x39\x3f\x0f\x4b\x96\xa8\xfc\xc1\x97\x30\x4e\xe9\x46\x77\x5f\x7c\x7f\xe6\x0f\xe4\xb9\xcb\xfc\x25\x79\x4e\x21\x5e\xe8\xee\xe9\x51\xaf\xf4\x38\x0f\xc3\x5f\xbe\x72\x9c\x48\x83\x71\xf4\xd0\xa2\xdc\x3f\xb7\xc3\xb7\xf6\xca\x84\x26\x4e\xa0\x80\x27\x4e\x63\xe8\x23\x69\xf5\x49\xa9\xcd\x3b\x7f\xbd\x0d\xbc\x54\x29\xca\xb7\xe6\xf0\xd2\x75\x23\x4f\x64\x95\x12\xcf\xaf\xb7\xe6\x40\xbf\x35\x69\x45\x55\x6d\xac\xf9\xb3\x58\x7f\x3e\xf7\x7e\x0d\x56\x4a\x46\x71\xc1\xa7\x36\x5e\xb8\xb8\xaf\x74\x55\x3d\xd0\x22\x54\xdb\x1a\xc8\x08\x32\x40\x9f\x81\x5a\x41\x6d\x46\xbb\x2d\xd0\x59\x90\x7b\x20\x6b\x95\xb8\xbc\x20\x0f\xd7\x2e\x23\x23\xe5\x4d\x97\xd1\xb6\xca\xc8\x32\x50\x16\x6b\xd5\xa6\xb8\xaf\x4c\xa5\x33\x82\x50\x6d\xb7\x40\x5b\x41\x3b\x04\x15\x90\x13\xe4\xe0\x32\x40\x2c\x48\x6a\xd9\x8c\x0c\x5a\x35\xe6\x0c\x17\xca\x1b\x2f\xc8\xc3\x85\xf2\xb9\xa1\x45\xa8\xb6\xb9\x55\x53\x63\x20\x88\xb5\x4a\x90\x04\x6b\x04\x35\x9a\xa8\x25\x98\x85\x36\x0a\xc8\x4a\xd0\xe2\xc6\x1d\x6e\xb4\x12\xb4\xf2\x25\xd0\x97\x8c\x6d\x64\x6c\xad\xf3\x32\xac\xef\x90\xff\xe7\x1d\x5c\xd7\xc2\xcd\x29\x71\x9c\xb0\x81\x78\xff\xfc\x80\x21\xf2\xba\xdd\x43\x3f\xe4\x14\x7e\xff\x02\x00\x00\xff\xff\x96\x52\x71\xc9\x09\x03\x00\x00"); -func _dac ()([]byte ,error ){return _dc (_abgg ,"GBKp-EUC-V")};func _aeaa ()([]byte ,error ){return _dc (_cagcb ,"HKdlb-B5-V")};func _deeb ()(*asset ,error ){_faeg ,_edga :=_aefc ();if _edga !=nil {return nil ,_edga ;};_ecde :=bindataFileInfo {_ag :"KSC-EUC-V",_bc :711,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492499,0)}; -_ddaf :=&asset {_cd :_faeg ,_dce :_ecde };return _ddaf ,nil ;};func _ggcc ()(*asset ,error ){_fcgfa ,_cegf :=_baaa ();if _cegf !=nil {return nil ,_cegf ;};_bbab :=bindataFileInfo {_ag :"Hiragana",_bc :551,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492288,0)}; -_cfef :=&asset {_cd :_fcgfa ,_dce :_bbab };return _cfef ,nil ;};func _fbca ()(*asset ,error ){_fec ,_ccaf :=_eba ();if _ccaf !=nil {return nil ,_ccaf ;};_fege :=bindataFileInfo {_ag :"Adobe-Japan1-UCS2",_bc :281822,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490574,0)}; -_fdbb :=&asset {_cd :_fec ,_dce :_fege };return _fdbb ,nil ;};func _gadc ()([]byte ,error ){return _dc (_ffb ,"Add-H")};func _febb ()(*asset ,error ){_deaad ,_egeg :=_ebgc ();if _egeg !=nil {return nil ,_egeg ;};_ebbe :=bindataFileInfo {_ag :"UniAKR-UTF32-H",_bc :248243,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492666,0)}; -_bbbd :=&asset {_cd :_deaad ,_dce :_ebbe };return _bbbd ,nil ;};var _abda =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\x4f\x8f\x9b\x30\x10\xc5\xef\x7c\x8a\x39\x6e\x0f\x5b\x6c\xfe\x19\x4b\x11\x52\x37\x51\xb7\x1c\xb6\xad\x9a\xcd\xb6\x52\xd5\x03\xd8\x43\x6a\xa9\x31\xc8\xc0\x21\xdf\xbe\xb2\x3d\xd0\x1e\x22\xf8\x3d\x3f\x3b\xef\xe1\x49\x8f\xed\xa9\xb5\x66\x81\xf4\xab\x1b\xd5\x19\x17\x18\x8c\xd5\x0e\xe7\x71\x75\x0a\xa1\xc7\xab\xb1\x49\xc2\x33\xd0\x46\x2d\x1b\x86\x87\xba\x75\x53\x92\xa4\x17\x6b\x9e\x9f\x1e\x2f\xaf\x1f\xeb\xc7\x4f\xb0\xce\x48\xf2\xb1\x3d\x9d\xef\xf3\x82\xb7\xd6\x0e\x23\xe4\x71\xbb\x5e\x27\x3a\x02\x20\xfd\x86\x57\x33\x2f\xee\x0e\x0f\x1f\xf4\xd8\xe3\x3b\xd0\x38\x78\xfd\x8b\xd3\xe8\x8c\xbd\xc2\xc3\xf3\x13\xdf\xd5\xf3\x3a\x4d\x7f\xf0\x86\x76\x81\x32\x68\x68\x75\x78\x26\xe9\xf1\xa5\x9b\x3e\x77\x37\x84\xff\xb3\xbc\x85\xc5\xb0\xf6\x86\x6e\x36\xa3\x05\x9e\xbf\x67\x4c\xfc\xd3\x5f\xef\x13\x02\xa7\x43\x7e\x5c\xda\x13\xfc\xe4\xc0\x19\x64\x65\x51\xb2\x5f\xa4\x7f\x7f\x19\xf5\xee\xe2\x22\xc6\x57\x46\xab\xdf\x9d\x4b\x0e\x98\xd5\x4c\x16\x0d\x94\xb2\x8e\xd0\x55\x1e\x64\x72\xc0\xbc\x66\x35\x6f\xa0\x14\x25\x41\xe6\xa1\x88\x20\xf3\x06\x84\x60\x55\x72\xc0\xa1\x57\xd1\x57\x13\x28\x0f\x39\x01\x06\x9f\x88\x24\x75\x20\x32\xca\xc1\x1b\x65\x84\xbe\x0f\x4b\x1b\x05\x23\x67\x44\x43\x03\x15\x8b\xa0\x65\xef\x03\x56\x04\xda\x83\x20\x88\xff\x55\x04\x1a\xba\x90\x90\x73\xff\x9d\xb7\xba\x49\xb5\xd7\x77\x9d\xbd\x22\x15\xab\x1b\x88\x2f\x3e\x50\xbd\x35\x64\xa4\x4a\x5f\x4e\x6e\x6a\xb1\xa9\xa5\xf7\x66\xa4\x56\x9b\x2a\xbc\x37\xa3\xee\xe1\x5c\xff\x22\xbd\x97\xca\xc8\x8e\xd4\x50\x44\x54\x94\x2f\xe6\x09\xe0\xe7\x6f\x1f\x09\xb5\x3a\x87\x76\x09\xd3\x17\x2e\xdd\x5f\xa4\xb1\xb8\x0f\xf8\x34\x4e\x7e\x57\xf8\xfd\x0d\x00\x00\xff\xff\x48\xe4\x8e\x49\x0c\x03\x00\x00"); -func _gdff ()(*asset ,error ){_dgccb ,_cfbf :=_cgbf ();if _cfbf !=nil {return nil ,_cfbf ;};_gbcg :=bindataFileInfo {_ag :"Adobe-KR-3",_bc :1293,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491421,0)};_dcdcg :=&asset {_cd :_dgccb ,_dce :_gbcg };return _dcdcg ,nil ; -};func _eef ()(*asset ,error ){_dgdd ,_ggbf :=_aedfe ();if _ggbf !=nil {return nil ,_ggbf ;};_dbgf :=bindataFileInfo {_ag :"Adobe-KR-2",_bc :1273,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491416,0)};_agde :=&asset {_cd :_dgdd ,_dce :_dbgf };return _agde ,nil ; -};func _bag ()(*asset ,error ){_bdab ,_dafg :=_fdacc ();if _dafg !=nil {return nil ,_dafg ;};_aca :=bindataFileInfo {_ag :"Adobe-GB1-3",_bc :2159,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491263,0)};_agd :=&asset {_cd :_bdab ,_dce :_aca };return _agd ,nil ; -};func _dceg ()(*asset ,error ){_deb ,_fbcc :=_gbcf ();if _fbcc !=nil {return nil ,_fbcc ;};_bgab :=bindataFileInfo {_ag :"Adobe-Japan1-4",_bc :1625,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491326,0)};_dca :=&asset {_cd :_deb ,_dce :_bgab };return _dca ,nil ; -};func _gcff ()(*asset ,error ){_aaf ,_afd :=_cafgf ();if _afd !=nil {return nil ,_afd ;};_fdgb :=bindataFileInfo {_ag :"UniJIS2004-UTF32-H",_bc :243210,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492817,0)};_aadag :=&asset {_cd :_aaf ,_dce :_fdgb };return _aadag ,nil ; -};func _dde ()([]byte ,error ){return _dc (_gcaf ,"Ext-V")};var _fgd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x0d\xc6\x83\xf8\x2c\x5f\x70\xde\x4c\x6e\x66\x0d\xea\xdf\x1b\xad\xa5\x67\xad\xb8\x0d\x0d\xe7\x9d\x9c\x57\xf1\x44\x48\x5b\x5b\x5b\x5b\xfb\x5b\x7f\xfc\x0f\x7f\xfe\x8f\x7f\xfe\xf5\x97\x7f\x7c\xfd\xf1\x7f\xff\xed\xaf\xe7\x3f\xdd\xff\xf8\x7a\x7e\xf9\xf5\xfa\xed\xfe\xfb\x5f\xff\xf5\xb7\xf3\xfe\x3a\xee\x7f\xf9\xe5\xd7\x3f\xfc\x21\xc4\xaf\xeb\x97\xf3\x1f\x9f\x26\xfe\x9c\x7f\xd9\xff\xf6\x87\x3f\xcc\xef\xff\xe9\xdf\xfe\xfe\x8f\xfb\x2f\x7f\xfe\xf5\xf9\xeb\x57\xe2\x7b\xd7\xbf\xfe\x6d\xbd\xfb\xf5\xf5\xc7\xff\xe3\xfe\x97\x5f\xfe\xfe\x8f\xdf\xfe\xed\xeb\xdf\xfd\xcf\xd7\x5f\x8f\xfb\x7f\xf8\xba\xee\x67\x3e\xff\xdf\x7e\xbb\xee\xdf\x7e\xf9\xf5\x5f\xbe\xfe\xdd\x7f\xda\xff\xb6\xff\x1a\xf4\xc3\x3f\xfd\xeb\xdf\xfe\xf6\xff\xdd\x7f\xb9\x7f\xfd\xc7\x57\xc3\xb3\xfb\xd7\x0b\x7f\xff\xf0\xc7\xff\xf0\x9f\xf7\xbf\xfd\xaf\xfb\x5f\xee\xaf\x3f\xfe\xf3\xaf\xbf\xfc\xa7\x3f\xff\xd3\x7f\xdd\x62\x48\x71\xdb\xf2\xbf\xff\xe7\xff\xf2\xa7\x14\xff\xfd\xff\x82\xf7\xf0\xda\xff\x79\xff\xf6\xf7\x5f\xfe\xfa\xeb\x57\xf8\x1f\xb7\xb8\xf9\xf1\x7f\xf9\xb7\xbf\xdd\x5f\x61\x75\xf7\x5f\xff\xf9\xcf\xff\xf1\xeb\xff\x0e\x5f\x61\xfb\x8a\xa5\xa6\xf4\xff\xac\xe7\xff\xd7\x7f\xfe\xeb\x75\x7f\xf1\xab\x3f\x04\x4e\xe5\xfc\xeb\x75\xff\xfd\x6f\xfb\x79\xff\xb6\xff\xfa\x2f\xf7\x1f\xbe\xbe\xfe\xa7\x6d\xfd\xfb\x9e\xff\x0d\xdb\x9f\xfe\xf4\xa7\x3f\x7d\x4f\x58\xff\x9b\x37\x3f\x1d\xfc\xfa\xd7\x7f\x5c\xf7\xc3\x67\xbf\xff\x76\xfe\x0b\xcf\xf7\x57\x98\x5f\xbf\x5f\xfb\x43\xd8\xb6\x35\xfa\x2f\xd7\xf9\xff\xee\xbf\x7d\x3e\x2c\xe7\xf7\xd7\x68\x9f\x56\x9b\xad\xa1\xd6\xf5\xfd\x35\xb2\x5a\xf7\xf7\x57\xd8\xb6\x4f\x73\xdf\xe6\x30\x9f\x46\x9e\xbf\xa9\x9b\xbd\x7c\x7f\x55\xff\x58\xbf\xbf\x46\x52\xab\xcd\x57\xab\x9a\xfd\xfb\x2b\xa4\xa8\xe6\xf8\xfe\x0a\xc5\xcd\xfd\xfb\x2b\x64\x8f\x79\xcc\x6f\x05\xdf\x7e\xce\x97\xdd\xf3\x35\x9b\x1e\x76\xc2\x5b\x04\xfe\x3e\xd1\x12\xf5\xed\x31\x21\x8e\x82\xf8\x28\xf3\x65\xff\x5a\xbf\xbf\x42\xe8\x6a\x4e\x98\x83\x5f\x06\xcc\xea\xf9\x98\x30\x57\x01\x79\x00\x66\xff\x3a\x61\x8e\x02\xf2\x00\x18\x9a\xfe\x39\x07\x4a\x1a\xf7\x9a\x3d\x67\x4d\xff\x9a\x2f\x17\xf5\x7c\xcf\x97\x73\xf9\x34\x1f\xbc\xfc\x01\x32\x4c\x12\x18\xa9\x56\xb5\x03\xda\x41\xed\x38\x3b\x6b\xc5\x2f\x24\x3c\xa8\x43\x0f\x32\x1e\xa4\xa6\x07\xc0\x4a\xd3\x90\x61\xab\xec\xc3\x83\x36\x3c\x68\x1e\xa5\xe3\x41\x4f\x7a\x30\xf8\xc0\xa3\xec\xdf\x5f\x71\x4b\xc9\x6f\x1c\x78\xa0\x55\x0f\xdb\xc9\x51\xfc\xc9\xc5\x51\xfc\xc6\x4d\xd0\x3d\xec\xc3\x37\x3e\x68\x0f\x61\x43\xa7\x51\x9f\x84\xc0\x37\x34\x97\x10\x81\x1f\x0d\x12\x12\xda\xee\xa1\x12\x4e\x3f\x68\x84\x53\x80\x07\xce\x55\x4b\x1f\x02\xe7\xda\xfc\xc6\x3e\xfb\x1c\x1e\xf3\x98\x3b\x4a\x1b\x25\x04\xce\xb4\x7b\x0c\xce\x74\xb8\xcb\x9b\x50\xb8\x8b\x87\x50\xe8\x41\xe4\x4c\xbd\x6a\x31\xf0\x0d\x2d\x74\x8c\x7c\xc3\x0f\xb8\xd0\xdd\x7d\x70\xa1\x87\xf0\x19\x39\x79\xd1\x6d\x88\x58\xe8\x1e\xdc\x47\xc7\x54\x04\x68\x1c\xb3\x1d\x84\xef\x88\xa9\x57\x43\x75\xa0\xed\xdf\xd7\xc4\x84\xff\xb8\x26\xa6\x2f\xd2\x9a\x98\x88\x2d\xcd\x25\xcc\x82\x20\x71\x5a\x51\xc8\x4b\x89\x0f\xfc\xc1\x9a\xa7\x3f\x59\xf3\x14\x14\x89\xf3\x14\x8b\x09\x69\x2d\xb2\xfb\xe8\xec\x54\x70\x26\x2e\xf2\x0b\xce\x9d\xab\xee\x3e\x48\xd0\xd9\xa3\x9c\x78\x60\x42\x49\x5c\x66\x4f\x3e\x91\xa0\xb3\x3b\x25\x36\xa2\x96\x28\x2f\x6c\xa8\x8f\x0c\x6c\x68\xc5\xf2\xdc\xde\xfe\x3e\xaf\xcd\x2d\x18\x32\x71\xd1\x84\x8b\x5c\x08\xa5\x96\x38\x13\x17\xde\x54\x99\x9b\xbb\xfa\x0d\x12\x7c\xf3\x28\x83\x40\xe1\xbc\xf9\x9c\x2c\xff\xbd\xb3\x26\x64\xee\xfc\x68\x10\xb0\x1d\x4c\x97\x79\x1e\x3f\xc9\x88\xcc\x17\x68\x46\x38\x28\x1b\x01\xd2\x8a\x97\xb5\xa9\xb5\x5a\x05\x58\x10\xc0\x65\x62\x21\x0b\xcb\x85\x38\xf0\xde\x29\xa4\x87\xea\xef\x17\x3d\x78\x04\xd2\x83\xf1\x58\xd6\xa6\x77\x1f\x6b\xd3\x7b\x14\xd2\x83\x69\xaa\x1c\x7c\xe0\x51\xd6\xb6\x17\x1e\xcb\xda\xf6\x06\x7c\xd1\x83\xd6\xa2\x90\xc1\xe9\x30\x08\x75\xd2\x83\xf7\x67\x9d\x9b\x5e\xe7\x59\xa8\x64\xf6\xde\x7e\x95\xf4\xd0\xd5\x61\x25\x2e\x4c\xa4\x95\xb8\x28\x7e\x63\xf1\x00\xf7\x41\x5c\x24\x7f\x42\x1e\x20\x54\x54\xf2\x00\x7f\x40\x1e\xa0\x79\x57\xf2\x00\x03\xbd\xf0\xe0\x17\x16\x1e\x84\xfe\x7a\x63\x04\xb7\x1f\x8c\x20\x8a\x69\x8b\x22\xfc\x80\x14\xd1\x85\xa7\x46\x2e\xe1\x33\xac\x91\x4b\x18\x8a\x96\xb9\xe5\xfd\x09\x77\x86\xc9\xac\x11\x13\x46\x4d\x5b\x54\xe1\x4e\x27\x97\x30\x27\x6a\xa4\x09\x13\x62\x23\x4d\xf8\x8c\x6b\x8b\x26\xfc\xc9\x3a\xf4\xfc\xe0\x9a\x5d\x7a\x84\xc9\x2f\xcd\x85\xc6\x5c\x60\x63\x7e\x60\x79\xbb\xb7\xd6\x19\xf9\x40\x20\x9f\xd8\x4b\xc6\xec\x49\xcc\xfa\x83\x07\xbf\x6b\x29\xae\x0d\x98\x16\x52\xae\x80\xf7\xd5\xdf\x15\xf1\xbb\x66\x78\x25\xfc\xee\x76\xc6\xef\x82\xf0\x5a\xec\x46\x33\xb8\x28\x4b\x58\x0e\xb8\x88\x54\x33\xf8\x8b\x5b\xcd\x27\xf0\x45\x76\xe3\x8d\x74\x11\xad\x3e\x1d\xaf\xc5\x7a\x45\x82\x17\xd1\x6a\x1e\xf3\x10\x0e\xe3\xf9\x81\x94\x2b\x44\xc5\x79\x02\x8c\xac\x2e\x23\x99\x4e\x17\xd5\xc7\x02\x4c\x48\x3a\x8c\x85\xa8\xd6\x10\xb1\xac\xc5\xf0\x17\xc0\x85\x36\x6b\x24\xdb\xe9\xda\xdd\xb1\x00\x17\x7d\xf3\x17\x3c\x6e\x5f\x9f\x74\x3e\x18\x7a\x80\xbd\x16\x3d\xe8\x8e\xb6\x7f\x27\x6f\x75\x8f\x27\xa1\xdc\xf4\xe0\xe6\x03\x03\xf1\x10\x08\x75\x51\x39\x73\xd1\x60\xac\x81\x42\x80\xa0\x22\x13\xe9\x46\x16\x99\x48\xd7\x99\x1d\x2b\x67\x16\xdc\x29\x67\x26\xc2\x8f\x75\xcd\xac\xe9\x01\x16\xb5\x77\x77\xca\x35\x1c\xee\xf4\x22\xa4\x7e\x40\x76\x39\x3c\x0a\xe7\x92\xd2\x4f\x0e\xa6\x48\x2e\xd2\x83\x60\x5a\x5c\x44\x82\x5b\x6c\x5c\x63\x6d\x87\xd8\xb8\xc6\xa2\xf7\xd8\x88\x0a\xc9\x1a\x71\x72\x91\x91\x25\x96\xc5\x46\x4c\x74\x3f\xe0\xc4\xc5\xfd\x22\xb9\x46\xdf\x3c\x08\x31\x91\x3d\xc8\xc1\x37\xdc\xc7\xc2\x84\x21\x5f\x98\xd0\x1b\x9d\x73\x93\xfc\x1d\xfb\x5a\x44\xcd\xad\x73\x6e\x9b\x1f\x60\x2b\xeb\x64\x88\x9d\x53\x13\x7b\x8b\x9d\x90\x8b\x19\xc4\x4e\xc8\x25\x79\xc5\x4e\xc8\x93\x3f\x21\xbf\x1b\x42\x4f\x3f\x81\x1e\x7f\xc1\x99\x18\x5f\x9d\xf4\x19\x0c\x06\xd7\x54\xb2\x71\x1c\x9c\x9a\x78\x58\x1c\x9c\x9a\x21\x1f\x60\x52\xde\x67\x83\x33\xf1\xde\x1d\xa4\x57\x1d\x59\x71\x2c\x6a\xf4\x20\x9c\xda\x70\x1f\xdc\x48\xc3\x83\x10\xf2\xe0\x37\x16\xa0\x5a\xb6\x7d\xc1\xa5\x4e\xf7\xc5\x32\xb4\x28\x07\xa7\x22\xf6\x1c\x0f\xbe\x61\x0a\x3c\xb8\x6f\x8c\xc0\xa9\x58\x7a\x4b\x1c\x13\x9d\xfa\xed\xe4\x80\xa6\x02\xe8\x99\x5e\x9e\x93\x92\x9d\x98\x71\x3c\x39\xed\xec\x1e\xc6\x5b\x5d\x8e\xe7\xfe\x56\x97\xe3\x79\x7c\x7f\xe9\xf0\x8b\x27\x31\x22\xa6\x1b\x79\x76\x98\x6c\xaf\x35\x7f\x8d\xff\xe1\xec\x7e\xb0\xb4\x44\x21\x15\x9c\x3d\xb9\x87\x75\x5c\x0a\xbe\xc9\xd7\x8d\x9c\x8b\x72\x43\xf1\xfb\x24\x1e\xc9\x3f\x69\x6a\xc7\x82\x38\x4d\xd5\x77\xb8\x95\xdf\x73\x4d\x53\xeb\x8d\x62\xac\x69\xfb\x1d\x24\x69\x6a\xab\x21\xf9\xdb\x39\xf7\xe4\x61\xae\xdf\xe3\x31\x51\x31\xed\x12\x2e\x52\xe0\xce\x90\xb8\x98\xa8\x03\x76\x89\xdd\x89\xda\x59\x97\xd8\x94\xa8\x9d\xf5\xe2\x07\xed\x6d\x80\x48\x11\xf6\x08\x0d\x19\x49\xb1\x9e\x6d\x5c\x43\xfa\x0d\x0e\x29\x05\x3b\x45\x42\x29\x31\x2a\x25\xd2\xa3\xb4\xe3\x34\x95\x2d\x09\x44\x89\x8a\x55\x97\xda\x9f\x12\xec\x18\x02\x30\x2d\x10\x34\xeb\xc4\x11\x9b\x1f\x10\x51\xee\x72\x9d\x2d\x92\xd3\x52\x87\xd0\x95\x45\x74\xa9\x43\x8b\xf2\x91\x96\xfa\xcd\x07\x5a\x9b\xfe\xf0\x81\xfa\x18\x50\x9a\xcc\x00\xd2\xbe\xf3\x0d\x3f\x38\xf8\x40\x70\x1c\xeb\x13\xf5\x01\x49\xaa\x46\x9d\xe6\xe9\x64\x1f\xda\xcd\xe9\x64\x1f\x3a\xd2\xd2\x49\xc0\x4c\x05\x73\x43\x84\xb8\x8d\xed\x27\xc7\x51\xc2\x76\x89\xdb\xf0\xe7\x85\x0f\x34\x00\xb6\x43\xdc\x44\xc2\x79\x0b\xb0\xaa\xa9\x0d\xc5\x68\x13\x7b\x78\x20\x6c\xc5\xf0\xd9\x5f\xe1\x06\xbf\x48\x1f\x06\x11\xee\x03\x52\xd0\xe7\xec\x0f\x4f\xc3\x16\xfe\xb0\xc1\xf0\x34\x0a\x3d\xfe\x1d\x9c\xf5\x83\xb6\xf0\x34\x9c\x19\x9f\xa5\x88\xdb\x36\xc5\xee\x0f\x9a\xe3\x36\x37\x5c\xf5\xaf\x61\xe2\x23\xab\x15\x7e\xd7\x8a\xbf\x6b\xcd\x73\xf6\xd5\xcc\x2f\x3a\x8b\x5b\x28\xdf\x5f\xb5\x6a\x94\x50\x67\xb3\xaa\xd9\xcd\x21\xe3\x16\x86\x39\x64\xdc\xb0\x0d\x3f\xd3\x8b\x1b\x36\xe1\xe6\x77\x27\x75\x7e\x56\x3c\x6e\xe1\x06\xf6\x3e\xcd\x38\x21\xfc\xa0\x22\x6e\x11\x40\xb8\x09\x20\xd4\xd5\xdc\x49\xb2\x5c\xc5\x2d\x1d\xdf\x5f\x92\x68\xe3\x86\x7d\x11\x43\x50\xdf\xe9\x7e\x31\x9f\xb8\x25\x6e\xcc\xac\xde\x33\xa9\xb1\xab\x43\xe8\xf5\x9b\x3a\xcc\x83\x1d\xea\x77\x50\x42\x8d\x5d\x23\x4c\x41\xb1\x75\xe3\x65\xea\x9e\x4d\x47\x45\xdc\xb0\xf2\xa9\xb9\x0d\x10\x86\x91\xb3\x83\x74\x8a\x86\x04\xf3\xad\x32\xbb\xc4\x0d\xcc\x37\x6c\x9f\x6d\x18\x61\x9a\x0c\xa1\x17\x3f\x48\xdf\x5f\xed\x23\x4c\x45\xda\x19\x83\xf8\x51\x84\xd1\xb0\xa7\xcd\xef\xef\x68\x67\xb5\x01\x53\x11\x5d\xc0\x78\xd7\xb7\xa8\x0f\x26\x25\xb4\xea\x11\x62\x98\xbf\x1b\x00\x98\xc4\x04\x31\xcc\x5d\x23\xbd\x7e\x6e\xec\xdf\x0f\xe6\xb2\x7d\xd8\x5d\xfc\x18\xaf\x44\x6a\xcb\xb0\x54\x3e\x92\x71\x84\x0d\xa8\xa7\x8f\xa0\x16\x61\xba\x18\xb2\xeb\x45\x58\x2e\x86\x44\xbd\x08\xc3\xc5\x90\x28\x13\x3f\x96\x89\xa8\x0e\xe6\x32\xf4\xb4\x69\x80\x29\x72\x0d\xe9\xb9\x11\x0a\xa1\xd4\x9c\x08\x85\x50\xf6\xa5\x18\x28\xf8\x14\xd1\x59\x98\x02\x41\x4f\x9b\x5e\x38\xc1\x51\xa2\x01\xc6\xa1\x1e\xa3\x21\x22\x0f\x8b\x06\xf9\x82\x88\x92\x45\x8a\x50\xf9\xe6\x03\xc1\x78\xcf\x41\x36\x23\xe5\x6e\x68\xeb\x83\xbb\xa3\xad\x55\xbc\x07\xda\x02\x72\xea\x6a\x3d\xe9\xfd\x08\x3a\x2a\xf9\x63\x2e\x8d\x91\x36\xed\xfc\x91\xb4\x62\xa4\x4d\x3b\x7f\x74\x87\x18\x69\xc2\xce\x22\xe7\xb8\x2d\x2b\x97\x1f\x34\xf6\xe1\x4e\x21\x9c\xe4\xea\x07\x83\x7d\x54\x3d\xd8\xb9\x25\x36\x3d\x38\xf8\x89\x87\xa5\xf9\x4e\x6c\x20\xd2\xfc\x3c\x3e\x22\x73\x8c\x60\x73\xc5\xcd\xc4\x05\xd2\x5c\x61\x4b\x0e\x82\x92\x62\x43\xfe\x68\x38\x31\xd2\x52\x5c\x5e\x1d\xd2\xdf\x51\xc6\x0f\xce\x98\x18\x03\x19\x8b\xd8\x42\x8c\xc4\xed\xf0\x83\x35\x6b\x3f\x20\x08\x4d\xb3\x8e\x17\xe7\x24\x98\x23\xa5\x2e\x11\x65\xa4\x9c\x90\xab\x1f\x70\x9f\xf8\x13\x30\x40\x23\x32\xad\x59\xe9\x01\xed\x98\x45\x64\x18\xf3\xea\x41\x98\xa1\x51\xb2\x88\x3f\x2d\x7d\x3c\x8b\xd7\x2f\x3d\x36\x17\x3f\x08\x7c\x43\xcb\x45\x73\x59\x11\xc3\x59\x6a\xc0\x78\x3d\xb8\xf9\x40\x7d\xc0\xff\x55\x86\xe1\xd8\x49\x69\x43\x53\x3b\x16\x8a\xf5\xe0\x84\x9c\x19\x3f\x62\x70\x4c\x20\xbd\xb9\xd4\x9f\x07\x93\x28\xe4\x5d\x89\x69\x39\x18\xc4\xa7\xd2\xc0\x2e\x95\x81\x33\xa6\xc1\xf3\x43\xd4\x9c\xa0\x7b\xbc\x1f\x00\xce\x28\xb3\x79\x4c\x50\x46\xa2\x49\x2f\x41\x19\xf9\xdd\x27\xe5\xbf\x7d\x40\xe9\x41\x2c\x1f\x62\xd4\xef\xde\x98\x12\x4f\xa8\xf1\xe3\xf9\x88\x39\x26\x3e\xf8\x4c\x3e\xdf\x93\x85\xcb\x44\x16\xf3\xf3\xc0\x80\x25\x86\x56\x26\x87\xec\x51\x60\x95\x72\xa3\xfd\xe9\xa0\xcc\x45\xeb\x51\x30\x94\x8a\x0e\x8b\xbe\x9f\x2a\x7f\x8f\x1f\x41\x3b\x96\x86\xfe\x74\x72\x96\xc9\x30\x7b\xcc\xfa\xbe\xe3\x7b\xa1\xb2\x4c\x0d\xb5\xc7\xac\xf1\xa6\xb8\xd9\x63\x16\x3c\x53\x41\xed\x31\xab\xff\x0e\xf8\x92\xfb\xc7\xf8\x92\x4d\xca\x44\x7c\x8b\xfa\x79\xa2\xdd\x2b\x59\x26\xd2\xfb\xa6\x03\xa6\x10\xa3\xaf\xee\x76\x32\xe4\x8f\x6a\x11\xcb\xc1\x83\x5c\xa7\x6a\x39\xc0\xf1\x05\xdf\x01\x8e\x2f\xf0\x0e\xae\xd9\xf0\xeb\x64\xbe\x7e\xe1\x9c\xef\x6b\xfa\x53\x00\x6c\x49\xb3\x3f\x49\x36\xe2\x8a\xe5\xc4\x09\xaa\x03\xa3\xcc\x03\xc4\xc7\x53\x99\x1a\x65\x93\xdc\x52\x4e\x20\xdb\x83\x51\x66\x4e\x62\x26\x65\x9e\x37\x2d\x6a\x74\x9c\x36\x9b\xf9\x42\x99\x04\xd5\x74\x9e\x97\xf3\x99\x4d\x01\x73\x67\xac\xb5\xb0\x79\x17\xb4\x05\x0d\x3c\xa5\xf1\x45\x2c\xf7\xfc\xbe\x09\xf8\x67\x21\x57\xf0\x3e\x3c\xed\xb4\x7a\x75\x9e\x1b\x4d\x12\x60\xdd\x30\xdb\xa0\xe6\x0d\x71\xe2\xf3\x79\x0d\xa0\x05\xed\xe3\x1a\x40\x0b\xfe\x3c\x4f\x5a\x10\xef\xa8\x53\x88\x6b\xe2\x2d\xb5\x82\x52\x75\xec\x55\x50\xfa\x26\xde\x5f\x2b\x69\x45\xbd\xd7\x84\xf7\x93\xda\x19\xbf\x0b\xf6\x0a\x6c\xe8\x28\xa9\xb5\xa2\x9d\xd5\x26\x25\x08\x9c\xb9\x93\xe4\x18\x8d\xb5\x1e\x20\x34\xf1\xe0\x5a\xc9\x64\x5e\x0f\x26\xad\x34\xf7\x87\xcd\x1f\xc6\x8f\x4e\x9e\x5a\xb1\x14\x02\x7e\xf1\x27\xb1\xcd\xba\x76\x42\xf1\x1b\x5c\x2c\x49\x67\x75\x92\xea\x54\x7e\x84\xa0\xe3\xa6\x3a\xa4\x07\x4b\x9a\x11\x75\xb7\x8d\x3c\x4e\x47\x78\x0b\x8b\x3f\x6d\x7a\xc0\x61\xb5\xdf\x1b\x44\xef\x28\x93\x7b\x6c\x99\x02\x90\xf6\x70\x2b\x8b\xca\xf4\x46\x23\x4f\x13\xa6\xdb\x0e\x9e\xa5\x85\x6f\xc7\x43\xc8\x3f\x5d\x0c\x9c\x11\x35\x8a\x0b\x0e\x18\x62\x62\xd4\x46\x3c\x00\x57\xd8\x44\xaa\x07\xac\x01\xd1\x8c\xed\x88\x04\xe3\x63\x7e\x89\x07\x4e\xee\x68\x56\x78\x54\x42\x1e\xfc\x20\xf0\x81\x46\xc1\x01\x18\x4d\x83\xc7\x28\xbf\x83\xfc\x18\x8d\x0a\xe4\xa7\x8b\x1b\xd8\x28\x45\x54\x74\x77\xf8\xda\x2c\xb4\xdf\xbd\x40\x57\x2b\x7e\xa3\xc1\x63\xf9\x7a\x63\xe0\x93\xd7\x1b\x07\xde\x10\xa0\xf7\x64\xb2\x39\x8a\xeb\xdc\xb0\x01\x66\x8b\x62\xf7\xd4\xf0\x73\xcd\x6e\xc7\xef\xaf\x24\xb7\x67\xbc\xa7\x1c\x9c\x2d\x08\xdf\x53\x10\xce\xe6\x04\x37\x0d\x80\x49\x62\xcf\x3d\x18\x64\x21\x46\x7a\x63\xe6\xa9\x17\x77\x89\xb8\x8b\x52\xfd\xc9\xf8\xfe\x2a\x5b\x71\x9f\xc7\x6c\x77\xb7\x27\x79\x36\xd9\x03\xe3\x3d\x0f\xe9\x54\x75\x14\xdd\x73\x0f\x24\xef\x89\x7b\x07\x2a\x65\x9e\x8b\x37\xe2\x6b\x8a\xbc\x33\xf1\xc6\x89\x9c\x83\xb6\xc0\x8d\x38\x9a\x6c\x7d\xe0\x46\x24\x4d\xf2\x01\x74\x63\x5f\xa5\xa1\x03\xe1\xc6\xbe\xca\x63\xf8\x8d\xb9\xcf\x47\xf0\xd4\x11\x51\x93\x2d\x05\xdd\x88\xa9\x49\x43\x8c\xed\xc6\xa1\x54\x36\xb1\x86\x1b\x76\xcb\x77\xa7\x07\xe6\x12\x8c\x0d\x18\x32\xf3\xd6\x34\x17\xc4\xcf\xe4\xed\xf5\x09\x6d\x6a\x22\x68\x18\x27\x42\x7a\xad\x32\xec\x9b\x43\x67\xdf\x4d\x6f\x97\xed\x04\xf7\x99\xb0\x68\xda\xde\xf7\x94\xbd\x62\xd5\xc6\xbb\x19\x78\x53\x25\x9c\xdd\xb0\x70\x26\xeb\xc5\x37\xad\x9a\xf2\x68\xc5\xfb\x64\x7c\x51\xf7\x20\x10\xf0\xa2\x89\xed\x0a\xdf\x5f\x69\x33\xca\xa9\x21\x99\x73\xdd\xf4\x79\xbd\xbf\x68\x9c\x99\xdf\xe8\x13\x4e\xe9\x1e\x37\x94\xeb\xd4\x8d\x0b\x28\xd7\xc9\x16\x81\x1b\x41\x42\x49\xc6\xd5\x78\xcf\xc3\x31\x54\xe3\x62\x6a\x59\x29\x99\x32\x6e\x50\x86\xce\xde\xfb\x3e\x30\xa4\x90\x7b\xc3\xf1\x98\xfd\xfb\xa4\xd6\x21\xdd\xe6\x7e\x60\x82\x90\xe8\xf2\x6c\x34\x6e\x6d\x6a\x4f\xa6\xe7\xa3\xfe\x99\xbc\x37\xcb\x56\x15\x9f\xa9\xa3\x65\x33\xeb\x07\xe6\x57\xc5\x03\xc5\x67\x1e\xbd\x39\x48\x14\x78\xe6\xd9\x9b\x62\xf3\xf7\x6d\xfe\x1e\x3c\xde\x44\x59\xd1\x96\x7e\xa6\xba\x96\xa3\xf4\x81\x67\x6a\x6b\x29\xf6\xfa\x93\xd3\xe9\x99\x9a\x5c\x4a\xc3\x83\x9f\xb3\xb3\xe0\xce\xaf\xd9\x8e\x06\x1e\x0c\xea\x05\xfc\x33\xdb\x42\xde\x13\x36\xb4\x05\xcc\xd4\x03\x53\xa8\xfe\x7d\xf2\xab\x21\xf6\xf3\xcc\x73\x29\x47\x89\x5d\x4f\xa8\xdf\x5f\xd9\x76\x84\x07\x41\x48\xc9\xc8\x98\x2a\x42\x6a\x9e\xec\x54\x1b\x73\x12\x57\x7e\xe6\xf1\x91\x53\x74\xff\x07\xda\x7e\xff\x9c\xdf\x67\xbf\x3f\xe9\x6d\xc8\x9a\xf5\x4c\xc9\x26\xe7\xe2\xf6\x24\x86\x20\x8e\xfd\x20\xfa\x28\xca\x32\xf3\x4c\xb9\x3f\x75\x6d\xee\x27\xce\x7d\x27\xa7\x57\x7c\xe6\xe9\x15\x6d\x27\x7c\x10\x68\xf4\x5a\xac\x38\x17\xb7\x8a\xc1\x3c\x11\xfb\x41\x3b\xfd\x99\x67\x5b\xcc\xc5\xe3\xed\xbf\xe3\xff\x4f\x3c\xd0\x76\x7f\x73\xfd\xbc\xef\x9f\xa9\xb3\xc6\xd0\x0c\xcf\x9c\x5f\x33\xbe\x60\x09\x1f\x26\x26\x18\xc2\x87\x64\xab\x07\x31\x48\x72\x5c\xc4\x27\x91\xf3\xf8\xfd\xdf\x9f\x37\x4f\xc2\x79\x23\xa9\xe2\x99\x0a\x70\x56\xe0\x5a\x7c\x52\x45\x5b\xf8\x48\x0d\x6d\xf7\x3f\xf9\x7a\x15\x07\x79\x60\x59\xcf\xc5\x0b\x9a\x26\x02\x14\x6f\x17\x9f\x74\xa0\xed\x0f\xce\xb9\x3b\x8c\xb0\xa9\x61\xe7\x21\x1e\xff\x20\xf2\x68\xbc\xfa\x9b\x22\x8a\x62\x74\xe2\x83\xb8\xa3\xe8\xdd\x9e\x03\x0e\x3b\x01\x38\x65\xd9\x54\xbc\x61\xa6\xc2\x9e\xac\xa1\x3e\xb0\x4f\x2a\x18\x26\x3e\x53\x7f\x4f\xb6\xd9\x3e\xb9\xe2\xb0\x74\x7f\x0d\xbb\x55\xf0\x4e\xf5\xbe\x28\x42\x34\x3e\x30\x70\xca\xb3\x10\x9f\x3c\x77\xb7\x5c\xb7\xf1\xc9\xf3\x54\xeb\xc5\xe3\xcf\xf9\x47\xcf\x2f\x5f\xdf\x5f\x45\x61\x08\xf1\xc9\xf7\x6c\x57\x7f\xff\xa0\x2d\x78\xa6\x5a\x9a\xb2\x64\xa9\xa7\xcc\x0d\xdc\xbd\x21\x0b\x2c\x89\xe2\xa6\x4f\x49\xf3\x7b\x6f\x80\x82\x83\x67\xf3\xef\x90\x8a\x0c\xff\x14\x22\xd3\x26\xee\xfb\x94\x39\xff\x62\x82\x29\x73\xfe\xd5\x1b\xac\x0c\xb4\xfd\xfe\x9c\x7f\x35\x81\x96\xa9\x58\x99\x5b\x3f\xf0\xfb\x57\x73\x63\x84\x1a\xd9\x44\xf3\x20\x0c\x60\xbc\xfa\x7f\x40\xe0\xc2\x37\x65\x47\x1d\x50\x0f\x6d\x27\x7e\x9f\xa6\x13\xa9\xa9\xcf\x54\x4e\x62\x2d\xfe\x3e\x4f\x7c\xe9\x70\x7f\xa6\x72\x92\xe4\xbc\x8a\xcf\x54\x4e\x52\xf6\x86\x43\x7c\x40\xf6\x71\xf6\xd4\x89\x80\x17\x81\xd7\x31\x39\xb4\x17\x68\x6a\x2f\x29\x7b\xc1\xa7\xfa\x12\x43\x33\x00\x27\x08\x44\x08\x9b\xca\x4b\x6a\xaf\x01\xef\xf9\x7b\xf2\xef\x73\x03\x54\x49\x98\xf0\x84\xc4\xe8\x05\x43\x6c\x40\x1e\x52\xbf\xe0\x0a\x09\xa9\xfe\x24\xd4\x20\xc2\x4f\x12\x2c\x13\x3f\x6d\xa2\x67\x18\x7a\xc4\x1e\x0d\x2f\x57\x9b\xe8\x79\x2d\x37\x22\x8f\x5e\xe7\x0f\x83\x08\x24\x4a\x3e\x6d\x7c\x7f\xd5\xd7\xf9\xd2\x26\x76\x6c\x76\x7c\x1a\x35\x23\x7f\x3f\xf9\xe3\xe6\xed\xc8\xa8\xa3\x57\xfb\xfe\xfe\xaa\x51\x12\xe0\x33\x55\x9c\x68\x01\xe6\xe9\xdb\xfc\xdd\xfd\xf5\x80\xed\xab\xef\xfb\xdc\x1e\xc5\xe7\xc9\xd4\x12\x62\x34\x7c\x3d\x23\x8c\xcd\xfd\x41\xbb\x91\x91\xe3\x81\x17\xb0\x5a\x58\x98\x3a\x44\xb4\xa1\xe1\xe9\xf3\x7c\x78\x6d\xa7\x8e\x10\xa1\xd7\xf8\xfb\x1c\xdf\xdb\x69\x6a\x18\x35\xf9\x7c\xe9\xe7\xf7\x57\x7d\x91\x5f\x9f\xf3\x1f\x66\x47\x88\x42\xe8\x66\x77\x74\x31\xfa\xfb\x41\xd7\x86\xbe\x1f\xe1\xfb\xab\x56\xc3\x8f\x38\xad\xd7\xf9\x87\x40\xad\x6c\x7e\x0e\xc3\xbc\x9d\x2b\xcf\xc0\xfa\x9b\x5d\x4d\x75\x24\x85\xe1\xdf\xdb\xf7\x57\x55\xd4\x5e\x7c\xa6\x32\x52\x9b\xb7\x27\xc2\x15\xb2\xcf\xa3\x31\xe7\x6f\x31\xf7\x99\xba\x49\xec\xaf\xf1\x26\x7b\x54\x58\x51\x7c\xc6\x05\x61\x4a\xf4\x34\x75\x97\x98\x4c\x7f\x53\x75\x89\xc5\xf2\xc7\x54\x5d\xe2\x30\xfb\x65\xa8\x43\xf0\x76\xdd\x23\x04\x02\xbf\x30\xcf\x87\x97\x80\x34\x55\x9b\x94\x2d\x90\xec\x93\x3f\x0c\x6f\x7f\x68\x3a\xcd\xe7\xd7\xde\x7e\x27\x63\x3f\x53\xf1\x49\xdd\x04\x38\xf5\x9e\x54\xcc\xaf\xa7\xda\xd3\x82\x77\xeb\xd4\x7a\x5a\xf0\x79\xb6\xd3\xf2\xe3\xfe\xae\xef\xaf\x5e\x2d\xad\x4e\x95\x27\x65\x13\xec\xfe\x80\xff\xab\x7f\x44\x6e\x64\x6f\x98\xa9\x11\xb5\xe0\x0d\x0c\x2b\x5d\x90\x6e\xf7\x40\x1f\x4a\x16\x10\x8e\x8c\x0d\x2e\xf8\x8f\x39\xff\xf2\xea\x0f\xfc\xd1\xe7\xd3\x54\x9f\x62\x31\xfe\x0e\x6c\x00\x13\xdc\xc1\x18\x39\xb7\x27\x03\x78\x49\xd7\x07\x9c\xd5\xde\xc0\xc7\x8a\x4d\x56\xfb\x82\x5d\xcf\x6d\x18\xe2\xa4\xbb\x3e\x50\xbd\xac\x5d\x3c\x74\x8f\x5b\xde\x98\x9a\x57\xda\x2c\xb0\x4d\xc5\xab\xe5\xd7\xfb\x8c\xae\xd0\x7c\x61\x47\xcc\xd1\xdf\xcf\xf5\xb5\xda\xfa\xc0\x20\x92\xac\xae\x3c\x88\x4c\xa9\xde\x01\x34\x2d\x7a\x47\xc1\xb2\x98\x2d\x11\x4e\x3d\xae\x65\x1f\xf8\x53\x8d\x4b\x2f\xf5\x02\xa6\xeb\xe1\x03\x6c\x6a\x75\xb1\x19\xc0\x0b\x02\x80\x29\xfe\x4a\x50\x87\x56\xff\x89\xae\xed\xcf\xf0\x69\x9b\xda\x4c\x4f\x9f\x0d\x96\xe0\xce\x56\x80\x62\x82\x3f\x5b\xd2\x50\x82\xdf\xb9\x56\xff\x3a\x91\x5f\x5f\x1f\xd3\xf1\xdc\x7e\x12\x37\x90\x90\xf9\xd3\xea\xc7\x58\x92\xb6\x29\x9b\x77\x89\x6a\x09\xae\xe8\x10\x63\xf0\x03\xf8\xe7\x3e\x46\x84\x04\xe7\x74\x88\xca\xce\x49\x74\x4f\x57\x59\x81\xd3\x06\xff\x4c\x0c\x4d\x63\x2c\x7f\xc3\x87\xe1\x26\xe6\x05\xf9\xc4\x48\xdb\x03\x8e\xab\x31\x1f\xcc\x58\x08\x80\x1b\xa0\xca\x4c\x9d\xe2\x04\xb2\x87\x0f\xc3\x4f\x71\x0a\xd4\x5d\xf2\x64\x82\x4b\xa9\x2b\xee\x3d\xc1\xa3\xd4\x95\x06\x93\x22\xe6\xa4\x40\xf8\x84\x70\xce\x2e\x05\x25\xc5\x29\x50\x77\xe5\xd8\xa4\x38\x05\xea\x56\x3f\x91\x00\x29\x4e\x79\xba\xcb\x3b\x92\x22\x1c\xb9\x8a\x21\x4f\x70\x58\x75\xe5\xf7\x24\x78\xac\xba\x52\x78\x52\x9c\xf2\x74\x97\xbb\x25\xc5\x29\x4f\x77\xe5\x30\xa5\x98\x31\xbf\xe2\x36\x4d\x84\x9a\xff\x94\xa7\xbb\xb2\x7c\x12\x1c\x60\x5d\x21\x0f\x29\x2e\x7f\xff\xd0\x83\x02\x6b\xf1\x10\xc0\x38\x91\x36\xf9\xed\x12\xa2\xe2\x7a\xa8\x6e\x63\x04\x2d\x41\x1c\x18\xa1\x0a\x23\x03\x18\x2e\x9a\x01\x4c\x64\x5b\xf6\x12\x0d\xa0\xb8\xba\xdd\xf8\x82\x7b\x00\x8e\x45\x78\x88\xa1\xeb\x92\x91\x53\x9c\x87\x52\xd8\x72\x17\xd2\xe0\xd7\xda\x72\xf7\x17\x27\xbb\x14\x9a\xe7\xb9\xd4\x53\xf0\x17\x40\xf3\x6b\xd6\x0f\x67\xad\x17\xe0\xd5\xda\xb2\xdf\x80\x51\x6d\xcb\x43\xf3\x9e\x27\x45\x97\x53\x2b\xc5\x9d\x2b\x2f\xca\xd9\xb1\xf2\xc5\x3d\x62\xe5\xab\x66\x81\x93\x42\xf9\x67\x29\xee\x00\xa9\xba\x3f\xac\xbc\x38\x03\x62\xfc\xba\x92\xdb\x52\x7c\xa0\x69\x79\x7f\x22\x46\xad\x6f\xd9\x6d\x04\x35\x88\x54\x19\xa7\x16\x14\xc7\x95\x10\xa9\xd6\x75\xd6\xa6\xb4\x31\x6d\xed\xa3\xdd\x26\x3a\x18\x83\xbc\xbc\x29\xc1\xb7\x1d\x14\x7d\x96\x12\x7c\xdb\xa1\x7f\xf4\xad\xc4\x70\xb7\x20\xaf\x65\x62\xc0\x5b\x50\x60\x6b\x62\xc8\x5b\x50\xdc\x6a\x42\xd0\x5b\x2b\xa2\x8f\x14\x32\xbc\x98\xfa\x20\x14\xcc\x43\x40\x04\xb0\x1d\x6d\x99\x14\x08\xe5\xf0\x07\x88\x0b\xd0\x9e\x49\xf4\x85\xcb\x36\x97\x52\xa0\xff\x45\x3d\x46\x78\x48\xb4\x49\x52\x24\xe6\x84\x18\x84\xd4\x05\x39\x6b\x13\x43\xea\xc2\x10\xaf\x4c\xb1\x62\x0e\x02\x21\x36\xb4\x05\x42\xdc\x31\xa2\xb0\x82\x80\x90\x62\x88\xe0\x0b\x0f\x23\x08\x09\x09\xdb\x52\x7c\x03\x01\x74\xc1\x8a\xf6\x3c\x92\x27\x45\x47\x81\x94\x08\x81\x46\x48\xc0\x8a\x34\xf5\x94\x60\x0a\x08\x23\xf9\x0d\x84\x4b\x88\xd5\x24\x24\x22\x85\x91\x34\x6d\xf0\xae\x2d\x7b\x88\x93\x30\xf8\x0b\x42\x9d\xb4\xfa\x48\x2a\x0a\x43\xe7\x55\x02\x3b\xda\x72\xf9\xc9\x01\x94\x32\x1c\x4b\xe2\x6d\x29\x13\x62\xaf\xc3\x54\xde\x5b\xe9\xee\x7d\xc7\x9c\x85\xa4\x0c\x4a\x32\x65\x4d\xe5\xbc\xcb\x5a\x95\xd2\xe4\x75\xad\x0c\xf5\x57\x88\x54\x8f\x88\xd0\xfb\x30\xb4\xa9\x53\xe1\xca\x9b\x54\x0a\x60\x14\xff\x4e\x50\xe7\x82\xc2\x2f\x53\x6a\x88\xdc\x11\xb3\x4a\x53\x43\x6a\xf5\xd5\xc6\x19\x1d\xb5\x0a\x53\x43\x6a\xd5\xeb\x8a\x40\x9d\xcd\x10\x20\xb0\x39\x28\xd2\x31\x21\x28\xb1\x6f\x46\xf1\xe0\x76\xd0\x2a\x0d\x40\x18\xfd\x3e\x76\x83\x17\x6d\x70\x43\x56\x77\x00\x46\xe3\xfd\xb6\x63\x00\x1d\x69\xf0\xf8\xb7\x6a\xe2\xa7\xef\xd9\x10\xef\x38\x00\xba\x7f\x07\x7f\xf7\x2a\x1c\x04\x58\xfd\x1d\x20\xed\xa8\x55\x3b\xd8\x9f\xdf\x67\x30\x96\xfa\x83\x88\x68\xa5\x37\x25\xc8\x84\x52\x6a\x53\x3a\x71\x5e\x88\xd9\x23\xa0\xb2\x6f\xa6\xca\x13\x9c\xd7\x2c\xe9\xc4\x12\x04\x4d\xe0\x82\x03\x34\xa9\xbf\x8b\x3c\x4c\x8b\x9e\x37\xaa\xe8\xda\xae\x99\x61\x41\x49\x73\xce\x60\x9d\x4d\xee\xff\x94\x19\x63\x3b\x3e\x66\xe6\x94\x11\x34\xdb\xa2\xb6\x5b\x46\xb4\x4b\x8e\x41\x0f\x90\xc9\x90\xbd\xdf\x32\x32\x19\x5a\xfc\x68\xbf\x29\xf7\xa5\xad\x6b\x14\xa8\x87\x4d\xf6\xde\x94\x91\x88\x5c\x95\x09\x96\x32\x9c\x21\x4d\x81\x5f\x29\x43\x00\xef\x49\x1c\x3b\x23\x98\xbb\xc9\x46\x9c\x32\x83\xa5\x25\x53\xa7\x12\xe8\x22\x10\xc5\x14\x18\xfd\x6c\x43\x4f\x05\xe9\x61\x4d\x79\x6f\xa9\xc0\xa7\xdb\x94\x6a\x93\x0a\xf5\x30\xe5\xcb\xa6\x02\x8f\x53\x93\x9d\x3f\x95\x29\xd9\xcf\x07\x1f\x38\x0a\x96\xa1\x25\x11\x66\xb9\x10\x36\xb7\x55\xbd\xf1\xc0\x38\xa8\x04\xd9\x04\xb7\x7b\x68\xf9\x23\x9d\xa7\x8a\x80\xcf\x11\x3e\xfa\x44\xaa\x19\x9d\x2a\xa4\x37\x55\x04\xfd\xb7\xfc\xd1\xb0\x52\x85\x07\xaf\x29\xe4\x2b\x55\xe8\xc4\x4d\x22\x7c\xaa\x70\xdc\x34\x4b\x17\x0d\x2e\xef\x56\xc4\x39\x1b\x5c\xde\xad\x88\xd7\xb6\x56\xf8\xe0\x33\x97\xd6\xe9\x98\x11\xeb\x69\x58\x97\x56\xfc\xe0\x86\x2b\x4c\xb9\xdf\xa9\xdd\xc0\x58\x69\x7a\x83\xd3\x2f\x02\xbd\x3d\x17\x1f\x7c\x46\xe9\xf0\xad\xb4\xf2\x31\x27\xa6\x0e\xfb\xf4\x8b\x45\xf6\x44\xfd\x58\xb2\x54\xcf\xfc\x44\x47\x57\x2f\x9c\x8b\x66\xdb\x2b\x21\xd5\x61\xd7\x77\x64\x0c\x4b\x69\x4d\x1d\x8e\xbf\x21\xab\x6b\xea\xcf\xfe\x3b\x27\x68\x1a\x38\xb3\x5b\x15\x8d\x0d\xf8\xa9\x5b\x15\x17\x18\x48\xc1\x69\x55\xcc\x7f\xec\xc8\xb3\x53\x58\x6d\x1a\x50\x5d\x37\x23\x68\x2f\x27\x1f\x7c\x56\x6e\x27\x15\xb6\xa0\x37\x60\x3e\x6b\xb2\xd7\xa7\xbd\x23\x9d\x6b\xca\xf3\x3f\x38\xa0\xf6\x93\x20\x88\xf7\xee\x0c\xdd\x56\xf0\x7c\xda\xe1\xa1\x6b\x0a\xab\x49\x3b\x3c\x74\x4d\x41\x59\x69\xbf\x31\x51\x99\xf4\xd3\xfe\x30\xe6\x50\x0c\xfb\xd8\x08\xb5\x90\x45\x1f\x7e\x53\xea\x7d\x3a\x10\x6e\xdc\x94\x43\x9c\x8e\xc8\x98\x35\x11\xe0\x81\x14\xa7\xa6\xc4\x9e\x74\x34\xc2\x21\xc5\xe8\x80\x37\xbd\x29\xe5\x2f\x1d\x60\x2e\x76\xd4\xa5\xa3\xb3\x0f\x2d\xc9\x01\x37\x72\x53\x56\x4e\x3a\x10\x24\x54\xcd\xe4\x0e\xf8\x4d\xeb\x10\x6b\x3d\x4e\xf6\x21\x3e\x70\x3c\x20\x2f\xf3\x92\xe3\x41\x3e\xa5\x35\xa6\x13\xc1\xb9\x75\x48\x56\x3f\x11\xa0\xd0\x64\x04\x4b\x27\x46\x69\x43\xab\x78\xc2\x51\xda\x2c\x1c\x5d\x08\x97\x6c\x0a\xf1\x48\x17\x34\xe1\x36\x3e\x66\xdf\x74\x25\xd2\xac\xd6\xe5\xca\x38\x87\x25\x6e\x5f\xc8\x4d\x6b\x43\x64\x7f\x41\xeb\xe8\x9b\xb4\xeb\x0b\x31\x4e\xaf\x93\xf5\x3a\x97\x03\xfc\xb3\x0a\x17\x22\x5a\xbb\xac\x19\xe9\x06\x7f\x7a\x49\x96\x77\xe2\x64\x05\xd7\xcd\x3c\xed\xa0\x4d\x7e\x57\x8e\x22\x3d\xe2\x46\x4a\x5c\x97\xcd\x35\xdd\x38\x37\xba\x6c\x32\x89\xa1\x14\x7d\x13\xaf\xbd\x99\x4e\xa5\x5c\x88\x84\x30\x86\xd0\x37\xb1\xb4\x9b\x99\x90\x4a\x8e\x48\xf0\x23\x84\xee\xcd\x45\x33\x75\x1d\x3a\x37\x60\x6a\x0e\x5d\xc9\x2b\x09\xb6\xe5\xf0\xd2\x65\x61\xfb\x0a\x2f\x95\x08\xc6\xad\x90\xad\xe3\xd0\x18\xd3\x83\xa6\xff\x5c\xec\x43\x2c\xed\xb9\x16\x4e\xd7\x27\x79\x4b\xfc\xe4\xa3\x98\xe5\x0d\xa9\x8d\x5d\x36\xce\xbc\x31\x99\x55\x79\xe1\x79\x55\xaa\xc8\x1f\xc0\x32\x03\xc6\xbb\xcc\xc4\x99\x99\xe9\x5d\x31\x30\x39\xe4\x07\x0f\x3e\xdc\x38\x33\x01\xda\xf1\x83\x39\xa0\x02\x48\xd7\xe1\x9c\xc3\xc1\x4f\x3e\x9e\x83\x8c\xf0\xe5\xd0\xe3\x47\xbf\xca\xe1\xbe\xf9\x40\xa3\x3c\xec\xf4\x83\xd3\xcc\x60\xe2\xae\xf3\x3c\xc7\x8d\x9f\x7c\xb6\x6d\x66\xca\x64\x56\x24\x52\x8e\x6b\xb6\x1f\x6d\x27\x33\x57\xab\xcb\xa4\x97\xe3\xc5\x07\x59\x9f\x20\x28\xa0\x2b\x63\x39\x27\xc8\x37\x5d\x5e\xac\x0c\xf5\x24\x74\x9d\xc5\x39\x21\x8e\xb6\xa7\x8f\xe2\x97\x13\xe7\xa2\xa4\xd4\x9c\xb0\xb1\xbb\x32\x4a\x73\x86\xae\xd8\x45\x52\x39\xb3\x2e\xc7\xeb\x0d\x1c\x02\x5d\x59\x20\x39\x83\xaf\x75\x25\xe0\xe4\x0c\xbe\xd6\x95\x05\x99\x33\x33\xf2\x65\xef\xc9\x19\xc9\xf1\x6d\xfb\x98\x23\x72\x46\x9e\x64\xcf\xaf\x07\x3b\x1f\x7c\x08\x26\xe3\xc4\xef\xb9\xaa\x53\xd8\x54\xbb\xce\xf3\x9c\x0f\x4e\x6e\x08\x74\x6e\x64\x05\x8a\xe7\xc2\xc9\x95\x0f\xd3\xce\x05\x99\x5b\xbd\x7c\xa4\xe6\x5c\xa0\x22\x66\x85\x40\xe5\x42\x14\x16\x2d\x54\x69\x6b\xcf\x7d\xe6\x52\x90\x09\xd8\x94\x47\x92\xcb\xc1\x51\x04\x47\x01\x60\x23\xf8\x93\x1b\x94\x5c\x43\xff\xc1\xf9\x95\x0b\xcf\x1e\x59\xb3\x73\x05\xaf\xed\x55\x2b\x50\x03\xfd\xd5\xda\x3b\x15\x1a\x5d\x97\x47\x3c\x57\xa6\xe8\x2a\xf3\x32\xd7\x9d\x6f\x7c\x38\x7a\xae\xab\x72\xce\xe7\x84\xcb\x75\xe7\x28\xda\x2a\x0d\x94\xd0\xeb\x47\xc6\xc8\x8d\x55\x49\x14\x27\x91\x1b\xc8\xbc\xb7\x4f\x84\x59\x6e\x2c\x5e\xa3\x00\xe0\x4c\x59\xa7\x2b\xa8\x33\xf7\x80\x85\x57\x72\x4c\xee\xac\x7d\xa2\x1c\xf8\xdc\xe9\x4b\x96\xf1\x2f\xf7\x8c\x75\x56\xf8\x42\xee\x10\x9f\xbb\xbc\x7b\x79\xc0\x3c\xdf\x64\x23\xc9\xe3\x06\xcd\xca\x96\x90\x07\x44\x9b\xae\x28\xf6\xbc\xc3\xcc\xd2\x65\x2c\xc8\x3b\xe2\xe9\xba\x4e\xc9\xbc\x43\x26\xef\x52\x9b\xf3\x01\xd5\x3c\xa9\x7e\x4a\x3e\x60\x49\xed\x0a\xf4\xcb\x47\x5b\x0b\xff\xe9\xf4\x80\x52\xd4\x15\x8e\x95\x8f\x93\x70\x88\x53\x1c\xd7\x7a\xe3\x33\x97\xe3\xa6\xf6\xf0\x51\xc4\xf2\x49\x21\x4c\xc6\xcd\x7c\x22\x88\x7f\x28\xb4\x33\x9f\x00\x6c\xc8\x7c\x98\xcf\x93\xfe\x26\xb1\x9f\x13\xc9\x66\x63\x13\xc6\xce\x3b\xf0\x93\xcf\x83\x0b\x3c\x6d\x28\x3e\x2b\x5f\x38\x27\x86\x7c\x28\xf9\xfe\x7d\x04\x50\xbe\x37\xc4\x41\xbd\xda\xd4\x72\x84\xaf\x7b\x83\x17\xb0\xb9\x03\x18\xfd\x8b\x7f\x47\x48\x4f\x70\x07\x03\x3e\x5d\xff\x0e\xaf\xde\xc7\x7a\x93\x6f\x26\x65\x66\xbf\xcf\x43\xe7\xf5\xe0\xfa\xfe\x4a\x45\x9c\xeb\xde\xe0\xf4\xfd\xd8\xc5\xf2\x8d\x7d\xd4\x7c\xa0\xdc\x88\xdb\x91\x55\x35\xdf\x10\x48\x14\xe7\x93\xef\xb0\xa6\xa4\x1e\xa1\xa8\x28\x35\x25\xdf\xa1\xa0\x83\xa8\x36\x1c\x99\xc9\xed\x86\x40\x1d\x0f\x80\x40\x0f\x6d\xd3\x3b\xc0\x8f\x35\xdc\xdf\x0d\x94\xf8\x7d\x44\x42\x46\xd1\xf1\x1d\x27\xd2\x87\x71\x14\xe9\x39\xd6\x80\xb1\xbf\xc3\xb2\xf2\x0d\xaa\x6e\x0a\x30\xcf\x37\x42\x69\x36\xb1\xc8\x1b\x67\x48\x8e\x5a\xf7\x1b\x1a\xb0\x83\x0e\xf3\x1d\xe9\x2c\x15\x96\xa1\x11\x37\x45\x51\xe7\x7b\x0a\x69\x79\xf3\x24\x60\x04\x53\xb9\x96\x7c\xa7\x29\xbd\x87\xcd\x84\x80\x70\x18\xc5\x8a\xe5\x3b\x51\x0b\xf7\x42\x81\xa0\xe5\x1e\xcb\xf7\x94\x26\xe2\xf0\xc2\xa2\xf6\x8e\xac\x37\xf9\x4e\xf0\x6f\x0f\xff\xfe\xbc\x83\xcf\xf2\x9d\x19\x9c\x26\x88\x10\xbe\x22\x5d\x3a\xdf\x60\x39\x59\xa9\x67\xf9\x46\xfe\x49\xcd\x42\x4a\xe6\x1e\x4c\x7e\xd0\xa9\xf6\x69\xc8\x8c\x90\x32\x13\x6b\x9e\xb4\xa8\xa8\xe1\x7c\x67\xb2\x06\x4d\x29\x23\x3a\xd4\x53\x46\x06\x5f\x53\x64\x72\xbe\x4b\xf9\xfe\xaa\xd9\x68\x2f\x44\x9a\x3a\x44\xcd\x1a\xa5\x12\xe5\x7b\x0a\x58\x39\x78\x3b\xa2\x62\x4d\x32\x2d\xa3\x60\x8d\x23\x77\xf3\x0d\x3d\x2c\x4c\x26\xf1\x83\x43\xe9\x2e\x4b\x69\x55\x1b\xf3\x29\x9a\x7f\x81\xc7\x34\x0a\xbc\x1a\x11\x92\xe5\x76\xe2\x68\xea\x60\xca\xc3\xf3\x81\x16\xa5\x92\x54\xb3\x16\xa1\x81\xd6\xc5\x08\xef\x06\xa7\x72\xd7\x04\x50\x49\x61\xc8\x6b\x94\x6f\x96\x45\xf0\x0c\x11\xa9\x9d\xe5\xd7\xce\x37\xca\x24\x54\xb3\xb4\x1e\x81\x33\xe1\xbc\xff\x2e\x28\x31\xdf\xbd\x62\xb7\xf9\x77\xb8\xa1\xc5\x45\x11\xda\x1c\x9b\x29\x7f\x4a\xf0\x39\x98\x8c\xfa\x81\x20\x4b\xb7\xcf\x77\x90\x63\xbe\xa1\xbb\xe5\x17\x21\x22\x12\x3a\xb8\x0d\x21\x28\x9a\x5f\xc0\x92\x34\x4c\x86\x0c\x2c\xf0\x56\x1c\xb4\x78\x6b\x40\xc6\x39\xcb\x51\x99\x11\xe7\x1c\xc3\x66\xba\x1b\x93\x6c\xde\xed\x81\xb6\x90\x8e\x50\x82\x4d\x27\xeb\x0d\x9f\x4d\xd0\x69\x7d\x53\x1a\x52\xe8\x50\xbe\xa7\xa0\xe1\x90\xdb\x7c\xef\xc0\xb1\x09\x1f\xea\xa9\xcf\xcc\x7b\x27\xc8\xfe\xbe\x22\x56\x51\x53\x80\x05\xaa\x76\xad\xe1\x3e\x37\xd6\xd6\x04\x20\x5c\xf7\xa3\x79\xbc\x87\x33\xd4\x83\x29\x1c\xe4\xe0\x8d\x32\xe5\xc8\x6c\xe9\xea\x9e\xea\x71\x56\x54\x71\x5e\x91\xca\xaf\xad\x7c\xec\xef\xd0\xd3\x7c\xa3\xd8\x9f\x43\xde\x33\x43\x99\x9b\xf5\x92\x7b\xea\x9c\x31\x19\xa6\x73\xaa\xb1\xc5\x48\x3d\x89\x13\xf5\x48\x55\xf9\xb5\xce\xf3\x00\xcf\x4a\x0c\xcc\x08\x64\xce\xaa\x55\x98\x6f\x58\x03\x6b\x71\x87\x9d\x1d\xb8\x47\xf8\xcb\xab\x3b\x38\x18\xd3\xad\xf6\x85\x0e\x35\x85\x13\x84\xe7\x9d\x71\xce\xed\x5c\xbc\x5b\x91\x17\x9a\x93\x0f\xeb\x29\x6b\xc7\x60\x96\x8b\xca\x3f\xaf\x65\x9c\xea\x4c\x54\x89\x84\x8c\x18\xe8\xac\x5c\xec\x8c\x10\xe8\x54\xa2\x07\x18\x08\x01\xd2\x04\x68\x56\x54\xa6\x58\xbe\x51\xf4\x27\xbc\x28\x71\xea\x47\xd5\x8b\x70\x61\x06\xd1\xef\x3f\x68\xeb\xf5\x7b\xcd\x40\x2f\xdc\x8c\x60\x16\x4a\xee\xc8\x01\x44\x08\x77\x42\x54\xab\xa6\x74\xcf\x45\xd9\x4c\x17\x90\xea\x43\x15\x04\x37\x39\xda\xeb\x83\x83\x73\xd0\xa4\x6f\x60\x3d\x7a\x48\x84\x79\x67\xb7\x17\xed\xaa\x4b\xda\x61\x24\x3d\xdf\x0f\x4f\x89\xa2\x2f\x9e\x88\xc3\x59\x93\x82\xae\x3a\x82\xb7\xcf\x53\xf8\x85\xf0\xf0\x54\xea\x22\x6a\x73\x61\xfc\xc1\x3c\xc8\xa2\x84\xfe\xfb\x39\x81\x26\x7f\x4f\x9e\xe5\xfd\xf4\xdc\x04\x5a\x4b\xf9\x90\xed\x6a\x87\x21\x76\xbc\x27\x09\x2d\x88\x1d\x0f\xa5\xfd\xc4\xdd\x94\x11\x58\x3e\xbb\xef\x7a\x00\x97\x9a\x98\x28\x23\xc3\x83\x32\x31\x32\x43\xc3\xcd\xa2\x1e\x3a\x3b\xb5\x17\x10\xfd\x3d\xe1\x33\x3c\x4b\x90\xf4\x17\xb0\x8c\x4a\xb0\x7c\x3e\x95\x28\xd5\xc6\xee\x90\x22\x8e\xf8\xef\xa4\xc4\x8d\x8c\xf8\xef\x50\x45\xbb\x88\xff\x8e\x61\x13\x52\x9f\x50\x08\x82\x46\x0c\xf4\x4c\x14\x77\x49\x46\x3d\xdc\xc7\x3a\xed\x04\x44\x60\xaa\x87\xb0\x3c\xd5\xf2\x2c\x8f\x7f\x46\x90\x77\x92\x4d\x3d\x23\x68\x7a\x76\x20\x3c\x44\x8a\x24\xe2\x3a\x08\x8b\x4e\xaa\x82\x97\x11\x16\x9d\x65\xa8\xcd\x0c\x8b\x1e\x0a\x93\xc8\x88\x83\x9e\x40\xfa\x0b\xc4\x79\xe9\xb8\x79\x96\xe8\x67\x20\x29\xfa\x89\x8d\x20\x12\x7a\xce\x5b\xb3\x42\x25\xc6\x62\x20\xe1\xfe\x4c\x46\x7d\xda\xc1\x67\xfc\xfb\x5a\x4c\x3f\x40\x28\xb0\xd7\x12\xde\x4f\xf9\x3c\x32\x43\xa1\x9b\xd2\x08\x33\x63\x9f\x83\xe5\x57\x04\x3b\xcf\x07\xea\x02\xe2\xe2\xa6\x2d\x84\x68\xe6\x38\xb4\x03\x10\xcd\x9c\x5f\x98\x86\x70\x58\xad\x9f\x32\x9c\x39\x27\xf1\x6f\xc4\x27\x07\x19\xd4\x32\xe2\x93\xd3\xd6\xdc\x03\xa2\x06\xb4\xe9\x10\x9f\x1c\xcd\x9a\x56\x7c\xb2\xa9\xa5\x2c\x90\xd5\x61\x01\xef\xf2\x52\x16\x4a\xb8\x3a\x72\x56\x84\x72\xf6\x08\x28\x15\x20\x86\x0f\xcb\x62\x56\x96\x50\x46\x84\xf2\x44\x9b\x47\x18\x50\xae\xfc\x02\x64\x1f\x09\xc4\x08\x51\xce\xaa\x46\x94\x1f\x8a\x9b\xd9\x10\x91\x17\x1a\xa0\xc9\xbf\x4b\x35\x40\xb0\xb9\x36\x0f\x50\x17\x03\xd7\x08\x4b\xa4\xd4\x99\xf1\xd0\x18\xac\x4c\x9c\x8c\x28\xe2\x6c\x75\x1c\x51\xc4\xb3\x4f\xe1\xb9\x32\x6e\x5a\xc2\x02\xe2\x84\x63\xb0\x18\x8d\x40\xe1\x6c\x1d\x13\x81\xc2\xd9\xaa\x36\x02\x85\xe7\x07\xea\x12\xce\x0b\x9b\xf1\x60\x80\x4d\xc5\xc4\xd4\x70\x94\x4b\x45\x44\x2c\xef\xec\xc0\x0f\x28\xa8\x47\x0f\x09\x4c\x26\xf7\x08\x76\x25\xd1\x9a\xd1\xba\xb6\xac\x22\x3a\x77\xf6\x28\x54\x76\xaa\xb1\xa6\x06\x98\x9e\x95\x6e\x9f\x11\x9f\x1b\x86\xe2\x95\x32\x03\x74\x5b\xf4\x6a\x74\x40\x2d\xed\x04\x11\xb9\x59\x36\xf4\xcc\x88\xdc\x60\xd1\x17\x21\xb9\x2f\x4b\x24\x42\x72\xb3\xaa\x3e\x64\x84\xe4\xce\x0f\x84\x97\xce\x84\x24\xc3\xb4\x56\xc2\x0f\xb0\x12\x32\x2f\x20\x28\x77\xbe\xa0\xd5\x9d\xc2\x72\xb6\x49\x03\x51\xb9\x5d\x41\xfa\x19\x51\xb9\xf3\x03\x3f\x40\x14\x5f\xff\x49\x5d\xd3\x8c\x18\xdd\xfc\xa2\x5f\xc4\x43\x65\x2b\xa1\x08\xd2\xcd\x36\xfa\x21\x48\x77\x0e\x67\x78\x80\x12\x13\x34\x5c\xfc\xd5\xe7\xd6\x20\x53\x70\x9b\xfc\xd9\xc7\x08\xc2\x72\x43\x30\xf7\x64\x18\x9e\x8f\x15\x18\xf9\x92\x79\xdf\x7e\x60\x4f\x09\x65\x90\x9d\x9b\x3b\x84\xec\x5c\x24\x4d\x20\xec\x35\x0c\x1f\x21\xc7\x22\x1c\x75\x78\x14\x70\x67\x81\x88\xb8\xd5\xe1\xa3\xf5\xa0\xd1\xc8\x3d\x1e\x44\x82\xd7\x1d\xb6\xd1\xac\x7a\xbe\xf9\x39\xa0\x08\xbb\x4d\x93\x99\x97\xfd\x04\x27\x93\x5c\x87\x50\xd3\xf0\xc2\xe2\xb9\x48\xd5\x1f\x54\x0e\x29\xa0\xce\xce\x07\x5a\x77\xe4\xad\xdb\x8e\xce\xe0\xd2\xe4\x33\xe5\xa4\xdc\xe6\x69\x9d\x24\x56\x73\xcf\x13\x81\x6a\x66\x1b\x14\x9f\x4d\xbc\x27\x45\x20\xcb\x20\x17\xd8\x86\x31\x7f\x81\x56\x8d\xc8\x6b\x61\x5a\x30\x5e\x74\x18\x98\xba\x2f\xa8\x04\x3e\xc7\x50\x48\xb3\xfb\xd0\xb9\x40\x7e\x3e\x38\x2f\xf0\x63\x6f\xe9\x0b\x5c\xc4\x87\xfd\xc5\x39\x99\xcd\x4c\x79\x3a\x55\x33\x64\x0a\xd0\x26\xa6\x29\x40\xb7\x6a\xe2\xb8\xa1\xd4\xb8\x43\xca\xcf\x96\xc0\x9f\x29\x3f\xa7\xf6\xea\x80\x32\x8e\xf1\x7e\x23\xec\xdc\x20\xde\x18\xd1\x2b\xf9\x70\x87\x4b\x5e\x7e\x20\xfe\xa6\xe6\x49\x3f\x44\x9b\xb4\xc1\xe7\x81\x65\xc7\x4c\x62\x8a\xbf\x49\x55\x42\xf2\xf3\x60\x17\x57\x77\xd0\x91\xa4\xab\x49\xd0\x05\xfe\xfa\x7e\x61\x49\xbb\x7c\x89\xbf\x3e\xe7\x1e\x2c\xbd\xb7\xc8\x83\x12\x3e\x1f\x25\xa0\xb0\x46\xd6\x26\x03\x5b\x41\xec\xf0\xdc\x23\x49\x0f\x60\x75\x28\x7e\x81\x30\x76\xb5\x1b\x61\xc8\x7a\x00\xb3\xc3\x47\x73\x29\x1b\x0c\xa5\x56\xca\xcb\xb6\x51\xd4\xf3\x0b\x14\x70\x8b\x7b\x98\x6b\xad\x43\xaa\x6c\x10\x70\xab\xf2\x6f\xca\x36\x25\xdc\x22\x43\x66\x59\xb5\xbc\x54\x20\xbb\xa0\x9c\x57\x96\x50\x5d\x10\x01\x9d\x5e\x93\x08\x54\x69\x3f\x22\x4d\x41\x51\xaf\xac\x80\xd3\x82\x32\x5e\x61\x54\x8f\xb0\x66\xe9\x17\x28\x45\x75\x01\x4d\x09\xb8\xba\x47\x52\xb8\x7f\xa7\x28\xf8\x91\x59\x0a\xeb\x7d\xb5\x68\x44\x85\x8b\x63\x18\x6a\x84\x9e\x75\x8f\x09\xb9\x2b\xa8\x87\xc8\x59\xaa\x03\x84\x20\x26\x83\x84\x44\xc8\x9a\xd5\x1f\x12\x21\x47\xd1\x42\x44\x2e\xad\x96\x12\x01\x88\xb5\xf9\x7b\x1e\x22\x3f\x2a\xad\x5d\xb6\x88\x2d\xfe\xea\x1d\xe2\x4d\xd5\xa2\x45\x22\xc4\xd0\x1c\x48\x3b\xf5\xef\xd4\x10\x3c\xfa\x14\xc1\x36\x2f\x11\x63\x9d\x92\x57\x3d\xad\x0d\x28\xf8\x29\xcf\x4b\xd4\x2d\xdb\x27\x30\x45\x6d\x26\xee\xb9\x87\xb5\x26\xc2\x30\x22\xa3\x93\x09\x0d\x9e\xab\xda\xbc\x5f\x32\x51\x2c\x42\xca\x30\xd7\x54\xb7\x17\x08\x1a\x22\x43\x72\xed\x9a\x35\xa5\xf1\xa6\x35\xcc\xc0\x9a\x71\x9e\x59\x73\xc9\xbf\x73\xf7\x24\x83\xb4\x76\x8b\x41\xa2\xca\xd0\xfc\x06\xce\xac\xa0\x49\x15\x70\x77\xff\x5e\x16\xf1\x6b\xcc\x02\x3a\x30\x21\xc2\x98\x2b\xf7\x70\xd9\xca\xa2\x03\xf7\xc0\x73\xd3\x78\xa3\x78\xdd\x04\xd3\x14\xa7\xd3\xf6\xea\xf1\x21\xd0\xfa\xa0\x72\xed\x92\xf0\x82\x1c\xbe\xf1\x22\x8f\xba\xa0\x54\x9f\x95\x6e\x4a\x41\x5d\x69\x3d\x4c\x7e\xc0\x3d\x9a\xb4\xdc\x95\xb2\x6a\x72\x17\x20\xb1\xe6\x31\xb8\xe3\x92\x96\xaf\x71\xfd\xd5\xc3\x92\x9f\xb3\x96\xa3\xb1\x68\x9b\x3f\x40\x6e\x71\xd4\x44\x21\x4f\x6f\xc6\x75\x63\x2c\x8f\x60\x5c\x7e\x2b\x93\x64\xe3\xfa\xbb\x8d\x4a\x76\x5e\xbc\xce\xc5\xd3\x80\x4b\x7c\xce\xa2\x71\x5a\x85\xbb\xdb\x14\x30\xb2\x86\xec\xd4\x8d\x3c\xeb\x4e\x92\xca\x42\x4b\xc7\xd9\x6a\xaa\xef\x4b\xb4\xf3\xa0\x14\x18\xbc\x5a\x4b\xba\x35\x8b\xa6\x3f\xbc\x08\x0f\x14\x5e\x87\xf0\x36\x28\x07\x75\x3f\x58\xab\xa7\x89\x0f\xc8\x41\x5e\xee\x29\xa0\xa6\x6c\x16\x3e\x40\x62\xaf\x0e\x0e\x82\xe0\x17\x4e\xf6\x28\xa8\x97\x84\x5a\xf5\xc9\x4e\x1a\x33\x8f\xde\x17\x8d\x69\x1a\x3b\xed\x7a\xc6\xe6\x4e\x37\x84\xdb\x17\xf4\x4a\x41\x79\xd0\xe4\x65\xdc\x1d\x30\x9e\xbe\xda\x60\x10\xe6\xe1\x07\x0e\x9a\x2e\x44\x1d\xb4\x41\x08\x46\xe4\x56\x65\x4f\x62\x89\xa8\x3e\x8f\x0f\xd2\xac\x0f\x16\x06\x1a\x6c\xc2\xc3\xc9\xb5\x31\x83\xa0\x3d\xd7\x2c\xe8\xa4\x15\xce\x6c\xf0\xa4\x66\x6a\x20\xa7\xd4\xda\xea\xeb\x05\xda\x41\x5e\x5d\x10\xd7\xde\x17\xc8\x68\x8a\x2f\x20\xc8\x94\x4c\x00\x48\x69\x52\x8e\x74\xd9\x60\xb2\xad\xcd\x5d\xc2\x09\x5c\x87\x30\x7d\x51\x1f\x32\xcb\xb8\x08\xe5\xf8\x49\x98\x5d\xd9\xae\x82\xa2\x04\xee\x1e\x3c\xcd\x3b\xfb\x82\x2b\x72\x68\x8a\xac\xfe\x2b\xe3\x50\xd9\x2e\x64\xad\x7a\x27\xd3\x82\xeb\x9d\x7f\x51\xdd\xf1\x26\xb9\x49\x0a\x3e\xd0\x96\xc8\x69\xfa\xbb\x41\x0b\x1e\xf3\xce\x7c\x41\x73\xbe\xb1\x97\x8d\x34\x06\x2c\x24\x6f\xf6\x1b\xa9\xa7\x16\xbe\x6e\xfa\xd6\x7d\xc8\xde\xb4\xe5\x64\x8f\x01\x43\x86\xd1\x7a\x63\x1a\x2f\x20\xb9\xb5\xb3\x1e\x3c\xac\x54\xb7\x69\x5e\x0f\xed\x6a\x66\xbc\x2c\xbe\xd1\x4c\x2e\x0f\xb7\x91\x91\xfb\x70\xf7\x6b\xd0\x87\xf3\x12\x45\x3e\xe4\x51\x26\xb0\x07\xb2\xc2\xf0\x10\x64\x51\x9e\x17\xec\xbe\xd5\xab\xf3\xac\xbd\xfd\xe9\x92\xf5\x3d\xeb\x47\xad\x2a\x8c\xd7\xaa\xba\xf3\xa7\xf0\x66\x21\xe5\x3a\x14\xde\x23\x54\x75\xf1\x43\xe1\x3d\x42\x43\x02\x7e\xe1\x3d\x42\x59\xc6\xb9\x12\x68\xba\x1d\x7e\x81\xe2\x83\x18\x69\x58\x72\xa8\xd8\x22\x2e\xf8\x89\x96\x2f\x02\xc4\xcc\x28\x76\x12\xe0\xa1\x57\xd4\x42\x41\xcd\xd0\x1c\x24\x8d\x87\x15\x5d\xe1\x21\x03\xf5\xa8\xa4\x36\xd9\x83\xf1\x00\xb1\x33\x7e\xec\x35\x25\x2c\xb1\x53\x6c\x12\xb7\xf9\xcc\x07\x9a\x37\xa4\x4a\xc5\x7e\x15\xd4\x29\xcd\x2a\x07\x55\x42\xe4\x46\x14\xd1\xe1\x5a\x9d\xa4\x4a\xaa\x85\xb7\xe6\x04\x0b\x18\xb8\x24\x67\x3e\x10\xe2\x52\x44\xe9\x33\xf5\x90\xc8\x81\x24\xe5\xe0\x96\x9c\xf9\x85\xfa\x4c\x2b\x06\xdd\x6f\x34\x40\xe5\x17\x48\xf9\x12\x0f\x71\x27\xce\xec\x42\xa8\x4a\xc4\x84\x81\x38\xd0\x16\x22\xe0\x96\x57\x6c\x55\xe1\x65\x36\x2a\x03\x52\x02\x0d\xad\x96\x16\x78\x9f\x8d\xaa\xd4\x16\x5e\x67\xa3\xbb\x0a\x0a\x6f\xb3\x49\x9e\x75\x46\x59\x05\x2f\x36\xdc\xf4\x55\xdb\x1f\x01\x83\xb1\x79\xf1\x33\x35\x08\xa1\x31\xc3\x22\x33\xdc\x66\x8d\x67\x03\xc8\xba\x30\xee\x1f\xf6\x13\xd3\x4a\x66\xa5\xa4\x6c\x00\xd7\x42\xa9\x07\x18\x6e\xa3\x69\xa3\x44\xf4\x28\x88\x0a\x97\x5e\xd2\x07\x6e\xaf\xc9\xaa\xd9\x55\x58\x22\xb6\x2a\xe8\xa8\xe0\xae\x9a\xf9\xc0\x6f\xd0\xbc\xd1\xdd\xe7\x8e\xea\x33\x6e\x9f\xac\x65\xa0\xf6\x62\x48\x1a\xb3\xd2\xcb\x64\xea\xa9\x84\x52\x78\xa9\xe4\x36\xc2\x3b\xca\x3b\xf8\x34\xe3\x25\x32\xc1\x22\x12\x2e\x91\x09\xce\x9f\x2d\xb8\x44\x26\x2a\xa3\xbd\xe0\x92\x18\x57\xe0\x29\xbc\x24\x66\x54\x8f\x00\xd5\xa4\xfe\xc4\x45\x54\x70\x7f\x4c\x8e\xe6\x4c\x8d\x07\x9d\x3a\x63\x3c\x79\x32\x1d\x34\xaa\xe0\x92\x9e\xc3\x32\xd2\x0a\x5c\xdc\x05\xa3\x0b\x2e\x4a\x60\x5c\xb6\x94\x10\xdc\x04\x93\x64\x0f\x2a\xbc\x0a\xe6\xcd\x76\x1a\x43\x33\x4d\x5a\x8d\xc1\x74\xda\x5d\x8d\xe6\x4d\x89\x29\x01\x62\xa8\xd2\x76\x4b\xe8\xf1\x5d\x93\xa8\x84\xbe\x26\xa1\x21\x96\xd1\xd6\x4c\xa1\x63\x55\x8a\x7b\xe0\x75\x00\xfe\x00\x25\x93\xa2\x47\xc4\x11\x20\x7d\x20\xa0\x2e\x5b\x4b\xe6\x6c\x1d\xe4\x1f\xdd\x01\x04\xa3\xd7\xef\x6b\x0e\x86\x00\x75\x91\xa2\xda\x03\x75\x23\xa4\x1d\x04\x58\x68\x15\x1d\x58\x50\xce\x38\x29\x0d\xbf\xa0\x9e\x71\x56\x28\x60\x09\x83\x31\x2e\xee\x8f\xd9\x28\xe6\x38\xb0\xb1\xbe\x98\x37\x13\x48\xdd\x21\xeb\xb7\x9a\x23\xc1\x40\x9a\x65\x72\x2a\x01\xd1\x09\x31\xb9\xbd\xb0\xec\x1e\xf2\xf7\x57\xeb\xa6\x2d\x54\x2e\xb0\xba\x1a\xf6\x0a\x90\xb5\x4c\xa8\x54\xa0\x94\x92\x12\xa6\x78\x9b\x2c\x80\x04\x24\x5d\xb4\x64\xa6\x88\xf0\x04\x05\x68\x95\x00\x71\x56\x51\x74\x05\x11\xcc\xd1\x1a\x77\x38\x70\xa0\x99\x34\x61\x82\xed\x9e\xc1\x14\x6f\xf3\x66\x06\x72\x2c\x36\xee\x0e\x77\x3e\xd0\x14\x0e\x8a\x9a\xc5\x43\xa0\xfc\x95\x24\xe4\x70\xc0\x4a\x62\x2c\x1f\xe4\x72\x32\x83\xe0\x1e\xa2\xf9\x40\x5d\x9e\xb4\x5e\x9a\xcf\xb1\x32\x9b\x8f\xe9\x13\xb3\xf0\x91\x08\xa3\x6d\xf6\xc2\x9e\x0b\x6a\x7f\x00\xe2\x95\x9c\x16\x4e\xba\x72\xbc\xc9\xcf\x03\x67\x81\xe6\x3d\x05\xe8\x34\x3c\x4b\x56\x04\xa8\xfe\x9d\x0a\xb3\x0f\x1f\xc6\x48\xbe\x78\xf7\xb5\x66\x25\x18\x18\xe3\x60\x39\x1f\xb7\x1b\xd9\x91\x5c\x78\x97\xd1\x78\xf1\x41\x18\x5d\xa3\xd9\xde\x85\x72\xb3\x46\xdc\xc5\xe8\x19\x01\xc9\xdc\xa9\x17\xa7\xba\x08\xa5\xd9\xc4\xbd\xbd\x4b\x8f\x95\x30\x65\xe2\xd4\xbc\xa5\x6e\x8a\x8e\xde\x02\xf7\x02\x5a\xd3\xba\x81\x6a\x33\x1a\x48\xbc\xc3\xa7\xf2\x4d\x4c\xbb\x03\x54\x56\xf3\x71\x72\x23\x20\xc0\x87\x34\xe4\xdf\x68\x89\xec\xa6\xf8\x23\x7d\x2a\x3c\x04\x59\x1f\x40\xdc\xd5\xad\x03\x25\x3c\x0b\xcf\xa2\xb7\x67\x6d\x42\x3f\xa0\xf7\x52\x1a\x19\x6a\x86\xbb\xe0\x5a\x09\x0f\x53\x5c\x04\xf3\x43\x43\x85\x85\x1b\xd8\x79\xa3\xe9\xef\x41\x74\x9c\x27\xfd\xd0\x05\xe0\x01\x60\x20\xfd\x91\x6b\xa8\x04\x98\x80\x15\x7c\x53\x50\xc1\xdc\xe5\xdf\x0a\xea\x95\xc7\x22\xaa\x88\x1b\xce\x78\x31\x21\x96\x2f\x1f\xe6\xa3\x28\x5f\x9e\x14\x2f\x54\x90\x70\x10\x15\x03\x55\x56\xf1\x72\xd1\xfa\x2a\x55\xbe\x19\x00\x90\x5d\xf1\x80\x00\x50\x2b\xc2\x3a\xe5\xaa\x0f\x53\x58\xa6\xbc\xd9\xee\xc9\x42\xe5\x59\xd7\x34\x96\x48\xb1\x5a\xd6\x87\x88\x6c\x6f\x45\x3c\x94\xc8\xf8\x05\x45\xd7\x94\x88\xc8\x57\xa5\x87\x96\x18\x28\xa5\x0c\xbf\x70\x81\x0c\x05\x73\x24\x15\x48\x24\x88\x91\xb1\x04\x7e\x01\x35\xc5\x82\x7f\xaf\xc4\x5a\xd6\x03\x08\xb0\xc5\xed\xb5\x1b\x8b\x1e\x0c\x04\x14\x0a\x68\xd8\x4b\xe5\x2e\x2e\x71\x45\x48\x18\xcf\x91\x78\x53\x3b\x61\x61\x0d\x22\xea\xc0\x45\x63\x29\xad\x85\x14\xcc\x89\xf1\xc0\x7e\x01\x74\xa9\x23\x1a\x75\x2a\x82\x6e\x64\x29\xa8\x53\x91\xe3\xeb\x77\x46\x3b\xb8\x3f\x0a\xa8\x6e\xd3\x54\x29\x3a\x8f\x0c\x55\x10\xb3\x47\x21\x89\xec\xcd\x1b\x97\xf5\x54\x72\x49\xcc\x70\x23\x45\xb7\x57\xb5\x56\x81\x40\xf3\x68\xf6\x0b\x73\xdd\x9a\x91\x98\x71\xe6\x4b\x49\x8f\x14\x60\x25\xc9\xf1\x1a\xb4\xa6\x68\xa0\x82\x6b\xd0\x52\xf5\xb2\x7d\x04\x5a\x21\x61\x09\xb4\xc3\x6f\xf0\xc4\x32\xed\x14\x5e\x00\x27\x18\x98\xfc\x68\x46\x1c\x71\xdd\x85\x8d\x82\xb8\x06\x2d\x47\xef\xc8\xc2\x13\x4c\x0c\x83\xd5\xe3\xc7\x6b\x69\xeb\x92\x14\x34\x2f\xa6\x16\xc9\x5a\x86\x14\x9f\x68\x77\x05\x2e\x45\x4b\xc9\x43\x2c\xe3\xa9\x51\x8f\x60\x84\xf8\xea\x00\xd4\x57\x0d\xc2\x9a\x84\x1f\x50\x03\xf7\x5a\x55\x86\x1d\xe9\x05\x14\x2d\x2b\x9e\x75\x83\x78\xe5\x59\x37\xde\x16\xea\x36\xc8\x55\x6a\x26\x6e\x33\xcb\xd1\xd4\x87\xb2\x64\x96\x72\x23\xa5\x5e\x45\x5c\x14\x5c\x44\x96\xe5\x6d\x2b\xb1\x61\xed\xfd\x41\xa7\x61\xcc\x4b\xd9\x17\x63\xd1\x90\xac\x1f\xac\x03\x91\xb7\x8e\x35\x85\xef\x94\xd8\x17\x81\xfa\x01\xd3\x8f\xdc\x65\x07\x0c\x42\x42\xc7\xa6\xf6\x1e\xec\x8b\x58\xfc\xc1\xda\x23\x7e\x83\xb3\x10\x35\x51\x2a\x95\xa8\x81\xd2\x29\xd9\xd6\x7e\xe6\x6e\x65\x5d\x99\x5a\x50\x3b\x25\xdb\xad\x14\x97\x58\xaa\x13\x0d\xa5\x4f\x62\xb0\x3a\x80\xd2\x27\x2e\x00\x5a\x50\xf9\xa4\x27\xef\xeb\x41\xc7\xbb\x26\x05\xb9\x35\xe5\xf6\x93\xe3\x07\x35\x4f\xb2\x32\xf3\x4b\x64\x02\xa8\xca\x9f\x15\x5c\x5a\x30\xc1\xf1\x83\xfa\xfd\xd5\x75\xad\x6f\x89\x7b\xe3\x0b\x9a\xf2\x8e\x02\x9c\x12\x3a\x51\x35\x25\xd9\x22\x1a\x79\xa1\x92\x24\x44\x56\x41\x29\x46\x19\xee\x57\x0a\x36\x0d\xc4\x03\x39\x02\x66\x02\x30\xd2\xbe\x18\x19\xa5\x5a\x89\x39\xf1\xa0\xa6\xae\x35\x39\xa0\x8a\xf8\x08\xa5\x8d\xd6\xb6\x84\x78\xac\x3c\xfd\x4f\xfb\xdc\x30\x45\xb7\xb1\xc8\x3e\x62\x51\xc1\xaa\x99\xb4\x4f\x6e\x67\x1f\x37\x27\xfc\x0c\x12\xe4\x23\xc3\x0a\xac\xba\xe3\x7a\x35\x47\x01\x17\xde\xae\x96\x15\x3e\x57\x70\xbb\x5a\x52\xf2\x74\xe1\xf5\x6a\x2d\xbd\x1e\x30\xfa\xc8\x94\x89\xa8\x5c\x8b\x87\x11\x26\xdd\x60\x03\x44\x64\x18\xee\xe6\x41\x2f\x56\x2a\x35\x1b\xba\x50\x89\xcc\xb2\x05\xe3\x74\x6d\x50\x88\x30\xdb\xbe\x10\x77\xd1\x4a\xe7\xa3\x1c\x91\xba\xd1\xa7\x26\xaf\x71\xf3\xbc\xaf\x81\xd2\x8a\xfe\xfd\x00\xa6\x3d\xc0\xc9\x11\x85\xea\x0b\x27\x7d\xf6\x24\xc0\x8c\x7d\xca\x5e\xf0\xa6\x99\x98\x28\xe2\xfa\x4c\x5b\xb9\x4a\x86\x10\x66\xdf\x6a\xf6\x0f\xab\xaf\x6d\xe7\xf1\xe6\x06\xd0\x00\x14\x81\xa3\x19\xe5\x0d\xa5\xad\xbb\x83\xc6\xca\xd2\x6a\x77\x7e\xa0\x39\xde\x0c\xbe\xf4\x86\xbd\xb9\xc3\x4d\x3f\xf7\x9a\xb5\x80\x78\x68\xa9\xf4\x81\x40\x2b\xaf\x4d\x91\x91\xc1\x0b\x66\x54\x0f\xab\x02\x0b\x8a\x67\x2d\x9d\xc0\xa4\xd4\xeb\x33\xea\x59\x24\x29\xa8\x1e\x32\x6c\xb3\x02\x8a\xb5\x9e\x18\xae\x44\xa8\xcd\xf3\xa0\x95\xd7\x87\xd2\x83\x34\x0e\x0d\xc9\x6a\x45\x2a\x8f\x5d\x12\x92\xbe\x94\x6c\x5e\x90\x93\x9a\xa2\xcc\x57\xa8\x66\x34\x27\x19\xf4\x00\x52\x5b\xf6\x0b\x40\xbd\x0e\x5e\x14\x2f\x9a\x1a\x8f\x3f\x00\x7f\x17\x56\x50\x88\x28\x86\x28\xe6\x9a\x58\x9c\x79\x18\x84\x07\xc5\x93\xf5\x3b\x8b\x31\x6b\x8a\x29\x2c\xbc\x47\x3d\x48\xec\x51\x43\xc2\x46\xfc\x02\x01\xc2\xac\x7d\x02\x28\x5d\x94\x74\xb3\x43\x49\x94\x65\x6d\x49\x49\xb4\x11\x17\xbf\x80\x7a\xcc\xaf\x11\x0f\x7e\x20\x34\x22\x32\xa1\xf6\x17\xd0\x90\xaa\x8c\x47\x24\x82\x05\x9b\x4a\x12\x32\xc1\x86\x59\x74\x42\x4d\x66\x9f\xa4\x29\xd2\xe8\xd5\xd4\x4e\x80\xc1\xef\x67\xac\xa4\x10\x1f\xb9\x29\xa2\x1f\xa0\xc4\xaa\xb6\x21\x8b\x1d\x8d\xc9\xc3\x7f\x70\x08\xe1\x72\x41\x67\x50\x95\xc4\xd0\x01\x5d\x0e\x57\x50\x2a\xc9\xe9\x47\x85\xa5\x92\x46\x7c\x3d\x20\xc0\x42\x62\xa2\xe0\x28\xd3\x0a\x4a\x23\x39\x59\xa6\xa0\x32\x52\xca\xd2\xd7\x59\x19\x49\x17\xf5\x17\x14\x46\x7a\x89\xba\x28\x8c\x34\x41\x12\xca\xd2\x9a\xa1\x87\xa4\xea\x5a\xfd\x60\x6e\x87\xd7\xba\xe5\x0d\x20\x68\xc8\x1c\xde\x85\xba\x0b\x0a\x29\x85\xe6\x10\x14\x64\x64\xc7\x66\xd2\xca\x20\xb5\xe0\xdf\x59\xf9\x5b\x73\x84\x38\xae\x4b\x35\x0b\x8b\x2b\x0d\x93\x62\x66\xe5\x6f\x4d\x01\x85\x91\xf3\xab\x3f\x3a\x23\xaa\x21\xa4\x71\x47\x3b\x1c\xd5\x97\x1c\x9c\x5f\x50\x6d\x29\xd9\x39\x81\x6a\x4b\x51\x95\x72\x4b\x62\x24\xb1\x84\x71\xd6\x5a\xaa\xde\x9f\x28\x65\x6c\x99\x30\x41\x7a\x1f\x52\xfc\x12\x23\x19\x94\x54\x59\x12\xcc\xd3\x8a\xbe\x2b\xa9\x70\x73\x24\x3f\x38\xdf\xd5\xce\x4b\x82\xf0\x6e\xb9\x38\x21\xb2\xa1\x79\x77\x2d\x51\x5d\x62\x68\x82\xa8\x5e\xbb\xb1\x8e\xc0\x86\x61\xcf\x44\x5a\xd5\x19\x04\x53\x25\xe3\x34\x90\xf5\x77\x15\xd6\x4b\xaa\x44\xa3\xa7\x59\x17\xed\x08\xca\x4a\x28\x3d\x04\x6a\x26\x9a\x12\xda\xba\x1d\x52\xed\x75\xab\xbd\xda\x11\xfb\x53\x23\x36\xc6\x3d\x0a\x2b\xb0\x59\x57\x53\x06\x4c\xd6\xc3\xfb\xab\x21\xd5\xd4\x6c\xb2\xb1\xa4\xa6\xb0\xc6\x6c\xb9\x37\x00\x14\x47\x8c\x77\xc4\x19\x2b\x44\xbc\xa0\x06\x56\x48\xba\xff\xbc\xa4\xb6\xaa\x88\x7b\x0c\xd4\xa2\x94\x60\x9c\x60\xb3\x4e\x66\xac\x9d\x9c\xd6\xc4\xd4\x51\x27\x5a\xfa\x70\xe2\xdd\x20\x3e\x89\x79\xdb\x67\xb0\xed\x31\xa1\x6e\x61\xf6\xca\x31\xe3\xcd\x22\x11\x0a\x6b\x65\x0b\xbb\x28\xa4\x95\x86\xe9\x75\x70\xde\xde\x32\xa8\x10\x32\xbc\x43\x10\x76\x5b\xbb\xe9\x09\xc2\x78\xf7\x01\xb3\x63\xd3\x9b\x09\xa0\x90\x4e\xb0\xf1\x32\x2d\x81\xdb\xb8\xde\xb1\xcb\xcd\x5a\x77\xc2\x28\x98\x76\x24\x39\x98\x57\x43\xdc\xde\xac\x92\xf0\xea\xad\x61\x19\x2a\xf1\x1a\x8f\xf4\x7a\x03\x35\x3a\xbb\x61\x00\xf9\x49\x0e\x4c\x0c\xe5\xb5\xcc\x83\xfa\x5e\xd9\xde\x59\xd6\xf3\xb2\x37\x3e\xb1\xbc\x82\x8f\xcd\x63\x4d\x4a\x3d\x32\x8e\xc2\x26\xd8\x74\xd4\xf7\x2d\x03\x25\x1d\x6b\x13\xf9\x01\xcf\x49\x9f\x51\xc7\x9a\x96\x10\x73\x50\x1e\xf1\x0b\x14\xeb\x4d\xe5\xa8\xde\xd2\x52\xfa\xc9\xad\x43\x25\xf1\xc6\x10\x4b\x65\x89\x86\xe9\xe6\x36\xce\x18\x1f\x29\x67\x7f\x5f\x8c\x50\xd2\xc9\x85\x90\x9e\x91\x68\x66\x96\xdd\x0b\x45\xcb\x52\x97\xb6\x89\xa2\x65\xb1\x99\x2d\xc0\xca\x9c\x4d\x9d\xb8\x24\xd6\xfe\xeb\xb4\x24\x7a\x79\xbc\x51\xd5\x2c\x3a\x5c\x94\xb7\xc0\x36\x47\x0b\x24\x24\xd2\xbd\x68\x07\x71\xbf\x0e\x14\x4a\x17\x55\x35\x41\x78\x31\x24\xcb\x38\xbd\x50\x2b\xde\xc7\xe4\x14\xc7\xbb\xed\x6a\xe9\xe2\x96\xcb\xee\xf1\x61\xdd\x30\x4d\x02\xa9\x73\xc3\x72\x66\x82\x44\x6e\x7b\x62\x82\x40\xde\x4c\x9c\x77\x7a\xdf\x2f\x51\xd2\xbd\xea\x7b\xa9\xcd\x3a\x5b\xfe\x9d\xb6\x92\xe6\x17\xa8\x90\x5a\x6c\xbc\x71\xf6\x9b\x18\x6f\x64\x84\xbf\x40\xdc\xd1\xd6\x3a\x20\xf5\xae\x9a\x9a\x21\x9e\x67\xa3\x1d\x46\xeb\x17\x16\x11\xb4\xf1\xda\xc1\x08\xda\xb0\x0b\x1f\x75\x53\xa2\xca\x63\x96\x34\x85\xf9\x68\x9b\x41\x82\x0d\xfb\x25\xf6\xc2\x84\xfd\x12\xdf\x56\x0d\x34\x13\xc2\xc3\x0c\xb0\xe6\x37\x80\x83\xd7\x08\x10\x8c\xcd\x64\x9e\x8e\x11\xdc\x86\x8c\xa9\xcd\x86\xcb\x81\x5f\xb1\x59\x99\x79\x73\xb6\x32\x67\xc6\x6b\x68\x8a\x19\xe1\x1a\x46\x09\x2a\xc1\x44\x15\xf0\x2c\x19\x45\x43\x55\x74\xa4\x64\xdc\xb0\xa2\x94\xd2\x92\xb7\x75\xfd\x96\xda\x48\x6e\xde\x0c\x00\x9c\xe5\x9a\x50\x46\x8c\xb1\x92\xa9\x4b\x46\x12\xdd\x30\xc0\x48\xa2\x73\xbc\x62\xa6\xdc\xae\xad\x95\x03\x6b\x50\xeb\xd0\xce\x81\xba\x46\xf4\x1b\x54\xca\x64\xf7\xce\x08\xcd\xb0\x7e\x9d\x03\x56\x5d\xab\x9a\x03\xfd\xf7\x92\x45\x72\x60\xe1\x35\xe1\x28\xe2\xce\x26\x49\xb5\x39\x92\xf5\x8b\x1f\xe4\xb8\xd6\x55\xb3\x44\x41\x06\x2b\xbb\x79\x45\xf8\x36\x77\x49\x63\x91\xb6\x5b\x46\x14\xef\xbb\x4d\x26\x19\xdd\x05\x2a\xfd\x55\x8f\x09\x5a\xcd\xee\x91\x3c\x45\xdb\x31\x33\x4f\xcf\xfa\x49\x46\x34\x48\xb2\x68\x9c\x91\x86\xf7\x82\x7a\x5d\x40\xe2\x1e\x06\x0e\x28\xad\xcd\x14\xa5\x93\x3d\x18\x19\x91\x1d\x8e\xdb\xc9\x89\x88\x75\xff\x58\xeb\xec\xfe\xb0\x9d\x6c\x34\xc8\x14\xa4\x8d\x26\x56\x68\xd0\x49\x91\xf3\x2a\x55\x28\x08\x32\x95\x61\x99\xa0\x32\x62\x3f\xaa\xc9\x3b\x93\x65\x78\xed\xa6\xe8\x9c\x54\x03\xa5\x64\x06\x7f\xbc\x86\x60\x49\x71\x77\x70\x12\x6b\xee\x80\xa1\xfe\x3f\x2a\x90\x50\x72\xe6\xaa\x18\xe0\xb5\x2a\x1a\x1f\x82\xf6\x6b\x95\x60\x18\x77\xce\x75\xc9\x85\x8c\x58\x87\x4b\x2e\xd0\xa9\xfc\x45\xa5\x76\x61\x90\x97\x0d\x5a\xc6\xfa\xbc\x8c\xce\x92\x2a\x73\x5d\x58\x11\x58\x08\xc4\x78\xad\x7c\xa5\x78\x6e\xd2\xa8\x30\x19\x98\xaf\xd4\x25\x79\xf8\x01\xed\xd4\xde\x65\x48\x89\x4b\x9e\x28\xcc\xd0\x76\xd6\x65\xd4\x6d\x30\xb7\xcf\x8d\xde\xbc\xe6\x07\x10\x97\x5e\x1d\x82\x3a\x0d\x12\x45\x5b\xaf\x2c\x05\x55\xcf\xba\xad\xfc\x5d\xb5\xc9\x79\x84\x04\xd4\x81\xa8\xdd\xdb\xb8\x13\x62\x01\xc0\x90\x5f\xfb\x07\xf2\x12\x5c\xcd\x18\xa6\xe0\xfa\x32\x01\x67\x9a\xa9\x6d\xbd\xcf\x9d\x30\xbb\x07\x96\x2d\xd8\xfc\xc2\x42\xb4\xd0\x84\x0c\xb9\x2c\xb9\x34\xa3\x58\x84\xa3\x8a\x33\xa2\x2f\x1c\xe1\x9d\x57\xb1\x08\x89\x7c\x19\xc5\x22\x92\x79\x51\x27\xb9\xe8\x77\xdc\x9a\x67\x7b\x24\x2a\x6a\x4d\x08\x84\x17\x18\xba\xed\xe4\xcb\x0c\x21\x7e\xf5\xb8\x42\x88\xbd\xef\x61\xb7\xb6\x78\x93\x99\x91\x66\x97\x42\xde\x29\xaf\x99\x66\x57\xc4\x85\x2c\xbb\x19\x11\x17\x56\x2a\xf2\x0e\xcc\xea\x1c\xcc\x94\x9d\x0d\xe4\x2a\x49\x6a\x72\xda\x1b\xf7\xa9\x10\xb9\x43\x36\xf0\xc1\x82\x92\xdf\x39\x18\x84\xc5\x50\xdd\x25\xe8\xc7\x98\x45\x08\xf2\xe6\xf8\xed\xbc\x2f\x54\xbb\x0b\x16\x4a\x35\x09\x4e\xf1\x3a\xdb\xbc\x9c\x8f\xc5\x72\x85\x88\x03\xc7\xaf\x4f\x33\xde\x90\xe7\xd3\x72\x09\xcb\xde\x35\x07\x66\x61\xf2\x58\x65\x28\x64\x0c\xce\x07\xf5\x35\x2f\x17\x84\xe7\xe1\xd8\x13\x54\x91\xcd\xc9\x1c\xef\x60\x1d\x7f\x11\xc4\x01\x82\x31\x13\x3e\x18\x08\x26\xe1\x33\x43\xda\x0e\xee\x70\xca\xd3\x49\xb7\x3f\x96\x8c\x38\x67\x8b\x69\x99\x75\x2b\x5e\x3b\xf1\xe4\x36\x71\x07\x8b\x80\xdc\x03\xb6\xb2\xf7\xd5\xc9\xb5\x13\x88\x10\xc0\x83\x77\xea\xc9\x23\xfd\xd5\xe3\x5a\x1a\x61\x81\x37\x3b\x58\xd1\xce\x17\xbb\xd4\x0b\x37\x2d\x51\x1e\x83\xd2\xab\x89\xf8\xc6\xac\x0c\xe3\x94\x35\x5b\xb3\x9c\x71\xc3\xe0\x6d\xc1\xe9\x26\x3d\x25\x77\x40\x8e\x68\x86\x45\xe9\xd2\x4b\x47\xe9\xd2\xe4\x74\xf3\xfa\x25\xb3\x13\xd6\x75\x78\xed\xd5\x07\xe9\x54\xa6\xe1\x15\x12\xf1\xa3\xfb\x87\x4a\x5e\x86\x61\x6f\x09\x0a\x8b\x5e\xe8\x87\x67\x5d\xf2\x78\x84\xd8\x6d\x9e\x45\xde\x23\x48\x6b\xd3\x0d\x1f\xa5\x40\x7a\x74\x18\x52\x61\x0c\x83\xcd\x3c\x85\x57\xb0\x0b\xab\x05\x86\x5e\x15\xce\x2d\xac\xcd\x37\x6c\xf6\x29\x90\x37\x9b\x77\x40\xd9\x68\x8d\xeb\x1e\x03\x0c\x4e\x0c\xb0\x50\x62\x14\x31\x15\x04\x29\x98\x5b\x95\xb0\x60\x2a\x7a\x80\xd2\xf9\xe2\x1c\x25\x92\x95\x24\x3f\x58\x4b\xdb\xf4\x80\xa7\x9f\x3c\xfa\x85\xc2\x97\x8c\xf4\x05\x35\x13\x74\x13\x59\x29\x88\xcc\xcd\x92\xe6\x4a\xa2\x18\xae\x4d\x57\x68\xe6\x1c\x7e\x81\x8a\x80\xdc\x1d\x05\x29\x55\xe3\x85\x5a\xda\x3d\x65\x71\x2b\x08\x12\xf0\x0e\x28\x89\x06\xb4\xe6\x17\x16\x3d\xfa\x0d\xaa\xd5\xcd\x0f\xe6\xf2\xaa\x74\x76\x29\x14\xc7\x8c\xe9\xbc\xe8\xd1\x0f\x90\x85\x23\xb3\x7d\xa1\x1d\x53\xb6\xd5\x82\x92\x08\xba\x8f\xa5\x14\x16\xcc\xf2\xc6\x2e\x99\xc7\x5f\x73\x8f\xd4\x53\x8d\x49\x04\xdb\xbe\xf0\x90\x17\xd0\x42\x7d\x66\x89\x29\x2d\x77\xd9\x78\xc4\x6a\xd0\x42\x26\x2c\x95\xa2\x20\x0f\xab\x8b\x01\x16\x46\x16\xd8\x6a\x52\x0a\xc7\x8c\x6a\x63\x1b\xc8\xf4\x83\xeb\xc9\x5b\x35\x51\xaf\x1a\x04\xfe\xa0\x06\xba\x2f\xf4\x45\xc5\xf2\x9a\x5e\x58\x93\xc0\x87\x4d\xa9\x5c\x5e\xc9\xca\x05\xd2\x8c\x43\xdf\x0a\x2e\xeb\xb2\x7e\x5e\x1a\x23\x06\x9b\x5f\xc0\x6d\x8d\x92\x2c\x0a\xf3\xff\xed\xdb\x2c\x10\x6f\xec\xde\x2d\x3d\x10\x51\x5a\xfe\xe5\x96\x37\x51\x4e\x79\x27\xdb\x8c\x5c\x70\x61\x57\x33\x22\x3b\x1c\xc6\xc1\xef\x37\xbc\xaf\x49\x75\xfa\x3e\x65\x75\xc3\x3d\xec\x61\x78\xd6\xa8\x8c\x65\x27\x21\xee\x61\x4f\xdb\x66\x90\xb9\xd7\x4d\x60\x9d\xf6\x2b\x69\x08\x85\x15\xc0\x7d\xba\x15\xd6\xc2\xb2\x75\xa9\x30\xbf\xdf\xee\xd3\xb2\x6c\x85\x52\x43\x0a\xab\x5f\xd9\xb7\x59\x90\xb3\x6f\xa3\x6b\x41\xf5\x2b\xfb\xe5\x0b\x6c\x85\x0e\x40\x2d\xc8\x80\x2a\x26\x62\xd8\x0e\xb3\xf1\x38\xb8\x34\x42\xf4\xa0\x98\xa0\xef\xf7\x05\xa2\x06\xdc\x17\x88\x82\x19\xd2\x4d\xf7\xc6\x83\x70\x63\x61\xa6\x4c\xe1\x26\x5b\x02\xc3\x95\xf2\x51\xb7\x0a\x17\xde\x28\xef\x40\xcb\x82\x9b\xaf\x1c\x02\x5f\xf6\x65\xed\xf4\x00\x04\x59\xed\x83\x69\xde\x02\xe8\x58\x68\xd6\x1c\x79\xe7\x7c\xf9\x91\x5b\xa8\x1c\x3c\xe9\xcc\x93\x4f\x0a\xa1\xe6\x5e\xcc\x95\x72\xfc\x60\x81\x0c\x91\x83\x5f\x28\x68\x6b\xfc\x73\x6d\x20\xbf\x00\x62\x34\xad\x9d\x3c\x48\xba\x1f\x90\x41\x9a\xbd\x9d\x64\x90\xde\x31\x10\x22\xaa\x33\x0d\xca\xf2\xab\x9b\x96\xae\xb5\x65\xd4\xc7\xb5\xe0\xf6\x03\xc0\x2d\x6b\x04\x0a\xe3\xe7\xd7\x89\x79\x51\x5c\xcb\x1e\x03\x1b\x3d\xb8\x03\x6e\x74\x53\xe7\xb2\xcc\x99\x45\x22\x25\x3f\x4b\x1e\x2b\x37\x81\x32\x32\x51\xb2\xca\xae\x4e\x5c\xa1\x9f\x1d\x64\x57\xee\x85\x1a\x3f\xa0\x20\xe0\x63\xf9\xa6\x38\xe5\xa3\x61\xb9\xad\xa5\x14\x94\x87\xf8\xf7\x91\x87\x0a\x52\x39\xfa\x05\x9e\xec\x92\xd8\x0b\x72\x8f\x54\xd7\xba\x14\x08\x1b\xba\xb9\xa0\x14\xc4\x4f\x66\x33\xf6\x87\x0c\x4d\x5c\xb6\x2e\xe1\x42\xe2\x37\x6e\xea\x8f\x43\xd2\x76\xdd\x78\xdc\xbc\xbe\x58\x0c\xa9\xea\x01\x02\x3e\x85\xfc\xca\x9c\x79\xd5\x70\x2e\x95\x35\x9f\xac\xaf\xb3\xc8\x6e\xf3\x19\x87\x5b\x0a\xb2\x43\x4c\x2a\x52\x89\x2c\xd2\xd7\x40\xdf\x9d\x80\x42\x02\xbb\x65\x89\x4a\x2f\xb1\x7d\xdf\x15\xd7\xf4\xaa\xd2\x72\xa9\x28\xec\x5a\xbc\x3a\x75\xd9\x8a\x74\x26\xd6\xc8\xfb\xbe\x05\x74\x5c\xcb\xe7\x2f\x40\x21\x1e\x33\xad\x49\xe8\x0b\xc8\x27\x8e\x4f\xaf\x48\x1c\xea\x9e\x14\x4b\x3a\xd9\xff\x5e\x71\xb7\xad\x43\x81\x2a\x63\x1c\x6d\x30\xa8\xb0\x25\xe5\x57\x8f\xb4\x78\x89\x89\x56\xc8\x2f\xaa\x1f\x5d\x6a\xa2\x47\xa6\xba\x4b\x16\x42\x09\xee\x92\x9e\xda\xe1\x69\x70\x6b\xbc\xa0\xe2\x15\xf1\xe2\x6b\x35\xaf\x89\xea\x93\x4c\x46\xa3\xb3\xbc\xe6\x39\x53\x5d\x29\x57\x2a\x44\x96\x60\xb7\x7f\x5d\x32\xcb\xeb\x8b\xc1\x41\xfc\xc6\xc1\x07\xee\xe3\x9c\xaa\x82\xb1\x97\x49\x44\xd5\x2f\x90\xb4\xdd\xe5\x82\x5b\x44\x83\xd4\xf1\x2c\x95\xab\x4e\x91\xa5\x39\x45\xa9\x16\x1e\x10\xaf\x07\xbc\xd0\x5d\x98\x28\x54\x4d\x8d\x6e\x66\xf3\xbc\x50\x53\xb9\x82\xfa\x82\x46\x22\x4b\x1c\x15\xa5\xe9\x55\xe0\xb0\xd4\xba\xe6\x2d\x42\x45\xa8\xa2\x43\x03\x6a\x05\xe1\x26\xff\x0e\x4e\x26\x89\xb5\xf2\x5e\x83\x17\xe2\xea\x9a\xb6\x60\xc0\x8d\xa8\x45\x2c\xba\x22\xf4\x30\x38\x3c\xa0\x22\xad\xbb\xf8\xa0\xab\x48\xb9\xf1\x31\x54\x71\xe7\xe9\x6b\x12\x14\x7a\xf2\x8f\x22\xb6\x6b\x67\x52\x85\xe1\xe9\x8b\xaa\xdd\x1d\xa8\x5a\x52\x5a\x45\x18\xa2\x1d\xf3\x95\x39\xdf\xaf\x85\xa4\x84\x63\xf2\xa2\x39\xc7\xe1\x0a\x15\x71\x88\xed\x0d\x31\xf6\xaa\x67\x84\xb0\x42\x1b\xe4\x2b\xcc\x31\x2f\x49\x10\x57\x9c\xb4\x5a\xfc\x02\x44\x68\x8b\x6d\x75\x2c\xbc\xbb\x4b\x9e\x6b\xc6\x22\x03\x0d\x6d\xb7\xaa\x3b\xd1\xa6\x69\xe0\x26\x4f\x47\x0c\x55\x98\x63\x2c\xd8\xd7\x9d\xdc\xbf\xfa\x41\xe3\x3c\xb5\xf8\xfb\xc2\x8c\xdf\x18\x04\x42\xa8\xd9\x17\x6a\x34\x31\xca\x20\x3a\xd1\x2b\x6f\x20\xb0\xd4\x53\x59\x88\xc8\x82\x55\x3d\xe8\xe2\x7f\xbd\x41\xe4\xa9\xcb\x83\xeb\x27\xa8\x58\x99\xc8\xc6\xaf\x0a\x63\x49\xd6\x39\x57\x8f\x9b\x79\x36\x42\x26\x8c\x21\xae\x91\x59\x2a\x42\x08\xb3\x0e\xc2\x0a\x6b\x88\x2e\x8d\x2e\x15\xce\x45\xdd\x51\x5c\xea\xb9\xae\xb9\x11\x0c\x30\x76\x64\x9f\x62\x27\xf7\x99\x44\x84\x7a\xee\x08\x5b\x76\x8f\x44\x94\x57\x83\x77\x57\xd8\xde\x56\xcf\xb5\xe2\x9a\xf7\xc9\xab\xdc\x0d\xf4\x5a\x70\xbd\x70\x6d\xec\x53\xd3\xb8\x38\x2d\x21\xe6\xe2\x34\x34\x04\xe2\x01\xb3\x8f\x18\xd8\x57\xec\x75\xa9\x17\xd9\xb9\xa1\xbe\x60\x41\x36\x1d\xa3\x72\xa7\x23\x97\x2a\x03\x04\x1d\x82\x52\x21\xf8\xbc\x44\xbc\x7a\xd1\x2f\xe3\x36\xaf\xf2\xf1\xda\xc0\x23\x69\x9f\x7e\x65\x88\xa0\x0d\x1e\x15\x82\xd0\x30\xd9\xde\x74\x76\x79\x31\x79\x4d\xcf\x8b\xbf\xdc\x14\xcf\x9a\xfb\x24\x2f\x97\x68\x5d\x61\xc5\xc9\x3e\xf8\xe0\x13\xdc\xbc\x16\x4b\x52\xf2\xe9\x8c\x00\x3f\x27\xd0\x56\x5c\xa2\xe2\x2c\xc3\x4a\xb9\xc8\xe7\xe0\xc3\xd0\x65\x4d\x7b\xca\x49\x71\x33\x89\x3e\x60\x18\x3a\x0a\xda\x86\xbd\xab\xc3\xa6\x6d\xa8\x46\x93\xdc\xc6\x9e\x10\x4f\x6b\xcc\xbf\xb6\x2d\xa2\x21\xd6\x2e\x6b\x2f\xb7\x8d\x00\xf9\xf7\xc5\x60\x9a\x1e\x80\xf1\x57\xb7\x49\x8f\xcd\x3d\x40\xb4\x13\x4e\xda\xba\xba\xe0\x43\x3c\x2d\x04\xae\xbd\x1f\x44\xc4\x31\x08\xe6\x00\xea\x7b\x7d\x40\x26\x28\x29\xb9\x51\xea\x12\x52\x1b\xf2\xb5\xb3\xa8\xaf\xa1\x0c\xa6\x2e\x8a\x2a\x2d\xac\x65\x74\x8f\x0f\x62\x99\x05\x72\xe4\x86\x10\x41\x37\x44\xd2\xa5\xa1\x8d\xde\x98\x9a\xe2\xb8\x96\x16\x19\xc5\xee\x59\x44\x02\x25\x4c\xc3\xb0\x14\x7e\x74\xa1\x5e\x69\x91\x56\x09\x21\x95\x35\xdb\x4d\xab\x2d\xee\x1c\xdf\xdd\x13\xed\xdd\x20\xe3\x9a\x85\x60\x00\x29\xc5\x77\x3f\xe0\x01\xec\x49\x22\x3e\xcf\x61\xf3\x0d\xb9\xdb\x0e\xa6\x6b\xe9\xe1\x98\xa2\x05\x98\x88\xb2\xd1\x98\x17\x52\xd4\x5e\x16\x1f\xb5\x71\x65\x7d\xf7\xf7\x27\x21\xd0\xc2\x64\xb2\x2e\x83\x44\x59\xa9\xb9\x07\x90\xbb\x27\xc9\x22\x98\x92\xf0\x1a\xcd\x3d\x5e\xe9\xb2\x20\x12\xde\x0a\x1d\x01\x6e\x93\x17\x4a\xa9\x6b\x15\xac\xef\xd5\x5e\x3d\x68\x08\x38\xd8\x36\x53\x63\x2d\xe8\xd1\xbf\x53\x0f\xf1\xef\x3c\x0c\x25\xef\xb5\x4a\x36\x23\xe5\xa8\x21\xb0\x2c\x7b\x61\x2a\xbd\xea\xfe\x9d\x6c\xc8\x78\x5b\x81\x66\x32\x19\x34\x96\xa8\x4c\xaf\x41\xc9\x1d\x8d\x59\x84\x9a\xbd\x14\xaa\xc6\x22\x3b\x0e\x4b\x6c\xc8\xec\xa8\x2e\x16\xd2\x58\x85\x32\x49\xcc\x6f\x8d\x96\x50\xa9\x96\x0d\x19\xcd\xcd\x5a\x5c\x6b\x8c\x61\x15\xbb\x6a\x4c\x69\x76\xf9\xa8\xd6\xb8\x80\x7a\xa1\x2f\x30\x04\x28\xee\x8d\xaf\x92\x54\x5b\xa7\x4e\x2d\x45\xbd\x21\xd9\x23\x77\x7f\x40\xec\x09\x17\x48\x59\xb6\x14\xd0\xfa\x22\x32\x0d\x89\x8c\xe2\xec\x59\x0c\x0a\x7e\x52\x46\xda\xa0\xe0\x29\xd9\xb5\x0d\x32\x49\x29\x61\x6d\x2c\xd4\xb8\x4f\x5e\x4e\x67\x6c\x8e\x35\xaa\xc0\xa2\x5b\xcc\xe1\x2a\x8d\x52\x96\xe7\xb5\x2f\x4c\x08\x2e\x16\xce\x31\x03\xd9\x99\x73\xe2\x0f\xc0\xca\xa5\x08\xb6\x25\x75\x49\x24\x6f\x4b\xea\x32\x6e\x77\x82\x9d\xfd\x09\x04\x54\x19\x13\xda\x4e\x5f\x9e\x87\x20\xcf\xf0\x18\x88\x18\xd3\xf5\x3a\xa5\x1d\xc4\xa5\x86\x44\x66\xf1\x4b\xaf\x6f\x8c\xde\xb2\x57\xbf\x9d\x9c\xb6\x7a\xa0\x84\x24\x8d\xba\xa1\xac\xb9\x6e\xf4\x29\xed\x6c\x13\x24\x73\x04\x5c\x19\xf9\x62\xb3\x88\xbe\x6a\x46\x3c\xed\x38\x56\x6d\xda\xc9\xfb\x33\xb4\x54\x27\x3d\xbf\xde\xb0\x34\xd2\x48\xb2\x68\x17\xe5\x7e\x63\xe5\x22\x48\x1a\x92\x37\xc3\x59\x7b\x6d\x53\x7a\x49\x16\x13\xdb\xb5\x26\xad\x49\x42\x78\x69\xd6\x96\x1a\xa4\x17\x27\x24\xb5\x29\xbc\xa4\x62\x1e\x71\x93\x18\x24\xfe\x36\xe4\x33\x14\x6f\x0b\x08\x2f\xd5\x51\xf9\xeb\x9a\x9d\xfc\xea\x82\x44\xeb\xb5\xba\xd7\xea\x0b\xd5\x37\x65\xac\xf8\xa3\x40\xba\xc6\xba\xe3\x56\x7f\x70\x89\x61\x2c\xa6\x2e\x44\x27\xd9\xa1\xd0\x1e\x92\x9f\xb1\x30\x65\x9b\xf4\x9a\x13\x64\x1b\xa7\xb4\xb6\x87\xec\xc4\x00\xb2\xd2\xa2\xb1\xc6\x5b\x12\xad\x0e\x35\xba\xa4\xd2\xeb\x01\xcf\x34\xf1\x1b\xdc\xa3\x98\x9a\xc8\xa5\x33\x39\x41\x4b\xd5\x91\x87\xeb\xfa\xa8\xa5\xc3\x89\xd5\xf2\xeb\x01\x6f\x16\xf2\x17\xa8\x03\x21\x89\xab\xb3\xd6\xb8\xc3\x27\xfa\x46\x11\x3e\xf9\x0d\xee\xb2\xae\x36\x4a\xb0\x4a\x13\xee\x4c\x67\x70\x0c\x52\x5f\x76\x27\x6d\x8a\x3e\x25\x9e\xe8\x42\x5f\x3d\x0c\xf4\xe0\x36\x95\x02\xa9\x3a\x1d\x51\x4d\x65\x73\x07\x24\x40\x03\x19\xc8\x8e\xa4\xa9\xf4\xc8\x03\x42\x44\xdd\x51\x91\x46\x37\x67\x94\x8e\xdc\x5b\x5d\xd6\x51\x3a\x73\x6d\x6d\x2d\xeb\x91\xdb\x22\xfb\x0d\x5a\xca\xfd\x02\xb7\x85\x84\x57\xdc\x69\xd9\x2c\x22\x75\xde\x53\x2f\xd6\xde\x13\xee\x8d\xf0\xfb\xc8\x0f\x78\x19\x19\x3a\x2a\xd8\xd8\x19\xdd\x53\x99\xca\x52\x71\x07\x14\x9b\x8c\x59\x26\xcf\x7a\x92\x08\x52\x72\x96\x4f\x5f\x22\x8e\x31\x9d\xb1\x31\x25\x60\xf4\x8c\xa4\x35\x63\x25\x73\x04\xe3\x31\xb3\x04\xbb\x40\xca\x5c\x6c\x77\x40\xfe\xe4\x49\x2d\xfb\xd0\x70\x97\x14\x49\xdc\x45\xa1\x34\xea\x69\x4d\x29\x27\x36\xcf\x0a\x15\x64\x9c\x8e\xd5\x4b\x86\x13\x54\x3d\x16\x1e\x68\xb2\x12\x74\x04\xe8\x7b\x63\xf5\x82\xda\x25\xd5\x23\x22\x8d\xc2\xb3\x44\x7c\xbe\x53\xf3\x3a\xc3\x92\x5e\xbf\x2f\x90\x35\xcb\x29\x45\xb5\xe6\x49\xa2\x7a\x8c\xaa\x4b\x97\x5e\x17\xfb\x52\x8f\x8c\xb6\xb7\x26\xdd\x79\x17\x8c\xc3\x2b\x7a\x65\x7a\xbe\xe6\x80\x72\x31\xaa\x55\x5b\xfa\x12\x8a\xbc\xcd\x10\x83\x54\x36\xb7\x09\x83\x3a\x80\x7d\xc9\xf6\xa6\xde\xd6\x88\x02\xb2\x61\x97\x05\xbf\xc0\x33\x3d\xf9\x05\x44\xf2\x0e\xbf\xb0\xd0\xa0\x59\xf5\xb5\xa9\x84\x17\xb8\xdd\x86\x33\x93\x3a\x4b\xb8\x98\x17\xa0\xb0\xa0\xbd\x4b\xbd\xd3\x50\xe2\x69\xb2\x48\xb6\x03\x95\x3a\x2f\xfb\xb4\x09\xa1\x0f\x16\x20\xd5\x17\x83\x1c\x4d\xda\x7b\x1f\xb4\x72\x56\xbf\x81\x84\xef\xe0\x1e\x3a\xa1\x14\x54\x03\x95\x25\xc5\xc9\xfb\x32\x2a\x19\x08\xdc\xca\x6f\x71\xb3\xc3\xc9\xe5\x43\xb7\xef\x6b\x48\x21\x1f\x35\x51\x9a\x6c\x14\x7d\x5f\x4c\xf3\x27\xd7\xe1\x95\xce\x8a\x81\xd6\xbb\x3b\xab\x5a\x9b\x11\xc0\x7a\x54\xa4\x9d\x75\x56\x0c\xb4\x5e\xdd\x19\xea\x2e\x71\xb8\x4f\x41\x26\x15\xb3\x1e\x84\xde\x14\xa3\xfd\x20\x2d\xf8\xfd\x1d\x6d\x2d\xec\x41\x00\x34\x1f\x14\x50\x19\xce\xf7\xea\xb0\x25\x6d\x3e\x46\x10\x47\x53\x8d\x00\x86\xa5\x3b\xd4\xa1\x33\x90\xc6\xaa\x7d\x67\x3a\xaa\xc3\xa4\x3a\xbc\x60\x45\x7a\x44\x3f\x51\xb5\xc3\xfc\x97\x45\xae\xed\xf3\xef\x27\x79\x93\xdb\x27\xd8\xa7\xdb\x5c\x56\xaf\x12\x7c\x60\x2f\x2b\x6f\x67\xb2\xa9\x85\x80\x0e\x4b\x51\x31\x1e\x2f\x46\xe4\x1a\x28\x98\x8e\x8a\x29\xe3\x5a\x21\xc6\x5a\x09\x54\x50\x79\xd1\xd6\xb5\x48\x45\xe4\x0a\x63\x53\x91\xfc\xde\x2f\x2e\x8d\xa0\xbe\xb0\x34\x92\xb4\x3b\xa3\xdd\xf3\xab\xc7\x13\x2f\x78\x12\x3c\x87\xaa\x1f\x80\x5a\x82\x47\x04\xf5\x4a\xf1\xe9\x37\xa3\x0a\x3c\x89\x25\x9e\x79\x35\xe9\x75\xb3\x99\xa4\xc3\xcb\x56\x92\x5f\xe0\x5a\x69\x08\x96\x0c\xb4\xac\xd3\x6f\x5a\xc4\x84\x48\x44\xa7\xbf\x08\x12\x85\xb1\x5d\xbe\xa0\xdf\x84\x51\x93\x84\xe5\xa9\x9a\x79\x3d\x2c\xac\xa6\x39\x20\x7a\xe8\x75\x04\x4c\x69\x2d\x6d\xa6\x2e\x18\x9e\x8a\x4f\x46\x84\x07\x59\xba\x1b\x1b\xb8\xa7\xb4\x8f\xb1\x2e\xec\xae\x7e\xc0\x75\x93\x15\x66\x6c\xc8\x75\x16\x75\x8d\x8d\x3d\x0e\xb5\x91\x24\xac\x75\x1d\x1b\xd9\xab\x84\xb9\xb1\x91\x1c\x85\xe5\x01\xcb\x91\x65\x96\x81\xb4\x4e\xdd\xcb\x59\x46\x20\xa7\x33\x08\x53\x6e\x4a\x5d\x16\x8c\x11\xd6\x5d\x94\x6a\x23\x8c\x26\xf8\xf7\x81\xcc\x8b\xaa\xf6\x8e\x1b\x8b\x34\x05\x78\xe7\x4a\x76\xff\x27\x72\x97\xdc\x26\x65\x69\x95\x06\x53\x34\x9d\x72\x39\xe2\xa2\x1c\xcd\x3a\x46\xa4\x4e\x6b\x48\xd8\x91\x86\xcf\xb9\x11\xd7\x86\xf1\x17\x20\xa5\xec\x2e\xc1\xbd\xa5\xcf\x0e\xda\x8e\xd2\xab\xcb\x81\x93\x52\x50\x46\xce\x4a\xb3\x46\x4d\x68\xef\x8f\x01\x4b\x91\x4d\xf1\x63\x19\x8a\x24\x3c\x0e\x26\x72\x3a\x9e\x6e\x24\xa6\x3e\xa8\xc7\x04\x62\x79\x7d\x40\x29\xfb\xf5\x02\x8c\x61\x32\xac\x0e\xf8\x03\x8b\x11\x0d\xc1\xcd\xb7\x5d\x95\x91\x16\x2d\x08\x2d\x09\x7b\xd6\x93\x58\x92\x9b\xac\x28\x23\x73\x4c\x9d\xef\x03\x95\x03\x6d\xe9\x19\x79\x5d\x17\x2f\x28\x61\xae\x2a\x3f\x2b\xf0\x33\x10\x4a\x6e\xd7\xf0\xc8\xa0\xf6\xe2\xd1\x00\xdf\xab\xfd\x60\xff\x6a\x15\xe1\xe4\x2b\x92\x90\x06\x2c\x57\xb6\xbe\x8c\x65\xb9\x12\x03\x18\x05\x59\x6f\x62\x73\x03\x42\x9e\xfd\x8c\x03\xf5\xa4\x1d\x4c\x37\x28\xe3\x89\xf9\x0f\x5c\x06\x58\x8a\x07\x18\x24\x34\x43\x84\xfd\x59\x3c\x20\xf7\xa7\x3b\x40\x92\x90\x58\xd8\xa0\x10\xe8\x78\x88\x51\x68\x74\x92\x3d\x70\x54\xce\x51\x20\x33\x2b\xd3\x1a\xc2\xa0\x58\x28\xd1\x65\x54\xce\xd1\x1d\xe0\x46\x1a\x09\xb6\xa3\xe2\x28\x28\xfe\xbe\xc3\xbd\xee\xf7\xc1\xc4\x8a\xdb\x4c\x01\x72\xff\xd4\x93\xba\x1f\xe0\x68\x90\x68\x34\x2a\x55\x62\x93\x55\xc5\x75\x18\xde\x5c\x75\x91\x99\xe6\xd4\xd6\x3a\xe9\x0d\x24\x69\x5a\xfb\x1b\x70\x6b\xba\xa4\xde\x40\xed\xe9\x22\xd1\x65\xb4\xb5\x0e\xee\x71\x01\x29\x18\x1a\x55\x06\x93\x02\xc2\xbf\x5c\xc7\x6c\x74\x1c\xc2\x12\x6e\x46\x87\x92\x6b\x90\xa6\x90\x99\x7c\x20\x0e\xa6\x5c\x7a\xe5\x3b\xca\x79\x0d\x7f\x4f\xe7\xbb\x59\xf3\x12\x3a\x65\xe7\x19\xa8\x97\x52\xcc\x99\x99\xa3\xe9\xa8\x84\x31\x96\x1c\xa0\x59\xa1\x62\x4a\x35\xab\x5d\x46\x36\x0f\x3a\x50\xb4\xce\x40\xd3\xe8\x66\x67\xe9\x18\x2c\x32\xe1\x0f\x26\x33\xd6\xed\xc5\x65\x0c\xc0\x24\xb3\xe9\x18\x24\x47\xd3\x27\x8a\xa2\xb8\x56\xce\xd8\x91\xfe\xae\x33\x7a\xec\xd4\xb2\x85\xe6\x65\x50\x93\x7c\x3f\x20\xb4\xba\xe6\xd6\x60\x21\x3f\x9f\x3f\x3b\xd9\xff\x70\x0f\x54\xbb\x4d\x6f\xfb\x3a\x0f\x84\x06\x56\x45\x71\x30\xc6\x40\x29\xeb\x22\x31\x70\x1c\xeb\x3c\x10\xea\x8f\x05\x95\xfa\x3c\x18\x8b\x2c\xbc\x1c\x48\x22\x78\xb5\x79\x4b\x9e\x7b\x5c\xe4\xe4\x07\x73\xf1\xac\xc2\x0e\xc6\x63\x59\x87\x1d\x27\x3d\xab\x66\x05\x4b\x14\x1d\x7e\x50\x01\xb5\xdb\xb4\xfd\x78\x35\x11\xc4\xed\xb4\xfa\x71\x2e\x21\x4d\xd3\x3a\x29\xff\x68\x56\x4b\x16\xf5\x2e\x80\xe8\x19\xfc\xc1\xaa\xcd\xa7\x1e\x2f\x1a\x07\x3c\x0d\xd4\xb2\x76\x0d\x91\x01\xc9\xd3\xb5\x31\x07\xc5\xc2\xea\xdf\xb9\xf7\xcd\x92\x97\xd5\xce\x54\xcf\xca\x7b\x2f\x7e\x84\xa4\x45\x87\x1b\x0e\x18\xe1\xac\xf6\xf0\xce\xe9\x66\x1b\xed\xb8\xb9\xf9\x35\x29\x14\xd2\x6b\x26\x98\x29\x05\xa6\x3c\x7e\x76\x04\x21\x50\x2b\x0d\xaf\xc2\x4d\x80\xbd\xa7\x78\x79\xa0\xc3\x57\x06\xfd\x91\xf6\x1e\x0f\x16\xda\x73\xa8\xc8\x60\x85\x11\x87\x8a\x0c\xc4\x76\xd9\xa9\x33\x58\x47\xcf\x81\x1c\x83\xb1\x5d\xf6\x1e\x0f\xd8\xf1\x9c\xa8\x3c\x10\xbb\xe5\x4c\xfb\x7d\xdb\xd8\x43\xd4\x83\x80\x95\xc9\x6a\x27\xc4\x64\xfb\x03\x8a\x40\xc5\x2f\x80\xcf\x37\xbf\x40\xd1\x51\x07\xc9\xbe\x44\xc7\xe1\x07\x37\xc7\xfc\x00\xb5\xe3\xb2\x92\x22\x1e\xba\xf3\x3e\x3e\x87\x62\xec\x61\x11\x7d\xd7\x83\xb5\x98\x55\x0f\xa0\xc3\x76\x7f\x81\x03\xb4\xf9\x83\x83\x29\x76\x41\x0f\x40\x71\xcd\x1d\x2c\xa0\x0c\x04\x84\x7a\x23\x02\x7e\x48\x0b\x09\xfb\x72\x32\xea\x44\xdd\xe3\x5a\x2d\x3f\x80\x14\x20\x22\xdf\x97\x51\x4e\x34\xb2\x53\x3a\x74\xd8\x04\x2e\x39\x6f\x2e\x26\xbc\xd3\xb3\xe8\x10\x85\x3d\x2e\x5c\xfa\x01\xb6\x81\xe4\xf4\x3d\xad\xf5\x1c\x7a\x80\xcc\x5a\x83\x0d\x3f\xa1\x83\x89\x76\x1a\xd1\xb4\x53\x77\xe4\xed\xd9\x15\xb5\x67\x06\xd6\xe8\xcc\xdc\x33\x81\x16\x89\xed\xa8\x79\xe1\xe4\xc3\x3d\xf3\x26\x39\xd1\xdc\x4e\x9b\x99\xe3\x28\x76\xa6\xd6\xd9\x0a\xb2\x17\xe4\xfa\xe9\x38\xd9\x29\xce\x38\xe2\x60\xa7\x70\xe2\xe5\xad\x0b\xf9\x9a\x46\xa5\x0a\x34\xfc\x00\x35\x1a\x3d\x8f\x4a\x97\x5a\xf4\x0b\xa0\x90\xee\x21\x40\x10\xdd\x1f\x90\x05\x49\x38\xd8\x97\x53\xce\x5d\xb2\x42\x83\x1d\x01\x3b\xa5\x05\x7b\x34\xf7\x46\x9d\xdd\x54\xd7\x1e\x90\xa9\x50\xd3\x69\x7b\xd3\x01\xb1\xb3\xc8\xaf\x0d\xd2\xfb\x58\xc8\x13\xfe\x51\x94\xd7\x06\xea\x9d\x61\xd5\x76\x14\xed\x34\x29\xd9\x2d\xb3\xd3\x43\x66\xbf\xcd\x3e\x38\x75\x81\x39\xc8\xe9\xb4\xa2\x70\x98\x35\xdb\xb4\xf7\xb1\xe6\xa1\x07\xf0\x87\x35\x5b\xa4\xf7\x9d\x64\x22\x1d\x76\xdf\xc9\x06\x64\xbf\xd8\x69\xf6\xb1\xdd\x71\x67\xe4\xb2\xe3\x4c\x76\xe6\x60\x59\x71\xdf\x0f\xe6\xa1\x7b\x7f\x1c\x8b\xbd\xb9\xd3\xb5\x04\x9a\x3c\x0f\x58\x47\x81\xee\x07\x97\xd5\x5d\x40\x32\xf1\x16\x43\xd2\x55\xe9\xee\x80\x29\xc6\xde\x40\x28\x5a\x60\x43\xf9\x8e\xb0\xa2\xa2\x63\x64\x3f\xd7\x12\x0a\x37\xac\x44\x66\xcd\x76\xa7\xed\xc7\x16\xb9\x9d\x07\xb0\xf7\xe0\x09\x55\xb6\xbb\x8d\x62\xd4\xde\x0e\xac\x4a\x60\x0b\xd9\x8e\xeb\xca\xea\xf6\xa3\x6c\xa3\x1d\x2e\x33\x87\xb5\xec\xb4\xe1\xe8\x9c\xdb\x79\x95\xaf\x4d\xd6\xfb\xc5\xe5\xd7\xc1\xb4\xf3\x6e\x5e\x07\xa2\xec\xb0\xb9\xb8\x66\xc1\x4e\x8f\x98\x09\x68\x15\x10\x30\x8f\xb8\x09\x83\x26\x80\x22\xb6\xc5\x47\x02\x73\xb6\x5c\x44\x66\xe7\xf1\x69\x23\xdf\x4e\x97\x97\xad\xb1\xfb\xb3\xc6\xd0\x27\x0c\x7c\x76\x51\x98\x1d\xf1\x39\xc1\x56\x8d\x63\x5b\xf3\x68\x7a\x10\xf8\x46\xd5\x83\xce\x4e\xfd\x00\xb7\x62\x48\x71\x3d\xe0\x2f\xb2\x4b\xfc\xd8\x40\x5e\x62\x3b\x07\xc2\x5f\xaa\xb6\xef\xc1\x83\xca\x76\xbd\x23\xd0\xd8\x24\xb1\xe3\xc0\xc9\x34\xd2\xeb\x8d\x8b\x0f\xf4\x46\x5c\x82\x82\x06\x41\xc0\x4b\x79\xbd\x40\x7e\x5a\xfd\xc2\x0e\x28\xb2\xda\xb0\x19\x57\xb7\xc9\xdb\xa4\x33\x1c\xf4\xf6\xe8\xcc\x3e\x60\x34\xa8\x62\x00\x47\xca\x9c\x86\x86\x4c\x9c\xa7\x3f\xe0\xce\x8c\xee\xf1\xc6\x0b\x42\x64\x26\xc9\x0a\xc4\x4c\xfd\x53\x44\x7e\xe0\x22\xa9\xaa\xbd\x7e\x20\x85\xc9\x17\x5e\x1c\x79\xed\x6c\xbf\xb0\xc8\x54\x5d\xb2\x98\xbf\xbf\x98\x6a\x7c\xae\xa2\xeb\xa3\x90\x69\x19\x46\x06\xef\x4a\x06\x38\xa0\xb6\x57\xd1\xfd\x81\x4b\x57\xed\xc0\x3c\x70\xa7\xbf\x53\x0a\x0e\xe4\x2b\xf5\xec\xfe\x70\xb7\xad\x89\xa7\x50\x37\x14\xc4\xeb\x58\x8b\xee\x00\x29\x53\x46\x12\x2b\x23\x19\xed\x75\xd5\x90\x57\x9b\x00\x6a\x1d\x19\x2a\x5c\xfd\x3e\xc9\x57\xdc\xef\x80\x12\xae\x1b\xf5\xcb\x01\xa5\xbb\x67\xff\xbe\x20\x12\x0e\x19\xac\x62\x43\xf6\x01\xcf\x8d\xaf\x63\x3a\x90\x3d\x6e\xdb\xe6\x81\xa2\xa5\xb6\x2c\x1e\x8d\x20\x6a\x8a\x08\x14\xf6\xcd\xe2\xe5\x80\xce\x5d\xbd\x6a\x0d\xb4\x6a\x90\x97\x67\xa7\x19\x02\xa6\xc4\xc8\x1c\x7a\x20\x94\xb8\x1a\xc4\xce\x93\x45\xfc\xf5\x40\xfe\x54\x7a\x2d\x0c\xf2\xa7\xea\xeb\x05\x92\x73\x74\x97\x50\x37\xc5\x23\x0f\xde\x21\x65\x7d\xf4\x40\x7c\xb1\x8b\x0f\x1c\x1d\x79\xfa\xaf\x36\x6e\x2d\x93\x44\x73\x74\xea\x54\xcd\x2f\x1c\xb0\x39\x09\x4f\x08\x85\x79\x31\x1a\xde\xaf\xda\x0c\x22\x57\x46\x92\xc1\xc1\x8c\x2b\xf1\xdc\x83\x4a\x7c\x97\x03\xf6\x60\xec\x8c\xbd\xc6\xc7\x54\xeb\x93\xaf\x2d\x39\x06\x2f\x83\x33\xb7\x83\xaf\xc9\x41\x00\xc7\x60\x29\x49\xb7\x51\xc5\xc5\xcc\x6f\xc0\xf5\xf8\x02\x01\x15\xdc\xf2\x8f\xfc\x44\x07\x84\x8a\xd7\xba\x0f\xdc\xb9\x25\x0d\xff\x40\x50\x8e\xe3\xa8\x0e\x88\x18\x55\x92\xed\xb1\xb3\x54\x9b\xde\xdf\x33\xde\xd7\x0a\xa1\xf2\x7f\xf7\x0a\xa0\xa8\x53\xf5\x12\x33\xd3\xca\xbe\x8a\x83\x16\x02\x3b\x04\x0f\x58\x08\x1c\xbf\x7d\xec\x3c\x76\x65\x67\x3f\x68\x20\x30\x8b\x5a\x49\xe3\xfa\xe0\xa0\x55\x53\x2b\x82\x92\x4c\xf6\xa3\x1e\x48\xcd\x4a\xaf\x36\xcd\x2a\xa6\x7d\x78\xba\x5c\x92\xf4\x38\x78\x89\xb3\x01\xa0\x3e\xe0\xfd\x7b\x50\xd6\xce\xee\x12\x37\x24\x4a\xdc\x39\x58\x67\x55\x16\xb0\x83\xf6\x04\xfb\x3a\x0e\xf8\xba\x5e\x7c\xfb\xe4\x56\xd1\x32\x40\xbc\xb1\xef\xe3\x40\xdd\x55\xab\xd9\xc7\x94\x76\x52\x93\xcc\x76\x20\xdb\xab\x1a\xcb\xb8\x18\xa0\x9a\xe5\xa1\xee\xbf\xfd\x39\xc7\xc9\x55\xf0\x3a\xf3\xe2\x2c\x4b\xee\xc7\x92\x7e\x64\x74\x3f\x28\xfd\xf8\x05\x58\x1b\x2c\x03\x1e\x48\xfd\xb2\x79\xf7\x40\x50\x51\x35\x8f\xbb\xb8\x0f\x0c\xc3\xb5\xd6\x41\x93\xc2\xdd\x58\x8e\x6d\x38\x90\x1b\xf6\x3a\xfd\xe0\xb5\xb2\x41\xf9\x80\xd3\xca\xb5\x78\x0e\x5e\x8d\x25\xed\xe4\x60\x85\x26\xd7\x28\x3b\x6e\x0a\x95\x6e\xe3\xbc\xf5\x32\xc1\x65\x55\x0d\x21\x5c\x56\x2e\x0e\x74\x40\x9e\x72\x28\xf1\x71\xa3\xca\x9f\x34\xcb\xe3\xee\xdf\x5f\xc5\x79\x2e\x07\xe2\x8d\xca\x6b\x3c\x88\x31\xf2\x9e\x1f\xf0\x70\x6d\x76\x91\x1e\x53\xfe\x4a\xaf\xa3\xf1\x5e\x8b\x20\x14\x3c\x5c\x04\x8d\xc8\x14\x79\x3b\xad\x0e\x94\x4b\xb5\xc9\xe7\x58\xc6\x8c\xec\x07\xa8\xe0\x6b\x21\xe5\xe1\x9c\x3c\x42\x87\xcd\x48\x38\x40\xb1\xd4\xf8\xfa\xfe\xe2\x88\x42\x0a\x22\x90\x7c\x3f\xe2\x01\x5b\x87\x63\xf0\x4e\x14\x47\xb5\x45\xfa\x44\x09\x26\x57\x0f\x3a\x61\xea\x68\x45\x73\x3a\x37\xb0\x98\xe1\x36\x56\x41\xc7\xca\x09\x37\x9b\x33\x0a\xce\x8d\x57\x57\x16\xb5\xe9\xdc\x89\x6a\x1f\xf0\x23\x7a\x40\xee\xde\xe2\x0e\x2f\x0c\xe0\x0e\x6f\x44\x48\x05\xb5\x71\x53\x95\x38\xd4\x89\x70\x6d\x9b\x5a\xce\x55\x83\x49\xeb\x7a\x22\x5c\xdb\x4c\xf4\x84\x57\x2e\xeb\xca\xde\x72\x4e\x79\x35\xb6\xcd\x3d\xd0\xa2\x24\x75\xe7\x84\xbc\x9a\x7c\xcc\x9c\xf0\xc3\xd9\xec\x71\xe2\x8e\x56\x73\xd1\x73\xb9\xd9\xc4\x15\xcf\x08\x4a\xd1\xf6\x3d\x23\x68\x5d\x0e\xa9\x73\x19\x52\x9a\x1f\xc0\x24\x2e\x96\x74\x46\x1e\xc6\xda\x6e\x27\x2e\x5a\xad\x3f\x2b\xbf\x7d\x32\x5c\xdb\xde\xd2\x93\x45\x04\x7c\x76\x9f\x2c\x22\xe0\xc8\xe6\x93\xf1\xdb\x8e\x54\x3e\x69\x76\x79\xb5\x79\x38\x7b\xe5\x13\x35\x0b\x1d\x8d\x27\xbc\x70\xd6\xd2\x4f\xd6\x19\x78\x2d\x1d\xaf\x6a\x7d\xad\x1d\xeb\x0a\x38\xb8\xf9\x4c\x2c\x0e\xac\x59\xa3\x8e\x80\x1d\x79\x67\x42\x41\x2f\xa3\x0d\x55\x04\xac\xd5\x9f\x53\x02\x4f\x56\x34\x4e\x16\x4b\xd5\x61\x72\xe6\x75\xad\x94\xda\x94\xec\x84\xf6\xcc\xab\xad\x34\x47\xd4\x42\x75\x04\xd8\x89\xda\xa7\xba\x9b\xbf\x9c\x88\x28\x77\x76\xff\x89\x6c\x3c\xc7\x5a\x9f\x28\x18\xe0\x02\x64\x27\xbc\x72\xf6\xd2\x9d\x88\x27\xaf\x46\x08\xbc\x72\x3e\x8e\xcf\x29\xce\xb7\x2a\x25\xf4\x2c\xa0\x6d\xaf\x41\x81\xb8\x63\xd2\x5e\x4e\x35\x03\x50\x78\x7a\x9a\x74\xcb\x81\xe4\x4a\xb7\xd7\xba\x0b\x44\x08\xec\x56\xed\x4f\x7a\xd5\xec\xe5\x3e\xeb\x86\xd8\x2a\xc1\x88\x7a\x03\x8e\xf3\x3c\x2b\x92\x1a\xa5\x6b\x9f\xcb\x6e\x25\xd5\xff\x44\x04\x7b\x33\xdd\xe0\x9a\x82\xf1\x1a\x80\xea\x62\xf7\x83\x13\xb3\x16\x95\x30\xd4\xca\x06\xbb\xb3\x12\xad\xee\x11\xcb\x6e\xb2\x69\x54\xa4\xcd\x64\x18\x7d\x6e\xea\x47\x79\x27\x5d\x24\x5e\x4e\x84\x5e\xb9\x8a\xe8\x09\xb3\x57\xed\x5e\xe8\x65\xf6\x32\x63\x5d\x22\x7c\xf7\x27\x3c\xe4\xdd\x67\x27\x9b\x71\xa7\xcc\xd7\xb3\x0f\xf9\xec\xb4\x4a\x88\xdd\x9f\xa8\xb7\xe4\x2b\x39\xcf\xce\xd8\x61\xa3\x6a\x20\x3d\xd7\xdc\x15\xf7\x06\x54\x59\xa4\xce\xc1\x2d\xe8\x1e\x90\xd0\xe7\x54\xfa\x73\x2c\x28\xfd\xc5\x1a\x42\x50\xb2\x7c\x92\xcf\xd1\x93\x37\xfa\x9b\xd7\x2d\xbb\x98\x09\x62\xa7\x94\xee\x33\x80\xb5\xfd\xcd\x8d\x76\x1a\x08\x4c\xf6\x3b\xaf\x62\xd3\xbc\x11\x8d\x65\x37\xc5\xb9\x13\xfd\x5e\xbf\x9d\xbe\x37\x2d\x30\x3c\x61\xcd\xd3\xe2\x95\x56\xf6\xd4\x9e\x47\xc0\x39\xa9\x0f\x8e\x85\x18\x7d\x41\xb9\xd6\x78\xe0\x1d\x57\x36\xcc\x9d\xcb\x30\x67\x22\x3b\x48\x33\x6e\x43\x0a\x94\x7d\xe1\x84\xe1\xae\xbc\x7a\xa4\x5f\x4c\x93\x3c\x38\x07\x83\xc8\xc5\xf6\xef\x20\x6a\xe9\x84\x27\xc2\xad\xaa\x8c\x07\x27\xa5\x4e\xf3\x2a\xd6\x18\xb0\x67\xf7\x3c\xc9\xe3\xcd\xad\x78\xfd\x6a\xf7\xd1\xb8\x7c\x56\x92\x74\xcf\x6b\xd1\xa8\xf0\x84\xe0\x26\xdf\x0e\x7e\x5e\x6b\xeb\xfd\xc8\x43\x74\x22\xac\xdc\x65\x03\x4f\xde\x96\x2a\x89\xeb\xbc\x97\xa2\xac\xee\x91\x02\xe7\x20\x8a\xf3\xe6\xf0\x5a\x84\x1b\x8a\xb3\x39\x03\xaa\x1a\x55\xb3\x92\x9b\x87\x94\x91\x7a\xa3\x90\xbf\x29\x6d\x8a\x70\xe9\xc5\x60\x79\x8d\x93\x9d\xb4\xe7\x83\x74\x1a\xef\xb0\x29\xa1\x25\xdf\xf5\x7d\x22\x2e\xa9\x9a\x73\x3c\x07\x62\x30\x05\xc1\x43\x88\x3e\x08\xbc\x36\x1a\xb2\xc4\x4f\xaf\x8d\x92\xb8\xe8\xe2\xe2\x4d\x4a\xc1\x5f\x80\x2e\x84\x83\x6b\xa3\x2d\x20\xfb\x85\x15\xf8\xf0\x69\xb3\x2a\x40\x11\x2d\x5f\xf0\x2d\x55\x29\x44\xd7\xf2\x2d\x89\x34\x2f\x94\x0d\xa8\xdd\x3d\x80\xb4\x44\x28\xd7\x8a\x53\x2a\x6a\x83\xd4\x44\x26\x17\xe2\x96\x7c\xa9\xe5\x85\x78\x70\x5f\xe3\x7b\xc1\x13\x55\x87\xc7\xe3\x94\x34\x83\xc0\xed\x59\xfd\x00\xe7\xa0\xb4\xc8\x2b\xae\x29\x69\x0a\x14\xa0\x64\x2e\xbe\x78\x3f\xa9\x4d\x69\xd7\x0a\x53\x7a\x75\xc1\x84\x04\x0f\x1a\x91\xc9\x91\xfd\x05\x23\x66\xfc\x3b\xdd\x10\xda\xf1\x57\xa2\x78\xaf\x1d\x7e\xc1\x22\x38\x9c\x2c\x74\xa5\xb5\xe5\x04\x56\x5a\xdb\x43\x4b\xc1\xb0\x20\x5b\x76\x2e\xdc\x25\x6f\xd5\xef\xca\x3c\x1d\xbd\x58\x79\xc1\xad\x51\x79\x83\xa8\xa3\xc0\xae\xe5\x8d\xd2\xce\xbf\x58\xb7\xc8\x8e\xe2\x0b\x41\xdf\x2e\x88\x7e\xa1\x8e\x91\x8f\xe4\x8b\x62\x88\x4c\xd1\xd7\x14\x3b\xd2\x30\x8d\x16\x6a\xcc\xcd\x2f\x00\xfd\xb2\x65\x5f\x0c\x06\xca\xfe\x80\x92\x5d\xf3\x0b\x14\x44\x92\x7b\x00\x08\xda\x67\x57\x25\x72\xbd\x80\x75\x11\xa9\xe6\xcd\x4a\x92\x96\x1b\x2e\xd4\x85\xb4\xd9\xed\xaa\x3c\x2e\x8d\x5b\xca\x09\xc3\x2f\x20\x62\x48\x52\xf8\x85\xe0\x99\xcd\xa8\x5e\x62\x81\xa1\xa6\x61\x4f\x9b\xf9\xa2\x58\x20\x4b\xf7\xc5\x6a\xe3\x4e\xa2\xba\x58\xe7\xc8\x2c\xf6\x5a\x75\x8d\x74\xa6\x5f\xa8\x3f\x6e\x96\x77\x31\x9f\xcc\x69\x56\x17\xca\x38\x3a\x02\xfb\x42\x1d\x23\x57\xc7\xb9\x96\x94\xd0\xfc\x01\x45\x3a\xef\x46\x14\x2e\xf2\xbd\xba\x17\xa5\x06\xe3\x0d\x45\x17\x5d\xbc\xfe\x1a\xe4\xfa\xde\x9e\xcb\x9d\xe6\xc5\x19\xdc\x4c\xde\xd0\x8c\x96\x79\xed\xae\xc1\x23\xfc\x35\x08\x85\x36\xf3\x04\x5e\xd5\xfe\xda\x7f\x88\x8f\xb1\xea\x79\x8d\x85\x3b\x4d\x6c\xa7\x42\x61\x32\xdd\x89\x3b\xb7\xe9\x76\x92\x9c\x70\xed\xdc\x1a\x65\xfb\xc9\x69\x74\xed\x0b\x22\x21\x62\x4a\x0d\xd9\x8a\xe0\x85\xa8\x6d\x5f\xaa\x71\x1d\xa4\x0f\x1d\x37\x17\xdc\x77\xc5\x0e\xf3\x8b\x15\xc9\xed\x08\xbe\x0e\xae\x9e\x20\x44\x9c\xf6\x26\xeb\xf5\x85\x43\xbe\x05\xf7\x48\xa4\x08\x07\xe7\x5a\x0a\x75\x70\xd2\x4e\x63\x6e\x0f\xe3\x52\x93\x7e\x7c\x9d\x0c\x96\x2a\x7e\x00\x2b\xab\x4f\x03\xdc\xe0\xd3\xa4\x53\x5d\x27\xcf\x48\x2f\xff\x05\x7b\x99\x49\x96\x85\x86\x6c\xff\xba\x2e\xac\x83\x27\x81\x98\xea\x16\xfc\x7b\x45\x5b\x58\x61\x82\x9a\xc5\xd2\xeb\x62\x5a\x9e\xf9\xc7\x45\xf7\xac\x09\x0c\xb7\x52\xfa\xee\xa3\x0b\xd6\xa6\xd7\x52\x5c\x2c\x5a\x2e\xb4\x2c\xf7\x9c\x59\x18\xdc\x73\xf6\xb7\x5f\x88\x88\x4e\x2e\x5f\x78\x21\xfd\xde\x57\x83\x5f\xf7\x5a\x3a\x0d\x01\x07\xde\x30\x45\xdf\xac\x16\x28\xb4\x30\xa1\xcd\xc4\x00\x59\xc5\xa2\xd1\xc5\x42\x46\x76\xbb\x5e\x37\xe7\xe4\x36\x42\xf0\x0d\xc1\xba\x63\x5d\x03\x3c\x44\xb3\xdb\x28\x52\xeb\x19\x4c\x59\x25\xd9\x72\x7a\xe1\xee\x1d\xe7\x96\x5d\x4f\x9b\x8a\x97\x27\xf0\x2c\xac\x6b\x86\xcf\x62\xca\x7e\x83\x36\x3e\x8f\x70\x21\x5e\x51\x10\x3f\x2c\xe4\x62\x88\x58\x33\x59\xeb\x78\x2f\xef\xa2\x58\xee\x0d\xfb\x92\xf3\xdb\x6e\xe4\xff\x3b\x8c\xfb\xc6\x35\x92\x8e\x93\xb8\x37\x0a\x9c\x62\x1b\x37\xa4\x9f\x16\xdd\x01\xa8\x59\x8c\xe7\xde\xa8\xb0\x88\x49\xdc\x10\x76\x5a\x74\x7b\x71\xb7\xae\x07\xbc\x91\x5b\x3d\xa0\x06\xd2\x2b\xff\xed\x86\xf4\xd2\xa4\x44\xdf\x90\x5e\x1c\xd9\x7a\x07\x82\xa4\x49\x4f\xe9\x25\x6d\xc2\xf3\xbd\x2a\x74\x8b\x98\x6f\xa6\xef\x9b\xdc\x6f\x5c\x6c\x63\x0f\xe9\xcd\x6b\x20\x9d\x08\x7b\x47\x44\x9f\x05\xbf\x30\x67\x69\x5d\xe2\x46\x48\xf4\x2b\xe3\xee\x46\x81\x6d\x5f\xfd\x77\xc3\x18\x63\x87\xf7\xcd\xab\x6c\x9c\xf7\x7a\x27\xdc\xc2\xb8\xf9\x85\xc2\x17\xd4\x63\xc2\x05\x10\xa2\xa6\x3b\xc1\x57\xd1\x3d\x02\x6d\xd4\x5e\x29\x78\x37\x6d\x4b\xb9\xe1\xcc\x6c\x32\x3d\xdc\xb8\xe7\xb1\xc9\xb6\x73\x67\x5c\x68\x6d\x90\x33\x58\xa5\xce\xd2\x9b\xa9\x6c\x76\xd2\xdf\xcb\xfb\xa9\x3d\x7e\x67\x68\x79\xa6\x0d\x88\x31\xce\xbd\xbd\x71\xcf\x63\x93\x18\x73\xc3\x3a\xe2\xfc\xff\xbb\x50\xf4\x76\x87\x85\x20\x08\x49\x65\x91\x86\x40\x28\x74\x54\x67\x3f\xa0\xf9\xd2\xd4\x55\x58\xce\xa6\xc4\x9f\x1c\x41\x37\xca\x67\x37\x6f\x87\x29\x05\x25\x87\xda\xde\x88\xf9\x69\x12\x1f\xef\x8a\xed\xe3\xd1\x2a\x67\xa8\x09\xd4\x45\x48\xfe\x80\x86\x3e\xc9\x3c\x77\x5b\xb4\xa8\x65\xc2\x0d\x8c\xaf\x75\x6e\x1c\xc2\x6d\x70\x19\xd3\x6a\xe3\x01\x24\xf5\xe3\xc6\x2d\x2e\xf6\x90\xdd\x08\x20\xb6\x87\xf9\x86\x73\xd3\x85\x1a\x6f\x64\xe9\x8f\xcd\xbf\x23\x69\xa1\xbb\xbf\x0b\x4e\x2c\xbf\x7f\x63\xc7\xfb\x77\xe0\xcc\x94\xdc\xe9\x58\x90\x3c\x7c\x4f\x99\x2b\x6d\x9b\xdb\x10\xb1\x74\x7c\xdd\xa8\xac\xe4\x68\xae\x7b\x4a\x58\xc9\xee\xa0\xbb\xd3\xba\x2b\x24\xf7\xb5\xe8\x7e\x80\x13\xd3\x41\x4f\x77\x87\x4d\xda\xcb\x04\xaf\xe3\xa6\xa3\xe1\x1e\x15\x31\x6d\x42\xd1\x40\x2c\xbc\x79\x14\x85\xa5\xcd\x1d\xf2\x02\x98\xee\x0e\xe9\x31\x52\x1b\xc9\xfa\xbe\xab\xfe\xde\x23\x21\x12\x52\xe0\x19\x7c\xdd\xbf\x7b\xef\x30\x57\x38\x6a\xe3\xde\xa1\xc8\x4a\x13\xbe\x11\x5d\xbc\x99\xb4\xf6\x45\xfb\xc2\x3b\x8c\x2e\xaf\xd4\xd1\x7b\xe7\x5d\xb4\x5a\x28\x7a\x17\x5f\x6c\x6d\x07\x63\x94\x30\x74\xc3\xe8\x12\x5e\xdb\x69\x05\x13\xeb\x18\xbf\x61\x54\xb1\xd3\xe8\x3e\xe0\x5d\x30\xab\xa5\xb7\xd0\xdc\xff\xe8\xa0\x1d\xbf\x3f\x08\x82\xa6\x7d\x50\x01\x93\x45\xf7\xc6\xa5\x8a\xd6\x43\x6e\x94\x6a\x6c\xd5\x30\xa1\x02\x52\xf3\x86\x81\x7c\xb5\x99\x27\x9c\x90\xe0\x8a\xdb\x38\x33\x1d\x6a\x7e\x23\x8b\x2d\x38\xb1\xf3\x3e\x17\xb9\xb8\x4b\x52\xb0\x10\x79\x71\x35\x85\x69\x86\x12\x3b\xde\xea\xa6\x5d\xc6\xd1\x48\xf7\xb5\x62\xff\xd4\x86\xc4\x65\x0a\xbd\x16\x1e\x04\xc3\xb5\x80\xf2\x18\x90\x02\x8d\x97\x6b\x01\x69\xa0\x9e\x49\xb3\xde\x76\xa8\x51\x6d\x03\xe7\x7d\xe3\x9c\x95\xe5\xe4\x86\xfb\xce\xb9\xce\x37\xe2\xa1\x6c\xc3\xbb\x79\xc3\xa1\x5d\x94\x37\x32\xcc\x5e\x57\x42\xdf\x37\x64\x61\xef\x4b\xb8\xd7\x7c\x23\xc4\xfd\x70\x44\x75\x00\xef\x9a\x8b\xf6\xdf\x0f\x98\xa1\xec\xa9\x37\x82\xa1\xec\x4d\xbf\x99\x62\x66\x46\xf5\x60\xa5\xab\xdb\xcc\x6d\xf5\x14\x50\x10\xa0\x37\xbf\x00\x6b\xbe\x4d\x6c\xf7\x83\x42\x0b\x9e\x12\xdd\x71\x8e\xf8\xb9\x51\x36\xb2\x55\x7f\x40\xff\xc3\xa7\xfd\x6c\xb4\xc0\x09\x8b\x0f\xfc\x73\x76\x1d\x3f\x1b\xbd\x59\xda\xa6\xcf\x86\x49\x57\x7f\x80\x5b\x4a\xe5\x41\x78\x98\xf6\x56\xc2\x8f\x54\xa0\x07\xe5\x96\x5e\x39\xc5\x0f\x83\xbf\x1c\x82\xf4\x20\xb4\xd9\xbe\xed\x07\x57\xac\x98\x8d\x3c\x94\xcf\x64\x13\x79\x10\x0c\xb6\x0d\xff\x3e\xe9\xcc\xd1\xfe\x0f\x2b\x66\x3b\x86\xed\x81\x3f\xcf\xe5\xc2\x1e\x54\xcc\x76\xd9\x86\x87\xf2\x9c\x4c\x2a\x0f\xe3\xa0\x8d\x90\x80\x3a\x00\x9b\xbf\x47\x0c\xbc\x04\xff\x07\xd1\x68\x2e\x58\xf6\xe0\xa6\x44\xeb\xf8\x4f\xe0\xf1\x25\x00\xd7\x45\x89\xda\x6b\x0f\x8a\x19\x8c\xe2\x01\x6e\xa2\xc8\x10\x3d\xa0\x2b\xcd\x28\x06\xe8\x4f\xfa\x3d\xae\xdd\xab\x21\x22\x0d\xe2\xc5\x0f\xc8\xad\xbd\x0c\xb8\x48\xdc\x0e\xc7\x87\xc5\x0d\xc4\x59\x9f\x55\x15\x5c\x93\x8a\x64\xd6\x92\xd4\x1f\xdc\xd8\xe2\xe4\x94\x27\x62\xbb\x37\x0f\xc0\xed\x1e\x3c\x02\x78\x92\xac\x2d\x0f\x83\xa8\x5f\x40\xd3\x9b\x27\x29\xf8\x49\xc8\x56\x11\x03\x79\x12\x5d\xd9\x9a\x35\x7c\x79\xaf\x2c\xd6\x07\x39\x76\xd6\xde\x1f\xe4\xd8\xb9\x2c\xf0\x83\xbb\x11\x5f\xe2\xdc\x83\x9a\x9b\xaf\x24\xe6\x07\xde\x3e\x1b\x1d\x9e\x44\x4b\xa8\x38\xc6\x83\x9a\xe1\x23\x7b\x48\xc6\x20\x18\x2d\xf0\xf7\xbd\xf2\xa8\x1f\x38\xfc\x9c\xc6\xfa\xe4\xb5\x12\xea\x22\xe3\x16\x79\x93\x0f\x6b\x48\x39\xa2\xee\xc9\x9c\x86\x80\x82\xf1\xcd\x66\x8d\x07\xb6\x36\x27\x54\x3e\x79\x9d\x48\x7e\x01\x3c\xc2\x04\x5f\x16\x8c\xc2\x74\x21\x8c\x42\x43\x99\x47\x98\x2f\x95\x7f\x78\xdd\xa1\xc3\x7e\x9e\x25\xb6\x4a\x83\x79\x0a\xa8\xa1\xbb\x4d\xd6\x6b\xcc\xc2\x1a\xd7\xaa\x61\x00\xb9\xc8\x1e\xfb\x54\x52\x83\xf1\x86\xb2\x54\x0e\xe2\x7e\x70\xef\x8b\x53\xf6\x1f\x38\xf9\x9a\xe3\x08\x1f\x84\xf1\xbd\x12\xaf\x1f\xe6\xd2\x8d\xe1\x31\xa0\x0a\x76\x7f\x01\xfb\x6c\x71\x9b\xf7\x2e\x68\x96\x28\x4b\x65\x55\xf3\x41\x01\x86\xcd\x0b\x53\x21\x33\x79\xed\x2b\xe6\x64\xb4\x31\x75\xee\x85\x67\x88\xc6\x76\xd0\x3d\x8d\x57\x88\x09\x40\x48\xca\xcd\xd7\xfb\x3f\x30\x0f\x36\xd3\x23\x2e\x81\xf1\x91\xf9\xb0\x82\x83\x43\xec\x9e\x86\x58\x26\xe9\xcf\x4f\xdb\xf9\x82\x7b\x00\x85\x67\x7f\xb0\x28\x5c\x0b\xd5\xc8\x7c\xcc\x3e\x29\x0d\x4b\x02\x7a\x20\x0d\x3b\xa1\xe6\x41\x41\x2b\xc7\x6b\x3c\xb4\x3f\x4a\xc3\x78\x3a\xe7\x20\x2c\x21\x2c\xb0\x7b\xdb\x33\x2a\xd0\xec\x99\xe6\x48\x29\x65\x0f\xca\x5f\x39\x5d\xe3\xe1\x75\x89\x73\xce\x3f\x39\x7f\x50\x91\xb4\xf9\xb4\x80\xe9\x72\x78\xcd\x79\x31\xba\xe4\x9c\x07\x11\x82\xc1\xe1\x7b\x0f\x3c\xa0\xcd\xe1\xa0\x0f\x72\x05\x1c\xb6\xf4\xc0\x03\x6a\xd1\xfb\x41\xea\x40\xc8\x6e\x27\x5c\x8f\xaa\x0e\x99\x39\xe0\x10\xb9\x07\xb2\xba\xaf\x49\x7b\x10\x20\x98\x1c\x4b\xf1\xa0\x20\x7b\x1b\x1e\xf1\x24\x06\xfc\x60\x01\xed\x2f\xb0\xe3\x65\x0e\x78\x28\xcd\x9b\x92\xe1\x51\x75\x65\xc8\x67\x5f\x84\xa7\x1e\xf7\xb5\x99\xfc\x05\xcf\x71\xe3\x65\xe7\xb2\x68\xc8\x7d\x40\xd9\xf6\xef\xd0\x71\x36\xf7\x48\x8e\x20\xed\xfd\xd9\x19\x07\xe0\x73\x76\xc7\xf6\x19\x7e\x81\xa1\x15\x6e\x3f\x04\x41\x43\xa2\x84\x85\xc3\x45\x9f\x03\x07\xb5\x29\x13\xb2\x7e\x72\x61\x85\xe7\xe0\x86\xd7\xd2\x1c\x8b\x8d\x69\x08\x84\x02\x06\xaf\x35\x8c\xa7\xbe\xa1\xf8\x99\xc2\x7e\xb3\xdb\xff\x81\xf1\xd4\x8e\xe8\xe7\x24\xda\x64\x20\x78\x10\xc8\x67\x93\xf4\x73\x2e\xe6\xee\x07\xdc\xc1\x32\x21\x3c\xac\x87\xea\xb8\xb9\x07\xe2\x7f\xb3\x17\xe2\xa1\xb9\xd5\x1b\x0a\xd7\x2d\x3a\x1c\xe2\x81\xa8\xee\x8b\x5f\x1f\xb8\x58\x5d\x27\xf4\x41\xe6\x41\x7a\xb5\x2f\xbc\x2f\x90\x2e\xc4\x1a\x49\x48\x7d\x20\x97\x5b\xbb\x7d\xe0\x53\x7d\x55\x62\x78\x58\x0b\xc2\xd1\xc5\x0f\x02\xeb\x7c\x49\xdd\x73\xaf\x49\x6a\xa5\xee\x35\x49\xbf\x41\x2b\x82\x59\x21\x2a\x91\x3a\x4b\xef\xe1\xd5\xe2\x25\xf9\x85\x8b\x5d\x08\xf7\x10\xe6\x5f\x82\x2e\x84\x79\xe7\xfc\x3e\x4c\xfc\x73\xe0\xd9\xc3\xeb\x64\x1c\xbc\xfa\x20\x56\xce\xe1\x79\x0f\x6f\x90\x79\x6d\x44\xc8\xf3\xbe\x42\xeb\x79\xc8\x5d\x65\x79\x78\xa6\xfc\x9e\xfb\xab\x07\xee\x54\x4f\x9c\xd5\x4c\x7d\x02\xa0\x9a\xa9\x2e\x22\xa8\x1b\xab\x93\xea\x7e\xa3\xba\xb1\x44\xbb\x82\x61\xea\xb6\x9c\xb3\xd5\x0f\xe6\x5e\x57\x1e\x7d\xdd\x70\x41\x8c\x02\xbb\xea\x86\x9a\x11\x2a\x3c\x5c\xb7\x00\xfe\x54\x34\x24\x6f\x02\x57\x8d\x87\xba\x05\x9e\xf6\xd5\x0f\x0a\x7a\x10\x4c\x81\x59\x5f\x45\x6d\xf2\x86\xcf\xda\xd4\x2d\xf0\xde\xaf\xea\x31\x07\x7a\x70\x8f\xd4\xf4\x93\xbb\x04\xe2\x82\x7b\x80\x90\x1f\x3c\x04\xc2\x9a\x3e\x87\x52\xdd\x58\xcd\xab\x64\x8d\x00\x0b\xa8\x6a\xac\xd6\x2d\x72\xf5\xdd\x5e\x34\xaa\x11\x78\x69\xa1\x14\xa1\xba\x21\xbf\x43\xde\xd9\xba\xa1\x9c\xa9\x0a\x36\xd5\x0d\x55\x27\xaa\xd1\x04\x89\x38\xf6\x9f\xc4\xc7\xd5\x2d\x12\x01\x82\x1f\xe1\x71\xca\x39\xad\x5b\xe4\xfc\xb5\x28\xac\x1c\xa6\xf8\xa1\xba\x21\x05\x51\x9e\xa3\xba\xe1\x26\xf1\x6e\x04\xe1\x76\x43\x97\x2b\xa9\x1b\xcc\xad\x55\x65\xdb\xea\x36\xa5\xdf\xac\x22\xf7\x75\xcb\x94\xb8\xb2\x08\x07\x92\xaa\x6a\xbe\xd4\x0d\xd7\x11\xf6\xe4\x76\x42\xdb\x1d\x00\x41\x51\x23\x2e\xb7\x71\x75\x87\xdc\xf6\x59\x40\xf2\xf6\xc1\x64\xda\xcb\x84\x49\x6b\x00\x37\xf2\x96\xb4\xaa\xcc\x3e\x51\x54\x71\xdd\x70\x71\x77\x77\x1b\xa2\xac\xbc\x36\x75\xa3\x1f\x59\xf1\x7b\x75\x43\x3a\xca\xe8\x1a\x81\xd9\x28\xaa\x26\x55\x37\x38\x92\xb3\x69\x17\x92\x6c\x7f\xb5\x09\xa2\x40\x62\x51\x88\xa2\x49\x16\x6e\x37\xbd\x5f\xb9\xdd\xb4\xb2\x75\x71\x4b\x0d\x08\xb7\xf3\x16\x4d\xaa\x95\x78\xf5\x17\xe0\x9e\x46\xc2\x94\x63\xe3\x30\xc4\x95\x3c\xc2\x1c\x00\x45\x21\x74\x49\x5e\xdd\x58\x38\xcc\x53\xa8\x9c\x82\x40\x46\xe5\xfa\xee\xfd\x0b\x2f\xb6\x52\x3f\xea\xc6\xca\xf5\x9b\x70\x06\x39\x56\xc5\x11\xea\xc6\xd2\xaa\x4d\xfd\xb7\x85\x74\x41\xd8\x50\x41\xd0\x0c\x03\x62\xeb\xbb\x03\xea\x86\x45\x33\x68\x3c\xda\xcd\xe5\x50\xe0\xa1\x9b\x3f\x74\x32\xef\x22\xe2\x83\x54\xd9\x5f\x1f\x00\x69\xe6\x07\x1d\x51\x35\x45\x43\x32\xd7\x44\xd1\xe4\x75\xeb\x24\xce\x22\xf2\xc6\xdd\x84\xaa\x16\x5c\x37\x5e\x4d\x68\x7e\xd0\x81\xb5\x2c\xda\xed\x48\xf7\xea\xc2\x1a\x2a\x44\x74\x6f\xc0\x65\xc3\x35\xa5\xf0\xea\xc1\x62\x98\x70\xf5\x60\x37\xad\xd2\x2b\x5e\x3c\x24\xbd\xe2\x9b\x40\xe2\xdd\x84\xd5\xa4\x32\xd6\x24\x84\x27\x24\x9d\x76\x33\xa9\x41\xa0\x35\xc9\x75\xcf\x77\x35\x0c\x0b\x4a\x81\xcd\xe2\xf8\x59\x3d\x4e\xd1\x31\xbd\x8e\x9b\x65\x08\x36\x39\x22\xf8\xae\x98\xaf\x2c\xd1\xd1\x4b\xb1\xd3\x2e\xf7\xea\x02\x66\xb3\x26\x18\x76\x90\xc7\x6b\x48\x9a\x88\xcc\x69\x20\x5b\x26\x1f\x61\x30\x14\x07\x53\xc7\x41\x85\xd6\xd3\x64\x1a\x6c\x35\xef\x3a\x22\xd4\x1e\x0d\x89\x32\xae\xdd\x24\x8e\xca\xf9\xdd\xc4\x70\xe0\xc8\x33\x5e\x0f\xd4\xea\x30\x05\xb3\x26\x45\xf1\x19\x89\xa4\x92\x6e\x8a\xe6\xbd\x84\xe9\xf5\x02\x4a\x67\x34\xb7\x41\x2e\x26\x86\x83\x7a\x97\x77\x21\xeb\xa3\x15\x1f\xa2\x27\x59\xd7\xeb\x01\xea\xf9\xc5\x9f\x18\xe2\xea\x86\x82\x15\xdd\xb4\x75\x42\xeb\x30\xd2\xcf\x85\x74\x01\xc4\x60\xbe\xd7\xf9\x80\xca\x67\xaa\x87\x59\x37\x38\xe5\xbb\x77\xd4\xb5\xe4\x06\x0d\x71\x71\x0f\x8a\xb4\x2e\xe2\xc8\x6d\xda\x90\xcd\xa8\x50\x34\x7f\x33\xce\xae\x05\x82\x60\x82\x91\xb9\x1a\x89\xd7\x22\x67\xc3\x44\xd9\xd5\x6d\x94\x9d\x35\xab\xba\x29\x24\xaa\x03\xd8\x98\xbb\x39\xd7\xbd\x90\xae\x0e\x96\x13\x5f\xeb\xba\x8c\xcc\x55\x93\xb8\x41\xbc\x66\xef\x94\x75\x9b\x7f\x5f\xeb\xaa\x1e\x79\x8b\xb6\xd9\x02\xe5\xd4\xa6\x11\x1e\xc4\x6b\x79\xb7\x3c\x84\x40\x20\xc3\x08\xfd\xda\xc1\xcf\x62\x0a\x1a\x91\x5e\xf8\xd7\x19\xf8\xa0\xc8\x97\x8f\x30\x44\x14\xbe\xd6\x89\x52\xab\x0f\x24\x56\xa1\x2d\xaf\x07\xb4\x28\x49\x96\x08\x28\xba\xef\x93\x3e\x20\xc5\x57\xee\x84\x1a\x78\xef\xb6\xca\xe5\xd4\x00\xa3\xb2\xd7\x29\x6c\xa0\xc6\xea\x0f\xb8\x9f\x9a\x1f\xf4\xef\xaf\x26\x49\xba\x06\xd4\x56\x33\x8f\x08\x1b\x15\x86\x17\x08\x04\xba\xf9\x0b\x2e\xbd\xbe\x60\xd0\xa2\x72\x65\x6a\x08\xb0\xa2\x1a\x06\x8a\xb9\x42\x7c\x08\xcc\x15\x10\xa6\x43\x58\x40\x0a\x0d\x81\x04\x9c\xfd\x09\x4c\x73\x9e\x36\xd2\x8e\x43\x72\x9b\xfa\x40\xf1\x03\x52\x47\x36\x10\x0f\xb8\xa9\x66\x11\x11\x2a\x23\x6e\x1b\x28\xd7\x8a\xfc\x42\x5c\x98\x16\x1e\x22\xe8\x51\x14\x1f\x90\xc6\xd1\xc5\x6c\xc3\x4a\xcc\xa8\x7e\x81\xe1\x3c\xaf\x2e\x21\x0e\x88\xe4\x43\x02\x08\x5e\xfc\xc4\x73\xcc\x5d\xe2\x76\xa4\x2e\x0a\x0d\xcc\xba\x28\x86\x61\x65\x5d\x78\xf9\x13\x14\x71\x71\xb2\x90\x68\x12\xf7\x62\xc1\x54\xeb\x8b\x8a\x6a\xc0\x65\xdb\xbd\x09\x0f\xa8\x63\xdb\xbb\x7f\x87\x16\x64\x34\x24\x88\x65\xda\x86\x81\x97\x39\x2a\x49\xa7\x06\x4a\xb7\x5d\xb3\xca\x9c\x84\x7f\x5f\x93\x70\x0f\xf4\xe3\x89\x19\x85\x4c\x4c\xbb\x07\x5c\x4e\xef\xb5\xcd\x6b\x52\x82\x99\xd2\xae\x27\x89\x70\x03\xef\xfc\xc0\xcb\xb7\xbb\x47\xe4\x11\xe1\xef\x51\xd8\x5b\x47\x46\x40\x6e\x46\x1f\xea\x0f\xd1\x07\x2f\x5a\x82\x8d\x55\xf9\xb6\x35\x14\x06\x13\x7a\xa5\x29\xbb\x0e\x75\xc8\x5b\x93\x94\x35\x54\x43\x45\xad\x3e\x8f\x58\x79\xd6\x6b\xca\x75\x1d\x49\x3f\x29\xa8\x5d\x03\x12\xab\xfb\xf0\xd7\xb8\xe6\x4f\x1a\x56\x40\x6c\x81\xea\x04\xd4\x40\x39\x75\x08\x3f\x95\x5b\xdc\x94\x89\x5a\x65\xc3\xf3\xa9\x9c\x8f\x88\x02\x82\xaa\x79\x71\x40\x5a\x75\x1f\x5a\x63\x96\x32\x2b\xa6\x5c\xd8\x5b\x7b\xd7\x7c\x1b\x88\x62\xf8\x77\xce\xc0\x1d\x56\xcc\xc0\x6d\x90\x44\xd7\x0c\x96\x7d\xd6\x64\xca\xd0\x84\xe4\x35\x6f\x8b\x23\x78\x08\xf2\x5a\x73\xc2\x86\x49\x06\xb7\x99\xfa\x65\x46\x87\xe2\x67\x2f\x5e\x0a\x03\xaa\x5c\x39\x35\xc0\x04\x3a\xa4\x3a\x06\x5e\xca\x24\x03\x52\x0d\xbc\x54\xdb\xb2\x71\x80\xe8\x6a\x6d\x3c\x20\x9e\x73\x93\x34\x15\x60\xf2\x1c\x9b\x7f\xcf\x68\xfb\xf7\x8a\xb6\x26\xc9\xd8\xcd\xea\xad\x31\x90\xfa\x69\xe6\x0d\x0b\x67\x1f\xa2\x84\x41\x90\xfd\xfb\x5a\x79\x21\x7a\x2c\x2c\x79\x48\x6a\x10\x92\xe0\xc2\x4e\xf5\xb6\xab\xcf\x9d\xb7\x6d\xa9\xcf\x15\xaf\x60\xcc\xef\x90\x88\x24\x65\x86\x15\x9f\x50\xfc\xc5\x64\xf7\xb6\xac\x84\x9d\xb6\x19\x13\x28\x92\x44\x86\xa4\xca\x80\x70\xcf\xe1\x43\x8c\x49\x22\xd5\x88\x46\xfc\xe7\x90\xf9\x27\x20\xdc\xf3\xc5\x52\x98\xcb\x2c\x75\x37\xac\xd2\x2c\x66\x73\x07\x3d\xca\xa6\x27\x84\x7f\x0e\x2f\xdd\xc1\x0b\x2a\xaa\xbb\x40\xb0\x8b\x94\xc1\x70\xd2\x77\xe8\x3d\x8e\xdc\x64\x5d\x24\x5f\x03\x04\x47\x95\x14\xac\x01\x45\x77\x37\xc3\x88\x70\x86\x11\xdc\x1e\x68\x0b\xad\x27\x21\x12\x84\xa8\xc3\xa2\x90\xbf\x1a\x4e\x22\x49\x00\x22\x7a\x74\x98\x2b\xb0\x02\xaf\x89\xeb\x5a\xeb\x26\x00\x2f\x1a\x92\x7d\x1e\x5d\x0b\xcd\x7e\x40\x25\xc7\x8c\xee\x5a\xd4\x22\x34\xb1\xbe\x6d\x31\xaf\xbc\x19\xce\xe6\x33\x0c\xd1\x06\x43\x6a\x4e\x60\xf0\x66\x32\x37\x47\xb6\xf0\x30\x75\xdc\x94\x16\xcc\x9e\xef\xb5\x78\x5a\x6d\xde\x4f\x50\xcc\x4e\x98\xff\x5b\xbd\x75\x51\xc3\x76\x33\x49\x42\xf6\x1b\x5e\xbc\x25\xfb\x79\x1e\x0f\x81\xf0\x07\xe0\x05\xaf\x0e\x3a\x08\xcc\x1d\x60\x71\xcc\xd0\x1f\x2c\x86\x0c\x32\x01\xc9\x25\xc3\x2c\x19\xe1\x06\xba\x73\xb2\x06\xd8\x2f\x87\xf4\xa2\x08\xc1\x50\x77\xc1\xd4\xc8\xda\x2f\x0a\x97\xa9\x91\xd7\x0f\x28\x1a\xa6\xc6\x8d\x47\x48\xf3\x27\x34\x6f\x88\xcb\x47\x06\x04\x64\x77\x01\x18\x93\x7b\x00\x8c\xe9\x27\xf1\x70\x35\x22\x95\xc5\xab\x16\x03\xaa\x08\xbb\xf3\x80\x5c\xb3\xee\x36\xb6\x87\x38\x51\x0c\xc8\x43\x90\x4c\x18\x91\xd8\x32\x92\x7f\x2f\xa4\x2c\x0f\x80\x6a\x72\xc5\x1f\xec\x50\x61\x3c\x00\xb6\x43\xf2\xef\x27\x11\xe4\x1e\xaf\xef\xaf\xda\xb4\xc4\x31\x60\x09\x92\xdb\xb8\x5d\x4a\x92\x71\x64\x2c\xa8\xaa\xc6\xd4\x08\x91\x71\x24\xbf\xc0\x88\x0f\x9d\x30\x31\xd2\x10\x2e\xc5\x2c\x46\xe6\x2b\xfb\x8b\xc6\x2e\x35\x66\xa4\xfd\xfe\xf5\x05\xe8\x28\xb9\x7d\xf0\x0b\x77\x41\xa8\xb5\xca\xb0\x67\x56\xed\x96\x98\x40\x38\xd9\x6d\x46\x28\xe9\x68\x8e\xb8\xf9\xe0\x05\x34\x64\xca\xd4\x8c\x68\x16\xc7\x89\x7e\x81\xc6\x46\x2f\x65\x3a\xa0\xc3\xfb\x05\x9e\x21\x12\x01\x23\x02\x4e\x93\x02\xad\x6a\x44\x32\x6f\x75\x1b\x26\xd3\x6c\xa0\xa7\x50\xd9\x86\xc4\x83\xc8\xeb\xa0\x54\x4e\xa7\x46\xe6\xda\xd8\x58\x12\xe9\xfd\x57\x68\x47\x8d\x4c\xbe\xb1\x71\x24\x4e\xa9\x32\xb6\x57\x17\xfd\xfb\xab\xbe\x30\x8b\xb2\xbb\x2a\x4d\x5c\x23\x84\x48\x65\x51\xd7\xc8\x2b\xa6\x6c\x99\x88\xbc\x42\xfc\x35\x22\x56\x42\x82\x70\x64\xe1\x38\xc5\x1b\xd4\x58\x68\xb1\x94\x74\x1e\x59\xd2\xa7\x7a\x16\x53\xf0\x8c\xb6\x5d\xc4\xc2\x59\x89\xe7\x47\x48\xa2\xd6\x10\x62\x59\xb3\x14\xaa\x59\xd4\x47\xbc\x31\x16\xe6\x5b\x7a\x5b\x14\x6c\x0b\x53\x35\xc3\x60\xe5\x1a\xaf\xb1\x70\x1a\x1a\xa2\x92\x80\x84\x27\xa6\xfb\x54\x23\x16\x66\xd6\x61\xc4\xf1\x52\xf2\x6a\x44\x55\x1c\x64\xb2\x05\x44\x9a\x41\xab\x81\x5e\xa5\x71\x3d\x24\x33\x57\x75\x14\x46\xf8\xf3\x83\x81\x6e\xdc\x58\x92\x73\x62\xa3\xe7\x44\x30\x34\x2e\xa6\x3f\xa0\x72\xd6\xfd\x01\x9d\x7f\x5e\x0b\x5c\x8c\x3e\x24\x49\x45\x26\xfd\xca\x5d\x5f\x23\x2e\x46\x1f\xc5\x6d\x44\x8e\x7a\x96\x70\xdf\x57\xef\x02\xb8\xeb\xe5\x10\xaf\x11\x86\xd5\xe1\x9d\xcd\x58\x56\x03\x80\x4b\x42\x5d\x8b\xa4\x46\x5c\x47\xa5\x8b\xe2\x6a\x44\x6d\x5d\x5b\x1b\xe2\x60\xf4\xac\xd1\x36\xa5\xc7\xe4\x33\x29\x52\x7a\x34\x75\xb1\xa2\x8e\x49\x81\xd2\xa4\x19\x20\xeb\xe4\x76\xbf\x8f\x12\x16\xde\xa5\x83\x5a\xb9\x21\x84\x11\x74\x78\x99\x10\xeb\x6a\xe7\x4b\x84\x0d\xd4\x52\x7d\x64\xf6\xb0\x34\xe4\xb8\xf3\xe0\xee\x7e\x80\x52\x7e\xa6\xb5\x29\xe7\x95\x2d\xff\xec\x04\x3a\x78\xc7\x8b\x3e\x3e\x78\x22\x4a\x20\x8a\x07\x63\x7b\x05\x3e\xcb\xdd\x9a\x48\x58\x9f\xe6\xc5\x3b\x91\xd7\x3b\xbc\x44\x07\x1d\xbc\x9a\x2f\xae\xa4\x1a\x26\x2a\x14\xd7\x1b\x66\xa5\xcb\x6b\x6d\x32\x85\x61\x71\xc8\x6c\x11\x29\x02\x1a\xa1\x48\x04\x1e\x5e\x21\x8a\x80\x52\xef\x23\x45\xc0\xe6\xfe\x70\x3a\x34\xf7\x07\x22\x96\x4c\x1a\xe1\xc1\x4e\xaf\xfe\x6f\xce\x50\x33\x40\x3c\xeb\xf0\x4e\x5c\x32\xa1\x3e\x80\x69\x72\x98\xc8\x79\x29\x83\xf9\x0f\x2a\xe3\x5a\xbf\x88\x17\x49\x4e\x00\x2f\x99\xd2\x4b\x8e\xea\x35\xd5\x82\x52\x44\x3d\xbf\x61\x6e\x82\x04\xa3\x61\xa2\x43\x7e\x91\x92\x17\x6a\xbc\xd6\x4e\xf6\x83\x03\xfb\xc8\x53\x20\x0e\x44\x06\x17\x70\x60\xd6\xc0\x2b\x18\x9a\xdb\x2c\xe5\xe6\xf6\xa2\x02\x41\x88\xe2\xb8\xd9\x92\xcd\x8d\x4a\x15\x16\x2c\x70\x73\xe7\x78\x75\x08\x9c\xfa\x80\x85\x1d\x72\xf8\x7b\xfa\xcb\xab\x65\x3b\xf8\xcb\x6d\x49\x8a\x0f\x25\x37\x29\x65\x11\xe9\x41\xc3\x07\x2e\xfd\xe7\xc6\x19\x0a\xe9\x6e\xb2\xd2\xc7\xe5\x1d\xf7\xba\xaf\xe8\x56\x23\x05\xc5\x66\x92\x79\x0b\xc5\x4d\x11\x6a\x82\x78\xa9\x7b\xda\x6b\xda\x48\xd9\x43\xed\xc5\x80\xfd\x80\x27\x95\x8e\xcb\xb4\x31\x38\xc2\x3d\x82\x94\x25\x7c\x26\x56\x9b\xa9\x6e\xd3\x73\x5d\xdd\x01\x25\x1d\x89\xcc\x89\xe2\xa9\xd0\x94\x36\x6a\xd7\xda\x1d\x69\x19\x22\xb5\x1d\x52\x40\x3a\x81\xf6\x6b\xa2\x47\x5e\xe5\x9c\x6a\x5a\x96\x48\xb1\xbc\xb4\x32\x8a\xaa\xdf\x80\x1e\xd8\x3c\x06\x2c\xe7\x41\xab\x9f\x98\x32\x24\xb1\x22\x45\x6e\x61\xb7\x3b\x2c\x95\xc2\x64\x1c\x84\x41\x43\x2e\xbb\xa1\x28\x3e\x41\xc4\xdb\x86\x5f\xe0\x49\x94\xfc\xc2\x03\x73\x95\x30\x95\x28\x46\x88\x0f\xa7\xc4\x5d\xa7\x4d\x96\x96\x9d\x50\x02\x55\xe2\xad\x08\xb6\x44\x27\x94\x6b\xd9\x14\x72\x5d\xd3\x14\xe2\x5a\xf3\x3c\x60\x07\x34\xaf\x4b\x08\xd0\x6c\x6e\x2f\x3b\xa0\x31\x95\x29\x06\xb8\x87\xbc\x80\x88\x7a\x30\xe0\xfe\xd4\x90\x99\x3b\xcf\xb8\xca\x34\xea\xc8\xb0\x95\x58\x9c\xd7\x50\xc3\x90\xa7\xa4\x82\x9a\x32\xad\xbe\xa6\xd3\xcc\xbd\x28\xa0\x50\x95\x45\x21\x37\x35\xf1\x6e\x04\x95\xa2\xaa\xa9\x30\xaf\x41\xa6\xac\xb4\x44\xb0\xf4\x93\x6a\xa5\x35\xd1\x52\x98\xdc\x7f\x9b\x58\xcc\x6e\x77\xf6\xe6\xee\x79\xa6\x8a\x5b\x24\x06\x78\xda\x5d\x94\x20\xa0\x29\x02\xb4\xa6\x4a\x45\xa8\xf9\x01\xb9\x81\x38\x5c\xaa\x0d\x07\xa1\x90\x00\x37\xb6\xae\xb3\xaa\x09\x65\x15\x87\x09\x0c\xe6\xc0\xf1\xfa\x9d\xc1\x01\x5e\xdb\xba\x28\x50\x68\x44\xe1\x45\xd5\x30\xac\xa9\x51\xa9\x90\x1d\x20\x35\x54\x8e\x11\x4f\x4c\x8d\x27\xa1\x49\xb4\x51\xcb\x1f\x7e\x03\x47\xa1\x89\xa3\x35\xb0\x75\xf7\xb8\x30\x27\x28\x71\x45\x7b\x34\xcb\x9a\x12\x5d\xd2\xfd\x28\x35\xad\x1b\x44\xcd\x2f\x1a\xf9\x85\x77\xc5\x32\xf8\x49\x58\x4e\x28\xcd\xe8\xb3\x27\x75\xda\x2a\x8c\x99\x4e\x97\x91\xc6\xe8\x6b\x5a\x1a\x83\x17\xb9\xdb\x42\x9f\x58\x69\x31\xbb\x4b\xe2\xde\x1f\xac\xdd\xaf\xc5\xc0\x05\x09\xb6\xe0\xa5\xce\x7d\xe7\xdf\x41\xd1\xa6\xcf\x41\x17\xad\xf7\x1d\x2b\x2c\x7b\xad\x78\x69\x97\x4f\xd0\xc4\x0c\x70\xfb\x6b\x12\xe5\x40\x1d\x37\x69\xb0\x34\x92\x66\xb9\xe4\x3e\x6f\xb3\xc1\x8d\xea\x59\xa1\x94\x62\x36\x27\x66\xc5\x65\xdb\xf8\xd3\x20\xd4\x42\x0b\x9c\xdf\x43\x8a\x4e\xe2\x95\xa5\x52\x95\x12\x9c\xe1\xc3\x9c\x00\x17\x2e\x0c\x33\x02\x26\x49\xd9\x24\x9f\xe0\x0b\xaf\x9e\x03\xaf\x09\xb3\xfd\x21\x21\xce\xd2\x2a\x65\x42\xa1\x1a\xdb\x4f\x12\x6c\x90\xf1\xd5\xc1\x9c\xa3\xb2\x6c\x6a\xa2\x09\xf2\xf5\x3d\xc8\xeb\x05\x21\xf7\x88\xb7\x3a\x4d\x8e\xd2\x07\x12\x83\x28\x7d\xa4\xc2\x13\x3e\x4c\x7c\xa8\xfd\xdc\x8c\xe4\x83\x67\xb6\x21\x3a\xee\x29\x0c\x4b\xba\x4e\xe7\x86\xb6\x66\xc0\xe2\x88\xf6\xc4\xa4\x33\x4d\x2d\xda\xc4\x39\xc5\xd1\xb2\xf9\xa8\x3a\x49\x08\xd9\x2f\x54\xbc\xa0\x29\x30\x86\xd2\x6e\x8b\x34\xe5\xcf\xa2\x04\xdc\x9a\x96\x3c\x29\x11\x3a\x4d\x79\x32\x29\x15\xa9\xa6\x29\x4f\xa6\xcd\xb4\x77\x51\x05\x36\x83\x9e\x02\x65\x51\x32\x6b\x4d\x17\x8f\x68\xa9\x00\xe9\x42\x80\x80\x64\xf0\x34\xe5\xbf\x64\xdf\x45\x62\x71\x43\x09\x53\xe9\xa2\xec\x63\x41\xe3\xa6\x54\xe0\x95\x83\xc0\x17\xcc\x48\xee\x04\x10\x84\xb6\x9b\x01\x5e\xde\xc3\x37\x67\xed\x0e\xb0\x67\xb3\x31\x8f\x90\xc9\xf4\xda\xe5\x37\x13\x1f\x35\xc4\xc3\x13\xda\xbb\xf6\x59\xd3\x14\x1e\x1e\x16\xdf\x74\x1b\x2e\x7e\xef\xa8\x87\x4b\xf3\xa3\xa0\xb8\x34\xe5\xc1\x90\xec\xaf\x49\x0f\x91\xf6\x99\x41\xde\xd0\x5b\x70\x9b\xe2\x40\xf7\x03\xee\x70\x91\x7f\x46\xb2\xb6\xe3\x5d\xf2\xf6\xa0\x87\xcf\x0c\x73\x20\x1b\xd2\x31\x95\x61\xdf\x1b\x56\x25\x72\x00\x9a\x83\x5f\xc8\xf3\x68\x94\x98\x9d\x03\x67\x38\xd4\x6e\x78\xbf\xaa\xdd\xd9\xa1\x1f\x40\x1e\xec\x6e\xf3\xf0\x17\x6f\xcd\x28\x3d\x33\x74\x41\x41\xcd\x2b\x9d\x47\x9c\x2d\x23\x56\x71\xe8\x86\x82\x9a\x23\x25\x27\x31\xaa\x1c\x89\x29\x7f\xd1\xd1\x76\x97\xe4\x8d\xc3\x0f\x16\x71\x68\x1e\xa8\x5e\xad\x72\x06\x35\x4f\x71\x2e\xe9\xf2\x90\x9a\x19\x80\xa8\x52\x25\x35\x33\x7f\xc7\xfe\x93\x9c\xb0\x6f\xc5\x1c\x33\x13\xbe\xf3\xeb\x01\x81\xd4\x10\x70\xf2\x3a\xb4\x2e\xd3\x20\x97\xbd\xde\x69\x55\x00\x54\x9b\xb1\x49\x5e\x1c\x18\xdc\x54\xa4\xa7\x66\x26\x70\xdb\xc1\x92\x33\x98\x91\x87\xc8\xb4\xb0\xcb\x3c\x92\x51\xef\xce\xca\x75\x66\xbc\x60\x36\x26\x0b\xb7\x80\xdc\x0d\xb9\xf0\x30\xed\x7e\x80\xbb\x44\x37\xb7\xe9\xbb\xd6\x59\x99\x0b\xc3\x58\xc4\x33\xf3\x32\x66\x15\x3f\xb8\x18\x37\x20\x54\x95\x35\x53\x75\x5a\xe9\x84\x17\xf6\x2b\xb9\xa8\xa4\xeb\x5c\x17\x9c\x9a\x49\x25\x61\x0a\x8a\x0a\x33\x42\xf4\x07\x94\x33\x4c\x98\x2c\x56\x63\x51\x25\xd3\x7c\xa5\x4a\x31\x35\x37\xd2\xa1\x7c\x41\xb9\x61\x45\xa3\x5f\x40\xb6\xac\x38\x4e\x6e\xcb\x3d\x25\xa0\xa6\x34\xd4\x9a\xb1\xdb\x16\x6a\xfc\xc2\xc2\x84\xba\x40\x6e\xb5\xc3\xee\x72\xe7\x69\x50\xfc\xa0\xf1\x0b\xf5\xd9\x41\xfb\xd1\x2f\xac\x35\x17\x26\x68\x91\xca\xde\xb3\x23\xb0\x0b\xcd\x9c\x55\xec\x9a\xbf\x00\x53\x10\xf7\xce\x53\x36\x29\x9b\x99\x02\x6a\x36\xa7\xd7\xf7\xa4\x43\xa9\x8d\x79\x20\x6a\xb4\xba\x43\xd6\x1c\x15\xcc\xbc\xba\xc9\xf1\xbd\x99\x92\x86\xad\x93\x79\xe7\xfa\xea\x84\xc9\xf0\x67\x06\xaf\xc5\x4e\x98\x34\xa9\x25\x5a\xc8\xe2\x90\x77\x1e\x93\x5e\xdf\x1d\x07\x86\x34\xd7\x0c\xb3\x96\x5d\xa8\x99\x19\x1a\xd9\x24\x84\x74\x6b\x15\xd8\xad\x79\xe7\xb9\x2a\x18\x0f\x14\x6a\x34\x5e\x11\x75\xd7\xcc\x00\x98\x8d\x6d\x03\x7a\x3e\x58\xc3\x47\x10\x4c\xe1\xa2\x6c\x52\x3b\xf2\x01\xc3\x9a\x94\xd0\xcc\xcb\xd5\x6d\xda\xcb\xb8\x54\xd4\x27\x48\x3e\x71\x4e\x4b\xc7\xc8\xeb\xde\x88\xf6\x93\xea\xd9\x35\x9f\x40\x61\x72\x6f\xd8\x42\x52\x93\xf2\x49\xa5\xb8\xba\xfb\x9d\x27\xaa\x30\x80\x42\xcb\xcd\x7b\xea\x44\x3c\x9a\x54\xfd\xbc\x0a\xe2\x99\xb2\xae\xb5\xce\x42\x01\x25\x0d\x09\x6c\x99\xa6\x2a\x0f\x49\x53\x95\x35\xf9\x7c\x2d\xfa\x77\x97\xa0\x7f\x69\x66\x79\x8a\x22\x65\x93\x5e\x9e\xef\x08\x96\xa7\xf7\x29\x58\xf8\xcc\x64\x9d\x9a\x66\x36\x7c\x53\x95\x1b\xee\x81\xa4\x25\x3c\xdd\xc4\x93\x40\x82\x29\xca\x7a\x57\xbe\xc9\xd8\xcd\x27\x6e\x1c\xcb\x12\x01\xf3\xc3\x1d\xe9\x2f\x9e\x80\x1e\x85\x95\x07\x58\x31\x17\x78\x70\xd6\x98\x70\x1e\x72\x05\x23\x9a\x82\x88\x44\xc2\xfc\x50\xe3\xb1\x6c\xf1\x00\x2b\xc6\xc2\x43\x4e\x64\x52\x7a\xae\xf9\x82\x8f\x37\xd8\xa2\x1c\xe7\x9a\x1f\x6e\x59\x1d\x46\x65\x83\xa0\x2b\x59\xa4\x2c\xdf\xa7\xec\xac\x85\xb7\x3a\xa9\xde\x48\x2d\x1b\xe8\x4d\x47\x4b\xd9\x56\x97\x7a\xb0\x2c\x41\x92\x8d\x4b\x58\x6b\xe3\x07\xf4\xac\x0c\x7f\x82\xd5\xd7\x09\x58\x78\x15\x86\x7d\xdf\x85\x57\x61\xe8\xa2\x94\x5a\x02\x36\x59\x71\x1b\x13\x7f\x0d\x71\x73\xcc\xa6\x07\x3c\x9c\xc4\xfe\xca\x14\x58\x9a\x33\x03\x4a\x04\x45\xe9\x6c\x2a\x11\xab\xa5\xe3\xae\xb0\xd6\xb0\xf5\xee\x12\x79\x4e\x48\x1a\x2e\x11\xab\x63\x18\x23\x18\x83\x0e\xb7\x12\x69\x71\x77\x8f\x37\x41\xf2\x03\x24\x7d\x7b\x12\x69\x2d\x86\x7a\xa0\x35\x4a\xc5\x8f\x6a\xa1\x74\x22\x66\x56\x12\x88\x5a\x2c\xbc\x24\x20\x56\x44\x5f\x68\x9b\x92\x9c\x57\x78\xd3\xba\x0d\x49\x05\xd9\xc5\x36\x15\x14\x94\x0a\xae\xaf\x0e\x1f\xb8\x9e\x35\x47\xde\xdf\x69\x1b\x4b\xc9\x6b\xb1\x87\x1e\x40\xa2\xd2\x2e\x29\x79\x11\xb5\x60\xc8\x84\x51\x0b\xc3\x84\x0b\x87\x54\x95\x8c\xb5\x15\xb7\x29\x99\xfc\xc9\x43\x42\x31\xf2\xca\x2e\xe7\xa0\xe4\xe5\x02\xe7\xa0\xa5\x8c\xb2\x2c\x53\x92\x55\x4b\x21\xd0\xe2\xf1\xa5\x80\xc8\xc5\xc0\x4a\x21\x9e\xb5\x32\xb8\xb6\x53\xe5\xc6\x6a\x29\x9c\x83\xdb\x10\x5d\xc5\xde\x4a\xc1\x14\x9a\xfb\x87\x88\x57\xfd\x3b\x8f\x7b\xc9\x67\xa5\x2e\xe6\x22\x98\x91\x4a\x5c\x8c\x14\x8a\x4e\x26\x3e\xe4\x09\xeb\x06\x92\x5a\xea\x42\xb3\x3b\x38\x38\x47\xa1\x0d\xa6\x28\xa7\xce\x14\x24\xfa\x56\xd3\x56\x03\xfb\x6a\x3f\xa9\x61\x5a\xcb\x94\xb2\xa2\xf5\xe3\xd2\xe0\x0f\x33\xa1\x35\xd4\x17\x10\x6f\x2c\x0d\x08\x93\xa1\xad\xf0\xc6\xac\x66\x32\x59\x3e\x42\xc9\x9f\xa5\x53\xbd\x95\x2c\x5f\xfa\x5a\x34\x4d\xa0\x2f\x96\x2f\xac\xa2\x84\x8d\xb9\x63\xe9\xbc\x44\x41\x38\x43\xf6\x84\x4f\xc6\xd2\x17\x10\x9a\x45\x67\xb2\xb4\x87\x84\xec\xe0\x0e\xa6\x50\x96\x54\xd3\xa0\x16\x78\x09\x2d\x6a\x96\x41\xc1\x5c\x62\x5d\x19\x54\x2f\xa2\xbf\x40\xcd\x1b\xef\x27\x26\x47\xa8\x08\x68\x2d\xb8\x4f\xd3\x1e\x8e\x32\xc0\x54\xcc\x85\x10\x65\xa6\xab\xea\x6b\x59\xc9\x12\xde\x90\x03\xc7\x96\x3b\xd8\xd7\xee\xf0\x03\x3a\x80\xd5\xe3\x12\xda\xa4\x61\x97\x9d\x17\x36\x6b\x08\xda\x83\xa4\x65\x95\x25\xb4\x49\xa3\x29\x2c\x9a\x13\x5f\x0f\x08\xb4\x7b\x84\x2e\xe1\x85\x81\x81\xc7\x5e\xec\xb2\x64\xb4\xe1\x21\xc9\x19\x05\xf3\xc1\x2b\xf7\xdc\x26\x63\x34\x2b\x5d\x0e\x4a\x1d\x9d\xe5\xa0\x1a\x20\x89\xa2\xb0\x52\xb1\x75\x8b\x72\x80\x77\x4a\xca\x29\x88\x5b\x6b\xcd\x5b\x10\x3e\x4d\x4b\xb7\x85\x2e\xcb\xcd\x63\x32\xdf\x4f\xb3\x3c\xc8\xdf\x7d\xc4\xf0\x06\xb1\x66\x72\x38\x21\x31\x98\x51\x31\xae\xad\x7a\x35\x4f\x1c\x4a\xde\xe5\x34\x33\x99\x71\x21\x55\xd7\x4e\xc9\x42\x2b\x93\x17\xff\xa4\x62\x9f\x3c\xc2\x20\x08\xfe\x02\xa6\x31\xb3\xeb\x13\x87\x94\x19\xd1\xb9\x26\xe1\x21\x91\x58\x25\x71\xb7\x5c\xe4\x54\xaf\x07\xe0\x1b\xde\xb8\x17\xf7\xa9\x31\xcf\xbb\xe3\xab\x97\x1f\xd2\xa0\x45\xb5\x72\x71\x13\x58\xe6\xb8\x20\xf4\x9b\x64\x2f\xd0\x93\x37\x09\xaf\xfc\x54\x7e\x7b\x2d\x88\x84\xb3\xe0\x54\xa6\xb8\x18\x92\xb5\xc2\x72\xe3\xb2\x12\x4f\x13\xd2\xe1\x30\x9e\x50\xc6\xd0\xa2\x59\x41\x86\x44\x34\x9a\x10\x06\xd7\x0c\x11\x52\x7d\x5f\x07\x2b\xa4\xc7\xe0\x3d\x03\x61\xd1\xd7\x7f\xd5\x42\x61\xd1\x73\x7e\xd6\xd2\x0b\x82\x87\x2b\x65\x90\x50\x77\x27\x59\xce\x7a\x80\x04\x0b\x51\xf0\x4c\x36\x95\x4d\xab\x75\x83\xfa\x2d\x1e\x5b\x51\x35\xc7\x86\xde\xba\x81\xb8\x5e\xed\xb5\x50\x59\x0f\x50\xdb\x51\x82\x5c\xdd\xe8\x37\xa8\x6a\x73\x87\x24\xbf\x30\x30\xa2\x3b\x80\x44\x34\x0c\x01\x0d\xf0\x4d\x6d\x32\x79\x71\xec\x8a\x6b\x2d\x54\x87\xa1\x56\x94\xc1\xd9\xda\x4f\xca\x26\xd4\x8a\x1a\x38\x56\x80\x6b\xc0\x99\x64\x68\x02\xec\x7e\xe2\x5b\x15\x37\x5c\xb8\xd0\x76\xad\x14\x2a\x0d\x0d\x2f\x8a\xb7\x96\x5e\x71\x15\xe8\x66\x9d\xb9\x06\x8a\x43\x42\x40\xe4\x6d\x69\x9a\x60\xa4\x92\x2e\xdd\xae\xae\x38\x36\xed\xe0\xca\x12\xcd\x56\xe3\x6b\x44\x05\x99\xe6\x2e\x0a\x4a\x67\x0b\xa8\xff\x9f\xb1\x2b\x39\x9b\x18\xd5\x81\xa9\x4c\x08\x6d\x36\xc1\x65\x72\xf1\x9a\x7f\x08\xef\x73\x95\xa6\xca\xef\xf6\x1f\xdd\x6d\x83\x00\x21\x0a\xad\x25\xa9\x76\x9f\x81\xfc\x7d\x1a\x45\xd6\x0e\x75\x97\x8b\x1f\xf8\x07\x1e\x73\xd5\x5d\x30\x9a\x62\x9a\x86\x93\xcc\x68\x2a\x2f\x2c\x9c\xd6\xa5\x10\x82\x99\x06\xcc\x83\x19\xa1\xf2\xca\x38\xfd\xc3\xf6\xef\x3f\xd3\x01\x1c\xa3\x32\xd9\xcf\xf4\x0f\x90\x6c\x3a\xdd\x47\x0d\x52\xed\x1f\x72\x18\xa2\xba\xd2\xfd\x4a\xd2\x73\xbc\xd8\x35\x94\xf6\x7c\x0c\x14\x38\x5d\x1f\x1a\xde\x93\x70\x93\xe8\x1b\x0c\x26\x36\x4a\x1b\xed\xdd\x93\x9b\x47\x0d\x4d\x5d\xd1\xb5\x64\xc0\x33\xce\xf6\xa1\xf1\x62\xdd\xbe\x69\x4f\x8f\xc6\x23\x45\xb0\x70\x34\xae\x95\x94\x09\xa3\x31\xc8\x5c\x72\x63\xbc\x60\xb7\x6f\x66\x41\xda\x69\x7d\x8f\x1d\xd0\x0e\xda\x69\x71\xb4\x5c\x1a\x13\xc1\x9b\x4e\x73\x1f\x18\xa6\xce\x90\xd1\x93\x07\x35\x4c\xc2\x5f\xef\x83\x8e\xc0\x16\xef\x1b\x1a\x52\x7d\x49\x1c\x1d\xdb\xda\x13\xdb\xa9\x41\x30\x8f\x02\xde\x6e\x66\x49\xc0\x5b\x6b\x17\x47\x27\x49\xea\x81\x89\x73\xac\x52\x1b\x0c\x38\xb6\xeb\xe5\x78\xe1\x6e\xb7\xd1\x6a\xb0\x3c\x86\x2d\x0b\x63\x70\xee\xc5\x3f\x83\x9b\xdb\xff\x0f\x64\xbd\x70\x03\xf0\x5a\xb3\x70\x64\x5a\xec\xf0\xd6\x1d\xb4\xb3\x99\xe1\xe8\x39\xe7\x69\x83\xe7\x9c\x23\x92\xc7\x8b\x97\xfb\xe6\x95\x0a\x78\xd9\x9a\x1d\x13\x12\x8b\xc2\xe8\x1c\xb4\x1b\x40\x1a\x3f\x1d\xde\x23\xc8\xe1\x9b\xbf\x40\x61\x7c\x5d\xbe\x06\x1d\xeb\x94\xd0\x6e\x8c\x38\xf9\x85\xa6\x2d\xf2\xb4\x76\x13\x0f\xdf\xd0\x30\xe1\x4a\xf7\xd1\xa4\x0c\xd6\xc8\x13\xca\x19\xb3\x62\x58\x1a\xc6\xc4\x44\x9b\x28\xa8\x2e\x95\x01\x65\x0c\x68\x2e\x37\x2f\xe5\x04\x47\x7f\x3a\x24\x20\xd5\x59\x3c\x26\x98\xc3\xd3\xb0\x48\x91\x97\x0a\x31\xc7\x56\xbc\x8c\x45\x70\xd7\xfd\x03\x0e\xeb\xcf\x07\x01\x7f\x17\xff\x4f\x92\x34\xa4\x45\xfe\x15\x89\x0b\xec\x2a\xa0\x36\x98\x63\xdb\x57\xa3\xb1\xe3\xe4\xb4\x3c\xdc\xe9\xd2\xfe\xb7\x63\x88\xb1\xc4\xf6\x4d\x1d\xa8\x37\x67\x45\xec\x60\x56\x19\x9f\xbb\x8c\xb0\x50\x92\xc0\x31\x90\x44\xc6\x97\xec\xc1\xc8\x60\x65\x15\x1c\xe3\x40\xb8\xa5\x25\x5b\xea\x28\xcd\xab\x30\x88\x1a\xfd\x8e\x83\xbc\xa7\xeb\xd5\x38\x30\x45\xa6\xe9\xc0\xaa\xe9\x66\x33\x0e\x1e\x09\x3e\xba\xa1\xd5\x54\x72\xce\x31\x60\x31\xdd\x3e\x0d\x3e\x20\x49\x6c\x72\x12\x16\x5a\x2c\x01\xeb\x6e\x42\x50\x03\x50\x76\xf3\x76\x42\xca\xc9\x6a\x8f\x81\xc1\x60\x5f\x0f\x1a\x58\xd6\x45\x38\xc7\x38\x49\xb3\x9f\xb9\x1b\x3c\x28\x9a\x50\x0d\xf1\xc7\x99\x35\xb1\xf5\xc9\xd5\xf8\x86\x3a\x7d\xb1\x69\xdf\xfc\x05\x5c\xe4\xac\xe3\x1b\xd0\x4b\x6e\x9f\xf7\x73\x9e\x34\x2f\x17\xf2\xb6\x7e\x9e\xa1\x7e\x36\x08\xb9\x92\xd7\xc4\x7c\x37\xc4\xc8\xe7\x19\x14\x08\x2d\x0f\x26\xd0\x76\x00\xd8\x80\xc9\xd4\x5e\x4f\x83\x19\x23\x0d\xe9\x07\x9d\xea\xec\x76\x3c\x58\xef\xc3\x08\x7c\x3c\xe8\xd3\x90\x81\x36\xd4\xcf\xff\x15\x30\x46\x34\xd1\x6b\x4e\xea\xb8\xf1\x74\x7c\xaf\x41\x3e\x81\x67\x91\x88\x02\x6d\x56\x5e\x8c\x87\x68\xd9\xed\x21\x4d\x81\x4f\xc1\x17\xca\xce\x6a\x49\x88\x88\x8e\xfa\x69\x1f\x1a\x6a\x1f\xc4\x50\x6b\x7e\x04\x02\xea\xb9\xd9\x11\x3b\x58\xbb\x5e\x07\x79\xfc\x72\x03\x2d\xfd\x50\xff\xfd\xa7\x39\xb0\x3d\x7e\x9d\x53\xe6\x2f\x08\x3f\xaa\xdf\x40\x10\x8a\x64\x71\x30\xb6\x77\xf8\x83\x03\x97\x43\x93\x70\x21\xb5\xd4\xd4\x33\x10\xd3\xf4\x33\x8e\x44\x21\xa6\xd8\x28\xe4\xdc\xc1\xc6\x52\x3b\x92\x93\xb1\x65\xa5\x07\x3d\xc3\xe5\xf6\xd3\x02\x19\x67\xe8\x39\x90\x03\x53\x14\x32\xf0\x37\x4c\xe2\x06\x92\x97\x9f\xb9\x7f\xaa\x7f\x40\xa6\xda\xcd\x3d\x60\xcf\x57\x53\x80\xb8\x5f\x37\xc0\x28\x0e\xdf\x40\xa2\x24\xd2\xd0\x18\x0a\xf5\x1f\xcd\x9f\xc0\xf8\xe6\x41\xbe\xd8\xb4\x7e\x66\xe1\x85\xa6\xd5\x27\x5e\x14\x26\xb7\xf6\xf7\xe9\x3e\xa5\x67\x90\xa8\x0d\x1e\x99\x9f\x51\x24\xd7\x9c\x55\x8d\xe9\xc5\x9d\xd5\x78\x2b\xd2\x00\x2c\xe1\x1b\x50\xb1\x6e\x9f\x67\xf0\xba\x8e\xf5\x80\x8a\xd5\xf6\xde\x00\x2c\x75\x08\x5f\x30\x1d\xa3\xf6\x52\xd4\xdc\x8c\xfe\x00\x9c\xe0\x29\x21\x0a\x95\x2a\x2d\x1a\xef\xae\xfd\x4f\x8a\xb8\x60\x08\xb0\x6f\x1c\xd1\x48\xbf\x66\x20\x33\xde\x68\x33\x47\x4b\xb9\xea\x2f\xa0\x16\x93\xa8\x8f\x84\x9c\x9b\x9b\xe0\x81\x35\xdc\x04\xc2\x3d\x3d\xeb\x0d\x61\xec\xfe\x9f\x1a\x59\xc9\xb8\x40\xc6\x9b\xe9\x21\xf6\x8a\x62\x68\x7e\x9f\x37\x51\x5d\x17\xa2\xe7\xaa\xf8\x8b\x41\x15\x93\x66\xad\x43\x2a\x0a\x13\x44\x47\xea\x8a\xcf\x07\x49\xb3\x06\x41\x8c\x6a\xce\xea\x4c\x18\xa3\xff\x07\x64\xa4\x70\x52\xc0\x78\xed\x20\xf7\x40\x98\xb1\xf3\xc5\x04\xeb\xb3\x7d\xfe\x87\x43\xbe\x2e\xf8\x31\x70\x72\x74\xbf\x9f\xbb\xcd\x3f\xc0\xe0\x24\xbd\x78\x0c\x44\xf6\x58\xb5\x1e\xa8\xd7\xa6\xba\x04\x23\x08\x40\x75\x40\x46\x6c\xf0\x7e\xf0\x33\x14\x31\x02\x01\x11\xbc\xef\x6b\x96\x83\xb3\x6c\x29\x08\xc7\x41\x3b\x7e\x05\x2b\x34\x5b\x25\x1c\xd0\xe2\xaa\x3e\xe2\x08\x5a\xc2\x55\xba\x77\x44\x00\x25\xc8\x88\x12\x48\x9a\x63\x53\x62\xbc\x70\xb4\xda\x88\x1d\x33\x51\x82\x5a\xcc\xca\x30\x9e\x85\xc9\x13\x5a\xc0\x3f\x26\xce\x1e\x4b\x31\xe6\x29\x77\x17\xc4\x9f\x16\x7b\xf3\xc0\xb3\x48\x9c\x24\xd1\xed\xe5\x7e\xf4\x0b\x09\x12\x44\x02\x92\x27\xda\x9e\x15\x8b\x89\x08\xbd\xa5\x12\xa0\xea\x46\x15\x59\x81\x79\xf9\x0d\xe6\xd8\x57\x1f\xcc\xa7\xe8\x4b\x5b\x40\x0f\xec\x13\x36\x56\x9e\xfa\x22\x73\xf1\x72\xe0\xc5\x81\xf9\xfe\x23\x6b\x57\x22\x11\xf7\x01\xf5\xa4\xd7\x02\x09\x17\x8b\x20\x5e\x20\xbf\xa2\x95\xb2\xb1\x43\xee\x08\x45\x07\xfc\x04\x3f\x6b\xbb\x53\x83\xea\x1d\xb3\x43\xb2\x58\x56\xef\x9c\x79\x8d\x01\xb9\x0f\x1d\xa7\x19\xcc\x78\x63\xfd\x7b\x1c\x39\x91\xea\xe2\xa0\x12\x4c\x90\x2e\x0e\x5c\x46\xbc\x69\x0f\x80\x46\x0b\x96\x83\x72\xc1\xdb\x3e\x0b\x29\xfb\x03\x48\x6b\x9f\x0f\xc4\xbd\xc3\x3d\x82\x66\xaf\xed\x8b\x7b\x67\xf3\x9e\x49\x1d\xae\xa0\x46\xb0\x6c\xb2\xf0\x5d\xc0\x33\xd0\x29\x6a\x82\x19\x70\xc2\x82\xe7\xa4\x43\x8a\x2e\xcb\x71\x02\x9b\xff\xdc\x22\x25\xb6\xf7\x00\x94\xb8\xdb\xe7\x03\xaa\xd9\xbc\x52\x67\xf2\x82\x3b\x45\xd2\xd7\xf0\x33\x64\xdb\xe7\x19\x92\xc3\xe2\x14\xae\x83\xd6\xaf\x06\x5c\x07\xbb\x65\xdf\x95\x0c\xad\x69\x82\xeb\xe0\x7b\x8b\xfc\xcb\x11\x04\x50\xed\x90\xe1\x80\x7a\xb7\x7d\x0e\x94\x6b\xc2\x5d\x53\x03\x46\x4e\x1d\x57\xe4\x1e\x41\x47\xc4\xe1\x67\x5e\x7c\xa5\x81\x08\x26\x6e\xb7\x0b\x54\x5c\xb8\xd2\x19\x01\x5e\x9c\x01\x4d\x32\x63\xa5\x3f\x40\xe2\x86\x82\xc1\x5b\xf6\x06\x67\x59\x8c\xdc\xb9\x43\x35\x05\xf0\x17\x70\x5e\x86\x20\x0c\x37\xc0\xbb\x21\x57\x3c\xc7\x37\x29\xd0\x18\xe0\x3e\xb0\x79\x4c\xa9\x11\xb6\x30\x7d\x36\xa8\xab\xd4\x00\x63\x59\x7c\x2f\x0e\x54\xba\xf9\x9c\x9a\x0f\x8b\x10\xfb\xff\x2c\x3f\xa5\x67\x0e\xc1\xbc\xfb\xd0\xeb\xc2\x27\xca\x93\x13\xaf\x69\x7b\x81\x79\x58\xb9\x1f\x0f\xe3\x25\xdc\x05\x9c\x24\x9c\x25\x21\x1e\x28\x6c\x2d\x95\xe0\x60\xe0\x8b\xe8\x04\xf2\x6e\xb6\xa4\xce\x1f\xae\xd2\x1a\xd4\x44\xe9\x9b\xa2\x1e\x27\x94\xd0\xa5\xbb\x81\x0e\xa5\xde\x7f\x0b\x3d\x19\x88\xa2\xcc\xd1\x63\x6e\x64\x4d\x35\x48\x98\xec\xcb\xc2\x84\x9a\xd7\x5e\xaf\x13\x99\x1f\x95\xfb\x76\xcc\x8d\xdb\x4b\xb7\xe9\xc9\x5c\xe7\xbe\x8f\x4f\x14\xe2\x1b\xce\x4e\x31\x09\x84\xa7\xfb\xa4\x61\x47\x6b\x37\xa1\xf7\xb5\x03\xf2\xa4\x77\xa4\xa4\xf9\x64\x70\xb2\x6f\xf4\x93\xb5\x6e\x9a\xa9\x2e\x60\xaf\xe9\x67\xc4\xf0\x68\x25\x26\x9c\x0b\xb6\xe9\x16\x09\xd2\x8a\x49\x20\xe0\xf1\xcc\x15\xde\x3c\xb5\xed\x66\xc5\x16\xf0\xb8\x2b\x25\x95\xa0\xeb\x44\xf8\xb2\xb1\xf1\xac\x59\x2a\x49\xcf\x0b\xda\x79\x75\x59\xb9\x4d\x4d\x64\xcd\x72\xaf\x7a\x06\x5a\xff\x34\x48\xdd\xe5\xf2\x0f\x49\xa3\x9a\x6c\xc0\x38\x52\xdd\x4c\x84\xc2\x38\x17\xd6\x6c\xf4\x04\xd7\x18\x1a\xb2\x80\x87\x9f\xa1\x4d\x5f\x7e\xa6\x8a\xd6\xab\x4f\x78\x3c\xdd\x20\x62\x8a\x86\xff\xe7\xad\x69\x99\x02\x6a\x68\x75\xc4\x4c\xe6\x7b\x54\xe2\xe2\x31\xe1\xaf\xa0\x4c\xe4\x63\x36\x72\x8b\xc6\xc4\xfc\x8f\x3a\xb9\x27\x15\xb4\xfe\xbe\x43\xbb\x63\x12\x3b\x13\xd8\x68\x16\x99\xd9\x5c\xc0\x71\xf6\x1c\x93\x06\xd9\xb9\xcf\x97\x7b\xa4\x46\xb7\xbb\x09\x72\x97\x56\x92\xde\x9e\x8e\x9c\x9a\x3d\x53\xd7\xea\xf9\xc2\x3e\xf7\x33\x16\xca\xd3\x36\x70\x50\x7b\xe5\x11\x27\xf3\x61\xd7\xf4\x3e\xf0\x0e\x18\xb9\xf4\xea\x31\x78\xf6\x4b\x09\x31\x5f\x78\xda\x8b\x54\xe3\x33\x78\x47\xff\x53\x51\xd5\x31\x83\xea\x24\x11\x18\x10\xdf\xe6\xb4\x54\xb6\x7a\xa1\xe1\x81\xe0\xca\xf9\x63\xb2\x78\xb1\xca\x54\x8c\x89\xa8\x97\x50\x66\xe5\x31\x5f\x74\xdb\x8b\x34\xc6\x33\x20\xe2\xbd\x70\x28\xb9\xe3\x78\xb5\x89\x98\x97\x98\x96\x23\xd4\xb5\x7a\x0e\x18\xf3\xe2\x18\xa7\x39\x91\xdd\xd7\x3b\x6e\x0e\x8a\x09\xbf\xc0\x95\xd5\xb1\x32\xe7\x05\x9a\xc4\x1c\x2f\xbc\x0d\xa7\x06\x9d\x93\x34\xea\x7d\x6a\x5f\xed\xfe\x3a\x81\x5d\x7d\x71\x9a\x0b\x07\xa3\x79\x69\x0d\x7e\x20\x12\x16\xad\xfd\x02\x0b\x13\x2e\x0a\x9b\x97\x7a\xe5\xbc\xf9\x07\x6c\x10\x4b\xc7\x45\x9a\xd4\xe2\x8b\x4c\x7b\x91\xf9\x60\xd2\xaf\xd4\xf7\xcd\x09\x68\x6a\x0f\xa0\xc9\x5a\xca\x4e\x5a\x33\xf7\xe4\x15\x37\x31\xfe\xfd\xe7\x93\xdf\x71\x32\x64\xc5\x92\x69\x9f\xb8\xc1\xfa\xff\x64\x0f\x0d\x7b\x27\xcd\x26\x81\xd7\x06\x41\xd3\xb9\xb3\xde\x85\x5a\x24\xda\x95\xcd\x63\xa2\xcc\x8f\xfd\x30\x66\x62\x5d\xe9\x01\x26\xb1\xae\xe5\x35\xab\x26\x3a\x01\xf1\x7c\xc1\x6e\x2f\x9e\x78\x60\xdd\xcf\x2c\x00\xcb\x16\x73\xd7\xb1\xe3\xd9\x1d\x1c\x6c\x50\x83\xcc\xf4\x8e\x1a\x23\xa1\xaa\x73\x28\x4d\x78\xa2\xda\x4f\x6f\x9e\x9d\x2f\x88\x46\x40\xd5\xe2\x31\xbc\x50\x75\x3a\x67\xda\x3c\xe1\xbf\xed\x95\x3e\x41\x92\x0f\x6b\x96\x09\xf2\xca\x9f\x64\x15\xdd\x38\xe7\x09\x76\xfe\x74\x08\x35\xb3\xb9\x91\x41\xd5\x0e\xd0\x9b\x57\xf2\x8a\x5a\x78\xb1\x6c\x75\x78\xc8\x64\x14\x8c\x4a\xa7\x8c\x79\x41\xce\xb8\xcb\x0b\xd3\xac\x5b\xca\xbc\x78\x0b\xb6\xbc\x7d\xf1\x6c\x57\xee\xfb\x31\xe1\xbb\xea\x1c\x4c\x93\x29\x22\x9d\x23\x6c\x22\x45\xe4\xfa\xb4\xf8\x60\xde\xd5\x20\x54\xc0\xc5\x02\xfe\x05\xab\xdd\x7e\x80\x13\xce\xae\xc5\x87\x1c\xa0\xa8\x9d\x11\xe6\x4d\x0d\x4e\x75\x03\x3c\xa3\x04\x87\xe7\x4d\xff\x49\xe3\x8d\x9b\x13\x5d\xfc\xc6\xc5\x36\xdc\x28\x13\xb7\xf9\xf9\x01\x11\x7a\x06\x3c\x75\x78\xd2\x7c\xf2\x2a\x26\x2a\x13\x7e\x0a\x62\x4f\xc2\x4f\x7b\x9c\xcd\x07\x0c\x5b\xdc\x04\x54\x67\x9f\x2e\x92\x61\xfd\x01\x41\x8e\xb7\xe9\x43\x0b\xbd\x50\xf6\x42\x2e\x1f\x7b\x86\xac\x1f\xa6\x52\xbb\x70\x31\xb8\xda\x56\xbc\xf5\xc3\xea\x8b\xa6\x05\x4d\xb0\xa1\xdd\xfa\xe5\x28\xba\x7e\xc8\x51\xfc\xe9\x2e\xb4\x7e\xe4\x8d\x4d\xcf\x94\x2b\x61\x02\x77\x8a\x2e\x13\x00\x8d\xa7\x80\xdf\xfa\x9d\x68\xc1\x1f\x30\x44\xde\xcf\x2f\x02\xb7\x27\xf4\x82\x62\xb9\xc8\x30\xba\x36\x2a\x65\xc5\x6d\x6b\xa3\xad\xd5\x5f\x6c\x05\x53\xa0\x1e\x53\xf3\xac\x23\x60\xa5\xa3\x84\x0e\xb2\xb5\x51\x7a\x76\x77\x42\x95\xa1\xbf\xc0\x3e\xaf\x6e\x12\xf8\x62\x9a\x06\xf8\x1e\x9a\xa6\x82\x65\x92\xb8\x5e\x05\x24\x69\xe1\x17\x9c\x73\x4b\xf5\x33\xf7\xa8\xfa\x47\x28\x91\x23\xe2\x17\x42\x89\x8a\xb0\xc4\x2a\xa4\x47\xcb\x50\xb1\xe3\x24\xfe\x17\x3d\x6d\x7d\xe1\x5d\x95\x16\x35\xa1\xbc\x05\x3d\x71\xa9\xfe\x82\x27\x8c\x6e\xed\x0b\x7a\x62\x55\x71\x1f\xab\x26\xa2\xf7\x17\xe0\x76\xcf\x2a\x0b\xf9\xd8\x40\xbc\x2a\x64\xdd\xe7\x19\x27\x8a\xf4\x2b\x0b\x58\x77\x38\x85\xdd\x4a\x5d\xaf\x99\x95\xe9\x1e\x9d\x6a\x7c\x01\xbd\x0e\x27\xa5\x5b\x8d\xd1\x6a\x7e\xe6\x31\x26\x20\xb7\x50\x46\xc7\xa9\x7d\x56\xc7\xfe\x68\xfe\x1f\x95\x4f\x3c\xaa\xce\xcb\xbd\xe4\xc0\xea\x1c\xa6\x9f\x19\xec\xa9\xa5\xeb\x29\x8a\x44\x63\x07\x83\x7b\x66\xe1\x4c\xe0\xfc\x08\x0b\x8a\x5a\xa7\xa8\x5c\x83\xa5\xb0\xf4\xff\x00\xef\x08\x23\xad\x81\x50\x01\x1d\x00\x6b\x24\x3b\xfb\x87\xc6\x49\x11\x89\x83\xa2\xcb\x83\x66\xd8\xf7\x67\x13\x0e\xe4\xfe\x5b\x6e\x82\x22\xde\x0c\x06\xed\x6e\xf1\x28\x5f\xbc\xdb\x4b\xf3\xff\x94\xb7\xe6\x40\x26\xea\x29\x6e\x11\xa3\xf4\xa6\x84\xb7\x41\xfd\xd0\x94\xf8\xd8\xe3\x44\x49\xca\xea\x79\x21\x5e\x36\x43\x02\x2f\xdb\x82\xb5\x80\x80\x8b\x8e\xb1\x15\xdc\x23\x6e\x0f\x0b\x67\xc1\x42\x97\x5c\xe7\x74\x5f\x09\x88\xa7\x7b\x40\xc1\x03\x1d\x2a\x8b\x51\xe0\xc3\xcf\x1c\x93\x1a\x98\x58\xa9\xee\x67\x0c\x49\xf2\x7f\x01\xdd\x36\x63\xcf\x35\x77\x5c\xfe\x45\x12\x0b\xdd\xc4\xe7\x87\x1b\x59\xb9\x35\x86\x85\x1e\x86\x9f\x89\xb8\x2d\x38\x5e\x34\xfb\x81\x40\x0b\x41\x51\x25\xfc\xcc\x1d\x24\x44\xb3\x90\xf5\x51\x45\x2d\xc7\x42\x94\xd4\x67\x7f\x2c\x70\xaf\xb9\x91\xd8\x55\x7a\xa4\x95\xd8\xd5\xa2\x0f\xd0\x74\x38\x7f\xe2\xda\x89\x2f\x3c\x2d\x3b\x16\x6a\xf8\x0b\x4a\x92\xe1\x3e\xb8\x85\xc6\x9f\x72\xf7\xac\x9d\xab\x62\xde\xdc\xb9\xa1\x34\x44\xea\x69\x9d\xe6\x65\xb1\xa2\xb7\x2f\x0d\xeb\xc0\xb4\xea\x46\xbb\x0e\x88\x67\x2f\x3c\xd4\xb2\x25\xdc\x00\x85\xc2\xe7\x85\x4c\x30\xad\x41\x1f\xc9\x5c\x1a\x24\xa2\xa8\x8a\x20\xfe\x3a\x72\xc3\xf8\x0b\x50\xed\x89\x3f\x70\xce\x59\x40\x9f\x49\xb4\xd6\xfe\x24\xb7\xa9\x01\xf8\xd2\x16\x21\xfa\x95\x7a\xd7\xe9\x0f\xe2\xdf\x7f\xc2\x4e\x6d\x8b\x21\xda\x56\x67\x2c\xa2\x57\xcf\xd3\xc9\x60\x09\x37\x70\x22\x48\x49\xa3\x66\x60\xd5\xe7\x7b\x0e\x41\xeb\x08\x77\x84\xe1\x34\x92\xeb\x02\xf3\xf8\x58\x65\x8d\x71\x57\x0c\x58\x17\xc6\x60\xd9\x09\x4d\xaa\x6d\x79\xeb\x02\xde\xf6\xc2\x41\x2d\xea\xe8\xc8\x05\xb5\x68\x31\x5c\xba\x0b\xb8\x5b\x14\xdd\x84\x47\x1e\xc2\x9d\xa2\xd1\x3f\x80\x39\x2d\x19\x6f\x48\x11\x4f\xda\xcd\x13\xc7\x3b\xec\xa6\xb3\x98\xcf\xa4\x1b\x2b\x6d\x56\xb8\x41\xa3\xf7\xf4\x93\x75\x9e\xd4\x24\xe2\xa8\x5c\xe4\x60\x3d\x49\xa4\x96\xfe\xe1\x4d\xc9\xa2\xf1\xe1\x1e\x33\x7e\x78\x52\xb2\xf8\x07\x08\x3b\x9f\x9c\x0f\xca\xa4\x79\x0f\xd2\xe3\x60\xb9\x4f\xa8\x2b\x9c\x2b\x7f\x3d\x60\x3f\x41\xa2\x9d\x2e\x07\x56\x2c\xed\xd4\x7c\x3a\xea\x64\xff\x61\x18\x42\x7e\x3b\xb3\x4a\x5a\xb3\xb4\x23\xb2\x4a\x65\x30\xc7\x0e\xef\x59\x7b\xd1\xef\x2f\x32\xfc\x28\xc1\x77\x22\x43\x2d\xfe\x8e\x48\xac\x66\x53\xf3\xbe\x91\x7d\x74\x94\xee\x44\x7a\x62\xc8\x1d\x71\xe3\xc5\x14\x6c\xd8\xc7\x92\x55\x3b\x13\x43\x3a\x0a\x75\x47\x36\x71\x7b\x40\xee\x1b\xbc\xea\x96\x7b\xe4\xb6\xd6\x3c\xee\x1b\x16\x3b\xdc\xe2\xc5\x17\xdc\x25\x38\x52\x67\xca\x0e\x8f\x5a\x3b\x2d\xef\xe9\x53\xe0\x2e\x0b\xa2\x27\x85\x97\x77\x40\x45\x7b\xe1\xef\x84\x8a\x5e\x07\x56\x91\xb4\x76\x6c\x67\x55\x48\xc7\x34\xed\x08\xe4\x72\xda\xed\xbd\xd0\xd1\xda\x1f\x10\xa8\x69\x12\x0a\xb7\xb1\xde\x47\xae\x71\x15\x15\x1e\x7b\xa5\x16\x47\xfb\x7c\x47\x6e\x71\x3b\x1e\xef\x84\x8a\xba\x15\xef\xe9\xeb\xaa\x5b\xed\x0e\x9f\x02\xbb\x19\xef\x50\xb4\x3a\x62\x73\x87\x8f\x81\x9d\x49\x76\x40\xc9\xe1\x7c\xb7\x3b\x33\x0c\x55\xbf\x70\x93\x24\xd3\xf8\x70\x1d\x44\x03\x7c\x59\x8b\xa7\xb9\x71\xe9\x25\xec\xf6\x17\x5b\xce\x6e\x9a\x1a\x04\xc1\xfa\x53\x16\xed\xbd\x71\x40\x6e\x8c\xf8\xc9\xac\xda\x18\xda\x2f\xe9\xbc\x23\x3f\x91\xd5\xfa\x3b\xdd\x5c\xed\x80\xb3\x33\xc1\xa3\x53\x48\xef\x50\x8b\x76\x07\xda\xef\xe9\x34\xa0\x83\x74\x67\x46\x47\x07\xfc\xec\x28\x09\xe9\x7b\xf3\x0e\xec\xaa\xaa\xde\x63\x4f\xb5\xe8\xa7\x05\x7a\xbc\x68\x9e\x51\x99\xdc\xfa\x8f\x7d\x90\x19\x45\x24\xf3\x35\x3a\xc5\xc6\xfe\x22\xcb\x5e\xcd\x2b\xac\x8b\x63\xcf\xea\x7d\xf0\xea\xee\x2d\xf5\x22\xc9\xd9\x3d\x75\x91\xe2\x51\xec\x18\xdc\xd4\x1a\x14\xfc\x50\xbb\x37\x04\x71\x9e\x1b\x4c\x5c\xe7\x4d\xfd\xc2\xb4\xa9\x22\xc8\x63\x67\x61\x1b\x41\x98\x7d\xa2\x96\x9a\xa5\xc8\x24\xa4\xd1\xb9\xb7\x4f\x22\x6c\x0f\x02\x3e\xa3\xf5\xe7\x17\x68\x67\x32\xcd\x93\x37\x7b\x1d\x2b\x3b\xd4\x96\x55\x90\x7c\x9f\xb4\xbb\xea\x83\xf5\xc3\xff\xa2\x71\x51\xba\x9a\xc8\x45\x50\x2f\x4d\xd1\xbe\x5e\xfe\x74\xfd\x95\x9d\xe1\xed\x56\x74\xee\x40\x6e\x0e\x17\xd8\x77\x76\xa1\x41\xec\x94\x9e\xe6\x96\x44\x6e\x9b\xdf\x78\x05\xb4\x43\xcb\xf7\x3d\x47\xe5\x17\x4e\xd0\xe0\x2e\xa8\x30\x16\xd1\x89\xbc\x3c\x0a\xe8\x00\xab\x7b\x38\x1a\x89\xd6\x62\xc2\x7e\x5d\x3d\x4a\xc0\x26\x07\x85\xec\xcc\x6c\xe3\xd4\xd9\x3b\x51\x90\x0e\xb2\x1d\xc1\xe6\x55\xea\x84\xfd\x64\x8f\xea\x80\x95\xbf\x9d\x9c\x7b\xa7\x57\xa5\xb5\xb7\xfb\x45\xa0\x65\x11\xfd\xa2\x94\xae\x1a\xb8\x63\x47\x8d\x15\x07\x4a\xef\x0c\x00\x72\x1a\xdc\xfd\xe2\xbc\xf9\x05\x38\xee\xeb\xc0\xdf\x99\x67\xc6\x91\x1b\x3b\x93\x63\x3b\x69\xe9\x0e\x1c\x53\xa5\x51\xdb\xaf\x07\xcf\x22\x29\x71\x8d\xa6\xe9\x6e\x78\xd6\x18\x6e\x02\x54\xc1\x96\xfd\x85\x31\xd5\x99\x0f\xf7\x9b\x24\xfa\xff\x24\x49\xf3\x86\x8a\x28\x9b\xb5\xb3\x3b\x7c\x1e\x7f\x9b\x8f\xbe\x87\x4d\x68\x25\x10\xaf\xe3\xa4\xb7\x3b\x2b\x96\xf8\x2e\xb2\x3f\x39\xca\xff\xbe\x38\x58\x91\xc4\xfa\xaf\xe3\x47\xad\x44\xf8\x87\xf6\xef\x3f\xd5\x69\xa5\x0f\x40\x08\xbb\xbb\x1d\x54\x37\x59\xa3\x7b\x10\x53\x7c\xba\x20\xcb\x0a\x5c\x1d\x80\x08\x55\x17\xdb\x03\x5e\x85\xb6\xa3\x1c\xb4\x9e\x3a\x70\xe3\xd8\x78\xf6\x14\x7f\xf1\x0e\xc3\xf7\xca\x63\xe3\xd9\x23\x0c\x70\x6c\x58\x2c\x13\x8d\xa0\x19\x43\x82\xa3\x30\x41\xa2\x9f\x81\xf7\x74\xfa\x1d\x85\xe7\xab\x0e\xec\x03\x75\x9f\x5f\x9e\xfe\xc3\x51\x74\x30\x3c\xc6\x3a\xec\x83\x69\x9f\xad\x73\x3e\x0a\x8d\xdc\xc5\x1d\xf2\xb0\xd4\x79\x7b\xd4\x82\x6c\xb0\xa2\x30\x95\x41\x9e\xd6\x3a\xd8\xa6\x7f\x80\x34\xd2\x41\x71\xf0\x84\x97\xc2\xeb\x80\x72\xc8\x99\xc5\x0e\x06\xb7\x14\xf7\xc0\x2b\x5f\xf8\x03\x30\x8b\xee\xd6\x07\x4e\xf8\xee\x75\xcb\xb4\x33\xe2\xf0\xa3\x61\xa3\xeb\x2a\x71\x30\x89\xb3\xc3\x65\x8e\x46\x12\x45\x32\x42\x53\x0c\x3a\x0e\x96\x70\x9e\xd3\x2f\xd0\xc1\x48\xb3\xc2\xa4\xcd\xae\x35\x70\xe0\xcc\xae\x86\x25\x47\x87\x88\x35\xd1\x8c\x44\x71\x22\xaf\x83\xa6\x4e\x73\x1b\xb4\x4f\x55\xa2\xe4\xc8\x13\xdc\xec\xda\x99\x4f\x4d\x90\xf6\xe0\x11\x2e\xa0\x7f\x74\xec\xba\x66\x12\x92\x48\xd3\x00\x6e\x94\xd6\xed\x18\xb4\x28\xe8\x86\x73\x40\xbf\x54\x75\xdb\x38\x50\x0b\xcf\x8a\xbe\x03\x91\xd8\xd6\xcb\x1c\xef\x99\x5f\x1c\x2b\x7e\xb0\xa4\xb3\x33\xf1\x1e\x08\xd5\x76\x89\x86\x03\x18\x60\xd8\x75\xf0\x40\xac\x8a\x8d\x57\x07\x6a\xe1\xfd\xbc\xf6\x83\x1c\x6b\xee\x48\xed\xd2\x32\x4d\x37\xdf\xf0\x27\x08\xa0\xf5\xb4\x04\xc5\x97\x04\xdc\x01\xf5\x52\xb5\x72\xe7\x08\x5c\x4f\x24\x9d\x0e\x94\x15\x71\xaa\x96\x83\xea\x25\x47\x08\x1c\x11\x74\xe0\x17\x3f\x24\xd0\x58\xee\xf4\xc0\xcc\xe9\x0b\x86\x9e\x58\x1b\x79\x50\x21\xe4\xc0\xfc\x03\x06\xd2\x6a\x51\x40\x60\xd1\xdd\x42\xe7\x30\x44\xd5\x1c\x70\xe7\x15\x0d\x08\xf1\x76\x12\xaa\x63\xee\xf0\x07\xf6\x33\x63\x31\x4c\x01\x70\x88\xd7\x06\xfa\x21\x3b\xd1\x1d\x70\xdc\x73\x1c\xfb\x01\xe3\xe7\x66\xb7\xd1\x03\xb1\x27\x0e\x8f\x39\x16\x05\xec\xf2\x0f\x38\xba\x04\xbc\x8f\x9d\x43\x12\x45\xcc\x78\x63\xb5\xdb\xb1\xf3\x46\xed\xd5\x66\xf4\xb4\x95\x5a\xc7\x4e\xff\x14\xaf\xf6\x4e\xb0\x2c\x4c\x78\xec\x60\x72\x61\xe5\xe3\xa0\xdf\xa5\x45\x28\x34\x3c\x2e\x96\x75\x40\xc3\xe3\xb2\x6d\x07\x81\x89\xf0\xda\x01\xe3\xa4\x71\xc8\x71\xb0\xde\xa3\xdf\x87\x30\xf1\x26\xc8\xfc\xcf\xfe\x9e\x99\x4b\xb4\x6d\x11\x5e\x62\x0f\xb5\x23\x71\x8c\x99\xe9\xe0\x29\x32\xdd\x02\x8c\x68\x9e\xa6\xf3\xf7\xef\x3f\xad\x0b\x73\x1e\xb0\x55\x3a\xff\xc1\x01\x53\xa5\x4d\x93\xc7\x09\xc1\x20\xac\x76\xc0\xf4\xd8\xec\x3e\x75\x20\xc1\xb3\xad\x20\xc7\x09\x57\x27\xef\x4a\x68\x6f\xaa\x53\x09\x1f\xb0\x34\x96\xbf\xf9\x27\x1c\x17\x27\x54\xe4\xbe\x20\xa9\x7e\x26\xe4\xe2\x75\xcb\xff\xa7\x90\xd0\x8c\x42\xf5\x63\xeb\xef\x81\xe4\xcd\x61\x1b\xf8\x71\xa1\x74\x80\x30\xd0\x41\x8c\x24\x60\x77\x30\x39\xb3\x33\x2c\x1c\x37\x53\x4a\xe8\x3a\x74\x40\x53\xe3\xa2\x3d\x07\x5c\xdc\x5c\xe5\xe7\x60\x99\x38\x57\xe9\x39\x6e\x76\xa1\x29\x7a\xb2\x0b\x2d\xeb\x83\x51\x1b\xbf\x3c\xbc\xfe\xf8\xe0\x7c\x98\xfc\xc3\xa7\xd2\x43\x1d\x99\x76\xf8\x89\x28\xe6\xb0\x15\xe4\x64\x31\x0e\x95\xc8\x1f\xe7\x8f\x38\x5d\x7b\xf2\x84\x11\xce\x65\x51\xce\x5f\x76\x52\xf4\x43\xce\x9d\xbf\x60\xf2\x1f\x09\xa2\xf3\x97\x43\x9d\xfa\x01\x02\x55\x9b\xf2\xdc\xf2\xd8\x50\x13\x48\x90\x6c\xeb\xe7\xb9\xf1\xac\xd3\xf9\x7a\x6e\x8c\x7a\x57\x8b\x74\x3b\xb3\xb2\xef\xdc\x38\xfd\xfe\x80\x3e\x37\x3a\x91\x4f\xa8\x3a\x5c\x6e\xe2\x44\xca\x1a\x17\x21\x39\x0b\x73\x61\x69\xcf\x9c\x85\xc7\x82\x4e\xc3\x33\xc3\x21\xc4\xc3\x27\x5c\xbe\x1c\xf8\x7b\x26\xb2\xd1\xa1\x7f\x22\xdd\x71\x58\x67\x79\x56\x7a\xfa\xf8\x19\x25\x86\x75\x4f\x3f\x99\xfd\xb8\x7e\x3e\xe0\xe9\xa5\x13\xf7\x44\x8e\x99\x26\x59\x72\xbe\xd0\x65\x76\x5d\xfd\xcf\xc6\x44\x97\x6a\xa0\x21\xa6\xc3\xf3\x42\xbb\x58\xf7\x33\x75\x09\x62\xec\xb3\x65\x8f\xea\x81\x01\x0c\xae\xf7\x73\x36\x92\xa0\x69\x68\x39\xd5\xfa\x01\x11\x0c\x56\x1e\x9f\x99\x72\x6f\xfa\x87\xe4\x42\xf5\x81\x14\x32\x2e\xd4\x71\xc2\x50\xa6\x02\xe4\xe3\xec\xbc\x13\xeb\xcc\x3e\x19\x55\x6b\xbe\x86\xf2\x21\xac\x49\x3d\xfb\x89\x79\xf1\x07\xa8\xa1\xae\xdd\x76\xc2\x50\xe6\xda\x21\x27\x7c\xb4\x9c\xd4\xf4\x44\xd4\xad\x13\xce\x9f\x54\x56\x98\x3b\x06\x1d\x23\xab\x3f\xc0\xbe\xd1\x09\x7f\xc2\xc8\xe5\xa2\x08\x67\xe2\x10\x41\x9f\x73\xe4\xbc\x6a\xd0\x83\x4b\xa9\x67\xc0\x8e\xcf\x07\xc8\x65\xec\x44\x61\x27\x42\x14\x9c\x94\xfa\x0c\xde\xea\x75\x5e\x9f\x19\x92\x60\x9a\x98\xbb\xd8\x8a\xd9\x33\x72\x73\xfb\x13\x64\x6c\xd4\x91\x7e\x66\xd0\xc2\xa7\x93\x0b\x1b\xd1\x44\x61\x1e\xbd\x30\x30\x5b\x39\x91\xf9\x39\x39\x6f\x22\xfa\x05\x29\xd5\xc5\xa7\x4e\x26\xa6\xf9\xfe\xc0\x4d\xb4\xfc\x03\x84\xbb\x57\x76\x12\x45\x74\x77\x09\x0f\xe9\xea\x2e\x16\x9b\xd4\xd4\x23\x33\x8d\x8d\x9e\x27\x71\x8b\xb9\x8f\xfa\x92\xf5\x27\x27\x85\x73\x61\x40\x26\x6f\x51\xc1\xae\xce\x56\x0e\xc8\xad\xe7\x80\xfc\x06\x6b\x7e\xf9\x99\xac\xe4\x0d\xc5\x78\x06\x17\x59\x3a\x11\xcf\xe0\xe0\x94\x73\x91\xb7\xfc\x01\x84\x9f\x70\xfd\xb9\x78\x01\x17\xa4\x39\x19\xb4\x6b\x55\xf3\xb9\x43\xe0\x9a\x48\xe6\x39\x36\xfb\xa3\x00\x6f\xb3\x4f\xe3\xb9\x33\xb6\x4c\x24\x65\xea\x40\x2f\xf4\x9e\xec\xec\x1f\x5e\xce\x70\x59\xaf\xf3\x20\x8a\x76\x93\x80\x51\xae\xbc\x74\x1e\x14\xfa\x66\x3e\x44\xea\xba\x92\xf7\x99\x69\x69\x3c\xce\x63\xa2\x0a\x8d\x86\x79\xb0\x86\xa8\x3f\xd8\xd1\x83\xff\x07\xa6\x16\xde\x3c\x0f\xa4\xd8\xb0\x50\x38\xc0\x18\x66\xee\x83\x43\xf0\xfb\xef\xf9\x6a\x93\xc0\x79\x02\x93\x5b\xc8\x9c\x3c\x6e\x8b\x5f\xc0\x21\xe3\x75\x40\xfe\x41\xd7\x7b\x3e\xa1\x40\x1a\xce\x2f\x7d\x22\x5a\xc1\xd9\x04\x4e\x04\x2b\x18\x88\x9d\x27\x92\xb8\x9a\xf7\x4f\xde\xd0\x3c\xa4\x33\x57\x5a\x5d\xa6\xd3\x97\xb0\xdd\x49\xa7\x2f\x6b\xb3\xcf\x8b\xe2\xd9\xec\x45\xb8\xe5\xc3\xf6\xa2\x0e\xe1\xf3\x03\xb2\xcb\x0b\x00\x9f\xe9\xf5\xe5\x89\x83\xd7\x97\x0b\xb0\x9c\xc8\x49\x63\xff\xbe\xf3\xc5\x5f\xb3\x7b\xd3\x23\x47\x8d\x13\xe4\x9e\x50\x6a\x85\x6f\x79\x27\x6c\x73\xce\x74\x7c\xde\xac\x50\xee\x1e\x6e\x14\x5d\x11\x66\x3e\x6f\x64\x1f\x37\x12\x82\xb1\xce\x66\x86\xf3\x66\xce\x2d\x0d\xe1\x4e\xa9\xa2\x31\x22\x89\x8d\x33\xf6\x9f\x37\xa5\x8a\x41\x0c\xb4\x5e\x4e\x7e\x7b\xde\xdc\x00\xc5\x24\xdc\xa4\xd1\x5f\x3c\x18\x84\xba\x60\xa1\x60\xa3\x1e\xa4\xb9\x71\x50\xf7\xf9\xe4\x86\xd0\xb4\x31\xd4\xd8\x83\x78\xa8\xf1\x34\x7e\x78\xa8\x5f\xd2\xa9\x74\xfd\x7e\x24\x6a\xe8\x87\x8d\x8a\xff\xaa\x1f\xa0\xed\x93\xb0\xbc\x18\xcc\x6b\x53\xc1\xc5\x82\x18\x4e\xba\x72\xc1\xe9\xca\xf7\xa5\x0b\xa6\x35\xa7\x20\xb8\x7e\x39\x6e\x37\x49\x9e\xd4\x05\xe9\xa2\x57\x95\xb3\xac\x5c\x50\xa4\x39\x6d\xe8\xc5\xb4\x88\x8e\x18\xbe\x60\x4b\x73\x3a\x88\x6b\x03\x43\x49\x7e\x5d\x28\xba\xb6\x59\x47\x7e\x21\x5e\xf7\x33\xee\x8d\xf9\x58\xfd\x3f\xd6\x42\x5b\xf7\x2a\x14\xdb\xc2\xc1\x57\x41\xc4\x70\xf3\x0b\x3c\x3b\x75\x4b\xbb\x60\x09\x2b\x1e\x54\x01\x76\xfb\xf9\x03\xf0\xb4\x7b\x2c\x39\x2d\xee\xe1\x21\x84\xd0\x17\x28\x89\x36\xfe\x58\xe8\xee\xaa\x05\xa5\x53\x34\x45\x2f\x3c\xed\xce\xe5\x7a\x55\x8e\x48\x87\xfd\x55\x21\x7c\x74\xcc\x5c\xb0\xac\x7d\x38\x01\x6a\x36\xc7\x1b\x5e\x95\x77\xe9\xea\x17\x00\x06\xc2\x0d\x70\x97\x0a\xa6\x5d\x70\xca\x72\x4a\xb7\x0b\x60\xd5\x1a\xd6\xab\xf2\x7e\xa2\x6b\xe1\xd5\xe0\xf4\xad\x4d\x77\xa1\x7a\x9a\xb3\x13\x5e\x70\xda\x72\xea\x93\x8b\x0e\x54\x4e\x74\x73\xd1\x28\xe5\xea\x7a\x17\x54\x5a\x76\x93\xb9\x3a\x76\x69\xf1\xff\x04\x8a\x1e\x54\x67\xda\x3a\x4d\x5b\xcf\x65\xf2\x0f\xc9\xbd\x9a\x17\x16\xd1\xfd\x8c\x62\xd0\xca\x24\x9c\x75\xc1\xc1\xdf\x89\x10\x2e\xe4\x5f\x71\x3a\xcd\x8b\xa5\x33\x6c\xb0\xbb\x06\x0a\xe6\x37\xbf\x90\x9b\x50\xc3\x18\x40\x00\x3f\xb7\x08\x2d\x57\x37\x4d\x38\xf1\x3d\x0d\xcc\xc7\xd2\xdc\x01\xb1\xa5\xda\x8b\x1c\x83\x3e\x08\x28\xc7\xbd\x74\x50\x50\x59\xba\x5d\x80\x8e\x2e\x3a\x77\x05\xe7\x59\x04\x04\xf1\x80\x80\xe2\x45\xf5\x94\x0f\xc7\x0b\xb1\xa8\x4e\xf0\x76\xbd\x38\x6e\x76\xb3\x1b\xbc\xf3\xad\x83\xbd\x00\xe3\xaa\xd5\x4b\x17\x33\x0e\xba\x52\xde\x05\x5c\xf7\x59\x98\x49\x09\xac\x5b\xe3\x85\xec\x29\xce\x28\x78\xad\x0c\x1e\xd1\xa8\x98\x06\xda\x46\xa8\x6b\x71\xe5\x34\x8a\xb4\x94\x09\x5c\x5e\xd0\x71\x39\x27\xe1\xb5\x88\x4e\xdd\x40\xae\x9c\x5f\x98\xec\x53\xe3\x46\x29\x5c\x57\x1a\xb8\x5e\xf0\x56\x1d\x1d\x72\xa1\x78\x99\xdd\x35\xaf\x9d\x4e\xaf\x52\xa3\x5d\xb4\x9c\xb9\xd0\xdd\xb5\xf3\xae\xa3\x2e\xa9\xd1\x72\x6d\xbd\x0b\xa6\xb3\xcf\x3c\xc0\x9d\xde\x7e\x58\x17\xbd\xe7\xed\xe1\x7f\x1d\x5c\x2b\xad\xc5\xc1\x51\x49\x1f\x72\xc1\xb4\xd6\xbc\x14\x07\x2f\x12\x82\xc5\x17\xdc\xe5\x5d\xa8\xe9\x62\x62\xe7\xf9\xe9\x93\x86\x53\x41\x9d\xeb\x44\x29\x0e\xcf\x64\x82\x29\xa1\xb9\x8b\x55\xcc\x3e\xd2\x80\x68\x4a\x17\xf4\x0b\x5a\x2b\xc7\xd3\x5d\xc8\xee\xec\xfc\x3e\x17\x63\x43\x6d\x9c\xbd\x4e\x1e\x6d\x96\xd1\x27\x4e\x0d\x1f\x6d\x48\xf0\xe7\x0c\x0c\xd7\xc9\x99\xed\xfe\x01\xfb\xca\x07\x17\xd0\xd6\x57\xea\x03\x6d\x19\xaa\x5f\x48\xf8\xe7\xd8\xfc\xeb\xe2\x18\x44\xf3\x95\x71\x0a\x1a\x14\x54\x57\xb6\xbc\x5e\x84\x52\x5e\xdb\x8b\x2e\x43\xcb\x1f\x24\x06\x70\x97\xd4\x78\x7a\x5e\x60\x10\x74\x62\x97\xeb\xe2\x41\xe4\xa3\xe4\x26\x54\x8f\xbf\x1d\x44\x08\x17\xfd\x88\xc3\x9b\x9b\x2a\xdc\x1c\xc4\x9f\xb9\xeb\xa6\x22\x3a\xfc\x05\x17\x4e\x63\x82\x9f\x94\xd3\x4a\x5c\xc0\x5e\xcd\xc9\x9e\x2e\x62\x2f\x1f\x6d\x37\x8c\xa2\x9f\x06\xb8\x6e\xfe\x1f\x23\xf6\xc2\xb3\x0e\xaf\x6b\xf2\x5c\x99\x9f\xda\xb3\x88\x00\x53\x97\xc8\xbc\x1e\x18\x49\x2d\xd2\x51\x38\xc3\x88\xf6\x4a\x28\xa6\xbb\xc8\xf5\xb0\x42\xa6\xc6\xf0\x50\x17\x64\x71\xc6\x62\x69\x3e\x4d\x1f\x38\x4f\x1a\x46\xc1\xeb\xca\xd9\x28\x2f\x98\x48\x1d\x69\x7f\xc1\x0b\xcb\x39\x81\xae\x07\x52\x40\xa2\xeb\xfe\xe5\x22\x86\x7e\x48\x12\xa7\x7e\x40\x6e\x52\xcd\xe2\xfd\xe3\xe9\xba\xf4\x0c\xc8\xb3\xb9\x45\xd8\x07\x34\xc4\x1b\xf6\x51\x27\xb3\xbc\x51\x29\xcd\x2a\xb5\x1b\xbe\xf1\xb6\x37\xdc\x1b\xa5\x8a\xda\xdb\x78\xc6\x98\x00\xa2\x3a\x5d\x66\x6e\xa0\x3a\x4b\xe3\x9b\x99\xad\x75\x0a\xde\x48\x64\x6d\x8f\x80\x7b\xcb\xed\xe9\x1e\x81\xf2\x84\x0a\xef\xc2\x9a\x7b\x9a\x01\xf8\x47\x39\x1f\xc9\x5d\xf2\xd0\xd2\x9c\x41\x6b\x68\xff\xeb\x1b\x5a\x43\x7b\xa0\xdc\xc8\xd1\xb2\x55\xff\x8f\x83\x5c\x22\xe7\x2e\x38\xe4\x3c\x05\x85\x87\x9a\xdb\x07\x48\xd4\xb1\x7a\x97\x13\x89\x35\xdc\x3e\x46\x28\x79\x73\x17\x32\xb2\x07\x44\xb5\x95\x66\x88\x49\xaf\x8d\xa8\x6e\xa0\xc0\x6a\x1b\xf5\x9d\x3a\x49\x4f\x32\x61\x9f\x04\xf3\xfd\xc2\xbe\x69\x0c\x76\x57\xac\xb2\x4e\xd9\x3b\x55\x92\x66\x93\x4a\xc6\xd3\x98\x2a\x69\x14\x09\x50\x39\x7e\x60\xe1\x0d\xeb\xaa\x7d\x16\xef\xc6\x43\x56\xdb\xf5\x66\x1a\x6c\x47\x2e\xdd\x8d\x99\x6e\xd4\x05\xa2\x46\xed\x84\x7b\x23\x6a\xb4\x7d\xfe\xa7\x44\xf3\x0b\x2c\x79\x6b\x5b\xd7\x9d\xd6\x54\x33\x2b\xac\xa5\xbe\xbd\xdd\x8c\x0b\xb5\xba\xed\xee\xc4\x27\xea\x03\x05\xd2\x8c\xa0\x6e\x6a\x1c\x8b\x9f\x79\xe2\xe9\x60\xbf\x81\x2c\x87\x91\xc0\x0d\x6b\xaa\xc3\x26\xee\x91\x34\x69\xb5\xe1\x8d\x1f\xae\xbb\x79\x23\x52\xd4\x77\x90\x7b\xf0\x52\x22\xc5\xe9\x3d\xc8\x4f\x1a\xd5\xe0\x5a\xf8\x7f\x18\x82\x3c\x6a\xf8\x43\x39\x36\xe5\x0e\x3a\x4d\xe8\x0e\x7a\xa3\x00\x88\xab\xc3\xde\x41\xdb\xba\x74\x01\x77\x50\xfb\xaf\xbb\xff\x8d\xfa\xb4\xce\x3f\x7b\x23\xab\x9e\x9d\x60\xef\xf9\x9e\xf3\x8e\x5a\xbe\xa1\x21\xb4\x13\xe3\x0d\xdc\xb7\xfa\xef\xf7\x97\xc3\xe7\x06\x06\xb4\x3a\xee\x9e\x39\xeb\xfe\x01\x93\xec\x67\xd6\x06\xf1\x8e\x59\x39\xc7\xa2\x1f\x56\x4b\x23\xdf\x7b\x71\x7f\xb8\x01\x9a\x1e\xa4\xf1\xbb\x01\xd8\x5c\xde\xf6\x46\xee\x10\xd7\x71\xba\x17\x29\xd0\x84\x30\xa9\xb4\xbd\x42\xee\x1d\x45\xea\xcc\x49\x28\xf4\x61\x95\xfc\xbd\x93\x15\x2d\xe7\xe0\x4b\x65\xcf\x96\x1b\x88\xb0\xda\x49\xe8\x86\x09\xf3\x23\xc9\x0f\xde\x2c\x05\x64\x6e\x98\x2c\x6d\x06\xba\x99\x02\xda\xfe\x0a\x77\x42\x42\x8b\x85\x03\xf5\xaf\xcc\x18\x30\x5a\x7e\x0e\x83\x03\x85\x5f\x2c\xcb\x0f\x8a\x89\xe5\x1f\x4e\xae\xab\x5b\xa4\xf4\x16\x27\x1d\xc4\x52\x7a\x3e\x39\x4f\xd2\x4b\xdd\x67\x8e\x42\xe3\x3e\x39\x0a\xd1\xc0\x98\x4c\xd7\xad\xbd\xa1\x7f\xb3\x81\xec\x46\x0a\x68\xbb\xb7\xde\x27\x4f\x3c\x41\xe7\x9b\x6e\xec\x36\xd4\xdf\xc8\x9b\xe7\x5b\xc9\x9d\x90\xb1\xb8\x49\xea\x14\x35\xf5\x84\x8c\xde\x0e\xa9\xa1\x5b\x26\x9a\x17\xcc\xe2\x61\x11\x8c\x98\x87\x59\x9c\xcc\x54\x43\x1f\xf7\x91\x3c\x88\x99\xfc\xdc\xd4\xef\x0b\x45\xb1\x4c\xf4\x85\x7a\xc7\x66\xd9\x17\x5f\x6d\x1f\x3d\xe4\x7d\xf3\x0a\xf1\x79\x83\x54\x8b\x26\xaa\xaa\xbc\xda\x70\x2b\x37\x3c\xba\x1f\xd4\xa6\xf9\xf9\xff\x97\x1b\xec\xd6\x7b\x3f\xd8\x34\xa6\x88\x09\x9a\x5d\x03\xee\x7e\x92\x02\x91\x04\x87\xae\xe6\x6c\x65\xf7\x03\xd1\xe5\x79\x7b\x78\x96\xff\x37\xb1\xcf\x8f\xd9\x8f\xaa\x9e\x0b\x4a\xbe\xfd\xf4\x4c\xb8\xa3\x31\x3c\x88\x4e\x2c\x9f\x0f\x72\xad\xa7\x7e\xc0\x25\xbb\xfb\x03\x5e\x38\xc3\x3f\x50\xe1\x11\xfe\x22\x17\xd7\x44\x3d\xb8\x97\xeb\x0b\x58\x3a\x87\x8b\xb1\x3f\x1b\x94\xde\xda\x67\x0f\xbc\xca\xbd\x29\x1e\xd4\xff\xb0\x0b\xe2\xb3\x41\x03\xa2\x89\x7c\x18\x5e\x68\x4d\xfd\xc3\x8c\x1c\xbe\x69\x3d\x5b\x72\xa8\xc6\xb9\xd1\x6d\xc3\x7d\xbc\x28\xa8\x56\xad\xc5\x03\xd4\xd3\x85\xcb\x9e\x17\xf4\xc4\x14\xb6\x7d\x58\x8c\xcc\x35\x73\x1f\xa0\x9c\x65\xff\xe6\xa7\xa4\xcc\x76\x93\x49\x84\xdf\x80\xfd\xc0\x13\x83\xdc\x74\x0e\x87\x7a\x98\x9b\xce\x72\xf9\x29\xbc\x1f\xea\x3c\x7d\x90\x26\x79\xd9\xf5\xf6\xa9\x98\xca\xe5\x67\xf2\xa8\x16\x87\xf6\x5a\x67\xb4\x7c\x58\x8e\xd6\x75\xc2\x9f\xc4\x42\x12\x83\xcf\x8b\x85\x8a\x33\x4d\x3d\x35\xa7\xee\x4f\x17\xa1\x27\xf5\x61\x3a\xea\x1e\x20\xa1\x0f\x4b\x56\xee\x2a\x0d\xba\x91\x19\x44\x31\x70\x8f\x2b\x3a\x3f\xb4\xac\x3a\x22\xf1\x61\x31\x33\x6d\x9a\x87\x7e\xdd\xae\x86\xfb\xb0\x98\x99\xbd\x0c\x1e\x98\x5a\x6d\x1f\x78\x12\xd6\x4c\xff\xf0\xee\x54\xab\xe2\x9f\x4e\xad\x5f\xf3\x0b\xb9\x94\x5a\x3a\x78\x89\xd9\xdb\xe2\x61\x61\xd8\xcd\x44\xe5\x52\xfa\x87\x94\x78\x1a\x67\xe7\xda\x6a\x1d\x52\xa3\x26\x41\xfe\x8c\x94\xf4\xfe\x81\xc0\x5c\x7a\x97\x07\x8e\x63\xd6\xdf\x3e\xf0\x15\xb7\x1e\xe6\x19\xdc\x16\x3a\x75\x1f\xa6\x90\xb3\xdb\xc2\x33\x2e\x7c\xe1\x16\x10\x1b\xec\x61\xbc\x50\xa9\xdb\x0d\xf6\x09\x58\xd6\x05\xd5\x1f\x84\x10\x76\x1d\x46\x0f\x5c\xc7\x3f\x5b\x20\x76\x3c\x6b\x62\x91\xee\xcd\xe6\xdd\x87\x01\x80\x4e\x24\xfa\x44\xe2\x43\x51\xf8\x22\xa5\x6e\xc7\xdc\x07\xb6\xd5\xcf\x06\x00\x72\xb2\x65\xf4\x99\xb9\xf8\x22\x19\xf9\xe0\x9c\xa8\xe4\x99\x98\x24\xef\x31\xa4\x27\x5e\xdf\x1e\x78\x07\xf5\x07\xd4\xf8\x4a\x69\xf7\x4c\xba\x7b\x36\x77\x91\xa3\x30\x11\xe0\x79\x81\xfd\x67\xe5\xda\xea\x0b\x84\x1d\x5a\xef\xf7\x2c\x2e\xad\xc5\xcf\xca\x61\x88\x8a\x45\xc5\x8f\x2e\x9a\xcf\xca\x7d\xeb\x37\xe8\x2f\xe0\x17\x26\x0a\x4f\x7a\x5f\x2c\x32\xb1\xb7\x16\x4a\x7f\xac\xcf\xf2\xb2\x40\x9b\x0b\xab\x3e\x7b\x8a\x6e\x75\x82\x9c\x6f\xbe\xa0\x3f\x3b\x44\xb7\x90\xc0\x03\xe7\x34\xab\x08\x9e\x9d\xe2\xc6\xb2\x9b\xb5\x3f\xd6\xe6\x2f\xc0\x22\x16\x71\x50\xdc\xad\xcf\xd6\xda\x93\x28\xcd\x0d\x8d\xa8\x76\xc6\x78\x0e\xdc\x60\x3d\x79\xf0\x3d\xb3\x2e\xf0\x39\xfa\xbb\xa2\x66\xb2\xcc\x83\x21\xed\xd0\x73\x90\x07\x4c\x14\x32\x63\x58\x8f\xf0\x1c\x5c\xf2\xee\x17\x78\xcb\x16\xb2\x7b\x10\x4d\x68\xb3\xeb\x83\x34\x6f\x1f\x19\x74\x92\x4f\xc5\x65\x27\x82\x71\xbd\x13\x18\x5c\x68\xe7\x8d\x07\x8a\x3c\x5f\x41\x9f\x93\xfe\x5c\xd2\xdf\x3c\x27\x75\xa2\xba\x17\x3f\x17\xe7\x5e\x24\x40\xad\xe6\x3b\xe9\x83\xb4\x13\x9f\x69\xb8\x92\x1f\xfc\x01\x84\x9a\xe7\xf1\xa2\xcc\xf2\x51\x00\x8f\x30\xdf\xe4\x1f\xe8\xc8\xec\xb8\xff\xc0\x00\xe9\x98\xa0\x87\x4a\x2f\xf7\x08\x7b\xe2\x66\x77\x8f\x27\x0d\x8a\xc6\x27\x37\x94\x8f\x66\x62\x60\x32\xe3\xe1\x07\x4a\xac\xfe\x37\xeb\xd0\x03\x0d\xd7\xe7\xcc\x7f\xc8\xcd\xba\x09\x3e\x30\x36\xda\x7b\xf8\x79\xc8\x38\xa2\xf7\x21\xe3\xf8\xff\xf1\xef\x3f\xe1\xfc\x55\x0f\x10\x5d\xb7\xde\xf1\x81\x7e\xca\xb9\x16\x1e\x96\xd8\x70\xc4\xe7\xc3\xfc\x13\x76\xf5\x78\x80\xf0\x64\xa4\x88\x1f\x8c\x95\x53\x4e\x38\xf1\xfb\x91\xc6\xa9\x67\xd2\x54\xf4\x3c\x10\xbd\xee\xf7\xa1\x6d\xf9\x6f\x11\xe3\xf7\x03\x2b\xff\x37\xa3\xf1\x03\xa0\x9b\xb2\xd1\xc5\xef\xc7\x55\xef\x7a\xa6\x54\xd8\xfc\x02\x56\xfd\x3f\x36\x89\xdf\x46\x8a\x42\xcf\x1d\x61\x86\x7e\x0e\x8e\x51\x2d\xa2\x5a\x5b\x6f\x7e\xc6\x2c\x35\x0d\x01\x7e\x6b\xbd\xa9\x43\xa8\xb4\x7a\x13\xc9\xdb\x8d\x21\xfa\x7f\x10\xf4\xdf\xc1\x18\x3f\xd6\x96\xd5\x21\x10\x3f\x04\x00\x4c\x99\x8a\xe2\x57\x30\x49\xee\x01\xe9\xd4\x74\x1f\x89\x5f\x81\xcc\xf7\x24\x41\x05\x35\x3c\x89\x4c\x85\xb6\x36\x75\x89\x7c\x10\xbd\x69\xcc\xc0\x5d\xbd\x69\x8e\xe0\x16\xb7\xc9\x03\x26\x7e\x35\x27\x45\xeb\xc8\xca\x6a\xe1\x59\xa8\xb9\x30\x22\x82\xc9\xd0\x94\x43\x2b\x7e\x84\x52\x4d\x4d\xb4\x1c\xa6\x26\xb6\x65\xaf\x22\x03\xb9\x7b\xa7\x0c\x2d\xf1\x6b\xdc\x81\x45\xec\xc2\xe2\x69\x3a\x92\xe3\xd7\xd2\xfd\xce\x9f\x1c\x6c\x43\x43\x69\xbc\x27\xb9\x09\x9e\xd9\x5d\x84\x77\x30\x48\xd7\x0b\x2c\x26\x1b\x66\x80\x4e\x61\x57\xb4\x1e\x2f\x00\x73\xae\xdd\xf8\xc1\x78\xd8\xbb\xfe\x1f\xd9\x82\x86\x0e\xeb\xe1\x54\x85\xe2\xf8\x21\xc1\xc2\x54\x61\xde\xf8\x21\x81\x58\xf5\xbe\x18\x39\x9b\xfe\xe2\xe6\x17\xee\x84\x7a\x21\x2d\x08\xec\x83\xcd\xff\x33\xdb\xad\xb4\x86\xaf\x20\x60\x0b\xfe\x62\x32\xb3\x95\x3a\x7d\xf1\x8e\x2b\x18\xc7\x8f\x45\xca\x36\xcd\x54\x50\xc2\x7a\xaa\x58\xb4\x2c\x3c\xf2\xc9\xed\xae\x3e\x67\xf6\xa9\xf5\x42\x11\xfb\x9f\xe7\x16\x0e\xeb\xc3\x5c\xc4\x8c\x07\x4b\x34\xc2\x77\x4b\xf5\x4f\xe3\xb7\xc8\x33\xc5\x2f\xd0\x30\xdb\xfd\x03\x8f\xec\xe2\x4f\xc8\x55\x1e\x06\xa0\xc6\xea\x9f\x1f\x20\x74\x3e\x4d\xf0\x0e\x51\xfc\xc2\xc3\x26\x34\x33\x3b\xf5\x9f\xdd\x3f\x20\x8c\xb1\xfa\x19\x27\xc1\xe7\x7f\x94\x00\xfb\xfc\x8f\xcd\xd1\xb5\xbc\x50\xff\x74\x33\xe5\x91\x42\x42\x13\x05\x7d\xd0\xfc\x79\x8b\x12\x36\x74\xf1\xd8\x91\x33\xe3\x2f\xa8\x29\xf1\xdc\xc1\x02\xd8\xfb\x5f\x0a\x81\xc7\x0f\x8e\x59\xca\xd3\x1f\x3f\x64\x34\x90\xcd\x33\x7e\x07\x73\xda\xab\xb7\x73\x22\x7e\x42\x03\x3a\x29\x1f\xbc\x75\xe1\x90\xde\x2d\x16\xe1\x5f\x2e\xa3\x69\xfc\x2e\x0e\xd0\xbb\xec\x9a\xa4\xdf\x6f\x60\x99\x86\xc6\xc3\x38\x3a\xdd\x50\xe3\x07\x97\x23\x59\x80\xe2\x47\x00\xe0\x4d\x75\xe7\xaa\xe9\x03\x84\xbd\xcd\x9f\x25\x10\x8f\x58\xef\x99\x87\x35\xd1\xfc\xbc\x73\x92\x45\xd3\xc3\x2e\xff\x7b\x61\xfb\x51\xc8\x89\x3f\x37\x3a\xeb\xe8\x40\xdc\x7e\x29\x4c\x42\x3f\x70\x8b\x88\x5f\xb7\xb4\xe9\x74\x7f\x32\xf9\x46\xd3\x0f\x9c\x08\x3f\x27\xbf\xfa\x0b\x8e\xab\x98\x2c\x28\xea\x74\x08\x6e\xa9\xb3\x50\x9f\x1b\x5b\xf4\xff\xfb\xbf\xff\x54\xd5\xa1\x8e\x0d\xa5\xa3\xfa\xf0\x73\x0a\xd1\xff\x26\x6e\x2b\xf4\xee\xfa\xfc\x40\xff\x70\xb5\x88\xba\x4e\xd2\x6f\xc6\xc6\xa2\x4c\xcb\xa3\x4c\x75\x42\xf1\x1b\xec\x43\xcb\xb7\x15\xee\x42\x4f\xdd\x7b\xac\x85\x42\x18\x62\xab\x14\x47\xfe\x02\x71\x6a\x3e\x48\xb7\xca\xf3\xa4\xfa\x05\xba\x13\x8a\x08\xf8\x5e\x6f\x72\xf0\x89\x8d\x76\x0d\xdd\x52\x63\x7b\x4f\xa0\x98\x12\xdc\x5b\x23\x2c\x1d\xfe\x22\xcb\x9f\x88\x03\x70\x00\xc9\xac\x18\x5b\x03\x3e\x70\x8b\x9d\x18\xca\xab\xc7\x7a\x9e\xcb\x4d\xd2\xf2\x21\x0f\x98\xd8\x7a\x72\x99\xe6\x0a\xde\xd8\x7d\xf8\x19\x70\x3c\x34\x33\x9d\xe7\x79\xf5\x0f\x70\x85\x5a\x7e\x26\x63\x4b\x72\x6f\xb4\x8d\x54\xb7\xc8\xf3\xc7\x53\xc7\x40\x32\xe5\x8f\x8c\x0d\xfe\xd6\x3d\x34\xee\xf7\x14\xac\x55\x67\xc3\x36\x48\xa3\x86\xc9\xfb\x7f\xf8\x7f\x94\x5f\x9b\xee\x80\x8e\x42\xc3\x0d\x22\x1b\x83\x07\x3d\x38\xb1\x22\x19\x51\x61\x0a\x6f\x8f\x2d\x88\x59\xbc\x4f\xde\xf3\xcc\xba\xe6\xd8\x26\x67\xde\xf3\x8a\xf8\xab\x6e\x76\x98\x3c\x43\x3d\xc6\xc9\x6b\x8d\x9b\x44\x79\xa0\xae\x23\x74\x9b\x19\x14\xa6\x67\xea\x30\x24\xf8\x37\x18\x37\xe4\x00\x1b\x5b\xde\xa5\x2d\x41\xde\x13\xae\x4a\xc5\x19\x1b\xdc\x57\xba\x37\xce\xa2\xbc\x30\x7f\xa1\xfc\x8f\x52\x4c\xc4\xb6\x72\x29\xb5\x4d\x16\x21\x91\x17\x1f\xbe\xc5\xd5\xbb\x7f\xcf\x79\x50\x13\x7b\xe1\x0f\xa2\x72\xc7\x30\xbd\x36\x3c\xde\x74\x1a\x6c\x79\xc9\xb5\x98\xc3\x25\x57\x99\x02\x62\x83\xff\xca\xd2\x2d\x37\xb6\x83\xa1\x90\xeb\x4f\xa7\xd1\xc6\x1b\xee\x14\xc5\x07\x6f\x93\x9e\x35\xf8\xfd\xf6\xa9\x21\xbe\x17\xda\x29\x55\x4f\x6c\xbc\xc0\x0a\x7b\x6e\x2c\x42\xbe\x2c\xd1\x4e\x38\x6d\xb8\x87\x93\x3d\xfa\x7f\xea\x55\x2c\x22\x19\x38\xbe\x2c\x5c\x4e\x92\xa0\x29\x40\x16\x72\x5d\x16\x63\x83\x1f\x49\xf7\x3a\x5d\x54\x76\x7a\x43\xf0\x46\x3c\xfd\x41\xc7\x1e\xf5\x07\x54\x04\x78\x97\xc3\x67\xb7\x0b\x02\x6e\x17\x51\xa5\xae\x67\xdb\x45\x56\x68\x7e\x83\x07\x83\x89\x7e\x8f\xc8\xd6\xbc\xab\x91\xab\xb1\x9b\x7f\x6f\x2a\xb3\x35\x2d\xcc\x1b\xee\x2e\x91\x2f\x47\x95\x28\x63\xe3\x0d\x78\xb9\x3d\xa6\xf3\xd3\x18\xdf\x1b\x71\xab\x66\x45\x96\xde\x91\x4a\x26\x36\xd4\xde\x51\xd1\x95\xd8\x1e\x8a\x6c\xaf\x24\x9c\x2c\xba\x25\x17\xe2\xce\xbb\x0f\x9a\x87\x14\xf8\x7d\xa4\x7f\xf0\x21\x01\xa3\x84\x72\x5c\x44\xf9\x51\x8e\x69\x0b\x97\xf7\x40\xae\x0a\xa7\x8a\xf2\x23\x7e\xd4\x24\x96\x1f\xce\x7c\xc1\xe4\xb2\x61\xce\xb4\xd0\x85\xae\xb0\x52\x85\x46\xd9\x52\x8c\xf8\x0d\x6a\x70\x84\x75\xca\x96\x0b\xe5\x37\x30\x2a\x49\x81\xb2\x51\x69\x17\xfe\xe2\x61\x13\xa2\x8a\x89\x60\xa4\xe7\x8b\x82\x24\x81\x8a\xfb\x88\x82\xda\x33\x4a\x55\x1e\x85\x79\x5f\x94\x45\x33\x0a\x0a\x78\x2b\x73\x7f\x14\x78\x32\xa8\x5a\x6b\x94\xbc\x56\xea\x4e\x52\x70\xad\x54\x4d\xcf\x28\xb8\x56\x2a\xba\x2a\x0a\x3c\x19\xa6\x34\x2e\x51\x90\x29\x46\xd9\x18\xa2\x54\x84\x0a\x8b\x1b\x0b\x33\x70\x2b\xaa\x2c\x4a\x4d\x8e\xf6\x17\xb8\xef\xf9\xe0\x2a\xc8\xb9\x1d\x5e\x2d\xd4\x9f\x51\x8e\xa9\x28\x8d\x98\x40\x47\x61\x61\x4a\xed\x9f\x57\x87\x65\x0f\xa5\x3e\x8b\xc2\xbc\x83\x52\x9f\x45\x41\x12\x6d\x95\xce\x8b\xf2\xde\x53\xab\xea\x86\x44\x69\x88\x55\x94\x6c\x2b\x2f\x04\xe8\xe3\xe7\x67\x24\xce\xf2\xda\x31\x2b\xa1\x94\x63\x51\x3a\x0b\xb0\x69\xf5\x3b\x45\x83\x8e\xb6\xd2\x93\x07\xfd\xc6\xbb\xb8\x2a\xc2\x16\xe5\x3d\xcf\xc3\xf2\xb0\xc0\x04\xb0\xa4\xfc\x8a\x02\x2f\xda\x61\x1a\x3a\xc1\xb3\xce\xba\xc2\x14\xd8\x9e\xd8\x9e\x44\x6a\x75\xfb\x03\x44\xa7\x0f\x58\xc3\x5b\x1a\xbb\x28\x30\x01\x54\x1d\x4c\xe5\x05\x04\xed\xd7\xfd\x01\x51\x8b\x39\x14\xbe\x11\xf2\x27\x8c\x32\x78\x31\x2b\x7e\x61\xc1\x23\xcb\xcf\xc4\x56\xba\xd2\x94\x20\x5e\xd3\xbd\xa9\x04\xd2\xb6\x7a\x66\xa1\xf2\x57\x51\xb5\x28\x91\x3b\x4f\x6b\x13\x04\xd7\xfd\x2f\x3a\xba\x28\x2f\xa4\xa8\xc5\x43\x86\x45\x40\x8e\x35\x51\x10\x5b\x35\x3c\xa2\x20\x64\x35\xc1\x48\x36\xa3\x72\x83\x51\x60\x20\x50\x15\xac\x28\x30\x10\xa8\x50\x57\x94\x49\xf9\x28\x01\x5d\x5e\x04\xd2\x87\xb7\x10\x22\xc0\x37\xdf\x69\x4a\xaa\xf7\x4d\xd3\x24\x72\xf3\x1c\x2d\xf6\x21\x1a\x52\x7b\xef\x85\x5a\xe0\x77\xb3\x23\x6b\xaf\xc8\xe1\x22\x0a\x15\xed\xba\x90\x94\x9d\x2d\xaa\x81\x9d\x44\xfa\x7d\x0a\xf1\xee\x1f\x70\x0e\x09\x4f\x14\x26\xf1\x8b\xcf\x0f\x49\xb4\x88\x44\xfe\x69\xc5\x1b\x44\x39\x88\x59\x3c\xee\x83\x27\xbe\x26\x06\xfe\x12\xc3\x22\xf6\xa0\x52\x66\xfa\x07\xc4\xba\x17\x7f\xb0\xf0\x81\x7b\xe0\xc1\x21\x0a\xa0\x33\xaf\x8a\x7d\x8f\x72\xf2\xc6\xea\x79\xa3\xff\xab\x57\x1f\xc9\x67\x86\x45\x34\x7c\x1b\x3e\xd3\x06\xa5\xf9\xb0\xe0\x49\xdf\x86\xe9\x0f\xa8\xee\xd2\x75\xa4\x9c\x3c\xbf\x75\xc3\x29\x00\x1d\xc3\x83\x60\xb9\xea\xcf\x33\x67\x41\x83\x40\x9c\xb5\x6f\x2b\x85\xb5\xa8\x0d\xb2\x0b\x2a\x02\x86\x99\xe5\x42\x89\x0c\x21\xe0\xc2\x02\x7f\x86\xc4\x05\x88\x61\x78\xcf\xc2\xb7\xf4\x57\xbc\x69\x6f\x92\xa0\x85\x62\xce\x3d\xeb\x84\x0b\x8a\x4d\x57\x6f\xc9\x1b\xee\xd4\x9f\xff\xe1\x24\xee\x3d\xf1\x50\x8e\x98\x84\x04\x11\xd5\x3f\x80\xff\x3c\x6d\x00\x11\x56\x1a\x15\x60\x88\xe1\x4d\xf5\x50\x59\x21\x58\x5f\x9e\x8c\x9b\x70\x8b\xcc\x05\x2a\x1a\x1f\xd4\x3d\xb4\x70\x7c\x28\x2d\xd5\x42\x65\x35\x6a\x2b\x69\x6b\xc2\x08\x89\xe8\x0a\x5f\xcc\xf1\x79\xe1\xe0\x17\x7e\x81\x37\x62\x7f\xb1\xf1\xe8\xd2\x11\x5e\x13\x69\x7c\x7e\x00\x47\x55\x3f\x73\x22\xaa\x9e\x19\x34\x3f\xf5\x8c\x23\xdf\x5d\x42\x97\x2d\xaf\xdc\xa8\x1b\xcd\x5b\x9f\x06\xdf\x6d\x28\xbf\x82\xa8\x25\x87\xa9\x2f\x50\xdf\xd9\xaa\xe6\x8a\x54\xc6\x2a\xba\x15\xb5\xf0\x06\x15\xfe\x81\x67\xbe\x90\x76\x45\x69\x90\xd1\xdc\x05\xd2\x8b\x2f\xff\x7f\xc0\x6c\xb3\xf4\xcc\x3d\xf1\x69\x11\xb2\x63\xfa\xf9\xc1\xa0\xf4\x41\xaa\x09\x04\xb4\x6b\xe5\xfd\x7a\xf8\x07\x72\x98\xa0\x51\x45\xf9\x66\x65\x52\x8b\x5a\x09\x11\x86\x7f\x80\xaf\xd5\xa7\x05\x6c\x65\x25\x35\x89\x9a\x48\x46\x30\xb3\x22\xc3\xcd\xfc\x09\xeb\x54\xe8\xcb\x47\xfb\xd3\x41\x54\x2b\xe3\x1a\x35\x29\x8d\x88\x41\xb7\x8f\x0a\xe5\xba\xe5\x67\x05\xa8\x51\x56\xf7\xa8\x8d\x76\x13\x4f\x73\xa7\xb9\xc9\x63\xee\xe4\x36\x0f\xa1\x53\xb3\xaa\x63\xa0\x76\x70\x97\x24\x64\xed\x3c\xbf\xbd\xd8\xc8\x1d\x53\xbd\x12\x83\xc1\x93\x1e\x33\xf3\xc3\xd9\xb8\x52\x11\x93\xad\x64\xc6\x51\x07\x8f\x37\x13\x81\x20\xed\x61\xfe\x1a\xbc\xdc\x0a\x00\xd6\xd4\x9c\xeb\x0a\x53\x51\x47\x4e\x09\x6c\xa2\x06\xc5\xb6\x79\x98\xa9\x87\x85\x19\x6a\x80\x65\x3f\xcf\xb0\x51\x7d\x1a\x00\x8d\xdd\xdf\x27\x8d\xda\x45\xf0\x23\x50\x46\xda\xa8\x01\x3c\x28\x61\x51\x83\x24\xea\x96\x54\x89\x0a\x96\x07\x31\x93\x46\xd1\xc0\x1c\x74\xca\xd8\x19\x95\xc0\x40\x8a\xf3\x8a\x3a\x71\x46\x6b\x95\x21\xd5\xd5\xcf\x14\x71\xd3\x3f\xc0\xe2\xa0\x33\xbb\xb2\x50\x9c\x5c\xa7\xa2\xae\x24\x4a\x6f\x24\x4e\x10\xb2\xa8\x8b\xf8\x5e\x52\xb2\xa6\x32\x5e\x20\xb2\xd2\xec\xaf\xd3\xa5\x32\xd6\xe6\x23\x3f\x16\xe1\xd7\xf4\x17\xdc\xcd\xba\x26\xd7\x9d\x69\xc1\xcd\x01\x3b\x8d\x29\x16\x18\xcc\x30\xac\x9c\x82\x51\x91\x51\xd8\x31\x41\x51\x91\x63\xc6\x5a\xda\xba\xf3\xba\xe5\xe9\xdd\x29\xef\x2d\x54\x76\xca\x5e\x4f\xd7\x01\x30\x2b\xd0\x54\xa1\x7e\x1f\x02\x03\x15\xa5\xda\x9a\xaa\xa7\x44\xa5\xfa\x5d\xd5\x50\xa2\x1e\x94\x00\x16\x3b\x50\x62\x54\xa5\xec\x8b\x7a\x90\x4f\xfc\xc2\xc9\x26\xfc\xc2\xf5\x72\xa2\x39\xef\x20\xbc\xf4\xae\x3f\xc1\xeb\xdd\xcf\x48\x7b\xa4\xe3\xbe\x9e\x39\x77\x1a\xe7\xc9\x3d\xed\x25\x3c\xc9\xdc\x9a\xed\x13\xbe\xe5\xde\x0c\x27\xc3\x36\xfd\x3e\xf7\x9f\x79\x39\xf5\x22\x5e\x51\x24\x9a\xf9\xf9\x84\x20\x64\xb1\x64\x82\x21\xa0\x29\xe5\x69\xd4\x0b\x81\x1b\x26\x81\x25\x2d\x96\x59\x82\xc9\x63\xcc\xeb\x2c\xb0\x36\xbd\x19\xae\x5c\x3d\xf5\x81\xf8\x99\xe1\x79\x80\x2b\x80\x5c\xec\xa3\xde\xdc\x6f\xde\x5e\x37\xb2\x4c\x7a\x0b\xdf\x99\x7d\x53\xa3\xb8\x29\x24\x34\x91\x77\x4e\xa4\x5f\xe0\x79\x2f\x4d\x46\xbd\x93\x4a\x0d\x03\xa9\x83\x95\x20\x2f\xea\x8b\x73\xaa\xa2\x72\xa3\xde\x24\x5a\x44\xc2\x38\x31\xdc\x03\x60\x4f\x9b\xb2\x7d\x56\x3a\x00\x78\x66\x9f\xdc\x6d\x62\x07\xf8\x78\x0e\xc3\x85\x87\x2c\x29\x65\x49\x4d\x20\x24\xed\x48\x7d\x78\xe3\x9a\x7f\xc9\x83\x1a\x95\x1e\xa1\x4a\xca\x13\x15\x79\x85\x97\x87\xfc\x10\x3d\x8a\x5b\x1a\x43\x5e\xe4\xc3\x13\xed\x97\x2b\x31\xf4\x03\xc3\xc0\xab\x9e\x73\xd4\x53\x3f\x60\x25\x3e\x2f\x0c\xd4\xba\xf1\x33\xc4\xb7\x76\x6a\x43\x69\x63\x9b\x15\x1a\xa3\xa5\xe5\x3c\x19\x6d\xe3\xa5\x52\x2b\xd7\x18\x15\xf3\x93\x58\x6b\x25\x43\xb2\x45\x43\x61\x32\x06\x7d\xc1\x1c\x7e\x5e\xdb\x46\x18\x24\x09\xd4\x0a\x59\x38\xf4\x3c\xf9\x81\xa8\x2e\xdc\x77\x22\xaa\x20\xfe\xbe\xbb\x47\xde\xc9\xc2\x2d\x52\x58\x6c\x26\x92\x9b\x60\xb9\x49\x5c\x68\x3c\x70\xaa\x6b\x84\x59\x5a\x45\xa2\x0f\x89\xd1\xc6\x70\x64\x4f\xe4\x0b\x7a\xaa\xdc\xfe\xa3\x01\xf3\x28\xd9\x58\x34\xfa\x08\x4c\xcf\x0a\xe2\x50\x94\x37\x35\x1a\x9c\x29\x95\xd4\x34\x5a\xe3\x1d\xce\x3d\xc2\xbb\x72\x08\x1e\xb4\x74\x19\x90\x58\x6e\x2d\xe7\xd5\x3f\x24\xa2\x10\xbb\x34\x8a\xdd\xe2\x4e\x58\x9b\x43\xdb\xaa\x35\x32\xa9\x6e\x03\x8d\x91\x26\xca\x37\x17\x8d\xc8\x67\x93\x2c\x6f\x69\x6f\x91\x8a\xaf\x75\x2e\xa7\xc8\xe8\xd9\xab\x26\x1f\x41\xcd\xc3\x73\x95\xfa\x18\xb7\x78\x20\x14\xdd\x5d\x02\x88\x87\xbf\xbf\x48\x82\xa8\x86\x3a\xc6\x8a\x82\xd6\x39\x97\xfa\x7f\xa0\x32\x8c\x44\x60\x1b\x79\x6c\x8a\x64\x38\x29\x8c\xcf\x73\x43\x3a\x78\x3f\x0f\x0e\x41\x0c\x35\x38\x04\x3f\x63\x35\x05\x07\xda\xc8\x89\xd5\xd4\x0f\x46\x2d\x7e\xde\x20\xa4\xf0\x5e\x86\x83\xa6\x52\x3e\x44\x23\x34\xf3\xe2\x45\xae\x84\x88\x0a\x5e\x2f\xcc\x83\x48\xdb\x67\xa1\xda\x10\xec\xa2\xcc\x94\xd1\xa8\x80\x11\xbe\x68\x30\xf1\xb4\x69\x26\x25\xb2\xda\xbc\x55\x99\xde\x46\x3a\xca\x36\x27\x5f\x50\x97\x13\x3b\x71\xf8\x03\x9c\xd2\xc2\x0e\x6d\xa6\x4c\x13\xd1\x8b\x7d\x0a\x7b\xb5\x95\x02\x45\x44\xac\x64\x30\xcd\x2d\x7d\x14\x36\x89\xf2\xb6\x28\x0f\x74\x73\x6b\x6b\xf1\x0d\xf7\x42\x0c\xe3\xbd\xc1\x14\x32\xaa\x6e\x19\x6d\x71\x2e\x4c\x06\x8c\xc0\xe6\xb9\x3d\xe9\x14\x15\x7b\xce\x8d\xe8\xa4\x5e\xc7\x43\x47\x21\xb2\xa6\xca\x09\xd1\x88\xc5\x36\xcb\xce\x3d\xf7\xa3\x7f\xc0\x1d\x61\xba\xd3\x1c\x98\xc6\x91\xf9\xff\xbc\x64\x3b\x8f\xc5\xcd\x3f\x90\xd1\xaa\xc9\x82\x8e\xf7\xf7\xa7\x78\xa3\x68\xcc\x42\x6c\x0b\x40\x83\xea\xc8\x77\xda\x96\xd0\x4d\x17\xc4\x46\xa4\xa6\x42\x8e\xd1\x8e\x24\x49\xa3\x40\x7e\xbf\xb9\x59\xbe\x23\x58\xba\x58\x9e\x33\x56\x5a\xd9\xce\xa2\x9d\x1c\xb7\xee\x46\xed\xcc\x71\xfb\x07\xec\x2f\xe1\xa6\x06\x20\xe5\x48\xc1\x68\x27\x76\x8f\x60\x50\xbb\x7e\x7c\x41\x5f\x00\x28\x15\x7b\x58\x35\x58\x94\x94\x9f\x2e\x1a\x2c\x48\xd3\x1e\x3d\xed\x22\xb3\x6f\xfe\x82\x87\xa1\x2e\x64\x0d\xfa\x9f\x62\x7f\xaa\x06\x13\x92\xea\xb0\x44\xa3\xdb\xe5\xf4\x16\xbd\x72\xbe\xf5\x06\x35\x44\x42\x21\xed\x66\xd8\x87\x06\x8e\xfa\x5f\xca\xc1\x16\xed\xa6\x3a\x47\xf7\xca\xc6\x60\x18\x8f\x13\x46\xa7\x61\x10\x01\x47\xcd\xf2\x33\xdf\xa2\x78\xed\x30\xa8\x40\xc1\xb0\x62\xff\xab\x76\xe7\xfa\xb9\x0b\xec\x15\xcb\x95\x1b\xeb\xb7\xf9\xb0\x44\x38\xcd\xf0\x61\x9a\x3a\x27\x5d\x44\xdb\x03\x5b\x86\xc5\x27\x75\x50\x96\x0a\xc4\x5e\x96\x85\x4f\xf2\x94\x88\x7e\xa8\xff\x69\xfe\x81\x0c\x60\x36\xcc\x64\x81\xda\xd1\xfd\x07\x9d\xa7\xe4\x69\xff\x61\x26\x25\x12\x3a\xaa\x7f\x29\x0b\x50\x74\x40\x25\xa5\xe0\x89\xce\xf8\x1a\xbb\x84\x75\x24\x86\x09\x2d\x4d\x87\xa9\x4b\xf9\x70\xa2\xff\x6e\x3c\xeb\xfd\x8d\xca\x3e\x31\x6d\x47\x1a\xc0\x62\x87\xaf\x8e\x68\x19\x65\x96\x89\x8e\xe8\x98\x9f\xca\xbf\x44\xdf\x18\x99\xa2\xeb\x75\xdf\xa8\x21\x9a\x6e\x02\xd7\xb9\xea\x2f\xde\xd5\xb4\x21\xb5\x6f\xa8\xf3\xa7\x73\xa8\x6f\x24\xd2\xcf\x0f\x6c\x02\x22\x9a\x09\x99\x37\x41\x84\xce\x72\xb6\xbe\x57\xf5\xc2\x6c\xb1\xcb\x3f\x30\xd8\x4e\xc3\x04\xbe\x9b\x9b\x40\x45\x47\xc0\x8d\x12\xbc\x47\x2f\x59\xc0\x5f\x83\x80\x0f\x67\xb1\x17\x5a\x2f\xac\x6d\xa2\x61\xbf\x80\xef\x7d\x41\xc3\x2a\x79\x3d\x30\xdd\x07\xf2\xe6\xfa\x05\x2e\x96\x56\xb7\xa0\x78\xa0\xe4\x7f\xaf\x3f\xb8\x70\xf9\x19\xa5\x25\x04\x5a\x3a\xd4\x5e\x96\x16\xfd\xc5\x7f\xc5\xe7\x43\xaf\xc9\x1d\x9a\x48\x78\x85\xda\xfa\xd2\xeb\xfc\xf7\x9f\xa6\x42\x0f\xd1\x6b\x0e\xc1\x3f\xc0\xe4\x28\x16\xef\x48\x47\x53\x3d\x8d\x95\x23\x30\x45\x14\x1d\xba\x6d\xf6\x96\x4b\xa5\x16\x1b\x45\x9c\x9b\x44\x61\x07\xe5\x65\x89\x0e\x5b\x5d\x78\x16\x5b\xce\xbb\xfa\x68\x14\x79\xc5\x2d\x2c\x7c\xa1\x51\xb5\x1d\xcf\x9a\x76\x58\xf3\xac\x6d\xee\x8d\x99\x54\xfd\x3f\xf6\xc8\xf6\x97\xbc\xa8\xd1\x5b\x4a\x4b\x4d\x01\xe2\x9e\x6d\x50\xef\x3d\x47\x2c\x7a\x3b\x3c\x29\xcc\x8a\x09\x4e\xab\x7f\x40\x6a\x55\xb3\x49\xe7\x88\xcd\xde\x9d\x17\x1e\x4d\x6a\xe7\x00\xb5\xac\x88\x0e\x0a\x73\x26\xa2\x83\x14\xbb\x1a\x1d\xd1\x41\x56\x54\xf7\x4e\xa5\xb0\x37\x14\xf2\xed\x14\xbb\xee\x75\xd4\x30\x53\x8a\xc1\xe8\x63\xe3\x0b\xfa\xe2\x45\xa7\x55\x01\xb6\xd1\x07\x57\x51\x6b\x32\x3a\xb4\x59\x22\x11\xe0\xd4\xb8\xb0\x8f\xc0\xfb\x9a\xa4\xc1\x35\xf4\xff\xa8\x18\x6f\x92\x11\x64\x1d\x9e\x12\x28\x09\x9d\x7a\x29\x3a\x42\x8b\xe2\x33\x02\x62\x25\xb1\x11\xbc\x6b\xad\xf6\xe8\x54\x22\x2a\x3f\x6f\xf4\xc8\x65\x51\x0b\x40\xaa\x36\xc0\x76\x58\x22\xe3\xf3\xdc\x79\xc2\xf8\x03\x70\x6e\x71\x17\xf1\xef\x3f\xb5\x78\xbb\x42\xed\x18\x9e\x43\xba\x37\x29\xdb\x69\x74\x66\x82\x54\x64\x49\x74\x58\x1f\x6d\xc0\xef\x74\xd7\x55\x6a\xd2\xe8\xb0\x36\x86\x79\x0d\xf9\xa6\x8b\xfd\x06\xfb\xc4\xbc\x7a\xaf\x4c\xb0\x8e\xd7\xe1\xc5\xc2\xd5\x5e\x7d\x1d\xc1\x46\x73\xab\xee\xe1\x86\x39\xc9\xcf\x0f\x9e\xd5\x41\x62\x65\x1d\xa3\x1d\x09\x7f\x6c\xd0\xea\xa8\xcf\x1b\xe6\xf6\x95\x24\xaa\xc5\x45\x1b\x99\xa5\x12\x52\x2d\x86\x17\x62\xf1\x18\x35\xd1\xa8\xcf\x6b\xd5\x68\xdf\x73\xe9\x34\x4a\x84\x09\x85\xb9\x67\xe7\x59\xdf\xfd\x03\xce\x51\x4f\x34\x10\xaa\xca\xac\x45\xa7\x71\x72\x13\xfa\xeb\x48\x9c\x68\xef\xf9\x7e\x80\xff\xbd\x83\x0e\xf6\xa8\x41\xd1\x58\x39\x7d\x22\x1d\xec\x51\x24\x1e\xbc\x30\x08\x4e\x76\x38\xf7\xc6\xa7\xc7\x05\x61\x2e\x92\x0f\x42\x20\x2f\x25\x32\x29\xfe\x54\x4b\x3c\xfa\xc1\x69\xd1\x5a\x1e\x40\xd9\x16\xd6\x67\x9e\x92\xfa\x00\x41\x42\xe1\xf3\xe8\xe4\x20\x34\xcf\x67\x4e\x9b\x46\x85\x58\xee\xee\x03\xeb\x24\x1c\xb5\x30\x3c\xe9\x02\xa8\x41\x01\x12\xc7\xe7\x7f\x06\xa4\x77\x77\x01\x9a\x85\x3d\xfb\x49\x9f\x51\x63\x03\x28\x17\xe7\xe6\x4d\x02\x83\x68\x7c\x9e\x2b\x5f\x10\x91\x2f\x66\x2e\xaa\xab\x16\xfd\x02\x60\x31\x8b\x5f\x34\x59\x7c\x5e\xa0\xe7\x98\x5b\xc4\x9e\xf9\x34\x88\xda\x5b\xe6\xf0\x2b\x07\xe1\x16\x79\xd7\xff\xbc\x01\x00\x23\x20\xd8\x6f\xce\xbc\xc0\x68\x07\x82\x5e\x1e\x04\x10\x74\xb4\x3f\xf9\xd2\xf5\x3b\x79\x4b\xb3\x4c\x4d\xe5\x66\x66\x83\x41\x56\x31\xf7\xd1\x59\x1d\x44\x55\xe3\xa3\x23\x4f\xe2\xdc\x3e\x4d\xf0\xe0\xb6\x30\x7b\x5e\xcc\x6f\xdf\xf3\xfe\x50\x5e\x9a\xe3\x91\x7d\xc7\x76\xe7\xfe\x50\x9a\x7d\x5e\xc0\xda\x7b\xcf\xc1\xaf\xcb\xa1\x06\x83\x7e\x5b\x4a\x4e\x1a\x03\xa1\x47\x0e\x04\x18\x3f\x6a\x40\x74\xfb\x19\xf4\xcd\xde\x3e\x5f\x90\x41\x87\x3f\xc9\x99\xe8\xfa\x81\x3e\xa8\x3a\xa8\x06\x5c\xaf\xed\xe6\x3c\x52\x79\x28\x32\x07\xe2\x93\xec\x93\x3e\x7e\x5c\xed\xe1\x4e\xc1\xb2\x62\x9f\xf1\x23\x87\x6a\x97\x8c\x84\xd0\x92\xca\x63\x4b\xba\xfd\x03\x21\x8c\x3b\xdd\x72\xf2\xd4\xeb\x46\xeb\xde\xf0\x1b\xc4\x1d\xee\x16\x51\x49\x76\x95\x1e\x85\xc0\xaa\xfa\x07\x08\x5e\x9d\x80\xa3\xf0\xaa\xef\x81\x20\xa4\xbc\x3a\x2c\x69\x14\x1c\xca\xe2\x81\x51\x48\xa6\x89\x48\x88\x5b\xfd\x06\x55\x71\x1e\x19\x3c\xca\xec\x64\x39\x2a\xf5\x3f\xa6\x82\x96\xd9\x4d\x2a\xec\x51\x49\xa6\x9f\x79\x99\xf7\xc0\x58\xa8\xb6\x7f\xde\xc0\x0a\x49\x2b\x39\x2a\xcf\x2c\xf7\xd1\x78\xaf\x96\xfc\x1f\x8d\xcc\xab\xa3\x78\x34\xec\x3f\xc9\xa9\x41\xeb\xeb\xf4\xd0\x61\x7d\x2d\xf6\xa8\x1d\xe9\x47\xee\x91\x11\xa7\x86\xbf\xa0\xce\xe1\xf3\x03\x35\x86\xa6\x33\x15\x99\xe6\x56\x00\xd1\xcf\xc0\x88\x2d\x3f\x2b\x04\xb7\x32\x1f\x22\xa3\x73\x09\x75\x4e\x8d\x3e\xe0\xc8\xe6\x17\x70\x88\x84\x1b\xc8\x05\x53\x17\x50\x53\xc6\xa7\x81\xdc\xf7\x9a\x99\x2c\x3e\xab\xcb\xfe\x18\xb9\x1e\x6a\x93\xd0\x2d\xfc\x05\x9a\x94\xfa\x67\x0c\xf2\x84\xb9\x86\x91\x4f\x5b\xf8\x07\xea\x56\xbc\x60\x50\x23\xda\xb3\x67\xa4\x1a\xd1\x33\x83\x9c\x39\xf6\xab\x19\x41\x11\xe8\xd5\x20\xf6\x12\xbc\x1b\xc4\x5a\x3a\xfb\x46\x20\xa9\xef\x72\x8f\xc8\xe4\xd5\xdc\x01\x07\xe1\xff\xe1\x1e\xe2\xb5\x0b\x24\x60\x97\x01\x61\x4c\x52\xac\xef\x27\x5d\xfe\xa5\x03\x19\x13\x36\x30\x8f\x00\x95\x42\xec\xb2\x30\x26\xb3\x79\xa8\x83\x44\x6e\xd5\x2f\xb0\x24\xa4\x46\x84\x1c\xdc\x0e\xad\x1b\x93\x23\x74\x03\xd8\x15\x1f\x02\x70\x06\xe9\xda\x31\x68\x0d\xf6\x8c\x21\xed\xa2\xb2\x5c\xc4\x58\xc9\x5b\x9a\x02\x38\x91\xc5\xfa\xd3\xb5\x68\x2c\x84\x4f\x99\x8d\x16\xa2\x0f\x3e\xbd\x51\xb5\xfc\x21\x87\xb6\x0c\x91\xbf\x78\x05\x11\xfe\x19\xf4\x69\x57\x15\xfa\x18\xa9\xdc\x94\xb2\x79\xec\x30\xc1\x84\xbf\xa0\x4f\xb9\x6e\x2d\x63\xa7\x10\xfd\xbc\x81\x55\xf4\xf9\xb1\x53\x74\x9b\x77\x0f\x2c\xab\xd9\x04\x85\x63\x55\xf8\x30\xc6\x41\xed\xa8\x67\xed\x40\x4d\x56\x9f\x59\x47\x76\x29\x1a\x0e\x28\x97\xbd\xe1\x4e\xde\xa4\x84\x78\x06\x40\x98\xcd\xce\x83\x8e\xee\x9e\x87\x93\xfb\xcf\x83\x38\x51\x42\x46\x00\x7b\x9c\x2c\x68\x20\xd6\x3c\x29\x88\xbc\x59\x10\xc9\x55\x2c\x14\x98\x3e\xc7\x5e\xbd\x83\xa5\x45\xa6\x89\x06\x2a\xb3\xe5\x7b\x24\x2a\xf3\x49\x71\x91\x68\x3f\x53\x6a\x78\x7f\x5c\x03\x2f\x88\x86\x17\x74\xd5\x4d\x96\x85\x71\x11\xf4\x7b\x5e\xa0\xa6\xb4\xcb\xc5\xb8\x50\xcb\xc3\x82\x0b\x90\xca\x16\xe2\x71\xc1\x99\xd5\xec\x7e\x53\xe6\x7b\x47\xbf\x98\xab\xdb\x58\x3b\x6e\xc6\x2b\x88\x82\x1b\xb7\x6e\x0b\x78\xd8\x83\x6d\x8b\x1d\x77\x2e\xb5\x5f\x08\xbc\x20\x7e\xbc\x79\x3a\x5a\xc6\x20\x43\xa2\xed\x9a\xe3\xa6\x3e\xd0\x13\x7f\xe7\x3c\x6b\xd0\x2f\x0c\xab\xaa\x7e\x16\x83\x29\x11\x1d\xf6\x33\x1e\x8a\x15\x33\xe0\x83\x13\x41\x0a\x97\x81\xa4\x40\x9f\x93\xee\xa1\xca\x47\x50\x74\xc0\x73\xee\xc3\xc1\x4f\x4e\xbc\x86\x05\xf7\x7b\xc7\x43\x8d\x27\x89\x14\xd5\xf0\x8c\xb3\xba\x24\x7e\x49\xe4\xd0\x0f\x1b\x40\xbf\x5f\x68\x68\xb1\xea\x39\x69\x9a\xfa\x01\x33\xf9\x69\x71\xe2\x79\xd3\x33\xe2\x84\xc2\x0d\xe4\xc6\x0e\xfd\x70\x30\xf6\x44\xcf\xf4\x46\xed\x7a\xa6\x82\x43\xb2\x23\x12\x92\x49\x47\x19\x1b\x81\xa2\x04\x78\x6c\xd4\xe6\x4b\xd5\x1a\x1b\x2f\xe3\xd3\x6d\x70\xa2\xdc\x04\xaf\xa5\xda\xfb\x01\xb5\xa5\x57\x33\xa0\xb6\x34\xf4\x09\xe4\x00\xb2\x23\x7b\xa4\xeb\x9d\x36\x45\x14\x4e\x9c\x3f\x20\xf2\xd1\x51\x1b\xf0\xac\xb3\x85\x38\x0a\x2f\x1e\xd3\x2d\xd0\xb0\xa2\x6d\x14\x85\xe7\xbb\x24\x5c\xb0\xf8\xeb\x34\x15\x95\x72\x5f\x3b\x29\x2a\xed\x88\xe2\x90\xa8\x64\x19\x1d\xcf\x91\x5a\x41\x7f\x41\x1c\xa3\x99\x82\x4b\x7f\xb1\xc3\x72\x54\xae\x87\x59\x04\x08\xcd\x46\xa6\x68\x5c\x1f\xe1\xf6\x48\xb8\xa5\x03\x3d\x58\xde\xf5\x4f\xe9\x51\x23\x50\x2a\xce\x06\xe2\x48\x28\xa6\xad\x1a\x2d\xa7\x45\xfd\xf5\x24\x40\x8b\xd7\xb9\xbb\x25\xd1\x02\x4a\x37\xdb\x98\x03\x4a\x37\x1b\x4f\xa3\xe7\xbe\xf1\x0f\x39\x68\xfd\x00\x25\xda\x90\x44\x8a\x51\xfe\xfd\x27\xa6\x99\x74\x54\xf8\xa6\x6b\x31\x07\x6f\x37\xe6\x40\x04\xe0\x59\x89\x16\x83\xc5\xc4\x44\x52\x3a\xe3\x99\x1d\xe0\x8c\x67\xa3\x76\x0c\x96\x98\x30\x4b\x0e\x0e\xc2\xcf\xbc\xec\x98\x19\x82\x62\xb5\xfb\x87\xc2\x61\xfa\x07\xf0\xa4\xae\x1d\xc1\xaa\x6a\x4e\xf8\x10\x41\x78\x2e\x11\x14\xcc\xc2\x63\xe7\xf1\x80\xcd\x77\x16\x37\xf9\xe0\x59\xc3\x80\x0d\x38\x9c\x5f\x21\xd2\xa9\x5e\x68\x22\x00\x7e\x6c\xb0\x0d\x80\x9f\xa9\x7b\x4a\x20\x01\x8e\x8d\xb1\xc1\x8a\x21\x36\xcd\x05\x1d\xdf\xec\x73\x1a\x8b\x56\x8d\xe5\x37\x28\x0f\xa4\xef\x8f\xc5\x3e\x34\x77\x8c\x31\x57\xf5\xd4\x08\x14\x6c\xb5\x39\x37\xa8\xa6\x2a\x9e\x19\xa8\xa5\x66\xf1\xb8\x76\xa4\xb6\xf0\xb0\x76\x2e\xa8\x99\x10\xb6\xd6\xe6\xdb\x53\xec\x59\x69\xd9\x4d\x20\x20\xf6\x43\xc4\x85\x9b\x8e\xff\xa7\x84\x18\x6e\x92\x5b\x41\xe7\x5c\x1c\x24\x5b\x5d\x1c\x44\x2c\x66\x9a\x03\x7c\x6a\x31\x75\x10\xba\x9a\xa8\x03\x87\xbf\xa0\x6c\x64\xbe\x1b\x73\xc0\x41\x9e\xd1\x02\xc3\x6f\xce\x36\xcb\x38\xb8\x75\x2c\xf0\x51\x4c\xdf\x06\xde\x38\x79\xd9\xb5\xc8\x41\xde\x69\xdb\x30\x23\x1d\xef\x2d\xce\x09\x69\x84\x79\xe2\xa2\x4a\xc6\xcb\x79\x51\x02\x08\x91\xc6\x95\xc3\xf2\x1b\xec\x43\xe3\x26\x86\xb1\x7a\x36\x50\x37\xd6\xda\xd9\x80\xe2\xc8\x37\xa5\x00\xa6\xb1\xaa\x34\xee\xe4\x6b\x11\x05\xb5\xd0\x67\xea\xa1\x16\x9a\x3e\x38\xef\x64\x18\x91\x70\xb3\xac\x9d\x3f\xa0\xec\xb6\xd8\x7c\x41\x4b\x75\x5a\x8a\x60\x06\x9c\xe1\xff\x77\xb6\xe8\x16\x4e\xfe\x60\x22\x99\xf8\xc0\xcf\x60\x7b\x9f\xa4\xd0\x1c\xd9\xf8\x10\x0f\xd5\x3a\x96\xb5\xac\x97\xef\xb0\xb4\x40\x1e\x67\x3b\x8d\x44\xba\xc1\x59\x18\x3f\x34\x07\x0b\xf2\x06\x2c\xab\xb3\x08\x5a\x05\x74\x49\xbe\x18\x4f\x54\xa2\xb5\x1b\xdc\x44\x89\xb5\x59\x36\xbf\x90\x13\x33\xf4\xc3\xe2\x1b\x9b\x7e\x60\x93\x7e\xbe\xf8\x42\xd1\x0f\xdc\x39\x42\xc9\x73\xe3\xc6\xf8\xdb\x99\x34\x51\x6f\xc3\xea\xb1\x89\x08\x7e\x6f\xdc\x09\xbb\xea\x26\x0b\xc8\xdc\x92\x40\x8d\x69\xe3\xa9\x2a\x58\x34\x0b\x36\xaa\x4e\xd9\x59\x60\x4c\x0e\x3f\x53\x54\xeb\xfc\x98\xa9\x22\xfa\xbc\x81\x8a\x2c\xa6\x09\x46\x4f\x5b\xb4\x27\x7d\xfd\x75\x17\x99\xf4\xd4\x57\x49\x8f\x98\x95\x8b\x2d\x89\x35\x51\x79\xd6\x0e\x8a\xb3\x22\x86\x5c\xa2\x7d\xa6\x76\x47\x77\xb4\x09\x3f\xfb\xe5\x18\xc4\x09\x70\x61\x1d\xdf\xac\x0f\x13\xc4\xfc\xf7\x0c\x55\x4d\xf8\x22\x3c\x53\x55\x23\xbc\x32\x1b\x8e\xc9\xee\x17\x82\x54\xfb\x85\xe4\x2f\xbf\x41\x28\xa7\xa3\x78\x36\xdc\x4e\x3f\x4d\xb2\x96\xa2\x24\xd4\xec\x74\x20\x94\x41\x6a\x26\x80\x10\x98\x9b\xc0\x03\xcb\xc1\x94\x13\x56\x38\x95\xec\x8b\xd9\x93\x9f\x34\x37\x83\xcb\x63\x96\x18\x08\xc5\x30\x99\x83\x2e\x28\xcb\x2f\x70\xf7\x6e\x7e\x03\xf9\xac\x86\x5f\x80\x8d\x40\x9b\x79\x42\x15\x13\xdf\x1f\x70\x68\x99\xa8\x40\x0d\x9f\xcf\x33\x20\xa9\xb4\x8e\x33\xe0\xc5\xe8\x89\x82\xde\xc4\xca\xba\x89\x0c\x33\xcb\xf9\x60\xe6\xa4\x9c\xd5\x7a\x23\x1f\x9e\x15\x86\x13\x6e\xef\xf6\x3e\x9e\x33\x87\xa4\x1e\x27\x7b\xd0\x90\x18\x1e\x67\x8e\xe2\x51\x2f\xcd\xe9\x9c\x54\x24\x78\x08\xef\xd9\x5f\x9b\xb7\x09\xb2\x0f\x97\xea\x67\x0a\x55\xc1\xd9\x09\x0b\x95\x6d\x3f\x73\x05\xb2\x2b\x8b\x22\xa6\x9f\x31\x90\x9b\x30\x58\x59\x79\x38\x17\x45\x47\xf1\x0f\x54\xde\x5a\x3e\x25\x56\x10\x42\x9d\x7b\x0a\x49\xad\x24\x4c\x58\xd6\xba\xcd\xc4\x0a\x66\xb8\x9d\x31\xac\xea\x63\x27\x53\x4b\xee\xce\x17\x2b\x14\x7b\x1b\xcd\x9d\x54\xfa\x99\x4c\xff\x79\x01\x61\x5a\xce\x69\x34\x91\xd3\xc6\x5a\xb8\x79\xe4\x79\xa5\x99\x38\x92\x6a\x4d\xfe\xc1\x5d\x60\x31\x8b\x2c\x01\x6b\x7c\x3e\xc1\xe6\x14\xfc\x98\xf0\xcc\xb2\x02\x65\xd2\x31\x4b\x85\x2b\x63\xa2\xf2\xaa\xef\xcc\x93\x8e\x5a\xf6\xc2\x9f\xc8\x1c\x60\xe5\xc5\x3c\x92\x01\xd4\x25\x55\x2e\x66\x39\xd4\xb0\xf0\x05\x77\x22\x8a\x4f\x05\x49\x62\x9e\xb4\xbf\x4f\x7f\x90\xfb\x4e\x44\x9f\x79\xf2\xfb\x0d\xcc\xad\x05\x2b\x72\xe5\xd8\x53\x63\xa6\x86\x45\x20\x6b\x9e\xc9\x11\x9a\x28\x24\x1b\x50\xe1\x8c\x98\x28\x5a\x6f\x05\xe7\x4c\x78\xe2\x8d\x72\x71\x66\xbd\x5a\xf0\x15\x9b\xf1\x27\x9f\xba\x79\xf1\x80\xd4\xd5\x60\x5e\xbc\xa4\x5b\x30\x13\xcc\x78\xa7\xa7\x1f\x99\x85\xcf\xc5\x79\x36\x53\xa7\x5d\x4a\xa8\x6d\xde\x34\xfa\xeb\x7a\x31\xa9\x42\xb1\x40\x43\x55\x7b\x5b\xa3\x67\xba\x79\x79\xa2\x6f\x2e\xbe\x1b\x80\xb3\x85\x40\xdb\x7c\x70\xc4\x29\x35\x6f\xcc\x87\x32\xd4\x13\xfd\x70\x56\xfc\x45\x8e\x53\x34\xa0\xc4\x6b\x53\xda\xbe\x98\x0c\x1d\xb4\x2f\xf8\x44\x8a\xa0\x69\xc9\x0e\x9f\xf8\xe9\x8b\xda\x7c\x72\x26\xfe\x1b\xc7\x62\x09\x30\x3b\x7e\xad\x54\x91\x34\x3d\x27\x15\x53\x3f\x60\x66\x74\x25\x5a\xb4\x3a\x8d\x4f\x0b\xb4\xc3\xab\x0b\x64\x39\x9e\x45\xe7\xe2\x42\x9a\x3c\xe3\x89\x45\xbc\xa1\x0b\xcd\x42\x86\x20\x4b\xfa\xb5\xe5\x5c\x2f\xfd\xc0\x9d\x57\xfd\xc5\xc9\x51\xb8\x49\x9c\x58\x76\xab\x5e\xcc\x61\xe0\x70\xe9\x55\x7e\x7c\x43\x6d\xd0\xe8\xe4\x58\xd0\x55\x28\xff\x45\x06\x4d\x4a\x76\xe7\x5d\x05\x7c\x27\x4d\xc0\x42\xb9\x06\x83\xc3\x05\xa7\x29\xc3\xcb\x05\x2f\xf9\x62\x77\xdf\x55\x78\xc6\x09\x38\xad\x17\xa4\x4c\xab\x59\x16\xc3\x07\x97\xbf\xa0\x9f\xbc\x5d\xbb\x16\xa2\x03\xcb\xf6\xf3\x0f\x98\x2c\x1d\x73\xab\x26\x8f\x88\xaa\x8a\xf0\x52\xa1\xb7\x85\xe0\xc0\xa6\x84\xbc\xb1\x2a\x73\xdb\x68\x98\x35\xa7\x4e\x2d\x34\xa0\x39\x49\xce\xd5\xb6\x7f\xff\x09\xfb\xde\x2f\xa4\x3d\x58\x8e\xfa\x5e\xc4\x3d\xf6\x41\x5e\xd0\x99\x34\xa5\xdb\x8d\x05\xdf\xfa\xf8\x7d\xfa\x88\xb7\x4d\x49\xc2\x05\x57\x2a\x23\xf3\xd5\xb0\x18\xc5\xef\xf3\x30\xd6\xbd\x79\x21\x37\x52\xb1\x9b\xf3\x42\xba\xe4\x62\xaf\xe6\xd5\x5f\x39\x66\x6d\xf5\xea\x1b\x5f\xd0\x38\x3a\x0e\x36\x89\x91\xc5\xc2\xb4\x0e\x56\x5f\x70\xcd\x37\x42\x5c\x88\x5a\xb4\xbd\x75\x75\x6e\x15\x3f\x4f\x12\xa9\xc5\xa2\xa6\x66\x99\x84\x0b\x41\x8c\x1a\x35\x80\x97\x4d\x33\x0b\x9e\xf8\xd3\xff\x0f\xae\x84\x08\x82\xaf\x93\x43\x35\xd7\xe8\xd8\xcc\x9a\xa5\x41\x7c\x59\xfd\x02\x6a\x64\x7a\xad\x47\xf2\xb8\x7b\x38\x38\x66\x8d\x61\x30\x51\x9f\x5e\xa0\x33\x52\xd1\xad\x6b\xc1\x97\xc8\xea\xca\x05\xdf\xa1\xb0\x6b\xdf\x0a\x0e\x5a\x2b\xc5\x5a\xf6\x76\xc2\x5e\x91\x12\xc5\x7d\x70\x37\x5b\xc4\x50\xed\x22\xe1\xbb\x60\xe3\x72\x12\xca\xc5\x72\xf8\xcd\xff\xa3\xe2\xbe\x8e\xa8\x05\x13\x96\x7d\x39\xd6\x24\x49\x7f\xa9\xf1\x1a\x8b\x69\x8f\x97\xe9\x45\xe2\x25\x17\xf8\x8f\x05\xe0\xa7\x92\xef\xb1\x26\x92\x47\x9b\x4f\x5e\xe0\x57\x6d\x82\x5a\x8b\x9c\x67\x39\x80\xf0\xc7\x4f\x3a\xc4\xb5\x80\xaf\x2d\x32\x57\x0a\x2b\x2d\x0b\x94\x40\x6d\x79\x8a\xe8\xd5\xbf\x4c\x14\xed\x5e\x96\x46\x2b\xa9\x16\x73\xc0\x57\xc9\xe7\xfc\xa2\x15\xab\x48\x95\xb1\xe8\x70\xef\x16\xe0\x6f\xef\x43\x74\x11\xd7\xd9\xd3\x79\xed\xbc\x18\x0a\x9f\x2e\x02\x3b\x0b\xf2\x9d\xdc\x55\xfc\xc2\x8b\x90\x7c\x48\xae\x9d\x9b\xd6\x5b\xee\x05\x76\xe1\xbc\x44\xeb\x40\xce\x73\x6f\x39\x78\x37\xf9\x88\x5c\x07\xc1\x68\xf3\x0f\x39\x2f\x9a\xeb\x23\x97\x53\xc3\x62\xc1\x7c\x29\x4f\x16\x54\x3c\x2a\xe8\x1f\x0b\xe5\xf2\x8b\x60\xfd\x42\x25\x0a\x55\xa2\x8b\x45\x10\x27\x75\xeb\x3a\xb9\x43\x74\x23\x5b\x74\x56\x72\xbe\x88\x75\x72\x5b\x9a\x1f\x59\x8b\xec\x23\xa4\x91\x22\xca\x21\xb8\x8b\x85\x26\x9c\x49\x76\xc1\x52\xe6\x84\x11\xeb\xcc\x89\xd3\xc4\x40\x8b\xf4\xa1\xf2\xa2\x67\xbc\x46\x71\xe5\xc9\xe2\x1f\x3a\xba\x54\x8b\x74\xe8\x2f\xd2\x19\x2d\x96\xcd\x77\x97\x57\xd2\xe4\x17\x78\xde\x7d\x9a\xe4\x79\xe7\xe5\xbe\xe8\xa2\xa7\x17\x68\x1a\xb3\xbb\xf4\x82\x69\x6c\x59\x24\xa3\x7a\x58\xb1\x33\xf4\xba\xb9\xde\x6e\xa1\x21\xff\x8d\x66\xf2\xe6\xf9\xa8\xeb\xcb\x42\xf0\xa4\x2d\x00\x0b\x40\xef\x73\xfa\xc1\x21\xc9\xb1\x6e\x0b\x6a\xa7\x35\x3e\x0d\x1c\x1c\x84\x49\x38\xd1\x82\x5b\xe4\xe5\xc4\x5f\xa0\x92\x6b\xb3\x44\x7c\xb8\xdd\x75\x71\x58\xd4\x22\xa9\x5a\x57\x2c\x00\x3b\xdb\xeb\x16\xdd\xf3\x37\x1d\x77\x3b\x60\x9b\x6f\xec\x3b\x53\x40\x38\xbf\xc7\x0e\x07\xa4\xe6\x34\xbb\x3b\xf4\x4c\xd5\x00\x75\x47\x29\xd7\x62\x5f\xf6\x1d\xb6\x2d\x8b\xb5\x1d\x7a\xa7\xe6\xc4\xbc\x3b\x13\x24\x17\xdd\x90\x77\xd4\x7a\x35\xce\xde\x13\x0a\x6a\x1c\x3b\x1c\x90\x2c\x94\x76\x40\x43\x87\x01\xee\x2c\xf5\xea\xb4\xbc\xfb\xd6\x50\xca\xc9\xcf\x94\x73\xba\x74\xed\x5b\x20\xa5\xb2\x9f\x91\xb1\x41\x9b\x73\x4f\x68\xd8\xfd\x03\xea\xef\x4c\x3f\xe3\x3a\xe3\x3c\xbf\x3b\xbc\x93\xbc\x93\xf6\xc2\xb3\x44\x63\x28\xb9\x5a\x22\xba\xe4\xc4\x69\x5e\x0a\x0f\x30\x49\x84\x9d\xbe\x46\xce\xe2\xbb\xc3\xd8\x55\xab\x9f\xb9\x3b\x05\x89\x77\x96\xaf\xb0\x2f\xea\x8e\xf2\x15\xef\xf2\xfd\xe1\x44\xda\xe1\xba\x54\x24\x1d\xf6\x0a\x9e\xf6\x10\x2b\x71\x47\x77\xeb\x5c\x5a\xb1\xe8\x5e\x93\xcb\xc5\x0c\xf0\x5c\xfa\xac\x3d\x0c\x67\x75\xb8\x0b\x2a\x0e\xfc\x3f\x04\xb7\x17\x92\xba\x30\x6d\xdc\x1d\x66\x34\x5b\x20\x77\xb8\x35\x39\xcb\xc5\x8e\xaa\x5f\x9f\x19\x6b\x29\x23\x35\xeb\x09\x19\xcd\xe1\x8d\x26\x25\x51\x94\xba\x33\x29\xd3\x76\xea\xce\xec\xa3\xbc\xc3\xfb\xfe\xdb\xc2\xc9\x26\xdd\x04\xbc\xcf\xc3\x7d\x22\x43\xb0\xf4\x10\x7b\xea\xd6\x44\x34\x1c\xe8\xed\x81\xbc\x77\x0a\x1b\xe1\xbb\xbd\x53\x66\xea\x2e\xb4\x77\xae\x8c\xa6\xa1\xf3\x84\xec\x6e\x92\x7a\x4b\x89\xc4\xbd\x27\x2f\x89\x88\x4e\x85\x8c\x10\xfe\x3e\x30\xb5\xd5\x1b\x77\xd0\x1d\x5c\x9d\x8e\x24\x4b\x4d\x24\x0c\x94\x1a\x68\x1f\x9c\x19\x0d\x24\xb5\x75\x42\x30\x3b\x03\x30\xbd\xab\x46\x52\xa5\x3e\xe0\x17\xe5\xb4\xb0\x7b\xb0\xb2\x88\x5a\x0c\x6e\x64\x6f\x54\xa4\x88\x76\x7c\xe6\x1e\x3c\x97\x3f\x2d\x90\x26\x4d\x04\xad\x75\xe1\x06\x20\x5b\xbc\x85\x12\x24\x7a\x35\x5e\x90\xe8\x7a\x2e\xb1\xcf\xdc\x63\xea\x61\x22\x29\xbf\x90\xeb\x3e\x79\x50\x9b\x26\x94\xcc\x70\xa4\xd6\x8e\x8a\x19\x9b\x0c\x0a\x3b\x72\x76\x86\xf3\xe9\xee\xf0\x84\x5a\xc3\x44\xc3\xf5\xc9\x39\x5e\xf7\xd4\x19\x9a\xa5\x26\x65\x87\x89\x58\xbc\x2d\x0b\xf3\xef\x09\x0e\xcd\x75\x28\x4b\xeb\x30\xe4\x1d\x60\x31\x96\x5b\xe0\xd6\xf1\xcc\x20\xad\xa7\x53\xba\xee\x70\x97\x72\xfe\xd5\x7d\x81\x29\x75\xf1\xdd\x17\x89\xd6\x34\xac\x9c\x59\x8d\x8a\xd5\x30\x74\x3c\xed\x8c\xee\xfc\xac\x15\x83\x37\x3f\x8b\xb3\x63\x31\xbd\x36\x3b\x73\x97\x6a\x4c\x4c\xd2\xe5\x50\xad\x1d\x49\xb9\x1c\xc4\xbe\x23\x27\x97\x81\xe1\x0e\xd3\x9f\x93\x80\xee\x47\xf6\xa8\x99\x46\xa4\xe5\x1a\x9f\x1f\x38\x6a\xd1\xc8\xc8\x4b\xa7\x24\xdf\xa1\xdf\xf3\xfd\x7f\xa7\x83\xd4\xf8\xfc\x40\x6d\x4a\xb8\x49\x1c\x1d\x02\x76\xfb\x49\x22\xfc\xdc\xf0\xbf\xde\x87\x3a\x4f\x95\x0c\x63\x3f\x09\xda\x3d\xd3\xb0\x0d\x3a\x40\x78\x3f\x99\x36\x5d\x17\xb8\xfd\xe4\xfd\xec\xd3\xc4\x8e\x2f\xfc\x02\xd4\xea\xde\xa8\xcc\xe2\x65\x97\xaa\x1d\xd6\x45\x27\x8c\xdc\xcf\xc4\x64\x6e\x81\x83\xd2\x4a\x5c\xb0\xd5\xcc\x3f\xdd\x8d\xf6\x17\x55\x36\x07\xd8\xed\x28\x4e\xb6\x3e\xcf\x9c\x01\x2d\x1b\x55\x75\x8e\x2d\xd8\x2f\x1c\xd7\x5e\x77\xe4\xd9\x76\xae\x99\xfd\x45\x8c\x61\xcf\xba\xfd\x26\xb6\x12\xb5\x37\x2b\xaf\xaa\xbd\x17\xff\x55\x9b\x1d\x76\x14\x93\x75\xa6\xfa\xfd\x46\xc6\x86\xe9\xff\x79\x54\x4a\x3f\xba\xdf\x39\xe3\xa2\x00\x9a\xbf\xcf\xc9\x78\xf3\x5e\xe5\x67\x62\x35\x81\xf9\xfd\xe6\x10\xdc\x05\x8a\x6f\x98\x75\xe1\xbf\xee\xac\x7a\x7b\xc2\x43\x73\xc1\xc3\x3b\x8c\xa1\xdb\x43\x87\x2f\xf5\xf0\x20\x38\xce\x47\xe1\x43\x0c\xab\x49\x40\x2a\xf1\x0f\xdf\x3e\x39\xeb\x6e\x30\x21\xab\x68\x64\x32\x0d\x67\xf3\xda\x11\x0f\xea\x14\x4e\xc7\x0b\x38\xbb\xf3\xf8\x1d\xf0\xa4\x72\x97\xc7\x0f\xf3\x3c\xfc\x4c\xdd\xa5\x84\xce\xf1\x23\x6b\xeb\x40\x38\x90\xa3\xcc\xb9\x32\x0e\x78\xb7\x5b\x7c\x1f\x28\xb6\xe1\xbc\x7e\xc7\x46\x45\xa5\x28\x40\xc6\xb2\x70\xec\xcd\x01\xb3\x65\xb3\xd0\x39\x90\x91\xcc\xba\x8d\x03\x5e\x50\xe6\xb5\x63\x23\x2a\xd3\xde\x38\x98\x69\x5c\x8a\xad\x83\x56\x49\x47\x4f\x1c\xe5\x3d\x59\x9d\x41\xf6\x28\x4c\x32\xea\xe7\x1c\xb5\x3f\x80\x68\x1d\x7e\x4e\xee\x72\x17\x3c\x20\xa4\x5e\x3d\x0a\xaf\xc8\x92\x11\x07\x8b\xc0\x7a\xdc\x25\xd7\x4e\x3f\x54\x5e\xa2\xb4\xe9\x8e\xd4\x22\x56\xbf\x81\x5d\xa9\xd3\xfd\xa8\xd4\xcf\xc9\x48\x7d\x54\x6c\x53\x9d\x41\x47\xe5\x6a\xba\x01\xa4\xa1\xd2\x2e\x3a\x6a\xde\x89\xdc\x25\xe1\xa1\x94\xd9\x07\xfd\xda\x8b\x36\xda\x01\xd3\xa7\xef\x59\x07\xe0\xdc\x67\x39\x5b\x4e\x9d\x5b\x98\xb0\xf7\xb9\x01\x54\x0d\xd0\xce\x3f\xe0\xb3\xee\x58\x98\x03\xb9\xd0\x9d\xcb\xe9\x40\xec\xa4\x73\x8e\x1d\x74\x61\xb7\x34\x3e\x1a\xd2\x3e\x4a\x74\x1c\x1d\xfb\x52\x77\x91\x03\xfa\xc1\x4f\x03\x70\x79\xb7\x37\xda\xc1\x4c\xaa\x9b\x39\x16\xd1\x92\x76\x79\x3b\xe8\x13\x5f\x3e\x3f\xc0\x88\xed\x69\xef\x20\x51\xfb\xfa\x60\xde\x73\x1f\x20\xc7\xa0\x24\x90\xc2\xf0\x18\x9c\x45\x4d\x42\x06\x2f\x2e\x7f\x81\x13\xc5\xeb\x30\x88\xfc\xcd\xa2\x63\xe7\xda\xbb\x53\xcc\xdb\xf4\x0b\x84\x7a\xcd\x2f\x60\xdb\x4c\x3f\x03\x0d\xd8\xee\x7d\xd0\xf1\xca\xc7\xd8\x11\x2c\xf5\xec\x7d\x12\x94\x16\x9a\x88\xc8\x48\x6d\x2d\x1e\x73\xa7\x3a\x00\xf9\x08\x9e\xd6\x7f\x4b\x0e\x74\x40\xc5\xe8\xb0\xd2\x83\xb9\x51\x7d\x8e\x1e\x33\x39\x5e\x24\x4e\x86\x27\xf8\x85\xc0\x7d\xc7\xcf\xdc\xa8\x66\x79\xf8\x71\xd9\x4b\xfc\x98\x58\x3b\xb3\xe3\x24\x68\x92\xd8\x3f\x90\x8d\xdd\xfe\xd8\x47\x02\x3d\xd9\x7f\x8e\xc5\x6d\xda\xfc\x03\x64\xac\xd7\x12\xe9\xda\xab\x19\x72\xa1\x5e\xa9\x25\x28\xca\x91\x94\x4d\x27\xc9\xc1\x14\x68\x1e\x35\x81\xdd\xe7\x19\xa8\x4c\x6a\xd4\x03\xd6\x61\x47\x06\x1c\xcc\xe6\x6e\x7d\xf2\xb1\xc8\x1b\x5a\xb7\xc5\x41\xbb\x01\x38\x23\x7c\x1a\xc0\x98\xbd\x67\x77\x42\x70\x8b\xe4\x3d\xb3\x1b\xe9\x99\x57\x15\x9f\x2b\x48\x9f\xf6\x91\x02\x3b\x55\x0c\x96\xa8\x3b\x13\xed\x8b\x04\x38\x89\x35\x03\x9c\xe3\xc8\x3e\xd5\x24\xf3\xc5\x9b\xc1\x69\x09\x76\xcc\xd3\x01\x57\x7a\x67\x3b\x39\x0e\xee\xdb\xe5\x16\x38\xd1\x3e\xab\x0e\x54\xe9\xb1\x30\x3b\x88\xba\x3e\x4d\x50\x15\xe6\xb5\x82\xd2\xd0\x47\xf8\x71\xe2\xbe\xef\x99\x3e\x49\x94\xee\x22\xc7\xc9\xd0\x6b\x8d\x9b\xe9\xd5\x9c\xf6\xfe\x78\xc1\xe4\xf8\x7d\x9e\x03\x13\x23\x12\x4e\x5e\x87\xcd\xd2\xc0\x92\x1f\xf9\xc6\x32\x2a\x2e\x6a\x70\x9c\x64\x71\x7f\x80\xd5\x5f\x26\x81\x1c\xad\x69\x81\x0a\x71\x56\xe9\x21\x0e\xaa\x0c\x9d\x0a\xff\xb8\x28\xd4\x7d\x80\x5e\x29\x8e\xdc\x46\x12\xa1\x89\x48\x84\x68\xd1\x70\x61\xc1\x4d\x05\x75\x86\xe6\x49\x78\xcb\xdb\xda\x78\xbc\x08\x70\xd8\x09\xe7\xb8\x39\x4f\xa2\xe9\xa6\x8f\x84\x59\xec\x45\x7c\xc3\x2e\x9c\xc7\x9d\x24\xb9\xc7\x0b\xd6\x04\xf5\x00\x3f\xb2\x59\xa5\xec\x38\x1e\x6a\xe3\x7c\xb4\x3c\xf5\x6d\x52\x7a\xb0\xe3\x01\x0d\x96\x36\x4f\xe0\x59\x5d\x3e\xa4\xc9\xfb\xe2\x21\xdb\x5b\x6c\x27\x40\x93\x54\x3e\x7f\x3f\x50\x3d\xf5\xbc\x51\x2a\x6f\xfa\x81\x1c\x15\xfe\xa1\x92\xec\xa5\x1f\x28\x14\x75\xc2\x9d\xb4\xfd\xfa\x44\x3b\x7f\xa0\xf3\xf3\x05\xbd\x0b\x24\xe9\xcf\x1f\x95\xe9\xcd\x6f\x10\x0d\x87\xdf\xb8\x30\x54\x3f\xe3\x52\x65\xed\xc5\xf9\xe3\x06\xd6\xa9\x78\xbe\x40\x6f\xd8\x01\xf6\x7c\x81\x5e\x73\x42\xbd\x73\xe3\xe4\xfa\xb9\xe1\x7d\xf5\xb0\x71\x72\xfd\x3d\x45\xb9\x76\xeb\xb9\x91\xc5\x74\xa9\x38\x59\x56\x4d\x1c\x71\xbe\xc0\x70\x58\x35\x7e\x12\x17\xae\xfe\xa7\x80\xa3\x33\x33\xb8\x69\x56\x0b\xe9\x55\x6f\x85\x32\x4f\x87\xf8\x59\x78\x2d\xec\xfe\x82\x23\xf0\x0b\xc9\x1e\x1a\xc1\x8b\x1a\x87\x33\x55\x9c\x2f\x68\x1c\x56\x51\x9f\x25\x57\xc1\x2f\xd0\xa6\x2b\x29\x79\x26\x46\x14\x0c\x38\x2b\x9d\xd7\x74\xfb\x3d\x13\x24\x4a\xa0\x9c\x35\xc9\xd4\x44\x57\x90\x29\xb5\xe3\x59\x61\x20\x18\xee\x03\x4b\x5f\xdc\xe2\xcd\x53\x5f\xc3\xa8\x2f\x02\xfb\x0c\xab\x81\xa7\x25\xf3\xce\x34\x2c\x37\xff\x80\xa9\x94\x02\xef\x6c\x14\x8a\xda\x68\x67\x23\x07\x4b\xd8\x9f\xb4\x13\xd7\xcd\x3f\x9c\x68\x42\xe3\x4e\x1d\xa0\x66\xaa\x61\xed\x75\x33\x3a\x3b\x69\xd2\xff\x3d\x27\x4e\x44\x77\xb0\x5f\xf1\x33\x97\x57\x78\xe9\xec\xd8\xfc\x9e\x58\x26\xdc\xaf\x66\xd0\x3e\xd1\x82\x26\xba\x53\x48\x76\xd3\x40\xcc\xa6\x73\xf7\xec\xb9\x89\xfc\x03\xa8\xf6\x1e\x19\x94\x0e\x9a\x38\xe4\xcf\x9f\x2e\x8f\x70\xd2\xa3\xcf\x58\xe1\x1c\x18\x86\xc5\xc7\x80\x18\xd5\x85\xf0\x1c\x14\xe5\xdd\x4d\x2e\x36\x29\x2a\x07\x66\x56\x17\x97\x73\xf0\xa2\xf2\xf9\x81\x08\x5c\x87\xfd\x49\x17\xbf\x6a\x46\x8f\xdc\x68\x9a\x0a\x26\x69\x73\xf0\xd5\xf9\x42\xcb\x6a\x67\xb4\x33\x48\xa6\x86\x91\xd6\xe7\xcf\x0f\x90\x50\x76\xdc\x39\x83\x7b\x63\xba\x53\xea\x7d\xcc\xd7\x41\x3e\xd5\x61\x7d\xd2\xbc\xec\x81\xcc\xc2\x3c\xe4\x5a\xd2\x09\xbe\x14\xcc\x39\x67\xb2\xa1\x46\xca\xda\xba\xce\xe9\x7a\x4e\x94\x1f\xf8\xbc\x80\x20\x33\x8f\x6b\xa2\x64\xc2\xa7\x87\x04\xdd\x7a\x61\x61\x85\x85\x8b\xce\x85\xb8\x61\x01\x8e\x33\xe3\x08\x3e\x2f\x74\xd4\x1e\x11\x8b\x00\x2c\x3a\x4a\xfb\x5c\xb8\x6f\x99\x02\x54\xaa\x73\xa2\x95\x73\xf1\x04\x32\x57\x42\x2b\x68\xc0\x7b\xee\x74\x2d\x12\xf0\x3a\x77\x08\x72\x0b\xc2\xbd\xe0\x59\x3d\xee\x64\x39\xbf\x8f\x82\xd7\xc2\x23\xe7\x4e\x38\x61\xb1\xb6\x33\x87\x83\xb8\x63\xc7\xc6\xf1\x99\xb8\x43\x0c\x36\xbf\x0f\x01\x64\xb9\xbe\xdf\xf8\x5f\x53\x72\xf0\xe6\xec\x06\x0f\x52\xac\x21\x1d\xa4\x58\xab\x76\x60\x9d\x7d\xfc\x1d\x80\x0e\x42\x33\xe7\x41\xb3\x8a\x37\xc9\xc1\xa3\x46\xd7\x86\x93\x79\x77\xad\xf6\x38\x0f\xd0\xe8\x03\x14\xa9\x31\x3e\xcc\xc8\x6c\x6f\xd6\xac\x9c\x27\x16\xbe\xff\xc9\x99\xee\x3c\x31\x00\x9f\x2c\x27\x21\x9b\xc5\xdb\x89\xfd\xd3\xdd\x7a\x32\xaa\x86\x04\x94\xb8\x3e\x1f\x5c\x6c\xc1\x2f\xc0\xfd\xcb\x73\x96\x96\x68\x33\xce\x45\x1a\x34\xa2\x74\x0f\xf4\x26\x67\x5a\x8c\x4d\x57\xa5\xf3\xa2\x9e\xdd\x0b\xf7\x02\xcb\xfa\x99\xc5\xc4\x95\xc3\x6d\x82\x13\x2c\x26\x12\x67\xfa\xa8\xb9\xb8\x32\x9e\xf7\x0b\xd2\xca\x1b\xf2\xe2\xb5\xd7\xa7\xd7\x75\x63\x87\x9a\x06\xd8\xae\x85\x7e\x4f\x96\xfc\x35\x36\xba\x39\x4c\x7d\x4f\x17\x43\x1b\x01\x4f\x04\x3c\xf8\xf2\x74\xa6\xa6\xd1\x62\xe6\x26\x98\x92\xb6\xe8\xbc\x21\xd5\xbd\x16\x0f\xbb\x50\x97\x0f\x36\x90\xc7\xf4\xf0\x38\xb4\xd0\x26\xee\x34\xef\xd0\xf0\xec\x03\xf6\x01\x8e\x90\x62\xe8\xcc\x68\x06\x77\x40\xad\xfc\x7f\x04\x5c\x69\x86\x6e\x7a\x06\x41\xc3\xcf\x84\x98\xd5\x3f\xa0\xe2\x98\x16\xf2\x42\x89\x42\x63\xb7\xeb\x47\x02\xab\x9e\x49\x50\xe8\x19\x45\x05\xc4\x7d\xd7\x0f\xc1\xef\x9b\xdb\x4f\x66\xd3\x0f\x1b\x9c\x55\x35\xa7\x17\x23\x21\x36\x5d\x6a\x2e\x16\x3a\x70\xf8\xee\xb5\x51\x89\x2f\x9c\x7c\x6d\x2c\x26\xef\x26\xb0\x45\x86\x3f\xa0\x70\x5f\xfe\x21\xe0\x40\xe7\x0f\xa0\xea\xdc\xdc\x20\x7d\xd7\x34\x8b\x88\xdf\xb4\x55\xfc\x82\x9e\xd2\x21\x63\xd7\x06\xd6\x1c\x26\x99\xac\xa9\xc3\xe0\xda\x78\xfc\x4b\xb6\x5f\x70\x6e\x74\x7a\x8c\x0b\x15\x12\x9d\x10\xf0\x42\x0e\x61\xe7\x54\xb9\x4a\x8e\x59\x24\x97\x1c\x93\x5b\x24\xe4\x10\xbb\x5f\x34\x7a\x8b\x35\xae\x17\x62\xd6\x0f\x91\xe9\xec\xb8\xfc\x02\x84\xad\xce\x9b\xeb\x85\xa0\xcd\x90\xe4\x82\xda\xd2\x9e\x1d\x57\xe5\x05\x46\xc7\xc3\x55\xc1\x5c\x5e\x97\xcc\x21\x27\x8a\x2a\xd6\xc5\x63\x80\x92\xd2\xd5\x78\x2f\xd6\x73\x9a\x7e\xe6\x9d\xca\xb3\x54\xb1\xbd\x3c\xad\xcc\x08\xe7\x50\x8a\x8b\x05\x9e\xac\x6c\xb8\x10\x0c\x5a\xb5\xc7\x2f\xd6\x77\xfa\xf9\xb9\x61\x1d\xdc\x00\x59\x47\x24\x37\xb0\xfb\xa7\x3d\x42\x41\x9d\x60\x57\x43\xf9\x65\xc9\xce\xab\xe1\x44\xd3\x9d\xfd\x82\x09\xdb\x21\x8d\x17\x4b\x2d\x8c\x4f\x8f\x9c\x75\xcd\x32\xe1\xac\x7c\x6d\x2f\xe6\x80\xd3\x01\x75\xd1\x09\xd2\xa1\x81\x57\x4f\xd6\xd0\xc2\x76\x3a\x92\x08\x52\x5f\xc4\xb3\x31\xfe\x72\x00\x5d\xcc\x18\xe7\xc8\xc2\x2b\xc1\xad\x2e\x5f\x57\x27\x42\x6f\x26\x09\x63\x9e\x26\x80\xce\xbe\xcd\x4d\xe4\x7e\xf0\x17\x00\x6c\xc2\xf8\xd7\x8b\x76\xab\x8d\xd5\x17\x12\x16\x3b\x98\xe8\x1a\x38\xc6\x3d\x22\x1a\xcc\x1d\xed\x78\xb1\x98\x84\xa7\x7d\xe4\x28\xb4\x4e\x03\xe7\x4d\xf8\x85\x1c\x84\x56\x7a\x60\x1d\xcc\x7c\x91\xbc\xa5\x2f\x02\xa5\xfa\xbd\xd2\x41\x6e\x57\x03\x01\x1a\xbd\x0c\x99\xd3\x4d\xac\x13\x03\x0a\x25\x4d\x63\x50\xb4\x5b\x36\x53\x83\x3a\xfd\x4c\x77\xad\x4f\x0f\xdc\xd1\x3f\x77\x01\x28\x22\x60\x7c\x51\x8b\xea\x32\x9b\xd7\x4c\x66\x51\xa7\x93\xf0\xdc\xf2\x7b\xf2\x16\xe9\x2d\x34\x69\x96\xf5\x11\xc1\xe4\x21\xd6\x53\x5d\x4c\x8a\x5c\xbb\xdb\x00\xa8\x32\xe1\x33\x79\x5c\x74\x4e\xf2\xb4\xa8\x58\x8c\xf5\xb0\x84\x5e\x5c\x5f\xb5\x48\x45\xa9\x23\x07\x2f\xe6\x44\xb6\x77\xdc\xb5\xf2\x32\xa3\xe7\x57\x76\x38\x82\xf6\x5a\xe4\x49\xcd\x1d\x9c\x29\x9d\x1a\xe3\x62\x5c\xcd\x47\x32\x24\x5a\xb6\x90\x7f\xd1\xf2\xb0\xfb\xf9\xb5\xc3\xf5\xdb\x07\x17\xc1\xb1\x05\xf0\x8e\x31\x98\x3f\x76\x7a\x4c\x5b\x54\xec\x39\x06\x7f\x41\x1e\x14\x5c\xb8\x08\x87\x7d\xf4\x21\xac\xe6\x23\xde\x10\x55\xe3\x2b\xe0\x45\x78\x6c\x01\xba\x63\x9e\x7d\x04\xbc\x70\x79\xd8\x1f\xfe\x42\xf8\xad\x15\x2d\x17\x32\xcf\x39\x5f\xc3\x95\x11\x36\x16\x7f\x07\x52\x42\x98\xc0\x03\xe2\x71\xb9\x41\x42\x26\x01\x9c\xeb\x80\xb5\xd6\xa7\xf9\x31\x41\x81\x7b\xa0\x3e\xca\x1b\xf5\x00\x7e\x98\x7e\x7e\x79\xdc\x36\x9f\x8b\x68\xdb\xb3\x0e\x13\xbf\x8d\x21\x17\x7c\x3d\x0d\xf2\xae\x93\xdb\x56\x10\xeb\x62\x1d\x2e\x5f\x01\xae\x13\x4a\x10\x93\x08\xbc\x1c\x96\x66\x30\xd0\x37\x33\x06\xe3\x6d\x6c\x6f\xb9\x4e\xe2\x4a\x91\xcc\x32\x5b\x4e\x65\x7f\x5d\x90\x66\x9e\x25\xc4\xdb\x34\x29\x1c\xae\x17\x2d\x0f\x9b\xd4\x2f\x96\xb0\xf0\xb2\x5f\x64\x14\x9f\x7b\x17\x67\x51\x24\xb3\xb6\xa7\xfd\x97\x2f\xd4\xf6\x74\x3a\xc8\x8b\x58\xf9\x43\xe2\x85\x06\x34\x07\x2f\x54\x1e\x76\xbd\xbf\x5e\x68\x5c\x3f\x73\x72\x6f\xf8\x5f\xdf\xd3\xab\xd3\x61\x8f\x17\x32\xa0\xd4\xea\x1e\xef\x86\x2f\xfc\x02\xc5\x88\xc1\x40\xa2\xeb\x51\xff\x74\x0a\x21\x9a\xc7\x6e\xc7\x17\x62\x8d\x9d\xfa\xfd\x62\x74\x8f\xdd\x06\xae\x84\xe2\x16\x21\x28\x1c\xf6\x59\x25\xc4\x1e\x97\x22\xd5\xc5\xc5\xf8\x1f\x0b\xa5\x87\xd8\xc1\x62\x0c\xe0\xdd\xd1\x06\xd7\x03\x1f\x75\x63\x38\x66\xa9\xb3\xb5\xe6\x7a\x92\x28\x7f\x71\xa0\x85\xff\xbe\xb8\x51\xe0\xa2\xd8\x0f\xe0\x86\x0e\xd8\x49\x73\x6f\xa0\xef\xa2\xfd\x77\xff\xc0\x29\xda\xa0\xf7\x8f\x3e\x58\x22\xfa\xfe\x2d\xbc\xe0\x06\x76\x3c\x6f\x7a\x06\x05\xa2\xe8\xde\x72\x7b\xe8\x83\x74\xf0\x9c\xfe\x01\xa3\x36\x89\x1b\xdd\xfa\xa6\x9b\x48\xee\xf4\x0f\x07\xf4\x14\x6e\xe1\xe4\x28\x97\x7e\xa0\xac\x1d\xfe\x01\xa6\xb7\xe5\x3e\x20\x6a\xb5\x98\x77\xaa\x6f\x25\x15\xee\x02\x7e\x94\xe0\xba\x0b\x89\xf4\xff\x15\xcf\x45\xcf\x03\x61\x1a\x7e\x26\xcd\xda\xa2\x77\xa1\xff\xb6\x14\x05\x37\xf3\x29\x7b\x5e\x18\x9e\x5c\xc5\xbf\x37\xe1\xb2\x83\x26\x6f\xba\x8c\x2e\x3f\x53\x63\x2b\xac\x78\x57\x12\xad\x2e\x00\x8f\xed\xa6\x7a\x03\x1e\x17\x87\x76\xde\xc0\xc7\xf6\x3a\xbe\x2b\x9d\xd5\xc2\x2d\x04\x5e\xd0\x3c\x55\xac\x7e\x71\x8f\x58\x7d\xdd\x5b\xee\x8a\xd5\xd7\x26\xbd\xa9\xdf\x5d\xfe\x1e\xaa\x0b\x9d\xec\x37\x7c\x42\x8b\x43\x49\xef\x86\x78\x57\x53\x04\x75\xae\xbd\x9c\xef\x74\x02\x15\x36\xbc\x53\xbf\x1b\x6e\x61\xe0\x0b\xcd\x52\x7a\x0d\x78\xda\x10\x37\xd4\xac\x7d\xbd\x1b\x65\x99\x9f\x0f\xea\x2f\xf4\x8c\x10\x1c\x9d\xa2\x37\x0a\xa8\x16\x47\x79\xde\x9d\xbb\xcc\xd3\xd2\x91\x3f\xcd\xc3\xee\x0d\x75\x88\x35\xec\xce\x60\x13\xbf\x0f\x9a\x85\x2d\xee\x4e\xa4\xe6\x61\x77\x88\x53\x81\xfa\xbb\x43\x9c\x9a\xc4\x9e\xf3\xa8\x1e\x07\x02\xb0\xbc\xcf\x07\x0d\xf0\x02\x0b\x77\x02\x5a\x33\xc7\xe0\xbc\xf9\x05\x2e\xbd\x68\x1e\x58\xfa\xea\xf7\xb1\xf4\xd5\x3d\x1e\x6f\x8f\x66\xdf\x01\xf5\xa4\x10\xf5\x9d\xaa\xdd\xe5\x1f\x92\x7d\xd5\x22\x00\xb0\xab\x3d\xdf\xc1\x7b\xc6\xe7\x87\x5c\x6b\xff\x40\xab\x87\x00\xeb\x1d\x24\x52\xf3\x16\xe0\x47\x4f\x7c\x9c\x78\xf6\xfb\x98\x57\xe1\x9d\x3b\x78\x6d\xf6\x96\x0a\x08\x0a\xaf\x14\x23\xc2\x3f\x1c\x0c\x45\xaf\x85\xfa\x0d\x3d\xaf\xbd\xf1\xee\xb9\xff\xfb\x0f\xf0\xca\x1f\x0e\xa1\x7b\x82\x3c\x21\x83\x9b\xe1\xe2\x36\xc7\xdf\x13\xeb\x2e\x30\x72\x23\x6c\xe8\xb3\x3d\xa0\xf2\xb5\x9f\xcf\x9d\x0e\x04\xcb\x2f\x40\x24\xe8\x12\x72\xaf\x64\x03\xff\x00\x36\xf0\xb2\x65\xd0\x90\x79\x99\xa9\x64\xaa\xe6\xfc\x81\xd0\x70\x81\x8b\xa7\x02\x3b\x08\xce\x3c\x94\x11\xda\x3e\x4f\xe5\xf6\xd2\x85\xf3\x61\x0a\xcc\xaa\x9b\xd0\x53\x09\xe7\x3f\x3f\x70\x59\x24\x5e\x9f\x94\x1b\xda\x31\x0f\x6b\xf5\x38\xf6\xff\x61\xad\x1e\x1b\x85\x1f\x5c\xb4\xed\x46\xf0\x34\x02\x47\xff\x4f\x2d\xaa\x80\xdd\x03\xab\x8d\x8d\xe3\x4f\x47\x03\xba\xa6\x3c\xb0\xc9\xd8\x0a\xfd\x74\xba\x65\x79\x5c\x9d\xc7\x92\x76\xe9\xd3\x73\x5c\xfa\x01\x36\x97\xee\x74\x43\xcf\x20\x88\xf1\x30\x06\xef\x25\xd5\x3f\x60\x5b\x86\xbf\x40\x21\x16\x6d\xd3\x87\x15\x09\x3f\xef\xf3\x28\x9c\x7e\xe1\x86\x8d\x5f\xc3\x08\x66\x4b\xd7\xff\x41\x0e\x9f\x7e\x81\x60\x52\xe3\x0c\x58\x09\x3c\xf5\x88\xee\x6b\x5e\xdf\xc0\xbc\x48\x20\x3f\xef\x9e\xfc\xc4\x8c\x3c\x13\x2c\xa8\x4d\xfc\x70\xc7\xe8\xcc\x79\x26\xb2\xaf\xeb\xa8\x7d\x26\x38\x52\x5b\xf2\x99\x9c\x01\xf5\x37\xd9\x9f\xe8\x7b\x77\x5c\x75\xbc\xd7\x33\x73\x5d\xfc\x01\x76\x99\x19\x78\xf2\xa0\xad\xa6\x00\x99\x16\x3f\x3d\x26\xb7\xa9\x0b\x3a\xea\x54\xc9\xb2\x67\xe5\x42\xfa\x07\x30\x8f\xc4\xc4\xb3\x08\x46\xb5\x11\x1f\xdc\x2f\xc3\x86\x84\x67\x61\x9b\x98\x37\x58\x8a\xb0\x2e\xbf\x00\x59\x65\xf6\x5a\x90\x05\xde\x24\x3b\xbc\x72\xcd\xbf\x3b\x6f\xde\xd3\x3f\x60\xa2\xcd\x5b\xcc\xca\xf0\x73\x03\xc9\x6b\x9a\x28\x44\xef\x85\x8e\xb5\x87\xc5\x72\x8a\xff\x27\xfc\xac\xee\x81\xcc\xe6\x4d\xb5\x93\x46\x3f\x43\x9c\x9a\xb7\x60\x3d\xf1\xfd\xf2\x39\x1a\x5b\xd4\xbc\x1d\x58\x7c\x8f\x81\xd7\x3b\x73\x33\xcc\x2b\x16\xbf\xcf\xc1\x3d\x27\xf9\xfb\xc0\x65\xdb\xc7\xdc\x03\x63\x49\xb7\xef\xc0\x73\xf2\xf0\xd6\xe5\xe8\x41\xa6\xf1\x6a\xfe\x3b\x29\x5a\xbc\x43\xe8\x36\xe3\xe8\xbd\xe7\xc4\xd2\x2d\x37\x09\x8f\x65\xa1\xcb\x07\x0e\xd5\xdd\xfe\x07\x0f\xf3\x82\x3b\xd1\xd5\x73\x51\x6b\xa8\x61\x5e\x60\x1f\x73\x0b\x2f\x70\x3a\x07\x9e\x8b\xde\x95\x3a\x29\x9e\x2b\x87\xa5\x2f\x60\x7b\x70\x72\x8b\x87\x17\xac\xf5\x27\x95\xdc\x83\xcb\xd6\xb4\xe3\xe3\x73\xd3\xee\xa6\xfb\xdb\x03\x97\x19\x2b\x83\x9f\x3b\xe7\x44\x73\x00\x97\x19\x2b\x87\x9f\x1b\xf0\xc0\x52\x02\xa9\x9a\xba\x95\xbd\xcf\xf3\xc3\x0b\xea\x01\x1e\x33\xb3\x79\x4b\xc1\x63\xc6\xda\xe3\xe7\xbd\x0d\x0d\xab\x25\x1f\x94\xb4\xe9\xb6\x1c\x3c\x0f\x32\x58\x09\xa6\x3d\x0f\x97\x25\x7b\x9c\xbf\xf7\x72\x54\x95\x2a\x61\xfe\xde\xbb\x51\x93\x29\x64\xfe\x10\x41\xd7\x74\xa9\x9d\xbf\x1f\xca\x7f\xfd\x87\xaf\xe7\xef\xbd\x3c\x0d\xa9\xfc\xe6\x0f\xa6\x0b\x39\x3b\xcd\x1f\x4c\x17\xe5\xd3\x01\x2d\x67\xcb\x3f\x4c\x8e\xd1\x5f\xec\xfc\xc1\x4d\x1e\x68\xc2\x2f\x80\xbf\x3f\x34\xf2\x48\x59\xfe\x80\xbc\xb6\xf9\x0d\x0a\xaf\xa6\x26\xde\x1b\x59\x51\x2a\x95\xf9\xdb\x28\xbb\x36\x51\x85\x0b\x99\x94\x7e\xf3\xb7\xf1\xda\xd0\xfc\x43\xe3\x17\xea\x94\x65\x75\x36\x77\x31\x38\x0c\x7f\x11\xd0\xfb\x88\x28\xd8\x2f\x94\x12\x6b\xfe\x98\x1e\x4a\x91\xa4\xf3\xc7\xd2\xcf\x63\xa9\x49\x5c\xc8\xca\x4f\x6b\x51\x92\x06\xbf\xc0\x32\x4d\x5e\x9d\xf7\xc6\x35\x94\x45\x6b\xfe\x78\xc1\x6a\x3f\xf5\xc1\x7c\x93\xa5\xa9\x4d\x84\xdc\xcd\xf6\x13\x87\xf0\xc2\x34\x34\x33\x74\x78\x29\x5d\x6d\x56\x9a\x21\x9b\x06\xc2\x4a\xcc\x55\x33\x53\x53\xcc\xbb\x0f\xea\xa3\x96\xc8\xac\xc9\xb6\x22\x0b\x77\xa8\xe2\xe5\x60\x82\xca\x9f\xf9\x16\x19\x2a\xe5\x02\x3c\x7f\x95\xe3\xe8\xfe\xe1\x41\x0b\x7a\x66\x4a\x71\x85\x4c\xce\x5f\xcb\xfd\x2d\xb2\x5b\x0e\x4c\x74\xe3\x16\x55\x3c\xbb\xef\x1d\x69\x14\xaf\x78\x07\x8f\x78\xb2\xe1\xb7\x2c\xe7\x85\xf9\xeb\x9c\x7c\x0d\xaa\xf3\x7b\x8d\xa1\xc3\x74\x6a\xb6\xed\x24\x59\x04\xc1\xcf\xb9\xff\x3e\x3f\x6c\x50\xa7\x6a\x4c\x83\x04\x68\x5e\x47\x8e\x40\x14\x8f\xe4\x41\xbf\x01\x92\x8a\xd6\x6e\x90\xe7\x4c\xf3\x80\xf9\xa9\xaa\xcb\x17\x19\x0d\x5d\xf3\xe6\x2f\x72\xa3\xa8\x45\x28\xe4\x75\x79\x9d\x3f\x28\xe4\x75\xbd\x9e\xbf\x80\x32\xd3\x3d\x06\xa5\xe8\xe7\x07\xcc\x72\x11\xcd\x2f\x94\x2a\x0a\xa9\x98\x3f\x5c\x67\x74\x0d\x9c\x3f\x78\xaa\xcc\x66\x9e\xc6\xfd\x45\xd7\xbe\xf9\x7b\xef\x2f\xed\x67\x86\xc5\xf5\x45\xa7\xdf\xfc\xa5\x7a\xbe\xeb\x83\x09\x11\x56\x34\xe6\x17\x7c\x0d\xb9\x4a\xce\xdf\x24\x85\x1a\x32\x32\x5e\xd5\x29\x8a\x26\x6f\x60\xcb\x0d\xae\x7f\xff\xa9\x65\x6a\x0e\x5e\xf4\xd5\x64\xdf\x9a\xbf\x17\x7c\xd5\xfa\x27\xa7\xed\xf9\x9b\x29\x05\x44\x3f\xd4\xf6\x42\xd4\xf3\x07\xb5\x7d\x5b\xea\x0d\x1e\x2a\x4a\x55\x33\x7f\x54\xda\x37\x6f\x05\xa0\xac\xe2\xfd\x09\xad\xbd\xee\x11\xf3\x47\xd4\xd5\xbc\xfb\xa0\xb6\xef\x16\x4c\x8b\xf2\xd5\x8b\xcc\xe4\x57\x9e\xc1\x1d\x9a\x4b\xcf\x20\x51\x56\xf3\xd6\xd9\x51\xc8\xb4\xfb\x03\x0a\x2e\xb3\x11\xd5\xf6\xcd\x9b\x8f\x49\x13\xa6\x68\x78\x71\x57\xfd\xcc\x0a\x72\x26\xf4\x9f\x39\x75\x87\x78\xad\xfe\x00\x6c\x52\xdd\x20\x42\x71\xbd\x3b\x53\x4d\xaf\x06\x0f\x58\xc3\xdc\x01\x60\xd9\xe6\xf6\x0e\x9e\x5b\xde\xfe\x47\xe6\x5e\xf1\x17\x48\x59\xdf\x44\x11\x40\x94\x80\xe0\xfc\x9d\xe0\x3b\xcb\x30\xfa\x2e\x37\x93\x80\xd2\xd0\x0a\x4a\x98\xbf\x04\x5d\x9e\x36\x6a\xd1\x7f\x96\xc5\x40\x5d\xf5\xf3\x45\xee\x6f\xf1\x2e\xdc\x50\x14\xee\x3e\x7f\x27\x15\x10\x4b\x4d\x32\x4d\x95\xe2\x68\xe7\xef\xa2\xb6\xc9\x08\xe0\x4a\x32\xfd\x09\xf6\x87\xc7\x79\x61\xc7\x56\x7f\x00\x7e\x33\x51\x17\xf9\x4d\xc3\x84\x9e\xbc\x78\xc7\xc3\xa5\x64\x78\xbb\x64\x96\x4d\xcb\x76\x56\x63\xf1\x86\x44\xde\xaa\x8f\x60\xbd\xb9\x81\xdd\x00\xc5\xa0\x85\x16\x72\x11\x2c\x95\xe1\x9b\xbf\x9b\xc7\x87\x31\x05\x7c\x4a\x3e\xc7\x3d\x13\x7b\x87\x65\xef\x83\xb3\xd8\x7b\xe2\xc9\x79\xd3\x28\x1f\xda\xf8\x7c\xe0\x20\xd3\xf7\x87\x4a\xba\xa1\x34\xef\x22\x66\xb6\x52\xec\xd7\xfc\x21\xb3\xd5\x0a\x83\x27\x38\x40\x87\x59\xee\x21\xcb\x0d\x31\x35\xf0\xdf\x0a\x63\x27\xba\xaa\x34\x6f\xac\x07\xdb\xc2\x4c\xfa\xd0\x55\xc4\x4d\xde\x6c\xe1\xbf\x26\x37\x3a\x48\x4b\x3a\x6c\x70\x5e\x59\xaa\x27\x38\x37\xa4\x50\x50\x31\xb3\xb9\xc1\x3d\xda\xcb\xb7\xfd\x90\x7d\x2f\xfc\x3f\x72\x86\xfd\xa7\x15\x9e\x1b\xb4\xe9\xc6\x66\xdb\x8b\xff\x8a\x14\x1f\x73\xfb\xd1\x00\x3b\xdc\xe1\xc5\x31\xe9\x8d\x2d\xa5\x87\xba\xd8\x72\xe2\xfc\xc3\xe4\x1b\xa1\x1f\xe0\x5c\xa2\xf5\xdd\x36\xf0\x64\xf3\xff\xbc\x43\x0d\xb7\x70\xb3\x53\x7d\xc1\x4c\x59\x8a\xcd\x9d\x1b\xd4\xe1\x46\x52\x1b\x2b\x14\x36\xf7\x49\x7d\x78\x93\x98\xdc\x0a\x47\xee\x67\x14\xe7\x53\x12\x96\xb9\x25\x5c\x2b\x6e\x13\x6c\xa9\xfd\xbe\xd5\x64\x4b\xf5\x51\x11\x8d\xe5\xc5\x40\x45\xe9\xfa\x79\x4e\xa6\xd3\x6c\xbf\x58\xac\xbe\xa2\xfc\x0f\x67\xd1\x96\x38\xcd\x23\xa8\x39\x4d\xfe\x81\x6b\x63\x76\x79\x81\xd9\x30\x24\xd9\xe8\x2c\xa2\x6b\xdc\xdc\x1a\xb5\x6f\x43\x63\x24\xec\x12\x0c\xdb\x58\x3f\xb0\x98\x61\x5a\x52\xe1\x2f\xb0\x78\x92\x0f\x1b\xcb\xb2\xc8\xcf\x77\x6e\xd0\x56\x2b\x0f\xf7\xdc\x90\xe3\x4a\x86\xad\xb9\x75\x6c\x66\x21\x82\x8d\xb9\x40\x15\x1a\x3a\xb7\x8e\xb5\x15\x4c\xda\xa0\xcc\x36\x32\xdb\x7a\x47\x86\x49\x51\xd4\x93\x01\xfd\x02\x16\xee\x3f\x85\xd0\xdc\x46\xca\x34\x91\xc0\x02\x7d\xdf\x37\x78\x6c\x57\xbf\x01\x4f\xd3\xea\x17\xe8\x38\x6c\xaa\x07\xa7\x5a\x44\x50\xb9\xac\xe2\x8e\x73\x0b\x66\x9b\x10\x51\xc1\xda\xa1\x3a\x0d\xb6\xe0\xde\x16\xb6\xda\x02\x47\x94\x84\xda\x16\xb9\x16\x22\x2a\x26\xd8\xc7\x2f\xc0\x61\xd7\x6b\x15\xb4\x2b\xb8\x87\xe7\xdf\x7f\x22\xcc\x40\x13\xf8\xd2\xdb\x6c\x12\x5f\x9a\x7f\xa0\x29\xfb\xec\x32\x68\xca\x2c\x23\xb7\xc9\x3b\x90\xa7\x65\x92\xc3\xab\x9b\xa4\x58\x0d\x71\x1c\x94\x65\x16\x9a\xdb\xc4\xf9\x64\xf9\x42\x65\x59\x6c\xa6\x81\xa7\x83\xe7\x69\x12\x3b\x68\x62\x17\xb7\xa1\x10\xd3\x46\x8c\xe6\x69\x5a\x38\x91\xcc\xe3\xe9\x6a\x61\xa1\xb8\x88\x26\x74\x66\x6d\x2f\x48\xab\xdd\x52\x71\x25\x51\x6e\x12\xa6\xd6\xcf\x07\x17\x60\x9f\x49\xa0\x20\x17\x82\xda\x76\x4e\xb5\x3e\xd8\x93\xc9\x35\xb5\x3b\x89\xd6\xb0\xe1\x78\xfc\xd9\x77\x3b\xcc\xc3\xcb\x0d\x40\x7c\x79\x5e\xf7\x9c\x26\xbd\x00\x4f\x88\xcf\xb4\x1d\x54\x67\x08\x19\x6c\x07\x72\x34\x58\x0a\x1f\xb9\x98\x1a\x24\x5c\x1f\x3e\xd3\x04\xd5\xd7\xb7\x07\x2c\x9d\x07\x7d\x50\x27\xa4\xe3\x6d\x83\x27\x83\x02\x6e\xe7\x76\x60\x8f\x78\xcc\xf0\x64\x90\x6b\xfd\xdc\xe0\x36\x5c\x7c\xf8\x40\x11\x36\x5b\xf3\x0f\xe0\x47\x61\xfb\x8d\x9a\xb1\xd6\xfc\x03\xe5\x99\xbb\x44\x3a\x83\x6a\x61\x74\x62\x0c\x53\x63\x38\x31\x8d\x53\x63\xfe\x0f\xd4\xf9\x85\x5c\x7a\x4d\xd3\x89\x41\x09\xe1\x6f\x27\x27\xfe\x43\x35\x35\x61\x02\xbb\xdb\x05\x01\xa7\x2b\xcb\x86\x3a\xd5\xd3\xc3\x06\xa6\x5b\x9f\x43\x9c\x31\x6a\x4d\xa0\x6d\xbb\x78\x89\xb7\x74\xb9\x38\x0c\x37\xc1\x61\xb8\x05\x2e\x8d\xdf\x27\x12\xb1\xd0\x25\x8a\x0b\xef\xa2\x9b\x9e\x8b\x7f\xba\x16\x6d\xcc\xa4\xde\xcc\x3b\x37\x1d\xf0\xfc\x1c\x6f\xff\xd2\x33\x6d\x70\x6e\x50\xf8\xe2\xdc\xe8\xcc\x60\x41\x72\x13\x66\x78\x65\x99\x48\xbd\x19\x13\xdc\xb4\x81\xba\x05\xca\x57\xe3\x10\xe6\x2e\xb5\x28\xca\x0a\x7b\x22\xe9\x21\x6b\x98\x46\x64\x2c\x58\x2a\x7a\x3a\xb7\xf4\x3c\xf6\x2c\xc2\xdd\xa1\x2b\x50\x63\x6e\x08\x79\x2b\x9f\x67\x1e\xb8\x06\x11\x0f\x38\x7c\xf9\x05\xea\x59\x85\x4b\x0a\xcb\xbf\xc8\x6f\x65\x16\x20\xba\xae\xa0\x89\x59\x7e\x9c\x5b\x1d\xa8\x05\x1e\x11\x8a\xf4\x9c\xe5\xc7\xb9\x75\x93\xc4\xa5\xa1\xe7\xf5\xef\x3f\x5d\x8e\xe9\xb3\xc0\x41\x42\x41\x99\xb3\xfc\xc8\xd1\xba\xac\x15\xa8\xf4\x7c\x9b\x2b\x08\x87\x53\xcc\xe5\x2c\x4c\xdd\xae\x41\x95\x54\xe8\x69\x13\x95\xed\x87\x0f\x34\x26\x44\xc3\xc9\x33\x66\x96\x17\x22\x0e\x39\x1f\xcf\x02\x65\x9c\x92\xc1\xcc\x42\x80\x38\xfc\xcc\xd3\xb7\xfb\x03\x22\x6b\x61\xcc\x82\xf0\xb8\xef\x33\xeb\x36\x98\x02\x5e\xbd\xb4\x01\xca\x06\x75\x4f\x37\x49\xef\x18\xaa\xbb\x2c\x79\xf4\x69\x12\x0a\xc5\xa5\xb0\x53\x29\xe4\x8e\xe5\x4f\x16\x46\xe5\x17\xe0\xcb\x5b\xfc\xff\x81\xff\xd5\x25\xbc\x91\x0d\xfe\x0a\x9c\x8f\xa5\xe6\x9f\x05\x19\xb3\xba\xd5\x3f\xe5\x85\x8f\x43\x31\x9e\xb3\xd4\x14\xd0\xfe\xe2\x65\x69\x39\xca\xce\x02\xdd\x9f\x1c\x38\x66\x61\x76\xf8\x4f\x03\x13\x0d\x6a\xd6\xe0\x8d\xac\x04\xc2\xb3\xd4\x9c\x66\xff\xc0\x5d\x28\x94\x53\x1a\x57\x5a\x24\xb2\x1e\xb5\x62\xfb\x67\xa1\x7b\x84\x31\x46\xa1\x7b\x84\xb5\x0d\xa5\x65\x35\x7b\xcd\x53\x63\x0e\x73\xcd\x4b\xcb\xd5\x17\x15\x8d\xda\x85\xe6\x4e\x28\x72\x25\x5e\x4a\xa3\xc8\x95\xc0\x2c\xe9\x32\x2c\xf5\x5e\xe9\x3c\xf3\xdd\x0b\x23\xdc\xda\xf0\x27\xf4\xca\x90\x22\xa9\x74\xae\xaf\x66\x1b\x1a\x44\x45\xe9\xcd\xc2\xb4\x58\x6d\xb8\x49\xec\x1b\x21\x97\x02\xd8\xa9\x18\xba\x59\x12\x76\xea\x9e\x5b\xa0\x42\xf4\xf5\xaf\x0c\x1e\x67\xc3\x3f\x34\xbc\xa0\x1e\x06\x2d\xdd\x9a\x99\xf4\xf9\xf5\xd6\x84\x8a\xd1\x37\x8e\x32\x78\xd7\x16\x5a\x2f\x30\xbe\xca\xd7\x7a\x96\x81\x1c\x46\x12\x8a\xe5\x45\xa5\xa3\x9a\x89\x61\x7b\xed\x9e\xfa\x60\xc8\x96\xa7\x0d\x39\xb3\x3e\xd2\x89\x65\x99\xad\xba\x29\xe9\xc2\xeb\x79\x0d\x0a\xcd\xe1\x4f\xb0\x11\x2c\x8f\xe8\xd3\xdb\xfe\x76\x16\x95\xc9\x49\x13\x52\x2a\x2c\x6f\x13\x16\x2f\x33\x67\x49\x93\x30\x17\xdf\xd0\xa8\x98\x02\xab\x79\xe7\x00\x85\x16\xef\x94\x89\xa5\xf5\xde\x9d\x54\xc2\xe9\x3c\x2d\xf4\xef\x55\x55\xe5\x59\x16\xe3\xef\xcc\xa3\x2b\xe9\xf4\x0f\x8d\x7a\x3a\xd1\x49\x5c\xfa\x11\xbc\x6b\xf2\x07\x7f\x02\x80\xaf\x63\xb7\x2c\x88\x39\xef\x3e\x38\xf0\x56\xef\xdf\xfd\xc7\x06\xf4\xc1\xce\x00\x06\xf3\xec\x4e\x97\x6d\xbf\x30\xfe\xfd\x27\x96\x59\x74\x67\xac\xe2\x70\x93\x94\x11\x42\x89\x05\x1e\xbc\xd5\xa2\x18\xaa\xbf\x6a\x8e\x43\x09\x1d\xdf\x9c\xca\x9e\x53\x67\x12\x50\xe8\xcb\xeb\xc7\xe4\x08\x0a\x65\x9c\x05\x79\xf2\xab\xae\x29\x25\x91\xac\xa0\x6d\x41\x49\x1d\x79\xd8\xce\xc2\x04\xab\x2d\xfc\x45\xb0\x4f\x7f\x91\x88\x5f\xcf\x18\xa6\xce\xf1\x72\x24\x43\x68\xd8\x07\x47\xe9\x17\xb8\xf9\xc3\x3f\x20\xbf\xee\x74\x97\x39\x4c\xff\xc0\xe8\x48\xb3\xfd\x49\x65\xbc\x68\x38\x53\x30\xaa\xcf\x2b\x27\x42\x54\x5f\xf4\x9d\xd4\x38\x11\xb5\x56\xbd\x14\x2f\xb0\x6c\xbe\x18\x17\x04\xad\x4d\x0f\x22\x63\xd6\x3c\x51\xa8\x2b\xd8\x75\xe3\x2c\x80\x91\xd5\xd3\x04\x27\xdb\xf2\x39\x31\x80\x23\xab\xb9\x01\x5e\xb7\xd6\xb2\x16\x78\xd9\x56\x8b\x8b\x0b\x0c\xe9\xc5\xbf\x93\x21\xd5\x00\xac\xc2\xc6\xe7\xe5\xce\xb5\x15\x89\x37\x0e\x41\x6f\xd5\x3b\x77\x8d\x06\x89\x6c\xaa\x9f\x63\x14\xfa\xc6\x30\x87\xbf\x50\xb4\x2c\xcb\x23\x66\xd3\x6a\xd3\x5d\x26\x47\x6b\x90\x2f\x18\xad\x56\x0d\x17\xfa\xd1\x7e\x4e\x82\xc4\x9e\x06\x0b\x70\xa4\xf5\x3d\xb9\x3c\x24\x5a\xf3\x88\x20\xb8\x6a\x8e\x4e\xe8\xe9\xa3\xfe\xe1\x69\x64\xb9\xfc\x70\x25\x44\x24\xa2\xe0\xaa\x69\x84\x9f\x6d\x35\x14\xc8\x6c\x59\xde\x45\x4f\xf2\xdf\x7f\x5d\xd4\xcc\xaa\x2f\x19\x57\x7f\xdb\xbf\xff\x4c\xd5\x5f\x9a\xf5\xc7\xe2\x88\x4d\xcf\x1c\x84\x1b\x68\x58\x7b\x3f\xd3\x4d\x76\xe9\x19\x28\x4f\x67\x70\xfd\x71\x08\x6e\x8f\x5b\x66\xfa\x07\x3a\x55\xe9\x99\x30\xd1\x14\x33\x6f\xaa\x92\xd4\xce\x8a\x94\xfa\x72\xae\x9b\x95\x5e\xb6\xca\xb4\x36\x2b\xf3\xa2\xfa\xc0\xac\x85\xae\xf0\x12\xba\x15\x7a\x42\xe5\xd0\x99\xf5\x45\x75\xa1\xb4\x53\xb3\x12\xb4\x09\xf0\x54\x66\x29\x78\xcf\xe8\x3f\x9c\x45\x35\xf3\x5e\x49\xf5\x50\x69\xe1\xf5\x81\x5c\xa1\x43\x54\x4e\xe4\x59\xd3\xe2\x2b\x2c\x5d\xe1\x42\x5b\xa5\x64\xac\x70\xa1\x55\x4c\xce\xac\xb4\x08\xfb\xd2\x5c\x2b\x78\xab\xf9\xb9\xe3\x59\x3d\x56\xd8\x31\xc2\xff\x07\x1b\x70\x8f\xef\x29\x63\x94\x58\xe1\x62\x5b\xa5\x3a\xaf\x95\x57\x62\xa9\x1a\x6a\xa2\xc2\x69\x9a\xb8\x41\xb4\x07\x2b\x61\xa2\xae\x30\x95\x05\x0a\x0d\x2b\x6a\xe3\xad\xc7\xc3\x6a\x14\xd9\xcb\x6f\x60\x18\x82\xdf\xf5\x85\x8d\x31\xbc\x90\x8d\x57\x62\x1d\x02\x15\xd9\xf7\x55\x33\x75\xd6\xcc\xaa\xe0\xff\xdf\x4d\x6b\x3d\x65\xed\xa4\x51\x4b\xc5\x9a\x44\x36\xe7\xd4\xce\x13\xdc\x1f\x70\xe6\x25\xcc\x6a\x27\xcd\x02\x4f\xb5\x53\xa2\x7f\xfa\xc8\x7d\xae\x61\x26\xea\x5c\x7e\x63\x82\x6a\x53\x81\x08\x28\xbb\x6c\xd4\x17\x23\x4e\x15\x19\x98\x15\x18\xd1\x79\x7d\x66\x65\x8d\x41\xc3\xa7\x0a\x23\xb0\x6f\x01\x15\xe9\x07\xaa\x67\x2e\x98\x46\x4a\x34\xd1\x87\x35\x24\x6b\x2a\x8c\xbc\x3e\xd1\x2b\x7c\x56\xbf\x1f\x24\x97\xfb\x85\x07\x34\xaa\x87\x99\x24\x69\xf1\x66\xae\xbf\x88\x66\xae\xab\x4f\x1f\x93\xcb\xad\x3e\x26\x0f\x43\x73\x21\x9c\xee\x7c\xf2\x54\x44\x60\x55\x33\x25\xf4\x88\x1f\xe9\x04\xcf\xd5\x6e\x1d\x6f\x85\xe7\xaa\x51\x44\x5d\xbc\x6e\x99\xc3\x16\xe5\x9d\x7a\x80\x23\xaa\xd2\x0b\xcf\xba\x68\xc6\xf0\xde\x5d\x8b\x83\xf0\x17\xa4\x41\x13\xc9\x5c\x55\x6d\xf9\x05\x4a\x13\xc1\x88\xca\x98\xac\xb6\xfc\x03\xc4\xb6\x65\x20\x11\x9d\xe5\x13\xf4\x88\xd5\x02\x06\x21\x59\x4a\x04\x3f\x2b\x5d\xe8\x0c\xbf\xea\x9e\xfb\x44\x34\x20\x21\x41\x35\xff\xec\x54\x72\x58\xe4\xed\x1c\x85\xf8\x67\x67\xb0\x83\x48\x62\xe5\x23\x9f\xd9\x75\xe7\xf6\xf7\x56\x3b\x18\xdb\x28\xa2\x0e\x72\xa0\x3e\x80\x5e\x50\xce\x8b\xb3\x1e\x94\x92\x3a\xe4\xeb\x09\x21\xe8\x93\x02\x6a\xbd\x61\xf6\x39\x03\x0c\xa7\x0e\x58\xb4\xf9\x73\x16\x41\x8d\x37\xbc\x55\x11\xd1\x14\x16\x37\x27\x98\x21\xfc\x4c\x70\xe6\x41\x5e\x8c\x41\xf5\xe9\x78\x11\x39\xfb\x13\xa4\x08\xf8\x6c\x33\x66\x9a\xea\xde\xa9\x17\x5d\x03\x44\x03\x74\x76\x72\x21\x9e\xf5\xc5\x4e\xce\x02\x3f\x2b\xa2\xfb\x67\xf7\x36\x42\x91\xe6\xcd\x92\xfd\xc6\xda\xcf\xbf\xe4\xdf\x9e\xf5\x26\xbd\x82\x39\x15\x2a\xba\x69\xbc\x59\xe9\x31\x67\xf8\x58\xef\x85\x54\x37\x62\x84\x9b\xa6\x1e\x6f\xca\x1b\x87\xa3\x27\x09\x38\xe8\xb3\xae\xb4\xd3\x9a\x31\x1e\xc4\x52\x48\xb9\x5a\x11\x5e\x54\x7d\xd6\x11\x16\x59\x8e\xbc\xb0\x68\x0e\x23\x10\xa4\xa0\xb2\x56\xb1\x3e\x29\xa9\x34\xc5\x50\xd0\xcd\xfe\xf9\x02\x14\x2e\x7f\x71\xf2\x0b\xcd\xe9\x03\xd6\xd3\xac\xb4\x4c\x49\x25\xe0\xd5\x88\x7a\x3e\xcf\x34\x1c\x4f\x3d\x33\xc6\x51\xcb\xd8\x7e\x24\x72\xe8\x79\xff\xf7\x9f\x50\xa1\xeb\xd9\xe0\x40\x27\xbf\xf0\xd9\x5e\x18\x54\x15\x3a\x37\x1b\xb5\x6d\x3a\x4c\x1b\x50\x91\x1c\x4e\x67\xfb\x51\xb7\x21\xa9\xd2\xd2\x5d\x4e\x1b\xb4\x6d\x14\xf8\xea\x71\xcb\x95\xee\xfa\x21\xf8\x83\xdf\xa0\xe4\x12\xf4\x6a\x05\xac\xa5\x63\xa9\x21\xda\x48\x91\x3e\xb3\x95\x85\x34\x7f\xfe\x1f\x32\x42\x82\xad\xbd\x30\x69\xd8\x9d\xab\x31\x99\xbc\xf1\x6a\xab\xe9\x9f\xac\xe7\x57\x24\xd8\x2d\xa6\x51\x35\x25\x7d\x4d\xab\xb9\xb2\x6a\xb1\xe2\x10\x5a\x7e\x46\x65\x56\x49\xd2\x46\x4b\xa6\xc5\x77\x83\x25\xd3\xae\x74\x8d\x96\x4c\xe3\xd9\x86\x38\xf6\xe1\x59\x42\xf2\x4e\xd5\x35\x9a\x2d\x2d\x9d\x92\xbd\xad\xa5\x9c\xd3\x52\xb5\x1b\x89\x8d\x35\x8b\x80\x18\x53\x05\x2c\x66\xa3\xd6\xc9\x30\xbe\x75\x5e\x46\x44\x43\x4f\x8e\x56\xa7\x9d\x5e\xaa\xea\x93\x4a\xa6\x2e\x44\xdb\x3a\x25\x95\xf9\x69\xf0\xb0\x15\x8b\x37\x44\x96\x77\xc9\xf3\x06\x2d\x93\xdd\x7f\x1a\x0a\x25\x6f\x9e\x6a\x3a\xae\xf9\x12\xd7\x06\xf9\x67\x73\x0b\x2f\xcf\x2b\x7a\x73\x36\xaa\x9d\x0c\xed\x1b\x42\x73\xec\xd8\xd8\x98\xc0\xd3\x17\xc9\x36\x0e\xbc\x60\x1a\x19\x9b\xec\x06\x78\x22\xb8\x81\x1b\xef\xfb\xff\x07\xcf\x9a\x58\x46\xea\x28\x00\x7b\x36\x84\xaa\x5b\x0d\xd5\x82\x0e\x20\x92\x1d\x2d\x72\x94\xea\x02\xbe\x70\x9b\xb7\x40\x10\x71\xe8\x28\x6d\x2f\x4e\x1a\x72\x41\x7e\xef\xfa\x9c\x16\x71\x14\x9c\xe3\xec\x0b\xd7\x02\x56\x43\xf3\x4b\xe4\xda\x99\x28\x32\x90\x24\x7a\x83\xc1\x75\x76\x01\xe7\x06\x83\xab\xdd\x56\x1b\xbc\xe3\x9a\xb7\x4d\x66\x77\xb7\xb4\x41\x4e\xa6\xe6\xc5\x5c\x28\xfc\xe2\x8d\xba\x88\xbc\x04\x28\xda\xa2\x95\xd9\x6b\x47\x35\xd4\xf0\x33\x37\x92\xce\xca\xc6\x40\xf4\x5e\xdc\xe6\x82\x2f\xed\x5f\x0a\xb7\xce\x06\x4b\x69\x37\xf7\x2d\xe6\xf6\xd6\x9d\xad\x01\xe1\x34\x33\x1b\x32\x32\xd9\xd5\xa3\x31\xc3\x52\xd7\x39\xd9\x76\xe2\x30\x53\x0c\xe7\x32\xbb\x2c\xb7\x3d\x25\xa6\x9a\x60\xa1\x45\x9b\x3a\xdb\xc1\x60\x34\x7d\x71\x34\x88\x02\xd1\x70\x4c\x54\x2b\xd0\xa4\x1d\x5c\x69\xf5\x78\xf0\x4a\x64\x21\x0d\xf5\x90\x7d\x9c\xda\x41\xfe\x76\x87\xd4\xc3\x9a\xfb\x98\xb7\xbd\x17\x93\xc0\x69\xd0\x17\x27\xfd\x4f\x85\x57\xdb\xc9\x79\xd1\x34\x9c\xc4\xaf\x42\xc4\xed\x84\xc1\x4b\xd0\xb0\x21\xf9\x66\x73\x0f\x27\xe5\x9b\x06\x81\xa0\x01\x3b\x1a\x36\x58\x3a\x9b\x4e\xef\x76\x12\xe7\x59\xbc\xc1\xf2\x69\xd7\xb3\xf6\x62\xa4\x61\x17\xaa\x86\x20\xf0\x18\xfe\xbf\x72\x8c\xa2\xf0\x22\x45\x6a\xf0\xe2\xb4\xfa\x7f\x50\xa4\x5b\x62\x7b\x11\xd2\x34\xb8\x6d\x77\x72\xa2\xa6\x99\x69\x30\xbb\x69\xbe\x4f\x94\x00\x57\x0f\x37\xdc\x51\x2d\xb1\x6f\x4a\x68\x21\xcd\xf6\xe4\x34\x8b\xe8\x87\x5b\x52\xd0\xb1\xd1\xb7\xcc\x57\xf6\x06\xd4\x62\x47\xa2\xf6\x50\x1a\x5a\xe0\x3e\x49\x95\xe8\x7e\x68\x71\xf3\xbe\x87\x1f\x58\xab\x6e\x92\x97\x15\x5d\xb1\xda\x03\x6e\xd0\xcc\x75\x86\x51\x4f\x3f\xe3\x6e\xa2\x71\xf6\x5f\xd2\xb0\xf4\x03\xbd\x70\x04\x33\x3a\x8d\x78\xbe\x9c\xf4\x8d\xe7\x86\x44\x45\x67\x5c\xb4\x9d\xea\xfb\x8b\x2b\xaa\xea\x58\xbd\x87\x10\xa8\x56\xa7\x48\x3a\x64\x1f\x99\x0e\x2b\x9d\x5d\x09\x3b\xf5\x37\xfd\xf3\x01\x39\x4a\x12\xb2\x6f\x14\x06\xcb\x34\x60\xdc\x9a\xfc\x5e\xc8\xf4\x43\xcf\x5c\x0c\xb1\x44\x2f\xf5\x5d\xf0\x9f\x5f\x18\x48\xdf\xa0\x89\x62\x61\x1c\xdf\xe2\x3a\x93\x06\x59\x03\xd4\x4b\x52\xe9\x4f\xb8\x38\xa2\x09\x4a\x1d\x23\xc0\x5e\x78\x02\x0b\xd8\xf7\x4a\x25\x93\xd0\x52\x4f\x1d\x8d\xf6\x6e\x4f\xcb\x9d\x2e\x0b\x9d\x96\x3b\xb7\x59\x09\x14\xb4\x99\xfb\x0b\x6f\x22\x84\x0a\x7b\xbd\x5f\x54\xe9\xc5\x62\xfc\xa1\xef\xbb\x1d\x2a\x17\x3b\xde\xf4\x86\x99\xf3\x62\xb4\x8a\x0a\xa9\xea\xa0\x51\x35\xd1\xdc\xc0\x44\x03\xea\xb1\x31\x55\x91\x26\x0e\x41\xca\xb6\xa8\x75\xf8\x7d\xd9\x47\xa1\x23\x77\x79\x78\x48\x09\x86\x84\xb7\x7a\x4f\x86\x53\x0f\x9d\x5b\x4d\xb8\xa2\xd3\xf3\xcb\x17\x8a\xde\x2b\xe4\xb2\x88\x46\x04\xa4\xbd\x18\x7a\xea\x57\xda\x9f\x2c\x45\xbd\x43\xdb\x6d\xde\xe9\x1c\xb1\x09\x5c\xe8\xcd\xcf\x04\xb9\xa6\x97\xec\xeb\x55\x64\x38\x65\x74\xd3\x4b\xa5\xab\x74\x2d\x1d\x59\x7c\x3e\xb3\x3e\x68\x3e\xf3\x2c\x8e\x09\xdf\x35\x71\xe3\x40\x06\x79\xcf\xfa\x00\xa6\x30\x3f\xbf\x40\x6a\xaa\x74\xee\xec\x00\x4e\xcd\x14\x8c\x9c\x75\xbd\x40\x14\x23\xe1\xd4\x83\xd0\x5f\xf7\xff\xce\x1a\x36\xb6\xbf\x76\xfa\xf8\xdb\xca\xd4\x69\xb0\xb3\x0b\x7a\x87\xc1\xce\x06\xda\x4e\x83\x9d\xed\x92\x1d\x8e\x65\x4d\x18\xa3\x27\xce\x31\xb3\x4d\xa4\x0d\xf7\x3c\x31\x05\x4f\x48\x73\xd6\x27\x4f\x7d\xa1\x90\x3e\x39\x0e\x37\x89\xc5\x33\x4d\x33\xc7\xe5\x1f\x70\x98\x7c\xba\x3c\xf8\x82\x89\x64\xce\x26\x5d\x16\xfb\x24\x6e\xd0\x09\xda\x11\xcc\x6c\xd3\x75\x5f\xdc\x53\x6a\x81\x26\xbd\xee\xd9\x47\xd0\xa5\x5d\x37\x3a\xa0\x93\x2d\x7c\x9d\xb5\xaf\x15\x93\x3e\x3b\xa0\x94\x3d\x9f\x3b\xa2\x01\xda\xe7\x7f\xc8\x22\x9d\x3d\x9d\xfa\xa2\xfe\xe9\x81\x53\xef\x2f\xd2\xe4\xa7\x4b\x7a\xdf\x53\x3a\x69\x62\xe0\x59\x66\xdf\x9d\xce\xfc\xe6\x56\x86\x74\xe8\x90\x6c\xc2\xef\x3b\x65\xa8\x2e\xcd\x7d\xe7\xdc\xfb\x83\xf5\x5e\x5a\xa6\x3f\xd8\x61\xd1\x13\x91\x08\x0f\x50\xc6\x9a\xd9\xf7\x17\x13\x4e\xcb\xa6\x9d\xc7\x9f\xd7\x6e\xbf\xf1\x82\x49\x84\xe3\xa2\xa0\x78\x3f\x7e\xef\x2e\xd8\xfc\x4c\x70\x3f\xfd\x03\xe5\xa9\x6e\xe9\x3d\x2d\x80\xd2\x17\xf6\x83\xda\x0f\xdd\xa3\x3a\x31\x9e\xcf\x26\x78\xb7\x35\x9f\x97\xb4\xf8\xf9\x5e\xd5\x4f\x44\xeb\xe9\x0a\xd2\x99\x1e\xbd\xfa\x90\x66\x09\xc5\xcf\xe6\x85\xb3\x59\xf3\x21\xcd\xec\xe6\xdd\x0c\x76\xd2\x83\x6e\xf9\x0b\xdc\x72\x05\x14\x7a\x06\x72\x7a\xf7\x9e\x38\x30\xcd\x40\xc4\x64\x96\x71\x88\xdb\xb4\x8f\x42\x4f\x8b\x9e\xd7\x0a\x16\xbc\xe6\x83\x07\xf1\x00\x76\x41\xe8\x17\x19\xcc\x3d\xa4\x09\xcf\x47\xd3\xcd\xcd\xed\x99\x43\xb6\xf3\xcd\xfb\xea\x26\x0d\x9a\x38\x46\x04\x7c\x04\x71\x6a\xa2\x7c\x80\x42\x13\xe5\x3b\x40\xbf\xb1\x16\xdd\x1f\x50\x03\x6d\x8e\x4a\xe7\x2f\x03\x09\xd4\xa7\x69\x0e\xf0\xeb\x4f\x76\xaa\x99\x78\x50\xb5\x4f\x57\xd2\xfe\x70\xfd\xfd\x01\xfa\xb4\x30\x40\x81\x9a\x69\xa4\xc1\xfa\x87\xd6\x62\x76\xf8\x7e\xb5\xf8\xd3\xb5\xa8\x3f\x09\x22\xfe\x9b\xc5\xf1\xa3\xc2\x51\x13\x3f\x90\xb7\xd2\xae\x8d\x03\x90\x4f\x31\xe1\xef\xa9\x88\x3c\x7e\x55\xcf\xe4\x57\x37\x08\x51\xa2\x4d\x38\x90\x07\x27\x94\x1a\xeb\xdd\x3e\xec\x71\xe8\x07\xde\x28\x24\x21\x07\x14\x4b\xf6\xac\x18\xdb\xf8\xf7\x9f\x6e\xed\xf5\xd8\xe2\x7d\x16\x60\x1c\x1b\x3d\xd1\x74\xc5\x18\xa9\x67\x12\x2b\x8c\x8d\x93\xea\x2e\x29\x94\x97\x7f\xe0\xbd\x48\xfc\x38\x4a\x52\xa9\x4e\xa1\x9a\xb2\xf1\x7f\x94\xac\xea\xa6\x81\xd3\xd3\xdf\x0e\x05\xa3\x50\xc3\x1d\x6e\x82\xbb\x4a\x9d\x16\x94\xee\xd5\xa1\x3a\x2a\x36\x91\xe7\x21\xd1\xd9\xf2\x0f\x39\x50\x11\x91\xea\x2a\x1d\x68\x83\x25\xaf\xad\xaf\x1a\x34\x9a\x75\xf1\xd3\x48\xa3\x99\x39\x00\x41\x93\xf6\x28\x18\x2d\xd3\x20\xaa\x13\x78\xef\x8f\xa9\xfb\xd3\x60\xee\xf1\xd0\xbe\x18\x09\xea\xba\xdf\xc0\x6e\x96\x68\x1f\x00\x69\xaa\x48\x36\x07\x52\x2d\x5a\xe5\x3b\x7a\xb2\x80\x3e\xe8\x3c\xe2\xbc\x62\x74\xbe\xb7\xe3\xf1\x80\xf7\xbd\x23\x48\x06\xeb\x0b\x76\xcf\x1e\x6c\x5e\xa1\xd4\x5b\x73\xc0\xc6\x35\x3e\x7d\xc0\xde\x64\x65\xe1\xe8\x88\x93\xf6\x02\xa2\x04\xf5\xc7\xbd\x6f\x00\x67\x85\x79\x1b\x9e\x56\x76\xbf\x1e\x48\x36\x13\x4a\x43\x35\xc7\xa0\xbd\x51\x47\xd8\xa0\xd2\xcb\x9a\x96\x81\xb4\x16\xd6\x55\x0f\x56\x9d\xb6\x4e\x6b\x20\x02\x40\x49\xa1\xe6\x18\xbc\x61\xe9\xcc\x19\x83\xf0\xc1\x54\xc0\x97\xca\xf6\xee\x11\x8c\xd5\x31\x9f\x21\x3f\x62\xb1\x8e\x72\x44\xb2\xae\x3a\x09\x06\x33\xba\x49\xea\x24\x4d\x26\xc0\x9a\xca\xf5\xcc\x01\xac\xe6\xba\x5b\x73\xcc\x6c\x52\x9d\x4e\x08\x5b\x0b\xd7\x31\xc9\xbb\x9e\x1b\x78\x43\xd5\xcf\x17\x3c\x9e\x3d\x90\x4c\x36\x21\xd4\x3a\x60\x3a\x6b\x9f\xe7\x8e\x9c\x34\x1a\xd7\xca\x81\x6a\x5c\x69\x4b\x93\x1e\x6b\x20\x99\x61\xb1\x86\x6f\xec\x30\xe5\x5b\xbb\x36\x76\xf6\xa1\x2f\x76\x40\xc8\xe2\xff\xd9\x87\x40\xc1\x80\x63\x92\x4d\x6b\x83\x66\x2a\x2b\x3c\x06\x72\x41\xd8\x40\x33\xe0\x31\xdf\x2c\xac\x0e\x8a\x1e\x4f\xf6\xc1\xcd\xe0\x89\x40\x72\x08\x5b\x73\xc7\x11\xec\xc2\x4d\x50\x50\x78\x14\x8c\x53\xb4\xba\x6b\x1c\x0f\x7f\xd0\x5c\x9d\xf4\xfa\x11\xe6\x1b\x67\x92\xe1\x1f\x92\x0c\xb5\x81\x58\x46\xab\xb3\x06\xbd\xe0\xad\xa9\x19\x54\x05\xad\xf6\x97\xa3\x69\x9c\x4c\x15\xec\x8f\x71\x30\x5a\x44\x9f\xcc\x57\xe8\xde\x32\xd7\x99\x9e\x91\x67\x49\xe8\x6e\x5c\x49\xbf\x46\xc8\x28\x47\x6b\xcb\xc6\x45\xfa\xfd\x4c\x05\xb4\xf7\x1a\xd3\x03\x2a\xd1\xf5\x1c\xcc\x9d\x5d\xdd\x24\xd9\xc7\xdc\x80\x30\x47\x1b\x86\x06\x8c\x6d\xc5\xca\xaa\x01\x4f\x25\x1b\x24\x06\x3c\x95\x6c\x1d\x1b\x84\x39\xd6\xb7\x0d\xa6\xa4\x50\x0a\xe4\x39\x00\x73\x3e\x02\x82\x65\x9d\xad\x70\x1b\x89\x73\xcc\x1e\x37\xd9\xc3\x02\x1c\x39\x2a\x6c\x32\x1c\xf7\x89\x67\xf7\x79\x41\x79\xea\xf7\x91\x17\x46\x37\xd6\x71\x93\x68\x71\xc6\x83\x9a\x3f\xd2\xc8\x0c\x60\x9a\x6e\x76\xcc\x0c\x15\x9e\x47\xd8\xcb\xba\xf7\x0c\xec\x65\xb1\x7d\x7e\xe0\xde\xf7\xa8\xe1\x57\x64\x90\x1b\xa8\xf1\x62\x93\x47\xc0\x8b\xc8\x7e\x1a\xc1\x94\x15\x76\xff\x0c\x56\x74\xb1\x4e\x27\x7e\x5c\x6d\xb1\x6f\x00\xe9\xd8\x5a\x15\x3f\xae\xbe\x6e\xa8\xf1\x9b\x78\x61\xea\x99\xc3\x74\x03\x3b\x9e\xdd\x03\x1d\x88\xb5\x10\x01\x9b\x9b\xe7\x35\xe8\x89\xa4\x7c\x94\x33\xe8\xe2\x6e\x05\x5c\x30\x8b\x60\xf7\x30\x50\x01\xa6\x4b\x98\x04\x72\x56\xf4\x9f\xff\xe7\x89\xb3\xfc\x02\xdd\x52\xbb\xdf\x80\xdf\xcd\xf0\x33\x61\x8a\xe7\x01\x60\xc9\x2a\xe2\x40\xd9\xe8\xf8\x7c\xc0\xcb\x80\xe7\x65\x23\x56\x17\x4e\x89\x04\x4f\x92\x81\x51\x12\x31\xf8\x8d\xe4\x6a\xad\x5f\xe9\xe8\x54\x53\x55\x28\xa9\x3d\x35\x70\x7b\xb7\x3a\x3e\x0a\x43\x9d\xba\xfb\xc8\xb9\xd3\x0f\xb0\xfd\x7d\x3c\xcd\xa2\x52\x00\x48\x8f\x1b\xf0\x61\xb2\x65\x25\x90\xf5\xcf\x66\x91\x60\xce\x0a\x15\x65\x9f\x01\x9f\xa4\x8f\x5b\x4c\x20\x67\x45\x2f\xee\x22\xe7\x46\x93\x05\x74\x65\x5b\x4c\x10\x5d\xd9\x69\x25\x98\x92\xc2\x4e\x05\x41\x8b\xa2\x95\x91\x01\x8d\x98\x43\xb0\xa2\x31\xb3\x80\x3f\xc0\xee\x35\xcf\xd0\x5e\x68\x05\x69\x20\xf1\xb5\xcd\x0a\xd1\x73\x62\xb4\x80\x88\x74\xb4\xc2\x34\x5e\x6c\x15\x8e\x21\x8c\x8e\x79\x91\xba\x3b\x60\x3e\xfc\xd8\x30\x03\x3e\xeb\xd6\x3c\x47\x6a\xa8\x86\xbf\xc0\x34\xe8\xf0\x0f\x14\x61\xe9\x92\x48\xc1\x48\x48\x2b\x79\x63\x90\x24\x7f\x80\x80\x2a\xef\x6f\x78\x9c\x5b\xa1\x1e\xc8\xca\xd7\x75\x1a\x04\x2c\x79\x56\xa7\xc7\x20\x77\xd4\x3f\x39\xd4\x45\x66\xbc\x30\x47\xa3\xd8\xca\x47\x49\x17\x08\x92\xb4\x49\x20\x02\x0a\x60\x6f\x1a\x24\x03\xeb\x96\x36\x41\x5d\xbc\xee\xb3\x41\x2b\x9d\x55\x6a\x11\x88\x4a\x33\x3f\xc3\x26\xe7\x9c\x18\x31\x89\x67\xbd\xf5\x67\x6e\x11\x7f\x01\x44\x35\x2c\x90\xe0\x4e\x3e\x87\x05\xce\xa4\x5f\xc2\x70\x1b\xaf\xa4\xb7\xab\x6e\x30\xf1\x84\xaf\x77\xb1\x78\x1e\x99\x0c\x2a\x9f\x54\x1e\x70\x06\x0d\x77\xbe\x31\xc6\x4a\x81\xa2\x91\x65\x54\xa2\x25\x08\x6c\x6f\x56\x16\xc6\xce\x4d\x61\xc9\x09\xf7\x22\xeb\x70\x63\xa7\xf5\x50\xd7\xb3\x60\xaa\x88\xe1\xc9\x00\xea\xb2\x2a\x30\xf6\xec\xd3\x4d\xa0\x4f\x53\x79\x90\xe3\x84\x27\x02\x05\x4c\xac\xf9\x0b\x94\xba\xeb\xbe\xb8\x06\x52\x3b\x2c\xef\x75\x18\xdf\xac\x02\x0b\xb8\x17\xf5\x4f\x83\x37\x69\x74\x8b\xf4\xdf\xd5\x95\x31\x10\x78\xe8\x78\xcf\x20\xe4\x1a\x96\x82\x40\x58\xd6\x5f\x06\x00\x95\xd5\x70\x81\x0c\xcb\x56\x04\x06\x93\x45\xb4\x4f\x8b\x94\x60\xe1\x37\x88\x58\xa4\xe3\x8a\x93\x13\xa7\x51\x9c\xa4\xda\x82\xf6\x22\x91\xfa\x00\xde\xdf\x56\xbb\xc4\x95\xeb\xaf\xc5\x43\x18\x61\xdf\x2c\xd1\x2e\x82\x4f\x2f\x0e\x2b\x8e\xf8\x22\x15\x09\x93\x3c\x50\xaa\x7f\x86\xf7\x13\x9c\x90\x1c\x48\x15\xcc\x93\x6c\x65\x60\x10\x27\xd9\x59\x2b\xe8\xb1\x6d\x1d\x75\xd0\x6a\x37\x2c\x07\x91\xc9\xb8\x5b\x6f\x10\x34\xe3\x99\xb5\xa1\xef\xe9\xbe\x6f\x07\x81\x8f\x2e\xbe\xc1\xfa\xc4\xd6\xbc\x06\x5c\x8d\xba\x2e\xc2\x41\x05\x91\x35\xab\x81\x04\x10\xdd\x80\x30\x18\xfd\xd7\x3e\x6d\x32\x92\x45\xd3\xc9\x5c\xc7\xed\xd3\xe6\x81\x6c\x74\x1a\x06\x14\x40\xd6\xe6\xc5\x43\x51\xa7\xb9\x9a\x70\x36\xea\xbe\x09\x4f\x82\x23\xc7\x14\x4d\xd6\x1e\x71\x40\xcf\xfc\xe5\x1a\x4e\xfd\x00\xd7\x37\x49\x92\xf9\xe3\x9a\x76\xb7\xb9\x53\x3c\xf9\x8d\x9c\xdd\xa5\x1f\xb0\x3f\x84\x01\xe6\x0f\x74\x4b\x22\xce\x1f\x27\x57\x2d\xa6\xe6\x48\xcb\x31\x89\x7d\x24\x9b\xe6\x46\x1e\xd0\xc8\xe7\x96\x3c\xa0\x2e\x99\xb0\xcb\xf7\xa0\x09\xdb\xa1\xb5\x5d\x13\xbe\xdf\xd6\xce\xcd\x8d\x9a\x72\x9d\x33\x73\xcb\x71\x8a\xea\x2d\x97\xc3\x7d\x50\xb2\x87\xc9\x3a\xd9\xa9\x06\xc6\x24\xcc\xd6\xe9\xce\x17\x30\xc5\x94\x9c\x9e\x85\x03\xfb\x93\x87\xdd\x2c\xdc\x7f\x9a\x26\xb8\x96\xdb\xd9\x73\xa2\x42\x9e\xb5\xe0\xb3\xf0\xb0\xd6\xe9\x3d\x0b\x0f\x67\xa9\x52\x66\xe1\x96\xd7\x61\x3a\x59\x36\xd9\xea\xdd\x59\x49\xa0\x26\xba\xf2\x38\xd4\xf1\x3a\x2b\x85\xc0\xf0\x0f\x9c\x58\xcd\x12\xbc\xbb\xad\x1c\x9b\x19\xf3\x27\x2d\xd3\x24\x92\xf2\xc4\x53\x71\xa5\xb2\xdb\x73\xa6\x5e\x4a\x34\x34\xee\x3d\xb3\x43\xc3\xc4\x78\x58\x0c\x12\xb4\x12\x7a\x36\x48\x53\x2f\x54\xa3\xf5\x47\x4a\xa6\x89\x12\x79\xb6\x13\x4f\xfa\x72\xab\xf4\xee\x9c\x2d\xd7\x5a\x93\xfd\x62\xaf\xe2\x54\x08\x13\x95\x95\x7d\xd7\x9f\x54\x7c\x85\x34\x2b\xb3\x27\xd5\xfe\x81\x54\xab\x0b\xb8\x7b\x5b\x75\x39\x7b\x12\xa9\x99\xec\xdc\x9a\xee\x03\x8a\x2e\x1b\x8e\x67\xa2\x33\x61\xa1\x49\x74\xe6\x61\x76\xce\xbd\x34\x2f\x13\x9a\xb0\xf2\xa1\x89\xe2\xd8\xab\x07\x4d\x58\xfb\x10\x85\xad\xeb\x69\x80\x77\x58\xdf\xcc\xd1\xf4\x0e\xb3\x0e\x77\x0e\xa6\x9d\xf0\x0b\x1c\xb6\xba\x1c\xcc\x93\xa4\x1e\x47\xee\x5c\x2d\xde\x0b\xf8\xaa\x2f\xca\x93\xa9\x32\x54\xab\x74\xce\x41\x06\xf2\x33\xa7\x5e\x8a\xb2\x49\x1b\xa5\x2a\x89\xce\x19\x4c\x15\x29\x1a\x82\x6b\xe3\xad\x83\x3c\x67\x56\x78\x4c\xb8\xb4\x5b\x31\x33\x91\x19\x63\x99\x68\x1a\x39\x1d\x6b\x37\x19\x84\x68\x6d\xfe\x44\xde\x32\x6b\x72\x26\x4c\x9a\xdd\x34\xc2\xa4\x69\xcb\xee\x9c\x39\x8f\xfa\x60\x62\x27\x7a\xe9\x88\x12\x75\x2f\x9e\x2c\x19\xf2\xf3\xfb\x30\x1f\x78\x9e\x11\x51\xe8\x4b\xef\x5c\xfc\x5e\x43\x80\xca\x6c\x4a\xc3\x31\x17\xa4\x89\x54\x22\x93\x1a\xb4\x8f\x50\x5e\x60\x2e\xdd\x71\xe7\xe2\x88\x34\x05\x8b\xa7\x91\x19\x3c\xc1\x9e\x10\xc7\x24\xd8\x5b\x7e\xc6\x36\xd5\xf5\x72\xee\x3c\x21\xcd\xbf\x88\x05\xec\xca\x62\x3f\xe7\xce\x42\x12\x1a\x04\xb2\xaf\x5a\x65\x32\xa1\x61\xf3\x35\x7b\xa2\x96\x9d\xef\xab\x13\x81\x7b\x2a\x8a\x33\xe7\xc1\x75\xf6\xfb\x01\x6d\xa7\xff\xe7\x19\x60\xfe\xa7\x91\x4e\x25\x68\xe7\x84\x5b\x95\xaf\xed\xf3\xcc\x41\x6b\x50\x2f\xd4\x2b\x9b\xf7\xc3\x59\xe0\x31\x24\x92\xa1\x4b\xb3\x3b\xef\x44\x94\x5e\x73\x26\xa9\x79\xe6\x24\x68\xd0\x27\xc5\xba\xa9\x3e\xe9\x19\xe1\x69\x3a\x11\x74\x2b\xa0\x36\xa9\x21\x1b\x9f\x1f\xa0\x86\xdf\xca\x5f\x0a\xe8\xcd\x49\x3f\x2b\x95\x20\x9d\x13\xfa\x34\xdf\xb7\xe7\x8b\x0c\xeb\xf4\x76\xba\x88\x08\x8a\x7f\x80\x4f\xb2\x05\x15\x8c\x80\xbe\x0a\xcf\x8b\x07\xa7\xb9\x1d\x85\xe6\x7c\xbb\x9e\x37\x95\x96\xde\xa1\x37\x42\x00\x4c\x52\xaa\xbe\xbc\xc1\xee\x89\x2e\xc4\xcf\x19\x53\xe7\x0d\x04\x04\xe7\x6b\xd9\x04\x82\xb3\x1a\x72\x3e\x1c\xa4\xdf\xef\x00\x46\x9a\xf5\x27\x7b\x14\x3b\x3f\xc8\x41\xe1\x41\x43\x39\xe6\xcb\xf7\x84\x53\x96\x9d\x00\xe7\x83\xaa\xab\x66\xb6\x07\xa5\x03\x04\xf7\xd6\x2f\x57\x6d\xe9\x07\x52\xdc\xf5\x0c\x0a\x85\x79\x56\x62\x39\x5d\xb6\xd7\x0f\x0e\x29\x5a\x97\x05\xbd\x95\xef\x52\xeb\x07\x8a\x36\xff\x4f\x85\x82\xe4\xde\x02\x32\xf3\x10\xd7\x46\xe5\x9b\xff\xaf\x68\xc0\xcf\x74\xa8\x13\x45\x1b\xd6\x59\x50\x7d\xbd\x00\x69\x78\x0e\x17\xd3\x6c\x59\xe9\xbe\xa0\x1d\xf2\xfd\x70\x15\x1a\x9c\xb4\xc3\x17\x8c\x6f\x7d\xf3\x2c\x31\x6d\x82\x63\xf4\x16\x22\xde\xba\x12\x86\xcf\x55\x29\xed\x25\xda\x16\xfd\xa9\x54\xc2\x63\xae\xca\xa3\x57\xb2\x6d\x01\xd4\xf8\x6a\xb4\x2a\x6f\xa1\xdd\x2f\x80\xbb\xb4\xab\x17\x14\x48\xe1\x4d\xba\x68\x9f\x73\x0c\xdb\x02\xec\xf1\x8d\x6f\x51\x81\xa4\x8a\x07\x73\x35\xa2\xe0\xe2\x1f\x36\xcc\x85\x5a\x68\xc4\x62\xba\x40\xac\xc6\xd9\xd7\x72\x03\xf6\x8c\x4f\x03\x9d\x1f\xf8\x05\x9a\x30\x3c\x9b\x4c\x85\xe0\xac\xa6\x0b\x2a\xa6\x61\x0e\x7a\x61\xce\xff\xd1\x44\x21\xef\x99\xa2\x4b\x95\x8d\x1c\xab\x23\x8e\x4e\xb7\xc8\xc5\xe2\x67\x36\x1e\xac\x04\x25\x9f\x2f\x78\x76\xea\x1c\x58\x9d\xca\x8b\xcf\x27\x60\x1b\x89\xed\x45\x1f\x75\xaf\x06\x94\x4c\x43\x3a\x98\x95\x4a\x26\x9d\x03\x6b\xe4\xd4\xa9\x05\x96\xfe\xf5\x6e\x5f\x83\x73\xa7\xc9\x1e\xe4\x00\xb1\x08\xd4\x4e\x46\xce\x6b\x10\x20\x9a\x68\x38\x4a\x19\x7c\xaf\x41\x91\xb6\xdc\xe5\x83\x17\x34\xec\xa0\x48\x33\x91\x48\x85\x60\xd7\xc3\x15\x49\xa3\x68\x80\x2a\xca\x40\x79\x05\xb1\xb8\xf4\x2f\x0b\xbe\x58\x43\xba\xb5\x85\xfc\x5c\xc5\x46\x88\x15\x14\xcc\x1e\x46\xe4\x54\x6b\x1e\xe8\x42\x6e\x93\xc1\x02\x70\x31\x32\x5e\x2f\x70\x29\xaa\x8d\x3a\xd7\x0b\x5c\xb6\x3a\x05\x00\xd7\x84\x64\xb6\x94\x42\x4e\x2f\xcb\xfe\x35\x07\x84\x92\xe6\x81\x09\x57\xcb\x9f\x6c\x47\x0b\x5e\x59\x43\xa8\x65\xa5\x26\xec\x43\x0e\xd7\xc9\xcf\xd0\x8c\x59\x3a\xcc\x1c\x9f\xbb\x7f\x50\xce\x53\xe4\x31\xf3\xbd\x2a\xb3\xce\xb5\x48\xbf\x9f\x1b\xf7\xa9\x66\x88\x7a\x31\x23\xd6\x95\x79\x16\xfc\x8c\x11\x7a\x23\x2f\x0c\x42\x9a\xb6\x85\x82\x13\xbe\xf7\x2f\xfa\x5c\x0d\x8b\x51\xfa\x5c\x59\xf9\xbf\xe0\xc3\x6e\x80\xbb\xf6\x14\x60\x1a\xe6\x0e\xf6\x15\x4c\x59\x3b\xea\xae\x7a\xde\x90\xdd\xcb\xd0\x6c\xa5\x47\x95\x9f\x21\x07\x84\x62\x16\x94\x6a\x9f\x5d\x7d\x70\x96\x74\x71\x5c\xc8\x73\x6f\x84\xb1\x60\xca\xb4\x92\x6d\xd1\x83\xca\x46\x97\x75\x24\xc9\x5a\x29\xba\x54\xd9\xea\xb2\x0e\x0a\x5d\xdd\xd2\x16\x3c\xa6\x0c\x43\xd6\x91\xcc\xeb\x4e\xb0\x07\xa5\x5c\x5a\x80\x39\xd6\x8f\xac\x8b\x77\x0d\xef\x41\x66\xc6\x9a\xde\x20\xa9\xd2\xf2\xda\x5d\x41\xaa\xd4\xc7\xc5\x4b\x97\xb7\x29\x9c\xca\x3f\x47\x03\xeb\x78\x59\x30\x30\xb3\xbc\x03\x41\xd6\x3d\x90\xf2\x44\x44\x20\x97\xd5\x47\x4a\xb3\x26\xae\xb3\x26\xac\x9b\xda\xdd\xf1\x3f\xc6\xde\x24\x67\x9b\x5e\x59\x0e\x9b\x7b\x15\xdf\x0e\x5c\xec\xc9\xc9\x3f\xf1\xd8\xde\x43\x75\x34\x34\xd0\xd5\xc5\xb1\xb4\x7f\xa3\x22\xc8\x88\xe7\x18\x92\xf1\x0d\x5e\xe0\x7d\x8a\x55\x6c\x92\xc9\xcc\x64\xb6\x7e\x83\x48\x6c\xc6\x3d\xa9\xf8\xf1\x29\x9d\x14\xd9\xa4\x3c\x18\x94\x66\x0c\x0a\xb8\x2b\x35\x47\x07\x8e\x09\xa4\x2c\xfe\x60\xcd\xc2\x2f\x3c\xec\x52\xe0\x9f\x0b\x4d\x37\xb8\x4f\xe6\x9e\x3a\xfc\x1b\x79\x35\x6c\x91\x3a\x61\xbb\xb3\xa9\xe7\x44\x2c\x9c\xa9\xf2\x79\x90\xb9\x27\x7f\xc0\xba\x88\x7e\xe1\x64\x12\x8c\x43\x0f\x80\xa7\x3f\xbf\x5f\xb8\x86\xb9\x03\xde\x57\xdd\x03\x52\x49\xf9\x74\x9f\x74\x52\x72\xb8\xdc\x19\x10\x0f\x2d\x09\xe4\x84\xaa\xc9\x38\x76\x42\xd3\xd4\x55\x06\xa8\x9f\x61\xed\xaf\x96\x0d\x55\x93\x49\xd2\x89\xd2\xb8\x8e\xfb\x3a\xa1\x7a\xb2\x60\x79\x22\x3b\xa9\x8f\xd2\x89\xdc\x52\x87\x6f\xe9\x27\xd5\x4a\x36\xb3\x9e\x48\x2e\x65\xd6\x72\x52\x8c\xb2\x41\xf2\x8c\x6b\x55\x1a\x33\x52\xe0\x17\x15\x3b\xb7\x5d\x4e\xbf\x79\x3e\x83\xfb\x84\x24\x56\xdd\x03\x8f\xa7\x84\xa6\x33\x22\x47\xb3\x2e\xac\x27\xaa\x79\x55\x49\x06\x27\xcd\x74\xb6\xf4\x9d\x89\xee\x45\x82\x34\xb2\x97\xf6\xec\x76\x16\x8e\x55\x87\xcc\x66\xfa\x33\x02\xa5\xb2\x9f\x17\xa8\xaa\xd4\x94\x13\x89\x98\xa6\xfc\x89\x5c\xcd\x71\xe7\x27\xf2\x99\x9a\x9f\x9e\xf4\x90\xb2\xa9\xf1\x64\x15\x9e\xda\xfe\xca\x76\x74\x32\xe9\xbc\xed\xa7\x27\x05\x36\xe9\x1c\x4f\xea\xa5\x6c\xfc\x3a\x97\x40\xa6\x0b\xee\x99\xb9\x22\xcd\x88\x49\x07\xc2\x4f\x97\x38\x95\xd2\xcf\x9c\x10\xd8\x86\xb3\xc4\x9f\x99\xa7\x52\x37\xd4\x33\x53\xae\xf4\xaa\xe1\x16\x6f\x23\xee\x09\xc5\x54\x2f\x6e\x07\xe5\xd6\xb1\x3e\xcb\x9a\xb5\x96\x01\x8f\x2c\x4b\x19\x67\x29\x50\xd0\xb8\x43\x62\x86\xc4\xaf\x93\xf9\x51\x9d\x2a\xe1\x5c\x8a\x2a\x29\x27\xce\x42\x94\xf7\x17\x37\xbb\xf0\x24\x1e\x02\xc2\x83\x30\xbc\x44\xbf\x91\xeb\xca\x39\x37\x4f\x14\x1a\x6a\xc1\xb3\x86\xde\xe9\xe7\x04\xd4\x55\x3f\x49\xbf\xc9\xb5\xa3\x1f\xac\x10\x09\xfd\x5e\xab\x70\x0f\x74\x36\xf4\x08\x30\xcf\x76\xb7\x83\x16\x89\x87\x9e\x94\x08\x4d\x28\x3e\x89\xb0\x39\xa1\xe0\x09\x01\xd0\x82\xc5\xd9\xe0\xef\xeb\x19\xc3\x14\x69\xf3\xf0\x09\x79\xd0\xc2\xdc\xb9\xdc\xbd\x0c\xf7\x86\xf8\x02\x9f\xd0\xc6\x09\xf9\x83\x97\x2b\x12\x10\x1b\xa9\xa3\x8f\x20\xb5\x50\xb6\xef\x9e\x9d\x50\xd4\x9a\x3b\x91\xc3\xfb\x80\x00\xc2\x1f\x8c\x46\x9e\x85\x9f\x33\x0b\x3f\xfb\xe1\x48\xb5\x13\xd6\xcd\xe1\x55\x21\x9d\xbe\x2a\x2b\xf7\x93\x6e\xf4\x36\x08\x9f\x7d\x45\x45\xe8\xf7\x83\x48\x4c\x4f\x91\x74\xc6\x1b\xb7\x24\x38\x13\x1a\xb8\xd5\xdb\x1f\xf0\x64\xcc\xa2\x23\x72\xce\x4f\xc4\x8b\x3f\x5c\x04\x12\xdd\x90\xf4\x73\x8e\xb5\x08\x0f\x41\xa9\xc0\xd8\x84\xb4\xfc\xdd\x7b\xcf\xd4\x0d\xb6\x7c\x9e\x48\xdd\x50\xbd\x4c\x9a\x4a\x8b\x7f\x73\x15\x3e\xb6\x90\xf9\x7e\x18\x15\x45\x3e\x1f\x21\xb8\xab\x55\x63\x1f\xb2\xf0\x8f\xe2\xdf\x24\x8e\xfe\x1e\x94\xc4\x74\xe2\xe4\x0c\xbd\xf7\x27\x79\xab\xc1\x76\x32\x6d\xa3\xa0\x80\x44\x5b\x16\x6b\xcf\x73\x51\x4b\x0f\xb1\xd6\xa0\x45\x7d\x52\x62\x1c\x3e\x93\x08\x8b\x74\x72\x89\xf3\x22\x36\x65\x3f\x58\x80\xd6\x2c\x97\x0c\x28\xb5\xce\x89\x44\x5a\xc9\x57\xbb\xf3\x22\xbe\x78\xb3\x20\x15\xfa\x26\x77\x5e\xef\x07\x08\x1f\x3b\x24\x85\x3d\x4c\x59\x90\xf3\xb5\x4a\x05\x71\xde\x6b\x52\x1a\x01\xb6\x59\x95\x0b\xeb\xe7\x4d\x7a\x97\xfd\x05\x18\x7c\xf1\x0b\x9d\x2f\x68\x15\xf7\xa2\xda\xda\x3c\x1a\x67\x6d\xef\x3d\xe1\xf3\xf6\x23\x03\x20\x9f\x44\x29\x7f\xa5\x9f\x3b\x11\x37\x59\xbb\x27\x8c\x84\x67\x3e\x21\xcf\xd2\x2c\x68\x3e\xd0\x07\x0e\x3b\x24\x9f\x9f\xa0\x9c\x86\x61\xf0\x89\xc1\xd9\xc1\x7d\xe7\xb3\xb6\x41\x3b\x4b\xa1\xb7\xbb\x47\x10\x74\xb3\x56\x28\xfc\x0e\xef\x3c\x72\x4f\x0c\xd5\x45\xee\x27\xdc\xe3\x9c\x13\xf4\x7c\x90\xe2\xc5\xc2\x02\xcc\xc0\x3f\xc8\x87\x3c\x5e\xf6\xa6\x3f\x5f\xec\x9a\xd1\x00\xc5\x72\x7f\xa4\x8f\x17\x6e\x1a\x16\x04\x29\x64\x4b\xf3\x71\x22\xd5\x84\x43\x4a\x4e\xe4\x83\x1d\x2e\xe0\x73\xc2\x35\xae\x17\xff\x26\x03\xd2\x07\x93\xa4\xd2\x27\x18\x35\x03\x5c\xfa\xe8\x9c\x3c\xa0\x82\xf1\xe4\xe5\xc3\xa7\x63\xf2\xf2\x11\xfc\x00\xe9\x29\xcc\xfc\x27\xe7\xac\x35\xc0\x82\xec\x00\xda\x73\x9e\x48\x59\xe4\x29\x51\x39\x6d\x9a\x00\x8d\xe2\x30\xd9\xa2\xc1\xd8\x66\xed\x0b\x05\xa2\x5c\xfd\xe1\x62\xf1\x5c\x51\xf3\xeb\x60\x99\x8c\x43\xbf\x19\x79\xd1\xf4\x9b\x02\x4d\xf7\x07\x3c\xc0\xc1\x23\x34\xec\x9b\x7b\xa0\xa5\x4d\xc8\x7a\xb1\x00\x80\x2d\xe9\x17\x45\xfa\x9f\x39\x51\xc2\xe9\x1e\x14\x7c\xb4\x7a\xcc\xc9\x31\xd5\x03\x64\x7c\x17\x39\xb8\x02\xd1\x5d\xf2\xf3\x15\x88\x2c\x9a\x24\x24\x76\xd7\x55\xb8\x02\x27\xed\xf7\x59\x9e\xa4\xeb\xf7\x89\xf6\xa0\xdf\x17\x24\x76\x0f\xb8\x36\xc2\x1f\x20\xb9\xf0\x4f\x87\x94\xe8\x8b\x1f\x2c\x4e\xac\x29\x44\xae\x41\x8b\x8c\xd4\xaa\xf8\x37\xa7\x2c\x28\xa1\x16\x94\x73\x94\x5f\xc8\x33\xe6\x5c\xef\x57\x84\xc7\x83\xc1\x1e\x17\x54\xd5\x41\x5a\xf8\xac\x11\x90\x1d\xd6\xc5\x07\xae\xc4\xcb\x99\x08\xed\x45\x9d\xa7\x0e\xc0\xc5\x72\x01\xb6\xfb\x5f\xa8\x0e\xe0\x4c\xeb\x17\xe4\x63\x27\x39\xbf\x98\xb5\xcb\x0e\x0d\x57\x5e\x27\x42\x73\xc8\xeb\x96\xea\x37\x48\x5a\xc5\x16\xaf\x4f\x20\xae\x4e\x4e\x7c\x41\x81\xe9\xbc\xe8\x17\x7d\xe4\x9c\xfb\xf7\xca\x9c\x94\x87\x98\xf8\x2d\xc0\x2c\x9f\x39\x51\x92\x0b\x21\x0b\xc3\xe9\xb4\x2f\x06\x8d\x7a\xb7\xcb\x3a\xd8\x7e\x01\x7b\x23\x39\xec\x62\xb1\x5b\xc9\xaa\x57\xa1\xb2\x38\xfa\x01\xf0\x49\x2c\xea\x2a\xdc\x3c\xb7\x23\xc7\x81\x18\xce\x55\xc8\x79\x45\x6b\x2e\x78\xdd\x39\xe9\xf3\x45\xf5\xa6\x5d\x2e\xae\xba\xaa\x33\xea\x37\xa7\x20\x5a\x72\xc1\xa8\xea\x5c\xd5\x17\x84\xd9\x16\xff\xa6\xb4\x78\xbf\xea\xa2\xee\x5a\x71\xe5\x7c\x04\xa2\x25\xea\x6a\xb4\xc6\x5a\x7d\xfe\x8d\x2c\xb0\x06\x08\x34\x9d\x2e\x2c\x70\x21\x77\x46\xff\x39\xb1\x08\x64\x30\xcb\xbd\x98\x63\xac\x1b\x64\xb4\xd0\xda\x7b\xe9\xa2\xa6\xb3\x1b\xc8\xb0\xd0\x3a\xc5\xf3\xb5\xa4\x63\x83\x00\x9a\xce\xe0\x90\xbe\x0b\x51\xa7\xce\x5e\x7c\xf5\x85\x2a\x7e\x21\x21\x2c\x41\x60\x60\x16\x32\x3b\xb2\x5c\x0c\x43\xed\xde\xa8\x7e\xfe\xf3\xe7\x27\xdc\xee\x5a\x8e\x7c\xc3\x0f\xb8\x0f\xee\x72\xe1\xb3\xc7\x04\x3e\x1b\x74\x4b\x1c\xd6\x2d\xf4\x5a\x19\x3b\xf4\x01\xd2\x8e\x39\x91\xec\x35\xe8\xc5\x22\x59\xe4\x1a\xbc\x7b\x49\x49\x7c\x8d\x75\xa5\xd4\x18\x83\x14\x57\x9c\xea\x46\xce\x3f\x9b\xbe\xee\xc4\x63\x2a\x1a\x7d\x33\x7e\xc9\x02\xc2\x8d\x9a\xb9\x4e\x3d\x7a\xb3\xb4\x88\x19\xc5\xcd\x9a\x6f\x0e\xd4\xba\xe1\x60\xeb\x9c\x98\x37\xa9\x89\xc4\xfe\x9b\x97\x6b\x53\xf1\xfb\x23\x1e\x29\x78\xc8\x4c\x02\xa6\x9b\xef\x8d\xcb\xb5\x93\x64\xde\x79\x1d\x8a\xa8\x07\x54\x71\x68\x92\xf4\x0a\x71\x80\xd4\x4d\x6a\xa3\x63\x75\x93\xb8\x64\x8f\x30\x39\x27\x7d\x80\xa4\x80\x4e\x30\x75\xd3\x4b\xc4\x0e\x37\x37\xe2\xa1\x46\x17\xea\xdf\x8b\xba\x14\x7f\x52\xd0\x85\x26\xc9\x94\x7f\xe6\x56\x77\x59\xc0\xd7\xac\x0a\xcf\x42\xf3\x27\xdf\xba\x5c\x68\xe6\xa6\x05\xc6\x4e\x3b\x37\x03\xa2\x6c\x39\xbc\x61\x51\xb1\x55\xe0\xc6\xed\xda\x69\x85\x6e\x5e\x9e\xed\xdd\x72\x57\x06\xa6\x24\xbf\x31\x38\x4d\xed\x17\x72\xf8\x38\x65\xee\x8d\xeb\xb4\x9d\x09\x6f\x52\x20\xb1\x9b\xbb\x2e\x0c\x11\x02\x20\x05\x4f\x51\x25\xe7\x7e\xc3\x15\xd7\x59\x58\x6e\xd0\x80\xc3\xe5\xeb\xee\x06\xa4\x13\x1d\xbd\xdb\xda\x4f\x3f\xc0\x98\x22\x2b\x77\x23\x12\x4a\xc4\xba\x3b\xd7\xad\x39\x74\x6e\x86\x40\x8d\xac\x81\x4e\x7a\x70\xc3\x1c\x61\x37\x8f\x7b\xdd\x6e\x75\x9f\xb9\x51\x2d\xee\x07\xed\xe9\x86\x6b\xb7\x8a\x1b\x69\x04\xbb\x39\xf9\x4d\xbf\x5c\xb3\xfe\x1b\x41\xe1\x0e\xd2\xbb\x61\x5e\x70\x7c\xcf\xcd\x12\x71\xe6\xc3\x37\xd3\x06\x9a\x11\xdf\x4c\x1b\x68\x6f\x95\x1b\x24\xc0\x01\x34\xf7\x47\x01\x92\xc9\xd4\x0d\x02\x90\x6c\x1f\xb8\x4f\xd6\xdc\x11\x5c\x10\x5d\x65\xf6\x72\x9f\xcc\x75\xa9\x0e\xce\x85\xd5\x9a\x02\x0c\x14\x56\x16\xde\x48\xc2\xe3\x2c\x02\xf7\xc9\x88\xdd\xbf\xa9\xee\xda\xef\x93\x50\xd7\x2e\xb0\x7c\x9c\x8f\x10\x6f\xb6\xde\x04\x24\xf8\x71\xd0\xc2\x0d\xb7\x12\x3b\x4f\xdf\xb8\xd8\xba\xba\xc4\xfd\xdd\x6b\xd3\x0f\xf9\x83\x5b\x89\x7d\x0d\x6e\x84\x6d\xd9\xb7\xfa\xbe\x60\x00\xf2\x62\x11\x1b\xde\x9b\xfb\xe3\x01\x95\x74\x76\x23\xff\xcf\xe8\x62\x35\xf7\x05\xc7\x17\xf1\xf3\xfb\xbb\xe4\xa6\xf0\xd3\xce\x15\xb8\xc7\x09\xb4\xd2\xfb\x37\xad\x74\x9a\x21\x92\xfd\x34\x31\x89\x9b\x5e\x29\x3e\x19\xdf\x25\x38\xb9\x54\xc0\xfd\xdd\x81\xf3\x0f\x02\xdc\x8b\x91\xf9\x05\x12\x80\xee\x1e\x18\xd4\xaf\x19\xa1\x30\x8a\xb5\xbb\xf7\xba\x13\x47\xbf\x70\xc2\x21\x49\x40\xba\xd7\x51\xd1\x1a\x71\xcd\xb5\x9b\xd7\x8d\xc2\x28\x4e\xc3\x7e\xdf\xe4\x7c\x5e\x24\xf2\x05\xb9\x70\xca\xfd\x50\x92\xf3\x17\x4f\x02\xd2\x69\x9f\x19\x17\x66\x61\xf0\x66\xa1\x14\x8b\x93\x37\xe2\xc2\x4a\x30\x85\xc0\x45\xd8\xde\xe7\xf7\x77\x11\x8e\x76\x6f\xbb\x97\xc3\xb3\x87\x24\x65\xfd\x79\x01\xd5\xab\x74\xb1\xbd\x5f\x54\x2b\xf7\xe9\x7d\x69\xda\xf9\x79\x00\x82\xe0\x0e\x90\xc0\xda\x1e\xf3\x37\x6e\xc2\xbe\x1e\xdd\xb8\x09\x5b\xd5\x70\x33\x18\xde\x4e\x53\x37\x6b\xa5\x18\xf9\xd6\x55\x58\xfc\xff\x7e\x91\x2b\xa6\xb8\x47\x02\x5a\x22\xf2\x3d\x91\x2e\xc1\x64\x94\x39\x8e\x2c\x95\xdf\xcc\x71\x64\xd7\xaf\x7b\x22\x21\x96\xf1\x77\xdd\x85\xcd\x7a\x59\x1d\xef\x07\x1d\x26\xfd\xd1\x3c\x8b\x49\x8f\x4c\xff\x06\x7a\x98\xeb\x31\x41\xb5\x9d\xb9\xee\x75\xfb\x95\x10\xf9\x1c\xbc\x17\x4a\x99\xf9\xb0\xfa\x9d\x73\xfa\x3e\xbc\xbd\x36\xff\xc6\xc1\x15\x5d\x7c\x8e\x45\x5a\xfd\x00\xe8\xd0\xdc\x23\x28\x8f\x18\xeb\x03\xd7\x68\xbb\x95\x3e\x0c\x0c\xb3\xe8\xff\xc0\x37\xda\x9e\xaa\x0f\xef\xb2\x62\x40\x0f\xcd\x53\xd1\xbf\xb1\xfb\xc2\xf1\x07\x57\xdb\x26\xf6\xf1\xf0\x6a\x2b\x95\xc0\x13\x16\x5c\x3d\x00\x5d\x02\x8a\x7b\x5c\xdb\xaf\x39\x22\x94\xd9\xba\x9f\x67\x69\xce\x25\xf6\x3e\x64\xfe\x22\x8f\x0f\x42\x9d\x5b\x77\xfb\x3a\x34\x7e\x01\x99\xc0\xb4\x95\x0f\x43\x9d\x83\x2e\x69\x4f\xe5\x51\x17\xdc\xe9\xe2\x69\xed\xfd\x03\x8f\x4e\x2b\xd4\x1e\x5c\x28\xec\x1e\xf6\x34\x82\x45\x6b\x40\xa1\x5a\x9b\xa3\x9f\x46\x55\x8b\x7f\x37\x50\x70\xff\x5e\xb8\xa2\x19\x74\x0e\xd0\xff\x86\xff\x3c\x7d\xa1\xbb\xa6\xc3\x3a\x66\x41\xf4\xfb\xf9\xe4\x86\x64\xe4\x7d\xfa\x3a\x94\x9a\x30\x62\xa4\x5d\xca\xea\x61\x8c\x74\x10\x4f\x7a\x96\xa0\x20\xf1\xf6\x19\x0b\x9b\xb5\x86\x41\xc3\xa4\xd8\xd0\x03\x0f\x4e\xe7\x7c\x7a\x06\xa5\x1b\x6f\xdc\x92\xeb\x45\xad\x1e\x3a\x1e\xd8\xd3\xef\x39\xe1\xb4\xac\x53\xf9\xb0\xb4\x6b\x10\x59\x7f\xe0\xc3\x69\x6d\xeb\x73\x52\xc4\x92\xc4\xfb\x30\xbb\xaf\x23\xeb\x1e\x64\xd3\x6b\xb6\x8f\x3f\x17\xc9\xb4\x24\xdc\x07\x6a\x62\x73\x8a\xe7\x2a\xec\xc2\x2f\x34\x3e\xd0\xb4\xc8\x50\xed\x7b\xf7\xc0\x75\xc0\x3e\x47\x0f\xb5\xc6\xf6\xa5\x7b\xae\x55\x76\xdc\x5d\x40\x06\x10\x8d\x7b\xee\x05\x0a\x6d\x19\xf4\xc6\xf6\x4c\x7b\xee\x35\x2b\x6d\xd9\xbd\x60\xa3\x31\xee\x35\x4d\x6d\xd9\xdd\x79\xfa\x3d\x08\xcb\x56\x19\x0f\x11\xb4\x63\x27\x89\xe7\x86\x80\x6a\xc4\x62\xbe\x96\x50\xfd\x00\xf4\xc3\x34\x8e\x69\x85\xed\x19\xf0\x3c\x4c\xc7\x28\x79\xf2\x59\x3e\x10\xd9\x9f\x80\x64\x18\xf5\x59\x1c\xcc\x56\xf9\xe7\x21\xd5\x13\xdf\x7c\xc8\x04\x4d\x10\x1e\xce\x5a\x90\x80\xf6\xd7\xf2\xd6\x83\x58\x68\x1b\x31\x9f\x8f\xc7\x45\xeb\x2d\x1f\xb0\x34\xdb\x0f\x9f\x77\x1d\x1f\x75\xc8\x50\x68\x7b\x2e\x3e\x2f\xc9\x9a\x04\xd2\x07\x55\x18\x86\x11\xf5\x5d\x24\x46\x90\x7c\x51\x0b\x5b\x12\xeb\x43\x7d\xae\x9d\x23\x9f\x09\x11\x28\xfa\x85\xcc\x21\xfc\xa0\x40\xfe\xd0\x1c\xe0\xdf\x69\x7b\xe1\x43\x87\x09\x6b\x31\x9e\xc9\x65\x6f\x38\xbe\x8b\xff\x88\x35\xbf\x07\xc5\x8d\xe8\x37\x10\x89\x26\x94\x7a\x8f\x75\x9a\x86\x1e\xdc\xfc\x22\xe9\x01\x72\x3a\xeb\x48\xbf\xe0\x1f\xd6\xf4\xbf\x21\x70\x99\x1a\x82\xfe\x0c\xd6\x30\xbc\x61\x4d\xc2\x9f\x60\xda\x42\x98\x37\xd2\xc1\x52\x9c\xf6\x85\x2f\x41\xb3\x93\xc5\x4b\xaf\x4d\xdb\x98\x5f\xa6\x4c\xb1\xd2\xe1\x45\x7e\x5f\x5f\xa4\x5f\x64\x44\xb1\xda\xf8\x4d\x04\x8d\x44\xf6\x77\x15\xaa\x97\x48\xf1\x22\xa4\xd7\x4a\xdf\x17\x09\x7f\xad\x4c\x7f\x13\x97\x21\xc4\x7f\xa9\x82\xb0\xc2\xe0\x4d\x4b\xcf\xa1\x95\x23\xae\xc4\x26\x80\x37\xa3\xba\xb9\xd0\xf8\xcd\x0d\xed\xea\x00\xfa\x03\x6b\x94\x5e\xe8\x22\xad\x28\x7c\x51\x52\xde\x6a\xe7\x97\x75\xa6\x42\xf3\x07\xc0\x98\xe0\x09\x50\x8f\x26\xe9\xf2\x65\x21\xaa\xfa\x33\x04\x29\xb4\xa4\xc1\xb7\x10\x70\x7f\x95\xa0\xee\x65\x41\x01\xeb\x50\x5e\xe8\x12\x7c\xff\x7d\x11\x40\x62\x15\xd8\x4b\xc5\x40\xfd\x79\x40\xe1\xa0\xf8\x0b\xb8\x03\x8a\xd7\xbf\x70\xc5\xf4\xd5\xe8\xad\x6b\x23\x35\x24\x5d\x31\xad\x75\x79\x11\x00\x6c\x85\xc7\x0b\x4f\x4c\xab\xc8\xde\xca\x8b\x42\xf1\x07\x3c\xca\x52\x4e\xbc\x4b\x33\x20\xce\xf7\x32\x00\xc4\x7a\x98\xb7\x11\x65\xa5\x01\x79\xdb\x9a\x96\x3e\x41\x04\x88\xef\x33\x2f\xd2\xf9\x3a\x8b\xe3\xdb\x48\x25\xab\xbb\xac\xf8\x40\xeb\xa2\x46\xd2\x19\x14\x5f\x6a\x20\xad\x27\x7e\x99\x5b\x25\xc8\xfc\xf9\x42\xfd\xd0\xec\x94\xf3\x42\xfd\x60\x46\xf7\x42\xe8\xf0\x7d\xe5\x85\xb1\xdd\x32\xf1\x0b\xed\x83\x85\xe6\x17\x39\xec\x2c\xb8\xbf\xac\x43\xd5\xab\x5f\x00\x46\xfa\x4c\xf4\x0b\xbf\x35\x45\x46\x09\x8b\xf3\xbe\x2c\x7d\xda\x25\x42\xbc\x83\x33\xd2\xaa\x59\xe4\x20\x48\xe0\x7d\xe1\x2d\x69\xf1\xf2\x1d\x9c\xb2\xe0\x3a\x16\x1c\xfd\x01\x79\xa0\x04\x84\x17\x52\x8a\xc5\x98\x77\xf0\x2e\xec\xad\x18\x0b\x29\x3d\x89\x87\x0f\x3c\x08\xa5\x6a\xaf\x03\xc6\x73\x0b\x21\x2f\xab\xa3\x5a\xfe\x7b\xcf\xb5\x7b\x9a\xf7\xb9\x40\xa7\x41\xa0\x53\xb0\x68\xf4\x7e\x82\x4d\x74\x10\xda\x0b\x8f\xc9\x1f\xd0\x9d\x3c\xcb\x62\x38\x2f\xeb\x52\x05\x5d\x26\x5e\x0a\x3e\x5e\x17\x82\x57\xcc\x87\xdf\x8b\x93\x76\x3b\xf5\x5d\xba\x1b\xbc\x17\xaf\xab\x3f\x5f\x20\x76\xc4\x2e\x29\xef\xb5\xca\x60\x6a\xd6\x17\x55\x3f\xe2\x93\x2f\xc4\x9c\xae\x8b\xff\xfb\x89\x39\xcd\x6e\x5f\xef\x4d\x7e\x61\x9c\xba\x81\x73\xe2\x82\x2f\x22\x95\xcd\x78\xdf\x25\xe4\x18\xa7\x70\xf1\xff\x61\x72\x90\x71\x5c\xf2\xe9\x85\x88\xf3\xc3\xd2\x60\xfa\xb6\x7c\xf2\x32\xfd\xcb\xe1\x09\xc0\x52\xec\x09\x3d\xbc\x20\x4b\x54\x7e\x71\xcd\xef\x12\xcc\xde\xe5\xf5\xa9\x3b\xd4\x0b\xf1\xe4\x87\x3b\xf1\x8e\x6e\x1f\xe7\x17\x85\x11\x5c\xad\xf9\xfd\xae\xdc\xc9\x56\xa8\x97\xf2\x89\x99\x13\x85\x8d\x6e\x8e\xf8\x72\x04\xc1\x80\x0e\x9b\xf6\xf5\x79\x69\x4d\xb6\x57\xf4\xcb\xd2\x06\x76\xa3\x7e\xe7\x02\xbc\x96\x35\x17\x60\x35\x0b\x06\x14\x7b\x96\xac\x26\x1a\xa4\x56\x7a\x27\x23\x75\x8d\x93\x93\xd3\xd2\xe6\x52\x62\x29\x6e\x67\xb5\x10\xcf\x01\xc8\x21\x66\x33\x99\x43\xce\xea\xcd\xc9\xf2\xf1\x76\x65\x9e\xb8\x41\xe7\xf2\x57\x01\xae\x13\x85\x47\xcd\x1a\xe6\xc1\x43\x28\xc2\x3e\x8f\x45\x1b\x86\x1e\x0c\x04\x53\x65\xfd\xc6\xa1\x14\x37\x9a\xb0\x1d\x9b\x54\x4c\x24\x4d\x31\x95\x9f\xb8\x2d\x9b\x46\xcf\x4f\xf8\x49\x86\xf1\x0c\x9c\x91\xd6\x17\x2a\xd7\x97\xf4\x80\x36\x04\xdd\xb7\x27\xe3\x88\xed\xf9\x33\x03\xc8\x57\xf5\x0b\x80\xb9\xe8\xdd\x0c\x9c\xa2\xdf\x87\x6c\x1c\x3c\x25\x06\x73\xfd\x0c\x09\xf1\x4b\x27\x72\x46\x4a\x42\x3a\xb2\x33\x92\xa4\x36\xbf\x81\x23\x59\xfd\xc2\x82\xab\xe6\xc0\x98\x19\x7b\x52\x4f\x96\x5f\xc8\x7e\xe1\xfc\x84\x63\x5d\xfb\x26\x73\x18\x5b\x8f\x3d\x23\xe5\x00\x11\xb3\xc9\xca\x54\xe1\xa7\x0b\x62\xb8\x71\x25\xb2\x22\xaa\x66\x95\xb8\x17\x9a\x43\x5a\x79\xe2\xb5\x59\x69\xad\xcb\x5f\xf0\x42\xa5\x7b\xc4\x64\xa9\xa9\xea\x69\x25\xb8\x61\x09\xa1\x67\xe2\x66\xb8\x4b\xf2\x92\xe6\x41\xb9\x3b\x9a\x24\x4c\xd6\x3f\xbb\x99\x26\xbc\xd3\x04\x5a\xc6\x26\x3b\xf4\x64\x32\x38\xb9\xfe\x3c\x00\xca\x19\x87\x33\x75\x4a\xa2\x3e\x13\x95\xa8\xf2\x4f\x97\xc0\x39\x1d\xfc\x09\x9f\xd0\x1f\xc8\xe6\xb5\x7b\x5a\x04\xc5\x4c\xef\x26\x83\x97\x6d\x88\x9f\x14\x2b\x8d\x0f\x9f\x58\x99\x1c\x1e\x38\x33\x17\xe9\xdf\x93\x6b\x50\x07\x85\xd2\x91\xb1\xbc\x30\xe6\x41\xbc\x68\x32\x58\xb9\x7b\x2b\x90\x39\xe6\x07\xb0\x74\xf9\xb4\x55\x62\x16\x4e\x4a\x60\x80\xe0\x68\x8d\xf3\xa4\x03\xa7\x34\x36\x93\x5a\x26\x3b\x87\xcf\x41\x86\xab\x29\x20\x75\xad\x1d\x07\xe7\x92\x02\x7c\x78\xa9\xde\x30\x31\x40\x32\x92\x9f\xbd\x84\x07\x5d\x97\xe8\x3a\x4f\x4a\xc7\x26\x77\xe7\x5a\xa4\x1f\x2c\x04\xd4\x98\x9f\xd8\x90\x5d\xb1\x7c\x9e\x1d\xbf\x35\x67\x18\x16\x7e\x3b\xf8\x20\xff\x73\xb6\x4f\x4e\x49\x40\xa0\xc3\x9c\x2e\x35\x13\xb9\x4b\xec\x8a\x36\xaf\x88\x48\x12\x8d\x77\xad\x29\xbb\x03\x6c\x83\xa1\xc8\x2c\xb4\x76\x23\x9c\xc8\x6d\x62\x81\x7e\x7e\x02\x41\x77\x65\xc1\x09\x3d\x88\x6b\x1f\x4c\x96\x4e\xb2\x6f\xe4\xbc\x90\x2a\x57\xbc\x72\x2e\xbd\x88\x69\x2a\x73\x9b\xd8\xfa\x32\xef\xf8\x89\x14\xc9\xbf\xf3\x3f\x7f\xda\x30\x72\x41\x71\x62\x8d\xf8\xbc\x79\x73\xf3\x9c\xa1\x26\xc9\xf6\x3c\x9c\xcc\x6b\xdb\x7e\xc6\xa4\x48\x68\xaa\x4a\xa1\xa1\xd5\xbf\x4a\x96\x3a\x99\x0a\xc5\xb4\xeb\x59\x6b\xd2\x80\xd4\xa2\x18\x99\x99\x61\xce\xae\xe8\x93\x21\xb2\xed\xe7\x0b\x70\x16\xdd\x62\xe6\x32\x2d\xfc\x7c\x01\xd6\x25\x63\xc5\x7c\x79\x45\x31\x2e\xc0\xc3\xcd\x62\xcc\x7c\x49\xf7\x8d\xcf\x4b\x2b\xe2\xcd\x46\x1e\x5c\x5b\x06\xe6\xcb\x50\x3c\xb7\xd3\x26\xfb\xf3\x00\xd9\x1f\x8d\xbe\x48\x83\xdb\xa5\xf3\x9a\x2f\x2b\x73\x69\x51\x2f\x09\x89\xbf\x5f\xbc\xca\x1d\x00\x9f\xa5\x66\x9b\x50\xaa\x38\xfb\xea\x5c\x86\x01\xaf\x01\x61\x29\x5d\x9a\xa3\x39\x17\x98\xfc\xc5\x3a\x72\x1a\xe2\x13\x83\x92\xd5\x6e\x13\x71\x2b\x43\x0a\x8e\x39\xc9\xaa\x8c\xd1\x9f\x50\x93\x6c\x67\x9e\x73\x61\xf4\x1a\x62\x1c\xa8\x7d\x20\x62\x37\x8e\x03\x0e\xf2\xbb\xc7\x71\x1c\xbc\xe3\x74\x3f\x48\x1f\xd8\x0e\x7f\x40\xcd\x50\x77\x8f\xd8\x88\xad\x41\x1b\x07\xf4\x3a\xda\x88\x71\xac\x8a\xea\xd9\x3d\x5e\x58\x44\xd6\x6f\xaa\x75\x36\x5f\x1a\x07\xec\x06\x63\x0b\xc1\xe3\x40\x4a\x15\x11\x8a\x71\x40\xed\x13\xdd\x8e\xe2\x0b\xa3\xa9\x1d\x19\x55\xfa\x50\x7f\x28\xbd\x70\xfc\xfc\x86\x63\x9f\x27\x44\x41\x68\xf8\x77\xc5\xf8\x49\xbf\x91\xdc\x38\x78\x3c\xd2\x99\xaa\x25\x7e\x62\x50\x53\x7a\x95\x71\x84\x13\xbb\xe0\x01\xa9\xc9\xea\xfe\x00\xe1\x23\xd5\x1f\x60\x85\x87\x7f\x4f\x98\x07\x05\x74\xc4\xbc\x48\xf9\x32\x0e\xa4\x56\x19\xde\x94\x18\x41\xd8\xb4\x27\x11\xb5\x6b\xb3\xdb\x1b\xde\xd7\x1e\x45\x6a\x15\x86\x5f\xa0\x44\x53\xfc\xe0\x05\x9e\x68\xcd\x91\xba\x98\xae\x35\x21\xd0\x38\x19\x06\x48\x43\xa7\x74\x1c\xe3\x80\x8a\x4a\xda\xbc\x71\x24\x02\xd5\xed\xd4\x92\x55\x41\x1d\x69\x80\xa3\xa1\x0e\x71\x46\x01\x56\xe3\x48\x74\xea\x73\x3b\xb1\xc2\x1d\x92\xb1\x37\xbd\x90\x99\x9c\xc3\x50\x87\x0b\x5e\x35\xae\x33\x49\x9d\x12\x36\x8d\x23\x93\xc8\x0c\x3f\x80\x6f\xbc\x17\xc9\x90\x15\x2f\x12\xd2\xc9\x08\x82\x2b\x7c\x68\xfa\xcf\x14\x90\x82\xc4\x98\x96\x29\x49\xfa\x74\x41\x5a\x91\x17\xec\x38\x10\xd0\xa2\xb4\xfa\xe3\x28\x38\x7d\x41\xef\x23\x3c\x65\x04\xbd\x0f\xd1\xe4\x67\xc2\xf0\xc6\x1b\xc1\xdf\x83\x60\x04\x01\xb1\x7c\x98\x9a\xbd\x80\x42\xcc\x34\x22\x14\x40\x39\xfa\x05\xf2\x16\xe3\x76\x21\xd8\x35\x23\xc4\xa6\xa4\x23\xfc\x05\xef\x19\xc7\x27\xf7\x34\xe9\xd2\xc7\x51\xc9\x5a\x7c\x74\x19\xb8\xe2\xf5\x7c\x82\x51\xfa\x41\x02\x5a\xdf\xe4\xa5\x34\x8e\x0a\xcf\xff\xe4\x0e\xb0\x60\x9f\x14\x96\x80\x08\xfe\xcd\xeb\xaf\x21\x50\x1f\x58\x39\xfd\xc2\x8b\x1b\xbb\x20\x08\xef\x3e\x79\x7b\x8d\x83\x91\xcc\x3f\x53\x84\x32\x6d\x44\xcd\xa0\x91\x40\x0e\x2d\x12\x91\xcb\xd9\x48\x02\x65\xda\x30\x10\x90\x6f\x45\x79\x46\xc7\xd1\x3a\x7e\xbb\x9d\xda\x99\xe1\x17\x4e\x6c\xba\x5f\x40\x86\x67\xe3\x39\x9c\xfd\x86\xf7\x10\x39\xf8\xb2\xa9\x0d\x5c\xfb\x54\xed\x6d\x1c\xd0\xbc\x29\x51\xc8\x38\x3a\x57\xa4\x09\xf7\xf4\xcf\x9f\xa2\x1c\xb5\xe3\xa0\x81\xaf\xb8\x3f\xf2\x31\x6f\x0a\x55\x73\x9e\x30\x73\xfa\xfd\xcc\x18\x9e\x43\xc3\xf4\x0d\xaa\xba\x11\x85\x54\x7d\xa1\xa5\x80\xda\xc9\x23\xbc\x6d\x9d\x8c\xcd\x27\xa5\x63\x9f\x92\xb6\x85\x81\x31\xcd\x2f\x8c\x80\xb3\xa9\x2e\x97\xc5\xd0\xb3\x1c\x34\xfd\x14\x77\xc1\xeb\xae\x59\x1b\x73\x00\x06\x4f\x6b\x50\xc9\xed\x37\xce\x85\x1d\x9a\xe7\x49\x21\xa0\x09\xd8\x27\x19\xec\xcf\x1b\x38\xe2\x45\xf3\x64\x05\x89\xfa\xf3\x45\x85\x63\x9e\x3f\x00\x8a\x1b\x3f\x4e\xea\x98\x04\xbc\x93\x90\xd0\xba\x18\xbe\xdc\xcc\xf3\xa1\x6b\x1b\x3e\x33\xcb\x06\x39\x34\x85\x8b\x36\x0e\xef\xf0\xb5\x08\xa3\xdf\x00\x75\x4f\x5a\xf7\x45\x31\xd6\xfc\xe2\x93\xc5\xd3\x61\x9e\xca\x9a\x5d\x3f\x4c\xf9\xa2\x38\x55\x34\x4d\x88\xd2\xc1\x2f\x30\x31\xb3\xac\xfb\xe3\xb8\xd7\xfe\x08\x10\xcb\xa2\x68\x96\xb0\xdc\x6c\x3c\x2a\xd4\x6f\x87\x31\xfb\x5e\xa7\xdf\x2f\xa0\xa4\x55\x15\x28\x96\xac\xdb\xfd\x80\xbb\x61\xe0\x3d\x54\x8a\x78\x9e\x50\xb0\x8d\xa4\x2e\x1f\xa2\x6a\x17\x6c\x1e\x5a\xb3\x3d\xab\x07\x41\x3a\x06\x1e\xd3\x02\x36\x8b\x54\x2c\x02\x61\x71\x00\xd2\xb1\x52\xec\x8f\x03\x5e\x2f\x0a\x70\x1f\xc7\xb2\x10\x1a\x10\x2f\xd2\x4a\x15\xcd\x91\x41\xd5\xcd\x44\x0b\x39\x00\xf3\xcf\x0b\xb4\x4b\x1b\x0b\xa9\xa2\xfb\x11\x31\x26\x4d\x19\x66\x5d\x0c\xf1\xf8\x91\x0c\x27\x13\xe3\x68\x59\x73\xe1\x84\x06\x99\xdc\x40\xf7\x00\x09\x5b\x32\x47\x58\x1a\xb7\xe1\x07\x58\x77\xf6\x6f\xde\x00\x75\xfe\x02\x42\x32\x86\x45\xc5\xb0\x8c\x8a\xe3\x6f\x82\x5a\x47\x38\x28\xc8\x69\xab\x02\x73\xc2\x28\xc4\x63\x04\xd6\xf5\x52\x3c\xc6\x08\x81\x53\xd2\x80\x81\xca\x02\x41\x32\x04\x64\xce\x49\xfe\x80\x5e\xfd\xfb\x82\x37\x02\xb5\x6a\x16\x5f\x43\x20\x1a\x0f\x0f\x0a\xea\xb8\x35\x99\x23\x30\x39\x9f\x22\x2c\x46\x60\x2e\x3e\xd5\xb5\x1e\x81\x85\x1e\x64\x84\x1e\x21\xae\x79\x6b\xd4\xb8\x20\xa5\x4f\x22\x19\xa7\xfa\x8c\xb4\xe0\x18\xf8\x11\x8e\x50\xd9\x2f\x90\xe2\x0a\x87\x02\x4b\x77\xc9\x4b\x63\x04\xd8\x35\x15\x49\x38\x02\xcb\x94\x5a\xa4\x0b\x89\xc0\xf3\x6f\x02\xaf\xfa\x01\xd9\xfb\x70\x97\x94\x12\x75\xda\xc2\x32\x6c\xea\x30\x05\x68\xb9\x4a\x3c\x3c\x2a\xcf\xf8\x70\xa7\x0f\xdf\xd0\x2e\x33\x54\xb9\x1a\x8d\x72\xe7\x1b\xda\x01\x54\x2f\x8d\x9e\x28\x8c\x9b\x23\xbb\x07\x14\x16\xf5\xac\x90\x30\x4f\x85\xe9\x47\x80\x58\x97\x7e\xde\x47\x6c\x92\x41\xb7\x94\x50\xe2\x1b\x01\x99\x65\x54\x42\x76\x84\xb2\xa6\xa8\x1e\x21\xf8\xc9\x50\x30\x02\x05\xbd\xec\x76\x00\xca\x34\x23\x50\xf2\xd3\x35\x2c\x14\x86\xf5\x78\x33\x98\x9a\x66\xfc\x3c\xb8\x08\x05\x7d\x52\xd7\xfe\x69\x99\x10\xd7\x8a\x67\x0d\x6b\xe6\x30\x8a\xd4\x45\x12\xb4\x39\x15\x6c\x22\xfb\x77\xe3\x98\x5a\x27\x6a\x9d\x0e\x93\x80\xca\x6c\xb4\xfe\x00\x80\xad\xfe\xcd\x03\x6a\x44\xa7\xf4\x25\x4e\x15\xe0\x0b\x35\xc4\xc3\x03\xa4\xb1\xde\x3d\x62\x63\x52\x50\xcd\x19\xd2\x97\x2a\x9b\x8f\x00\xe9\xcb\x37\xa3\xd0\x16\xdc\xb4\xe8\xb6\xe0\xe6\x07\xd4\xc7\x18\x1b\x3a\xd5\xa4\xc6\x51\x0a\x54\x45\x5f\x74\xf2\x57\xb1\x9d\x40\x09\xaa\x1b\x01\x3b\x0e\x82\x5c\xa5\x47\xf8\x44\x2a\x57\x3a\x18\x81\x12\x54\x71\x0f\x6b\x56\x7e\x01\x6c\xc9\xeb\x42\x2c\x85\x6f\x1e\x01\x39\x91\x4b\x34\x46\xd1\xfc\xe9\x49\xd2\xc5\xca\x37\xb8\x80\x48\xe2\xea\xc3\x3a\x16\x49\xd1\xba\x99\xfa\xc5\x38\x3b\x68\xb3\x31\x86\xc1\xf5\x5a\x25\xdf\x46\x18\x6b\x0e\x7a\xc0\x3a\x15\xcd\xbb\x75\x12\x72\xea\xf2\xcc\x70\x20\x55\x8f\xe7\x82\x93\x66\xcd\x7a\xa6\x31\x08\x21\x60\xca\x1c\x26\xbf\x27\xe1\xa2\x55\x9d\xb8\xf0\x78\x95\x94\x9e\x4c\xcf\xaf\xc5\x08\xd5\xc1\x85\x3b\x8c\xe4\xca\x00\xe9\xa9\x44\xc9\xf7\x81\x85\x2d\xba\xbb\xbc\xc0\xae\xeb\x5f\x5d\x91\x02\x25\xab\xaa\x6d\xa1\x64\xd5\x0d\x65\x96\x53\x4d\x7e\x01\x0b\x34\x15\x86\xd5\x73\x0c\x6f\xec\x45\x6e\x61\xdc\xa1\x2c\x36\x0c\x76\x96\xcd\x68\x46\x1e\x94\x43\x1d\xc3\x50\xa4\x0b\xb4\x2f\x9e\xe1\xae\x70\x51\xd7\xac\x60\x09\x0d\x06\x02\xc2\x82\x93\x2e\xa2\x01\x75\x2f\x46\x75\x3b\xb6\xa1\x7a\x44\xdc\x61\x4c\x4a\x6e\x04\x11\x76\x8f\x87\x22\x66\x26\x90\xcc\xfa\x67\x96\x88\x7c\xce\xbe\xa9\x87\xa5\xc4\xd4\xfb\xf0\xf3\x1a\xd5\xef\x83\xfd\x59\xb4\x78\x3e\x89\x29\x98\x29\x33\xbb\x73\xf3\xb6\x3f\x27\xf8\xa5\x7f\x63\x01\xc6\xe5\x87\x1e\xba\x26\x1c\x70\x7e\x2e\xc6\x13\x4a\x7d\x96\x1c\xe0\x17\x36\x4c\xda\x10\xf4\xab\x3a\x3d\x23\xbc\xd0\x5a\x79\xc6\x70\x6d\x6e\x86\x30\xbc\xc0\x2c\xd5\x07\x38\x7d\xf5\xee\x2d\xa2\xe7\x72\xf3\x26\xb2\x3c\x6b\xf4\xa6\x4c\xfa\xcb\x79\x57\x26\x65\x13\xe9\x0b\x02\x13\xe3\x34\x77\x3a\xc9\x24\x24\xc4\x05\x98\x55\x47\xf3\x20\x0f\xbf\x10\xe4\xe1\x08\x36\x74\x7d\x89\x4c\x9c\x63\x75\x5e\x64\xea\xbf\xfe\xf3\x00\xfe\xaa\xd9\x5f\x70\x56\xba\xd4\x47\x78\x22\x0f\xeb\x5d\xe2\x81\xcd\x11\xf6\xc4\xe3\xe6\x24\x9a\x1e\x20\x9c\xbf\xf8\x03\x96\x55\xd9\x9b\x11\x03\x9c\xba\xc5\x2d\x23\x54\x88\x52\xdb\x8f\x08\x4f\xe3\xd1\xdc\x8e\x53\xaa\x7b\x44\x0c\xcb\x3c\xed\x0f\xa0\x26\x91\x30\x1c\xe1\x36\x36\xac\xae\x8a\x2c\x05\x11\xa5\x58\x88\x9f\x00\xd6\x0e\xb1\xc2\x18\x09\x58\xad\x29\x25\x7e\x10\xf5\x00\x61\x0a\xda\x89\x98\x98\x6c\x42\x60\x4c\x6b\x84\xa4\x07\x48\x99\x61\x20\x24\x42\xcd\x1d\xdc\x68\xd7\x8c\x18\x95\x26\xa7\xbf\x11\x11\x95\xe6\x43\x17\x33\xa0\xe6\x29\x33\x69\x9f\x7c\xbc\x46\xcc\x6b\xce\x9a\x13\xbc\xcc\xc2\xcf\x0b\x80\xa3\x8e\x79\x64\xd2\x3e\x2b\x3f\x62\x5e\x7b\xaf\x49\xc3\x0f\x4d\xd1\xfb\x23\x52\x05\xd7\x3d\xc2\xc9\x39\x68\x55\x28\xad\xaa\x74\xb6\x23\x32\x48\xd6\xfa\x96\x98\x71\x30\x8b\x87\x9c\x1c\x52\x43\xc0\xed\x6c\xe8\x64\xc7\x12\xf0\x81\x86\x64\x91\x2e\xab\x67\x23\xec\x83\x43\x37\xd7\xc8\x20\xb5\xe6\xad\x61\x71\x54\x31\xe7\x88\x98\xd8\x21\xc1\x2a\xb2\x88\xd7\xe1\x0e\x80\x4d\xba\x5d\xc7\xca\x93\xac\x8b\x6d\xac\x3c\x43\xc6\xa6\x0a\xe3\x99\x84\xe0\x08\x47\xb3\xd1\xff\xea\x5e\x14\x59\xb3\xbe\x1b\xd5\xa0\x76\x53\x16\x9c\x11\xa9\x75\x13\x5b\x8e\x08\x80\xeb\xdd\xa8\xc6\xf4\x31\x72\xbe\x1b\xb1\x51\x19\xab\x5d\x60\x3a\xbf\xe6\x13\x88\xa8\xd7\x61\xd5\x65\xa4\x4b\x99\xfc\x9a\x46\xa4\x9c\x25\x0f\xa0\x11\xdb\x8b\xb8\x1f\xbf\x30\x39\x0b\x75\x81\x74\x7d\xcd\xd3\x44\xc8\x6a\x32\xae\xc0\x31\xfd\x87\xae\xf4\x8e\x8c\x9e\xea\x90\x09\xf7\xe4\x28\x37\x62\x3f\x39\x05\xf7\xf0\xf0\x0d\xad\x8b\xa5\x26\xac\x71\x8d\x9f\x18\x15\x65\x42\x1c\x91\xf9\x58\x14\xb8\x37\x22\x9c\xc8\x86\x77\x6a\xf0\x48\x68\x11\x08\x61\x1d\xba\x12\x45\x56\x90\xb7\x71\x20\x22\x1d\x8b\xef\xf6\x91\x21\x70\xdd\xc7\x76\xc0\x1c\xe1\x55\xa0\x2e\xea\xd0\xf5\x27\xc2\xb8\x3c\x7e\x3a\x20\x1c\x7d\x08\xe9\x19\xdf\x4c\x91\x99\x6f\x45\x42\x54\x64\x32\xe3\x66\x52\x72\x32\x13\xa1\x0f\x19\xea\x85\xfd\x9c\x00\xf8\x83\x0d\xeb\x91\xe3\x45\xda\x21\x25\x47\x84\x18\x95\x7e\xce\x25\x73\xe6\x35\x93\x1b\xd8\x7f\x87\xe4\xee\x48\xfb\x6f\x33\x01\x43\x15\xd2\xa1\xcb\x42\xa4\x87\x58\xfb\xe9\x92\xb4\xc0\x07\xf1\xa6\xd0\x6b\xcc\x67\x61\xf8\x68\xe0\xdd\x24\xe4\x46\xf5\x25\x1a\x99\xc6\xd1\xa4\x2b\xa7\xbe\x11\xe9\x25\x66\x61\x24\x42\x71\x35\xac\x61\x8d\xf7\x9a\x87\x1f\xe0\x42\x2f\xef\xa4\x11\xe1\xea\x3e\x24\x5b\xc7\x07\xa4\x57\xc2\x78\x7c\x98\xac\x56\x4b\x7d\x10\xb7\x5f\xfd\x1b\x6a\x09\x71\xfa\x48\xf9\xa7\x0a\x54\xcf\x82\x9d\x07\x00\x89\xf2\x59\x78\x48\x15\x8d\x55\x2f\x67\xa0\x0f\x5e\xca\xee\x92\xb4\x23\x6d\xb8\x2a\x97\x33\x22\x6a\x57\x64\xd3\x84\x97\x64\xc6\x34\xe0\xe5\xa4\xfc\x01\x27\xe5\x59\xbe\xdc\x50\x0f\x01\x03\xff\xcf\x9c\xc8\xf7\x3d\x6b\xe8\xb9\x62\x73\x8f\x64\x69\x86\x1b\x3d\xe1\x65\xaa\x1e\x71\x46\x54\x09\x53\x0f\xc8\x94\xfc\x73\xfc\x26\x8f\x9f\xcf\x2f\x62\xb5\xaa\x89\xfd\x27\x32\x75\xd5\x12\x1f\x11\x89\x4b\x0e\x49\x96\x71\xa2\xe8\xb4\xa7\xc4\xd0\x2e\xaf\x61\xc2\xe5\x4f\x36\xa4\x74\xac\x19\x16\x3d\x40\x54\x54\xf3\xef\x8c\x2c\x41\xa2\x83\xe9\x80\x29\x5c\xfc\x2a\x1d\x0b\x8c\x55\x0f\xa8\x11\x49\xfe\x62\x62\x8e\xfa\x02\x6a\x2f\xf9\x69\x8d\xc4\xc4\x81\x72\xf8\x1c\x89\xf5\xb7\x6c\x63\x48\x4c\x0c\x28\xb7\x85\x91\x20\x11\x29\xc2\x60\x24\xd8\x48\x0f\xb1\x90\x14\x08\x96\xbf\x89\x71\x1d\x29\xac\x7d\x6d\x7a\xf0\x00\x06\xee\x0d\x3c\xbc\x79\xb4\x85\xad\x7a\x01\x0a\x31\x55\x56\x1a\x29\x82\x87\x4b\xfa\x4e\x31\x62\x3a\x02\x2a\x4a\xe1\x1f\xba\xc3\x25\xa6\x0c\xb4\x91\x3a\x45\x1e\x28\xff\x86\x9e\x2f\xb9\x43\x0a\x2e\xc9\x3d\x42\x27\x6b\x98\x46\x92\x69\x11\xd5\xc4\x62\xfa\xed\x67\x4e\x17\xee\x50\x1e\xe2\x86\x55\xd7\x3d\xbc\x98\xa3\x40\x0e\xa7\x33\x6b\xed\x53\x42\x9c\xab\xfb\x4b\x8b\x74\x69\x51\xf4\x42\x53\x1d\x9d\x91\x52\x41\x8f\xfe\x82\x4c\x59\xd4\x2f\xd1\x09\xcd\x26\xd3\x94\xb8\x8d\x7e\xe1\xfa\x7e\xeb\xf2\x99\x3e\x81\xaf\x1d\xc6\xcd\x25\xcf\x89\xcc\xa7\x4c\x9e\xab\x0e\x57\x5e\x02\x23\x2b\x04\xba\x94\x8d\x9c\x9f\x40\x97\xa2\xcf\x03\x3d\xbe\x44\xf5\x13\x4b\xe3\xdb\x64\x99\xca\xc2\x5e\x2d\x8b\x85\x59\x95\x66\x6d\xa4\x82\xe0\x87\xe2\x17\x28\x9d\xf8\x10\x22\xd1\xf3\xa1\x0b\x47\x2a\xa0\x54\xcd\x1d\x2c\x8a\xee\x1e\x28\x86\x8a\x59\xa5\xc2\x42\x8f\xee\xe1\x46\x8f\x9e\x35\x29\x93\x51\xfa\x93\xf1\xda\xe1\x03\x54\x17\xe8\xd5\xc3\x92\xb1\x74\xb3\x4a\x95\xaa\x50\xe3\x60\x25\x17\x36\x68\x10\x4d\xa0\x68\xa7\x91\x2a\x09\x81\xd8\x4c\x42\xda\xbe\x23\x78\x12\xbc\x43\x7a\xa1\x0d\x54\xdf\x63\x36\xc2\xd6\x48\xd7\xa8\xfd\x10\x4b\x4d\x6d\x21\x99\x50\x64\x69\xe0\x7e\xfa\x20\x63\xd7\x6d\x2a\x31\x95\xb3\xef\xb6\xa9\x11\x58\xee\x93\xfc\x52\x02\x71\x6a\x0c\x2c\xd6\xc2\x1a\xc5\x0b\x09\x49\xa9\x53\xa3\x61\x02\xc0\x92\x12\x72\xc8\x1d\x69\x69\xd0\x4c\x14\x57\x36\x65\xa9\x82\x12\x8c\x90\xd9\xd0\xeb\x6b\x16\x82\x56\xa7\xe0\x64\x3c\x5a\xc2\x9e\x0c\x0c\x69\xe0\x38\x04\xbf\x40\x44\xd3\x75\x26\x21\x9d\xf2\xe1\x31\x90\x7c\xaf\x1b\x4d\x96\x4e\x4d\xe2\x61\xfa\x84\xbb\x66\x71\x32\xd1\x24\x19\x4d\x25\x18\x1f\x20\x27\xdd\x91\xce\xb5\x65\x9a\xf6\xb9\xd4\x91\x9a\xd5\x89\x80\x65\xef\xd8\xd2\xb2\x75\xbf\xc0\xe2\x2c\xda\x8f\x25\xff\x99\xe5\x20\xa2\xa0\x58\x83\x9e\x4e\x0a\xef\x12\x32\x13\xaa\xd2\x1f\xc6\xd5\x8b\xe8\x2e\x40\x5c\xe0\x17\x92\xcd\xd3\x45\xe4\x36\x0b\x5a\x7a\x2e\x4f\xe2\xa6\xba\x5a\xc2\x79\xba\x41\xc3\xcd\xa3\x6e\xe8\x15\x8c\x66\x2c\x29\xdf\x4d\x49\x3e\xb9\xac\x7d\x97\x94\xbf\xe1\x49\x37\x8f\x9f\xa4\xcb\x74\xaf\x19\xba\xbb\xb5\x66\xc1\x11\xde\xfe\xc3\x57\xf4\xb4\xe4\x3e\x09\x34\xe9\x01\x14\x4c\x6f\x11\xd5\x1f\xbc\xfd\x0f\x64\xaa\x6e\x62\xf8\x70\xca\x1a\x93\x7a\x2b\x45\x10\x8c\x44\x73\x64\x37\x3d\x7d\x1e\x7c\xa1\x69\x53\x2f\xe5\xb3\xf6\xd0\xac\x63\xa6\x00\x6b\xa4\x55\x1b\xe9\x25\xf5\x34\xe3\x7a\x81\xd4\x3e\x6b\x2f\xb8\x88\x04\xe2\xf4\x92\x8b\x98\x15\xbe\x0b\xf0\x9a\xc3\xcb\x55\x68\x2b\xe9\x3a\x27\x47\xf2\x91\xe8\x2a\xd7\xcd\x26\x18\x20\x60\x7b\x47\xfa\xc4\x30\xe7\x4e\x1c\x69\x52\x47\x64\x46\x33\xd7\xf6\x68\xd0\xb9\xb2\xa5\xfb\x93\x45\x0d\x37\xf4\x33\x9c\xe3\xa2\x6d\x26\xf9\x58\x54\xa4\xe9\x01\x50\x4c\x1b\x9a\x0f\x5a\xb4\xd4\x67\x3e\x1a\x5e\x28\xfa\xdd\xd9\xa5\xbf\xa0\x18\x50\x3d\x28\x45\x17\x71\xab\x1c\x80\x13\x5a\x48\x0e\x1c\x53\x93\x0a\x04\x7f\xd4\xef\xc2\x21\x34\x26\x44\x31\x25\x54\x1f\x39\xc0\xba\x75\xf8\x03\xf0\x70\x91\xc6\x0c\xef\x33\x57\xe7\x1f\xf9\x13\x96\x9a\xdd\xc9\x72\x04\x93\x97\xed\x30\xb3\x6a\xe9\xf8\x79\x61\xf5\x20\x38\x25\x88\x5b\x12\x92\x33\x4b\x6d\xc9\xf7\x7c\xe4\x44\x1a\xf4\xf3\x80\xb6\x24\x31\xd0\x4c\xd9\x44\x04\x23\x27\xb0\x64\x6f\x05\xd2\x30\xd9\xb4\x94\x29\x99\x88\x0e\xe6\xb4\xb6\x5b\x70\x63\x46\x64\x6b\xd6\x73\x22\xe4\xc5\x2e\x73\xe6\xba\x35\xa7\xbc\x4e\x9f\xe6\x40\xe9\x46\x14\x27\x67\x08\x85\x52\x67\xe5\x4c\xa4\x74\x3b\x83\x54\x3c\x07\x3a\x84\xd9\x9e\x9c\x21\xab\x28\x69\xe1\xc8\x05\x72\x69\xf6\xef\x6f\xf3\x7d\xbc\x73\xa1\xdc\x2d\xfe\x9b\x99\xff\xc8\x0e\x4d\xb9\x00\x0e\xba\x5a\xe6\x82\xcd\xcb\xfe\x7d\xf3\x03\x77\x09\x19\xc0\xa7\xa0\x70\x33\x25\x89\x64\x4a\x26\x3a\xff\x99\x15\x28\xac\x79\xce\x95\x93\xd6\xd6\xd4\xb5\xb9\x82\x43\xe5\x29\x08\x7e\xc0\xcd\x12\x60\x2b\xb9\x98\xe1\xc0\xb0\x47\xf9\xf1\x8f\xcc\x92\x13\x0a\x38\x1d\x99\x71\x90\xf2\xca\x1f\xb9\x61\x9a\xde\xcd\x46\x6d\xb7\x04\xa8\xdc\x48\xc8\xc4\x08\x73\x03\x8a\x19\x96\x0d\x87\xd7\x93\xa0\x18\xa2\x3b\x72\x6e\x20\xa5\x3f\xdf\x03\x72\xc5\x33\xc0\xb5\x4a\xe2\x40\xee\xc0\x27\x09\x14\x99\x09\x86\x15\x44\x3b\x32\x73\xa8\x29\xea\x76\x94\x6f\x06\xe9\x2f\x39\x52\x69\x54\xf8\x6a\xab\xcb\xb2\x5d\x8a\x91\x97\xb6\x80\xa6\x07\x9d\xc9\x7d\x9a\x7e\x63\xe7\x24\x2b\x14\xcc\x50\x61\xc4\xa3\xec\x09\x0e\x3d\xa0\xb2\xa3\xf9\x01\x60\x26\x42\x5d\x3a\x25\x63\x1d\xa2\x82\x1c\xc8\xca\x56\x30\x4a\xc7\xd6\x57\xb7\x23\x5f\x46\xf0\x94\xe8\x28\xd4\x3c\x87\x09\xa7\x4a\xfd\x66\x01\x7d\xaf\x7a\xe0\x7e\xdc\xfd\x1b\x4a\x68\xed\x52\xa1\x0c\x26\x15\x40\x19\x20\x24\xd5\xed\x8b\x01\x6a\x06\x27\x10\xa9\xfa\x37\x95\x44\x3a\x94\x85\x3e\x5d\xc2\x8b\x72\x32\x30\x4c\x30\x81\xd5\xd2\x14\xba\x9c\x05\xc5\xce\xfd\xbb\x72\xe3\xdc\x01\x81\xe8\x0e\xc0\x1f\xc5\x23\xca\x12\xaf\x8a\xa7\x74\x51\x89\xe0\x29\xb1\xf6\xb8\xb7\xfe\x04\xae\x8a\xab\x17\xd4\xe3\x4f\xd6\x41\x17\x28\xe0\xa2\x3f\xb8\x16\x01\xd6\x24\x2e\x7a\xb2\x78\xab\x29\xa2\x35\xf7\xc0\xdc\x3a\x52\x9e\x95\x0b\xa4\xa6\xf9\x37\xce\x8f\x98\x63\xb9\xc8\x70\x8d\x6e\x17\x0e\x90\xe8\x44\x61\x6d\x59\xbb\x94\x14\x8a\x74\xde\x9a\x9b\xa2\x85\xa8\x59\x81\x4c\x67\x8f\x92\x42\x1f\x31\x05\xbe\x8c\x42\x1f\x31\x7b\x4e\x94\x1b\xf8\xd7\xdc\x03\x03\x95\x25\x10\x95\x9b\xb3\xd6\xb2\x6f\x42\x52\x80\x5a\x19\x87\x25\x7a\x94\x87\xe4\x4e\xdc\xae\x3c\xc0\xb8\x9f\x17\x40\x67\x3c\xc2\x03\x0c\xfc\x79\xbf\x83\x41\x6b\x8a\x4b\xa8\x93\x7c\x54\x1e\xca\x32\x3e\x65\x0f\xe6\xd8\xfd\x02\x79\x9b\x64\xb0\xf2\xf0\x14\x19\x0e\x0f\xa9\xba\x24\xc7\xc2\xaa\x63\x76\xd6\x28\x2f\xa8\x95\xbf\x78\x41\x1b\x74\x55\x29\x2f\x75\x40\xe2\xd0\x85\x72\x9f\x0f\xde\x92\xfb\x44\x81\x0b\x62\x32\xb2\x89\x43\x45\x11\x76\x55\xfa\x1d\x35\x2c\x84\x88\x7a\x40\x82\x25\x19\xbe\x52\x14\xd1\xf5\xa7\xc6\xc8\x17\xfc\x60\xcd\x4a\x5d\x44\x9c\x1d\x19\xad\x2a\xd4\x2c\xca\xd5\x37\x6a\xa4\x80\xec\x2e\x99\x8e\xc1\xae\x13\xf5\x13\x56\x92\xdd\x18\x2a\x95\x20\xd6\xc0\xd7\x44\x1a\x27\x12\x53\x3f\x59\xe3\x47\x65\x57\x59\xf6\xd3\x4e\xc3\x35\xd1\x04\x5f\xfc\xc6\x87\xe9\x8a\xba\x1d\x15\xf5\x16\x7c\x93\xac\x99\x97\x1b\x21\x76\xcd\xd8\x0d\xf7\x08\xcb\x9a\xd2\xbe\x8d\x0a\x17\x25\x55\x42\x18\x35\x03\x43\xa4\xc7\xac\x30\x83\x59\x8a\xac\x19\xbc\x4a\x66\x88\x5a\x80\x0e\x12\x23\x2a\x6b\x5f\xf5\xf4\x37\x49\x52\x47\x2d\x6b\x17\xb4\x6f\x85\xbc\x49\x54\xb6\x7e\x62\x48\x52\x4e\x9a\x51\xa9\x0f\x19\xfe\x00\xa7\x4c\x77\xa7\x4a\xa9\x44\xb7\xad\x5a\x38\x5f\x01\x68\x59\xc0\xbc\x40\xe4\x5e\xb0\xa1\xba\x22\x4d\xac\x32\x81\x8d\x5a\xa9\x8d\xd6\x00\x30\x7a\x29\xa1\xef\xa8\xf5\x3b\x94\xe1\xf0\xfb\x27\x72\x95\x69\x82\xf5\x46\xbb\xc7\x23\xaa\x8a\x57\x56\x78\x8a\xdb\xba\x54\x3f\x71\xa3\xd9\xc5\xa0\x36\x18\xf8\xb3\xdb\x17\xcc\x34\x83\x06\xe7\x77\xdd\xba\x2b\xaa\xb1\xdb\x9d\xae\x52\x3c\x91\xae\xa0\x36\xd4\xe4\xf3\x69\x82\xa7\x92\xdd\xb0\x2b\x33\x40\xda\xb7\xa5\x36\x8a\x7e\xc9\x23\x3e\x70\xb7\xf7\x88\x6b\x4d\xfe\x82\x04\xd9\x78\xd9\x79\x58\x44\xc2\x6b\x5f\x19\xdb\xb4\xd1\x9d\x5a\x47\x1f\x7a\xba\x8f\x5b\x81\x57\xe1\xfd\x64\x1d\x53\x45\xd1\xac\x61\x54\x81\x08\x61\xe5\x42\x65\xa6\x07\xbb\xbc\x54\x98\xe5\x14\x1d\x39\x2a\x7c\x9f\x2c\x13\xd7\x8e\xc2\x6e\x06\x1c\x44\x8a\x2c\x29\xa8\x22\x8d\xac\xd2\x21\x8d\x3a\x28\xd0\xea\xae\x51\x51\x06\x2b\x7b\x91\xa3\xa0\x43\xad\x80\x35\x13\x86\x4f\xe7\x68\x78\x41\xb8\x30\x3a\x7e\x6b\x49\x83\xd9\x3a\x9b\x3f\xa0\xbe\xd0\xf8\x8f\x08\x50\x95\xf8\x18\x15\xbe\x53\x2a\x29\x35\xea\x80\x06\xdc\x64\x8d\x35\x15\x6c\x31\xaa\x27\xd1\x4f\x60\x3f\x11\x13\x64\xf4\x3b\xd7\x36\x68\xc4\x93\x25\x36\x44\xbf\x2b\xd5\x3e\xb6\xcf\xd4\x93\xab\xd2\x98\xf4\x44\x17\x5b\xaa\x4b\x2c\x91\xa4\x54\xcf\x13\x1f\xf8\x37\x2f\x8a\xde\xda\x13\xc6\x0e\xa3\x38\xb4\x40\xd6\x77\xd4\xe5\x4b\xe5\x63\xfe\x49\x25\x4d\x65\x82\x47\xbd\x70\x4a\xbd\x75\x57\xfb\x56\xe9\x43\x77\xf1\x0c\xf8\x18\x5f\x2c\x3e\xe0\x0e\x6f\xc8\x62\x9a\x22\x64\x92\x6e\x97\xe2\x8a\x98\xcf\x6a\x06\x43\x35\x53\x73\x7b\x86\xdb\xb3\xc0\x08\x7b\x60\xf2\x92\x90\x2c\x32\x49\xf0\xaa\x37\xdd\x34\x04\xe5\x4f\x20\x71\x7d\xc6\x51\x99\x16\xcb\xb6\x96\xfa\x09\x24\x4d\x81\x88\xa3\xd2\x89\xdd\xbb\x02\x79\x24\x98\xd0\xdd\x2f\x7e\x6b\x42\x0f\xd2\x93\x7a\x9f\x59\x0f\x55\x25\x97\x46\x85\x38\x12\xbc\x8d\xf0\x95\x52\x06\xee\x51\x59\x05\xcc\x57\xeb\xfa\xc9\x23\x39\x49\x61\x50\x9f\x05\x64\xad\x09\x89\x21\xab\x71\x0f\xe2\x49\xf8\xf9\xbd\x80\xec\x21\xe8\x09\x68\x28\x2d\xf1\x44\x92\x5f\x45\x5a\x8a\x4f\x3a\xf9\x1b\xf6\x03\xdf\xa9\x9f\xd3\x05\xc1\x23\x4a\x3b\x5f\x5f\x22\xaa\x37\x11\x69\x21\xed\x8f\x5b\xdf\xe5\x6b\xa0\xdf\xbc\x13\x48\xf8\xa9\x13\x39\x60\xcd\x7e\x59\x94\x4c\x09\x2a\x46\x85\xbf\xbc\xd5\x17\x75\xa2\xca\x84\x41\x80\xd0\x4e\x9b\x80\xeb\x04\x1a\x48\x60\xab\x73\xa1\x81\x5f\xf8\x18\xa6\x72\x9b\x8d\x06\xbb\x60\xd2\x25\xa4\x31\x72\xd3\x8b\x6e\xc7\x22\xbc\xfe\x02\x67\x27\xfa\x37\x15\x45\xda\xe8\x06\xc3\xa1\x6a\xec\x8c\x76\x34\xb8\xb0\x75\xfd\x06\x15\xd3\x51\x68\xc7\x02\x63\xd6\x03\xa4\x52\xd0\x05\xa0\x1d\xac\xa8\xe9\xdf\x40\x4d\xed\x43\x83\xdd\x51\xc9\xb7\x47\x0b\x01\xbf\x0f\xfd\x4e\x78\x5f\x13\x60\xfe\x2e\xbb\x9c\xb6\x80\x19\xeb\x66\xd5\x60\x65\xb4\x70\xd7\xc2\x82\xa2\xa6\xcc\x50\x4c\x3b\x1e\x36\x98\x16\xad\xdc\x68\x81\x92\x73\xf6\x10\x0c\xc9\xd3\x6f\x16\x13\x33\x93\x6c\x11\x60\x95\x0e\xb0\x45\x04\xed\x4a\xba\x6f\x91\xd2\x61\xf5\x07\xa0\x8a\xde\xc9\x04\xa2\x27\xc1\xa1\x2d\x01\x54\x87\xa1\xd1\x90\xe7\x29\x25\x18\xf7\x87\xdb\x2b\xa3\xe6\x04\xc7\x4f\x20\x75\x59\xac\xd1\x12\xc1\x22\x28\x24\xd8\xa0\x85\xbd\x0d\xd2\x65\xb7\xbf\x67\x83\x74\x19\x8c\x5c\x99\x23\xba\x1d\x6b\xf6\x00\x19\xfb\x90\xdd\x61\x63\x87\xee\x00\xa8\x93\xdd\x01\x66\xa4\xe3\xdd\xf2\xca\xcb\xea\x1e\xc1\xdf\x86\x3b\x58\x17\x18\xad\x21\x83\x75\x48\xce\x68\xf4\xca\xd2\x11\x6e\x85\xee\xca\x6e\x2f\xbc\x22\xfb\x41\x45\xfe\x27\x8d\x50\xd6\x9c\xfd\x02\xb5\x54\x92\xa9\x1b\x74\x6b\x76\xa2\x68\x85\xd7\xb0\xe6\x07\x17\xbb\xf0\x03\x10\xbe\xec\xdf\x2f\x42\xf1\x34\x26\x54\x69\xc1\x27\x10\x01\x92\xd9\x07\x00\x6e\x5c\x56\xf7\xb7\x4a\x87\xba\xe6\x0f\xb8\x11\x82\x0a\xa5\x56\xa3\xca\xf2\xb8\x17\xa5\x6b\x95\x1b\x21\x64\x44\xc6\x31\x25\x5b\x1e\xad\x92\x96\x07\x8f\x00\xf6\x63\x20\xc0\x05\xdf\x94\xaf\xd5\x45\xba\x35\x85\x46\xcd\x82\x48\x59\x6b\x6b\xd2\x9a\x14\x24\x5d\x1b\xbd\xda\xf2\xfd\x12\xf1\x6c\x0d\xd8\xa1\x1b\x58\x6b\x38\x31\xc5\x43\x5c\xdc\x19\x0f\x01\x38\xeb\x3a\xd5\x1a\xef\x57\x26\x86\x4b\x70\x35\xa9\x62\xf5\xaf\xee\x4f\xa0\x9c\x73\x74\x59\xfb\xc4\xd4\x66\xfd\x48\xeb\xe0\x92\xe5\x6f\x4a\xb7\x8e\xd6\xb1\x0d\x92\xb4\x5b\xe7\x0d\xfe\xa7\x77\x42\x55\xdb\x00\x47\x32\x47\x04\xb4\xb1\x84\x31\xf5\x30\xd6\x19\xd7\x17\x2c\xcb\x65\x03\x66\x83\x8c\xd9\x4c\x1b\x07\xc5\x64\x63\xe7\x58\xe8\xea\x2e\x00\x35\xc9\xd1\x8d\xa6\x42\x47\xcf\xb6\xb1\xa0\xa6\x69\x9f\xac\x6d\x21\xa0\x50\xf3\x15\x4d\xec\x4e\x50\x6c\x1f\x91\x13\x80\xf0\xba\xa0\xc9\xb2\x7e\xa6\xc1\x1d\xff\x67\xd2\x27\x15\xe2\xc6\xa6\x93\x05\x22\x8d\x6f\xe7\x22\x04\x5a\xc5\xb5\x8e\xa9\xfa\xb8\xd6\xc2\xfd\x80\x6a\x77\x13\x4c\x26\x40\xf5\xf5\xba\x5d\x6b\xe5\x9a\x17\x5d\xe2\x6d\x35\x6d\x37\xb5\xc7\x9e\xc7\xcd\x95\x6a\x90\x9b\x2b\x55\x97\xf4\xfa\xea\x5e\x2a\xac\x8b\xb6\xab\xb5\x9b\x9e\x0e\x26\xaa\x4b\xf2\x33\xb0\x28\xf9\xf9\xec\xc2\x7e\xd8\xed\x6a\xd6\xee\x85\xe6\x1e\x94\x17\x36\xc3\x9f\xd9\x3d\x6c\xfe\x6b\x2c\x8f\x6f\xc1\xa3\x3d\x54\x8f\x6a\x1d\x0f\x79\xac\xa5\x80\x67\x2d\x44\x5b\xb2\xe4\x41\xcb\x01\x4c\x14\x1e\xa5\x7e\x6a\x0f\x75\x68\xa6\xde\x14\x00\x7d\xc0\x97\x7e\xca\xd0\x5b\x02\xa0\xb4\x4d\x6d\xa9\xa3\x8c\x59\xef\x9a\xb8\x3e\x79\xa9\x8b\x36\xc4\x91\xba\xdb\xc6\x95\xf6\xbe\x48\x89\xee\x76\x62\xb3\xf4\x70\x6d\xae\x2e\xf5\xc6\x04\xdb\xf3\x89\x41\x65\xd9\x94\xdc\xce\x3b\x53\xf7\x0b\x20\x0a\xc6\xb4\x09\x24\x30\xf6\x2e\x29\xce\x0b\x87\xd1\xd1\x4e\xdc\x0d\x75\x65\x95\x14\x77\xf4\x23\x40\x2d\xd2\xf4\x1b\x55\x64\xc5\x10\xfa\x27\xd4\xc5\x43\xdb\xd9\x19\x12\x39\x7e\x5e\x20\x9b\xcb\xfa\x5d\x11\x38\xe4\x0e\xc9\x10\x74\x59\xee\xb0\x48\x2a\xc1\xf5\xe8\x07\xa9\x44\xf7\x10\xd8\xbb\xee\x11\x28\xbc\x27\xcf\x79\xed\x9d\xc7\x80\x58\x27\xac\xec\x01\x56\x06\xed\x6d\x0f\xbc\x42\x69\x0a\xa8\xb4\x6f\xae\xd7\x03\x43\xa2\xdd\xbe\x16\xe9\x07\x24\x86\xa2\x43\x1d\x65\x67\x95\x94\x7d\xf4\x00\x55\xc8\x70\x8f\xa4\xbf\xcd\x1f\x80\xcd\x49\x60\xe9\xf4\x30\x73\x78\x78\x0f\x6b\x51\x7b\x6b\x3b\x43\x2a\x1d\xdf\xda\xa1\x8a\x0c\x42\xfa\x1e\xc9\xe6\x84\x6f\x9d\x82\xa1\x21\x8d\x18\xcc\x3e\x92\xbb\x24\xdf\xfb\xe9\x82\x66\x2f\xcf\x3b\xb2\x62\x86\xc7\x44\x1c\x83\x6e\x62\x7d\x59\x5e\xfb\x5f\x71\xa5\xbe\xcc\xb2\x22\xe7\x1d\x92\xa7\xfd\x81\x3a\x8c\xae\x56\x09\xf4\xc4\x1b\x82\xf0\xb9\x27\x68\x00\xbc\x93\x09\x34\x4d\x27\xaa\x23\x3c\x33\xdb\x68\xd0\x3f\x49\x33\xa9\x6c\xec\xe8\x09\x71\x3e\xd1\x1d\xe0\xcc\x76\xcf\x80\x60\x17\x99\xed\x99\xa7\x5c\x47\xac\x53\xd4\x34\x7a\x2e\x51\x53\x87\xb4\x2f\x51\xd2\xe8\x07\x55\xa8\x59\x69\x47\xb4\xa6\x73\x5e\x74\xa8\x3e\x2d\x59\x76\xd6\xa9\x71\x92\x9c\xce\xb2\x34\x46\x9e\xc2\x8d\xd4\x22\x0a\x2d\x23\x3f\x0f\xe0\x1e\x36\xdc\x23\xb4\x9f\x46\xae\x42\x82\xf9\xf3\x01\xbc\x78\x8c\xf1\xd0\x8e\xfa\xa2\xd4\x0b\xe2\xd4\xc5\x26\x7b\x85\xa1\x79\xf8\x37\x0f\x84\x04\xf2\x4e\xb9\x4f\x77\x8a\x5e\x09\x14\xef\x14\xc5\x3a\x23\x2b\x13\xcd\x46\xe3\x42\x03\x7f\xf3\x14\x1b\xb0\x59\x24\xbd\x9f\xf0\x67\x94\xe0\xd8\xa9\xeb\xf1\xf7\x74\x01\xb7\x69\xbb\x9f\xa4\x1b\xba\x03\xf4\x93\xcc\xca\x07\xe4\xc4\x46\x48\x07\xd6\x99\xb9\xc0\x86\xb6\x8e\xd8\x3b\xa7\x21\xe8\x17\x55\xa6\xde\x3a\xaa\x83\x0c\x17\x96\xd4\xb4\x7d\xa8\x5f\xd4\x43\xff\x8c\x41\x72\xf7\xd3\x27\xbd\x00\xdc\xc7\xcd\x14\x9b\xd9\x0f\x3e\xc8\x38\xf0\xbd\xdf\x84\x8c\x40\xb9\x3c\xc2\x8d\x70\x10\x0d\x1c\xf1\xdd\xef\x35\x2b\x7f\xb1\x66\xe5\x07\x04\x5e\xf1\x18\xa4\x4f\x26\x15\x0f\x8b\xa4\x68\x7b\x3e\x0e\x5b\x7f\xc6\x80\x02\xa5\x18\x74\x2f\x8b\xa2\x78\x15\x8b\x9f\x4a\xb0\xef\xf0\xeb\xb1\xc7\x6e\x7f\x79\xd1\x35\x52\xb2\xb8\x7b\xf2\xc2\x5f\x2a\x08\x4d\x0e\xde\x15\xe1\x2f\x70\xbf\x03\x2b\x77\x17\xbc\x5d\x14\x4f\xeb\xc2\x0b\xfe\xfd\xfc\xf3\x27\xff\xd0\xd0\x8f\x87\x97\x64\x92\xf9\x22\x97\x89\x79\x0f\xd5\x2c\xba\x70\xf5\xb9\x26\xad\xfd\x9d\x10\xe3\xcd\x0f\xe7\x9a\xb3\xbf\xa0\x3a\x4d\x53\x44\x56\x02\x3b\xbf\x75\xa4\xd0\x52\x11\xe0\x31\x96\x0f\x90\xa6\x38\x0e\xa2\x83\x5f\x28\x20\xaa\x6e\xa7\xfc\x24\x8a\x35\x98\xe9\xd3\x8a\xfe\x71\x10\x4a\x45\xbf\x11\x05\x2d\xdb\xcb\x40\x86\xac\xe4\x40\xab\x01\x97\x20\x2b\x08\x06\x8b\x3e\x9a\xdf\x8d\x8f\xa3\x36\x5b\x10\x47\x60\x9d\x7e\xb7\x67\xb4\x6b\x06\x81\x28\x2b\xb2\x3b\x3e\x06\xda\x1c\xfa\x3d\x96\x4f\x90\x4e\xda\xf8\xd8\x61\x8b\xba\xe0\x0f\x70\xc3\x78\xfc\x95\x7e\x6e\x2c\xab\x9d\x4e\xc8\x00\xab\x74\xd4\xee\x88\x6b\x97\x04\x44\xa4\x2b\x50\x8d\x9f\x31\x18\x3e\x57\xdc\xce\x1b\xa1\x57\x88\x1a\x90\x51\x97\xf9\x01\x67\x69\x23\xca\x48\x44\x7f\x49\xb5\x83\xce\xd0\xb6\xd1\x8d\xb4\x60\xa2\x49\x25\x0a\x11\x7e\x80\x04\x99\x25\x09\x7b\xc7\xd2\xa3\x48\x62\x1f\xd0\xa3\x38\x9e\x72\xe4\x0f\x37\x6c\x13\x1a\x99\x74\xbb\xb9\x4b\x22\xcb\x70\x97\xd4\x1e\xfd\x3c\x00\xb2\xe8\x1e\x38\xc0\xdd\x2c\x51\x0e\x18\xfa\x1c\x30\x37\x90\x67\xbd\x24\xe3\x67\xe6\x5d\x47\xec\x6c\x14\x6c\xa5\x64\xd0\xb1\x8c\x77\x22\xfd\xa3\x70\xd6\xc2\xa6\x8f\xbd\x35\x07\xd3\x8e\xc2\x14\x6f\xc3\x2f\x2c\x48\xb9\x87\xb5\x3d\x9a\x15\x72\xab\x97\x64\x9c\x2f\x94\x64\x7e\xde\x98\x7c\x43\x9d\x56\x72\x03\x71\xd1\x01\x5f\xd9\x24\x3d\xda\xa0\x51\xe5\xe7\xf7\x1a\x54\x3d\x30\x6b\xa6\x13\xdd\x8c\xef\xc2\xeb\x2a\x7a\x63\x2c\x23\x8a\x68\xff\x38\x49\x4e\x24\xf4\x8d\x93\xa0\x10\xf4\xcf\xb5\x81\x1a\x03\x01\xe8\x39\xf9\xf7\x27\xf0\xa8\x88\xc8\x18\x17\xc5\x48\x93\x07\x38\x62\x14\x67\x9c\x1a\x17\x0e\x87\x4d\x16\x03\x25\x41\x7e\xc0\xfd\x71\xbd\x64\x2b\xcb\x60\x89\x10\x9b\x2c\x06\xfc\x2c\x1c\xde\x31\x96\x4d\xa3\xf9\x8b\xc9\x07\xea\xf2\x5e\xb9\xd2\xfc\x60\x2d\x5c\xd3\xfc\x98\xdc\xcf\x7d\x78\x80\xc9\x59\xf5\x3b\xe0\x89\xe1\x18\x93\x01\x96\xe6\x88\x8d\x81\xdb\x6e\x49\x26\x6a\xb8\x99\xfe\xe0\xf5\x03\x02\x22\x1d\xe5\x80\x99\xc2\x01\x17\x83\xae\xaf\xce\x60\x32\xd6\x45\xb5\xbb\x47\x58\x5e\x7c\x80\xe1\x1b\xeb\x50\x83\xc1\x52\x1e\xbe\xff\x8d\xe7\x64\x97\x9e\x03\xce\x92\x69\x3d\x93\x65\xdb\xf2\x31\xe0\x3c\xeb\xa0\x8e\xf1\xf0\x2c\x75\x4f\x6a\xe2\x05\xf5\xf8\x2e\xca\xac\x49\xc0\x8b\xc2\x5e\xa8\xe3\x6d\x1c\x42\x5d\x4e\xa2\xb9\x98\xea\x98\x58\x86\x38\xf9\x98\x6b\x19\xfe\x02\xb3\x16\x07\x1b\x2c\x8d\xec\x18\xd9\x81\x62\x50\x59\xcb\x3c\x0f\x80\x5a\xca\xd7\x93\xa6\x83\x24\xfd\xf1\x79\xd0\x83\x45\x07\xe5\x3c\x40\x1c\xad\xcf\x3d\xc1\xe4\xec\x84\x75\x1e\x4c\x5b\x5a\xfd\x80\x9c\xbe\xbb\x8b\x8b\x5d\x78\x54\xaa\x7a\x7e\x06\x79\x21\x80\x78\x0c\xc0\x52\xb2\xdb\x19\xa8\x12\xd0\xe9\x3c\x19\x96\x64\x41\xeb\xfc\xd8\xde\x8f\x23\xe2\x19\x96\x34\xf0\x37\x4c\xe9\xc4\xa5\xb2\x24\x31\xa1\xf3\xbb\x34\x76\xc7\xd7\x9c\x61\x2d\x69\xe8\xc1\xcb\x25\x69\x86\x91\x7b\x27\x2e\x74\x92\xd1\x59\x9b\x7a\xae\x38\x70\x1d\xff\x13\xfe\x2a\xc5\x9e\x5b\x27\x03\x87\xac\xa7\x3e\x91\xc0\xda\xae\xcf\x67\xe4\x76\xab\x87\xef\x12\x97\x2c\x3d\x9c\x8b\xb3\xe9\x1c\x9c\x2c\x27\xe2\xd0\xda\x93\xd7\x3a\x07\xa9\x9e\x69\x2d\xdd\x6f\x7c\x14\xde\xd6\xab\x93\xb1\xe4\xe9\xe7\x0b\xb0\x53\x69\x4f\xcf\x0c\x1e\x22\xb9\xee\x64\xf2\x45\x87\x94\x9d\xe4\x84\x12\x26\xcf\x0c\xa9\x49\x1a\xdc\x33\xf3\x34\x0f\xbf\x00\x0c\x93\x78\x7a\x92\x33\x5a\x01\x7a\x66\xa2\xf9\xf0\x98\x38\x9c\x12\xab\xce\x4c\xea\xae\x21\xca\x9a\x93\xba\x84\x73\xad\x6a\xdc\x8e\xb3\x10\xcb\xc5\x4b\x4f\x32\x3e\x09\x93\x67\x21\x9c\xc4\xbf\xcf\x42\x38\x69\x4e\xcc\x04\x6d\xd6\x79\xc2\x44\xa0\x92\x35\xe3\x84\xf7\x6d\x94\xb6\xed\x64\xf1\xd1\xf1\xf3\x02\x90\x5e\x74\xf6\x84\x2f\xad\x3d\xbd\x4e\x28\xfc\xed\x07\x74\x56\x4c\x51\x3a\xdc\xb3\x42\x3c\xd0\xbd\xe0\x84\x67\xed\xcf\xb9\xc4\xbd\xcf\xce\x17\x27\x42\x37\xec\x7e\x79\x9e\xa4\x89\xba\xa1\x9f\xac\x61\x65\x85\xe1\x09\x4f\x42\xb3\x9f\x93\xd7\x38\x2b\x0c\xcf\x93\xdc\x45\x34\xef\x84\x55\xdf\x06\xe7\x73\x71\x38\x03\xfe\x5a\x80\xf7\x1b\xbc\x21\xf9\xa8\x5f\x64\xab\x9a\x15\x75\xbc\x3f\xf8\xc5\x22\x57\xd6\xe5\x9d\x64\x82\xd5\xbf\xc1\xdb\xad\x29\x3b\x51\xfd\xc1\x26\xe7\x73\x6b\x78\x35\xe6\xbd\xa8\xa0\xba\xb8\x99\x84\x49\x90\xa0\xf7\xa1\xa3\xdb\x4e\x64\x3d\x89\x56\x8d\x9d\x88\xe3\xfd\xb9\x2b\x9e\x37\xb6\x57\x02\xe2\x09\xe7\xc1\xf1\x43\x64\xc8\x06\x25\x10\x9e\xac\xe3\xe8\xc0\xc9\x93\x25\xac\x1c\xaa\x78\xa2\x6e\xe3\xcf\xf5\xf2\xa4\xc2\xd6\xea\xb2\x13\xc1\xbd\x8e\x20\x38\x11\xdb\xdb\x7e\x7a\x20\xec\x92\x27\x71\xe3\x05\x7d\xf0\xae\x59\xfa\x01\x37\xcc\xfb\xf1\xae\x59\x69\x4b\x91\x8f\xd9\xb6\x86\x73\xf1\x39\xb1\xce\xf3\x5d\x3b\x28\x70\x23\x98\x37\x99\x1d\xf0\x6a\x28\x6e\x7d\x32\xb8\xd7\x3a\x8d\x13\x19\x9a\xb3\xf8\xff\xf9\x82\x26\x89\x17\x9f\x2f\x60\xed\xf6\x09\xd0\x8a\xb1\x9e\xb8\x1a\x5a\x6b\x7d\x4e\x92\x45\x69\x92\xce\x89\xd3\x2d\x46\x7b\xb2\xe8\x44\xf2\x61\xa5\x7a\xd7\x6a\x97\x93\xac\x58\x9c\xf7\x64\x36\x14\x2b\x41\x4e\xd6\x65\x1c\xf9\x6f\x72\x75\x8f\x8b\xb1\xbf\x56\x80\x5c\xc7\x22\x61\x59\x0f\x22\x37\x3f\xea\x41\xe2\x1c\xfd\x06\x36\x42\x7c\xf8\x62\x3e\x66\x5f\xb9\x2f\xd4\x99\x38\x8c\x50\x17\x38\xf5\xe1\xdd\xbe\xc8\xa9\x1d\x17\x7a\x91\x13\x3b\xcc\xf3\x0a\xc4\x52\x49\x10\x57\xe0\xd1\x10\x33\xbd\x78\xa1\x14\xab\xbe\xc2\x1a\xd5\x7d\x82\x50\x75\xff\x26\x52\x4a\xc4\xb8\x58\xab\xd1\x51\x80\x57\x58\xa6\x21\x2d\x2d\x60\xc3\xc5\x7d\x2f\x16\xef\x4a\x22\x5d\x57\x04\xb1\x14\xc7\xb8\x78\xcd\x74\x96\xb4\x0b\x0a\xd8\xe1\x00\xc8\x2b\xae\xb4\x3e\x9a\x37\x33\x25\x9b\xdd\x5e\x1f\xbb\x2d\x49\x87\xed\x4a\x1f\xc1\xb6\x92\xe4\x02\xb3\x3d\x7e\x60\x45\xf7\x51\x6b\x7f\x2e\xd4\x65\x70\xd8\xc0\x95\x58\x14\x46\x73\xa0\xb3\xa8\xa3\x4f\x2f\x5c\x33\xed\xb3\x74\x21\xb1\xb1\xfd\x87\x2f\xf0\x56\xa7\x0f\xb9\x60\xad\x4f\x22\x10\xd7\xc7\x5a\x93\xc3\xea\xaf\xdc\x39\x45\x3f\x58\x60\xf0\x08\x3c\x7b\xc5\x5d\x4e\x74\x29\x48\x7e\xbc\xb5\xf9\xb2\x76\x21\xa2\x56\x85\xd6\xc6\x55\x16\x14\xd4\xc1\xc7\x29\x9b\x6f\x3d\x17\x18\xa5\xbd\xf6\x2f\xde\x18\xed\x21\x7b\x95\x45\x4a\x35\x04\xc3\x4e\xac\xea\xb9\x60\x1c\x1f\x87\x84\x94\xab\x92\x28\x49\x64\xb8\xea\x22\x95\x1a\xb5\xae\x95\x6b\x1d\xd4\x93\x5a\x37\x83\xea\xfe\xd9\x01\x38\xa8\xde\xdf\x6d\xb0\xbc\xda\x3a\x6f\x7e\x40\x60\xfb\x77\xc1\x07\xea\xb0\x91\x47\x88\xc3\xa3\x7a\xff\xd7\x83\x66\xc9\x7a\x9c\xf6\x98\x44\x2d\xfe\x6f\x96\xc2\x88\x8e\x0d\x36\x4a\xc1\xa5\xf2\x47\x5d\x83\xda\xfb\x5f\x17\x02\x37\x12\xca\x1d\x3f\x38\xd4\x89\x85\x12\x24\x2e\x9a\xa8\xed\x9b\x87\x72\xfd\xa1\x39\x9b\xdf\xc5\x7a\xde\x76\x28\x5a\xf5\xf9\xed\x4c\x83\xfa\xfc\x41\x05\x83\x07\xea\xf3\xbb\x7a\xf7\x60\x79\xfe\xc3\x51\x9e\xd7\x00\xda\x18\xf1\x06\xb2\x2f\x34\x7f\x40\x4c\xf6\x6f\xf2\x1d\x09\x1f\xd7\xe0\x7e\x49\xb6\x40\x41\xff\x6f\x08\xbf\x41\xbc\x31\xb0\x4e\x92\x26\x53\xc8\x93\x12\x77\xf2\x1b\xc0\x4d\xcf\xf2\x5c\xa0\xd1\x34\x3e\x21\x29\xa9\xe4\xda\xb8\x18\x7e\x61\x56\x73\xd1\x8c\xed\xb8\xcc\x0b\x66\xec\x1f\xc8\x9c\xac\xe7\xac\x59\x5e\x0b\x32\x5a\xc7\x15\x3e\xd0\x79\xd6\x4c\xd2\xeb\xb8\xcd\x0b\x9e\x90\x16\xd9\x2f\xd6\x05\xb5\x52\xf0\x82\xc8\x34\x1c\x4c\x7a\x21\x5e\xc3\xc2\xeb\x85\x72\x18\xce\x6b\x7f\xd1\x2a\x3e\xda\x5f\x25\xaa\xbb\x60\x32\x1f\x4e\xe9\x73\x41\xc0\x3a\x7e\x4e\x1b\x04\x2c\xdf\x19\x2e\x7a\x4e\xda\x6f\xf0\x82\x5e\x3c\x45\xff\x5e\x1b\x21\xac\xbd\x79\x3c\x3d\x65\x46\x6f\xf8\x74\x22\x78\x23\xfd\x0c\xb9\x36\xdb\x5d\x82\x4e\x49\xa2\xbf\x68\x0f\xb7\xc2\xed\x42\x6c\xc6\xcf\xf1\x45\x2c\x86\x3d\x52\xaf\x67\xcd\x49\xe7\xe4\x21\x58\xbd\x0a\x48\x4f\x56\x82\x5f\x0f\xc9\xb5\x57\x81\x88\xda\x6c\xa1\xef\x42\x64\xc5\xcf\x81\x87\x4e\x20\x49\x80\xbe\x5e\x60\xbd\x91\xe7\xe5\x1c\xb5\x6a\x08\x5b\x3f\xea\xd2\xeb\x5d\x93\xd4\x1c\xe0\xf0\x68\xe7\xc1\x0b\x7a\xf7\x61\x77\xff\x0b\x19\x81\x8b\x95\x67\xd7\xcb\xed\xfc\x79\x30\xf9\x40\x7d\x4e\x6c\xa7\xbb\x80\x38\xf5\xb3\x59\x30\x9e\xff\xec\xee\x24\x39\xf6\xb1\x42\x10\xaf\x9d\xca\xae\xb9\x66\xad\x75\x4f\x8a\x26\xa6\xc6\x4c\x3f\x67\x55\xe5\xc5\x20\xde\xe4\x73\xc3\x98\x5d\x1b\x08\xae\x49\x2c\x14\x52\xdd\x9f\x0c\xd5\x9d\x05\xef\x46\x19\xaf\xc3\x4e\x8a\x37\xdc\x22\xed\x48\x79\x43\x60\xb2\xd1\xff\x86\xd7\x63\xd2\x61\xbf\xa1\xad\xf7\xac\xef\x03\x38\x98\xdd\xdf\x02\xad\x3b\xb8\xf1\x41\xd7\x6f\x24\x5f\x6e\xfe\x80\xf4\x5e\xba\xb4\xfb\x13\xaf\xb2\xf9\xf9\xcd\x3a\xa6\xd6\x42\xde\x50\xef\x27\x49\x95\x37\xfc\x24\x0d\x95\x1b\xea\x7d\x6f\xee\x1d\x0a\x7e\x7b\x00\x92\x40\x4f\xf1\x13\xb6\x9a\x13\xd6\xde\x30\x87\x1f\x8e\xc8\xbe\x03\x91\xda\x50\x5a\xba\x0f\x29\x3e\x6f\x18\x00\x92\xec\x4b\x77\x24\xc1\x92\x96\xe9\x66\xe5\x54\xab\xe4\xef\x48\xc0\x6b\xd6\x90\xce\x52\x76\x8f\x94\xce\x9a\x5f\x20\xc2\x78\x2b\x58\xdb\xcb\x7a\xcc\x3b\xf2\x52\xe1\x85\x44\x22\x8c\x41\x05\x0b\x7a\x09\x7e\xe1\xc5\xa0\x9e\xd4\x84\xbd\x48\x93\x80\x89\x3c\x49\x58\xbb\xe9\x9c\xe9\xe0\xd6\x9b\xf2\x9e\xf4\x14\xf7\x92\xf7\xc4\x5e\xee\xa5\x5c\x31\x82\x30\x51\x9f\xfd\x39\x6f\x5a\xcd\x25\xfb\xdc\x08\x5d\x36\x3f\xba\x13\xcb\x48\x78\x08\xf2\xdd\xe6\x49\x61\x11\xd2\xbe\xdc\x8c\x16\xfa\xc1\x69\x46\x2e\x5b\x57\x7a\xc3\xac\x7e\x98\x41\xdd\x99\xb2\x92\x17\x0a\x3b\x7b\x92\xc4\x77\xe7\x86\xdf\xee\x01\xf1\xd6\xc6\x10\x96\x6f\xb5\x76\xf5\xa6\x76\x45\x5a\x80\xbb\x50\x52\x32\xa8\x69\x67\x70\x68\xf2\x5d\x28\xa4\x44\x7f\x02\x6f\xfe\xe3\xaf\x2e\x4b\x37\x73\xb0\x38\x3c\xf7\x86\x51\x3d\x15\x8f\x47\xa9\x56\xdc\xe3\x66\x81\x57\xe7\x5c\xbc\x0b\xb1\x5c\xea\x99\xbb\xac\x45\x09\x0a\x85\x54\x51\x1a\x9f\x1b\x1e\x9c\xc9\x6b\xa8\xbc\xa1\x89\x58\xdf\x75\x2d\xdb\x6f\x2c\xea\xed\x37\x08\x59\xcd\x7b\x09\xa5\xe2\x49\x37\x2b\xba\xfe\x9c\x8c\xc6\xb3\x25\x49\xec\x66\xc5\x56\xfb\x05\xdd\x8d\xbb\xa7\x31\xda\x3a\x3a\x7e\x00\xaa\xe6\x95\x32\xad\xb1\xa3\x5c\x6f\xfa\x58\xda\x39\xe5\x7e\x51\xc6\x5d\xf4\xfd\x66\x78\x9f\xa3\x52\xef\x97\xeb\x10\x68\x50\x71\xc9\x6a\xe7\x1b\x17\xfa\x24\x01\xf3\x7e\x41\x17\x25\x08\xdf\x64\x30\x12\x7b\xef\xb9\x56\xa9\x0e\x51\xa5\xda\x09\x3c\xee\x89\x4b\x86\x54\x86\xf7\x44\x80\x94\xc9\x03\x93\x44\x58\x95\x7e\x2f\x7e\xa2\x93\xf6\x2c\xcd\xb7\x8e\xe2\x03\x63\xae\x4a\xe1\x8e\x87\xcc\x40\x70\x7d\x8e\x86\x94\x81\x51\xbf\x01\x46\x49\xd1\xcf\x41\x07\x98\xe6\x17\x88\x74\x12\xcb\x1e\x68\xb9\x2d\x91\x3c\xb4\xdd\x3a\x4a\xf6\x21\x71\x17\x37\x78\x48\xbc\xc5\x03\x9f\xc0\xe4\x90\xfe\x4d\xb1\x4d\x4a\x87\x07\xd7\x60\xa7\x59\x7e\x90\xcb\xca\x11\x28\x4f\xe4\x9a\xb4\x66\xd8\x52\xb3\xae\xd1\x0f\xfc\xd3\x5d\xda\xe7\xa1\x6d\xf5\xe7\x7b\x98\xa3\xa3\xfb\x27\xff\x92\x8a\xe1\x49\x14\x66\x25\xe0\x3c\x89\x3b\x29\x3a\xfd\x24\x8a\xed\xba\xaa\x3f\x89\x01\xcc\xee\x82\x8b\x92\x12\xfb\x49\x94\xeb\x93\xbf\x00\xcd\x6b\xfe\x82\xab\x16\x14\x90\xbc\x21\x89\x67\x3e\x79\x6d\xb5\x26\x95\xc9\x8f\x24\x5c\x3e\xbc\x26\x7b\x23\x32\x2f\x51\xc3\x0f\x00\x38\xaf\x82\xc9\xac\x4c\x13\x1f\x78\xb9\xa7\xe6\x21\x78\xa8\x44\x76\x1f\x98\x5a\x9d\x81\xf2\xe1\xb5\x59\x67\xec\x29\x54\xe7\x18\xb6\x28\xd8\x93\x8c\xb0\x20\x59\xce\xc2\xf7\x2c\x7a\x24\xaa\xfb\x80\x1e\x39\x05\xc5\xf3\xd1\xa3\xd4\x7e\xda\xb9\x15\xa2\x68\xcf\xa2\x4f\xc5\x6f\x00\x0c\x3f\x2f\x2c\x30\x68\x0e\x95\x17\xd6\xe2\x37\x4e\xee\x8d\xbb\xe0\xcd\x42\xcb\xac\xf7\x77\x70\x0d\x86\x8a\xbd\xf2\xee\x37\xca\x68\x9a\x34\x42\x25\x93\x31\xba\x51\x94\x34\x18\xe0\x10\x6e\x53\xdf\xd3\xa8\xb2\x92\x30\xfa\x34\xda\x97\x8b\xbb\x7c\xf9\x40\x73\x62\xf2\x05\x6b\xa9\x9f\x4e\x76\x24\x15\xd5\xc3\x24\xec\x36\x50\x3d\xc8\x6d\x90\x7a\xff\x1b\x76\xf4\x74\xee\x9c\x3f\xe6\x75\xda\x07\xbf\x53\x74\x15\xeb\x78\x58\xd3\xc6\x4a\xef\x87\xf9\xa4\x24\x38\x3c\xc8\x16\x95\x6c\xc0\x78\x06\xf5\x19\x62\xc2\x0f\x7d\xbe\x0f\x5d\x5f\x9e\x41\x40\xa9\x0b\xe6\x2e\x38\x0c\xfa\x13\xbb\x2d\x95\xd8\x73\x62\xda\x32\x60\x3c\xab\xba\xcc\xe1\x07\xa0\xe2\x1e\x81\x99\x06\xec\x70\xf0\x9c\xac\xa0\x74\xf8\x01\x76\x5b\x64\xfc\x59\x16\x6f\x31\xbc\xe7\xc2\x76\x1b\xc1\x60\xe0\x3e\x7e\x3e\x20\x77\xf3\x2a\x2e\x9c\xb3\xe1\x17\xb8\x6c\xaf\xe2\xfa\x96\xed\x9c\x71\x0f\x32\x11\x24\x43\xf6\x5a\x93\xf6\x14\xc8\xf9\xbd\x6e\xa6\x1e\x70\x80\xf5\x73\x1f\xfc\x44\x6f\xdc\x38\xbb\xc6\x0e\x94\x7e\x34\xbb\x7b\xee\x75\xb0\xfc\x02\x41\xad\x31\x71\xfd\xcd\xde\xcd\x75\xfd\x15\x4f\x7e\xee\xb5\x2c\x01\x66\x95\x93\x3e\xdc\xe5\x44\x17\x02\xcc\x93\xf0\x5b\x1f\x3c\x94\x3d\xc5\x93\x9f\xef\x3a\xdb\x9c\x5b\xfb\x79\x50\x10\xcc\xbb\xfb\x90\x62\x79\x92\x0f\x77\x53\x8a\x88\x87\x89\x40\xcd\xb6\x9f\x65\x1c\x30\x20\x5e\x9e\x56\x43\xfb\xa5\x48\xac\xab\xe3\xf3\x72\xe5\xfe\xa2\x11\xb6\xfe\x82\xda\x61\xdd\x58\x9e\x75\x5f\x95\x70\xf0\xc0\xd9\x3b\x1f\xfe\x62\xcd\xd3\x2f\x10\x34\x5a\x39\xcb\x33\x5a\x03\xf9\x4c\x44\x55\x99\x58\x23\xd3\xe7\xe1\x1b\xf0\x43\x6f\x6f\xe7\x03\x7e\x60\x89\xcf\xd2\x40\x3e\x10\x27\xec\x31\xf4\xc0\x1c\xe0\x28\xa8\x67\x62\x8e\x06\xdd\x5c\x73\xdc\x70\x78\xe9\x4b\xe6\x98\xf0\xf7\x58\x80\x18\x7a\x70\xf2\x8d\x43\x0f\x1e\x3e\x88\x7a\xb0\x3a\xdd\xa0\x7a\x99\x8a\xd3\x32\xc9\x8b\xc2\xce\xc9\xba\xa5\x17\x86\xed\x26\xfd\xd6\x4b\xcd\xba\x03\xa4\x5f\xe6\x61\xb0\xa8\xf6\x7e\xb7\xbd\x96\x3d\x71\x64\xca\xc9\x1e\xb3\xd1\xee\xa9\x1e\x11\xc0\xe3\x9a\x67\x6f\x5b\x1c\xc2\x2f\x5c\x1c\xd2\x3d\x7c\xc2\xa0\x33\x2a\xbe\x8d\xb0\xf3\x07\xab\xbc\xdf\xfe\xdd\x57\x7e\x02\xbd\x80\xf8\x1d\x3b\xba\xbf\x88\x2a\x1f\x0e\x3e\x7e\xa1\xf1\x4c\xd6\x4f\xbd\x1d\xdb\x69\xb0\x40\x19\x99\x45\x4c\x51\xef\xbf\x65\xf1\x62\x94\xfb\xcf\x96\xb1\x51\xde\xbf\x65\x11\xf4\x97\xfe\x48\xc7\xcf\x03\x06\x23\xbb\xc3\xce\x17\xfc\x60\x41\xc1\x53\xc0\xaa\x45\x63\xde\xa5\xbc\x94\xd4\xf3\x0e\xa8\xa3\xbd\x53\xe7\xc2\xd1\xbf\x72\x71\x78\x4f\xce\x58\xdb\x82\xd2\x62\x49\x7c\xf9\x65\xf5\x0c\x8b\xbb\x2f\xb8\x41\x8e\xfe\x0d\xba\xaa\x73\xfa\x9e\x64\xb3\xde\x96\x93\x0b\x10\x8c\x17\x33\xf0\x8a\x4e\x06\x3c\x48\x56\x78\x97\xe6\x53\x52\x3b\x4a\xff\x7f\x9f\x68\x96\xd0\x74\x3a\x79\xd8\x7b\xd1\xc1\x52\x63\x82\x1b\xe4\xe8\xdf\x20\x1e\xd9\xbf\x51\x95\xd1\x87\xec\x63\x06\xa9\x79\x8e\x1f\x33\xc8\xed\x67\x02\x3c\x62\xc1\x0f\xe0\x84\xda\x3c\xa1\xf9\x75\x20\xd9\xe2\xbd\x19\x26\xe2\x7d\xbd\x91\x92\xf7\xe7\xf7\xc2\x0c\xc1\xf1\x5e\x98\xa0\x39\x22\x57\xe0\x4f\x92\xee\x17\x59\x67\xec\xe8\xfa\x22\xd4\xa7\x4a\x16\x78\x1f\xea\x87\xd5\x01\x2a\x97\xf9\x2e\xfd\x42\xaf\x99\x93\x7f\x53\x76\xf0\xaa\x9f\xfe\xcf\x9f\x52\xb3\x5f\xf8\x6e\x6b\xce\xa7\xf5\x2e\xb5\xa6\xd6\xf0\x70\x42\x5a\x02\x5c\xa1\x9c\x3f\xe3\x7d\x40\x22\x92\x27\x34\x09\x45\xcd\xf8\xe3\x13\x2d\x4b\xe7\xf4\xbe\x54\x41\x88\x5c\xbe\xc8\x1f\x93\xbd\x0f\x4b\xab\xa9\x8b\xca\x8b\x34\x81\xf9\xe7\x03\xca\x74\xd5\x5d\x82\xe6\x1b\x48\x73\xe1\x96\x1f\xa0\x6a\xa9\xe5\xc4\x77\x52\x1b\x28\x4d\xc9\x0b\xa3\x70\xfe\xf9\x4d\xb8\x25\x3f\xe0\xd6\x89\x35\xbd\x88\xdc\xce\x62\xa9\xef\x5c\x0b\xdf\x5f\xcc\x45\xe5\x45\x2d\x27\x23\xb3\x1d\xa2\x3f\x97\x09\x36\xfb\x8d\x17\xe5\x48\xa2\x7e\x53\xab\xa9\xdd\x9a\x81\x2a\x01\x5d\xca\x66\x58\x2b\xf3\x1b\xbc\xef\xe8\x1a\x38\xe1\x0c\xe5\xdc\x85\x33\x2c\xf8\x6b\x16\xb8\x68\x66\xa1\xf5\x5c\x7c\x23\xf9\x05\x6e\x88\x6e\x48\xa8\xff\xff\x3d\xf0\x27\x14\x50\x7e\x06\xa1\x60\x9e\xfd\x60\xf2\x8d\xbd\xa9\x13\x71\x35\x76\x14\x9c\xd0\x23\x66\xc9\xe9\x33\xae\x1d\xf2\x07\xd4\x12\xe9\x22\x87\xfa\xfc\x2d\x0b\xf5\x51\x7c\xff\x9b\x95\xba\x48\x5c\xa9\x2e\x2c\xa8\xa5\x1f\x7e\x4e\x34\x6a\xe7\x7f\x0f\xb4\x54\x16\xcf\x77\xd6\x05\x14\xcf\x4f\xf9\xe7\x0b\xd4\x32\x32\xf6\xce\xb4\xa8\x86\xe6\x89\x0b\x6a\x2e\xee\x92\x2b\x17\x32\xce\xa5\xa5\x13\xcf\x43\x75\xfc\xef\x81\xba\x80\x7b\xf0\x70\x6e\x07\xd4\xc7\x8f\xe9\x07\x0f\x32\x08\x72\x71\x17\xd7\x3f\x7f\x8a\x1d\x58\x59\xfe\xde\xa9\x75\x27\x63\x5d\x0c\x1a\x28\xe9\x5c\x08\x70\x16\xa2\xa6\x2e\xc5\xa8\x86\xdf\x9c\xcb\x6c\x15\xc3\x77\x2e\x87\x59\x88\x25\x46\xa3\xb2\x80\xfb\x57\xae\xe0\xac\x9d\x3f\x9c\x23\x60\x16\x8a\x0a\x46\x43\x2a\xe5\x9c\x1a\x61\x16\xf2\x14\xe3\x54\x85\x24\xe7\x17\x2a\xa4\x60\x49\xa8\xb3\x92\xad\x75\x3f\x18\xec\x52\x73\x86\x97\x54\x36\x12\x22\xb9\x4f\xae\x6e\x5f\x73\xf0\x0b\x6b\x0e\x02\x5c\xe5\x09\x35\xde\xb2\x50\xac\x93\x17\xcc\xc6\xed\xd6\x55\x7c\xe2\x96\x9b\x45\xbd\x66\x23\xe3\x33\x62\x37\xe2\x83\x38\xdf\x84\x56\x2f\xfb\xd0\x23\x03\x50\xae\x1e\x82\xc7\xaf\xf8\x85\x87\x0f\x34\x66\x47\x86\x1f\x2f\xac\x13\x29\x7d\x34\x06\x09\x8b\xe8\xfe\x1c\x94\x30\xa4\xb3\x98\x14\x7b\x4c\x57\x96\xd8\xe3\xf3\xc7\x42\xaa\xf6\x3f\x9e\x88\x33\xb6\xc1\x63\x7e\x52\x4e\xb1\xfb\xd7\xfc\xa4\x9c\x0f\x76\xea\x01\x19\xf7\xb2\xc9\xca\x49\xe2\xe6\xb3\xc4\xb8\x63\xeb\x45\xe6\x49\xd8\xf9\x20\x9c\xbc\x73\xf8\x13\xc4\x0a\xfd\x64\x51\x98\xac\x8b\x65\x16\x3b\x99\x8e\xce\xc2\xcb\x84\x89\xb3\xd8\xeb\x0c\xd5\xfc\x43\xf6\xf5\x9a\xe5\xfb\xb3\xa3\x80\x27\xe2\x74\x0e\x85\x91\x9f\x0d\x77\xd7\xa2\x74\x11\xe7\x45\x35\xb8\x92\x35\xcc\x0e\xcd\x6b\xc9\x1b\x9d\x67\x47\xac\x7a\xc9\x7b\xa6\x13\xf1\x21\x21\x29\xb9\xfc\x1c\x90\xcf\x93\xae\xf5\x13\xe1\x19\xdf\xc4\xf2\x7e\x10\xe9\xf2\xb5\x05\xc5\x39\x22\x9d\xe3\xf7\xd5\x70\x0e\x98\x25\x92\x6e\xfa\x93\x0e\xf7\x49\xc1\x0b\x73\x00\x83\x93\x14\xf6\x73\x20\x95\x53\x96\x86\x64\xc2\xe3\xbe\x29\x75\xe8\x1c\x88\x30\xcf\xba\x0a\xce\x81\x7d\xca\xba\xc1\x4e\xf8\x95\x37\xe5\x5c\x9d\xf0\x02\x0f\x2e\x1a\x37\xe1\x72\x1d\x5c\xb9\x66\x0e\x68\x89\x55\xf5\x63\xd2\x37\x39\xc9\xed\x63\xc2\x6d\xb8\xeb\x96\x35\xe1\x36\xdc\x25\xb6\x4f\xb8\x0d\x37\x15\x2f\x99\xf4\x1a\xce\x72\x13\x9a\xf0\x1a\xee\xb9\xfb\x83\xf4\xfd\xd6\x22\xce\x8f\x51\xf6\xbc\xb5\x0d\xf3\x0c\x0c\xb1\x3d\xfc\x42\xfd\xe7\x4f\x2f\xda\xaf\xf3\xe3\x93\x5d\x29\x82\xe6\xf9\x31\xc1\x5e\xf6\x91\x9a\xe7\x77\xdf\xea\xa5\xfb\xfb\xe7\xfb\xfd\x33\xa1\x17\xbf\x3d\x20\x52\x5d\x78\x85\x60\x99\x41\x99\x17\xe7\xc9\x6a\x06\xc1\xbf\x91\x02\x73\xd3\xd4\x09\xaf\xe3\x5e\x93\x3b\x60\x21\xd5\xea\x07\xac\x5a\xea\x0e\x90\x2a\x3b\x09\x66\xac\x16\xba\xef\x83\x13\x3e\xc9\xbd\x7a\x85\x11\xd5\x42\xbc\xa2\x48\x07\x42\x4f\xe0\x81\xb4\xba\xd1\x00\x3e\xcb\x21\x89\xb2\x4d\x3a\x2d\xa7\xe4\x19\x41\x65\x9c\xa4\x67\x9a\xf0\x62\xfe\x1e\xb8\x0f\x08\xd9\xb2\xab\x4e\xb8\x35\x87\x24\xf6\x39\xe1\xd6\xdc\x54\xd0\x6a\xc2\xab\xf9\x1b\xe4\x6f\x8a\x4e\x4c\xfa\x3c\x3b\x74\x63\x9e\x10\x12\x92\x28\xe1\x3c\x21\x24\xa4\xe4\x65\xc3\x50\x97\xa4\xa5\x98\x27\x5d\xb9\x94\x61\x6d\x9e\x89\x27\x37\x0a\xb2\x08\x78\x4d\x72\x40\x98\x27\x32\x01\x26\x5d\xdf\x27\x5c\xab\xbf\xdd\x16\xac\x32\x61\x65\x84\xcd\x84\x55\xd2\xc4\x32\x61\x55\xfc\x09\x61\xd5\x04\xbc\x4c\x58\x45\x4d\x0c\xba\x6d\x15\x9c\x9c\x70\xb7\xfe\xfa\x74\x17\x04\x47\xf6\x17\x94\x99\x86\x66\x0e\x59\xa4\xfd\x7c\x41\x68\x34\x6d\x61\xe6\xd9\xf6\x41\xc9\x84\x46\xf6\xb4\x08\x8d\xe4\x07\x84\xc6\xd0\x5a\x0b\x31\xa7\xa8\xd3\x42\x68\x78\x97\x0b\xa1\x11\xd5\x47\x21\x34\x8c\xad\x85\xd0\xc8\x02\x71\x59\x98\xe3\x07\x24\x8e\x45\x33\x2d\x04\x87\xcf\x24\x3d\xbd\x75\x55\x9e\x67\x21\x76\x34\x3f\x20\x76\x14\x77\x0a\xbb\x7f\xf8\xe9\x83\x79\xe8\x0c\xc1\xb2\xf6\x5e\x30\x66\x75\x7d\x39\x55\xcc\xb3\x72\xb5\xa6\x66\x75\xad\xd6\x6f\x70\xb5\x62\x16\xf0\x18\x0f\xbe\xe5\x4f\xb8\x8c\x7f\xa3\x08\x5d\xe0\x16\x57\xa4\xba\x9c\x67\xe5\x6a\xa3\x3f\xe1\xe6\x37\x7f\xc2\xd5\x1a\xb1\x21\x41\xa9\xd8\xf3\x84\x9f\x79\xb0\x8f\xd4\x3c\x11\x60\x9c\xa3\xb1\x16\x32\x55\x52\xc6\x9e\x09\x6f\xd7\x61\x98\xbf\x28\xca\x27\xb7\xf1\x09\xb5\x55\x53\xf4\xd6\x7c\x61\x9a\x97\xac\x3b\xdf\x04\xde\x22\x32\x3a\x8f\xf0\xcf\x1f\xdd\x98\x27\xae\x61\x5d\xba\xd3\x89\x5b\x98\x94\x60\x73\xae\xec\x58\xfa\xc9\x74\x2f\xfa\xc9\xc4\x0e\xfa\xd9\xd0\x97\x3f\x46\xf0\x73\xd7\x4f\x54\xd8\x72\x5f\xf7\x3f\x7f\x4c\x4c\xe7\x81\xfa\xfc\x49\x3f\x3f\x11\x3d\xb9\xeb\xf9\xcf\x1f\x15\x76\x9a\x33\xb0\x38\x97\x7e\xe2\x5b\xbd\x1c\x58\x02\x46\x3f\xbf\x6f\xf7\x95\x64\xe2\x6a\xa5\x7a\xdb\x13\x57\x18\x05\xb6\x4e\xdc\x60\x4c\xd2\x71\x7f\x91\x6d\x75\xe2\xf6\xa2\x8a\x8a\x13\x97\x17\x05\xa0\xce\xf9\xd1\x24\x69\x91\xe7\x2c\x5f\xcf\x42\xb0\x59\xd0\xb3\x26\xf9\xe1\xbd\x32\xf3\x4f\x88\xef\x4a\xa2\x34\x27\x9c\x9f\x74\x7a\xe7\x9b\xbe\x9e\x35\x8d\x37\x03\xd0\x7e\x1b\xdb\xe2\xb7\x91\x29\x97\xc0\x0a\x13\x15\xc4\xfb\xce\x2f\x1b\x66\xc4\xcd\xfb\xd8\xf6\xde\x30\x59\x23\x31\xec\xab\x42\x98\x48\x81\x13\xe2\x8e\x85\x8a\xc7\x01\x7b\x6d\xda\xb9\x1f\xe3\x71\x20\xdb\xa4\x42\xba\xbe\x07\x10\x72\xb6\xd2\x2e\x1e\x2c\xe9\xdf\xb6\xdd\xf9\x7b\x40\x77\xcc\xac\x4f\x10\xc8\x9e\xff\x2a\x3a\x36\x1e\x28\xa4\xfe\x89\xae\x6d\x3d\x40\x2d\xe7\x78\xec\x1c\xc5\xf1\x40\x59\xdc\x90\xba\xde\x88\x81\xb6\xcc\xb2\x67\x8d\xda\x41\x41\xce\xf0\xf1\x60\xa1\x96\xb6\x13\x2b\xc4\x23\x75\x3e\xe8\xfa\x64\x72\xa1\x63\x8f\xb2\xb2\xd5\x6f\xff\xea\x78\x94\x63\xbd\xb1\x3f\x29\xe0\x55\x79\xa7\x56\x88\x07\xb2\x4a\x7f\x20\xda\xa0\x28\x0c\x4e\x48\x02\x56\xdd\xd2\xd7\x06\x78\xa5\xf5\x79\x27\xd3\x8c\x47\x7d\xe9\x7b\xd4\x37\xf4\x90\xe9\x2b\xb4\x1d\x98\x15\x8f\x46\xb7\xc0\x7d\xb5\x8a\x07\x93\x9a\xc8\x0f\x30\x1e\x1d\x9c\x59\xae\x85\xf1\xe8\xb0\x10\xc9\x87\x2e\x1e\x83\x66\xf8\x9d\x99\x22\x1e\x03\x16\x43\xf9\xaf\xc5\x63\xc0\x1e\x98\xc3\xb1\x3b\x45\xf8\x68\x90\xc7\x5b\x3c\x16\x65\xdd\x65\xdb\xe2\x71\x32\xf3\xf3\xa6\x8a\xf1\x80\x8b\x7a\x90\xf3\x58\x3c\x2e\x64\x54\x4a\xbb\xa4\x44\x3c\xe0\xb6\x19\xd2\x8e\xb5\x88\x07\xac\xce\x41\x6e\x14\xf1\x78\xd6\xee\x8f\xdd\xc7\xc3\x82\x1c\x9b\x5b\xc5\xe3\xc5\x3c\x60\x98\xdc\x0f\x38\xac\xb6\xe1\x65\x3a\xa9\xcd\x8a\xe3\x31\x0b\x61\xba\xd1\x21\xb0\x0a\xab\x54\xfa\x31\x44\x4a\x2a\x3b\x54\x3f\x86\x08\x26\x29\xa5\x7e\x0c\x91\x69\xbc\xb6\xa4\xfd\x3d\xb8\xf8\x46\xdb\x0f\xe0\x3c\x29\x75\x70\x0c\x28\x01\x17\xa4\x40\x8e\x21\xc2\x7f\x4f\x7a\xca\x18\x12\xbc\x1b\xea\x4e\x81\x1f\x03\x6b\x50\x49\xb1\x18\x03\x4a\x4a\x05\x69\x1e\x63\x48\x37\x1f\xe4\x3d\x0a\x8b\x05\xb4\xbc\x0c\x37\xdf\x83\x97\x35\xda\xf6\x4c\xcb\x9a\x58\xdb\x6f\xd4\xcc\x07\x1b\x62\x01\x89\x46\x3f\xc9\x6d\x8f\x82\xe4\x88\xa1\xe5\xb1\x3f\x41\x8e\xbc\xef\xc1\x06\x50\xc7\xfd\xb1\xee\xa2\x87\x31\x30\x88\xb6\x95\xb8\x17\x87\x08\xc2\xd6\xf5\xfb\x66\xe2\x90\xb2\x89\x4d\x78\x18\x5d\x50\x36\x39\x0a\x0b\x1b\x4a\xde\x9f\xd0\x7e\xdf\x4a\xde\xe0\x78\x60\x7a\x69\x3b\x5d\x67\x0c\xcf\xe0\x1b\xc5\x0f\x6e\x3e\xd8\x33\xa7\x11\xb8\xed\x64\xd1\x31\x3c\x40\xc2\xb6\xc3\xe9\x63\xa0\x4d\xaf\xed\xec\x1e\x31\xbc\xac\xcf\x51\x04\xd2\x37\x11\x3e\x9a\x18\x58\x51\x68\xa5\xe9\x41\xe3\xe2\x36\x09\x0a\x13\xce\x9b\xad\x2c\x6a\x1c\x63\x20\xbe\xec\x8b\x4e\x8c\x28\xa3\x1b\x86\x68\x41\x4c\xec\xb4\xfa\x01\x92\x88\xb4\xba\xe9\x49\xac\xcc\x41\xb9\x15\xb6\x31\x56\xb8\x9d\xb6\xba\x4f\x69\x44\x2e\x95\xd0\x76\x71\xdf\x18\x99\x99\x44\xa9\xdd\x62\x1c\xb0\xb3\xb7\x5d\xcf\x32\x46\x46\x9b\xb5\xcd\xc2\x62\xbc\x32\xa3\x9b\x37\x7a\x44\x3a\x91\xcb\xcf\x22\x46\x3a\x48\xca\x4a\x11\x23\xbc\x1b\xbf\x07\x6b\x1b\xe2\x3a\xb6\xdb\xa5\x3b\xc6\x97\x61\x1b\x5b\xb1\x15\xe3\x44\xd6\xd1\x63\xe7\xbf\x8c\x89\xc5\xbf\xdb\xae\x37\x1a\x53\x20\x46\xed\xa2\xa8\xdf\x03\x6e\xc3\x3e\xfa\x29\x4c\x26\x53\xde\xf0\x48\x09\xbe\x62\x6d\x47\x7b\xc4\xc4\x2a\x44\x79\x27\x6f\x8c\x29\x31\x81\xfd\x0e\xb5\xfe\x1e\xac\x4f\xb2\x1e\x70\xd8\xfa\x17\xc9\xbf\xbf\xb7\x57\x3e\x67\x0f\x70\xf2\x41\xd4\x83\xc9\x07\x1a\x80\x74\x61\xd7\xbe\x8b\x29\x4d\xaa\x5e\xe2\xfe\x64\x31\xa3\xd6\xfd\xe0\xe2\x83\xdd\x07\x4b\xa7\xb4\xb6\xb7\x24\x65\x3a\xda\x35\xc1\x26\x73\x94\x5d\x76\x24\xa6\xc2\xe8\xcc\x6d\xf4\x88\x09\xb5\x21\x42\xdb\xe9\xe4\x63\x2a\x84\xef\x0e\xcf\x8e\x89\xb9\xde\x5b\x17\x7c\x2b\x6e\x85\x6d\xa7\x92\xfa\x1e\xd0\xe5\x74\xe8\x0d\xd2\x96\xae\x4d\x6b\x88\xa7\x6a\x3b\x35\x5c\x4c\x48\x42\x1a\xda\xce\x67\x18\x53\x03\x63\xad\x43\x33\x65\xe2\xc7\xba\x03\x89\xbf\x07\x2b\x87\xe2\x9e\x69\x5b\xf5\xc0\xf7\xf9\x4b\xc8\x6e\xf6\x09\x0f\x1a\x96\xb9\xc6\xba\xa0\xde\x89\xa2\x3b\xd1\x51\x4c\xc8\xc6\xf4\x3d\xd8\x7d\x9c\x83\xab\xdd\x22\x40\xba\xa1\x9b\x6a\x3b\x37\x49\x4c\x37\x74\x64\x39\x6a\xb5\x37\x76\x2e\xed\x98\xf9\x98\x1e\x14\xfc\x6e\x3b\x80\xf4\x7b\x80\xa0\xf9\xad\x79\x8a\xe9\xc9\x7c\x43\x00\x7a\x88\x6f\x3b\x6d\x4f\x4c\x0f\x65\x93\xa1\x83\xf0\x90\x96\x0c\x6d\xc3\x84\x7f\x4f\xdb\xee\x8a\x31\x1f\x99\x87\x69\x63\x75\x3e\xe8\x2c\xb3\xdd\x6b\x62\x0e\xd0\x24\x29\xc0\x3b\xe6\xc0\xca\xad\x3b\x48\x26\xe6\x80\xb5\xf4\x6d\x39\x8f\x19\xf5\x43\xbf\x4b\xcc\x9a\x69\x4e\x50\x22\xf6\xed\x49\x1d\x33\x2b\x78\x89\x6d\xe4\xca\x32\x8f\x5b\xa9\x1b\x33\xd3\x6c\xf7\xad\xec\x8c\x99\x59\xe8\x54\xf9\x3d\xe6\xce\x54\x8f\xbb\xca\x45\xcc\xbc\x26\xf7\x6d\x2c\x8f\xf9\x62\xc5\xe9\x6d\x9d\x88\xf9\x62\xf1\x9b\x6d\x28\x88\x99\x1e\xde\x5d\xb4\x25\x3f\xc8\xa1\x96\xb6\x17\x57\xcc\xef\xb1\x8c\x22\x5d\x0f\xb0\xd8\xe0\x07\x10\x96\xfb\xce\x0f\x19\xf3\xcb\xdc\xa0\x61\xe3\x5c\x7e\x59\x22\x2f\x68\xea\x73\x99\xd3\x36\x23\x29\x07\xcb\x71\xef\x0c\x61\xb1\x1c\xcc\x9d\xb5\xd3\xa6\xc5\x12\xe0\x27\xde\x77\x0a\xb0\x58\x02\xb2\x88\xf7\x9d\xad\x31\x96\x70\x73\xf9\x43\x9f\xb0\x70\xec\xce\x9c\x18\x0b\xaa\xad\x7f\x0f\x76\x1f\x91\xb1\xe1\x3b\x81\x41\x2c\x2c\x51\xd5\x77\x30\x53\x2c\x99\x65\x65\xf6\xcd\x22\x96\xcc\xec\x10\xdb\x2d\x37\x96\x72\xac\x37\xf6\x27\xa8\xca\x12\xfa\x76\xce\x88\x85\xd9\xf0\xb3\xe4\xf2\xc2\xd4\xa7\x4d\xf8\x52\x1a\xd7\xb2\x4b\x8a\xc5\xd2\x20\x56\xf4\x1d\xbd\x1f\x0b\xd3\x6a\xed\x72\xb0\xb1\x0c\x0a\x33\xfb\x86\xf2\x3d\xa0\x46\x79\x4b\xbf\x65\xe5\xbd\xd8\xf7\xe2\x58\x10\xef\x1b\xd2\x0e\x5b\x8f\xe5\x64\xe6\xa6\x9d\x92\xf5\x7b\xc0\x4f\x96\x6e\x22\x96\x93\x99\x0f\x77\x4a\xd6\x58\x18\x5e\xd4\x75\x8c\xcb\x0d\xf2\xda\x77\x10\x61\x2c\x37\x08\x4e\xdf\x1a\xe5\x58\x96\x14\xb1\x2d\xa3\xb1\xbc\x84\x71\xd2\xea\x5f\xa2\xa9\xc4\xf2\xf2\x42\x78\xe9\x49\x33\x7d\x59\x69\x7c\x2b\x1a\x62\x79\xef\xf5\xc6\x9e\xfa\xcb\x64\x93\x5b\x9b\x13\xcb\xfb\xae\x07\xbb\xd3\xc9\x84\xcc\xdb\x5d\x3e\x16\x5c\x3f\xbf\x07\x7b\x94\x49\x88\xa5\xf4\x37\xd7\xaf\x32\x21\xfb\xf4\xad\x57\x8c\x65\xb2\x50\xdc\xd6\x52\xc5\x7a\x1c\x1c\x60\x53\xa3\x7a\xc0\x30\xda\xb7\xbe\x2d\xd6\x83\xb9\x6a\xb6\x6f\x5f\xac\x07\x0a\x11\xf7\xed\x58\x1c\x6b\x04\xda\xa7\x9d\x83\x39\xd6\x58\x79\xad\xdc\xf7\xb1\x1a\x1b\xfb\xe8\xfa\x84\xb5\x96\xb6\x5b\x64\xac\x29\xaf\xd2\xc1\xbb\x0f\xd6\xa7\xeb\x5b\x25\x17\x2b\x0a\x38\x84\xbe\xdd\x68\x62\xad\xbc\x89\x6e\x7f\xa2\x58\x91\xef\x3a\xf4\x9d\x7c\x31\xd6\xce\xdc\xec\x59\x8b\x5b\x39\xbb\xb6\x81\x3b\xd6\x41\x8d\x5b\xf5\x03\x52\x9f\x5c\x76\x1f\xb0\x0b\x84\xbc\x73\x62\xc7\x3a\x56\xa7\x02\xd0\xc9\x13\x9b\x05\xa0\xa5\x4f\xdb\x86\xc6\x58\x4f\x54\xdb\xec\x3b\x57\x72\xac\x2b\x27\xc0\x36\xca\xc5\x7a\x92\x9f\x1d\x7a\x83\xd1\x1f\x2d\x6f\xac\xae\x37\x8b\x91\xee\xd2\x77\xb1\xde\xb4\x34\x45\x3f\xe0\xc4\x76\x3c\x48\xac\x2f\x79\xd1\xa1\x6d\x58\x28\x5a\xf6\x95\xa5\xd2\x20\xd6\x25\xa3\xd7\x89\xb0\xa5\xbe\x8b\xb6\xc5\x76\x4c\x56\x01\xdc\x47\xa5\x05\xa6\xcc\xdc\x16\x81\xd8\x02\x84\x86\xbe\x33\x02\xc6\x46\x11\xa9\xef\x92\xcb\xdf\x83\x8b\x0f\x8e\xfd\x80\xbc\xa8\x6e\xfa\xd4\x50\x17\x30\xf4\xba\xcf\xce\x77\x01\xe2\x83\xdd\x69\x65\xde\xcc\xba\x31\xb9\x55\xb8\x86\xf5\xad\x6c\x8a\x8d\xb5\x6e\x7a\xdd\xb2\x60\x63\x71\x0e\x55\x1b\x88\xad\xa2\x7a\x56\xdf\x7e\x22\xb1\x35\xb2\x89\xad\x0b\x8a\x6d\x25\x44\xdf\x85\xda\x63\x43\xe6\xed\xef\xc1\x02\x72\x1b\x9d\xc3\x6e\xf9\xaf\x21\x83\xd1\x27\xe8\x6e\x00\x9d\x9d\x33\xdd\xc2\x5c\xbb\x58\xf8\x61\x2b\xbe\xbe\x07\x18\x76\x67\x00\x8b\x8d\xc1\x82\xb2\x31\xc4\x76\x27\x86\x6a\x0b\x1e\x37\xa4\x78\xc5\xea\xc6\x06\x37\xe2\x78\xec\xf2\x66\xb1\x3d\x48\x67\x2c\x4f\xb8\xd8\xde\xb0\x1e\xec\x4f\x26\xaf\xe7\x5b\xc9\x18\x3b\xb5\x3f\x7d\x27\x0d\x89\xfd\x40\x1d\xd2\xde\xf6\x5a\x3e\xb2\x0b\x10\x6e\x98\xf6\xc8\x92\x28\xbb\x46\x6b\xec\x91\x49\xea\xda\xbe\x91\x74\xd4\x01\x0d\xca\x03\x1e\x7b\x26\x85\xd9\x25\xe3\x63\x67\x9d\xbf\xde\xf6\x15\xa5\x17\xd6\xf6\x95\x90\xdd\xeb\x43\x78\x6c\x10\x76\x54\x10\xf8\x1e\xec\x4f\x56\xb2\xb1\x9d\xeb\xfe\x7b\xc0\xfa\x70\x1b\xe9\xfa\x58\x05\x83\x83\x3e\xe9\x8d\xf9\x3c\x93\x1e\xb0\x9e\xd6\xc6\xb1\xbe\x0e\xb2\xe4\xe1\x7e\xee\xba\xd6\x7a\x23\xb3\x86\xc7\xe6\x81\xfd\x5c\x35\x83\xb5\xfc\x73\xf0\x93\x4d\x0c\xfa\x49\x8e\xbf\xd3\x65\xc7\x7e\xf2\x98\x4a\x62\xee\x8b\xa3\xf5\x2d\x9b\x74\x06\x97\x76\x09\xb7\x9d\xf1\x8b\x5d\xf2\x70\xc7\x51\x6f\x5b\x3b\x1a\xfb\xc3\xbd\xde\xe9\x27\x63\x7f\xd6\xbc\xb6\x68\xd2\x9f\x55\x21\x74\x53\xe0\xfe\x86\x05\x8e\xaa\x07\x1c\xa4\xeb\x01\x53\xf1\x6f\x25\x74\xec\x6f\xe7\xda\x36\x63\xed\xef\xcb\x4e\x87\x3a\x45\xce\xe0\x5d\xf0\x3d\xf6\xb9\x6a\x63\x6e\xd9\xa5\x2f\xfa\x32\x8e\xbf\xb9\x7d\x8d\x48\x9c\xde\xd9\x7e\xe2\x88\xd7\x4a\xee\xbf\xe0\x3f\xf2\xe0\x1b\x5b\xe7\x32\xca\xcd\x84\x2d\x7b\xcb\x56\x99\x9f\xb4\x2b\x66\x47\x96\xbb\x08\x7d\xd7\xfd\x89\x2c\xb4\x10\xfa\x0e\x30\x8f\xa3\x15\xbe\xb1\xa9\x33\x93\x5e\x86\x2e\x81\x7c\x9c\x2b\x68\x69\x9f\xe0\xf1\xd0\x3e\xd4\x34\xd3\xe7\x61\xac\x4c\xdc\x7d\xd0\x95\x75\x6c\x0f\xa4\x38\x5e\x46\x81\xa4\x4d\xae\xc7\x9b\xe9\x22\xbd\x49\xdc\x78\xfb\x8a\x74\xdd\x9d\xd2\x17\x6f\x6c\xff\x94\x48\xc7\xb6\x30\xb6\xa7\x46\x1c\xef\xca\x44\xb2\xd5\x21\x63\xde\x8c\x85\x6d\x7a\xf0\xb4\x7f\x7b\x70\x1e\x81\xa3\x6c\x09\xeb\x3c\x22\xdd\xc5\x37\xb6\x9d\x47\x5f\x71\x16\x79\x3f\x98\xcb\x35\x7f\xc1\xe3\x0c\x63\x39\x94\xef\x3e\xe2\x45\xe1\x79\x93\xc9\x93\x05\xa7\x87\x34\x90\x67\x66\xe4\xe0\xae\x8f\x13\xcf\x02\x39\x6e\xec\xda\x2d\xf1\xac\xcb\xd7\x6c\x8b\x4b\x67\x85\x47\xd6\xb1\x83\xd9\xe3\x59\xaf\xf5\xc6\xee\x74\xbc\xf4\x61\xd8\xe4\xe9\x42\x31\x87\xa0\x0a\x16\xf1\x6a\x64\xf8\x3b\x89\xf8\xf7\x80\x84\x74\xdf\xac\xaf\xb6\x9c\x76\x86\xdf\xa0\x12\x77\x23\xf1\xd5\x2a\xab\x7e\x67\x3d\x40\xd5\xef\x63\x7b\xc5\x7d\x0f\xa8\x09\xdd\xe7\xf1\x42\x52\xff\x78\x68\x2d\x57\xeb\x54\x98\xec\x23\x7c\x21\xad\x7e\xc8\xbb\x76\xe3\xf7\x80\x97\xbe\x8d\xb8\x57\xeb\xac\xde\x11\xf5\xc6\x20\xeb\xd9\x14\xed\x42\xc6\xf9\x78\xec\xfa\x92\xdf\x03\x78\xf2\x04\x2f\xff\xa2\xdd\xae\xa9\x0f\x94\x7e\x3e\x76\x6e\xdc\xef\xc1\xa4\x58\xa1\x89\xd1\x1b\x73\x27\x05\xfd\x1e\x74\xa6\xf0\xd4\x1b\x74\x4d\x94\xd1\xe0\x42\x5a\xed\x78\x88\xb6\x5c\xcc\x69\x7d\xec\x54\x50\xdf\x83\x93\xb1\x65\x0b\xea\x4f\xa1\x55\xb7\x6f\x31\xeb\x8d\x8d\xba\xf4\x4d\xf2\xdf\x42\x33\x9d\xe8\xe6\x8b\x42\x37\x21\xef\xc0\x87\x38\x99\x40\xbc\x48\x77\x3c\x99\xbc\x5b\x3a\x92\xd9\xe9\xed\xb0\x8d\x2a\xdf\x83\x8e\x17\x9a\x7e\x9f\x54\x14\xeb\x8b\x25\xda\x76\x3f\xe8\x54\x7a\xeb\x93\x78\xff\x9b\x6a\x7d\x76\x1a\xf7\xb7\xad\xea\x7b\x40\x0a\xb4\x0f\xfa\x44\xda\xe7\x6f\x1a\x71\x3f\xa0\x99\x57\x7a\x97\xd9\x69\x09\xd5\xfd\x7e\xf6\xca\x7d\x8b\x7a\x03\xe2\x60\xea\x49\x7d\xc0\x7f\xaa\x79\xe6\xa8\xf9\xd0\x92\x7e\x33\xa3\xa4\x24\xcc\xd9\x07\xd7\x1a\x35\xc6\xb9\xa6\xa5\x4f\xe0\x11\x9d\xb6\xbf\x4a\x9c\xfd\xe2\x3c\xab\x16\x7f\xf1\xbc\x45\xad\x15\x41\x1b\xd2\x78\x4f\xa4\xf6\xfd\x51\xd0\x4d\xe4\xf6\x6d\xdb\x50\x1a\x27\x53\xf7\x66\xd9\x72\x66\x5f\x01\x16\xd5\x6f\x60\x9e\xdb\x9c\xf7\x3d\x00\xf3\xf3\x0b\x73\xa5\x94\xdd\x83\x0e\xba\xd5\x48\x09\x38\xc7\x32\x84\x6d\x9c\x9e\xe3\xa0\x7f\x90\xa0\x37\xd6\xc6\x6b\xe2\xcc\x09\x2b\xd3\xd9\x44\x4e\xd8\xaf\x8b\x7f\xbf\x77\xf5\xff\x09\xdb\x9a\x63\x39\x24\x6c\x01\x67\x0e\x3a\x20\x48\x27\x36\x07\x0d\xc8\x3a\x97\x73\xc0\xa8\x91\x74\x77\x5e\xce\x44\xf9\xf0\x1a\x1e\x3a\x96\x55\xcd\x90\xa9\x18\x76\x68\x51\x9c\x63\x65\xf4\xaf\xff\xeb\xab\xe1\xbf\xce\xff\xf8\xbf\x5f\xbc\xfe\x7d\x71\xfc\xf3\x67\xfd\x0b\xb5\xf2\x7e\x5e\x1e\x3d\x6f\x28\x3e\xb7\x1b\xbe\x4b\xf2\xfe\xf7\x83\xf0\xa1\x4f\x2e\x77\x75\xb1\x04\x83\x5a\x6e\xb7\x30\x25\xe2\x6e\xb9\xfd\x0d\xf2\x6f\x6e\xeb\xed\x71\x7c\xd2\xf0\xfa\x97\xb6\x8d\x63\xb7\x3c\xc3\x2d\x94\xa1\x77\xcb\xeb\xde\x98\xbe\x2b\xa9\xc5\xbd\x4d\xd6\x0b\xd8\x2d\xd3\xbd\x21\xd3\xc2\xb6\x9f\x1f\xe1\x93\x52\xf6\xbf\x83\xf9\xd2\xf7\xbc\xe3\x77\x34\xf7\xbf\x58\xab\xfc\xca\x8f\xe8\x59\x44\xe0\xb5\xbd\x57\x3f\x02\xe6\x36\xf4\xa9\x62\x3c\x47\x3a\x04\xd9\x74\xb0\x74\xad\x5a\xaa\x5b\x40\x79\x36\x2c\x52\xd0\x1c\x13\x5d\x97\x95\xf0\xff\x48\xe1\x71\xdb\xcb\xb6\xa8\xb6\xa9\x36\xe6\x94\xea\xda\xe1\x94\x4e\xb5\xc1\xfd\xa7\x28\x5d\xfe\x91\x3e\x7a\xb2\xff\x5d\xe5\x87\xdc\xe6\xb9\xa0\x7e\xe1\xa1\xb0\x8a\x23\x0d\xaf\x0d\x5a\x16\x85\x35\x1d\xe9\xc3\xa2\xfd\xef\xb7\x84\xc3\x5f\x9d\xb7\x9b\xc0\x90\xe4\xad\x7f\xa4\xcb\x3d\x42\x52\x96\xa3\xf8\x91\x6e\xf7\x88\x80\x33\x39\x83\x1e\x30\x15\xec\x7f\xc1\x9e\xe4\x5b\x7f\x40\xd7\xb0\xff\xbd\xd9\xd6\xd4\xf6\xba\x8d\x33\xd9\x5e\x1d\x07\xae\xad\xfb\xdf\x82\xe1\x86\x9a\xb4\x71\xa8\xf6\x1e\x14\x6b\x73\xa0\xda\xfb\xfa\x17\xe6\x60\x55\xfe\x3c\x50\x22\x7d\xff\xcb\x89\x6c\x2f\xb2\x03\xb5\xcc\xf7\xbf\x9c\xc8\xf6\x02\x0a\x6f\xda\x6d\xe1\x65\xe5\x77\x85\x84\x44\x9f\xf3\x78\xc0\x1f\x7d\x7b\xf5\xc4\x23\x45\xb5\x7c\x4c\x6b\x28\x8c\x31\x1e\x69\xb8\xe9\x84\x9f\xc1\x6e\xc9\x4d\x2d\x70\xa3\xaa\x2a\x86\x14\x8f\x96\xd5\xd6\xc6\xd7\xa1\x9b\xba\x67\xd1\xd1\xb4\x5d\xcf\x62\x28\x7b\xd3\x62\x28\x19\x5f\x15\x35\x55\x37\x9d\xff\xfc\x19\xad\xbb\xe9\x72\xd3\x8b\xaf\xc2\x6e\xaa\x1a\x2b\x20\x85\x64\x71\x87\xf5\x74\xd3\xf5\xcf\x9f\xae\x58\xcf\x18\x9a\xbf\x6a\xc8\x96\xba\x9d\x5e\x62\x68\xfe\xaa\xe1\xab\x7d\xac\x23\x24\xdf\xfd\x2f\xa3\xb4\xd5\xe2\xb9\xc3\x8b\x38\x2a\xaf\x7a\x0c\xa3\xbb\x6d\xb0\x4d\x83\xdd\x02\x62\xf8\x08\x63\x57\x6e\xac\x18\xe3\xa6\x21\x31\x46\xfa\x39\x6d\x9f\xc2\x18\x63\x73\x5b\x67\x9b\xbf\xbb\xdc\x06\x4f\xe1\xb2\xfd\xa3\x62\xac\x1a\x2e\x52\xae\x55\x0c\x4a\x8c\xb5\xba\x0d\x9e\xf0\xf2\xce\x8f\xd1\x90\x8c\xac\x70\x2f\x2f\xd3\x18\x9b\x10\x2b\x32\xa7\xd8\xf0\x78\xcd\x7d\x32\x91\x43\x39\x34\x5e\xf7\x77\xf0\xcf\x2d\xf2\x07\x8f\xb1\x7b\x9e\xd0\xc1\x14\x39\x61\x47\x68\x13\xf7\xbf\x9c\xe7\x3e\x6d\x31\x76\xcf\xb3\x73\x9e\x9b\x4e\xc6\x38\x0c\xcf\xc1\xef\xba\xbe\x7b\xfc\x1d\x84\x98\xd2\x84\x2a\xe9\xd0\x77\x20\xd0\x5f\x9f\x7b\x9e\x29\xea\xe4\xa4\x78\xfe\xf3\x47\xb1\x5e\x31\x8d\x47\x2d\x88\x85\x8b\xaa\x19\x17\x4d\x0a\x63\x82\xc7\x4d\xdc\xb6\xae\xef\x41\x73\xdb\x87\x98\xc1\x83\x9d\x97\x9b\x1e\x34\xa9\x47\xf1\xe4\x08\x82\x19\xaa\xb2\x01\xc7\x74\xbd\x6a\x83\x05\xb5\x2a\xdb\x6d\xcc\x3e\x3c\x19\x65\x33\x54\x8d\x3e\x66\x1f\xef\xdc\xe1\x34\xa6\x23\x97\xc5\x01\x22\xae\xe4\x5d\x59\x58\x63\x16\x03\x88\x79\x30\xb0\x6b\xb3\xed\x98\xc7\xad\xb6\xeb\xc3\x75\x85\x58\xc5\x7c\x69\x4f\x33\xee\xf4\x87\xdc\x00\x63\x7e\x3c\x47\xf0\x52\x57\x8b\x8f\xf9\x15\x48\x32\x04\xa2\x43\x09\x72\x62\x9e\xc5\x6d\x90\x46\x14\x6e\x1e\xcb\xa1\x3e\x0b\xd2\xd0\xe7\xed\x3f\x16\x4b\xd5\xc6\x95\xfa\x7e\xc7\x7f\x73\x87\x58\x9a\x16\x57\x3e\x68\x75\x65\xb7\x8d\xa5\xbb\xe9\x83\x4e\x57\xe4\x63\x84\x69\x76\xff\x5b\xd0\xe1\x9e\x62\xf1\xd2\x58\x7b\xbd\x2a\x2f\x79\x44\xd5\xf2\xfd\x2f\x06\xd3\xd6\x54\xcf\xbe\x1e\x68\xd2\xa2\xab\x38\x51\xac\xd0\xf9\x54\xa5\xf4\x8e\x28\x5a\xbe\xff\x7d\x40\x0e\xf7\x1c\x6b\xd5\x8e\x56\xdc\xbc\xa2\x82\xa0\x63\xf5\xf9\x46\x99\xe5\x0f\xb7\xf6\x24\x9b\xcf\x77\x6b\x00\x96\x8e\x14\xca\x12\xec\x7f\x21\xf2\x29\xd1\x6b\x1c\x53\xc7\x0d\x39\xc0\xbf\xb6\xb6\xe4\x58\x4a\xad\xff\x2b\x41\x36\x5e\x3e\x8d\x17\x7c\x19\x95\x13\x31\x22\x8d\xe2\xfe\xb7\xb0\x86\xf0\x5e\xfb\x65\x62\x83\x1c\x84\x1f\x0d\xde\x0b\x7c\xbb\xe0\xf2\x22\xb5\x41\xea\x82\xd9\x2b\x31\x38\xbe\x0c\x09\x50\x86\xb5\xf8\xfa\x60\xbd\x37\xad\x13\x22\x8a\x88\x51\xdb\xff\x96\x7f\xfe\x64\x25\xb1\x8c\x88\x13\xdb\xff\xc6\x7f\xfe\xe4\xb2\x1d\xc1\xe3\xbc\xa6\x9a\x98\xe4\x77\x0b\x0b\x71\x3e\xfe\xea\x89\xbf\xa1\x53\x11\x56\xa2\xfd\x6f\xf9\x0d\x58\x49\x87\x30\x25\x1d\x9f\xd8\x23\x47\xf9\x74\x08\x8e\xe9\xf8\xe0\xb8\x7d\x48\xbe\x9f\x5d\x2d\x21\xfc\xd0\xb4\x74\x68\x51\xe9\xf8\x16\x55\xb7\x70\x91\x0e\xa1\x5d\xa2\x49\xa9\x0a\x14\xe9\x08\x3f\xfd\x01\xb7\x54\x1e\x28\x41\x12\xd9\xff\x62\xcb\x14\x52\x9c\x8e\x1c\xd4\x36\x10\xd8\xa0\x79\x0c\xcf\xe3\xe3\xbb\x4d\x95\xc1\xd3\x31\x86\x9b\x90\x98\x53\x1e\xeb\xe9\x18\x97\xdb\xee\x7f\xfe\xd4\x2c\x60\x88\x58\xa7\xe3\x23\xd6\x2a\x9e\x98\x7c\x0d\x4a\xc7\xac\xff\xfc\x51\x36\xe9\x84\xfb\xc5\xfe\xf7\x04\xe7\xd6\x47\xd3\xdd\x4d\x74\xb7\xf6\x3e\x59\x80\x48\x01\x0e\x75\x55\x59\x7c\x53\x98\x6e\xc3\x3d\xa4\xaa\x02\x40\x0a\x3a\x30\x29\x4c\x7e\xb7\xa9\x52\x8a\x12\xf9\x52\x84\x0a\xfb\x50\x78\x58\x8a\xf1\x74\xdb\xfc\x48\xee\x3e\xd6\x29\x26\xad\x2c\x22\x13\x58\x0d\x6a\x92\x60\x9a\xe2\x27\x78\x75\xc5\x73\xa6\x58\x6e\x37\x81\x50\x2b\x1b\x7f\x8a\xdd\x13\x81\x7e\xeb\x50\x75\xce\x64\xc6\x9c\x22\x9c\x96\x0e\x23\x29\x14\xbf\xfb\x5f\x88\xf8\x62\xcc\x29\x9e\xd9\x6d\x1d\xb3\xdc\xf0\x8a\x97\x17\x70\xad\xa9\x68\x05\x8f\xbb\x04\xed\x3f\x94\x02\x20\xf9\xfe\x95\x78\xff\x0a\xba\x4b\xa5\x24\xf9\x3f\x25\x78\xa6\x06\x55\x72\x49\x29\x9c\x6e\x43\xd1\x4b\x55\xba\x48\xbe\x67\xa5\x04\xdd\x41\x50\xe9\x85\x94\x62\x77\xdb\x40\xdb\xe6\x7b\x29\x45\x8f\x87\xc8\x92\xa0\xdc\xf6\x29\x89\x80\xa6\x84\xb3\x11\x94\xdb\x3c\xa5\xe4\xef\x32\xbf\x13\xae\xa4\x9c\xdc\x56\xd9\xa6\x35\xe4\xcb\x6d\x37\xda\xb4\x7d\x29\x7b\x0d\x85\x7d\x66\xf5\x59\x8a\xdb\xd8\xe7\xe6\x46\x09\x17\xc4\xfd\x2f\x04\x85\x7d\x7d\x4e\xbe\x2a\xa6\xd4\x21\xcc\x0c\xad\xbc\x7b\x05\x1d\x99\xeb\x0c\x30\xc9\x09\x09\xa2\x53\xab\x87\x3a\x34\x3a\xa4\xf3\xe3\xa5\xca\x59\x90\xd2\xa3\xf3\x98\xa0\xb3\x0c\x2a\xb0\x98\x8a\xb4\x1c\xa9\x30\x1b\xaf\xf2\xea\x25\x54\xae\xdd\xff\xd2\x01\x71\x5f\x4c\xe9\x6a\xb2\xff\x2d\x54\x5d\xd5\xdd\x16\x93\xda\xe0\x8e\x34\x94\x3f\x23\xbf\x71\xaa\x0d\xdb\x9a\x95\x56\x39\xc3\x4e\xbb\xff\x0d\x6c\x8b\xbb\xad\x79\xbc\x56\x18\x3c\x33\x76\xdb\x78\xd5\xf6\x1d\x18\xf9\x71\x7f\xbf\x2f\x37\x31\x6e\x67\x11\x87\x3c\xb5\xe1\x79\xc2\xe8\x1e\x94\x21\x25\x23\x08\x73\xff\xcb\x04\x96\xfb\xfe\x99\x11\x7f\xb9\xff\x85\xeb\x90\x02\x35\xf2\xbc\xdc\xe7\x85\xec\xb0\x12\xe4\xf2\x94\xa2\x27\x4f\x94\x66\x09\x61\xcb\x26\x19\x2e\xf1\xfb\xdf\x8f\x27\x4a\xea\x2d\xe6\x53\xe5\x38\x08\x94\xad\x15\x29\xbe\xb8\x16\xb0\x8b\x18\xc4\x3f\xca\x51\x82\xda\x50\x36\x39\xa8\x9c\x75\x39\x7a\x52\xdb\x77\x9d\x88\x41\x55\x9c\xcb\x31\xdc\xe7\xa0\x07\xfa\x16\xb3\xcb\x31\xa6\xda\x4e\x2e\x21\xab\xed\x74\x1b\xd2\x3f\x04\xd5\x17\x2e\xc7\x75\xba\x6d\x39\xb1\x6b\x2e\xf7\x50\xdb\x7d\x7e\x4b\x77\xd3\x73\xab\xe9\x21\x34\x37\x2b\x2e\x41\xa4\xaa\x84\x8f\x54\x59\xc0\x28\xe1\xb8\xdd\x04\xab\xcf\xf6\x6e\x3a\x4a\x08\x6e\x0b\xec\x72\xdf\x90\x4a\xd0\xcd\xb1\x04\x84\x5a\x06\x55\x7e\x2d\x21\xfa\xbb\xc8\xef\xb6\xcc\x5f\x42\xd2\xca\xc3\x87\xc1\x59\xf2\x53\xc1\xb5\x7b\xff\xfb\x2d\x4e\xe2\x68\x09\xba\x73\x15\xdc\x90\xa5\xbf\x3f\xe8\x2d\xb5\xff\xbd\xbe\xa6\xa4\xb1\x2e\x2f\xfb\x8a\x68\x52\x87\x8f\x36\x35\x3c\x3c\x75\xfb\x84\x94\x68\x68\x31\x7e\x22\x2b\x45\x55\x31\xb7\x2b\x91\x39\xdd\xa4\x4e\x2c\x51\x67\x84\xee\x57\x59\x62\x7d\x81\x5d\x62\xff\xcb\xd0\xeb\x1d\x76\x5a\x7c\x9f\x2c\xb8\x4f\xc6\x20\xe6\x5a\xa2\x34\x5a\x25\x9e\x28\x0c\xa7\xa0\xf2\xff\x7f\xf9\xb6\x44\xdd\x84\x4a\x44\x7d\xe0\xa0\x8c\xed\x25\x1a\xc3\x22\x31\x4c\x99\x3a\x4a\x9c\x9e\xe9\x27\x3d\xc8\xb1\xf1\x28\xe9\xd0\x67\x09\xba\xf1\xac\x08\xaa\x92\x8c\x0e\x60\x4e\x31\x78\x87\x92\x14\x09\x25\x21\x9b\x7c\x50\x7a\x9f\x02\x4a\xbf\xff\xe5\x34\xb7\x2e\xa4\x24\xe9\x34\x4a\x62\x45\x41\xa5\x8c\x2c\xf0\xd0\xdd\xff\xe2\x30\xeb\x36\x54\xb2\xd1\x2f\x7f\xe8\x97\x95\x79\xb4\x64\xf1\xc2\x42\x05\xdb\xd0\x5d\xae\x64\x5d\xd8\x0a\xdc\xe5\x63\xf0\xfe\x65\xe9\x61\x4b\x7e\x3f\xfc\x93\x8e\xaa\xf8\x0a\x58\x0a\x43\x08\x0c\x95\xe2\xc3\x55\x60\xdd\x0a\x71\x47\xd8\x95\x22\x2d\x55\x29\xc8\xf2\xa9\x40\xe4\x02\xaf\xdc\xfd\xef\x85\xcf\x76\xf0\x50\x29\x62\x4f\xa5\x3c\x04\xd8\x96\x2c\x4a\x95\xd4\x51\x2a\x6c\x15\x59\xc9\xb9\x0a\xc2\x4e\xf6\xbf\x40\x5c\xd5\x89\x29\x55\x9c\xbe\x54\xa4\x45\x0d\xba\x2f\x94\x5a\xfd\x5d\x05\xa0\xc5\x66\x4a\x6d\x6e\x83\x6d\x3b\x2b\xa3\x55\xa9\xc6\xdc\x0a\x97\xf5\x9c\xb7\x0a\xb7\x54\x43\xb3\xa2\x2a\x46\xd0\x4d\xb0\xd4\x29\xb0\xd4\xc9\x90\x84\xcd\x14\x4a\xf3\xc1\x6c\x48\x62\x1c\xa4\x4d\x2e\x4d\x52\x55\x69\x88\xa0\x18\x2a\xc8\x5e\x5a\xd4\xae\xb7\x08\x76\xa8\xec\x93\xa5\xe9\xe6\x50\x1a\x3c\xfa\xb3\x02\xa7\x4b\x4b\xcd\x6d\xfd\x9f\x3f\x59\xd9\x2f\x4a\x4b\x8f\x9b\x40\x36\x55\x76\xa3\xb4\xac\xe5\xd1\x92\xec\x14\x4b\x05\xa5\xe0\xf7\xbf\x0c\x27\xd9\xc2\x58\x69\xc3\x7d\x32\xed\x91\x42\xf3\x4b\x33\xbe\xa3\x5e\x75\xce\x9b\xfd\x96\x36\x3d\xdc\x84\x65\x4d\x85\x84\x4b\xf7\xf1\xea\x3c\x5e\xca\xc6\x56\xba\x44\xe9\xd2\x3b\xe3\x56\xf6\x75\xa5\xf4\x2e\x2a\xdd\x69\xa5\x57\x1a\x8f\xd2\x25\x66\x97\x7e\x72\x17\x74\x4e\x50\x7d\x72\xff\xcb\xa0\x14\x71\x8c\x3e\x2f\xb7\x3d\xb8\xaf\x6e\x68\xa2\x5a\xe3\xfe\x97\x48\xb6\xa5\xfa\x32\x7c\x9a\x07\x4e\xf3\xf6\x3b\x3b\x0a\xf4\x01\xfb\xdf\xca\xcf\x36\xde\x8e\xe6\x36\xc6\x61\x28\xbe\xbd\x0c\x59\x84\x0a\x2a\xa0\x65\x45\xaa\x97\xf1\x6a\x01\xe3\x25\x3a\x48\xb8\x38\x3d\x1c\x02\xab\x73\xd1\x96\x23\xbc\x78\xff\x5b\x98\x03\x6d\xef\xc1\x69\x39\xe0\x3c\x19\x55\xb2\xf5\x9a\xe5\xd4\x7d\xac\xa0\x72\x4a\x2e\x3a\xb0\x97\x89\x00\x4a\x41\x64\x15\x26\x2d\x57\xd3\x39\xbf\xe8\x81\xab\x4c\x11\xe5\xd2\xcd\xb0\xa0\xb6\x40\xfc\x44\xa0\xdd\x76\x8a\xb6\x33\xa3\x7f\x50\x7a\xa4\x72\x99\x57\xc2\x15\xf6\x6b\xdb\xb0\xbc\x0c\xaf\xeb\x61\x86\xb7\x2d\xd1\x97\xfb\x10\x86\x21\x4f\x78\x56\xf4\x65\xb9\x93\x86\x43\x82\xe7\xac\x68\xca\x82\x8c\xbf\xfb\xdf\x15\xbe\xa3\xcf\x24\xbc\x96\x9b\xc2\xab\x54\x14\xe5\x9e\x9a\x25\x92\xe3\xc6\x20\x5d\x6f\x41\x26\xd0\xf5\x6f\x85\x4c\x95\xb7\x5e\xa1\x3c\x4d\x2b\x40\xe6\xcc\x18\xa4\xe7\x2e\xc8\xa5\xb8\xff\xfd\x2e\x17\x5e\xdc\x2b\x45\x45\xa1\x27\x4e\x56\x12\x84\xf2\xca\x20\x53\xe0\x27\x9e\xa5\xe9\x2d\x6f\xd1\x1e\xbc\x85\x7b\xa0\xd3\xfa\x56\x9d\x82\x97\xf6\xdc\xb2\x2f\x2c\xe5\x35\x07\x7a\x2b\x83\x89\x84\x0e\xaf\xf1\xf9\xfd\xf0\x39\xcb\x66\x50\xac\x3f\x2a\x48\xcc\xf5\x75\xb9\x81\xf2\xde\x02\x18\x3c\x8b\xf3\x8e\x8b\x39\xca\xfb\x78\x71\x2c\xa9\xa4\x70\xf9\xf2\x4a\x8f\x5d\xe0\x2d\x94\x15\x9f\x4a\xf7\xe3\xfd\xef\x40\xd3\x5e\xf7\xb4\xbc\x88\x30\xdd\x90\x8b\xe8\xfa\xb4\x10\x30\x29\x04\x94\x7d\x93\x2e\xd3\xac\x10\xb9\x73\x72\xd3\xe6\x4c\x23\xc3\x24\x32\x14\x91\xee\x29\x65\x75\x99\x08\xbb\x0c\x45\x84\x6f\x3e\x6e\x7b\x56\x9b\x86\x33\x2d\xa5\x63\xb4\x55\x16\x65\x3e\xdd\x6d\x03\x39\x5b\xd5\xf4\x0a\xcc\xf3\x65\xbc\xd4\x9e\x4a\x3d\xb4\x82\x7a\x94\xc6\x42\x17\x6d\xb7\x0d\xb7\x21\x1f\xde\xf6\x0c\x3c\xaa\xc5\xf9\x0a\x71\x3e\x86\xb2\xe3\x9e\xeb\x71\xbf\x6e\x9b\x6c\x2b\xbb\x6d\xba\xcb\x89\x2e\xb7\xe2\xbc\xc2\xd3\x76\xff\xfb\x7e\x4d\x9b\xb6\xd5\x20\x2a\x5b\x03\x1c\x63\xb3\x27\x89\x08\xdb\xfd\xef\x47\x12\x55\xe8\xb6\x06\xa9\x63\x6a\xe8\x04\xe5\xd6\x35\xd5\xa0\xbb\x51\x0d\xbc\x1b\xed\xe0\xb6\xa3\x86\xe1\xe1\x78\x37\xd2\xf9\xaf\xe1\x76\x9f\xbc\xde\x95\xa1\x69\x7a\xe1\x61\x2d\x7c\xa4\xbf\x12\x7a\x6b\x78\x6f\x7d\xfa\xb2\xde\xc8\x3e\xaf\x35\x4a\x1d\x59\xe3\xf1\xe1\xad\x0a\xa1\xd5\xa8\x9b\x61\x8d\x9f\x38\x90\x55\xae\xaa\xc6\x2e\x70\x42\xdf\x14\x5d\x96\xa8\x46\x2f\x30\x22\x33\xe2\xf6\x00\x3a\xaa\xa5\xef\x1a\x51\x96\x24\x08\xc5\x6a\xd4\x71\xad\xd0\x37\xc5\x50\xb7\xc4\x51\x61\x40\xdf\xff\x22\x24\xaa\x6e\x91\xa3\xa6\xac\xe1\xa0\x9a\xf9\xc8\xe2\x5e\x41\x3a\xd5\x27\x2c\xdf\x61\x28\xf5\x6b\x4d\x3a\xe7\x75\x05\xa6\x49\xf5\x5c\xd3\xeb\xf1\x5e\x8e\xb7\x35\x2b\x35\xe9\x26\x50\x19\x19\x3d\x94\x1f\xa1\x66\x99\x22\x6b\x66\xc6\x5d\xe5\x9d\xac\xd9\xeb\xcb\x8b\x1c\xed\x33\x54\xf3\xad\xf1\x32\x6c\x48\x4d\x35\xd6\x6a\x96\x1f\x44\xcd\x6f\xf8\xe7\x4f\x51\x46\xc4\x0a\x7b\xcd\xfe\x17\xe7\xa4\x6e\xb2\x5f\x8b\xf7\xb5\x1c\x6c\xdb\xb2\x43\x2d\x12\xf7\x6b\xf9\x98\x77\x51\x62\xfb\x5a\xd2\xed\xa6\x87\x9f\x6d\xa8\x14\x29\xf9\x6b\xf9\x10\xbc\x28\xd1\x4c\x2d\x9e\x64\xe1\x24\xb5\xb6\x32\x3d\x18\x02\xd8\x83\x32\x3b\xd4\x32\x5f\xb7\x71\xcf\x37\x65\xaf\x96\xcc\x2b\x24\xf3\x18\x94\xcf\xa0\x56\x89\x1c\xb5\x7e\xfc\xa6\x48\xeb\x52\xab\x4c\xd9\xb5\x22\xde\x23\xef\x20\xd1\xa3\x56\xb1\xd7\x0a\x8b\x4c\x51\x12\xd0\x5a\xeb\xed\xa6\x87\x91\x92\xea\xb2\xf9\x33\x28\x72\xaa\xb4\x96\xb5\x76\x0f\x47\xaf\x4c\x65\x3a\xac\x75\x9c\x6a\x1b\xa0\xed\xca\x04\x51\xeb\x2d\x58\xd6\x1b\xa2\x9d\x6a\x41\xd6\x16\x75\x4a\xda\x77\x7f\x2c\x61\x5b\x30\x6a\x93\x0d\xa6\x22\xd0\xaf\x48\x3f\x52\x9b\xbc\x83\x6a\xa3\xda\x68\x47\x83\x1e\xb5\x27\x6d\x4f\x87\x67\x7f\xae\x5b\xff\x53\x7b\x9d\x6a\x6b\xa0\x39\x6d\x3b\x5e\xd4\x6e\x7c\xa6\x87\x5b\xeb\x02\x26\xea\xfa\xef\x7f\x2f\xb6\xe9\x3b\x29\x5d\x18\x36\x12\x43\xd3\x99\xec\x52\x53\x55\x16\x8e\x6f\x3d\xaa\x6d\x7a\x9e\x93\xf3\x14\xb2\x0f\xb9\x14\xd4\xb1\xe6\x29\x7a\x3b\x9a\xd6\x30\x90\xff\x35\x2b\x25\x45\x1d\x8f\xa0\x39\xe0\x01\x95\xeb\xe6\xcc\x75\x88\x77\xd5\x41\xde\xa5\xd2\x38\xf5\x34\xf5\x63\x8a\xa1\xd6\xf5\xdd\x29\x49\xa6\x32\xcd\x4c\x56\xbe\x8c\x7a\xca\x7e\x5e\x4f\x64\x96\x0d\x5d\x78\x7b\xea\x2a\x53\x21\xfe\x86\xac\x54\x49\xf5\x3c\x3d\xde\xf9\x9d\x2e\xb9\x2a\xd4\xf3\xf2\x70\xe4\xe8\x5d\x24\xe7\x34\x59\x61\x25\xcb\xd0\x45\x3a\x50\x76\x72\xff\x4b\x72\xe4\xe1\x1e\x1d\x21\x14\x8a\xfc\xbe\xdb\xdb\x77\x4a\x9c\xac\x27\xa3\xa6\xfb\x16\x19\xeb\x25\x27\xaa\x0a\x03\x61\x0c\x5d\x94\xff\x3a\xb4\x0d\x17\xd2\x39\xb4\xed\x44\x7f\xd4\x4b\xaa\x9e\x8a\xc2\x66\xae\xad\x50\x2f\x29\x43\x2b\x44\xf8\x6f\x9a\x1a\xce\x3b\x8b\x6a\x67\x4e\xaa\x5f\xaf\xe1\xa6\x13\x82\x6d\x8f\xea\xd2\xc0\xbc\x90\x01\x2e\x74\xb1\xb5\xcb\x88\x8b\xfa\x5c\xce\x82\x5d\xaf\xcb\x93\x44\xb2\xd8\xb0\x7d\x68\x8f\x7a\xc9\x1d\xaa\x5e\xa8\xf7\x19\x7a\xd2\x2c\xe5\x65\x57\x59\x89\xaa\xa9\x8e\x77\xbd\x5e\x03\x8c\xa1\xb8\xf2\xdf\xa8\xa8\xcf\xb3\xff\xcd\xc8\x25\xbb\x8f\xe5\x6d\x22\xc0\x6a\x36\xce\xf7\x5e\x6f\xb3\x27\xd4\xca\x08\x59\x05\xf0\xeb\xe3\xef\x9e\xc8\xe1\x04\x95\xc7\x22\xcb\xc3\x2c\x1f\x32\x6b\xd4\x37\x6b\xe9\xf4\x9d\x6f\x43\x60\x79\xa5\xc1\xab\x2f\xcc\x1a\x4d\x35\xe8\xea\x2b\x87\xa3\xfa\x22\x7d\x52\x53\xa5\xb8\x8a\xa4\xbf\xfb\x5f\xa8\x8e\x2c\x3e\x59\xcc\xae\x10\xb3\x4b\x16\xaa\x58\xca\xae\xcb\x27\xbf\x1c\x6a\x7b\xdd\xe5\xcb\x2e\xc5\x4d\xa6\x7c\x3b\xea\x64\xb5\xf5\xa6\xe5\x4d\x1f\x85\xc9\x1d\x52\xdd\x82\x66\x27\xcd\x76\x30\xf3\x92\x68\x7f\x3b\xa4\x10\x6d\x07\x84\xe2\xbc\xbd\x82\xbf\x07\xc5\x6d\x48\xc8\x59\xb6\xd7\x63\x0b\x79\x6f\x43\x0b\x19\x59\xdf\x36\x21\x6b\x41\x42\x49\x0b\xac\x88\xab\xb4\xa8\x2d\xc8\x42\xdd\x20\x0b\x46\x1b\x97\x9a\x25\xb5\x06\x49\x2d\xda\xb8\xd4\xa2\x04\xa4\x16\x3f\x0e\x5e\x64\xee\x69\x51\x9a\xe5\x16\xf3\x81\xa6\x3d\xc9\x98\xdd\x04\x93\xd4\x28\x51\x9f\xc9\x24\xd5\x22\x4c\x52\x59\xbe\x6e\x2d\x56\xad\x20\x32\xc4\x4f\x99\x25\x1b\x72\x7d\xec\x7f\xc1\xf4\x64\xca\x6a\xd1\x00\x8b\xa4\x39\xaa\x76\xd8\x92\x6c\x41\x2d\xd1\x16\xb4\x23\x96\x8e\x66\xf7\xcc\x46\xf7\xcc\x7e\xd4\xbf\xf3\x67\x68\xf6\xc2\x6c\xf4\xc2\x1c\x72\x07\x68\x29\x6b\x19\x30\xce\x15\x59\xac\x5b\x32\x4a\x24\x5e\x9a\x55\x3f\xaf\x25\xaf\x3e\xad\xd5\x37\x75\x29\x63\x5d\x4b\x9d\x50\xdb\x82\x63\x4b\xc3\xdf\x41\xe1\x91\x9b\x50\x30\x4b\x4d\xd7\x32\xd4\x74\xb9\x6f\xea\xdf\xb2\xac\x5d\x2d\x93\x79\x2b\x19\x73\xcb\x92\x68\x5a\x46\x75\xa0\xa0\x12\xd3\x2d\x7b\x2e\x99\xe1\x5a\x7d\xeb\x97\x5b\x96\x5a\xa3\x65\x16\x5d\x56\xf1\x88\x96\xc5\x84\x5b\xfe\x18\x41\xa9\xea\xb2\x48\xbd\xd7\x4a\x62\x68\xf5\xbe\xdd\xb7\xe2\x8d\x2f\xd8\xf8\xa8\x7c\xe6\xad\x34\x7f\xc7\xc8\x53\xd9\x91\x5a\x11\xbf\x6c\xe5\x9b\x66\x69\xc2\xc1\xa2\x9b\x44\x2b\xb8\x2a\xe5\x1d\x2c\x76\xb4\xe2\x93\x52\xe0\x1d\xd2\x65\x7e\x6a\xe5\x71\xdb\xbb\xda\xf4\xdd\x74\x9f\x1f\x6f\x2b\xba\xa7\x37\x4b\xa3\x0d\xd2\x68\x69\x3b\xdd\x14\x03\x24\xf7\xbf\x95\x45\xb9\x8a\xda\x2e\xb7\x31\xbc\x5c\x58\x5d\xe5\x3c\xf0\xdd\x8a\xbf\x2e\xf7\x8d\xb4\x55\x79\x85\xb6\xca\xaa\x37\xca\x3e\xdd\xaa\xfc\x42\xbf\xcb\x21\x3e\xd3\x4c\xa4\x78\x6e\xb5\xa2\xc7\x6d\x5d\x6f\xf6\x32\x6a\xb5\x9e\x68\xda\x27\xb6\xca\x07\xa7\x55\x16\xe7\x54\xa2\xe5\x56\x87\x27\x32\xf0\xd9\x36\x6d\xb4\x2a\x36\xda\x2a\xd8\x68\x54\x5e\xe3\x56\x65\x2b\x6e\x4c\x5d\x90\x7b\x55\x97\xa7\xe7\x0f\x4a\x6c\x37\xbb\x56\x2f\xcf\xf2\xe2\x70\x9b\xfa\x35\xe9\x95\x5a\x43\x74\x49\x34\x5d\x69\x72\xd7\x6c\x90\x8f\xcb\x0e\x34\x39\x9a\xf5\xd1\x0d\xfa\xe8\x22\x81\xb2\xb5\x2c\xc4\x6b\x48\x21\x58\x55\x61\xbf\x35\x29\x27\x5a\x83\x72\x22\x2a\x4b\x6c\x6b\x52\x9a\xb5\x86\x90\xed\x2c\xe7\xed\x66\x5d\x75\x6b\x0d\x65\x47\x0f\xed\x77\x33\x9c\x1b\x7c\x9d\x86\x2e\xf0\xcd\x02\x7a\x83\x80\x5e\xba\x58\x42\x7b\x84\x79\x0d\x91\x08\x5d\x65\x98\x5b\x8f\x5a\x42\x47\x20\x7d\xde\x49\x5d\x8e\xd6\xe5\x5f\xd8\x3a\xab\xde\xaa\xa4\x50\xeb\xaf\xdb\x18\x17\x22\xff\xf9\xd6\xe5\xad\xdf\x3a\xa3\x41\x65\x96\x6a\x43\x26\xab\x86\x64\xb1\x61\xc8\x27\xa4\x0d\x5d\xae\xda\xe0\xe5\x6a\x6c\x95\x5a\x1b\x97\xfa\x1c\xd8\xd7\xb1\x99\x76\x1b\x72\x17\x6f\x83\x11\x9c\xf2\x6a\x69\xa7\x69\xfb\xf9\xd1\xf6\x22\xef\x8d\x76\xea\x9a\xda\xa0\x63\x8e\x31\x6c\xc5\x7f\x3b\x7d\x0c\x90\xe9\xb0\xc8\x79\xa3\x9d\xb2\x9f\x37\xd4\x7a\x0f\x59\x15\xcf\xdb\x29\x95\x6d\x3b\x1f\x4c\x52\x08\x76\xbe\xee\xf1\x45\x8f\x5b\xed\xdf\x2e\xcf\xf1\xe2\x1c\xab\x9a\xe4\x61\xd2\xae\xc8\x9d\xdb\xfa\xf4\x76\x99\xf3\x5e\xc8\xd5\x19\x75\x5b\x6b\x97\x6e\x33\xed\xfa\x6e\x33\x45\x25\xf8\xda\x25\x33\x64\xbb\x58\xbc\x5e\x81\x1e\xed\xd2\x65\xba\x5d\xac\x4a\x2e\xb3\x74\xbb\xbc\xa9\x17\xeb\x8f\xcb\xf4\xdc\x6e\x13\x9b\x9b\xc4\x26\x68\xbc\x5b\xee\x48\x8d\xa5\xf8\x86\x14\x52\xed\xf6\x86\xaf\x1a\x78\xba\x58\xb5\x5b\xca\x9c\x76\x33\x04\x5f\xe6\xd2\x76\x4b\xdc\x6a\x37\xc4\xad\xac\x92\xc3\xed\x91\x6a\xbc\xad\xaa\x68\xaa\xd2\xdb\x1e\x33\x98\x87\x0c\x46\x45\x1d\xdb\xa3\xab\x76\x7b\x3a\xf7\x55\x6b\x78\x24\x9c\x37\x54\xcf\x89\xf6\x3f\x6c\xcf\xed\x3e\x6f\x54\x52\x52\x81\xd4\xf6\xc8\x48\xd4\x1e\x18\x89\x86\xb4\x24\xed\x2d\x82\xd9\x5b\xce\x7f\xfe\xd4\x1d\x96\x7e\xb4\xd7\x3c\x0b\xd5\x43\x42\x97\x9b\x7d\x7b\xe5\x94\xd3\x10\xe3\x5b\x77\x00\xe5\xd1\x50\x28\x64\xff\x9b\xbf\x26\x01\xf3\x95\xf3\x5c\x7b\xe1\x3c\xa7\x92\xc0\xed\xd5\xa5\xb1\xc1\x49\x25\x46\xd9\x89\x1b\x9c\x4e\xf6\xbf\x2f\x3e\x53\x93\xee\xa8\x6d\x7e\x77\xd4\x1a\xb4\x03\xd3\x3b\xce\xbc\xee\xd9\x54\x71\x9a\xf2\xcd\x8f\xba\x54\x23\xd8\x94\xf2\xa1\xcd\x95\xf4\xa3\xbb\xad\xbb\x0d\xab\x16\xee\xd9\xd7\xa5\xd1\xd7\xa5\xab\xc0\x57\x9b\xcd\xa3\xb1\x70\x8b\x2a\x7d\xb7\x79\x6b\x6f\x90\x4e\xbb\x06\x91\x52\xeb\x9c\x1b\x75\xce\xe5\xd0\x76\xcf\xe9\xe1\x58\x71\x41\x7a\xbd\x6e\x5f\xc9\x0e\x5f\xc9\xaa\xaa\xe1\xfd\x90\x8b\x59\x47\x90\x47\x8c\x72\x01\xec\x87\x8c\xcb\xfd\x80\xef\x53\x51\x4e\xf9\x1e\xea\x9e\x65\x0f\xf5\x9b\xa5\x9c\x7c\x7a\x90\x70\xd6\x03\xad\x39\xca\x02\xdf\xc3\xf3\xa8\x0d\xd1\x57\x43\x49\x44\x7b\x90\xf8\xd2\xc3\x47\xc4\x6b\x1c\xc7\x5f\x49\xbb\xdd\x3e\x8e\x3d\xc0\x0e\x14\x65\x7e\xed\xf6\x71\xec\x61\x22\x14\x6d\xb3\xf9\x6e\xcf\x8e\x0e\xcf\x8e\x2a\x37\xac\x1e\x75\x43\xed\x11\xca\xf1\x21\xf1\xac\x3b\x6a\xa1\x23\x6a\xa1\xca\xec\xcc\x5c\x07\xfb\xdf\xfe\x35\x6d\x5d\x6e\xb7\x1b\xe3\x47\x2a\x31\xc7\xa1\xcf\x86\x7b\x1c\x20\x7d\x4a\x54\xde\xe3\xe9\x99\x30\x8f\xa6\xca\x5c\xf6\x78\x7a\x38\xca\x1b\xb2\xfc\xf5\x24\x72\xd3\x19\xf5\xd5\x75\xd3\xec\x76\xdd\xe8\x70\xdd\x88\x51\x4a\x97\x9e\x82\xbf\x0b\x58\xc2\x96\x0e\x3a\xe2\xc0\xf6\xbf\x93\x9f\xa9\x4b\x49\x1c\x3d\xb1\xf2\xa9\x97\x9e\xe4\x58\xdb\x13\x62\x14\x7b\xde\x37\x80\x9e\x24\xcf\xf6\x04\x79\xb6\x48\x1a\xe9\x59\x6e\x58\x3d\x33\x87\x46\xd1\x34\xb3\xa8\x54\xcf\xc8\x5a\xd6\x8b\xe6\x92\x4f\xb7\xa1\x5c\x5b\x94\xf6\xa4\x67\xa9\x2c\x7a\x46\xda\xcc\x28\x33\x57\xcf\x32\x35\x74\x86\x0b\xf4\x9d\xaa\xf0\xe8\x45\xe1\x5d\xbd\x1c\x89\xdf\xed\x79\x16\x83\xac\x00\x64\x4a\x99\xdf\x8b\x7c\x0d\xbe\xbe\xd0\x65\x52\x97\x22\x39\xbd\xe0\xb2\x15\x95\x70\xb9\x17\xf1\xf9\x5e\x98\x24\xa8\x6c\x31\xbf\x97\x4b\xa0\xc6\x6d\x20\x46\xc5\x41\xf5\x22\x83\x55\x2f\x4c\xe0\xb4\x93\x18\x1e\xbd\xea\xaa\xd9\x2b\xae\x9a\x4d\x65\xb4\x7a\x95\x9d\xa8\xc3\x6d\x24\x46\x65\x9c\xef\x55\xc6\xa0\x5e\x0b\x0a\x86\x66\x7f\x27\x49\xac\x57\x4a\x62\xb2\x0a\x74\xeb\x88\x3b\xe4\xf0\xaa\x40\xa3\x5e\xe5\x8b\xd9\xeb\x60\x2e\x98\x2d\x3e\x74\x0b\xd1\x9d\x42\x74\x39\x36\xb9\xed\xd5\x3b\x5b\xbf\x9d\xad\xd9\x4d\x97\x57\x77\x41\x44\x90\x6f\x6e\x6f\xd2\xee\xf7\xc6\x5a\xc1\xf2\x89\xe8\x4d\xb1\x4b\xbd\x31\xb5\x8d\x14\x05\xbd\xc9\x9e\xd5\x1b\x8b\x1f\x2a\x82\xb0\xb7\xa1\x69\x36\x64\x85\x1b\x3b\x3f\xe0\xd1\xdb\xe9\xf1\xe0\xed\x52\x0c\xe9\x26\x6f\x97\xde\x90\x69\xa0\xd7\xa8\x3e\x65\xc8\xeb\x6d\xc2\x7b\x5e\x9b\xd7\xa5\xa7\xea\x3d\x73\x13\x44\x06\xba\xc9\x47\x47\x6e\xcb\xd1\x74\xd4\xbb\x91\xa5\xb3\x7c\x83\x6a\xb8\xf4\x2e\xe9\xa1\xf7\xfb\xe3\xcb\x65\x4b\xca\xbd\xcb\x32\xd3\x3b\x12\x6e\x45\x45\x27\xf5\x6e\x1c\xeb\x1f\x8e\x55\x39\xd2\x76\x2b\xb2\x3b\x15\xd9\x45\x85\x4c\xfa\x90\x3b\x52\x67\xe8\xf4\x50\x76\xec\x3e\x74\xcf\xec\x23\x10\xd0\x42\xe9\x61\xe6\xc5\x08\xeb\xa2\xcb\x77\x1f\x72\x44\xef\x23\x7e\xa4\xb8\x6a\x71\x43\x92\x45\x1f\xb0\x42\x44\x59\xd6\xfb\x30\xd1\x19\x1f\xd1\xa9\x4a\xb0\xdc\x87\x54\xf8\x1d\x49\x9a\x6a\x15\x79\x38\x7d\x7e\xce\x03\x18\x26\x9b\x75\x3f\x65\xcf\xee\xc8\xf5\xff\xb5\xed\x2e\x4f\x45\xb3\xf4\xb3\xe1\xc2\x55\xa2\xdb\x4e\xb7\x81\x12\x97\x2d\xeb\xf7\xf3\x14\x50\xce\xf3\x63\xb1\xca\x28\xdd\x4f\xa9\xe7\x3a\x14\xda\x31\x16\xad\xe0\x92\xfb\x56\xbf\x90\x10\xa1\x48\x12\xeb\x97\x34\x0b\xfd\xfa\x84\xb2\xda\x74\x0e\x2e\x13\xe9\x8b\x44\xba\x8a\x1b\x5e\xba\x2a\xf7\xeb\xc3\xb5\xba\xb3\xfb\x1c\xfd\x96\x70\xd4\x91\x11\x2d\xc6\x22\x22\x76\xcb\x49\xa1\xa3\xfe\xf2\xd7\xb6\xbb\xbc\x25\x4a\xf6\xbb\x13\x28\xdb\xe0\xd6\x6f\x59\x59\xfb\xdd\x51\xaf\x67\xdf\x1f\xfa\x7d\x69\x01\xf7\x85\x05\x48\xec\xb8\xcd\xe8\x6f\x30\x7a\xd9\x5e\xfa\xe3\x9d\x7b\x0e\x44\x98\x6c\x69\xb7\x3f\xaf\xbe\x42\x4d\xc5\xda\xb6\x48\xd8\x1f\x99\x03\xfa\xc3\xd2\xcb\xb2\x92\x74\xbb\x70\xf7\x97\xb8\x20\x43\x70\x7f\xa5\xb0\xec\xef\x27\xe8\xd7\x2e\xc4\x7b\x15\x54\xdd\x51\x42\xb0\xee\x1c\x10\x47\x7f\x15\xbf\xd3\x5f\xa6\x00\xf4\xde\xbc\xba\xe9\xf7\x37\x75\x8e\xb6\x8f\x8e\x1d\xbf\x3b\x1d\xbf\x47\x17\xc6\xbe\xc5\xc3\xb1\x72\xb7\x7c\x14\xfa\x2b\xab\x66\x7f\x59\xfa\xb5\xea\x58\xbd\x26\x0c\x48\x17\x13\xe3\x4e\x1f\x7b\xf4\x29\x63\x47\x47\xd1\xad\x18\xe5\xe2\xd3\xa7\xd4\x3e\x1d\xe1\x48\x5f\xdb\x5e\xba\x85\xef\x0e\xe1\x3b\x46\x85\xc3\xf4\xe9\x79\xce\x35\xcf\xad\x66\xea\xb3\xfa\xbb\x0f\xc1\x6a\x17\x9e\xcc\xd3\xc3\x9d\xdc\x20\xd1\xbd\x79\x09\xf7\x26\x12\x4c\x94\x9d\x62\xf1\xe8\x53\x37\xc6\x8e\x1c\xbc\xd5\x85\x1a\x0f\x45\x55\x8c\x23\x42\x74\x90\x69\x79\x38\xaa\x68\x1c\x89\x50\x51\xd1\x9f\x43\x2a\xe5\x01\x8f\xf1\x3a\x54\x2d\xef\x90\xdf\xea\x60\x92\x82\xa6\x3b\xce\x38\x1e\x0f\xf7\x80\xaa\xd7\x1e\xfe\x4a\xe6\x1d\x87\xb4\x76\x03\x99\x07\x42\x77\xe1\x6f\xe4\x90\xdc\xff\xc2\x90\x25\xd5\xdc\xb0\x86\x7e\x40\x43\x1f\xba\xec\x74\x23\xe8\xa2\x36\x02\xf2\xc2\x44\x19\x58\x46\x90\x51\x63\x40\x93\x1f\x8a\xc2\xe0\x86\xfd\x37\x06\xfc\x37\xaa\x14\x05\x23\xdc\xee\xf2\x66\x8e\x2a\x95\x20\xb5\xd7\xf5\x80\xd7\xf5\x37\xdc\xae\x57\x14\x64\x2e\x1d\x48\x6f\xd9\x85\x49\x23\xc8\xfc\x3f\x02\xcc\xff\xb1\x09\xd8\xe1\xf5\x2c\xbf\xcb\x52\x77\x85\xc0\xa0\x3b\xef\x08\x1f\x9f\xad\x43\xf5\x94\xa2\x4e\xf3\x88\x3c\xcd\xaa\x74\x30\xa2\xdc\x64\x06\x2e\x05\x5f\x5b\x57\x5b\x75\x1b\x61\xf9\xf3\xdd\xed\x36\xc8\x1c\x4d\x35\xc2\x62\xf4\x78\xa8\xde\x16\x65\x05\x1f\x51\x9a\x95\x11\x51\x37\x3c\x36\x95\xe5\x8a\xb2\xff\x8f\x98\xd6\x77\x1b\x98\x0e\xa1\x1a\xb1\x70\x3c\xd5\xbe\xb3\xe1\x62\x20\x8b\xe2\xd7\xa6\x35\xe8\xca\x32\x70\x65\xf9\xc4\x3d\x35\xb9\xcb\xc6\x84\x63\x2a\x42\xe9\x08\xaa\x11\x4f\x82\x4c\xf5\xc7\xa2\x34\x51\x23\x42\x13\x35\x86\xea\xa7\x45\xb1\xde\x11\xa9\xbf\x56\x31\x98\x11\x6f\x7f\x07\x77\x90\xe2\xc2\xaf\xf1\xf1\x5c\x1e\x2e\x4f\xb5\xad\x92\x44\xb8\x91\x98\xe3\x58\x97\xf7\x91\x74\xed\x1a\x89\xd7\x2e\xc9\x46\xc3\x09\x22\x06\x22\x9f\xdb\xa1\xf2\x76\xe9\x72\x97\x17\x21\xad\xd3\x65\x47\xf4\x01\x47\xf4\xaf\x6d\x83\x25\xc9\xea\x3e\x10\x39\xd4\x0e\x6d\x7a\x96\x88\x3d\x32\x43\x2b\x86\x36\xc1\x99\x1e\x46\x5e\x88\xa4\x32\x68\x45\xba\xd5\x51\x3a\x77\x41\x85\xdb\x8a\x1c\x15\x46\x41\xed\x29\xdd\x0d\x47\x91\xfa\x64\x14\xaa\x4f\xa4\x1e\x1e\x45\x51\x9f\xa3\x20\xb7\xf5\x18\xda\xbc\x2a\x85\xf3\xa8\xc4\x4d\x99\x97\x47\x35\x6e\xd6\x38\xbf\xe1\x54\xf9\xab\x9a\x38\xd6\xc4\x73\xae\xc2\xe1\x56\xf9\x8f\xa5\xf2\xef\x2a\x32\x56\xa5\x8d\x1e\x95\xda\x68\x99\x9e\x47\x95\xb5\x66\x20\x4b\x57\x0b\x22\x1d\xd6\xa6\x8f\x7a\x0d\x94\xc0\xd8\x5f\x35\x31\xd2\xd1\x22\x17\x27\x6c\xb0\x9f\xf6\x80\x9f\x76\x93\x8b\xc9\x68\x3e\x07\xad\x81\xc7\x8a\x8f\x8e\x26\xff\xe7\xd1\x06\x6a\x88\x88\x9c\x36\xcf\xb1\x31\x67\xec\xd0\x8e\xb7\x2b\xb9\x0d\xd5\x54\x54\x67\xae\x89\x3d\x8d\x46\xf6\x24\xfd\xe9\x68\xc6\xaf\x46\xfc\xea\x2a\xf3\xdc\xa6\x67\x39\x39\x4b\x55\xbf\xeb\xf2\xdc\x18\xcc\x1f\xd5\x65\xe6\x1e\x5d\xd7\xf3\xd1\x61\x10\xd0\xed\x61\xf4\xe2\xcf\x58\x8b\x2d\x0a\xd5\x7b\x75\x1b\x12\xd5\x8c\xa1\x12\x73\x76\xa0\x19\x70\xa0\x69\x41\x45\xd4\xbb\x09\x40\x67\x42\x68\xc5\xfc\x0d\x5f\x11\x06\xaf\x08\x5d\x7e\x72\x63\xf8\x18\x0c\x1e\x03\x19\x4a\xc7\x90\xa9\x70\x0c\x9a\x9b\xcc\x64\x86\xc4\xaa\x31\x50\x01\x26\x8a\x21\x0c\x03\x65\x24\x16\x20\x17\x4b\x1b\xc9\x5d\xa6\xd5\x65\x57\x9b\xbb\x4c\xec\x72\xaf\x60\x48\x2d\x31\x06\xca\x45\xba\xde\xfc\xd0\xa5\x70\x8c\xef\x68\x2a\x9b\xdd\x31\x86\xf9\xe7\x38\xd1\xa1\x8a\x18\xdb\x84\x30\x60\x42\xf8\xe6\xa8\x79\xbc\x9e\x23\x0a\x81\xc4\xa1\x12\xcf\xc3\xcc\x0e\x1e\x3d\x2d\x0a\x9b\xc7\xf4\x1c\x27\xe6\xa8\x32\xb2\x43\xba\xf4\x31\xa8\x4b\x57\x31\xbe\x31\xa6\x7b\x9c\xac\xbe\xaf\x02\xe2\xa7\x0c\x32\xe3\x8c\x2c\x34\x2b\x66\x87\x52\x57\xfb\x5f\x5c\x63\x4c\xf1\x4f\xa3\xfa\x49\x54\x97\x66\x68\x9c\x97\xfb\xbc\x98\x9b\x4a\x35\x5e\x7d\xc7\x19\x27\x8a\xf7\x2a\x58\x66\x9c\xb2\x1b\x8d\xf3\x99\x68\xd2\x4c\x94\xdf\x60\x20\xed\x73\x53\xdc\xc7\x38\xa7\x9b\x50\xdb\x3c\xba\xf8\xeb\x65\x09\xe0\xa2\x04\x20\x27\x83\x71\x99\x70\x5f\xc7\x9a\xa4\xbe\xb3\xa4\x75\x45\x0c\xa7\xea\xe7\x97\x0c\x4a\xe3\xfa\x44\xc9\x16\x55\x4c\xdf\xd6\x93\x01\xeb\x49\x53\x2e\x98\x71\x99\x8e\x5e\x89\xa9\xe8\xc4\xfe\x2f\xd3\xd1\x8b\x74\x54\x66\x9c\x71\xf9\x80\x5f\xdf\x01\x6f\x49\xa5\xc4\x2f\x93\xd8\x8b\x24\x56\x26\x9e\x71\xc9\xff\x7c\x5c\xf0\x3f\x1f\x87\x36\xee\xaa\xee\xb2\x12\x19\x24\x1a\x5c\xcd\x7d\x36\x26\x83\x54\xc5\xd2\x6b\xb8\xed\x3b\x0f\xaa\x54\xf3\xfd\x16\xcd\x80\xef\x52\x4b\x21\xff\xbb\xb8\x5b\xdb\xff\x54\xda\xbd\xcc\xb1\x2e\xe4\x29\x70\x31\xe9\x5b\xfa\x81\x71\xaf\x34\x94\xc2\xf5\x3b\x0b\x62\x77\x66\x9b\x88\xfa\x6d\x91\xfd\x2e\x4c\x3d\x29\x7c\xbe\xab\xbf\xab\x4c\x8f\x29\x42\x74\x1b\x2c\x77\x65\x62\x4c\x11\xa2\x47\x9a\xc0\xf1\xb0\x76\x87\x7c\x45\xc7\x63\x22\xf5\xb0\x8c\x47\x94\x20\xf9\x78\xd7\x1f\x5e\x2d\x86\xb8\xe7\x53\xdc\x56\xd8\x36\xd4\x67\x71\x9f\x05\xbb\x2e\xd1\xe0\xf1\x0e\x3d\x6b\x87\xba\x0a\xf5\x4b\x0d\x30\x9e\xc1\x93\xb0\x6f\xbd\xe3\x31\x09\x7b\x56\x7d\x76\x1d\xc9\x47\xce\x4b\xe3\x59\xf5\xb3\x5d\xaa\x5d\x79\xac\xc6\x0b\xbf\xd5\x74\xb8\x76\xb6\x69\xf7\x1b\x90\x17\x45\x54\xc5\xd7\xd0\xf1\x76\x66\xe0\x77\xc9\x6c\x29\x10\x07\x92\x69\xb4\xfc\x53\xab\xfe\x75\x13\x4b\xb6\x0a\x6f\xdf\xdb\x6d\x0f\x6b\x6c\xef\x05\xbc\xf2\x08\x1f\xf0\xa8\x8a\xe9\x70\x29\x79\x29\xdf\xc6\x3b\x51\x47\x56\x14\xe0\x9d\x9e\xc8\x44\x99\x6f\xd7\xda\x95\x9a\x7d\xcc\x03\xe5\xb8\x5d\x6c\x56\xca\xa9\x81\x70\x87\x78\xfc\x14\xa2\x55\xe0\xe8\x40\x7e\xdb\x6f\x22\xae\x49\xac\x0d\x9f\x88\xbf\x4b\x2e\xc7\x6d\x33\xd5\x98\x15\x85\xa1\x25\x1a\x4c\x25\x5a\x1a\xb3\xb2\x0e\xae\x4b\xd4\x7a\xb4\xc1\xd1\x5c\x4e\xd8\x02\xf9\xbc\x99\x70\x55\x15\xe6\x6c\x67\x5f\xd9\x24\x4b\x76\xf1\x53\xe1\xd0\x1c\x83\x45\x4c\x5d\x9f\x73\x9f\xc8\x89\x0a\x3f\xbd\xb8\xe4\xa1\x60\x32\xa1\x32\xeb\xf5\xa7\xfa\xdf\xa5\xa6\xb2\x0a\x23\xee\xb6\x4b\x96\x9a\x79\x31\xb9\x42\x54\x4b\x72\x0b\x12\x7f\xa9\x12\xe2\x2b\x4f\xea\x09\x8c\x6c\xf2\xc2\x9b\xaf\xce\xe9\x7c\x71\x4e\xeb\xce\x9f\x7f\xcc\x37\xf9\x33\x64\xb0\xe8\x2a\x5c\xf7\xea\xfe\x35\x11\xef\x63\x77\xc7\x69\x15\xcd\x84\x8a\xa6\x0d\xd5\x68\x7b\x45\xb6\xe7\xfb\x91\xed\x36\xb6\x04\x32\x5f\xf9\xaf\xcd\xf7\x93\x40\xda\x08\xfe\xea\x71\xd3\x8b\xaf\x3c\xd6\x54\x53\x3e\xd0\xa4\x85\x65\x4f\xfe\xc3\x9d\xe6\xba\xba\x6f\xf6\xe4\x11\x87\x18\xab\x6a\x22\xbe\xd9\xb3\xcf\x9c\xbd\xcb\xf1\x69\x33\x51\x96\xbd\xaa\xe6\xe1\xd4\x89\x9f\x93\xa5\x08\x5d\x77\xef\x74\x0b\x2c\x64\xaa\x5f\x27\xe1\x7c\xce\x05\x8b\xdd\xe2\x99\xa3\xe4\x75\x77\x25\x42\xe1\xfc\x84\x69\x36\xd8\x1f\x62\xce\xea\xaf\x3e\xde\xe2\x02\x9e\xf3\xf5\xec\x5e\x88\xa7\xaa\x8a\xb7\xe7\x1d\x66\x60\x66\x93\xe3\xd8\xf5\xef\x42\x72\x1b\xdc\x41\x8f\xbd\x59\x61\x86\xe2\x36\x64\x33\x3a\x6a\x52\x5b\x73\x1b\x92\x94\x84\x3d\x5e\x8c\xd7\x66\x34\x31\x5e\x64\x34\x5b\x6f\x14\xeb\xdc\x44\xe7\xfb\xb7\xd1\x5e\xb3\x33\x76\x97\xed\x4c\xf0\xfd\x3b\x98\xdd\x5c\x79\xc7\xb7\xb3\xc4\xf7\x2f\x13\x68\xa7\xff\x0f\x27\xfd\x7e\xfc\xd7\xf3\x3f\xff\xb7\xff\xe3\xff\x3c\xff\xf3\xff\x3a\xff\xeb\xfb\xe7\xfe\x1f\xff\xfa\xd7\xfb\x1f\xff\xfd\xf9\x2f\xf7\x7f\xff\xf3\xbf\x7f\x4f\xff\x3c\xef\xfc\x2f\xff\xf1\xfe\xeb\xfd\x7f\xfe\xdb\xff\xf8\xd7\xfd\xfe\xf9\xcf\xff\xf6\x9f\xdf\x57\xf8\xfb\x7f\x03\x00\x00\xff\xff\x82\x78\xbd\xa1\xf5\xb5\x03\x00"); -var _addg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x58\x41\x6f\x1c\x37\x0f\xbd\xef\xaf\x98\x63\xbe\x43\x3e\x4b\xa2\x34\x23\x01\x85\x81\x22\x41\x51\x07\x48\x5b\xd4\x49\x1a\xa0\xe8\x61\x76\x57\x72\x17\xa8\xd7\x8b\xb5\x7d\xc8\xbf\x2f\xf4\xb8\x7a\x74\x8d\xf6\x10\x64\x1e\x49\x51\x7c\x94\x48\xca\x7b\xf5\xee\xe6\xfd\xcd\xf1\xf0\x34\x5d\xfd\x72\x7e\xd8\xdd\xd6\xa7\xa9\x1d\x8e\xfb\x73\x7d\x7c\x78\x3e\xef\xea\xb4\xad\x77\x87\xe3\x66\xe3\xc3\xb4\x3f\xec\x9e\x06\xc4\x7f\xbb\xfb\xf5\xb4\xd9\x5c\x7d\x3e\x1e\x3e\xdc\xdc\x7e\x75\xc1\x4b\x70\x2e\xbe\xfd\xfc\xe9\x07\x09\x6f\x7f\x9c\x9e\x1f\xeb\xc5\xe2\xdd\xcd\xfb\xdb\x6f\x8f\x4f\xf5\xfe\xe6\xd8\x1e\x26\x51\x4f\xfb\xe7\xd3\xc5\xdb\x34\x5d\xfd\x5a\xef\x0e\x8f\x4f\xe7\x6f\xd3\x9b\xef\xf7\x0f\xdb\xfa\xbf\x69\x5f\x5b\x97\xff\x7c\xde\xd7\xf3\xe1\x78\x37\xbd\xf9\xb0\x9e\xd6\xa3\xa7\xe2\xf6\xf9\x74\xfa\xab\xde\xd7\xe3\xd3\xb4\x40\x56\x8f\x7b\xfc\xbf\xb9\x7a\xf7\x71\x3d\xfd\xb4\xde\xd7\xe9\x3f\x22\xfb\x02\x3b\x98\x7d\xa9\xe7\xc7\xc3\xc3\x71\xf2\xff\x77\x6e\x36\xf1\xa7\x6f\xa7\x3a\xf9\x8b\xbb\xaf\x9f\x6f\xde\x4f\xbf\xfb\xc9\xbb\x29\xa4\x59\xe2\x1f\x17\xf9\x6f\x1f\x1f\xf6\xb4\xf2\xce\x29\x99\xdd\x61\xbf\xfb\x73\x3d\x6f\xbe\x73\xce\xb9\xe0\x7c\xba\x9e\x96\x5c\x02\xf1\x0c\x9c\x06\x0e\xaa\xcf\xc4\xaa\x5f\x2e\xd8\x17\x77\x3d\x2d\x92\x09\x7d\x87\x33\x61\xe8\xb0\x10\x4a\x87\x5c\xbb\x8b\xd7\x53\x16\xef\x89\x13\xb0\x23\x9e\x81\x47\x6c\xbe\x76\xec\x5e\xe0\x05\x38\x12\x67\x60\xfa\xab\x05\x58\x2e\x58\xca\xf6\x7a\xf2\xc1\xc7\x4c\xc1\x0e\x82\xd9\x04\x7b\xb5\x58\x28\xa8\x10\x24\x47\x41\x7b\xb5\x64\x75\xba\xa4\x50\xe0\x75\xc9\x4c\x41\x78\xbd\x44\xd4\x22\x51\x10\x55\x60\x16\xe9\xf5\x92\x59\x2d\x18\xd8\xda\xb9\xbf\x34\xc8\xc0\xa6\x2f\xc0\x16\xc4\xfa\xda\xe3\xb6\x1b\x2c\x81\x78\x07\xec\x89\xf7\xc0\x83\x78\x72\xbb\xeb\x69\x89\xbc\x18\xc9\xed\x81\x17\xe2\x0a\x3c\x13\x37\xe0\xb1\x5f\xf2\xfd\xa2\x24\x27\xc4\x1e\x98\xfe\x7c\x00\x8e\xc4\x02\x4c\x7f\x3e\xc2\x9f\x27\x4e\xc0\xe6\x6f\x06\x0e\xc4\x0b\xb0\xf9\xcb\xc0\x85\xb8\xc0\xbf\xf9\x5b\x81\xc9\xd7\x6f\x81\xcd\x5f\xe7\x9f\x82\xed\xb7\x07\x26\x7f\x5f\x81\x8d\x4f\x03\xe6\xfe\x01\xfc\x03\xf9\x04\xf0\x0f\x8c\x27\x80\x7f\x60\xbe\x50\x78\x49\xe8\x0f\x85\x97\x84\xfb\x87\x05\x98\xf1\x85\x0c\x6c\xfb\x81\x1f\x8b\x2d\x05\xf0\x13\xdb\x1f\xfc\xc4\xf6\x03\x3f\xcf\xfd\x04\xf1\x7a\xda\x4b\x44\x3e\xe8\x4f\xb0\x9f\xe3\xfa\x08\xfb\xc8\x7c\x46\xf0\x8b\xcc\x67\x04\xbf\xc8\x78\x23\xce\x97\x95\x96\x22\xfc\xb3\x8c\x52\x04\xff\xc8\xfd\x23\xf8\x47\xdb\x0f\xfc\x13\xf3\x11\x11\x4f\x1a\xfe\xe7\x7e\x5e\x39\x04\x4f\xdc\xef\x73\xf0\x85\xb8\x42\x6f\xf6\x0d\x78\xc4\xbb\x38\xad\xda\x65\x6c\xb8\xf4\xba\xce\xc1\x5d\x1c\x88\xc3\x85\xc8\xe3\x82\x89\xc3\x85\x28\xa3\xec\xc5\xe1\x02\x94\x51\xb1\xe2\x90\x90\xe2\x33\xb1\x00\xd3\x1f\x08\x97\x11\x80\x38\x10\x2c\x83\x80\xb8\x58\x80\xc3\xc0\x33\xd6\x8f\x0b\x29\x2e\x2b\x66\x3c\x59\xfd\x25\x62\xf5\xc7\xf8\x72\x05\x66\x7c\xbd\x3b\xe6\xb0\xd0\x7f\x41\x02\x17\xee\x8f\x46\x37\x8b\x98\x00\x84\x42\xee\x93\x6d\x4c\x95\x4d\xfe\xb7\x31\x23\x6e\xd5\xe0\x48\x76\x45\x70\x42\xb2\x2b\x82\x7b\xe1\x1b\x64\x85\xc1\xec\xb0\x5e\x48\xb6\x2a\x26\xd9\xaa\xfe\x48\xb6\xaa\x3f\x92\xad\x20\x2b\x24\xdb\xf4\xf0\xc6\x7e\xa1\xb5\xeb\x29\x88\x4b\x23\x40\x71\xae\xcf\x9e\xd1\xf7\x45\x9c\x74\x3c\xca\x45\xc4\xf5\x96\xed\xcb\x6c\x06\x18\x5e\x8c\x50\xdc\xac\x06\x9e\x82\x45\x05\x89\x82\xac\x02\x5b\x52\x54\x60\x9b\xac\x2a\x98\x29\xd8\x42\xb0\xd8\xae\x3b\x15\x04\x0a\xf4\x16\xd2\x00\x6d\xb3\x44\x46\xe1\x11\x66\x34\x3d\x66\xac\x18\xd6\x28\xb3\x09\x32\x0c\x98\x18\xaf\x41\x66\xee\x88\x42\x92\x44\x16\xbd\x91\x65\xe1\x51\x4b\x40\xe6\x22\x49\x05\xcd\x1c\x73\x2f\xbd\xd3\x75\x81\x79\x98\xc1\xc1\x0c\x70\x98\x91\x89\xeb\xad\x2c\x0b\x2b\x4d\xd0\xca\xca\x8b\x08\xf6\xea\x90\x21\x88\xc7\x02\x86\x20\xa8\x6d\xe7\xe8\x51\xf4\x74\x23\x31\x22\x18\xcd\x49\x44\x16\x2c\xf0\x66\x90\x55\xc0\x18\xa4\x80\x25\x63\x90\x55\x0d\xcc\xc5\x16\x06\x16\xd3\x4e\x0d\x98\x68\xd9\xab\x80\x51\x46\xaf\x02\x2e\x89\xc8\xac\x45\xd5\x3b\x44\x96\x64\x58\x83\x0a\x26\x40\x15\xd9\x61\xc7\x15\x89\x22\x8b\x88\xcb\x62\x41\x47\x1c\x25\xab\x44\x12\x2a\xdc\x8e\x2e\x69\xde\x2c\x4f\x49\x54\x60\x16\x51\x05\xcc\x6c\x42\x8c\x91\x2b\x16\xbc\xc1\xdc\x0b\x81\xe6\xc1\x82\x58\x34\x0f\x91\x17\x6c\xa9\x2a\xe0\x7d\x58\x1a\x6e\xd8\xc5\x45\x6b\x0e\x9d\x6a\x94\x4d\x6b\x0e\xad\x7d\xa1\xde\xeb\xdb\x67\xcc\xfa\xd6\xb4\x55\x8f\xb3\x69\x4d\x70\x81\xc6\xdb\xa4\x35\x81\xde\xd1\x81\x34\x74\x0b\x37\x70\x52\xfb\x44\xac\xdd\x64\x26\xd6\xf5\x86\xeb\xcb\x51\xd1\x1a\xba\x57\xce\xe5\x1f\x9d\x53\x16\x76\xce\xf3\x7a\xbc\xab\x97\xb9\x23\x5b\x77\x3d\x8d\x4f\x8f\x16\x9c\xec\x51\x46\x5d\x72\xfd\xac\x62\xe6\xfc\xed\xf3\x6b\x7c\xf6\xed\xe2\xc2\xd1\xda\x7b\xd7\xf8\xc4\x2b\x2a\xdb\xab\x6e\x36\x15\x1e\x50\x99\x03\xb6\xb7\xab\xf1\x59\xa0\x32\x87\xab\xa9\xb6\x50\xd9\xb3\x43\xa8\x0a\x98\xf0\xc2\xe0\x7b\x99\x8e\x4f\x3c\x96\xbc\x3d\x2e\x3c\x55\x82\x77\x02\xe7\x72\x92\x64\x2a\x3c\x01\x1c\xc3\xe8\x35\x38\x3e\xf1\xba\xe1\x9f\x0a\x49\x6c\x2f\x1c\x66\x8a\xf6\x70\xb0\x55\xa8\x8f\xc4\xe6\xe9\xdc\x08\x43\x5c\x4f\xe7\x92\x33\x07\x08\xb3\x21\x0e\x2f\xd9\xe2\xa8\xf2\xd1\x54\x18\x4b\x8e\x63\xcd\xcf\xa6\x5a\x70\x96\x36\x12\xfd\x0b\x8f\x05\x17\x96\x4d\xd7\x95\x44\x5d\x99\x71\xd9\x39\xf9\x9a\xa9\x1a\xba\x16\x8b\xd1\xb7\x71\x3b\xc4\xb7\xa2\xc3\x5b\xa8\x5b\x4d\xd7\xa0\xb3\x92\x34\xda\x82\x57\x90\x2f\xd6\x3a\x7b\x6d\x8d\xc6\x2f\x3a\x7b\x58\xb9\x7e\x35\x9d\xb6\xe0\x4c\x9f\xfd\x35\x34\xda\xb3\x57\x9d\x4d\x84\x6c\x3a\x9d\x2e\xc5\x7a\xbb\xed\x27\x4e\xbb\x36\x1b\x83\x44\xd3\x25\xd5\x59\x8b\xb7\x75\x51\xd7\x05\x6b\x83\x62\xba\x59\x75\xd6\x02\xb7\xa6\xd3\xce\x14\xac\x21\x1b\x87\xa4\x3e\x6d\x6e\xa6\x64\x3a\xf5\x39\x4e\xaf\x35\xde\x95\xd6\x50\x39\xb9\x50\x95\x1a\x55\xf3\xe5\x0f\x49\x7f\xe9\x0a\xda\x04\x00\xee\xd7\xd3\x86\x3f\x1a\xec\x9e\xcf\xe7\x7a\x7c\xc2\x4f\x14\xf8\x31\xa0\xff\x81\x7f\x38\x56\xfe\x20\x72\x7a\x38\xf5\x55\xf8\xf7\x77\x00\x00\x00\xff\xff\x51\x4f\x67\x1f\x3c\x11\x00\x00"); -var _cfcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x73\x5c\x0e\x10\xff\x21\x75\x23\xad\x56\x62\x5b\x69\xc9\x61\x59\x44\xd9\x05\x09\x71\x48\xed\x49\x65\x89\x3a\x91\xe3\x1c\xfa\xed\xd1\xcc\x84\x70\xa8\x5e\xfd\xd3\xbc\xf1\x9b\x78\xea\x43\x77\xec\x52\x2c\x50\x7f\xcd\xa3\x3f\x61\x81\x21\xa6\x90\x71\x1e\x97\xec\x11\xce\x78\x89\xa9\xaa\xb4\x81\x10\x7d\xf9\x77\x64\xf1\xd7\x7e\xaa\xaa\xfa\xe9\xf1\xfd\x67\x58\x66\x5c\x8f\x87\xee\x78\xba\xcd\x05\xaf\x5d\x1a\x46\xb0\x62\x0b\xcb\xb4\x5a\x01\xea\x6f\x78\x89\x73\xc9\x37\xb8\xfb\x14\xc6\x33\xbe\x83\x80\x03\xf1\x97\x1c\x30\xc7\x74\x81\xbb\xa7\x47\xbd\xd1\xd3\x32\x4d\x7f\xf0\x8a\xa9\x80\x62\x86\x29\xb0\x56\xf5\xe1\xb9\x9f\xbe\xf4\x57\x04\xca\xf0\xc6\x90\xd9\x1b\xe6\x39\x8e\x09\xda\x0f\x4a\xed\xfe\xe3\xef\xb7\x09\x41\xaf\xde\xd7\xee\xf8\x32\x0c\x33\x16\xb0\x46\xfa\xd6\x3f\x5f\xbb\x23\xfc\xd2\xa0\x15\x98\xc6\xee\xec\xef\xb5\xf4\xc7\xf3\x18\x36\xa3\x51\x32\x88\x8f\x21\xf7\xe9\x82\xd5\xbd\xd1\xc6\x3c\xc0\x2a\xd0\xb8\x86\x91\x15\x64\x19\x7d\x64\xd4\x0b\xea\x09\xb5\x7b\x46\x67\x41\xfe\x01\x9c\x53\x52\x15\x04\x05\xae\x6a\x09\x59\x69\x6f\x07\x42\x7b\x43\xc8\x21\x23\x12\xe7\xd4\xae\xba\x37\xd6\x68\x42\x2c\xd0\xb8\x3d\xa3\xbd\xa0\x96\x8d\x8a\x91\x17\xe4\xb9\xca\x32\x42\x41\xd2\xcb\x11\xb2\x1c\xd5\xda\x33\x57\x71\x7b\x1b\x04\x05\xae\xe2\xf6\x14\x68\x15\x68\x1c\x45\xb5\x0d\x0f\xc4\xe2\x9c\x12\x24\xc6\x86\x8d\x9a\x43\x34\x62\x24\x81\x9d\x62\xe4\xc4\xe8\xf8\xc6\x96\x6f\x74\x62\x74\xf2\x25\x38\x97\x8c\x6d\x65\x6c\xad\x69\x15\xb6\x77\xa0\xff\xb4\x81\xdb\x52\xf8\x25\x67\x4c\x85\xf7\x8f\xdf\x9f\x1e\x30\x26\xdc\x56\x7b\x1a\x27\x72\xf1\xef\x6f\x00\x00\x00\xff\xff\x2b\x36\x10\x5d\x06\x03\x00\x00"); -func (_ec bindataFileInfo )ModTime ()_f .Time {return _ec ._bg };func _edcf ()([]byte ,error ){return _dc (_ggcb ,"HKm314-B5-H")};func _eeg ()([]byte ,error ){return _dc (_aec ,"Adobe-Korea1-2")};func _dfadbc ()([]byte ,error ){return _dc (_deda ,"UniCNS-UCS2-H")}; -var _ggcb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9a\x4b\xab\x65\xc9\x71\x85\xe7\xf7\x57\x9c\xa1\x3c\x90\x6b\x47\xbe\x13\x8a\x0b\x72\x4b\x42\x8d\x91\x6c\xdc\x7e\x81\xf1\xe0\xe4\xab\x29\x70\xdd\x2a\xaa\xab\x07\xfd\xef\x4d\xac\x6f\x77\xdb\x12\x06\x79\xd0\x44\xdf\xa8\xc8\x9d\x79\xd6\x5e\x11\xb9\x22\x73\xbf\xfb\xe6\xdb\xdf\x7e\xfb\xf6\xe1\xeb\xe3\xdd\x3f\x7e\xf9\x34\xbf\xdb\x5f\x1f\xe7\xc3\xdb\xfa\xb2\x7f\xf8\xf4\xe3\x97\xb9\x1f\x63\x7f\xff\xe1\xed\xe5\xc5\xc2\x63\x7d\x98\x5f\x7f\xfe\x53\x66\x7e\x7c\x7e\x7e\x79\xf1\xf1\xdf\xfd\xf4\xc3\xd7\xfd\xf1\xdb\xb7\xf3\xe9\x11\x89\x5b\x3f\x7e\xbe\x63\x1f\x8f\x77\xff\xb4\xbf\xff\xf0\xc3\xd7\x2f\x3f\x3d\x7e\xf5\x9b\xf5\x69\xec\xbf\x79\xac\x7d\xdc\xff\x0f\x5f\xd6\xfe\xf2\xe1\xed\xfb\xc7\xaf\xbe\xf9\xd3\x77\xf6\x8b\xfb\xbb\x1f\x3f\x7f\xfe\xaf\xfd\x71\xbf\x7d\x7d\x98\x7c\xfb\x6d\xc9\xbe\xbc\xfb\xe6\x8f\xcf\xcf\x7f\x7a\x7e\xdc\x8f\x77\x7f\xf8\xfb\x8f\xd1\xd2\xaf\xff\x2e\xff\xfa\x0f\xfa\x37\xfd\xd3\xbf\xee\x2f\x3f\x7c\xf8\xf4\xf6\xb0\xbf\xbd\xae\xf2\x3f\xee\x7f\xfe\xe9\xf3\xbe\x1f\xf5\xf2\xee\xdf\xff\xe5\xdb\xdf\x3e\xfe\xc3\x1e\x76\x3d\x42\xce\xa1\xfe\xe7\xed\xff\xb7\x3f\x7e\x5a\xfb\x71\xf1\x57\x60\xf1\xf3\xd3\xda\x3f\x7c\x7e\xce\xfd\xe5\xf9\xf6\xfd\x7e\x79\x3c\xde\x5f\xd7\xeb\xe3\xf1\x78\xdf\xae\x57\xff\xeb\x37\x96\xae\xd7\xc7\xfb\xdf\xff\xee\xf7\xbf\x7b\xf5\x55\xfe\x45\xfc\x8b\xf1\x98\xb7\x4f\x5f\xd7\x3e\xf8\xf4\x84\xf7\x76\x5e\x1f\xe6\x23\xfe\xf7\x3f\xbd\xd8\x75\xdd\xf3\x7e\x58\x77\x74\xf0\xe8\xba\x3d\xfa\xfd\x93\xd9\x9e\x96\xdb\xeb\xa3\x77\x77\xe4\x8e\x63\xbe\x3e\x2c\xd6\x14\xe5\x5b\xf2\x69\x50\x68\xee\x79\x9a\x3c\x27\xbf\x3e\xac\x04\xf7\x9c\x82\xa7\xbc\x3e\x42\x52\xcc\xa9\x78\xaa\x7b\xaa\x3c\x0d\xcf\x76\x8f\xcf\x16\x98\x3e\xf8\x93\x43\x2e\xee\xe1\xc9\xc1\x63\xa2\x79\x4c\x24\x26\x7a\x4c\x32\x5f\x4f\x24\x26\x8e\xf1\xfa\x48\xd5\x47\xc5\xb1\xf0\x9c\xd7\x47\xbe\x3c\x26\x31\x2a\xf9\xa8\xdc\xb3\x7b\x18\x95\xfc\xc9\x25\xfb\x0a\x33\x31\xd9\x63\x6a\xf6\x5f\x91\x89\xc9\x1e\xd3\xcc\x47\x15\x62\x8a\xc7\xf4\xcb\xd7\x53\x88\x29\x1e\xd3\xab\x8f\xaa\xc4\x54\xe1\x73\x15\x5f\x50\x25\xa8\x7a\x90\x59\xf0\x71\x8d\xa8\x06\x8a\xc1\x17\xd9\x88\x6a\x07\x60\x7d\x60\x27\xaa\x2b\x2a\xb6\xcb\x5d\x44\x75\x45\x25\xbd\x91\x27\x51\x4f\x45\xe5\xe8\xe0\x3e\x89\x7a\x2a\xaa\x5c\x3e\x70\x10\x35\x14\x55\x7a\x72\x17\x51\x43\x51\x35\xfb\xc0\x49\xd4\x54\x54\xcb\xce\x8a\x49\xd4\x3c\xeb\xf5\x61\xdd\x7c\xe0\xf4\x11\xb7\x09\x29\x7a\xd4\x62\xe0\xd2\xcb\xbb\x2e\x7f\xd6\x62\xe0\x52\xd4\x55\x7d\x11\x9b\xa8\xad\x28\x2b\xfe\xac\x4d\xd4\x56\x54\x08\x3e\xf0\x10\x75\x14\x15\x83\x3f\xfe\x10\x75\xe6\x71\x57\xf3\x81\x67\x11\x75\x2f\x22\xbc\xbc\x1f\x97\x06\x8e\x4b\x03\x53\xed\xee\xd2\xc0\x71\x29\x2a\x27\x8f\x82\xe6\x43\x0c\x0e\x25\x16\x77\x11\x05\x19\x8b\x73\x7f\xc0\xc6\x01\x1b\x6b\x8f\xee\x22\x4a\x74\x0c\xcd\x19\x3a\xe0\xe3\x10\x1f\x43\xcf\x97\xbb\x88\x8a\x22\xed\xe5\x1c\x1d\xf0\x6f\x88\x7f\xd1\x1c\x9c\x01\x01\x47\x82\xda\x0e\xce\x80\x81\x43\x0c\x8c\xc1\xc1\x19\x50\x70\x88\x82\x31\x3a\x38\x03\x0e\x0e\x71\x30\x26\x07\x67\x40\xc2\x21\x12\xc6\xe4\xe0\x0c\x58\x38\xc4\xc2\x98\x6b\x73\x17\x51\x62\x61\x2c\xc9\x07\xc2\xc2\x21\x16\xc6\x1a\xb3\xbb\x88\x12\x0b\x63\xed\x3e\x10\x16\x0e\xb1\x30\xb6\xee\x10\xc2\xc2\x21\x16\xc6\x9e\x7d\x20\x2c\x1c\x62\x61\xba\x3c\xa1\x07\x2c\x1c\x62\x61\x32\xf3\x81\xb0\x70\x88\x85\x29\x5c\x0e\x21\x2c\x1c\x63\x56\x77\x15\x1f\x38\x66\x93\x4b\x03\xa3\x27\xda\x80\x98\x43\xc4\x4c\x51\xe0\x40\xcc\x21\x16\xa6\x24\x70\x60\xe1\x10\x0b\x53\x16\x38\xb0\x70\x88\x85\x29\x0b\x1c\x58\x38\x76\xb6\xd7\x47\x2a\x02\x67\xe7\x80\x2b\x68\x46\x5c\x51\x2e\x3d\xab\x74\x5f\x2a\x5c\x1d\xe2\x6a\xaa\xc9\x5f\x1a\x5c\x1d\xe2\x6a\x6a\xd1\x1f\x0f\x57\x87\x88\x99\x5a\xaf\x2f\xef\x27\xc4\x9c\x22\x66\xea\xdd\xdc\xa5\xa8\x29\x62\xe6\x2b\xa7\x97\xf7\x13\x62\x4e\x11\x33\x9b\xd7\xcd\x09\x31\xa7\x3d\x9f\xaf\x8f\x1c\xcc\xe4\x1a\x72\x69\x60\x08\xe1\xe5\xfd\x84\xab\x53\x5c\xcd\xd1\x51\x9d\x70\x75\x86\xe9\x03\xa3\xa3\x3a\xc3\x1c\xb8\x86\x06\x9a\x5c\x53\x2e\x3d\x2b\xe9\xf1\x30\x7a\xc6\x72\xb9\xcb\xcb\xf9\x8c\x45\xcf\x12\xc9\x73\x72\x24\x26\x24\x9f\x71\xb4\xd7\x47\xce\x41\xae\xd1\x71\x75\x77\x65\x3d\x6b\x3c\x71\x3d\xe5\xba\xe4\xd2\x22\x94\x1d\x39\x7b\x9d\x9d\x64\xc7\x4c\x39\xbf\x3e\x72\x09\x1e\x95\x72\xc1\x55\x34\x63\x96\xab\xca\xa5\x45\x94\xa4\x81\x2c\x42\x39\x94\x4b\x73\x17\x39\x34\x95\x43\xb9\xfa\x76\x30\xc9\xa1\xa9\x1c\xca\x2d\x3a\x12\xe4\xd0\x2c\xec\x07\x31\xbe\xbc\x9f\x24\x0c\xc6\x72\x0d\x59\x3e\xc3\x67\x5e\x6b\x6b\x6b\xf2\x05\x7c\xc1\x6b\x66\xbc\x88\x8b\xf8\xa2\x8f\x6d\xb5\x6a\xaf\xfe\x79\x8f\xfd\xbf\xb6\xdd\x59\x53\x62\x48\xf2\x47\x5f\x99\x47\x67\x7c\x59\xd3\x79\xa2\xcd\x9a\x0a\xbe\xe2\xbe\x92\x59\x6a\xc5\x57\x59\x42\x95\xaf\xe1\x6b\x5e\xdd\x93\xf1\xbc\x8e\xaf\x13\xd7\xe5\x7b\xe2\x7b\x2a\xce\x8b\xdf\xac\x69\xe0\x1b\x8a\x13\x0b\x6a\x9a\xf8\xa6\x36\x90\xc8\xcf\x5c\xf8\x16\x3e\xe6\xd8\xf8\xb4\xab\xa4\x42\xdc\x91\x2f\x5f\xf2\x65\xcd\x91\x81\xd2\x8d\xfb\xb4\x96\x0c\x94\x6e\x7c\xac\x7e\x5b\x06\x4a\x37\xbe\x96\x24\x1f\x58\xb9\xb1\x92\x2a\x3e\xb0\xca\x99\xb5\x30\x07\x58\xb9\xb1\xdc\x78\x35\xb0\x46\xc6\x7d\xc2\x2a\x83\x55\x06\xab\xca\x58\xb0\x72\xe3\x3e\xd6\x07\x56\x6e\x7c\x2d\xc4\x81\x95\x1b\x2b\xf9\x7e\x1e\x58\x49\x25\x95\x7c\xaf\x19\xac\xb2\xb0\x0a\x91\x38\xb0\xca\xc2\x2a\x07\x7e\xef\x8d\xd5\x61\x0e\x61\x5a\xa0\x62\x11\x7e\x39\xea\x7d\x90\x82\x32\xee\xd3\x1c\x05\xfc\x0a\x54\x34\xad\xb9\x80\x9f\x1b\x8f\xd3\x9a\x0b\xf8\xb9\xb1\xdc\x3b\x71\xe0\xe7\xc6\xf2\xfd\x7b\x0b\xf8\xb9\x71\x4c\xf1\x81\x9f\x1b\x2b\x97\x5d\xf2\x81\x5f\x11\x7e\x57\x60\x2d\xe0\x57\x3a\x71\xe2\x6e\x01\xbf\x22\xae\xe5\xa4\xf7\x51\xc0\xcf\x8d\xa5\x96\xf8\xbd\xe0\xe7\xc6\x52\xcd\xc4\x81\x5f\x81\x6b\x26\xac\x0a\xf8\x15\xc9\x95\x18\x58\x0b\xf8\xb9\xb1\x12\x78\x47\x15\xfc\xea\xc5\x3b\xd7\xfa\x2a\xf8\xb9\xb1\x9c\x0b\x3e\xf0\xab\xc2\xea\x4a\x7a\x5e\x05\xab\x2a\xac\x2c\xe3\x03\xab\x2a\xac\xe2\xa5\xdf\x56\xc1\xaa\x82\x15\x39\x53\xc1\xaa\x82\x15\xef\xad\x82\x95\x1b\xab\xd6\x59\x1f\x58\x55\xf2\x32\x10\x07\x56\x55\x58\x19\xef\xad\x82\x55\x1d\x3c\x4f\x1c\xaa\x60\x55\xc9\x4b\x72\xba\x82\x95\x1b\xcb\xed\x5e\x0b\x58\xd5\x5b\x00\x6a\xcd\x14\x42\x19\xf7\x29\xee\x09\x06\xcf\xc0\xbb\xd4\xef\x7d\xc2\xa1\x27\xb8\x5c\xc2\xfe\x09\x2e\xcf\x84\x4f\xef\xed\x09\x2e\x6e\xfc\x77\x10\x07\x2e\xcf\x1b\x17\xad\xf9\x09\x2e\x4f\xea\x15\x7c\x79\x82\x8b\x1b\xe7\xa4\x7e\xef\x13\x5c\x9e\x70\xe8\x62\x2d\xe0\xf2\x7c\xf2\x3c\x71\x83\x0d\x50\xc6\x72\xaf\xf8\xc0\xc5\x8d\x3f\x8f\xdf\x0b\x2e\xcf\x45\x1c\x73\x80\xcb\xf3\xe6\x10\x63\xe1\x90\x1b\x4b\xa1\x6b\xde\x01\x87\x86\x72\x30\x50\x4b\x06\xf8\xb9\xf1\xb1\x7a\xde\x00\x3f\x37\x3e\xaf\x70\x19\xe0\x37\xc8\xc1\xaa\xb5\x0c\xf0\x1b\xe4\x60\x15\xf6\x03\xfc\x46\x26\x4e\xf8\x0d\xf0\x73\xe3\x73\x08\xbf\x01\x7e\x43\xbc\xca\x05\x1f\xf8\x0d\x72\x90\x9c\x61\x03\x96\xb1\x62\x70\x83\x1d\x58\xc6\xeb\x90\xb0\x67\x0b\x96\xf1\x77\xce\x5a\xc0\x6f\x28\x07\x0b\xf9\x31\xc0\x6f\x2c\x72\x06\x5c\xc0\x6f\x50\xaf\x82\xe6\x98\x60\x35\xa9\x57\x6c\x93\x13\xac\xe6\xcd\x35\x61\x35\xc1\x6a\x0a\xab\xa4\xfd\xba\x4e\xb0\x9a\x11\x9f\x7e\xc7\x04\x2b\x37\x56\x63\x24\x0e\xac\x26\x58\x75\x61\x35\xc1\x6a\xaa\xde\xd7\xa8\xf5\x4d\xb0\x9a\xaa\xf7\x91\xf7\x31\xc1\xca\x8d\xef\xb5\xac\x19\xac\x66\x07\x7b\xe6\x05\xab\x29\xac\x0a\xf5\x00\xcd\x24\x63\x39\xdd\xf3\x82\x95\x1b\x5f\x5f\xfc\x7f\x6c\xf7\x13\x28\xdd\x58\x72\x85\xe0\x7f\x00\xe5\x54\x27\x77\x53\x71\x42\xc5\x29\x2a\x5e\x52\x5f\x75\x01\xef\x52\x39\xeb\xbc\xfe\x05\xbc\x4b\xf0\x96\x3b\x0e\x78\x97\x52\xb9\x40\xb1\x05\xbc\x2b\x12\xa7\xd7\xba\x80\x77\x25\xe2\x34\xef\x02\xde\x95\xf1\x09\xa2\x05\xbc\x4b\xa9\x5c\x1a\xcf\x03\xde\xa5\x72\x16\x81\x68\x01\xe5\xba\x4b\x3f\x73\x00\xa5\x1b\x4b\x29\xb1\x66\xa0\x5c\xa2\x5d\x65\xeb\x5c\x40\xb9\x54\xce\x2a\xdb\xcb\x02\xab\xb5\x88\xd3\x2b\x5c\x60\xb5\x36\x71\x7a\x0d\x0b\xac\xdc\x58\x56\xe3\x30\xeb\x06\xab\x2d\x2a\x56\xd2\x67\x83\xd5\x16\x56\x95\x32\xba\xc1\xca\x8d\xe3\xac\x79\x37\x58\x6d\x61\x55\x93\x28\xbb\xc1\x6a\x0b\xab\xd8\xf0\x81\xd5\x16\x56\x15\x39\xb2\xc1\x6a\x0b\xab\x5b\xb6\x6c\xb0\xda\x95\x12\xa2\xdf\xb1\xa1\xe2\xbe\xb7\x4e\xbd\xb7\x0d\x7e\xbb\xf3\x3c\xe2\xc0\x6f\x8b\x8a\xf7\x16\xb1\xc1\x6f\x8b\x8a\x15\x1a\x6f\xf0\xdb\x50\x91\x2d\x76\x83\xdf\xbe\x65\x1a\x73\x80\xdf\x16\x7e\xf7\xb6\xb6\xc1\x6f\x1f\xd6\xa2\xe7\x1d\xf0\x3b\xe0\xc7\xef\x3d\xe0\x77\xa4\x82\x3b\x63\x0f\xf8\x9d\x7b\xdb\xd0\x9a\x0f\xf8\x1d\xb6\x0d\xb6\xe2\x03\x7e\x47\xf8\x55\xf5\x42\xf5\x80\xdf\xa1\xc4\x81\xf3\x01\x2b\x37\x96\x02\xb2\xe0\x80\xd5\x69\x8c\xc5\x07\x56\xe7\xc6\x4a\xbf\xf7\x80\xd5\x61\x8b\xa0\xc4\x1d\xb0\x3a\x94\x38\xb8\x76\xc0\xea\xdc\x5b\x27\x71\x60\x75\xc0\xea\x5e\x0b\x58\xe9\x54\x24\x07\x6d\x89\x34\xca\x18\xbb\x7b\xa7\x46\x77\x20\x63\x39\x48\xba\x35\xba\x03\x19\x2f\xcb\x8c\x8d\xf8\x6e\x99\x91\xe4\x4b\xf8\x84\x4b\x53\x37\xd3\x90\xff\x32\x56\x5a\x23\xae\xe0\x2b\xc4\x31\x47\xc5\xa7\x12\x77\xdd\xf3\x36\x7c\x8d\xb1\x59\xbe\x8e\xaf\xe3\x23\xee\x89\x4f\x58\xb5\xce\xef\x18\xf8\x84\x55\xbf\xf0\x4d\x7c\x13\xae\x31\x76\xe1\x13\x56\xdd\xf8\x6d\x1b\x9f\xb0\xaa\xc6\xbc\x07\x9f\x78\xd5\x55\x96\x5b\x06\x3f\x5a\x82\x2e\xae\x35\x5a\x82\x46\x4b\xd0\x25\x97\x1a\x2d\x41\xbb\x5b\x82\x46\x1c\xf8\xa9\x25\x28\xe9\x8e\x03\x3f\xb5\x04\x29\xb3\x66\x5a\x02\x19\xcb\x45\x5b\x76\xa3\x25\x68\xb4\x04\x95\xf7\x46\x4b\x20\x63\xa5\xb7\x2a\x1f\xf8\xa9\x25\xc8\x17\x38\xd3\x12\xc8\xb8\x8c\xc4\x07\x7e\x6a\x09\x52\x93\x04\x68\xb4\x04\x8d\x96\x20\xf2\xde\x68\x09\x1a\x2d\x01\xf2\xa6\xd1\x12\x34\x5a\x82\xde\x89\x03\x3f\x5a\x82\xd8\xa2\x7c\xe0\x97\xef\xbc\xd4\x58\x5a\x02\x19\xab\xc8\xcd\x46\x4b\x20\x63\xa9\x28\xb7\x1a\x2d\x41\xa3\x25\xb8\xb9\x41\x4b\x20\x63\x35\xea\xa4\xa1\xd1\x12\xc8\x58\x09\xda\x8a\x1b\x2d\x81\x8c\x73\x57\x6b\xa1\x25\x68\x05\xe9\x26\x99\xd1\x90\xff\x0d\xf9\xcf\x69\x43\x43\xfe\x37\xc9\xfa\x4a\x0e\x36\x64\xbd\x8c\xe5\xab\xb2\x66\x30\x90\xac\xaf\x17\xb8\x20\xeb\x65\x3c\x3f\x98\x03\x0c\x0a\x32\x03\xfe\x21\xeb\x65\xac\x04\x9e\x87\xac\x97\xf1\x38\xf1\x05\x59\x2f\x63\xb9\xab\x86\xb5\x0a\x06\x3f\x4b\x7d\xfd\x5e\xa4\xbe\x8c\xd5\xa8\xf6\xb3\x21\xf5\x65\xac\x1a\xb9\x8f\xd4\x97\xb1\x14\x9b\xfd\xf5\xed\xbe\xd1\x09\x34\x3a\x81\x98\x58\x2a\xb0\xa9\x13\xc8\x26\x15\xdc\xe8\x04\x64\x5c\x99\xb0\x54\x28\xa6\x4e\xa0\xd2\x09\x34\x3a\x01\x19\x57\x99\x7a\xd5\x74\x02\x32\x56\x29\xe9\x8d\x4e\x40\xc6\x7d\xc4\x01\xaf\x3a\x81\x64\xea\xda\x39\xe4\xc3\x58\xba\xc7\xd2\x09\xc8\x58\xd2\x39\xfe\x6c\x74\x02\x32\xbe\x4d\xea\x77\xd0\x09\xc8\x58\xb6\xca\xf3\x80\x4d\x9d\x40\x36\x29\xd9\x46\x27\x20\x63\x35\x56\xe6\x00\x97\x27\x1d\x12\x29\x40\x27\x20\x63\xc9\x28\x53\x74\x02\x32\xee\xd3\xef\xa0\x13\x90\xb1\x14\x28\x3f\x74\x02\xed\xe7\x4e\x80\x38\x70\xa1\x13\x30\x52\x8a\x4e\x40\xc6\xc7\x32\x2f\xb8\xdc\x9d\x00\x74\xa2\x13\x68\x77\x27\xa0\x2d\xac\xd1\x09\xc8\x78\x9c\x70\xa1\x13\x90\xb1\x72\x31\x2f\x9d\x80\x8c\xa5\x40\x99\xa2\x13\x68\x74\x02\xba\x31\x98\x8d\x4e\x40\xc6\xbb\x0d\xe6\x00\x3f\x75\x02\x39\x18\xcf\x03\x3f\x75\x02\x29\xc3\x0d\x3a\x01\x19\x4b\x51\x5b\x58\xa3\x13\x90\x71\x19\x89\x0f\xfc\xd4\x09\xa4\x3b\x6d\xe9\x04\x1a\x9d\xc0\x5d\xe2\xe8\x04\x64\x2c\xc5\xc4\xfa\xc0\x6f\xb0\x4d\x26\xd6\x02\x7e\x03\xa9\x4a\xaa\x0c\xb0\x92\xea\x4f\xb1\x68\x7d\xa8\xfe\x76\xab\x7e\x9e\x87\xea\x97\xb1\x12\xe1\x10\xaa\x5f\xc6\xaa\x2e\x36\x66\x43\xf5\xcb\x58\x89\x60\x8a\xea\x97\x71\xe9\xcb\x58\x70\x99\x74\x98\x92\xcd\x0d\xd5\xdf\x50\xfd\xfd\x5e\x0b\xb8\x48\xf5\xe7\x40\x59\x46\xf5\x37\x54\xff\x95\xf4\x3b\x50\xfd\x6d\x72\xfa\x05\x5f\x50\xf8\x32\x96\x12\x5b\x18\x12\x5e\xc6\xe3\x98\x17\x0e\x49\xc2\xe7\x46\x29\x9c\x37\x2e\x94\x6f\xb6\x21\x24\x7c\x93\x5c\x4f\x29\xe2\x03\x17\xc9\xf5\x5c\x79\x6f\xc8\x75\x19\x97\xcd\xc2\x0f\xb9\x2e\x63\x29\x49\xaa\x36\xe4\xba\x8c\xfb\x34\x2f\x72\xbd\xad\x1b\x17\xe1\x87\x5c\x97\xb1\x94\xe0\xee\x02\x17\x49\xf8\x1c\x2b\xf3\x82\xcb\x82\x2f\x6c\x07\x48\xf8\x76\x4b\xf8\xce\xbc\xf0\x45\x12\x3e\xa5\xca\xef\x00\x2b\x49\xf8\xac\x93\xf9\xd9\x90\xf0\x32\x5e\xd7\x58\x0b\x58\x49\xc2\xd7\x0b\xfc\x90\xf0\x0d\x09\xcf\x09\x65\x43\xc2\xcb\xf8\xbc\x8a\x43\xc2\xcb\x78\x6e\xe1\x03\x3f\x24\x7c\x66\x4b\x44\xc2\x37\x24\xfc\xa5\x13\x89\x86\x84\x97\xb1\x94\x75\x0a\xd0\x90\xf0\x32\x96\x23\xeb\x43\xc2\xb7\x4d\xe7\x08\xff\x90\xeb\x32\x56\x23\x72\x09\xb9\x2e\xe3\x35\x82\x39\xc0\x4a\x72\x3d\x65\xea\x1a\x72\x5d\xc6\x4a\x90\x7c\x6d\xc8\x75\x19\x97\xe1\x8c\x05\x2b\xc9\xf5\x54\xc8\x7d\xe4\xba\x8c\xcf\x4b\x1c\x58\x49\x9a\xa7\xc2\xd6\x8e\x34\x97\xf1\xfa\xa7\x79\x91\xe6\x0d\x69\x7e\xd7\x71\xa4\xb9\x8c\xe5\xca\xf6\x87\x34\x97\xb1\x9c\x98\x17\x69\xde\xce\x7d\xaa\xaa\x79\x0f\xb8\x1c\x24\x00\xbf\x0d\x69\xde\x90\xe6\x06\xa6\x48\x73\x19\x4b\xe5\x1e\x0b\x2e\x48\x73\x4e\x50\x1b\xd2\xbc\x1d\x4e\x1a\x12\x3e\x30\x40\x86\x07\x78\x8a\x0c\x97\x09\x74\x63\x5c\x44\xcd\xee\x8a\xf6\x3e\x33\xea\x08\x5a\x99\xa2\x36\xa4\x23\x67\xbb\x4b\x91\xfb\xe0\xa1\xa3\x44\x74\x81\x75\x9f\xf3\x71\x81\x35\xbb\x17\xb6\xc2\x91\x40\xe7\x68\x43\x46\xa7\x9f\x7f\x75\x9b\xef\x94\xc0\xee\xaf\xb3\x5c\xda\xb9\x3a\x6f\x53\x17\x63\xc5\x44\x54\x2e\xc6\xa6\x2e\xc6\xee\x77\xce\xc5\xd8\x7c\x3a\xb4\xf7\xa1\xe5\x93\x0e\x48\xa6\x98\x04\xd4\x13\x94\x75\x7d\x56\x38\x76\xe4\xfa\x6c\xea\xfa\xac\x90\x2f\x5c\x9f\xcd\x41\x94\xa0\xe3\xae\x6c\xea\xae\xac\x50\x1d\xb8\x2b\x9b\x93\xfb\x6e\xe9\x6f\xee\xca\xa6\xee\xca\x4a\x51\xae\x70\x57\x36\x75\x57\x56\x8a\x94\x13\x77\x65\x53\xb7\x60\xa5\xaa\x52\x73\x0b\x36\x75\x0b\x56\x9a\x8a\x28\xb7\x60\x53\xb7\x60\xa5\xab\xc5\xe6\x16\x6c\xea\x16\xac\xea\x30\x6f\x71\x0b\xb6\x74\x0b\x56\xb5\xfb\x2f\x6e\xc1\x96\x6e\xc1\x10\x2c\x8b\x5b\xb0\xa5\x5b\xb0\x1a\xb2\xb9\x8b\x28\x5d\x79\x71\x29\xb0\xb8\xf2\x5a\xba\xf2\xaa\xc9\xc5\xf9\xe2\xca\x6b\xe9\x32\xab\x26\xdf\xd0\x17\x97\x59\x2b\x72\xa9\x5f\xb2\xbb\x88\xd2\x05\x54\x15\x65\x16\x17\x50\x4b\x57\x4b\xb5\x7a\x53\xbe\xb8\x5a\x5a\xba\x5a\xaa\xd5\x8b\xd5\xe2\x6a\x69\xf1\x81\x40\xab\xdd\x5d\x44\xe9\x6a\xa9\x76\x4f\xab\xc5\xd5\xd2\xd2\xd5\x52\xd3\xbd\xc4\xe2\x7a\x76\x15\xdf\x61\xda\xd5\x7d\x60\xd1\x06\x83\x69\xba\x58\x5a\x45\xfb\xcb\x2a\x7c\x6d\xe0\xa8\x2e\xee\xa4\x96\x0e\x8a\x9b\x75\xb9\xa4\x0e\x31\xad\x79\x7f\xb4\x38\x26\x5e\x3a\xea\x6d\xe0\xc5\x49\xef\x52\x0b\xdb\x82\x6f\xff\x8b\x0e\x76\x49\x06\x36\xed\xf4\x0b\x15\xb8\x94\x61\x2d\x99\xaf\x9e\x0c\x5b\xca\x94\x96\x3d\x79\x16\x99\xb2\xc4\xe8\x96\x8b\x0f\x84\xd1\x4b\x8c\x6e\xc5\xd5\xc0\x82\xd1\xeb\xe9\xd5\xbd\x55\xef\x59\xd6\x53\xc5\x1d\xd3\x4c\xe0\x3c\x37\x03\xf5\xac\xaa\xd5\xc3\xe8\x25\x46\xb7\xe6\x82\x7b\xc1\xe8\x35\x5c\x39\xb6\xe6\x1b\xf2\x1a\x12\x8e\x4b\x24\x6f\xcd\xf7\xa2\x05\xc9\x97\x48\xde\xba\xcb\xd0\x05\xc9\x97\x48\xde\x2f\x57\xdd\x0b\x92\x2f\x91\xbc\x2b\x1f\x17\x24\x5f\xcb\xeb\x50\x37\xaf\xcb\x6b\xe9\x68\x00\xd3\x2f\xad\x6b\xa9\x24\x2d\xa5\x42\x0f\x72\x91\x0a\x4b\xa9\xd0\x83\x6f\x06\x8b\x54\x58\x4a\x85\xae\xd6\x6a\x91\x0a\x4b\xa9\xd0\x93\xcb\xac\x45\x2a\x2c\xa5\x42\xd7\x4e\xb5\x49\x85\xad\x54\xe8\xea\x55\x37\xa9\xb0\x95\x0a\xbd\x94\xf6\xf2\x7e\x93\x0a\x5b\xa9\xd0\xab\x97\xf2\x4d\x2a\x6c\xa5\x42\x6f\xae\x7e\x36\xa9\xb0\x95\x0a\xbd\x5b\x77\x17\x51\x4a\x85\xde\x7d\x3f\xdf\xa4\xc2\x8e\x7c\x97\x72\x79\xcd\xde\xe4\xc2\x56\x2e\xd8\x65\xd1\x87\x92\x0c\x3b\x11\x17\xbc\x8e\x6f\xb2\x61\x27\xe2\xa4\x59\x37\xe9\xb0\x33\x71\xd1\xdf\xc9\x26\x1f\x76\x26\x2e\x79\xad\xdb\x24\xc4\x2e\xc4\x65\xd7\x93\x9b\x8c\xd8\x85\xb8\xe2\x5a\x7e\x43\xf6\x7d\x7f\x37\x53\x5d\xdb\x6e\x78\xbc\x39\x8a\xb9\x6a\xf1\xb1\x10\x79\xd3\xcf\x5c\xcd\x35\xe1\x86\xc9\x9b\xde\xe5\xea\xae\xa5\x36\xbd\xcb\xe6\x73\x9a\xab\xbb\x1e\xda\xd0\x7b\x77\xb5\x77\x76\x09\xaa\xae\xf6\x6e\xf3\x8d\x8d\x5d\xbe\x87\x6e\x38\xbf\xf9\xc8\xc6\x2e\xa7\xe0\x86\xf4\x9b\xaf\x6c\xcc\x5c\x1f\x6c\x58\xbf\x9f\xf7\x87\x3d\xbe\xb3\x6c\x08\xbd\x87\x8e\x08\x2c\x7a\x25\xdf\x43\x47\x04\x9b\x6f\x6f\x2c\xea\x45\xc2\xf2\x3d\xb4\x9f\x9b\x4e\xaa\xf7\x38\xb7\xcf\x58\x73\x91\x2f\xe0\xd3\xd8\xe4\x44\xdf\x70\x7f\xf3\x95\x8e\x25\xa7\xe2\x86\xfc\x7b\x4a\x73\x59\x76\x2e\xee\x29\xcd\x85\xf1\xdf\x16\xe5\x3b\xf2\xf1\xbc\x62\xce\x20\xb2\x64\x2f\x9e\x57\xf4\x8e\x48\x93\xbd\xd4\x83\x99\x8e\x66\xf7\x52\x0f\xb6\x17\x63\xab\x67\xeb\x26\x2b\xf6\x66\xac\x6e\x5d\x37\x69\xb1\xb7\xf4\x90\x35\x71\x79\x4b\x0f\x61\x2c\xe8\x13\x8b\xbd\xa5\x87\xf6\xe6\x79\x2a\xa0\x9b\xfc\xd9\x87\xe7\x49\xf3\x6f\x12\x68\x1f\x3e\x8d\xd2\x8d\xe3\x21\x83\xce\xa5\xe3\x9e\x60\xd6\xfe\x7c\xbf\x4e\xe1\x2f\xb7\xeb\x73\xe9\x30\x08\xe3\xbf\xa8\xcb\x57\xe5\xe3\x3b\x2c\xf3\x37\x78\x48\xc4\x73\xe9\x1e\x20\x58\x93\x4f\xf7\x00\x18\x7f\x83\x26\xdf\x94\x8f\x55\xe9\x4b\x8c\x43\xc6\x1e\xd3\x01\x4c\x08\x8e\xf8\x31\x1d\xc0\x1c\xd3\x3d\x68\xd0\xae\x7d\x4c\xf7\xa0\x18\x0b\xba\x6b\x38\x26\x99\x72\xee\x2f\xeb\xa2\x2b\xb2\x43\xba\x1f\x63\x8e\xe8\xfb\xc9\x21\xdf\x4f\xd0\xa1\x4c\x50\x77\x72\x82\x0e\x65\x30\x16\xaa\x33\xf6\x04\x1d\xca\x9c\xc0\xf3\x52\x55\x1c\xcf\x0b\xea\xc6\x42\xea\xbe\xe6\xa0\x6e\xec\x04\xe6\xc8\x9e\x29\x87\x6a\x71\xa2\x0e\x47\x42\x6e\xf2\xe9\x70\xe4\x50\x41\x82\xbe\x20\x3a\x54\x90\x43\x05\x09\xc5\x77\x9f\x43\x05\x39\x49\x07\x49\xa1\xa6\xec\x3e\x1d\x24\x1d\xaa\x4a\xa8\xde\x8d\x1d\xaa\xca\x49\xea\x84\x43\x13\x2e\x49\x9d\x30\xc6\xd7\x52\xe4\x63\xac\x14\x63\x68\x41\x71\x2a\xcf\x87\x8a\x14\x74\x68\x79\xa8\x48\x87\x8a\x14\xfa\xe5\x18\x50\x91\x4e\xbe\xe3\x5c\x0b\x1d\x2a\xd2\x29\x7a\x47\x51\x87\xff\xa7\xf0\x8e\x64\x7c\x2c\xbe\x24\x1f\x5f\xdf\x5d\xde\x89\x1c\x2a\xd7\xa1\x72\x45\xd3\x3b\xa7\x72\x1d\x2a\x57\x94\x9c\x3b\x54\xae\x43\xe5\x8a\xc1\xd5\xc2\xa1\x72\x1d\x2a\x57\x8c\xe2\x06\x95\xeb\x50\xa5\xa2\xbe\xc7\x38\x54\xa9\xa3\xc2\x64\x31\xeb\xfd\x76\x9d\x28\x9d\xfb\x4b\xc0\xdc\x14\xc7\xd8\xae\x2e\x3a\xaa\xeb\x38\x5d\x5d\x34\xc6\xe3\xb2\x7c\x19\x9f\x63\x1a\x8b\xf0\xeb\xea\xa2\x31\xc6\xd7\x60\xa7\x4f\xe6\x50\x97\x1a\x0b\xf3\xaa\x4b\x3d\x7d\x31\x36\x85\x3f\xcb\x32\xff\xff\x8f\xcf\xcf\x2f\xbf\x7c\x36\x3b\x7f\xfc\xf2\x65\xbf\x7d\xd5\x27\xba\xfa\x34\xf6\xb1\xf6\xf9\xf0\xb6\x7f\xf9\xdc\xf7\xf3\xa7\xcf\x3e\x4a\xff\xfd\x77\x00\x00\x00\xff\xff\x99\x68\x60\x83\x1a\x2c\x00\x00"); -func _ddbd ()(*asset ,error ){_dfcf ,_aaac :=_ccfgc ();if _aaac !=nil {return nil ,_aaac ;};_cfdb :=bindataFileInfo {_ag :"KSCpc-EUC-H",_bc :10306,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492597,0)};_bbcd :=&asset {_cd :_dfcf ,_dce :_cfdb };return _bbcd ,nil ; -};var _gcdcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\xc1\x8a\xdb\x30\x10\x06\xe0\xbb\x9f\x62\x8e\xdb\xc3\xd6\x92\x5d\x3b\x32\x2c\x81\xe2\x14\x6a\x96\xed\x96\xa6\xd9\x16\x4a\x0f\xb2\x35\x0a\x82\x46\x16\xb2\x7c\xc8\xdb\x17\xcd\xb8\xee\x21\x4c\xfc\x49\xff\x58\x96\x54\xf6\xc3\x69\xf0\x2e\x41\xf9\x35\xce\xd3\x19\x13\x58\xe7\x4d\xc4\x65\x5e\xe3\x84\x30\xe2\xd5\xf9\xa2\x90\x15\x18\x37\xa5\x7f\x8f\x54\xa6\x9b\x0e\x45\x51\x3e\x9f\xfb\xc7\x4f\x97\xfe\xf1\x33\xac\x0b\x6e\xd6\x0f\xa7\xf3\x7d\x49\x78\x1b\xbc\x9d\xa1\xe6\xac\x59\xc3\x96\x07\x28\xbf\xe1\xd5\x2d\x29\xde\xe1\xe1\xa3\x99\x47\x7c\x07\x06\x6d\xf6\xd7\x68\x30\x3a\x7f\x85\x87\xe7\x39\xa2\x96\xfb\xc0\x79\x0d\xe1\x0f\xde\xd0\x27\x10\x64\xe8\x0d\xd5\xa2\xec\x5f\x74\xf8\xa2\x6f\x08\xfb\x5a\xde\x68\x84\x06\xde\x30\x2e\x6e\xf6\xd0\xbd\x17\xa2\xfd\xcf\xdf\xef\x01\x41\x6e\x0d\x2e\xc3\xe9\xd5\xda\x05\x13\xd4\x92\x9b\x97\x3f\x2f\xc3\x09\x7e\x49\x90\x02\xaa\xe6\x83\x90\xbf\xb7\xa9\x3f\x5e\x66\xb3\x07\x65\xcb\x1f\x34\x39\x13\xb5\xbf\x62\xf1\xa4\xa5\xae\x8e\x90\x4b\x7d\x04\x25\x9a\x96\xa8\x61\x6a\x88\x14\x51\xcb\xd4\x1e\x41\xd5\x95\x20\xea\x98\x46\x9a\xd5\x11\x19\x26\x93\xa9\xad\x32\x8d\xdc\x7e\x64\xaa\x33\xe1\x48\x84\x14\x3c\x34\xc5\x93\xae\xb5\xcc\x44\x45\x89\x43\x4b\xa4\x98\x3a\xa2\x03\xd1\xc4\x34\x11\x75\x44\xc8\x84\x99\x54\x5e\x57\x3d\x6a\xa2\xd1\x12\xc9\x4c\x86\xde\x48\x45\x09\x45\xbd\x8c\x61\xa2\x75\x29\x45\x64\x99\x38\x48\xed\x2d\x07\x2d\xb5\xef\x44\x3e\xc3\x7d\xef\xf2\xff\x7c\x7b\xf6\xd3\x9c\xd6\x18\xd1\x27\xba\x3b\x74\x66\x79\xd3\x9d\xc7\xfd\x6e\x86\x39\xe4\x14\xfd\xfe\x06\x00\x00\xff\xff\xb3\x7c\xc9\x5d\xc7\x02\x00\x00"); -func AssetNames ()[]string {_dbca :=make ([]string ,0,len (_fcbe ));for _bgaf :=range _fcbe {_dbca =append (_dbca ,_bgaf );};return _dbca ;};func _ddcgc ()(*asset ,error ){_gdga ,_ccac :=_ggca ();if _ccac !=nil {return nil ,_ccac ;};_ageb :=bindataFileInfo {_ag :"UniJISX02132004-UTF32-V",_bc :4412,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492998,0)}; -_effd :=&asset {_cd :_gdga ,_dce :_ageb };return _effd ,nil ;};func _ggccf ()([]byte ,error ){return _dc (_bbdac ,"UniJIS-UCS2-HW-V")};func _fdff ()([]byte ,error ){return _dc (_afe ,"UniCNS-UTF8-V")};var _bbcg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\xcd\xce\x35\x3b\x72\xa6\x07\xcf\xeb\x28\xde\x61\x7f\x83\xfe\x94\x24\x23\xf8\x03\x08\x2f\xe0\xee\xb6\xda\x1a\xb4\x6d\x58\x96\x6d\xc0\xf0\x20\x33\x57\x2e\xa1\x00\x6b\x57\xa1\x54\x1a\xe8\xec\x0d\x5e\x57\xee\xb6\x61\x18\xd8\x7b\x74\xe3\x89\x87\x2b\x93\x0c\xfe\xc5\x1d\x11\x64\xfe\xcd\x7f\xfc\xfb\xff\xf4\xf7\xbf\xfc\xf1\xaf\x3f\xfe\xe6\x7f\xfc\xcb\x9f\xee\x7f\x78\xfe\xfa\xe3\xfb\xc7\x5f\x3e\x7f\x79\xfe\xe5\x4f\xff\xfa\x97\xfb\xf9\x71\x3d\xff\xf4\xc7\x5f\xfe\xf0\x87\x52\x7f\x7c\xfe\x78\xff\xf5\xd7\x3f\x81\xfb\x9f\xcf\x3f\xff\xe1\x0f\xfb\xf7\xff\xf0\x6f\xff\xf2\xd7\xe7\x9f\xff\xfe\x97\xef\x9f\x7e\x34\xcb\x7d\xfe\xf5\xcf\x6f\xd9\x1f\x3f\xfe\xe6\x7f\x7a\xfe\xe9\x8f\xff\xf2\xd7\xbf\xfc\xdb\x8f\x7f\xf7\xdf\x7c\xfe\x74\x3d\xff\xbf\x1f\x9f\xe7\xbb\xe5\xff\xc3\x5f\x3e\xcf\x5f\xfe\xf8\xcb\x3f\xfd\xf8\x77\xff\xf9\x3f\x94\xff\x2a\xfd\x87\x7f\xfd\xf3\x9f\xff\xcf\xe7\x9f\x9f\x5f\xfe\xfa\x23\x90\x3d\xbf\x7c\xc0\x3f\xfc\xcd\x7f\xfc\x2f\xe7\x9f\xff\xfb\xf3\x9f\x9f\x1f\x7f\xf3\x8f\xbf\xfc\xf1\x3f\xff\x87\x7f\xff\x8f\xff\xf1\x1f\xea\xbf\xff\xef\xf8\x27\xff\xfb\x5f\x9e\xbf\xfc\xcb\x1f\xff\xf4\xcb\x8f\x52\xff\xff\xc7\xd1\xff\x6f\xf9\xff\xfc\x6f\x7f\x7e\x7e\x94\xf7\x21\xff\xdb\x3f\xfe\xfd\x7f\xfa\xf1\xbf\x97\x1f\xe5\xf8\x51\xb3\xf5\xfe\x7f\xbc\xf2\xff\xf5\xbf\xfc\xe9\xf3\xfc\x38\xfc\xab\x5a\xfb\xfb\x4f\x9f\xe7\x5f\xfe\x7c\xde\xcf\x5f\xce\x5f\xfe\xe9\xf9\xc3\x8f\x1f\x7f\x7b\x1c\xc7\xf1\xf3\xc7\xdf\xfe\xa7\xf1\x77\x7f\xf7\x73\xff\xfd\xdf\xfa\xf7\xdf\xfd\xdd\xfe\xfb\xf9\xe5\xf3\xff\xfa\xc5\x1f\x8a\x0f\xfa\xe5\x4f\x7f\xfd\x3c\x5f\x65\xbf\x3e\xe3\x38\xca\xf7\xe7\x8f\xb2\x7f\xf5\xff\xfc\xf7\x1f\xca\x71\xbc\x6f\xff\xe3\xe7\xbf\xfe\xa2\xfa\x8b\xf1\xec\x5f\xfc\xed\x71\x9c\xc1\xdf\x1b\x4a\x1f\x48\x52\x49\xfe\xfc\x51\x6b\xcb\x40\x36\x94\x8d\x9f\x3f\xca\xf0\x77\x53\xc9\xfc\xf9\xa3\x1c\x75\x4b\x2e\x9f\xbc\xa1\x74\x25\x45\x49\xf9\xf9\xa3\x54\x9e\xfd\xf1\x39\x1b\x4a\x9d\x5b\xf2\xf8\xab\x0d\xdd\x27\x3f\xfe\x6a\x43\xef\x0b\x89\xef\xda\xd0\x47\x22\x59\x4a\xd6\x96\x34\x24\xa7\x92\xf3\xe7\x8f\xbe\x94\xdc\x4a\xee\x5d\xc6\xe7\x7c\x94\x7c\xb6\x84\xfa\x7c\x2b\x92\x0d\x7d\xf2\xab\x6f\x53\xd2\xb6\x84\xfa\x7c\xad\xf3\x97\x3a\xf3\x9c\xaf\x6f\xdf\xd0\xa7\xcf\xf1\xed\x1b\xfa\xa4\x86\x5f\xdf\xbe\xa1\xaf\xad\x8d\x72\xd0\x2e\xa0\xf7\xdd\xf6\x52\x78\x17\xd0\x07\x65\xca\xa5\xe4\xda\x92\xad\xf9\x52\x95\x54\x24\x7d\x4b\x82\x56\x00\x7d\x1e\x5b\xd2\x2d\xb3\xa1\x4f\x7e\x75\x3f\x48\x36\xf4\x41\x99\x0f\x7a\x06\xfa\xe0\xed\x9f\xaa\x84\xb6\xf3\xf6\x4f\x28\x89\x2d\xe1\x5d\x9f\xae\xa4\x6f\x89\xbf\x9a\x4a\x76\x5f\xcc\x85\xe4\x54\x82\xe6\x7d\xd7\xad\x84\xb6\x6f\x1d\x16\x35\x06\xf4\xb5\x9f\x53\x6f\xb4\x0a\x94\xa3\x20\x59\x4a\xd6\x96\x1c\x48\x4e\x25\xd7\xcf\x1f\x6b\x1d\x5b\xd1\xf5\x63\xa1\x0d\x6b\x1d\xfb\xfd\x6d\xa1\xd7\x76\x96\x9f\x3f\xb2\x6e\xdd\xb7\xb3\x29\x59\x3f\x7f\x64\xec\x96\x35\x47\x62\xbb\x77\x99\xe0\x57\xb7\x65\xf6\xdb\xb2\xef\xb6\x86\xfd\x03\xf4\x63\xd7\x31\x0a\x3a\x8b\x92\x5b\x52\x91\xa0\x8f\x68\x48\xf6\x73\xa2\x29\x89\xef\xcf\x1f\x9d\x77\x45\xfa\x9c\x0d\x3d\xca\x1f\xfe\xb6\x3c\xed\xfb\xf3\xc7\x0b\x7d\xe5\x1f\xfe\xb6\x1e\x3c\x59\x28\xc7\x51\x26\xb2\xa6\xac\xed\xa6\x95\x03\x51\x28\xda\x93\xf3\xf0\x87\xa9\x24\x29\x54\x10\x75\x45\x7d\x17\x1a\x48\xa6\x12\x34\xb9\x90\xdc\x4a\x3e\x3f\x7f\x14\x7f\x55\x7d\x50\xf5\x41\x15\x91\x0f\xaa\x3c\x88\x2a\x35\xab\xb9\xa1\x0c\x6a\xd4\xaa\x92\xb6\x27\x79\x43\xe2\x83\x9a\x0f\x52\x74\x29\xba\x7e\xfe\x28\x7b\x3c\xd6\xe3\xf4\xfd\x1b\xf6\x9a\xb2\x4b\x95\x83\xf6\x02\xa5\x27\x92\x54\xe2\xa3\x02\xd1\x52\x44\x7f\x17\x4a\xd9\x5e\xa0\xec\x59\x53\x4b\x2d\x48\x36\x6c\x6d\xf6\x2d\xeb\x54\x9d\x39\x51\x73\x57\xbd\x0c\x25\x63\x3f\x6a\xae\xad\xa8\xb2\x14\xed\x11\x54\x26\x3f\x5b\x55\x49\xdd\x12\x5e\xb7\xac\xe6\x86\xb2\xa7\x40\x2d\xcb\x0a\x2c\xeb\xb4\x7f\x56\x0f\x34\x0e\x94\x36\x90\x7c\x95\xec\x95\xb9\xed\xa6\xd4\x42\x2d\x81\xd2\x1a\x92\x54\x42\x7b\xeb\x81\xe8\x54\x74\xee\x42\x0b\xc9\x47\xc9\xee\xba\x2c\x48\x1e\x25\x7b\x09\x4f\x5e\x56\x7c\xd9\x86\xb5\x2a\x85\x58\xe7\x85\xb2\xc7\x65\xad\xb5\x29\x61\x7c\x55\x45\x56\x60\x43\x09\x7f\x36\x94\xd0\x10\x25\x4b\xc9\x1e\x4c\x8d\xc6\x56\xeb\x58\xa9\x63\x22\xb9\x94\xec\x0e\x0f\x25\xd6\x71\x43\x09\x7e\xd5\x18\xcb\x40\x49\x5a\xe6\xc8\x01\x4a\x4e\x24\x5d\xc9\xee\xda\x86\x3e\x9a\xf5\xd9\x50\x9a\x65\xd4\x47\x43\x1f\x94\x09\x95\xbf\xa1\x04\x4f\x8e\x5b\xc9\xbd\x25\xfc\x2a\xe9\x57\x60\xad\x8a\xf6\x1d\x21\x40\xc9\xca\x9e\xfb\xeb\x3e\xf9\xff\xb5\x75\xd6\xda\xed\xc0\x0d\x25\xd0\x7b\xb7\x4d\x9d\x16\xd0\xee\x6e\x0b\xfa\xe0\x3d\xf4\x7b\x57\x15\x7d\x8f\x04\x46\x7e\x5d\x36\x7c\xd1\xef\x8c\xa9\xba\xd4\xf2\x86\x12\xfc\xec\xb4\xd0\x49\xdf\xd0\xce\xcb\x5e\xbe\xec\x65\x94\xfa\x28\xda\xe0\x94\x6d\x85\x86\x02\x25\xf6\xdb\xc2\x76\x46\x5f\x3f\x7f\x54\x94\x1a\x83\x6a\xc7\x1c\x3f\x7f\x54\x16\x9a\x98\xa8\x30\xd6\xee\xc0\xbd\x86\xd7\xc4\xb2\xa8\x19\xd7\xcf\x1f\x03\xc5\x67\x2a\x19\x8e\x9f\xdd\xfe\x9c\x68\x24\x27\x35\x62\x39\x48\xa7\x4b\xda\xb6\xc1\x0f\x4f\x7f\xb8\xa1\xec\x2d\xb5\xe6\xe9\xef\x4e\xe6\x1d\xaf\xbb\xa8\x36\x50\x26\x0f\xba\x7c\xd0\xc5\xbc\xab\x48\x6e\x25\x1f\xd4\xc6\x83\x6e\xd4\x0d\x94\xbd\xc7\xd7\x64\x5f\x11\x8a\xaf\xbf\x2f\x25\xbb\x6d\xdb\x7a\xa8\xc9\xee\x28\x94\x41\x43\xee\xaf\x92\xad\xc7\xbd\xcb\xd6\x7c\xac\xd0\x63\x1f\xed\x1a\x75\x97\x27\xa0\xec\xcd\xb9\xf6\xa3\x2b\xe1\xf5\x96\x59\x4a\x58\x1b\xb6\x6d\x50\x7b\xd0\x7c\xa0\xf4\x82\xa4\x2a\xd9\x8d\xed\xbb\xf9\xcf\xa4\x0c\x50\x6b\x6c\xcb\xa8\x3e\x2a\x17\xa8\xf5\x60\xc0\x3d\xb3\x2a\x6b\x96\x5b\xc8\x42\x59\x50\x8e\x25\xe2\x99\xa9\x6c\x50\xae\x29\x9b\xca\xa6\xe5\x02\xd9\x52\x76\x5a\x4e\xd9\xa5\xec\xb2\x5c\x22\xbb\x95\xb1\x7e\x1f\x6f\x9d\x99\x88\xcf\x5e\x0d\xf7\x6f\xb7\xd6\x9e\x35\x94\x0d\xcb\xf1\xde\xe5\x7b\xf7\xd0\xae\x35\xc2\x72\xbe\xe3\xf4\xb7\x4c\xd1\xe7\xf4\xb7\xa7\xbf\x45\xc1\xcf\xe9\x6f\x4f\x7f\xeb\x7b\xcf\x53\xd9\x69\x39\xf4\x72\xbe\xcf\xfb\x58\xae\x22\x7b\x94\x3d\x94\x9b\xfe\x96\x7e\x7e\xf6\x30\xdb\xe5\x68\x9b\x03\x0d\xd8\xe5\xf8\xed\xa5\x4e\xaf\xb4\x1c\x7a\xbe\xba\x32\xeb\xc7\x90\x78\x2e\xeb\x77\xa9\xbf\x41\x7b\x2f\xeb\x72\xa9\x3f\xa6\xf7\xe3\xd0\x7d\x6e\xdb\x61\xdb\x6e\xdb\x71\xdb\x8e\x45\x39\xc7\xea\xf3\xb5\x7f\xf9\xed\xd7\x99\x08\x04\x86\x75\xfd\x62\xaa\x08\x31\xd8\xf3\xbf\x47\x55\x54\xb7\xa8\x5a\xaa\x29\x6a\x94\x5a\x88\x42\x51\xec\x67\xb1\xbf\x7d\x1d\xd5\x40\x39\x5c\xf3\xbf\x8e\x6b\xa0\xe4\xf2\xf9\x43\xd1\xf8\xf9\x23\x66\x57\x34\x15\xcd\x9f\x3f\x5a\x6d\xd6\x75\x29\x5a\xfc\xd0\x5a\x9c\x8a\xce\x5d\x0a\x23\xe2\x7b\x5c\x8a\xb6\x5d\x37\x2d\x74\x2b\xb9\x77\x55\xbb\xf5\xfa\x28\xfa\xec\x17\x62\x45\x7c\x8f\x47\xd1\xb3\x45\xc3\x06\x7d\x15\x7d\x7f\xfe\xa8\xc7\xa2\xf2\xda\x56\x40\x1e\x85\x9a\xba\xf5\x02\xc5\xd9\xf0\x75\x9d\x04\x6a\xb2\x50\x7e\x35\xc0\x80\x98\x8c\xb5\xaf\x06\x18\x10\xa3\x28\x52\x5f\x1b\x62\x84\x22\xd5\xf5\x5a\x60\xac\x3a\xdf\xa2\xbe\x36\xb4\xa6\x0a\x35\xcb\x80\xe2\xd6\xf5\x2d\xea\x6b\x43\x2c\xa6\xc6\x57\x0b\x00\x28\xb5\xfa\x2c\xf5\xb5\x21\x8f\xea\x0f\x55\xd8\x86\xa8\xd3\xea\xab\xb0\x0d\x35\x1c\x14\x5a\x0a\x40\x66\xb5\x94\x0a\xdb\xd0\x30\xc5\xeb\x57\x53\x01\x68\x81\xd9\xf5\xd5\xa2\x02\xb2\xab\x8a\xaa\xc2\x36\x94\x92\xf6\x91\x26\x05\xd0\x26\x9b\xfa\xb7\xaa\xb1\x0d\xa5\xbd\xcf\x57\x63\x1b\xaa\x1b\xc7\x57\x53\x13\x88\x9e\xb4\x5b\xcb\x03\xc8\xd5\xe2\xb7\xf7\xe3\x6f\x55\x9f\xda\x2a\xd3\x87\xa8\xcf\x0d\x6d\x85\x6f\x57\x9f\x1b\xb2\x1d\x8c\x36\xcd\x15\xa0\xb5\x65\x4b\xd4\xe7\x86\x7e\x1c\xea\x40\x7d\x6e\x68\xad\xf8\x2c\xf5\xb9\xa1\x97\x57\x05\xea\xb3\xb2\x73\x4c\x54\xa0\xd5\x0c\xd4\x63\xa1\xf5\xa6\x3e\x1b\x6b\xb9\x53\x45\x4b\x1a\x28\xa3\x51\xaf\xa6\x3a\x37\x74\xad\xeb\xaf\x56\x13\x50\x66\x5a\x4a\x75\x6e\x48\x8d\xdd\xaf\x76\x13\x90\xf5\x7d\xa3\xea\xdc\x90\xad\x5b\x4a\x7d\x6d\x28\xc3\xae\x69\xea\x6b\x43\x2e\x55\xd8\xd4\xd7\x86\xec\x8e\x06\xed\x79\x20\xfb\xc1\x68\x68\xea\x6b\x43\x73\x7b\xfc\x6a\x98\x01\xe5\x9d\xc3\x4d\x7d\x6d\x28\xf5\x1d\xdf\x4d\x85\x6d\x68\x81\xad\xfc\x75\x87\x04\x22\xd5\x74\xa8\xb0\x80\x44\xb9\x76\xb9\x6b\x02\x6d\xd8\x6b\xa1\xc2\x36\x94\xc4\x22\xfa\x86\x0a\x0b\x76\x43\xa7\x67\xa8\xb0\x0d\xa5\xbf\xa5\x54\xd8\x86\x36\x31\x98\xbf\xa1\xc2\x36\xb4\xea\xd0\xd1\xb0\x04\xa2\x39\x61\x43\x85\x6d\x88\x96\xd6\x5e\x85\x6d\xa8\x33\xac\xaa\x0a\xdb\xd0\x0a\x56\xe0\x57\x93\x14\x88\x6c\x56\x42\x85\x6d\x28\xa1\x5a\x43\x85\x6d\xe8\xe9\x68\x0a\xf5\xb5\xa1\x4d\x6b\xaf\x25\x06\x94\x03\xbb\xe3\x9b\xea\x6b\x43\x1d\x3e\x5e\x93\x17\x68\x81\xe1\xf7\x4d\xf5\xb5\xa1\x1d\xaa\x30\xd5\xd7\x86\x16\x2e\xa0\xa9\xbe\x36\xd4\x23\x7d\xbc\xfa\x4a\xe6\x6b\xb1\x94\xfa\x4a\x5d\x42\x3e\x4b\x7d\x6d\x88\x51\xfc\xa1\xfa\xda\x90\xef\xf4\x48\xf5\xb5\xa1\x1d\x45\x91\xfa\xda\x10\xbf\x36\x48\x7d\x6d\xa8\x92\xac\x6f\xaa\xaf\x0d\xad\x3a\x26\x52\x7d\x6d\x88\x23\xac\x97\xfa\xda\x10\xcd\x25\x5b\x0b\x18\x28\xd3\xa9\xa6\x2d\x0f\xb4\xe1\x2a\xdb\xd5\x57\x77\x42\x52\x89\xae\xbe\x36\xb4\xe6\x86\xa3\xc9\x0f\x44\xed\x74\x6d\x57\x5f\x1b\x5a\x77\x98\x48\x03\x80\x51\xde\x4a\xa8\xaf\x0d\xe3\x38\x7c\xa3\xfa\xda\x50\xfa\xe1\x84\xef\x2a\xac\x63\x40\xfa\x78\xf5\xd5\xd5\x17\x6d\xec\xea\x0b\x72\x3b\xdf\x67\xa9\xaf\x0d\x75\xbe\x95\x50\x5f\x1b\xea\x70\xa6\xc9\x45\x80\xf6\xee\x11\x5d\x7d\x6d\x68\xef\x82\x2d\x53\x06\x5a\xd8\x8f\x43\x7d\x6d\x28\x3d\x31\x6c\xbf\x43\x85\x6d\x28\x72\xaa\xef\x50\x61\x1b\xe2\x70\x2e\x48\x36\x80\x9a\x4d\x91\x0a\xdb\x10\xaf\x95\x30\x54\xd8\x86\x3a\xb0\xd5\xbe\x43\x85\x6d\x18\x6d\xf9\x43\x15\xb6\x61\x54\x4d\xa1\xa1\xbe\x36\xb4\xe1\x60\x1d\x2a\x6c\x43\x94\xb7\x5e\x2a\x6c\x43\x34\x87\xce\x50\x61\x1b\x6a\x2c\xdf\xa8\xc2\x06\xd4\xd2\xb9\x30\x54\xd8\x86\x51\x1c\xe5\x43\x85\x0d\xf8\x9c\x8b\xad\xe6\x3b\xd0\xbb\xcb\xa8\xd6\x3b\xd0\x2a\x86\xf0\x57\xe3\x1d\x28\x55\xe5\x4c\xf5\xb5\x21\xba\xcb\x89\xe6\x3c\x10\x09\x15\xfc\x6a\xcd\x03\xb5\x6a\x4b\x4c\xf5\xb5\xa1\xe9\x4f\xf9\x4e\xf5\xb5\x21\xdf\x3d\x55\x93\x1f\x88\xd4\xf6\xd2\xe2\x07\x46\xd3\xc0\x9c\xea\x6b\x43\x6b\xae\x43\x72\x00\xa0\x8c\xbd\xea\xfc\xf6\x6e\x2c\x45\x00\x46\x71\xa7\x92\x21\x00\xa5\xaa\xcf\xa9\x3e\x27\x13\x36\x15\xa9\xcf\x0d\x6d\xb9\x28\xe9\x97\x01\xa2\x60\x7d\x7f\x97\xfa\xd4\x55\xb3\x1c\xf3\x3a\x6b\x80\x79\xa8\x76\xe9\x27\x50\xab\x6d\x59\x2a\x74\x43\xbc\xdb\xb1\x04\x1c\x28\xb3\xfa\x4a\x15\xba\x30\x79\x5d\x10\x24\x33\xc0\x88\xb0\x94\x0a\xdd\x30\x52\x33\x41\xe6\x0e\x8c\xe1\xf8\x5e\x2a\x74\x61\xc2\x69\x65\x4b\x78\x80\xc0\xfb\x5b\xbf\x4b\x85\x6d\x08\xdc\xbf\xf5\xbb\x54\xd8\xc2\xe4\x70\xd3\x5e\x2a\x6c\xc3\x98\x87\xb5\x57\x61\x0b\x85\x39\x57\xa4\xd8\x40\xd1\xdd\xf5\x95\x63\x03\x65\x0d\x8d\xde\x53\x85\x6d\x88\x62\x87\x9c\x2a\x6c\x43\x54\xa8\xef\xf7\x54\x61\x84\x04\xd6\x72\x7e\xea\x8d\x00\x6a\x4a\x2f\x4e\x35\xf6\x72\x38\x1f\xa6\xc6\x36\x8c\xe1\x40\x95\xc1\x01\xb3\x69\x8d\x9f\x6a\x6c\x43\x19\x5a\x18\x72\x3a\xa0\xe2\xb2\xad\x5f\x29\x1d\x30\x52\xed\xeb\x45\x04\xa2\xa9\x8b\x53\x8d\x41\xfc\x8e\x5f\x1f\xa6\xca\x36\x94\xee\x5e\x28\xef\x03\xea\x6b\x3b\x5c\xaa\x8c\x70\xc5\x70\x6e\x5c\xaa\x6c\xc3\x7c\x77\x5f\xfd\x12\x5f\x09\xe3\x2b\x52\x63\x17\x1a\x73\xff\x92\x2e\x02\xf3\xdd\xf8\x2e\x15\xb6\x61\x2c\x2b\x21\x81\x04\x86\xbe\xa1\xef\xa5\xc2\x36\xb4\xd0\x38\x95\x52\x02\x2d\x34\x15\x2f\x15\x76\x61\xd5\x6a\xff\x5f\x2a\x6c\xc3\x6c\x07\xca\x97\x77\x02\x65\xbe\x8f\x57\x61\x1b\xca\x48\x45\x2a\x6c\xc3\x78\x2d\xfb\x4b\x7d\x5d\x0c\x31\x97\x04\x5d\x4d\x40\xbe\x7b\xf4\xad\xbe\x36\xc4\x70\xe8\xdf\xea\xeb\xd6\x7d\x4a\xed\x6f\xf5\xb5\x61\x0e\x97\xbd\x5b\x7d\x6d\x98\x4d\xc3\xea\x56\x5f\x1b\xd6\x74\x13\xbd\xd5\xd7\x86\xfa\xae\x5e\x3a\x77\x80\xd9\x70\x7f\x7f\xf5\xee\x00\xf5\xd7\x4a\xa8\xaf\x0d\xb5\x4c\xb7\xcc\x5b\x85\x6d\x68\xb2\xfc\xaf\x6c\x1b\x28\xcb\xcd\x50\xb2\x0d\xf4\xe1\x00\xbe\x55\xd8\x86\x35\x5c\xc4\x6e\x15\x76\xeb\x6f\x54\x15\x2a\x0c\xff\xd1\x6b\x3d\xea\x40\x02\x5a\x38\x73\x3f\x2a\xec\xa3\x95\xc6\xb3\x3e\x2a\x6c\xc3\x6c\xee\x39\x1f\x15\xb6\x61\x4c\xc7\xef\x47\x85\x6d\x98\x15\xbf\xcf\xf7\xa3\xc2\x36\x0c\x3d\x86\xdf\x8f\x0a\xdb\x10\xd3\x95\xf4\xeb\x1b\xbf\x17\x7e\xf0\xdd\xb9\xcd\x08\x61\x3b\x8e\xfa\xf3\xc7\xea\x08\x9a\x82\x6d\x33\xef\x39\xd4\x0e\x3c\x00\x42\xd9\x3a\x6d\x07\xfc\x5f\x28\xc7\x51\x95\x0d\x65\xcc\xed\xf7\x87\x53\xd1\x17\x4a\xb8\x25\xc5\xb7\x41\xb4\xab\x92\xaa\x04\xc7\xeb\x9e\x40\xcd\x40\x87\x50\x5e\x49\x28\xd9\x35\x28\x3c\xba\x58\x83\x42\xd0\x4d\xc9\x47\xc9\xb3\x1f\xb4\x68\x1b\x2c\xb5\x1d\x15\x5b\x69\xaf\x53\x8d\xc0\xc4\x06\x83\x97\x8b\x2a\x34\xab\xd9\x4e\x65\x13\xd9\xa3\xec\xa1\x85\x49\x2d\x60\x26\x42\xad\x18\xf7\xed\x08\x5f\xb1\xf7\x93\x96\xe8\x6f\x59\xd7\x05\xc1\x68\x83\x37\xb0\xba\xb7\x63\x2f\xe5\x5b\x5f\x54\x6e\x59\xdf\xe5\x1b\x54\xc6\xe9\xd3\xbe\xdb\x8c\x6e\xbc\xf3\xab\x56\xbf\x6f\xdd\xf8\xe5\xd7\xa7\x7d\x09\x7b\x21\xb8\x15\xf8\xf8\xb2\x7e\x73\x37\x6e\xc7\xd7\xb7\x7f\xdf\xb7\x6f\xdd\x18\x5e\x69\x65\xab\x6b\xec\xad\xb1\x15\xb8\x71\x2b\xf5\x96\x2c\x95\x2d\x63\x2b\x69\x45\x37\x57\x30\x1e\x0c\x26\x34\x62\x00\x70\xaa\x56\x21\xb4\xc2\xae\xd2\xd6\x55\x65\x2b\x11\xca\x71\xf0\xb4\xc6\x7e\xdf\xda\xfc\x2a\xdb\xf5\x68\x6c\x7c\xad\xbd\x9a\xe1\x0d\x4d\xcd\x00\x5b\xb6\x9f\xd7\x58\x25\x84\x2d\x9b\xc8\x7c\xde\xfd\xfe\x76\xab\xa7\x7d\xfc\xed\x9e\x42\xbb\x2e\x07\xb2\x54\x96\xca\xf6\x7b\xc3\xa9\x10\xc1\x86\x95\x75\xff\x36\x60\x7d\x42\x95\xec\xb4\x80\xf6\xb5\x18\xac\xf9\xf0\xdd\x16\x18\xb6\xc2\x2e\xc7\xf3\xb0\x6c\x5b\x7c\x19\x2f\x3d\xf6\x6f\x75\x9b\xb7\x5c\x38\x22\xc7\x44\xc6\x16\x2e\xec\xdf\x0e\x64\x8c\xb5\xf4\xb7\x6b\x2f\x3e\xad\xfb\xdb\x7e\x7c\x70\xd4\xef\xa5\xbf\x75\x5c\x5e\xc2\xfe\xed\x42\xc6\x6f\x7b\xd1\xa1\x4f\x5d\x3a\x5e\x23\x61\x97\xe3\xb7\xb8\x8d\x5a\xe7\x1d\x0d\x7a\xd1\x86\xef\x18\xca\x2a\x73\x66\x2a\x9b\xca\x72\xaf\xd0\x6d\x29\x5b\x7b\xfe\xd5\x36\xe9\xa3\x85\xff\x4a\xa8\xd5\xe7\x2d\x1c\x58\x6d\xc1\x31\xda\xac\xfc\x16\x92\x21\xec\x72\x15\x19\x75\x5e\xbb\xdf\x6a\x23\x4c\xd8\xd6\xfd\xca\xbe\x96\xdb\x33\x64\x7d\x7c\xef\xe7\x50\xc6\xf3\xec\xdf\xf5\x79\x18\x7d\xf4\xf9\xfa\xf8\xdb\xcf\xfb\xdb\x3d\x33\xd7\xe3\x6f\x69\x47\x1c\xac\x1a\xa7\xed\x38\xe9\xcb\xc0\x99\xdd\x4e\xfb\xf2\x7c\xfb\xb2\x0f\x64\xf4\xe5\xe9\x6f\x89\x75\xb6\xcb\xdf\x5e\x81\x43\x0d\x2a\xd9\x2e\x08\xba\x50\xb7\xc1\x81\x8c\xba\x5c\xfe\x16\x9b\xba\xdd\xfe\xf6\x46\x2f\x81\xb7\xac\xdd\xea\xe5\x7e\xf5\xb2\x77\x84\x76\xab\x97\x9b\x76\x04\xc9\x0d\xed\xb6\x1d\xc0\x2e\xd7\x90\xa1\x83\xdb\x77\x0c\xde\xf1\xf1\x1d\x1f\x65\x73\xef\xd2\xed\x51\xf6\x20\xcb\x83\xe7\xe9\x40\x6e\x5f\x65\x6d\x5b\x82\xe1\xb6\xb0\x15\xb2\x65\xf0\xb9\x38\x20\xf9\xc2\x7e\xef\x44\x36\x90\xf9\x5b\x52\x2d\xa2\xf8\xdb\xb2\x49\x77\xcd\xb9\xad\xb5\x28\xb0\x6e\x61\xff\x76\x6d\x59\xb7\x9c\xbf\x65\xcf\x8d\xea\x6f\x2b\xb2\x7e\x6c\x13\x31\x9a\xb2\xd6\xf6\x7b\x3b\x64\x26\x1a\xee\x2b\xa1\xd6\x63\x16\x64\x13\xd9\xb6\x08\x6b\x8f\xbd\x1e\x44\xc3\x24\x14\x76\x39\x9e\x87\x4d\x18\x6d\x5b\x76\xb5\xe7\xde\xbd\xc2\x04\x00\x61\x97\xeb\xc8\x2a\xb2\xcf\x6d\x39\x9e\xf7\xf1\xb7\x9f\x8f\xe5\x16\xb2\x07\x99\x75\xce\xdd\xe7\xe1\x5a\x12\xf1\xc1\x5c\xe9\xdb\x38\x89\x20\x59\x42\xa8\xf5\xd8\x6b\x79\x04\x09\x2f\xe1\x1a\xd1\xe9\xa3\x70\x8d\x88\x7c\x65\x7b\x9b\x0e\xe7\x7e\xf4\xd8\x6d\x1b\xa5\xec\xfa\x75\x5c\x46\xc2\x7e\x5e\x45\x46\xfd\xfa\x56\x6d\x1d\x45\x19\xbe\x0c\xa1\xea\x04\x8f\x8e\x33\x23\x9c\xfb\xa3\xee\xf5\x2f\x9c\xfb\x31\x6a\xd5\x1f\xb0\xdf\x3b\xf0\xe0\x0a\xfb\xb7\x81\x2c\x94\xed\x79\x3e\x82\xb6\x0d\x1c\xab\xc2\x2e\xa7\xec\x44\x36\xa8\x73\x14\x9e\x07\xab\x16\x76\xb9\x8e\x8c\x3a\x0f\x82\x47\x23\xa8\xf3\x98\xaf\x4c\x3d\x33\x0e\x06\x7b\x45\xb8\x36\x8d\xa4\x7f\x5d\x9b\xc2\xb5\x69\xf4\xbd\x8f\x85\x6b\x53\xac\xd0\x57\xc0\x38\x5d\xac\xe3\xc2\x7e\xde\x42\xc6\x78\x59\x63\x61\xf4\x07\x32\x7c\x03\x42\xad\xa4\x99\xc4\xc2\x39\x10\x8b\x3a\x8f\xe5\x6f\xad\x33\xb0\xcb\x15\x64\xd4\x6f\x11\x90\x9b\x87\x32\x38\x7d\x2c\x03\x72\x24\x42\xc5\x82\xc1\x0b\xbb\x5c\x22\x4b\x65\xdd\x72\x81\xcc\x3a\xaf\xd3\x72\x5b\x57\x6b\x59\x97\x75\x59\x6e\xfc\xe6\x56\x1f\x8b\xed\x34\x16\xdb\xcb\x3c\xaa\x8f\xf9\x2a\xfb\xfa\x18\x64\xa7\x6a\x23\xa6\x35\x8f\x4a\x33\xa1\x24\xc2\x2e\xa7\xcc\x6a\x69\x00\x10\x55\x8e\x75\xa9\x4a\xba\x61\xc2\xdb\xc3\xa5\x35\x5c\x32\x27\x46\x5a\xb8\x64\x86\x4b\xe1\xc4\x63\x16\x2e\x85\x71\xe3\xda\x99\xbd\x6d\x75\xdc\xf8\x76\x84\x5a\x1d\xee\x37\xce\x9d\xb8\x6d\x07\x6c\x25\x6e\xdb\x71\x9f\xc5\x72\xfb\x1d\x37\x24\x56\xd8\xb2\x81\xac\x29\xb3\x1b\x18\xee\x37\x34\x36\x5c\x32\xe7\xd8\xc4\x3f\x5c\x32\xe3\x43\xd4\x67\xce\x4d\xcd\xe3\x83\x39\x1a\x1f\xb6\xd3\x5a\xca\x44\xc6\x30\xf9\x40\x2b\xe7\xa2\xbb\x3e\xd0\x4a\xa1\x56\xac\xdb\xf8\xc0\x2b\xe3\x83\x4e\x17\x5b\x71\xb8\x04\x0b\xc6\xeb\xe2\x21\x5e\x27\x14\xdc\x06\xf1\x10\xaf\x13\xca\xc1\x66\x10\x0f\xa6\xb9\xd0\x0e\xe6\xe7\x43\xc0\x2e\x9e\xd7\x12\x67\xfd\x7d\xb0\xc4\x85\x36\x36\x3f\x88\x07\x4b\x5c\x88\xd8\xbb\x7f\x3c\x84\xe2\x84\x56\xa7\xa2\x53\x11\x8e\x9e\xcd\x49\xe3\x21\x14\x27\xb4\x39\x7d\xd6\xad\x08\xbf\xc4\xb2\xd4\x47\x11\xe9\x43\x69\xfd\x1f\x45\x0f\x5c\x5c\xd1\x57\x91\xb6\xde\xe0\x97\x45\x65\x6c\x08\xc2\x4d\xf1\x14\x95\x61\x1e\x8c\xbf\x2c\x2a\xa3\xbc\xca\xa0\x1a\x76\x0b\x10\x9d\x9e\x7f\x8a\xca\xd8\xd0\xc8\x85\x89\x87\x68\x9c\x10\xe3\x50\xd4\x15\x75\xbc\x97\x89\x48\x8d\xc1\x26\x0e\x77\xb6\xa7\xa8\xb2\x0d\x8d\xb4\x84\x78\x8a\x2a\x23\x6f\x0a\xb7\x7d\x3c\x0e\x04\x20\x4a\xda\x24\x55\xb6\xa1\xb4\x6e\x5d\x55\xd9\x86\x92\xc5\x1f\xaa\xb2\x0d\xcd\xb5\xec\x29\xaa\x6c\x43\xc0\xa0\xe2\x29\xaa\xec\xcd\x5c\x62\xbe\x3c\x55\x65\x10\x68\x4b\x1b\xee\x2a\x0d\x94\x83\x10\x75\x3c\xae\xd2\x40\x25\x83\x2d\x9e\xaa\x32\x36\xc4\x61\x97\x57\x95\x61\x4e\x17\x41\xeb\x78\xaa\xda\xa8\x44\x3a\x58\xf2\x9f\xaa\x32\xea\xfc\x35\xa0\x1c\x8f\x2b\x3e\xb0\x7f\x69\x31\xb5\x41\xe6\xcf\xb0\x9b\xaa\xda\xa8\xba\xee\x51\x63\x55\x1b\x1b\x72\xbc\xd5\x50\x1b\x1b\x22\xd3\x66\xaa\x8d\xea\x68\x61\x2a\x3e\xcd\xd1\x42\xbe\x59\x77\xea\x34\x47\xcb\x4b\x34\x1c\xa1\x4d\x0d\x11\x3a\x6b\x2c\x64\x4f\x53\x43\xed\xd5\x10\x2f\x6d\x6a\xa8\xa1\x21\xdb\xd9\xd4\x50\x93\x16\x4c\x7f\xaa\x8a\x36\x18\x39\x8f\x47\xeb\x03\x28\x87\x3b\xf9\xa3\xf5\x01\x34\xbc\xe9\xf1\x34\x55\xd4\x48\xda\xb1\xa7\x9a\x1a\xda\xd0\x46\xf7\xf9\x6a\x68\x43\xa4\x53\xa0\xa9\xa1\x26\xa1\x63\xc7\x7e\x9a\x2a\xda\x20\x39\x89\xa7\xa9\xa2\x86\xd1\x5c\xac\x99\x03\x66\x83\x31\xfd\x78\x42\xa5\x85\x93\x87\xed\xf5\x09\xd5\xb1\xa1\x4e\x15\x19\x6a\x23\x64\x53\xec\xe0\x4f\xa8\x8e\xd0\xb1\x4c\x33\x43\x6d\x84\x03\xc6\xe9\xef\xe6\x0a\xc4\x28\xd4\xd6\xbd\x15\xa8\x23\x7c\x98\xda\x20\x34\x56\x9d\xd7\xa1\x36\x36\xec\x87\xa1\xb4\x50\x1d\x81\x3a\xaa\xbf\x54\x1d\x1b\xda\x2c\x96\x52\x1b\x1b\x22\x9c\x8a\xa1\x36\x36\x94\xd5\x15\xa9\x8d\x0d\xa5\x3b\xa3\x52\x6d\x6c\xa8\xe1\x1b\xd3\x21\x94\x0e\x21\x7b\x20\x1d\x42\x04\xc7\x8e\x86\x82\x52\x9d\x6d\xa8\x24\x33\xc5\x93\xea\x8c\xe0\x18\x49\x58\xf1\xa4\x2a\x4b\x47\x10\xc6\xc2\xa3\xe1\x0c\x94\xd9\x7e\xc7\x9e\xfd\x68\x56\x03\xe5\xd0\x0c\x79\x52\x95\x6e\x28\xd5\xf6\xa5\x2a\xdd\x60\xba\x46\x3c\xa9\x4a\xf3\xf2\x97\x74\x46\xaa\xbf\x24\x7b\x42\x95\xa6\xfa\x4b\xec\x17\xc7\x44\xaa\xbf\x0d\xed\x1d\xfa\x5a\xed\x40\x90\x9b\x16\x8f\x46\x3b\xd0\xa6\x03\x58\xfb\x12\x68\xcb\xbe\xd0\xbc\x7c\xba\x49\x23\x6a\xbe\xab\x85\xce\xba\xeb\x52\xd9\x6d\x26\x01\xae\xa3\xb8\xae\x74\xdb\xb4\x21\x46\xb5\x98\x6d\x22\x43\xee\xd0\x0a\x79\x86\xf5\x18\x1a\xba\xbc\x60\x58\x8f\x0d\xb5\xbb\x62\x0f\xeb\x41\x08\xea\x28\x2e\xf6\xc3\x7e\xdc\xd0\x6a\xa7\xb7\x87\xfd\x48\x60\xe7\xd0\xdc\x78\xb4\xe6\x80\x56\xde\x17\xa8\x8e\xc9\x40\x29\xd6\x4d\x03\x0f\x98\xd5\x97\x4e\x5f\x30\x6d\xbc\x53\x75\xda\x78\xec\xbb\x9c\xf4\xa7\xe6\x1d\x50\x8e\xe2\x18\x9b\xf6\x31\x01\x99\x66\xe7\x4d\xf5\xb1\x21\xf2\xf0\x9d\xea\x63\x9e\xfe\x92\xba\x4d\xa7\xcd\x86\x16\xce\x91\x69\xb7\xcf\xfb\xd7\x2c\x9d\x30\x27\x4b\x88\xee\x1c\xd7\xaa\x06\xa2\xba\x7e\xce\xb7\x9d\x12\x56\x5e\xb9\x54\xf7\x3a\x7c\x25\x9d\xbc\xd4\xf7\x86\x68\x9d\xca\x2e\xb5\x41\x7a\xec\x72\x1f\x5d\x6a\x63\x91\x65\x54\x79\xfe\x52\xdd\x1b\xf4\x09\xc4\xb3\x9c\x36\x8b\x95\xc6\x61\xb5\x54\xd9\x7a\xf5\x43\x65\x97\xfa\x59\xee\x43\xa8\x6c\xa9\x1f\x32\x23\x8f\xe2\xc2\xbb\x54\xd0\x86\x38\xd4\xb6\x86\x33\xd0\x96\xa3\x4f\xc3\xf8\x59\xf6\x7a\xb3\x1e\x6a\x63\xc3\xec\x4e\x02\x6d\x4c\x60\x13\xa1\x2d\xd2\x54\x06\x4c\x76\x8a\xe7\x54\x19\x27\x01\x63\x6d\x0f\x0d\x51\x40\x47\x60\x3c\xda\xa1\x8f\x2e\xb0\x77\xc5\xd0\x0e\x05\x6a\x71\x67\x3a\xd5\x06\xb9\x9d\xd3\xad\xf5\x54\x1b\x1b\xa2\xb8\xac\x9c\x0e\x20\x0e\x5d\x54\xbb\xfc\x54\x3f\x9c\xba\x58\x61\x5d\xd5\x0f\x29\x72\x33\xac\x98\xea\x39\x1d\x3f\xaf\x4c\xfd\x9c\xe8\xa7\x59\x31\xf5\x23\x77\x76\xc1\x91\x3a\x03\xad\xdb\x4d\x9a\xbd\xa6\xd1\xa5\x46\xa9\x56\xef\x73\x39\x4f\x70\x00\x3c\x92\x69\xa0\xbd\x86\xd2\xa5\x32\x2e\xf3\xa9\x78\xd8\xa5\x2e\xae\xf0\x97\xe8\xec\x52\x19\x17\x8e\x6c\x0d\x61\x69\xc9\x73\xd9\xe7\xe1\xd3\x6c\xd4\x75\xfe\x9a\x6d\x16\x66\xda\x09\x31\xec\xa6\xcb\x36\x5d\xf8\x07\x49\xb2\x8a\xe7\x7a\xab\xcb\x2a\x07\x0f\x78\x6e\x3b\xf8\x26\xc2\xed\x3c\xbc\xed\xe0\x9b\x80\xad\xc3\xec\xb6\x4d\x37\x39\x75\x36\xfd\xb6\x4d\x37\xa3\xdd\xc5\xe5\xb6\x4d\x37\x39\x62\x4e\xf3\xdb\x26\xdd\xa6\x0f\xfa\x2c\x9b\xb4\xa1\xbd\x44\xe1\xb6\x7f\x49\x55\x7d\x17\x83\xdb\xfe\xbd\x5d\x30\x5d\x91\x6f\x3b\xf8\x66\xc1\x54\x8d\xb7\xba\x30\x75\x50\xfd\xdf\xea\xe2\x86\x38\x3a\x7f\x6f\x75\x71\xdf\x3e\x4c\x99\x1d\x7c\x93\x43\xf1\xd6\xcc\x0e\xc6\xa5\xda\x34\x24\x6f\x35\x66\xe8\x82\xcc\xe6\x78\x3e\xea\xe7\xe3\xea\xcb\x2f\x3f\xea\x47\xc7\x2b\xa9\xe8\xf1\x7c\x54\xd0\x86\xf2\x9a\xd5\x1f\x15\xb4\x21\xba\x6d\xfa\xa8\xa0\x0d\x2d\x5c\x68\xf5\x9e\x00\x2d\xd5\xac\xce\x13\x20\xc2\x05\xe8\xa3\x82\x3e\xe4\x30\xb9\x6a\x7f\xd4\xcf\x86\x36\x35\xf3\x3e\xea\xe7\xf3\xb6\xdc\x87\xd9\xf2\x0f\xf9\x84\xf1\xdb\x11\xed\x78\xf4\xfb\x00\x31\x86\x0f\x7e\x15\xf3\x65\xd3\xa0\x46\x8f\x43\xe9\x51\x57\xd6\xf2\x51\x57\x0f\xf9\x99\x0e\xe9\x47\x5d\x3d\xea\x4a\x93\xec\x51\x57\x1b\x8a\x7e\x96\xe7\x51\x57\x1b\x6a\x77\x3f\x7b\xd4\xd5\x86\x28\x2a\xfe\x51\x57\x8f\x4b\xa7\xb6\xca\xa3\x66\x1e\x96\x4e\x0d\xf1\x47\xcd\x3c\x4e\xa3\xee\xd3\x54\xcd\x03\xa1\xb1\x51\x8f\x43\xe7\x61\x1a\x49\x31\x1f\x87\xce\x83\x4b\xc4\xa5\xe1\x51\x7f\xa6\x9a\x17\xc7\xc9\xd7\xb6\x7f\xa1\xba\xae\xfd\x5f\x9b\xfe\x75\x6d\x70\xb8\x7e\x6d\xfb\x86\x78\xbb\xf6\x6b\xd3\xbf\xcc\x23\xa9\xe2\xd7\xa6\x7f\x5d\x1b\x9c\x6e\x5f\xdb\xfe\x85\xde\x49\x8f\xbe\xb6\x7d\x43\x7d\xd5\xfd\x75\x9c\x7c\xc9\x67\x77\x34\x7d\xd5\xc6\xd7\x25\x50\x75\x7c\x6d\xe7\x86\x56\x5d\x15\xbf\xb6\xd3\xc8\xca\xab\x8e\xaf\x0d\xdd\x50\xba\x63\xe7\xeb\x48\x30\x9a\x52\x5c\xea\xbf\x0e\x85\x2f\xb6\x27\x4e\x55\x1d\xad\xc2\x2e\xd6\x91\x15\x65\x85\x94\xab\x03\x51\x55\xe4\x24\x87\x46\x99\x38\x2b\xc4\x80\xe0\x99\x38\x2b\x44\x41\x6b\x26\xce\x06\x69\xb2\xe5\xe0\x68\x4d\x98\x27\x2b\x34\x92\x9b\xc2\x3c\x59\xc1\xc4\xe2\x30\x4f\x56\x28\xee\x7b\xe6\xc9\x0a\x85\xe3\x4d\x61\x9e\xac\x10\x04\x5c\xc2\x3c\xd9\x78\x73\x5b\x39\x24\x13\xe6\xb6\x0a\x91\xdd\x87\x4d\x45\x93\xb4\x28\x4b\xd9\x24\xfc\x2a\xae\x78\xe6\xb6\x0a\x95\x00\x47\x98\xdb\x2a\xc4\x40\xb3\xe6\xb6\x06\x89\xac\xe5\x20\x4d\x21\xcc\x64\x15\x9a\x4c\xc5\x4c\x56\xa1\xbd\xbf\xac\x36\x89\x43\x2f\x8d\x81\x60\x26\xab\xb0\x1f\xd6\x90\xd9\xa6\xea\xba\x8e\xfe\x65\xd8\x5f\x19\x76\x61\x15\x31\x95\x55\x68\x4d\xcd\xca\xb0\x81\x20\x4d\x29\x4c\x65\x15\x6a\x57\x3f\x12\x6c\x20\x06\x6b\xa0\xb9\xaa\xf1\x95\x4d\x97\x65\x6d\xd5\x46\x85\x2b\x3a\x5a\x64\xd3\x40\x10\x3d\x0a\x33\x53\x83\x9c\xd3\xfd\x4b\x6b\x6b\xd3\xe1\xce\xee\xef\x26\x9d\x0a\x45\x0e\x65\xd2\xa9\x50\x0e\x92\x61\xc2\xac\x53\x21\x86\xaa\x95\x3a\x7f\xa5\xce\xf5\x50\x66\xd3\x9b\x73\x91\xa6\x4b\x9d\xbf\x52\xe7\xea\x78\x91\x3a\x7f\xf5\xdc\x1f\xbe\xd4\xb6\x4b\x9d\x2b\xcc\xc0\xc4\x53\xa1\x35\x96\x21\x13\x4f\x85\x5d\x0c\x7d\xcb\x9d\x81\xa6\x17\xc5\xcc\x53\x61\x17\xf3\xa7\x2a\x84\xd4\xd3\x2c\x8a\x9c\x03\x1b\x62\x2c\xab\xe6\x80\x91\x15\x57\xec\x6a\xd3\x45\x85\x12\xf6\x8b\xac\xd8\xdc\xd0\xa3\x16\x65\xb6\x0a\x0a\x1c\x15\xb5\xc9\x80\xc9\xde\xdc\xc5\x68\x95\x14\x15\x68\xc3\x8e\x8f\xf7\xa5\x9c\x7a\x62\xc3\x35\x7d\x53\x88\x6e\x35\xa4\xa8\x40\xbc\x73\x51\x8a\x0a\x44\x75\x5c\xc9\x50\x81\xfd\x4a\x8b\xd9\x00\xf2\x37\x7b\x58\xcc\x06\x24\x3d\x55\xad\xad\x1c\x15\x28\x0b\x3e\x68\x02\xa7\xb0\x8b\xd1\x4e\x49\x28\x10\xc3\x39\x25\x07\x35\x83\x73\x06\x13\x54\x0e\x0a\x44\x75\xfe\xc8\x41\x81\x18\xec\x48\x66\x70\x0a\xa5\x3b\xa5\x64\xa5\x40\x74\x3b\x45\x56\x0a\x18\xc4\x0a\x33\x38\x85\x18\xae\x68\xb2\x52\x33\x38\xc7\xfc\xed\x68\x77\x98\xe0\x29\xd4\x69\x57\x48\x5a\xcd\xe6\x3c\x2a\x6e\x1d\xd3\x39\x85\xa8\xd8\xf0\xa6\x73\x0a\x41\xe6\x7e\x98\xce\x29\x04\xf9\xbc\x61\x3a\xa7\xb0\x1f\x46\x2d\xe5\xb6\x40\x0c\xb8\xb9\xf9\x9c\xc2\x2e\xa6\x4c\xf5\x71\xfa\x6a\xb9\xb0\x4b\x77\xc9\xde\xdc\xc5\xac\xae\xca\xea\x66\x23\x5a\x35\x95\xd5\x1f\x8b\x59\x37\x55\xd3\x31\x65\xed\x45\x89\x32\xb0\x5c\xeb\xe5\xc9\xe6\x65\x1e\x1c\xf9\x0a\x13\x33\x85\xd7\xdf\x6e\x62\xa6\x10\xc3\x15\x6f\xd8\xf4\xe1\x6c\x70\xc9\x1b\xb6\x7d\xe0\x1e\xb3\xff\xf5\xde\x93\x60\xb9\x8b\x29\x73\x00\x90\x61\x39\x5d\x6b\x8c\x05\x01\x31\x5d\x30\x0c\xab\x98\x61\x79\x68\x65\x9b\x62\x29\xc4\x80\xf9\x98\x62\x29\x34\x03\x7d\xa6\x58\x86\xc9\x93\x87\xf6\xbf\xd9\x93\x42\x0c\x57\x46\x63\x2f\x6f\xf6\xa4\x35\x33\xf4\xf2\x95\xae\xbb\xef\x9b\x3e\x29\xcc\x62\xb7\x4b\xd7\xbf\xd2\x75\x8d\x6a\xf3\x27\x85\x52\x5d\x8e\xa5\xeb\x40\x0c\xdc\x63\xe6\x4f\x0a\xfb\x97\x16\x53\x1d\x1c\xa2\x22\xdd\x3b\x4c\x90\x14\x76\x31\x14\x2e\x5f\x07\x5a\x54\x5b\xa0\x3a\xa6\xdd\x0e\x45\x32\x45\x52\x88\x61\x27\x4b\xd8\xbf\x12\xf6\x0a\x45\x32\x47\x52\x88\xe1\x1e\x23\x61\x27\x1f\x72\x17\xe3\x0d\xd2\x73\x13\x22\xa7\x4b\xaf\xf4\xdc\x84\xc8\xa3\x3a\xe8\xe5\xe7\xc0\xac\x0e\xf0\xa5\x8e\xa0\xec\xe9\x5a\x23\x63\x37\xd7\xf1\x20\xf5\x30\x4c\x76\x14\xca\x3b\xb2\xe4\xe2\x5f\x33\x64\x2a\x24\xc0\x6c\x47\x21\xb8\x7b\x20\xcc\x76\x0c\x52\x1b\x77\x31\x7e\x2a\x19\x07\x9a\x21\x1b\x73\x1b\x83\x3c\xc6\x5d\x8c\xc6\x4b\xbd\x81\xda\xdd\x64\x64\xde\x26\x32\x1e\x15\x53\xce\x44\x46\xa1\xbe\xbb\xa9\xd4\x1b\x88\x70\x84\x4b\xbd\x81\xf2\x5a\x20\x52\x6f\xa0\xbd\x7b\xae\xd4\x1b\xa8\x3a\x29\x4d\x64\x14\x62\xba\x97\xca\xbc\x81\x5d\x0b\x74\x2b\xf5\x36\x93\x71\xba\x49\x4a\xbd\x81\x72\x54\xa2\xc2\x66\x32\x0a\x6d\x3a\x9a\xe5\xde\x40\x59\x50\x2e\x33\x19\xe3\x2b\xa9\x26\xd7\x38\x4c\x3f\x14\x9a\x04\xce\xf4\xc3\xf8\x4a\x8d\x5f\x1b\x4d\x6a\x0c\x14\xdd\x90\xe6\xf9\x85\x49\x7d\x47\xd5\xae\x92\x08\x03\x4b\x7f\x85\x59\x7d\x42\x69\x50\x1c\xb3\xfa\x84\xa2\x0f\xcc\xac\x3e\x21\xa6\x13\x59\x22\xfc\xf5\x98\x7f\x75\xab\x90\xcf\x02\xb5\x39\x86\xe4\xb3\xa6\xdd\x1d\x3a\xde\xcc\xbb\x13\x62\xbe\xc5\x6c\x00\x79\x77\xc5\xe1\xfd\xb1\x01\xa4\x90\xa4\x4b\x8c\xdc\x15\x88\xa9\x39\x23\x77\xfd\x7e\x5c\xd2\x6d\x93\x7c\x13\x68\xe9\xea\x27\xdf\x04\x4a\x77\x8f\x94\x6f\x02\xfb\x97\xf4\xa7\x84\x13\x88\x79\x28\xb2\x01\x1f\xbb\xfd\xfd\xa9\xdd\xfe\xa1\xdb\x35\x36\xa4\xa5\x40\x39\x5c\x28\xe4\x9d\x40\x18\x9f\xf9\xca\x3b\x81\x98\x9a\x1f\xf2\x4e\x60\x76\x9c\x90\x5f\x69\x27\xd0\x96\x4d\x92\x76\x7e\xa5\x9d\xd5\x91\x2c\xed\x04\x62\x12\xb6\xff\x4a\x3b\xbf\x8f\xf3\xdf\xcd\x5a\x92\x09\xc4\xd4\xf4\x7a\x54\x90\xbc\xf3\xad\x9a\xbc\x13\x88\x79\xfc\x0e\x5e\xfd\x95\x96\x02\x35\x5d\xb9\x64\xa5\x40\x4c\x0d\x49\x59\xe9\xf7\x71\xc5\x70\x35\x93\x83\x02\x55\xe7\xce\xf7\x51\x59\x0f\x09\xe5\x6a\xfe\x51\x59\x30\xd5\xe1\xa0\x96\xa8\x02\xfb\x61\xbc\x40\xa6\x0a\xd4\xa6\x81\x20\x51\x05\x76\x31\xc6\xab\x4c\x15\x88\xd7\xb0\x96\xa9\x7e\xbf\xaf\x1a\x78\xa9\x84\x13\x88\xa9\xf1\xfa\xb5\x9d\x5f\x06\x4a\x73\x96\x7f\x6d\xe8\x86\xe5\x82\x24\x2b\xfd\x7e\x1d\x00\x2e\xc7\xf2\x4d\x20\xe6\x5b\x35\x1b\x05\xdd\x3c\xda\x56\x51\x9a\xc4\x23\x98\x12\x9f\x07\x74\x33\xdf\x5c\xce\xf6\xca\xba\x32\x16\xf2\x5d\xb5\x34\x99\x33\x0f\x29\x68\xdb\x03\x2a\x0f\x28\xa8\x30\x30\x85\xf2\x80\x82\x0a\xbb\x58\x22\xbb\x94\x5d\x3f\x7f\x8c\xd5\x2d\x76\x2b\x62\x58\x57\x5f\xf0\x51\x44\xab\xd2\x1f\x3e\x8a\x1e\x1f\xd6\x91\x7d\x95\x39\xae\xd7\x16\x15\x1b\xe5\xd5\x18\x64\x8c\x27\xf9\xa4\x2f\xcc\xf6\x16\xab\x8a\x3c\xe7\xce\x3b\x89\x18\x0b\xfb\x97\x54\x8d\x90\xb1\x50\x5b\x53\x94\x8a\x86\xc5\x7c\xda\x54\xb6\x17\x77\xce\x37\x25\xb7\x67\xbc\x50\x56\x57\xa4\x3a\x0c\x06\x4f\x94\x56\xd4\x06\xc1\xe0\x83\x51\x94\x5e\xb6\x21\xc4\xac\x16\x53\x1d\xc5\xb6\xbf\x32\xdb\x5e\x4c\x37\x45\x54\x6d\x7b\xb5\xed\x15\xb5\x55\xdb\x0e\x81\xc5\x24\xcb\xa3\xda\x76\xce\x58\x1e\xf0\xdc\xf4\x3e\x0f\x21\xe6\xfb\x4b\xfb\x1d\x66\xda\xb6\x19\x98\x47\xb5\xdf\xab\x6d\xaf\xb4\xbd\xda\x76\x62\xbf\xf3\x7d\x98\x6d\xdf\x10\xd3\x6e\xaf\xb6\xbd\x92\xac\x32\xad\x86\x6d\xdf\x30\x59\x41\xf3\xa8\x36\xbd\xba\xc0\xa1\xee\x6a\xd3\x09\xfd\x92\x2c\x9d\x47\x75\x24\x54\x87\xb7\x15\x53\x19\xf2\xc1\xb7\xb2\xcd\x57\x6e\x08\x4e\xed\xa6\x37\x8b\x08\xe5\x68\xa1\xcc\x77\x36\x4f\xd6\x51\xb3\xe6\x3b\x9b\x73\x2a\x94\xf9\xd2\x46\xbc\xc7\x71\xdb\x7c\xa9\x1c\xb1\x05\x5d\x10\x0e\xa2\x60\xba\x57\x8a\x85\x63\xc8\x90\x68\x0b\x46\x64\xa8\xc8\xd0\xe5\x44\xdb\x43\x3d\x72\x5a\x70\xda\x82\x50\x8f\x1b\x66\x2e\x54\x1b\x36\x2a\x6c\x41\x5a\xcc\x16\x84\x5a\xb3\x98\x2d\x08\x5b\x90\xb4\x20\x6c\x41\xa0\x36\xf5\x11\x6f\x0b\xbe\x9c\x0d\xa3\xb6\xe9\x18\x92\x10\x92\x4d\x97\xa4\xf9\xbd\x10\xd3\x5e\x4f\x07\x47\xaa\xf0\xf4\xa7\xd6\x0d\x5e\xc7\xc5\x3d\x79\xa4\x0a\x37\xdc\xd8\x3a\xf5\x48\xab\xbb\xa1\x75\x35\x99\x56\xb7\xfb\xd2\xce\x4b\xbb\x2f\xed\x58\x5a\xfe\xb2\xfb\x52\x99\x4f\x1b\xbc\xa1\xfb\xb4\x4e\xe3\xed\xbe\xee\xd3\x86\x13\x79\xa0\xf0\x61\x27\x6c\x18\xf8\x54\xf2\x18\xbe\x60\xc3\x9c\x4e\xa0\xe1\x0b\xc8\x35\x5a\x0e\x8f\x61\x4f\x6d\x68\xf8\x67\xf2\x18\xf6\x94\xfc\xa5\x39\x72\x87\x0d\x95\xbf\xbc\x0f\xb3\x66\x92\x95\x36\xad\x86\x7d\x30\x1c\xba\x8a\xec\x03\xce\x83\x55\xe7\xcf\xb4\x0f\xb8\xce\x21\x1c\x57\xd3\x69\x3c\xd5\xd0\xa4\x0f\xa6\x0d\x80\x99\x8c\x42\xd3\xa7\x0d\x90\x85\xb4\xe5\x4f\xad\x2e\x17\x37\x64\x63\x36\x4e\x07\x96\x5c\x82\x34\xf7\x3c\xa6\x5a\x9b\x5a\x4c\x54\x6d\x5a\x5b\xcd\x7a\xce\xd0\xe5\xb1\x7c\x03\x66\xfd\x3a\x7e\x9b\x5d\xe7\xb1\xd4\xa0\x81\xba\x70\xeb\x59\xd6\x69\xc3\x0c\x47\xcf\xb2\x4e\x1e\x84\x72\xce\x2d\x07\x94\x59\xdd\xe1\x6e\x74\xba\x78\x9d\xd8\x92\xee\x0c\xa7\x73\xee\xd4\x0f\x4e\xaf\x9d\x76\xb7\xa6\x7b\x38\x27\x4e\xd5\x75\x32\x8a\x5d\xf2\x4f\x1b\x73\x76\x8b\x51\xb5\xd3\xea\x9e\xdc\x54\xa0\xba\x4e\x6b\x7b\x7a\xab\x8d\xa5\xac\xed\xc9\x12\xd7\x7c\xfe\x5b\xdb\xcb\x87\x59\x5b\xc7\xc0\x86\xd2\xdc\x14\x4f\xf5\xbc\x61\x0e\x27\xf0\xa9\x9e\x0d\x88\x85\x2b\xda\x65\x3b\x37\xac\x81\x36\x2e\x9b\xb9\x61\xbc\x0b\xc4\x65\x33\x39\x38\xb4\xd4\xec\x65\x2b\x2f\x46\xb5\x83\xe2\xb2\x95\x97\xad\x74\xb5\xb9\x6c\xe5\x86\x19\xce\xa4\xcb\x56\x1a\x35\x0b\xf7\x80\xcb\x36\x5d\x18\x56\xcd\x17\x38\xd2\x2f\x4e\xbf\x17\xab\x61\x2b\xaf\x8f\xbf\xb4\xd8\xdb\xa6\x67\xbf\xe0\x7d\xa7\x23\xfd\x7e\x9b\xc9\x70\xba\x6d\x26\x07\x7e\x96\xfd\x74\xdb\x4e\xf3\xf6\xc3\x29\x7d\xdb\xaa\x0d\xb3\xb8\x0b\xdc\xb6\xca\x58\xd7\xbb\x85\xdf\xf6\xca\x86\xb9\xd4\xe3\x6d\x0b\xcc\xf8\x0f\x9b\x70\xbf\x15\xe1\x04\x9c\xbf\xfc\x38\xe5\x0c\x59\x85\xc3\xef\xe3\x9c\xe3\xb8\x4d\xb8\x8d\x7d\xac\xee\xc7\xba\x39\x35\x3f\xd6\x6d\xc3\x6c\xae\x10\x1f\xeb\xf6\xc1\xf6\xd5\x6c\xf8\xa8\x70\xcd\x7e\xae\x31\xc9\xe3\x63\xdd\x3e\x1c\x5b\x1b\xd6\x43\xed\x6a\xcf\x47\xa0\xa3\x8f\xaa\xdc\x30\x09\xd4\xe7\xf1\xb1\x05\x8f\xf5\x70\x7d\x7f\xac\xc7\x83\x8e\x9c\x2c\x8f\xf5\xd0\x06\xb7\x51\x8f\xf5\x78\xb8\x58\xe2\xa0\x01\x8f\x1d\xbf\x61\x2e\xdb\xf9\xa8\xc8\xc7\xb1\xec\x04\x7d\xec\xe5\x87\x95\xd6\xc5\xf1\x71\x2c\x3f\x06\xc5\xd0\xf7\x63\x65\x31\xa8\xa7\x0a\x7a\xac\xac\x66\x71\x68\x0b\x7d\xed\xe4\x2f\x07\x63\x9c\x3f\x5f\x07\xb3\x01\x1c\x8e\x5d\xe5\xf1\xb5\x4d\x5f\x36\x81\xc1\x0b\xbe\xb6\xe9\x6b\xbf\x77\x7f\x6a\x75\x37\xcc\xe3\xfd\xa5\xba\x35\x82\xc3\x15\x2c\xe9\xc9\x18\xa1\x1d\x5a\xb2\x5f\x1b\xa5\x5d\x1c\xbc\xc1\x04\x75\x61\x8e\xaa\xa8\x28\x72\xe8\xd2\x55\x85\x38\x8c\x30\xb9\x4b\x2d\xbd\x93\x4c\xd8\xc5\x12\x59\x28\xe3\x70\x1f\xa6\x9b\x27\x69\x84\x5d\xac\x23\xeb\xca\x1c\x32\x0b\xd1\x50\xc4\x4a\x14\xbe\x73\x2a\xda\x5d\x55\xba\xa2\xa5\x88\xb6\x4f\x6b\x7b\x2a\xb2\xed\x6c\x80\x45\xbb\x1b\x88\x19\xd6\xec\x56\xf4\xb6\x7d\x77\x72\xd1\x7c\x06\xe6\x2a\x8a\x6c\x7b\xb1\xed\xd8\x6e\x45\xf3\x19\x68\xd5\x7a\x68\x3e\x17\xcd\xe7\xc0\xbc\x2d\x9a\xcf\xc0\xe4\x96\xb8\x2c\x9a\xcf\xc0\xe4\x9a\xba\xf4\x46\xb6\x2c\x5a\xd4\x31\x7d\x9a\x0d\xdd\xb0\x66\xd2\x02\x2d\xea\xa2\x11\x1c\x4c\xb4\xa2\x11\x0c\x0c\x3c\x5b\x59\x34\x82\x8b\x46\x30\xe9\xe2\xe9\x0d\x6f\x42\x4d\x06\x7d\xd1\x08\x2e\x46\x54\x70\xdb\xa4\xe7\x99\x84\xc9\x61\xf0\xf4\xfe\xc4\x2c\x06\x41\x92\xcd\xa5\x34\x7f\xda\x38\x73\xc7\x6a\x57\x9a\x8d\xe7\xe6\xb1\x83\x7c\xcd\x2c\xcd\xee\xdb\x30\xb9\x8e\x2e\x4b\xb3\x55\x9a\xa9\xa9\x42\x34\x53\x81\xb9\xa0\x13\xa5\xbd\x2f\xbd\x10\xf9\x02\xfb\x6a\xc3\xe4\xfc\x4b\x16\xad\xd4\xe2\x19\xb4\x7c\x5f\xa0\x3e\xda\xf7\xd7\x0b\x74\xb2\x84\xfa\x08\x53\x68\x7f\x3b\xbb\x2c\x4b\xa8\xad\x30\x71\x87\xa1\x12\x36\x59\x53\x37\x59\xa7\x8b\xa6\x2e\x10\x0d\x93\xa7\x68\xea\x02\x71\xa8\xac\xb0\xbf\x89\x90\xe0\xed\xc8\x12\xf6\x77\xe0\x30\x1b\x56\x52\x5d\xc5\xf0\xf9\x34\x59\x83\x18\x68\xd3\x0e\xd2\x20\x06\x0a\x87\x16\xb3\x68\x10\x17\x73\x04\xd3\x11\x1b\xea\x8f\xd3\x10\xed\xd5\x82\xfa\x33\x02\x93\xaa\x59\x23\x19\xa8\x04\xb3\xb2\x68\x23\x17\xaf\xc6\x48\xe7\x7e\xaa\x0e\xf2\xff\xd2\x51\x91\xaa\x63\xc3\xe0\x1a\xc9\x2c\xa9\x36\xb2\xf9\x4b\x8b\xa9\x0e\xf2\xff\xf0\x24\x64\xd1\x94\x2e\x9a\xd2\x2c\x5e\x45\x53\x1a\x88\x89\x3d\x5c\x52\x75\x68\x5d\x73\x04\x25\x8b\xd6\x35\x50\xb8\xe2\x2b\x8b\xd6\x75\xd1\xba\x4e\x47\xa2\xd6\x35\x50\x7e\xfd\xa5\xed\xec\x8e\x61\x7f\xda\x6d\x41\x27\x0b\x3e\x69\x41\xb7\x05\x1a\xe1\x69\x87\x6a\x84\x03\xde\xbe\x94\x45\x23\xbc\x74\xbb\x0a\x03\xa9\x74\xbb\xaa\x73\x95\xd3\x41\xab\xba\x5d\xb5\x61\xd6\xea\x0b\x6c\x41\xb7\xab\xd8\x8a\xbd\x7b\x54\x58\x2e\x2d\x1a\xf4\x40\xc1\x43\x9e\xa5\xbf\x0d\xd8\x1d\xc5\x0d\x2c\x59\xba\x1d\xd5\xf5\xe5\xd1\xcc\xee\xd8\x37\x0d\x30\xd9\x75\xbd\xb4\x51\xf0\x7e\xad\x2c\xc3\xee\x1c\x5e\x1e\x47\x2b\x87\xca\x30\xe2\x91\x2e\xbe\x43\x6d\x40\x22\xdc\xed\x8a\x1c\x02\x68\x1c\x21\xcd\x22\x87\x00\x8a\x76\x49\x91\x43\x00\xed\x70\x0b\x90\x43\x00\x55\xc7\x42\x91\x43\x00\xe5\x5d\xa1\x87\x1a\xdb\x10\xdd\x15\x7a\xa8\x31\x99\x46\x86\xaf\x54\x63\x30\x8d\xa2\x62\x65\x1a\x40\x2d\xea\x75\xa8\xb2\x41\x64\xe0\x7d\x98\x2a\x1b\xea\xc7\x26\xc9\x34\x00\x8f\xdb\x64\x91\x69\x00\x31\xd9\xf9\xcb\x54\x3f\xb3\xfe\x7a\xbd\x56\x96\xa9\x7a\xe4\x23\x5c\x80\x95\x45\x3e\x02\xd4\x69\x9b\xe4\x23\x45\x3e\x92\xd6\x43\x3e\x02\x94\xf1\xfe\xd2\xa6\x4f\x0e\x1b\x38\x68\xa7\x4d\x9f\x8e\xed\xf0\x69\xb6\x13\xda\x52\x9c\xd7\xb2\x16\x20\x9a\xbb\x9f\xac\xc5\x5b\x39\x0f\xae\x6b\x4d\xef\xe5\x14\xea\xb0\xe9\xcb\x16\x2c\x5b\xe0\xbc\x5e\xb6\x80\x34\xc3\x61\x0f\xcb\x77\x00\xef\x11\xcb\x22\xa1\x01\x5a\x55\x43\xf2\x19\x60\x3f\x8c\x76\x4a\x68\x80\xb6\x3a\x0d\x90\xd0\x14\xa3\x1d\x99\xe8\x7b\xd9\x9f\x1c\xd9\xd1\x3b\x50\x96\xed\x5c\x5c\x5e\x83\x53\xa8\x2c\xdb\x69\x64\x23\xdd\x10\x4f\x3b\xcf\x8b\x11\x55\xe4\x69\xe7\xc9\x98\xb2\xd3\x02\x19\x13\x10\x04\x40\xb2\xc8\x98\x8a\x79\x86\x89\x45\x56\xa4\x4c\x40\x90\xae\x90\x45\xc6\x54\x64\x4c\x6e\xb8\x32\xa6\x62\x6e\x60\x76\x8b\xd9\x82\xf3\xfa\xf5\x5e\xb5\x2c\xf2\x1e\xa0\x10\x64\xcf\x22\xef\x29\xa7\xdb\x95\xfa\x38\x9d\xb2\x44\x23\xba\x3b\xc1\x65\xa3\xb8\x57\xa1\xd8\xf6\xcb\x46\x5d\x8c\x48\xfb\x58\x76\x04\x94\x6a\x47\x49\x8f\x80\xaa\x6b\xa7\x48\x8f\x8a\x91\x0d\x32\x4d\xb2\xc8\x8f\x80\x1a\xae\x5e\xf2\x23\x20\xb8\x7a\x24\x8b\xf4\xc8\x53\xcc\xa9\x6d\x27\x3d\x2a\x97\x2d\x77\x2d\x94\x0b\x01\x25\xdf\xca\xda\xf2\x0b\x2b\xd9\x15\xed\xb2\xe5\x97\x57\xd1\xf9\x30\xc7\xe8\x65\x77\x0e\xfa\xee\xb6\xe5\x37\xe7\x36\xe7\x6f\xdf\x28\x9a\xe5\x56\x31\xb7\xdd\xe8\x5a\x73\xdb\xe6\x0d\xed\x70\xc5\x93\x3c\x01\xbb\x18\x03\x56\xf6\x04\x44\x77\xad\xbf\x6d\xf3\x8d\xb9\xa9\xfd\x76\xdb\x66\x39\x56\xda\xb5\x72\x2c\xa0\xbe\x03\x40\x8e\x05\x94\x23\xed\xa1\x5b\xd5\x70\x6d\x66\xb8\xb9\xde\xaa\xe6\xbe\x3d\xbc\x89\x48\xd5\x6c\x18\x9c\x1f\x4a\xef\x9e\x16\xf6\xc3\xfc\xa5\xe3\x84\xa3\xbe\x6f\x0f\x49\xd8\x8a\x84\x2d\x55\xb4\x84\x0d\x28\xcd\x9d\x54\xc2\xc6\xed\xd2\xbb\x18\xad\x92\x63\x01\x35\x35\x1a\x3f\x56\xcd\x8c\xbf\xd7\x70\xfa\x58\x37\xce\x72\xbe\xc6\xab\x4c\xac\x7c\xec\x36\x6d\x92\xc7\x8a\x3c\xc7\xaf\x57\x08\x66\x79\xac\xc7\xc3\x6d\x47\x8e\xfe\xc7\x7a\x3c\x76\xd5\x52\x66\x57\x3d\xde\x9d\xce\xf4\x92\xc3\x95\xc7\xea\xc2\xf5\xca\x63\x75\xc9\xaf\x9b\xda\xda\x52\xb1\x62\x70\xa3\xbb\x89\xc9\xc5\x80\x76\xb8\x09\xc8\xc5\x80\x5d\xcc\x9f\xaa\xca\x87\xd3\xda\x76\xdf\xd7\x16\x7c\x69\x81\xb6\xdd\xd7\x16\x6c\x98\xc5\xb5\xf1\x6b\x0b\x64\x71\x1c\x59\xcd\x22\x8b\x03\x4a\x68\x8f\xc9\xe2\x8a\x2c\xae\x6b\x0b\xc8\xe2\x00\xaf\x54\xcc\x22\x8b\x03\x82\x73\xfd\x59\xbe\x8e\x3f\xc3\x22\xa4\x03\x65\xf9\x3a\x00\xbf\x38\xd6\x9d\xe7\x72\x3d\xe0\x5d\x55\xa5\x7a\x40\x69\xef\xef\xd4\xd9\x06\xef\x1b\xcd\x22\xd3\x03\x52\x5f\x67\xf9\xaa\x32\x62\x27\xa4\x7e\x66\xf9\xaa\xb2\xef\xab\x32\x8b\xa9\xb2\x2f\x57\x82\xd1\xc3\x9e\x43\x16\xbc\x11\x32\xab\x14\x11\x28\xd2\x8e\x2a\x43\xac\x5e\xaa\x19\x13\x51\x53\xc4\xe9\x02\xd6\xec\x2a\x41\xac\xb2\x41\xe7\x45\x95\x0d\x02\xa5\xa7\xcf\x1f\x8a\x06\xa1\x4a\x4b\x4d\x45\xe4\x6c\xbe\xa2\xa5\x08\xcb\xd1\x50\x44\x95\x0e\x02\xb5\x31\x80\xaa\x6c\xb0\x9a\x09\xd8\x8b\xb5\xfd\x28\xfb\x6c\x05\x1d\x56\xed\x51\x44\x6e\x05\xbe\x2a\x2f\xa6\xce\x6a\x7c\x85\x0b\xfe\xd2\xab\xa9\x85\xb6\x54\x90\x04\x11\x28\x5c\x64\x9b\x55\x82\xc8\x75\xd5\xfb\x97\x1d\x99\xed\xdc\xd0\x13\x36\x58\x8b\xed\xe4\xea\x80\x64\xbb\xaa\x92\x41\xa0\x72\x88\x37\xab\x64\x10\x08\x72\x5f\xd3\xbb\xaf\x85\x32\xc2\x8a\xd9\x4c\xcf\xda\x35\x4b\xdd\x8a\xde\x96\xa3\x34\xc3\x2b\xde\x91\xdd\x0e\x2b\x66\xcb\xf9\x32\xc2\xd1\x21\x02\x5e\x63\x21\x34\x03\x3f\x55\x62\x59\xcd\xfb\x7b\xab\x56\xed\x4f\x4e\xd6\x19\xf9\xf1\xa2\xec\xac\xc6\x4d\x3a\xae\xb5\x6a\xdc\x04\xa8\x6b\xf8\x02\x1b\xc5\x29\xe9\xc4\x2f\xe5\x65\xd9\xc2\xfe\x25\x63\x48\x4e\xea\x75\xd9\x1c\x3d\xc9\x6a\xe0\x04\xd8\xc5\xac\x9b\xad\x22\x72\x32\x1c\x43\x46\x4e\xbc\x56\xdb\x10\x40\x35\x72\x52\x3d\x47\xd7\x71\x2b\xd6\x66\x43\x9b\xa3\x9b\x77\x36\x1b\xda\x9c\xfd\xfe\x54\xd2\x0b\x04\xb7\xdd\xa4\xb7\x74\xa7\x77\x72\x1f\xee\x2b\xde\xca\x2d\x84\xe6\x98\xd7\x72\x0b\x2d\x86\x22\xd5\x41\x92\x5f\x75\x24\x34\xd5\xb1\xa1\x39\xaf\xab\x64\x19\x28\x2d\xfd\xa1\xda\x68\x92\x3d\xdf\xa8\x36\x3c\x1f\xd7\xed\x77\xd9\xb2\xf7\x7e\x73\x9a\x20\xab\x21\x9d\x2a\x81\xe6\xa6\xa7\xac\x12\xe8\x0a\x5b\xd6\x05\x50\xa5\xc3\x40\xd1\x4b\x57\xa5\xc3\x00\xa7\xc0\x7f\x73\xab\xae\x92\x65\xa0\x69\xdc\x57\xc9\x32\xe0\x19\xe1\xac\x92\xe5\x6a\xa8\xa8\xb3\x88\x57\xa9\x31\x30\xe5\x2b\xde\x58\x9e\x35\x9c\xe4\xf0\x95\x2a\x0f\x06\xda\x82\x29\x54\x69\x30\xb0\xa6\xca\x92\x06\x03\x31\xd2\x6a\xa8\x18\xf2\x10\x39\x0e\x9d\x55\x16\x5c\xc3\x31\x81\x2d\x55\x8d\x0b\x01\xc5\x00\x47\x95\x18\x03\x55\x67\x94\xf7\xa4\x67\x95\x05\x77\xd7\x37\x59\x30\xd0\xde\x21\x21\x0b\xae\x9e\x82\x7b\xd5\x21\x0d\x06\xda\xe1\x30\x91\x06\xd7\x74\xf0\xe3\x33\xad\x72\x5e\x60\x2c\x1b\x25\xe5\xad\x9e\x5f\xc3\x1e\xaf\x52\x5e\xa0\x1c\xdd\x95\x2b\x6d\x95\xa9\x82\xe9\xc3\xec\xed\xee\x62\xe6\x1c\xe9\xb6\xaa\x93\x05\x85\xa1\x5d\x25\xcb\x55\x66\xdc\x1d\x15\x32\x63\xef\x6e\x3f\x6c\x95\xcc\xb8\x9a\xe6\xd7\x7d\x43\xb7\x09\x1d\xea\x57\x15\xd9\x7b\xa6\xf9\xf5\xf7\x0d\x0e\xf5\xce\x50\x9f\x16\xb3\x43\x37\xd4\xf2\x56\xcd\xb6\xf7\xb7\x55\xb4\x54\x22\x0c\x8c\xe5\x54\xea\x6f\xab\x4c\x60\xa0\x94\x3c\xb8\x42\x7a\x8f\xee\xa2\x24\xeb\x05\xca\x70\x46\x48\x7a\xab\x91\xb3\x4e\x1c\xae\xca\x7a\x81\xb9\x5c\x1c\x65\xbd\xc0\x78\xc7\x82\xac\xb7\x0e\xa7\x9c\x83\x41\x0e\x0a\xc4\x60\x13\xae\x72\x50\xa0\x1c\x7c\xb0\x25\xab\x01\x30\xa0\x56\xe7\x81\xb4\x14\xd8\xc5\x58\x5a\xe4\xa5\x40\x8c\xae\xc8\x16\xbc\xbc\x94\x87\xc9\x4b\x81\x79\x60\x7a\xd5\x69\x03\xa6\xdd\x82\xad\x5d\xa7\xdd\xb2\x61\x16\x87\xa9\xb4\x14\x68\x87\x3b\x8a\xb4\x14\x98\xd5\xe1\x27\x2d\x05\x06\x17\x6c\x66\x9d\xf6\x8a\x4c\x55\x3b\xae\xca\x54\x81\xb9\xde\x87\xa9\x8d\x0d\x93\xf3\x93\x59\x65\xaa\xd5\xdb\x8d\x48\x7b\xcd\xba\x6c\x3a\x77\x17\x0e\x7b\x60\xd9\xf2\x0d\xf3\x70\xf4\xc9\x67\x81\xfd\x4b\x9e\x26\xa1\xad\x9e\xa4\xb3\x07\x96\x4d\x97\x6f\xf2\xb5\x97\xac\xf2\x4d\xc0\x9b\xab\xb3\xca\x37\xab\xd9\x75\xdd\xdd\x5a\xc2\x09\xb4\xaa\x1d\xb1\xac\xee\x7a\x0f\x47\x21\xb2\xef\xa0\xa5\xba\xd0\xaa\xac\x14\xf0\x3a\x84\xac\xb2\x52\xa0\x19\x26\xa8\x92\x52\x20\x5f\x6d\x4b\x4a\x81\x9a\xd3\x1f\x5a\xff\xd3\x7d\xf3\x95\xd9\x4f\x04\xe3\xf2\x7d\xbe\xfd\x44\x30\xae\x1f\xd6\xc2\x7e\xe2\x46\xc0\xe5\x86\x2b\x4d\x05\x6a\x7d\x7f\x68\xc3\x4f\x4d\x1e\x7a\xce\x58\x5c\xbd\x1c\x7a\xda\x71\x12\x50\xa0\xa6\x7b\x9f\x04\xb4\x7a\xb1\x9f\x73\x58\x02\x0a\x78\xf7\x7a\x56\x09\x68\x35\x30\xc6\x81\xca\xac\xd7\xfb\x82\x87\x77\x5a\x4c\x2d\x5e\xe4\xab\xe2\x45\xaa\x92\x41\xa0\x1c\x43\x05\x49\xf7\x80\x59\x5c\x4b\x0c\x9f\x01\xbb\x98\x32\xeb\x01\x2b\xd4\x1b\x54\x25\x85\xf5\xf6\x86\x71\xb7\x52\xe9\x1e\x10\xd5\x81\x26\xdd\xab\xd2\xbd\xe1\x26\x2c\xdd\x03\xea\x50\x1d\xd2\xbd\x2a\xdd\x1b\x8e\x0d\xe9\x1e\x10\x87\xb6\x80\x74\xaf\xf2\x51\x84\xc3\xf8\x74\x95\xb5\x01\x79\xf8\x02\x49\x1b\xb0\x8b\xd1\x04\x59\x1b\x50\x63\x29\xb2\x55\x46\xde\x86\xfb\x94\x91\x37\x60\xe8\xd9\xa8\x46\xde\x80\x3c\xac\x9a\x91\x37\x60\xff\xf2\x77\x84\xac\xeb\x47\x45\x6c\xa8\x9c\x69\x4b\xbf\x1c\x24\xcc\xfe\xbe\x5e\x3d\xc8\x2d\x0d\x14\x55\xb9\x25\x30\xf9\x50\x52\x56\xb9\x65\x95\x5b\x0e\xbb\x57\x6e\x09\xcc\x70\xc2\xc9\x2d\x81\x59\x1c\x2a\x46\xf9\x80\x3a\x71\x0d\x55\xd9\x66\x7d\xd4\x96\x06\xa7\xdc\x12\x98\x01\x9f\xad\x8f\xda\x92\x6e\x0e\x3c\x6a\x55\xba\x09\xb4\xe2\xce\x29\xdd\x7c\xbf\xff\x31\x9c\x26\xb2\x41\x20\x0f\x7b\x4d\x36\x08\xcc\x65\xd5\x64\x83\x55\x9a\x37\xb4\x9d\xa4\x79\xc0\xac\xf2\x18\x69\x5e\x95\xd3\x0d\x2d\x15\x39\x1d\x30\x0d\xc8\x56\x39\x1d\xe0\xd5\xf9\x59\x25\x75\x40\x6b\x5a\xf3\x92\xba\x6a\xaa\x9b\x5e\xbc\x2a\x5f\x03\xca\x74\x9a\x48\xd7\x80\x66\x24\xcd\x2b\xa2\x84\x30\xbd\xa4\x49\xd7\xda\x61\x03\x78\x41\x33\x2e\xd7\xde\xec\xb7\x82\xa8\x2b\xe2\x93\x32\xb8\x3e\x9b\x44\x0c\xd8\xbf\x9c\xc8\xa6\xb2\x09\x9d\xf5\x61\x4b\x91\xdd\x1e\xd6\xe3\xa3\x0c\x4f\x50\xf7\x05\x8f\x22\x16\x55\x2d\xce\x26\xc7\x02\x92\x93\x9d\xd9\x8c\xcb\x01\x31\x6d\x81\xac\xab\xf9\x75\x27\x2e\xbc\xc9\x66\x74\xad\x79\x9f\x09\xf3\xab\x49\xb1\x80\xc2\xdd\x8f\xd9\xa4\x58\xcd\x80\x5b\x5a\xca\x06\x14\xa7\x7e\x5a\xcc\x16\x90\xc2\xc6\xdd\xae\xd9\xe4\x58\x80\x5f\x2f\xc8\x26\xc7\x6a\x12\xaa\xc1\xb8\x6a\x12\x2a\x20\xc8\xee\xcd\x26\xa1\x6a\x12\x2a\x37\xeb\x26\xa1\x02\x2a\x1f\x72\xc9\x26\xa1\x02\xfc\x90\x49\x36\x23\x75\xc0\xfe\x25\x6d\xe7\xbc\x95\xd0\xe6\xfb\xcb\x50\x94\x16\x43\x1d\xa6\xb0\x01\x61\x4e\x49\x33\x85\xad\x19\xf7\x1b\xcc\xed\x26\xc9\x02\x4a\xb7\x55\x72\xac\x26\xa1\xd2\x3a\x6a\x12\x2a\x60\x2e\xbb\x45\x42\x05\x84\xbe\xec\x26\xa1\x02\xe6\x01\x9f\x6a\xf2\x29\xa0\x1c\x1c\xae\xcc\x26\xa1\x02\xe6\xc2\x01\xd2\x8c\x2b\x72\x4f\xd9\x2e\xa6\xcc\x3e\x80\x03\x39\x1b\x9b\x1c\x08\x68\x5c\x80\x99\x4d\x0e\x04\x84\x96\x78\x93\x03\x35\x73\xd8\x38\xfb\x98\x4d\xc2\x03\xc4\x3b\xe4\xe5\x3b\x40\xd5\x01\xd7\x0c\x18\x02\x53\xdf\x46\x93\x02\x01\x7e\x8d\x22\x9b\x14\xa8\x19\x11\x34\xa3\xaa\x49\x72\x80\x66\x06\x42\x93\xe4\x34\xaf\x0d\xe1\x64\x62\x36\x59\x0e\x10\x86\xc5\x9a\x21\xc1\x26\xf1\xe1\xe4\x5a\x36\x89\x0f\xd0\xda\xfb\x4b\x47\xa9\x21\x41\x75\x6b\x48\x10\xa8\xda\xe1\x4d\x2a\xd4\xe2\x3d\xbf\x8e\x48\x05\x99\x0f\xc7\x39\xa1\x6c\xb2\x9c\xe6\x85\x20\xef\x2b\xd5\x06\xf9\x70\x8b\x75\xa8\xc9\x7b\xda\x7b\x59\xbe\x1a\x92\xf8\x34\x6f\x04\x71\x66\x4b\x7c\x80\xd0\xc6\x6c\x46\x04\x81\x90\x5d\x36\xa9\x10\x30\x25\x08\x4d\x2a\x04\x94\xb0\xb2\x32\x21\xa0\x72\x35\x7e\x36\x99\x10\x50\x0d\x1b\xb6\x54\x17\xc6\x08\x87\x13\xdb\x18\x21\x50\xca\xfb\x4a\x5b\x6e\x8c\xd0\x98\x46\x93\x30\x01\x7e\x49\x24\x9b\x84\xa9\x49\x98\xb4\xe4\x9a\x84\x09\x28\xc5\x21\x2a\x61\x02\x92\x2b\xe0\xb2\x75\x15\xb4\x21\x8c\x34\x35\x29\x14\xe0\x45\xa8\xd9\xa4\x50\x80\x77\x5d\x66\x33\xde\x08\x04\xf7\x50\x65\xeb\xea\xa7\x73\x7c\x39\xe6\x6f\xef\xd4\x4d\x1a\xd6\xa4\x61\xda\x27\x4d\x1e\x06\xc4\xc0\x6c\x6f\xd2\x30\xa0\x91\x39\x9f\x4d\x1a\xd6\xa4\x61\x9c\x4c\xca\x26\x0d\x03\xfc\x9e\x4a\x36\x69\x58\x33\x68\xc9\x69\x94\x6c\xf2\x30\xa0\xbd\xba\x32\x6a\xd9\xfa\xab\x3f\xd5\xa0\xfe\x88\x51\x0e\xbb\x56\x6a\x06\x54\xb7\xc3\x26\x35\x03\xa2\x3a\xa6\x0d\x51\x02\x4d\xaa\xd3\x24\x6b\xcd\x10\xe5\x70\x0a\xca\xd6\x00\xef\x2e\xcc\x26\x59\x03\x5a\x75\xe8\x48\xd6\x80\x2a\x05\x68\x92\x35\x60\x3f\x8c\xa1\x63\x8c\xb2\x19\xa3\x6c\xbe\x53\x0d\x6d\x68\xcb\x25\xd0\x18\x25\xb0\x7f\xa9\x4c\x0d\x71\x5f\xfe\xb2\x1f\x8d\x51\x36\x69\xde\x74\x8a\x4b\xf3\x80\x56\x7c\x9a\x34\xaf\x79\x61\xca\x74\xdb\x94\xd3\x35\x6f\xb9\x77\x03\x90\xd3\x01\xbb\x18\xdd\x22\xa9\x03\x8a\x5e\xc2\x66\xf8\x11\x68\x72\xd7\x66\xf8\xb1\x79\xad\x8a\x8b\x83\xcc\xaf\x11\x7d\x3c\x38\x2b\x90\x4d\x9e\x07\xd4\xb4\x0b\xe4\x79\xcd\x43\x59\x1c\xc9\xc8\x26\xd1\x03\xe2\x70\x12\xca\xf3\x80\x28\x6f\xcd\x9c\x49\x44\x24\xc7\xfb\x4e\x07\x82\xa1\xc6\xe9\xb6\x6c\xa8\x11\x28\xef\x2a\x6e\xa8\xb1\x99\x28\xc9\x59\x81\x6c\x06\x16\x81\x6a\xc2\x48\x33\xae\x08\xcc\xe9\x48\x30\xae\x08\x94\x77\xdd\x92\xe6\x35\x39\x9d\xb9\xf1\x4d\x4e\x07\xc4\xc0\xbf\xd8\xd6\x5b\x35\x7b\x0a\xe3\xb4\x49\xea\x80\x68\xae\x22\x92\x3a\x60\x0c\x07\x91\xa4\xee\xbd\x72\x97\x53\x06\xd9\x64\x75\x40\x33\x7b\xc8\x8f\x69\x0a\x31\x70\xc5\x35\x59\x5d\x33\x39\xd3\x0c\xf7\x66\xa8\x11\x88\xf1\xbe\x53\x75\x9c\x7c\x64\xc5\xf5\xcd\xdc\xcc\x26\x1f\xf4\xa8\x40\x93\x0f\x36\x93\x33\xed\x28\xf9\x60\xf3\xb3\x5f\x4e\x59\xf9\x20\x17\x7d\xee\x5f\x5a\x0f\xd5\x41\x26\x66\x57\x91\xb2\x3f\x20\xb8\xa5\x2b\x9b\x31\xca\x76\xbd\xed\xa4\x1e\xb2\x3f\x60\x56\x37\x3a\xd9\x1f\x50\x0e\x7d\xab\x4d\xfa\x07\xcc\xe9\x34\x33\xfc\x08\xec\x62\x68\xcd\xf8\x23\xe0\xf7\x99\xb2\x19\x7f\x6c\x06\x1b\x75\xb1\x34\x83\x8d\x40\xab\xce\x29\x83\x8d\xcd\x33\x59\xe6\x67\xb6\xeb\xad\x2f\x7b\x98\xfa\x90\x4c\x36\xc9\xa4\x04\xbc\x49\x26\x9b\xf7\x95\x38\xfe\x24\x93\x40\x29\xee\x61\x72\x49\x60\x0c\xd7\x7b\xb9\x64\xf3\xcb\xab\x66\x46\x34\x89\x23\xe0\xe7\xa4\xb2\xc9\x1b\x81\x52\x54\xae\xbc\x11\xf0\x03\x68\xd9\xa4\x8d\x40\x54\xe8\x52\x93\x36\x02\x4d\x1a\xdd\x8c\x12\x02\x45\xee\xe5\x45\xce\xd9\x3e\x6f\x93\xe8\x4f\x99\x24\x50\xd2\xb5\x49\x22\xd9\x3e\xf6\x8a\xb6\xfa\xc7\x06\x7c\xf8\x64\x0d\x54\xd5\xeb\x9e\xf3\xbd\xee\x79\xba\x23\xca\x24\x81\x56\xe0\xa0\x4d\x26\x09\x34\x93\x3f\x9b\x4c\x11\x28\x45\x9b\x50\xa6\x08\x84\x89\xd4\x4d\xa6\xd8\x64\x8a\x26\x2e\x35\x99\x22\x50\x97\x8b\xbc\x4c\x91\x0b\x63\x77\x31\x65\x76\xe7\xc7\xab\xf4\x79\xa7\x1c\x10\x28\x66\xb3\x35\x23\x8e\x4d\x5a\x68\x5a\x74\x93\x16\x02\xc3\xe4\xcf\x26\x2d\x04\xfc\xc6\x57\x36\x59\x21\x50\xde\x59\x2c\x2b\x04\xaa\x87\x4d\x9a\x89\xa4\x40\x35\xe8\xd3\x4c\x24\x6d\x1e\xe6\x9a\xf9\xdb\x27\xb7\xb2\x99\x68\x0a\xec\x3d\x0a\x91\xca\xda\xb0\x77\x32\x44\x2a\x8b\xc3\x5c\xa6\xf1\x34\x43\xa0\x40\x95\x59\x36\x43\xa0\x40\xc4\xfb\x2c\x87\xc9\x06\x3d\xa1\xcd\x00\x28\x50\xd2\xe5\xd9\xf8\x67\x33\xfe\xa9\x39\x24\xe3\x05\x9a\x41\xee\x26\xe3\x05\xd2\x83\x06\x4d\xc6\x0b\xb4\xf0\x59\x86\x3f\x81\xa8\xef\x0f\x55\xa7\xbc\xd8\xc4\xc5\x26\x2f\x6e\xde\x42\xe2\x84\x91\x17\x03\x51\xde\x52\xea\x13\xaa\x6c\x26\x74\x93\x29\x03\x2d\xed\x2e\x99\x32\xd0\x74\x75\x35\x99\x72\xfb\xbe\x83\x0b\x85\x49\x95\x81\xe4\x6e\xa9\x6c\xc6\x3f\x81\x12\x4e\x78\xe3\x9f\x40\xbe\x34\x4d\x3e\xdd\xcc\x87\x35\x68\xe0\x65\xc5\x42\x39\xa4\xad\x7e\xed\x58\x88\xc6\x80\x08\xa3\x9d\xe1\x95\xa4\xdc\x1a\x98\x61\xb8\x13\x28\x95\xee\x0d\xc3\x9d\x40\xf1\x9c\x58\xc8\xbb\x43\xde\x2d\xbb\x0d\x89\x37\x90\xed\x2d\x36\x14\x39\xe2\xba\x2f\x9d\xca\xb8\xd1\x0a\x9f\x58\x48\xbc\x01\xbf\xef\x98\x61\x04\x14\x28\xb1\xfc\xe1\xa5\xe8\xf2\x61\x89\xec\x56\xc6\xc9\x94\xf7\x97\x1f\x45\xdc\xe4\x5a\x7c\xfe\xa3\xc8\x8b\x04\x6d\xe6\x57\x11\x57\x55\x33\xe5\xfd\xf8\xb3\xd0\x3a\x8b\x51\x48\xd8\xc3\x30\x29\x5b\x61\x18\x26\x05\xb6\x3d\x86\x48\x95\x15\xa8\x2d\x03\x34\x4c\xa3\x0d\x99\xbe\xe6\x7f\xc8\xf4\x81\xaa\xb5\xe3\xd7\xa5\x85\xf4\xd8\x4b\xc8\xf4\x81\xaa\xa7\x2e\x64\xfa\x51\x1c\x2e\xdd\x62\x2a\xa3\x98\x83\x84\xb2\x8d\x93\x86\xb4\x7e\x0e\xeb\xa1\x32\xf8\x44\x20\x17\xdb\x67\x48\xeb\x81\xc6\x85\x92\x19\xe6\xe4\x02\xc1\xcd\x09\x19\x12\x7d\xa0\xf0\x99\xeb\x0c\x89\x3e\xb0\x6d\x36\x44\x2a\x43\xa2\x3f\x99\x75\x21\xd1\x07\x92\xbb\xd1\x33\x24\xfa\x21\xd1\xe7\xc6\xaf\x0c\x89\x3e\x50\x74\xbb\x85\x44\x1f\xe0\x2b\x37\x19\x46\x5c\x81\x62\x0a\x55\x18\x71\x05\x4a\x87\xc9\x85\xce\x80\x30\xe2\x3a\x59\x59\x42\x6f\x00\x50\xe6\xb2\x62\xea\xa7\x7a\x8a\xc9\x52\xaa\xa7\xfa\x05\x45\x4b\xa9\x9e\xca\x07\xb3\x1c\x78\xfa\x07\x80\x66\xbe\x48\xe8\x1f\x08\xfd\x03\x93\xe9\x1a\xfa\x07\x80\x30\x5f\x35\xf4\x0f\x00\xe9\x11\xa0\x30\x04\x1b\x5e\xbe\x32\x1d\x40\xc6\x60\x81\xa6\xa5\xc3\x07\xc7\x5f\x28\x7c\x81\x21\xfd\xf0\x78\x86\x17\xad\x98\xad\x17\xc6\x60\x81\xe6\x2e\x15\xfa\x1f\x80\xa2\x2d\x18\xfa\x1f\x80\xfd\x4b\xeb\xa1\x82\x9a\x8c\x08\xfd\xeb\x80\x00\x8a\x81\xba\x30\x06\x1b\xfa\x24\x74\xdb\x84\x3e\x09\xa0\x69\xd1\x85\x3e\x09\x60\x17\xa3\x1e\x3a\x25\x80\x38\x1c\x8d\x3a\x25\x42\x0f\x84\xa9\x56\xa1\x07\x02\x48\x4f\x66\x85\x1e\x88\xf0\x8a\x96\xf9\xca\x6c\x3c\xee\x06\xcf\x35\xf9\x25\x07\x61\x17\xa3\xa5\xba\x1b\x80\xa2\x8b\x3c\x74\x37\x84\xa1\x57\x1d\x26\xa1\xbf\x01\x28\x7a\xb6\x42\x7f\x03\x90\x4d\x15\x19\x7a\x8d\x78\x5b\x85\x8e\x74\x2e\x00\x75\xe2\x0f\xf0\xf3\xef\x42\x39\x26\x84\x36\x74\x2e\x44\x06\xad\xa2\xf1\xba\x0d\x80\x6a\xb8\x37\x74\x1b\x00\x9b\x2c\x21\xb2\x51\xc9\x57\x1c\xe7\xef\xd8\xa2\x43\xaf\x02\x10\xed\x7d\xae\x4d\xe6\x1b\x7c\x1e\x63\x0b\xfd\x0c\x61\x60\xd6\xdc\xec\xd0\xd1\x00\xb4\xe2\x1a\xa8\x9f\x01\x68\x9e\x03\x0d\xfd\x0c\xd1\xdf\xe6\xd1\x1b\xfa\x06\x80\xfa\x8e\x7e\x7d\x03\xc0\x2e\x86\x02\x75\x0e\x00\x9b\x4b\x21\x52\x0b\xb2\xff\xe5\x8a\x24\xfb\x07\xf2\xed\x5b\xd9\x7f\x98\xb2\xac\xe7\x2e\xa4\xff\x40\xa4\x6b\x8d\xec\x3f\xc6\x61\x31\x54\x2f\x15\x07\xd2\xec\x82\x90\x8a\x03\xc9\xb5\xf5\xe9\xe7\x3d\x84\xa6\x2f\xcc\xaf\x7b\x08\xe5\x58\x6f\x31\xab\x4b\xb6\xb0\xf4\x28\xa4\xe2\x40\x36\x27\x8e\x4c\x1c\x48\xb3\xd7\x43\x26\x0e\xd4\xa5\x86\xc6\x5b\xd9\xd3\xe7\xfb\x4e\xbb\x60\x70\x34\xcb\x35\xc9\xd4\x60\xa0\x2c\x87\xb0\x61\x59\xa0\xca\x32\xc3\xb0\x6c\x98\x1a\xec\xf1\x82\x90\x9c\x03\xd5\x73\x5e\x61\x08\x36\xe4\xeb\x9e\x14\x0a\xf9\x3a\x90\xda\x53\x21\x5f\x0f\xf9\xba\xa6\x4c\xc8\xd7\x81\xd4\x83\x18\xf2\xf5\xf0\x62\x15\x8f\x39\x84\x84\x1d\xa8\xba\x1c\x42\xc2\x1e\xf3\x6d\x28\x2a\x92\x89\x03\x11\xd5\xea\xda\x50\x72\x83\x97\xeb\x88\x4c\x3c\x3c\xd1\x68\x1e\x6d\x48\xc5\x81\x5a\x1d\x1d\xd3\xe5\x86\xdb\x51\x4c\xe7\x0d\x83\xb0\x40\xf1\xcc\x4e\x18\x84\x0d\xb3\x8a\xd7\x2b\xb3\xed\x8b\x8b\xe9\x9c\xe5\x06\x61\xc3\x0b\x53\xde\x7a\x18\x85\x05\xd2\xfc\xb1\x90\xfd\x87\x5f\x90\x53\x91\xb2\x7f\xa0\x36\xd7\x02\x13\x8d\xc3\xac\x62\xa3\x98\x21\xfb\x07\xaa\x89\x3e\x21\xfb\xe7\xeb\xeb\xe9\x61\xce\x30\xa2\x1b\xb2\xff\xe5\x6c\x94\xfd\x03\x19\xce\x15\xd9\x7f\x78\x11\xca\x82\xdb\x86\x84\x1d\xd8\xb6\x0a\x22\x1b\xb0\x21\x8d\x4f\x86\x7c\x1d\x28\xc7\x82\xa0\x86\x84\x1d\x48\xd9\x45\x48\xd8\x81\xd4\x68\x0e\xf9\x3a\x10\xe6\x74\x84\x7c\x3d\x36\x47\xcf\x70\xaf\x33\x58\x0b\xa4\x29\x65\x61\xb0\x16\x88\xa2\x11\x21\x83\x07\x32\x9c\xb0\xe7\xdb\xa4\xc7\x8a\xd1\x01\x52\x78\xa0\x7a\x56\x39\x4c\x33\x0e\xc3\xbc\xaf\x31\x66\x98\x17\x08\x1d\xce\x21\xd1\x07\x76\x31\x6a\x2b\xd3\x0f\x13\x8d\xdd\x86\x25\xfa\x40\xf2\xcd\xa3\x0c\x89\x7e\x5c\xae\x39\x50\xf3\x30\x85\x18\x68\x7a\x6e\xe2\xb2\xe9\x12\xfd\x77\x21\x97\xe8\x03\x19\x4e\x46\x89\x3e\xb0\x0e\xe7\x85\x59\xc5\x40\xc8\xa6\xc3\xd0\x72\xe8\x0e\x58\xaa\x48\x77\x00\x90\xfa\x97\x43\x77\x00\xa0\x93\x33\x74\x06\x00\xcd\x98\x45\xe8\x0c\x00\xb6\xfd\x8e\xc8\x86\x9b\x6e\xcc\xf5\xb1\x19\x7a\x03\x80\xb2\xb4\x1c\x4d\x37\x0e\xd3\x8d\x57\xf8\x4a\x87\x06\x01\xe8\xd4\x80\x35\xfe\x0c\x34\x23\x94\xa1\x1b\x01\x28\xaf\x61\xa1\x1b\x01\x88\xd7\x40\xd6\x8d\x10\x64\x16\x1f\x0b\xea\x1f\x3a\x0d\x80\xf4\xa8\x66\xe8\x34\x00\xda\x72\xa2\xe8\x34\x00\x7e\xad\x97\xda\xb9\xd1\x8e\x93\xda\x10\x35\x90\xaf\x15\xa7\x63\x01\x88\xc3\x7a\xe9\x58\x00\xd2\xfc\xc3\x30\x42\x1d\x1f\x07\x01\xaa\xd0\xaf\x00\x6c\x23\x1f\x91\x9a\xf0\xe2\x18\xdd\xa5\x7e\xe5\x45\x28\xeb\xf7\x64\x7e\x87\x6e\x07\x60\x3f\xc5\x97\xa9\xaa\x8f\xb3\x08\x55\xe9\x63\x88\xcf\xab\x2a\x6b\xae\xaa\x3e\xaa\xca\x5f\xaa\xaa\x0f\xd3\xc8\x75\xd2\x68\x34\x90\x1e\xdf\x0d\x3d\x11\x40\x54\x9f\xa5\x27\x22\xbc\xbc\x74\xe1\x37\x09\x5d\x11\xc0\x1c\xee\x55\x7a\x22\xc2\xd3\xaa\x4b\xc3\x52\x27\x03\x50\xf4\x71\x87\x4e\x06\xa0\xbe\x53\x52\x27\x03\x90\x21\xbd\xd3\x89\x00\x34\xcf\x4b\x84\x4e\x84\x78\x6f\x84\xf1\x87\x0e\x92\x87\xfb\x26\x52\x91\xca\x30\x69\x7a\x11\x2f\x0d\x5d\x06\x40\x7d\x17\x3b\x7d\x06\x40\xf3\x0e\x80\xd0\x67\x10\x5e\x4a\xba\x5c\x9b\x75\x07\x00\xe1\x01\x9e\xd0\x1d\x00\x64\x38\x8b\x74\x07\x84\x77\xb8\xbc\x56\xb0\x7c\x1d\x28\x26\x76\x85\x74\x3d\xfc\xf2\xde\x92\x8c\xca\xd7\x81\xf2\xce\x65\xf9\x3a\x90\x06\x47\x43\xbe\x1e\xe6\x2b\x2f\x67\xd6\xf7\xad\x2e\x2e\x23\x38\x99\xdf\x0c\x12\x76\xb1\x81\xac\x28\x2b\xf8\xae\x2d\x56\x15\x39\xc3\xc9\xa0\x4f\xf9\x3a\xb0\x8e\x57\x94\x8a\x9c\xe1\x58\xe3\x29\x5f\x07\x9a\x27\x4a\x52\xbe\x0e\x14\x43\xf8\x29\x5d\x4f\x2f\x8e\x59\xc3\x62\x4b\xd9\xda\xb3\x32\x91\x9c\x4a\x6c\x14\x0c\x2f\xa5\xd8\xc0\xe6\x3b\x5b\x24\xc5\x4e\x29\xb6\x0d\x90\x62\x03\xe9\x99\xf0\x94\x62\xa7\xe7\x52\x17\x3d\x95\x12\x6a\x20\x3d\x88\x9e\xf2\xe9\x94\x16\xeb\x3e\x4a\x69\x31\x90\x1e\x88\x4f\x69\x71\x1a\xc6\x5e\xf0\xd6\x94\xdd\x02\xe9\xe9\xf7\x94\xdd\xa6\xd7\x86\xf2\xdd\xc2\x4c\xe9\x6d\x56\x87\x07\x4d\x97\xca\x02\xd5\x2c\xf8\x34\x55\x38\xfd\xe2\x86\xa7\xcc\x52\x2a\x0b\xa4\x67\x56\x52\x2e\x9b\x86\xb1\xf9\x78\x61\xa6\xcc\x15\x48\xee\x65\xcf\x94\xb8\x02\xbb\x18\x0a\x91\xb9\x02\x65\x0d\x8b\x7d\x14\x69\x29\x2d\xdf\xf0\x28\x83\xba\x86\x2f\xb0\x0f\xa0\xae\xc3\x41\x24\x75\x05\x32\xc8\x5e\x48\x99\x2b\x50\xaa\xed\x94\xb9\xa6\xd9\xc3\x0b\x67\x6a\x4a\x5d\x81\xd4\x0d\x9b\x32\xd7\x6c\x6f\xdb\x7d\x81\x6d\xe7\x43\xf4\x11\x8a\x6c\x3b\xb7\xb8\x94\x03\x4b\x26\x65\x9b\x40\x7a\xba\x3e\x65\x9b\xc0\x2e\x46\xdb\x65\x9b\x40\x33\x7b\x26\x65\x9b\xc0\x26\x8b\x5b\x24\xd9\x04\xf6\x2f\x51\x87\x6c\x13\xc8\x57\x1d\x86\xc0\x81\x5d\x8c\x97\x4a\x40\x81\xaa\x9d\x9b\x12\x50\x20\x4c\xa6\x4d\x23\xe0\xc0\xfe\xa5\xc5\x9c\x40\x7c\x53\xde\xe3\xb4\x29\x27\xcd\xd0\xb9\xcc\x96\x92\x12\x50\x60\xd3\x61\x44\xf6\xfb\x86\xf5\x4a\xec\xf6\x30\x72\x5b\x94\xd9\xce\x0d\xd3\xb3\x20\x29\xfd\x04\xd2\xd0\x6d\x4a\x3f\x33\x6d\x53\xb1\x98\x6d\x4a\xbe\xc0\x0a\x07\x4a\x03\xd9\xc0\x2e\x46\xd3\xa5\xa4\x40\xea\x1d\x4f\x29\x29\xb0\x69\x34\x22\xdb\x94\x76\x1e\x56\x7f\xca\x13\x81\xe4\xde\xd3\x4c\x79\x22\x50\xca\x61\x4f\x19\x8f\x06\xa6\xc9\x80\x69\x3c\x3a\xbb\x3d\xc5\x06\x9e\x46\x9f\x81\x62\x0e\x75\xca\x30\x13\x3a\x59\x0e\x67\xb2\x74\x12\x68\xaf\x6e\xa5\x93\x40\x6b\xec\x06\x29\x9b\x04\xaa\x57\x17\xa4\x6c\x12\xc8\xf8\x1d\x9f\xeb\xc8\x94\x6b\x66\x5f\xbe\xde\x2a\xd9\x69\xa4\xf7\x6a\x4b\xa5\x61\x65\x60\x17\x63\xd1\x30\xae\x0c\xc4\x60\x4f\x49\x4f\xc3\x02\x19\x8e\x27\x23\xcd\x40\x35\xdd\x34\x8d\x34\xe7\xb0\x87\xfc\xa5\xfc\x33\x87\x73\x89\xe7\xcb\x2c\xd3\x18\xaf\xb3\x50\x66\x99\x30\x4b\xef\x94\xcb\x94\x59\x02\xe9\x9d\x0b\x29\xb3\x04\x9a\x39\xe8\x29\xb3\x04\xf6\x2f\xd1\xa9\xd4\x12\xd8\x7c\x1e\xd1\x5b\x35\x6f\x0d\xf4\xa7\xb2\xcd\x94\x6d\xb2\x5f\xa7\x6c\x13\xc8\x57\xf5\x92\x4d\xa0\x99\xc5\x91\x92\x4d\x20\x03\xa7\x5e\xca\x35\x81\xd6\xd4\xb6\x5c\x33\xc9\x01\x2e\x87\x93\x44\x62\x09\xd4\x5f\x7f\xa9\x36\x36\x64\x74\x4b\xa9\x8d\xc9\x3d\x5e\x6c\xfd\x69\x6c\x18\x28\xd3\xc5\x52\x42\x0a\x64\xbc\xd5\x57\x3f\xd3\x39\xe8\x8a\x21\xd5\x04\xd2\x83\x15\x29\xd5\x04\x76\x31\x7e\x2a\xd7\x04\xd2\x8b\x30\x52\xaa\x99\xcb\x11\xec\x02\x27\xaf\x04\xd2\xab\x2b\x52\x5e\x99\x84\x90\xcb\xe1\x8c\x33\x84\x0c\x94\x56\x15\xd9\xa8\xc5\x22\xe2\x2e\x2c\x89\xcc\xe5\xe0\x4b\x65\x36\x61\xe1\xbf\x79\x8b\xd9\xc5\x7c\x14\xc3\xdb\x0a\xfc\x3e\xa9\xb0\x7f\x49\x17\x1b\x42\x06\x32\xb0\xee\xd2\x10\x72\x9e\x76\x81\xb3\x5c\x7a\x08\x84\x67\xd6\x52\x7a\x98\xa7\x73\xc5\x6e\x37\x78\x0b\xcc\xc0\x88\x4a\xf9\x21\xb0\x8b\xf1\x52\x09\x22\x30\xa5\x3a\x29\x41\x04\x76\x31\x65\xd6\xf7\xe4\x7b\xd5\xd8\xac\x29\x41\x4c\x0f\x9d\x7a\x81\x48\xca\x06\x81\xf4\x06\x94\x94\x0d\x02\xd3\xc4\xbf\x94\x0c\x02\xf1\xbe\x53\x32\x08\xec\x87\xd1\x2a\xd9\x20\x90\xe1\x88\x37\xea\x0b\xec\x62\x3e\x4d\x7d\x70\xec\x74\x39\xbe\xe5\x8c\xc0\x2e\xe6\x4f\xed\xbe\x8b\xee\x53\x1f\x5e\xd4\x03\x94\xa2\x83\x34\xe5\x91\x40\x78\x61\x5e\xca\x23\x81\x5d\x0c\xed\x4a\x24\xf3\x72\x86\x5a\x0f\xf5\x61\x0a\xf1\xa1\x01\x26\xd3\x03\xd2\x5b\x40\x52\xa6\x07\x84\xc9\x69\x29\xd1\x03\xa6\x24\x28\x25\x7a\xc0\x9c\xee\xfd\x12\x3d\x60\x3f\x1f\x15\xc9\xf4\x80\x34\xa0\x97\x32\xbd\xbc\xed\xe4\xe1\xd3\x6c\xc1\xcd\xea\x37\xfd\xa5\x1d\xba\x61\x7a\xa5\x4d\xca\xeb\xf2\x63\x87\xe2\x32\x4d\x59\x1c\x90\x5e\xba\x92\xb2\xb8\x94\xc5\x39\xb9\x65\x71\x40\xab\x6e\x76\x06\x8c\x53\x62\xa7\x65\x28\xb1\x03\xf6\xf3\x69\xba\xcc\x0e\xc8\x70\xa8\x49\xec\xf2\xe3\x60\x9e\x3e\xcd\x46\x6d\x98\xaf\xd5\x2a\x4d\x03\x76\x31\xeb\x61\x3b\x3f\x84\xc1\xdd\xd8\xa4\x69\x29\x4d\xc3\xcb\x98\xd2\x34\x60\xff\x12\x75\x7c\xde\xb6\x3b\xf7\x10\xc9\xd3\x80\x5d\x0c\x45\xca\xd3\x80\x36\xb5\x3d\xe5\x69\xc0\x2e\x46\xdd\x0c\x19\x03\xcd\x04\x94\x34\x64\x0c\xa4\x47\x7b\x53\x36\x07\xa4\x37\xb8\xa4\x6c\x0e\xc8\xb0\x07\x64\x73\x40\x29\x87\xb6\xad\x74\x0e\xc8\x78\x5f\xe9\x48\xd8\xb0\x0e\xdb\x29\x9d\x03\xd2\x2b\x43\x52\x3a\x97\x0f\x46\x83\x43\x48\x36\x97\x8f\xda\x78\x6b\xa6\x36\x1e\xb4\x31\xdb\xef\xd8\xad\x0d\x07\x27\x6c\xaf\x1c\x0e\x01\xd9\x5e\x4a\xed\xb4\xfa\xa5\x76\xc0\x2e\xa6\x4c\x35\x70\xd0\x35\x6c\x9f\x91\x5e\x60\x1d\x0e\x6b\x23\xbd\x40\xc6\xf0\xf9\x6a\xe1\xeb\xbc\x74\x92\xc8\xf6\x80\x96\x5a\x03\xb2\x3d\x20\x63\x29\xb2\x7d\x04\x6c\xdf\x0c\x04\xbf\x06\x2b\x6c\xce\x87\xa8\x28\x62\xf0\xf3\xfc\x2e\xd9\xeb\xb0\xb8\x37\xbf\xaf\xcb\xe2\x80\x99\xac\xd1\x5d\x16\x07\xec\x62\xfe\x74\x2a\xa3\xd3\x96\xc5\x96\xa2\xc5\xb1\x8f\x86\xe8\x54\xe4\x39\x45\xac\xdc\x6e\x88\x15\xc8\x40\x69\xdd\x10\x2b\xb0\xf8\x50\x60\xfa\xd9\x6a\xa1\x98\x96\xee\x57\xab\x85\x18\xb0\x8a\x2e\xff\xeb\x30\xbb\x22\x83\xed\x32\x3b\x60\x7a\x04\xbc\xcb\xec\xba\x5f\x87\x7f\xab\x66\xa8\x14\x58\x4e\xdf\x6e\xa8\x14\x18\xde\x3b\xd2\x0d\x95\x02\x71\x54\xdf\x69\x33\xa1\x89\xa5\xb0\xe0\xfb\xa1\x6c\xa1\x9a\x74\xdd\xa5\x89\xc0\xd2\x63\xd4\x0d\x9e\x02\xfb\x97\xbe\xc0\x76\x16\xfb\xd3\x9a\xd9\xce\xc2\x78\xc5\x7d\xd2\xe5\x97\x9d\xb8\x68\xf1\x88\x5e\x37\x2e\xda\x25\x93\xc4\x0d\xba\x64\x12\x48\x3e\x5d\x97\x5d\x32\xd9\x21\x93\xa5\x90\x5a\xd4\x25\x93\x40\x7a\xa1\x51\x97\x4c\x02\xe5\xbd\x74\xa1\x1b\x19\x05\xa6\x6b\x7b\x97\x5f\xf6\xf7\xdc\x29\x6b\x52\x97\x4c\x02\x69\x86\x45\x97\x4c\x02\x99\x0e\x2b\xb9\x24\xb0\x5c\x8d\xbb\x5c\x12\x98\x1d\x8b\xa9\xcb\x25\x81\xe5\x5e\xdd\xe5\x92\xdd\x28\xa8\x6d\x92\x4b\x02\x85\x2b\xe0\xb3\x4b\x25\x81\x5d\x31\x1f\xa6\x36\x1a\xac\x8b\x45\xa4\x1b\x05\x05\x16\xdf\x42\xcd\x6e\x14\x14\x68\x7c\x59\x35\xbb\x84\x13\xd8\x0f\xa3\x49\x32\x4e\x60\x69\x1e\x74\x03\xa3\x40\xfe\xfa\x4b\xf5\xd3\x1c\x1b\xd5\xaa\x39\x36\x08\x8c\x6a\x6c\x74\xa9\x6a\xe7\xd8\x69\x29\x18\x64\x5d\x12\x0a\x14\xdd\xcc\x5d\x12\xda\x25\xa1\xc5\x11\x2f\x09\x05\x96\x37\x82\x75\x49\x28\x5f\x7e\xde\xc5\x50\xb7\xa1\x46\x20\xbd\xbd\xc2\x0f\x3f\x0b\x69\x2a\x49\x37\xff\x19\x88\x82\x35\xd3\xe5\x88\x3d\x55\x24\x36\x6b\x97\xea\x01\xe9\x06\xd0\x65\x7a\x3d\x1d\x56\x90\xf2\x2e\xaf\x03\x32\xa1\x20\xdd\x58\x22\x90\xe6\x29\x75\x63\x89\x40\xa6\x33\xd6\x58\x62\x97\x10\x7a\xb0\xbd\x4b\x08\x81\xf4\x58\x78\x97\x10\x02\x4b\xc3\xa5\xcb\x07\x7b\xba\xf4\x61\xb2\x76\xb3\x91\x81\xa5\xe1\xe2\xf7\xad\x85\x5d\x8c\x7a\x48\x08\x81\xf4\xba\xae\x6e\xc8\xb1\xcb\x11\x8b\x6b\x9f\x1c\x11\x48\x6f\xd8\xea\x72\x44\x60\x69\x92\x74\x39\x22\xb0\xbc\xf1\xa7\xcb\x11\x81\xfd\x30\x65\xaa\x83\x4b\x92\x0e\x17\x4d\x23\x8e\xdd\x8f\x19\x3a\x7b\xe4\x85\x40\x18\x10\xec\xf2\x42\x20\xbd\x7b\xab\x4b\x0b\x81\xa6\x7b\xb6\x4b\x0b\x7b\x77\x58\xa5\xc5\xec\xcf\x0d\x4b\xeb\xa0\x9b\x6e\x0c\xec\x62\xbc\xc0\x20\x27\x90\xde\xd6\xd2\x0d\x72\x02\x8b\x6f\xf1\x66\x37\xc8\x09\xec\x5f\xd2\x51\x46\x39\x81\x69\xfa\x56\x97\x64\x76\xaf\x44\x2a\x90\xa8\x6e\x94\x13\x28\xfa\xfa\xbb\x51\x4e\x60\x17\xa3\xf3\x24\xa3\xc0\x98\xeb\x77\x1c\xd4\xea\x72\x55\x60\x99\xe3\xd6\x4d\x47\xee\xd2\x57\x2f\x8e\xed\xd2\xd7\x3e\x1c\x4f\xea\x41\x75\x49\x42\xf9\x06\x56\x76\x49\x28\xb0\xb4\xa1\xbb\x24\xb4\x93\x67\x5c\xf8\x6c\x55\x76\xc9\x24\x90\xa6\x66\x74\xe3\x96\x40\xa6\x5b\x8c\xf4\x12\x98\x1e\x98\xef\xd2\xcb\x3e\x1d\xea\xef\x0b\xec\xc9\xe9\x4e\x41\xd5\x8c\x5b\x02\xbb\x18\xea\x32\x6e\x09\x14\xa3\xc9\x5d\x32\x09\x34\x93\x6a\xba\x64\xb2\x2f\x77\x0a\x87\xa2\x11\x49\x20\xbd\xd1\xac\x4b\x1c\x81\x5d\x8c\x31\x20\x73\x04\x96\xa6\x59\x37\x22\xd9\x97\xdb\x82\xbb\x98\xcc\x11\x98\x5e\x3f\xdc\x65\x8e\xfd\xf4\xa5\x6e\xa6\x06\x11\x81\xa6\xf3\xba\x1b\x44\xec\xa7\xe3\x02\xe3\xac\x1b\x31\x04\x96\x4c\xa9\x4b\x09\xbb\x9f\x4e\x28\xee\x89\x72\x42\x60\x1a\x79\xe8\x86\x0c\xbb\xc4\xae\x38\x9b\x24\x76\xc0\x32\x35\xa3\x4b\xec\x80\x4c\x77\x70\x23\x7f\xfd\xb2\xba\x18\x51\x5d\x16\x07\x2c\xbe\x25\x9c\x5d\x16\x07\xcc\x6e\x35\x24\x71\xc0\xde\x4c\x69\x95\x2c\x0e\x58\x5a\xcc\x5d\x12\x07\x34\x6f\x3e\xeb\x92\xb8\xce\x3d\x41\xa5\xba\x14\x4a\xc5\x80\xfa\xb6\x53\x26\xd6\xfd\x9c\x42\x75\x95\x36\x58\x07\x2c\x19\x44\x37\x5a\x07\x2c\xd9\x42\x37\x5a\x07\xcc\x8e\x1b\xa7\x1b\xad\xeb\x44\xe6\x8a\x37\x2a\x74\x09\x1b\x30\x8d\x61\x77\x09\x5b\x27\x9d\xb7\x54\xd7\x77\xe9\x19\xb0\x4c\x74\xef\xb2\x33\x60\x99\x2d\xd7\x65\x67\x40\xf5\x46\x85\x6e\x3a\x6f\x97\xb0\x79\x57\x7c\x97\xb0\x01\xcb\xa0\x5e\x37\x34\xd7\x65\x67\x1e\x53\xe8\xb2\x33\x60\xbe\x2f\x90\x9d\x75\xbf\x05\x58\x9d\x68\x72\x31\x20\xbd\x71\xa9\xcb\xc5\x3a\x11\xb5\x52\xed\x64\x89\x17\x90\x5e\xc6\xd7\x0d\x99\x75\xb9\x58\x7d\x65\x36\xe1\xe3\x51\x2a\x5f\x6a\x13\x36\xb4\x77\x26\x4b\xc5\x80\xfd\x4b\x8b\xbd\x4d\x60\x3f\x75\x45\x93\x8b\x01\x55\xef\x5d\x97\x8a\x01\xe1\xd1\xd6\x2e\x15\x03\xa2\xba\x14\xc9\xc4\x80\x4c\x1f\x2f\x13\x03\xda\x70\xa4\x49\xc4\x80\xf2\x5e\x14\xdd\x65\x62\x40\x31\xe8\xd2\x65\x62\x9d\x1b\x84\x4a\xd5\x08\x91\x2a\x01\x99\xaf\xc8\x36\x3d\xb6\x09\x77\x73\x97\x3e\x01\xd1\x70\x52\x74\x83\x61\xfd\x71\x44\x12\x50\xe9\xf2\x23\xa0\x86\x4b\x80\xe9\xb2\x40\x31\xf1\xa4\xcb\x98\xfa\xd7\xea\x6a\xd2\x48\x99\x80\xe6\xd1\xbb\x2e\x63\x02\x32\x6d\x94\x8c\xa9\x73\xc1\x6b\xe1\x53\x3d\xd9\x4d\x7b\x05\xd2\x1b\x0c\xbb\x61\x34\xa0\x78\x29\x79\x37\x8c\xd6\x65\x51\x7c\xaa\x27\xbb\x2c\xaa\x7b\xc7\x8f\x2b\xa2\x2c\x0a\x68\xef\xd4\x96\x45\x01\x29\xd7\x1a\x92\xa8\x41\x3a\x6b\xf1\xaa\x9e\x61\x3a\xeb\xf0\x0b\xfb\x69\xb1\x50\xc4\x80\xc4\xcd\x3a\x0c\x8f\x0d\x89\x95\xf7\x06\x0c\x89\x15\x10\xde\x4e\x36\x24\x56\xc0\x92\xac\x0e\x79\x15\xd0\xf8\x94\x5a\x0e\x79\x15\x90\x5e\x4f\x3f\xe4\x55\x40\x7a\x1c\x7d\x98\xcd\x3a\xfc\xaa\x02\x76\xf2\x90\x69\x01\xbb\x16\xca\x3e\xca\x3e\xdc\x24\xec\x2f\x51\xc6\xe0\x76\xd7\x52\x31\x03\x87\x21\x33\x60\xf2\xe5\xca\x1c\x66\xa5\x02\x93\x8f\xcd\xe5\x90\x6a\x0d\x79\x55\xcd\xdf\x11\xb6\x1e\xd2\x2e\x60\xe6\xfb\x60\xb5\x50\x5c\x7f\x52\x99\x6a\xd8\x30\xf3\x7d\x99\x6a\x28\xae\x2c\x18\x54\x43\x92\x05\xa4\xa7\x7b\x86\x24\x6b\x70\x47\x6c\x31\x99\x67\xc8\xa8\x80\xd6\xb1\xa8\x86\x8c\x6a\xc8\xa8\xf8\x58\x4e\x0e\x19\x15\xd0\xcc\x34\x1d\x32\xaa\x51\xad\x1b\x36\xc2\x90\x2b\x01\xd1\xe0\x15\x43\xaa\x04\xa4\xc7\x86\x87\x54\x09\x48\x4f\x25\x0e\x43\x71\x43\xf6\x54\xd9\xec\x86\xec\x09\xc8\xc3\xce\x95\x3d\x01\xc5\x94\xc0\x21\x7b\x1a\x95\x78\x2e\x33\x69\x48\x95\x86\x37\xf4\xb0\x5a\x0e\xa9\xd2\x68\x6f\x9b\x68\x80\xc4\x08\xc8\x83\xd9\x3b\xe4\x45\xa3\x39\xbb\xb0\x41\x86\x5c\x06\xc8\xa3\xf9\x34\x1b\x00\x97\x31\x89\x77\x48\x65\x80\xd4\x6b\x3f\xa4\x32\xc3\x10\x1b\x1f\xfb\xc9\x61\x88\x0d\xa8\xfa\x6f\x87\xec\x06\xd8\xc5\x68\xba\xf4\x06\x08\xef\x3a\x1a\xb2\x1b\x60\x17\xa3\x05\xd2\x1b\x20\xf5\xdb\x0f\x43\x6c\x23\x5c\xef\xd9\x51\x86\x91\x32\xa0\x1a\x6a\x1e\x26\x6f\x8e\x70\xbd\x67\xe7\x1c\x46\xca\x80\xd2\xab\xc5\x6c\x95\xfc\x89\xef\x54\xe5\x90\x3f\x01\x79\xbc\xc5\xec\x16\x6e\xc9\xc9\xb7\x94\x0d\x0d\x3e\xaf\x6f\x7f\xca\x9f\x80\x62\xb4\x75\x18\x63\x1b\x7e\xad\x8f\xc5\x66\x18\x63\x03\xaa\x89\x58\xc3\x0c\xcf\x21\xa3\xaa\xec\xe9\x43\x46\x05\x54\xb3\x32\x86\x8c\x6a\xa4\x6d\x72\x02\xcb\x9f\x80\x2a\xff\x1b\xa6\x62\x02\x2d\x97\x2f\xb0\x49\xe9\x48\x43\xb5\x32\x2a\x60\xbd\x85\x6c\x51\xfa\xbd\x28\xab\x6f\x8b\xe0\x58\xde\x7c\x33\xa4\x58\x40\x78\x61\xd4\x90\x62\x01\xed\x70\x75\x93\x61\x0d\xe9\x94\x8e\xd4\x21\x9d\x02\xaa\xb1\xdc\x21\x9d\x02\x76\x31\x14\x2b\x9f\x02\x9a\x9f\xbd\x18\xf2\xa9\x21\x9f\xaa\xaf\x4c\x65\x6c\xc8\xe3\x7d\x9a\x03\xb9\x33\x90\xdf\x7a\xa8\x9e\x0d\xed\x9d\x89\xf2\x29\x20\x0f\x17\x76\xf9\x14\xb0\x9f\xef\xc3\xd4\x0f\x71\x36\x43\x29\xc3\x38\xdb\x90\x63\x55\xd7\x12\x39\x16\xd0\x0c\x46\x0f\x39\xd6\x18\x4e\x45\x4c\xcc\x21\x7b\x02\xd2\x33\xf7\x43\xf2\x34\x64\x4a\x8d\x5d\x7e\xc8\x94\x80\xf4\x68\xf1\x90\x29\x0d\x4f\x66\xba\xe2\x48\x94\x86\x1c\x87\x8f\xfe\xe4\x90\xe3\x00\x69\x80\x68\x18\xa2\x03\xd2\xd0\xd2\x90\xf6\x0c\x52\x38\xdf\xcb\xf2\x86\x51\x35\xa0\x98\xf3\x3b\x8c\xaa\x01\xd5\x78\xd6\x30\xaa\x06\x54\xaf\x71\x1a\x12\x21\x20\x8d\x70\x0d\x89\x10\x90\x87\x13\x51\x22\x34\xa6\x95\x2d\x16\xb3\xb2\x7c\x8e\xde\xec\x85\x21\x11\x02\xd2\x28\xd2\x90\x08\x8d\x65\x65\xb1\x9f\x86\x81\x30\xa0\xea\x77\x19\x32\x1c\x20\x0f\xd7\x7c\x19\xce\x58\xbe\x13\x9b\x70\x78\x22\x12\x28\x5e\x06\x3a\x0c\x70\x0d\xae\xaf\x79\x63\x63\xc3\x38\x15\x90\xef\x1e\xef\x51\x47\x20\x0f\x8c\x94\xe1\x49\x47\xa0\x78\x3c\x74\xc8\x79\x80\x68\xce\x1e\x39\x0f\x90\xde\x8a\x32\x4c\x9c\x1c\xd2\x20\x0f\xda\x0e\x69\x10\x50\xe5\xfc\x43\x1a\x04\xe4\xe1\x36\x20\x0b\x02\xf6\x2f\xd1\x90\x34\x08\x48\xe3\xda\xc3\x60\x19\xb0\x8b\x59\x0f\x9b\x4e\xb4\x2c\xc6\xef\x20\xd6\xc3\x58\x1a\x50\xde\xab\xf3\x86\xc1\xb4\xe1\x6d\x39\xb8\x5b\x86\x94\x0b\xa8\x26\x93\x0d\x29\xd7\xb8\xec\x34\xb7\x2b\x03\x67\x40\x1a\xfa\x1b\x52\x2e\x60\x17\x43\x83\x72\x2e\x20\x0f\x22\xb2\x43\xce\x35\x48\xa3\xfc\x75\x70\xca\xa6\x80\xd4\x1b\x37\x8c\x88\x8d\xdb\x97\x3a\xa7\xe5\x44\x40\x19\x2e\xa9\x72\x22\x40\x56\x3a\x8c\x6a\x8d\x5b\x6d\xd9\x45\xb2\x18\xa0\x7a\x6f\xcd\x90\xc4\x0c\x4e\x20\xbe\x17\xcf\x0d\xc3\x4e\xc0\xaf\x36\x84\x61\x27\x20\xfd\x6c\xd5\x30\x9d\x70\x7c\xac\x99\xfb\xa1\xc4\x06\x48\x1d\x9d\xc3\xb0\xd3\x90\xeb\x78\x45\xc9\x90\xeb\x00\xed\x55\x87\x5c\x07\x48\xef\xb5\x1c\x86\x9d\xc6\x47\x0d\xbd\x4f\x53\x43\x1f\x35\xe4\x3b\xd5\xd0\x87\x91\xf2\x3e\xdf\x91\x42\xc2\xe0\x81\xa3\x64\xc8\x7e\x86\x54\xc7\x9b\x6f\x86\x54\x07\x48\xbd\x22\x43\xaa\x33\x0c\x3b\xe9\x66\x1f\x72\x1d\x20\x4c\x9e\x18\x72\x9d\x61\xd8\xc9\x29\x2d\xd7\x01\x96\x19\x4f\x43\xae\x33\x9e\xb7\xe9\xe8\x56\x62\x03\xe4\xf1\x8a\x6c\xba\x8c\xc5\x33\x79\x43\xc6\x02\xa4\xc1\x95\x21\x63\x19\xc6\x80\x3c\x7a\x31\x8c\x01\x01\xa9\x9b\x61\x48\x62\x86\xf4\xc4\x33\x15\x43\x7a\x02\xa4\xb4\x77\x48\x4f\xc6\xb7\x5b\x8c\x37\x18\xbe\x01\xa6\xd7\x2e\x0f\xc3\x37\x40\x1a\xca\x1d\x32\x16\xa0\x9a\x75\x36\x64\x2c\x40\x7d\xf5\x2d\x63\x19\x32\x16\x2f\x7e\x1b\x32\x16\x20\x75\x53\x0f\x19\xcb\x30\xc8\xa3\x71\x3a\xe5\x27\x40\xea\x75\x9c\x06\x79\x80\x52\x4c\xc6\x9f\x46\x79\x80\xe6\x75\xac\x53\x16\x33\x39\x81\x57\x4c\x48\x9f\x72\x16\x60\xaa\xf0\x29\x65\x01\x4a\x32\x33\xa6\x94\x05\x48\xcf\xc4\x4e\x29\xcb\xe4\xc2\xd1\x62\x76\xd0\x94\xa0\x00\x53\x36\x32\x25\x28\x40\xea\xbe\x9d\x12\x94\x29\x41\x31\x6f\x7d\x4a\x50\xa6\x77\x90\x0e\xdf\x49\xdb\x27\x17\x8e\x96\xe6\x4b\x4d\xf3\x03\x9a\xf1\x8a\x29\x67\x99\xe5\x6d\x14\x2d\x30\xf2\x03\x14\x79\xc4\x94\x81\x4c\x03\x3f\x6c\x1f\x53\x06\x32\xb9\xfa\xa6\x98\x45\x3e\xa5\x1b\x40\xea\x95\x9b\x5e\x7d\x33\x39\x10\x57\xe2\xfd\xa9\xd5\x2d\x38\xa5\x55\x6e\x79\xab\xcb\xf5\x5e\xef\x3b\xbf\x8a\xfc\xdc\x36\x7b\xee\x94\x81\x00\x69\x80\x68\x9a\x33\x38\xcd\x19\x6c\x96\xb2\x51\x5c\x2f\x5a\x0c\xa7\x4f\x49\x09\x50\xcc\xb8\x9b\x86\x79\x26\xc9\x80\xc5\x23\x29\x53\x06\x02\x54\x2f\x2e\x9a\x32\x90\xc9\xed\x9f\xc5\x2c\xe9\x69\x18\x06\x98\x9e\xdf\x9b\x72\x0b\x20\x8a\xed\x94\x5b\x00\xc3\xd3\xf9\xd3\x30\xcc\x34\xe6\x62\xd2\xfe\x94\x5b\x00\xc3\x3b\x30\xa6\x31\x17\xa0\x78\xe5\xff\x34\xe6\x32\xc3\x5f\xb2\x37\x4f\x73\xe4\x80\xd4\xab\x3e\xcd\x91\x9b\xda\xef\x66\x3d\x4e\xed\x77\x60\xea\xb3\x9d\xda\xef\xc0\x32\x9d\x6c\x6a\xbe\x03\xcd\x8b\xc6\xa7\xe6\x3b\xd0\xf3\xfd\xa1\x1d\x65\x8e\x9c\x99\x74\x53\xfb\x1d\x58\x5e\x81\x3b\xb5\xdf\x81\x5d\x8c\xda\x6a\xc0\x03\xed\x6d\x94\x06\x3c\xb0\xcc\x18\x9c\xa6\xcd\x4d\x83\x29\xa6\x0c\x4e\x83\x29\x40\xf3\xd4\xd1\x34\x98\x32\x35\xfd\xcd\x9b\x9b\x9a\xfe\xc0\xcc\x91\xbf\xbd\x5f\x4f\x99\x01\xd0\xcc\xee\x9b\xc6\x5a\xa6\x29\x74\xa6\xf7\x4d\x2d\x7c\xa0\x49\x33\xa6\x16\xfe\x34\x3c\xa2\x3f\x67\x6a\xbc\x03\xd3\x0b\xac\xa7\xe1\x91\xa9\x3d\xff\x8e\x3b\xed\x79\x60\x99\xc5\x38\xb5\xe7\x81\x34\xd2\x37\x35\xe7\x27\x37\xa8\xf8\x59\xf3\x9c\x9a\xe0\x40\xf3\xdc\xe5\xd4\x04\x07\xd2\xa8\xff\xd4\x02\x9f\xe6\xb0\x99\xe8\x32\x0d\x2f\x4c\xef\x9e\x54\xd1\xda\xcc\x73\x38\x81\xed\x70\x03\x03\xc0\xf4\xe0\xc9\x34\x30\x30\xcd\x4e\x33\x5f\x6a\x9a\x9d\x06\xa4\x89\x79\xd3\xec\xb4\x69\x60\xc0\x44\x94\x69\x60\x00\x48\xfd\xc3\xd3\xc0\x00\x90\x46\x90\xa7\x76\x34\xb0\x7f\x69\x31\xd5\x86\x21\x5d\xdf\x87\xa9\x35\x43\x0a\x26\xa2\x4c\x2d\x69\xa0\xfd\xfa\x4e\x5b\x35\x6d\x95\x6b\x90\xc9\x68\x40\xea\x0c\x9e\x26\xa3\x01\x63\xbe\xbf\x54\xb9\x9a\xcd\xa6\x5e\x4c\xcd\x66\xa0\x35\x7c\x14\x53\xb3\x19\xa8\x06\x13\xa7\x66\xf3\xd4\xe3\x6f\x76\xcd\xd4\xe3\x0f\xb4\xd2\x7c\x98\xef\x5c\x18\x0e\xd3\x5f\xbe\xef\x84\x46\x7b\xfd\xf5\xd4\xba\x06\xa6\xe7\x33\xa7\xe9\x63\xc0\x2e\x46\x0b\xcc\x1f\x03\x22\x5c\x82\x4c\x1f\x03\xe2\x9d\xd4\x9a\xe5\xd3\xb8\x80\x39\x07\x53\x8b\x18\xa8\x5e\x07\x35\x35\x88\x81\xe2\x07\x16\xa6\x06\xf1\x34\x54\x60\x40\x7a\x6a\xb7\x02\x63\x39\xd1\xb5\x5b\xa7\x71\x01\x43\xd9\x53\x23\x15\x18\x9e\x21\x99\xda\xa8\xf3\x7a\xb3\xf7\x79\xa9\x89\x56\xc0\x7c\x5b\xa0\x77\x1f\xc8\x03\x62\x31\xf5\xee\x03\xfb\x97\xb4\xca\x13\x3b\xc0\xf4\x1e\x80\x69\xee\xd5\xbc\x35\x9a\xb0\xa9\xa7\x1e\xff\x79\xbf\x07\xef\x10\xd9\xa1\xba\xf7\x8d\xeb\x4c\xdd\xfb\x40\xea\x81\x9e\xba\xf7\x81\x5d\x8c\x96\x9a\x90\x05\xcc\x4c\x9f\xa6\x26\xf5\xc8\xeb\xcf\x9e\x7a\xe4\x81\x34\x81\x74\x6a\xb8\x02\xdb\xa0\xe3\x69\x5a\xae\xc0\xec\xce\x0d\x0d\x57\x60\x17\xf3\x69\xd6\x8d\x8c\x29\xaf\x25\x99\x5a\xae\x53\xcb\xd5\x2f\xc9\xcc\xcf\x5b\x11\x3e\x70\xe5\x2e\xae\xe5\x0a\x4c\x3e\x51\x9f\x53\xcb\x15\x58\x7e\x67\x68\x6a\xb9\xce\x8f\xda\x75\x51\xd6\x4c\x05\xa6\x57\xbe\x4f\xad\x54\x60\x56\xdb\xae\x95\x0a\x2c\x09\xfc\xd4\x4a\x05\x4a\xf1\xbb\x2b\x53\x33\x15\x98\xcb\x9a\xe9\x92\x9f\x5a\xae\x7e\x51\x65\x6a\xb9\x02\x4d\xf7\xfb\xd4\x72\x9d\xcf\xb4\x18\x03\xd0\x1c\x27\x60\x78\xc2\x70\x9a\xe3\x34\xf5\xdc\xf3\x61\xe3\x9c\x7a\xee\x81\x66\x7a\xe1\xd4\x73\x0f\x34\xfd\xea\x53\x33\x18\xd8\xbf\xf4\xa5\xb6\x9d\xef\xb0\xe9\xea\x9a\x9a\xc1\xc0\x9c\x6e\xb2\x9a\xc1\x40\x6b\xaf\xc8\xb6\x7f\xed\xe3\x50\x66\x43\xbf\x1e\x79\x53\x64\x3b\xbf\xf0\xd8\x74\xdb\xd0\x73\x0f\x14\x0f\x99\x4c\x8d\xe5\xa9\x33\xff\xb5\x22\x35\x8d\x81\x78\x77\x71\x4d\x63\x60\x7a\x64\x65\x6a\x1a\x4f\x4d\x63\x73\x91\xa6\xa6\x31\x30\x25\xff\x53\xd3\x78\x6a\x1a\x3b\xe3\x97\xa6\xf1\xd2\x0e\x4e\x3c\x02\x4b\x3b\x18\xc8\x0e\x73\x5a\xda\xc1\x40\x29\xf9\xca\x42\x59\x90\x2c\x5b\x10\xa5\x22\xa7\x50\x57\x36\x94\x79\x83\xe2\x40\x34\x15\x59\xdf\xfe\x3b\x32\xcd\x96\xd6\x2e\x50\xbc\x9d\x61\x69\xed\x02\xfb\x29\x56\xfd\xab\x8c\x0b\x2d\x89\x31\x2e\x53\x9f\x56\x79\xab\xae\xcc\xaa\x17\xbe\xcb\x9f\x8a\xac\xfa\x86\xf6\xab\xa8\x2b\xea\x3f\x7f\x34\xf3\xa8\x96\x06\xf0\xd2\x00\xf6\x63\x24\x4b\x03\x18\x08\xc3\x71\x4b\x03\x18\x28\x9a\x55\xcb\xcc\xa7\xa5\x57\xde\x0f\x90\x2c\xbd\xf2\x40\x18\xfe\x5f\x9a\xc9\x4b\xaf\xbc\x86\xf8\xd2\x28\x06\x8a\xdf\xa9\x5c\xda\xc4\xab\xda\x6d\x8c\xc6\xa5\x05\x0c\xcc\xb7\x3f\x74\xd4\x2f\x8d\x62\xbf\x36\xb2\x34\x8a\x81\xec\x36\x54\xa3\x18\x48\x6f\xd9\x5e\xde\x12\xb1\x4c\x87\xf2\xd3\x22\xcb\x74\x28\xa0\xe8\x7b\x59\xba\xf8\x97\xe9\x50\x7e\x5a\x64\xe9\xe3\x07\x5a\x0f\x9f\xa6\x3e\x36\xb4\x5f\x4b\xa9\x0f\x7c\xfc\xde\xca\xbc\x74\xf1\x03\xfb\x61\x28\x57\x1f\xff\xf2\x66\xfe\xb7\xed\xf6\x3b\x17\x49\x9a\x1c\xb6\x34\xcd\x81\xe2\xc5\xdb\x4b\xd3\x1c\xd8\x0f\x0b\x64\x45\x99\x77\x33\xa2\x0d\x6d\xf3\xd5\x5e\x0d\xd1\x2d\xda\xe6\x40\xf3\xf0\xc4\xd2\x36\x5f\xed\x55\x07\x8d\x32\xfb\x09\x88\x82\x81\xba\x4c\x7e\x02\xaa\xdf\x48\x5d\x06\x0c\x80\x5a\x8a\xcf\x57\x1b\xcd\xd1\xe1\xf3\xd5\x86\xe7\x74\xd2\x81\x6b\xc4\x00\x48\xdd\xbd\xcb\x73\x3a\xcb\x20\x42\xbe\x2d\x50\x1d\x8d\x95\xdb\x41\x64\x10\x61\x99\x0f\x65\xf0\x6a\x19\x31\x00\x52\xaf\xf0\x32\x60\xb0\x0c\x18\xb0\x44\x2c\x03\x06\x4b\xc2\xe1\x57\x5b\x96\x84\x63\xf9\xa5\x3a\xbb\x5d\xc2\xb1\x8c\x2b\xe4\xf2\xa7\xaa\x83\x3b\x28\xe5\x81\xcb\xb8\x02\x50\xdf\x99\xe1\x99\x1c\xa0\x74\x67\x81\x4c\x05\xd8\x0f\xb3\x6a\xea\x83\x50\xc3\x3b\x22\xa5\x2a\x2b\xde\xb6\x2b\xb3\xed\xc4\x15\x24\x1c\x2b\xde\xb6\x6f\x7b\xa8\x3b\xdb\xe5\x25\x2b\x5f\x75\x28\x53\x1d\xf0\x92\x03\x1b\x6c\xc9\x4b\x96\x24\xc4\x3b\x5b\x96\x24\x64\xf9\x89\x67\xd7\x33\x49\x08\x90\xfa\xb5\x97\x67\x77\x80\x6a\x8e\xc8\x92\x96\x00\xcd\xef\xb0\x2d\x79\x07\x90\xed\x7d\xbc\xda\x30\x48\xd1\x0f\xab\xa1\x3a\x36\x64\x7d\x2b\xab\x36\xcc\xde\xf2\x1b\x36\xcb\xd0\x02\x50\x4c\xb3\x5d\x86\x16\x96\xf4\xc4\x0f\xb2\x2c\xe9\x09\xd0\x4c\x42\x59\xd2\x93\xc5\x15\xfd\xc5\xb4\xea\x25\x17\x01\x96\xab\x9a\x54\x64\x71\xe7\x63\xf1\xeb\x28\xcb\x98\x01\xb0\xf4\x6a\x2e\x63\x06\xc0\xf0\x1e\x88\x25\x61\x59\x9e\xcd\xf1\x06\xac\x25\x63\x01\xe6\x3b\x86\x64\x2c\x40\x79\x3f\xfd\xb3\x0c\x1a\x2c\x6f\xe8\x6f\xd6\xd6\xfe\x34\x40\xe0\xa7\x50\x96\x01\x02\xa0\x7a\x62\x7f\x19\x20\x00\xaa\x77\x09\x2c\xe9\xcf\x32\x66\xe0\x77\x49\x96\xfc\x07\xa8\xde\x9e\xb4\x8c\x19\x2c\xb3\xab\xba\xeb\xa6\x41\x03\xa0\x96\xf0\x97\xb6\x7d\x43\xf3\x93\x56\x4b\x96\xb4\xb8\x30\xa2\xf8\x45\x93\x65\xd0\x00\x28\x7e\xc9\x72\x49\x9c\x16\x37\xf4\x17\xbf\x68\xb2\xa4\x44\x40\x97\x03\x2f\x29\x11\xd0\x2a\x2e\xb5\x25\x23\x02\xba\x3e\x93\x25\x23\x02\x9a\x77\x0f\x2f\x09\x11\xb0\x9f\xaf\xcc\x76\x4e\xbe\x59\x65\xcd\x8c\x2d\x00\xc5\xab\xb5\x97\x49\x56\x40\x1d\x0e\x2b\x69\x13\xb0\x1f\xc6\xe0\x90\x37\x01\xad\x46\xfc\x8e\xdd\x5a\x5a\xb5\xfc\xfa\x9c\x81\xaf\x65\x84\x02\xe8\x32\xe0\x65\xa6\xd6\x92\x7d\x75\x1c\xfc\x4b\xf6\x05\x14\x0f\x28\x2f\xd9\x17\x50\x0b\x34\x62\xc9\xbe\x96\x57\x42\x7a\x63\xec\x32\x07\x0b\x88\x82\x25\xbd\xbc\x15\x02\xe8\x5e\x71\xbe\x3c\xe2\xb3\xe4\x6d\x9d\xf0\xde\x92\xb7\x01\xd5\xef\x86\x2c\x79\xdb\x5a\x6f\x0b\xd0\x83\x8c\x0c\x98\x5e\x03\xb4\xd6\xdb\x82\x87\x17\xf8\x4e\x07\xac\x39\x5e\x26\x9b\x2d\xe3\x1d\x40\xf7\x8c\xe1\x32\xde\x01\x74\xbf\x10\xb0\x8c\x77\x00\xcd\x3b\xd2\x97\xe1\x8e\x25\x95\xf3\x0a\x88\x25\x95\x03\x7e\xd5\xad\x54\x6e\x6d\xfa\xd6\x3d\xa0\xb7\x8c\x63\x00\xdd\xcb\xf0\x96\x81\x8a\x25\xbb\xeb\x61\x31\x1b\x40\x54\xc2\x6b\x86\xd6\xf9\x36\xe0\xcb\x2f\x29\x65\x22\xd8\x32\x50\xe1\x37\x42\x96\x81\x0a\xa0\x4b\x3c\x97\x1c\x70\x79\x00\xc7\xdc\xaa\x65\xb8\x01\xa8\x7e\xd9\x62\x79\x00\x67\xc9\x0b\xfd\x36\xc7\x92\x17\x02\x4d\xa7\xea\x92\x17\x2e\x49\xe0\x6b\xa9\x48\x02\x81\xee\xfd\x8f\x4b\x12\xb8\x6e\x87\x82\x6b\xb4\x54\x0e\xa8\xe6\x3a\x2e\x99\xdc\xf2\x92\x45\xbf\xa5\xbf\x4c\xcb\x02\xba\x89\xdb\xcb\x80\x06\xd0\x3c\xe5\xbe\x0c\x68\xac\xdb\xd5\xd7\x8d\xde\x50\x05\x50\xbd\x7a\x75\xc9\x01\x81\x32\xad\x9a\x1c\x10\xe8\x9e\xfc\x5c\x52\x40\x20\x64\x50\x4b\x0a\x08\x34\x53\x48\x96\x0c\x70\x99\xa7\xf5\x6e\x93\xe6\x69\x01\xfd\xc0\x89\xb8\x64\x80\x40\x37\xd8\xb6\x64\x80\xcb\xd4\x2d\x2f\x66\x5b\x52\x40\x20\x8a\xbb\xa4\x14\x70\x79\x8c\xc6\x5b\xc0\x96\xb9\x5b\x40\x7d\xed\x19\xe3\x19\x40\xf7\xc8\xe8\x92\x28\x2e\x0f\xbe\xbc\x86\x9b\xe4\x0e\xe8\x86\xd6\x96\xdc\x0e\x28\xa5\x6b\x7e\x49\xee\x80\xaa\xdf\x63\x79\xf2\x65\x79\xcc\x45\x4a\xbc\x3c\xe6\x02\x44\x79\x5f\x60\xab\x1e\xab\xab\xf9\x25\xb9\x03\xaa\x01\x8d\x25\xb9\x5b\x32\x28\xbf\x81\xb6\x64\x50\x40\xd7\x6d\xb5\x64\x50\xcb\x5b\x05\x4c\x19\x5b\x52\x28\x20\x4c\x8c\x5b\xde\x2a\xb0\xb8\x2f\xa0\xbc\xcb\xa3\xc9\x4f\x40\x38\x83\x4e\x19\x14\xb0\x8b\x75\x64\x45\x19\xb7\x12\x33\x72\x4f\x49\xd5\x69\x8e\x94\xdf\x95\x38\x65\x55\x40\x1b\x55\x51\x28\x32\x74\xac\x28\x15\x75\x5a\x50\x10\x0d\x45\x83\x84\xc8\x8a\x68\x2a\x72\x2c\x04\xa2\xa5\xc8\xa6\x5b\x8b\x53\xd1\x65\x2d\x6c\xc0\xad\xec\xa6\x98\x22\x14\x79\x1a\x48\xf0\x9c\xc6\x69\x20\x01\xe8\x26\xe0\x9c\x06\x12\x80\x5d\x8c\x97\x9a\xfd\x04\x74\xf3\x68\x4e\xd9\xd6\x69\xde\x92\xb7\x74\x9f\xe6\x2d\x01\xd5\xfb\x5e\x4f\x79\xd4\x29\x43\x1a\x8c\xf0\x53\x86\x04\x54\x59\xd9\x59\xde\xba\xd9\x2d\xd5\x8a\x7c\x95\x71\x6b\x8d\x2d\x95\x21\x9d\x7e\x81\x8c\xe9\x7e\x1a\x35\x38\x4d\x65\x32\xb7\xfa\x94\x21\x01\xdd\x9c\x87\x53\x82\x04\xec\x62\x74\xa8\x0c\x09\x78\x99\xc9\x29\x43\x3a\xa5\x3e\x6f\xef\x49\x7d\x80\xea\x3d\xd9\xa7\xd4\xe7\x94\x87\x78\x2c\xf9\x94\x87\x00\x61\x32\xc3\x29\x0f\x01\xfa\xf1\x96\xb2\x6a\x52\x13\x6f\xd8\x3d\xa5\x26\x40\x37\x7f\xea\x94\x9a\x00\xbb\x18\x2d\x35\x6e\x00\xb4\xf2\x7b\x3e\x64\x7d\x4a\x66\x4e\x09\x88\xd7\x6d\x9f\x12\x10\xa0\x1f\xaf\x48\xe5\x9b\x9e\xe4\xbd\xf8\xa7\xe9\x49\x40\x37\x25\xea\x94\x6c\x00\xd3\x0c\xb4\x53\xb2\x71\x7a\x8e\xdf\x3b\xcc\x4f\xcf\xf1\x03\xed\x78\x1f\x66\x3d\x3c\xc7\xef\xa7\xd8\x4e\x39\x03\xd0\xbc\xa4\xfc\x94\x33\x00\xdd\x00\xd0\x29\x65\x38\x3d\x67\xef\xd7\x21\x4e\x6d\x75\xa0\x9b\xca\x73\x6a\xab\x9f\x9a\xdc\x7e\x22\xe1\xd4\xe4\x06\xaa\xf9\x20\xa7\x26\xf7\xa9\x2d\xed\x05\x0e\xa7\xb6\x34\xd0\x4d\xb0\x3a\xb5\xa5\x4f\x73\x72\x5c\xbc\x4f\x2d\x67\x60\x78\xd1\xcb\x69\x4e\x0e\xd0\x4d\x4b\x3b\x4d\xc9\x39\x3d\xe8\x3e\x86\x2f\xb0\x1e\x1c\x74\xf7\xe8\xf8\xd9\xdf\x7a\xdc\x16\xa3\x13\xb4\x9c\x81\xe5\x15\xaf\xa7\x86\xf3\xe9\x81\x03\xaf\x55\x3b\x35\x89\x81\x30\x6d\xf5\xd4\x24\x06\xba\x49\x3f\xa7\x16\x31\xd0\x3c\x96\x70\x6a\x11\x03\xdd\x5c\x98\x53\x83\xf8\x1c\xd6\x96\x05\xf8\xd4\xfc\x05\xfa\xab\x35\x13\x6b\xce\xe1\xdc\x84\xc6\x9e\x06\x09\x80\x78\x67\x98\x31\x82\x53\xbb\xef\x9d\x27\xda\x7d\xa7\x9f\x1d\xc6\x85\x75\x6a\xf7\x9d\x8b\x97\x7a\x15\xfd\xa9\x5d\x06\x54\x2f\x10\x3c\xf5\xa7\x03\xfd\x1d\x45\xba\xd3\x4f\x0f\x50\x4f\x6c\x98\xd3\x34\x11\x60\x99\xbc\x7d\x6a\x49\x9d\x1e\xa0\x36\x31\xf6\xd4\x05\x7e\x6a\x4a\x11\x62\x3a\x35\xa5\x4e\xad\x1f\xef\xab\x3e\xb5\x7e\x4e\xad\x1f\xa2\x32\xa7\xd6\x0f\xd0\xbc\x05\xf4\xd4\x03\x7e\x7a\xbe\x79\x3a\x00\x4d\xd3\x00\x7a\x92\x83\x70\x9a\x19\x7f\x9a\xb9\xe1\x77\x58\x4e\x33\x37\x80\x6e\x3e\xcc\xa9\x29\x75\x7a\x22\xd9\xeb\xa4\x4f\x3d\xe5\xc0\x34\x19\xeb\xd4\x46\x3a\xb5\x91\x9c\x68\xda\x48\xa7\x8e\x72\xaf\x80\x3e\x75\x94\x03\xd5\x8f\x63\x9f\x3a\xca\x81\x26\xb5\x3d\x4d\x03\x39\x3d\x7e\xec\x87\x75\x4e\x13\xdc\x81\xea\x09\xd9\x53\x4b\xea\x34\x9b\x7d\x3a\xf9\xb4\x9b\x80\xe6\x47\xfb\x4e\xb3\xd9\x4f\x33\x3c\xbc\x6b\xe8\xd4\x48\x3a\x35\x92\x9c\x2e\x1a\x49\xa7\x19\x1e\x7e\xe4\xe6\xd4\x4a\x02\xba\xdc\xf3\xd4\x4a\x3a\x3d\x59\xec\x65\xbb\xa7\x8e\x72\xa0\x9b\x0c\x74\x6a\x38\x01\xcb\x93\x02\xa7\x86\xd3\xa9\xe1\x84\x01\x7a\x6a\x38\x9d\x5a\x44\x5e\xc9\x7b\x6a\x11\x01\xdd\xfc\xa6\xf3\xf3\xb6\xe0\x6b\x31\x5a\xa0\x57\x1c\xe8\xa6\x63\x9d\x7a\xc5\x81\xe2\xa1\xfe\x53\xa7\xf8\xa9\xe1\xe4\xc7\xeb\x4f\x0d\xa7\x53\xc3\xc9\x41\xaf\xe1\x74\x3e\x6f\xa3\x78\xa9\x56\x12\xd0\x75\xa1\x9e\x9e\x0f\x3e\x75\x94\x7b\xe1\xc0\xa9\x95\x04\x54\x9d\xd6\xa7\x8e\xf2\x53\x47\xf9\x74\x7a\xeb\x28\x07\xba\xc9\x7a\xa7\xb6\xd4\xf9\x75\x7c\xb8\x8c\xe9\xdc\x06\xba\x09\x3a\xa7\x89\xea\xa7\xe7\x78\x3d\xa0\x70\x9a\xf6\x01\x2c\xbf\x67\x7f\xea\xdb\x3e\xb5\xaf\x8c\x66\x9d\xda\x57\xc0\xaa\xd0\x91\xf3\xfb\xbe\x54\x55\xb2\xa6\x5c\x1a\x53\xc0\xf2\xb6\xf8\x4b\x5b\xea\xf2\x50\xad\x37\xca\x5e\x1a\x3b\xc0\xf2\xbc\xc6\xa5\xb1\x73\x69\xec\x74\x45\xa7\x22\xeb\xb1\x7c\xda\xa5\xcc\x7a\x04\xa2\x5b\xd1\xfd\xf3\xc7\x34\x88\x7f\x69\xff\x5c\xe5\xfd\xe2\xc0\x6e\xe8\xa5\x37\x18\xe8\xa6\xa4\x5c\x7a\x83\x81\xae\x77\xe8\xd2\xae\xb9\x74\x10\x2f\x5b\xa0\x61\x03\x2c\xcf\x31\x5c\x3a\x88\x2f\x6e\xf9\x7d\x63\x3c\x97\xe6\x09\xb0\x6a\xf9\x1d\x91\xec\x4b\x8f\xef\x65\x32\x83\xb7\x47\x5e\xf5\x7d\xf2\xc9\x53\x14\xd9\x66\xbc\xa3\xef\x85\x8f\x97\xee\x51\x60\x6a\x5b\x5c\x5a\x25\xc0\x2e\x46\x9d\x34\x4b\x2e\xcd\x12\x36\xcb\x4b\xb3\xe4\xd2\x2c\xd1\x49\x73\x69\x96\x00\xe1\xd5\xba\x97\x66\xc9\xa5\xc7\x74\xb1\x68\x5e\x1a\x19\x40\x37\x99\xeb\xd2\x63\x0a\x4c\xaf\x4a\xb8\xf4\x98\x5e\xda\x18\xde\x97\x78\x69\x63\x5c\xda\x18\xcc\xba\x4b\x1b\xe3\x32\x1b\xd9\xcb\x7c\x2e\x7d\x84\xc0\xf2\x4b\x7c\x97\xe9\x0c\x57\xf8\x34\x16\x8e\x4b\x87\xe0\x65\xa2\x31\x8b\xc4\xa5\x3f\x10\xe8\x26\xdd\x5c\xfa\x03\x2f\xef\xf7\xf1\x12\xb4\xcb\x44\x05\xa0\x9b\x74\x73\xe9\x22\x04\xaa\xb9\x2e\x97\x66\x07\x10\xed\x7d\x98\xa3\xc7\xd4\x85\xc5\x74\xba\xf4\x11\x02\x21\xbf\xbd\xf4\x11\x02\xc5\xab\x9e\x2f\x7d\x84\x40\xcb\xb7\xb2\xf6\x71\xb2\x47\xb1\x92\x5c\xda\x2b\x40\x0c\xfb\xce\x3c\x66\x20\xfa\xdb\x70\x95\x91\x5c\xf4\x17\x96\x7a\x14\x3d\x56\xcc\xe7\x7f\x95\xf1\xe9\x15\x5b\xa9\xbb\xf1\xd2\x1e\x5a\xac\x41\x97\xf6\xd0\xa5\x3d\xc4\xda\x72\x69\x0f\x01\xf5\x58\x96\x52\x3f\xb8\x1b\xfd\xb8\xc6\xa5\xb7\x11\xe8\x92\xfd\x4b\xa3\x09\x08\x17\xa5\x4b\xa3\xe9\xd2\x03\xe9\x85\x70\x97\x1e\x48\xa0\x78\xdd\xf1\xa5\xd1\x04\x54\x99\xec\xa5\xd1\x04\x4c\xaf\xc5\xbf\x74\x40\x5e\x5e\x0e\x84\xc3\xed\xd2\x8c\xba\xba\x23\xc3\xe9\x6b\x3a\x32\xd0\xbc\xc9\xe4\xf2\xc4\x27\x90\x26\xaa\x5f\x9e\xf8\xbc\xf4\x49\x2e\x07\xb2\x3e\x49\xa0\x9b\xfa\x77\x69\x80\x5d\xe6\x64\x78\x55\xdd\xa5\x05\x06\x94\xee\x78\xd7\x02\xbb\x74\x40\x7a\x2f\xdd\xa5\xbd\x05\x4c\x59\xfc\xa5\x03\xf2\xd2\x04\xf3\xc2\xb9\x4b\x13\x0c\x68\xf5\x7d\x81\x6d\xd7\x29\xe9\xbd\xb0\x97\x4e\x49\xa0\xba\x13\x5f\x3a\x25\x2f\x2d\x35\x6f\x97\xbb\xb4\xd4\x80\xe9\x61\x81\x4b\x4b\x0d\x48\x6f\x08\xbd\x74\x5d\x02\xd5\xfb\x6f\x2f\x5d\x97\x97\xd9\x1c\x5e\x42\x77\xe9\xbb\x04\x9a\x51\xb7\x4b\xdf\x25\x90\x5e\x5a\x78\xe9\xbb\x04\xc2\xdb\xe5\x2e\x5d\x97\x97\xf7\x0f\xe9\x8c\xbe\xf4\x5d\x02\x61\x26\xf6\xa5\xef\x12\x68\x5e\x13\x73\xe9\xbb\x04\xde\x11\xaa\xe7\xf2\x32\x9f\x7a\x0d\xeb\xaf\x82\xc8\xa7\x36\xca\x7f\x99\x4f\x0d\xb4\xf1\x3e\x4b\x95\xcd\x57\x3f\x56\x56\xfd\xf0\x0d\xd2\xc5\x3e\x7f\x79\x8a\xf4\x5a\x6f\xcb\x79\xa9\x66\x2b\x90\xde\x66\x7a\xe9\xae\xbc\x3c\x45\xea\x15\xeb\x97\xa7\x48\x81\xf4\x1c\xfb\xa5\x07\x13\xd8\xc5\xe8\x14\x5d\x98\x40\x78\x79\xfd\xa5\x0b\x13\x28\x7a\xb7\x2e\x3d\x98\x40\xe4\xfb\x43\xdb\x4e\x5e\xb7\x27\xdb\x2f\x2d\x65\xa0\x0d\xac\xc0\x4b\x4b\x19\x08\x43\x17\x97\x6e\x4e\xe0\xbd\x72\xea\xd2\xcd\x09\xb4\x77\x8d\xd3\xcd\x79\x99\x0f\xbe\x1c\xc9\x26\x9e\x00\xef\x39\x86\xcb\x7c\x70\xa0\xf9\xdd\x84\xcb\x7c\x70\xa0\x7a\x39\xf5\xa5\x7f\x14\x08\x79\xda\xa5\x7f\x14\x68\x5e\x62\x78\xe9\x1f\x05\x72\xbd\xa5\xd4\x18\xe9\xe0\x3a\x95\x2f\xed\xfc\x4b\xa3\xde\x8f\x95\x5d\x1a\xf5\x40\x7b\xc7\xac\x46\x3d\x50\xfc\x48\xd4\xa5\x7f\xf4\x3a\xdf\x26\xd1\x25\x7a\x3e\x81\x30\xea\x7f\x79\xdb\xd1\x65\xf6\xcb\x5a\xbf\xe3\x93\xd6\x97\xd4\x00\x28\x7e\x7d\xf3\x92\x1a\x00\x51\xa0\x23\x97\xcc\x00\x68\x5e\xef\x78\xc9\x0c\x80\xea\x75\x16\x97\x67\x66\x2f\xc9\x82\x07\x02\x2e\xc9\x02\x90\xcb\x2e\x93\x2c\x00\xad\xba\xac\xeb\x77\xbd\xe4\x0f\xcb\xfe\x91\x3f\x00\xd5\x5b\x43\x2f\xf9\x03\x50\x8a\x0b\xb6\xfc\x01\x68\xe9\xf3\x3d\x6c\x7b\x99\x46\xee\x3d\x85\x97\xfc\x01\xa8\xaf\x25\x25\x7f\xb8\xbc\x1e\xc9\x94\x94\xcb\x44\x72\xa0\x16\xfc\x6a\x97\xe9\x38\x40\x78\x6c\xf4\xd2\x87\x0b\xd4\xa1\xce\xf4\xe1\x02\xd5\xe4\xa1\xcb\x6c\x9c\x4b\xe2\x61\xae\xc9\x25\xf1\x00\xca\x28\xbe\xd2\x66\xe2\xc3\xad\xa6\x2b\x5e\xfa\x70\x81\xaa\x93\xee\xd2\x87\x0b\xec\x62\x34\x4a\x7e\x02\x14\xef\x6f\xbf\xe4\x27\x40\x34\x6b\x2b\x3d\xb9\xc8\x06\xff\x75\x24\xca\x15\x80\x66\xf2\xc6\xa5\xf7\x14\xa8\x1e\x1b\xba\x4c\xb3\x01\xde\xf3\xce\x97\x84\x02\x28\x55\xc7\xf1\x25\xa3\x00\xca\xfb\x4b\x19\xc5\xe5\xc7\x4c\x71\x0c\x5e\x12\x0a\x60\xff\x92\x6a\xc8\x28\x80\xf4\xfa\xbc\x4b\x4f\x2c\x50\xd3\x55\x4b\x8e\x01\x4c\x6f\x9b\xb9\xe4\x18\xc0\xf4\xa2\xb9\x4b\xdf\x2c\x10\x81\x13\xf0\x92\x75\x00\xd3\xab\x96\x2e\x59\x07\xb0\x6b\x41\x0f\xc8\x3a\x80\x69\x52\xc9\x25\xeb\x00\x66\x71\xf7\xd2\x83\x0b\xec\x5f\xd2\x29\xa6\xe7\x00\xe9\x5d\xc4\x97\xe9\x39\x40\xa9\xc6\x01\x2e\xf3\x73\x80\xf4\xae\xe6\x4b\x0a\x73\xc1\x57\xaa\xae\xd3\x4b\xbe\x02\x0c\x3d\x03\x97\x7c\x05\x18\x7e\x77\xeb\x32\x17\x07\xd8\xbf\x54\x66\xdb\xbf\xda\x66\xbe\xc0\xb6\x7f\x4d\xa1\xb3\x94\x6d\xe7\x63\xac\xef\xb2\x2b\xf7\x01\x42\xfa\x76\xc9\x7d\x2e\xbf\x30\xe3\x1e\x61\xc2\xce\x85\xbb\xb9\xea\xcd\xbf\x74\x37\x03\xcd\xbc\xdb\x5b\x86\x04\xec\x62\x13\x59\x51\xc6\x35\x8e\x0c\xb4\x5b\x77\xf3\xed\xd7\x64\x74\xfe\xde\xfa\x96\x81\xe6\xb7\x06\x6f\x7d\xcb\xc0\x1e\x7c\x05\x59\x57\x66\x34\xbb\x22\x1a\x8a\x06\xe1\xdb\x40\x34\x15\x4d\x82\x61\x56\x6d\x29\xc2\x4f\x37\x7d\xe5\xa9\xe8\xe4\x6a\x99\x44\x74\x29\x62\x20\x4c\x7f\x78\x2b\x72\xf2\x34\x5f\xf9\x51\xf6\xe1\x82\x0b\x9b\xf9\x28\xe2\x36\xba\xee\xc3\xbe\x8a\xf8\x82\x17\x66\xe3\x6d\xbe\x0f\x50\xde\xcf\x5c\xde\xfa\xae\x81\xd6\x18\x1b\xb7\xbe\xeb\xbb\xa8\x20\x26\xd4\xad\xa3\x1a\x78\xb3\x1a\x6e\xd3\x82\x80\xee\x41\x87\x5b\x22\x08\xd4\xf2\x3e\x5f\xfd\x14\x87\x4b\xb3\x98\x0a\x82\x09\x9a\x3e\x77\x4b\x04\x6f\xbf\x12\xab\xdb\xf2\x96\x09\x02\xad\xbd\x22\x35\x84\x23\xbc\xba\x1d\xde\x3a\xc2\x81\xee\xb9\x8c\x5b\x47\x38\xf0\x1e\xd2\xbf\xcd\xa8\xbf\xab\xeb\x17\x0b\xf5\x2d\x49\x04\x52\x67\xf3\xad\xd3\x1b\x28\x55\x27\xd7\xad\xd7\x1b\x88\xda\xfd\xa5\x6d\x27\x2d\xc8\xcb\xe2\x6e\x9d\xde\xc0\xfe\x25\x2a\x32\x2d\x08\x08\x3f\xa2\x7d\x9b\x16\x74\x57\x5b\xc0\x56\x76\x9b\xdd\x03\xa4\xe7\xf0\x6e\x93\x7b\xee\x66\x57\xc1\x47\x6e\x59\x28\x50\xcd\x92\xb8\x25\xa1\x77\xb3\xba\x18\x5e\xb7\x8c\x13\xc8\x86\x3d\x7f\xcb\x38\xef\x66\xdd\x52\x99\x75\x6b\x1c\x1c\xff\x3d\xe7\xae\x6f\x09\x29\xd0\x3c\x69\x71\x4b\x48\x81\x30\x4f\xf1\x36\x85\xe7\xf6\xcc\x2f\xd1\xad\xdb\x14\x1e\x20\x3d\x24\x7a\xeb\x40\x07\xea\x7c\x4b\xbd\x4d\xfe\xf0\x31\x74\x06\x8a\x09\x3c\xb7\x17\xed\x0e\x1f\xef\xb0\xe6\x53\xb3\x7e\x84\xe3\x96\x01\x03\xd5\x6f\xf7\xdd\x32\x60\xa0\x19\x42\xbe\xf5\xb2\xdf\xde\xb3\xeb\x08\x36\xa5\xe7\x0e\x17\x41\xa7\xbd\xf9\x3b\x40\x6d\x6c\x73\xb7\xbe\xf8\x3b\x1c\xc2\xe9\x0b\xd4\x05\xdf\x90\xf5\xde\x8d\x5b\x5f\x3c\xd0\x8c\x47\xdf\xfa\xe2\x81\xea\x2d\x53\xb7\xbe\x78\xa0\x19\x0b\xbd\xa5\xe6\x77\xb8\xb2\x77\xdb\x64\xcb\x43\xb3\xd2\x57\xda\x72\x3e\x2b\xab\x8f\xfd\x96\xad\x03\xa9\xbd\x73\xcb\xd6\x81\xa6\x71\x7e\xcb\xd6\xef\xb4\x99\x2e\x82\xf2\x70\x20\x3c\x55\x70\xcb\xc3\x6f\x08\x76\x7d\x27\xb4\x0c\x1b\x48\xcd\xa2\x5b\x86\x7d\xe7\x5b\x5b\xaa\x26\x53\x06\x9a\xa9\xf3\xb7\x44\x19\x28\x55\x0a\x7c\xcb\x94\x81\xe6\xa7\x12\x6f\x13\x73\x80\x6a\xe8\xf9\x96\x3b\x03\xb3\xba\xc8\xca\x9d\x81\xf4\x62\xe9\x5b\xee\x0c\x0c\x3f\xf5\x7b\xcb\x9d\x81\xda\xad\x85\xdc\x19\x48\x2d\xb1\x5b\xee\x0c\x94\x37\x3a\x7a\x1b\x71\x00\x56\x75\x02\x4a\xa7\xef\xee\x3c\x55\x91\x32\x65\x60\x9a\xb4\x7d\xcb\x94\x81\x5d\xcc\x06\xa8\x8d\x8e\x97\xf9\x7d\x9a\xda\xe0\x78\xaf\x41\xc3\x5b\x3e\x0d\xec\x5f\xa2\x47\x09\x35\xd0\x1a\x3b\xf0\x2d\xa1\xbe\x87\xbd\xe2\xa6\x20\xdf\x05\xc2\x18\xe7\x2d\xdd\x05\xd2\x74\xdb\x5b\xba\x7b\x0f\x77\x4d\x9c\x88\xb7\x3c\x16\x88\x77\x6d\x90\xc7\x02\xa5\x9a\x16\x7e\x4b\x64\x81\x66\x6e\xf7\x2d\x91\x05\x9a\x9e\xed\x5b\x1e\x7b\x4f\x35\x69\x3d\xe4\x9e\x40\x9a\xa8\x7b\xcb\x3d\xef\xa9\x26\xed\x76\x69\x25\x90\xa6\x1a\xdf\xd2\x4a\x20\xd3\x05\xcf\x24\x98\x1b\x56\x59\x8b\x2b\x9e\xb4\x12\x48\x13\x86\x6f\x2f\xba\x05\x52\x53\xe3\x36\x64\x72\x73\xd1\x6d\xf5\x56\xc2\x5b\xa6\x09\x94\xb7\x93\x25\x9a\x40\x79\xcd\xf2\x5b\xa6\x09\xe4\xdb\x76\x89\x26\x50\xfc\x06\xfb\x2d\xd1\xbc\xb9\xfb\x36\x5d\x77\x65\x95\x40\xea\x8d\xba\x65\x95\xc0\x7b\xf8\xe8\x96\x55\x02\xe9\xe7\xc3\x6e\x59\xe5\x2d\x37\x2c\xf6\x8a\xe4\x10\x18\x0b\x6f\xcb\x2d\x39\x04\x32\x5d\x85\x24\x87\x40\x1a\x30\xb9\x25\x87\x37\x29\x30\xd5\xeb\x0c\x6f\x73\x60\x80\x78\x7b\x58\xda\x07\x94\xea\x0d\x84\xb7\xbc\x0f\xc8\xc4\x8d\x7b\xcb\xfb\x80\x34\x69\xf9\x3e\xdf\xda\xf2\xf9\xb6\x62\x29\xfb\xe9\xb2\x01\x2e\xb7\x52\x41\x20\x3d\x2b\x75\x1b\x18\x02\x76\x31\x1a\x25\xfd\x03\x42\x43\xfa\x96\xfe\x01\xbb\x18\x2d\x90\xff\x01\x69\x2a\xf6\x2d\xff\x03\x4a\xf5\x56\xc2\x5b\x02\x08\xa4\x1f\x08\xb9\xe5\x7f\x80\x8e\xac\x5b\xfa\x77\xc3\xf5\x6a\xa9\xca\x6c\xd4\xc5\xe0\xeb\x3e\xeb\x6d\xd4\x63\xb1\xff\x8b\xb1\x3b\xc9\x81\x15\x56\xb2\x30\x3c\xaf\x55\xd4\x12\x12\x77\x18\xa9\xf4\xf6\x92\x49\xb3\xff\x25\x94\x38\x9f\xef\x9b\xde\x3b\xfa\x25\x44\x26\xee\x30\x71\x1c\xe1\xb0\xa2\x79\x7d\x5e\x14\x99\x97\x4f\x62\x2f\x78\x6f\xcb\x33\xf9\x8f\x82\xde\x59\x63\xf4\xdf\x79\x1a\x90\xbe\x94\xc4\x5e\xd0\x85\x42\x9f\xc4\xde\x79\xea\x16\xb6\xa9\xb8\x9b\xa0\xf7\xfd\x1f\x34\xf5\x49\xe5\x9d\xb4\xda\x66\xdc\xd1\x6a\x41\x17\x59\x7b\xd2\x6a\xe7\x65\xa8\xc4\x69\x76\xf2\xf5\x04\x6d\xcd\x23\x62\x64\x4e\x92\x4b\x9e\xbe\x93\xe4\x3a\xa5\x7d\xf5\xf9\x26\xb9\x4e\xfa\x4a\xe6\xbb\x93\xbe\x0a\xba\x95\xae\x93\xbe\x0a\xba\xbd\x6b\x27\x7d\x75\x3a\x16\x34\x4b\xe4\x27\x7d\x15\xbc\x7f\xe6\x9a\x9e\x8c\x5f\x47\x5c\xf7\x49\x60\x05\xef\x6d\x8a\xb6\x8a\x9b\xd4\x77\x9b\x4b\x5a\xf0\xd6\xe3\x86\x0f\x39\x15\xd4\xcd\xd7\x9a\x9a\x3a\x49\x27\x41\xe7\x27\xe9\x14\x6c\xc3\x88\x22\x9d\xce\x47\x45\xbd\x27\xf6\x31\x04\xc7\x9a\xe2\xa8\xa9\xe0\xbd\x2d\x9d\x40\x4e\x05\xbb\x18\xcb\x93\x9c\x3a\x1f\x3d\xbe\x9e\xa0\xbc\x8f\x83\x14\xd3\x6c\x54\x51\xb0\x15\x49\xdf\x4e\xb2\x28\x98\x82\x1b\x4f\xfb\x18\xce\x47\x15\xd2\xbc\x17\x59\x74\x7d\x8c\x86\x7c\x89\x2f\x1a\xe8\xfa\x64\xe2\xc8\x37\xf6\x22\x81\x2e\x7a\x47\xd6\xb7\x8b\xde\x09\xba\xa3\xa9\x2e\x7a\x27\xd8\xca\xe1\x97\xd3\xa5\x55\xb6\x3d\xd7\x2e\xd7\xae\xff\xfc\xef\x61\x21\xe3\xa2\x51\x82\xea\x43\x76\xd1\x28\x17\xa5\x21\xe9\xdb\x45\x69\x04\x9b\xf3\x27\x2f\x4a\x23\x78\x6f\x73\x4d\xd1\xb6\xac\x8a\x2b\x2d\xa9\x11\xec\x8e\xd4\xbc\x28\x8d\x6b\xd3\xba\xf9\x6c\x5d\x34\x44\xd0\x05\xfe\x5f\x24\xc4\x45\x2f\xc8\x2a\x77\x11\x0c\x41\x37\xdc\x2e\xb1\x34\x17\x71\xc0\xea\xbb\x88\x83\xa0\x5b\x2f\xb8\x88\x83\xe0\xbd\x2d\x3f\xa5\x0e\x82\x6e\x8b\xc3\x45\x1c\x5c\x52\xa8\xc6\x0e\xb9\x88\x83\xe0\xfd\x65\x1a\x5c\xe0\xcc\xe5\x8c\x8e\xe1\x97\x5f\x97\xf2\x45\x75\x88\xf3\x45\x43\x04\xc7\x67\xfd\x52\x1f\x64\x83\x80\x10\xf0\xcb\x06\x81\xa0\xdb\x42\x71\xd9\x20\x70\x91\x10\xf2\xd1\x5d\x24\x44\xd0\xc5\xf4\x5c\x24\xc4\x95\x83\x18\x0b\x5f\xf1\xc5\x62\x0f\xba\x7d\x04\x17\x8b\x3d\xe8\xb6\x33\x5c\x2c\xf6\x2b\x11\xf1\x45\x9e\xb6\x4b\x2c\x4b\x30\xac\x48\x5c\x2c\xea\x2b\xe1\xef\x85\x68\xbb\xd8\xcf\x41\x17\xac\x7f\xb1\x9f\x83\x2e\xcc\xff\x62\x3f\x07\x75\x5b\x3f\x54\xb2\xb8\xb6\x8a\x55\xb3\x8b\xb1\x1c\x1c\x02\xad\x2f\xc6\xf2\xd5\x77\xb7\xb9\xa6\x1c\xf2\x8d\x66\xd1\xe6\x62\x05\x5f\x5d\x1a\xa3\xea\xdf\x94\xa3\x1b\x45\xa9\x01\xaf\x52\xb0\x2d\x73\xff\xe2\x56\x0a\x7a\x37\xfe\x18\xcb\x57\x9c\x37\x45\x66\xb2\x8b\xb5\x19\xf4\xee\xad\xe2\xbc\x09\xb6\x22\x5f\xe1\xc5\x7b\x73\xc9\xe1\x39\x5d\xf2\xd0\x6c\x78\xb5\x49\xe3\x62\x93\x5e\xc9\x2f\x53\x4a\x6c\xa4\x8b\x01\x1a\x74\x9b\x34\x2e\x06\xe8\xb5\xeb\xf8\xd8\x6a\x17\xbf\x4c\xd0\xed\x71\xb8\xb8\x65\x2e\xf6\x21\x5d\x76\xb1\x0f\x83\x83\xc1\x72\xb1\x0f\x83\x6e\x81\xe0\x62\x1f\x06\x5b\x91\x4b\xea\xe2\xe8\x08\xa6\x63\x03\xaf\xb9\x1e\x60\x7c\xe4\x2b\x71\xf1\x6a\x04\x87\x44\xd6\x17\xcb\xf2\x3a\xdc\x66\x6a\x63\x98\x05\x07\x2b\xef\x3a\xd6\x6d\x5a\x57\xc7\x70\x01\x5c\x8c\xb5\xc8\x87\x8b\xb1\x76\x1d\xfa\x4a\x83\xb0\xc3\x82\x6e\xb3\xc5\x65\x75\xff\x3a\x8c\x23\xc3\xcd\x52\x7e\x70\x48\x95\x7d\xb1\xd6\xae\xaf\xb2\xe9\x3f\x8b\xed\xc1\xf1\xda\xae\x7f\xfd\x6c\x5f\x62\x6e\xae\xdf\xfa\x97\xb4\x17\x8b\xe6\x62\xd1\xac\x4b\xeb\xb6\x99\x3f\x4e\x4b\x33\x69\x82\xad\xd4\xac\xe2\x5f\x96\xb4\x83\x29\xf1\xdc\x25\x92\x38\x78\x6f\xf3\x53\xe3\xe7\xc5\xdc\x87\x4b\xda\x21\x9b\x42\x4b\xf5\xc2\x32\x4c\x82\x6e\x9f\xc8\x65\x15\xfa\x62\xab\x38\xe1\xfb\x62\xab\x04\x73\xd3\x95\x8c\x91\xe0\xbd\x2d\x55\x38\xd7\x13\xae\xa4\xf0\x4b\xab\xca\x83\x72\xb1\x59\x04\x2a\x5e\x6c\x96\x60\x4a\xf8\x75\xb1\x59\x82\xad\x48\x5f\x73\x59\x60\x0e\x0e\xa9\xc5\x2f\xf1\x2f\xd7\xa5\x6c\x59\xc2\xba\x04\xf6\x06\xc3\xf7\xf8\x12\xc5\x72\x59\x9a\x96\x17\xe6\xb2\x34\x1d\x6c\xab\x56\xd7\x2a\xdb\x9d\x13\x1a\xd3\xbb\x96\xa6\x2f\x46\x91\x54\x7c\x17\xa3\x28\x68\x96\x09\x2e\x46\x51\xb0\x95\xea\x92\x1a\xdc\x5a\x57\xc7\x30\x8a\x2e\xc7\x98\x79\xaf\x19\x45\x41\xb3\xd3\xea\x62\x14\x05\x55\x5a\xe5\x8b\x4d\x14\x14\xc6\xce\xc5\x26\x0a\xb6\x5d\x4f\x31\x89\x2e\x8b\xce\x35\x6b\x4e\x17\x9b\x28\xa8\xd3\x50\xb0\xe8\x7c\x59\x61\xb6\x16\x78\xb1\x89\x82\xad\x78\xd3\xef\x55\xf5\xe4\x41\xd1\x40\xac\xa4\x60\x92\xd9\x17\x2b\x29\x28\xd2\xdf\x5f\x62\x64\x82\xb6\xf9\x5c\xd8\x12\x1a\x54\x9b\x99\x2f\xa6\x54\x70\xac\x9b\xb4\x4e\x36\x84\xae\x83\xa5\x2f\x66\x53\x50\x8f\x2c\x8b\x5e\x16\xa1\x2f\x26\x92\x0d\x3d\x17\x13\x29\x68\x82\xaa\x2e\x26\x52\xf0\x67\xf6\xb5\x96\x7c\xb1\x9a\xa8\x90\x9b\xd5\x74\x5b\x4c\x76\x92\xe6\x6d\x31\x39\x58\xe7\x30\xdc\x0c\xa9\xa0\x3a\x8e\xeb\x16\xba\x7c\xaf\x0d\xa1\xfe\xac\xb9\xa4\xcf\x63\xa7\xde\xd6\x97\x83\xea\xb0\x83\x9b\xb9\x15\xac\x4d\x4a\x37\x73\xeb\x66\x6e\x39\x75\xf2\x66\x6f\x05\xd5\xd1\x91\xb7\xf5\xe5\xfb\xe3\xcd\xee\xae\x9d\xae\xe5\xdc\x95\x55\x81\xcb\xa5\xf4\x66\x8d\x89\x74\xb3\xc1\x82\x6e\x97\xf5\x6d\x9d\x38\x68\x12\x26\xdc\x96\x89\x83\x6e\x5f\xf4\x6d\x99\xf8\x66\xbc\x49\x19\x74\x33\xde\x82\xde\xb3\xd8\x7b\x33\xde\x82\xe2\x53\x7f\xb3\xdd\x82\x3a\x94\x82\xed\x76\x5b\x26\x96\x32\xe8\x66\xbc\x05\xc5\xd6\xdd\xdb\x32\x71\xd0\xed\xf5\xbe\xad\x12\x07\x8d\x9d\x76\xb3\xf0\x6e\xe1\xd2\xcd\xff\x6b\x8c\xec\x27\xb5\xe0\x70\x5b\x24\x0e\x36\x27\x96\xdc\x6c\xbe\xbb\xe8\xa7\x48\xb2\x9b\x35\x17\x4c\x69\xad\x6f\xc6\x5c\xb0\x39\xd5\xf2\x66\xcc\x05\x4d\x7e\xf3\x9b\x31\x77\x17\x6f\x5d\x0c\xbc\x5b\xbc\x51\x30\x9d\x53\x71\x33\xdc\x82\xf7\x36\xcf\x54\xb4\x17\x55\x3c\xdc\x5d\x56\xd1\x72\x9a\xdd\xe6\x92\x9e\xb3\x46\xcc\x03\x7b\x5b\x23\x0e\xba\xf8\x8e\xdb\x1a\xf1\xbd\x52\xdd\xc7\xe0\xbd\x45\x2a\x05\x73\xe6\x1d\xbe\xd9\x7c\xb7\xd3\xbd\x65\x88\xbb\x05\x4b\x07\xbb\x08\xc7\xdb\xb2\x71\xd0\x6d\x56\xbf\xad\x0b\x07\xaf\xa5\x92\x4b\xfa\xc9\x22\xb0\x63\xa4\x6f\xab\xc0\x77\x95\x68\x33\x75\x67\x40\x06\x65\xd7\x51\x0c\xc8\xbb\x7a\x17\x63\xd0\xdc\x16\x78\x83\x39\x0d\x3e\x0b\xbc\xc1\x7b\x9b\x6b\x2a\xda\x12\x27\x9b\x2f\xff\x6d\x85\x37\x38\xac\x50\xdd\xf6\x6c\x06\xdd\x36\xfa\xdb\x9a\x6f\xb0\x8d\x7f\x39\xe0\xfa\xb6\x24\x7c\x37\xef\x5b\xa6\xe7\x9b\x19\x1a\x2c\xc7\xdb\xcd\x0c\xbd\xbb\x57\x24\x56\xd1\x2d\x28\xea\x96\x09\x3f\xd3\xff\x6d\x31\x36\x28\xd3\x2b\x62\x31\x36\xd8\xd6\x31\xf0\xb7\xa0\xa8\xe0\x70\x54\xc8\xcd\x58\x0d\x8e\xcf\xfa\x7f\x4d\xcf\x58\x95\x88\xe8\x66\xac\xde\x8c\xd5\xe6\x36\xa5\xb5\x8c\x2b\x70\xe1\x66\x99\x06\xdd\x06\xb3\xdb\x32\x6e\x30\x67\xa6\xde\xdb\x2a\x6e\xf0\xfe\x32\xc5\xb5\x8c\x1b\x74\x49\x07\x6e\xcb\xb8\xc1\xca\x50\x77\x5b\xc6\x0d\xf6\x7d\xfd\x99\xd6\x18\xab\xb4\xe9\x47\x56\x6e\xb0\xdb\x16\x70\xb3\x72\x83\xc3\xd7\xe4\x66\xe5\xde\x7b\x46\x80\xac\x06\xb7\xc5\xd2\x60\xdb\x3d\x53\xf0\x51\x50\xb9\x9f\x6e\x46\x6e\x50\xb8\xad\x6f\x46\x6e\xf0\xfe\x59\x06\xa7\xe0\xa3\x60\xb3\x14\x73\x0b\xff\x0e\xb6\xd2\xf4\xb1\x78\xa4\xdb\xd9\x67\x91\xfe\xb7\xf5\xd9\x60\x17\xd0\x76\x5b\x9f\x0d\x06\x87\xf7\x6d\x7d\x36\x28\x76\xa6\xdd\x52\x2d\x06\x8d\xef\xe4\xde\x57\x35\xaf\x38\x9f\xfc\x97\x6e\xda\xb3\xad\x39\x2b\x94\xb7\x75\xdd\x60\x9b\x31\xe5\x6f\xeb\xba\x41\x77\x74\xc5\xcd\x6c\xbf\x19\xe4\xdc\xe2\x37\x83\x3c\x68\x76\x82\xde\x0c\xf2\xe0\xbd\x2d\xc5\x10\x7a\x14\x54\x12\xff\x66\xa3\x07\x9b\xfc\x2d\x37\x1b\xfd\xce\x16\xc9\xe2\xac\xcb\x5b\xa0\x51\xb0\xf2\x0d\xde\xe2\x8c\x82\x3e\x4c\x0e\x16\x84\xef\x04\x15\x15\xc7\x5f\xde\x82\x8a\x82\xc6\x4f\x7b\x5b\xfd\x0d\xca\x30\x42\xad\xfe\x06\x5d\xd8\xd8\x6d\xf5\x37\xd8\x8a\x33\x54\x6f\xa1\x47\x41\x91\xb5\xea\xb6\x20\x1c\x34\xaa\xee\xb6\x20\x1c\x6c\x4e\x5f\xba\xad\x07\x07\xdd\x6e\xad\x9b\xec\x08\xb6\xa6\xfc\x64\xc7\x4d\x76\x2c\x43\x80\xec\xb8\xd7\xde\x49\x25\xd3\x18\x89\x3c\xda\xd7\x9f\x69\x8c\xac\x11\x17\x81\x03\xb7\x45\xe2\x60\x13\x92\x77\x13\x27\xc1\x7b\x9b\x87\x1a\x08\x47\x0e\xec\x5b\xa5\xd5\x66\x11\x2c\xc3\x9b\x4e\xaf\x04\x7d\x98\x16\xe9\x95\xfb\xdb\xfc\x99\xdb\x54\x3d\x21\x44\xfc\xd1\xb7\x10\xa2\x60\x5b\x53\x15\x55\x13\xb4\x61\xc2\x21\x5b\x6e\x4b\xc9\x56\x45\x6f\x4b\xc9\xc1\xb4\x92\x76\x5b\x4a\x0e\xb6\xb5\x23\xfd\xb6\x96\x1c\xd4\xb1\xbb\x4d\x9d\x2c\x12\xf3\x4c\xdd\x16\x89\x83\x6e\xef\xda\x6d\x91\xf8\xb6\x48\x2c\x0b\xec\x6d\x91\x38\xe8\x4c\xe6\xdb\x22\x71\x50\xe5\x52\xba\x29\xaa\xa0\x54\xcf\xa4\xa8\x82\x26\x79\xf4\x4d\x51\x05\xdd\xae\xba\x9b\xa0\xba\x7f\x7a\xc0\xf4\xf5\x5b\xa5\xbd\x73\x5b\x86\xa8\x35\xe2\xfb\x34\x12\xbc\x8b\xb6\x05\x04\x85\x4f\xe1\xb6\x2d\x20\x28\x6b\x0c\x11\x4f\xf7\x65\x62\x65\x17\x09\xbb\x09\xba\xc4\xbf\x37\x55\x14\xf4\xe1\x9b\x46\x15\x05\x45\x56\xad\x9b\x28\xba\x2f\x2f\x31\x1b\xc2\x0e\x80\xa0\x58\xd6\xb9\xed\x00\xb8\x09\x25\xe9\xac\xee\x6b\x95\x23\xaf\xa7\x3e\x26\x94\xee\xcb\xeb\xc9\x96\x21\x81\x82\xe9\x80\xc4\x5b\x74\x4e\xb0\xcf\xac\x4b\xdd\x44\x51\x70\xd8\x7a\x7c\x13\x45\xc1\x7e\x64\xc5\xfc\x26\x8a\x82\xdd\x79\xb8\xb7\xb5\xe3\xdb\x12\xb0\xcc\x55\x37\xb9\x13\xf4\x71\xfc\x43\x1c\xf8\x4d\x0d\xdd\x56\x88\xc5\xe0\xdc\xe4\x50\xd0\xc7\xe1\xf9\xaa\x7c\x7b\x09\xcd\x22\xe4\x50\x30\xcb\xf0\x4b\xe3\xf5\x31\x38\xb5\x20\x09\x13\x4c\x0b\xeb\x37\x09\x73\x4b\x01\x99\x18\xa5\x9b\x86\xb9\xad\x06\x2f\xcb\xcf\x6a\x70\xd0\x96\x71\x42\xd6\x04\x95\x0b\xf3\x26\x6b\xee\x47\x0d\x8c\x7e\x91\x34\x41\x21\xb3\x6f\x6b\xc6\xf7\x63\x74\xae\x7f\x33\x3a\x73\xd0\x97\xa0\xc3\x9b\xd4\xb9\xed\xd2\x8c\x3a\x7c\x28\x9d\x60\x49\x87\x87\xd0\x09\xba\xe0\xa0\x87\xd0\x09\x9a\xf8\xf1\x87\xd0\x79\xe4\xb1\xcf\x97\xef\x21\x74\x82\xe2\x68\x88\x87\xce\x79\x28\x18\xe1\x53\x0f\x05\x13\xf4\x92\x11\xf6\x50\x30\xc1\x7b\xdb\xcc\xb5\xaf\x6b\x39\x4d\x79\xba\xf4\x73\xe9\x1d\x9b\x64\xc2\x43\xe7\x3c\x44\x4d\x5b\x75\x7a\x5c\x4b\x74\x50\xcc\xf1\x87\xa8\x79\x04\xbf\x48\xe0\xf5\x50\x35\x41\x97\x33\xf4\xa1\x6a\x82\xf7\xb6\x54\xc1\xc6\xcd\x60\xdb\x15\x8d\xd0\x09\xb6\x95\x41\xf8\xa1\x74\x82\x66\x31\xf1\xa1\x74\x82\xf7\xb6\x54\x9e\xd4\x09\x36\xc3\xef\xa1\x74\x82\x15\x4e\xff\x50\x3a\x8f\x95\x6b\x89\xc4\x1e\xba\xe6\x11\xfd\xb2\x2b\xae\xca\x67\xcb\x67\x71\x06\xd1\x63\x99\x3a\xd8\x9a\x5a\xd9\xf2\x19\x34\xc9\xf3\x1e\x7b\x2a\x1e\x5a\x47\x38\xd6\x43\xeb\x04\xc5\x8e\xba\x87\xd6\x09\xaa\x1c\x67\x0f\xad\x13\xac\xc8\xe1\x87\xd6\x79\xca\x8a\xe8\x49\x3d\x2d\x5c\x07\x5d\xf8\xe1\x63\xe1\x3a\xe8\x22\x1e\x1f\x8a\xe8\x21\x7f\x9c\x4b\xf4\x90\x3f\xc1\xb0\x13\xfc\x21\x7f\x82\xf7\x36\x3f\x55\x4f\x07\x49\xe7\x8b\xf8\xd8\xbb\xf1\x90\x44\x4e\xd5\x79\x48\xa2\xa0\x96\xc8\x9f\x87\x24\x7a\x48\x22\x69\xcf\x1e\x92\x28\x38\xac\x74\x3c\x24\x51\xf0\xde\x96\x26\xb2\x0e\x1e\xcc\xb9\x2e\x69\x22\xfa\xc7\x71\x22\x0f\x01\x14\x6c\x4c\xa8\x47\x60\x4c\x50\xa5\x58\x7f\x48\xa2\xe0\xfd\xa5\x87\xea\x51\x5b\x4b\x0d\x53\x32\xe9\xa1\x89\x9c\x6f\xf1\xd0\x44\xc1\xb0\x0e\xfe\xd0\x44\x4f\x64\x4c\x71\xfe\xc4\x43\xa8\x04\x87\x5d\x76\x8f\xb5\xf7\x47\x38\x0b\xc5\xff\x58\x7c\x0f\x76\x6b\x05\x8f\x70\x96\x87\xc4\xa1\xb5\x1f\x12\x27\x98\xd6\xc6\x1e\x12\xe7\x11\xbc\xd2\xd7\x13\x74\xd6\x8b\xc9\x2f\xf0\x08\x5e\x79\x2c\xc8\x53\x7f\x8f\x05\xf9\x47\xf4\x4a\x0c\x93\xc7\x82\x7c\xb0\x15\x29\xd3\x1e\xe1\x2b\xc1\x36\xb3\x02\xf2\xd8\x6b\x12\x6c\x42\x73\x1f\xb2\xea\x11\xe4\x42\x98\x3e\x74\x55\x50\xec\x22\x79\xe8\xaa\xa0\x1f\xa6\x14\xb2\x2a\xe8\x47\x3e\xf5\x0f\x59\x15\x74\xe7\xae\x3f\x64\x55\x70\xb0\xb0\x1f\x91\x30\x8f\xf5\x7e\x52\xf2\xb1\xde\x1f\xb4\xcd\x60\xa3\xaa\x1e\x7a\x89\xac\x7a\xe8\xa5\xa0\xcb\x03\xf3\xd0\x4b\x41\x15\x6a\xf3\xd0\x4b\xc1\xfb\xcb\x94\x96\x60\x0a\xaa\x1c\x03\x8f\xb8\x97\xe0\xbd\xcd\x35\xf5\xcc\xa6\x11\x89\x41\x1e\x81\x2f\x0f\xbf\x83\xd0\x89\x87\xdf\xe1\xb1\xd5\xd6\x54\xc1\xef\xf0\x48\xb4\x69\x42\x21\xc8\x1e\xb1\x30\xa2\x3a\x1e\x8a\xec\xb1\xfb\xd6\x0b\x4f\x91\x05\x45\x98\xd7\x33\x56\xdd\x75\x7b\xff\x87\x74\x66\x0f\xb7\x44\xd0\x98\x4f\x8f\xb0\x98\xa0\x15\x0d\x48\xe9\x05\xef\x1f\xbb\xa6\xb9\x92\x1c\x5f\x92\xa2\x87\xd4\x7b\x76\xf3\xaf\x81\x4d\xc4\x05\x7d\x44\x59\x3f\x34\xdc\xb3\xaf\xa6\x49\x3b\x10\x71\xcf\x0a\xb2\x49\x17\x11\x71\xc1\x56\x84\x09\x3c\x54\x5c\xb0\x4e\x69\x79\xa8\xb8\x60\x93\xbc\xf7\xa1\xe2\x9e\x5d\x3b\xc4\x98\x78\x08\xb4\xa0\xda\xd6\xfb\x10\x68\x41\x5b\x1f\x15\x7e\x95\xa0\x4b\x83\xf4\xf0\xab\x3c\x64\x9c\xb0\x8f\x87\x8c\x0b\x8a\xa5\xf2\x87\x8c\x0b\x56\xd6\xdf\x87\x8a\x7b\xb8\x5a\x44\x26\x3c\x64\x5c\xd0\x25\x50\x7a\xc8\xb8\x60\x13\x33\xff\x08\xe2\x09\xfa\x58\x25\xd3\x1a\x11\x76\xc7\xa1\x4a\x1a\xe3\x45\x19\xbb\xc2\x6a\x8c\x44\xfa\x0c\xd3\xaa\x48\x9f\x67\xae\xc6\x48\x03\x11\x76\x41\xb3\xa8\xfc\x10\x76\xc1\x14\x4c\xfa\x10\x76\x41\x65\x99\x3e\x74\xdd\x23\xaa\x47\x8c\xc1\x43\xc5\x05\x5d\xb6\xea\x87\x8a\x7b\x78\x8f\xc4\x1d\x3c\x64\xdc\x43\xc6\x35\xff\xa6\xe6\x2f\x8a\x83\xcc\x1f\x2a\x2e\xe8\x23\x0b\x14\x0f\x15\xf7\x90\x6c\x1c\x02\x0f\xc9\x16\x74\x6b\xb7\x0f\xc9\xf6\x90\x6c\x3c\xbc\x0f\xc9\x16\xec\xf6\x29\x3f\x24\xdb\xc3\xc7\xc4\x37\xfc\xd0\x6c\xcf\xf2\x31\xe5\xa1\x34\x5b\xd0\xc4\x86\x3d\x22\x82\x9e\xaf\x99\xdc\x48\xa3\xc6\x82\x2e\x83\xd5\x23\xfc\x27\xd8\x8f\xe6\xcf\xd4\xe0\x45\xb3\xbb\xf6\x21\xd9\x1e\xfa\x8c\xeb\xf6\xa1\xcf\x82\x3e\xcc\x22\xf4\x59\x50\xed\x32\x7f\x64\xc5\x79\x68\xb1\x35\xdf\xd3\x62\x0f\x2d\xc6\xb8\xa0\xc5\x1e\xee\xad\xf5\xc9\x22\xc6\x82\x95\xb5\xf8\x21\xc6\x82\xf7\x36\x3f\x55\x83\x17\xfb\x34\xfa\xa8\xb1\x87\x2f\x8b\xcb\xf4\xe1\xcb\x0a\xba\xd0\xa4\x87\x2f\x2b\x58\x91\xe3\x0f\xcd\xf6\x9c\xa6\x0e\xa3\xc8\x5e\x8c\xa0\xda\x18\xf3\x88\xce\x09\xba\x03\x7f\x1e\x4e\xb0\x60\x1d\x6c\xfc\x70\x82\x05\xcd\x16\x85\xc7\x56\x8c\xe7\x5c\x15\x70\x9b\x0a\xe4\x58\xea\x65\x76\x13\x80\x4f\xb6\x67\x94\x35\x0f\xf1\x95\x05\x65\xcd\xbd\x5c\x65\x41\xe5\x41\x7a\xce\x55\x81\x75\x64\x80\x87\xea\x83\x9c\x19\xb0\xfb\x33\x9b\x38\x82\x21\xb4\xf2\xa1\x26\x83\x41\x5e\x3c\xd4\x64\xd0\xeb\xba\xa4\x31\x48\xc7\xf5\xb2\x93\x8e\x41\xdf\xcd\xad\xa4\x63\xd0\xd6\x07\xd7\xe6\xf1\xa0\xee\xdd\x9f\xa9\xf9\x95\xbc\x1f\xd5\x5d\x6a\xce\xeb\xb6\x5e\x29\x5e\xb7\xa0\x4b\x3d\xf1\xf0\xba\x3d\x76\x7f\xac\xd1\x47\x60\x06\x6d\x4d\xa3\x04\x66\xd0\xad\x95\x3c\x04\xe6\x23\x14\x69\x0d\x04\x72\x32\xe8\x52\xd1\x3c\xbc\x6e\xcf\x3d\xdc\x96\x7a\xf2\xb1\x05\x8d\xcb\xfa\x21\x3a\x1f\x12\x52\x9a\xb5\x87\x84\x0c\xfa\xbe\x8a\xe6\xfd\x79\xb1\x96\xbe\x1e\x0a\xf2\x11\x77\x34\xbc\xb3\x24\x64\xd0\x65\xeb\x7c\xf8\xd8\x82\x2e\x99\xce\xc3\xc7\xf6\x24\xec\xa8\x0c\x76\x2c\x8f\x5a\xf0\x9a\x50\xb9\xa4\xa2\x76\x71\x48\xd0\xf6\x50\x9a\x41\x99\x54\x19\xa1\xf9\xd8\xb2\x21\x8d\xeb\x43\x56\x06\x5d\xf6\xc8\xc7\x96\x8d\x47\x28\xd2\x28\xff\xb0\x0e\xfe\x50\x9d\x41\xb5\xd3\xed\x11\xa9\xf4\x70\xc3\x09\x4b\x7a\xb8\xe1\x82\xb5\xdb\xf3\xa1\x4d\x83\x2e\xe7\xcf\xf3\xac\x4a\x3b\x25\xe8\xf8\x9f\xff\x7b\x8d\xff\xff\xfc\xef\x82\x0d\x5d\xe3\x13\x6d\x0a\x35\x8b\x18\xaf\x95\xec\x52\xc9\xbe\xc5\x4f\x2e\x55\x97\x6a\xfe\xde\x0f\x9b\x4b\x46\x40\xcb\xa5\xee\x92\x51\x3d\x73\x69\x77\x49\x6f\x17\xa5\xf8\xba\x96\xde\x7e\x5b\x79\x7c\xa2\x43\xc7\x47\xcc\x53\xf2\xb3\x8d\x4f\xbc\x6b\xd0\xb3\xb9\x6a\x7c\x12\xf3\x04\xad\xad\x07\x3c\x2e\xe5\x4d\xdd\xf6\xf7\xd2\xa6\x96\x39\x3d\xad\x8c\x9a\xa2\x6d\xea\xf4\xa2\x64\x91\x64\x7c\x36\x75\xe2\x70\x4b\x66\xb7\xf1\xd9\x54\x2a\xe9\x5a\x73\x22\xef\xf8\x6c\x2a\xb5\x1c\x6e\x2e\x0d\x97\x56\x52\xca\x5c\x52\x4f\x7b\x30\x92\x4e\x69\x7c\xa2\x39\xa1\xef\x5b\x9a\x76\x53\x75\x32\x34\xc9\xde\xc6\x67\x53\xf7\x04\x50\xe5\x3c\xc2\xf1\x89\x0c\x05\x06\xe2\xf8\x6c\x5a\x63\xcb\x59\x57\xef\x7b\x39\x3e\x9b\xd6\xd8\xbc\xd1\x2d\x1d\x55\xd4\x3d\xdb\xfd\x73\xe8\xc0\xf8\x14\x3d\x5c\xf2\x46\x97\x14\xa3\x68\x0d\x62\x35\x99\xe3\xc6\xa7\xa8\x67\xc4\x6a\xd6\x9f\xc7\xa7\xa8\x67\xa2\xac\x92\x4d\x69\x7c\x8a\x7a\x96\x38\x8a\x8f\x94\x3f\x62\x15\x5a\xdc\xc9\xe3\x53\xd4\xbc\xa8\xb9\xbb\xd4\x3c\xee\xbb\xa9\xe2\x45\xc5\x4b\x2a\x6e\x9c\x15\x15\xa7\x4b\xb3\x22\x3d\x3e\x45\x0f\x47\x97\x6e\x1a\xa3\xaa\x65\x5d\xe5\xcf\x33\xab\xf2\xbf\xe8\xc9\x10\x35\x3e\x55\xf9\xb9\xcd\x72\x50\xd6\xf8\x54\x0f\x7d\xd1\xc6\xc8\x03\xaa\x87\x46\x22\x26\x91\xe7\xf8\x54\xad\x5d\x95\xa3\x7b\x80\x72\xd4\x8c\xb4\x92\x72\x34\xe5\x68\xe6\x95\x91\x2a\x34\xcd\xdd\xf2\x51\xd8\xf3\xcc\xa6\xb9\x93\xfe\x74\x2f\xf9\xb3\x66\xf0\xbd\xa8\xcd\x78\x6f\xc6\x5e\x53\xda\x91\xf7\xa2\x29\xed\x8b\xd2\x15\xa3\x29\x6d\xf3\xaa\x0c\xd7\x14\xb7\xf9\x2c\xfb\xa5\xc1\x41\x21\xae\x5a\x75\xc5\xed\x39\x24\xf2\x93\xa2\x75\xa5\xa5\x10\x93\x72\x6e\x7c\xba\xe2\x46\x21\xc6\xc5\x3c\x3e\x5d\x71\xc9\xc1\x98\xa2\xe3\xd3\x35\x78\x97\x1e\x3f\xe5\xe8\x1a\xdc\x9e\x87\xb1\xa7\x13\xba\xb1\xf0\x62\xfc\xb9\x64\x2c\x24\xab\xc0\x9f\x67\xaa\x28\xf1\x97\x7d\xe8\xe3\xd3\xd5\xea\xc5\xc8\x72\xf6\xf8\x74\xb5\x1a\xab\xb8\xa9\xd5\x50\xdc\x17\x25\x79\xd7\xc6\x67\x28\xee\x8b\x91\xa4\x76\xe3\x33\xb4\xee\x48\x6e\xd9\x9a\x67\x0e\x15\x18\x3e\x58\xe6\xbe\x61\x7c\x27\x7f\xd2\xaa\xe7\x30\xbe\x23\xf4\x8e\xe6\x97\xea\x14\x9d\x17\xd3\x6b\x7c\x86\x3a\x0d\x93\x9a\x82\xa9\x53\x74\x5e\xd7\x2b\x43\xe7\xe5\x88\xe8\x61\x2c\x0f\xb5\xcc\x96\x87\xdd\x9c\x3c\x56\x2d\x8d\xbe\xa9\xfc\x46\x5f\xb6\x3c\x24\xf4\x62\x7c\x76\xdd\x99\x14\x02\x9b\x49\x79\xd7\x9d\x74\x5c\xbc\x13\xe3\xb3\x6b\x8c\xe4\x30\xad\x5e\xd9\x5d\x63\xf0\xcf\x65\x6d\x7f\x7c\x76\x7d\x17\x6d\xd7\xbd\xff\xbb\xc6\xe0\x9f\x1b\xea\xb9\x6b\x8d\x3d\xaf\x76\x71\x9b\xaa\xef\xaa\x9e\x0e\xd8\x55\x7d\xf7\x6a\x2b\x86\xaa\xef\xd9\xa2\xa4\x65\x77\x55\xdf\x33\xc3\x57\x7f\xaf\xea\x76\x59\x8c\x23\x8d\xb6\xab\x7a\x76\x59\x94\x91\x5f\x4e\x55\x9f\xea\xa9\xd5\xa6\x7a\xce\x7c\xa3\x6a\x5a\x68\xaa\x67\x72\x98\x6e\x26\xe5\xa9\xd3\xa7\x21\x7a\xb8\x4d\x77\xbe\xa8\xb3\xff\x3d\x89\xd9\xf8\x4c\x55\xb6\x09\x63\x68\xd4\xa9\x82\x91\x66\xfb\x7a\x98\x0a\xe6\xd0\xe8\x43\x0f\x4d\x15\x4c\x46\xaa\x12\xd3\x72\x7c\x0e\x23\xf8\xc8\xfc\xe0\x43\x74\xa8\x8c\x1d\x17\xbb\xf9\xfe\x50\x9b\x17\x65\x0d\xe1\x43\x6d\xec\xb8\x88\x1d\x36\x3e\x87\x8e\x8c\x87\x6d\x5f\xb7\xe9\xc8\xe4\xb7\x2a\xbb\xef\xda\xa1\x0a\xd9\x5f\xb1\x9b\x81\x0e\xbd\x76\xa4\xd7\x6a\x46\xc5\xa1\x52\x02\xfb\x76\x1f\x94\x43\xad\x0e\xdd\x96\x21\x70\xac\x5a\xdd\x6e\xf3\x50\xdd\x76\x64\xc4\x7a\x6f\xbe\xba\xed\x9b\x73\x76\x47\x8a\xf1\x35\x62\x93\xc4\xd4\xc1\x5e\xe3\xf3\x55\xf9\x6f\x72\x7b\x68\xa2\xaf\xba\x7f\x55\xd4\xf4\xfe\x55\xd1\x6f\x8e\x6f\x35\x39\x7e\x55\x94\x84\x5b\x1f\xd3\xaf\x11\x9b\x03\x29\x92\x00\x67\x7c\xbe\x3a\x9c\x8f\x6d\x59\x0d\x5f\x95\x4f\x1a\xd3\x84\xcd\x8f\xcf\x57\xe5\x5f\xb4\x8f\x6f\xd6\x57\xdd\xbf\xea\x9e\x29\xe3\xab\xee\xdf\x55\x77\xb7\xa9\xfb\x8b\x32\xb5\xda\x4f\xdd\xed\xea\x58\x9f\xbb\x9f\xca\x67\x57\xc7\xae\x89\x7e\xc6\x42\x1c\x76\x1f\x5f\xb6\x9f\xe6\xf8\x19\x0b\x26\x92\x9f\xf6\xc8\xa9\x6c\xbb\x39\xfa\x67\x2c\xbc\x38\x36\xd6\xc0\x4f\x0b\xbd\x98\x95\x09\xf5\xd3\x42\x3f\x2d\xe4\x33\xf6\xd3\x42\xbf\x24\x21\xd6\xde\x3f\x2d\xf4\xd3\x42\xac\x86\x9f\x16\xfa\x65\x78\xac\x07\x68\xa1\x6c\xfe\x68\xeb\x92\x16\x12\xee\xb8\x97\x8c\xdc\x53\xd1\x5e\xd4\xcd\x37\xe0\x54\xb4\x33\xa3\xb4\xb9\xa4\x68\xa7\x51\xaa\x71\x4f\xa3\x34\x7e\xbd\xe2\x73\x7d\x2a\xc6\x29\xb7\x84\x5f\x2a\x06\x57\xdf\x7a\x83\x2e\x6d\x7b\x25\x62\xae\xbb\xa4\x6d\x2f\x45\xd3\xde\x97\xa2\xbd\xa8\xa3\xe5\x99\x97\xa2\x5d\x9a\xc8\x13\x2e\x4d\x94\xc3\xdb\xf6\x75\x9b\x26\xba\x14\x57\x1f\x5c\x8a\x9b\xd3\xdb\x76\xe6\xcb\xa5\xb8\x17\x2f\x03\x03\xf2\x5a\xe5\x4d\x2c\x19\xb3\xe1\xd2\x6c\x14\x1b\x8b\xec\x32\xb0\x78\x09\x77\x63\xe1\x32\xb0\xae\x2c\xd2\xfb\xf8\xdf\x06\xd6\x0b\xdb\x8b\xc7\xe7\x56\xf7\x3b\xdb\x9d\xbc\xee\xb7\xba\xdf\x5e\xa0\x96\x51\x7a\xab\x68\x14\x5b\x33\xe5\xdf\xfa\xe0\x8e\x3b\xd7\xf4\x7e\xab\xba\x04\x60\xbe\xcc\xb7\xaa\x2f\x0d\x97\x9a\xdf\x6a\x2e\x28\x72\x67\x6b\xdd\xaa\x1e\x37\xe0\xc7\x0b\x7a\xab\xf9\x6d\x92\x54\x0a\x35\x77\x50\x86\x17\xef\x56\xf3\x84\x49\x36\x03\xfe\x56\xf1\xec\x26\x99\xda\xe2\x51\xf1\xa8\xba\xee\x2b\xff\xa8\xf8\x8b\x59\x75\xf0\xa3\xe2\x2f\x8e\x4d\xf3\x3f\x5e\xa8\x84\x49\x1e\xec\xb1\xc7\xfb\x14\x1f\x63\x92\x41\x8e\xcf\x63\x64\xf0\x31\x66\x45\x71\x7c\x1e\x2d\xf6\x24\x0b\x88\x79\xe3\xd1\x62\xd9\xac\x5f\x76\x5f\xe6\x47\xfb\x3c\x49\x89\xa1\x4b\x1e\xed\x93\xdd\xfa\x59\x03\x1f\x9f\x47\xf3\x24\x53\xd9\x66\xb0\x3c\x9a\x47\xe8\x64\x24\xff\xd8\x88\xb6\xa0\xef\xb1\x19\x36\xa2\x6d\xb3\x07\x25\x5f\x9f\x8d\x68\xdb\xec\x37\xc9\x4a\xd2\xd8\x12\x00\x09\x83\x4d\xb5\xd1\x63\x1b\xf7\xe1\x9e\x17\x6a\x8b\xfb\x10\x5a\xdd\xfc\xdb\xe1\x52\x36\x22\x1f\x7e\xf9\x75\xc9\x97\x20\x9d\xbe\x91\x68\xc1\x48\x46\xa4\xb1\x91\x68\x41\x37\x0c\x36\x12\x2d\x68\x39\x40\x7b\x6c\x24\xda\xc6\xdf\xb7\xc7\x3a\xdd\x08\xad\xa0\x1b\xa0\x1b\xa1\xb5\xd9\xc6\x9e\xa4\x97\x63\x23\xa1\x82\x56\x8e\xed\xef\x1f\xeb\x8d\xc0\x0a\x76\x13\xef\x46\x60\x05\xc7\xb6\x9e\xa5\x2e\x5c\x7f\xbb\xca\x6c\x4a\x1e\x85\x65\xb4\x6e\x04\x56\xd0\xbd\xcd\x1b\x81\xb5\x15\x9f\xb0\x99\x07\x64\xe3\x3b\xf4\xbd\xbb\xd4\x5c\x6a\xd9\xfb\xe4\x92\x2a\xdb\xda\xb2\xcf\xf4\x2d\xd1\xb5\x11\x5d\x19\xe8\x1b\xd1\x15\x94\x9c\x19\x36\x36\xa2\x6b\x13\x0d\x99\x0d\xbb\x63\xa3\xa7\x36\x7a\x2a\xe3\x75\xa3\xa7\x36\xbb\x51\x12\xc4\x37\xb6\xaa\x1c\x35\xf1\xdd\x79\x47\x36\xda\x69\xb3\xa1\x7d\x3f\xf2\xd3\xea\xa1\xd9\xd0\x9e\x1d\x5d\x63\xab\x1e\x9a\x43\x21\xca\x7e\xb8\xa6\xbf\x5f\x1c\x9b\x26\x22\x94\x82\x56\x35\x11\xa1\xb4\x71\x92\x25\x78\x67\x6c\xcd\xbf\x25\x01\x6b\xa2\x84\xc7\xd6\x0c\x3b\x9b\x56\x7c\x37\xb7\xa6\xbf\xb3\x69\x65\x5f\xb7\xa9\x68\x4b\xd6\x2d\x45\xa3\x8a\x36\xd1\x82\xeb\x87\x3a\x94\x2b\x2d\x49\x3d\xc7\x46\x15\x05\xb5\xee\x7e\xa9\xb4\x39\xb3\xa1\xe4\xd0\x93\xb1\x51\x45\x41\x65\x59\x6c\x44\xd1\x46\x01\x25\xc2\x7b\x6c\x14\xd0\xb6\x02\x0d\xdd\xa6\xf7\x6c\x81\xc9\x8e\x8c\xb1\x75\x15\x7d\xb1\xaf\x41\x4c\x14\x05\xef\x6d\x69\x36\xaa\x28\xd8\xf7\x08\xc7\x8d\x2a\xda\xa8\xa2\x69\xe8\x52\x45\xdb\x52\x45\x7e\xa9\x56\xc9\xac\x56\x66\x51\x85\x55\xad\x27\xdd\x97\x7f\x1b\x3a\x81\x78\x4a\x98\xea\xd8\x88\xa7\xa0\x30\xe7\x37\xe2\x29\xd8\x0f\x23\x8b\x78\x0a\x8e\xa6\x93\x89\xa7\x8d\x78\x9a\xf9\xcc\x6f\xc4\x53\x20\xb9\xc6\xd8\x88\xa7\xa0\xe4\x04\xd5\xb1\x11\x4f\xc1\xfb\xcb\x34\x11\xf5\x14\x1c\x5b\x2c\xcf\x8d\x7a\xda\xa4\x56\x8b\x84\xd8\xa8\xa7\xcd\xee\xf0\x59\xdc\xa6\xee\x2f\x66\xd1\xb8\xa4\xd2\xc6\x4b\x96\x23\xc8\xc6\x46\x2b\x05\x75\x3f\x5c\xd2\xc9\xb4\x52\x92\xad\x8e\x8d\x56\x0a\x8e\x4d\x8f\xd2\x4a\xc1\x7b\x5b\xaa\xb0\xab\xfc\x9e\xa9\x2a\xb6\xc5\x46\x3e\x05\xb3\xa9\x14\xf9\xb4\x39\x23\x7a\xf7\xff\x9a\x63\xea\x82\x7c\x19\xb6\xa9\x0b\x66\x0e\xf6\xf7\xda\x92\x32\x9b\xc0\xbf\x1c\x03\x37\x36\x92\x23\xd8\x59\x20\xdb\xd4\x44\x51\x21\x9b\x91\x4b\x84\x6c\x53\x13\xe5\x43\xb6\x91\x1c\x41\xb3\x26\xb4\x4d\x4d\xc4\x67\x34\x4d\xd3\x87\x26\x7a\x31\x8b\x21\x79\x68\xa2\xf8\x8c\xaa\x89\x8d\x56\x09\x8e\xcd\xc4\x46\xab\x6c\xb4\xca\x54\x03\x5a\x25\xe8\xbb\x37\x88\x56\xd9\x88\x10\x12\x76\x23\x42\x82\xfd\xcf\x2f\x55\x8a\xe2\x60\x1c\x6d\x14\x47\x30\x12\x7c\x39\x36\x8a\x63\xfb\x7a\x68\x54\xe1\x46\x24\x04\xfb\xa1\x43\xbf\x1e\x6a\x2b\x51\x62\xbf\xc7\x46\x24\x04\x3d\xe9\x98\xc6\x46\x23\x04\xdb\x9c\xee\x32\x4c\xbf\x59\xb7\x50\xf7\xaf\xd2\x92\x0d\x49\x45\x33\x36\xb2\x21\x98\xd9\x67\x33\x36\xb2\x21\xe8\xeb\x1b\x4e\x36\x04\xef\x2f\x15\x6d\xd5\xc0\xcc\xe9\x36\xdd\xf2\x33\x3c\x22\x92\x37\x82\x20\x98\xc3\x50\x20\x08\xb6\x5f\x77\x5b\x5a\x92\xa9\x1f\xcc\xf5\x22\x33\xf5\x83\xbe\x6b\x48\x96\xfe\xf6\x5b\xe5\x48\x45\x7f\xca\x91\x9d\xd9\x87\xcf\xf3\x4f\x39\x4e\xe5\x88\x65\xb8\x9d\xca\x11\x3f\x4f\x37\xb1\x9d\xca\x71\x6a\xdc\xe9\x9a\x87\xe6\x1c\xbb\x4d\xc7\x9f\x1e\x7a\x26\xa4\x77\xff\x97\x2f\xf6\xa9\xed\x5f\xcc\xf5\xdd\x25\x04\x82\xc3\x6b\x4e\x07\x04\x63\xf8\x76\xd2\x01\xc1\x91\x9d\x0a\x63\x3b\xb5\x3c\x69\x90\xa4\xae\x63\x23\x0d\x36\x7e\x1b\x33\x1c\x69\x10\x94\xe6\xc3\x70\xa9\x9d\xbd\x51\x33\x2b\x05\xdb\x65\x84\x5d\x19\xd6\x8c\x2c\x02\x62\xbb\x34\xa9\x8f\x22\xcb\x3d\x38\xd6\xa0\x63\xb8\x07\x47\x33\xc3\x31\xdc\x37\xbb\x99\x8e\x68\xfc\xed\xf6\xd0\x3b\x87\x61\x47\x50\x6d\xb7\x67\xb2\xdc\x93\xe8\x75\x6c\x2c\xf7\xa0\x1c\x66\x5a\x96\xfb\x26\xc0\xef\xf0\x9a\x33\xdd\x83\x63\x33\x76\x98\xee\x1b\xb7\xc7\xe1\xab\xc8\x44\x0e\xf6\x9c\x9b\x3e\x36\x26\xf2\xc6\x15\x72\xf8\xf2\x30\x88\x83\xbe\x7b\xe3\xd8\xc3\xc1\xdc\x4c\xab\xec\xe1\x60\x32\x91\xb7\x47\x31\x1e\x39\x26\xd3\xde\xcf\x2a\xc6\xe1\xff\xfd\x99\x2e\x7e\x7c\x04\xd2\x90\x4c\xe4\x60\x13\x01\x37\x36\x36\x72\x30\x57\x27\x3f\x3a\x59\xb4\xde\x61\xf4\x3f\xfa\xe0\xc5\xb4\x3c\xb9\x3d\xfa\xe0\xc9\x56\xab\xbc\xe5\x85\x71\x1d\xcc\x6c\x6c\x1d\x85\x71\x5d\x58\xd2\xc7\xba\x36\x5c\x8b\x25\x9d\xf7\xa1\xb0\xa4\x83\x23\xf1\xb7\xa3\x30\xa4\x83\x8d\x6d\x5d\x18\xd2\x85\xff\x23\x39\x6c\x47\x61\x49\x07\x75\x56\xb7\xfd\x5c\x7a\xc7\x72\xce\x6b\x1e\x25\x71\x78\xd0\xb2\x43\x65\x14\xe6\x76\x50\x5b\x66\x87\xc2\xdc\x0e\x6a\x76\xb5\x8e\xc2\xdc\x2e\x4e\xa6\xcb\x50\x2e\xcc\xed\x22\x58\x2f\x3d\x57\x36\xb5\x4c\xa2\x2a\x7d\x5e\xf8\x48\x82\x52\x8a\x4b\xd5\xa5\xaa\xf8\xa9\x25\x1f\x49\x70\xe4\x2c\xef\x51\x98\xee\x85\xe9\x9e\x61\x50\x98\xee\x81\x14\x49\xa3\xf0\x91\x04\x23\xbb\x37\x46\xd9\xb4\xd8\x96\x2c\x6f\x4d\x59\xb5\xd8\xb6\x5a\x4c\x61\xb5\x58\x52\x57\x25\x0d\xed\x28\x8c\xfa\x60\x24\x7b\xd2\x28\x8c\xfa\xc2\x82\x4f\x3a\xdf\x51\x58\xf0\xc1\xc8\x39\xd5\xa3\xb0\xe0\x83\xf7\x36\xd7\xb4\xc6\x8b\x91\x03\xe7\x46\xe1\x23\x09\x46\x8d\x04\x2a\x8c\xfa\x52\x56\x6b\xb8\xa6\x35\x5e\x8c\xf6\x49\xd5\x59\xf5\xc1\xb0\xe0\x5a\x18\xf5\x45\x36\xab\x64\x94\x1c\x85\x55\x1f\x1c\x3e\xae\x85\x55\x5f\xca\xaa\xbb\x9f\xaa\x7b\xce\x8c\x4e\x4e\xe7\x51\x18\xfa\xc5\x86\x75\x4b\xd2\x85\xa5\x1f\x8c\x6c\x70\x19\xa5\x18\x2e\xc5\x5b\x91\x37\xa5\x14\xe3\xe5\xc5\xf2\x31\x14\xfe\x95\xe0\xbd\x2d\xcd\xc6\xc1\x12\x4c\xe6\x69\xa9\x9a\xa8\x9a\x38\x32\x99\x94\xaa\x8d\x6a\xbe\x4d\xc5\x25\x6d\x14\xc5\xc1\x1b\x54\x08\x8e\xc0\x51\xde\xa3\x10\x1c\x85\xe0\x48\x06\xca\x51\x08\x8e\x40\xe6\xd2\x51\x08\x8e\x62\x97\x3c\xe7\x5b\xe1\x9a\x09\xc6\x58\xc5\x50\xa9\x17\x63\xac\x0a\xa8\x54\x62\xfc\xe2\x35\x1d\x85\x06\x09\x6a\xc2\x64\x46\xe1\xab\x09\xb6\x8f\x9e\xe2\xab\x09\x36\x31\x2b\xa3\x70\xd6\x04\x83\x53\xaa\x70\xd6\x14\xbb\xf0\x93\xa2\x75\x94\xa6\x02\x39\x97\x8e\x29\x50\x68\x9c\xd2\x62\x44\x18\xdf\xf4\x4c\xe1\xe6\x49\x1a\xe4\x51\x08\x9a\xa0\x36\xe3\x8a\xa0\x09\x7a\x12\x67\x8d\x42\xd0\x94\xb6\x4e\x55\xca\x25\x35\x6f\x4c\x3b\xa5\x50\x73\x7a\x26\xd9\x69\x47\xa1\x67\x8a\x33\xe8\x62\xb4\x15\x7a\x26\x38\x32\x3b\x16\x3e\x9e\x60\xab\xff\x70\x94\xc7\x28\x5d\x23\xe4\xe0\xec\xa2\x76\x24\x51\xa1\x7f\x92\x4a\x79\x14\xfa\x27\xa8\xfc\xa0\x85\xfe\x29\x76\x55\x1d\x66\x24\x62\x27\x28\x39\x1f\x62\x94\xae\x11\x86\xce\x50\x65\xf2\x24\x28\x7c\xc0\x85\x3c\x29\x22\xf6\x92\x62\x78\x94\xe1\x8d\x1b\xd9\x61\x93\x6f\x6b\x21\x4f\x82\xd6\xcd\x65\xe4\x49\x11\xc4\x77\x78\x28\x7d\x12\xd8\x70\x30\x0a\x79\x12\xf4\x64\x05\x1e\x85\x3c\x09\xaa\x15\x92\x32\x56\x69\x93\xe1\x36\x9f\xcc\xc2\xb9\x53\xc4\xf0\x79\x79\x09\x96\x60\xa3\x54\x0b\xc1\x52\x08\x16\xe3\x97\x5e\x09\x6a\x31\x09\xd2\x2b\x85\x5e\x61\x03\x15\x7a\x25\xd8\x3e\x6a\x49\xaf\x94\x7d\x35\x46\x7a\x85\x38\x09\x36\x06\x4f\x21\x4e\xca\xbe\x6a\x9e\x76\xdc\xd5\x3c\x27\xcf\x25\x75\xe9\x28\x7c\x3b\x45\x3c\xde\x7a\x2b\x79\x72\x82\x2d\xb9\x1a\x46\xe1\xc9\x09\xde\xdb\x94\x57\x45\xf7\x8c\xcd\x2c\xf6\x17\x9e\x9c\x22\x6e\x2f\xab\x3e\x85\x27\x27\x28\x1f\xf3\xf8\x54\x51\x01\x79\x14\x68\xe1\xc9\x09\x36\x2b\x6a\x85\x27\xa7\xf0\xe4\x1c\xca\xc1\x93\x13\x94\x6a\x6a\xa7\x9b\x82\xc3\x37\x9f\x6c\x2a\x87\x37\xc4\xe7\x8a\xd2\x09\xda\x96\xe5\xb9\x42\xe9\x04\xb5\x79\x69\x28\x9d\xa0\x0d\x7d\x47\xe8\x14\x01\x73\x87\x2f\x0c\xa5\x13\xd4\xec\x76\x19\x85\x53\x26\xd8\x3a\x9b\x82\x53\x26\xb0\x9f\x75\x94\xc3\x70\x3c\xf2\x39\xd4\x75\x87\x1a\x51\x4d\x87\x81\x46\x35\x05\xdb\xf0\xb5\x3a\x56\x9d\x7e\xd9\xbb\xe4\x92\x6e\xe2\x93\x39\xd6\x6d\x3a\xe0\x45\xaf\x5e\x1e\x3e\x99\xc0\xf6\xc3\x51\xf8\x64\x82\xb2\xac\x9d\xaf\xc6\x78\x51\x37\x9f\x56\x5e\x9a\x60\xab\xdc\x34\x85\x02\x0b\x24\xa9\x1e\x85\x02\x0b\xb6\x8f\x6f\x15\xc7\x4d\x89\x97\xa6\x7e\x7c\x11\x28\xb0\xc2\x4b\xa3\xcd\x28\xb0\x12\xb9\x55\x93\xf9\x6d\x14\x72\x2b\xf8\xef\x25\xf5\x7c\x51\xbb\x81\x4c\x6e\x95\xf8\x5a\xea\x47\xa5\xf8\x5a\x82\x2d\xf9\xfe\x46\x21\xad\x4a\x22\xed\xea\x7a\x17\x79\x51\x82\xad\x65\xc1\xa2\x90\x56\x25\x21\x74\xf5\x63\x02\xe3\x1f\x09\xd6\x1a\x46\xf9\xe9\x95\x9f\xe2\x6e\x1e\xaa\xb8\x71\x99\x54\x56\x16\x97\x49\xd0\x3e\x5e\x8b\xdf\x2a\xee\xfa\x50\xe7\x92\x97\x27\xa2\xac\x32\xa3\x0b\x55\x16\x94\x69\x16\x3a\x75\x5e\x84\x5a\x5d\x56\x22\xa1\x16\x6c\xab\xf7\x08\xb5\x60\xab\x1f\x53\xd3\xa9\xab\xce\x84\xba\x78\xf1\xb8\x69\x82\x2d\xdb\x3c\x46\xe1\xa6\x29\x24\xde\x7a\xa6\x71\x9b\xdc\xc8\x22\x39\x0a\x85\x17\x94\x79\xf8\xa1\x06\x3a\xcd\xa2\x69\x0c\x12\x2e\xe8\x55\x6b\xd3\x70\xc1\x5b\xb0\x8c\x0e\x22\x2e\xd8\x72\x94\xe2\x28\x44\x5c\x50\x0e\x56\xee\xa9\x81\xce\x18\x32\x06\xdf\xa9\x7d\x92\x7a\xb9\x7e\xa2\x29\xca\xa5\x81\x22\xff\x26\xbb\x8b\xfa\x0b\xde\xdb\xd2\x9d\xe4\x5f\x20\x45\xc7\x28\xe4\x5f\x50\x39\xdd\x0a\xf5\x17\x64\x57\xd5\x28\xc4\x5f\xf0\xfe\x57\x1a\x9b\xfb\x28\xa8\x1c\x9a\xe5\xd2\x64\x2f\x7a\x5d\x97\x34\xd9\x95\x85\x31\x73\x2d\x87\x52\xd0\x06\x5d\xc0\x9f\x14\xf4\xaa\x2d\xf8\x93\x82\xd6\xc6\xdf\x37\x6d\x8d\xc2\xdb\x14\x6c\x1f\x26\x2a\x6f\x53\xb9\x0c\x2f\xf3\x11\x85\x1a\x94\xa9\x7a\x14\x6a\xb9\x57\x53\xa5\xfb\x39\x92\x82\x15\x5c\x55\x88\xd6\x40\x46\xb3\x51\x88\xd6\xe0\xfd\x65\xba\xec\xd6\x58\x77\x36\xf4\x98\x50\xe9\xd8\xc0\xae\xba\x51\xe8\xd8\xa0\xe4\x5c\xd3\x51\xc8\xd8\xc2\x03\x65\xf2\x21\x63\x83\xd6\xcc\x03\x3c\x50\xe5\x36\x96\x48\x2d\xee\xa6\xa0\xb4\xac\x86\x15\xee\xa6\xa0\x36\x6f\x0c\x77\x53\xd0\xab\xf7\x9b\xbb\x29\x68\xdd\x8b\xcb\xdd\x14\xbc\xff\x9f\x5e\xe4\x6f\x0a\xb6\x69\x14\x12\xd3\xc1\x7b\x5b\xfe\x8d\x9a\x0e\x6a\x31\xed\x72\x38\x05\xb5\xf9\x78\xd1\xd7\xc1\xfb\xcb\x54\x8a\xc0\x0e\xfa\x1a\x98\x04\x76\x20\x4d\xc1\x28\x04\x76\x79\x56\xd5\xdd\xa6\xea\x2f\xfe\x74\x1d\x99\x1c\xb4\x61\x18\x52\xc9\x41\x5d\x5a\x85\x4a\x0e\xd6\x6a\x5e\xa5\x92\x83\xf7\xff\x8f\x5c\xdb\x5c\x13\xc8\xd0\x73\xa9\xb8\x94\xad\x25\xd5\xa5\xea\xd2\xc8\x2f\x33\xed\x56\xca\x39\x68\x7d\xdd\x36\x5d\x9a\xaf\x7a\x49\x9d\x2a\xe5\x1c\xb0\x23\x2b\xdd\x5c\x73\x32\xbb\x53\xdc\x46\xa5\x7f\x03\x1b\xcd\x47\xa5\x7f\xeb\xa6\xb0\x91\x20\x95\xda\x0d\xea\x88\x1a\xad\xd4\x6e\xdd\xb4\x76\x86\x63\x25\x5a\xab\x73\xd8\x33\x33\x54\xa2\xb5\x46\x8e\xd6\x8f\xe6\x20\x47\xab\x1c\x19\xd1\x55\x95\x1c\x0d\x56\xf8\x52\x25\x47\x83\xf7\x97\xae\x5d\xae\x25\x13\xc5\x47\x39\xd4\xe0\x45\xcd\x39\xef\xa3\x6e\xab\x06\xc9\x35\x1d\x91\x56\x89\xd6\x60\xad\x3c\x56\x9a\x35\xd8\xac\x38\x57\x9a\xb5\xca\xc0\x9c\x77\xa7\xd2\xac\x41\xcb\x36\xbd\x51\x49\xd6\xa0\x7c\x0e\xff\xd5\x5d\x4a\xf0\x5f\xf1\x43\x6d\xe1\x0c\x76\xde\xdb\x4a\x9f\x06\x84\x62\x15\xe9\x17\x6c\x35\xa7\x21\x8d\x4a\xb1\x06\x6b\xcd\xa0\x52\xac\xc1\x56\x0f\x97\x34\x4f\x31\x05\xad\x5a\xaa\xf8\x8b\x96\x4d\x8b\xa3\x52\xa2\xb5\x9a\x82\x22\x01\x2a\xd9\x19\x8c\x96\x15\x88\x4a\x76\xd6\xea\x1b\x1d\x75\x57\xab\xb2\xbd\xe8\x75\x73\x49\xd1\xb2\x69\x4c\xe4\x59\x15\x10\x58\xab\x6e\xca\xaa\x4a\xa5\x31\x83\x2a\x4e\xa0\xd2\x98\xc1\x1c\x3a\x93\xc6\xac\x4d\xd1\x62\xc1\x55\xf2\x31\xa8\x39\xe7\x6d\x54\xea\x31\xe8\x82\x30\x2a\xf5\x18\x6c\x8e\x30\x1f\xb5\xe9\x82\xc6\x68\x4c\x31\x9a\x2e\x68\x99\x1d\x9b\x3f\x33\x1c\x39\xcd\x3e\xde\x14\x5e\xb3\xa0\x99\x91\x2b\x91\x19\x6c\xb2\x03\x8e\x4a\x64\x06\x3d\xc9\x8d\x46\x25\x32\x83\x63\x95\x42\xcd\xa3\x31\x73\x1c\xd5\xa8\x34\x66\xe5\x33\xf3\x06\xb7\x55\x73\x59\xa3\x53\x56\xb1\x85\x41\xa9\x46\x23\xd5\x59\xbb\x5a\x66\xd9\xbe\xd2\x87\xc1\xc6\xf1\x5a\xb9\xcc\x6a\xf7\x5a\xe7\xc3\x53\x79\xb4\x82\xd2\xa6\x7f\xf3\xcc\x9e\x93\x21\x74\x00\x87\x56\xb0\xd5\xe4\xb1\x18\x75\x78\x68\x32\x20\xf3\xe0\x54\x3e\xae\x2a\x40\x30\xdf\xbf\x4a\x44\x06\x9b\xf0\xcb\x4a\x44\xd6\x61\xa6\x8a\x15\x56\x29\xc6\x60\x59\xd0\x95\x62\x0c\x26\x13\xbd\x12\x8c\x41\x4f\x46\xae\x51\x09\xc6\x60\xcb\x66\xde\xbf\x7e\xa5\x2b\x41\x19\x1c\x49\x3d\x3e\x2a\x41\x19\xbc\xff\xe2\x9f\x75\xd0\x8b\x9e\x13\x21\x46\xa5\x28\x83\xb2\xc6\x39\x45\x59\xf7\xd5\x32\x69\x67\xfa\x31\xe8\x35\x06\x4d\xdd\xb5\xcc\x8b\x63\x7a\xc5\x29\xca\x1a\xf9\x58\x05\x03\x55\xf2\x31\xd8\x6a\x75\x9b\x96\x89\x6f\xab\xc4\xd4\xaa\x7c\x5b\x35\xc7\x06\xd5\x64\x52\x1b\x95\x7c\x0c\x7a\x5d\xb7\xa9\x67\xf2\x74\x58\x2e\xaf\x04\x65\x8d\x2c\xac\x49\x39\x36\x2a\x5d\x18\x54\xcb\xf6\x95\x2e\x0c\xb6\x9a\x5d\x78\xa3\x72\x9e\x05\x5b\x33\x7b\x72\x9e\x05\xb3\x99\x57\xa8\xc7\x60\x16\xef\x16\xf5\x58\xb3\x77\xab\x6e\x9b\xdb\x54\x2a\x29\x38\xb2\x9d\x6b\xd4\xa9\x52\x0e\xff\x31\x13\xd0\x98\xc1\xd6\x0c\x3a\x1a\x33\xe8\x6b\xf0\x13\x99\xc1\xfb\xff\x6e\x53\xcf\x17\xad\xf9\x0a\x89\x10\x0c\xde\xdb\xd2\x68\xfc\x75\x41\xaf\xbe\x42\xfc\x75\x41\x1d\xba\x98\xbb\x2e\xf8\xd3\x4f\x44\x6c\xf0\xfe\x59\x1e\x40\xc5\x06\xe5\xf0\x95\xa3\x62\xeb\xa1\x8b\xd7\xbf\xe9\x62\x47\x9a\x2b\x1a\x7d\x1a\xbc\xb7\x65\x0c\x11\xa8\x41\xc9\x19\x02\xa3\x12\xa8\xf5\xd0\x79\xd1\x16\x95\xa6\x0c\xca\x9a\xcb\x68\xca\xe0\xbd\x2d\x3f\x25\x2a\x83\x3a\xbc\x98\x44\x65\xe5\xd6\xcb\x52\x5b\xa5\x29\x83\xf7\x97\x19\x7e\x44\x65\x50\x72\xc4\xe6\xa8\x44\x65\xf0\xde\x96\xe2\xf2\xf4\x05\xa5\xf9\xdc\xd2\x99\x41\xcd\xee\x90\x51\xe9\xcc\xba\xf2\x39\xfb\xa1\x0e\x25\x3d\x7d\x22\x29\xcf\x60\xab\x5b\x75\x4d\x87\xc6\xd3\x57\xe3\xa3\xae\xa4\x67\xd0\x05\xd3\x54\x8e\xbe\xa0\xd7\x55\x30\xfd\xf9\xd5\x68\xbe\x91\x02\x04\x83\xd1\x4c\xd9\x34\x6b\x4d\x30\xa0\x4d\xce\xa3\x72\xfe\x05\x65\xc4\xd8\xae\x82\x01\x83\x2e\x68\xab\x92\xb1\xf5\xa7\x35\x7c\x14\xf8\x03\x83\xd6\x7d\xbe\xf9\x03\x83\xad\x19\x09\x94\x6d\xf0\xfe\xd2\x35\xcd\xf1\x5b\xe9\xad\x73\x49\x73\xfc\x56\x73\x28\x87\xe6\xc8\x86\xb1\xaa\x85\x48\xdb\xe0\xbd\x2d\x9d\x47\xdb\x06\x7d\x7d\x50\x48\xdb\xe0\xbd\x2d\x6d\x44\xdb\x06\x73\x7d\x23\x4f\xed\x41\xc7\x8a\x71\xac\x74\x6c\xd0\x2b\x6b\x92\x8e\x0d\xde\xdb\x52\x53\x42\x36\xe8\x75\x3d\x40\x7b\x64\x67\x59\xe5\x1e\xab\x64\x6b\x50\x0b\xb3\x93\x6c\xad\xd1\xa3\x72\x1b\x8f\x4a\x90\x06\x4d\x68\x7a\x25\x48\x83\xbe\x5e\x0d\x82\x34\x28\x39\xf9\x69\x54\x7a\x34\xa8\xf6\x9c\x54\x7a\xb4\xd2\xa3\xeb\x9b\x48\x8f\x06\xdb\x66\x92\xa4\x47\x2b\xa9\xc9\xf3\x5e\x49\xcd\xa0\x6d\x26\x2c\x52\xb3\x5e\xba\xcf\x77\x84\x8a\x0c\xe6\x1a\xf3\x54\x64\x95\x96\x31\x19\xa1\x47\xe5\xb5\x0c\x7a\x5d\x65\x53\x83\x4b\xbf\x68\x0f\xa2\x30\xe8\xc9\x40\x34\xaa\x78\xc3\x2a\x7f\xb5\xd7\x91\x4c\x0c\xb6\xba\x31\x0c\xe9\xc4\x60\x5b\x5f\x03\x3a\xb1\xde\xfa\xc0\x6c\x4d\xdb\x05\xa5\xae\x5f\xaa\xc1\x1d\x27\x08\x13\x41\x70\x61\xbd\x75\x0b\x8b\x8f\xb6\x0b\xca\x1a\xa7\xb4\x5d\x30\x97\x65\x4b\xdb\xd5\x47\x83\x47\x75\x56\xaa\x2d\xe8\xb5\xfe\x83\x8f\xba\xd2\x74\xc1\x56\x37\xb6\x24\x51\x17\xb4\x35\x06\x88\xba\x4a\xd4\x6d\xcc\x4b\xa2\xae\x12\x75\x66\x4c\xa2\x2e\x78\x6f\x4b\xab\x52\x75\x41\xaf\x5e\x7e\x6e\xd3\xfa\xa8\x34\x93\x93\xaa\x0b\xe4\x92\x19\x95\xaa\x0b\xde\xdb\xd4\x70\xd5\x3a\x4b\x7f\x99\x10\x1a\x59\xd7\x3e\x2b\x53\x7e\x2e\x6d\x2e\x6d\x71\x61\xba\xab\xb8\x44\xf0\xcf\x5c\xaa\x2e\x99\x92\x63\x81\x37\x9b\xbf\x82\x92\x0d\xde\xa3\xf1\x9a\xb6\x24\x1c\xa9\x5b\x0c\xc0\xc6\xd3\xd9\x64\x1c\xc9\xab\xd9\x78\x3a\x83\x9e\x3c\x99\xa3\xf1\x74\x06\x33\xe9\x0d\x46\xa3\xf4\x82\xf7\xcf\xdc\xf6\xb8\x96\x73\xd4\x14\x8d\xab\xb3\x51\x7f\x99\x7f\x1b\xf1\xd7\x36\x43\x31\xd6\x64\xe3\xd8\x0c\xb6\x24\x7d\x1c\x8d\x5f\x33\xa8\x25\x0b\x62\x8d\x5f\xb3\x6d\x66\xd1\x75\xdb\xee\xda\x9e\xa4\xe3\x25\x97\xa6\x4b\xea\x19\x63\xa5\x11\x84\x41\xaf\x99\x5b\x1a\x41\x18\x54\x11\x4d\x8d\x1e\x0c\xde\x5f\xba\x4d\x45\xe3\xc6\x14\x3a\xd3\x08\xc2\xe0\xbd\x2d\x65\xa3\x08\x83\x9e\x24\xa4\xa3\x51\x84\x41\xe7\x7b\x6b\x14\x61\x2b\x86\x5f\x66\x92\x46\xd9\x05\x5d\x7c\x5e\xe3\x8b\x6c\x64\x5c\x52\x60\x8f\x46\xc6\x05\x35\x5b\xcd\x47\x23\xe3\x1a\x19\x97\xfd\xb9\xa3\xd1\x71\xc1\x66\x45\xb6\x71\x3c\x06\x1b\x6f\x76\xe3\x77\x6c\xdc\x82\xc5\x6d\xfc\x82\x41\xe7\x9e\x6c\xfc\x82\xc1\x56\xd7\x90\xb4\x8b\x2b\x98\x2d\x2f\x75\xe3\x2a\x6c\x55\x71\xd7\x35\xc5\x8d\xb4\xe3\x51\x6a\xa4\x5d\x23\xed\x72\x06\xef\x68\xa4\x5d\x13\xc3\xf8\x71\xdb\x2a\xdb\xed\xb6\xb4\x11\x6d\x17\x8c\x66\xe4\xf2\x1f\x06\xef\x6d\x69\x37\x0e\xc4\xa0\x57\x55\xa0\x00\x5b\x53\xd3\xe8\xbd\x46\xef\x05\x35\xc9\x4f\x47\x23\xf7\x82\x2e\x52\xb9\x91\x7b\x81\x85\xfe\x46\xed\x05\xcd\xa7\xb8\xf1\x28\x36\xc7\xd6\x67\xee\x68\xf4\x5f\xf0\x4e\xab\xae\x69\x8d\x96\xc3\xc1\xbc\x2c\xf4\x5f\xeb\xca\x1f\x01\xd0\x48\xb4\xe0\x10\x24\xdf\x38\x06\x83\xce\xd8\x6f\x3c\x83\xad\xaf\x79\x3b\x45\xe3\xfb\x0b\xea\x6a\x20\xda\xae\xc5\xf7\x57\x93\xb1\x67\x34\xbe\xbf\xa0\xb5\xf5\x4b\xc5\xed\x06\x51\xf5\x53\x83\xa8\x27\x21\x61\x77\x9b\x8e\xea\x2b\x71\x70\x3a\x8f\x2c\x0c\x7a\x32\xf9\x8f\x46\x16\x06\xb3\xa8\x01\x59\xd8\x28\xb9\x64\xa2\x1b\x8d\x92\x0b\x36\x81\x9f\x8d\x92\x0b\xb6\x5a\x74\x1e\x29\x17\xac\xa0\xc6\x46\xca\x35\x22\x8c\x77\xae\x11\x61\x8d\x08\xcb\xb2\x62\x23\xc2\x82\x6d\x39\x43\x1b\x15\x16\xcc\xe9\x12\xbf\x5e\x8b\x13\xaf\x16\x2f\x1f\xc9\x15\x4c\xdf\xd8\xc6\x89\xd7\xa8\x30\x6b\xa5\x8d\x0a\x0b\x0e\x0b\x51\x8d\x0a\x0b\xde\xdb\x52\x05\x32\xac\xed\xa9\x82\x09\x90\x0a\x6b\x54\x58\x4c\x82\x46\x85\x05\xbb\xb8\xe0\x46\x85\x35\xf2\xaa\xb8\x8d\xbc\x0a\x4a\xd7\xcb\xe4\x55\xb0\x2d\x13\xa9\xd1\x57\x41\xaf\x4a\x4b\x5f\x05\x65\x7d\x6e\xa6\x0a\x90\x5c\x65\xb8\x4d\x0d\x5e\xac\x75\xe8\x46\x72\x05\x73\x4d\x89\x24\x57\x3b\x0c\xdd\x58\x09\x8d\xd8\x69\x36\x52\xf5\xf9\xf7\x2f\x76\x23\x85\x82\x5a\x54\x86\x14\x0a\x26\xab\xb0\x71\xe8\x05\xef\xb3\x5c\x53\x99\x38\xf4\xba\x69\x8f\x60\x0a\x7a\xd5\xf2\x04\x53\x3b\x0c\xa8\x58\x85\xed\x58\x25\xcf\xda\x80\xe1\xc9\x7b\xd7\x0e\x03\x7b\xf7\x53\xa3\xe7\x45\x1b\xc5\x03\x0c\x9e\x17\x87\x00\x9a\x46\x56\xb5\xaf\xc1\x63\x14\x13\x4c\xc1\x3e\x95\x83\x60\x6a\x2b\x1d\x61\x1a\x90\x5e\x0a\xf6\xf5\x59\xa7\x97\xda\x77\x95\x36\xf5\xa4\x84\x02\x89\x38\x46\xa3\x84\x1a\x25\x44\x3b\x37\x52\x28\xd8\x8f\xf5\x00\x83\x27\x4e\xb8\x6d\x5d\xf2\x92\x24\xe6\x91\x76\x69\x94\x50\xb0\x25\xcd\xeb\x68\x94\x50\xa3\x84\x4a\x9c\xbd\x8d\x12\x0a\x1a\xb5\xdb\x28\xa1\xe0\xbd\x2d\x0f\xe0\xbe\x0b\x66\x5d\x97\xb4\xc6\x2f\x09\x6a\x7d\x3b\x89\xa3\xc6\xc9\xc7\x76\x6c\xd4\x51\xb0\x22\xfb\x1a\x27\x5f\x23\x98\x8a\x37\x82\x60\x6a\x39\xec\xb4\x7a\xe3\xa8\xa3\x46\x1d\x15\xb6\x04\x75\x14\xf4\x6a\xf2\xa2\x8e\x82\xd9\x35\x07\x71\x14\x38\x22\x7e\x34\xe2\xa8\x11\x47\x45\x7b\x10\x47\xc1\x5c\x5f\x5d\xe2\x28\x98\x96\xfc\x1a\x6d\x14\x74\x01\xea\x8d\x36\x0a\xa6\xed\x13\x8d\x27\x30\x90\x2d\x6d\x34\x9e\xc0\x46\x41\x15\x16\x0d\x05\x15\xcc\x12\x97\x67\xa3\xa0\x82\x4a\x51\x36\x02\x2a\xd8\x6a\x72\xf7\x8f\x46\x41\x05\x53\x54\x7f\xe3\x0a\x6c\xa7\x06\x62\x0b\x51\x50\xc1\xe4\x3d\x68\x1c\x7f\xc1\x3e\x57\x05\x34\x10\x9d\x55\x98\x0d\x74\x56\xb0\x6d\xba\x98\xce\x0a\x96\xd9\xdd\xe8\xac\xc6\xf1\xc7\x81\xda\x08\xad\xa0\x57\xb3\x14\xa1\xd5\x08\xad\x65\xe1\x11\x5a\xc1\x92\x1f\x8d\xd0\x0a\xde\xdb\x32\x12\x78\xfe\x82\x7d\x6a\x5c\xae\xbf\x76\xad\xf6\x48\xb7\x13\x5f\x8d\x9f\xcf\x04\xc7\xcf\x17\x8c\xe6\xf5\xe1\xe7\x6b\xd7\x6a\x22\xff\xa6\x89\x22\xd1\x08\xdb\x46\xa2\x35\x12\xad\xb2\xc9\x48\xb4\xa0\x76\x5f\x58\x12\xad\x91\x68\x3c\x89\x8d\x44\x0b\x26\xd7\x46\x23\xd1\x1a\x57\x5e\x65\x80\xd1\x68\x41\xaf\x4c\x26\x12\xad\x91\x68\xd5\x98\xa1\xd1\x82\x5e\xb5\x11\x57\x5e\xf0\xde\x96\x36\xe2\xcb\x0b\x36\x82\xaf\xf1\xe5\x35\x2e\x39\x81\x33\x8d\x4b\x2e\x98\xcb\x30\x26\xdb\x5a\xb6\x7b\x55\xfe\xd1\x46\xa4\x05\xbb\x60\xd3\xc6\x01\x17\xcc\x35\x97\xf2\xbf\x05\xbb\xf8\xa0\x46\xc9\x05\x73\xfa\xc0\x92\x6a\x8d\x54\xe3\x17\x69\xa4\x5a\x30\xe9\xad\x46\xaa\xb5\xc7\x32\x67\x96\xcf\x1a\x5d\x16\x1c\x9c\x14\x8d\x2c\x6b\x09\x5d\xad\x16\xd2\x9b\xd0\xd5\x60\xb7\xe7\xb1\x09\x5d\x0d\x66\xcf\x62\x48\xe3\x92\x0b\x8e\xcf\xaa\x93\xaa\x3f\x3a\xd9\xe7\x9a\x7a\x6b\x22\x57\xd9\x25\xc4\x5b\xb0\x55\x92\xb1\x53\x6f\x41\x49\x5a\xe4\xd1\xa9\xb7\xfe\x51\xd1\x98\x78\x5d\x9e\x8e\xe0\xc8\x31\x0a\xa3\x93\x6a\xc1\xb6\x5e\xef\x4e\xab\x05\x93\x08\xeb\xfc\x74\x3d\xe1\xac\xd5\x5a\x73\xe7\x95\x0b\xba\xfd\x1c\x9d\x5b\xae\x13\x66\x56\x3f\x3b\x61\x16\x4c\x76\x49\x27\xcc\xfa\x66\x00\xd6\xbf\x9f\x90\x39\x3a\x17\x5d\xd0\x92\xf5\x7c\x74\xba\xad\xd3\x6d\xec\x8a\x4e\xb8\x05\x33\xa7\x1e\x8d\x4e\xb8\x75\xce\x3d\xab\x42\x9d\x73\x2f\x38\x78\xaa\x3a\x2d\x17\xbc\xb7\xa5\xd6\xc4\x5c\xb0\x8c\xd8\x2e\x24\x35\xd8\x73\x40\xf4\xe8\x5c\x80\x7d\x5b\x69\x98\x53\x69\x92\x2f\x38\x3e\xda\x86\xe4\xeb\x7c\x80\xac\xe9\x4e\xf3\x05\x33\x89\x58\x47\x27\xf9\x7a\x59\x6d\x93\x4e\xa2\xdc\x82\xb9\x67\x36\xec\x7c\x79\xc1\x2c\xf9\x10\x74\xbe\xbc\x60\x26\x11\xff\xe8\x7c\x79\xdd\x61\xaa\x79\x27\x3a\xc5\xd7\xc9\x3b\xaa\xbb\x93\x77\xc1\x14\x20\xd7\xc9\xbb\xa0\xac\x46\xa3\xee\x82\x99\x03\x9f\x46\xa7\xee\x3a\x75\x57\xd7\x33\x57\x05\x62\x98\x0f\xbf\x34\x04\xe2\xcb\x4b\x86\xc9\xd1\xf9\xf2\x3a\x11\x48\xa0\x76\x22\x30\x18\x39\x99\x73\x74\x22\x30\x18\x5c\x96\x9d\x06\x0c\x6a\xd3\x4f\x34\x60\xb0\x55\x16\x58\x17\x2f\x1a\x34\x56\x6d\xe7\x04\x0c\x36\xc9\x09\x3a\xa5\x18\xbc\xbf\x4c\x6b\x90\x8a\xc1\x26\x82\xb9\x4b\x0b\xd2\xab\x7a\xe6\xf3\xdf\x49\xc5\x60\xe3\x6a\xeb\x94\x62\xd0\x92\xf7\x73\x74\x4a\xb1\x73\xef\x99\xa9\x3a\xbd\x17\x6c\x02\x86\x3a\xbd\xd7\x9b\x1a\x0c\x3f\x55\x83\x1c\x84\x7a\x78\x26\x79\x17\xec\xb6\x11\x75\xea\xae\x37\xf3\xaa\xa1\xd6\x14\xb7\x65\x2b\x76\xf7\x00\x3d\xd5\xbc\x99\xba\x85\xeb\x2e\x28\xe2\xbe\x3b\xd7\x5d\x27\x0c\x93\xb4\x6a\x74\xc2\x30\x28\x3e\x95\x9d\x30\xec\xdc\x79\x35\xcb\x66\x9d\xe4\x0b\x06\xc3\xb8\x73\xe7\x05\xc7\xba\x49\x4f\xbd\xd8\x25\x83\xe8\x64\x61\xb0\xd5\x55\x29\xba\x30\x28\xc5\x80\xb4\x25\x2e\xd8\x1c\xea\x3f\xba\x30\xd1\x40\xa6\xc2\xd1\xa9\xc7\xe0\xbd\x4d\x31\xd4\x3d\xf2\x31\xa7\x75\x8e\x4e\x3d\x76\xdb\xe4\x8a\xaa\x6b\x8d\xe1\xc5\xcb\xe2\x59\xe7\x2e\x0c\x36\xce\xdf\xce\x5d\x18\x2c\x9b\xa6\x73\x17\xf6\x61\x86\xf1\x1a\x8b\x39\x0d\xb6\x6e\xaa\xa5\x3b\xfb\x58\x35\x70\x4d\x0d\x5e\x8c\xa4\x25\x1c\x9d\xa7\x2f\x28\x82\x29\x3a\x8d\xd9\x87\x29\xdf\xec\x47\x3d\x06\x95\xf3\xb1\xf3\xea\x05\xef\x6d\xae\xa9\xc1\x2e\x58\xcf\x25\x35\xd8\xbd\x7a\xda\x83\xc8\x0c\x5a\x72\xdd\x8e\x6e\x63\x5b\xb0\xdb\xb8\xd2\xc9\xce\xfe\xc7\xf9\xe7\x9a\x5a\x45\x77\xda\x1b\xd5\xc9\xce\x60\xf6\x7c\x62\xbb\x70\xd2\x3e\x57\xd1\x52\x77\x82\x32\x98\xfc\x86\x9d\xa0\x0c\x76\x3b\x6a\x3b\x3d\xd9\x29\x45\xf1\xf8\x9d\x52\x0c\xea\x6e\x44\x52\x8a\x5d\x2e\x7c\x41\xef\x9d\xdf\x2d\x68\xcd\xf4\xcd\xed\x16\x6c\xdc\x5d\x9d\xdb\xad\x67\xff\x5b\x15\x3f\xd4\x39\xd4\x82\xd1\x4d\xb8\x34\x66\xb0\x89\x53\xec\x44\x64\xf0\xfe\x32\xc5\xa5\x22\x83\x21\x94\xae\x53\x91\x9d\x8a\x14\xa6\xdc\xa9\xc8\xe0\x58\x45\xa3\x22\x83\xad\xae\xe9\x8f\x8c\x0c\x36\xcb\x84\x9d\xdb\xad\x53\x96\xb6\xf0\x75\xca\x32\x90\x25\x70\x74\xca\x32\x78\x6f\x4b\x7b\x08\x0c\x0d\xf6\xbe\x7e\xa9\x3d\x5e\x54\x46\x53\xb7\xc1\xae\x27\x56\x54\x86\xe7\xd1\x09\xd0\xa0\xb5\x7f\x38\xc6\x63\x74\xfa\x34\x78\xff\x25\xff\xcc\xef\x17\x54\x3b\x7a\x3b\xb7\x5f\x17\x38\x9a\xc3\x03\x46\xa7\x59\x83\x52\x9a\xdb\x34\xd7\x77\xed\x72\xcb\x25\xcd\xc5\xc7\xd7\x36\xd7\x34\x57\x82\x49\xa5\x26\xeb\x7c\x7c\xfd\xbb\x9a\x2b\x2d\x4d\xda\x06\xcd\x16\xd6\x4e\xda\xf6\xef\x6a\x2e\xd7\x34\x97\x2c\x20\x87\x07\x68\xae\x17\x73\xae\xd2\x6a\xae\x48\xdb\xa4\x7e\x1d\x9d\xb4\xed\xa4\x6d\x63\xa1\xd1\xb6\x41\x5d\x1f\x32\xd2\x36\xa8\x47\xd6\x20\x3a\x69\xdb\x29\x4f\xd9\x0e\x3a\xe5\x19\xec\x04\x6a\xe7\xaa\xeb\xa2\x50\x2d\xa5\x75\x6a\x34\xd8\x86\xa1\x42\x8c\x76\x7e\xb9\x35\xca\x48\xcf\x60\xe4\x24\xb6\xd1\x49\xcf\xa0\xd6\x43\xd1\xd4\xe0\xd4\x7b\xb1\x58\x3b\x51\x19\x94\xc3\x07\x84\xa8\x0c\xde\xdb\xf2\x9e\x50\x95\xc1\x48\x8a\xc6\xd1\x89\xca\x60\x74\x6f\x30\x51\x19\x94\x1c\xfe\x39\x3a\x51\x19\xbc\x23\x3e\x97\x54\xfd\xd4\x2b\xbe\xb1\xd4\x62\xd0\x04\x91\x75\x6a\x31\x18\x7c\xc7\x9d\x58\x0c\xde\x5f\x7a\xe6\xaa\x54\xb6\x86\x98\x21\xa8\xc5\xa0\x49\x48\xd5\x89\xc5\x4e\x19\xae\xd1\x41\x19\x06\x63\xe8\x3c\xca\xb0\x73\xc1\x89\x06\xe8\x5c\x70\xc1\x18\xbe\x80\x54\x60\x50\x3f\x26\x6e\x2a\xb0\x13\x69\x49\x8e\x3a\x3a\x91\x16\xd4\xa9\xdb\x89\xb4\x4e\xa4\xd9\x7b\xd0\x89\xb4\xa0\x6c\xe6\x1b\x22\xad\x0b\xae\x6c\x0c\x18\x8a\x2c\xa8\x85\x69\x45\x90\x75\xe9\x3d\xbc\x05\x04\x59\x50\x48\xdb\x2e\xb8\x32\x68\x5c\x2d\x9d\x03\x2e\x68\x36\x6a\x75\x0e\xb8\x4e\xc9\x89\x5d\xe8\x94\x5c\xd0\x3e\xeb\x92\x2e\x78\xd1\x3e\x06\x1f\x07\x5c\x7f\xe2\xd6\x36\x01\x50\x6d\xc1\x76\xe8\x3b\xaa\xad\x73\x93\x2d\xf3\x85\x9b\x2c\xa8\x6d\xdd\xa6\xfc\x89\x7d\x5c\x63\x83\x1c\xeb\xe4\x98\x78\x8f\x4e\x8e\x05\x55\xce\x80\x4e\x8e\x75\x0a\x4a\x60\xf7\xa0\xa0\x82\xa1\x81\x06\x05\x15\xbc\xb7\xb9\x56\x5c\x2b\xaf\x45\xd3\x73\xa5\xba\x52\xf3\xc3\x91\x4b\xcd\x25\x15\xc8\xb2\xe1\xa0\xa9\x02\x27\x5c\x8c\x41\x53\x8d\x8f\xd2\xc6\xf0\x19\x04\x54\x30\x6c\xe2\x19\xbc\x64\xc1\x7b\x5b\xcb\xb5\xd3\xb5\x75\x64\x68\x2e\x5d\x2e\x19\xf1\xbb\xb2\xdd\xae\xdd\x59\xff\x2d\xb9\xf4\xb8\xf4\xda\x7c\x9f\xb8\x8a\x06\x35\x36\xf8\xc4\x98\x12\x83\xb6\x0a\x9a\xcd\x9c\x83\xb4\x0a\xea\x8c\x6e\x18\xa4\x55\x30\x4c\xc1\x83\xb2\x1a\x9b\xa9\x29\x46\xce\xa0\x99\x82\xe1\x53\x30\x68\xa6\x41\x0c\x59\x0b\x19\xc4\x50\x30\xcc\x7d\x83\x18\x0a\xde\xdb\x14\x57\x0d\x44\x44\xc6\xc8\x19\xfc\x5f\x41\x33\xe0\x07\xff\xd7\x28\xde\x8b\x75\x9b\xe2\x72\x80\xe5\x95\x1d\xd4\x50\xb0\xd5\xa6\xa2\x1c\x60\x41\xe1\x74\x1b\x82\x1d\x83\x66\x17\xc7\x10\xed\x38\x8a\x1a\x1c\xfe\x4d\x0d\x1c\x0b\x3b\x3c\x53\x0d\x84\x36\xe6\x8c\x86\x31\xc8\xa1\xa0\xb6\x18\x3e\x83\x1c\x0a\xde\xdb\xf2\x53\xbb\xec\x82\xd1\xb2\x10\x3c\x44\x3b\x8e\xb5\xa3\x2e\x93\xe4\xa0\x9a\x06\xd5\xb4\xfe\x4d\x45\xa3\x9a\x5a\xf9\x87\xb8\xf0\x41\x54\x05\x23\x49\xf5\xc7\x20\xaa\x46\x35\xee\x32\x93\x0f\x3a\x28\x68\x5d\xaf\x71\xa2\x0d\xd2\x88\x09\x3b\x48\xa3\xa0\xda\xcc\x3c\x48\xa3\xc1\x63\x66\x01\x72\xf0\x98\x05\xa3\xc5\x08\x1f\x3c\x66\xc1\x14\x50\x35\xc4\x4c\x06\xe5\xb3\xb9\x4b\x95\x85\x34\xca\xcd\x39\xb8\xb4\x82\x52\xe2\x87\x19\x64\x50\xb0\x84\xff\x20\x83\x06\x19\xc4\x36\x1d\x6d\x15\x2d\xfe\xbd\x7c\xeb\x06\x19\x34\x92\x0a\xb1\x76\x6f\x35\xcd\x13\xac\x85\xa3\xc1\x19\x16\x54\x5b\x12\x07\x5f\x58\x30\x7c\x72\x07\x61\x14\xb4\x6a\x36\x20\x8c\x82\x91\x23\x8d\xc6\xa0\x8c\x82\xe1\x53\x3a\x28\xa3\x91\xcc\x20\x95\x6e\x1e\x64\x50\x50\xe5\x86\x1a\x54\xd0\x20\x79\x24\x69\x1d\x24\x4f\x30\x67\xf7\x4c\x9d\xd2\x55\xdd\x40\xa1\x79\x82\xc1\x8e\x18\x3c\x66\x43\x20\x65\x37\xec\x04\x52\x06\x43\x88\xe4\xa0\x8c\x46\xa2\x26\x6b\x37\x62\xe8\xa0\xa0\xe6\x30\xb9\x31\xa4\x06\x19\xa4\x11\x0b\x76\x90\x46\x41\x11\xa0\x3e\x48\xa3\xc1\x25\xd7\x57\x41\xd4\x7e\x25\xd5\xf7\x50\xef\xdc\x30\xd6\xb4\x2e\x67\x5b\xb0\x82\x8e\x07\x5f\x5b\xe0\x38\xdb\x31\xa8\xa5\xa0\x5a\xb4\x1d\xd4\xd2\x20\x83\xba\x16\x27\x83\x82\x15\xa0\x31\xc8\xa0\xc1\xfd\x96\x83\x17\xc7\xa0\x83\x82\x62\x0f\xf5\x20\x83\x82\xe1\x6b\x34\xc8\xa0\x21\x08\xb2\x6b\x0f\xee\xb7\xa0\xb1\x16\x07\xf7\xdb\xd8\x55\xaa\x2a\x9b\x4a\xbd\x90\x79\x7d\x0c\xfb\xe5\x06\x05\x25\xd2\x7c\x50\x50\x41\xe3\xf5\x18\x14\xd4\xe0\x92\xeb\x26\x78\x12\x2a\x18\x4d\x83\x73\xc9\x0d\xaa\x4a\xde\x9c\x41\x55\x05\x75\xc6\x56\x19\x54\x55\x30\x2d\x85\x0c\xfe\xb7\xe0\xf8\xf3\x4c\x95\x12\xdf\xd8\xcd\xbf\x84\x56\x30\xac\xd2\x0c\x42\x6b\xf0\xdc\xad\xca\x53\x55\xc1\xfa\x60\x0f\xaa\x6a\x08\x49\xcc\xe1\x94\x63\xd0\x46\x41\x91\xa5\x6b\x90\x46\xc1\xa1\xdb\x29\xa3\x71\x78\x0f\x4c\xdc\xc7\x7a\x66\xbe\x29\xd5\x25\x6d\x2b\xfa\xb0\xfb\xfa\x93\x21\xc1\x6e\xef\xc6\xe0\x4c\x1b\xf4\x45\xcf\x4a\xc8\xa0\x2f\x82\x61\x6f\xee\xa0\x2f\x82\x9d\xae\x1d\xe4\xc5\xa0\x25\xba\xf1\x47\x4b\x04\x53\x52\xa5\x41\x4b\x8c\xaf\x7e\xdf\x95\x63\x95\x2d\x1f\x6c\x9d\x47\x38\x8c\x9f\x0e\xf5\x5d\xe7\xc7\x0a\xb6\x8f\xa1\xc0\x8d\x35\x48\x82\x9c\xbd\x3e\x06\x49\x10\xf4\xc3\xa7\x98\x24\x18\xdc\x4c\xa4\xe2\x60\xec\x07\x83\xc1\x3b\xb8\x99\x06\xd7\x50\x0e\xd7\x1e\x83\x15\x1f\x1c\xd6\x20\x06\x2b\x7e\x08\xae\xa3\x93\x07\x33\x3e\x38\xc4\xc4\x0c\x66\x7c\x70\x54\x5f\x0d\xae\xa1\x21\xde\xae\x6b\x10\xf1\x76\xc1\x1c\xfa\x9d\xb7\x68\x5c\xeb\x01\xa9\x3c\x2b\x3b\x38\x2a\x93\x80\x95\x3d\xae\xfc\xdb\xf0\x3d\xe0\x59\x09\x6a\x53\x8e\x6b\xfd\xdb\xd7\x6d\xa9\x29\xcf\xca\xb8\x32\x4e\x23\x27\x86\x0d\x51\x41\xb5\x76\x3b\xf8\x5a\x06\x9b\xdd\x6e\xcf\xc1\x66\x0f\xe6\x66\x7c\xb0\xd9\x07\x57\x88\x5d\x35\x83\xe5\x1d\x0c\x2b\xf8\x83\xe5\x3d\x04\xba\x0d\x76\x13\x3b\x3b\x18\xad\xfd\xfd\x34\x8f\x31\x98\xe1\x83\x19\x3e\x7c\x18\x99\xe1\xc1\x5c\x06\x08\x33\x7c\xdc\x8a\xce\xac\xe2\x3d\x09\x1a\x1f\xfd\x60\x87\x0f\x81\x70\xf6\xef\x0f\x86\x78\xb0\x42\x99\x06\xf7\x49\xd0\xa4\x74\x19\xbc\x27\xc1\x26\xfb\xd8\xe0\x3d\x19\xbc\x27\x23\xde\x82\xc1\x5c\x0f\x06\x4d\x3c\x98\xeb\xc1\xb4\xe8\x34\x04\xb5\x05\x9b\xf0\xac\xc1\x80\x1f\x36\x34\x0d\xdf\x06\xde\x93\x60\x65\xa4\x1c\xbc\x27\x83\xf7\x44\x76\xf1\xc1\x7b\x12\x34\x6b\x20\x83\xf7\x24\xa8\x23\x36\xe0\xce\xf4\x0f\x9a\x1d\xd1\x3b\xd3\x7f\xcf\xee\xa5\x3a\x62\x13\xec\x0c\xfd\x60\xd2\x33\x3b\x43\x7f\x4f\x06\xbd\x2a\x55\xf9\x6e\xfb\xd2\x2e\x83\x5e\xc4\xcb\xce\x51\xb2\xcb\xa0\xb7\xbb\xf4\x75\xe9\xb5\xf3\x73\xa8\xd3\xd8\xd9\xf9\xc1\xda\x3c\xbc\x33\xf3\x83\x6d\x85\x88\xee\xec\xfc\x60\x93\x14\x77\x67\xe6\xef\x1f\x5d\x9c\x79\x69\x67\xd4\x07\xa3\x2b\x99\xd8\xb7\x9d\xbf\x44\xc2\xf1\x9d\x51\x1f\xd4\x1e\x5d\xb5\x33\xea\x83\xe1\x3b\xb3\x33\xea\x77\xb1\x6f\x63\x5d\xdb\x5d\x8b\xfc\xca\x6b\xb8\x73\x97\xec\x1c\x21\x92\x2f\xec\x1c\x21\x41\x95\x1e\x6b\xe7\x08\xd9\xd9\xfe\x32\x21\xec\x6c\xff\x60\x2b\x2a\xca\xf6\xdf\xd9\xfe\xa2\x9b\x77\xb6\x7f\x50\x3f\xd1\x5f\x3b\xdb\x7f\x67\xd4\xcb\xff\xbd\xb3\xea\x83\x21\x76\x61\x67\xd4\x07\x87\x45\xad\x9d\x51\x1f\x14\x36\xc1\xce\xa8\xdf\x39\x47\xcc\x41\x3b\xe7\x48\x50\x73\x72\xd7\xd8\x39\x47\x82\x95\x7b\x6c\xe7\x1c\xd9\x85\xbe\x65\xd2\xd8\xa9\x81\x9d\x1a\x88\x0d\xb9\x53\x03\x3b\x35\x60\xf3\xd9\x4e\x0d\xec\xd4\x40\x54\xe6\x4e\x0d\xec\xd4\xc0\xd0\x6a\xd4\x40\xd0\x7a\xde\x8c\x9d\x1a\xd8\xa9\x01\x1b\x91\x76\x6a\x20\x58\x3b\xb5\x76\x6a\x20\xd8\x7c\x8e\x76\xe6\xfe\x5e\x57\x3d\x53\x29\xae\x90\xa0\xac\x1a\xf0\x84\xec\x82\xe6\xc6\xba\xa6\x56\x35\xb2\x7e\xf3\x6f\x6a\x55\x8d\x3f\xdd\xc2\xef\x11\x2c\xa7\xf0\xce\xdc\xdf\xed\x91\xca\x19\x19\x63\x67\xef\x07\xcd\x9a\xfb\xce\xde\x0f\x56\x5c\xe1\xce\xde\xdf\x9b\x3e\xd6\x46\x3c\x26\xc1\x26\xf3\xf0\x2e\x44\x6e\xe7\x44\x11\x8a\xbd\x73\xa2\x04\x83\x0b\x6f\xe7\x44\x09\x96\xcf\x76\xe7\x44\xd9\x39\x51\x6c\x06\xdb\xa9\x87\x60\x48\x07\xb4\x53\x0f\xc1\x7b\x9b\xb2\xa9\x7c\x8b\xa9\x56\xfc\x52\x8f\xb6\x28\xd4\xac\x77\xed\x04\x45\xb0\x6d\x1a\x92\x5b\x65\xa7\x31\xf2\x25\xde\x49\x8c\xe0\xfd\x7f\xd7\x34\xc7\x8b\x51\x62\x40\xef\x34\xc6\xde\x35\x47\x4c\x82\x9d\xa2\x08\x9a\x35\x93\x9d\xa2\xd8\xfb\xaa\x94\x6b\x2a\x15\xad\x90\x43\xc0\xc6\x4e\x2a\xec\x82\xeb\xec\xd0\xd8\x69\x85\x60\x08\xf2\xdb\x49\x85\x60\x2d\x56\xec\xa4\x42\xb0\x49\x94\xba\x53\x0a\xc1\x9f\x81\x4b\x29\xec\xa3\xf9\xff\xd4\x9d\x2c\x08\x8a\x05\x98\x9d\x2a\xd8\x49\x00\xe9\xca\x77\x12\x20\x68\x76\x9d\xec\x24\x40\x30\x38\x6e\x76\x51\x79\xc1\x90\x1f\x63\xe7\x56\xd9\x05\xea\x49\x6a\xbe\x73\xa2\x04\x9b\x44\xb8\x3b\xed\xb0\x0b\xd4\x93\xd4\x7c\x27\x1e\x82\xed\x63\x72\x22\x1e\x82\x22\x58\x72\x27\x1e\x82\x7d\xce\xf6\xf7\xcf\xf5\xce\x11\x13\x0c\x0b\xdd\x3b\x47\x4c\x30\x4a\x04\xc8\x4e\x80\x04\x6f\x89\x3c\x4b\x63\xbd\x18\x6b\x6e\x24\x40\x76\x8e\x18\x39\xcf\x77\x0a\x24\x18\xc5\x97\x8d\x02\xd9\x77\x23\xe0\xf0\x04\x23\x60\xcf\xb0\x36\x95\xcb\xd8\xb1\x53\x20\x56\xba\x77\x0a\x24\x58\xd2\x73\xa7\x40\x82\x2d\xa7\x2a\x8f\xdd\xce\xac\xe0\xfd\xa5\x6b\x9a\x66\x26\xd9\xf2\xee\x92\xba\x13\x25\x52\xa4\xef\x44\x49\xb0\x71\x06\xec\x44\xc9\x4e\x94\xc8\x87\xbe\x13\x25\xc1\x10\x20\xba\x13\x25\xc1\xb6\xf6\xed\xec\x54\x49\x50\x25\xc6\xdd\xa9\x92\x9d\x47\xc8\xa9\x24\x3b\x8f\x50\x30\xb8\x16\x76\x42\x65\xe7\xfe\x91\x5d\x7d\xe7\xfe\x09\x2a\x33\x7c\x27\x54\x76\x4e\x9c\x3d\xb6\xe3\xce\x89\x13\xb4\x16\x1b\x76\x27\x54\x76\x4e\x1c\x09\x6e\x76\x4a\x25\x70\xea\xd2\xd8\x49\x95\x60\x88\x67\xdd\xf9\x70\x82\xf7\x97\xae\xa9\xc2\x8b\x95\x2e\x7a\xe7\xc3\x09\xde\xdb\x94\x4d\x15\x22\x7c\x64\xf9\xda\xe9\x9e\xa0\xc9\xd0\xb7\xd3\x3d\xc1\x28\x91\x42\x3b\xb7\xce\x4e\x0a\x49\x91\xbe\x93\x42\x41\x6d\x9e\x49\x0a\x05\x4d\x0c\xf7\xce\x47\xb3\xdb\x88\x25\xd1\xf9\xce\x49\x13\x8c\xc2\x66\xe2\xa4\xd9\x89\x28\xf9\x76\x77\x22\x2a\x18\x22\x72\x77\x22\x2a\x18\x85\xfd\x42\x44\x05\xdb\xca\xb9\xb0\x73\xd2\x04\x75\x33\x15\xd2\x55\xc1\x36\xe2\xbf\xda\xe9\xaa\xe0\xfd\x65\xc6\x02\x27\x4d\x30\x0a\xcb\x87\xd4\xda\x39\x69\xd8\x90\xfb\x77\xb5\xc7\x93\x1d\xe4\x29\x2d\x27\x4d\x30\x2c\x2d\xee\x9c\x34\xbb\x9d\x58\xf2\x2b\xee\x82\x0d\x83\x21\x5e\x76\x27\xd2\x76\xc1\x86\x7c\xdd\x3b\x95\x16\x0c\x8b\x54\xbb\x60\xc3\xa0\xd8\x0b\xb7\xf3\xf8\x04\xc5\x3e\xc0\x9d\xc7\x27\x18\xc5\xf4\x4e\xdd\xed\x7c\x34\xc2\x19\x76\x3e\x9a\x60\x88\xaa\xdd\xf9\x68\x76\x3e\x1a\x67\x21\xec\x7c\x34\xc1\x10\x28\xbd\x53\x77\xc1\xb6\x69\x0d\xea\x6e\x3f\xb5\x90\x89\x87\xc3\x24\x38\x22\xc7\x76\xfe\x92\xa0\xc8\xaa\xb1\x0b\xae\x0b\xb6\xf5\x44\x1e\x94\xa0\x7e\x7c\x38\x79\x50\x82\xba\xbe\xaf\x42\xeb\x82\x15\x14\xbc\x0b\xad\xdb\x2f\xc1\xda\xe6\x63\x1e\x94\x60\xd8\x18\xb8\x53\x7b\xc1\x10\x23\xbd\x53\x7b\xc1\xb0\x7e\xb4\x13\x7b\xc1\xfb\x67\x19\x07\x32\x62\x04\xdb\x1c\xfe\xdf\x68\xb9\x32\x5a\x18\x81\x04\x60\xd0\xd6\x87\x42\xb0\xdd\x4e\x13\xca\xeb\xbc\xd3\x84\xc1\xca\xbb\xb8\xd3\x84\x3b\x3f\xce\xfa\x4a\xf2\xe3\x04\xa3\x30\xd2\xf8\x71\x76\x7e\x9c\x35\x83\xf1\xe3\xec\xb2\x3d\x32\xce\xa9\xc9\x9d\x74\x94\x21\x76\x27\x1d\x83\x21\x8c\x7c\xa7\x0d\x77\xda\x50\xde\xd1\x9d\x36\x0c\x8a\xb0\xdc\x9d\x36\xdc\x05\xdb\x49\x7f\xba\x0b\xb6\x0b\x0a\x99\xbf\x93\x8b\xc1\x10\xf5\xbe\x93\x8b\x41\xe3\x72\xdb\xa9\xc5\x5d\xb2\x0b\x09\x31\x77\x72\x31\x28\x74\xe0\x4e\x2e\xee\xb2\x49\xfa\x8a\x90\x8b\xbb\x9d\x4c\x02\xfc\x76\x72\x2e\x18\x65\xfd\x99\x3e\xb0\x93\x69\x67\xde\x91\x73\x41\x65\x63\x4f\x72\x2e\x18\x25\x26\xf6\x24\xe7\xa6\x3d\x4a\xfb\xbf\xa4\x1d\x9d\xe2\xe2\x82\xc6\x19\x31\xb9\x70\xa6\xfc\x15\xfb\xee\x9f\x77\xd7\xf6\x1c\xe9\xb9\xe7\xd2\x74\x49\x1e\xc3\x96\x4b\x87\x4b\x7a\xc8\xa5\xaf\x4b\x19\x9d\x4d\xc1\x7f\x2e\xe5\x8c\x98\x4c\xa9\x93\x00\x0c\x86\x94\x8e\x93\xfe\x9b\xfc\x3c\xfb\xee\x97\xb7\x6b\x99\xda\xbb\xdb\x1e\x97\x32\x95\xc5\xd6\x9e\x24\xe1\xb4\x1d\x6a\xdf\x5d\xd3\x32\x49\x86\x91\x33\xca\xc7\x14\x69\x37\xb9\x83\x24\x3f\x9f\xdc\x41\xc1\x72\xc3\x4c\xca\x71\x0a\xab\xa3\x8b\x26\x9d\x18\xd4\xcf\x7a\xa8\x06\x8a\x4c\xb4\x62\x3b\xc9\xc4\x49\xff\xed\x71\x7c\x4f\xfa\x2f\x18\x96\x6c\x27\xfd\x37\x8b\xe2\xc6\x20\x9c\xbc\x3a\x41\xb5\x83\x79\x8a\x8d\x9b\xc5\x1b\x91\x15\xb8\x49\xc6\x05\x23\xe7\x12\x8f\x49\xc5\x05\xad\xab\x01\x15\x37\xa5\x93\x90\xc2\x7c\x92\x54\xb3\x66\x66\xcc\x48\x9c\x14\xd5\x4c\x7e\xc2\x3a\x63\x6e\x4c\xbe\x91\xa0\xd9\xff\x3b\xc5\x9b\x05\x9b\x24\xa6\x53\xbc\xd9\x14\x6f\xa6\x18\x44\xd6\xe4\x54\x99\x1f\xcf\xd4\xc9\x51\x59\xfb\xee\x97\x9a\x23\x22\xab\x1a\x69\x44\x56\x30\x2c\x22\x4c\x3e\x95\x49\x77\xcd\xbc\x4b\x93\xee\x0a\x86\x6d\x01\x93\xee\x0a\x86\xb4\xd8\x93\xec\x0a\xb6\x19\xc1\x36\xc9\xae\x60\x2d\x13\x4d\xb2\x2b\x18\x39\xb1\x6f\x4c\xa1\x6b\x41\xdd\xd7\x0f\x75\xba\xcc\x14\xd5\x0f\x35\x0f\x21\x26\xb2\x6c\x12\x62\xc1\x11\x8b\x7f\xd2\x61\xc1\xb0\xe9\x60\xd2\x61\xc1\x10\xd5\x38\xf9\x75\x26\x69\xc6\x50\x9c\xa4\x59\xd0\xac\x77\x4c\xd2\x6c\x92\x66\x32\xbc\x4f\xd2\x2c\x18\x8e\xa6\x98\xa4\x59\xb0\xad\xed\xa9\x93\x36\x0b\x96\xe8\x9a\xb4\x59\x50\xcb\xe1\x2e\x4d\x46\x9b\xcd\x58\x76\x93\x36\x0b\x36\xdb\xb4\x26\x6d\x16\x14\x9e\xd9\xc9\xff\x13\x0c\x7b\x3c\x26\xb5\x36\xfb\x2a\x46\x9e\x49\x4d\xcd\xe1\xdb\xed\x92\x67\x8e\x7c\x27\xbc\x4f\xc2\xcf\xe6\xca\x56\x91\xff\xe7\x76\x09\x86\x4d\x2a\x93\xbe\x0a\xd6\x4e\xeb\x49\x5f\x05\xa3\xe4\x0b\x3c\x79\x5d\x82\x21\xd2\x6c\x52\x5c\x41\x71\xc0\xc7\xa4\xb8\x82\x66\x99\x71\x52\x5c\x53\x24\xdb\x2c\xca\xaa\x9f\x12\xc9\x66\xcf\xc4\x14\xc9\x36\x79\x58\x6c\xa1\x9a\x04\x4e\x30\x6c\xf1\x98\xf4\xcd\xe4\x61\x91\x55\x7d\x12\x38\x41\x95\xe5\x7b\xd2\x37\x93\xbe\x89\x5e\x9e\xf4\xcd\x24\x3f\xa4\x50\x9f\xe4\x47\x50\xac\xee\x4f\xf2\x23\xd8\x96\xeb\x7a\xf2\x93\x04\xc3\xfe\x9c\x49\x91\x04\xef\x6d\xfe\x4d\xd9\xb2\x75\xc9\x09\x0c\xd3\xd6\xa5\x60\xe3\x8f\x9c\x44\xca\x9c\xf6\xb2\xc4\x22\x99\xd2\x34\x04\xc3\x5e\x99\x49\x56\x4c\xf1\x62\x32\xad\x4f\xf1\x62\xc1\xb0\x23\x65\x8a\x17\x9b\x34\x44\x8e\x0c\x1f\x93\x86\x08\xb6\x3d\x7a\x76\xd2\x10\xc1\x61\x07\xf5\xa4\x21\x26\x0f\x08\xb7\xdf\xa4\x04\x82\x29\x91\xc5\xa4\x04\xa6\x08\xaf\xa9\x8d\x48\x81\xe0\x10\xdf\x3d\x85\x70\x4d\xea\x60\x1a\x91\xd4\x41\xb0\x82\x93\x27\x75\x30\xbf\xba\xcf\x6b\xc6\xee\x0f\xca\x6e\x3a\x67\xf6\x07\xd5\x81\x03\x93\xd9\x1f\x94\xee\x8d\x62\xf6\x4f\xc6\xfb\x1c\xc7\x3f\x7c\xa9\xd9\xf6\x41\xcd\xc9\xd1\x63\xb2\xed\xe7\xda\x5b\x64\xb0\xb3\xed\x83\xb5\x54\x3b\xd9\xf6\x53\x00\x96\xf9\x8d\x6d\x3f\xd9\xf6\xd3\x64\xc0\xb6\x0f\xaa\xd0\x8d\xc9\xb6\x9f\x6c\x7b\x92\x6b\xb2\xed\x27\xdb\xde\x90\x65\xdb\x4f\xa9\x0c\xa6\xd7\xc9\x76\x9d\xa0\xc8\x47\x30\x59\xed\x53\xe6\x3e\xb9\xd3\x27\xb3\x3d\x18\x65\x5d\x52\x0e\x3e\x13\x99\xe9\x27\x9f\x49\x50\xf6\x75\x9b\x97\x53\xd0\xd4\x8c\x2c\x9d\x82\xa6\x82\xfa\x51\x5c\x41\x53\xd3\x16\x1b\x71\x65\x53\xd4\x54\xb0\x49\x39\x3f\x05\x4d\x4d\xe1\x50\x72\xb4\x4c\xc6\x7c\xb0\x49\x9a\x37\x19\xf3\x33\xc7\x29\x55\x71\x3c\x93\xe9\x1e\x34\xf9\x85\x27\xdf\xcd\xe4\xbb\x59\xbf\x34\x2e\x5e\xcc\x3d\x4b\x03\x93\x7d\x1f\x94\x8f\x0f\x03\xfb\x7e\xda\x27\x23\xcd\xd0\x64\xe0\x07\xc5\x09\xa6\x93\x81\x3f\xe5\xb2\x3b\x7c\xab\xd9\xe9\xc1\x3e\x4d\x4c\xcc\xf4\x60\xb9\x8b\x26\x33\x7d\xca\x51\x70\xac\x6b\x2a\x75\xe7\xdd\xcc\xe2\xc6\xb4\xff\x65\x26\x8e\xaa\x3a\x41\x6c\x72\xe7\x04\x73\x6e\x6e\x53\x83\xdb\xae\x67\x9f\x19\xc1\x4f\x41\xad\x6a\xc0\xd6\x9e\x7c\x33\x87\x9f\x32\xb6\x27\x63\x5b\xef\x31\xb6\x83\x22\x01\xdd\x64\x6c\xcf\x47\x7b\x9b\x85\x98\xd1\x41\xb1\xa0\x38\x85\x4d\xcd\x1c\x48\x54\x97\x55\xc2\xc5\x12\x8c\xf5\x6d\xe3\x62\x09\xb6\x99\x65\x91\x29\x46\x6a\xf2\xba\xc8\x7c\x3e\x79\x5d\x82\x61\xbf\xd8\x64\xa6\x4f\xa1\x54\x0e\x53\x3d\x18\xe0\x87\x0c\x71\x47\xd6\xe8\x0e\x16\x78\x30\x04\x9b\x1d\x42\xa9\x0e\x46\xb9\x74\xe8\x07\xab\x3b\x68\x92\x04\x1c\xac\xee\x43\xe2\x00\x99\xbc\x0f\x96\x72\x30\x44\xa4\x1f\x2c\xe5\x83\xab\x44\x56\xed\x83\xa9\x1c\xb4\xbe\xca\x71\xbb\x64\x73\xa5\x72\x3c\x2e\x65\xe6\x8b\xfd\x72\xb0\x94\x83\x61\x53\xd6\xc1\x50\x3e\x6c\x59\x91\x8e\xfb\x60\x29\x07\xc5\x8e\xb4\x83\xa1\x7c\x70\x5a\x1c\x69\xca\x83\xd3\xe2\x28\xfe\x2d\x97\xd8\xb1\x47\x91\x5f\x39\x6a\xef\xb0\x7d\x23\x18\xb6\xbc\x1d\x02\x96\x0e\x31\x46\xf6\xf5\x1c\xbc\x0a\xc1\x5a\x78\x39\x78\x15\x8e\xa2\x13\x32\x9f\x1f\x5c\x08\x41\x93\x87\xf1\xe0\x41\x38\xb8\x0b\x44\xaf\x1d\x8c\xdb\x60\xc8\xc3\x79\x70\x17\x1c\xd2\xa7\x99\x16\x0f\x96\x6c\x30\x6a\x16\xe6\x0e\x96\xec\xc1\x37\x70\x64\xb2\x38\x98\xad\x87\x58\xa0\xe2\x01\xca\x66\x43\xfd\xb1\xbb\xa6\x41\xd8\xad\x59\x82\x3c\x98\xad\x07\xdf\x80\x4c\xc5\x07\x23\x35\x18\x36\xb3\x1d\x8c\xd4\xc3\xf6\x76\x99\x8a\x0f\x36\x63\x30\x05\xfd\x1e\x6c\xc6\x83\xad\x26\x3d\xe7\xc1\x56\x0b\xf6\x23\xa6\xc2\xc1\x56\x0b\xfe\xb4\x2e\x5b\xed\xe8\xde\x6f\xbd\x60\x1d\x3d\x18\x36\xf7\x1d\x22\x73\x0e\x91\x39\x16\x42\x0e\x91\x39\x87\x0d\x0a\x9b\x4b\xab\x1c\xda\x68\xfd\x54\x1b\xe5\xcc\x1e\x7b\xef\x0e\xab\xed\x41\x11\x97\x7d\x58\x6d\x3f\x18\x88\x0e\xd7\x3d\x18\x88\xc1\x30\x81\x1c\x96\xdb\x8f\xec\x4f\x68\xf2\x99\x1d\x2c\xc4\x60\x70\x6f\x1c\x2c\xc4\x23\x51\x38\xed\xb3\x7e\xea\xbd\x8a\x3d\x28\x53\xd8\xc1\x1e\x0c\xde\xdb\x52\x36\x06\x61\x70\xc8\xf0\x72\x30\x08\x8f\x58\x7f\x4d\xa6\xe9\x83\xf5\x17\x8c\xfa\xf9\x87\x00\xf1\x83\x71\x18\xbc\xff\xa2\x9c\xda\xe6\xc5\xb4\x04\x7a\x58\xa2\x0f\x86\x6d\xb1\x87\x15\xfa\x23\x09\xcd\x9a\x85\xe8\xc3\x7a\x7c\x30\xec\x8f\x3c\x2c\xb8\x1f\xbb\x54\xf3\x9a\x95\xa9\x19\xcc\x8f\xb7\x82\xa5\x19\xbc\xb7\xa5\x86\x4c\xcd\xc3\x69\x3d\xf9\x72\x1d\x4c\xcd\x60\xc8\xde\x7b\xd8\xd3\x10\x0c\xc9\xfc\x0e\xe1\x3d\x47\x16\xdc\xdb\x47\x0d\x2c\xb8\x07\xeb\x68\xe9\xc3\x82\xfb\x91\x95\xf4\x26\x3d\xf0\x61\x29\x3d\x18\xb6\x47\x1e\x4c\xd9\xe0\xbd\x2d\x0f\x65\xcb\x06\x9b\xf3\x83\x0f\xa6\x6c\xb0\x35\x19\x7d\x0f\xb6\x6c\x30\x6c\xdd\x3c\x98\xb2\xc1\x7b\x5b\x6a\xc5\x96\x0d\x9a\x19\xfd\x60\xcb\x1e\x33\x15\xcd\x97\xeb\xb0\xb8\x1e\x8c\x35\xb2\x2d\xae\x1f\x53\xef\x15\xb7\xa9\xd5\xcc\xc8\x36\x91\x4a\x5f\x76\x1c\xab\x68\xf9\x29\xf3\x36\x28\xb2\x45\x1c\x16\xd2\x83\x21\x2b\xd6\x61\x21\xfd\x38\x8c\x45\xff\xc6\xe2\x0d\x86\x8c\xd5\x07\x8b\xf7\x38\x8c\x45\xe3\xd3\x12\x79\x30\x6c\xa3\x3c\xac\x90\x07\xdb\x6a\x21\x76\xf1\xf1\xd5\xef\x59\xa5\x3c\xd8\xa8\xc1\xb0\xb3\xf2\x60\xa3\x06\x4d\x74\xe5\xc1\x46\x0d\xb6\x26\x86\xf6\xb0\x34\x1d\x1c\x7f\x7e\xa9\x18\xd9\x3e\x50\xd7\x2f\x15\xe3\xab\xd5\xb2\xea\x73\x7c\x57\x39\xd2\x6a\x31\x89\x0e\xe6\x6b\x30\x19\x9c\x07\xeb\xf5\xf8\x19\xf3\x46\x2e\x5b\x35\x18\x6b\xb6\xb5\x0d\xfe\xf8\x69\xef\x2c\x18\x1d\x6c\xd5\xc0\x49\xf9\xe3\x60\xaa\x1e\x3f\x75\xcf\x9a\xe4\x61\xd1\x39\x58\x19\x4d\x0e\x8b\xce\xc7\x4f\xe3\x46\xaf\x1c\x76\xb3\x07\xc3\xae\xd2\xc3\x96\x82\x23\xf9\xa9\x9b\xcc\x21\xc7\x6f\x95\xd7\x47\x35\xef\x01\xc3\x37\x78\x6f\x4b\xd9\x58\xbe\xc1\x90\x34\xed\x60\xf8\x1e\xa7\xd6\x8d\x3d\x7f\x30\x69\x83\x61\x57\xe9\xc1\xa2\x0d\xf6\xf5\x59\x61\xd1\x06\x43\x82\xe4\x83\x41\x1b\x4c\x1b\x74\x0e\x06\x6d\x30\x84\x71\x1e\x16\xb5\x83\xf7\x91\x69\x22\xcb\xda\xc1\x26\x2f\xfc\x61\x59\xfb\xb8\x34\x6e\x84\xf6\x61\xc5\x3a\x18\x76\xcf\x1e\xcc\xde\xe3\xd2\x6a\x3e\x8c\xec\xd2\xa0\x6c\xdd\x6d\x4a\x7b\x69\x35\x9f\x32\xa6\x6a\x30\x64\x8f\x3c\x98\xaa\xc1\x90\x47\xed\x60\xaa\x1e\x62\xf9\xe5\xd2\x3c\xd8\xa0\xc1\x21\x8f\xda\xc1\x06\x3d\x6e\x83\x2d\xda\xe0\xb0\xe0\x1b\x8c\xd5\x2d\xcc\xd2\xe3\x31\xc9\xc4\x1e\x3c\x58\x97\xc1\xb0\x53\xf5\xb0\x92\x1b\xcc\x8f\x2f\x99\x95\xdc\xe3\xf1\x00\x46\x1d\x7b\x30\xd8\x24\x66\x3a\x9e\xf5\x80\xdb\x31\xf4\xe9\x2a\xcb\xb6\xc1\x90\xce\xea\xcb\x6a\x0c\xde\xdb\x46\xae\x6d\xae\x6d\xaf\x65\x1d\x31\xf6\x65\x35\x06\x73\x4b\x39\xbe\x02\x73\xbe\x31\x24\x9b\x45\xd8\x2f\x43\x32\x38\xf4\xcb\x97\x21\xf9\x4d\xb8\x7d\xdb\x32\x85\x7f\xad\xc2\x06\xdb\xc8\x90\xf9\xb2\x2d\xbf\x59\xfe\x6c\x92\x35\x7e\x59\x75\xc1\xe4\x10\xf8\x5a\xfe\xfc\x6e\x36\x54\xe4\x45\xf8\x5a\xeb\xfc\x6e\x99\x9f\x32\xa3\x7c\x85\xbe\x7f\x6d\x17\xce\xab\xf1\x15\xfa\xfe\x4d\xa8\x4b\xdb\x94\xcd\x5a\x67\x30\xbb\xba\xb3\x1a\x83\xe6\xc8\x81\xaf\x50\x97\xef\x3a\xd0\x3f\xe3\xe3\xcb\x92\x0c\xd6\x71\x7f\x5f\x2b\xa2\xc1\x7b\x5b\x2a\x6a\xbb\x70\x30\xf7\x8f\x5f\xaa\x41\x92\xfa\x66\x11\xf3\xaf\xdf\xec\xaf\x88\x99\x60\xd8\xb3\xfb\xb5\xd4\x1a\xbc\xff\x92\xda\x58\x6b\x0d\x36\x39\x41\xbe\xd6\x5a\xbf\xc5\x20\xd0\x36\x02\x5f\x82\xc1\xb4\xf8\xb2\x5a\x83\xf7\xb6\x14\x9d\xd9\x1a\x34\xee\xfd\xaf\x55\xda\xaf\x53\x64\xa4\x48\xf8\x32\x5b\x83\x21\x97\xc0\x57\x94\xcb\xb7\xaa\x61\xf3\x04\x55\x78\x31\xed\x7d\xfc\x32\x6e\x83\xd9\x37\x0f\x50\x83\x9a\xe9\x5c\x69\xc5\xc2\x7c\x63\xef\x36\x47\xb4\x7e\xd9\xbb\xc1\xb0\xfb\xf9\xcb\xde\x0d\x46\x5d\x25\x53\xcf\x64\x81\x5a\xb6\xf8\xd7\xd2\x6a\x30\xac\xa3\x7c\x2d\xad\x7e\x9b\x11\x15\x4d\xf0\xb5\x90\x1a\xac\xcc\x8d\x5f\xeb\xa8\xc1\xb1\x5e\x1d\x0b\xa9\xdf\x84\xc3\x37\xd3\xcb\x97\x09\x1c\x4c\x1b\x49\xbe\x56\x4d\xbf\x59\xfb\x6c\xf2\xfc\x7d\xad\x7d\x06\x83\x29\xfe\xb5\xf6\xf9\xed\x5a\x2d\x13\xf0\x97\xbd\x1b\x0c\xc9\x96\xbe\xb6\xe8\x7e\x1d\x5b\x19\x1b\xe9\xcb\x02\x0e\xde\x5f\xa6\xa2\x4c\xe0\x60\xd8\x6d\xfe\x15\x83\xf2\xed\xc6\x42\xa6\xdb\x2f\x7b\x37\x98\x76\x75\x7d\x99\xbb\xc1\xd6\x64\xf7\xf8\xb2\x77\x83\xa5\x05\xbf\xd6\x48\x83\x29\x2d\xd1\x97\x05\xfc\x1d\x86\x47\x66\xe0\xaf\x15\xd1\x60\xd8\xa3\xff\x65\x01\x7f\xf7\xf5\x80\x34\x1b\x3b\xf2\x6b\x0b\xad\xf7\x84\x1d\xf9\xdd\xe5\xc5\x8c\x98\xf8\x32\xfd\xbe\x4c\xbf\x7c\xc7\xbf\x4c\xbf\x2f\xd3\x6f\xcb\x3c\xfa\x65\xfa\x05\x43\x9c\xe5\x97\xe9\xf7\x65\xfa\x49\x69\xf4\x65\xfa\x05\x55\x80\xc0\x97\xe9\xf7\x65\xd3\xad\x79\x8e\x4d\x17\xac\x75\xb6\x2f\x9b\xee\x9b\x50\x88\xc6\x45\xf8\x65\xad\x7d\x05\x68\x57\x97\x94\x2d\x99\x65\x9b\x8c\x6b\x5f\xa6\x59\x30\xe4\x8c\xfb\x5a\xb2\x0c\xde\xdb\x52\x7b\x6b\x96\xc1\xb0\xb3\xfe\x2b\x14\x22\x18\x32\x5e\x7d\xc5\x6c\x7f\xd9\x79\xc5\xdc\xca\xce\x0b\xf6\x69\x80\xb0\xf3\xbe\x59\xd9\x6c\x72\xb5\x7d\xad\x6c\x06\xc3\xce\xfa\x2f\x3b\xef\x9b\x18\x87\x56\x0c\x5e\x16\x5c\x70\xc8\xce\xf0\x65\xc1\x7d\x0f\xc5\x8d\xc9\xf2\xb5\x66\x19\x0c\x5b\x7c\xbe\x76\x9d\x06\x5b\xb3\x24\xff\xb5\x8c\x19\xcc\x4f\xac\x87\xaf\x65\xcc\xe0\x58\x73\x9b\x20\x87\xef\x57\xeb\x9a\xe3\x19\x7f\xc1\x90\x2f\xe0\xcb\xf6\x0b\xde\xdb\x52\x36\xc6\xdf\x97\xf1\xd7\x3d\x40\x0d\xbe\x89\x59\xf5\x72\xb0\xfd\xbe\x5f\x67\x5b\x17\xd7\x74\xc2\x8b\x63\x1a\xcf\xd6\x29\xbf\x59\x94\x6c\x82\x9e\xbe\x16\x25\x83\x63\x8d\x40\x86\xde\x37\xc7\xb9\xff\x99\x29\x99\x70\xc1\x5c\xc5\x15\x37\xf0\x65\xd5\x89\x27\xfa\xb2\xea\x82\xf9\x99\x7e\xa9\xb8\xa7\x87\xc6\x08\xf8\x5a\x81\x0c\x76\x2b\x6e\x5f\x71\x03\xdf\xcb\x6d\xc6\x91\xc5\xc0\xe0\x58\xb3\xc5\xb5\x6e\xcb\x67\x82\x6b\xff\x6b\xfd\x2e\x38\xd6\x8c\xcd\x4e\x0a\x0e\xf6\xe0\x97\x9d\x14\xbc\xbf\x74\x4d\xbb\xbd\x38\xd6\xec\xc9\x41\x1f\x1c\xeb\x55\x63\x4d\x05\x07\x55\xf1\x65\x4d\x7d\x99\x4e\x3c\x2a\x5f\xa6\xd3\x77\x99\x4e\x2e\x69\xb5\xdb\xd2\x7a\xaa\xce\xc9\x1e\x6c\x8d\x17\xed\xcb\xcb\x1e\x1c\x6c\xe1\xaf\x4c\xa4\xc1\x7b\x5b\x9a\x83\xe3\x3d\x38\xd6\x14\xc8\x0e\xfb\x3e\x5a\x2d\xcb\x1d\x5f\x16\x56\x70\x30\x72\xbf\x2c\xac\xef\xa3\x47\xf5\x8b\xa0\xe9\xe0\x78\xdf\xdb\xbf\x7f\xb5\x2d\xf8\x7d\x1f\x1d\x3e\x3d\x4c\x39\x93\x91\x46\x68\xc7\xd7\xea\xde\xf7\xf1\x3a\x45\x6a\xff\x18\x65\xbf\x8f\xf7\x3a\x3d\xfe\x13\xf4\x1c\x4c\x6b\x74\x3f\xd6\xd6\x8f\x69\x65\x79\xef\xc7\xb4\x0a\xa6\x0d\x20\x3f\xa6\xd5\x2f\xd9\x61\x9a\x65\xa4\x9f\xd5\xb7\x9f\xd5\xb7\xbc\xb0\x3f\xab\x6f\xbf\x2c\xb5\x35\xe2\xf5\x67\xa9\x2d\x38\x4c\xdf\x3f\x46\xd9\x2f\x0e\xe8\x46\x31\xff\x38\xa0\x83\xc3\xe7\xec\xc7\x28\xfb\x31\xb7\x2c\x71\xfd\x98\x5b\xc1\xc1\xbe\xfd\x31\xb7\x82\xf7\xb6\xfc\x1b\x7b\x2b\xa8\x0c\xb5\x1f\x73\xeb\x27\x3b\x4b\x26\xb5\x1f\x73\x2b\xd8\x2c\x05\xfd\x58\x5b\x41\xb5\xf1\xe2\xc7\xda\x0a\x46\xdf\xfd\xbd\x56\xcb\xde\xc3\x66\x01\xe1\x27\x4c\x39\x58\xe7\x11\xfe\x18\x5d\xbf\xaa\x39\x32\x7f\xfd\x18\x40\xc1\x7f\x2f\x79\x66\xf5\x6f\xd5\x35\xff\xf6\x62\x38\x0e\xe9\x57\xd7\xbf\x4d\xb7\xa5\x52\x0c\xa0\x60\x74\xc5\x65\x00\x05\xeb\x08\x85\x1f\x03\xe8\xc7\x00\x62\x14\xfd\x18\x40\xc1\xb4\x6b\xfe\xc7\x00\x0a\x8a\x2d\x65\x3f\x06\xd0\x2f\xde\xe6\x95\x0b\xf7\x67\x25\x2f\x18\xb6\xab\xfc\xd8\x44\xbf\xa6\x43\x8d\x05\xce\xe5\x60\xf8\xba\xff\xd8\x44\x41\x75\xa6\xdd\x8f\x4d\x14\xbc\xbf\xac\xb9\xa6\x52\x89\xf2\xdd\xa2\x8e\x7f\x56\x0a\x7f\x71\x25\x37\x33\xce\x8f\x51\x14\x6c\xfb\xf0\x4b\x95\x62\x27\x99\x5b\x7f\xec\xa4\x60\xca\x9e\xf2\x63\x27\xfd\xfa\x7a\x68\x2a\xcf\x28\x0a\x86\xfd\x91\x3f\x46\xd1\x8f\xb5\x63\x43\xc0\x8f\xb5\x13\x1c\xab\xd9\x58\x3b\x3f\xd6\x8e\x04\x5c\x3f\xd6\x4e\x30\x3f\xeb\x36\x1d\xff\xa2\xd9\x8c\xf6\x63\xed\x04\xcd\xea\xe1\xcf\x7a\xdf\x4f\xc8\x6d\xe2\x8b\x7e\xec\x9f\x60\x63\xfb\xfd\xd8\x3f\x41\x95\x86\xe6\x67\x05\x30\x58\x27\x4a\xfc\x2c\x00\xfe\x72\x44\x77\x93\x5f\xe6\xc7\xff\x1b\xd4\xdd\x50\xb3\x00\xf8\xdb\x8d\x52\x2d\xc4\x72\x0a\xa6\xfd\x6f\x3f\x21\xaf\x3f\xab\x6d\xb2\xb8\xfc\xac\xb6\x05\x93\x51\xf0\xb3\xda\x16\xec\x4e\x00\xfb\x31\xb9\x82\xcd\x0e\xf0\x1f\x93\x2b\x78\xff\x2c\x95\xda\x57\x39\x7e\xd9\xd0\x90\x36\x63\x85\x05\x45\xb0\xc6\x8f\x15\xf6\x9b\x5a\xdb\xeb\xc8\xe4\xfa\xcd\x88\x5e\x8d\x66\x65\x2d\x68\x72\xe8\xff\x18\x61\x3f\x0b\x6b\x26\x00\x46\xd8\xcf\xc2\x5a\x35\x48\x2d\xac\x05\x9b\x9c\x22\x3f\x0b\x6b\xc1\x90\x10\xee\x27\x92\xf5\xc7\x7c\xb3\x33\xea\xc7\x7c\x0b\xd6\xf2\xc7\x8f\xf9\x16\x54\x67\x7f\xfc\x04\xb2\xfe\x1c\xf7\xbd\x2b\x99\x6a\x5a\x92\x13\xb9\xf5\x9b\xab\x9e\x11\x28\x43\x31\xbc\x9f\x87\x8e\x8a\xd7\xe2\xc7\x7c\xfb\xc5\x09\xbd\xc6\x1e\xeb\xed\x77\xac\x4a\xa5\x39\xac\xc9\x05\x4d\x1a\xb3\x1f\xeb\xed\x67\x99\x4e\x76\xfc\x1f\xf3\x2d\xd8\xc5\xb3\xfc\x2c\xd3\x05\xef\x6d\x69\x22\xc1\xad\x3f\xcb\x74\x06\x0c\x23\xef\x77\x98\xab\x7d\x6e\x8e\x55\x5e\x1f\x76\x97\xbc\x3e\x5f\xbd\x17\x1b\xfa\xc7\xca\x0b\x86\xbc\x45\x3f\x46\xde\xef\x2b\x54\xc2\x57\x89\x49\x17\x1c\x6c\xd7\x9f\xb0\xd5\xdf\x77\x95\x2d\x35\x65\xd2\x05\x43\x7a\xa3\x1f\x8b\x2e\x38\xd8\xa9\x3f\x16\xdd\x2f\x3b\xf8\x5a\x8b\x87\xe2\x67\xed\x2e\x38\x18\x5c\xbf\xef\x2a\x6e\x3e\x71\xfd\x1f\xbe\xd8\x3f\x06\xdf\x2f\x19\x2e\x9b\xc3\x0a\x7e\x96\xf6\x82\x29\xb6\xea\xc7\x06\x0c\x46\xcf\xea\xed\x8f\x0d\x18\xac\xb3\x65\x7f\x16\xfb\x82\xad\x1b\x3d\xfc\xd2\x3f\xeb\x7f\xd6\xc5\x7e\xd6\xff\x82\x26\x55\xf1\x8f\xf1\xf8\x4b\x4a\x91\x26\x71\xcd\xcf\x06\xc2\x60\x8a\xdc\xff\x31\x1e\x83\xe9\xbc\x88\x1f\xe3\xf1\x67\x49\x50\x24\xed\xcf\x92\x60\xb0\x39\xc7\xe5\x67\x49\xf0\x67\x49\x90\x4a\xfd\x59\x12\x0c\x8a\x93\xbb\x7e\x96\x04\x83\x41\x1f\xfd\x58\xa2\xbf\x84\xab\x36\x39\x05\x7e\xe2\x55\x83\x26\x9d\xf3\xcf\x66\xc4\x60\xae\x51\x61\x33\xe2\x2f\xee\xf1\xb5\x2d\xe7\x67\x31\x31\xa8\xb3\xb8\xa4\x06\x71\x8f\x37\xfb\xd5\x7e\x56\x13\x83\x22\x8c\xe4\x67\x35\x31\xd8\x56\x9c\xe0\xcf\x72\xe2\x4f\xaa\x7f\x53\xad\xd5\xc4\xdf\xa5\x43\xb3\x4c\xf3\xe3\x45\x0f\x36\xdb\x8f\x7f\x0c\xe7\xa0\xf1\xed\xfd\x18\xce\xc1\x26\x70\xf6\x67\x81\x31\xd8\x9c\xe7\xf3\xe3\x57\x0f\x36\xf6\xfb\x8f\x5f\xfd\x27\xf3\x88\x2e\xe6\x57\x0f\xde\x52\xa4\xd1\x38\xd6\x83\xcd\x5a\xe2\x8f\x5d\xfe\xb3\x80\xd9\x7c\x3a\x19\xe6\x41\x61\x2f\xfe\x18\xe6\xbf\x5b\xe7\x69\x35\x4b\x93\x41\xb3\x0b\xfa\x27\xd6\xf5\xc7\x70\x16\x1f\xf6\x63\x38\x07\xa3\x99\x82\x18\xce\xc1\xc6\x61\xfe\xbb\xd7\x03\xb4\x6d\xcc\xfc\x1f\x8f\x79\x50\x25\x89\xf9\x71\x98\xff\xd8\xd2\x76\x58\xfe\xd8\xd2\xc1\x10\xaf\xf8\x63\x4b\x07\xef\x6d\xae\x69\xc9\x27\x79\x12\x0c\x49\x1e\xf3\xdf\xa3\x8d\x7c\xfc\x19\xd0\xc1\x68\xa6\x42\x1e\xf3\x9f\xb5\xcf\x35\x27\x5b\xfb\x0c\x86\x8c\x13\x3f\x6b\x9f\x3f\x6b\x9f\x92\xb8\xfc\xac\x7d\x06\x87\x97\xea\x64\x66\x9f\x56\x30\x25\x71\x39\xd9\xd4\xc1\x68\x79\xb9\x4f\x2b\x98\xc1\x90\x71\xe2\x14\x7f\x1a\x0c\xe9\x2b\x4e\xf1\xa7\xc1\x14\xa7\x76\x8a\x3f\x3d\x13\x59\xda\x5a\xf7\xcc\xd3\xb5\x33\xc5\xf0\xff\x97\x4b\xa9\x40\x66\xdf\x93\xbf\xfc\x64\xb2\xdb\xa0\x7d\x32\xd9\x83\x95\x1b\xe8\x64\xb2\x07\xcd\xa6\x84\x93\xc3\x3c\x28\x02\x1d\x4f\x46\xfc\x69\x69\xd5\x9e\xdc\x93\x15\x1f\x94\x7d\xfd\x59\x73\x29\x5b\xd8\x0e\x7f\xa6\x31\x24\x1a\x89\x57\xf6\x64\xea\x07\xc5\xf2\xc2\xc9\xd4\x0f\xde\xff\x77\x9b\xd6\xd8\x32\xd4\xf2\xa9\x38\x6d\x49\x0c\xb6\xd1\x3d\x52\x63\x6c\xab\x9a\x6e\x53\xcd\x28\x02\x39\x3f\x4e\x82\xe0\xb4\x00\x2b\xaa\xf6\xa4\x08\x82\x21\x23\xc7\x49\x11\x04\x75\x5b\x77\xa9\x66\xd6\x5f\x7d\xb1\x4e\x8a\xe0\x74\x5a\x78\x3c\xbc\x27\x45\x10\xbc\xff\x9f\x7e\xb2\x97\x31\xd8\xec\xca\x3f\x89\x84\xa0\xd9\x07\x71\x12\x09\x81\x73\xa4\x4f\x0b\xb3\xc1\x70\x7e\xda\x69\x5d\x36\x18\x36\x7b\x9e\xd6\x65\x83\x29\xc7\xc8\x69\x27\x63\x70\x98\xba\x4f\x31\x07\xc1\x5b\x2e\x65\x35\x32\xd6\x8a\xae\x4b\x5a\xec\x45\xb1\x89\xee\xb4\xa0\x1b\xac\xa3\x2c\x4e\xeb\xb9\x27\x3d\x23\xe6\xf8\xa4\x67\x82\xd1\x3f\x7e\xa9\xc5\x12\xad\xd0\xda\xfa\x37\x4d\x96\xcd\x8d\xeb\x05\xb0\xec\x1b\xf4\x7d\x5d\xd2\x62\x96\x7d\x9d\x8d\x7f\x92\x3d\x41\xb3\x5a\x79\x52\x3d\x27\x3d\x23\xaf\xce\x49\xcf\x04\x6d\xb6\x7f\x38\xaa\xeb\x24\x77\xce\xc4\x32\x34\xc7\x15\x9e\x82\x19\x82\x2a\xb9\xd5\x29\x06\x37\x68\xb2\x65\x9c\xc2\x1b\x82\x2a\x7a\xe4\x24\x8a\x4e\x0a\xc8\xb9\x3f\x27\x05\x14\x34\x49\xbd\x4f\x0a\x28\x28\x16\x4b\x4f\x0a\xe8\xa4\x80\x9a\x61\x42\x01\x05\x9b\x2c\x2c\x27\x05\x14\x74\x69\x08\x4e\x0b\xc5\x27\xb5\x63\x32\x3e\xa9\x9d\x60\x05\xfe\x9d\xd4\xce\xd9\x75\x87\xf9\x48\xfc\x44\xd0\x77\xf3\x85\xf8\x89\xa0\x5a\x39\x39\xc5\xba\x06\x5b\x5b\xd3\x8a\x90\x8a\x60\x3b\x3e\x1e\xa0\x06\x16\x8f\xd7\x3b\x6e\xf1\x38\x68\x32\xee\x9e\x16\x8f\x83\xbe\xaf\xbb\x74\xda\x8b\x95\xa4\xfd\x14\x51\x11\x6c\xd3\x48\xa7\xb9\x82\x62\xb1\xf7\xa4\xb9\x82\x4d\x48\xf5\x49\x72\x05\x55\x2c\xd7\x49\x72\x9d\x22\x6e\xa5\xe6\x39\x09\xac\xa0\xca\xf4\x75\x12\x58\xa7\xe0\x89\xf5\xc2\xd1\x4e\x67\x4e\x83\x5b\xc5\x20\x9d\x4e\xd2\x29\xdf\x8d\x93\x74\x3a\xb3\xe3\xb0\xad\xd1\x6f\xcb\x61\xb0\xd2\x34\x9c\x96\xa6\x4f\x0a\x8b\x93\xe8\xa4\xb0\x82\xf2\x99\x2e\x19\x43\x09\xba\x6d\x72\xe3\x9c\x82\x6e\x83\x2e\x37\xf7\x29\x12\x22\xd8\x56\xc6\xc7\x53\x28\x44\xd0\x05\xba\x9f\xb4\xd9\x69\xf1\x9b\x9e\x3a\x29\xb1\x60\x85\x7f\x9c\x94\xd8\xb9\x4b\x38\xba\xa9\x82\x6e\xd9\x93\x46\x41\x7b\xd8\x54\x18\x6c\x76\x3f\x9f\x36\x15\x9e\x94\x98\x84\x3c\x27\x25\x16\x54\x87\xdb\x9f\xc2\x1e\x82\x26\x2e\xf9\x24\xce\x82\x15\x8f\x7d\x12\x67\xc1\xfb\x67\x69\x0f\xea\x2c\xe8\x82\xfc\x4f\xe2\x2c\xe8\xd3\xe8\x23\xce\x82\x6d\x6d\x98\x3b\xa9\xb3\x60\xe5\x25\x3d\x89\xb3\x60\xe3\x08\x3c\x89\xb3\x33\x4a\x6c\x25\xb7\x3d\x49\xb1\xa0\x8b\x69\x3c\x29\xb1\x33\x21\xc2\x4d\x92\x9e\x73\xae\xba\x67\x37\xbb\x21\x69\xb9\x3d\xe8\x8e\x89\x3a\x2d\xb7\x9f\x89\x1a\x6e\xf2\xf6\x9c\xa2\x86\x83\xb1\xbe\x4d\x04\x5b\xd0\x77\xcd\x6d\xb9\xfd\x3c\x74\x9e\x59\x87\x12\x0b\x2a\x07\xc7\x49\x88\x9d\x62\x28\xec\xd1\x38\xc5\x50\x9c\xce\x10\x37\x9d\x10\x67\xe7\xb1\x6a\x90\x5a\x51\x62\xc1\xb6\x3e\xf2\x56\xe0\x4f\xe2\x4c\xe6\x81\x93\x38\x0b\x8a\xbd\x4d\x27\x71\x16\xbc\xb7\xe5\x09\x96\xe0\x83\x2e\xad\xe7\x49\xaf\x05\xc5\xb9\x30\x27\xbd\x16\x94\x9e\x55\xa2\x53\xb8\x71\x50\xec\xf6\x3d\x85\x72\x04\x9b\x44\xd0\xa7\x50\x8e\xd3\x72\x7e\x8f\x75\x7a\x5a\xce\x0f\xba\x43\x58\x4f\xda\x2f\xd8\x2c\xde\x9d\xb4\x5f\x50\xe6\xaa\x92\xd6\x10\xca\xe1\xe4\xda\xd3\x72\x7e\xd0\x6d\xc7\x38\xc9\xc1\xa0\x38\x4e\xf8\x24\x07\xcf\xdf\x6a\xa0\x34\x9a\x50\x8e\xa0\x3b\xa8\xe3\xa4\xf7\x82\xbe\x86\x37\xbd\x17\x6c\x02\x26\x4f\x7a\xef\xb4\xe6\xdf\x23\xf8\x4e\xb2\x2d\xd8\x46\x0c\xdd\xd3\x9a\x7f\xb0\x16\xaf\x4f\x42\xee\xe4\x06\x90\xe7\xe1\xa4\xe4\x82\xe6\x5c\xcd\x93\x92\x0b\xfe\x58\x24\xf2\x45\x06\xdb\x9a\x23\xa5\x90\x09\x9a\xc4\x38\xe7\x6f\x55\xf3\xc9\x49\x7a\xb9\x44\xee\x9d\xa7\xa9\x29\x02\xea\xe4\x3f\x08\x56\x14\xe1\x49\xc7\x05\xeb\x88\xa6\x93\x8e\x3b\x4f\x5d\xd7\x5c\x53\x27\xc7\xb3\x7d\xfe\x41\x56\x9f\xc2\x48\x82\x6d\x5b\x7f\xa2\xc6\xa7\xb7\x97\x31\x48\xfa\x05\x45\x42\x93\x93\xf2\x3b\x45\x88\xf4\xac\x1b\x9c\x34\x5d\xd0\xd7\xd8\x17\x21\x72\x72\x86\x48\x5d\x74\xd2\x74\x41\x9f\xde\x7b\x9a\x2e\xe8\x0e\x6f\x3f\x69\xba\x60\x73\xd4\xc3\x49\xd3\x05\x5d\xae\xd1\x93\xa6\x0b\xba\xcd\x2b\x27\x4d\x77\x12\x6b\x9d\xe9\x47\xac\x05\x9b\x13\x44\x4e\x62\xed\xcc\x01\x02\x4d\x3e\xe2\x93\xcb\x24\x28\xc7\x7a\x80\x4e\xbb\xd4\xd3\x17\x97\xcf\x24\xe8\xb6\xaa\x9c\x64\x5e\x50\x0e\xc3\x89\xcc\x0b\x36\xfe\xfd\x53\xf8\x74\xb0\xce\x1d\x3d\x85\x4f\x07\xef\xff\xa7\x06\x76\x39\x06\x65\x19\xb8\x76\x39\x9e\xb7\x51\xcd\x90\xe7\x93\x09\x9a\x98\xed\x93\x4f\xe6\x24\x2d\xed\x6d\x38\x49\xcb\xa0\xac\xcf\x1a\x69\x19\xf4\x69\x6a\x27\x2d\xcf\x5b\x73\x30\xd1\x04\xc2\x04\x7d\x0d\x6b\x6a\x33\xe8\xd2\x72\x9e\xd4\x66\xb0\xd2\x2c\x9d\xc2\xb3\x83\x6e\xe7\xd1\x29\x80\xe6\xa4\x49\xbb\xd7\x86\x26\x0d\x9a\x4d\x7a\x27\x4d\x7a\x3e\xab\x39\x5c\xd3\x1c\xc9\x7e\xf9\x59\xbf\xd4\x1c\x4f\xf2\x8a\x9a\xde\x64\xd3\x39\x73\x1e\x9c\x0d\x56\x27\x95\x1a\x6c\xad\xb3\xab\xc9\xd4\xa0\x4f\xdf\x43\x9e\x9f\xa0\x1e\x2c\x72\x9e\x9f\xd3\xf1\xe0\x66\x02\x5a\x36\x68\xcd\xe0\xa6\x65\x83\x2e\xd2\xe4\x24\x65\x4f\x2e\x23\xa9\x45\x2e\x5a\xf6\x12\xc7\x23\xf9\xca\x25\x8e\x27\x28\xb6\xfa\x5e\xe2\x78\x2e\x9e\x25\xd9\xaf\x2e\x9e\xa5\xa0\x3b\x30\xf9\xa2\x82\xaf\xec\xb9\x6c\xb2\x5f\x5d\x34\x6f\xd0\x65\x5f\xb9\x68\xde\xeb\xe3\x2d\x88\x7d\x70\xf1\x36\x05\x2b\xcc\xe6\xa2\x79\x83\x3e\x57\x39\x2e\x97\x8c\x84\x74\xe8\x45\xf4\x06\x7d\x56\xb5\x4a\x4d\x2f\x3e\x29\x8e\x88\x8b\x9c\x0d\xd6\x69\x38\x17\x35\x7b\x89\x0a\x62\xb7\x5d\x54\x69\xb0\xf6\xa2\x5c\x44\x69\xf0\xde\x96\x2a\x88\x14\x0a\xfa\xcc\xe4\x7e\x89\x14\x0a\xfa\xcc\x87\xe2\xa2\x5d\x83\xb2\x7f\xdc\xa5\x52\xdb\xaa\x41\x9a\x8d\x83\x2b\xd8\xe4\xf0\xbb\xc8\xd9\xab\x18\x6b\x51\x4a\x17\xbd\x19\x14\x1b\x7b\x2f\x72\xf3\xe2\x94\xb2\xc2\x72\xd1\x9b\x41\xb7\xdb\xeb\xa2\x37\x2f\x61\x3f\x72\xfa\x5e\xe4\xe5\x25\xec\x27\x5f\xf9\x8b\xbc\x0c\xba\x0f\xe7\x45\x5e\x5e\xb4\xa4\xad\xc3\x17\x2d\x19\x74\xdb\xb8\x2e\x5a\xf2\x12\x09\x24\xe7\xee\x45\x39\x06\x9b\xdc\xc5\x17\xe1\x18\xfc\x19\x45\x84\x63\xd0\x6d\x66\xb8\xe8\xc6\x4b\xbc\xd0\x88\xc5\x77\x11\x8e\x41\x77\x40\xfd\x45\x38\x5e\x7c\x63\x66\xe1\x8b\x4a\x0c\xba\x6d\x4b\x17\xdf\x58\xf0\xde\x96\xba\x73\x8e\x05\x45\x40\xe5\x65\x5b\x67\xb0\xb6\xff\x5f\xe4\x65\x50\xb7\x8f\x3f\x53\xf5\xb8\xcb\x24\xf9\xbf\xb8\xcb\xae\xb6\xaa\x9e\x0e\xa5\x1f\x83\x22\x3b\xd7\x45\x3f\x5e\xbc\x6a\x82\xd7\x2e\x02\x32\xe8\x16\x32\x2f\x5e\xb5\x60\x5b\x27\xfd\x5f\x42\x8d\x82\x75\x4c\xef\x45\x66\x06\x85\x50\xbf\xc8\xcc\xa0\xc8\x01\x7b\x91\x99\x41\xe7\x32\xba\xa8\xcc\xe0\xfd\x7f\xbf\xd4\x42\x2f\xda\x68\x4a\xab\x81\xe2\x7b\xdb\x8e\x7f\xc8\x6f\x76\xf1\xcc\x05\xef\x1f\xfb\x17\x0d\xd8\x62\x61\x55\xcf\xd2\x80\xc9\xbf\xb3\x19\x27\x6d\x35\x60\xa6\xed\x58\x23\x17\x45\x1b\xbc\x7f\x96\xae\x25\x69\x83\xf2\x49\xc4\xc7\x65\x93\x67\xd0\x25\x33\xb8\xec\x1b\x08\xca\x91\x6f\xc0\x45\xf7\x06\x7d\x66\x5d\xf2\xa2\x7b\x2f\xce\x40\xe7\x54\x5d\x9c\x81\xc1\x12\xd6\x17\x67\x60\x50\x38\x33\x2e\x1a\x37\xd8\xda\xd0\x19\x44\x6e\xd0\xe7\x2a\x99\x9a\x77\xaf\xcd\x2a\x87\xaa\xe7\x08\x3c\xbb\x0e\x2f\x2a\x37\x78\x6f\xcb\x13\xc8\xdc\xa0\xcb\x73\x75\x91\xb9\x97\x7d\x03\x4c\x84\x8b\x1f\x31\xe8\xd3\x10\x26\x73\x2f\xfb\x06\xec\xdf\xbf\x78\x0d\x83\x75\x54\xff\xc5\x6b\x78\x0d\x95\x37\x2c\x6c\x12\x08\xb6\x63\x73\x49\xe5\x5f\x14\xeb\xa3\x17\xe9\x7b\x8d\x55\x2b\x65\x53\xab\x24\xe5\x91\xda\xe6\x12\xf1\x1f\xf4\x99\x0f\xd4\x45\x20\x5f\x64\xae\xfd\x7c\x17\x99\x1b\x34\x41\x9f\x17\x99\x7b\xf1\x37\x8a\xbe\xbf\x68\xda\x60\x9b\xe6\x6d\xfe\xc6\xa0\xc8\x19\x70\x51\xb9\xc1\xb1\xf9\x2e\x50\xb9\x97\x10\x2f\xc7\x9f\x5e\x9c\x8b\x41\x9f\xdd\x6d\xba\x4a\xd8\xfe\x30\x03\xd1\xaf\x41\x1d\xa6\x2e\xfa\xf5\x22\x56\xd9\xe9\x17\xb1\x1a\x94\xc3\xcc\x42\xac\x5e\x3c\x89\xd2\xa0\x5d\xd4\x6a\x70\x38\x72\xf5\x22\x56\x83\x2a\xe6\xf2\x22\x56\x83\xea\xd8\xab\x8b\x58\xbd\x88\x55\xc9\xd2\x2e\x62\x35\x58\x91\x39\xd7\x5c\x35\xd0\x2d\x6a\xc5\x6f\x18\xac\x0d\x78\x17\xfd\x7a\x1d\x5e\x2a\x43\x86\x5a\x0d\xfa\x6c\x2e\xa9\x3b\x01\x3b\xb2\xba\x7d\x11\xb0\x57\xd4\xaa\xe3\x10\x2f\x6a\x35\xa8\x6b\xd2\xe0\x70\xbc\x28\x53\xe9\xd8\x2e\xca\x34\x58\xb9\x13\x2f\xca\x34\x78\x6f\x4b\x4d\x05\x87\x05\x45\xda\xe5\x8b\x27\x31\xe8\xdc\x37\xd7\xb1\x6a\xf0\xe4\x00\x91\x5c\xa2\x5f\x83\x6e\x13\xf0\x45\xbe\x5e\xce\x2d\x88\xe9\x79\x91\xaf\x17\xf9\x3a\xb4\x1a\xf9\x1a\x94\x4f\x6c\xa6\x8b\x7c\x0d\xde\xa9\x3c\x97\x54\xf3\xeb\x9d\xf2\x02\xd1\xaf\x41\xb5\xed\xfd\xa2\x5f\x83\x22\x46\xf2\xa2\x5f\x2f\x5b\x11\xba\xff\xd7\xc5\x5f\x6a\xde\x7f\xe9\xe2\xc8\x57\x29\x9f\x2e\xf2\x35\xe8\x96\xf3\x2e\xf2\xf5\xe2\xba\x1c\x31\xc4\x2f\x5a\x35\xe8\xe2\x0b\x2f\x5a\x35\x68\xce\xdd\xbe\xf8\x26\x2f\xbe\x49\x29\x77\x2e\x5a\x35\x68\x4e\x4e\xbb\x68\xd5\xeb\xa7\xe6\xfe\x8d\x27\x32\xd8\xa6\x37\x9b\x27\xf2\xa2\x5f\x65\x76\xbb\xe8\xd7\x60\x3b\x98\x5f\xf4\xeb\xc5\x9f\x28\xb3\xdb\x45\x60\x06\x7d\x46\xac\x5e\x04\xe6\xc5\x9f\x68\x86\xe1\x4e\xbc\x68\xce\xb1\xbb\xa6\x57\x5e\xfc\x19\xdd\x34\x67\xd0\xa7\x81\x46\x73\x06\xf5\x30\x44\xf9\x0e\x83\x6e\xff\xf6\x25\x91\xe9\xc5\x9d\x38\xbc\x8b\x44\x65\x50\x96\x09\x45\x53\x06\x75\x7d\x24\x69\xca\xeb\xf2\xf6\x98\x87\x08\xc8\xa0\x36\xc5\xe0\x26\xbc\x2e\xe3\x45\xa5\x48\xc3\xa0\x88\x8b\xbf\x48\xc3\x60\x5b\x19\x6a\x2e\xda\x30\xa8\x6b\x92\xe7\xee\x0b\xba\xec\xac\x17\x77\xdf\x25\xc0\x4e\xca\xb1\xeb\x5a\x65\xcb\x77\x76\xfc\x43\xbe\x94\x8b\x98\x0c\xfa\x34\x83\x12\x93\x17\x31\x39\xb2\xda\x7c\x11\x93\x17\x31\x19\x47\xd4\x45\x4c\x06\x1b\xd7\xe8\x45\x4c\x5e\xb7\x4e\xf3\xf6\x92\x8e\xc1\x0a\x62\xbb\x28\xc7\xe0\xbd\x2d\x0d\x4d\x3a\x06\x7d\x7a\xe3\x04\xf8\x5d\x64\xa2\x24\x65\x17\x99\x18\xcc\x3f\xff\xa6\xd7\x5e\xb4\xe2\xeb\x41\x26\x5e\xce\x15\xd7\x43\x22\xf7\x2e\xca\x51\x8e\xb2\x8b\x72\x0c\x36\x7b\x06\x2f\xca\xf1\x7a\x3e\x6e\xcb\x4f\xe9\xc4\x60\x1d\xad\x74\xd1\x89\x17\x9d\x28\x47\xd9\x45\x27\x5e\x4e\xa8\xf3\x59\xa0\x13\x2f\x3a\x51\x8e\xb2\x8b\x4e\x0c\xa6\x28\x8b\x8b\x4e\x0c\x0e\x9b\x2f\x2e\x3a\x31\x28\xf6\x03\x5d\x02\x08\x2f\x1e\xce\xdd\x3c\x45\x3b\x06\xed\xb3\x7e\xa9\x85\x9e\x38\xfa\x57\xc9\xb4\x50\xa4\xe3\xfa\x78\x90\x8e\xc1\x18\xb4\x07\xe9\x78\x11\x85\x7b\xa6\xcb\x9b\x28\xbc\x39\x38\xf7\x38\x95\x6e\xd2\x2e\xa8\xdb\xee\xd2\x70\xe9\x70\x5b\xcf\xb5\xaf\x6b\xdf\x9c\xa3\xbe\xe5\xd2\xcf\xa5\x9f\xdb\x8e\x5c\x3b\x5d\xcb\x77\x78\xf8\xe5\xe5\x52\x0e\xe6\xcf\x58\xbb\x29\xbb\x9b\xb2\xcb\x14\x7a\x53\x76\xc1\xd6\xa4\x28\xbb\xb9\x33\x83\xe2\x38\xf9\x9b\x3b\x33\xe8\x32\x2b\xdc\xf4\xdf\x9d\x7c\xaa\x4d\x8a\xb2\x9b\xef\x32\x68\x76\x0e\xdf\x7c\x97\xb7\x38\x45\x89\xc6\x6e\xce\xcb\xa0\x4b\xc0\x70\x93\x89\xc1\x3a\x43\xea\x26\x13\xef\x4d\x73\x64\x48\xde\x34\xe1\x4d\x13\xc6\x82\xbc\x69\xc2\x3b\xf9\x74\x1a\xa5\x71\xcb\xa7\x13\x34\x5b\xd7\x6f\x9a\xf0\xde\x56\x45\x73\x8d\x43\xf3\x16\xe1\x98\xf7\xec\xe6\xcf\x0c\x36\xc7\x95\xde\xfc\x99\xb7\x0d\x25\x9c\xb4\x37\x87\x66\xd0\xa4\x33\xbc\x39\x34\x83\x6d\xcb\x84\x79\x13\x98\x41\x97\xff\xe0\x26\x30\x83\x69\x1d\xe7\xa6\x2f\xef\x62\x44\xea\x63\xee\xcb\xa0\xf2\xf3\xdc\xf4\x65\xf0\xde\xe6\x9a\xba\x13\x98\xc3\xbf\x19\x09\x2f\xf6\x3d\x2f\xed\xcd\x7f\x79\xdb\x33\x3d\xdd\xa5\x35\xb8\x2f\xe5\x0f\xbd\x69\xce\x60\x93\xd0\xeb\xe6\xbf\xbc\x39\x2b\xe5\x32\xbb\x69\xce\xa0\xcb\xfd\x70\xd3\x9c\x37\x67\xe5\x1e\xc9\x71\x13\x9d\x41\x11\xf2\x74\xd3\x9c\x37\xcf\xe4\x1e\x03\xf2\xe6\x99\xbc\x79\x26\x77\x0f\x50\xf7\xaa\xdf\x9b\x9f\xaa\x7c\xb2\xb3\xca\x50\x7e\xd3\x9c\x77\x35\x15\xc5\x2c\xbe\xc9\xc9\x60\x7e\x56\x71\xd5\x8a\x4e\xdc\x33\xa1\xdc\x74\x62\x50\x8e\x7c\xc8\x6e\x3a\x31\xe8\x33\x36\xc8\x4d\x26\xde\x14\x18\x67\xd5\x4d\x81\x05\x2b\x45\xe3\x4d\x81\x05\x7d\x0e\x77\x79\x66\xf7\xcc\x7c\x9c\x6f\x42\xea\xa6\x9a\xf2\xd1\xba\xa9\xa6\x60\x6b\x52\x86\xdd\xdc\x85\xc1\x66\x7d\xea\xe6\x2d\xbc\xed\x48\x91\x1f\xec\xe6\x2e\x0c\xea\xe1\xa5\xa2\xb7\x6e\x1e\x44\xb1\x9c\x37\x75\x15\x34\x5b\x29\x6f\xe2\xea\xa6\xa4\xe4\x30\xba\x29\xa9\xe0\x10\xd3\x7c\xf7\x55\x85\x98\x17\x99\x5f\x6f\x42\xea\x1e\xeb\x01\xa9\x15\x05\x13\xf4\x69\x16\xb3\xb3\xf9\x26\x6a\x24\xd0\xba\x89\x9a\xa0\x3b\x4c\xed\x26\x6a\x82\xe9\xf0\xba\x9b\xa8\xb9\x77\xbf\x8c\xe8\xb8\xf9\xcc\x82\xba\xc6\x29\x9f\x59\x50\xe5\x63\xbc\x6d\x21\xb9\xa7\x06\x3f\xfe\x21\x21\xe9\x4d\x7f\x04\x45\xa0\xcb\xcd\x7f\x76\x93\x24\xdc\x4f\x37\x49\x12\x14\xc1\x0c\x37\x49\x72\xf3\x9f\xe9\x22\x8a\xe4\x16\xc9\xc8\xfd\x74\xd3\x1f\xc1\xb6\xde\x6a\xfa\xe3\xe6\x05\xe3\x11\xbd\xa9\x88\xa0\x4f\xb5\xe1\x05\x0b\x56\x38\xef\x4d\x57\xdc\xe2\x11\x79\x6a\x6e\xf2\x20\x98\x73\xba\xa4\x1c\xe2\x11\x65\x8b\xba\xc5\x23\x06\xdd\x8e\x8a\x9b\x17\xec\xb6\xc3\xc4\x9a\xed\x4d\x45\x04\x85\x82\xbf\x89\x88\x60\xb7\xce\x7d\x13\x11\x37\x2f\x98\xe5\xf0\x9b\x8a\x08\xba\x4c\x2a\x37\x15\x71\xdb\x74\x62\xf5\xfe\xa6\x19\x82\x56\xf2\xdd\xbd\x49\x86\x9b\x3e\xb0\x36\x7d\x13\x08\x41\x5f\xb5\xa2\x0f\x6e\x7b\x95\xf9\x87\x6e\x02\x21\xe8\xd2\x9a\xdc\x04\xc2\x2d\x92\x91\xaf\xe1\x26\x07\x82\x95\xea\xe7\x26\x07\x6e\xbb\x4e\xac\xe4\xde\x0c\xfd\xdb\xf1\x64\x26\x26\x86\xfe\xcd\x4f\x65\x31\xe9\xe6\xa7\xba\xf9\xa9\x8c\x4f\xb6\xff\xcd\x4f\x95\x25\xe0\x9b\xed\x7f\xdb\x85\x6c\x99\xe8\xe6\xa8\x0a\xfa\x34\x1b\x92\x03\xc1\x7b\x9b\x87\xaa\xe9\x2f\x4a\xc8\x4b\x21\x30\x31\xe8\x33\x26\xc6\x4d\x21\xdc\xbf\x55\x51\xd7\x54\xf4\x97\x09\xf2\x50\x34\x15\xfd\xe5\xdd\x9c\xfe\x5f\x27\xe7\xe4\xed\x66\x6d\xf7\xe6\xcf\x0a\xba\xec\x3b\x37\x7f\xd6\xbd\x84\x44\x56\x17\x6e\x4a\xe2\x96\xa5\x27\x26\xfc\x2d\x30\x31\xe8\x32\xed\xdc\x02\x13\x6f\x7a\xc3\xba\xe2\x4d\x6f\x04\xbb\x4c\x79\x37\xbd\x11\x4c\x71\x12\x37\xbd\x11\xbc\xbf\x4c\x7b\x13\x1c\xc1\x26\x44\xe5\x26\x38\x6e\x82\xc3\xea\xd6\x4d\x70\x04\x6d\x98\xa7\x09\x8e\x60\x5f\x93\x32\xc1\x11\x6c\xcd\xca\xe8\x7d\xae\x8a\xbe\x13\x9f\xfd\xf9\xb7\xf0\xc5\xa0\x53\x69\x37\x57\xd7\x4d\xaa\x50\xf5\x37\xa9\x12\x6c\x52\x6c\xdc\xa4\xca\xcd\xfd\x65\x9d\xe6\xe6\xfe\x0a\x1a\x97\xff\xcd\xfd\x15\x54\x1b\xd2\x6f\xee\xaf\x60\x70\x97\xdc\x34\x4e\xf0\xfe\x59\xda\x9b\xc8\xb9\xf9\xbf\xf4\x31\x8d\x73\xdb\x58\x44\xaf\xdf\x14\x4d\xb0\xad\x21\xc9\x25\x76\x5f\xab\xee\x69\x5c\x92\x25\x58\x9e\xb3\x9b\x64\x09\xfa\xd4\x53\x14\xcb\x4d\xb1\x30\x27\x28\x96\xa0\x2c\xbb\x8f\x62\x09\xfa\xcc\x5a\xdf\xcd\xfd\x75\x13\x31\xd6\xdd\x6e\x22\x26\x28\x52\xcd\xdd\x44\x4c\x50\xda\x7a\xa4\xaa\xdf\x71\x67\xaf\x4b\x6a\xce\x23\x66\x9d\xe9\xe6\x11\x0b\xb6\x4d\x3b\xf2\x88\x05\x95\x2b\xe0\xa6\x74\x6e\x3b\x92\xac\xeb\xdd\x74\x4d\x30\xe5\x70\xbf\xe9\x9a\x5b\xb0\x25\x6d\x7b\x13\x31\xc1\x5c\xcf\xe4\xfe\xba\xed\x16\xa7\xf3\x6e\x22\x26\x98\xd6\x39\x6f\x1a\x26\x78\x6f\xcb\x20\x25\x62\xee\xe5\xec\xf2\x4b\x75\x7f\xf4\x31\x13\x9d\x62\x09\xa6\x34\x78\x37\xc5\x12\x1c\xdb\x7a\x80\x8a\x3e\x39\xda\x84\x19\x42\xb0\xdc\x62\x2d\x49\xbf\x9b\x83\x2a\x98\x52\x02\x3c\xa4\xc8\xf3\x59\x6b\x04\x3d\xd7\x36\xd7\x72\x5e\x7e\xec\x8b\x87\x7f\x2a\xa8\xf2\x5b\x3c\xf6\x99\x3f\x1f\xf3\x55\x64\xc1\x43\xb1\x04\xd5\x5e\xff\x87\x7b\xea\xc9\x51\xd9\xcd\xab\xf7\x08\xc0\x0c\xba\xe4\x52\x0f\x5d\xf3\x88\xac\x9c\xff\x92\x93\xf4\x21\x55\x82\x62\x5d\xf1\xa1\x54\x1e\x21\x95\x8c\xd1\x87\x13\x2a\x28\xf2\x88\x3e\x64\x49\xd0\x2c\x92\x3f\x64\x49\xd0\x25\xec\x7a\xa8\x92\x87\xde\x30\xfc\x1f\x7a\x23\x98\x0e\xaf\x7a\xe8\x8d\x87\x90\xe0\xb1\x7d\x08\x89\xa0\x58\x98\x7f\x08\x89\xe0\xbd\x6d\xe6\x9a\x56\xcd\x41\xd6\x9f\x74\xdb\x43\x48\x3c\x0e\xb2\xce\x37\xeb\x21\x24\x82\x3e\x23\xa2\x1e\x42\xe2\x21\x11\x7c\x05\x1e\x12\x21\xe8\x16\x4b\x1f\x12\x21\xe8\x47\x3e\xb1\x0f\x85\x10\x14\xc7\xb1\x3f\x14\x42\x30\xff\x14\xec\x72\xc9\x37\x40\xf9\x6f\x97\x74\xd0\xe1\x9a\x1e\x78\xd1\x2d\x82\x3e\x14\xc2\xc3\x51\xe5\x23\xf0\x70\x54\x05\xd5\xb1\xde\x0f\xd1\x10\x4c\xdf\xdc\x87\x68\x08\x56\xd0\xef\x43\x33\x3c\xd5\x10\x8b\x29\xf1\xf0\x4a\x05\x5d\x4a\xb3\xc7\xbe\xae\x87\x8e\x98\x87\x07\x4c\xd7\x66\x12\x34\xa4\x69\xe9\x88\x87\x40\x98\x31\xca\x1e\x02\x21\x68\x5b\x75\x9b\x4a\xd5\xec\xbd\xf6\x4c\x11\x8c\x0f\x17\xd4\x7a\x28\x17\x54\x70\x98\xbb\x1e\x2e\xa8\x47\xbc\xa2\x38\xbe\x87\x23\xe9\x69\xe6\xe8\x14\x8d\xd7\xe8\xb1\x3f\x7d\xf5\x14\x7f\x50\xd0\xff\xfc\x52\xb7\x90\x1b\x87\xb7\x95\xdc\x78\xc8\x8d\x98\xd7\x0f\xb9\xf1\x70\xe5\x08\x15\x7f\xb8\x72\x82\x69\xa1\xe6\xe1\xca\x79\x04\x2c\x0a\x6f\x78\x38\x6e\x82\xe9\xf4\xdf\x87\x04\x79\x68\x0b\x8e\x8a\x87\xb6\x08\x8a\x68\xda\x87\xb6\x08\x0e\xfb\x6d\x1e\xbe\x9c\x87\xe3\xe6\x30\x72\x69\x8b\xa0\x9a\x92\x1f\x8e\x9b\x87\xdc\x90\x82\xed\xe9\xab\x0a\xf7\xfb\x22\x77\xcf\xd4\x09\x39\x7d\xba\x11\x34\x8f\xc8\xc3\xa0\x4b\xbd\xf7\x70\xd2\x3c\x82\x11\xe5\x5b\x7b\x78\x69\x82\xb9\xc6\x91\x60\xc4\x87\xe3\xe6\x88\x05\xf6\x70\xdc\x04\xc5\x2e\xbf\x87\xe3\xe6\x91\x83\xc9\xb9\x5a\x8f\x1c\x4c\xc1\x3a\xd2\xe9\x21\x5e\x82\xcd\x4e\xe0\x67\xac\xe2\x3e\x99\x92\xd3\x1e\xc4\x4b\x30\x6d\xba\x7f\x84\x2c\x3e\x42\x16\x25\xdd\x7a\x84\x2c\x06\xfd\x88\x19\xf5\x08\x59\x7c\xf8\x72\x8e\xea\xdf\x54\x2a\x21\x8b\x82\x57\x1f\xbe\x9c\x87\x2f\xc7\xe6\xc8\x87\x2f\x27\x38\xec\xa6\x7f\xf8\x72\x82\xbe\x86\x07\x5f\xce\x63\xef\x98\x6d\x31\x0f\x67\x4e\xd0\xd7\xf0\xb0\x77\xec\xe1\xdf\x91\xe3\xed\xe1\xdf\x09\xfa\xb1\x79\x80\x16\x4a\x14\x63\x93\xe3\xed\x21\xc9\x82\x43\xcc\xd2\x43\x92\x05\x53\xb0\xfb\x23\xb0\xf1\xb1\xab\x5f\x38\xdb\x43\x73\x05\x9b\x1d\xc9\x0f\xc9\xf5\xd8\x50\x76\x44\xb1\x3f\x34\x57\x30\xd7\x0c\x4e\x73\x05\x73\x33\x3c\x78\x81\x82\x4d\x2a\xf0\x87\x0a\x0b\xba\x84\x85\x0f\x15\xf6\xf0\x02\x59\xda\x7e\x78\x81\x82\xbe\xde\x3d\x5e\xa0\xa0\x4b\x66\xfe\x70\x02\x05\xe5\x30\x0b\x93\x6f\x8f\x3d\xfd\x47\x24\xf6\x43\x85\x05\xf3\x63\x0c\x11\x61\x0f\xc5\xb5\x5e\x2a\x8a\x2b\x28\xe2\xb4\x1f\x8a\xeb\xb1\xa7\xdf\xb9\x6e\x0f\x2d\x15\x1c\x9b\x87\xf2\xc8\x04\xad\x9a\xb2\xa8\xab\xc7\x6e\x2f\x49\xf0\x1e\xee\x97\x60\x0a\xf4\x7c\xa8\xab\x87\x94\x92\x04\xef\x21\xa5\x82\x2e\x0b\xe3\x43\x4a\x3d\x62\x05\x0f\xdd\xc2\xd9\x12\x1c\xad\x95\x7f\xf8\x60\x13\x5f\x0f\x2f\x8b\x54\x7a\x0f\x2f\x4b\x70\x08\x4c\x7c\x88\xaf\x87\xd2\x12\x04\xf7\x50\x5a\xc1\xbe\xbe\xeb\x94\xd6\x23\x0d\x00\x39\xfa\x90\x5a\x81\x2c\x48\x0f\xa1\xf5\x50\x55\x7f\xae\x19\x3c\xbf\x7c\x42\xcc\x54\x54\xd5\xf3\x53\x41\xdf\x28\x5e\x96\xc7\x79\x71\x0c\x07\xaa\xea\xb1\x69\x4b\x34\xe4\xc3\xcb\x12\x94\x4f\xcc\xeb\x87\x36\x0a\x26\x31\xfa\xd0\x46\x41\xe7\x37\x7f\x68\xa3\x60\xda\x3b\xf9\x90\x46\x8f\xc0\x3e\x32\xe2\x11\xd8\x17\xf4\x35\x23\x8b\xdc\x7b\x08\x10\xe9\x98\x1e\x02\x24\xe8\x87\xc9\x9c\x00\x09\xb6\xcd\x2f\xe9\x8f\x27\xfb\xa7\x9a\x14\x7c\x0f\xb5\x11\x4c\xdb\x08\x1e\x6a\xe3\xe1\x3e\x91\x6f\xef\x21\x2d\x82\x69\xe3\xee\xc3\x7d\xf2\x44\x59\xf4\x65\xc0\x90\x16\xc1\x61\x09\xf2\x11\x6d\xf7\x44\x6d\xf4\x8f\xcf\x27\xb5\x11\xf4\x23\x6b\xb9\x0f\xb5\x11\xcc\x4f\xbc\x3d\x0f\xb5\x11\x74\x59\x37\x1f\x6a\x23\xe8\xeb\xfb\x41\x6d\x3c\x91\x16\x5d\x08\xf6\x43\x5a\x04\x53\xec\xe6\x43\x5a\x3c\xf7\x2a\xad\x6b\x4a\x7b\x67\xb3\x9e\x57\x93\x1a\x78\x6e\xa5\x35\x25\x73\x69\x04\x7d\x7d\x8d\xa8\x81\xa0\xaf\x2f\x0f\x35\x10\xcc\xf5\xad\xe0\xe4\x08\xf6\xdd\xfb\x4b\x1f\x3c\x09\x4c\xeb\x1f\x53\x2d\x63\x3d\x98\x92\x4e\x3d\xbc\x0b\xc1\xd6\xa5\x95\x7d\xb8\x17\x82\x63\xcb\x4a\xda\xc3\xbd\x10\xbc\xb7\xa5\xd5\x84\xa6\x05\xd3\x1a\xea\xc3\xf2\x0f\xde\xdb\xfa\xff\xfc\xdf\xfe\x89\xe9\xbf\x7f\xe2\x85\xe8\x9f\xb7\x0a\xfb\x27\x5e\x08\x38\xd2\x1e\xfb\x27\x36\x3d\x1c\xdb\x6b\x1e\xee\x9f\xd8\xf4\xfb\x27\x36\x7d\x4f\x36\xba\xfd\x13\x9b\x1e\x66\xfc\xb8\xfb\x27\x36\x3d\xbc\xb7\xf9\xb7\x9f\x6b\xbf\x3c\xe0\x93\x4b\xa7\x4b\xb7\xdb\x5a\xae\x3d\xae\xf9\x80\xe4\x97\x9b\xe2\x26\x5f\x7f\xff\xbc\x4a\x7f\xff\xc4\x0d\x01\xf5\x33\xf2\xcb\xb8\x21\xf6\xcf\xa6\x56\x35\xe5\xdd\xd4\xea\xc5\x9e\x73\x1d\xf6\xcf\xa6\x56\xd9\x1c\xd5\x3f\x2d\xe5\x8d\x83\x01\x8e\x44\xd5\xef\x9f\x4d\xad\x36\x9d\xd5\x14\x44\xb5\xe2\x73\x88\x31\xb1\x7f\x36\xb5\xda\x62\xbe\x15\x0f\x50\xab\xb8\x21\xfa\xa7\x29\xdb\xe5\xda\x95\xad\xdd\x25\x97\x6e\x97\x54\xbe\xa5\x63\x36\x95\xdf\x52\xf9\x23\xfd\x52\x54\xbe\x64\xd2\x3f\x72\x57\x51\xf7\xb8\x21\x7a\xb2\xe7\xed\x9f\xa8\x07\xe8\x31\x60\xf6\x4f\xd4\xc3\xfe\x49\x04\x5b\x4f\x5c\xcf\xfe\x29\xfa\xaf\x08\x98\xf0\x4b\x75\xcf\x8e\xa9\xed\x70\x97\xba\x17\x63\xa6\xa7\x89\xaa\x72\xbc\x38\xb2\xbe\xbb\x7f\xaa\x72\x08\x43\xcb\x19\x6b\xfb\xa7\xea\x84\x17\x47\xd2\xf5\xec\x9f\xaa\x68\x55\xbf\xe8\x84\xaa\x5f\x12\x74\x76\x18\x46\x55\xbf\x54\x43\xcb\x38\xaa\x0a\x92\xa0\xb3\x04\x7a\xef\x9f\xaa\x0f\xaa\x61\xaf\xe7\xab\xa6\xcc\x62\x7f\xfc\x7d\xfb\xa7\x6a\xc9\xa6\x8d\x46\xca\xd6\x14\xe4\xc5\x91\x9d\x2f\xfb\xa7\x69\xa3\x17\x47\x72\x15\xed\x9f\xa6\x68\xcd\xeb\xb7\xbb\xa6\x4b\x63\x91\x67\x05\x63\xff\x34\x3d\xda\x74\xdf\xee\xda\x7a\x68\x66\x86\x9a\x5f\x76\xcd\xd6\x8d\xdd\x99\x5a\x75\xed\x16\x23\x3d\xce\xed\xfd\xd3\x35\x5b\xd7\x46\xd3\x4f\x15\xe4\xc5\xcc\xf9\x6f\xfb\xa7\x6b\xa3\x6e\xec\xce\x8c\x86\xae\xff\x7a\x0e\x8f\xec\x69\xa3\xae\xd9\x1c\x6e\x96\x8c\x77\xfb\xa7\x2b\xef\x8b\x63\x3b\xfe\x9e\x4f\x7c\xff\x74\xad\x9a\xa8\xaa\xc3\x3b\xdc\x55\x70\x68\xd5\x23\xb5\x19\x5a\xf5\xc5\xec\x8a\x34\xb4\x6a\x0c\xf1\x1c\x3b\xb1\x7f\x86\xca\x0c\x83\xd1\x38\x1e\x06\xe3\x60\xb3\xfa\x33\x95\x19\x26\x0e\xe3\x67\x78\xc5\x86\x90\xc2\x94\x63\xe8\x8f\x11\x6f\x6b\x4d\xdb\x0f\xf5\x1b\xd9\x93\xfc\xf1\xff\x2a\x10\x73\xbd\x6f\x1f\xe5\x58\x35\x58\xdb\xd4\xde\x4b\xbb\x2e\xca\xa9\x66\x99\x6e\xf7\xcf\xae\x87\x92\x32\xb5\x6f\x9f\x14\x6d\x57\x83\x17\x25\x27\x9f\xee\x9f\x5d\x77\xec\x39\x6b\x6e\xdd\xa5\x4e\x89\xa9\xea\x9b\x72\xec\x2a\x25\xa8\x4a\x3d\x77\x3d\xb4\x3b\xe2\xe4\x93\x21\xbb\xab\xd4\x9e\xc3\x1c\x4c\x38\xbb\x4a\xc5\x0f\xd2\x93\xaa\x6f\xff\xec\x6a\xf5\x42\xc6\x86\xfd\xb3\xab\x54\x72\x69\xe5\xeb\xb0\x7f\xa6\x4a\x25\x8b\x6a\x02\x3d\xf7\xcf\x54\xa9\xa9\x52\x6a\x30\x55\x6a\x3a\xb8\x3e\xff\x3f\x55\x2a\xa6\x73\xcf\xa9\x4b\xfb\x67\x2a\xee\x8b\x32\x4c\x38\xd3\x7b\xe8\x54\x31\x73\xf2\xd4\x51\x53\x69\x37\xd7\x94\xf6\x85\xd4\x88\xfb\x67\x2a\x6d\x12\x2f\xf4\x44\x5d\xee\x9f\xc3\xf8\x4f\x68\x54\x31\x27\x1f\xc6\x55\x52\x69\xf5\x4d\xbf\x1c\x06\xd6\x91\x73\x91\x36\x97\xd4\xe0\x48\xb2\x6f\x33\xda\xa1\x06\x47\xc2\xc4\xb5\xed\xa1\x5b\x0e\x95\x2a\xa9\xd4\xa1\x52\x2f\xec\x51\xd8\x3f\x87\x4a\x1d\xba\xc5\x87\xf1\xd0\x2d\x47\xc6\x9a\x0e\x3d\x74\x4b\x0e\x53\x8e\xeb\x76\xff\x1c\xea\x99\x68\xa3\xbe\x99\x80\xbf\xda\x23\xb9\xaf\x12\x97\xba\x7f\xbe\xfe\xec\xff\x19\x3b\x93\x1b\x6b\x7a\x18\xd9\xee\x9f\x15\xcf\x84\xab\x91\x14\xd0\x68\x5f\x72\xf4\xdf\x84\x46\x9e\xa3\x6f\xfd\xd7\x2a\x50\x42\x66\x5d\x4d\x29\x45\x90\x14\x45\xee\xab\xe6\x66\x7c\xf8\xcf\x48\xdb\x4f\x7c\x6f\xfc\x8e\xfd\xcf\x50\x17\xe1\x8b\x76\x1a\x37\x72\x55\xb7\xc5\xd3\x21\x86\x2d\x8f\x62\xa7\x9d\x8e\x31\xa9\x50\xa7\xfb\xcc\x69\xd7\xc2\x96\x47\xe9\x96\xd9\xb7\x38\x26\x8a\x1b\xd9\x69\xd7\x92\x0a\x61\x14\xa7\xdf\x69\xaf\x7d\x30\xf7\x94\x3f\x9d\xcb\xa7\x69\x60\x69\xc0\x69\x3f\xea\x84\x70\x04\x4e\xfb\xf1\xb4\x37\x9c\x30\xa7\xbd\x41\xc2\x54\x82\x85\xe3\x77\xda\x1b\x1f\xd4\xe1\xc6\x70\xda\x1b\x9c\xa9\xa9\x72\x8e\xd3\xde\x80\x7a\x8f\xe2\x37\x7b\xd9\xf6\xcb\xe9\xcd\x9b\x97\x4d\xff\xa0\x0d\x3f\xc6\xcb\xa6\x7f\x50\xbb\xdf\xc5\x65\xcb\x2f\x6e\x77\x99\xd4\xff\xb2\xe5\x97\x9f\xac\xab\xfb\x65\x33\x2f\x6e\x64\x70\x01\xbd\x6c\x26\xf9\x58\x47\x71\x1d\xba\x6c\x27\xf9\x58\xa7\x9f\xca\x65\x33\x2f\x17\x1d\xa7\xd5\xe5\xe0\x7d\x90\x7b\x22\xdc\x36\xe0\xf6\x47\xdd\x3b\x6f\x7f\x94\xb4\x04\xcb\x7a\xdc\xfe\xe8\x07\x95\x53\xdb\xf1\xbb\xfd\x4d\xa9\x37\x41\x19\xf1\xbb\xfd\xd1\x9b\xf3\x4a\x92\xb7\xdb\xbe\xbd\xad\xc7\xa4\x09\xb7\xf5\xb8\x89\x62\x73\xa9\x7e\xac\x87\x0c\xba\xb8\xaf\x3f\x76\x08\xc6\xf9\xe6\xce\xf6\xf8\x95\x11\x61\x34\xf6\xde\xf9\xf8\x99\x91\x43\x0c\x3f\x61\xfc\x1e\x27\xcc\x43\xec\x86\x53\xed\xb1\x51\x1f\xcc\xe9\x27\xfb\xd8\xa8\x0f\xea\xcf\xd5\xfb\xb1\x51\x32\x74\xec\x4a\xf1\x7b\x6c\xd4\x63\x80\xa3\x45\x36\x8a\xab\xbb\xaa\x7d\xfb\x38\x61\x1e\x0e\xbd\x36\x9f\x72\xc2\x3c\x36\xdd\x19\xf9\xd8\x74\xf2\x25\x10\xef\x15\xbf\xd7\xa6\xbf\xbb\xe9\xf4\xd0\x6b\xd3\x5f\xc4\x83\xbd\xf1\xda\xf4\xd7\x0f\xc3\x1d\xfc\xb5\x9d\x1f\xb4\x90\x69\xbe\xb6\xf3\x75\x85\xf1\x0b\x7d\x6d\xe8\x07\x75\x39\x99\x5f\x1b\x4a\xbe\x84\x81\x0d\x3f\x7e\xaf\x4d\x80\xc9\xcf\xfd\xa3\x36\x41\xd6\x5e\xf2\xbf\x0f\x60\x47\x91\xd4\x97\xdf\xae\xc0\xa2\x6c\x59\x66\x38\x53\xa5\xe8\xb0\x88\xc3\x09\xb0\x8a\x22\x33\x2f\x3f\x7f\x0c\x0a\x58\xe4\xdc\xc0\xb4\xf3\x8b\x94\xbb\x60\x62\x1f\x12\x92\x82\x89\x5d\x98\xce\x81\x82\x89\x5d\xf8\x1e\xf3\xd5\x61\xd9\x20\x22\xd4\xa2\x69\x11\x8b\x34\x7b\x45\x21\xf2\x47\xf8\xde\xf4\xbf\xa5\x65\x4c\x9f\xfe\xa3\xc8\x46\xc1\xcc\xa5\x93\x45\x62\x0e\x14\xc2\x63\xa3\x48\xcc\x0b\x29\x0a\x46\x65\x91\x2e\x12\x67\x20\x9d\x8b\x05\x43\x7c\x14\x32\x0d\x8c\xba\xcb\xac\x5a\xe5\x08\x00\x74\xb2\xc8\x9b\x4b\xf5\x1c\x89\xd5\xc5\x06\x2e\x4c\xdc\x77\x51\x24\xc9\xc5\xcb\x06\xf8\xd0\x8b\x24\x19\x98\xdc\x1a\x14\x45\x8e\x5c\xbc\x87\x98\x63\x40\x51\x64\xbf\x40\xab\x95\x91\x6a\xfe\x66\xb7\x23\xd1\x16\x45\x72\x0a\x4c\x22\x19\xa3\x74\xdf\xe4\xc4\xfb\xe0\xf0\x4a\x94\x6e\x17\x7d\x90\x24\x62\x8c\xd2\xed\x22\x6e\x94\x9a\xfe\x66\xb7\x8b\x64\xba\xdc\xbd\x16\x45\xa6\x0b\xd4\x9f\x8d\x92\xe9\x02\xdf\x63\xb4\x1d\xdb\xb3\x50\x4b\xf3\x4d\xbb\x83\x6b\x7c\x07\x37\x44\x46\x91\xd6\x02\x8b\x0c\x19\x51\x86\x33\x66\xf8\xa3\x68\x8b\x32\xfc\xd1\xc1\x16\x5b\x2d\xf2\x47\x87\x3f\x3a\x7d\xd5\x1f\x1d\x5c\x1c\xc2\xe6\x56\x24\xa4\x65\xfa\xa3\x88\x86\x32\xfd\xd1\x0f\xd6\x6e\x82\x1c\x15\xf8\x1e\x63\x82\x48\x52\x81\x1a\xd6\x43\x92\x0a\x7c\x8f\xd1\x49\xd3\xee\xe5\x7a\x00\xee\x49\x8f\x22\x6f\x05\xcc\xdb\x10\x45\xde\x0a\xcc\xe9\xf0\x4d\xc7\xe0\x83\x58\xbb\x1a\x8e\xc1\xb4\xed\x2c\xdd\x45\x2a\x0b\xac\xee\x20\x4b\x65\x81\xef\x31\x5f\xb5\xed\x13\x1f\xed\xb2\x01\xb6\x3d\x76\xdb\x79\x35\x6c\x3b\x97\xeb\x72\x3c\x26\x4a\xd8\x76\x2e\xd7\xe5\x58\x45\x94\xb0\xe9\x92\x54\x6e\xe2\x8a\x22\x49\x05\xe6\x74\xca\x48\x52\x81\xef\x31\xcb\x6c\x42\x38\x8d\x98\x0b\xe1\x34\xe2\xcc\xfb\x20\x7d\x40\x14\x89\x2b\xd0\xda\xfe\x51\x5b\x90\x8e\x01\xdb\x4a\x49\x2b\xb2\x33\xb9\xd2\xb9\x32\xd2\x92\xfe\x28\x9b\x54\x91\x6b\x02\xde\x90\x10\x45\xae\x59\xd2\x0f\x12\x73\x42\x91\x58\x02\x66\x69\x8f\xb2\xfc\x20\xe5\x9a\xd5\x7e\x93\x6b\x02\x19\xdd\x22\xfb\x48\xae\x49\xde\xc6\x28\x72\xcd\x22\xd7\x74\x4d\x91\x6b\x16\x4c\xbc\x83\x1b\x30\xa2\xc8\x2c\x81\x45\x56\x9f\x28\xcb\xae\x5c\x76\x25\xc3\x27\xd7\x04\xbc\x51\x2b\x8a\x5c\xb3\xac\xdd\x02\xfa\x63\xd9\x82\x45\x46\x19\x97\xb6\xc3\x16\x90\xc8\x95\xe3\x1d\x51\x0e\x97\x14\x8e\x74\x0f\xae\xce\x88\x72\xf8\x9b\xdc\x1c\x3b\xad\xc6\xe1\x6f\x72\x25\xec\x68\xae\x46\xf2\x4f\x60\x39\x63\xa4\x9f\x45\x16\x49\x1e\xf8\x28\xb2\x48\x20\xbb\xb5\x95\x45\x16\x59\x64\x73\x3a\xcb\x22\x81\x39\x9d\xba\xb2\x48\xe0\x7b\xcc\x32\x7b\x8d\xfb\xa0\xa6\x8b\xc0\xe9\x47\x85\xd1\x75\xec\xf9\x21\x8d\x04\x26\x57\xeb\x47\x91\x46\x16\xc8\xe0\x68\x2e\x77\xb2\x41\x20\xd2\x8d\xe9\xb4\xd7\x2e\x9b\xe0\xa4\x94\x0d\x02\xab\xdb\x6d\xb2\x41\xe0\x7b\x8c\xba\x49\x07\x81\x56\xfd\x01\xe9\x60\x91\x0e\x36\xeb\x2b\x1d\x04\x22\xfd\x6e\xa5\x83\xe5\xb2\x6e\xd8\xae\xca\x65\xdd\x2e\xee\x2f\x89\xff\xbe\xfc\x23\x8a\xcc\xb0\x10\x3c\x32\xc8\xe0\x1a\xe5\xb6\x9e\x37\x61\x04\x41\x9d\x6e\xab\x49\xc6\xfd\x21\xb1\x2a\xb7\xf5\x24\xe3\xfe\xf4\xf7\x6f\x7b\x9a\x8b\xa6\xd4\x9e\xe5\xb6\xa7\x6f\x7b\xda\xdd\x41\x52\x09\x24\xf1\x1e\x51\x24\x95\xe5\x76\xae\xb8\x15\xc8\x20\x81\xd5\x9b\x6f\x3a\x59\x24\x95\xcd\x35\xfe\xde\x4d\x78\xf9\x9c\x78\x4c\x52\x09\xcc\xe9\x9b\x8f\xe3\xf1\x38\x31\x30\x53\x14\x49\x25\xd0\x3b\xca\xa7\xc8\x29\x81\xe0\x66\xd1\x28\x72\x4a\x60\xce\x66\x91\xc3\x41\x38\xfa\x68\x7e\x9b\xf2\x40\x20\x89\xef\x8a\x22\x0f\x04\xc6\xcf\x99\x2d\x0d\x2c\x72\xbe\xe6\x17\x26\xe7\x03\xf2\xe7\xb4\x90\xf3\x15\xc9\x5c\x73\xbf\x90\xcc\x01\x73\xba\xe5\x49\xe6\x8a\x96\xda\xe6\x42\xfd\xda\x6b\x1f\xa4\x42\xb3\xc8\xef\x8a\x96\xda\xe6\x86\x21\xc1\x03\x56\x77\xf4\xde\x5d\xb7\xd7\xc7\xbe\xef\xb5\x4a\xea\x2a\xa1\x16\x83\x34\x91\x51\x35\xcb\x02\x45\xbb\x61\xd5\x2c\x5b\x7f\x76\x08\x4a\xa7\x12\xf5\x2d\x24\xf7\xf1\x47\x25\xea\x3b\xaa\x44\x8f\x94\x87\x51\x25\x7a\x40\x72\xd1\x67\x54\x89\x5e\x85\x4d\x8d\x06\x01\xaa\xd2\x29\x20\x35\x94\x55\xed\x9c\x55\x3b\x27\x69\x05\xa3\x6a\xe7\x04\x26\x17\x52\x46\xd5\xce\x59\xab\xdf\x13\x8b\x66\xd5\xe6\x08\x4c\xce\x8f\x45\xd5\xe6\x08\x94\x41\x2a\xbe\xa8\x44\x31\x08\x1e\xec\x8c\x5a\xad\x47\x3d\x7d\xcc\x57\xad\xc8\x07\x75\xd9\x21\xd5\x7a\x68\xc1\x24\xab\x57\x54\xc9\x19\x30\x87\x6f\x4a\xce\x00\xa2\x7f\xa3\xca\xcd\x80\x1c\xb6\x53\xfb\x65\xd5\x7e\xd9\x8b\x65\xc3\x32\xac\x0e\xcd\x7f\xef\xb0\x90\x77\x96\x90\xfd\xa8\x32\xb8\xea\xed\xa8\xcc\xf9\xda\x6c\xf9\x07\x9c\x90\x88\xaa\x8d\xb3\x1a\xe4\xbc\xac\x96\xed\x6e\xdc\xe4\xb4\x7f\xd0\x76\x7f\xd0\xb9\x4e\x3d\x6a\xb3\xd9\xe4\x6d\x1a\xa4\xfe\x8b\xda\x6c\x37\x07\x6b\x49\x4e\x14\x55\xe3\x28\x10\x78\x2f\xa3\x6a\x1c\x05\x46\xf8\x54\xb7\x73\x48\xba\x3f\xba\xd5\xef\x56\x9f\x04\xb3\xa4\x5d\x8d\xda\xad\x3e\x64\xf3\x67\xb7\xca\x35\xab\x2c\x92\x73\x2b\x51\x65\x91\x40\x5d\x70\xab\x2a\x8b\x04\xe6\xf8\xf9\xff\xad\x99\x8c\x51\x63\x42\x95\x31\x02\x93\xdc\x3e\x51\x65\x8c\x75\x98\xb7\x91\x0f\xb4\x6a\x08\x05\xe6\x70\xb2\x0c\x6b\xab\x6d\xd4\x25\xbf\x6a\x1b\x05\x56\x77\x02\x69\x1b\x05\x3a\x79\x04\xa3\x0e\xbb\x9b\x78\xe9\xe1\x4a\x57\x87\xfd\x3d\xc8\xfb\x52\xac\x87\x8d\xd2\xaa\xea\x37\x5b\xa5\xa9\xc0\x24\x2b\x48\xd4\xb1\x5b\xf5\xf8\x98\xad\xb2\xc3\xc9\xb9\x94\x7e\x16\xd3\x0e\x27\xe7\xd2\x20\x2f\x74\xd4\xe9\x74\x9c\xa4\x8a\x43\xec\x54\xc9\x2c\x50\xf7\x80\x4a\x66\xab\x2c\xb5\xef\xff\x66\x7f\xc0\x52\xc9\x4b\x16\x55\x96\x0a\x54\x0e\x48\x44\x95\xa5\x02\x65\xf4\xfd\x03\xf6\xc7\x84\x99\xf8\x29\x4a\x53\xab\xfc\xb3\xc3\x79\xab\xfc\x13\x98\x7d\x5a\x5b\x1b\xf5\xc1\x94\x06\x57\x4d\xa9\x35\xf6\x99\x09\xda\x2e\x25\x05\x1a\x49\x61\xa3\x4a\x49\xab\xe6\x55\xad\xb0\x55\xf3\x2a\xd0\x0a\x9c\xa6\x6a\x5e\xad\xb1\xab\x4b\xab\xe4\xa4\x40\x93\x7f\x56\x29\x29\xe0\x65\xa2\x51\xa5\xa4\x55\x4a\xda\x6d\xbc\x94\x14\xc8\xbd\x5a\x49\x49\x6b\xd8\x82\xff\x8e\x3c\x8b\xaa\x59\x15\x68\xc4\xcc\x45\xd5\xac\x5a\xbd\x67\xd5\xaf\x30\x6d\xb2\x54\x57\x0b\x7f\x95\xea\x02\xd3\x5d\xbd\x4a\x75\xab\x54\x97\x83\x8c\x51\xa5\xba\x40\x19\xce\x31\xa9\x2e\x30\x89\x7d\x8d\x9a\x4e\xc5\xb4\x7d\x10\xe7\x9a\xb6\x8f\x14\xb7\x3d\xac\x9a\xed\x93\x24\x77\x17\x77\x49\x32\x30\xb5\xd6\x55\x49\x72\x95\x24\x93\x2e\x30\xaa\x24\x19\x98\x44\x6e\x45\x95\x24\xd7\xe5\xbc\xb3\xf1\x9a\x5a\x81\x85\x0f\x32\xaa\x84\xb8\xae\xfd\xa3\xcc\x28\x79\x2d\x30\x49\x17\x18\x55\x5e\x5b\x0f\x7f\xd4\x8a\x1c\xfe\xe8\x07\x91\x4e\xf6\xc3\x1f\x3d\x5c\x97\xdc\xd9\x0e\x7f\xe1\x83\x54\xd1\x54\xe9\x6f\x95\xeb\x76\x2c\x1d\x55\xae\x0b\xb4\xea\x5a\x25\xd9\x05\x86\x56\x8d\xaa\xad\x15\xf8\xde\xb4\x1e\x56\xf7\x20\xe3\xa1\x5b\xa7\xc6\x56\x60\x68\xe8\xa8\xb2\xe4\x7a\x3a\xca\x18\x09\xab\xfc\x17\x18\x5a\x35\xaa\xf4\xb7\xfe\x4b\x3b\x4b\x75\xe5\xbf\x80\xc7\xc9\xa3\x6a\x6b\xad\x1f\x25\x1e\x5a\x13\xaa\x8c\xb8\xee\x64\x45\x0c\x8b\x8c\xb8\x6a\x0b\xc5\x65\x1f\x55\x5b\x28\x90\x04\x2b\x46\x95\xfd\x02\x63\x37\x40\xf6\x5b\xb5\x85\xc2\x6a\xab\xe4\x17\x18\xbb\x1f\x25\xbf\xf5\xda\xc9\x31\x28\xb2\xfe\xf2\xe1\xee\xfe\x2d\x1f\x06\xca\xcf\x89\x2b\x1f\xae\xe4\x89\x1d\x24\x55\x8c\x7a\xd9\xdd\x17\xdd\x0d\xbb\xae\x52\x64\x60\x28\x94\xab\x1c\x18\xf8\xde\x64\x12\x69\x1e\xad\xde\x3a\x25\x15\xba\x6d\x93\x54\x79\xef\x20\x52\x65\x60\x28\x77\xab\x54\xb9\x12\x2e\x3d\xf6\x0e\x72\xdb\xb7\x18\x5b\xd3\x9d\x5f\x5b\x6b\x95\x17\x0f\xb7\x45\x79\x31\x50\xdb\xae\x87\xfd\x6d\x00\xc3\x70\x07\xb9\x6d\xc2\x4e\x17\x64\x91\x4d\xb8\x6d\x82\x13\x4b\x12\x0c\x94\xe5\x5a\x2b\x09\x06\x6a\x41\xf1\xd5\xc7\x16\x10\xcf\x3c\x86\x13\x4b\x7a\x0b\x8c\x3d\x3b\x34\x99\x02\x63\x2f\x7b\x9a\x4c\x2b\xf1\xcc\x63\xd8\x95\xda\x47\xeb\x3f\x62\x4c\x91\x63\x80\x7d\x34\x9d\xde\xf2\xe2\xea\x05\xac\xce\x21\x79\x31\x30\x54\xff\x55\xf3\x28\xd0\x77\x77\xbf\xd6\xff\x25\xda\xc8\x69\xf5\x5a\xff\xd7\x11\xa0\x6b\x5f\x47\xe0\x65\x5a\xb9\x0f\x4b\xb1\x81\xa1\x52\xac\x52\xec\xaa\x59\x75\x38\x76\x9a\x55\x81\xa1\x52\xac\x9a\x55\x81\x3a\xfc\xa0\x24\xe2\x40\xfe\x7b\xca\xbe\xf8\x88\xf8\x50\x0b\x55\x79\x38\x50\xf7\x82\x20\x0f\x07\x22\xdc\xd6\xa4\xe1\x55\xce\x3d\x68\x78\x93\x73\x03\x5f\x59\x52\x56\x2c\xe3\x83\x42\x5e\x37\x02\xa3\x85\xef\xb1\x45\x59\xb3\xcc\xa6\x37\x8a\xba\x45\x2c\xf2\x24\x0b\x8f\xa6\x0d\x16\x18\xba\x2f\x9b\x36\xd8\xf6\x73\xa2\x35\x2b\xf2\x58\x86\x9c\x4c\x1f\x63\x9c\x9a\x36\xd8\xe1\xab\xda\x60\x81\x21\xe7\x6e\xda\x60\x9b\x36\x58\x12\x8c\x45\xd3\x06\x0b\x0c\xf5\x75\xd3\x06\x0b\x14\xae\x75\x89\xa6\x0d\x16\x18\xaa\x9c\xa6\x09\xb6\x29\x07\x38\x09\x19\x4d\x39\xd0\x4c\xbf\xc3\xde\xdf\x94\x03\x40\xe1\xec\x7b\x34\xd5\x00\x30\xb4\x9d\x35\xd5\x00\x30\xb4\xe7\x36\x83\x1e\x9a\x96\x5a\x72\x9a\x45\xd3\x52\x0b\x0c\x05\x42\xd3\x52\x0b\x8c\xd9\xff\x3b\x71\x4a\x34\x63\x22\x5a\xdd\xbd\x40\x67\x55\x7b\xa1\xda\x0b\x83\x22\x7b\xa1\xba\x14\xc0\x56\x9b\x6a\x04\x68\x5a\xee\x9b\x62\x04\x30\x55\x51\x34\xc5\x48\x33\xa4\xda\xe1\x56\x8b\x00\x43\x4f\x69\x53\x8b\x00\xdf\xff\xa7\xff\xaa\xdd\x50\x4d\x22\xe1\x3f\xb3\x1b\x9a\xdd\x30\xa8\x9a\xfa\x04\x18\x1c\x34\x8e\xa6\x40\x69\x9c\xb0\x1c\xc4\x37\x45\x6b\x0e\x37\x0a\x65\x0d\x1f\xb3\x9d\xda\x98\xf5\xad\x35\x15\x0a\x90\xb1\xdf\x74\xb8\x9b\x97\x0e\x51\x5d\x15\x0a\x30\xa6\xa3\xa1\x44\x01\xc6\x74\x02\x28\x51\x80\x32\xb8\x6d\x3c\x9a\x1a\x05\x58\x5a\xbf\x9b\x1a\xa5\x19\xad\x31\x9c\x15\x0a\x12\xa0\xac\xf4\xbf\xed\xb6\xbf\x9c\x73\x63\x6e\x2a\x48\x80\xef\x4d\x3a\xb7\xdb\x1d\x44\x5e\xeb\x0d\x6f\xdd\xee\xe8\x76\x07\x4a\xbd\x19\xd4\x01\x24\xa7\x13\xa3\x69\x37\x07\xd2\x3d\xb8\x69\x37\x6f\xdd\x0d\x0b\x4a\xdb\x14\x29\xc0\x20\x21\x42\x34\x45\x4a\xeb\xae\x10\xec\xc2\xcd\xa0\x0e\x60\x4c\xe7\x95\x31\x1d\x4d\x2d\x43\x7e\xae\x68\x6a\x19\x60\x36\xfb\x5b\x2d\xd3\x86\xab\x1e\xac\xa7\x29\x5c\x80\x31\x9d\x7e\xea\x96\x36\xfc\x51\x22\x28\x9a\x82\x01\x18\x13\x4a\xdb\xd4\x0b\x6d\xba\x79\x38\x27\xe5\xf8\x40\xa4\x2d\x95\xe2\x03\x65\x0c\x62\x2f\x9a\x1c\x1f\x58\xc6\x02\x34\xe3\x2c\x80\x55\x8a\x3f\xe0\xf0\x4d\x66\x33\xd4\xba\x69\x9c\x6e\x86\x45\x87\x4f\xd9\x45\xc6\x59\x90\x8f\x2a\x9a\xe2\x00\x18\x7a\x64\x9a\xe2\x00\xc8\xb6\x8b\x6c\x80\x7a\x81\x0c\x11\xd1\xd4\x0b\x40\xfe\x5c\x81\xd4\x0b\x4d\xbd\x40\x92\xad\x68\xea\x05\x20\xf5\xfb\x35\xf5\x02\x50\x06\x19\xb5\xa2\x19\x8f\xd1\x8c\x8b\xf6\x43\xd3\xd2\x0d\xa4\x1b\x5b\x53\x55\x34\x2d\xdd\x13\xe7\x71\x53\x56\x00\xb9\x97\x50\x65\x05\x90\x7b\x3d\x33\x68\x03\x58\x06\x4b\x34\x85\x46\x33\x68\x43\x8f\x7e\x53\x69\x00\x63\xfa\x6d\x1b\xb4\x01\x7c\x8f\xf1\x03\xca\x0b\x60\x71\xe5\x62\x34\xe5\x45\x53\x4b\x18\xc9\xd1\xd4\x12\x40\x37\x82\xad\xa9\x25\x5a\xee\xb6\xd3\x93\x69\xdb\x3f\xa8\xd3\x99\x9b\xb6\xdd\xe0\x0e\x1d\xe7\xcd\xe0\x0e\xc0\x7b\x81\xa2\xa9\x42\x9a\x2a\x64\xee\x32\x1b\xff\x41\x0b\xbf\x0d\x65\x48\x33\xe0\x43\x03\x4d\x53\x73\x00\x93\x7c\x2d\xd1\x94\x1c\x8d\xf4\x38\x43\xbf\x5b\x5b\x36\x8b\xbb\xd3\x0a\x82\xb5\x29\x39\x9a\xfa\x42\x76\xde\xd4\x17\x40\x35\x1c\xa0\xa9\x2f\xda\xda\x75\xf3\x55\xeb\xb6\xcc\x06\xe7\x9b\xd6\x4d\x19\x22\xf9\x6c\x6b\x57\xe4\x93\x21\xc5\xb9\xab\x0c\x69\xca\x10\x99\x4f\x53\x86\x00\x93\xfb\xf6\xa2\x29\x43\xda\x61\xbf\xc9\x09\xb4\xaf\x03\x2d\x9c\x81\x87\xfd\x66\x14\x88\x44\xa4\x19\x05\x02\xd4\x70\x47\x50\x99\xb4\xc3\x7e\xdb\xaf\xda\x6f\x07\xfd\xe6\x8e\xaa\x0c\x01\xca\xf2\xb3\x52\x86\x00\x5e\xce\x1f\x4d\x19\x02\x94\x7f\xfb\xbf\xd6\x7a\xa0\xee\x19\xa8\xb1\x1e\x98\x3a\xbb\x9b\x62\xa5\x19\xf2\xb1\x77\x59\x65\x08\x30\x75\x9d\x37\x43\x3e\xda\xe9\xc7\xe1\x74\x53\x87\x00\xd3\xd0\xd0\x66\x7c\x07\x50\x8a\x3c\xc7\xf8\x8e\xa6\x5a\xf9\xdb\x9e\xad\x98\x01\xa6\xa1\x4c\x4d\x31\x03\x94\x7f\x3b\x92\x6a\x06\x98\x86\x23\x34\xd5\x4c\x53\xa7\xec\xcd\x52\x9d\x02\xcc\xe2\x32\xaa\x4e\x01\x26\x29\xa3\xa2\x19\xc5\x01\xb4\xe6\xbc\x33\x8a\xa3\xa9\x66\xf6\xca\xa7\x9a\x01\x3a\x77\x29\x44\x53\xcd\x34\x83\x3d\xf6\x77\xad\x9c\x01\x66\xf1\xab\x53\xcd\x00\xc5\x80\xa4\xa6\x9a\x01\xa6\xf1\x0e\x4d\x31\xd3\x94\x24\xd3\xcd\x58\x49\x02\x4c\x82\xe4\xa3\x29\x49\x9a\x92\x64\xba\x31\x2a\x49\x80\xc9\xa9\x8b\x68\x4a\x92\xa6\x24\x99\xee\x82\x4a\x12\xc0\xa4\x8c\xd1\x94\x24\x4d\xbb\xfc\xf4\x7b\xd5\x2e\x0f\x4c\x03\x1e\x9a\x76\x79\xa0\x8c\xe9\xa7\xa3\x61\x1e\x98\xba\xc9\x9b\xca\x05\xf8\x1e\xa3\x6e\x4a\x17\x60\x16\xbb\x4d\xe9\xd2\x94\x29\xd3\xe1\x53\xa7\x00\xe5\xe7\x6a\xa8\x4e\x69\xaf\x03\xef\x9c\x55\x6f\x00\xd3\x20\x87\xa6\xde\x68\x9a\xd7\xa7\xf5\x7d\xf7\xab\x0f\x2b\x35\x03\xaf\x79\xbd\x49\xf5\xc9\xa7\x16\x5d\xaa\xdf\xe5\xf0\x24\x89\x8a\x2e\x87\x07\x9a\x71\x1c\x5d\x0e\xdf\x8d\x97\x26\x6b\x59\x74\xe3\xa5\x81\x4a\x86\xfa\xe8\x1a\xe6\x81\x4a\x66\xeb\xe8\x1a\xe6\xbb\x41\x19\x64\xe6\x89\x6e\x50\x06\x50\xb5\x11\x74\x05\x01\x30\x0d\x0a\xe9\x0a\x82\x6e\x6c\xf4\x44\x2c\x76\xd9\x3f\x30\x0d\xa1\xee\x9a\xef\x81\x26\x4b\xea\x9a\xef\xbb\x91\xcb\xf1\xb3\xcc\x1f\xe0\xf6\x07\xae\xc7\x8c\x2e\x85\x07\xa6\x62\xb4\x4b\xe1\xbb\x29\x4f\x34\x3c\x77\x69\x37\x60\xaa\xb7\xe8\xf2\xea\x2e\xaf\x8e\x62\x99\xdd\x51\x99\x33\xf8\x59\xbb\xbc\x1a\x98\x46\x94\x77\xc3\x28\xba\xbe\x80\xb0\x8b\xf4\x05\x00\xd3\x00\xe7\x2e\xfb\xee\xfa\x02\x38\x58\x1c\x5d\xfa\x0d\x4c\x83\x45\xbb\xf4\xbb\xeb\x0b\x88\x6a\x75\x77\x13\x2e\x1e\xb3\x6a\xb7\x45\xb7\x8f\x59\x91\xc7\x32\x3e\x18\x87\x45\xfe\xdd\x75\x19\x90\x64\x26\xba\x2e\x03\x60\x1a\x8f\xdd\xa5\xe4\xbd\x55\x1f\xa3\xbe\x7a\x08\x80\x3a\x1c\x17\x29\x39\xd0\x0c\xef\xea\x52\x72\xa0\x91\x16\x2d\xba\x8c\x1c\xa8\x1c\x19\x8a\x2e\x23\xef\x6d\x37\x8a\xaa\xc9\xa2\x81\xe6\xa2\xd8\x35\xf4\x77\x48\xf4\x08\x54\x76\x97\x45\x03\xcb\xf8\x88\x2e\x8b\xee\xb2\x68\xb2\x66\x44\x97\x45\x03\xb3\xc2\x75\xba\x2c\xba\x73\x30\x71\xb8\x97\x75\xa3\x43\x80\x45\x82\xf4\xe8\x9a\xf5\xbb\x51\xca\xba\xce\xbb\x51\xca\xc0\xe4\x46\xd5\xe8\x1a\xe7\xbb\x24\x37\x58\x3c\xbb\x24\x17\x98\xc6\x0e\x75\x49\x2e\xf0\x3d\xe6\xab\x8e\x3c\xf7\xc6\x19\x3b\xd4\xb5\xce\x03\x65\x41\xd3\xbb\xc6\x79\x60\xea\x8c\xea\x63\x57\xed\xe2\x45\x8b\xec\x22\x43\x48\x62\xf8\xcf\x1c\x77\x42\x48\x38\x20\x11\x5d\xdb\x3c\xd0\x74\xc3\x77\xa9\x76\x37\xcc\x99\x9b\x8b\xa2\x6b\x75\xef\x86\x39\xb3\x09\x76\x23\x48\xfa\xdc\x0d\xf0\x55\x1b\xf0\x41\xc6\x7e\xcc\x06\x4c\x52\x6c\x39\x25\xa5\xda\x9d\xf3\x86\x23\x50\x2d\x5d\x62\x0d\x4c\xe3\x95\xba\xc4\xba\x4f\xa7\xa4\x6d\x97\x45\x03\x25\xed\x34\x59\x74\xe7\x0a\x83\x11\xac\xe1\x5d\x2e\x0c\x78\xcd\x74\x74\xa9\x30\x30\x8d\xae\xea\x52\xe1\x2e\x55\x0d\xd6\xeb\x2e\x55\x05\x66\xfd\xe5\x7f\xef\xd9\x5d\x26\xdb\x65\xb2\xe4\x75\x88\x2e\x93\xed\xc9\x24\x83\x19\x76\xad\xe2\x40\x19\xe1\x92\x99\xf6\x2a\xb9\x57\x34\x2d\x74\xc9\x6d\x97\xc9\x46\xfa\xaa\x55\xe7\xca\x38\x83\xb4\xba\x4c\xb6\xcb\x64\xc3\x35\x53\x26\xdb\xbd\xf1\x77\x3f\x66\xe7\xcb\x64\x83\xed\xa7\xcb\x64\x81\x59\x8b\x6f\x3a\x7d\x64\xb2\xc1\x66\xd6\x65\xb2\xc0\xac\xc5\xea\xda\xd2\xb4\xa5\xf0\x9e\xae\xf5\x1c\x98\xd5\xc5\x50\x72\xdb\x0d\x23\xd6\xc1\xd6\xe5\xa3\xc0\xd4\x1a\xdd\x0d\x23\x06\x8a\xd7\x62\x44\x37\x8e\x18\x98\x15\x2e\xd2\x65\xad\x9d\x14\x8b\x23\xfd\x60\xe5\xa3\xdd\x4b\x7a\x9d\x2c\x87\xfd\x46\x3e\x45\x53\xf8\x47\x3f\x9c\x05\x07\xd7\x80\xda\x52\x8d\xe7\xc0\xac\xb0\xe7\xae\xf1\xbc\x73\x95\x6f\xc5\x04\xd9\x25\xb2\x1d\xea\x69\x6a\xf6\xe8\x72\x4f\x20\x7f\xae\xdd\x72\xcf\x2e\x35\x4c\x7b\x5c\x6a\x08\x4c\x8d\x4a\x5d\x6a\xd8\x49\x36\x62\xca\xec\xe8\x06\xfa\x02\xcb\xe0\x94\x6e\x68\x47\x37\xc2\x36\x5d\x81\xe5\x66\x40\x76\x78\x77\x97\x9b\x75\x49\x17\xf9\x41\xa2\x4b\xba\x80\xd5\xec\x5d\x49\x57\xd7\x5e\xac\x37\xad\x4b\xb1\x80\x59\x6d\x82\xf6\xe2\x6e\x68\x05\xb9\x3a\xa2\x1b\x5a\x01\x2c\x09\x61\x37\xb4\xa2\xdf\xd6\x0d\x39\xd8\x65\x62\xdd\x7b\x7b\xed\x37\x03\x71\xbb\x71\x14\xe9\x8a\x6e\x1c\x05\x50\xd2\x95\xda\x38\x8a\x2e\x87\xf3\x40\x49\x97\xc3\x01\x73\x4d\x1f\xb3\x55\x72\x38\x12\x4f\x44\x97\xc3\x01\x73\xb9\xe1\xcb\xe1\x80\x62\xc6\xda\xe8\xda\x95\x81\xe6\xa1\x86\xfe\xd8\x52\x42\x7d\x7f\x8e\x95\x91\xbe\x40\x33\x4e\xb0\x4b\xfe\xba\x91\xbe\xfa\x0d\xbb\xec\x0f\x68\xe1\x20\x48\xfe\xba\x67\xe5\xf4\xba\x75\xf9\x1a\xd0\xd2\xad\x40\xbb\x32\x30\xbb\xcb\xbe\x76\xe5\x6e\x08\x06\xe9\x29\xa2\x6b\x1f\x06\x66\xf7\x4d\xed\xc3\x40\x31\x59\x67\xf4\xd7\x7a\xbc\x24\x99\x90\x8b\x68\x32\x06\x8a\x06\xac\xae\xc9\xb8\xbf\xce\x0f\xfc\x54\x5d\xf2\x07\x4c\xee\x11\x8c\x21\xf7\x1b\x3f\xeb\x01\xa5\x1d\x12\x3d\xa0\x73\xc1\x59\x0c\x79\xde\xf8\x39\xa2\x28\xa2\xe1\xb9\x35\x60\xe9\xd2\x1c\x46\x5b\x00\xa3\xd2\x1d\x43\xf3\xed\x90\xc1\x91\x4b\x21\x86\x0c\x0e\x98\xa4\x93\x8f\x21\x83\x1b\x9e\x6e\x23\x65\x4a\x0c\x29\x1c\x30\x8d\x85\x18\x9e\x6e\x1b\x5a\x7e\x49\x87\x14\x43\xcb\x2f\x30\x8d\x85\x18\x5a\x7e\x87\x31\xb4\xda\xfb\x87\x06\x5c\xa0\x68\xa6\x1c\xc6\xd0\x02\x3b\x70\x65\x48\x11\x81\xd6\xc2\x6a\x9c\x16\xd9\x76\x88\xcd\x90\x23\x02\x4d\x6b\xd5\xd0\xcc\x3b\x3c\xc9\x46\x4e\xa3\x18\x1a\x75\x81\x66\x0c\xf9\xf0\x24\xdb\xf0\xd8\x1a\x79\x24\x62\x48\x25\x81\xe0\xe6\xa4\x18\x1e\x5b\x1b\xb2\x4b\x4e\xfb\xc7\x90\x5d\x02\xad\xb1\x73\x0c\xd9\xe5\x90\x4a\x92\x5f\x21\x86\x54\x12\xe8\x46\x79\x0e\xa9\x24\xd0\xba\x63\x20\x93\x04\x8a\x69\x35\x62\x48\x25\x81\x32\xf7\x3f\xb3\xa1\x30\xc9\xb5\xff\x99\x0d\x85\x49\x72\xf5\x64\x0c\x89\xe4\x30\x30\x98\xf4\x21\x31\x64\x92\xc3\xe4\x18\x2c\x3c\x43\x22\x09\x34\x0d\x8b\x43\x22\x09\xf4\x1a\x16\x39\xc6\x1f\xd4\xc2\x32\x39\xa4\x96\x40\xe3\xd2\xd9\x18\x52\xcb\x61\x3c\x0a\x39\x5f\x62\xc8\x2d\xc7\xce\x97\xf1\xfb\xef\x4d\x7b\x48\x3d\x81\x62\x0a\x8f\x18\x72\x4f\xa0\xa6\xed\xd3\x1a\x3c\x4c\x05\x9f\x3e\x65\x97\x12\xb0\x62\x22\x8e\x18\x9a\x83\x81\x19\x7e\x24\x5a\x83\x81\xb2\x9c\x88\xf2\xd8\xa1\x35\x98\x64\x17\x31\xb4\x06\x03\xd3\xd3\x0c\x43\x1e\x0b\x14\xb3\x97\xc4\x90\xc8\x02\x33\x90\x82\x43\x1e\x3b\xfa\xee\x07\xcb\xec\x07\x12\x71\x54\x8c\x10\x43\x3b\xef\xe8\x4c\x14\xfd\x75\xc3\x30\x16\x60\xca\x44\x86\x61\x2c\x43\x0a\x4c\x3e\x86\x18\x52\x60\x60\xca\x6b\x86\x14\x18\xa8\x5c\x2d\x1f\x43\xa3\xf1\x30\x3e\x9a\x0c\x0a\x31\xb4\x1a\x03\x93\xcc\x77\x31\x8c\x8f\x06\x5a\xd8\x93\xda\x91\x07\xa9\x39\x3c\xba\x1d\x63\x38\xba\x83\x8b\x7e\x58\x1d\x87\x14\x7b\x48\x94\x39\xb6\x1e\x43\xa2\x0c\x54\x3d\xbc\x43\xa2\x0c\x8c\x9f\xb3\x47\xa2\x0c\x4c\xa9\xd4\x90\x28\x03\xfd\x67\x0f\x49\x94\x81\xe4\x3e\xeb\x18\xf2\xe4\x61\x5c\x35\xa7\xb4\x63\x18\x8a\x02\x84\x86\xac\x21\x29\x1e\xd3\x21\x60\x67\x18\x06\x51\x03\x75\xfa\xc5\x19\x9d\x32\x4c\x95\x6e\x3f\x1a\x9d\x32\xb4\x49\x7b\xb4\x73\x48\x94\x81\xa2\x6d\x72\x48\x94\x81\x34\x84\x6f\x68\x93\x1e\xda\x8c\x3d\x97\x38\xb4\x19\x03\x73\xf7\xad\x36\x63\xe0\x7b\x8c\xff\x66\xdc\x33\x50\x8c\xf2\x1d\x9a\x91\x87\xdc\x79\x7f\xac\x72\x67\x20\xc8\xd9\x14\x43\xee\x3c\x8c\x98\x5e\xf0\xfa\x21\x79\x06\xaa\x07\x51\x87\x76\x64\x60\x86\x6d\xd7\x8c\x3c\xc2\x05\xa2\x5b\x37\xa7\x02\x71\x27\xc5\x37\xe5\xcb\x43\x72\xbc\x30\x72\x0d\xc9\x31\x30\x65\xb8\x43\x72\x3c\xd2\xea\xba\x90\x78\x60\x0f\xa8\x9a\x92\x86\x7c\x19\x08\xd2\xe4\xc5\x90\x2f\x0f\x89\x30\xb7\x52\xc4\x90\x08\x03\xa1\x13\x60\x48\x84\x87\x21\x23\x6b\xf8\xdf\xac\x6e\x1a\x95\x4c\x91\xa4\x77\x68\xd2\xd5\xe5\x34\x64\xbd\x40\xd7\x74\x38\x34\xe9\x02\xf1\x73\x83\x32\x8a\x64\x18\x6a\xbd\x10\x4d\xc3\x50\x6b\x20\x8c\x2a\x1b\x86\x5a\x0f\x8d\xc1\xfb\x3b\xd0\x18\x0c\xc4\xcf\xea\x6a\x0c\x06\xaa\x5e\x97\x61\xf4\xf5\xf0\xa8\xdf\xc2\xe5\x34\x0c\xbf\x06\x8a\x02\x69\x18\x7e\x0d\xd4\xe6\x22\xaa\x15\x79\x90\x3e\x7d\x48\xc1\x86\x1c\x1d\x88\x5f\xb1\xc8\x6f\x43\xcb\xf2\xde\x19\xe4\xe8\x40\xdd\xb3\x59\xcb\x32\x10\x3f\x97\x1d\x03\xb7\x81\xbe\xd7\x77\x6d\xcd\x43\x72\x4f\x1a\x8e\x18\x92\x7b\x20\xf6\xa4\x97\xdc\x03\xcb\x79\x75\xd8\x41\xdc\xfe\xa5\xff\x63\xc8\xf6\x87\xd6\x67\xa5\xf2\xd0\xfa\x0c\x74\xed\x21\x43\xeb\x33\x10\xf2\xc0\x61\x5c\xcc\xd0\x20\x6d\xbc\xc5\xd0\x20\x0d\x94\xb6\x9b\x64\x2b\x8d\x8b\xc1\x68\x3f\x14\x05\x40\x28\x0a\x86\xa2\x00\x08\xc3\x06\x87\xf6\x68\xa0\xed\x91\xd3\x1e\x3d\x4e\xc6\xdc\x45\xd3\x48\x19\xa0\x18\x22\x3c\x0c\x94\x19\xa7\xdf\x9d\x24\x4d\x7b\x34\x10\x3f\xec\x67\xc3\x48\x19\xa0\x93\xe4\x3e\x86\x32\x64\x60\x8e\x1e\x4b\x3e\xa3\x3d\x1a\x68\x46\x0e\x0c\x65\x08\x50\x9b\xc4\x50\x19\x02\x54\x4f\xc9\x0d\x23\xcc\x87\x26\xe8\xe5\xdc\xd6\x04\x0d\xc4\x5e\x6e\x35\x41\x03\xf1\x73\x51\x36\xa0\x06\x08\x0f\xa3\x0c\x03\x6a\x80\x52\xea\x1f\x04\xf6\xb8\xec\x85\xcb\xbd\xda\x05\xf4\x72\xe6\x7f\xd0\x87\xa3\xa8\xb5\x1b\xe8\x9b\x83\x6a\xed\x06\x6a\x75\x1f\x52\x51\x01\x4d\x3b\xc3\x50\x51\x0d\xad\xdd\xcb\xfd\x50\x6b\x37\x10\x46\x76\x0d\xad\xdd\x43\x45\xb5\x5c\x66\x55\x54\x40\xf7\xd8\xeb\x50\x51\x0d\x15\xd5\xde\xf9\x55\x54\x40\xd7\xb7\x3d\x54\x54\x40\x21\x15\x51\x0c\x83\xd5\x81\x50\xb4\x0c\x43\x77\x86\xe7\x24\xb9\x01\x3f\x86\xb1\x3b\x63\xc7\xb4\x53\x5b\xed\xe4\x40\x16\xcc\x5c\x43\x75\x36\x3c\x27\xa9\x0f\x7f\x28\xcf\x80\x36\x1d\x5a\xd5\xd9\x50\x8a\x91\xca\x27\xc6\xbd\x1b\xfa\x30\x5d\xad\x87\x33\x40\x8d\xb5\xe4\xb8\x6a\x2c\xa0\x0e\x5b\xa0\xc6\x02\xc2\x64\x1b\x43\x8d\x05\xc4\xcf\x1e\x52\x63\x0d\x35\xd6\xc2\x5a\x3a\xd4\x58\x40\xfc\x30\xfb\x0d\x35\x16\x10\x7b\xab\xd6\xc0\x0e\x84\x89\x3b\x86\xf6\x75\xe0\xfb\x67\xfe\xa6\x6d\xe7\xf2\x2f\x8d\xe9\xc3\xd3\x94\x40\x18\xe5\x3e\x8c\x16\x1a\x8f\x3c\xcb\xfd\x50\x75\x36\xbc\xd6\x4b\x42\x6e\xd4\x0f\x10\x3f\x29\x8f\x56\xf8\x81\x86\x9b\x3f\x59\xaf\x1a\x0e\x28\xd5\xef\x4d\x0d\x37\x08\xa3\x9f\x3f\x39\xa6\xd1\x3b\x40\xd9\x5f\x97\xd1\x3b\x83\x30\xfa\xa9\x65\x74\x18\xbe\x03\x84\x09\x44\x86\xe1\x3b\x03\x5d\x37\xf7\x6e\xa2\xae\x03\xc2\x04\x22\x53\x5d\x07\x84\xfe\xe3\x69\xf4\x0e\x50\x94\x0f\xd3\xe8\x1d\x60\x19\xa7\x31\x35\xfc\x03\x61\x6a\x93\xa9\x1e\x04\xca\x74\xe1\x9a\x0a\x42\x20\x4c\x46\x32\x35\xfc\x4f\x62\x7c\xa6\x6b\xfd\xd4\xa4\x0f\x04\x77\xd3\xc6\xd4\xa4\x0f\xc4\xda\x6f\x5e\x16\xd9\xcc\xa4\xe8\xb6\xe8\x63\x63\x64\xc2\x8f\xa9\x92\x9c\xc4\xed\x4f\x17\xcb\xa9\x6c\x04\x82\x04\xd7\x31\x55\x8d\xb3\xec\xda\xf2\x03\x46\xfd\x00\x61\x16\x93\x69\xd4\x0f\x50\xa6\xcb\xd4\x34\xec\x07\x08\x8f\xe4\x4e\x55\x23\x10\x5c\x86\x16\x53\xd5\x08\x84\x89\x4d\xa6\xaa\x71\x7a\xf2\xd2\x65\x70\x2a\x1b\x81\xf0\x80\xc2\x54\x35\x4e\xee\xe6\x9a\x7e\xda\xd3\x50\x20\x60\xa9\x89\xa6\xaa\x11\x68\xca\xc1\xa9\x6a\x04\xc2\x24\x26\xd3\xe0\x20\x20\xd2\x81\xd2\x4b\x01\xc4\x0f\xf6\x34\x95\x96\xc0\xf7\x93\x54\x43\x6d\x09\x54\x7d\xc2\x53\x69\x09\x84\xbe\xf4\xa9\xb4\x04\x9a\xc7\x9f\xa6\x8e\x0b\x20\x95\x61\x53\xb1\x09\x7c\xff\x9f\x29\xa4\xda\x04\x8a\x31\xc6\x53\xb5\x09\x14\x03\x04\xa6\x62\x13\x68\x46\x6d\x4c\xc5\x26\xf0\xfd\x33\x1b\xe0\x44\xa8\xac\xc0\xf6\x8f\x6a\x73\x56\x27\x02\x8b\xc9\x54\x5a\x02\x61\xae\x96\xa9\xb4\x9c\xf8\x28\xa6\x2b\xc7\x54\x48\x02\x61\xc8\xe6\x54\x48\x02\xde\x12\x1e\x53\x1d\x09\x84\x47\xe8\xa6\x42\x71\x92\x63\x71\xfa\xfd\x4f\x55\x21\xd0\xb4\xa0\x4e\x55\xe1\x6c\x4e\x04\x3f\x45\x25\x20\xb0\xe6\xae\x9a\x0d\x6d\x4c\x78\xbf\x3b\x5d\x19\xc0\xf7\xa6\x65\x36\x94\x43\x0b\x3f\xf6\x8b\xa9\x2a\x04\xe2\x07\x7f\x9d\x8a\x42\x20\xb8\xd4\x21\xa6\xa2\x10\xf8\xfe\x19\x1d\xa9\x77\x03\x48\x35\xdb\x34\x15\x0c\x10\x64\x9c\x8a\x69\xd4\xd0\xec\xde\x3c\xe9\xb7\xa8\x76\x9c\x9f\x76\x5c\xf3\x0f\xd7\x60\xc7\x54\x59\x02\x65\xee\xef\x5e\x69\x09\xac\xb9\xab\xe9\xac\xe8\x2e\x79\x4e\x3b\xa5\x25\xa0\x2f\x68\xaa\x2c\x81\xf8\x0d\xdb\x62\xc7\x0c\x67\xb5\x1f\xb4\x92\x11\x08\x0f\x44\x4f\x25\x23\xf0\x3d\x66\x99\x8d\x19\xec\x30\xf0\xe2\xa9\x57\x06\x28\x73\xcf\x31\xdd\x32\xc0\x32\xd8\x6b\x2a\x36\xe7\xb0\xb6\x0e\xa4\x3a\x12\x88\xdf\xf4\x4d\xab\x3b\x1c\x48\x7b\x75\xec\xfa\x3a\x90\xb4\x4a\x87\x0b\x10\x61\x91\x0e\x97\x39\x1d\x35\xc7\x5b\xb9\x09\x24\xb7\x73\xc4\x54\x6e\x02\x7d\xb7\x5d\x1f\x0c\xb0\xe6\x2e\xb2\xed\x1f\xa4\x27\x1a\xa6\x02\x14\xf8\xfe\x3f\x3d\xa9\x02\x05\x96\x91\x80\xd3\xd8\x29\xe0\x7b\xcc\x57\x6d\xfb\x64\xf0\x6c\x93\x3a\x75\x6e\x9d\x6a\x87\x2b\x54\x81\xf8\x21\x1d\xa6\x42\x15\xc8\x19\xfe\x80\x3d\x34\x5d\xf2\x7c\xca\xde\x98\x4c\x6b\x3f\x42\x5d\x3c\x40\x7a\x32\x79\xea\xe2\x01\xd2\x48\xc6\xa9\xe6\x05\x96\xa1\x07\x53\xcd\x3b\xc3\xe1\x74\x50\x54\xa9\x40\xd1\x8c\x3a\x55\xa9\x33\xac\xff\xf4\x55\xeb\x6f\xca\x47\x67\x9f\xa1\x4d\x40\x68\x10\x99\x86\x36\x01\xd2\x96\xa9\xb7\x08\x90\x41\x4c\xc5\xed\x4c\xc7\x12\x2b\xd2\xd4\xf5\x03\xf4\x0e\x5d\x98\x8a\x5b\xa0\xcc\x5f\x58\xe6\x60\x9a\x76\xdf\x21\x31\xae\x09\xf8\x1e\xa3\x33\x14\xbc\x40\xd5\x1b\x34\x15\xbc\x40\xdd\x1b\xa4\x82\x17\x98\xcb\x21\xd7\x3f\x34\xd3\x86\xa3\x26\xa6\x1a\x18\x28\xfa\x2a\xa7\x1a\x78\xa6\xf3\x18\x2a\x33\x75\x06\x01\x53\xbd\x3b\x95\xc5\x73\x19\xd5\x81\x28\x98\x6a\x60\x40\x11\x3f\x95\xc0\xc0\xf7\x14\x6f\xaa\x81\x81\xa9\x04\x9e\x4a\xe0\xb9\x76\x3b\x2d\xb3\x9d\x0b\xb3\xbb\x73\x5b\xbd\x3b\x97\x33\x14\x8b\xce\x54\xdc\x02\x53\xa5\x3c\x15\xb7\x40\x84\x44\x40\x71\x3b\x0f\xfb\x1b\x0d\x39\x55\x95\xc0\x54\x29\x4f\x65\xe5\x3c\x6c\xbb\x5b\xb0\x4a\x10\x68\x9b\xdd\xa8\x04\x27\xa7\x86\xa7\x09\x92\xa6\xba\x0f\xf0\x02\xd1\x98\xea\x3e\x20\x0c\x29\x9c\xea\x3e\xe0\x7b\x93\x7a\x18\x88\x04\x84\x61\x6f\x53\x2d\x38\x11\x7e\xd3\xf3\x40\x53\xe1\x07\xac\xe9\x54\x56\xf8\x01\xdf\x63\xb4\x54\xe5\x07\x64\x3a\x54\x3a\xa0\x26\xd7\x66\x4d\xc3\x00\xe7\xb9\x9b\xc0\x99\x2c\x8b\x0c\x3e\x9a\xc8\xbc\xb9\xeb\xab\xcc\x03\xba\x11\x68\x53\x99\x37\x39\x24\x31\xf7\x9e\xae\xa8\x03\xba\xe1\xb0\x53\xd5\x06\x54\x32\x3a\xc6\x54\xb4\x01\xdf\x9b\x4c\x19\x55\xdb\x54\xb5\xb9\xde\xaa\xda\x80\xef\x31\x5a\xa5\x6c\x03\xba\x9e\xf1\xa9\x6c\x9b\xc8\xb6\x49\x96\xdd\x98\xca\x36\x60\x72\x75\x78\x4c\x65\x1b\xa0\x51\x60\xea\x2d\x03\x7a\x77\x85\xd4\x5b\x06\x74\x33\x86\x4d\x43\x94\x80\x5a\xa4\x59\xaa\x3d\xa0\x98\x00\x6f\xaa\xf6\x80\x32\xcd\xe6\x34\x55\x7b\x40\xf5\x80\xda\x54\xed\x4d\xef\x75\x2e\x92\x4e\xe5\x1e\x50\x42\x96\xa2\xdc\x9b\xa6\x9f\x94\x74\xaa\xf6\x80\xba\xbf\x63\xd5\xde\x44\xda\x4d\x0d\x29\x53\x69\x07\xb4\x96\xff\x7d\x0b\x76\x4c\x95\xdf\x44\xf9\x4d\x8f\xea\x4e\x95\x1f\x90\xe9\xc8\xaa\xfc\x80\xaa\xed\x68\xea\x83\x03\xbe\x37\xe9\x53\x9d\x70\x40\x16\xd9\xa6\xfa\x10\xf8\x1e\xa3\xea\x0a\x44\x20\x7f\xfb\xbf\xd9\x5b\x24\xac\xf4\x74\xf0\x54\x20\x02\x33\x5c\x56\xd5\x87\x73\x67\xdb\x91\xfa\x29\x10\x81\xac\xae\x23\x0a\xc4\xf9\xec\x46\x59\x66\xa3\x3e\xa8\x7a\x11\xa7\x7e\xb9\xf9\xec\x0c\x7f\x5f\x91\xca\x0f\x28\xd3\x90\x81\xa9\xf4\x03\xa6\xf1\x1e\x53\xe9\x07\xd4\xf0\xff\x1b\x80\x35\x55\x83\x66\x03\x99\xaa\x41\xc0\xab\xf4\x63\xaa\x06\xe7\xeb\xe4\x77\x5a\xe8\xab\x03\xda\x72\xa2\x2b\x10\x81\x19\xae\xa1\x0a\xc4\xa9\x40\x2c\x92\x2a\x05\x22\x50\xf7\x1a\xaa\x40\x9c\xe6\xd1\x31\xd3\xd5\x34\x10\x6c\xea\x0c\x74\x7b\x55\x33\x02\xdf\x63\x5f\x59\x28\x1a\x81\xaf\xac\x53\x56\x2c\xe3\x9a\xb2\xb4\xa8\x5a\x64\x4b\xd9\xa1\x42\x8d\x08\xcc\xd8\x45\xc3\x22\xc7\x8a\x36\x84\x91\x60\xf1\xc3\xe5\xc0\x06\x1b\x06\x82\x01\xd5\xad\x27\x54\x8d\xc0\xf7\xe6\xa2\xec\xb4\xec\xfc\xdf\xff\x5f\xc9\x3c\x1f\xa1\x6c\x04\xca\xf4\x64\x71\xa8\x1b\x81\xa9\x79\x3e\xd4\x8d\x81\xe3\x6f\x16\x98\x44\xa8\xe1\x80\x19\x50\x90\x50\xc3\x01\xd3\xc8\xde\x50\xc2\x45\x71\xc1\x9c\x3e\xf6\x5a\xc6\xaa\xc1\x12\x11\x8a\x33\xa0\x1a\x0e\x11\x8a\x33\xa0\x6c\x87\x4e\xa8\xce\x80\x29\xa1\x09\xd5\x59\x54\xd7\x83\xe9\x7f\x9b\x96\x4d\x1e\xa3\xc3\xd5\x5d\x40\xd9\x61\xb1\xa1\xf0\x02\x7a\xaf\x16\xd9\xa8\xca\xa1\x5e\x47\x4f\xdd\x15\x2a\x2a\xa3\x78\x43\x45\x05\xcc\xdd\xe1\x2a\x2a\xa0\xec\x48\xd2\xd0\x7f\x07\x54\x83\x62\x42\x91\x15\xcd\x25\x1f\x32\x17\x6a\x25\x60\x1a\x5e\x14\x6a\x25\xa0\x7a\x90\x38\xf4\xa9\x01\x95\x6b\xdb\x22\x54\x4f\xc0\x34\xba\x28\x54\x4f\x40\xd9\x91\xaa\xa1\x4f\x0d\x68\x5c\xdb\x16\xa1\xa0\x02\xca\x0e\xcd\x0c\x15\x15\xd0\x4d\x72\x18\x2a\xaa\x68\xce\x70\x0c\x75\xa1\x56\x02\xba\xc7\x7f\x42\xad\x04\xf4\xc1\x4e\x1c\x4a\x25\xa0\xec\x68\xcd\x50\x2b\x01\x93\x4c\xb6\x11\x6a\xa5\xe8\x4e\x70\x4c\x7c\xe1\x69\x71\x60\x1a\x0c\x15\x8a\xa1\xe8\x76\x6e\x5a\x66\xe7\x7e\xb0\xf4\xfe\x87\x6e\xb0\x18\xac\x32\xac\xf0\xe1\xd1\x89\x18\xf6\x07\x2b\x60\xe8\xdf\x02\x26\x77\x64\x45\xe8\xdf\x02\x6a\xdd\x45\x76\x87\x22\xc4\x80\xb4\x50\x84\x00\x4b\x07\x46\x28\x42\x82\xe3\xd7\x3b\x1a\x2a\x3c\x4e\x01\xb4\x0e\xf5\x09\x45\x08\x30\xb9\x49\x2b\x42\x11\x12\xe6\x12\x6a\x3e\x65\x77\xe0\x06\x23\x66\xea\xfb\xc3\xd9\x31\x99\x1d\x90\x95\x50\x85\x00\xd5\x30\x8d\x50\x84\x00\x65\x87\x05\x85\x2a\x04\x98\xe1\xa7\xa7\x08\x09\x15\x87\xb1\x48\xa1\xe2\x00\xaa\xa9\x4b\x42\xc5\x01\x94\xfd\xe9\xa9\x38\x02\xfa\x3f\xcd\x3c\x1b\xf2\xff\xf0\xb4\x03\xdb\x7f\xe8\xa5\x0a\x0e\x4c\x4f\x2e\x7d\x8c\x88\xfd\x2a\x5f\x8b\x5f\xa8\x6c\x1f\xf0\x8a\xc0\x08\xe9\x3e\x30\xb9\x44\x2c\x42\x5f\x16\x30\xdd\x31\xc3\x53\x0c\x21\xdb\xaf\x6c\x85\x21\xdb\x07\x6a\xac\x3f\xd8\xc1\x43\x31\x00\x94\xe6\x84\x55\x0b\x04\xf4\x7d\xea\xf1\x0d\xf9\x3b\x30\xc3\x05\xd3\xc3\xd1\xc0\x34\x90\x2e\x64\xf4\x40\xe3\x9e\xb7\x08\x19\x7d\xc8\xe8\x2b\x1b\x59\xc8\xe8\x81\xe9\x49\xb7\x90\xd2\x03\xd5\xf0\xd7\x90\xd1\xc7\x72\x1c\xed\x53\x1d\x51\xc0\xf2\x10\x78\x48\xd5\x63\x39\x39\xdd\x7a\x74\x27\x01\x69\x9c\x65\xe8\x4d\x8a\x43\x67\x37\x13\x45\xd7\x11\xf0\xbd\xc9\x63\xfa\x8e\x80\x9d\xff\x29\x74\x1d\xc5\xe1\x4c\x74\xff\x90\xd2\x03\x4d\x3b\x55\xe8\x29\x02\xca\x34\x09\x57\x18\x18\x06\xb4\xd2\x7c\xd3\x16\x1c\x4e\x1e\x37\x0b\x4f\x3d\x00\xdd\xb3\x3e\x61\xb0\x18\x50\xba\xfb\x87\x6e\x27\xe0\x7b\x93\x86\xea\x77\x02\x9a\x4e\x9a\xd0\xef\x04\x2c\x93\xb6\x84\x62\x23\xf6\xd9\x6b\xbb\x4d\x27\x13\x30\xf7\x82\xac\xd8\x08\xf2\x11\xcd\xea\x22\xaa\xb4\x00\x1a\x37\xdc\x46\xa8\x2c\x80\xef\x31\xba\x4d\x69\x01\xcc\x70\xc5\xd7\xcd\x14\xa7\xdf\x97\x8b\x97\x9a\x01\xe8\x7b\x2d\xd7\x7f\x04\xac\xbe\x7f\xd3\x16\x9c\x4c\x2c\xf7\x05\xfd\x47\xa1\xd8\x30\x0c\x25\x14\x1b\x40\x98\xa4\x37\x14\x1b\x71\x39\x06\x7e\x39\xea\x03\x60\xa5\x23\xaa\x3c\x08\x49\xbe\xb9\xba\x42\x92\x0f\x98\x47\x3c\x42\x92\x1f\xb7\xff\x8d\x00\x89\x90\x4c\x03\xc5\x94\x4d\x21\x99\x0e\xc2\xd8\x66\x75\xe1\xd6\x51\x02\xa4\x16\x82\x90\x4c\x03\x95\x5b\x1c\x23\x64\xcb\x40\xa8\x79\xc2\x28\xb6\x78\x9c\x93\x6e\xff\x72\x5e\xa0\x19\xb9\x14\x52\x5e\xa0\xef\xbd\x42\xca\x0b\x94\x59\x09\x05\x0a\x39\x2f\xd0\xcd\x57\x13\x72\xde\x90\xf3\x9a\xbd\x2b\xe4\xbc\xc0\xd4\x6d\x14\x72\x5e\xe0\x7b\x8c\xfe\xd0\x2b\x02\x54\xc3\x0b\x43\xa7\x08\xf0\x3d\x66\x45\x6c\xe8\x07\x75\x6f\x33\x7a\x45\x80\x69\xdc\x40\x3c\xbb\xa1\x26\xc4\xb0\x51\xf6\xf7\x07\xba\xe1\x43\x4a\x0d\xa4\x4a\x34\xa4\xd4\xf1\x3a\x49\x97\x65\xf6\xc6\x4b\x40\x0f\x0e\xd9\x90\x2b\x07\xa1\x6e\xb3\xb9\x85\x1b\xea\x06\x4c\x6e\x31\x8e\x30\xd4\x2d\xe4\xcf\x0d\x6f\x4a\xc8\x9f\x81\xc9\x95\xc5\x11\xf2\xe7\x20\xc3\xe4\xdc\xab\xa4\xcc\x18\x68\x46\x25\x86\xc4\x38\xf4\xa6\xb8\x2f\x48\x8c\x81\x6a\x02\x95\x94\x17\x03\xd3\x33\x13\x29\x2d\x06\xaa\x76\xb9\x94\x16\x03\x4d\x27\x6a\xea\x4c\x49\x0e\x3e\x4c\x23\x54\x53\xbe\x0b\x4c\x0f\x5b\xa4\x7c\x37\x89\xae\x9b\x86\xec\xa6\xe4\x16\x68\xbf\xfd\xd8\x6d\x11\x5e\x5a\x76\x94\x94\xdb\x26\x61\x73\xd3\x20\xcd\xd4\x01\x02\x4c\x8f\x69\xa4\x61\x73\x40\xe3\x9e\x82\x48\xa3\xe6\x80\xef\x4d\xfe\x9b\x61\x73\x40\xff\x41\x54\x52\xcf\x09\xf0\x3d\x66\xd9\xb4\x8c\xbc\x0d\x7c\x04\xa9\xe7\x24\x4d\x50\xb9\x2c\xb2\x9d\x1c\xc0\x98\x66\x37\x4b\x39\x36\xd0\x9d\x1d\x29\xc7\x06\xbe\xc7\xac\x9b\x6d\x37\x7f\xd2\xf2\x37\x77\x43\x1f\x1f\x63\x0c\xa4\xe2\xc0\xd4\x47\x94\x52\xf1\x24\xba\x6e\x9a\x2b\x2d\x25\xd9\xc0\x0c\xb6\x96\xd4\x03\x02\x7c\x8f\xd1\x47\xba\x40\x80\xb9\x47\x54\x2a\x9e\x52\x71\x1b\x2a\x15\x07\x7a\xcf\x3f\x24\x10\x4f\x89\x7a\xea\x21\x31\x2f\x5b\xca\xd4\x81\x19\xf0\x9d\x94\xa9\x67\xdd\xfd\x60\x35\xed\x07\x82\xef\xc2\xee\x92\xbc\x03\x93\xcb\xab\x23\x25\xef\xa9\x3b\xc4\x18\x85\x94\xa9\x03\x55\xe7\x73\xea\x0e\xc9\xe6\x80\x3b\xb1\xf5\x7d\x00\x4d\x1f\x55\xca\xe7\x93\x88\xb8\x69\x1c\x54\xca\xde\x81\xd6\xa6\x6f\xda\x2a\xee\xa9\x6d\x6c\x46\x29\x7b\xcf\x46\x98\x95\x93\x4c\x56\x0e\x4c\x4f\x24\xa6\xac\x3c\xf5\x73\x98\x32\x3b\xf5\x73\x00\x75\xec\x9a\x39\xb6\x6d\x37\x8a\x86\x4a\xde\x81\x62\xa4\x71\x4a\xde\x53\xa6\x6e\x0a\xaa\x94\xa9\x03\xcb\xc8\xc9\x94\xa9\x03\x65\x36\x1c\x0d\x69\x90\x1c\x50\x8c\x6f\x4a\x1d\x1d\x29\xa1\xf7\x04\x76\x4a\xe8\x53\x42\xbf\x7f\xd4\xb6\xeb\xb6\x30\x9b\x5c\xea\xb6\x00\xa6\xb6\xc6\xd4\x6f\x01\x7c\x8f\x59\x66\x4b\x8d\x88\x83\xc1\xa6\x52\x00\xf8\x1e\xa3\xa5\x6a\x01\x60\x9a\x45\x2b\x3d\x5a\x0d\x7c\x8f\xd1\x52\xf5\x01\xd0\xd2\x1f\xf0\x68\x75\x0e\x5b\xca\x9a\x9c\xba\x41\x80\xd6\xfd\x9c\xf4\x82\xe4\xb0\x55\x34\x54\x8f\x47\x0e\x57\xcc\x61\x99\x4d\xf8\xa0\xb9\xcd\xa4\x2a\x22\xa7\xd3\xc8\x7e\x93\xf9\x03\xcb\x0c\x45\x29\xf1\x4f\x29\xbd\xbe\xc2\x94\xd2\x03\x4b\xc3\x76\x4a\xe9\x81\xef\x31\xba\x57\xc7\x02\x30\x25\x96\x29\xcb\x07\xaa\x87\x5d\x53\x96\x0f\x74\xd3\xb1\xa6\x2c\x1f\x98\xc1\x6e\x97\x73\xd7\x96\x93\x2e\xfb\x7f\xd9\xdf\x5c\xb4\xbb\xbf\x20\x5d\x0d\x19\x8e\x3b\x24\x3f\x8d\x75\x03\xaa\xb9\xbb\x53\x27\x42\x86\xe3\x0e\x67\x4a\xdd\x03\x40\x35\x95\x59\xaa\x18\x32\xfd\x6f\x70\xea\xd4\x32\x0f\x4c\xcf\x68\xa5\x96\x79\xa0\xcc\x96\x3e\x66\x77\xa4\x57\xee\x59\x64\x6f\x48\xed\x9b\x8b\xb2\xd4\x1e\xa8\x3a\x50\x32\xf7\x8f\x7e\x1c\x72\x97\xd8\x74\x98\xbd\x64\x2b\x65\xf6\x29\xb3\x37\xe7\x49\xca\xec\x81\xa2\xcf\x38\x65\xf6\xa9\xb1\xbe\xd9\x28\xa9\x3d\x30\xd5\x3c\xa9\xb1\x3e\x97\xed\x74\xd1\xd7\x32\x0f\xb4\xe8\x3e\x66\x3b\x97\x77\x01\x33\xea\x0a\x00\xe0\x7b\xd3\x1f\xb5\x9d\x8b\x51\x77\x1b\xd0\x58\x0f\xcc\x70\xd4\x3d\x3f\x02\x4c\x0f\xb1\xa5\xb1\x69\xb9\xdc\x19\x1c\xd0\xb5\x1b\xea\x3d\x45\xbc\x69\x20\x1a\x50\xa6\xde\x97\x54\x4e\x00\xd3\xb3\x6e\xa9\x9a\x00\xbe\xc7\xa8\x87\x72\x02\x98\x9e\x75\x4b\x7d\x06\xa9\xc2\x30\x6b\x63\xaa\x30\x80\xe9\xf9\x80\x54\x61\xa4\x0a\xc3\xc8\xff\x54\x61\x00\xe5\x07\x45\x4d\x15\x46\xaa\x30\x8c\xfc\x4f\x15\x06\x90\x1e\xa3\x4c\x15\x46\x1e\x97\x8f\x59\x11\x5b\x8f\x76\xd0\x4b\x9f\x6a\x87\x54\x3b\x18\x10\x9f\x6a\x07\xa0\x2e\x3b\x44\xed\x00\x54\x8d\x78\xa9\xa3\x02\x98\xe1\xae\xa8\x9a\x00\xda\xd8\x2f\xda\x76\xd4\x84\x27\xe7\x52\x31\x91\xfa\x29\xba\xeb\x9a\x7e\x0a\x60\x75\x3f\x20\xfd\x14\xc0\xf4\x50\x5f\xea\xa6\x00\xb2\xbb\x7e\x2b\x39\x80\xef\x9f\xd1\x69\x6a\x0e\x20\xeb\xae\x86\x2d\x27\x2d\xea\x34\xf1\x5f\x2a\x3a\x80\x9a\xce\x48\x35\x47\x5e\x8e\x7b\xf9\x83\x49\x3c\x3d\x6a\x9d\x5e\xed\xeb\xc7\xa4\xff\x23\x75\x76\x74\xd7\x77\x9d\x1d\x40\x31\x36\x2c\x75\x76\xe4\xe5\x40\x3a\x6a\xba\x31\x80\xc9\xbd\xd7\x91\x7a\x31\x80\x6a\x92\xfe\xd4\x8b\x01\x94\x96\xfe\x7f\xdb\x7c\x39\x8e\x4e\x76\x1d\x14\x40\xd5\x01\x97\x3a\x28\x52\xd7\x43\xb7\x57\x75\x3d\x00\x53\xf3\x74\xea\x7a\x00\x6a\xc3\xa4\x95\x7a\x1e\xf2\xb6\xb6\x12\x07\x9d\x0a\xc0\x8c\x5d\x64\x6d\x55\x46\xe8\xf0\x54\x19\xa5\x36\x7d\x65\x61\x2a\x70\x80\x65\xb2\xb9\x54\xe0\xa4\xca\xc5\x14\x7a\xa9\x72\x01\x56\x1f\x16\x39\x53\x3e\xa8\x1e\x78\x4a\x85\x4b\x3e\xce\x01\xe7\xb5\x92\x04\x98\x9e\xf5\x4c\x25\x49\x92\xe3\x7e\x9a\x42\x2f\x55\x20\xc0\xea\x6e\xce\x2a\x90\xe4\x08\xf5\xdc\x1b\x94\x16\x7c\x60\x7a\x1c\x24\x15\x25\xa9\x05\x7f\xd7\x4d\x55\x02\x4c\x8f\x84\xa6\x16\xfc\x7c\x6d\x95\x2d\x55\x95\x00\xd5\x80\xb1\x54\x94\x24\x21\x5e\x53\xcb\x47\x6a\xc2\x07\xaa\x71\xb4\xf9\xda\x95\x0a\x15\xe5\x74\x2a\x54\x80\xa5\x29\x21\x15\x2a\xa9\xb9\xbe\x33\xf2\x4b\x59\xb2\x34\xd7\x77\xac\x88\x4b\x5d\x02\x54\x2d\x97\x4b\x5d\xb2\x0c\xdf\x32\x4d\xde\xd2\x36\x0f\x4c\x0f\xc4\x2e\xc3\xb7\xd6\xcf\xef\x69\x5a\xf6\x58\x46\x9a\x61\x16\x84\xe5\xd9\x9d\x55\x1c\x7a\x94\xf8\x52\x4b\x00\x33\x30\x18\x2d\xa5\xc4\xd2\xe8\x6e\x62\xbb\xa5\x22\x00\xc2\xf5\x7c\x29\x08\x96\x11\x51\x1d\x53\xee\x92\xea\x03\xd3\x6b\x05\x96\x4c\x7f\x19\xc5\x64\xd6\x81\x25\x87\x07\xa6\xea\x7c\x49\xe1\x97\xe6\x74\x13\xdc\x2c\x39\x3c\x90\x5a\x03\x97\x1c\x7e\x55\x47\x86\x6d\x70\x49\xbf\x81\xe5\x44\x5a\x06\x28\x01\xa9\xb5\x71\x49\xc8\x81\xf0\xa4\xc2\x92\x90\xaf\xe6\x20\xb0\xe6\x2c\xa9\x36\xb0\x0c\x23\x58\x1e\x6a\x59\xb2\x6f\x13\x9c\x2e\xd9\x37\x30\x83\xb5\x6f\xc9\xbe\x97\x16\x70\xf3\xc7\x2d\x2d\xe0\x40\x73\x39\x5c\x5a\xc0\x81\x39\xf7\x0f\x58\xb5\xc6\x2d\x22\xd5\x6a\xec\xaa\xdd\xfe\x33\x7a\x4d\xaa\x0d\xb4\xe6\x94\x91\x6a\x2f\xa9\xb6\xb9\xe2\x96\x54\x1b\x98\x06\xeb\x2c\xa9\x36\xd0\x0c\x59\x5c\xda\xc9\x97\xc1\x42\x26\x20\x5d\x72\x68\x60\x1a\xcf\xb6\xa4\xd0\x40\x99\xa6\x8f\x5b\x72\x68\xa0\xfd\x70\x2b\x2d\x03\x84\x80\x69\x9c\xd4\x32\x40\x68\x8d\xea\x9b\x4c\x36\x19\x2e\x30\x0d\x45\x59\x86\xfe\x2c\xe3\x7c\xb4\x9a\x2c\x19\x2e\xd0\x8d\x3b\x59\xc6\xf9\x00\x93\x7b\x56\x63\x49\x7a\x97\x16\xf6\xc1\x1a\xbb\xc6\xfe\x51\x92\xbb\x0f\xdf\xb4\xbf\x4d\xcd\x3f\xac\x86\x9d\xfb\x41\xf7\x22\x97\x25\x35\x5e\x66\xe6\xc7\x48\xba\x34\xb0\x03\xcd\x88\xdf\x65\x94\x0f\x30\x75\x68\x2c\x4d\xee\xcb\xc0\x9f\x51\x7d\xcc\xbe\xc5\xe6\x6e\x1a\x8c\xa5\xcd\x7d\x69\x60\x37\x4d\xdb\x92\x67\x03\x6d\xed\x22\x5b\x6e\x98\x8f\x5e\xc7\xa5\x85\x1d\x98\xd3\x61\x97\x8d\x03\xcd\xed\x6b\xc9\xc6\x17\x96\xf3\x69\x32\xb7\x25\xa9\x06\xea\x6f\x59\x64\x3b\xc9\x74\x34\x07\x6b\xe7\x92\x55\x03\x73\x62\x3a\x5c\xb2\xea\x25\xab\x36\x8b\xe7\x92\x55\x03\xc5\x74\xaf\x4b\x56\xbd\x3c\x40\xb2\xdf\xb4\x1e\xe1\xa8\xf4\x3f\xa4\x24\x5d\x9a\xee\x97\x19\xf9\x5d\xe3\x0c\xe6\x59\xe1\xbc\x46\xcd\x2d\x8d\xf2\x40\x4f\x67\x85\x46\x79\xa0\x6a\xdd\x5d\x06\xea\x2c\xed\xf4\x9a\xba\x96\x76\x7a\xa0\xee\x61\xd3\x10\x0f\xcc\x39\x7d\xd3\xbe\xcf\x5d\x73\x5a\x23\x83\x07\xa6\x99\x4a\x96\xe1\x36\x2b\xed\xe8\x61\x99\x1d\xfd\x41\x1a\x78\xb7\xa4\xf0\xc0\xda\xbd\x25\x85\x07\x8a\x86\x96\xe5\x29\x94\x25\x9b\xde\x93\x4c\x36\x0d\x4c\x83\x44\x96\x6c\x7a\x1d\x7e\x24\x58\x5a\x97\xfc\x14\x58\x9e\x6c\x5c\xd2\x53\x60\xce\xfd\x94\x23\x74\xf8\x03\xae\xe5\x72\x51\x60\x19\xdc\xb0\x8e\xfd\x03\x2e\x37\xe8\x9e\x25\x17\x05\x52\xff\xd2\x32\x68\x66\x49\x4f\x87\x4b\xbe\xf4\x14\x58\x26\x0b\x5e\xd2\xd3\xe5\x8d\xa7\xb6\x40\x7a\xba\xb4\x76\x0f\x1c\x7a\x4b\x7e\xba\xcc\xbe\xef\xf2\x2e\x3f\x5d\xa4\xd5\x9f\x83\x18\x9f\x25\xf3\x04\x7a\xb3\x1e\x32\x4f\xa0\x6b\x16\x5a\x32\x4f\xa0\x8e\x62\x91\xcb\xea\xe9\x48\xa5\x65\x8e\xd4\x07\x4d\xaf\xf0\x92\x78\x02\x65\xb9\x8c\x48\x3c\x81\xef\x4d\xa6\x82\xd6\x6e\xa0\x7b\xa6\x65\x49\x36\xd7\xbe\xb0\x89\x9a\x49\x36\x81\x32\xcd\xa4\xb1\x8c\xb6\x59\xde\xd8\xe4\x96\xe5\xa1\x8a\x75\x39\xa0\xbb\xcc\x01\xc5\x9c\xae\xfe\x5a\x5a\xd3\x97\x9c\xd4\x6b\x91\x96\x9c\x14\x28\x86\x69\x2c\x39\x29\xf0\x3d\x66\x99\xfd\xf1\x41\xd3\x1d\xbb\x24\xa5\x4b\x43\xbc\x9e\x8f\xa5\x21\x1e\xe8\x7b\x62\x69\x88\x5f\xe6\xfa\x31\xa5\xd9\x92\xa8\x02\x55\x8a\xbb\x8c\xa4\x01\xaa\x47\xff\x97\x91\x34\x8b\x1b\x5a\xe7\xdc\x65\x7e\x68\x1f\x4c\x8f\x9d\x2d\xb9\xeb\xc2\xaa\x3f\x4d\xee\xb4\x34\xeb\x03\xd5\x73\x7e\x4b\x3a\xbb\x48\xd5\xbf\x6f\x80\x5b\x86\xb2\x00\x7d\xc2\x67\x97\xa1\x2c\x4b\x3e\x6b\xa6\xaf\x25\x9f\x05\xe6\x82\x47\x2e\xf9\x2c\x50\x74\x42\x2c\xed\xf5\x40\xd9\x37\x3b\x2d\x0d\xf6\x40\x2b\xee\x33\xb2\x5e\xa0\x1b\xa3\xb4\x64\xbd\x4b\x7b\xbd\x66\xd4\x25\xed\x05\xba\x39\x18\x97\xf6\xfa\xa5\xbd\xde\x7c\x60\x4b\x7b\x3d\x30\x57\xf7\x4d\xc7\x85\x64\x42\xfb\x0e\xa2\x25\x3b\x06\xa6\x67\xee\x96\x06\xfb\x25\x61\x36\xed\xce\x92\x30\x03\xf5\xe7\x27\x24\x61\x06\x8a\x8e\xa0\x65\x10\xcc\xd2\xee\x6e\x6a\xde\x25\xc5\x05\xaa\x01\xd0\x4b\xbb\xfb\x7a\xad\xae\x53\x4b\x8a\x0b\x74\x73\x41\x2d\xe3\x56\x96\xac\xd7\x54\xae\x4b\xd6\x0b\x54\x63\x96\x97\xac\x77\xc9\x7a\x4d\x38\x76\xc8\x7a\x81\x66\xea\x8f\x43\xd2\x0b\x94\x7d\xb9\xc6\x21\xeb\x05\xa6\x81\xc4\x87\xd6\x78\x60\x1a\x97\x78\x18\xb6\x72\xfc\x1c\x3e\xd4\xd9\x21\x11\x06\xa6\x89\xf4\x0f\xc3\x56\x0e\x03\x52\x4c\x69\x7a\x18\x90\x02\x14\x1d\x57\x87\x36\xfb\xc3\x80\x14\x93\x90\x1d\x1a\xed\x81\xa6\xe5\xf1\x90\x55\x03\xad\x2f\xff\x19\x63\x70\x68\x8d\x37\xc1\xd0\x21\x85\x06\xa6\xde\x95\x43\x6b\xfc\xe1\xa1\x05\x03\x7d\x0f\x4d\xef\x40\xd1\xb6\x7f\x78\x68\xe1\xd0\xf4\x6e\x54\xef\x21\xd3\x06\xfa\x60\x9b\x3b\x34\xbd\x1f\x92\x6f\x53\x8a\x1d\x92\x6f\x60\x7a\xfb\xda\x51\x76\xdd\x1c\x04\x2b\xa2\x9d\x1d\x28\x66\x73\x39\x0c\x79\x39\x34\xbd\x7f\xfc\xed\x3f\x37\xed\x43\xcb\x3c\x10\x03\xb3\xdb\x21\xab\x3f\xaa\x75\x62\x67\x3c\x34\x70\x03\x99\xbb\xc8\x3a\xc9\xba\xdd\x54\x0f\x59\x37\x10\x86\x32\x1e\xb2\xee\xc3\x23\x00\xee\x66\x87\x47\x00\x80\x16\x10\x9a\x43\x22\x7e\x68\xf3\x76\x17\x39\xb4\x79\x03\x53\x8b\xda\xa1\xcd\x1b\xf8\x1e\xf3\xd5\x65\x19\x61\xa7\x7c\xb1\x87\x7c\xfd\xf0\x0c\x80\x37\x99\x1d\x12\x76\xa0\x68\xe6\x38\x24\xec\x40\x75\x0d\x3e\x24\xec\x40\xfd\xed\xda\xda\xf6\xe6\x07\x1b\xfe\xc0\x6e\xfc\xcb\x39\x4e\xfe\xbf\x7c\x1d\x58\x5a\x82\x0f\xf9\xfa\x21\x39\x37\x59\xd9\x21\x39\x07\xea\xee\x49\xc9\xf9\xa1\x31\xdb\xf4\x62\x87\xc6\x6c\x60\x19\xb5\x71\x68\xcc\x06\xd2\x48\xfd\x43\x5b\x36\x90\xb1\x7f\xd3\x9a\x0d\x87\x85\x1d\xfa\xd0\x70\x0d\x4c\xaf\x97\x38\xb4\x5b\x1f\xc3\xfe\x86\xfd\x1f\x92\x73\xa0\xed\xf9\x29\x39\x3f\xe6\xfe\x6f\xf4\x9a\x54\x19\x58\xda\xa3\x0e\x99\x32\x90\x1e\x1a\x39\x64\xca\x87\x21\xec\x1a\x79\x0f\xc9\x2d\x90\x26\x9a\x3c\xb4\x34\x1f\x06\x94\xe8\x41\x3a\x34\x35\x03\x6b\x77\x91\xa6\xe6\x83\x04\x44\xdb\x8d\x71\x48\x6e\x81\xc9\xfd\xf5\x71\x18\x9d\x7e\x70\xd6\x7a\x7b\x75\x0e\xcf\x5a\x03\xdd\x03\x08\x87\x67\xad\x81\xb2\x6d\xef\x87\x67\xad\x81\xaa\x3f\xfa\x90\x29\x03\xcd\x0c\x7d\x87\x4c\xf9\x08\x0e\x1e\x39\x4b\xa5\xbd\x40\xd5\x0c\x79\x48\x7b\x0f\x8e\x5a\x4f\x2f\xc9\x38\x0c\x4f\x01\x4a\x83\xeb\x1f\x32\x61\x20\x0c\xc1\x3c\x64\xc2\x40\xd3\xcd\x79\xc8\x84\x81\xb2\xfd\x1a\x87\x31\xeb\x40\xf3\x06\xc8\x43\x72\x0c\x74\x0d\x49\x87\xe4\xf8\xc8\xdd\x4c\x7f\xc0\x66\xa6\x67\x2f\x68\x93\x86\x71\xa0\x6c\x23\xef\xa1\x65\x1c\x08\x63\xe2\x0f\x0d\xe3\x87\x84\x59\xfb\xf3\x21\x61\x06\x5a\x71\x85\x97\x30\x1f\x1a\xb8\xb5\xe8\x1e\x1a\xb8\x0f\x0f\x64\xfb\xe9\x69\xe0\x06\xfa\x80\xcb\x1f\xda\xb7\x8f\xd5\x7d\x93\x86\x7a\xfa\x1a\x08\x83\xee\x0f\x83\xd1\x0f\x33\x71\xc2\x13\x0e\x4d\xde\x40\x31\xb4\xed\xd0\xe4\x0d\xd4\xea\xf4\xd6\xe4\x7d\x90\x0c\x69\x9b\xe4\x0e\x8d\xd9\x40\x69\x88\x91\x43\x63\x36\xd0\xf6\x1a\xb6\x76\x9b\x1c\x4f\xec\x5e\x87\xf6\x6d\xa0\x7a\x17\xcb\xa1\x7d\xfb\xf0\xa0\x35\x9b\xec\xa1\x79\xfb\xd0\x48\xad\x8d\xeb\xd0\x48\x0d\xd4\xbd\x10\x29\x02\x80\xf0\x38\xc0\xa1\x08\x00\xca\x36\xae\x1c\xaa\x00\x20\x7e\xd6\x56\x1b\x35\x90\x6a\xe0\x43\x5d\x00\xa4\x14\xfd\x50\x17\x1c\x46\xc1\x68\xd0\x39\x8c\x82\x39\x3c\x7d\x8d\x27\xe5\xd0\x92\x0d\x84\xe7\x08\x0e\xd5\x03\x90\x5e\x79\x72\xa8\x1e\x0e\x35\x80\x46\x93\x43\x0d\x00\x84\x16\xf5\x43\x0d\x70\x9c\xce\x3e\x37\x4a\xc3\x5b\x80\xa5\xfc\x3f\xcc\xf3\x79\x18\x38\x6f\xd8\xea\xa1\x2e\x00\xd2\x58\xcb\x43\x5d\x70\x18\xcb\x62\xd8\xea\x71\xee\x8a\x7c\x43\xb0\x89\x83\xec\xfe\xb8\x5c\x00\x5c\xc3\x24\xe9\x40\x78\xe5\xd9\xa1\xdd\x18\x48\x4d\xc9\x87\xb4\xfd\x30\x0a\xc6\x60\xc8\x43\xde\x0e\xac\xb9\x8b\x1c\x82\x0f\x52\xba\x7c\xc8\xe4\x0f\x83\xe4\x0d\x1b\x3c\xa4\xf2\x87\xd9\xa2\xfc\xf2\x64\xf2\x40\x35\x61\xfa\x21\x93\x3f\x8c\x45\x8f\xf1\x87\xc8\xb3\x43\xd2\x0d\x34\x6f\xef\x38\x8c\xae\x39\xb4\x21\x1b\xe6\x76\x48\xba\x81\xae\x2d\xed\xd0\x86\x7c\x18\x65\x6e\x00\xd9\x61\x94\x39\x50\x2b\x74\xfd\x90\x9a\x03\xd5\x2b\xb3\x0f\xa9\x39\xd0\xb5\xc9\x1e\x06\x99\x1f\xb2\x75\x63\x97\x0e\xd9\x3a\x50\xdb\x7e\xcc\xae\x37\xbc\xc6\x74\x2c\x87\x74\x1d\x68\x73\xff\x80\x8d\xf2\xc8\xb1\x9b\xae\x6c\xfd\x78\xec\x54\x67\x94\x3c\x1c\x48\x4f\x9a\x1f\xd2\xf0\x43\xce\x1d\xfb\xbf\x39\x8b\x3f\xa8\x46\x10\x1e\x72\xee\x43\xce\x6d\x5e\x8e\x43\xce\x7d\x18\x79\x8e\x73\xe4\x90\x73\x1f\xc6\xbf\x98\x36\xe3\x30\xfe\x05\x48\x83\xd1\x0f\x2d\xcd\x87\xa7\x89\xcd\xaa\x76\x48\xba\x81\xae\xf5\xf9\xd0\xd2\x0c\x44\x95\x5a\x49\xc3\x0f\x39\x77\xa0\x17\x0f\x39\x37\x10\xde\xb1\x78\xc8\xb9\x0f\x43\x62\x42\x7a\x6a\x4c\x0c\x50\x34\xf0\x9e\xd2\xf0\xf3\xe7\x20\x60\x89\x38\x25\xd8\xe7\x47\xaa\xc3\x64\x3e\xa7\x86\xe6\x53\x82\x1d\x08\xc1\x53\x82\x0d\x2c\xc6\xfd\x94\x5f\x03\xdf\x53\x49\x59\x5a\x96\x54\x6d\x51\xb4\x2c\x72\x5c\x96\x65\x87\x65\x34\x94\x39\x79\xca\xcc\x81\xe6\xf2\x7e\xca\xcc\x4f\xb2\x50\x4d\x3f\x9d\x53\xce\x0d\x84\x59\x10\x4f\x8f\x13\x9f\x86\xd3\x24\x24\xe1\x34\x9c\x06\x68\xf2\x97\xd3\x70\x9a\x53\xb6\x6e\x8e\xaf\x53\xb6\x0e\x94\xdf\xfe\x6f\xb6\x9d\x53\xc7\xca\xc5\xd3\xd0\x99\x53\xb3\x78\x22\xf7\x4f\xcd\xe2\x40\x78\x23\xe4\x29\x59\x3f\x3d\x4f\x9c\x3f\xcb\x6c\x15\x81\x32\x3a\x00\x4e\xe3\x64\x4e\x09\x7c\xb2\x1d\x9d\x12\x78\x20\x2a\x2a\xfb\x94\xc0\x9f\x12\xf8\x64\xbb\x38\x25\xf0\x40\xd4\xb4\xc8\x86\x6a\x64\x37\x8d\xdd\x29\x1d\x07\xc2\x9d\xec\xd4\xc8\x0e\x84\x77\x70\x9f\xda\xd8\x81\x32\xb1\x91\x9c\xda\xd8\x4f\x43\xd6\x13\x3d\x7a\x1a\x09\x03\x14\x53\xc5\x9c\x06\xc2\x9c\x9a\xe2\x93\xc5\xf0\xd4\x14\x0f\x84\xd9\x1a\x4e\x4d\xf1\x40\x78\xaa\xfe\xd4\x14\x0f\x14\x2f\xd3\x39\x35\xc5\x9f\x75\x77\x87\x6f\xda\x1d\xd5\xee\xa0\x87\xd4\x0e\xa7\xda\xc1\xbc\x30\xa7\xda\x01\x08\xd7\xa2\x53\xed\x70\xaa\x1d\xb2\x5a\xe6\x04\xe7\xf8\xb0\xb7\x72\x9e\x6a\x87\xd3\x83\xc1\x66\xf5\x3b\x15\x0a\x40\x18\x85\x78\xaa\x13\x4e\x0d\xfb\xba\x52\x4e\x85\x02\x50\x4d\xd7\x70\xaa\x13\x4e\x43\xdb\xb3\xfa\xaa\x2d\x45\x28\x28\x6e\x4f\x85\xc2\xa9\x65\x3f\xd1\xc5\xa7\x4a\x01\x08\x39\xe4\xa9\x50\x38\x0d\x7b\x49\x36\xd0\xd3\xb0\x17\x20\xbc\x31\xf4\x54\x15\x00\xe1\x26\x78\xaa\x0a\x80\xf0\xce\xd3\x53\x8b\xfd\xe9\x99\xde\x6c\x3e\x66\xab\x3a\xf1\x0a\xdd\xff\x6f\xa3\xba\x53\xd7\xb5\xc2\x0c\x52\x40\xad\xcd\xc7\x6c\xd4\x07\x51\x59\xb2\x4e\x25\xc6\x69\x9c\xbc\xf7\x83\x9d\x7d\xb7\x60\x9f\xf9\xff\x8a\x8c\x8d\x01\xaa\xa4\xe0\x54\x62\x00\xdd\xcb\xe9\x4f\x25\x06\xd0\xcc\xbf\x74\xea\x38\x38\x3d\x34\x9c\x56\x43\xcf\x01\x50\xda\xf2\x4d\x3b\x48\x67\x82\x19\x13\x4f\x9d\x09\x40\x31\xe5\xf0\xa9\x5e\x39\x3d\x34\x9c\xdd\xaa\xd9\x45\x83\x71\xf7\x3b\xf0\xd0\xf0\xa9\x83\xc1\xc4\x8a\xa7\x0e\x06\x20\x6a\x5a\x0f\x7b\x68\x70\x6e\xcb\x4f\xcf\x10\xfe\xd3\x78\x1c\x73\x2d\x9e\x3a\x1d\x80\xa8\xeb\x0f\x99\xc4\x4f\x7d\x12\xe7\xf0\xdb\x87\x80\x9c\x7a\x20\x80\x30\x9e\xf4\x54\x56\x9d\x7a\x20\x92\x0d\xe9\x54\x57\x01\x61\xd8\xe6\xa9\xae\x3a\x75\x2d\xa8\x33\x4f\x5d\x0b\xc0\x0a\x57\x56\x5d\x0b\xe7\x74\x7a\xb2\x1b\x9f\x3a\x0d\x80\x30\x3a\xf5\xd4\x67\x70\x86\x1f\x22\xdc\xe5\x54\x44\x01\xa1\xa3\xff\xf4\x88\x2f\x10\xda\x1a\x4e\x8f\xf8\x9e\xe1\xc4\x1e\x3e\xe6\xb8\x85\x13\x9b\xdf\x54\x56\x9d\x7a\x20\xbc\x59\xf7\x54\x57\x01\x55\xa7\xfa\xa9\xae\x3a\x3d\x1d\xe0\xb5\xe8\xa7\x2e\x08\xa0\x18\x8c\x7a\xaa\xb5\x4e\x0f\x0c\x1b\xa7\x7d\x2a\xb6\x80\x30\x98\xf6\x34\x22\xe8\x0c\x1b\xef\x32\xe7\x89\x01\xa0\x99\x62\xea\x8c\xdd\x78\x07\x06\x35\x77\xaa\xc9\x80\xea\xb1\xa7\x53\x4d\x76\xa6\x2d\x75\x9d\x53\x5a\x01\x61\x50\xe9\xa9\xb2\x3a\x3d\xd3\xab\x93\xfe\xd4\xc9\x00\xa4\x32\xea\x34\x70\xe8\x54\x46\x99\xc6\xf1\x54\x46\x01\x65\x2f\xd4\xca\xa8\x53\x27\x43\xba\x80\xe9\x65\x00\x62\x77\x88\xca\xea\x5c\x7e\x50\xee\x5c\x06\x05\x01\xc5\x33\x6a\xa7\x32\x0a\xa8\x9e\x84\x3e\x95\x51\xe7\xda\x1b\x06\x3d\xae\x8e\x02\x9a\x49\x70\x4f\x75\xd4\xa9\x68\x32\x77\xe4\xa9\x68\x02\xc2\x1c\xa7\xa7\xa2\x09\x08\x03\x6f\x4f\x45\xd3\x69\xb4\x4f\xba\x0d\x2a\x87\x80\x92\x2e\x73\x46\xfb\x00\xe1\xa5\x0f\xa7\xc1\x3e\xa7\x6e\x12\x7d\x22\xa7\x0a\xe9\xfc\xe4\x50\x98\x25\xeb\x54\x0d\x01\xa1\x43\xe1\x54\x0d\x01\xd5\xb8\xdb\x53\x35\x04\x84\xa7\x1a\x4e\xd5\x10\x10\x86\x64\x9f\x8a\x21\x20\xbc\x71\xeb\x54\x0c\x01\xb5\x4c\x2b\x61\x93\x3c\x6c\x6c\xe2\xc8\x53\x27\x09\xd0\x96\x5b\x94\x4e\x92\xd3\x93\xc5\x86\x3f\x9e\xaa\x21\x20\x4c\x89\x7d\x1a\xb1\x73\x1a\xb1\x93\x7e\x55\x46\xec\x00\x61\xc8\xf4\xa9\xdf\xe4\xd4\x89\x61\x96\xc5\x53\x99\x03\x64\xc1\x20\x7d\xea\xc4\x00\xc2\x0c\xbb\xa7\x4e\x8c\x53\x31\xe4\xe5\x3e\xa7\x62\x08\x88\xe5\xc6\xab\x18\x3a\x75\x62\x78\x31\xe7\xa9\x1a\x02\xba\x96\xe6\x53\x31\x04\x34\x73\xba\x9c\x8a\xa1\x53\xbf\x86\x19\x0d\x4f\xd5\x10\x90\x39\x7d\xd3\x21\xd0\xaf\xb1\x6c\xbc\x6a\x08\x58\x9a\x7d\x4e\xd5\x10\x10\x6d\x37\xca\x31\xd0\x87\xe1\xd1\xff\x53\x1f\x06\x10\x7b\x9d\xd6\x87\x01\x7c\x8f\x51\x37\x9d\x18\x40\xf5\x6a\xab\xd3\x90\x9c\xf3\xde\xd5\xa5\x6e\x0a\x25\xa0\xa8\x17\x4f\x85\x12\x10\x6d\xff\x33\x6b\x4b\xe6\xdc\xa9\x73\xe9\xbc\x77\xdd\x98\xf2\x7e\xb4\xca\xa9\xd3\xe3\xb8\x0b\x83\xe2\xa9\x52\x02\x8a\x01\x8b\xa7\x47\x13\xce\xc7\x71\x91\x3a\xa8\x94\x80\x65\xbc\xf5\xa9\x50\x3a\x51\x45\x46\x87\x9f\xaa\xa2\x53\x87\x85\xe9\xdd\x4e\x1d\x16\x40\x7a\x19\xe2\xa9\x50\x02\xc2\xb0\xef\x53\xa1\x74\x7a\x1c\x77\x61\xc2\x38\x9f\x5d\xdd\x4f\xfd\x79\x57\xe7\xa9\x28\x3a\x3d\x7b\xbb\x64\x18\xba\x1d\x80\xea\xc5\x70\xa7\x91\x3b\xa7\xe7\x09\xcc\x20\x74\x1a\xba\x03\xac\xc0\x0e\x76\x1a\xb9\x73\x1a\xa6\x63\xf0\xea\xa9\x78\x02\xaa\xa9\x1b\x4e\x7d\x18\xa7\xa7\x6a\x75\x2e\x9d\x7a\x27\x80\x30\x88\xfc\x54\x28\x9d\x9e\xaa\xd5\x2b\x70\xaa\x94\x80\x30\x24\xfd\x7c\x77\x13\xb6\x7b\xf6\xab\xef\xa5\x52\x02\x56\xfc\xfe\xb0\x69\x5f\xfa\x33\x2e\x4f\xce\xea\xa9\xb8\x94\x48\x40\xf1\x5a\xe4\x4b\x85\x74\xe9\x95\x50\x9a\x5c\x6a\x1f\x20\x0c\x6c\xbf\xd4\x3e\x40\x18\x60\x7f\xe9\x94\x00\xb2\x0e\xff\xff\x63\xd1\xe3\x3f\xf3\xcd\xd7\xb2\x97\x37\xbf\xee\xba\x54\x48\x97\xe7\x01\x3c\x88\x7e\x29\x6a\x80\x68\x4c\xbc\x4b\xa7\xc4\xa5\x32\x31\x41\xf3\xa5\x32\x01\x96\x01\xf6\x97\xca\x04\x08\x43\xe3\x2f\x85\x09\x50\xe6\x62\xdb\xba\x54\x26\x40\x9a\x15\xe2\xf2\x30\xed\xa5\xb7\xc1\x5c\x7d\x97\xee\x04\x60\xe9\xd1\xbd\xd4\x2f\x97\x11\x41\x66\xce\xbb\x54\x2b\x40\x78\x01\xfa\xa5\x5a\x01\xaa\x7e\xd9\x4b\xb1\x72\xa9\x4c\xcc\x9c\x77\xa9\x4c\x80\x30\x44\xff\x52\x99\x00\xcb\x10\xfd\x4b\x65\x72\xa9\x08\x4c\x93\x77\xa9\x08\x80\x30\x44\xff\x52\x11\x5c\xcd\xcf\x1a\xb6\x78\xc9\xeb\x81\x34\x46\xf5\x92\xd6\x03\x69\x22\xf1\x4b\x5a\x0f\x14\xfd\x8b\x97\xf6\x7f\x20\x8c\xed\xbf\xb4\xff\x03\xa1\x5d\xf2\x32\x5e\xe7\x32\x5a\x7e\x2d\x1f\xb3\xd3\x3e\x48\x2f\xfa\xb8\x8c\x96\xbf\x74\x09\x18\xd4\x7c\xc9\xd7\x81\x50\x0c\x5d\xf2\x75\xa0\x9a\x84\xe3\xd2\x25\x70\x91\x22\x27\x74\x46\x5d\xf2\x58\x60\x69\x3c\xbf\xa4\xb1\x17\x97\x03\xef\xb4\x87\x97\x91\x32\xc0\x32\x32\xfe\x92\xa7\x02\x59\x87\x45\x36\x8a\xe8\xf3\x9d\xf6\xf0\x32\xfa\x1c\x58\xc6\x74\x5c\x46\xc5\x5c\xd8\xff\x77\x42\xc6\x4b\xfb\x3f\xb0\x3c\x9e\x70\x69\xff\x07\x96\x06\xfb\x4b\xf3\x3f\x50\x76\xc6\xbf\x4b\xfb\x3f\x90\x75\xbf\x69\x0b\x60\xb8\x3b\xc5\xdd\x25\xc3\x05\xd2\xd3\x5c\x97\x0c\xf7\x22\x4b\xeb\xce\x54\x77\x49\x67\x81\x65\x9a\xe8\x4b\x3a\x0b\x54\xed\x48\x97\x8e\x03\xa0\xeb\x86\xb8\x24\xb8\x17\xfc\x73\x27\xaf\xbb\xe4\x9f\x40\x35\x00\xeb\x92\x7f\x02\x61\x14\xd2\x65\x44\x3a\xd0\x0d\x99\xba\x64\xa4\x57\xda\x43\xac\xb5\x97\x46\xf6\x6b\x07\xaf\x50\x59\x63\x57\x2e\x0c\xea\x3b\x53\xd5\x25\xed\x03\xc2\xcb\xd8\x2f\x0d\xea\x40\x1d\xb0\xbe\x4b\x83\xfa\x05\x11\xdc\x49\xb4\x2e\x99\x20\xd0\xcc\x62\x76\xc9\x04\x81\xb2\x73\x5c\x5d\x32\xc1\x4b\x8b\x3a\x5b\xc3\x25\x13\x04\xba\x91\x30\x97\x16\xf5\x6b\x39\x52\x56\x57\x72\x78\x49\x0e\xfd\x66\x25\x87\x97\xe4\x30\xac\x86\x6d\x5f\xac\xdb\x4e\x18\x0d\xea\x40\xf3\xca\xd0\x4b\x83\xfa\x75\x38\x76\x68\x8c\x4b\xbe\x78\xc9\x17\xfd\xb2\xe5\x8b\x40\xd9\x09\xa5\x2e\xa3\xc3\x81\x6e\x3a\xf6\x4b\xbb\x3b\xd0\x4d\xd1\x7a\xc9\x2a\x2f\xc2\x6a\x76\xb6\xa4\x4b\xc2\x08\x94\xb9\xff\x99\x43\x7c\x38\xd5\xa6\xff\xcd\x16\x1c\x1c\x98\xd9\x8f\xd9\x82\xd3\x91\xb2\xd7\xa4\x87\x40\xf5\x56\xc0\x4b\x7a\x08\x44\x83\xd9\x5f\x9a\xcf\x81\xaa\xa9\xf0\x92\x30\x5e\xa7\xb3\xc3\xd5\x55\x2a\x08\x14\xd3\xbd\x5f\x9a\xca\xaf\xd3\x21\xb0\x3f\x0c\x98\xb9\x4e\xfb\x9b\x31\x36\x38\x06\xa8\xd5\x06\x68\x3d\xbf\x2e\x6b\xeb\x63\x92\xc8\x4b\x12\xe9\x57\x20\x89\xbc\x2e\x27\xd1\x2e\xb3\x27\x2f\xd4\x0f\x36\x98\x4b\xc2\x78\x19\xf5\x62\x56\x9f\x4b\xc6\x08\xc4\xae\xae\x8c\x11\x08\x53\x59\x5c\x12\x46\xe0\x7b\xd3\x32\x5b\x05\x63\xfc\xb6\x8c\xff\xde\xaf\xe5\x93\xc0\xf7\x5f\xac\x93\xfd\x40\xe6\xd0\x86\xc2\xb9\x0c\x8a\xb9\xee\xdd\x1a\x3a\xc2\xd0\x16\xa0\x68\xbe\xbf\xb4\xb2\x03\xcd\x58\x94\x4b\x2b\x3b\x10\x6d\xbf\x68\x63\x6e\x87\xc8\xe5\x46\x3e\x09\x14\x83\x7f\x2f\xf9\xe4\x75\x5b\x35\x28\xcf\xe5\x21\x56\xa0\x6a\x17\xbf\xe4\x93\xc0\xd2\xcd\x77\xdd\xbb\xb6\xdc\x98\xef\x96\xa2\x79\x1e\xe8\x0d\x69\x74\x69\x9e\x07\xea\x5e\x0c\x24\x9d\xd7\xe3\x68\xa0\x40\x2e\xb9\xe3\x65\x8e\x16\x77\x4e\xe3\x5f\x80\x30\x1c\xe8\x92\x4d\x5e\x58\xca\xa3\xfc\xfc\x6f\xfe\xe6\x63\x4e\x61\x9a\xa9\xa5\x1c\x58\xaa\xc2\x4b\x9a\x08\x7c\x6f\xf2\x03\xf2\x44\x60\x79\x88\xea\x92\x26\x02\xdf\x63\x7c\x24\xf2\x44\x20\xd5\x50\x97\x11\xde\x40\xd9\x29\xa1\x2f\x4d\xf1\xc0\xf2\x1c\xd8\x25\x9b\x04\xbe\xc7\x7c\xd5\x56\xbd\xb4\x6a\xf9\x03\xb6\xea\x83\xe5\x69\xf7\x4b\xeb\x3c\x50\x76\x4a\xa8\x4b\xf3\x3c\xd0\xd2\xb5\x4b\x1e\x7a\x41\x3a\x77\x4a\xa8\x4b\xd2\x09\xa4\x59\x66\x2e\x49\xe7\xa5\x75\x5e\x45\x76\x4b\x3a\x81\x74\xf1\xba\x65\x95\xc0\xf7\xd8\xa4\xac\x5a\x56\xa9\x9b\x6f\x36\x8b\xec\x23\xe6\xc2\x6d\x98\x0c\x90\x6e\x50\xb7\x86\x7d\x20\x4d\x43\x7a\x6b\xd7\x07\x96\x39\x9c\x6e\x59\xeb\xfd\x31\xd5\x55\xbb\x3f\xb9\x2c\x42\x32\x74\xff\xfd\x61\x11\x77\xd7\xff\xfc\xf7\xa7\x45\x5c\x32\xc9\x4c\xb8\xe5\xb1\xc0\x57\x31\x7f\xf2\xb6\xcc\xa4\xed\xfe\xb3\xc7\xa2\xdd\x1b\x34\x5d\xd6\x0a\x64\xb3\x37\x34\xeb\xdf\xc4\xb1\x87\xa9\x98\x6e\xe3\xd8\x81\x65\x3e\x80\x5b\xb3\x3e\x10\x1a\x3d\x6f\xcd\xfa\xc0\x92\x96\xdc\x32\x60\xe0\xfb\x67\x8d\x32\x9b\xfe\x41\x1a\x4e\x7f\x1b\x97\x73\x7b\x05\x85\xb9\x96\x6e\xad\xff\x40\x6a\x95\xb8\xb5\xfe\x03\x69\xd0\xc0\xad\xf1\x1f\x08\x45\xdb\xad\xf1\x1f\x58\x75\x3f\x65\x6f\x14\x9b\x0e\x2b\xb9\xe5\xd3\x40\x33\x56\xf7\x96\x4e\x03\xa1\x9e\xbc\xa5\xd3\x40\x73\xa7\xb8\x65\xd3\x77\xdd\x6d\xe2\x37\xe5\xc9\x40\xdd\xd3\x45\x9e\x7c\x57\xa7\x32\xeb\xc4\x2d\x29\x06\xba\xe1\xd2\xb7\xa4\xf8\xae\x7e\xda\x76\xa4\x86\x78\xa0\x0e\xc7\xd8\x73\xab\x40\x1a\x3d\x76\x6b\x9a\x07\x96\x99\x10\x6e\x4d\xf3\xc0\x32\xad\xc2\xad\x65\x1e\x48\x2f\xa2\xbb\xb5\xcc\xdf\xcd\xde\x46\x00\xde\x92\x6e\x20\x7b\xf8\xcf\xec\xed\x0f\x96\xf1\xbf\xb7\x56\x78\xa0\x84\xb9\x91\x6e\xad\xf0\xc0\x32\xd3\xc2\x2d\x5b\xbf\x9b\x6d\x72\xc2\xcb\xcd\x81\x65\xa6\x85\x5b\x6e\x0e\x2c\xc5\xd6\x2d\x37\x07\xbe\x37\xf9\x6f\x92\x73\x20\xbd\x71\xe6\x96\x9b\x03\xdf\x63\xbe\x6a\xab\xb8\xd6\xd7\x23\x4e\xb7\x26\x7d\xe0\x7b\xcc\x1f\x75\x46\x6a\xd3\x87\x2b\xde\xda\xf4\xef\xee\x6a\xe2\x8c\x91\xb0\x03\xab\x62\x67\xba\x35\xb9\x03\x25\x8a\x2d\xd5\xe6\x0e\xe4\x5e\x12\xb4\xb9\xdf\xc3\xaf\xd1\x66\xc9\xeb\x81\x65\xd8\xe0\xad\xfd\x19\x48\x97\xc8\x5b\xa6\x7f\x13\xd6\x13\xde\x7a\x7a\xcb\xeb\x81\xd4\x8e\x7a\x6b\x7e\x06\xd2\x3c\x16\xb7\xe6\xe7\x7b\xda\x50\x68\xc9\x6d\xb4\x3b\x10\x6b\xfe\xe1\x40\xf6\xad\xc1\x1a\xf8\xfe\x0b\x5d\xa8\xc5\x1a\x48\x1d\x19\xb7\x7a\xe1\x96\xe2\x9b\xec\xe8\x96\xe2\x03\xdd\x24\xb0\xb7\x14\xff\x0e\x5b\xe3\xcc\xd3\x88\x7d\x9b\xa7\x92\x4d\xf1\x96\xf5\x03\xe9\x35\xf5\xb7\xac\x1f\x58\xa6\xed\xb9\x65\xfd\x77\xd8\xc0\xf4\x31\x1b\x18\xf8\x80\x1d\x5c\x6d\xd8\x40\x28\x13\x6f\x6d\xd8\xc0\xf7\x26\x8d\xd2\x86\x0d\xa4\x27\xfc\x6e\x6d\xd8\x77\xee\xda\x52\xa6\x89\x19\x08\x0f\xa8\xdd\x86\xfd\x00\x25\xbc\x5b\xee\x36\xec\x07\x58\x15\x45\x7f\x1b\xf6\x73\xa7\xd5\x5d\x96\x59\xdd\x64\x13\x98\xbe\x69\x75\xd3\x0e\x5f\xfe\xa8\xf5\x4d\x36\x06\x17\x1c\xe5\x07\x90\x5e\xd5\x79\xe7\xae\xae\x5f\x98\xf3\xc2\x08\x78\x20\xbd\x22\xfe\xd6\x36\x7d\x73\x60\x35\x54\x68\xb7\xfa\x03\x48\x2f\x62\xbd\xb5\x4d\xdf\x2a\x06\x93\x22\xdd\x2a\x06\x20\x13\x5f\xcc\xad\x62\x00\x4a\x98\x2c\xe8\x56\x32\x00\x4b\xcf\xf6\xad\x64\xb8\xd5\x07\x26\xe0\xbc\xd5\x07\x40\xe8\x0b\xbc\xd5\x07\xc0\xd2\x3f\x7d\x2b\x0f\x6e\x4c\xcc\xe1\x55\x63\xb7\x62\x00\x08\x8f\x9d\xde\x06\xe1\xdc\x68\x81\xf0\xf0\xf2\xad\x18\x00\xd2\xc0\xce\x5b\xeb\x31\xb0\xaa\xdf\x84\xd6\x63\x20\x87\x6b\x84\x8a\x01\x08\x03\xc5\xee\x63\x37\x80\x0f\xbd\x5a\x5b\x03\xf1\x81\xa5\xa3\xf5\x56\x44\x00\x61\x7a\xcc\x5b\x11\x01\xa4\x31\xf1\xb7\x22\x02\x08\x73\xe4\xdd\x8a\x08\x20\xa5\x69\xb7\x56\xe7\x1b\xab\x73\x98\xae\xe9\xd6\xea\x0c\xa4\x0e\xeb\x5b\xa9\x01\x2c\x1d\xe7\xb7\x52\x03\x58\x6a\x88\xdb\xa8\x1c\x20\x13\x8d\x7f\x2b\x3e\x80\xef\xff\xfb\x98\x9d\x81\x20\xd1\x1f\x79\x2b\x48\x80\x65\xe8\xee\xad\x20\x01\x52\x1b\xd6\xad\x9d\xfb\xc6\x82\x1d\x66\x6b\xba\xb5\x60\x03\xcb\xa0\x84\x5b\x3d\x72\x2b\x3e\xaa\xdf\x8f\xe2\x03\x58\x86\x16\xdc\x8a\x8f\x5b\xa5\x51\xdd\x88\x55\x1a\x40\x6e\xa6\xa2\x94\x00\x96\x62\xec\x56\x49\xdc\xd8\xa1\xc3\x4b\x2e\x6e\xed\xd0\x40\xea\x9f\xbd\xb5\x43\x03\x69\xd4\xe9\xad\x19\x1a\x28\x51\xbb\x65\xb6\xe0\xb6\x05\x8c\x9d\x1a\xe4\x36\x03\x65\xc5\x04\x7a\xab\x38\x80\xa5\x0b\xfb\x56\x71\x00\x69\x84\xd9\xad\xe0\x00\xd6\xbf\x6a\xd8\xa6\xdb\x21\x70\xef\x54\x5d\x00\xa9\x11\xe1\x56\x5d\x00\xa1\x97\xe2\x56\x5d\x00\xdf\x9b\x94\x29\x2f\x80\xd0\xad\x75\x2b\x2f\x80\xa5\x0f\xfe\xd6\xa6\x0d\x7c\x6f\x52\x5b\x03\x82\x80\x34\x84\xe7\xd6\xcc\x7d\x3f\x7e\x77\x2e\xa5\x46\xff\x00\x4b\xc7\xff\xad\x56\x01\x4a\x6c\x82\xa7\x58\x01\xc2\xdc\x7d\xb7\x62\x05\x48\x53\xbe\xdf\x9a\xbe\xef\xc7\x05\x66\x3f\xe6\xe8\x7d\x90\x1a\x64\x6f\x63\x84\x6e\x65\xce\xe6\x2f\xca\x1c\x20\xbd\xdb\xfd\x56\xe6\x00\xdf\x63\xb4\x54\x9d\x03\x2c\x83\x2f\x6e\x65\x0e\xb0\x0c\x1f\xb9\x95\x39\xb7\x32\x67\x93\x15\x65\x0e\x90\x7b\x32\x2b\x73\x6e\x65\xce\x66\x26\xca\x1c\x60\x19\x17\x72\x2b\x73\x6e\x22\x8e\x62\x73\x1a\x35\xcd\xad\xa6\x09\x8b\x6c\xbc\x9a\x66\x73\x09\x35\x0d\xb0\x36\x59\x51\xd3\xdc\x8a\x95\x6f\xdb\xfb\xcf\x0d\xfb\x51\xcb\x3c\x3f\x07\x84\xef\xf5\xd1\xf6\x0d\x2c\x4f\x4b\x3d\x0a\x0b\x60\x19\x00\xf1\x28\x2c\x80\xa5\x4f\xf8\x51\x58\x00\xcb\x88\x96\x47\x61\xf1\xa8\x18\x5c\xa3\x1f\x15\x03\xb0\xec\xfb\x47\xc5\x00\x2c\x43\x16\x1e\x03\x81\x9e\x62\x9b\x99\x65\x8f\x54\xfd\x91\xaa\x33\x07\x1e\xa9\x3a\x50\x76\x6c\xc6\x23\x57\x07\x96\xcb\xde\xa3\x81\x1c\x58\xc6\x05\x3c\x1a\xc8\x81\x65\x44\xc1\x23\xa1\x7f\xaa\x93\xdd\x37\xe5\xea\x40\x9a\xd6\xf0\xd1\xf2\xfd\x48\xdf\x0d\xf4\x78\xa4\xef\x40\x1a\x18\xf5\x48\xdf\x1f\xe9\xbb\x56\xcb\x47\xfa\x0e\x84\xb9\x9f\x1e\xe9\x3b\x50\xb6\xa3\xfb\x31\xdc\x06\x58\xff\x7e\xc0\x16\x10\xa9\xaf\x1d\xf0\x91\xe4\x3f\xcd\x59\x4c\x18\xc1\x23\xa5\x07\x52\x13\xe8\x23\xa5\x7f\xa4\xf4\xfe\x7f\x29\x3d\x50\x76\x2c\xc0\x23\xa7\x07\x96\xfe\xeb\xc7\x23\xb3\xc0\x32\xb0\xe0\x31\x01\x25\xb0\x0c\x3d\x7e\x0c\xe7\x07\x72\x0f\xb1\x36\xf9\x47\x7d\xa0\x4b\xfb\x51\x1f\x00\xcb\xd0\x88\x47\x7d\x00\x94\xed\xfd\x7d\x14\x08\x40\x78\xb8\xf4\x51\x1f\x00\xdf\x63\x8c\x81\x02\x01\x48\x5d\xc9\x8f\xe6\x7c\x20\xcd\xb8\xf3\x28\x19\x1e\xd2\xda\x6c\xbf\xeb\xa3\x40\x78\x4c\xe0\x8f\x43\xe2\x51\x1f\x3c\x04\xf3\x6c\x37\xf7\x23\xf3\x07\x96\xa1\x11\x8f\xc4\x1f\x58\xbb\xbb\x25\xfe\x40\xf4\xfd\xff\x6d\x3b\xd9\x64\xb6\x67\xfa\x31\x64\x06\x58\xbb\x9d\x86\xcc\x00\x65\xbb\x01\x1f\x43\x66\x80\x34\xee\xe5\x31\x64\x06\xc8\xce\xd6\xf3\x18\x31\xf3\x10\xf7\x12\xe6\x8d\x7a\x8c\x7b\x01\xd6\xee\x6f\xe3\x5e\x1e\xf2\x54\x6e\x57\xdb\xa3\x64\x00\xd2\x03\xfc\x8f\x92\xe1\x99\x56\x97\x55\xf4\x51\x1f\x00\xcb\xc8\xae\x47\x7d\xf0\x68\xf6\xd7\xb5\xf3\x48\xe3\x81\xec\x7e\x7a\x9a\xfd\x81\xf4\x56\x95\x47\xb3\xff\x63\xd4\x3f\x9b\xca\xa3\xd5\x1f\x28\x61\x22\xa4\x47\xb3\x3f\x90\x86\x2d\x3f\x4a\x02\x60\xed\x61\x9f\xbb\xb6\x5e\xc3\xca\x8b\x1e\x17\x00\x96\x2e\xfe\x47\x91\xf0\x44\xf5\xff\x53\x33\x25\x01\x90\xda\x9d\x1e\x25\xc1\x13\xfb\xda\x4a\x86\x40\x62\x0f\xa4\x49\x1a\x1e\x89\xfd\x43\x6e\x9a\x30\x27\xd1\xa3\x27\x00\x48\xf3\xf8\x3f\x7a\x02\x80\xb5\xbf\x76\x3d\x01\xc0\xda\xb3\xcf\xd8\x94\x27\xed\x6e\x67\xa9\x92\x00\xe8\x46\xce\x3e\x2a\x82\x47\x5e\x6f\xe6\xa2\x47\x5e\xff\xc8\xeb\xfd\x66\xe5\xf5\x40\x89\xc6\x76\xf7\x48\xec\x81\x55\xf7\x9b\x0e\x81\x29\xe8\x1b\x42\xff\x31\x5e\x05\x48\x0f\xbf\x3c\x86\xab\x00\xcb\x90\x9e\xc7\x70\x95\x47\x95\xd0\x5c\xac\x73\x37\x81\xeb\x15\xfc\xf4\x54\x09\x8f\x2a\x41\xb3\xfc\xa3\x4a\x00\xd2\xf3\x92\x8f\x2a\x01\x58\xb9\x8b\x9c\xdf\xa4\xa5\x0f\xed\x47\x8f\x8e\x0b\x20\x27\xc1\x7b\x8f\x7e\x0b\xa0\x84\x87\xeb\x1f\x1d\x17\xc0\x32\x4e\xe4\xd1\x71\xf1\x2c\x17\x14\x9b\xe0\xe1\x5c\x20\x4c\x00\xf3\xa8\x4c\x80\xf4\xaa\xf7\x47\x65\xf2\x2c\x1b\x8a\x06\x7b\x94\x21\xc0\xf4\x7c\xf6\xa3\xe7\x02\xa8\x7b\x83\x30\xf6\x05\x98\xa6\xc7\x7d\xd4\x2a\x40\xf1\x8a\xbb\x47\xad\x02\xec\x74\xf6\x8f\x5a\x05\x68\x1f\x4f\xfb\xef\xdd\x5a\x4f\x07\x30\xb5\xe1\x3e\x8a\x1b\xa0\x1b\x9c\xfd\x28\x6e\x80\x6a\xaa\xb9\xc7\x90\x9a\x87\x0b\x98\x4d\x89\xff\xe8\x0e\x01\xaa\x66\xd2\x47\x05\x04\x34\x4d\x50\x8f\x0a\x08\x68\x5e\x33\xf9\xa8\x80\x80\x59\xfc\x04\x55\x40\xc0\xd7\x79\x96\xd9\x79\x48\xa0\x06\xe3\x7c\x54\x40\xc0\x2c\x0e\x98\x0a\x08\x68\x86\x1c\x3d\x2a\x20\xa0\x78\x20\xe0\x51\x01\x01\xd5\x94\xbe\x8f\x0a\x08\xf8\x7e\xd2\x7f\x66\xf7\x7c\xd0\xe7\x2e\xb2\x7b\x3e\xa8\x1e\x73\x7a\x3c\x98\xf0\x18\x9e\x83\x31\xe8\x51\x27\x01\x7d\xef\xad\xea\x24\xa0\x19\x5b\xfd\xa8\x93\x1e\x73\x78\xba\xb6\xa9\x93\x1e\x45\x91\xd9\xad\x1e\x45\x11\x50\x8d\xc4\x79\x14\x45\xc0\xbe\x43\xe0\x51\x14\x01\xcd\x74\x17\x8f\xa2\xe8\xb9\x2a\x4f\xd1\x70\x8f\x26\x03\xd5\xa4\xff\x8f\x32\x09\xe8\xd3\x11\x51\x26\x01\x4d\xa7\xde\xa3\xdb\x06\x68\x46\x99\x3d\x0a\xa7\xc7\xfb\xdc\x5c\xe7\x15\x4e\x40\xd7\x34\xf9\xe8\xb5\x01\xa6\x46\xa5\x47\x29\x05\x94\xdf\xae\xaa\xed\xfe\xe4\xd3\xbe\xc6\xe0\x31\xa4\x07\x68\xe6\x50\x7b\x74\xca\x00\xdd\x33\xac\x8f\x17\x03\x00\x55\x89\xf4\x98\x77\x07\xd8\x77\x1d\x3c\x4a\x30\xa0\xc8\xff\x1f\x25\x18\xd0\xe4\xd3\x8f\x12\x0c\xa8\x0a\xd2\x47\x05\x06\x4c\xad\xf5\x8f\x0a\x0c\x68\x6a\xc3\x47\x2f\xd0\xb3\xaf\x05\xb0\xc3\x14\x65\xc0\xbe\x37\xe1\x51\x94\x01\xd5\xcb\x60\x1e\x45\xd9\x63\x54\x51\xf8\xa2\xbd\xf3\x41\xdf\xac\xc3\xa8\x22\x60\x5f\xae\xf0\xe8\x17\x7a\xf4\x0b\xf9\xe5\xaa\xdc\x80\xba\x77\x15\x95\xdb\xe3\xb1\x0d\x3f\x53\x95\x1b\xd0\x3c\xce\xf7\x28\xdc\x9e\x87\x05\x47\xe2\xa0\x4a\x03\x6a\xb3\x91\x8a\x34\xa0\xef\x51\x53\xa4\x01\x65\xfb\xaf\x1f\x83\x91\x80\x36\xfc\xda\xd4\x6d\x40\x33\x23\xdc\xa3\x6e\x03\xea\x9e\x15\xca\x36\x60\xdf\xca\xf0\x28\xdb\x80\x6a\x9c\xfe\xa3\x6c\x03\xba\x77\x36\x3d\x46\x2c\x01\xfb\x9e\x86\x47\x21\x07\x7c\x15\xb3\xcc\xee\xf9\xa0\xeb\x44\x7f\x8c\x6b\x7a\xb8\xeb\xdb\x4b\x19\x1e\x85\x1c\x50\xf6\xac\x53\xc7\x3d\x64\x1f\xd2\x11\xf0\x28\xda\x1e\x53\xa2\x22\xed\x1e\x35\x1b\xd0\xcc\x80\xfc\xa8\xd9\x80\xea\xe9\x8f\x47\xc9\x06\xec\xfb\x15\x1e\x25\x1b\x50\x74\x19\x3f\x3a\xa6\x80\xb2\x79\x8a\x22\x0e\x28\xdb\x93\xff\xa8\xe2\x9e\xd7\x86\xd3\xd5\x2a\x36\xa0\x9b\x4b\xe2\x31\x1a\x0a\xe8\x7d\xb7\xc8\x76\xbf\x2c\x1f\x72\x12\xfd\x52\x40\x95\x25\xbf\x4a\x39\xa0\x7b\x6a\xea\xd5\x2d\xf5\x72\x2a\xbb\xec\xa2\x6e\x51\x27\x0e\xd6\xa2\x61\x11\xed\x86\x98\xbf\xba\x9b\x80\xda\x59\x3e\x5e\xdd\x4d\x2f\xd7\x0b\x18\x51\xff\xaa\x0a\x81\xaa\x8b\xfa\x55\x15\x02\x65\xc7\x04\xbc\xca\xc2\xf7\xc7\x62\xd1\x7c\xec\xb6\x88\x3d\xa4\x5a\xf4\x58\xc4\x3d\x0a\xc3\x8a\xbd\x16\x31\xde\xd0\xb3\x57\xed\x08\x94\x1d\x86\xf0\x2a\x1e\xdf\xc2\x80\xa3\xa9\x5e\xbd\x4d\x40\x31\x27\xdb\xab\xb7\x09\x28\x9d\x01\x7f\xf5\x36\x01\xd5\x33\xc7\xaf\xde\x26\xa0\xfc\xd6\x1f\xee\xe3\x7a\xf5\x45\x01\x73\x77\xa8\xbe\x28\xa0\xb7\x6e\x1d\xed\x2a\x2e\x45\xf0\xe2\x88\x57\x57\xd4\xbb\x05\xae\x45\xf6\x54\x61\x86\xec\x17\x2f\x8b\xe8\x3c\x56\x89\x57\x79\xfb\x1a\x00\x66\x17\x2b\x6f\x81\xb2\xe3\x2e\x5e\xf5\x2d\xb0\x6f\x92\x78\xd5\xb7\xaf\x47\xcb\x8b\x45\x76\x5e\xb5\xfa\x8c\x84\xba\xf5\xf5\x92\x73\xc7\xcb\xb3\x24\x40\x1b\x58\x9e\x5f\x03\xb6\x5e\xb2\xa5\x7a\x54\xf5\x55\xa2\x02\xcd\x48\xac\x57\x89\xfa\x36\x66\x20\xcb\xf6\xab\xce\x04\x6a\xe5\x6b\x79\xd5\x99\xc0\xbe\x0b\xe2\x55\x67\x02\x51\x77\x91\x3d\xdd\xe4\x80\xce\x37\x85\xe6\xab\xd0\xb4\xfa\xea\x4c\xa0\xec\x38\x8c\x57\xa1\x09\x34\xcd\xce\xaf\x3a\xf3\xd5\x4f\x64\x34\xc5\xab\x0e\x04\x42\x3b\xfc\xab\x9f\xe8\xd5\x4f\x64\x4c\xc4\xab\x9f\xe8\xf5\x9c\x07\x5f\xed\xab\x34\x7c\xbb\x0c\x1b\x2d\xf4\x1a\xd7\x05\x2c\x0f\x4a\xbf\xc6\x75\xbd\xfa\x89\x1a\x86\x8e\x57\x3f\x11\xb0\x8c\xd7\x7e\xf5\x13\xbd\xfa\x89\xcc\x12\xf9\xea\x27\x02\x8a\xc7\x03\x5e\xfd\x44\x40\xf3\xb6\x89\x57\xa1\xf9\x6e\x55\xe9\xc7\xac\xaa\x04\xba\xa9\xe9\x5f\x55\x25\x50\x34\x11\xbe\xaa\x4a\xe0\x7b\xd3\x32\x7b\xfc\x83\x3a\x77\x35\xec\xf0\xe1\xc5\xe6\x74\x87\xe7\x30\xde\xad\x47\x97\x55\xb3\xc3\x87\x17\x61\x31\x15\xd4\xa3\xaf\x91\x69\x26\x93\x7c\x15\x9f\xc0\x0c\xe8\xf4\x6b\x64\xda\xab\x0b\x4b\x73\xfa\xab\x0b\x0b\x98\x61\xe7\x2a\x51\x01\xa3\xed\x5e\x15\xea\xab\xef\x49\x2d\xfe\xea\x7b\x7a\xbd\xe9\x80\x25\xfd\x55\xb4\x02\x7d\xaf\x03\x8a\x56\xa0\xbb\xc7\xbe\x8a\xd6\x57\x0f\x95\x89\x1e\x5f\xe5\x28\xd0\x3d\x58\xf8\x2a\x47\x81\x12\x9d\x8d\xf1\x55\x8f\x02\xb1\xe0\x33\xaf\x7a\x14\xd8\xa7\x03\x5f\x9d\x56\x40\xf3\x6a\xc4\x57\x85\x0a\x7c\xff\x8c\x46\x29\x51\x81\xa9\xd6\x7a\x8d\x55\x7b\xc3\x3c\x34\xc5\x57\x1d\x28\xbc\x56\x9e\xcd\x7e\xf5\x5a\xbd\x8a\xdb\xee\xc7\xae\xb8\x7d\xbd\x3d\xdc\x5e\x53\xdc\xbe\x61\x43\xe1\x09\xaf\xb2\x15\xd8\xc7\x0f\x5f\x65\xeb\xab\x73\xcb\xec\x8b\xaf\xce\x2d\x60\x1f\x66\x7c\x55\xb2\x2f\x47\x2a\xa2\xbb\xa8\x79\xa4\x02\x48\x6d\x59\xaf\x8e\x2c\x60\x75\x57\x05\x1d\x59\xaf\x82\xb7\xe3\x25\x78\x15\xbc\xc0\xf2\x58\xde\xab\xe0\x7d\x15\xbc\xdd\x9d\x43\xc1\x0b\x74\x03\x04\x5e\x05\xef\xab\xe0\x35\x71\xe3\xab\xe0\x05\x9a\xf7\x16\xbd\x0a\x5e\xe0\x7b\xcc\x5f\xb0\xf1\x1f\xd4\xd8\x75\xb3\xf1\xcb\x81\xf1\x55\xa5\xec\x6b\x0c\x1e\x82\xf7\x55\xca\xbe\xde\x01\xde\xdd\x22\x4d\x16\x05\x54\x8f\x71\xbf\xea\xd1\x97\xa3\xe9\xe1\x39\xf1\x57\xf5\xf9\x1a\x49\xe7\x8a\xa2\x5b\x0c\xe8\x5e\x0c\xfb\xae\x5d\x0f\x42\x7a\x51\x59\xaf\x7a\x14\x28\x61\x1a\xc8\x57\x41\x0a\x34\xa3\xf2\x5f\x05\xe9\x6b\x24\x9d\xd7\x5e\xbd\xca\x4f\xa0\x19\xfd\xfa\xaa\x2f\x81\x65\x52\xee\x57\x7d\x09\x7c\x6f\x5a\xe6\x58\x79\x66\xc3\x05\x45\x81\x09\x7c\x8f\x59\x37\xc7\x8a\x23\xec\xe6\x76\x7d\x15\x9d\xaf\x42\xd1\xcc\xa5\xaf\x42\xf1\xe5\x82\x6f\x25\xd4\xab\x2a\x04\x4a\x78\x32\xf9\x55\x16\xbe\x46\xd7\xb9\x59\x2b\x0b\x5f\x5d\x5e\x7d\xfc\x21\x9c\xec\x55\xe9\x01\xdd\x3b\x39\x5e\x95\x1e\x50\xf6\x8a\xa6\xd2\x7b\x0d\xbe\xdb\x13\x54\xff\x17\x30\x96\x8b\x9c\x4a\x0f\xe8\x8a\xd7\x57\xa5\x07\x7c\x6f\x5a\xb6\x1b\xc8\xb0\xf9\x01\x28\xf5\x5e\x63\xf4\x4c\x2f\xf9\x1a\xa3\x07\x34\xcf\xc7\xbe\xc6\xe8\xbd\xc6\xe8\x99\x5e\xf2\x55\xec\x01\x45\x7b\xf7\xab\xd8\x7b\xf5\x7f\x19\x0f\xf3\x2a\xda\x80\xf8\xed\x22\x27\x9e\xa1\x74\x1d\xf1\xf5\xea\x00\x03\xba\x8e\xd6\x57\x21\x07\x7c\x8f\xd1\x04\x95\x1c\x10\x26\x37\x7e\x55\x72\xef\xed\x18\x21\x26\x5e\x45\xda\xab\x9f\xcc\xaf\x5f\x91\xf6\xea\x27\xf3\x60\xfb\xab\x4a\x03\x9a\xa7\x29\x5e\x55\x1a\xf0\x6f\x5f\x54\xa5\xbd\xb7\xa3\x2b\xd5\x53\x92\x01\x6d\x73\x1a\x25\xd9\x7b\xdb\xe3\xb2\x82\x7b\xd7\x8d\x1c\xc5\x76\x9b\xa2\x09\x28\x4a\x80\x57\x6f\x17\xf0\x6f\xab\x54\x47\xbd\x2a\xa4\xee\x66\xac\x42\x02\xfe\xed\xc5\x2a\xa4\xd7\x13\x1c\xd8\xc5\x5f\x15\xd2\xfb\xf8\x01\x38\x8d\xd4\x43\xc0\xbf\x1d\x55\x3d\xf4\x3e\x76\xae\x3b\x9e\xb2\x06\xf8\xb7\x7d\xea\xb2\x02\x4a\x98\x46\xf3\x55\xea\x00\x25\x7d\x4c\xa9\x03\x18\xce\xff\xea\xb1\x02\xbe\x17\x69\x80\xea\x07\xf8\xb7\xef\xaa\x7e\x5e\xfd\x4e\xe6\x49\x7a\x95\x2c\x40\xee\x8d\x40\xc5\xf2\xea\x77\xea\xfb\x55\x67\xd1\xbe\x2a\xcd\x1f\x75\x12\xbd\x4e\x22\x7f\xd3\x49\xf4\xee\x06\xac\xff\xf7\x3f\xf9\x43\xa0\x08\x1d\xaa\x99\x3f\x04\x8a\x50\x49\x2a\x9a\x3f\xc2\xe6\x84\x12\x84\x2e\xe5\x8f\xb8\x39\xa1\xc2\xe8\xf2\x87\x8e\x11\x66\xff\xc6\x33\x7f\xe8\x18\xa1\x13\xa7\x94\x3f\x74\x8c\x30\xd9\x2d\xf2\x87\x8e\xc9\x9f\x0a\x85\x4b\xa9\xf2\x87\x42\x11\x02\x99\x97\x3f\x1c\x57\x42\x21\x01\x5c\xfe\x10\x2d\x42\xfb\xf7\xff\x1f\x8b\x5e\xff\x19\x6f\x16\x9b\xf9\x41\xe5\x8c\x62\xfe\x8a\xcd\x2c\xc5\xc7\xe8\x8d\x62\x3b\x8b\x37\x57\x0e\x8a\x6c\x26\xaa\x25\x46\xe1\x17\x8a\xed\x2c\xde\x5c\x49\x0b\x8a\xed\xe4\x9c\x08\x39\x0f\xf2\x57\x6c\x27\xc7\x44\xb0\x38\xe4\xaf\xd8\x4e\x72\x57\xad\xfd\xff\xd3\x22\x74\xc9\xf4\xdf\x2f\x8b\x16\x5e\x44\x4a\x0e\x4b\xbc\xae\xb4\xd0\xf2\x62\x67\x14\xaf\x66\x49\x8a\xec\x0c\xe3\xe1\x48\xda\x90\xbf\x6a\xcb\x39\xf8\x8e\xcf\x3d\x7f\xd5\x96\x57\x5b\x6e\xfd\xab\x2d\xe7\x2a\x6d\x2c\x07\xf9\xab\xb6\xbc\xba\x9b\xda\x80\x6a\x33\x3f\x65\x62\x10\x61\xfe\xaa\x0d\xf8\xc0\x18\xbc\xfc\x55\x1b\xf0\x81\x61\x7f\xf9\xab\xb6\xe0\x83\xca\x7d\x94\xf9\xab\x0e\x70\xdd\x8d\xb2\x6a\x36\xaa\x42\xcf\xf7\x63\x36\x8a\x53\xee\x31\x76\xd5\x1c\xe2\xea\xe5\x96\xfe\xe6\x4b\x91\x7e\xb7\x61\xd5\x9a\x0d\xe5\x94\x7b\x71\xa6\x35\xdb\xd9\x9c\xc9\x95\x2e\x6a\x36\x14\xc7\x1b\x09\x03\xf3\xd7\x1c\xe1\x66\xdb\x6d\x42\xb3\xed\xdc\x92\x8d\xa9\x20\x7f\xcd\x21\xfe\xa0\x13\x61\x96\xbf\xe6\x10\x7f\x30\xf0\x47\xe5\xaf\xd9\x43\xdc\x9b\xbd\xdb\xd9\xec\x21\x9d\x6c\xc3\x5e\x6b\xf6\x07\x51\x78\xb8\xe6\xf3\xd7\xec\x0e\x9d\x6c\xc3\x8f\xa0\xd9\x1f\x9c\x85\xef\x4e\x85\x66\x77\x18\x98\x37\x76\xd5\x76\x7f\x30\x17\x92\x37\xbb\x53\x41\x75\x45\xba\xd3\xfc\x75\xfb\xe3\x83\xba\xfe\x70\x58\x2b\x7f\xdd\xde\xe2\x12\xed\xb2\xff\x89\xbd\x65\x40\xde\x68\xd4\xa9\xdb\x35\x04\xe4\x61\x1f\xc9\x5f\xb7\x6b\xba\xc7\xff\x1a\x1d\xdd\x9d\x17\x9d\xd4\xe0\x61\x91\xfd\xc0\xe9\xf9\x69\x63\xba\xfd\xf0\x41\xdf\xdd\xd0\xed\x06\x6e\xc9\x2e\xfb\x27\xed\x06\x9d\x7c\x84\x4a\xe5\x6f\xd8\xbe\xc1\xbc\x6e\x7c\x97\xc3\x06\x28\xc7\xb0\x2c\xe7\x6f\xd8\x82\x0f\x2a\x09\x50\xf3\x37\x1c\xee\x61\xa3\x3a\xbf\x30\x6c\xd4\x07\xc9\x7d\x05\xf9\x1b\x36\x8a\x73\xf1\x41\xd6\xd5\xfc\x0d\x07\x7c\x90\x6a\xd6\xba\x0d\x07\x5c\x3d\x36\x3a\x0d\x1d\xb6\xfd\x83\xca\x29\xd2\xfc\x0d\xdb\xae\x7f\x90\x53\xc1\xf9\x1b\xbb\x59\x0f\xa1\xc1\xfe\x37\x07\x57\xc7\xdf\xae\xef\xf4\x17\x26\x1f\x9d\x9d\x3b\xfd\x01\xf2\x7d\x71\x8f\x49\xfe\xa6\x3f\x30\x9d\x2a\xc3\x37\xf7\x7f\x7b\x49\xfc\xcc\x5c\x0c\xa7\x0a\x7a\x29\xed\xa2\xf0\x63\xe2\xa4\x3a\xb6\xa6\xfc\x85\x9d\x4b\x90\x1f\xdb\x6b\xfe\xc2\xce\xc5\xa3\xb7\xe7\x75\xd8\xb7\xb1\x59\x39\x0d\x08\x3b\xf7\x83\x35\x27\x1d\x19\xf6\x2d\x71\x7f\xcd\x6f\x29\xec\xdb\x0f\x32\xed\xda\xb0\x6b\x55\x50\xc3\x36\x85\x2d\x0f\x2e\xeb\x9e\x34\x29\x6c\x79\xf8\xe1\x4c\x7a\x23\x9c\x31\x41\x94\xd8\xf4\x07\xec\xda\xe0\x08\x53\xb7\x1a\x76\x06\x37\xdb\xcd\x64\x0e\xa5\x9d\xc1\xcd\x76\xd3\x66\xa6\x9d\x61\xc0\xe0\x70\xa1\x4a\x9b\x4e\x9e\xb0\x3d\x5f\xd2\xa6\x93\x27\xac\xb8\x18\xa4\x2d\x47\x79\xed\x6f\x20\x6d\xf9\x07\x6d\xef\x30\x69\xcb\x93\x6b\x77\xfc\x2c\xd2\x96\xe7\x6e\x39\x95\x4d\x5b\xfe\x41\xab\xf6\x6c\xda\xf2\x74\x65\xb1\x99\xe9\xa0\xa7\xa7\xa6\xac\xac\x5f\x14\x57\x6a\xfc\xf6\x3f\xb3\x7f\xf4\x17\x8e\xa0\x1e\xcb\x36\x71\x0d\xc6\xde\x50\x96\x6d\x5a\xfb\x04\x07\xff\x6d\xd9\x02\xee\xac\x26\x06\x24\x7f\xcb\x16\xe8\x1c\x24\x3b\x6e\xfe\x96\x4d\xe0\x54\xd3\x90\x32\x2c\x5b\xa0\x3e\x1b\x41\x75\x97\x4d\xc0\x61\xb8\xbf\xa8\x65\x0b\x0c\x65\x74\xbe\x2f\x5b\xc0\xd5\x18\xa4\xca\xce\xdf\xda\x2d\xd0\x92\xe3\x53\x8e\xb0\x2e\xc4\x21\x41\x58\x0e\x31\x2e\xc4\xbd\x99\x1e\x0e\x31\x92\xad\xba\xc0\x1c\x0e\xb1\xc7\xe7\xdd\x3c\x0e\xe7\xfb\x41\x1e\xb5\xca\x4f\x1e\x76\x90\x22\x6e\xb8\x6a\x1f\xf6\x90\x79\xc8\x76\x91\xa3\xee\x29\xfb\x46\x2b\x0f\xfb\x4c\x75\x36\xa4\x0c\x87\xbd\xc1\x91\x7a\x8c\xab\xf9\x3b\xec\x0c\x4f\x48\xed\x9a\xd9\x19\x1f\xcc\xe1\xce\x7f\xd8\x19\x87\xf3\xdd\x39\x7a\xd8\x1b\xf8\x04\xf7\xb6\x73\xd8\x1b\x07\xfb\x26\x9f\xf0\x61\x5f\x7c\x50\xa1\xc3\xf9\x3b\xed\x0b\x4f\x56\x0d\x3f\x81\xd3\xce\xf8\x60\x6e\x2a\x70\xda\x19\x1f\xf4\x66\x67\x9c\x76\xc6\xb9\x3b\xc3\xc7\xec\x8c\x0f\xe6\xde\xbd\x4f\x3b\xe3\x9c\x3e\x46\x03\x4e\xa7\xcb\x07\x73\xef\xde\xa7\xb3\x45\x0d\x38\x24\xa2\xa7\xbd\xa1\xbb\xcf\x55\xf4\xb4\x37\xd4\x85\x64\x83\xca\xdf\x69\x77\x9c\xce\x0d\x1a\x7a\xda\x1b\xa7\xbd\x61\xa3\xec\x8d\xd3\xfc\xe5\xf4\xd9\x69\x77\x7c\xd0\xf7\x67\x7d\xd9\x1d\xe4\x30\xee\x2e\x38\x97\xbd\x81\x2a\x5c\xd2\x8f\xcb\xde\xc0\x4f\xb8\x77\xa8\xcb\xde\x20\x85\x71\xc8\x86\x2f\x3b\xe3\xb2\x33\x68\xf8\x65\x67\x5c\x7e\x4e\xb2\x8f\xcb\xa9\x41\x88\x65\xb7\xb7\x2f\xfb\xe7\xda\xad\xec\x7f\xd8\xa8\x2f\x3b\x81\xd4\xc5\xbf\x61\xc5\xed\x04\xee\x09\x1f\x6e\xca\x97\x9d\x70\x71\x6d\x8e\x5f\xf3\x65\x27\xec\x33\x5a\xea\x84\xdb\x2a\xdd\x5c\x6b\xee\x1a\x7b\x5b\x25\xbc\x73\x7b\xd3\xbf\x1d\x32\x0f\x69\x4d\x57\x9a\xdb\x39\xcd\x0d\x1b\x9b\x74\xdc\x8e\xe2\x0d\x19\xf4\x37\x6f\x47\x11\xf7\xdc\xf0\x6b\xbb\xad\xff\x07\xad\x39\x99\x6e\xeb\x7f\x5b\x7f\xfa\xea\xb6\xfe\x48\xcd\x9f\x4d\xba\xad\x3f\xb2\x32\xa6\x02\xe0\x71\xc8\xc8\x0c\xb0\x5c\x15\x1f\x87\x8c\xcc\x00\x31\x15\x00\x8f\x03\xf4\x60\x96\xb5\xe7\x1f\x07\x08\xa9\x59\x5c\x2d\x1e\x3b\xc3\x13\x5f\x73\x97\xd9\x1b\x9f\x96\x9c\x7b\x6d\x78\x6c\x13\x4e\xb5\xe1\x8e\xf9\xd8\x26\xee\xf4\xf8\xb9\xb4\x3d\xb6\xe9\xb1\x4d\xfe\xa4\x6d\x32\x60\x72\xba\xb6\x3d\xbb\x51\xa4\x40\xf4\x03\x79\x9d\x99\x2f\xda\xcd\xf9\xfb\xda\x4c\xae\xee\xe6\x5c\x67\xfe\x5e\x9b\x89\xeb\x6d\xb3\x9d\xd7\x99\x69\xbc\xa4\x83\xf9\xda\x70\xee\xfd\xd8\xd4\xe9\xb5\xe1\x86\x4b\x4e\x17\xff\xd7\x96\x7f\x50\x8b\x63\xf2\xda\x70\x4f\x85\x4d\x3f\xb6\xd7\x79\xf0\x41\xff\x29\xe7\x5e\xa7\x81\xce\xb7\x29\xcb\x78\x9d\x07\x1f\x2c\xbf\xac\xd7\x2e\x43\xc8\xc6\xf4\x33\x7d\xed\xb3\x97\x8f\xd9\x7d\xf5\xb5\xcf\x48\x9d\x9c\x6e\x1a\xaf\x7d\xa6\xb8\x25\xd3\x73\x16\xc5\x6d\xf1\x04\x18\x5e\xd3\x2c\x4a\x59\xa0\xcb\xff\x8b\x4a\xb6\x70\x61\x48\x4c\xfa\xb6\xa8\x5b\x81\x24\xfd\x7d\x16\x75\x2b\x50\x5a\xf8\xcf\xc2\x22\xe7\xfb\xfe\x6f\xcb\x32\xee\xf7\xde\xf5\x38\x2c\xe2\x1a\x14\x56\xa8\xa2\xba\x2d\x1e\xee\xe2\xe4\x4f\x16\xb5\x6c\xf9\xf4\xeb\xe4\x86\xde\x2c\x78\xdb\x84\xee\x37\x50\x94\xb2\x40\xe3\x18\x7a\x16\xa5\x2c\x50\x89\x1a\xce\xa2\x92\x05\xa6\x74\xb3\xa8\x64\x81\xba\x58\x89\x8b\x42\x16\xe8\x19\x3e\x65\xc3\x15\xb2\x6e\x38\x45\x25\x0b\x14\x5c\x60\x59\x54\xb2\xc0\xf7\x18\x95\x55\xca\x02\x13\xb7\x75\x16\xa5\x2c\xf0\x3d\x46\xa7\x29\x66\x81\x5a\x96\x8f\xd9\x1b\x1f\x2c\xcc\xe2\x59\x94\xb7\x05\x87\x5a\x90\x06\x2c\x0b\x1e\x35\x61\x62\xec\xcf\x52\xec\x20\x45\xe4\x84\xe0\x17\x45\x24\xe0\x6d\x06\x59\x14\x91\xc5\xe3\x58\x1c\x24\xc8\x52\xf7\xab\xcc\x18\x26\x69\x69\xf6\xad\x22\x72\xfa\xaa\x22\x12\x68\xd8\x5f\xb3\x28\x22\x01\x2f\x3d\xc8\xa2\x86\x2c\xcd\x6e\xb3\xf1\xaa\x43\x60\x0e\x7f\x53\x75\x58\x74\x97\x71\xe9\x47\x16\xe5\x21\x50\xc7\xa0\x55\xca\x43\x20\xd3\xc9\xd1\xec\xb5\x66\x7f\xb0\x9c\x17\x75\x1f\xd0\x7e\x3f\xeb\x61\xa3\x94\x62\xd3\xff\xa6\x14\x03\x1a\xc7\xe1\xb3\x28\xc5\x80\x12\xe4\x93\xce\xd2\xad\x47\x67\xf8\x06\x1d\xde\xad\x87\x8a\x0d\x5f\x78\x16\x15\x1b\x50\x31\xa6\x66\x51\xb1\x01\xbd\xec\x22\xc7\x80\xfb\x01\x87\xed\x54\xb1\x15\xfd\x6c\xaa\xf6\xa2\x64\x03\x52\x8b\x51\xe9\xbb\x05\x7e\xc8\xec\xc1\x65\x38\x2e\x63\x1f\xf6\xa6\xc8\x61\x51\xec\xfd\xa8\x99\x5a\x0f\xf8\xde\x64\xf4\x14\x7b\xc0\x1c\xf6\x9a\x5a\x0f\x68\xea\xf8\xa2\xd6\x03\x5a\x38\x78\x4a\x3d\x60\xe1\xd0\xc9\xa2\xd4\x2b\xc3\xaf\x7d\xfa\x98\x3d\xc4\xe5\x29\xc3\xbe\x55\xc3\x95\x61\x03\xe2\xf7\xdf\x5b\x75\x99\xb6\x8f\x3b\x52\x14\x65\x65\xda\x3e\x12\x3f\xcb\x01\xca\xb4\x7d\xd3\x75\x8a\x05\xbf\x4c\x6b\xee\x7d\x28\x2e\x10\xd3\x9a\x4f\x85\x14\xe3\x38\xad\x39\xd7\xa1\x28\x9a\xca\x74\xb4\x95\x90\xc4\x2c\x65\x51\x42\x02\x73\xb8\xe8\x29\x21\x81\xef\x31\xc6\x56\x0d\x09\x64\xda\xe6\xe9\x70\x1b\x3c\x4a\xb8\x64\x96\xe9\x78\x73\x3d\xa1\xb2\xaf\x4c\x87\xdb\xeb\x09\xd3\x37\x1d\x6e\xbd\x75\xb2\xe5\xa2\xfa\x04\xba\x52\xb6\xa8\x3e\x81\xb9\x3f\x12\xd5\x67\xd1\x35\x47\xf2\xed\x2c\x6a\x4d\xc0\x7b\x46\xb2\x28\x35\x4b\x38\xd5\xfd\x51\x55\x24\x10\xe4\xd5\xcc\xa2\x88\x04\x0a\xe7\x9d\xb3\x28\x22\x81\x46\xaa\xa6\x2c\x61\xd3\xc9\x3f\x91\x30\xd7\x12\x36\x9d\x0b\xd3\x87\x93\x5f\x59\x09\xb4\xbd\xe8\x29\x2b\x81\x46\x56\x90\x2c\xca\x4a\xa0\xfc\xdc\x75\x94\x95\xc5\x40\xd4\xe9\x70\xa6\xcd\x4c\x16\x1b\x3f\x07\x95\x66\xc9\xdd\x24\xaa\xa1\x3c\x04\xbc\xed\x24\x8b\xea\xb0\xe8\x97\xc3\x55\x9c\x45\x79\x08\x94\xe2\x9a\xa4\x3a\x2c\x86\x93\x72\xc7\x4a\x96\xb4\xba\xa9\x25\x91\xc7\x96\xd5\x35\x35\xc6\x74\xdd\x5e\xd6\x97\x6b\xd2\x87\x1f\xdc\xb2\xba\xea\xbe\x69\xdf\xaa\xfb\x80\x52\x5c\xa7\xd4\x7d\x45\xdd\xb7\x3b\x44\xdd\x07\x04\xf7\x37\x64\x51\xf7\x01\x0d\x57\x5d\x16\x75\x1f\x50\xd3\x2d\x57\xdd\x57\xcc\x22\xed\xbc\x55\xf7\x15\x6e\x44\x8c\xbd\x64\x28\xf2\x80\x24\xdc\x33\x8b\x22\xaf\x10\x14\x1a\xe1\x0f\x28\xe9\x80\xa9\x80\x2e\x2a\xba\xe2\x09\xb6\x70\x2a\xa8\xdf\x00\x2f\x89\xc9\x72\xf8\x99\x91\x46\x3a\x48\x75\x9e\xe5\xb0\xed\x1f\xd4\xb5\x68\xa7\x2a\x0f\xc8\xe6\x18\xa8\xf2\x80\xa9\xf4\x2e\xaa\xbc\x62\xc8\x65\xb8\x02\x29\xb0\x80\x46\x58\x78\x16\xf5\x55\x51\x25\x85\xd3\x48\x95\x04\x8c\x89\xd9\xa1\x9c\xfb\xbf\xc1\x45\x83\x31\x56\x24\x15\xe3\x24\xc3\x9d\x5e\x95\x54\x3c\x3c\xe6\xf7\xa3\x4a\x02\x56\xf7\xc3\x50\x25\x15\x0f\x8f\x61\xb3\x2e\xaa\x24\xa0\x71\x17\x69\x16\x55\x12\x30\x87\xab\x95\x2a\x09\x28\x9b\x08\xa9\x92\x80\x5e\x5d\xa0\x55\x49\x45\x49\x14\xae\xd0\x4a\x22\xa0\x17\xbb\x51\x49\x54\x48\x88\x16\x21\x43\xb8\xec\x5a\x12\xa2\x55\x27\xc7\x65\x67\x5c\x76\xad\x45\x76\x86\x62\x2a\x24\x0d\xaa\x25\x60\x0e\x39\x94\x6a\x09\x48\x6e\x22\xcd\xa2\x5a\x02\xbe\x37\xfd\x6f\xf6\xc6\xc5\x05\x7c\xc8\xf1\x72\xdb\x1b\xba\xc9\xb8\x6f\x2e\x8b\xda\x08\xc8\xe2\x7c\x51\x1a\x95\x1d\xb9\xe8\x8c\x57\x1b\x01\xab\x4b\x37\xd4\x46\x45\x6f\x5a\x48\xe6\xd4\x38\x40\x86\x43\xfc\xf8\xa3\x1f\xe4\x72\x72\xa8\x7a\x8a\x07\xc5\xb4\x9b\x94\xc7\x0e\x47\xf6\x54\xc9\x8b\xaa\xa7\xa8\x67\x62\x97\xd9\xbb\xdc\xb8\x4e\xc4\x47\x96\xc7\x16\x3c\x9c\x5c\x6c\xfe\x80\x2d\x78\x6c\x81\xc3\xf7\xd8\x02\xc2\x0b\xa7\x9b\x99\x4a\xa8\x78\x50\x2c\x9c\x57\x4a\x21\x20\x48\x65\x90\x45\x29\x04\x94\xe6\x9a\xa0\x14\x2a\xfa\xce\xc2\xcd\x46\xf9\x52\x3e\xad\xd2\xb5\x91\x16\xb5\x4a\x79\x77\x3d\x68\x81\xea\x02\xc8\x4d\xbf\x94\x17\x40\xd7\xb5\x55\x54\x17\x40\xad\x7f\x08\x2e\xcb\xa2\xf8\x28\x66\xa9\x08\x49\xd1\xbb\xab\x89\xbb\xd0\x69\xf1\x3a\x42\x0a\x92\x60\x45\xae\x0a\x92\xba\xbd\x6d\x8d\xa2\x62\x11\x2e\x74\x66\x4a\x55\x8f\x54\x33\x52\x10\x1c\x94\x55\xd7\x1a\xe0\xe1\x89\xac\x4a\x14\xa0\x72\x18\x26\xab\x12\x05\xe8\x1c\xd9\xca\xaa\x44\x01\x32\xa6\x3f\x99\x16\x25\x07\x8f\xad\xd8\xb2\x88\xa3\xd3\xd8\xa7\xaa\xa2\x05\xf8\x08\x2b\x45\xa7\x45\x0e\xe3\xb4\xec\xb2\x8c\x10\xe3\xe1\xff\x7f\x2c\xda\x2d\xa7\x66\xaa\x16\x20\xaa\x4d\x52\xb5\x54\x1d\x70\xe4\x48\xcf\xaa\x6c\x01\x5a\xf7\xbf\x29\x5b\xaa\x0e\x38\xa2\x42\xb3\xaa\x5b\x80\x36\xf7\x63\xf6\x86\x91\x7b\x11\xb4\x5d\x59\x01\x0c\xb9\x70\x55\x56\x00\xad\xf3\xdd\x54\xbd\x66\x55\xa5\x41\x3c\x7d\x56\x95\x06\xd0\xb2\xf9\x9b\xaf\x45\x98\x86\xac\xad\xbe\x35\xe0\x7b\x93\x6e\xd3\xb9\x56\xb9\xe3\xa5\xd9\x93\xd5\xda\x56\x57\x83\xf4\x55\xc7\x00\xaf\x19\xe1\x88\x59\xf5\x9a\x01\xdf\x63\x96\x39\x08\x1c\x57\x23\xa9\x64\x56\xdd\x66\x80\x67\x55\xb2\x2a\x78\x80\xf2\x63\xaf\xab\x0a\x1e\x20\xb8\xd9\x3b\xab\x4e\xb3\xaa\x06\x22\xa8\x22\xab\x1a\x08\xf0\x14\x4d\x56\x35\x10\x50\x8b\x13\x46\x09\x04\x94\x62\xfd\x95\x40\x55\x3f\x1a\xe1\x5f\x59\xd5\x40\xb5\x31\x47\x61\xd1\x55\x9f\x19\x50\x5c\x7c\xab\xaa\x08\x28\xfb\x1b\x50\x15\x01\x6d\xfd\xfc\xff\xf6\x8f\x09\xe4\xba\xff\xde\xfe\x21\x86\x90\xe4\x79\x59\x15\x45\x55\x37\x9a\x5e\xae\xaa\x1b\x0d\x08\x6e\x21\xcf\xaa\x1b\xad\xaa\x9d\x22\xad\x99\xbd\x41\xfa\x68\xee\x0d\xcf\xaa\x76\xaa\x86\x15\x12\xd8\x95\x55\xd7\x16\x10\x1c\xe5\xc8\xda\x6d\x53\x77\xb5\x64\x2f\xaa\xea\x29\xa0\x4d\x27\x9f\x72\x0a\xf8\x1e\xa3\x22\xea\x29\x20\xb8\x69\x37\xab\x72\x0a\xf8\x1e\xa3\x6e\xea\x29\x20\xf6\x37\xa5\x9e\xaa\xdd\xc1\x83\x56\xd5\xbe\xeb\xcb\xe0\xb1\x34\x56\x85\x52\xd5\x1b\x95\x2c\xdb\x55\x6f\x14\xd0\x34\x4d\x56\x55\x0b\x10\x1c\x16\xce\xaa\x33\x0a\xf0\x4c\x51\x56\x85\x4c\x35\x38\x90\x74\xeb\x59\xf5\x3c\x01\x9e\x29\xca\xaa\x78\xa9\xe6\xa8\x4b\xb6\xac\x3a\xed\x36\x72\xd4\x49\x07\xaa\x4a\xa5\x9a\xcc\x82\x6c\xe5\x59\x95\x2a\x40\xfe\x1c\x17\xa5\x4a\x35\x62\x90\x6c\xe5\x59\xd5\x2a\x40\x70\x05\x7b\x56\xa5\x4a\x55\x97\x70\x1a\x3e\xab\xba\x04\x58\xb2\xaf\xaa\x2e\xa9\x86\x0c\x92\xa1\x20\xab\x22\x04\x88\xb6\x7f\xd4\x56\x4d\x32\xb3\xb8\x22\xaa\x41\x80\xba\x57\x44\x35\x08\x90\x3f\x07\x59\x0d\x02\xb4\xe6\xcc\xd5\x03\x06\x74\x8e\xf5\x64\x55\x95\x00\x93\x2c\x81\x59\x55\x25\xd5\x80\x41\x2e\x01\xce\xaa\xbb\x0b\x48\x12\xea\x66\x55\xa8\x54\xdd\x5d\x7a\x21\xaa\x4a\x05\x18\x1c\x25\xca\xaa\x52\x01\x7a\xb1\x49\x2a\x95\xaa\x07\x2c\x1d\x76\x3d\x60\xc0\xf8\x39\xbf\x95\x2a\x80\x8e\x9b\xaa\x52\x01\xc6\x8f\x20\x8b\xaa\x52\xa9\xca\x12\xf2\xaa\x67\x55\x96\x00\xb5\x3a\x4c\xca\x12\xa0\xc4\x5e\x35\xf5\x80\x01\xe3\xe7\xb7\xa2\x07\xac\xaa\x5e\x12\xf6\x55\x55\x2f\x40\x97\xf1\x55\xd5\x4b\x55\xbd\x90\x8a\x28\xab\xea\x05\x18\xbf\x3f\xe4\x03\xcf\xaa\xb8\x01\x7a\x73\x4e\xe8\xfa\x02\x8a\x19\x12\xb2\xea\xfb\x02\xda\x5e\x07\xd3\x9e\xf9\x60\xfc\x1c\x0d\x55\x11\x30\xa4\xaf\x55\x55\x54\x55\x45\xe9\x36\xa9\x2a\x02\xc6\xcf\x0f\x5f\x55\x04\x54\xa9\x76\xd5\xb5\x56\xcd\x04\x98\x98\xfb\xaa\x4e\x33\x60\xfc\x5c\x0b\xd4\x4e\xc0\xe0\x98\x52\x56\xb5\x13\x30\x7e\x2e\x05\x4a\xa7\xaa\x7f\x4c\x57\x69\x55\x28\x01\x6d\x4f\x7d\x85\x12\xd0\x75\x82\x54\x85\x52\xd5\x41\x96\xee\x44\x3a\xc8\x80\x61\xe4\x4a\x55\x3b\x55\x63\x1a\xd3\x6d\x47\xf1\x04\x0c\xa3\x65\xaa\x1e\xb2\xaa\x3b\x2c\x5d\xb7\x15\x4f\xc0\x30\xb4\xa4\xea\x0e\x03\x6a\x75\xa2\x28\xa7\x80\x3a\x6d\x80\x72\xaa\x2a\xa7\xd2\x0d\x45\x39\x05\x0c\xd2\xbb\x65\x55\x4e\x01\x83\xa4\x61\x59\x95\x53\xc0\x30\x40\xa7\x2a\xa7\x80\x51\xfc\x52\x75\x9a\xd5\x7d\xbf\xbc\xcd\xb4\x83\xb8\x5e\x3e\x7c\xcf\xfe\xf9\x60\xa8\x5d\xab\x3e\x33\xa0\x2d\x57\x4f\x7d\x66\xc0\xd8\x1f\xbd\x2e\x33\xa0\x70\xed\x47\x56\x5d\x66\x55\x49\x97\xf0\xec\xaa\xa4\xab\xe6\xaf\xc6\xd4\x57\x95\x74\xc0\x28\xae\xa7\xba\xcc\xaa\x2e\xb3\x74\xbb\xd2\x65\x06\x8c\x22\x37\xd0\x65\x06\x0c\x15\x6e\x3d\xed\x1d\xce\xcc\x91\x59\x3b\xab\xf2\x10\xf8\xfe\x19\x7d\xad\x3e\x04\x72\xd9\xaf\xea\xc3\xaa\x3e\x54\x0c\x56\xf5\x21\xd0\xf7\x12\xa8\x3e\x04\x46\x71\xc7\x51\x1f\x56\x23\x29\xb5\x10\x55\xd5\x20\x30\x8a\x1f\xa2\x6a\xb0\x9a\x70\x24\xdd\x4c\xd4\x7e\xc0\x30\xaa\xa9\xea\x21\xab\xd7\x6e\xbb\x65\xb6\x9d\xfc\xd8\x9b\xec\x5d\xb6\xfd\xb2\xed\xfe\xa6\x6d\x37\x06\x33\x6d\xbc\x72\x10\x18\x9c\x94\xcc\xaa\x1c\xac\x9f\xf4\x1b\xc5\x6d\x4e\xe9\x07\x94\x22\xb1\x53\xfa\x01\xc3\x40\xaa\x7a\xed\x76\x9a\x45\x93\x17\x55\x7e\xd5\xe4\x25\x9c\xd7\xcd\x7a\xdb\xf4\x0f\xfa\xe6\x32\xb7\x4d\xff\x60\x18\x44\x53\x6f\x27\xc2\x07\x43\xa3\x57\xbd\xed\x0c\x62\x32\xf5\x97\xd7\xdb\xce\xf8\x60\x90\x6f\x3e\xab\xae\xb9\xea\xc9\x39\xd2\xf9\x67\xd5\x37\x07\xd4\x70\xf1\x52\x7f\x02\xa3\xec\xca\xda\x3f\xb7\x13\x41\xae\xa7\xd8\x04\x2a\x79\x1c\xb3\xea\x88\x03\x86\x91\x78\x55\x47\x1c\xf0\xbd\x49\x37\xea\x89\xab\x7a\xe2\x76\x9b\xec\x20\x62\x3e\xd3\xc5\x4b\x95\x0a\x8c\xbd\xaf\xaa\x52\x81\x61\x50\x59\xd5\x37\x57\x15\xae\xa9\x5e\x50\xb8\x02\xa3\xc8\x72\x15\xae\xc0\x30\xd0\xac\xea\xae\x03\x5a\x75\xe4\x74\xd7\x01\x55\x53\x6e\x55\xdd\x02\xeb\xe7\x27\xa6\xba\xad\xcf\xee\x0c\x2b\x6b\x67\x3c\x5e\x53\xe1\x4f\xda\x19\xfa\xe6\x52\x1d\xa0\x6f\x0e\x28\x3f\x07\x40\xdf\x5c\x35\x99\x89\xae\x95\xaa\x73\x0e\xe8\x7b\xd5\xd3\x39\x57\xf5\xc4\x91\x05\x31\xab\xae\x38\x60\x68\x9f\xae\xca\xdb\xfa\x3a\xc4\x2e\x4c\xfa\xdd\x80\x41\x84\x7d\x56\xdd\x6e\xd5\x08\xd2\x54\xc9\xe8\x77\x03\xda\x4f\x7d\xa9\x30\xae\x46\x90\xea\x3e\xab\x2a\x63\x60\x18\x27\x55\x55\xc6\x55\x01\x9b\xd0\xfe\xa6\x80\x05\xbe\xb2\x4e\x59\xb1\x8c\xdb\x48\x18\xd1\xa6\x93\x0d\xa8\xd1\xff\x60\x01\x6f\x6a\x5e\xa0\xe8\xa9\x6b\x4a\x5e\xa0\x95\xe1\xcf\x0f\x8b\x38\x15\xd7\xfc\xf5\x69\xd1\xa4\xe2\x93\xa2\xb0\xc8\x9e\xb1\x28\x2d\x62\xf2\xb3\x7b\x35\x25\x2f\x30\x38\xb8\x98\x4d\xc9\xdb\xd4\xb7\xa4\x45\xc8\xa6\xbe\x05\x86\x71\x66\x4d\x3f\x1d\xf0\x3d\x16\x94\x3d\x96\x99\xf3\xd5\xca\xbe\x16\xb1\x8b\xb2\xb2\x37\x55\x70\x2b\xbb\xfb\x92\x32\xbb\xaf\x30\xfb\x6d\x93\x2a\xb8\x29\x79\xc9\xd2\x95\x4d\xc9\xdb\x0a\x1f\x3e\x3c\xa3\xe9\x96\x6b\x66\x61\x24\xaf\x48\x36\xfd\x72\xc0\x28\xc3\x1f\xb0\xed\xfa\xe0\x12\xda\xd2\xf4\xc1\x01\x83\xec\x84\xd9\x14\xcb\xc0\x28\x7c\x71\x4d\xb1\x0c\x0c\x8e\xd1\x65\x53\x2c\xb7\xba\x7f\x93\xea\x56\x7f\x93\x2c\x89\x9c\xa3\xcb\xa6\xbc\x05\x8a\xb2\xa9\x29\x6f\x9b\x99\x57\xd6\xcf\x37\xfd\xcd\x0f\xaa\xb4\xaf\xa9\x65\x81\xa2\x77\xb0\xd5\xfd\x9b\x37\x35\xa3\x6f\xd5\xb2\x4d\x2d\xbb\x58\x0c\x9a\x5a\x16\x18\x85\x5d\xad\xa9\x65\x9b\xfe\xbc\xc5\x02\xd4\x14\xb3\xc0\x30\x66\xb3\x29\x66\x9b\x62\x56\x99\xdd\x14\xb3\xc0\xe0\xf8\x5b\x36\x83\x42\x81\x41\x66\xba\x6c\xea\x5b\xa0\x1b\x3a\xd7\xd4\xb7\x4d\x7d\xbb\xfc\xff\x76\x90\x5e\xbf\xf5\xb3\xcc\x1e\x22\x28\xb4\x3a\xbb\x15\xb8\x40\xab\xfb\x27\x1d\xa7\xc6\x38\xb1\x9b\x34\xf5\x6d\x33\x59\xa3\x6e\x89\xa6\xc0\x05\x06\x79\x13\xb3\x19\x26\xda\x8c\xff\xe4\xba\x88\x6c\x06\x80\x02\x83\x83\x7f\xd9\xba\xbd\xd1\x6d\x3a\x2b\x61\x33\xc2\x13\x18\x05\x29\xd8\x94\xc1\x4d\xb7\x22\x47\xe3\xb3\xe9\x56\x04\x6a\x75\xaa\x29\x83\x81\x51\x86\xff\xcc\x76\x2a\x83\xb9\x07\x22\x9b\x32\x18\x28\xca\x95\xa6\x0c\x6e\xea\xdb\xe5\x02\xa0\xbe\x05\x06\xa7\x19\xb3\xa9\x6f\x81\xfa\xaf\xc8\x16\x0c\xc7\x93\x5e\xd3\x11\x08\x54\xfd\xa2\x4d\x3f\x60\x33\xe8\x73\xb1\x55\x34\x1d\x81\xcd\xa0\x4f\xd7\x09\x1d\x81\xcd\x30\xcd\xe5\x47\xab\x32\x06\xaa\x1b\x7f\x53\x19\xb7\x61\x7f\x5b\x0d\xfb\xdb\xc8\x4d\x6e\x8b\xc8\x66\xe4\x26\x30\x8a\x5f\x81\xfa\x19\x18\x24\x9b\xcc\xa6\x7e\x06\x86\xde\xd3\xa6\xf3\x0f\x28\x9c\x6d\xca\xa6\xf3\x0f\xf8\xfe\x3f\xff\x6c\xda\xa8\x0f\x9a\xb6\xf3\xa6\xf0\x06\xea\x0f\x36\xdf\x14\xde\xc0\x28\xd3\x22\x87\x6e\xb2\x68\xb2\xef\x37\x75\x37\xd0\x49\x9d\x96\x4d\xd9\x0d\x8c\xc2\x1e\xdf\x94\xdd\xc0\x28\xec\x91\x4d\x0f\x21\x30\xc8\x6e\x99\x4d\x21\x0e\xf4\xea\x64\x51\x88\x03\xa3\x60\x12\x6c\xfa\x07\xdb\xa4\x77\xc2\x5f\xb4\x77\x3e\xe8\x06\x1a\x34\x75\x78\x53\x28\x93\x97\x39\x9b\x42\x19\x28\x46\x32\x34\x85\x32\x30\xb8\x73\x3b\x9b\x3a\xb9\x99\x3f\x7e\xb9\x31\xa9\x8a\x81\x51\xb0\x5a\x35\xfd\x77\xc0\x28\xf0\xf4\xa6\x4e\x06\x46\x71\x93\x53\x27\x37\x0f\xd1\x2d\xd7\x42\x85\x2c\x30\x34\x8b\x35\x43\x39\x81\xf6\x73\x7e\x1a\xca\xd9\x8c\xdb\x5c\x2e\x1b\x6a\x5b\xa0\x1a\x25\xdb\x94\xb6\x40\x92\xd5\x3f\x9b\xda\xb5\x79\x12\x6e\xb9\x46\xe4\xae\x07\x31\x6b\x2e\xa2\xaa\xd2\xb6\x8a\x8f\xf1\xa3\xea\x4d\x60\x78\xac\xa3\xa9\x37\x81\x51\xe0\x06\xcd\x50\xce\x66\x28\xe7\x1a\xff\x9d\xed\x24\x9b\x91\x9e\x40\xca\x05\x9b\xa2\xb5\xe9\xf1\x5b\x2e\x04\xaa\xd6\xa6\x6a\x75\x87\x54\xb5\x36\xd3\xc0\x2c\xe7\xb9\xee\x3d\x60\xec\x2d\x5e\xd5\x0a\x0c\x99\x77\x53\xb5\x36\xc3\x3a\x97\xab\xa0\xb2\x15\x18\x7b\x09\x59\xbb\x1f\x5c\xf1\x5c\x3f\x95\xad\xc0\xd0\xe9\xd2\x54\xad\xcd\x3c\x96\xcb\xc9\xaf\x6c\x05\xf2\xe7\x0f\xe8\x05\x6c\x9e\xb1\x33\x58\xb2\x29\x48\x81\xf5\x73\x49\x55\x8f\x02\xa3\xb8\x53\xab\x47\x9b\x7a\x34\xfd\xff\x0e\xae\x7a\x14\x22\xdf\xd4\xa3\x40\xd5\xa4\xd2\xd4\xa3\xed\xd8\x0d\xa0\x51\x0a\xcb\xa6\xb0\x44\xe8\x34\x85\x25\x50\x0d\x48\x6c\x0a\x4b\xa0\x1a\x79\xd3\xd4\x95\x4d\x11\x09\xb1\x6c\x8a\x48\xa0\xc4\xda\xff\xcc\xf1\x3c\x59\x09\xd2\x22\x5b\x79\x92\xaa\xc6\x45\x5c\x5d\xd9\xd4\x95\xf2\x22\x75\x25\xd0\xab\x7c\x44\x5d\x09\x0c\x6e\x8d\xcb\xa6\xac\x6c\x06\x67\x2e\xbf\x4b\x75\x25\x30\x8a\xac\x45\x59\x09\x54\xfd\x71\x4d\x59\xd9\x4e\x3b\xc3\x06\xe8\x64\x04\x46\x75\xaf\x52\x56\x36\x65\xa5\xdc\x46\x59\xd9\x3c\xa0\xa7\x8a\x6f\x6a\x48\x60\x70\xa4\x2e\x9b\x1e\xc5\xa6\xac\x5c\xce\x34\x65\x25\x50\x72\xff\x80\x4d\x57\x43\x2e\xbf\x72\x35\x24\x50\x9b\x74\x41\x0d\xd9\x74\x29\x2e\x3b\x52\x97\x22\x50\xb5\xd4\x37\x75\x65\xd3\x7f\xb8\x9c\x1c\xaa\x48\xa0\x90\x90\x3d\x9b\x2a\xb2\x79\x40\x6f\xd9\xe1\x8a\x41\x60\x54\x19\x8f\x62\xb0\x19\xa8\xe9\x51\xa1\xa6\x1a\x04\x06\xa9\x61\xb3\x29\x06\x9b\xde\xc8\xe5\xc0\xa8\x06\x9b\x6a\x70\xf9\x03\x8e\xa8\xa9\xf3\x97\x03\xa3\xf4\x03\xca\x5e\xa3\x95\x7e\xc0\xd8\xfc\x46\xe5\xd7\x74\x50\x6a\x3d\x68\x4a\x3f\x60\x54\x99\x97\xd2\x0f\x28\x9b\x4a\x2b\xfd\x80\x51\x8b\x4f\x39\x7c\x1e\xf7\xd3\x63\xde\x14\x75\xc0\x28\xfe\x7f\x45\x5d\xf3\x6c\xdf\x92\x28\xea\x8d\x04\xda\x4f\xe2\xa2\x33\x12\x18\x1c\x83\xcb\xa6\xa8\x6b\x28\xb8\xd4\x1c\xdb\x54\x70\x40\xfe\x9c\x1f\x2a\x38\x60\xec\x4d\x4c\x01\x07\x54\xae\x54\xcf\xa6\x80\x6b\x5e\xce\x24\x91\xd6\x3d\xd9\x08\x88\xcc\xdf\xcf\x32\xbb\xfb\x53\x61\xa3\xca\xd9\x54\x61\x8d\xeb\x69\xf3\xb7\xcb\xec\xdb\x0f\x46\xfd\x59\x64\xdf\xbe\x4a\x68\xaa\xd6\x55\x61\xc0\x57\x36\x28\x2b\x96\xf9\x21\xf8\x58\xb5\xa8\xfa\xd8\xa4\xac\x59\xd6\xf8\x85\x45\x51\xb7\x08\x67\x1a\xbb\x69\x57\x67\x01\xdf\x9b\x41\xd9\xb4\xcc\x89\xe5\x6f\x86\x45\xae\x87\x95\xa2\xb4\x68\xf9\x66\x52\x76\x58\xe6\x0d\xd3\xfe\xb3\xd3\x22\x16\xfe\xe5\x53\x97\x45\x64\xe3\x99\xfe\xff\xdb\xa2\x1b\xed\x6a\xd1\x63\xd1\x83\xe1\xc7\x66\xbe\x16\x39\xd3\xf8\x5f\xea\x2c\xa0\xe4\xcf\x36\xa9\xb3\x80\x41\x32\xe4\xec\xea\xac\x5e\x1c\x29\x3e\xbd\xae\x5a\x02\x86\x47\x36\xba\x41\x8c\x9d\xd3\x77\xde\xb8\x9f\x5d\x69\x04\x0c\x12\x66\x64\x57\x1a\x01\x75\x2e\xff\x99\xb5\xe5\x8a\xd9\x34\x3a\xb9\xeb\x0d\xec\x15\xc9\x80\xd9\xb7\x57\xbb\xb6\xd2\xb5\x0e\xa7\x9a\x0a\x68\xdc\xf9\x95\x5d\x4d\x05\xb4\x9a\x7f\x30\x7e\x77\x25\x57\xaf\x56\x1c\x71\xdc\xd5\x57\x40\x1a\xa2\xdf\xd5\x57\xbd\xd9\x5b\x10\xa5\xae\x4a\x02\x46\x45\x95\x76\x55\x52\xe7\x4c\x5c\x92\x7b\x29\xbb\xfa\x07\x58\xa4\x16\xcc\xae\xfe\xe9\xcd\x4e\x85\x7b\x74\xc5\x0e\x30\xc8\xa1\x94\x5d\xb1\xd3\x9b\x75\x63\xcf\xea\xca\x18\x60\x70\x6b\x46\xf6\xb6\xeb\x66\xa7\x5a\x35\x3b\xb5\x3b\x39\xa1\xd5\x5d\x2d\x02\x8c\xca\x6e\xda\xd5\x22\x1d\xe1\xe1\x95\x10\xd9\x15\x1e\x40\x86\x1d\xad\xf0\xe8\xa6\xf0\x70\xef\xef\x4a\x0a\x60\xe8\xdb\xe8\x4a\x0a\x60\xed\x81\x54\x52\x74\x92\x73\xa4\x67\x68\xba\x21\x82\x40\x37\x72\xbe\xeb\x7e\x03\xca\x76\x1b\x75\xfd\x6f\xc0\xa8\xce\xbb\xb1\xeb\xc1\x42\xe5\x8c\x55\x65\x74\x6f\x97\x0a\x9f\xb2\x87\x10\x1e\xd5\xaf\x4b\xe1\xd1\xa7\x0d\xf0\x93\x50\x3f\x00\xcd\x2d\xbc\xab\x1f\x80\xef\x31\x06\x5e\xfd\x00\x14\xdd\x01\x5d\xfd\x00\x2c\x8f\xae\x75\xf5\x03\xf0\xbd\xc9\x8f\x2a\x20\x80\x1c\xac\xd1\x5d\x01\xd1\xe7\x6e\x27\x6d\x57\x2e\x00\xa3\xda\x6b\xca\x05\xa0\xa4\xf1\xcb\x5d\xbd\x00\x14\x79\x4f\x57\x2f\x00\x5d\x27\x5d\x9f\xbb\xa1\x2c\x8e\xae\x06\xba\xf2\x80\xef\x9f\xd1\xb7\x6a\x08\x60\x69\x3b\xe9\x6a\x08\xe0\x7b\x8c\x2e\xfa\x3f\xc6\xce\xe4\x68\x7a\x96\x59\xa2\xae\x5c\x13\x9a\xb1\xa8\xcd\xef\x8b\x46\xff\x4d\xb8\xa1\x73\x78\xd7\xdf\xb3\xca\x08\x42\xdd\x02\x84\x50\x66\x4d\xe8\xcc\x03\x0a\xa5\x05\x57\xd7\x99\x07\x7c\x97\x31\x6d\x7a\xf3\x80\x41\xcd\xf0\xd5\xf5\xe6\x01\xdf\x65\x74\x44\x77\x1e\x50\x3b\xea\xa9\x9b\xcf\x06\x0c\xad\x7d\x5d\xdd\x02\x2c\x6d\x71\x5d\xdd\x02\x0c\x13\x8f\xba\xba\x05\xf8\xfe\x9f\xc7\xa2\x83\x0f\x18\xb5\x7a\x4b\x27\x0d\xa7\xdc\xfa\xf9\x26\xeb\x94\x03\x4a\xc7\x86\xd3\x75\xca\xf5\xe5\x2a\xe5\xdb\xd9\x95\x24\x7d\x79\x53\xc6\xae\x22\x01\x06\x75\xdb\x56\x57\x91\x00\xdf\x2f\x79\x06\x6b\xdf\xf4\x63\xad\xf2\xe9\xae\x3b\x0d\x18\x15\xee\xd6\xf5\xa6\x75\x8f\x58\xd5\x43\xd5\x15\x2e\xc0\xa8\xee\x14\x0a\x97\x4e\xc2\xd9\xd2\x27\xd3\x55\x29\x40\xfe\xdc\xf7\x54\x29\x40\xfe\xbc\x41\x3a\xdd\xf8\xce\x96\xc6\xfe\xae\x0c\x01\x86\x71\x4d\x5d\x15\x02\x7c\x97\xd1\x5d\x65\x08\x50\x8d\xad\xe9\x3a\xcf\x3a\xce\xb3\xa5\x8f\xad\x2b\x43\x80\x66\xfc\x7c\x57\x86\x74\x5c\x60\x4b\x57\x50\x57\x4c\x00\xa3\xba\xd7\xa9\x25\x3a\xe5\x34\x96\xfe\xa8\xae\xc7\x08\xe8\x46\x27\x75\x89\x7d\xc7\x3d\xb4\xb4\x52\x76\x69\x3c\xd0\x38\xe1\x6b\x75\x69\x3c\xf0\x5d\xc6\x43\xd0\x3f\x04\x0c\xb3\x16\xbb\xd4\xbe\x9f\x12\x57\x37\x40\x49\x7b\xb7\x80\x22\x34\xa7\x4b\xda\x81\x41\xdd\xf0\xd5\x25\xed\xc0\xe0\x10\x9b\xd5\x25\xed\x40\x59\x1a\x83\xbb\xa4\x1d\x88\xf0\xc1\x4b\xda\x81\xa1\xc5\xa0\x4b\xda\x81\xef\x97\x8c\x5d\x67\x10\x30\xaa\x33\x29\x8f\x07\x52\x4f\x41\x97\xc7\x03\xc3\xd8\xb2\x2e\x8f\xef\x97\x43\xf7\x75\xd1\x3d\x04\xf4\x9f\xef\x81\xd4\xbe\x5f\x3e\xe4\xfd\x53\xc7\x79\x61\x49\xf3\x0b\x21\x67\x07\x46\xc5\x4c\xd4\xe5\xec\x40\xa4\xbb\xa4\x94\x1d\xf8\x04\x00\x83\x92\xb3\x03\x43\xa5\xd3\xf5\x05\x75\x28\xfb\xd2\x32\xda\xe5\xec\xc0\xd8\xdf\x75\x1d\x3f\x40\x1b\xe3\xbf\xcf\xea\x58\x5d\xbf\x10\xf0\xfd\x31\xb3\xa5\x63\x08\x18\x75\xdf\xcb\x69\x80\xf8\x2f\x0d\x25\x5d\xe2\x0f\x94\xbd\x4b\x4b\xfc\xfb\xbd\x47\xc3\xd4\x48\xdf\x81\xda\xa5\x59\xd2\x77\xa0\x2c\x2d\xa7\x5d\xfa\x0e\xd4\xbd\x6b\x48\xdf\x81\x41\x25\xd2\xd5\xa5\xef\xfd\xb1\xbb\x98\x1e\xba\x6e\x1a\x60\xec\xb9\xd7\x4d\x03\x7c\x97\xf9\x53\x1f\x1b\x94\x5e\xfb\x67\x97\xd2\x03\xa3\x4a\x43\xf4\xd3\xf4\xc7\xa5\xe8\x2b\xa1\x07\x06\xa8\xca\x94\x6e\xe0\x20\x50\x96\x76\xd2\x6e\xe4\x20\xb0\xe4\xef\x5d\x96\x0f\xe4\xa6\xd2\xb2\xfc\x2e\xcb\xb7\x67\xb2\xfc\xfe\x7a\x4f\x04\x76\xd7\x17\x02\x8c\xba\x9b\xbc\xe7\x07\xb9\x29\xa6\x5c\x1d\x28\x4b\x2b\x54\x37\x0c\x10\x18\xa6\xe8\x0e\xe9\xfb\xf8\x79\x03\xa4\xed\x90\xfd\x02\x43\x53\xde\x90\xfd\x0e\x49\xac\xc6\xaa\x21\x89\x1d\x66\xfa\xb0\xef\x0d\x49\x2c\x50\x96\xb2\x7b\x18\x33\x07\x54\xca\xd8\xad\xa1\xff\x00\x48\x0e\x83\x5f\xc3\x90\xb9\x51\xdc\x45\x99\xc9\xa1\xff\x00\xe8\xd4\x5a\x59\x43\x46\x3c\xf0\x1f\x2c\xa5\xc5\xd0\x7f\x00\x34\x23\xda\x86\xfe\x83\x51\x7c\x06\x70\x82\x21\xff\x05\xf2\xd7\xbd\xc1\x6b\x13\xf3\x81\x0d\x7a\x18\x46\x07\x7c\xbf\x5c\xb4\x39\x50\x6a\x54\x70\xf2\xcd\x1a\x96\xa8\x00\xbe\xcb\x18\x82\x35\x2a\x80\x65\x90\xc6\x90\x5f\x0f\x8e\x40\x5d\x8a\xa8\x21\xc1\x06\x52\x21\x34\x24\xd8\x03\x77\xc4\x92\xc1\x0f\xdd\x11\x40\xd5\x9f\x32\xa4\xcb\x40\xa3\x36\xd2\x1a\xd2\x65\x60\x71\x7e\xcc\x1a\xba\x23\x06\x36\xff\xa5\x38\x1f\x1a\xfd\x81\xa6\xda\x1d\xd2\xe0\x21\x0d\x66\xc3\x19\xd2\x60\x60\x70\x72\xc1\x1a\xda\xfc\x81\xa1\x5d\x7d\x68\xf3\x07\x86\xde\xa5\x21\x57\x06\x92\xaf\xdd\x90\x2a\x03\x45\xfe\x35\xa4\xca\x83\x52\xeb\x3b\xb5\x7f\x68\xf1\x07\x92\x23\x3a\xd7\xb0\x08\x04\xf0\x5d\xc6\x2d\x75\x02\x00\x83\x13\x60\xd6\xd0\x09\x30\x24\xde\xf2\xe2\x21\xf1\x06\x52\xe9\x30\x24\xde\x40\xf1\x08\xd7\x35\xf4\x02\x00\x83\xea\x7c\x6b\xc8\xc5\x81\xaa\x99\x6c\xc8\xc5\x81\x56\x7d\x2f\x0c\x85\x1b\x24\x0d\x2d\x09\xd8\xe8\x7b\x54\xac\xaa\xfd\xff\xae\xaa\x61\xb2\x36\x1f\x86\x21\x65\x1f\x52\x76\xbe\x9c\x43\xca\x0e\xa4\x8e\x81\xa1\x13\x00\x28\x1e\xd5\xb7\x86\x5e\x00\x20\xd5\x9d\xc3\x74\x20\x60\x70\xd4\xd3\x1a\x72\x7d\xe0\xfb\xa5\x6d\x8e\x73\x70\x4c\x83\x33\x24\xd7\x1f\x72\x7d\x88\xe6\x90\xeb\x8f\xe1\xa0\xe0\xc5\x43\x5f\x01\x30\x38\x08\x65\x0d\x7d\x05\x63\x3a\x28\x3e\x80\x43\x1a\x0f\xe4\x8f\xef\xd3\x90\xc5\x03\xdf\x65\xfc\x54\x1a\x0f\x0c\xc3\x6d\x87\x34\x7e\x4c\xbb\xcb\x07\x6a\x68\xe1\x07\x06\x07\x4d\xac\x21\x65\x07\x76\xc8\xc4\x90\xb2\x03\xcb\x04\xcf\x21\x63\x1f\xe4\xfb\x2c\x3f\x4a\x43\x7e\x0e\x2c\x53\xdb\x86\xfc\x7c\x84\x23\xe0\x73\x36\x64\xd9\xc0\xa8\xbe\xd9\x92\x6c\xe0\xbb\x8c\x11\xc8\xb2\x81\xde\x9c\x0f\x49\xf6\x08\xdf\x32\x88\xcf\x90\x52\x03\x49\xa5\xdf\x35\xa4\xd4\x40\xf1\x1c\xdd\x35\xe4\xd4\xc0\xe0\xdc\x8a\x35\xa4\xd4\x43\x4a\x3d\xfd\x33\x47\x85\x77\xa0\xfe\xe1\x24\xcc\x35\x74\x1e\x8c\xf0\x49\x3a\xe8\xd8\x83\xe6\xb0\x52\xf7\x1f\x63\xea\xc6\x72\x80\x7c\x27\x87\x91\x71\x40\x51\x0c\x0c\x1d\x0a\xc0\xa8\xee\xaa\x3a\x14\x86\xf4\x7d\xef\x06\xd2\x77\x60\x70\xda\xce\x1a\xc6\xcf\x01\xf9\xf3\x2d\x91\xd1\x03\xdf\x2f\x59\x8b\x52\x7a\x60\x99\x12\x3e\x64\xf4\x40\x59\x7b\x6f\x91\xd2\x03\xc9\x59\x87\x6b\x48\xe9\x07\x49\x42\x6b\x7f\xc7\xd6\x1e\x15\x5b\x39\x9c\x70\x18\x0e\x07\x7c\x97\x31\x50\xc3\xe1\x80\x34\xca\x67\xe8\x9e\x18\xe9\x7c\xb8\x1f\x48\xf3\x81\xd5\x31\x87\x0d\x69\xfe\x48\xf7\x68\x97\xb1\x2e\x03\xa0\xff\x5c\x2a\x72\x75\x60\x18\xf2\x31\xe4\xea\x23\xed\x2e\xa2\x7b\xe8\x1f\x00\x72\x4f\xb8\xee\x81\x71\xd8\x0f\x77\x1c\xc3\xd5\x80\xc1\xc9\x19\x6b\x18\xae\x06\x7c\x97\x31\x21\xc6\xab\x01\x5b\xc6\x0e\xdd\x03\xc0\x77\x19\x1d\xd1\x3f\x00\x8c\x7f\x37\xf0\xc1\x90\xfe\xd3\xa1\x1c\x43\xff\x00\xd0\xb4\x58\x0f\xfd\x03\xe3\x70\x65\xb9\x18\x8c\x45\x03\xc6\xbf\x6e\x38\x28\x62\xd1\xba\x4f\x4f\x65\x01\x8c\xea\xc6\xaa\xcb\x60\x9c\xae\xa2\xdd\x66\x6f\x09\x1f\xab\x7e\xe9\x55\x0c\xc0\x77\x19\x03\x50\x32\x0c\x25\x83\xe3\x54\x32\x00\xf9\xab\xfe\x99\xbd\xbd\x7c\xee\x92\x10\x29\xfd\x90\xd2\x23\x93\x87\x94\x7e\xc8\xd5\xab\xdf\x6b\xb9\x3a\x50\xf7\x5e\x28\x57\x1f\xb2\x70\xce\x68\x58\x43\x16\x0e\x2c\x9d\x6d\x43\x16\x0e\xa4\x66\xb9\xa1\x2d\x1d\x28\xfb\xa3\x22\x2f\x07\xaa\x81\xd3\x43\x5e\x3e\x64\xd9\xcd\xcf\xb5\x2c\x7b\xc8\xb2\xd1\xfe\x43\x96\x0d\x7c\x97\x31\xdf\x9a\xdc\x81\xaa\x4f\x71\x48\xbc\x07\x76\xf3\xd5\xfc\xaa\x68\x37\x07\x46\x95\xba\x49\xbc\x81\xb5\x39\x99\xc4\x7b\x90\x8a\xb3\x9a\x9f\x67\xb9\x32\xd0\xcc\xab\x1e\x52\x65\x60\x19\x4c\x3d\xa4\xca\x03\xeb\xf7\x6a\x7e\x03\xb5\x7e\x03\xc5\xaa\x07\x43\xeb\x37\x90\x3f\x59\x82\xd6\xef\xf1\x7a\x4f\x1c\xe1\xc3\x88\x23\x60\x19\x1e\x3f\x8c\x38\x02\xca\x32\xa3\x65\x98\xfc\x0f\xa4\x06\xeb\x61\x10\xd2\x78\xed\x87\x2f\x95\x11\x47\x40\x84\x64\x42\x5b\x37\x90\xfb\xa5\x7d\x77\x3f\x08\xcc\xc5\x71\x33\x24\xd9\x43\xfa\x6c\x92\xcb\x90\x3e\x0f\xe9\x33\x46\x8e\x29\x7d\x9e\x3f\x47\xc0\x33\x98\xda\xb0\x81\xd4\x98\x38\xb5\x61\x03\xc3\xb5\x3c\x35\x61\x03\x7b\x2f\x9d\x9a\xb0\x81\x65\x11\x8b\xa9\x09\x7b\x52\x8c\x6e\x19\x0c\x3c\xb5\x57\x03\xcb\xdc\xff\x29\x63\x9f\xd2\x73\xc3\xfa\xa6\xf4\x7c\x4a\xcf\x79\x2a\x53\x7a\x3e\x8b\x13\x39\x6c\xb3\x1f\x05\x32\x91\x36\xd9\x0f\x49\xb6\xf1\xf7\x53\x92\x0d\xe4\x8f\xef\xd8\x94\x64\x4f\x49\x76\x73\x08\x92\xec\xb9\x49\xb6\xfd\x60\xd6\x26\xec\x79\x71\xe4\xc6\x9a\xd2\x67\x20\xf5\x19\x4c\xd9\xf3\x24\x98\x67\x51\xe2\x74\x4d\x79\x31\x30\x38\x81\x69\x4d\x0d\xcf\xc0\x77\x99\x6d\x69\x1b\xdb\x02\xef\xfb\x34\x57\x65\x56\xdf\x5a\x22\x01\xa6\x5c\x19\x58\x3a\x0e\xa7\x5c\x79\x6a\x1f\xa6\x0a\xfb\x9a\x12\x63\xa0\x77\x67\x5c\x62\x0c\x94\x65\x20\xe2\x94\x19\x03\xf9\xdb\x97\x39\x21\x9a\x91\xdb\x5f\xac\xe2\x53\xe6\x3c\xb5\x32\xa7\x7f\x6c\x37\x9b\x2b\x8f\xb7\x7f\x9a\x0d\x02\xec\xbd\x70\x1a\x3f\x33\xbb\x23\xe4\xb5\x9e\x66\xb5\x4f\xeb\x90\xf1\x49\x9d\xf2\x53\xa0\x24\xdf\xe7\x29\x3f\x05\xea\xe4\x45\x9c\x86\xb2\x00\x35\xab\x4d\x2e\x9f\x81\x7f\x09\xce\x3d\x25\xb1\x73\xb8\xd8\xd3\xcb\x5c\xec\x83\xf2\x83\x90\x89\x29\x63\x05\x76\x80\xfe\x94\xb1\x4e\x42\x59\x16\x47\x2c\xae\x29\xf1\x04\xba\x9a\x75\x6a\x64\x06\xbe\xcb\xe8\xad\x56\x66\x60\x49\x0b\xa7\x56\xe6\x29\x65\xed\x6c\x99\x53\xca\x0a\xf4\xbd\x06\xa4\xac\xc0\xfa\x21\xaa\xa6\xe1\x2d\x53\x16\xdb\xd9\x97\xa6\x2c\x16\x98\x96\x5e\x9c\xb2\xd8\x39\xa7\x97\xd9\xe6\x5a\xfc\x60\x19\x34\x32\x65\xac\x53\xf3\xb1\xc1\x9c\x53\x32\x0a\x94\xfd\x3a\x69\x3e\x06\xc2\x40\xa4\x29\x3d\x05\x8a\xb5\x34\xd7\x94\x9f\x02\xa1\x5d\x62\x6a\x3e\x9e\xda\x8a\x4d\xbc\x9f\xda\x8a\x81\x66\x91\xa4\x29\x8b\x9d\x92\xcc\x0e\xd3\x9f\x92\x4c\xa0\x18\xae\x31\x25\x99\x80\x87\xc6\xae\x29\xc9\x04\xc2\x70\x9f\x29\x8b\x04\xc2\xa0\xbd\x69\x08\x0a\xd0\x4c\x5e\x9c\xf2\x4a\xa0\x19\xb5\x39\x63\x77\xf6\xe5\x87\x74\xcc\x5c\x0d\xa0\x51\x70\x7b\x4d\xb3\xca\x81\xae\x8f\x7f\x6a\x28\x06\x6a\xf8\x4c\x34\x14\x4f\xf9\xa2\x75\x39\xa7\x7c\x11\x68\x14\x9d\x5e\x53\xbe\x08\x84\xc6\x91\x29\x5d\x04\x8a\x46\xb9\x29\x5d\x04\x42\x7b\xcc\xd4\x00\x3c\xb5\xf6\x76\xbe\x28\x53\x6b\x2f\x10\xfb\x01\x4b\x03\x81\xef\x32\xdb\x5c\xdd\xc4\xa9\x68\x2f\x99\xc6\xa1\x4c\x6d\xb6\xdd\x8f\x80\x3c\x10\xe8\xbf\x7d\x99\xfd\x48\xfb\x61\x93\xfd\x38\xec\x87\x53\x6b\xb0\x07\x10\xc6\x3e\x4e\x69\x20\xd0\xf7\x33\x97\x06\xce\xc3\x25\xea\x03\x96\xf3\x01\x61\x8c\xd4\x94\xf2\x01\x61\xb8\xe2\x94\xf2\x01\x9e\x00\xbc\xa6\x94\x0f\x08\x23\xa9\xa6\x94\x0f\xf8\xfe\x9f\xb9\x35\x26\x04\x08\x23\xb5\xa6\x39\x0a\x53\x03\xb3\x49\x92\x53\x1a\x08\x84\x2e\xd6\x29\x0d\x04\x62\x4f\x9a\x34\x10\x08\xad\xf7\x53\x93\xf3\xd4\xbe\x2c\x1b\x9d\xda\x97\x01\x4f\xf8\x5d\x53\xfb\x32\x10\x86\xa1\x4c\x23\x47\x80\x30\x34\x60\x4a\x29\xe7\xe9\x12\x72\xb9\x4b\x16\x01\x4f\x15\x5e\x53\xb2\x38\x09\xed\x58\x92\xd6\xa9\x49\x18\xe8\xd3\x8d\x43\xfe\x38\xb5\xff\x6a\xaa\x9c\xda\x7f\x01\x0f\x44\x5e\x53\xfb\x2f\xf0\x5d\xc6\x82\x31\xb6\x03\x68\x9a\xc4\xa6\xa1\x1d\x40\x33\xf5\x6e\x1a\xda\x31\x65\xa3\xdd\xc7\x22\x1b\x05\xc2\x28\xa9\x29\x1b\x05\x8a\x05\x07\xa6\x96\x63\xa0\x74\x57\xbc\x96\xe3\x79\xb9\xbd\x38\x1f\x12\x54\x20\x34\x07\x4e\x09\x2a\x10\x86\x37\x4d\x09\x2a\x10\x9a\xf9\xa6\x04\x15\xf0\x38\xe2\x35\xb5\x0c\xcf\xdb\xd9\xf0\x11\x48\x50\x81\xaa\x85\x63\xca\x4f\x27\xb1\x1e\x9e\xf8\xbd\xa6\xb1\x1e\x40\x68\xe6\x9b\xc6\x7a\x00\x2d\x1c\x80\x89\xe7\xc0\xf7\x4b\x1e\x9e\xc9\x00\x40\x1f\xbb\x6b\x8e\xf3\xde\xe3\xf4\xa6\x8e\x93\xc3\x4d\x0d\xc6\x9a\xda\x8f\x81\xd8\x4f\x40\xfb\xf1\x94\xed\xf6\xf5\x87\xa8\xf0\x29\x19\x9e\xc6\x82\x38\x81\x92\xe1\x29\xf3\xed\x7e\xaa\x65\xbe\x40\x18\xc2\x37\x65\xbe\x93\xd3\x6b\x76\xa9\xce\xa9\x95\x18\xf0\xc8\xe8\x35\x35\x12\x03\x35\xfc\x20\x6a\x24\x06\xca\xea\x4e\x97\x56\x62\xa0\xef\x31\x6b\x25\x9e\x2f\x85\x45\xdd\x54\x0d\xfc\x00\x62\x93\x1d\x99\x35\x10\x86\x87\x4d\x99\xf5\x34\x3c\xa4\xfb\x70\x0d\x0f\x01\x3c\x30\x7a\x4d\x59\x34\xd0\xb5\x93\x4e\x59\xf4\xb4\x5c\x96\x73\x2a\x8b\x9e\xaf\x4f\x63\xff\xd2\x31\x41\xa3\xcd\x1a\x99\xb2\xe8\xf9\xee\x31\x7d\x03\x08\x69\x34\xd0\xa8\x4f\xbe\xc2\x18\x12\xe0\xbb\x2c\x69\xab\xb6\x11\xe0\xc2\x4b\x18\xc6\x90\x00\x9e\x82\xbd\x42\xfe\x1d\x06\x8c\x68\xf4\x08\xd9\x36\x90\xd6\x32\x09\xd9\x36\x10\xc6\xf1\x84\x6c\x1b\xf0\xc4\xeb\x15\x46\xe6\x03\x51\x76\x2f\x0e\x9b\xd8\x45\xd2\xff\x3a\x6d\xba\xbc\x65\xa5\xed\xb6\x8d\x27\xbc\x87\xc9\x6c\x04\x59\xe6\x6b\x60\x32\x0f\x39\x39\xd0\xcd\x83\x0c\x2d\xe6\x40\x18\xb0\x18\x5a\xcc\x81\xef\x97\xfc\x9b\x26\x73\xa0\x59\x55\x24\x24\xf3\xa1\x15\x5d\x32\x13\xb2\x79\xa0\xad\x7d\x99\xe3\xa4\xce\xb3\x75\x10\xc3\xb8\x92\x90\xf3\x5b\xf8\x33\xe4\xfc\x40\x18\x65\x13\x72\xfe\x30\xfc\xc4\x7a\x95\x61\xf8\x09\x50\x4d\x15\x0f\xc3\x4f\x42\x69\x60\x41\xcc\x28\x7b\xf0\x0f\xff\x66\x13\x4b\x21\x34\xb6\x5b\xd2\x33\x34\xb6\x03\x95\x33\x1d\x3e\x81\x6a\x13\xa7\xae\x60\xf3\x0b\xd5\x02\x10\xda\xd5\x43\x5b\x3b\xf0\xfd\x19\xdd\xb5\x44\x34\x10\xc6\x7a\x84\xe6\xf7\x50\x40\x18\x68\x10\x0a\x08\x20\x8c\x88\x0a\x05\x44\xd4\x3d\x02\x66\x52\xb5\x00\x78\x84\xf9\x0a\xe3\xfc\xc3\x70\x15\x4b\xb8\x85\xe1\x2a\x40\x18\xd6\x14\x86\xab\x04\x55\x9d\x77\x29\xda\x30\x82\x1f\x08\x43\x85\xc2\x08\x96\xd0\x74\x6f\x7a\x74\x68\xba\x07\xa2\x3a\xe1\x2a\x94\x20\xd3\x7c\x59\xc6\x30\xd4\x1e\x80\xa7\xb0\xaf\x50\x5b\x44\x73\x08\xb8\x4e\x43\x23\x3c\x10\xfa\x06\xa2\xed\x21\xbc\xdc\x80\xab\xd4\x16\xd1\xed\x07\x4a\x3a\xb4\xa4\x03\x5d\x23\x6b\x68\x48\x07\xc2\xb0\xba\xd0\x90\x0e\x94\x7f\x7f\xe6\x4c\x76\x97\xcc\xfe\xa5\x5d\xfb\x20\x0c\x30\x09\xb5\x4b\x68\x5c\xd7\xcb\x1d\x8a\x17\xa0\x19\xcc\x1b\x8a\x97\xa0\xae\xd6\xb2\xe0\x46\x68\x49\x07\x3c\xd8\x7c\x85\xb2\x24\xb4\xa4\x1b\x85\x1a\xea\x92\xf0\xa4\x54\x5f\x78\x75\x49\x18\x36\x63\xf5\xb4\xd0\x94\x0e\x54\x1d\x73\xa1\x25\x3d\x0c\x9b\xb1\x1c\x59\x68\x4a\x07\x3c\xa0\x7c\x85\x8a\x26\x28\xb6\xb5\x2c\x34\x16\x2a\x0e\xc0\x73\xe4\x57\x18\x10\x13\x46\xbf\x58\x61\x2b\x54\x1c\x40\x54\x0c\x21\xa1\xd9\x1c\xf0\x38\xf5\x15\x9a\xcd\x81\xd0\x3d\x10\x06\xbf\x00\x9f\x78\xa6\xc9\x01\x28\x2e\xac\x02\x15\x8a\x0b\x20\x74\x83\x84\xe2\x02\x28\xcb\x62\x4e\x61\x70\x0a\x10\x3a\x55\x42\xbd\x11\xda\xc3\xad\xab\x14\xda\xc3\x81\xc2\xb9\x02\x2b\xb4\x87\x03\x65\x8d\xdd\x66\xdf\xb0\x91\xef\x7d\x58\x13\x39\xf0\x5d\x46\x47\xb4\x91\x03\xcb\x3a\x9d\xa1\x7a\x89\x70\x85\x43\x30\x42\xad\x02\x44\x2d\x7f\x28\x8e\x12\x4a\x19\x20\xf4\xc3\x84\x52\x26\x82\x79\x70\x8f\x50\xb7\x84\xb1\x2b\x96\x23\x0a\x25\x09\x10\x86\xe8\x86\x92\x04\x08\x3d\x16\xa1\xd5\x1c\xc8\xc9\xc7\x33\xb4\x9a\x03\x1e\x17\xbf\x42\xab\x79\xac\x3d\x64\x26\x50\x13\x39\x10\x3a\x53\x42\x13\x79\xac\x3d\x64\xe6\x5e\x7d\x03\x84\xfe\xa6\x50\xdf\x00\x65\x59\xe3\x37\x14\x38\x40\xd3\xa0\x1f\x0a\x9c\x50\xe0\x58\xd0\x37\x14\x38\x40\xe8\x22\x0a\x05\x4e\x18\xbb\x62\x04\x5e\x18\xbb\x02\x84\x1e\x9c\x30\x76\x25\xd2\x15\xe5\x47\x2a\xf7\x1d\x9e\xff\xfd\xdf\xb2\xda\x40\x68\xd4\x06\xea\x72\xd6\x34\x6a\x87\x85\x8b\x87\x9f\x54\x83\x52\x80\x65\xa1\xa1\x50\xf3\x84\xd6\xea\xe1\xc7\x52\xe9\x02\x78\xb4\xff\x0a\xa5\x4b\x50\x7f\x78\x19\xf4\x1a\x0a\x15\x20\x74\xd4\x87\x3a\x05\x88\xbd\x55\xa9\x53\x80\x30\xa4\x23\x34\x60\x87\xd2\x65\xfa\x79\x53\xba\x00\xa1\xfd\x37\x94\x2e\x41\x9e\xf4\xbf\xe5\x69\x20\x0c\xe0\x31\xfb\x2b\xd4\x29\xc0\x77\x19\xfd\x50\xa8\x00\x61\x98\x47\x28\x54\x42\x55\x32\xfd\xd4\xa8\x4a\x80\xba\x97\x91\xaa\x04\x48\xab\x2f\x84\x41\x2f\x40\xd9\x9e\xaf\x30\xea\x05\xf0\xd0\xfe\x15\x46\xbd\x84\x7a\xc6\xd2\xa6\xa1\x9e\x01\x3c\x7a\x7f\x85\x7a\x26\xd4\x33\x56\x28\x0d\xf5\x0c\xb0\x2c\xd2\x10\xea\x99\x50\xcf\x18\x8f\x1b\xea\x19\x20\x0c\x9e\x0a\xf5\x4c\x18\xaa\x6e\xd1\xd2\x50\xd0\x00\x69\x21\xb7\x50\xcf\x00\xc5\xe3\x5f\x56\x28\x68\x80\x30\x52\x2a\x14\x34\x40\x18\x05\x14\x0a\x9a\x50\xd0\x58\xdb\x34\x14\x34\x40\x5a\x58\x2c\x14\x34\x41\xc2\xf3\x32\x81\x3d\x94\x2f\x40\xe8\xce\x0b\xe5\x0b\x10\x46\x89\x85\x16\x77\x20\x8c\x27\x09\x05\x4d\xa8\x41\x2c\x3e\x1a\x6a\x10\x20\xf4\xe6\x85\x1a\x24\x4c\x2b\x9e\xbe\xcb\xaa\x0b\x20\x0c\xa0\x08\xa3\x53\xc2\xe8\x94\xe9\xfe\x61\x74\x0a\x90\xd6\x72\x0f\x45\x46\x18\x9d\x32\xf1\xa9\x86\x2a\x03\x88\xba\x9b\x7c\x06\x8f\x33\xe9\x12\x57\x65\x00\xa1\xf7\x2f\xb4\xaf\x87\x11\x2b\x56\x1a\x0d\x23\x56\x80\x5d\xa5\x26\xd4\x22\x61\xc4\xca\x74\x1d\x29\x46\x80\xd8\x7b\x8a\x62\x04\x48\x63\x8a\x43\x2d\x12\x6f\xf1\x97\xfc\x9b\x51\xe8\x40\x2c\x57\x96\x62\x24\x34\xe0\x6b\x72\x0c\x0d\xf8\x40\x72\xf0\xee\x0a\x0d\xf8\xa1\x01\xdf\xb2\xa2\xa1\xf4\x00\xda\xfe\xd4\x28\x3d\x80\xef\x32\x66\x5c\xed\x01\x2c\x0b\xcf\x85\x16\xfc\x50\x8e\x4c\xac\x09\xa1\x1c\x01\xc2\x08\x87\x50\x8e\x84\x72\xc4\x12\x61\x4b\x39\xb2\x0c\x56\xb7\xe2\xee\x52\x68\x00\x9d\x03\x73\xd7\x52\x68\x00\x65\x4d\x2c\x4b\x4b\x4b\x3f\xb0\x82\x19\x5f\x6a\x8f\xb5\xb5\xc7\xa4\x29\x6c\xf2\xf9\x61\xb9\x5a\xca\x0a\x20\xea\xee\xc7\x69\x93\x7d\x43\xf0\x2c\xc3\xc9\x81\xb4\x8e\xe2\xd2\xd2\x0f\xe4\x4c\xaf\xaa\x36\x39\x02\xe6\x6d\x29\x2b\x80\x30\xbc\x68\x29\x2b\x96\xb2\x82\x43\xbe\xd7\x52\x56\x00\x4d\xaf\xe9\x52\x56\x00\x61\xac\xc8\x52\x55\xac\xe2\x43\xe0\x0b\xbd\x14\x07\x40\xe8\xd2\x58\x6a\x83\x55\xdc\x64\xe3\x0f\x59\x5d\x4b\x51\x00\x2c\x8d\x34\xcb\xa0\x9c\xa5\x4e\xb0\xf0\xe7\x52\x27\x00\xa1\x47\x79\xa9\x13\x80\x62\xb5\xa5\xa5\x4e\x00\xd2\xe2\x94\x4b\x9d\xb0\xa4\xec\x96\x07\x5d\x52\x76\x20\xac\xa2\xb1\xa4\xec\xc0\xb4\x62\xd2\x32\x0d\x77\x35\x97\xb1\x73\x6f\x84\x39\xb0\x0b\x82\x2d\x19\xfb\x6a\x2e\x63\x76\xef\xa5\x07\x01\x08\x1d\xdb\x4b\x07\xc2\x92\xc5\x5b\xc3\x72\xc9\xe2\x81\xd5\x8a\x97\x39\x83\x8d\x8f\x99\x6b\x4c\x0f\xc1\x6a\x2e\x0b\x44\xe9\x92\xb2\x03\xdd\x38\xf4\x65\x70\xcd\xa2\x84\xd4\xe2\x4c\xe1\xb5\x0c\x9b\x59\x96\x90\x62\x17\x5a\x96\x90\x02\x9a\xe9\x3d\xcb\x40\x1a\x60\x2d\x57\x8a\xf4\x7f\x41\xec\x97\x35\x32\x97\xcc\x1e\xc8\xe5\x12\x30\x44\x66\x49\xf6\xad\x61\xb9\x24\xfb\x40\x33\x87\x66\x49\xf6\x81\x6e\x6d\x90\x25\xd7\x5f\x12\xfb\xe0\x03\xba\x24\xf6\xc0\x16\x9b\x4b\x62\x0f\xb4\xe5\xd0\xe5\xf5\x4b\x12\x6f\x55\xe4\x25\x89\x07\xaa\x3c\x6f\x49\xe2\x97\x24\xde\xaa\xaa\x4b\x12\x0f\x74\x0e\xa8\x5d\x4b\x12\x0f\x7c\x97\xf1\xe0\xf5\x4b\x00\x8b\xc3\x2a\xd7\xd2\x2d\x01\x7c\x97\x31\x50\xfd\x12\x40\xac\x7d\x03\x47\x65\x40\x7c\xc0\xa8\x97\xfc\x1f\x28\xe9\x16\xa1\x0f\x02\x18\x56\x37\x5f\x2a\x02\xa0\x6b\xa6\x5d\x2a\x02\x20\x8c\xaa\x5c\x2a\x02\xa0\xe8\xf1\x59\x2a\x82\x65\x6c\x8d\xce\xdd\xa5\xa7\x02\x28\x56\x15\x59\xc6\xd6\x00\x61\x84\xd6\x32\xb6\x66\xe9\xcf\xe0\x94\xc8\xb5\xf4\x67\x00\x4d\xdf\xee\xd2\x9f\x01\x94\xbd\x51\xe9\xcf\x58\x4a\x0e\x6d\x78\x6b\xee\xa1\x3f\x6c\x98\xde\xd3\x57\x5b\xc9\x11\xa8\x95\xa5\xe4\x00\x9a\x41\x7e\x4b\xc9\xb1\x8c\xd4\xb1\x42\xd1\xd2\xc7\x01\xc4\xcf\x97\xd6\x48\x9d\x65\x08\x8e\x19\xfb\x4b\x7d\x01\x74\x8f\x5a\x59\xca\x8b\xa5\x77\xc4\x84\xbe\xa5\xbe\x00\x96\x75\x86\x96\xde\x91\x15\x3e\xd0\xe6\x4f\x1d\xd6\x07\x61\x5c\xc5\xd2\xf1\x01\x84\x3e\xcf\xa5\x80\x00\xc2\xb8\xff\xa5\xe3\x03\xf8\xfe\x8c\x81\xea\xf9\x00\x7a\x43\x1a\x2c\x65\x06\x10\xa6\x02\x2c\x65\xc6\x32\x3a\xc7\x73\x43\x96\x3a\x03\x48\xb7\x18\x65\x06\x10\xcd\xcd\x4f\x99\xb1\x94\x19\xe1\xab\xad\xcc\x00\xc2\xda\xa8\x4b\x99\xb1\x94\x19\xd1\x6d\xf3\x19\x13\x76\xa3\x53\x6c\x29\x33\x96\x32\x43\x92\xbe\x94\x19\x40\x35\x63\x73\x29\x33\x56\xfa\xa4\x60\xc2\xcb\x78\x1a\xa0\x49\xe5\x97\xca\x63\xe1\x33\x59\x96\xfe\x5c\x3a\x4d\x80\xae\x0b\x78\xa9\x3c\x96\x7e\x94\x80\x5e\x2d\xfd\x28\x40\x0b\x44\xcb\xd2\x8f\xb2\xd4\x14\x16\x04\x5e\x6a\x0a\x20\xcc\x96\x58\x6a\x8a\x65\x3c\x4d\x38\x7a\x1d\x29\x40\xb7\x38\xfd\xd2\x91\xb2\xd4\x14\xe1\x06\xab\xa6\x00\xca\x6f\xff\xd2\x7e\x1c\x4e\x08\x32\x78\x1d\xbb\x23\x94\xfa\xdd\x4d\x4e\xc8\xe9\x83\xc7\x01\xb0\xf4\x74\x00\x65\x7f\x9e\xf5\x74\x2c\x63\x60\xf6\x67\x43\x87\x05\x10\x66\x5a\x2c\x63\x60\x96\xc1\xef\x46\xba\x2f\x75\x00\x10\x66\x5a\x2c\x65\xc0\x32\xe0\xc5\x08\xd8\x25\xc1\x07\x8a\xae\xb1\x65\xc0\x0b\x50\x35\xa0\x2f\x0b\xde\x2e\xd2\x53\x97\xb6\xbb\x25\xe7\x07\xfa\xc7\xe5\xff\xfb\x8b\xad\x22\x00\xc2\x1c\x94\xa5\x22\x58\xba\x33\x62\xdf\xcc\xa5\x87\x3b\xc3\x02\x7b\x4b\xf6\x0f\xa4\x65\x85\x97\xec\x7f\x49\xf5\x63\x5f\xe6\xac\xe2\xbb\xd0\x46\xba\xa4\xfa\xc0\xd2\x16\xb7\xf4\x5d\xac\xdb\x75\x01\x41\x5d\x52\x7d\xa0\x5b\xd2\x66\x49\xf5\x97\xce\x8b\xf0\x2b\x2e\xd7\x07\xba\xe6\xc4\xa5\xf3\x02\xe8\x96\x37\x5e\x06\xd7\x2c\xfd\x19\xba\x20\x97\xfe\x0c\x20\x0c\x6e\x58\xfa\x33\x80\xa6\x71\x6b\xe9\xcf\x58\x86\xe5\x58\x03\x69\x29\x1c\x80\x5d\x98\x74\x19\x96\x03\x2c\x2b\xeb\x2c\xdd\x19\xcb\x78\x78\x4b\x32\x2e\xfd\x19\x40\x78\x94\xd6\x52\x71\xac\x67\x8f\x9d\xf7\xc4\xe4\x55\x20\xac\xcd\xb7\x54\x1c\x40\x58\x4f\x6f\xa9\x38\x80\xaa\x27\x7a\x29\x38\x80\xb0\xb4\xdc\x52\x70\xac\x87\xa1\x2f\xbf\xd8\x16\x29\x02\xc2\x78\xe7\xa5\xf3\x63\xe9\xaf\xe0\x8c\xd2\xb5\xd4\x08\x40\x98\xb9\xb3\xf4\x57\x00\xf1\xf3\x09\xa8\x1a\x80\xb2\xac\xef\xb8\x94\x0d\xcb\x53\xf9\xdd\xd1\xf4\x61\x00\x35\xfd\x04\xea\xc3\x58\xfa\x30\x96\x2c\x41\x1f\x06\x50\x37\xb5\x52\x48\x00\x65\xf3\x77\x85\xc4\x32\xb8\xde\x14\xeb\xa5\x6a\x00\xc2\x1a\x81\xcb\xe0\x7a\x20\xd7\x6e\xf2\xa9\xbc\x2e\x48\xff\xcc\x87\xa2\x8e\xf0\xeb\x9f\xea\x88\xd4\x87\xa1\x16\x4a\x7d\x18\xa9\xb6\x68\x5e\xd6\x6c\x9a\x5e\x96\xb4\x85\x6d\xf1\xdd\xb4\x7b\xd9\xb2\x89\x11\xe8\xfc\x4b\x45\x43\xea\x8b\xf8\xd9\x74\xda\x64\x47\xf8\x16\xa7\xa2\x01\x28\xc9\xb7\x2d\x15\x0d\xa9\x2f\x62\x61\xeb\x48\x55\x03\x50\xcc\x6e\x4a\x45\x43\xea\x8b\xe0\xb9\xa7\xa2\x21\xcb\xf2\x97\xb6\xa5\x6d\xb8\x49\x7e\xfe\x99\x5d\xc3\x7b\x60\xd6\x46\x2a\x10\x80\xb0\x3c\x5b\x2a\x10\x52\x6a\xbf\xe7\x43\x6a\x0f\x84\x19\x5b\x29\xb5\x4f\x8d\xfb\x0b\xc1\x9b\x1a\xf7\x81\x66\xf0\x6e\x6a\xdc\xcf\xea\x14\xf1\x61\x4f\x2d\xf9\x40\x33\xbc\x20\x8d\xad\x07\xc2\xba\x6b\x59\x77\x3f\x9c\x35\x8c\x24\x69\xc5\x1e\x60\x48\xd4\x52\xa1\x00\x94\x65\xb9\xba\x54\x29\x00\x3b\xdf\x23\x55\x0a\x40\x4e\xbe\xcf\xa9\xb9\x1f\x08\xb3\xc4\x52\x73\x7f\xaa\x27\x2c\x6a\x97\xea\x09\x20\xcc\x12\x4b\xf5\x44\x1a\xa4\x64\x05\xbb\xd4\x05\x00\xa4\xfa\x31\x95\x18\xa9\x9e\x90\xb5\xa7\x7a\x02\x58\x56\x90\x49\xf5\x44\x1a\x86\xbf\xa0\x6f\xa9\x52\x00\xc2\x9c\xb3\x34\x0c\x3f\x15\x0f\x16\x72\x4b\xc5\x03\xd0\xb2\xda\xe4\x10\xf4\x14\x78\x98\x69\x2a\x15\x80\x54\x15\xa7\x9e\x82\xf4\x38\x79\x4b\xa8\xa5\xb6\x77\x20\xa4\xa9\x29\x6b\x4f\x49\xb5\x55\xbe\x52\x52\x0d\xe4\x9c\x36\x3d\x36\xc1\xc1\x20\x79\x69\xac\x0f\x50\xb5\x19\xa5\x96\x77\x20\xd5\xf0\x29\xf3\x4e\xa3\xd3\x17\x5f\xa5\x94\x54\x03\xe9\xe1\x23\x29\xa9\x4e\x93\x4c\x4d\xdb\x4c\x59\x35\x10\x16\x38\x4c\xed\xec\x39\x5d\x6c\x7c\x96\x52\x0a\x0d\xac\xb1\xfc\x37\x9f\xc1\x74\x97\x49\xdb\x7c\x08\x1f\xa4\xe5\x44\x53\x0a\x9d\xa6\x8f\x5a\xcc\x2a\xe5\xcb\x40\x58\xb2\x2e\xa5\xcb\x29\x37\xe6\x64\xfe\x95\x72\x63\x60\xfd\xe9\x8b\x9d\x52\xe7\xd4\xbe\xbe\xd8\x20\x53\xfb\x7a\x1a\x0b\x84\xfe\x4a\x0d\xe8\x19\xf4\xc9\xca\x56\x29\xdb\x05\xda\xde\x98\x64\xbb\x29\xdb\xb5\xa4\x54\xca\x76\xd3\x38\x1f\xdf\x1d\xd9\x2e\x50\x96\xc5\xa2\x52\xba\x0b\x84\xb5\xbf\x52\xb6\x9b\x6b\x78\x19\xeb\x47\x72\x0b\x94\xd8\x37\x70\xf6\x25\xb2\x09\x77\x48\x89\x2c\xb0\x93\x55\x53\x22\x9b\xc6\x8a\xa7\x5b\xb0\xb1\xe2\x40\xa4\x97\x19\x2b\x9e\xda\xcb\x2d\xe3\x93\xb2\x56\x60\x07\xa7\xa6\xf6\xf2\x94\xc8\xa6\x5b\xb0\x44\x16\xd8\xae\xdf\x94\xc8\x02\xe5\xdf\x7b\xa7\x0d\x1d\xc8\xee\x0e\x69\xfa\x67\x9a\xc4\x69\x95\xfc\x34\x89\x13\x48\x4b\xdd\xa7\xdc\x36\x8d\xf8\x4e\x2c\x8c\x69\xc4\x37\x90\xdd\xdd\xc4\xe8\x9f\x3c\xd2\xcb\x78\xa6\x06\xf6\x00\xab\x3b\x2a\xb9\x6d\x1a\xd8\x63\xf1\xa0\x94\xdc\x02\x69\x74\x5e\xca\x6d\x53\xeb\xb8\x07\x60\xa4\xd6\x71\x20\x8d\xce\x4b\xad\xe3\x69\xe6\x68\xfa\xe2\x49\x6e\x81\x34\x3a\x2f\x35\x98\xa7\x7c\x37\x5d\x35\xf2\x5d\x20\x55\x1d\x29\xdf\x4d\xad\xe3\x46\xad\xa5\xd6\x71\x60\xa7\x0d\xa6\xd6\xf1\xd4\x14\x9e\x6e\xc2\x72\x60\x60\x19\xdc\x90\x9a\xc2\xd3\x04\x50\x73\x2a\xd3\x04\x50\x20\x8d\x48\x4b\xad\xe3\x40\x58\x1b\x35\x25\xcf\x40\x35\x06\x2e\x25\xcf\x40\xd9\x1f\x16\xc9\x73\x6a\x43\x4f\x37\x5c\x6d\xe8\x29\xa1\xde\x4d\xee\x26\x17\x75\x02\x91\x87\x29\x61\x06\x5a\xf7\x81\x4a\x98\x81\xd9\xf7\x2d\x9d\x8d\x0f\x6a\x0f\xff\xcb\x15\x43\x7c\xba\xc7\xe9\xa4\x14\x3a\x39\x2b\xc2\x23\x90\xd2\xf0\xf4\x94\x42\x27\x66\xce\x94\x42\xe7\x47\x8e\xa7\x85\x7a\x52\x6e\x0c\x54\x49\x6f\xca\x8d\xd3\x5c\xce\xf4\xe3\x20\xeb\x05\xf6\x71\xcf\x69\x2e\x67\xde\x3e\x27\x37\x65\x29\x2e\xb0\x8f\x7b\x4e\xad\xe5\x29\xeb\xb5\xba\x51\xca\x7a\x81\xf0\x34\xc4\x94\xf5\xa6\x51\x3c\x56\x37\xca\x7b\x77\xf7\xe1\x32\xbb\xeb\xa3\xd3\x82\xee\x49\x87\x29\x9f\x05\xaa\x4e\xd8\x94\xcf\xa6\x16\x74\x4f\xd7\x4b\x09\x2d\x10\x46\x06\xa4\x84\x16\x28\xcd\x37\xc3\xfc\xce\x7c\xdc\x51\xc2\x36\x87\xf0\xc1\x3e\x9d\x3a\x35\xa0\xa7\x25\x5b\x2c\x06\x94\xcf\xee\xdb\xcb\x65\xf4\x43\xda\x9b\x12\x5a\x6d\x8a\x29\xa1\x05\xa6\xa7\x43\xa6\x84\x16\x48\xe5\x7e\x4a\x68\x53\x6b\xb9\x55\x7e\x52\x6b\x39\x90\x8a\xfb\xd4\x5a\x9e\xf2\xde\xbd\x70\xe5\xbd\x40\xac\xea\x65\x2e\x19\x79\xa9\xc5\x80\x0e\x79\x29\xd0\xe5\xdf\x87\xe1\x36\xc0\x4a\x66\xf2\x90\xa9\x02\xb1\x96\x57\x35\x9b\x1a\xa7\xe2\x24\x4d\xdd\x26\x5f\xed\x65\x5b\xd8\x16\x9f\xea\x9a\xde\x72\xd9\xb4\xc8\xf6\x19\x34\xa5\x4d\xae\xa2\xf4\xb2\xc3\x36\xd2\xbb\xf6\x3d\x4f\x9b\x5c\x45\xbb\xb7\x97\x6d\x17\xbd\xf5\x9e\xb7\x4d\xae\x22\xbe\x9f\x87\xf1\x36\xc0\x76\x84\x1f\x16\x68\x39\x64\xc7\x5a\x23\x0f\xd9\x31\xb0\x92\x59\x3b\x64\xc7\x87\xf6\xf3\xe4\x33\x7b\x48\x85\x81\xe5\x11\x4f\x87\x54\xf8\xd0\x7e\x6e\xe1\x9f\x43\xfb\x39\xb0\xac\xbd\x77\x68\x3f\x07\x56\xdb\xf7\x74\x8a\x2c\xf7\x92\xf9\x87\x7c\xec\xc3\xa8\x1d\x60\x99\x91\x7f\x48\xbb\x8f\xe2\x91\x0c\x3f\x6f\xe6\x7c\x41\xb2\xfd\x66\x1f\x92\x6c\xe0\xbb\xcc\xae\x3b\x5f\x85\x0c\xb9\xf4\x97\x4e\x17\xc6\xfa\xf4\xa8\xc4\x43\x6b\x3c\xb0\x3c\x25\xf4\xd0\x1a\x7f\x60\x66\xcf\x1f\x1f\x9f\x43\x3b\x3b\xb0\x2c\xfa\x78\x68\x67\x07\xbe\xcb\x6c\x73\x6e\xaa\x73\xc3\x0d\xa4\xec\x07\x94\x7d\x27\x78\x1d\x52\x76\x20\x24\x9a\x87\x94\xfd\xa8\x0e\xa1\xd8\xe6\x10\x08\xe8\xef\x98\x30\x0f\x43\x74\x0e\x8c\xfb\xbb\x98\xee\x21\x67\x07\xd6\x64\x43\x38\xa4\xec\x07\xf1\x38\x69\x4d\xa1\x43\x82\x0e\xec\x68\x99\x43\x82\x0e\x94\x9d\x42\x79\x48\xd0\x81\x8f\xba\xd3\xe4\xb3\x6c\x0e\x81\xcd\xe4\xd0\xba\x0f\xac\xd5\xec\x87\x43\x20\x1e\x67\xe7\x2a\x1d\x6d\xf7\xd7\x7d\x8e\xc1\x1b\x8f\x73\x74\x87\x00\x2b\x38\x24\xe8\xc0\x66\x00\x87\x04\xfd\xe8\xf6\xcd\x27\xa3\xdd\x1e\xf8\x24\x04\x4d\xf6\x8d\x04\xd8\x5d\xb1\xe2\x90\x8d\x03\x53\x0b\xcb\x61\xdc\xce\xd1\xed\x9b\x4f\x46\x8b\x3c\xb0\x72\xff\x72\xf7\xed\xf5\x32\x7e\x6a\xee\x00\xb0\x85\xfb\x61\xee\x00\x50\x76\x26\xee\x61\xf2\x00\xb0\x72\x37\xb9\x68\x86\x4f\xa1\xfb\x53\x9f\xc2\x07\xcb\x5a\x43\x87\xf6\x7d\x60\x35\xf6\xb9\x43\xed\x70\x0c\x47\xd5\x6d\x73\x54\x1f\x6c\xfa\x73\x68\xde\x3f\x86\xaf\x07\xe6\xc9\x43\x5b\x3e\xb0\xd9\xf8\xa1\x2d\xff\x18\x0e\x1e\xb2\x7a\xa8\x31\x80\x5d\x10\xff\x50\x63\x1c\xd3\x07\xe3\x22\x57\x51\x00\x9b\xb0\x1c\xda\xf2\x81\xed\xab\x3a\xb4\xe5\x03\xdb\xec\x7d\x28\x3b\x8e\xe9\xe3\x73\x2b\x55\x63\x1c\x16\xb2\xf1\xf5\x53\x63\x1c\x18\xee\x53\xbf\xce\xa1\xe5\x1e\xd8\x31\x9b\x87\xb2\x03\xf8\x2e\xf3\xa7\x0e\xf4\x83\x7d\x82\xcb\xa1\xec\x00\x36\x0b\x3b\x94\x1d\xc0\xae\xb3\x76\x68\xb8\x07\x3e\x15\x47\xd3\x1e\xba\xcf\x1d\x2a\x75\xa8\x44\x80\x4f\x27\xd2\xe4\x6c\x78\x28\x05\x5f\xcb\x43\x6d\x02\x84\x54\xed\x50\x7c\x00\xcb\xd3\x29\x0f\x03\x8a\x0e\x03\x8a\xf6\xe7\xc1\x88\x22\x60\xa9\xbe\x0f\x03\x8a\x8e\xd8\xb3\xe1\x0d\x9c\x8d\x0f\x7a\xf7\x7d\xd4\x94\x7f\xc4\xe9\x65\xcc\xad\x52\x06\xd8\x3c\xf5\xd0\xba\x7f\x84\xdb\x1d\x42\xf5\x50\xdd\x00\x9b\xf5\x1e\xaa\x9b\x63\xb9\x4a\x61\x31\x87\x1a\x05\xd8\x1c\xfa\xd0\x24\x0f\x6c\xbd\x7c\xa8\x5a\x80\x4f\x70\xd3\xe4\xf3\x5c\x66\x91\x78\x95\xeb\x76\x39\x28\xcc\xc8\x87\x56\x7a\xa0\x37\x77\x0a\xd3\x1f\x80\x36\x9b\xb7\xf4\x09\x2f\xf7\x44\x4c\x88\x87\x46\x7a\x60\x59\x23\xe0\xd0\x48\x7f\xa4\xeb\x16\x5e\x73\x98\x07\x7b\x24\x6f\xa3\xeb\x45\xb9\x03\x34\x93\x48\x0e\xe5\x0e\xf0\xfd\xd2\xcb\x1c\x67\x92\xdd\xe3\x93\x52\x01\x1d\xe9\xdb\x08\x23\x3a\x94\x3b\xc0\x0a\xf8\xec\xa1\xdc\x01\xbe\xcb\xe8\x9b\xe5\x6e\x80\xe5\x99\x1f\x87\x49\xb5\x47\xfa\x36\x42\x9c\x8e\xdc\x43\x78\x38\x38\xca\x9b\xfa\xa4\xd2\x25\x09\x4b\x3a\x8c\x36\x02\xf6\x19\x31\x87\x7a\x0a\x58\xd6\xf0\x3f\xd4\x53\xc0\xf7\x4b\x6e\xaa\xb3\x00\x58\x1e\x72\x7c\xe8\x2b\x00\xd6\xdc\xbf\x74\xec\x07\x4b\x72\xfc\x21\x27\xfb\x50\xa7\x01\x3b\x52\xf3\x50\xa7\x01\xdf\xed\xbd\x97\xb3\x75\xf0\x69\x77\xab\x35\xd6\xe9\x38\x5c\xc4\x52\x21\x75\x1a\xb0\x63\x52\x0f\x75\xda\x71\xec\x69\x60\x52\x15\x65\xc0\x92\x8d\x1e\xfa\x20\x0e\x0f\x80\xd0\x18\x7c\xa8\xd3\x80\x5d\xce\xe4\x50\xa7\x1d\xa7\xbb\x92\xac\xc0\x90\x25\x60\x59\xf0\xf4\x50\xba\x1d\xa7\x4b\xd6\x4d\xd4\xdc\x5c\x60\x17\x2b\x3e\x94\x6e\xc7\xe9\x10\xe4\x3d\xba\x2f\x80\xed\xb3\x3b\x94\x6e\xc7\xe9\x7b\x98\xf6\xd7\xa7\x7b\x62\xf9\xc0\xce\x7b\xa8\xd3\x8e\xcb\x21\x60\x16\x3c\x54\x65\xc0\xd6\x21\x87\xaa\x0c\x28\xa9\xc5\xf2\x50\x95\x1d\x46\x36\xb9\x15\xaa\xca\x0e\x2a\x6e\xa6\xb6\xc8\x43\x0d\x06\x2c\x0f\xec\x3c\xd4\x60\xc0\x77\x99\x3f\x75\xa4\x9c\xeb\xa7\x46\x3a\x14\x61\xc0\x77\x19\x23\xd5\x91\x01\xec\x14\xa6\xc3\x30\x26\xe0\xbb\xcc\x36\x47\x4f\x2e\xb1\x15\x79\x0f\xb5\x1a\xf0\x5d\xe6\x1d\x9c\x10\xfc\x1d\x6a\xcd\x43\x7f\x07\xf0\x5d\xc6\x4f\x8d\x76\x02\xb6\xf2\x3b\x94\x79\xc0\x32\x8e\xee\x50\xe6\x1d\xc8\xbc\xd4\xd6\x73\x28\xf3\x80\x65\xae\xe5\xa1\xcc\x03\x96\x45\x72\x0f\xdd\x1d\xc7\xed\x40\x7d\x51\x94\x79\xc0\x32\x4a\xf7\x50\xe5\x01\xbb\xa8\xff\xa1\xca\x03\xbe\x5f\x3a\x02\x07\x7a\xf3\xa5\x09\xff\xcc\x71\x7a\x36\xba\xc7\xa5\x1c\x3a\x32\x80\xb5\x55\x87\xc2\x0f\xf8\x2e\xb3\xcd\xa7\xfc\xb0\x29\x4f\x7f\xe9\x53\x7e\x1c\xa8\xcc\x4c\xe5\x07\x6c\x95\x77\xa8\xfc\x80\xa5\xb9\xf6\xd0\xb9\x71\x3c\x0e\x14\xc7\xf7\xa1\x18\x04\xb6\x9c\x3d\x14\x83\xc0\x77\x19\xeb\xc3\x70\x2a\x60\x79\x3c\xfd\x61\x34\x15\xb0\x74\xe1\x1e\x4a\xc6\xe3\xf5\xe9\xf9\xc2\xe8\x17\x01\x96\x05\xef\x0e\xfd\x22\xc0\x77\x19\xff\xa6\x8c\x04\xb6\xc2\x3d\x94\x91\xc7\xbb\x07\xca\x43\x50\x33\x02\xcb\x12\xc4\x87\x9a\x11\x88\xfd\x45\x52\x32\x02\xcb\x33\x42\x0e\x25\x23\x50\xd2\xe3\x39\x0e\x7d\x25\xc0\x0e\x39\x39\x8c\xb9\x02\xbe\xcb\xfc\xa9\xf3\xf1\xf2\x99\xf5\x8b\xa4\xfb\x04\xf8\x2e\xb3\x1f\xce\xc7\x4b\xf0\x28\x8a\xff\x78\xf7\x7c\xbc\x5e\xf6\xcd\xee\xa9\x4e\x05\x76\x42\xf7\xa9\x4e\x3d\xd5\xa9\x7c\x09\x4e\x75\x2a\xb0\xac\x73\x78\xaa\x53\x81\xef\xcf\xfc\x65\xb7\x0d\x7e\xcf\x40\x4f\x83\xb5\x80\x65\x35\x88\xd3\x60\x2d\xe0\xfb\xa5\x37\x08\xdb\x02\x3f\xc0\xa2\x69\xd9\xb4\xa7\xc8\x9f\x1e\xb6\x51\xd0\xa2\x3a\x80\xd3\xa6\x3d\x76\x7f\xfa\xd8\xc6\xd8\x11\x37\xa7\xa2\x14\x28\x69\x09\xaf\x53\x51\x7a\x2a\x4a\xf9\x0a\x9e\x8a\xd2\xb3\x38\x2a\xd8\xc9\xa9\x02\x05\xb6\xed\xe4\x54\x80\x02\xdf\x65\x0c\x41\x05\x0a\x2c\xd3\x80\x4f\x15\x28\xb0\x4f\x0f\x3d\x55\x98\xc0\xf7\x4b\x46\xa5\xc4\x04\x76\xe6\xee\xa9\x67\x07\x58\x56\x88\x38\x15\x9d\xc0\x2e\xb2\x77\x2a\x3a\x4f\x45\xa7\x9a\xf0\x54\x74\x9e\x8a\xce\xe9\x00\x9c\x8e\xea\x7b\xe0\xec\xea\x00\x02\x96\x27\xdc\x9e\x3a\x80\xce\xea\xa0\x60\x0a\xa7\xd2\x11\x08\x3f\x87\xa7\x19\xe3\xc0\x77\x19\x03\x35\x65\x1c\x58\x19\x7f\xc8\xca\x3e\xcd\x07\x39\x3d\xe9\xd0\x4f\xe3\xa9\x00\x05\x96\x9e\xc7\x53\x9f\x11\xb0\xcb\x12\x9c\x4a\x52\x60\x59\xc7\xf9\x54\x92\x9e\xcd\x37\x98\xfd\xf1\xd4\x3f\x04\x2c\xeb\xe7\x9f\xca\xcf\xb3\x39\xf7\xec\x2e\xa7\x2e\x1d\x60\x79\x2c\xc8\xa9\xae\x3c\x15\x91\xa6\xa9\x9e\x6d\xdf\x81\x15\x55\xbc\xcc\x15\xd5\xfd\x37\xb6\xd6\x53\x8d\x07\xac\xc5\xcb\x7f\x1a\xc1\x75\x2a\xfb\xcc\x1c\x3b\x95\x7d\xa7\xb2\x6f\x37\xed\x7f\x23\x93\x1a\xaa\x7f\xaa\xfa\xce\xe1\xf3\x80\x77\x9c\xaa\x32\x60\xdb\xad\x4e\x3d\x3a\xa7\x42\xcd\xec\xc1\x53\xa1\x06\xac\x9e\xfe\xd2\xae\x0d\x3e\xa9\x30\xb2\xd3\x38\x2c\x60\x79\x58\xfa\xa9\x74\x03\xbe\x3f\xb3\x1f\x3e\x03\xd2\xc3\xad\xcd\x79\xea\x31\x3a\x95\x56\x66\x76\x9d\x4a\x2b\xa0\x5a\x41\xea\x54\x5a\x9d\x6a\x26\x93\x83\x4e\x35\x13\xb0\x72\xf9\x4b\x6f\xf0\x41\x53\xd3\x9c\x73\xdf\xe0\xf1\x97\xac\x6c\x15\x12\xb0\x8c\x53\x39\x15\x48\xc0\x8e\x62\x3a\x15\x48\x27\xc9\x14\x69\x6e\xd0\xa9\xf6\x01\x76\xce\xfb\xa9\xf4\x39\x89\x6c\x4a\xd3\x68\x4e\x23\x9b\x4e\xeb\x75\xfa\x4e\x18\xd9\x74\x12\xb2\x94\x26\x46\x9d\x8a\x1a\x60\xc7\x9f\x9c\x86\x2c\x9d\xb1\x6b\x7a\x73\x53\x45\x0d\xb0\x4f\x6b\x39\xf5\xd8\x9c\xe4\x5c\xa7\x39\x22\xa7\xa2\x03\xd8\x47\xe5\x9e\x8a\x8e\x93\x7a\x9a\x69\x8c\xfc\xa9\xc2\x00\xd2\x80\x9c\x53\x1f\xcb\x49\x64\x50\x1a\x26\x7e\x1a\x19\x04\x44\xc0\x41\x4f\x45\x07\xb0\xac\x55\x7a\x2a\x3a\x4e\x45\x87\xb1\xfa\xa7\xa2\x03\x58\x66\xc4\x9d\x8a\x0e\x60\x19\xb6\x78\xea\x76\x39\x89\x1f\x4a\x53\x17\x4e\xe3\x87\x80\x6d\xac\x3d\x8d\x1f\x3a\x15\x18\xc6\xe5\x9f\x0a\x0c\x60\x59\x0a\xfd\xcc\x3d\x02\xa7\xcd\x55\xaf\xc0\x00\xba\x87\xed\x9c\x0a\x0c\xa0\xca\xfc\x4e\x05\x06\x50\x34\x5e\x9f\xea\x8b\xd3\xb3\xe8\x7c\x04\xea\x0b\xa0\xed\x5e\xa8\x2f\x80\x6a\x75\xde\x53\x01\x71\x1e\x98\x52\x5d\xdf\x8a\x05\xa0\x19\xe4\x7e\x2a\x16\x80\xb6\x9f\x89\xae\x1f\xa0\xeb\x9c\x3c\x75\xfd\x00\x4d\x27\xfd\xa9\xa2\x00\xbe\x41\x32\x3f\x4a\x0a\xa0\x7b\x82\xd4\x69\x58\x13\xd0\xcd\x55\x3b\x75\x06\x01\x5d\x55\x7c\xaa\x3b\x80\x2a\xbb\x3d\xd5\x1d\xa7\xba\xc3\xc0\xfa\x53\xdd\x01\x54\xd3\x8e\x4f\x75\x07\x50\x35\xe7\x9c\x26\x54\x9c\x9f\x14\xe9\x7b\x85\xaa\x44\x80\xae\x6e\x3b\x55\x22\x40\xd7\x9a\x73\xea\x44\x02\xfa\x0f\x46\x76\xaa\x4d\x80\x62\x32\xcc\xa9\x36\x39\x77\xd2\x05\x73\xa1\x5b\xe9\x54\xae\x98\x4e\x71\x2a\x57\x80\x36\xf6\x9f\x39\x3d\x1f\x94\xe9\x8a\xd2\xd3\x04\x34\x83\x80\x4e\x05\x0c\x50\x26\xa4\xe7\x54\xc0\x00\xd5\x63\x70\x4f\x1d\x4d\x40\xd7\x31\x71\x2a\x69\x4e\xce\x20\xd7\x0d\x7c\x2a\x5f\x80\xa6\x35\xed\x54\xbe\x9c\x06\x69\xf9\x09\xd6\xa9\x74\xea\x54\x72\x21\x2a\x68\x80\x6f\x44\xac\x57\x15\x0d\xd0\x95\x25\xa7\x82\x06\x68\xc3\x97\x50\x41\x03\xf4\xbd\x47\xab\x67\x80\xbe\x76\x93\xb3\xf3\x41\x37\x73\xea\x54\xce\x00\xc5\xe3\x51\x4f\xe5\x0c\xd0\xf5\x35\x9f\xaa\x19\xa0\x2f\x14\xdf\xa9\x9a\x39\x55\x33\xb5\xaf\x3f\x7c\xa6\x15\x3b\x40\x37\x6d\xf3\x54\xec\x9c\x04\x72\x19\x1e\x7c\x1a\xc8\x05\x34\x0d\x44\xa7\x5a\x07\xe8\x89\xf6\x3b\xd5\x3a\x40\x6b\x4e\xbb\x5a\xe7\xbc\x93\xab\x58\x5b\x3a\xb9\x80\x62\x9d\xb6\x53\xf5\x73\x9a\x96\xee\x42\x52\xfd\x00\x3d\x7d\x12\xaa\x9f\x53\xf5\xe3\xd6\xa7\xf8\x01\x4a\x97\x2e\x2a\x7e\xce\xe7\xc7\x0f\x99\x62\xf3\x46\x4e\x03\xbb\x7c\xcd\x94\x43\x40\xd7\x08\x76\x2a\x87\x80\xbe\x3f\x48\xaa\x21\xa0\x7b\x8c\xd4\xa9\x1a\x02\x8a\x66\xc8\x53\x31\x04\x34\xdd\x3e\xa7\x62\x08\x28\x75\x77\xc2\x99\x78\x9c\x09\x7a\x6f\xb6\xc9\xa9\x3e\x32\x71\xe7\x54\x1f\x01\x75\x6f\xdc\xea\x23\xa0\x19\xd9\x74\x2a\x8f\x80\xde\x76\xc7\x9c\x8a\x0f\xba\x1e\xff\xf3\xd9\x53\x61\x98\x01\x8f\x48\x8f\x1a\xd0\xd3\x6d\x55\xc1\x74\x7a\x8a\x9d\x2f\xb6\x82\x09\xa8\xbf\xfd\x43\x67\xe7\x83\x6e\xa4\xc0\xa9\x5e\x02\x9a\x39\xe8\xa7\x6e\x37\xa0\x99\xa2\x7b\xaa\xa0\x80\xee\x79\x54\xa7\x0a\x0a\x68\x96\xad\x38\x55\x50\x40\x1f\x3e\x5b\x15\x14\xd0\xd3\xf7\x5a\x01\x05\x54\x4d\xf8\xa7\x02\x0a\x28\xc3\xf9\x52\x3f\x01\xdd\xa3\xad\x4e\xf5\x13\x50\x4c\xf5\x39\x95\x4f\x40\xd5\x9f\x74\x2a\x9f\x80\x6e\x98\xc3\xa5\x7a\x02\xba\x87\x5d\x5d\xaa\x27\xa0\x79\xe6\xfc\xa5\x7a\x02\xba\x67\x5d\x5d\xaa\x27\xa0\xf8\xf2\x5f\x8a\x27\xa0\x1b\x1e\x71\x29\x9e\x80\x6a\x26\xe7\xa5\x78\x02\xba\x9b\xde\xa5\x76\x02\xba\x07\x8a\x5c\x6a\x27\xa0\x59\xaf\xfd\xd2\x15\x78\x29\xa7\x4c\xac\xba\x94\x53\x40\x97\x2a\x5d\xca\x29\xa0\x1a\x2b\x76\xe9\x09\x04\xba\xae\xa2\x4b\x4f\x20\x50\x0c\xc8\xb8\xd4\x5c\x40\xfd\xed\xab\x5e\x9b\x98\x30\x5e\xbf\x4b\xc9\x05\x34\x0d\x08\x97\x92\xeb\x22\x3b\xdf\x93\xba\x2e\xdd\x80\x40\xd3\x7b\x72\x29\xc2\xae\xc2\x3a\xa9\xfe\xd0\x71\xe3\xdf\x93\x9a\x5d\xaa\x2b\xa0\x4b\xfa\x2f\xc5\x15\xd0\xf5\x63\x5e\x8a\x2b\xa0\x5b\xb1\xfb\x52\x5c\x01\x5d\x8f\xe2\xa5\xb8\xba\xcc\xb9\x0f\x3b\xe1\xb0\x3f\xe8\xba\x6b\x2e\xb5\xd5\xa5\x43\xcf\x9c\xb0\x4b\x87\xde\xf5\x69\xab\xae\x0b\xee\x52\x5b\x01\x4d\x8e\x74\xe9\xcf\x03\xba\xa5\xa7\x2f\xfd\x79\x40\xd1\xdf\x74\xe9\xce\x03\xba\xfe\xa6\x4b\x4d\x06\x34\xed\x43\x97\x9a\x0c\xe8\xba\x74\x2e\x25\x19\x50\xcd\x48\xbc\xd4\x5c\x40\x75\x73\xba\x74\x03\x5e\xd5\x71\x7b\x95\xe3\xfe\xa0\x7a\x6e\xf7\xa5\xe4\x02\xda\x48\x7b\xef\xb8\x2b\xcf\xd6\xde\x1b\xcb\x07\xd4\x8e\x25\xfb\xd2\x2f\x08\x34\x79\xce\xa5\x5f\xf0\x6a\xec\x14\xdd\x26\x87\xdd\x38\xf9\xd1\x05\xac\x5b\xf0\x6a\x3c\x6e\x38\xd3\xa5\x0b\xf0\x32\x46\x8f\xcd\xe3\x32\x44\xef\xd2\x8f\x67\x16\xe0\xa5\x1f\x0f\xa8\x56\x51\xbb\xf4\xe3\x5d\xfa\xf1\x4c\xf0\xb9\xf4\xe3\x01\x45\xa7\xeb\xa5\x1f\x0f\x88\xee\x7a\xea\xfb\x06\x0b\xaf\xb2\xff\xef\x24\x72\xa6\x7b\x67\xdf\xb9\x94\x78\x57\x97\xd5\x4c\xdb\x9c\x45\x32\x72\xcc\x88\xb8\xcc\xc8\xb9\xf4\xec\x59\xf3\xf5\x52\xe3\x01\xf1\x2d\x95\xff\xfc\x22\x5f\x3a\xfe\xae\x21\x77\x47\x67\x5d\xba\xef\x80\xb0\xc4\xd1\xa5\x50\xbc\x86\xaf\xbb\x2b\x4e\xbd\x07\x4c\xf3\xfa\x2f\xf5\xde\xa5\xc3\xcd\x1a\x93\x97\x0e\x37\xa0\xed\x25\xa7\xc3\x0d\xa8\xba\xa3\x2f\x1d\x6e\xd7\xf4\x06\xcb\x36\x6f\x30\xb7\xe9\x92\xa6\x7d\x03\xea\xfe\x39\xcf\xca\xbd\x8b\x73\x17\xd2\x02\x5e\x97\x0e\x2b\x60\x0c\xd8\xca\xa5\x68\xbb\xf6\xa9\x6f\x7c\x40\x2e\xe5\x18\x10\x16\xf7\xb8\x74\x4e\x01\x45\xe1\x7c\xe9\x9c\x02\xca\xde\xd6\x8c\xbc\xbb\xc8\x40\xcf\xe6\x8e\x65\xb0\x1c\x10\x03\x0e\x71\x19\x2b\x77\x51\xa4\x35\xad\xed\x78\xe9\x75\x02\x62\xf0\xe1\xbf\xf4\x3a\x5d\xfa\x93\x9a\x03\xd5\x9f\x74\x6d\x6d\x47\x6f\x95\x76\x40\x0c\x3e\xf3\xd7\xda\xfd\x38\xfd\x25\x23\x30\x7e\x0e\xa8\x26\x78\x5c\xba\x98\x2e\x0a\xa6\xa6\x95\x22\x2f\x45\x1b\x10\xd6\x1d\xb9\xd4\x6c\x97\x5e\x21\x0d\x5d\x97\x5e\x21\x20\xac\x62\x72\xe9\x15\xba\xf2\xf2\x32\xff\x6d\xdf\xe1\xc6\x34\xe5\xbf\xf9\x4a\x23\xd0\x8c\x39\xbe\x14\x68\x97\x02\xad\xb9\x7b\x2a\xd0\x80\x7d\xbe\xdd\xa5\x40\x03\x22\xa6\x57\x39\xb9\x64\x8b\x68\x77\xbe\x14\x68\x17\xf5\xb4\xb2\xb9\xc9\xea\xa9\x01\x56\x73\xf9\xa9\xbd\xae\xed\xa8\x61\xbe\xd5\x5e\x40\xec\x4f\xa3\xda\x0b\xd8\xc5\x27\x2e\xb5\x17\x10\x5a\x16\x2e\xb5\x17\xb0\x43\xea\x2f\xa5\xd7\x45\xd4\x5d\x6a\xf1\xbc\x14\x5a\xc0\x0e\x9d\xbd\x14\x5a\x40\x36\x64\xe8\xa5\xd0\xba\x14\x5a\xd6\xab\xbc\x14\x5a\x40\x36\x97\xb2\x42\x0b\x08\x39\xd4\xa5\xd0\x02\xc2\xf0\x9a\xcb\xc4\xf5\x4b\x37\x50\x73\x98\x8a\x2f\x20\xc2\xdd\x4c\xf1\x05\x2c\xcf\xff\xbb\x14\x5f\xc0\x3e\x25\xfd\x52\x7c\x01\xdf\x9f\xd9\xe6\x04\x51\xb5\x55\xab\xcd\xa5\xfa\x02\x42\x26\x7a\x29\xbe\x80\x5d\xa0\xe2\x52\x7c\x01\xd9\xe0\x5a\x97\xe2\xeb\x3a\xf7\x9c\xd9\xe6\x9c\x7d\xb0\x6b\x99\x5e\xaa\x2f\x60\x1f\x84\x75\xa9\xbe\x80\xb4\x82\xe2\xa5\xfa\x02\xd6\xde\x05\x75\x28\x01\xcb\x02\x03\x97\x82\x0c\x58\x46\x68\x5c\x0a\x32\x20\xf7\x66\xac\x20\xbb\x74\x31\x19\xad\x77\xa9\xc8\x80\xa5\x01\xe1\x52\x90\x01\x4b\x21\x7d\x29\xc8\x80\xef\x97\x3c\x39\x15\x19\xb0\xd6\xee\xbf\x53\xa6\x64\x52\x51\x5e\x6a\x22\x20\xd5\x31\x97\x9a\x08\x58\xc6\x11\x5e\x3a\x80\x80\x30\xe7\xe9\x32\x05\x06\xf8\xfe\x8c\x67\xa2\x74\x02\xd2\xba\x73\x97\xd2\xe9\xba\x77\xd7\x98\x0e\x55\x11\x90\xd2\xd1\xeb\xde\x5d\x73\x2b\xc1\x72\x74\x29\x8b\x2e\x9d\x42\x4e\xa4\xb2\xe8\x52\x16\xb5\x61\x77\x7d\x9e\x38\x85\xac\x2d\x76\xa9\x8b\x80\xef\x32\xee\x60\xc6\x0b\xb0\x2b\x77\x5e\x6a\x25\x60\x9b\xee\x2f\xb5\x12\xb0\xe6\x6e\x72\xec\x0f\x61\xbd\x6e\x7c\x6a\x25\x60\x1f\xa2\x73\xa9\x95\x2e\x3d\x47\x6d\x78\x99\x63\xff\x20\x0c\x9f\xb8\x14\x4b\x40\x36\x3f\x03\x8a\xa5\xeb\x71\x86\x90\xc0\x97\x6a\x09\x58\x9e\xb5\x7f\x29\x96\x80\x6c\x7e\x54\x14\x4b\xc0\x5a\x92\x4d\xc5\x12\xb0\x8f\x4b\xbe\x14\x4b\xd7\xeb\xf6\x8b\xb7\xea\x52\xce\x00\xab\xc4\x1f\x82\xc9\x2e\xd5\xce\xa5\x8f\xa7\x49\x0b\x94\x28\xc0\xf2\x98\xf0\x4b\x89\x02\xa4\x15\x3f\x2f\x25\x0a\xb0\x4f\x34\xbc\x94\x28\xc0\x2e\xb5\x77\xbd\xbb\x97\x18\xd4\x7e\xfe\x97\x4f\x51\x0f\x4f\x83\x1c\xdc\x6a\x94\x5b\x47\x4d\x43\x45\xdc\x6a\x0d\x20\x5b\x7a\xd9\xb0\x09\x47\xcd\xf2\xaa\x69\x93\x9f\x17\x96\xf5\xad\xb2\x00\x96\xa5\xae\x6e\x95\xc5\xad\xb2\x68\xf8\x51\x6e\x95\x05\xb0\x22\xfd\xe5\x69\x13\x86\xdf\x9f\xf7\xbc\x6c\xf2\xc3\xc4\xf6\x7f\x2b\x2d\x80\x5d\xa4\xef\x56\x5a\x00\xdf\x65\xb6\xbd\xb6\x61\x0c\x66\xa1\xdc\x6a\x0b\x20\x1b\xbb\xec\xad\xb6\xb8\xf5\xd3\x34\xec\xe5\xb7\x7e\x1a\x60\xd7\xef\xba\x55\x12\xb7\x31\x7e\x8d\xd5\x79\xab\x08\x6e\x63\xfc\x98\xf0\x5b\x45\x00\xec\x0c\xb3\x5b\x45\x00\x14\x83\x82\x6e\x15\x01\xd0\xad\x27\x77\x2b\x08\x80\x62\xbe\xf3\x6d\x84\xdf\xad\x4f\xc6\x6d\xf6\xd6\x27\x73\x5b\xc6\x17\x8e\x72\xab\x1b\x80\x62\xbd\xc9\x5b\xdd\x00\x74\xe3\xab\x6f\x75\x03\xd0\x34\xff\xdc\xea\x06\x20\xd3\x7f\x77\xdc\x1f\x74\xab\x30\xde\xca\x06\xa0\xfe\x86\xbf\xf3\xf9\x56\x94\xb6\x03\x52\x36\x00\xc5\x02\x25\xb7\xb2\x01\x68\xd6\xb4\xb9\x75\xde\x00\xcd\x43\x7e\x6e\x95\x04\x50\x7e\xbb\x5b\xce\x97\x35\xbf\x20\x4e\xb7\x4a\x02\xe8\x73\x8f\xc7\xf9\x32\x53\x08\x0e\x7f\x2b\x2e\x80\x62\xca\xeb\xad\xb8\x00\xaa\xc5\x56\x6f\xc5\xc5\xfd\x89\x8b\xd9\x61\xb8\xb7\xe2\x02\x68\x26\xb7\xdc\x8a\x8b\x7b\x17\x19\xf0\xbf\x9c\x9c\x0f\xa6\x31\x3d\xb7\x7a\x03\x28\xc6\xd8\xdf\xea\x0d\xa0\xc6\xfe\x7b\x27\x87\xc0\xc4\xb9\x7f\xe8\xe4\x34\x57\x13\xcf\xcc\xb8\x44\x60\xf6\x6e\x57\x9d\x9c\x0f\xba\xb1\xf9\xb7\x45\x07\x80\xd9\xbb\xfd\x72\x72\x3e\xa8\x4a\xa3\x5b\xbf\x13\x50\x3d\xe4\xef\xb6\x32\x01\x30\x3b\x7b\xdf\xad\x0c\x02\xaa\x1e\xdb\x5b\x19\x04\x54\x8b\x75\xdc\x9e\xfa\x01\x74\x3f\xcf\xb7\x19\x48\x40\xb7\xdc\xc8\x6d\x06\xd2\xdd\x99\x1c\x1f\x87\x5a\x09\x98\x9d\x8f\xca\xad\x56\xba\x3f\x61\x34\xad\x66\x7a\x2b\x8c\x80\x66\x2d\xec\xdb\xea\x05\x40\xd1\xef\x78\x2b\x95\x80\x32\x9a\x5d\x75\x26\x3a\x33\xb1\xbb\xea\x4c\x50\xa8\xcc\x0d\xf0\xd6\x67\x06\x34\x99\xdc\xad\x9e\x02\x8a\xe9\xd8\xb7\x82\xe9\xa6\xea\xc1\xbf\xcd\xce\xb0\x48\x60\x58\x67\xe5\x36\x2a\x12\xa8\xba\x15\x6f\x65\x15\x30\x3b\xdf\xa7\x5b\x59\x05\x54\xab\x28\xde\xfa\xdf\x6e\xfd\x6f\xf2\x92\x5b\xff\x1b\xd0\xa7\x2f\x83\xfe\x37\x60\xee\xfe\xab\xc7\x80\x6e\x81\xa0\x5b\x3d\x06\x34\xeb\x9f\xdf\xba\xdf\x80\x6e\xb9\x93\x5b\xf7\x1b\xd0\x25\xef\xb7\xc1\x94\x40\xdf\x3b\x98\xc1\x94\x40\xf9\xb7\x21\x9a\xb1\x05\xf4\x0e\x39\xbd\x95\x7b\x40\x53\x1c\xdc\xca\x3d\xa0\xeb\x96\xb9\x95\x7b\x40\x31\x59\xfd\x36\xbe\x12\x28\x16\xfc\xbf\x4d\xeb\xba\xf5\x0b\xca\x8d\x6e\xfd\x82\x40\x93\x58\xdc\xfa\x05\x81\xf8\xd7\x0b\x67\x4c\xe9\x28\xc3\xb9\xd5\x8e\xb7\xe7\x04\x36\x2f\x73\x32\xa6\x5f\x0c\xf7\x01\x7d\x85\x40\xf4\xf2\x07\x0d\x7d\x1b\x7e\x79\xcf\x3d\x33\x4c\xa0\xae\x44\xa0\x4f\x37\x05\x5d\x89\xb7\x42\x55\xc7\xfc\xad\x50\x05\x62\xbf\xb6\x0a\x55\xa0\xc4\x6e\x72\x1e\x3e\xe8\xfb\x23\x66\x60\xe5\xed\xc1\xe6\xcd\xff\x77\x1a\x3e\x68\xe6\x99\xdf\x0a\xdc\x9b\x3c\xaf\x9d\x3d\x73\xeb\x35\x04\x8a\x15\x75\x6e\xa5\xeb\x6d\xc0\xe4\x9e\x41\x03\x26\x81\xe8\x08\xbf\x5b\xe9\x0a\x14\x1d\x84\xb7\xd2\xf5\x56\xa6\x6a\xe5\xb8\xd5\xa9\x40\xb7\x56\xee\xad\x4e\x05\x9a\x25\x5e\x6f\x65\xea\x6d\x8c\x63\xc7\x30\x74\x1b\xe3\x08\x84\x87\x78\xdc\x7a\x20\x6f\xa5\xab\x46\xf7\x5b\xe9\x0a\x84\xb5\xbe\x6f\xa5\x2b\x10\x46\x51\xdd\xba\x1b\x6f\x8e\xef\x4b\xcb\xec\xde\x4a\x57\x60\xad\xea\x65\xf6\x96\xb3\x3e\xb2\x57\xfb\xe1\x52\xff\xa0\x59\xb8\xeb\x56\xa6\xde\x86\x20\x5a\x7f\xfa\x56\x81\x02\xcd\x4a\xa3\xb7\x2e\xc2\xdb\x50\xc1\xee\x76\xaa\x02\x05\x56\x47\xa7\xde\x2a\xd0\xfb\x74\xf0\x08\x8d\x5b\x3d\x08\x44\xf7\x5b\xa6\x1c\x04\xd2\xfa\xb2\xb7\x72\x10\xe8\x16\xf1\xb9\x95\x83\x40\xd5\xb8\x75\x2b\x07\x81\xd8\x9b\xa7\x6a\xf0\x3e\xed\x99\x9f\x03\xb5\x1f\x10\xfb\x3b\x72\xee\x9e\xf9\x40\xdd\x9d\xd5\x7e\x40\xec\xed\x53\xed\x77\xeb\x79\xeb\xee\xc5\x8a\x3f\x20\xf6\x26\xae\xf8\x03\xbe\xcb\xec\x88\x6f\xcb\x07\x7d\x34\x6f\xea\x7c\x13\x3b\x68\x49\xea\x5b\xf1\x77\x5f\xce\xf7\x6e\x73\xec\x38\xda\xda\x6e\x72\xec\x54\x74\xde\x7b\xaa\xba\x0e\xf8\x7e\x69\x9b\x83\xa7\xde\xc1\xde\x67\xd5\x75\xb7\x01\x80\x7b\x07\x55\x9e\x01\x66\x19\xde\xfa\xcb\x80\xd2\xd3\x8b\x1c\xd3\xe5\x98\x90\x62\xb7\x0e\xb3\x9b\xba\xcc\xbb\x49\xef\xd8\xad\xd4\x33\x7f\xeb\x56\xea\x01\xd5\xe3\xcc\x6f\xa5\xde\x6d\x60\x5f\x9f\xb6\xd9\xdb\x9b\xfd\xcc\x9e\xe9\xd9\xba\x15\x71\x7d\xda\xe6\x63\xb9\x7d\x2c\x2c\x3f\x45\x1c\x10\xff\xfe\xcc\x11\x70\x8a\x5f\xee\xcd\x43\x11\x07\xd4\x56\x6c\x72\x04\xa4\x6f\x6d\x3a\xa7\x86\x03\x4a\x48\xe1\x95\x70\xf7\xe3\x53\x51\x10\xa8\xce\x80\xb0\x80\xf6\xad\x3a\x03\xa2\x2b\x11\x54\x67\xf7\xe3\xf2\x73\xec\xea\x2e\xa0\x9a\xeb\x78\x5b\x8e\xe0\x56\x8a\x75\xb4\xca\xad\x14\xbb\x9f\x5d\xb8\x8a\x26\xc7\x49\x92\xd7\x5e\xcb\x4a\x31\x20\x2c\xf7\x7d\x2b\xc5\xee\xc7\x57\x5b\x25\xa1\x97\x0a\xa8\x56\x22\xbb\xf5\x52\xdd\xef\x1e\x14\xd3\xa1\x03\x0a\x68\xc6\x17\xde\x2a\x36\xa0\xa4\x75\x6f\x6e\x35\x19\x50\x8d\x3a\xba\xf5\x40\x01\xdf\x65\x0c\x54\x17\xd4\x4d\x92\x97\x07\xab\xde\xfa\x9b\x80\xd8\x4f\x45\x31\x07\x14\x2b\x68\xde\x8a\x39\x20\xf6\x74\x2b\xe6\x80\xef\xff\x1d\x81\x03\x7d\xf9\x64\x39\xb7\xaa\xb9\x5b\xe9\xd6\xf9\x9c\x3e\x4a\xb7\xe7\xb7\x47\x10\xb4\x0d\xdb\xb4\xf5\x26\x4d\xd3\x26\x37\x4e\x18\xc8\xa3\x28\x03\x42\x89\xff\xa8\xc9\x1e\xbd\x3d\x8c\xfd\x51\x93\x01\xdf\x2f\xbd\xe9\x65\x1b\xb5\x87\xd2\x7b\xde\x36\xf9\x5c\xd2\x9f\xbe\xb6\x7d\x5b\xee\x40\x1b\x3e\x0a\x30\x60\x9f\xa7\xfb\x28\xc0\x1e\xe3\xe9\xf4\x02\x3e\xba\x72\x80\xe8\xd1\xff\xfb\x7b\xfd\x18\x6e\xf7\x18\xe7\xe6\xd9\xa6\x8f\xca\x0b\x88\xbe\xef\xff\xd8\x84\xcf\x8e\xe5\xf9\xa8\xbc\x80\x70\x75\x3e\x2a\xaf\x07\x95\x95\x0a\xc0\x47\x99\x05\x34\x0b\x0c\x3e\xca\x2c\x20\x5c\x63\x8f\x32\xeb\xa1\xae\x71\x9a\xa7\xf9\x28\x8e\x80\x62\x5d\xff\x47\x71\x04\x74\x23\xf0\x1e\xc5\x11\xf0\xfd\xd2\x7e\x38\xcf\x95\xf5\x1f\xfe\xd2\x31\xa1\x8e\xd2\xb0\xf2\x47\x79\x04\x84\xb5\xc8\x1f\xe5\x11\x10\x1d\x51\xfb\x28\x8f\x1e\x93\xb2\xcc\x72\x7a\xd4\x47\x40\x74\x76\xc7\x47\x7d\xf4\x98\x94\x65\x3c\xdf\xa3\x40\x02\x96\x56\xc7\x47\x81\x04\x84\x2b\xf6\x51\x20\x3d\xc6\xce\x0d\x94\xc8\xa3\xf6\x01\xc2\x17\xe7\x51\xfb\x00\xd1\x97\x57\x39\xf6\xe6\xc3\xab\xfe\x9b\x03\x6d\x3c\x3c\xd7\xba\x4a\xe7\xa1\xe2\x5a\x0e\x3e\xf5\x8f\xba\x06\x08\x5f\xe0\x47\x5d\xf3\x7c\x22\x26\xac\xf3\xfe\x28\x62\x80\xef\x97\xb6\x39\x28\xea\x28\x58\x0a\xf2\x51\xc5\x3c\x78\x7c\xd2\x44\x81\x47\x19\x03\x0c\xf3\x70\x1e\x65\x0c\x50\xa4\x0d\x8f\x2e\x9f\x47\x97\x8f\x6f\xa1\xca\x06\x88\xfd\xc6\xa9\x6c\x80\x66\xa4\xc6\xa3\xb2\x01\xd2\x92\x5d\x8f\xca\xe6\x19\x3e\x28\xac\xec\x8f\x0a\xe5\x19\x8c\x09\x81\xf2\x28\x50\x1e\xbd\x3c\x03\x11\xf9\x28\x47\x80\x34\xae\xff\x51\x8e\x3c\xc3\xa7\xc2\xb7\xf9\x51\x68\x00\x21\x1f\x78\x14\x1a\x0f\xe5\x90\xd3\xf0\x93\x47\x42\x0f\x64\xb8\xe4\x25\xf4\x8f\xec\xdd\x52\xcd\x8f\xec\x1d\x28\xbf\x69\x93\x93\x66\xc2\x94\x35\x98\x1f\x13\xa6\x80\xe8\xbb\x69\xdf\xd4\x35\xcf\xd7\xff\x91\xbe\x03\x45\x99\xfd\xc8\xde\x81\x62\x2d\xfc\x47\x7a\xfe\x18\xfc\x37\x86\x6d\xae\x79\xea\x34\xec\x1d\x48\xc6\x0e\x44\x47\xde\x3c\x32\x76\xe0\xfb\xa5\x97\xb9\xe6\x61\xf1\x03\x23\xc7\x23\x89\x7f\x8c\x11\xb4\x3c\xf4\x23\x8b\x07\x42\xe2\xf0\xc8\xe2\x81\xef\x32\x7f\xea\x7c\x04\xc4\x04\x81\xf3\x48\xe3\x9f\x7d\x0e\x0c\xdf\x9e\x47\x17\x14\x90\x06\x26\x3e\xba\xa0\x1e\x53\xa6\x86\xfb\x82\x29\x53\x40\xec\xed\xd7\xe8\xc2\xc7\x94\x29\xeb\xab\x3d\xa6\x4c\x01\xa5\xf1\xb9\x78\x8c\x2e\x7c\x14\x0a\x83\xcf\xe7\xa3\x50\x78\x2c\x7f\xe6\x10\x14\x0a\x8f\x0e\x2d\x0d\xfc\x8f\xaa\x00\x88\xbd\x25\xab\x0a\x80\xef\x32\x86\x60\x1e\x15\x50\x2c\x94\xf8\x98\x47\xf5\xe8\xf7\xb2\x02\xf5\xa3\xdf\x0b\x48\x0b\xda\x3d\xea\x09\x20\x96\xfb\xb0\x7a\x02\xc8\x68\x36\x39\x76\x53\xab\x8c\x6e\x78\xf4\x7b\x01\x4b\x06\xf3\x18\xf8\x08\x7c\x97\x31\x6d\x46\x3e\x02\xe1\xb9\x05\x8f\xd5\x25\x80\xd8\x5f\x08\xc5\x09\x90\xba\x60\x1f\xc5\x09\x90\x7a\xc0\x1f\xc3\x23\x81\xf4\x78\xd7\x47\xb9\xf2\x6c\x4f\x1b\x9d\x55\xae\x3c\x26\x56\x0d\x1f\x81\x42\x04\x48\xe3\x51\x1f\x13\xab\x1e\xc3\x23\x87\xbb\xb5\xe1\x91\x40\x18\x2b\xf1\xe8\x7c\x7b\x0c\x8f\xb4\x10\xf5\xa3\xf7\x0d\x08\x33\x13\x1f\x55\xcd\x73\xf8\x8c\xdd\xe8\x75\xb5\x01\x69\x48\xf9\xa3\xab\xed\x39\x7c\xc6\x6e\x93\x86\x39\x02\xb1\xba\x97\xf9\x8c\x0f\xf3\xdb\x19\xbb\xde\xb7\xe7\x70\x54\xee\xc3\x3a\xd6\x80\x0c\x37\x1e\x1d\x6b\x40\x6b\xf3\x0f\x05\x46\x1f\xfd\x6e\x40\xd1\xfc\xfb\xe8\x77\x7b\xf4\xbb\x0d\x77\xee\x63\x0f\xf0\x45\x8f\xd1\x71\xfd\x6e\x8f\x4e\x36\x83\xbd\x1e\x55\x15\x50\xf6\xaa\x53\x55\x3d\xaa\x9e\xb1\x7f\x6a\xcf\x4f\xd2\xf7\x8a\x4d\xf6\xfc\xf4\xa3\xe2\x4a\x51\xa8\x00\xab\xbb\x2c\xf4\x52\x3d\x3a\x83\x26\x6e\xb6\x47\x67\x10\x10\x96\xd9\x7a\x54\x1b\xc0\xb2\x56\xcc\xa3\xdc\x00\x22\xed\xad\x72\xe3\xf1\xe4\x42\xf7\x5f\xd5\x06\x30\xb5\x10\x3d\x86\xe7\x3d\x54\x52\x4b\xeb\x51\x3e\x4a\x0b\x60\xd7\x7b\x7d\xf4\x22\x01\xdf\x65\x3c\x35\xdd\x48\xc0\x76\x9b\x3c\x7a\x91\x1e\x73\x86\x34\x25\x3d\x4a\x0b\x60\xfb\x48\x1e\xa5\xc5\x43\x3c\x5c\x5a\xe3\xf9\xb9\x77\x47\x5e\x1c\x0b\x74\x57\xd1\xf0\x98\xf9\x63\xc5\xfb\x47\x85\x00\xa4\xe9\x24\x8f\x0a\xe1\x31\x3e\x6d\xfa\x52\xcb\xf3\x1f\x5d\x2e\x6e\x5e\xf2\xfc\xe7\x75\xa4\x2e\x3c\x23\xc8\x80\xb4\xc4\xe3\x23\x81\x7f\xa8\xb5\x90\x13\x0b\xd3\x63\xd8\xd7\x63\xe2\x8c\x43\x90\x86\x03\x69\x1c\xe8\x23\x0d\x07\xb2\xb9\xc5\x49\xc3\x1f\x7d\x2a\xee\xc8\xef\xee\xc6\xc5\x55\xfe\xbd\x4f\xca\xb4\x19\x6d\x9d\x8f\x34\x1c\x48\xcf\xa1\x7d\x74\xaa\x3c\x32\x73\xb3\x69\x5f\x99\xf9\x4b\x89\xb1\xb4\xdc\xf2\x6b\x4c\x17\xb0\x0c\x2b\x7a\xf5\xb3\xbc\x12\x78\xcb\x2d\xbf\x12\x78\x60\xbb\x68\x5e\x09\xfc\x6b\x46\xcc\x1c\xfe\x34\x6c\xc3\xed\x35\xbd\xc1\xb2\x69\x79\x59\xa7\x2d\x6d\x4b\x7c\x12\xde\xe0\xb0\xc9\xf9\xb0\xbb\xcc\xc7\x5b\x7c\x06\x7c\x51\x5f\x2b\x91\x01\xdb\x2d\xf4\x1a\x77\xf5\xca\xd6\xa5\xae\xaf\x6c\x1d\x08\x73\x84\x5f\xe9\x38\xb0\x7a\xf5\x2a\x47\xa0\x07\xc5\x1a\x4f\x6f\xd9\x37\x3d\xf1\xea\x32\x50\x3d\x28\xc0\x76\x28\xbd\xf2\x78\x60\x79\x9a\xd8\x2b\x8f\x7f\x3f\xd2\x9e\x7e\xee\x5e\x49\xfb\x6b\xa5\x03\xcd\x73\xaf\x2e\x0e\x20\x2c\x33\xf1\xea\xe3\x00\x52\x8f\xe5\xab\x8f\xe3\x95\xb4\xcf\xfd\x6f\x4e\x1a\x87\x91\x68\x8b\x7b\x25\xed\xc0\x3e\x31\xf5\x95\xb4\xbf\xd5\xb7\xc5\xde\x4a\xbd\x81\xe5\xc1\x93\xaf\xd4\xfb\x35\xf9\xc4\x6c\xf4\xd7\xe4\x13\x20\x1b\xb2\xe3\x95\x66\xbf\xcd\xf5\xcd\x2e\xfd\xea\x4f\x00\x96\xa1\x25\xaf\x9c\xfa\xd5\x79\x60\x29\xeb\x57\x06\x0d\x84\x69\xe0\xaf\xde\x83\xd7\x1c\x15\xab\x2e\xbf\x32\x68\x60\x57\xc7\x7b\xf5\x15\x00\x2b\x78\x0f\x5e\x39\xf5\xdb\x5d\x0a\x6c\x59\xaf\x9e\x01\x20\x0d\x58\x7e\x25\xd5\xaf\xa4\xda\x92\xf9\xaf\xa4\x1a\xd8\xd5\xda\x5f\x49\x35\xb0\x3c\xb1\xe9\x35\xb2\x0a\xd8\xde\xc0\x57\x9a\xfd\x9a\x2a\x63\x55\xe7\x57\x52\xfd\x9a\x2a\xe3\xa3\x92\x54\xbf\x38\x02\x76\x95\xed\x57\xbe\x0c\x2c\xcb\xad\xbc\x7a\x02\x80\x65\xfc\xdb\xab\x27\xe0\x1d\xbb\xb7\x5c\xa6\x41\x1f\xd8\xbe\xc5\x57\x06\xfd\x0e\x4f\x6a\x64\x53\x7f\xc7\xfe\xa9\x47\x18\x32\x76\x8d\xe4\xaf\x41\x51\xd6\xcc\x7c\xb5\x92\x03\x69\x65\xcd\x57\x2b\x39\xb0\xdd\xbb\xaf\xa4\x1a\xf8\x7e\xc9\x1b\x2a\xab\x06\x52\x97\xc4\xab\x99\xfc\x95\x68\x47\xf1\xa7\x4e\x1b\x44\xdb\x5c\x85\x57\xa2\x0d\x74\x8f\x26\x7c\x35\x93\x03\xc5\x54\xc2\x57\xea\x0d\x74\xfd\x41\xaf\xd4\xfb\xd5\x98\x1e\xe5\x0f\x5f\xec\x57\x5b\x3b\x30\xf7\x76\x23\x59\x07\xfa\xdc\x9d\xf4\x69\x7c\x30\xf7\xde\x25\x59\x07\xaa\x15\xf6\x5f\xb9\x3a\xd0\x3c\x8c\xf9\x95\xab\x03\x45\xa1\xf5\xca\xd5\xdf\x8f\x84\xcf\xbd\xff\xc8\xc1\x81\x3e\x7c\x6d\xe4\xe0\xef\xc7\xb7\x67\x43\x55\xbd\xf2\x6d\x60\xee\x05\xa6\xd9\x1c\x98\xfb\x7d\x33\x2e\xec\xfd\x18\xf8\xdc\x8f\x5f\x06\x0e\x34\x8f\xfd\x7b\x25\xe0\xc0\xd4\x3f\xfc\x4a\xc0\x81\xae\xb3\xf9\x35\xbd\x07\x98\x96\xc7\x78\xa5\xe4\x40\x35\x1c\xfc\x95\x92\xbf\x6b\x2f\x1b\xdb\x1c\xe4\x47\xc3\xa7\xa7\x9a\xbe\xc6\x98\x01\xd5\x44\x8f\x57\xd3\x3d\x30\x3d\x8e\xf4\x95\xa4\x03\xc5\x64\xd0\x57\x92\x0e\x54\x4f\x89\x79\xe5\xe8\xc0\xd4\xeb\xf3\xca\xd1\x81\x62\x35\x8b\x57\x8a\x0e\xd4\xbd\xc5\x4a\xd1\xdf\x5d\xa3\x98\x71\x4b\xd1\x81\xa9\x2f\xf0\x95\xa2\xbf\x52\x74\x2b\x70\xbf\x52\xf4\xf7\xe3\xde\xd3\xc0\xa8\x57\xee\x0d\x94\xbd\x04\xe4\xde\x40\xb5\x72\xc0\x2b\xf7\x06\xbe\x3f\x63\x48\x92\xef\xd7\x82\x08\x76\x56\xf2\x0d\x0c\x95\xf5\x2b\xf9\x06\xba\xd1\x4d\xaf\xbe\x02\xa0\x2d\xe7\xd5\xd4\x24\xa0\x6b\xa1\x7f\x8d\x85\x03\xa6\x9e\xbf\x57\x87\x02\xd0\x35\xeb\xbc\xf2\x78\x60\x1a\xc3\xf5\xca\xe3\x81\x96\xbb\xfb\xce\x05\x41\x74\x9e\xbc\xf2\x4a\xe3\x5f\x69\xbc\xe6\xfe\x57\x1a\x0f\x14\xa3\x6d\x5e\x69\x3c\x50\x4c\xf8\x7f\x75\x4e\xbc\x3a\x27\x3c\x4c\xe1\xd5\x39\x01\x54\x0d\xba\xaf\xce\x89\xf7\x70\x9f\x40\x5c\xbd\xd2\x78\x20\xb4\x02\xbc\xd2\xf8\x57\x1f\x86\xb2\xe6\xd5\x87\xf1\x42\xed\xad\x5a\xfa\xca\xec\x81\xb2\x45\xe9\x2b\xb5\x07\x8a\xa9\x55\xaf\xdc\xfd\x35\x5f\xe9\xdf\x1d\x1c\x29\x67\xbb\xac\xe6\x2f\x1d\xe8\x07\x61\x42\xda\x2b\x9d\x07\x22\x1c\xbb\x74\x1e\x28\x06\x9d\xbf\xba\x4d\x80\x66\xfc\xd7\x2b\xc1\x07\x96\xdc\xec\x95\xe0\xbf\xe7\x1e\x3a\x0f\x4a\x8f\x08\x30\x4c\x52\x7f\x8d\x8f\x7b\x2d\x93\xa0\xc8\x7b\xf5\x88\x00\xc5\xa2\xb9\xaf\xd2\xe0\x3d\x1d\x53\xb3\x6b\x8e\xe9\x83\xaa\x54\x7b\xf5\x74\x00\x45\xef\xe5\xab\xa7\xe3\xbd\x7c\xa9\x1d\xba\x72\x01\x68\xa6\xf6\xbf\x06\xb5\x01\x5d\x5f\xe8\xab\xf3\xe3\xb5\x4a\x82\x5e\xda\x57\xef\xc7\x6b\x9a\x91\x5d\xd3\xfb\x01\xf4\x9f\x5f\x11\x9d\x1f\xaf\x51\x6d\x16\x10\x7f\xf5\x7e\xbc\x9e\xff\x62\x6f\x8d\x6a\x03\xaa\xc5\xf6\x5f\xa3\xda\x5e\x5d\x1d\x41\x54\xdb\xab\xf8\x00\xfa\xfe\xb0\x5c\x7b\x50\xaf\x97\xf1\x53\xdd\x1f\x40\x97\x45\xbf\x7a\x3f\x80\xea\x01\x25\xaf\x12\x05\xf8\x7e\xc9\x74\xa8\x51\x80\x61\x81\x9e\x57\x89\x02\x14\x0b\x7b\xbc\x4a\x14\x60\x58\x86\xe4\xd5\x6d\xf2\xde\xae\x5b\xd9\x94\x7e\x13\xa0\x58\xed\xeb\xb5\xd8\x33\xd0\x35\x33\xbe\x7a\x52\x5e\xf5\x4e\xec\x7b\xba\x94\x6f\x52\x63\x5c\x1d\xea\x1d\xa0\x37\xb9\xab\x9e\x14\xa0\x05\x3a\xe6\xd5\x93\x02\xd4\xb1\x7f\xe8\x04\xe1\x49\x31\x2a\xfa\x55\x14\xbd\x56\x4d\x08\x07\x60\xe8\x1b\xd0\x3c\xd7\xe4\xd5\xb9\xf2\xaa\x9d\xcc\xe7\x7c\xd5\x4e\xc0\xb0\x48\xe2\xab\x76\x02\xc6\x9f\xca\x9c\xbc\x46\xc6\x01\x43\x87\xe9\x6b\x64\xdc\xab\x8b\x66\xbf\x70\xba\x68\x80\x61\xa5\x88\x57\x17\x0d\x30\xac\x6b\xf1\xea\xa1\x01\x4a\xdf\x7f\xe6\xf4\x3d\xc4\xef\xf8\x60\x55\x6e\xaf\x95\x17\xf6\x3b\xae\x8b\x06\x28\xda\x59\x5e\xa3\xe5\x80\x91\x7b\xc4\xce\xdf\xe3\x02\xf3\x06\x7a\x6d\x80\xa6\x03\xe5\x35\xb7\xe8\xd5\x91\x13\x4e\xa0\x3a\x10\x18\xb9\x9b\x9c\x3f\x0a\xf8\x2d\x67\x5e\x3f\xce\xab\xd3\x66\x33\x5b\x9d\x36\x40\x0d\x79\x81\x02\x12\x28\x96\xe5\x79\x15\x90\x40\xfd\xd7\xe4\x6c\xe8\xa1\x31\x56\xf3\x55\x1b\x02\xdd\x73\xf9\x5f\xa5\xe1\xab\x0e\x64\xed\xe4\x0f\x1d\x28\x34\xce\xe2\xc8\x1f\x09\x40\x42\x1b\x9f\x3a\xca\x1f\x09\x40\x42\xc3\xb1\x9d\x3f\xc4\xa2\xd0\xe6\xbe\xaa\xdb\xc4\x32\xf9\x3e\x00\xf9\x43\x2b\x0a\x83\xf2\x20\xf9\x43\x2b\x0a\x95\xc2\xb9\xf9\x43\x2a\xe6\x4f\x5d\x18\xdf\xbb\x9b\x3f\x74\xa1\xd0\xc9\xd1\xca\x1f\xba\x50\xe8\xbf\xdd\xfd\xd3\xa6\x93\x5b\x16\x9a\x2e\x9b\xf6\x64\x38\xa4\xdb\xb6\x9b\xcb\xfc\xe5\x63\x93\x54\x7a\xda\x8f\xd7\x36\xbc\xf0\x76\xad\x38\x3f\x1f\xf4\x91\xdc\xa0\x38\x3f\x1f\x0c\x4a\x7c\xe4\xaf\x38\x3f\x94\x02\xc4\x6b\x96\xbf\xe2\xfc\x28\x45\x63\xb7\x39\x41\x05\xa3\x7e\x32\x8d\xc5\x09\xfa\x20\x39\xf1\x32\x7f\xc5\x09\xe2\xb4\x7d\xca\x57\xe4\xaf\x38\x41\x64\x0a\x61\xf9\xcf\x1f\x99\x42\xc2\xf7\xff\xf6\xcc\x39\xa3\x0e\x03\xe5\xba\xf3\x57\x9c\xb3\x82\x4d\x29\xec\xac\x73\xb6\xcf\xe7\xb4\xc9\x39\xd3\x3f\x15\x61\x37\x9c\xb3\x0f\x1a\xbe\xd2\xfc\x15\xe7\x8c\x5c\xa1\xba\x87\xe4\x94\x15\xbc\x68\x8d\x99\xad\x4e\x59\x65\x23\x4e\x3a\x5b\x9d\xb2\xea\x94\xf1\x7c\xab\x53\x46\x60\xe0\xb4\xfb\xd5\x29\xa3\x40\x60\xfd\xe8\x67\xfe\xaa\x33\x66\x49\x87\xb0\xff\xd5\xf9\xa9\xce\x0f\x7d\xad\xce\x4f\xdd\xfd\x67\xce\xaa\xfd\xaf\x3e\x73\xbb\x61\xff\x11\xc4\x84\x71\xe4\xaf\xda\xff\x0f\x46\x3a\xa4\x66\xff\x9b\x1b\xe5\xa2\x6b\xcd\xde\x5a\xbf\xbb\xd2\x8d\x66\x6f\x9b\x07\x1c\x2e\xdb\x7c\x9a\xcd\xae\x31\x82\x66\xd7\x94\xcd\xb1\xe8\x5a\xf3\xd9\x7d\xd0\x39\x43\x36\x7f\xcd\x47\xa7\x6c\xe6\x30\x84\xfc\x35\x1f\xd4\x07\x95\xe3\xd1\xf2\xd7\x7c\x50\xf8\xa2\x7e\xce\x5a\x73\x9c\x2a\x69\x92\xcd\xf2\xd7\x1c\x68\xf3\xa4\x7b\xef\xe9\x40\x4d\x35\x0a\x17\x77\xf7\xb1\x20\xa5\x87\xaf\x45\x77\xa0\x9d\x93\x39\x5c\x1c\xdd\x81\xaa\xa4\xc3\x77\xa0\xfb\x5c\x3a\xaf\xba\xfd\xe8\x8e\x5d\xf7\x14\x96\x9c\xfc\x75\x07\xcf\x81\xa0\xc4\xd8\xe7\xaf\x3b\xf6\xee\x40\x1d\x55\x77\xa0\x9d\x93\xb9\x16\xd3\xd6\x1d\xa8\x52\x9a\xb3\x95\xf2\xd7\x1d\x29\x95\x28\xc8\x1d\xcf\x5f\x77\xa0\x1f\x04\x5f\xdb\xfc\xf5\x3d\xd0\x97\x44\x6e\x7e\x38\x7c\xa2\x83\x22\xed\xc1\x2d\x87\x43\x1f\x95\x26\x3a\x3b\x1c\x27\x1a\xbc\x77\xc6\x34\x1c\xe6\x07\x41\x21\xeb\xfc\x0d\x87\x49\xa5\x41\xcc\xbb\xf9\x1b\x2e\xc8\xb1\x47\x4e\x2f\x86\x23\xff\xa0\x97\xfd\xff\x8e\x7c\xf0\x65\x0b\xff\xcc\xa7\x3e\xf6\x64\xf0\x50\x86\x93\x31\xd8\xd2\xc2\x3f\x73\x32\x28\x60\x31\x97\xfd\x77\x2e\xac\x47\x48\x66\x48\xfe\x86\x93\x61\x3d\x42\xd7\xf2\x70\x32\x0c\xa1\x5b\xbf\xff\xfe\x4e\xe7\x6f\x3a\x59\x93\x92\x14\xde\x7f\x3a\x59\x9e\x46\x84\x2d\x39\x7f\xd3\x85\x32\x9d\x40\xa6\x79\x3a\x81\x93\xe8\xa4\xc2\x60\xa6\x13\x48\x88\x5d\xae\x1f\x5d\x9f\xce\xe0\x07\x9d\x7a\x37\xf9\x9b\xce\x20\xe7\x11\x25\x99\x0b\xf9\x9b\x4e\xd7\x74\xba\x6c\x72\xba\x76\x55\x43\x6f\xe0\xfe\x66\x3c\x1d\x36\xed\xfc\x4d\xe7\x66\x22\x80\x5d\xe9\xd3\xa9\xe1\xa0\xa1\xbe\xff\xcc\xa9\xd1\xd5\x46\x25\xb8\xfc\x85\x83\x0a\xcf\xa5\xe3\xa9\x85\x83\xd2\xd5\x86\x6e\xca\x5f\x38\xaa\x60\xf5\x2f\x7f\xe9\xa0\x08\x98\x9b\xbe\xbe\xe1\xa0\xac\xd0\xc1\xd1\x11\xf9\x0b\x97\x05\x15\x3a\xf6\xde\x18\x8e\xd3\xa3\x4d\x5d\x9c\xe1\x38\x75\xc8\x2d\xdf\x9b\x70\xa0\x41\x40\xba\x93\x1b\xae\x14\x1d\x72\x18\xcc\xf2\x17\x2e\x15\x6a\x18\x12\x31\x97\xbf\x70\x3a\x82\x8d\xd0\xed\x2c\x9c\x0e\x7d\x74\xcb\xad\x36\xf6\x7c\xa8\xf2\xf8\xe5\x72\x29\x7c\xd0\xa9\xca\x94\xbf\xe5\x52\xf8\x60\x35\xa7\x7b\x39\x69\x8b\x95\xb0\xbc\xca\x49\x5b\x70\x20\x17\xec\x72\xce\x96\xf9\x30\xf4\x62\x39\x67\x6b\x4f\x10\x2b\x61\x39\x41\x1f\x64\x75\x59\x2f\x27\x68\xb1\x10\xdc\x67\x97\x13\x64\x10\xe0\xf2\xe3\xb4\x9c\xa0\x5d\x87\xc4\x26\x27\x68\xf1\x2a\xb9\xf5\x2e\xe7\x47\x6f\xdc\xda\xfd\x70\xe4\x8b\x73\x62\xdc\xdf\xd2\x91\x7f\x60\xdd\x97\xfc\xa5\x23\x4f\xaa\xd5\xef\xab\x1c\xb9\x16\x01\xb2\x31\xf2\x97\x0e\x9d\xf0\x41\xe2\xcf\xf2\x97\x0e\xdd\x6a\x25\x4b\xfa\x94\x8e\xfd\x83\x59\xfc\x52\xa4\xeb\x25\x9d\x8e\xca\xe3\x4c\xa7\x03\x9b\xc0\xfe\xa0\xa4\xd3\x61\x94\x21\x67\x70\xe6\x2f\x9d\x0f\x8c\x02\xfb\x2b\x96\x4e\x47\x1e\x5e\xc6\xe4\xa6\xf3\x91\x24\xcb\xca\x8c\xd2\xf9\x30\xb5\x6e\x49\x2d\xd2\x05\x93\x64\x09\xfb\xe5\x4c\x17\x8c\x9e\xbc\x4d\x2d\x0e\x27\xe4\x20\x4b\xd8\x2d\xee\x70\x42\x0e\xb2\x84\xdd\xdb\x0f\xe7\x03\xab\xc0\x1a\xdc\xf3\x70\x3e\xb4\x0a\x2c\x17\xe9\xe1\xe0\xc9\xad\xfb\xb9\x20\x0f\xc7\xae\x73\x8f\x13\x10\xf2\x77\x38\xaa\x0f\xda\xe6\x5e\x87\x83\xb2\x08\xe2\x72\x3f\x39\x1c\xd5\x41\xc6\xb7\x9f\xa7\xc3\x41\x1d\x6e\x98\x8d\x51\x1d\x7b\x54\x7c\x26\xf7\x65\xae\x85\xc3\x33\x3e\xb8\xea\x74\x2d\x9c\xe4\xc8\xbb\x21\x9e\x0e\x1d\x13\x40\x71\xc9\x9f\x0e\xfd\x74\x2d\x74\x66\xe8\x74\xec\x84\x4e\xee\xef\xce\xe9\xd8\x4f\x92\xe4\xe5\x33\xa7\x4b\xe1\x83\x46\x52\x55\xfe\x4e\x67\x83\x2a\x26\x7b\xef\x3b\x9d\x0d\xa3\x29\x97\x9f\xa7\xd3\xa5\x40\x19\x93\xbd\x07\x9f\xae\x84\x0f\xfa\x74\xc1\x9c\xce\xd9\x07\x7d\x7f\x77\x4e\xe7\xec\x83\x3a\xe4\x07\xa7\x53\x66\xe0\xe4\x92\x70\x9f\xce\x0f\x81\x93\x7b\xe7\x38\x9d\x1f\xcd\x09\x14\xb9\xcf\xdf\xe5\x6c\x50\xa1\xa4\xb9\x43\x5e\xce\x86\xb6\x83\xfd\xe5\xbc\x1c\xfa\xc5\xd0\x7d\x8f\x2f\x87\x8e\xed\x60\x6f\xa4\x97\x43\xd7\x76\xb0\x9c\x8e\xcb\xb1\x5f\xbc\x05\x6e\x27\x97\x43\xd7\xe3\x49\xba\x54\xfe\x2e\x07\xfa\x41\x2d\x3e\xbb\xcb\x81\x6a\x4f\x40\x7a\xe5\xef\x72\x54\x1f\xd4\xbe\xff\x6d\x8f\x8a\x64\xf0\xe0\x97\xb7\x4f\x1d\x73\xc2\xde\xd5\x6e\xc7\x79\x5b\x89\x85\x1f\xde\x8e\x53\x73\x02\xe7\xae\xe4\xef\xf6\xa9\xdf\x3c\x75\x77\x9d\xdb\xa1\xdf\x0e\x6a\xd8\xe6\xa0\x6e\x07\xe5\x3d\x1d\x94\x56\x81\xef\x65\xf9\xef\xaf\xf5\xed\x00\x29\x2d\x92\xd2\x91\xdb\x27\x69\x69\x11\xf9\xe0\xed\xe2\xdf\x85\x15\x99\xfa\xdb\x59\xd0\x95\xba\x94\x4e\xb7\xd3\x80\x2b\x75\xff\xd9\xe3\x34\x3c\x3e\x6f\xd9\xf6\xe3\x3c\x7c\x50\x9b\x1c\xf1\x71\x1e\xa8\x37\x92\x92\xae\xc7\x69\x30\x3b\x6e\xf9\xae\x3e\x3e\xdc\x87\x75\xed\x57\xf2\x71\x1a\x1e\x28\xe2\xfe\x7f\xa7\xe1\xe1\x24\x42\xb7\x8c\xc7\x65\xad\xab\x76\xa9\x20\x1e\x87\xfe\x38\x74\x06\xf0\x38\x74\x05\xff\x72\x87\x7b\x1c\xbb\x27\xd7\xfa\x12\x3e\x8e\xfd\xd9\x63\x67\xee\x1f\xc7\xfe\xb0\x04\x64\xaf\xaf\x63\x37\x8b\x6e\x13\xaa\xd7\x27\x49\x4c\x66\x75\x75\xbe\x2e\xe2\x17\x17\x92\xcf\xf6\x75\x9c\xfa\x82\xf7\x4d\x5f\x47\x85\x94\xef\x7e\xd3\x5f\x47\xa5\x6e\x5f\xbe\x9a\xaf\xdd\xc5\xa7\x4b\x78\x55\xfe\x5e\xbb\xfb\xf2\x1a\xfa\x65\x7e\xed\xad\x52\x9e\x53\x70\xb2\x28\xe5\xcb\x4f\x42\xc3\xeb\x5a\x14\xee\x40\x21\x66\x21\x8b\xc2\xbd\x98\x4e\x47\xcd\xfe\x2c\x2a\xf7\x62\xe9\x0e\xf6\xed\xa2\x72\x07\xbe\xcb\x6c\x9b\xb6\x51\x4f\x8b\x39\x2a\x4a\xf7\xa2\x74\x5f\xac\xf6\xa2\x74\x07\x3c\xf0\x37\x8b\xd2\xbd\x94\xdd\x37\xda\x14\xcd\xc0\x5a\xfe\x9b\xa2\xb9\x28\x9a\x39\x47\x2b\x8b\xa2\xb9\x58\xbd\xd0\x21\x28\x9a\x8b\x59\x71\xd4\x19\xca\xa2\x6a\x06\x96\x32\xab\xa8\x9a\x8b\x12\x99\x12\x42\x59\x94\xc8\x40\xa1\x0c\x71\x96\xb2\xfb\xb6\xeb\xee\x24\x6d\x8f\x6d\x4e\xb9\x37\x60\xca\x8b\x61\x97\xa4\x2b\x66\x51\xc4\x02\x3d\xed\xae\x22\x16\xe8\xe9\x3d\x15\xb1\xa5\x4e\x7f\xc9\xbf\xa9\x58\x81\x20\xc4\x38\x0b\x99\x6b\x59\x14\xb1\x94\xd0\xc9\xa2\x88\x05\x96\x1f\xad\xa2\x88\x2d\x7a\x75\xa9\x38\x93\xa5\xee\xbe\xb9\x78\xb9\x4c\x15\x0b\x2c\xea\x9c\x65\x21\x9e\x52\xe8\x8a\xa5\xa2\xae\x05\xc2\xed\xb1\xa8\x6b\x8b\x21\x96\x14\xa6\xc9\xd2\x1c\x41\xf3\x19\xf8\xff\x3e\x03\xeb\xde\x53\x86\x26\x4b\xf3\x19\x58\xf7\x3e\xfd\x37\xc7\x69\xd8\x25\x45\x67\xb2\xa8\x75\x81\xc1\x81\x04\x59\x9a\xcf\x80\x52\xf8\xee\x1f\x45\xf5\x5b\x7a\xf5\x97\xdc\x54\x29\x0a\x8c\x1f\xec\xb0\xa8\x44\x8b\xb5\x31\x48\x0a\xcf\xd2\xed\xc7\x07\x83\xa3\x0c\xb2\xa8\x44\x8b\x35\xee\x29\xa3\x92\x45\x29\x0a\x78\x68\x44\x96\x6e\xd7\x3e\xe8\x95\x17\xb2\x74\xbb\x66\xa4\xa4\xe3\xec\xbb\x6b\x26\x97\xd8\x74\xd9\x84\xaf\x91\xaf\x7f\x51\xae\x02\xd5\xaf\x67\x51\xae\x96\x4e\xdc\x17\x84\xb7\xa8\x4d\x81\xe8\xce\x8f\xda\xb4\x58\x1a\x9f\x62\x2e\x59\x86\x0f\x6a\x70\x10\x8b\x7d\x55\xaf\x16\x65\x27\xc5\x62\xb2\x28\x3b\x81\x4e\xd6\x79\x16\x65\x67\xb1\x90\x06\xe9\x7c\x59\x86\x63\x42\x77\x12\x10\x92\x45\xd9\x59\x86\xab\xcf\x05\xa3\xc8\x04\x3a\x81\x18\x59\xd4\x98\x40\x1b\x0e\x4a\x8d\x59\xf4\x36\xa7\x8b\x54\xc5\x08\x04\x11\x16\x59\x14\x8c\x40\x74\x88\x77\x51\x30\x96\x7d\xd6\x16\xb7\x54\x30\x02\xa1\xd5\xa9\xa8\x17\x81\xe6\x8e\x58\xd4\x8b\xc5\x08\x4e\x8a\xab\x67\x51\x1c\x16\x23\x38\xe1\xe2\x45\x71\x08\xd4\xee\xa4\x4d\x87\x69\x50\x27\xb9\x2b\x59\xa6\xcf\xce\xc3\x6a\x7d\x8b\x95\x90\xc0\x77\x99\x6d\x0e\xfd\x83\x46\x34\x45\x96\xb9\x87\xce\xf3\xac\xe3\xbf\xbf\xd7\x25\x7c\xdc\xc6\x7c\x62\x48\x2a\xe1\x5c\x05\x69\xa0\x4e\xa9\x3a\x14\x08\x32\x84\xb2\xa8\x43\x8b\x3a\x94\xcc\xf2\x2c\xea\xd0\x62\xc8\xa7\x6b\x5a\x1d\x0a\xd4\xea\x56\xa3\x0e\x05\x6a\x74\xaf\x72\x99\x7c\x50\xbb\x5b\x88\x32\x14\x68\x03\xfa\x57\x94\xa1\x40\x74\x97\xa1\x2a\xb4\x58\x4e\x32\xdd\xdb\xd5\x97\x85\xe3\x6e\xbb\x6b\x4e\x2d\x09\xd4\xbd\xa3\xaa\x25\x8b\x81\x9c\x78\x59\xb2\x28\x00\x8b\x81\x9c\xe8\xcb\xb2\xec\xac\x9a\x10\x63\x7f\x16\x35\x61\x31\x90\xb3\x33\x67\x6a\xc2\x62\x20\x27\xde\x84\x2c\x8a\x42\xa0\x13\x9f\x92\x45\x4d\x08\x7c\x97\xd1\x5d\x45\x21\x50\x08\x01\xc8\xa2\x28\x04\xa2\xbb\xc2\x96\x83\x5a\x04\x78\x63\xd7\x2c\xcb\xe7\xbf\x5e\xff\x8c\xa7\xa2\x4e\x04\x82\x60\xeb\x2c\xea\xc4\x62\x4a\x99\xaf\x9b\x3a\x11\x68\xfb\x6b\xa2\x4c\x2c\xe9\xb6\x85\xb1\xbc\x28\x00\x81\xa5\x85\xae\xa8\xff\x8a\x61\x9b\x0a\x9e\xa2\xb2\x03\x6a\xf8\x09\x53\xd8\x01\x8d\x93\x4e\xb3\x28\xec\x80\x58\x2e\x34\x75\x5d\x39\xdc\x57\x20\x51\x45\xc5\x56\x0e\xb2\x04\x9a\x4d\xae\x2a\x75\x97\xea\xa9\xa8\xbb\x80\xe8\x68\xac\xa2\xee\x02\x3c\x2a\x3b\x8b\xb2\x0b\x58\xc5\x8d\xfd\xd8\xf7\xe4\x0d\x71\x6f\x50\x4f\x95\xd3\x95\x8c\x6c\x29\xca\x22\x20\xba\x8f\x58\x59\x54\xcc\x28\x73\x41\x2a\x8b\x8a\x41\x93\x7b\x4b\x55\xdd\x14\x53\xc5\x7c\x9f\x55\x37\xc5\xa0\x49\x19\x78\xb9\xbc\x29\x41\x93\xcd\x75\xab\x6c\x01\xd6\xc4\xfa\x59\x94\x2d\xc5\x1c\x30\x19\x70\xb9\x7c\x52\x17\xf1\xb5\x6e\x65\x2a\x19\xe0\xbb\x8c\x7e\x28\x65\x00\x1d\xe2\x59\x94\x32\x45\x29\xb3\xf9\x92\x52\x06\x28\xc5\x2d\x55\x29\x53\xac\x1f\xbf\xbf\x43\x97\x6b\xf9\xe2\x3b\xe4\x40\x55\x37\x40\xdb\x7b\x82\xea\x06\x58\xc3\xf9\xbe\x7c\x04\x1f\xd4\xb1\x7b\xeb\x23\xf8\xa0\x0f\xa9\x86\x12\x08\xe8\xc5\xcf\xbe\x12\x08\xa8\xc3\x8e\x29\x81\x8a\x09\x65\x9b\x16\xaa\x81\x8a\x2e\x55\x37\x5e\x35\x50\x21\x9c\x93\xac\xb0\x2c\xb7\x93\x41\x51\x90\xee\xd4\xde\x4e\xc6\xbd\x27\x83\x87\xa2\x04\x02\xcc\x44\xcb\xa2\x04\x02\x62\xf3\xda\xdb\xb9\xf8\xc0\xb4\xb6\x2c\xb7\x73\x61\xe9\x90\xfd\x46\x29\x7b\x80\x12\x72\x03\x65\x4f\xf1\xac\x5c\xf7\x17\x65\x4f\x79\xf6\x13\x66\x9c\x2a\x15\x20\x96\xeb\xf1\xf1\x09\x13\x2d\xda\x9d\xb3\xc7\x31\x7d\xda\xa5\xfe\x7e\xf2\x3f\xc5\x0b\x90\xdd\x17\x4a\xf1\x02\x7c\x97\x31\x4e\xd5\x0b\x10\x9b\x03\x3d\x8e\x80\x43\x6a\x7f\x3f\x37\x6a\x85\x04\x60\xde\x5c\x16\x85\x04\x50\x7f\xda\x45\xca\xeb\x4d\x5f\x6f\xca\x0d\xd4\x16\xc0\x77\x19\xa3\x52\x5c\x00\x26\xce\x65\x79\xf7\x4d\x0f\xac\x8f\xfe\x99\x4b\xe8\x7d\xfd\xe5\x77\xd3\xaa\x90\x00\x92\xf4\x9c\xac\xfa\x04\x01\x93\xe4\xb2\x2a\x2d\xea\x8f\x7a\xac\x14\x51\xcd\xaa\x8e\x00\x92\x5c\x9f\xac\xea\x88\xfa\x0b\x2f\xf3\xa7\xcb\x36\xce\x39\x64\x83\xa9\x6a\x06\x60\x51\x9a\x28\xab\x9a\xa1\xfe\x2e\x7f\x69\xd7\x6e\xdb\x38\x8a\xe6\xe7\x2f\x1f\x9b\x70\x01\x60\x51\xa9\xfa\xf1\x80\xfa\xe3\xac\x8c\xac\x3a\xf2\x80\xec\xf1\x87\x4f\x75\xd5\xcf\x07\x64\x67\x9f\xad\x4a\x96\x5a\x1c\x33\xfb\x7d\x55\x9f\x00\x41\xd1\x8b\xac\xea\x13\x60\x11\x1d\x9c\x55\x79\x52\x3f\x91\xf1\xfd\x72\xd0\x66\xcf\x0b\x71\x80\x7c\x98\xab\x22\xa3\xd6\x5d\xa7\x8c\x1b\xa8\x28\x80\xc0\x3d\x9d\x55\x45\x01\x7c\x97\x05\x6d\xde\x94\x82\x19\x04\x06\x65\xd5\x53\x06\x24\x39\x74\x59\xd5\x1d\x80\x09\x8a\x59\xd5\x1d\xb5\xda\x35\xd8\x60\x55\x64\x00\x49\x32\x49\xd6\xba\xbb\xe6\xa4\x62\xea\xa8\x8a\x0c\x20\x25\x58\x55\x91\x51\x9b\x23\xe0\x03\x5e\x95\x14\x80\x09\x84\x59\x55\x14\xc0\x72\x1f\xa9\x2a\x8a\xda\x5c\xeb\x7c\xac\xab\xf2\x01\x30\xb5\x31\xab\xce\x33\xc0\x94\xc2\xac\x0a\x0a\xc0\x1c\xbd\xac\x0a\x0a\x20\xc9\xe3\xca\xaa\xa0\xa8\xcd\xf5\xc4\x46\x55\x75\x9e\x01\x49\x8a\x59\x56\x7d\x67\xc0\xc2\xf3\x9f\x55\xdf\x19\x90\x54\x44\xc9\xda\x1d\x79\x27\x55\x90\x1d\xae\xea\x4d\xab\xdd\x87\x32\xbd\xcc\x31\x75\x1f\x0a\xfd\x57\x9c\xd4\xee\x0b\xc1\xfb\x5b\x55\x22\x80\x59\x8c\x59\x55\x22\x40\x92\xa7\x93\x55\x25\x52\xbb\x03\x60\x57\xaa\x8a\x0c\xc0\xc4\xc6\xac\x8a\x8c\xfa\x29\x8a\xfa\x23\x42\x20\xab\x92\x02\x08\x1d\xec\x55\x45\x51\x87\xdd\xb5\x6f\x3a\xb7\x00\x53\x38\xb3\xea\xdc\x02\xbe\xcb\xfc\xa9\x4f\xe5\x83\x45\x8e\x7f\x56\x55\x46\x1d\xe9\x65\xf4\x4d\x95\x01\x2c\x4a\xc5\x65\x55\x65\x00\xab\xf9\xa4\x74\x6e\xd5\xe1\xf2\x73\xe1\x8e\x3d\x04\x96\xdf\xf2\x32\x9f\xc1\x24\x20\xef\xe7\x13\x55\x52\x00\x11\xce\xa4\x92\xa2\xce\xe1\x65\xdc\x54\xb5\x00\x98\x46\x9b\x75\x3a\x82\x4f\x06\x7c\x97\xd1\x5d\x65\x40\x9d\xae\x05\xfa\x21\xe5\xaf\xe1\xfb\xce\x17\xbc\x4a\xba\x81\x5a\x5c\xdf\x92\xee\x1a\x3e\x52\x87\x25\x9f\x06\x96\xce\xca\x2a\x9f\x06\xea\xaf\xb8\x7b\x49\xa8\x81\x1c\xee\x1e\xba\x75\x80\xd0\xe6\x5f\xf5\xea\xd4\x78\xfc\xa5\x97\x39\x21\x1f\x98\x6a\x99\x55\x8e\x0d\xac\x70\x77\xd2\x5f\x53\x57\xf5\x97\x74\x57\xef\x0c\x90\x72\x84\xaa\x77\x06\xf8\x2e\xf3\xdf\x1c\x15\xa7\x55\x0d\x77\x69\xd9\x79\x5d\xb7\x97\x31\x50\x69\x31\x10\x14\xe1\xcf\xaa\x43\xa5\x26\x2b\x90\x03\x5a\xb2\x4a\x8b\x81\x45\xe6\x46\x56\x69\x31\xf0\x5d\xc6\xbf\xc9\x8b\x01\xf3\x4c\xb3\xea\x3e\xa9\x39\xbc\x8c\x07\x23\x55\x06\x92\xf2\xe9\x59\xa5\xca\x40\xfd\x51\x6a\x26\xab\xbe\x12\x60\x35\xbf\x03\xba\x4a\x80\xef\x32\xdb\x7c\x08\x24\x42\x8d\x7d\x03\x1f\x42\x9e\x5e\x66\x7f\x7d\x0a\xd4\x89\x9f\x7e\xa3\xa4\xd4\x35\x5f\x2f\x63\xb9\x1d\x3e\x85\x0f\xcc\xf5\xcd\xaa\xab\xa4\x1e\x8e\x14\x23\x45\xd5\x31\x02\x24\xb5\x84\xb3\xca\xbc\x81\xef\x32\x3a\x72\xf8\x14\x38\x4f\x2a\x7c\xcc\xfa\x4a\x80\x1c\x38\x2e\xab\xbe\x12\xa0\xfe\x38\x8e\x25\xeb\xe1\xe0\x3f\x30\x6d\x35\xeb\xe1\xe0\x3f\x48\x2d\xd8\x55\x66\x0f\xe4\xf0\x5d\x96\xd9\x03\x66\xca\x66\x95\xd9\x03\x29\xd3\xac\x32\x7b\xe0\xbb\xa5\x97\xb9\x16\x0e\xd7\x82\x7f\xe6\x5a\x38\x5d\x0b\x3e\x03\xdd\x27\x80\x09\xcc\x59\x75\x9f\xd4\x73\x7a\x19\x5d\xd3\xe5\x01\xac\x39\xfe\xbb\x2e\x4a\x56\x1d\x22\xc0\xf7\x2f\xfe\xb3\x63\x3e\xb1\x46\xba\xf5\xa9\x19\x80\xfa\xa3\x74\x6d\x56\x45\x03\xb0\x48\x6e\xcc\xaa\x4b\x04\xc8\xb1\xbb\xe4\xa0\x2f\x47\xe3\x77\x4b\x1d\x01\x2c\xbd\x48\x55\x1d\x01\x7c\x97\xf1\x70\xd5\x11\x40\x0e\xbb\xa6\x8e\x00\xbe\xcb\xe8\x9b\x3a\x02\x58\xe4\xa1\x64\x55\x47\x00\xdf\x65\xac\x01\x75\x04\x10\xe1\x08\xd4\x11\x40\x0c\xbf\xcf\xca\x88\x7a\xb9\x8a\xfd\xb4\xab\x10\x80\xe4\x10\xde\xac\xd7\x1e\x95\xdb\xcb\x70\x08\x3e\xb7\x8b\xed\xc5\x7d\x43\x3d\x50\xe1\xfe\xbf\xe2\xe3\x95\xfc\x03\xa1\x71\xa9\xea\xff\xa8\xf7\xe5\x65\xb6\x79\x87\x0f\xcc\x06\xce\x2a\x13\x07\xea\xaf\xb8\x7b\xeb\x80\x00\x4c\xf3\xcd\xaa\x03\xa2\x3e\x4e\xa5\xcf\x4f\xc2\x0e\xe4\x70\xb3\x92\xb0\x03\xa1\x27\xb6\x4a\xd8\x81\x1c\xbe\x12\xfa\x1f\x80\x1c\x3e\x3d\x29\x3c\xf0\xfd\x3f\xcf\x45\x0e\x0f\xe4\x70\x1f\x95\xc2\x03\xf5\x57\xfc\xa8\xca\xe1\x81\xd5\xfc\x5a\xea\x93\xa8\x8f\x63\x77\x31\xe8\x80\x00\x56\x77\x72\x75\x40\x00\x49\x19\xd8\xac\xfa\x1f\x80\x1c\xbe\x26\xfa\x1f\x00\x33\xad\xb3\xbe\xae\xb5\x97\x37\x07\x11\x58\x5f\x9f\xc0\xeb\xf6\xe8\x77\x5c\xd9\x00\xe4\x70\xa7\x52\x35\x00\xdf\x65\x4c\x9a\xb2\x01\x58\x7b\x31\xab\x1a\xea\xeb\x8a\x91\xc2\xbf\xae\x18\xab\xf9\x61\xaa\xa8\x7a\x29\xaa\xb2\x41\xa3\x55\x53\x36\x00\x5f\x5b\xa7\xad\xd8\x46\x7f\x59\xb9\x4d\xdd\xd0\x7e\xf6\x97\x69\x6b\x3a\x16\x80\x1c\xb0\xde\xa6\x63\xa1\xa1\x11\xc8\xd1\xce\xa6\x46\x68\xbf\x7d\xd3\xef\x51\x35\x69\x3d\xb0\xd4\x8b\x4d\xde\x0e\xd4\x9f\xe1\x55\x4d\xe2\x0e\xa4\xd6\xad\xa6\xaf\xa1\x15\x5f\x3e\x38\x6e\x93\xb8\x03\x49\x51\xd6\x6c\x12\xf7\x56\x9c\xb7\xf4\xa6\xcb\x36\x44\x2a\x1b\x43\xd3\xaf\x00\xa4\x2f\x5f\xd3\xaf\x00\xe4\xa8\x76\xed\xb4\x89\x9d\x95\x6d\xa1\x19\x7a\xd7\x8a\x65\xc7\xf9\x5c\x34\x55\x00\x60\xe2\x79\x36\x83\xea\x80\x20\x5f\x20\x9b\x41\x75\xc0\xf7\x4b\xee\xa9\x43\x02\x58\x1c\x0d\x9f\x4d\xf9\xd0\xea\xf0\x32\x6e\xaa\x30\x00\x56\xb1\x6b\x0a\x83\x66\x29\x3d\xd2\x3a\xb2\xa9\x0c\x80\xa5\x63\xb7\x55\xc7\x59\x0f\x2f\x63\x3a\xaa\xa3\xe2\xd8\xa3\x59\x6c\x72\x54\x6a\x8a\x5a\x18\x95\x9a\x02\x30\x39\x3f\x9b\x9a\x02\x88\xe5\x7c\x28\x29\x5a\x73\x54\xde\x54\x2f\x05\xb0\x38\x52\x21\x9b\x92\x02\x58\xcd\x11\x28\x29\x5a\x73\xa0\xc5\x7f\x73\xa0\x1f\x24\x71\xff\xd9\x94\x14\xc0\x77\x99\x6d\x0e\xb4\xf9\xa9\xb4\xc9\x81\xb6\x3d\x02\x6f\xea\x08\x3c\x89\x77\x78\x03\x47\x60\x31\xbb\x0a\x4f\x68\x6a\x03\x20\x07\xbb\x7a\x53\x1b\x00\x8b\xaa\xf7\xd9\x8c\xb4\x03\xbe\x5f\xf2\xf8\xf4\x6f\x00\x39\xb0\x91\x36\xfd\x1b\xad\x3b\x2a\x78\x42\x53\x42\x00\xd9\x9d\x0f\xfd\x1b\x80\x75\x03\xb2\x29\x2a\x5a\xf7\x51\x39\x2a\x3d\x17\x40\x68\x37\x69\x7a\x2e\x9a\xaa\x82\x34\xc7\x6c\xaa\x0a\x20\x38\x32\x25\x9b\xaa\xa2\x8d\xe6\x65\x3c\x51\xc3\xe3\x00\xcb\x0b\x64\x53\x41\xb4\xe1\xec\xb6\xf8\xef\x8f\x76\x53\x3a\x00\x6b\xb9\xf0\x8c\x8b\x6b\xc3\xae\xf3\x21\x68\x4a\x07\x20\x38\xf4\x24\x9b\xd2\xa1\x4d\xfb\xe4\x6b\xad\x03\x01\xb0\x96\x41\x36\x1d\x08\x40\xee\xc7\xa6\x24\x68\x73\x99\x51\xc4\x0d\x74\x20\x00\x49\x75\xf1\x6c\x3a\x10\x80\xd8\xb3\xaa\x03\xa1\xa9\x1c\xaa\x2f\xe7\xdc\xfd\xf8\x88\x21\xc5\xcc\xb2\xe9\x40\x68\xd3\x75\xe1\x86\xa0\xed\x1f\x48\x4e\x97\xcb\xa6\xed\xbf\x21\x26\x7e\x15\xcd\xdb\x54\x13\xc0\x52\x9a\x34\x4d\xf8\x80\xe5\x1e\xb2\x69\xc2\x6f\x8a\x89\xba\xff\xcd\xee\x12\x23\x66\x2c\x4f\x53\x4c\xb4\x70\x19\x4f\xfb\xe1\xa3\x0c\x5e\x44\xd4\x4a\x53\x4c\xb4\xe5\x5b\x87\xe8\x68\xc6\x75\x01\xab\x41\xc5\x9b\xca\x01\xa8\x3f\x23\x80\x9b\xd2\x01\xb0\x2a\x44\x36\x95\x43\x23\xd1\xeb\x27\x25\x6a\x1a\xf1\x01\xeb\x38\x64\xd3\x88\xdf\x76\x5a\x17\x5f\xae\xa6\xc5\xbe\x19\xc5\xe5\x8b\xa2\xc1\xbe\x2d\x77\x48\x1c\x2f\x6d\xed\xfe\x72\x98\xbe\x2b\x4f\x53\x7c\x53\x26\x54\x74\x64\x53\x26\x00\x6b\x6f\xfb\xca\x84\xa6\x4c\xa8\x7e\x7e\x94\x09\x40\x6a\xfb\x6c\xca\x84\x76\x38\x21\x58\x06\x9a\xb6\x72\x60\x4d\x78\x77\x93\xc4\x03\xf9\x73\xcd\x48\xe2\x9b\x07\x34\xe9\x4e\x6a\x32\xf6\x26\x63\x77\x3e\x64\xec\x80\xa5\x78\xb2\x49\xd8\x81\xef\x97\x3c\x84\x63\xf7\x43\xc6\x4e\xd7\x64\xec\x4d\xc6\x3e\xed\x86\x53\x74\xb8\x28\x7d\xa4\x52\x76\x20\xf4\x1c\x34\x29\x7b\x93\xb2\x57\xbf\x65\x52\x76\x60\x19\x64\xd5\xa4\xec\x40\xfd\x35\xd8\x7e\xd3\x68\x0f\x58\xc4\x22\x9b\x2c\xbe\x71\x46\xd3\xaf\xf9\xe5\x32\xe2\x09\x58\x54\xe2\xcb\xa6\x69\x1f\xf8\x2e\xa3\x23\xda\xf6\x01\x8b\x51\x64\xd3\xb6\xdf\xce\xf0\x32\xa6\x52\x3a\x0f\x58\xd4\x23\x9b\x6c\xbe\x9d\x8f\x97\xf1\x5c\x8c\x49\x02\x2c\xea\x91\x4d\x73\x7f\x93\x80\x37\x5f\x49\x09\x78\x93\x80\x4b\x15\x24\xe0\x4d\x66\x6d\x80\x72\x93\x59\x03\xa9\x87\xb3\xc9\xac\x81\xb5\x77\x6a\x99\x35\xf0\xfd\x92\x19\xd7\x42\x0f\xc4\x7e\x4b\xb5\xd0\x37\x09\x78\xf3\xdb\x28\x01\x6f\x12\x70\x5f\x35\x09\x38\x60\xd5\x8d\x6c\x9a\xe8\xdb\x0d\x9b\xda\x5f\x38\x8d\xef\x80\x75\x32\xb2\xc9\xbf\xdb\x3d\xbc\x8c\xa9\xd4\xd4\x0e\xc4\x74\x04\x5a\xda\x01\x4b\x07\x65\xd3\xd2\x0e\xa4\xc1\xdf\x4d\x4b\x7b\xbb\xed\xad\x5f\x0c\xcd\xea\x4d\xe6\x8e\xf9\xa7\xdd\xbb\x6b\xec\x1f\xbe\x68\x12\x77\x20\x0c\x11\x6f\x12\x77\xa0\xfe\x9a\xdf\x15\x23\x87\x80\xa5\x16\x6c\x46\x0e\x01\x39\x7c\xb9\xa5\xf7\xc0\xf7\x4b\xff\xcd\x27\xf5\xb8\xcb\x30\x4c\xf9\x7d\x93\xb9\xb7\xfd\x6f\x0e\x0a\xe6\x1e\x3e\x02\x99\x7b\xd3\xd2\xde\x5c\xe1\x5a\xda\x81\x1c\x3e\x76\x29\x73\xd3\xd2\xae\x87\xa8\xc9\x99\x01\xab\x8b\x64\x93\x32\x37\x2d\xed\x46\xeb\xb5\x77\xdf\x81\x77\xd4\xc1\x6b\x69\x6f\xf2\x63\x4a\xa0\x67\x97\x1f\xf7\x9f\x6b\x92\xef\x50\x37\x18\x07\x48\x4e\x58\xc8\xae\x0d\xbd\xff\x0e\x2f\x5b\xb4\x9d\xb6\xa9\xc8\x1b\x4d\x97\x4d\xbb\x8a\x2e\xff\x26\x19\x06\x56\x85\x97\x76\xc9\x70\x97\x0c\x93\x17\x9d\x5d\x32\xdc\x25\xc3\x58\xe4\xbb\x64\x18\xc8\xb1\xfe\xf0\xd5\xee\x9a\xbd\x81\x1c\x58\x66\xbb\xec\xb9\x4b\x95\x75\xad\x76\xa9\x32\xb0\x0c\x30\xe9\x52\xe5\x2e\x55\xc6\xa6\xd6\xa5\xca\x9d\xa3\x6a\x7e\x54\x4c\xc8\x6e\xfe\x09\x90\x63\x39\x98\xc7\x26\xc7\xcc\x62\xec\x12\x63\x20\x39\x59\x29\xbb\xc4\xb8\xcb\x78\x49\x9d\xce\x2e\xe3\xed\xd8\xbd\xa9\x33\x95\x5d\x76\x0b\x58\x80\x28\xbb\xec\xb6\x4b\x5b\x9b\xa3\x92\xb6\x02\x4b\x1e\xd8\xa5\xad\x5d\x8e\xca\xd9\x04\xd9\xe5\xa8\x40\x72\xc4\x4c\x76\x39\x2a\xb0\x4a\x7a\x95\xb3\xd6\x5c\x8c\xac\x95\xae\xdd\x1b\x58\xee\x07\x5d\xda\xda\xe5\xa8\xcd\x39\x92\xa3\x76\xed\xde\xec\xdd\x5d\x8e\x0a\x7c\x97\x79\x53\xa7\xb2\x69\xcf\xf1\xa6\xae\x1e\xa9\x2c\xa5\x69\xb3\x4b\x65\xfb\xa6\xb2\xfe\xdb\x1e\x15\xdb\xa8\x57\xc9\x64\x7b\xf7\x4d\x74\x08\x12\x52\x60\x19\xb9\xd4\xb5\x72\xf7\x4e\x3f\x94\x1d\x5d\x63\x35\x90\x03\x0a\xd9\x25\x9f\xc0\x77\x99\x3f\x75\x19\x53\x61\x8c\xa2\x63\xd9\x25\x9f\x7d\x14\x2f\xe3\xa6\x1a\xab\x81\xf5\xf3\xb9\x18\xfe\xd2\xc7\x3e\x0f\xd0\x36\xfb\x26\x21\x85\xde\x76\x09\x69\x1f\xaf\x97\x71\x07\x53\x1c\x00\xcb\x0d\x66\x37\x60\xa5\xcf\x7d\x24\x18\xa3\xd7\x96\x0c\x24\x67\xba\x64\x97\x5d\x02\xdf\x65\xb6\x79\x07\xe9\x25\x4c\xa1\x4b\x2f\x3b\x81\x27\x3f\x9d\xb5\x5d\xe2\x08\x84\x9f\xed\x2e\x6f\x04\xea\xcf\xf0\x81\x2e\x71\x04\xac\x32\x94\x5d\x2b\x74\x97\x4b\x1a\x8c\xd0\xe5\x92\xdd\x83\x43\xf9\x14\x74\xb9\x24\xf0\x5d\x46\x47\x0c\x24\x01\x16\xd5\xbd\xb3\x1b\x48\xd2\x09\x07\xf9\x75\x5f\x05\xc9\x64\x37\x2d\xc1\xb7\x54\xfb\x35\x50\x7f\xa6\xc3\x74\x0d\xd8\x80\xa5\x8d\xb2\x4b\x39\x7b\xf8\x4c\xbb\x1d\x71\x58\xe6\x20\x38\xbd\xc6\x88\x00\xcb\xb8\xbe\x2e\x0b\x05\xcc\xb0\xcc\x2e\x0b\x05\x96\x79\x34\x5d\x93\x76\xd7\x30\xad\x7f\xbf\x4b\x2f\x3b\x45\x03\xfe\x5d\x66\x6f\x17\x27\x16\x7a\x4b\xc3\x41\x80\xa2\x91\xa8\x4b\x2e\x81\xa9\xab\xae\x4b\x2e\x81\x69\x1a\x4d\x37\x1a\xa4\xaf\x9b\x26\x1e\x8a\x36\x6e\xa0\x69\xcc\xef\x32\xd0\xfe\xb1\xce\x69\xc6\x4a\xd7\xc4\xdd\xad\x19\xd0\xdd\xf4\xb5\x71\x03\x65\xba\x48\x35\x71\x77\x33\x04\x9c\x0b\x4d\xdc\xc0\x34\x89\xa5\x9b\x20\x00\xcc\xf5\xf3\xbf\x5c\x55\xe9\x93\x43\xb4\x74\xe9\x2c\x30\x15\x4f\x5d\x36\x0b\x7c\x97\x31\x26\xe9\x2c\x50\x48\x46\xcf\xae\xd1\xbb\xe7\xf5\xfd\xb2\xf8\x67\x3e\x25\xea\x01\x48\xe5\xbb\x81\xff\x40\xa9\xcd\xce\xee\x91\xbf\xc4\x13\x70\x95\x26\x6f\xa0\x52\xe7\x28\xbb\x26\x6f\xa0\xe8\x2d\xec\xf2\x67\xa0\x50\x08\x3c\xbb\xfc\xb9\x1f\x0c\xdc\xe9\xd1\xe0\x0d\xf4\xb6\x7f\xe8\xc0\x0f\x0e\x0c\xdb\x4d\x8e\x1b\x83\x77\x73\x61\x4b\x9f\x81\x66\x36\x4c\x97\x3d\x03\xc5\xec\xa3\x2e\x7b\x06\xe6\xbf\xab\x5c\x03\x07\x6b\xa0\xd8\x2f\xd7\xc0\xe1\xe4\x30\xad\x92\x67\x60\x9a\x32\xd3\xe5\xce\x40\xcd\x7d\x95\x93\x73\xb2\x2c\xe0\x7b\x5d\x9e\xdc\x4d\x16\xf0\xef\xb5\x76\x03\xd3\x24\x94\x2e\x73\x06\x9a\x2e\x93\x2e\x73\x06\xe6\xc2\x53\xd1\x25\xce\x40\x29\xed\xbf\x4b\x8f\x66\x97\x57\xf7\x93\xf1\x4a\x1d\x34\x75\x03\x9d\x7a\x3f\xd9\x35\x75\xf7\x93\xc1\xb9\x5f\x19\xfc\x0f\xd4\xb2\x7f\xb8\x07\xf7\x7e\x57\xc1\xe8\xba\x44\x1b\xe8\x94\x4a\xc9\xae\x3d\x1c\x68\x13\x61\xda\xb5\x87\x03\x45\xb3\x7c\x97\x8d\x03\x75\xfa\x4a\xc9\xc6\x81\xc9\xf9\x4d\xd9\xb5\x86\x03\x4d\xb7\x54\xd7\x1a\x0e\x54\x6a\x1f\x65\x97\xb2\x03\xdf\x8a\xb7\x17\xae\x06\x4a\x96\x19\xfb\xd1\x35\x69\x03\xdf\x65\x0c\x49\x9b\x76\xbf\x79\x12\xf6\x4c\xfb\x75\xbf\xdd\x72\x5c\x6e\x06\xb4\xf4\x9b\xd7\xcc\x5d\x4e\xfe\x0c\x4c\x33\x1c\xba\xfc\x19\x98\x9a\xb3\xba\x91\x2a\xc0\xf7\x67\x5e\xe6\xfc\xdf\xac\x37\x98\x66\x97\x65\x03\x6d\xca\x58\x34\x99\x03\xd5\xf0\xa4\x2e\xf1\xee\x0f\x8b\x0b\xee\xd9\x65\xd4\x40\x37\xa2\xb4\xcb\xa8\x81\xb9\x29\x97\x8c\x1a\x68\xcb\xa7\x24\xa1\xee\x0f\xfb\x8b\x53\xa6\x75\xbc\x3f\x7b\x7f\xa1\x63\x9a\xc7\xfb\xc3\x28\x9d\x0b\x09\x35\x30\xf7\xcb\xae\x25\x1c\x98\xcb\x41\x6a\x09\x07\xa6\x79\x3f\xdd\xe8\x7c\xa0\x84\xec\x4d\xdb\x38\x50\xf7\xab\xf7\xec\x41\xb2\xc8\x64\x26\x1a\xc2\x81\x5a\xdc\x31\x35\x84\x03\x5d\xaf\x40\xd7\x10\x0e\x94\xea\x1b\xf4\x3a\xee\x97\x41\xba\x14\xe5\xf9\x40\xd7\x5e\xd7\xa5\xf9\xc0\x5c\xce\xb4\x34\x1f\xe8\xd3\x8d\x43\x96\x0f\xcc\x25\x5d\x94\xe5\x03\xed\xe7\x4c\x1b\x4f\xd3\xb5\x9f\x77\xc7\xad\xfd\xbc\xbf\xbc\x5c\xbb\xaf\x0e\x92\xd3\x39\x95\x8a\xdd\x90\x7e\x60\x9a\xba\x30\x54\x0c\x40\xa3\x6e\x56\x0e\x0d\xea\xc3\xe4\x7c\x7a\x31\x34\xa8\x03\xd3\x2c\x85\xa1\xac\x00\xa6\xf9\x0d\x43\x59\x01\x14\x4e\x7c\xcb\x61\x68\x0e\x50\x38\xcb\xe7\x93\x20\x36\x31\x15\xe1\x55\xcb\x26\xce\x4a\x2e\x5e\x95\x36\xf1\xb8\xf7\x0f\x4f\x9b\xce\xef\x3b\x07\x2b\x1c\x2a\x14\xa0\x99\x37\x35\x0c\xdf\x19\x3f\xc6\x88\xd8\x1b\x6a\x16\xa0\x19\x71\x3d\xd4\x2c\x40\xe3\x40\xa6\x1c\x4a\x96\x51\x26\x3f\xe4\xbf\x8c\xee\x07\xba\x11\x1e\x43\xb1\x01\x4c\x33\x1b\x86\x62\x03\x28\x12\xe9\xa1\xd8\x00\x6a\xec\xbf\xb7\xf7\x85\xc5\x8a\xd6\x18\xda\xe5\x87\x92\xc4\xb0\xb6\xa1\x24\x19\x85\xee\xa3\x07\x87\xf2\x03\xa8\x3f\xaa\xde\xe4\x50\x7f\x00\xcd\x57\x6b\x68\x97\x07\x26\x47\x74\x7f\x32\xce\x26\x36\xc0\xf4\xcf\x7c\x46\x14\x89\xe3\x94\xb2\x1c\x46\xf5\x00\x9d\x92\x65\x9f\x62\xb3\x89\x73\xea\xd9\x78\x86\xc6\xfb\xa1\xf1\x9e\x72\xf0\x39\x94\x37\x40\x33\xbd\x62\x28\x6f\x80\xc9\x79\xd9\x39\xaa\x93\x51\x1d\xb9\xb7\x74\xe4\x95\x6f\xdf\xfe\xa1\x03\xa7\xae\xb3\x1e\xe7\xa1\x2c\x02\x6a\x71\x7a\x94\x45\x40\x6d\x7c\xd5\x86\xd6\x7c\xa0\x5a\x64\x61\x18\x20\x34\x1a\x53\x81\x30\x18\x0a\x25\xe0\xeb\x3e\xb7\x54\x29\x01\x53\xc6\x38\x14\x4a\xc0\x34\x01\x63\x28\x94\x46\xe3\x89\x43\xf8\x87\xa2\x08\x68\xc5\xc7\xab\x26\x02\xa6\xa1\xed\x43\x4d\x04\x14\x3d\x3d\xc3\xdc\x7a\x60\x1a\xb4\x3c\x0c\x0f\x1a\x2a\x27\x23\x14\x87\xca\x69\x7c\x32\x69\x72\x0c\x54\x0e\x65\x12\x50\x46\x2f\xff\xfd\x55\x1e\xfa\x03\x80\x6a\xce\xd0\xd0\x1f\x00\x4c\x0e\x9c\xce\xa1\x3b\x60\xf4\x3d\x2f\xac\x4b\xe5\xd7\xe0\x2c\x9b\xfc\xd9\xe4\xd3\x27\xcb\x5e\x65\x38\xb4\xfd\x03\xdf\x2f\xbd\x81\x13\xc3\xf9\x36\xc9\xb7\x74\x28\xd2\x80\x6a\x62\xca\x50\xa4\x8d\x2d\xd2\xa6\x6d\xce\xcc\x07\x93\x73\xa2\x73\x28\xd2\x86\xc9\x0d\xfb\xcf\x9c\x98\xee\xc4\xd0\x0d\x93\x1b\x80\x12\x2e\x12\x23\x91\x80\x62\x38\xe0\x50\xdc\x8d\x4f\xb5\xcd\x74\x6b\x52\xb5\x01\x5f\x2f\xf8\x7f\x23\x91\x06\x07\xd0\x98\xf7\x32\x8c\x30\x1a\xfa\x09\xf4\x84\x0c\xfd\x04\xc0\x94\x94\x0d\xfd\x04\x40\xdd\x7b\x8c\xa9\x0d\xc0\x4c\xd7\xaa\x41\x47\x63\xd0\x7f\xa8\xdb\x50\x28\x02\xdf\xff\xdb\xe6\x00\x26\xcf\x09\x56\x36\x14\x8a\x40\xd5\x2e\x37\x14\x8a\x63\x32\x65\x98\x0c\x87\xca\x0e\xa8\xfb\x31\xa9\xec\x80\xfa\x33\x48\x73\x98\x53\x00\x4c\x0e\xdf\xcd\xa1\xd8\x03\xaa\x6e\xa1\xa1\xd8\x1b\x14\x9f\xe3\xa8\xe8\x4f\x3d\xdb\xe4\x9c\xb9\x79\xeb\x38\x00\xda\x1e\x93\x5a\x0f\x08\x0b\x2b\x0c\xb5\xde\x88\xdd\x0d\xef\x69\x37\x48\x07\xd7\xed\x34\xd4\x62\xc0\x6a\x30\xe0\x61\x78\xd1\xd0\x6f\x60\xac\xe8\xd0\x6f\x00\xa4\xc1\x04\x43\xbf\x01\xb0\xf6\xd3\xd4\x6d\x30\x96\xbd\x75\xff\x36\xbc\x08\xc8\xe2\xc6\xa9\xdb\x60\x2c\x17\xb2\x7b\xba\xca\x0e\x08\x13\x1a\x86\xca\x0e\xf8\x2e\xb3\xbb\x2e\x84\x0f\xd6\xbf\x7f\x73\x21\x7c\x90\x9c\x9e\x90\xc3\x40\xff\x61\x48\x93\x21\x80\x43\xb9\x07\xa4\x7a\x63\x28\xf7\x80\x25\xc3\x1c\x3a\x1c\x86\x51\x4e\x46\x22\x0e\x25\xe0\x30\xca\xc9\x9d\x46\x05\x38\x8c\x72\x32\x98\x6d\x28\x01\x81\x65\x19\x8f\xa1\x04\x04\xd2\xa0\x89\xa1\x04\x1c\xba\x2a\x8c\x48\x1b\x8a\x3b\x60\x29\x0b\x87\xda\x6e\x1c\xf6\xc3\x0d\x5b\xf5\x05\x2c\x63\x95\x87\xea\x6b\x18\x83\x64\x0c\xcf\x50\x7e\x01\x61\x42\xc0\xd0\x7d\x01\xec\xbc\xda\xa1\x22\x03\xc2\x84\xb0\xa1\x22\x1b\xc6\x1b\x19\xe4\x34\xd4\x5f\x40\x98\x24\x36\x8e\xdd\x35\xa3\x7a\xbd\xa5\x4f\xea\x38\xfc\xa5\x5d\xf3\x49\x11\x70\xb4\xbf\x25\x0a\x30\x20\x8b\x1f\x34\x05\x18\x90\xa6\x85\x0e\x05\xd8\x38\xf7\x59\xc9\x3c\x29\xb5\x15\xb0\x2c\xcb\x32\xd4\x56\xe3\x1c\x5e\xc6\x4f\xd5\x45\x40\x16\x77\x76\xe3\x8d\x86\xd1\x43\xfa\x64\x86\xfe\x86\x61\xf4\x90\x9f\x4c\xa3\x87\x86\xd1\x43\x46\xd0\x0c\x25\x15\xb0\xf6\xc7\x5c\x49\x05\xa4\x19\xfe\xc3\xe8\x21\x20\x25\xad\xe3\xdc\x23\x60\xa9\xf9\xe5\x53\x65\x01\x69\x5c\xcc\x50\x65\x0d\xdd\x19\x06\x6e\x0d\x05\x14\x90\x66\x12\x0c\x05\xd4\xb8\x1c\xa7\x6f\xa8\x72\x09\x48\xce\x43\xcf\xa1\x5c\x1a\xca\x25\xe3\xdd\x86\x72\x09\x48\x43\x7b\x86\x2e\x8e\xa1\x8b\xc3\x00\x86\xa1\x8b\x03\x58\x25\xec\x87\x43\xe7\x08\x1b\xe3\x67\x86\x1e\x0e\x60\x19\x08\x32\xf4\x70\x0c\xb5\x97\x41\x65\x43\xed\x05\xa4\xb1\x32\x43\x0f\xc7\xb8\x9b\x97\xf1\x53\x93\xa7\x81\x34\xf2\x66\x28\xc7\x80\xb4\xba\xca\xd0\xe9\x01\x84\x7a\x6f\xe8\xf4\x18\xba\x33\x74\xeb\x0f\x85\x16\x10\xb9\x7e\x7f\xf8\x54\xab\xc3\x80\xfa\x1b\xfb\x9f\x7d\x6a\x78\x40\x0c\xb9\x19\x7a\x40\x86\xee\x0e\x83\x86\x86\xe2\x0c\x88\x90\xea\x28\xce\x80\xdc\xd4\x59\x71\x36\x9e\xee\x2f\x79\xe0\xfa\x36\x80\xe4\x68\xc0\x1c\xaa\xb3\xa1\xbb\x43\x13\xf6\xd0\xdd\x01\xd4\x70\xf5\xa8\xce\x80\x61\x4c\xec\x50\x9d\x01\xad\xf9\xc5\x52\x9d\x01\xc3\x78\xe0\xa1\x3a\x1b\x86\x2e\x19\xa0\x36\x94\x67\x40\xf9\xb9\x37\x2a\xcf\x80\xa6\xc1\x6c\x3c\x7b\xe8\x54\xf7\xf7\x5b\xa4\x62\x03\x5a\x25\xd8\x68\xa8\xd8\x80\x11\xbe\x0f\x2a\x36\xa0\x19\xcd\x3f\x54\x6c\xc0\xb0\x78\xd7\x30\xe5\x1a\xa8\x9b\xd0\xe9\xbf\x19\x9f\x88\x1b\x9b\x56\x2a\xe2\x86\xc5\xd3\x7c\x9f\x15\x71\x40\xef\x2e\x73\x45\x1c\x50\xf7\xf4\x2b\xe2\x80\xb2\x24\xf0\x8a\x38\xa0\x85\xac\x52\x0d\x07\x0c\xab\x6d\x0d\x63\xa0\x80\xba\xdc\x2d\x94\x75\xc0\xb0\x8c\xd6\x50\xd6\x0d\x3d\x41\xc6\xb4\x4d\x75\x1d\x50\x54\x97\x53\x5d\x07\x14\x93\xba\xa6\xba\x6e\xfe\xf6\x31\xe3\x34\x35\x9b\x3a\xff\xdf\x68\x1a\x36\x69\x2e\xf3\xaa\x69\x13\xb3\x83\xca\x9a\x46\x53\x4d\xb3\x30\x8c\x7c\x9b\x0a\x3b\x60\x28\xc7\xa7\xc2\x6e\x5a\x74\x6d\xd9\x8b\xc3\xa6\x9b\xab\x82\xa6\xc7\xa6\xe7\xbb\x2a\xfd\xff\xd7\xa6\xf7\xbb\x8a\x8f\xf9\x54\xd8\x01\x45\xbf\xc9\x54\xd8\x01\x55\xb6\x33\x15\x76\xc0\xd0\x8e\x3d\xf5\x45\x4d\x93\x2c\xf4\xda\x4f\xbd\x4d\x40\xd5\x24\x33\xf5\x36\xcd\x4f\xff\x0d\xf7\xf9\xa9\xfe\x03\xbe\x5f\xda\xe6\x90\x3e\xb5\x37\xac\xab\x35\x55\x7b\xc0\x77\x99\xff\x76\xd9\x86\x6d\xa2\xd8\x74\xdb\x44\x19\x94\xee\x00\x1c\xb9\xc1\x5a\x06\x70\x4d\x83\xb5\x80\x62\xe4\xd7\x54\x14\x4e\x45\xa1\x11\x40\x53\x51\x08\x74\xd3\x1f\xa7\xa2\x70\x9a\x3d\xce\xa7\x76\x2a\x0a\x67\x75\xcf\xc5\x36\x34\x95\x68\x40\x4f\xa8\xc7\x34\xe2\x6a\xea\xa7\xfa\x77\x53\xfb\xf6\x41\x33\x98\x62\x2a\xc8\x66\xb3\x1f\x6c\x23\x53\xf9\x35\x4d\x02\x87\x9d\x4d\x5d\x57\x40\x99\x2e\x34\x15\x19\xd0\x0b\xec\x6f\x2a\xc8\x80\x5e\xf9\x1a\x4c\x05\x19\xd0\x65\x14\x53\x41\x06\x54\x8d\x30\xd3\x80\xab\xd9\xfc\x5e\xba\x44\x95\x5f\x40\x9f\xae\x2a\xe5\x17\xd0\xd3\x21\x29\xbf\x80\x6e\xe6\xcb\x54\x7d\x01\xf5\xa7\x23\x78\xb6\x3d\x4c\xd2\x33\x18\x91\x82\x0c\x68\xe6\x26\x4e\x15\x17\xf0\xfd\x90\xff\x57\x72\x01\xdd\x5c\xd3\xa9\xe4\x9a\x4a\x2e\x0d\x2c\x53\xc9\x05\x94\x70\xe4\x7a\xbc\x80\x4a\x05\xd5\x9c\x06\x65\x01\x95\x73\x5a\x73\x2a\xcc\x80\xaa\x21\x63\x2a\xcc\x80\x52\xf7\x2d\x5d\xa1\xe4\x9c\x9b\xca\x3a\xd5\x65\xd3\xd0\x2d\xa3\x65\xa6\xc2\x0c\xa8\x73\x0f\xd3\x29\x23\x74\x6b\xed\xff\x77\xca\xd0\x65\x56\xa6\x99\xea\xb2\xd9\xdd\x81\xd8\x79\xa7\xc2\x0c\x68\x52\xba\xa9\x30\x9b\x63\x8f\x9c\x31\xe9\x4f\x03\xba\xe9\xb3\x53\x65\x06\x34\xe3\x0d\xa6\xc2\x6c\x1a\xf3\x65\x70\xc8\x34\xa8\x0b\x58\x56\xfa\x98\x06\x75\x4d\xc5\x9a\xbe\xbe\xa9\x58\x03\xca\x2f\x6d\x72\x50\xc3\xef\x50\xfc\x77\xed\xef\x9c\x8a\x39\x60\xa9\x02\xa7\x62\x0e\xf8\xfe\xc5\xae\xbb\x4e\x06\x55\x12\x20\x90\x53\x81\x37\x15\x78\x46\x5e\x4c\x05\x1e\x50\x64\x0d\xd3\x44\x13\xa0\xeb\xcd\x9f\x6a\x3e\x60\xc9\xab\xa6\x9a\x0f\x28\xe6\xbb\x4c\x7d\x83\x73\x4e\xff\xdf\x5f\xba\x2a\xa8\x8a\x6e\x4d\xcc\x69\xad\x33\xa0\x37\xd7\xa6\xd1\x68\x40\x53\x9a\x4f\xa3\xd1\x80\x6a\xb5\x9c\xa9\x53\x71\x1a\x8d\x66\xb4\xca\xd4\xab\x08\x74\xc3\x75\xa7\xd2\x73\xea\x41\x54\xa1\x4e\x45\xe5\xd4\x83\xd8\x6c\x72\xe4\x7a\x10\x0d\x78\x98\x7a\x10\x81\x6e\x85\xcd\xa9\x07\x11\x88\x65\xd7\xd4\x9e\x40\xb7\x26\xe3\x34\x8c\x0d\xa8\xb3\xf8\x43\x17\x0a\x6a\x74\x42\xee\xa6\x6a\x14\x68\x8a\xfa\xa9\x1a\x05\x56\x75\x1d\xea\x78\x9c\xe1\x9a\x70\x39\xe9\x52\x04\x56\xfc\xec\xab\x0f\x5d\x67\xa1\x0e\xca\xa9\xb3\x10\xe8\xc6\x32\x4d\x65\x26\x50\x0d\xc6\x9c\xca\x4c\xe0\xfb\x25\x0f\x5d\x9f\x22\xd0\x0d\xa0\x9a\x2a\xcf\x69\xc4\x9a\xa1\x73\x53\xe9\x39\x3d\x2c\x68\xff\xd2\xa7\xc2\xe1\xa3\x7b\xfb\x57\x79\x02\xdf\x2f\x19\x95\xd2\x13\xe8\x56\x25\x9d\x6b\x8f\xc0\xa3\x01\x6c\x72\xd5\x2e\x2a\x6c\xfa\x45\x50\x79\x02\xbd\xba\x61\x2b\x3c\x67\xf2\xf6\x4e\xc7\xa9\xa4\x04\xca\xe6\x01\x4a\x4a\x60\xed\xaf\xa1\x5e\xc5\xa9\x57\x91\xf3\xab\x73\xea\x55\x9c\xbb\xec\x98\xbf\x74\x36\x8c\x91\xa3\x63\xea\x4e\xa0\xad\xfd\xf7\xce\x05\xa9\xe9\xbf\xcd\x6c\xcc\xa4\x01\x96\x59\x7d\xd3\x44\x1a\xa0\x6b\xd6\x9a\xba\x1e\xe7\xb1\x7b\xc1\xbf\xe9\xe3\x03\xda\xfe\xc8\xa9\x31\x81\x25\x55\x9e\x6a\x4c\xa0\xfe\xa6\x7b\x99\x22\x13\x58\x13\x2a\x3b\xd5\x98\xd3\xa0\xb6\xe9\x37\xc1\xa0\xb6\x69\x65\x2f\x77\x59\x9d\x75\xc0\xd2\x38\x3c\x15\x94\xd3\x38\xb7\x89\x74\x99\x2a\x4a\x60\x58\x49\x77\xea\xad\x03\x96\x71\xa1\x53\x6f\xdd\x54\x77\x5a\x24\x77\xaa\x3b\x81\xba\xc9\x8d\xba\x73\x1a\xfa\x66\x6e\xd4\x34\xf4\x0d\x58\x46\x41\x4f\xa5\x28\x10\x9b\x7b\x28\x45\xa7\x52\x74\xbf\x51\x4a\x51\x20\xb5\xaf\x4e\xa5\xe8\xfc\x74\x67\xec\xf5\xa8\xee\x04\xaa\xde\x86\xa9\xee\x04\xbe\x3f\xe3\x06\x0a\x4f\xa0\x55\x28\xf4\xd4\xbd\x07\x74\x53\xc0\xa6\xee\xbd\x79\xb9\xf8\x30\xea\x4d\xb5\x28\xd0\xcd\x6f\x9e\x3a\xf3\xa6\x95\xc2\xdd\x6b\x55\xa7\xd3\x00\x3c\xf7\x25\xd5\xe9\xb4\x50\x38\x36\x83\xa9\x38\x05\xbe\xff\xf7\x97\xce\xc6\x85\x35\x50\x5a\xad\x38\x9d\x06\xdb\x6d\x22\xa3\x14\x05\x8a\xb5\xaa\xa6\x52\x14\xe8\xfb\x13\x6c\xb0\x1d\x10\x5a\x83\xa7\xce\x42\xa0\x18\x40\x38\xd5\xab\xd3\xfc\x97\x89\x83\x72\x1a\x7f\x07\x84\x41\xed\x53\xff\xe1\xd4\x7f\x38\x51\x82\x53\xc1\x0a\x94\xee\xc6\xa4\x60\x05\x96\xd9\x45\x53\xc1\x3a\x6f\xc7\xe9\xea\xd3\xa7\x08\x2c\x13\xe2\xa6\x3e\xc5\xa9\x4f\x51\x2b\xd3\xd4\xa7\x08\x84\x25\x06\xa7\x52\x17\x58\xc6\xe4\x4d\xb5\xec\xbc\x7d\xc4\x38\x4f\xa7\x71\x7a\x40\x98\x68\x31\xd5\xad\x40\xfd\x6d\xae\xa1\x70\x05\x96\x85\x8a\xa7\xc2\x15\x58\xad\xfd\xa1\x5a\xd9\xd4\xe9\x38\xd5\xb0\xd3\xd5\xaf\x86\x05\xba\xe1\xa1\x53\x0d\x0b\x84\xb6\x82\xa9\x86\x05\xfa\x4f\xfa\xac\x86\x9d\xcf\xe3\x9f\x31\x35\x4a\x51\x20\x0c\x94\x9b\x4a\xd1\xf9\x3a\x18\x7f\xaa\xf0\x04\x56\xa8\x73\x14\x9e\x40\x98\x14\x39\x15\x9e\xd3\xcc\x9a\x29\xf3\xd6\x7d\x08\xd4\xbd\xc1\xa9\x3c\x81\x6a\xf6\xf1\x54\x79\x4e\xa3\x04\xa7\x5b\x97\xd2\x13\x28\x26\x80\x4f\xa5\x27\xf0\x5d\x66\x9b\xa3\xe2\x00\xd6\xbd\xab\xaa\x3d\x27\x42\xf3\x37\x65\x88\x2a\x4d\xa0\x6d\xfa\xa1\xd2\x9c\x2a\xcd\x09\xbf\x09\x95\x26\xd0\xcd\xee\x0f\x95\x26\x10\xe6\x1d\x86\x4a\x33\x4c\xe5\xe7\xf0\xd9\x0c\xfd\x85\x40\xb3\xa8\x4f\x28\x35\xc3\xcc\x1d\x3d\xfb\xa1\xd6\x04\x42\x7b\x4d\xa8\x35\x81\x6e\xee\x78\x28\x35\x81\x30\xe2\x30\x94\x9a\x40\xb5\x5c\x67\x28\x35\xc3\x84\x7f\x4e\x6f\xca\xd0\x63\x08\x54\xbf\x1e\xa1\xfc\x04\xc2\x1c\xa8\x50\x7e\x02\x21\x65\x0b\xe5\x67\x14\x77\x6d\xbe\x61\xa1\xb2\x04\xaa\x05\xd2\x42\x61\x19\x65\x8f\x89\x7f\x33\xe5\x07\xa8\x86\xae\x85\xce\xc6\x50\x32\x4e\xa4\x6b\x28\x19\x81\xa6\xf9\x37\x94\x8c\x61\x96\xbf\x35\x82\x42\xcd\x08\xb4\x7f\x37\xb5\xbb\xd5\x8f\x1d\xd2\x3b\x74\xe1\x01\xcb\xcf\x53\xe8\xc1\x0b\xc5\xa0\x75\x7f\x43\x31\x08\x84\x81\xbc\xa1\x18\x8c\xea\xb4\x2d\x7f\x6a\x47\x2a\x3b\x3e\x9b\x68\xa8\x0f\xc3\xfc\x7d\x4e\x5c\xca\xd0\x3d\x07\x84\x19\x66\xa1\x3e\x0c\x63\x1b\x39\x5e\x29\x43\x81\x08\x54\x4e\xf7\xca\x50\x20\x86\x11\x8a\x1a\x46\xc3\x08\x45\x20\x77\x8b\x0f\x19\x5f\x9c\x85\xb8\x42\x5f\x5c\x98\x85\x3f\x31\xae\x84\x3a\x0f\xf0\xd0\x87\x0c\x75\x5e\x18\x9f\xd8\xfc\xa5\xb3\xd6\x77\xcf\x18\xbb\x0a\x0e\xf0\xa0\x89\x0c\x15\x5c\xa8\xe0\xc2\x9b\xaa\xe0\x80\xe4\xf0\xff\x0c\x15\x5c\x98\x86\xcf\x51\x4a\x19\x8a\x33\x60\xd5\x7d\x99\x23\x30\x18\x31\xf8\x8e\x85\xfe\x2a\xa0\x69\xa0\x0d\x83\x11\x81\xd0\x54\x1a\x6a\xa7\xd0\x85\xc5\x19\x49\x19\x2a\x25\xa0\x9a\xa2\x10\xe6\xd2\xc7\x58\x5e\xc6\x32\x1a\xfb\xa6\xc9\x65\x74\x4d\x4f\x17\xe0\x59\x1c\x19\x6a\x27\xa0\x58\x6c\x23\xd4\x4e\x61\x2e\xbd\x55\x82\x43\x25\x04\x14\xb3\x96\x43\x21\x14\xc6\x44\x5a\xac\x26\x54\x42\x40\xe5\x20\xa1\x0c\x85\x10\x50\xe5\x8f\xa1\x10\x02\x2a\xe7\x22\x66\x28\x84\xc2\x90\x48\x0b\xe4\x84\xb2\x07\xe8\xc6\xe8\x84\x21\x91\x31\x9d\x6f\x77\x0a\x65\x0f\xb0\xf4\xb8\x86\xb2\x07\x28\x56\xcd\x0f\x65\x4f\x44\xf5\x97\x8c\x40\x09\x02\x54\xd3\x77\x42\x09\x02\xf4\x5f\xf7\x2a\xbb\xa1\x47\x4c\x36\x17\x6a\x10\xc0\x42\x73\xa1\x04\x09\x43\x18\xc3\x19\x32\x84\x11\x08\x79\x55\xa8\x37\x42\x71\xb1\x57\xa9\xe2\x02\x08\x19\x53\x28\x2e\x42\x4f\x94\xde\xa9\x50\x0f\x00\x4d\xc5\x17\xea\x81\x50\x0f\x70\xf4\x45\xc6\xda\x77\x20\xf4\xd3\x3f\xf3\xd9\x99\xfa\x12\xbb\xcd\x87\x47\xea\x8b\xd5\x99\x42\x3d\x10\x7a\xa2\x8c\xa5\x0c\x05\x41\x64\xa5\x6b\x36\x39\x69\x6a\x84\x18\x7f\x88\xf2\x0e\x25\x04\x10\x12\xaf\x50\x42\x84\x5e\xa9\xf0\x33\xa3\x38\x00\x5a\xc1\xee\x16\xaa\x83\x30\x33\x3e\xfc\x58\x18\x26\x08\xd4\xe6\x9b\xa9\xa3\x2a\xf4\x4a\x69\xf0\x0d\xbd\x52\x40\x48\xb3\x42\xaf\x54\x98\x54\xb3\xd7\x85\x3e\x28\x20\x2d\xdb\x13\x2a\x86\xd0\xb9\xa4\x01\x36\x24\xfe\x40\x4c\xb7\x42\x9d\x4b\xc0\x77\x19\x93\xa3\x77\x09\x28\x1a\x35\x43\xef\x12\xf0\x5d\xe6\x1d\x9c\x7d\xea\x59\x49\x31\x43\x15\x11\x3a\xa1\xac\x98\x1e\x6a\x06\x20\x94\x98\xa1\x64\x00\xea\x2f\x7c\xc3\xd4\x0c\x40\xc8\x14\x43\xcd\x10\xa7\x7d\xf3\x7b\xa1\xdf\x08\x48\x03\x01\x43\xfe\x1e\x7a\x84\x2c\x16\x16\x7a\x84\x80\x5d\xda\x3a\x64\xe1\xa1\x47\xc8\x6a\xfb\x21\xe7\x0e\x3d\x42\x61\x93\xf3\x26\xc1\xd6\xe2\x1d\x12\x6c\x20\x0d\x1c\x0c\x09\x36\xf0\x5d\xc6\x48\x75\xff\x84\x35\xa8\x76\x3f\x9c\x5e\xdc\x3f\x1d\xa1\x12\x72\xee\xb8\xed\xae\xaf\xba\x3c\x19\x58\x96\x81\x0c\x5d\x3d\x21\x01\x36\xaa\x36\x24\xc0\x40\xea\x75\x0e\x09\x70\xe8\xd8\x31\x76\x35\x64\xbb\x40\x9a\x68\x13\xf7\xbe\xe9\xed\x65\xcc\x9b\x9e\x1b\x20\x4d\xdb\x09\x3d\x37\xf1\x0c\x2f\x63\xa4\x3a\x5b\x80\xa6\x37\x21\x8c\x84\x03\x9a\x29\x89\x21\x75\x0d\x6b\x3d\x59\x86\x3c\xe4\xae\x40\x59\x7e\x3e\xe5\xae\xf1\x5c\xff\xfb\xbf\x59\x7d\x7c\x3a\x56\x80\x5a\x9d\x35\x1d\x2b\xf1\x56\xff\x8c\xc7\x27\x29\x05\xba\xf2\x2b\x24\xa5\x61\x3a\x8b\x55\xc2\x43\x77\x08\xd0\xcd\xbb\x08\x79\x2a\xd0\x9a\xcf\x40\x9e\x1a\xc4\x9c\xfd\x2c\x1c\x1e\x72\x46\x60\x71\x0a\x68\x2e\x29\xe3\x32\x8d\x5b\xab\xe2\x92\x33\x02\x8b\xf3\x04\x73\xc9\x19\x81\x90\xd6\x2c\xbd\x13\xc0\x32\x84\x7e\xc9\x22\x81\xef\xcf\x26\x6d\xc3\x36\x2a\x1c\xb0\x77\x2f\x59\x24\xb0\xcc\x72\x5b\xb2\x48\x20\xe7\xb4\x67\xcb\x26\x2a\xe5\x4f\xaf\x4a\x9b\xd2\xff\x0f\xda\x0e\xdb\x38\x3e\xb4\xf8\xff\xa7\x4d\x2e\x98\xe6\x4f\x2f\xdb\xbe\x55\x2a\x67\x5c\x92\xcd\x25\xd9\x34\x1a\x74\xc9\x36\xd7\x47\x2d\x53\xe2\xb7\xa4\x96\xc0\xd2\xfb\xb4\xf4\x6c\x00\x4b\xfb\xd4\xd2\xb3\x01\x44\xf8\xff\xf2\x4f\x20\x0c\x1d\x5a\xf2\xcf\x55\x14\xc0\xdd\x36\x87\x5e\x88\xc6\xc7\xb3\xb1\xf4\x6c\x00\xab\xe2\xb1\x58\x3a\x36\x96\x94\x94\x23\x92\x73\x49\x49\x01\x8f\x0a\xcd\x25\x25\x5d\xfa\x22\x8c\x53\x5d\xfa\x22\x80\xe4\x9c\xde\x6f\x57\xb1\x89\xdd\x69\xf9\x54\x0c\x47\x03\x56\xf8\x54\x0c\x47\x5b\xa6\xd6\x18\xdb\xb6\x8c\x47\x03\x3c\x65\x34\x97\x64\x76\x49\x49\x3d\x63\x66\xd5\xdd\x91\x9b\x72\x32\x36\x39\xb7\x52\x52\x63\x3d\x97\x94\x14\x58\x3f\x34\xc0\x92\x92\x2e\x0b\x43\xfd\x3f\x63\x77\x93\x33\x3b\x93\x5c\x77\x7c\xee\x55\xf4\x0e\x5c\x24\xab\xc8\x0c\xc0\x33\x8f\xed\x3d\x24\x93\x49\x40\x03\x49\x8d\xb6\xb4\x7f\x83\xe7\xc7\x77\x20\x4d\xfa\x0e\x2e\xfe\x17\x04\xeb\x29\x7e\x15\xf3\xc4\x89\xc8\x48\x65\x9c\x4d\x52\x21\x28\x0a\xba\x91\x9f\x41\xd3\x8f\xa4\xd1\x9f\x4d\xea\xc1\x64\x95\x26\xf5\x10\xb4\xac\xbe\x58\x4d\xea\xa1\xd1\xa4\xea\x25\x1b\x4d\x1a\xb4\xdf\xbb\x9b\xc3\x35\x15\x5b\xa5\x65\xe3\xfa\x07\x4d\xa9\x48\xe3\xfa\x37\x15\x54\x8a\x15\x1b\xa7\x3e\x68\xb2\x16\x8d\x53\x1f\x1c\x95\x57\x5d\xfb\xbe\x5f\x30\x73\x52\xf9\x4e\xab\x99\xb4\x9f\xb7\x42\xfb\x83\x26\x28\x8d\x16\x0d\x4a\x2d\x71\xa3\x45\x83\x66\x25\x99\xc6\xc7\x6f\x4c\x7b\xcd\x57\x1b\xd3\x3e\x68\x47\xe4\x69\x23\x45\x83\x32\x97\xb0\x91\xa2\x8d\x8f\xef\x15\xd7\x68\xd1\x66\x72\xb6\x27\x8a\x16\x6d\xb4\xa8\x6a\xc3\x46\x8b\x06\x6d\xf5\x03\xa0\x45\x9b\xbe\x4e\xfc\xaa\x46\x65\x06\xb5\x67\xa4\x6c\x54\x66\xa3\x32\x55\xfa\x35\x2a\x33\xb0\x20\x6d\x35\x2a\xb3\xf1\xdb\x5b\x46\xa8\xc6\x6f\x0f\x0e\x75\xa8\x8d\xf0\x6c\xfb\x7b\x0a\x39\x53\x56\x7a\x70\x18\x29\x1b\x27\x3d\xa8\xdd\x0f\x91\x93\xde\x54\x6c\x29\xd3\x6b\xfb\x7b\x0a\x79\x89\x7a\xb9\x30\xd7\x83\x12\xb9\x35\xe6\x7a\xd0\xd6\xd8\xf2\x8d\xb7\xde\x28\x5b\xc5\x7c\x8d\xb2\x0d\x2c\xc6\xfb\x8c\xd1\x36\x7d\xb3\xe0\x77\x9e\x14\xca\x36\xf8\xbe\x8f\x1d\x61\x1b\x2c\x6a\x5c\x1a\x65\x1b\x6c\x8b\x5f\x26\x73\x3d\x38\x16\xef\x63\xe6\x7a\xb0\x69\x23\xdc\xcc\xea\x09\x36\x5d\xc5\x9a\x89\xe4\xc1\xf7\x93\x41\xac\x11\xc9\xc1\xbe\xb8\x3c\x44\x72\xb0\x1d\xef\x9f\x77\xcf\xb3\xd6\x88\xa9\x05\x4d\x6d\x59\xb0\x98\x0a\xd5\xd4\x96\x05\xc7\xe2\x3d\xae\xb6\x2c\x58\x3e\x1f\x9b\x5c\xb0\x96\xd5\x89\x32\x44\x36\xa5\x65\xc1\x61\x35\x99\xa6\xb4\x2c\xf8\x9a\xc5\xda\x08\xf5\x60\xdd\xbd\x3f\x09\xf5\x26\x0b\x60\x4c\x93\x05\x08\x36\xcd\xf7\x9a\x24\x40\xb0\x9a\xdf\xd0\x24\x01\x82\xc3\x64\x86\x26\x07\x10\xac\xfa\x69\x34\x9a\x3f\x78\xee\x6d\x2e\x3e\xd1\xdf\xd2\x54\x56\xdb\xa1\x46\xe1\xb7\xf6\x3e\x4f\xb9\x62\x14\x7e\x70\x2c\x09\x43\x1b\x85\x1f\x7c\xd5\xc0\x34\x02\x3f\xd8\x3e\xae\xab\x52\xb3\x56\xef\xf3\x94\x33\x27\xfa\x83\xed\xf0\x88\x11\xf5\xc1\x41\xad\x37\xa2\xbe\x99\x3c\xaf\xc4\xb3\x49\x0c\x04\x5f\x75\xc6\x4d\x5e\x20\x58\x37\xc3\x1c\xe9\x1f\x6c\xbc\xc8\x46\xfa\x37\x2d\xb6\x54\x82\x36\x99\x81\x56\x67\xbe\xd3\x61\xb8\x1a\xc9\x02\xc8\xfd\x35\x59\x80\x66\x02\x92\xb7\x8d\x09\x48\xad\x5c\x8c\x7c\xa5\x30\x22\x58\xb4\x35\x6c\xc2\x88\xf6\x84\x11\x87\x3e\x47\x4d\x14\x11\xac\x9f\xa2\x03\x84\x11\xc1\x42\x4f\x35\xc5\x6d\x2d\xcb\x91\x2e\xc6\x3d\x51\x44\xb0\xb1\x3a\x9b\xbc\x43\x53\xdb\xe6\xb9\x96\x77\x68\x26\xd3\x2b\x5b\x6d\x22\x86\xd6\x93\x89\xf6\x1c\x88\x0e\x9a\xfe\x57\xfa\xa4\x37\x49\x86\xe0\x6d\xde\xdf\x04\x0c\x4d\x92\x41\x8f\xd0\x26\x62\x08\xde\x95\x30\x9a\x80\xa1\xc9\x28\xa8\x6e\x6d\x32\x0a\x41\xe9\xb5\xdd\x64\x14\xda\xe9\xe1\x7b\x0f\xc4\xe5\x4e\x3d\x9a\xce\xd3\x4d\x5c\xd1\xf8\xf6\x45\xb1\x89\x18\x82\x66\x8a\x6d\xe3\xdb\x37\x41\x44\x25\x9a\x69\x82\x88\xa0\x74\xdb\x6e\x82\x88\xa6\xac\x4c\xe5\x6a\xe3\xdc\x07\xf5\x4a\x42\x71\x45\x1b\xae\xdb\xe6\xa3\xae\xdb\x88\x47\x41\xd9\xf1\xdf\x9b\xf9\xef\x0c\xc8\xa6\x3a\xac\x3d\x11\xc3\x6e\xce\x71\x13\x31\x34\x66\xbb\xec\x7f\x63\xb6\x07\xfb\x2b\xc6\x98\xed\xed\x72\x6c\x7e\x53\x26\xf0\x04\x9b\x15\x89\x9a\x58\xa3\x3d\xf1\xc5\x6e\xed\xb0\xc6\x58\x0f\x0e\x85\xbc\x4d\xa8\xd1\xc4\x15\x7a\x88\x37\x71\x45\xb0\xec\x7f\xe2\x85\xb7\xeb\x3d\xc1\xfb\x79\xc7\x7a\xca\x58\xf1\x41\x99\x29\xd6\x58\xf1\x8d\x15\xaf\xed\x77\x63\xc5\x37\x35\x64\x5e\xfe\xac\xf8\x66\xea\x8e\xbe\xdc\x4d\xc0\x12\xfc\xd8\xc1\x4d\xc0\x12\x1c\xfc\xe6\x26\x5e\x09\x6a\xf1\xdc\x89\x57\xda\x4c\x45\x9f\x5f\x89\xe2\xb0\xa6\x38\x4c\xd9\x48\x13\xc3\x04\xa5\xdf\x5e\x13\xc3\x34\x96\xbc\x5a\x95\xc6\x92\x0f\x0e\x95\xd6\x8d\x25\xdf\x58\xf2\x0a\x3b\x1a\x4b\xbe\xb1\xe4\x3d\x15\xa2\x9f\xe0\xd9\x2d\x87\x2b\xfc\x09\x4a\xf7\xbe\x26\xfa\x69\xa6\xdc\x28\xa0\x68\x2c\xf3\xa0\xc9\x03\x34\xe5\x5a\xc1\xf1\xd7\x17\x38\xdc\x07\x4d\x11\x6b\x13\x10\x35\x26\xba\xac\x6f\x89\x88\xca\xc4\x7d\x89\xda\x12\xeb\x04\x4d\x01\x48\x89\x75\x4a\xac\xa3\x71\x63\x89\x75\x82\xe3\x78\xff\xda\x6e\x53\xb3\x5b\xcb\xb6\xb2\x2d\x37\x61\xb5\x5b\xb7\x29\xeb\x7d\x7d\xfc\xb1\xd3\x26\x27\x1a\xeb\xa7\x44\x31\xc1\xe1\x25\x54\xa2\x98\xe0\x90\x2d\x28\x41\x4c\x69\x16\x60\xad\xa6\x12\xc5\x04\xcb\xf2\x6e\x5a\x6c\x5a\x72\x18\x39\x4f\x51\x4c\xd0\xf4\x5e\x2f\x51\x4c\xbd\x51\x4c\x8e\x5f\x14\x53\x66\xfe\x5b\xe9\xa8\x84\x2c\x41\x3b\x32\xc8\x97\x90\xa5\x32\xf3\xe6\x43\x8a\x95\x62\xac\xa0\x54\x1a\x95\x28\xa6\xb8\xe8\x0a\x1d\x8a\x8b\x1e\xb4\xac\x41\x5d\xc5\x45\x2f\x91\x8d\x25\x7a\x4a\x64\x13\xb4\xdd\xe1\x8a\x6c\xca\xdc\x18\xab\x07\x15\x67\x3d\x38\xfe\xfa\xa4\x63\x53\x52\xa5\xf5\x77\x89\x4f\x82\x23\xcb\xe3\x56\x29\xa9\x2a\xed\x6d\xb5\xb1\x2e\x5e\x78\x50\xa6\x6e\x96\x62\xa9\x12\xb2\x58\x91\xa3\x84\x2c\x41\x2d\xab\xdd\x1c\x47\x56\x78\x5c\x18\xe4\x25\x18\x09\x4a\x53\xcc\x12\x8b\x04\xcf\x6e\x3e\xea\xd8\xd2\xa6\x76\xfd\x3a\x8e\xf7\xd8\x52\x38\x1c\xdd\x53\x0a\xa1\x2a\x4d\xa6\x5e\x11\x55\x0c\xf2\xa0\x96\x08\x87\xe2\x8f\x07\xeb\xf2\xc9\x58\x59\x0c\xf2\xa0\x6d\x9e\x70\xc1\x4e\xc5\x33\x5f\x3e\x9e\x36\x9e\x79\x65\x9e\xbf\x96\x95\xa5\x52\x29\x68\xea\x7a\x4b\xfc\x13\x94\xc6\x1f\x25\xfe\xa9\xb4\xa9\x5d\x4c\x2c\x2b\x35\x48\x41\xb3\xe8\x6b\x31\xdb\x83\x66\x1a\x7a\x09\x70\x82\xf5\x5d\x2c\xac\x44\x38\xc1\x21\x83\x55\x22\x9c\xe0\xf0\xfe\x2b\xfe\x7b\xf0\x7c\xd2\x36\xb7\xe5\xc1\xbb\xb2\x59\x89\x83\xea\xe7\xb6\x2c\xfe\x9a\x33\x78\x50\x26\xa7\xd6\xef\x3d\x03\xb7\xc5\xcf\x56\x84\x13\x1c\x16\xe3\x2c\x11\x4e\x25\xc2\x59\x34\xca\x2e\x11\x4e\x50\x4b\x86\xca\x12\xe1\x04\x3f\xc9\xb5\x52\x50\x14\x3c\x9f\xcc\x89\x0a\x7a\x4a\x83\xdb\x84\xaa\x25\xe8\x09\x9e\xdd\xf2\xa5\x82\x9e\x7a\x42\x97\x9f\x54\x5a\x09\x5d\x82\x45\x31\x42\x99\x7f\x12\x7c\x57\x8f\xe4\xfe\x1e\xed\xf3\xaa\x90\xdc\x28\xc1\x4c\xb0\x59\x66\xa2\x04\x33\xc1\xf2\x89\xea\x2e\xc1\x4c\xb0\x49\x54\x97\x58\x26\x78\x0e\xcc\x27\x9d\x53\xd6\x4e\x34\xd4\x97\x60\x26\x58\x34\x9e\x28\xc1\x4c\xb0\x69\x36\x56\x82\x99\xe0\xc7\x10\x2a\xc1\x4c\xa5\x07\xd6\xf2\x71\xef\x84\x2e\xc1\xaa\x9d\x5e\x09\x5d\x82\x67\xb7\x9c\xb9\xd8\x25\x58\x9e\x1f\xe3\x3f\x1d\xaf\x4b\x68\x13\xfc\x18\x41\x25\xb4\x09\x9e\x3f\x9c\xdb\x28\xb6\x29\xb1\x4d\x9c\xbd\x12\xdb\x04\x3f\x4b\xdd\x96\xd8\x26\x58\x2d\xfc\x54\x62\x9b\x6a\x2e\x56\x06\xa8\x12\xc9\x04\x3f\x46\x4d\x89\x64\x82\xed\x7d\xe1\x8b\x64\x82\x85\xc3\x53\x22\x99\xe0\xc7\x08\x2a\x91\x4c\xb0\x6a\xa4\x50\x22\x99\xe0\xf9\x4a\x9f\x74\xfd\x1e\xfc\x2c\x47\x59\x42\x99\x60\x51\x8b\x52\x22\x99\xe0\xf9\x64\x9e\x4c\xe9\x8b\xe0\xc7\x07\x2a\xd1\x4d\xb0\xfe\xf5\x9c\x88\x6e\x82\x75\x8f\x34\x2d\xd1\x4d\x3d\xa1\xcc\x8f\x99\x53\x42\x99\x60\x95\xc8\x2a\x91\x4c\x3d\x31\xca\x8f\xaf\x51\x42\x94\x60\xb3\x2c\x45\x09\x51\x82\x2f\xd3\xaa\x84\x28\xc1\xd7\x84\xe5\x12\xa2\x04\x5b\xbd\x07\xe1\xc4\xbb\x1f\x5b\x04\x67\x09\x0e\x82\x9d\x00\x29\x59\x87\xea\xde\x81\x09\x18\x4a\x74\x10\xfc\x94\xc9\x97\xe8\xa0\xba\x67\x2e\x4a\xa8\xa4\x1d\x82\xa6\x5f\x56\xc9\x3a\x04\x4d\x5a\xa3\xc4\x10\xc1\x51\xce\x49\xd2\xa1\x4e\xaf\x4a\xc7\x21\x86\x08\x9a\xc2\xc2\x12\x43\x04\xcf\x6e\x39\x51\x31\x44\x70\xf0\xb6\x4b\x0c\x11\x34\x96\x4e\x49\x3a\xd4\x78\xbf\x20\x5f\xaa\xce\x27\x38\xd4\xeb\x97\x3a\x9f\xca\x24\x0e\xcb\x91\x57\x29\x8a\x09\x1a\xeb\xac\xc8\xf4\xa0\x4c\xb1\x2e\x65\x32\x41\x13\xa5\x17\xfb\x3f\x58\x17\xc5\xe6\x45\xcd\x07\xa5\x66\xbc\x88\xf9\xa0\x7d\x52\xa3\x55\xc4\x7c\x5d\x6e\x41\xca\x14\x8b\x98\x0f\x4a\x8b\xae\x22\xe6\x83\x52\xb0\x5c\x12\x07\xc1\xf3\xc9\x9c\x14\x81\x1f\x34\xe5\x0a\x45\xe0\x07\xcf\x6e\x8e\xc3\x9d\xca\x5a\x12\xba\x87\x15\xcd\x1f\x3c\xbb\x39\x77\xb7\x2a\x1d\x6c\x45\x98\x45\xd5\x07\xeb\xf2\x6a\x17\xb2\x3e\x68\x32\x61\x45\xd5\x07\xa5\x5b\x63\x51\xf5\x35\x1d\x47\x2c\xb4\xa2\xba\x83\xe3\x15\x16\x54\x77\x99\x1e\xaf\xaf\x78\x99\x6d\x11\x34\x4d\xe8\x8a\xc2\xae\xf8\xff\xcb\x12\x2b\xa0\xc8\xdd\xa0\x99\xab\xd7\xa9\xdd\x60\x5d\x44\x04\x9d\xff\x1f\x1c\xa6\x3a\x74\xfe\x7f\x8f\xda\x5d\xe8\x94\x4e\xed\x06\xe5\xad\xdd\xa9\xdd\x9e\x9a\x8e\x45\x94\xd0\x09\xd4\xa0\x34\x9c\xec\x04\x6a\xd0\xb4\x45\xea\x6a\x3a\x82\x52\xe4\xd8\x49\xd6\x9e\x62\x8d\x85\x74\xe9\x8a\x35\x82\xd2\xf3\xaa\xf3\xcf\x7b\xa6\x01\x2c\xcb\xbb\xad\x6c\xcb\x4c\xb4\xbc\x9c\xba\x79\xe0\x3d\xad\x4c\x17\x5e\x58\x57\x4b\x11\x14\x83\xb2\x9b\x0e\x1d\xac\x8b\xa9\x51\x9d\x97\x1d\x94\x55\x76\x3b\xad\x18\xd4\xfa\xfe\x31\x67\x10\x7b\x7b\xe1\xd2\x75\xf6\x76\xd0\x58\x5f\x9d\xbd\xdd\x37\x67\x95\x5f\x77\x57\x46\x1f\xd4\xea\xaa\x91\x8f\x41\xfb\xbe\x9f\x6c\x36\xe5\xa1\xcf\x4b\xb8\x73\xbc\x3b\xa9\xb8\xbc\xbb\x39\x34\x52\xb1\x1c\x86\x43\xdb\x1c\x5a\x86\xf9\x4e\x2b\x06\x45\x7c\x75\x45\xf3\x41\xe9\xfe\xd2\x55\x5c\x04\xb5\x6e\xf6\xda\x6c\xca\xaf\x36\x3f\xee\x4e\x3c\x06\x4d\x63\xa3\x4e\x3c\xf6\x34\x89\x5a\xcc\x7e\xeb\xea\xdc\x83\xa2\x3f\x3a\xf1\xd8\xbf\x2e\x77\xde\x31\x9d\x54\x0c\x6a\xfd\x93\x65\xb6\x3a\x27\x3d\x58\xdf\xe8\xa6\xb3\xd2\x83\x92\xc0\xeb\xca\xe0\xfb\xcf\x43\x9c\x71\xb2\x93\x8d\x41\x5b\x3e\x36\x39\x74\xb2\x51\x53\xe4\x4e\x36\x06\xed\xf0\xa4\x90\x8d\xfd\xe7\x0c\xf3\x4e\xee\xcc\xf2\xa0\x91\xc7\x9d\x57\x1e\x94\x74\x60\x27\x2e\xfb\xcf\xe1\xe6\x9d\xdc\xc9\xc6\xa0\x99\x97\xd4\xd5\x68\x74\x4a\xd2\xc4\xba\x4e\x49\x06\x4d\x47\xce\x4e\x49\x06\xcf\x6e\xb9\xac\xa4\x64\x50\x4a\x5b\x3a\x25\x19\x94\x25\x38\x3a\x25\xd9\x77\x67\x90\xf7\x63\x57\x7e\x11\xd4\xea\x37\xc7\x2a\x0f\xd6\xc5\x5a\xc8\x9d\x57\x1e\xac\xc7\xc7\x6e\x6e\x9b\x75\xb8\x9d\x3b\xc1\x19\x6c\x8a\x5d\x3a\xc1\x19\x7c\x0d\x3d\x9d\xe0\x0c\x96\x35\xef\xda\x4e\x70\x06\xdb\xe2\x19\x26\x38\x83\xe7\x28\x72\x4e\x14\x67\xb0\xf0\x01\x3b\xc1\x19\xac\x94\x70\x27\x38\x83\xdd\x22\x90\x9d\xe0\x0c\xb6\xef\xe2\x2b\xdd\xe1\x47\x64\xee\x1f\xaf\x0c\x56\x79\xb0\x5a\xfd\xba\xd3\x9b\xc1\x6e\xdd\x8b\x4e\x6f\x06\xdf\x3d\x91\x53\x27\x37\x83\x8d\x2a\xe9\xf4\x64\xb0\x5b\xf6\xa2\xd3\x93\x9d\x9e\x74\xa9\xc9\xc9\x60\x57\x33\xdb\xc9\xc9\xfe\x68\xc7\xfd\xe3\xea\xd0\x8e\xc1\x7a\xf8\x46\xbe\x78\x27\x27\x97\xe4\x55\x3a\x39\x19\xac\xef\x6d\x23\x27\x83\x5d\x01\x6e\x27\x27\x83\xd5\x42\x4a\x9d\x9c\x0c\x96\xe6\x81\x22\x27\x83\x5d\x47\xb6\x4e\x4e\x76\x72\xf2\xbd\x49\xe4\x64\xb0\x1b\xe4\x3b\x39\xd9\xc9\xc9\xc3\xdf\x77\x79\x1e\x7c\x95\xbd\x77\x6a\xb2\x93\x8e\x9a\xbe\x74\xd2\x31\x58\xb5\x86\xea\xa4\x63\xb0\x93\x02\x9d\x31\xde\x19\xe3\x0e\x96\x9a\xec\x8f\x82\xdc\xff\xda\xe4\x5a\x94\xb7\x6e\xc6\xfd\x4e\x4e\x06\xbb\x61\xbf\x93\x93\xc1\xf6\x89\x88\xe8\xe4\x64\xb0\x1b\xf5\x3b\x39\x19\x3c\x7f\xcc\x36\x67\xfe\x60\x5b\xcb\x77\x3a\xf3\xca\x2d\x2f\x7f\xcc\x2d\x7f\xf0\x63\x5f\x76\xfd\xb5\x7a\xcf\x29\xb9\x71\xec\xed\x60\xdd\x1d\xab\xe9\xdc\xbd\xe7\x94\x5c\x1e\xee\x76\xf0\x65\x8f\x76\x02\x36\xd8\x3f\xef\x07\x9d\x64\x2a\xed\x97\x77\x8c\xe3\x78\x07\xbb\xf5\x4b\x3a\x4d\x1b\x2c\x1a\xea\x77\x9a\xb6\x77\x8f\xa7\x27\xa3\xbf\x07\x9b\xc6\x9f\x06\x2a\x8e\x77\x70\x28\x62\xee\xc4\x6a\x70\xec\x06\x64\x62\xb5\xc7\xc9\x5e\x56\xbf\x25\x4e\x76\x70\x48\xa4\x75\x4e\x76\x70\xa8\x5e\xeb\x4a\xe3\x83\x85\x7b\xde\x95\xc6\x07\xeb\xa2\xdd\x78\x57\x1b\x1f\x1c\xe6\x00\x74\xa5\xf1\xc1\xb3\x5b\x9e\x76\xb6\x78\x70\x58\xb8\xb3\xb3\xc5\x7b\x0a\xe1\xdf\x80\xa7\x2b\x84\x0f\x0e\x85\xcb\x9d\x40\x0e\x0e\x45\xd2\x9d\x40\x0e\x0e\x69\xa6\xae\x28\xa7\x67\x8d\x87\xb7\x2d\x51\x67\xa8\x07\x07\x97\xaa\xf3\xd3\xbb\xb5\xab\x49\xdf\xae\xb4\xa6\x0f\x87\x96\x0b\xa9\x8e\xa6\x0f\xb7\x60\xf5\x51\xb7\x20\x2b\x35\x28\xfd\xee\x44\x79\xb0\xbe\xdd\x1b\x3a\x55\x1e\x1c\x56\xe5\xed\x54\x79\x50\x3a\xbd\x74\xaa\x3c\xd8\xd4\xb3\x77\xa2\x3c\x68\x26\xce\x75\xa2\x3c\x78\x97\xa0\xef\x44\x79\x90\xc5\xeb\xff\xf9\x18\xad\xda\xbd\x93\xf1\xef\xe8\x4f\xc6\x07\x8b\xaa\xb8\x4e\xc6\xf7\xeb\x3d\x65\x5f\xe6\x94\xd3\x6e\xd6\x5c\xbb\x4e\x65\x77\x2a\xfb\xd5\x64\x54\x76\x70\xb0\x54\x3a\x95\xdd\xa7\xc7\xce\xa3\xa8\xd8\x27\x38\xde\x11\x82\x77\xde\xa7\xdb\xe1\x51\x54\x6f\x1e\x1c\x1a\x72\x75\xb6\x78\x27\xd0\xdf\x61\x95\x40\x0f\x0e\xeb\x8d\x74\x02\x3d\x28\x7d\xc1\x3a\x57\x3c\x38\x2c\xf3\xd1\xb9\xe2\x3d\x45\xe3\xcb\xea\xb1\x50\x34\x1e\x1c\xda\x2a\x75\x45\xe3\xc1\xba\xac\x89\x2c\xbb\xa2\xf1\xe0\x50\xeb\xdc\x39\xe0\xfd\xf6\x10\x47\xb6\x9e\xa4\xfd\x19\x23\x7b\xd1\x6d\xfc\x64\x64\x07\x5f\x97\xf2\x64\x64\x9f\x1f\xd7\xe8\xdd\xb6\xdb\x96\x0a\x9d\xbc\x0e\x4e\x15\x3a\xc1\xb3\xdb\x9a\x6d\xcd\xb6\x24\x18\xe2\xee\x9c\xbc\xed\x53\x04\xb0\xee\x0e\xe4\xb2\x2d\x05\x6d\x3f\x5f\x30\x6d\x72\x9b\x77\xc7\x76\xdb\xe6\x22\x3d\x0f\xe3\x29\x04\x38\x17\xa7\xe0\x1b\x18\xd2\xc1\xc1\x99\x39\x19\xd2\xe7\xe2\x85\x90\x41\xe6\xa4\xf7\x83\xd2\x83\xe9\x64\x3e\x9f\x8b\x2f\xcd\xe8\x7d\xb2\x95\x83\x83\x5b\x73\x9a\xcf\x7b\x66\xa5\x85\xc5\x72\x8c\x27\x5b\x39\x28\xfd\x06\x4e\x93\x77\x83\x83\x5b\x73\x2a\xa1\x09\x9e\x4f\xe6\xe4\xd5\xd0\x04\xc7\x7b\x1c\x4a\x68\x82\x67\xb7\x5c\x5e\x35\x34\x41\xdb\xbe\xfe\x9a\xab\xbb\x7a\x42\x32\xda\x9d\x7c\xeb\xa0\x96\xdd\x27\x9d\x68\xac\xec\x45\xef\xf2\x53\x78\x12\x94\xb0\xe0\x14\x9e\x04\x3f\x26\xe7\x29\x3a\x09\xd6\x65\xcd\x08\x75\x0a\x4f\x82\xa6\x55\xc0\xa9\x1e\x3c\xf8\xca\x29\x9f\x3c\xf0\x73\xf3\x54\x46\x5b\x9c\x2a\x6d\x82\x5d\x13\x92\x93\xb9\x1d\x2c\x56\x93\x3f\x99\xdb\xe7\xf7\xfd\xce\x1c\x87\xb8\x23\x58\x35\x15\x3d\xc5\x1d\xa7\xe5\x12\xf2\xfa\x3a\xc5\x1d\xc1\xa1\x78\xed\x64\x64\x07\x9b\x22\xe0\x53\x28\x12\x1c\xd6\x3a\x3e\x85\x22\xc1\xba\x98\x73\x72\xaa\xda\x09\x0e\x55\x69\x27\x6b\x3b\x38\x4c\xff\x38\x95\x83\x07\xc7\x9e\x78\xf9\x14\xc3\x9c\x02\x16\x8d\xcb\xcf\xef\x7b\x4e\x52\x30\xfe\xbe\x1b\x90\xda\x1e\xbd\xf9\x4f\x01\x49\xb0\x59\xb2\xfc\x14\x90\x9c\x4c\x71\x0a\xf3\x64\x8a\x07\x87\xb9\x24\x27\x53\xfc\xe4\x80\x6f\x51\xdb\x27\x07\x3c\x58\xd5\x05\x9e\x42\x99\x33\x35\x3e\x8b\x52\xb8\x53\x90\x12\x94\x72\x8c\x53\x8d\xcf\x29\x6e\xb1\xce\xc7\x29\x6e\x09\x9a\xea\xdd\x53\xdc\x72\xa6\xf4\xe5\x9d\xdf\x7a\x12\xef\x41\x5b\x3d\x1c\xc4\xfb\xc9\xf4\xd5\x0e\xe2\xa4\xc1\x83\xd2\x07\xea\xa4\xc1\xcf\xc3\x3d\xc8\x1b\xf6\xa4\xb8\x83\x52\x59\x7c\xb2\x78\xcf\xe6\x82\x64\x7c\x3e\x99\xa7\x41\xc9\x2c\x9d\x04\x70\xf0\xec\x96\x6f\xa0\x80\x83\x7a\x4f\x81\x00\x3e\xd3\xec\x67\xd9\xdc\x65\x1e\x65\x50\x7a\x68\x9c\x74\x66\xb0\x2e\x9b\x6f\x20\x34\x83\x62\x87\x9d\x84\x66\x70\x1c\x9b\x4d\x8e\xa3\x32\x1f\x21\x2f\xe2\x93\x6d\x79\xd2\x86\x9b\xe3\xa0\x0d\x83\x52\x41\x78\xd2\x86\x67\x79\x8c\xbc\xd8\x94\x43\x04\xa5\x29\xc4\x49\x2f\x06\xa5\x0f\xc5\x49\x2f\x9e\xdd\x17\x78\xff\x99\x00\x19\xd4\xf1\x6e\xf2\x05\x69\xb2\xa3\x77\xc4\xc9\x90\x0c\xd6\x65\x6b\x7f\xd0\xb8\xec\x64\x58\x06\xa5\x5c\xfb\x64\x58\x06\x4d\x11\xf3\x49\x15\x9e\x14\xd4\x96\xb0\xe2\xa4\xa0\x82\x3a\xde\x4d\x2e\xe0\xc8\x8d\x8c\xef\x7b\x52\x50\xe7\xf0\x58\x78\x1b\x28\x2c\x08\xca\x6c\xad\x53\x5d\x41\xb0\x2e\x5f\x3f\x3a\x85\x05\x41\xb3\xce\xcd\xa9\x60\x39\x28\x3d\x22\x4e\xa2\xea\x64\x3b\x7e\xed\x46\xe1\x04\xa5\x25\xd6\x49\xe1\x04\xeb\xa2\x6d\xf4\x49\xe2\x04\x65\xf2\xec\x49\xc3\x9c\x0c\xc5\xef\xe2\xaf\xbd\xdf\x90\x0b\x5d\x36\xb9\xd0\x0c\x45\xad\x48\x4e\x86\x62\x50\x47\xc4\xd7\xc9\x50\x3c\x69\x18\xf5\x23\x27\x0d\x13\x94\x3a\xef\x93\x86\x09\x4a\x5b\x99\x93\x53\x18\x3c\x9f\xb4\xcd\x59\x4d\x67\xe5\x8f\x39\xab\x94\x09\x2c\xca\x36\x4e\x52\x27\x28\xd3\x04\x4f\x65\x02\x41\x13\x87\x9e\xca\x04\x82\xe7\x93\x39\x79\x75\x02\x67\xea\x04\x8e\x98\x05\x27\x41\x74\xce\xdb\x6e\xd9\x46\xd7\x04\xa5\xb0\xee\xe4\x4e\x9e\xb7\xc3\x8d\x53\x78\xca\xec\x07\xa5\x04\xfd\x94\xd9\x3f\x6f\x97\xcd\xab\x44\x1a\x3f\xa8\xf7\xa5\x29\x8d\x7f\x32\x36\xdf\xe1\x82\xb1\x19\x94\xce\xbf\x83\xfa\x19\xf4\x8a\x45\xa6\x07\xbd\x12\x94\xb2\xf4\x41\xaf\x04\xa5\xfd\xf3\x90\x8b\x1f\x24\x8c\x8e\xca\x83\x84\x19\x24\xcc\xc7\xa6\x69\x93\x93\xcf\x9b\x7a\xd0\x2b\x41\xb5\x04\x5b\x43\x96\x3d\x78\x76\xdb\xb3\x6d\xb5\x2d\x6a\x22\x7e\xf0\xa0\x6a\x82\xf6\xd7\x5e\x5f\x9b\xde\x2f\x78\xae\xee\xa0\x4d\x82\x52\x31\x3f\x24\xc1\x47\x16\x91\x5d\x74\xad\x1b\xb4\x49\x50\x26\x1f\x0c\xda\x64\xd0\x26\xfa\xc5\x0d\xda\x24\x28\xed\xc5\x06\x6d\x32\x56\x97\x2d\xb2\x66\x10\x22\x41\xe9\x3a\x3d\xe8\x90\xa0\x94\xe4\x0f\x3a\x64\x70\x4e\xad\xa0\x3b\x38\xa7\x41\xe9\x74\x3d\x48\x93\x41\x74\x58\x93\x76\x10\x1d\x41\x99\x52\x31\x88\x8e\xa0\x74\x1d\x18\x44\x47\x50\x6c\xe9\x21\xf1\x1e\xac\x8b\x86\x74\x43\x9b\x92\xa0\x34\x99\x1d\xfc\xd5\xe0\xd9\xcd\x47\x0f\xdb\xbc\x66\x6c\x72\x9e\x9b\xd7\x4c\x5e\x5a\x83\xc3\x1a\x94\x22\xd9\x61\x4e\xdb\x20\x7e\x34\xa9\x1b\xc4\x4f\x50\x2d\xef\x8f\x41\xfc\x0c\xde\xac\x75\x70\xc7\xf6\x9e\x7c\x64\xc1\xe2\x0b\xf2\xe8\x8e\xef\x7b\x0a\x39\x53\x22\x26\x28\x5d\xab\x07\x11\x33\x24\xe3\xb5\x7d\x1b\x14\x4b\x50\xb2\x3d\x83\x62\x09\x0e\x2b\x62\x0c\x8a\x65\xfc\x3c\x80\xf9\x45\x0e\x8a\x22\x28\x7d\xab\x87\x34\xfb\x20\x32\xac\x4d\x3a\x88\x8c\xa0\xf4\xc5\x1e\x44\x46\xf0\xec\x96\x2f\x65\x98\x06\xa5\x57\xf6\xe0\x97\x06\x4d\x40\x35\x48\x91\xa0\xcc\x2f\x1b\xa4\xc8\x48\xf3\x8f\x45\x43\xb7\x21\xcd\x1e\x94\x49\x27\x43\x96\x7d\xf0\x4b\x15\xbb\x0e\x7e\x69\x50\x74\xea\xe0\x97\x0e\x89\x71\x0b\x4d\x0e\x89\xf1\xa0\x4c\xd9\x18\xaa\x81\xc7\xee\x4b\x5d\x5d\xde\x65\x50\x26\x12\x0d\xde\xe5\xc8\x2a\xaf\x8b\xea\xd3\x41\x9e\x04\xa5\xbe\x67\xf0\x08\x87\xa4\xb4\x49\x95\x83\x49\x18\x94\x89\x44\x83\x49\x38\x24\xa5\xcd\x70\x1c\x5c\xc2\xe0\xcb\x32\x1a\x5c\xc2\xc1\x12\xd4\x56\x6c\xf0\x04\x83\xe3\xb7\xff\xc1\xa8\x3d\x58\x86\x83\x8a\xd2\x37\x61\x50\x51\xc1\x4a\xf0\x0e\x2a\x2a\x38\x74\x76\x1f\x44\xd4\x60\x19\x5a\x4a\x70\xf0\x0c\x47\xcb\x6c\x5e\x27\xcd\xfa\x1b\x0a\x60\x7f\x6e\x2f\x9f\x2f\x38\xac\xaa\x34\xf8\x7c\x43\xda\x58\x33\xac\xc1\xe8\x0b\x16\x4b\x28\x0d\x92\x6c\x58\x52\xd6\xfb\x8b\x24\x1b\x24\x99\x06\x56\x83\x24\x1b\x99\xe2\x66\xdd\x9f\x41\x6c\x05\xcf\x6e\x39\x05\x4e\xdf\xa8\x5f\x76\xcb\xe1\x32\xfa\x06\x4d\xa6\x51\xd4\xa0\xc9\x46\x2a\x54\x2d\x44\x33\x54\xa8\x06\x9b\x1e\xb4\x83\x24\x0b\x9e\x4f\xe6\x56\xd2\x64\x23\xf3\xd5\x4c\x15\x18\xac\xb8\x60\x55\x7f\x36\x58\x71\xa3\x67\x52\xbb\x77\x04\x95\x16\xac\x6f\x17\xda\x41\xa6\x05\x87\xf5\x1f\x06\x99\x36\xfa\x7b\xd5\x72\x3d\xe8\xb0\x61\xa5\xd5\x66\x93\x4b\xd4\x5d\x22\x77\x94\x17\x37\x62\x9f\x59\x9a\x66\xb0\xcf\x82\x55\x38\x3e\xd8\x67\x83\x7d\xa6\x07\xc0\x60\x9f\x0d\x3d\x23\x8c\x8c\xe6\x9c\x8d\xcc\x39\x5b\x2c\xf5\x3b\xd8\x5b\xc1\x26\x22\x1d\x2a\x48\x47\x96\x26\xd5\x4f\x64\x90\x6b\x63\xbc\x5f\x90\x4b\x44\x9b\x8d\x2b\x8e\x9a\x91\x80\x45\x35\xae\xf7\x0b\xf2\xa5\x0c\xa9\x71\x25\x7c\xf3\x1e\xa5\xc3\x82\x65\xf1\xda\xa7\xc3\xc6\x95\xb8\xcc\x0b\xe7\x7a\xff\xbe\x1f\xd8\x6e\x37\x57\xf2\x4a\x5c\xe6\xc7\x4f\x73\x05\xab\x25\x43\x06\x77\x69\x70\x97\x92\xa0\x19\xdc\xa5\x91\x32\xcc\xe5\x7d\xe6\xc9\xb0\xe0\xd0\xb5\x63\x90\x61\x63\xfa\xb5\x44\xff\x0f\x9a\x2b\x68\x16\x0c\x1a\x0c\xa7\x91\x79\x63\x8b\x8e\x4c\x83\xc0\x0a\x4a\xff\x96\x41\x5f\x8d\xe9\x0c\x3c\xe0\x04\x56\xd0\x94\xa3\x0e\x86\xd3\xb8\x5d\x35\xef\x2a\xa5\x93\xc1\xc1\x56\x1e\xf4\x55\xd0\x2c\xaa\x34\xe8\xab\xe0\xf9\x64\x8e\xcd\xc4\xb1\xa0\x76\xba\xc6\xc4\xb1\xc1\x4a\x52\x6b\x70\x11\x53\x17\x8f\xc8\x73\x7a\xf1\x88\x82\x72\xe3\x2f\x1e\xd1\x65\x16\x57\x86\x90\x8b\xe4\x0a\xd6\xc5\x4a\x39\x17\xcd\x15\x34\x33\xd8\x2f\x9a\xeb\x5a\x5c\xca\xfc\xf8\x2e\x2d\xdf\x82\xe6\x70\x2f\xe9\xdf\x2b\x25\x85\x8b\x75\x04\x2e\xae\x4e\xd0\xc4\x48\x97\x92\xc2\x60\x5d\x74\x23\xba\xcc\x8c\x0a\xca\x03\x78\xa9\x32\xbc\xf8\x41\x7b\x86\xe3\x8b\x1f\x14\xd4\x9e\xa1\xe6\xa2\xb9\x2e\x02\xcb\xdc\x81\x8b\xc0\x0a\x4a\x63\x88\x8b\xc0\xba\x32\x59\x6a\x31\xa7\xff\xa2\xa6\x82\x26\xb9\x72\x31\x7a\x2e\x02\x6b\x5f\x7c\x83\x8b\x94\x95\x37\xf7\x48\xeb\x8b\xc0\xba\xd6\xf7\xd8\x72\x17\x58\x38\x41\x59\x91\xee\x62\xe1\x04\xf5\x9e\x01\x31\x75\x91\x27\xa6\x29\x5f\xe4\x49\xd0\xd4\x05\x5e\xe4\xc9\xb5\xf9\x82\xcd\x6e\xbe\x60\x4b\xf1\x6e\x9e\xe7\x4b\x9a\xf8\x8a\x37\xb3\x70\xe9\x2f\xe6\x4c\x50\xef\xf5\x60\xce\x5c\x9c\x0c\xc6\xfa\xc5\xc9\x08\x9a\x49\x00\x17\xdd\x11\xd4\x7b\xee\xbf\xf7\x93\xb9\x92\x91\x6b\x17\xd9\x71\x29\xc8\xe3\x81\x5c\x72\xa6\x41\xf9\x2d\x5f\x94\x42\x70\x98\x4e\x73\x51\x0a\xd7\x4f\x39\x5b\xc6\xb4\x8b\x2c\x08\xca\xcb\xe2\x32\xd5\x3d\x28\x2d\x7e\x2e\x89\xd5\x4b\x2e\x94\xdf\x7b\xc9\x85\x06\xe5\x27\x7f\xc9\x85\x5e\x72\xa1\x5c\xbf\x4b\x2e\x34\x68\xdb\xe1\x93\x0e\x8d\x79\xb2\x1f\x7f\x30\x8f\xeb\xe2\xad\x04\x65\x0e\xfa\xc5\x5b\xb9\x0e\xd7\x3e\x83\xd4\x25\x0d\x1a\x34\x35\x50\x97\x2c\xe8\x95\x0c\xde\x62\x22\xd9\x25\x85\x17\x94\xfe\x4a\x97\x14\x5e\xb0\x2e\xd2\x4a\x97\x81\x3c\xa8\xf7\x51\x91\xc2\xbb\xca\xd3\x1e\x01\x76\x19\x67\x83\xf2\x8a\xbc\x0c\xb3\x57\xe6\x86\x2c\x2a\x96\x2f\xa9\xb2\xa0\x4c\x42\xbf\xa4\xca\x2e\x43\xef\xe1\x97\x58\xef\x37\xb8\xac\x3e\xe9\xb2\xaa\xc6\x3a\x3c\xc7\x46\xd0\xa0\xcc\xbd\xbe\x24\xb3\xae\x2c\x99\xb8\x68\x3e\x70\x49\x53\x05\x65\xc2\xf7\x65\xa0\xbd\x64\xae\x0e\xa7\x65\xb8\x0c\x4a\xed\xdb\x65\xb4\xbc\x32\x45\x7b\x39\x7c\x54\xb5\x54\xd0\x3e\x9e\x29\xd5\x52\x57\xba\x2e\x2d\x4a\xc9\x2f\xa9\xa5\x4b\xd7\x25\x37\x4b\x66\x29\x28\x73\xc0\x2f\x99\xa5\x8b\x2f\xa2\x5f\xc5\xc5\x17\x09\xca\x14\xfb\x8b\x2f\x12\x3c\xbb\xe5\x39\x63\x8c\x04\x65\x52\xfc\x65\xec\x0d\x9e\xdd\xf2\xa5\x06\xdf\xa0\x7d\xde\x4d\x0e\xd7\xa8\x6a\xdd\x9d\xcb\xa8\x1a\x94\x84\xdc\xc5\x04\xb9\xae\x3c\x34\x4c\xba\xcb\xb0\x1a\xb4\x2d\x9a\xfa\x92\xa1\x09\xd6\x85\x5f\x76\x49\xd1\x04\xf5\xbe\x5c\x8d\xbe\x41\xbd\xef\x12\xbe\xc8\x65\x70\x24\x96\x2f\x83\x63\x50\x52\xe5\x97\xc1\x31\x28\x13\x8a\x2e\x16\xc5\x35\xdd\xbe\xc3\x27\xdd\xbe\xac\x97\x2d\x31\x78\x31\x1a\xae\xdb\x65\x4b\x04\x77\x29\x7a\x0a\xea\x7d\x59\x19\x1b\x83\x7a\xdf\xa3\xc6\xc6\xeb\xf6\xec\x46\x9c\x5d\x7a\xf8\x04\x25\x7f\x78\xc9\xc6\x04\xed\x78\xff\x98\xf3\xbc\x73\x9e\x5f\x5f\xe9\x3c\x0d\x97\x7c\x91\x69\xb8\x9c\x29\xdd\x5f\xb8\x3d\x53\xe9\x7e\x50\x5e\x90\x93\xa9\x30\x0d\x7a\x6c\x8b\x69\xd0\x0b\xca\x00\x37\x0d\x7a\x53\x76\x43\xd4\x38\x65\x37\x82\xe2\xc2\x4d\xe3\x60\x50\x72\x96\xd3\x38\x38\x8d\x83\x02\xc9\xb9\xbc\x5f\x9a\x71\xf0\xdd\x34\x6d\xca\x44\xd4\xc5\x61\xdc\x36\xdd\x69\xf8\x9f\xa3\x35\x0c\x06\xbb\xc1\x61\xb2\x1e\xa6\x35\xa9\x73\xa3\xa6\x44\x49\xb0\x6b\xb2\x36\x8d\x95\xc1\x2a\x36\x9e\xc6\xca\xc9\x8c\x10\x32\x4e\x66\x44\xb0\x5a\xb6\x61\x1a\x3e\x83\xef\x27\x31\xc5\x34\x7c\x4e\xc3\xa7\x98\x74\x1a\x3e\x67\x96\xb0\x30\x13\x63\x32\x1e\x82\xaf\xba\xe9\xc9\x78\x98\x46\x54\x41\xef\x34\xa2\x06\x5f\xc5\x6f\xd3\x88\x3a\xf9\x13\x42\xc6\x69\x48\x0d\xf6\x72\x9e\xfc\x89\x60\x37\xc5\x62\xf2\x27\x82\xaf\xf6\xe7\x93\x3f\x31\xf9\x13\x66\xf9\x4f\xfe\x44\xb0\x69\x14\x33\xf9\x13\xc1\x6e\x3e\xc5\x64\x4f\x04\x7b\xc5\x2c\x9d\xec\x89\x60\xaf\xc3\x07\xcb\xa6\x2c\x75\x71\x38\x7e\x8f\xc1\xe6\x9e\xaf\x8e\xcc\xd5\x78\xb0\x08\x96\x27\x27\x22\xd8\x2b\x22\x6f\x1a\xfd\x83\xc5\xa4\x9f\x69\xf4\x9f\xdf\xf7\x62\xe4\xc8\x64\x6b\xa6\x95\x2b\x62\xb9\x4c\xa3\x7f\xb0\x6e\x79\xa9\x4d\xa9\x99\x60\x37\xe7\x62\x72\x35\x82\x57\x57\x4e\xae\xc6\xb4\x48\x45\x7e\x88\x93\x5d\x11\x6c\x12\xe8\x53\x91\xd8\xb4\x20\x85\x5f\x98\x94\xcb\xfc\xab\xf1\x69\x2e\x86\x9c\x4b\xb0\xeb\x48\x3f\xe5\x5c\x82\xb5\x32\xe4\x4d\x39\x97\xf9\x7b\x4f\x29\x5f\x40\xa9\x04\x7b\xd5\x1f\xb4\x09\x9f\x84\xcc\xfc\xbd\x37\xd6\x5f\x76\x7e\xbf\x94\x0f\x27\xfa\x9a\x9c\x91\xa9\x94\xcc\x74\x83\xc9\x1a\x09\xf6\xf2\x6e\x60\x8d\x04\x87\x97\xe0\x64\x8d\x4c\x59\x1a\x33\x10\xa6\x2c\xcd\xfc\xe5\x3a\xc4\x09\x9e\x34\xd0\x34\x29\x41\x62\x72\x12\x41\xc1\x6e\xd5\xef\xc9\x2d\x99\x69\xe4\xb3\x34\xef\x0b\x75\x63\xc1\xfe\x5e\x1b\x65\x63\xc1\x62\xae\xde\x54\x36\x16\x3c\x9f\xb4\x9b\xb3\xb2\xda\x45\x14\xc2\x24\x78\x82\xc3\x94\x95\xc9\x40\x99\xa6\x16\xe8\xc2\x30\x29\x9a\xe0\x2b\x1d\x3f\x95\x7a\x05\xc7\x27\x4a\x65\xd2\x38\x53\xa9\x97\x2e\x09\x93\xc8\x09\x0e\x0a\x76\x4a\x33\x05\xcf\x6e\xb9\x44\xf2\x4c\x41\x59\xdc\x69\xaa\xf5\x9a\x59\xda\x70\xb1\x9a\xd7\xe4\xda\x04\xa5\xc2\x69\x32\x6d\x26\xd3\x26\x62\x6f\x32\x6d\x26\xd3\x46\x26\x7f\x32\x6d\x82\xf6\xf1\xbb\x64\xda\x04\x6d\x77\x43\x95\x76\x05\xc7\xf7\x6b\x2f\xb7\xe0\x48\x21\x7c\x0c\xde\xc9\xa7\x99\xf1\x64\xde\x52\xfe\xc9\x94\x09\x0e\xc5\xf1\x93\x29\x33\xe9\x3b\x33\x43\x27\x7d\x37\x63\xca\x90\x7c\x93\x96\x9b\x4c\x19\xcd\x1a\x26\x53\x26\x38\x4c\x2f\x9f\x4c\x99\x59\xbe\x34\xe2\x7a\xca\x63\x4d\xdd\x83\xfc\xa4\x49\xbe\x60\x95\xfa\x9c\x24\xdf\x2c\xc7\xb1\xdb\xcd\x71\x54\x7c\x3e\xb7\x85\x0a\x9c\x52\x5b\x2d\x03\xff\xe4\xa3\x04\x87\xb9\xfb\x93\x8d\x12\x3c\xbb\xe5\xac\xe4\xb6\x82\xc3\x0c\xfc\x69\xf6\xef\xa4\x0c\x55\x9c\x4f\xca\x30\x68\x9b\x47\x86\x32\x0c\x56\x0d\xbd\xa7\x2a\xa7\x49\x2c\xea\x7c\x33\x89\xc5\xa0\xcc\x33\x98\xc4\xe2\x24\x16\x4d\xce\x98\xc4\x62\x50\x5a\x3a\x4c\x62\x71\x12\x8b\x3a\xa0\x4c\x62\x31\x38\xbe\x1e\x7a\x62\x31\x28\x2b\x6a\x4d\x65\x4e\xf3\x34\x62\xc5\x34\x99\x5c\x99\xe0\x90\x95\x9a\x5c\x99\x49\x66\xea\xd0\x30\xc9\xcc\x60\x95\x79\x9f\x64\x66\xf0\xec\x96\x53\xa0\x33\xe7\x99\x89\x6b\x86\x27\xdd\x3d\x27\xb1\xa8\x6b\xc3\x24\x16\x83\xd5\x74\xae\x49\x2c\x4e\x89\x35\x9e\xd7\x94\x58\x0b\xbe\x56\x77\x9b\xcc\x9b\x39\xfc\x10\x62\x0f\x4d\x6d\x7f\x82\x66\x61\x9c\xa9\x5c\x29\xd8\xac\x42\x34\x4d\xf5\x0d\x56\x4b\x2f\xcf\xf1\x1e\x5a\x56\xbc\xf1\xfc\x29\x60\x9a\x0a\x98\x2c\x0d\x30\xb9\x43\xc1\xf2\xca\x01\x05\x4c\x53\x32\x4f\x37\x86\x49\xc7\x06\x9b\x5a\xc2\x29\x99\x37\x55\x1a\x09\x0c\x27\x1d\x1b\xac\xef\xdb\x94\x8c\x9d\x92\x79\xa6\xcf\x4f\xa2\x75\x72\x8c\x9a\x4f\x3a\x83\x07\x87\x35\x04\x26\xc7\x68\x72\x8c\x62\x86\x4c\x8e\x51\x70\x88\xe0\xa7\x54\xde\x64\x22\x99\x17\x3f\x99\x48\x93\x89\xe4\xe6\x31\x91\xe6\x7c\xab\x34\x73\xa7\xe8\xe4\xe0\x78\xdf\x28\x74\xf2\x94\xcb\x2b\x22\x90\x50\x0e\x0e\x4d\xf9\xa6\x5c\x5e\x70\x68\xb1\x32\x59\x4d\xc1\xa1\xc3\xdf\x64\x35\x05\xc7\x6e\x20\x51\xee\x34\x89\xee\x5a\x6c\x73\x9e\xaa\x96\x62\xdd\x4c\xa2\x7b\x12\xdd\x26\xae\x4f\xa2\x3b\xa8\xe6\xa5\x4e\x74\x4f\x19\x3f\x2b\x11\x4d\xaa\x3b\x28\xeb\xe2\x4d\x8e\xd4\xbc\x9d\x14\xad\xc5\x7e\x0a\xea\x1d\xa9\x68\xf3\xa9\x54\xea\x7d\xd6\x88\xf3\x60\x3f\xfe\x64\x11\xae\x49\xbb\x4f\x95\x54\xe5\x0d\x4f\xbc\xcf\x7b\xe4\xaf\xf8\xc3\x1e\x62\x19\x47\x6f\x51\x19\xc7\xe0\xf8\xbd\x7b\xb9\x34\x49\x38\x1e\x29\xf9\xb8\x89\xfe\xfb\xf3\x1e\xe5\x37\xdb\xca\xb6\xbc\x6f\x7e\x36\x75\x9b\x1c\xc6\xe6\xa3\xa7\x6d\x71\x81\xbf\x36\x0d\x9b\x86\xdd\x7c\xf4\xb2\x4d\x63\x5f\x9b\xa6\x4d\x33\x6d\x40\x2a\x9b\x6e\x9b\x6e\x9f\x7c\x7e\x73\xb7\xbc\x64\xf0\xd5\x8d\xef\x96\x97\xbc\x95\x56\x69\x72\x70\x4b\x42\x06\xaf\x5a\xbd\x25\x21\x6f\x31\x8a\x09\x4a\xb7\x18\x25\x28\xad\x88\x6e\x31\x4a\xf0\xec\x96\x03\x31\x31\x23\xf8\x1e\xef\x5f\x6b\x36\xb9\x46\x19\xd9\x6f\x73\x35\x82\x9f\x49\x3a\xb7\xe8\xe6\x96\xf9\x64\x68\xde\xc2\x8f\x60\xb3\x50\xd9\x2d\xfc\xb8\x15\x6a\x99\x06\x7f\x8b\x3f\x82\xc3\xd2\x3c\xb7\xf8\xe3\x5e\x4f\xbb\xe5\x14\x4c\xf3\x08\x0e\x6d\x29\x6f\x21\xc3\x2d\x3e\xd0\xfe\xfe\x16\x1f\x04\x07\xcb\xe4\x16\x1f\xdc\x72\x89\xda\xfb\xdd\xc4\x7a\x70\x68\x55\x79\x13\xeb\xb7\x5c\xa2\x40\xe8\xa6\xd6\x83\x83\xb3\x72\xcb\x25\xde\xcc\x3a\xb1\xcb\x4d\xc1\x07\xcb\x27\xa1\xc5\xcd\xac\xbb\x89\x7a\xb3\xc8\x6f\xa2\xfe\x4e\xcf\x4c\x53\x12\x6e\x0a\xfe\xfe\xfa\xd9\x65\xb0\xbc\x09\xf1\xe0\xd0\x1f\xf3\x26\xc4\x6f\x73\x33\xc4\x1b\x37\xd9\x1d\xb4\x2d\x6f\x89\x9b\xec\x0e\x9a\x7c\xeb\x6d\x62\xef\x6d\xa2\x85\xb0\xe1\xfe\xbe\x5f\xaa\x0b\x46\xce\x80\xc6\x0e\x36\x65\xe6\x37\x89\x1d\xec\x6c\xe0\x9b\x86\x0e\x0e\x71\xe1\xcd\x0c\xbc\x25\x21\xeb\xfd\xa4\x13\xf8\xe9\xe6\x99\xa7\x8d\xd2\xbe\x7f\x2e\x6e\xb3\xcd\xc5\x4d\xeb\x22\xb6\xc7\x4d\x2f\xdf\x7c\x44\x81\xc3\xcd\x47\x0c\xea\xf0\xc8\xd0\xd0\xb7\xf4\xa2\xc0\xe1\x26\x98\x6f\xe9\x45\x3f\x35\x3e\x62\x50\x47\xc4\xda\xcd\x47\x0c\x9a\x39\x26\x37\x1f\xf1\xa6\xb4\x45\x01\x37\xa5\x1d\x14\x9d\x7a\x53\xda\x37\x59\x2d\x0a\xb8\xc9\xea\xa0\x0e\x8f\xa9\xf4\xe5\xcd\x95\x2c\x97\x8d\x2b\x19\x94\x56\xba\x37\x57\xf2\xe6\x4a\xd2\xf2\x37\x57\x32\x28\x8d\x29\x6f\x22\xfd\xe6\x27\x12\xee\x37\xad\x7d\xbf\x7e\x62\xbe\x80\xd4\xbe\x53\xab\xb5\xaa\xe4\xbb\xd5\x6a\xdd\x6f\xad\x56\x4e\x41\x32\xf4\x4e\xae\x72\x25\xc9\x6f\x22\xf7\xb6\x8c\x9c\xdb\x47\xe4\x06\x87\x8c\xe6\x2d\x17\x79\xa7\x7c\x6b\xfd\xb8\xf3\x44\x6e\x70\xe8\x8f\x7d\x2b\xdf\x0a\x56\x1e\xe6\x2d\x17\x79\xa7\xfb\xbe\xc4\xe6\x4d\xe2\x06\x9b\x65\xf7\x6f\x12\x37\x38\x24\x0f\x6f\x69\xc7\xa0\xad\x6e\xbb\xb4\xe3\x9d\x1c\xe3\xfa\x49\xa4\x79\xcb\x31\x06\x6d\x8b\x7c\xbb\x95\x7d\xdd\x11\xc2\xab\x49\xe4\x37\x25\x1c\x1c\x95\x4c\xcd\xad\xa5\x4e\x50\x16\x1b\xbe\xa5\x1d\xef\xac\xcc\xbd\x6a\x39\x72\xf3\x43\x83\x95\xf7\x79\xb3\x43\x83\x45\x7d\xcf\xcd\x0e\x0d\x76\xbe\xe1\x2d\x39\x19\x1c\xd5\x1c\x85\x73\x2a\x37\xc0\x5b\x9d\x82\x0e\x16\xe3\xff\x4d\x41\x07\x5f\x0b\x04\xdf\x26\x18\xdc\xe9\xaf\xb9\x66\x59\xc6\x99\x9e\x74\x0f\x1c\xed\xf3\xf8\xcd\x16\x63\x08\xd6\xf5\xf3\xcb\x7e\xab\xfd\xac\x47\xfa\x79\x42\xac\xd9\x32\x8f\x6e\x6a\x00\x67\x9a\xfa\xd4\xc6\x6d\xb6\xcd\x4d\x3e\x7e\xd9\x66\xbf\x34\x40\x58\x3f\xed\xbf\x4d\xed\x5a\x7f\xff\x7d\xd0\x9e\x2d\xce\x02\xac\x6b\xa6\x47\x4c\xed\xcd\x66\x5a\x9a\xad\xeb\xf2\x28\xa6\x99\x4e\x61\x2f\xd6\x35\xed\x16\xee\xca\x3b\x1e\xd6\xf5\xf3\x88\xbe\xdb\x64\xc4\x3b\xd3\x0c\x9f\x6d\xeb\xb3\x2d\x23\x21\x3c\xdb\x7e\xd9\xb6\xd9\xf6\xb5\x6d\xcf\xb6\x66\x9b\x2b\xf4\x0c\x85\x77\x8f\x4f\x76\xf7\xf5\xfd\x6c\x3d\xdb\x56\x9f\x5d\x7d\xf6\x9b\xef\x88\x6d\x75\xf7\x34\x77\x5e\xe3\xd4\xde\x9c\x26\x58\x3e\x69\x89\x70\xc7\x09\xf9\x5f\x77\xec\x85\xe5\x93\x1e\x00\x77\x4c\x86\x07\x47\xb6\x6d\xb6\xd9\xef\x79\x57\x2c\x9f\xcf\xf3\x8c\xdf\x33\x85\x0d\xf7\xdc\x33\x6e\x64\xde\xf0\x7d\x67\x2a\xe7\x7d\xa7\xd7\xf7\xbe\x66\xcb\xd7\x96\x6f\x9a\xef\x64\xcb\x2f\x5b\x7e\x96\x9e\x7e\xb6\xc4\x41\x80\xac\x7f\x7f\xdf\xd1\xb7\xf7\xfd\x88\xd9\xac\x3e\x77\xdf\x91\xb2\xf0\x1c\xfd\x37\xdb\x36\xdb\x32\x9d\x20\xdf\x3f\x7d\xdb\x83\x67\x2f\xdb\x7c\x5f\x8a\xf2\xf7\xff\xfa\x0c\x3c\xff\xff\xd7\xfe\xf7\xff\xf1\xbf\xff\x4f\xff\xfb\xff\xed\xff\x3a\xff\x36\xfe\xf3\x1f\xff\x98\xff\xf6\x1f\xd7\xbf\x8c\xff\xf8\xdb\xff\x7c\xb6\xfe\xed\x9a\xf7\xbf\xfc\xdb\xfc\xc7\xfc\x7f\xff\xfe\x9f\xff\x18\xf3\x6f\x7f\xff\xf7\xbf\x3f\x9f\xca\xbf\xff\x1f\x00\x00\xff\xff\xf9\x94\xac\x5b\x06\x27\x04\x00"); -func _cgbf ()([]byte ,error ){return _dc (_ffc ,"Adobe-KR-3")};var _eeb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd5\x4f\x8f\xdb\x36\x10\x05\xf0\xbb\x3f\x05\x8f\xe9\x21\xb5\xf8\x77\x48\x20\x58\xa0\xd8\x3d\xd4\x29\xd2\x16\xd9\x76\x5b\xa0\xe8\x81\x94\xb8\x0b\x01\xb5\x2c\xc8\xf6\x61\xbf\x7d\x31\xef\xb9\x6e\x0e\xc1\x64\x7f\x26\x47\xc3\x67\xc9\xda\x3f\x1e\x9e\x0e\xcb\x7c\x31\xfb\x5f\xb7\xd3\xf8\xdc\x2f\xe6\x75\x5e\xa6\xad\x9f\x4f\xd7\x6d\xec\xa6\xf5\xb7\x79\xd9\xed\xac\x33\xd3\x3c\x5e\xfe\xfb\x13\x65\x3c\xd6\x75\xb7\xdb\x4b\x3e\x9e\x3f\x7e\xfd\xe9\xf9\xf3\xc7\x1f\xcd\xf5\xdc\x6f\xfa\x78\x78\x7a\x7e\x3f\x5f\xfa\xf1\xb0\xbc\x9e\x8c\xe7\xee\xe9\xba\xde\x3a\x18\xb3\xff\xda\xdf\xe6\xf3\x65\x7b\x37\x1f\x7e\x98\x4e\xad\x7f\x67\xa6\xfe\xaa\xfe\xcb\x36\xf5\x6d\x5e\xde\xcc\x87\xcf\x75\xad\x8b\xbd\x7f\xf0\x7c\x5d\xd7\x7f\xfa\xb1\x2f\x17\xe3\x60\x7d\x99\x50\x77\xfb\xc7\x2f\x75\xfd\xb9\x1e\xbb\xf9\x66\x9a\x17\x7c\x86\x8f\x5e\xfa\x76\x9e\x4f\x8b\xb1\xf6\xfb\x61\x48\xff\xfb\x6f\xef\x6b\x37\xf6\xd6\xe3\xcf\xdf\x0f\x4f\xe6\x2f\x6b\xec\x60\x5c\x0c\xc1\xfd\x7d\xf3\x3f\xbe\x9c\xa6\xfb\x2a\xc9\x3c\xc0\x38\x4f\x5b\x5d\xde\xfa\xee\x53\xb6\xc1\x3e\x18\x2d\xee\xc1\x48\xce\x02\xf2\x24\xff\x60\xb2\x4b\x19\x14\x48\x41\x49\x82\x52\x1c\x40\xd1\x62\x63\x01\x35\xd2\xa4\x54\xac\x52\xe2\xaa\x14\x40\xd8\x98\x0a\x48\x2a\x08\x1b\x33\x87\xd0\x22\xc5\x62\x88\x9a\x41\x5a\x8c\x78\xac\xaa\xdc\xa8\xc5\x88\xc7\x5c\xb5\x92\x1a\x28\x81\x46\xd2\x88\x51\x87\xdd\xa7\xec\xca\xab\x12\x8a\x14\xab\x1b\x5d\xc5\x15\x51\xa4\xd8\x02\xf2\x24\xaf\xe4\xb0\xb1\x46\x52\x04\x59\x90\x90\x04\xe4\x94\x46\xf6\x1a\xd1\xcb\x79\xa5\x4e\xea\xa4\x00\x62\xfb\xce\xf6\x11\xc4\xf6\x9d\xed\x13\x68\x24\x8d\x20\x4d\xc2\x07\x44\x88\x22\xc5\x65\x90\x23\x39\x50\x01\x05\x92\x06\x5d\xfc\x00\x4a\xa4\x04\xb2\xa0\x4c\xca\x20\x9d\xde\x27\xf6\x4a\xe8\xe5\x75\x7a\x9f\x31\x2a\x8a\x14\x1f\x40\x91\x84\x51\x7d\x04\x09\x09\x49\x20\x7b\x9f\x3b\xa9\x83\x30\x7d\xe1\xc6\xc2\x21\x74\xfa\xc0\xaf\x03\x45\x42\xd6\xb9\x42\xc5\x19\x51\x24\x48\x01\x59\x92\x46\x18\x4a\x04\x39\x92\x8e\x1a\x07\x0f\xf2\x24\x8f\x55\xdc\x18\x48\x01\xc4\xf6\x91\xa4\xd3\x47\xc7\x8d\x89\xa4\x73\x45\xcb\xf6\x42\xd2\x03\x45\xcf\x8d\x99\x94\x71\x45\x01\x15\x52\xc1\x2a\x5e\xb1\x92\x2a\x0e\xe4\x40\x8d\xd4\x40\x03\x68\x24\x8d\x98\x0b\x49\xd4\x89\x34\xa1\x7d\x02\x75\x52\x07\xb1\x17\xf3\xaa\xc8\x0b\xcf\x50\x68\xcc\x4b\x8b\x44\x7c\xdb\xa1\x31\x2f\x2d\x12\x71\x63\x86\xc6\xbc\x1a\xf2\x62\xf6\x8d\x79\x69\x91\x68\xd9\x8b\x79\x69\x91\x18\x49\xcc\xab\x31\x2f\xcc\xd5\x98\x57\x63\x5e\x38\x76\x63\x5e\x8d\x79\x71\x23\xf3\x6a\xc8\xcb\x22\xc2\xc6\xbc\x1a\xf2\x0a\x08\xba\x31\x2f\x2d\x12\x71\x93\x87\xc6\xbc\xb4\x48\xb4\xbc\x22\xf3\xd2\x22\xd1\x73\x23\xf3\x6a\xcc\x8b\x07\x62\x5e\x0d\x79\x05\x3d\xb6\x44\xe4\x25\x09\x0f\x4c\xd0\x70\x24\x59\x92\x7d\x30\xd9\xe3\x81\x11\xde\xf7\xc2\xfb\x3e\x78\x90\x27\xe9\x0f\x9f\xf7\x5c\x15\x48\x78\xac\x30\xbd\xa4\x48\x8a\x58\x95\x41\x89\x84\x47\x21\x08\x28\x93\xb2\xae\x0a\x01\x54\x48\x7a\xec\x12\x39\x57\x23\x35\xac\x62\xaf\x91\x34\x61\x15\xe7\xea\xa4\x8e\x55\x98\x2b\xe3\x06\x10\xfe\x62\xc6\xa4\x6f\x93\xfb\xaf\xba\xfe\x5f\xdf\x63\xf7\xf7\xca\x78\xdd\xb6\xbe\x5c\xf0\x16\xc3\xab\x43\x5f\x07\xf3\xd2\xef\xef\xc9\xf5\xb4\xea\x2e\xfc\xfb\x37\x00\x00\xff\xff\x30\xa4\x71\xa2\x53\x07\x00\x00"); -func _egc ()([]byte ,error ){return _dc (_bfgc ,"B5-H")};var _fedb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4f\x6b\xdb\x4c\x10\x87\xef\xfb\x29\xe6\x98\xf7\x90\xd7\x33\xfb\x4f\x2b\x10\x86\x92\x10\x70\x21\x4d\x69\x9a\xb6\x50\x7a\x90\xa5\x95\x11\xd4\x2b\x21\xcb\x87\x7c\xfb\x32\x33\xb6\x0b\x3d\x18\xd9\xcf\xce\xfc\xf0\x3e\xb3\xab\xcd\xc3\xee\x71\x57\xc6\x15\x36\x9f\x97\xa9\x7b\xcd\x2b\x0c\x63\xe9\x97\x7c\x9a\xce\x4b\x97\x61\x9f\x0f\x63\x31\x86\x2c\xf4\x63\xb7\x5e\x7f\xca\xa3\x3b\xb6\xb3\x31\xdc\xff\xfa\x7e\x5a\xf3\x71\x57\x86\x09\x9c\xd6\xf5\xe7\xf9\x52\x0b\xb0\xf9\x92\x0f\xe3\x69\x5d\xde\xe1\xee\x43\x3f\xed\xf3\x7f\xd0\xe7\x81\xf9\xcb\xd2\xe7\x65\x2c\x07\xb8\xfb\xd8\xce\x6d\xa1\xdb\xc2\xeb\x79\x9e\x7f\xe7\x63\x2e\x2b\xa0\xb0\x5c\x7a\x79\x9a\xcd\xc3\x73\x3b\x7f\x6a\x8f\x19\x36\x92\x75\xaf\x9d\xf7\x5a\x26\xab\xdf\xf2\x72\x1a\xa7\x02\x84\xff\x23\xc6\xbf\xfc\xeb\xfb\x9c\x81\x2e\x31\x6f\xbb\xc7\x97\x61\x38\xe5\x15\x7c\xba\xf4\xfe\x78\xdb\x3d\xc2\x4f\x02\x42\xb0\xc1\x85\xf4\xeb\x52\xfa\xfd\x79\xea\xf3\xe5\x7f\xc8\x6e\x1f\xa6\x73\x59\x21\xd9\xe4\x95\x91\xee\xb4\x9b\xfa\x7c\x9a\xdb\x2e\x2f\x6d\x39\x64\x03\xd0\x20\x22\x6e\xa1\xb1\xf8\xf4\xb4\xe5\x2d\xfc\x53\x61\x9c\xbb\x74\x8e\xbd\x92\x6b\x07\xe2\x30\x6c\x01\x00\xd0\x34\x48\x8a\x48\x90\x0d\xd1\x34\x68\x15\x59\x41\x81\xac\x69\xd0\x29\x72\x82\xaa\x98\x4c\x83\x5e\x91\x67\x44\x68\xbd\x69\x30\x28\x0a\x82\x6c\xe2\xf8\xa8\x28\x0a\x0a\x8e\xe3\x2b\x45\x95\xa0\xaa\xe6\xf8\xa4\x28\x31\xb2\xe8\x39\xbe\x56\x54\x0b\x72\xc8\xf1\xad\xa2\x56\x50\x88\x1c\xbf\x57\xb4\x17\x94\x88\xe3\x3b\x45\x1d\x23\x87\x15\xc7\xf7\x8a\x7a\x41\xce\x72\x7c\x56\x94\x05\x85\xc4\xf1\x83\xa2\x41\x50\xf2\x68\x1a\x52\x5f\x24\xbe\x3c\xd6\xd1\x34\xa4\xbe\x48\x7c\x79\x17\xac\x69\x48\x7d\x91\xf8\xf2\x11\x93\x69\x48\x7d\x91\xf8\xf2\x29\x7a\xd3\x90\xfa\x22\xf1\x15\xc8\x72\xbc\xfa\x22\xf1\x15\x5c\xc5\xf1\xea\x8b\xc4\x57\x88\x8e\xe3\xd5\x17\x89\xaf\x90\x12\xc7\xab\x2f\x12\x5f\x91\x3c\xc7\xab\x2f\x12\x5f\xd1\x23\xc7\xab\x2f\x12\x5f\x31\xf2\x68\x49\x7d\x91\xf8\x8a\x35\x8f\x96\xd4\x17\x89\xaf\x8a\x78\xb4\xa4\xbe\x48\x7c\x55\x9e\x47\x4b\xea\x8b\xc4\x57\x15\x79\xb4\xa4\xbe\x48\x7c\x55\x35\x8f\xd6\x5e\x4f\x64\xd8\x6f\x21\x51\x6d\xe5\x58\x5e\x8f\x1f\x7f\xe7\x3b\x7d\xbb\x63\xdd\x79\x59\x72\x59\xe5\x46\xcb\x1d\xe2\x03\x3f\x96\x7c\x7b\x3b\xcc\xd3\xcc\x5d\xf2\xf9\x13\x00\x00\xff\xff\x43\x08\xad\xb1\x49\x04\x00\x00"); -func _bada ()(*asset ,error ){_cgfb ,_adag :=_bebce ();if _adag !=nil {return nil ,_adag ;};_fbcbg :=bindataFileInfo {_ag :"UniKS-UTF16-H",_bc :120685,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493035,0)};_caaa :=&asset {_cd :_cgfb ,_dce :_fbcbg };return _caaa ,nil ; -};var _gag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x6b\xe3\xd6\x1b\x05\xf0\xbd\x3e\x85\x96\xf3\x5f\xcc\x3f\xf7\x79\xb9\x2f\x02\x31\x50\x66\x18\x08\xc3\xb4\x25\x29\xed\xda\x91\xae\x83\xa1\x91\x8d\xe3\x2c\xf2\xed\xcb\x79\x8e\x9d\x42\x17\xc1\xd1\x89\xf4\x48\xfc\x4e\xae\xae\xef\xbe\xde\x7f\xbb\xdf\x0e\x97\xf1\xee\xf7\xf3\x71\x79\xec\x97\x71\x7f\xd8\xd6\x73\x7f\x3d\xbe\x9d\x97\x3e\x3e\xf5\xe7\xc3\x36\x0c\xa2\xe3\x7a\x58\x2e\xb7\xc3\xf8\x58\x5e\x76\xa7\x61\xc0\xf5\x8f\xef\xaf\x97\xfe\x72\xbf\xed\x8f\xa3\xf1\xbc\xf5\xed\x74\x3d\x77\x1c\xef\x1e\xfa\xf3\xe1\xf5\x72\x7e\x1f\x3f\xfd\xb2\x1e\x9f\xfa\xff\xc6\xb5\xef\x91\xff\x76\x5e\xfb\xf9\xb0\x3d\x8f\x9f\x7e\x3c\x7c\x84\x8f\x6f\xa7\xd3\xdf\xfd\xa5\x6f\x97\xb1\x45\xd6\xb7\x35\x3e\x87\xbb\xaf\x3f\x77\xa7\x5f\x77\x2f\x7d\xbc\x8b\x39\x9f\x7f\x3c\x7c\xe6\x29\xf1\x97\x3f\xfb\xf9\xf5\x70\xdc\x46\xf9\x7f\x4a\xfa\x6f\xfc\xc7\xfb\xa9\x8f\x72\x9d\xf0\xd7\xcf\xe3\xda\xc7\x74\x9b\x77\xff\xed\xeb\xf1\x6d\xbb\x8c\xaa\xde\xae\xa1\xf0\xb1\x97\xe3\xda\x5f\x4f\xbb\xa5\x9f\x77\xdb\x73\x1f\xc6\x71\x4e\x29\xa5\x2f\xe3\x9c\xeb\xf7\xef\x5f\xf0\x4c\xff\x39\x63\x68\xed\x7a\xe5\x61\x65\x72\xbb\x22\xa5\xfd\xfe\xcb\x98\x86\x39\x09\x8f\x05\xc7\x9a\xcb\x30\x27\x65\xa2\x48\xb2\xe8\x30\x27\x63\x62\x48\x6a\x69\xc3\x9c\x9c\x89\x23\x91\xa4\x3e\xcc\x29\x33\xca\x11\x69\xc3\xec\xc2\xa8\x44\x94\x0d\xc3\x2b\xa3\x1a\x51\x9d\x30\xbd\x31\x6a\xf1\x04\xc9\x31\x7e\x62\x34\x45\x64\x09\xe3\x77\x8c\x76\xd7\xe7\xc4\xf8\x27\x46\x4f\x11\x35\xc1\xf8\x85\xd1\x82\xc8\x52\xc5\xf8\x95\xd1\x1a\x91\x29\xc6\x77\x46\x3d\xa2\xdc\x30\x7e\xcf\x68\x1f\x51\xf3\x34\xcc\x42\x29\x09\x29\x4f\x53\x19\x66\x21\x96\x04\x96\x5b\xd6\x61\x16\x6a\x49\x68\x79\x49\x6d\x98\x85\x5c\x12\x5c\xde\x8a\x0f\xb3\xd0\x4b\xfc\x6a\x8a\xf1\xf4\x92\xf0\xca\x56\x31\x9e\x5e\x12\x5e\xb9\x18\xc6\xd3\x4b\xc2\x2b\xb7\x86\xf1\xf4\x92\xf0\x2a\xe2\x18\x4f\x2f\x09\xaf\xe2\x09\xe3\xe9\x25\xe1\x55\x0a\x8a\x15\x7a\x49\x78\x95\x09\xcd\x0a\xbd\x24\xbc\xaa\xa0\x5a\xa1\x97\x84\x57\x75\x54\x2b\xf4\x92\x7e\xed\x1f\xe3\xe9\x25\xe1\x55\x27\x54\xab\xf4\xd2\xf0\x6a\x82\x6a\x95\x5e\x1a\x5e\xcd\x51\xad\xd2\x4b\xc3\xab\x55\x54\xab\xf4\xd2\xf0\x6a\x13\xaa\x55\x7a\x69\x78\x4d\x8a\x6a\x95\x5e\x1a\x5e\x93\xa3\x5a\xa5\x97\x86\xd7\x54\x51\xad\xd2\x4b\xc3\x6b\x9a\x50\xad\xd2\x4b\xdb\xed\x7f\x15\xf3\x09\xa6\x13\x33\x47\xb9\x4a\x31\xdd\x31\xab\x68\x57\x49\xa6\x41\x86\xf6\x71\x0b\x9a\xe9\xc2\x4c\xd1\xaf\x12\x4d\x57\x66\x19\x05\x2b\xd5\xb4\x33\xab\x68\x58\xc9\xa6\x7b\x2e\x92\x84\x8a\x8d\x6e\x96\x98\x29\x3a\x36\xc2\x99\x30\xcb\x28\xd9\x28\x67\x7a\x5b\x60\x69\x98\x8d\x74\x16\x74\x62\x09\x35\x1b\xed\x8c\x6b\xd3\x0c\x3d\x1b\xf1\x8c\x8b\xd3\x32\x8a\x36\xea\x19\x57\xa7\x35\x34\x6d\xe4\x33\x2e\x4f\x4f\xa8\xda\xe8\x67\xf4\x73\x43\xd7\x46\x3f\xa3\x9f\x67\x94\x6d\xf4\x33\xfa\x79\x43\xdb\x46\x3f\xa3\x5f\x16\xd4\x6d\xf4\xb3\xe5\xf6\x56\xc0\x3d\xe8\x67\xf4\xcb\x05\x85\x1b\xfd\x8c\x7e\xb9\xa1\x71\xa3\x9f\xd1\xaf\x08\x2a\x77\xfa\x39\xfd\x8a\xa1\x73\xa7\x9f\xd3\xaf\x14\x74\xee\xf4\x73\xfa\x95\x86\xce\x9d\x7e\x4e\xbf\x2a\xe8\xdc\xe9\xe7\xf4\xab\x8e\xce\x9d\x7e\x4e\xbf\x5a\xd0\xb9\xd3\xcf\xcb\xed\x55\x86\x7b\xd0\xcf\xe9\xd7\x04\x9d\x3b\xfd\x9c\x7e\xcd\xd1\xb9\xd3\xcf\xe9\xd7\x0a\x3a\x77\xfa\x39\xfd\xda\x84\xce\x9d\x7e\x4e\xbf\x49\xd1\xb9\xd3\xcf\xe9\x37\x39\x3a\x77\xfa\x39\xfd\xa6\x8a\xce\x9d\x7e\x4e\xbf\x69\x42\xe7\x4e\x3f\xdf\xf3\x5d\xab\xe8\x3c\x5f\xf7\x90\x74\x7b\xff\xa6\x61\xce\xf4\xcb\xdc\x15\x52\x45\xe7\x99\x7e\x59\x99\x4d\xe8\x3c\xd3\x2f\x87\x9f\x8a\xa2\xf3\x4c\xbf\xec\xcc\x32\x3a\xcf\xf4\xcb\x99\x59\x45\xe7\x99\x7e\x39\xfc\x54\x13\x3a\xcf\xf5\xba\x9f\x2d\x91\x69\xd5\xd8\xd5\x6e\xbb\x17\x7e\xc7\xfe\xfe\xb1\xe7\x2e\x6f\xe7\x73\xdf\x2e\xb1\xbb\xc7\xc6\x8a\xfd\xf2\xb0\xf5\x8f\x6f\x0a\xa7\xe3\x09\x57\xc5\xcf\x3f\x01\x00\x00\xff\xff\xb5\x37\x77\xc2\x55\x08\x00\x00"); -var _cdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x3c\x10\x06\xe0\xbb\x7f\xc5\x1c\xf7\x3b\xec\x17\x4b\xb2\x2d\x09\xca\x42\x49\x0e\xcd\x96\x6d\xcb\xa6\xdd\x16\x4a\x0f\x8e\x3d\x09\x86\x46\x36\x8a\x7d\xc8\xbf\x2f\xf3\x4e\xea\x1e\xc2\x24\x8f\x34\x2f\x13\x33\xde\x6c\xf7\xbb\x7d\x1a\x66\xda\x7c\xc9\x63\x77\xe0\x99\x4e\x43\xea\x33\x5f\xc7\x25\x77\x4c\x47\x3e\x0f\xa9\x28\x8c\xa5\x7e\xe8\xe6\xbf\x3f\x51\xba\x4b\x3b\x15\xc5\xc6\x87\xc7\xd7\x8f\x87\xe7\xc7\x0f\xb4\x5c\xf9\x6e\xdb\xfd\xee\x70\xbb\xce\x7c\xd9\xa7\xd3\x48\x4e\x7b\xfb\x65\xba\xf7\x13\x6d\x5e\xf9\x3c\x5c\xe7\x7c\xa3\x87\xf7\xfd\x78\xe4\xff\xa8\xe7\x93\xf8\xe7\xdc\x73\x1e\xd2\x99\x1e\x9e\xdb\xa9\x4d\x66\x3d\x38\x2c\xd3\xf4\x9b\x2f\x9c\x66\x2a\x61\x9c\x7a\xd4\x62\xb3\x7d\x69\xa7\x4f\xed\x85\x69\x9d\xe5\x0d\x27\x38\x78\xe3\x7c\x1d\xc6\x44\xa6\xfc\xbf\x2c\x9b\x7f\xfe\xf5\x36\x31\x99\x7b\xc2\x8f\x6f\xfb\x1d\xfd\x34\x64\x4a\xb2\xb5\xab\xab\x5f\x77\xff\xfe\x32\xf6\xeb\x2d\xeb\x75\xfc\x6e\xe8\x73\x9b\xce\x5c\xbc\x0b\xa6\x32\x4f\x24\xc5\x3e\x91\x0f\xc1\x0b\xd5\x25\xa8\x36\xa0\x08\x3a\x2a\xf5\x42\xd1\x08\x35\x7a\xab\xa9\x40\x15\x28\x82\x7c\x0b\x42\x63\xd0\x78\x29\x3e\x1a\x89\xb7\xf1\x24\x84\xe2\xa3\x09\x42\x2d\x6e\xa1\xf8\x68\x22\xc8\x29\x39\x21\x5b\x82\x6a\xa5\x1a\x64\x40\x5e\xc9\x83\xac\x50\xa7\x59\x1d\xb2\xac\x13\x62\x25\x56\xaa\x40\x1a\xcf\x1a\x5f\x83\x34\x9e\x35\xbe\x01\x75\x4a\x1d\x48\xa6\x77\x15\xfe\x36\x8a\x8f\x36\x80\xac\x92\x05\x45\x50\xa5\x24\x0f\x27\xba\x12\xd4\x28\x35\x20\x03\x0a\x4a\x01\x24\xd3\xbb\x46\xb3\x1a\x64\x39\x99\xde\x05\x8c\x8a\xe2\xa3\xab\x40\xb5\x12\x46\x75\x35\xc8\x2b\xe1\x49\xb8\x06\xc4\x4a\x0c\xc2\xf4\x51\x1b\xa3\x0e\x11\x64\x05\xd7\x65\x90\xef\xb2\xfc\xeb\x32\x76\x4b\xce\x9c\x66\xac\x3e\x36\x4e\xb6\x68\x48\xbc\xbe\x5a\xd3\x38\x49\x17\x3e\x7f\x02\x00\x00\xff\xff\xb6\xb5\x3e\x79\x86\x03\x00\x00"); -var _gdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x8f\x1c\xc7\x0d\xbd\xcf\xaf\xe8\xa3\x73\x70\xb6\xbe\x49\x02\x8b\x01\x0c\x29\x8b\xc8\x81\xe3\xc0\x8a\x93\x00\x41\x0e\xdd\x5d\x6c\x61\x81\x68\x76\x30\xbb\x0a\xa0\x7f\x1f\xf0\xbd\x95\xe2\x18\x3e\x58\xf4\xbe\x26\x59\x2c\xd6\x63\x91\x35\x77\x6f\xde\xbd\x7d\x77\x79\x7c\x59\xee\xfe\x72\x7b\xda\xdf\xfb\xcb\x72\x3c\x5e\xe6\xcd\x9f\x9f\x3e\xdd\x76\x5f\x36\xff\xf0\x78\x39\x9d\x72\x59\xe6\xe3\xfe\xf2\xe5\x4f\x88\xfd\xe3\x7a\x3d\x9d\xc2\xfe\xfd\xe7\xe7\x17\xff\xf8\xee\x72\x3c\x2d\x95\x7a\xf3\xd3\xf5\x55\x77\x59\xee\x7e\xf2\x0f\x8f\xcf\x2f\xb7\xcf\xcb\x37\xdf\xcd\xa7\xcd\x7f\xb7\x4c\x3f\x02\xff\xf1\x36\xfd\xf6\x78\xf9\xb0\x7c\xf3\xfd\x7a\x5d\x2f\xf9\xeb\x87\xf7\x9f\xae\xd7\x7f\xfb\x47\xbf\xbc\x2c\x19\x98\x5f\x26\xe4\xe9\xee\xcd\x0f\xeb\xf5\xcf\xeb\x47\x5f\xee\x2c\x5d\xff\xf3\xed\x4f\x7f\x7a\xff\xfd\xb7\x7f\xc4\x37\x7c\xfa\x9b\xdf\x9e\x1f\x9f\x2e\x4b\x4e\xbf\x4f\x69\xfc\x0f\xff\xeb\xe7\xab\xbf\xfa\x3a\xdd\xfd\xfc\xee\xed\x8f\xc7\xf1\xec\x2f\x8b\x4a\xa2\xce\x3f\x7e\x7e\xf7\x76\xf9\x67\x5e\x72\x5a\x4a\xaf\x2d\xff\xeb\x55\xf5\xef\x3f\x3c\x4d\x5f\xa8\x74\xea\xdc\xd2\xfe\x34\xfd\xf9\xba\xee\x7e\x5b\x2f\x1f\xfc\xb4\x2c\xf7\x29\x9d\x97\x65\xb9\xd7\x74\x8e\xbf\x34\xb7\x74\x5e\xee\xed\xe1\xe1\x0d\xfe\xfe\x8e\x5f\xdf\x3e\xe0\xaf\x3f\x24\x7c\x7d\x78\xf3\xfa\xf5\xe1\x2d\xbe\x3e\x3c\x9c\x63\x97\xbf\xf2\x7d\xca\x5c\xf2\xf2\xf4\x32\xfd\x20\x86\xd5\xee\xf3\x71\x5e\x72\x58\xfc\xf2\xd3\x29\xa7\xf4\x1a\xe3\xe3\x7c\xd5\x2e\xa1\x2d\x1e\xda\x11\x20\xa2\x5c\x4c\x4e\x5f\xc2\xd4\x1c\x1f\x47\xad\x81\x50\x21\xaf\xfb\x79\x19\x36\x02\xd9\x14\xc8\x76\x9c\x17\x69\xe1\x22\xef\x44\x76\x0f\xc4\x02\x99\x2b\x10\xd7\xf3\x22\x1d\x56\x07\xfd\x1c\x72\x5e\x44\x60\x75\xec\x44\xf6\x40\xc2\xaa\xb4\x23\x90\xd2\xc3\x4a\x53\x20\x03\x56\x45\xec\xbc\x88\x01\xd1\x0c\xc4\xd6\xf3\xa2\x39\x3c\x17\xa3\xd5\x91\xcf\x8b\xb6\x72\xba\xd7\xca\x5d\xd4\xd8\x85\x95\x1e\x08\x77\x51\x6d\x9c\x17\x53\x0d\x84\x56\x75\x1b\xe7\x25\xa7\x1c\x01\xd5\x8d\xd0\x04\x54\xc3\xae\xd1\x53\x8b\x30\x72\xea\x11\x64\x13\x42\xc8\x5f\xb2\x58\xaf\xd1\x7b\xb3\x7c\x5e\x72\x4e\x91\xc8\x46\xf7\x10\xd2\xb0\xbb\xb6\x52\x2b\x84\x34\xcd\x80\x32\xa1\x8c\xc4\x11\x2a\x84\x0a\x20\x04\xb1\x56\x42\x35\x92\x99\x2a\xa0\x46\xa8\x41\x8b\xee\x3b\xa1\x0e\x2d\x04\xb1\x0e\x42\x23\xa0\x42\x43\x21\x14\xc7\xd0\x33\xdd\x2b\x21\x9c\x55\x65\x10\x46\xc8\x00\xd1\xfd\x4a\x68\x45\xf4\x09\xd0\x46\x68\x03\x84\x4c\xac\x3b\xa1\x1d\x71\x35\x40\x93\xd0\x04\xa4\x80\x9c\x90\x23\xd4\x01\x88\xf9\x0a\x21\x3d\xc1\xd7\xc6\x7c\x85\x90\x9e\xe1\x6b\x63\xbe\x42\x48\xaf\x08\x62\x63\xbe\x42\x48\x2f\x34\x64\xbe\x36\xe4\xab\x62\xc5\x8d\xf9\x0a\x21\xbd\xd3\x17\xf3\xb5\x21\x5f\x20\x40\xdb\x98\xaf\x8d\xf9\x42\x5c\x1b\xf3\xb5\x31\x5f\xc8\x04\xf9\x0f\x21\xbd\xd2\x17\xf3\xb5\x21\x5f\x8d\x41\x30\x5f\x21\xa4\x27\x06\xc1\x7c\x85\x90\x5e\x70\x42\x1b\xf3\x15\x42\x7a\xe6\x8a\xcc\x57\x08\xe9\x64\xe1\xc6\x7c\x6d\xc8\x57\x0b\xa8\x93\x98\xbd\x63\x8f\x1d\x50\x87\x56\x97\xa8\x83\x84\x12\xeb\xb2\x13\xf2\xf3\xa2\x45\xc3\x7d\x27\x57\xbb\x76\x40\xb1\xa1\x6e\xc8\x6a\x47\x49\xa5\x01\x43\xd2\xb7\x93\x13\x02\xf7\xe4\x44\x0f\x02\x68\x29\x84\x36\x42\x33\x20\x70\xb5\x33\xf7\x3d\x36\xa4\xac\x8e\xce\x0d\xf5\x3d\x43\x2b\x32\xd1\x27\x0d\x8f\x16\x45\x9c\x43\x6b\x70\x43\x10\x32\x52\x06\x94\x09\x85\x61\x46\xf4\xa3\x15\x42\x05\x5a\x34\xac\x84\x6a\xac\x58\x12\xa0\x46\xa8\x01\xa2\x56\x27\x14\xdb\xae\xa8\xa1\xd1\x06\xa1\x01\x5f\x02\x48\x08\x09\x0c\xa9\xa5\x84\x14\x5a\x84\x8c\x90\x41\x8b\xa1\xae\x84\x56\x68\x35\x40\x1b\xa1\x0d\x2b\x12\xda\x09\x4d\x68\x75\x40\x4e\x28\x4e\x28\x55\x06\x81\xdc\x8f\xde\xe1\x1e\x86\x9d\xa1\x86\xd0\x4a\xc3\xce\x50\x3b\x42\xad\x48\x4e\x67\xa8\x1d\x71\x55\x1a\x32\xae\x8e\xe3\x40\x6d\x8f\x3e\x09\x4d\xf8\x82\xa1\x31\x54\x43\x5c\x19\x29\x34\xc6\x15\x42\x2b\x93\x43\x4e\x40\x68\xca\x71\x8e\x83\x57\xda\x58\x41\x39\xd0\x77\xf0\xfe\x82\xd0\x84\x82\x19\xbc\xbf\x20\xb4\xa0\xd2\x06\xef\x2f\x08\x2d\x19\x59\xe5\xfd\x05\xa1\x85\x9c\xe0\xfd\x05\xa1\x05\x37\xc0\x20\xbf\x20\x34\x75\x04\xc1\xda\x86\xd0\x84\x66\x33\x58\xdb\x10\x5a\x51\x7c\x63\x67\xbe\x76\xd0\x97\x71\xed\xdc\xf6\xce\x3d\x12\xe2\x1e\x77\xee\x11\x2b\x4e\xee\x31\x84\x26\x86\x3a\x49\xcc\xc9\x6d\x17\x74\xe9\x2f\xdd\xf5\xb7\x1a\xae\x8e\xc9\xac\x4c\x66\x05\x29\x98\xdc\xc9\xc4\xe6\x70\x0e\xc2\x1a\x90\x60\xa4\x66\x34\x64\x21\x23\x21\x34\xf7\x04\x48\x09\x29\x0c\x1b\x20\x23\x14\x27\x9f\x71\x41\x08\x19\x09\xa1\x19\x97\xa0\x90\x91\x10\x32\x0a\x7d\xed\x84\x76\xb8\xcf\x80\x26\x21\x92\x81\x86\x4e\xc8\xe1\x9e\xa1\x1e\x84\x0e\x40\x30\xec\x8c\xbe\xa3\x82\x91\x61\xe9\x99\x10\x2a\xb8\x11\x2a\x84\x0a\x20\xec\xb1\x57\x42\x15\x50\x05\xd4\x08\xe1\x82\x68\x08\xa2\x77\x42\x1d\x10\xb6\xcd\xb2\x10\xd4\x40\xae\x74\xcf\xe4\x84\xd0\x8c\x9b\x58\x78\xbd\x89\xc5\x8a\x35\x63\x45\xe3\x8a\x26\x08\x15\x2b\x1a\x0d\x0d\x86\xe8\x10\x62\xcc\xaa\x21\xab\x03\x59\x35\x66\x15\x57\x65\xe5\x1e\x59\x3c\x10\x9a\xc1\x48\x31\x66\xd5\x90\x55\xb4\x75\x31\x66\xd5\x50\x75\xcc\x3d\x4b\x0c\x42\x4b\x61\x10\xcc\x2a\xa6\x86\xae\x58\x91\x25\x06\xa1\x89\xe7\xc8\xa9\x01\x42\xba\x12\x62\x56\x31\x35\x74\x5c\x95\xc2\xaa\x83\xd0\xc4\xe4\xb0\xea\x20\x34\x2b\x56\x64\xd5\x09\x4a\xac\xa2\x27\x09\x47\x04\x08\x4d\x4c\x21\x47\x04\x61\x3b\x30\x42\x4c\x0e\xda\x41\x6a\xd8\x10\xdb\x01\x84\x74\x23\xc4\x4c\x60\x1e\xe8\xc6\x15\x99\x09\xcc\x03\xdd\x18\x17\x33\xb1\xe2\x12\x24\xbf\x38\x0f\x40\x68\xe2\x69\x73\x1e\x10\xce\x03\xe8\x36\xc2\x79\x00\x42\x13\x79\xcf\x79\x00\x42\x13\xc9\xc4\x3b\x43\x38\x0f\x60\x86\x15\xde\x19\xc2\x3b\x83\x2c\xe4\x9d\x21\x9c\x07\xd0\xa6\x84\x9d\x0b\x42\x13\x59\xc8\x56\x2c\x1b\xe2\x62\xc1\xec\x8c\x6b\x67\x10\xd8\x90\xd3\x97\x83\x5f\xe8\x10\xe2\x4c\x61\x08\xad\x3c\xed\x83\x64\x3a\x90\x42\x52\xee\x60\x0a\x63\x26\xd6\x0a\x43\xe5\xa5\xa0\x6c\x8c\x68\x07\xca\xc6\xa8\xec\x82\x25\x56\x54\x16\x8c\x46\x75\xc8\xc0\x8d\xa7\x03\x2b\x42\x88\x75\x42\x2b\x21\xb0\x10\xbc\x57\x52\x4e\x63\xc5\x9c\xd1\xd6\x8d\x2b\x1a\x26\x5c\x5e\x95\xc6\xa9\xc1\xa0\x55\x30\xea\xad\xd4\x5a\xa1\xd5\xd0\x21\x56\x6a\xad\xd0\x6a\x12\x04\xd8\xa8\xb5\x41\x8b\x87\xb6\x51\x6b\x83\xd6\x40\x5c\x3b\xb5\x76\x68\x09\x88\xb9\x53\x6b\x87\x96\x82\x13\x93\x5a\x13\x5a\x86\x01\x67\x52\x6b\x86\x56\x61\xcb\x73\x6a\x79\x68\x95\x8c\x91\xdd\xa9\xe5\xd0\x2a\x98\x07\x0e\x6a\x1d\xd0\xaa\x20\xc0\x41\xad\x03\x5a\x2d\xba\xa0\xf1\x5d\x66\x09\x5a\x98\xc5\x2c\x29\x21\x68\x81\x26\xf6\xfa\xb6\xc3\xa3\xa9\x48\x1c\xad\xf1\xd5\x64\x78\xdb\x14\x89\x7a\xb4\x42\xad\x02\x2d\x8b\x16\x60\x85\x5a\x05\x5a\x26\xed\x74\x6f\x7c\xba\x18\x9e\x2e\x35\x45\x75\x18\xdf\x2e\x56\x43\xab\xe6\x51\x4e\xf7\xc6\x67\x89\xe1\x0d\x52\x8b\x4a\x40\xd4\x6a\xd0\xaa\xd1\x28\x8c\x33\xa2\x61\xfa\xab\x2d\x86\x38\xe3\xf4\x67\x1d\x5a\x18\x8d\x8d\x83\x97\x0d\x68\x8d\x11\xd1\x0f\x6a\x0d\x68\x49\xcc\xc1\xc6\xd6\x64\x02\x2d\x0d\xde\x9b\x50\x0b\x5c\xad\x16\xbd\xd2\xc8\x55\x53\x29\xe7\xa5\xe1\xce\x31\xf2\xcb\xc0\xaf\x96\xe2\x52\x30\xf2\xcb\xc0\xaf\x96\x35\x0c\xc9\x2f\x03\xbf\x5a\x89\xe3\x30\xf2\xcb\xc0\xaf\x56\x25\xb6\x4d\x7e\x19\xf8\xd5\x1a\x8e\x83\xfc\x32\xf0\xab\xf5\x91\xfe\xbf\x15\x8f\xfa\xeb\x4e\x6c\x64\x9f\x81\x7d\x6d\xe0\xb0\xc8\x3e\x03\xfb\x9a\x44\x99\x1b\xd9\x67\x60\x5f\x53\x1c\x16\xd9\x67\x60\x5f\xb3\x18\xb8\x8c\xec\x33\xb0\xaf\x19\x0e\x8b\xec\x33\xb0\xaf\xe7\xa8\x56\x23\xfb\x0c\xec\xeb\x19\x87\x45\xf6\x19\xd8\xd7\x6b\xcc\x3a\x46\xf6\x19\xd8\xd7\x6b\x1c\x16\x2e\xfe\x79\xc4\x09\x8f\xd3\xbd\x93\x8b\x0e\x2e\xf6\x9e\x52\x40\x4a\x08\x36\x3d\x8e\xce\xc9\x45\x07\x17\xfb\x88\xde\xe0\xe4\xa2\x83\x8b\x5d\xe2\xe8\x9c\x5c\x74\x70\xb1\xab\x84\x7b\x72\xd1\xc1\xc5\x6e\x71\x74\x4e\x2e\x3a\xb8\x38\xd2\x68\x01\x51\x0b\x5c\x1c\x39\xda\x85\x93\x8b\x0e\x2e\x8e\xd2\x4b\x40\xd4\x02\x17\x47\x8d\x47\xa6\x93\x8b\x0e\x2e\x8e\x16\xed\xc2\xc9\x45\x07\x17\x07\x9e\xb5\x4e\x2e\x3a\xb8\x38\x46\x89\xe8\xc9\x45\x07\x17\xc7\x88\x5e\xea\xe4\xa2\x83\x8b\x03\xbf\x01\x38\xb9\xe8\xe0\xe2\xd0\x78\x6e\x3b\xb9\xe8\x1a\x5a\x92\x62\x4c\x72\xa5\x16\xb8\x28\x69\x44\xf4\xe4\xa2\x83\x8b\x92\xa3\xb3\x39\xb9\xe8\xe0\xa2\x94\x78\x5a\x39\xb9\xe8\xe0\xa2\xd4\x78\xfc\x3a\xb9\xe8\x2b\xdf\xe9\xd1\x67\x7c\x45\xc7\xf5\x95\x43\x6d\xf0\xda\x37\xdc\xd4\xbe\xe1\xa6\xd6\x38\x7b\xdf\x30\x26\xf9\x16\x33\x91\x68\x3c\xc0\x7c\xeb\x1b\xa1\x68\x89\x8a\x3d\x6e\x83\x5a\xa3\x01\x82\xaf\x61\x80\x64\x05\x04\x43\xa5\xfb\x10\x62\x31\xda\xf8\x8e\x7a\xa3\x10\x8b\xf1\xcd\x77\xcc\x0b\x14\x62\x71\x9f\xfb\xce\x50\x21\xc4\x62\x1c\xf1\x1d\x93\x00\x85\x58\xb4\x1e\xdf\x31\x09\x50\x88\xc5\xbd\xe9\xfb\x4e\x5f\x3b\x7c\x45\xf9\xf8\xee\x84\x9c\x50\x03\x44\xf7\x4e\xf7\x1d\x10\xdd\x3b\xdd\x0f\x40\x3b\xa1\x1d\x50\x44\xcf\x22\xa3\x10\x03\x01\x26\x9e\x7c\x14\x62\xd1\xec\x7c\xe2\x7d\x47\x21\x56\x13\xa0\x41\x68\x00\xca\x80\x94\x10\xfa\x5f\x8d\xe8\xe7\xa0\xaf\x01\x5f\x35\xa2\x9f\x8a\x50\x21\xc4\xa2\x83\xf8\xd4\x4e\x08\xa1\xc6\x35\xe3\x53\x85\x10\x32\x11\xc5\xef\x53\x9d\x90\x03\x42\xf4\x46\x43\x63\x10\x7a\xba\x3f\x62\x80\x88\x7f\x72\x14\xc6\x11\x16\xf1\x4f\x89\x9d\x1d\x71\x50\xf1\x4f\x5c\x13\xbf\xbc\xb6\xe2\xff\x3f\xae\xd7\xd3\xd7\xdf\x35\xf7\x4f\xb7\x9b\x5f\x5e\xf0\x2b\x2a\x7e\xba\x5c\xa6\x1f\x8f\x17\xff\xfa\x8b\xec\xf5\xe9\x1a\x56\xf8\xef\xbf\x01\x00\x00\xff\xff\x89\xe9\xd8\x67\xbd\x15\x00\x00"); -func _fdge ()(*asset ,error ){_faea ,_fdad :=_caceg ();if _fdad !=nil {return nil ,_fdad ;};_bdegf :=bindataFileInfo {_ag :"UniGB-UCS2-V",_bc :832,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492749,0)};_fefc :=&asset {_cd :_faea ,_dce :_bdegf };return _fefc ,nil ; -};var _ffc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\xc1\x8a\xdb\x3c\x14\x85\xf7\x7a\x0a\x2d\xe7\x5f\xcc\x1f\xdd\x6b\x59\x96\xc1\x0c\x94\x19\x06\xc2\x30\x6d\x99\x29\xed\xda\xb1\xe4\x60\x68\x6c\xe3\x38\x8b\xbc\x7d\xb9\xf7\x38\x29\x74\x11\x1c\x7d\x91\x4e\xc4\x77\x2c\xed\x9e\xf7\x2f\xfb\x71\x58\xed\xee\xfb\x32\x75\x9f\x79\xb5\xfd\x30\xa6\x25\x9f\xa7\xcb\xd2\x65\x7b\xc8\xc7\x61\x34\x86\xd8\xa6\xa1\x5b\x6f\x43\x7d\x74\xa7\x76\x36\x46\xd6\x7f\x5e\xcf\x6b\x3e\xed\xc7\x7e\xb2\x05\xe6\xa5\xcb\xbc\xcd\xb5\x76\xf7\x91\x8f\xc3\x79\x5d\xae\xf6\xe1\x4b\x9a\x0e\xf9\x3f\x9b\x72\x2f\xfc\xdb\x92\xf2\x32\x8c\x47\xfb\xf0\xf6\x71\x87\x9f\x97\x79\xfe\x9d\x4f\x79\x5c\x25\x2b\xf7\x26\x8f\x49\x9f\x66\xf7\xfc\xde\xce\x5f\xdb\x53\xb6\x3b\xcd\x79\x7c\xfb\x78\xc4\x14\xfd\xe5\x67\x5e\xce\xc3\x34\x5a\xfa\xdf\x39\xfe\x8b\x7f\x5c\xe7\x6c\x69\x4b\xf8\xf5\x3e\xa5\x6c\xdd\x2d\x6f\xff\xf2\x3c\x5d\xc6\xd5\x12\x55\xc5\x36\x85\xb0\xed\x6e\x4a\xf9\x3c\xb7\x5d\x5e\xda\xf1\x98\x8d\xb5\x8d\x73\xce\x3d\xd9\x86\x5f\x5e\x5f\x9f\x64\x4f\xff\xcc\x30\x3e\x6c\x2b\x87\x04\x72\x5b\xe1\x5c\xdf\x3f\x59\x67\x1a\x47\x18\x93\x8c\xb9\x0c\xa6\x71\x0c\xc2\x42\x4a\x62\xd3\xb8\x02\xa4\x10\x52\x85\x68\x1a\xe7\x41\xbc\x10\x72\xec\x4d\xe3\x4a\xa0\x52\x11\x47\xc9\x0e\x40\x41\x51\x59\x48\x78\x05\x54\x29\xaa\x6a\x49\x8f\x40\x51\x77\xe0\xbc\xc4\xd7\x40\xb5\xa2\xc2\x49\x7c\x0b\xd4\x6e\xfb\x94\xf8\x03\xd0\x41\x51\x24\x89\xef\x80\x3a\x41\x85\xab\x24\x3e\x01\x25\x45\x05\x4b\x7c\x06\xca\x8a\xca\x28\xf1\x3d\x50\xaf\x28\x7a\x67\x1a\x82\x29\x52\x53\xde\xd5\xc1\x34\x04\x59\xa4\xb2\x7c\x51\xb2\x69\x08\xb6\x48\x6d\xf9\xe0\xa2\x69\x08\xba\x48\x75\xf9\x18\xbc\x69\x08\xbe\xc8\x6f\x4e\x25\x1e\xbe\x48\x7d\x95\x45\x25\xf1\xf0\x45\xea\xab\x0c\x85\xc4\xc3\x17\xa9\xaf\x32\x46\x89\x87\x2f\x52\x5f\x81\xbc\xc4\xc3\x17\xa9\xaf\xe0\x9d\xc4\xc3\x17\xa9\xaf\x10\xa4\x58\x82\x2f\x52\x5f\xa1\x96\x66\x09\xbe\x48\x7d\x55\x24\xd5\x12\x7c\x91\xfa\xaa\xbc\x54\x4b\xf0\x45\x79\xeb\x5f\xe2\xe1\x8b\xd4\x57\x55\x4b\xb5\xbc\xbd\x8b\xea\x2b\x92\x54\xcb\xf0\xc5\xea\x2b\x7a\xa9\x96\xe1\x8b\xd5\x57\xac\xa4\x5a\x86\x2f\x56\x5f\xb1\x96\x6a\x19\xbe\x58\x7d\xd5\x2c\xd5\x32\x7c\xb1\xfa\xaa\xbd\x54\xcb\xf0\xc5\xea\xab\xae\xa4\x5a\x86\x2f\x56\x5f\x75\x2d\xd5\x32\x7c\x71\xbc\xbd\xab\x92\x0f\x61\x5c\x83\x79\x29\x97\x61\x8c\x5b\xb0\x4a\xda\x65\x28\x63\x55\x26\xed\xcb\x5f\xc0\x19\x77\x60\x2c\xfd\x32\xa4\x71\x4a\x2c\xac\x64\xa7\xa7\xf1\x76\xea\xe4\xbb\xdc\x4b\xf7\xbb\xa2\xbb\x2c\x4b\x1e\x57\xbd\x95\xf4\x42\x90\x73\x3e\x8c\xf9\x7e\xc3\xcd\xd3\x2c\xab\xf4\xf3\x27\x00\x00\xff\xff\x1b\x63\xd0\x73\x0d\x05\x00\x00"); -var _feecc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\x4b\xab\x65\xc9\x71\xfd\xe7\xf7\x53\x9c\xa1\xfe\x03\xfd\x7b\xef\xcc\xc8\x17\x5c\x2e\x98\x96\x84\x1a\x21\xcb\xb8\x2d\xdb\x60\x3c\xc8\x67\x53\xe0\xbe\x55\x54\x55\x0f\xf4\xed\x4d\xac\xdf\x51\xcb\xb2\x0d\xf2\x40\x84\x7a\x55\x46\x66\xe4\x63\xad\x88\xcc\x7d\xee\x37\xdf\x7e\xf7\xab\xef\xde\x3f\x7c\x7d\x7c\xf3\x0f\x9f\x3f\xce\xef\xf7\xd7\xc7\xf9\xf0\xbe\x3e\xef\x2f\x1f\x7f\xfa\x3c\xf7\x63\xec\x1f\x3e\xbc\xbf\xbc\xdc\xe1\xb1\x3e\xcc\xaf\x7f\xfe\x4f\x99\xf9\x63\xff\xf4\xf2\xe2\xfe\xdf\xff\xe9\xcb\xd7\xfd\xe3\x77\xef\xe7\xe3\x23\xd2\x6e\xfd\xf4\xe9\xd9\xf6\xf1\xf8\xe6\x1f\xf7\x0f\x1f\xbe\x7c\xfd\xfc\xa7\xc7\x2f\xfe\x6e\x7d\x1c\xfb\xff\x3d\xd6\x3e\x8e\xff\xe1\xf3\xda\x9f\x3f\xbc\xff\xf0\xf8\xc5\xef\x3e\x7e\xde\xfd\xfe\xf9\x1f\xbe\xff\xe9\xd3\xa7\xff\xd8\x3f\xee\xf7\xaf\x8f\x5b\xd8\x7e\x5f\xb2\x2f\xdf\x7c\xfb\xfb\xfe\xe9\xef\xfb\x8f\xfb\xf1\xcd\xef\xbe\xff\xf6\xc7\x2f\xbf\xfc\xe3\x6f\xbf\xfd\xe5\x6f\xf5\x6f\xfa\xa7\x7f\xde\x9f\xbf\x7c\xf8\xf8\xfe\xb8\xaf\xff\x7f\x5d\xf9\x2f\xf8\x3f\xfd\xe9\xd3\x7e\xf6\xf5\xf2\xcd\x1f\xbf\xfb\xd5\x1f\xce\xf9\xb2\xbf\x3e\x2c\x5e\xb4\xf9\xd7\x3f\x7e\xf7\xab\xc7\xbf\xdd\x8f\xfb\x7a\x84\x64\x57\xfb\xf7\x67\xd3\x7f\xf9\xfd\xc7\xb5\x1f\x34\x7a\x09\x4c\x69\x7e\x5c\xfb\xcb\xa7\x3e\xf7\xe7\xfe\xfe\xc3\x7e\x79\x3c\x5e\xaf\xeb\xed\xf1\x78\xbc\xd6\xeb\xcd\xff\xab\xde\x76\xbf\x3d\x5e\x7f\xf3\xeb\xdf\xfc\xfa\xcd\x23\xff\x6f\xed\x5f\x6e\xba\x79\xff\xf8\x75\xed\x03\xa6\x1e\x5e\xef\xf3\xf6\xb8\xdd\xe3\xbf\xfe\xd3\xcb\x7d\x5d\xcf\x71\x3f\xac\x67\xeb\xe0\xad\xcb\xf6\xd6\x7f\x1e\xad\xde\xa9\xbf\x3d\x5a\x8c\xd1\xa1\x0c\x54\x04\xa5\xe6\x50\x05\x3a\xdb\xa1\x9a\x5e\x5e\x6b\xc0\x31\xc8\x31\xdd\xde\x57\xc0\x31\xc8\x31\xc5\xe2\x10\x8e\x41\x8e\x29\x7b\xf7\x11\xc7\x28\xc7\x5c\xbd\xfb\x88\x63\x94\x63\xb9\xbd\xfb\x88\x63\x94\x63\x31\xef\xde\x70\x34\x39\xd6\xec\xdd\x1b\x8e\x26\xc7\xda\xbc\x7b\xc3\xd1\xe4\xd8\x6e\xef\x3e\xe1\x98\xdc\xf1\xbe\x2e\xf3\xfe\x13\x9e\xa9\x80\x15\x1f\x20\xe1\x9a\xdc\xf5\xbe\xae\xe6\x23\x64\x7c\x33\xbe\x21\xf8\x10\x19\xdf\x8c\x6f\x30\x1f\x23\xe3\x9b\xf1\x0d\xc5\xc7\x28\xf8\x16\x7c\xed\xf2\x31\x0a\xbe\x05\x5f\x0b\x3e\x46\xc1\xb7\xe0\x6b\xc9\xc7\xa8\xf8\x56\x7c\x53\xf1\x31\x2a\xbe\x15\xdf\x7c\xf9\x18\x15\xdf\x8a\x6f\x8e\x3e\x46\xc3\xb7\xe1\x5b\x92\x8f\xd1\xf0\x6d\xf8\x96\xea\x63\x34\x7c\x1b\xbe\xf5\xf2\x31\x3a\xbe\x1d\xdf\x16\x7d\x8c\x8e\x6f\xc7\xb7\x65\x1f\xa3\xe3\xdb\xf1\x6d\xd5\xc7\x18\xf8\x0e\xf9\xde\xf7\xed\x63\x0c\x7c\x47\x01\x8b\x3e\xc6\xc0\x77\xc8\xf7\xbe\xb3\x8f\x31\xf1\x9d\xf8\x86\xe6\x63\x4c\x7c\x27\xbe\xf1\xf6\x31\x26\xbe\x13\xdf\x68\x3e\xc6\xc2\x77\xe1\x6b\xd9\xc7\x58\xf8\x2e\x7c\xad\xf9\x18\x0b\xdf\x85\x6f\x0a\x3e\xc6\xc6\x77\xe3\x9b\xcd\xc7\xd8\xf8\x6e\x7c\x73\xf1\x31\x36\xbe\x1b\xdf\xdc\x7c\x8c\x83\xef\xc1\xb7\x06\x1f\xe3\xe0\x7b\xf0\xad\xc9\xc7\x38\xf8\x1e\x7c\x6b\x29\x2f\xaf\xed\x92\x6f\xbb\xe4\x1b\xae\x2b\x3a\x96\xc1\x0a\x58\x68\x8e\x55\x30\xf9\x86\x2b\xa5\x97\xd7\x06\x67\xdb\x8d\xef\x5d\x6f\xc7\xf0\xbd\xf1\x0d\x97\x8f\x01\x6b\xdb\x8d\x6f\x70\x72\x37\x68\xdb\x02\xbe\x62\x77\x83\xb7\x2d\xe0\x2b\x7a\x37\x88\xdb\x02\xbe\xe6\xfc\x6e\x30\xb7\x45\x7c\x45\xf0\x06\x75\x5b\xc4\x57\x0c\x6f\x70\xb7\x45\x7c\x93\x53\xbc\x41\xde\x66\xf8\x8a\xe3\x0d\xf6\x36\xc3\x57\x24\x6f\xd0\xb7\x19\xbe\xc5\x59\xde\xe0\x6f\x83\xbf\x41\x34\x6f\xf0\xb7\xc1\xdf\x20\x9e\x37\xf8\xdb\xe0\x6f\x68\xce\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\x46\xf1\xbc\xc1\xdf\x06\x7f\xe3\xed\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\x37\x46\xe7\x79\x83\xbf\x0d\xfe\x46\xf1\xbc\xc1\xdf\x06\x7f\xa3\x78\xde\xe0\x6f\x83\xbf\xd1\x9c\xe7\x0d\xfe\x36\xf8\x1b\xc5\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\xc6\xec\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\x37\x56\xe7\x79\x83\xbf\x0d\xfe\x46\xf1\xbc\xc1\xdf\x06\x7f\xa3\x78\xde\xe0\x6f\x83\xbf\x76\x39\xcf\x1b\xfc\x6d\xf0\xd7\xc4\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\xed\x76\x9e\x37\xf8\xdb\xe0\xaf\x89\xe7\x0d\xfe\x36\xf8\x6b\xe2\x79\x83\xbf\x0d\xfe\x5a\x74\x9e\x37\xf8\xdb\xe0\xaf\x89\xe7\x0d\xfe\x36\xf8\x6b\xe2\x79\x83\xbf\x0d\xfe\x5a\x72\x9e\x37\xf8\xdb\xe0\xaf\x89\xe7\x0d\xfe\x36\xf8\x6b\xe2\x79\x83\xbf\x0d\xfe\x5a\x71\x9e\x77\xf8\xdb\xe1\xaf\x89\xe7\x1d\xfe\x76\xf8\x6b\xe2\x79\x87\xbf\x1d\xfe\x5a\x73\x9e\x77\xf8\xdb\xe1\x6f\x12\xcf\x3b\xfc\xed\xf0\x37\x89\xe7\x1d\xfe\xf6\xbb\x5f\xc2\xaa\xb2\xfb\xcf\x79\xfc\x7f\x4b\xed\xfd\xee\xb8\x20\xcb\x1e\x14\x84\xef\x10\x3e\x49\x94\x3b\x84\xef\x10\x3e\x69\xb3\x3a\x84\xef\x81\xc1\xb4\x59\x3d\xd0\x5b\xd8\xe9\xed\x71\xfb\xd2\x76\x24\xa0\xc7\x67\x6f\x4e\x9d\x8e\x04\x74\x24\x20\x29\x45\x76\x24\xa0\x47\x7a\x13\x75\x7a\xa4\x37\xc9\x42\xc8\xf6\xf2\xda\x11\x85\x8e\x28\xa4\xe0\x42\xd6\x11\x85\x8e\x28\xa4\xe8\x42\xd6\x11\x85\x6e\xf4\xa6\x2a\xa5\x1b\xbd\xd9\x8a\x6f\x8f\x98\xaa\x23\x2b\x09\xf1\xfe\xcd\x0f\x79\x47\x38\x3a\xc2\x91\xa2\xe6\x84\x70\xf4\xf4\xec\xdf\x0f\x60\x47\x38\x7a\xa2\x7f\xf3\x03\xd8\x53\x7f\x62\xfd\xed\x61\xda\xde\x34\x2e\x21\xa3\xbd\x3d\x2c\x0b\x99\xb4\x59\xf5\xed\x61\x45\xc8\x06\x39\x8e\x68\xc5\x10\xa0\x8e\x00\x25\xd3\x4a\x20\x40\x1d\x01\x4a\x56\xd4\x8e\x18\x32\x31\x24\xed\x5d\x26\x86\xbc\xed\xed\x91\x5c\xe2\x3a\x92\xd4\x91\xa4\x94\xb4\x12\x48\x52\x47\x92\x52\x4a\x6a\x47\x6f\xe5\xd9\x9b\x4b\x7a\x2f\xf4\x56\xf6\x79\x7b\x24\x27\x72\x47\xa4\x3a\x22\x95\xb2\xe6\x8d\x48\x75\x44\x2a\x65\x27\x5e\x47\xa4\x7a\xa5\xb7\xec\xc4\xeb\xb5\x3f\x31\x7b\x7b\xe4\x9c\x85\x64\x90\xfc\xf6\xc8\xe5\x12\x52\x41\x8e\x23\x3e\xa3\x3a\xf0\xf2\x3d\xca\x2e\x76\x1d\xb1\xeb\x88\x5d\x2a\x9a\x37\x62\xd7\x11\xbb\x54\x5c\x3c\x3b\x62\xd7\x1b\x31\x14\x17\xcf\xde\x88\x41\x02\xa8\x32\xa7\x23\x7f\xbd\x3f\x7b\xd3\xbc\x91\xbf\x8e\xfc\xa5\xea\xa9\xac\x23\x7f\xbd\xd3\x5b\x8d\xf2\xa5\xb7\x7e\xe2\xdb\x03\x42\x23\x88\x1d\x41\x4c\x55\xf3\x46\x10\xfb\x78\xf6\xa6\x3d\x46\x10\xfb\xa0\xb7\x16\xe4\x4b\x6f\xe3\x64\x2f\x99\xfd\xb4\x23\x91\x1d\x89\x4c\x4d\x33\x40\x22\x3b\x12\x99\x9a\x56\x04\x89\xec\x53\xbd\xe5\xcb\xe5\xbf\x4f\x7a\x9b\x7e\xe0\xee\x2b\xf8\xe2\xce\x05\x74\x04\xa9\x37\x84\xb4\x23\xa4\xf9\xd2\xac\x10\xd2\x8e\x90\xe6\x2b\xab\x1d\x23\xac\xe7\x08\x9e\xa0\x3b\x42\xda\x11\xd2\x7c\x6b\x0e\x08\x69\x47\x48\xf3\xed\xa2\xd9\x11\xd2\xbe\xf1\xbd\x5d\x34\x3b\x42\xda\x11\xd2\x1c\x14\x31\x42\xda\x11\xd2\x1c\x3c\x61\x75\x84\xb4\x1f\x7c\x83\xef\xd8\x40\x48\xc7\xf5\xf4\xf5\x58\x06\x42\x3a\x10\xd2\x1c\xbd\x58\x18\x08\xe9\xb8\xf0\x8d\x5e\x2c\x8c\xab\x83\x3d\x0b\xd8\xfc\xf2\x3a\xd0\xd6\x81\xb6\xe6\xe8\xe1\x0d\xb4\x75\xdc\xcf\xee\x5c\xd3\x07\xda\x3a\xd0\xd6\x6c\xae\xe9\x03\xf1\x1c\xf7\xb3\x4e\xbb\x5e\x5e\x07\xea\x39\x50\xcf\x6c\x8a\x18\xf5\x1c\xa8\x67\x36\x4f\xb1\x03\xf5\x1c\xa8\x67\x4e\xae\x3e\x03\xf5\x1c\xcf\x12\xaa\xd8\xcb\xeb\x40\x3e\x07\xf2\x99\x93\x26\x81\x7c\x0e\xe4\x33\x27\xaf\x78\x06\xf2\x39\xe2\xb3\x3b\xaf\x78\x06\xf2\x39\xe2\x33\xdb\xd7\x97\xd7\x81\x7e\x0e\xf4\x33\x67\x4d\x02\xfd\x1c\xe8\x67\xce\x7e\x8e\x07\xfa\x39\xd0\xcf\x9c\x3d\x31\x0d\xf4\x73\x50\x68\x59\x0e\x2f\xaf\x03\xb9\x1c\xc8\x65\x2e\x9a\x04\x72\x39\x90\xcb\x5c\xbc\x4e\x18\xc8\xe5\x40\x2e\x73\x71\x29\x1c\xc8\xe5\xa0\xf6\x4a\xc9\xb7\x02\xe5\x1b\xf9\xd9\x9d\x26\x81\xf2\x0d\x94\x2f\x57\xd7\xb4\x81\xf2\x0d\x94\x2f\x57\x2f\xdb\x06\xca\x37\x28\xc7\x72\xf2\xad\x40\xfa\x06\xd2\x97\x95\x5d\x07\xd2\x37\x90\xbe\xac\xec\x3a\x90\xbe\x81\xf4\xe5\xe6\xd9\x75\x20\x7d\x83\x0a\xad\x98\x6f\x05\xda\x37\xd0\xbe\xac\x62\x67\xa0\x7d\xa3\x3e\xbb\x73\x8d\x1c\x68\xdf\x40\xfb\x8a\x8a\x9d\x81\xf6\x0d\x8a\xb6\x1a\x7d\x2b\x90\xb1\x81\x8c\x15\xdd\x31\x07\x32\x36\x90\xb1\xe2\xb5\xe7\xdf\xca\xdf\x03\x95\x1b\xed\x39\x9a\xe7\xd7\x81\xca\x0d\xca\xbc\x16\x7d\xa7\x90\xb9\x81\xcc\x95\x5b\x73\x44\xe6\x06\x32\x57\x6e\xaf\x20\x06\x32\x37\x90\xb9\xa2\x9b\xc2\x40\xe6\x86\x2a\xbf\x70\x05\xdf\x29\x74\x6e\xa0\x73\x25\x68\x8e\xe8\xdc\x40\xe7\x4a\xf0\x1a\x61\xa0\x73\x03\x9d\x2b\xc1\xf3\xe9\x40\xe7\x86\x8a\xc1\x70\xbb\x32\x0d\x84\x6e\xcc\x67\x77\x9a\x04\x42\x37\x10\xba\x12\xbd\x48\x18\x08\xdd\x40\xe8\x4a\xf4\xd4\x38\x10\xba\xa1\xfa\x30\x84\xdb\x77\x0a\x55\x1b\xa8\x5a\x89\x9a\x04\xaa\x36\x50\xb5\x62\x5e\x25\x0c\x54\x6d\xa0\x6a\xc5\x3c\x37\x8e\x45\x77\x2a\x19\x43\xbc\x7c\xa7\x10\xba\x81\xd0\x15\xd3\x24\x10\xba\xb1\x9f\xdd\x79\x51\x30\x10\xba\x81\xd0\x95\xe4\xc9\x71\x6c\xba\x53\x15\x19\xec\xf2\xad\x40\xfb\x06\xda\x57\x92\x26\x81\xf6\x0d\xb4\xaf\x24\xcf\xef\x03\xed\x1b\x68\x5f\xc9\x9e\xe7\xc6\xa1\xbb\x43\x77\x2d\xbf\xbc\x4e\xe4\x70\x22\x87\x25\xfb\x24\x26\x72\x38\x91\xc3\x92\x3d\xc1\x4f\xe4\x70\x5e\xcf\xee\x3c\xd1\x4d\xe4\x70\x4a\x0e\x43\x6a\xd7\xcb\xeb\x44\x0e\x27\x72\x58\x8a\x4f\x62\x22\x87\x13\x39\x2c\xc5\x33\xfc\x44\x0e\x27\x72\x58\x8a\x67\xba\x89\x1c\xce\x9b\x7a\xad\xda\xcb\xeb\x44\x0e\x27\x72\x58\xaa\x4f\x62\x22\x87\x13\x39\x2c\xd5\x93\xf5\x44\x0e\x27\x72\x58\xaa\x27\xa7\x89\x1c\x4e\xc9\x61\x28\xa5\xbe\xbc\x4e\xe4\x70\xc6\x67\x77\x9a\x04\x72\x38\x91\xc3\xd2\x3c\x5b\x4f\xe4\x70\x22\x87\xa5\x79\x5e\x9b\xc8\xe1\xa4\x9a\xac\x25\xbc\xbc\x4e\xe4\x70\x22\x87\xa5\x69\x12\xc8\xe1\xb4\x67\x77\x9e\xae\x27\x72\x38\x91\xc3\x7a\x79\xaa\x9b\xc8\xe1\x94\x1c\x86\xe6\xf5\xcc\x44\x0e\x27\x72\x58\x95\x61\x27\x72\x38\x91\xc3\x7a\x79\xbe\x9e\xc8\xe1\x44\x0e\xeb\xed\xd9\x6f\x22\x87\x53\x72\x18\xaf\xec\x5b\x81\x1c\xce\x9c\x82\x9a\x69\x12\xc8\xdc\x94\xcc\xc5\x3b\xf9\x12\x23\x55\x53\x52\x15\x83\xf9\x32\x21\x37\x53\x72\x13\xa3\xf9\x54\x21\xf1\x14\x89\xa3\x45\x0f\x17\x22\xce\x31\x8f\x17\xc4\xd1\x87\x1c\xeb\x12\xe4\xc6\xee\x5b\xad\x16\xad\xbc\x56\x8e\xc9\x45\x74\x8e\x95\x81\xf2\xdb\x23\x66\x6d\xcc\x58\x45\xd0\xce\x2a\xae\x7d\xc4\xb1\x9f\x50\x79\x7b\x14\x16\x63\xec\x2a\x48\x41\xa4\xe6\x8e\xd0\x77\x8a\xbe\x31\x6b\x65\xa1\xe0\x5c\xd3\x21\x5d\xfc\xe7\xf2\x18\x9f\x26\x9a\x56\x67\x11\xea\xf2\xee\xa3\x52\xca\x5c\x74\x2f\x53\xda\xa5\x56\xbb\x09\x52\xf7\xaa\xee\x26\x94\x9c\xbb\xcf\xb7\x47\xac\x2e\x04\x73\xf7\x05\xb4\x04\x05\x41\x5b\x90\x1c\x95\x76\x26\xe4\x9b\xe7\xf4\xb7\x47\xa4\xfb\x73\x06\xd0\x10\x14\x04\x4d\x20\x77\x6c\xce\xa9\x05\xcd\x30\xb1\x79\x5a\x5b\x57\x0f\x40\xc1\x21\xcb\x82\xa2\xa0\x51\xd4\xca\x1c\x1a\x15\xa8\xfe\xa5\x95\x5f\x26\x5e\xd7\xe5\x2b\x61\x97\x2f\xce\xba\xb4\x12\x98\x58\x5c\xb2\xd6\xb5\x18\x71\x4d\x6f\x15\x81\x16\xd0\xf2\xad\xf5\xea\x6a\x5d\x6b\x0b\xe2\xfe\xe3\x39\x73\x41\xe1\x75\xfb\x25\xc9\x2e\xaf\x54\xd6\xbd\x0c\xc8\xde\x1e\x16\xbd\x2a\x59\xb7\x2e\x4e\x18\xbb\x3d\x77\xaf\x5b\x67\x62\xdd\x7e\x0e\xec\x8e\xb4\xaa\x40\x55\x8e\x49\x50\x03\xea\x6a\x85\xe3\x10\xb4\x2f\xb5\x12\xb4\x09\xc2\x8d\xdd\x8a\xfe\xde\x01\x28\xf8\x55\xe4\x52\xa8\x3b\x02\x79\x10\xd1\x8f\xdc\xba\x37\x41\xb8\xb1\x58\xe9\xab\x00\x11\x57\x13\x44\x5c\x7b\xa8\x55\x11\x34\x81\x7c\xbd\x6e\xa3\xfb\x05\xe4\xeb\xa5\x5b\xdf\xba\xf7\x06\xda\x6a\x05\x74\x04\x1d\x45\xdf\xec\x6f\x26\xec\x75\x1f\x26\x77\x34\x39\x53\xd8\x87\xc9\xb9\xb1\xd8\x14\xf6\x61\x72\x47\x2b\x6c\xda\x87\xc3\xe4\x8e\x26\xd7\x34\x93\xc3\xe4\x4e\x53\x2b\x1c\x3b\x90\xaf\xb0\x5d\x38\xb2\xc2\x6e\xec\x36\x1c\x99\xef\x59\x6a\x85\x23\x93\xd3\x61\xd0\x6d\x78\x21\xc0\x18\xbb\x75\x3e\x02\xe7\x36\xf8\x59\x35\xbb\x81\x0c\x28\xab\xd5\x2d\xa8\x00\x29\x88\x3b\x08\x1a\x40\x43\x10\xdd\x4f\x20\x2d\xba\x6b\xd9\x0a\x22\x22\xc6\x2c\xd0\xbd\xe2\x0a\x83\x20\xfc\x14\x85\x41\x10\x6e\xcc\x82\x1c\x47\x04\xd2\xe9\x4e\xea\x7e\x3c\x1d\xb7\xee\xe3\x8a\x6b\x68\xb7\xc2\x54\x5f\x45\xdd\x4f\xfa\x9a\x51\xad\xa2\x20\x26\xe4\xc6\x94\xc6\x57\x98\x09\x48\xdb\x51\x68\x95\x81\xb8\xee\x57\x41\xcc\xd1\x8d\x25\xe2\x9a\xcc\x71\x6a\x8e\x05\x88\x39\x4e\xc5\x15\x34\xa1\x49\x5c\xa2\x58\x0a\xea\x0b\x8a\x05\xf1\x29\x45\xb5\x82\x4f\x32\x76\x17\xa0\x06\xa4\x20\x74\x22\x03\x7c\x0a\xf0\x5c\x7c\x0a\xf0\x3c\xac\xa3\x56\x72\xdc\xd2\x0c\x19\xbb\x8b\xd6\x0b\xd6\xc9\xf0\xde\xb5\x02\xac\x93\xb1\xc4\x01\x80\x75\x32\xa6\x2b\xcf\x0a\x9b\xf5\xda\x8a\x3e\x6b\x8e\x9b\xe8\x9d\x69\x96\xb2\x82\xd8\x84\xba\x15\x6a\x51\xa8\x9b\x50\x45\xc4\x44\xa8\x10\x31\x38\xad\x4c\xe5\xe7\x0a\x87\x50\x9d\x11\x96\x2f\x75\x7f\x18\x51\xec\xc8\x9c\x55\xd8\x21\x63\x77\xd5\x1c\x61\x47\xd0\xd3\x4a\xe6\x00\x1c\x82\xd0\x21\xbf\x25\x10\x94\x05\x2b\x02\x35\x3f\xab\xa4\xf6\x65\x52\x96\xa0\x56\x86\xb2\x18\xca\xa2\xdd\x36\x94\xc5\x44\xab\xa8\x83\x69\xd0\x4a\xe6\x29\x6f\x76\x16\xd0\xfe\x59\xde\x48\xf5\x2b\x75\x04\xb5\x0a\x4a\x40\xe9\x67\x79\x4b\x7a\x1c\x59\x3c\x27\x21\x6f\x09\x0e\xc9\x3c\xb5\x2c\xc1\xa1\x24\xc2\xa0\x65\x09\xc2\xc8\x3c\x27\x94\xba\xce\x57\x22\x08\xbf\x31\x2f\x0a\x89\x95\x3d\xdb\x98\xbe\x80\xac\x4c\xb6\x91\xb1\xdb\xaf\x95\x2b\x93\x6d\xb2\x8e\xaf\xa9\xaf\xcc\xf1\x95\xb1\xbb\x00\x69\x44\x15\x25\x96\x44\x77\x8a\x92\x55\x60\x87\x67\xe7\x55\x60\x87\x4c\x4a\x49\xad\x60\x47\xd9\x6c\xad\xd3\xaa\x70\x98\x64\x32\xdc\x2e\x1c\x26\x15\x38\x96\xbd\x5c\x5c\x14\x38\xab\x02\x79\x6d\xb1\xb8\xf4\x2c\x5d\x7a\xac\xe8\xf8\x52\xf3\x2c\xd5\x3c\x56\xc5\x0e\x6a\x9e\x35\xc4\x6d\x7d\xac\x5a\x03\x6e\xcb\x24\xf4\x6b\xc0\xed\xa1\xb8\x9a\xce\xea\x20\x2e\x19\x6b\x21\x08\xc2\xd1\xbb\x4f\x97\x97\xb6\x8b\x6a\x66\x4d\xdf\xda\x74\x29\xd4\xc9\xd6\xca\x14\x74\x62\xb2\xb5\x13\x47\xa5\x62\x6a\x9e\xb5\xe4\xa8\x4b\xd1\x5a\x38\xca\x24\x15\x8e\x6b\xe1\xb8\x16\xad\x7c\x71\x16\x3a\x21\x93\x6e\x51\x61\x91\x8a\x97\x13\x26\xdd\x8a\x7e\x41\x18\x99\x92\xbd\xe6\x59\xeb\xe0\xa8\x20\x82\xa2\xa7\x32\x5a\xdb\x4f\x74\x0a\x22\xcc\xe6\x44\xcb\xa4\xe4\x25\xfd\xda\x9c\x68\x99\x14\xbd\xe6\x59\x9b\xdc\x21\x93\xa2\x4e\x0e\xc5\xd2\x3a\xae\xd1\x29\x6a\x6b\x0f\x1a\x2d\x53\xa8\x2d\xce\x50\x5c\xc7\x65\x28\x45\xaf\xfe\xd6\x41\x86\x64\x52\xcc\x41\x50\x00\x2a\x82\xb2\xa0\x0a\x54\xdf\x1e\xc9\x44\xf7\x83\xc0\x1c\x82\x28\xe1\x6f\xa6\xe2\x4d\x5d\xb6\xaf\xa3\xd1\xbd\xe2\xda\xd7\x79\x42\xf7\xdb\x23\x6b\x4f\xf7\xa5\xec\xbc\x55\x25\x25\x73\x09\xdf\x54\x49\xfb\x76\xf2\x25\x73\xd6\xed\x5b\x99\x0b\x93\x54\xa1\xee\x5b\x44\xdc\x2a\x2a\x92\x79\xc2\xde\x14\x15\x98\xa4\xef\x16\x9b\xa2\x62\x2b\xef\xa6\xe4\xf3\xdd\xe4\xdd\x1d\x80\x7c\xe7\x37\x2a\xb5\xa3\x6f\x60\xd2\x87\x87\x1d\xb5\x81\x98\x72\x5d\x6a\x25\x11\xdc\xd2\xb2\xa4\xf7\xcd\x8d\x96\x61\x4a\xf4\x94\xb7\x4d\x39\x7c\x5b\xf7\xb5\x2b\xbe\x9c\xdb\x7a\x03\x6a\xea\xbe\x0a\xea\x82\xe8\x4b\x23\x22\x5c\x5b\x62\x93\x6a\xaa\x82\x36\xd0\xd6\x13\xb1\x09\x3a\x82\xc6\x25\xc8\x97\x30\x0d\x1c\x9f\x09\x3b\x09\x8a\x40\x55\xad\xd4\xbd\xc4\x06\x63\xfa\x00\xb6\xd3\xe8\x40\x5d\xad\x9a\xa0\x01\x24\x49\x0a\x40\x5a\xd5\xe4\x39\x3c\x55\xcf\x49\x3b\x29\x87\x63\xcc\xa2\x82\x10\xcf\x77\x9a\x8a\x5e\x9b\x96\x26\xd1\x2b\x15\x5b\x54\x5c\x93\xe8\xa7\xde\xbc\xbd\x16\xdb\x49\xf5\x35\xc6\x74\x75\xda\x69\x31\x21\x37\xa9\x36\xf5\xb5\x02\x90\xe6\x18\x81\x98\xa3\xb8\x59\x9b\xd6\x4b\xdc\xc4\x98\x45\x45\xaf\xab\xd3\x4e\x9e\x9a\x52\xd3\x91\x4b\x87\x69\x2b\xb5\x98\xd7\x88\x3b\x89\x88\x18\x0a\x9c\x9d\x0e\xd3\x16\x11\x1b\x71\x1d\x26\x44\x11\x67\xbe\x1d\x08\x3d\xc6\xcc\x75\x71\x67\x0e\x40\xf6\x22\x2e\xe9\x72\xbc\xb3\x8a\x38\x8c\xe9\x9b\xc3\xce\xd2\x9f\x9d\x5d\x73\x52\x8b\x40\x05\x48\x49\xc3\xeb\x81\x9d\xf5\x62\xbf\xb3\xa8\xd0\x5c\x63\x77\x86\x0a\x99\x22\xce\xc5\x79\x67\x8e\x89\x4c\xd2\x45\x66\x67\x8e\x49\x56\x5d\x67\x9e\x3e\x77\x1e\xc4\x25\xcd\x68\x84\xca\x31\x91\x31\xd3\x91\xcb\x83\x50\x87\xe2\x32\x20\xe2\x52\xe6\x32\x2d\x0e\x99\x6b\x67\x3f\x2d\xa9\x25\xc5\x35\x26\x90\x4e\x4e\x56\x5c\x9c\x9c\xac\x93\xd3\x92\xd6\x8b\x93\x23\x63\xb7\x88\x9c\x39\x39\x32\x49\x0f\x7f\x3b\x2b\x43\xec\x3c\x49\x9f\x8a\x7e\xb2\x12\x53\xfb\x28\x22\xe7\xd9\x81\x74\xdd\x79\x3a\xea\xf8\x66\x9d\x9c\x96\x35\x22\x27\x27\x73\x72\xb2\x26\xc4\xc9\xc9\x3a\x39\x4a\x40\x3b\x73\x72\x32\x27\x27\x6b\x8e\x9c\x9c\xec\x05\x61\x6a\x85\xbe\x98\xf6\x12\x87\x44\xf7\xbc\x08\x62\x69\x25\x8a\xd6\x7e\xb1\x12\xba\x1e\xde\x84\xba\x58\x89\xa5\x1d\x2a\x04\xc1\x0e\xa9\x6c\x34\x82\x50\xd9\x88\x49\x4d\x4c\xcb\x9b\xf3\xa5\xb2\xd1\x8a\xfa\xda\x4c\x68\x6b\x55\x2b\x8e\xac\xaa\xd2\x27\x22\x9a\x37\xab\xaa\x2a\xcb\xa4\x00\x79\x33\x47\x55\x59\xfa\xca\xb5\xf3\x66\x8e\xd2\xfe\x56\x69\xc5\x42\xab\xb8\x34\x26\xb4\x99\xf6\xd6\xda\x57\xba\x67\xda\x2a\x2e\x8d\x09\x6d\xa6\xed\x26\x3f\xa9\x80\x20\xe7\xad\x69\x57\x46\x64\xda\x2a\x41\x8d\xe8\x0f\xd3\x3e\x4c\x5b\x8e\x24\x0a\x19\xb3\xaa\x69\x93\x28\x64\x9e\x29\x20\x1f\xf6\x51\xb2\xdd\xaa\x82\x40\xb6\x65\xcc\x98\x10\xb2\x9d\xa9\x5d\x39\x98\x87\x69\x1f\x5d\x5b\xa5\xd1\xf9\x30\xed\xa3\xdd\x6e\x74\xcf\xb4\x75\xff\x33\xa2\x47\x3a\x54\x8b\xa5\xe6\xd7\xd6\x4d\x2d\x86\x31\xb2\x55\x41\x01\x8a\x6a\x8b\x26\x95\x2b\xaa\x2d\x30\x66\x0a\xb5\x40\xf7\xe2\x14\xcf\x97\x57\xa5\xbb\x90\x28\x64\xcc\xbc\x92\xdc\x85\x44\x51\xb8\xec\x3d\x47\x1c\x40\x43\x8e\xff\x87\x54\x5c\x54\xc7\x62\xa8\x3d\x77\x41\x46\x0a\x32\xd2\xa2\xa0\x0d\x74\xd4\xaf\x20\x7d\x63\xc5\x98\x29\x87\x17\xb2\x4d\xf1\x8b\x1f\x5f\xc3\x76\xd1\xc5\x0f\xc3\x37\xff\x5d\x26\x8e\x6e\xf2\x75\x6b\x26\x13\x47\x37\x45\xbf\x84\xd8\x65\xb2\x50\x4e\xfd\xac\xcf\x68\xbb\x40\x7d\x19\x33\x69\x7f\x99\x2c\x14\x6a\xd0\xe8\xab\x02\x75\x39\x2a\x2e\xa8\x5f\xb8\x1e\x4a\xe8\x29\x80\x31\x59\xf5\xe2\x2e\x93\x69\xab\xbe\x4e\x5e\x5e\xed\x42\x9a\x92\xc9\x57\xd0\xd6\x90\xa6\x8a\x72\x52\x62\x25\xc8\x49\xc5\x65\x24\xeb\x37\x02\xbb\x20\x23\x32\x96\x2e\x6d\xb3\x5e\x73\x76\x59\xea\x4b\x89\xb1\xac\x67\x5f\xba\x1e\x5e\xea\x1e\x9e\xab\x30\xcf\x97\x12\x10\x85\x39\xc6\xf4\xbd\x6a\x53\x98\x63\xf2\x25\x55\x2f\x30\x58\xc6\xd2\xad\xf5\x82\xc1\xc5\x4f\x77\xbe\xc4\xba\x72\x9e\x90\x93\xba\xb0\x84\x9c\x6e\x15\xf9\x7c\x74\xdc\x14\xf9\xbb\x6e\x39\x4a\xcb\x2a\x7d\x55\xee\x95\x52\xf5\x0a\xf5\xab\xd3\x35\xeb\xe9\x66\x57\xe8\x2a\x63\x49\x09\xa8\x42\xd7\xca\xab\x4b\xa5\x55\x00\xca\x72\x2c\x82\xe8\x5e\xac\x4b\xca\x49\x95\xb8\x64\xf2\xed\xb7\x96\x5d\x61\x9d\x0c\x97\xb5\x5d\x61\x9d\x4c\xbe\x9f\x23\x0e\x20\xed\x76\xca\x82\x26\xd0\x52\x2b\x13\xb4\x81\x74\x75\x52\xc5\xc6\x45\x66\x37\x7d\x15\xd7\xe3\xda\x6e\x10\x51\xc6\x92\x94\xa5\x91\x77\x9b\x28\x86\x84\x37\x38\x24\xc3\x9d\x6b\x37\x38\xd4\x26\xad\xd4\x17\x47\x4e\xc6\xf4\xf3\xab\xdd\x38\x72\x8d\x95\xd0\x76\x34\x56\x42\xa6\x20\x5c\x8d\x95\xd0\x05\x2b\xeb\xf3\xce\xe6\x82\xb5\xbb\x38\x14\x74\x00\xfa\x7c\x42\x5e\x40\xeb\x57\x51\xbb\xc3\xa1\xae\x2b\x5d\x90\x12\x77\x4e\x8e\x8c\xe9\x51\x79\x77\x4e\x8e\x3e\xa6\xe7\x78\xcb\x51\xb7\x16\x8c\xdd\x15\x08\x47\x85\x1a\x45\x98\x4e\xa8\x9d\x4d\x53\x8d\xd8\x09\xb5\xfb\xda\xe7\x18\x80\x26\x90\xa6\x2d\x55\xef\xd4\x4f\x32\x59\xbf\x11\xd9\x9d\xed\xe0\xc6\xa8\x67\xec\xcd\x8d\x71\x8f\xae\xb8\xa2\x09\x32\x20\x51\xa1\x02\x25\x20\xc5\xa5\x92\x6a\xb0\x69\x83\x4d\xab\x59\x50\x05\xaa\x6a\xd5\x04\x35\xa0\xa6\x56\x55\x50\x07\x52\xd5\xf0\xec\x5e\x87\x69\x78\x51\x93\xa3\x0e\xf9\xa0\x34\x1e\x43\xe7\xab\x01\x4d\x20\x57\x13\xbd\x48\xec\x41\x81\x23\x63\xa9\x69\x42\x7a\x17\xdb\x43\x9b\x16\x75\xbe\x06\x9b\x26\x63\xfa\x78\xbc\x07\x9b\x26\x63\x49\x8a\x39\x66\x04\x4a\x72\x54\xf4\x68\xe1\x90\xf0\xa5\x46\x5f\xcc\x51\x47\x4e\xf7\xb7\x3d\x38\x72\x83\x23\xd7\x70\x24\x2e\x49\x9a\xae\x74\x7b\x20\x69\xfa\xde\x60\x59\xb4\x1a\x54\x46\x32\x3c\x19\xec\x81\xa4\xe9\x7b\x43\xd6\x47\xed\x3d\x16\x23\xea\x5d\x4c\xaf\x08\x7b\x50\x06\xe9\x6a\xce\x37\xfd\xcd\xd5\x7c\xeb\x1e\x9e\xf5\xf3\xc4\xcd\x3d\x1c\x63\xf9\x36\x41\x05\xa8\x08\xca\x82\x2a\x50\x93\x23\x50\x07\xea\x6a\x55\x05\x0d\xa0\xad\x56\x40\x07\xe8\xa8\xb8\xf4\x09\x4d\xb2\xd5\x54\xd1\x9b\x03\x50\x00\x0a\xda\xed\x22\x28\x02\xf1\x06\x12\x04\x25\x20\xbd\x78\xe9\x06\x35\x07\xd1\x7b\xed\xcb\x4b\xc9\x9e\x83\x50\x55\x07\xeb\xa5\x64\x4f\xea\x60\x99\x6c\x21\xff\x75\x2a\x2e\xe9\x7f\x64\xe2\xc9\xb9\x92\xb1\x2c\xee\x4c\xae\x5c\xd3\xb3\x67\xe6\x62\x36\xc9\x9e\xfa\x79\x89\xe5\xa8\x10\x39\x31\x73\x2a\xea\x27\x44\xd4\x7a\x36\xcd\xe2\xce\xe4\xc4\xc8\x58\xd6\xa5\x65\x92\x3d\xa7\x1f\x9c\xcc\x2d\x6c\x4e\xa2\xa6\x70\x16\x2b\x26\xd9\x73\x2e\xba\x57\x10\x8b\xee\x17\xdd\xab\x15\x55\xf2\x5c\x7f\x29\xf1\x26\x95\xed\x5c\x7a\x2b\x12\x77\x26\x19\x6f\x7a\x96\xcb\x26\x21\x9e\x94\xb1\x32\x96\x95\xf1\x26\x65\xec\x54\x12\x34\x11\x65\x92\x04\x65\x2c\x1b\x8e\x04\xa1\x2c\xc5\x0d\x65\x92\xa5\xa6\xb2\x54\x36\x4d\x88\x2c\x35\xa5\x5b\xd4\x86\x13\xdd\x9a\x3c\x4f\x12\xea\x79\xb6\xd2\x66\xa9\x4a\x9e\x64\x16\x19\xcb\x1c\x22\x32\x8b\x9e\x8f\x32\x55\x32\xcf\x47\x7b\xe9\x59\x5e\xef\x61\x7b\x21\x52\xcb\x0b\xdc\xac\x9f\x89\xee\xc5\x53\x83\x4c\x8a\xca\x9e\x8b\x62\x57\xaf\x40\x99\x54\xc9\x2b\xd0\xde\x7e\x6d\xc8\x49\x17\x8d\xad\x37\x65\x4c\xa6\xc8\xda\x5c\x21\xf4\xe4\x93\x39\x6a\x3c\xf9\xec\x03\xe4\xcc\x3f\xbc\xb0\x9c\x8b\x5f\x6f\xf9\x12\x1e\xde\x4e\x8e\xde\x3b\x72\xf5\x09\x1d\xde\x3b\x4e\x90\x6e\x35\x5f\xd5\xa3\x87\xfc\xa7\x49\xc5\xcb\x94\xc3\x7b\xfe\xd1\x13\x6e\x6e\x7e\xd1\x38\x41\x8b\x83\x49\xa5\xa8\x95\x16\xe7\xe8\xed\xa4\x5c\x7e\x0a\x0f\x6f\x27\x27\x3a\xf7\xca\xe5\x47\xee\xc4\xf1\x84\x54\x0e\x78\xcd\x7a\xa2\x78\x78\x22\x8e\xae\x35\x87\xb7\x93\x63\xae\x0f\xfc\x66\xe2\x98\xf4\x01\x93\xcd\xb5\xf9\xe8\x1d\xe5\xf5\x98\x2f\x74\xb9\xfd\xf8\x1e\xd3\x42\x63\x72\xa6\x95\x16\xfa\xe8\x39\xa5\xe8\x07\x4f\x87\xe7\x94\x93\x80\x82\x07\xc1\x65\xfd\xe8\xda\x50\xf4\x33\xa6\xa3\xbb\xc3\xd3\x58\xf0\x7d\x3c\x5c\x21\x30\x25\xb6\x2a\x28\x03\x29\xd4\x48\xab\x02\xb4\xd5\xca\x21\x6e\x02\xa7\xb8\x64\xf0\x1b\x88\x53\x24\x19\x18\x0b\x06\xd4\x04\x4d\xb5\x8a\xbe\x43\x54\xb3\x18\x0b\x2e\xd7\xa7\x4c\x5a\xb9\x36\x17\xf3\x43\x7e\x28\x37\x31\xa6\x2c\x75\x28\x37\x8f\xca\xba\xa2\x5b\xfe\xa1\xac\x3b\xd5\xcf\x57\x31\x45\x5f\x75\xbe\x30\x25\x69\x6b\xab\xce\xd7\x51\x59\x57\x54\x3e\x1d\xca\x3a\x4c\xba\xaa\x1c\x0f\x7d\x3d\x7f\xcf\xe7\xad\x28\x9f\xce\xf3\x27\x7e\x9e\x17\x0f\x65\x0a\xa6\xe8\x57\x4a\xa7\xeb\x02\x84\x89\xc9\x59\x7b\xba\xbe\xbf\x1e\xd5\x24\x85\x4d\xa3\x26\xc1\x44\xd1\xfd\x74\x71\xfb\xa8\x42\x28\xc5\x39\x74\xa8\x10\xce\x00\x72\x3e\x1e\x92\xcd\x51\xea\x28\xfa\x19\xe0\x51\xfe\x78\x9a\x58\x6f\x5a\xe9\xf8\x8a\xc8\x45\xbf\x4f\x3a\x10\xf9\x88\x8f\xa5\xe5\xbf\xbe\x39\xf9\xff\xff\xb1\x7f\x7a\xf9\xf9\x8f\x92\xe6\x4f\x9f\x3f\xef\xf7\xaf\xfa\x13\x28\xfd\xdd\xd1\x63\xed\xf3\xe1\x7d\xff\xfc\xe7\x54\x9f\x3e\x7e\x72\x2f\xfd\xef\x3f\x03\x00\x00\xff\xff\x20\x11\x85\x20\x7a\x35\x00\x00"); -func _ebbeg ()([]byte ,error ){return _dc (_adgf ,"UniGB-UTF16-H")};func _acca ()(*asset ,error ){_fdacf ,_efda :=_dgfb ();if _efda !=nil {return nil ,_efda ;};_gbea :=bindataFileInfo {_ag :"HKgccs-B5-H",_bc :11477,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492364,0)}; -_dadb :=&asset {_cd :_fdacf ,_dce :_gbea };return _dadb ,nil ;};var _bfde =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4d\x8b\x5b\x37\x14\x06\xe0\xbd\x7e\x85\x96\xe9\xa2\xb5\x74\x3e\x25\x10\x17\x9a\x0f\xd2\x59\xa4\x29\x4d\xd3\x16\x4a\x17\x1e\x5f\x79\x30\x74\x6c\x63\x7b\x16\xf9\xf7\xe5\x9c\xe3\xa4\xd0\xc5\xe0\x99\xd7\xd2\x3b\x57\x8f\xc4\xd5\xe6\xcd\xc3\xdb\x87\xe3\xe1\x96\x37\xbf\x5c\x4e\xbb\x4f\xf3\x96\xf7\x87\xe3\x7a\x99\xd7\xd3\xcb\x65\x37\xf3\xe3\x7c\x3a\x1c\x53\xaa\x90\xd7\xc3\xee\xf6\xf5\x4f\xff\xd8\x3d\x6f\xcf\x29\xd9\xfc\x4f\x5f\xae\xb7\xf9\xfc\x70\xdc\x9f\x32\xc6\xb8\xf5\xe5\x7c\x1f\x9b\xf3\xe6\xd7\xf9\x74\xb8\xde\x2e\x5f\xf2\xab\x1f\xd7\xd3\xe3\xfc\x2e\xaf\x73\x6f\xf9\xc7\xcb\x3a\x2f\x87\xe3\x53\x7e\xf5\xfe\x75\xfd\x96\x7e\x7a\x39\x9f\xff\x99\xcf\xf3\x78\xcb\xc5\xb3\x79\x5c\xfd\x33\x6d\xde\x7c\xd8\x9e\x7f\xde\x3e\xcf\xbc\x79\xff\xfa\xfb\x9f\x3c\xf4\xec\xf7\x79\xb9\x1e\x4e\xc7\xdc\x7f\x28\x45\xfe\x8b\x7f\xfb\x72\x9e\xb9\xde\xe7\x7e\x7e\x78\xfb\x71\xbf\xbf\xce\x5b\x86\x12\xbd\x9b\x3f\x3f\x3f\xbc\xcd\x7f\xd5\x5c\x4b\x06\x46\x81\xbf\xef\x43\xff\xf8\x70\x5a\xe7\xfd\x9f\xa7\x1a\xeb\xd8\x9d\xd6\x79\x3d\x6f\x77\xf3\xb2\x3d\x3e\xcd\x94\xf3\x80\x0a\x75\xc9\x43\xdf\xe9\xbb\xc5\x9e\xf1\x7f\x23\x52\x6b\xf7\x99\x87\x35\x92\xaf\x33\xa0\xea\x5c\x72\x97\x34\x00\xd0\x03\x10\x58\x72\xed\xc5\x12\xe1\x48\xe6\x92\x81\x3c\xd1\x18\xa3\xbb\x25\x03\x5b\x82\x51\x83\x56\x03\x02\x69\x00\x45\x42\x8a\x4b\x46\xb6\x66\x8e\x84\x55\x96\x4c\xd8\xd3\x00\x89\x44\xb0\x2d\x99\x81\x2d\xa1\x48\x94\x97\xcc\x64\x63\x34\xc6\xa8\x7d\x21\xc5\x9a\x95\x23\xb1\x87\x10\xb4\x59\x2d\xc6\x34\x2a\x4b\x16\x69\x96\x90\x3f\x73\x93\xed\x92\xb5\xd8\x13\x76\x20\x4b\xba\xec\x97\xac\x68\x63\xb6\x31\x6b\x6b\xcf\xdc\x2a\xa5\x01\x8f\x91\x3c\x5a\x4f\x2f\x2d\x0d\x2c\x9e\x60\x71\x1e\x5b\x3b\x06\x18\x3a\x58\x2d\x48\x69\x20\x44\x04\x1e\x55\xb0\x79\xe1\x81\xee\x51\x01\x20\x0d\x0c\x10\x24\x8f\xb0\x4a\x1a\x18\x22\xc8\x1e\x51\xb5\xfa\x20\x41\xf1\x88\x8b\xd5\x87\x00\x6a\x44\xdd\xea\x63\xc1\xd8\x3c\x92\x6e\xf5\x3d\xa2\xee\x91\x36\xab\x8f\x05\xa2\x2f\xb0\xb6\x66\xf5\xb1\x42\x7c\xf4\xa8\xab\xd5\xef\x22\xda\xf9\xd6\x15\xd3\xc3\x35\xa2\xd5\xa3\x6a\xdb\x89\x33\xa2\xe9\x11\xd8\x7e\xe2\x3e\xa2\xbd\x47\x68\xc7\x80\x82\x8b\x9c\x0b\x88\x28\x0d\x0a\x2f\x72\x2f\x60\x83\xa7\xf0\x22\x88\xc3\x82\x90\x06\x85\x17\xc5\xf9\x51\x90\x34\x28\xbc\xc8\xbd\xa0\x81\xd5\x87\x17\xb9\x17\x74\xdb\x32\x0a\x2f\x72\x2f\x2c\xb6\x67\x14\x5e\xe4\x5e\x58\xed\xc8\x50\x78\x51\x8b\xc8\xce\x39\x85\x17\xb9\x17\x82\x1d\x74\x0a\x2f\x72\x2f\xc4\x66\xf5\xe1\x45\xee\x85\xa4\x56\x1f\x5e\xe4\x5e\xc8\x6a\xf5\xe1\x45\xee\x85\x22\x56\x1f\x5e\xe4\x5e\xa8\x62\xf5\xe1\x45\xee\x85\x8d\x29\x0d\x0e\x2f\x76\x2f\xec\xd4\xd2\xe0\xf0\x62\xf7\xa2\x42\x90\x06\x87\x17\xbb\x17\x55\x94\x34\x38\xbc\xd8\xbd\x08\xb0\xa4\xc1\xe1\xc5\xee\x45\x08\x56\x1f\x5e\xec\x5e\x44\xd5\xea\xc3\x8b\xdd\x8b\xb8\x5a\x7d\x78\xb1\x6a\x5f\x32\x49\xb1\xfa\xf0\x62\xf7\x22\xe9\x9c\x06\x87\x17\xbb\x17\x69\xeb\x69\x70\x78\xb1\x7b\x51\x6b\x98\x06\x87\x17\xbb\x17\x75\xd5\x34\x38\xbc\xd8\xbd\xb8\x68\x4d\x83\xc3\x8b\xdd\x8b\xab\x58\x7d\x78\xb1\x7b\x31\xb0\xd5\x87\x17\xbb\x17\x23\x63\x1a\x12\x5e\xe2\x5e\x4c\xa4\x69\x48\x78\x89\x7b\x31\x53\x4d\x43\xc2\x4b\xdc\x8b\xfd\x0d\x21\xe1\x25\xee\xc5\x0a\x3d\x0d\x09\x2f\x71\x2f\x6e\x60\xf5\xe1\x25\xee\xc5\xbd\x5a\x7d\x78\x89\x7b\x49\xa9\x56\x1f\x5e\xe2\xe7\x4b\x6a\xb1\xfa\xf0\x92\x16\x51\xb7\xfa\xf0\x12\xf7\x12\xe8\x56\x1f\x5e\xe2\x5e\x82\xcd\xea\xc3\x4b\xdc\x4b\xa8\x59\x7d\x78\x89\x7b\x09\xab\xd5\x87\x97\xb8\x97\x88\x58\x7d\x78\x89\x7b\x89\x8a\xd5\x87\x97\xb8\x97\x34\xd6\x34\x34\xbc\xd4\xbd\xa4\x73\x4d\x43\xef\x57\x84\x7b\x69\x21\x4e\x43\xc3\x4b\xdd\x4b\xab\xbd\x99\x35\xbc\xd4\xbd\x14\x10\xd3\xd0\xf0\x52\xf7\x52\x04\xab\x0f\x2f\x75\x2f\xfb\x3e\x0d\x0d\x2f\x75\x2f\xe5\x6a\xf5\xe1\xa5\xee\xa5\x52\xba\xdf\x4c\x5f\x6f\x20\xfb\xdd\x2e\xed\x6f\xf7\xe8\xee\xe5\x72\x99\xc7\x9b\x5f\xd9\x7e\x65\xda\x9d\x77\x38\xce\x6f\xd7\xff\xf9\x74\xb6\x59\xfe\xf3\x6f\x00\x00\x00\xff\xff\xa2\x28\xe2\xe9\x2a\x08\x00\x00"); -var _fbeg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xd1\x6e\x1c\xbb\x0d\x7d\xdf\xaf\x98\xc7\xf4\x21\xb5\x24\x4a\x33\x12\x50\x18\x28\x12\x14\x75\x80\xb4\x45\x9d\xa4\x05\x8a\x3e\xcc\xee\x48\xee\x02\xf5\x7a\xb1\xb6\x1f\xf2\xf7\x17\x3a\x5c\x1d\x3a\xc6\xbd\xc0\x45\xe6\x90\x12\xc9\x43\x89\xa4\xbc\x37\x9f\xee\x3e\xdf\x9d\x8e\x2f\xd3\xcd\x3f\x2e\x4f\x87\xfb\xfa\x32\xb5\xe3\x69\xbb\xd4\xe7\xa7\xd7\xcb\xa1\x4e\xfb\xfa\x70\x3c\xed\x76\x3e\x4c\xdb\xf1\xf0\x32\x20\xfe\x39\x3c\xae\xe7\xdd\xee\xe6\xfb\xe9\xf8\xe5\xee\xfe\xe3\xf7\x6f\x7f\x91\xf0\xf1\xaf\xd3\xeb\x73\xbd\x2a\x3e\xdd\x7d\xbe\xff\xf9\xfc\x52\x1f\xef\x4e\xed\x69\x12\x35\xb0\xbd\x9e\xaf\x46\xa6\xe9\xe6\x9f\xf5\xe1\xf8\xfc\x72\xf9\x39\x7d\xf8\xf3\xf6\xb4\xaf\x7f\x98\xb6\xda\xba\xfc\xef\x97\xad\x5e\x8e\xa7\x87\xe9\xc3\x97\xf5\xbc\x9e\x3c\x15\xf7\xaf\xe7\xf3\xff\xeb\x63\x3d\xbd\x4c\x0b\x64\xf5\xb4\xe1\xdf\xdd\xcd\xa7\xaf\xeb\xf9\x6f\xeb\x63\x9d\x7e\x0d\xe8\x07\xd4\xd0\xfe\xa8\x97\xe7\xe3\xd3\x69\xf2\x7f\x74\x2e\x9b\xf8\xdb\xcf\x73\x9d\xfc\xd5\xca\xbf\xbf\xdf\x7d\x9e\xfe\xe3\x27\xef\xa6\x90\x66\xef\xfe\x7b\x95\xff\xeb\xeb\xd3\xc6\x55\xde\x39\xe5\x70\x38\x6e\x87\xff\xad\x97\xdd\x9f\x1c\xfe\xdb\xbb\xdb\x29\x87\xb9\x28\x0e\xce\xbb\xdb\x69\xc9\x45\x88\x13\x70\x20\x9e\x81\xd3\xc0\x41\xf5\x99\x58\xf5\xcb\xc0\x12\xba\xfd\x85\xf6\x44\x3a\xce\x03\xfb\xd2\xfd\x49\x26\xf4\x1d\xce\x84\xa1\xc3\x42\x28\x1d\x0e\xdb\xfe\x10\x6f\xa7\x2c\xde\x13\x27\x60\x47\x3c\x03\x8f\xd8\x7d\xed\xd8\xbd\xc1\x0b\x70\x24\xce\xc0\xb4\x57\x0b\xf0\x88\x55\xca\xfe\x76\xf2\xc1\xc7\x4c\xc1\x01\x82\xd9\x04\x9b\xae\x58\x28\xa8\x10\x24\x47\x41\x7b\xb7\x65\x75\xba\xa5\x50\xe0\x75\xcb\x4c\x41\x78\xbf\x45\x74\x45\xa2\x20\xaa\xc0\x56\xa4\xf7\x5b\x66\x5d\xc1\xc0\xd6\xce\xfd\xed\x82\x0c\x6c\xfa\x02\x6c\x41\xac\xef\x2d\xee\xfb\x82\x25\x10\x1f\x80\x3d\xf1\x06\x3c\x88\x27\x77\xb8\x9d\x96\xc8\x8b\x93\xdc\x06\xbc\x10\x57\xe0\x99\xb8\x01\x0f\x7f\x09\x17\x33\x39\x21\xf6\xc0\xb4\xe7\x03\x70\x24\x16\x60\xda\xf3\x11\xf6\x3c\x71\x02\x36\x7b\x33\x70\x20\x5e\x80\xcd\x5e\x06\x2e\xc4\x05\xf6\xcd\xde\x0a\x4c\xbe\x7e\x0f\x6c\xf6\x3a\xff\x14\xcc\xdf\x06\x4c\xfe\xbe\x02\x1b\x9f\x06\x4c\xff\x01\xfc\x03\xf9\x04\xf0\x0f\x8c\x27\x80\x7f\x60\xbe\x50\x98\x49\x68\x0f\x85\x99\x84\xfe\xc3\x02\xcc\xf8\x42\x06\x36\x7f\xe0\xc7\x62\x4b\x01\xfc\xc4\xfc\x83\x9f\x98\x3f\xf0\xf3\xf4\x27\x88\xd7\x73\xbd\x44\xe4\x83\xf6\x04\xfe\x1c\xf7\x47\xac\x8f\xcc\x67\x04\xbf\xc8\x7c\x46\xf0\x8b\x8c\x37\xe2\x7c\x59\x69\x29\xc2\x3e\xcb\x28\x45\xf0\x8f\xf4\x1f\xc1\x3f\x9a\x3f\xf0\x4f\xcc\x47\x44\x3c\x69\xd8\x9f\xfb\x79\xe5\x10\x3c\x71\xbf\xcf\xc1\x17\xe2\x0a\xbd\xad\x6f\xc0\x23\xde\xc5\x69\xd5\x2e\xc3\xe1\xd2\xeb\x3a\x07\x77\x35\x20\x0e\x17\x22\x8f\x0b\x26\x0e\x17\xa2\x8c\xb2\x17\x87\x0b\x50\x46\xc5\x8a\x43\x42\x8a\xcf\xc4\x02\x4c\x7b\x20\x5c\x46\x00\xe2\x40\xb0\x0c\x02\xe2\x62\x01\x0e\x03\xcf\xd8\x3f\x2e\xa4\xb8\xac\x98\xf1\x64\xb5\x97\x88\xd5\x1e\xe3\xcb\x15\x78\xe9\xf3\x6c\x0c\x95\x5d\x8e\xbf\x33\x65\xc4\xf5\xce\x99\xc3\x42\xdf\x05\xc9\x5d\x18\x1b\x9a\xe0\x2c\x62\x02\x90\x0d\x24\xbb\x6a\x70\x24\xbb\x22\x38\x21\xd9\x15\xc1\xbd\xd9\x0f\xb2\x42\x87\x07\xec\x17\x92\xad\x8a\x49\xb6\xaa\x3d\x92\xad\x6a\x8f\x64\x2b\xc8\x0a\x0f\xa3\xe9\xe1\x0d\x7f\xa1\xb5\xdb\x29\x88\x4b\x23\x40\x71\x7d\xae\xca\xe8\xfb\x22\xae\xcf\x3d\x19\xe5\x22\xe2\x7a\xcb\xf6\x65\xb6\x05\x18\x5e\x8c\x50\xdc\xac\x0b\x3c\x05\x8b\x0a\x12\x05\x59\x05\xb6\xa5\xa8\xc0\x9c\xac\x2a\x98\x29\xd8\x43\xb0\x98\xd7\x83\x0a\x02\x05\x7a\x0b\xb9\x00\x6d\xb3\x44\x46\xe1\x11\x66\x34\x3d\x66\xac\x18\xd6\x28\xb3\x09\x32\x16\x30\x31\x5e\x83\xcc\xf4\x88\x42\x92\x44\x16\xbd\x91\x65\xe1\x51\x4b\x40\xe6\x22\x49\x05\xcd\x1c\x73\x2f\xbd\xd3\x75\x81\x59\x98\xc1\xc1\x16\xe0\x30\x23\x13\xd7\x5b\x59\x16\x56\x9a\xa0\x95\x95\x37\x11\x6c\x6a\x90\x21\x88\xc7\x06\x86\x20\xa8\x6d\xe7\x68\x51\xf4\x74\x23\x31\x22\x18\xcd\x49\x44\x16\x6c\xf0\xb6\x20\xab\x80\x31\x48\x01\x4b\xc6\x20\xab\x2e\x30\x13\x7b\x2c\xb0\x98\x0e\xba\x80\x89\x96\x4d\x05\x8c\x32\x7a\x15\x70\x4b\x44\x66\x2d\xaa\xde\x21\xb2\x24\xc3\x1a\x54\x30\x01\xaa\xc8\x0e\x3b\xae\x48\x14\x59\x44\x5c\x16\x0b\x3a\xe2\x28\x59\x25\x92\x50\xc5\x76\x74\x49\xf3\x66\x79\x4a\xa2\x02\x5b\x11\x55\xc0\xcc\x26\xc4\x18\xb9\x63\xc1\x1b\xcc\xbd\x11\x68\x1e\x2c\x88\x45\xf3\x10\x79\xc1\x96\xaa\x02\xde\x87\xa5\xe1\x86\x5d\x4d\xb4\xe6\xd0\x8d\x46\xd9\xb4\xe6\xd0\xda\x17\xea\xbd\xbe\x7d\xc6\xac\x6f\x4d\x5b\xf5\x38\x9b\xd6\x04\x17\x68\xbc\x4d\x5a\x13\xe8\x1d\x0d\x48\x43\xb7\x70\x03\x27\x5d\x9f\x88\xb5\x9b\xcc\xc4\xba\xdf\x70\x7d\x3b\x2a\x5a\x43\xf7\xca\xb9\xfc\xd2\x7a\x65\x61\xeb\xbd\xac\xa7\x87\x7a\x9d\x3b\xd2\x5f\xf8\xe3\xd3\xa3\xcd\x26\x7b\x94\x51\x97\x5c\x3f\xab\x98\x39\x7f\xfb\xfc\x1a\x9f\xdd\x5d\x5c\x38\x5a\x7b\xef\x1a\x9f\x78\x45\x65\x7b\xd5\xcd\xa6\xc2\x03\x8a\x2f\xfd\xd4\xdb\xd5\xf8\x2c\x50\x99\xc1\xd5\x54\x7b\xa8\xec\xd9\x21\x54\x05\x4c\x78\x61\xf0\xbd\x4c\xc7\x27\x1e\x4b\xde\x1e\x17\x9e\x2a\xc1\x3b\x81\x73\x39\x49\x32\x15\x9e\x00\x8e\x61\xf4\x1a\x1c\x9f\x78\xdd\xf0\x4f\x85\x24\xe6\x0b\x87\x99\xa2\x3d\x1c\x6c\x17\xea\x23\xb1\x79\x3a\x37\xc2\x10\xd7\xd3\xb9\xe4\xcc\x01\xc2\x6c\x88\xc3\x4b\xb6\x38\xaa\x7c\x34\x15\xc6\x92\xe3\x58\xf3\xb3\xa9\x16\x9c\xa5\x8d\x44\xff\xc6\x62\xc1\x85\x65\xd3\x75\x25\x51\x57\x66\x5c\x76\x4e\xbe\x66\xaa\x86\xae\xc5\x62\xf4\x6d\xdc\x0e\xf1\xad\xe8\x80\x16\xea\x56\xd3\x35\xe8\xac\x24\x8d\xb6\xe0\x15\xe4\x8b\xb5\xce\x5e\x5b\xa3\xf1\x8b\xce\x1e\x56\xae\x5f\x4d\xa7\x2d\x38\xd3\x66\x7f\x0d\x8d\xf6\xec\x55\x67\x13\x21\x9b\x4e\xa7\x4b\xb1\xde\x6e\xfe\xc4\x69\xd7\x66\x63\x90\x68\xba\xa4\x3a\x6b\xf1\xb6\x2f\xea\xbe\x60\x6d\x50\x4c\x37\xab\xce\x5a\xe0\xde\x74\xda\x99\x82\x35\x64\xe3\x90\xd4\xa6\xcd\xcd\x94\x4c\xa7\x36\xc7\xe9\xb5\xc6\xbb\xd2\x1a\x2a\x27\x17\xaa\x52\xa3\x6a\xbe\xfe\x21\xe9\xaf\x5d\x41\x9b\x00\xc0\xe3\x7a\xde\xf1\xb7\x86\xc3\xeb\xe5\x52\x4f\x2f\xf8\x65\x03\x3f\x26\x4c\x5b\x6d\xc7\x53\xe5\xcf\x27\xe7\xa7\x73\xdf\x85\xff\x7f\x0b\x00\x00\xff\xff\xd3\x1e\xdc\xc0\x6a\x11\x00\x00"); -func (_da bindataFileInfo )Sys ()interface{}{return nil };var _fdgg =&bintree {nil ,map[string ]*bintree {"78-EUC-H":&bintree {_bb ,map[string ]*bintree {}},"78-EUC-V":&bintree {_cf ,map[string ]*bintree {}},"78-H":&bintree {_ff ,map[string ]*bintree {}},"78-RKSJ-H":&bintree {_ed ,map[string ]*bintree {}},"78-RKSJ-V":&bintree {_feea ,map[string ]*bintree {}},"78-V":&bintree {_bcf ,map[string ]*bintree {}},"78ms-RKSJ-H":&bintree {_cb ,map[string ]*bintree {}},"78ms-RKSJ-V":&bintree {_gea ,map[string ]*bintree {}},"83pv-RKSJ-H":&bintree {_gfa ,map[string ]*bintree {}},"90ms-RKSJ-H":&bintree {_ef ,map[string ]*bintree {}},"90ms-RKSJ-V":&bintree {_ccfb ,map[string ]*bintree {}},"90msp-RKSJ-H":&bintree {_fag ,map[string ]*bintree {}},"90msp-RKSJ-V":&bintree {_ccg ,map[string ]*bintree {}},"90pv-RKSJ-H":&bintree {_degg ,map[string ]*bintree {}},"90pv-RKSJ-V":&bintree {_dda ,map[string ]*bintree {}},"Add-H":&bintree {_dgd ,map[string ]*bintree {}},"Add-RKSJ-H":&bintree {_bdb ,map[string ]*bintree {}},"Add-RKSJ-V":&bintree {_gcf ,map[string ]*bintree {}},"Add-V":&bintree {_aggg ,map[string ]*bintree {}},"Adobe-CNS1-0":&bintree {_afa ,map[string ]*bintree {}},"Adobe-CNS1-1":&bintree {_agcd ,map[string ]*bintree {}},"Adobe-CNS1-2":&bintree {_cda ,map[string ]*bintree {}},"Adobe-CNS1-3":&bintree {_cdgb ,map[string ]*bintree {}},"Adobe-CNS1-4":&bintree {_cfa ,map[string ]*bintree {}},"Adobe-CNS1-5":&bintree {_ddab ,map[string ]*bintree {}},"Adobe-CNS1-6":&bintree {_cca ,map[string ]*bintree {}},"Adobe-CNS1-7":&bintree {_gedf ,map[string ]*bintree {}},"Adobe-CNS1-UCS2":&bintree {_egeb ,map[string ]*bintree {}},"Adobe-GB1-0":&bintree {_bfgd ,map[string ]*bintree {}},"Adobe-GB1-1":&bintree {_dag ,map[string ]*bintree {}},"Adobe-GB1-2":&bintree {_adfb ,map[string ]*bintree {}},"Adobe-GB1-3":&bintree {_bag ,map[string ]*bintree {}},"Adobe-GB1-4":&bintree {_dfc ,map[string ]*bintree {}},"Adobe-GB1-5":&bintree {_cee ,map[string ]*bintree {}},"Adobe-GB1-UCS2":&bintree {_geac ,map[string ]*bintree {}},"Adobe-Japan1-0":&bintree {_ffg ,map[string ]*bintree {}},"Adobe-Japan1-1":&bintree {_dbcf ,map[string ]*bintree {}},"Adobe-Japan1-2":&bintree {_cde ,map[string ]*bintree {}},"Adobe-Japan1-3":&bintree {_bgf ,map[string ]*bintree {}},"Adobe-Japan1-4":&bintree {_dceg ,map[string ]*bintree {}},"Adobe-Japan1-5":&bintree {_feg ,map[string ]*bintree {}},"Adobe-Japan1-6":&bintree {_gegc ,map[string ]*bintree {}},"Adobe-Japan1-7":&bintree {_cff ,map[string ]*bintree {}},"Adobe-Japan1-UCS2":&bintree {_fbca ,map[string ]*bintree {}},"Adobe-KR-0":&bintree {_bcde ,map[string ]*bintree {}},"Adobe-KR-1":&bintree {_dbdc ,map[string ]*bintree {}},"Adobe-KR-2":&bintree {_eef ,map[string ]*bintree {}},"Adobe-KR-3":&bintree {_gdff ,map[string ]*bintree {}},"Adobe-KR-4":&bintree {_gbe ,map[string ]*bintree {}},"Adobe-KR-5":&bintree {_fdec ,map[string ]*bintree {}},"Adobe-KR-6":&bintree {_dggg ,map[string ]*bintree {}},"Adobe-KR-7":&bintree {_gfgd ,map[string ]*bintree {}},"Adobe-KR-8":&bintree {_acaf ,map[string ]*bintree {}},"Adobe-KR-9":&bintree {_ffcd ,map[string ]*bintree {}},"Adobe-KR-UCS2":&bintree {_bfgf ,map[string ]*bintree {}},"Adobe-Korea1-0":&bintree {_gbef ,map[string ]*bintree {}},"Adobe-Korea1-1":&bintree {_cac ,map[string ]*bintree {}},"Adobe-Korea1-2":&bintree {_cedf ,map[string ]*bintree {}},"Adobe-Korea1-UCS2":&bintree {_bfb ,map[string ]*bintree {}},"B5-H":&bintree {_aebf ,map[string ]*bintree {}},"B5-V":&bintree {_egcd ,map[string ]*bintree {}},"B5pc-H":&bintree {_gfc ,map[string ]*bintree {}},"B5pc-V":&bintree {_dba ,map[string ]*bintree {}},"CNS-EUC-H":&bintree {_ebca ,map[string ]*bintree {}},"CNS-EUC-V":&bintree {_eae ,map[string ]*bintree {}},"CNS1-H":&bintree {_eaae ,map[string ]*bintree {}},"CNS1-V":&bintree {_gcb ,map[string ]*bintree {}},"CNS2-H":&bintree {_febce ,map[string ]*bintree {}},"CNS2-V":&bintree {_dgeb ,map[string ]*bintree {}},"ETHK-B5-H":&bintree {_bgd ,map[string ]*bintree {}},"ETHK-B5-V":&bintree {_daeg ,map[string ]*bintree {}},"ETen-B5-H":&bintree {_abege ,map[string ]*bintree {}},"ETen-B5-V":&bintree {_bacb ,map[string ]*bintree {}},"ETenms-B5-H":&bintree {_adg ,map[string ]*bintree {}},"ETenms-B5-V":&bintree {_cfe ,map[string ]*bintree {}},"EUC-H":&bintree {_cab ,map[string ]*bintree {}},"EUC-V":&bintree {_ffde ,map[string ]*bintree {}},"Ext-H":&bintree {_bgb ,map[string ]*bintree {}},"Ext-RKSJ-H":&bintree {_bfdg ,map[string ]*bintree {}},"Ext-RKSJ-V":&bintree {_gba ,map[string ]*bintree {}},"Ext-V":&bintree {_fegge ,map[string ]*bintree {}},"GB-EUC-H":&bintree {_affc ,map[string ]*bintree {}},"GB-EUC-V":&bintree {_ffgg ,map[string ]*bintree {}},"GB-H":&bintree {_fdef ,map[string ]*bintree {}},"GB-V":&bintree {_fbd ,map[string ]*bintree {}},"GBK-EUC-H":&bintree {_eaad ,map[string ]*bintree {}},"GBK-EUC-V":&bintree {_fdgc ,map[string ]*bintree {}},"GBK2K-H":&bintree {_dfab ,map[string ]*bintree {}},"GBK2K-V":&bintree {_egga ,map[string ]*bintree {}},"GBKp-EUC-H":&bintree {_fgf ,map[string ]*bintree {}},"GBKp-EUC-V":&bintree {_gdae ,map[string ]*bintree {}},"GBT-EUC-H":&bintree {_bdbg ,map[string ]*bintree {}},"GBT-EUC-V":&bintree {_gcc ,map[string ]*bintree {}},"GBT-H":&bintree {_ggdd ,map[string ]*bintree {}},"GBT-V":&bintree {_gcag ,map[string ]*bintree {}},"GBTpc-EUC-H":&bintree {_bffa ,map[string ]*bintree {}},"GBTpc-EUC-V":&bintree {_dacf ,map[string ]*bintree {}},"GBpc-EUC-H":&bintree {_bbcc ,map[string ]*bintree {}},"GBpc-EUC-V":&bintree {_fbab ,map[string ]*bintree {}},"H":&bintree {_ebfc ,map[string ]*bintree {}},"HKdla-B5-H":&bintree {_bfgdd ,map[string ]*bintree {}},"HKdla-B5-V":&bintree {_fgcc ,map[string ]*bintree {}},"HKdlb-B5-H":&bintree {_dfaa ,map[string ]*bintree {}},"HKdlb-B5-V":&bintree {_dcag ,map[string ]*bintree {}},"HKgccs-B5-H":&bintree {_acca ,map[string ]*bintree {}},"HKgccs-B5-V":&bintree {_ceag ,map[string ]*bintree {}},"HKm314-B5-H":&bintree {_fgb ,map[string ]*bintree {}},"HKm314-B5-V":&bintree {_gfbf ,map[string ]*bintree {}},"HKm471-B5-H":&bintree {_fegc ,map[string ]*bintree {}},"HKm471-B5-V":&bintree {_cgff ,map[string ]*bintree {}},"HKscs-B5-H":&bintree {_fge ,map[string ]*bintree {}},"HKscs-B5-V":&bintree {_dbag ,map[string ]*bintree {}},"Hankaku":&bintree {_abed ,map[string ]*bintree {}},"Hiragana":&bintree {_ggcc ,map[string ]*bintree {}},"KSC-EUC-H":&bintree {_cdfg ,map[string ]*bintree {}},"KSC-EUC-V":&bintree {_deeb ,map[string ]*bintree {}},"KSC-H":&bintree {_dddgd ,map[string ]*bintree {}},"KSC-Johab-H":&bintree {_bacc ,map[string ]*bintree {}},"KSC-Johab-V":&bintree {_gacd ,map[string ]*bintree {}},"KSC-V":&bintree {_fbbd ,map[string ]*bintree {}},"KSCms-UHC-H":&bintree {_eaeab ,map[string ]*bintree {}},"KSCms-UHC-HW-H":&bintree {_deae ,map[string ]*bintree {}},"KSCms-UHC-HW-V":&bintree {_efee ,map[string ]*bintree {}},"KSCms-UHC-V":&bintree {_cgeg ,map[string ]*bintree {}},"KSCpc-EUC-H":&bintree {_ddbd ,map[string ]*bintree {}},"KSCpc-EUC-V":&bintree {_caad ,map[string ]*bintree {}},"Katakana":&bintree {_edadf ,map[string ]*bintree {}},"NWP-H":&bintree {_gbga ,map[string ]*bintree {}},"NWP-V":&bintree {_beef ,map[string ]*bintree {}},"RKSJ-H":&bintree {_caebb ,map[string ]*bintree {}},"RKSJ-V":&bintree {_gfbba ,map[string ]*bintree {}},"Roman":&bintree {_fdbc ,map[string ]*bintree {}},"UniAKR-UTF16-H":&bintree {_dacd ,map[string ]*bintree {}},"UniAKR-UTF32-H":&bintree {_febb ,map[string ]*bintree {}},"UniAKR-UTF8-H":&bintree {_eagd ,map[string ]*bintree {}},"UniCNS-UCS2-H":&bintree {_eaee ,map[string ]*bintree {}},"UniCNS-UCS2-V":&bintree {_dcea ,map[string ]*bintree {}},"UniCNS-UTF16-H":&bintree {_bfgce ,map[string ]*bintree {}},"UniCNS-UTF16-V":&bintree {_cfbgb ,map[string ]*bintree {}},"UniCNS-UTF32-H":&bintree {_bdbc ,map[string ]*bintree {}},"UniCNS-UTF32-V":&bintree {_cafc ,map[string ]*bintree {}},"UniCNS-UTF8-H":&bintree {_dcb ,map[string ]*bintree {}},"UniCNS-UTF8-V":&bintree {_fcee ,map[string ]*bintree {}},"UniGB-UCS2-H":&bintree {_ccda ,map[string ]*bintree {}},"UniGB-UCS2-V":&bintree {_fdge ,map[string ]*bintree {}},"UniGB-UTF16-H":&bintree {_eccg ,map[string ]*bintree {}},"UniGB-UTF16-V":&bintree {_ccff ,map[string ]*bintree {}},"UniGB-UTF32-H":&bintree {_fgbb ,map[string ]*bintree {}},"UniGB-UTF32-V":&bintree {_dbb ,map[string ]*bintree {}},"UniGB-UTF8-H":&bintree {_bcae ,map[string ]*bintree {}},"UniGB-UTF8-V":&bintree {_ddge ,map[string ]*bintree {}},"UniJIS-UCS2-H":&bintree {_gagc ,map[string ]*bintree {}},"UniJIS-UCS2-HW-H":&bintree {_efbc ,map[string ]*bintree {}},"UniJIS-UCS2-HW-V":&bintree {_fcaf ,map[string ]*bintree {}},"UniJIS-UCS2-V":&bintree {_fbfg ,map[string ]*bintree {}},"UniJIS-UTF16-H":&bintree {_dcbc ,map[string ]*bintree {}},"UniJIS-UTF16-V":&bintree {_abdad ,map[string ]*bintree {}},"UniJIS-UTF32-H":&bintree {_gdgb ,map[string ]*bintree {}},"UniJIS-UTF32-V":&bintree {_daagb ,map[string ]*bintree {}},"UniJIS-UTF8-H":&bintree {_dfge ,map[string ]*bintree {}},"UniJIS-UTF8-V":&bintree {_ceaa ,map[string ]*bintree {}},"UniJIS2004-UTF16-H":&bintree {_ggbg ,map[string ]*bintree {}},"UniJIS2004-UTF16-V":&bintree {_bfecg ,map[string ]*bintree {}},"UniJIS2004-UTF32-H":&bintree {_gcff ,map[string ]*bintree {}},"UniJIS2004-UTF32-V":&bintree {_fdcd ,map[string ]*bintree {}},"UniJIS2004-UTF8-H":&bintree {_bggb ,map[string ]*bintree {}},"UniJIS2004-UTF8-V":&bintree {_bgccc ,map[string ]*bintree {}},"UniJISPro-UCS2-HW-V":&bintree {_ceae ,map[string ]*bintree {}},"UniJISPro-UCS2-V":&bintree {_abca ,map[string ]*bintree {}},"UniJISPro-UTF8-V":&bintree {_dcdf ,map[string ]*bintree {}},"UniJISX0213-UTF32-H":&bintree {_fbef ,map[string ]*bintree {}},"UniJISX0213-UTF32-V":&bintree {_ebee ,map[string ]*bintree {}},"UniJISX02132004-UTF32-H":&bintree {_gdaab ,map[string ]*bintree {}},"UniJISX02132004-UTF32-V":&bintree {_ddcgc ,map[string ]*bintree {}},"UniKS-UCS2-H":&bintree {_facf ,map[string ]*bintree {}},"UniKS-UCS2-V":&bintree {_egba ,map[string ]*bintree {}},"UniKS-UTF16-H":&bintree {_bada ,map[string ]*bintree {}},"UniKS-UTF16-V":&bintree {_gdcf ,map[string ]*bintree {}},"UniKS-UTF32-H":&bintree {_afead ,map[string ]*bintree {}},"UniKS-UTF32-V":&bintree {_agbcf ,map[string ]*bintree {}},"UniKS-UTF8-H":&bintree {_gdfa ,map[string ]*bintree {}},"UniKS-UTF8-V":&bintree {_bcce ,map[string ]*bintree {}},"V":&bintree {_eefee ,map[string ]*bintree {}},"WP-Symbol":&bintree {_dgcga ,map[string ]*bintree {}}}}; -func _degg ()(*asset ,error ){_ffe ,_fcd :=_fc ();if _fcd !=nil {return nil ,_fcd ;};_daa :=bindataFileInfo {_ag :"90pv-RKSJ-H",_bc :5565,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491045,0)};_cbgg :=&asset {_cd :_ffe ,_dce :_daa };return _cbgg ,nil ; -};var _dgcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4d\xab\x3f\xbd\x7a\xa5\x37\x3f\x9f\xe2\x19\x26\x83\x8e\x4b\xa5\x77\x30\x86\xe0\xc6\xe0\x41\x77\x42\x9c\x4e\x02\x21\x34\x52\x49\x72\x0c\xf1\xb1\x39\x76\x0f\xfa\xdb\x87\xbf\xae\x6b\x43\x3b\x84\xf3\x8c\x36\xda\x55\xbf\x52\x49\xa5\x92\xee\xb5\xee\xa5\x55\x7f\xf1\xd7\x7f\xfb\xef\xff\xf6\x8f\xff\xf0\xaf\xbf\xfd\xc5\xff\xfc\xa7\x7f\xfa\xfe\x6e\xff\xeb\x6f\xe7\x1f\xfe\xb8\xfe\xb4\xff\xe5\x9f\xfe\xcb\x9f\xbe\xfd\xdb\xdc\x7f\xff\x0f\x7f\xfc\xc3\x1f\xc2\xfb\xdb\xfa\x87\xef\x5f\x7f\x8a\xf7\xcf\xf7\x8f\xe3\x9f\xff\xf0\x87\x5f\xbf\xff\xbb\xff\xfa\x2f\xff\xba\xff\xf1\x6f\xff\x78\xfe\xe9\xb7\xc8\x79\xeb\xbf\xfc\xb3\xe7\xfe\xc5\xff\xb2\xff\xfe\x1f\xfe\xe5\x5f\xff\xf4\x5f\x7f\xfb\xef\xfe\xc7\xf5\x4f\x73\xff\xf7\xbf\xad\x7d\xfe\xf0\x17\xff\xd3\x9f\xd6\xfe\xd3\x3f\xfc\xf1\xef\xfd\xef\x7f\xfe\xeb\xff\xf8\x77\xe1\x3f\xff\xa7\xbf\xfe\xbb\xd7\xe3\x7f\xf7\x5f\xfe\xf9\x9f\xff\x9f\xfd\x8f\xfb\x8f\xff\xfa\x5b\xbd\xff\xd9\x7f\x5c\xf7\xef\x1f\xfe\xe2\xaf\xff\xc3\xf8\xe7\xff\x38\xfe\x71\xff\xf6\x17\xf7\xa7\xff\xee\xd7\x4f\xff\xdd\xaf\x9f\xfe\x37\xc7\xff\xb7\xfd\xa7\x7f\xf9\x87\x7f\xfa\xe3\x6f\x21\xfd\x0f\xcf\x13\xb8\xe4\xaf\xff\xff\xaf\xff\xf5\x9f\xf7\x6f\x3f\x27\xfe\x1f\xff\xe9\x6f\xff\xfd\x6f\xff\x67\xf8\x2d\x3c\xbf\xbd\x39\xc6\xfc\x5b\x78\xc3\xfb\x7f\x79\xf0\x7f\xff\x0f\xff\xb4\xf6\x6f\x0f\xa5\x40\x63\xbe\x7f\x5a\xfb\x5f\xfe\x79\x7c\xfb\x4f\xe3\x8f\x7f\xbf\xff\xf0\xdb\x6f\x7f\xf9\x3c\xcf\xf3\x57\xbf\xfd\xe5\xdf\xfc\xcd\xdf\xfc\xcd\x5f\xfd\xba\xc5\xff\xcf\x19\x7f\x08\xcf\xc3\x4f\xe7\xf9\xfe\xef\xf1\xa7\x3f\xfc\xfc\xe0\x9c\xb3\xfe\xea\x57\xa9\xfc\x2a\x3d\xcf\xe8\x94\xc2\x5f\xfd\xf6\x97\x6f\x78\x5f\x4a\xef\xaf\xd2\xf3\x16\x4a\xf1\xaf\x7e\xfb\xcb\xf8\xeb\xe7\xb7\x94\xee\x55\x9e\x8f\x52\xa5\xb4\x29\x35\x7e\x57\x29\xf5\x7b\x2c\x4c\x4a\x83\xd2\xa0\x34\x29\x1d\x4a\x1f\x57\x09\x94\xd6\xaf\xd2\x8e\xd6\xb7\x7f\x5d\xf3\xdd\x9e\x79\xa8\x21\xdf\x52\x8d\xb7\x0d\x93\xfa\x6a\xbb\x57\xc9\xdc\x59\xed\xf7\xcc\x10\x29\x0d\xae\x49\x0d\x75\x72\x2c\x51\xfa\xfe\xdb\x7e\xa9\xeb\xdf\x94\xf6\xbf\x29\x9d\xff\xb6\xd4\xe8\x89\x4c\xfb\x5a\xa6\xc4\xb1\xf1\xdd\x1a\x22\xf7\x39\x16\x25\x7a\x77\x70\xcd\x87\x3b\x1b\x5c\xf3\xa1\xaf\x27\xcf\xe8\xa1\x97\x66\xe0\x77\xd4\x30\x5f\x9e\x18\xad\x9d\x3e\x15\xae\x32\x7f\xdd\xcb\x9b\x3f\xcf\xcc\x94\xe8\xb3\x59\x6e\x69\x7a\x66\xa5\xc4\xbd\xcc\xc6\x99\x3c\xbf\x79\xfb\xac\xfc\xdc\xcb\xa0\x44\x1b\xe6\xe4\x4c\x6b\xff\x28\x79\xe6\x6d\x5f\x1e\xf4\xee\xdc\x94\x78\x7e\xf3\x50\x1f\xfd\xf2\x3d\x94\x78\x46\xdf\xaf\xf6\xc5\x77\x70\x67\xdf\x1d\x75\xc1\xfa\xbe\x48\xdb\xb9\xb3\x8f\xbe\xde\x9e\x49\x5f\x47\xda\xf7\xfd\x6a\xdf\xf3\x7e\xd4\xb0\xec\x41\x7a\x62\x05\x4a\x1e\xa3\x07\x17\x6d\x58\x8c\x9e\x63\x29\x31\x96\x68\xc3\xba\x3d\xf8\x3a\x5a\x57\x61\xb4\x72\xd7\x8b\x31\x1f\xb8\xb3\xc5\xa8\x0b\xd6\x70\x7b\xe9\x2d\xb4\x7d\x7d\x5c\xc5\x33\x6f\x2f\xbd\x99\x9e\x5f\x8c\xeb\x42\x7d\xfb\x3e\xbf\x37\x52\xc3\xbe\xcf\xe8\x1d\xf4\xc4\xbe\xcf\xe8\x7d\xb9\xe6\xee\x5c\x93\xb6\xef\xfb\x8c\xde\x69\xe9\x57\xed\x31\x2e\x6a\xd8\x1f\x25\x6b\xa0\xf6\x97\x7e\xd9\xd4\xfe\x72\x67\xfb\x50\x3b\xf5\x9d\x87\x12\x6f\xc7\xb9\x63\xb0\x24\x6a\x3f\x2f\x25\x6a\x38\xf7\x19\xbd\xdd\xdf\x25\xc6\x0b\x33\xca\xb9\x3d\x18\x3a\xb5\x9f\x42\x89\xe7\x77\x2a\x25\xaf\xd2\x28\x59\xc3\xa4\xe4\x55\x3e\x4a\x8d\x92\x6d\xb0\x3e\xdb\xe0\x35\x7d\x8f\x6e\x4f\x04\xe7\x3a\xfa\x33\x3c\xe1\xdf\x1c\x7b\xff\xcd\xb1\xc8\xb1\x44\x89\x51\x40\xcf\xff\x1a\x8a\xbf\xde\xb1\xf0\x52\xe2\x49\x3f\x1e\x63\x76\xe3\xa9\x84\x67\x30\x76\x23\x25\xda\xf0\xab\x27\xf6\x1f\x97\x33\xf0\xff\xcf\x94\x1c\x9e\xc3\x23\xe2\x92\xe1\xbe\xd2\x91\x97\x31\x84\x74\x4b\xbc\x54\x21\x54\x8e\x71\x9b\xa1\x31\x58\xa9\x3c\xfc\xba\x95\x1c\x72\xa7\x34\x28\x4d\x4a\x93\x92\xd7\xfc\x28\x2d\x4a\xeb\x96\x8a\x35\x6c\x4a\x34\x21\xfc\xba\xb3\x9c\xf7\x7d\x39\xc2\xfb\xab\x3b\x6b\xda\xd4\xf0\xfe\xea\xce\xfa\x79\x9f\xef\x6d\x7a\x6e\x74\xee\xcb\x34\xd1\x3c\xc6\x34\xd1\xa8\xef\x65\x9a\x68\x74\xfc\xcb\x34\xd1\xb8\xcf\x97\x69\xa2\xdd\x17\x2e\x44\xa6\x89\x46\x7d\xf1\x0e\xc1\xec\x03\x8b\x2f\x25\x7a\x22\xde\x21\x98\x5f\x8f\x31\x0d\xbe\x1e\x63\x1a\x0c\x1e\x63\x1a\xec\x1e\x63\x1a\x64\x51\x0b\x91\x69\xf0\xe1\x41\xc7\xce\x99\x3c\x95\x48\xfb\x1e\xaf\x42\xfb\x82\xbf\xa3\x7d\xc1\x6b\xd2\xbe\x70\x07\x6b\x48\xb4\xa1\x72\x66\xa2\x0d\x85\x5e\x4a\xb4\x21\x7b\x8c\x36\xf8\x8c\x12\x6d\x28\xf4\x44\xa2\x0d\x3e\xa3\xc4\x7d\x6e\xee\x2c\x71\x9f\x9b\xda\xef\x02\x1b\x9f\x48\xed\x77\x81\xcd\x31\x79\xec\xe3\x18\xd7\x3c\x4c\x98\x8b\xde\xbd\x2f\xe3\xf3\x7e\x1e\x6b\x94\x78\xee\xa7\x53\xba\xcf\xe8\xbd\xa3\x2e\xed\xb7\x51\xea\xb7\x14\x0b\xa5\x41\xe9\x50\x9a\xb7\xd4\x32\xa5\xef\x96\x58\x10\x5e\x47\x5d\x7b\x29\x31\xea\xba\x57\xb9\xa3\x2e\x0c\xea\xbb\xa3\x2e\xbf\xa7\x53\x0a\xb7\x45\xb4\xef\x7d\xdf\x5b\x2a\x1e\x8b\xb7\x34\xb9\xca\xfb\xab\x07\x73\x67\x11\xfd\x35\x5b\xfc\xf6\x97\x79\x36\x6a\x7f\x7f\xb5\x3d\xaf\x65\x0d\xbf\xda\x9e\x77\xf5\xcc\x46\x89\x36\xbc\xf7\xad\xda\x27\x51\xba\x6f\xd5\xc9\x5e\xe5\xf6\xee\xe1\xa9\xbc\x77\x94\x17\x47\xe4\x7b\x47\x79\xc9\xdb\x33\x7f\xb5\xaf\x66\xa6\xba\xf7\x8e\xf2\x5a\x2a\xf7\x79\x47\x79\x3b\x93\x5e\xba\xa3\xbc\x17\xdb\x90\xef\x08\x49\x2f\x35\xe4\x78\x7b\x90\xd1\xfa\xe6\x74\x4b\xbc\xef\x6f\xce\x1c\xf3\xcc\x42\x29\x52\xaa\xb7\x94\x2c\xf1\xfc\x78\xfb\xdf\xcc\xf3\x6b\xd6\xc7\xf3\xe3\xdd\x7c\x33\xcf\x6f\xd2\x2f\x99\x59\xc3\x67\x9b\x9d\x35\xb8\xeb\xec\xac\x41\x7f\x66\x9e\x9f\x6d\xbf\x61\x64\x7e\x3b\xc7\x0a\xcf\x28\xf0\xbb\x1b\x46\xe6\x98\xb8\xeb\x72\x9f\x51\x24\x74\x7b\xcb\x7d\x46\xf1\xe3\x49\x17\xda\xc0\xb2\xf2\x16\xda\xf0\x78\x4d\xda\xf0\x78\x26\x6d\xf0\xb9\x17\xda\xf0\x7a\x26\x63\xf0\xd7\xe8\xf9\xb3\x53\xf2\x5b\x68\xde\xf6\xc6\x36\x1d\xe8\x4d\x1f\x4a\x54\x57\x1f\xba\x93\x6e\xa9\x81\xd2\xa6\xf4\xd2\x9d\x96\x78\x7c\x4c\xe5\x6f\xbd\x4d\x0f\xac\xa8\x6f\xbd\x4d\x7f\x7d\x60\xb5\x30\xe4\x69\x42\xad\x74\x92\xc7\x1a\xdd\x42\x47\xdc\xf8\x36\xc7\xed\xb1\x3b\x3c\x6b\xf0\x5e\xee\xf0\x6c\x9b\xa6\xdf\xf8\x36\x77\x3b\xfe\xc6\xb7\xb9\x13\xa3\xbf\x37\xbe\xcd\xbd\x72\x95\x76\x5f\xb1\x99\x2d\xdd\xc7\x37\x0f\xad\x6d\xf7\xf1\x7d\xac\xa1\xef\x8d\x7d\xf3\x07\x5e\x78\x6f\xec\x9b\x3f\x5f\xcd\x76\xdb\xf0\x55\x5a\xdb\x2a\x2f\x1c\x83\xae\xdd\x36\x2c\x26\xb0\xb7\xdd\x3b\x5b\x87\x5e\x6a\x8b\xd7\xcf\x6b\x6e\x5e\x3f\x8f\xdd\x81\x65\x54\xf7\xf6\x3b\x31\x1c\x62\xfb\xb7\xff\xba\xeb\xf2\x26\x6a\xe8\xf4\x7c\xa0\xf6\x4e\xcf\x33\x5d\xbf\x9d\x17\xe7\xf1\x4c\x5e\x9c\xd7\x12\x2f\x4e\xf4\x4c\x06\x5d\xa4\xaf\x3b\x83\x2e\x59\x7b\xa7\xb5\x1e\xf3\xc5\xa1\xed\x9d\x41\xd7\xad\x9d\x41\xc7\x42\xf2\xf6\x45\x89\xf6\x75\x46\x16\xcb\xd1\xdb\x19\x59\x83\x63\x83\x91\xf5\x71\x95\xc1\xc8\xfa\xb8\xb3\x41\xfb\x3e\xda\x3e\x68\x03\xb1\xef\x3b\xb8\x4f\x82\x84\x77\x10\x16\x38\x7a\x06\x61\x81\x2f\xdc\x20\x2c\x28\x8c\x82\xe1\x4b\xcc\xeb\x37\x78\x89\x3b\xc7\x2e\x22\xc9\xbf\xd6\x8c\x5b\x4a\x8c\x4f\x7a\x62\x32\x3e\x83\xc7\x18\x9f\xf6\xcb\x64\x7c\xfa\xae\x5c\x2c\x91\x63\xf2\x9a\x2e\x4e\xf4\xcb\xc5\x12\x39\xfa\xe6\x5c\x2c\x91\x63\xa3\x0d\x17\x4b\xe4\xe8\x02\x74\xb1\x44\x8e\x2c\x55\xef\xc5\x12\x39\xda\xf6\x8b\x25\x72\xdb\xb4\xe1\x62\x89\xdc\x5f\xee\xe5\x62\x89\xdc\x9d\x0a\x3e\x96\x87\xd7\xab\x64\x4a\x5e\xa5\xf0\x06\x50\xfb\x77\xdb\xf7\x39\x96\xbe\xc6\x98\xf7\x98\xa3\xc0\xab\xdc\xf6\x7d\x2c\xef\xbf\xd6\xcb\x3b\xae\x3d\xf3\x63\x5c\x5b\x3b\xa3\xfc\x70\xe6\x62\x24\xfb\x34\x17\x23\xd9\xe9\xec\xa2\x95\xf2\xba\xc0\x5e\xb4\x52\x5e\xc7\xe0\x45\x2b\xe5\x4d\xf4\xd9\x45\x2b\x25\xbf\x5e\xb3\xdc\x52\xa3\xaf\x2f\x5a\x29\xd9\xa7\x79\xd1\x4a\xc9\x83\x3b\x5b\xfd\x96\x26\xbd\xb4\x06\x0b\x17\x4f\xe5\x22\x99\x52\x0e\xa3\xee\x22\x99\x52\x7f\xee\xec\x2e\x71\xd5\x40\xe0\x22\x99\x32\x5f\xcf\x3c\xb7\x54\x18\xc9\xfb\xb9\xa5\x4a\x0d\xfb\xb6\x6f\xfa\x34\xf7\x6d\xdf\x5c\xe9\xf7\xa6\xe4\x1d\x39\xd1\x9f\xdd\xa6\xff\x4c\x44\xfb\x36\xfd\x73\xed\xdd\xbf\x9a\x5e\x1f\x57\xa3\x0b\xa3\xea\xeb\x83\xbe\x30\xaa\xfe\x74\xe7\x85\x51\xf5\x8d\x9e\x39\x6e\xc9\xe1\x79\x61\x54\x7d\x5d\x5f\x2f\x8c\xaa\x6f\xf6\xcc\x75\x4b\x83\x61\x76\x61\x54\x8d\xcd\x63\xbc\xc4\x81\xdf\x1d\x5e\x62\x5f\x8e\xc3\x4b\xec\x24\x7c\x9c\xa4\xb8\xeb\xe3\x24\x45\x77\x1e\x26\x29\xef\xec\xf0\x82\x3b\xb9\x1d\x26\xa9\x44\xdb\x8f\xab\x3b\x83\xe0\xf0\xf2\xfb\xf8\x0e\x2b\xe3\xba\xd7\x8c\x0f\xf7\x42\xc4\x17\x1f\xee\x65\x6d\x4a\x2f\x13\x43\xa6\x14\x29\x25\x4a\x85\x78\xec\xa3\xc4\x84\x72\xbc\xe6\x60\xe1\x1a\x94\xee\x90\x7f\x89\xf1\xe2\xf3\xb1\xf2\x1f\x4a\xbc\xb6\xe1\xf6\x6e\x0c\xbc\xb6\x00\xe6\x18\xbc\x17\xce\x0c\x44\x75\x89\x6b\x06\x22\x86\xc4\x5d\x07\x22\x06\x62\xae\x5f\x61\xc4\x2d\x51\x5f\x20\x62\x28\x5e\x85\x69\xa9\xd0\xbe\xc0\xb4\x34\x27\x25\x97\x4d\xcf\x64\x5a\x22\x82\x8e\x60\xa5\x78\x22\x25\xa6\x25\x26\x94\x48\xd4\x1a\xb7\xd7\x64\x5a\xda\xde\x19\xed\xdb\xf4\x0b\x51\x6b\x3c\xfc\xce\xa8\xd5\x3e\x33\x6a\x3d\xf4\xb5\x51\x2b\xcb\x74\x24\x6a\x8d\xbb\x50\xa2\x7d\x9b\x9e\x20\x6a\x8d\xe7\xa5\x44\xfb\x0e\x3d\x41\xd4\x1a\x79\x51\xe3\x6b\xfb\xac\xc1\xf6\xd1\xd7\xaf\xed\xb3\xbe\xdb\xbe\xb2\x2c\x2d\x4a\xd6\x47\x58\x10\xbc\x97\xc3\x14\x49\xdb\x6f\xd4\x9a\x3b\x54\x5a\xbc\x51\x6b\xee\x95\x1e\x8c\x4c\xbb\xc4\xb7\xf1\x62\xb3\x3c\x33\xf7\x72\xb1\x59\x9e\x8d\xde\x8d\x86\x0c\xf4\x52\x24\x2a\xb7\x07\x23\x21\x03\xd8\x33\x46\x43\x06\xaf\x39\x99\x4c\xbd\x8a\x53\xab\x57\x59\x04\x09\xde\xd9\x26\x48\xf0\x9a\x04\x10\x8e\xc1\xe4\xb4\xcb\x9d\x25\xa7\x5d\xda\x9e\x98\x5a\xa1\x69\xe2\xc5\x5f\xe5\xcd\x5c\x33\x31\xb5\x0e\x7f\xc7\xd4\xea\x9d\x5d\x6c\x56\xaa\xbd\x74\xb1\x59\xa9\xe0\xd2\x98\x98\x3e\x59\x64\x62\x5a\x4c\x91\xb4\x21\x31\x7d\x7e\x1e\xbb\xd3\xa7\x4b\x4e\xcc\x0f\x25\x9e\x6d\x0e\xcc\x75\xb4\xe8\x22\x84\xf2\x25\xcf\x8c\x94\x3c\x93\x39\x12\xf2\x2c\x5e\x84\x50\x7f\xad\xeb\xb7\x54\x98\xb3\x78\x62\x17\x21\xd4\x08\xd2\x8e\x17\x21\xd4\xb4\xbe\xdf\x99\x92\xe3\x05\x0f\x35\xd9\xf4\x0b\x1e\xaa\xc0\x37\x5e\xf0\x50\x33\xb1\x68\xbc\x20\xa0\x0a\xf3\xe3\x05\x01\xb5\x54\x1a\x7b\x41\x40\x2d\x83\xdb\xbc\x20\xa0\x96\xe9\xef\xee\x6d\x16\x5f\xb8\x0b\x02\x6a\x75\xb0\x5e\x10\x50\xeb\xe6\x11\x5d\x10\x50\xab\xaf\xed\x05\x01\xb5\xb3\x2e\xc7\x0b\x02\x6a\x9f\x5e\xe5\x4e\xe5\xc3\xc1\x7a\x23\xfd\x3a\x58\x8d\xa2\x11\x3b\x80\x32\x1a\xb1\x77\x4b\x4c\xc9\xac\x9a\xb1\x32\x25\x0f\xda\x5e\x99\x92\x1d\x12\x95\x29\x99\xd5\x3d\xde\x88\x3d\x9d\xc7\xab\xdc\x29\xf9\x04\x4b\x83\x63\xdc\xe7\x8d\xd8\xd3\x09\x5e\xe5\xe3\x18\xbd\x74\x59\xe7\x24\x7b\x15\x1b\x53\xb9\x53\x41\x63\xfa\x24\x3a\x8b\x8d\x36\xf8\x82\x37\xda\xe0\xc4\xd0\x68\x83\xbd\xd4\x68\x03\x4c\x76\xbc\x11\x7b\xfa\x79\x71\x6e\xc4\x9e\x8c\xb5\x23\x11\x7b\x70\x12\x6e\xc6\x94\xbc\x46\xcd\x98\xd2\xda\x89\x29\x89\xf8\x22\xb1\x7d\x28\x96\x40\x55\xd5\x1a\x88\x37\x9b\xb5\x13\x6f\x42\x66\x45\x62\xfb\xd7\x17\xf5\xc6\xef\xf9\x25\xbf\x10\x3b\xd1\xa7\xd3\x52\x07\x39\xc1\x1e\xc7\xce\x14\x49\x84\x12\x3b\x53\x24\xf0\x39\x76\xa6\xc8\xd7\x1a\xee\x7d\x26\x9f\xca\x8d\xd1\x73\xb2\x77\x6f\x8c\x9e\x13\x64\x4f\xbc\x31\x7a\x4e\x3e\xa3\x1b\xa3\xe7\xe4\xcb\x78\x63\xf4\x9c\xec\xb3\x1b\xa3\xe7\x64\x9f\xdd\x18\x3d\x27\x38\xc5\x38\x22\xbf\xf3\xcc\xc4\x31\xda\x7e\xe3\xf7\x9c\xbc\xeb\x51\x28\xd1\xa2\x51\x29\xd1\xf6\x1b\xdb\xe7\x04\x37\x1f\x89\xed\x13\xcc\x64\x24\xb6\x2f\xdb\x3b\x9b\x4c\xe5\xfe\xce\x69\xde\xfa\x6e\xfb\x6a\xb4\x86\x4d\xc9\xdf\xdd\xf6\x19\xd5\x45\xe2\xfe\x9f\x29\xeb\x66\x22\xf2\xcf\x74\x76\x33\x11\xb9\x12\x6f\xc6\x9b\x89\xc8\x95\x58\x3b\x82\x02\xba\xd3\x0b\x28\xa0\x57\xaf\x39\x38\x46\xed\xa0\x80\xee\x5c\x00\x0a\xe8\xd5\xab\x80\x52\x21\x89\x22\x28\xa0\x37\x7a\x90\x68\x7e\x42\x2e\xc5\xcf\x65\x85\xdf\x11\xcd\x4f\xf0\x73\x24\x9a\xff\x1c\x2f\x46\xf3\xd6\x40\x34\xbf\xec\x25\xa2\xf9\x6d\xef\x12\xcd\x6f\x97\xb1\xcf\x25\x87\x16\x11\xcd\xff\xbc\x8d\x44\xf3\xe6\xb8\xe2\xc7\x92\x63\x98\xf5\xb1\xe4\x2c\xae\x72\x23\xfd\xf2\x33\x92\x8d\xe6\x1d\x4b\x46\xf3\x2e\x08\xcb\x25\x87\x6b\x12\xcd\xbf\xf9\xf7\x88\x8b\x68\xa0\x1f\xad\x8e\x40\xdf\x08\xc5\x40\xdf\xf5\x95\x80\xbd\xfa\x02\x10\xb0\xd7\xc8\x63\x20\x60\xaf\xc4\xd3\x91\x80\xbd\xba\xd6\x13\xb0\x57\xd2\x04\xd1\xa8\xdc\x57\x8c\xa8\x7c\x16\x7f\x97\x09\xfb\x69\xc2\x8d\xca\xcb\xcf\x63\xb8\x51\x79\xf9\xb2\xf5\x35\x4a\xbc\xee\x37\x2a\x2f\x1f\x91\x77\xbc\x91\x77\xf9\xe0\xdc\xe2\x8d\xbc\xcb\x67\x34\x71\x23\xef\xf2\x19\x0d\x6e\x56\x4d\xbb\xec\x46\xd7\xf5\x81\x79\x8d\x37\xba\xae\x2f\x34\x4d\xbc\xd1\x75\x7d\xad\xfd\xb0\xe4\x54\x1e\xca\x8d\xae\xeb\x80\x6f\x8c\x37\xba\xae\x9f\x91\xc6\x8d\xae\xeb\x67\x1c\x77\xa3\xeb\x7a\xec\xeb\x73\x97\x9c\x03\x77\x1d\x6f\x02\xa3\x9e\x69\x0d\xbf\xda\xd0\x1e\xa7\x89\x9b\xc0\x68\x26\xed\xe2\x4d\x60\xb4\xc7\xc9\xe6\x26\x30\x9a\xc9\x86\x74\x23\xf6\xf6\xf0\xa2\xa6\x1b\xb1\xb7\x07\x66\x32\xdd\x88\xbd\x3d\x0c\xf9\x74\x93\x14\x2d\x6c\xcf\x2c\x94\x06\xa5\x7a\x4b\xc7\x63\x8d\xd2\x47\xe9\x57\x1b\xda\xfb\x58\x1a\xb7\xc4\x40\x4e\x37\x9a\x6f\x26\x99\xd2\x8d\xe6\xdb\x4b\x3c\xfd\x6b\xe6\xfa\x55\xaa\xde\xe7\xa6\xe4\xb1\xdb\x86\x02\xfe\x4a\x37\xd2\x6f\x8d\x98\x24\xdd\x48\xbf\xb5\x44\x7d\x37\xd2\x6f\x8d\x21\x9f\x6e\xa4\xdf\xba\xed\xbb\x91\x7e\x2f\x8c\xac\x14\x58\xaa\x48\x9e\xa6\xe0\x72\xdb\x28\xb1\x54\x81\x8e\x12\xfc\xf4\x49\x5e\x85\xe5\x96\xa5\x2a\xc1\x4f\x9f\x6c\x89\xe5\x16\xca\x21\xc1\x4f\x1f\xc6\x7c\xba\x91\x7e\x32\xad\x9b\x6e\xa4\x9f\x0e\xa3\x2e\x05\x96\x62\x26\xcc\x74\xa3\xf9\x74\x78\x73\xd2\x8d\xe6\xd3\x21\xf0\x48\x37\x9a\x4f\x87\x58\x2d\xdd\x68\x3e\x1d\xa8\x98\xf4\xb2\xdc\x42\x32\xa4\x97\x36\x10\x09\xa7\xd7\x36\x14\x4a\xb4\xc1\x5e\x7a\x6d\x83\x67\xd2\x86\xe2\xbd\xd0\x06\xa6\xe4\xf4\xd2\x06\x90\x61\x7a\x69\x43\xf4\x9a\xb4\x81\x77\x2c\xdd\x68\x3e\x99\xb6\x4e\x37\x9a\x4f\x87\x25\x3c\x45\xda\x97\x69\x51\x14\x19\x52\x7b\x94\xc4\xa4\x97\x88\xe6\x83\xcf\x81\x68\x3e\x54\xfa\xec\x66\x53\xb2\x49\xbb\x14\x41\x8d\x90\x28\x89\x88\xfd\x7d\xad\x6f\xb3\xa0\x73\xcd\x1b\x95\x67\x91\x76\x4a\x20\x27\x92\x7d\x29\x81\x9c\xaa\x25\x90\x93\xf5\x25\x96\x54\xf0\x65\x4a\x2c\xa9\xaf\x25\x96\x54\x12\xb2\x29\xb1\xa4\x46\x4b\x2c\xa9\x88\x1e\x52\xba\xf7\x99\xec\xc1\x44\xc8\x00\x69\x9a\x12\x21\xc3\xaf\x67\xf4\x67\xa7\xe4\x94\x88\x26\x7c\xec\x89\x68\xc2\x57\x3a\x11\x4d\xd8\xd5\x99\x68\x82\xbc\x6a\xca\x44\x13\xbe\x8c\x99\x68\x82\xf5\x35\x65\xa2\x09\x20\x72\xca\x44\x13\xd1\x63\x34\x3d\xfa\x3b\x9a\xee\x10\xcc\x34\x1d\x78\x92\x32\xcd\x23\x22\x4a\x99\xe6\x39\x04\xb3\xcd\xf3\x18\x6d\x60\x09\x48\xd0\xfd\xe9\xb5\x06\x23\x22\x06\x5d\xa1\x0d\xc4\x08\xe9\x2a\x4a\x72\x71\x22\x22\x15\x20\x9b\x94\x48\x05\x14\x60\x77\x22\x15\x50\x80\xc1\x89\x54\x40\xb5\x7d\xa4\x02\x2a\xf0\x2b\x5d\x14\x90\xab\x77\x76\x51\x40\xae\x0e\xba\x8b\x02\x72\xf5\x75\x2f\xf0\xe1\x3e\x3e\x92\x61\xd5\x07\x7d\x51\x40\xae\xd9\xab\x10\x11\x39\x69\x14\x23\x22\xef\xe5\xb6\xaf\x41\x16\xa4\x2a\xf0\xe5\x2a\x15\xe0\xdb\xa9\xbd\x02\x7c\xe1\x76\x53\x85\x6f\x74\x92\x82\xef\xef\xdd\xdf\xc1\x37\x12\xb5\x26\xf8\xfe\x0e\xce\x48\xf0\xfd\x9d\x64\x58\xaa\x46\x52\xd6\x40\x24\x05\x06\x49\xf0\xfd\xbd\x7b\x15\x22\x29\x16\xa0\x24\xdf\x0f\x22\x49\xf0\xfd\xd3\x17\x1c\xbe\x7f\x3a\x85\xc8\xf7\x37\x4b\xf0\xfd\x20\xb5\xd4\x8c\xb2\x68\xfb\x0f\xdf\xef\x99\x44\x52\xd1\x63\xf0\xa2\xf6\x0b\x28\xe0\x83\xd7\x4e\xa0\x80\xef\xa7\x86\x7b\x2f\xcb\x27\x2d\xc3\xef\x02\x04\x0a\xd8\xd6\x07\x0a\xd8\x70\x98\xe9\x32\xfc\x79\xdb\xbe\xcb\xf0\xe7\x7d\x3c\x16\x89\xc7\xa8\x0f\x84\xa0\xae\x28\x81\x10\x4e\xf1\x58\xa1\xc4\x33\x02\x21\x9c\xea\x55\x1a\x25\x9e\x03\x0c\xff\x81\x3c\x4b\x9d\xd4\xdf\xc7\x7d\x82\x1e\xce\xf2\x77\x44\x83\x80\xf7\x04\x7a\x38\x10\x33\x09\xf4\x70\x6c\x2d\xe8\xe1\x10\x40\x24\xd0\xc3\xf1\xed\x18\x10\x10\x2e\xfd\x03\xde\x17\xbc\x90\x06\x91\x22\xf1\x74\x1a\x44\x8a\xb0\xb9\x69\x10\x29\x3a\x5e\x06\x91\x22\x89\xce\x74\xd1\x43\x79\xab\xc7\x1a\xc7\x68\xdf\x45\x0f\xe5\x2d\xdc\xf5\x45\x0f\xe5\xb5\x77\x2f\x7a\x28\x2f\x94\x4a\xba\xe8\xa1\xfc\x2c\xef\x17\x3d\x94\xd7\x5e\xba\xe8\xa1\xbc\x4e\xc2\x17\x3d\x94\xd7\x37\x60\x12\xed\x42\xc8\xa5\x49\xfb\x50\x71\xa4\x49\xfb\x0c\x27\x26\xed\x23\x47\x92\xa6\xed\xe3\x9a\xd3\xf6\xd1\x13\xd3\xf6\xd1\xa2\x69\xb8\xcb\xbd\x4c\xc2\xdd\x5f\xef\xed\x9f\x9f\x92\x27\x91\xb0\x93\xe2\x84\xf2\xf6\x81\x4d\x29\x6f\xba\x7a\xc2\xd9\x10\x37\xa6\x8f\x48\xd8\x17\xe7\x23\x12\xce\xdc\xca\x05\x24\xa5\x1a\x4d\x5c\x40\x52\x2a\x80\x39\x5d\x40\x52\xaa\xeb\xf9\x05\x24\xa5\xba\x66\x5f\x40\x52\x2a\xe9\xb6\xf4\xc1\x1f\x19\xa1\x5c\x40\x52\x26\x59\xd6\x74\x01\x49\x99\x9f\xf7\x32\xe1\x7a\xe8\xea\xcf\x28\xd9\xda\x89\x92\x9d\x50\x3e\xa2\x64\x80\x53\x22\xbd\xf0\x01\x9c\x12\xe9\x85\x8f\xec\x6c\x02\x90\x7c\xa8\x0e\x12\x80\xe4\xab\x96\xe0\xd8\x11\xe8\x24\x00\xc9\x57\x2d\x11\xcd\xfb\x82\x83\x3a\x3e\x40\x7f\x02\x75\x7c\x0e\x4f\xd2\x0b\x9f\x03\x84\xf4\xc2\x07\xf8\x4b\xa4\x17\x3e\x80\x61\x22\xbd\xf0\x19\x61\x82\x56\x3e\x87\x20\x68\xe5\x03\x8c\x25\xd0\xca\xe7\x90\x00\xad\x7c\x0e\x79\xd0\xca\xe7\xf4\x09\x5a\xf9\x99\x96\xcc\x21\x38\x20\xcd\x21\x00\x36\x93\x39\x84\x9f\xab\x74\x4a\x9e\x49\x9e\xc0\x29\xc4\x3c\x01\x18\x24\x99\x27\xf0\xd9\x9a\x27\xf8\xac\x6f\x53\xf2\x77\x57\x05\x10\xed\x97\x9b\x27\xa8\x2a\x58\xd2\xcd\x13\xd4\xec\x02\x0b\x5a\x29\xde\x99\x68\xc5\xe5\x08\xb4\x52\x8d\xfb\x41\x2b\x9d\x94\x61\x02\xad\x74\x52\x86\x09\xb4\xd2\xa7\xbf\x1b\x90\x60\xd6\x3e\xc1\x35\xd6\x77\xdb\xf0\x13\xed\x8a\x56\x7e\xee\x13\xb4\xe2\xab\x29\x5a\x61\xf9\xcb\xa2\x15\xfa\x33\x8b\x56\x18\x59\x59\xb4\xd2\x07\xa5\x1b\xe9\x3f\xc8\x0f\xf3\x95\x5b\x35\xa7\x89\x0c\x92\x71\x0a\xc9\x20\x99\xb7\x79\x95\x4a\xc9\xfa\x2e\x92\xe9\x3f\xc7\x2e\x92\xe9\xcb\xdf\x5d\x24\x33\xd0\x4a\x64\x90\xcc\x17\x2b\xa5\x8b\x64\x3e\xde\xc6\x0c\x92\x11\x51\x66\x90\xcc\xf7\xd3\xa2\xdb\xbe\xc5\xd2\x91\x41\x32\x8b\x31\x9f\x41\x32\x0b\x41\x65\x06\xc9\x6c\xa2\xd6\x0c\x92\xd9\xa4\x28\xf3\x45\x32\xed\xd8\x13\x17\xc9\xb4\x33\xbd\xca\x6d\xdf\x61\x4c\xe4\x8b\x64\xda\x41\x50\x99\x2f\x92\x69\xf2\xd3\xf9\x22\x99\x76\x3e\xef\x65\xb0\x88\x06\x4a\xbf\xda\xd7\x9f\x6e\xe9\xbb\xa5\xe1\x35\x17\x25\xef\x65\x53\xb2\x86\x43\x89\x36\xdc\x9c\x45\x97\xe4\xcb\x37\x67\xd1\x83\xf7\x72\x51\x4e\x0f\x2c\x7f\xf9\xa2\x9c\x5e\x40\x63\xf9\x15\xa9\x6d\x4a\x99\x63\xdc\xcb\x45\x39\xbd\xbc\xe3\x77\xa6\xe4\x7c\x01\x50\x2f\xaf\x15\x28\x32\xb2\x72\xd2\x58\xd9\x12\xb9\xf6\xea\x4d\x2b\x32\xa2\x73\x5f\x73\xed\x96\xcc\xb5\x73\x63\x82\x1c\x87\x99\x20\xc7\x07\x2d\xc8\x71\x60\x45\x40\x9c\x35\x44\x40\x5c\xf5\x77\x80\x38\xb2\xe4\x39\x02\xe2\xac\x2f\x02\xe2\xbc\x97\x08\x88\x63\x5a\xca\x11\x10\xd7\xbc\x26\x20\xce\xa1\x14\x01\x71\x40\x97\x1c\x01\x71\x68\x09\x72\x04\xc4\xc1\x48\xe7\x08\x88\xab\xd6\x00\x88\xe3\xd5\xcc\x89\xf6\x31\x45\xe6\x44\xfb\x88\xa4\x72\xa2\x7d\x0e\x90\x64\xfb\x18\x12\x00\xa7\x00\x10\xcd\x00\xa7\x40\xe2\x23\x03\x9c\x82\x2f\x07\xc0\x29\x78\x2f\x00\xa7\x40\xec\x94\x01\x4e\xa1\x7a\x2f\x70\xc2\x4c\x98\x19\xe0\x14\x20\x43\x32\xc0\x29\x1c\x4b\x80\x3f\x62\xed\x0c\x3a\x7a\xa3\xbf\x3b\x94\xa8\x01\x74\xf4\x02\xad\x33\xe8\xe8\x05\x84\x67\xd0\x91\x4a\xd6\x0c\x3a\x32\xc9\x9b\x41\x47\x2f\x29\x92\x0c\x3a\x7a\xa7\x67\xa2\xb4\x21\x2d\x98\x41\x47\xd1\xb6\x67\xf8\x62\xfb\x25\x93\x52\x63\x99\xce\x20\xa7\x98\xbd\x26\x29\xb5\x62\x7d\x24\x02\x61\xfc\x32\x78\x28\x2e\xae\x02\x1e\x8a\xc4\x8d\x19\x3c\x94\x1c\x67\xe0\xa1\xe4\x28\x00\x0f\x25\x9f\x2d\x78\x28\xd9\x9f\xe0\xa1\xd4\x3d\x13\x4c\x47\xc4\x97\xc1\x43\xc9\x11\x02\x1e\x4a\x3e\x23\xf0\x50\x6a\xde\x0b\x78\xcf\x89\x16\x3c\x94\x1c\xad\xe0\xa1\x44\xfc\x97\xc1\x43\xa9\x5b\x03\x78\x0f\x16\x3f\x83\x87\x92\xcf\x1d\x3c\x94\x08\x04\x32\x78\x28\x39\xe9\x83\x87\x12\xcb\x66\x06\x0f\x25\x82\x84\x0c\x1e\x4a\xbe\x39\xe0\xa1\x44\x58\x90\xab\xed\xe3\x89\x81\x87\xca\xf1\x9a\xe0\x3d\xdf\x2a\xf5\x4f\xb6\x16\x3c\x54\x8b\x67\x82\xf7\x1c\xbb\xe0\xa1\x5a\x6c\x03\x78\xcf\xe7\x57\x61\xc0\x9d\xf4\x1b\x0c\xb8\x3d\x01\x56\xea\xc1\x12\x78\xcf\x09\x13\xfd\x53\x4f\xfe\x0e\x4c\xe7\xe8\x01\x2b\x99\x81\xca\x60\xa5\xee\xa8\x23\x9b\xd2\x1d\x21\x64\x53\xfa\xf4\x9a\x60\xba\xe1\xef\xc0\x74\x68\xb9\x33\x38\xaa\x3b\x41\x83\xa3\xfa\xe2\x19\x81\xa3\x3a\x88\x24\x83\xa3\x3a\x39\xae\x0c\x8e\xea\x2b\xfe\xde\x94\x0c\xc4\xea\xae\x62\x5d\x38\xcb\x84\x02\xc4\xea\xae\x7e\x40\xac\x9f\xb5\x17\x88\xd5\x5d\xb7\x80\x58\x33\xfb\xbb\xdb\x74\x19\xe2\x0c\xc4\x32\x07\x9a\x81\x58\x13\x58\x93\x81\x58\xd3\xc1\x03\xc4\x9a\xc6\x16\x40\xac\xd9\x79\x0c\x40\xac\x49\xb4\x9b\x81\x58\xd3\x29\x19\x88\xf5\x21\xe1\xcf\x24\x68\x3e\xe8\x96\x4c\x12\xe6\x63\xe3\x48\x26\x09\xf3\x21\xcf\xcb\x24\x61\xbe\xe9\x99\x40\x5d\xb6\xc9\x64\x92\x30\x9f\x6b\x3d\x49\x98\x6f\xfa\x3b\x24\x40\xf6\x0b\x49\x18\x35\x1d\x99\x24\xcc\xfe\xb9\x17\x24\x40\xf0\xe1\x99\x24\x8c\xca\x90\x4c\x12\x66\x43\xfd\x64\x92\x30\x8a\xd9\x32\x49\x98\xed\x54\x40\x12\x66\xdb\x4b\x24\x61\xb6\x3d\x88\x4c\x6b\xdb\x4b\xc8\xb4\x4c\x12\x66\x92\x30\x07\x3a\x29\x93\x68\xf9\x59\xe2\x48\xb4\x1c\x87\xfc\x34\x81\xc1\x50\xfa\x84\xac\x0c\x33\xe4\x56\x6e\x85\xc9\xc8\xad\x0e\xba\x86\x4c\x82\xe6\x90\x04\xcd\xe0\xa1\xe7\xb1\x74\x63\x6d\xb7\xde\x64\xf0\xd0\xf3\x7a\xec\x62\x09\x37\xcd\x64\xf0\xd0\x63\x2f\x81\x87\x1e\xb4\x3c\x19\x3c\xf4\xd8\x67\xe0\xa1\x07\xbe\x38\x83\x87\xdc\x84\x94\xc1\x43\x8f\xad\x05\x0f\x3d\x44\xd7\xf9\x26\x68\xca\x63\x5f\x9b\xa0\xb1\x3e\xa5\x58\xd6\xf0\x23\xc5\xe2\x3e\x4d\xde\x40\x78\xe4\x1f\x29\x16\xfd\x62\xf2\xc6\xfe\x34\x79\x83\x64\x33\x83\x95\x5e\x23\x29\xb0\x92\x08\x21\x83\x95\xdc\xc8\x91\xc1\x4a\xe2\x85\x0c\x56\x7a\x9d\x18\xc0\x4a\xaf\x6f\x1c\x58\xe9\x5d\xb6\x01\x48\xee\xf8\x04\x0f\xa9\xde\xce\xe0\xa1\x17\x55\x6d\x06\x0f\xbd\xc3\x12\x6d\x70\x99\x06\x0f\xbd\x6c\xd2\xc9\x64\x6f\x5e\xa7\x17\xb2\x37\x6a\xc7\xf3\xb6\x0d\xf4\x35\xd9\x1b\x37\xe2\xe4\x4d\x1b\x50\x37\xe7\x4d\x1b\xd0\x97\x64\x32\x3b\xaf\x6f\xce\xb6\x0d\xdc\xcb\xe1\x39\x38\xb9\x1d\xda\x00\x0b\x9c\x8f\x6d\xa0\xe7\x6f\x66\xa7\x64\x9f\xc3\xc5\x4a\x25\xb3\x3d\x2a\x1f\x24\x71\xb6\xe1\xa0\xdb\x70\xe9\xb8\x58\xa9\x14\xc7\xe0\xc5\x4a\xa5\x20\x26\xcd\x17\x2b\x95\xf2\xf8\xbb\x41\xc9\x7b\x81\x1f\x60\x97\x40\xbe\x58\xa9\x94\xc7\xda\x17\x25\x7a\xe9\x62\xa5\x52\x1c\xf3\x17\x2b\x95\xc2\x58\x2a\x17\x2b\x95\x42\x52\xb9\x5c\xac\x54\xca\x53\x7f\x67\x4a\x2e\x0f\x94\x03\x79\xe3\xf2\x40\x39\x90\x6f\x2e\x0f\x94\x43\xf1\x18\x94\x43\xf3\x18\x94\x43\xb7\x72\x28\x07\x56\xf0\xf2\x40\x39\x30\x4d\x94\x07\xc9\x0a\x31\x49\xb9\x30\xaa\xb8\xa2\x96\x0b\xa3\x4a\x6d\x96\xa0\x46\xba\xf5\xa1\x06\x64\xea\x29\x81\x04\x22\x2f\x40\x09\xd0\x26\xf0\x4e\x25\xd0\x06\xe2\xd4\x12\x68\x03\xb1\x45\x09\xb4\x81\x18\xa8\x04\xda\xc0\xe4\x56\x82\x6d\xe0\xce\x82\x6d\xe0\xae\x03\x6d\x28\x9e\x69\x1b\x5e\x4a\xd0\x26\xaf\xbf\x43\x76\xf3\x73\x67\xd0\x0a\xc1\x63\xca\x6e\xe8\xb3\x17\x5a\x01\x68\x5d\x5e\x68\x05\x92\xa7\xe5\x85\x56\x38\x1e\x83\x56\x60\x20\x97\x17\x5a\x81\x17\xbc\xbc\xd0\x0a\x48\xb1\xca\x0b\x6d\x32\xfd\x1d\xd4\xc8\xf4\x4c\xa8\x11\xf4\x2c\xe5\x85\x1a\x19\xde\x0b\xd4\xc8\xf2\x2a\x50\x23\xcb\xab\xd0\x86\xe9\x9d\xd1\x06\x26\x94\x12\x69\x03\x93\x46\x89\xb4\x01\x7a\xa0\x44\xda\x40\x6c\x51\x22\x6d\x20\x32\x2d\xd1\x36\x50\x5f\xa4\x0d\xc7\xdf\xd9\x06\x7a\x30\x42\xfd\x10\xcb\x94\x08\xf5\xb3\x3d\x93\xf6\x2d\x8f\xd1\x3e\xc2\x89\x12\x6d\x1f\x6d\x8f\xb4\x6f\x7b\x4d\xdb\xe7\x31\xda\x47\x3c\x5d\x22\xed\x63\x01\x2a\x17\xf3\xd4\xc7\x71\x7d\x31\x4f\x7d\x88\x14\x4b\x22\x01\x4c\x7c\x5b\x2e\xe6\xa9\x0f\xfc\x66\xb9\x98\xa7\x3e\x84\x0c\x25\x21\x11\x05\x75\x94\x84\x44\x34\x59\x42\x22\x8a\x46\xba\x24\xa9\x1f\x7f\x07\xf5\xf3\x79\x2f\x50\x3f\x9f\xb5\x43\xfd\x2c\xcf\x84\xfa\xb1\x77\x2f\xae\xa9\x4e\xa6\xe5\xe2\x9a\x1a\x09\x2e\xca\xc5\x35\x35\x32\x25\x97\x8b\x6b\x6a\x44\x42\x59\x2e\xae\xa9\xd1\x31\x71\x71\x4d\x8d\x30\xfc\x05\x79\x57\x26\x0d\x59\x90\x77\x65\xdf\x4d\x74\x5a\x85\xb8\xbf\xa0\xd3\x2a\x2c\x2b\x05\x9d\x56\x39\x96\x3e\x4a\x9e\xb9\x20\x97\xac\x61\xa3\xb0\xf2\x9a\x07\x85\x15\xad\x45\xdf\xd5\x59\xe2\x0a\xfa\xae\xce\x22\x53\xd0\x77\x0d\xd0\x66\x41\xdf\x35\xaa\x67\x9a\x6c\xf7\x18\xc9\xf6\xe3\x35\x1b\x34\x14\xf7\x82\xbe\xeb\x80\x2c\x4a\x31\xd9\x4e\x4f\x5c\x24\xd3\x1e\xf6\xe4\x95\x42\xb2\x7d\x7a\x4d\xe8\x2b\x7b\xa9\x40\x5f\x41\x8d\x94\x02\x7d\xe5\x7b\x5b\xa1\xaf\x86\x25\xe8\xab\xf1\x7b\x5c\x72\xa9\x30\x5b\x3e\xbe\x2a\xb3\xc5\x4d\x5f\x90\xd3\xe4\x5e\xca\x05\x39\xed\x21\x82\x2e\xd5\x1c\x3d\x37\x56\xcd\xd1\xd3\xf4\x0b\x72\xda\xeb\x34\x5f\xc9\xd1\x3b\x69\x54\x72\xf4\x3e\xda\x4a\x8e\xde\x81\x5c\xc9\xd1\x0f\x8f\x91\xa3\x9f\x96\xc8\xd1\x3b\x94\x2e\xc8\x69\x46\x13\xe5\x82\x9c\xe6\x4a\x5c\x2e\xc8\x69\xae\xb6\xe5\x82\x9c\xe6\x36\xd4\x72\x13\x42\x4d\x15\x61\x69\x30\x77\x4e\x3d\x0d\xe6\x0e\x36\xa9\x34\x98\x3b\x78\xae\xd2\x60\xee\x00\x40\xa5\xd1\x3e\x22\xef\x72\x01\x50\x2b\xc9\x63\xb7\x7d\xc5\xc5\x09\x00\xf4\x92\xc7\x2d\x17\x00\xb5\x56\xac\x6f\xc1\xb2\x31\x08\x2e\x00\x6a\xc7\xd7\xef\x02\xa0\x76\x00\x55\xa5\xb3\xc7\x0a\xe0\x54\x2e\x00\xea\x0f\x31\x49\xb9\x28\xa7\x3f\xb6\xe1\xa2\x9c\xfe\x33\x24\x2e\xca\xe9\x0f\xbb\xb1\xca\x45\x39\x3d\x10\xe7\x94\x8b\x72\x7a\xf8\xb9\xe6\xa5\xaf\xb2\x0b\xe5\x45\x39\x3d\x03\xc9\xcb\x45\x39\xbd\x00\x1a\xcb\x45\x39\xdd\xad\xb4\xe5\xa2\x9c\x5e\x88\x29\xcb\x45\x39\xbd\x40\x86\x94\x8b\x72\x7a\x49\xb6\x61\x53\x62\xe8\x5e\x94\xd3\x8b\xcf\xef\xa2\x9c\x5e\x5c\x9c\x2e\xca\xe9\x15\x1a\xa3\xdc\x44\x52\x37\x2f\x51\x86\x92\x46\xea\x1b\xd0\x57\x4e\xd7\x03\xfa\xca\x7e\x61\x1b\xc9\xf1\x49\x0f\xe8\x2b\x27\xfd\x01\x7d\xe5\x24\x3c\xa0\xaf\xec\x89\x01\x7d\xf5\x79\x26\xf4\x15\xe8\xa1\x0c\xe8\x2b\x36\x3a\x94\x01\x7d\x65\xef\x4e\xe8\x2b\xe2\xbf\x32\xa1\xaf\x50\x84\x97\x09\x7d\xe5\xd2\x31\xa1\xaf\x9c\x4c\x27\xf4\x9c\xcb\xd8\x84\x9e\x73\x6a\x9d\xb4\xcf\xc5\x70\xd2\x3e\x27\xbe\x49\xfb\x96\xd7\xa4\x7d\x8e\x9e\x49\xfb\x96\x25\xda\xe7\x68\x9d\xee\x9e\xb5\x84\xa4\xd1\x45\x66\xba\x8f\x91\x9e\x98\xee\x63\xe4\x5e\x40\x4e\x6e\xd6\x28\x20\xa7\x17\x51\x40\x01\x39\xbd\xa4\xbb\x0b\xc8\xc9\xad\x4c\xe5\x93\xbe\x62\xf4\x20\x6d\x73\x03\x48\x41\xda\xe6\x8e\x85\x82\xb4\xcd\x38\xbc\x20\x6d\x13\x75\x14\xa4\x6d\xaf\x3d\x8f\xb4\xed\x35\x10\x40\xda\x16\x9d\x6d\x3e\x37\xe2\x78\x15\x14\xef\xd5\xfa\x50\xbc\x1b\x90\x7d\x12\x5d\x1c\x63\x13\x4b\x72\xd6\x58\x10\x41\x2e\x8d\x0b\x22\xc8\x45\x6d\x41\x04\xd9\xd7\x0b\x22\xc8\xfb\x5c\x10\x41\xbe\x8d\x0b\x22\x08\xb6\xba\x2c\x88\xa0\xf9\x7b\xc4\x45\x59\x70\x60\x76\xc4\x82\x03\xf3\xb1\x2f\x38\x30\x27\xc5\x05\x07\xe6\x04\xbd\xe0\xc0\xec\x96\x05\x07\xe6\xe0\x59\x70\x60\xae\x69\x0b\x0e\xcc\x97\x63\xdb\x74\x3a\x62\xd3\x74\xa7\x90\x4d\xd3\x8d\x8f\x36\x4d\x77\xb1\xd8\x34\x1d\xb0\x52\xb6\x4d\xf7\x9a\x05\x9e\xcb\x12\x9a\x07\x52\x40\x65\xa3\x79\x70\xf5\xdb\x70\x60\x0e\xb3\x0d\x07\xe6\x24\xbc\xe1\xc0\x5c\xef\x36\x1c\x98\x1d\xbf\xe1\xc0\x7c\x71\x36\x1c\x98\xd1\xf5\x86\x3f\x82\xf7\x2d\x07\xfe\x08\xb6\xb3\x1c\xf8\x23\xb4\x12\xe5\xc8\x81\x71\x95\x03\x49\x84\xaa\xa2\x1c\x48\x22\xe3\xb8\x23\x49\x44\x0f\x1e\x48\x22\xdb\x77\xe0\xc7\x8c\xb5\x0f\xfc\x98\xd3\xd9\x05\x63\x79\x3c\x1e\x83\x1f\x73\xd9\x3c\xf0\x63\x64\xd0\xcb\x91\x1f\xb3\x04\x3f\x86\x3a\xbd\x5c\x30\x96\xc7\x63\x1b\x68\x1f\x09\xaf\x7a\xc1\x58\x9e\x44\x75\xf5\x41\x0f\x41\x0f\x56\x36\xc6\x4c\x86\x60\x65\x63\xcc\x44\x7f\x51\x1f\x54\xa7\xf4\x6e\x7d\x50\x9d\xb2\x50\x56\x36\xcd\x7c\xd4\x57\xd9\x34\xf3\xf1\x4a\x57\x36\xcd\x7c\xc9\xda\xd1\x4a\x2c\x6b\x47\x2b\xb1\xbc\x26\x5a\x09\x54\x0e\xf5\x91\x24\xf2\x2a\x90\x44\x48\xaa\x6a\x90\x24\x3a\x94\x24\x89\x38\x93\x0d\x35\x6e\xbd\xae\x6c\xa8\x51\xb9\x5e\xd9\x50\xb3\x89\xc0\x2a\x1b\x6a\x0e\x4a\xe4\xca\x86\x9a\xf3\x7a\x15\xb4\x12\xc5\xfa\xd0\x4a\x34\xcf\x44\x2b\xd1\x3c\x86\x1e\x02\x9c\x58\xd9\x34\x63\xe4\x56\xd9\x34\x73\xc0\x82\x35\x48\xbe\xd0\x5a\x10\xd7\x63\xfb\x40\x5c\x0f\xea\xa4\x0a\xe2\xd2\xf3\xa5\x82\xb8\x1e\x60\x77\x05\x71\x3d\x08\xc8\x2a\x88\xeb\xb1\xaf\x41\x5c\xca\x40\xeb\x0b\xb9\x54\x3c\x13\x72\xa9\x58\x3b\xe4\x12\x69\xc1\x0a\x1a\x7b\x98\xa0\x2b\x68\xec\x21\xeb\x53\x41\x63\x6e\x30\xab\xa0\xb1\x07\xec\x59\x41\x63\x0f\x04\x67\x05\x8d\x99\x7b\xa8\xa0\xb1\x97\xf7\xa1\x82\xc6\xdc\x37\x59\x41\x63\x11\x39\x6e\x05\x8d\xbd\xc7\x33\x21\x66\xd8\xc0\x53\x41\x63\xd1\x91\x05\x1a\x7b\xd9\x21\x51\x41\x63\xef\xf1\xcc\xc6\x99\x3c\x07\xd0\xd8\x7b\xfc\x1d\xc4\x8c\x23\x0b\x34\xa6\xbf\x4e\x05\x8d\xbd\xdb\xda\x21\x66\x8e\x35\x40\x2e\x81\x10\x2a\x68\x2c\x86\xf0\x3b\x53\x72\xbd\x40\xad\x44\x58\x93\xca\x5e\x9b\x4c\xd4\x53\x2f\x50\x2b\x99\xbd\x67\x35\xc1\xe7\x30\x99\x56\xf6\xe1\x68\x1c\x53\xd9\x87\x93\xb7\x57\xb9\x4d\x2f\x0e\x09\xf6\xe1\x14\x07\x2b\xfb\x70\x8a\x83\x87\x7d\x38\x05\x36\xb0\x26\xf8\x9c\xd7\xda\xe1\x73\x7c\x71\xd8\xa3\x53\x1c\x4a\xec\xd1\x31\x97\x59\xd9\xa3\x53\x50\x2d\x56\xf6\xe8\x14\x3b\x90\x3d\x3a\x95\xe9\xac\xb2\x47\xa7\x02\xd0\x2b\x7b\x74\xaa\x1d\xcf\x1e\x9d\x4a\x64\x5a\xd9\xa3\x53\x89\x57\x6a\x86\xf0\xb0\xe3\x33\x84\x07\xf1\x51\xcd\x10\x1e\xc3\x1a\x20\x3c\xe0\x5a\x6b\x86\xf0\x40\xe7\x5d\x33\xa4\x8d\x0f\x33\x43\xda\x7c\xd6\x07\x69\xb3\xbc\x17\x48\x9b\xe9\x31\x14\xe1\x4c\x9f\x35\xa3\x08\x67\xa2\xad\x85\xf6\xb1\x2e\xd7\x42\xfb\x88\xf1\x6a\xa1\x7d\x44\x4b\xb5\xd0\x3e\xa8\x91\x5a\x68\x1f\x28\xa0\x16\xda\xe7\x54\x57\x68\x9f\x4f\xb3\xd0\x3e\x22\xc5\x5a\x68\x9f\xd3\x60\x51\x07\xc3\x9d\x15\x08\x9d\x66\x0d\x93\x12\xbd\x74\xc1\x5f\x99\xd3\xbb\x86\xec\xf9\xb9\x0a\x7b\xac\x88\x1b\x6b\x91\xec\xa1\x0d\x15\xa2\x84\x28\xa4\x5e\xf0\x57\x16\xc4\x5a\xbd\x08\xaf\x2c\xb2\xdd\xf5\x22\xbc\xb2\xe0\xa0\xeb\x45\x78\x65\xf9\x82\x5f\x84\x57\x96\x23\xf2\x22\xbc\xb2\x60\x11\xeb\x45\x78\x65\x39\x96\x2e\xc2\x2b\x0b\x0d\x6a\xbd\x08\xaf\x2c\xb6\xbb\xd4\x8b\xf0\xca\x8a\xd6\xbe\x28\xd1\xbe\x8b\xe2\xca\x0a\x1e\xa3\x0d\x8e\x82\x8b\xe2\xca\x42\x0c\x55\x1b\x6d\x70\xcc\x37\xdb\xc0\xf3\x6b\xb6\xc1\x33\x69\x03\xc9\xd3\xda\x68\x43\xf4\x9a\xb6\xc1\x63\xb4\x01\xe6\xbc\x5e\x14\x57\x1f\xdf\xd4\x86\x46\x06\xd8\x5d\x2f\x8a\xab\x0f\x98\xb5\x5e\x14\x57\x1f\x62\xc3\x7a\x51\x5c\x15\x07\xd7\x8b\xe2\xea\x03\x66\xad\x17\xc5\x55\xd1\x58\xbd\x28\xae\x3e\x84\x28\xb5\x43\xf6\xb8\xf8\x5e\x14\x57\x4d\x00\xd7\x8b\xe2\xaa\x7a\xf4\xda\x51\xfb\x93\xea\xaf\x1d\xb5\x7f\xf5\x77\xec\x83\xf3\x5d\xb9\x48\xad\x46\x62\xfb\x7a\x91\x5a\x75\x6b\x79\xbd\x48\xad\xba\x67\xb4\x5e\xa4\x56\xe3\xb4\x86\x8f\x33\xb9\xeb\x8b\xd4\x6a\xfc\xbc\x17\xf6\x03\xdb\xf6\x8b\xd4\x6a\x26\xeb\x53\x87\x3a\x1f\x7e\x37\xd0\xf9\x10\x4a\xd5\xc1\x26\x39\x22\xfd\x7a\x91\x5a\xcd\x04\x56\xf5\xe6\xaa\x6a\x36\x64\x18\x90\x3d\xf6\xfc\x80\xd0\x21\x23\x54\x2f\xc6\xaa\xbf\xc2\xff\xdf\x99\x92\x07\x36\x24\x50\xec\xf5\xc2\xaf\x5a\x00\x08\xf5\xc2\xaf\x5a\xe0\xff\xea\x85\x5f\xb5\xba\xe2\x4c\x76\xef\xb1\x41\xa2\x4e\xc4\x49\x28\x1a\xeb\x85\x5f\xd5\x4d\x25\x75\x22\x4e\xf2\x35\xba\xf0\xab\x16\xd7\x91\x0b\xbf\x6a\x71\x85\x9b\xec\xde\x73\xa5\xba\xf0\xab\x56\xd7\xc9\x0b\xbf\x6a\x73\xe9\xb8\xf0\xab\x36\x68\xfb\x3a\x61\xa1\x5c\xb3\x2f\xc4\xaa\xe6\x63\xeb\x85\x58\xb5\xc3\xe3\xd5\x0f\x86\x0a\xa8\x54\x3f\x85\x52\xdc\xd9\x85\x4a\x75\xc0\x09\xd7\x0b\x95\xea\x40\x2e\x57\x3f\x84\x52\x4e\xec\x17\x2a\xd5\xe1\xfa\x7a\xa1\x52\x55\xbe\x56\x2f\x54\xaa\xcb\xfb\xbc\x50\xa9\x2e\x38\xa9\x7a\xa1\x52\x5d\x24\x06\xea\x85\x4a\x75\xd9\x4b\x17\x2a\xd5\x65\xdb\x2f\x54\xaa\x0b\x25\x6b\xbd\x50\xa9\x2e\x52\x0f\xf5\x42\xa5\xea\x76\x82\x7a\xa1\x52\x3d\xb0\x9d\xf5\x42\xa5\x2a\x40\xaf\x17\x2a\xb5\x27\x58\x5f\x83\x1f\xe3\x3e\x2f\x1e\x6a\x0f\xe9\xc4\x7a\xf1\x50\x7b\x9c\x5e\x16\x4c\xda\xb2\x04\x93\xe6\x12\xb0\x60\xd2\x5c\x1e\x36\x6c\x19\x2c\x77\xdd\xb0\x65\x10\x09\x75\x43\x89\x01\x0c\xeb\x86\x12\x03\x75\xd4\x0d\x25\xe6\x62\xb1\xa1\xc4\xd0\x80\xd7\x8b\x79\xda\xe3\x12\xb0\xa5\xc4\x3c\x06\x65\x84\xd7\x48\xdd\x50\x62\x6c\x0e\xae\x17\xf3\xb4\x08\x42\xa8\x17\xf3\xb4\x68\xcf\x6f\x28\xb1\xed\x31\x28\xb1\x9f\x3b\x83\x12\x03\x21\xd4\x8b\x79\x5a\xb4\xe7\x0f\x94\x98\x6d\xbf\x98\xa7\xfd\x84\x2f\x17\xf3\xb4\x9f\x58\xed\x40\x89\xb9\xc8\x1c\x28\x31\x17\x99\x03\x25\xe6\xd2\x7f\x31\x4f\xfb\x89\xdc\x0e\x94\x98\xa3\xfc\xd0\x3e\xc3\x82\x43\xfb\x5c\xa6\x0f\x94\x9f\x7d\x76\xa0\xfc\x0c\x2e\xd8\x5a\xf4\x42\x94\x54\xc4\x7a\x3f\x71\x1c\x62\xbd\xe8\xe8\x41\xac\x57\xc0\x66\x0d\xb1\x5e\x81\x87\x6d\x88\xf5\x0a\x30\xbf\x21\xd6\x2b\x30\xb6\x0d\xb1\x5e\x23\x9e\x6e\x88\xf5\x5a\xf1\xcc\x8c\x04\x2f\x50\x2a\x48\xf0\x12\xa5\x8a\x04\xaf\x51\x1a\x08\xeb\x36\x25\x04\x79\xc3\x7b\xf9\x10\xd6\xf9\xbb\x45\x29\x52\xda\xc8\xec\x3c\x76\xa0\xfc\xb8\x17\x04\x79\x9b\x31\xd8\x10\xe4\x1d\x76\x17\x34\x04\x79\x87\x67\xdb\x10\xe4\x1d\x42\x8d\xa6\x20\x0f\xd4\xd8\x14\xe4\xf1\xa4\x9b\x82\xbc\x6d\x0d\x08\xf2\x50\x6f\x37\x05\x79\x8c\xd6\xa6\x20\x0f\x94\xda\x6e\x96\xa9\x3f\x9f\xd7\x44\x90\xc7\x98\x6f\x0a\xf2\xbe\xdf\x8b\x92\x9b\x5a\x3d\x26\xe1\x86\x56\xcf\xdd\x35\x0d\xad\x5e\x80\x23\x6a\x6a\xf5\xec\x08\xb4\x7a\x19\x7a\xa0\xa1\xd5\xfb\x79\xd0\x28\xf0\x6a\xf1\x58\xa5\xc4\x63\xbf\x00\xa8\x57\xa6\xc1\x76\x01\x50\xaf\x36\xfd\x02\xa0\x6e\x1c\xd7\x2e\x00\xea\x8d\xa1\xdb\x2e\x00\xea\x0d\x3e\xa7\x5d\x00\xd4\xdb\xf2\x2a\x9b\xd2\xa1\x74\xef\xda\xcd\x0c\xed\x02\xa0\xee\x46\x87\x16\x35\x4b\xe2\x2a\x48\xf0\x36\xab\x66\x63\x2f\xd1\xf3\x5a\x92\xa7\xe4\x9a\x38\x03\x68\x4c\xda\x70\x06\x10\x18\x36\x65\x76\xc7\x6b\x0e\x8e\x59\xdf\x05\xda\x6a\x09\x1a\xae\x01\xcf\x63\xe9\x82\xd4\x87\xcd\x2f\x8d\x3d\x48\x4f\xb0\xbe\x43\x89\x9e\xc7\x35\x40\xc8\xda\xd8\x9f\xe4\x64\xda\x94\xd9\x1d\xcf\x8c\xd4\xc0\x73\x40\x66\xa7\xe6\xa1\x25\xdb\xc7\x7d\x26\xda\x77\xbc\x8a\xed\xb3\x44\xfb\x58\x44\x1b\x32\xbb\x87\xed\xe3\x0d\x99\xdd\x13\xbc\x0a\x3c\xa5\x4f\x2c\xc1\xc3\x02\x0c\x1b\x32\xbb\x87\xb8\xa3\x21\xb3\x53\x47\xd1\x12\x3c\x2c\x0b\x73\x43\x66\xa7\x3a\xa2\x21\xb3\x7b\x98\xea\x1a\x32\xbb\x40\xd2\xb5\x21\xa5\x0b\xd0\x1f\x0d\x29\xdd\xcf\x88\x44\x4a\xa7\x5e\xb4\x21\xa5\x53\x4b\xda\x90\xd2\x05\x47\x1d\x52\xba\x37\x7b\x0c\xbe\x3f\xfb\x3b\x1c\x44\x48\x01\x35\x36\x21\xb9\x25\xb6\xb1\x09\xc9\x3d\x9c\x4d\xd1\x9d\x2d\x52\x74\xc7\x82\xde\x14\xdd\x75\x4b\xec\x21\x23\x7f\xd2\xf4\x23\x73\xb4\x2a\xba\xf3\x95\x46\x74\xa7\xcb\x5f\x43\x74\x97\x7d\x03\x10\xdd\x65\xa4\x89\x4d\xd1\x1d\xc1\x4c\x53\x74\xe7\x84\xa2\xe8\x8e\x04\x5b\x43\x74\x97\x1d\x75\x8a\xee\x1c\x2f\x88\xee\xf4\x11\x6c\x8a\xee\x88\x53\x9b\xa2\x3b\xdf\x4d\x45\x77\x2c\xb7\x0d\xd1\x5d\xf6\x19\x29\xba\xf3\xb9\x2b\xba\x73\xaa\x53\x74\xe7\xa4\x88\xe8\x2e\x83\x10\x5a\xb5\x7d\x96\xe0\x5a\x8f\xf5\x35\x8e\xd1\x4b\x0a\xeb\x20\x54\x9b\xc2\x3a\x27\x7d\x85\x75\x3e\x5b\x85\x75\xce\x67\x08\xeb\x9a\xf7\x89\xb0\xae\x7b\xcd\x26\x71\xc8\x7d\xb2\xd1\x68\xf8\x56\x21\xac\x1b\x8e\x72\x84\x75\x83\x6c\x4a\x43\x58\x37\x7c\x53\x11\xd6\x0d\xd0\x51\x43\x58\x37\x48\xee\x37\x85\x75\xdb\xdf\xdd\x36\x8c\xf7\xf9\xbd\x29\x19\xcd\xdd\x70\x22\x42\x73\x37\x9c\x50\xd0\xdc\x0d\xa7\x1e\x34\x77\x03\xb8\xd7\xd0\xdc\x0d\x1b\x8b\xe6\x6e\xba\x6a\x22\xac\xfb\x9c\xf8\x10\xd6\x4d\x20\x72\x43\x58\x37\x9d\x06\x11\xd6\x4d\x28\x80\x86\xb0\x6e\xba\x16\x2a\xac\x03\x1c\x35\x85\x75\x00\xdf\xa6\xb0\x6e\x5a\x3b\xc2\xba\x69\x7d\xf0\x8d\x8f\x57\x81\x6f\x84\xdb\x6d\x08\xeb\x14\xc3\x37\x84\x75\x6e\xbd\x6e\x08\xeb\x3e\x87\xa0\xc2\x3a\x07\x88\xc2\x3a\xf8\xd4\x86\xf3\xc1\xe7\xa0\xc3\xf9\x40\xe5\x44\x53\x74\xe7\x2a\xad\xe8\x0e\x51\x5a\x43\x74\xb7\x7c\xc5\x14\xdd\x11\xff\xb5\xa1\x01\x0c\xad\x45\x74\xa7\x6b\x5b\x43\x74\xa7\xc9\x5f\x53\x74\x37\x2c\x21\xba\x1b\x9e\x89\xe8\x0e\xc6\xbd\x21\xba\x3b\xd1\xfa\x10\xba\x91\xca\x69\x88\xee\x54\x4c\x37\x44\x77\x07\x95\x4a\x63\xef\xd2\xc3\xe6\xd9\xc6\xde\xa5\x07\x11\x63\x63\xef\xd2\x03\x4b\xda\xd8\xbb\xf4\xd8\x83\xec\x5d\x7a\xec\xdd\x29\x17\xc9\x9d\x4d\xb9\x48\xaf\x09\x17\x09\x80\x6d\x6c\x50\x7a\xc8\xdf\x37\x36\x28\x3d\x4e\x67\x6c\x50\x72\x63\x45\x9b\x70\x91\xcd\x6b\xc2\x45\x76\x7f\x07\xd7\x0a\x0f\xdb\x3e\xb8\x56\x18\xdb\xc6\xc6\x26\x37\x79\x34\x36\x36\x99\x56\x6a\x9f\x5c\x24\xed\x43\xc8\xa7\xc3\x46\x43\xc8\xf7\x82\x8e\x1a\x42\xbe\x08\x64\x6d\x08\xf9\x62\xb4\x04\x17\xf9\x7a\xe6\x6d\x5f\xb4\x27\x10\xf2\x45\x52\x9b\x0d\x21\x5f\x4c\xde\xcb\x47\xc9\xdf\x2d\x4a\xf4\x12\x42\xbe\x88\x22\xbc\x21\xe4\x8b\xf6\x35\x42\xbe\x88\x1e\xa2\x21\xd6\x8b\x2e\xb7\x88\xf5\xa2\x11\x2d\x62\xbd\x08\xec\x6e\x5a\x26\x18\xa2\x68\x99\x40\x46\xa8\xe9\x8d\x06\x2a\x6e\x7a\xa3\x79\xd7\x08\xf2\x8a\x77\x86\x20\xaf\x78\xd7\x08\xf2\x0a\x5c\x72\x63\xf3\x52\x21\x3d\xdb\xd8\xbc\x54\xac\x1d\xb1\x5e\x81\x0a\x6d\x88\xf5\x0a\xe4\x52\x43\xac\x27\xd2\x6e\x08\xf2\x2a\x94\x51\x43\x90\xd7\x0c\x19\x10\xe4\xb5\xe8\x99\xb7\x0d\x2d\x59\x1a\x94\xe8\x5d\x04\x79\x0d\x55\x7b\x43\x90\xd7\x20\x90\x1a\x82\xbc\x66\xfb\xb0\x5a\x68\x2e\xc5\x58\x2d\x34\xe7\x41\xc4\x7a\xcd\x39\x0b\xb1\x5e\xf3\xce\x10\xeb\xb9\xe1\xbf\x21\xd6\x6b\xce\x36\x88\xf5\x9a\xcf\x08\xb1\xde\x2f\x00\xf5\x3b\x53\x32\x3a\xbe\xe6\x83\x46\xc7\xa7\xbf\x40\x3b\x36\xdd\xea\x6c\xba\x37\x46\xd3\x8d\x11\xd0\xf1\x35\xbb\x1a\x1d\x5f\x73\xad\x40\xc7\xd7\x5c\x71\xd0\xf1\x35\x1f\x03\x3a\xbe\x89\x90\xa8\xa3\xe3\xd3\x78\xa4\xa3\xe3\x9b\xb0\x49\x1d\xb1\xde\xc7\xd2\xd1\x11\xe4\x7d\x44\xad\x1d\x41\x9e\x36\x82\x1d\x41\x9e\x93\x62\x47\x90\xb7\x8a\x35\xc0\x0d\x22\x71\xea\x08\xf2\x16\x69\x97\x8e\x20\x6f\x35\xeb\xfb\xf8\x9d\x35\xc0\x1b\x56\xcf\x84\x37\xac\x9e\x79\xdb\xb0\x98\xc0\x3a\x62\xbd\x45\xea\xaf\x23\xd6\x5b\xa4\x3a\x3a\x62\xbd\x65\xfb\x10\xeb\x2d\x36\x6d\x76\xc4\x7a\x8b\x35\xbb\x23\xd6\x13\xc4\x75\xc4\x7a\xab\xf8\x3b\x78\xc3\xe6\x35\x69\x9f\x3d\x88\x58\x6f\x55\xcf\xb4\x7d\xb4\x36\xd0\xbe\x62\x89\xf6\x75\x6b\x80\x37\xfc\xbc\x0a\xbc\x21\xc9\xc5\x1e\xe0\x0d\x01\x6a\x1d\xdf\xea\x07\xd6\xb9\xe3\x5b\xfd\x90\xc8\xed\x2f\x22\x31\x98\xec\xfe\xc2\x1b\x46\xcf\x94\x37\xb4\x04\x6f\x48\x8c\xd7\x2f\xaa\xaa\xba\x12\xf7\x17\x01\x19\x8b\x61\x7f\x11\x90\x1d\x6b\x40\x40\x46\x9e\xa0\xbf\x70\x8a\xb0\xd5\xfd\x85\x53\xdc\xfe\xee\xd2\x49\x5a\x12\xf5\x17\x4e\x91\x05\xaf\xe3\x20\x1c\x51\x5c\x74\x1c\x84\xf5\x85\xeb\x11\x01\x19\xf4\x40\x8f\x70\x8a\xbc\xa8\x3d\xc2\x29\x12\x25\xf7\x08\xa7\x48\x74\xdd\x23\x9c\xa2\xcf\x2f\xc2\x29\x3a\x26\x22\x02\xb2\xe9\x35\x6f\xfb\x9c\xf8\xfa\x45\x5c\xd5\x8f\x00\xf4\x88\xd1\xd7\xb4\x86\x8f\x92\x35\x2c\x4a\x5e\x13\x17\x64\xe2\xc6\x1e\xe1\x45\x09\x4a\x3a\x42\xbe\x42\x4a\xbb\x23\xe4\x2b\x84\x44\x1d\x21\x5f\xf1\x49\x27\x28\x46\xa6\x9e\x8e\x58\x4f\xbb\xa2\x8e\x58\xcf\x3c\x48\x47\xac\xd7\xa2\x57\x81\x46\x24\xda\xed\x88\xf5\x9c\x22\x3b\x62\xbd\x46\xe2\xb1\x23\xd6\x6b\x38\x81\x74\xc4\x7a\x8d\x48\xbf\x23\xd6\x6b\x84\x7c\x1d\xb1\x5e\x23\x0c\xe9\x88\xf5\x1a\x39\xa7\x8e\x58\xaf\x11\x99\x76\xc4\x7a\x8d\x1c\x42\x47\xac\x67\x7a\xbd\x23\xd6\x33\x69\xde\xf1\x62\xeb\xc5\x12\x7b\x38\xb3\x57\x61\x0f\x27\x58\xa9\x23\xe4\xeb\x28\x7b\x3a\x42\xbe\xee\x93\x46\xc8\xd7\xb3\x77\xbd\x28\xd1\x83\x08\xf9\xba\x6f\x87\x42\x3e\x08\xb2\x5e\xa0\x50\x21\xd6\x7a\x81\x42\xfd\x85\x8e\xfe\xec\x94\xdc\xd5\xff\x01\x2c\xba\xfa\x3f\x1f\x03\xfa\x3f\xf3\xfe\x5d\xfd\x1f\xb1\x4c\x57\xff\xe7\x74\x86\xfe\x6f\xf8\xa2\xa2\xff\x9b\x8f\xd7\xbc\x4d\x9f\x40\x82\x8e\xfe\xef\x73\x5a\xc2\xdf\x6d\xbd\x1e\xbb\x4d\x37\x99\xd2\x8b\xac\x2c\x03\xab\xc8\xca\xd2\x11\x05\x56\xd6\x07\x56\x61\x65\x61\x18\x7b\x85\x95\x05\x8c\xf5\x0a\x2b\x1b\x3c\x13\x56\x16\x29\x77\xbf\xa0\xaa\x2e\xe8\x81\x7e\x41\x55\x5d\xc0\x93\x7e\x41\x55\x5d\x30\xaf\xfd\x82\xaa\xba\x00\xef\xfd\x82\xaa\x6a\x2a\xa7\x57\xcd\x84\xbc\x0a\xfa\x46\x1f\x7b\xc5\x4c\xc8\x89\xaf\xb2\x3d\xd7\x97\xf1\x02\xae\x7a\x88\x50\x7a\xd5\x4c\x88\x3e\x43\xe4\xf7\x10\xe9\x77\x44\x7e\x92\x05\x1d\x91\x9f\x9b\x27\x3a\x22\x3f\x69\x85\x8e\xc8\xef\xb1\x07\x11\xf9\x3d\xac\xd2\x1d\x91\xdf\x43\xea\xb6\x23\xf2\x7b\x20\x2e\x3a\x22\xbf\x00\x4b\xda\x11\xf9\x3d\x2e\x6a\x88\xfc\xfc\xae\x47\x47\xe4\xf7\x38\xf1\x35\x58\xe7\xe3\x7d\x7e\x9c\x49\x1b\x10\xf9\x3d\x4e\xa6\x88\xfc\x1e\x62\xd1\x8e\xc8\x2f\x10\x8b\x76\x44\x7e\x8f\x93\xf0\x45\x5c\x2d\xf8\xa4\x3b\xed\x73\xf2\xee\xb4\x0f\x3a\xa9\x5f\xc4\xd5\x82\xf7\xd2\x35\x52\xf2\x4c\x44\x8c\x50\x38\xbd\xc3\xd8\x3a\x0a\x3a\xac\xac\x53\x4f\x87\x95\x7d\xfd\x1d\xac\x2c\xa9\xa3\x7e\x51\x55\x8b\xaf\x25\x58\x59\xe2\xbf\xde\x61\x9d\x9d\xae\x2f\xaa\x6a\x5a\x9f\xf6\x01\xeb\xec\x24\x35\x60\x9d\x9d\x26\x2e\xaa\x6a\x46\xc2\xfd\xa2\xaa\x16\x49\xda\xf5\x8b\xaa\x5a\x74\x02\x1b\xb0\xce\xc4\xa2\xfd\xa2\xaa\x16\x9d\x88\x2e\xaa\x6a\xba\x35\xf7\x8b\xaa\x5a\x24\x17\xd0\x07\xac\xba\xa3\x60\xc0\xaa\x27\x6b\xff\x38\x93\xe7\x3e\x6c\x9f\xf7\x49\xfb\x08\xba\xfa\x90\x75\xe6\x5e\x26\xac\xb3\x4b\xff\x84\x75\x1e\x96\x60\x9d\x0d\x43\x2e\xaa\x6a\x65\xf8\xbb\x44\x89\xfb\xbc\xa8\xaa\x15\xc3\x89\x8b\xaa\x5a\x19\xfe\xae\x72\x15\x8f\xdd\xf6\x35\xd4\x1f\xfd\xa2\xaa\xd6\x0c\x82\x26\x62\x52\xb2\x37\xfd\x22\xa7\xd6\x5c\xec\x2f\x72\x6a\x52\x0e\xfd\x22\xa7\x36\x7c\xee\x17\x39\xb5\x41\x4a\xb4\x5f\xe4\xd4\x44\xfd\xfd\x22\xa7\x36\x7c\xab\x2e\x72\x6a\xc3\x31\x78\x91\x53\x1b\xf6\xe7\x45\x4e\x4d\x72\xa2\x5f\xe4\xd4\x06\xd4\x64\xff\x64\xce\x79\x62\x17\x39\x35\xc9\x90\x7e\x91\x53\xbb\x5b\xd8\xfe\xfc\x94\xfc\x41\xb8\x57\x2b\x87\x70\xb7\x79\x1f\xa4\xba\x1d\xf1\x41\xaa\x93\x9d\xed\x0b\x52\x9d\x74\x46\xbf\xc9\xa9\xb6\x61\x77\xfa\x62\x97\xbb\xd1\xd2\x82\x54\x47\xe8\xd6\x17\x5a\xd9\xc7\x52\xa6\x44\x83\x16\xa4\xba\x31\xd0\x4d\x4e\x75\x79\xd1\x4e\x72\x4a\xce\xb4\x93\x9c\x3a\x4e\x05\x0b\x52\x9d\xc4\x4e\x27\x39\xe5\x6e\xb3\xbe\x20\xd5\x9d\x50\x48\x4e\xc9\xfb\xf6\xc5\x2e\x77\x63\xe6\xc5\x2e\x77\xd8\xb2\x7e\x01\x57\x37\xc9\xd4\x37\x5a\x60\x12\x03\x7d\xb3\xcb\xdd\x57\xf3\x02\xae\xae\x9f\x55\xbf\x89\xab\xae\xf3\x55\xdf\x68\x81\x5d\xd4\xb6\x5a\x60\xcf\xac\x94\x68\xed\x05\x63\x3d\x2c\x7f\xd7\x29\xf1\x1c\x2e\x18\xeb\x19\x25\x43\xdf\xe8\x7d\x8b\xf7\x89\xde\x17\xb6\xb3\x6f\xf4\xbe\xae\xee\x07\xbd\x2f\x22\xa3\x7e\xf8\x66\x04\x74\x52\x3f\xb2\xff\x0c\xcf\xc3\x4e\x7d\x27\xa2\x0b\xb8\x7a\xb3\xb5\x17\x70\xf5\xee\x73\xbf\xa8\xaa\x8f\xe1\x55\x6e\x1b\x86\xed\xbb\xa8\xaa\x4f\xa3\x9e\x8b\xaa\xfa\x74\x0a\xb9\xa8\xaa\xcf\xe8\x55\xd8\x8e\x5f\xad\x1d\x8e\xdd\x31\x88\x20\xef\xf1\x85\x43\x90\xf7\x18\x8b\x22\xc8\x7b\xa0\x1c\x06\x82\x3c\xc5\x57\x03\x41\xde\x43\xcf\x0f\x04\x79\x0f\xb1\xcc\x40\x90\xf7\x30\x0d\x0e\x04\x79\x92\x2f\x03\x41\x9e\x1e\x1e\x03\x41\xde\x03\x39\x31\x1e\x38\xf6\xec\x99\x70\xec\xd5\x12\x1c\x3b\x48\x66\x20\xd6\x7b\xaa\x77\x46\x0e\x81\xc9\x74\x3c\xe6\x10\x2c\xd1\xbe\x62\x89\xf6\x41\xef\x0c\xc4\x7a\x81\xd6\x0e\xc4\x7a\x81\xf1\x39\x10\xeb\x05\x16\xca\x81\x58\xef\x05\xfd\x0d\xc4\x7a\x2a\x19\x06\x62\x3d\x53\x8d\x03\xb1\x9e\x5b\x4c\x06\x62\x3d\xf7\xcf\x0d\xc4\x7a\xef\xb2\x06\xb6\xb2\x07\x6b\x60\x2b\xbb\x77\xad\xfb\x75\xf0\x2a\xe8\x7d\x21\x6d\x86\x0e\xd7\xf0\xb7\x23\xa8\x78\xa2\x0d\x38\x5c\x67\x88\x84\x81\xc3\xb5\xdf\xab\x19\x38\x5c\xe7\xe2\xb1\xc8\x99\xf4\x27\x0e\xd7\x7e\xe7\x66\xe0\x70\xed\x97\x6d\x06\x0e\xd7\xd9\xe7\x8e\xc3\x75\x4e\x5e\x13\x0e\x3a\x7a\x66\xe7\x2a\xd6\x30\x38\x93\x16\xe1\x70\x9d\x7d\xb6\x38\x5c\x6b\x8b\x3f\x70\xb8\xce\xc5\x7b\xd9\x5c\x93\x3e\xc3\xe1\x3a\xa3\x83\x19\x38\x5c\x8b\x95\x06\x0e\xd7\xfa\xb3\x8c\x68\xfb\xb8\x4f\x3c\xf1\x72\xfc\x3d\x5d\xf2\xc0\x2e\x2f\x43\x24\x0c\x52\x5c\x99\x10\x7d\x60\x97\xa7\xb7\xfe\x20\xc5\xa5\x72\x62\x90\xe2\x52\x55\x31\xb0\xd2\xab\xa4\x2c\x06\x29\xae\xc6\x34\x38\x48\x71\x35\x56\x9c\x41\x8a\xab\x31\x09\x0f\x52\x5c\x15\x08\x39\x48\x71\x55\x40\xc0\x20\xc5\x55\x99\x84\x07\x29\x2e\x15\x17\x83\x14\x57\x23\xb6\x18\x58\xf0\x55\xa6\xf2\x41\x8a\xab\x02\x83\x47\xf2\x9b\x0a\xd4\x40\x8a\xab\x17\xaf\x02\x6d\x4f\x6c\x31\x48\x71\x0d\x7b\x82\x14\xd7\xf0\x25\x26\xc5\x35\x1c\x3c\xa4\xb8\x86\x03\x0b\x27\x89\x91\xac\x01\x6e\x9e\xa9\x67\x90\xe2\x1a\x3f\xf5\xc1\xcd\x3b\x4d\xe0\x24\x31\x1c\xac\xa4\xb8\x86\x03\x8b\x14\xd7\x24\x46\x18\xa4\xb8\x26\xe0\x76\xe0\x24\x31\x89\xb5\x07\x4e\x12\x13\x29\xdd\x20\xfd\x35\x81\xb3\x23\xcb\xcd\xf3\x54\x48\x7f\xcd\xcf\xfa\xd8\x30\xee\xf3\x23\xfd\xf5\xf9\xa4\x49\x7f\x7d\x8f\xf5\xc1\xcd\x17\xef\x65\xc3\x87\x7b\xec\x50\xe2\x9a\xa4\xb8\x14\x66\x0d\x52\x5c\x62\x89\x41\x8a\x6b\x05\xcf\xbc\x6d\x10\xd7\x0c\x52\x5c\x8b\x68\x62\x90\xe2\x52\x08\x36\x48\x71\x89\x79\x06\x29\x2e\xd1\xca\x20\xc5\xb5\x5e\x8f\x75\x4a\xdc\x19\x29\x2e\x11\xd7\x20\xc5\xb5\xb6\xf5\xc1\xbf\xfb\x8a\x91\xe2\xf2\x73\x51\x83\x14\xd7\xc6\x0b\x71\x90\xe2\xda\x00\xed\x41\x1a\x6b\x93\xf9\x18\xa4\xb1\x36\xd9\x8d\x41\x1a\x6b\x43\x4e\x0c\xd2\x58\xc7\xf1\x49\x1a\xeb\xfc\x5c\x05\xcd\xb2\xef\x18\x69\x2c\xbd\x5b\x06\xde\x11\x3a\xab\x0c\xbc\x23\x0e\x19\x9a\x41\x8a\xeb\x74\x7f\x87\x9e\xb9\x7b\x26\x7a\xe6\x6e\xed\xe4\x10\x30\x26\x18\xa4\xb8\x0e\x7b\xc8\x06\x29\xae\x83\xca\x61\x34\x73\x08\xd4\x8e\x20\x4f\x33\xd7\x81\x20\x4f\x23\x9e\x81\x20\x4f\x6b\xd7\x81\x20\xef\xf9\xb9\x0a\x39\x04\x96\xe9\x81\x20\xef\x21\xdd\x36\x1a\x39\x04\xf2\x43\xa3\x91\x43\x00\x93\x8f\x46\x0e\x01\x9a\x66\x34\x72\x08\x8e\xeb\x46\x0e\x61\x7a\x15\x72\x08\xf6\x75\x23\x87\xb0\xbc\x6b\x72\x08\xd0\x3b\xa3\x93\x43\x70\xc9\xe1\x0b\x3c\x8f\x4b\x4e\xa7\x7d\xbe\x01\x9d\xf6\x39\x67\x75\xda\x37\xfd\x1d\xed\x43\x57\x34\x3a\xed\xf3\xfd\xeb\x68\x96\x93\x67\x92\x27\xb0\x27\x3a\x79\x82\xe1\x99\xe4\x09\x10\x00\x8e\x4e\x9e\xa0\xff\x9e\x39\xe7\xe8\xa4\x10\x86\x3f\x23\x85\x80\x84\x7f\x0c\x52\x08\xae\xfc\xd8\xf3\xc5\x62\x09\xb9\xb6\x8f\x1d\x7b\xbe\x08\x90\x19\xd8\xf3\x45\x76\xb0\x0d\xec\xf9\xdc\xde\x39\xb0\xe7\xd3\x69\x7f\x60\xcf\x17\x89\xff\x06\xf6\x7c\x11\xe7\x8a\x81\x3d\x5f\x74\x40\x0e\x9b\x6e\x7d\x34\x1d\x12\x65\x60\xcf\x17\x9b\xc7\x6c\xba\x35\xd8\x3e\xef\xc5\xf6\xf1\xf8\xb0\xe7\x8b\x24\xbc\x06\xf6\x7c\x11\xc3\xa0\x41\x8a\x2b\xb2\x83\x6d\x90\xe2\x72\x17\xd0\x20\xc5\xe5\x57\xd7\x06\x29\xae\x88\xa4\x7e\x90\xe2\x8a\x44\x7c\x43\x7b\x3e\xa2\xd6\xa1\x3d\x9f\x6b\xb6\x1e\x7c\xa4\x02\x86\x1e\x7c\xd9\x6b\x4e\x4a\xf4\x35\x3b\xae\x72\xf6\xce\xf8\xb2\x9a\x6b\x3d\x29\xae\x9c\xad\xfd\x50\xe2\xf9\x91\xe2\x92\x09\x1d\xa4\xb8\xb2\xaf\x1f\x29\xae\x6c\x5f\x7f\x6a\xce\x3d\x86\xe6\x1c\x94\x33\x48\x63\xf9\x71\xd4\x41\x1a\xcb\x38\x7c\x90\xc6\x2a\x2e\x32\xa4\xb1\x8c\xca\x07\x69\xac\x62\xbf\x90\xc6\x2a\x2e\x6a\xa4\xb1\x8c\xd1\x07\x69\x2c\x05\x95\x83\x5d\x55\x0a\xc8\x06\x69\xac\xea\xc4\x8e\x1f\x45\x43\x6e\x35\xf0\xa3\x68\xe8\x68\x07\x29\xae\xe6\x48\x26\xc5\xd5\x00\xd3\x83\x14\x57\xf3\x95\xc6\x8f\xa2\x39\xf5\xe0\x47\xd1\x8c\x92\x49\x7f\xb5\x69\x0d\xe4\x4f\x7c\xc5\x48\x7f\x35\x27\x45\xd2\x5f\x0d\x8e\x76\x90\xfe\x6a\x8e\x64\xd2\x5f\xcd\x85\x92\xf4\x57\x23\x05\x3b\x48\x7f\x35\x18\xf0\x41\xfa\xab\xc1\xf7\x0f\xd2\x5f\x0d\xa2\x6b\x90\xfe\x6a\x28\x35\xc6\xb6\x7d\xf4\xe7\xb6\x7d\xb4\x01\xaf\x8a\xe6\x28\x27\x35\xd6\x50\x43\x0d\x52\x63\xa2\x95\x41\x6a\x6c\xa2\x52\x1e\xa4\xbf\x3e\x88\x99\x41\xfa\x6b\x21\xa8\x1c\xa4\xbf\x96\x53\x1d\xe9\xaf\x05\xf1\x34\x48\x7f\x2d\x23\x6f\xd2\x5f\x0b\x65\xf0\x20\xfd\xa5\x33\xdb\x20\xfd\xb5\xd0\xc1\x0c\xd2\x5f\xcb\xa0\x8b\xf4\xd7\x22\x69\x3e\x48\x7f\x2d\x43\x30\x72\x5c\xdb\xb0\x8e\x1c\xd7\x72\x52\x24\xc7\xb5\x9c\xf4\xc9\x71\x2d\x47\x01\x39\xae\xb5\xac\x9d\xfc\x09\x12\x81\x41\x8e\x4b\xb3\xfb\x41\x8e\x6b\x39\xea\xc8\x71\x2d\xa7\x64\x72\x5c\x6e\x3b\x9a\xe4\xb8\x16\x2a\xf3\x49\x8e\x6b\x7d\x96\x68\x1f\x88\x64\x62\x48\xa1\xc3\xcd\xc4\x90\x62\x4d\xcf\xa4\x7d\xeb\xf7\x9c\xe0\x26\xa9\x31\xfd\x61\x27\xa9\xb1\xc5\x1a\x33\x4d\x8d\x6d\x2b\xa0\xe9\xb0\x8f\xd3\xd4\x18\x09\x93\x69\x6a\x6c\xfb\x3b\x9a\xce\x6a\x34\x4d\x8d\x31\x3c\xa7\xa9\xb1\xe1\x35\x69\x3a\xfc\xdf\x34\x35\x46\x54\x37\x4d\x8d\xb1\xa2\xce\x40\xea\x88\x0e\x9c\x17\x8c\x55\xd9\xc7\x19\xb0\x8f\xdc\xfe\x4e\x7f\x01\x8f\x91\x1e\xaa\x96\x48\x0f\xf1\x4a\xcf\x40\x7a\x28\x58\x3b\xe9\x21\x5e\xfe\x19\x90\x9c\x07\x6b\x27\x3d\x04\x7f\x34\x49\x7f\x09\xe2\x26\xe9\xaf\x48\x5a\x70\xfa\xd9\x56\x86\xd2\x24\xfd\xe5\xd7\x2c\x26\xe9\x2f\xbf\x35\x31\x49\x7f\xf9\x75\x89\x49\xfa\x2b\x22\x0b\x9b\xa4\xbf\xfc\x62\xc5\x24\xfd\x95\xc0\x12\x93\x14\x97\x9f\x58\x9d\xa4\xb8\x32\xf1\xe6\x24\x8d\x95\x8b\x25\x52\x40\xd5\xdf\x91\x02\x62\xc9\x99\xa6\xaa\x1c\x2e\xa6\xaa\x48\xfa\x4c\x53\x55\x88\xcb\x26\xa9\xaa\xc2\x8b\x3a\x49\x55\x15\x28\xaa\x49\xaa\xaa\x38\x20\x49\x55\xf9\x79\xa3\x19\x49\x0f\x11\x1b\xce\x88\xca\x3c\x7a\x95\x49\x89\x36\x90\xc6\xaa\xc4\xa9\x93\x34\x56\x25\x86\x9d\xa4\xb1\x6a\xf4\xce\x48\x0f\xb1\x4c\x4f\xd2\x58\x26\x9c\x27\x69\xac\x06\xe5\x30\x49\x63\x75\xc8\x89\x89\x1f\x45\x67\x79\x98\xf8\x51\x74\xc8\x82\x49\x8a\xcb\xdd\x89\x33\x91\x23\x61\x99\x9e\x78\x55\x8c\xee\x55\xc8\x91\x80\xb8\x26\xe9\xaf\xf9\x7a\xcd\x41\xc6\xc4\xab\x4c\x8e\xd1\x3e\xd2\x5f\x93\x64\xf4\x24\xfd\x35\x1d\x3d\xa4\xbf\x66\xf0\xae\x0f\x67\x52\x22\xfd\xa5\x7d\xeb\x24\xfd\xf5\xb1\x20\x4c\xd2\x5f\x9f\x77\x46\xfa\x6b\x81\xb8\x26\xe9\xaf\x65\xbf\x90\xfe\x5a\x04\x48\x93\xf4\xd7\xfa\xa9\x81\x1c\x09\x8c\xf4\x24\xfd\xb5\x7c\x2a\xa4\xbf\x16\xe8\x6f\x92\xfe\x5a\xd1\x12\x39\xa0\x68\x0d\xe4\x80\xa0\x1c\x26\xe9\xaf\x05\x05\x30\x49\x7f\xad\x64\x1b\xc8\x01\xb1\x3c\x4c\xd2\x5f\x6e\xd2\x99\xa4\xbf\xb4\xf6\x9f\xe4\xb8\x8c\xfb\x27\x39\xae\x83\xee\x66\x92\xe3\xd2\x1d\x7a\x92\xe3\x72\x33\xf9\x24\xc7\x75\x1c\x91\x45\x65\xbe\x67\x92\x23\x49\x5e\x05\x65\xbe\x7d\x76\x51\x55\x0b\xde\x35\x1e\x17\xc1\xb7\x1f\x8f\x8b\x80\xb4\x60\xe2\x71\x11\x58\xc6\x26\x1e\x17\x01\x4c\x37\xf1\xb8\x08\xf6\x12\x1e\x17\x01\x14\x37\xf1\xb8\x78\x7f\xe1\xfc\x3f\x3f\x25\xe3\x71\xe1\xa7\xc1\x27\x1e\x17\xda\x32\x4e\x3c\x2e\x34\x5b\x9c\x78\x5c\x98\x41\x9f\x78\x5c\x44\x5f\x54\x3c\x2e\xa2\x1d\x88\xc7\x85\x11\xf4\xc4\xe3\x22\x56\x4b\xa4\x1e\x88\x65\x26\x1e\x17\x3a\xe5\x4e\x3c\x2e\x22\x40\x66\xe2\x71\xa1\x25\xca\x24\xfd\x65\x44\x3b\x49\x7f\x45\x92\x0d\x93\xf4\x57\x24\x22\x9a\xa4\xbf\x8c\xc3\x27\xe9\x2f\x81\xc5\x24\xfd\x65\xdc\x3f\x9b\x6d\xa0\x76\x52\x5c\x82\x8e\x49\x8a\xab\x10\x6f\xce\x26\xa0\xb4\x3e\x7c\x2c\x3e\xcf\x9c\x94\xac\xe1\xb6\xc1\xaf\xfc\x4e\x52\x5c\xc5\xe5\x88\x14\x57\x71\x1a\x24\xc5\xe5\x26\x9d\x49\x8a\xab\xb0\xf2\x4f\x52\x5c\x85\x58\x6d\x92\xe2\x2a\xc4\x01\x93\x14\x57\x61\x3f\xdb\x24\xc5\xa5\xcc\x67\x92\xe2\x6a\x3e\x07\x52\x5c\x0d\xf4\x30\x49\x71\x35\xfb\xb3\x93\x3e\xb1\x3f\x3b\xe9\x13\x9f\x03\xe9\xaf\x86\xd4\x6c\x92\xfe\x6a\xcd\xdf\xdd\xf6\x69\x4c\x3f\x49\x7f\x75\xa7\x79\xd2\x5f\x03\x15\xce\xec\xa6\x56\xb8\x0a\xe9\x2f\xc5\x96\x93\xf4\x97\xf2\xca\x49\xfa\x6b\xf8\x6a\x92\xfe\x1a\xaf\xbf\x33\xb5\x42\x0d\xc3\xd4\x0a\xf7\x42\xfa\x6b\xb8\x1c\x91\xfe\xfa\xa0\x9a\x26\xe9\xaf\x8f\xf8\x7d\x92\xfe\xd2\xe5\x6f\x92\xfe\xd2\xa0\x68\x0e\x37\x2c\x78\x4d\x1c\x84\x89\x45\x27\xe9\xaf\xcf\x00\x82\xf4\xd7\xe7\x08\x19\x3a\x08\x53\x22\xfd\xa5\x42\x67\x4e\x1d\x84\x79\x0e\xa4\xbf\x16\x91\xe9\x24\xfd\xb5\x5d\xb8\x48\x7f\xf9\x7d\xc4\x39\xc9\xad\x38\x5d\x5f\xc4\xd5\xdd\xdc\x33\x27\xb9\x15\x23\xb0\x8b\xb8\xba\x89\xdc\x79\x11\x57\x57\x53\x3f\x27\xb9\x15\xfb\x6c\xb2\x61\xc1\xe7\x30\xc9\xad\xc0\x17\xcf\xc9\xae\x04\x92\x5a\x73\x92\x5b\x71\x79\x98\xe4\x56\x5c\x80\x3e\x72\x2b\x30\xcb\xf3\x23\xb7\x62\xcf\x7f\xf8\xac\x38\x81\x7d\xf8\xac\xf8\x8c\x3e\x72\x47\x10\x4f\xf3\xa3\x7d\x86\x6e\x1f\xed\x23\x3d\x3b\x3f\xda\x67\x98\xf5\x91\x5b\x01\x27\xce\x8f\xdc\x8a\xd3\xee\x45\x63\x3d\x18\xb5\x5e\x34\xd6\x83\xa1\xdb\x45\x63\xdd\xaf\xe5\xcc\x8b\xc6\x7a\xd8\x5e\x85\x5d\x17\x3f\xf5\xb1\xeb\x02\x29\xc3\xbc\x68\xac\xfb\x45\xfa\xb9\xc8\xbb\xf8\xbe\x2f\xf2\x2e\xe4\x10\xe6\x22\xef\xc2\x26\x96\x49\x6e\xcc\x1d\x7a\x93\xdc\x58\x31\x08\x5a\x38\x24\x93\x6d\x98\x0b\xaf\x98\xf2\x7b\xdf\xde\x9b\xa4\xc6\x7e\x26\x94\x85\x8d\x8c\x71\x31\xa9\xb1\xf2\x73\xd3\x7c\xe1\xce\x58\xed\x82\xb1\x3a\x1c\x4a\xa4\xbf\xa6\x2f\x00\xe9\x2f\xbd\xca\x26\xe9\xaf\x6d\x83\x48\x7f\xf9\x59\xf4\x49\xfa\xcb\xef\xdd\x4d\xd2\x5f\x1b\xfe\x68\xe2\x55\xa1\xc7\xd2\xc4\xab\x42\x45\xea\xc4\xab\x42\xd5\xe9\xc4\xab\x42\x17\xae\x89\x57\x85\x26\xd6\x13\xaf\x8a\x07\x02\x62\xe2\x55\xa1\x3e\x75\xe2\x55\xa1\xd1\xf8\xc4\xab\x42\x05\xec\x04\x8c\x55\x92\x8b\xf3\x98\x5a\xe1\x9a\x78\x55\xb8\x49\x74\xe2\x47\xa1\x97\xd7\x3c\xa6\x4f\x18\x3c\xc7\xf4\x09\x77\x8d\x1f\x85\xbb\xc6\xe6\xd1\x09\xd8\xfa\x48\x9f\xd8\x13\xf8\x51\xe4\xea\x99\x10\x17\xb6\x81\xf4\x97\xd6\x84\x93\xf4\x57\x66\x2b\xc5\x24\xfd\x95\x59\xaa\x3e\xd2\x5f\xba\x77\x7d\xa4\xbf\x32\xad\xfd\x48\x7f\xb9\xd5\xe7\x23\xfd\x25\xa9\xf1\x91\xfe\xca\xc3\xab\x90\x5f\x00\x4c\x7f\xa4\xbf\xfc\x1e\xf0\x47\xfa\xcb\xef\x31\x7e\xa4\xbf\x4c\x43\x7e\xa4\xbf\xf2\xb4\x44\x6a\x05\x08\xf9\x91\xfe\xca\xc0\xee\x8f\xf4\x97\xd6\x8b\x1f\xe9\xaf\x3c\xbd\x33\xda\xd7\xbd\x17\xda\xc7\x08\xf9\x48\x7f\x49\xb7\x7c\xa4\xbf\x32\xcb\xd8\x47\xfa\x2b\x93\x40\xfc\x48\x7f\xf9\xc2\x7d\xc1\xf6\x79\x15\xdb\xe7\x31\xf3\x27\xf4\x19\xe9\xaf\x46\xec\xf4\x91\xfe\x52\xf8\xf9\x91\xfe\x52\xde\xf5\x91\xfe\x6a\xaf\xa5\x45\xc9\x7b\xb9\x6d\x50\x16\xf6\xf1\x81\x57\xe5\x5d\x1f\x29\x2e\x65\x5a\x1f\x29\xae\x41\xc8\xf0\x91\xe2\x1a\xb6\x9d\x14\x97\xbb\x4b\x3f\x52\x5c\x46\xf3\x1f\x29\xae\x01\x0d\xf5\x91\xe2\x1a\xc3\xab\xa0\xe1\x67\x0a\xf9\x48\x71\x4d\x62\xe6\x8f\x14\x97\x1b\xdb\x3f\x52\x5c\x93\xe8\xf3\x23\xc5\x35\x97\xbf\xc3\x1c\x17\x83\x81\x8f\x34\xd6\xc7\x22\xfa\x91\xc6\x5a\x24\x56\x3f\xd2\x58\x2b\x7b\x26\x79\x02\x7b\x89\x5c\xd5\x22\x3d\xfb\xf9\xa1\x56\x26\xe1\x8f\x5c\x95\x5f\xc7\xff\xc8\x55\xed\xe8\x31\x74\xfa\xc9\x6b\xa2\xd3\x07\x05\x7c\x3f\x1f\x71\xe5\x49\xfb\x11\x57\xf0\xde\x47\x3e\xca\x6f\x98\x7f\x7e\xa8\x15\x14\xf0\x91\x8f\x3a\x60\xa5\x8f\x9c\xd3\x61\x29\xfe\x92\x5c\x32\xed\xc3\x20\xc2\xc4\xff\x87\x41\x84\x1f\x1d\xf8\x92\x5c\x79\xa1\x24\x57\xce\x7d\x62\x10\x11\x82\xf5\x5d\x26\xe1\xc6\xda\x7f\x76\x4a\xfe\xf0\x8e\x78\x60\x70\x3e\xbc\x23\x02\xab\xe6\x87\x77\x84\x62\xa8\x0f\xef\x88\x07\x80\xf7\xe1\x1d\xa1\xfc\xe9\xc3\x3b\xc2\x4f\x66\x7e\x78\x47\x28\xb0\xfa\xf0\x8e\x08\x24\x7d\x3e\xbc\x23\x1e\x36\x4f\x7c\x78\x47\x04\x92\x4c\x1f\xde\x11\x81\x69\xf0\xc3\x3b\x22\xb0\x67\xed\xc3\x3b\xc2\xef\xba\x7d\x59\x8a\xdd\xdf\xc9\x33\xf3\x88\xb2\x3c\x33\x1d\x81\x77\x44\xfc\xfc\x1d\x3c\xf3\x67\x0d\xf0\xcc\xdb\xab\xc0\x33\x13\x7d\x7e\x78\x47\x44\x62\xd8\x0f\xef\x08\x77\xce\x7f\x78\x47\x44\x07\x32\xde\x11\x91\x75\xf9\xc3\x3b\x22\x3a\x74\xf1\x8e\x88\x3e\x4c\xbc\x23\x34\x59\xff\xf0\x87\x88\xd5\x12\x6d\xb0\x3f\xf1\x87\x50\x2b\xfb\xe1\x0f\xa1\x67\xd5\x87\x3f\x44\xca\xd6\x4e\x1b\x96\x67\xd2\x06\xe8\x9d\xaf\xca\x25\xd3\xf3\xf8\x43\x98\xdf\xfe\xf0\x80\xc8\x2c\x5c\x1f\x1e\x10\x99\xad\x22\x1f\x1e\x10\x99\xa8\xfc\xc3\x03\xa2\x14\xaf\x02\x97\x5c\x3d\x13\x2e\x99\x38\xe0\xc3\x03\xa2\xd8\xa2\x2a\x97\xec\x55\xe0\x92\x7f\xea\x83\x4b\x86\x71\xff\xf0\x87\xf0\x5b\x86\x1f\xfe\x10\xc5\x69\x89\x94\x53\xf5\xb9\x93\x72\xaa\x4e\x6e\xa4\x9c\x9a\x63\x97\x94\x53\x23\x95\xf3\x91\x72\x6a\xbe\x1c\xa4\x9c\x1a\x84\xdc\x47\xca\xa9\x2d\x6b\xb8\x6d\xe8\x8f\xbf\x83\x2f\x5e\xd6\x07\x5f\x7c\x3c\x06\x5f\x0c\x59\xf7\x91\x72\x6a\xdb\xab\xc0\x17\xdb\xf3\xa4\x9c\x9a\x23\x84\x94\x53\x3b\x96\xe0\x8b\x1d\x2f\xa4\x9c\x1a\xe8\xe8\x23\xe5\xd4\x1c\x67\xa4\x9c\xba\xcb\x03\x29\xa7\xee\xfb\x40\xca\xa9\xfb\x56\x75\xda\xe7\xd8\xed\xb6\x8f\x7e\x21\x1d\xd5\x7d\x7e\xa4\xa3\x9a\x6f\x31\xe9\xa8\xe9\x62\x48\x3a\x6a\x46\x7f\x87\x0f\x89\x93\x22\x39\x27\xbd\xcc\x3f\x72\x4e\x93\xd0\xe6\x23\xe7\x34\x61\x9d\x3f\x72\x4e\x13\x1a\xf1\x23\xaf\xe4\xe7\xb7\x3e\xf2\x4a\xdb\x25\x8e\xbc\x92\x69\xd6\x8f\xbc\xd2\x26\xf3\xf1\x91\x57\xda\x2e\x6a\xe4\x95\xfc\x92\xe2\x47\x5e\x69\x83\x4f\x3e\xf2\x4a\x1b\x3a\xe2\x23\xaf\xb4\x5d\xf0\xc8\x2b\x69\x37\xf5\x91\x57\xda\x60\x89\x8f\xbc\x92\x7e\xe5\x1f\x79\xa5\x9d\x2d\x05\x4a\xdc\x19\x79\xa5\xed\x72\x4b\x5e\xc9\x0f\x7b\x7c\xe4\x95\xb6\xbd\x3b\x6d\x1f\x7d\x46\x5e\xc9\x0f\x82\x7c\xe4\x95\x76\xf9\x3d\x5d\xf2\x47\xca\x69\xbb\x8a\x91\x72\xf2\x33\xfa\x1f\x29\xa7\xed\x23\x22\xe5\xb4\xed\x5c\x76\x55\xfd\xac\x54\xa4\x9c\xf4\xdd\xfa\x48\x39\x6d\x1f\x34\x29\x27\x4d\x28\x3f\x52\x4e\xdb\x78\x85\x94\xd3\x0e\x96\x68\x3a\x6c\xe0\x47\xca\x69\x23\x21\xf9\x48\x39\x6d\xf8\xaa\x8f\x5d\x55\x9b\x38\xf5\x63\x57\x95\xdf\xa4\xfe\x3e\x1f\x2d\x8f\x1d\x77\x8a\x60\xb7\xe0\x4e\x21\xd7\xf3\xe1\x4e\x11\x7c\xec\xb8\x53\x84\xe8\x99\x17\x05\x04\xbb\x1a\x77\x8a\x9f\xf5\x0e\x77\x0a\x0d\x07\x3f\xdc\x29\xfc\xf2\xd8\x87\x3b\x85\x5f\x17\xfb\x70\xa7\x50\x2f\xfa\xe1\x4e\x11\x1d\x20\xb8\x53\xa8\x41\xfd\x70\xa7\x88\x70\x52\xdf\x4d\x39\xd5\x64\xcf\xdf\x94\x53\x4d\x46\x67\x17\x00\x55\xbf\x8f\xf8\x5d\x94\x53\x13\x10\xf2\xbb\x28\xa7\xa6\x9f\x1a\x36\x67\x5a\xc3\xe1\x18\xfd\xb2\xe1\xbc\x1d\x90\x1b\xce\xdb\x5e\xda\x70\xde\xb0\xa4\xdf\x66\xdb\x43\xf1\x4c\xb6\x3d\x00\xe9\xbe\xcd\xb6\x07\x94\x0c\xdf\x66\xdb\x83\x4b\x07\x9f\x84\xca\x4e\x3d\x7c\x12\x2a\x93\x10\xfa\xf8\x24\x54\x76\x8a\xe4\x93\x50\x19\x64\xf1\xf1\x49\xa8\xec\x64\xca\x67\x9f\x8a\x2f\x3f\x9f\x7d\x52\x01\xfb\xf1\x01\xdb\x42\x36\xff\xe3\x03\xb6\x85\x3c\xfc\xc7\x27\xa1\xfc\x5e\xe1\xc7\x27\xa1\xdc\xb8\xff\xf1\x49\xa8\x96\x2d\x55\xf8\x69\x7f\xd7\x28\xf9\x3b\x9c\x4e\x9c\x14\xfd\x24\x14\xba\x94\x8f\x4f\x42\x0d\x14\x48\x1f\x9f\x84\x1a\x4e\xec\x07\x44\x69\x70\x71\x40\x94\x4e\x67\x17\xc9\xd4\x01\x27\xbc\x2e\x92\xa9\x83\xf6\xad\x8b\x64\xea\x00\x5f\xae\x8b\x64\xea\xa0\x07\xd7\x45\x32\x75\x12\x86\xac\x8b\x64\xea\xcc\xfe\x2e\x73\xcc\x52\xe1\xd8\x43\xa9\x52\x7a\x29\xc1\x87\x33\xf1\xad\x07\x3e\x9c\xf7\x7d\x3d\xf0\xe1\xd8\x29\xac\x07\x3e\x9c\x1e\x5c\x0f\x7c\x38\xc9\xe8\x75\x91\x4c\xfd\xba\xc7\x6e\xfb\xbe\xe1\x5d\xc3\x17\x13\x08\xac\x00\x5f\xec\xbd\x04\xf6\x0c\x10\xba\x2d\xf2\x43\x0b\x72\x70\x05\xf8\x70\x38\xda\x15\xe0\xc3\x8b\x57\x91\x0f\xa7\x0d\xe4\x8e\x16\x92\xb8\x45\xee\x48\xca\x68\x91\x3b\x5a\xc5\x33\xe1\xc3\xab\xb5\xc3\x87\x83\x17\x56\x00\xa9\xf1\xde\xae\xe0\xbe\x00\x6b\x67\x5f\x80\x7d\xf6\xa2\x9b\x07\x93\xaf\x17\xdd\xbc\x77\x7d\x51\x4e\xf3\xdb\x40\xeb\xa2\x9c\xa6\x21\xc5\x7a\xd1\xcd\xdb\x67\x2f\xba\xf9\x5f\xb3\xdb\x9f\x9d\x92\xd7\x8b\xef\x31\x0c\xf1\x7a\xd9\x32\xe0\xa3\xbd\x00\xa8\x05\xa6\xd6\xf5\xb2\x65\x80\x89\x68\xbd\xd0\xe1\x70\x98\xeb\x85\x0e\xaf\xde\x18\x72\xfb\x60\x83\x30\x41\x09\xfe\x0e\x4e\x78\x5b\xdf\x6d\xba\x09\xaf\x15\xe1\x84\x51\x0d\xaf\x0b\x8e\x9a\x29\xae\x15\xe1\x84\x79\x51\x57\x84\x13\x26\xeb\xb9\x2e\x38\x6a\x7e\xe8\x7d\x45\xe4\xf6\x6c\xc1\x58\x11\xbe\x98\x35\x7b\x45\xf8\xe2\xe3\x31\x38\x6f\x22\xd3\x75\xc1\x51\x4b\xb0\x57\xeb\x82\xa3\x66\x62\x6e\x45\x38\xef\x63\xed\x1f\xc7\x68\x51\x84\xf3\xfe\x2c\xd1\xbe\xe3\x5d\xc3\x79\x13\x1f\xad\x44\xfb\x00\x55\x2b\xd1\x3e\x62\x84\x75\xd3\x51\xcd\x0f\xcb\xaf\x9b\x8e\x6a\x7e\xac\x7e\x25\xb6\x13\x30\xd9\xac\x0b\xaa\x5a\x42\x86\xb6\x12\xed\x5b\x9e\x49\xfb\x88\xf1\x56\x92\x0f\xa7\x5f\x12\xbe\xce\x3f\xc7\xe0\xc3\x99\x22\x57\x82\x0f\x67\xca\x5a\x09\x3e\xfc\xe7\x9a\xf0\xe1\xcb\xab\xc0\x87\x6f\x8f\xc1\x87\x83\x09\x56\x86\x0f\x67\x6a\x5d\x17\x39\xb5\x66\x7f\x66\x38\x6f\x68\x85\x95\x35\xaa\xe1\xb9\x67\x8c\x6a\x9c\x96\x32\x72\x7b\xfc\xd6\x56\x46\x6e\x5f\xac\xe1\xb6\x61\xf8\x3a\x64\xbe\x2a\xe7\xcb\x7f\xd1\x51\x53\x7e\xb8\x2e\x3a\x6a\x4a\x1a\xd7\x45\x47\x6d\xf8\xe2\x64\x38\x6f\xfb\x25\xc3\x79\x3b\x69\x14\x38\x6f\xdf\x80\x02\xe7\xcd\xa2\xb6\x8a\x9c\x37\xcf\xaf\xc0\x79\x47\xcf\x84\xf3\x76\x8a\xbc\xe8\xa8\xf9\x25\xf4\x75\xd1\x51\xf3\x5b\x86\x8b\x94\xd3\x07\x06\x59\xa4\x9c\xfc\xe8\xc0\x22\xe5\xe4\x07\x09\x16\x29\xa7\x8f\xdc\xca\x22\xe5\xe4\xe7\x02\x16\x29\x27\x8d\xfe\x17\x29\xa7\xef\xb3\x0d\x70\xde\xd3\xbb\x3e\x94\x78\x0e\xa4\x9c\x3e\x80\xf6\x22\xe5\xe4\xc7\x03\x16\x79\x25\x3f\x5d\xb0\xc8\x2b\xb9\x2f\x74\x91\x57\x72\x27\xe8\x22\xaf\xb4\x48\x93\x2f\xf2\x4a\x0b\xa6\x77\x91\x57\x5a\x90\x75\x8b\xbc\x92\xea\x88\x45\x5e\x69\x2d\xaf\x39\x28\x79\x95\xc9\x99\xf4\x04\x79\xa5\xe5\xa8\x23\xaf\xa4\x60\x60\x91\x57\xda\xc7\x63\xec\x97\x70\xd6\x20\xaf\xb4\x51\x45\x2f\xf2\x4a\x8a\xfc\x56\x83\xf3\x26\xb5\xb9\x1a\x9c\x37\x59\xb4\xd5\xe0\xbc\xa1\x62\x56\x83\xf3\xf6\xdd\x6c\x70\xde\xc4\xe8\xab\xc1\x79\xfb\xdc\x1b\x9c\xf7\xe3\x31\x38\xfd\xe3\x35\xe1\xbc\xe1\x00\x56\x83\xd3\x3f\xbf\x3b\x25\x37\xe8\x70\x62\xd1\xd5\xa0\xc3\x8b\x97\x84\x0e\x07\xf4\x2f\xac\xd3\x5f\xc2\xfe\x85\x75\xfa\x6b\x75\x58\xa7\xbf\x24\x06\x16\xd6\xe9\x5a\xd8\x2f\xac\xd3\xdd\x39\xb5\xb0\x4e\x7f\x9d\x50\xb0\x4e\xf7\x4b\xb7\x4b\xeb\x74\x58\xcb\x85\x75\xba\x0a\x81\xd5\xdd\x2e\xc1\x63\xc0\x3a\x5d\xd8\xbd\xb0\x4e\xcf\xdd\x3b\x5b\x94\xe8\x24\xac\xd3\x73\xf3\xce\xd8\x4a\xe1\x30\xd3\x3a\xdd\x63\x58\xa7\xbb\x0d\x75\x0d\x29\x7d\xda\x30\xa0\xed\x9b\x25\x69\x7b\x6a\x18\x7c\xbd\xd0\xd5\xf6\x02\xae\x5e\x7c\x71\x06\x94\xbe\x4b\xc7\x90\xb7\xf7\x4c\xb6\x7c\xb8\x58\x0c\xb6\x7c\x38\x79\x5f\x50\xd5\xab\xc3\xf3\x02\xa7\xde\x88\xce\xd6\x05\x4e\x5d\xc0\xbc\xa6\xdb\x3a\x68\x11\xe9\x21\xbf\x57\xbd\x48\x0f\x35\x97\x3f\xd2\x43\xc2\xe7\x45\x7a\xa8\x39\x09\x93\x1e\xf2\x5b\x63\x8b\xf4\x50\x1f\x1e\xbb\x7d\xbd\xd9\x08\xb0\x48\x0f\xe9\xc2\xb5\x48\x0f\x6d\x5f\xaa\x8b\x8e\xd2\x76\xea\xc1\x02\x5d\x73\xc7\x85\x05\xba\xca\xd2\x85\xcd\xb9\x1a\xd4\x85\xcd\xf9\x43\x32\x6c\x61\x73\xae\x61\xe4\xc2\xe6\xfc\x71\x42\xc1\xe6\x5c\xb5\xea\xc2\xe6\x5c\x33\xc9\x85\xcd\xb9\xea\xd1\xa5\xcd\x79\xf5\x18\xd6\x42\xd5\x63\x58\x0b\xf9\x6c\xb1\x39\xd7\x45\x6d\x61\x73\xae\x2f\xdc\x52\x90\xe7\x02\x84\x95\xb9\x3e\x16\x0b\x2b\xf3\xec\xef\xb0\x32\xcf\x24\xae\x16\x56\xe6\x19\x1e\x76\x61\x65\x9e\xbd\x26\x56\xe6\x8a\x0a\x17\x7e\xe5\xd9\xe5\x16\xbf\x72\xb7\x57\x2f\xfc\xca\xb3\xbd\x8b\x27\x79\xf6\xd9\xe2\x49\x9e\x9d\xdc\xf0\x24\xcf\x10\x64\x0b\xdf\xf1\x6c\xac\x8d\xef\x78\x86\xd4\x58\x78\x8b\x37\x97\x31\xf2\x35\x7a\x32\x2c\xf2\x35\x0d\xb8\xbe\xc8\xd7\xfc\x2c\xa9\xe4\x6b\x1a\x99\x8f\x45\xbe\x46\x47\x88\x45\xbe\x46\x1d\xcc\x22\x5f\xa3\xeb\xc3\x22\x5f\xd3\x60\x6c\x17\xf9\x9a\x06\xc9\xb0\xf0\x16\x6f\x46\xb4\xe4\x6b\x9a\x91\x29\xf9\x9a\x66\xbc\xa9\xb7\x38\x54\xc5\xc2\x5b\x7c\xf8\x8e\x91\xcb\x19\xb6\x8f\x5c\xce\xf0\xcd\x21\x97\x33\x1c\x59\xe4\x72\x86\x4b\x9c\xde\xe2\x2e\x86\xe4\x72\x86\x8b\x21\xb9\x9c\xf1\x79\x2f\xec\x35\x98\x96\xf0\xe5\x2e\xd6\x87\x4e\x1f\x54\xb5\xc8\xe5\x6c\xda\xbe\xc9\xe5\x6c\x36\xde\x6d\x72\x39\xfb\xd7\x7d\xfe\xd9\x29\x79\x93\xe6\xd9\xb8\x14\x6c\xd2\x3c\x87\xf8\x76\x93\xe6\x39\xd9\x4b\x22\x7f\x1f\x56\x87\xfc\x9d\x97\x78\x3f\xf2\xbe\x83\x52\x83\x13\x3e\x94\x2e\x19\x12\x92\x35\x48\x79\x7b\x0c\x79\x38\x6a\xc7\x8d\x78\x2e\x00\xa6\x37\xe2\x39\x65\x6f\x1b\xf1\x5c\x60\xd7\xdf\x46\x3c\xe7\x86\xdc\x8d\x78\x2e\x40\x78\x6c\xc4\x73\x46\xf3\x1b\x5f\x89\x00\xe1\xb1\xf1\x95\x70\xa7\xdd\xc6\x57\x42\x14\xb0\xf1\x95\x08\xd1\x33\xe1\xb5\xd9\x78\xb0\xf1\x95\x08\x8f\xbf\xb3\x7d\x85\x12\xed\x8b\x9e\x79\xdb\x90\x90\xcb\x6d\x3e\x02\x95\x7e\x6a\xd8\x1c\xb3\x74\xdb\x20\x1d\xb1\xb1\x24\x4f\xb0\x50\x1b\x4b\xf2\x14\x2d\xbd\x1c\xa3\x45\x58\x92\x27\x7b\x17\x4b\xf2\x14\x3c\x96\x29\xd1\x06\x2c\xc9\xc5\x19\x1b\x4b\xf2\xc4\xea\xbe\xb1\x1d\x57\x82\xb7\xb1\x1d\xcf\xc5\xab\x7c\x30\xcb\xd6\x80\x0e\x1a\xfd\xed\xc6\x76\xbc\x00\xbb\x37\xb6\xe3\x05\x1a\x6a\x63\x2d\x2e\xc9\xb0\xb1\x16\x77\xa9\xda\x58\x8b\x17\xc0\xfb\xc6\x5a\xdc\x25\x6e\x63\x2d\x5e\xc1\x4a\x1b\x6b\xf1\xde\xfd\x5d\x83\x09\xf5\x4c\x78\x51\x26\x86\x8d\xb5\x78\x67\xa2\xdd\x58\x8b\x9b\x28\xdb\x58\x8b\xfb\x59\xcc\x8d\xb5\x78\x27\xc5\xbc\xb1\x16\xef\xd1\x33\x6f\x1b\x3a\x0b\xc9\xc6\x3f\xbc\x33\x69\x6c\xfc\xc3\x15\xcf\x6d\xfc\xc3\x3b\x53\xcf\xc6\x3f\x5c\x57\x84\x8d\x7f\x78\x07\x35\x6e\xd2\x43\xdd\x97\x91\xf4\x50\x47\xd9\xb3\x49\x0f\xe9\x9f\xb0\x93\xed\xf3\x77\xb6\xcf\x1a\xf0\x9f\x26\x19\xb6\x49\x0f\xcd\xea\x7d\xc2\xfb\x12\x17\x6f\x72\x40\x6e\x0a\xda\x49\xff\x69\xaf\x09\xef\x0b\x6e\xdb\xe4\x80\x36\x49\xf3\x4d\x0e\x68\xb3\xa8\x6d\x72\x40\xdb\xdf\x91\x03\x72\x63\xcc\x26\x07\xb4\x3f\x7f\x07\x71\x48\xee\x61\x93\x03\xda\xdd\x1a\x20\x0e\x59\x56\x36\x39\xa0\xcd\xe2\xbb\xc9\x01\x99\xce\xdf\xe4\x80\xb6\x63\x82\x1c\xd0\x66\x8a\xdc\xe4\x80\x36\x2a\x95\x4d\x0e\x48\xab\xad\x4d\x0e\xc8\x40\x60\x93\x03\xda\x8e\x3a\x72\x40\x7e\x8b\x72\x93\x03\x32\xbd\xb7\x8b\xed\xb3\x44\xfb\x48\x62\x6f\x72\x40\x1a\x76\x6d\x72\x40\x7b\x7a\xe6\x25\x4a\x7e\xe6\x17\xcc\x23\x82\xb3\x22\xe6\x11\x7e\xaa\x78\x63\x1e\x11\x8a\xbf\x83\x34\x4d\x1e\x83\x34\x2d\xbf\xf7\xed\xbd\x8d\xaf\x84\x5b\x38\x37\xbe\x12\xc1\x57\xb3\xc8\xa7\xda\x58\xf8\x54\xa7\x3a\x7c\x25\x8c\xa7\x37\xbe\x12\xc1\xe1\x89\xaf\x84\xf4\xc7\xc6\x57\xc2\xd4\xdf\xc6\x57\x22\x64\x8f\x61\x3f\x03\x14\xdc\xf8\x4a\xbc\xac\x93\x1b\x5f\x89\xe8\x54\x87\xaf\x44\x4c\xd6\x87\xa5\x35\x7e\x0d\x1b\x5f\x09\xb7\x77\x6e\x7c\x25\x52\xf1\x18\xf6\x33\xbe\xc4\xf8\x4a\xa4\xec\x55\xe0\x5a\xb3\x67\xc2\xb5\xda\x86\x06\xd7\x0a\xf0\xdd\x0d\xae\xd5\xfa\x1a\x5c\xab\x0f\xa5\xc1\xb5\x92\xd4\xda\x0d\xae\x15\x51\xcc\x6e\xe8\x76\xe1\x14\x37\xd6\xe2\xf9\x58\xe2\xfb\x65\x2e\x32\x58\x8b\x67\x62\xd8\x8d\xb5\x78\x3e\x1e\x83\x6b\x25\x8d\xb5\xb1\x16\xcf\xc7\x7b\x41\x7b\x0c\xf9\xb2\xb1\x16\xcf\x2e\x71\xd8\x87\x57\x5f\x70\xec\xc3\xab\x13\x0a\xf6\xe1\x7e\x1d\x78\x63\x1f\xee\xe7\x94\x76\xc7\xe1\xda\x69\xe2\x22\x99\x5a\x9d\x5e\xb0\x16\xf7\x9b\x84\x1b\x6b\xf1\xea\x78\xc1\x5a\xbc\x3a\x96\xb0\x16\xaf\x8e\x10\xac\xc5\xab\xa3\x00\x6b\x71\xed\x5b\x37\xd6\xe2\x75\x5b\x3b\xda\x63\xb0\xcb\xc6\x5a\xdc\x0d\x19\x1b\xfb\xf0\x46\xea\x76\x63\x1f\xde\x5c\x10\xb0\x0f\x6f\xd5\x63\xf0\xc5\xe0\xa8\x3d\xe0\x8b\xc1\x51\x7b\xc0\x17\x13\x41\xef\x81\xfd\x0c\xa9\xc6\x8d\xed\x78\xff\x39\x86\xfd\x4c\xf3\x2a\x10\x56\x2e\x8d\x03\xfb\x19\x62\xae\x8d\x41\xb9\x06\x8e\x1b\x17\xf2\x61\x88\x82\x0b\xf9\x20\xe5\xb4\x71\x21\x1f\x2e\x9b\xb8\x90\x2b\xf2\xdb\xb8\x90\x0f\x17\x6d\x9c\xc6\xa7\x4b\x0e\x4e\xe3\x3f\x93\x30\x4e\xe3\xd3\x05\x08\xa7\xf1\x59\xfc\x1d\x9c\x70\xf1\x77\xb7\x0d\x7e\xc7\x71\xe3\x34\x2e\x35\xb2\x27\x9c\x30\xd8\x65\x4f\x34\xc4\xf6\x12\x2e\xe4\x5a\x58\x6d\x5c\xc8\x97\xfd\x89\x0b\xb9\xc4\xc5\xc6\x85\x7c\x81\x67\xf7\x07\x27\xec\xa8\xfb\xd0\x10\x7b\x67\x38\x94\x1f\x97\x15\x1c\xca\xcf\xb0\x06\xbc\x62\xd0\x3c\x6c\x72\x40\x07\xa7\x8c\x8d\xd1\xc3\xe3\xac\xf1\xe1\xe0\x9d\x3d\x13\x2f\x15\x17\x3c\x4c\x20\x74\x15\xdc\x98\x40\x04\xf4\x25\x1b\x13\x88\x00\xb3\xbc\x31\x81\xf0\x6b\xee\x1b\x13\x88\x9f\xf9\x0c\x13\x08\x33\x49\x7b\xc1\x09\xc3\x41\xef\x05\x27\xec\x7b\x84\xd1\xc3\xcf\x1c\x89\xd1\xc3\xfb\x78\x15\xbc\x54\x5c\x52\x31\x7a\x48\xed\xf7\x74\xc9\x1b\x83\x72\x3f\x6f\xbe\xf1\x80\xf8\x89\xce\x2e\x38\x6a\x29\xda\x20\x78\x5f\x23\x0d\xcc\xcb\x93\xb7\x82\x79\x79\xf2\x36\x31\x2f\x4f\xae\x0e\x98\x97\x27\x5f\x5b\xcc\xcb\x93\x0f\x0c\xf3\xf2\x14\x3d\x56\x28\x59\x43\xe5\x77\xd4\x8e\x79\x79\x72\x9a\xc0\xbc\x3c\xb9\x36\x61\x5e\x9e\x8c\xa4\x30\x2f\x4f\x2e\x08\x98\x97\xbb\x4f\x6c\x63\x5e\x5e\x9c\x34\x30\x2f\x2f\x4e\xc9\x98\x97\xbb\x87\x6c\x63\x5e\x5e\x8d\x76\x31\x2f\x77\x6b\xf9\xc6\xbc\x5c\xab\xfd\x8d\x79\xb9\x72\xb9\x8d\x79\xb9\x16\xfd\x1b\xf3\xf2\x02\xeb\xb5\x31\x28\xaf\x46\xa6\x18\x94\x57\xd8\xea\x8d\x41\x79\x73\x9a\xc7\xa0\xdc\xbc\xff\xc6\xa0\xbc\xb9\xba\x63\x50\xde\x96\x67\x6e\x4a\xb4\x08\x83\x72\x95\x05\x07\x83\xf2\x06\xab\x77\x30\x28\x6f\x80\xdb\x83\x41\x79\x83\xd7\x3e\x1a\x94\xa3\x56\x38\x1a\x94\xa3\x17\x38\x1a\x94\x13\x77\x1c\x0d\xca\x49\x39\x1d\x0d\xca\x79\xee\x07\x83\x72\xb7\x9d\x1f\x0c\xca\x07\xcf\xe8\x60\x50\x3e\x78\x1d\x0e\x06\xe5\x03\x29\xdd\xc1\xa0\x7c\x54\x6b\x80\xdb\xe5\x49\x1f\x0c\xca\x07\xba\xf2\x83\x41\xf9\xe0\x15\x3b\x18\x94\x0f\xf8\xcd\x83\x41\xf9\x60\x14\x1c\x0c\xca\xdd\xca\x7e\x30\x28\x1f\xbc\x62\x07\x83\xf2\xc1\x88\x3c\x18\x94\xfb\x39\xcd\x83\x41\xf9\x40\x7e\x78\x30\x28\x1f\xd1\xdf\xd9\x3e\x7a\x37\xc0\xed\xfe\xd4\x00\xb7\x0b\x25\x76\x02\xdc\x6e\xf3\x9a\x70\xbb\xf6\x35\xe9\x21\x3f\x2f\x7b\x5e\xf9\x5b\xae\x42\x7a\xe8\x83\x24\x3a\xa4\x87\xbe\xcf\x63\xf0\xd3\xc4\x9b\x87\x1c\x90\x7b\xe4\xce\x2b\x7f\x7b\x28\xc1\xdf\x42\xa2\x1c\x72\x40\x6b\x7b\x0c\xfe\xf6\x58\x03\xfc\xed\xf1\xce\xe0\x6f\xb7\x25\xf8\xdb\xed\x7d\xe2\x77\x03\xf9\x72\xc8\x01\x6d\xef\x9a\x1c\xd0\x01\xe5\x1c\x72\x40\x07\x4a\xf3\x90\x03\xda\xbc\x0f\x87\x1c\xd0\x61\xcc\x1f\x72\x40\x07\x34\x76\xc8\x01\x9d\x9f\x6b\xc2\xdf\x42\x5c\x9c\x08\x7f\x9b\xfc\x1d\x9a\xec\x6c\x7d\xf0\xb7\xc9\xdf\xa1\xc9\x06\x1d\x9d\x08\x7f\xcb\xfc\x72\x22\x9a\x6c\x02\xb2\x13\xd1\x64\x93\x43\x38\x11\x4d\x36\xd3\xe7\x89\x68\xb2\x49\x6d\x9e\x84\x26\x9b\x28\xf9\x24\x34\xd9\x20\xed\x93\xe0\xa7\xa1\x7e\x4e\x92\x9f\xf6\x4c\xf8\xe9\xe4\x31\xfc\x6e\xc2\xef\x4d\xc9\x27\x61\x85\x83\xe4\xfc\x24\xac\x70\x1c\xac\x09\xea\x9a\x88\xe8\x24\xe4\xda\xbe\x62\x09\xea\xfa\xb3\x74\x9b\xee\x16\x93\x73\x41\x55\x7f\xb3\xa5\xc5\x31\x06\xc8\x05\x55\xdd\xbd\x75\xe7\x82\xaa\xee\x67\xd8\xcf\x05\x55\xdd\x4f\xb4\x9f\x0c\x77\xcd\xe4\x7d\x32\xdc\xb5\x8f\x28\xc3\x5d\x03\x10\x4e\x86\xbb\xb6\x5b\x32\xdc\x75\xf4\x18\xdc\x35\xcb\xc3\xc9\x70\xd7\x76\xe7\x05\x55\xfd\x25\xf2\x3e\x17\x54\x75\xb7\xc2\x9c\x0b\xaa\xba\x1f\x8f\x3f\x99\xf6\x11\x6b\x9f\x2c\x77\x4d\x8b\x32\x9c\xb0\xa5\x02\x3f\x0d\xd7\x7a\x0a\xfc\x34\xc9\x8d\x53\x90\x95\xb3\x4d\xf3\x14\xf8\xe9\xe3\x31\xf8\x69\x16\x84\x53\xe0\xa7\x91\x0a\x9e\x82\xed\x7f\xb6\x84\xed\x3f\xa9\xd4\x53\xb0\xfd\xaf\x1e\xc3\xda\x9f\x85\xe4\x14\xac\xfd\x7d\x01\x2e\xca\xe9\x0d\x52\xea\x5c\x94\xd3\x1b\x29\xca\x73\x51\x4e\x6f\xc7\x12\xdc\x35\x91\xf7\xa9\xd8\x0e\x11\x57\x9d\x8b\x64\x7a\x27\xe6\x3a\x17\xc9\xf4\x3e\x3d\xf3\xde\xe7\x70\x9a\xb8\x48\xa6\x7f\x30\xd9\xe7\x22\x99\x2e\xcf\x7c\x2e\x92\xe9\x87\x64\xe6\xb9\x48\xa6\x1f\xef\xfa\x22\x99\x7e\x88\x29\x0f\x7e\x0d\x0f\xcc\xf9\xc1\xaf\xe1\x21\x9e\x3e\xf8\x35\xf8\xbd\x93\x83\x5f\x83\xdf\x42\x39\x0d\xdb\x21\xb8\xf2\x83\x5d\xb9\x9e\x05\x07\xbb\x72\x9d\x0f\x0e\x76\xe5\x5a\x8a\x1e\xec\xca\x55\xa4\x1e\xec\xca\x95\x73\x1e\xec\xca\xfd\x4a\xc4\x61\xfb\xd0\x63\xfb\xb0\x2b\x0f\x4e\xd0\xd8\x95\x07\x27\x3e\x3c\xc9\xdf\x66\x09\xee\xda\x9e\xc0\x93\x5c\x67\xb6\x83\x27\x79\x84\x7f\x3f\x78\x92\x67\xa7\x33\x3c\xc9\x45\x5c\x07\x4f\xf2\x02\xc9\x77\xf0\x24\x2f\xbe\xc5\x78\x92\xe7\xe3\x55\x32\xc7\x78\x46\x78\x92\xfb\x71\xfc\x83\x27\x79\x71\xfa\xc4\x77\x3c\x3b\x3e\xf1\x1d\x2f\xc1\x33\x3f\x4a\xf4\x12\xbe\xe3\x85\x10\xe5\xe0\x3b\x5e\x82\x77\x06\xaf\xed\xd8\xc5\x77\xbc\xe2\xcc\x76\xf0\x1d\xaf\x5e\x13\xdf\xf1\x46\x90\x77\xf0\x1d\x6f\x48\x21\x0f\xbe\xe3\x6e\x50\x3f\xf8\x8e\x8b\x72\x0e\xbe\xe3\xcd\xe5\x0f\xdf\x71\x9d\xe0\x0e\xbe\xe3\x6e\x50\x3f\xf8\x8e\xeb\x19\x77\xf0\x1d\x6f\xf6\x0b\xbe\xe3\xfd\xf5\x4c\xbe\x45\x89\x72\xe9\xe0\x3b\xde\x91\xbd\x1d\x7c\xc7\xbb\xf3\x20\xbe\xe3\xdd\x79\x10\xdf\xf1\x9f\x31\x8f\xef\xf8\x70\xe1\xba\x08\x28\x0f\x47\xc8\x44\x73\xbe\x7e\x8f\xb8\x38\x13\xaa\xdc\x81\x3c\xa1\xca\x8d\xb2\x26\x54\xb9\x11\xd1\xc4\xb6\xc6\x0e\x9c\x58\xca\x93\x5d\x3f\x13\x39\xba\x2f\xce\x44\x8e\xfe\x73\x9b\x48\xce\x5d\xb3\xf9\x0a\xee\x44\x36\x75\x48\x01\x4d\x57\x62\x52\x40\xd3\xb5\x9e\xaf\xe0\x7e\x30\xa1\x87\xaf\xe0\xfe\xc4\x24\xa4\x87\x56\xf3\x77\xc8\xd1\x8d\xb9\x48\x0f\xa9\x30\x3c\xa4\x87\x94\xd2\x1d\xd2\x43\xdb\x75\x92\xf4\xd0\x76\xe9\x20\x3d\xa4\x2e\xf2\x90\x1e\x92\x57\x3b\xa4\x87\xb6\xbd\x44\x7a\xe8\x67\xad\x27\x3d\x74\x92\xc7\xb0\x7c\x31\x1a\x24\x3d\x74\xf0\xb8\x3d\x4b\xce\x9b\xfa\xf0\x6b\x08\x4e\xfa\x4b\xce\x9b\xbb\xc6\xaf\x21\x54\xcf\x84\xd7\xce\x9e\x09\xaf\xed\xf2\x80\x27\x43\x00\xc4\x1d\x3c\x19\x82\xcf\x08\x4f\x86\xf7\xf5\xcc\xcb\xd5\x25\x7b\x09\x4f\x86\xf4\xf3\x3b\xb5\xce\xb4\x1d\x4f\x86\x34\x2c\xc1\x79\x03\xf0\x0e\x9e\x0c\x92\x3d\x07\x4f\x86\x04\xe8\x3f\x78\x32\x24\x97\x46\x3c\x19\x12\xf0\xf9\xe0\xc9\xa0\x20\xef\xe0\xc9\x20\xae\x39\x78\x32\x24\x23\x53\x3c\x19\x32\xe0\xf6\xe0\xc9\x90\x87\xd7\xc4\x17\x64\x79\x4d\x7c\x41\x7c\x2a\xf8\x35\x94\xe1\xef\xd0\x41\x0f\xef\x1a\x1d\x74\xb7\x3e\xb8\x64\xe3\x7e\xfc\x1a\xba\x67\xb2\x45\xa8\xb3\x51\xf9\xe0\xd7\xd0\x49\x24\x1d\xfc\x1a\x4c\x82\x1e\xfc\x1a\xba\x23\x04\xbf\x06\x3f\x1a\x76\xf0\x6b\xe8\xdd\x12\x5c\x32\x29\xca\x83\x5f\x43\x9f\x1e\x83\x4b\x1e\x96\xe0\x92\x5d\xe2\xf0\x6b\xe8\xe8\x59\x0e\x7e\x0d\xdd\xc5\x1e\xbf\x06\x53\xb0\x07\xbf\x86\x4e\x52\xeb\xe0\xd7\xd0\xf9\x88\xeb\xc1\xaf\xa1\xdf\xc8\x3b\x3c\xf8\x35\xf4\x61\x09\x0d\xf1\x0d\x58\xc2\x83\x5f\xc3\xbc\xd4\x64\x78\xf0\x6b\xf8\xa2\x67\xde\xf6\x9d\x9f\xd2\x6d\xdf\xb9\xd3\x7c\x78\x30\x65\x20\x12\x0e\x0f\x79\x25\x16\xd8\xf0\x90\x57\xda\xc7\x33\x6f\xfb\xce\x6b\x7d\x83\x6b\xfa\xbb\xc9\xb1\x87\xd2\x47\xc9\x7b\xb9\xed\x3b\x37\x7f\x12\x1e\xf2\x4a\xe7\xaa\x1c\xc2\x43\x5e\xe9\xbc\x94\xc8\x2b\xed\xc3\x99\xe4\x95\xf6\xb6\xf4\xf2\xbb\x42\x29\x52\x7b\xa0\x64\xfb\x1a\x25\xda\x17\xbd\x66\xa1\x06\x5a\x14\x6c\x5f\xa6\xd4\x38\x36\x29\xd9\x3e\xeb\xa3\x7d\xcd\x6b\xda\xbe\xdf\xf1\xb8\x08\x0f\xe9\xa8\xbd\x69\x7a\xb0\xe9\xde\x26\x34\xfa\xf1\xc6\xd4\x17\x73\xe6\x6b\xd3\x2b\x25\xb8\xe4\x4e\xc7\xe3\xe5\x10\x3a\x1d\x8f\x97\x43\xb8\x2b\x55\x78\xf0\x72\x08\x77\x85\x0b\x0f\x5e\x0e\xa1\xf9\x3b\x68\xf4\x4e\x7d\x5a\x99\xfb\xc0\xb4\x32\xff\x39\x86\x57\x45\xa7\x73\xb5\x32\x4f\x5e\x05\xaf\x8a\xcc\xa3\xd5\xca\xbc\x78\x0c\x2e\xb9\xd0\xb9\x78\x40\xa4\xe2\xbd\xc0\x25\x57\x7e\x87\x95\x39\x93\x46\x78\xb4\x32\x7f\xb8\x8a\xfe\x10\x9d\x5e\xc2\x1f\x82\x4f\xba\x86\x07\x7f\x88\xf2\xf8\x3b\xfc\x21\x1e\x1e\x98\xfe\x10\x0f\xfd\xa2\x3f\x84\x43\x57\x7f\x88\xed\x35\xe1\x99\xb7\xc7\xe0\x68\xed\x25\xfd\x21\xec\x4f\xfd\x21\x2a\x83\x40\x7f\x88\xe2\x55\xb0\x0f\xff\x2c\xc1\xd1\x76\xce\xd4\x1f\x62\x70\xd7\xfa\x43\x4c\xea\xc3\x1f\xa2\x0d\xee\x13\x7f\x88\xe6\x4b\x8c\x07\x44\x6f\xd4\xae\x07\xc4\xcb\x33\xc2\x03\x62\x38\xc8\xf1\x80\x18\x83\xde\xc5\x03\x62\xfc\x5c\x13\x4d\xef\xf6\x2a\x68\x7a\x7d\x71\xf4\x80\x18\x5e\x05\x0f\x88\xce\x0b\xa0\x07\x44\xa3\x3f\xf1\x80\x20\x48\x08\x0f\x1e\x10\xb3\xd3\x22\x3c\x20\x66\xa7\x06\x3c\x20\xa6\xe3\x13\x0f\x88\xd9\xa8\x0f\x0f\x08\xbe\x49\x13\x1e\x3c\x20\x66\xf3\x2a\xf0\xb7\xf6\x3c\x1e\x10\xdf\xa4\x0d\xfa\x3c\x4c\xef\x05\x9f\x87\xc9\xe8\xd1\xe7\xa1\xf3\xae\xe8\xe5\x30\x38\x86\x97\xc3\xfa\xe8\x17\xbc\x1c\xf8\xaa\x5c\x78\xf0\x72\xc0\xc0\x27\x3c\x78\x39\xac\x49\x4f\xe0\xe5\xc0\xb6\xec\xf0\x90\x72\x5a\xc3\x33\xd1\xe6\x4e\x5a\x44\xca\x09\xbb\x9b\xf0\x90\x72\x5a\xb6\x8f\x94\xd3\x1a\xf4\x8b\x7e\xe5\xcb\xab\xd0\x86\x8f\xb6\xeb\x57\x3e\x6c\xc3\x86\x05\xa6\x0d\xe4\x8e\xce\xa2\x3e\xc4\x73\x4f\x66\x14\x20\x9e\xc3\x16\x35\x3c\x88\xe7\x1e\xfb\x13\xf1\x5c\xf0\xdd\x44\x3c\x17\x9a\x25\x04\xb8\x3e\x15\xc4\x73\xc1\xe9\x0c\xf1\xdc\xcf\xac\x81\x78\x2e\x38\xe6\x11\xcf\x85\x46\x1b\x10\xcf\xb1\x85\x3a\x3c\x88\xe7\xc2\xf1\x77\x1b\xa6\xd7\x63\x97\x7c\x79\x5d\x56\x10\xcf\xa1\x19\x0b\x0f\xe2\x39\x30\x79\x78\x30\x65\x48\x1f\xcf\x1d\x53\x86\x64\x5f\xe3\x49\x9e\x3e\x66\x22\x3c\xc9\xf9\x52\x7f\x78\x30\x6c\x48\xce\x83\x18\x36\xa4\xfe\x3b\x22\xb8\xf0\xe0\xe5\x90\x1c\x04\xd8\x95\x27\x87\x12\x5e\x0e\xe9\xf3\xc6\xe0\x68\x7d\xb4\x78\x39\xa4\x8f\xee\xc4\xcb\x21\x2d\x5e\x5b\xbc\x1c\x52\xf7\x18\x1c\xf4\xe4\x9a\x78\x39\xa4\xc5\x30\xc3\xcb\x21\x39\x3c\xf1\x72\xa8\x91\xc6\xe2\xe5\x50\x83\xbf\x4b\x1c\xe3\x5e\xf0\x72\xa8\xae\x8c\x78\x39\xd4\x97\x21\x88\x97\x43\x8d\x74\x0b\x5e\x0e\x00\xa7\xf0\xe0\xe5\x50\xb3\x67\x0e\xce\xe4\x11\xe1\xe5\x50\x5d\xc1\xf1\x72\x68\x87\x16\xe9\xe5\xe0\xba\x8c\x97\x43\x73\xe5\xc7\xcb\x81\x7d\x5b\xe1\xc1\xcb\xa1\x1d\xea\xc3\xcb\x01\xa8\x14\x1e\xbc\x1c\xda\xf6\xd8\x6d\x5f\x0f\xb4\x1d\x2f\x87\xe6\xb4\xa4\x97\xc3\xe0\x41\xeb\xe5\xd0\xe8\x09\xbc\x1c\x46\x67\xf0\xe0\xe5\x30\x9c\x30\xf1\x72\x18\x4e\x98\x78\x39\x0c\x27\x37\xbc\x1c\x46\xf7\x4c\xb8\xdd\x41\x1b\xf0\x72\xf8\x99\x3e\xf1\x72\x18\x83\x5e\xc2\xcb\x01\x87\xe4\xf0\xe0\xe5\xc0\xb6\x87\xf0\xe0\xe5\x30\x5c\x9c\xf0\x72\x60\x03\x70\x78\xf0\x72\x18\x4e\xfa\x78\x39\x7c\x2e\x7f\x58\x99\x7f\xde\xe7\x54\xb7\x4b\xfb\xb0\x32\xff\x1c\x4b\x13\xee\xb3\xf0\xdc\x27\xdc\xa7\x83\x1c\x2b\xf3\xe5\x74\x8d\x95\xf9\x3a\x5e\xe5\xb6\xe1\x27\x8e\xc3\xca\x1c\x25\x51\x78\xb0\x32\xff\x89\x73\xb0\x32\xff\x89\xea\xb0\x32\x3f\xf6\xa7\x7e\x0d\x85\x91\xac\x5f\x43\xa6\xed\xfa\x35\x64\xea\xd3\xaf\xc1\xc5\x5e\xbf\x86\xcc\x7d\x7e\x72\x9f\x3c\x31\xfc\x1a\xf8\xfc\x7e\x78\x3e\xb9\x4f\x7a\x02\xbf\x86\x27\xd3\x5a\xfd\x1a\x82\x57\x41\xa0\xea\x48\xd6\xaf\xc1\x29\x44\xbf\x06\x17\x27\xfc\x1a\x48\x5c\x85\x07\xbf\x06\x10\x57\x78\xf0\x6b\x60\x07\x41\x78\xf0\x6b\x78\x7f\xce\x84\x00\x74\x12\xc6\xaf\xe1\x75\xc2\xc4\xaf\xe1\x6d\xd6\x00\x01\xe8\x28\x58\x10\x80\x06\x48\x78\x39\xbc\x95\x36\x60\xd8\xf0\x3a\xea\x30\x6c\x78\x9d\x5f\x30\x6c\x78\x1d\x59\x0b\x82\xb3\x7a\x0c\x82\xd3\x91\x85\x97\x79\x76\x24\x63\xd8\x90\x7d\x46\x18\x36\x64\x47\x2b\x86\x0d\xd9\x71\x8d\x61\x43\x71\xbc\x60\xd8\x50\xac\x1d\xbf\xf2\xd2\xb9\xcf\xad\x78\xd5\x63\x88\x57\x5d\xaa\xf0\x2b\x27\x5b\x14\x9e\x8b\xc6\x7a\xf5\x3e\x2f\x1a\xeb\xd5\x7e\xc1\xcb\xbc\x1e\x7a\x02\xbf\x72\x9c\x0a\xc3\x83\x5f\xf9\x55\xe6\xff\xf9\x29\x19\x2b\xf3\xfe\xd0\x3c\xac\xcc\xd9\x5c\x1a\x1e\xac\xcc\xfb\x43\xe5\x5a\x99\x1b\xe3\x61\x65\xde\x8d\xc0\xb0\x2b\x87\x43\x09\xcf\x05\x55\xfd\x73\xca\xba\xa0\xaa\x7f\x3f\xb7\xb9\x29\x59\xdf\xed\x6a\x84\x2f\x21\x5c\x50\xd5\x0f\xd3\x6e\xb8\xa0\xaa\x9f\x4b\xe9\x87\x80\x58\x2f\x10\xa7\x06\xc4\x7a\x6c\xbd\x0e\x41\x4b\xf2\xe3\xef\xe0\x06\xaf\x5c\x3b\x04\x2d\xc9\x99\x30\x03\x9e\x0c\x08\xbb\x43\xc0\x77\x81\xef\x65\x84\x80\xef\x02\x26\xf2\x21\xe0\xa6\xf0\x32\x69\x04\xdc\x14\x5e\x56\xe9\x80\x9b\xc2\x7b\xa8\x1d\x37\x05\x3e\x5a\x1e\x02\x6e\x0a\x85\xb8\x31\xe0\xa6\x50\x6c\x11\x6e\x0a\x25\x72\x2f\xb8\x29\x94\xe8\xef\x60\xf5\x58\x8e\x02\x6e\x0a\x85\x65\x25\xe0\xa6\x50\x5e\x7f\x77\xef\xba\xdc\xe4\x46\x08\xec\x41\x2a\xc9\xfa\x60\xfc\x2e\x15\x13\x02\x4e\x0b\x6c\x77\x0e\x01\xa7\x85\x72\x45\x70\x21\x60\x26\xde\x78\xe1\x02\x4e\x0b\x46\xd0\x01\xa7\x05\xcc\x8b\x42\xc0\x69\xc1\x08\x3a\xbc\xb2\x7a\xf4\x12\x4e\x0b\x6d\x78\x26\xac\x1e\x91\x70\xc0\x69\xa1\x0d\xeb\xeb\x30\x70\xf4\xa7\x4e\x0b\x8f\x67\xa2\x02\xf5\xf9\xe9\xb4\xf0\x58\xc2\x71\xda\xa7\xa9\xd3\xc2\x63\xed\xd0\x5e\x97\xd1\x0c\x01\x33\xf1\xb9\xb9\x17\x5c\x18\x26\xe8\x2f\xe0\xc2\x30\x37\xf5\xe1\xc2\x30\x37\x35\xe8\xb4\x40\x3c\x1d\x70\x5a\xe0\x03\x58\x21\xe8\xb4\xc0\xf4\x19\x74\x5a\xc8\xf4\x92\x4e\x0b\x20\x92\xa0\xd3\xc2\xf6\x4c\x9c\x16\x16\xe3\x05\x57\x70\xac\x85\x42\xc0\x15\x7c\x2f\xeb\x43\xc9\x0a\x1e\x0a\xb8\x30\xec\xcd\x53\xd1\x85\x21\xd1\x3e\x5c\xc1\x4f\xa5\x3e\x5c\xc1\xcf\xe4\x49\xeb\xd0\x40\x5c\x1c\x90\xe0\x85\x4a\xcf\x23\xc1\xbb\xe2\xab\x5f\x25\x68\xaf\x42\x2f\x25\x69\x2f\xee\x05\x09\x1e\xfb\xd2\x42\xd0\xa1\x81\xe8\x33\xe8\xd0\xc0\x44\x14\x90\xe0\xa1\x5d\x08\x41\x1b\x06\x96\xcd\x80\x04\x2f\x54\x6b\x40\xae\xca\xc2\x1c\x90\xe0\x05\x82\xb5\xa0\x0d\xc3\xe0\x77\x48\xf0\x42\xe3\x77\xda\x30\xb0\x3c\x04\x24\x78\x81\xc5\x3e\x68\xc3\xc0\xb4\x1b\xb4\x61\xf0\x89\x69\xc3\xe0\x88\xd4\x86\xc1\xb7\x11\x09\x1e\xa2\x80\x10\x90\xe0\xa1\xcc\x0a\x01\x09\x5e\xaa\x1e\x83\xd6\xf3\x0d\x40\x82\x67\xd8\x1a\x90\xe0\x25\xe2\xf7\x80\x04\xcf\xf0\x33\x20\xc1\x4b\xd3\x12\xb4\x1e\x8b\x45\x40\x82\x97\xfa\xef\x78\x5c\x84\x80\x3a\x2f\x75\x7f\x06\xe3\xe7\x4b\x85\x3a\x2f\x41\x16\x04\x1c\x1a\x92\x8d\x2d\xa8\x5c\x01\x40\xe1\x42\xa5\x92\xec\x5c\xdc\x1b\x92\x1d\x88\x7b\x43\xb2\x73\x71\x6f\x30\x98\x0f\xb8\x37\xa4\x61\x0d\x36\x9d\xe1\x89\x7b\x43\x66\xe5\x0f\x38\x34\x14\x6b\xaf\x28\x60\xad\xaf\xa2\x80\x05\xfc\x05\xdc\x1b\x70\x51\x0b\x01\xf7\x06\x1c\xc8\x42\xc0\xbd\x01\xc9\x51\x08\xb8\x37\x74\xa2\xd6\x80\x7b\xc3\x78\xfc\x5d\xe7\x4c\xeb\x1b\x94\xb8\x6b\xdc\x1b\x3a\xb1\x6f\xc0\xbd\x61\xbc\xfe\x6e\x71\xa6\xf5\x6d\xae\x49\x4f\xe0\xde\xd0\x59\x8e\xc2\x85\x4a\x65\xb8\x3c\x5c\xa8\x54\x86\xcb\x03\xce\x0e\x1d\x60\x1f\x70\x76\xe0\x83\x31\x21\xe0\xec\xc0\x76\xd9\x10\x70\x76\x98\x4e\xc9\x38\x3b\x4c\x07\x2b\xee\x0d\xc7\x69\x1e\xf7\x86\xe3\x4b\x85\x7b\xc3\x69\x9e\x09\x73\x97\xad\x01\xfa\xaa\xf0\x4a\xe3\xde\x70\xb2\x67\xc2\xdc\x35\x8e\xe1\xde\x70\x9c\x68\x71\x6f\x38\xc4\x78\x01\xf7\x86\x43\x04\x16\x70\x6f\x38\x4e\x05\xb8\x37\x1c\x5f\x3f\xdc\x1b\x4e\xa5\x97\x70\x6f\x10\x22\x07\xdc\x1b\x0e\xc4\x53\xc0\xbd\x01\x1b\xf7\x10\x70\x6f\x38\xd9\x1a\x50\xb9\x2e\x7a\x10\xf7\x86\xe3\x0b\x87\x7b\xc3\x29\x5e\x93\xf6\x39\xb5\x22\xc1\x0b\x2e\x47\x48\xf0\x7e\xa6\x02\x24\x78\xc1\xb1\x34\xa0\xe7\x88\xea\xc2\x60\xeb\x7c\xa6\x27\x90\xe7\xbd\xc4\x5c\x01\x79\x5e\xf4\xa9\x20\xcf\x8b\x2e\x94\xc8\xf3\x7e\x26\x06\xe4\x79\xa9\xf9\x3b\xb6\xce\x37\x46\x08\xf2\xbc\xe4\xe4\x86\x3c\x2f\xb9\x88\x22\xcf\xcb\x80\xf7\x70\x31\x4f\x2d\xaf\xc7\x16\x25\x6b\xd8\x10\x64\x9e\x79\x38\x46\x7f\x22\xcf\x2b\x2f\x6d\x40\x82\x57\x7c\x6f\x27\x14\xdc\xb4\x04\x05\xb7\xfd\x1d\x32\x49\x9f\x1f\xf2\xbc\x0a\x39\x11\x90\xe7\x55\x30\x4f\x40\x9e\x57\x89\x76\xc3\x94\x82\xa3\xb5\xc8\xf3\xf0\xf7\x08\x01\x79\x5e\xfb\x78\x7e\xc8\xf3\xda\x4f\xed\x52\x70\x96\xa0\xe0\x26\xb5\x23\xcf\x6b\x3e\xf7\x4f\x0a\x8e\xda\x91\xe7\xb5\x45\xbf\x20\xcf\x1b\xbe\x0f\xc8\xf3\xd8\xed\x19\xc2\xc7\x67\xec\x92\x67\x62\xd1\x1a\x19\xd7\x48\xf7\x06\x68\x3a\x7c\xd2\x73\xdc\xf5\x27\x3d\xe7\x35\xa5\xe7\xbc\x33\xb6\xa4\x3b\x47\x62\xdf\x30\x7f\x37\x4a\x0e\x38\x3b\xf0\x55\x8a\x10\x70\x76\x98\x4e\x6e\xb8\x37\x4c\x22\xe1\x80\x7b\xc3\x84\x11\x0b\xb8\x37\xe0\x1a\x15\x02\xee\x0d\x9f\x5d\x86\x7b\xc3\x72\xad\xc7\xbd\x61\x1d\xaf\x09\xeb\x05\x40\x0f\xb8\x37\x2c\xe3\x23\xdc\x1b\x70\x6b\x0e\x01\xf7\x86\x65\x9c\xb3\x64\xbd\x68\xde\x82\xf5\x72\x32\xc5\xa3\x6e\x19\x69\xe0\xec\xb0\x8c\x50\x70\x76\xc0\xb6\x3a\x04\x9c\x1d\x96\xd1\x12\xce\x0e\xcb\xb5\x10\x67\x07\x6c\xb9\x43\xd8\xb0\x7a\xf0\xe8\x61\xc3\xea\x19\x6b\xe3\xfa\x70\x5c\x2c\x70\x7d\x38\x00\xc3\x80\xeb\xc3\xf1\x11\xe1\xfa\x70\x7e\xea\xc3\xa1\xd5\x17\x00\x41\x5e\xb0\x3f\x11\xe4\xfd\xc4\x01\x08\xf2\x02\xc0\x30\x20\xc8\xcb\x81\x1a\x10\xe4\x65\x87\x0b\x82\xbc\x0c\xfd\x11\x10\xe4\x25\x23\xc5\x8b\x64\x5a\x76\x79\xb8\x69\xa5\x96\x9d\xd8\x11\xe4\x65\x97\x2a\x04\x79\xd9\x65\x05\x41\x1e\x9f\x92\x0f\x01\x41\x5e\xf2\x39\x20\xc8\xcb\x90\x44\x01\x41\x5e\x22\x99\x12\x10\xe4\xf1\x79\xfa\x10\x10\xe4\x55\xa2\xac\x17\x41\x1e\x3a\x91\xf0\x22\xc8\x43\x27\x12\x5e\x04\x79\x95\x09\xf3\x45\x90\x87\x62\x3a\xbc\x08\xf2\x2a\x13\xfb\x8b\x20\x0f\x75\x73\x78\x11\xe4\x55\xe8\x81\x17\x41\x5e\x65\xe2\x7b\x1f\x08\x2b\x52\x55\xef\x23\x61\x15\x29\x29\x38\x9c\x94\x10\x1c\x12\x29\xbe\x88\xf5\x7a\xf0\x5e\x24\xac\xb8\x26\x82\xbc\x0e\xe1\xf1\x22\xc8\xeb\x2c\xb7\xaf\x82\x3c\xa6\x82\x57\x41\x1e\xc0\xf7\x55\x90\xf7\x79\x15\x48\x29\xde\xb8\x57\x41\x5e\xf7\x9a\x90\x52\x4c\x52\xaf\x82\x3c\x48\xb0\x57\x41\xde\xf4\x9a\x90\x52\xf0\x9b\x2f\x82\x3c\x76\x9b\x85\x17\x41\xde\x80\xed\x7c\x11\xe4\x0d\x22\xb7\x17\x41\x1e\xe9\xfc\xf0\xe2\xe5\x30\x3e\xda\x8e\x97\xc3\x98\x1c\x43\xac\x37\x60\xce\x5f\xc4\x7a\x63\x71\x67\x8a\xf5\xec\x5d\xc5\x7a\x2c\x40\xaf\x62\xbd\xe2\x31\x48\x29\xe6\x82\xf7\x95\x94\xf2\x4c\x36\x93\x6f\xeb\x63\x33\x39\x93\xfe\x8b\xe8\xee\x5b\x5e\x85\x4d\xe1\x9b\xbe\x46\x74\xf7\x91\x77\x79\x11\xdd\x2d\xc2\x82\x17\xd1\xdd\x62\x81\x7d\x11\xdd\x2d\x28\x8e\x17\xd1\x1d\x5f\x7a\x0f\x2f\xa2\xbb\xed\x93\xc6\x78\x01\x97\x9e\xf0\x62\xbc\xb0\x21\x46\x5f\x8c\x17\xf6\xe3\x35\x3b\xc7\xe8\x17\x8c\x17\x76\xf0\xd8\xe4\x98\x77\xf6\x71\x8c\xd6\x62\xbc\x70\x37\xbf\xfc\xd9\x29\xf9\x8d\x72\x6e\xde\x8a\x9c\x1b\x37\x9d\xe4\xdc\xa8\x0e\x4f\x06\xb3\xa5\x2f\x9e\x0c\x87\xe9\xe5\xc5\x93\xe1\x66\x13\x7f\x95\xd0\x1b\xc2\x02\xbf\x78\x32\x1c\x6f\x0c\x4f\x86\xc3\x2b\xfd\x22\xba\xe3\x53\xf2\xe1\x45\x74\xf7\x14\xcf\x94\x73\x63\x40\x22\xba\x7b\xec\x78\x44\x77\x7c\xe9\x2c\xbc\x88\xee\x30\x13\x0a\x2f\xa2\xbb\xf0\x7a\x26\x9c\xdb\xeb\x99\x70\x6e\x24\xa0\x5e\x44\x77\x81\xd5\xfd\x45\x74\x17\x1a\xf7\x82\xe8\x2e\xb0\x9e\xbf\x88\xee\x02\xd1\xcb\xab\xe8\x8e\xf5\xfc\x55\x74\x37\x3d\x13\xce\x6d\x7a\x4d\x38\x37\x87\x92\xa2\x3b\x07\x9d\xa2\xbb\xcf\x7b\x81\x73\x9b\xd6\x00\xe7\xe6\x0b\x8e\xe8\xee\xf5\x05\x47\x74\xf7\xfa\x82\x67\x38\x37\x48\x94\x37\x23\x2a\xf4\xb5\x45\x90\x97\x59\xa5\x5f\x04\x79\x98\x57\x86\xf7\xc2\xa8\x5e\x21\x82\x5e\x04\x79\x7c\xb6\x2b\xbc\x08\xf2\x7e\xa6\x48\x04\x79\xb5\x79\x15\x04\x79\xf6\x8b\x82\x3c\x52\x32\x2f\x82\xbc\xe6\x80\xbc\x78\xa8\x37\x5f\x80\x8b\x87\x7a\x73\x4c\x28\xd6\xb3\xb5\x88\xf5\x7e\x26\x37\xc4\x7a\x9d\x85\xe4\x45\xac\x87\xff\x59\x78\x11\xeb\x75\xf8\xd4\x17\xb1\x5e\x67\x99\x7e\x2b\xa4\x1b\x11\xd1\x5b\x21\xdd\x20\x0b\x5e\x85\x7c\x4e\x28\x0a\xf9\xc8\x67\xbc\x0a\xf9\x88\xb2\x5e\x84\x7c\xdd\xbe\x46\xc8\xd7\x59\xa6\x5f\x84\x7c\xc3\x67\x8b\x58\x6f\x3a\xb2\x2e\x1e\xea\x33\x79\x95\x43\x89\xde\xbd\x78\xa8\x4f\x47\x6b\xc3\xc8\x96\xf8\xfd\xc5\x77\x81\x4f\x65\x85\x17\xdf\x85\xe5\x73\xc0\x77\x61\x41\x2a\xbe\x4d\x23\x5b\x8f\x69\x64\xcb\xbb\x82\xef\xc2\xfe\x2c\x49\x19\xd1\x4b\xf8\x2e\x9c\x4c\x8b\x14\xeb\xd9\x9f\x8a\xf5\xec\x4f\xc4\x7a\x21\x78\xd7\x8b\x12\xfd\x89\x58\x2f\xb8\x1c\x21\xd6\x33\x31\xf7\x22\xd6\x0b\x64\x22\x5e\xc4\x7a\xc1\xa7\x82\x58\x4f\x4e\xf8\x45\xac\x27\xb3\xfc\x22\xd6\x7b\x8f\x25\x68\x3d\x17\x58\xc5\x7a\x90\x21\xaf\x62\xbd\xea\x31\x68\x3d\x67\x8d\x0e\xad\x07\x8e\x7a\x11\xf2\x15\x97\x70\x85\x7c\xc5\x3b\x83\xd6\x73\x46\x51\xc8\x57\x68\x91\x42\xbe\xea\x7d\x1e\x8e\xf1\x8c\x10\xf2\x15\x17\x19\x84\x7c\x05\x32\xeb\x45\xc8\x57\x0c\x2e\x14\xf2\xf9\x4e\x2b\xe4\xf3\x19\x29\xe4\xfb\x7e\x47\x04\x17\x5e\x35\x7e\x4e\x2f\x68\xfc\xba\x93\x22\x1a\xbf\xe9\x74\x8d\xc6\x6f\xc2\x6f\xbe\x43\xdf\x55\x9a\x87\xc6\x6f\x3a\x31\xa0\xf1\xfb\x1e\xaf\xa2\x48\x8c\x6e\xc1\x20\x2f\x38\x69\x60\x90\x17\x7c\x60\x18\xe4\x05\x07\x1d\x06\x79\x66\x59\x5f\x0c\xf2\x82\xeb\x39\x06\x79\xc1\xf5\x1c\x83\xbc\x60\xd3\x31\xc8\x0b\x9f\xbf\x83\x69\xfa\xb8\x4f\x0c\xf2\x5e\x27\x6f\x5c\xf0\x92\x6d\xc7\x05\x2f\xd9\x9d\xb8\xe0\x99\xda\x7c\x71\xba\x4b\xcb\x6b\xc2\x26\x19\xe7\xe0\x74\x97\x9c\x22\x71\xba\x4b\xc6\x2b\x38\xdd\x25\xef\x1a\xa7\x3b\x73\xb5\x2f\x4e\x77\xc9\x97\x1f\xa7\xbb\xb4\xb8\x26\x4e\x77\xc9\x16\xe1\x74\x97\x8d\x30\x71\xba\xc3\xfa\x3e\xbc\x7e\x78\xc9\x68\xc9\x0f\x2f\x19\xd9\xf8\xe1\x25\xef\xd3\x0f\x2f\xfd\xdc\x27\x22\x31\x92\xb5\x2f\x1f\x5e\x12\xa8\xbd\x7c\x78\x69\x44\x8f\x1d\x4a\xb4\x1d\x21\xdf\xf0\xc5\x41\xc8\x37\x7c\x71\x10\xf2\x0d\x88\x84\x17\x21\xdf\x88\x9e\x79\xdb\x37\x9c\xa4\xf8\xf0\xd2\x70\x58\x23\xf2\x1b\xb0\xb2\x2f\x22\xbf\x91\xbc\x26\x74\x52\xe2\xae\x11\xf9\x8d\xc8\x13\x43\xe4\x37\x20\x20\x5e\x44\x7e\x23\x59\x3b\x1b\x8e\x7f\xee\x93\x0d\xc7\x4e\x8a\x88\xfc\xbe\xc7\xab\x40\xc5\xf8\xc4\x10\xf9\x1d\x17\x2e\x44\x7e\x7c\xb7\x2e\xbc\x88\xfc\x0e\x72\xb2\x17\x91\x1f\xfb\xcb\xc2\x8b\xc8\xef\x38\x7a\x10\xf9\x1d\x18\xd4\x17\x91\xdf\x71\x01\x42\xe4\x77\x48\x8c\xbf\x88\xfc\x8e\x4f\x0c\x91\xdf\x71\x5c\x23\xf2\x3b\xc3\x12\x54\xcc\xf0\x77\x50\x31\xd3\xda\xd9\x75\xeb\x78\xd9\x50\x31\x8e\x89\x0d\x15\xe3\x52\x85\xb3\x5e\x70\xd4\xe1\xac\xf7\xf3\x76\xe0\xac\x17\x5c\x9c\x70\xd6\x0b\xde\x19\xce\x7a\xc1\x49\x1f\x67\xbd\xe0\x52\x85\xb3\x9e\x59\x98\x17\xf7\xbc\xe8\xc4\x87\x7b\x9e\x82\x81\x17\xf7\xbc\x64\xd4\x8a\x7b\x5e\xea\x9e\x89\x1a\xca\xf8\x16\xf7\x3c\xd9\xdc\x17\xf7\xbc\x04\x53\x1f\x71\xc8\x33\xd3\x12\x71\xc8\x2b\x8c\xd6\x88\x43\x5e\x61\xb4\xc6\x47\xba\xa5\x52\x42\xf1\x74\x75\xec\x21\xe2\x90\x57\xe9\xcf\x88\x0b\x5e\x1d\x1e\x83\x52\xd9\x5e\x13\x4a\x65\x79\x4d\x28\x15\x50\x63\xc4\x05\xaf\xfd\xd4\x70\xef\x13\xf9\x61\x88\x38\xdd\x61\x61\x15\x22\x4e\x77\x23\xfd\x8e\x85\x7d\x88\x98\xe0\xf9\x02\x44\x4c\xf0\x06\x0c\x4e\xc4\x04\x6f\xd2\xf1\x11\x13\xbc\x0f\xe0\x1b\x31\xc1\x9b\x9f\xc7\xd8\xd0\x49\xfc\x17\x31\xc1\x9b\xcb\x6b\xc2\xa8\x6c\x7f\x07\xa3\xb2\xfd\x1d\xb4\x09\xd0\x25\xf2\x91\xa4\x4d\xb4\x14\x11\xd6\x6d\xeb\x43\x58\xb7\x49\xe5\x44\x84\x75\x78\x9d\x86\x88\xb0\x0e\x1f\xd4\x10\x11\xd6\x09\x17\x22\xc2\x3a\x01\x49\x44\x58\xb7\x89\x42\x22\xc2\x3a\xa1\x4b\x44\x58\x77\xaa\xc7\xd8\xd0\xc9\xd2\x11\x11\xcf\x9d\xed\x35\xd9\xb4\xf9\x7a\x2f\x90\x0c\xbc\x70\x11\x50\xe5\xb2\x12\x01\x55\xb2\x8f\x11\x50\x15\xa0\x69\x22\xa0\xea\xb5\x45\x00\x27\xbe\xb3\x1b\x22\xc0\x89\x2f\xf1\x85\x08\x70\xca\xc9\x33\x27\x25\xeb\x83\x48\x48\x9e\x79\xc1\x51\x06\x4b\x44\x10\x10\x46\x9a\x21\x82\x80\x70\x4f\x0e\x11\x04\x54\x89\xfb\x23\x08\xa8\xf2\x3a\x44\x10\x50\xed\x9e\x09\x91\x00\xdf\x1f\x41\x40\xc6\xcc\x11\x04\xd4\x98\x4c\x23\x08\xa8\x83\x95\x22\xae\x74\x3d\xfa\xbb\xc6\x31\x86\x3c\xae\x74\x9d\x08\x3a\xe2\x4a\xd7\x5f\xaf\x72\xdb\xd7\x87\x57\x81\x48\x70\x90\xe3\x4a\x67\x1a\x39\xe2\x4a\x37\x8e\x67\x02\xc2\x49\xda\x45\x5c\xe9\xc6\xe1\x9a\xb8\xd2\x4d\xd2\xc1\x31\x0b\xc2\x79\xa9\x32\x24\x83\x2f\x15\x8e\x75\xc3\x27\x8d\x63\xdd\x38\x96\x24\x12\x3c\x13\x22\x01\xbe\x3f\xea\x4a\x47\xc4\x17\x75\xa5\x23\xa5\x1d\x75\xa5\x3b\xd6\xc7\xce\xbe\xe2\x7d\x02\xd0\x7d\x62\xb8\xd2\x7d\x44\x91\x11\x57\x3a\xd3\xe4\x11\x57\x3a\xec\x69\x43\xc4\x95\x6e\x83\xf7\x22\xae\x74\xdb\x49\x0a\x57\xba\x9d\xe8\x79\x5c\xe9\x36\x4b\x63\xc4\x95\x6e\xb3\xa8\x45\x5c\xe9\x4c\xa8\x47\x5c\xe9\x54\xd5\x46\x5c\xe9\x54\xea\x46\x5c\xe9\xd4\x25\x47\x5c\xe9\x8e\xe3\x1a\x57\x3a\x97\x8e\x08\x02\xe2\x3b\xde\x21\x82\x80\xf8\x8e\x77\x88\x20\xa0\x87\x40\x2e\x82\x80\x9e\xca\x7d\x82\x80\x1e\x72\x1d\x11\x04\xc4\x57\xcb\x43\x04\x01\x05\xdb\x07\x02\x52\x2c\x1b\x41\x40\x11\x1e\x3d\x82\x80\xb0\xc3\x0d\x11\x04\xf4\x1e\xeb\x6b\x1c\xa3\x0d\x20\xa0\x68\x6b\x41\x40\xf1\xf5\x9a\xa0\x54\x9f\x18\x5b\x99\xa2\xa3\x15\x74\x14\x1f\xef\xe5\xb6\x2f\x06\xef\xf3\x50\xe2\x5e\x40\x47\x11\x26\x21\x82\x8e\x7e\x4d\x6b\xbf\x33\x25\x03\x9c\x22\x80\x24\x02\x9c\x22\x19\xca\x08\x70\xe2\x1b\x73\x21\x02\x9c\xf8\xa2\x43\x88\x98\xd2\x15\x5f\x9c\xa6\x68\xc4\xab\x28\x1a\xf1\x2a\x88\x46\x9c\x5a\x71\x9e\x63\xff\x4e\x88\x38\xcf\xf1\x0d\x87\x10\x71\x9e\x63\x13\x73\x88\x0d\x37\x34\x18\x9c\x88\xf3\x9c\x0c\x63\xc4\x79\xae\xb2\xbe\x46\x9c\xe7\x1a\xb1\x6f\xc4\x79\xae\x39\x94\x70\x9e\x6b\x0e\x3a\x9c\xe7\x1a\x44\x7d\xc4\x79\xae\x41\x71\x44\x9c\xe7\x9a\x43\xb7\x0b\xc2\xe9\x78\x9c\xe7\x64\x18\x23\xce\x73\xdd\x29\x19\xe7\xb9\xee\x12\x80\xf3\x5c\x77\xb1\xc0\x79\xee\x67\xb2\x19\x82\x70\xfa\x0c\xe7\x39\x53\x78\x11\xe7\xb9\x6e\x1c\x30\x00\xe1\x4e\x28\x17\x00\xf5\x41\x44\x1b\x71\xa5\x93\xb5\x8c\xb8\xd2\xa9\x56\x88\xb8\xd2\xfd\x4c\x13\xb8\xd2\x4d\xef\x13\x57\xba\xd9\xbd\xe6\x6d\xdf\xf2\xb9\x5f\x94\xd3\x97\x8b\xda\x45\x39\x7d\x39\x94\x70\xac\x5b\x3f\x57\xd9\xfc\xce\xfb\x3c\x94\xa8\xfd\xa2\x9c\xbe\xc9\x05\xc4\x8b\x72\x3a\x26\x2f\x21\xe2\x66\x77\x9c\xca\x71\xb3\xc3\x34\x31\x44\xb6\x2b\x05\xa7\x72\xb6\x2b\x61\x4c\x15\x22\xdb\x95\x82\x3d\xc8\x76\xa5\xe0\x34\xcf\x76\xa5\x17\x35\x46\x64\xbb\x12\xbe\x7e\x21\xb2\x5d\xa9\x00\xad\xe3\x04\xc0\x76\x4b\x00\xd8\xe6\xef\x00\xb0\xd0\x57\x91\xad\x4c\xa5\x59\x3b\xce\x65\x8e\x6b\xb6\x32\x35\xe4\x79\x91\xad\x4c\x0d\xfa\x23\xb2\x95\xa9\x11\x45\x46\xb6\x32\x4d\x47\x24\x5b\x99\xa6\xed\x63\x2b\xd3\x74\x64\xb1\x95\x69\x3a\xf5\xb0\x95\xe9\x73\x7c\xb2\x95\xe9\x23\xde\x8c\x6c\x65\x5a\x3e\x77\xb6\x32\xa9\x52\x8e\x6c\x65\x5a\x93\xde\x65\x2b\x93\x4a\xe4\xc8\x56\xa6\xed\x12\xe0\x56\xa6\xe4\x55\xdc\xca\xc4\xef\xdc\xca\x64\x98\xe5\x56\x26\xd0\x43\x74\x2b\x13\x18\x2b\xba\x95\xc9\xa5\x11\x04\x14\x40\x94\x11\x04\xf4\xfa\x8c\x40\x40\xaf\x93\x29\x08\x28\xd9\x4b\x4b\x94\x4a\x1b\x40\x40\xc9\xd1\x03\x02\xe2\x7b\x93\x21\xba\xcd\xe9\x58\x42\x14\xf0\x53\x3b\x08\xd6\xa8\xd5\x6d\x4e\xbe\x39\x6e\x73\xf2\xad\x72\x9b\x93\x6f\x07\x28\xa7\x18\x70\x82\x72\x0a\x1c\x7b\x04\xe5\x0c\x47\x0f\x28\x67\xa0\xe9\x88\xa0\x9c\xd1\x2c\x81\xe2\x0c\x58\x40\x39\xc3\x71\x0d\xca\x91\x7f\x8f\xa0\x9c\x2b\x57\xfd\xf3\x53\x32\x00\x68\x90\xd5\x8d\xec\x72\xc2\x5e\x3b\x44\x76\x39\x0d\x07\x32\xbb\x9c\x86\x81\x3e\xbb\x9c\x26\xaa\xcc\xc8\x2e\xa7\x49\xa6\x31\xb2\xcb\x69\x1a\xe8\xb3\xcb\xe9\x33\x1a\x64\x97\xd3\xb1\xe3\xd9\xe5\x74\xec\x40\x76\x32\x1d\x9b\xc0\x4e\xa6\x63\xe4\xcd\x4e\xa6\x63\x0c\xc4\x4e\xa6\x43\x92\x30\xb2\x93\xe9\xd8\x81\xec\x64\x3a\x3e\x22\x76\x32\x1d\x63\x74\x76\x32\x99\x6e\x4b\xec\x64\x3a\xbc\x70\x89\x9d\x4c\x46\xc2\x89\x9d\x4c\x87\x41\x90\x00\x47\x0a\xd0\x13\xe0\x28\xc0\x53\x26\xc0\x51\xf8\xf9\x1d\x20\x8e\xe1\x92\x00\x47\x61\x5b\x03\xae\x51\x0c\x89\x84\x7d\x78\xe0\x3e\x13\xc0\x29\x10\x11\x25\x80\x53\xd8\xd6\x7e\x91\x05\xdf\x47\x0c\x09\xe0\xf4\x26\x6b\xb8\xc0\x29\x56\xcf\x3c\x94\xee\x00\x49\xd8\x87\xab\x9f\x49\xd8\x87\x2b\xd0\x49\x80\xaa\x44\x64\x93\x00\x55\x89\xa8\x27\x81\x9c\x8a\x35\x80\x9c\x4a\xf2\x9a\x80\x3f\x5e\xe9\x04\x72\xe2\xc3\x60\x21\x81\x9c\x2a\x78\x21\x81\x9c\xea\xf0\x18\xc0\xf0\xa7\x76\xb6\xbb\x0c\xaf\xc2\x76\x17\x60\x7e\x02\x39\x55\x18\xf0\x14\xb4\x24\xa2\xaf\xf9\xf4\x6c\x23\x4e\x4d\xa0\x2a\xbe\x2a\x12\x12\xa8\x4a\xb5\x78\x02\x55\xa9\xf3\x4e\xa0\xaa\x8e\x9a\x26\x81\xaa\xba\xf5\x81\xaa\x8c\xca\x13\xa8\x6a\x64\x8f\x91\x6b\x9f\x5e\x85\xad\x22\x8f\xc7\x3a\x25\xee\x13\x54\x35\x89\xa7\x13\xdb\x95\xe6\xcf\x7d\x62\xf5\x83\x74\x2f\xbd\x22\x43\x7a\x82\xed\x4a\xdf\x4f\xe9\xb6\xcf\xa4\x56\x62\xbb\x92\xc9\xb0\xc4\x76\xa5\x8f\xe9\x25\xb1\x5d\xe9\x73\x0c\xb2\x5d\xe9\x63\x7a\x49\x6c\x57\xfa\x60\x73\x13\xdb\x95\xf6\xeb\x55\x40\x8d\xd1\x12\xa8\xd1\x27\xcd\x76\xa5\xcd\x82\x90\xd8\xae\xc4\x97\x3c\x42\x62\xbb\x12\x9f\xac\x08\x89\xed\x4a\x26\xca\x12\xdb\x95\xf8\x28\x53\x48\x6c\x57\x32\x7e\x4f\x6c\x57\xe2\xf3\x4d\x21\xb1\x5d\x69\x27\x8e\xb1\x5d\xc9\xd8\x3e\xb1\x5d\xc9\x68\x3e\xb1\x5d\x69\x83\x0c\x13\xdb\x95\x8c\xed\x13\x9f\xb3\xdd\x28\x27\x52\xb2\x7d\x96\x48\xb6\x27\xaf\x49\xb2\x1d\xec\x92\xd8\xca\x74\x88\x7d\x13\x68\xec\xf1\xcd\x01\x8d\x3d\xc5\xab\x60\x65\x54\xfd\x1d\xa9\x77\xa8\xc2\x04\x1a\x0b\xd0\x57\x09\x34\x16\x58\x1a\x13\x68\xcc\x65\x2c\x81\xc6\x02\x14\x55\x02\x8d\x85\xf9\x3b\x5f\x15\x09\x09\xa0\x16\x58\x27\x13\x40\xcd\x75\x32\x61\x2d\x2e\x43\x95\xb0\x16\x0f\xf0\x2b\x09\x10\x87\x5f\x72\x48\x80\xb8\x17\x72\x3c\x01\xe2\xb2\x83\x1c\x10\x87\x7b\x7f\x48\x80\x38\xbe\x89\x16\x12\x20\x8e\x6f\xbe\x85\x04\x88\x73\x57\x5c\x02\xc4\xe1\x9e\x1c\x12\x20\x8e\x8f\x0f\x85\x04\x88\xe3\x93\xf7\x21\x01\xe2\xf8\x1e\x5c\x48\x80\xb8\xec\xf4\x02\x88\xe3\x6b\x74\x21\x01\xe2\xb2\x13\x11\x20\xae\x14\x7f\x47\xc6\xde\x0e\x04\xc4\x55\x62\xa0\x04\x88\xfb\x99\x6c\x00\x71\x15\x3e\x2e\x01\xe2\xaa\x0f\x0c\x10\x57\x87\x77\xb6\xf8\x9d\xa5\x4d\xc9\x7b\x41\x91\x00\x8f\x97\xb0\x16\xaf\x44\x1a\x09\x6b\xf1\x1e\x2d\xbd\x94\xa8\x81\xdd\x51\xdd\x41\xc7\xee\xa8\x1e\xbd\x0a\x16\x41\xbe\x1c\xec\x8e\xea\x4e\x7c\xec\x8e\x9a\x60\x97\xc4\xee\xa8\x89\x8a\x23\xb1\x3b\x8a\xaf\x26\x87\xc4\xee\x28\xbe\xb6\x1c\x12\xbb\xa3\x26\x74\x52\x62\x77\x14\x5f\x69\x0e\x89\xdd\x51\x66\x1b\x12\xbb\xa3\xe6\xe3\x9d\x1d\x8e\x71\x26\xbb\xa3\x3e\x5f\x46\x76\x47\x7d\xbe\x54\xec\x8e\xfa\x7c\x01\xd8\x1d\xf5\x39\xd1\xb2\x3b\xea\x43\x70\x98\xd8\x1d\xf5\xf9\x52\xb1\x3b\xea\x03\x96\x26\x76\x47\x7d\xe0\x85\xc4\x16\xa8\xe5\x28\x60\x0b\xd4\x86\xde\x49\x6c\x81\xda\xc9\x33\xc9\x92\xfb\xf2\xb3\x05\x8a\xcf\x06\x85\xc4\x16\xa8\x9f\x17\x9c\x2d\x50\x6e\x00\x4e\x6c\x81\x3a\x2e\x55\x6c\x81\x3a\x4e\x3d\x6c\x81\x52\x7e\x98\xba\x20\xdc\x12\xdb\x4f\xd8\x7d\x99\x40\x78\x8f\x6f\x07\x28\x8e\x2f\x45\x86\x04\x8a\x0b\x4e\x52\xa0\xb8\x00\x0f\x9b\x40\x71\x01\x72\x29\x81\xe2\x82\xef\x11\x28\x2e\x26\x6b\x00\x68\x37\xef\x13\xa0\x0d\xe6\x49\xa0\xb8\x08\xc9\x90\x40\x71\xd1\xb6\x83\xe2\x62\xf1\x18\x68\xda\x3e\x03\xc5\x45\xd2\x82\x09\x14\x17\x7d\xa7\x41\x71\x91\x64\x58\x02\xc5\xc5\xec\xef\x2a\x67\xd2\x3e\x50\x1c\x5f\x9f\x0c\x09\x14\x17\x11\x5b\x26\xb0\x59\xf6\xed\x00\x9b\x65\xdf\x31\xb0\x99\x32\xd7\x04\x36\x33\x2b\x92\xc0\x66\x46\xbb\x09\x6c\xe6\x76\xb3\x04\x36\xab\xe0\xd9\x84\xd3\xb8\x5c\x72\xc2\x69\xbc\x82\x80\x92\x4e\xe3\x2e\x55\x3a\x8d\x4f\x4b\x24\x80\x5d\x1e\x70\x1a\x57\x3a\x9b\x74\x1a\x47\x81\x94\x70\x1a\x37\x50\x4d\x38\x8d\xcf\x5f\x33\xc3\x9f\x9f\x92\x31\x21\x9f\x4e\x9f\x7c\xa3\x56\x25\x5d\xe2\x1b\xb5\xcb\x89\x81\x6f\xd4\x2e\x87\x19\xdf\xa8\xdd\xcd\x63\x2f\x19\x5f\x8f\x45\x20\x2b\xb7\xc2\xbe\x26\xbe\xc8\x1b\x12\xfb\x9a\x7e\x86\x35\xfb\x9a\x8e\x0f\x1a\x68\x16\x8d\x03\x80\x66\x05\x79\x50\x02\x9a\xa9\x4b\x4e\x40\xb3\x66\x54\x00\x34\xc3\xff\x2c\x24\xa0\xd9\x74\x92\x12\x9a\x21\x71\x4a\x42\x33\xe4\x72\x09\x68\xf6\x46\x4b\x24\xdf\x8c\xb2\x80\x66\x09\x11\x5c\x02\x9a\x25\x63\x20\xa0\x99\x62\xaf\x24\xfc\x32\x22\x02\x7e\xe5\x69\x89\x04\x9b\x51\x0f\xf0\xab\xbe\xfe\x0e\x7c\xe2\x34\x0f\xfc\x1a\x4e\x9f\xc0\xaf\xe1\x4a\x0c\xfc\x1a\x4e\xec\xc0\x2f\x69\x8c\x44\x02\x4a\xf9\x53\xda\x6a\x96\x79\x0e\xc0\x2f\x53\xb0\x69\xab\x59\xf6\xd8\x8d\x1f\x1e\x97\x54\xc4\x7a\x7c\xe6\x26\x24\x93\x4c\xb6\x96\x4f\x34\x3d\xb6\xd6\x24\x93\x13\x26\x9f\x68\x7a\x20\xa5\x12\x49\x26\xbe\x62\x1c\x92\x89\x24\xaf\x62\x22\xc9\xe9\x93\x44\x12\x5f\x0a\x0f\x89\x44\xd2\xcf\xc4\x40\x22\x29\x19\xc3\x92\x48\x32\x25\x9a\x48\x24\xe5\xe0\x99\xc4\xe8\x28\x83\x13\x9f\x68\x2a\xd9\x1a\xd8\x92\x8e\xce\x20\x1d\x63\x74\x46\x01\x49\xa6\xfa\x73\xcd\x4d\x04\xed\x7d\x9a\xa0\xb9\xa5\xec\xa7\x96\xd0\x9e\x64\xf0\xd0\x47\x6c\x98\xc1\x43\x1f\x8a\x8b\x0c\x1e\xfa\x20\x27\x32\x78\xe8\x0b\x5e\x85\x78\x1a\x5a\x28\x83\x87\x3e\xa8\x98\x0c\x1e\xfa\xb6\x57\x21\xa6\xcc\xfe\x8e\x98\x92\x29\x2b\x83\x79\xdc\x9a\x92\xc1\x3c\x9b\xf6\x65\x30\xcf\x26\xf7\x90\xc1\x3c\x6e\x31\xc9\x60\x9e\x73\x3c\x86\x80\x93\x85\x2b\x23\xc1\x53\xb9\x94\x91\xe0\x3d\xa8\x07\x32\x12\x3c\x13\xea\x19\x09\x1e\x9f\xb3\x08\x19\x09\xde\xfb\x78\x67\x04\x5d\x3f\xc7\x08\xba\x86\xf5\x11\x74\xfd\x5c\x85\xa0\x8b\x54\x63\x46\x82\x87\xb9\x7e\xc8\x48\xf0\xf0\xe5\x0e\x19\x09\x5e\x26\x7c\xc9\x48\xf0\xf2\xf4\x4c\xb2\x1b\x20\xa0\x8c\x04\xaf\x82\x36\x33\x12\xbc\xca\x7b\x9b\x91\xe0\xd5\xed\x35\xc9\x6e\xa0\xa9\xcf\x48\xf0\xfa\xf4\x4c\xb2\x1b\xbc\xfd\x19\xbf\x3c\x29\xbf\x8c\x5f\xde\x8c\xd6\x6e\x50\x62\x7d\x04\x25\x8e\x09\xa5\x7b\xd9\xfa\x6e\xfb\x16\x69\xe4\x4c\x96\xe9\x3e\xa3\x3f\x3b\x25\x67\x12\x50\xd8\xf2\x84\xac\x95\x1e\x8c\x6d\x26\x01\xb5\x91\x97\x64\x55\x7d\xbc\xee\x59\x55\x5f\xb6\x3a\x92\x06\x44\x98\x99\xe4\xd4\x21\x26\xc9\x24\xa7\x0e\x6b\x76\xd6\x4a\x8f\x88\x36\x6b\xa5\xd7\xac\x1d\x69\x1b\xfb\x62\x32\x76\x79\x66\x8a\x33\x76\x79\x91\x98\x39\x63\x97\x17\x89\x7d\x33\x76\x79\x91\x0d\x9d\x19\xbb\xbc\x08\xbb\x93\xb1\xcb\x8b\x4c\x7c\x19\xbb\xbc\xe8\x0b\x87\x5d\x5e\x64\x1a\xcc\x78\xe2\x45\x87\x04\xf2\xbc\x08\x5b\x9d\x91\xe7\xc5\x6e\x7d\xac\xe7\xd0\x3b\x19\x79\x5e\x5e\xde\x19\xdf\x3b\x59\xde\x0b\x9e\x71\xb6\x01\x79\x5e\x86\x28\xc9\xc8\xf3\xca\xf6\x3e\x59\xf9\x99\xbc\x33\xf2\x3c\x79\xae\x9c\x5d\xf9\x79\xec\xc8\xf3\xf8\x9c\x52\xc8\xc8\xf3\x2a\xcc\x64\xce\xae\xfc\xb4\x16\x79\x5e\x05\x13\x64\xe4\x79\x12\x02\x19\x79\x5e\xf5\x45\x45\x9e\xd7\x7c\x46\xc8\xf3\x5a\xe2\x49\x23\xcf\xe3\x2b\x11\x21\x23\xcf\x6b\xc9\xda\x91\xb6\x65\xeb\x53\xda\x46\x2f\x21\xc1\x33\x62\xcf\x48\xf0\x3a\xf0\x39\x23\xc1\xeb\xe4\xb7\xf3\xc5\x35\x7d\x3c\x1e\x83\x39\x47\xbb\x90\x91\xe7\x4d\x84\x60\x19\x79\xde\x64\x79\xc8\xc8\xf3\xfe\x5f\xc2\xce\xec\x6a\x5a\x5d\x07\xa2\x29\x81\x67\x87\xe3\x31\xff\x10\xee\x3a\xec\xdd\xf7\xf1\xff\x1e\x59\x74\x03\x02\x0f\x92\xaa\x54\x9a\x3e\x27\xf4\x3c\x8b\x66\x32\xf4\xbc\xa9\x45\xd0\xf3\xe6\xf2\xc9\xf0\x5e\x5c\x0a\xa0\xe7\x21\xf1\xfe\x66\xc0\xa9\x89\x77\x96\x01\xa7\xa6\xe3\x1a\x70\x6a\x53\x50\x93\x01\xa7\x36\x9b\x7d\x06\x9c\xda\x2e\xde\x80\x53\x56\xe1\x65\xc0\x29\x0b\xb8\x33\xe0\x94\x82\x3a\xb9\x92\x39\xc7\x2d\xc8\x15\xea\x97\xef\xa5\x42\xfd\xc2\xd3\xcf\x15\x1d\x33\xc7\x4b\x95\xe3\xe4\x2f\xd1\xd2\xeb\xde\x8f\xec\xb1\x8b\x14\xe5\x4a\xaf\x8b\x14\xe5\x4a\x2f\x0e\x44\xa6\x5c\xe9\x05\x86\xcc\x94\x2b\xbd\x5e\x93\x72\xa5\x0c\x24\x9a\x29\x57\xca\x6c\xb7\x99\x72\xa5\xa2\x7d\x94\x2b\x15\x12\x25\x99\x72\x25\xfa\x07\xbe\x99\x46\xb4\xe3\x77\x8e\xcc\x2b\x29\xcd\x4c\x29\xd3\xc0\x33\xcd\x28\x86\x3f\xc4\x66\x19\xc5\xf0\xe7\xf5\x7e\x6c\xfd\x2e\x91\x28\x86\x3f\xaf\x57\x39\x1c\x79\x87\xcb\x11\x77\xff\x62\x97\xfa\xe0\xcd\xe7\x4e\x97\x4c\x47\x0f\x6a\xe2\xf4\x3e\x7a\x33\x6a\xe2\x21\xfb\xcb\x6f\x1b\x0b\xae\x21\xa8\x89\xc7\xea\xb9\xc2\x11\x77\x47\x4d\x3c\x4d\xaf\x42\xa9\x8f\xe3\x0c\x35\xf1\x84\x03\x98\x51\x13\xff\x62\xf9\x7f\x2f\xc9\x08\x8d\x67\x77\x0e\x84\xc6\x8b\xcb\x2e\x42\xe3\xc5\x7d\x59\xa1\x71\x12\xfc\x99\x2a\xa7\x4e\xa8\x9b\xa9\x72\x42\xb2\xf1\xcd\x54\x39\x49\x8d\xca\x43\x4f\xc3\x5f\xe2\x69\xe0\xc3\x66\x2a\x99\x96\xd3\x96\x4a\x26\xc1\x8d\x4c\x25\xd3\xa2\x9e\x26\x53\xc9\x74\x7e\xd7\x24\xb3\x55\xfc\x1f\x99\xad\xea\x1d\xf0\x34\x08\x83\x33\xd5\x4a\x17\x28\x27\x53\xad\x24\xc9\x28\x23\x26\x2e\x01\x29\x23\x26\x7e\xf1\x3e\x33\x0a\x0d\xef\xf6\x88\xf4\xc7\xf1\x97\xa4\x3f\x1c\x66\x28\x34\x64\xf2\xa9\x19\x85\x86\xdf\xb2\x8b\x42\x43\x76\x02\xa0\xd0\x50\xf5\x50\x50\x68\x68\xee\xa1\x28\x34\x34\x07\x08\x0a\x0d\xbf\x05\x13\x85\x86\x8a\xbf\x99\x51\x68\xe8\x4e\x7e\x14\x1a\xba\x5f\x0c\x85\x86\x8e\xdf\x98\x17\x29\x0e\x7d\xae\x0f\x64\x6a\x93\xd4\x41\xfe\x40\xa6\x26\x16\x90\xbf\x48\xa6\x4d\x07\xe4\x22\xc5\xe1\x96\xba\x48\x71\xe8\xab\x21\x26\x4e\xe3\xcd\x37\x23\x26\x2e\xd5\x2c\x23\x26\xbe\x1f\xaf\x82\xc2\xae\x9e\x14\x62\xe2\x07\x3c\x3d\x23\x26\x4e\x3b\xdb\x37\x23\x26\x7e\xdc\xa6\x11\x13\x3f\xfa\x6a\x5b\xb7\xc0\xff\xe1\x16\x38\x1d\x10\x13\x3f\xa0\xf9\x79\xc3\x78\xcf\x1e\xe9\x16\x60\x3b\x42\xe3\xd7\xed\x08\xa5\x05\x6b\xf2\x32\x4a\x0b\x96\xe0\x66\x94\x16\xe8\x29\xfe\x66\x94\x16\xe2\xf6\x08\xb7\x80\xfc\x6d\x3e\xb8\x05\x44\x32\xf9\xe0\x16\xb8\x94\xa3\xb4\x10\xdd\x98\x51\x5a\x30\xfa\xcb\x28\x2d\x44\xfd\x46\x94\x16\xa2\xe3\x0c\xa5\x85\x08\x7e\x92\x51\x5a\x88\x9b\xf7\x82\xd2\x42\x3c\xfe\xd2\xad\x9f\xf7\x82\xd2\x82\xf5\xab\xf9\xd8\x42\xcc\x27\x03\x34\xd7\x7f\x3f\x80\xe6\xfa\xf6\xa8\x30\x28\x53\x95\x51\x61\xa8\x5e\x13\xa9\x85\xdf\x68\x45\x6a\xa1\x39\x96\x90\x5a\x68\x8e\x17\xa4\x16\x2c\xbd\xc9\x48\x2d\x58\x3f\x97\x2f\xac\x6f\x12\x3a\xf9\x12\xf4\x3b\xb2\x94\x61\x00\xea\xcf\x17\xd6\xb7\x2b\xca\x65\xdb\x74\x3e\x20\xd1\x30\xb5\x1d\x89\x86\x69\x64\x81\x44\xc3\xf4\x5d\x23\xd1\x20\xdb\xab\x20\xd1\xb0\xa9\x35\x28\x8f\xdb\xe6\xcb\x11\x8c\x70\xc6\x60\x79\x60\x84\xc3\x4e\x2a\x0f\x8c\x70\x46\x5d\x79\x60\x84\x77\x7f\x49\xd4\x8f\x43\x56\x1e\x18\xe1\x70\x64\xca\x17\x1d\x75\xba\x91\xbc\xe5\x8b\x8e\xb2\x7c\x8f\x82\x7c\x43\x99\x7f\x2d\xc9\x05\x65\x87\xc2\x22\x55\x1e\xb0\xe8\xdf\x25\xc1\xa2\xa7\x0f\x46\x17\xad\xe3\x39\xf4\x05\x58\x30\x0b\x1a\x10\x93\xe4\x7f\x41\x03\x62\x92\x2d\x2b\x68\x40\x4c\x76\xe2\x82\x06\xc4\xc6\x43\x29\xb6\x5a\xf2\xa1\x6d\xb5\x44\x50\x5c\x90\xc4\xcb\xaf\xe7\x90\x6c\x84\xc6\x5e\x90\xc4\xcb\xaf\x57\x81\x8d\x7b\xbc\xc3\x20\x3d\xc0\x2b\x43\x12\x6f\xe0\x31\x14\x80\x24\x24\xa6\xdf\x02\x90\xf4\x44\x6d\x60\xb7\x05\xce\x28\x00\x49\x74\x0c\x7c\x0b\x40\x52\x44\x4a\xa5\x00\x24\x25\x02\xb5\x02\x90\x24\x75\xbc\x00\x24\x49\x40\x2f\x02\x49\xa4\x2a\x8a\x40\x12\x93\xa3\x00\x24\x75\xbc\xa5\x02\x90\x24\x2d\xac\x00\x24\x59\xef\x55\x00\x92\xa4\x54\x15\x80\x24\x2b\xa7\x0a\x40\xd2\xf2\xcd\x0b\x24\xe1\x1b\x16\x02\x27\x9a\x71\xbd\x05\xb0\xe8\xf8\x55\x00\x8b\x5c\x22\x0b\x60\x11\x6a\xc6\x6f\x89\x06\xbe\x9e\x43\xcb\x0b\x6f\xa9\x10\x1d\xbd\xf8\x39\x85\xe8\x28\x10\x55\x15\xa9\x7b\x4c\xe2\x22\x75\x8f\x6d\xa5\x50\xf3\x54\x48\x71\x94\xe8\x56\xe5\x55\xbe\x65\x1e\x0d\xdf\xb7\x40\xeb\x53\x3d\xaf\x40\xeb\x2b\x40\x6a\x05\x5a\x5f\x61\x99\x2f\x50\xf7\x3a\x51\x5c\x81\xba\xd7\xa7\xe7\xd8\x8e\x1c\x59\x50\xf7\x26\x39\xcc\x02\x75\x6f\x3a\xe1\xa0\xee\x4d\x6d\x80\xba\x67\x21\x47\x49\x6e\x47\x1e\x91\x71\xc7\x2d\x28\x50\xf7\xf6\xe3\x39\x04\x91\x58\x42\x0a\x60\xd1\x71\x29\x00\x2c\x3a\x0d\xdb\x01\x8b\x0e\x4e\x42\x01\x2c\xfa\xbd\x79\x8b\x97\x9c\x7f\x16\x2f\x81\x2f\x14\xa2\xa3\xe4\x7c\x20\x3a\xa2\x91\xf0\x5b\x88\x8e\x68\xc2\xfb\x16\xa2\x23\x3a\xf1\xbd\xc5\xe8\xc8\x51\x4e\x74\xd4\x96\x77\x60\x89\xcc\xde\x9d\xc2\x98\xec\xff\xec\xc0\xe8\xfd\xbe\x25\x72\x38\x3e\x89\x8e\xc6\xef\x9a\x9b\x23\xbe\x11\xc5\x4b\x72\xc7\x0b\xc5\x4b\x0b\x16\x55\x21\x72\x12\x12\x2d\x44\x4e\xba\x52\x85\xc8\xe9\xa0\xd3\x51\x88\x9c\x0e\x8b\x70\x29\x46\x16\xbc\x6b\x22\x27\x0b\xe2\x0b\x91\xd3\x2d\xde\x81\xc4\xa8\xcb\x6e\x61\x19\x5c\x1e\xb1\xd6\x11\xf3\x94\xc2\x5a\x47\xca\xaf\x14\x14\x92\x5d\x5f\xbe\xe8\x28\x5b\x81\x58\xbe\xe8\x28\x6f\x36\xd1\x52\x8d\x2c\x38\x57\x8d\x2c\x98\x63\x08\x3d\xe4\xd7\x5f\x12\x59\xbc\xfe\xf2\x5b\xeb\xfe\x73\xb9\xff\x58\x92\xd1\x80\x28\xf8\x7f\x45\x0d\x08\x27\x15\x1a\x10\xc2\x35\x45\x0d\x08\xa7\x11\x1a\x10\x93\x4c\x4c\xa1\xd5\xd2\xe3\x24\xa6\xd5\x52\x78\xbd\x0a\x7c\x01\x72\x83\xc5\x56\x4b\xec\x69\xc5\x56\x4b\xdb\x3b\x50\x7f\x8f\x3f\x5d\x68\xb5\x64\xc2\xbd\xd0\x6a\xc9\x2c\x4d\x69\x2e\x21\x7c\x94\x06\x1e\x4b\x55\x7d\x69\xe4\xce\xdc\x48\x00\x84\x10\xf7\x7e\x0b\x80\x50\x81\xf6\x56\x00\x84\x0a\x01\x50\x01\x10\x6a\xc1\xfb\x75\x8e\xb0\x0f\x40\xc8\xba\xb4\x02\x20\xd4\x5e\xef\x0e\x73\xd6\xfd\x15\x40\xa8\xfb\x31\x01\x84\x68\x06\xf4\x16\x00\xa1\x89\x57\x57\x00\x84\x2c\x5f\x28\x00\x42\xbf\x6d\x0c\x4d\xbc\xed\x40\x46\x13\xef\x90\xa6\x29\x68\xe2\x9d\xe6\x2f\xf1\x14\xc9\xe9\x97\xae\xa7\xc8\x93\xa1\x89\x67\x71\x77\x11\x2c\x72\xc9\x02\x2c\x4a\x24\x12\x0a\x60\x51\x8a\xde\x6f\x72\xc4\xe4\x00\x2c\x4a\xd1\xff\x6d\x8e\x98\x2a\x80\x45\xc9\x6d\x0c\xb0\x28\x39\x6d\x01\x8b\x32\xbe\x61\x01\x10\xaa\xfe\x12\x40\xa8\x02\x83\x14\x00\xa1\x06\xcc\x5a\x00\x84\x9a\x9b\x1a\x80\x50\xcf\x9e\x43\x24\x3f\x79\x0e\x2f\xcb\xed\x08\x5a\x9f\x2a\x05\x05\x5a\xdf\x70\xf3\x85\xd6\x37\xdc\x44\x81\x8e\x68\x9c\xff\x16\xa0\xa3\xe9\x42\x04\x74\xb4\x1c\x21\x40\x47\x0b\x36\x75\x01\x3a\xda\xbe\x4f\xa0\x23\x65\x35\x0b\xd0\xd1\x76\x82\x03\x1d\x49\x43\x2b\x53\x2f\xcb\x6b\xe2\x65\x1d\xaf\xc2\x12\xa2\x73\x01\x74\x74\x89\x5d\x0a\xd4\xbd\x37\x7a\x44\x6d\x1d\xc8\x4e\x91\xba\xb7\xbc\x03\xd4\x3d\x02\xe6\x02\x75\xcf\xf2\xa1\xa2\x0a\x39\xe0\x62\x81\xba\xb7\x9d\x71\x50\xf7\x14\xe7\x2c\x50\xf7\x8c\x2c\xca\xd2\x5d\xf2\x7f\xe0\x27\xc1\xff\x81\x4b\xb8\x35\x52\xbc\x34\x5d\x06\xd1\x80\x78\x7c\x9f\x68\x40\xa8\x9e\x57\xd0\x80\x88\xc0\x97\x05\x0d\x88\xa4\x93\x87\x06\x84\x40\x7c\x59\x46\xe8\x3e\x0b\x3a\x1d\xce\xaa\x45\x84\x4e\x32\xb2\x6c\x78\x29\x44\x8d\x65\xbb\x4e\xf0\xd4\x44\x5c\x0f\xc0\x63\x21\xe2\x12\x58\x2d\xb6\x6f\xda\xfe\x12\x60\x5c\x9f\x99\x88\xab\xbb\x31\x13\x71\x75\x17\x61\x22\xae\xa9\x0d\xb4\x6f\x3a\x50\x12\x0a\x3d\x9a\x7e\x3e\x33\x3d\x9a\x7e\xdb\x03\x11\xd7\xd7\x83\xf4\xdf\x4b\x32\xc1\x58\x02\x53\x2e\x04\x5c\x95\x60\xac\x10\x70\x55\xf7\x98\xe3\x54\x61\x48\x1c\xa7\x0a\x83\x95\x80\x6b\xfc\x8e\x9c\x2a\x98\x4e\xc0\x65\xbd\x7f\x21\xe0\x9a\x2e\x83\x04\x5c\x8b\x40\xa6\x10\x70\xad\xe8\xfd\xd0\x8c\x73\x52\x11\x70\x2d\x07\x24\x01\xd7\x76\xb9\x26\xe0\xda\x04\x78\x85\x80\xeb\x42\xad\x29\x04\x5c\xd7\x8f\x49\xc0\x75\x5d\x3e\x09\xb8\x6e\xf7\x97\xe4\xf1\x96\xbf\x44\x11\xcc\xad\x03\x7a\x5e\xd0\x53\x84\x9e\xa7\x3e\x44\x81\x9e\x97\x5d\x88\xa0\xe7\x65\x3d\x61\xe8\x79\x45\x1f\x1d\x7a\x9e\x1c\x84\x62\x7d\x92\xfe\x26\xb0\xd2\x60\x52\xd5\xc7\x61\x96\x38\x62\x98\xe1\x07\x54\x20\xa7\xc5\x92\x55\xa1\xe7\x39\x08\x2a\xf4\x3c\x5a\x43\xbe\x15\x38\xea\x74\xaf\x02\x7f\x86\x25\xb2\xa2\x08\x61\xcd\x53\x45\x11\x42\x1d\xba\x8a\x22\x44\xe3\x3b\x54\x14\x21\x66\xf3\xc9\xc8\xf7\x93\xb5\xac\x0f\xad\x73\x9a\xff\x63\xb9\xfe\x3d\x27\xcb\x75\xf1\x97\x8c\x33\x2d\x7a\x0d\x98\xb9\xfb\x8b\x6c\x21\x13\xa0\xbe\xe4\x99\x59\x96\xea\x0b\x0b\x9b\x25\xb9\xbe\x8c\x33\x12\x09\xf5\xa5\x6f\x49\xf6\x9a\x83\x23\x7f\x39\x39\xe2\x4d\xbc\x30\xad\xc9\x6f\xd6\x2f\x3a\xea\xa7\x7b\xbf\xef\x39\x15\x59\xaf\x2f\xcb\x99\x77\x08\x30\x91\x71\x58\x2a\x4d\x6a\x33\x71\x4d\x25\x3a\x52\x72\xb3\x12\x01\x55\xc6\x60\x25\x02\xba\x38\x10\x95\x08\x48\x29\xf3\x0a\xac\xd4\xe0\xcf\xd4\xe0\xbb\xf6\x0e\x6c\xfd\x44\x5c\x55\x58\xc9\x6f\x2b\xac\xd4\x3d\x07\xac\xe4\x97\x06\x56\xa2\x03\xf7\x5b\x85\x95\x70\x89\x6a\xc4\xf3\xc6\x37\xac\x5f\x74\xd4\xd5\x08\xaf\x91\xe4\x04\xac\x91\x1a\xd9\x36\x81\x05\x6b\x64\x2d\x60\x65\xa8\xd1\xb5\x80\xfb\xd1\x86\xa9\x55\xaf\x09\x1b\x9e\x65\xb0\x46\xd9\xf0\x5e\x93\x9c\x7e\xf6\x9a\x7e\x23\x7f\xf9\x8d\x89\x4b\x04\x54\xc1\x87\xd4\x8a\xa9\xe0\x43\x74\xe9\x7b\x2b\x2a\x78\x07\x32\x5b\xa5\x11\xed\x24\xe1\x51\xa1\xc4\x29\x8b\x5a\xa1\xc4\xe9\xdf\x56\x28\x71\x8b\x85\xbd\x12\x01\x59\xa3\x50\x2d\x5e\xf2\xbd\x10\x01\x1d\xea\x34\xeb\xaf\x67\x92\x47\xb8\x28\xbf\x67\xc1\x45\xd1\x76\xf0\xa1\x56\xfd\x25\x55\x09\x8e\x09\xf0\x21\xf5\x44\x2a\x11\xd0\x0c\x7f\xf1\x92\x2b\xc1\x91\xc2\xf4\x15\xe1\xef\xc7\x89\x83\xf0\x77\x65\xd1\xa8\xd0\xe5\x66\xf7\x28\xf3\x60\xbc\x40\x83\x23\xf6\xe5\x4a\x70\x64\xb9\x6c\x25\x38\x1a\x2e\x21\x99\x9c\x70\xf7\x7e\x4c\xf7\xdf\x11\x3b\xce\xf0\x0e\xe4\xf8\x96\xff\x63\x4a\x13\x68\x57\x83\x1c\x72\xb4\x15\xda\xdb\x6f\x6a\x12\xe4\x24\xbc\x82\x4a\x90\x73\xd8\x02\x2a\xc2\xdf\x01\x98\xa0\x16\x9f\xd3\x73\x0c\x25\x17\x22\xe0\x21\xeb\x03\x2b\xf0\x90\x15\x81\x15\xe1\xef\xe5\x27\xfa\x02\xa0\x64\xad\x54\xfd\x02\xa0\x74\x5c\x50\x08\x80\x04\x4c\x2a\x01\x90\x95\x3e\xf5\x0b\x80\xb2\xe4\xa4\xfa\x05\x40\xe9\x38\x3c\xbf\x00\x28\x1d\x98\xac\xf5\x0b\x80\xd2\x49\x9e\x4b\xb4\xe6\xdf\x1c\xa1\x0c\xe0\x52\x00\x3c\xf4\x1b\x82\xc0\x43\x97\xac\x7a\xfd\xa2\x9c\xa4\x78\x4a\xfd\xa2\x9c\xac\xbe\x47\xfd\xa2\x9c\x74\x1e\xff\x37\xbf\xa3\xe0\x11\xf6\xb9\x30\x54\xec\x5b\x3e\xf5\xe1\x88\xef\xfe\x45\x39\x89\x6e\xe7\x6f\xa5\x0d\x93\xd2\x49\xb5\x29\x68\x8a\x45\xb4\x61\x92\x28\x55\x69\xc3\x14\xc9\xe9\x57\xda\x30\x55\x68\x76\x95\x36\x4c\x8a\xc7\x56\xda\x30\x99\xec\xa9\xb4\x61\x5a\xaf\xbf\xfc\x0a\x2b\x36\x5e\x5d\x05\x3a\x32\x78\xaf\xa8\xe0\xcd\xe9\x55\xbe\x6d\x53\xc9\xac\x8a\x0a\xde\x22\x64\xad\x40\x47\xc1\xcd\xa9\x61\x9f\x63\xa2\x61\x1f\x5e\x6b\xfd\xa2\x9c\x64\x68\x5d\x3b\xdf\x6f\x7b\x8e\xef\xe7\x52\xde\xf9\x7e\x3e\x4b\xe7\xfb\x81\x44\xd4\x2f\xca\x49\xca\x78\x56\x94\x1d\x82\xdf\x1d\x65\x07\x89\xa6\x15\x65\x87\xf8\x7a\x0e\x76\x52\xf2\x88\x36\x45\xc4\x82\xb5\xdb\xa6\x08\x1b\x50\x6f\x98\xcd\xbb\x93\x70\x84\x74\x57\x51\x6f\x58\x14\xfe\x54\xd4\x1b\x74\x7b\x2a\xea\x0d\xab\xfa\xcb\xc8\x11\x6f\x10\xf5\x86\xf3\x78\x8e\x3e\x3e\xf8\x8d\x15\x89\x06\x53\x31\x15\x89\x86\xeb\x08\x19\xba\x36\x1e\x7d\xdf\x28\xb8\x71\x7d\x51\x4e\x59\x00\x73\xf5\x8b\x72\xca\x72\xe3\x1a\x7c\xa3\xe4\xdd\x37\xe7\xb0\x0f\x89\x86\xff\x3f\x35\x09\x47\x92\x75\x15\xec\x28\x00\xd9\x57\xb0\x23\x49\x01\x15\xec\xa8\x13\xc9\x54\xb0\xa3\xe7\x77\x8e\x96\x6c\xce\xf7\x2f\xca\x49\xd7\xd9\xf1\x45\x39\xe9\xbe\xfe\xaf\x7e\x47\x8e\xc8\xc9\x1c\x73\xbe\x7f\x04\xb9\xa4\x66\x77\x9d\xcc\xb1\xfb\x57\xf5\x5e\xfd\x82\xa3\x74\x1f\x1f\x9a\xe9\xe7\x52\xf7\x05\x47\xe9\x3e\xde\xfc\x70\x03\x86\xd2\x17\x1c\x25\x9b\xad\xd4\x2f\x38\x4a\x17\xa8\xaa\x7e\xc1\x51\xb2\xf5\x4a\xfd\x82\xa3\xa4\x44\x78\xfd\x82\xa3\x74\xfd\x98\x8b\xe1\xa9\x87\xb2\x30\xdd\x01\x42\x5d\x93\x20\x4c\xa5\xae\x29\xfc\xae\x42\xdd\x96\x93\x11\xf2\x5c\x80\x59\x50\x21\xcf\xc5\xdf\xdd\x27\x03\x99\xcf\x07\x79\x4e\xc6\x66\x85\x3c\xf7\xfb\x44\x90\xe7\x92\x8b\x22\xe4\x39\xbb\x7c\xd4\x8d\xf0\x08\x41\x4e\xdd\x74\x10\x73\xc9\xfa\x82\xa3\x2c\x7c\x52\xbf\xe0\x28\x2b\xa0\x5f\xbf\xe0\x28\x77\x27\xf1\x66\x79\x71\xe8\x6e\x96\x17\x37\x99\x8d\xba\x08\x19\xc6\xfa\x05\x47\xb9\x93\xbb\xae\x1b\xad\xe1\xea\xfd\x06\x47\x3c\xe7\xa6\x83\x98\x1b\xd0\x46\x6b\x58\xdf\xf0\x0b\x9c\xf2\x6f\x90\x6f\xf2\x63\xc1\xa3\xcb\x14\xe3\xee\xc7\xe9\xc7\x1d\x0e\xf9\x7e\xad\x3d\x4c\x3f\x28\x6a\xf5\x38\xfd\xb0\xef\x8b\x9c\xf2\x6f\x14\x1c\xa6\x9f\x5b\xce\x17\x39\xe5\xeb\x94\xfe\x22\xa7\x6c\x59\x4e\xfd\x22\xa7\x7c\xb7\xe7\x26\xd3\xd6\xfb\x2d\x26\xaa\x4f\xb6\x39\xf2\xc9\xbe\xe9\x17\x74\x19\x28\x5e\x0a\x04\x86\x95\xe2\x25\xf3\xda\x95\xe2\xa5\xa0\x5b\x40\xf1\x52\x00\x86\xac\x14\x2f\x05\xfd\x77\x8a\x97\xe8\xab\xf8\x56\x8a\x97\x82\x0e\x04\x2d\x9a\x32\x59\xd2\x4a\x8b\xa6\x4c\xca\xa1\x12\x39\x65\x4a\x84\x2a\x91\x53\x8d\x1e\x81\x67\xe8\xfb\x12\x39\x55\x23\x12\x22\x27\x9b\x31\x54\x22\xa7\x1a\xbd\xfb\xe1\xc8\x3b\x5c\x8e\xbe\x37\xd1\x28\x6c\xaa\x24\x97\x1a\x85\x4d\x8b\x85\xa1\x51\xd8\xb4\x00\x5d\x9b\x2d\x9a\xc8\x10\x37\x5a\x34\xad\xec\x55\x32\xbf\xbc\x1c\x15\x8e\x06\x47\x95\x5f\x26\x8e\x48\x46\xe2\xff\x35\xc8\x7a\x7e\x87\x66\x81\x52\xf3\xe8\x5b\x06\x8d\x0c\x1b\x64\xbd\xc2\x88\x6c\x90\xf5\x06\xa3\xa7\x41\xd6\x53\x04\xb6\xa1\x97\xa7\x80\x7e\x43\x2f\x4f\x09\xfb\x86\x5e\x9e\x02\xfa\x0d\xb2\x5e\x20\xe5\xd0\x20\xeb\x85\xdf\x1d\x88\xf0\x92\xe7\x20\xb3\x31\x92\x1b\x91\xd3\x83\x14\x70\x23\x3a\x7a\xa8\x66\x68\x44\x47\x0f\x31\x64\x7b\x61\x3c\xb1\x6a\xb4\x00\xe3\x89\x34\x4d\x0b\x30\x9e\x70\x12\x5a\x80\xf1\x44\x8c\xdc\x02\xeb\x19\x33\xae\x7d\xd8\x51\xb2\x40\xbd\x05\xd6\xb3\xe2\x35\x59\xca\xd3\x5f\x24\xb8\x16\x58\xe5\xb3\x37\x68\x5c\xc4\x47\x61\x95\x67\x98\xb5\x2f\xa8\x4a\x97\x8c\x5f\x0b\x2c\xe5\x7e\xf6\x2f\xa8\x4a\xe6\x30\x5b\x60\x29\x07\xdb\x6f\x81\xa5\x9c\xd0\xa5\x05\x96\x72\x72\x75\x2d\xb2\x94\x3b\xcc\x22\x4b\x39\x03\xb2\x45\x96\x72\x26\x5c\x43\x76\xdc\x36\x30\x2d\x52\x82\x8b\x5f\xd5\xbe\xa0\x2a\x07\xfc\x87\x86\x24\xb9\x2d\x5b\x1a\x92\xe4\x21\x78\x15\x96\xeb\xc7\xff\xb1\x5c\x17\xef\xce\x72\x8d\xef\xdb\x90\x16\x4f\x00\x18\x0d\x69\xf1\xc4\xd4\x6c\x48\x8b\x27\x87\x20\x41\x55\x72\x20\x23\x2d\x9e\xc8\x76\x36\xa4\xc5\x13\x99\xc2\xf6\x05\x55\x39\xf9\x9c\x5f\x50\x95\x53\xf0\x97\x95\x73\xbc\xa5\x2f\xa8\xca\x74\x0a\x7f\xdb\x17\x54\xe5\xe4\x34\xfa\x82\xaa\x9c\x7c\xbb\x5f\x50\x95\x53\xf0\x7f\x8b\x23\x9f\x65\xf3\x4b\x9f\x9a\x7c\x23\x4b\x48\x4b\x6e\x39\x9c\xcb\x6c\x39\x04\xf6\x2d\xb3\xe5\x78\x87\xcc\x96\xa3\x45\x99\x2d\x07\xef\xac\x65\x3c\x5a\x12\x4f\xed\x8b\x9c\x72\x85\x65\xde\xbe\xc8\x29\x57\x47\x48\x66\xcb\x01\xc2\x6b\x99\x2d\x87\xbc\x6f\xcb\x6c\x39\xc3\x73\x6c\x39\x78\xd7\x2d\xb3\xe5\x0c\x7f\x89\x37\xd8\x7d\x6a\xbc\x41\x17\x86\x4c\xd3\xca\xe1\xfd\x68\x5a\x49\x82\xa5\x7d\xb0\x52\xee\x8e\x9e\x0f\x56\xca\x56\xef\xb5\x2f\xe2\xca\x9d\x90\xb5\x15\x4a\xa1\xbd\x66\xa1\x14\x9a\x64\x41\xfb\x22\xae\xbc\x7c\xd7\x85\x88\xc4\x51\x50\xf0\xd8\x89\x5d\x5a\xa1\x14\xfa\x77\xbf\xce\x91\xff\x1b\x1c\xf1\x96\x80\x9c\xe8\x65\xfd\x36\x20\xa7\xf5\xbb\x1f\x5b\x6a\xf3\x0e\x6c\xa9\x70\xa3\x1a\x11\x97\x6a\x18\x8d\x88\x6b\xc1\xe1\x6f\x95\x7c\x31\x14\xb5\x56\x09\xfa\xc9\xfb\xb6\x2f\xe2\xca\xc6\x43\xad\xb2\xdd\xfa\x2c\xd5\xed\x96\x67\xa9\x7a\xbb\x7c\x69\x22\xae\xa3\x0d\x15\x69\x7f\xad\x25\xe2\xd2\x21\x6b\x90\xf5\x74\xdd\x1a\x64\x3d\x55\xb3\x5b\xa5\x6b\x25\x6c\x9a\x06\x59\xef\x92\xd2\x6c\x34\xbe\xbd\xa4\x8c\x1a\x8d\x6f\x2f\xf4\xd1\x46\xc4\x75\xa9\x7b\x6d\x44\x5c\x97\xf8\xa4\x11\x71\x59\x75\xdb\x88\xb8\xac\xd7\x6b\x44\x5c\xd6\xee\x36\x22\x2e\xeb\x81\x1b\x11\xd7\x3d\xfe\x12\x77\x02\xa4\xac\x11\x71\x59\x1d\xdc\x68\x7c\x7b\x71\x54\x1b\x5a\x7a\x32\xbb\x1b\x11\x97\xe0\x77\x43\x4b\xef\x5e\xef\x80\x3b\x11\xbd\x26\xee\x44\xfb\x2b\x71\xd1\x90\x24\x0f\xbe\x78\x64\xc7\x83\x3b\x07\xb2\xe3\x81\xe0\xb6\x21\x3b\x6e\x85\x5e\x43\x76\xdc\x76\x2e\x0d\xd9\xf1\x00\x39\xa9\x21\x3b\x1e\xc8\xb6\x34\x64\xc7\x43\xf3\x7f\x04\x2b\x7e\x5a\x64\xc7\xcd\x81\x35\x64\xc7\x7f\x7b\x21\xb2\xe3\xc1\x25\x12\xd9\xf1\x50\x7d\x32\xe4\xed\xaf\x77\xb8\x1c\x71\xee\x0b\xc6\x4a\xf6\xa3\x0c\xf2\x7f\xb0\x32\xdb\x00\x11\x25\xb0\x68\x5f\x30\x56\x7e\x8b\xcd\x17\x8c\x95\xea\x02\xf6\x05\x63\x45\x2d\xde\xf6\x05\x63\xc5\x06\x51\xed\x0b\xc6\xca\x6f\x59\x22\x18\x33\x03\xd7\x08\xc6\x2a\x6c\xd5\x46\x30\x56\xdd\xc1\x09\xc6\x2a\xfe\x58\x23\x18\xfb\x2d\x60\x04\x63\xd3\x21\x88\x26\xde\x72\x20\xa3\x89\xb7\xdc\x0c\xd1\xc4\x53\xb6\xa6\xa1\x89\xb7\xf0\x5a\x1b\x9a\x78\xbf\xe9\x8e\x26\xde\x6f\x61\x40\x13\x6f\xf9\xfd\xd0\xc4\x5b\xc5\x73\x8d\x23\xac\x45\x13\x6f\x91\xa2\x6a\x68\xe2\x29\x8c\xd3\x26\x01\xa5\x63\x62\x12\x50\xba\x14\xa0\x97\xb7\x48\x43\x35\xf4\xf2\x16\x5e\x6b\x43\x2f\xcf\xc0\xb7\xa1\x97\x67\x3e\xbc\xa1\x97\xb7\x1c\x4b\xe8\xe5\x2d\x17\x45\x64\xc7\x95\xad\x69\xc8\x8e\x2b\x46\xd3\x90\x1d\x0f\x6e\xa9\xc8\x8e\x07\x0a\x40\x1a\xb2\xe3\x01\x60\xb5\x01\x39\x85\xe5\x2f\xe9\xdc\x48\x5e\xb4\x01\x39\x29\x92\xda\x80\x9c\xc2\xf4\x0e\x40\xd3\xcb\xe7\xfc\x92\x1a\x51\x6b\x81\x9c\x64\xa7\x37\x60\xa5\xe8\x62\x8a\xb6\x78\x76\x32\xa2\x2d\x9e\xf1\x99\x1b\xfa\xe1\xc5\xf9\x80\x7e\xb8\xec\xed\x06\x74\xf4\x10\x63\xb5\x8d\xbe\xb6\xf7\xfb\xa2\xa3\xf6\xf3\xf8\x80\x95\xcc\xe9\x37\x60\xa5\xe7\x77\x77\xca\x81\xfd\x0e\x9b\x3c\xf3\xef\x97\x74\x9c\x73\x4c\x1c\x3a\xce\x11\x9b\xb5\x43\xc7\x39\xdf\xfc\x17\x39\x35\x65\x35\xdb\xc1\xa3\x75\x0b\x38\x78\xb4\x6e\x16\x87\xba\x49\x47\xeb\x81\x70\x48\xaa\xa2\xa1\x11\x7e\xfd\x2a\x47\xaf\xd5\x23\x70\x09\x37\x43\x70\xa5\x67\xf8\x2c\x7a\xb4\x3e\x0b\x1e\xad\x9b\x28\xb8\xd2\xe3\x36\x0d\xae\x54\x74\x9e\xae\x1e\x2d\xcf\x72\xf5\x68\xb9\x1f\xb8\x92\xe0\x7e\xbb\x44\xe8\xba\x83\x17\x8f\x56\x47\xe0\xe2\xd1\xea\xb1\x5f\xdc\x56\xdf\xd2\xc5\x6d\x75\x95\xba\xb8\xad\x7a\xf3\x17\xb7\xd5\xd9\x71\x71\x5b\xdd\x80\x2e\x6e\xeb\x7f\x23\xf9\xdf\x4b\xf2\xc5\xa3\x75\x67\xbc\x78\xb4\x4e\xf0\x8b\x47\xcb\x82\xd9\x1f\x3c\x5a\x16\xa2\xfe\xe0\xd1\x76\xcf\xe9\xd1\x0e\x8e\x70\xe6\xbb\x47\x38\xf3\x50\x5d\xfa\x83\xe9\x0c\xc8\xfe\x68\x7a\xe3\x08\xd3\x19\x3c\xfd\xc1\xf4\xee\xfd\x30\x9d\xcd\xa2\x3f\x98\xce\x07\xeb\x0f\xa6\x33\x20\xfb\x83\xe9\xcd\x23\xec\x63\x58\xf7\x07\xfb\x58\xce\xfa\x83\x7d\x64\x5e\xfb\x6b\xee\xd3\x23\x54\x5f\xe1\x6d\x74\x88\x7c\x96\x96\x77\x88\x7c\x6a\x4e\x74\x1a\x36\xa9\x39\xd1\x69\xd8\x14\xc8\x3e\x76\x1a\x36\x85\xdf\x55\xf0\xca\xa3\x47\x78\xe5\x3e\x35\x4d\x99\x2c\x85\xe9\x34\x65\xa2\x9b\xf4\xdb\x81\x9c\xcc\x8e\x77\x20\xa7\xe4\x1b\xa4\x61\x53\xea\x1e\xe1\xb1\x6b\x3b\x0d\x9b\x6c\x49\xd3\x69\xd8\x94\xb4\x9d\x86\x4d\xf4\x96\x7e\x3b\x0d\x9b\xec\x5f\xd1\x69\xd8\x94\x58\x30\x3b\x0d\x9b\x12\x79\xdf\x4e\xc3\xa6\xc4\x12\xd9\x69\xd8\x94\x58\x76\x3b\x0d\x9b\x12\xbe\x53\xa7\x61\x93\x8d\x74\x3a\x0d\x9b\x52\xf1\x39\xb1\x8f\xd4\x41\xa7\x61\x93\x22\x8d\x9d\x86\x4d\x82\x84\x9d\x86\x4d\xf4\xb9\x7e\x3b\x0d\x9b\x04\x09\x3b\x91\x53\xb9\x9e\xa3\xa9\x16\xa4\xbb\x4e\xe4\x54\xbd\x3b\x91\x53\x65\x7b\xef\x44\x4e\x95\x4d\xa6\xd3\xcc\xa9\xfa\x5e\x68\xe6\x54\xd9\xb8\x3a\x51\x55\xc5\xb9\xe8\x44\x55\x0a\xef\x77\xa2\xaa\xda\x3c\xb7\x39\xc7\x3b\xa3\x99\x53\x65\x93\xe9\x44\x55\x95\x00\xb6\x13\x55\x09\x6d\x76\xa2\x2a\x9b\xdb\x76\xa2\x2a\x5b\xab\x75\xa2\x2a\x39\xbd\x9d\xa8\xaa\x4f\x8f\x88\x3a\xd8\x3a\x3a\x51\x55\x27\xf5\xd3\x89\xaa\x3a\xe2\x3e\x9d\xa8\xca\x2a\xb5\x4e\x54\x45\x2f\xeb\xb7\x13\x55\xd9\xae\xad\x13\x55\x75\x08\xb1\x9d\xa8\xaa\x3b\x76\x89\xaa\xec\x73\xdd\x89\xaa\x3a\xc0\x55\x27\xaa\xb2\x2a\xa1\x13\x55\xc9\x32\xea\x44\x55\x82\x68\x9d\xa8\xaa\x83\x36\x74\xa2\x2a\xfa\x71\xbf\x9d\xa8\xaa\x43\xfc\xec\x44\x55\xd3\x77\x46\x54\x35\x1d\x91\x44\x55\xc2\x9e\x9d\xa8\xca\x86\xb9\x9d\xa8\x6a\x25\xaf\x49\xd4\x91\xbc\x26\x51\x07\x79\xe6\x4e\x54\xb5\x86\xbf\x24\xea\x60\x99\xef\x44\x55\xcb\x77\x4d\x54\xb5\x60\xda\x74\xa2\xaa\x05\x39\xb0\x13\x55\x2d\xca\xcd\x3a\x51\xd5\xea\xfe\x92\xa8\x8a\xc2\xad\x6e\x54\x35\xf6\x1f\x4b\x72\x37\xe0\x22\xdc\xeb\x06\x5c\x00\x6c\xdd\x80\x8b\xbd\xa9\x1b\x70\x41\xe5\xe9\x06\x5c\xc3\x87\xc6\x74\x3f\xa6\x01\xd7\xd4\x3c\x4d\xf7\x1c\xbd\xc6\x00\x22\x3a\x01\xd7\x21\x01\xde\x09\xb8\x0e\x61\x7e\x27\xe0\xba\xec\x77\x9d\x30\xca\x42\x80\x2e\x70\xe5\xd2\x53\xcd\x5a\xf2\xaa\x0d\xa3\x1c\xe4\x86\x51\xdb\x73\x84\x51\x04\xe8\x9d\x16\x4d\x4f\xf0\x97\x9b\x23\x9e\x93\x9a\xa7\xe7\xf7\x2c\x9f\x8f\x27\x67\xb9\x53\xf3\x64\xf9\x71\xa7\xe6\x49\xcf\xa6\x53\xf3\xf4\x10\x26\x76\x6a\x9e\x1e\xad\xa5\xe6\xe9\x61\x5f\xee\xd4\x3c\x59\x83\xd4\xa9\x79\x7a\x48\xb7\x74\x6a\x9e\x1e\x40\x83\x4e\xcd\xd3\x13\xbc\x7b\xe7\x0e\x3c\x35\xc0\xd5\x43\x56\xbd\x1b\x46\x05\xaf\x82\x7d\xaf\xf7\xc3\x3e\x98\xc1\x9d\x30\xea\x71\xf2\x13\x2b\x59\x5e\xdd\x69\xdf\xf4\x90\x60\xe9\xb4\x6f\xb2\x93\x6f\x37\x8e\xc2\xab\xeb\xc6\x51\xc3\x23\xe2\x28\xa7\x98\x71\x14\x81\x68\x37\x8e\x72\x53\x33\x8e\x72\x9c\x19\x47\x39\x7a\x8c\xa3\x96\xe7\x88\xa3\x9c\x46\xc6\x51\xc0\x74\xdd\x38\xca\xa9\x62\x1c\x45\xd9\x79\x27\x8e\x0a\x43\x8b\x88\x05\x1d\x91\xc4\x51\x01\x60\xa7\x1b\x47\x69\x91\x71\x94\x13\x8e\x38\x4a\xf5\xc3\x4e\x1c\x65\x87\xf1\x4e\x1c\x95\x01\x2c\x3b\x71\x54\x01\x23\xe9\xc4\x51\x05\x54\xa4\x13\x47\x95\xc7\x6b\x02\x3c\x5e\xaf\x49\xc9\x3d\xf0\x65\x27\x8e\x92\x93\xdd\x89\xa3\xec\x76\xde\x89\xa3\x0a\xe9\x81\x3e\x8c\x13\x3d\x77\xb9\x1f\xef\x9a\x18\xab\x38\x26\x88\xb1\x0a\xac\xf6\x4e\x8c\x55\x1d\x9f\xc4\x58\x36\xf3\xec\xc4\x58\xd5\xcd\x97\x18\xcb\x66\x4e\x9d\x18\xab\xea\x40\x10\x63\xfd\x36\x27\x62\xac\xdf\x06\x44\x8c\xa5\x4a\x63\x27\xc6\xaa\xcd\x5f\x12\x27\xe2\xf2\x75\x62\x2c\x3b\xcd\x74\x62\x2c\x65\x5f\x3b\x31\x96\xed\xa2\x3a\x31\x56\xd5\x81\x20\xc6\x52\x4a\xb6\x13\x63\xd9\x4a\xaa\x13\x63\x55\x62\x89\xbe\xb4\x8f\xb7\x0b\xad\xef\xb7\xfd\x2d\xed\xf3\x7f\xd8\xa0\x4b\x84\xee\xf8\x24\xa9\xd8\xd1\x1d\x97\xf6\xd6\xd1\x1d\x9f\xae\x36\xe8\x8e\x4f\xd7\x17\x74\xc7\xd7\xeb\x1d\x88\x13\xdd\x3a\xd0\x1d\x5f\xe7\x2f\xbd\xe4\x8e\xea\xc3\x42\x61\xad\xa3\xfa\xb0\xc8\xcb\x74\x54\x1f\xd4\x97\xea\xa8\x3e\xfc\x96\x5d\x54\x1f\x16\x00\x4d\x47\xf5\x61\x39\x35\x11\xe4\xb3\x6e\xbf\x23\xc8\xb7\xa6\x47\x84\xc8\x04\xe8\x1d\x45\x88\x05\x7e\xdf\x51\x84\x58\xee\xfc\x28\x42\x2c\xf7\x65\x14\x21\xd6\xf2\xee\x98\x7e\xbc\x1f\xa6\x5f\xaf\x82\xe9\x64\xa8\x3a\x8a\x10\xaa\x62\x75\x14\x21\x96\x8b\xc6\x31\x44\xe6\x7e\x88\xf5\xfd\xb6\x9c\x63\x0a\x80\xe7\x44\x2d\x42\x4d\xae\x8e\x5a\xc4\x72\xe7\x47\xac\x6f\x47\x8f\xb0\x6f\x79\x15\xed\xc3\xf6\xa3\x7d\xfe\x12\xfb\xf4\xea\x8e\xf6\x31\xcc\x8e\xf6\x79\x0e\xfb\x5c\xdc\x90\x24\x17\x96\xe8\x28\x49\x3c\x4e\x00\x94\x24\x1e\xa7\x18\x4a\x12\x8f\x43\x02\x25\x89\xc7\xc9\x81\x92\x84\x72\x37\x1d\x25\x89\xc7\x61\x8d\x92\xc4\xd3\xfd\x25\x6a\x18\x6e\x7f\x28\x49\x3c\x46\x40\x28\x49\x58\x10\xdf\x51\x92\x08\xc6\x4a\x28\x49\x04\x3d\xa9\x6b\x0a\x80\x71\x86\x5c\x79\xd8\x3e\xf5\xe1\x1c\xd6\x42\x07\x0c\x70\x17\x06\x74\x40\x3b\xaa\x0c\xe8\x80\x81\x51\x37\xa0\x03\x06\xd8\x0a\x03\x3a\x60\x58\xfe\x8f\x92\x58\xde\xd9\x80\x0e\x18\x87\xff\xa3\x24\x76\x78\xae\x72\xb4\x39\x6a\x1c\x15\x8e\x90\x63\x1f\xde\x1d\x56\x2d\x9e\xd4\x00\xf0\xb2\x1c\x7f\xa0\xd6\x17\xbb\x57\x91\x7d\xef\x11\x74\x47\x72\x9f\x03\xc0\x2b\x83\xd0\x0c\x00\xaf\xcc\xd2\x33\x50\xa7\xc8\xdd\x5f\xa2\xc8\xc7\x96\x33\x54\xe4\x23\x21\x37\x54\xe4\x43\x43\x71\xa8\xc8\x47\x22\x6f\xa0\xc8\x57\x48\xcf\x0d\x15\xf9\xae\xd7\x44\xed\xe3\x7a\x3f\xd4\x3e\x18\x83\x43\x45\x3e\x36\x8b\xa1\x22\x1f\xd9\xd5\xa1\x22\x1f\x11\xc9\xa0\x90\xaa\xc3\x32\x1a\x14\x52\x75\x30\xa0\x41\x21\x55\x27\xd9\x33\xa0\x0a\x0e\xe2\xe0\x41\x21\xd5\x60\xf1\x1e\x14\x52\x59\x05\x31\xa0\x11\xae\xea\xff\xa0\xaf\xb1\xe5\x0c\xd4\x29\x9e\xe8\x39\xd2\x3b\xcd\xfb\x91\xde\x61\xd3\x1e\xd0\x08\x1f\x3c\xd3\x01\x8d\xf0\x99\xde\x9d\xf4\xce\xf4\x2a\xa4\x77\xfc\xee\xd2\x08\x81\xf0\x06\x34\xc2\xe0\x97\x46\x9d\x22\x2c\x8f\x48\xef\x20\x2c\x36\xa2\xe9\x1d\xde\x92\x1a\xe8\x7e\x3f\x8a\xac\xec\xc7\x38\x28\xb2\x0a\xf3\xaf\x52\x91\x61\xfd\x15\x9e\xf0\xa0\xfe\x4a\x9f\x64\x50\x7f\x65\xd8\x3d\xa8\xbf\x0a\xdd\x73\x08\x8f\x4c\x1f\x65\x72\xc4\x90\xa7\xfe\xca\x66\xe0\x83\xfa\xab\xe0\x04\xa0\xfe\x4a\xef\x65\x20\xab\x1e\x58\x92\x07\xb2\xea\xc1\x89\x43\x6d\x96\xf9\xbf\x41\x6d\x96\x9e\xd4\xa0\x36\xcb\x1a\xf4\x41\x6d\x56\x21\xbc\x1c\xd4\x66\xd9\xa4\x65\xc0\x3e\x94\x9f\x3a\x60\x1f\x0a\x28\x0c\xea\xaf\x2e\xcb\xc4\xa0\xfe\xea\x6e\xef\x87\x2c\x37\x4b\xeb\xa0\xfe\xea\x6e\xaf\x82\x22\x18\xec\x81\x41\xfd\xd5\x85\x86\x36\x60\x1f\x3e\x84\x89\x03\x8a\xe1\xe3\x7b\xa1\xfe\xea\x71\x8a\x51\x7f\xf5\xe0\xf1\x0d\xea\xaf\x1e\x96\xeb\x01\xc5\xd0\x5e\xd6\x03\x8a\x61\xc1\x8f\x1b\x50\x0c\x0b\xe9\x8f\x01\xc5\xd0\x2e\x0a\x83\xfa\xab\x92\xbc\x26\xe9\x1d\x6d\xc8\xa4\x77\x9c\x2a\x99\xf4\x8e\xd6\x66\xd2\x3b\xbf\xa7\x26\xbd\xb3\xbc\x3b\xe9\x1d\xdf\x52\x21\x7d\x45\xa8\x3b\x0a\xe9\x2b\x97\xc8\x42\xfa\xca\xc5\xb4\x90\xbe\x62\x43\x1f\x85\xf4\xd5\xf4\x2a\xa4\xaf\xb4\xbd\x90\xbe\xda\x9e\x23\x7d\xc5\x36\x36\x0a\xe9\x2b\xdf\x7c\x21\x7d\xe5\xa8\x2b\xda\xc7\x3b\x2b\xd8\x37\xbd\x1f\xf6\x1d\x9f\x65\x93\x5c\xf2\x39\x0f\x47\xfe\xf2\x8b\xdb\x7e\x13\x8e\xb8\xed\x37\x22\x89\xdb\xa2\x6f\x9e\xb8\x2d\x92\x61\x1c\x00\x65\xe6\x92\x07\x40\x99\x3a\x2b\x03\xa0\x2c\xe2\xab\x0d\x22\x3c\xf5\x52\x06\x11\x5e\xd2\x06\x22\xbc\xe4\xec\x20\xc2\xb3\xc9\xf0\x20\xc2\xb3\xc3\xf1\x20\xc2\xb3\x66\x74\x00\x94\x25\x67\x07\x8a\x7c\xf1\xf1\x7f\xa4\x85\xa6\x4f\x46\x5a\xc8\x39\x0d\x50\x66\xa9\xd6\x00\x28\x4b\xce\x2a\xc0\xb0\xe4\x42\xd4\x4c\x6d\x79\x44\x6a\xcb\xb5\x00\x30\xcc\x36\xc6\x03\x30\xcc\x1e\x38\xa3\x99\xda\xf2\x1c\x36\x6c\xcf\x61\x83\xa3\x1c\x30\xac\xba\x44\xd2\x3c\xaa\x3a\xfb\x69\x1e\xa5\x97\x3c\x68\x1e\x55\x7d\xd7\x34\x8f\xaa\x6e\x7f\x34\x8f\xaa\x2e\x7c\x34\x8f\xd2\xdb\x1d\x34\x8f\xd2\x63\x1f\x50\x0c\x6d\x4b\x36\xa0\x18\xea\x4f\x0f\x28\x86\x76\x15\x19\x50\x0c\xab\x0b\x2d\xcd\xa3\x6a\xf7\xdc\x67\x83\x22\xb0\x43\xfa\xa1\x6f\x5e\xfa\x21\x64\x89\x01\xfd\xb0\x03\x2e\x0e\xe8\x87\xff\xf9\x8f\x7f\x2c\xc9\x30\x13\x3b\x7e\xf1\x80\x99\x38\xc0\x0f\x07\xcc\x44\x85\xd4\x07\xcc\x44\x3b\x9d\x0d\x98\x89\xdd\x3d\x14\x66\xa2\x3d\x9b\x07\xcc\x44\xab\x5d\x86\xcd\xa3\x08\x9c\x06\xcd\xa3\x3a\xa8\xe7\xa0\x79\x54\xc7\xbf\x1d\x34\x8f\xea\xee\xc4\x34\x8f\xb2\x5f\xda\xa0\x79\x54\xc7\x6f\x1c\x34\x8f\xb2\xd7\xf3\x18\x98\xae\x57\x30\x30\x1d\xbc\x79\x4c\xec\xa3\xe0\x71\x4c\xb2\x5e\xbe\xce\x89\x7d\xf8\xda\x63\x82\xb5\xbb\x91\x20\xab\x6e\xd9\xf2\x40\x56\x5d\xdf\x7e\x20\xab\xbe\xb6\xbf\x24\xf5\xa3\x77\x86\xac\xfa\x72\x81\x46\x56\x7d\xb9\x9c\x21\xab\xbe\xb4\x88\xda\x2c\x3d\xef\x41\x6d\xd6\xd2\xe3\xa3\x36\x6b\xb9\x28\x52\x9b\xa5\xaf\x3d\xa8\xcd\xb2\xf5\xec\xa0\x36\x6b\x39\xc5\xa8\xbf\xd2\xd7\x1e\x48\xa7\x2f\x32\x77\x03\xe9\x74\xe3\x8c\x01\xc5\x70\x91\x6f\x1c\x4a\xa7\x6f\xff\x87\x0d\xfa\x55\x4a\xa7\xeb\x49\x29\x88\xae\x37\x01\x71\xf0\xc0\xf0\x18\x10\x07\x8f\x13\x0e\xe2\xe0\x71\x8a\x41\x1c\x3c\x4e\x62\x88\x83\xc7\x69\x04\x71\xf0\xe8\xd9\x40\x1c\x3c\x4e\x0e\x88\x83\x96\x13\x0c\x88\x83\x97\xc4\xcc\x80\x38\x28\x01\x69\x40\x1c\xb4\x77\xf6\x20\xfe\x7a\xa2\xff\x23\xbd\xe3\x16\x47\xfc\xf5\x64\x9f\x8c\xf4\x8e\x4b\x08\xf1\x97\x05\x20\x83\xf8\xeb\x49\x3e\x0b\xe9\x1d\x27\x1c\xf1\xd7\x43\x9e\x72\x10\x7f\x3d\x2e\xf3\xc4\x5f\x0f\xaa\x0f\x83\xf8\xcb\xda\xd6\x41\xfc\xf5\xc0\x36\x19\xc4\x5f\x8f\xfe\x26\xf1\xd7\x03\x73\x69\x1c\xd3\x57\x3c\x27\xf1\xd7\xe3\xb6\x42\xfc\x65\x55\xdc\x20\xfe\x7a\xc8\xe9\x0f\xe2\x2f\x7b\x58\x0e\x89\x83\x8e\x09\x88\x83\xbf\xc5\x1b\xe2\x60\x24\x51\x32\x24\x0e\x3a\x8f\x20\x0e\x46\xb8\x19\x03\xe2\x60\x24\xc1\x32\x24\x0e\x1e\xff\x47\x8a\xca\x11\x02\x71\x30\xc2\x7f\x1f\x10\x07\x23\x09\xb2\x61\xc9\x95\x23\x0b\xe2\x60\x70\x65\x80\x38\x18\x5d\x7b\x20\x07\x06\xd7\x17\xc8\x81\x36\xda\x18\x90\x03\x03\xde\xf5\x84\x1c\x68\xf7\xc9\x09\x39\x30\xc3\x16\x9a\x90\x03\xed\xc0\x33\x21\x07\x2a\x1a\x3c\x21\x07\x66\x80\xc7\x09\x39\xb0\xc0\x83\x9e\x90\x03\x4b\xf0\x2a\xa4\xa1\x48\x5b\xce\x87\x34\x14\x1e\xfb\x7c\x10\x73\x20\xc9\x37\x1f\xd2\x50\xc1\xab\x90\x86\x0a\xfe\x8f\x34\x54\xfc\x8b\x71\x31\x1f\x32\x54\x41\xf3\x0e\x7f\xf3\xa1\xcd\x50\x7d\x9f\x6f\xbe\x64\xa8\xc8\x99\xce\x97\x0c\x15\x83\x7c\x7e\xe1\x57\x29\x4c\x95\x89\x56\x85\x55\x7f\x13\xad\x0a\xe5\xf2\x26\x5a\x15\xaa\x04\x4f\xb4\x2a\x54\x10\x9e\x68\x55\x28\x7b\x32\xd5\xaa\xc0\xaf\x9a\x68\x55\x18\x7e\xcd\x97\x2c\xd4\xf6\x88\x2c\x14\x7e\xce\x7c\xc9\x42\xe1\x23\xcc\x97\x2c\x14\xbe\xe1\x0c\x64\xa1\x18\x4a\x93\x6a\xac\xca\xf6\x30\x03\x59\x28\x96\xa5\x19\xc8\x42\x4d\xff\x47\x16\x0a\x7f\x73\x06\xec\xc3\xc7\x9b\x41\xfb\xb8\x5f\xc0\x3e\x86\xd9\x0c\xd8\xc7\x86\x37\x03\xf6\x1d\xff\x87\x7d\xf8\x63\x33\x60\x1f\x3e\xde\x0c\xd8\xb7\xfc\x1f\xf6\x1d\xef\x80\x7d\x0e\xc1\x80\x7d\xf8\xb7\x33\x62\x1f\x9b\xe1\x8c\xd8\xc7\x22\x3c\x23\xf6\xb1\x01\xcd\x88\x7d\xcb\x5f\x62\x1f\x9e\xd4\x8c\xd8\x77\xfc\x1f\xf6\xb1\x91\xcc\xa8\x7d\x7c\xb1\xa8\x0d\x58\x14\xb1\xe1\x78\x4e\x1b\xfc\x1f\x8c\x12\x90\x81\xf9\xc5\x4a\x65\x36\x9f\xfa\x72\xc4\x77\x48\x34\x47\xc0\x73\x9b\x89\xe6\x08\xdb\x23\x9b\x23\x70\x15\xab\xb8\xd8\x7c\xe7\x07\x7f\x15\xbb\x9f\xcc\x64\x3a\xc9\x6b\x36\xce\x61\xfb\x17\x2b\x95\x0d\x57\x7d\x7e\xb1\x52\xd9\x44\x1d\xf3\x8b\x95\x8a\x12\xb4\xf3\x8b\x95\x8a\x3d\x54\xe6\x17\x2b\x15\x85\x94\x66\x32\x9d\xe4\xd1\xe5\x7f\xbc\x89\x2f\x56\x2a\x9b\xcc\xf2\xfc\x62\xa5\xb2\xc1\x25\xe6\x17\x2b\x95\xed\x1c\xfb\x62\xa5\xb2\x5f\x8f\x12\x47\xcc\x9c\x2f\x56\x2a\x9b\x45\x6a\x66\xec\x73\x36\x66\xec\x63\x29\x9f\x19\xfb\x1e\xff\xa7\x7d\xbc\x89\xac\x7d\x8c\x9e\x8c\x7d\x8f\xcf\x89\x7d\x2c\x9f\x33\x63\x5f\xf2\x7e\x87\x73\xfe\x0f\xfb\xd8\x8a\x67\xc1\x3e\xb0\x8e\x59\xb0\x8f\x5c\xf9\x2c\xd8\xe7\x42\x54\xb0\x8f\xfc\xfb\x2c\xda\xe7\x55\x48\x97\x39\x53\x8b\xe9\x32\x9e\xa5\x90\x2e\xc3\xf3\x9e\x85\x74\x19\x00\xe2\x2c\xa4\xcb\xa6\x57\x81\x3f\x3d\x3c\x87\x6e\xcd\xf0\x7e\xa4\xc4\x5c\xa0\x2b\x69\x2f\x72\xe5\xb3\x92\xf6\x22\x0a\x98\x95\xb4\x17\x8c\xa0\x59\x49\x7b\xb1\xa9\xcd\x0a\xb3\x07\x27\x68\x56\x98\x3d\xae\x1a\x15\x66\x0f\x49\xa9\x59\x61\xf6\xb8\xbe\x54\x98\x3d\xae\x28\x88\x4e\x7c\xad\x91\xff\xbd\x24\xab\x47\xe1\xf4\x53\x8f\xc2\x45\x03\x3d\x8a\x48\x66\x72\xa2\x47\x11\x9d\xc4\xe8\x51\x44\x17\x14\xf4\x28\xd4\xc1\x9a\xe8\x51\x44\x97\x41\xf4\x28\xac\xcd\x9a\xe8\x51\x44\x27\x1c\x7a\x14\xd1\x85\xaf\x91\xf1\x23\xcc\x9f\x8d\x8c\x9f\xe6\x35\x32\x7e\xee\x69\x8d\x8c\x1f\x7e\xe3\x6c\x64\xfc\xfc\x7c\x88\xfc\xa9\xd0\x35\x11\xf9\x8b\x2e\x4b\x88\xfc\xc5\xe9\x73\x62\x9f\x8b\x46\x33\xe3\x87\x7d\xcd\x06\x8c\x5c\x13\x91\xbf\xec\x96\x83\x90\x5f\x26\xd9\x33\x11\xf2\xfb\xed\xbd\x08\xf9\xd9\x4b\x77\x22\xe4\x67\x43\xd2\x89\x90\x5f\x75\xe8\xa2\xc1\x27\xd0\x32\xd5\xe0\x73\x61\x57\x83\x4f\x3f\x00\x0d\xbe\xe2\x32\x88\xce\x5e\x83\xe1\x3b\xbf\x68\xa5\xaa\x27\x37\xd1\xd9\x6b\x0e\x79\x74\xf6\x9a\x13\x0e\x9d\xbd\x86\xd7\x33\xd1\xd9\x6b\x4e\x15\x74\xf6\x9a\x13\x15\x9d\xbd\xf6\x7a\x34\xc9\x1b\x7a\xf7\xc5\x11\x6f\xe9\x8b\x56\x6a\x87\xc8\x37\xd1\xe0\x93\x21\x30\x87\xf9\x46\x6c\xa7\x8e\xca\x3e\xd0\x73\x9a\x6f\x64\x79\xb1\x8e\x0a\x3f\x6e\x4e\x3a\x80\xb8\x08\x4f\x84\x9b\xdc\x9c\xbe\x68\xa5\xda\x80\x67\x4e\x3a\x80\x54\xcf\xd1\x01\x84\xec\xf1\x9c\x88\x33\x01\x08\xcd\x2f\x96\xa8\xbf\x85\xe8\x03\x84\xea\x6f\x09\xf9\x00\xa1\xfa\x5b\xce\x20\xdd\xc9\xa2\x9f\x90\xee\x6e\xf7\x1c\x5a\xc3\x00\x50\x13\xd2\xdd\x75\xd4\xa1\x9e\xf7\xb8\x80\x2d\x32\x9a\x40\xa2\x13\xf5\x3c\x3d\xf6\x89\x7a\xde\xe3\xb6\x82\x7a\xde\xe3\x48\x46\x3d\xef\x71\x93\x41\x3d\xef\xd1\x22\xd4\xf3\x1e\xe7\x18\xea\x79\x8f\xf3\x4f\x2d\x07\xa2\xb8\xa9\x96\x83\xf3\x0f\x2d\x87\xc7\x39\x8d\x96\xc3\x43\x3a\x69\xa2\xe5\xf0\xe8\x04\xa1\xe5\xf0\xb8\xf4\x48\xc8\xf3\x8b\x49\xc8\x5b\xfe\x0f\xfb\xfc\x62\x12\xf2\x88\x0c\xa7\x84\x3c\x57\x14\x09\x79\x7e\x69\x08\x79\xea\x66\x4c\x09\x79\xfa\xa2\x12\xf2\x48\x39\x4c\x09\x79\x3e\xa7\x84\x3c\x62\xdd\x29\x21\xef\x7a\x2e\x91\xb4\xe1\xee\x87\x8c\xad\x4b\xe4\x17\x75\x34\x3d\xef\x09\x59\x2f\x68\x11\x64\xbd\xe8\xd6\x08\x59\xef\xb7\x98\x1e\xd2\xb2\x8e\xc1\x43\x5a\xf6\xfa\x64\xa4\x65\x5d\x27\x0e\x69\xd9\xa3\x0d\xa4\x65\x75\x3f\x0f\xf6\x11\x75\xcc\x2f\x22\x69\x5f\xbc\xf0\xef\x25\xf9\x62\xba\x93\xff\x6a\x3a\x8f\x72\x35\x1d\x83\x2e\xc9\x6a\x7d\xa0\xab\xe9\x3c\xe6\x25\x23\xed\x50\xba\x98\xee\x12\x72\xc9\x48\x93\x64\x98\x57\xd3\xf9\x44\x5f\xb0\xd2\x0a\x34\xbb\x79\x51\x04\xab\x5e\x13\x45\x30\x32\x77\xf3\xa2\x08\xe6\x2e\xf6\x05\x32\xad\xb9\xfb\x7d\x81\x4c\x53\xc3\x77\x7d\x81\x4c\x53\xc4\x66\x7d\x81\x4c\x6b\x40\x4e\xeb\x0b\x64\x5a\x83\x7f\xbb\x1e\xd4\xc2\xc8\xa7\xae\x2f\x90\x69\x03\xcf\x66\x7d\x81\x4c\x1b\x8f\x57\xf9\xec\x53\xc8\x6f\xa1\x0f\x21\xc9\x7c\xa1\x0f\x21\x1d\x7d\xa1\x0f\x21\x71\x7d\xa1\x0f\x71\x79\x2f\x4b\x7d\x88\xeb\x2f\xe1\x61\x42\x16\x5a\xe8\x43\x3c\x6c\x39\x0b\x7d\x08\xa7\xc3\x42\x1f\xc2\x29\xb6\x5e\xb3\xd5\xdc\x01\x7d\x08\xa7\xf4\x42\x1f\xe2\x61\x93\x59\x2f\xd9\x6a\x26\xf1\x7a\x69\x22\x49\xde\x77\xa1\x1d\xf1\x6a\xfb\x4b\xb6\x3a\x7b\x8e\x6c\x35\xa5\x29\x0b\x5d\x89\x42\xc5\xd5\x42\x57\xa2\x64\xff\x37\xf8\x25\x6f\x17\x5d\x89\xe2\x77\x80\xe4\x27\x87\x64\x41\xf2\x7b\x1e\x6d\x38\x1c\xf9\xd4\x97\x5f\x72\x4d\x48\x7e\xf2\x4b\x16\x24\x3f\xd5\xfa\x16\x24\x3f\x35\x75\x97\x95\x53\x0c\xf9\x65\xe5\x14\x13\x67\x41\xf2\x93\xdd\xb2\x20\xf9\xb9\x28\x2e\x48\x7e\xf2\x59\x16\x44\x3e\x59\x31\x0b\x22\x9f\x6c\x93\x05\x91\xef\x09\xde\x1d\x1b\x82\xbf\xc4\x86\xe8\xdd\xb1\x01\x06\xec\x82\xc8\xf7\x40\x85\x5c\x10\xf9\x1e\x36\xc3\x05\x91\xef\x85\x9d\xbe\x2c\x81\x62\x21\x5a\x96\x40\x01\xc8\x2e\x88\x7c\xf6\x5a\x5f\x90\xf5\xec\x26\xbd\x20\xeb\xd9\x31\x7a\x41\xd6\xb3\x8e\x71\x41\xd6\x0b\xbf\x3b\x2c\x8e\x78\x9f\x94\x40\x05\x18\xf6\x8b\x12\x28\x6b\x1c\x17\x64\xbd\xc0\xf2\xb9\x20\xeb\x99\xb8\x58\xc9\xcc\xb9\x47\xdf\x73\x66\x02\xf4\x65\x09\xd4\xf1\x2a\xdf\xbb\xce\xbe\x4f\xc8\x7a\xf9\xf5\x1c\x59\xe7\xe3\x39\xb2\xce\xac\x0c\xcb\x12\x28\x56\x94\x05\x59\x2f\x13\x3d\x2c\x4b\xa0\x58\xca\x17\x64\xbd\xec\x4c\x85\xac\x97\xd9\x60\x17\x64\xbd\xc4\xd2\xba\x20\xeb\x65\xa2\x8e\x05\x59\x2f\x3b\x06\x21\xeb\xd9\xa5\x6f\x41\xd6\xcb\x38\x48\x0b\xb2\x5e\xba\x5e\x85\xcc\xb9\xb3\x18\x42\x5e\xf6\xbd\x40\xc8\xcb\x6c\xf6\x0b\x42\x5e\x7e\xfc\x1f\xc4\x48\x9c\xd8\x05\xe9\xae\xc5\xf0\xc7\x92\xbc\xe0\xe3\x55\x27\x3f\x7c\x3c\x5b\x18\x2d\xf8\x78\xa6\x15\x16\x7c\x3c\xc3\xe0\x05\x1f\xcf\x3e\x0d\x0b\x3e\x5e\x25\xf9\xbf\xe0\xe3\x55\x7c\xd1\x05\x1f\xaf\x4e\xff\x47\x52\xdd\xa5\x07\xd2\x9d\x1a\xcc\x0b\xd2\x5d\x65\xaf\x5f\x90\xee\x0c\xe5\x17\xa4\x3b\x93\x21\xab\x98\x54\xe7\xb5\x28\xac\xe7\xc2\x00\x78\xa3\xee\xea\x02\xbc\x51\x93\x75\x01\xd0\x0c\x72\x52\x0b\x80\x66\xe0\x45\x2e\x00\x9a\xe1\x50\x02\xa0\x19\x7e\x22\x00\x9a\xe1\xf2\x02\x40\x33\x9c\xee\x55\xce\x24\xb6\x03\xd0\xcc\xe1\x55\xe0\x4c\x02\xd7\x2c\x65\xc7\x87\xbf\x24\x7b\xec\xc7\xa4\x92\x49\x18\x72\x01\xd0\x58\xda\xba\x00\x68\x16\xfb\xf2\x02\xa0\x59\x0e\x4f\x00\x1a\x39\x32\x8b\x4a\xa6\xe5\x30\xa3\x92\x69\xe1\x79\x2f\xc0\x1b\xc3\xe0\x05\x78\x23\xdf\x63\x01\xde\x9c\xe0\x11\x95\x5a\xa4\x00\x16\xe0\xcd\x19\x1e\x75\x8e\xbc\xdf\xe0\x88\xb7\x04\x78\x73\xb4\xcf\x4a\x26\xdf\x52\xa3\x52\xcb\xa5\xb5\x51\xa9\xe5\xb6\x29\x05\x8f\xf2\x9a\x25\x05\xcf\x05\x05\x0a\xde\xe3\x2f\xa1\xe0\x3d\x6c\xc5\x0b\x0a\xde\x43\x7e\x7a\x41\xc1\xb3\x01\xc2\x82\x82\x67\xcb\xa4\x05\x05\xcf\x52\x8a\x05\x05\xef\x69\x5e\x85\x1c\x6d\xf7\xee\xe4\x68\xe1\x90\x2c\x28\x78\x16\x6b\x2c\x28\x78\x16\xe4\x2e\x28\x78\x4f\xf7\xc9\xc8\x41\x37\x8f\xc8\x41\xc3\xa9\x5f\x50\xf0\x1e\xe8\x64\x4b\x0a\x9e\xe3\x13\x0a\x9e\xac\xf6\x05\x05\x4f\x2f\x6b\x41\xc1\xb3\xdf\xf1\x82\x82\x17\x1d\x21\x50\xf0\xa2\xdb\x0a\x34\x3b\xfb\x32\x2f\x68\x76\x91\x0c\xea\x82\x66\xa7\x06\xf3\x82\x66\x17\xa3\x77\x5f\xfc\x12\x8b\xa0\xd9\xd9\xe8\x69\x41\xb3\x93\x45\xbf\xa0\xd9\x45\x47\x08\x34\xbb\xe8\x77\x80\x66\x17\x49\x12\x2d\x68\x76\x91\x38\x63\x41\xb3\xb3\x7d\xd3\x9a\xda\xe0\x55\xb4\x81\x37\x0f\xcd\x2e\x92\x9b\x5f\xd0\xec\xec\x26\xbd\xa0\xd9\xd9\x12\x6a\x41\xb3\x8b\x3a\x09\xd0\xec\x62\xf4\x7e\xd8\x97\xbd\x8a\xf6\xf1\x06\xa7\xf6\xf9\x4b\x68\x84\x5a\x0b\xcd\x2e\xfb\x1d\xa0\xd9\xd9\x58\x6a\x41\xa5\xcb\x44\x24\x0b\x2a\xdd\xcf\x0d\x81\x4a\xa7\xc2\xfc\x42\x21\xaf\x68\x03\x0a\x79\x3f\x67\x06\x2a\xdd\xa7\x1f\xf9\xef\x25\x19\x96\x5d\x73\x37\x82\x65\xd7\x00\x29\x16\x4c\x3a\x95\x93\x16\x74\xb9\xe6\xe7\x83\x2e\x67\xe7\x89\x05\x5d\xae\xb9\xf0\x41\x97\x53\x49\x6c\x41\x97\x6b\xfa\x1d\xd0\xe5\x9a\xbe\x05\x74\xb9\x16\xbc\x66\xe5\x88\x4f\x04\x5d\xae\xe9\x77\x00\xd7\xfc\x3c\x61\xe0\x9a\x46\x50\xbc\x80\x6b\x9a\x43\x02\xb8\xa6\xbd\x5e\x65\x73\xc4\xeb\x04\xae\x69\xaf\xbf\xc4\x3e\xf7\x7a\xe0\x9a\xe6\x42\x04\x5c\xd3\x48\x55\x2c\xe0\x1a\xbb\x6e\xac\xa3\x7d\xbc\x33\xe0\x9a\x06\x87\x71\x01\xd7\x34\xfd\x2a\x9b\x2b\x39\x71\x80\x6b\xa6\x16\x01\xd7\x4c\xad\x05\xae\x51\xf4\x68\x01\xd7\x4c\x2d\x02\xae\x99\xc5\x5f\x12\x18\x92\x87\x5d\xd0\xe5\xa6\x0b\x11\x50\xce\x3c\x5a\x44\x8e\xd6\xc9\x68\x03\x5b\x42\xba\x65\x03\x5b\x3d\x7d\x1b\xd8\xea\xe7\x5c\x73\xb4\x0c\x2c\xa0\x1c\xb5\x31\x16\x50\xce\x26\x21\xb0\x80\x6b\x36\xfc\xd4\x05\x5c\xa3\x66\xf0\x02\xae\x51\x30\x7c\xa1\xf3\xb0\x5d\x14\xd1\x79\xd8\x4e\x5b\xa0\x9c\xad\xaf\x06\x94\xb3\xb5\x16\x28\x67\xc3\x9f\xd9\x40\x39\x9b\x44\xc2\x06\xca\xd9\x24\x12\x36\x50\xce\x3e\xfe\x92\x1c\x66\xf5\x88\x1c\x26\xd0\xdf\x06\xca\xd9\x40\x78\x1b\x28\x67\xb3\xe8\x6f\xa0\x1c\xbb\x83\x6c\xa0\x9c\xdd\x3d\x87\x7d\xd5\x73\xd8\x47\x14\xb7\x81\x72\x76\xf6\x7e\xd8\xc7\x37\xda\xe0\x35\x1b\xdc\x7f\x83\xd7\xec\xe0\x2f\xb5\x8f\x73\xe0\x35\x9b\xea\xcb\x0d\x5e\xb3\x49\xcc\x6c\xf0\x9a\xcd\x26\xb3\x5f\xec\x23\xff\xbe\x5f\x73\xb4\xd8\x07\x96\xb3\xd9\x56\x36\x58\xce\xae\x5e\x13\xfb\xe0\xe6\xee\xd7\xef\x97\x39\xc2\xbe\xee\x1d\xc8\xd1\x92\xd4\xd8\xd0\xe5\x9e\xed\x35\xd1\x1d\x27\xa5\xb2\xd5\x1d\xdf\x5e\x13\xdd\xf1\xe5\xfd\x68\x21\xc1\x16\xb0\xa1\xcb\x3d\x8c\xb3\x0d\x5d\xce\x84\xc7\x56\x59\x6f\x7b\x0e\xca\x26\xe0\xf7\x86\x2e\x67\x42\x67\x43\x97\x7b\x88\xf7\x36\x74\x39\x53\x23\x3b\xf8\xd4\x83\x23\x9e\x7a\x79\x15\x9e\x9a\x78\x76\xd3\x96\x36\x24\xef\x47\xd6\x19\xb2\xde\xa6\x2d\xad\x55\xc5\x1b\xa5\xf1\xc0\x28\xdf\x28\x8d\x9b\x0c\xd9\x28\x8d\x9b\x11\xd8\x28\x8d\x9b\xe2\xd8\xb4\xa5\x35\xdd\xb2\x69\x4b\xfb\x65\x20\xfe\xb9\x24\x6f\x3a\xd6\x9a\x56\xd8\x74\xac\x35\x8d\xb1\xe9\x58\x1b\xc9\xb2\x6d\x3a\xd6\x46\x3f\x0a\x1d\x6b\x23\xb9\x9e\x4d\xc7\xda\x48\x09\xc6\xa6\x63\xad\x3d\x15\x36\x1d\x6b\x23\x1e\xf4\xa6\x63\x6d\x3c\x1a\x4b\x46\x9a\x85\x61\xd3\xb1\x36\xc2\xaa\xd8\x74\xac\x8d\x0e\x09\x3a\xd6\x46\x3f\x18\x1d\x6b\x23\x90\xd3\x46\x9e\x2f\xfa\x89\x90\xe7\x8b\x0e\x10\xe4\xf9\xa2\x9f\x28\x61\x03\xcb\xd2\xfe\x42\x9e\x9a\xc9\x65\xed\x84\x78\x0a\x28\xf9\xce\x64\x8f\x9d\x62\x19\x2e\x29\x80\xc2\x46\x2f\x2f\xe3\xb1\x6f\xf4\xf2\x2c\x27\xd8\x99\xcc\x32\xd9\xe3\xfd\x01\x34\x35\x2f\xff\x47\xe7\xb8\xe9\x35\x2b\x47\xbc\xa5\x2f\x1c\xaa\xf6\x1a\xdb\xe8\xe5\x95\xe6\xd1\x20\x23\xcd\x7b\xc9\xe4\xa0\xd9\x72\x76\x86\x4b\xfa\x7a\x77\xb8\xa4\xaf\xf7\x83\x4b\x4a\x42\x60\x7f\xf1\x50\xad\x6c\x4e\xbb\xa0\x46\x8d\x78\xca\xfe\xe2\xa1\x5a\x09\xf0\xf6\x17\x0f\xd5\x4a\x2c\xb1\x01\x61\x6a\xf0\x7f\x85\x23\xbe\x1f\x20\x4c\xfb\x5d\x85\xfc\x34\x1b\xd0\x06\x84\x69\xbf\xff\x91\x9f\x8e\x5e\x73\x72\x8e\x37\xf1\xc5\x3c\xd5\xcd\x70\x03\xd0\xb8\x19\x6e\x00\x1a\x37\xed\xfd\xc5\x3c\x55\xdd\xea\xfd\x11\xd6\x6a\xc3\x73\xdb\x80\x37\x0d\xbf\x6a\x03\xde\x34\x14\x28\x36\xe0\x8d\x4e\xc2\x06\xbc\xe9\x78\x6e\x1b\xf0\xa6\xfb\xdd\x01\x6f\x3a\xae\xc6\x06\xbc\x51\x28\x74\x03\xde\x48\x71\xda\x80\x37\xca\xbf\x6f\xc0\x1b\xe5\xdf\x37\x28\x8c\xac\x9f\x0d\x0a\x23\xab\x69\x83\xc2\xc8\xf3\xd9\xa0\x30\x9d\x74\xe0\x06\x85\xe9\x8e\x79\x50\x98\xee\xb2\xd4\xcc\xb1\xfb\x3f\x38\xbd\x6e\x32\xcd\x1c\x3b\x6f\x02\x14\x66\x80\x01\x6d\x90\x96\xe1\x58\x02\x69\x19\x78\xf3\x1b\xa4\x65\x90\xd7\xde\x20\x2d\x8a\xc7\x6e\x90\x16\xd5\xd2\x37\x48\xcb\x74\x2c\x81\xb4\x4c\x52\x00\x1b\xa4\x65\x12\x6d\x6e\xda\x29\x4d\x12\x09\x9b\x76\x4a\x2a\x2b\x6f\x50\x18\x5b\xf2\x6e\x50\x98\x09\x9e\xb1\x41\x61\xa6\xe3\x13\x14\x46\xa1\x80\x0d\x0a\xb3\xdc\x8a\x69\xa7\x64\x3d\xc1\xa6\x9d\xd2\x82\x2e\xb7\x69\xa7\xa4\x9e\xc8\x06\xaf\x51\x79\x64\x83\xd7\x2c\xdf\x0b\x78\xcd\x7e\x7d\x96\xc3\x91\xbf\xbc\x1c\x71\xbf\x21\x12\xc1\x2f\xc1\x72\x04\x4f\x37\x3d\x93\x7e\x9b\xe1\x17\xd7\x54\x75\xce\x37\x38\x8f\x30\xf2\x06\xe7\xf9\xa0\xe2\x7f\x2f\xc9\x40\x40\x62\xae\x1b\x08\x68\x43\x59\xd9\x40\x40\x0a\x6a\x6f\x20\x20\x65\x80\x36\x10\xd0\xd5\xd3\x00\x02\xba\xfa\x16\x40\x40\xb6\x20\xdd\x40\x40\xd7\x21\x0f\x04\x74\xbb\x26\xb0\x87\xe2\x3b\x6d\xdb\x30\x01\xcc\x6d\xdb\x30\x2d\xcf\xa1\x21\xe5\xe2\xa6\x94\x9e\x2f\x82\x36\x4c\xf6\x0a\xd9\xb4\x61\x92\xf0\xb4\x69\xc3\xf4\xb8\x8b\xd1\x86\xe9\xb9\x5e\x13\x00\xe3\xfa\x4b\x00\x0c\x32\x93\x9b\x16\x4d\xaf\xdb\x11\x2d\x9a\x1e\xb7\x2a\x5a\x34\xbd\xee\x93\xb4\x68\x0a\xbf\x5f\x4a\x39\xe7\x7d\x4e\x01\x0c\xae\x49\x8b\x26\x83\xb1\x4d\x8b\x26\xc3\xb6\x4d\x8b\xa6\x88\xdf\xbf\x69\xd1\x14\x09\x6e\x37\x2d\x9a\x0c\xd4\x36\x2d\x9a\xe2\xef\x9a\x00\x18\x84\xb3\x1b\x90\x29\xc2\x17\xd8\xb4\x68\x32\xbc\xdc\x1f\x99\xad\xc5\xe0\x2f\x07\x77\xe0\xdb\x02\x40\xa9\x9e\xb7\x01\xa0\xa2\xfe\x03\x00\x54\x24\x3e\xd9\x00\x50\xd1\x2d\x00\x00\x2a\xba\xf0\x6d\x01\x0c\x06\x2b\x00\x94\x81\xef\xde\xda\x87\xb5\x5b\xfb\x78\x16\x00\xa8\x08\xd9\x6b\x6f\xed\xe3\xed\x02\x40\x45\xb2\xc0\x1b\x00\x2a\xfa\x76\x01\xa0\x0c\xa6\x37\x00\x94\x81\xef\x06\x80\x8a\x40\x8d\x1b\x00\x4a\x29\xcb\x0d\x00\x15\x5d\x5a\x01\xa0\xa2\x53\x13\x00\xca\x84\xc0\x06\x80\x32\xb0\xdf\x00\x50\xd1\xed\x08\x00\xca\x30\x78\x03\x40\x99\x63\xdf\x00\x50\x36\x63\xdd\x00\x50\x65\x78\x04\x6f\x7e\xf8\x3f\x9a\x2a\x38\x1f\x00\xa0\x8a\x4b\x08\x00\x54\x71\x21\x02\x80\x2a\x64\x73\x37\x00\x54\x71\x69\x05\x80\x2a\x7a\xf3\xc4\x51\xc5\xe5\x1a\x00\xaa\xe8\x79\x03\x40\x15\x18\xb7\x1b\x00\xaa\xb8\x48\x01\x40\xd9\xf9\x6f\x83\x32\x15\x78\xbb\x1b\x94\xa9\xc0\x6b\xd8\xa0\x4c\x85\xf4\xdc\x06\x65\xb2\x71\xf1\x06\x65\x2a\xc6\x04\xa0\x4c\x85\xa4\xcd\x06\x65\x2a\x24\x89\xf6\xd5\x3e\xbe\xf4\xd5\x3e\x46\x01\x48\x52\x2b\xfe\x12\xb4\x08\x2c\xe7\x88\x16\x11\x2f\x1c\xd1\x22\x4a\xe0\x8f\x68\x11\xd1\xd1\x01\x2d\x52\x89\xfb\x80\x16\x35\xa2\x87\x03\x5a\xd4\x88\x41\x0e\x68\x51\x03\xc7\x3a\xa0\x45\x8d\x08\xe8\x80\x16\x8d\xd7\xbb\x7f\xcf\x69\x91\xf6\x01\x2d\x52\xa5\xfb\x7c\xb1\x52\x53\xad\xe5\x7c\xb1\x52\xb3\x64\xfb\x7c\xb1\x52\xfb\xca\xab\xff\xb9\x24\x9f\x87\x0e\x69\x38\xe5\xe7\x41\xfc\x1a\xf7\xfd\x7c\x61\x54\xdb\xf0\x21\xce\x17\x46\xb5\x0d\x65\xe5\xbc\xf4\xbd\xc0\xc7\x3b\xc8\xec\x1d\x02\x99\x83\xcc\xde\xc1\x9f\x3e\xc8\xec\xd9\xef\xf8\x20\xb3\x27\x24\x73\x00\x92\x1e\xc4\x1d\x0f\x32\x7b\x97\x2c\xe9\x41\x66\x4f\xc5\xa5\xa3\xcc\x1e\x7b\xf6\xa1\x27\xee\x85\xec\x75\xe8\x89\x7b\xaf\xcf\x02\x50\xb6\x3d\x02\x28\xc3\x5f\x39\xc8\xec\x89\x3e\x1f\x64\xf6\x1e\x48\x2a\x27\x00\x86\xe1\xe9\x9f\x40\xe9\x06\xfe\xc3\xf9\x42\xa5\xfe\xe0\x95\x9f\x2f\x54\xea\x06\x5c\x27\x60\x03\x9e\xcd\xf9\x68\x6f\xfd\x21\x59\x70\x3e\xda\x5b\x7f\xb3\x77\x47\x01\x7a\x7b\x87\xef\x39\x95\x94\x3f\x81\x9e\x03\x78\xf3\x27\x20\x15\xc8\x66\x78\x10\x21\x37\x5f\x75\x10\x21\xb7\xfd\xd6\x41\x84\xbc\x69\x11\x22\xe4\x43\x8b\x10\x21\x37\x51\x72\x22\xca\xbc\x0e\x56\x54\x1f\x1e\x82\xf0\x83\xea\xc3\x03\x08\x7a\x00\x92\x1e\x36\xdf\x03\x90\x24\x53\xf7\x00\x24\x3d\xc5\xff\x01\x86\x65\xef\x0e\x18\xc6\x02\x76\x50\x7d\x30\x43\x7c\x50\x7d\x90\xfd\x7b\x00\x99\x1e\x96\xb3\x03\xc8\xf4\xb0\x5c\x1f\x40\x26\xf3\xc5\x07\x90\x49\x86\xef\x01\x64\x7a\xc8\xe3\x1d\x40\xa6\x87\x84\xc7\x01\x64\xb2\x11\xe6\x01\x64\x92\x51\x7c\x00\x99\xe4\xfb\x9e\xa4\x7d\x9d\x23\xec\x2b\xde\x41\x1b\x18\x3d\x00\x49\x72\x88\x0f\x40\x92\x7c\xdf\x03\x90\xf4\x00\x38\x1f\x80\xa4\xc7\xa9\x09\x90\x64\x67\x8d\x03\x90\x64\x63\xdf\x03\x90\x14\xbc\x1f\x40\x52\x60\xe9\x39\xa8\x3e\x48\xd3\x3a\xa8\x3e\x48\xc5\x3a\x80\x4c\xb2\x00\x0e\x20\x53\x70\x8e\x01\x32\xb9\xbd\x1f\x40\xa6\xd8\xbd\x0a\x60\x58\xf4\x08\x30\xcc\x77\x0d\x92\x94\x1d\x9f\x20\x49\x99\x74\xd9\x01\x49\x52\x72\xf3\x80\x24\x65\x2d\x02\x49\xca\xbe\x79\x90\xa4\x4c\x26\xfb\x80\x24\x65\xe2\xa1\x03\x92\x94\xa3\x77\x00\xec\xcb\xfe\x0f\xa0\xcc\x6f\x54\x04\xca\x78\x4e\x90\xa4\x1c\xfd\x25\x60\x5f\xf1\x97\x8b\xff\xf1\x5e\x8a\xf6\xf1\x35\x8b\xf6\x31\xb2\x40\x92\xb2\xef\xa5\x6a\x1f\x6f\x9e\x32\xa0\xec\xb7\x05\x65\xca\x8e\x5d\x50\x26\xd9\x50\x07\x94\xa9\x02\x46\x1f\x50\x26\x6b\x1c\x0f\x28\x93\xa9\xd0\x03\xca\x54\x9d\xd3\xa0\x4c\x12\x62\x4f\x15\x29\xfb\x8b\x71\x71\x00\xa0\xea\xf5\x92\x54\xa6\x3c\x3e\x26\xd5\x35\x47\x83\xc0\x0f\xaf\x47\xe0\x87\x78\x44\x07\x00\x4a\xd6\xf0\x01\x80\x6a\xe0\x8e\x07\x00\xaa\x92\x1a\x39\x4d\x90\x90\xc9\x01\x00\xd5\x34\x56\xf1\x72\x02\xbc\x03\x00\x25\x8b\xf7\x00\x40\xc9\x6e\x3e\x4d\xd3\xf9\x44\x00\x50\xb6\x0d\x3f\x00\x50\x95\x8c\xd1\x01\x80\x92\xfa\x75\x00\xa0\xe4\xed\x1e\x00\x28\x29\x63\x07\x00\x4a\xf6\xef\x69\xda\xe7\x55\x2e\x47\xfc\xcf\xca\x22\x40\xb4\x63\x65\x11\xe9\x96\x63\x65\x11\x2c\x95\xd3\xb5\x8f\x77\x46\x65\x51\x73\x5b\xa1\xb2\xc8\xa0\xf8\x50\x59\x64\x7b\xfa\x43\x65\xd1\x20\xd7\x7a\xa8\x2c\xb2\x67\xcb\xa1\xb2\x68\x90\xfb\x3c\x54\x16\x0d\x17\x4c\x2a\x8b\x46\xf4\x7f\x8b\x23\xff\xb7\xf9\x9f\xcf\x02\x08\xea\x64\xa4\xb2\xc8\xbe\x10\x87\xf2\x21\x9b\x0e\x1c\xcb\x87\x5c\x26\x28\x1f\x1a\x2e\xc2\x94\x0f\x0d\x64\x80\x0e\xe5\x43\x76\x00\x39\x94\x0f\xd9\x86\xe9\x50\x3e\x34\x5c\xa0\x87\xf6\xf1\x35\x29\x1f\x1a\xc9\xab\x60\x9f\x8b\x30\xe5\x43\xc3\x29\x46\xf9\xd0\xc0\xe7\x3a\x43\xfb\x3c\xc2\x3e\x17\x1b\xca\x87\x86\x13\x95\xf2\xa1\x81\x97\x7c\x28\x1f\x1a\x6e\x47\x53\xfb\xf8\x25\xe5\x43\x43\x1f\x88\xf2\xa1\xe1\x42\x34\xb5\x8f\x29\x36\xb5\x0f\x1b\xa6\xf6\x79\x07\x44\x73\xdc\x80\xa6\x00\x30\xcf\x49\xf9\xd0\x5c\x5e\x13\x00\x78\xf9\x2c\x94\x0f\x65\x9f\xe5\xb3\xcf\xd0\xfa\x50\x3e\xb4\x9d\x55\x94\x0f\x19\x68\x1f\xca\x87\x64\x37\x1f\xca\x87\xe4\x10\x1f\x5b\x3b\x39\x76\x6d\xed\x44\x92\xe8\x50\x5a\x64\xf6\xff\x50\x5a\xb4\x89\xa3\x0e\xa5\x45\x9b\x68\xec\x50\x5a\x64\x34\x7d\x28\x2d\x52\x44\xe0\x50\x5a\x24\x7b\xfb\x58\x5a\x44\x32\xeb\xa0\x5e\x6e\xf0\x7e\x50\x2f\xdf\x24\xa5\x0e\xea\xe5\xc7\xef\x67\x11\x92\x1b\x82\x45\x48\x30\x91\xcf\xaf\x08\x89\x73\x16\x21\x01\xfc\x1f\x0a\x8d\xae\x1b\x02\x85\x46\xd7\x19\x60\xa1\x11\x80\xec\xb1\xd0\xa8\xfb\x4b\x0a\x8d\xe0\x41\x1f\x90\x2b\x25\xec\x8f\x85\x46\xf8\xef\xc7\x42\xa3\xe6\xff\x00\x79\x61\x3c\x1d\x0b\x8d\xa6\xbf\x04\xe4\x25\xfd\x78\x2c\x26\x72\xad\xb3\x98\xe8\xfc\xa5\x04\x77\xac\x33\x22\x27\x7c\xac\x33\x22\x5f\x75\xac\x33\x82\x76\x73\xac\x33\xf2\x25\x59\x67\xa4\xdf\x68\x9d\x91\x1e\xb4\x75\x46\xcb\x07\xc3\xbc\xe9\x83\x61\x1e\xc9\x89\x63\x9d\xd1\xf2\x7e\x98\xe7\xf0\x04\xb8\x8a\xee\x93\x00\x57\xd1\x65\xc2\x1a\x24\x5f\xa0\x35\x48\x80\x29\x07\xe0\x2a\x02\x60\x1c\x6b\x90\xa6\x47\xe0\xbf\x04\x7f\x07\xe0\x4a\x75\x83\x03\x70\xa5\x4a\xc1\xb1\x06\x89\x50\xf0\x58\x83\x44\x5d\xfb\x01\xd4\x52\xc0\xfb\x00\x6a\x45\x83\x23\x6b\x90\x9a\xff\x03\xff\xf5\xd3\x02\x6a\x45\xa7\x26\xa0\x56\x1c\xfe\x0f\xfb\x00\x5a\x0e\xa0\x96\x7e\xce\x05\xd4\x8a\x2c\xa6\x17\x50\x2b\xc2\x79\xb8\x80\x5a\x16\xf9\x5e\x40\x2d\xb5\x1c\x2e\xa0\x56\xc4\x2b\xb8\x8f\xf6\x5d\x8e\xb0\x8f\x78\xe8\x02\x6a\xc9\x40\xbf\x8f\xf6\xbd\x1c\x61\x5f\xf7\x48\xfb\x7c\x16\xec\x63\x71\xbb\x80\x5a\x99\xe5\xfa\x02\x6a\xe5\xe5\x2f\x29\x42\x2a\xde\x81\x22\x24\xfc\xf0\x6b\x11\x12\x8b\xf0\xb5\x08\x89\x65\xe9\x5a\x84\xc4\x52\x77\x01\xb5\x6c\x3d\x7b\x01\xb5\x2a\x59\xbd\x0b\xa8\xd5\xaa\xff\x03\x38\xe6\x3b\x5c\x40\xad\xc6\x77\xb8\x80\x5a\xcd\xb7\x4b\x11\x52\xf3\x7d\x52\x84\xd4\x86\xcf\xf2\xd9\x60\xc7\xef\x4b\x11\x92\x61\xf0\xa5\x08\xa9\x51\x73\x78\x29\x42\x6a\xb0\x4d\x2e\x45\x48\x8d\x82\x85\x4b\x11\x52\xe3\xdb\x5e\x8a\x90\x0c\x91\x2f\x45\x48\x8d\x52\x9f\x4b\x11\x52\xa3\xe4\xf7\x52\x84\xd4\x00\x99\x6e\xd0\x06\x7f\x89\x0d\x7e\x77\x8a\x90\x6c\xc2\x76\x29\x42\x32\xcc\xbf\x41\xfb\x06\x47\xd8\x47\xd0\x7f\x29\x42\x32\xe8\xbf\x14\x21\x19\xca\x5f\x8a\x90\x1a\xcb\xd9\xa5\x08\xa9\xb1\x9c\x5d\x8a\x90\x5a\xf3\x1c\xf6\x51\x88\x7d\x29\x42\x6a\xe4\xb5\x2f\x45\x48\xcd\x11\x19\xfd\x46\x7c\xb1\xa8\x7d\x5e\x45\xfb\x78\x96\x88\x7d\x64\x88\x6f\xc4\x3e\xe6\xfb\x8d\xda\xc7\xc8\xa2\x40\x69\x46\x9f\x0c\x19\x20\x92\x83\xd7\x22\x24\xaf\x69\x11\x92\x6f\xd7\x42\x23\xef\x90\x04\xb1\xb9\x43\x02\x20\x65\x25\xba\x16\x21\x39\x26\x2c\x42\x62\x7b\xb8\x16\x21\x51\x36\x76\x29\x42\xb2\x67\xfa\xb5\x08\xc9\x31\x61\x11\xd2\xf9\x4b\xc2\xfe\x5a\x9f\x84\xab\x7d\xad\x4f\x62\x69\xbd\xd4\x27\x6d\x1c\xef\x6b\x7d\x12\x20\xda\xa5\x3e\xe9\xe0\x4f\x5f\xeb\x93\x58\xbc\xaf\xf5\x49\xc7\x73\x60\xc3\x04\xd3\xd7\xfa\x24\xc2\xaf\x6b\x7d\x12\x3b\xce\xb5\x3e\x09\xdf\xf7\x5a\x83\xc4\xa2\x7f\xad\x41\xba\xde\x1d\xf3\x58\xf4\xaf\x35\x48\x2c\xbb\xd7\x1a\xa4\xe3\x91\x36\xf8\x2c\xd8\xc0\x2e\x76\xad\x41\x22\x91\x70\xad\x41\x22\x77\x7d\xad\x41\x62\x87\xbb\xd6\x20\x01\xb0\x5d\x6b\x90\x08\x44\x6f\xc1\x86\xeb\xff\xb0\x81\x80\xf2\x16\x3e\x1f\x91\xc5\x2d\x7c\x3e\x12\x1e\xb7\x60\x9f\x4b\x56\xc1\xbe\xe3\xff\xb0\x0f\xc8\xf0\x02\x7f\x99\x0f\xbf\xc0\x5f\xef\xe3\xff\xc0\xb7\xaf\xd7\xfc\x72\xf3\x2f\x44\xbe\x0b\xfc\xf5\xf8\xce\x80\xbf\x5e\xbc\xa5\x0b\xfc\xf5\xf8\x5e\x80\xbf\xde\xc7\x5f\x82\x6f\x13\xd7\x5c\xe0\xaf\xf7\xf5\x97\xe0\xdb\xd7\xab\x50\x63\x45\xaa\xe9\x02\x7f\xbd\x14\xb1\x5c\xe0\xaf\xf7\xf5\x2a\x83\x73\x5e\x05\x24\x9c\xa8\xea\x56\xed\xf3\x7f\xda\x87\xed\x40\x63\x2f\xa9\xad\x0b\x34\xf6\x12\xf3\xdc\x26\x12\xee\x91\xf5\x57\x3c\x8b\x45\x48\x78\x91\xd7\x22\x24\xdf\x8b\x45\x48\x8f\x47\x14\x21\x01\xe5\x5c\x8b\x90\x5c\xe6\x2d\x42\x22\x80\xbd\x16\x21\x3d\x9e\xa3\xc8\x4a\xdb\x2d\x42\x7a\x3c\x02\xd2\x7e\x7d\x32\x7b\x70\xf8\x3f\x20\x6d\xad\x05\x1a\x8b\xbe\x09\xa0\xb1\x48\x5a\xef\x02\x8d\x25\xbf\x0a\xd0\x58\x22\x6e\xbb\x40\x63\xf6\xa4\xbe\x40\x63\x76\xc4\xb9\x40\x63\xc9\x77\x0d\x34\x16\x1d\x3d\x40\x63\xd1\xef\x07\x34\x16\xb5\x01\x68\x2c\x39\x42\x80\xc6\x92\xdf\x01\x68\x2c\x3a\x96\x80\xc6\x92\x6f\x02\x68\x2c\x17\xcf\x01\x93\x23\xae\x7a\x81\xc6\x32\x9c\x87\x0b\x34\x96\x01\xe9\xef\x10\x26\xe7\xee\xc0\x5f\x99\xe4\xe7\x05\xe3\xca\xce\x31\x30\xae\xe2\x62\x0a\xc6\x55\x5c\xf4\xc1\xb8\x8a\x33\x0e\x8c\xcb\x7e\x2e\x17\x8c\xab\x06\xff\x07\x14\x4e\x1a\xe3\x82\x63\xd9\xff\xe7\x82\x63\xd9\xb3\xe5\x82\x63\x55\xb4\x4d\x2e\x38\x56\x25\x5e\xb8\x94\x32\xd9\x15\xe6\x52\xca\x54\xa3\xe7\x28\xd5\x22\xa6\xbb\x94\x32\x35\x62\xc1\x4b\x29\x53\xfb\xb3\xab\xc8\x9d\xa0\xe4\xc9\x9b\x83\x92\x93\xab\xbb\x54\x40\x35\xc2\xbd\x3b\x45\xc9\x19\x4a\x13\x94\x3c\xf9\x28\xa0\xe4\x84\xc1\x77\x82\x30\xfb\x89\x26\x08\x33\x81\xf6\xa5\x56\xaa\xfb\xc1\xa8\x95\xea\xee\xee\xd4\x4a\x75\x7d\x27\x6a\xa5\xba\xcb\x12\xb5\x52\x6a\x6a\x5c\x04\xca\x6d\x09\x7f\x97\x28\x32\x2f\x1e\x11\xf2\x01\x4c\x70\x11\x21\x1f\xfa\x47\x88\x90\x4f\x5f\x20\x22\xe4\xd3\x97\x4b\xdf\x5b\x89\x67\x97\xbe\xb7\xca\xf3\x5d\x04\xca\x27\x81\xda\x45\xa0\xdc\x86\x8f\x17\x81\xf2\x19\xfc\x1f\x28\xb2\x9f\x76\x8b\x22\xf3\x9c\x88\x97\x4f\x77\x62\xc4\xcb\xa7\x8b\xc6\x17\x38\x55\x49\x70\xf7\x0b\x9c\xea\x84\x67\x70\xbf\xc0\xa9\x4a\x97\xbb\x5f\xe0\x54\xcd\x10\xdf\x0d\x4a\x1e\x7d\x16\xed\xf3\x7e\xa2\xe4\xde\x0f\xfb\x08\x28\xef\x17\x54\xd5\xe5\x5b\xfa\x82\xaa\xba\x80\x64\xee\x17\x39\xd5\xa5\x47\xf4\x45\x4e\x55\xd5\xd7\x7b\x40\x91\x7d\x83\x07\x14\xd9\xa1\x7b\x80\x8a\xbd\xfb\x01\x2a\xd6\x7b\xf9\x22\xa7\x6a\x19\xf1\xfd\x22\xa7\xba\x1d\x3d\x5f\xe4\x54\x2d\xcf\xbd\x5f\xe4\x54\x37\xa0\xdd\xfd\x22\xa7\xba\xc9\x2c\xdf\x03\x4a\x4e\x5a\xe1\xa2\x82\xb7\x1d\xad\xa8\xe0\x6d\xbf\x26\x2a\x78\x06\xe8\x17\x15\x3c\x1b\xcb\xdf\x6b\x4d\x1e\x77\x47\xe9\xce\xe0\xf6\xa2\x66\xa7\x54\xd3\x45\xb1\x4e\x09\xa4\x8b\x62\x9d\x0d\xa9\x2e\x8a\x75\x88\x33\x85\x07\xc8\xe9\xf9\x02\xf4\xf0\x00\x39\x51\x26\x13\x1e\x20\x27\x0a\x5c\xc2\x03\xe4\x84\x36\x46\x78\x80\x9c\x9e\x2f\xbd\x13\x1e\x20\x27\x72\xec\xe1\xb1\x81\xed\xeb\xd1\x07\x39\xbd\xdf\x88\x0c\x0f\x90\xd3\xfb\x7a\xf7\xce\x91\x77\x00\x9a\xfe\xc6\x4b\x78\x80\x9c\xde\xdf\x93\x01\x4d\x7f\xef\x3a\x3c\x40\x4e\xef\xef\x39\xa9\xad\xfb\xf8\x2c\xe1\x01\x57\x7a\x5f\xee\x07\xae\xf4\x06\x9e\x1a\x5c\xe9\x7d\xb9\x03\xb8\xd2\xfb\xcd\x87\xf0\xd8\xbe\xe9\xe5\x2a\xb6\x6f\x8a\xd8\x60\xfb\xa6\x88\xb5\xb6\x6f\xfa\xc6\x44\x78\x6c\xdf\xf4\xcd\xbf\xf0\x80\x2b\x85\xe8\x35\x29\x30\xab\x9e\x03\xba\xfd\xe6\x74\x78\xc0\x95\xe2\xf0\x9a\x40\xb7\xc3\xfb\x01\xdd\x36\x9f\x13\xe8\xb6\x7a\x3f\xa0\xdb\xca\xff\x02\xd0\xed\xe0\x0e\x01\xe8\xd6\xfb\x05\xa0\xe9\xc6\x1b\x0c\x40\xd3\x0d\xfb\x02\xd0\x74\xe7\x2d\x05\xa0\xe9\xce\x57\x09\x40\xd3\xd5\x73\x40\xd3\xfd\x8f\xc4\x45\x78\x10\xba\x8b\xc3\x8b\x80\x5a\x57\x4c\x40\xe8\x2e\x36\x1f\x1a\xd3\x1b\x1f\x13\xa1\x3b\xc2\xfc\xf0\x20\x74\x17\x3b\x43\x02\xa1\xbb\x38\x30\x1d\xa1\xbb\xd8\x38\x87\xd0\x5d\xac\x0c\x02\x84\xee\xe2\xe0\xa1\x11\xba\x23\x94\x0f\x4f\xd4\x74\x5e\x6e\xd4\x74\x86\x04\x42\x77\x71\xf2\x51\xa2\xa6\xfb\x3f\x4c\xff\xe4\x15\xc3\x83\x9a\x1d\x89\x84\xf0\xa0\x66\x47\xd0\x1f\x1e\xd4\xec\x62\xf5\x97\xa0\xd6\x99\x37\x81\x9a\x5d\xc9\x9e\x03\xb5\x9e\xde\x01\xd4\x7a\x7a\x4d\x50\xeb\xc5\xe0\x41\xcd\xae\x2c\x3e\x18\x6a\x76\x65\x61\x1f\x6a\x76\x65\xf2\x5e\x50\xb3\x2b\xda\xa0\x9a\xdd\xc2\x5a\xd5\xec\x26\xcf\x92\x40\xad\x27\xdf\x81\x3e\xbb\x65\xfa\x4b\x50\xeb\xc5\x57\x41\xe9\xae\x4c\x86\x12\x6a\x76\x65\xf9\x3f\x50\xeb\xcc\x73\x66\x51\x6b\xee\x90\x41\xad\x1d\x58\x19\xd4\xda\x61\x9d\x41\xad\x87\xff\x03\xb5\xf6\xdb\x66\x50\xeb\xee\x11\xa8\x75\xc7\xf6\x0c\x6a\x3d\x3c\x6a\x9c\xe3\x0d\x7e\x11\x50\x6b\xdd\x3b\x0c\x7e\xc9\xfb\xa4\x29\x6e\x73\x58\x67\x90\x77\x47\xd6\x17\x01\xb5\xe6\x28\xc8\xd4\x70\x3a\x8d\x32\xf6\x0d\xde\x44\xd1\x3e\x8f\xb4\x8f\x37\x51\xb0\xaf\x31\x0a\x68\xa6\xdb\x1b\xf6\x7d\x11\x50\xa3\x9c\x3b\x3c\x5f\x04\xd4\xfa\xe6\x59\xbe\x08\xa8\x51\x14\x1e\x9e\x2f\x02\x6a\x23\xf2\xfd\x0a\xa8\xbc\x4b\xd6\x17\x01\xb5\xe1\xc2\xf7\x45\x40\x6d\xb8\xf0\x15\x50\xf9\xe8\x35\x41\xe5\x23\xf6\x7d\x51\x4e\x5b\xce\xbf\x2f\xca\x69\xcb\xd9\x51\x81\xd7\x7f\xe7\x80\xd7\x2b\xff\xfb\xa2\x9c\xb6\x2b\xd7\xfc\xa2\x9c\xb6\x27\x77\xff\xa2\x9c\xb6\x1d\x9f\x95\x3a\x54\x47\xd6\x17\xe5\xb4\xed\xb8\xfe\xa2\x9c\xb6\x1d\xbb\x5f\x94\xd3\xce\xe6\x1b\x7d\x51\x4e\x3b\x1b\x1b\xbe\x28\xa7\xd1\xd2\x35\x3c\x5f\x94\xd3\x68\x05\x1b\x1e\x54\xe9\xce\xe6\x4d\x34\x6a\x4d\x03\xdf\xa8\x01\xaf\x3f\x3c\x75\x03\x5e\x77\xf1\x6e\xc0\xeb\x2f\x57\x69\xc0\xeb\x8f\x47\xc0\xeb\x6e\x16\x0d\x78\xfd\xf0\xd4\x0d\x78\xfd\x30\x06\x1b\xf0\xfa\xe5\xab\x7c\x51\x4e\x27\x4e\x0c\x4f\xa3\x5e\x76\x7b\x44\x4d\xec\xe1\x4d\x7c\xd1\x4a\x7f\x9d\xef\x5f\xb4\xd2\xdf\x8c\xed\x5f\xb4\xd2\xa9\xb7\x0c\xcf\x17\xad\xf4\x37\x33\x96\x3a\x35\xb1\x99\x6f\xd4\xa9\x89\x3d\x3c\xf5\x17\xad\xf4\xd7\xbb\x7f\xd1\x4a\x7f\xff\x6a\x87\x1a\x9e\x2f\x90\xe9\xef\xf5\x06\x30\x04\xae\x8f\x32\xb8\x81\x97\x9c\x9c\xd3\x04\x18\x02\x97\x17\xff\x05\x2b\xfd\x3d\xfc\x6f\x60\xde\xe1\xf3\x7d\xc1\x4a\xcf\xee\x4d\x5f\xb0\xd2\x73\xc3\xf4\x0f\x1e\xea\xd9\x65\xf7\x83\x87\x3a\x25\xd4\xe1\x19\x08\x54\x16\x3e\xfb\xa0\xe4\xb7\xf0\x31\x07\x25\xbf\x95\x4f\x34\x28\xf9\x2d\x7c\xa2\x41\xc9\xaf\xc3\xec\x0b\x64\x7a\x2d\xde\xfd\xb3\x01\x80\x2d\x3c\x5f\x20\xd3\xdb\xe1\x75\x7e\xf0\x50\xef\x4e\x77\xe0\xa1\xc7\xa5\x00\x78\xe8\x71\xc9\x02\x1e\x42\xb1\x38\x3c\xc0\x43\xb4\xa4\x09\x0f\xf0\xd0\xe3\x06\x04\x3c\xf4\xb8\x83\x03\x0f\x3d\x6e\x71\xc0\x43\x8f\x8b\x06\xf0\xd0\xe3\x32\x01\x3c\xf4\xb8\xe1\x4d\x19\x02\xbc\x25\xe0\x21\x2a\xc3\xc2\x03\x3c\x44\x5d\x5a\x78\x80\x87\x1e\x97\x17\xe0\xa1\xc7\xed\x08\x78\xe8\xcd\xbc\x17\xe0\xa1\xd7\xe1\x09\x3c\x14\x5f\xfe\x07\x3c\x14\x9d\x2a\xc0\x43\x3f\xff\x01\x78\x28\xba\x7c\x02\x0f\x65\x17\x61\xe0\xa1\xec\x52\x0e\x3c\x94\x5d\x50\x80\x87\xf2\xc0\x22\xe0\xa1\x5c\xbd\xca\x67\x5f\x49\xfe\x12\xe4\xdd\x2d\x00\x78\x28\xbb\x98\x02\x0f\xfd\xc6\x0b\xf0\x50\xd6\x7b\x01\x1e\xca\xd3\xab\x80\xbc\xeb\xcb\x00\x0f\x65\xbf\x03\xf0\x50\xf6\x9d\xa1\x51\x97\xb5\x0f\x8d\xba\xec\xc2\x07\x74\x94\xfd\x46\x5b\xfb\x18\xbb\x40\x47\x59\x47\x00\xe8\x28\x3b\x42\x80\x8e\xb2\xdb\x11\x1a\x75\xd9\x6f\x4b\x73\xdb\xea\x62\x43\x73\x5b\xb8\xd5\xe1\xa1\xb9\x6d\x8b\xbc\x97\x2d\xfc\xec\xb9\xcd\x91\x57\x01\x7e\x76\x0b\xa0\xb9\x2d\xfc\xf0\xf0\x1c\xe0\xf5\xc0\x5b\x3a\xc2\xeb\x3c\x19\x8d\x6f\x9b\x7e\x38\x8d\x6f\x9b\x9e\x37\x8d\x6f\x9b\x8b\x22\x8d\x6f\x9b\x9e\x37\x8d\x6f\x9b\xfe\x2d\x8d\x6f\x5b\xc4\x76\x1a\xdf\xb6\xc8\x7b\xa1\xf1\x2d\xbc\xf2\xf0\xd0\xf8\xb6\xb9\x01\x1d\xed\xf3\xee\xd8\xa7\x37\x7f\xb0\xcf\x6d\xec\x58\x7e\xec\xdd\x51\x77\x2c\xbc\xcf\x0b\x3c\xab\xeb\x76\x81\x67\x9d\x8d\x17\x78\xd6\xad\xff\x02\xcf\xba\xf6\x5c\xe0\x59\x47\xd6\x05\x9e\x75\xde\x5e\xe0\xd9\xca\x93\x5d\xe0\x67\xbf\xf4\x05\x7e\x76\x5d\xba\xc0\xcf\x8e\xeb\x0b\xfc\xac\x23\x70\x81\x9f\x1d\x05\x17\xf8\x59\x07\xf0\x02\x3f\xff\xf7\x6d\xff\xbd\x24\x5f\x90\xe9\xa6\x41\x20\xd3\x5f\x1a\x3d\xbc\x0f\xa6\xb3\x48\xbd\x0f\xa6\xb3\xa0\xbc\x0f\xa6\xb3\xf4\xbc\x0f\xa6\xe3\x6b\xbf\x0f\xa6\x57\xcf\x61\x3a\x83\xfc\x7d\x30\x9d\x41\xfe\x3e\x98\xde\x3d\xc2\x74\xa6\xd8\xfb\x60\x7a\xf7\x7e\x98\xde\xbd\x0a\xa5\xc9\xc7\xe7\x5c\xa0\xd6\x9e\xdb\x1c\x79\xf7\xcf\xbe\xc9\xd2\xf3\x7e\xc1\x58\x9e\x5f\xbe\x2a\xbc\xb4\x76\x9a\x8b\xab\xd0\xda\x69\x7e\x59\xaf\xf0\xd2\xda\x69\x31\x71\x5e\x5a\x3b\x2d\x3c\xa2\xf7\x05\x99\x66\xe2\xbc\x2f\xc8\x34\xa1\xe7\x4b\xdb\xa7\xcd\xd6\xf1\xd2\xf6\x89\xb0\x3b\xbc\xb4\x7d\xda\xc9\x73\x20\xd3\x0c\xeb\xf7\x05\x99\xfe\x12\x02\xe1\xa5\x25\xd4\xce\xfe\x0f\xe4\x3d\xf9\x64\x20\xef\xd9\x5f\x82\xbc\x47\xef\x0e\xf2\x4e\x28\xf8\xa2\x16\xb1\xf1\x8b\x5f\xd4\x22\x48\x32\x84\x17\xb5\x88\x1d\xb9\x03\x2d\xa1\x36\x11\xc2\x4b\x4b\x28\x54\xc6\xc2\x8b\x5a\xc4\x8e\x9e\xc3\xbe\xe4\x91\xc8\x7b\xe3\x08\xfb\x22\xef\x2c\x68\x9f\x57\xd1\xbe\xc2\x11\xf6\x25\xde\x67\xd0\x3e\x2c\x42\x49\xe2\x24\xbe\x18\x4a\x12\xc7\x37\x88\x92\x04\xa2\x40\xe1\x45\x49\xe2\x32\x71\x5e\x94\x24\x2e\x53\xe5\x45\x49\xe2\x0e\xde\x35\x90\x13\xa2\x39\xe1\x05\x72\x7a\xa6\x47\xc0\xd6\xc4\x19\x2f\x90\x13\xf5\x65\xe1\x05\x72\x7a\x1c\x13\x51\xd8\x9a\x27\x03\x72\x7a\x5f\x8f\x80\xad\xaf\xff\xfb\xb0\x80\xf7\xe1\x3b\x00\x39\xbd\xaf\xcf\xb9\x39\xe7\x73\x52\x7a\x7d\x3d\xba\xfc\x92\xaf\x09\x1c\x45\xc6\x3d\xbc\x68\xe2\x91\xc5\x0f\x2f\x9a\x78\xcf\xe5\xc9\x92\xf6\xf1\x96\x80\xaa\xde\xc7\xab\x64\xae\xe9\x55\x0a\x47\x8c\x02\xa0\x2a\x70\x82\xf0\x02\x55\x81\x0c\x84\x17\xa8\x0a\x7c\x21\xbc\x40\x55\x64\xf8\xc3\x0b\x54\x15\x12\xf6\x81\x47\xd1\xa4\x2c\xbc\xe0\x51\x71\xfa\x2c\xc0\xd6\xd3\x3b\x00\x5b\xfb\x3e\xc1\xa3\x28\x30\x0b\x2f\x78\x14\x65\x5c\xe1\x05\x8f\x8a\x78\xc2\x2f\x78\x14\x52\x62\xe1\x05\x8f\x4a\xae\x05\xe0\x51\xf1\x7a\x0e\xd8\xda\x39\x8d\x5e\x5e\x3c\xdc\x1d\xbd\x3c\xb2\xf8\xe1\x05\xab\x8a\xdb\xbb\x03\x5b\xfb\xfd\xc0\xaa\xa2\x5f\x05\xac\x8a\x26\x65\xe1\x05\xab\x8a\xdb\x27\xd3\x3e\x2d\xc2\x3e\xa2\x87\x17\xac\x8a\x62\xb7\xf0\x82\x55\xc5\xf5\x57\xe2\xe2\x05\xc6\x8a\x84\x27\x2f\x30\x16\x15\x7a\xe1\x05\xc6\x42\xed\x2d\xbc\xc0\x58\xa8\xaf\x85\xb7\x68\xba\xb7\xc3\x74\x97\x41\x60\x2c\x74\xe1\xc2\x0b\x8c\x15\x09\x25\x5e\x60\xac\xb8\xbd\x0a\xa6\x13\x18\xbe\x05\xc4\xde\x49\x5c\x40\xec\x8b\xbf\xa4\x22\x1d\x6f\xf7\x2d\x54\xa4\x17\x06\x41\xa5\x22\x3d\xf3\x2c\x15\xc5\x54\x7c\xca\xb7\xa2\x98\x5a\x78\xb9\x95\x6a\x75\x37\x84\x2f\x88\x2b\x99\x5d\xec\xfd\x82\xb8\x02\xa0\x10\xde\x2f\x88\x2b\x00\x11\xe1\xad\xa8\xa2\x56\xff\x87\x2a\x6a\xf1\x08\x55\x54\x37\x20\x9a\x47\x95\xe6\x55\x90\x3e\xc5\x9b\x7f\x69\x1e\x85\x4a\x5c\x78\xab\xac\x03\x2c\xa2\x79\x54\xa9\xdc\x8f\xe6\x51\xf5\xe1\x7f\x34\x8f\xea\x6e\x0f\x34\x8f\x6a\x7e\x23\x9a\x47\x75\x27\x0e\xcd\xa3\x9a\x83\x80\xe6\x51\x3d\x78\x07\x10\xed\xe3\x39\x10\x6d\x37\x35\x9a\x47\xb5\xeb\xfd\x06\xd7\x64\xd0\xd1\x3c\xaa\x11\xca\xbf\x34\x8f\x6a\x44\x47\x2f\xcd\xa3\xda\xc1\x76\x9a\x47\xb5\xe3\xb3\x80\xd8\x3b\x01\x50\xae\xe8\x2e\x36\x28\x57\x74\x97\x02\x94\x2b\x9a\x93\x0a\xe5\x8a\x76\x78\x96\xae\x7d\xdc\x0f\xe5\x8a\xe6\xa8\x43\xb9\xa2\x3f\x7c\x69\x94\x2b\x7a\xf5\x9a\xd8\x47\x0a\xe7\x45\xb9\xa2\xbf\x5e\x13\xc4\xde\xe9\x8e\x72\x45\x5b\x3e\xe7\xe2\x97\xfe\x0f\xfb\x5c\x14\x51\xae\x68\x8e\x90\xae\x7d\x4c\x3f\x94\x2b\x9a\x0b\x26\xca\x15\xcd\xe5\x65\xf8\xfd\x78\x4b\x28\x57\x74\x97\x6b\x94\x2b\xfa\x8b\x7d\x43\xfb\x18\x91\x34\x8f\x6a\xce\x23\x94\x2b\xda\xe1\x39\x51\xae\x40\x48\x3d\xbc\xc3\x6f\x84\x7d\x28\x57\xd0\x0d\x3c\xbc\x28\x57\x34\x9d\x92\xe1\x37\x62\x0c\xa2\x5c\xd1\xc9\x17\xbf\x28\x57\xf4\xe0\x11\x36\x38\xdf\x51\xae\x98\x6e\xcc\x28\x57\x80\xc2\x84\x17\xe5\x8a\xa9\x73\x81\x72\xc5\x74\x63\x46\xb9\x62\xba\x5c\xa3\x5c\x31\x75\xf2\x50\xae\x98\xdd\x6b\x22\x29\xd0\xbd\x3b\x92\x02\x93\xb7\x8b\x72\xc5\x74\x0d\xb1\xd1\xae\x0e\x12\xea\x14\xdb\x37\x4f\xa3\xa7\x43\xe6\xfc\x45\x9d\xe2\xe8\x40\xa0\x4e\x41\x97\xed\xf0\xa2\x40\x71\x74\x04\x68\xf4\x74\x0a\xf3\x8f\x46\x4f\x27\x60\x1f\xea\x14\x47\xfb\x90\xa0\xf8\x39\x09\x48\x50\x9c\xcc\x73\xd2\xe8\xe9\x90\x9f\x7e\x69\xf4\x74\x5e\x9f\xec\x72\x95\x3f\x4a\x45\xc2\x8b\x72\xc5\xd1\x73\x43\xb9\xe2\xe8\xbd\xa0\x5c\x71\xf4\xd5\x50\xae\x38\x7e\x06\x94\x2b\x8e\x3b\x31\xca\x15\x87\x60\xe5\x45\xb9\xe2\x64\x8f\x30\xdd\x25\x12\xfe\xdf\x71\xf9\x84\xff\x77\xdc\x7f\xb6\xa6\x7b\x84\xe9\xc1\xff\x61\x7a\xf1\xc9\x34\xdd\x5f\x62\xba\x9e\xe9\xd6\x74\x3e\x03\xdc\xc0\x03\xf4\xf0\xc2\x0d\x3c\x7e\xcc\xa3\x7d\xd8\x00\x01\xf0\xb8\x78\x43\x00\x3c\x04\x86\x2f\x04\xc0\x43\x58\xf3\x42\x00\x3c\x6e\x08\x10\x00\x4f\xf5\x97\xda\xe7\x55\x24\xc5\xf8\x2c\xd8\xa7\xd7\x0a\x01\xf0\x14\x26\x0e\x24\xbf\x43\xbe\xea\xa5\x99\xd3\x1b\x78\x4e\x60\x2c\x41\x98\x17\x18\xeb\x0d\x0c\x10\x9b\x39\x5d\x6c\x07\xc6\x7a\xfd\x0e\xc0\x58\xaf\xef\x93\x66\x4e\x2f\xc1\xed\x4b\x33\x27\xc1\xa2\x17\x88\x4b\x80\xe6\xa5\x99\xd3\xeb\xd6\x78\x65\x4e\x78\x3f\x98\x13\x7e\x15\x9a\x39\xbd\x7a\xe5\x34\x73\x12\x64\x7a\x6d\xe6\xe4\xc8\xb2\x99\x93\xf6\xd9\xcc\x89\xc9\x11\x6c\xe6\x44\x5e\x3b\xd8\xcc\x89\xd4\x56\xb0\x99\xd3\x47\xcf\x0b\xc1\x66\x4e\xc4\x66\xe1\x91\x55\x11\x38\x82\x55\xf1\x78\x0e\x56\x05\x5f\x3a\xd8\xcc\x29\xf8\x4b\x58\x07\xbc\x97\x60\x33\x27\xe2\x8c\x60\x33\x27\xbe\x7b\xb0\x99\x53\xf4\x7f\xb0\x0e\x08\xb4\x03\xcd\x9c\xa8\x86\x0c\x81\x66\x4e\x31\x78\x15\x58\x15\xc4\x3c\xe1\x85\x55\xc1\x96\x1a\x68\xf4\x94\xf8\x46\x81\x46\x4f\x29\x78\x0e\x56\x85\x4f\x4d\xa3\xa7\xc4\xc2\x10\x68\xf4\x94\xf0\xb5\x03\x8d\x9e\xd2\x07\xdd\x86\x40\xa3\xa7\x44\xae\x35\xd0\xe8\x29\xf9\x9c\x34\x7a\x4a\x5a\x8b\x72\x45\x22\xb7\x1b\x50\xae\x48\x3e\x35\xca\x15\xe9\xf5\x7f\xb0\x2a\x48\xa9\x04\x94\x2b\x52\xf0\xc9\x90\xae\xf5\xbd\xa0\x5c\x81\x6e\x5a\x08\x28\x57\x64\xc6\x67\x40\xb9\x22\x17\x8f\x10\x1f\xc0\x99\x09\x28\x57\xe4\xc3\xbb\x0e\x32\x2e\xb0\x08\xe5\x8a\xcc\xc6\x1c\x02\xe2\x03\x6c\x47\x21\x20\x3e\x80\x2f\x1a\xbe\x68\xac\xe6\xed\x1d\x06\xbf\xc4\x3e\x34\x2e\xf2\xf6\x0e\x08\xe0\xb2\xe8\x07\x34\x2e\x4a\xd7\x06\x04\x70\xbd\x3b\x3a\x16\x95\x48\x2d\xa0\x63\x41\x9f\xf9\x10\xd0\xb1\xa0\xaf\x7d\x08\xe8\x58\xd4\xe4\xff\x10\x1f\x20\x9e\x0d\x08\x52\xd4\xed\x11\x0d\xb7\xfe\xea\xbd\x17\x02\x5a\x15\x8d\xa5\x2e\x44\x99\x13\xbc\x32\xf4\x28\x28\x6a\x0c\x01\x3d\x0a\x38\x8c\x21\xa0\x47\x81\xe8\x65\x08\xe8\x51\xb4\xc2\xcd\xd1\xa3\x68\xf8\x2b\x01\x3d\x0a\x04\x31\x43\x40\x8f\xa2\xb1\x40\x07\xf4\x28\x5a\xf6\x7f\x90\x46\xd8\xa9\x42\x82\x55\x01\xea\x19\x12\xfa\x02\xec\x3f\x01\xad\x8a\x5e\xfd\x25\xfa\x02\xbf\xfb\xc1\xb8\x78\x3c\x07\xe3\xe2\xf1\x39\x37\x47\x5e\xe5\x70\x84\xb5\x68\x5c\x20\xce\x19\x02\x1a\x17\x83\x1d\x3c\xa0\x71\x31\x1c\x12\x68\x5c\x0c\x3f\x3b\x1a\x17\xd3\x8f\x82\xc6\xc5\x04\x4f\x0f\x68\x5c\x4c\x3f\x2d\x1a\x17\x93\x3c\x5e\x40\xe3\x62\x26\xee\x8e\xc6\xc5\xf4\x63\xa2\x71\x31\xd9\x1a\x03\x1a\x17\x33\xfb\x3f\x18\x17\x0e\x09\x34\x2e\x68\x67\x1b\x02\x1a\x17\xab\x7b\x95\xc3\x39\xff\x77\x39\xe2\xfb\xa1\x71\xb1\xbd\x26\x1a\x17\xdb\x89\x83\xc6\xc5\x2e\xbc\xa5\x42\xdd\x7e\xf6\x08\xc6\x05\x30\x48\x40\xff\x02\xc9\x9e\x10\xd0\xbf\xd8\x8e\x09\xf4\x2f\x76\xf2\x9a\x30\x2e\x1c\x4b\xe8\x5f\x6c\xc7\x19\xfa\x17\x26\x7b\x02\xfa\x17\xa6\x5b\x02\x04\xc0\x9d\x79\x83\x10\x00\xb7\x63\x09\x02\xa0\xe9\x9d\x00\x01\x10\xe1\x9f\x10\xaa\x6c\x0c\xde\x04\x44\xbe\xeb\x5b\x82\xac\x77\x9d\xa8\xc0\x58\x8f\x57\x01\xaa\x32\x21\x10\x80\xaa\x04\x84\x42\x85\x91\x40\x8a\x2a\x54\x18\x09\x7e\xf7\x06\x23\xc1\xa7\x6e\x30\x12\xb4\xbd\xc1\x48\x70\x4c\x7c\x51\x4e\x7b\x49\x20\x85\x2f\xca\x69\xaf\xd3\xfd\x8b\x72\x9a\x5b\x5c\x68\x30\x2e\x1c\x75\x0d\xc6\x05\x08\x4d\x68\x68\xf8\x3a\x5a\x1b\x65\xfc\xd1\xfb\x51\xc6\x0f\xd2\x1f\xba\x65\xfc\xbc\xdd\x0e\xa0\xbe\xf8\x65\x07\x50\x07\x1f\x0a\x5f\x7c\xd2\x7e\x0b\x74\x07\x50\x5f\x8c\xc1\x0e\xa0\x8e\xdf\x1f\xbe\xf8\xa4\x25\x37\xc3\x0e\xa0\xee\xd2\xda\x01\xd4\x9d\x1d\x1d\x40\x1d\x1f\x36\x74\x00\x75\x22\xa7\xf0\xc5\x27\x2d\xbd\xde\x01\xc2\xc0\xf2\x1c\x84\x81\xe5\xfd\x20\x0c\x1c\x6d\x80\x30\x70\x78\xce\x81\x7d\x60\x47\xe1\x8b\x4f\x1a\x54\xc1\x10\x06\xf6\xb9\x78\x0f\x08\x03\x24\x4a\xc2\xc0\x3e\xf2\x03\x61\x60\xdf\xf5\x2a\x10\x06\xdc\x10\x06\xf6\x91\x03\x08\x03\xfb\x88\x64\xc2\xc0\x3e\x62\xc8\x30\xb4\xcf\x3b\x40\x88\x20\x5d\x16\xbe\xd8\xa5\xa5\xe7\x0f\x12\x5c\x08\x5f\x58\xd3\xd2\xe3\xa3\x60\xba\xeb\xfa\x17\xd6\xb4\x44\xb8\x17\xbe\xb0\xa6\x25\xc2\xa1\x30\xfd\xb4\x7c\x94\xe9\xa7\xe5\x25\xa1\x40\x61\x96\x26\xa0\x40\x01\x2f\x32\x04\x14\x28\x4c\x7f\x04\x14\x28\xe2\xf6\x0e\x7e\x5a\x7f\xd9\xb8\xbb\xd7\xc4\xf4\xee\x39\x4c\x5f\x9e\xc3\x74\x42\xf2\x80\x02\x45\x74\xe8\x4e\x3f\x2d\x03\x04\x05\x8a\xe8\x7e\x8e\x02\x85\x49\x94\xa0\x02\x05\x59\xc4\x80\x02\x45\xc2\xe3\x0b\x2a\x50\x6c\x8f\xb0\xcf\x69\x8b\x02\x45\xf1\xd3\xa2\x40\x51\x7e\x57\x81\x2b\xe1\xa4\x42\x81\x02\x06\x65\x08\x28\x50\x14\x07\x16\x0a\x14\xbf\x5d\x1a\x05\x8a\xe2\x9b\x40\x81\xa2\x38\xb0\x50\xa0\x28\x0e\x4f\x14\x28\x0a\xa9\x8a\x80\x02\x45\xf1\x4d\xa0\x40\x51\x08\x52\x03\x0a\x14\x45\x6b\x51\xa0\x28\x4e\x31\x14\x28\x8a\xdf\x01\x05\x0a\x21\xa0\x80\x02\x45\x73\x11\x46\x81\xa2\x11\x05\x04\x14\x28\x1a\x1c\x92\x80\x02\x45\xfb\xdd\x01\x8e\xc5\xf4\xee\x70\x2c\xa6\xd7\x84\x63\xe1\x74\x47\x81\xa2\x91\x8f\x0b\x28\x50\xb4\xe9\xfd\xe0\x58\xc0\x1e\x08\x28\x50\xb4\xe9\x1d\xe0\x58\x10\xdc\x06\x14\x28\x28\xba\x08\x01\x05\x8a\xee\xd4\x44\x81\xa2\x39\x39\x50\xa0\xe8\x7a\x4b\x28\x50\x74\xd8\x1f\x01\x05\x0a\x41\xde\x70\xe4\x58\x78\x07\x78\x14\x2e\xf3\xa8\x4c\x0c\x17\x53\x54\x26\xa8\x16\x0c\x01\x95\x89\x91\x3d\xda\xfc\x12\x6b\x51\x8b\x18\x2e\xde\xa8\x45\x0c\xdf\x35\x6a\x11\xc3\xed\x01\xb5\x88\xe1\xa2\x8f\x5a\xc4\x70\x0b\x47\x2d\x62\xb8\xe8\x5f\x3b\x4c\x7a\x84\x0a\x43\xf3\x2a\xa8\x30\x34\xef\x0e\xdf\xc3\x2f\x86\x92\xc4\xf2\xcd\xa3\x49\x4e\xbb\xde\x10\xd0\x24\x5f\x7e\x3f\x54\x26\x68\xa3\x1f\x22\x94\x3f\x74\xe8\x42\x84\xf2\x87\x46\x5d\x88\x50\xfe\x36\x31\x4f\x84\xf2\xb7\x99\x1d\x11\xca\x1f\xac\xfd\x10\x1f\xb9\x20\x9b\x23\xb8\x20\xac\x0c\x11\xca\x1f\xf5\x0b\x21\x42\xf9\xdb\x8c\xf2\x08\xe5\x8f\x9a\x81\x10\xa1\xfc\x51\x5d\x10\x22\x94\xbf\xbd\xbd\xfb\xe2\x97\xde\x7d\x73\xce\x3b\x20\x25\xb1\xfc\xdf\x67\xdf\x21\x99\x15\xa1\xfc\x1d\xd2\x73\x11\xca\xdf\x61\x05\x8b\x50\xfe\x0e\xdb\x58\x54\x4a\x82\x19\x1e\x95\x92\x60\xed\x89\x50\xfe\x0e\x5b\x40\x84\xf2\x77\xee\x1f\xed\x50\x43\x84\xf1\x77\xae\x97\x84\xea\xc2\x74\x8f\x30\xfe\x0e\x19\xc6\x08\xe3\xef\x30\xdd\x23\x8c\xbf\x43\x2e\x2b\xc2\xf8\x3b\xc7\xc7\x84\x5e\x42\xe0\x14\x03\x34\x18\xf8\x86\x51\x95\x09\xc2\x9a\x88\xca\x04\xc5\x05\x21\xa2\x32\x21\x67\x32\xa2\x32\x21\xbc\x10\x55\x99\xb8\xfe\x0f\x1a\xcc\xf5\x97\xd0\x4b\xc8\x29\x46\x55\x26\x7c\x65\x41\x1a\x0c\x16\x05\x38\x24\x4c\xd4\x18\xe0\x90\x3c\x0c\x25\x15\x28\xc8\x5a\x46\x15\x28\x00\x61\xa2\x0a\x14\x78\xd7\x11\x05\x8a\x97\x74\x4b\x44\x81\xe2\x25\x8d\x11\xa3\xf4\x19\x9e\x13\x05\x8a\x17\xbf\x3f\xa2\x40\xf1\x12\x91\x44\x14\x28\x82\xcf\xf2\x85\x3c\x3d\xe0\xcd\xc7\x0f\x64\xea\xc8\x15\x85\xf8\x81\x4c\x3d\x78\xf7\x2f\x1c\xea\xe1\xf5\x97\x9d\x5f\xf2\x06\xbf\x98\xa7\x87\xc7\xbb\x4f\x8e\x78\x4b\x1f\xc8\xd4\x83\xd6\x7e\xf1\x50\x0f\xaf\x4f\x26\x7f\xc6\xff\x61\x1f\x59\xd2\xf8\xc5\x43\x3d\xf8\x8d\xbe\x78\xa8\xeb\x9d\xc5\x2f\x1e\xea\x81\x30\x3f\x7e\xf1\x50\x0f\xc4\x27\x31\x61\x1f\x99\xb4\x98\xb0\x2f\xf8\x3f\xec\x83\x4b\x10\x13\xf6\xbd\x5e\x05\xfb\x7c\xf3\x09\xfb\x5e\xef\x3e\x60\xef\xf0\x35\xbf\x78\xa8\xe7\xe6\x73\x2e\x8e\xbc\xdf\x67\x5f\x86\xbb\x1a\xbf\x78\xa8\x23\xd2\x13\x62\x42\x41\x04\x22\x66\xa4\x49\x6d\x01\xb6\x8e\x34\xa9\x15\x0b\x88\x34\xa9\x95\xe0\x18\x6d\x52\xeb\x04\xb7\x49\xed\xf2\x7f\x70\x80\x9c\x2b\x36\xa9\xbd\x5e\xa5\xc3\xfa\xe1\xc9\x32\x1c\xa0\xea\xb9\xc9\x39\x9f\x05\x0e\x90\x63\xf0\x8b\x79\x3a\x35\x80\x21\x7e\x31\x4f\x37\x6f\x1f\xbf\x98\xa7\x2f\x97\x82\x2f\xe6\xe9\xbf\x65\x82\x46\xb4\x67\x7a\x0e\x9e\x0f\x1b\x57\x44\x81\x82\x5a\xda\x10\x51\xa0\x78\x96\xbf\x84\xe7\x03\xb6\x12\x51\xa0\x10\xcc\x8c\x28\x50\x50\x91\x1b\x22\x0a\x14\xb4\xf9\x0d\x11\x05\x8a\xc7\xf7\x82\x02\xc5\xe3\x3b\x43\x81\x82\x82\xe3\x10\x51\xa0\x10\x86\x8c\x28\x50\x50\x7e\x1c\x22\x0a\x14\x54\x07\x87\x88\x02\x05\x12\x9f\x21\xa2\x40\x21\x3c\x1b\x51\xa0\x78\xb4\xaf\x6a\x1f\x77\x47\x81\xe2\x75\xd9\x45\x81\x22\x54\xef\x80\x4a\x48\xf5\x97\x70\x79\xfc\x7e\x48\x49\xe4\xed\xfd\xe0\xf2\x80\x59\x44\xa4\x24\x44\x99\x22\x52\x12\xf9\xf7\x64\x70\x79\x7c\x2f\x48\x49\x98\x52\x89\x48\x49\xa0\x03\x19\x22\x52\x12\x79\xff\x05\xef\x45\x54\x26\xb2\x2f\x1e\x95\x89\xec\xd2\x8a\xca\x44\xf6\xf3\xa1\x32\x21\xe0\x15\x51\x99\xf8\x4d\x07\x54\x26\xb2\xfb\x16\x2a\x13\xd9\x7d\x0b\x95\x89\x7c\xfc\x9f\xa6\xf3\x3a\x9b\xa6\xf3\x92\x50\x99\xc8\xd7\x5f\x6a\xba\x77\xc0\x74\x77\x3f\x54\x26\xb2\x9f\x5d\x95\x09\x20\x99\x88\xca\x44\x23\xd0\x8e\xaa\x4c\x90\x28\x89\xaa\x4c\xb8\x7c\xa2\x32\x81\xe6\x73\x88\xa8\x4c\x50\x34\x13\x22\x2a\x13\x28\x47\x87\x88\xca\x04\xa5\xb4\x21\xa2\x32\xa1\xa7\x18\x51\x99\x40\xc9\x39\x44\xfb\xd7\x66\xaf\x02\xcd\x27\x7b\x15\x68\x3e\xc5\xff\x41\xf3\xc9\x7c\x5a\x54\x26\x1a\xe1\x6c\x44\x65\xa2\x91\x3a\x88\xa8\x4c\x98\x32\x8a\xa8\x4c\x08\x24\x45\x55\x26\xf4\x2d\x54\x99\xf0\x6b\xaa\x32\xe1\xe0\x51\x65\xc2\x09\xa0\xca\x84\x03\x59\x95\x09\xa7\x83\x2a\x13\x7a\x44\xaa\x4c\x38\xa9\x54\x99\x70\x4c\xa8\x32\xe1\xf7\x53\x65\x62\x7a\x3f\xb8\x3c\x4e\x77\x55\x26\xf0\x6f\xa3\x2a\x13\x0e\x56\x55\x26\x1c\xd6\xaa\x4c\x38\xdd\x55\x99\x70\xfa\xa9\x32\xe1\x98\x50\x65\x02\x3f\x2e\xaa\x32\xe1\x22\xac\xca\x84\xe3\xcc\x46\xb4\xe4\xc3\xa3\x4a\x12\x64\x8f\xa3\x4a\x12\xbe\x5d\x95\x24\x7c\xf3\x2a\x49\x24\x9f\x0c\x3e\x8b\xdf\x4f\x25\x09\x92\x67\x51\x25\x09\x97\x5d\x95\x24\x48\xc8\x45\x95\x24\x1c\x83\x2a\x49\x90\xec\x89\x2a\x49\xb8\x69\xab\x24\xe1\x52\x0e\x55\xf0\x38\x3e\xa1\x0a\x1e\xc7\x19\x54\xc1\xe3\x93\x41\x15\x3c\x8e\x5d\xa8\x82\xe2\x43\x51\x25\x09\xbd\x41\x95\x24\x5c\x6c\x54\x92\xf0\x1b\xa9\x24\xe1\x78\x51\x49\xc2\x91\x05\x55\xf0\xe2\xe9\xc7\x2d\x9f\x85\x27\x53\x65\x02\x82\x63\x04\x65\x7a\xf4\x30\x41\x92\xde\xe0\x35\x3f\xa4\xe5\x25\xe9\x16\x41\x92\x5e\x58\x38\x11\x24\x49\x04\x23\x82\x24\x89\x8a\x44\x90\xa4\x37\xf9\x4b\x38\x2b\xba\x75\x20\x49\x26\x89\x22\x48\xd2\x4b\x06\x3c\x82\x24\xbd\x3e\x35\x48\x52\x08\x1e\xe9\x2e\xf1\x55\x40\x92\x02\x49\x9b\x08\x92\xf4\x73\x89\x40\x92\x7e\xee\xc4\x91\xd8\xe0\x39\x88\x0d\x6e\xc5\x20\x49\x26\x58\x22\x48\x92\x89\x99\x08\x92\x94\xfe\x12\xe7\x0c\x11\x90\xe9\xcb\x70\xfc\x77\x04\xdd\xe3\xf7\xd0\x9b\x23\x1f\xe5\x33\x3d\x39\x90\x51\x99\x48\xe4\xd5\x22\x2a\x13\xc9\x21\x8f\xca\x44\x02\xc7\x8d\xa8\x4c\x24\x48\x38\x11\x95\x89\x44\x80\x17\x51\x99\x48\xd0\xc9\x22\x4a\x12\x49\xaf\x0e\x25\x89\xa4\xff\x87\x92\x84\xc0\x47\x44\x49\x22\x05\xaf\x89\x0d\x60\xa0\x11\x25\x89\x14\xbd\xbb\x36\xf8\x64\xd8\xa0\x2f\x8a\x92\x84\x10\x49\x42\x49\x22\xf1\xf9\x12\x4a\x12\x89\x8f\x92\x50\x92\x48\x78\x83\x09\x25\x09\x4a\x4d\x43\x52\x49\xe2\x78\x2e\x73\x4d\xcf\x15\xfe\x77\x38\xc2\x3e\x40\x98\x84\x92\x44\x7a\x3c\xf7\xd9\x27\x0c\x92\x50\x92\x90\x39\x9b\x50\x92\xc8\x84\x7b\xc9\x4e\xb7\xc0\x5f\xc9\x76\xb6\xf8\x86\x49\x25\x89\xee\x53\xc3\xe9\x60\x91\x4a\x2a\x49\x00\x8d\x25\x95\x24\xa0\x3b\x26\x95\x24\xc8\x9c\x27\x95\x24\x40\xc9\x13\x4a\x12\x05\xdf\x22\xd9\xea\x36\x78\x4d\x38\x0f\x40\x94\x09\x25\x89\x4e\x84\x90\x50\x92\xe8\xd1\xff\xc1\x79\x60\x41\x49\xb4\xba\xed\x2c\x44\x09\x95\x89\xce\xa2\x98\x50\x99\xe8\xd1\xab\xa0\x32\xc1\x24\x4e\xa8\x4c\xf4\xe2\x53\xc3\x17\x60\x2c\x25\x54\x26\x3a\xd4\xbd\x84\xca\x44\xcf\x7c\x15\x54\x26\x7a\xf6\x97\x70\x1e\xf0\x9d\x12\x4a\x12\x9d\xf1\x92\x50\x92\xe8\x2c\xad\x29\x68\x03\x6f\x1e\x25\x89\xce\xb6\x99\x82\x36\xf8\x3f\x38\x0f\x2c\xa6\x09\x25\x89\xee\x3b\x43\x49\xa2\x13\x27\xa6\xa0\x0d\x3e\x0b\x36\x38\xea\x50\x92\xe8\x8e\x02\x94\x24\xe8\x5e\x18\x12\x4a\x12\x9d\xc2\xa6\x04\xad\xaf\x83\x05\x24\x68\x7d\x9d\x19\x90\xa0\xf5\x89\xc2\x24\x68\x7d\x74\x4b\x0c\x09\x5a\x5f\x27\xb3\x9c\xa0\xf5\xd1\x3b\x31\xa4\xa8\x7d\xbc\x33\x68\x7d\xc8\x62\x85\x04\xad\x0f\x1d\xe9\x90\xa0\xf5\xa1\x0e\x1d\x52\xd4\x3e\xde\x3c\xb4\x3e\x74\xa4\x43\x82\xd6\xd7\x99\x7f\x09\x5a\x5f\x27\xca\x49\xd0\xfa\x3a\xdc\x8c\x64\xab\x5b\x96\xdd\xa4\x02\x85\xdf\x1d\x5a\xdf\x64\xb5\x49\xd0\xfa\xa6\x5f\x1a\x5a\x9f\x08\x4d\x82\xd6\x37\x7d\x13\x49\x4e\x87\xf7\x93\xb7\xc1\x9b\x87\x9e\x77\x7e\xe7\x20\x05\xb0\x85\x27\xe5\x22\x70\x35\x12\xf4\xbc\x03\x39\x37\x41\xcf\x3b\xb8\x13\x09\x7a\xde\xe9\x9e\x03\xf8\x1f\x9e\x03\xf8\xc7\xd1\x49\x50\xf0\x3e\xb1\xa4\x7f\x2e\xc9\x09\x76\x9e\xfb\x64\x82\x9d\x77\xf0\x84\x13\xec\xbc\x43\xc8\x93\x60\xe7\x9d\xe5\x0d\xe0\x3c\x00\x24\x25\xd8\x79\x87\xc0\x22\xc1\xce\x3b\x78\x44\x09\x76\x1e\xad\xe4\x43\x82\x9d\x77\xf0\x73\x12\x14\xbc\x03\xb3\x34\x41\xc1\x3b\xf8\xda\x09\x0a\xde\x21\x37\x98\xa0\xe0\x1d\xb2\x5e\x09\x0a\xde\x21\xe8\x48\x50\xf0\xac\x1e\x4a\x50\xf0\xac\x3a\x4a\x50\xf0\x8e\x8b\x0d\x14\xbc\xe3\x52\x07\x05\xef\x34\xaf\x89\x7d\xcd\x27\xc3\x3e\x0a\x08\x12\x14\xbc\x03\x34\x96\x8a\xf6\xf1\x9c\x55\xfb\x78\x16\x28\x78\x87\x20\x27\x55\x3f\x1f\x93\xbf\xfa\xf9\x78\x2f\x15\xfb\x08\x13\x53\xc5\xbe\xe1\x55\xe0\x43\x24\x7f\x09\x1f\x02\x88\x2b\xa9\x24\xe1\x90\x57\x49\xa2\xf8\x3f\xf8\x10\xc5\xbb\xc3\x87\x70\x78\xa2\x24\xf1\xe2\xbf\x27\x95\x24\x5c\x14\x55\x92\xa8\x1e\xc1\xf7\x70\x41\x41\x49\xe2\x75\x19\x44\x64\xdd\xa4\x4d\x42\x64\xfd\x75\x72\xa0\x32\x61\xcd\x53\x42\x65\x42\x30\x2c\xa1\x32\xf1\x3a\xf9\x51\x99\x78\x09\xde\x53\xd3\x3e\xde\x67\xd3\x3e\xcf\x61\x5f\xf6\x2a\xd8\xe7\x22\xd5\xb4\x0f\x8b\x9a\xf6\xf9\x9c\xf2\x3d\xbc\x26\x7c\x0f\xbf\x6d\x93\xef\xc1\x78\x41\x65\x22\x50\xee\x92\x50\x99\x08\x6e\x63\x5d\xbe\x07\xdf\x08\x95\x89\xe8\x12\xa2\xca\x84\xb6\xa3\x32\x21\x88\x96\xba\x7c\x0f\x9e\x45\x95\x09\x97\x5d\x55\x26\x92\xe7\xe0\x7b\x10\x8d\x25\x55\x26\xb4\x4f\x25\x09\xbf\x34\x4a\x12\xc9\x65\x10\x25\x89\xe4\x96\x83\x92\xc4\xcf\x9d\x40\x48\x3d\xb9\xfd\x21\xa4\x9e\x7c\x4e\x94\x24\x92\x0b\x1f\x4a\x12\xc9\x37\x88\x92\x44\x72\x9c\xa1\x24\x91\x80\xb8\x12\x4a\x12\x74\xbf\x0b\x09\x25\x89\x74\xbd\x03\xbc\x8d\xeb\x55\xbe\xef\x90\x5f\x8f\x3e\x1b\x32\x9c\xa3\x84\x5a\xba\x25\x42\x49\x0a\x1e\x29\xa3\x84\xca\x44\x26\x9b\x9b\x50\x99\x28\x8f\x47\x81\x23\x7f\x09\x6f\x03\x3f\x3c\xa1\x32\x91\x7d\x16\x54\x26\x32\x31\x64\x42\x65\x22\xbb\x08\xa3\x32\x91\xa1\x34\x26\xa4\x24\x0a\x3e\x6c\x42\x4a\x22\x93\xe0\x4c\x48\x49\x64\xd2\xb9\x09\x29\x89\x7c\xb0\x08\x29\x89\x0c\x84\x97\x90\x92\xc8\xda\x8e\x94\xc4\xcf\xb5\x41\x4a\xa2\x10\x6d\x26\x5a\xf2\x7e\x88\xd0\xbf\x97\x64\xba\xf5\xd6\xec\xdf\xa0\x74\x38\x08\x50\x99\xa8\x00\x3b\x09\x95\x89\xea\x90\x47\x65\xa2\xba\xd7\x2f\xe8\x1e\x04\x63\x69\x41\xf7\xf0\xd3\xa2\x40\x51\xf5\x50\x50\xa0\xa8\x20\xef\x09\x05\x8a\x0a\x95\x3b\xa1\x40\x81\x7a\x57\x48\x28\x50\x58\xac\x9b\x50\xa0\x68\x7a\x6e\x28\x50\x34\xf7\x2d\x14\x28\x5a\xf3\x1c\x7c\x0f\x3d\x45\x54\x26\x2c\xeb\x4d\xa8\x4c\x34\x07\x01\x2a\x13\xcd\xe1\x82\xca\x84\x85\xbc\x09\x95\x09\x14\xb3\x42\x42\x65\x02\x1d\xac\x90\x50\x99\x68\xee\xf5\xa8\x4c\x74\x38\xcb\x09\x95\x09\xcb\x73\x13\x2a\x13\x9d\x32\x99\x84\xca\x44\xf7\x7e\xa8\x4c\x0c\xc0\xd3\x84\x92\x04\x32\xd9\x21\xa1\x24\x41\x1f\xc0\x90\x50\x92\xa0\x63\x60\x48\x28\x49\x8c\xe0\x2f\x2b\xe7\xb0\x08\x25\x89\xa1\x8f\x8e\x92\xc4\x70\xd0\xa1\x24\x31\x5c\xf4\x51\x92\xb0\x92\x29\x1d\x95\x40\x18\xd6\x28\x49\x8c\xe3\x55\x50\xca\xd0\x13\x86\x9e\x37\x49\xfd\x24\xe8\x79\xd3\xaf\x09\x3d\x6f\xea\x9d\x41\xcf\x9b\x8e\x10\xe8\x79\xd3\x45\x1f\x7a\xde\xd4\xc3\x84\x9e\x37\x61\xd3\x24\xe8\x79\x53\x9f\x19\x7a\xde\x74\xf1\x86\x9e\x37\xdd\x10\xa0\xe7\x4d\xb7\x0e\xe8\x79\x53\x2f\x12\x7a\xde\x74\xab\x82\x9e\xb7\xdc\xde\xa1\xe7\xad\xe9\x73\xca\x4b\x61\x2c\x41\xcf\xdb\xd0\xf3\x32\xf4\x3c\x1a\x44\x85\x0c\x3d\x4f\x18\x2b\x43\xcf\xa3\xcd\x54\xc8\xd0\xf3\x68\x2c\x15\x32\xf4\xbc\x0d\x75\x2f\x43\xcf\xa3\x39\x56\xc8\xd0\xf3\x36\xcb\x7c\x86\x9e\x67\x61\x74\x86\x9e\x47\x8b\xa6\x90\xa1\xe7\xd1\x4a\x2a\x64\xe8\x79\xbb\x79\x04\x2f\x85\xf9\x90\xa1\xe7\x09\xb7\x65\xe8\x79\x96\x5e\x67\xe8\x79\xb4\xd8\x0a\x19\x7a\xde\xe5\x8b\x65\xe8\x79\x17\xae\x4b\x7e\x55\x02\xe1\x0e\x50\xf0\x2c\xc4\xc9\xaf\x9c\x15\x2c\x82\x82\x77\xa9\xe1\xcc\xe0\x51\x96\x3b\x67\xf0\x28\xb1\x95\x0c\x1e\xa5\x93\x90\xc1\xa3\xde\xea\xff\x50\xd8\xc8\xde\x0f\x3e\x0b\xe3\x25\xa3\x40\xf1\x92\xd6\xcb\x28\x50\xe8\x40\x64\x14\x28\x74\x20\x32\x11\x50\xf5\xee\x28\x50\xbc\xa4\x8c\x32\x0a\x14\x2f\x63\x22\xa3\x40\xf1\xb2\x4a\x65\x14\x28\x5e\x22\x92\x8c\x02\x85\x9b\x7d\x46\x66\x42\xc7\x23\x23\x33\x11\xd8\x64\x32\x32\x13\x81\x4d\x34\x23\x33\x11\x7e\xff\x5b\x1c\x61\x2d\x32\x13\xb4\x92\x0a\x19\x99\x89\x90\xfe\x82\xf7\x32\x0a\x14\xf4\x69\x0d\x19\x05\x8a\x44\xd0\x98\x51\xa0\x48\x2c\xc9\x19\x05\x8a\xa4\x79\x28\x50\x24\x96\x97\x8c\x02\x45\x6a\xfe\x2f\x73\x84\x09\x28\x50\x24\xa6\x5f\x46\x81\xc2\xbd\x3e\xa3\x40\xe1\xee\x9e\x51\xa0\x48\x4e\x00\x14\x28\x92\x2f\x10\x05\x0a\x13\x17\x19\x05\x0a\x77\xf7\x8c\x02\x45\x72\x08\xa2\x40\x91\xd8\x3a\x32\x0a\x14\x89\x0d\x21\xa3\x40\x91\x58\x34\x32\x0a\x14\x89\xa5\x20\xa3\x40\x91\xf0\x22\x33\x0a\x14\x19\xa0\x25\xa3\x40\x91\xfc\xd0\x28\x50\x98\x6e\xc9\x28\x50\x24\x3c\xa2\x8c\x02\x45\x8a\xde\x01\xfb\x9c\x8c\x28\x50\x98\xec\xc9\x09\xfb\x58\x50\x72\xd2\x3e\x3e\x5f\xd2\x3e\xde\x59\xc2\xbe\xa0\x0d\xb2\x62\x3c\xc2\x3e\xbc\xcf\x8c\x72\x85\x69\x9a\x8c\x72\x85\xfe\x51\x46\xb9\x42\xb6\x6a\x46\xb9\x22\x65\x7f\x89\x7d\x2c\x7c\x39\x6b\x1f\x77\x40\xb9\x42\x9f\x2b\xa3\x5c\x91\x08\x83\x33\xca\x15\xfa\x71\x19\xe5\x8a\xe4\x20\x47\xb9\x22\x91\x73\xcb\x28\x57\x24\x17\x22\x94\x2b\x52\xf4\xa9\xb1\x8f\x98\x20\xa3\x5c\x91\xc8\x30\x66\x94\x2b\x4c\x97\x65\x94\x2b\x12\xf9\xbf\x5c\xfc\x7e\x5c\x13\xe5\x0a\x3d\xcc\x5c\x24\x74\x71\x07\x94\x2b\x92\x0b\x03\xca\x15\x7a\x83\xb9\x38\x3e\xbd\x8a\xe3\xd3\x5f\x7e\xf6\xd5\xc7\xab\x74\x8e\xfc\x1f\xac\x18\x7c\xb5\x8c\x72\x85\x65\xd2\x19\xe5\x8a\x02\x46\x9f\x8b\xac\x18\x2c\x2a\xb0\x62\xf0\xb2\x32\xaa\x16\x72\x5e\x33\xaa\x16\x05\x3f\x2e\xa3\x6a\x51\x49\x6d\x65\x54\x2d\x2a\x29\xc6\x8c\xaa\x85\xc5\x44\x19\x55\x8b\x82\x57\x97\x51\xb5\xa8\x8f\xd7\x2c\x1c\x71\xbf\x2a\x2b\xc6\x5f\xc2\x8a\x21\x7b\x9c\x51\xae\x68\xdb\xfb\xc1\x7c\xd9\x9e\x83\xf9\x02\x23\x28\x43\x07\xb4\x64\x27\x43\x07\xb4\x84\x26\x43\x07\xec\x6e\x47\xd0\x01\x3b\xe9\x81\x0c\x1d\xb0\xc3\x21\xce\xd0\x01\xfb\xf1\x97\x30\x5f\x20\xcf\x65\xe8\x80\x1d\x1f\x3d\x43\x07\xa4\x71\x56\xc8\xd0\x01\x3b\xe8\x54\xfe\xa2\xaa\x46\x73\xac\x90\xbf\xa8\xaa\x75\x60\xcf\xdc\x60\xc5\xb8\x66\x41\x1c\x1c\xae\x2f\x0d\x56\x8c\x9b\x68\x83\x15\xe3\x22\x0c\xa9\x70\xb8\x0e\x42\x2a\x1c\x6e\x24\x90\x0a\x07\x4e\x57\x86\x54\x68\xf5\x73\x86\x54\x38\xa0\x1f\x66\x48\x85\xd6\x3b\x67\x48\x85\xa3\xfd\xa5\x71\x91\xe1\x1b\x0e\x17\x29\xf8\x86\xd6\x84\x67\xf8\x86\x8b\x40\x2d\xc3\x37\x5c\x4e\xfe\x6e\xbb\x13\x7f\x09\xd1\xc6\x65\x17\xbe\xe1\x72\x9f\x84\x6f\xb8\xf0\xb2\x32\x7c\xc3\xe5\x6b\x81\x53\xb8\xfc\xb4\xf0\x06\x69\x76\x19\x32\xbc\xc1\x9f\x57\x00\x37\xf0\xe7\x93\xc0\xff\xa3\x71\x63\xc8\xf0\xff\x7e\x7e\x00\xfc\x3f\x21\x92\x0c\xc9\x6f\xfb\x31\x21\xf9\xed\xe3\x35\xe9\xa1\xe2\x76\x04\xc9\x6f\x43\x60\xc9\x90\xfc\xb6\xc3\x0c\x92\xdf\x06\xf6\xcc\x90\xfc\x10\xd2\x0c\x19\x92\xdf\x76\x80\x40\xf2\xdb\x64\x96\x33\x24\x3f\x84\x3b\x43\x86\xe4\xb7\xf1\x3e\x33\x24\x3f\xe4\x46\x43\x86\xe4\x77\xe1\x35\x64\x48\x7e\x87\x30\x31\x43\xf2\xbb\x4e\x3f\x48\x7e\xf7\xf1\xc9\x36\x47\xbc\x79\x88\x7c\x17\xce\x43\x86\xc8\x77\x5d\x50\x16\x22\x2f\x2e\x9f\x0b\x91\x17\x07\xdd\x42\xe4\xc5\xe5\x6c\xc1\x6e\xd1\x0f\x58\xb0\x5b\xc8\xa0\xe6\x05\xbb\x05\xcf\x3b\x2f\x14\x52\x9c\xfc\x0b\x85\x94\xc7\x6b\xc2\x6e\x21\x0a\xc8\x0b\x76\x0b\xcc\x89\xbc\x60\xb7\xbc\xde\x4f\x76\x8b\xcf\x29\xbb\x85\xef\xb0\x61\x78\x90\x29\xcc\x1b\x86\x87\x36\x6c\x18\x1e\x6e\xd3\x1b\x86\x87\x5b\xe3\x86\xe1\xe1\xa8\xdb\x30\x3c\x5c\xd8\x37\x0c\x0f\x47\xeb\x86\xe1\xe1\x76\xbb\x61\x78\x38\x8d\x36\x0c\x96\xe0\x39\x18\x2c\x8e\xf9\x0d\x83\x25\x79\x07\x18\x2c\x7a\x9f\x5f\x74\xd4\x83\xfe\xe6\x17\x1d\x75\x93\x28\xf9\xc0\x60\x71\x7b\x38\xd8\xa7\xe3\x01\xe4\x14\xdc\xd4\x8e\xf6\x71\x87\x83\x7d\x2e\x1a\x07\xfb\xdc\x44\x8f\xf6\x79\x0e\xfb\xdc\x72\x0e\xf6\x11\x2f\xe4\x83\x7d\x6e\x39\x07\xfb\xf4\x37\x8f\xf6\x61\xed\xc1\xbe\xec\xff\xb0\xcf\xad\xf8\x60\x9f\xce\xda\xc1\x3e\xdd\x89\x2f\x72\xea\x99\xec\x6a\xbe\x28\xdc\x20\x99\x90\x2f\x0a\x37\x44\x63\xf9\xa2\x70\xe3\x72\x7d\x61\xb0\x38\xfb\x2f\x0c\x16\x92\x7c\xf9\xc2\x60\x59\xfe\x0f\x15\x1b\x37\xbc\x2f\x3a\xea\x85\xd4\x41\xfe\xa2\xa3\xfe\xdb\xd4\xbe\xe8\xa8\xff\xb6\xbf\x2f\x3a\xea\x15\x17\xac\x7c\x11\x50\xaf\xd8\x5e\xbe\x08\xa8\x37\xc6\x6e\xf9\xa2\x9c\xae\x84\x55\xf9\xa2\x9c\x6e\x1d\x6a\xf9\xa2\x9c\xde\x48\x86\x94\x2f\xca\xe9\x7d\xf8\xbf\xef\x39\xfb\xf4\x9a\x9d\xa3\x87\xa3\xc1\xd1\x5f\x5e\x72\xf9\x02\xa0\x3e\x40\x4b\xcb\x17\x00\xf5\x81\x32\x40\xf9\x02\xa0\x3e\xb3\x47\x07\xda\xcd\xe0\x48\x12\x0e\xff\xfb\x02\xa0\xbe\x58\x88\xca\x07\x1d\xf5\x43\x80\x57\x3e\xe8\xa8\x9f\xeb\x2f\x21\xb0\xb0\x8b\x15\xd4\x22\xa4\xe2\x17\xd4\x22\x68\xa0\x14\x0a\x6a\x11\x0f\xcc\xd9\x82\x5a\x04\x1a\xbe\xa1\xa0\x16\x81\x80\x7e\x28\xa8\x45\xa8\x05\x55\x50\x8b\x40\x86\x3f\x14\xd4\x22\x68\xbc\x14\x0a\x6a\x11\xf4\xd9\x0d\x05\xb5\x88\x87\x05\xba\xa0\x16\xa1\x86\x54\x41\x2d\x42\xb5\xa9\x82\x5a\x04\x0d\xa2\x42\x41\x2d\x82\xe6\x51\xa1\x04\xdb\xf8\xf0\x9c\x28\x42\x04\x16\xef\x82\x22\x44\x60\x11\x2e\x28\x42\x58\x51\x56\x50\x84\x88\x7e\x76\x14\x21\x0a\x00\x62\x41\x11\xa2\x90\xaa\x28\x28\x42\x94\xc7\x5f\x2e\xce\xf1\xd9\x83\x2c\x15\xcf\x1d\x7e\xe9\x53\x5f\x7e\xc9\x39\x14\x21\x0a\x0b\x7b\x41\x11\xa2\x90\xf0\x28\x28\x42\x14\x96\xf2\x12\x61\xe1\x30\xe4\xcb\x17\x01\xe5\x42\xd8\x56\xbe\x08\x28\x17\x3c\xc5\x42\xbb\xa8\xcc\xd6\x51\x68\x17\x65\xe6\xae\xd0\x2e\x4a\xad\xb9\x42\xbb\x28\x24\xd7\x43\xa1\x5d\x14\x92\xf2\xa1\xd0\x2e\x4a\x5d\xb8\x42\xbb\xa8\xc6\xa6\x5d\x68\x17\xd5\x9a\x4f\x0d\x4b\xa5\x7a\x3f\x58\x2a\xb8\x13\x85\x76\x51\xc8\xaa\x87\x92\x64\xa9\x60\x03\xed\xa2\x4c\x89\x15\xda\x45\xa9\x58\x57\x68\x17\xa5\x2e\x5c\xa1\x5d\x54\xc3\xaf\x2a\xb4\x8b\x6a\x78\x44\x85\x76\x51\x8d\xa4\x46\xa1\x5d\x94\xe9\xab\x42\xbb\x28\x13\x6b\x25\x61\x1f\x51\x63\x49\xd8\x77\xbd\xc3\x67\x1f\x82\xb4\xa1\xd0\x4a\x6a\xe0\xe3\x15\x5a\x49\x8d\xe3\x2f\x61\xa9\xe0\x45\x16\x5a\x49\x8d\xed\x11\x2c\x15\xc7\x3c\xad\xa4\xc6\xf6\x08\x96\x8a\x73\x93\x56\x52\xa6\xa1\x0a\xad\xa4\x86\xf3\x88\x56\x52\x03\x77\xa2\xd0\x4a\x6a\x38\xae\x69\x25\x35\x9c\x63\xb4\x92\x1a\xce\x15\x5a\x49\x0d\xfc\xe9\x92\x61\xe1\x38\xe3\x32\x2c\x1c\xa2\xb8\x42\x9b\xa9\xe1\x2c\xa6\xcd\x14\x8d\xc8\x42\xa1\xcd\xd4\xc4\xfb\x2c\xb4\x99\x9a\xde\x9d\x36\x53\xd3\x19\x47\x9b\xa9\x55\x3c\x82\xc1\xe2\x57\x81\xe4\x67\x3a\xa9\x40\xf2\x33\x69\x53\x20\xf9\x99\x78\x2a\x90\xfc\x4c\x20\x15\x48\x7e\xdb\x91\x05\xc9\x6f\xff\x9e\x05\x45\x96\xe6\x2f\x51\x64\x71\x24\x43\xf2\x33\xb5\x55\x20\xf9\xd1\x45\x3c\x14\x48\x7e\xa6\x9a\x0a\x24\x3f\xdd\xc8\x52\x65\xe8\xfc\x05\xef\x15\xf8\x7f\xe6\xc0\x0a\x1c\x3f\x4b\x8c\x0b\x1c\x3f\x81\xb2\x02\xc7\x8f\xfe\x7a\xa1\xc0\xf1\x53\x82\xaf\xd0\x65\xea\xb0\x8b\x15\xba\x4c\x09\xb7\x15\xf8\x7f\xc7\xa1\x04\xff\xef\xf8\xc1\xe0\xff\x09\x27\x16\xf8\x7f\xc7\x05\x1a\xfe\xdf\x4d\x1e\x21\x38\x43\xd0\x5f\xe0\xff\x5d\xbc\x89\x02\xff\xef\x42\x94\x2a\x28\x42\xc8\x6e\x2e\x28\x42\x58\x00\x5c\x50\x84\x10\xf0\x2a\x28\x42\x98\x77\x2a\x28\x42\xbc\xd5\x73\x90\x77\xdc\x51\x51\x7d\x30\x7b\x55\x50\x7d\x78\x8b\x77\x80\xa0\xe3\x90\x40\xf5\xe1\x75\x99\x40\xf5\x41\x60\xae\xa0\xfa\xf0\x3a\x24\x50\x7d\x30\x5b\x56\x50\x7d\x78\xf1\xdc\x0a\xaa\x0f\x6f\xf4\x1c\x36\x14\xff\x87\x0d\x78\x4b\xa5\x6b\x03\xb6\xa3\xfa\x10\x48\x71\x14\x54\x1f\x64\x0d\x17\x54\x1f\x42\xf0\x9a\x30\x58\x7e\x47\x30\x58\x08\x9f\x0b\xaa\x0f\xe9\xf7\x64\x30\x58\xb2\xe7\x60\xb0\x68\x1f\xaa\x0f\x26\xb3\x0a\xca\x0e\x26\x90\x0a\xca\x0e\x89\x20\xae\xa0\xec\x90\x8a\xbf\x84\x69\x33\x3c\x82\xa5\x82\x77\x56\x50\x76\x48\x4e\xb8\x01\x4b\xc5\x6f\x34\x60\xa9\x90\x7d\x2c\xa8\x3e\x98\xb4\x29\xa8\x3e\x24\xc7\x2e\xaa\x0f\xa6\x2a\xca\xd0\x06\x8f\xb4\x81\xd1\x33\x64\x12\x79\x04\x0b\xc7\x6f\x8b\xea\x43\x72\xf9\x44\xf5\xc1\x24\x58\x41\xf5\xc1\x84\x5c\x41\xf5\x21\x39\xa5\x51\x7d\xc8\x8e\x1e\x54\x1f\x32\x38\x7c\x41\xf5\x81\xc6\xa2\xa1\xa0\xfa\x50\x7e\xe7\x3e\xfb\x0a\x1e\x66\x41\xf5\xc1\x94\x43\x41\xf5\xc1\xb4\x49\x41\xf5\x81\xbe\xe1\xa1\x4c\x18\x10\xd3\x6b\xc2\x80\x70\x3e\xa0\x08\xd1\x97\x4f\x0d\xa4\xe6\xfd\x16\x0c\x08\xe7\xed\x82\x01\x01\x62\x52\x50\x8b\xf8\xf9\x78\xa8\x45\x74\x1d\x08\xd4\x22\xfa\xf4\x08\x86\x87\x5b\xdc\x82\xe1\x01\x26\x53\x50\x92\xe8\x6e\x78\x28\x49\x74\x72\xd0\x05\x25\x89\xee\x92\x85\x92\x44\x1f\xfe\x0f\x86\xc7\xf4\x7f\xd8\xa7\x2f\xba\xb4\xcf\x23\xed\xe3\xbd\xa0\x24\xd1\xa1\x24\x14\xe4\x22\x3a\x20\x7d\x41\x2e\xa2\xbb\xbe\x6c\xed\xe3\x7e\xc8\x45\x74\x80\xf8\x02\x91\xaf\x77\x8f\xb0\x0f\xda\x41\x41\x2e\xa2\x03\xe7\x17\x48\x7e\xbd\x7b\xa4\x7d\xfe\x0f\xfb\xfc\xd2\x90\xfc\xfa\x7f\x11\xc2\xbf\x97\x64\xf8\x7f\x2a\xc2\x16\xf8\x7f\xd6\x2e\x15\xf8\x7f\x5d\x5f\x66\x6b\x3a\x83\x60\x6b\x3a\xc3\xe5\x68\xba\x47\x98\x0e\x8b\xa3\x1c\xc9\x2d\x3c\xe6\x91\xdc\xc2\x2b\x3b\x92\x5b\x18\xf2\x30\xf7\xa6\xde\x84\x1a\x10\x0e\x17\xe8\x79\xe7\x7a\x07\xf8\x10\xa4\x1c\x0a\xf4\xbc\x0b\x1e\x5b\xa0\xe7\x5d\xe8\x6b\x05\x7a\xde\x21\x90\x29\xd0\xf3\x2e\x59\xe0\x02\x3d\xef\x80\xb2\x16\xe8\x79\x97\x20\xb5\x40\xcf\xbb\x64\xee\x0a\x4d\xa0\xae\x8b\x06\xf4\xbc\xeb\x52\x07\x3d\xef\xbe\xde\x61\x70\x07\xaf\x39\x39\xc7\x3b\x83\x9e\x77\xf4\x5e\xa0\xe7\x5d\x08\x79\x05\x7a\x1e\x1d\xc4\x42\x81\x9e\x77\x99\xd2\xf5\xd1\x86\xce\x11\x9c\x0e\x3c\xa9\x0a\x3d\xef\x92\x21\xae\xd0\xf3\x64\x8f\x56\xe8\x79\x37\x7a\x84\x0d\xa4\xa1\x2a\xf4\xbc\x0b\xf5\xab\x42\xcf\xb3\x44\xa8\x42\xcf\xbb\xe4\xd1\x2b\xf4\xbc\xfb\x78\x3f\xec\x4b\x3e\x19\xf6\x3d\x5e\xc5\x6f\xe4\xb3\xf8\x8d\x0a\x47\xda\xa7\x0d\xd8\x87\xff\x5e\x5f\xed\xf3\xc8\x6f\x34\x38\xc2\x3e\xe8\x95\x15\x7a\xde\x25\x51\x52\xa1\xe7\x5d\xb4\x3f\x2a\xf4\xbc\x4b\xc1\x50\x85\x9e\x77\x01\x7d\x2a\x1a\x10\x2f\x5e\x72\x45\x03\xe2\x65\x5c\x57\x34\x20\x5e\x7c\xa0\x8a\x06\x84\x1b\x6c\x45\x03\xe2\x25\x2f\x5a\xd1\x80\x78\xd9\x2c\x2a\x1a\x10\x6f\xf3\xc9\xe4\xac\xf0\x06\xd1\x80\x78\xf1\xce\x2a\x1a\x10\x2f\xfe\x58\x45\x03\xe2\x65\x8e\x55\x34\x20\x84\x87\x2a\x1a\x10\x26\x0b\x2a\x1a\x10\xe1\xf7\xcb\xcc\x11\xcf\x82\x06\x44\xe8\xfe\x52\x4e\x87\x47\x72\x3a\x78\x4b\x68\x40\xd0\xdf\x3c\x54\x34\x20\xe8\xd5\x1d\x2a\x1a\x10\x09\xd8\xac\xa2\x01\x21\xb6\x52\xd1\x80\x48\xd5\xff\xc1\xf7\xa8\xde\x1d\xbe\x07\x2e\x4a\x8d\xf0\x3d\x48\xbe\x54\xf4\x21\xcc\xcd\x57\xf4\x21\x32\x69\xb6\x8a\x06\x84\xd2\xa7\x35\xc2\x87\xf0\x3b\x44\x3a\x87\x90\xda\xaa\xe8\x43\x14\xbf\x26\xfa\x10\xc6\x89\x15\x11\x08\x63\xc8\xfa\xc5\x58\xb5\x90\x20\xab\x11\x1d\x0b\x66\x55\x45\x20\xa2\x90\x20\xab\x08\x44\xa8\x34\x5e\x11\x88\xa8\x7e\x15\x04\x22\x2a\xfe\x6d\x45\x20\xa2\xfa\xdd\x11\x88\xa8\x7e\x77\x04\x22\x2c\xee\xa9\x08\x44\x54\xc7\x0b\x02\x11\x15\x57\xb1\x22\x10\x51\xab\xbf\x84\x10\xd1\xfe\x92\x1d\xaa\x68\x47\x58\x86\x5a\xd1\x8e\x50\xa0\xbc\xa2\x1d\xa1\x9a\x56\x45\x3b\xa2\x91\xe2\xa8\x68\x47\x28\x73\x5e\xd1\x8e\x68\xbf\x9b\xc3\x95\x20\xfd\x51\x93\x5c\x09\xce\xa1\x1d\xd1\x58\xbc\x2b\xda\x11\x74\xed\x0a\x15\xed\x08\x33\x38\x15\xed\x08\xa5\xd3\x2b\xda\x11\xca\x95\x57\xb4\x23\x2c\x82\xad\xe8\x43\xb8\xbb\x57\xf4\x21\x2c\x97\xad\xe8\x43\xf4\xee\xff\x26\x47\x0c\x3a\xf4\x21\xdc\x80\x6a\x96\x2b\xe1\x35\xe1\x4a\x74\xef\x0e\x57\xc2\xc1\x83\x3e\xc4\xc0\xc3\xac\xe8\x43\x58\xf6\x5a\xd1\x87\x50\xd8\xbc\xa2\x0f\x31\x80\xdb\x2a\xfa\x10\x03\x8f\xbd\xa2\x0f\x31\xe0\x5d\x57\xf4\x21\x86\xef\x13\x0d\x08\x03\xd8\x8a\x06\xc4\xf4\xc9\xd0\x80\x98\x64\xe7\x2a\x1a\x10\xb3\x79\x77\xba\x8a\xe0\xaf\x54\x34\x20\xe6\xef\xa9\xe1\x4a\xf8\x96\xd0\x80\x98\x78\x28\x95\x26\x50\xf4\x21\x0b\x95\x26\x50\xb2\x39\x2b\x4d\xa0\x26\x7e\x4e\xa5\x09\xd4\x74\xb0\xa2\x1d\x31\xfd\x0e\xd6\x4a\x01\x75\x54\xa8\x7b\xea\x7c\x55\xa8\x7b\xd3\xef\x07\x75\x6f\x3a\xc8\xa1\xee\xad\xe9\xfd\x26\x47\xbc\xb3\x2a\x57\xc2\x27\x93\x2b\x81\xb5\x50\xf7\x36\x3e\x57\x85\xba\x47\x93\xb2\x50\xa1\xee\x29\xdc\x5e\xa1\xee\x6d\xd8\x26\x15\xea\xde\x76\x94\x43\xdd\x53\xb8\xbd\x42\xdd\xa3\xeb\x5a\xa8\x50\xf7\x2c\xba\xad\x50\xf7\x36\xa2\x90\x15\xea\xde\xc6\x65\xa8\x50\xf7\x36\xbe\x5a\x85\xba\xb7\x71\x4a\x2a\xf4\xbc\x8d\x8f\x57\xa1\xe7\x29\x22\x5f\x9b\x7c\x08\x7f\xa9\x0d\x58\x0b\x3d\x6f\xe3\x33\xd7\xae\x0d\xfc\xb2\x6b\x03\x77\x87\x9e\xb7\xf1\x30\x2b\xf4\xbc\x8d\x77\x56\xbb\x36\x78\x0e\xae\x84\xcb\x2e\x14\xbc\x4b\x6a\xa4\x42\xc1\xbb\xdb\x6b\x7e\x08\x86\xe2\xf3\x15\x44\x88\x7e\xe3\xa1\x82\x08\x3d\xd9\xe7\x84\x2b\xe1\xa6\x86\x02\xc5\x6f\x3b\x02\x2d\x7a\xc9\xcd\x57\x14\x28\x7e\x5b\x23\x0a\x14\xaf\x63\x10\x24\xe9\x75\x0c\x82\x24\xbd\xa4\xa1\x2a\x0a\x14\xc1\x45\x18\x05\x8a\xe4\xbc\x05\x65\x4a\x8e\x2c\x14\x28\x92\xb6\xa3\x40\x91\x7c\x83\x20\x50\xc9\xd1\x03\x02\x95\xfc\x7e\x2a\x50\x38\x5e\x94\x99\x70\x25\x02\x81\x4a\xbe\x6b\x65\x26\x5c\xdd\x94\x99\xf0\x6b\x82\x40\x25\x57\x4c\x10\xa8\xe4\xc8\x02\x81\x4a\xeb\x2f\x12\x5c\x05\x9c\x4a\x0e\x4f\xc0\xa9\xd4\x3d\xc2\xf4\xe9\x25\x31\x1d\xc0\xab\xaa\x40\xe1\xf0\x04\x9c\x4a\x4e\x8e\xa9\xe9\x3e\x34\xa6\xbb\xb4\x02\x4e\x25\x97\x48\xc0\xa9\xb4\xfc\x1f\xa6\x03\xf6\x55\x14\x28\x92\x0b\x03\xc0\x55\x72\xd0\xa9\x40\xe1\x20\x47\x81\x22\xb9\x9c\xa1\x40\x91\xc0\x94\x2b\x0a\x14\xc9\x45\x03\x05\x8a\x34\x3d\x87\x7d\xcb\xab\xf8\x69\xb1\x0f\x05\x8a\x44\x62\xa6\xa2\x40\x91\x08\x79\x2a\x0a\x14\x89\x74\x4b\x45\x81\x22\x6d\x9f\x13\xfb\xa6\x57\xc1\x3e\x97\x48\x15\x28\x8a\x47\x60\xed\x40\x4e\x15\x05\x8a\x1a\x3c\x02\x6b\x77\xf1\x46\x81\xa2\x12\x3e\x57\x14\x28\xaa\x9e\x30\x0a\x14\x15\xdf\xbe\xa2\x40\x51\xf5\x1b\x51\xa0\x90\x1e\x54\x51\xa0\xa8\x14\x31\x57\x14\x28\xea\xeb\x35\xe1\x12\xe8\x65\xa1\x40\x51\x49\xfd\x54\x14\x28\x6a\xf2\x2a\x8b\xa7\xf6\x0e\x9b\x73\xbc\x4f\x14\x28\x2c\x23\xa9\x5b\xfb\x78\x4b\x47\xfb\x18\x59\x47\xfb\x18\x3d\x28\x50\x54\xfd\x77\x14\x28\xea\xeb\xff\xb0\x4f\x9f\x19\x05\x8a\x0a\x8c\x55\x51\xa0\xa8\x7a\xfa\x07\xfb\x92\xff\xc3\x06\x0a\x55\x2a\x0a\x14\xd5\xe5\x05\x05\x8a\xfa\x7a\x4d\x6c\x70\x13\x3d\xd8\xa0\xcf\x75\xe0\x12\xc0\xaa\xa8\x17\x15\x8d\xe3\x11\x4a\x20\x64\xdc\x2b\xea\x14\xe6\x8b\x2b\xea\x14\xcd\x2d\x15\x75\x0a\xeb\x2d\x2b\xea\x14\x82\x45\x15\x75\x8a\x46\xa4\x56\x51\xa7\xb0\xe0\xa4\xa2\x4e\xa1\x9c\x6a\x45\x9d\xc2\x82\xea\x8a\x3a\x45\x77\xfe\xa1\x4e\x61\x88\x5c\x51\xa7\xe8\x2e\x44\xa8\x53\x74\x5c\xa2\x86\x3a\x45\x07\xeb\x68\xa8\x53\x74\xae\xd9\x50\xa7\xe8\xe4\x7d\x1b\xea\x14\xe2\x4a\x0d\x75\x0a\x65\xb8\x1a\xea\x14\xaa\xa5\x37\xd4\x29\x06\xee\x4b\x43\x9d\x42\xd5\xf3\x86\x3a\xc5\x60\xcb\x69\xa8\x53\x2c\xa0\xe2\x86\x02\xc5\x22\xa5\xd9\x50\xa0\x58\xcb\xff\xa1\xb0\xc1\xfc\x6b\x28\x50\xb8\x71\x35\x15\x28\x88\x60\x9b\x0a\x14\xe0\x20\x0d\x05\x8a\x0d\xba\xd1\x54\xa0\x20\xaa\x6a\x28\x50\xd0\x09\x33\x34\x15\x28\xf0\xa7\x9b\x0a\x14\x44\xda\x8d\xa6\x53\x87\x38\xb1\xd1\x74\xea\x3c\xde\x1d\x09\x0a\x22\xc3\x06\xe5\x6f\xf3\xdd\x9b\x12\x14\xc4\x04\x4d\x09\x0a\x52\x4d\x0d\x5a\xdf\x17\x6d\xfe\x73\x49\x6e\x41\x8c\x9e\xc7\x44\x81\x42\x01\xc7\xa6\x02\x05\xe1\x65\xfb\x29\x50\x70\x3b\x15\x28\xc8\x65\x35\x14\x28\x14\x70\x6c\x28\x50\x28\x93\xdd\x54\xa0\x60\x02\x34\x14\x28\x5e\x26\x47\x43\x81\xc2\x6e\x5f\x4d\x05\x0a\x96\x89\xa6\x02\x45\xf5\x7f\x60\xf4\xd5\xfb\x81\xd1\x43\xc1\x6b\x2a\x50\x54\x9f\x1a\xfc\x17\x3f\xbc\xa1\x40\x11\xd8\x43\x1b\x0a\x14\x81\xdc\x67\x43\x81\x22\xb0\xe8\x37\x14\x28\xac\x87\x6f\x2a\x50\xb0\x40\x37\x15\x28\xba\x57\x01\xdf\x1e\xfe\x12\x7c\x9b\xbd\xbe\xa9\x40\x31\xbc\x03\xf8\x76\xf7\x97\xe0\xdb\x0e\x72\x15\x28\xb4\x41\x05\x0a\x76\xfe\xa6\x02\x05\xd9\xce\x86\x02\x45\xc0\xc7\x6b\x28\x50\x04\xa6\x7b\x53\x81\xa2\x79\x84\x7d\x78\x9f\x4d\x05\x0a\xe2\x85\xa6\x02\xc5\xf0\x1c\xf6\x11\x42\x36\x15\x28\xf0\xc3\x9b\x0a\x14\x4c\xf0\xa6\x02\x05\x7e\x78\x53\x81\x02\x1f\xa8\xa9\x40\x81\x67\xd3\x50\xa0\x08\x4e\x5b\x14\x28\x02\xdb\x74\x43\x81\x82\xd6\xa5\xa1\xa1\x40\x11\x9a\xe7\xb4\xcf\xff\x61\x1f\x8b\x4d\xcb\xda\xc7\x3b\xcb\xd8\x17\x3c\x87\x3a\x85\x8b\x8d\xea\x14\x3e\xb5\xea\x14\x4e\x4d\xd4\x29\x2a\x45\x2c\x0d\x75\x8a\xaa\xed\xa8\x53\x54\xbf\x3b\xea\x14\x06\x9b\x4d\x75\x0a\x7c\xbc\xa6\x3a\x05\x41\x6a\x53\x9d\xc2\x77\x8d\x3a\x45\xad\x3e\x27\xd8\x3e\xf1\x42\x43\x9d\xc2\x10\xb9\xa1\x4e\x51\xfd\xb6\xa8\x53\x54\x7c\xb5\xf6\x45\x5c\xbd\x52\x48\xd5\xbe\x88\xab\x37\x42\xf9\xf6\x45\x55\xbd\xbb\xf4\x7c\x51\x55\xef\x4e\xfe\x02\xee\xef\x12\x52\xc0\xfd\x7d\x83\x05\xdc\x9f\xa8\xaa\x15\x70\x7f\x8a\xac\xda\x17\x71\x75\xf3\xa9\xed\x8b\xb8\x3a\xdd\x2e\x43\x2b\x74\xd9\xc1\xa7\x6c\x5f\xc4\xd5\x4d\x5b\xb6\x2f\xe2\xea\x66\x6c\xdb\x17\x71\xf5\x8e\x63\xd5\xbe\x88\xab\x5b\x9c\xdf\xbe\x88\xab\x0f\x60\xba\xf6\x45\x5c\x7d\x1c\x7f\xd9\xa0\x0f\xf0\x26\xbe\xe8\xa8\x2f\x52\x93\xed\x8b\x8e\xfa\x71\xf4\x80\x32\xa9\x70\xd3\x40\x99\x54\x9c\x69\xa0\x4c\x2f\x5b\x6a\x03\x65\x52\xf6\xbf\x21\x17\x41\xa3\xdd\xd0\x90\x8b\x50\xe5\xaf\x35\x09\x03\xd8\x80\x24\x84\x4d\x07\x1a\xb2\x0f\x81\xc4\x68\x43\xf6\x21\x00\xf5\x37\x64\x1f\x4a\xf2\x0e\x00\xea\x38\x02\x0d\xd9\x87\x42\x5a\xa8\x21\xfb\x50\x70\x19\x1a\xb2\x0f\x25\xfd\x45\x82\x6b\x28\x42\x14\xc2\xee\x86\x22\x44\x81\xfe\xd4\x50\x84\x28\xf8\x40\x0d\x45\x88\xe2\xb0\x46\x11\xa2\x64\xff\x57\xf9\x25\xaf\x05\x45\x88\x82\xff\xd7\x50\x84\x28\xee\x8c\x28\x42\x94\xe0\x43\xc3\x25\xc0\xe7\x6a\x28\x42\x94\xe8\x1d\x30\x3d\x78\x07\x4c\x8f\x1e\x7d\xa6\xeb\xe7\x34\x15\x21\x5c\xea\x54\x84\x70\x40\xaa\x08\xe1\x00\x41\x11\xc2\x44\x49\x43\x11\xa2\xb9\xd4\xa1\x08\xd1\xf0\xbc\x1b\x8a\x10\x26\x51\x1a\x8a\x10\xa6\x5b\x1a\x8a\x10\x96\x9f\x34\x14\x21\x9a\xc3\x45\x45\x88\xdf\x11\x58\x34\x44\xb7\xa6\x22\x84\x83\x40\x45\x08\x3c\xb0\xa6\x22\x84\x83\x07\x45\x88\xe9\xa0\x53\x11\xc2\x61\x86\x22\xc4\x74\x6a\xaa\x08\x41\x9e\xb9\xa1\x08\x31\x61\x55\x34\x14\x21\xa6\x13\x15\x45\x88\xe9\xee\x8e\x22\xc4\x84\x9b\xd1\x50\x84\x58\xc5\x5f\x82\x45\xbb\xb4\xd2\x58\x6a\xbb\x59\xa0\x16\x61\x30\xdd\x50\x8b\x90\x7e\xd8\x54\x8b\x70\xd1\x57\x2d\xa2\x6b\x03\x58\xb4\xdb\x83\x6a\x11\x7e\x07\xd5\x22\x5c\x34\x54\x8b\xf0\xed\xaa\x16\xe1\xa6\xa6\x5a\x84\x8b\x30\x6a\x11\x87\xe2\x82\x86\x5a\x84\x62\xe2\x0d\xb5\x08\xf5\xb5\x9b\x6a\x11\xd9\x3b\x90\x64\x80\x75\xd0\x54\x8b\x20\xca\x69\xaa\x45\x6c\xef\x00\x18\x7d\x7c\x96\x05\xc4\xec\xfd\x36\xa0\x32\xd6\x02\x32\x19\x68\x37\x40\x26\xc3\xf5\x06\xc8\xf4\x73\x20\x00\x99\x5e\x47\x24\x20\xd3\x4b\x54\xd5\x00\x99\x5e\xdf\x20\x20\x93\x09\x81\x06\xc8\xf4\xea\x40\x00\x32\xbd\xbe\x5d\x95\x24\x1c\xbb\x2a\x49\x90\x62\x6c\x2a\x49\xf8\xc5\x54\x92\xf0\x8b\xa9\x24\xa1\x73\xa1\x92\x84\x6f\x5e\x25\x09\x5d\x0d\x95\x24\x80\x67\x9b\x4a\x12\x40\x5c\x0d\x24\xe9\xb7\x51\x82\x24\x99\x4b\x6e\x47\x90\x17\xfb\x40\x92\x92\xde\xee\x11\xe4\xf5\x1c\x20\x2f\x29\xb1\x86\x92\x84\xc9\x89\x86\x92\x44\x72\x84\xa0\x24\x61\x15\x44\x53\x49\xc2\x37\xaf\x92\x84\x0e\x84\x72\x11\xba\x0c\xca\x45\x38\xdf\x95\x8b\xf0\xbd\x28\x17\x01\xe3\xbd\x29\x17\xe1\x37\x52\x2e\x82\x48\xbb\x81\x47\x65\xdd\x3a\xf0\x28\xdb\xd8\x35\xf0\x28\x6b\x15\xdb\x15\xe4\xe5\xc9\x90\x8b\x28\x7f\x92\xe0\x1a\x50\x95\x4d\x39\x1b\x50\x55\xd1\x5f\x01\xaa\x2a\x0e\x3a\xa0\x2a\x9b\x80\x36\xa0\xaa\xe2\xc7\x04\xaa\x2a\x0e\x09\xa0\xaa\xe1\x0e\x0e\x54\x35\x70\xfb\x3b\x50\x95\x75\x69\x1d\xa8\x4a\xb2\x78\x07\xaa\xa2\xef\x74\xe8\x40\x55\xd6\xac\x75\xa0\xaa\xce\xbe\xd5\x81\xaa\xa4\x95\x77\xa0\xaa\x81\xff\xde\x81\xaa\x3a\x8b\x62\x07\xaa\xea\x04\x7f\x1d\xa8\x4a\x92\x79\x07\xaa\xb2\xd6\xad\x03\x55\x0d\x7c\xfb\x0e\x54\xd5\xd9\x51\x3b\x50\x95\xcd\x2e\x3b\x50\x55\xbf\x5e\x05\xa0\x13\xaf\xb5\xbf\xda\xc7\x93\x01\x55\x75\x96\xdd\x0e\x54\xd5\x8f\x47\xd8\xc7\x36\xd6\x81\xaa\x06\x70\x46\x7f\xb5\x8f\x77\xa6\x92\x04\xc1\x6d\x47\x49\x62\x10\xd7\x74\x95\x24\x08\x8a\xbb\x4a\x12\xc7\x5f\x62\x1f\x01\x5e\x47\x49\x42\x3d\xe8\x8e\x92\xc4\x78\xbd\x9f\xf6\xf1\xae\x5f\xbf\x1f\x6f\x50\x25\x09\x36\x8b\x8e\x92\x84\x19\xf0\x8e\x92\xc4\x60\xd1\xef\x2a\x49\xb0\x01\xf5\xe0\xf7\xf3\x97\x00\xb9\x80\x4c\x3d\xa0\x52\xc0\x16\xd7\x51\x99\x98\x4c\x95\x8e\xca\xc4\x64\x59\xea\xa8\x4c\xcc\xe1\x55\x3e\xfb\xd6\xe3\x55\x06\x47\xbc\xc1\xa0\x82\x01\x4f\x8d\xca\xc4\x7a\xbc\x0a\x50\x6a\xf2\x7f\x40\x8d\x3f\x1b\x84\x52\xf9\x7e\xa8\x4c\x5c\xfc\xf7\x8e\xca\xc4\x25\x27\xdc\x51\x99\xb8\x2c\x67\x1d\x95\x89\xcb\x92\xd5\x51\x99\xb8\x2c\x9f\x1d\x95\x89\xcb\x52\xd0\x51\x99\xb8\xc5\xff\x55\x9e\x85\xe7\x44\x65\xe2\xb2\x10\x75\x54\x26\x2e\x8e\x4e\x47\x65\xe2\x76\xef\x0e\x94\x5a\x3d\x5a\x5c\xd3\x3b\x60\x5f\xf3\x0e\xd8\x97\xbd\xa6\xf6\x71\x0e\x95\x89\x9b\x3d\xc2\x3e\x98\x28\x1d\x95\x89\x4b\x91\x76\x47\x65\xe2\x12\x19\x76\x54\x26\x2e\x5b\x40\x47\x65\xe2\xb2\xfd\x75\x54\x26\x64\xca\x77\x54\x26\x2e\xe9\xb9\x8e\xca\x84\xf5\x81\x9d\xe6\x51\xb7\xfa\x3f\xec\x2b\xde\x0f\xfb\xba\x57\xc1\xbe\xec\xfd\xb4\xcf\xab\x60\x1f\x5b\x71\x4f\xda\xc7\xfb\x44\x9d\x82\xee\xe3\xa1\xa3\x4e\x41\x67\xf2\xd0\x51\xa7\xb8\xb0\x62\x3a\xea\x14\x17\x1e\x53\xa7\x79\xd4\x65\xf9\xec\x60\x55\x2f\x2b\x5f\x47\xe7\xdc\x0d\xaf\xa3\x73\xee\xd6\xd8\xc1\xb1\xdc\x52\x3b\x38\xd6\x3b\x3c\x02\x2a\xee\xde\x01\xa8\x78\xfc\x45\x82\xeb\x40\x5c\xef\xd4\x04\x50\x64\x3c\xcc\x0e\xc4\xf5\x3a\x71\x80\xb8\x5e\x3c\x94\x0e\xc4\xf5\x92\x10\xe8\x40\x5c\xee\xaf\x1d\x88\xcb\xbd\xb7\x03\x71\xbd\xec\x70\x1d\x88\xeb\x25\x20\xe9\x45\xd3\x79\x65\x45\x14\x99\x65\x02\x09\x74\x83\xfe\x8e\x04\x7a\xcc\x9e\x13\x45\xe6\x95\x01\x6a\x45\x07\x08\xa0\x56\x84\xc2\xd5\x01\xb5\xa2\x03\x04\x50\x2b\x3a\xe4\x01\xb5\x22\xa4\xa6\x0e\xa8\x15\x9d\x38\x80\x5a\xc9\xa9\x89\xe6\x84\x75\x85\x1d\xe0\x2a\x35\xaf\x89\x16\x80\xc3\x0c\xe0\xca\xbd\xbe\x03\x5c\x25\x12\x02\x1d\xe0\x2a\x81\xea\xf6\x2a\xbe\xed\xdd\xa9\x95\x77\x49\x06\xb8\xb2\x76\xb0\x03\x5c\x65\x17\x0d\x80\xab\xe2\xf2\x09\x70\x55\x5e\xcf\xa1\x05\x40\xbe\xb8\x03\x5c\xc9\x28\xee\x00\x57\xb2\x94\x3b\xc0\x55\x21\x45\xd5\x01\xae\x0a\x51\x47\x07\xb8\x2a\x64\xb2\x7b\x53\x0b\x80\xf7\xd9\xec\xcc\xe0\xd1\x06\x45\xf6\x0e\x87\x23\x86\x6e\x13\xd1\xe6\x59\x80\xaa\xaa\x6f\x02\xa8\xaa\x11\xa0\x77\xa0\xaa\x46\xc0\xdc\x81\xaa\x1a\x39\xc5\x0e\x54\x65\x9d\x58\x07\xaa\xb2\xa1\x51\x07\xaa\xb2\x2d\x52\x47\x49\xc2\x86\x46\x1d\x25\x09\x9b\x24\xf5\x0e\x34\xbd\x7c\x16\x61\x5d\xac\x45\x49\xc2\x3c\x6c\x47\x49\x42\x92\x58\xef\xc2\xba\xdc\x1d\x25\x89\xee\x66\xf1\x45\x63\xd5\xba\xb4\x0e\xe5\xcf\x72\xee\x8e\xca\x84\xea\xc9\x1d\x95\x89\xe1\x04\x47\x65\x42\xa5\xbb\x8e\xca\xc4\x70\x06\xa0\x32\x31\x71\x7b\x3a\x2a\x13\x76\x91\xec\xa8\x4c\x4c\x68\x61\x1d\x95\x89\x39\x7c\x32\x20\x5f\xdf\x04\x2a\x13\xd3\x25\x04\x95\x89\x39\x7d\x16\x20\x5f\xc8\x5e\x7d\x00\xf9\x3a\xfb\x51\x99\x58\xcb\xa3\x97\x23\xde\x20\x2a\x13\x16\x75\x75\x54\x26\x96\x4f\x86\xca\xc4\xd6\xf1\x40\x65\x62\x6f\xcf\x01\x89\xc2\x9f\xee\xa8\x4c\x58\x48\xd5\x51\x99\x50\xbf\xb8\xa3\x32\xb1\x89\x48\x3a\x2a\x13\xe6\x76\x3b\x2a\x13\xfb\x7a\x15\xe0\x52\x1d\x16\x54\x26\xb6\x2e\x03\x2a\x13\x96\x7f\x75\x54\x26\x2c\x1b\xeb\xa8\x4c\x58\x0c\xd6\x91\x92\xd8\x70\xa4\xfb\x17\x8d\xd5\xdf\x86\xb7\x28\x2d\xf7\xed\x22\x33\x71\x5d\x76\x97\xa5\xe5\x8c\x5d\x64\x26\xee\xf1\xa8\x72\x84\xed\x44\x63\x57\xdb\x97\x50\xea\x5f\x5d\x45\x3a\x0a\x14\x57\xf3\x50\xa0\xb8\x24\xf8\x3b\x50\xd5\x43\x15\x5e\x07\xaa\x7a\xdc\xd3\x80\xaa\x5e\x3d\x1b\xa0\x2a\x83\xa3\x0e\x54\xf5\x5b\xbc\x81\xaa\x5e\xf7\x2d\xa0\x2a\x43\xb3\x0e\x54\xf5\x12\x22\x77\xa0\x2a\xe9\x41\x7d\x8b\xb2\xf2\x64\x40\x55\x56\x40\x75\xa0\x2a\xc9\x42\x1d\xa8\xca\x9a\xae\x0e\x54\x65\x7d\x52\xdf\x56\xa4\xfb\x2c\x54\xa4\xeb\xab\x01\x55\x65\xf2\xda\x1d\xa8\x2a\x43\x5f\xeb\x40\x55\x59\x4f\x11\xa8\x4a\x2a\x4f\x07\xaa\xca\xb0\x7f\x3b\x50\x55\x86\x24\xd6\x81\xaa\xb2\x9e\xe9\xb1\x2c\x9b\x0f\x06\x54\x95\xc9\xb8\x77\xa0\xaa\x4c\xf6\xaa\x03\x55\x65\xfd\x70\xa0\xaa\xec\xf2\x79\x80\x1a\xf5\x92\x11\x52\xcf\xc1\x23\xa0\x46\x07\x2b\x30\xd6\x6f\x61\x07\xc6\xca\x8f\x57\x01\x6a\xd4\x87\x05\xc6\xca\xc1\xff\x59\x56\xcf\x1b\x04\xc6\xca\xc6\x27\x17\x28\xd5\x09\x87\x00\x7b\x72\xd0\x01\x71\x25\x52\x00\x1d\x88\x2b\xe9\xb1\x03\x71\xe5\xd7\x6b\x02\xa5\x3a\x3c\x81\xb8\x12\x20\x53\x07\xe2\xca\x7e\x69\x20\x2e\x25\x6d\x3a\x10\x57\x76\x7b\x00\xe2\x52\xd2\xa6\x5f\xbf\x9f\xbf\xe4\xfb\xe9\x17\x03\x71\x29\x85\xd3\x81\xb8\x32\x1b\xd7\x00\xe2\x4a\x4c\xe2\x01\xc4\x95\x81\x0c\x07\x10\x57\x0e\x9e\x03\x0e\x66\x4a\x8f\x47\x1b\x2e\x47\xd8\x40\xca\x68\x3c\xda\xd0\x38\xf2\x1b\xf9\x3f\x6c\x88\x1e\xf9\x8d\x26\x47\xd8\xf0\x7a\x15\x6c\x08\xde\x41\x38\x38\x70\x04\x5c\x0a\x03\x7d\x00\x63\x55\x3c\xbe\x01\x8c\x55\x59\xce\x06\x30\x96\x55\x6a\x03\x18\xcb\x3c\xfa\x00\xc6\x52\x7f\x66\x00\x63\x55\xdc\x97\x01\x8c\xa5\xc2\xcd\x00\xc6\xaa\xc5\x6b\x02\x97\xe2\xcc\x0c\x60\xac\x9a\x3d\x07\x5c\x0a\x77\x7c\xa0\x5c\xa1\x8a\xcd\xf8\x1f\x63\xe7\x96\x67\x2f\xab\x03\xd1\x29\xa9\xa0\xc8\x70\xb8\xce\x7f\x08\xe7\xd7\xac\xa5\x76\xbf\x7c\xff\xf3\xe8\xde\x5e\x00\x11\x52\xa9\xa4\x82\x72\x85\x15\xe2\xcb\x6e\x1f\x18\x09\x78\x2c\xcb\x22\x15\x94\x2b\x12\x9e\xe5\x72\xd0\x3f\xcc\xac\x82\x72\x85\xc1\x65\x05\xe5\x0a\xf5\xa7\x0b\xca\x15\x72\x01\x05\xe5\x0a\x43\xd4\xca\x61\xff\x3c\x93\xfe\x11\x49\x5e\x0e\x29\x6d\xef\x49\xff\xb0\x92\x0b\xca\x15\x29\x79\x26\xfd\xf3\x3d\x1c\xf6\x8f\x91\x3f\xec\x1f\xef\x0f\x79\x8a\xdb\x51\x42\x9e\x22\xe3\x2a\x2c\xc1\xa2\x0a\xff\x5a\x92\x0b\xca\x15\x96\x7f\x2c\x28\x57\x58\xb8\xb1\xa0\x47\x61\x59\xc5\x82\x1e\x45\xde\x3d\x22\x97\x1c\x66\xba\xa0\x47\x91\x59\x96\x0a\x7a\x14\x99\x65\xa9\xa0\x47\xa1\x6d\x51\x82\xdc\xb0\xcf\x83\x1b\x66\x61\x2f\xe8\x51\x64\x76\x9c\x82\x1e\x45\xf6\x73\x88\x72\xc3\x0c\x2e\x7a\x14\x05\x4b\xaa\xa0\x47\xa1\x32\x6f\x41\x8f\x42\x25\xe0\x82\x1e\x45\x21\x5f\xaf\xa0\x47\x51\xb0\xb2\x0a\x9a\x13\xea\xfb\x16\x34\x27\x0a\x7b\x76\x41\x73\xa2\x60\x93\x14\x34\x27\xd4\xf7\x2d\x68\x4e\x14\xac\x89\x82\xe6\x44\xe9\x3e\x8f\x7c\x78\xe8\x93\x82\xe6\x84\x1a\xc5\x05\xcd\x89\x02\x29\x52\xd0\x9c\x30\xcb\xa9\xa0\x39\xd1\xf0\xaa\x17\x34\x27\x5a\xf4\xcc\xd5\x87\x86\xf5\x59\xd0\x9c\x68\x38\x7b\x0a\x9a\x13\xad\xfb\x1f\x49\xef\xcf\x3d\xe1\xb7\xd9\x60\x0b\x9a\x13\xad\xdb\x16\x92\xde\xbb\x4f\x80\xfb\xc6\x7a\x29\x68\x4e\xe8\xe9\x2d\x68\x4e\xe8\xe9\x2d\x68\x4e\xe8\xe9\x2d\x68\x4e\x74\x2c\xc5\x82\xe6\xc4\x70\x21\x42\x73\x62\x60\x87\x17\x34\x27\x06\xb6\x7d\x41\x73\x62\xb0\x19\x16\x34\x27\xac\xdc\x58\xd0\x9c\x18\xbb\x67\xc2\x7d\xef\x3e\x01\xee\xdb\x39\x88\xe6\xc4\x70\x0e\xa2\x39\x31\x5c\xdc\xd0\x95\x18\xce\x6b\x74\x25\x06\xdb\x43\x41\x57\x62\xb8\x7c\xa2\x2b\x31\xc8\x63\x2c\xe8\x4a\x58\xc2\xb2\xa0\x2b\x31\x70\xb3\x15\x74\x25\x06\x58\xa2\xa0\x2b\x31\x0f\xcf\x3c\x39\xe2\x79\xe8\x4a\xcc\xe7\x09\x89\x23\xaf\xbb\x39\x93\x51\xa2\xcc\xd4\x74\x94\x20\xb5\x36\x17\xd3\x85\x9c\xf2\x96\x3c\x73\x11\x6c\x9b\xcb\x52\xa2\x4c\x84\x0b\xc3\x4d\x99\x08\xdc\x03\xe5\x96\xa4\xe7\xcc\x1b\x92\xfe\xf0\x3f\x88\x78\xe2\x60\xca\x0d\x11\xef\x06\x74\x43\xc4\xfb\x1e\x6e\xc8\x76\xbc\xb2\xe5\x86\x50\x87\xb0\x2c\x37\x84\x3a\x44\x67\xb9\x21\x64\x89\xc5\x2a\x19\x52\xd9\x6f\x25\x43\x2a\x3b\x23\x33\xa4\x32\x11\x4f\x25\x43\x2a\xfb\x15\x67\x48\x65\xec\xdb\x92\x21\x95\x9d\xd7\x19\x52\xd9\x6f\x2c\x43\x2a\x0f\xef\x09\xa9\xec\x77\x9b\x21\x95\x9d\xd7\x19\x52\x19\xdb\xbe\x64\x48\x65\xb7\xd4\x0c\xa9\x0c\x61\x59\xb2\xa4\x39\x4f\x28\x90\xca\x60\x89\x52\x20\x95\x9b\xff\xd9\x3f\x46\xa9\xd0\x3f\x4c\xda\x52\xe8\x1f\xe8\xaf\x14\xfa\x47\x44\x49\x29\xf4\xaf\xfd\xcb\x71\x51\x0a\x5d\x27\x8d\xb1\x14\xbb\xee\xe3\xec\x3a\x9d\x2d\x76\x9d\x21\x2b\x76\x9d\xc9\x53\xe8\x7a\xf5\xe1\x76\xdd\x33\x57\xd7\x83\x1f\x63\xa1\xeb\x2e\x9f\x95\xae\x03\xe2\x4a\x25\x1f\x1e\x60\x5f\x2a\xf9\xf0\xc5\x23\xf2\xe1\xa1\xf0\xca\x82\x4a\xd9\xda\xd2\x65\x41\xa5\x7c\x02\x2c\x4a\x25\x57\xde\x45\xbf\x92\x2b\xef\x86\x50\xc9\x95\xb7\xd5\x15\x3e\xdd\x5d\xac\xc2\xa7\x63\x61\x96\x0a\x9f\xbe\x79\x1d\x7c\xba\xbb\x5f\x95\x4f\xf7\x48\x3e\xdd\xb6\xc0\xa7\x03\xd0\x4b\x83\x4f\x77\xb2\x36\xf9\x74\xa6\x44\x93\x4f\xe7\x3a\x34\x27\x6e\xec\xbf\x82\xe6\xc4\xed\xa7\x82\xe6\xc4\x8d\x55\x5e\xd0\x9c\xb8\x0f\x9f\x90\x38\xf2\x09\x37\x77\x61\x94\xd0\x9c\xb8\xb1\xbc\x0b\x9a\x13\x46\xa0\x17\x34\x27\xac\xee\x5c\xd0\x9c\x30\xa0\xab\xa0\x39\xf1\x6c\xb7\x68\x4e\x3c\x9b\x36\x9a\x13\xd6\x34\x2e\x68\x4e\x28\xf9\x52\xd0\x9c\xc8\x4e\x48\x34\x27\xcc\x79\x2a\xe8\x4a\x98\x27\x56\xd0\x95\x30\xa3\xac\xa0\x2b\x91\x09\x5b\x2c\xe8\x4a\x64\x3f\x3f\x74\x25\x32\x10\xb9\xa0\x2b\x91\xfd\xfc\xd0\x95\xc8\x7e\x70\xe8\x4a\xe8\x02\x28\xe8\x4a\x98\x00\x5c\xd0\x95\x30\xa9\xb8\xa0\x2b\x61\x52\x71\x41\x57\xa2\x80\x10\x0a\xba\x12\xc5\x85\x01\x5d\x09\x35\x7c\x0b\xba\x12\xaa\xf6\x16\x74\x25\xaa\x8b\x22\xba\x12\xaa\xe0\x15\x74\x25\x54\xb3\x2b\xe8\x4a\xa8\xa5\x57\xd0\x95\xd0\xc5\x51\xd0\x95\xa8\xda\x63\xe8\x4a\xa8\x7b\x57\xd0\x95\xa8\x50\x4e\x05\x5d\x09\x35\xf8\x0a\xba\x12\x55\x4b\x11\x5d\x89\x36\x3d\xda\x39\xe2\x6d\xa2\x2b\xd1\xc0\x0b\x05\x5d\x89\x86\xc7\xbd\x2c\x5c\x93\x1b\x08\xa8\x2c\x5c\x93\xfb\xe6\xd1\xc5\x11\x6d\x41\x73\xa2\x89\x09\xd0\x9c\x68\xe0\xb6\x82\xe6\x44\x77\x2e\xa1\x39\xd1\xfd\xaa\xd0\x9c\xe8\x30\x18\x05\xcd\x89\x01\xed\x59\xd0\x9c\x18\x7c\x8d\x75\x61\x97\xd3\xf8\xae\xba\xb0\xcb\xb9\xef\xfe\x87\x68\x01\x5b\x63\x5d\x2c\xd3\x69\x0c\x57\x5d\x2c\xd3\xa9\x96\x4a\xdd\xac\x2a\x32\x38\x5a\x24\x6f\x40\x04\xac\x6e\x08\x1a\x0c\xcf\x24\x08\x81\xb1\xae\x1b\x41\x08\x97\x47\x04\x21\x5c\xde\x85\x20\x84\x64\x5b\x08\x42\xe0\x6d\xd6\x8d\x20\x84\xcb\xff\x08\x42\x00\x21\xd4\x8d\xf8\x0b\xbc\xf8\x75\x27\xfe\xe2\xfc\x57\x10\x5c\xdd\x09\xcd\x00\x00\xd5\x05\x87\xce\xe4\xb0\xa0\x47\x61\xec\x6a\x45\x8f\x42\xef\x5c\x45\x8f\xc2\xba\x67\x15\x3d\x0a\x7d\x75\x15\x3d\x8a\x9b\x60\xff\x8a\x1e\x85\xf5\xd9\x2a\x7a\x14\x77\xb3\x99\x68\x01\x54\x9f\x87\x16\x00\xcb\x75\x45\x8f\xa2\xfa\x1a\xd0\xa3\xa8\xbb\x4f\x18\x1c\xd9\x32\xe2\x13\x08\xa5\xab\xe8\x51\x54\x96\x90\x8a\x1e\x45\xf5\xd5\xa2\x47\x51\x11\xcd\xa9\x07\xf1\x09\xd8\x5c\xf5\x20\x3e\x81\xa5\xae\xa2\x55\x51\x7d\xed\x68\x55\xd4\xc3\xeb\xa8\x58\xc1\x62\x5a\xd1\xaa\xa8\xec\xbd\x15\xad\x8a\xce\x46\x52\xd1\xaa\xe8\xd5\x96\x11\x9f\x00\x79\x5a\x0f\xe3\x13\xe8\x1f\x5a\x15\x9d\x4d\xad\xa2\x55\xd1\xab\xcf\x33\x3e\x81\xe7\xa1\x55\x61\xa2\x43\x0d\xc6\x27\xd0\x6a\xb4\x2a\x3a\xcb\x6e\x45\xab\xa2\xe3\xf5\xaa\x68\x55\x98\xb0\x50\xd1\xaa\xe8\x6c\x86\x15\x3d\x0a\xab\x65\x57\xf4\x28\xc6\xe5\x99\xc4\x20\x60\x93\xd4\x60\x0c\x02\xad\x46\x8f\xc2\xca\x63\x15\x3d\x8a\x31\x6c\x0b\x15\x2b\xb0\xe6\x6b\x30\x21\x9e\x37\x86\x1e\xc5\xf4\xbd\x47\x13\xe2\xfd\x8f\x18\x04\xf8\x8c\x1a\x8d\x41\xe0\x9e\x90\x4c\x3b\x84\x57\x85\x64\xda\x41\x2b\x15\x92\x69\xb7\x47\x90\x4c\xbb\x73\x09\x92\x69\x27\x68\xbf\x42\x32\xed\xcd\xa7\x13\x83\xe0\xfc\x84\x64\xda\x9d\xbb\x90\x4c\x7b\xf5\xe9\xc6\x20\x78\x1d\x1c\x3d\xdb\x43\x85\x64\x32\x1a\xbe\x42\x32\x19\xc3\x5f\x21\x99\x8c\x7f\xaf\x90\x4c\xd1\x6f\x05\x92\x29\xfa\x1d\x41\x32\xc5\xdb\xff\x88\x41\x00\x71\x55\xe4\xd1\x8d\x7f\xaf\xc8\xa3\xeb\x32\xaa\xc8\xa3\xc7\xee\x75\x94\x43\x08\xfe\x47\x39\x84\xe4\xd3\x29\x87\x80\xd9\x53\xd1\x40\x3f\x31\x58\x2a\x1a\xe8\x16\xb2\xaa\x68\xa0\x5f\xe0\xc4\x8a\x06\xfa\x85\xed\x5b\xd1\x39\xbf\xec\x11\x3a\xe7\x97\x7d\x40\xe7\xfc\xf2\x6d\xa2\x73\x7e\x39\xba\xe8\x9c\x5f\x8e\x3c\x3a\xe7\xc6\xe2\x57\x74\xce\x8b\xcb\x27\x3a\xe7\xc5\x19\x89\xce\x79\x21\xd6\xa5\xa2\x73\x5e\xd8\x0c\x2b\x3a\xe7\x05\xbb\xbf\xa2\x73\x5e\xd8\xc6\x2a\x3a\xe7\x05\xec\x59\xd1\x39\x2f\x38\x43\x2a\x3a\xe7\xc5\xe5\x13\x9d\x73\x35\xe3\x2a\x3a\xe7\x05\x87\x4e\x45\xe7\xdc\x8a\x88\x15\x9d\x73\x13\xbe\x2a\x3a\xe7\x05\x63\xad\x26\x02\x0d\x82\xd7\x41\xc4\x93\xaa\x5f\x13\xfd\xfb\x67\x10\x5c\x4d\x76\xdd\x5b\xd2\x75\x76\xe2\x9a\xe8\x3a\x9e\x9f\x9a\xe8\x7a\xf4\x01\x74\xfd\xf4\x4c\xba\xee\x47\x9c\xe8\x3a\xfe\x95\x7a\xdb\x75\xee\x72\xd3\x75\xd2\x02\xea\x6d\xd7\x19\xb2\xdb\xae\x33\x2c\xe8\x51\x14\x78\xe3\x8a\xe6\x44\x89\xfe\x07\x0f\xff\xfc\x97\x39\xa2\x2d\xe8\x51\xd4\xe7\x2e\xf0\xf0\x2e\x7c\x68\x4e\x54\x27\x1d\x9a\x13\x95\x78\xca\x8a\xe6\x44\x63\x3f\xaf\x68\x4e\x34\xe8\x85\x8a\xe6\x44\xc3\x85\x53\xd1\x9c\xd0\xc1\x5f\xd1\x9c\x98\xd8\x71\x15\xcd\x89\x59\xbc\x0e\x2e\xfa\x79\x02\x5c\xb4\x0b\x11\x9a\x13\x13\xbb\xb1\xa2\x39\x31\x6d\x19\x9a\x13\xd3\x71\x41\x73\x62\x36\x5b\x06\x17\xed\x07\x80\xe6\xc4\xcc\x9e\x09\x17\x0d\xe0\xaa\x19\x2e\xda\xe5\x0c\x72\x6a\xb3\x7f\xe8\x51\xa8\x7f\x5b\x21\xa7\xa6\x8b\x3e\x7a\x14\xd3\xcf\x08\x3d\x0a\xa9\x8e\x5a\xec\x9f\xff\xd9\x3f\xde\x7b\xb1\x7f\x1e\xd1\x3f\x97\x33\xf4\x28\xac\x11\x5d\xd1\xa3\x98\x2e\x4b\xe8\x51\x4c\x10\x50\x45\x8f\x62\x62\x6b\x57\xf4\x28\x2c\x29\x54\xd1\xa3\x30\xf0\xac\xa2\x47\x21\xed\x52\x21\xa7\x9e\x05\x1a\x72\x6a\x77\xeb\x87\x9c\x7a\x16\x5a\xc8\xa9\x67\xa1\x85\x9c\xda\x5d\x4c\x21\xa0\x76\xdf\x26\x04\xd4\x0e\x65\x58\x21\xa0\x76\x47\x17\x02\x6a\xf7\xdd\x42\x40\xed\x8e\x44\x95\x34\xa7\x0f\x10\x50\x0a\x53\x55\x08\xa8\xdd\x59\x00\x01\xf5\x6c\x1d\x10\x49\xc1\x2f\x07\xb2\x28\x60\x09\x57\xc8\xa2\x80\x27\xb4\x42\x16\x05\x5c\x15\x15\x46\x28\xf8\x15\x37\x69\x64\xda\x82\x26\xb9\xe9\x5f\x15\x4d\x72\x03\xcf\x2a\x9a\xe4\x26\x6e\x55\x34\xc9\x23\x11\x25\x15\x4d\xf2\x08\x07\x54\xd1\x24\x37\x2b\xae\x76\xd3\xa4\x79\x7a\x47\x52\x1e\x37\x46\xed\xd0\xc8\xb8\x4d\x6a\x97\x46\x66\x24\xd0\x2b\xbf\x82\x77\x81\x46\x0e\xfe\x07\x8d\xec\x46\x82\x5e\xf9\xe5\x3a\x81\x5e\xb9\x11\xbe\x15\xbd\xf2\xcb\x45\x18\xbd\xf2\x2b\xf8\x74\x52\xa8\xdd\x10\xd0\x2b\xb7\x1c\x71\x45\xaf\x3c\x39\x12\xe8\x95\x27\xb7\xfe\x41\x0a\xb5\xfd\x1b\xa4\x50\xe3\xac\xab\x68\x99\x27\xdc\x73\x15\xbd\xf2\xe4\xb8\xa0\x57\x9e\x60\xc3\x2a\x7a\xe5\x09\x36\xac\xa2\x57\x7e\x77\x9f\x40\x2e\xf4\xf8\x97\xe3\xa2\x22\x65\x7e\x6b\xcb\x20\x65\x7e\x0f\x1b\x4d\x9a\xb4\x20\x00\x29\xf3\x9b\xa0\xef\x8a\x94\xb9\x6a\xaa\x15\xb9\xf2\x1b\x2f\x70\x45\x92\x5c\x7f\x71\x45\x92\xbc\x44\x8f\x90\x5c\x27\xd0\xba\x22\x49\x5e\x50\xca\xad\x48\x92\x5b\x67\xad\x22\x49\xae\x4f\xb8\x22\x49\x6e\x3d\xb8\x8a\x24\xb9\xe1\xe8\x15\x49\x72\xeb\xba\x55\x24\xc9\xab\xad\x46\x92\x5c\x45\xa9\x86\x24\x79\xc5\xc6\x6b\x48\x92\x57\x86\xac\x21\x49\x5e\xf1\xfc\x34\x24\xc9\xeb\xf0\x88\x34\x62\xfc\xb0\x0d\x49\xf2\x8a\x35\xd8\x90\x24\xb7\x7c\x4c\x43\x92\xbc\xf2\x11\x37\x24\xc9\xeb\xf0\x3a\x38\x73\x42\xf0\x1a\x92\xe4\x15\xd0\xdf\x90\x24\xaf\x40\xeb\x86\x24\x79\xed\x3e\x01\xce\x1c\xbf\x5a\x43\x92\xbc\x75\xef\x32\x39\xe2\x79\x48\x92\x9b\xf3\xd4\x90\x24\xd7\x83\xda\x90\x24\x1f\x60\x89\x86\x24\xb9\x5e\xd2\x86\x24\xf9\x80\x08\x6c\xa8\x3e\xe8\x5d\x6d\xbb\xdc\xf7\xe0\xa8\xf2\x9f\x67\x36\x8e\x18\x25\x54\x1f\xf4\xb5\x36\x54\x1f\xc6\xe1\xd3\x27\x77\xa1\x7f\xa8\x3e\x0c\xc8\xd3\x86\xea\x83\x1e\xe2\x86\xea\x83\x19\x57\xed\xb0\x0f\xf4\xef\xb0\x0f\x3c\x0f\xd5\x07\x3d\xd2\x0d\xd5\x07\xd5\x37\x1a\xca\x0e\x13\xd2\xa7\xa1\xec\x30\x99\x2f\xed\x90\xc4\xf6\xe9\x90\xd8\x87\x67\x42\x62\xe3\x24\x6a\x90\x37\x1b\x8b\x62\x83\xbc\x31\xa2\xb8\x41\xde\xec\x84\xe7\x35\xc8\x9b\x9d\x4d\xad\xc1\xd0\xec\x44\x39\x34\x18\x1a\xa3\x9a\x1a\xda\xe2\x3b\x1b\x50\x43\x5b\xdc\x20\xaa\x86\xb6\xf8\xce\xf6\xd7\xe0\x72\xb4\xfb\x1b\x5c\x8e\x81\x59\x0d\x2e\x67\x67\xce\x37\xb8\x1c\xe3\x98\x1a\x5c\xce\x3e\x3d\x13\x6a\x13\x13\xa5\xc1\xd0\x9c\x28\x71\x37\x18\x9a\x93\x85\xbd\xc1\xd0\x9c\x30\x18\x4d\xc5\x70\x28\xf4\x06\x43\x73\x42\xf6\x35\x18\x9a\x13\xca\xb0\xc1\xd0\x9c\x84\x73\x36\x14\xc3\xcf\xe8\xf3\xa0\x3d\x31\xf2\x1a\xec\xcd\x19\xbd\x0b\xb4\x27\xb4\x59\x83\xbd\x39\xa3\x67\x42\x7b\x9e\x9e\x09\xed\xc9\x3a\xd1\x60\x6f\xce\xcb\x96\xd1\x3f\x2c\xe1\x06\x7b\x73\x62\xdf\x36\xd8\x9b\x13\x07\x52\x3b\xed\x9f\x67\xd2\xbf\xcb\x23\xfa\x87\x03\xa9\x9d\xf6\xcf\x23\xfa\x87\x55\xde\x60\x6f\x4e\x4c\xcc\x06\x7b\x63\x11\xde\x06\x7b\x73\x62\xdb\x37\xd8\x9b\x13\xab\xbc\xc1\xde\x9c\xe7\xbf\xca\xa1\x36\x88\x9d\xf3\xf2\xe1\x74\xdd\x29\x78\xca\xf8\xd2\x75\x88\x9d\xcb\x33\x21\x76\x2e\x87\x1a\x62\x27\x15\x8f\x60\x4b\xd9\x55\x1a\xc4\x8e\xa1\x51\x0d\x62\xc7\x7d\xa4\x41\xec\x24\xa2\x1d\x1b\xc4\x4e\x62\x97\x6e\x10\x3b\x7a\x65\x9b\x62\xe2\x04\x9e\x35\xc5\xc4\x01\xb0\x0d\x62\x27\x65\xcf\x94\x2d\xe5\x73\x40\x4c\x3c\xdd\x3e\x0f\xb6\xb4\xf8\x3c\xd8\x52\x02\xd6\x9a\x82\xe1\xec\x9a\x4d\xc1\x70\xe8\x8c\xa6\x60\x78\xf6\xc8\x3e\x30\x4a\x0a\x86\xb3\xf7\x36\x05\xc3\x81\x9e\x0d\x62\x27\xe3\xe2\x68\x10\x3b\x19\x0f\x71\x83\xd8\xc9\xec\xee\x0d\xc1\xf0\x8c\xdf\xb7\x21\x18\x9e\xb1\x26\x1a\x82\xe1\xd9\xc5\x0d\xc1\xf0\xec\xa2\xa1\x60\x38\xe0\xaf\x29\x18\x8e\x85\xd2\x14\x0c\x87\x80\x6a\x0a\x86\xef\xfe\x87\x60\x38\x3e\xd3\x86\x60\xb8\xb2\x8c\x0d\xc1\x70\x25\x1b\x1b\x82\xe1\xfa\x5a\x9b\xa2\xe0\x6e\x63\x88\x82\xeb\x24\x6a\x8a\x82\x0f\x8f\x20\x41\xdd\x48\x14\x05\x9f\x3e\x41\x12\x94\x37\xa6\x28\x38\x9b\x68\x53\x14\x1c\x8f\x5f\x53\x14\xdc\xed\x4f\x51\x70\x3c\xa1\x4d\x51\x70\x97\x56\x95\xbf\xf1\x6f\x36\xd5\xbd\x89\x72\x6d\xaa\x7b\x93\x19\xd6\x54\xf7\x1e\x3e\x0f\xa2\xd3\x91\x50\xdd\xdb\x76\xaa\xee\x8d\x7b\xa0\xa1\xe5\x60\xc9\xd3\x86\x96\x43\xf7\x93\x46\xcb\xa1\x83\x3a\x1a\x5a\x0e\x3a\xa5\x1a\x5a\x0e\x03\xfb\xaf\xa1\xe5\x30\x5c\x42\xd0\x72\x18\xa4\x47\x35\xb4\x1c\x86\x8b\x1b\x5a\x0e\xc3\xe5\x13\x2d\x87\x81\x30\x55\x43\xaf\x61\xb8\xb8\xa1\xd7\x30\x9c\x4b\xe8\x35\x0c\x00\x73\x43\xaf\xc1\x72\x6d\x0d\xbd\x86\xf9\xdc\x85\x24\x5f\x08\xbd\x86\x5e\x83\x52\x54\x0d\xbd\x86\x89\x2d\xda\xd0\x6b\x50\x36\xaa\xa1\xd7\xa0\x7c\x57\x43\x94\x61\xe2\x72\x68\x30\x3b\x1b\x2e\x80\x06\xb3\xb3\xf9\x35\xc2\xec\x6c\xc4\x35\x34\x98\x9d\xed\xf6\xcc\xe5\x91\xde\xf0\x80\x37\x98\x9d\xdd\x31\x83\xbd\x31\x31\xa6\xc1\xd0\x98\xc4\xd2\x60\x68\x94\x7f\x6a\x30\x34\xc1\xef\x08\x86\x26\xf8\xfd\xc1\xd0\x04\x7c\xde\x0d\x86\x26\xf8\x3d\xc0\xd0\x04\x70\x70\x83\xa1\x09\x9a\x0c\x30\x34\xc1\xed\x1d\x86\x26\xf8\xc6\x60\x68\x2c\xfe\xd5\x60\x68\x02\x0e\xd5\x06\x43\x13\xfc\x36\x61\x68\xc2\x3f\xcb\xa1\x36\xc8\x9b\x40\xf0\x7d\x5b\xd0\x25\x07\x77\xb8\x05\x5d\x72\x00\x74\x34\x88\x9d\xa0\xb5\x04\xb1\x13\xb4\x65\x14\x13\x07\xee\x35\x88\x9d\xb0\xfb\x1f\xbc\xa3\x43\x8d\x98\x78\xd0\x02\x53\x4c\x5c\x0b\x53\x31\x71\xc8\x86\xd6\xed\x3a\x2f\x1a\xd2\x27\x40\xb7\x35\x48\x9f\xa0\x7d\xa4\x98\xb8\x1f\x2a\xa4\x4f\x70\xc9\x82\xf4\x09\x4e\x25\x48\x9f\xe0\xa4\x1b\xf6\x8f\x96\x41\xfa\x04\x97\x97\x61\xff\x18\x6a\x48\x9f\xa0\x8d\xa7\x98\x38\x61\x5a\x0d\xd2\x27\x10\x5f\xd2\x86\xaf\x96\x8f\x43\x31\x71\x97\x09\x48\x9f\xa0\x35\x08\xe9\x73\x56\x9f\xb0\xfa\x67\x3d\xee\x06\xe9\x73\x56\x9f\x30\x38\xf2\xba\xc9\x11\xbd\x55\x30\x5c\x0b\x4c\xc1\x70\x3f\x3f\x88\x1d\x13\x7f\x1a\xc4\xce\xa5\x3d\x0d\xb1\x63\xbd\x8c\x06\xb1\xa3\xae\x44\x83\xd8\x49\x78\xdc\x1b\xc4\x8e\xd0\xac\x41\xec\x3c\x5b\x2a\xc4\xce\xb3\x55\x41\xec\x24\x97\x33\x88\x9d\x44\xe2\x4f\x83\xd8\xb9\x1d\x79\x88\x9d\xdb\xad\x63\xe1\x9a\x7c\xfb\xf1\x4f\x92\x75\x79\xb7\x1d\xa1\x71\x37\x92\x8e\xd0\xb8\x1b\x57\xdf\x20\x17\x79\xd3\x7d\x83\x5c\xc4\x85\xd3\x11\x21\x37\x81\xa7\x23\x42\x6e\xbc\x4e\x47\x84\xdc\x04\xa5\xae\x08\xf9\xf0\x79\x10\x8f\xf4\xa1\x2b\x42\x0e\xc6\xea\x8a\x90\x83\x79\x3a\x4a\xe3\xaa\x45\x74\x94\xc6\x4d\x03\xea\x28\x8d\x5b\x3b\xbb\x6f\x12\x8f\xf6\x01\xe2\x11\xdb\xb7\xa3\x34\x6e\xd4\x4f\xdf\x25\x1e\x2f\x8e\x24\x1e\x79\xde\x2e\xf1\xc8\x3d\x17\xe6\xc9\xe6\x7e\xf6\x1d\xe2\x91\x05\xac\xef\x10\x8f\x38\x12\xfa\x0e\xf1\x88\xe1\xd1\x77\x88\xc7\xdb\xeb\x20\x1e\xf1\x2c\xf7\x5d\xe2\x91\x31\xdb\x25\x1e\x6d\x19\xc4\x23\xc9\x28\x7d\x87\x78\xcc\x3e\x0f\xe2\x31\xfb\x1f\xc4\x23\x9b\x61\x5f\x78\x28\x57\x96\xb3\x8e\x60\x43\x05\xf4\x77\x04\x1b\x2a\x11\xfd\x1d\xc1\x06\xc5\xb5\x3a\x82\x0d\xfd\xf0\x4c\x88\x47\x30\x5d\x47\xb0\xa1\x1f\x3e\x21\xf1\x1f\xad\x46\xb0\xa1\xf3\x15\x77\x04\x1b\xba\x33\x04\xc1\x86\xbe\xfb\x3c\x88\xc7\xdd\xe7\x35\xce\xa4\x0f\x08\x36\xf4\xdd\x27\x0c\x8e\xbc\xcb\xe4\x88\xb7\x89\x60\xc3\xb0\xd5\x88\x32\x58\x4f\xb3\x23\xca\x30\x70\x70\x76\x84\x17\xc6\xcf\xdb\xfc\xcf\x25\xb9\xa3\xc9\xa0\x7c\x64\x47\x93\x61\x06\x6f\xb2\x88\x1d\x43\x64\x3a\xc4\xce\xee\x20\x41\xec\xa8\x71\xd1\x21\x76\x54\xae\xe8\x10\x3b\xaa\x61\x74\x88\x1d\xcb\x78\x77\x88\x9d\x83\xe8\xd8\x0e\xb1\x73\xf9\x6a\x11\x13\xb7\xf6\x72\x47\x4c\xfc\xba\x3d\x93\x04\xee\xdb\x33\x49\xe0\x76\xf2\x20\x26\x7e\x39\x5d\x10\x13\xbf\xf0\xa4\x75\xc4\xc4\x2f\xac\xeb\xae\x98\x78\xf7\x09\x88\xa5\x77\x9f\x80\x58\x7a\xf3\x3a\xc4\xd2\xbb\xf7\x94\x40\x64\x5c\x10\x13\xaf\x8e\x04\x62\xe2\x95\x05\xa5\x23\x26\x5e\xd9\x19\x3b\x62\xe2\x15\x3b\xb5\x9f\x12\x88\x4c\x2c\xc4\xc4\xab\xa3\x7b\x4a\x20\xf2\x74\xc4\xc4\x2b\xd6\x4b\x47\x4c\xfc\xf9\x38\x10\x0c\x57\xf1\xac\x23\x18\x3e\x2e\x9f\x00\xc1\x86\x4f\xb1\x23\x18\x3e\xab\x77\x21\x09\x16\xb2\xa8\x53\xa4\x56\x30\xdd\x2f\x93\x7c\xb9\x0b\xe4\xcd\xee\xf2\x02\x79\xb3\x63\x41\x77\xc8\x9b\xdd\xe5\x0c\xf2\x66\x77\x39\x83\xbc\xd9\xb1\x68\x3b\xe4\x8d\xdc\x77\x87\xbc\x31\xa6\xb7\x43\xde\x18\x97\xdc\x21\x6f\xa2\x0b\x1f\xe4\x8d\x91\xcf\x1d\xf2\x26\x3e\x4f\x20\x09\xf6\x79\xc2\xf2\x2c\x9f\xbe\x5b\xc8\x1b\x3d\x9a\x1d\xf2\xc6\x6d\xac\x43\xde\x9c\x38\x9e\x3a\xe4\xcd\xe5\xbb\x95\xbc\xc1\xe6\xea\x92\x37\xd9\xeb\x20\x6f\x7c\x82\xe4\x0d\x96\x70\x97\xbc\x01\x0f\x75\xc9\x1b\x22\xf3\xbb\x0c\x0d\x38\xb1\xcb\xd0\x14\xef\x02\x43\xe3\xd6\x21\x43\xe3\x12\x29\x43\xe3\xf7\x20\x43\x73\x7b\x26\x0c\x8d\xcb\x99\x0c\x8d\xdf\x83\x0c\x0d\xac\x41\x97\xa1\x01\xb3\x76\x19\x1a\xa4\xaf\xba\x0c\x8d\x5f\x07\x8a\xe1\x05\xe7\x4b\x47\x31\xbc\x80\xf7\xba\xec\x8d\x4b\x39\xec\x4d\x01\xa0\xf7\xdb\xfe\x31\x82\x0f\x7b\x43\x6f\x1f\xf6\x86\xf1\xbc\xcd\xa2\x64\x94\x50\x13\x9f\xcd\xbb\xc0\x0c\x14\xff\x83\x19\x70\x65\x80\xd9\x99\x7e\x9b\x30\x3b\xd3\x19\x02\xb3\x33\x71\xf9\x75\x99\x1d\x9c\xa6\x5d\x66\xc7\xb9\x2b\xb3\x83\x2f\xb9\xcb\xec\x38\x23\x65\x76\x40\x7f\x5d\x66\xa7\x7b\x17\x98\x8f\xe1\x7f\x30\x1f\xce\x3a\xd2\x8e\x76\x50\x5c\x27\xed\x68\x9f\x1e\xc1\x1a\x3c\x67\xc2\x1a\x3c\x4f\x80\x35\x18\xff\x72\x5c\x74\x48\x9f\x5d\xab\x80\x8c\xa4\xdd\xa6\x14\xf2\xd9\x08\xfe\xe8\xd6\xb6\xc5\x3e\xea\xd6\xb6\xad\x9e\x49\x3e\x1b\xfe\xb1\x6e\x6d\x5b\xf7\x49\x6b\xdb\x42\x08\x75\x6b\xdb\xfa\xc2\xac\x6d\x8b\x77\xae\x93\x75\x14\x9d\xf2\x45\x22\x82\xc9\x03\x5d\x63\xea\x46\x87\xae\x39\x5d\xae\xa1\x6b\x2e\xbc\x88\x9d\x7c\xa1\x0b\xbf\x53\x87\xae\x31\x24\xae\x5b\x95\xd6\xa5\x00\xba\x26\xb9\x2c\x41\xd7\x24\xfb\x00\x5d\x93\xec\x1f\x74\x4d\x72\x19\x84\xae\x49\x7e\xee\xd0\x35\x49\xab\x07\xba\x26\xd9\x23\xf2\x85\x92\x9f\x8a\xa5\x67\x1d\x6b\xf2\x85\x6e\x40\x71\x27\x5f\xe8\x26\x54\xa9\x43\xf3\x28\x31\xd3\xa1\x79\x54\xd1\xe8\xd0\x3c\xb7\x2f\x1a\x9a\xc7\x70\xf4\x0e\xcd\x63\x11\x9a\x0e\xcd\xa3\x3a\x59\x87\xe6\xc9\xd0\x7b\xbd\x99\xb3\x46\x6f\x9b\x39\x6b\xb6\x73\xf5\xa1\x10\x60\xdf\xa1\x79\x64\x9f\x3b\x34\x8f\x14\x6c\x87\xe6\x29\xf8\x14\x3b\x34\x8f\x94\x6f\x87\xe6\x91\x8b\xee\xdd\x9c\x35\xda\x02\x95\xd3\x6c\x35\x54\x4e\xf3\xdd\x42\xe5\x54\xfb\x07\x95\x63\xd2\x74\x87\xca\x31\x69\xba\x43\xe5\xd4\x69\xcb\xf0\xb1\x6f\x3e\x01\x0e\xc1\x0f\x1c\x2a\xa7\x81\x09\x3a\x54\x4e\x75\xe4\xa1\x72\x4c\xbd\xee\x50\x39\xcf\x12\x42\x59\x5a\x49\xde\x4e\x59\x5a\xd3\xb9\xfb\x90\x43\xa0\xef\xd0\x3c\xd5\xf7\x37\xec\x1f\xa3\x04\x5f\xd3\xb4\xb9\xe0\x6b\x1a\x29\x42\x1d\xbe\xc6\xd8\xf1\x3e\xf4\xbf\x7b\x17\xfc\xef\x80\xe2\x4e\xe9\xd9\x81\xc0\x4d\xa7\xf4\xac\xce\x90\x0e\x1e\xba\x61\x68\x3a\xa5\x67\x75\x86\xf4\xa9\xff\x9d\xe7\xc1\xf3\x0c\x62\x17\x3a\x3c\x8f\x8e\x92\x0e\xcf\x33\xfc\x72\xe0\x79\x86\xa6\x14\x3c\xcf\x88\xb6\x05\x7e\x21\x78\x1d\xfc\x02\x71\x06\x1d\x9e\x47\x07\x4b\x87\xe7\x19\x78\x88\x3b\x3c\xcf\x08\xb6\x65\xe2\xfd\x5f\xb3\x60\xc0\xf3\x98\x18\x3d\xe0\x79\x4c\x73\x1f\x9b\xb9\x75\x9d\x23\x72\xeb\x78\xb7\x03\x9e\xc7\xa5\x75\x90\xdc\xb3\x61\x04\x0d\x92\x7b\x76\x30\xc8\x20\xb9\x67\x6f\x5e\x87\x6f\xbe\x79\x26\xbe\x79\xa8\xdb\x41\x72\x8f\x54\xf1\x20\xb9\x47\x22\x77\x90\xdc\xa3\xf9\x32\x48\xee\xd9\x59\x51\x06\xc9\x3d\xc7\xe9\xf3\x26\x47\xdc\x13\xfd\xba\xe3\xfc\x57\xaa\xc8\x40\xda\xee\x64\xb7\x1d\xe4\x04\x69\x69\x0c\x72\x82\x4e\xbc\x34\x83\x9c\xa0\x13\xff\xd8\x20\x27\xe8\x64\xcf\x1e\xe4\x04\x59\x37\x61\x90\x13\x74\x92\x91\x3e\xc8\x09\x3a\x8b\x4f\xc0\x01\x9e\xfc\x0f\x07\x38\x0b\xe6\x20\x27\xe8\xcc\x76\x01\x2f\x37\xd6\xc4\x20\x27\xc8\x72\xe3\x83\x9c\x20\x43\x79\x06\x39\x41\x27\xf6\xca\x20\x27\xe8\xc4\x26\x19\x87\x0e\x7e\xee\x49\x4e\xd0\x49\x09\xd2\x71\x48\x60\x70\x4f\x72\x82\x4e\x6c\x92\x71\xd8\xbf\x8b\x23\xfa\x77\x7b\x64\xff\x98\x20\xe4\x04\x9d\xd9\xa7\xd3\xbf\xec\x7f\xf4\xef\xb6\x2d\xf4\x8f\xa8\x83\x01\xad\x74\xde\x1e\xd1\xbf\xdb\x96\xd1\x3f\x2c\x94\x01\xad\xa4\x98\xc9\x80\x56\x52\xf6\x64\x40\x2b\x9d\xf8\xd1\x07\xb4\x92\xa2\xe0\x03\x5a\xc9\x2a\x68\x03\x5a\xe9\xba\x3c\x13\x0f\x38\x4b\xe4\x80\x56\x4a\x6c\x9b\x03\x5a\x29\xb1\x6d\x0e\x68\xa5\xe4\xf4\x84\x56\x4a\xd5\x27\xe0\xc5\x87\x8e\x1a\xd0\x4a\xa9\xda\x4e\xbc\xf8\xd5\xeb\xf0\xe2\x3b\x91\x49\x11\x4a\xc5\xa7\x93\xd3\x45\xfc\xc5\x80\x80\x4a\x58\xf3\x03\x02\x2a\x11\x39\x31\x20\xa0\x92\x9f\x11\x04\x94\x1b\xe5\x80\x80\x4a\x6c\xe1\x03\x02\x2a\xf9\xf9\x41\x40\x25\x3f\x38\x08\x28\x37\xd1\x01\x01\xe5\x06\x3b\xa2\xfd\xf3\x2e\xf4\x0f\x8a\x79\x44\xfb\xc7\xb8\x40\x40\x25\x6c\xae\x11\xed\x9f\xed\xc4\xfb\x8f\x9b\x66\x40\x40\x65\x96\xcf\x01\x01\x95\x59\x68\x07\x04\x54\xc6\xb3\x3c\x20\xa0\x32\x1e\xe2\x01\x01\x95\xc9\xa6\x1b\x10\x50\x19\xff\xed\x80\x80\xca\xd1\xff\x28\x17\xea\x1b\x83\x80\xb2\x06\xc7\x80\x80\xca\x8e\xf5\xa9\xf7\xdf\xa3\xc6\x11\xfd\x83\x49\x32\x28\x74\xc0\x24\xd5\xdd\xb6\xac\x3e\x28\x5a\x35\x60\x92\x2a\x5b\xdc\x80\x49\xaa\x20\xe6\x01\x93\xa4\xa0\xd5\x80\x49\xaa\xbb\xff\x45\x8e\xbc\xcb\xc9\x99\xf4\x08\x26\xa9\xe2\x0a\x1d\x30\x49\x15\xbf\xef\x80\x49\xaa\x6c\x71\x03\x26\xa9\x42\x31\x0f\x98\x24\xc3\x5c\xc7\x65\xff\x78\xd3\x30\x49\x2d\xda\x16\x98\x01\x22\x91\x07\x4c\x52\x4b\xb6\x6c\x72\x44\x6f\x49\x1f\x6a\x44\x90\x0d\x58\xa6\xe6\x5a\x07\xcb\xd4\x70\xd6\x0d\x58\x26\xe3\xb5\x07\x2c\x53\x7f\xae\x93\x19\x60\xac\x93\xcc\xc0\xbf\xf4\x92\x07\x04\x94\xa5\x9d\x06\x04\xd4\x20\xec\x6d\x40\x40\xb9\x33\x8e\x24\xa1\xc0\x00\x52\xcd\x56\x7e\x7b\x40\x4e\x59\xcd\x62\x98\x75\xe4\x82\x62\xd6\x91\xfb\x1d\x59\x47\x3b\x3b\xf8\x20\xeb\x48\x61\x8e\x61\xd6\x91\x4b\x96\x59\x47\x80\xbf\x71\x23\x0d\xea\xc2\x77\x23\x0d\xea\x62\x63\x46\x92\x8b\xb0\x19\x49\x2e\x8a\x66\x24\xb9\x59\xdc\x78\x73\x9f\x33\xf1\x56\xbb\x1d\x91\xad\x14\x9c\xc8\x37\xde\x6a\xe8\xcb\x71\xe3\xa8\xc7\x36\x1c\x64\x32\x05\x47\x82\x4c\xa6\xe0\xf6\x40\x26\x93\x5a\x1c\x23\xe3\xad\xc6\xde\x1c\x19\x6f\xb5\x8b\x29\x59\x4e\x01\x7b\x65\x90\xc9\x14\xe0\x71\x07\x99\x4c\x81\x98\xc9\x41\x26\x53\x70\x6b\x24\x93\xc9\xba\x10\x83\x4c\x26\xc3\x9f\x06\x99\x4c\xc1\xc5\x9b\x4c\xa6\xe0\x96\x93\xed\x03\x6f\x85\x4c\x26\x55\x42\x06\x99\x4c\xc1\xa9\x4b\x26\x53\x70\x7a\x92\xc9\x14\xdc\x0c\x8b\x7d\xe0\xad\x90\xc9\xa4\x82\xc8\x20\x93\x29\x10\xba\x37\xc8\x64\x0a\x90\xc3\xa3\xd8\x3f\xef\x42\xff\x9c\xac\xa4\x2b\xa9\x35\x32\x48\x57\x3a\xb5\x49\x48\x57\x3a\x89\x87\x1d\x45\x8f\xbb\x67\xe2\x71\x77\xf1\x26\x5d\xe9\x74\xeb\x20\x5d\xe9\x74\xb9\x26\x5d\xe9\x72\x59\x22\x5d\x49\xa9\xad\x41\xba\xd2\xe5\xb6\x42\xba\x92\x9a\xcf\x83\x74\xa5\x84\xdf\x70\x90\xae\x94\x5c\xc0\x48\x57\x4a\x78\x26\x47\xd5\x1b\x4f\xcb\x20\xb5\xa4\x7c\x07\xa4\x96\x01\x56\xa3\xea\x8d\xf7\x79\x7a\xe3\x69\x99\xe9\x4a\xce\x5d\xd3\x95\x88\x01\x1a\xa6\x2b\x01\xe5\x87\xe9\x4a\xd3\x7b\xe2\x8d\x77\x29\x27\x5d\xe9\xc6\x32\x1d\x90\x61\x37\x5a\x8f\x03\x32\xec\x76\xd6\x99\xae\xa4\x9d\x6a\xba\x92\xdf\x34\x64\x58\x3e\xfc\x0f\x8f\xfb\xe1\x5d\xf0\xb8\xbb\xc9\x40\x78\x65\x5c\x77\x03\xc2\x4b\x8a\x79\x98\x92\x84\xdd\x3f\x20\xbc\xa4\xad\x87\x29\x49\xd8\xda\xc3\x94\x24\x8d\x0b\x58\x2d\xf3\x7a\x07\xac\x96\x3a\x24\x03\x56\xab\x80\x6b\x86\xe9\x4a\x78\xdc\x87\xe9\x4a\x5a\xd0\xa6\x2b\xe1\x71\x1f\xb0\x5a\xd9\xe5\x13\x56\x4b\x91\xb3\x61\x2a\x13\x5e\xfc\x61\x2a\x13\xf8\x6b\x98\xae\x44\x22\xce\x80\xb9\x2a\x9b\x2d\x93\x35\xe0\xfd\x99\xae\x34\x3d\x82\x35\x00\x39\x0d\x98\xab\xa5\xd2\xf8\xdf\x4b\xf2\x93\xc9\xc4\xe3\x20\xb5\x2a\x00\x68\x40\x6a\x55\x27\x96\x99\x4c\xc5\xff\x20\x14\x9c\x4a\x66\x32\xb9\x7c\x9a\xc9\x84\x87\x6a\x98\xc9\xe4\x70\x9a\xc9\x84\x73\x62\x98\xc9\xa4\x95\x6c\x26\x93\xb6\xa8\x99\x4c\x2e\xd0\x66\x32\xb9\xb4\x9a\xc9\xe4\xf2\x09\xe1\xd5\x9d\x20\x10\x5e\xdd\xe9\x09\xe1\xd5\x5d\x0a\x00\x78\x1d\x50\x35\xcc\x56\x72\x82\x98\xad\xe4\x66\x01\xa9\xd5\x9d\x2e\x90\x5a\xdd\xa9\x6b\x46\x92\x96\x0d\xc4\x55\xd7\x7a\x81\xb8\xea\x6e\x4e\x10\x57\x1d\xdf\xfc\x10\xa8\xc1\xfb\x4f\x88\xab\xce\x64\x9d\x10\x57\x83\x8c\xc0\x09\x71\x35\xb0\xfb\x27\xc4\xd5\xb8\x3d\x13\xd2\x80\x05\x65\x42\x5c\x0d\x62\x17\x26\xc4\xd5\xe8\xde\x45\x42\xa1\x72\x74\x73\x34\x39\x82\x35\xc0\xfb\x3f\x21\xae\x4c\xeb\x9d\x10\x57\x13\xab\x67\x42\x5c\xcd\xd3\x33\x57\xff\x66\xf1\xe9\xb0\x06\x8c\xe0\x34\xed\x88\x8f\x6a\x92\x76\x74\xb1\xf4\x4c\xd2\x8e\xac\x38\x3c\x49\x3b\xba\x98\x59\x93\xb4\xa3\x8b\x85\x68\x92\x76\x74\xb1\xf9\x4e\xd2\x8e\x32\x96\xcd\x24\xed\xa8\x06\xef\x89\x57\xbd\xf9\x1f\xf2\x91\xdd\xa7\xe3\x39\x27\xde\x63\xa2\x51\xa7\xc7\x6f\x1e\x7a\xc7\x79\x3a\x1a\x75\xba\xee\xe6\xa1\x77\x9c\x31\x43\xa3\xce\x98\xe5\x89\x46\x9d\x20\x75\xa2\x51\x17\x1d\x4f\x34\xea\x4e\xdc\x42\x13\x8d\x3a\x15\x36\x26\x1a\x75\x91\x8f\x7f\xa2\x51\x77\x6e\xb6\xa5\x73\xc4\xc8\xa3\x51\xa7\x4a\xc8\x44\xa3\xee\xc4\x1e\x9b\x68\xd4\x9d\x84\x9d\x4e\x74\xe8\x2e\x7b\x8b\x0e\x9d\x29\xfe\x13\x1d\x3a\xc9\xc5\x89\x0e\x9d\x69\xfc\x13\x1d\x3a\xe3\x59\x26\x3a\x74\x4a\x11\x4c\x74\xe8\x4c\xff\x9f\x68\xcd\x15\xb6\xc6\x89\xd6\x9c\xa4\xe4\x44\x6b\xce\x22\xca\x13\xad\xb9\xca\x56\x3c\xd1\x9a\xab\x6c\x9b\x33\x1a\xdf\x4f\xab\x29\x99\xb4\x61\x17\x4f\xca\x22\x6d\x8e\x04\x65\x91\x36\xec\xf0\x49\x59\xa4\x0d\x9a\x6e\x52\xfb\x68\xdb\x7c\x02\x71\xec\xce\x6b\xea\x1b\x6d\x70\x32\x53\xcd\x38\x47\x50\xcd\xb8\xe9\xf3\x26\x77\xa1\x7f\xd4\x37\x3a\x7c\x3a\xf5\x8d\x76\xdf\x26\xf5\x8d\x76\x16\xef\x49\x7d\xa3\xc3\x77\x44\x7d\xa3\xdd\x77\x8b\x66\x9c\x66\xd6\x3c\x75\xe7\xf2\x56\xd0\x8c\x8b\xce\x4f\x34\xe3\xe2\x3f\xc5\x39\x27\x72\x72\x16\x23\x99\xc8\xc9\x45\xd6\xfc\x79\xea\xe9\xf5\x71\x78\x7a\xf1\xcb\x4c\x34\xe3\x2c\x8c\x32\xd1\x8c\x3b\x1d\x40\x34\xe3\x4e\xa0\xc4\x44\x33\xee\xc2\x52\x9c\x68\xc6\x19\x3c\x37\xd1\x8c\xbb\xb0\x8f\x26\x9a\x71\x17\x36\xfa\x44\x33\xee\x3a\xbd\x0b\x21\xe7\x58\x7c\x13\xcd\x38\xd5\x9a\xe7\xa5\xbf\x98\x76\xa2\x19\x67\x2e\xd1\x44\x33\xee\x1a\x3e\x1d\x7f\xb1\xad\xbe\xf4\x17\x7b\x17\x7d\xad\x9e\x89\x06\x18\x3e\xc5\x89\x82\x5c\xc6\x1b\x38\x51\x90\xcb\x80\xb1\x89\x82\x9c\xe9\xc7\x13\x05\x39\x21\xe4\xa4\x2c\x92\x45\x24\x27\x65\x91\x0a\xc2\x2a\x13\x75\xb9\xb6\xfb\xdf\xea\x43\x3b\x7c\x1e\xbe\xc8\xdd\x23\x7c\xad\x87\x4f\xa7\x2c\xd2\xee\x5d\xf0\x53\xba\xb0\x5b\x16\x69\xf7\x08\x3f\xa5\x93\x15\x75\xb9\x46\xd6\xd1\x44\x5d\xae\xb9\xec\xa2\x2e\xd7\xb0\x88\x26\xea\x72\x8d\xed\x68\xa2\x2e\xa7\xd6\xf0\x44\x5d\x4e\x1c\x35\x51\x97\x1b\xa0\x87\x89\xba\xdc\xc0\x2e\x9e\xa8\xcb\x0d\xf0\xc2\x44\x5d\x6e\x5c\x3e\x0f\x3f\xa5\x23\x41\x59\xa4\x41\x0c\xea\xbc\xf1\x53\x5e\x3e\x01\x3f\xa5\xef\x1d\x1d\x3a\x31\xdd\x44\x87\x6e\x56\x5b\x3d\x38\xe2\x3f\x42\xe9\x36\xe2\x4c\x27\xe1\x72\x3b\xd9\x74\x93\x70\xb9\xc3\xa7\x67\x04\xad\x5c\x50\x32\x4e\x29\x97\x1e\x42\xe9\x4e\x97\x2c\x42\xe9\xb4\xd8\x27\xa1\x74\xda\xe8\x93\x50\xba\xd3\x99\x45\x28\xdd\xf9\xb4\x05\xa7\x94\xed\x24\x94\xce\xa8\x98\x49\x28\x9d\x98\x60\x12\x4a\x77\xe2\x6e\x99\x84\xd2\x19\x5b\x33\x09\xa5\x3b\x89\x6a\x9a\x84\xd2\x9d\x24\x1a\x4d\x42\xe9\x4e\x37\x66\x42\xe9\xc4\x0b\x93\x50\xba\x13\x76\x63\x16\xfb\x47\x8f\x28\x8b\x74\x42\x74\x4e\xca\x22\x5d\x6e\xd3\x84\xd9\x9d\x2e\x2f\x84\xd9\x89\x3a\x66\xb1\x7f\x3e\xbd\xe3\x12\x63\xb6\x12\x66\x97\x86\x67\xe2\x94\x82\x60\x9b\x84\xd9\x25\xb8\xaa\x49\x98\x5d\x72\x93\x21\xcc\x2e\xb9\x19\x56\x85\x94\xf8\x36\x09\xb3\x4b\x90\xca\x93\xda\x47\xc9\xed\x96\xda\x47\x09\x66\x60\x52\xfb\x28\x41\x07\x4f\x6a\x1f\x89\x2c\x26\xb5\x8f\x12\xb4\xe0\xa4\xf6\x51\xea\x5e\x87\x53\x0a\x92\x70\x56\x9d\x52\xf4\x9d\xda\x47\x69\x78\x26\xfd\x23\xf6\x7f\x52\xfb\x28\x91\x37\x39\xa9\x7d\x74\xbb\xcc\x53\xfb\x28\x61\xb1\xcf\x66\xff\xee\x7f\x2d\xc9\x94\x45\x4a\x30\x8d\x93\xb2\x48\xd9\x29\xdf\xf4\x57\x31\x48\x94\x45\xca\x80\xdb\x49\x59\xa4\x0c\x7c\x9e\x94\x45\xca\x04\xcf\x4d\x4a\x1f\xe5\x68\x33\xf1\x57\x01\x79\x26\x7a\x72\x46\x1d\x4c\xf4\xe4\x8c\x4f\x98\xe8\xc9\x19\xca\x33\xd1\x93\xab\x2e\x0c\xe8\xc9\x55\xbc\x73\x13\x3d\xb9\x8a\xeb\x60\xa2\x27\x67\xb4\xc2\x44\x4f\xee\xb1\xa4\xd0\x93\xab\x58\xb4\x13\x3d\xb9\xaa\x55\x87\x9e\x9c\x91\x13\x13\x3d\xb9\x1a\xbc\x27\xfe\x2a\x97\x33\xf4\xe4\x6a\xf0\x08\x7f\xd5\xe1\x3d\xed\x1f\x03\x8f\x9e\x5c\x85\xea\x98\xe8\xc9\x55\xac\xe4\xd9\xed\x1f\x23\x81\x9e\x5c\xc3\x1b\x38\xd1\x93\x6b\x2e\x21\x43\x7f\x15\x23\x88\x9e\x5c\xd3\xfa\x44\x4f\xae\x69\x6f\xa2\x27\xd7\x80\x4a\x13\x3d\x39\x15\x05\x26\x7a\x72\x7d\xf3\x09\x37\x47\x8c\x27\x7a\x72\xcf\x42\x8b\x9e\xdc\xb3\x60\xa2\x27\xf7\x2c\x8a\xe8\xc9\x3d\x8b\x22\x7a\x72\xcf\x22\x8c\x9e\xdc\x70\x39\x43\x4f\x6e\x10\xb9\x3e\xd1\x93\x1b\xe0\x93\x89\x9e\xdc\x80\xf8\x98\xe8\xc9\x0d\xb7\x54\xf4\xe4\x06\xee\x8f\x89\x9e\x9c\x52\xf4\x13\x3d\x39\x65\xea\x27\x7a\x72\x43\x8b\x1d\x95\x38\x93\xb4\x27\xd8\xc5\x5a\xe4\x13\x7c\xb2\xfb\xde\x09\xac\x23\x2d\x3b\x6c\xe0\x13\x44\x67\xc3\xb6\xe9\x2e\x4b\x1c\xe1\x2e\x5b\xf8\x2b\x6c\xe0\x13\x64\x66\xc3\x06\x3e\x09\xd5\xeb\x70\xc5\xac\x18\x84\xb0\x81\x4f\xc2\x8a\x41\x08\x1b\xf8\x24\x54\xef\x89\xab\x69\x61\xc8\xb0\x81\x4f\xc2\xc2\x04\x61\x03\x9f\x84\x85\x87\xc2\x06\x3e\x09\x4f\x5b\x70\x35\x2d\x76\x23\x6c\xe0\x93\xf0\xb4\x05\x57\x53\xf6\x3f\x5c\x4d\xcb\x28\x09\x1b\x81\x75\x21\xd3\x4e\x02\xeb\xc2\x4d\xdf\x09\xac\x0b\x99\xe7\x11\x58\x17\x32\xbd\x25\xb0\x2e\x2c\x26\x29\x6c\xbb\xfd\xa3\x9d\x04\xd6\x85\xb5\xb0\x87\x8d\xc0\xba\x90\x3d\xa2\x7f\x95\xbe\x13\x58\x17\x16\xf2\x0d\xdb\xae\x3b\xd0\xa7\xd3\xbf\xea\x7f\xf4\x6f\x39\x27\xc2\x46\xf0\xdc\xd9\xb9\x27\xc1\x73\x57\xe5\x3f\x82\xe7\xae\xce\xb8\x10\x3c\x77\x75\x46\x02\x59\x04\xaa\x2c\x86\x8d\xe0\xb9\xab\xd3\x23\x82\xe7\xc0\x12\x61\x23\x78\xee\xea\xf4\x88\xe0\x39\xd2\xb9\xc3\x46\xf0\x1c\x15\xbf\xc3\x46\xf0\x5c\x3a\x18\x41\x82\xe7\x60\x4c\xc2\x46\xf0\x1c\x3c\x48\xd8\x08\x9e\x4b\xf6\x8f\xe0\x39\x42\x04\xc2\x46\xf0\x5c\x72\x24\x08\x9e\x5b\x7c\xcd\x7f\x2d\xc9\x61\x23\xae\x2e\x15\x9a\x42\x21\xa4\xe4\x64\xa5\x10\x52\x72\x20\x88\xb9\x63\x3f\x08\x1b\x31\x77\xa9\x33\x09\x28\x84\x94\xec\x3a\x85\x90\xd2\x64\xc8\x82\x72\x37\xfe\x87\x5f\x26\x32\xf0\x41\xdf\x12\x9d\x0d\xfa\x96\xbc\x0e\xbf\xcc\xc6\xe0\x52\xde\xa8\x6c\x74\x96\xf2\x46\x88\xb3\x87\x2d\xea\x5b\x62\xa8\x29\x6f\x84\x54\x7b\xd8\x28\x6f\x54\x76\x9e\x47\x79\xa3\xb2\xf1\x04\xca\x1b\x95\x8d\xde\x52\xde\x08\x39\xf6\xb0\x51\xde\x08\xe1\xfd\xb0\x51\xde\x08\x25\xb8\xb0\x51\xde\xa8\x74\x5a\x4d\x79\x23\x88\x88\xb0\x51\xc2\xa8\x1e\xb6\x0c\x07\x4b\xf0\x09\x44\x6c\x46\x9e\x4e\x09\xa3\x1a\xb9\x0b\x25\x8c\xa8\xd5\x1d\x36\x4a\x18\x91\xea\x1d\x36\x4a\x18\xd5\x46\x5b\x28\x61\x54\x1b\x53\x89\x12\x46\xb5\x32\x4a\x94\x30\xaa\x8d\xde\x52\xc2\xa8\xba\x84\x50\xc2\xa8\xfa\x1e\x28\x61\x54\xbb\x77\xa1\x0f\xd5\x27\xe0\x40\x6a\x8c\x20\x25\x8c\xd0\xdb\x0d\x1b\x25\x8c\x6a\x65\xac\x29\x61\xd4\x4f\xfb\x80\x03\xe9\xe4\x9e\x97\x0e\x24\x5a\x46\x09\xa3\x6e\xdf\x29\x61\xd4\x4f\x7a\xbb\xd0\x51\xee\xf6\xfd\x22\x22\xf5\xe4\x79\x94\x37\xea\x27\x2d\xa3\xbc\x51\x77\xcc\x28\x6f\xd4\x4f\x46\x89\xf2\x46\xfd\x64\x26\x53\xde\xa8\x9f\xf4\x81\xf2\x46\xfd\xb4\x2d\x38\x9e\x4e\x46\x82\xf2\x46\xfd\xb4\x65\x48\xe1\xb8\x0c\x52\xde\x68\xb8\xec\x52\xde\x68\xf8\xb9\x53\xde\x68\x6e\x8c\x35\xe5\x8d\x90\x71\x0f\x1b\xe5\x8d\xe6\x4e\xab\x29\x6f\x34\xfd\xc0\x17\x72\xca\xf3\xa0\xb7\x0b\x39\xe5\x79\xf0\xf4\x85\x9c\xf2\x74\xf6\x2c\xe4\x94\xe7\x41\x3b\x29\x8b\x34\xed\x7b\xc2\xf1\x74\x7a\x4f\x4a\x11\x65\x9f\xd7\x09\x34\x65\x5c\x28\x8b\xf4\x2c\x83\x94\x45\xba\x5c\x34\x28\x8b\x74\x15\xde\x26\x65\x91\x2e\x17\x7d\xca\x22\x5d\x2e\x44\x37\x9a\x36\x2e\x83\x37\x9a\x36\x2e\x6e\x94\x4c\x22\x93\x37\x6c\x94\x4c\x02\x43\x86\x8d\x22\x49\xdd\xd9\x4a\x91\xa4\x91\x18\xa5\xdb\x20\x4d\xc6\x93\x20\xb8\x7d\x72\x17\x82\xe0\x4e\xbf\x46\x82\xe0\xce\x9d\xeb\x08\x82\x3b\xfd\xde\x09\x82\x3b\x5d\x0b\x08\x82\x43\x90\x36\x6c\x04\xc1\x21\x9c\x1b\x36\x82\xe0\x88\xd3\x0a\x1b\x41\x70\x67\xf7\xbf\x9b\x23\xef\x49\x29\x8f\xe7\x3f\x82\x18\x87\x6d\x21\x88\x71\xd8\x16\xdd\x3b\x3e\x0f\xf7\x8e\xdb\x0a\xf2\x06\xc5\x15\x13\x79\x83\xf2\x83\x72\xfe\x7b\x49\x2e\xc4\x37\x3a\xcd\x50\x3e\x78\x16\x1b\x94\x0f\x4a\xe7\xe1\x28\x1f\xa0\xa6\x15\xb6\xa2\xf7\xca\xeb\xf0\x5e\x35\x3a\x84\xf2\x41\xb1\x43\x28\x1f\xd4\xcb\xbb\xa0\x4e\x51\x3d\xb2\x4a\x84\xcf\x2b\xf8\x8f\xe8\x02\x01\x72\xdb\xc1\x40\x14\x3d\x46\x5e\xd7\x39\x93\x29\x88\x2c\xf7\xe6\x24\x27\x40\x6e\x73\x5a\x13\x20\xb7\xed\xdc\x05\x3d\x03\xaa\xee\x86\x0d\xb1\xed\x6d\xe7\xe9\x04\xcf\x1d\xb6\x85\xe0\xb9\xc3\xc5\x9b\xe0\xb9\xc3\x09\x42\xf0\xdc\xb1\x31\xe9\x08\x9e\x3b\x5c\xd8\x09\x90\x3b\xdc\x19\x09\x90\x3b\xb4\x03\x08\x90\xa3\xa6\x5d\xd8\x08\x90\x8b\x8d\x56\x13\x20\x17\x1b\x77\x21\x40\x2e\x6a\x65\x11\x20\x17\x9d\xd6\x04\xc8\x9d\xf6\x1d\x41\xed\xcb\xd1\x25\x40\x2e\xb9\x98\x12\x20\x07\x05\x14\x36\x02\xe4\xf2\xce\x3b\x22\x40\x2e\xef\x3e\x1d\xa7\xcd\xe1\x99\x04\xc8\x39\x2e\x06\xc8\x39\x82\x04\xc8\x91\x8f\x18\x36\x02\xe4\xb2\x6f\x93\x20\xb8\x16\x68\x27\x41\x70\xcd\xed\x96\x20\xb8\x16\x78\x2b\x68\x1d\xb4\xc3\xff\x70\xda\x04\xda\x62\x80\xdc\xf0\x3f\x9c\x36\x83\xf7\x40\x80\xdc\x48\xf4\x9d\x00\xb9\x91\x18\x33\x02\xe4\x46\x62\x01\x23\x40\xee\xf9\xf8\x09\x90\x1b\x89\x3e\x10\x20\x87\xac\x52\xd8\x08\x90\x1b\x89\x27\x10\x20\x37\x12\xef\x96\x00\xb9\x91\x18\x4f\x02\xe4\xc6\xc5\x13\x08\x90\x9b\x6e\x24\x04\xc8\x4d\xb7\x1c\x02\xe4\xe6\xcd\x48\x10\x20\x37\x6f\x5a\x4d\x80\xdc\xf4\xdd\x82\x48\x36\x5b\x0d\x22\xd9\x35\x82\x40\x24\x7b\xa7\x7f\x20\x92\x43\xa3\x04\x44\x72\x5c\xb4\x0c\x44\x72\x5c\xbc\x3f\x10\xc9\x71\xf1\x74\x10\xc9\xe9\x77\x0b\x22\x39\x9d\x13\x20\x92\x73\x30\x27\x54\xb8\x76\x09\x01\x91\x9c\xc3\x33\x71\x78\x0c\xda\xa9\xc2\xb5\x0b\x34\x0a\xd7\xa7\xad\x56\xe1\xda\xf7\xa7\xc2\xf5\x64\x3c\x55\xb8\x9e\xde\x05\x87\x8e\x86\x1c\x0a\xd7\xa7\x2b\x91\x0a\xd7\xcb\x59\x10\x76\x14\xae\x4f\xd6\xa5\x5d\x85\x6b\x16\xbe\x5d\x85\xeb\xc5\x05\x84\x9d\x22\xae\xe7\x72\x94\x84\x7d\xb3\x7f\x93\x23\xfb\x37\x38\xb2\x7f\x07\x47\x09\x97\x83\x77\xc1\xe1\x81\x51\xb9\x13\x20\x77\x6f\xb6\xa5\x71\x94\x39\xea\x1c\xd9\xb2\xc1\x51\xe5\x08\xf5\x64\xcc\xba\x9d\x20\xb8\x34\xff\x11\x04\x17\x76\x82\xe0\x6e\x6c\xbc\x5d\x61\xec\x49\x17\x08\x82\xbb\x59\x96\x76\x82\xe0\x6e\x16\xa2\x9d\x20\xb8\x7c\x79\x84\xe3\x02\x7b\x65\x27\xd0\x2d\x33\x41\x76\x02\xdd\x32\x96\xd4\x4e\xa0\x5b\x3e\x7d\x1e\x69\xc4\x0b\xa4\x86\x9d\x40\xb7\x8c\x7d\xb4\x13\xe8\x46\x11\xff\xb0\x13\xe8\x96\x99\xc8\x3b\x81\x6e\x19\xab\x6e\x27\xd0\x0d\xb6\x34\xec\x04\xba\xd5\x93\xc1\x25\xd0\x0d\xc2\x32\xec\x04\xba\x69\xa7\xee\x04\xba\xd5\xe8\x99\x38\x35\xb0\xf1\x76\x02\xdd\x10\x2f\x0a\x3b\x81\x6e\x08\x1b\x85\x9d\x40\x37\x2d\xda\x9d\x40\x37\x24\x90\xc2\x4e\xa0\x1b\x05\x8d\xc2\x4e\xa0\x5b\x8d\x8c\x12\x81\x6e\xf5\xf4\x08\xa7\x86\x63\x46\xa0\x5b\x8b\x3c\x9d\x40\xb7\xc6\x12\xb2\x07\x9d\x1a\xb4\x25\xe8\xd4\xa0\x0f\x04\xb3\x75\x27\x08\xc1\x6c\xe8\xd0\x85\x9d\x60\x36\x34\xe3\xc2\x4e\x30\x1b\xba\x70\x61\x27\x98\xad\x63\x2d\xed\x41\xc7\x85\xff\xe1\xb8\x60\x99\xd8\x09\x66\x1b\xc9\x96\xe1\xb8\xb8\xbc\x27\x8e\x0b\x16\xb7\x9d\x60\xb6\x91\xb8\x27\xc1\x6c\x03\x40\xb9\x13\xcc\x36\xed\x3b\xc1\x6c\xd3\x51\x22\x60\x6d\x3a\xf2\x04\xac\x4d\xac\xba\x1d\xb4\xb2\xfb\x8e\x40\x2b\x7b\xe0\x79\xa0\x15\xf4\x21\xc2\x0e\x5a\xd9\xed\x1f\xc5\x58\x83\x9f\x1f\xc5\x58\x03\xa8\x63\x07\xc9\x84\xe6\x5d\x70\x01\x3c\xed\xc4\x05\xc0\x62\xb3\x83\x64\x02\x46\xc9\x0e\x92\x09\x93\xb1\x06\xc9\x04\x96\x9e\x1d\x24\x13\x9a\x47\xb8\x00\xba\x67\xe2\x02\x28\x1e\xe1\x02\x70\xd1\x00\xc9\x84\xe6\xf3\x70\x01\x74\xfa\x0e\x92\x09\x83\x3e\x80\x64\x82\x8b\xd4\x69\xff\x98\x75\xa7\xfd\xf3\x3a\xfb\xe7\x75\xf6\xcf\x3e\xd8\x3f\x7a\x0b\x92\x09\xa0\xe2\x1d\x24\x13\xb0\x06\x77\x90\xcc\x99\x18\x4f\xd0\xca\xc5\x02\xbd\x83\x56\x12\x66\xcf\x7e\x09\xf3\x99\x2f\x20\x92\x74\xd0\x3f\x10\x49\xc2\x01\xb1\x83\x48\x92\x5f\x31\x88\x24\xf9\x15\x83\x33\x6e\xd7\x09\x70\xc6\xed\x5a\x00\xce\xb8\x5d\x27\xc0\x19\xb7\x5f\x0e\x38\x03\xdd\xc9\xb0\x83\x33\x50\xa8\x0c\x3b\x38\x83\x7a\x35\x61\x07\x67\xdc\x95\x71\x01\x67\x64\x57\x86\x44\x9c\x48\xf4\x9e\x62\x79\x5a\x4d\xcc\x58\xd9\x79\x47\xc4\x8c\x51\x80\x2e\xec\xc4\x8c\x51\x22\x2d\xec\xc4\x8c\x51\x2c\x2e\xec\xc4\x8c\x15\x0c\xc0\xfd\x16\xaf\xff\xcb\x4a\xde\x09\x27\x2b\xf8\x50\x76\xc2\xc9\xa8\x62\x17\x76\xc2\xc9\xa8\x38\x17\x76\xc2\xc9\x0a\xbe\x97\x9d\x70\xb2\x82\xb5\xb4\x13\x4e\x56\xb0\xab\x76\xc2\xc9\xa8\x3f\x17\x76\xc2\xc9\x8a\x53\x9e\x70\xb2\xea\x3e\x42\x38\x59\x75\xd1\x27\x9c\xac\x6e\xde\x13\x98\xef\xfe\x43\x38\x19\x9e\xde\xb0\x23\x8c\x5d\x01\x0f\x3b\xc2\xd8\xd5\xcf\x8f\x70\xb2\x3a\x78\x3a\xe1\x64\xd5\x0f\x80\x70\xb2\xea\xce\x48\x38\x59\x75\x7f\xcd\x42\x79\xaf\x03\xca\x77\x9f\x07\x94\xf7\xf3\x23\x9c\xac\xba\x67\x13\x4e\x56\xfd\xfc\x08\x27\x43\xae\x28\xec\x84\x93\x55\x3f\x1c\xc2\xc9\xaa\xd3\x9a\x70\xb2\xea\xc7\x4f\x38\x59\x77\x11\x26\x9c\xac\xdf\x9e\x09\x94\xbf\x3d\x13\x28\x0f\xfc\xda\x09\x27\xeb\x6e\x5c\x84\x93\xf5\xe4\x75\x40\x79\x7c\x83\x3b\xe1\x64\xdd\x85\x96\x70\xb2\x8e\xe5\xb6\x13\x32\xd6\xfd\xfc\x08\x19\xeb\x17\xef\x88\xb0\xb0\x8e\xbd\xb9\x13\x16\xd6\x2f\x7a\x5b\x6d\x27\xfd\x23\x2c\xac\xbb\x78\x13\x16\xd6\x5d\xa0\xab\xed\x64\xe4\x09\x0b\xeb\x2e\xe5\x84\x85\xf5\xe4\x3d\x6d\xa7\xff\xd9\x4e\xc6\x85\xb0\xb0\x8e\x9d\xba\x13\x16\x36\x32\x23\x41\x58\xd8\xc0\xbf\xb9\x13\x16\x36\x5c\x88\x08\x0b\x1b\x93\x37\x46\x58\xd8\x3c\xe8\x2d\xa1\x5f\x33\x7a\x84\xa6\xae\xf3\xac\x91\x17\x8a\x97\x74\xa7\x70\xea\x85\x23\x68\xa7\x70\xaa\xde\xce\x9d\xc2\xa9\xb7\x0b\x26\x85\x53\x6b\xe4\x4c\x8b\x9c\xba\x94\x53\xe4\xf4\x04\x75\xec\x14\x39\x15\xf3\xec\x14\x39\x3d\xfd\xdc\x29\x72\x0a\x4d\x1e\xf6\x2e\xb4\x66\x5c\x28\x72\x7a\x61\xb5\xee\x14\x32\x45\x01\x3a\xec\x14\x32\x2d\xce\x6b\x0a\x99\x16\x70\xc6\x4e\x21\xd3\xe2\x75\x14\x32\x2d\xb6\x8c\x42\xa6\x68\x45\x87\x1d\x14\xb0\x81\x72\x76\x50\xc0\x86\x0b\x6e\x07\x05\x6c\x07\x6d\x01\x05\x6c\x8e\x19\x28\x60\x0b\xbc\x15\xd4\xd0\xb6\xe0\x3d\xc1\xc1\x9a\x28\xa4\xd0\x6c\xc1\xb6\x80\x83\xdd\x6e\x49\xa1\xd9\x70\x62\xee\xa4\xd0\x6c\xc1\x76\x12\x39\x81\xb3\x67\x27\x85\x66\x73\xd3\x26\x85\x66\x03\x71\xed\xc8\xa1\x6d\xe0\xb6\x9d\x14\x9a\x0d\xa7\xe9\x4e\x9a\xcc\x81\x17\x78\x27\x4d\x26\xf8\x05\x90\x26\x43\x60\x6b\xd8\x49\x93\x89\xd5\xe7\xa1\x4a\xa7\x31\x43\x9a\x8c\xce\x9e\x9d\x34\x99\xcb\x45\x9f\x34\x99\x6b\x78\x4f\x52\xca\xda\x3f\xad\x64\x02\xb3\x28\x5a\x1e\x0e\x32\x68\x10\x59\x0f\x07\x19\x34\x94\x30\x0f\x07\x19\x34\x09\x08\x72\x90\x41\x43\xd4\x62\x38\xc8\xa0\x41\xfc\x26\x1c\xa8\xa1\xa1\x52\x10\x0e\xd4\xd0\x50\x22\x08\x07\x6a\x68\xb9\x7a\x17\xd4\xde\x2e\x9f\x8e\xa2\x1b\x3e\xb0\x43\xc5\xb3\xe8\x75\x44\x08\xb0\xa7\x1d\x2a\x9e\x61\xed\x1e\x3b\x11\x02\xec\x70\xc7\x4e\x36\x16\x9f\xc3\x81\x1a\x1a\x12\x33\xe1\x50\x0d\x8d\x65\xe2\x50\x0d\x2d\xf9\x1f\x11\x02\x2c\x83\xc7\x4e\x84\x00\xcb\xd9\xb1\x0b\x36\x7d\x1e\x2a\x63\x60\x89\x03\x14\x80\xb0\x4a\x38\x40\x01\x7b\xf7\x09\x02\x51\xff\x43\xb8\x89\xed\xef\x30\xa5\xc5\xbb\x60\xe9\x5f\x78\x26\x0f\x53\x5a\x26\x2d\xc3\xd2\xa7\xfa\x5d\x38\xb0\xf4\x2f\x20\xd6\x61\x4a\x0b\x08\xe1\xc0\xd2\xbf\xf0\xa3\x1f\x58\xfa\x17\x16\xf4\x81\xa5\x7f\xe1\x60\x39\xb0\xf4\x2f\x36\xbc\xc3\x94\x96\xc9\x9b\xc6\xd2\xbf\x77\xaf\x03\x8c\xb1\x84\x1c\x96\xb2\x61\x99\x38\xb0\xe6\x29\x6b\x1f\x0e\x4b\xd9\x5c\xfe\x47\xda\xc3\xe5\x7f\xa4\x3d\xe0\x91\x3e\x82\xa2\x47\xdc\x13\x4b\x5f\xd7\xd6\x81\xa5\x5f\xb1\xc3\x8f\x20\x5a\xa1\x65\x58\xfa\x88\xba\x87\x03\x4b\xbf\x3e\xcf\x03\xad\x5c\xf4\x0f\x4b\x1f\x81\xf9\x70\x60\xe9\xd7\xcb\xbb\x58\x35\x85\xd1\xd5\xd2\xbf\x6d\x27\x96\x3e\x5b\xdc\xa1\xa5\xcf\xf6\x77\x3c\x96\x3e\x7d\x20\x35\x45\x6f\xee\xf1\x58\xfa\x5e\x87\xa5\x8f\x7f\xfa\xc0\xd2\xdf\x20\xca\x0e\x2d\x7d\x2c\xb0\x43\x4b\x9f\x65\xe2\xd0\xd2\xc7\x8a\x3c\xb0\xf4\x49\x7a\x0f\x07\xd6\x7c\xc4\x98\x39\xb0\xe6\xa3\xef\x41\x6b\x1e\x3f\xec\x81\x35\x1f\x31\xac\x0e\xac\xf9\x08\x27\x73\x60\xcd\x47\xcc\xa5\x43\x6b\xde\x79\x86\x35\x1f\xd9\x10\x0e\xac\xf9\xb8\x7b\x97\xc4\x3d\xe9\x1f\xd6\x7c\x74\x86\x60\xcd\x47\x7c\xbb\x87\xd6\xfc\xf4\x2e\x95\xff\xbc\x0b\xd6\xbc\xef\x1d\x6b\x3e\x6e\x1e\xd9\x3f\xdb\x62\xff\x78\x2b\x58\xf3\x11\xff\xf4\xa1\x35\x8f\x5b\xe1\xb8\xec\x1f\x6d\x81\x97\x08\xb8\x46\x0e\x78\x89\xc8\xb6\x72\x60\xe9\xc7\xcd\xeb\x40\x2b\x7e\x7f\xf0\x12\x61\x7a\x26\xfd\xf3\xeb\x00\x05\x04\xbf\x31\x50\x40\x84\x9d\x3a\x2e\xfb\xe7\x7f\xc4\xc6\x63\x1c\x1e\xa0\x80\x13\xc3\xf1\x80\x97\x58\x5b\xea\x7f\x2e\xc9\x07\x70\x21\xf9\xa9\x00\x17\x12\x86\xfe\x21\x24\xf0\x53\xd1\xec\x87\x22\x39\x34\xed\x4f\xff\x83\xa6\x8b\x34\x85\x54\x11\x1d\x10\x07\x66\x3f\xb1\x19\xe1\xc0\xec\x27\x8a\x23\x1c\x98\xfd\x44\x78\x84\x43\xb3\x3f\x30\xf0\x9a\xfd\xec\xb6\x87\x66\x3f\xbb\xed\xf1\xd8\xf6\xdc\xf3\xb1\xed\x19\x6a\x6d\xfb\xc0\x20\x3d\xb6\x3d\x6d\xd1\xb6\x3f\x68\xa7\xb6\x3d\xbb\xf4\xa1\x6d\x8f\xed\x74\x3c\xb6\x3d\xd3\x05\xdb\xbe\x34\x9f\x40\x78\x78\xf3\x09\xd8\xc5\x4e\x5d\x6d\x7b\x27\x8f\xb6\xbd\xaf\x8f\x54\x91\xe6\x47\x45\xaa\x48\xc3\x65\x74\x68\xf7\x3b\x59\xb1\xfb\x9b\xcb\x27\x76\x7f\x7b\xee\x89\xdd\xef\xa4\xc3\xee\x6f\xd8\x08\x07\x76\x7f\x73\x92\x63\xf7\x37\x27\x39\x76\x7f\x73\xf2\x60\xf7\x37\x17\x5a\xec\xfe\xe6\x87\x8a\xdd\xdf\x9c\xe4\xd8\xfd\x1d\x56\xfe\xc0\xee\xef\x30\xf6\x07\x76\x7f\xc7\x73\x7e\x60\xf7\x77\x62\x09\x0e\xed\x7e\x62\x10\x0e\xed\xfe\x4c\xab\xb5\xfb\x33\xad\xd6\xee\x27\x22\xe1\xd0\xee\x2f\xfe\x87\x3d\x9d\x7d\x02\xf6\x74\xe6\xbd\x6b\xf7\x63\xa1\x1c\xda\xfd\x99\x1e\x91\x46\x42\x41\xaa\x70\x90\x46\xd2\xb3\x67\x82\x09\x8a\x2d\xa3\x7f\xc5\x96\xd9\x3f\xc6\xac\xda\x3f\xe6\xa7\x78\x01\x88\x7c\x88\x17\x70\x47\x1c\xe2\x05\x08\xb6\x03\x4c\x30\x1c\x25\x30\xc1\xb0\x7f\x60\x82\x61\x5b\xc0\x04\x08\xfd\x87\x03\x4c\x30\x40\x78\x07\x98\x80\x72\x01\xe1\x10\x13\x0c\x9f\x40\x7c\x78\x60\x94\xc0\x04\xd3\x79\x0d\x26\x98\x90\xa7\x87\x98\xc0\xaf\x98\x54\x11\x94\xb8\xc3\x41\xaa\xc8\x74\xc3\x13\x2f\xf8\xdd\x92\x2a\x32\x41\x1d\x47\xa3\x5a\x07\x56\xeb\xb1\xa2\xaf\xce\x3d\x78\x66\x82\x5c\x64\x04\x41\x16\x87\xef\x41\x64\x01\x0f\x72\x3c\xe8\xc1\x33\x29\x4b\xa1\x29\xd5\x28\xdb\xd0\x6c\x35\x65\x1b\x34\x0e\x17\x67\x71\x0e\xec\xf7\xa3\xa3\xc8\xa2\x01\xd1\x21\xfb\x34\x58\x40\x24\x15\xf7\xea\x01\x22\x29\x2e\xb4\x20\x92\x8a\x4f\xf8\x00\x91\x14\xbf\x23\x10\x49\x75\xeb\xe8\x5a\xf3\xf4\x16\xee\xe1\xc0\x1d\x71\xc0\x3d\x1c\xb8\x31\x0e\xb8\x87\xc3\xcd\x69\x28\x41\xc1\xe8\xc2\x3d\x88\x87\x0e\x50\xc7\x75\xfd\x2b\xe2\xe2\x00\x90\x50\x8a\x28\x1c\x00\x92\xec\xb2\x04\x20\xc9\x2e\x83\x43\x6b\x97\x41\x02\x90\x34\xbc\xab\x07\x80\xa4\xb9\xb4\x9a\xd3\xaf\x3d\x0d\x20\x21\x09\x22\x1c\xe6\xed\xdf\x0c\xa0\x79\xfb\x5a\x28\xe6\xed\x6b\x4d\x00\x3a\x04\x94\x07\xa0\x63\xba\x59\x40\x4b\x6c\x4e\x48\x68\x89\xbd\x7b\x26\x96\xe2\xce\x50\x43\x4b\x5c\x2e\xd7\xd0\x12\xd7\xe1\xf3\xb0\x14\x77\x7a\x04\x2d\x71\x69\xe9\x43\x4b\x50\xcf\x39\x1c\xd0\x12\x97\x03\x0f\x2d\x71\xe1\xd0\x39\xa0\x25\x2e\x3f\x87\xa9\x25\xbc\xc6\x2c\x40\x4b\x5c\xd8\x2b\x01\x5a\xe2\x62\x7b\x08\xd0\x12\xd4\x96\x0e\x01\x5a\x82\xba\xd3\x21\x40\x4b\xdc\xcf\x99\x27\xb6\x68\xe7\xe8\xe2\xa8\x72\x04\x2d\xf1\x3c\xe1\xe6\x28\x72\x04\x2d\x41\x1f\x02\x79\xfb\xf7\xe1\x75\x58\xc2\x4c\xba\x00\x65\x91\x2f\x9f\x80\x4f\xff\xf2\xe9\xf8\xf4\x2f\xdb\x89\x4f\x1f\xa7\x46\xd8\xad\x8f\xc8\x5d\xe0\x25\x2a\x78\x21\xc0\x4b\x54\x1c\x25\x61\xd7\xa7\x4f\xff\x48\xc0\x47\x69\x2b\x04\x12\xf0\x51\xef\x0a\x61\xd7\xe7\x3d\x39\x22\x58\x8f\x08\x88\x00\x22\x31\x02\x22\x80\x48\x5c\x5e\x02\x88\xc4\x85\x28\xc0\x4b\xb8\xd8\x04\xb4\xca\xf6\x15\xa4\x19\x02\x21\x55\xa8\x19\x87\x40\x48\x55\x04\x30\x07\xf4\xc8\x22\xc0\x37\x1c\x5a\x59\x5e\x87\x95\xe5\x5b\x21\xa4\x2a\x06\x9e\x40\x48\x55\x64\x46\x06\x42\xaa\x62\xf0\x4c\xac\x48\xe6\x60\x20\xa4\x2a\x02\xf3\x03\x21\x55\x11\xe3\x22\x10\x52\x15\xa3\x77\xc1\x8a\xe4\xfb\x0b\x84\x54\x9d\x2c\xde\x81\x90\xaa\x93\xc5\x3b\x10\x37\x25\x19\x16\x8c\x9b\xc2\xc9\x10\x8c\x9b\x62\x31\x0d\xc6\x4d\xb1\xad\x04\xe3\xa6\x70\xa5\x85\xa0\x09\xe6\x3d\xf1\xca\x36\xfa\x80\x8e\x19\x15\x7f\x42\x40\xac\xec\xc6\x2d\x14\x10\x2b\x93\x1f\x0a\x44\x58\xe5\xd3\x33\x31\x6d\x1c\x09\x22\xac\x8a\x63\x46\x84\x55\xf1\xad\x18\x61\x15\x7d\x3a\x1e\x5b\x5c\x1c\xc1\x08\x2b\xb0\x44\x30\xc2\xca\x1e\x19\x61\xe5\xfb\x33\xc2\x0a\x64\x1f\x88\xb0\x22\x81\x3b\x04\xd0\x0a\x09\xe3\x21\x80\x56\xea\x73\x17\xdc\x96\xa7\xcf\xc3\x7c\xf1\x5b\x89\x9a\x2f\xde\x53\xf3\x85\x37\x06\x2f\x21\x51\x1d\x40\x32\x8d\x35\x24\x80\x56\x9a\x5f\x23\x68\xa5\x1d\xff\xc8\xde\x0b\x01\x20\x83\xae\x58\x08\x00\x99\x8e\xc3\x3d\x00\x64\x7a\xe5\x71\x00\x99\x4e\x80\x55\x00\xc8\xf4\xe6\x75\x58\x2f\x58\x91\x01\x20\xe3\x0e\x17\x00\x32\x1d\xff\x4a\x00\xc8\x74\x22\x0b\x02\x40\xc6\x10\x99\x00\x90\xe9\x2c\xbb\xc1\x00\xab\xea\x99\x58\x2f\x38\x58\x82\x41\x54\xd0\x58\xc1\x20\xaa\xc6\x94\x30\x88\x8a\x08\xca\x60\x10\x15\xa4\x4f\x30\x88\xaa\x79\x1d\x7d\xc0\x1b\x18\x0c\xa2\xf2\x65\x1a\x44\x85\x83\x25\x00\x56\x64\xe5\x03\x60\x65\x64\xef\xa2\xf5\x42\xab\x0d\xa2\x1a\xb6\x13\x8f\xe6\xf0\x9e\x58\x2f\x2e\xa6\x06\x51\xb1\x75\x04\x83\xa8\xd8\x7b\x83\x41\x54\x7e\x8c\x06\x51\x81\x41\x82\x41\x54\x00\xf4\x60\x10\x95\x9f\x91\x41\x54\x58\xa6\x61\x91\x1b\x71\xb8\xf4\x24\xfc\xa2\x7e\x54\x49\xeb\xc5\xbb\xe0\x17\x6d\xb6\xac\x92\x31\xe7\xd3\xb1\x5e\xba\x67\x62\xbd\xc0\x76\x87\x5b\xeb\x85\xe7\xa1\x47\x76\xba\x1d\xa1\x47\x76\xba\x59\xa0\x47\x46\xe5\xe7\x10\xd0\x23\x3b\x0f\xaf\xd3\x7a\xe1\xe9\x68\x8e\x35\x60\x70\x20\x39\x64\xf3\x53\xb9\x8d\x59\xa1\x47\x0b\x83\xa4\x80\xd7\x39\x64\x62\x56\xe0\xef\x43\x26\x66\xc5\x56\x67\x62\x56\xba\xd7\x45\x8e\x98\xbb\xd9\x98\x15\x9e\x97\x49\x42\x72\xbe\x64\x8d\x12\xef\x82\x51\x02\xf1\x18\x50\x04\x6b\xa7\x77\x21\x49\x07\x72\x2a\xa0\x08\xd6\x4e\x9f\x87\x0b\xce\xcd\x02\x45\xb0\x86\x53\x23\x20\xfb\xd5\x26\xf7\x44\xf6\x0b\xed\xe6\x10\x90\xfd\xd2\x3b\x1e\x0a\x46\x09\x41\x85\xa1\x10\xef\x81\x8f\x3d\x14\x8d\x12\x66\x08\xc9\x21\x87\xdb\xa6\x09\x20\xf8\x53\x43\xd1\xf0\xa0\x9d\x24\x80\x50\x9f\x23\x04\x12\x40\x2e\x37\x20\x12\x40\xee\xe7\x4c\xdc\x57\x38\x2e\x02\x09\x20\xb7\x6f\x93\x04\x90\xdb\x2d\x87\x04\x90\x5b\xe3\x82\x04\x90\x67\x2e\x55\xdd\x57\xf4\x81\x04\x90\xec\xca\x40\x02\x08\x49\xcc\x21\x90\x00\x82\x50\x68\x08\x24\x80\x54\x1c\x48\x81\x04\x10\x84\x42\x43\x20\x01\x84\x9c\xdf\x10\x48\x00\x41\x8a\x34\x04\x12\x40\xaa\x33\x84\x04\x90\xee\x02\x4d\x02\xc8\xc8\x1e\xe1\xbe\xca\x3e\x01\xf7\x15\x48\x26\x90\x00\x32\xfc\xaa\x48\x00\x19\x20\xbc\x40\x26\x87\x18\x24\x90\xc9\x31\x2f\xcf\x44\xda\x01\x14\x10\x48\x49\x8f\xf1\x5f\xbe\xe4\x40\xb6\x7a\x3c\xbd\x25\x7b\xb6\xaf\xbd\xb9\x67\x7b\x4b\xf6\x6c\xed\x1c\xb2\xce\xa3\x3b\x5c\x77\x5f\xe6\x3a\xb2\xce\x93\x7b\x36\x59\xe7\x37\xbe\xc1\x40\xd6\xf9\xad\x05\x46\xd6\xf9\xed\x52\x60\xd6\x39\x96\x77\x30\xeb\xdc\x89\x4c\xd6\x79\x71\x59\x22\xeb\xbc\xe0\x0c\x09\x66\x9d\xdb\x6a\xb3\xce\x01\x47\xc1\xac\x73\xad\x41\xb3\xce\xf1\x4f\x07\x8b\x64\xfa\xb9\x9b\x5a\xee\x48\x58\x24\xb3\x7b\x84\x5b\x61\xf7\x3a\xf6\x5e\xf7\x50\x53\xcb\xb5\xab\x4c\x2d\xd7\x46\x30\xb5\x1c\x7f\x63\x20\xb5\xbc\x39\x66\xa4\x96\xeb\x1d\x0f\xa4\x96\x37\x47\x90\xd4\xf2\xa6\xc5\x40\x6a\xb9\x01\x64\x81\xd4\x72\x43\xcd\x02\xa9\xe5\x4d\xfb\x81\xd4\x72\x03\xcf\x82\x45\x32\xb5\xc7\x2c\x92\x89\x23\x28\x58\x24\xd3\x8f\xd1\x22\x99\x5a\x2f\x16\xc9\xf4\xd3\x34\xed\x1c\xef\x78\x30\xed\xbc\x7b\x1d\x9b\x9a\x4b\x81\x69\xe7\x10\x96\xc1\x22\x99\xbe\x5b\x8b\x64\x3a\x9e\xa6\xa4\x77\xdb\xc9\xc6\xec\x32\x6f\x4a\x3a\x34\x56\x30\x25\x7d\xd0\x77\x52\x3e\x3a\x4b\x6b\x34\x25\x9d\x45\x38\x92\xf2\xd1\x89\x94\x8f\xa4\x7c\x74\x3c\x9a\x91\x94\x0f\xb7\x95\x48\xca\x47\x07\x55\x45\x53\xd2\xab\xd7\xe1\x72\x80\x1a\x8b\xa4\x7c\x20\xea\x1e\x22\x29\x1f\x93\x91\x8f\xa6\xa4\x33\x82\xd1\x94\xf4\xe8\x11\x29\xe9\x2c\x8a\xd1\x94\xf4\xec\x5d\x4c\x49\xf7\x4c\x53\xd2\x6d\xcb\x04\xf4\xd3\x3f\x0a\x68\xde\x50\x71\x91\x74\xf5\x1b\x37\x46\x24\x5d\x3d\x13\xac\x17\x49\x57\xaf\x20\xca\x48\xba\xfa\x33\x2e\xc4\x46\xa1\x4d\x1d\x22\xe9\xea\x2e\xec\x71\xe1\x93\x8b\xa4\xe2\x10\x77\xaa\xf4\x1d\x3e\x9d\x2a\x7d\x2c\xad\x71\x27\x0d\x1c\xc7\x4c\xdc\xa9\xd2\x87\x19\x12\x0f\x52\xa8\xf1\x56\xc7\x85\x41\xae\x8a\x79\x16\xa9\x11\xb3\x9d\x9e\x09\xc1\x76\xfa\xdf\xda\x56\x0e\x36\xe6\x48\x8d\x98\x70\x7b\x74\x71\x44\xcb\x0e\xc8\x37\x82\x0a\xe3\x41\x7e\x2e\x84\x73\xa4\x7e\x0c\x19\x7a\x21\x52\x3f\xa6\xc1\x21\x44\xea\xc7\x34\xf8\x8c\x78\x80\xd7\x7d\x0f\xc4\x3f\x1d\x4b\xd6\x36\x44\x18\x93\x2b\xd8\x32\xb0\x2e\x68\x25\xc2\x98\x5c\x7c\x7f\x11\xc6\x84\x12\x54\x21\xc2\x98\x50\xba\x2a\x44\x18\x93\x8b\xb5\x20\x2a\xf4\xb5\xd2\x95\x42\x84\x31\xb9\x7f\x70\xd4\x7f\x2e\xc9\x11\x32\xe5\x76\x62\x05\x61\xb0\x37\x01\x06\x3b\x05\x21\x53\x32\xa1\x58\x11\x32\x25\x13\xb1\x19\x21\x53\x72\xf2\x4c\x60\xf0\xf4\x2e\x84\x7e\xdd\x76\x81\xd0\xaf\xdb\xff\xc8\x67\xc3\x8d\x11\x21\x53\x10\xb1\x0e\x11\x32\x45\x9a\x2e\x12\x36\x85\x8c\x74\x88\x68\x80\x8d\xec\x99\xee\x54\xb4\x45\xa2\x05\xd2\x27\x92\x00\x82\x94\x5e\x88\x40\x97\xc8\x2e\x16\xa3\xdb\x91\x4f\x00\x5e\x02\x75\x23\xd0\x25\x62\x03\x45\xa0\x4b\x04\x22\x47\xe0\x89\x31\x8c\x11\xa2\x05\xb9\xca\x10\x4f\x97\x79\xda\x09\xea\x68\x2c\xfa\x11\xd4\xd1\x00\x78\x11\xd4\xd1\xd8\x02\xe2\xa9\x4f\x98\x29\x71\xba\x78\xd3\x96\xd3\xc5\x9b\x51\x02\x75\x34\x5b\x0d\xea\x68\xcf\xf3\x58\xbc\xd9\xaa\x22\xa8\xa3\xb1\x8d\x45\x51\xc7\xf4\x2e\x2c\x6e\xf8\xae\xa3\x69\x1d\xc4\x6f\x46\xd3\x3a\xd8\x52\xa3\x88\xc4\xcf\x4f\x44\x82\x07\x2e\x8a\x48\x80\xcf\x51\x44\x02\x0d\x12\x45\x24\x80\xe2\x28\x22\x01\x3d\x44\x11\xc9\xf0\x4c\x16\x6f\x6c\xed\x68\x5a\x87\x8b\xa2\x69\x1d\xc3\xff\x58\xbc\x89\x7c\x89\x20\x92\x3e\x7d\xba\xfd\xb3\xd5\xf4\xcf\xe5\x2c\xd9\x3f\xc6\x13\x44\x62\x78\x5e\x04\x91\x0c\x36\x8b\x28\xea\xc0\xe3\x1e\x45\x1d\x80\xd4\x68\xea\x46\xf0\x9e\x2e\xd0\x8c\xa0\xa9\x1b\xc1\xeb\x5c\xa0\x69\x0b\xbc\xcb\xb3\x0c\xc2\xbb\x4c\xec\xc6\x08\xef\x32\x5d\x5e\x4c\xdd\x20\x81\x27\xde\x68\x86\x80\xdb\xe2\x8d\x12\xb7\x6f\x93\xb4\x8e\x76\xf9\x9f\xa8\xc3\x23\xfc\xa2\xbb\x77\x21\x02\x02\x0e\x28\x92\xbc\xbe\x11\xa0\x1a\x49\x5e\xdf\x9c\xf3\x24\xaf\x6f\x97\x6d\x69\x2c\x98\xde\x05\x01\x05\x36\xe6\x48\xf2\x7a\xc4\x89\x12\xc1\x2e\xc9\x0d\x0f\xec\x92\x1d\x25\xb0\x8b\xc1\xab\x11\xec\x62\xf0\x6a\x04\xbb\x34\x8c\xb5\x08\x76\x19\xd9\x33\x89\xf3\x26\xab\x31\x9a\xf4\x6e\x6f\x49\x7a\xbf\x1c\xdd\xec\x2a\xe5\xf3\x70\xd6\xf9\x56\x48\x7a\xbf\xdd\x52\xb3\xce\x3a\xfa\x50\xb4\x76\xb9\x27\xcc\xc7\x8e\xc5\x1e\x61\x3e\xa8\x9d\x18\x22\xcc\xc7\xee\x7c\x81\xf9\x88\x6e\xb7\xb0\x1b\x97\x23\x01\xbb\x91\x30\xba\x22\xec\x46\xb2\x9d\xb0\x1b\xe9\xc7\xc0\xfd\xef\x25\x19\xe2\x23\xe1\x80\x88\x10\x1f\xe9\x79\x00\x16\xa6\x0b\x11\xc4\x47\x71\xe0\x21\x3e\xaa\x4b\x01\xc4\x47\x73\x19\x84\xf8\x78\x76\x2a\x88\x8f\x67\xa7\x22\x50\xaa\xb9\x28\x56\x17\x29\x9e\x00\x29\xd2\x9c\x12\x92\x22\x9b\x67\xf2\x11\xbb\xcc\x4b\x8a\x6c\x3e\x01\xb7\xc2\xe6\xd3\x71\x2b\xf8\x51\x49\x8a\x6c\xb6\x9a\x60\x28\x88\xab\x08\xf1\xd1\xe1\x5c\x23\xc4\x47\x87\x34\x88\x10\x1f\x83\xd8\x85\xd8\xac\x16\x40\xcb\x24\x3e\xf0\x02\x47\x0a\xc6\x4c\x5f\x83\x74\x86\x7b\x76\xd3\xee\xf0\x4c\xec\x0e\xf2\xe7\xe2\xa2\x33\x2e\x2a\x70\x87\xd8\x90\x6e\xc1\x71\x11\x49\xc1\xd8\x1c\x25\x34\x8a\x0f\x60\x62\x44\xa3\xf8\x28\x9e\x79\xf2\x01\xd0\x23\x53\x30\x2e\x8f\x48\xc1\x70\xf2\x98\x82\xe1\x82\x49\x0a\x86\xd0\x2c\x9a\x82\xe1\x16\x67\x0a\x46\xf6\x3a\x6d\x0b\xee\x49\x3a\x77\x26\x3c\x28\x92\xce\x9d\x89\x60\x89\xa4\x73\x67\xc7\xd3\x94\x6d\x62\x5e\xa3\x29\xdb\x10\x81\xd1\x94\x6d\x68\xb3\x08\x0a\x88\x78\xab\x23\x28\x20\xfa\xf9\x81\x02\xe2\xe5\x3d\xe1\xe1\x5d\xce\x40\x01\x51\x43\x00\x14\x90\x40\x40\x51\x05\x61\xad\x48\x50\x40\x76\x59\x12\x05\x10\xb7\x11\x41\x01\xcd\xa7\x4f\xe7\x20\x4f\x9f\xce\x41\xfa\x07\x0a\xa0\x2a\x60\x88\xa0\x80\x81\x3f\x3c\x4e\xe7\xa0\x4f\x60\x0e\xee\x3e\x9d\x39\xb8\xdb\x6a\x5c\x5b\xc5\x23\x5c\x5b\x5a\xf3\xa0\x80\xc9\xfc\x3c\x41\x01\x13\x94\x7a\x82\x02\x26\xbe\xf9\x13\x14\x30\x19\xf9\x13\x14\x40\xa5\xc1\x70\x82\x02\x66\xf2\x2e\x8b\x98\x4b\xcc\xd6\x93\x4a\x91\x1b\x5f\xe3\xb9\x39\x43\x26\x47\x2e\x6e\x8d\x23\x22\xd7\x71\xdd\x9d\x9b\xef\xcf\xeb\x88\x05\xc1\xe1\x78\x82\x02\x22\xe6\xd9\x09\x0a\x88\x4f\x3b\x79\x7f\xc9\xeb\x7c\x7f\xab\xb7\xa7\x15\x55\xf8\xde\x4f\x12\xbf\x91\x29\x08\x27\x89\xdf\xcd\x7b\x92\xf8\xdd\x78\xd3\x27\x89\xdf\x08\x69\x86\x93\xc4\xef\xf6\xdc\x13\x94\xb3\x7b\x1d\xef\x6f\xf7\x3a\x85\xb7\x68\x0b\x89\xdf\x93\xf8\x8b\x93\xc4\xef\x59\xbc\xce\xcd\x89\x3e\x50\x61\x72\xbb\x7c\x02\x4e\x29\x8c\x99\x73\xb7\x18\x9e\x77\xc1\xa1\x83\x5d\x7c\x12\x53\x75\x83\x80\x4e\x62\xaa\xee\xf0\xaf\x88\x8b\xd3\xc4\x8a\xec\x4d\x54\x53\xe0\xa5\x10\x6e\x35\xf0\xdc\x9d\x84\x5b\x8d\xe6\x11\xc1\xe2\xec\x38\x27\x04\xc6\xdd\xbc\x0e\x07\x3f\x3b\xf1\x09\x81\x81\x58\x7a\x38\x21\x30\xa8\x81\x1d\x4e\x48\x0a\xf4\x21\xc2\x69\xd1\x14\x7c\x3d\x27\x24\x05\x05\x3b\xc3\x09\x49\x31\x81\xf9\x27\x3a\x58\x66\xd3\x9d\xe8\x60\x55\x27\xdd\x02\x08\xe9\x38\xfc\x0f\xb2\x0f\xbb\xf1\x04\x05\x8c\xe2\x5d\xb0\x92\x81\x4a\xa7\x44\x04\xcb\xd9\x29\x11\xe1\x4b\x81\x88\x18\xbb\xff\xf1\x1a\xec\xbb\x96\x3e\x11\x09\x27\x44\x44\x04\x62\x9d\x10\x11\xcd\x8f\x03\x22\x62\x60\x31\x9c\x11\x91\x25\xa7\x92\xa9\xde\x2c\x9f\x67\x74\x9a\xf1\xa2\xa3\xd3\x8c\x57\x1b\xc9\x1d\x3c\xbc\x27\x4b\x81\x53\x09\x6b\x1e\xe1\xef\x70\x42\x44\xcc\xe8\x99\xd8\x63\x2c\xbb\xe7\xb2\xf4\xe7\xd3\xa3\x65\xe9\x1f\x87\x1f\xe3\xda\x7c\x27\xf2\xe8\xe1\x5c\x9b\xef\x71\xfa\x71\xac\xcd\x77\x8e\xe0\xd1\xb1\x8e\xb0\xff\xce\xb5\xf9\x6e\xd4\x36\x0b\xe7\xda\x7c\xe7\x74\x7a\xae\x4d\x74\x4e\x36\xbc\x73\xf9\xf1\x56\x32\xd7\x3a\x1a\x9c\x49\xdf\xd7\xb6\x39\xa7\x13\x79\x6d\x9b\x47\xe2\xe8\x5a\xd6\xee\x16\x01\xda\xd7\xb2\xc0\xb6\x48\xc2\xc9\xb5\x8c\x8b\x83\x5a\x28\xe1\x5a\x7d\x88\xd4\xa6\x0b\xd7\xea\x43\xbf\xe3\xd6\x1b\x73\xf4\x5a\xfd\x88\xa8\x6c\x84\x6b\xf5\x83\xff\x6f\x7f\x59\x56\xa8\x19\x9a\xd7\xea\x4b\x8c\xd9\xbb\xb1\x09\x93\xa2\x72\x55\xa2\x0f\xc0\x76\x17\x86\x04\x85\x57\xc3\xb5\x0c\x89\x7e\x9f\xbd\x6b\x3e\x5c\x7f\xc6\xe1\x5a\xc6\xc4\x77\x54\xff\x1c\xb5\x3f\x47\xfd\xcf\xd1\xf8\x73\x34\x7f\x1f\xad\x11\xfb\x8e\xf6\x3f\x47\xc7\x9f\xa3\xf0\xe7\x28\xfe\x39\x3a\xff\x1c\x5d\x7f\x8e\xd2\x9f\xa3\xfb\xcf\xd1\x9f\xfe\xb5\x3f\xfd\x6b\x7f\xfa\xd7\xfe\xf4\xaf\xfd\xe9\x5f\xfb\xd3\xbf\xf6\xa7\x7f\xfd\x4f\xff\xfa\x9f\xfe\xf5\x3f\xfd\xeb\x7f\xfa\xd7\xff\xf4\xaf\xff\xe9\x5f\xff\xd3\xbf\xfe\xa7\x7f\xfd\x4f\xff\xfa\x9f\xfe\xf5\x3f\xfd\xeb\x7f\xfa\xd7\xff\xf4\xaf\xff\xe9\x5f\xff\xfa\xf7\x9f\xcb\xf3\xd5\xff\x74\x7d\xfc\xe9\xfa\xf2\xb4\x6e\x1b\x84\xda\x35\xe8\x3a\x80\xf5\x1a\x74\xdd\x49\x37\xe8\xba\x93\x79\xd9\x51\x2b\x64\x75\x1d\x5d\xeb\xb3\x81\xf3\xbc\x96\xa7\xf5\xd8\x0f\xff\xa3\x5a\xc6\xed\xd1\x5a\xe4\x0f\xa8\xa9\x0b\x1b\x8b\x22\x4c\xe1\x1a\x84\xe5\x43\x03\x5e\xcb\xc6\xba\x24\x80\x2e\xab\x34\x14\xdb\xb2\x3c\x75\x54\x2f\x0b\xd7\xb2\xb1\x8e\x13\x5f\xf5\x35\x59\x6a\xb0\x17\xae\x65\x63\x1d\xc8\xd9\x87\x6b\xd9\x58\x07\x55\x68\xc3\xb5\x6c\xac\x83\x22\xb1\xe1\x5a\x36\xd6\x41\x7d\xdc\x70\x2d\x1b\xeb\x38\xfd\xb4\x97\x8d\x75\x9c\x2c\xeb\xd7\xb2\xb1\x0e\x2a\xd4\x86\x6b\xd9\x58\xc7\x69\x3b\x97\x8d\x75\x50\xb9\x37\x5c\xcb\xc6\x3a\xa8\x88\x1b\xae\x65\x63\x1d\x27\xd8\xe1\x5a\x36\xd6\x71\x5e\x3e\xa1\x73\xc4\x28\x2d\x1b\xeb\xa0\x52\x70\xb8\x26\xfd\x03\x9d\xa4\x8d\xfe\xe1\xc5\x4b\x9b\xfd\x0b\x1c\xd9\xbf\x93\x23\xfa\x87\xeb\x25\x6d\xf4\x0f\x8b\x32\x6d\xf4\xef\xf2\x2e\xf6\xef\xe0\xc8\xfe\x65\x8e\xe8\x1f\x9b\x58\xda\xe8\x1f\x74\x57\xda\xec\xdf\xce\x91\xfd\xdb\x38\xfa\x3d\x75\xd3\xd6\xff\x1c\x8d\x3f\x47\xbf\xe7\x67\xda\xe9\x5f\xa6\x47\xfb\xfe\xe7\xbf\xe3\xcf\xd1\xf5\xe7\x28\xb1\x19\x45\x8e\x6e\x8e\xbc\x4b\xe6\x88\x91\x58\x96\xd3\xd4\x44\x48\x7b\xfd\x73\x97\x3f\xad\xde\xff\xb4\x7a\xff\xd3\xea\xfd\x4f\xab\x8f\xed\xcf\xd1\x9f\x56\x1f\x7f\x5a\x7d\x84\x3f\x47\xf1\xcf\xd1\xf9\xe7\xe8\x4f\xff\x8e\xf4\xe7\xe8\xfe\x73\x94\xff\x1c\x95\x3f\x47\x95\x6d\x69\xf6\x01\xf1\x99\x96\xf9\x74\x52\xe6\x20\xa4\xe5\x7b\xed\xf7\x59\xfb\xc0\xb1\x92\x0e\x0a\x19\x05\xff\x9f\xfc\x7f\xf6\x49\x24\x6e\x42\x4e\x34\xe3\x35\x4f\xcb\xc4\xea\xf7\x75\xf4\x09\x33\x90\x02\xae\x18\x36\xfb\x14\xa8\x49\x13\xfd\x2f\x72\xb7\xab\x37\x5c\x5f\x69\x99\x5a\xfd\xbe\xce\xde\xba\xe7\x5c\x64\x35\xf0\x7e\x96\xb9\x95\x0a\xc9\x1e\x29\xdc\xcf\xf5\x06\x01\xa4\xe5\x78\x4d\x54\x39\x0c\x29\x90\x11\x51\x6d\x29\x05\x9a\xba\x4f\x1a\x5c\x9b\x7b\xbb\xbd\xdb\xda\xe0\xa9\x39\x12\x52\xa4\xce\x4e\xf7\x88\x3a\x3b\x30\x13\x09\xf9\x51\x13\x73\xd2\x32\xbb\xe2\x8e\x43\x30\x51\xc8\x8e\x4a\x4c\x21\x45\xfa\x73\xa6\x4e\x9d\x9a\x90\x90\x27\x95\xe6\x4e\xc8\x93\x2e\x1e\xea\x3f\x97\xed\x84\x72\xa9\xb2\x3a\x69\x59\x6c\xfd\x3e\x63\x9f\x44\xbf\xa6\x65\xb5\xf1\xa0\xe9\x2f\x0b\x04\x54\x5f\x0c\xea\xa6\xf5\xb2\x91\xcb\xcf\x1c\xb0\xca\x53\x1c\xcf\x30\x9a\x4e\x9b\xe2\x7c\xa6\x41\x83\x35\x4d\xa8\x9c\x56\x3c\x7f\x89\x9a\x0c\x91\x45\x3d\xa1\x72\x4a\x59\xc6\x90\xce\x3f\x53\xfa\x8c\x4f\xbb\x28\xa3\x18\xd2\xf9\x67\x5a\x53\x97\x21\x3e\xd7\x5a\xb6\x87\x81\x3d\xff\x4c\x6b\xe4\x4c\x1b\xfe\xa9\x74\x7e\xfd\x6d\xb6\x02\x4a\x01\x6a\x2e\x21\x69\xda\xb0\x9a\xd3\xe9\xb4\x3e\x7a\xbb\x7d\x12\x6c\x3c\x80\x30\x9d\xf6\x77\xef\x66\xd9\x25\xa4\x4d\x1b\xd8\x24\x21\x6d\xda\x70\x33\x25\xa4\x4d\x1b\x1e\xd9\x74\xfd\xe9\x2f\xd2\xa6\xd4\x56\x0e\x09\x69\x53\x2a\x34\x87\x84\xb4\xe9\x70\xe9\x5e\x5e\xde\x78\xee\x5e\x77\xbf\x1f\x9e\x3d\x40\xde\xb4\x9f\xfe\x5f\xbe\x0f\xd3\xe7\xae\xfe\xf6\xdb\x16\xae\xfe\x9a\xa8\x9d\x2e\xa6\xba\x63\xb5\xbc\xbd\xc9\x08\x97\x84\xfc\xa9\x74\x5c\x4a\xd8\xb1\xe7\xd6\x8d\x61\x48\x89\x4f\xf8\xbc\x7b\x73\xb6\x21\x83\xaa\xe7\x3a\xad\x38\x94\xd0\x5d\x4c\x91\x41\x95\xce\x4b\x89\xe9\x1e\xcf\x3e\xa7\xd7\x5e\x5c\xeb\xff\x89\xcf\x7b\xeb\x13\x17\x45\x4a\x7f\xde\x71\xca\xcf\xb3\xbb\x73\x2b\x95\xf7\x17\xb6\xdf\x84\x2c\xea\xc0\xe1\x91\xd2\x9f\x25\x7a\x79\x88\x63\x80\x00\x4e\x49\xe7\x0b\xb3\x1c\x59\xd4\x01\x8a\x4b\xb7\xa1\x9e\x1e\x91\x80\x85\x47\x3a\xdd\xf1\x79\xa6\x9e\xee\x44\x04\x7e\x76\x91\x42\xfe\x74\x66\xaf\x4d\xcf\xd9\x26\xaa\x27\xbc\xc8\x13\xf7\x50\xba\xf3\x33\x26\x68\xee\x85\x74\x97\x17\x1b\xb8\x91\x2e\x6f\x72\x7c\x36\xd2\xe5\x4d\xee\x77\xec\x7d\x5e\xb6\xa8\xbf\xe3\x06\x11\x96\x94\x44\xf5\x4b\xb9\xe7\xb7\x98\x31\xee\xcb\xb3\x3c\x8b\x86\x81\x92\xa9\xe0\xa8\x44\xf5\xf1\xcd\x99\x97\xff\xcc\x5f\xe4\x54\xcd\x0f\x4c\xd9\xe5\xf8\xee\x8d\x18\x93\xb4\xbc\xcb\xac\x0c\xb8\x4f\x12\x5e\x64\xbd\xe4\x29\xdb\xb7\xdc\xa7\x9b\xef\xf2\x24\xc7\xfc\xb4\xab\x3d\x2d\x1d\x38\x04\x53\xee\xcf\x96\x24\x8b\x92\xf2\xbb\x34\x8f\x61\x8b\x97\x7b\x51\x85\xb8\x84\x94\xea\x86\xf9\x97\xca\xbb\xe5\x0c\xb0\x7c\x42\x4e\x75\xdf\xfc\x7f\x79\x20\x76\x5c\x93\x69\xf9\xa7\xcf\xdb\x2d\xa1\x9c\x4f\x6b\x75\xab\x24\x74\x82\x9e\x55\xaf\xa4\x77\x5c\xb3\xf7\x46\xad\x7b\x78\xef\xf7\xdd\x8a\xf2\x12\x91\x35\xc7\xee\xd9\x6e\xb7\x57\xd7\x49\x9c\x0a\xf9\x9e\x9a\x68\xe5\x5d\x97\x86\x1b\x5c\x19\xef\x2f\xd9\x5f\xd6\xb6\x14\xd3\xbf\xe2\xaa\x13\x01\x38\xc2\xf8\x54\xfd\x8c\x4b\x1f\x58\xa3\xe9\x81\xa4\xb3\x77\xe0\x7c\x5a\x90\x34\x3e\x9f\x6a\x8d\x6f\x67\x9c\x0c\x04\xe3\xc4\xe1\xf5\x6b\xa9\x0e\xda\x85\x95\xa1\x49\xa3\xf7\x9b\xc1\x7a\xa0\xe9\xd1\xbb\xaf\xa6\xe6\x67\x22\x23\x80\x1f\x52\x2d\xef\x02\x81\x37\x2c\xd5\xd7\x22\x91\x28\x4b\x04\xe8\xe8\x21\x4e\x0b\xa6\x5e\x8a\x02\xa5\x3a\xde\xa7\x12\xa4\x93\x2a\xbb\x36\x64\x4b\x22\x48\xe7\x8c\x1e\x21\x3a\xe3\x47\x8c\x4a\x6b\x70\x22\x2c\xa8\xda\xef\x18\xfa\x63\x09\xb6\xb7\xff\xcf\x36\xb8\x20\xeb\x42\xbc\xeb\x88\xa9\x1f\x5b\x37\xdd\x3a\xb5\xf4\xf6\xcf\xc5\x09\x69\xd6\x23\xf9\xfc\xf5\x69\x1c\x8e\xdf\x82\xae\x77\x70\x6a\xb4\xcf\x12\xbb\x3d\xbb\x3d\x9f\x96\x09\x19\xa9\xf5\xe7\x1d\x4e\x18\x80\xd4\xc6\xfb\x8b\xcb\x4f\x9b\x6f\x1b\x08\x8b\x4c\x0b\xce\x06\xd3\x38\x12\x52\xae\xc1\x8f\x7d\xc1\xd9\x53\x21\x9c\x84\x94\x6b\x20\x4c\x2a\x2d\x38\x1b\x4f\x2d\x93\x7e\x7e\xad\xf1\x7f\xde\xbf\x96\xd6\x1f\x48\x9b\x90\x73\x0d\xda\x8c\x3d\x7f\x9b\x15\x23\xd9\x51\x10\x73\x8b\x41\xd2\x55\x3c\x95\x16\xac\x5d\xbc\xd5\x3a\xfa\x2c\x50\x62\x36\x12\xb2\xae\x11\xfc\x93\xfa\x7c\x8d\x15\x37\x24\xa4\x5d\xf5\xaa\xa7\x85\x61\x43\xb7\x25\x0b\xc3\xc6\xf8\x9c\x89\x5c\x98\xb3\x13\x2e\x20\x42\x23\x27\xb2\x12\x8c\x28\x4e\xe3\x8f\xb5\x3d\xd2\x37\xea\xb4\x72\x7c\xdb\x75\xf2\x6e\x5f\x9f\xa3\xcf\x5e\xef\x3b\x12\x83\x93\xc6\x1f\x64\x81\xa8\x92\x92\x9e\x69\xe1\xd9\x18\xe1\x67\x12\xa2\x4a\x51\xcc\x83\xa8\xd2\xd3\x83\xb9\xbd\x66\x8f\xd7\x2e\x4c\x1b\x0f\x22\x22\xd2\x3c\x3e\xb3\xc8\x5f\xd6\x37\x7e\xda\x26\xc5\x95\x82\x77\x3b\x41\xce\x8c\xf3\xc2\xb5\xf1\x3c\x3c\x13\xf3\xc4\xed\x52\x71\x25\xbf\xd9\x85\x6b\xa3\xa9\xef\x69\xe1\xda\xcb\xf8\xee\xf4\x64\x31\xf8\x1f\x73\xfa\xda\xfb\x70\xf1\x9e\xfd\xfd\x05\xf7\x5c\x52\x64\xc9\xaf\x6c\xfa\x7e\x5b\x6f\x38\xc0\x6e\x33\x1a\xf0\x35\xdc\xdb\xfe\x7c\xa5\x4a\x12\xdc\xdb\xf1\x5e\x01\xfd\x7b\x6f\xe1\xfd\x05\x6a\xfc\xde\x98\xdb\xe0\xeb\x9b\xec\x86\xeb\xf0\xfe\xd7\xfa\xca\xa3\x47\xe9\x5d\xb2\x8b\xf7\x5f\x21\xb3\xe6\x59\xde\x5b\x7e\xee\x3d\xb3\x77\x23\x98\x92\x35\xf5\xde\x7e\xbf\xe7\x7b\x6b\xef\x06\x3a\xbd\xbf\x8a\xd3\x9e\xcd\xf7\x1c\x6b\x6f\x87\xf7\x47\x75\x1a\x77\xdf\xad\x40\x13\x28\xe4\x7e\x54\x98\x26\x47\x14\xc6\xb8\x3c\x93\x08\x97\xeb\x5f\x81\x85\xf7\xa2\x1f\xae\x1b\x47\xc0\xbd\xe8\x87\x78\x3d\xb7\x7c\xbd\x8b\x1d\x78\x77\xef\xf9\x5d\x9e\x71\xd3\xdc\x7b\xf9\xce\x89\xfc\x02\x57\xcc\x0e\x77\x93\x14\x71\x83\x2d\xee\x05\x9a\xe3\x85\x1d\x72\x4b\x29\x10\x6f\x7c\x1f\xfb\x73\xa7\xe9\xf3\xe1\x0e\x32\xb6\xc6\xfd\x07\x1c\xdf\x7f\xc0\xf1\xfd\x07\x1c\xdf\x87\xd5\xdd\xbc\x0e\xb5\x6c\xe2\x58\xee\xe3\x7e\xed\x83\xc3\xe7\x12\x9d\x33\x3c\xdb\xfe\x8c\xde\x61\x0d\x6e\x41\xf2\x39\xfa\xa8\xde\x7f\xf5\xa9\xd8\xa7\x83\x82\xb3\x7c\xa0\x37\x49\x12\x3b\xa8\xeb\x26\x40\xa9\x10\x17\x7a\x87\xed\xbd\x13\x0e\x94\x3b\x00\x24\x87\x47\xc7\xf3\xbf\x76\xdd\xbd\x00\x72\x4c\x58\xd7\xf7\x03\x90\x7f\xfe\x67\xfa\xc0\x45\xec\x10\x98\xb7\xe9\xdd\x9b\x47\xc4\xc7\x92\x5c\x74\x3f\xe0\xf8\xec\xc8\xfd\x87\x3b\xe4\xe7\x97\x8e\xb5\x71\x9b\xe6\x1d\xbc\xe2\xcf\xd4\x35\xcd\x3b\x7a\xb4\xa6\x6d\x29\xb6\xfb\xb3\x52\x92\xed\x96\xb3\xe0\x49\x46\x27\x41\xc1\xde\x44\x27\x15\xd2\x6b\xee\x78\xbc\xf6\x70\xf7\x97\xd5\xe7\x0b\x17\xcc\x4d\x84\xd2\x1d\xfd\x0f\xc5\xed\xe7\x4e\x5a\x9f\xb3\x2b\x6c\x7a\xc7\xf4\xfe\x72\x7b\xc5\xfd\x9a\x08\xdd\x73\x7e\xfa\x1d\xb4\x1e\xef\x07\x29\xff\xdc\x83\x51\xa6\x6a\x61\x03\x11\xdd\xb1\xbd\xff\x63\xf3\xdd\xb1\xbf\xbf\x38\x1f\xa8\x5e\xd8\x21\x48\x6f\xaa\x17\x76\x08\xfc\xfb\xdc\x9e\x05\xc4\x64\xa3\x1b\xb4\xdc\x30\x51\xee\xd3\xc0\x3b\xde\x19\x15\x0c\x3b\xe4\xea\xbd\xd0\x72\x10\x75\xdc\xe7\xf9\xf5\x84\xb9\x7a\x2a\xdc\xc5\x5b\x38\x5f\x34\xd5\x5c\x1c\x4f\xfa\x1e\x63\x37\xd7\xf5\x3e\xf3\x6b\x94\x61\xa1\xde\x0b\x39\x87\xea\x0c\x3a\xeb\x73\x0f\x33\x3c\xee\xb3\x3d\x0b\x5c\x77\x5e\x51\x10\x44\xf9\xcf\x9b\xaa\x87\x83\xd8\xf8\x9b\xaa\x87\x06\x69\xde\x97\x62\x5e\x8c\x04\xb1\x51\x87\x6f\x81\xaa\x87\x13\x7e\xe8\xa6\xea\xa1\x4a\x2e\xf7\x15\x3f\x5c\xc8\x5b\xba\xce\x67\x9b\x30\x2f\xf8\xa6\xfa\xe1\x2c\xfe\x4f\x8a\xb9\x63\x2e\x7a\xbe\xee\x3e\x60\xcd\xee\xcb\x75\xeb\xe8\x14\xb4\x08\x37\x55\x10\x29\x22\x11\xee\xeb\xcf\x5c\xbf\xda\xb3\x46\x18\x32\x7b\x5f\xef\x36\x45\xd5\xa5\x70\x5f\xe3\x5b\x09\x79\x93\x0b\x49\x9f\xc3\x85\x5d\x24\x1d\x5b\x47\xd9\x3d\xdc\x54\x45\xd4\xbc\xbe\xd3\x6f\xc7\xdf\x9d\x34\x3f\xef\xae\x2c\xee\xbd\x90\x74\xc8\x88\x64\xdc\xe9\xfc\x4c\x28\xc6\x9d\xf8\x2a\xb5\x5a\xee\x07\x49\xff\xb4\x8f\xb7\x94\xee\x6f\xd5\xa2\x0f\xc4\x59\x89\xcc\x6e\x91\xf4\xcf\x15\x97\x57\xd4\x77\x2b\xde\xfe\x25\x37\x75\x13\x8a\xb5\x15\x3b\xfb\x0e\xcf\x74\xa9\xb2\x62\x22\xda\x62\x77\x9a\xef\xad\x71\x93\xdc\xa4\xc2\x6f\xe8\x44\xdc\x2b\x5c\x6b\x96\xc3\xff\x08\x28\xc2\x31\x72\x5b\x35\xd1\x49\x6e\xd5\x44\xef\x4b\x1d\x92\x86\x0d\x7a\xdf\xd7\xfb\xda\xa0\x16\x6f\xc1\x78\x4c\x9d\xa2\x57\xe1\x26\x25\xfe\xd8\x7c\x2e\xe2\xae\x4e\x12\x52\xe2\x0f\x28\xbd\x9b\x94\xf8\xc3\x97\x27\x08\xff\x59\x2c\xdd\xf8\x1e\x10\x7e\xf4\xd1\x6c\xf7\x3b\x25\x9e\x05\x4a\x20\x7e\x1d\x7d\xfa\xf1\xe4\xed\xbd\x8f\x0b\x40\xde\x1f\xe4\x41\xc9\xb0\x70\x5b\x55\xf1\xf0\x0a\x54\x17\x2e\xcf\x8e\xef\x53\x87\x67\x9f\xef\x33\x86\xe7\x2c\xc2\xb0\xf8\xd9\xe5\xf4\x5d\x41\x5f\xf2\xb7\x05\xe2\x88\xb9\x17\x68\x8f\xd9\x8f\x2d\x3b\x0e\x8c\x71\xae\xdf\xfd\x6d\x91\x9f\x47\xe8\xc6\xba\xdf\xf9\x1d\x0b\x95\x5b\x6e\xab\x31\x26\xdb\x40\xa4\x84\xdb\x3e\x80\x7d\xb8\xc0\x90\x46\x4f\xe9\xde\x70\x13\x4c\x76\xe2\x88\xbb\x09\x26\x8b\xce\x0b\x82\xc9\x28\x9a\x1c\x6e\x04\x7d\xe7\xf4\xbf\x65\xad\xca\x1d\xdd\xe5\xfd\x1c\x06\xd1\xd5\x77\x79\x97\xc2\xe1\x52\x57\x5e\x53\x66\x10\xa5\x71\x2f\xb0\x1e\xb3\xdb\xd0\x02\xeb\x97\x59\x76\x37\x91\x65\x57\xb2\x07\x8b\xea\xbe\xb2\xcf\x1e\x0b\x73\xfa\x19\x59\x99\x11\xcc\x76\x4b\x0c\xaf\x0f\x97\x1e\x56\xd2\xb9\xb5\xe1\x16\x0a\x1f\xd1\xe5\x13\x29\xe0\x7b\x7a\xe6\xaf\x77\x4d\x9f\x21\x86\x2f\xb7\x1d\x88\x61\xd5\x03\xef\x85\xc0\x23\xf5\x05\xc3\x5d\x5f\x44\xd2\x88\xd0\xba\x1f\xf4\xbd\x75\xc5\x62\x6f\xd1\xf7\x99\x7b\x73\x6b\x12\x7d\x5f\xb1\x37\xb7\xe7\xda\xde\x5f\x9c\x2b\xf5\x73\x52\x74\x9f\x35\xbe\x2d\xce\x73\xe6\xb3\xf8\x19\x91\x72\x13\x9d\x96\x9c\xe1\x20\xf1\x0b\x44\x77\x37\xf3\x43\x19\xcd\x85\xc4\xa3\x3a\xf7\x77\xc3\x52\x77\xd1\x5d\x08\x3c\x3e\x73\x45\x04\xfe\xd3\x12\x0d\x28\x6a\xf1\x53\x0b\x28\xdc\xa4\xe6\x57\xbf\x67\x2a\x3c\x26\x3c\x07\xf7\x1f\xe2\xf8\x6e\x6f\xbf\xcd\x3d\xb8\xc9\xa9\x49\x20\xd4\xfb\x49\xdd\xb7\x2f\xe3\x3d\xdb\x2f\x8e\x4a\x8f\x09\xfe\xec\x36\xe7\xc6\x85\x7c\x21\xee\x73\x73\x13\xef\xc7\x33\x32\x8d\x30\x8d\xbb\x87\xef\x17\xde\x24\xb9\x37\xc9\x15\x8b\xdc\x9b\xe4\x1a\x45\xee\xcd\x83\x07\xc8\xbd\x91\xad\xb9\xc9\xbd\x49\xcd\x27\xd1\x5f\x32\x40\xee\x4e\x40\xa5\xf3\xa8\xd7\xd7\x18\x74\xd6\x92\x9b\xf3\xe0\x10\xa4\x89\xa3\x73\xbf\xdb\xdf\x1f\xd3\x91\x59\xfd\x8b\x35\xfe\xef\x6d\x82\xd4\x9d\xe4\x84\x1e\xfb\x7b\x23\x1c\x10\xf7\x78\x2d\xde\xae\xe5\x38\x78\xfd\x4e\x2d\x52\x78\x6e\x00\xea\x4d\x0a\x8f\x51\xf5\x37\x29\x3c\xc6\xa4\xde\xa4\xf0\xdc\x78\x48\xef\x05\xc8\x83\x0a\x84\xf7\x78\x41\x5a\x77\x6a\x2c\x30\x1e\xfa\xe9\x53\x74\xbe\xfc\x80\x50\x06\x68\xb8\xdc\x6f\x5d\x31\xff\x7b\xf4\x67\xc8\x8c\x70\xbe\x09\xe6\xbb\x9b\xed\x5e\x53\xe0\xf6\xa5\x12\xcc\x77\x93\x7d\x7a\x13\xcc\x77\x37\xff\x5b\x4e\x88\xe2\x42\x39\xc3\xeb\x58\x11\xf2\xcd\xf8\x59\xc4\xf4\x14\x60\x7e\xe2\xa5\xbc\x09\xea\xbb\x5d\xfe\x09\xea\xbb\xdd\x56\x09\xea\xbb\x5d\xa8\x09\xea\x0b\xc9\x56\x10\x35\xe5\x92\x3d\xeb\xfb\xf1\x1c\xfe\xf2\xd3\xe7\x58\x09\x32\xbc\x1f\x60\x7e\x3d\x4c\xc0\x3d\xc7\xf3\x4b\xc7\xfd\x74\x13\xe0\x97\x79\xbb\x79\xb3\x08\x45\xe3\xc8\x14\xe9\xca\x11\x69\x5a\x2c\x33\x99\x00\xbf\x82\x73\x25\x6f\xf1\x1d\xd9\xc3\x3b\xe9\x68\x8b\x1c\x5d\xef\x12\xc4\xb4\xcf\x82\xf2\xeb\xea\xb3\x7b\x05\x69\x67\xc3\xfb\xa3\x74\xc3\x76\x97\xb7\xf2\x9e\xbd\x79\x36\x91\x58\xd3\xfb\xaf\x7e\xab\x1b\x93\x09\xf8\xab\xbb\xff\xa1\x76\x83\x5d\x9a\xb7\xcf\x8c\x21\x83\x21\x93\xfa\xa3\x46\x5e\x36\xe8\xef\x39\xfa\xe9\xf3\x5a\xcf\xd6\xd1\xf7\x99\xe3\x2e\xcc\x04\xfe\x29\x39\x9c\x09\xfc\x53\x56\x38\xef\xf6\x39\x75\xea\x81\x86\x4c\xc5\xca\x42\x4e\x47\x16\x99\xc7\xab\x1b\xa6\x9c\x09\x00\x34\x3b\x24\xef\xaa\xdf\x30\x02\x54\x7e\xa9\xcc\xb8\x4c\xe5\x17\x15\xed\xf3\xde\x9f\x27\xa9\x1a\x9e\x91\x2a\x10\x2d\xe5\x7d\x3e\xff\xab\x07\x9e\x8f\xed\xb1\xae\x55\xbb\xc9\x22\xf7\x9f\x5f\x60\x9c\xf2\x71\xbc\x8e\x0e\xe6\x69\x3e\xc2\x7b\x0e\x2e\xa5\x7c\xc4\xf7\x17\xb6\xdc\x7c\xa8\x34\x49\x1f\x0e\x95\x26\x3d\x3b\xbd\x67\x3b\xbe\x87\x01\xac\x9e\x6d\x1a\x9b\xff\x95\xaf\x8d\x5e\x5f\x5f\x4c\x00\xf3\x98\x8f\xf6\x6e\x5b\xce\x52\xe9\xee\x9f\x73\x82\x57\x59\x69\x35\x73\x34\xdf\x5e\x61\x68\xe4\xf0\x8e\xc5\xc0\x49\x9c\x8d\x2a\x04\xf9\x66\xa2\x0a\xf5\xdd\x67\xa4\x0f\x06\xb1\x90\x19\xe9\x83\x81\x5b\x29\x2f\x24\x1f\x9f\xbe\x21\x7d\x30\x70\x7a\x67\xa4\x0f\x06\x5b\x72\x7e\x90\xfc\x0f\x3a\xf2\x6c\x82\x77\x71\x99\xe5\x00\xa2\xbb\x6c\x41\x5d\x38\x62\xd8\x82\xd7\x01\x35\xc9\xe8\xc8\x0b\xc9\x47\xd3\xe3\xf2\x42\xf2\xc1\x0d\x25\x87\xf9\x1a\x7a\x70\x68\x39\x5a\xe4\x83\xb3\xa3\x45\x3e\x98\x37\x0b\xc9\xc7\x8a\x51\x94\xa3\xa6\x5b\xfc\xc7\x16\x91\x63\x7c\x17\x40\x87\x82\xe0\xc4\x49\x60\x66\x16\xe4\xa7\xd1\xc7\x6e\x23\x4c\x26\xe1\x15\x44\x52\xd8\xd9\x1f\x73\x24\x62\x1d\x70\x9b\xa3\xc9\x24\x74\x9e\xe0\xc5\x5c\x6d\xee\x67\xd9\xdc\xde\x97\x7c\x81\x69\x2b\xf0\xbb\x26\xef\xfb\x3b\xa2\x23\x9f\x8a\x0c\xd1\x82\xd3\x68\x00\x3e\x28\x54\x16\xa6\x1f\xa2\x45\x3e\xf1\x7f\xe6\x05\xe8\x63\x75\x78\x05\xf4\x3f\x60\x9c\x6d\x29\x9f\xaf\x45\x23\xa8\xcc\x50\xe0\x3b\x5e\xe5\x7c\x7e\x9c\x0a\x30\x33\x3f\x80\x7e\xeb\x86\xae\xe6\x87\x0a\xff\x81\xba\x4c\x08\xa8\x70\xcb\x55\xe5\xf3\x05\xb7\x13\x1b\x34\x4b\x87\xff\x2c\x26\xd3\x5f\x28\xa8\xe0\x98\x9e\x2f\x8a\x79\x3e\xcd\x6b\x7b\x26\xc6\xc0\x6a\xcb\xea\xc6\x39\x22\x24\x3e\x05\x68\xef\x7c\x85\xd7\x8e\x05\x53\x64\x92\x9f\x0e\xb6\xa9\x7c\x59\xec\x8a\xd6\xaa\x1d\x47\x3e\x6a\xbe\x5e\xf4\x22\x4c\xcd\x0f\x35\xbe\xbf\x1f\x21\xd4\xf8\xe1\x7c\x59\xc0\x3e\x28\xbd\x90\xad\xfc\xc9\xa6\x96\xa1\xc5\x4b\xb4\x5d\x48\x93\x62\x99\x65\x01\xfd\xcf\x7d\x93\xff\xcf\x77\x6c\x1d\x6d\xaa\x83\xee\x8e\x42\x7a\x7d\xcf\x93\x68\x8f\x0c\x35\xbe\x61\xfb\xe7\x07\xd4\x5f\xbd\xf9\xc6\x93\x5b\x7b\xef\x4a\x8a\xe5\x05\xec\xc3\xc0\x34\xc8\xe9\x7a\xaf\xc0\xc6\xcd\x02\xfb\x1f\x4b\xed\xf0\x19\xf7\xfb\xd4\xa7\x55\x3a\xb4\xe8\x63\x7a\x39\x35\x4a\x34\x87\x9c\x3e\xda\xd1\x6f\x66\xa1\xf7\xa0\x2e\x77\x16\xbd\x2f\x16\x8e\xf7\x93\x5e\x8b\xbe\x75\xcf\x71\x2c\x52\xb7\x9c\x44\x5e\x08\x3e\x58\xc2\x2b\xdf\xef\x58\x28\xd5\x9b\x49\xba\x4a\xa7\x67\x87\xcf\xdc\xa0\x67\xd2\xea\x31\xf6\x89\xb3\x34\xdf\xe7\x8b\xd1\xf0\x2b\x64\x11\xfd\xcf\x39\x60\xec\xfc\x20\xfa\xb3\xb7\xea\x2f\x70\x11\x9b\xed\x78\x39\x46\xa3\xfb\xf3\xfd\xdb\xd2\xcf\x0b\xd5\xdf\x26\x2e\xe6\x07\xd5\x1f\x0f\x7f\x98\x45\xf5\x3f\xa6\xe2\xe5\x39\x2f\xaa\x1f\xa0\x97\x7c\xbf\x51\x4f\x1a\x87\x59\x54\xff\x73\x8e\x63\x2e\xaa\x3f\x5b\x37\x85\x31\x67\xb8\x27\x8d\x8e\x1c\xde\x76\x62\x73\xe7\x07\xd9\x5f\x5d\x49\xb9\x9c\x5f\xa7\xcf\x04\x01\x67\x2a\xf6\x24\x5c\x48\x79\x21\xfb\x15\x44\xb5\x8e\x96\xc9\xdb\x40\x60\x79\x21\xfa\xd0\x71\xd2\xe5\x85\xe8\xcf\xdb\x2f\x28\xbf\xf3\xa1\x3b\x67\xa8\xda\x73\x6b\x9e\x2d\x34\x1f\xb7\xd3\x6b\xc7\xd3\xd2\x89\x63\x38\xe7\xf7\xbb\x78\x36\xf7\xf2\x85\x8d\xb8\x96\x4a\xc3\xff\x18\xd0\x20\xb9\x5c\x8e\x17\x91\x1e\x5e\xb5\x42\xa0\x2d\x2f\x93\xa1\xe2\x2f\x57\x29\xa9\xf8\x33\xf7\xa1\xd1\xb7\x10\xfe\x79\x69\x72\x88\xf0\x63\xe8\xf3\x9f\xaa\x8f\xf9\x01\xff\x47\x9f\x4e\xac\x07\xfc\x87\x6e\x02\x4c\x2e\x7f\xa6\x49\xf9\x9c\x1e\x38\xb4\x32\x0e\x00\x63\xa4\xf2\x72\x00\x44\x7d\x7d\xb9\x90\x1c\xee\x1e\xb9\x1c\x00\x41\x89\xd7\xfc\x38\x00\xf6\x6e\xa2\x7e\x36\x32\x1c\xb0\x97\x1f\x1a\x7e\xef\xcd\x09\x57\x7f\xf3\x1c\x99\xc8\xf0\xe7\xa3\x5b\x0e\x80\x38\xdd\xde\xea\xf5\x4c\xc4\x67\xa9\xaf\x58\x89\x5a\x72\x3a\x01\xe2\xf6\xda\x65\x9f\x13\x60\x3a\xec\xcb\x09\xb0\xe6\xcb\x3a\xaa\xef\xff\x9b\xcf\x68\x6f\xfb\xb4\x89\x89\xad\x8f\xc1\xd6\x2e\xe7\x87\x25\xba\xf2\x03\xfc\xb7\x77\x19\x68\xdf\x56\x81\xaf\x35\xb7\xfd\x73\x44\x70\x0f\xa8\x78\x83\xeb\xf2\x43\xc5\x6f\x7d\x68\xa3\xe2\x04\x30\xa1\x2b\xa3\xcd\xb7\x41\xee\x65\xb5\xf9\x7c\x8b\xcb\x01\x10\x4d\xda\xcf\xcb\x01\x10\xa7\x4b\x43\x7b\x7d\xdf\x8f\xcd\xd8\xca\xfb\xd9\x3a\xa2\xcb\x11\x10\x95\x07\xc8\xe8\xf7\x6d\x87\x67\x2f\x27\xc0\xe6\x47\x84\x7e\xdf\xe6\xa6\xb5\x1c\x00\x71\xe2\x8a\xc9\xcb\x01\x10\xa7\x36\x97\x0e\x00\xd1\x0e\x94\xbb\x99\x09\x19\xfd\x3e\xab\x05\xe5\xfe\x6b\x7b\xf0\xda\xf3\x5b\x7c\x18\xe1\x7e\xbd\xbf\x40\xb1\x66\xb4\xfc\xba\x5b\x5c\xff\x90\x01\xca\x28\xb9\x7f\x8e\xae\xdb\x7b\xac\xe5\xc0\x8a\x9c\x79\x39\x03\x4e\xd3\x9f\x72\x7f\xdf\xb7\x9c\x5f\xee\xd0\xd1\x04\x3b\x66\x9d\x01\x3f\xf3\xc1\x6d\x4e\x0a\xfe\xe7\x17\x3f\xce\xb1\x7d\xbf\x30\x3e\x54\x58\x15\xe3\x67\x51\xff\x8f\x41\xe0\xf7\x34\xc2\x73\x85\x11\x8c\x79\x21\xff\xf3\x80\x27\xcb\x0b\xf9\x9f\xd6\xac\xca\xe3\x7a\xbe\xe7\x67\xab\x1e\x68\x32\xba\x1c\x8d\xdf\x51\x64\x79\xa1\xff\x78\x3d\xcf\x5e\x41\xa0\xfb\xed\x73\xeb\xbb\xc5\x3f\xbf\xb4\x67\x65\x68\xe2\x84\xf1\x3a\xbc\x0c\x2b\xcd\x63\x3c\xdb\x52\x1b\xb6\x68\x45\x24\x65\x37\x4b\x69\xf9\x15\x4c\x42\x1b\xe6\xef\xa0\xdf\xbc\x3c\x00\x61\xc0\x2d\x64\x84\x05\xa3\x5f\xe0\x44\x87\xc8\x6f\x6d\x21\xff\x14\x61\x67\x33\x4a\xe7\xc1\xef\x00\x4a\xfe\x41\x7c\xf3\x35\x0d\x9f\x95\x65\xe6\x6f\x51\xf6\xb9\xeb\xbd\x5b\x98\x24\x2f\x0f\x40\xb0\xfc\x5b\x46\xf1\xfc\x70\xb1\x16\xfd\xff\x5c\xdb\x6c\xd7\xc0\x07\xe1\xd9\xef\x77\xae\x71\x5d\x16\xfa\x3f\x23\x5f\x65\x79\x68\xf9\xe3\xd9\xb8\xcb\x86\x39\xb0\xfb\xff\x42\x07\xc7\xe9\x11\x75\x43\xd9\x1a\x8b\x29\x7e\xdd\xff\xd6\xf7\x9d\x6e\x8f\xd6\x7b\x4e\x18\xe5\x65\xa1\xfe\xa0\x70\x43\x59\xa8\xff\x54\xa4\xa6\x2c\xd4\x7f\x16\x46\xb5\x6c\xf5\x33\x41\xaf\x7f\x6c\x17\x45\x96\x7e\x59\x50\x85\xcb\x3f\x0b\xe9\xf2\xd1\xe3\xfd\x85\x5d\xb3\xa0\x09\xa2\x48\x6f\xc1\x31\x20\xd6\x28\x68\x82\x14\xec\xc6\x02\x53\x6f\x61\xba\x82\x26\x48\x81\xd6\x2a\xfb\x1b\x03\xdd\xc9\xc1\x2d\xfb\xf9\xee\xd6\xd8\xd3\x65\xff\xac\x44\xc8\x9c\xb2\xa7\xe7\x75\x09\x35\xcb\xce\xd0\x4c\x8f\x16\xcf\xa1\xdb\xa6\x2c\xe7\x40\x8a\xd1\xbb\x55\xda\xed\x9d\xda\x63\xe7\x8d\xdb\xff\xd7\xb2\x57\x6e\xff\x1f\x1f\x7a\x48\xfc\xf2\x7d\xfe\x6c\x95\x85\xf2\xb1\x81\xe5\xa3\x1c\x48\x70\xf1\x79\x15\x1d\x03\x3f\x16\xdd\xe6\xd9\x6b\xfa\xef\xb6\x6d\x39\x05\xa2\x7a\x29\x45\xbd\x43\x00\x66\x39\x3e\x7e\x07\x2b\xab\x1c\x96\xfa\x65\x72\x2c\x87\xc0\x8a\x07\x5c\x47\x6b\x3a\x34\x92\xf6\xca\x72\x08\x9c\x2d\x7b\xb4\xfa\x4c\xe9\xe4\x50\x88\x79\x37\x5c\xb0\x1c\x2f\x1a\x52\xde\xb6\x1c\x9f\x7f\x3b\xd9\x0b\xfb\x3c\x1e\xeb\xad\x04\x44\xcf\x9c\xfe\xcb\x09\x70\x56\x48\xeb\xb2\x80\xfe\x4a\xc7\x58\x47\xef\xfb\x6c\xb6\x34\x10\x71\xe2\x84\x0f\xe9\x9b\x7d\xde\x9b\x77\x89\x33\xb0\x20\x26\xb2\x23\xac\x55\x42\xf9\x26\x36\xef\x23\xb8\x85\xa7\xde\xab\xe7\xbc\x01\xa4\xcd\x71\x0d\x2f\x5f\xa3\x10\x70\x09\xd4\x9e\x64\xc3\x2d\x0b\xf8\x9f\x2e\xc5\x25\x7e\x14\x36\x2e\xca\x12\x3f\xe4\x83\x61\x51\x22\x73\xfa\xf2\x28\xbc\xff\x07\x7f\x89\x8c\x08\x9f\xf8\x13\x07\xdf\xbb\x19\xea\x05\x55\x77\xc5\xb7\xcb\x42\xf8\xd7\xe6\xf7\x22\x85\x1f\x4b\x6f\xcf\xff\x6e\x69\xb9\x8f\xc3\xfb\xaf\xf7\x3b\xbb\x47\x6b\x69\x1b\x7e\x7d\x22\xfd\x98\xbb\x9a\x9e\x45\x0a\xff\xe7\x97\xea\x33\xc6\xe7\x0d\xf0\xaa\x37\xe8\xdd\xd8\xc4\xb2\x50\xff\xb5\x63\xd8\x94\xf3\x35\x63\x9a\x0b\xd0\xf9\x25\xf9\xf9\xed\x9e\xe1\x6d\x27\xbe\x8b\xb2\x3c\x00\xd7\xee\xb2\xb4\x3c\x00\xd7\xce\x82\x5e\x16\xfa\xbf\x64\x2f\x8a\x74\x7e\xac\x0f\x9b\x58\x1e\x3a\xbf\xf6\x4e\x30\x6b\x79\xd0\xff\xfe\x44\xd6\x15\xd1\xff\x15\x7b\x27\x54\xa3\x2c\xf4\x7f\x19\x0f\x57\x1e\x3a\x7f\x7f\x42\x4c\xcb\x83\xfe\x4b\x9f\xc4\x43\x95\x85\xfe\x83\x22\xe2\x45\xf4\xff\xf3\x3f\x68\xa1\x88\xfe\x7f\xe6\x13\xce\xcb\x72\xed\x0f\x76\xb1\x0c\x62\xb9\x8e\xa7\xad\x56\x04\x2b\xcb\x0b\x70\x59\x90\xa5\x2c\x0f\xc0\x15\xc1\x70\x65\x79\x00\xae\x00\xbe\x2a\xcb\x03\x70\x85\xee\x51\x7a\xb7\x5f\x02\x82\xcb\xf5\x8d\xc3\xe5\xdd\xd6\xfa\xa6\x79\x50\x0c\x8e\xff\x19\xb9\xe2\x3d\x18\x03\xe7\xe2\x85\x46\x92\x73\xf5\x22\xa2\xd4\x2f\x63\x79\x01\x42\x75\x2b\xba\x5e\x1e\xab\xb1\xcd\x96\x5f\xb4\x3e\x9c\x5d\x79\x02\xe4\x8f\xbe\x82\xef\xff\x7b\x6b\x49\xc7\x77\x39\x8f\x5f\x4e\x82\xd3\xe2\xad\xe5\x71\x10\xb4\x87\xf2\x2b\xe9\x5b\x2e\x48\x81\x29\x3a\x09\x16\x1d\xc3\x74\x5e\x4e\x82\xeb\x6a\x36\xf1\x7e\xef\x71\x7b\x45\x7e\x7e\x31\xea\xbf\x2c\x27\x41\x28\xcf\x33\x5e\x3a\xc8\x6a\x44\x25\x7d\x4e\x22\x5f\x7a\xea\xdf\x39\x3e\x75\x7c\x0b\x15\xcb\x46\xfa\x05\x8c\xe9\xdd\xfd\xd2\xdd\x0d\xd8\x5f\x96\xa3\x20\xdd\x2e\x9b\xf7\x3b\x1e\xc6\xcb\x94\xfb\x73\x9a\xb8\xc4\xdd\xdf\x98\xe0\x1d\x2d\xcb\x51\xb0\x24\x74\xd6\xd1\x1b\x88\xab\x60\x41\x79\x9c\x04\xed\x09\x0a\x2c\xf7\xeb\x33\x35\xbf\xbc\x40\xfd\x5f\xbe\xd6\xfb\xcd\xa7\x30\xea\xab\x2c\x47\xc1\x75\x39\x49\x6e\xb8\x91\x6c\x1b\x91\xd5\x82\x2b\x2a\x3a\x08\xce\xd1\x5b\xf2\x97\xf9\x2e\xc1\xb8\xa1\x0a\xe5\x7b\x2f\x7c\xf5\xe5\xa1\xfc\x5b\x1f\xd0\x73\x25\x7f\xf3\x02\x1b\xb6\x50\xc6\x57\x71\xe6\x92\xbf\xd4\x28\x27\xea\x72\x0e\x2c\x76\x71\x1d\x5d\xcf\x86\xd4\x88\x1c\x2b\xf9\x0d\x46\x9e\xd8\x83\x05\x07\x41\x75\xe9\xc9\xaf\xa3\x44\xb4\x54\x9e\x58\xfd\xf6\x38\x64\x0a\x6a\x96\x11\x7b\xb1\x2c\x27\x41\xd0\xbf\x5b\xa4\xfc\x7f\x16\x12\xdf\x13\xe5\x7d\x6f\x3f\xe9\xfc\xdb\x61\x5a\x96\x83\x20\x58\x42\xbb\x58\xc3\xd7\xa5\x57\xc7\xc0\x4f\x4b\x60\x73\x4a\x09\x2f\x66\x26\xf6\xaf\x58\xcb\x17\x57\x47\xb1\x96\x2f\x8e\x95\x62\x2d\x5f\xdf\xab\xb5\x7c\x35\x27\xca\x8b\x86\x8c\xce\x2a\xd4\xf3\x3d\x89\xb0\x2a\x0b\xf5\x5f\xb7\x0b\x30\x94\xbf\x72\x85\xa5\xd0\x5f\xcd\x9c\x42\x2d\x26\x50\x44\x29\xc8\x9d\x9c\xfe\x37\x1f\x84\x35\xdd\x1c\xea\xeb\x10\xb2\xe4\x62\x41\x54\x26\xb8\xe5\x23\x2a\x73\xe0\x6a\x2e\xf5\x75\x90\x4e\x97\xcf\x5f\xd4\xbf\xf6\x2c\xd4\xff\xe1\x17\x2d\xf2\xbf\xb6\xfe\x18\x38\xf5\x73\x94\xe2\x88\x2e\x88\xcc\x44\x97\xc8\x8a\x09\x48\xbc\x54\x59\xa8\xff\x9a\x9b\xf7\xfe\x1d\xfd\x54\x1e\xc4\x3f\xfb\xd4\xce\x06\xf1\x3f\xdf\xfd\x42\xfc\x97\x62\x32\xa5\x7e\xce\x20\x22\x8f\xca\x42\xfc\xa7\x12\xcb\x65\xa1\xfd\x6b\xe0\x4d\x28\x0b\xe9\x9f\xb7\xa6\xca\x42\xfa\xd7\xf3\xc5\x51\x35\xf8\x06\x7b\x17\xaa\x06\xef\x2e\xd9\x0f\xd5\xbf\x75\xd5\x70\x4b\xfb\x4c\x5e\xd0\x73\xa1\xb2\xf0\x86\x4e\x6a\xa1\xb2\xf0\xe1\x06\x45\x65\xe1\xc3\xd9\x44\x65\xe1\x23\xfb\xdc\x77\x4b\x9c\xf6\xb0\xbd\x73\x5b\x46\xb2\x80\xf6\x77\x74\x16\x8a\x41\xf6\x3f\x58\xcb\x2d\xa7\x6f\x1f\x6a\xa6\xc5\xc8\xdc\x44\xe7\x4b\x7f\x93\x2d\xf4\x19\x95\xfe\x39\x00\x09\x1b\x28\xa2\xff\x9f\xbb\x46\xaf\xfa\x08\x82\xfd\x5f\xda\x47\x45\xc7\xc0\x99\xfa\x74\x09\x59\x8e\x81\x20\x5d\x5d\x96\x63\x20\xe8\x4d\x2b\xfd\x73\x86\x74\x1f\xaf\xe5\xf0\x03\x7c\xf9\xcc\xfa\x9b\x93\xa0\xb2\x62\xa1\x3c\x99\xa9\x36\x65\x39\x06\xc2\x10\x95\x50\xc0\x38\xe2\x02\x29\x14\x11\xb0\x3a\x4c\x21\x0c\x20\x38\xfc\x14\x11\x50\x7f\xbc\x18\x93\x0f\xd7\x50\xc6\x47\x87\xfb\x29\x0c\x22\x40\x70\x70\x15\xe2\xf2\x4f\xb1\xc9\x72\x04\x04\x05\xeb\xca\x13\x97\x1f\xde\xad\xf2\x89\xcb\x0f\xbd\x3b\x0a\xcb\x19\x10\xac\x25\x54\x70\x06\x98\x83\x5d\xa8\x1a\x70\x69\xed\xe9\x08\xb8\x72\xef\x42\xd8\xf1\x3b\xe3\xb7\x50\xca\x2c\x5e\xde\x69\x7e\x1f\x2c\x7d\x7e\x62\xf3\x8f\xc7\xf9\x56\xe6\x2f\x4b\x81\x8f\x16\x47\x40\x11\xcd\x4c\x52\xe9\xc4\x10\xf3\xd7\x74\xf0\x6c\xb8\x02\x68\xdc\x32\x3f\xae\x88\x00\xea\x32\x5f\x4b\xc9\x84\xc3\x42\x38\xc0\x2e\x8a\x5d\x0e\x81\x33\x41\xf5\x15\xc2\x01\x82\x9f\xdb\xfc\x00\xb2\x56\xd6\x6c\x1f\xca\x64\x92\x4f\x1c\x60\xce\x17\xc3\x01\xce\xd8\x87\xd8\xf1\x89\xd5\xff\x99\xd3\xeb\xdd\x56\x6b\x9e\x61\x01\xd6\xed\xdb\xf6\x68\x43\xa5\xb6\x59\x22\xaa\xaa\x6e\xe7\xbb\xa5\x64\xaf\xbf\xde\xad\x01\xfc\x59\x97\x03\x20\xa8\xe2\x55\xb7\xfb\xeb\xf1\xc6\x2f\x94\x78\x0b\x3e\x11\xa4\x9b\xbd\xbf\xa8\x60\x72\xd4\x3e\x87\x49\xe1\x97\x2f\xb2\xa9\xf9\xfc\xe5\xdc\xdc\x9a\x77\xfb\x3e\x7b\x36\xc1\xba\xfb\x8e\xef\x6e\xc5\xab\x4a\x08\x40\xc0\x3e\xaf\xfb\xf1\x19\x4d\xb4\x9f\x9a\x69\xf7\xee\xd9\x2c\x79\x38\x37\x2a\x35\xd3\x6e\xf0\x47\xa5\x66\xda\x8d\x81\x50\xa9\x99\xa6\xeb\xa6\x52\x33\xcd\x92\x43\xd5\xa0\xfc\xb3\xf7\x19\x7d\x4a\x79\x9e\xeb\xdb\xac\x0b\xe5\xc7\x7d\xf3\xb9\xbf\xd3\x24\xeb\x9f\x4c\xf6\xba\xc3\xfd\xb1\x51\xd4\x9d\x32\x83\x04\x40\xd4\xe3\x17\xcf\xc1\x98\x81\xee\x55\xc2\xaf\xa8\x88\x66\xac\xe7\x7a\x90\x09\x4d\x6a\x66\x3d\xbe\xb0\x16\x82\x55\xea\x42\xf7\x71\x77\x2e\x40\xf7\x1f\xac\x34\x15\x25\xd1\xcc\x62\x5e\x0d\xda\x8f\xa1\x77\x36\xe7\x7a\xfc\x0a\x64\xf6\x97\x37\x8d\x52\x75\xaf\xfa\x65\xb7\x8b\x84\xeb\xf1\x7a\x76\xe6\xd3\xaa\xb5\x86\x9d\xce\xb7\x03\x27\x17\x46\x5f\x5d\x28\x3f\x9c\x18\x75\x75\x21\xfc\x60\x81\xc0\x1a\x5e\xf4\x67\xa0\x44\x35\x78\x3f\x86\xae\x4c\x79\x35\xbb\x9d\x30\x94\xba\xbc\x00\xa7\xf2\x96\x35\xfc\x4a\x35\xa4\xc7\xe1\x7a\x4c\x3c\x89\xfe\xaa\x27\xe0\xe7\x17\xdc\xa4\x75\x79\x02\xce\xf2\xdc\xff\x8b\xe8\xc3\xdc\xae\x64\xb8\xdf\x7e\x0b\x41\xcf\xce\xbf\x52\x05\xab\x0e\x82\xf3\x7a\xbc\x75\x35\x58\x2e\x90\x41\x0a\x04\x38\x4e\x9b\xae\x56\x39\x8d\x20\x31\x5e\x89\xb1\x1a\x49\x3f\xc2\xba\xaa\xc6\xf6\xaf\x4c\x72\xa6\xa1\x8e\x81\x33\x3d\x5e\xca\x1a\xdf\x8c\x70\x09\xbb\x1a\x09\xea\x6d\xde\xf1\x5b\xe6\x7c\x7e\x7c\x1d\x24\x2a\xe4\x54\xb2\xe1\x85\x68\x15\xfd\xa2\x96\xbc\x3f\x42\xb3\x7e\x9e\x11\x0b\x8f\x74\xfc\x4a\x16\xbc\xf6\x52\x5d\x4e\x81\xa4\x8e\x4e\x8d\x64\x49\x77\xdb\x3d\xc9\x0f\xe6\x2e\xe7\xfb\xd9\x9b\xc3\x5b\xcf\x37\x4b\x5a\x4a\xb0\x9e\x5f\x2e\x07\x8e\xa5\x4a\x28\x80\x15\x9b\xea\x97\x09\x3f\xc0\x28\x75\x39\x03\xe2\x01\x08\xaf\x4f\x28\x40\xe9\x13\x87\x40\x7d\x1c\x02\x3f\xd6\x00\x23\xb5\x1c\x02\x57\xea\x1e\xe5\xcf\xfd\x60\x3b\xcb\xb3\x7c\x5a\x77\xa1\x2e\x67\xc0\x99\xb0\xc3\xeb\xf9\x66\xdf\x1a\x55\x5f\x9f\xcc\xf8\xfb\x21\x97\x2b\xa1\x00\x13\xe7\x54\x5d\xce\x80\x54\x71\x03\xd5\xc7\x11\x70\x74\xcb\x4f\x54\x1d\x01\x3f\x53\x96\x90\xcc\x7a\xbd\x29\x68\x1d\x87\x63\x5d\x8e\x80\x64\x96\x4a\xbd\xbe\x71\x70\x71\xba\xcc\xae\xa6\x57\x97\xfa\x5a\x8c\x01\x71\xfe\xe5\xf2\x4e\xab\xff\x56\x2b\xae\xd7\x8b\x68\xc4\xc5\xf5\x2a\xdf\xdc\xb1\xc5\xf5\xe9\xb1\xd5\x1f\x2a\xba\xa8\x65\xf7\x8a\xfe\xfd\xcf\xdc\xba\x4c\xbf\xf3\xf9\x6f\x3a\x9a\xae\xb0\x9a\xde\x00\x5f\xa9\xf2\xba\x1c\x02\x31\x62\xbe\xd4\x44\xf6\x71\xf0\xec\xb5\x24\x46\xe2\x67\x6a\x22\xbb\xda\x6f\x2e\xa1\xd7\x8f\x5c\x5e\x5d\x28\xff\xde\xa3\x67\xbe\x99\xc7\x26\xa3\x56\xeb\xd3\xc1\xda\xd4\x27\x53\xbe\x3c\x69\x92\x35\x91\x79\x7c\x79\x54\x39\xa2\x17\xa2\xfb\x95\x0c\x6c\x9b\x3b\xb4\xb8\x77\x1b\xaf\x11\x56\x6c\x37\x42\xcb\xb8\xba\xeb\x83\xea\xdb\xe3\xd6\xaa\xe8\xad\x16\xf4\xf6\xeb\x42\xf5\x71\x07\x3d\xd4\x5f\x88\x3e\x7a\x3d\xce\xc0\xc3\x6b\x7f\x39\x44\x69\xcd\x4d\x00\x3b\xdc\x4a\xbd\xbf\x14\x3c\x82\xb9\x2b\x94\xff\xe5\x1b\x92\xf2\x4f\xe3\xc9\x59\xa9\xf7\xcb\xeb\x89\x59\x2a\xb4\xff\xed\x36\xf6\xd0\xfe\xbd\x37\xbc\x1b\xf5\xc6\xc9\xed\x7b\xb9\xa9\x6b\xe0\x16\x71\xc3\xed\x39\x03\x33\x39\x6b\x98\xb2\x95\x4c\x7a\xcb\x88\x57\x32\xe9\x8d\xc5\xac\x99\xba\x06\x8e\x39\x99\xf4\x19\xa7\x5c\x7d\xa8\xfd\xf3\x71\xb3\x57\x74\x5a\x15\xd5\xaf\xa2\xf7\x9f\x2d\xfd\xf6\xfa\xfb\xfb\xc5\x73\xf2\x8b\x1a\xdd\x42\xf2\xeb\x0c\x9e\x18\xc0\xf5\x57\xf0\xbe\x5b\x48\xfe\x72\x5b\x5c\x4f\x33\x66\xbc\xdf\x43\x66\xbe\x17\x5b\xb5\xfa\xbe\x68\x84\xff\xde\x42\x16\xc0\x8f\x97\xcb\xcc\x02\xf8\xc1\x48\xaa\x4a\x02\xbe\x80\xb0\x92\x80\xff\x7c\xb4\x45\xa0\x7b\x76\x15\xf6\xeb\x02\xf7\xa7\x55\xb7\x2a\xe5\xf1\x0e\xa7\x4a\xf9\x40\x9f\x83\x50\x2c\xa6\xec\xd1\x5a\xfa\x77\x3c\x97\xb5\x20\xd1\xeb\x62\xf7\x2b\xf9\xde\x57\x69\x99\x3c\xb7\x2e\x4a\x5b\x98\x0b\x52\x29\x6d\xd1\x5c\xc4\x04\xf8\xe7\x7c\xc0\x75\xad\xf0\x3b\x80\xfb\xba\xc0\x7d\x4a\x7e\x8c\x15\xcd\x77\x77\xe1\x05\xee\x83\x1a\xaa\x95\xf2\x16\xba\x4c\x2a\x19\xf5\xc3\x8f\xec\xa1\xf3\x7f\x2c\x08\x9e\x4b\x89\x0b\xcb\xde\x55\x4a\x5c\xcc\xe8\xb5\x8b\xd6\x3c\xb4\xb5\x00\xf4\x0a\x64\xd7\x05\xe8\x2f\x6b\x95\xd5\x07\xd0\xdf\x7d\x62\xa9\xd7\x05\xe8\xe3\xad\x5d\x0c\xa0\x57\x61\xb3\x2e\x40\x7f\x99\x85\x5e\xa5\xef\x7f\x36\x5b\xe8\xf9\x8a\xb2\x6c\x75\x64\x16\xa0\x0f\x96\xd2\xae\xed\x8d\xf2\xe9\x44\x2b\x55\xd4\x65\x37\x5b\x42\xfc\xfe\xed\x12\x06\x75\x7f\xe2\x99\xae\x50\xf7\x19\x9c\x56\xa9\x77\xb1\x3f\xd7\x59\x05\xd5\xeb\x7e\x71\x1e\xfe\xbf\xac\x5b\x15\x66\x6b\x7b\xa7\xb8\x8e\xc9\x6a\x4d\x0c\x97\xec\x27\x7e\x3f\x3c\x61\xe8\xb5\x7d\x81\x8e\x38\x1c\x6a\x27\x8b\x1c\x0a\xbf\x92\x35\x5f\x9c\x85\xd4\xcd\x38\xb5\x32\xa9\x9b\x71\xfa\x0e\x89\xdd\x7f\xec\x49\x62\xf7\x55\xe3\xaf\x22\xf4\x2b\x3c\x21\xac\x15\x4d\x5b\x6b\x75\x54\x11\x3a\x62\xc9\xf5\x43\xe8\x0d\xc4\x57\xfb\x17\xd9\xe7\x22\xdf\x3f\xfa\xda\xed\x86\xec\x79\x8b\x28\x56\xb3\xe7\x7f\x10\xd7\xe1\x33\x56\x40\xeb\xe5\xb2\xd8\xdf\x7e\x3f\x57\x8c\x2f\x5c\x83\x50\xfa\xfa\x04\xed\x87\x87\x31\xa8\x03\xfa\x1a\x9c\x5b\xc7\xf7\xce\x09\x29\xad\xe3\x43\xae\x22\xbf\xf1\x86\x31\x4c\x1c\xbf\x95\x3a\x7f\x56\x9d\xad\xd4\xf9\x53\x18\xba\x12\xbc\xff\xbc\xbb\xa1\x30\x34\xb3\x64\xbc\xfc\x46\xd3\xf8\x5b\xa8\xfd\xd2\xa5\x54\x17\x6a\x8f\xc5\xf7\x2a\x75\xff\x73\x36\xae\xdb\x2a\x75\x7f\x9e\xc4\x0d\xfd\xfc\xf2\xdb\x51\x59\x09\xdc\x0f\xa0\xfa\x3a\x5f\x31\x11\x85\x75\xaa\x19\xf5\xcb\x4b\xc2\xf8\xcc\xcf\x79\xe7\x9c\x9f\xaf\x60\xcc\xc4\xc5\x59\x51\xe5\x3d\x44\x21\x0b\xb9\x9f\x96\x49\xad\xd4\x07\xac\x97\xf7\x5f\x21\x2b\x19\xbf\x49\xa5\x60\x79\x70\xa1\x9e\xe5\x5d\xfd\xdc\x76\x51\xe6\x4d\x7e\xc7\xf3\x0f\xaa\x43\x99\x57\x31\xf1\x2a\x5a\x8f\xe1\x89\x25\xab\xd3\x92\x93\xab\x15\x6d\xdb\xde\x5e\xe0\x4d\x68\xdb\xfe\xe1\xe3\x83\x5f\x50\x21\xc6\x54\x6a\x66\xd5\x2f\x6d\xae\x7f\x21\x8c\x06\xc3\x7f\x90\xac\xd5\xb6\x57\xd6\xcb\x4c\xd6\x46\x39\x8f\x7d\xf8\xe8\xb5\x14\x44\x7c\xa9\x6d\x7b\xd3\xd5\xe6\xe9\x2f\x9f\xf3\xea\xf2\xfa\x6f\xe7\xc3\x59\xd1\x88\xf1\xbf\x59\xae\xdb\xf6\x2d\x09\xd1\x67\x74\x9c\x63\xde\x71\xb0\xcd\x14\x8e\xd6\xae\x67\x01\xf6\x46\xd2\xbd\x11\x19\x0d\x80\x9f\x59\x26\x1a\xc2\xbe\xee\xea\xcd\x18\xff\x1f\x9b\x9f\x65\xac\x2d\x80\x1f\x24\x39\xdb\xfe\x3b\x4b\xbd\x2d\x80\x1f\xd5\xe0\x6a\x88\xfb\x66\xe0\x65\x43\xdc\xb7\x80\x25\xda\xfe\xed\xf4\x97\x6d\x2a\x8f\x9d\xdd\x70\x4e\x34\xca\x80\x94\xdb\xbb\x61\xd5\xb2\xdc\x37\x29\x7c\xd0\x5c\x23\xbe\xbf\x1c\x9e\xe9\x12\x70\x75\x2b\x4c\xb5\x05\xf2\xa3\xb9\xdb\xed\x78\xa9\xbd\xce\x06\xdd\x28\x57\x68\x3e\x7d\x03\xe4\x57\x28\xf8\x06\x7d\x5f\x59\xfe\x1a\xf4\xbd\xb5\xf8\xdb\x02\xf8\xa7\x22\xd6\xcd\x78\xfe\x15\x08\xe0\x2f\x0b\xdc\xde\x87\x47\x1f\xc0\xaf\x3e\xf7\x0d\x6c\x6d\xc3\x5f\x2a\x1e\x63\xde\xcc\xf1\xd2\xbc\xd3\x29\x7a\x7c\x5a\x42\xcf\x3d\xe0\x28\x9c\xe2\x00\x7c\xe5\x5b\x1a\xea\xc0\x0a\x8b\xb4\x05\xf0\x57\xda\xc1\x3a\x5a\x75\xcb\x76\xe7\x5f\x78\x69\x5d\xdd\x52\xcd\xcc\xfc\x58\x7a\x67\x11\x6b\x01\x6a\x77\xf3\x7a\x84\xb8\x09\x08\x68\xc4\xf3\x5b\xac\xb4\xa1\x12\xdc\x92\xd7\x51\xb1\x02\x37\x48\xa3\x94\xa1\xe9\x79\x0d\x05\x61\x2b\x57\x35\x14\x84\x6b\xf3\xe8\xcb\xe3\x38\xec\x0f\xb9\x2b\xd9\xff\xdf\xdc\x05\xd5\xb9\x5a\x7c\x73\x17\xd4\x88\x6b\xc4\xf3\xab\xb5\xd5\x88\xe7\x17\x39\xb7\x07\xb9\x6f\xbd\xb3\x0d\x37\x14\x85\x07\x02\x36\x6d\xa1\xf6\xe8\xa2\xdc\x50\x14\x36\x63\xbc\xc5\x2f\x77\xa3\x7a\xed\x9b\xa1\xdd\xd8\x34\x9a\x94\xfe\x6a\x0d\xe3\x12\xdf\xbc\x1d\x8d\x89\x16\xad\x72\x6c\xfb\x97\x22\x41\x74\xe6\xc5\x4f\x28\x86\x4d\xa5\xc5\x17\xc5\xb8\xd4\xb7\x87\xd2\x2f\x7d\x82\xb9\xdb\x89\x40\x10\x5b\x4d\x5b\x28\x3e\x9e\xb0\x4c\xed\x3c\x3e\x14\x44\xab\xcf\xd7\x39\xad\xf9\xd9\xce\x2f\x79\x01\x73\xaf\x9d\x88\x24\x1d\x1e\x2d\xab\xfe\x64\xd3\x6b\x22\xf8\x9f\xeb\x5d\x77\x1e\x4a\xbf\x3f\xe1\x34\xed\x7c\x35\xcf\x74\xbb\xb6\x85\xe2\x53\x1e\xb6\xb8\xbe\x98\x3e\xdb\xea\x37\xbc\x63\x44\xef\xfa\x45\xac\x75\x9f\xbc\x68\xed\x7e\x79\x8f\x95\xb7\x15\x08\x96\x68\x54\x30\x39\xd8\xaa\x9a\x81\xfc\x7e\xeb\xd7\x1b\xd2\xa0\xdb\xb4\x81\xde\x6f\x42\xef\x9b\x81\xfc\xa4\x27\x34\x8b\xc0\xbb\x1a\x2e\xe4\x1e\x95\xe5\x69\x0b\xb9\xaf\x42\x35\xff\xd8\x2a\x28\x70\xb2\xd9\xf9\xeb\x13\xa9\x38\xbd\x2d\x3e\xae\xe0\x11\x4b\xc0\xe9\xd9\x8d\xc6\xb1\xf8\x12\xdf\x6f\x82\x60\xbb\xbe\x88\xad\xd3\xe6\xbe\xec\x7e\x87\x3c\x6c\xe9\xf3\xd9\x63\x6f\xb4\x05\xe6\xc3\x85\x9d\xdf\x16\x98\x8f\xd3\x25\x6c\x81\xf9\x4b\xbb\xb8\x2d\x30\x7f\x09\xbc\x5a\xfa\xb3\xd4\x23\x7b\xb7\xe1\xf5\x6d\x0b\xcc\x9f\xcf\x86\x92\x5e\x6a\xda\xb2\x96\x8d\x32\x8c\x96\xa5\x6f\x94\x61\xbc\xfd\x28\x28\xc3\x98\x6e\x9f\x09\x82\xc1\x1d\xd4\x16\x88\x3f\x93\x13\x29\xa9\xd4\xe9\x53\xd6\x52\x17\xf1\x2c\xb6\xfb\x8d\xd7\x36\xa4\xb1\x41\xcb\xef\x90\x57\xed\xfe\x62\xb5\x9d\x52\x4f\xfc\x7e\x78\x94\xa6\xda\xfd\x5b\x80\xa5\xdd\x9f\xd4\x9f\xbd\xf8\xb2\xf1\x07\xfa\x9e\x8d\xe2\x2a\xbb\x8b\xc2\x8d\x2f\x93\xa0\x85\xb6\x40\xfc\x59\x36\x9f\x5f\xc8\xe6\xf6\x4c\xad\xdc\xfd\x89\xcd\x69\x0b\xc0\x2f\xb1\xd2\x75\xd4\x49\x5c\xf4\xda\xf1\x01\x5c\xff\x67\xba\x3b\x9e\x14\xa9\x0f\x6e\x08\x0f\x15\x7f\x75\x05\x3f\x5a\x7e\xfd\xb8\x13\x2b\xb2\x01\xe4\xa3\x6f\x3d\xbf\x9f\xbc\x9a\x4a\x2d\xbf\x7d\x37\x02\xae\xe5\x97\xae\xd4\x4f\xde\xf2\x17\xcd\x73\xf8\x9c\x2f\x8d\x4b\x1b\x6c\x01\xfa\x33\x43\x4b\xb6\xfc\x39\x31\x48\xbc\x6b\xf9\x75\x5e\xe9\xe7\x6f\x59\x99\x47\xfb\xf2\x3a\xef\x0c\xbf\x68\x8f\x74\xde\xdd\x9b\x4b\x58\x9e\xdf\xb6\xca\x5b\x29\xdf\x9c\x07\xf3\xb5\x4f\x42\xaf\xdb\x7a\xb2\xf2\x0f\xcd\x33\x8a\x4e\x06\x17\xa4\x82\x48\xc9\xf0\x6e\x04\xac\xba\xcc\x97\xeb\x33\x5c\x18\x99\xf2\x39\x73\xdc\x98\x0a\xd6\x3e\x9c\x65\x2b\x9f\x69\x57\xbd\x02\xad\x30\x5c\x3f\xad\x90\xcb\xe4\xd7\xb0\x10\x7c\x0a\xd3\x76\xe3\xc8\xf0\x3d\xfe\x92\xce\x23\x3e\xab\x95\x5f\xfc\x0d\xed\xab\xbf\xd0\x2d\xed\xaf\x9f\xd5\x0b\xfe\x69\x9f\x74\xfb\x04\xe3\xb5\xfa\x46\xb7\x59\x59\xb7\xd5\xf8\x61\x20\xc6\xa8\x32\x0e\x2e\xa3\xf5\x73\x62\xfb\xad\x56\x32\xd5\xdd\xca\x7e\x69\xe5\x25\xff\x47\x0b\xdb\x6d\x66\xa1\xfb\x14\x86\xff\xad\x6d\x30\x40\x1b\xb7\x5f\x01\xfa\x6e\xe3\x14\xcb\x37\x9a\xaa\xd5\xf7\x7b\x18\x7e\x6b\xf5\xe3\x2a\x6d\x4d\x93\x9f\xf5\xe8\x97\x6a\x2f\x3d\x6e\x1f\x8f\x45\x88\x46\x23\x4b\xdf\x22\xa8\xad\x7d\xe1\x0a\x6e\xac\xd2\xf7\x1a\x43\x5f\xa6\xbe\x4e\xe0\xd6\xde\xfc\x0d\xd1\x6d\x23\x5b\xff\x72\x9e\x1a\xac\x1f\xf7\x3e\x20\xfc\xdb\x13\xac\xff\xea\x5c\xb4\x47\x33\x2f\xa0\x71\xf0\xdf\xdb\x0a\xb1\xfc\xa7\xb6\xe6\x72\x08\xa4\xdc\x7c\xd8\xb7\x35\x38\xe1\x1b\xaa\xa8\x0e\x68\x7f\xa7\x89\xe0\xbc\xf5\x6f\x9a\x68\x13\x3e\x0c\xff\xf5\x24\xfc\xb4\x8e\xd4\xda\xe1\x3d\x22\x2e\x0c\x5e\xca\x72\x0c\x2c\x8d\xec\x75\xf4\x2d\x95\x2e\x29\xfd\x0b\x7a\xc3\x2f\xd7\x96\x73\xe0\xcc\xda\x57\x4f\x4c\xff\xd5\x9b\xfb\xb2\xce\x81\x15\xf7\xcf\x10\x3f\xce\x81\xfe\x64\x02\xb4\xe5\x1c\x38\x4b\xb1\x0d\x9d\x24\x30\x5b\xfb\xe9\xd9\xb8\x78\x2c\xe7\xc0\x2a\x6d\xf0\x73\x04\x85\x7f\x38\xe9\x86\x01\xcd\x7c\x34\xbf\xe2\xf9\xb5\x87\xc7\xe7\xf3\xd5\xe6\x20\x93\x3f\x90\x60\xd6\x90\x88\x97\xe3\x69\x5f\x3c\xbf\x59\xb4\x6d\x39\x04\x62\xc1\x71\xd2\x70\x08\x64\x37\xbd\xe5\x10\x38\xb7\xe9\x99\x64\xf2\x5f\xb6\x64\x51\xbc\x92\x84\xed\x89\xe5\x8f\x8f\xf7\xb3\x21\x15\xbf\xc3\xa8\xb4\xe5\x0c\x88\x87\xcb\xc7\x43\xe1\xff\xc0\x6b\x3e\xdb\xe5\x0c\xb8\x8c\x2a\x6b\x8f\x33\xe0\x8d\xfa\x6f\x53\x39\x41\xae\x9f\x44\xb3\x68\x5c\x3c\x4e\x80\xd9\xad\x5e\xd1\x88\xe5\xdf\x44\xac\x13\x65\x51\x37\xe4\xe5\x04\x08\xcf\x16\x64\x2c\xff\x72\x97\x30\x42\xf3\x97\x58\x89\xbf\x14\xda\xc6\xe8\x4e\x1c\x7e\x6e\xad\xcb\x11\x10\xba\xc8\xd2\x58\xfe\x9f\x05\x4c\xcb\x7f\x39\x03\x92\x21\x15\x6d\xfa\x9e\xd7\xb5\x7d\x39\x02\x42\x04\x55\xf6\xe5\x04\x88\x17\x2a\x44\x7d\x33\x6f\xa1\x70\xb4\xe6\xf7\x8d\xfb\xae\x2f\x84\x7f\xfa\x45\x75\x8a\x75\x1e\x78\xd0\xfb\x42\xf7\x31\x07\x8f\x70\x6a\x46\xaf\xbb\x5f\x87\xca\x6e\x0b\x5e\x2e\xc3\x68\xaa\x4e\x2c\xff\x8d\x5d\xdf\x37\x39\x2c\x5b\x48\x2a\x23\x23\xd7\xbf\x40\x7d\xbf\xc2\xbe\x90\x7d\xda\xa6\xcf\xfe\x52\x3a\x99\x97\x7d\xdf\x3e\x67\x15\x2d\xda\xf7\x67\xab\x9e\x90\xe7\x7d\x7f\x83\xd6\x07\x5f\x43\xdf\x3f\xbd\x26\xf0\x47\x57\x47\x8f\x4d\xb5\x2f\xa4\x7f\x65\xde\x75\xdf\xbf\x34\x46\x22\xcd\xfa\xfe\x46\xe7\x29\xab\xd2\xf7\x57\xaf\x69\x32\xb3\xfb\xfe\xa5\x32\x82\x5f\xfa\xfe\x39\x3e\x6f\x5b\x56\x3f\xfc\xc0\x08\x18\xc0\xbf\xa2\xf8\x78\x4f\x66\xf8\x9f\xe1\xd9\x72\xfb\xf2\x00\x5c\x65\xf7\xff\x57\x32\x54\x0e\xa0\x1f\x1f\xa7\x85\xe9\xd1\x29\xf7\x13\x7d\x83\x07\xf3\xde\x56\xe1\x01\x88\xcd\xff\x3e\x44\x84\xa1\xd3\x8f\x4f\x3a\x94\x19\xd7\x8f\x4f\x35\x98\xed\xa2\x1f\xe9\xc3\x6a\xde\xe7\x77\x0e\x4f\xff\x23\x62\xdf\x0f\xa4\x53\x83\x47\xf5\x5d\xbd\x09\x43\xe8\xe8\xf3\x85\xe1\xff\xfd\x7b\x1a\x6f\xcf\x80\xfe\x95\x9c\xc9\x38\x3e\x01\xfd\x3f\x86\xc0\xbf\xb4\xaf\x3a\xb1\xfe\x4a\x18\xf7\x20\xf5\x45\x47\xc2\xf1\xd9\xc1\xdc\x3a\x90\xdf\x01\x51\xdc\x8d\x02\x70\xaa\x7d\xb9\x00\xe6\x66\xf4\xf0\x5a\x8e\x5a\xaf\x3d\x90\xe5\xc9\x67\xdf\x89\x00\xc8\xe4\x1b\xf7\x90\xbf\xae\x7b\x76\x41\x3a\x83\xd7\xb6\x1c\x06\x69\x87\x18\xef\xc1\x14\x46\x06\x21\x10\xc4\x0a\xb2\xe9\x8f\x84\xdf\xd6\xad\x71\xd6\xc9\x01\x28\x7e\xc2\x91\xa0\x3e\x3c\xe0\x3d\xbe\xd9\x9d\x03\xbf\x6a\x5f\xce\x82\xeb\xfd\x3f\xbc\xcb\x15\xbe\xcb\xfe\xd0\xfc\xbd\x5b\xe8\xb1\xc7\x37\xda\xc7\x22\xe8\x3d\x7e\x56\x33\xa2\x2a\x1d\x3d\xfc\x1d\x3b\xbc\xc7\x2f\x88\xf7\xf4\xae\xaf\x63\xcc\x62\x99\x7d\x39\x0d\xa2\x81\x01\x3d\xd6\x6f\x32\xf2\xe1\x2d\xa7\xc1\xd9\xd8\xc6\x7b\x7c\x03\xfd\x9a\xd3\xf7\x71\x1a\xfc\x2c\xdb\x3e\xf5\x5b\x32\xfc\xd4\xc9\x03\x50\xe8\xa4\x9f\xdf\x58\x90\xa6\xd5\xcf\x5f\x39\x2e\x7c\xca\x7f\x44\xf0\xfb\x72\x1a\xa4\x1d\x37\x43\x7f\x54\x00\xb6\xa7\x46\x42\x5f\x4e\x83\xa0\x9b\xa3\x2f\xa7\xc1\xd5\xfc\xd8\xce\x57\xce\xd0\x80\xea\x7e\x82\x1a\xd8\x84\xfa\x49\x1e\xc4\x69\xdb\xea\xbb\x18\xe0\x70\xe8\x0a\xe1\x77\x9f\xdd\x9f\x45\x67\xb8\xe8\x9c\xaf\x7f\x5c\x09\xec\xfe\x88\xe1\x8f\x3e\xd9\x16\x3b\x0e\x03\x13\x21\xfb\x72\x18\xdc\xbb\x67\x23\x86\x9f\x1c\x1b\x62\xfe\x55\x4e\xed\x17\x19\xbe\x8e\xc2\x72\x16\x9c\x56\x18\xef\xc4\xfc\x27\xbf\x92\xe5\x2c\x38\x15\xc9\xee\x17\x8e\xc1\xe9\x5d\x28\xc3\xe9\x42\x7b\x11\xc0\x4b\xf0\x78\xbf\x48\xcb\x3d\xbc\xcb\x5a\xfa\x6b\xf0\x4c\x9c\x7d\xb0\x16\x9d\x4c\xfe\x80\xc3\xb7\x2f\x94\x9f\xac\xfd\xd2\x13\x41\xaa\x2e\x26\x0b\xe5\xdf\x07\xc1\x29\x1d\x94\xaf\x29\xd2\x17\xca\xbf\x36\xb7\x89\x85\xf2\xa3\x19\x41\x9d\x92\xa7\xcf\x86\x08\x5d\xaf\x13\xa5\x83\xf0\x03\xc6\x60\x4f\x28\xe6\x16\x9f\x5e\xb9\x27\x63\xbd\x10\xfe\xb9\x57\xef\x42\x58\x8e\x8b\x3f\x1a\x7b\xed\x69\xe7\x32\x59\x8b\xdb\xe2\x4d\x1d\x0e\x97\x78\xe8\xf9\x0c\xd6\xef\xb7\x41\xb8\x3c\x8f\x72\xa8\xf1\xf2\xcc\xc8\xd3\x59\x3f\x16\xaa\x3f\x4d\x9d\xec\x0b\xd1\x5f\x99\x68\xc9\x7e\xe3\xc4\xc4\x35\xd7\xa1\xe4\x93\x73\x16\x34\x6f\x02\x65\x5f\x68\xfe\xb4\xee\x60\x27\xb0\xde\x0a\x7e\xfd\xc6\x89\xe7\xc6\x73\x5b\xf0\x98\x71\x59\x48\x3e\xca\x21\xf5\x85\xe2\xaf\x03\x8e\xb5\x13\x50\x7f\xdb\x96\xfc\x3b\xbd\xb2\x43\xc3\x1f\xcf\x11\x34\xbc\x2d\x83\x86\x9f\x8e\x75\x46\x5b\xeb\x9f\xe8\xa1\x67\xb5\xa6\x18\x96\x4c\x14\x8a\xcb\xc1\x02\xf2\xa7\x15\xb9\x7a\x26\xaf\x00\xe0\xd7\x17\x88\xbf\x2e\x5f\x7b\xfe\x94\x64\xb1\x9c\x7b\x6e\x7f\x1a\xfe\xf9\xed\xa0\x8a\x7a\x1e\x7f\xfe\xff\x4d\x55\xf5\xf2\xd6\x1c\xb3\x5c\x67\x27\xae\x3e\x11\x47\xd3\x17\x68\xbf\xb2\x1f\xed\x13\x53\xff\x83\x50\xe9\x45\x79\x23\x6f\x26\x18\xa0\x97\x5f\x69\x59\xde\xe3\x7a\xec\x1c\xe3\xd8\xfb\x02\xf0\xf1\x26\x10\xb1\x2f\xf0\x1e\x4b\xf5\x19\xef\x72\x3c\x9e\xb3\x5f\xca\x4a\x62\xb5\x97\x4f\x77\x0a\x26\xa6\x97\x2f\xe3\xd8\x65\x7f\x01\xf9\x73\xef\xb6\x6a\x7c\x50\x90\x31\x5e\x40\xfe\x54\x9e\xa4\x3f\x20\x3e\x3d\xb2\x11\x7d\x81\xf8\xa0\xcc\x4a\xff\x84\xee\x85\x9a\x1d\x4a\x3e\x43\x9b\xf5\x27\xd6\x7e\xef\xd6\x3c\xee\x55\x7e\xea\x7a\x1c\x83\x7d\x01\xf8\x55\xea\x63\x1d\xa5\x67\x54\xba\xd3\x11\x6a\xbe\xba\x60\xd5\x8f\xaf\x89\xfe\xf2\x5b\x5d\xa0\x57\xe2\xcf\x37\xef\xfd\x65\x1c\x3b\xd5\x95\xd8\x8b\x7b\x97\x94\xef\x15\x95\x55\x2d\xef\x05\xe0\xcf\x03\xae\xa7\x37\x45\x49\x18\x9b\x27\xbb\x7e\x76\x03\x05\xfa\x03\xde\x8f\x6e\xa0\x41\x6f\xe4\x1c\x69\xf1\x0b\xde\x7f\xec\x6d\x6d\x66\x84\xee\x2d\x45\xda\x1f\xf0\xde\x9f\xb0\xdd\x0e\x55\x9f\x9c\x59\xed\x73\x5e\x04\x5b\x04\x42\xc3\x81\xd2\x17\x70\x5f\x55\x44\xd7\xd1\xb7\x25\xb9\x14\xff\xa9\xd3\xd6\x17\x32\x8f\x29\xf9\xdf\xe7\xcc\xf3\x8b\x6a\x5f\x6e\x8d\x86\xcc\x9f\x7a\x6d\xfd\x41\xe6\xf3\x89\x69\xeb\xd0\xf5\x9b\x9b\x73\xff\xe5\xc8\x64\x7c\x16\x32\xbf\xab\xef\x76\x21\xf3\x53\x0c\xdc\xfb\x17\x85\x47\x04\x59\xff\x23\x74\xdf\xfb\xaf\xfc\x12\x5a\xbc\x90\xf9\x6d\x31\xa0\xde\x7f\x45\xa0\xf9\xfc\x2f\xa8\x5e\x23\xae\x93\x5b\x24\xd6\xe9\x6f\x6a\xe2\xdc\x6d\x83\x75\x4b\xf8\x5a\xfa\xaf\x92\x4b\xbc\xf1\x41\x5a\x22\x11\x6a\x5d\x64\x0e\x6f\xd5\x45\xe6\x3f\xe6\x02\x58\xbb\x8b\xcc\x7f\x7e\x81\xa3\xec\x0f\x5d\xbf\x3f\x55\x56\xfa\x42\xe7\x71\xb8\x25\x8c\xcf\x79\x83\x33\xb9\xa3\xb5\x77\x39\xa2\x0b\x9d\x5f\x46\x5a\xf5\x4f\xf8\xbe\xb9\x3e\x22\x7c\x9f\x93\x2d\x7a\x9d\x98\xcd\xaf\x79\xfc\x79\xff\x20\xf4\x4a\x80\x43\x1f\x5f\x5a\xa6\xe3\x23\x4a\x8f\xc7\xbb\x1a\xcc\x3f\xef\x7f\x12\x90\xec\xda\x42\xe1\x5c\x85\x65\x3b\x01\xf6\x17\x3e\x8c\xfe\x20\xf4\xdc\x2d\x31\xdc\xe7\xf9\xac\xa8\x4a\x94\x74\x32\xee\xb3\x1b\xee\x42\xe9\x67\xc7\xed\xdc\xe7\xcb\xdd\x58\x5b\xbf\xcf\xfc\xff\xc9\x22\xf6\x05\xde\xe3\xe5\x22\xba\xc0\x7b\x3a\x5d\x20\x27\x82\xe9\xbe\x6e\x62\xee\x65\x34\xfa\x44\x9e\xcb\xa9\xf6\x24\xe1\xe7\xde\x89\x20\x1f\x80\xf7\x06\x1b\x32\x90\xe0\x3b\xd8\x4d\x87\xba\xf8\x3f\x8b\x16\xfb\xf9\x20\x09\x3f\x10\x5d\x34\xb6\xcf\x87\xd9\xfd\x65\x59\x37\x6a\x06\x8d\x27\x16\x3f\x3c\x29\x2c\x03\x20\x7f\x33\xd5\x86\xf5\x76\x71\x31\x0c\x41\x7c\x2c\x0f\x0c\x1c\xdb\x2b\x38\xac\x68\xc3\xd8\x3e\xe0\x56\x6d\xe3\xca\x2f\x31\x6f\x77\xfc\x8a\xc7\x3f\x6c\xf1\xa7\x4b\x74\xd8\xc6\x65\xd5\x65\xbc\x86\x63\xff\x3d\x15\xc6\x9f\xfa\x70\x63\x81\xf8\x78\xb2\x44\x8d\x9d\xf4\x3a\xc6\x75\x98\x75\x7f\xa5\xde\x8a\x67\xbf\x5b\x40\x7b\xee\x4d\x80\x1e\xfe\xcb\xb1\x00\x7c\x34\x17\x62\xec\xaf\x26\x93\x89\x4e\x63\x81\xf7\xa0\x1a\xeb\xd8\xdf\x40\x5c\x63\x44\xc6\xfe\x0a\x6d\x4b\x66\x8f\xfd\x73\x56\x41\x4f\x0f\x6a\xf3\xee\x4f\x8b\xd6\x16\x10\x2e\x5b\x3c\x9f\x0f\x43\xef\xff\xf8\x53\x65\x6e\x2c\xc0\x1e\x85\xef\xe3\xf8\x6a\x22\xe0\x70\x1a\xc7\x1b\xb5\x62\x76\xca\x78\x80\xfb\xf6\xce\x8f\x05\xdc\x53\xb5\xc7\x07\x9f\x02\x39\xd9\x63\x01\xf6\x4b\xae\x67\x1c\x9f\xe0\xb6\x23\xb2\x00\xfb\x55\x36\xaf\x2d\x4f\x6f\xc5\x10\x83\x0c\xfc\x00\x32\x18\xc7\x5b\xeb\xc4\xf0\xeb\x71\xe0\xc3\xae\xde\x0d\xda\x1e\xe4\x38\x0e\xd5\x56\xe9\xe9\x23\xc1\xb7\x75\x1d\x5e\x23\xbc\xb5\x6e\x64\xd4\x46\xf8\x10\xd9\xf0\xaa\x57\x8e\x71\xf8\x46\x40\xe6\xfd\xf6\x8a\xf3\x75\x4b\xf9\x7d\x04\x84\x28\x76\xff\x47\x76\x93\x4c\xa9\x11\xee\x6f\x9b\xe2\x6b\x59\xc8\xfc\x7c\xc6\x36\x7c\xdb\x00\x0c\xd6\x08\x56\x4f\x67\x34\x17\x32\xbf\x72\xf7\xde\x1d\x99\x0e\xc6\xe6\x97\xb8\x7e\xf1\xff\x2f\xdd\xd0\x6f\x3b\xf2\xdd\xef\x1e\x61\x06\x3a\x5a\x8f\xc0\x7e\xea\xd3\xd9\xb8\xd0\x79\x38\x31\xb6\xc6\x42\xe6\xf1\x9e\x1e\xfd\xe6\x2d\x07\xd5\xe9\x6e\xf4\x17\x06\xba\x7b\x07\x36\xf7\x58\x68\x3c\x06\x50\xd9\x58\x48\x3c\x06\xdf\x3e\xd9\xf8\xd9\x75\x22\xd6\x3f\xf7\x6c\x28\xf4\x31\x32\x22\xf0\xeb\xc7\xba\x60\xe4\x22\xca\xe1\xbb\xf7\x5d\xa6\x8e\xd5\x40\xc6\x42\xde\xf1\xc4\x70\x1a\xe8\xee\x0d\xc2\x21\xc6\x42\xdd\xd7\x64\x53\x1a\x27\xb5\x5d\x5c\x57\x10\xd2\xb7\x6a\xca\x78\x10\xf7\xe8\x0d\xa5\xad\x01\xe2\x4e\x20\xa9\x71\xfe\xde\xe2\x87\x88\xfb\xe7\x4b\x3d\xbc\x3e\xbf\x66\x3c\x0e\xb1\x81\x88\xbe\xa9\x7f\xe3\x7c\xb7\xf8\xe7\xfb\x7b\x02\xed\xef\x3e\x08\x2f\x19\x0b\x79\x9f\x0b\x18\xfc\xe7\x56\x31\xd4\xd7\xdf\x7c\xd0\x1a\x8e\x4a\xc8\xea\x58\x40\xfc\x0a\x78\xcc\xc6\xf5\x67\xb9\x5b\x40\xfc\x3a\x9d\xbc\x0b\x88\x9f\xd7\xe1\x7f\x14\x25\x04\x1c\x8e\x47\x5b\x3f\x3d\x15\x0e\x06\xcc\xbd\x3a\xa5\x03\x30\x7e\x11\x97\x33\x00\xe3\xe6\x25\x0f\xc0\xb8\x15\xa0\xc7\xc5\x6b\xc7\xbb\x3e\xae\x2f\xfd\x26\xda\x8a\xb5\xb5\xa5\xe4\xd1\x02\x7b\x3b\xb2\x7d\xe3\x42\x69\xf3\xf4\xbe\xd4\x50\x70\xb1\x00\xac\x5f\x6c\x90\x23\x51\xf3\x9a\x1d\x7e\x20\xb9\x77\x61\x67\x8f\x05\xd6\x53\xc2\x39\x30\x12\x9c\xc3\x73\xe6\xb2\xec\x22\x36\xec\x78\xe2\xeb\x7d\x42\x02\x32\xd2\x96\x44\x1f\x0f\xaf\x43\x70\xe3\xb9\x8e\x32\x3e\x4f\xcb\x56\x5c\xf9\x86\xa5\x33\x00\xeb\x27\xb6\xdf\x00\xac\xe7\xcb\xeb\x56\x6a\xd1\xe5\x62\xba\xc0\xfa\x19\xa1\xdf\xc6\xfd\xe9\x05\x39\x21\x17\x60\x0f\x27\x4e\xa9\x01\x60\xbf\x70\x11\x0e\x00\xfb\x49\xb4\xd6\x00\xb0\x5f\xcf\xd1\xf9\x4c\x56\xc5\xde\xc7\x8d\xb8\x88\x6f\x7e\x81\xf6\x64\xc1\x9f\x01\x05\x7f\x12\xb9\x32\x00\xed\x27\xc8\x73\x00\xda\x23\x64\xff\x58\xa0\xfd\x3c\x93\xf7\xfc\x10\x4b\xf4\xb9\xfd\xfd\x25\xdb\xa7\xd5\x5f\x6b\x57\x8c\x27\x23\x3e\x3c\xd9\xba\xe3\x91\xcc\xab\x0f\x43\x34\x3e\x21\x7c\x35\x51\x07\x42\xf8\x2a\x25\x8c\x4c\xfe\x0c\x65\xa2\x46\xfe\x1d\x7e\x30\xf2\x2b\x1d\x68\xe9\xfc\x81\x54\xde\xe1\x78\x82\xd8\x93\xdf\x0d\x88\x3d\x42\x02\x0f\x2a\xd6\x69\x1f\x8f\x8c\x3e\xd4\xb4\x95\x8b\x6a\xdd\x9f\x36\xaf\x65\x3a\xe0\x98\x1d\x0b\xad\x5f\xc1\xb9\x46\xf6\x7b\x00\x37\x8f\xcc\xb2\x85\x5d\x39\x1e\xa4\x5e\xfa\xf4\xfd\x23\x7a\x6f\x2e\xff\x28\x9f\x58\x46\xf5\xff\xf5\x8e\x77\x10\xca\x80\x62\xd7\xdf\x3e\x9e\x2a\x75\xe1\xc9\xce\x18\x48\xe3\xed\xcf\x11\xe1\x25\xb8\x2f\x47\xe1\x1d\xfb\xbd\x16\xde\xf1\xee\x53\x56\x5f\x2f\x4d\x8a\x85\xcc\x6f\xf9\xa5\x51\xde\x1c\x11\x6b\xd9\x8d\x85\xca\xd3\xe9\x92\x4a\x80\xfc\xa6\x01\xb5\x10\xf9\x7d\xe3\xee\x1c\xf5\x8f\x29\x52\xc9\x91\xc0\x25\x3d\x2a\xf9\x30\x5e\x57\x09\xad\xc0\xa0\x1d\x56\x41\x1f\x1e\x2d\xf3\x23\x3c\xf7\xa4\xdc\x18\x4e\xa4\x81\xce\x9d\x72\xfc\x83\x4c\xf7\xdd\x75\x45\xea\xdc\x4d\xeb\x29\x31\x17\x1e\x57\xf4\x10\x7d\xdb\xeb\x85\xbe\x63\x72\xfd\xa8\x6f\x6d\x97\xf9\x9c\x4d\x0a\xa8\xdb\xe3\x42\xde\xd9\xdc\xb7\xb1\x90\xf7\x75\x12\x6d\x38\x16\xf2\x8e\x2b\x50\xe7\xbf\x97\xf4\x07\x90\xef\x4f\xd5\xdc\x61\xdc\xfc\xcf\x12\x0c\xf0\x1d\x7f\x8a\xa5\x8f\xf6\x39\x66\x48\xcc\x18\x0b\x94\x8f\x8e\xbf\x7d\xb4\xb7\xe8\xa4\x59\x14\x83\x64\xf8\xfd\x39\x7b\x2d\xd3\x03\x1e\x60\x2c\x40\x9e\xfb\xe9\xb3\x91\x01\x03\x9e\x8d\x05\xc6\xaf\x46\xc4\xef\x40\xf2\x2e\x5c\xfe\xb7\xd0\x47\xee\xb6\xf0\x2d\x92\x2a\x5d\x3a\xba\x15\x07\x69\x33\xb2\x77\x91\xe8\xab\xb1\x40\xf8\x90\xfd\x1f\x0b\x84\x07\x05\x1c\xc6\x02\xe0\x49\x6a\x78\xf4\x77\x3b\x1a\xf8\x2b\xc7\x02\xe1\xb1\xbb\xeb\xa3\x79\x5f\xb5\xe3\xfe\x14\x4f\x1f\x0b\x7c\x47\xf9\x84\xf1\x64\xb4\xa7\x87\x54\x1a\x5d\xf5\x4f\xef\xfb\x96\xb6\x31\xc2\x79\x74\x3e\xe9\xc3\xb3\x49\x01\x74\x1b\x80\x0e\x2f\x22\x11\xe8\x70\x4b\x68\x0e\x40\xf7\x81\x43\x63\x18\x1f\x6f\x7f\x06\xa0\x53\x9b\xda\x6c\x76\x6d\x9d\x27\x2e\x7e\x7f\xf4\x65\x06\x71\xf1\x97\x1b\x26\xb2\x76\xc5\x05\x7a\xbc\x59\xb0\x16\xd8\x19\x0b\x6c\xa7\xfb\xb9\xf7\x5b\xca\x68\xda\x03\xab\xa6\xbb\x30\x10\x1b\xbf\x69\x53\x0f\x2c\x10\xe7\x1b\x62\xf6\x55\xab\x6c\x10\x1b\x6e\x0f\x26\xdb\xaf\xa8\xf2\xa1\xc1\x73\x6f\x6e\x23\x80\xec\xa1\xe5\x4c\x85\x39\x95\x41\xc7\xfc\x33\x8f\xc9\x60\x4f\xb8\x82\x06\x14\xf8\x0e\x78\x1e\xf3\xcd\xed\x99\xda\x94\x0b\x60\x8f\x2e\x5a\x24\x7b\xfd\xf2\xd3\x9b\xef\xbb\x1d\xb8\x31\xc6\x42\xd1\xe7\xf1\xb4\x69\xd1\xc2\xa7\xd8\x69\xf6\x3f\xad\xc0\xd4\xb0\xe7\xd3\x74\xd6\x75\x97\x89\x88\xbd\x9c\xc1\x5c\x08\xfa\x4c\xcc\x9e\x89\x84\x9d\x94\xe1\x5c\xe8\xf9\x8a\xdd\xa3\x2f\x8f\x89\x2d\x6f\x3e\xd9\xec\xf7\xa3\x9e\x30\x37\x52\x19\x69\xd3\xdc\xde\x08\x18\xb9\xa9\xb9\x7d\x59\xce\x38\xf3\xe6\x42\xd1\xc3\x0c\xe7\x09\x0d\x6e\x69\xb1\xf9\x3f\xc6\xde\x24\x69\x77\x9f\x4b\xee\x9b\x6b\x15\xdf\x0e\x8c\xbe\x89\xa8\x99\xc7\xf6\x1e\x40\x02\x70\x68\xa0\x52\x45\x59\xda\xbf\xe3\x3d\xbf\x04\xf8\x5e\x85\xe2\x7f\x3d\x78\x06\xe4\xc3\x06\x24\xd1\x9c\x3c\x4d\xa6\xbb\x3c\x5f\x92\x4b\xdb\x86\x9e\xb3\xb8\x05\x36\x44\xf6\xd5\xa9\x7d\xeb\xba\xcd\xa6\xae\xbd\xf9\x6a\x6c\x79\xfa\x33\x89\x13\xdb\x90\x73\x95\x74\xd8\x26\xc9\xfd\x21\xd5\x60\xc3\x57\xa7\x62\xc7\x4d\x05\xfb\xc3\x3c\xb3\x09\x7b\x07\xaa\x27\xb6\x87\xc7\x49\x4f\x4f\x82\xbb\x64\x0f\x36\x15\xec\x4a\x5e\xde\x22\xaf\x67\x6c\x6d\xf8\xe9\x5e\x90\xe6\xfe\x43\x83\x7d\x7b\xe2\x57\x49\x6d\x99\x14\xfe\xf2\xed\x48\x6c\x17\x03\xee\xf6\x94\xaa\xb2\x58\x6f\x38\xe9\x1e\xe6\x90\xfd\x87\x06\xfb\x26\xa1\xfd\x65\xcc\x6c\x43\xc6\x7d\x63\x66\x6c\x43\xc5\x59\x4a\x87\xdb\x10\x71\x7e\xde\xbf\x4d\xf1\x3b\x90\xfb\x7a\x6e\x00\x7f\x3b\xd6\xf5\x0e\xb0\x92\xd2\xc9\x37\x34\x75\x81\xd0\xd3\x86\xa6\x2e\xe8\xe5\x02\x92\x2b\xd3\xef\x86\xa6\x4e\x7e\xcc\x6d\x00\x39\xf7\x47\xff\x61\x6d\x79\x5d\x13\x80\x4c\x28\x68\x93\xd7\x2e\x28\xba\x23\x2a\x54\x4c\x81\x1b\x39\xf6\x84\x9d\xb2\xe1\xa7\xaf\x04\x9b\x36\xfc\xf4\x9d\xa9\x68\x47\x85\x4a\x78\x2d\x80\x61\x49\x14\xed\x48\x62\x67\xd4\x91\xe6\x0f\xec\xe7\x3f\x42\x5d\x53\xe7\x49\x97\x40\x5b\xe4\x73\xab\x63\x45\x74\x18\xa2\xda\x89\xc4\x0e\xf6\xe5\x36\x10\x5c\xa4\x86\xb5\x09\x4d\x3b\x42\x72\x9b\x0a\xf4\x9c\xb4\xf5\x51\xd3\x61\xed\xed\x44\xbd\x82\x5a\x60\xe0\x37\x07\x7d\x50\x03\xbf\x4b\x5e\xfe\x0d\xf1\xbc\xcf\xda\x2a\x94\x4a\xd1\x02\xc0\xaf\xd7\x7b\x3b\xf9\xeb\xf3\x38\xb3\xb6\x01\xe0\xee\xb3\x8e\xbe\x64\x2a\xa2\xb2\xd8\x54\x9e\x47\xc0\xea\x4e\xe8\xfe\xbe\x6a\x13\x53\xb1\xd7\xb9\x28\x08\x6a\x18\x53\x79\x9e\x99\xe2\x37\xa1\xe7\xc0\x54\xbb\x01\xc0\x91\xfc\xa2\x8d\x92\x9c\x38\xa8\x76\xbe\x95\xf6\xf2\x65\xee\xcc\xb3\xb2\x7c\x6f\x03\xc1\x55\x79\x33\xdb\x00\x70\x7f\xb0\x96\xb7\x01\xe0\x24\xa7\xdb\xce\x77\x5a\x7a\x29\x62\xdc\x06\x80\x5b\xc4\x79\xb1\x0d\xfc\x36\xf1\xf6\x6c\x03\xbf\x4b\x5a\x90\x3b\x13\x6e\x4f\xba\x12\x54\x6b\xaf\x5a\xf8\x3b\xb6\xb5\xf3\xef\xd8\xd6\x36\x64\x9b\x83\x26\x20\x43\xb6\x59\x75\x0b\xdb\x90\x6d\x52\x32\xe3\x56\x88\x99\x64\xc7\xad\x6a\xf2\xe4\xe6\xd4\xf8\x2a\x30\x26\x6b\x42\x37\x64\x9b\x13\xd9\x60\xbb\xd4\x3f\xee\x69\x96\x72\xc0\xe6\xde\x86\x6c\x9b\xf8\xc3\x36\xa4\xf2\x59\x53\xef\x1f\x6a\x71\xbb\xb0\xd4\x90\x92\xba\x0d\xd5\x2e\x79\xfb\x77\x11\x4f\x94\xae\xb2\xb1\x53\xb9\x7b\x45\x44\x00\xa7\xce\x06\xd5\xaa\x72\x66\x57\x4a\xad\x34\x25\x19\xaa\xed\x2a\x9b\xdc\xa0\xda\xa1\x91\x68\xa8\xb6\x2b\xf2\xb5\x51\x85\x53\x75\xc2\xae\xe8\xe7\x7b\x6d\xd9\x72\xaa\x8c\xb1\x6d\xa8\xb6\x48\x5b\x7f\x83\x6a\x9b\xd7\x55\xcc\x42\xde\x55\x5b\x2f\xe7\xf1\x44\x24\x99\x17\xdc\xaf\x5b\x95\xe2\xa5\x1f\xce\xa2\x4d\xa5\xb8\x64\x70\x37\x32\x6f\x5b\x4b\xa6\xa1\xda\xa5\x40\xf0\x36\x54\xdb\x44\x9f\xb1\x0d\xd5\x36\xe5\xca\xed\xa6\xda\x12\xde\x54\xa3\x4c\x96\x70\xf9\x26\x0c\x1d\xf4\x65\xda\xa7\x21\x8f\xbf\x62\x13\x8a\x5e\x5a\x54\x0d\xd5\x36\x63\x9a\xfe\xe7\x29\xdb\x00\x6f\x1d\x5a\xcf\x0d\xf0\xd6\x81\x7f\x67\x37\xea\x0a\xa6\x2e\x69\xdd\x58\x4c\x87\x9b\x62\xf1\xa1\x49\xda\x80\x6e\x2d\x78\x31\x37\xb9\xe6\xaa\xb8\xdb\x06\x70\x8b\x32\x4d\x36\x51\x6a\x91\x37\x6c\xc0\x6d\x26\x9c\xb8\xfb\x95\x46\x91\x65\xba\x3b\xdc\x30\x7a\x91\x14\x8b\xab\xbc\x66\x1b\xb8\xad\xd2\x95\xde\x06\x6e\x6b\x94\x05\x01\xb8\x95\x80\xcd\x06\xdc\x46\x75\x01\xd1\xbb\x6d\x1d\xf9\x52\xf1\xcc\xc7\xf9\x42\xd1\xeb\xd1\x1e\x7b\xce\x82\xb7\x74\x03\x70\xb7\x3a\x21\x8a\x6e\x8d\xa8\xfa\x1e\x10\x20\x68\x69\x32\x70\xbb\xe4\x65\xdd\xe3\x2b\xa1\xc1\x9d\xb1\x4f\x05\xf8\x73\x8a\xf9\xb6\x01\xdc\x26\xb6\xdc\x7d\x42\xd0\x7d\x4e\x02\x62\xdb\x00\xee\x5a\xb2\x2b\xa8\x00\x77\x1a\x8c\x54\x80\x97\x73\x25\x5b\x6e\xc6\xd4\x16\xcb\x0d\xe5\x62\x5b\x84\xee\x45\x77\x41\xf6\xa7\xa9\x95\xf6\xac\x92\xad\xda\xca\x1b\xaf\xf5\x64\x59\xed\x3f\x00\xee\x06\xe0\xbe\x38\x8f\xb6\x01\xdc\x7a\x96\xc6\x87\x25\x55\x53\xf0\x83\xe4\x0f\xd9\x49\xdb\x00\x6e\xcc\xea\x01\x06\x70\x6b\xd0\xf7\x46\xcd\xed\x55\x3f\x7a\x20\x38\xd1\xe2\x02\xc0\xed\x1a\x70\x54\x7e\x9f\x45\xcb\xc0\x6d\x7a\x01\xcd\xdb\xc0\x6d\x17\x5b\xd1\x46\x3b\xdd\x6b\x98\x18\xb0\x5d\xca\x72\xda\x84\x94\xa5\x60\xb6\x01\xb6\xbe\x68\xcb\xc3\xae\xc9\x55\x0c\xbd\x96\xa0\x09\xf5\xfd\x9d\xd9\xb4\x0d\xb5\x46\x95\x2d\xee\x97\x12\x38\xf5\x4b\xaa\xbd\x23\x05\x8e\xdb\x10\x6b\x89\x54\xf9\x6c\x43\xab\xa5\xa9\x5f\x1a\x5a\x8d\x79\x6a\x6b\x10\x90\xe5\x4d\x18\x5a\x6d\xaa\xb9\xd9\xef\x55\x22\x5c\xa7\x3d\x36\xfd\x8a\xd9\x77\x8b\xa4\x7d\xea\x3f\x1b\x9b\xaa\x30\xdf\x86\x56\x73\xc4\xad\xb7\x0d\xad\xf6\x42\xb5\xec\x9e\x5f\x0d\x88\xcc\x11\x92\xb9\x1d\x51\xb9\x6d\x88\x75\xa9\x42\x60\x1b\x62\xad\x55\x8b\x83\xa1\xd5\x25\x31\xa5\x4d\x85\xb7\xf2\xcd\xb6\xc2\xc5\xb9\x1e\x1a\xbb\x3d\x21\xab\xd1\xf3\x4c\xe6\x20\x8d\x56\xd0\xaa\x3b\x77\x79\xd9\x62\x06\x40\xa1\x4d\x1c\xaf\x1b\xa4\x9a\x35\xa2\xc4\xbd\xa6\x05\x10\x3d\x74\x55\x95\x6c\x88\xd8\x83\xee\x6e\x48\xb5\x28\x5b\x6b\x1b\x52\x6d\xaa\xa2\xdf\xeb\x66\xec\x1d\xfb\xda\xd0\x6a\x73\xa0\xeb\xad\x0a\x6e\xb0\xe9\x36\xa4\xda\xbc\xd0\x86\x21\xd5\x5a\x83\xee\x89\xc0\x32\xf9\x92\x7b\x5d\xd5\x41\x25\x00\x6c\x78\xd7\xb2\xe6\x36\xb4\xd0\xeb\xd0\xd1\xe8\x63\xff\xcc\x99\xff\x3c\x7d\x23\x93\xee\x65\xf3\x22\x93\x5e\x05\x9c\x0c\xc0\xb6\x81\x97\x7a\x6f\x86\xab\x60\x98\x81\xd7\xa6\x20\xd7\x86\x8b\xbd\xe2\x56\xd9\xe2\x62\x27\x8c\xb1\x37\x95\x7d\xfa\x54\x80\xd7\xae\xe1\x4a\x11\xf7\xd4\x10\x01\xb8\xae\x73\x77\x1e\x5f\x0f\xb4\x7f\x67\x82\x6c\xf2\xb6\x55\x8a\xb3\x09\xfd\x56\x82\x1d\xfb\x17\x07\xbb\x2c\x43\xf2\xb6\x13\xc9\x59\x9b\xbc\x6d\x64\x44\x93\x73\xca\x02\x29\x6c\x79\x88\xfa\x12\x5b\x54\xaf\x9a\xd5\x93\x9c\x01\xd7\x08\x80\x4b\xce\xfd\x02\xe8\xc9\x11\xf2\x75\xb6\x7a\x27\xe7\xe8\xca\x66\x11\x25\x67\x80\xb5\xee\xaa\xf3\x3e\x5d\x65\x8b\x0c\x24\x67\x60\xb5\x38\x73\x6d\x24\x67\x60\x35\x3d\x36\x89\x27\xe7\xae\xc2\xde\x4c\xba\xb6\x4d\x4d\xe1\xb4\xfe\x66\xbc\xa0\x05\x96\x9c\xbb\xf5\x08\x84\x43\x93\x43\x0a\x3d\x27\x9e\xc2\x00\x6b\x0a\x0f\xff\x01\x58\xe3\xe2\x5c\x08\xd6\xfd\xf9\x0f\x07\x4c\xa2\x5d\xfe\x0b\x73\x27\xda\xed\xaf\x80\x2a\x56\x6b\x72\x1e\x09\xa2\xa4\xad\x5b\xb2\x74\xde\xb5\x81\xd7\x16\x16\xcf\xf6\x69\xa2\x53\x8b\x9d\x9c\x57\x89\xa2\x5a\x4a\xc2\xdb\xb9\x9a\x59\xfe\x41\x4f\xe9\xbf\x8c\x2f\x4b\x07\x4d\xee\x23\x58\x9f\x83\xf7\xee\x3f\x4d\x0d\x5b\x60\x93\x3b\xf9\xd9\x43\x49\xc6\xc9\xa9\x4a\xdb\x52\x4e\x79\x6a\x72\xb4\xa1\xe7\x4e\x2e\xdc\x8a\x65\xea\x6d\x93\x03\xd8\xe2\xc0\x4a\xee\x57\x8e\x76\xe0\x3d\x9d\x1c\xed\xa5\x5a\xd7\xe4\xc2\xcd\x59\xa7\x7a\x35\xb9\xf0\x4b\x73\x80\x5e\x11\xfa\xb7\x58\xab\x65\xe3\x77\xff\x0a\x9f\xbe\x88\x7a\x06\xa8\x76\xab\xa7\x86\xaf\x56\xa1\xe9\x1e\xeb\xee\x51\xcf\x09\x10\x94\xe8\x5b\xc4\x4f\x6b\xc2\xf3\x4e\xa3\x04\x37\xb9\x3e\x08\xd7\x3b\xda\x67\x08\x37\xc2\xca\x99\x1c\x21\x5f\x48\xf1\x92\x03\xe1\x22\x92\x93\x1c\xa4\xec\x35\xf1\x14\x68\xa9\x13\xaf\x49\x2e\x7e\x19\x4f\x6a\x77\xec\x9f\x23\x8f\x56\x46\x9c\x35\x85\xa7\x88\x5f\xd6\xd3\xa3\x33\x48\xec\x2c\x6a\xc9\x3c\x59\x2d\x08\xe8\x26\xa7\xb0\x6f\x6a\xf3\xdd\x6a\xd1\xd7\x0f\x16\xdf\xf8\x10\xb3\xf7\x39\x23\xf7\x39\xe8\xd7\x8b\x62\x32\xb9\xf4\x31\x0b\xab\x87\xa5\x5b\x9b\x83\xb6\x5e\x72\x22\x67\x6f\x8c\x07\x34\xd6\x6b\xe5\x8b\x29\x29\xfb\xe7\x8a\xea\x6b\x87\x7f\x6d\xcf\xb7\xd3\x57\x90\x60\xf3\x8f\xce\xef\x6c\xd1\xb3\x90\x60\x23\x73\x28\xb9\x24\xad\x11\x9d\xc7\x3b\x78\x79\xe2\xa4\xac\x3f\xbe\x94\xa1\x60\x2b\x59\xb2\xad\xcd\x7f\xb4\x20\x7f\x35\x1b\x83\x2f\x62\x48\x38\xfb\xe7\x2f\x8e\x99\xe4\x72\xf8\xdd\x1d\x7f\xe7\x65\x27\x97\xe9\x0e\x1a\x20\x14\x72\xc7\x57\x5b\x4c\xf7\x91\x97\x9a\x3f\x72\xe5\xa0\xff\x49\x02\xad\x74\x4a\x72\xb2\x83\xd3\x16\x4e\x9d\xa0\xa6\xca\x4f\xc9\x83\x01\x90\xcf\x34\x46\x54\x38\x64\xba\x90\x01\xe4\x0c\x4d\x6d\x72\x84\x7e\x51\x38\x4e\x4e\x00\x59\x53\xa3\x01\xe4\x8a\xe7\xcb\x68\x70\x6c\xa2\xe4\x73\x10\xfa\x0d\x8b\x0e\x62\x00\xf9\x07\x2d\xb1\x95\xef\x44\xa2\xe1\x5a\xae\xda\xde\xab\x89\xe0\x53\x60\x5b\x1a\x52\x00\xe5\xac\x09\x15\xee\xf5\x35\xb5\x35\xbe\xdc\x04\xdd\xf1\x39\x5d\x1b\x91\xfe\xe4\xca\x47\x30\xbc\x78\x0b\x85\x38\x83\x3a\x68\x59\xbf\xbf\x4a\xb9\x09\x5f\xa4\xa9\x26\x67\xc0\xb9\xbc\x2f\x6f\xf7\x97\x0a\x9b\xde\xb0\x81\xe7\xd2\xbc\xfe\xa7\x5a\x75\xf2\x6e\xc8\xdf\x76\x89\x61\x27\xf5\x35\x4d\xb4\x06\x9e\x4d\xfa\xd7\xb6\x3e\x1d\x86\x45\x57\xae\xc4\x54\x26\xed\x32\x00\x9d\xd2\x50\x9b\x90\x56\x29\xfa\x8f\xec\x96\xca\xf3\x1e\x32\x75\x2f\xd2\xf7\xe4\x00\xd1\x51\x53\xa0\x40\xf4\xcf\x3b\x8f\xba\xda\x2d\x47\x41\x83\x22\xb9\xf6\x95\x20\xea\x4b\x51\xb1\x5d\x97\xfe\xb7\x69\x2e\x76\xfd\xf7\x29\xee\x75\xee\x08\xe5\x5a\xd4\x02\x42\x5e\x77\x54\x6b\x9a\x2c\x73\x5a\x43\x88\x38\x0e\xfa\xe0\x21\x4e\xcf\x93\xaa\xf7\xe4\x9a\x18\x74\xf9\xde\xa0\xe6\x28\xd3\x82\x30\x71\x7c\x19\xc2\x86\x9a\x73\x54\x1f\x15\x6a\x56\xaf\x51\x6e\xf7\xd9\x02\x7d\x6c\x5a\xd0\xb1\xcc\xd5\xa3\x0c\x35\x1b\x37\xb7\x6d\x85\xdb\x1b\x1a\xd3\x86\x21\xe7\x1c\xd5\xbf\x85\x9c\xad\x6f\xe9\x8c\x7c\x82\xab\xc4\xce\x92\x43\x1f\x3d\x6e\xde\x5c\xff\x2a\x51\x65\xf6\x28\x3c\xac\xf7\xdc\xa9\x37\xa8\x6a\x8d\x7d\xe7\x1c\x74\x6d\x48\xe2\x35\x5e\x09\x0f\x93\x3a\x9a\x9c\x21\xe8\x9c\xd4\x23\x4e\x25\xf6\x98\x38\x43\x92\xeb\xfb\xf3\xf6\xd3\x4f\x0c\x45\xe7\x9c\x39\x63\x10\x3f\xd3\x53\x0e\x1c\xb5\x5a\x6e\x0c\x45\xa7\xaa\xc9\x6f\x5c\x66\xd5\xad\x71\xfd\x85\x88\x97\x7a\xeb\xa0\xa6\x44\x8b\xcf\xa7\x9e\x06\x82\x48\x6e\x7c\x19\x4c\x0f\xdf\x72\x7c\x1a\x1b\x9d\xfe\x3f\x78\x76\x2d\xc3\x03\xa4\xa9\xd9\xd2\xd0\x74\x4e\x41\xad\x95\x7e\xb4\x8e\x84\x55\xb5\xa9\xb5\x84\xc6\x07\xef\xf3\x37\x92\x4e\xee\xf9\x55\x8d\xcf\xb9\x4a\xde\xb6\x04\x72\x46\xe9\x43\x59\x6d\xa6\x37\x3e\x37\x79\x15\xca\x94\xe4\x0c\x55\x97\xf2\xf7\xa5\xe0\xb9\x55\x79\xaf\x5e\x8b\xa2\xca\x51\xb7\x36\x50\x5a\xb4\x00\x3c\x57\x43\x01\xad\xb0\xe4\x00\xde\x45\x9f\xe4\x37\x87\x7a\x72\x0f\x49\x4e\x7a\xb9\x0f\x3e\xb3\xc4\xcb\x31\xe0\x5d\xdb\x66\x90\x00\xbc\x8b\xb6\x24\x93\x2e\x1b\xc2\x80\x77\x8e\x1a\x16\x70\xa7\x57\xd9\x5e\xe4\x70\x17\x59\xbc\x2f\xa5\x35\xfa\x18\xef\xb5\x68\x77\xe1\xa5\xbf\xca\x02\xa1\xeb\xbd\x97\x7b\x67\xa9\x4d\x14\x5f\xd7\xa4\xa3\xaf\x72\x14\x45\x48\xc9\xbd\xd0\xcb\x15\xb5\xc4\x00\x9b\x6b\x74\x74\x2a\xab\xab\x96\x9b\x97\xaa\x62\xd9\x83\xef\xe5\x60\x79\x35\xd9\xbd\x0c\x75\x4d\x5b\x5f\x65\xf5\x2b\xdb\x8a\xb0\x31\x05\x3d\xc9\xcd\x5b\x4e\xf7\x6a\xf1\x98\x97\x87\x06\x4a\x81\xe4\x0c\x8c\xe7\xa6\xc9\xff\xe3\x4c\xa7\xda\x35\xb9\x09\xef\x90\xac\x43\x03\xe4\xb9\x69\xca\x87\x72\x2d\x17\x5a\x3b\x51\x90\xd2\x54\x82\x4a\x5a\x93\x05\x72\xf2\xb6\xd3\x5c\x5a\xba\xa9\xa6\x6e\x9b\xb7\x60\x80\x3c\x3f\xb2\xde\x0c\x90\xe7\x63\x3d\xce\x8f\x7b\x27\x73\xed\x75\x09\x38\x28\x6f\x49\x6e\xc1\xbb\x22\x0b\x87\x10\x72\x1e\xb4\xcb\x80\x79\xee\x7a\x82\x45\xa5\xa9\x06\xff\x92\x56\xb6\xce\x33\x33\x65\x69\x72\x5e\xdf\x12\x26\xc3\x65\x41\xba\x11\x78\x97\xab\xff\xee\xb3\xeb\x13\x0e\xed\x7c\x4b\x03\xe6\x2d\x0b\x51\x18\x30\xcf\x5d\xb6\xdb\x9a\xdf\x14\xa2\x6b\x7f\xdf\xba\xa9\xdd\xfb\x43\x15\xbc\xef\xfd\x8b\x70\x81\xb7\xb8\x29\x4d\xd2\x64\xbf\xbf\xf2\x49\xbd\xd7\xfd\x49\x09\xc9\xbe\xdc\xbf\x04\x83\x79\x07\x86\xcc\xcb\x14\x32\xdd\x9f\x3c\x56\xe0\xdd\xee\xef\x3d\xc8\x0c\xd8\x94\x51\x6e\xdd\xf5\xe6\xac\x53\x93\x62\xe9\x1e\x56\x29\xaf\x36\x40\xa4\xac\xfe\xb6\x25\x9e\xaa\x7b\xff\x52\x87\xd3\xd5\xfe\x30\x5f\x40\xe9\x15\x9c\xe5\x51\x49\xa3\xae\x3d\x79\x07\x11\xbe\x39\x95\x92\x27\xbc\x8c\x03\x3a\x79\x77\x1d\xa5\xa4\x6d\x26\xaf\x10\xf3\x8f\xb5\xcf\x58\xf0\xee\x2b\x1f\xf5\x3a\x46\x89\x8c\x81\xad\xef\xb9\x1f\xdd\xdf\x9e\x9b\xea\xe1\xe4\x51\x4c\x0b\x16\xb0\x4e\x9e\xf0\xf2\x53\xd5\x36\x12\x54\x9b\xce\x7b\xf9\xef\x65\xeb\x2b\x1b\x04\x3b\x79\x11\xa5\x3b\xb5\xcb\xf8\xd3\x1a\x0b\x99\xf7\xb7\x4e\x69\xe9\x7f\xe4\xd0\x1e\xbe\x85\xf7\x97\x39\x01\x7d\x97\xe4\x0f\x8f\x5a\x99\x94\xeb\x25\x2f\xd4\xfe\x83\x42\x86\xce\x22\x14\xbb\x79\x12\x0f\xa5\x5e\xd7\x1d\xcd\x79\x3a\x3d\xcf\x65\x68\x3d\xbf\x4e\xe7\x5d\xe6\x84\x9d\xfe\xa2\x4d\x9d\xbc\x47\x35\xcc\xeb\x26\x70\x8f\xbc\x3c\xb2\x27\xb4\xe5\xd5\xe4\x79\xe2\xeb\xef\x69\xe0\xb7\xe2\xd3\x0d\xbd\x01\xf9\x2c\x0b\xc8\x43\xb3\xd6\x58\x9f\xbd\x01\xf8\x8c\xea\x6f\xf2\x81\x4c\x83\xa5\x23\x89\xb8\x33\xd5\xfb\xa0\x3c\xe5\x87\xad\x7c\xe3\xfa\x5b\x47\x97\xb3\x67\xb1\x90\xf9\x40\xd9\x82\x5e\x07\x34\x6b\xa4\x56\x26\x4f\xf8\x19\xad\xb9\xe4\x0f\xc5\x5a\x95\xb0\x45\xf2\x84\xa0\x5f\xf3\xf3\x27\x0f\x58\x87\xb4\x2f\x79\x03\xeb\x2d\x00\x4f\xbd\x01\xf5\x08\xc5\x6e\xf2\xe1\xe3\x99\x01\x7a\xfb\x03\xd4\xdb\x3c\x6f\xe0\x70\xa8\xb7\x49\x8e\x87\x51\xc1\xff\x5c\x91\xe5\xcf\x03\xd6\xc9\xfa\x4e\x1e\x15\xb5\xe7\xa5\x6b\x1b\x58\xcf\x2b\xf0\x2d\x22\x12\x30\x2c\xcc\x3e\xfe\x0a\xeb\x25\x6f\x60\x7d\x79\x2c\x13\x1f\xaf\x62\xd6\x8b\x9d\xe3\xe3\xf8\xc2\x9b\x6a\x85\x72\xd3\x75\xdf\x17\xb9\x56\xb5\x69\xfe\x71\xed\xc5\x91\xbc\xcb\xf8\x15\x91\x33\x15\x79\xaa\xa6\x97\xe3\x79\x0d\x9c\x2f\x1f\x39\x5a\xc0\xbc\x78\x15\xc1\x27\x4f\x68\x7a\xe9\x3b\x02\xca\xd1\x13\x4e\x3e\x21\xf7\x83\xfd\xee\x0d\x94\xe7\xa5\x37\x8f\x5a\x5a\x63\x8a\xf7\x09\xd9\x17\xaf\xf3\xec\xfb\xca\x2e\xf4\xe9\x72\xe4\xc3\xfb\x98\xbc\x2a\xa4\x7f\xb0\x07\x38\xd3\x1b\x28\x37\x39\x0f\xdb\x9a\xd7\xb1\x84\xfd\xe5\x13\x4a\x71\x67\xeb\x52\xaa\xbd\x9a\x2a\xf2\xfd\xce\x5b\x13\xcb\x51\x4a\xeb\xf3\xd5\x7b\x31\x14\x9e\xb5\x80\xfb\x5f\xb4\x6a\x18\x18\x1e\x24\x2e\xc4\xe1\x33\x34\x82\x49\x57\xfb\xc8\x52\xd4\x33\x0c\x8d\x67\xd8\x79\x92\x07\x89\xcf\x47\xff\xa1\x83\x9c\xf9\xfa\x47\x1b\x3d\x89\xb6\x25\xf9\xfc\x65\xd1\xe0\x8a\xf1\xf9\x66\x85\xbd\x5b\x4f\x74\x4b\xb2\xf0\xea\x27\x9f\x09\xd1\x4f\xdd\xe3\x73\xcc\x74\xda\x5f\x2e\x9b\xe6\x02\x45\xfb\x82\x43\x36\xf2\xfc\x24\x67\x17\x8d\xf6\x42\x39\xa2\xde\x46\x81\x32\xf2\xe5\x69\x0a\xcb\x7b\xd4\x55\xa8\x41\xe8\xb4\x5d\xc8\x3c\x1d\x52\xf0\xe4\x0b\xba\x10\x7a\xcb\x86\xcc\xe3\xd2\x7b\xa3\x52\xda\x9d\x16\xfe\x36\x57\x3d\x8a\x68\x6e\xf1\x06\xca\xb7\xa4\xa9\x67\x96\xf5\xed\xe1\x4d\x96\x5b\x15\xbe\xc0\x33\x9e\x24\x6d\x21\x14\x5f\x71\xc2\x2d\x5a\x42\x45\xf5\x50\xef\x85\x37\xcd\x17\x1d\x89\x22\x1e\xe6\xa3\x97\xdc\xd9\x4f\x7f\xd4\xf8\xab\x97\x2c\x02\xb1\xac\xe4\x91\x3b\xf3\x4d\xd7\xc6\xf9\xb4\x75\xb5\x8f\x37\x28\xeb\x7c\xe2\x63\x9a\x53\x40\xe6\x0f\xe6\x9f\xaf\x9f\x27\x42\xe3\xbb\x5e\x35\xbc\x37\xff\x25\x37\x3f\x79\x03\xee\x45\x5e\x29\x5f\x2f\xad\xd2\xd6\x3a\x24\xd0\x5e\x8a\xc8\xeb\x92\x37\xd0\x5e\xbc\x06\x86\x81\xf6\xd8\xb5\x5a\x1f\x9e\xf4\x31\x67\xd3\xff\x97\x55\xf2\xd5\x70\x6d\xf8\xe7\xb1\xe3\x3d\x91\x70\x72\x52\x92\x87\x5e\x8d\x4c\xdf\xe4\x0d\xb8\x97\xa8\x65\xa2\x5d\x6d\x80\x33\xf1\x1b\x70\x2f\x72\x20\xf9\xf6\x95\x62\x55\xdd\x5b\x7e\x6a\xfd\x3f\x0f\x88\x5e\x9a\x4a\x1a\xf9\xce\x45\xf7\xfe\xa6\x7b\x3c\xdb\xde\x40\xbc\x29\x93\xda\x96\x3d\x77\xd2\xd4\x67\x20\xbe\x44\x0d\xaf\x23\x85\x9e\xe6\xc6\x67\xe9\xfb\x07\x68\x35\xc5\x19\x88\x2f\x5b\x13\xfc\x51\x3b\x7b\xee\x14\xd0\xff\x98\xf2\xfb\xe7\xb4\xf0\xda\x63\x4e\xaa\xa4\xee\x48\x55\x36\xe4\xce\xc9\x93\xe3\x9d\x70\xdd\x79\x54\xce\x46\xd1\x75\x27\xed\xd6\x7d\x11\x46\xcc\x7a\x26\xf3\x43\x67\x30\x9e\x37\xf0\x5e\x36\x28\xc6\x8f\x8f\x1f\x4a\x8b\xff\xf8\xaa\x70\xf5\xf5\x0c\xc4\x97\xac\x49\x00\x85\xb3\x5c\x74\x35\x7b\xde\xac\x69\xcb\xc0\xfb\x7d\x3a\x14\xce\xf2\xa3\xf3\x3e\x5f\xb4\x06\xba\x01\xf7\xf4\x68\xf1\x87\x3e\x2d\xe3\x55\xf5\x80\x76\x37\xd5\xa6\x4f\xe2\x47\xd3\x94\x01\xf7\xe5\xb1\x7b\x3d\x2a\x67\x79\xa9\xbd\x84\xfc\xf5\x7d\x9f\x4f\x04\x12\x44\xea\x0d\xbc\x97\xa2\xfe\xf5\x50\x97\x40\xd4\xc3\x3f\x28\x14\x26\xae\xfb\x7c\x89\xac\x95\xa7\x40\x9d\x8c\xb0\x7d\xf2\xcf\x9d\xa6\x27\x56\xb6\x87\xd0\xbc\xc8\x4c\x30\x74\xbd\x91\xcc\x4d\xfe\xf9\x48\xae\x35\xbd\x1e\xca\x33\x3f\xa7\xa6\x85\xe7\x17\xd5\x23\xed\x13\xb1\x79\x4e\xc7\xf5\xe9\x5f\x91\xb8\xd3\x22\x25\x69\xff\x8c\xbd\x4d\xab\x0c\x71\xf7\xae\x09\xce\x10\x77\xa9\x8e\x36\xbc\x1f\x89\x07\xae\x30\xff\x51\x9e\x41\x47\x91\x3c\x21\xef\xbe\xe9\x4b\xef\xc7\xfc\x29\x93\xe6\xbd\x3a\x06\x2f\xb1\x0d\x0f\xea\xae\x7a\x2b\x2f\x71\xa4\xa2\xa3\xdf\x8b\xd1\xf1\x50\xf8\xf7\x23\xbb\x5e\xda\x63\xdf\xaf\xca\x5c\x43\xa3\x3c\xc9\xa8\x9c\x10\x28\x10\xbb\xf3\x13\x95\x36\x2d\x8a\x54\x4c\xcb\x45\xed\xd1\x28\x6f\x32\xe3\xe6\x55\x63\xdc\xfa\x36\xf3\x8b\x1d\x69\x82\x37\xc4\x5d\x8e\xfd\x3f\x3f\xae\xa3\x42\xdf\x99\x64\x08\x6a\x34\x4e\x95\x0a\xf2\xcc\xf3\xe3\x38\x52\x4f\x33\xe4\x5d\xba\xbe\x3d\x12\x64\xe8\x5e\xfc\xc0\x81\x73\xed\xf3\x16\x26\x99\x82\xa7\xb5\xe8\x72\xab\x87\x2e\xe6\x24\xfd\x27\x62\xf3\x9f\x4e\xa6\x27\x05\x75\x3f\x9a\x7d\x0d\x75\x97\x3a\xf4\x1f\xc4\x1f\x45\xe7\x5e\x0f\x8b\xe5\x3d\xfd\xf3\x32\x61\xa0\x3c\x1d\x3b\x79\xd1\x0d\x34\x71\x51\x3c\xdd\xf1\xb0\x79\xd4\xc9\x1e\x01\xbe\x75\xad\xb5\x0d\xe8\xf6\x00\xf2\x28\x4b\x01\x40\xee\x64\x0d\x2c\x92\xeb\x64\x3d\x1e\x89\xf2\x29\xae\x9c\xe4\x4f\xe1\x74\x3b\x60\xdc\x43\x6f\x46\xa9\x74\xf2\xfb\xbe\x0e\x94\x99\x93\xdf\x70\xfa\x68\x31\xa3\x78\xfa\x00\xae\x4d\xf7\xc7\xcd\xe3\x01\xe0\x43\x43\x4b\x00\xbc\x24\x51\xd4\x26\x2f\x7a\x33\x2d\x1d\x06\xbe\xcb\xa3\xa9\xf9\x50\x9b\x85\x39\x35\x31\x42\x6d\xa6\x00\x9e\x27\x44\xfe\x44\xb5\xd2\x3e\xff\x83\xc7\xd4\xef\xaf\x58\x5e\x9f\x7f\x23\x4e\xa8\xc9\x71\x7f\x3a\xcd\x0c\xa9\xe0\x7e\xfb\x1b\x83\xbb\xfe\xc6\x69\x75\x79\x29\x40\x71\x56\x99\x4a\x83\x83\x1b\x85\x01\x1c\x0e\x00\x5f\x93\xec\xe0\x14\x08\x97\x3f\x4b\xff\x97\x63\x4d\xc8\x32\x0f\x0e\x31\xca\xa9\xad\x46\xaa\x62\x65\xeb\xfa\x57\xdf\xa6\xb6\xdd\x2a\x51\xa8\xb8\x53\x50\xd8\xdc\xbc\xc6\xda\x43\x7d\xc6\xb9\x3f\x08\x0c\xd7\x57\x30\x10\x5e\x5e\x3c\xd5\xc1\xdd\x2a\x51\x79\x74\x03\x21\xf3\xc4\x04\x17\xbc\xff\xfe\xe7\x6d\xf8\xf0\xb9\xfd\x12\x7b\x3e\x6e\x7f\xa7\x6b\x7c\xe1\x73\x06\x55\xf0\x97\xdb\x1f\xa9\xf8\x14\x3c\xce\xc6\xa5\xfb\xf0\xed\xf1\xc6\x07\xff\xe5\xb8\x63\xf6\x04\xe5\x7e\xe3\x92\x08\xfe\x8a\x90\x0a\xcf\x86\x43\x71\xd6\xe7\xdb\x79\x07\xe4\x80\xcb\xff\x1f\x0c\x79\x97\xa6\xb7\xea\x3f\xe9\x9a\xa0\xfb\x7f\x4e\x28\xc6\x55\xf8\xe8\xcd\xa6\x5a\x65\xe8\xbb\x28\xd6\x12\x0c\x7d\x17\x84\x9c\x52\x30\xf4\x5d\x56\xd5\x16\x2c\xbf\x38\x32\x42\xf8\x04\x1a\x2b\xad\x09\x97\xc3\x4a\x58\x3e\x7c\xd4\x66\x0b\x3c\x13\x0c\x81\x37\x68\xa6\x53\x08\xd7\xf9\xb4\xab\xae\x4a\xe8\x18\x04\x10\xc2\x6f\x4b\x3d\x84\xf7\x8f\x2d\x64\x7b\x40\xc1\x21\xdc\xd4\x81\xad\x1e\x2b\x14\x5e\xd7\x9c\x38\xa0\x42\xfc\x14\xdc\x40\xc4\x21\xe2\x84\xc2\x8a\x0f\xf1\x92\xa5\x40\x91\x9d\x02\x2a\x66\x1d\x47\x4c\x30\x14\x5e\xe4\x36\x0e\xa0\xf0\xa1\xef\x12\xaf\x10\xef\xcb\x42\x1f\x48\x0c\x47\x4a\x2a\x05\x74\xcc\x2b\xb3\x40\x30\x24\x5e\x64\x2a\x87\x78\xe3\x86\x8b\x50\x76\xa0\x42\x1a\xfe\xdc\x14\xe2\x55\x6e\x7b\x3b\xef\x25\x7e\xe9\x31\x51\xd7\x58\x44\x06\x78\xef\x11\xd6\xdf\xcd\xd5\x12\xe6\x19\xe6\x48\xa0\x42\x7a\xeb\x0b\x1b\x12\x8f\x72\x63\x86\x04\xab\xb3\xbe\x85\x78\xcb\x7e\xe6\xb2\xaa\x2b\x19\x22\x9b\x91\x27\x34\x24\x5e\x76\xe7\x7d\xa4\x5b\xc3\x32\xcf\x9d\x6c\xcc\x6f\x20\x42\x48\xd7\xb1\x6e\x7d\xf9\x1f\x97\x8d\x90\x2e\x77\xce\xd4\x23\xa5\xe7\x7b\x64\x06\x47\xfa\x00\xcc\x79\xd0\xf9\x41\x1a\x35\xe1\x52\xbb\xc1\xcf\x92\xc2\x89\xa6\xb3\x95\xbf\x61\xaf\x69\xef\x00\xf2\x36\x27\xee\xa9\x00\x65\x99\xd3\x67\x25\x77\x1c\x79\xf6\x14\x32\xe4\xd6\xc0\xef\xf0\xbb\x78\x3a\x85\x8c\x26\xab\x3a\x4f\x26\x6e\x70\xee\xfb\x22\x49\x48\x2b\x33\x1a\xb3\x84\x5a\x03\xaa\x63\x5e\x4f\x80\xea\x98\xd7\xf0\x2c\xbf\x7c\xe7\xdc\x93\xf0\xb7\x27\x28\x17\xa0\x20\xf3\x2c\x6b\x81\xf0\xf7\xc0\x39\x11\x0a\xd4\x6b\x84\x7f\x83\x81\xeb\x3d\x92\xfe\xfb\x34\x66\x8b\xce\x85\x7e\x4e\x9d\x1d\x62\xf2\x88\xfd\x15\xca\xfd\x94\x0b\x6c\x16\x20\x26\xf7\x81\x67\x2d\x1f\x69\xb5\x26\xeb\xf2\x09\x4e\x06\xb5\xfb\x17\xc1\x85\xae\xaa\xe7\xd6\x19\x1f\xa2\xd4\x7b\x01\x64\x3b\x4d\xd8\xd0\x96\x05\x7c\xb0\x81\x9c\xf1\x04\x90\x0e\x84\xbd\x03\x29\x01\xa1\xc2\xce\x89\x97\x38\x54\xf1\xb4\xd3\x29\x21\x27\x0f\xc4\x04\x02\xb4\x65\x31\xe9\xc8\x8b\xa4\x48\xd7\x4d\xa1\xa2\xab\xab\x29\xa7\xa2\xab\xab\x7e\x53\x9f\x6f\x3a\xd4\xd5\xb0\xd6\x4e\x7b\x2d\x2c\x18\xd4\x9b\x21\x28\x57\xb2\x43\x80\xa0\x7c\xe9\xbf\xe6\xbe\xa9\x84\x2b\x81\x9c\x9b\x26\x8f\x46\xb1\xbf\x06\x7e\xe3\x59\x35\x61\xfd\x26\x26\x4f\xa1\x51\x45\xaa\xbe\xd1\xae\x55\x8e\xc8\x6d\x0a\xed\xa6\x37\xbc\xe7\x18\xab\xcf\x69\x4b\xe7\x5f\x2e\xa7\x57\x3d\x55\x21\x6f\x70\x5d\x20\x51\x3c\xea\x7d\x90\x28\x1e\xc9\x68\x09\x86\x9a\x2b\x29\xaf\x29\xb4\x2b\xc1\xa2\x50\x66\x68\xd7\x79\x26\x47\x66\xe8\xd0\xd2\x69\x21\xed\x4c\xcd\x49\x5b\xdf\x38\x25\x11\x22\xf4\x1b\x1b\x41\xbe\x27\x85\xfe\x49\xef\xe8\x7b\x82\x9c\x15\xf9\x0b\x9d\xa5\x59\x26\x40\xff\x58\x86\x1f\x9d\xff\xa1\xc9\xc6\xf3\xf7\x4f\x87\x03\x57\x64\x50\x12\xf9\xd6\x19\x24\x91\xab\x9f\x11\x02\xef\x4e\x77\xfb\xd5\xbf\x19\xbb\x9d\x0c\x46\xcd\x5e\x9d\x6f\x0e\x3e\x09\xaa\x92\xb6\x8c\x42\xde\x9f\x50\xf4\x0f\x06\x1b\xb4\xc6\x50\x74\x4d\x64\x55\x05\x25\x93\x97\xa8\x34\xf9\x14\x06\x19\x9b\x49\x57\xe4\xdb\x93\xd5\x17\x06\x09\xab\xc4\x37\x82\xa1\xe8\x46\xf5\x76\x0a\x86\xa2\x6b\xc2\x9b\x11\x48\x22\x4f\xea\xc3\x24\x91\x47\x99\x64\xd2\x08\xd7\x28\x87\x80\x3c\xa9\xe7\x19\x7a\x4e\x5d\x4b\xe9\x2f\x02\xf2\xa6\xa3\xf7\x37\xa3\xf3\x84\xcf\x2f\xf6\x59\x5a\xf2\x7c\xe4\xdb\xed\x6f\x0e\xa8\x80\xd2\xd8\x83\xf7\x3e\x3c\xf7\x75\xbc\xfa\x00\x8a\x8e\x1b\xdb\x3a\x1d\x4c\xbc\xe4\x58\xea\xe1\xb9\xa1\xb2\xa9\x09\x12\x5e\xf2\xac\x29\x85\xbc\x73\xb9\x94\xc2\xa1\x35\x8b\x53\xd9\x3e\xe1\xb9\xa4\xd3\x4b\x4b\xc3\x83\x7f\x4d\x9f\xf4\xf9\xf2\xb3\x81\x51\x41\xdc\xe4\xb2\x8d\x08\x85\xcb\x85\x12\x1e\x4a\x9d\x34\x39\x43\x6b\x96\x01\xbf\xe1\x15\x43\x23\x2d\x39\x15\xd4\xf1\x5a\x29\x06\xce\xe3\xb1\xcb\x0e\xa5\x59\x3c\x69\x88\xe1\x95\x6e\xb4\xce\xa7\x2b\x00\x50\xc3\xcb\x33\xeb\x0d\x51\x39\x9d\xb5\xf4\x50\x39\x5d\x9c\xee\x42\xc1\xbc\x3e\x3e\x61\xf0\x22\xcb\xdc\x00\x79\x55\x90\x3f\x40\x30\x5e\x8a\xb6\x2c\xd7\x3e\xc8\x0a\x38\x95\xd3\xed\x84\xa8\xc3\xa4\xc2\x16\x24\x17\x50\x1b\xf3\xc4\x7b\xc2\x04\x91\xc8\x86\x3a\xe1\xef\x71\x42\x7e\x61\x5e\xfa\xb6\xa9\xaf\x46\x3e\x7a\x91\xb5\x3b\xa9\x28\x1e\xba\x93\x3d\x6b\xd1\x70\x37\x20\x5e\x8b\x96\xe7\xf9\x59\xa2\xb2\x67\x26\x64\x17\x5a\xf2\x0e\xa1\x78\x12\x6f\x4a\x0a\xa7\x82\xfa\xc7\x3a\xd2\x9e\x1b\x07\xa3\x78\x27\x05\x72\xd3\xab\xfa\x10\xb9\xe9\x55\xd3\xc1\x42\x1f\x5a\xcb\xc7\xc2\x49\x38\xb8\xb7\xa8\xcb\x4c\x5f\x5a\xff\x93\x9c\x2d\xa4\xb6\xae\x23\xe2\xf4\x2d\xb4\xc1\xeb\x39\xff\xc6\x09\x26\x9e\xe6\xb0\xea\xb7\x47\xd7\xf8\x78\x9b\xb4\x88\x53\x51\x5d\xb7\xce\xf8\x9d\xbc\x1a\xa4\x34\xf6\xd2\x3f\x17\x35\x41\xe7\x6e\x68\x8d\xc8\x66\x47\x1b\xbc\xe9\x7b\x1b\xf2\xee\xe7\x0b\x50\x4d\xdd\x35\xe1\x1f\x4d\xf0\x3c\x27\x69\x07\xc1\x50\x77\x6d\x1a\x41\x24\xa4\x77\x02\xa3\x81\x84\xf4\x06\xea\x0e\xfb\xb2\x02\x2c\xa1\x33\x43\xde\x6d\x13\xec\x0d\x24\xa5\xb7\xa6\x73\xdb\xc1\x51\xe7\xcb\xa0\x2e\xd6\xc9\xcb\x09\x1b\x9a\x36\xa1\x3a\x50\x77\x57\xbf\x37\xd4\x5d\x29\xbf\x4c\xe1\x84\xbc\xcb\x7c\xb5\x78\x93\x98\xde\xd5\x2b\xf6\xc7\x18\xcb\x44\x1f\x49\x4e\x47\xd5\x2c\x45\xc2\xde\x24\xc4\xa7\x48\x72\x3a\xc5\x86\x29\x9e\xb0\xf7\x2b\xde\xb0\x14\x1d\xfa\x12\xc4\xd8\xa2\x21\xee\xda\x5f\xfd\xf7\x79\x1a\x30\x0c\x22\x49\xea\xdd\x8a\xca\x52\x74\xbf\xd8\x01\x52\x24\xdc\x9d\xc1\x85\xd1\x8d\x3f\xfe\xfb\xb4\x04\x30\xa0\xa2\xbb\x24\x27\xd3\xeb\x8c\x79\x7b\x3b\xa6\x42\x74\x64\x36\x31\x6e\xe3\x41\xdc\xcf\x7c\xd5\x3e\x43\xdc\xb1\x93\xe5\x18\xfd\xd5\x8c\x86\xfc\x3c\x45\x43\xdc\x6d\x25\x1d\x7d\xa9\x09\x91\xab\x4a\xd1\x7f\x55\xe5\xa0\xe9\xf8\x4b\x42\xec\x1f\x97\x86\x28\xce\xf1\xe2\xe6\x6b\x75\x9a\x29\x22\x21\x5e\xc9\x7d\x8e\x07\x88\x3f\xf3\x8d\xba\x99\x39\x9f\x06\x5d\x2d\x1a\x10\x4f\x75\xea\xb6\x97\xae\x4c\x91\x8c\xe8\x2f\x3f\x08\x95\x96\x29\x7e\x3c\xe3\x48\xf7\xa7\x08\xcf\x78\x9a\x3a\xe3\x57\xc2\x1b\x2f\x24\x5c\xde\x1b\x61\x95\x18\x2e\x07\xcc\xab\x3b\x8b\xba\xac\x2c\x71\xa3\xa4\x08\x20\x4f\xd8\x27\x31\x20\xa8\x09\x16\x89\xe1\x4b\x7c\x03\x2d\xc4\xf0\xdb\x77\x1e\xc3\x4d\x7c\x43\x27\x2e\xc5\xf0\xbd\x07\x75\x48\x01\xf2\x72\x08\x9d\x53\x54\x58\xfc\xc7\x96\x9f\x6a\xc3\xf3\xc7\x55\xbf\xae\xa2\x4f\xa9\x3c\xf6\x52\x44\x23\x9d\xe2\x01\xe7\x6e\x2a\xac\x1f\x0d\x9c\x27\x4d\x35\x51\xc0\x3c\x47\xb1\x74\xa6\x18\xfd\xd7\x9d\x78\xc3\x11\x36\xc3\x47\x5b\x90\x68\x14\x1d\x7d\xbb\xca\x3c\x57\x34\xa0\x0a\xe1\x59\x8a\xe4\xb3\x67\x47\xfb\x8e\xb4\x78\x92\xd4\x7d\x8a\x87\xc2\x2c\xcf\xad\xc1\x13\x7f\x67\x07\xc5\x03\xd0\x9f\x03\x6d\xa3\xaa\xb7\x59\x92\x23\xe4\xe2\x4d\x43\xe5\xa8\x91\xed\x93\xc8\x17\x01\xe7\x4a\xea\x8c\x71\xff\xbe\x36\xe0\x3c\xa9\x0f\x24\x12\x1f\x89\x3a\xc4\x14\xfe\x38\xf2\xc6\xc8\x36\xd3\x70\x4c\xe9\x8f\xff\xed\x99\x3b\x96\x6a\x54\xee\x7a\x59\x73\x82\x14\x63\xba\x3a\xca\x70\xa9\xa6\x78\x48\xc5\xfb\x54\xec\x26\xa6\x4b\xef\x25\x7f\x76\x4c\x8a\x17\xe9\x8c\x6f\x19\x24\x09\x31\xa6\x5f\x7c\x48\x6a\xb5\x39\x66\x14\x2e\x8e\x69\xfd\xd1\xc6\x0f\xd5\x51\xcb\x12\xf3\xad\x61\xd8\x44\x30\x62\xf6\xbf\xcf\x30\x84\x9e\x1a\x1e\xf2\x28\x74\x9e\xdc\xc9\x38\x8a\xd0\x9b\xc1\xf7\x9f\x62\x86\x58\x1b\x7f\x79\xcc\x37\x56\x26\x8b\x3e\xfe\x81\xd0\xa3\xaa\xbb\xb3\x3f\x91\x91\x98\xbf\x5a\x86\xad\xf6\x8d\x63\xb0\xc8\xf9\x12\xf3\x9d\x2e\xef\x33\xbc\x7f\x5c\xd5\xb2\xe1\x72\x55\xfb\xfe\x78\x7e\x43\xf3\x29\x82\x71\x63\xf9\xed\x90\x8d\x86\xe4\xd3\x50\x4f\x28\x37\x06\x43\xa9\x5d\x8a\xe5\xc6\x0a\x65\x82\x44\x12\xda\xfd\xd0\xd5\xa8\xe1\xc0\xac\x8a\xe5\x52\x56\xca\x11\x1d\x0b\x65\x87\x6a\x57\x41\x57\x84\xfc\xca\x58\xae\x43\x16\xc5\xf5\x14\x0d\xd1\xb7\xf9\xd2\x0b\x0c\xd1\x67\x99\x55\x91\x90\x79\xd2\x4c\x56\x90\x1e\xd2\xd7\xff\x23\x81\x3d\x1e\x14\xdf\x27\x15\xcc\x29\xd6\x8f\xef\x8b\xd4\x90\x58\x2f\xd2\x59\x60\xc7\x58\xc5\xdc\xea\xe7\xc4\xf4\x8b\xf5\x77\xb1\x42\xac\xe9\xbe\x09\x7d\x37\x85\xce\xd3\x9a\x53\xf3\x05\x09\xed\xbd\x6b\xab\x12\xfd\xe0\x4d\xd6\x4b\x6b\xa7\x14\xf1\x58\x29\xbb\xac\x7f\x21\xc3\x4e\xb1\xaa\x3b\x54\x29\x7b\xa5\x28\xe0\x9f\xda\x7c\x35\x9d\xd4\x3f\xba\x43\x9d\x7f\x6c\xad\x3b\xb1\x69\x2a\x3b\xa1\xf3\x3c\x37\xb6\x5e\x6c\xc8\x90\xe0\xb9\x8e\x80\x7f\xf9\xf9\x62\xbb\xd6\xff\xc2\x0b\x17\x15\x3a\xaf\xe1\x0e\xd9\x3f\x9c\x00\xb1\x7d\xfc\x49\x80\xba\xd8\xbe\x10\x72\xd3\x35\x2e\xa9\xf3\xc2\x57\x1a\x95\xfb\xfe\xf3\xe1\xb2\x8e\xb9\x08\x08\xba\xb0\x14\xdb\x47\x2f\xa5\x85\xb5\x7d\x96\x84\x96\xd2\x4f\x6e\x7c\xc9\x1e\x6a\xf3\x9b\xc6\xe8\x7c\xed\x7b\x27\xe0\x89\xd8\xe0\x1b\x22\x9c\x1a\x0f\x5d\x5a\xba\x6f\xb8\x5f\x1e\x1e\x68\x99\x53\xec\x9f\x36\xed\xd4\x9e\x8b\x08\x27\xa5\x3a\xf1\x54\x96\xff\x3c\x01\xed\x85\x03\x3d\x6b\x00\xf5\x3f\x96\xcb\x5f\x32\xe4\x99\x76\x52\x5d\xee\xb1\xd8\x63\xff\x63\x89\x20\x37\xde\x6b\xd1\x34\xc7\x40\x5a\x1a\x5c\x9d\x58\x55\xd3\xd3\xfc\xd1\x1f\x08\xab\x27\x6a\x17\x22\x95\xe5\x1e\xab\x34\x92\x13\xbf\x64\x93\x91\x13\x1f\x70\x45\x45\x72\xe2\x03\xce\xb4\x38\x44\xec\xc1\x73\x2a\x27\xde\xea\x58\xb8\xe7\xa0\xda\x1a\x70\x1e\xa1\x4c\x8b\x1a\x28\x50\xa6\xa1\xa8\x95\xe2\xf8\xc3\x6a\x14\x65\x5a\xd4\x7f\x7f\x58\x8d\x03\x5a\xbc\xa9\x3b\x40\x04\x21\x73\x67\x88\x28\x81\xaf\x39\xfe\x98\x12\x08\xa5\xc3\xa8\x94\xe2\xf3\x7d\x5b\x92\x10\xe2\xf3\xc7\xf4\xff\x5c\xf6\xd2\x63\x7e\x3c\x7f\x4c\x05\xcf\x9d\x0a\xce\xdb\x7e\xf2\x1f\xff\xff\xf1\x4d\x1f\xf4\x44\x70\x7c\xc4\x87\xe4\x48\xd0\x4f\x7c\xc8\x06\xd4\x22\xfe\xa8\xf2\x9a\x2f\x61\xc8\x3e\x36\x19\x8b\xd0\xa6\xc1\x1e\x94\x22\x09\xee\xeb\xd1\x1d\xe0\x09\xf3\x7a\x3a\x0b\xc1\x7a\xdd\x8f\xca\xf2\x20\x8b\x99\xca\xf2\xa8\x3e\x4e\x65\x79\xc2\x5d\x1a\x5f\xcc\x3c\x62\x0b\xf1\x65\x9a\x27\x3d\x22\x1a\x9a\x6f\x1e\x64\x13\x5f\xa8\x1c\xd5\x7f\x08\xb3\x37\xa7\x3b\x34\xa8\xe0\x99\x47\x40\xf3\x10\xa7\xa7\x08\x9a\x0f\x1a\xc9\xef\x75\xd8\x42\xcc\x9d\x22\x88\x3e\x6a\xcc\x82\xe8\x55\x55\x15\x5f\x3c\x17\x53\xd7\xb5\xb1\xba\xb5\x50\xcc\x5f\xa6\x1c\x6f\xd2\x10\x7d\xdc\x32\x85\xe6\x1f\x26\x8d\x21\xfa\x8a\xc4\x52\x8a\x70\xa1\x15\x1c\x46\xd1\x90\xbc\x15\x67\xd8\x16\x6c\xac\x6a\x8f\x21\xf9\x44\xc5\x75\x8a\x20\x79\x45\x62\xa2\xaa\xca\xc9\x01\x8c\x54\x95\x2b\x29\x20\x4e\xc8\x3d\xf4\xb6\x26\xb1\x34\x6a\x7f\xe2\x9c\xff\x3f\xd1\x85\x81\xfa\x16\xc8\x76\x8f\x06\xea\x73\xd3\xf0\xa1\xe0\xbc\x68\x6a\x5f\x68\xaa\x02\xd1\xe3\x82\xf4\x42\x53\x2e\x05\xe7\x1d\x6f\x5d\x5c\x7f\x4c\xd9\x14\x9b\x0f\xf2\x52\xe2\xfa\xa3\x0b\x53\x6c\x8e\x5e\x53\x8a\xeb\xae\x64\x88\x74\xa7\x48\xc1\x39\x5a\x4d\x29\x1e\xc9\xf0\x9f\x65\x51\xad\x80\xd5\x51\x53\x9a\x01\xf9\xee\xf5\xca\x17\xb2\xd9\x4e\xff\x59\xa2\x5f\xf7\xfa\xef\x0f\xab\x75\xff\x61\xb9\x6c\xf8\x5b\x34\x20\xa0\x44\x3b\x96\x83\x81\xf8\x3e\xf5\xca\x37\xdc\x26\x7a\x23\x06\xe2\xd3\xd4\x87\xdb\x7f\x3c\xe7\xc6\x17\x2f\x4b\x69\x23\x21\xa2\x29\x02\xf0\xee\xf4\xc4\x1b\x9f\x2c\x91\x8c\xb8\xff\x40\x27\x02\xef\x5a\x00\x0c\xbc\x37\xa5\xbb\xc5\x3f\x72\xd5\xa3\x01\xf7\xde\xe9\xe2\xc9\xec\x34\xe7\xb0\x31\x93\xd9\x69\xc1\x13\xa7\x48\x66\xa7\x05\x07\x44\x4f\x2f\x5b\x3c\x51\xb2\x61\xfc\x6d\x45\x3b\x8f\xe4\xe3\x64\xc3\xf8\xfb\x2f\xff\xb1\xf5\xf3\x7c\x61\x35\x1d\x79\xeb\x7e\x15\x7a\x4e\x0c\x32\x8f\xef\x3a\xcd\x9b\x55\xae\x4a\xf6\x34\x2f\xbc\xd6\xe2\x9c\x66\xfa\xf6\x3c\xec\xb9\xe9\xd2\x8a\xa8\x24\x1b\x54\x11\xde\x80\x94\x4e\xae\x8a\x3b\xcb\x63\x92\x8b\xcb\xda\xb1\xd8\x63\xbd\x20\x33\x11\xa6\x85\x18\x14\x8e\x92\xb4\x6e\x42\x01\xa2\x9e\x29\xfd\x62\xe0\xaf\x3a\x03\x4a\x90\xac\xff\xbf\x36\xb2\xe4\x25\xb1\xef\x63\x72\x24\x92\x47\x20\x61\x49\xc9\x7a\x7e\xcc\xa4\xfa\x26\xaa\x39\x14\xc9\x48\xe8\xe2\xed\x73\x5d\x84\x80\x4c\x7e\xc6\x24\xea\x7e\x26\x6f\x10\x42\x5a\xe4\xf6\x61\xb9\x27\x12\x47\x32\x09\x16\x69\xc1\x58\x54\x75\xe4\xc6\xf0\xe2\x3f\x12\x46\x14\xbd\x48\x30\xed\x23\x03\x94\x12\x6e\xab\x80\x63\x24\x41\x02\xb8\x82\xfe\xb3\x49\x2d\xe0\xc3\x4f\xfb\x06\xcd\x85\x84\x13\x2c\xfb\xa8\x4f\xa4\xb4\x71\xe1\x44\x5d\x09\xea\x93\xad\x23\xe1\x1b\x66\x11\x4f\xfb\xe2\x12\xb4\x0a\x52\xb2\x9e\x1f\x93\xde\xfd\xbe\xb4\xcb\x3b\xe9\x6a\xd6\xfb\x9d\xbe\xd6\x86\xc3\x54\x3d\xee\xb8\xad\xba\x14\xa4\x53\x76\xb7\xce\x1e\xe5\xb2\x94\x21\x04\x8c\xf8\x40\xb2\xb9\xae\x5a\xc3\x93\x90\x1d\xb3\xd9\xab\x23\xd3\x41\x91\x32\x72\xb3\xb9\xae\xda\x83\x81\x9a\x21\x03\x9c\x5e\x57\xb2\x91\x9e\x70\x8b\x67\x73\x5b\xf5\x4c\x7f\xc9\xe6\xb6\xea\x99\x04\x83\x6c\x6e\xab\x9e\x97\xfe\x7b\xae\x83\xdd\xe9\x7f\x9b\xcd\x54\x5f\x95\x21\x01\x6c\x55\xd7\xb5\xd9\xac\xfd\x8d\x4c\x23\x65\xb8\x01\x1b\x19\x38\x19\x6e\x40\xe5\x27\x67\x79\xb1\x4a\x99\xc8\x92\xa7\x0c\x3f\xe0\x0b\x14\xca\xe6\xc5\xea\x8b\x62\xa5\xec\x99\xec\xe8\x86\x19\x7e\x40\x24\xef\x53\x36\x17\xd5\xee\xc6\x71\x93\x32\x45\x1b\xaa\x59\xc8\xc7\x3d\xe5\x4e\x41\x7d\x26\x4f\xa4\xe8\x85\x79\xd2\x57\xcf\xd1\xa4\x70\x52\x8b\x9b\xcd\x35\x15\x44\x5b\x90\xcd\xc9\x14\x54\xb4\x97\xcd\x79\x14\x56\xe7\x85\x98\xf3\x28\x2c\xc0\x61\x36\xe7\x51\xd0\x9a\x9d\xcd\x71\x14\xe4\x8c\xc9\xe6\x38\x0a\xaa\x14\xce\x81\xa9\x6a\xe8\xbc\xce\x16\x6f\xcb\x9c\x45\x01\x86\xce\x94\xcd\x51\x14\xd6\xa3\x23\x69\xd9\xa3\x23\xa7\x6d\x31\xd1\xe4\x48\x3b\x81\x7f\x39\xd2\x4e\x7d\x81\x78\xf9\xa0\x36\xd3\x71\x8e\x97\xf0\x78\x12\xe8\xce\xd4\x40\x64\xa7\xab\xe9\x6d\xf2\xb6\xa0\xe4\x53\x2d\x68\x46\x62\x5e\xf9\x0e\x19\x4a\x3e\x25\x03\xe4\x78\x45\x43\x61\xad\x4c\x99\xfa\x07\xf8\x6a\x52\x36\xc7\x4e\x52\x45\x4b\xc6\xa9\xb3\x87\xb6\xb0\xdc\x41\x58\x99\xda\x07\x91\x8e\x64\x9c\x3a\x7e\xe9\x3f\x2c\x77\xa0\x74\x16\x25\x9f\xae\x42\xdd\x43\x64\xf8\xe7\x44\xa5\xb2\xda\x4a\xdd\x43\x9c\x3a\x0f\xab\x7d\xea\x3c\x48\xbb\x09\x8d\x66\xea\x1e\x1a\x49\x11\x59\x7c\xf4\x4e\x77\x7f\xd8\xe2\xcb\x42\x42\xa0\x24\xec\x0c\x09\x81\xfc\xed\x99\x5a\x87\x07\xe7\x43\x86\x64\x00\x21\x24\x2b\x40\xb5\x52\x2a\xfd\x17\xc9\xef\xa7\xd5\x99\x64\x5e\x16\xe7\x6c\x0e\x99\xa2\xea\xe6\x0c\x93\x40\x53\x5b\x50\x77\x43\xed\x23\xe5\x8c\x94\x8a\x9e\x36\x4b\xe9\x8c\x37\x88\x0c\xbc\xa6\xe9\x4c\x2a\x85\xaa\x74\x32\xaa\x6e\xa7\x3f\x9a\xf3\xa5\xae\x47\xed\x34\x4b\x55\x6e\xbe\x4c\x2a\xc5\xe9\x65\xb6\xa8\x57\x25\x5a\x66\xd2\x28\x36\x0e\x82\x4c\x1a\xc5\xd6\x08\x2b\xa8\xa0\xb1\x2c\x64\x9c\x2e\xe1\x5c\x05\xa6\x04\x8d\xea\x82\x4e\xc6\xab\xab\x98\xa9\xf6\xa8\xc7\x17\x64\x92\xf4\x8d\x0a\x5c\x4e\x45\xff\x11\x4a\x25\xaa\x95\xd1\x6e\x97\x03\x2a\x93\x16\xa1\x14\xcf\x5c\x48\xea\xc4\xd5\x9a\x49\x89\x18\x84\xcc\x33\x29\x11\x0d\xff\x79\x36\x27\x4a\x3b\x6f\x10\x25\xb7\x89\x1b\x2d\x9b\x03\xa5\xb9\xad\xab\x68\x3c\x85\x39\x09\xa5\x67\x08\xe2\x1d\x91\xb0\x4c\x5a\xc4\x79\x8b\xe6\x3c\x49\x32\x33\x72\x65\x3c\x9d\x16\xd8\x78\x52\x44\x26\x57\xaa\xa4\x59\xb0\xf3\x61\x02\xa8\x92\x03\x4a\x59\xf5\x06\xf9\x9d\xaf\xd3\x31\x8b\xf3\x79\xd3\xf5\x2b\x1d\x8d\x7f\xab\x68\xce\x38\x4d\xb2\x56\x20\x9c\x26\x62\xef\xc9\xb0\xed\x05\x35\x84\x8c\x89\xec\x69\xb2\x39\x4b\x92\xb2\x43\xb2\x39\x4b\xfa\x60\x5d\xcf\xe6\x28\xe9\x03\xc8\x94\x11\x7d\xdb\x5d\xe7\x51\x6e\xa2\x09\xfa\x38\x47\xfc\x7c\xcf\xb9\xb7\x9c\x6c\x6a\x92\x6b\x1f\x0f\x10\x35\x10\xf9\x70\xc9\x8f\xb9\xb4\x66\x35\x89\xf8\xd1\xb5\x45\x14\xd0\x74\xf4\x66\x8b\x3b\x9a\x53\x24\x21\xaa\x97\xb2\x39\x44\xd2\x22\xa5\x2f\x77\xf8\x6f\xd4\x7d\x3b\xbc\x2f\x58\x3c\xd9\x9c\x20\x09\x39\xc7\x94\x3b\x24\x10\xd8\xce\x19\x72\x00\x07\xac\xca\xe6\x00\x89\xa9\xea\x48\x03\x93\x49\x0b\x84\xe4\xda\x9d\xb6\x70\x7e\x4c\xdd\x1d\x9e\x13\x75\xdf\x2e\xb0\xcc\x5b\x83\x18\x40\x10\x38\x77\x4a\xc8\x82\xda\xb9\xf9\x82\x6c\xe1\xfc\x88\x9a\xf2\x07\x9a\x00\xb2\x44\x70\x7e\x44\x30\x4e\x1e\x4a\x54\xa5\xd5\xf0\xc5\xab\x96\x20\xcb\xf1\x41\xf2\x61\x86\x08\x00\x56\xd3\x94\xc5\x15\xdf\x75\x1e\xc4\x07\x43\x5b\xf6\x7c\xf2\xca\x67\x8a\xff\xd3\xa3\xb6\xd8\xf3\x25\x7d\x43\x15\xff\x03\x9b\x33\x8e\x8f\x0c\xa8\xcf\x2a\xfe\x3f\x2d\xa3\xf8\x5f\xcb\xc7\x43\x7f\xed\xda\xe2\xf9\xf4\x76\x1f\x2a\xa0\xf5\x6d\x1f\x34\x0f\x00\xd0\xf9\xe1\xf9\x5e\x1d\x29\x7b\x72\xcf\xa9\x25\xdf\x1c\x1e\xc6\xee\x62\x5b\xb7\xda\xfd\xdd\xfa\xff\x63\x34\xd5\x64\xf0\x5c\x9f\xbf\xbc\xa9\xf9\xf9\x7c\xde\xa7\x45\xcf\x17\x01\xe1\xbb\x3e\xef\xe7\xb8\x51\xcb\x6e\xb9\x9c\x72\xdd\xf3\x73\x79\x7c\x94\x7e\x9a\x9f\x2f\x0e\x46\x8c\x2a\x9b\x53\xc4\x28\x04\x6c\xeb\x57\xdc\x87\xb7\x4d\xe5\x7f\xc1\x3e\xce\x22\x8b\x37\x72\x3a\xae\xf8\x29\xb8\xa1\xa1\x9c\xf2\xfb\xe9\x21\x68\x92\x56\x3d\x42\x1a\x27\x39\x24\x1f\x16\x80\x31\x67\xd4\x7d\xa8\x86\xdf\x6a\x47\x3f\x71\x8e\xb9\x74\xc6\xe7\xec\x6c\xba\xcf\x17\x07\x20\xba\x90\xdf\x1b\x0b\x39\xc6\x12\x8c\x00\x72\x38\xe4\x77\x7d\xad\xa7\xf7\xbc\xdf\xfb\xc0\x13\x90\xa7\xfb\x8c\x1b\x5a\x3f\x3f\x6d\x08\xbd\xfb\x8f\xa2\x4f\xa4\x2a\x59\xa9\x11\x29\x5c\x23\xe9\xe0\xbf\x28\xf5\xb8\x94\xe7\xaf\xf7\xc2\xdd\xe7\x65\x81\x98\x32\x96\x0c\x03\x46\xf8\xff\x53\x9e\x5f\xd8\x5c\x5f\x8b\x7a\x85\x24\x83\x61\xde\x77\xb2\x87\xce\xff\xb8\x9e\xd4\xdf\xe6\x2f\xe7\x2e\x7d\x69\x7e\x7a\x18\xea\xfd\xeb\x8b\x85\x92\x1a\x90\xd7\x95\x31\xda\xd4\x65\xe4\x05\x09\x08\xe9\x1a\x19\xef\x49\x90\x69\xbd\x20\xaa\xd6\xf8\x5c\x1f\x89\xfe\xdf\xc8\xaa\x53\x36\x88\xd9\x5f\xc0\x7c\x5e\x12\xb7\xd4\xd6\x0d\x8f\xce\xa5\x66\x99\x73\xc5\x2d\x35\x42\x15\xd2\xda\xba\xe2\x6e\x53\xd3\x0d\x6c\x7e\x5e\xf6\x94\x41\xcd\x58\x09\x22\xe5\xf5\x85\x44\x35\x15\x93\x29\xe1\x75\xef\xfd\x85\x49\x00\xae\x79\x7f\xdd\x40\x70\x67\x7f\xdd\x40\x43\x70\xc7\xef\x2c\x3a\xc6\xfe\xb2\x81\xb4\x38\xc0\x43\x5f\x08\xbe\xe4\x7d\xc3\x44\x08\xb0\xa7\x8c\xd0\x5b\x19\xba\xc7\xed\x02\xe8\x5d\xa5\x7c\x6a\x16\xd2\x1d\xa2\xfb\x1b\x1a\x42\x45\xfb\xf9\x5a\xc6\x27\xde\xbf\xa6\x0b\xed\x99\x5f\x47\xd7\x9e\xfb\x4e\x96\xec\xd3\x7d\xab\x8a\xd5\x79\x8a\xfb\xde\x0b\xde\xee\xa2\x3a\x86\x1c\x4f\x5d\x6b\x71\x57\x52\x44\xb9\xfc\x85\x5a\x86\x91\xb5\x05\xe1\x07\xd6\x79\x39\xb5\x08\x51\xa2\x7a\xa9\x9c\x5a\x84\x39\x57\xd7\x19\x37\x05\x60\x61\xf7\x94\x2f\x43\x42\xef\xa5\xb8\xf9\xb5\xec\x61\xcf\xba\x93\x08\x21\xfa\xe2\x44\x88\x60\xd3\x41\xf1\xbf\x52\x00\x0a\x7b\x2e\x95\x9d\xca\x20\x8b\xff\x32\x81\xb0\xf5\x8b\x32\x25\x8c\x1f\x97\xb6\xfc\xaa\x4b\x20\xb0\x5b\xfc\x25\x47\x90\xc3\xa2\xf8\x4f\x5b\x9b\xbe\x52\xfc\x25\x0f\x56\x7e\x7f\x81\x2c\xa0\x61\xe0\x14\x2f\x72\x76\xdd\x15\x6d\x6d\xaf\xab\xa9\xaf\xe7\xa9\x34\xd4\x42\x5d\xc2\x03\xdc\x2f\x1e\x42\x90\x73\xee\x22\x84\xab\x27\x32\x33\xe6\xc1\x3d\x52\x82\x58\x82\x69\x13\xca\x6d\x7d\x69\x0b\x6c\x0d\x9a\x2e\x70\xd3\x3f\x4c\xb5\xe5\x28\xb6\x95\x53\x39\x50\x4e\xfa\xc3\x7b\x26\xb3\x62\x28\x36\x6b\x4a\x2f\x01\xf7\x11\x09\x1b\x05\x26\x80\x82\x59\x52\xc4\x04\x80\x81\x58\xa8\x41\x50\xaf\x2c\x86\x62\x23\x8a\xe4\xa9\x18\x8a\x8d\xcd\xa9\x4d\xf6\x9c\xa7\x97\x41\x44\x0f\xa1\x65\x2a\x96\xe2\x10\x1b\x31\xbd\x82\x6e\xfa\x26\xff\xa6\x40\xd3\xb7\xa9\xfb\x28\x91\x52\x58\x22\x6f\x85\xd4\x86\x4e\xcc\xa5\x50\xf9\xdf\x49\xa4\x28\x91\x12\x58\x4c\x81\x02\xea\xf5\x7a\xda\x88\x6e\xf4\xd2\x1d\x08\xef\xea\xf9\xa8\x37\xf0\x8f\xce\xa3\x2a\xf8\xd5\x1d\xec\xf9\xfa\xa3\xbb\xe3\x1e\xd3\xd7\x41\x27\x3d\x9c\x6b\x12\xdb\xd8\x3a\x92\x38\x0e\xf9\x58\x25\xa9\xbc\x8c\x27\xa2\xc6\x20\x82\x75\x4a\x52\xc9\x2b\xdf\x81\x1a\x83\xc4\x08\x2f\x09\xd6\xdc\xa4\xff\xec\xf9\x12\xcb\x53\x81\x84\x5e\xf9\x78\x25\x11\xc2\xed\x3a\xaf\x81\x32\x19\x37\x89\xf4\x1d\x8d\x07\x52\x16\xf2\xd6\x79\xe2\xa9\x52\xcb\x28\x71\x55\x2f\x30\xc4\x5b\x4a\x0f\x7f\x59\x26\x0a\x8c\x7c\x4f\xd0\x69\x06\xc2\x2a\x39\x13\xc5\x32\x18\x22\xaa\x9d\xa9\x64\x04\xe8\xd4\x25\x32\x55\x75\xa4\xed\x15\x80\x72\x23\xc9\xb3\x00\x94\x95\xa2\x56\x0c\x28\xc7\xa7\xea\x2a\x85\x2d\x5e\xae\x01\xe5\xf8\x68\x5a\x01\x28\x77\x26\xf0\x62\x40\xb9\x20\xcd\x98\x0a\x40\x39\x50\xdc\x51\x32\x89\x6c\x45\x77\x20\x3f\x59\xaf\x53\x7c\xf4\x78\xdd\x4a\xa6\x72\x70\xea\x89\xac\xeb\x3e\xb8\x4c\x0a\x4a\x6b\x03\x98\x5e\x28\xe6\x1f\x1a\x74\x14\xf3\x0f\xb5\x13\x3e\xfa\x41\x5a\x6a\xa1\x98\xff\x61\xb1\x2c\x85\x32\x39\x4d\x2e\x85\xe7\xd3\x67\x20\x33\x41\x8c\x33\xc5\x80\x72\x19\x9a\x56\xa1\xd8\x1b\x53\xf7\xb3\x4f\x3b\x00\x90\xa5\x50\x1e\xd7\x74\x77\xca\xe3\x5e\x6d\x4d\xca\xd3\x78\xd7\x45\xe5\x61\xba\x26\x9e\x5d\x6c\xb4\x52\x11\x10\xc4\x4b\x5e\x2a\xe5\x50\x78\x49\x0b\x74\x7a\x13\xb7\x40\xa1\x78\x5f\xc9\x79\x85\xe2\xfd\xa9\xbb\x43\xa7\x27\xa2\x92\x62\x00\xba\x9c\x89\x81\xa2\xfd\xa9\xa1\x52\x71\x48\x11\x68\x2c\x70\xd1\x23\x23\x94\x0a\x05\xfb\x22\x4e\x28\xc8\xa1\xcb\xcd\x52\x0e\x80\x0e\x53\xb1\x95\x62\x00\xba\xc8\x3f\x5e\xa8\xc8\x5f\x1a\x74\x55\x4c\xa1\x3c\xa3\xb8\xe8\xf1\xa3\x96\x46\x99\x0f\x28\xb3\xa0\xa2\xb6\xa3\xb6\x28\xf1\xc1\xc1\x50\xda\x2d\xeb\x53\xda\x5e\xa1\xd2\x7e\xeb\xa9\xa9\xb4\xdf\xb8\x38\x0a\xf4\x78\xb3\xe8\x9e\x08\x03\xea\x9d\x53\x2b\x70\xa6\x20\xe8\xf1\xc4\xa1\x59\x1a\xf5\x2f\x4d\xe7\x99\xc3\xc3\x69\x0a\x22\x15\x40\x31\xa2\x42\x8d\x80\xd3\x42\x4f\x8d\x80\xd3\xb2\x6e\xa8\xb7\x3a\xb0\x47\x81\x54\xde\xe9\x89\xfb\x8d\x34\x9c\x29\xd8\x90\x6f\x12\x5d\x5f\xa1\x36\x00\x5d\xb9\x54\x3e\x5a\xbc\xb3\xe8\x82\x7e\x51\xda\x4b\xa5\xf3\x9c\xd8\xbc\xa5\xdf\x94\x90\x57\x63\x44\xd4\x78\x55\xff\x23\xdb\xa2\x11\xd3\xa1\x87\xd3\x32\x46\x4d\x80\x38\xa7\x8a\x21\x60\x73\xa6\xff\x6c\x8d\x1b\x4a\x55\x52\x6b\x39\x35\x01\xe1\x90\xdd\x95\x53\x59\x3f\xe6\xc6\x69\x52\x86\x58\x5e\x69\xe9\xa1\xc7\x7b\xe6\x52\xcf\x1c\x5f\xc9\xa2\x46\xd8\xf8\x48\x26\xf4\x3d\xa8\x0f\xa8\x1a\xd5\x90\xcc\x9f\x37\x45\x7d\x40\x95\x11\x31\x48\x9c\xd5\x97\x1b\x9f\xbe\x73\xd3\xdd\x5e\x18\xa6\xf9\x96\xe3\x66\x49\xca\x74\x2c\x86\x90\x53\x0f\x3a\xff\x3a\x7c\x44\x2d\x54\x94\x1e\x50\xfc\x94\x1b\xb9\x9c\x1a\x01\x7f\xc8\x75\x0a\x68\x19\xa1\xa8\x54\x1e\xbe\xfb\x5f\xeb\x07\xca\x73\x29\xa5\x94\xbd\x52\x9e\xcb\x08\x8a\xae\x6c\x2a\xcf\xb5\x9a\x94\xe3\x5f\x28\xe6\x6f\x4d\xff\xb7\x0b\x70\xb3\xfe\x37\x7f\xd8\x26\x6b\xbc\x3c\x94\x4f\xe0\x0f\x2c\xcf\x2f\x02\x60\x5e\xcf\x23\x1e\x7e\xfd\x6f\x01\x0b\x45\xe8\x0b\xb2\xe7\xe5\xbc\x88\x9b\x48\xf5\xea\x4e\x00\x67\x8f\x2b\xa5\x90\x4d\x50\x75\xee\x2b\x16\x50\x3a\x01\xf5\x01\x8d\x18\x46\x79\x3f\x6b\x51\x53\x33\x92\xe7\x0f\x0e\xb1\x42\x46\x41\x02\xf0\x95\xf7\x2b\x93\xd1\x33\x01\x94\xbb\xa6\x19\x03\xca\x2d\xc9\x5a\x35\x90\x9c\xd0\x15\x48\xc5\x00\x72\x3f\xdd\xc8\xc0\x71\x47\x78\x3e\x15\xa4\xce\x3b\x8c\x49\x85\x62\xfd\x0d\x61\x46\x39\x35\x02\xef\x9c\x5a\xe4\xa8\x11\x40\xf4\x26\x95\xf9\x11\x4c\x00\x91\x8b\x01\xe2\xba\x34\xfc\x0c\x0c\x67\x15\xd2\x94\x09\xa7\x0c\xb5\xdb\xe5\xa3\xc8\x5b\x04\xb2\xca\x01\xc1\x79\x8a\xde\xa1\x50\x27\x70\x26\x6f\x03\xc1\x2d\x69\xd2\x87\x26\x4f\xc1\xaa\x72\x00\xf0\x3a\x28\xad\xcc\xfb\x8d\x97\xbe\x1c\x54\x79\x55\x03\x72\x5e\xb2\x63\x25\xf9\x96\x03\x90\xfd\x5c\xfa\x02\xa8\xad\x6d\x59\x5d\x07\x1c\xd7\xb9\xa9\xd2\x28\x02\xc7\x86\x00\x68\xd5\x62\xea\xd3\xc4\x21\x99\xf3\x92\x6e\xaf\x04\x20\xab\x8a\xb3\x50\x2b\x10\xd5\x57\xbe\x5a\x01\x55\xcb\x97\x53\x2b\x90\xa5\x34\x9d\xca\x42\xb6\x09\xf7\x50\xa1\x4e\x60\xcb\x4a\x5f\x84\xdf\xbd\x8e\xa4\x24\x2c\xea\x48\xb2\x48\xb4\x74\x80\x80\xd7\xd0\x5d\x28\xf7\xdb\x7a\xca\x4b\xa2\xf2\xca\x28\xa0\x56\x20\x52\x5f\x5e\x0c\xfd\x46\xc5\x8b\xca\x46\x65\x6e\xea\xbf\x88\xf7\x9c\xeb\x1a\xa2\x8d\x67\x19\xa4\xfa\x7e\x69\x72\x30\x34\x6b\xc2\x6c\xb6\x05\x47\x90\xbe\x1c\x69\x04\x68\x9a\xa5\x42\x30\x75\xe3\x97\x2e\xd0\xde\x29\xf4\x5a\x36\xd9\x30\xb8\x18\x0b\xf9\xff\x72\x31\x16\x14\xd5\x32\xd3\x7b\x45\x93\x7c\x83\xaf\x2a\xb9\xff\x99\xb7\x58\x9d\xc4\x5b\x75\x24\x99\x30\x2c\x12\x95\xbc\x7f\xd1\x04\x56\xf2\xfe\x51\xd1\x4b\xd5\x82\xa7\xd5\x37\x5d\x45\x02\xb5\x91\xad\xc6\x74\xec\xd8\x32\x32\x14\xe7\x75\x87\x41\xbd\x89\x8e\x84\x0c\x05\xe7\x57\x75\xa8\xe3\x11\x4d\xab\x86\x64\x63\xc6\x9d\x5b\x1d\x35\x2c\x5d\xf7\xdb\x68\x41\xd0\x16\xaa\xea\xb5\xe4\x56\x88\xe8\x2b\xc6\x40\x35\xe4\x5a\x2b\x66\x55\x35\xd4\x5a\x11\xd9\x49\x15\xe5\xb4\x86\xe7\xa4\x7a\xf4\x5d\x70\x80\x55\x4f\xa6\x0f\xae\xde\x4a\xe2\x7e\x63\x86\xac\x90\xcf\xa7\xa4\xab\xf4\x83\x42\x67\xfc\x8b\xc4\x4d\xaa\xf0\xd2\x77\x0a\xcf\x2b\x74\x76\x0a\x7c\x55\xaf\x6a\x5c\x5e\x06\xc2\x6a\xbd\xab\x01\xf6\xf8\xca\x1c\xad\x80\x57\x4f\xde\x79\x85\xc6\x4e\xdc\xdf\xd5\xc0\x6b\x1d\xac\x53\x35\x10\x73\xc0\x49\x51\x0d\xbc\x1a\x71\x8a\x6d\x25\xc2\x36\xbc\x36\xa4\xc6\x87\x5e\x37\xea\x69\xfe\xfc\x87\x8a\x51\xd1\x1d\x10\x8e\x2b\xba\x83\x0d\x43\xa1\x82\x1a\x48\x74\xf2\x3a\xd2\x3e\x2f\xca\x6a\xa9\x1a\x68\x4d\x0a\x60\xd5\x40\x78\xe9\x9c\x67\xcf\xf7\x76\x5d\xd3\x9e\x2f\xe0\xe1\xac\x06\x5a\xeb\x8b\xf5\x51\x0d\xb4\x26\x51\x72\x57\xe8\xea\xe4\xd9\xac\x14\xca\x3b\xec\xd2\x1a\xaf\xef\x51\x1e\xd8\x6a\xc0\xb5\xce\xb3\x65\x9f\x18\xf5\xa3\x54\x23\xd3\xed\xd4\xb9\xf6\x8c\x93\xac\x9c\x1a\x99\x6a\x1e\x1d\x09\xba\xe9\xba\x8a\x3d\x63\x04\x10\xd6\x88\x44\x48\xd0\x55\xc8\x75\xc0\xd6\xab\x91\x5c\x07\x7c\x8b\xd5\x80\x6b\x13\x1d\x59\x35\xe0\xda\x64\x43\x56\x42\xb5\x55\xf7\x4b\x4c\xab\x64\x2d\xd4\x84\x44\x08\x16\x6c\x4d\x84\xd0\xc8\xe2\xa8\x09\x6b\x92\x34\xb3\x9a\x48\xca\x23\x0c\x56\x93\xe4\x41\xb8\xbb\x01\xd7\xe6\xf5\x9d\x12\xfa\xca\x5e\xf7\xb3\xe5\x33\x39\xb5\xcc\xa6\xa0\x47\x43\x34\xe1\x4c\x24\x21\xb1\x26\xf8\x6c\x28\xf0\xab\x86\x40\x9b\xd7\x34\x93\x91\x20\xd2\xb3\x93\x3f\x9f\x58\x68\xab\x21\xd0\xe6\x87\xfe\xb3\x65\xa1\x62\x19\x56\x48\xdf\x3d\x76\x5e\xcd\x3c\x03\x41\xeb\x9a\xd1\x88\xd6\x5b\x32\x04\x9a\x44\xcf\x5c\x51\x44\x0b\xd4\x96\x56\x14\xd1\x02\x13\x75\x35\x04\xda\x02\x56\x74\xa5\xea\x3d\x11\xb7\xa9\x86\x40\x5b\xa4\x8c\xaa\x42\x2b\x57\x0a\x4f\x6b\x08\xb4\x25\xe2\x4b\x95\x50\xad\xdb\xda\xf2\x14\xe6\xd1\x16\x08\xdf\x93\xa6\xc3\x02\x41\xb2\xd3\x7f\xf6\x8d\x92\x26\x24\x42\xb5\xe2\xc1\xaa\x84\x6a\xd1\x37\x49\x95\x50\x6d\x66\x11\xab\x45\x24\x15\xfa\xcf\x9e\x4f\xa4\xcb\xd5\x10\xa8\xe5\x0a\xd8\x96\x3d\x43\x5e\x3a\x0f\x12\x06\x6c\xe3\x8a\x8e\x77\x61\x61\xa8\x95\xcc\xc0\xae\x2d\x7b\x06\x31\x18\x57\xaa\xd7\x8b\xa6\x5f\x43\x99\xa9\x68\xc6\x31\x94\x69\xde\x3a\xdb\xca\x88\x4d\xf1\x44\x84\x69\xdb\xd6\x55\xec\x19\x3a\xa8\xae\x56\x96\x02\xcd\x62\xf5\xab\xeb\xd0\xdc\x85\xea\xd9\xd0\x33\xa2\xe5\x3d\x34\xb6\x0d\x69\x36\x55\x22\x54\x43\x99\x4d\xa9\xd9\xd5\x50\x66\x7b\x35\x76\x51\x3c\xd3\x92\x5d\x0d\x65\xb6\xa9\x69\xdd\x62\xb0\xc9\x16\x8e\x7f\x9e\x9a\x25\x86\x06\xad\x51\x6d\xf0\x7b\x6b\x28\x35\x4a\x9c\xf0\x62\x56\xb8\xdb\xab\xba\x61\x93\x7f\x8f\xd7\x66\xc0\x34\x89\x0b\xa5\x4a\x08\x8d\x0c\xf3\x2a\x21\xb4\xa5\x66\x0e\xb6\x74\x15\xa4\x9f\xcf\xfd\xec\xd1\xd7\x79\x20\x12\x06\x35\x24\x50\x3b\x53\xf1\x4d\x35\x60\xda\xd0\xf1\x49\x15\xb5\x33\xa7\xe5\x85\x70\x6c\x03\x20\x56\xa4\xbc\x45\xad\x5c\x0d\x98\xf6\xa0\xa1\xdb\x15\x7e\xa6\x9d\xe4\xa3\x07\x42\x84\xd5\x40\x69\x0f\x59\x5b\x16\x9b\x08\x85\x8e\x67\x80\xb4\x07\x5c\x0a\xb5\x23\xfb\xac\x6e\x61\x80\xb4\x07\xc2\x87\x15\x8a\xb7\xb0\x74\x3f\xa4\x67\x96\xae\x62\x31\x87\xa0\xc9\xd6\x00\x67\x8f\xb2\x10\x90\xe9\x8e\xb8\xa7\xaa\x01\xcd\x1e\xf5\x44\x70\xb0\x77\x75\xd8\xc1\x33\xa8\x83\x0c\x08\x16\xd4\x61\x0d\x5c\xf6\x24\x1b\x64\x90\xea\xa5\xc9\x68\xc0\xd6\x89\xd7\xb5\x42\xdd\xd6\x65\x59\x50\x78\x9e\xf4\xa5\x87\x68\xea\x98\x1c\x50\x2f\xcb\xe7\x2a\x93\x1c\x7e\xbe\x98\x00\xe5\xd0\xdd\xed\xf9\x32\xf6\x5e\x35\x30\xd9\x8b\xbe\xd1\x23\x5f\x33\xcf\x60\x20\x32\x89\x1c\xba\x4a\xb9\x8c\x4c\xff\x8a\x34\xf7\x88\x3a\x52\x62\xa0\xdc\xcf\x10\x62\xaf\xaf\xb6\xac\x0f\x0e\xf5\x2c\xa4\xb9\x1b\xfe\xe0\xfa\x40\x4d\xe7\xb5\x35\x28\xd6\xe1\x9d\x51\x39\xde\x92\xce\x03\x29\x9d\x23\x49\xca\x55\xbf\x7e\x48\xca\x05\xbb\x54\x24\xb9\xbb\xcc\x03\x10\xe1\x83\x95\x5f\x0d\x11\xf6\x4e\xa0\xb8\x1a\x22\x4c\x22\x09\xae\xd0\xb9\x0d\x6a\x52\xeb\x8b\x32\x1b\x3e\xed\x6a\x68\xb0\x3f\x9a\x88\x5f\xc4\x31\xa7\xce\xb3\xef\xf7\xa8\xd5\x86\x04\xfb\xa3\xb7\xfb\xa2\x3f\x5d\x74\x24\x62\xa7\x5a\x8e\xd1\xd9\xae\xb2\x13\xdf\x4b\xbd\x27\xfa\xb7\x6a\x68\xb0\xcf\xa4\x7b\x92\x05\x42\xce\x50\x7d\x55\x2f\xc0\x95\x26\x82\xae\x78\x7a\x2b\xca\x65\xf2\xcd\x57\xa8\xdb\x12\xce\xc1\x6a\x28\xb0\x29\xb2\x52\x27\xb9\x78\x1a\x2f\x13\xe1\xc8\x73\x15\x84\x23\x5f\x1d\x49\x1f\x95\xed\x3d\x49\x3c\xd6\xcc\x61\xe8\xaf\x2f\x3d\xff\x24\xdb\x45\x4b\x88\x21\xbf\x2e\x96\x9d\xfa\xa5\xce\x8a\x5b\xb6\xce\x2b\xef\x23\x3e\xdd\x3a\x3f\x79\x1f\x99\x18\x86\xfc\x7a\xd2\x4c\xb8\x3e\x79\x1f\x3c\xfe\x15\xa2\x74\xa5\x78\x56\xa5\xd7\x5a\x42\x09\x5f\x59\xc8\xcf\xb0\xa4\xf6\x5c\xf2\xe8\xa5\x05\xfa\xe8\x6e\xe7\xa9\x2c\xa9\xba\x60\x56\xd5\x42\xbc\x20\x7e\xa9\x7f\x0b\x9d\xd6\x13\x1e\x0d\x73\xe9\x33\xae\xfe\xed\xe1\xd5\x1e\x1a\xb7\x30\xb7\xa6\xa3\xf5\x91\xee\x6a\x0d\x5d\xef\x3d\x46\x60\x01\x79\xee\x04\xdc\xad\x87\xce\x2d\x1c\x5e\xf4\xba\x6e\x04\xf9\x5c\xe3\x0b\x97\x22\x51\x9d\xea\x17\x2e\x95\x57\xae\x7e\xe1\x52\xa5\x6b\xd6\x2f\x5c\xfa\x0a\xb0\xed\xcf\x72\x7d\x74\x56\xfe\x02\xa4\x3a\xe6\x0b\x99\x6a\xd1\xd8\x9f\xa4\x84\xba\xf8\xfe\xa8\xbe\x34\x51\xec\x1b\x66\x54\xad\x61\xfd\x15\x36\x95\xbd\xf2\x2b\x6c\x2a\x6b\x71\x7f\x19\x05\xea\x02\xfb\x86\x19\x37\xae\x9f\xba\xbf\xac\x02\x4d\x89\xfb\x8b\xb0\x53\x09\xd9\xdc\xaf\x50\xe3\xcb\x9e\x1b\x6a\x7c\xb3\xf6\x7c\xa5\x36\xb8\x55\x9a\xfb\x2a\x0e\xe9\x3c\xcd\x7d\x95\x77\x58\x5c\xcd\x7d\x59\x05\x5d\xc7\x90\x65\x03\x9c\x6b\xee\xcb\x40\x79\x74\xd5\x76\x83\x9c\x41\x7b\xfa\x97\x87\xf0\xb0\x47\x92\x32\x89\xad\x4f\x7f\x60\xe9\x79\x6e\x38\x59\xf5\x8a\xcd\xfd\x22\x6b\x56\x3b\xd6\xe9\xe8\x0a\x79\x36\x77\xc3\xc9\x72\xb5\x34\xff\x71\xf2\x33\xe8\x9a\xff\x24\x75\xc8\x44\x6a\x00\x59\x87\x97\xbd\xf9\xab\x20\xf5\xf2\xb6\x9b\xbf\x44\x23\xf2\x7c\xb7\x2f\xfc\xba\xce\x31\x97\x6c\x44\x2c\xfb\xed\x28\xab\xd5\xf9\x06\x9d\xd5\xee\x1e\xa6\xf0\x76\xf8\xda\xeb\x7c\x49\x6f\x6c\xfe\x23\x29\xa7\x17\x35\x7f\x49\x9c\xc5\xef\xdf\x54\x9d\xfe\x33\x9b\x78\xed\x31\xc4\xe7\xbb\xce\xf8\xd4\xb5\x4e\x5b\x48\x2a\x04\xcb\x34\x43\xb5\xb1\xe8\xfa\xe1\x12\x95\x2b\x4c\xdc\x54\x95\x6e\x24\xd7\xbc\xa1\xa3\xb0\xd6\xa6\xea\x70\x5b\xb8\xce\xd5\xad\xa7\x3b\xe1\xd9\x71\x88\xb0\x5b\xb8\x59\x39\xca\x74\x69\xe1\xcb\xca\x29\xba\x72\xbb\x7b\x40\x9a\xed\xa8\xac\x8d\xfb\xbc\x87\xb8\x7d\x1c\xb1\xa2\x76\x94\xd6\xc6\x94\x03\xa7\x85\x9b\x69\xb7\xa3\xee\x75\x59\x7d\xdf\xa4\xe7\xfa\x32\x55\xd4\xb7\xc3\x47\x6a\xc0\x94\xdd\x4e\xa5\x7a\x39\x35\x14\xed\xab\x54\x17\xcd\x5c\x8b\x5f\xfa\x01\x28\xaf\xc5\x78\xf7\x9c\xeb\x5c\xbf\xfc\x24\x1d\xbb\xc5\x2b\xd5\xa3\x82\xbf\x16\x6f\x99\xa6\x42\xdc\x4d\x95\xeb\x3f\x7b\x30\x3b\x9b\x2a\xd7\xd3\x3b\x5f\xcc\x9a\x16\xaf\x56\xcb\x8b\xd3\xa4\xc5\x4b\x2b\xb8\x09\xa5\xb7\x5f\x8a\x6c\x24\x59\xb7\x43\x31\x37\xef\x9b\x8f\x1f\xbb\xe8\xd6\x95\x3f\x5a\x4d\xd2\x00\xda\x21\x7d\x9f\xa7\x7e\xbc\x91\xf8\xdc\x98\x3b\xdb\x51\x64\x5b\xa7\xae\xbf\xa5\x4b\xb1\xa7\x64\x8b\x76\xaa\xda\xf7\x5c\x18\x4a\x4d\xb4\x73\xd9\xcd\xa9\x51\x9a\x2e\xc3\xec\x22\x11\xa7\xa5\x8f\xaf\x8c\x48\x48\xfb\xe8\xe7\x14\xc9\x6a\xa7\xba\xdd\xcd\xad\x99\x29\x7d\x04\xf8\x4e\xc7\xfc\x62\x37\xd0\x31\x66\x8a\xfd\xe0\x87\x7f\x5e\xfe\x9a\x0a\xdf\xf3\xcf\xca\xaa\x8b\xcd\xb3\x67\x6b\x62\x4b\x97\x06\x49\x8e\x99\x96\x7e\xf9\x39\x99\x50\x7e\x09\xba\x69\xb8\xe6\xcf\xbf\x8d\x43\xa5\x91\x6f\xdd\x8b\xfe\xbf\x5c\x19\x9b\xd0\x60\xcb\x7a\x65\xe9\x94\x79\x35\x0a\xe1\xab\x3a\xbb\x0a\xe1\x73\x3a\x21\x9e\x26\x15\xb7\x9c\xe7\xab\x97\x9c\x2f\xdd\xd9\x9b\x74\xd5\xeb\x5f\x93\xf8\x4d\x3b\xc5\xf0\xf9\xd0\xe9\xb5\x7c\x33\x41\x66\xd6\x31\xef\xdd\x83\x5d\xda\xc4\x21\x6f\x7b\x74\xe5\x75\xf6\x9c\x49\x56\x3c\xf2\xc6\xab\xc2\x07\x2d\x77\xa8\x4d\xfc\xda\xad\xf8\xb3\x47\xf5\x06\x4d\x45\xf2\x3f\xc3\x91\x4c\x87\xa6\x22\xf9\x5c\xe7\x0b\x80\x6e\x05\x27\x07\x09\x88\xcd\x9c\x00\x15\xa9\xfa\xd4\x0e\xed\x5d\x9b\x0a\xf8\x36\xf1\xca\xff\xec\x79\xb4\xe7\x92\x24\xbc\xe7\x98\x7e\xf7\x10\xca\x6f\xe5\xea\xba\xbe\xe0\xa5\x56\x9e\x6f\x0f\xd3\xc2\xa1\xc0\xeb\x77\x5a\x38\x14\x78\x7d\x4e\x2d\x8d\x87\x6b\xbe\x4f\xb1\xb8\xb6\xa2\x2c\x0b\x9e\x4e\xc5\xf3\x3f\xff\x63\xf3\x36\x73\x24\x44\x11\x4f\x37\x15\xce\xe7\x3e\x95\xa6\xdc\xea\xe5\x4c\x3a\xdf\xb0\x7e\x09\x93\xfa\x62\xf5\xc6\xbd\x54\x5f\xdd\x0e\xef\xfc\x38\x4c\x34\x4d\x8a\x70\xf9\x26\x4c\xb6\x43\x8f\x37\xe6\xd4\xa4\x7f\x9c\x0c\xe3\x2e\x7b\xa7\x5a\x7e\x1c\x79\x93\x56\x7f\xb1\xba\xd2\xff\xeb\x25\x53\x11\x1f\x66\x3b\x79\xe1\xcf\x7c\x87\xce\xfa\x98\x4d\xf5\xe5\xeb\x8d\x11\x89\x6f\xb3\x89\x36\x2f\xbf\x87\x0e\xb9\x35\x7f\xf6\x28\x85\xba\x9d\xea\xf9\x9f\x3d\xbc\xdf\x16\xbf\x3d\xba\x4e\xba\x7b\x48\xca\x6e\x24\x85\x27\xdc\x8e\xed\xd0\xe8\xcd\xf9\x66\x5d\xd5\x62\x0c\xe7\x1b\x1d\xd5\xb8\x79\x27\xe9\xf6\x25\xd8\x82\xe5\x9b\x79\x20\x72\xd1\x94\xa3\xc4\xf0\xbc\x0e\xe5\x64\x3b\x55\xf3\x6b\xca\x11\xda\xda\x2f\xd9\x19\xde\xb6\xaa\xe6\xf3\x9a\xdb\xa9\xe5\x7a\x27\xfb\x8e\x33\x55\xce\x17\x37\x5f\x9c\xdb\xed\x54\xce\xbb\x43\x02\xd8\x4e\xe5\xbc\x9b\x2f\x7e\xf5\x76\x2a\xe7\xdd\x7c\x9b\x8e\x49\x77\x0f\x46\x67\x93\xb2\xdc\xcf\x1e\xf0\x5f\xeb\x97\x74\x67\xe2\x68\x6d\xfd\x66\x98\x9d\x05\xbe\x7f\xe5\xaa\x43\x7b\x3e\xc2\x19\x2d\x2a\x0a\xa7\x97\x9f\xa9\x5d\x4f\x71\xb3\xef\xce\xbc\xda\xdf\xbb\xa7\xe9\x2c\x91\xae\xf8\xf9\x16\x3d\xc5\x25\x42\x57\x32\x6e\x83\xb4\x3e\xea\xab\x8e\xab\x53\xa1\x2a\xef\x36\x2e\xfd\x9c\x38\x88\xda\xd1\x67\x0f\x73\x6b\x4e\x1c\x9f\xbc\x18\x2e\xb0\xa6\xf0\xb9\x31\xcf\xf1\x8e\xa5\x30\x57\xe2\x91\xef\x6d\x47\x61\x2e\xcd\x97\x98\x6b\x93\xc2\x5c\x49\x53\xda\x34\x6d\x8c\xbb\x27\xea\x18\x65\x9e\x31\x26\x45\x58\x6f\x51\x3d\xde\xef\xf8\x28\x06\xf1\x49\x35\xb4\xdb\xa5\x3d\xd2\xc6\x65\x96\x78\x89\xd5\xb5\x13\x4e\xcf\x73\xe2\x84\x6d\x27\x9c\x9e\x79\xe6\x7f\x5e\xf2\x54\x8c\x5f\xf2\xdc\x44\x4e\xda\xa1\xdd\x2b\xa7\x12\xb5\x29\xac\x5e\xca\x14\x9c\x6f\x0a\xab\x97\xcf\x3e\x56\x58\xfd\x67\x8f\xac\x6e\xe5\xa9\x97\x72\x34\x03\x9a\x42\xeb\xa5\x5c\x1b\xee\x50\xf0\xd5\x39\xb3\xae\x33\xee\x1e\xc2\xca\xed\xa1\x34\x48\x43\xf5\xb9\x25\x27\x02\xe9\x4d\x39\xea\xa5\xce\xad\xee\x8f\x43\xe5\xbc\x32\x1c\x2a\x92\xf9\x6b\xe2\xc9\x2f\x6d\x2e\x59\x9f\x50\xf1\x79\x9c\x4d\x4d\x54\x7c\x3f\xff\xe3\x83\x6d\xca\x4f\x2f\x7d\x4e\xb0\x6c\x33\xe7\x4a\x12\x07\x4b\x7b\x3f\x34\x79\xf6\x88\xb6\x8c\x67\x34\x07\x4b\xdb\x00\xf3\xf6\xde\xe4\xdb\x57\x9f\x8b\x70\xfb\xd6\x54\xf3\x5e\xd2\xec\xdb\x3e\x88\x27\x96\xce\xbf\x19\x43\x5b\x66\xc1\x0b\x37\x8f\xa6\xc3\xf7\x22\x24\x91\xf1\xb5\xf7\xe3\xe7\x21\xca\xd4\xe6\x1d\x26\x67\x49\x39\xe1\xf7\x3e\x97\x06\xb1\xf2\xd1\xf3\x9c\xe2\x30\x6d\x87\xaa\x2f\xcf\x15\xb5\xe7\x26\x6c\x9e\xe1\x46\x81\xbf\x6a\x74\x9a\xc2\xf0\xb9\x4e\x11\x2b\xb4\xf9\x65\xe1\xe0\x54\x6a\x27\x1f\x7d\xcf\xa5\x45\xf5\xd0\xf6\xc5\x43\xf2\xd8\xe6\xf8\x9e\x49\xf7\x91\xb5\x5b\x0e\xc5\x44\x3b\xd4\x7d\xf5\x2e\xe0\xf3\xd2\x9b\x6d\xd9\xa5\xe6\x9c\x89\xf3\xd5\x35\xf6\x6d\x1d\xb1\x8c\xb6\xa8\xbf\xc1\xd7\xdd\xd6\xf5\x36\x6c\xbd\xfb\x75\xbd\x0d\x67\x1c\x1c\xe7\xcc\x3c\x8e\x97\xb6\xae\xd9\xa6\x64\xd3\x66\xce\x99\x9f\xb7\xc6\x56\x81\x31\x80\x36\xac\x0f\x49\xe3\x00\x6a\xeb\xf2\x17\x9d\xa9\x92\x3a\xe8\x47\x93\xf4\xba\xcb\xef\xab\xfe\xb1\x2e\xa1\xb8\x82\xe0\x4d\xde\x97\x9f\x45\x43\x93\xeb\xba\xe4\xd2\x12\x0d\x6d\x47\xdd\x6e\x1f\xb1\xaa\xf6\xa9\xdb\x2d\x8d\x9c\x7d\x97\x5f\x25\x25\xb4\xfd\x25\x33\xc3\x7c\xd5\xf6\xb5\xfe\x55\xdc\xd6\xf6\x1d\x2f\x4a\x0b\x68\x9f\x07\x46\x25\x7d\x6d\xdf\xba\xf5\x57\xe3\x4e\x1e\x98\x1f\x03\xf8\xd5\x9e\x8f\xdb\x0c\xd7\x76\xdb\x5f\xf2\xfe\x50\x0b\xfb\x77\x8c\xae\xfc\xcb\x03\xc3\x17\xf9\x3c\x30\xe2\x0e\x6b\x5f\xe2\xfa\xa4\xf2\xaa\x6d\x6a\xb4\xb4\x5c\x6d\x6a\xb4\x84\x27\xcc\xf3\x92\x1f\x30\x49\x27\xfc\x5f\x78\x8e\xae\xfa\xe9\xaa\xff\x02\xff\x65\xb6\x22\xa9\xd7\x83\xad\x9b\xa2\xa3\x02\xc1\xee\x30\xe7\x87\xfe\x2f\x67\x2c\xa9\x98\xb7\x1f\x2f\x4b\x98\x13\x27\x79\x77\xdf\xdc\x51\x74\xcc\xa7\xd5\xbe\x75\xd5\x3b\x7f\xaa\x1e\xa5\x1f\xd2\xfd\x78\xea\x48\xba\x3c\x2d\x3f\x0b\x44\xd7\x59\x97\x65\x5b\x42\x53\xdd\x5d\xb3\x55\x9a\xec\xdd\x7d\xc8\x10\x17\x70\xf7\x1f\xf9\x3a\x0b\x5a\xff\x48\xf8\x55\x2b\xdf\xfd\xd5\xeb\x7e\xc9\x5b\xec\xfe\x7a\xa0\xd4\x3f\xba\x97\x39\xaf\x6b\x7c\x24\xf4\xe5\x6f\x0e\xcb\x7e\x72\xe0\xdf\xf9\x62\x45\x76\x7f\x45\x02\x35\xdd\x75\x39\x61\x7e\xac\x48\x9c\x4f\xdd\x5f\x66\x50\x89\xfd\x77\xff\x4d\xbb\x4b\x7b\x1e\x32\xd5\x1f\xb6\x2e\xd9\xb5\x32\xca\xbb\x27\xf3\x85\x41\xda\x7f\xf3\xf4\xf3\xba\x3e\x99\x7b\x89\xfe\xf4\xe0\xbe\x8f\x45\x87\x09\x17\x15\x0a\x16\x77\x94\xf2\x44\x6a\xd8\x51\xca\x4b\x7a\x71\xa4\x18\xf8\xf3\xdf\x97\xf5\x84\x2b\xac\x87\x5f\x59\x3f\x3a\x86\x77\x51\xd7\x7c\x89\x7b\xf4\xe3\x7c\x29\xc7\xcd\xda\x0f\x5f\x7f\x9b\x33\xab\x0d\x9f\x73\x81\x25\xa4\xcb\xf9\xf2\xb3\x60\x30\x38\x7b\xb8\x0e\x29\xa5\x95\xf6\x30\xbf\xe9\xc3\xb3\xc7\xa6\xdb\x12\x75\x8d\x6f\x19\x02\x49\x74\xf2\xe7\x83\x3a\x93\x39\x5d\xe2\x0b\xea\xe9\x1f\x6f\xbf\xf0\x4b\x8f\xf1\x9b\xae\xb5\x27\x7d\x4b\x14\x6d\x90\xc3\xc5\xb0\x2c\x6d\x88\x1f\x23\x30\x5e\xfc\x1e\xaf\x59\x22\x0c\xda\x8f\xfc\xfd\x33\x27\x11\x82\x7e\x54\xf5\xde\x43\xd4\xdc\xe3\x2d\x9f\x9b\x67\xcf\x7d\x27\xaa\xdd\xe9\x9f\xc3\xe5\x7c\x91\x78\xe3\x03\x2f\x4e\x8e\x1e\xaf\x8a\xa2\x10\x79\x97\xc3\xe5\x67\x78\x62\x14\x75\x73\xb8\x58\xc1\xb2\x6d\x21\x2e\x89\x9b\xa7\xcb\xd9\x62\x14\x10\xb4\xd5\x9c\x2d\x5d\x25\x55\x3d\x89\x8c\x85\x6b\x1f\x27\x4b\x9b\x8b\x18\x63\xa7\xe2\xdc\xab\x8f\xab\xe2\x3c\x69\x0b\x81\x60\x3d\x9f\x2a\xce\xb3\xee\x82\x56\x32\x8e\xf8\x4e\x1a\xc3\x04\x6f\x75\xf3\x9a\x14\x5f\xd4\x82\x49\x9c\x54\xcf\xb2\x88\xac\xe9\x9a\xfb\x5b\xb6\x79\x43\xe6\x29\x29\x4e\x53\x4c\x26\x0d\x80\x88\x5d\xcf\xc4\x58\xbd\xb6\xae\x50\xee\x4b\x2a\x4b\xcf\x97\x31\x57\x62\xbc\x3d\xdf\x65\x45\x4c\x01\x5d\x49\xf7\xd0\x78\x74\x92\xee\xa5\xd4\xd1\xf3\xe5\x64\x50\xbd\x4f\x57\x85\x3a\xc6\x4a\x47\xe7\x5e\x46\x5d\xcf\x5f\xa9\xef\xab\xd6\x5a\x06\x59\xd5\x34\x9b\x3f\x67\x35\x8e\xf5\x9e\x3f\xc2\x6c\xaf\x3b\xfe\x1a\x03\xb4\xe8\x78\x44\xda\xc1\x65\xdd\x3c\x22\xce\x53\x59\xd3\xcd\x1b\xe2\x1c\xc6\x41\x37\x4f\x88\xf3\x60\xe1\x6e\x5e\x10\xa7\x04\x9d\x6e\x5e\x10\xa7\x24\x94\x6e\x5e\x10\xe7\x48\xc9\xed\xe6\x01\x71\x9e\xe5\xad\x9b\xf7\xc3\x39\x9c\xc1\xdd\x3c\x1f\xce\xab\x37\x99\xd7\xc3\xb9\xa9\xb6\x3c\xf6\x9f\xc6\xb3\x79\x3b\x9c\x9b\xba\x83\x71\x2b\x45\x52\x52\xba\x79\x39\xbc\x98\x20\xba\x79\x38\xb6\x8a\x80\xbb\x79\x38\xbc\xfc\x5e\xdd\xbc\x1b\xce\x81\x6e\xba\x79\x37\x9c\x27\x3d\xa6\x9b\x67\xc3\x49\x65\xaf\x9b\x57\xc3\x79\xe2\xfd\xdd\x3c\x1a\xce\x2d\x5d\xc5\x9e\x2f\x64\x1d\xa9\xe7\xa3\xd5\x95\xe7\xc3\xf5\xdd\x2b\xcf\xf7\x33\x8f\xff\xf3\x52\x52\x79\x74\x7c\xc0\xbd\xf2\xe8\xfa\x4c\x95\x47\xc7\x7e\xe8\xe6\xcc\x70\x52\xbd\xeb\xe6\xc8\x70\x2a\x20\xec\xe6\xc4\x70\x9e\x14\xc0\x6e\x0e\x0c\xe7\xf0\xb6\xf6\xc6\xa7\xd5\x0b\x6c\x7c\xda\xad\x2d\x3e\xad\x86\x69\xe3\xd3\xe2\x84\xe9\x8d\x4f\x0b\x38\xed\x8d\x4f\x4b\x3d\x67\x6f\x3c\x3a\x6e\x87\x6e\x8e\x0a\xe7\xb1\x67\x7b\xe3\xd1\xb5\x7c\x98\x83\xc2\x79\x4d\x71\xe6\xa0\x70\x4e\x4b\x93\x39\x27\x76\xd4\x14\x69\x8e\x09\xaf\x3a\xf4\x6e\x4e\x89\x1d\x35\x5d\x99\x43\xc2\x8b\x5e\xba\x77\x9e\x0f\xfb\xb8\x9b\x23\xc2\x85\xa2\xff\xec\xf9\x82\xba\xb5\x39\x20\x5c\xd0\x34\x65\xce\x07\x17\x70\x17\x75\x73\x3c\x38\x65\x22\xf5\xce\xa7\x25\x06\xd4\x3b\xcf\xa7\x89\xa7\xf3\x69\x41\x7e\xbd\xab\xeb\xea\x2a\x83\xfb\xa9\x2d\x0f\x6d\xd1\xd6\x82\x18\x85\xaf\x62\x4e\x83\xa0\xe0\x70\x1f\x10\x95\x10\x85\xea\x50\xf2\x89\xf8\xa2\x0f\x6a\x45\x64\x5b\x1d\x7e\xfe\x3a\xdf\xaa\xa3\x6d\xba\xdd\x9a\x6e\xa9\x4c\x17\x71\x42\x1f\x64\xf2\x90\x51\xd5\xc7\x2f\x29\x15\x5d\x0d\x2d\x11\x4d\x84\x54\xa7\xbf\x5a\x70\xcd\x71\x90\x1e\x2d\x8d\xe3\x32\xb4\xca\x0d\xd6\x45\xcd\xa7\x05\xfb\x38\x0d\xea\x9c\x9a\x8c\x50\xba\x13\xbb\x55\x1f\x77\xda\x11\xb5\x62\x37\xa7\x41\x93\xc4\x68\x37\x87\x41\xf7\x60\xab\xfe\xa0\x37\x42\x96\x51\x7f\x50\x0d\x93\x79\x62\x9e\x80\x2a\x06\xaf\xfe\xdc\xf2\x3c\xe1\xbb\x7e\xbc\x00\x6d\x4e\xa7\x6b\x23\x97\x84\x23\xae\x3f\xd7\xfc\x50\x31\x64\x3f\x29\x14\xda\xb2\x6c\xc0\x46\xb2\x45\x07\xf9\x27\xa7\x36\x5b\xd2\xb5\xd7\xc2\xf2\x5c\xe7\xd0\xd6\xf2\xfb\x48\xb3\x59\x2d\xdd\x54\x38\xf1\x9d\x7e\xa1\x7e\xb5\xfd\x25\xf3\x51\xc6\x9a\xa1\xfe\x56\x74\x25\x43\xfc\x75\x04\x1d\xf9\xcb\xfb\xc1\x33\x7d\x7a\xf4\x42\xe5\x9d\x94\x8a\x0a\x52\xee\x10\xf0\x3b\xcd\x01\x68\xd1\x47\x2d\x6a\xaa\x42\xff\x01\xac\x5a\xb4\x5e\xe9\x31\xe8\x7f\x48\xf8\x41\x57\xfd\x43\xfb\xaa\x59\xef\xa4\x55\x9c\x2f\x07\x6d\x5f\x9d\xba\x13\x6c\x12\x20\xbc\x6e\x28\x3f\x49\x47\xa7\xa3\x43\x2f\xea\x90\x6e\xe8\x3e\x49\x32\xa9\x1b\xb2\x4f\x4a\xd5\xef\x53\x7d\x9a\x31\x66\x88\x3e\x27\x5c\xbd\x1d\xca\x3e\x89\x35\x77\x69\xcf\x93\xff\xd6\x27\xa5\xa6\x9a\x15\xe7\x8d\x73\x1e\x44\x81\xfe\xfc\x3a\x47\x3f\x6c\xf1\x9c\x24\xd4\x1f\xe3\x72\x7e\x32\x68\x5a\xce\x50\xc1\xcb\xe7\xbe\xfb\x33\x50\xfb\xdf\xa6\x75\x03\xf5\x45\x99\x37\x1d\x4e\xfe\x41\x3e\x54\x5f\x9f\x95\xa9\x8e\x82\x48\xde\x8b\xeb\xa7\x2f\x88\xbe\xb4\x16\x2b\xcb\x22\xfb\x39\x49\x62\xec\x06\xe6\x6b\x94\x3d\x02\x99\x99\x94\xd9\xfa\x6a\xdf\xea\xaf\x6b\x03\xe4\xbd\xce\x25\x37\xfd\x51\xbb\x2c\x63\x4d\xaa\x61\x7d\x7d\xce\x0c\xbc\xe5\x7d\xdd\x78\xcb\x81\x87\xe4\xda\x8f\xae\x33\x2c\x47\x5d\x85\x79\x9d\x3c\xfb\x57\x76\x0a\xc4\x66\x4b\x68\x68\x93\xc4\xac\x29\xd4\xc0\x7a\xcb\x24\xdc\xf6\xad\x4f\x4f\x9b\x36\x89\x89\x38\x1e\xfa\xa6\x72\x53\x70\x15\x2e\x7e\x85\xf7\x3a\x54\x7e\x9b\x62\xbf\xbe\x71\x68\x91\x18\xdc\xe1\xe1\x97\xf4\x67\x37\x30\xde\xbb\x56\xf1\x4d\xe6\x1a\x9c\xa2\x7d\xab\x6b\xab\x9d\xf2\xf5\xc6\x39\xcf\x5d\xbe\xca\x71\x22\x55\xc3\x91\xab\x4e\xf0\x79\x38\x86\x34\x0e\x85\x21\xf9\x79\x6c\x9e\x61\x60\xbc\x37\xfc\xc8\xc3\xa1\xf6\xc7\x62\x3b\x0c\x88\x27\x25\xbb\x0e\x47\xe6\x0c\xf6\xe3\x70\x24\x91\x4e\xfd\xf7\xc9\xc9\x54\x9d\x4b\xa2\xec\xa3\xf6\x8c\x8b\x34\x9d\xce\x87\x2f\xa7\xa9\x85\xef\x45\x1a\xc4\x17\x87\xa3\xda\xf8\x5c\xed\xd3\x58\xa7\x97\x0c\x77\x9d\x32\x72\x27\x0e\x8f\x46\x0a\xe1\xcf\x01\x3b\xd9\xc6\x69\x37\xc8\xc1\x17\xd5\xde\xf0\x24\x30\x33\x01\x0c\x43\xca\xe9\x65\x01\x18\xb0\x93\x15\x10\xd0\x30\x84\x6c\x5c\x2a\xb6\xd5\x49\x79\xe5\x5d\xf9\xfb\x4c\x8b\x30\xf2\x30\x64\x9c\x94\x80\x31\x48\xb4\xcf\x8f\xae\x34\x8f\x5b\xe9\x25\x2f\x6b\x50\x29\xfe\x2e\xdd\xf7\xc6\x33\x5e\xfc\xe8\x83\xd4\x84\xa7\x6b\x8b\x04\x53\xd2\x3d\x86\xa1\x61\xcb\xcb\xb6\x2d\x9b\xa6\x5e\x26\xe1\x61\x68\x38\x09\xd7\x8e\xf0\x85\x93\xf5\x2d\x4e\x2a\xc2\x9c\xcb\xeb\x8c\x7a\x9e\x44\xd4\x7c\x23\x5c\xe4\xa7\x48\xd1\x08\x1f\xf2\x9b\x3a\xc6\x96\x62\x29\x43\x8c\x83\x84\xdb\x51\x30\x1c\x24\xe2\xd7\xa4\xbb\x1a\xfa\xc9\x98\x5c\x23\xf0\xec\x4d\xcf\xf6\x3d\x3b\x63\x71\x18\x02\x4e\x5a\x2a\x07\xc9\xf8\x83\x11\x3f\x0c\x01\x27\xd1\x73\x8f\x78\x63\x7e\x72\x72\x8f\xc8\xdc\x84\xfd\x3d\x0e\xf2\x2d\x73\x65\x9d\xff\xa5\xa7\x14\x9d\x51\xaf\x73\x06\xaf\xc5\x88\xd7\xf9\xba\x8b\xee\x83\x70\x2d\x4b\xd7\x88\xc4\xb4\x88\x6a\x0f\x43\xbc\x55\xc9\x0d\x23\xc2\x33\xe6\x75\xe4\xbc\xc8\x86\xd1\x3a\xa8\x2c\x17\x79\xff\x40\xbd\xae\xb2\x8c\x8c\x24\xd4\xb3\x0e\x37\xed\x10\xca\x65\xee\x1c\x27\xa5\xa0\x9e\xb8\xc8\x80\x53\xed\xbc\x1b\x2a\xcc\x8b\x9e\x3d\x7d\xe4\x20\x8f\xfb\xcb\x72\x30\x00\xc0\x03\x48\x33\x00\xc0\x0f\x19\x1c\x03\xca\x35\xf9\x31\x87\x01\xe0\x52\x8b\x1a\xc0\x34\xc6\x74\x3b\xc4\x99\x6f\x36\x81\x1a\x01\xdd\x97\x5e\x63\xa2\x22\x14\x7b\x73\xa4\x9b\xed\xb6\x8a\x1e\xd7\xac\x93\x42\x08\x67\x00\x82\x97\xba\x58\x46\x4e\x04\x80\x34\xa8\x36\x97\x9c\xd1\x30\x10\x9c\x94\x4c\x38\x3e\x00\x2c\x07\xc8\x38\x00\xb8\x9f\xfc\x88\x61\x00\xd8\xb8\xac\x6d\xab\x92\xe9\xae\xff\x78\x5e\x72\x6e\xc6\xe1\xc9\x5f\x53\xe4\x78\x83\xbc\xff\x01\xd2\x18\x06\x80\xb3\xa8\x3e\x06\xe0\x57\x61\xef\x91\xbf\xcc\x12\x0d\x8b\x0c\x71\xc2\x39\xda\x3e\xff\x26\xfc\x3e\xc8\xfd\xf7\x7a\x5e\x38\xf2\x33\x61\xd4\x51\xae\x2a\x98\xc2\x6a\xe3\x70\xe4\xd7\xa3\x34\x3d\x0a\x43\x5f\x13\x10\x92\xf2\x5d\x77\xa2\x0a\x3d\x11\x03\x18\xe5\xf2\x9f\xaa\xf4\x6f\x94\x3b\xe4\x5f\x4a\xd8\x06\xb5\x00\xe3\xd5\xdd\x06\x5c\x5a\x3a\xfa\x2b\xfd\x23\x44\x3e\x0a\xdd\x5e\x93\x0c\xb5\x02\x5e\xc3\xb9\xc0\x47\xa9\x6f\x71\x78\xf2\xcb\x7c\xc1\x71\xa3\x42\x18\x01\xb6\x18\xf5\xab\xfc\x25\xb6\x35\xea\xcd\xc2\x9a\xe0\xab\xa1\x50\xbf\x49\xfc\xd0\x97\xa8\x1d\xf0\xd8\xc4\xc3\x40\xb1\x55\xa1\xda\xd6\x95\x8f\x91\x68\xea\x80\x23\x7f\x6b\x82\xa9\x2c\xd3\x9a\xaa\x15\xda\xff\xb1\xd5\x71\x7f\x0c\x43\xc0\x49\xe8\x6a\x54\x12\x7c\xb5\xf4\x19\x02\xb6\xda\x3b\xdb\xfa\xc2\xf9\x49\xff\xdb\x54\xa7\x7a\x95\x71\x68\xde\xfc\x51\x32\x1b\x5f\x28\x7f\x63\x5c\x0d\x6a\x09\x54\x72\x37\xd0\x8e\x6f\x60\xdc\xd1\x6e\xac\x49\xf4\x84\x03\x4e\xb7\xac\xf1\x65\x88\xd8\x78\x32\x6d\xcb\xfa\xb8\xd8\x92\x07\x45\x03\x8a\x0b\x0d\xd4\xef\xa6\x16\xf7\xc6\xd2\xb6\x74\xcd\x01\xcd\x35\xcf\xdb\xae\xda\x9f\x10\xc5\x30\x54\x1c\xcb\xb9\xa7\x4d\xed\x89\x38\xce\x80\xc7\x2d\x3d\x6a\x3d\x35\x64\xf8\x07\x06\x5a\xf1\x62\x29\x1d\x0a\xcf\xdb\x64\xc6\x9b\x57\x78\xfe\x67\x69\xc2\xff\x3e\xfa\x55\xa8\x7c\x31\x86\x46\x47\x26\x48\x63\xa0\xdf\xe9\xfd\xd5\xfd\xa9\x6e\x1f\x5b\xf7\x30\xc4\x31\x34\x73\x51\x48\xb0\x31\xea\x46\xbf\xca\x8e\x53\x4f\xd2\xaf\x26\xf5\x31\x53\xfa\xcd\x1e\x93\xd6\xcd\xe8\x37\x83\x57\x54\xa3\xa3\x7f\xba\xe4\x9a\x94\x3b\x1a\x28\x4e\xff\x53\xdf\x43\xb2\xcc\xa0\xf0\xe0\xcc\x42\x14\x1e\x24\xf0\xc6\x30\x54\x6d\xfe\x5f\xdb\x8a\x14\x45\xf3\x6e\x0c\x51\xe7\x76\xce\x23\x31\x5f\xa3\x99\xc2\x83\x80\x8b\x78\x0c\x49\x23\xe9\x2a\x10\x86\xcb\xbc\x19\xd2\x5f\xff\x73\x39\x28\xf9\x7f\x5d\x0d\x50\x93\x17\x2b\xf7\x30\x9c\xdd\x9a\x66\x6d\x69\xe1\xe1\x18\x1b\x86\xb1\xeb\x23\xa3\x05\x7c\x5d\x9b\xee\xb6\xc1\x8b\x1c\xf9\xe0\xd6\x96\x41\x00\xb6\x76\x1a\x25\xd4\xb5\xa7\xa5\x2d\xc3\x99\x91\x0a\xc2\xa1\x28\xfb\x0f\x8a\xd7\x12\x7a\xc4\xed\x74\x34\x06\x38\xee\xf0\x61\xb8\x3a\x57\x8d\x65\xc3\xd5\xe6\x63\xb7\x2d\x0a\x9a\xd5\x72\xc3\xd4\xc9\xe3\x10\x1f\xa7\x60\x7d\xce\x85\x78\xdc\x00\x57\xab\x8c\x73\x18\xae\xae\x83\x0a\xa7\xf1\x7c\x09\x29\x44\x9c\x86\xe1\xea\xf6\xe0\xd5\x18\x94\x27\x14\x30\xf9\x10\xd3\x9b\x99\x53\x5c\x8d\x12\x05\x2f\xf3\xf7\xbd\x2e\x7c\xc9\x37\x0c\xc3\xd6\xf5\x39\xe7\xdf\xd5\xeb\x05\xa7\x8e\x57\xcf\xac\xab\xd5\xfb\xbf\xe6\xc7\x5f\xd1\xf4\x57\x57\xfc\x64\xa8\x35\xa3\x83\xaf\xf7\xf9\xdf\xbe\xb1\xaa\xc9\xc6\xfb\xe5\x48\x6a\x0e\xa5\x88\xdd\x69\xfe\xa7\x6c\x41\xe5\x41\xe3\x28\xce\x73\xef\x13\x45\x7f\xe6\xd4\x8c\x86\xea\x7c\x50\xdb\xa6\xb8\x2b\x78\xb6\x89\xa1\x4e\x06\xc1\x30\x8c\x9d\x95\xb2\x36\x0e\xc6\xd6\x55\xb0\x50\x00\x5a\xc3\x30\x76\x51\x99\xfc\x40\x69\xde\xe3\x17\x1a\x30\xb7\x89\xbd\x79\x4c\x28\x72\xb2\xce\x93\xb8\x9b\xee\x80\xcc\xb6\x46\x87\xe1\xeb\x32\x35\xb3\x22\x68\x27\x9a\xdb\x81\xa0\xdd\x20\x14\x31\x10\xb4\x53\x31\xc6\x58\x08\xf9\xa9\x27\xc1\x7d\xef\x89\x7d\x0e\xd8\xdb\x54\x96\x33\x0c\x38\xb7\x2a\x10\x23\xee\xfb\xa1\xab\x90\x1d\x11\xb5\x65\xa5\x19\xd2\xc2\x1d\x8b\x12\x28\xcd\xa3\x0b\xa6\x68\xad\x20\x8b\xf2\x93\x1f\xf3\xff\x7f\x6f\xe2\xfd\xe7\xf8\xf7\xff\x67\xfd\x97\x7f\x73\xce\xe1\x62\x16\xe1\xbb\xbd\x2c\xe7\xf0\x8f\x3b\xec\x03\x67\x0e\x67\xe7\x2a\xfe\x4b\x5b\x78\x37\x5c\x63\xce\xe1\x77\x76\xb6\x76\x6e\xcc\x69\xe7\xe4\xc9\x6d\x28\x59\x58\x5a\xb0\x73\x72\xe1\xda\x6a\xb5\xc9\x8a\x70\x4e\xfe\xd9\xc6\xe9\x56\xe3\xe3\x1c\x8e\x59\x07\x9b\x8a\xf3\xba\x26\x1e\x67\x5b\x78\x36\x06\x86\x73\x0d\x57\x33\xfc\x29\xce\xd3\xa4\x86\x8f\xd9\x96\x99\x8d\x4a\x8c\x73\x72\xbe\xda\xfa\x12\x9d\xcd\xc2\xce\xe1\x75\x75\x5d\x4d\x9a\xec\xe4\x89\x60\x06\x75\x6a\x3c\x7e\x56\xd7\xd5\xce\xcd\x4e\xda\x09\x1b\x8a\xb3\x6a\x57\xe7\xf0\xac\xba\x4e\x3b\x13\xaf\xae\xd3\xce\x4e\x3b\xad\xbf\x38\xd7\x69\x67\xa7\x9d\xe6\x65\x71\x6e\xd0\x4e\x9b\xcb\x37\x84\x04\xce\x0d\xee\x6e\x93\x78\x70\x9e\x26\x8d\x76\x28\xfa\x6d\x27\x77\x1f\xdc\x9d\xcc\x29\x2a\xdf\x9d\xb3\xa9\xc0\x62\x18\x76\x23\xae\x69\x63\xdf\x42\x0b\xb6\x53\x47\xe2\xe8\xb6\x91\xbe\xa1\xfc\x70\xce\x46\xb9\x73\x2f\xed\xcc\x3c\xfb\xe4\x74\x1b\x47\x21\x58\xba\x9d\x73\x93\x4e\xb4\x78\x9f\x16\x93\x73\x6e\x29\x16\x61\x94\xda\x21\x70\xf7\xdd\x8f\xcf\xfe\x5f\xff\x16\xe8\xd0\xce\x9b\x37\xc1\x79\x47\x73\xcd\x35\xe1\xbc\xb9\x01\x9c\x37\xb4\xbf\x97\x55\x65\x39\x6f\xc1\x74\x8b\xdf\xfc\xeb\xdf\x62\xb4\xa0\x93\xf3\x5e\x41\x1d\xeb\xb4\xd1\x26\x6c\xe7\x03\x31\x13\x68\xba\xb3\xcd\xad\xce\x1b\xdc\x72\xde\x70\x56\xc0\xa8\x72\x3e\x71\x77\x43\x39\x21\x2f\xee\x9e\xc6\x09\xf8\xfc\xec\xac\x9c\x9e\x08\x69\x64\xf4\x1a\xe8\x75\x3e\xe3\x7b\x97\x54\x42\x61\xa7\xe2\x53\x85\x1e\x12\x38\xbd\x70\x7a\xe3\x74\xed\x54\x68\x62\xa0\x2b\x41\xb7\xf1\x83\xd3\x6d\x59\x74\xb1\xb3\xf3\xe1\x89\x6c\x15\x73\xd1\xfc\x97\xce\x3f\x78\xf7\xf9\xa8\xf1\xe1\xc8\x77\x9c\xd0\xcb\xcf\xce\x97\x23\x27\xd7\x84\x05\xd1\x9b\x6f\xce\xf9\xcd\x91\xe6\x34\x0a\x28\xec\xba\x60\x0e\x23\x17\xcc\x1b\x14\x12\x9f\x38\x38\x82\x11\xe6\x8a\x09\xa8\xe4\xba\x60\x1f\xc7\xa1\xf6\x1f\x7c\xe5\xf4\x18\x4e\xd4\xe9\xe7\x48\xc7\xce\xe2\x4e\xd4\xc3\xb4\x7c\xd8\x49\x18\x08\xdd\xe7\xfc\x30\xb1\xa0\xbd\xec\x90\x58\xce\xd3\x2a\xce\x1c\xa2\xbf\x0e\xa5\xdf\x44\x4c\xc2\xa1\xed\xeb\x10\xf5\x4d\x64\x02\x3a\xc4\x79\x1d\xaa\xbc\x19\xe9\x18\x87\xbe\xae\x43\x2b\x37\x07\xc7\xe9\x0f\x01\x15\xb3\x18\x72\xb0\xe8\x85\x43\xb4\xd5\xa1\xd6\x9a\x37\x53\x10\x2a\x99\x2e\x28\xff\x65\x6a\x27\x47\x6e\xdc\xc9\xe6\x78\x76\xe8\x56\x3a\x04\x2b\xb3\x37\x5b\xdb\x21\x4f\xe9\xd0\xa5\xcc\x7e\x6b\xe7\x64\x27\x4c\xc0\x7c\x0e\xd4\xf7\x1c\xb2\x7b\x79\x19\x7c\x71\x88\xe1\x39\x54\xf0\x4a\xc8\xdc\x88\xfe\x89\x2c\x5d\xa9\xe6\x84\x77\xc8\xb1\x39\x74\xd8\x2a\x7c\xbb\x0e\x1d\x36\x87\xc8\x5a\xcd\x66\x4e\x3a\xc4\xca\x1c\x2a\x65\x69\x59\x11\xae\x43\xa1\xcc\x21\x4b\x96\x56\xe6\xee\x84\xf1\x90\xef\x4a\xea\xf3\xc8\x50\x39\xb4\xa7\x72\xb0\xc4\x31\x87\x2e\x94\x93\x20\x54\xa4\x33\x20\x53\xe4\xd0\x26\xca\xf8\x97\x1d\xda\x44\x0e\x51\xa2\x4c\x81\xa7\x43\x32\xc8\xa1\x15\x94\x9f\xcc\xce\x97\x1b\xc1\x85\xfb\x34\x76\xd2\x93\x51\xd4\x29\x81\xe9\x17\xbd\x1b\x87\xd0\x4d\xc9\x4b\x3b\x79\x21\x2c\xe5\x65\xf3\x44\x8b\x23\x11\x76\x7d\x99\xd6\xd0\x75\x71\x08\xba\x94\x97\x59\x31\xd9\x08\x70\xc9\xc1\x78\x60\xce\x2f\x97\xcc\x15\xe7\x12\x3e\x38\x32\x0a\x5c\x32\xaf\x91\x4b\x91\x4f\x6c\xbe\x7c\x97\xcc\x15\xe4\x12\x3e\x20\x4d\x80\xc9\xe6\x1e\x97\xa8\x17\x09\x83\x9d\xe6\x63\x70\x29\x63\x92\xb2\x44\x26\x46\x47\x3a\xa3\xc3\x3e\x71\x22\xca\x99\xa8\x00\xc7\xaf\xe7\x12\x43\x26\x35\x85\xe2\xd9\x69\x36\xaa\x4b\x68\x2f\x55\x0b\xa7\x39\xe4\x54\x1c\x3a\x2a\x85\x04\x7d\x87\xbe\x88\x43\x58\xa4\x3a\x03\xa7\x0e\x69\x0f\x87\xa6\x47\xcd\xf1\xd8\x13\x98\x0f\xff\x3b\x83\x22\x9b\x1f\xcf\xe5\xa0\xf8\x8a\xbd\x2d\x48\xea\x1d\x7c\xf4\x39\x9a\x33\xc2\x41\x44\xee\x60\x20\xcf\x28\x01\x39\xb8\xad\x9d\x48\xad\x29\xd0\x72\xd0\x3c\x3b\xb8\x9d\x33\x4e\x7d\x07\x93\xb3\x83\xbe\x39\x6f\xcb\xd3\x77\x10\x35\x3b\xd8\x99\xf3\xb6\xb8\x99\x83\x71\xd7\x41\xb3\x5b\x50\x62\x76\x30\xd0\x3a\x68\x67\x4b\x30\xe4\xee\xa0\x2c\x75\xf0\x94\x16\xea\x75\x1d\x6c\x9f\x0e\x8a\xcf\x82\x20\x80\x83\x4e\xd3\xc1\xa3\x59\xe0\xb0\x75\xf0\x37\x3a\x88\x1b\x2b\x24\x92\x0e\xf6\x42\x07\x6d\x61\xcd\x66\xcc\x3b\x48\x05\x1d\x6c\x82\xb5\xf3\x01\x61\x2b\x73\x50\x94\xa5\x65\xb9\x25\x0e\x86\x1b\x07\xb5\x4d\x7e\xf9\x80\xb0\xb9\x38\x68\x5c\x32\x39\xe0\x0e\x12\x03\x07\x7b\x41\x81\x04\xd4\x51\x44\xef\xa8\x9e\xaf\xc1\x62\x09\x8e\xaa\x74\x47\x39\x7a\xcd\xe6\xed\x71\x94\xa3\x3b\xea\xd0\x2b\xf5\xe4\x8e\xca\x73\x47\x91\x79\x2d\x96\x89\xe9\x28\xc9\x76\xd4\x62\xd7\xc6\xc8\xa3\xa6\xda\x51\x4c\x5d\xbb\xa1\x32\x47\x31\xb5\xa3\x8a\xba\x76\x73\x24\x3a\xea\x7e\x1d\xc5\xbe\xcd\xb1\x2e\x51\x15\xe9\x28\x85\x6c\x83\x39\x8f\xc2\x3a\x47\xed\x5c\x2f\xd8\x23\x54\x93\x39\x4a\xc8\xb2\xcc\x2e\x6a\x82\x1c\x85\x40\xd9\xf3\x44\x14\x64\x38\xaa\x30\x32\xac\xb3\x8e\xaa\x08\x47\x29\x44\xee\x4c\x30\xe4\xf4\x3a\x12\x79\x4b\x64\x1e\x25\x25\xd7\x91\x87\x5b\xb2\x65\xa8\x3a\x72\x56\x1d\x89\xaa\xa5\xb2\x32\x90\xbe\xe8\xc8\x5b\x2c\xaf\xa5\x72\x38\x12\xa3\x1c\xd9\x50\x15\xc3\xdc\x91\x81\xe4\x48\x3d\xaa\xc5\x22\xd4\x8e\x44\x23\x47\x86\x51\xad\x96\xbd\xe4\x14\xbe\x27\x6e\xdf\x02\x4d\x22\xe6\xeb\x08\xf6\xb6\x86\x39\x43\xe0\xd3\x11\xed\x6c\xef\x60\xa7\xcd\x6b\x8e\xe8\x58\x2f\xd8\x62\x44\x23\x1c\x61\x88\x1c\x31\x63\xf1\x4e\x3a\xdc\x92\x99\x62\x58\x87\xfb\xcd\xe1\x77\xcb\x14\x6c\x3b\x3c\x27\x0e\x97\x49\x09\xe6\xf8\x74\x00\x51\x07\xfa\x2c\xd9\x30\x9b\x03\x8d\x38\x60\x48\x79\x2c\x25\xd5\x3d\x16\x7f\x71\x0f\x81\x17\xd8\x86\xdc\xc3\x38\x7a\xa0\xf6\xa1\x76\xdd\x3d\x16\x39\x70\x8f\x85\x0b\x6a\x36\x34\xed\x1e\x0b\x00\xb8\x27\xb2\x82\xb1\xfc\x3e\x24\x7f\x3c\x0d\x19\x8a\xca\x8d\x26\xd7\xa4\x76\xbd\x54\xae\xc9\x24\xf0\xd8\x24\xd0\x1b\x1d\xec\xd9\x34\xc9\x62\x79\x39\x60\xce\xbc\xbc\xa5\x97\xb7\xd4\x58\x2a\x5f\xe6\xfb\xd7\xe6\xfb\xdc\x58\xbd\x5f\x9b\xe4\xdc\x4b\x72\xde\x0b\xaa\x78\xcd\xbd\xef\x5e\x33\x32\x33\xc9\x1f\xee\x65\xf5\x7e\x71\xcd\x13\x34\x74\x2f\xa9\x46\x2f\x84\x9f\x90\xe7\xb8\x97\x2c\x9f\x17\xae\x4d\x12\xdb\xdc\x0b\xa2\x7a\x91\x75\x28\x18\x29\x2f\x53\xe5\x3b\x08\xc3\x06\x76\x9a\x95\xef\x5e\xd4\xee\x3c\x2b\xed\xcb\x02\xf8\x4e\x3c\xed\x2c\x2c\xaf\x99\xe9\xee\x25\x6e\x8b\x32\xb6\x7b\x99\x15\x5f\x42\xa4\x85\xf7\x39\xed\x4d\xb8\x49\x19\x2d\x75\x1f\x6e\x9a\xb3\xdd\x4d\x18\x75\xc0\xce\x6e\x1a\xe8\x72\x13\x36\x90\xc0\xe8\x98\x58\x6d\x93\xfc\x8f\x62\x01\x1e\x37\x99\x58\x26\x5c\x16\x05\x53\x6e\x9a\x3b\xc8\x4d\xfc\x40\x0d\x6b\x68\xb2\xf8\x4f\x16\x7f\xc7\x38\x9a\x18\xb5\x93\x48\x7d\x58\xda\xc9\x35\x09\x90\x67\x6c\xb1\xb9\x38\xd2\xf0\x78\x46\x37\xc0\x4d\x46\xf1\x24\xdd\xbc\x9a\x63\xde\x2d\x26\xd5\x65\x9f\xbf\x10\x68\x75\xcb\x3a\xa6\x5b\x01\xe2\x77\x2b\xf3\x74\x8b\xae\xb8\x22\x9f\x03\x7b\x64\xb1\x9c\x2d\xeb\x91\x35\x59\x5c\xd1\x2d\x70\xe7\x82\xa9\xb3\x98\x3f\xd2\x2d\xec\xfa\x65\xdf\xaf\xb6\xce\xe9\x98\x48\x0b\x3f\xd6\x30\x2f\xb7\x5b\x0c\xae\xc5\xfc\xb9\x41\x3f\x8b\x79\x69\x4d\x78\x95\x2a\x3b\x37\x3b\x89\x35\x57\xba\xf7\x66\x52\xdd\x9a\x54\x2b\x3b\x2d\xac\xe8\xb6\x75\xe8\x46\xc6\xa8\xdb\x98\x87\x9b\xd8\x43\x31\xca\x06\xb7\x49\xa8\xdb\x16\x54\xe8\xc5\x9c\x42\x6e\x93\xe7\xb6\xcd\xb7\xdf\x1b\x96\xe0\x26\x19\x6d\x9b\x37\xa0\x37\xcb\xd8\x75\x9b\x19\x6c\xa3\x95\x51\x1c\x3b\x59\xa0\x37\x0b\xf4\xb3\xf2\x5f\x0d\x8a\x6d\xfe\x1f\xb7\xcd\xf1\x53\xbc\x0d\x08\xef\x6c\x02\xf5\xce\x16\xdc\xda\x0d\xec\x79\x67\x86\x93\x77\x90\x00\xb3\x26\x7b\x67\x4f\xe6\x71\x70\xd4\xa9\x9d\x66\xf1\x7a\x5c\x1a\x75\xdb\xaa\xe8\x9d\x19\x14\xde\x99\x41\xd1\xa8\xe7\xf1\xce\xba\x8f\x77\x30\x4f\x64\x4b\xf4\xf0\x6e\x71\x4d\x28\xeb\x9b\x85\x4c\xbd\xb3\x57\xef\x1d\xf1\xfd\x61\x51\x66\x0f\xc2\xf5\x8e\x50\xfe\x63\xb8\xce\x7b\xfb\x2c\xde\xa3\x49\xef\xcd\xc5\xe0\x01\xba\x1e\xa0\x9b\x83\xf5\x29\xef\xed\x5b\x79\x6f\xdf\x2a\x17\x73\x59\x7a\x6f\x2b\x9f\xf7\x16\xc6\xcc\xaf\xa5\x69\x7b\xcf\x13\x79\x7b\xa2\x02\x05\x93\x07\x55\x7a\x0f\x4b\x2d\xfe\x58\x0f\x9c\xf4\xe0\xc8\x8a\x46\xa9\xf7\x2f\xa7\x43\x34\xf9\xd8\x70\xf4\xde\xa6\x6f\xef\xc5\xe3\x6f\x25\x46\xde\x6f\xee\x4e\xc2\x43\x36\x1b\xc7\x83\x00\x7d\x30\xbb\xa9\x75\x1b\x4f\x3e\x58\x34\xd8\x07\x9b\xcc\x1b\x11\x2a\x1f\x6c\x4e\xf7\x21\xb0\x58\x2d\x8e\xb4\x1e\xe6\x83\xc5\xaa\x7a\x35\x60\xe6\x83\x99\x33\x3e\x98\x39\xd3\x87\xe5\x04\xfb\xf0\xb0\xd3\xba\x4f\x49\xe6\x87\xf4\x81\x37\x1f\x90\x8b\xf3\x66\x50\xf8\x68\xf0\xd5\x47\x91\x0e\x9a\x99\xe0\x01\x5f\x3e\x3a\x48\x5c\x2d\xa0\xe0\x51\xea\xf7\x48\xf4\xd7\x61\x46\xbf\x47\xbf\xde\x23\x5c\x5f\x09\xfb\x79\xa4\xdf\x3d\x9a\xef\x95\x6c\x21\x8f\xfa\xba\x47\x72\xbd\xc1\x56\xe4\x81\x70\x1e\x08\xd7\x72\x61\xa7\x79\x0c\x3c\x22\xdc\xed\x31\xb7\x9a\x47\x8d\xd8\x23\x41\xdc\x8b\xe5\x2a\x79\x24\x7f\x3d\x00\xab\x57\x9b\x4b\x3c\x72\x9a\x1e\x1d\xcd\x92\xcd\x9f\xee\x51\x8d\xf4\xc8\x45\x16\x18\x3c\x7d\xb2\x70\xac\x4f\xc4\x61\x49\xf9\xf0\xc9\x3c\x5a\x3e\xc1\xaa\x44\xde\xae\x4f\xe6\x30\xf2\x49\x94\x42\x06\x9e\x3d\x4a\x8d\x1e\x89\xc6\xbe\x2c\x09\xd2\x23\x96\xe8\x51\x49\x2c\x69\x73\xa4\xb5\xc5\x23\x6b\x58\x86\xb9\xa6\x3d\x32\x82\x1e\xfd\xc0\xea\x2d\x20\xee\xd1\xe3\xf3\x88\xf0\xd5\xca\x87\x43\x64\xcf\xa3\xac\x57\x87\x45\x5c\x3c\x5a\x7a\x1e\x11\xbd\x3a\xcc\xe1\xef\x91\xb6\xf3\x68\xda\x55\xfc\x8c\x1e\x79\x32\x8f\x2e\x59\xf7\x83\x6b\x32\xde\x11\xbb\xea\xdd\x0a\x10\x3c\xa2\x4d\x1e\xb5\xa6\x8c\xb6\x9d\x07\x63\x78\x14\x73\xea\xab\x23\x07\xd7\xc4\xe0\xc5\xdf\xe4\x81\x1a\x1e\xa8\xd1\xf2\xe2\xee\xb6\xc4\x7a\x84\x51\xda\x93\x38\x7d\xb2\x13\x6a\x1c\x67\x86\xb9\x47\xbb\xc3\x23\xda\xd1\x23\xef\x13\xee\x7c\x5f\xc4\x3f\x68\xa1\x7d\x0f\xa9\xbc\x87\x4d\xbe\x91\xcd\xed\x21\x04\xf7\x30\x81\x67\x6f\x38\xd9\xc3\x85\xec\x21\x40\xee\xd5\x68\xcc\x3c\xec\xbb\x5e\xb4\xbb\xdb\x90\x8a\x87\xb2\xd5\xc3\xd5\xda\xa6\x67\x27\xd3\x5a\x11\xa1\x8e\xf9\xd6\x3d\x34\xaa\xbe\x48\xa4\xd2\x00\x84\x87\xb9\xd2\x43\x59\xd9\x87\xe1\x4f\x0f\x49\xa5\x87\x9d\xb2\x0f\x43\x54\x1e\x92\x47\x2f\x76\xc7\x42\xaf\x83\xa5\xd0\x43\x4f\xd8\xa7\xd9\x4d\x1e\x7a\x42\x0f\x2f\x61\x87\x57\xc3\xc3\x87\xe7\x45\x84\x87\xec\x92\x87\xfa\xce\xc3\x79\xd7\x89\x62\x7b\x08\xbe\x3c\xcc\x5e\xb9\x5a\xe2\xa6\x87\x2d\xc8\x43\x11\x94\x5f\x2b\xfc\xf0\xa0\x0a\x0f\xaa\x28\x54\x4a\x7b\xc8\x53\x3c\x8c\x29\x35\x58\xf4\xc2\xc3\x23\xe2\x21\x0f\xe9\xce\xd6\x64\x0f\xbd\x84\x87\x53\x22\xa3\x61\xe9\x61\x86\xf0\xd0\x41\x64\xfc\x8c\x9e\x4a\x63\x4f\x79\x71\x09\xda\x69\x91\x2f\x4f\x1d\x6a\x81\x67\xc0\x53\x62\xe8\xa9\x2b\xac\xd1\x72\x24\x3c\xd5\x81\x9e\x92\xc0\x9a\x3b\x4d\x32\xeb\xc4\xab\x0a\x8e\xdc\x60\x4f\xfd\x8f\xa7\xf0\x27\x07\x0b\x52\x78\x6a\x74\x3c\x85\x39\x99\x18\xa3\xa7\x58\xc2\x53\x21\x91\x6b\xe5\x74\x5b\xa8\x3d\x09\xe2\x79\xf3\xea\xc8\xc8\xf4\xa4\x62\x96\x6a\xc9\x01\x9e\x6c\x2a\x3f\x6c\x72\xac\x48\x60\x7b\x32\x42\x3c\xa9\x20\xad\x98\x5b\xcd\x13\x8e\xf6\xc4\xa1\x73\x62\x95\x21\x02\xec\x09\xfd\x66\xcd\xb4\x04\xbd\x3c\x91\xae\x8c\xa0\xb5\x27\xe6\xe4\x09\x2f\xe5\xc5\x7a\x34\x6c\xcd\xf1\x03\x7d\xd2\x60\x45\x17\x7e\xd8\x2a\xea\x87\x4d\x25\x25\x5a\x10\xd4\x83\x2a\x3c\xa8\xa2\x54\xb7\xff\x66\x50\xf8\x87\xaf\xfa\x90\xbe\x53\xcd\xac\xf1\x0f\x06\xc5\x83\x02\x03\xbc\x5d\xfe\x31\x5b\xc7\x3f\xc8\xd3\x11\xe7\xf2\x0f\x2b\xed\x83\xed\x10\x12\xa7\xdb\x87\xf7\x0f\x1c\xec\xd4\xcf\xfa\xa7\x73\xa3\x0e\xf3\xac\xa3\xbd\x9d\xd3\xcd\xd3\x5b\xeb\xe2\x48\x1b\xc6\xfe\x19\x62\x89\xb5\x77\xf0\x30\xeb\x3c\x0f\x3c\xa7\x8e\x26\xb1\x00\x3e\x8f\x48\xd5\x1b\x3b\x27\x3b\x59\xac\x8c\x5c\xdb\x3f\x2f\xa7\x53\x32\x4b\xd0\xc1\xbf\x66\xce\xfa\xd7\xcc\xd9\x44\x85\xa8\x7f\x2d\xfd\xc9\xbf\x28\x68\x40\xd2\xea\x81\x31\x5e\x30\x26\x64\x4e\xb7\x9c\x19\xff\xda\x42\x96\x93\x25\x38\xf8\xd7\x92\x5d\xfc\x9b\x21\x7a\x66\x59\x7b\x29\x64\x78\x01\x90\xc3\xaa\x98\xfc\x3b\xb8\x91\xf9\x1d\x0a\x19\xf4\xfe\xa5\x53\xbc\x70\x76\x67\x56\x6f\x60\x8c\x07\xc6\x14\x0c\x74\xff\xbe\x34\x09\xb6\xec\x46\xdf\x7f\x59\x00\x5f\x16\x40\xab\x82\xfb\x37\x3f\x0d\x55\xfa\x09\x45\xac\xa3\x4b\xce\xc4\x4e\xcb\x5c\xaa\xd1\x0a\xa3\xfc\xb4\x35\xd2\xcf\x44\xfa\x34\x2b\xc3\x34\x7f\xbf\x9f\xca\x4c\xb2\x38\x9d\x9f\x18\x29\xd3\x8c\x94\x4a\x92\xb7\x9f\x18\x29\xd3\x8c\x94\xda\x0d\xe8\xfa\x89\xd9\x35\x91\xc8\x1b\x8d\x9d\x58\x82\x73\x03\xdd\x13\xed\xb4\xe5\xd0\x4f\xc4\x68\x49\x82\xf0\x0b\xa3\x6f\x21\x0d\xe3\x2c\xbb\xd9\x2f\x8c\xa9\x65\x16\x48\xf7\xac\x36\x8b\xc6\x2f\x38\x5b\x1c\xcf\xbe\xf8\x1c\x8b\xcf\x91\x75\x4d\x03\x4a\x7e\x4d\x84\x2b\x0d\x44\xf9\x35\x29\x44\x31\x64\x5c\xa8\x63\xf1\x9b\xb9\x64\x23\xb2\xda\x18\xe2\x9b\xce\xb0\xad\x33\x94\x87\x25\x68\x5b\x1e\x9a\xdf\xc8\x9b\x20\x4c\xe3\xb7\x19\x37\x7e\x4b\xcd\x92\xb5\x6e\x37\x8e\x6c\xe8\x04\x1b\xaa\xf4\x9b\xe5\x77\xb3\xfc\xe2\x38\xf0\x7b\x70\xa3\x41\xae\xb6\x45\x4f\xfd\x36\xe7\xa5\xdf\x14\x9f\x77\xd6\xe4\x4d\x0f\xd9\x00\xdd\x4e\x4f\xde\x98\x1e\x1b\xd3\x83\xea\x43\xbf\xcd\x54\xf5\x5b\x4a\xc3\x9d\x26\x6d\x4e\x97\xa8\x30\x86\xcf\x66\x82\xd9\xa8\x66\x53\x13\x1f\x9c\xbd\xe4\xe0\xec\x25\x37\xd2\x87\x82\xb3\xae\x11\x5c\x82\xa4\xde\x50\x45\x70\x85\x9d\x05\x8a\x50\xf3\xa4\x04\x67\x2e\xf3\xe0\x60\x0a\x5d\x8b\x6b\x36\xae\x69\xd1\x8d\x4e\x59\x4b\x20\x8c\x19\x88\x5f\x76\xb7\xb8\x91\x85\x0e\x03\xa1\xc3\xee\x2d\xe1\x24\x78\xc3\x59\xc1\xdb\x2c\x5e\xb2\xe5\x60\x04\x4f\x78\xd0\x23\x57\xd0\x26\x3b\x6d\x9e\x08\xfe\x41\x0d\x84\x1b\xf9\x97\x20\x15\x9c\xf9\xcb\xd2\x2d\x82\x47\x90\xdb\xe3\xc7\x59\x16\x71\x0e\x98\xfe\xc1\x33\x0d\x13\xb4\x0d\xc1\xbc\x1e\x21\xc0\x8e\x5c\x39\x3d\x44\xe2\x7b\x90\x19\x57\x5b\x69\x43\xb0\xc5\x3f\x04\x5b\xfc\x2b\x5a\xc9\x21\xd8\x94\x10\x42\x95\xc6\xe8\x62\x67\x64\x67\x02\xe8\x72\xa3\xca\x35\x2d\xb8\x5c\xe1\x08\x0c\xa1\x12\x72\x84\xb1\xd5\x59\xe6\x48\x08\x36\xd4\x42\x80\xd9\xd4\xdb\xbc\x14\x82\x45\x87\x43\x80\xc4\x34\xf0\x44\xc1\xbc\xdc\x21\x2c\xe8\x61\x2d\xf7\x34\x04\xeb\x36\x21\x58\xb7\x69\x23\x73\xba\xc5\x02\x42\xb0\x58\x40\x1b\x36\x59\x85\x48\x8c\x2b\x42\xc4\xbd\x6c\xf6\x0e\xd1\x72\x12\x43\xb4\x50\x57\x2f\xe6\x4e\x0f\x44\x5a\x42\x2c\x54\x0f\xd8\xea\x1d\xa2\xd9\xa1\x21\x62\x87\x32\x10\x42\x7c\xd8\x89\x23\xfb\x99\x9c\x6e\xa6\x40\x40\xf7\xbf\x78\x5b\x65\x02\x82\xf1\x01\x9b\xbf\x24\x5b\xbd\x43\x42\xc8\x38\x99\x93\xb4\x74\x73\x53\x06\x10\x40\x00\x01\x94\xc7\x6c\xf0\x90\x08\x63\xa6\xa4\xce\x60\x8d\x4f\x99\xd3\x11\xaa\x85\x47\x21\x24\x33\xad\x42\xea\x4a\xeb\xb1\xb7\x94\x06\xa1\x3c\xdc\x16\x89\x37\x2f\xc5\x77\xa4\xde\x6b\xcd\xec\x9c\xc4\x0c\x27\x34\xe7\xe6\xf1\x09\xe8\xa3\x07\x20\x43\x1d\x16\xc5\x0e\x28\x4a\x07\x64\xa4\xeb\xb6\xa4\xe9\x80\x1c\x74\x40\x07\xba\x6e\xcb\x73\x0d\xd8\xee\x01\x89\xd5\xd6\xcc\x73\x1a\x50\xd0\x0c\x48\x67\x36\xb8\x87\x02\x62\x99\x81\x48\x42\x9b\x85\x1b\x99\x53\x3d\x20\x81\xd9\xa6\x19\x68\x01\xd1\xcb\x80\xda\x65\x83\x61\x2d\xa0\xda\x18\x90\x6a\x6c\x96\x0e\xf8\xcf\x06\x45\x40\xc5\x30\x20\x5d\xd8\x7d\xe1\xda\x86\x93\x03\x72\x73\x1d\xde\xe3\x80\xc4\x5b\x40\xd7\xad\x23\x22\x12\xd0\x6b\x0b\x45\x69\xf7\xe6\x27\x09\xc8\x7d\x05\x74\xbe\x72\xb0\x40\x46\x40\x8e\x27\xa0\xc3\x93\x97\x41\xcd\x80\x06\x4d\x40\x7c\xa6\x78\x8b\xd7\x05\xa4\x54\x02\x1a\x2a\x25\x55\x76\x9a\x41\x19\xd0\x37\x28\x8f\xd9\x64\x01\x6d\x83\x80\xa8\x41\x79\x6c\xf9\x0d\x88\x08\x84\x22\x54\x69\x6b\x5d\x80\xe4\x3c\xc0\x6e\x5e\xb3\xb9\x98\x02\x3c\xd9\x01\x82\xec\x8a\x10\x4a\x80\x4e\x3a\xc0\x23\x5d\xd1\x35\x0a\xd0\x0e\x07\xf8\x86\x2b\xf4\x20\x81\xb8\x44\x80\xce\xb7\xee\xc5\x35\x69\x12\x74\x9a\xad\x5a\x64\x27\x40\x68\x19\x60\xb1\x6c\x10\xc7\x06\x78\x12\x03\x04\x89\x0d\xe6\x9b\x00\xdd\x5f\x80\xe7\xaf\x11\xab\x0c\x10\x63\x05\xd8\xb0\x3a\xcc\xc4\x01\x2e\xa8\x00\x01\x54\x7f\x98\x8a\x20\x7f\x0a\x30\x3e\xf5\xa7\x70\x3a\xbd\x8f\x50\x42\x7f\x75\x77\x5b\xd6\x82\x42\x09\xde\xdc\x16\x01\xb6\xa4\x00\x4d\x52\xf6\x46\x4d\x14\xa0\x40\x0a\xe2\x3d\x0a\x8d\x9d\x8c\x66\xd8\x1c\x0a\x01\x82\x40\x51\x69\xa0\x7e\xb4\x46\x33\xbb\x02\xd5\x9d\x01\xab\xbd\x26\x8b\x27\x07\x2a\x16\x03\xc5\x89\xb5\xd8\xb2\x16\x08\x17\x04\xea\xfb\x6a\xe3\x6b\x52\xd0\x11\xa8\xe4\x68\x89\x49\x0b\xc3\x3e\x0c\x1b\x80\xad\x16\x8e\xb4\x6f\x1b\xc8\x87\x6f\xdd\x73\x24\x29\x11\x64\x7c\x37\x94\xa8\x02\xd9\xbe\x81\x14\xdf\xb6\xf8\x46\x24\xc5\x06\xb2\x61\x1b\x9c\x78\x01\x5c\x10\x48\x4a\xed\xde\xe2\x9f\x81\x54\xd3\x40\x8e\x69\xf7\xcc\x10\x64\x95\x06\x52\x49\x3b\x89\x70\x81\x04\xd1\x40\x66\x68\x0f\x7a\x22\x46\x1c\x69\x65\xbd\xeb\x46\x4c\x99\xe4\x84\xf5\x3e\x39\x92\x11\x37\x18\x71\x24\xab\x86\x87\xc5\xea\xc1\xe0\xa5\x54\x23\x3c\xa4\x6e\x3c\x08\x7c\x15\xb3\x08\x02\x81\x85\xf0\xd8\xd7\x2c\xf8\x86\xc2\xc3\xc2\xf2\x34\xe6\xd1\xc1\x91\x0f\x47\x3e\xc8\x53\x58\x01\x6f\x78\x58\x69\x1f\xd1\xe6\xb0\xda\x3c\x4c\x99\x0f\x53\x66\x60\xf5\x7e\x58\x7e\x1f\x3c\xbd\x28\xe2\x84\xc7\xdc\xd4\xe1\x41\xb0\xa4\x5a\x48\x2e\x3c\xac\x4b\x0f\x95\x4a\xcd\x12\xec\x02\x81\x8c\x40\x20\xa3\x36\x73\x03\x85\x97\xc9\xf5\x65\x72\x7d\x31\x67\x5e\x26\xd7\x97\xc9\x15\xa9\xfe\xf0\x22\x71\x0f\x3a\xa8\x9b\x75\xe9\xb5\x65\x3b\x80\x00\x5a\xb0\x7a\xbd\xf0\x1a\xfa\x09\x98\xf7\xad\x76\xae\xc9\x77\x7f\xf9\xee\x88\xda\x84\x97\x4f\xfc\xc2\x3d\x3e\xcc\x88\x0e\xaf\x79\x9f\xc2\x6b\xc3\xbe\xbd\x96\xd2\x12\x5e\xa6\xe1\x97\x69\x58\xa6\xc7\x6b\x40\x27\xbc\x90\x41\x7b\x4c\x8f\x97\xb9\xf9\x85\xa6\xc8\xeb\xee\x18\x29\xef\x82\x08\xdb\x22\x8f\x61\x9a\x6f\x3e\x4c\xcb\x42\xe9\x48\x88\x85\x69\x3e\xba\x30\x23\x84\xc7\xe6\xd4\x0b\xd3\xec\xd7\x30\x09\xcd\x14\xab\x4f\x0b\xd3\x5c\xc9\x61\x52\xd6\x0e\xe1\x73\x20\x90\x11\x08\x64\x54\x54\x7e\xc2\x34\x53\x35\x10\xba\xa8\x30\xe8\x87\x69\xce\xfc\x30\x71\xe6\x17\xd6\xe4\xc9\x27\x9e\x7c\xe2\xc6\x9a\x3c\xad\xb7\x86\x89\xe6\xce\xa0\xdb\xcc\xc5\xdd\x29\x7b\x7b\xcc\xcf\x18\x16\x4d\x5a\x14\x1a\x74\x4c\xb9\x65\xb9\x6b\x61\x59\xd2\x5a\x8f\x99\x23\xb9\x11\x51\x83\xde\xad\x2c\x3b\xac\xc9\xe9\x78\xa6\xba\xb9\xe8\xc3\xa2\xdb\x2c\x6a\xd9\xe0\x2d\x0b\x6b\x73\xa4\x01\x96\x3e\x0d\x7b\x87\x6d\xee\x80\xb0\x6d\xd6\xc8\x9e\x4f\x0c\x56\x08\x60\x85\xfc\x9a\x61\x1e\xb6\xb9\x50\xc2\x46\x03\x13\xea\xa2\x40\xb4\x21\x6c\x0b\x9f\x15\x72\xbf\xc3\xe6\x1b\x6d\xfb\x46\xa5\x30\x3a\xb6\xb9\x4c\xc3\x36\xd3\xb1\x20\x45\x1b\xb6\x7d\x9c\xb0\x09\x9b\x12\xf3\x0d\x1b\x1b\x67\x63\xe3\x90\x29\x1f\x36\x36\xf8\x46\x35\xbe\x9b\x8f\x20\xec\x46\xe3\x51\x4f\xdb\x18\x3e\xdb\xb0\x7a\xd8\x1d\x49\x08\x73\xf7\x07\xe0\x44\xd8\x38\xf5\x3a\xef\x73\xdb\x32\x18\xb6\x6a\xf5\x30\x78\x01\x09\x61\x53\x88\xe7\x8d\xa0\xdf\x32\xee\x2c\xf1\xce\x4c\xf8\x6c\x55\x51\xd1\xd9\x34\x13\x9d\xf9\x1b\x7a\xcb\xee\x6f\x06\x45\x04\x6b\x44\x67\xf6\x5a\x7f\x2c\xff\x36\x3a\x1b\x64\xd1\xd9\x20\xcb\xa8\xea\x46\x72\x2c\x23\xc9\x95\xb9\x58\xe6\x6b\x3c\x99\x93\xe4\x4e\x3d\xe6\xc7\x8b\xce\xbc\x50\xd1\x99\xf7\xbf\x92\x8b\x16\xdd\xc3\x8d\xf0\x26\x04\x23\xe3\x89\xee\x25\xed\x93\xca\x5c\xfc\x23\xd1\x4d\x6e\x44\xa2\xee\xb0\x29\x33\xba\xc5\x8d\xe8\xa7\xdb\xfa\x54\xf4\xb6\x26\x47\xcf\x9a\x5c\x0d\x98\x45\x65\xe5\x79\x8f\x46\x83\x79\x11\xa3\x47\xea\x93\x78\x46\x43\x64\x30\xfa\xc4\x4e\xf4\x45\xb6\x59\x99\xd1\x17\x76\xb2\x7a\x53\x31\x16\xbd\x59\x19\xd1\x9b\x95\xd1\xab\x75\xf3\xe8\xed\xc3\x47\xe2\x20\x9d\x62\xdf\xe8\x0d\x9e\x47\x5f\xa1\x92\xe7\x2d\x79\x72\x41\x3d\xea\x04\x08\x25\x46\x4f\xe6\xa4\xc7\x1f\x4e\xed\x6e\xf4\xbc\x3a\x0f\x7f\x3e\xd5\x88\x11\xf4\x14\xbd\x4d\xe6\x7d\x5b\x06\x47\xf4\xe6\x39\x8f\x5e\xa9\xd8\x99\x1b\x21\x82\xed\x5f\xaa\x7c\x5e\xed\xe4\x9a\xb6\x82\x65\x68\x5d\x23\xc9\x79\xd1\x83\xd2\xf7\xcb\x35\x27\xef\x93\x94\xa6\x62\x51\xcd\xe8\xcd\x8a\x8e\x5e\x8e\x77\x9d\xbe\xb9\xbb\xd9\x15\x15\x85\x85\x18\x2c\x09\x2d\x06\x64\x93\xba\xe5\x26\xc4\x60\x1f\x27\x06\xf3\x84\xd6\x61\x25\x39\x31\xd0\x79\x03\x76\x13\xc2\xb7\x91\x78\x4d\x54\xbc\x86\x70\x5f\x0c\x36\x65\xc6\x80\x22\x8c\x1e\x33\x20\x2d\x1a\x12\x03\xc2\xcc\x99\x18\x6c\xb9\x88\x41\x9f\xc3\x26\x98\x08\xd8\x8b\x80\xbd\x5e\xe9\x36\x80\xbd\x08\xd8\xeb\xad\x70\xba\x99\x5d\x11\xcc\xd7\x09\x32\xc7\x80\x04\x3c\x89\x7b\x7d\xf2\x35\x83\x8d\xd8\x18\x2c\x83\x35\x03\xc8\x63\xb0\x0c\x80\x18\x26\x6e\xa0\xc4\x0b\x99\x3c\xfb\xc4\xa9\x97\x78\xcc\xc9\xb3\x93\xdf\x8d\x10\x54\x0c\x08\x76\x81\x0e\xeb\xb2\x90\x5c\x8c\xe6\x68\x8c\xd1\x1c\xb0\xed\x31\x3f\x73\x24\x4c\x14\x23\x2e\x1b\x6f\x58\x31\x46\xf3\x25\xc6\x88\x8c\xeb\xe3\x39\x3d\x71\xa4\x41\xc6\xfe\x5a\x72\x5e\x8c\x66\x7a\x44\x20\x63\xa7\xa2\x21\x46\x3a\x2d\x99\x77\xf9\x31\x44\x1d\x89\x16\x45\xa2\x45\xe5\x71\x9c\xce\x78\x8f\x58\x82\xce\x16\xea\x18\x49\x8a\x8e\xa8\x49\x06\xcb\xed\x8b\x24\xe7\x45\x92\xf3\xea\xb0\xe4\xbc\x18\xcd\x71\x10\xa3\xad\xc2\xad\x30\xb1\x90\x6b\x17\xa3\x19\x29\x0d\xf9\xf3\x18\x5f\x4e\xa7\x4a\x00\x58\x18\xa3\xf5\xeb\x18\x5f\xb8\xfb\x79\x9f\x71\x72\x24\xab\xcd\xb0\x6c\xc5\x98\xcc\xe6\x88\xc9\x56\x8d\x12\x9c\x76\x2e\x76\x9a\x13\xea\x31\xd7\x67\x04\xa9\x46\x90\x6a\xaf\xe6\x91\x8c\xc9\xf0\x75\x4c\x96\x71\xd0\x1f\x9e\x28\xd1\x97\x12\x7d\x09\xdd\x12\x53\x7f\xb4\x9d\x18\x7d\x85\x23\x51\xf6\x24\x67\xae\x14\x5b\x82\x22\x08\x37\x26\x73\xaf\xb4\xa7\x73\xa3\xce\xe9\x06\x9e\x1a\x65\x47\x31\x0d\x8a\xe5\x24\xe1\xc1\xe8\x20\xbb\x2e\x26\x48\x14\x97\xb9\x68\x63\x62\xfe\x4c\xc8\x43\xc0\x5d\x1d\xd3\xcb\x8d\x5e\x6c\x46\xcf\xe9\x93\xc6\x83\x93\xeb\xd4\x4e\xae\x69\x5d\xb1\xf9\xc5\x35\xd1\xc4\x03\x43\xb7\x62\x4b\x50\x04\x4a\x47\xa2\x6f\xad\x5b\x22\x40\x24\x8d\x2f\x92\xc6\xd7\x1e\xe3\x3c\x8f\x59\xe2\xcf\x01\x45\x0e\x8b\x05\xc4\x1c\xd0\x39\xb3\x08\x54\x1f\x66\x72\xc6\x6c\xab\x54\xcc\x91\x4f\x6c\xb8\x33\x66\xb4\x87\x33\x9e\x53\x67\xeb\x7c\xcc\xe8\xfe\xe6\x41\x1a\x7b\xe0\x48\x1b\x94\x91\x4c\xbd\xe8\x18\xda\x19\x5e\x0b\xa2\x68\xd1\x75\xed\x1c\xec\x7c\xc9\x89\xb7\x4e\x9b\x99\x54\xc1\xc7\xd1\x59\xb8\x3c\x16\xd1\xc8\x99\xa3\x3f\x3a\x9a\x84\xe8\x77\x2c\x4a\xad\x1e\x1c\x69\xe0\x29\xa2\x6f\xeb\x12\x93\x55\x11\x45\x30\x99\x18\x64\x70\x44\xc4\x52\x23\x8a\x9d\x2e\x45\x76\x9a\xf3\x31\x22\xca\x19\xbc\x71\xa0\x46\xe2\x5f\x11\x91\xb6\x8d\xc0\x7b\x24\xaa\x15\x89\x6a\xd5\x61\x54\x0c\x11\xf9\x9f\x88\xee\x4f\xd5\x8a\x00\xc0\x8d\x00\xdc\x06\x55\x4a\x84\x0e\x3f\xc2\x81\xdf\x1a\xb3\x0d\x78\x35\x42\x46\xdf\x9a\x05\x1b\x22\x95\xcd\xf1\x94\x34\xa7\x43\xc4\x15\x1f\xf8\xf3\x1e\x74\xf3\xaa\x5b\x7f\x1a\x15\xa1\xff\xaf\x36\xc5\x2c\xf0\x50\x01\xd8\x36\x15\x3c\x24\x01\x24\x2f\x1a\xd3\xf4\x4e\xb1\xad\x7a\xfb\x8e\xc9\x8b\xa3\xe4\xe7\x0f\x6a\x42\x83\x7d\xf5\x44\x5a\xf7\x12\xa7\x50\x30\xd3\x34\x05\x12\x2f\x1c\x35\xb2\x09\xc2\x81\x94\x7f\xf5\x8f\x94\x70\x87\x91\x8e\x7a\x77\xda\x80\x49\xe9\xc5\x4e\x82\xca\x34\xa1\xa7\x92\xce\xe2\xc9\x91\x70\x71\x68\xdc\x78\x8a\xbd\x92\xcd\xf2\x29\x31\xaf\x7b\x6a\x97\x18\x45\x89\x51\x14\xc5\x02\x95\x3d\x15\xe7\x1e\x4e\x1b\x78\x25\x33\x29\xbc\xd9\x2a\x05\xc2\x82\x9f\x82\x41\x91\xc8\x62\x0d\x8b\xea\xa8\x4c\xd1\x79\x8e\x1c\x49\xb1\x67\x46\x8a\x8c\xd1\x90\x71\xaa\xa4\x5c\xa8\x9d\xb4\xfe\xd8\x08\xc4\xa6\x3c\xa9\xfe\x9f\x57\xc1\xe2\xca\xe2\x27\x08\x06\x3e\x29\x09\x2f\x95\xfd\xc2\x1f\x1f\xf3\xa5\xe4\x22\xa9\x07\x2d\x66\xf6\x15\xd1\xfe\x97\xcd\x65\x58\xfe\x93\x24\x95\xa0\x18\xab\x38\xaa\x3d\x24\x38\xd5\xfa\x42\xaa\xf4\x85\x2c\xcd\x8e\xce\x91\x36\xf9\xf5\x20\xd2\x7b\xca\x0f\xdb\xf8\x6a\x6b\xa9\xc3\xee\x36\x71\xa6\x6e\x27\x85\xa8\x1a\x7e\xf4\x10\xf1\x29\xf4\x3d\xe6\x9f\x9d\x72\xfd\xfb\x7c\xff\xdb\xf8\x8f\xff\xf2\x7f\xfe\x5f\xe3\x3f\xfe\xef\xf1\xdf\xd6\xbf\xde\xff\xf9\x9f\xff\xb9\xfe\xfd\x7f\xcc\xff\xfa\xfe\x8f\x7f\xfd\x1f\x3f\x7b\xff\x35\xd7\xfe\xaf\xff\xbe\xfe\x73\xfd\xbf\xff\xfd\x7f\xfe\xe7\xbb\xfe\xf5\x1f\xff\xfd\x3f\x7e\xce\xb2\xdf\xff\x17\x00\x00\xff\xff\xec\x4a\x35\xdf\x39\x08\x04\x00"); -func _ebad ()([]byte ,error ){return _dc (_bbcg ,"UniGB-UCS2-H")};func _bgd ()(*asset ,error ){_dea ,_efd :=_aefd ();if _efd !=nil {return nil ,_efd ;};_efgc :=bindataFileInfo {_ag :"ETHK-B5-H",_bc :20959,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491821,0)}; -_fdab :=&asset {_cd :_dea ,_dce :_efgc };return _fdab ,nil ;};func _cedf ()(*asset ,error ){_cdf ,_fagec :=_eeg ();if _fagec !=nil {return nil ,_fagec ;};_bff :=bindataFileInfo {_ag :"Adobe-Korea1-2",_bc :1845,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491385,0)}; -_agb :=&asset {_cd :_cdf ,_dce :_bff };return _agb ,nil ;};var _cdgc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x96\x5d\x6b\x1c\x37\x1b\x86\xcf\xf5\x2b\x74\x98\xf7\xe0\xad\xf5\x2d\x0d\x0c\x0b\x26\x76\xa8\x0b\x69\x4a\xd3\xb4\x85\xd2\x83\xd1\x97\x59\xa8\x67\x97\xf5\xfa\x20\xff\xbe\x3c\xf7\xed\xa4\x9f\x50\x14\x5f\x2b\xdd\xf3\xec\xb5\x7a\xa4\xb9\x79\xfb\x70\xf7\xb0\x1f\xaf\xfa\xe6\x87\xcb\xa9\x7d\x1c\x57\x3d\x8f\x7b\xbf\x8c\xe7\xd3\xcb\xa5\x0d\x5d\xc7\xe3\x71\x57\xca\x3a\xdd\x8f\xed\xfa\xe5\x4f\x0c\xed\x69\x3b\x2b\x25\xeb\x3f\x7e\x7e\xbe\x8e\xa7\x87\x7d\x9e\xb4\xe7\xbc\xfe\x72\x7e\x9d\xab\xf5\xcd\x8f\xe3\xf1\xf8\x7c\xbd\x7c\xd6\x6f\x6e\xfb\xa9\x8e\xff\xe9\x3e\xa6\xf0\x0f\x97\x3e\x2e\xc7\xfd\x51\xbf\xf9\x6e\x3b\x6f\xbb\xfd\xfa\xc1\xc7\x97\xf3\xf9\x8f\xf1\x34\xf6\xab\xb6\x60\x63\xef\x18\xd5\xcd\xdb\xf7\xdb\xf9\xfb\xed\x69\xe8\x9b\xfb\x4f\x6f\xff\xff\x2d\x28\xe0\xcf\xe3\xf2\x7c\x3c\xed\xda\x9a\x6f\x8c\x49\x7f\xf1\x9f\x3e\x9f\xc7\x6b\x8a\xba\xf9\xf4\x70\xf7\x61\xce\xe7\x71\xd5\xa9\x18\xce\xf9\xf5\xd3\xc3\x9d\xfe\xcd\x6a\x6b\xb4\x8b\xde\x2d\xbf\xbf\x4e\xfd\xe5\xfd\xa9\x0f\xcd\x49\xca\xf3\xcb\xb4\x53\x1f\xcf\xe7\xad\x8d\xcb\xb6\x3f\x0e\xa5\xf5\x6a\xcc\x41\xcb\x7f\x6b\x31\x07\xf9\xbb\xdc\xdf\x82\xac\xe5\xfe\xee\x1d\xc8\xad\xbd\xb5\x20\xef\xee\xdf\xdd\x1f\xe4\x9b\xfc\x2b\x45\x59\x86\xef\xa7\x6b\x1f\x93\x0c\xb9\xab\x9d\x07\xed\xbc\x95\x35\x7f\xff\x50\x59\x63\x5e\xeb\x39\xf6\xd7\xf9\x4e\xe6\xe7\xc1\x62\xb0\x68\x2d\x63\x13\x58\x46\x9f\x07\xad\xbd\x4b\x6a\xdd\xec\x66\x0f\x7a\xdd\xec\x94\x99\xc9\x7b\xb5\x6e\x8e\xc8\x6d\x82\xb2\xcb\x82\xea\x06\xd4\xa4\xf0\x1c\xac\xa0\x46\xd4\x0d\xd0\x22\xa8\x37\xa0\xb1\x09\x8a\x12\xef\xa6\x03\x9a\x8b\xa0\x8c\x85\xf2\xa8\xd7\x41\xe7\x2c\x0b\x7d\x95\xba\x36\x5f\x31\xab\x18\x41\x0d\x45\xf8\x8e\xac\x05\x68\x10\x4d\x41\xc5\x4a\x7c\x60\xa9\x61\x7a\x41\xc1\xa9\x75\x8b\x44\x71\xa6\x83\xd6\x8b\x8b\x6a\xdd\x12\x51\xaa\xe5\xa0\xad\xb1\x52\x44\x62\x7c\xea\x40\x5e\x66\x65\xce\xca\xf2\x89\x35\x51\xea\xca\x9d\x68\x02\x2d\x12\x5f\x38\x0b\x43\x0e\xa8\xbe\x6c\x8e\xc8\x09\x2a\x16\xc8\x13\x79\x41\x0b\x51\x20\x0a\x40\x11\x28\x12\xc5\x83\xce\xd1\x78\xa0\x44\x94\x30\x8b\xf1\x99\x28\x63\x56\x06\x2a\x44\x45\x90\xe3\xc2\x85\x68\x11\x64\x19\xbf\x11\x6d\x82\x3c\x8b\xa8\x44\x15\x88\xf1\x8d\xa8\xa1\x7a\x03\xd4\x89\x3a\x10\xbf\xf6\x20\x1a\xa8\x2b\x00\x4d\xa2\x09\x54\x04\xf1\x77\xc4\x90\xa3\x49\x40\xf4\x25\x43\x8e\x06\x59\x95\xbe\x64\xc8\xd1\x22\xab\xd2\x97\x0c\x39\x7a\x14\x51\xe9\x4b\x86\x1c\x1d\x17\xd2\x57\x85\x2f\xcf\x27\xd2\x97\x0c\x39\x46\x66\xd1\x57\x85\x2f\xfc\xda\xa5\xd2\x57\xa5\x2f\xd6\x45\x5f\x95\xbe\x60\x82\x9b\x1c\x43\x8e\x9e\x59\xf4\x55\xe1\x2b\xb0\x08\xfa\x92\x21\x47\xc3\x22\xe8\x4b\x86\x1c\xd1\x30\xa5\xd2\x97\x0c\x39\x5a\x3e\x91\xbe\x64\xc8\x11\x5b\xae\x34\xfa\x6a\xf0\x15\xa2\x5a\xab\xc1\xfe\xaa\x46\xba\xc3\x5a\xd9\xbe\x95\x2d\x5a\xd1\xa2\xd6\x49\xa9\x95\x2d\x5a\xd1\x43\xd6\x5b\xaf\xd6\xea\x89\x3c\x50\x90\x6d\x52\xd9\x1d\x35\x00\x45\x63\xd5\x5a\xd9\x1d\x35\x12\xc9\x2e\xac\xec\x8e\x9a\x80\x52\x91\x78\xb6\x42\xcd\x40\xb9\x48\x3c\xf7\x7d\x2d\x40\x25\x4b\xfc\x42\xb4\x00\x2d\xd2\xdb\x75\x23\xda\x04\x39\x93\x24\xbe\x12\x55\x20\x2b\x6d\x55\x1b\x51\x03\x72\x51\xe2\x3b\x51\x07\xf2\x41\xe2\x07\xd1\x00\x0a\x72\xe6\xd4\x49\x34\x81\xa0\xb0\xd1\x57\x83\x2f\x97\xdc\xa2\xd6\x46\x5f\x0d\xbe\x5c\x96\xee\x68\xf4\xd5\xe0\xcb\x15\x9b\xd5\xda\xe8\xab\xc1\x97\x5b\x64\x9b\x34\xfa\x6a\xf0\xe5\x8d\x91\x78\xfa\x6a\x91\x48\xfa\xb1\xd1\x57\x83\x2f\x6f\x17\x89\xa7\xaf\x06\x5f\xde\x15\x89\xa7\xaf\x06\x5f\xde\xcb\xa1\xd0\xe8\xab\xc1\x97\x0f\x59\xe2\xe9\xab\xc1\x97\x8f\x49\xe2\xe9\xab\xc1\x97\x4f\x49\xe2\xe9\xab\xc1\x97\xcf\x51\xe2\xe9\xab\xc1\x97\x2f\x51\xe2\xe9\xab\xc1\x97\x5f\x64\x33\x35\xfa\x6a\xb3\xfb\x83\x0e\x46\xda\xbd\xd3\x57\x87\xaf\x60\xe4\x5c\xed\xf4\xd5\xe1\x2b\xd8\x12\xd4\xda\xe9\xab\xc3\x57\x70\xb9\xa8\xb5\xd3\x57\x87\xaf\xe0\xb3\x53\x6b\xa7\xaf\x0e\x5f\x21\xa4\xa4\xd6\x4e\x5f\x1d\xbe\x42\x4c\x12\x4f\x5f\x1d\xbe\x42\x92\x16\xed\xf4\xd5\xe1\x2b\xe4\x20\xf1\xf4\xd5\xe1\x2b\xe0\x24\xef\xf4\xd5\xe1\x2b\x2c\x5e\xe2\xe9\xab\xc3\x57\x34\x72\x4e\x74\xfa\xea\xf0\x15\xad\x93\x78\xfa\xea\xf0\x15\x9d\x95\x78\xfa\xea\xf0\x15\xbd\x95\x78\xfa\xea\xf0\x15\x83\x1c\x56\x9d\xbe\x3a\xf6\x57\x8c\xc6\xa8\x75\xd0\xd7\x30\x44\x72\xf0\x0d\xfa\x1a\xf0\x15\x53\x29\xb8\xc1\xbf\xdc\xbb\xca\xfd\xe7\x26\x1e\xb4\x39\x60\x33\x66\x39\x4f\x07\x6d\x0e\xd8\x8c\x25\x27\xb5\x0e\xda\x1c\xb0\x19\x97\x2c\x0f\xa7\xcd\x01\x9b\xc9\x24\x79\x38\x6d\x0e\xd8\x4c\x36\x16\xb5\x0e\xda\x1c\xb0\x99\x5c\x94\x78\xda\x1c\xb0\x99\x7c\x90\x78\xda\x1c\xb0\x99\x42\x90\x78\xda\x1c\xb0\x99\x70\xe0\x0d\xda\x1c\xb0\x99\x92\x93\x78\xda\x1c\xb0\x99\xb2\x1c\xc4\x83\x36\x07\x6c\x26\xdc\xc4\x83\x36\x07\x6c\xa6\xc5\x4a\x3c\x6d\x0e\xd8\xcc\xc6\x04\xb5\x4e\xda\x9c\x86\x48\xee\x8c\x49\x9b\x13\x36\xb3\x95\x3b\x76\xd2\xd7\x84\xaf\xec\x4a\x52\xeb\xa4\xaf\x09\x5f\xd9\xcb\x2d\x35\xe9\x6b\x06\x5e\xa8\x39\x00\x45\xa2\x74\xd0\xc5\x95\xf0\x8f\x5f\x46\xfe\x2d\xef\xa7\x5f\xdf\x17\xdb\xcb\xe5\x32\xf6\x2b\xde\x4e\xf1\x62\x28\x6f\x76\xc7\x7d\x7c\x7d\xd3\x3d\x9f\xce\xb2\x0a\xff\xff\x19\x00\x00\xff\xff\x10\x32\xb8\x89\x15\x0b\x00\x00"); -func _dba ()(*asset ,error ){_feec ,_dddg :=_ccbe ();if _dddg !=nil {return nil ,_dddg ;};_beba :=bindataFileInfo {_ag :"B5pc-V",_bc :624,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491499,0)};_bdgd :=&asset {_cd :_feec ,_dce :_beba };return _bdgd ,nil ; -};var _fcfd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x93\xc1\x8e\x9b\x30\x10\x86\xef\x3c\xc5\x1c\xb7\x87\x6d\x3c\x80\x21\x48\x15\x52\x37\x51\xb7\x1c\xb6\xad\x9a\xcd\xb6\x52\xd5\x03\xc1\xe3\xd4\x52\x63\x90\x81\x43\xde\xbe\xb2\xc1\x83\x7a\x40\xe6\x9b\x7f\xc6\xfe\xc7\x0c\xbb\x43\x73\x6c\xac\x99\x60\xf7\xcd\xf5\xdd\x89\x26\xd0\xc6\x2a\x47\x63\x3f\xbb\x8e\xe0\x42\x57\x63\x93\x04\x53\x50\xa6\x9b\x22\x86\xa5\xbb\xb5\x43\x92\xec\xce\xd6\x3c\x3f\x3d\x9e\x5f\x3f\x65\xe9\xe3\x67\x98\x47\x5a\xe3\x87\xe6\x78\xba\x8f\x13\xdd\x1a\xab\x7b\xc8\x96\x7a\x35\x0f\xeb\x1e\x00\xbb\xef\x74\x35\xe3\xe4\xee\xf0\xf0\x51\xf5\x17\x7a\x07\x8a\xb4\x8f\x7f\x75\x8a\x9c\xb1\x57\x78\x78\x7e\x42\x8e\x9e\xe6\x61\xf8\x4b\x37\xb2\x13\xc8\x10\x23\xab\xc2\x9a\xec\x0e\x2f\xed\xf0\xa5\xbd\x11\xfc\x67\xe6\x2d\xa8\x41\x7c\x23\x37\x9a\xde\x02\xbe\x17\xa2\xdc\xc2\xaf\xf7\x81\x00\xd7\x4d\x7e\x9e\x9b\x23\xfc\x42\x40\x01\xa9\x2c\x44\xfe\x7b\x8d\xff\x78\xe9\x15\x67\x61\xb9\xd8\xef\x8c\xea\xfe\xb4\x2e\xf9\x20\x84\x10\xa9\xc0\xbc\x06\x59\xed\x23\xa6\x85\xc7\x6a\xc1\x4c\x08\xac\x41\x96\x92\x31\xf5\x98\x47\xc4\xac\x86\xb2\x14\xc5\xc2\x5a\x2f\xd9\x7b\xc6\xce\x63\xc6\x48\x21\xbb\x8c\x8c\x2a\x30\xa7\xa3\xf6\xe9\x55\xc4\xec\x12\xe4\x8d\x43\x3a\x0a\x66\x5d\x43\x21\x18\xe5\xc5\x1b\x67\x2b\x52\x79\xe4\xb3\xe4\x72\x76\x1e\x99\x82\x73\x44\xff\x25\xe2\x85\x24\x05\x5f\x90\x6b\xed\x95\xb8\xe9\x7d\x0d\xf1\xd5\x5b\xdc\x6f\xfd\x0b\x56\xd0\xb7\x5e\x6d\x4a\xbe\x29\xd2\xd7\xa4\xac\x14\x9b\x52\xfa\x9a\x94\xef\x27\x9e\xa3\xb5\xa8\x7c\x0d\xf7\x86\x2d\x2b\xe8\xdb\x2c\x8b\xd5\xf7\xe2\x33\x80\x9f\x5c\x1e\xa6\x6e\x76\x8e\xec\x14\xe6\x36\x8c\x8b\x1f\x01\x63\x89\xff\x8d\xa1\x1f\x7c\x55\x78\xfe\x05\x00\x00\xff\xff\x0f\x79\x9f\xed\x47\x03\x00\x00"); -func _facf ()(*asset ,error ){_cbgd ,_acgf :=_dgebc ();if _acgf !=nil {return nil ,_acgf ;};_bccc :=bindataFileInfo {_ag :"UniKS-UCS2-H",_bc :163757,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493024,0)};_efga :=&asset {_cd :_cbgd ,_dce :_bccc };return _efga ,nil ; -};func _dfaa ()(*asset ,error ){_ffdc ,_egfe :=_ccc ();if _egfe !=nil {return nil ,_egfe ;};_gegea :=bindataFileInfo {_ag :"HKdlb-B5-H",_bc :18683,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492327,0)};_fefb :=&asset {_cd :_ffdc ,_dce :_gegea };return _fefb ,nil ; -};var _fb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\xdb\xab\x65\x37\x72\xc6\xdf\xcf\x5f\xb1\x1f\x27\x0f\x89\x97\xa4\xba\x48\x70\x38\x10\x66\x06\xe2\xc0\x24\x21\xce\x0d\x42\x1e\xd6\xda\x6b\x6d\xd3\x10\x9f\x3e\xb4\xdb\x0f\xfe\xef\x43\xfd\xbe\x6d\x87\x19\x02\xce\x83\xf9\xdc\x5f\x4b\x5a\xa5\xaa\x52\x5d\xa4\xdd\xdf\xfc\xfe\xdb\x3f\x7c\xfb\xfe\xe9\xeb\xed\x9b\x7f\xfa\xf2\xf9\xfe\xdd\xf5\xf5\xf6\xf8\xf4\x7e\x7e\xb9\x7e\xfc\xfc\xd3\x97\xfb\x75\x3b\xae\xef\x3f\xbd\xbf\xbc\xb4\x7e\x3b\x3f\xdd\xbf\xfe\xf2\x47\xe0\xfe\xc3\xfe\xf1\xf2\x52\xf3\xbf\xfb\xf9\xc7\xaf\xd7\x0f\xdf\xbe\x3f\x3e\xdf\x86\xc6\x9d\x3f\x7d\x3c\xc7\xde\x6e\xdf\xfc\xf3\xf5\xfd\xa7\x1f\xbf\x7e\xf9\xf9\xf6\xbb\xbf\x3d\x3f\x1f\xd7\x5f\xdd\xce\xeb\x51\xfc\x3f\x7e\x39\xaf\x2f\x9f\xde\xbf\xbf\xfd\xee\xef\xf7\x8f\xfd\xbd\xfd\xfa\x17\xdf\xfd\xf4\xf1\xf1\xdf\xd7\x0f\xd7\xfb\xd7\xdb\x06\x77\xbd\x9f\xe0\xcb\x37\xbf\xff\xd3\xfe\xf1\x0f\xfb\x0f\xd7\xed\x9b\x9c\x7f\xfd\x77\x90\x70\xff\x76\x7d\xf9\xf1\xd3\xe7\xf7\x5b\xdb\xfe\x66\xdb\xe2\x7f\xf9\x7f\xf9\xf9\xe3\xba\xb5\xe7\xe4\xff\xf8\xd7\x6f\xff\x70\xfb\xcf\x76\x6b\xdb\xad\xfb\x30\xff\xaf\x27\xff\xef\x7f\xfa\x7c\x5e\xcf\x4f\xbd\x34\x09\x7e\xff\x7c\x5e\x3f\x7e\xec\xf7\xeb\xcb\xfe\xfe\xfd\xf5\x72\xbb\xbd\xf6\xd6\xdb\xdb\xed\x35\xff\x98\x7f\x7c\x2b\x89\xfe\x62\xc4\x4b\xdb\xb6\xe7\xd4\x4f\xa7\xa8\x5f\xa6\xf4\x96\xd7\xdb\x2d\xc6\x78\x79\xed\x5d\x4c\xef\xd7\xdb\x2d\x7b\xbe\xbc\xf6\x31\xb6\x62\xc6\x58\x6f\xb7\x9c\x5b\x31\xc6\x98\xe1\xfb\xdb\x2d\x17\x4c\x88\xc9\xfd\xed\x36\x5b\xbc\xbc\x76\xd3\x3a\x96\xe3\xed\x36\xad\xbf\xbc\x76\x17\xe3\x19\x6f\xb7\xd5\xfd\xe5\xb5\x87\x98\x18\xf3\xed\xd6\xb6\xd6\x8a\xd2\xd2\xe1\x50\xa3\x46\xa5\x46\x65\xfd\x4d\xdb\x7c\x15\xe5\xa2\x12\x6a\xf5\x97\xd7\xb1\x31\x4a\xd0\x5a\x2d\x3f\xb6\xde\x45\xf5\xb7\x5b\xb2\xbb\xb1\xf5\x21\x6a\x32\x2a\xa1\x96\xa8\xf5\x76\x9b\x3d\x02\x6a\x87\x1a\xac\x35\xac\xa8\xa1\xb5\x0a\x72\x45\x83\xd2\x5a\x05\x39\xc6\x06\x65\xa2\xf6\x9a\x68\x9a\x78\x88\x3a\x10\x42\xd4\x1d\x2a\xce\x1a\xe5\x48\x1f\x97\xa8\x8b\x51\x48\x1f\x0f\xa8\xec\x6f\xb7\xd6\x37\xa4\x4f\x7d\xb1\x20\x63\x20\x6a\xea\x8b\x79\x30\x6a\x42\x69\xf9\x82\x8c\xc1\x1e\xf3\x14\x75\xd5\xa8\x56\x94\x2c\x3f\x5a\x6d\xbb\xf5\xb6\xa0\x76\x51\x3b\x13\x27\x14\xd2\xb7\xda\x57\xeb\x9d\x51\xc3\x45\x39\xa3\x44\x85\xa8\xd2\x6a\xb7\x0d\x6a\x89\x2a\xa7\x89\x27\xa5\xe5\x6b\xf7\xad\xa3\x9c\x36\x4e\x51\x27\xa3\x3a\x14\x9a\x68\x58\xbb\x1b\x42\x58\x17\x85\x1d\x6d\x40\xa1\x89\x16\xa5\xe8\xee\x50\x21\x51\x03\x45\x6b\xf9\x40\x13\x4d\xdb\x5e\x45\xc9\xbd\x47\xef\xf9\x76\x6b\xa3\x0d\xa8\x29\x6a\x32\xd1\xa1\x96\xa8\x92\x7e\xc4\x82\xda\x45\xa1\x1c\x0b\x28\xbe\xd8\xfd\x51\x6b\x75\xd6\x8a\x0d\xaa\x20\xc3\x12\x4a\x5f\xcc\x52\xf4\x48\xa8\xd4\x5a\xa9\xb5\x26\x94\xd6\x2a\xa3\x35\xc3\xda\x5d\x46\x03\x32\x0c\x21\xf2\x12\x75\x31\xaa\x84\x18\xda\x10\xd0\x6c\x4b\xa8\x2e\x0a\x7d\xf9\x06\x85\xbe\x38\xb8\xcd\xb6\x5a\x6b\x48\xab\x40\xd8\x62\xa2\x3d\x47\x95\x1d\xcd\x1a\xd4\x12\xb5\xde\x6e\xbe\xb1\xc7\x61\x48\x3f\xc2\x18\x55\xd2\x8f\x70\x51\xf8\x84\x33\x31\x42\x54\x59\xc8\x12\x51\x65\xa1\x21\x0b\xe1\xf7\x43\x16\x1a\x38\xb9\x4d\x28\x39\xf9\x90\x93\x63\xda\x21\x27\x1f\xe9\x35\x6a\xb1\xa1\xd4\xf2\x05\xbe\x70\xf2\x91\x29\x6a\x31\x4a\x13\x25\xaa\x14\xed\x06\x25\x21\xa4\x42\xb6\xad\x50\x35\x0c\xe5\xf8\x56\xd2\x9b\x94\x63\x72\x39\x77\xa8\x21\x6a\xbc\xdd\x5c\x42\x98\x99\xa8\x32\x9a\x73\x1e\xcd\x4e\x51\x18\xcd\x45\x61\x34\x73\x96\xc7\x73\xcc\xb5\x7c\x41\xc4\x9c\x50\x5a\x1e\xad\x3a\x2a\x34\x69\xd5\x9e\x5a\x45\x54\x69\xd5\x90\xde\xb3\x84\x50\x58\x1d\x5e\x8e\xd9\x7c\x39\xd4\x21\x4a\x8a\x9e\x50\x28\xda\x47\xf9\x6a\xe0\x39\x6e\xf8\x2a\x90\x51\x71\x75\xb8\x69\x2d\x96\x0f\xc2\xa3\x62\xb4\xa0\xc5\x5c\x50\x5d\x14\xca\x89\x0d\x6a\x88\x2a\xdd\xc7\x6a\x50\xbb\x28\x74\x1f\xa2\x90\x2b\xcc\x19\xc5\x5a\x16\xa2\xe2\xed\x96\x96\x06\x95\xa2\x4a\x88\x94\x10\xf6\x10\xf5\x60\xad\x72\x93\x70\xa4\x8f\x72\xa0\x96\xe8\x3e\xe2\x14\x85\xee\x63\x40\xa1\xfb\x28\x67\x6a\x49\x70\x0f\x39\x13\x90\x11\x7c\x31\x5d\x54\xa9\x30\x93\x89\x72\x13\x20\x23\x1c\xea\x2e\x8a\x2f\x4e\xb6\xad\x23\x1a\x3a\xa2\xcf\xe5\x9f\x5f\x44\xfa\xd9\xc9\xc4\xbf\x24\xdc\xff\x2b\x07\x0f\xe5\xb7\x91\x1d\x19\xe7\x80\x32\x51\x92\x31\xa1\x90\x31\x2b\xd4\xb6\x9c\x50\x23\x45\x25\xa3\x26\x14\xb1\x2c\xcb\x31\xdb\xc4\xcc\x69\x9a\x68\x78\x11\xb1\x2c\xa5\xf4\x2c\x27\x6d\xb3\x6f\x50\x97\x28\x12\x50\x8a\x42\xe9\xe4\xda\x36\x89\xfd\x29\xbf\x05\x32\xb2\x41\x0d\x51\x7c\x91\x24\x9b\xae\x2f\x3a\x5f\xcc\x0e\xa5\x2f\x56\xc5\xd0\x26\xd6\x4a\x3f\x44\x95\x86\xdb\xd4\x5a\x68\x38\xa3\x34\x41\xd1\x30\x32\xa4\x89\x40\x13\x98\x26\x75\x2c\x32\xb7\x1a\xc5\x49\xa1\x10\x78\x42\x06\x5e\x94\x29\x51\xb3\x62\xd9\x0c\x51\x4b\x14\x39\x29\x1d\x6a\x17\x85\x26\x24\xaa\x0c\x08\x64\x10\xb8\xa6\x2c\x34\x07\x72\x11\xc2\xa7\x32\x3d\x90\xf1\xa4\x90\x6b\x1a\x72\x11\x59\xa6\xce\x13\x90\x91\x13\x0a\xb9\x26\xfe\xb1\x5a\x29\x7a\x69\xf9\xc5\x09\x5e\x68\x75\xe9\xa4\x2c\x9d\xe0\x5c\x50\x28\x67\xe1\x00\x8b\x50\xb9\xe4\x00\x4b\x0e\x80\x47\x2e\x39\xc0\x22\x96\x2d\x52\xde\xd2\x17\x97\x62\x19\x8a\x5e\x8a\x65\xab\x74\xdf\xb7\xad\x34\xb1\xa4\x7b\xc0\x27\x61\x77\x39\xde\xbd\xea\x88\xf5\x6d\x30\x31\x9e\x14\x0e\x2f\x21\x74\xc4\x56\x1d\xb1\xbe\x91\x0e\x96\x8e\xd8\xd2\x11\xc3\xa3\x97\x8e\xd8\x2a\x73\xf4\x8d\x80\xba\x64\x8e\x25\x73\x4c\x44\x95\x39\x56\x29\xa7\x6f\x44\x96\x5d\xca\xd9\xcb\xe5\xfa\xc6\x41\xdc\xe5\x72\x40\xc6\x14\xc5\x17\xf7\x0a\x8f\xbd\x55\x01\x3a\xf6\x48\x51\x52\x8e\x28\x94\xb3\x23\x6a\xc3\x0b\x77\x89\xba\x3f\x45\x4d\x28\x17\x55\x42\x34\xf2\xee\x21\x21\x8e\xce\xf2\x2e\x2a\x45\x69\xf9\x09\x35\x45\xad\x1a\x45\x34\x38\x14\x04\x0f\x05\xc1\xa9\x89\x87\xa8\x83\x51\xa2\xee\xa2\xa8\xd8\x48\x2d\x47\x47\xd1\x47\x99\xb3\x37\x7c\xe2\x50\x49\x75\xa8\xa4\x5a\xa2\xb4\xbc\x44\x45\x85\x77\x89\x7a\xaf\x20\xda\x55\x19\xdd\x6d\x8a\xa2\xc0\x59\xa2\x96\xa8\x55\xc9\x9f\x4c\x7f\x57\x5a\xbf\xd7\x49\xed\x2a\x96\xee\x9e\xa2\xd8\xe3\x93\xd2\x5a\xe5\x26\x7d\x50\x6f\xde\xe5\x26\x77\xe7\xc0\x90\x80\xee\x4e\xe8\xb8\x23\xd7\x68\x45\x9d\x92\xeb\x2c\x4d\xf4\x41\x65\x74\x4a\x13\xa7\x9c\x7c\x89\x42\x13\x67\x1d\xa5\x3e\xc8\x5c\xa7\x8a\x4b\x20\x63\x89\x42\xae\xb3\x0a\x89\xae\xf2\xec\x54\x21\x71\xca\x31\x97\x28\x1c\xf3\xac\xa0\xd0\xad\x97\xf4\xa7\x82\xc2\x49\x6d\x91\x64\xfa\x53\x0e\x70\x22\xaa\x51\xc5\x5f\x12\xf5\xaa\xe8\xdb\xa5\x9c\x4b\xd1\x17\xc8\xa4\x3c\xbb\x3a\x72\x5d\xd5\x11\x74\x23\xad\x5f\xea\x08\x80\xcc\xcd\xa0\x4c\x14\xcb\xe3\xd1\xd7\x78\x88\x7a\x30\xaa\x94\x73\x29\x15\x5f\xce\x17\x09\x43\x97\x82\x28\x90\x49\x24\xbf\x14\x44\x2f\x67\x2d\xcc\x71\x49\xd1\x40\x26\xd5\xdf\xa5\x12\xf4\xaa\x20\xda\x5d\x42\x28\x88\x02\x99\x18\xed\x52\x10\xbd\xd8\xb6\x53\x10\x3e\xb4\xed\x07\xee\xeb\xf4\x20\x0f\xb9\x2f\x90\xf9\x1c\x85\xd1\x1e\xe5\x07\xdd\xa9\x96\x1f\xbe\x44\x95\x63\x26\x21\xed\xe1\x9a\x58\x72\x75\xa7\x41\x7b\x48\x2e\x20\xb3\x9a\xbd\xf1\x50\x69\xfc\x08\xd6\xc2\x68\x8f\xd0\x5a\xa1\xb5\x34\x51\x6b\x21\x6a\x94\xf4\xa6\x66\x4f\xd0\xa3\x52\x93\xa9\xd9\x13\x64\x56\x61\x6f\x6a\xf6\x6c\x33\x46\x8d\xf6\x9b\xa9\xd8\x36\xd3\x22\xa6\x45\x0c\x4a\x8b\x94\xbe\x3a\x45\x85\x6d\x14\x61\x82\xcc\xf2\x6e\xdb\x08\x36\xb6\x55\x4e\xea\xb8\x9f\x6d\x29\x19\x53\x6b\x05\x94\xd6\x22\x08\xa2\x02\xdb\x08\x82\xb6\x51\xa1\x66\x63\x73\x94\x1e\x46\xb3\xd6\xb3\x3a\x33\x53\xb3\x66\x8d\xf8\x93\x55\x85\x5b\x23\xfe\x08\x32\x2b\x87\x5b\x23\xfe\x08\x82\x62\xc7\x68\xef\x5e\x8d\xce\xac\x67\x85\x70\x53\x67\x26\xc8\xec\xa2\x76\x28\xab\xf3\x94\x15\xc2\xad\x55\x4d\xfb\x84\xcc\xde\xa1\x4e\x51\xc8\x55\x45\x89\x35\x4a\x04\x41\x3e\xe5\xa2\x2e\xb3\x86\x93\x66\x22\x97\x6b\x94\x9c\xb4\x0e\xa2\xb5\xd0\x28\x2c\x9f\x13\x51\x43\x72\xc9\xf2\xd5\xc0\x1b\xed\xdd\xab\x35\x69\x62\xd5\x28\xf5\x6f\xd6\xab\x89\xec\xb3\x3a\x59\xeb\x34\x91\x82\xcc\xce\x28\x9a\x48\xeb\xc6\x28\x83\x92\xf4\x40\x52\x55\x5a\x37\x8d\x22\x0b\xce\xaa\x2a\xad\x93\x05\x05\x99\x7d\x42\x69\x62\xd4\x39\x27\xf9\x5b\x8f\x21\x8a\x73\x8e\xfb\x75\x8e\x98\xf5\x8a\x39\x7d\x56\x24\xb6\x4e\x03\x2f\xc8\xac\xc8\x62\x3d\xd9\x76\xaf\x98\xd3\xa7\x36\x44\xb6\xb1\x9e\x38\x13\x16\xea\x34\x32\x46\x2f\xd8\x57\x05\x1b\x53\x2f\x28\xc8\x1c\xa2\x24\x3d\xca\xa1\x90\x30\xf5\x82\x36\x70\x93\x85\x7f\x0d\xb9\xc9\x90\x9b\x0c\x83\x9a\xa2\x26\xa3\x26\xd4\x12\x85\x17\xd6\xd1\xb7\xc1\x39\xb7\xd1\x11\xa2\x6b\xad\x53\xd4\xc5\xa8\x84\x62\x8f\x63\x68\x14\x13\x65\x8e\x21\x73\x8c\x05\x85\xa8\xa3\x34\xd1\x97\x21\xaa\x34\x01\x64\x3e\x29\x49\x8f\x72\xd6\xe2\x8b\x52\x0e\x90\x69\xa2\x42\xd4\xc1\xa8\x80\xba\x8b\xc2\x68\x55\x36\xda\x90\xbe\xe8\xf2\xc6\x86\x0a\xd5\xe5\x99\x95\xa8\x83\x9a\xc7\x4c\xa2\x9a\x44\x35\x46\x49\x54\xab\xf4\x39\x36\xf4\x65\xa4\x4f\x41\xa6\x89\x5a\xa2\x56\x8d\x32\xd6\x22\x7d\x0a\x32\x9f\xd4\x21\x8a\x2f\x56\xca\x33\xb5\x87\x82\x4c\x1c\x53\xed\xa1\x60\x6c\xd5\xad\x9b\xe9\x58\x99\x8e\x95\x26\xea\x58\xd1\x25\x8e\xad\x7a\x67\x33\x6a\x1e\xc1\xec\xa1\x51\x2e\x6a\x67\x94\x28\x09\x51\x60\x8e\xe7\x98\x9c\xdc\xa4\x9c\x2a\x8d\x4d\x4d\xa4\x60\x6c\xc4\x2f\x57\x40\x75\x05\x54\x82\x82\x2b\xa0\x7a\xf9\xd7\x68\x95\x3e\xcd\xe5\x5f\x2e\xff\x32\x4d\x9c\xa2\x4e\x46\x05\xd4\x25\x0a\xcf\x61\x8f\x2e\xcf\xf1\xca\xf4\xa3\x11\xaf\x9d\x4c\x2f\xc8\x74\x96\x1f\x5a\xbe\xac\x32\x5a\x17\xf5\x9c\x88\x72\xd0\x84\x3a\x59\x73\x8c\xd6\x38\x69\x2e\xa3\xb9\x8c\xe6\x2c\x2f\xa3\x79\x59\x68\x34\x1c\xd3\x65\x21\x20\xd3\xd1\x84\x02\x9f\x97\xbe\x47\xc3\x99\xdc\xa5\x1c\xba\x9e\xac\xda\xd5\xdc\xa5\x09\x47\x13\xda\xb6\x4b\xd4\x02\x9f\xcf\x51\x12\xa2\xe2\xc4\x68\x5a\x5e\x71\xc2\x95\x8a\xb1\x90\x93\x8a\xcd\x03\x7d\x85\x28\xe9\xab\xc0\xfb\xc6\x86\x14\x4d\xbc\xd2\xc9\x68\x84\x21\x57\x3a\x01\xdc\xb4\xed\xd4\xf2\x89\x26\x26\xd2\xa7\x84\x48\x69\x02\x3b\x2a\xe9\xd0\xe6\x8f\x56\x45\xaf\xa9\xcd\xb7\x18\x08\x51\x35\xa2\x85\x8e\x02\x90\x59\x45\xaf\x85\x74\xcf\x25\xed\xe8\xc4\xfb\x50\xca\x0c\xa5\xcc\x2a\x70\x2c\x94\x32\x03\x5f\xed\x84\xda\x90\xaf\x86\xaa\x99\xf8\x7f\xa4\xe2\xa0\xd8\xb1\xc0\x95\x3b\x27\x25\xe4\xca\xa1\xe0\x4c\x2a\x0e\x05\xe7\xa8\x74\x32\xa8\x76\x2d\x42\x3b\x29\xc8\xac\x86\xc1\x22\x24\x63\x29\x7a\x74\x54\x10\xca\xe1\x41\x77\xa0\x5c\x19\x74\x07\x16\x95\x80\x46\xe7\x58\x84\x12\x10\x90\x19\x9a\x28\x21\x92\xb5\xb0\x56\x28\x24\x01\x31\xa5\x3b\x85\x70\x6e\x01\x46\xaf\xfe\xcd\xd4\xe6\x5b\xd6\xe9\x18\x1d\xa5\xa7\xc2\x2e\x90\x19\x1a\xc5\x17\xe9\xe3\x47\x27\xbc\xa5\x12\x76\x2a\x61\x93\x51\x53\x09\x9b\xae\x7a\x8c\xaa\x92\x2c\xe5\x7e\x40\x66\x35\x0c\x96\x72\xbf\x0c\x46\xe1\xca\xa9\x3a\x25\xb5\xed\x14\xf5\x1c\x55\x55\x83\x13\xd5\x53\xa9\x38\x95\x8a\xab\xe9\xb6\x94\x26\xb2\xca\xec\x31\x30\x73\xd2\x0b\x0a\x32\xab\xe9\xb6\x94\xdf\xd2\x3b\x8f\x81\x0a\xd5\x3b\xdb\xac\xd0\x31\x46\x75\x9f\x36\xb9\xdd\x10\x64\x56\x1f\x6e\x93\xfa\xda\x26\x31\x63\x4c\x51\x97\x28\xdc\xaf\xfa\x70\x9b\x8a\x19\xc0\x18\x8b\x51\x3c\x4e\x08\x32\x39\x16\x73\xe8\x8b\xb8\xdf\x58\x50\x72\x3f\x20\xb3\xfa\x70\x9b\x0a\x95\xb3\xdc\x64\x18\x71\x71\xca\x4d\x80\x4c\x8c\x36\x95\xe9\x67\x1d\xab\x61\x44\xe2\xa9\x9c\x34\x95\x93\xaa\xe9\xb6\x29\x07\xa0\xa7\x1f\x86\x33\xa9\xa7\x17\x0c\x63\x8f\x4b\x01\x75\x75\xaa\x06\x34\xb1\xa4\x89\xd5\x99\x88\x5c\x4b\x7b\x04\x92\xdb\x20\x5b\xda\x23\xe0\x0d\xb9\x96\xf6\x08\x0c\x23\x57\xae\xa1\xe5\x79\xa1\x48\x2a\x90\x45\x3f\x62\x6b\x20\xfd\xd2\x5a\x2e\x4a\xd2\x23\x97\xc2\xee\xaa\xb3\x3d\x0c\x97\x5b\x0a\xa8\x40\xaa\x3c\xe3\x46\xa1\xa0\x2c\xe4\xd5\x69\xd8\x52\xe6\x02\x92\x2b\x29\x5b\xca\x5c\x8b\xe8\xe9\xc4\xeb\xa5\xe8\x09\x64\x4e\xf6\xe8\x12\x15\x7d\x39\x05\xa1\xda\x7c\xdb\x2b\x8c\x0c\xe7\x28\xec\x0a\x23\x40\xe6\x14\x65\xa2\xca\x0b\x63\x63\xa2\x32\xea\xae\x8c\x5a\xbd\xb3\xed\x92\x6b\xaf\x7e\x64\x04\x55\xfc\x4e\x3f\x22\xc8\x44\x5f\xbb\xa2\xc9\x5e\x71\x71\x70\xd7\x69\xbb\xe2\x22\x90\x59\x5d\x8b\xed\xa9\x89\x88\xca\x55\xaa\xe9\x32\x40\x30\xd4\x11\x1c\x32\xed\xa1\x5c\xb9\x44\x0d\x51\x2c\x4f\x18\x3a\x74\xdc\x0f\x1d\xf7\xea\xdf\x4c\xf7\x03\x76\x90\x93\xb8\x2a\xb3\x43\x39\xe9\x50\x4e\xc2\xc9\x0f\xe5\xa4\x83\xc8\x44\x2f\x68\x87\xce\x23\x90\xf2\xaf\x43\x91\xe9\xa8\x44\x31\x54\x9e\x1d\xaa\xb2\x0e\x55\x59\x98\xf6\x50\x95\x75\x90\x21\x54\xf3\x1c\xca\x10\x40\x2e\x3c\xfa\x90\x26\x00\x6b\xcf\x51\xfa\x22\x9a\x50\xde\xd5\x5d\x83\xdd\x31\x87\x92\xd9\x5d\xe6\xb8\x3f\xcd\x21\x0a\x73\x70\x73\x30\xe6\xc6\x44\x3a\x46\x41\x66\xf5\xf4\x76\x97\x85\xb8\x45\x18\x13\xa3\xe9\x16\x41\x90\x49\x51\x72\x57\xdf\x70\xe7\xd4\x72\x73\x69\x77\x9d\x5a\x20\xe7\x26\x0a\xdd\xdf\x31\xed\x24\x4d\xdd\xb5\x21\x20\xcc\x45\xe9\x8b\xb4\x5e\x93\x6a\xe6\xae\xd6\x0b\x18\x93\xe3\x7e\x57\x71\x09\xe4\x53\x7a\x15\x97\xc0\x98\x24\xff\xbb\x8a\x71\x20\x27\xf5\xa6\x2e\x3c\xec\xe4\x88\x72\x4d\x69\xa7\x8e\x28\x90\x13\xf7\x3d\x75\x44\xcf\x3a\x37\x63\xe2\xf7\xa7\x4a\x3d\x20\x27\x85\xea\xa9\x33\x74\x12\xd2\xe6\xd2\x28\x13\x65\x8c\x0a\x28\x17\x55\x6e\xa2\xbe\xe1\x94\x56\x81\xe4\x15\xc6\x4e\xf9\xfd\x59\xf1\x7e\xac\x6d\xfd\x76\x2a\x3e\x95\x0e\x80\x9c\x1c\xfd\x53\xee\xc7\xad\xc9\x58\x9c\x60\xdd\x9a\xd8\x85\x2b\x2f\x0a\xe0\x4b\xae\x0c\xe4\xa4\x73\xbf\xe4\xca\x57\x22\x23\xd1\xe0\x92\x1d\xae\xd4\xa8\x05\xf5\x1c\x75\xbd\xdd\x6c\x1b\x25\xb6\x6e\x27\x04\x39\xe9\x6d\x1e\x3a\x75\x8f\x8a\x8b\xb6\xd1\x43\x3c\x14\x17\x81\x9c\x24\xc6\xc7\x78\x8e\xf2\x1a\xe5\xac\xa5\x88\x07\xc4\xc6\x86\x1e\x2a\x34\x1f\x95\x77\x6d\x0b\x96\x57\xde\x7d\xe8\xdd\x9b\x0a\xf5\xa1\xbc\xfb\x28\x3b\x18\x95\xb3\xeb\x2a\xc2\x37\x67\xf9\x8a\x3f\xbe\x51\xba\x08\x06\x75\xac\x6f\x64\x67\xa7\xa7\x37\x1e\x86\x5d\x3d\xbd\xf3\x1c\x6a\xdc\xdd\xb9\x9e\x43\x05\xc9\x19\x70\x3d\x87\x7a\xb3\x78\xbb\x59\x2f\x21\xbc\xf1\x3e\x22\xc8\xd9\x1c\x6a\x8a\xda\x6b\x54\xd7\xa8\x43\x14\x5a\x6d\x01\x75\x17\x75\x67\x54\x42\xe9\x8b\xa6\x2f\x8a\xd2\x17\x11\x95\x27\x5f\x57\xd3\xed\x5d\x54\xa5\x29\x57\xab\xe9\xf4\x7f\x36\x2a\x70\xb9\x7e\x27\x20\xc8\xd9\x18\x35\x34\xaa\x54\x68\x63\x8a\xda\x45\x71\xea\xda\x82\x42\xd4\x51\xb5\x9c\x8d\xc5\x28\xbf\x44\x71\x9e\x2a\x8f\xf8\x20\x1a\x38\x0f\x8a\x66\xd5\x99\xb9\x1e\x14\x05\x39\x3b\x42\x70\x0f\xe8\x34\x7e\x46\xc2\x76\x35\x7e\xce\xc3\x9d\x91\x9d\x5d\x0f\x77\x82\x24\x40\xb8\xf1\x4c\xe2\x56\xa1\xc3\xbc\xce\xb9\xf3\x16\xf7\x84\xb1\x05\xa3\x42\xa3\x58\xde\x11\x42\xad\x93\x3b\x76\xf4\xaa\x8c\xdc\x65\x47\x97\x1d\x3b\xa3\x64\x47\xaf\x28\x65\x5e\xc9\xcc\x69\x0b\x9e\x90\xb3\x7a\x67\x57\x77\xe0\x14\xe6\x46\x4e\x72\x15\xe6\x02\xe3\x09\xd3\xf5\xfe\x26\xc8\xd9\x03\x8a\xb5\x42\x13\xcb\xc9\x5d\xf5\xa6\x53\x8b\x19\xfd\x9b\xab\x16\x73\x6a\x31\xe3\x7d\xc5\x55\x8b\x09\x72\x76\x8d\x62\x8f\x54\x33\xc6\xe5\x89\xab\x9a\xf1\x55\x26\xa8\x7a\xa1\x28\x22\xb1\x20\x79\x1d\xf2\x15\x1a\x55\xe6\xf0\xad\x22\xb1\x2f\x99\x03\xc8\x39\x44\xa1\x9c\x55\x09\xc8\xb7\x3a\xa2\xce\xab\xc0\x13\x9a\x8c\xa6\xc7\x01\xa7\x44\xf0\x0d\x15\xaa\x44\xf0\xbd\x8e\xa8\x6f\xac\xb5\x73\x44\x05\x39\x47\x83\xc2\xbf\x28\x11\x9c\x87\x06\x57\x89\x20\xc8\x39\x3a\x14\xe6\xd8\xb5\x7c\xa5\x4f\x57\x5a\xf7\xa3\x7c\xc2\x1b\x5f\x3c\xe4\x13\x40\xf2\xb6\xe5\x07\x4f\x67\x7e\xf0\x1e\xde\x2a\x4e\x38\xc9\xfb\x09\x39\x87\x26\xe2\x98\x07\xbd\x20\x2f\x01\x7e\x50\x8c\x0b\x06\xcf\xc7\x7e\x90\x05\x9d\x1c\xee\x6d\x42\xc9\xa3\x0f\x79\xf4\x40\x2e\xa9\x10\xf0\x56\xb1\xdf\x0f\xa9\xf0\x50\xc7\x98\x2c\x4f\xe5\xed\x07\xbd\x60\xdf\x90\x8b\x5e\x50\x90\xbc\xb9\xf9\x91\xda\x50\xaa\xaf\x2c\x6b\x2b\x87\xfb\x5d\x14\xa7\x56\x99\xcb\x09\xee\x4e\x77\xe1\x0a\xee\x7e\xa1\x7b\x7e\x78\xe0\x97\x74\x0f\x0c\xde\xef\xfc\x92\xee\xaf\x4a\x66\x6e\x98\xe3\x22\x99\x09\x72\x56\x51\xe2\x97\x6b\xad\x92\xcb\x0d\x8f\xbe\x24\x17\xd0\xb8\x7a\xf6\x8b\x9a\xda\x49\x01\x4e\x85\xeb\x4a\x01\xce\x45\xb0\x7b\xf9\x57\x28\xfa\xc6\x56\x2e\xeb\x5e\x25\x55\x6c\xdc\xcb\x0b\x72\x56\x9b\x1f\x1b\x97\x14\xb1\x55\x34\xf1\xd0\x44\xa2\x89\x20\xa7\x41\xe1\xd1\xb1\x95\x10\xce\x73\x7b\x6c\xa9\xb5\x52\xaf\xd3\xa2\xb4\x16\x42\xf0\xe6\x16\x8a\xe4\xc1\xef\x66\x9c\xa7\xa0\xd0\xef\x66\x04\x39\xad\x41\xdd\x45\x95\x72\xb8\x22\x8e\x46\xc4\x8c\xa6\x6c\x65\xbf\xfd\x56\x1c\x8d\x64\x16\x04\x67\xe7\xed\x20\x14\x9c\x83\x1f\xa6\x78\x56\xcb\x1f\xfa\x61\x8a\x20\x67\x65\x9b\xe8\xfa\x7a\xaf\xc6\xcf\xa9\x50\xa3\xd3\xf8\x09\x3a\xe7\x29\x3a\x99\x5e\xe0\xd3\x99\x48\xa6\x17\x8c\xe6\x9a\xa8\xe5\xb9\x9d\x98\x15\x6c\x42\x77\x9d\x82\x9c\x86\x5c\xd4\x9e\x41\xd2\xf0\x59\x27\x25\x94\x34\x42\x3f\x26\x99\xe5\xb7\xa1\x1f\x93\x08\x92\x60\x13\x83\xc3\x13\xa3\x92\xac\x73\x3f\x19\x83\x62\x47\x90\xd4\x65\x31\x28\x76\x82\xa4\xe1\xab\x6b\xd4\x25\x4a\x3f\xed\xe8\x50\xc8\x45\x3a\xf0\x35\x6a\x94\xd2\x41\x18\xae\xbc\xaa\x9d\x0e\xc3\x95\x05\x39\x8d\x51\xb8\x72\x90\x15\x7c\x55\x15\x1e\xc6\xd1\x17\x18\x8f\x93\xc1\x35\xe1\x6b\x90\x34\x62\xdb\x98\x48\x08\x17\x24\xc5\x61\x28\x69\x84\xd5\x71\x8d\x4d\x42\x70\x5c\x05\x39\x9d\xb5\xa4\x42\x52\x4b\xf0\x8e\x1a\x4a\x2d\xe1\x25\x6a\x50\x6e\x84\x4b\x54\x97\xa8\x55\x5b\x84\x4b\x54\x20\xb6\x4a\x2d\xe1\x64\x54\x41\xce\xaa\xd5\x83\xfc\xf4\x1a\x5e\x1b\x8a\x6d\x31\x51\x1b\x02\x92\x27\xdf\x70\x6d\x88\x04\x14\xad\xb2\x60\x28\x01\x05\x3f\xda\x88\x56\x1d\x50\xe8\x47\x1b\x82\x94\x9b\xe8\x47\x1b\x11\x9a\x58\x9d\x46\x28\x01\x05\xaf\xf9\xd1\x11\x42\xaf\xf9\x82\xe4\x8e\x2c\xf4\x9a\x1f\xba\x7e\x18\x55\xd1\x87\xae\x1f\x04\x29\xff\xd2\xf5\x43\xf0\xc0\x1f\xa3\x33\x91\xb7\x3c\x41\x4e\x8e\x6b\x72\x21\x16\xf9\xfc\x35\x63\xc9\xa5\x94\x17\x3c\xdd\xc7\xc0\xbf\xf4\x74\x2f\xc8\xc9\x86\xf4\x74\x1f\x13\x15\x8e\xd0\xa8\x43\x94\x54\xb8\xa0\x50\xe1\x4c\xd6\xca\xd2\x17\x17\x03\x4f\xc8\x89\x4f\xe8\x7e\x20\x48\x9f\xc1\xad\x5c\x28\x7d\x0a\xc2\x4c\x54\x17\xd5\x79\x6d\x1d\x50\x43\xd4\xc9\xa8\x0e\x75\x89\xa2\x29\xe2\x58\xe9\x7e\x20\x96\xab\x91\xa9\x3d\x2e\x8a\x7c\x41\x7b\x2e\x4f\x91\x1f\x4b\x42\x54\x49\x15\x4a\x9f\xb1\xd7\x57\x82\xd2\x25\x76\x92\xbf\x60\xf0\xda\x1a\x3b\xc9\x3f\xf6\x8a\x9e\xe5\x78\x50\x29\x8a\x7a\x33\x3a\x14\xa1\x63\x2f\x85\x84\x13\xde\x76\x6a\x1e\x41\xce\x2a\x96\x62\xa7\xe6\x89\xbd\x9c\x3c\x5c\x94\x9c\x7c\x57\x9c\xc0\xa3\x77\xc5\x09\x52\x71\x44\x55\xb8\xa1\x54\x1c\x47\xc5\xc5\x08\xce\xf6\xa1\xc0\x77\xa8\x75\xaa\x76\x3a\x0e\x5a\xa7\x38\xbc\x84\xe0\x17\x79\x71\x70\x1d\x28\x68\xce\xb1\x3a\x14\x14\x8e\x72\xb3\xe0\x05\x3e\x0e\xee\xfe\x04\x39\xb1\xf6\xc1\xbd\x58\x90\x1f\x83\x47\xe6\x38\x14\xfb\x81\x9c\x91\x50\xcf\x51\x25\x2a\xcf\x83\xa1\xf4\x19\xb4\xc0\xc1\x3b\x59\xa8\x05\x16\x74\xde\x7d\x42\x2d\x70\xdc\x43\x2f\x73\xb5\xd6\x5d\x4e\x7e\x97\x93\xc7\x84\xc2\x8e\x77\xfc\x8b\xce\x3f\xee\xf2\xaf\xfb\xd3\xbf\x16\x94\x8b\x2a\x21\x68\xfc\x42\x09\x3b\xce\xfa\x62\x50\xeb\xc7\xa9\x2f\x02\x39\x89\x72\xf4\x98\xaf\xc1\xab\x79\xc8\x8e\x7a\x35\x17\xe4\xcc\x06\x75\x8a\x62\xad\xa5\x51\x5a\x4b\xc1\x2a\x45\x69\x2d\x09\x41\xde\x55\x89\x10\x17\xaf\x8f\xbc\x47\xc5\xc5\x85\x87\x20\x27\x07\xe6\xe2\xc2\x23\x2e\x3c\x67\x55\xf9\x1f\x97\x3c\xe7\x92\xe7\x24\x6b\xc9\x73\x78\xf0\x8e\x45\x0e\xbf\xe8\xa0\x04\x39\xab\x62\x8b\x8b\x92\x2a\x28\x11\x62\xe1\x13\x2a\x11\x82\x12\x21\xb7\xea\xb0\x53\x25\x42\x6e\xd4\xfa\x5b\x99\x36\x37\xea\x3a\x41\xce\x14\x15\x50\xd4\x29\x6d\xf8\x9f\xa7\xe2\x3e\xfe\x32\x13\xe7\xe6\x5a\x96\x6b\xad\x99\x0b\xaa\x8b\x2a\x8f\x69\x95\xa5\x52\x7d\x9f\x20\x67\x55\x0b\xb9\x21\x75\xea\x47\xbc\x24\xd4\xd4\x8f\x78\x05\x8d\x6a\x21\xa9\x42\x9e\x90\x73\x8a\x92\x88\xec\xad\xcd\x9a\xf8\xfc\xc5\x77\x13\x55\xc6\x4a\x95\x03\x49\xbe\xcf\x3e\x03\xea\x14\x85\x82\xa7\x46\x5d\x50\x44\xb7\x5e\xc5\x48\xf2\xa4\xfa\x84\x9c\x2c\xaf\x97\xd5\xe4\x19\x35\x47\xf9\x7b\xea\x19\x55\xd0\xb8\x18\x4a\x3d\xa3\x0a\x92\xa7\xcf\xec\xb8\x5a\xf6\xd4\x4f\xa3\xf9\xa2\xf6\x08\xb4\x51\x1d\x5d\xea\xe9\x33\xa9\x10\x72\x94\x8f\xa6\x2a\x84\x1c\x98\x61\xa0\xaf\xe1\x4f\x0a\x45\x4f\x87\x42\xd1\x7a\xf0\xb3\xea\x3d\x52\x0f\x7e\x82\x9c\x6c\x9b\xa4\xff\x84\xb4\x1c\x7f\x66\xd2\xfa\xff\x1f\xf6\x8f\x97\x5f\x7f\xaf\x7f\xff\xe9\xcb\x97\xeb\xfd\x2b\xff\x3a\x80\x5f\xe6\xdf\xce\xeb\xf1\xe9\xfd\xfa\xf5\x5f\x1a\x7c\x7c\xfe\xa8\x59\xfc\xf7\x3f\x01\x00\x00\xff\xff\x94\xbf\x01\x60\x95\x30\x00\x00"); -var _aaad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x06\xe3\x41\x7c\x96\x2f\x38\x6f\x26\x37\xb3\x06\xf5\xef\x8d\xd6\xd2\xb3\x56\xdc\x02\xc3\x79\x27\xe7\x55\x3c\x11\xd2\xd6\xd6\xd6\xd6\xfe\xd6\x1f\xff\xd3\x9f\xff\xf3\x9f\x7f\xfd\xe5\x1f\x5f\x7f\xfc\x5f\x7f\xfb\xeb\xf9\x4f\xf7\x3f\xbe\x9e\x5f\x7e\xbd\x7e\xbb\xff\xfe\xd7\x7f\xfd\xed\xbc\xbf\x8e\xfb\x5f\x7e\xf9\xf5\x0f\x7f\x08\xf1\xeb\xfa\xe5\xfc\xc7\xa7\x89\x3f\xe7\x5f\xf6\xbf\xfd\xe1\x0f\xf3\xfb\x7f\xfa\xb7\xbf\xff\xe3\xfe\xcb\x9f\x7f\x7d\xfe\xfa\x95\xf8\xde\xf5\xaf\x7f\x5b\xef\x7e\x7d\xfd\xf1\x7f\xbb\xff\xe5\x97\xbf\xff\xe3\xb7\x7f\xfb\xfa\x0f\xff\xe3\xf5\xd7\xe3\xfe\xef\xbe\xae\xfb\x99\xcf\xff\x97\xdf\xae\xfb\xb7\x5f\x7e\xfd\x97\xaf\xff\xf0\x5f\xf6\xbf\xed\xbf\x06\xfd\xf0\x4f\xff\xfa\xb7\xbf\xfd\xbf\xf7\x5f\xee\x5f\xff\xf1\xd5\xf0\xec\xfe\xf5\xc2\xdf\x3f\xfc\xf1\x3f\xfd\xd7\xfd\x6f\xff\xf3\xfe\x97\xfb\xeb\x8f\xff\xfc\xeb\x2f\xff\xe5\xcf\xff\xf4\x1f\xff\xf9\xbf\xfd\x29\xc5\xff\xf8\x3f\xe1\x67\xfc\xfa\xbf\xdf\xbf\xfd\xfd\x97\xbf\xfe\xfa\x15\xfe\xfb\x2d\x56\x3f\xfe\x6f\xff\xf6\xb7\xfb\x2b\xac\x5e\xfe\xcf\x7f\xfe\xf3\x7f\xfe\xfa\xbf\xc2\x57\xd8\xbe\x62\x29\x69\xfc\xdf\xeb\xf9\xff\xf1\x5f\xff\x7a\xdd\x5f\x1b\x5b\x81\x33\x38\xff\x7a\xdd\x7f\xff\xdb\x7e\xde\xbf\xed\xbf\xfe\xcb\xfd\x87\xaf\xaf\xff\x61\x5b\xff\xbe\xe7\x7f\xc3\xf6\xa7\x3f\xfd\xe9\x4f\xdf\x13\xc4\x7f\xf7\xe6\xa7\x83\x5f\xff\xfa\x8f\xeb\x7e\xf8\xec\xf7\xdf\xce\x7f\xe1\xf9\xfe\x0a\xf3\xeb\xf7\x6b\x7f\x08\xdb\xb6\x46\xff\xe5\x3a\xff\x9f\xfd\xb7\xcf\x87\xe5\xfc\xfe\x1a\xed\xd3\x6a\xb3\x35\xd4\xba\xbe\xbf\x46\x56\xeb\xfe\xfe\x0a\xdb\xf6\x69\xee\xdb\x1c\xe6\xd3\xc8\xf3\x37\x75\xb3\x97\xef\xaf\xea\x1f\xeb\xf7\xd7\x48\x6a\xb5\xef\xaf\x16\xdd\x4d\xff\xfe\xaa\xd9\x5f\x8e\xef\xaf\x50\xa2\x9a\xfb\xf7\x57\xc8\x7e\xf9\x98\xc3\x08\xbe\xfd\x9c\x2f\xbb\xe7\x6b\x36\x3d\xec\x84\xb7\x08\xfc\x7d\xa2\x25\xea\xdb\x63\xfb\xfe\x6a\x86\xf8\x08\xdf\x5f\xd5\x73\x3d\xf2\x84\xaa\xa8\x59\x66\x57\xfe\xb6\x7e\x7f\xb5\xd6\xd5\x6c\xdf\x5f\x21\xb8\xab\xfe\xfd\x15\x92\xbb\x9a\x33\xaa\x9a\xc2\x81\x19\xf9\xd7\x39\xa3\xa8\x29\x1c\x00\xb2\x7e\x9a\x67\x9d\x5d\x69\xdc\xab\x4d\x20\x05\xd5\x35\x07\xca\xc2\xd5\x35\xbf\x2d\x1a\xe8\x9e\xdf\x7a\x0a\x0f\xbe\x55\xcf\x0f\xbe\xfd\x4c\x21\x4c\xf2\x19\xa9\x56\xb5\x03\xda\x41\xed\x38\xfb\x6e\xc5\x2f\x24\x3c\xa8\x43\x0f\x32\x1e\xa4\xa6\x07\xc0\x59\x13\x04\x61\xab\xec\xc3\x83\x36\x3c\x68\x1e\xa5\xe3\x41\x4f\x7a\x30\xf8\xc0\xa3\xec\xdf\x5f\x71\x4b\xc9\x6f\x1c\x78\x20\x8a\x09\xdb\xc9\x51\xfc\xc9\xc5\x51\xfc\xc6\x4d\xd0\x3d\xec\xc3\x37\x3e\x8b\x12\xc2\x86\x4e\xa3\x3e\x09\x81\x6f\x68\x2e\x21\x02\x3f\x1a\x24\x24\xb4\xdd\x43\x25\x9c\x7e\xd0\x08\xa7\x00\x0f\x9c\xab\x08\x23\x04\xce\xb5\xf9\x8d\x7d\xf6\x39\x3c\xe6\x31\x77\xa3\x48\x36\x04\xce\xb4\x7b\x0c\xce\x74\xb8\xcb\x9b\x50\xb8\x8b\x87\x50\xe8\x41\xe4\x4c\xbd\x6a\x31\xf0\x0d\x2d\x74\x8c\x7c\xc3\x0f\xb8\xd0\xdd\x7d\x70\xa1\x87\xf0\x19\x39\x79\x51\x75\x88\x58\xe8\x1e\xdc\x47\xc7\x54\x04\x68\x1c\xb3\x1d\x84\xef\x88\xa9\x57\x43\x75\xa0\xed\xdf\xd7\xc4\x84\xff\xb8\x26\xa6\x2f\xd2\x9a\x98\x88\x2d\xcd\x25\xcc\x82\x20\x71\x5a\x51\xc8\x4b\x89\x0f\xfc\xc1\x9a\xa7\x3f\x59\xf3\x14\x14\x89\xf3\x14\x7b\x0a\x69\x2d\xb2\xfb\xe8\xec\x54\x70\x26\x2e\xf2\x0b\xce\x9d\xab\xee\x3e\x48\xd0\xd9\xa3\x9c\x78\x60\x42\x49\x5c\x66\x4f\x3e\x91\xa0\xb3\x3b\x25\x36\xa2\x96\x28\x2f\x6c\xa8\x8f\x0c\x6c\x68\xc5\xf2\xdc\xde\xfe\x3e\xaf\xcd\x2d\x18\x32\x71\xd1\x84\x8b\x5c\x08\x65\xc2\x29\xb5\x4e\x94\xff\xbf\x33\x26\x64\x22\xca\x3b\x2e\x73\xe7\x57\x51\x48\xe6\x6e\x68\x06\x61\x10\x62\x7f\xc2\x9d\x1f\x0d\x02\xb6\x83\xe9\x32\xcf\xa3\x2b\x19\x91\xf9\x02\xcd\x08\x07\x65\xe3\x98\x5a\xf1\xb2\x36\xb5\x56\xab\x00\x0b\x82\xa9\x4c\x2c\x64\x61\xb9\x10\x07\xde\x3b\x85\xf4\x50\xfd\xfd\xa2\x07\x8f\x40\x7a\x30\x1e\xcb\xda\xf4\xee\x63\x6d\x7a\x8f\x42\x7a\x30\x4d\x95\x83\x0f\x3c\xca\xda\xf6\x42\x55\x59\xdb\xde\x80\x2f\x7a\x10\xee\x0a\x19\x9c\xce\x86\x50\x27\x3d\x78\x7f\xd6\xb9\xe9\xa3\x3a\xac\x64\xf6\xde\x7e\x95\xf4\xd0\xd5\x61\x25\x2e\x4c\xa4\x95\xb8\x28\x7e\x63\xf1\x00\xf7\x41\x5c\x24\x7f\x42\x1e\x20\x54\x54\xf2\x00\x7f\x40\x1e\xa0\x79\x57\xf2\x00\x03\xbd\xf0\xe0\x17\x16\x1e\x84\xfe\x7a\x63\x04\xb7\x1f\x8c\x20\x8a\x69\x8b\x22\xfc\x80\x14\xd1\x85\xa7\x46\x2e\xe1\x33\xac\x91\x4b\x18\x8a\x96\xb9\xe5\xfd\x09\x77\x86\xc9\xac\x11\x13\x46\x4d\x5b\x54\xe1\x4e\x27\x97\x30\x27\x6a\xa4\x09\x13\x62\x23\x4d\xf8\x8c\x6b\x8b\x26\xfc\xc9\x3a\xf4\xfc\xe0\x9a\x5d\x7a\x84\xc9\x2f\xcd\x85\xc6\x5c\x60\x63\x7e\x60\x79\xbb\xb7\xd6\x19\xf9\x40\x20\x9f\xd8\x4b\xc6\xec\x49\xcc\xfa\x83\x07\xbf\x6b\x29\xae\x0d\x98\x16\x52\xae\x80\xf7\xd5\xdf\x15\xf1\xbb\x66\x78\x25\xfc\xee\x76\xc6\xef\x82\xf0\x5a\xec\x46\x33\xb8\x28\x4b\x58\x0e\xb8\x88\x54\x33\xf8\x8b\x5b\xcd\x27\xf0\x45\x8e\xe2\x8d\x74\x11\xad\x3e\x1d\xaf\xc5\x7a\x45\x82\x17\xd1\x6a\x1e\xf3\x10\x0e\xe3\xf9\x81\x84\x2c\x44\xc5\x79\x02\x8c\xac\x2e\x23\x99\x4e\x17\xd5\xc7\x02\x4c\x84\xae\x36\x51\xad\x21\x62\x59\x8b\xe1\x2f\x80\x0b\x6d\xd6\x48\xb6\xd3\xb5\xbb\x63\x01\x2e\xfa\xe6\x2f\x78\xdc\xbe\x3e\xe9\x7c\x30\xf4\x00\x7b\x2d\x7a\xd0\x1d\x6d\xff\x4e\xde\xea\x1e\x4f\x42\xb9\xe9\xc1\xcd\x07\x06\xe2\x21\x10\xea\xa2\x72\xe6\xa2\xc1\x58\x03\x85\x00\x41\x45\x26\xd2\x8d\x2c\x32\x91\xae\x33\x3b\x56\xce\x2c\xb8\x53\xce\x4c\x84\x1f\xeb\x9a\x59\xd3\x03\x2c\x6a\xef\xe5\x27\x07\x53\x5c\x3c\x64\x78\xc4\x8b\xd3\xf0\x03\xf2\xd2\x61\x10\x38\x51\x51\x5e\x24\x17\xe9\x41\x30\x2d\x2e\x22\xc1\x2d\x36\xae\xb1\xb6\x43\x6c\x5c\xe3\xcd\x7d\x10\x15\x92\x35\xe2\xe4\x22\x23\x4b\x2c\x8b\x8d\x98\xe8\x7e\xc0\x89\x8b\xfb\x45\x72\x8d\xbe\x79\x10\x62\x22\x7b\x90\x83\x6f\xb8\x8f\x35\x59\x43\xbe\x26\xab\x37\x3a\xe7\x26\xf9\x3b\xf6\xb5\x88\x9a\x5b\xe7\xdc\x36\x3f\xc0\x56\xd6\xc9\x10\x3b\xa7\x26\xf6\x16\x3b\x21\x17\x33\x88\x9d\x90\x4b\xf2\x8a\x9d\x90\x27\x7f\x42\x7e\x27\xed\x25\xf6\x13\xe8\xf1\x17\x9c\x89\xf1\xd5\x49\x9f\xc1\x60\x70\xd9\x24\x1b\xc7\xc1\xa9\x89\x87\xc5\xc1\xa9\x19\xf2\x01\x26\xe5\x7d\x36\x38\x13\xef\xdd\x41\x7a\xd5\x91\x15\xc7\xa2\x46\x0f\xc2\xa9\x0d\xf7\xc1\x8d\x34\x3c\x08\x21\x0f\x7e\x63\x01\xaa\x65\xdb\x17\x5c\xea\x74\x5f\x2c\x43\x8b\x72\x70\x2a\x62\xcf\xf1\xe0\x1b\xa6\xc0\x83\xfb\xc6\x08\x9c\x6a\xa7\xa9\xfe\x98\xe8\xd4\x6f\x27\x07\x34\x15\x40\x0b\xf5\xf2\x9c\x14\xde\xc4\x8c\xe3\xc9\x69\x67\xf7\x30\xde\xaa\x76\x3c\xe7\x7a\x7a\x8b\x9e\xc7\xf7\x97\x0e\xbf\x78\x12\x23\x62\xba\x91\x67\x87\xc9\xf6\x5a\xf3\xd7\xf8\x1f\xce\xee\x07\x4b\x4b\x14\x52\xc1\xd9\xbd\x43\xaf\x75\x5c\x0a\xbe\xc9\xd7\x8d\x9c\x8b\x72\x43\xf1\xfb\x24\x1e\xc9\x3f\x69\x6a\xc7\x82\x38\x4d\xd5\x77\xb8\x95\xdf\x73\x4d\x53\xeb\x8d\x62\xac\x69\xfb\x1d\x24\x69\x6a\xab\x21\xf9\xdb\x39\xf7\xe4\x61\xae\xdf\xe3\x31\x51\x31\xed\x12\x2e\x52\xe0\xce\x90\xb8\x98\xa8\x03\x76\x49\xd6\x89\xda\x59\x97\xd8\x94\xa8\x9d\xf5\xe2\x07\xed\x6d\x9e\x48\x11\xd6\x0a\x0d\x19\x49\xb1\x9e\x6d\x5c\x43\xfa\x0d\x0e\x29\x05\x3b\x45\x42\x29\x31\x2a\x25\xd2\xa3\xb4\xe3\x34\x95\x2d\x09\x44\x89\x8a\x55\x97\xda\x9f\x12\xac\x1c\x02\x30\x2d\x10\x34\xeb\xc4\x11\x9b\x1f\x10\x51\xee\x72\x9d\x2d\x92\xd3\x52\x87\xd0\x95\x45\x74\xa9\x43\x8b\xf2\x91\x96\xfa\xcd\x07\x5a\x9b\xfe\xf0\x81\xfa\x18\x50\x9a\xcc\x00\xd2\xbe\xf3\x0d\x3f\x38\xf8\x40\x70\x1c\xeb\x13\xf5\x01\x49\xaa\xc6\x18\x7f\x72\x1c\xa5\x93\x03\x68\xab\xa7\x93\x03\xe8\xbc\x4b\x27\xa1\x36\x89\xcc\xdd\x12\xe2\x26\xbe\x96\xb0\x5d\xe2\x36\xfc\x46\xe1\x03\xf5\x81\xed\x10\x37\x91\x70\xde\xe6\x27\x9b\x96\x3c\x43\x31\xda\xc4\x1e\x1e\x08\x5b\x31\x7c\xf6\x57\xb8\xc1\x2f\xd2\x87\x41\x84\xfb\x80\x14\xf4\x39\xfb\xc3\xd3\xb0\x85\x3f\x6c\x30\x3c\x8d\x42\x8f\x7f\x07\x67\xfd\xa0\x2d\x3c\x0d\x67\xc6\x67\x29\xe2\xb6\x4d\xb1\xfb\x83\xe6\xb8\xcd\x0d\x57\xfd\x6b\x98\xbb\xf1\xa3\x53\xc5\x0d\xb6\x99\xac\xd6\x44\xf8\xab\x99\x7e\xdf\xcc\x2f\x4a\x8b\x5b\x28\xb3\x27\x8d\x13\xea\x6c\x56\x35\xbb\x79\x64\xdc\xc2\x30\x8f\x8c\x1b\x36\xe2\x67\x82\x71\xc3\x36\xdc\xfc\xee\xa4\xcf\x68\x08\x6f\xe0\xef\xd3\x8c\x00\x71\xa8\x09\x20\xdc\x04\x10\xea\x6a\xee\x25\xd9\xae\xe2\x96\x8e\xef\x2f\xc9\xb4\x71\xc3\xce\x88\x21\xa8\xef\x74\xbf\xd8\x4f\xdc\x12\xb7\x66\x56\xef\x99\xf4\xd8\xd5\x21\x34\xfb\x4d\x1d\xe6\xc1\x0e\xf5\x3b\x68\xa1\xc6\xae\x11\xa6\xa8\xd8\xba\xf1\x32\xb5\xcf\xa6\xc3\x22\x6e\x58\xfb\xd4\xdc\x06\x08\xc3\xc8\xd9\x41\x3c\x45\x43\x82\xfd\x56\x19\x5e\xe2\x06\xf6\x1b\xb6\xcf\x46\x8c\x30\x4e\x86\xd0\x8b\x1f\xa4\xef\xaf\xf6\x11\xa7\x22\x2d\x8d\x41\x1c\x29\xc2\x6c\xd8\xd3\xe6\xf7\x77\xb4\xb3\xda\x0f\x77\xc0\x67\x96\x30\xdf\xf5\x2d\xea\x83\x49\x09\xad\x7a\x84\x18\xe6\xef\x06\x00\x46\x31\x41\x0c\x83\xd7\x48\xaf\x9f\x71\x42\x96\xe0\x07\x73\xd9\x3e\x0c\x2f\x7e\xcc\x57\x22\x35\x9a\x96\xe2\xd6\x35\x83\xb9\xce\x3d\x7d\x44\xb5\x08\xe3\xc5\x90\x65\x2f\xc2\x76\x31\x24\xec\x45\x98\x2e\x86\x84\x99\xf8\xb1\x4d\x44\x75\x30\x97\xa1\xa7\x8f\xc4\x19\xc3\x14\xba\x86\x34\xdd\x08\x95\x50\x8a\x4e\x84\x4a\x28\x0b\x53\x0c\x10\x7d\x62\xdc\x34\x83\x29\x12\xf4\xb4\xe9\x85\xf3\xe0\x0b\x1a\x0f\xc7\x7a\x8c\x86\x88\x8c\x2a\x1a\xe4\xa9\x03\x4a\xa7\x8d\x50\xf9\x74\x06\xc7\x70\xcf\x01\xb6\xe0\x76\x43\x5b\xaf\xdf\x1d\x6d\x2d\xe9\x3d\xd0\x16\x80\x53\x53\xeb\x49\xef\xc7\x49\x43\xd2\x8f\x63\xdc\x30\xf8\x50\x73\x4e\x57\xeb\x17\x41\x50\x31\x74\xbf\xbe\x0c\x58\x4d\x0f\xda\x24\x90\x4d\xcd\xfe\xfd\x25\x7b\x4b\x8c\x34\x5b\xe7\xcf\x99\x19\xe3\x46\x76\x31\xfc\xc6\x24\x88\x6c\xe8\x68\xb0\xd3\xb6\x8f\x93\xa9\xb5\x2a\x82\x8c\x93\xad\xd5\x8f\x4c\x18\x23\xd8\x5a\x0c\xa1\xff\xe0\x58\x89\x11\x96\xe5\x20\xd8\x27\xef\x92\x09\x2a\xc6\xc9\xac\x9a\x67\x36\x99\x55\xdb\x3c\xd2\x03\x40\x84\xa9\x08\x3c\x6a\x62\x53\x5c\x90\x6d\x2a\xc6\x29\x2c\xc8\x0e\x19\x63\xbc\xbe\xbf\x7a\x18\x1a\x6a\xd2\x7d\xab\x51\x68\x9d\x92\x40\xdb\xdc\x2c\xf3\x67\x75\x06\xe6\x26\x7a\x89\x09\x70\x6a\xe4\x4c\x14\x88\x07\xc7\x0c\x92\x2f\x22\xc1\x48\x9b\x62\x11\xe7\x81\xae\x2d\xa3\x66\x84\x86\x5a\xc5\xc8\xa0\x9f\xca\x29\x10\x23\x8d\x60\x45\x4c\x84\xd2\x7e\x0c\x5d\x1f\x8c\x75\x2c\x0a\xa4\xd1\xf8\x40\xc8\x82\x3e\x10\x43\x17\x48\xe3\x26\x33\xd4\x27\x70\xa2\xc5\xd0\x35\xca\x3e\x71\x50\xf4\xc1\x01\xf4\x27\x4d\xf2\xe4\x46\x14\xc6\x13\x7c\x28\x73\x89\x3f\x0f\x02\x28\x5b\xbf\x2f\x37\x83\x78\x55\x1a\xd8\xa9\x32\x73\xc6\x34\x78\x86\x88\x02\x12\x34\x90\xf7\x83\x05\xe4\x47\xe8\x88\x09\x2a\x49\x94\xab\x2d\x26\xa8\x24\xbf\xfb\xa4\xfc\xfb\x07\x44\x96\x76\x20\x84\xa9\xdf\xbd\x31\x45\x9b\x50\xe3\xc7\xff\x11\x73\x4c\x7c\xf0\x59\xb0\x7c\x4f\x36\x2e\x43\x59\xcc\xcf\x03\x33\x96\x88\xb5\x4c\x2e\xd9\xa3\xc0\x2a\xe5\x46\xfb\xd3\x41\x99\x4b\xdc\xa3\x60\x28\x15\x1d\x8a\xe9\x94\xa9\xdb\xf7\xf8\x11\xb7\x63\x69\xe8\x4f\xa7\x67\x99\x4c\xb3\xc7\xac\xef\x3b\xbe\x17\x2a\xcb\xd4\x53\x7b\xd4\xb6\x2e\x53\xe8\xec\x51\x7c\xa1\x4c\x35\xb5\xc7\xac\xfe\x3b\xe0\x4b\xee\x1f\xe3\x4b\x3e\x29\x13\xf1\x4d\x7b\xaf\x4c\xb4\x7b\x25\xcb\x44\x7a\xdf\x74\xc8\x14\x62\xf4\xd5\xdd\x4e\xa6\xfc\x51\x30\x62\x39\x78\x98\xeb\x64\x2d\x07\xb8\xbe\xe0\x3b\xc0\xf5\x05\xde\xc1\x35\x1b\x7e\x9d\x4c\xd8\x2f\x9c\xf3\x7d\x4d\x7f\x8a\x81\x2d\x69\xf6\x27\xc9\x66\x08\x5d\x27\x4e\x51\x1d\x1a\x65\x1e\x22\x3e\xa2\xca\x09\xc7\x70\x55\x13\xc8\xf6\x60\x14\x8e\x93\x4e\xd1\x32\xcf\x9c\x16\x35\x3a\x4e\x9c\xad\x6c\x1e\x7f\x72\x1b\xb1\xd0\x72\xce\xad\x24\xe2\x29\x77\xc6\x5a\x0b\x9b\x77\x41\x5b\xd0\xc0\x7d\x1a\x5f\xc4\x72\xcf\xef\x9b\x80\x7f\x16\x72\x05\xef\xc3\x13\x4f\xab\x57\xe7\x29\xd2\x24\x05\xd6\x0d\xb3\x0d\x6a\xde\x10\x29\x3e\x9f\xd7\x00\x5a\xd0\x3e\xae\x01\xb4\xe0\xcf\x33\xfc\xd5\x7a\x7d\x0a\x72\x4d\xcc\xa9\x56\x50\xaa\x8e\xbf\x0a\x4a\xdf\xc4\xf3\x6b\x25\xad\xa8\xf7\x9a\xf0\x7e\x52\x3b\xe3\x77\xc1\x5e\x81\x8d\xf0\x13\xb5\x25\xd6\x5a\xf1\x72\x56\x9b\x64\x22\x58\xe7\x36\x93\xef\x34\xd6\x7a\x80\x0a\xc5\xd9\x6b\x25\x07\x7a\x3d\x98\x84\xd4\xdc\x1f\x38\x43\x18\x86\x1e\x4b\x21\xe0\x17\x7f\x92\x38\x57\xd7\x4e\x28\x7e\x83\x8b\xa5\x13\xbe\x4e\x52\x9d\x2a\x90\x10\x74\xdc\x3c\xa1\xf5\x60\x49\x34\xa2\xee\xb6\x91\xc7\xe9\x50\x6f\x61\xf1\xa7\x4d\x0f\x38\xac\xf6\x7b\x83\xf8\x1d\x65\x78\x8f\x2d\x53\x08\xd2\x1e\x6e\x65\x51\x99\xde\x68\xe4\x69\x42\x66\xdb\xc1\xb3\xb4\xf0\xed\x78\x08\xf9\xa7\x8b\x81\x90\x81\x1a\xc5\x05\x07\xcc\x31\x31\x6a\x23\x1e\x80\x2b\x6c\x22\xd5\x03\x36\x81\x68\xc6\x76\x44\x82\xa1\x93\xfb\x80\x19\x20\x9a\x15\x1e\x95\x90\x07\x3f\x08\x7c\xa0\x51\x70\x60\x46\xd3\xe0\x31\xca\xef\x20\x3f\x3e\xc7\xe3\xa7\x8b\x1b\xd8\x28\x45\x84\x72\x77\x78\xdc\x2c\xb8\xdf\xbd\x40\x5f\x2b\x7e\xa3\xc1\x6f\xf9\x7a\x63\xe0\x93\xd7\x1b\x07\xde\x10\xa0\xf7\x64\xb2\x39\x8a\xeb\xdc\xb0\x04\x66\x0b\x67\xf7\xd4\xf3\x73\xcd\x6e\xc7\xef\xaf\x64\x39\xe1\x9e\xb2\x70\xb6\x30\x7c\x4f\x61\x38\x9b\x13\xdc\x34\x03\x26\x09\x77\xf7\x60\xe4\x85\x18\xe9\x8d\x99\xa7\x5e\xdc\x25\xa2\x2f\x4a\xf5\x27\xe3\xfb\xab\x6c\xc5\x7d\x1e\xb3\xdd\xdd\x9e\xe4\xd9\x64\x15\x8c\xf7\x3c\xa4\x53\xd5\x51\x74\xcf\x3d\x90\xbc\x27\xee\x1d\xa8\x94\x91\x2e\xde\x88\xd0\x29\xf2\xd1\xc4\x1b\x27\x72\x0e\xda\x02\xf7\x0e\xa0\xac\x13\xdc\x88\xc5\x49\x3e\x80\x6e\xec\xab\x34\x74\x20\xdc\xd8\x57\x79\x0c\xbf\x31\xb7\xf2\x08\x9e\x3a\x62\x72\xf2\xf0\x82\x21\x2a\x27\x0d\x31\xb6\x1b\x87\x52\xd9\xb4\xfb\x6f\x58\x2f\xdf\x9d\x1e\x98\x8b\xe5\xaa\x1b\xe6\xcc\xbc\x35\xcd\x05\x31\x36\x79\x7b\x7d\x42\xcb\x9a\x08\x1a\x26\x8a\x90\x5e\xab\x0c\x2b\xe7\xd0\xd9\x77\xd3\xe7\x65\x5b\xc1\x7d\x26\x2c\x9a\xb6\xf7\x3d\x65\xaf\x58\xb5\xf1\x6e\x06\xe7\x54\xe9\xd2\x37\xec\x9c\xc9\xba\xf1\x4d\xdb\xa6\xfc\x5a\xf1\x3e\x19\xa1\xd4\x3d\x08\xb4\xe3\x68\x62\xbb\xc2\xf7\x57\xda\x8c\xf2\x0b\x60\x99\x73\xdd\xf4\x7c\xbd\xbf\x68\x9c\x99\xdf\xe8\x13\xce\xaa\x31\xa0\x60\xa7\x6e\x5c\x40\xc1\x4e\xb6\x0a\xdc\x88\x1c\x4a\x32\xb1\xc6\x7b\x1e\x8e\xa1\x1a\x17\x53\xdb\x4a\xc9\x94\x71\x83\x32\x74\xf6\xde\xf7\x81\x21\x85\xdc\x1b\xee\xc7\xec\xdf\x27\xb5\x0e\xe9\x1c\xf7\x03\x33\x84\x44\x97\x67\xa3\x15\x6b\x53\x7b\x32\x3d\x1f\xf5\xcf\xe4\xbd\x59\x16\xab\xf8\x4c\x7d\x2d\x4f\x66\xfd\x83\xe3\xe9\x81\x85\x56\x21\x43\xf1\x99\xe7\x72\x0e\x92\x13\x9e\x79\x30\xa7\xd8\xdc\x79\x9b\xbf\x07\x03\x33\xf1\x59\xb4\xdf\x9f\xa9\xdd\xe5\x28\xb5\xe2\x99\xca\x5d\x8a\x52\x03\x9e\xa9\xdb\xa5\x34\xdc\xff\x39\xdf\x0f\xfe\xfe\x9a\x6d\xc9\x3d\xcf\x06\x06\xf5\x82\xef\x99\x6d\x21\xef\x09\x1b\xda\x1a\x6f\xea\x86\x29\x54\xff\x3e\xf9\xd5\x10\xfb\x79\xe6\xb9\x94\xa3\xc4\xae\x27\xd4\xef\xaf\x6c\x5b\xc2\x83\x50\xa4\xe4\xf9\x4e\x15\x21\x35\xcf\x67\xaa\x8b\x39\x89\x2b\x3f\xf3\xf8\xc8\x29\xba\xff\x03\x6d\xbf\x7f\xce\xef\xb3\xdf\x9f\xf4\x36\x64\xd1\x7a\xa6\x64\x93\x73\x71\x7b\x12\x43\x10\xc7\x7e\x10\x83\x14\xa5\x06\x3e\x53\xee\x4f\x5d\x9b\xfb\x89\x73\xdf\xc9\xf5\x15\x9f\x79\x7a\x45\x5b\x0b\x1f\x84\x1b\xbd\xd6\x23\xce\xf5\xab\x62\x30\x4f\xc4\x7e\xd0\x4e\x7f\xe6\xd9\x16\x73\xf1\x78\xfb\xef\xf8\xff\x13\x0f\xb4\xdd\xdf\x5c\x3f\xef\xfb\x67\x6a\xb5\x31\x34\xc3\x33\xe7\xd7\x8c\x2f\xd8\xc3\x87\xe9\x05\xe6\xf0\x21\xd9\xea\x41\x24\x92\xdc\x17\xf1\x49\xe4\x3c\x7e\xff\xf7\xe7\xcd\x93\x70\xde\x48\xaa\x78\xa6\x9a\x9c\xad\xa9\x3e\xa9\xa2\x2d\x7c\xa4\x86\xb6\xfb\x9f\x7c\xbd\x8a\x83\x3c\xb0\xaf\xe7\xe2\x05\x4d\x13\x01\x8a\xba\x8b\x4f\x3a\xd0\xf6\x07\xe7\xdc\x00\x46\xd8\xd4\xc4\xf3\x10\x8f\x7f\x10\x7f\x34\x5e\xfd\x4d\x11\x45\x91\x3a\xf1\x41\xf4\x51\xf4\x6e\xcf\x01\x87\x9d\x00\x9c\xb2\x6c\x2a\xde\x30\x53\xb5\x4f\xd6\x50\x1f\xd8\x28\x15\x12\x13\x9f\xa9\xe9\x27\xdb\x6d\x9f\x5c\x71\x58\xba\xbf\x86\x0d\x29\x78\x73\xff\xfe\x2a\x21\xb9\xff\x89\x00\xf9\x17\xe2\x93\xe7\x06\x96\x03\x37\x3e\x79\x9e\x6a\xbd\x78\xfc\x39\xff\xe8\xf9\xe5\xeb\xfb\xab\x28\x18\x21\x3e\xf9\x9e\xed\xea\xef\x1f\xb4\x05\xcf\x54\x4b\x53\x96\x2c\xf5\x94\xb9\x81\xbb\x37\x64\x81\x35\x51\xdc\xf4\x29\x69\x7e\xef\x0d\x50\x70\xf0\x6c\xfe\x1d\x52\x91\xe1\x9f\x42\x64\xda\xc4\x7d\x9f\x32\xe7\x5f\x4c\x30\x65\xce\xbf\x7a\x83\x95\x81\xb6\xdf\x9f\xf3\xaf\x26\x50\x84\x1c\x25\xd3\x03\xbc\xff\xd5\xdc\x18\x01\x47\xbd\x7b\x7c\xac\xff\xab\xff\x07\x04\x2e\x7c\x53\x76\xd4\x01\xf5\xd0\x5b\xe3\xf7\x69\x6a\x91\x9a\xfa\x4c\xe5\x24\xd6\xe2\xef\xf3\xc4\x97\x0e\xf7\x67\x2a\x27\x49\x2e\xac\xf8\x4c\xfd\x23\x65\x6f\x38\x44\x09\x64\x1f\x67\x4f\x9d\x08\x78\x11\x78\x1d\x93\x43\x7b\x81\xa6\x82\x92\xb2\x17\x7c\x6a\x28\x31\xb4\x1f\x69\x3f\xcf\xd4\x5e\x52\xf7\xf6\x9f\xca\x4b\x6a\x2f\x68\xee\xf9\x7b\xf2\xef\x73\x77\x54\x89\x9f\x70\x96\xc4\xe8\xd5\x44\xf8\x40\x1e\xd2\xcd\xe0\x2d\x09\xc9\xfb\x1b\xd1\x03\x96\x89\x9f\x36\xd1\x33\x0c\x3d\x22\x90\x86\x97\xab\x4d\xf4\xbc\x96\x1b\xf1\x47\xaf\xf3\x87\xa1\x04\x12\x25\x9f\x36\xbe\xbf\xea\xeb\x7c\x69\x13\x3b\x63\x73\x7f\xd4\x8c\xfc\xfd\xe4\x8f\x9b\xb7\x23\x63\x8f\x5e\xed\xfb\xfb\xab\x46\x49\x80\xcf\x54\x71\xa2\x05\x98\xa7\x6f\xf3\x77\xf7\xd7\x03\xb6\xaf\xbe\xef\x73\x7b\x14\x9f\x27\x53\x4b\x88\xd1\xf0\xf5\x8c\x60\x36\xf7\x07\xed\x46\x46\x8e\x07\xbe\xc0\x3a\xdc\xff\x9c\xbf\x0d\x0d\x4f\x9f\xe7\xc3\x6b\x3b\x75\x04\x0a\xbd\xc6\xdf\xe7\xf8\xde\x4e\x53\xc3\xa8\xc9\xe7\x4b\x3f\x11\xc1\x6e\xf8\xe6\xfc\x87\xd9\x11\x62\x11\xba\xd9\x1d\x1d\x8d\xfe\x7e\xd0\xbd\xa1\xef\x47\xf8\xfe\xaa\xd5\xf0\x23\x5a\xeb\x75\xfe\x21\x5c\x2b\x9b\x9f\xc3\x38\x6f\x07\xcb\x33\xb0\xfe\x66\x57\x53\x1d\x49\x61\xf8\xf7\xf6\xfd\x55\x6d\x7c\x7e\xa6\x32\x52\x9b\xb7\x27\x82\x16\xb2\xcf\xa3\x31\xe7\x6f\x31\xf7\x99\xba\x49\xec\xaf\xf1\x26\x7b\x54\x70\x51\x7c\xc6\x05\x79\x49\xf4\x34\x75\x97\x98\x4c\x7f\x53\x75\x89\xc5\xf2\xc7\x54\x5d\xe2\x30\xfb\x65\xc0\x43\xf0\x76\xdd\x23\x04\x02\xbf\x30\xcf\x87\x97\x80\x34\x55\x9b\x94\x2d\x90\xec\x93\x3f\x0c\x6f\x7f\x68\x3a\x36\xfe\x3f\x7b\xfb\x9d\x8c\xfd\x4c\xc5\x27\x75\x13\xe0\xd4\x7b\x52\x31\xbf\x9e\x6a\x4f\x0b\xde\x90\x53\xeb\x69\xc1\xe7\xd9\x4e\xcb\x8f\xfb\xbb\xbe\xbf\x7a\xb5\xb4\x3a\x55\x9e\x94\x4d\xb0\xfb\x03\xfe\xaf\xfe\x11\xbf\x91\xbd\x61\xa6\x46\xd4\x82\x37\x30\xac\x74\x41\xba\xdd\x03\x7d\x28\x59\x40\x38\x32\x36\xb8\xe0\x3f\xe6\xfc\xcb\xab\x3f\xf0\x47\x9f\x4f\x53\x7d\x8a\xc5\xf8\x3b\xb0\x01\x4c\x70\x07\x23\xe5\xdc\x9e\x0c\xe0\x25\x40\x1f\xf0\x4a\x7b\x03\x1f\x2b\x42\x59\xed\x0b\x76\x3d\xb7\x61\x88\x93\xee\xfa\x40\xf5\xb2\x76\xf1\xd0\x49\x6e\x79\x63\x6a\x5e\x69\xb3\xc0\x36\x15\xaf\x96\x5f\xef\x33\xc6\x42\xf3\x85\x1d\x31\x47\x7f\x3f\xd7\xd7\x6a\xeb\x03\x83\x48\xb2\xba\xf2\x20\x3e\xa5\x7a\x07\xd0\xb4\xe8\x1d\x05\xcb\x62\xb6\x44\x38\xf5\xb8\x96\x7d\xe0\x4f\x35\x2e\xbd\x34\x08\x98\xae\x87\x0f\xb0\xa9\xd5\x45\xfb\x54\x9e\x0b\x02\x80\x29\xfe\x4a\x50\x87\xea\x0f\xce\x97\x44\xef\xf7\x07\xb6\xb4\x4d\x6d\xa6\xa7\xcf\xee\x4b\x70\x78\x2b\x86\x31\xc1\xe1\x2d\x51\x29\xc1\x31\x5d\xab\x7f\x85\x0f\xe5\xf5\x31\x3d\xd3\xcd\xef\xc3\xdf\xf0\x31\x96\xa4\x6d\xca\xe6\x5d\xa2\x5a\x82\x3b\x3a\xc4\x18\xfc\x00\x7e\xba\x8f\x11\x21\xc1\x41\x1d\x62\xf8\xec\xf6\x44\x17\x75\x95\x15\x38\x6d\x08\xde\x88\xa1\x69\x8c\xe5\x6f\xf8\x30\xdc\xc4\xcc\x22\x9f\x18\x69\x7b\xc0\x71\x35\xe6\x83\x49\x09\x66\xb8\x01\xaa\xcc\xd4\x29\x4e\x20\x7b\xf8\x30\xfc\x14\xa7\x40\xdd\x25\x4f\x26\xb8\x9d\xba\xa2\xdf\x13\xfc\x4e\x5d\xc9\x30\x29\x62\x4e\x0a\x87\x4f\x08\xea\xec\x52\x50\x52\x9c\x02\x75\x57\xe2\x4d\x8a\x53\xa0\x6e\xf5\xe3\x89\x4a\x71\xca\xd3\x5d\xde\x91\x14\xe1\xcc\x55\x24\x79\x82\x63\xab\x2b\x07\x28\xc1\xb3\xd5\x95\xe6\x93\xe2\x94\xa7\xbb\xdc\x2d\x29\x4e\x79\xba\x2b\x0b\x2a\xc5\x8c\xf9\x15\xb7\x69\x22\xd4\xfc\xa7\x3c\xdd\x95\xfa\x93\xe0\x2a\xeb\x0a\x7b\x48\x71\xf9\xfc\x87\x1e\x14\x58\x8b\x87\x00\xc6\x89\xb4\xe5\xe6\x07\xf3\x85\x50\xdd\xc6\x08\x5a\x82\x38\x30\x42\x15\x46\x06\x30\x5c\x34\x03\x98\xc8\xb6\xec\x25\x1a\x40\x71\x75\xbb\xf1\x05\xf7\x00\x1c\x8b\xf0\x10\x49\xd7\x25\x23\xa7\x38\x0f\xa5\xb0\xe5\x2e\xa4\xc1\xaf\xb5\xe5\xee\x2f\x4e\x76\x29\x34\xcf\x73\xa9\xa7\xe0\x2f\x80\xe6\xd7\xac\x1f\xce\x5a\x2f\xc0\xab\xb5\x65\xbf\x01\xa3\xda\x96\x87\xe6\x3d\x4f\x8a\x2e\xa7\x56\x8a\x3b\x57\x5e\x94\xb3\x63\xe5\x8b\x7b\xc4\xca\x57\xcd\x02\x27\x85\x32\xd8\x52\xdc\x01\x52\x75\x7f\x58\x79\x6d\x7e\x44\xfa\x75\xa5\xc7\xa5\xf8\x40\xd3\xf2\xfe\x44\xa4\x5a\xdf\xb2\xdb\x08\x6c\x10\xa9\x32\x5a\x2d\x28\x9a\x2b\x21\x5e\xad\xeb\xac\x4d\x09\x49\x5a\xa1\x7f\xb4\xdb\x44\x07\x63\xe8\xda\x9d\x09\x49\x5a\x41\x31\x68\x29\xc1\xdb\x1d\xfa\x47\xdf\x4a\x0c\x7a\x0b\xbd\x7b\xd4\x83\x0f\x3c\xea\xc9\x07\x86\xf3\x82\x3f\xfe\x33\xd1\x14\x10\x0d\xe0\x0f\x42\xc1\x3c\x04\x44\x00\xdb\xd1\x96\x49\x81\x50\x0e\x7f\x80\xf8\x00\xed\x99\x44\x1f\xb8\x6c\x73\x29\x05\xfa\x5f\xd4\x63\x84\x87\x44\x9b\x24\x45\x62\x4e\x88\x41\x60\x5d\x18\x9b\x10\x03\x23\x7a\x18\xe2\x95\x29\x56\xcc\x41\x20\xc4\x86\xb6\x40\x88\x3b\x46\x14\x56\x10\x14\x52\x0c\x51\xbc\xd0\x61\x10\x12\x12\xb6\xa5\xf8\x06\xc2\xe8\x82\x15\xed\x79\x24\x4f\x8a\x8e\x02\x29\x11\x02\x8d\x90\x80\x15\x69\xea\x29\xc1\x14\x10\x46\xfa\x89\x66\x93\x10\x88\xd7\x37\xf1\xa1\x84\x5c\xa5\x30\x92\x70\x02\xc6\xb6\x65\x8f\x7f\x12\x40\x7f\xc1\x29\x25\x91\x06\xf2\x8e\xc2\xd0\x79\x95\xc0\xab\xb6\xec\x36\x7c\x47\xe2\x6d\x29\x13\x62\xaf\xc3\x54\xde\x5b\xe9\xfe\x60\xc7\x9c\x85\xa4\x0c\x4a\x32\x65\x4d\xe5\xbc\xcb\x5a\x95\xd2\xe4\x75\xad\x0c\xf5\x57\x88\x54\x8f\x88\x00\xfc\x30\xb4\xa9\x53\xe1\xca\x9b\x54\x0a\x60\x14\xff\x4e\xd0\xd8\x82\x82\x30\x53\x6a\x88\xde\x11\xb3\x4a\x53\x43\x6a\xf5\xd5\xc6\x31\x1c\xb5\x4e\x8d\x71\x11\xfe\xfe\x01\x12\x34\x00\xc2\x9b\x83\xe2\x1d\x13\x42\x13\xfb\x66\x2c\x0e\x6e\x07\x2d\xc4\x00\x84\xd1\xef\x63\x37\x78\x5d\x06\x37\x64\x75\x07\x60\x34\xde\x6f\x3b\x06\xd0\x91\x06\x8f\x7f\xab\x26\x7e\xfa\x9e\x0d\xf1\x8e\x03\xa0\xfb\x77\xf0\x77\xaf\xc2\x41\x80\xd5\xdf\x01\xd2\x8e\x5a\xb5\x83\xfd\xf9\x7d\x06\x64\xa9\x3f\x88\x88\x56\x7a\x53\x82\x4c\x28\xa5\x36\xa5\x13\xe7\x85\x98\x3d\x22\x27\xfb\x66\xc2\x3b\xc1\x79\xcd\x92\x4e\x2c\x41\xd0\x04\x2e\x38\x40\x93\xfa\xbb\xc8\xc3\xb4\xe8\x79\xa3\x16\xae\xed\x9a\x99\xdf\x9a\x34\xe7\x0c\xd6\xd9\xe4\xfe\x4f\x99\x91\xb6\xe3\x63\x49\x4e\x19\xa1\xb3\x2d\x6a\x47\xe5\x78\x23\x83\x37\xe8\x01\xf2\x19\xb2\xb7\x54\x46\x3e\x43\x8b\x1f\xed\x37\xe5\xbe\xb4\x75\x8d\x02\xf5\xb0\xc9\xde\x9b\x32\x92\x95\xab\xf2\xc1\x52\x86\x33\xa4\x29\xf8\x2b\x65\x08\xe0\x3d\x89\x63\x67\x84\x74\x37\xd9\x88\x53\x66\xc8\xb4\x64\xea\x54\x02\x5d\x04\xa2\x98\x02\xa3\x9f\xcd\xe4\xa9\x20\x49\xac\x29\xfb\x2d\x15\xb8\x6d\x9b\x12\x6e\x52\xa1\x1e\xa6\xac\xd9\x54\xe0\x71\x6a\xb2\xf3\xa7\x32\x25\xfb\xf9\xe0\x03\x47\xc1\x32\xb4\x24\xc2\x2c\x17\x42\xe7\xb6\xaa\x37\x1e\x18\x07\x95\x26\x9b\xe0\x76\x0f\x2d\x7f\xa4\xf3\x54\x11\xf4\x39\xc2\x47\x9f\x48\x35\xa3\x53\x05\xf6\xa6\x8a\xd0\xff\x96\x3f\x1a\x56\xaa\xf0\xe0\xb5\x2c\x38\x2a\x74\xe2\x26\x11\x3e\x55\x38\x6e\x9a\xa5\x8b\x06\xaf\x76\x2b\x62\x8e\x0d\x5e\xed\x56\x3e\x76\x89\xd4\x5a\xe1\x83\xcf\x5c\x5a\xa7\x63\x46\xac\xa7\x61\x5d\x5a\xf1\x83\x1b\xae\x30\xe5\x87\xa7\x76\x03\x63\x45\x02\x7b\xe3\xf4\x8b\x40\x6f\xcf\xc5\x07\x9f\x51\x3a\x7c\x2b\xad\x7c\xcc\x89\xa9\xc3\x3e\xfd\x62\x91\x3d\x51\x3f\x96\x2c\xd5\x33\x3f\xd1\xd1\xd5\x0b\xe7\xa2\xd9\xf6\x4a\x48\x75\xd8\xf5\x1d\x79\xc3\x52\x5a\x53\x87\xe3\x6f\xc8\xea\x9a\xfa\xb3\xff\xce\x09\x9a\x06\xce\x6c\x07\xb9\xa5\x01\x3f\x75\xab\xf1\x27\x51\x6d\x69\x20\x11\xa7\x55\x9d\x0c\x63\x47\x2a\x9e\xe2\x6e\xd3\x80\x5e\xbb\x19\x7b\x7b\x39\xf9\xe0\xb3\xac\x3b\x49\xb4\x05\xbd\x01\xdb\x5a\x93\x31\x3f\xed\x1d\x19\x5f\x16\xf6\xf7\x93\xa3\x88\xf7\xee\x8c\xd1\x56\x08\x7d\xda\xe1\xa1\x6b\x0a\xab\x49\x3b\x3c\x74\x4d\x41\x59\x69\xbf\x31\x51\x99\xf4\xd3\xfe\x24\x6e\xb7\x0f\x7e\x8f\x8d\x80\x09\x59\xf4\xe1\x37\x45\xde\xa5\x03\x21\xc7\x4d\xa1\x62\xe9\x40\x58\x71\x91\x5f\x24\x1d\xc8\x65\x6a\x4a\xef\x49\x47\x23\x1c\x52\x8c\x0e\x78\xd3\x9b\x12\xff\xd2\x01\xe6\x62\x47\x5d\x3a\x3a\xfb\x10\x63\x3e\xe0\x46\x6e\xca\xcd\x49\x07\x82\x84\xaa\x99\xdc\x01\xbf\x69\x1d\x62\xad\xc7\xc9\x3e\xc4\x07\x8e\x07\xe4\x65\x5e\x72\x3c\xc8\xaa\xb4\xc6\x74\x22\x40\xb7\x0e\xc9\xea\x27\x02\x14\x9a\x8c\x60\xe9\xc4\x28\x6d\x68\xa1\x4e\x38\x4a\x9b\x85\xa3\x0b\x71\xe1\x4d\x21\x1e\xe9\x82\xb2\xdb\xc6\xc7\xec\x9b\xae\x44\x9a\xd5\xba\x5c\x19\xe7\xb0\xc4\xed\x0b\x19\x6a\x6d\x88\xec\x2f\x68\x1d\x7d\x93\x02\x7d\x21\xc6\xe9\x75\xb2\x5e\xe7\x72\x80\x7f\x56\xe1\x9a\x07\x4b\xe8\xb2\x66\xa4\x1b\xfc\xe9\x25\x59\xde\x89\x93\x15\x5c\x37\xb3\xb5\xad\x95\xdf\x95\xa3\x48\x8f\xb8\x91\x18\xd7\x65\x73\x4d\x37\xce\x8d\x2e\x9b\x4c\x62\x28\x45\xdf\xc4\x6b\x6f\x26\x55\x29\x23\x22\x21\x8c\x21\xf4\x4d\x2c\xed\x66\x3e\xa4\x52\x24\x12\xfc\x08\xa1\x7b\xff\xd0\x12\x5d\x87\xce\x0d\x98\x9a\x43\x57\x0a\x4b\x82\x6d\x39\xbc\x74\x59\xd8\xbe\xc2\x4b\x25\x82\x71\x2b\x64\xeb\x38\x34\xc6\xf4\xa0\xe9\x3f\x17\xfb\x10\x4b\x7b\xae\x85\xd3\xf5\x49\xde\x12\x3f\xf9\x28\x66\x79\x43\x82\x63\x97\x8d\x33\x6f\x4c\x69\x55\x76\x78\x5e\xf5\x2a\xf2\x07\xb0\xcc\xa0\xf1\x2e\x33\x71\x66\x0a\x7a\x57\x0c\x4c\x0e\xf9\xc1\x83\x0f\x37\xce\x4c\x83\x76\xfc\x60\x0e\x07\x50\xa8\xc3\x39\x87\x83\x9f\x7c\x42\x16\x33\xc2\x98\x43\x8f\x1f\xfd\x2a\x87\xfb\xe6\x03\x8d\xf2\xb0\xd3\x0f\x4e\x33\x42\x8b\x43\xd7\x79\x9e\xe3\xc6\x4f\x3e\xdb\x36\x33\x71\x32\x2b\x12\x29\xc7\x35\xdb\x8f\xb6\x93\x99\xb1\xd5\x65\xd2\xcb\xf1\xe2\x83\xac\x4f\x10\x14\xd0\x95\xb7\x9c\x13\xe4\x9b\x2e\x2f\x56\x86\x7a\x12\xba\xce\xe2\x9c\x10\x71\xdb\xd3\x47\xf1\xcb\x89\x73\x51\x6a\x6a\x4e\xd8\xd8\x5d\x79\xa5\x39\x43\x57\xec\x22\xa9\x9c\x59\x9d\xe3\xf5\x06\x0e\x81\xae\x5c\x90\x9c\xc1\xd7\xba\xd2\x70\x72\x06\x5f\xeb\xca\x85\xcc\x99\x79\xf9\xb2\xf7\xe4\x0c\x7f\x55\xdb\x3e\xe6\x88\x9c\x91\x2d\xd9\xf3\xeb\xc1\xce\x07\x1f\x82\xc9\x38\xf1\x7b\xae\xea\x14\x36\xd5\xae\xf3\x3c\xe7\x83\x93\x1b\x02\x9d\x1b\x39\x7f\xc4\xaa\x5c\x38\xb9\xf2\x61\xda\xb9\x20\x7f\xab\x97\xb8\xfd\xe0\xfc\xca\x05\xfa\x63\x56\x7c\x54\x2e\xc4\x6f\xd1\x2a\x96\xb6\x36\xe4\x67\xa2\x05\xc9\x82\x4d\x89\x26\xb9\x1c\x04\x41\x40\x16\x40\x3d\x82\x3f\xb9\x41\xe6\x72\xee\xe5\xc2\xb3\x47\xd6\xec\x5c\xc1\x6b\x7b\xd5\x0a\xd4\x40\x7f\xb5\xf6\x4e\x85\xd2\xd6\xe5\x11\xcf\x95\x89\xba\xca\xbf\xcc\x75\xe7\x1b\x1f\x8e\x9e\xeb\xaa\xbd\xf3\x39\xe1\x72\xdd\x39\x8a\xb6\x4a\x03\x25\xf4\xfa\x91\x31\x72\x63\x6d\x12\xc5\x49\xe4\x06\x32\xef\xed\x13\x61\x96\x1b\x2b\xda\x28\x00\x38\x53\xd6\xe9\x0a\xea\xcc\x3d\x60\xe1\x95\x20\x93\x3b\x2b\xa0\x28\x13\x3e\x77\xfa\x92\x65\xfc\xcb\x3d\x63\x9d\x15\xbe\x90\x3b\xc4\xe7\x2e\x07\x5e\x1e\x30\xcf\x37\xd9\x48\xf2\xb8\x41\xb3\xb2\x25\xe4\x01\xd1\xa6\x8f\x8f\xc8\x99\x77\x98\x59\xba\x8c\x05\x79\x47\x3c\x5d\xd7\x29\x99\x77\xc8\xe4\x5d\x9a\x71\x3e\xa0\x9a\x27\x55\x51\xc9\x07\x2c\xa9\x5d\x81\x7e\xf9\x68\x6b\x6d\x3f\x9d\x1e\x50\x8a\xba\xc2\xb1\xf2\x71\x12\x0e\x71\x8a\xe3\x5a\x6f\x7c\xe6\x72\xdc\xd4\x1e\x3e\x8a\x58\x3e\x29\x84\xc9\xb8\x99\xcf\x88\xd5\x57\xf4\x66\x3e\x01\xd8\x90\xf9\x30\x9f\x27\xfd\x4d\x62\x3f\x27\x52\xce\xc6\x26\x8c\x9d\x77\xe0\x27\x9f\x07\x17\x78\xda\x50\x7c\x56\xbe\x70\x4e\x0c\xf9\x50\xf2\xfd\xfb\x08\xa0\x7c\x6f\x88\x83\x7a\xb5\xa9\xe5\x08\x5f\xf7\x06\x2f\x60\x73\x07\x30\xfa\x17\xff\x8e\xa8\x9d\xe0\x0e\x06\x7c\xba\xfe\x1d\x5e\xbd\x8f\xf5\x26\xdf\x4c\xcd\xcc\x7e\x9f\x87\xce\xeb\xc1\xf5\xfd\x95\x8a\x38\xd7\xbd\xc1\xaf\xfb\xb1\x8b\xe5\x1b\xfb\xa8\xf9\x40\xb9\x11\xb7\x23\xab\x6a\xbe\x21\x90\x28\xce\x27\xdf\x61\x4d\x49\x3d\x42\x51\xc9\x3a\x09\xee\x50\xd0\x41\x54\x1b\x8e\xcc\xe4\x76\x43\xa0\x8e\x07\x40\xa0\x87\xb6\xe9\x1d\xe0\xc7\x1a\xee\xef\x06\x4a\xfc\x3e\x22\x21\xa3\xe8\xf8\x8e\x13\xe9\xc3\x38\x8a\xf4\x1c\x6b\xc0\xd8\xdf\x61\x59\xf9\x06\x55\x37\x05\x98\xe7\x1b\xa1\x34\x9b\x58\xe4\x8d\x33\x24\x47\xad\xfb\x0d\x0d\xd8\x41\x87\xf9\x8e\x74\x96\x0a\xcb\xd0\x88\x9b\xa2\xa8\xf3\x3d\x85\xb4\xbc\x79\x12\x30\x82\xa9\x68\x4b\xbe\xd3\x14\xd0\xc3\x66\x42\x40\x38\x8c\x62\xc5\xf2\x9d\xa8\x85\x7b\xa1\x40\xd0\x72\x8f\xe5\x7b\x4a\x13\x71\x78\x61\x51\x81\x47\xd6\x9b\x7c\x27\xf8\xb7\x87\x7f\x7f\x56\xf0\xd9\x6a\x67\x06\xa7\x09\x22\x84\xaf\x48\x97\xce\x37\x58\x4e\x56\xfa\x59\xbe\x91\xa9\x52\xb3\x90\x92\xb9\x07\x93\x1f\x74\xaa\x7d\x1a\x32\x23\xa4\xcc\xc4\x9a\x27\x2d\x2a\x6a\x38\xdf\x99\xac\x41\x53\xca\x88\x0e\xf5\x94\x91\xc5\xd7\x62\x0e\x3f\x39\x99\xee\x52\xbe\xbf\x6a\xf6\x9a\x14\x62\x54\xa3\xa1\xac\x4d\x11\x5f\xbe\xa7\xf4\x95\x83\xf7\x2a\x8a\xda\x24\x13\x3a\x6a\xda\x38\xac\x37\xdf\xd0\xc3\x82\x39\xc8\x5d\x96\xd2\xaa\x36\xe6\x53\xfc\x3b\x3c\xa6\x51\x10\xd4\x88\x90\x2c\xb7\x13\x3b\x54\x07\x53\x1e\x9e\x0f\xb4\x28\x95\xa4\x9a\xb5\x08\x0d\xb4\x2e\x46\x78\x37\x38\x95\xbb\x60\x44\x3d\x85\x21\xaf\x51\xbe\x59\x1c\xc1\x93\x40\xa4\x76\x96\x5f\x3b\xdf\x28\x96\x50\xcd\xd2\x7a\x04\x5a\xb4\x08\xfd\x77\x71\x87\xf9\xee\x15\xbb\xcd\xbf\xc3\x0d\x2d\x2e\x8a\xd0\xe6\xd8\x4c\xf9\x53\x82\xcf\xc1\x64\xd4\x0f\x04\x59\xba\x7d\xbe\xe3\x18\xf3\x0d\xdd\x2d\xbf\x08\x11\x91\xd0\xc1\x6d\x08\x41\xd1\xfc\x02\x96\xa4\x61\x32\x64\x60\x81\xb7\xe2\xa0\xc5\x5b\x03\x32\xce\x59\xbe\xc8\x8c\x38\xe7\x18\x36\xd3\xdd\x98\x94\xf1\x6e\x0f\xb4\x85\x74\x84\x12\x6c\x3a\x59\x6f\xf8\x6c\x82\x4e\xeb\x9b\x02\x8f\x42\x87\xf2\x3d\x05\x0d\x87\xdc\xe6\x7b\x07\x8e\x4d\xf8\x50\x4f\x7d\x66\xde\x3b\x41\xf6\xf7\x15\xb1\x8a\x9a\x02\x2c\x50\xb5\x6b\x0d\xf7\xb9\xb1\xb6\x26\x00\xe1\xba\x1f\xcd\xe3\x3d\x9c\xa1\x1e\x4c\xe1\x20\x07\xef\x85\x29\x47\x66\x4b\x57\xf7\x54\x8f\xb3\xa2\x8a\xf3\x8a\x54\x7e\x6d\xe5\x63\x7f\x47\x97\xe6\xfb\x38\x7e\x17\xf2\x9e\x19\xca\xdc\xac\x97\xdc\x53\xe7\x8c\xc9\x30\x9d\x53\x8d\x2d\x46\xea\x49\x9c\xa8\x47\xaa\xca\xaf\x75\x9e\x07\x78\x56\x42\x60\x46\x20\x73\x0e\xc1\xbf\x37\x04\x0c\xba\xc3\xce\x0e\xdc\x23\xfc\xe5\xd5\x1d\x1c\x8c\xe9\x56\xfb\x42\x87\x9a\xc2\x09\xc2\xf3\xce\x38\xe7\x76\x2e\xde\xad\xc8\x0d\xcd\xc9\x87\xf5\x94\xb5\x63\x30\xcb\x45\xfd\x9f\xd7\x32\x4e\x75\x26\xaa\x50\x42\x46\x0c\x74\x56\x2e\x60\x46\x08\x74\x2a\xd1\x03\x0c\x84\x00\x69\x02\x34\x2b\x2a\x53\x2c\xdf\x28\xfd\x13\x5e\x94\x38\xf5\xa3\xea\x45\xb8\x30\x83\xe8\xf7\x1f\xb4\xf5\xfa\xbd\x66\xa0\x17\x6e\x46\x30\x0b\x25\x77\xe4\x00\x22\x84\x3b\x21\xaa\x55\x53\xba\xe7\xa2\x6c\xa6\x0b\x08\xee\xa1\x0a\x82\x9b\x1c\xed\xf5\xc1\xc1\x39\x68\xd2\x37\xb0\x1e\x3d\x24\xc2\xbc\xb3\xdb\x8b\x76\xd5\x25\xed\x30\x92\x9e\xef\x87\xa7\x44\xd1\x17\x4f\xc4\xe1\xac\x49\x41\x57\x1d\xc1\xdb\xe7\x29\xfc\x42\x78\x78\x2a\xd5\x0d\xb5\xb9\x30\xf9\x47\xe7\xce\x33\x4f\xb9\x28\x8d\xe0\x7e\x4e\xe0\xd0\x9d\x93\xa1\x79\xb3\x3d\x37\x67\xa4\x75\x7e\xc8\x93\xb5\xfd\x10\x58\xde\x93\x24\x1a\x04\x96\x07\xc5\x1e\x65\x04\x96\xcf\x1e\xba\x1e\xc0\xa5\xf6\x7a\x61\xa1\x7d\xe8\xc1\xc0\x8c\xfc\x02\x1c\x05\xda\x0b\x88\xfe\x9e\x20\x78\xc8\x25\x48\xfa\x0b\x58\x46\x25\x58\x3e\x9f\x7a\x94\x6a\x63\x77\x48\x11\x47\xfc\x77\x52\xe2\x46\x46\xfc\x77\xa8\xa2\x5d\xc4\x7f\xc7\xa0\x12\x10\xf9\x09\x85\x20\x68\xc4\x40\xcf\x44\x71\x97\x64\xd4\xc3\x7d\xac\xd3\x4e\x40\x04\xa6\x7a\x08\x91\x53\x2d\xcf\xf2\xf8\x67\x04\x79\x27\xd9\xd4\x33\x82\xa6\x67\x07\xc2\x43\xa4\x48\x22\xae\x83\xb0\xe8\xa4\x5a\x78\x19\x61\xd1\x59\xb6\xd8\xcc\xb0\xe8\xa1\x30\x89\x8c\x38\xe8\x09\xa4\xbf\x40\x9c\x97\x8e\x9b\x67\x89\x7e\x06\x92\xa2\x9f\xd8\x08\x22\xa1\xe7\xbc\x35\x2b\xd4\x63\x2c\x06\x12\x1e\xce\x64\xd4\xa7\x1d\x7c\xc6\xbf\xaf\xc5\xf4\x03\x84\x02\x7b\x2d\xe1\xe0\x94\xcf\x23\x33\x14\xba\x29\x8d\x30\x33\xf6\x39\x58\x7e\x45\xb0\xf3\x7c\xa0\x2e\x20\x2e\x6e\xda\x42\x88\x66\x8e\x43\x44\x8e\x68\xe6\xfc\xc2\x34\x84\xc3\x6a\xfd\x94\xe1\xcc\x39\x89\x7f\x23\x3e\x39\xc8\xa0\x96\x11\x9f\x9c\xb6\xe6\x1e\x10\x35\xa0\x7d\x85\xf8\xe4\x68\xd6\xb4\xe2\x93\x4d\x2d\x65\x81\xac\x0e\x0b\x78\x97\x97\xb2\x50\xc2\xd5\x91\xb3\x22\x94\xb3\x47\x40\xb9\x00\x31\x7c\x58\x16\xb3\xb2\x84\x32\x22\x94\x27\xda\x3c\xc2\x80\x72\xe5\x17\x20\xfb\x48\x20\x46\x88\x72\x56\x4d\xa2\xfc\x50\xa2\xcc\x86\x88\xbc\xd0\x00\x4d\xfe\x5d\xaa\x01\x82\xcd\xb5\x79\x80\xba\x18\xb8\x46\x58\x22\xa5\xce\x8c\x87\xc6\x60\x65\xe2\x64\x44\x11\x67\xab\xe3\x88\x22\x9e\x7d\x0a\xcf\x95\x71\xd3\x12\x16\x10\x0a\x1c\x83\x25\x65\xc4\x02\x67\xeb\x98\x88\x05\xce\x56\xb5\x11\x0b\x3c\x3f\x50\x97\xf0\x4f\xd8\x8c\x07\x03\x6c\x2a\x26\xa6\x86\xa3\x5c\x2a\x22\x62\x79\x67\x07\x7e\x40\x59\x3c\x7a\x48\x60\x32\xb9\x47\xb0\x2b\x89\xd6\x8c\xd6\xb5\x65\x15\xd1\xb9\xb3\x47\xa1\xb2\x53\x8d\x35\x35\xc0\xf4\x5c\x24\x17\x23\x3e\x37\x0c\xc5\x2b\x65\x06\xe8\xb6\xe8\xd5\xe8\x80\x5a\x36\x19\x44\xe4\x66\xd9\xd0\x33\x23\x72\x83\x45\x5f\x84\xe4\xbe\x2c\x91\x08\xc9\xcd\xaa\xfe\x90\x11\x92\x3b\x3f\x10\x5e\x3a\x13\x92\x7e\x12\x71\x97\x11\xb0\x3b\xbf\xf6\x0c\xb0\x4c\xb2\x3d\x20\x62\x77\xbe\xa0\xa5\x9f\x92\x74\xb6\xbd\x03\x21\xbb\x5d\x11\xfc\x19\x21\xbb\xf3\x03\x3f\x40\x14\x9f\x49\x65\x10\x03\xc2\x21\xe2\xa1\xb2\x95\x50\x04\xe9\x66\xdb\xf5\x10\xa4\x3b\x7b\xf4\x90\x40\x89\x09\x1a\x2e\xfe\xea\x73\x6b\x90\x29\xb8\x4d\xfe\xec\x63\x04\x61\xb9\x21\x98\x7b\x32\x0c\xcf\xc7\x0a\x8c\x7c\xc9\xbc\x6f\x3f\xb0\xa7\x84\x15\xc8\xce\xcd\x1d\x42\x76\x2e\x92\x26\x10\xf6\x1a\x86\x8f\x90\x63\x11\x8e\x3a\x3c\x0a\xb8\xb3\x40\x44\xdc\xea\xf0\xd1\x7a\xd0\x68\xe4\x1e\x0f\x22\xc1\xeb\x0e\xf3\x67\x56\x55\xdf\xfc\x1c\x50\x84\xdd\xa6\xc9\xcc\x2b\x7b\x82\x93\x49\xae\x43\xa8\x69\x78\x61\xf1\x5c\xa4\xea\x0f\x2a\x87\x14\x50\x67\xe7\x03\x2d\x2d\xf2\xd6\x6d\x47\x67\x70\x69\xf2\x99\x72\x52\x6e\xf3\xb4\x4e\x12\xab\xb9\xe7\x89\x40\x35\xb3\x0d\x8a\xcf\xde\xf4\x27\xa5\x1c\xcb\x20\x17\xd8\x86\x31\x7f\x81\x1c\x8d\xc8\x6b\x61\x5a\x30\x5e\x74\x18\x98\x80\x2f\xa8\x04\x3e\xc7\x50\x4e\xb3\xfb\xd0\xb9\x40\x7e\x3e\x38\x2f\xf0\x63\x6f\xe9\x0b\x5c\xc4\x87\xfd\xc5\x39\x99\xcd\x4c\x79\x3a\x55\x33\x64\x0a\xd0\x26\xa6\x29\x40\xb7\x6a\xe2\xb8\xa1\xd4\xb8\x43\xca\xcf\x96\xc0\x9f\x29\x3f\xa7\xf6\xea\x80\x32\x8e\xf1\x7e\x23\xec\xdc\x20\xde\x18\xd1\x2b\xf9\x70\x13\x4b\x5e\x7e\x20\xfe\xa6\xe6\x49\x3f\x44\x9b\xb4\xc1\xe7\x81\x65\xc7\x7c\x60\x8a\xbf\x29\x0f\x77\x89\x5d\x5c\xdd\x41\x47\x92\xae\x26\x41\x17\xf8\xeb\xfb\x85\x25\xed\xf2\x25\xe1\xfa\x9c\x7b\xb0\xf4\xde\x22\x0f\xca\xf8\x7c\x94\x80\xc2\x4a\x59\x9b\x0c\x6c\x05\xe1\xc1\x73\x8f\x24\x3d\x80\xd5\xa1\xf8\x05\xc2\xd8\xd5\x6e\x84\x21\xeb\x01\xcc\x0e\x1f\xcd\xa5\x6c\x30\x94\x5a\x29\x2f\xdb\x46\x51\xcf\x2f\x50\xc0\x2d\xee\x61\xae\xb5\x0e\xa9\xb2\x41\xc0\xad\xca\xbf\x29\xdb\x94\x70\x8b\x0c\x99\x05\x15\xbd\xe6\xb4\x05\x64\x00\x01\x7f\xb6\x48\x41\x90\x73\x7a\x4d\x22\x50\xa5\xfd\x88\x34\x05\x85\xbd\xb2\x02\x4e\x0b\x4a\x79\x85\x51\x3d\xc2\x9a\xa5\x5f\xa0\x14\xd5\x05\x34\x25\xe0\xea\x1e\x49\xe1\xfe\x9d\xa2\xe0\x47\x66\x29\xac\xf9\xd5\xa2\x11\x15\x2e\x8e\x61\xa8\x11\x7a\xd6\x3d\x26\xe4\xae\xf0\x13\xf7\x50\xd9\x22\x51\xa0\xde\x11\x9f\x98\x0c\x2f\xb2\x24\x75\x71\x42\xd9\x90\x25\x39\x8a\x56\x29\x72\xdd\xb5\xce\x91\x9a\x99\xd6\x20\xf2\x84\x49\x9a\x70\xc4\x16\x7f\x75\x00\xf1\xe6\xf5\x01\x11\xe2\x01\x0f\xa4\x9d\xfa\x77\x6a\x08\x06\x70\x8a\x60\x9b\x97\x88\xb1\x4e\xc9\xab\x9e\xd6\x06\x14\x88\x94\xe7\x83\x41\xfa\x04\xa6\xa8\xcd\xc4\x3d\xf7\xb0\xd6\x44\x18\x46\x64\x74\x32\xa1\xc1\x73\x55\x9b\xf7\x4b\x26\x16\x45\x48\x19\xe6\x9a\xea\xf6\x02\x41\x43\x64\x48\xae\x5d\xb3\xa6\x34\xde\x44\x05\x19\x58\x6b\x9a\x75\x66\xad\x25\xff\xce\xdd\x93\x0c\xd2\xda\x2d\x06\x89\x2a\x43\xf3\x1b\x38\xb3\x82\x26\x55\xc0\xdd\xfd\x7b\x59\xc4\xaf\x31\x0b\x96\xda\x84\x08\x7b\xad\xdc\xc3\x65\x2b\x6b\xa9\xdd\x03\xcf\x4d\xe3\x8d\xe2\x75\x13\x4c\x53\x9c\x4e\xdb\xab\xc7\x87\x40\xeb\x83\xca\xb5\x4b\xc2\x0b\x72\xf8\xc6\x8b\x3c\xea\x82\x52\x7d\x56\x7a\x22\x05\x75\xa5\xf5\x30\xf9\x01\xf7\x68\xd2\x72\x57\xca\xaa\xc9\x5d\x80\xc4\x9a\xc7\xe0\x8e\x4b\x5a\xbe\xc6\xf5\x57\x0f\x4b\x7e\xce\x5a\x8e\xc6\xc2\x6d\xfe\x00\xb9\xc5\x51\x13\x85\x3c\xbd\x19\xd7\x8d\xb1\x3c\x82\x71\xf9\xad\x4c\x92\x8d\xeb\xef\x36\xaa\xd9\x79\xf1\x3a\x17\x4f\x03\x2e\xf1\x39\x8b\xc6\x69\x15\xee\x6e\x53\xc0\xc8\x1a\xb2\x53\x37\xf2\xac\x3b\x49\x2a\x0b\x2d\x1d\x67\xab\xa9\xbe\x2f\xd1\xce\x83\x52\x60\xf0\x6a\x2d\x01\xd6\x2c\x9a\xfe\xf0\x22\x3c\x50\x3e\x1d\xc2\xdb\xa0\x1c\xd4\xfd\x60\xad\x9e\x26\x3e\x20\x07\x79\xb9\xa7\x80\x9a\xb2\x59\xf8\x00\x89\xbd\x3a\x38\x08\x82\x5f\x38\xd9\xa3\xa0\x5e\x12\x6a\xd5\x27\x3b\x69\xcc\x3c\x7a\x5f\x34\xa6\x69\xec\xb4\xeb\x19\x9b\x3b\x3d\x0d\x6e\x5f\xd0\x2b\x05\xe5\x41\x93\x97\x71\x77\xc0\x78\xfa\x6a\x83\x41\x98\x87\x1f\x38\x68\xba\x10\x75\xd0\x06\x21\x18\x91\x5b\x95\x3d\x89\x25\xa2\xfa\x3c\x3e\x48\xb3\x3e\x58\x18\x68\xb0\x09\x0f\x27\xd7\xc6\x0c\x82\xf6\x5c\xb3\xa0\x93\x56\x38\xb3\xc1\x93\x9a\xa9\x81\x5c\x61\x94\xee\x81\x76\x90\x57\x17\xc4\x75\xfe\xd9\x51\x84\x74\xa7\xf8\x82\x90\x1c\xcb\xd4\x81\x7c\x27\x25\x50\x97\x0d\xf6\xdc\xda\x3c\x1e\x3c\xc4\x75\x68\x19\x2e\xea\x43\xe6\x27\x17\xa7\x30\x34\xa7\xab\xa0\x28\x81\x7b\x00\x4f\xf3\xce\xbe\xe0\x8a\x7c\xbd\xcf\x92\x7b\x9b\x5f\x40\xd6\xaa\x77\x32\x2d\xb8\xde\xf9\x17\xd5\x1d\x6f\x92\x9b\xa4\xe0\x03\x6d\x89\x9c\xa6\xbf\x1b\xb4\xe0\x31\xef\xcc\x17\x34\xad\x1b\x7b\xd9\x78\x61\xc0\x42\xf2\x66\xbf\x91\x7a\x6a\xe1\xeb\xa6\x6f\xdd\x87\xec\x4d\x5b\x4e\xf6\x18\x30\x64\x18\x73\x37\xa6\xf1\x02\x92\x5b\x3b\xeb\x01\x8c\xba\x45\xc5\x58\xcb\xf6\xd0\xae\x66\xc6\xcb\xe2\x1b\xcd\xe4\xf2\x70\x1b\x19\xb9\x0f\x77\xbf\x06\x7d\x38\x2f\xd1\xd3\x43\x1e\x65\x0a\x7c\x20\x2b\x0c\x0f\x41\x16\xe5\x79\xc1\xb4\x5b\xbd\x3a\xcf\xda\xdb\x9f\x2e\x59\xe3\xb3\x7e\xd4\xaa\xc2\x78\xad\xaa\x9b\x7f\x0a\xef\x17\x52\xae\x43\xe1\x6d\x42\x55\xd7\x3f\x14\xde\x26\x34\x24\xe0\x17\xde\x26\x94\x65\x9c\x2b\x81\xa6\xdb\xe1\x17\x28\x3e\x88\x91\x86\x25\x87\x8a\x2d\xe2\x9a\x9f\x68\xf9\x22\x40\xcc\x54\x19\xcc\x12\xe0\xa1\x57\xd4\x42\x41\xdd\xd0\xac\x42\x55\x25\xac\xe8\x0a\x0f\x19\xa8\x47\x25\xb5\xc9\x1e\x8c\x07\x88\x9d\xf1\x63\xaf\x29\x61\x89\x9d\x62\x93\xb8\xd3\x67\x3e\xd0\xbc\x21\x55\x2a\xf6\xab\xa0\x56\x69\x56\x39\xa8\x12\x22\xf7\x9a\x88\x0e\x97\xeb\x24\x55\x53\x2d\xbc\x3b\x27\x58\xc0\xc0\x55\x39\xf3\x81\x10\x97\x90\x80\x1b\xfc\x02\x39\x90\xa4\x1c\xdc\x95\x33\xbf\x50\x9f\x69\xc5\xa0\xfb\x8d\x06\xa8\xfc\x02\x29\x5f\xe2\x21\x6e\xc6\x99\x5d\x08\x55\x89\x98\x30\x10\x07\xda\x42\x04\xdc\xf2\x0a\x9f\x2a\xbc\xd2\x46\x65\x40\x4a\xa0\xa1\xd5\xd2\x02\x6f\xb5\x51\xa5\xda\xc2\x4b\x6d\x74\x63\x41\xe1\x9d\x36\xc9\xb3\xce\x28\xab\xe0\xc5\x86\x9b\xbe\x6a\xfb\x23\x60\x30\x36\x2f\x7e\xa6\x06\x21\x2c\x65\x58\x64\x86\xdb\x2c\xe6\x6c\x00\x59\x17\xc6\xfd\xc3\x7e\x62\x5a\x81\xd9\xd6\x42\x1a\xe2\x11\xe7\x84\xd4\x01\xec\xb6\xd1\xa4\x51\x22\x3a\x14\x40\x85\x2b\x2f\xe1\x03\x57\xd8\x64\x95\xec\x2a\xac\x12\x5b\x15\x73\x54\x70\x61\xcd\x7c\xe0\x37\x68\xdd\xe8\xee\x73\x47\xf1\x19\xb7\x4f\x56\x2b\x50\x7b\xf1\x23\x8d\x59\xe9\x64\x1a\x82\xba\x12\x4a\xa1\xa5\x92\xd9\xfc\xc4\x45\x54\x70\xcf\x8c\x6b\xed\x14\x5e\x33\x13\x2c\x3e\xe1\x9a\x99\x80\xdc\xda\xcf\x03\xac\x92\x18\x2a\xae\x91\x71\x75\x9e\xc2\x6b\x64\x86\xb8\x23\x6e\x91\xc9\x9b\x37\x64\x45\x75\x1e\x33\xa6\xc6\xa3\x4c\xef\x33\x62\x3c\x99\x0c\x1a\x35\x70\x09\xcf\x61\xd9\x68\x05\x11\x2e\x84\xd1\x2d\x17\x25\x30\x2c\x5b\x3a\x08\xae\x83\x49\x32\x07\x15\xde\x07\xf3\xe6\x3a\x8d\x91\x99\xa6\xac\xc6\x58\x3a\xc1\xdc\x68\xc0\x94\x94\x12\x20\x85\x2a\x6b\xb7\x84\x1e\xdf\x25\x89\x4a\xe8\x6b\x12\x1a\x62\xd9\x6c\xcd\x13\x3a\x10\x5f\xdc\x03\xef\x04\xf0\x07\x28\x8a\x14\x3d\x22\x4e\x00\xa9\x03\x01\x65\xd9\x5a\x32\x63\xeb\xa0\xfe\xe8\x0e\x20\x17\xbd\x7e\x5f\x73\x30\x04\x28\x8b\x14\xd5\x1e\x28\x1b\x21\x21\x27\xc0\x06\xab\xe0\xc0\x82\x8a\xc6\x49\x59\xf8\x05\x25\x8d\xb3\x22\x01\x4b\x18\x8c\x62\x71\x7f\x4c\x46\x31\xc3\x81\x89\xf5\xc5\xbb\x99\x3f\xea\x0e\x61\x1f\x2d\x66\x48\xb0\x8f\x66\x59\x9c\x4a\x40\x70\x42\x4c\x6e\x2f\x2c\xbb\x07\xec\x47\x29\xc0\x01\x85\x0b\xac\xad\x86\xbd\xe2\x77\x2d\x13\x0a\x15\x28\xa3\xa4\x84\x29\xdd\x26\xcb\x1f\x01\x39\x17\x2d\x99\x27\x22\x3a\x41\xf1\x59\x25\x40\x9a\x55\x10\x5d\x41\x00\x73\xb4\xc2\x1d\x0e\x9c\x67\x26\x4d\x58\x60\xbb\x67\x30\xa5\xdb\xbc\x99\x81\x1c\x8b\x8b\xbb\xc3\x9d\x0f\x34\x85\x83\x92\x66\xf1\x10\xa8\x7e\x25\x01\x39\x1c\x30\x92\x18\xcb\x07\xb9\x9c\x0c\x1d\xb8\x8c\x68\x3e\x50\x97\x27\x8d\x97\xe6\x73\x2c\xcc\x66\x46\x79\x62\x16\x3e\x11\x61\xb3\xcd\x5e\xd8\x73\x41\xed\x0f\x40\xbc\x12\xd3\xc2\x49\x4f\x8e\x37\xf9\x79\xe0\x28\xd0\xbc\xa7\xfc\x9c\x86\x67\xc9\x82\x00\xd5\xbf\x53\x5f\xf6\xd9\xc3\x10\xc9\x17\xef\xbe\xd6\xac\x04\x03\x43\x1c\x2c\xe6\xe3\x8a\x23\xfb\x91\x0b\x2f\x34\x1a\x2f\x56\x07\x9b\x6b\x34\x67\xbb\x50\x6d\xd6\x88\xbb\x18\x3c\x23\x20\x99\x3a\xf5\xe2\x54\x17\xa1\x34\x9b\xb8\xb7\x77\xe5\xb1\x12\xa6\x48\x9c\x9a\xb7\xd4\x4d\xc9\xd1\x5b\xe0\x5e\x40\x6b\x5a\x37\x50\x6d\x46\x03\x81\x77\xf8\x50\xbe\x89\x69\x77\x80\xda\x69\x3e\x4e\x6e\xb8\xfc\x7d\x46\x43\xfc\x8d\x16\xc8\x6e\x4a\x3f\x52\xa7\xc2\x43\x90\xf5\x01\xa4\x5d\x5d\x3d\x50\xc2\xb3\xf0\x2c\x7a\x7b\xd6\x26\xf4\x03\x3a\x2f\xcb\xcf\x0e\xa0\xa7\xbc\x8b\xb1\x95\xf0\x30\xfd\x45\x13\x7a\x68\xc4\xb0\xe0\x03\x1b\x70\x34\x71\x3e\x08\x8e\x33\x46\x1e\xba\x07\x84\xe3\x07\xc6\x53\xaf\x32\x2c\xc0\x8a\xbd\x29\x28\x64\xee\xea\x6f\x05\xa5\xcb\x63\xd1\xfb\x71\x03\x4f\x11\x13\x62\x2d\xf3\x61\x3e\x8a\x5a\xe6\x49\xe1\x42\x05\xf9\x06\x51\x21\x50\x25\xf2\x12\x4e\xd1\x3a\x6b\x97\x2b\x50\xb6\xa0\x74\x79\x56\xe8\x4c\x89\x2c\x5f\xa7\x15\x41\xe9\xf2\xa0\xf2\x30\x25\x32\xcc\x55\xc1\x3d\x85\xc5\xcb\xb3\xee\x6a\x2c\x91\x52\xb5\x8c\x0f\x11\xc9\xde\x0a\x78\x28\x91\xe1\x0b\x0a\xae\x29\x11\x81\xaf\xca\x0e\x2d\x31\x50\x4a\x19\x7e\xe1\x02\x19\x0a\xe6\x48\x2a\xd0\xa9\x1f\x23\x43\x09\xfc\x02\x4a\x8a\x05\xff\x5e\x89\xb5\xac\x07\x90\x5f\x8b\xdb\x6b\x37\x16\x3d\x18\x88\x27\x14\xd0\x30\x97\xca\x5b\x5c\xe2\x0a\x90\x30\x9e\x23\xf1\xa6\x76\xc2\xc2\x1a\x44\x94\x81\x8b\xc6\x52\x5a\x0b\x29\x98\x13\xc3\x81\xfd\x02\x48\x4f\x47\x34\xca\x54\x04\x5d\xcb\x52\x50\xa6\x22\xc7\xd7\xef\x0c\x76\x70\x7f\x94\x4f\xdd\xa6\xa5\x52\xa4\x1c\x19\xa9\x20\x66\x8f\x3a\x12\xd9\x9b\x37\x2e\xe3\xa9\xe4\x92\x98\xe1\x45\x8a\x6e\xaf\x62\xad\x02\x81\xd6\xd1\xec\x17\xe6\xba\x35\x23\x31\xe3\xcc\x97\x8e\x1e\x29\xc0\x4a\x58\xe3\x5d\x68\x4d\xf1\x3e\x05\x77\xa1\xa5\xea\x65\xfb\x08\xb4\x42\xc2\x12\x68\x87\xdf\xe0\x89\x65\xda\x29\xbc\x05\x4e\x30\x30\xf7\xd1\x8c\x38\xe2\xc6\x0b\xdb\x04\x71\x17\x5a\x8e\xde\x91\x85\x27\x98\x78\x02\xaf\x42\x1b\xaf\xa5\xad\x4b\x52\xd0\xbc\x98\x59\x24\x63\x19\x32\x7c\xa2\xbd\x15\xb8\x19\x2d\x25\x0f\xb1\x6c\xa7\x46\x3d\x62\x11\xe2\xab\x03\x50\x5f\x35\x08\x6b\x12\x7e\x40\x05\xdc\x6b\x55\x19\x75\xa4\x17\x50\x96\xac\x78\xd6\x0d\xe2\x95\x67\xdd\x78\x65\xa8\xdb\x20\x57\x69\x99\xb8\xd2\x2c\x47\x53\x1f\xaa\x92\x59\xca\x8d\x94\x7a\x15\x70\x51\x70\x1b\x59\x96\xb3\xad\xc4\x86\xb5\xf7\x07\x9d\x76\x31\x2f\x65\x5f\x8c\x45\x43\xb2\x7c\xb0\x0e\x44\x5e\x3d\xd6\x14\xbd\x53\x62\x5f\x04\xea\x07\xcc\x3e\x72\x97\x1d\x30\x08\x09\x1d\x9b\xda\x7b\xb0\x2f\x62\xf1\x07\x6b\x8f\xf8\x0d\xce\x42\xd4\x44\xa9\x54\xa2\x06\x2a\xa7\x64\x1b\xfb\x99\xba\x95\x53\xfd\x49\x64\x76\x41\x5d\x95\x6c\x97\x53\x5c\x32\xab\x8e\x3b\x94\x45\x89\xc1\xba\x02\xca\xa2\xb8\x38\x68\x41\x55\x94\x9e\xbc\xe9\x07\x9d\xf2\x9a\x31\x84\x5a\x9b\x1b\x50\xf2\x24\x2b\x31\xbf\x44\xe6\x7f\xaa\xfa\x59\xc1\x85\x05\x73\x44\x3f\xa8\xdf\x5f\x5d\x77\xfb\x96\xb8\x37\xbe\xa0\x29\xef\xa8\xbf\x29\xa1\x13\x45\x53\x92\x0d\xa2\x91\xb7\x2a\x49\x42\x64\x11\x94\x62\x94\xe1\x92\xa5\x60\xcb\x40\x3c\x90\x22\x60\x26\x00\x1b\xed\x8b\x91\x51\xaa\x95\x98\x13\x0f\x2a\xea\x5a\x93\x03\xaa\x88\x8f\x50\x9a\x68\x6d\x4a\x88\xc7\x4a\xd3\xff\xb4\xcf\x0d\x53\x74\x1b\x8b\xec\x23\x16\x05\xac\x9a\x49\xfb\xe4\x76\xf6\x71\x73\xc2\xcd\x20\x41\x3e\x32\xaa\xc0\xaa\x3b\xee\x58\x73\x10\x70\xe1\x15\x6b\x59\xd1\x73\x05\x57\xac\x25\xe5\x4e\x17\xde\xb1\xd6\xd2\xeb\x01\x83\x8f\x4c\x99\x08\xca\xb5\x78\x18\x61\xb4\x0d\xb6\x3f\x44\x46\xe1\x6e\x1e\xf4\x62\xa1\x52\xb3\x21\x5c\xd9\x12\x2c\x5b\x30\x4c\xd7\x06\x85\x08\xab\xed\x0b\x71\x17\x8d\x74\x3e\xca\x11\xa8\x1b\x7d\x6a\xf2\x2e\x37\xcf\xfb\x1a\x28\x9e\xe8\xdf\x0f\x60\xda\x03\x9c\x1c\x51\xa8\xbe\x70\xd2\x67\x4f\x02\xcc\xd8\xa7\xec\x05\x67\x9a\x89\x89\x22\xae\xcf\xb4\x95\xaa\x64\x08\x61\xf5\xad\x66\xff\x30\xfa\xda\x74\x1e\x6f\x6e\x00\x0d\x40\x11\x38\x9a\x51\xde\x50\xda\xba\x3b\x68\x2c\x2c\xad\x76\xe7\x07\x9a\xe3\xcd\xd8\x4b\xef\xc9\x9b\x9b\xd8\xf4\x73\xaf\x59\x0b\x88\x87\x86\x4a\x1f\x08\x34\xf2\xda\x12\x19\x19\xbb\x60\x46\xf5\xb0\x28\xb0\xa0\x78\xd6\xd2\x09\x4c\x0a\xb6\x3e\xa3\x9e\x45\x92\x82\xea\x21\xc3\x36\x2b\xa0\xe4\xea\x89\xe1\x46\x84\xda\x3c\x0f\x1a\x79\x7d\x28\x3d\xc8\xe2\xd0\x90\x2c\x56\xa4\xea\xd8\x25\x21\xe7\x4b\xb9\xe6\x05\x29\xa9\x29\xca\x7c\x85\x62\x46\x73\x92\x41\x0f\x20\xb5\x65\xbf\x00\xd4\xeb\xe0\x45\xed\xa2\xa9\xf1\xf8\x03\xf0\x77\x61\x05\x75\x88\x62\x88\xe2\x9f\x89\xb5\x99\x87\x41\x78\x50\x3b\x59\xbf\xb3\x16\xb3\xa6\x98\xc2\xc2\x7b\xd4\x83\xc4\x1e\x35\x24\x4c\xc4\x2f\x10\x20\xcc\xda\x25\x80\xca\x45\x49\x17\x3b\x94\x44\x59\xd6\x96\x94\x44\x13\x71\xf1\x0b\x28\xc7\xfc\x1a\xf1\xe0\x07\x42\x23\x02\x13\x6a\x7f\x01\x0d\xa9\xca\x78\x44\x1e\x58\xb0\xa9\x24\x21\x11\x6c\x4c\x16\xfd\x83\x43\x28\xa1\x5e\xb3\x8f\xd9\x14\x69\x11\x6b\x6a\x27\x00\x28\x78\xa6\xac\xdd\x75\xd1\x73\x41\xe1\xa4\x39\xbc\x1f\xa0\xfc\xaa\xf6\x28\x0b\x21\x0d\x33\x78\xdc\x30\xe8\x04\xaa\x92\x18\x39\xa0\x1b\xe2\x0a\x2a\x25\x39\xc1\xa8\xb0\x52\xd2\x88\xaf\x07\x84\x49\x48\x4c\x14\x1c\x65\x5a\x41\x65\x24\xe7\xca\x14\xd4\x3e\x4a\x59\xfa\x3a\x6b\x1f\xe9\xc6\xa7\x82\xd2\x47\x2f\x51\x17\xa5\x8f\x26\x48\xc2\x4a\x5a\x93\xf0\x90\x54\x5d\xab\x1f\xcc\xed\xf0\x5a\xb7\xbc\x01\x04\x0d\x99\xc3\xbb\x4e\x77\x41\xa9\xa4\xd0\x1c\x81\x82\x84\xec\xd8\x4c\x5a\x19\xa4\x16\xfc\x3b\x0b\x7f\x6b\x8e\x10\xc7\x75\xb3\x66\x61\x6d\xa5\x61\x52\xcc\x2c\xfc\xad\x29\xa0\x2e\x72\x7e\xf5\x47\x5f\x44\x35\x84\x34\xee\x68\x87\xa3\xf8\x92\xc3\xef\x0b\x8a\x2d\x25\xfb\x26\x50\x6c\x29\xaa\x16\x6e\x49\x0c\x24\x96\x30\xce\x52\x4b\xd5\xfb\x13\x95\x8c\x2d\x13\x26\x48\xef\x43\x8a\x5f\x62\x20\x83\x72\x2a\x4b\x82\x79\x5a\xc1\x77\x25\x15\x6e\x8e\xe4\x07\xe7\xbb\xd8\x79\x49\x10\xde\x2d\x17\x27\x04\x36\x34\xef\xae\x25\xaa\x4b\x0c\x4d\x10\xd5\x6b\x37\xd6\x11\xd7\x30\xec\x98\x48\xab\x38\x83\x60\xaa\x64\x9c\x06\xb2\xfe\xae\xc0\x7a\x49\x95\x68\xf4\x34\xeb\xa2\x1d\x41\x59\x09\xa5\x87\x40\xc9\x44\x53\x42\x5b\xb7\x40\xaa\xbd\xae\xb6\x57\x3b\x62\x0b\x6a\xc4\xc6\xb0\x47\x61\x05\x36\xeb\x6a\xca\x80\xc9\x7a\x78\x7f\x35\x64\x9a\x9a\x4d\x36\x56\xd4\x14\xd6\x98\x2c\xf7\x06\x80\xe2\x88\xf1\x8e\x30\x63\x45\x88\x17\x94\xc0\x0a\x49\x97\xa0\x97\xd4\x56\x11\x71\x8f\xc1\xb2\x18\xc2\x01\x6c\xd6\xc9\x8c\xb5\x93\xd3\x9a\x98\x3a\xca\x44\x4b\x1f\x4e\xbc\x1a\xc4\x27\x31\xaf\xfc\x0c\xb6\x3d\x26\x94\x2d\xcc\x5e\x39\x26\xbc\x59\x24\x42\x5d\xad\x6c\x61\x17\x75\xb4\xd2\x30\xbd\x0e\xce\xdb\x5b\x06\x05\x42\x86\x77\x08\xa2\x6e\x6b\x37\x3d\x41\xde\xee\x9e\xd5\x8e\x4d\x6f\x26\x80\x3a\x3a\xc1\xc6\xcb\xb4\x04\x6e\xe3\x7a\xc7\x2e\x37\xf7\xdc\x09\xa3\x60\xda\x91\xe3\x60\x76\x8c\x5b\x3c\x6c\xd4\xe3\xc5\x5b\xc3\x22\x54\xe2\x25\x1e\x4a\xeb\x2d\x09\x66\x64\xc7\x7a\xa4\x1d\xd4\x27\x31\x30\x31\x90\xd7\x22\x0f\xaa\x7b\x65\xfb\x66\x59\xcd\xcb\xbe\xf8\xc4\xe2\x0a\x3e\x35\x8f\x35\x27\xf5\xc8\x28\x8a\x9f\xe5\xa7\x96\x74\xd4\xf7\x05\x04\x25\x1d\x6b\x83\xf9\x01\xcf\x50\x1f\x51\xc7\x9a\xb3\x90\x76\x50\x56\xf1\x0b\x14\xf9\x8d\x25\x14\x76\x69\x8e\x46\x49\xbc\x2f\xc4\x42\x59\xa2\x5d\xba\xb9\x8d\x23\xc6\x27\xca\xd9\xdf\xd7\x22\x94\x74\xb2\xac\xb4\x40\xa0\x91\x59\x56\x2f\x54\x2c\x4b\x5d\xba\x26\x2a\x96\xc5\x66\xa6\x00\x1b\x73\x36\x6d\xe2\x2a\x58\x3b\xaf\xd3\x92\xe7\xe5\xee\x46\x49\xb3\xe8\x58\x51\x5e\x04\xdb\x1c\x2a\x90\x90\x45\xf7\xa2\x1c\x04\xfd\x3a\x4a\x28\x5d\x54\xd4\x04\xe1\xc5\x78\x2c\x63\x6d\x4a\xe7\x29\x9b\xfa\xa7\x30\xde\x6d\x55\x4b\x17\x37\x5c\x76\x8f\x38\xc8\xdd\x23\xd2\xe6\x86\x85\xcc\x04\x71\xdc\xc6\xc4\x04\x69\xbc\x99\x34\xef\xf4\xbe\x5b\xa2\xa4\x7b\xd5\xf6\x52\x9b\x35\xb6\xfc\x3b\x0d\x25\xcd\x2f\x50\x1b\xb5\xcc\x78\xe3\xe0\x37\x29\xde\xc8\x06\x37\x9a\x21\x8c\x0f\xb3\x25\xa4\xdd\x55\xd3\x32\x64\xf3\x6c\xac\xc3\x62\xfd\x42\x22\x02\x36\x5e\xdb\x17\x01\x1b\x76\xdf\xa3\x66\x4a\x54\x69\xcc\x92\xa6\x24\x1f\x6d\x30\x48\x30\x60\xbf\x64\x5e\xd8\xaf\x5f\xb2\xdb\xaa\x7f\x66\x3a\x78\x98\xfd\xd5\xfc\x06\x70\xf0\x1a\x01\x52\xb1\x39\xcc\xd3\x31\x82\xdb\x10\x30\xb5\x9b\x70\x3d\xf0\x2b\x2e\x2b\x33\x67\xce\x26\xe6\xcc\x58\x0d\x4d\x31\x23\x54\xc3\x28\x41\x15\x98\xa8\xe2\x9d\x25\xa3\x60\xa8\x0a\x8e\x94\x8c\x0b\x54\x94\x4e\x5a\xf2\xb6\xae\xde\x52\x1b\x89\xcd\x9b\x01\x80\xa3\x5c\x13\xca\x88\x2f\x56\x22\x75\xc9\x48\xa0\x1b\x06\x18\x09\x74\x8e\x55\xcc\x14\xda\xb5\xb3\x72\x60\xfd\x69\x9d\xd8\x39\x50\xd1\x88\x7e\x83\x1a\x99\x8c\xde\x19\x61\x19\x56\xae\x73\xc0\xaa\x6b\x55\x73\xe0\x2d\x47\x12\x44\x72\x60\xd1\x35\xe1\x28\xe2\xbe\x26\x89\xb4\x39\x92\xef\x8b\x1d\xe4\xb8\xd6\x55\xb3\x44\x31\x06\x6b\xba\x79\x05\xf0\x36\x77\x49\x63\x90\x76\x5b\x46\x04\xef\xbb\x4d\x2e\x18\xdd\x05\xaa\xfc\x55\x8f\x09\x5a\xcd\xee\x91\x2c\x45\xdb\x31\x33\x47\xcf\xca\x49\x46\x24\x48\xb2\x5c\x9c\x91\x82\xf7\x82\x7a\x5d\x3e\xe2\x1e\x06\x4e\x27\xad\xcd\x94\xa3\x93\xdd\x17\x19\x51\x1d\x8e\xd9\xc9\x89\x88\x75\xff\x58\xeb\xec\xfe\xb0\x9d\x6c\x31\xc8\x94\xa2\x8d\x26\x56\x67\xd0\x51\x90\xf3\x2a\x53\x28\x08\x32\x35\xe1\x9f\xf9\x7f\x32\x82\x42\xaa\x69\x3f\x93\x9f\x78\x61\xa7\x50\x9d\x54\xda\xa0\x64\x46\x85\xbc\xc6\x67\xad\x71\x77\x70\x12\xa5\xee\x80\x39\x00\xaf\x1e\xb8\x2a\x06\x78\xad\x8a\x5e\x80\x94\xfd\x5a\x25\x58\xc5\x9d\x6f\x5d\x72\x21\x1f\xd6\xd9\x92\x0b\xf8\xb0\xbf\xa8\x54\x2d\x0c\xd5\x32\x40\xcb\x52\x9f\x97\xc5\x59\x22\x65\xae\x6b\xe2\x02\x0b\x81\x16\xaf\x95\xaf\x94\xcd\x4d\x1a\x15\xf6\x02\xf3\x95\xba\xe4\x0e\x3f\xa0\x91\xda\xbb\x0c\xe9\x70\xc9\x13\x85\x0d\x5a\x57\x47\x97\x8c\x9a\x0d\xe6\xf6\xb9\xd1\x95\xd7\xfc\x00\xb2\xd2\xab\x43\x50\xa7\x41\xa2\x5c\xeb\xc5\xa3\x94\xea\x59\xb7\x95\xbb\xab\x36\x39\x8f\x90\x40\x19\xb5\x7b\x1b\x77\x42\x2c\x00\x18\xee\x6b\xe7\x40\x5e\x52\xab\x19\xc3\x94\x5a\x61\xff\xfd\xb4\x29\x0a\x49\x30\xce\x9d\x30\xbb\x07\x96\x2c\xd8\xfc\xc2\x42\xb4\xd0\x84\xec\x38\x1f\xcb\x19\x85\x22\x1c\x51\x9c\x11\x7a\xe1\xe8\xee\xbc\x0a\x45\x48\xe0\xcb\x28\x14\x91\xcc\x8b\x3a\xc9\x45\xbf\xe3\xc6\x3c\x1b\x23\x51\x4d\x6b\x42\x20\xbc\xc0\xca\x6d\x0f\x5f\x1e\x2b\x20\xd5\x5f\x90\x9c\xbc\xef\x61\x97\xb6\x74\x93\x99\x8d\x66\x7f\x42\xde\x29\x90\x99\x66\x57\xb8\x85\xcc\xba\x19\xe1\x16\xd6\x28\x32\xa2\x2b\x7c\x0e\x66\x0a\xce\x06\x72\x95\x23\x35\x39\xed\x8d\x5b\x51\x88\xdc\x21\x1b\xf8\x60\x41\xb9\xef\x1c\x0c\xc2\x62\xa8\xee\x12\xf4\x63\xcc\xee\xe0\x66\xaf\x49\x2c\x4c\xbb\x07\xd6\x48\x35\x05\x4e\xd9\x3a\xdb\xb4\x9c\x8f\xc5\x71\xd5\xc5\x81\xd3\xd7\x87\x19\x2f\xc7\xf3\x61\xb9\x84\x61\x6f\x9a\x03\x93\x30\x75\xac\x0a\x14\x32\x04\xe7\x83\xba\x9a\x57\x0b\xc2\xf1\x70\xdc\x09\x0a\xc8\xbe\x39\xd2\xc1\x12\xfe\xa2\x87\x03\xf4\x62\x1e\x7c\x30\x08\x4c\xa2\x67\x86\x34\x1d\xdc\xe1\x14\xa6\x93\x2e\x7e\x2c\x19\x21\xce\x96\xd2\x32\x4b\x56\xbc\x36\xe2\xc9\x5d\xe2\x0e\x16\xfd\xb8\x07\xec\x64\x6f\xab\x93\x4b\x27\x10\x21\x7d\x07\x6f\xd4\x93\x27\xfa\xab\xc7\xb5\x34\xc2\x02\x2f\x75\xb0\x92\x9d\x2f\x76\xa9\x17\x6e\x5a\xa1\x3c\x06\x85\x57\xd3\xf0\x8d\x59\x19\x46\x58\x7e\xb3\x8f\xd7\x1b\xc6\x6e\xcb\x4d\x37\xc9\x29\xfd\x48\x0b\xca\x37\xb9\xa5\x99\x19\x25\x4f\xaf\x2b\x25\x4f\xd3\xda\xcd\x6b\x99\xcc\x6a\x58\xef\xe1\xb5\x8f\x1f\xa4\x59\x99\xbe\x57\xac\x84\x79\xcf\x32\x0a\x7b\x47\x50\x56\xf4\x42\x3f\x3c\xcd\x92\xbb\x24\x50\x6e\xf3\x28\xf2\x16\x41\x46\x9b\x2e\xf7\x28\x05\xc2\xa3\x43\x90\x0a\xe3\x17\x6c\xe2\x29\xbc\x8b\x5d\x58\x2d\x30\xf2\xaa\x66\x6e\x61\x59\xbe\x61\x93\x4f\x81\xb8\xd9\xbc\x03\xca\x46\x4b\x5c\xf7\x18\xe0\x6f\xe2\x7f\x85\x02\xa3\x88\xa9\x20\x40\xc1\xcc\xaa\x84\x05\x53\xd1\x03\x54\xcd\x17\xe3\x28\x91\x9c\x24\xf9\xc1\x5a\xda\xa6\x07\x3c\xfc\xe4\xcd\x2f\x94\xbd\x64\xa0\x2f\x28\x97\xa0\x4b\xc8\x4a\x41\x50\x6e\x96\x30\x57\x12\xa5\x70\x6d\xba\x42\x13\xe7\xf0\x0b\xd4\x03\xe4\xea\x28\xc8\xa6\x1a\x2f\xd4\xd2\xe6\x29\x6b\x5b\x41\x80\x80\x77\x40\x49\x34\x9e\x35\xbf\xb0\x48\xce\x6f\x50\x6d\x6e\x7e\x30\x97\x57\x55\xb3\x4b\xa1\x34\x66\x4c\xe7\x45\x72\x7e\x80\x04\x1c\x99\xec\x0b\x6d\x98\xb2\xab\x16\x54\x43\xd0\x55\x2c\xa5\xb0\x56\x96\x37\x76\xc9\x3c\xfd\x9a\x7b\xa4\x96\x6a\x4c\x22\xce\xf6\x85\x87\xbc\x80\x16\xea\x33\xab\x4b\x69\xb9\xcb\xc6\x13\x56\x83\x16\x32\x61\x69\x14\x05\x29\x58\x5d\x0c\xb0\x30\xaa\xc0\x26\x93\x52\x38\x66\x54\x1b\xdb\x40\x66\x1f\xdc\x4c\xde\xaa\x89\x7a\x95\x1f\xf0\x07\x35\xd0\x75\xa1\x2f\x2a\x96\xd7\xf4\xc2\x72\x04\x3e\x6b\x4a\xe5\xf2\x4a\x54\x2e\x10\x66\x1c\xf6\x56\x70\x4f\x97\xb5\xf3\xd2\x18\x2d\xd8\xfc\x02\x2e\x6a\x94\x60\x51\x98\xfa\x6f\xbf\x66\x81\x74\x63\xd7\x6e\xe9\x81\x88\xd2\xf2\x2f\x97\xbc\x89\x72\x8a\x3b\xd9\x26\xe4\x82\xbb\xba\x9a\x11\xd9\xe1\x2c\x0e\x7e\xbf\xe1\x7d\x4d\xaa\xd3\xef\x29\x8b\x1b\xae\x60\x0f\xc3\xb3\x46\x51\x2c\x3b\x08\x71\x05\x7b\xda\x36\x83\xcc\xbd\x6e\x02\xeb\x34\x5e\x49\x41\x28\x2c\xfe\xed\xd3\xad\xb0\x0c\x96\xad\x47\x85\xd9\xfb\x76\x9d\x96\x65\x27\x94\x16\x52\x58\xf8\xca\x7e\xcd\x82\x74\x7d\x1b\x5c\x0b\x0a\x5f\xd9\xed\x5e\x60\x27\x74\xf0\x69\x41\xf2\x53\x31\x11\xc3\x6e\x98\x8d\xc7\xc1\xa5\x11\xa2\x07\xc5\x04\x7d\xbf\x2f\x10\x35\xe0\xbe\x40\x14\xcc\x10\x6e\xba\x37\x1e\x64\x1b\xcb\x32\x65\xca\x36\xd9\x02\x18\x6e\x93\x8f\xad\xfd\xc8\x25\xc4\x9b\xe6\x1d\x81\x59\x70\x23\x96\x43\xe3\xcb\xbe\xcc\xa0\x1e\x9d\xf3\x51\x9b\x35\x36\xbd\xac\xc7\x5a\x03\x21\x80\x77\xd1\x4b\x56\x2b\x07\x0f\x33\xf3\xe4\x93\x32\xa8\xb9\x17\xd3\xa4\x1c\x3b\x58\x20\x43\xe4\xe0\x17\x0a\xda\x1a\xe2\x5c\x1b\xc8\x2f\x80\x18\x0d\xd4\xc9\x83\xa4\xfb\x01\x19\xa4\xd9\xdb\x49\x06\xe9\x1d\x03\x21\xa2\x3a\xc9\xa0\x2c\x9f\xba\x69\xe9\x5a\x5b\x46\x7d\x5c\x0b\x6e\x3f\x00\xdc\x32\x46\xa0\x26\x7e\x7e\x9d\x98\x17\xc5\xb5\xec\x31\xb0\xd1\x83\x3b\xe0\x46\x37\x75\x2e\xbb\x9c\x59\x24\xec\x72\x59\xf2\x58\xb9\x09\x94\x91\x89\x6a\x55\x76\x73\xe2\xf6\xfc\xec\x00\xbb\x72\x2f\xd4\xf8\x01\x05\x01\x1f\xcb\x37\xc5\x29\x1f\x0d\xcb\x65\x2d\x9d\xa0\x3c\xc4\xbf\x8f\x3c\x14\x8f\xca\xd1\x2f\xf0\x64\x37\x11\x20\xed\x48\x25\xad\x4b\x81\xb0\xa1\x4b\x0b\x4a\x41\xec\x64\x36\x63\x7f\xc8\xd0\xc4\x65\xeb\x12\x2e\x24\x7e\xe3\x92\xfe\x38\x24\x6d\xd7\x8d\xc7\xcd\xeb\x8b\xc5\x90\xaa\x1e\x20\x9e\x53\xc8\xaf\x4c\x97\x57\xf9\xe6\x52\x59\xee\xc9\xea\x3a\xeb\xeb\x36\x9f\x71\xb8\xa0\x20\x3b\xbc\xa4\x22\x8b\xc8\x22\x7d\x0d\xf4\xdb\x09\x28\xe4\xae\x5b\x96\xa8\xf4\x10\xdb\xef\x5d\x71\x43\xaf\x8a\x2c\x97\x8a\x9a\xae\xc5\xab\x53\x97\xa9\x48\x67\x62\x8d\xbc\xea\x5b\x40\xc7\xb5\x7c\xfe\x02\x14\xe2\x31\xd3\x9a\x84\xbe\x80\x7c\xe2\xd8\xf4\x3a\xe5\x93\xac\x6a\xf4\xa5\xb2\x9a\x93\x7d\xef\x15\xd7\xda\x3a\x0c\xa8\x32\xbe\xd1\xf6\x82\x0a\x53\x52\x7e\xf5\x48\x83\x97\x98\x68\x85\xfc\xa2\xd2\xd1\xa5\x26\x7a\x63\xaa\xbb\x64\x0d\x94\xe0\x2e\xe9\xa5\x1d\x9e\x06\xb7\xc6\x0b\x2a\xde\x0e\x2f\xd6\x55\xf3\x9a\xa8\x3e\xc9\x64\x34\x3a\xcb\x2b\xfc\xb2\x66\x1b\x15\x22\x4b\xb0\xcb\xbf\x2e\x99\xe5\xf5\xc5\xe0\x20\x7e\xe3\xe0\x03\xcd\x15\x57\xce\xb6\x57\x9f\x24\xa2\xea\x17\x48\xda\xee\x72\xc1\x2d\x7c\x23\x6b\x3c\x4b\xe5\xaa\x53\x64\x69\xce\x4e\xaa\x85\x07\xc4\xeb\x01\xef\x72\x17\x26\x0a\x55\x53\xa3\x9b\x99\x3c\x2f\xd4\x54\xae\xa0\xbe\xa0\x8d\xc8\x12\x47\x45\x55\x7a\xd5\x36\x2c\xb5\xae\x79\x8b\x50\x11\xa6\x68\xcf\x7f\xad\x20\xdc\xe4\xdf\xc1\xc9\x24\xb1\x56\x5e\x69\x30\x11\xf7\x83\x53\xa9\xd6\x85\x13\x01\x88\x9b\x52\x8b\xf8\x77\x45\x4c\x62\x70\xdc\x40\x45\xba\x77\xf1\x29\x58\x91\x8b\xe3\x63\xa8\xe2\x2e\xd4\xd7\x0c\x29\x11\x49\x98\xa8\x9d\x09\x15\x1e\xb2\x2f\xaa\xf6\x17\xa0\x6a\x49\x69\x15\x21\x88\x76\xca\x57\xa6\x7b\xbf\x16\x92\x12\x8e\xa4\x91\x4a\x6b\x8e\x43\x15\x2a\x62\x10\xdb\x1b\x28\xec\x55\x03\x8d\xa8\x41\xdb\xe3\x2b\xac\x31\x2f\x49\x10\xb7\x9b\xb4\x5a\xfc\x02\x44\x68\x8b\x6d\x75\x2c\xbc\xbb\x4b\x9e\x6b\x46\x14\xe3\x08\x6d\xb6\xaa\x3b\x31\xa3\x69\xe0\x12\x4f\x47\x0b\x55\x58\x63\x2c\xd8\xd7\x9d\xdc\xbf\xfa\x41\xe3\x3c\xb5\xf8\xfb\xc2\x8c\xdf\x18\x04\x42\xa8\xd9\x17\x6a\x34\x31\x8a\x19\xde\x46\xbc\x7c\xc0\x52\x4f\x65\x0d\x22\x0b\x56\xf5\xa0\x7b\xff\xf5\x06\x91\xa7\x2e\x0f\xae\x9f\xa0\x62\x51\x22\xdb\xbe\x2a\x8c\x25\x59\xe7\x5c\x3d\x6e\xe6\xd8\x08\x99\x27\x30\x63\x6c\x23\x7a\x30\xeb\x1c\xac\x30\x86\xe8\xba\xe8\x52\xe1\x58\xd4\xed\xc4\xa5\x9e\xeb\x82\x1b\x81\x00\x5b\x47\xf6\x21\x76\x72\x9b\x05\x8f\xb0\x23\x62\xd9\x3d\x12\x4f\x5e\x0c\xde\x5a\x61\x6b\x5b\x3d\xd7\x82\x6b\xda\x27\x2f\x71\x17\xee\xcf\xb5\xde\x7a\xe1\xda\xd8\xa7\xa6\x71\x71\x5a\xc2\xcb\xc5\x69\x68\x08\x84\x02\x66\x9f\x30\x30\xaf\xd8\xe7\x52\x2f\x72\x73\x43\x7d\xc1\x7e\x6c\x32\x46\xcd\x4e\xc7\x95\x56\xc6\x06\x3a\xfa\xa4\x42\xee\x79\x49\x78\xf5\xa2\x57\xc6\x6d\x5e\xe2\xe3\xa5\x81\x3f\xd2\xee\xfc\xca\xe8\x40\xdb\x3b\x2a\xe4\xa0\x61\xaa\xbd\xe9\xea\x0a\x7e\x40\x22\x35\x6a\x6f\x4a\x67\xcd\x7d\x92\x95\xcb\xd8\x55\x61\xa7\xc9\x3e\xf7\xe0\x11\xdc\xbc\x16\x4b\x50\xf2\xe1\x8c\xd8\x3e\xa7\xce\x56\x5c\x9f\xe2\x04\xc3\x4a\xb1\xc8\xc7\xe0\xc3\xa8\x65\x4d\x7b\x8a\x49\x71\x33\x85\x3e\xe0\x17\x3a\x09\xda\x06\x02\xd5\x59\xd3\x36\x94\x9a\x49\x6e\x63\x4b\x88\xa5\x35\x66\x5e\xdb\x14\xd1\x10\x66\x97\xb5\x95\xdb\x46\x80\xfc\xfb\xe2\x2f\x4d\x0f\xc0\xf7\xab\xdb\xa4\xc7\xe6\x1e\x20\xd9\x09\x27\x6d\x5d\x5a\xf0\x21\x9e\x16\x02\xd7\xde\x0f\x70\x28\x8b\xd5\xb7\x00\xea\x7b\x7d\x40\x1e\x28\x21\xb9\x51\xe8\x12\x52\x1b\x32\xb5\xb3\xa8\xaf\xa1\x00\xa6\xae\x88\x2a\x2d\xac\x65\x1c\x3f\x39\x8a\x70\xb9\x41\x72\x10\x5f\x8b\xdc\x2d\xa2\xf6\x86\x20\xba\x34\xc4\x05\x1a\x53\x56\x1c\xef\xd2\x22\xa3\xdb\x3d\xc5\x48\x88\xb5\x0c\x30\x3a\xb9\x2c\x48\x8b\x34\x4a\x08\xa9\xac\xd6\x6e\x5a\x6d\x71\xe7\x10\xee\x81\x68\xef\x86\x0a\x17\x2c\x04\xc3\x40\x21\xbe\xfb\x01\x8f\x58\xcf\x03\xa1\x79\x8e\x98\x6f\xc8\xda\x76\x1c\x5d\x4b\x0f\xc7\x14\x94\xb0\x10\xe9\xd2\xcd\xd2\xf2\x9a\xb7\xda\xcb\xe0\xa3\x36\x2e\xab\xef\xfe\xfe\x24\x04\x5a\x98\x4c\xd6\x65\x90\x28\x2a\x35\xf7\x00\x72\xf7\x24\x59\xfe\x52\x02\x5e\xa3\xb5\xc7\x2b\x5d\x16\x44\xc2\x5b\xa1\x1b\xc0\x6d\xf2\x42\xe9\x74\xad\x82\xf5\xbd\xda\xab\x07\x0d\x01\xf7\xda\x66\x6a\xac\x05\x3d\xfa\x77\xaa\x21\xfe\x9d\x67\xa1\xc4\xbd\x56\xc9\x66\xa4\x1b\x35\xc4\x94\x65\x2f\x4c\xa5\x4f\xdd\xbf\x93\x0d\x19\x6f\x2b\xc6\x4c\x16\x83\xc6\xe2\x94\xe9\x35\x28\xb9\xa3\x31\x8b\x28\xb3\x97\x3e\xd5\x58\x5e\xc7\x11\x89\x0d\x49\x1d\xd5\x95\x40\x1a\xeb\x4f\xba\xca\x54\x6b\x34\x84\x4a\xb3\x6c\x48\x66\x6e\x56\xe2\x5a\x63\xf8\xaa\xd8\x55\x63\x36\xb3\xa3\x46\x5a\xe3\x02\xea\x85\xbe\xc0\x10\xa0\xb8\x31\xbe\x4a\x50\x6d\x9d\x2a\xb5\xf4\xf4\x86\x3c\x8f\xdc\xfd\x01\xb1\x27\x5c\x20\x5b\xd9\x42\x40\xeb\x8b\xc8\x34\x24\x92\x89\xb3\x67\x31\x28\xf7\x49\x17\x69\x83\xa2\xa5\x44\xd7\x36\xc8\x24\xa5\x83\xb5\xb1\x50\xe3\x3e\x79\x2d\x9d\xb1\x39\xd6\xa8\x02\x8b\x4e\x31\x07\xab\x34\x0a\x59\x9e\xd7\xbe\x30\x21\xb8\x58\x32\xc7\x3c\x62\x67\xba\x89\x3f\x00\x2b\x97\x1e\xd8\x96\xd0\x25\x89\xbc\x2d\xa1\xcb\xb8\xdd\x09\x76\xf6\x27\x90\x4f\x65\x4b\x68\x3b\x3d\x79\x1e\x82\x3c\xc3\x63\x20\x5a\x4c\x17\xeb\x94\x76\x10\x97\x1a\x12\x49\xc5\x2f\xb5\xbe\x31\x38\xcb\x3e\xfd\x46\x09\xca\xcc\x9d\x12\x92\x14\xea\x86\x82\xe6\xba\xcb\xa7\xb4\xb3\x4d\x90\xcc\x11\x70\x59\xe4\x8b\x93\x22\xf4\xaa\x19\xf1\x34\xe3\x58\xb3\x69\x27\x6f\xce\xd0\x52\x9d\xf4\xfb\x7a\xc3\xd2\x46\x23\xc9\xa2\x5d\x14\xfb\x8d\x95\x8b\x20\x69\x48\xde\x09\x67\xe5\xb5\x4d\xe9\x25\x59\x4a\x6c\xd7\x9a\xb4\x26\x09\xe1\xa5\x59\x59\x6a\x90\x5e\x9c\x8b\xd4\xa6\xf0\x92\xca\x8f\x6e\xcf\x2b\xed\x26\xa5\x48\x34\x6e\xc8\x73\x28\xde\x33\x90\x6c\xaa\xa3\xf5\xd7\xed\x3b\x56\x39\xdb\x4d\x8a\xf6\x42\xde\x8b\x34\xb4\x0e\x37\x05\x30\xb3\x14\x56\x1c\xb7\xf6\x83\xeb\x0b\x63\x31\x75\x21\x36\xc9\xfe\x84\xf6\x90\xfc\x8c\x85\x29\xdb\xa4\x17\xd8\x90\x6d\x9c\xcd\xda\x1e\xb2\x13\xc3\xc0\x1a\x8b\xc6\x1a\xef\x47\xb4\x36\xd4\xe8\x91\x4a\xaf\x07\x3c\xd3\xc4\x6f\x70\x83\x62\x6a\x22\x97\xce\xbc\x04\x2d\x55\x47\x0a\xae\x2b\xa3\x96\x0e\x1f\x56\xcb\xaf\x07\xbc\x53\xc8\x5f\xa0\x04\x84\x24\xae\xce\x2a\xe3\x0e\x9e\xe8\x1b\x45\xf8\xe4\x37\xb8\xcb\xba\xda\x28\xbe\x2a\x0b\x42\x67\x26\x83\x23\x90\xfa\x32\x3b\x69\x53\xf4\x29\xf1\x44\x97\xf8\xea\x61\xa0\x07\xb7\xa9\x14\x48\xd3\xe9\x88\x69\x2a\x9b\x3b\x20\x01\x1a\xc8\x40\x76\x24\x4d\xa5\x47\x1e\x10\x22\xea\x8e\x5a\x34\xba\x33\xa3\x74\xa4\xdd\xea\x9a\x8e\xd2\x99\x66\x6b\x63\x59\x8f\xdc\x16\xd9\x6f\xd0\x50\xee\x17\xb8\x2d\x24\xbc\xe2\x36\xcb\x66\x29\xa8\xf3\x86\x7a\xb1\xf6\x9e\x70\x63\x84\xdf\x47\x6a\xc0\xcb\xc6\xd0\x51\xbb\xc6\xbe\xe8\x9e\x0a\xa2\xc5\x84\xc8\x44\xb1\xc9\x98\x65\xde\xac\x27\x89\x10\x25\x27\xf8\xf4\x25\xe2\x18\xd3\x19\x1b\x53\x02\x46\xcf\xc8\x57\x33\x56\x32\x47\x30\x1e\x33\x8b\xaf\x0b\xa4\xcc\xc5\x76\x07\xe4\x4f\x9e\xd4\x32\x0f\x0d\x77\x49\x91\xc4\x5d\x14\x0a\x9c\xd2\x22\xfb\x94\x72\x62\xf3\xac\x50\x3c\xc6\x99\x58\xbd\x64\xf8\x40\xd5\x63\xe1\x81\x26\xb5\xb5\x23\x36\xdf\x1b\xab\x17\x94\x2d\xa9\x1e\x11\x19\x14\x9e\x25\x42\xf3\x9d\x95\xd7\x19\x94\xf4\xfa\x7d\x81\xac\x59\x4e\x29\xaa\x35\x4f\x12\x85\x63\x54\x57\xba\xf4\xba\x38\x94\x7a\x64\xa0\xbd\x35\xe9\xce\x5b\x60\x1c\x5d\xd1\x2b\x93\xef\x35\x07\x14\x83\x51\x95\xda\xd2\x97\x50\xe4\x6d\x86\x08\xa4\xb2\xb9\x4d\x18\xd4\x01\x2c\x48\xb6\x28\xf5\xb6\x46\x14\x90\x0d\xbb\x2c\xf8\x05\x9e\xe9\xc9\x2f\x20\x8c\x77\xf8\x85\x85\x06\xcd\xaa\xaf\x4d\x25\xbc\xc0\xeb\x36\x9c\x94\xd4\x59\xbd\xc5\xbc\x00\x25\x05\xed\x5c\xea\x9d\x76\x12\x4f\x93\xe5\xb1\x1d\xa6\xd4\x79\xcd\xa7\x4d\x08\x7d\xb0\xba\xa8\xbe\x18\xe4\x68\xd2\xde\xfb\xa0\x91\xb3\xfa\x0d\xe4\x7a\x07\xf7\xd0\x09\xe5\x8f\x4c\x75\x7d\xa0\xe0\xa4\xd8\x7c\x5f\x06\x27\x43\x88\xcb\xfa\x2d\x8b\x76\x38\xc0\x7c\x22\xf7\x7d\xc1\xa3\x95\x41\xad\x94\x26\x03\x46\xdf\x17\x47\xd5\x0c\x58\x2b\xd0\x7a\x77\x67\x3d\x6b\x33\x02\x18\x8f\x8a\x14\xb0\xce\x5a\x81\xd6\xab\x3b\xc3\xdc\x25\x0e\xf7\x29\xc8\xa4\x62\xd6\x83\xc8\x9b\x62\xb4\x1f\xa4\x05\xbf\xbf\xa3\xad\x85\x3d\x08\x80\x40\x46\xed\x94\xe1\x54\xaf\x0e\x53\xd2\xe6\x63\x04\x61\x34\xd5\x73\x64\x48\xba\x23\x1d\x3a\xe3\x68\xac\xda\x77\x66\xa2\x3a\x48\xaa\xc3\x09\x56\xa4\x47\xf4\x13\x05\x3b\xcc\x7f\x59\xde\xda\x2e\xff\x7e\x92\x37\xb9\x7d\x82\x7d\xba\xcd\x95\xf3\x42\xc0\x05\xf6\x32\xf2\x76\xe6\x99\x5a\x08\xe8\xb0\x14\x15\xe3\xf1\x62\x3c\xae\x81\x82\xe9\xa8\x78\xf1\xaf\x15\x60\xac\x95\x40\xf1\x94\x17\xf9\x5c\x8b\x1a\xb4\xd8\x30\x36\x15\xc9\xef\xfd\xe2\xd2\x08\xea\x0b\x4b\x23\x49\xbb\x33\xd4\x3d\xbf\x7a\x3c\xf1\x82\x27\xc1\x73\xa8\xfa\x01\xa8\x25\x78\x44\x10\xa8\x14\x9f\x7e\x33\xa8\xc0\x93\x58\x12\x98\x57\x93\x4e\x37\x9b\x49\x3a\x9c\x6c\x25\xf9\x05\xae\x95\x86\x60\xb1\x40\xcb\x3a\xfd\xa6\x45\x4c\x88\x44\x6c\xfa\x8b\x20\x51\x12\xdb\x95\x0b\xfa\x4d\x18\x35\x49\x58\x9e\xaa\x99\xd7\xc3\x92\x6a\x9a\x03\xe2\x83\x5e\x47\xc0\x94\xd6\xd2\x66\xea\x82\xe1\xa9\xf8\x64\x44\x74\x90\xa5\xbb\xb1\x81\x7b\x6a\x0b\x8e\x0d\x49\xcc\xa2\x9d\xb1\xf1\xfd\xa1\x36\xb2\x7f\xb5\x6a\x63\x23\xf3\x94\xa8\x36\x36\x12\x9b\x70\x38\x60\x17\xb2\x44\x32\x90\xaf\xa9\x2b\x35\xcb\x08\xe4\x63\x32\xf3\x8c\x29\x15\xa5\x2e\xfb\xc4\x08\xeb\x8e\x49\xb5\x11\x23\x13\xfc\xfb\x40\x52\x45\x55\x7b\xc7\x4d\x44\x9a\x02\x5c\x6f\x25\xbb\xff\x13\x49\x49\x6e\x93\x6e\xb4\x06\x83\xb9\x97\x4e\x97\x1c\x71\xd1\x85\x66\x1d\x23\x72\xa2\x35\x24\x0c\x41\xc3\xa7\xd8\x88\x6b\x3b\xf8\x0b\x10\x4a\x76\x97\xe0\xcd\xd2\x56\x07\x2d\x43\xe9\xd5\xe5\xc0\x39\x28\x28\x23\x67\xa5\x59\xa3\xd6\xb3\xa9\x7f\xc0\x0e\x64\x3b\xfb\x58\x66\x20\x89\x86\x83\x19\x9a\x0e\x96\x1b\x89\x69\x0d\xea\x11\xee\xc1\xf2\xfa\x80\x32\xf4\xeb\x05\x58\xb3\x64\x36\x1d\x70\xf6\x15\x23\x1a\x62\x99\x6f\xb1\x2a\x23\x2d\x5a\x10\x5a\x12\x76\x64\xfe\x91\x3e\x34\x96\xd0\x26\x03\xca\xc8\x04\x48\x47\xfb\x40\xb9\x40\x1b\x79\x46\x5e\x77\xc4\x6b\x0a\xb0\x54\x95\x57\x0f\xf0\x1d\x15\xff\x0e\x6a\x2f\xee\x10\xf0\xbd\xda\x0f\x76\xa7\x56\x11\x1e\xbc\x22\xf9\x67\xc0\x2e\x65\xdb\xca\x58\x76\x29\x6d\xef\x51\x90\xce\x26\x26\x36\x20\xc2\x35\xaf\x2a\xea\x44\x3b\x52\x6e\x50\x82\x13\x6b\x1f\xb8\xc7\xaf\x14\x0f\x30\x48\x68\x86\x08\xfb\xb3\x78\x40\xee\x4f\x77\x80\xfc\x1f\x31\xa8\x41\x11\xcf\xc1\x0e\xa3\xd0\xa4\x24\x6b\xdf\xa8\x9c\xa3\x40\x66\xba\xa5\xe5\xff\x41\xa1\x4f\x82\xc9\xa8\x9c\xa3\x3b\xc0\x4d\x33\x12\x5b\x47\x05\xa3\x2f\xfe\x9e\x31\x97\x7e\x1f\x2c\xaa\xb8\xcd\xf4\x1e\xf7\x4f\x2d\xa8\xfb\x01\x18\xbf\x04\x9f\x51\xa9\xd3\x7a\x6f\x54\x5c\x73\xe1\xcd\x55\x17\x25\x69\x4e\x6d\xad\x93\xde\x40\xf6\xa5\x75\xbb\x01\xb7\xa4\x6b\xe5\x0d\xd4\x94\x2e\x12\x4c\x46\x5b\xeb\xe0\x1e\x17\x90\x82\xa1\x51\x21\x30\x29\x20\xb6\xcb\x05\xca\x46\xc7\x11\x2b\xd1\x65\x74\xa8\xb0\x06\x69\x8a\x90\xc9\xc7\xdd\x60\x2e\xa5\x57\xbe\xa3\x4e\xd7\xf0\xf7\xf4\xac\x9b\x35\x2f\x91\x52\x56\x9c\x81\x42\x28\xc5\x9c\x99\xc9\x97\x0e\x39\x18\x63\x9d\xf2\x9a\x15\x4a\xa1\x54\xb3\xda\x65\x42\xf3\xa0\x03\xd5\xe8\x0c\x34\x4d\x6a\xf6\x84\x8e\xc1\xea\x11\xfe\x60\x32\x63\xdd\x4a\x5c\xc6\x00\x4c\x32\x8a\x8e\x41\x72\x34\x7d\xa2\xda\x89\x8b\xe0\x8c\x1d\xa9\xeb\x3a\x81\xc7\x4e\x1d\x5a\x68\x5e\xe6\x32\x49\xef\x03\x52\xa7\x8b\x69\x0d\x56\xe8\xf3\xf9\xb3\x93\xfd\x0f\xf7\x40\xa5\xda\xf4\xb6\xaf\xf3\x40\x68\x60\xb9\x13\x47\x5a\x0c\x94\xa8\x2e\x12\xf2\xc6\xb1\xce\x03\xa1\xfe\x58\x50\xa9\xcf\x83\x81\xc6\xc2\xcb\x81\x04\x81\x57\x9b\xb7\xdf\xb9\xc7\x45\x4e\x7e\x30\x17\xcf\x0a\xea\x60\xb0\x95\x35\xd4\xc1\x4b\xff\xbb\x59\xc1\x12\x34\x87\x1f\x54\x40\xed\x36\x2d\x3b\x5e\x4d\x44\x68\x3b\x5f\x7e\x9c\x4b\x04\xd3\xb4\x4e\x4a\x37\x9a\xd5\x92\x34\xbd\x0b\x20\x58\x06\x7f\xb0\x8a\xee\xa9\xc7\x8b\xaa\xbf\xa7\x81\x32\xd4\x2e\x0e\x32\x20\x57\xba\xe8\xe5\xa0\xd0\x57\xfd\x3b\xf7\xbe\x59\xf2\xb2\xc9\x99\xea\x59\x52\xef\xc5\x8f\x90\x90\x18\x73\xfc\xd1\x21\x04\x13\x9b\x95\x1a\x5e\x34\xdd\x6c\x9e\x1d\x37\x39\x83\x66\x8c\xf2\x79\xcd\xd4\x74\x23\x21\xd3\x3b\x06\x51\x58\x69\x78\x15\x6e\x02\xfc\x7a\x83\xdc\x4a\x1a\xef\xa0\xb7\xd1\xbe\xe1\xc1\x0a\x7a\x8e\x03\x19\x2c\x1d\xe2\x38\x90\x81\xc0\x2d\xbb\x6c\x06\x6b\xe0\x39\xbc\x65\x30\x70\xcb\xbe\xe1\x01\x2b\x9d\x53\x90\x07\x02\xb3\x9c\x42\xbf\x6f\x1b\x7b\x88\x7a\x10\xb0\x32\x59\xed\x84\x80\x6b\x7f\x40\x11\xa8\xf8\x05\xf0\xf9\xe6\x17\x28\x3a\xea\x20\xd9\x97\xe8\x38\xfc\xe0\xe6\x98\x1f\xa0\x76\x5c\x42\xa2\xbb\x02\xcb\xce\x7b\xf6\x1c\x67\xb1\x87\x45\xf4\x5d\x0f\xd6\x7a\x55\x3d\x80\x12\xda\xfd\x05\x0e\xd0\xe6\x0f\x0e\xa6\xcf\x05\x3d\x00\xc5\x35\x77\xb0\x80\x32\x10\x10\xd9\x8d\x08\x38\x12\x2d\x24\xec\xcb\x4b\xa8\x13\x75\x8f\x6b\xb5\xfc\x00\x52\x80\x88\x7c\x5f\x26\x37\xd1\xc8\x4e\xe9\xd0\x31\x11\xb8\xbc\x3c\xd5\xe8\x1e\x58\xb5\x4d\x2c\x6a\x8f\x0b\x97\x7e\x80\x6d\x20\x39\x7d\x4f\x6b\x3d\x87\x1e\x20\x6b\xd6\x60\xc3\x0b\xe8\x48\xa1\x9d\x26\x32\xed\xd4\x1d\x69\x77\x76\x34\xed\x99\x51\x33\x3a\x33\xf7\x4c\xa0\x45\x62\x3b\x8a\x59\x58\x1a\xdb\x33\x6f\x88\x13\xcd\xed\xb4\x88\x39\x4a\x62\x67\xda\x9c\x6d\x1c\x7b\x41\xaa\x9e\x8e\x93\x9d\xe2\x8c\xe3\x09\x76\x0a\x27\x5e\xde\xba\x90\xaf\x69\x54\x86\x6a\x0c\x3f\x40\xf1\x45\xcf\xa3\xd2\x61\x16\xfd\x02\x28\xa4\x7b\x08\x10\x44\xf7\x07\x64\x41\x12\x0e\xf6\xe5\x72\x73\x97\x2c\xbd\x60\x4b\xfe\x4e\x69\xc1\xfe\xca\xbd\x51\x23\x37\xd5\xb5\x07\x64\x2a\xd4\x74\x5a\xd6\x74\x40\xec\xac\xde\x6b\x73\xf3\x3e\x16\xf2\x84\x7f\x54\xdb\xb5\xf9\x79\x67\xcc\xb4\xdd\x40\x3b\x0d\x46\x76\xba\xec\xf4\x7f\xd9\x2b\xb3\x0f\x4e\x5d\x60\x0e\x32\x33\xad\x28\xdc\x61\xcd\x16\xeb\x7d\xac\x79\xe8\x01\xbc\x5d\xcd\xf6\xe6\x7d\x27\x99\x48\x43\xdd\x77\xb2\x01\x59\x27\x76\x1a\x75\x6c\x55\xdc\x19\x79\xec\x28\x92\x9d\x09\x56\x56\xcb\xf7\x83\x39\xe6\xde\x1f\xc7\x62\x6f\xee\x74\x2d\x81\x26\xcf\x03\xd6\x21\x9e\xb8\xfe\x3f\x5b\x68\xdc\x51\x15\xb7\x0c\xff\x0e\xdd\xa0\xbb\x03\xa6\x0f\x7b\x03\xa1\x1c\x81\xcd\xe0\x3b\x82\x86\x8a\x4e\x8a\xfd\x5c\x4b\x28\xdc\xb0\xc4\x98\x35\xdb\x9d\x96\x9d\x1c\x7f\x14\xe1\xbd\xf3\x74\xf6\x06\x3d\xa1\xe7\x76\xb7\x51\x82\xda\x7b\x85\xd5\x08\x6c\x1c\xdb\x71\x47\x59\x35\x77\x85\x43\xcc\x41\x2b\x3b\x2d\x34\xc3\xbf\x13\x87\x3a\x49\xf7\x8b\xcb\xaf\x83\x69\xe7\x9d\xbb\x0e\x33\xd9\x61\x51\x19\xe6\xae\x74\x69\x99\x80\x56\x71\x00\xf3\x88\x9b\x30\x08\x46\x54\xa7\x2d\x3e\x12\x98\x90\xe5\xea\x30\x3b\x8f\x4f\x9b\xf0\x76\x3a\xb4\x6c\x6b\xdd\x9f\x35\x86\x3e\x61\x54\xb3\xab\xbd\xec\x88\xbe\x09\xb6\x6a\x1c\xdb\x9a\x47\xd3\x83\xc0\x37\xaa\x1e\x74\x76\xea\x07\xb8\xed\x42\xba\xe9\x01\x6f\x90\x1d\xde\xc7\x06\xf2\x12\xdb\x39\x10\xdc\x52\xb5\x7d\x0f\x1e\x54\xb6\xda\x1d\x81\xa6\x24\x49\x16\x07\x4e\xa6\x91\x5e\x6f\x5c\x7c\xa0\x37\xe2\x12\x14\x34\x08\x22\x56\xca\xeb\x05\xf2\xd3\xea\x17\x76\x40\x91\xd5\x86\xd1\xb7\xba\x4d\xde\x26\x9d\xe1\xa0\x2f\x47\x67\xf6\x01\xa3\x41\x15\x03\x38\x52\xe6\x34\x34\x64\xe2\x3c\xfd\x01\x77\x66\x74\x8f\x37\x5e\x10\x22\x33\xa9\x52\x20\x66\xea\x9f\xa2\xe3\x03\x17\x44\x55\xed\xf5\x03\xf9\x49\xbe\xc8\xe2\xc8\x6b\x67\xfb\x85\x45\xa6\xea\x92\x55\xfa\xfd\xc5\x54\xe3\x73\x15\x5d\x1f\x85\x4c\xcb\x30\x32\x32\x57\x32\xc0\x01\xb5\xbd\x8a\xee\x0f\x5c\xa6\x6a\xf7\xe4\x81\xeb\xf8\x9d\x2f\x70\x20\x19\xa9\x67\xf7\x87\x3b\x6b\x4d\x3c\x85\xba\xa1\x20\x5e\xc7\x5a\x74\x07\xc8\x87\x32\x92\x58\xf2\xc8\x68\xaf\xab\x38\xbc\xda\x04\x50\xeb\xc8\x38\xe0\xea\xf7\x49\xbe\xe2\x7e\x07\x94\x70\xdd\x94\x5f\x0e\x28\xdd\x3d\xfb\xf7\x05\x91\x70\xc8\x50\x14\x9b\xa9\x0f\xf8\x65\x7c\xcd\xd2\x81\xcc\x70\x5b\x2e\x0f\x54\x23\xb5\x65\xf1\x68\x04\x51\x53\x44\xa0\xaf\x6f\x0c\x2f\x07\x74\xee\xea\x55\x6b\xa0\x55\x83\xbc\xfc\x36\xcd\x10\x30\xa5\x45\xc6\xce\x03\xa1\xc0\xd5\x20\x76\x9e\x2c\x32\xf8\x1e\x48\x8e\x4a\xaf\x85\x41\x72\x54\x7d\xbd\x40\x72\x8e\xee\x12\xea\xa6\x78\xe4\xc1\xbb\xa1\xac\x8f\x1e\x08\x1e\x76\xed\x80\xa3\x23\x07\xff\xd5\xc6\x6d\x64\x92\x68\x8e\x4e\x9d\xaa\xf9\x85\x03\x36\x27\xe1\x09\x81\x2e\x2f\x46\xc3\x7b\x53\x9b\x41\xe4\xca\x48\x32\x38\x98\x4e\x25\x9e\x7b\x50\x89\xef\x72\xaf\x1e\x8c\x8c\xb1\x4f\xf8\x18\xf0\xaf\x9a\xd3\x0c\x5e\xf2\x16\x7f\x72\x37\x6b\x39\xe0\x66\xb2\xff\xff\x18\x2c\x20\xe9\x36\xca\xb7\x98\x33\x0e\x78\x1d\x5f\xf0\xa1\x6e\x9b\x37\x0b\x84\x8a\xd7\xba\x0f\xdc\xa5\x25\x0d\xff\x40\xc8\x8d\xa3\xa4\x0e\x88\x18\x55\x92\xed\xb1\xb3\x06\x9b\xde\xdf\x33\xde\xd7\x0a\xa1\xa4\x7f\xf7\x0a\xa0\x5a\x53\xf5\x12\x33\x53\xca\x9e\x88\x83\x16\x02\xbb\xfb\x0e\x58\x08\x1c\x9c\x7d\xec\x3c\x59\x65\x45\x3f\x68\x20\x30\x8b\x5a\x19\xe1\xfa\xe0\xa0\xe1\x52\x2b\x82\x62\x4b\xf6\x92\x1e\x48\xad\x4a\xaf\x36\xcd\x2a\xa6\x7d\xf8\xb1\x5c\x6b\xf4\x38\x78\x39\xb3\x01\xa0\x3e\xe0\xfd\x7b\x50\xd6\xce\xee\x12\x37\x1f\x4a\xdc\x39\x58\x40\x55\x16\xb0\x83\xf6\x04\x7b\x32\x0e\x78\xb2\x5e\x7c\xfb\xe4\x56\xd1\x32\x40\xbc\xb1\x67\xe3\x40\x41\x55\xa7\xec\x1d\x53\xda\x49\x4d\x32\xdb\x81\x54\xae\x6a\x2c\xa3\xe2\x7f\x35\xcb\x43\x41\x7f\x7b\x6b\x8e\x93\xab\xe0\x75\xe6\x9d\x57\x96\xdc\x8f\x25\xe0\xc8\xe8\x7e\x50\xc0\xf1\x0b\xb0\x36\x58\x06\x3c\x90\xd7\x65\xf3\xee\x81\x90\xa1\x6a\x1e\x77\x71\x1f\x18\x86\x6b\xad\x83\x26\x85\x3b\xaf\x1c\xb9\x70\x20\xf1\xeb\x75\xfa\xc1\x27\x65\x83\xf2\x01\x97\x94\xeb\xec\x1c\xbc\xf2\x4a\xda\xc9\xc1\xea\x4b\x2e\x3e\x76\xdc\x14\x2a\xdd\xc6\x79\xeb\x65\x82\x43\xaa\x1a\x42\x38\xa4\x5c\xf8\xe7\x80\x3c\xe5\x40\xe1\xe3\x46\xf9\x3e\x69\x96\xc7\xdd\xbf\xbf\x8a\x93\x58\x0e\x04\x0c\x95\xd7\x78\x10\x63\xe4\x1b\x3f\xe0\xbf\xda\xec\x00\x3d\xa6\xfc\x95\x5e\x47\xe3\xbd\x16\x41\x28\x78\xb8\x08\x1a\x91\x29\xee\x76\x49\x1d\xa8\x83\x6a\x93\xcf\xb1\x8c\x19\xd9\x0f\x50\x9a\xd7\x42\xca\xc3\x39\x79\x84\x0e\x9b\x91\x70\x80\x2a\xa8\xf1\xf5\xfd\xc5\x11\x85\x14\xc4\x17\xf9\xde\xc3\x03\xb6\x0e\x47\xd8\x9d\xa8\x7a\x6a\x8b\xf4\x89\xf2\x4a\xae\x0c\x74\xc2\xd4\xd1\x8a\xe6\x74\x6e\x60\x31\xc3\x6d\xac\x82\x8e\x95\x13\xc1\x45\xce\x17\x38\x37\x5e\x49\x59\xd4\xa6\x73\x27\xaa\x7d\xc0\x4b\xe8\x01\xb9\x7b\x8b\x3b\xbc\x30\x80\x3b\xbc\x11\xff\x14\xd4\xc6\x0d\x54\xe2\x50\x27\x82\xb1\x6d\x6a\x39\x57\x7d\x25\xad\xeb\x89\x60\x6c\x33\xd1\x13\x5e\xb9\xac\xab\x78\xcb\x39\xe5\xd5\xd8\x36\xf7\x40\x8b\x92\xd4\x9d\x13\xf2\x6a\xf2\x31\x73\xc2\x0f\x67\xb3\xc7\x89\xbb\x57\xcd\x45\xcf\xe5\x66\x13\x57\x3c\x23\x28\x25\x97\x9f\x9c\x3a\x67\xc4\x46\x90\xb7\xea\x5c\x56\x96\xe6\x07\xb0\x97\x8b\x5f\x9d\x91\x27\xb5\xf6\xe2\x89\xdb\x55\x7d\x5d\xeb\xc9\x60\x6c\xfb\x42\x4f\x56\x08\xf0\xd9\x7d\xb2\x42\x80\xe3\x96\x4f\x46\x67\x3b\x0e\xf9\xa4\xd9\xe5\xd5\xe6\xe1\xec\x95\x4f\xd4\x2c\x74\xfa\x9d\xf0\xc2\x59\x4b\x3f\x59\x44\xe0\xb5\x74\xbc\x82\xf5\xb5\x76\x2c\x1a\xe0\xd0\xe5\x33\xb1\xea\xaf\x26\x86\x22\x01\x76\xe4\x9d\x09\xc5\xba\x8c\x19\x94\x08\xb0\x56\x7f\x4e\x09\x3c\x59\xd1\x38\x59\x05\x55\x87\xc9\x99\xd7\x7d\x51\x6a\x53\xb2\x13\x66\x33\xef\xac\xd2\x1c\x51\xe4\xd4\xf1\x5d\x27\x8a\x9a\xea\xce\xfd\x72\x22\x5e\xdc\xa9\xfb\x27\x52\xed\x1c\x49\x7d\xa2\x1a\x80\x8b\x8b\x9d\xf0\xca\xd9\x4b\x77\x22\x5a\xbc\x1a\x21\xf0\xca\xf9\x38\x3e\xe1\x95\xd3\xa5\xff\xe5\x2c\xa0\x6d\xaf\x41\x81\xb8\x63\xd2\x5e\x4e\x35\x03\x50\x78\x7a\x9a\x74\xcb\xf1\xfd\xd5\xec\x17\x39\xcb\x5a\x77\x81\x08\x81\xdd\xaa\xfd\x49\xaf\x9a\xbd\xdc\x67\x45\xfd\x0a\x9d\xc7\x27\x8a\x09\x38\x50\xf3\xac\xf1\xfb\xab\x55\xe9\xda\xe7\xb2\x5b\x49\xbb\x3f\x11\x9f\xde\x4c\x37\xb8\x7f\x60\xbc\x06\xa0\xba\xd8\xfd\xe0\xc4\xac\x45\x25\x0c\xa4\xb2\xc1\xee\xac\x44\xab\x7b\xc4\xb2\x9b\x6c\x1a\x15\x69\x33\x19\xc6\x96\x9b\xfa\x51\xba\x49\x17\x84\x97\x13\x81\x55\x55\x36\xac\x13\x66\xaf\xda\xbd\xd0\xcb\xec\x65\xc6\xba\x44\x78\x2f\x55\xe3\x21\xef\x3e\x3b\xd9\x8c\x3b\x65\x32\x5e\xf1\x86\xe9\xb4\x4a\x88\xdd\x9f\xa8\xa5\x54\x75\xa4\x9d\x9d\x91\xc1\x46\xd5\x40\xee\xad\xb9\x2b\x2e\x04\xa8\xb2\x48\x9d\x83\x5b\xd0\x3d\x20\x5b\xaf\x56\x7f\xb0\xa0\xf4\x17\x6b\x08\x41\xc9\xd2\x48\x3e\x47\x4f\xde\xd4\x6f\x5e\xb7\xec\x62\x26\xda\x9d\x52\xba\xcf\x00\x16\xed\x37\x37\xda\x69\x20\x30\xd9\xef\xbc\x46\x4d\xf3\x46\x38\x95\x3d\x11\xe7\x4e\xf4\x7b\xfd\x76\xfa\xde\xb4\xc0\xf0\x84\x35\x4f\x8b\x77\x55\xd9\x53\x7b\x1e\x01\xe7\xa4\x3e\x38\x16\x62\xf4\x05\xe5\x5a\xe3\x81\x97\x57\xd9\x30\x77\x2e\xc3\x9c\x89\xec\x20\xcd\xb8\x0d\x29\x50\xf6\x85\x13\x86\xbb\xf2\xea\x91\x7e\x31\x4d\xf2\xe0\x1c\x0c\x22\x17\xdb\xbf\x83\xa8\xa5\x13\x9e\x08\xa6\xaa\x32\x1e\x9c\x94\x3a\xcd\xab\x58\x40\xc0\x9e\xdd\xf3\x24\x8f\xef\x3f\x72\x0f\x9d\xbc\x56\xb5\xfb\xdc\x5c\x0e\x2d\x89\xc1\xe7\xb5\x08\x58\x48\x44\x5c\x53\x6d\xfe\x62\xed\x4b\x81\x88\xa0\x71\x97\x04\x3c\x79\x0b\xaa\x24\xae\xf3\x5e\x8a\xb2\x7a\x40\x82\x9b\xe3\x24\xce\x9b\x23\x68\x11\x6e\x28\xce\xe6\x0c\xa8\x4a\x54\xcd\x4a\x6e\x1e\x52\x46\xea\x8d\x0a\xfd\xa6\xb4\x29\xc2\xa5\x17\x83\xe5\xfd\x4c\x76\xd2\x9e\x0f\x92\x65\xbc\xc3\xa6\x84\x96\x7c\x87\xf7\x89\xa8\xa3\x6a\xce\xf1\x1c\x88\xb0\x14\x04\x0f\x21\xfa\xe0\xe8\xda\x68\xc8\x12\x3f\xbd\x36\x4a\xe2\xa2\x8b\x8b\x57\x24\x05\x7f\x01\xba\x10\x0e\xae\x8d\xb6\x80\xec\x17\x56\xe0\xc3\xa7\xcd\x94\xff\x22\x5a\xbe\xe0\x5b\xaa\x52\x88\xae\xe5\x5b\x12\x69\x5e\xa8\x09\x50\xbb\x7b\x00\x69\xe9\x58\xbb\x56\x9c\x52\x51\x1b\xa4\x26\x4a\xb8\x10\xb7\xe4\xcb\x2a\x2f\x44\x7b\xfb\x06\xde\x0b\x9e\xa8\x3a\x3c\x1e\xa7\xa4\x19\x04\x6e\xcf\xea\x07\x38\x07\xa5\x45\x5e\x71\x4d\x49\x53\xa0\x8c\x24\x8b\xf0\xc5\x7b\x47\x6d\x4a\xbb\x56\x98\xd2\xab\x0b\x66\x14\x78\xd0\x88\x3c\x8d\xec\x2f\x18\x31\xe3\xdf\xe9\x86\xd0\x8e\xbf\x12\xc5\x7b\xed\xf0\x0b\x16\xc1\xe1\x54\xa0\x2b\xad\x2d\x27\xb0\xd2\xda\x01\x5a\x0a\x46\xfe\xd8\xb2\x73\xe1\x8e\x78\xab\x7e\x57\xe6\xe9\xe8\xc5\xca\x0b\x6e\x8d\xca\x9b\x41\x1d\x05\x76\x2d\x6f\x94\x76\xfe\xc5\xa2\x44\x76\x14\x5f\x08\xe9\x76\xa5\xf3\x0b\x45\x8a\x7c\x24\x5f\x14\x43\x64\x8a\xbe\xa6\xd8\x91\x86\x69\xb4\x50\x63\x6e\x7e\x01\xe8\x97\x2d\xfb\x62\x30\x50\xf6\x07\x94\xec\x9a\x5f\xa0\x20\x92\xdc\x03\x40\xd0\x3e\xbb\x2a\x91\xeb\x05\xac\x8b\x48\x35\x6f\x56\x89\xb4\xdc\x70\xa1\xe6\xa3\xcd\x6e\x57\xe5\x71\x69\xdc\x52\x4e\x18\x7e\x01\x11\x43\x52\xa2\x2f\x04\xcf\x6c\x46\xf5\x12\x0b\x0c\x35\x0d\x7b\xda\xcc\x17\xc5\x02\x59\xba\x2f\x96\x11\x77\x8a\xd4\xc5\x22\x46\x4e\x16\xba\x56\xd1\x22\x9d\xe9\x17\x0a\x8b\x9b\xe5\x5d\xcc\x16\x73\x12\xd5\x85\x12\x8d\x8e\xaf\xbe\x50\xa4\xc8\xd5\x6d\xae\x25\x25\x34\x7f\x40\x91\xce\xbb\x11\x55\x89\x7c\x5f\xee\x45\xa9\xc1\x78\x43\x41\x45\x57\xa5\xbf\x06\x19\xbb\xb7\xe7\x72\xa7\x79\x71\x06\x37\x93\x37\x34\xa3\x65\x5e\xbb\x6b\xf0\x08\x7f\x0d\x42\xa1\xcd\x3c\x81\x57\xb0\xbf\xf6\x1f\xe2\x63\xa6\xea\xf9\x83\xd3\xe8\x1a\x0b\xb1\x9a\xf5\x4e\x6d\xc3\x34\xbc\x13\xb1\x6e\xd3\x27\x25\x21\xe2\xda\xb9\x6f\x24\xdc\x5f\xfb\x82\x48\x88\x40\x01\x45\x2b\x82\x17\x62\xb2\x7d\x5b\xc6\xc5\xba\x41\xf6\x8f\x5e\x70\xdf\x15\x3b\xcc\x2f\xd6\x1a\xb7\x23\xf8\x3a\xb8\x7a\x02\x02\x51\xd8\x9b\xac\xd7\x17\x0e\xf9\x16\xdc\x23\x91\xa2\x69\x9e\x6b\x29\xd4\xc1\x49\x3b\x8d\xb9\x3d\x8c\x4b\x4d\xfa\xf1\x75\x32\x58\xaa\xf8\x01\xac\xac\x3e\x0d\x70\x35\x4f\x93\x4e\x75\x9d\x3c\x23\xbd\xfc\x17\xec\x65\x26\x59\x56\x11\xb2\xfd\xeb\xba\x80\x6a\x4f\x02\x11\xd3\x2d\xf8\xf7\x8a\xb6\xb0\xc2\xf4\x33\x8b\xa5\xd7\xc5\xa4\x3b\xf3\x8f\x8b\xee\x59\x13\x18\xae\x9b\xf4\xa5\x46\x17\xac\x4d\xaf\xa5\xb8\x58\x8f\x5c\x68\x59\xee\x39\xb3\x30\xb8\xe7\xec\x6f\xbf\x10\xef\x9c\x5c\x7e\xf0\x42\x72\xbd\xaf\xfc\xbe\xee\xb5\x74\x1a\x02\x0e\xbc\x61\x8a\xbe\x59\x0a\x50\x68\x61\x46\x9a\x89\x01\xb2\x8a\xa5\x9f\x8b\x55\x8a\xec\x76\xbd\x6e\xce\xc9\x6d\x04\xd8\x1b\x82\x75\x77\xba\x06\x78\x88\x66\xb7\x51\x80\xd6\x33\x98\xb2\x4a\xb2\xe5\xf4\xc2\xa5\x3a\xce\x1c\xbb\x1e\x02\xe8\xdf\x17\xd6\x35\xc3\x67\x31\x65\x7f\x41\x1b\x9f\x47\xb8\x10\xaf\x28\x88\x1f\x56\x69\x31\x44\xac\x87\xac\x75\xbc\x97\x77\x51\x2c\xf7\x86\x7d\xc9\xd9\x6b\x37\xb2\xfb\x1d\xa4\x7d\xe3\x7e\x48\xc7\x49\xdc\x1b\x65\x4a\xb1\x8d\x1b\xd2\x4f\x8b\xee\x00\xd4\x2c\xc6\x73\x6f\x54\x58\xc4\x07\x6e\x08\x3b\x2d\xba\xbd\xb8\x5b\xd7\x03\xde\xb4\xad\x1e\x50\xe0\xe8\x95\xdd\x76\x43\x7a\x69\x52\xa2\x6f\x48\x2f\x8e\x6c\xbd\x03\x41\xd2\xa4\xa7\xf4\x92\x36\x11\xca\xbd\xaa\x6f\x8b\x98\x6f\xe6\xdf\x9b\xdc\x6f\x5c\x4a\x63\x0f\xe9\xcd\xfb\x1d\x9d\xe6\x7a\x47\x44\x9f\x05\xbf\x30\x67\x69\x5d\xe2\x46\x48\xf4\x2b\x9f\xee\x46\xf1\x6c\xdf\xe9\x77\xc3\x18\x63\x87\xf7\xcd\x3b\x6a\x9c\xd5\x7a\x27\x5c\xaf\xb8\xf9\x85\xc2\x17\xd4\x63\xc2\xcd\x0e\xa2\xa6\x3b\xc1\x57\xd1\x3d\x02\x6d\xd4\x5e\x29\x78\x37\x6d\x4b\xb9\xe1\xcc\x6c\x32\x3d\xdc\xb8\xc0\xb1\xc9\xb6\x73\x67\xdc\x54\x6d\x90\x33\x58\xa5\xce\xd2\x9b\x89\x6a\x76\xd2\xdf\xcb\xfb\xa9\x3d\x7e\x67\x68\x79\xa6\x0d\x88\x31\xce\xac\xbd\x71\x81\x63\x93\x18\x73\xc3\x3a\xe2\xec\xfe\xbb\x50\xf4\x1e\x3f\x32\xcb\xdd\x85\xf0\x09\x83\x65\xd1\x8d\xe0\x2b\xf4\x62\x67\x3f\xa0\x6d\xd3\xa4\x57\x58\xc8\xa6\x18\xa2\x07\x7d\xea\x8b\x29\x05\x25\x87\xda\xde\x88\xf9\x69\x12\x1f\xef\x8a\xed\xe3\x0e\x2b\x67\x28\x8c\xd4\x45\x48\xfe\x80\x86\x3e\xc9\x3c\x77\x5b\xb4\xa8\x65\xc2\xd5\x8a\xaf\x75\x6e\x1c\xc2\x6d\x70\x19\xd3\x6a\xe3\x01\x24\xf5\xe3\xc6\xf5\x2c\x76\x82\xdd\x08\x20\xb6\x87\xf9\x86\x73\xd3\x55\x18\x6f\xe4\xe0\x8f\xcd\xbf\x23\x69\xa1\xbb\xbf\x0b\x4e\x2c\xbf\x7f\x63\xc7\xfb\x77\xe0\xcc\x94\xdc\xe9\x58\x90\x3c\x7c\x4f\x99\x2b\x6d\x9b\xdb\x10\xb1\x74\x7c\xdd\x28\x9b\xe4\x68\xae\x7b\x4a\x58\xc9\xee\xa0\xbb\xd3\xba\x2b\x24\xf7\xb5\xae\x7e\x80\x13\xd3\x41\x4f\x77\x87\x4d\xda\xcb\x04\xaf\xe3\xa6\xa3\xe1\x1e\xac\xe3\xae\x11\x07\x62\xe1\xcd\xa3\x28\x2c\x6d\xee\x90\x37\xbb\x74\x77\x48\x8f\x91\xda\x48\xc5\xf7\x3d\xf3\xf7\x1e\x09\x91\x90\x02\xcf\xe0\xeb\x62\xdd\x7b\x87\xb9\xc2\x51\x1b\xf7\x0e\x45\x56\x9a\xf0\x8d\xe8\xe2\xcd\xa4\xb5\x2f\xf2\x16\xde\x61\x74\x79\x25\x86\xde\x3b\x2f\x99\xd5\x42\xd1\xbb\xf8\x62\x6b\x3b\x18\xa3\x0e\xa0\x1b\x46\x97\xf0\xda\x31\x2b\x98\x58\xc7\xf8\x0d\xa3\x8a\x9d\x46\xf7\x01\xef\x82\x59\x2d\xbd\x85\xe6\xfe\x47\x07\xed\xf8\xfd\x41\x10\x34\xed\x83\x0a\x98\x84\xbe\x1b\xb7\x25\x5a\x0f\xb9\x51\x87\xb1\x39\x54\xe8\x46\x7d\xa3\xe6\x0d\x03\xf9\x6a\xf3\xb6\x3f\x21\xc1\x15\xb7\x71\x66\x3a\xd4\xfc\x46\x8e\x5a\x70\xda\xe6\x7d\x2e\x72\x71\x97\xa4\x60\x21\xf2\xe2\x6a\x0a\xd3\x0c\x25\x76\xbc\xd5\x4d\xd3\x8b\xa3\x91\xee\x6b\xc5\xfe\xa9\x0d\x89\xcb\x14\x7a\x2d\x3c\x08\x86\x6b\x01\xe5\x31\x20\x05\x1a\x2f\xd7\x02\xd2\x40\xe1\x8a\x56\x7f\x80\x02\xd4\x36\x70\xde\x37\xce\x59\x59\x4e\x6e\xb8\xef\x9a\xcc\x82\x37\xe2\xa1\x6c\xc3\xbb\x79\x75\xa1\x5d\x94\x37\xf2\xc7\x5e\x77\x3d\xdf\x37\x64\x61\xef\x12\xb8\xd7\x7c\xdb\xc3\xfd\x70\x44\x75\x00\xef\x9a\x0b\xf2\xdf\x0f\x98\xa1\xec\xa9\x37\x82\xa1\xec\x4d\xbf\x99\x40\x66\x46\xf5\x60\xa5\xab\xdb\xcc\x5c\xf5\x14\x90\xee\xdf\x9b\x5f\x80\x35\xdf\x5b\xe4\x41\x15\x05\xcf\x88\xde\x38\x07\xfc\xdc\x28\x09\xd9\xaa\x3b\xa4\xfb\xe1\xd3\x7e\x36\xda\xd8\x7e\x76\x1b\xc4\x03\xdf\x9d\xdd\xca\xcf\x46\x4f\x97\xb6\xf0\xb3\x01\x21\x92\xf4\x1f\x94\x4e\xda\x74\xda\x3c\xf0\xd5\xbd\x2e\xc0\x7c\x50\x4b\xe9\x95\x30\xfc\x30\xf6\xcb\x11\x48\x0f\x22\x9b\xed\xda\x7e\x70\x7b\x8a\xb9\xc8\x43\xf1\x4c\x26\x91\x07\xb1\x60\xdb\xf0\xef\x93\xcc\x1c\xec\xff\xb0\x1a\xb6\x43\xd8\x1e\xb8\xf3\x5c\x0b\xec\x41\x35\x6c\xd7\x64\x78\x28\xce\xc9\xa2\xf2\x30\x0c\xda\x73\x0e\x48\xf2\xdf\xfc\x3d\x42\xe0\x25\xf7\x3f\x08\x46\x73\x35\xb2\x07\x37\x20\x5a\xc5\x7f\x02\x4f\x2f\x01\xb8\x2e\x40\xd4\x56\x7b\x50\xa9\x60\x14\x0f\x70\x13\x45\x86\xe8\x01\x59\x69\x46\x31\x40\x7d\xd2\xef\x71\x6d\x5e\x0d\x11\x69\x0f\x2f\x7e\x40\x66\xed\x65\xc0\x05\xe1\xf6\x37\x3e\xac\x5c\x20\xc6\xfa\xac\x8a\xdf\x9a\x54\x24\xaf\x96\xa0\xfe\xe0\x32\x16\xe7\xa6\x3c\x11\xbb\xbd\x79\x00\xee\xf6\xe0\x11\xc0\x92\x64\x6c\x79\x18\x43\xfd\x02\x9a\xce\x3c\x09\xc1\x4f\x42\xb2\x8a\xf8\xc7\x93\xe8\xc9\xd6\xac\xe1\xca\x7b\xa5\xa8\x3e\x48\xb1\xb3\x7e\xfe\x20\xc5\xae\x35\xb7\x91\xea\x6b\x69\xee\x41\x3d\xcd\x57\x86\xf2\x03\x67\x9f\x6d\x0e\x4f\xa2\x21\x54\x0c\xe3\x41\x3d\xf0\x91\x3d\x24\x43\x10\x8c\x16\xb8\xfb\x5e\x49\xd2\x0f\xfc\x7d\xce\x51\x7d\xf2\x5a\x09\x75\x91\x71\x3b\xbc\xc9\x87\x05\xa2\x1c\x50\xf7\x64\x4e\x43\x40\xc1\xf6\x66\x87\xfa\x03\x53\x9b\xf3\x29\x9f\xbc\x0e\x24\xbf\x00\x1e\x61\x82\x2f\x0b\x46\x61\xba\x10\x46\xa1\xa1\xcc\x13\xcc\x97\xc5\x3f\xbc\xc6\xd0\x51\x3f\xcf\x12\x4c\xa5\xc0\x3c\x05\xd4\xd0\xdd\x26\xe7\x35\x66\x61\x8c\x6b\xd5\x30\x80\x5c\x64\x8e\x7d\x2a\xa9\xc1\x78\x43\xcd\x29\xc7\x70\x3f\xb8\xd2\xc5\xf9\xf8\x0f\x7c\x7c\xcd\x61\x84\x0f\xa2\xf8\x5e\x59\xd5\x0f\x53\xe9\xc6\xf0\x18\xd0\x04\xbb\xbf\x80\x79\xb6\xb8\xcd\x3b\x15\x34\x4b\xd4\x9c\xb2\xa6\xf9\xa0\xba\xc2\xe6\x85\xa9\x10\x99\xbc\xf6\x15\x73\x32\xda\x98\x39\xf7\xc2\x33\x24\x63\xfb\xe7\x9e\xc6\xdb\xc1\x04\x20\x04\xe5\xe6\x6b\xfb\x1f\x58\x07\x9b\xe9\x11\xf7\xbb\xf8\xa6\xa8\x87\xe5\x19\x1c\x61\xf7\x34\x84\x32\x49\x7d\x7e\xda\xce\x17\xdc\x03\x28\x3c\xfb\x83\x45\xe1\x5a\xa8\x46\xe6\x63\xf6\x49\x61\x58\x02\xd0\x03\x61\xd8\xf9\x34\x0f\xaa\x55\x39\x5c\xe3\xa1\xf9\x51\x0a\xc6\xd3\x39\x87\xf6\xa3\x03\x08\x21\x83\xdd\x3c\x81\x11\x83\xe6\xdd\x34\x55\x4a\x61\x7b\x50\xf8\xaa\x0d\x03\x33\x48\x04\x9a\x1f\xaa\x8d\x36\x9f\x16\xb0\x5c\x0e\xaf\x39\x2f\x3c\x97\x98\xf3\x20\x40\x30\x38\x73\xfe\x81\x03\xb4\x39\x1a\xf4\x41\xaa\x80\xa3\x96\x1e\x38\x40\x9b\x94\xd4\x07\x99\x03\x21\xbb\x9d\x70\xed\xa9\x3a\x64\xe2\x80\x23\xe4\x1e\x88\xea\xbe\x01\xed\x19\x9c\x93\x3f\xc0\xde\x1a\x1e\xf0\xe4\x1c\xfd\x60\xc1\x2c\x2c\xa1\xba\xba\x6d\x26\x0f\x65\x79\x13\x32\xfc\xa9\xae\xfa\xf8\xec\x8b\xee\xd4\xe3\xbe\xf6\x92\xbf\xe0\x31\x6e\xb4\xec\x04\x52\x43\xee\x03\xaa\xb6\x7f\x87\x86\xb3\xb9\x47\x32\x04\xe9\xee\xcf\xce\x28\x00\x1f\xb3\x3b\x76\xcf\xf0\x0b\x0c\xac\x70\xfb\x21\x08\x1a\x12\xe5\x29\x1c\x2c\xfa\x1c\x38\xa7\x4d\x98\x90\xf4\x93\x8b\x26\x3c\x07\xf7\xbb\x56\xe6\x58\x5c\x4c\x43\x20\x10\x30\x78\xa9\x61\x3a\xf5\xc5\xc3\x0f\x44\x7d\x87\x63\x3f\x30\x9d\xda\x0d\xfd\x9c\x44\x9b\xcc\x03\x0f\xc2\xf8\x6c\x90\x7e\xce\xc5\xdb\xfd\x80\x1b\x58\x06\x84\x87\xb5\x4e\x1d\x35\xf7\x40\xf8\x6f\xf6\x41\x3c\x34\xb6\x76\xb7\x2f\x04\xa5\xa9\x07\x08\xea\xbe\xcf\xf5\x81\x0f\xd5\x35\x40\x1f\xe4\x1d\xa4\x57\xfb\xc2\xfb\x02\xe9\x42\xa4\x91\x44\xd4\x07\x52\xb9\x75\xdb\x07\x1e\xd5\x57\x95\x85\x87\x75\x1e\x1c\x5b\xfc\x20\xac\xce\xd7\xcf\x3d\xf7\x9a\xa4\xf0\x76\xaf\x49\xfa\x0d\xda\x10\xcc\x09\x6f\xca\xc1\x5a\x19\xde\x18\x5e\x92\x5f\xb8\xd8\x85\x70\x0f\x51\xbe\x7b\x2d\x20\xca\x3b\xe3\xf7\x61\xda\x9f\xc3\xce\x1e\x5e\x06\xe3\xd0\xd5\x07\x91\x72\x0e\xce\x7b\x78\x39\x8c\x43\x9a\x1e\x48\xf3\xbe\x1c\xeb\x79\xc8\x5c\x65\x77\x78\xa6\xf4\x9e\xfb\xab\x07\xee\x54\x4f\x9c\x95\x4a\x7d\x00\xa0\x52\xa9\xae\x11\xa8\x1b\x2b\x8f\xea\xea\xa2\xba\xb1\xfa\xba\x42\x61\xea\xb6\x5c\xb3\xd5\x0f\xe6\x5e\x57\x16\x7d\xdd\x70\xf7\x8b\x22\xb7\xea\x86\x8a\x11\xaa\x29\x5c\xb7\x00\xf6\x54\x34\x24\x2f\xf8\x56\x85\x87\xba\x05\x1e\xf6\xd5\x0f\x0a\x7a\x10\x4c\x81\x39\x5f\x45\x6d\xf2\x86\xcf\xda\xd4\x2d\xf0\x46\xaf\xea\x31\x07\x7a\x70\x8f\xd4\xf3\x93\xbb\x04\xe2\x82\x7b\x80\x8c\x1f\x3c\x04\x82\x9a\x3e\x67\x52\xdd\x58\xa9\xab\x64\x8d\x00\xfb\xa7\xea\xa7\xd6\x2d\x72\xf5\xdd\x5e\x34\xfa\x93\xa0\xec\xba\xf1\xae\x42\xe9\x41\x75\x43\xea\x87\x1c\xb7\x75\x43\xa9\x52\x55\x6a\xaa\x1b\x0a\x52\x54\xe3\x10\xd2\xb2\xd2\xd1\xeb\x16\x89\x00\xc1\x8f\xe0\x38\x65\x9c\xd6\x2d\x72\xfe\x5a\x14\x56\x05\x53\xf4\x50\xdd\x90\x80\x28\xbf\x51\xdd\x70\x41\x78\x37\x82\x70\x6f\xa1\x4b\x91\xd4\x0d\xc6\xd6\xaa\x92\x6c\x75\x9b\xc2\x6f\xee\x51\x20\x66\x0a\x5c\x59\x84\x03\x41\x55\xf5\x5c\xea\x86\x8b\x06\x7b\x72\x3b\xa1\xed\x0e\x80\x83\xa8\x11\x97\xd3\xb8\xba\x43\x6e\xfb\x2c\x20\x79\x75\x60\x32\xed\x65\xc2\x24\x34\xc1\x89\xbc\x25\xad\x2a\x73\x4f\x14\x53\x5c\x37\xdc\xc7\xdd\xdd\x86\x24\x2b\x9f\x4d\xdd\xe8\x45\x56\xf4\x5e\xdd\x90\x8c\x32\xbc\x10\xcc\x45\x51\xa5\xa8\xba\xc1\x8d\x9c\x4d\xbb\x10\x64\xfb\xab\x4d\x10\x05\x12\x4b\x42\x14\x4d\xb2\x70\xbb\xe9\xfd\xca\xed\xa6\x95\xad\x8b\x5b\x6a\x40\xc8\xb1\xca\x04\xae\x5b\x25\x5a\xfd\x01\x98\xa7\x71\x30\xa5\xd8\x38\x0c\x70\x25\x8b\x30\x03\x40\x45\x08\xdd\x7e\x57\x37\xd6\x04\xf3\x0c\x2a\x67\x20\x88\x51\x93\xbe\x7b\xfb\xc2\x85\xad\xbc\x8f\xba\xb1\x26\xfd\x26\x94\x41\x8a\x55\x65\x84\xba\xb1\x6a\x6a\x53\xff\x6d\xe1\x5c\x10\x36\x14\x07\x34\xbf\x80\xd0\xfa\xee\x80\x9a\x61\xd1\x0c\x1a\x4f\x76\x33\x39\x54\x77\xe8\x66\x0f\x9d\xbc\xbb\x88\xf6\x20\x53\xf6\xd7\x07\x40\x9a\xd9\x41\x47\x48\x4d\xd1\x90\x4c\x34\x51\x28\x79\xdd\x3a\x69\xb3\x88\xba\x71\xe9\xa0\x0a\x01\xd7\x8d\x77\x0e\x7a\xc7\x77\x60\x2d\x8b\x74\x3b\x72\xbd\xba\xb0\x86\xf2\x10\xdd\xfb\x6f\x19\x70\x4d\x28\xbc\x53\xb0\x18\x26\xdc\x29\xd8\x4d\xaa\x74\x89\x17\x0f\x49\x97\xf8\x26\x90\x78\xe9\x60\x35\xa9\x8c\x35\x09\xe1\x09\x19\xa7\xdd\x6c\x68\x10\x68\x4d\x72\xdd\xde\x5d\x0d\x03\x6d\x25\xaf\x2f\x98\xe8\xac\x1e\xa7\xe4\x98\x5e\xa7\xcd\xb2\x02\x9b\x1c\x11\x79\x57\xcc\x56\x96\xe4\xe8\xa5\xd8\x69\x94\x7b\x75\x01\x9b\x59\x13\x0c\x3b\xc8\xe3\x35\x24\x0d\x44\x66\x34\x10\x2d\x93\x4f\x30\x58\x89\x83\xa9\xe3\xa0\x3a\xeb\x69\x32\x07\xb6\x9a\x75\x1d\x11\x4a\x8f\x86\x44\x85\xd6\x6e\x12\x47\x4d\xfc\x6e\x62\x38\x70\xe2\x19\xaf\x07\x0a\x75\x98\x82\x59\x90\xa2\xf8\x88\x44\x46\x49\x37\x45\xf3\xc6\xc1\xf4\x7a\x01\x75\x33\xda\x4f\x8a\xc7\xd5\x0d\x1e\xfa\x6e\x4a\x39\xa8\x92\x79\x8b\xb2\x2e\x5a\xf1\x01\x7b\x92\xad\xbd\x1e\xa0\x8e\x9f\xa5\x00\x54\xab\xe8\xa6\xad\x13\x3a\x87\x91\x7e\x2e\xa4\x6b\x4c\x46\xf2\xbd\x8e\x07\x14\x35\x53\xa9\xcb\xba\xc1\x23\xdf\xbd\xa3\xae\x25\x36\x68\x88\x8b\x7b\x50\x3b\xe2\x22\x8e\xdc\xa6\x01\xd9\x8c\x0a\xf5\xf0\x37\xe3\xec\x5a\x20\x08\x26\x58\x98\x15\x8e\x58\xb7\x6b\x91\xb3\x61\xa2\xe8\xea\x36\x2a\xca\x9a\x55\xdd\x94\x11\xd5\x01\x0c\xcc\xdd\x9c\xeb\x5e\x78\x55\x07\xcb\x83\x2f\x34\x2e\x0b\x73\xd5\x24\x6e\x10\xaf\xb9\x3b\x45\xdd\xe6\xdf\xd7\xd2\xa9\x47\x5e\x8f\x6d\xb6\x40\x31\xb5\x69\x84\x07\xc1\x5a\xde\x2d\x0f\x21\x10\xc8\xb0\x40\xbf\x76\xf0\xb3\x98\x82\x46\xa4\x0b\xfe\x75\x04\x3e\xa8\xf0\xe5\x13\x0c\xe1\x84\xaf\x75\xa2\xd0\x6a\xd1\x89\x05\x66\xcb\xeb\x01\xed\x49\x12\x25\x02\xea\xe9\xfb\xa0\x0f\xc8\xef\x95\x2f\xa1\x06\x5e\xa8\xad\x5a\x39\x35\xc0\x6a\xec\x75\x0a\x1b\xa8\xb1\xfa\x03\xee\xa7\xe6\x07\x70\xba\x88\xdb\x06\x14\x56\x33\x8f\x08\x1b\xf5\x85\x17\x08\x04\x5a\xa7\x60\xd8\xb8\xf4\xfa\x82\x11\x8b\x4a\x94\xa9\x21\xc0\x86\x6a\x18\x28\xe5\x0a\xf1\x21\x30\x51\x40\x98\x0e\x61\x01\x29\x34\x04\x12\x70\xf6\x27\x30\xcc\x79\xda\xc8\x39\x0e\xc9\x6d\xaa\x03\xc5\x0f\x48\x1d\xd9\x40\x3c\xe0\xa6\x9a\x45\x44\x9c\x8c\xb8\x6d\xa0\x58\x2b\xf2\x0b\x71\x61\x5a\x78\x88\xa0\x47\x51\x7c\x40\x9a\x46\x17\xb3\x0d\x2b\x2b\xa3\xfa\x05\xc6\xf2\xbc\xba\x84\x38\x20\x92\x0f\x09\x20\x78\xf1\x13\xcf\x31\x77\x89\x7b\x8f\xba\x28\x34\x30\xe5\xa2\x18\x86\x95\x72\xe1\xe5\x4f\xd0\xc3\xc5\xac\x42\xa2\x41\xdc\x8b\x05\x43\x6d\xab\xd9\x6f\x00\xa8\x26\x3c\xa0\x44\x6d\xef\xfe\x1d\x4a\x90\xd1\x90\x20\x95\x69\x1b\x06\x5e\xd3\xa8\x0c\x9d\x1a\x28\xdc\x76\xcd\x2a\x73\x12\xfe\x7d\x4d\xc2\x3d\xd0\x89\x27\x66\x14\x32\x31\xed\x1e\x70\xeb\xbc\xd7\x36\xaf\x49\x09\x66\x0a\xbb\x9e\x24\x62\x0d\xbc\xf3\x03\x2f\xce\xee\x1e\x91\xa7\x80\xbf\x47\xcd\x6e\x9d\x0a\x01\x89\x19\x7d\xa8\x3f\x84\x1e\xbc\x68\x09\x16\x56\x25\xdb\xd6\x50\x18\x49\x58\x7f\x52\x3f\xae\x06\xca\xb5\x43\xa3\xf1\xb2\x24\xa5\x0c\xd5\x50\x51\xc5\xcf\xe0\x54\x0a\x02\xc2\x47\x5d\x47\x92\xe0\x47\x56\x75\x1f\x7e\x01\x17\xf8\x05\xff\x0e\xc6\x15\x3d\x00\xf8\xd2\x10\x7e\x2a\xb7\xb8\x29\x13\x85\xca\x86\x29\xb7\x12\x64\x11\x05\x04\x55\xf3\xe2\x80\x9c\xea\x3e\xb4\xc6\xac\x63\x56\x4c\xb9\xb0\xb6\xf6\xae\x29\x35\x10\xc5\xf0\xef\x9c\x81\x3b\xac\x98\x81\xdb\x20\x89\xae\x19\x2c\xeb\xac\xc9\x94\x71\x09\xc9\x6b\xde\x16\x47\xf0\x10\xe4\xb5\xe6\x84\x0d\x93\x0c\x6e\x33\xef\xcb\x8c\x0e\x95\xcf\x5e\xbc\x14\x16\x52\x39\x72\x6a\x80\x01\x74\x48\x73\x0c\xbc\x6e\x49\xf6\xa3\x1a\x78\x5b\xb6\x65\xe3\x00\xd1\xd5\xca\x78\x40\x30\xe7\x26\x69\x2a\xc0\xe0\x39\x36\xff\x9e\xd1\xf6\xef\x15\x6d\x4d\x92\x81\x9b\xd5\x5b\x63\x20\xef\xd3\xcc\x1b\x06\xce\x3e\x44\x09\x83\x20\xfb\xf7\xb5\xf2\x42\xf4\x58\x58\xf2\x90\xd4\x20\x24\xc1\x85\x9d\xda\x6d\x57\x9f\x3b\xaf\xca\x52\x9f\x2b\x58\xc1\x98\xdf\x21\x11\x49\xca\x0c\x2b\x38\xa1\xf8\x8b\xc9\xee\x6d\x58\x09\x3b\x4d\x33\x26\x50\x64\x88\x0c\x49\x95\x01\xb1\x9e\x63\x73\x8f\xf4\xdd\x1a\xd1\x08\xfe\x1c\xb2\xfe\x04\xc4\x7a\xbe\x58\x0a\x13\x99\xa5\xed\x86\x55\x97\xc5\x6c\xee\xa0\x3b\xd9\xf4\x84\xd8\xcf\xe1\xa5\x3b\x78\xf7\x84\x37\x21\x44\x49\x99\xc7\x6b\x38\xe9\x39\xf4\x36\x46\x62\xb2\x6e\x88\xaf\x01\x82\xa3\xea\x09\xd6\x80\x7a\xba\x9b\x61\x44\x2c\xc3\x08\x6e\x0f\xb4\x85\xd6\x93\x10\x09\x42\xd4\x59\x51\xbc\x5f\x0d\x27\x91\x24\x00\x11\x3a\x3a\xcc\x15\x58\x5c\xd7\xc4\x75\xad\x75\x13\x80\x17\xed\xc8\x3e\x8f\xae\x85\x66\x3f\xa0\x2a\x66\x5e\x76\x2d\x6a\x11\x9a\x58\xba\xb6\x98\x57\xde\x8c\x65\xf3\x19\x86\x50\x83\x21\x35\x27\x30\x72\x33\x99\x9b\x23\x55\x78\x98\x3a\x6e\x4a\x0b\x66\xcf\xf7\x5a\x3c\xad\x36\x6f\x17\x28\x66\x27\x4c\xfe\xad\xde\xba\x28\x4f\xbb\x99\x24\x21\xfb\x0d\x2f\xde\x92\xfd\x3c\x8f\x87\x40\xf8\x03\xf0\x82\x57\x07\x1d\x04\xe6\x0e\xb0\x38\xe6\xd9\x0f\x16\x43\xf6\x98\x80\xcc\x92\x61\x96\x8c\x60\x03\xdd\x26\x59\x03\xcc\x97\x43\x7a\x51\x84\x60\xa8\x6b\x5e\x6a\x64\xe1\x17\xc5\xca\xd4\xc8\x9b\x05\xea\xf6\x93\x1a\x3d\x35\x6e\x3c\x42\x9a\xfb\xa3\xed\x43\x47\x40\x64\xac\x40\x76\xff\x98\x80\x58\x55\x44\x6c\x80\xb2\x0c\x6a\x44\x1e\x8b\x57\x2d\x06\x14\x08\xf6\xf7\x01\x89\x66\xdd\x6d\x1a\x6b\xb2\xda\x48\x42\x90\x4c\x18\x91\xd5\x32\x92\x7f\x2f\xa4\x2c\x0f\x80\x52\x72\xc5\x1f\xec\x50\x61\x3c\x00\xb6\x43\xf2\xef\x27\x11\xe4\x1e\xaf\xef\xaf\xda\xb4\xc4\x31\x60\x09\x92\xdb\xb8\x38\x4a\x92\x71\x64\x20\xa8\x7c\x14\x35\x42\x64\x1c\xc9\x2f\x30\xa4\x43\x27\x4c\x8c\xb4\x83\x4b\x31\x8b\x91\xc9\xca\xfe\xa2\xb1\x4b\x8d\x19\x69\xbe\x7f\x7d\x01\x3a\x4a\x6e\x1f\xfc\xc2\x5d\x10\x6a\x2d\x24\xcc\x99\x55\xbb\x25\x26\x10\x4e\x76\x9b\xe1\x49\x3a\x9a\x23\x2e\x35\x78\x01\x0d\x99\x32\x35\x23\x9a\x95\x71\xa2\x5f\xa0\xad\xd1\x4b\x99\x0e\xe8\xf0\x7e\x81\x67\x88\x44\xc0\x88\x68\xd3\xa4\x28\xab\x1a\x91\xc9\x5b\xdd\x86\xc5\x34\x1b\x68\x18\x4c\x87\xcc\x0e\x91\x37\x3d\xa9\x96\x4e\x8d\x4c\xb4\xb1\xb1\x24\xd2\xf7\xaf\xc0\x8e\x1a\x99\x79\x63\xe3\x48\x9c\x52\x65\x6c\xaf\x2e\xfa\xf7\x57\x7d\x61\x16\x35\x77\x55\x97\xb8\x46\x08\x91\x4a\xa1\xae\x91\xb7\x47\xd9\x32\x11\x79\x39\xf8\x6b\x44\xac\x84\x04\xe1\xc8\xaa\x71\x8a\x36\xa8\xb1\xd0\x60\x29\xe9\x3c\xb2\x9e\x4f\xf5\x2c\xa6\xe0\x19\x6d\x9e\x88\x85\xb3\x12\xcf\x8f\x90\x44\xad\x21\xc4\xb2\x66\x29\x4c\xb1\xa2\x8f\x78\x63\x2c\x4c\xb6\xf4\xb6\x28\xd8\x16\xa6\x6a\x86\xb9\xca\x31\x5e\x63\xe1\x34\x34\x44\x25\x01\x09\x4f\xcc\xf5\xa9\x46\x2c\xcc\xac\xc3\x88\xe3\x75\xe3\xd5\x88\xaa\x38\xc8\x64\x0b\x88\x34\x83\x56\x03\xbd\xea\xe2\x7a\x48\xa6\xad\xea\x28\x8c\xf0\xe6\x07\x03\xdd\xb8\xb1\x24\xe7\xc4\x46\xc7\x89\x60\x68\x5c\x4c\x7f\x40\xe5\xac\xfb\x03\xfa\xfe\xbc\x16\xb8\xf2\x7c\x48\x92\x8a\xcc\xf8\x95\xb3\xbe\x46\x5c\x79\x3e\x8a\xdb\x08\x1b\xf5\x2c\xe1\xbc\xaf\xde\x05\x70\xd6\xcb\x1d\x5e\x23\x0c\xab\xc3\x3b\x9b\x81\xac\x06\x00\xd7\x7f\xba\x10\x49\x8d\xb8\x69\x4a\xd7\xbc\xd5\x88\xc2\xba\xb6\x36\xc4\xc1\xd0\x59\xa3\x6d\x4a\x8f\xc9\x67\x52\xa4\xf4\x68\xea\x62\x39\x1d\x93\x02\xa5\x49\x33\x40\x16\xc9\xed\x7e\x1f\xf5\x2b\xbc\x4b\x07\xb5\x72\x43\x08\x23\xe8\xf0\x32\x21\xd0\x35\x6f\xdb\x8f\x8e\xa0\x01\x59\x58\x67\x74\x64\x5e\xb1\xd4\xe7\xb8\xf3\x54\xef\x7e\x80\x22\x7f\x26\xc4\x29\x04\x96\xcd\x27\xcc\xc1\xeb\x5b\xf4\xfb\xc1\x13\x51\x02\x51\x3c\x18\xd8\x2b\xf0\x59\xeb\xd6\x44\xc2\xe2\x34\x2f\xde\x89\xa4\xde\xe1\x25\x3a\xe8\xdf\xd5\x7c\x71\xdb\xd4\x30\x51\xa1\xb2\xde\x30\x2b\x5d\x4e\x6b\x93\x29\x6c\x87\x43\x66\x8b\x48\x11\xd0\x08\x45\x16\xf0\xf0\x0a\x51\x04\x94\x7a\x1f\x29\x02\x36\xf7\x87\xd3\xa1\xb9\x3f\x10\xb1\x64\xd2\x08\x07\x76\x7a\xf5\x7f\x73\x86\x9a\x01\x82\x59\x87\x77\xe2\x92\x09\xf5\x01\x4c\x93\xc3\x44\xce\xfb\x16\xcc\x7f\x50\x16\xd7\xfa\x45\xbc\x48\x72\x02\x78\xc9\x94\x5e\x55\x94\xae\xa9\x16\x94\x22\x8a\xf9\x0d\x73\x13\x64\x17\x0d\x13\x1d\x92\x8b\x94\xb9\x50\xe3\xb5\x76\xb2\x1f\x1c\xd8\x47\x9e\x02\x71\x20\x32\xb8\x80\x03\xb3\x06\xde\xae\xd0\xdc\x66\x1d\x37\xb7\x17\x15\x08\x42\x54\xc6\xcd\x96\x6c\x6e\x94\xa9\xb0\x60\x81\x4b\x39\xc7\xab\x43\xe0\xd4\x07\x2c\xec\x90\xc3\xdf\xd3\x5d\x5e\x2d\xdb\xc1\x5d\x6e\x4b\x52\x7c\x28\x9c\x49\x29\x8b\xc8\x0d\x1a\x3e\x70\xe9\x3e\x37\xce\x50\x45\x77\xf3\x71\xb9\x9c\xe3\x5e\xf7\x15\xdb\x6a\xa4\xa0\xd2\x4c\x32\x6f\xa1\xb8\x29\x42\x4d\x10\x2f\x75\x03\x7b\x4d\x1b\x29\x7b\xa8\xbd\x18\xb0\x1f\xf0\xa4\xd2\x71\x99\x36\xc6\x46\xb8\x47\x90\xb2\xe4\xcb\xc4\x52\x33\xd5\x6d\x3a\xae\xab\x3b\xa0\xa4\x23\x91\x39\x51\x02\x15\x9a\xd2\x46\xed\x5a\xbb\x23\x2d\x43\xa4\xb6\x43\x0a\xc8\x25\xd0\x7e\x4d\x74\xc8\xab\x96\x53\x4d\xcb\x12\x29\x96\x97\x56\x3a\x51\xf5\x1b\xd0\x03\x9b\xc7\x80\xe5\x3c\x68\xf5\x13\xf3\x85\x24\x56\xa4\xc8\x2d\xec\x76\x87\xa5\x52\x98\x8c\x83\x30\x68\xc8\x65\x37\x14\xc5\x27\x88\x78\xdb\xf0\x0b\x3c\x89\x92\x5f\x78\x60\xae\x12\xa6\x12\xc5\x08\xf1\xe1\x94\xb8\xeb\xb4\xc9\xd2\xb2\x13\xca\xde\x92\x78\x25\x82\x2d\xd1\x29\xa1\xf8\x59\x77\x9f\x73\xd7\xa8\x72\x60\x4d\x30\x03\x9a\xd5\x25\x44\x67\x36\xb7\x97\x19\xd0\x88\xca\x94\x02\x8c\x88\xbc\x60\x50\x97\x30\xe3\xd9\xbf\x9b\x32\x37\x9e\x51\x95\x69\xd3\x91\x5d\x2b\xb1\x30\xaf\x81\x86\x1d\x4f\x09\x05\x35\x65\x1a\x7d\x7f\x74\xd1\x6a\x4d\x99\xfb\x54\x10\xa3\x5c\x8b\xa2\x71\x6a\xe2\xa5\x09\xd5\x38\x28\x4c\x78\x90\x99\x2b\x2d\xf1\x2c\xf9\x13\x18\x0a\x5f\x6d\x04\xad\xbf\xda\x9d\x1f\xb8\x07\x1e\xa9\x62\x16\x89\xd1\x9d\xf6\x16\x25\xc8\x67\x0a\xff\xac\xa9\x52\x0f\x6a\x7e\x40\x66\x20\x06\x97\x6a\xc3\x39\x28\x2c\xc1\x8b\xad\x8b\xaa\x6a\x42\x49\xc5\x61\xfa\x82\x35\x70\xbc\x7e\x67\x68\x80\xd7\xb6\x2e\x02\x14\xa6\x50\x74\x51\xf5\x0b\x6b\x6a\xd4\x29\x64\x06\x48\x8d\xe6\x16\x81\xd4\x78\x10\x9a\x42\x1b\x95\xfc\xe1\x37\x70\x12\x9a\x38\x5a\x03\x57\x77\x8f\x0b\x73\x82\x12\xd7\xab\x47\x73\xac\x29\xd0\x25\xdd\x8d\x52\xd3\xba\x1b\xd4\xec\xa2\x91\x5d\x78\x53\x2c\x7b\x9f\x64\xe5\x84\xb2\x8c\x3e\x7a\x52\xa7\xa9\xc2\x98\xe9\xf4\x18\x69\x8c\xbe\xa6\xa5\x31\x78\x43\xbb\x0d\xf4\x89\x55\x16\xb3\xbb\x24\xee\xfd\xc1\xda\xfc\x5a\x0c\x5c\x8e\x60\x03\x5e\xea\xdc\x77\xfe\x1d\x44\x6b\x12\x1c\xf4\xd0\x7a\xdf\xb1\xba\xb2\xd7\x8a\xd7\x71\xf9\x00\x4d\xcc\xfe\xb6\xbb\x26\x51\x0c\xd4\x69\x93\x06\xcb\x22\x69\x96\x4b\xec\xf3\x36\x1b\xdc\xa8\x9e\x15\x2a\x25\x66\x33\xe2\xe5\xfb\xf6\xde\x1f\x84\x5a\x68\x81\xef\x7b\x48\xcf\x49\xbc\x8c\x54\x9a\x52\x82\x2f\x7c\x98\x13\xe0\xb2\x85\x61\x46\xc0\x04\x29\x5b\xe4\x13\x5c\xe1\xd5\x73\xe0\x1d\x5f\x36\x3f\x24\x44\x59\x0e\x33\x40\x14\xa9\xb1\xf9\x24\xc1\x04\x19\x5f\x1d\xcc\x39\x2a\xc3\xa6\x26\x5a\x20\x5f\xdf\x83\xbc\x5e\x10\x72\x8f\xe8\x0c\x4e\xb4\x38\x4a\x1d\x48\x0c\xa1\xf4\x89\x0a\x47\xf8\x30\xf1\xa1\xee\x73\x33\x92\x0f\x1e\xd9\x86\xe8\xb8\xa7\xb8\x2b\xdb\x6f\x3a\x37\xb4\x35\x03\x16\x46\xb4\x23\x26\x21\x84\xd2\x0e\xd4\x34\xa5\xd1\xb2\xf9\xa4\x3a\x49\x08\xd2\xf4\xd2\x94\x46\xcb\xe6\x2d\xc4\x08\x4a\x3b\x26\xd2\x14\x3f\x8b\x92\x6f\x6b\x5a\xe2\xa4\x24\xe8\x74\x32\xed\x48\xed\x29\x4e\xa6\xcd\xb4\x77\x51\x03\xb6\x1c\x31\xe5\xc9\xa2\x44\xd6\x9a\x2e\x9e\xd0\x12\xf2\xd3\x85\xf8\x00\x89\xe0\x69\x8a\x7f\xc9\xae\x8b\xc4\xc2\x86\x92\xa5\xd2\x45\xd1\xc7\x72\xc6\x4d\xa1\xc0\x2b\x07\x79\x2f\x98\x91\xdc\x09\x20\x08\x6d\x37\xc3\xbb\xbc\x87\x6f\xce\xda\x1d\x60\xcf\x3a\xce\x28\x21\x60\x32\xbd\x76\xf9\xcd\xa4\xc7\x1f\xb9\x83\xd2\xc3\xd3\xdb\x5b\xfa\x59\x38\x10\x92\x1e\x56\xe5\x74\x1b\xee\x7f\x6f\xb7\x87\xeb\xe6\x76\x83\xa9\xcd\xcc\xf4\x21\xd2\x3e\x33\xc8\x1b\x3e\x08\x6e\x53\x1a\xe8\x7e\xc0\x1d\x2e\xf2\xcf\x48\xd4\x76\xb8\x4b\xde\x1e\xf4\xf0\x41\x62\x0e\x64\x43\x3a\xa6\x32\xcc\x7b\xc3\x9a\x44\x0e\x40\x73\xf0\x0b\xf9\xfb\xab\x29\x0f\xbb\xe6\xc0\x49\x0c\xb5\x1b\xde\xaf\x6a\x77\x76\xe8\x07\x10\x07\xbb\xdb\x3c\xfc\xc5\x5b\x33\xca\xce\x0c\x5d\x4e\x50\xf3\xca\xe5\x11\x67\xcb\x08\x46\x1c\xba\x9d\xa0\xe6\x48\xc1\x49\x8c\x2a\x47\x62\xca\x5f\x74\xb4\xdd\x25\x79\xe3\xf0\x83\x45\x1c\x9a\x07\x2a\x57\xab\x94\x41\xcd\x53\x9a\x4b\xba\x38\xa4\x66\x86\x1f\xaa\x4c\x49\xcd\x4c\xde\xb1\xfb\x24\x27\xec\x5b\x31\xc7\xcc\x64\xef\xfc\x7a\x40\x20\x35\x04\x7c\xbc\x0e\xac\xcb\xb4\xc7\x65\xaf\x77\x5a\xd5\xff\xd4\x66\x68\x92\x17\x07\xf6\x36\x15\xe8\xa9\x99\xc9\xdb\xf6\xaf\xe4\x0c\x66\xe4\x21\x32\x0d\xec\xb2\x8e\xe4\x82\x1b\x39\xc5\x19\x32\xa3\x05\xb3\x31\x59\x48\xe5\xf2\x36\xe4\xc2\xc3\xb4\xfb\x01\x6e\x09\xdd\xdc\xa6\xeb\x5a\x67\x65\x2e\x8c\x62\x11\xcf\xcc\xcb\x96\x55\xfc\xe0\x62\xd8\x80\x50\x55\xd6\x4c\xd5\x69\xa5\x0f\x5e\xd8\xaf\xe4\xa2\x12\xae\x73\x5d\x70\x6a\x26\x95\x84\x29\x28\x2a\xac\x08\xd1\x1f\x50\xce\x30\x61\x56\xec\x15\x59\x15\x32\x8d\x57\x2a\x12\x53\x73\x23\x19\xca\x13\x94\x1b\x16\x34\xfa\x05\xc4\x6c\x88\xe1\xe4\xb6\x9c\x53\x82\x09\xb9\x28\xd6\x10\x72\x5b\x98\xf1\x0b\x0b\x11\xea\x02\x69\xd5\x0e\x03\xc9\x9d\x87\x41\xf1\x83\xc6\x2f\xb4\x60\x1d\xa4\x1f\xfd\xc2\x5a\x72\x21\x82\xf6\xa8\xec\x2d\x3b\x02\xbb\x10\xb2\x59\xc0\xae\xf9\x0b\xf0\x04\x31\xef\x3c\x45\x93\xb2\x99\x27\xa0\x22\x73\x7a\x7d\x4f\x32\x94\xd2\x98\x07\x42\x46\xab\x3b\x64\xb9\x51\xc1\xcc\x5b\x9b\x1c\xdc\x9b\x29\x68\xd8\x36\x99\x77\x2e\xaf\x0e\x98\x0c\x6f\x66\xf0\x5a\xec\x84\x49\x93\x5a\x92\x85\xec\x0d\x79\xe7\x29\x29\x91\x2d\xef\x38\x2f\xa4\xb7\x66\xd8\xad\xec\x40\xcd\x4c\xcf\xc8\xa6\x20\x64\x5a\xab\xb6\x6e\xcd\x3b\x8f\x55\xc1\x88\xaa\xcd\xcd\x2c\x05\x31\x77\xcd\xfb\x9f\x89\xd8\x36\x9f\xe7\x83\xe5\x7b\x04\xc1\x94\x2d\xca\x96\x7e\x92\xa8\x5a\xf3\x01\xb3\x5a\xf4\x68\x94\x6c\x24\x8a\x67\x5c\x25\xea\xd3\x25\x9f\x38\xc3\xa5\x7f\xe4\x75\x9f\x84\xa4\xbf\x7c\x02\x85\xc9\x1f\x60\x07\x49\x2b\xca\x27\x55\xe2\xea\x1e\x76\x1e\xa8\xc2\x00\x6a\x2c\x37\x6f\xa9\x13\xd1\x68\x52\xf4\xf3\x2a\x77\x67\xca\xba\xd6\x3a\x0b\x05\x14\x34\x24\xaf\x65\x1a\xaa\x3c\x24\x0d\x55\xd6\xe3\xf3\xb5\xe8\xdf\x5d\x82\xfe\xa5\x98\xe5\x29\x89\x94\xcd\x7b\xee\x46\xf4\xbf\x49\x8d\x72\x85\x8f\x4c\x96\xa8\x69\xe6\xc2\x37\x35\xb9\xe1\x1e\x48\x5a\xc2\xd3\x4d\x3c\x09\x24\x18\xa2\xac\x76\xe5\x9b\x7c\xdd\x7c\xe2\x06\xa7\x91\x04\x98\x1f\xee\x48\x7f\xf1\x04\xf4\x28\xac\x3c\xc0\x8a\xb9\xc0\x83\xa3\xc6\x84\xf3\x90\x2b\x18\xd1\x14\x35\x24\x11\xe6\x87\x0a\x8f\x45\x8b\x07\x58\x91\xec\x92\x1f\x72\x22\x53\xcb\x73\xcd\x17\x7c\xba\xc1\x12\xe5\x28\xd7\xfc\x70\xcb\xea\x2c\x2a\x1b\xe4\x5c\x89\x22\x65\x79\x3e\x65\x65\x2d\xbc\xd0\x49\xa5\x46\x6a\xd9\x40\x6f\x3a\x59\xca\xb6\xba\xd4\x83\x65\x07\x92\xde\x56\xc2\x5a\x1b\x3f\xa0\x5f\x65\xf8\x13\xac\xbe\x0e\xc0\xc2\x5b\x30\xec\xf9\x2e\xbc\x05\x43\xd7\x0e\xd7\x12\xb0\x8f\x8a\xdb\x98\xf8\x6b\x88\x9b\x63\x36\x3d\xe0\xd9\x24\xf6\x57\xa6\xbc\xd2\x9c\x16\x50\x22\x28\x4a\x47\x53\x89\x58\x2d\x9d\x76\x85\x95\x84\x6d\xda\x2c\x91\xe7\x84\x84\xe1\x12\xb1\x3a\x86\x31\x82\x31\xe8\x6c\x2b\x91\x26\x75\xf7\x78\x13\x24\x3f\x40\xc2\xb7\x27\x91\xd6\x62\xa8\x07\xda\xa2\x54\xf7\xa8\x16\x0a\x27\x62\x66\x25\x81\xa8\xc5\xc2\x4b\x02\x62\x45\xf4\x85\x96\x29\x89\x79\x85\x57\xa8\xdb\x8e\x54\x90\x59\x6c\x4b\x41\x41\x95\xe0\xfa\xea\xf0\x81\xe3\x59\x73\xe4\xed\x9c\x36\xb1\x94\xbc\x16\x7b\xe8\x01\x04\x2a\xed\x92\x92\x17\x51\x0b\x86\x4c\x18\xb5\x30\xcc\xb6\x70\x40\x55\xc9\x58\x5b\x71\x9b\x92\xc9\x9f\x3c\x24\xf4\x22\xaf\xec\x72\x0d\x4a\x5c\x2e\x70\x0d\x5a\xc8\x28\xcb\xf6\x24\x51\xb5\x14\x02\x2d\x1e\x5f\x0a\x88\x5c\x0c\xac\x14\xe2\x59\x2b\x03\xd3\x93\x2a\x8d\xd5\x52\x38\x07\xb7\x21\xb9\x8a\xbd\x95\x82\x29\x34\xf7\x0f\x09\xaf\xfa\x77\x1e\xf7\x12\xcf\x4a\x5d\xcc\x45\x30\x23\xfd\xa2\x18\x29\x94\x9c\x4c\x7c\xc8\x11\x8e\x3f\xba\x64\xb5\x96\xba\xd6\xc0\xbd\x1f\x44\x80\x70\x0a\x33\x95\x93\x6a\x0a\x32\x80\xab\x09\xaf\x81\xb7\x79\x0d\xa6\x94\x15\xad\x1e\x97\x06\x6f\x98\x09\xad\xa1\xb6\x80\x78\x63\x69\x40\x98\xec\x6c\x85\x97\x65\x35\x93\xc9\xf2\x10\x4a\xfc\x2c\x9d\xda\xad\x44\xf9\xd2\xd7\xa2\x09\xc6\xbe\x58\xbe\xb0\x8a\xea\x35\xe6\x8e\xa5\xf3\xfe\x04\xe1\x0c\xb9\x13\x3e\x19\x4b\x5f\x40\x68\x16\x9d\x89\xd2\x1e\x12\xb2\x83\x3b\x98\x42\x59\x52\x3d\x83\x5a\xe0\x23\xb4\xa8\x59\x06\xe5\x72\x89\x75\x65\x50\xbb\x88\xfe\x02\xe5\x6e\xbc\x9f\x98\x1a\xa1\xfa\x9f\xb5\xe0\x2a\x4d\xfb\x37\xca\x00\x53\x31\x17\x42\x8c\x99\xee\xa0\xaf\x65\xa5\x4a\x78\x43\x0e\x1c\x5b\xee\x60\x5f\xbb\xc3\x0f\xe8\xfe\x55\x8f\x4b\x68\x93\x6d\xa4\xec\xbc\xab\x59\x43\xd0\x1c\x24\x25\xab\x2c\xa1\x4d\x0a\x4d\xd9\xb9\xd8\xee\x80\x30\xbb\x0d\x4d\xc2\xeb\x02\xf3\x8e\x5d\xd8\x65\x89\x68\xc3\x23\x92\x31\x0a\xe4\x83\x97\xed\xb9\x4d\xbe\x68\x4e\xba\xbc\x93\x3a\x39\xcb\x41\x2d\x40\x02\x45\x61\x8d\x62\x6b\x16\xe5\x00\xeb\x94\x90\x53\x10\xb4\xd6\x9a\x77\x20\x1c\x9a\x16\x6e\x0b\xfd\x95\x9b\xc7\x64\xae\x9f\x66\x79\x90\xbd\xfb\x84\xe1\xdd\x61\xcd\xd4\x70\x42\x60\x30\x9f\x62\x50\x5b\xf5\x62\x9e\x38\x93\xbc\xc9\x69\x64\x32\xdf\x42\x9a\xae\x3d\x92\x85\x36\x26\xaf\xfd\x49\xb5\x3e\x79\x84\x41\x10\xfc\x05\x0c\x63\xe6\xd6\x27\xce\x28\xf3\xa1\x73\x4d\xc2\x43\x22\xab\x4a\x36\xf6\x72\x91\x51\xbd\x1e\x80\x33\x78\xdf\x5e\xdc\xa6\xc6\x3c\xef\x84\xaf\x5e\x7e\x08\x83\x96\xd4\xca\xc5\x3d\x60\x91\xe3\x82\xcc\x6f\x8a\xbd\x40\x4f\xde\x23\xbc\xec\x53\xa9\xed\xb5\x20\x0c\xce\x72\x53\x99\xd2\x62\x48\x56\x0a\xcb\x8d\x6b\x4a\x3c\x4d\x08\x87\x8e\xb7\x2a\x28\x60\x68\xc9\xac\x20\x3d\x22\x1a\x4d\x88\x81\x6b\x86\x08\x69\xbe\xaf\x73\x15\xc2\x63\xf0\x96\x81\xac\xe8\x8b\xbf\x6a\xa1\xac\xe8\x39\x3f\x6b\xe9\x05\xc1\xc3\x95\x32\x48\xa8\xb8\x93\x2c\x66\x3d\x40\x82\x65\x28\xb8\x25\x9b\x0a\xa6\xd5\xba\x41\xf9\x16\x8b\xad\xa8\x89\x63\x33\x6f\xdd\x40\x5c\xaf\xf6\x5a\xa8\xac\x07\xa8\xea\x28\x39\xae\x6e\xf4\x1a\x54\xb5\xb9\x43\x92\x5f\x18\x18\xf1\x47\x9a\x50\xdd\x20\x2d\x0d\x83\x47\xdb\x7c\x53\x9b\x07\x80\xb8\x79\xc5\x6d\x17\xaa\xcf\x50\x2b\xca\xe3\x6c\xf2\x38\x54\x94\xbf\xb1\xfe\x5b\x03\x8e\xa4\xd7\xef\x30\xec\x89\x6d\x55\xdc\x6d\xe1\x12\xdb\xb5\x52\xa6\xf4\x80\xbc\x22\xde\x4a\x7a\xc5\x25\xa0\x9b\x55\xe6\x1a\x28\x0d\x09\x01\x91\xf7\xa4\x69\x0e\x91\x3a\xba\xb4\xb7\xba\x82\xd8\xb4\x83\x2b\x8b\x33\x5b\x8b\xaf\x11\xc5\x63\x9a\xbb\x28\xff\x1f\x63\x57\x72\x36\x3d\xab\x2b\x53\x39\x21\xb4\x99\x04\x9b\x3f\x17\x8f\xf9\x87\x70\x1f\x57\xe9\xab\xf2\xdd\xbd\x4b\x77\xdb\x20\x40\x88\x42\x23\x92\x66\x8b\xa8\x92\x54\xbb\xcf\x40\xe6\x3e\x8d\x22\xab\x86\xba\xcb\xc5\x0f\xfc\x03\x4f\xb9\xea\x2e\x18\x4a\x31\x4d\xc3\x49\x66\x34\x95\x17\xd6\x46\x53\x5f\x88\xc0\x4c\x03\xe6\xc1\x8c\x50\x79\x63\x9c\xfe\x61\xfb\xef\x7f\xd3\xd1\x1b\xa3\x32\xcf\xcf\xf4\x0f\x90\x6c\x3a\xdc\x47\x0d\x52\xed\x1f\x72\x18\xa2\xba\xd2\xf7\x4a\xd2\x73\xbc\xd0\x35\x94\xf0\x7c\x0c\x94\x36\x5d\x1f\x1a\xde\x83\x70\x93\xe8\x1b\x0c\x24\x36\x48\x1b\xed\xdd\x93\x9b\x47\x0d\x3d\x5d\xd1\xad\x64\xc0\x2d\xce\xd6\xa1\xf1\x42\xdd\xbe\x69\x4f\x8f\xc6\x23\x45\xe7\xde\x68\x5c\x2b\xe9\x12\x46\x63\x80\xb9\xe4\xc6\x78\xb1\x6e\xdf\xcc\x82\xb4\xd2\xfa\x1a\x3b\xa0\x1b\xb4\xc7\xe2\x68\xb9\x34\x26\x82\x17\x9d\xe6\x3e\x30\x4c\x9d\x21\xa3\x27\x0f\x6a\x98\x44\xbf\xde\x07\x1d\x51\x2d\xde\x37\x34\xa3\xfa\x8e\x38\x3a\xb6\xb5\x27\xb6\x53\x81\x60\x1e\x05\xba\xf5\xe5\x7c\x00\xdd\x5a\xb7\x38\x3a\x49\x52\x0f\xcc\x99\xa3\xac\xb8\x63\x30\xd8\xd8\x7e\x97\xe3\x45\xbb\xdd\x26\xab\xc1\xc2\x18\xb6\x2b\x8c\xc1\xb9\x17\xff\x0c\x6e\x6e\xff\x8f\x2b\xa6\xd9\x07\x7a\x44\x1f\x63\x83\x09\xb1\xc3\x5b\x77\xd0\xca\xf6\xf9\x02\x6e\x73\x9e\x36\xb8\xcd\x39\x1c\x79\xbc\x88\xb8\x6f\x5e\xa9\x80\x8b\xad\xd9\x31\x11\xb1\x28\x8c\xce\x41\xbb\x01\x24\xf0\xd3\xe1\x3d\x82\x1c\xbe\xf9\x0b\x94\xc4\xd7\xdd\x6b\xd0\xab\x4e\xa9\xec\xc6\x88\x93\x5f\x68\xda\x22\x4f\x6b\x37\xf1\xf0\x0d\x0d\x13\x7e\x74\xa1\xdc\x73\x63\xb0\x3a\x9e\x50\xce\x98\x15\xc3\xd2\x30\x26\x26\xda\x44\x41\x73\xa9\xec\x27\x63\x40\x71\xb9\x79\x29\x27\x38\xfa\xd3\x21\xf1\xa8\xce\xe2\x31\xc1\x1c\x9e\x86\x45\x8a\xa4\x82\x18\x08\x38\xb6\xde\x65\x2c\x82\xbb\xee\x1f\x70\x58\x7f\x3e\x08\x38\xbb\xf8\x7f\x92\xf4\x97\xc4\x3d\x63\x2c\x32\xb7\xe8\x5f\xe0\x65\xa1\xb8\xc1\xec\xda\xbe\x19\x8d\x1d\xc7\xaa\x85\xe5\x4e\x67\x77\x3f\x43\x61\x62\xc7\xd4\x81\x4a\x73\xd6\xc3\x0e\x66\x94\xf1\xb9\xcb\xf0\x0a\xa5\x07\x1c\x03\x09\x64\x7c\xc7\x1e\x0c\x0b\x56\x3e\xc1\x31\x0e\xc4\x5a\x5a\xb2\xa5\x8a\xd2\xbc\x0a\x73\xa8\xd1\xef\x48\xb0\xeb\x55\x3b\x30\x45\xa6\xe9\xc0\xaa\xe9\x62\x33\x0e\x1e\x09\x3e\x9d\xa1\xb7\x54\x5a\xce\x31\x60\x2f\x55\x35\x9d\x31\x5e\x6c\x3b\x9b\xe5\xf9\x49\x58\x68\xb1\x04\xac\xbb\x09\x41\x0d\x40\xd9\xcd\xdb\x09\xc9\x26\xab\xfd\x05\x06\x23\x7d\x3d\x68\x60\x59\x97\xdf\x1c\xe3\x24\xcd\x7e\xe6\x6e\xf0\xa0\x68\x40\x35\xc4\x1f\x67\x56\xc3\xd6\x27\x57\xe3\x1b\xea\xf4\xc5\xa6\x7d\xf3\x17\xf0\x8f\xb3\x8a\x6f\x40\x2d\xb9\x7d\xde\xcf\x79\xd2\xbc\x5c\xc8\xd8\xfa\x79\x86\xf6\xd9\x20\xe4\x4a\x76\x12\x7f\xdd\x10\x23\x9f\x67\x50\x20\xb4\x3c\x98\x3a\xdb\xd1\x5f\x03\x06\x53\xbb\x3c\x0d\xe6\x8a\x34\xa4\x1f\xf4\xa8\xb3\xcf\xf1\x60\xa5\x0f\x23\xf0\xf1\xa0\x4f\x43\x06\x1a\x49\x3f\xff\x57\xc0\x18\xd1\x44\x97\x39\x69\xe3\xc6\xd3\xf1\xbd\x06\xf9\x04\x9e\x45\x22\x4a\xb3\x59\x77\x31\x1e\xa2\x65\xb7\x87\x1c\x05\x3e\x05\x5f\x28\x3b\x1d\x71\x37\x10\xce\x51\x3f\xed\x43\x41\xed\x83\x18\x5a\xcd\x8f\x40\x40\x25\x37\x7b\x61\x07\xab\xd6\xeb\x20\x8f\x5f\x6e\xa0\xa5\x1f\xea\x7f\xff\x6b\x9b\xb4\x17\xf1\xeb\x9c\x32\x7f\x41\xf8\x51\xfd\x06\x22\x50\x24\x8b\x83\x81\xbd\xc3\x1f\x1c\xb8\x1c\x9a\x84\x0b\x69\xa5\xa6\x9e\x81\x98\xa6\x9f\x71\x24\x0a\x31\xc5\x46\x21\xe7\x0e\x36\x16\xd9\x91\x5c\x89\x2d\x6b\x3c\xe8\x19\xfe\xb6\x9f\x16\xc8\x38\x43\xcf\x81\x0c\x97\xa2\x90\x51\xbf\x61\x12\x37\x90\xbc\xfc\xcc\xfd\x53\xfd\x03\x72\xd4\x6e\xee\x01\x7b\xbe\x9a\x02\x04\xfd\xba\x01\x86\x70\xf8\x06\x12\x25\x91\x86\xc6\x50\xa8\xfe\x68\xfe\x04\xb6\x37\x0f\xf2\xc5\xa6\xf5\x33\x0b\x2f\x34\xad\x3e\xf1\xa2\x30\xad\xb5\xbf\x4f\xe7\x29\x3d\x83\x44\x6d\xf0\xc8\xd4\x8c\x22\xb9\xe6\xac\x6a\x4c\x2f\xee\xac\xc6\x5b\x91\xe6\x5f\x09\xdf\x80\x86\x75\xfb\x3c\x83\xd7\x75\xac\x07\x34\xac\xb6\xf6\x06\x60\x69\x9f\x7f\x72\x92\x0b\xa6\x69\xd4\x46\x8b\x9a\x3b\xd5\xad\x81\x4d\x3c\x5f\x84\xa8\x52\xb3\x45\xe3\xc5\x56\x5b\x21\x18\xff\xeb\x1b\x47\x34\xd2\xaf\x19\xc8\x6c\x37\xda\xcc\xd1\x52\xae\xfa\x0b\x68\xc5\x24\xea\x23\x21\xe7\xe6\x26\x78\x60\x0d\x37\x81\x58\x4f\xcf\x7a\x43\x0c\xbb\xff\xa7\x42\x56\x32\x2e\x90\xed\x66\x7a\x14\xb0\x56\xdb\xf3\x3b\x52\x1d\xab\xeb\x42\xf4\x5c\x15\x7f\x31\x60\xd7\xf0\x17\x10\x8a\x82\x04\xd1\x91\xb6\xe2\xf3\x7e\x92\xac\x31\x10\xa2\x9a\xb1\x3a\x93\xc5\xe8\xff\x01\x11\x29\x98\x14\xb0\x5c\x3b\xc0\x3d\x10\x45\xec\x5c\x31\xc1\xc2\x6c\x9f\xff\xe1\x6f\xaf\xfb\x7d\x0c\x1c\x1c\xdd\xef\xe7\x66\xf3\x0f\x30\x37\x49\x2b\x1e\x03\x51\x3d\x56\xac\x07\x0a\xb5\xa9\x20\xc1\x08\xe2\x4f\x9d\x8f\x11\x1b\x5c\x1f\xfc\x0c\x3d\x8c\x30\x40\x04\xaf\xfb\x5a\x94\xe0\x24\x5b\x08\xc2\x6b\xd0\x5e\x5f\xc1\xd2\xcc\xd6\xf9\x06\x74\xb8\x2a\x8c\x38\x82\x76\x70\xd5\xec\x1d\x11\x00\x09\x32\xa1\x04\x12\xe6\xd8\x90\x18\x2f\x1a\xad\x36\x61\xc7\x4c\x90\xa0\x16\xb3\x24\x8c\x67\x61\xf2\x80\x16\xee\x8f\x89\xa3\xc7\x42\x8c\x09\xca\xdd\x05\xe1\xa7\xa5\xde\x3c\xf0\x2c\x12\x27\x49\x74\x7b\xb9\xe3\xfc\x42\x62\x04\x91\x80\xb4\x89\xb6\x66\xc5\x62\x0e\x42\xef\xa8\xc4\xa7\xba\x50\x45\x96\x5e\x5e\x7e\x83\xc9\xf5\xd5\x07\x33\x29\xfa\xce\x16\xd0\x02\xfb\x80\x8d\x95\x87\xbe\xc8\x5c\xbc\x1b\x78\x71\x60\xbc\xff\x88\xda\x95\x40\xc4\x7d\x40\x3b\xe9\xb5\x40\xae\xc5\x22\x84\x17\x48\xad\x68\x9d\x6c\xec\x90\x2c\x02\xd1\x01\x27\xc1\xcf\xda\xee\x54\xa0\x7a\xc7\xec\x10\x2c\x16\xd5\x3b\x67\x5e\x63\x40\xda\x43\xc7\x68\x06\xb3\xdd\x58\xfb\x1e\x47\x4e\xa4\xba\x38\xa8\x03\x13\xa2\x8b\x03\x77\x11\x6f\xda\x03\x98\xd1\x72\xe5\xa0\x58\xf0\xb6\xcf\x0a\xca\xfe\x00\xc2\xda\xc7\x03\x61\xef\x70\x8f\xa0\xd9\x6b\xfb\xc2\xde\xd9\xbc\x67\x52\x85\x6b\xf1\xca\x7a\xc9\x82\x77\x01\xb7\x40\xa7\xa7\x09\x26\xb8\x09\x0b\x9e\x93\xee\x28\xba\x2b\xc7\x09\x68\xfe\x73\x8b\x14\xd8\xde\x03\xd0\xe1\x6e\x9f\x0f\xa8\x65\xf3\x4a\x9d\xc9\x0b\xee\x14\xe9\x5e\xc3\xcf\x90\x6d\xf1\xa7\x94\x71\x01\xa7\x42\x6b\x66\x02\x4e\x85\xd6\xbd\x06\x9c\x0a\xbb\x05\xe3\x95\xdc\xae\x39\x84\x53\xa1\x6f\x98\x01\x4c\xed\x70\xe1\x80\x76\xb7\x7d\xce\x93\x6b\xc2\x57\xd3\x1f\x2c\xbe\xa0\x39\xa3\x17\xe2\xf0\x33\xef\xbd\x52\x40\x04\x33\xb6\xdb\xff\x29\x2e\x5c\xda\x0c\x00\x2f\xce\x80\x26\x99\x71\xd2\x1f\x1c\x71\x43\xbf\xe0\x2d\x7b\x83\xb3\x2c\x46\xee\xdc\xa1\x1a\x25\xbc\x05\x9c\x93\x21\x88\xc2\x8d\xef\x6e\xc8\x15\x4f\xe3\x4d\x0a\x34\x06\x38\x0f\x6c\x1e\x53\x2a\x84\x2d\x4c\x9f\x0d\xda\x2a\x35\xc0\x38\x16\x5f\x8b\x03\x25\x6e\x3e\x87\xe6\xc3\xea\xc3\xfe\x3f\xeb\x4e\xe9\x99\x43\x30\xef\x3e\xf4\xb9\xf0\x89\xf2\xe4\xc4\x6b\xda\x5e\x5c\x1e\xd6\xed\xc7\xc3\x58\x09\x77\x01\x17\x09\x67\x48\x88\x07\x2a\x59\x4b\x25\xb8\x17\xf8\x1e\x3a\x01\xbc\x9b\xed\xa8\xf3\x87\xcb\xb2\x06\x35\x51\xf3\xa6\xa8\xc7\x09\x1d\x74\xe9\x6e\xa0\x43\xa7\xf7\x6f\xa1\x27\x83\x50\x94\x33\x7a\xcc\x8d\xdc\xa7\x06\x89\x92\x7d\x57\x98\xd0\xf2\xda\xe5\x75\x22\xe9\xa3\xb2\xde\x8e\xb9\x71\x7b\xe9\x32\x3d\x99\xe5\xdc\xd7\xf1\x89\x0a\x7c\xc3\x99\x29\x26\x71\xf0\x74\x9f\xb4\xeb\x68\xed\x26\xd4\xbe\xf6\x3e\x9e\x74\x8d\x94\x34\x9f\x0c\x4c\xf6\x85\x7e\xb2\xc8\x4d\x33\xd5\x05\xec\x35\xfd\x8c\xf8\x1d\xad\xc4\x84\x6b\xc1\x36\xdd\x22\x31\x5a\x31\x09\x04\x3c\x9e\xb9\xc2\x8b\xa7\xb6\xdd\xac\xd8\x02\x1e\x77\xa5\xa4\x92\x15\x6f\x22\x74\xd9\xd0\x78\xd6\xac\x91\xa4\xe7\x05\xfd\xbb\xba\xac\xdc\xa6\x26\xb2\x66\x9d\x57\x3d\x03\xac\x7f\x1a\xa4\xea\x72\xf9\x87\xa4\x51\x4d\x36\x60\x1c\x29\x67\x26\xe2\x60\x9c\x07\x6b\x36\xba\x81\x6b\x0c\x0d\xf9\xbf\xc3\xcf\x50\xa6\x2f\x3f\x53\x0f\xe2\xd5\x27\x3a\x9e\x6e\x10\xf1\x44\xc3\xff\xf3\xd2\xb4\x4c\x01\x15\xb4\x3a\x62\x26\x53\x3d\x2a\x67\xf1\x98\xf0\x56\x50\x0e\xf2\x31\x1b\xb9\x45\x63\x62\xea\x47\x9d\xdc\x93\xfa\x59\x7f\xdf\xa1\xdc\x31\x89\x9d\xf9\x69\x34\x8b\xcc\x69\x2e\xe0\x38\x7b\x8e\x49\x83\xec\xdc\xe7\xcb\x3d\x52\xa1\xdb\xdd\x04\xb9\x4b\x2b\x49\x57\x4f\x47\x4d\xcd\x9e\x59\x6b\xf5\x7c\x61\x9f\xfb\x19\x0b\xe5\x69\x1b\x38\xa8\xbd\xf2\x08\x92\x79\xd9\xf5\x0f\x27\xd0\x4c\xdf\x03\x6f\x8f\x91\x7c\x21\x72\x82\xc0\x40\x0a\x8a\xf9\x62\xd7\x5e\xa4\x36\x9f\xc1\xfb\xbb\xae\xeb\x33\xa8\x4d\xf2\x33\xc4\xb7\x39\x2d\x75\xad\x5e\x68\xf8\x1f\xb8\x64\xfe\x98\xac\x5a\xac\x02\x15\x63\x22\xe4\x25\x94\x54\x79\xcc\x17\xdd\xf6\x22\x85\xf1\x0c\x88\x78\x2f\x1c\x6a\xed\x38\x56\x6d\x22\xe0\x25\xa6\xe5\x08\x55\xad\x1e\x26\x03\x5e\x1c\xe0\x34\x27\x12\xfb\x7a\xc7\xcd\x41\x31\xe1\x17\xb8\xb2\x3a\x56\xe6\xbc\x40\x93\x98\xe3\x85\xb7\xe1\xac\xa0\x73\x92\x46\xbd\x4f\xe5\xab\x9d\x5f\x27\xb0\xab\x2f\x4e\x73\xe1\x60\x34\x2f\xad\xc1\x0f\x44\x02\xc3\x9a\xbd\x78\xf0\x4f\xd8\x3e\xcf\x39\x6d\xfe\x01\xfb\xc3\xc2\x71\x91\x24\x35\xf8\x02\xd3\x5e\x64\x3c\x98\x74\x2a\xf5\x6d\x73\x02\x99\xda\xfd\x67\xb2\x86\xb2\xf3\xd5\xcc\x3d\xb9\xc1\x4d\x8c\xff\xfe\xf7\x49\xed\x38\x19\xae\x62\xc1\xb4\x4f\xdc\x5f\xfd\x7f\x72\x87\x46\xbd\x93\x66\x93\xc0\x5b\x83\x90\xe9\xdc\x59\xe8\x42\x2d\x12\xec\xca\xe2\x31\x51\xde\xc7\x4e\x18\x33\xa1\xae\x2e\xfa\x93\x50\xd7\xe2\x9a\xd5\x12\x9d\x7a\x78\xbe\x58\xb7\x17\xcf\x3b\xa0\xee\x67\x16\x00\x65\x8b\x99\xeb\xd8\xf1\xec\x0e\x0e\x36\xa8\x41\x66\x66\x47\x8d\x91\x48\xd5\xe9\x93\x26\x3c\x4d\xed\xa4\x37\xcf\xce\x17\x44\x23\x90\x6a\xf1\x18\x5e\xa4\x3a\x9d\x2e\x6d\x9e\xf0\xdd\xf6\x4a\x9f\x20\xc9\x67\x35\xcb\x03\x79\xe5\x4f\xb2\x8a\x2e\x9c\xf3\x04\x37\x7f\x3a\x84\x92\xd9\xcc\xc8\x78\x6a\x07\xe7\xcd\x2b\x79\x45\x2d\xbc\x68\xb5\x3a\xfa\x63\x32\x02\x46\x35\x53\xc6\xbc\x20\x49\xdc\xe5\x85\x69\xd6\x25\x65\x5e\xbc\x04\x5b\xdc\xbe\x70\xb6\x2b\xe9\xfd\x98\x70\x5c\x75\xfa\xa5\xc9\xec\x90\x4e\x0f\x36\x91\x1d\x72\x7d\x5a\x7c\x30\xef\x6a\x10\x0a\xe0\x62\xf9\xfe\x62\xd5\x6e\x27\xc0\x09\x4f\xd7\xe2\x33\x0e\x48\xd4\xae\x08\xf3\xa6\xfe\xa6\xba\x01\x1e\x51\x42\xc3\xf3\xa6\xf3\xa4\xe1\xc6\xcd\x89\x2e\x7e\xe3\x62\x1b\x6e\x94\x39\xdb\xfc\xfc\x80\x08\x3d\x03\x9d\x3a\x34\x69\x3e\x79\x13\x13\x95\x89\x3e\x85\xb0\x27\xd1\xa7\x3d\xca\xe6\x03\x86\x2d\x6e\x02\x8a\xb3\x4f\x17\xc9\xb0\xfe\x80\x18\xc7\xdb\xf4\xa1\x7d\x5e\x20\x7b\x21\x8d\x8f\xfd\x42\xd6\x0f\x53\xf9\xfb\x93\x2e\x6e\x31\xe8\xda\x06\xbe\xf5\x03\x6b\x88\xe0\x05\x25\xb1\x61\xdf\xfa\xe5\x10\xbb\x7e\xc8\x21\xfa\x07\xf2\xc6\xa6\x67\xca\x95\x30\x81\x3b\x45\x97\xfb\x80\xbe\x53\xb8\x6f\xfd\x4e\xb4\xe0\x0f\x18\x1d\xef\xe7\x17\x80\xdb\x0d\x7a\x41\xad\x5c\x64\x16\x5d\x1b\x55\xb2\xe2\xb6\xb5\xd1\xd2\xea\x2f\xb6\x82\x51\xaa\xc7\xd4\x3b\xeb\x04\x58\xe9\x26\xa1\x73\x6c\x6d\x94\x9e\xdd\x9d\x50\x61\xe8\x2f\xb0\xcf\xab\x9b\x04\xbc\x98\xa6\x01\xbe\x85\xa6\xa9\x60\x99\x24\xae\x57\x01\x49\x5a\xf8\x05\xcf\xdc\x52\xfd\xcc\x3d\xaa\xfe\x11\x46\xe4\x60\xf8\x85\x30\xa2\x22\xb4\xb0\x0a\xe9\xd1\x32\x54\xec\x38\x89\xff\x45\x37\x5b\x5f\x69\x57\xa5\x3d\x4d\x20\x6f\x41\x4b\x5c\xaa\xbf\xe0\x09\xa3\x4b\xfb\x82\x96\x58\xd5\xdb\xc7\xaa\x09\xe8\xfd\x05\xb8\xdd\xb3\xca\x0a\x3e\x36\x0f\xaf\x0a\x59\xf7\x79\xc6\x89\x22\xf5\xca\x02\xd4\x1d\xce\x5e\xb7\x52\xd3\x6b\x7e\x64\xa6\x47\x27\x19\x5f\x00\xaf\xc3\xf9\xe8\x56\x63\xa4\x9a\x9f\x79\x8c\x09\xc7\x2d\xd4\xcf\x71\x56\x9f\xd5\xb1\x05\x9a\xff\x47\x55\x13\x8f\xaa\xf3\x6e\x2f\x39\xb0\x3a\x87\xe9\x67\x06\x7a\x6a\xe9\x7a\x8a\x22\xd1\xd8\xc1\xe0\x9e\x59\xb8\x12\x38\x35\xc2\x82\x9e\xd6\xd9\x29\xd7\x60\x0d\x2c\xfd\x3f\xc0\x3b\x82\x48\x0b\x7a\xd9\xa2\x93\x7b\x8d\x64\x67\x75\x80\xfc\x39\xc3\xd9\xee\xd6\xa0\xe8\xf2\xa0\x19\xf2\xfd\xd9\x84\x03\x69\xff\x96\x9b\xa0\x88\x37\x83\x41\xb9\x5b\x3c\xca\x17\xd1\xf6\xd2\xfc\x3f\xe5\xad\x39\x90\x39\x7a\x8a\x5b\xc4\x28\xbd\x29\x91\xba\xdc\xb1\x75\x2b\x01\xb0\x87\x89\x4a\x94\xd5\xd3\x42\x40\x6c\x7e\x04\x20\xb6\xf9\x6a\x01\xff\x96\xea\x06\xb9\x45\xdc\x1e\xd6\xcd\x72\x85\xee\xb8\xce\xe6\xbe\x12\x0e\x4f\xf7\x80\x4a\x07\x3a\x53\x16\x03\xc0\x87\x9f\x39\x24\x35\x30\xb1\x50\xdd\xcf\x18\x92\xc4\xff\x02\xb6\x6d\x46\x9e\x8b\xb5\xbb\x85\x2e\x16\x0b\xdc\xf8\x96\xbd\x5e\x6c\xbb\x15\xef\xda\x85\x1e\x86\x9f\x89\xb7\x2d\x37\x16\x6b\xbe\xa9\x45\x04\x44\x15\x9d\x93\x2b\xb1\xad\xbb\x44\xbe\x47\xd5\xb2\x1c\x0b\x11\x52\x9f\xed\xb1\xc0\xbc\x66\x46\x42\x57\x69\x91\x56\x42\xd7\x3f\x95\x10\x1a\x0b\xb0\x75\x38\xad\xe2\xda\x89\x3d\x3c\x67\x3b\x56\x51\x00\x6b\x31\x89\x8f\xb3\x24\x2d\x96\x9d\x74\xda\xa3\xb5\x73\x55\xcc\x9a\x3b\xf7\x93\x86\x48\x2d\xad\x13\xbc\x2c\x16\xf2\xf6\x95\x61\x1d\x98\x56\xdd\x67\xd7\x01\xe9\xec\x85\x87\x52\xb6\x84\x1b\xa0\x4c\xf8\xbc\x90\xa9\xa5\x35\xae\x23\x99\x4b\xe3\x40\x04\x55\x11\xc2\x5f\x47\xee\x17\x7f\x01\xaa\x3d\xf1\x07\x8e\x39\xcb\xe7\x33\x89\xd6\xda\x9f\xe4\x36\x35\x00\x47\xda\x8f\x58\x48\xad\xeb\xf4\x07\xf1\xdf\xff\xc2\x1e\x6d\x8b\xd1\xd9\x56\x66\x2c\x82\x57\xcf\xd3\xc9\x40\x09\x37\x80\xbc\xfa\x66\x5f\x06\x55\x7d\xbe\xe7\x10\xb4\x54\xf0\x45\x18\x4e\x20\xb9\x2e\x30\x8f\x4f\x55\x96\x16\x77\xad\x80\x75\x61\x0c\x16\x9d\xd0\xa3\xda\x90\xb7\x2e\xc0\x6d\x2f\x1c\x94\xa2\xce\xe1\xb0\xa0\x14\x2d\x46\x4b\x77\x01\x77\x8b\xa2\x9b\x00\xc8\x43\xb8\x53\x32\xfa\x07\xf0\x9f\x05\xe3\x0d\x29\xe2\x49\xbb\x79\xe0\x6c\x7e\x81\x9e\x62\x3e\x92\x6e\xac\xb4\x59\xe1\x06\x8d\xde\xd3\x4f\x16\x78\x52\x93\x88\xa1\x72\x79\x83\xf5\x24\x91\x5a\xfa\x87\x17\x25\x8b\xc6\x87\xdb\xc8\xf0\xe1\x49\xc9\xe2\x1f\x20\xec\x7c\x70\x3e\x28\x8f\xe6\x6d\x46\x77\x83\xe5\x3e\xa1\x8f\x70\x96\xfc\xf5\x80\xfd\x84\x88\x76\xfa\x1b\x58\xad\xb4\x53\xef\xe9\x88\x93\xfd\x87\x61\x08\xf8\xed\xcc\x27\x69\xbd\xd2\x8e\xa8\x2a\x95\xbf\x1c\x3b\xbc\x63\x1d\x95\xbe\x03\x18\x7a\x5e\x76\x02\xc3\xe5\xe7\x87\x3d\x8a\xa6\x8d\xec\xa3\x93\x74\x27\xd0\x13\x43\xee\x08\x19\x2f\xa6\x60\xc3\x3e\x16\x4a\xdb\x99\x12\xd2\x11\xa8\x3b\xf2\x88\xdb\xfd\x71\xdf\xe0\x52\xb7\xdc\x23\xb7\xb5\xe6\x71\xdf\xb0\xd8\xe1\x16\x2f\xbe\xe0\x2e\xc1\x91\x3a\x53\x76\xb8\xd3\xda\x63\x79\x4f\x87\x02\x77\x59\x10\x1c\x29\xb8\xbc\x03\x29\xda\x05\x7f\x27\x52\xf4\x3a\xb0\x7a\xa4\x75\x63\x3b\xab\x41\x3a\x9e\x69\x47\x10\x97\xa3\x29\xf7\x42\x2f\x6b\x7f\x40\x9c\xa6\x49\x28\xdc\xc6\x7a\x1f\x59\xc6\x55\x4b\x78\xec\x95\x3a\x1c\xed\xf3\x1d\x59\xc5\xed\x75\xbc\x13\x29\xea\x52\xbc\xa7\xa3\xab\x2e\xb5\x3b\x1c\x0a\xec\x63\xbc\x43\xcd\xea\x68\xcd\x1d\x0e\x06\xf6\x24\xd9\x81\x24\x87\x33\xdd\xee\x50\xb3\x3a\xdb\xea\x0e\x35\x6b\x1b\xa3\xfc\xe5\x14\xda\x11\xad\x1e\xae\x21\xb1\xc3\xcb\xb5\x78\x0d\x1a\xf9\x42\x92\x70\x7f\x71\xe7\xec\x26\xb8\x41\x4a\x48\x32\xee\x8d\x03\xf2\xfb\x84\x4f\x66\xd5\xc6\xa8\x7e\x49\xe7\x1d\xa9\x89\xac\xd4\xdf\xe9\xe3\x6a\xef\x9b\x9d\xa9\x1d\x9d\x3c\x7a\x87\x52\xb4\x3b\xc6\x7e\x4f\x8f\x01\x9d\x95\x3b\x73\x39\x3a\xd8\x67\x47\x29\x48\x5f\x9b\x77\x40\x57\x15\xf3\x1e\x7b\x2a\x45\x3f\x2d\xd0\xdd\x45\xf3\x8c\x82\xe4\x56\x7f\xec\x83\xcc\x28\x22\x99\xa9\xd1\xd9\x35\xf6\x17\x58\xf6\x6a\x5e\x61\x45\x1c\xbb\x55\xef\x83\x37\x77\x6f\xa9\x17\x48\xce\xee\xa9\x8b\x14\x8f\x9a\xdb\xe0\xa6\xd6\xa0\xe0\x84\xda\xbd\x21\x88\xf3\xdc\x60\xe2\x3a\x6f\xea\x17\xa6\x4d\x95\x32\x1e\x3b\x4b\xda\x08\xc2\xec\x13\x45\xd4\x2c\x45\x26\x21\x8d\x57\x77\x12\x60\x7b\x10\x70\x18\xad\x3f\xbf\x40\x2b\x93\x69\x9e\xbc\xd8\xeb\x58\xd9\xa1\xb4\xac\x42\xbb\xfb\xa4\xd5\x55\x1f\xac\x1f\xfe\x17\x8d\x8b\xd2\xd5\x44\x2e\x62\x7a\x29\x8a\xf6\xf5\xb2\xa0\x2b\xaf\xec\x0c\x6d\xb7\x9a\x73\x07\x72\x73\xac\xc0\xbe\xb3\x0b\x0d\x62\xa7\xf4\x34\xb7\x24\x38\xdb\xfc\xc6\x2b\xa0\x1d\x56\xbe\xef\x39\x2a\xbf\x70\x82\x06\x77\x41\x75\xb1\x88\x4e\xe4\xe5\x51\x40\x05\x58\xdd\xc3\xd1\x48\xb4\x16\x13\xd6\xeb\xea\x51\x02\x36\x39\x22\x64\x67\x52\x1b\x27\xcd\xde\x89\x82\x74\x90\xed\x88\x25\xaf\xd2\x26\xec\x27\x7b\x54\x07\x2c\xf8\xed\xb4\xdc\x3b\x5d\x2a\xad\xbc\xdd\x2f\x02\x2d\x8b\xe8\x17\xa5\x74\xd5\xbe\x1d\x3b\xaa\xab\x18\x06\xed\x8c\xfe\x71\x02\xdc\xfd\xe2\xbc\xf9\x85\xd4\xfe\xeb\x99\x5a\x9e\xf0\x0b\x1c\x95\x25\x28\x70\x4c\x95\x42\x6d\xbf\x1e\x3c\x8b\xa4\xc4\x35\x9a\xa6\xbb\xe1\x59\x63\xb8\x09\x50\x05\x5b\xf6\x17\xc6\x54\xe7\x3c\xdc\x6f\x92\xe8\xff\x93\x24\xcd\x1b\x6a\xa1\x6c\x56\xce\xee\x70\x78\xfc\x6d\x3e\xfa\x1e\x36\xa1\x51\x21\x58\xc7\xe9\x6e\x77\xd6\x2a\xb1\x36\x76\x7f\x72\x94\xff\xbe\x38\x58\x8b\xc4\xea\xaf\xe3\x47\xa5\x44\xf8\x87\xf6\xdf\xff\xaa\x73\x46\x1f\x80\x10\xf6\x75\x3b\xa8\x6d\xb2\x42\xf7\x20\xa6\xf8\x74\x41\x96\x15\xb8\x3a\x00\x11\xaa\xee\xb5\x07\x5c\x0a\x6d\x45\x39\x68\x3b\x75\xd4\xc6\xb1\xf1\xec\x29\xfe\xe2\x1d\x86\xef\x95\xc7\xc6\xb3\x47\x18\xe0\xd8\xb0\x58\xf5\x4f\x79\xb4\x0f\x84\xd3\x18\x2f\x1c\x85\x79\x13\xfd\x0c\x30\xa8\xa3\xf1\x28\x3c\x7c\x75\x9a\x1f\x28\x06\x6d\x86\x3f\x18\x1b\x63\x15\xf6\xc1\x84\xcf\x56\x39\x1f\x85\x26\xee\xe2\x36\x79\x1e\xea\xbc\x3d\x6a\x41\x1e\x58\x11\x91\xba\x20\x4f\x6b\x1d\x6c\xd3\x3f\x40\x1a\xe9\xa0\x38\x78\xc2\x4b\xdf\x75\x40\x37\xe4\xa4\x62\x07\x23\x5b\x8a\x7b\xe0\xad\x2e\xfc\x01\x98\x45\x77\xeb\x03\x27\x7c\xf7\xba\x65\xc6\x19\x71\xf8\xd1\xb0\xd1\x75\x95\x38\x98\xbe\xd9\xb1\x32\x47\x23\x89\x22\x19\x71\x29\x06\x1d\x07\x4b\x37\xcf\xe9\x17\xe8\x5e\xa4\x59\x61\xba\x66\x57\x19\x38\xa0\x5b\xfa\x70\x67\x87\x84\x35\xcd\x8c\x42\x71\x0a\xaf\x83\x76\x4e\x33\x1b\x74\x4f\x55\x92\xe4\xc8\x03\xdc\xdc\xda\x99\x49\x4d\x88\xf6\xe0\x09\xde\xdc\x25\x36\x9d\x94\x22\x47\x4f\x1a\x4d\x03\x98\x51\x3a\xb7\x63\xd0\x9e\xa0\x0b\xce\x01\xed\x52\xd5\x65\xe3\x18\x88\x08\x32\xcd\x08\xc2\xb6\x5a\xe6\x78\x8f\xfc\xe2\x30\xf1\x83\x95\x9c\x9d\x65\xf7\x40\x94\xb6\x6b\x33\x1c\x80\x00\xc3\x7e\x83\x07\xe2\x54\x6c\xba\x3a\x50\x04\xcf\x41\x6e\xc7\x20\xc3\x9a\x39\x52\xb7\xb4\x4c\xd3\xcd\x37\xfc\x09\x82\x67\x3d\x2d\x41\xe9\x25\xf9\x76\x40\xbb\x54\xad\xdb\x39\x02\xb7\x13\x09\xa7\x03\xf5\x44\x9c\xa5\xe5\xa0\x76\xc9\xd1\x01\x47\x04\x9d\xf7\xc5\x0e\x89\x33\x96\x3b\x3d\x30\x73\xfa\x82\x61\x27\xd6\x45\x1e\xd4\x07\x39\x26\xff\x80\x75\xb4\x7a\xb3\x13\x57\x74\xb7\xd0\x39\x0c\x51\x35\x07\x5c\x79\x45\x03\xa2\xbb\x1d\x02\x74\x40\xa1\x54\x8b\x9f\x19\x87\x61\x0a\x00\x43\xbc\x36\x50\x0f\xd9\x83\xee\x80\xd7\x9e\x43\xd8\x8f\x15\x24\xc0\x3f\x60\x5f\x4b\xb7\x72\x2c\xca\xd7\xe5\x1f\x70\x72\x09\x5a\x1f\x3b\x87\x24\x8a\x98\xec\xc6\x5a\xb7\x63\xe7\x85\xda\xab\xcd\xc8\x69\xeb\xb4\x8e\x9d\xce\x29\x5e\xed\x9d\x58\x59\x90\xf0\xd8\xc1\xe4\x82\xca\xc7\x41\xa7\x4b\x0b\x49\x28\x78\x5c\x25\xeb\x80\x82\xc7\x25\xd9\x0e\xe2\x12\xc1\xb5\x03\xa6\x49\xc3\x90\xe3\x60\xa1\x47\xbf\x0f\x59\xe2\x4d\x90\x89\x9f\xfd\x3d\x93\x96\x68\xdb\x22\xb4\xc4\x1e\x68\x47\xc2\x18\x33\xd3\xc1\x43\x64\xba\x05\x98\xd0\x3c\x4d\xe7\xef\xbf\xff\xb5\x2e\xc8\x79\xc0\x52\xe9\xec\x06\x07\x0c\x95\x36\x4c\x1e\x27\x04\xc3\xdf\x0a\x0a\x1d\xb0\x4a\x36\x3b\x56\x1d\x48\xfb\x6c\x03\xc9\x71\xc2\x09\xca\x5b\x16\x9a\x9d\xea\x04\xc3\x07\x8c\x90\xb6\x3f\x1c\x17\x27\x54\xe4\xbe\x18\xa9\x7e\x26\xe4\xe2\x85\xca\xff\xa7\x90\xd0\x8c\x42\xf3\x63\xdb\xef\x81\xac\xcd\x61\x0b\xf8\x71\xa1\x66\x80\x20\xd0\x41\x88\x24\x5c\x77\x30\x2b\xb3\x93\x2b\x1c\x37\xb3\x49\xe8\x36\x74\x40\x51\xe3\x6a\x3d\x07\xfc\xdb\x5c\xde\xe7\x60\x7d\x38\x97\xe7\x39\x6e\x76\xa1\x59\x78\xb2\x0b\x2d\xeb\x83\x51\x1b\xbe\x3c\xbc\xfd\xf8\xdc\x7c\x98\xf7\xc3\x87\xd2\x43\x15\x99\x76\xf8\x89\x08\xe6\xb0\x0d\xe4\x64\xa1\x0d\x55\xc6\x1f\xe7\x8f\x30\x5d\x7b\xf2\x84\x09\xce\xf5\x50\xce\x5f\x76\x52\xf4\x43\xce\x9d\xbf\x60\xde\x1f\x09\xa2\xf3\x97\x43\x9d\xfa\x01\x02\x55\x9b\xf2\xdc\xf2\xd8\x50\x13\xc8\x8c\x6c\xdb\xe7\xb9\xf1\xac\xd3\xf1\x7a\x6e\x8c\x78\x57\x8b\xf4\x39\xb3\xae\xef\xdc\x38\xfd\xfe\x80\x0e\x37\x3a\x90\x4f\x68\x3a\x5c\x67\xe2\x44\xb6\x1a\x17\x18\x39\x0b\xd3\x60\x69\xcf\x9c\x85\xc7\x82\x4e\xc3\x33\x43\x21\xc4\xa6\x27\xfc\xbd\x1c\xf4\x7b\x26\xb0\xd1\x99\x7f\x22\xcf\x71\x58\x65\x79\x56\xba\xf9\xf8\x19\xd5\x83\x75\x4d\x3f\x91\x5d\xe6\x57\x3f\x1f\xf0\xf4\xd2\x89\x7b\x22\xbd\x4c\x93\x2c\x39\x5f\xe4\x32\xbb\x6e\xfe\x67\x63\x8a\x4b\x35\xd0\x10\xcf\xe1\x79\xa1\x55\xac\xfb\x99\xaa\x04\x31\xf6\xd9\xb2\x47\xf5\xc0\xe0\x05\x17\xfa\x39\x1b\x49\xd0\x34\xb4\x9c\x6a\xfd\x80\xe8\x05\xeb\x8e\xcf\x4c\xb6\x37\xfd\x43\x72\xa1\xfa\x40\xf6\x18\x57\xe8\x38\x61\x26\x53\xe1\xf1\x71\x76\x5e\x89\x75\x66\x9f\x8c\xa8\x35\x5f\x43\xf7\x10\x56\xa4\x9e\xfd\xc4\xbc\xf8\x03\xd4\x4e\xd7\x6e\x3b\x61\x26\x73\xd1\x90\x13\x0e\x5a\x4e\x67\x7a\x22\xe2\xd6\x99\xe6\x4f\xea\x2a\xcc\x1d\x83\x5e\x91\xd5\x1f\x60\xdf\xe8\x84\x3f\x61\xe2\x72\x35\x84\x33\x71\x88\xa0\xcf\x39\x72\x5e\x35\xe8\xc1\xa5\xd4\x33\x60\xc7\xe7\x03\xa0\x0e\x6b\xe2\x4e\xc4\x27\x38\x1d\xf5\x19\xbc\xd4\xeb\xbc\x3e\x33\x1e\xc1\x34\x31\x6b\xb1\xf5\xb2\x67\xe4\xe6\xf6\x27\xc8\xd5\xa8\x23\xfd\xcc\x88\x85\x4f\x27\x17\x36\xa2\x89\xc2\x3c\x7a\x61\x60\xb5\x72\x06\xf3\x73\x72\xde\xb4\x50\x2f\x48\xa9\xae\x3a\x75\x32\x27\xcd\xf7\x07\x6e\xa2\xe5\x1f\x20\xdc\xbd\xb2\x93\x28\xa2\xff\xa9\xc2\xea\x39\xe1\x3b\x5d\xdd\xff\x62\x7f\x5a\x17\x64\xac\xb1\x3d\xf4\x24\xa8\x31\x6b\x52\x97\x22\x48\x72\x2e\x0c\xc8\xe4\x2d\xea\xd7\xfd\x7f\x0e\xc8\x0d\xe4\x80\xfc\x06\x8b\x7d\xf9\x99\xac\xe4\x0d\xc5\x60\x06\x57\x57\x3a\x11\xcc\xe0\xc8\x94\x73\x91\xb7\xfc\x01\x84\x9f\x70\xfd\xb9\x78\xff\x16\xa4\x39\x19\x93\x6b\x4d\xf3\xb9\x43\xe0\x9a\x48\x66\x38\x36\xfb\xa3\xf2\x6e\xb3\x43\xe3\xb9\x33\xae\x4c\x24\x65\xd6\x40\x2f\xf4\x9e\xec\xec\x1f\x5e\xce\x70\x3d\xaf\xf3\x20\x8a\x76\x93\x80\x51\x2e\xb9\x74\x1e\x14\xfa\x66\x3e\x44\xe9\xba\x82\xf7\x99\x29\x69\x3c\xce\x63\xa2\xfc\x8c\x86\x79\xb0\x78\xa8\x3f\xd8\xd1\x83\xff\x07\xa6\x16\xde\x3c\x0f\x64\xd0\xb0\x50\x38\xb0\xf6\x66\xee\x83\x43\xf0\xfb\xef\xf9\x6a\x8b\xc0\x79\x02\x93\x5b\xc8\x9c\x3c\x6e\x8b\x5f\xc0\x21\xe3\x75\x40\xea\x41\x17\x7a\x3e\xa1\x3f\x1a\xce\x2c\x7d\x22\x54\xc1\x99\x04\x4e\x44\x2a\x18\x88\x9d\x30\x9a\x39\xbc\xe2\x3c\x79\x43\xf3\x90\xce\x5c\x69\x75\x99\x2e\x5f\xc2\x76\x27\x5d\xbe\xac\xaf\x3e\x2f\x8a\x67\xb3\x17\xe1\x96\x0f\xdb\x8b\x5a\x82\xcf\x0f\xc8\x2b\x2f\x00\x7c\xa6\xcf\x97\x27\x0e\x3e\x5f\xae\x7a\x7f\x22\x1f\x8d\xbd\xfb\xce\x17\x7f\xcd\xee\x4d\x8f\xfc\x34\x36\xdf\x9f\xd0\x69\x85\x6f\x79\x27\x4c\x73\xce\x71\x7c\xde\x2c\x4d\xee\x1e\x6e\x54\x5b\x11\x66\x3e\x91\xfe\xd0\xfa\xa3\x13\xb6\x3a\x5b\x19\xce\x9b\xe9\xb6\x34\x84\x3b\xa5\x8a\xc6\x88\x04\x36\x4e\xc7\x7f\xde\x14\x1c\x06\x31\x50\x7a\x39\xed\xed\x79\x73\x03\x14\x93\x70\x93\x46\x7f\xf1\x60\x10\xea\x82\x15\x82\x8d\x7a\x90\xe2\xc6\x01\xdd\xe7\x93\x1b\x42\xd3\xc6\x30\x63\x0f\xe2\xa1\xc2\xd3\x47\xc2\x43\xf5\x92\x4e\xa5\xeb\xf7\x23\x51\x43\x3f\x6c\xd4\xfb\x57\xfd\x00\x65\x9f\xe4\xe1\xc5\x40\x5e\x5b\x0a\x2e\x56\xc2\x70\xc2\x95\x0b\x96\x35\xdf\x97\x2e\x58\xd6\x9c\x7e\xe0\xfa\xe5\xb8\xdd\x24\x79\x52\x17\xa4\x8b\x3e\x55\xce\xb0\x72\x41\x8f\xe6\x8c\xa1\x17\x33\x22\x3a\x5a\xf8\x82\x29\xcd\xa9\x20\xae\x0d\x0c\x25\xf9\x75\xa1\xda\xda\x66\x15\xf9\x85\x58\xdd\xcf\xb8\x37\xa6\x62\xf5\xff\x58\x0b\x6d\xdd\xab\x50\x6c\x0b\x07\x5f\x05\xd1\xc2\xcd\x2f\xf0\xec\xd4\x2d\xed\x82\x21\xac\xfc\xcd\x48\x74\x15\x00\xbb\x9f\x5b\x03\xc3\x9b\x9c\x92\x73\xe6\xee\x1f\xe2\x0b\x7d\x81\x42\x69\xc3\x19\x97\xae\x5a\x50\x33\x45\x53\xf4\xc2\xd3\xee\x34\xae\x57\xe5\x88\x74\xd8\x5f\x15\xc2\x47\xc7\xcc\x05\xc3\xda\x87\x13\xa0\x65\x73\xb0\xe1\x55\x79\x97\xae\x7e\x01\x60\x20\xdc\x00\x77\xe9\x87\x24\xec\x52\xf3\x12\xc0\xaa\x15\xac\x57\xe5\xfd\x44\x37\xbf\xab\xc1\xe3\x5b\x9b\xee\x42\xd9\x34\x27\x26\xbc\xe0\xb2\xe5\xb4\x27\x17\xdd\xa7\x9c\xe4\xe6\xa2\x4d\xca\x65\xf5\x2e\xa8\xb4\xec\x25\x73\x75\xec\xd2\xe2\xff\x09\x14\x3d\xa8\xce\x8c\x75\x9a\xb6\x9e\x2b\xe1\x1f\x92\x7b\x35\x2f\x2c\x90\xfb\x19\xc5\xa0\x91\x49\x38\xeb\x82\x77\xbf\x93\x20\x5c\xc8\xbd\xe2\x4c\x9a\x17\x8b\x66\xd8\x5e\x77\x21\xf9\x8a\x9d\xdd\xae\x91\x9b\x50\xc3\x18\x40\x00\x3f\xb7\x08\x2d\x57\x37\x4d\x38\xf1\x3d\x0d\xcc\xc5\xd2\xdc\x01\xb1\xa5\xda\x8b\x1c\x83\x3e\x08\xe8\xc6\xbd\x74\x50\x50\x59\xba\x5d\x80\x8e\xae\x36\x77\x05\xe7\x59\x04\x04\xf1\x80\x80\xe2\x45\xf5\x94\x0f\xc7\x0b\x81\xa8\x4e\xee\x76\xbd\x38\x6e\x76\xb3\x1b\x5c\xf3\xad\x82\xbd\x80\xd4\xaa\xd5\x4b\x17\x93\x0d\xba\x44\xde\x05\xe8\xf6\x59\x98\x49\x09\xac\x5b\xe3\x85\xcc\x29\x4e\x26\x78\xad\x8c\x1c\xd1\xa8\x98\x01\xda\x36\xa8\x6b\x71\xe5\x34\x8a\x34\x94\x09\x3f\x5e\xd0\x71\x39\x1d\xe1\xb5\x88\x4e\xdd\x40\xae\x9c\x5f\x98\xec\x53\xe3\x46\x0d\x5c\xd7\x18\xb8\x5e\xf0\x56\x1d\x1a\x72\xa1\x6a\x99\x9d\x35\xaf\x9d\x2e\xaf\x52\xa3\x5d\x34\x9c\xb9\xc2\xdd\xb5\xf3\xae\xa3\x2e\xa9\xd1\x72\x51\xbd\x0b\x96\xb3\xcf\x3c\xc0\x99\xde\x6e\x58\x17\x7d\xe7\xed\xdf\x7f\x1d\x5c\x2b\xad\xc5\xc1\x51\x49\x1f\x72\xc1\xb2\xd6\xbc\x14\x07\x2f\x12\x82\xc5\x17\x9c\xe5\x5d\xa1\xe9\x62\xda\xe6\xf9\xe9\x93\x76\x53\x41\x9d\xeb\x44\x11\x0e\xcf\x64\x82\x29\xa1\xb9\x8b\xe5\xcb\x3e\xd2\x80\x68\x4a\x17\xf4\x0b\x5a\x2b\x07\xd3\x5d\x48\xec\xec\xdc\x3e\x17\x03\x43\x6d\x9b\xbd\x4e\x1e\x6d\x16\xc3\x27\x4e\x0d\x1f\x6d\x48\xee\xe7\xec\x0b\xd7\xc9\x99\xed\xfe\x01\xfb\xca\x07\x17\xd0\xd6\x57\xb0\x03\x6d\x19\xaa\x5f\x48\xf6\xe7\xb8\xfc\xeb\xe2\x18\x44\xf3\x95\x51\x0a\x1a\x14\x54\x57\x36\xbc\x5e\x84\x52\x5e\xdb\x8b\x1e\x43\xab\xff\xe9\x1c\xba\x12\x20\x98\x1e\xaa\x43\x3d\x69\x30\x16\x3a\xe3\xcb\x75\xf1\x20\xf2\x39\x73\x13\xc7\x4b\xd3\x75\x21\x56\xf4\x23\x0e\x6f\x6e\xaa\xf0\x17\x10\x7f\xe6\xae\x9b\x8a\xe8\xf0\x17\x5c\x38\x8d\x09\x6e\x52\x4e\x29\x71\x01\x7b\x35\x27\x7a\xba\x88\xbd\x7c\xb4\xc1\x61\xbf\x7c\xfe\xe7\xba\xf9\x7f\x0c\xca\x0b\xcf\x02\xbc\xae\xc6\x73\x65\x6a\xea\xe5\x1f\x90\xbe\xc0\x90\xe5\x81\x8d\xd4\x22\x1d\x55\x31\x8c\x68\xaf\x84\x62\xba\x8b\x5c\x0f\x4b\x63\x6a\x0c\x0f\x75\x41\x16\x67\xac\x92\xe6\xd3\xf4\x81\xef\xa4\x61\x14\x9c\xae\x9c\x89\xf2\x82\x85\xd4\x61\xf6\x17\x9c\xb0\x9c\x0f\xe8\x7a\x20\x05\x24\xba\xee\x5f\xae\x53\xe8\x87\x24\x71\xea\x07\xa4\x25\xd5\x2c\xde\x3f\x9e\xae\x4b\xcf\x80\x3c\x9b\x5b\x84\x7d\x40\x43\xbc\x61\x1e\x75\x22\xcb\x1b\x25\xd2\xac\x52\xbb\xe1\x19\x6f\x7b\xc3\xbd\x51\xaa\xa8\xbd\x8d\x67\x8c\x09\x20\xaa\xd3\x65\xe6\x06\xaa\xb3\x34\xbe\x99\xd4\x5a\xa7\xe0\x8d\x1c\xd6\x76\x08\xb8\xb7\xdc\x9e\xee\x11\x28\x4f\xa8\xf0\x2e\x2c\xb6\xa7\x19\x80\x7b\x94\x73\x91\xdc\x25\x0f\x2d\xcd\x19\xb4\x86\xf6\xbe\xbe\xa1\x35\xb4\x03\xca\x8d\xfc\x2c\x5b\xf5\xff\x38\xc8\x25\x72\xee\x82\x43\xce\x53\x50\x78\xa8\xb9\x7d\xe0\x40\x1d\xab\x77\x39\x91\x55\xc3\xed\x63\x84\x92\x37\x77\x21\x23\x7b\x40\x54\x5b\x69\x86\x98\xef\xda\x88\xea\x06\x0a\xac\x36\x51\xdf\xa9\x93\xf4\x24\x13\xf6\x49\x30\xdf\x2f\xec\x9b\xc6\x60\x77\xc5\x2a\xeb\x94\xbd\x53\x25\x69\x36\xa9\x64\x3c\x8d\xa9\x92\x46\x91\x00\x95\xe3\x07\x16\xde\x30\xae\xda\x35\xef\x6e\x3c\x64\xb5\x5d\x6f\x66\xc0\x76\xdc\xd2\xdd\x98\xe5\x46\x5d\x20\x64\xd4\x3e\xb8\x37\x42\x46\xdb\xe7\x7f\x0a\x2d\xbf\xc0\x5a\xb7\xb6\x75\xdd\x69\x4d\x35\xb3\xc2\x5a\xea\xdb\xdb\xcd\xa0\x50\xa7\xe4\xbf\x3b\xf1\x89\xfa\x40\x69\x34\x23\xa8\x9b\x1a\xc7\xe2\x67\x9e\x78\x3a\xd8\x6f\x20\xcb\x61\x24\x70\xc3\x9a\xea\xa0\x89\x7b\x24\x4d\x5a\x6d\xf8\xe2\x87\x0b\x6e\xde\x08\x13\xf5\x1d\xe4\x1e\xbc\x94\x48\x71\x7a\x0f\xf2\x93\x46\x35\xb8\x16\xfe\x1f\x86\x20\x8f\x1a\xee\x50\x8e\x4c\xb9\x83\x3e\x13\xba\x83\xde\xa8\xfd\x61\xff\xe8\x3b\x68\x5a\x97\x2e\xe0\x0e\x6a\xff\xd7\x9f\x62\x86\x6e\x54\xad\x75\x62\xda\x1b\xe9\xf6\xec\x20\x7b\xcf\x17\x04\x38\x9e\xf9\x86\xfa\xd0\x0e\x8e\x37\x40\xe1\xb2\x87\xf9\x0d\x0c\x68\x75\xdc\x3d\x73\xd6\xfd\x03\x26\xd9\xcf\x2c\x0b\xe2\x1d\xb3\x72\x8e\xc5\xce\xb0\x5a\x1a\xf9\xde\x8b\xfb\xc3\x0d\xd0\xf4\x20\x8d\xdf\x0d\xc0\xe6\xba\xb6\x37\x12\x87\xb8\x82\xd3\xbd\x48\x81\xc6\xcc\x7c\xd2\x76\x0a\xb9\x77\xc0\x31\x8b\x35\xd4\xf8\xb0\x4a\xfe\xde\xc9\x8a\x96\x73\x70\xa5\xb2\x63\xcb\x0d\x44\x58\xed\x23\x74\xc3\x84\xf9\x91\xe4\x07\x2f\x8f\x02\x32\x37\x4c\x96\x36\x03\xdd\x4c\xff\x6c\x77\x85\x3b\x21\xa1\xc5\xc2\x81\xca\x57\x66\x0c\x18\x2d\x3f\x87\xc1\xb1\xa3\x50\x89\x7b\xa0\x98\x90\xb2\xec\x86\x8f\xfa\xb2\xfb\xf4\x7d\x50\x7a\x8b\x93\x0e\x62\x29\x3d\x9f\x9c\x27\xe9\xa5\xee\x33\x47\xa1\x71\x9f\x1c\x85\x68\x60\x44\xa6\x0b\xd6\xde\xd0\xbf\xd9\x40\x76\x23\xfd\xb3\xbd\x5b\xef\x93\x27\x9e\xa0\xf3\x4d\x2f\x76\x1b\xea\x6f\xe4\xcc\xf3\xad\xe4\x4e\xc8\x58\xdc\x24\x75\x8a\x9a\x7a\x42\xc6\xe5\x16\xc9\x90\xcb\x44\xf3\x82\x59\x3c\x2c\x82\x11\xf3\x30\xcb\x92\x99\x6a\xe8\xe3\x3e\x92\x07\x11\x93\x9f\x9b\xfa\x7d\xa1\x1c\x96\x89\xbe\x50\xcb\xd8\x2c\xfb\xe2\xab\xed\xa3\x87\xbc\x6f\x5e\x21\x3e\x6f\x90\x6a\xd1\x44\x55\x95\x57\x1b\x5e\xe5\x86\x47\xf7\x83\xb2\x34\x3f\xff\xff\x72\x83\xbd\x7a\xef\x07\x9b\xc6\x14\x31\x39\xb3\xab\xa5\xde\x4f\x52\x20\x92\xe0\xcf\xd5\x9c\xa9\xec\x7e\x20\xba\x3c\x6f\x0f\xcf\xf2\x7f\x13\xfb\xfc\x98\xfa\xa8\xea\xb9\xa0\xd8\xdb\x4f\xcf\x84\x3b\x1a\xc3\x83\xf0\xc3\xf2\xf9\x20\xd7\x7a\xea\x07\x5c\xb2\xbb\x3f\xe0\x85\x33\xfc\x03\x15\x1e\xe1\x2f\x72\x71\x4d\xd4\x83\x7b\xb9\xbe\x80\xa5\x73\xb8\x0a\xfb\xb3\x41\xe9\xad\x7d\xf6\xc0\xa9\xdc\x9b\xe2\x41\xe9\x0f\x7b\x20\x3e\x1b\x34\x20\x9a\xc8\x87\xc1\x85\xd6\xd4\x3f\x4c\xc7\xe1\x9b\xd6\xb3\x25\x87\x6a\x9c\x1b\xdd\x36\xdc\xc7\x8b\x82\x6a\xd5\x5a\x3c\x40\x3d\x5d\xb8\xec\x29\x70\x49\x14\xae\x7b\x58\x86\xcc\xc5\x72\x1f\xa0\x9c\x65\x0f\xe6\xa7\xa4\x58\x76\x93\x49\x84\xdf\x80\xfd\xc0\x13\x83\xbc\x74\x8e\x86\x7a\x98\x97\xce\x72\xf9\x29\xbc\x1f\xea\x3c\x7d\x90\x22\x79\xd9\xf3\xf6\xa9\x98\xca\xe5\x67\xf2\xe8\x9f\x9c\x14\x1e\x1a\x73\x9d\xea\xf2\x61\x91\x5a\x57\x0f\x7f\x12\x28\x49\x46\x3e\x2f\x50\x2a\xce\x41\xf5\xd4\x9c\x57\xad\x4d\xea\xc3\xa6\x7f\xb8\xb1\xb8\xfe\x82\xbb\x4a\x83\x6e\x64\x06\xb1\x13\x70\x8f\x4b\x39\x3f\xb4\xac\x3a\x1e\xf1\x61\x19\x33\x6d\x9a\x87\x6e\xdd\xae\x83\xfb\xb0\x8c\x99\xbd\x0c\x1e\x98\x5a\x6d\x1f\x78\x12\xd6\x4c\xff\xf0\xee\x54\xab\xe2\x9f\x4e\xad\x5f\xf3\x0b\xb9\x94\x5a\x3a\x78\x89\xd9\xdb\xe2\x61\x49\xd8\xcd\x44\xe5\x52\xfa\x87\x94\x78\x1a\x67\xe7\xda\x6a\xaa\x53\xa3\x26\x41\xfe\x8c\x94\xf4\xfe\x81\xc0\x5c\x7a\x97\x07\x8e\x63\xd6\xdf\x3e\x70\x15\xb7\x1e\xe6\x19\xdc\x16\x3a\x75\x1f\xe6\x8f\xb3\xdb\xc2\x33\x2e\x7c\xe1\x16\x10\x19\xec\x61\xa0\x4e\x9a\xbd\x60\x9f\x80\x65\x5d\x50\xfd\x41\x04\x61\xd7\x61\xf4\xc0\x73\xfc\xb3\x05\x62\xc7\xb3\x26\x16\xb9\xde\x6c\xde\x7d\x18\xff\xe7\x24\xa2\x4f\x24\x3e\x14\x85\x2f\x18\xea\xf6\xcb\x7d\x60\x5b\xfd\x6c\x00\x80\x23\x5b\x46\x9f\x99\x8b\x2f\x92\x91\x0c\xce\x59\x4a\x9e\x89\x49\xf2\x1e\x43\x6a\xe2\xf5\xed\x81\x77\x50\x7f\x40\x8d\xaf\x94\x76\xcf\xa4\xb7\x67\x73\x17\x39\x0a\x13\x01\x9e\x17\xd8\x7f\x56\xae\xad\xbe\x40\xd4\xa1\xf5\x7e\xcf\xe2\xd2\x5a\xfc\xac\x1c\x86\xa8\x58\x54\xfc\x58\x20\xad\xdc\x9a\x7e\x83\xfe\x02\x7e\x61\xa2\xe4\xa4\xf7\xc5\x22\x13\x7b\x6b\xa1\xea\xc7\xfa\x2c\x2f\x6b\xb3\xb9\xa4\xea\xb3\xa7\xe8\x56\x27\x48\xf8\xe6\x0b\xfa\xb3\x43\x74\x0b\x09\x3c\x70\x4e\xb3\x8a\xe0\xd9\x29\x51\x2c\xbb\x59\xf6\x63\x6d\xfe\x02\x2c\x62\x11\x07\xc5\xdd\xfa\x6c\xad\x3d\x89\xd2\xdc\xd0\x88\x6a\x67\x8c\xe7\xc0\x0d\xd6\x93\x07\xdf\x33\xeb\x02\x9f\xa3\xbf\x2b\x6a\x26\xcb\x2c\x18\x52\x00\x3d\x07\x79\xc0\x44\x21\x2f\x86\xf5\x08\xcf\xc1\x25\xef\x7e\x81\xb7\x6c\x21\xbb\x07\xc1\x84\x36\xbb\x3e\xc8\xf1\xf6\x91\x41\x27\xf9\x54\x5c\x76\x22\x16\xd7\x3b\x81\xb1\x85\x76\xde\x78\xa0\xc8\xf3\x15\xf4\x39\xe9\xcf\x25\xfd\xcd\x73\x52\x27\xaa\x7b\xf1\x73\x71\xee\x45\x02\xd4\x6a\xbe\x93\x3e\x48\x3a\xf1\x99\x86\x2b\xf9\xc1\x1f\x40\xa8\x79\x1e\x2f\xca\x2c\x4b\x7b\x78\x84\xf9\x26\xff\x40\x0d\x66\xbf\xfd\x07\x06\x48\x47\xfd\x3c\x54\x7a\xd5\x3f\x65\xf4\x79\x60\x6c\xdc\xec\x0b\xf2\xa4\xb5\xd1\xe0\xe5\x86\x66\xd2\x1c\x0e\xc0\x66\xb0\xfc\x40\xc3\x65\x8f\x99\x07\x1a\xae\xcf\x99\xff\x90\x9b\x75\x13\x7c\x60\x6c\xb4\xf7\xf0\xf3\x90\x71\x34\xde\x87\x8c\xe3\xff\xc7\x7f\xff\x0b\x27\xaf\x7a\x80\xe8\x3e\x8e\x11\x0f\xf4\x53\xce\xb4\xf0\xb0\xbc\x86\x03\x3e\x1f\x66\x9f\xb0\xab\xc7\x03\x84\x27\x23\x45\xfc\x60\xac\x9c\x72\xc2\x89\xdf\x8f\x34\x4e\x3d\x93\xa6\xa2\xe7\x97\x26\x25\xbf\x8d\xdf\x0f\xda\x96\x7f\x8b\x18\xbf\x1f\x58\xf9\xdf\xa4\xc5\x0f\x80\x6e\xca\x0c\x17\xbf\x1f\x57\xbd\xeb\x99\x52\x61\xf3\x0b\x58\xf5\x7f\x6c\x12\xbf\x8d\x14\x85\x9e\xa1\xe5\x2b\xa2\x00\x76\xca\x4d\x76\x94\xf8\xa1\x50\x5b\x6f\x7e\xc6\x2c\x35\x0d\x01\x7e\x6b\xbd\xa9\x43\xa8\xb4\x7a\x13\xc9\xb4\x5b\x7e\x9e\x41\xd0\xbf\x83\x31\x7e\xac\x2a\xab\x43\x20\x7e\x70\xf1\x9f\x32\x15\xc5\x0f\xf5\x2f\x94\x2a\x33\x7e\xc8\xa5\xa6\xfb\x48\xfc\x0a\x64\xbe\x27\x09\x2a\xa8\xe1\x49\x64\x1e\xb4\xb5\xa9\x4b\x64\x83\xe8\x4d\x73\x00\xdc\xd5\x9b\xe6\x08\x6e\x71\x9b\x3c\x60\xe2\x57\x73\x52\xb4\x8e\x2c\xaa\x16\x9e\x85\x9a\x0b\x23\x22\x98\x09\x4d\x09\xb4\xe2\x47\x28\xd5\xd4\x44\xcb\x61\x6a\x58\x2d\x7b\x15\x19\xc8\xdb\x3b\x65\x68\x89\x5f\xe3\x26\xf3\x62\xb1\x6e\x9a\x8e\xe4\xf8\xb5\x74\xbf\xf3\x27\x07\xdb\xd0\x50\x1a\xef\x49\x6e\x82\x67\x76\x17\xe1\x1d\x0c\xd2\xf5\x02\xcb\xc8\x86\x19\xa0\x53\xd8\x15\xad\x38\xea\xca\x2a\x4e\x3a\x7e\x30\x1e\xf6\xae\xff\x47\xb6\xa0\xa1\xc3\x7a\x38\x55\x9b\x38\x7e\x48\xaf\x30\x55\x92\x37\x7e\x48\x10\x56\xbd\x2f\x46\xce\xa6\xbf\xb8\xf9\x85\x3b\xa1\x5e\x48\x0b\x02\xfb\x60\xf3\xff\x4c\x75\x2b\xad\xe1\x2b\x08\xd8\x82\xbf\x80\x25\x76\xf8\x19\x65\xb6\x36\x4d\x0c\xcb\x93\x7d\x9e\x29\x60\x3d\x53\x2c\x57\x16\x1e\xf8\xe4\x6e\x57\x97\x33\xbb\xd4\x4c\xa1\x7a\xfd\xcf\x53\x0b\x7f\xf5\x61\x26\x62\xbe\x83\x25\x92\xe0\xba\xa5\xca\xa7\xf1\x5b\x64\x99\xe2\x17\x68\x97\xed\xfe\x81\x27\x76\xf1\x27\x64\x2a\x0f\x03\x48\x63\xf5\xcf\x0f\x90\x39\x9f\x26\x78\x4b\x28\x7e\xe1\x61\x13\x62\xb2\x9d\xea\xcf\xee\x1f\x10\xc4\x58\xfd\x0c\x59\xff\xf9\x1f\xf1\xaa\x9f\xff\xb1\x37\xba\x56\x17\xda\x9f\x6e\x9e\x3c\x52\x46\xfc\xc5\x44\x14\x3f\xe8\x8a\xe6\xcf\xdb\x97\x90\xa2\x8b\xff\x8e\x9c\x36\xcd\x3b\x13\x18\x84\x27\x16\xd6\x41\x55\x1b\x8b\x1f\xfc\xb2\x94\xa2\x3f\x7e\xc8\x67\x20\x93\x67\xfc\x0e\xa6\xb3\x57\x83\xe7\x44\xf8\x84\x06\x74\x52\x3c\x78\xe7\xc2\x1f\x5d\xd6\xe8\xf8\xc1\x83\x5c\x36\xd3\xf8\x5d\x1c\x83\x37\xd9\x35\x49\xa2\xdf\xc0\x32\x79\xd7\x31\x8a\x2e\x4c\x33\x3c\x8e\xba\xf9\x99\xe7\xbf\xf7\xd4\x9d\xab\xa6\x0f\x10\xf4\x36\x7f\x16\x40\x3c\x61\xbd\x65\x1e\x96\x43\xf3\xf3\xce\x79\x14\x4d\x0f\xbb\xfc\xf7\xc2\xf6\xa3\x8c\x13\x7f\x6e\xf4\xd5\xd1\x79\xb8\xfd\x52\x96\x84\x7e\xe0\x16\x11\xbf\x6e\x69\xd2\xe9\xfe\x64\xf2\x8d\xa6\x1f\x38\x11\x7e\x4e\x7e\xf5\x17\x1c\x57\x31\x59\xd0\xd3\xe9\x0c\xdc\x52\x65\xa1\x3e\x37\xb6\xe8\xff\xf7\xf7\x8c\xfc\x77\xb9\x8b\x0d\x55\xa3\xfa\xf0\x73\xca\xd0\x7f\x13\xb7\x15\x3a\x77\x7d\x7e\xa0\x7b\xb8\x5a\xc4\x91\x26\xf5\x66\x6c\xac\xc7\xb4\x3c\xca\xd4\x26\x14\xbf\xc1\x3e\xb4\x7c\x5b\xe1\x2e\xf4\xd4\xbd\xa7\x5a\x28\x48\x21\xb6\x4a\x71\xe4\x2f\x10\xa5\xa6\xd8\xb9\xd8\x2a\x8f\x93\xea\x17\xe8\x4d\x28\x22\xe0\x7a\xbd\xc9\x85\x27\x36\x9a\x35\x74\x49\x8d\xad\x41\x80\x49\xc2\x6d\x8d\xa8\x74\xf8\x8b\xac\x7c\x22\x0e\xc0\xf9\x23\xab\x62\x6c\x08\x1a\x93\xbd\x2a\xb6\x4e\x08\xe5\xd5\x63\x25\xcf\xe5\x26\x3b\xaf\x5b\x62\xec\xad\x27\x97\x69\xae\xe0\x8c\xdd\x87\x9f\x81\xc6\x43\x33\xd3\x79\x9c\x57\xff\x00\x4f\xa8\xe5\x67\x32\xb6\xc7\x45\xd3\x48\x75\x8b\x3c\x7e\x3c\x75\x8c\x23\x53\xee\xc8\xd8\xe0\x6e\xdd\x43\x44\xbe\x87\x60\xad\x3a\x1b\xb6\x41\x1a\x35\x4c\x5e\xff\xc3\xff\xa3\xf2\xda\x74\x07\xf4\x13\xf2\xa8\x59\xde\xc8\x83\x1e\x9c\x58\x91\x8c\xa0\x30\x05\xb7\xc7\x16\x84\x2c\xde\x27\x38\xcf\xc2\x6b\x39\x39\xf3\xc2\x4d\x1b\xc2\xaf\xba\xd9\x61\xf2\x08\xf5\x18\x27\x6f\x35\x6e\x12\x95\x81\x7a\x88\xe8\x99\x31\x61\x7a\xa6\x0a\x43\x82\x7f\x83\x6d\x43\xfe\xaf\xb1\xe5\x55\xda\x12\xe4\x3d\xe1\xaa\x34\x9c\xb1\xc1\x7b\xa5\x7b\xe3\x2c\xca\x0b\xf3\x17\x8a\xfb\x28\xc1\x44\x6c\x2b\x97\x52\x0c\xb6\x88\x88\xbc\xf8\x70\x2d\xae\xde\xfd\x7b\xce\x83\x9a\x80\x75\x63\xfe\x4c\xf5\x8e\x61\xce\xbf\xdc\x8c\x62\xe3\xd9\xa7\xa3\x62\xcb\x0b\xb0\x65\x20\x2e\xc0\x4a\x22\x10\x1b\x7c\x5b\x96\x6e\xc0\xb1\x1d\x0c\x93\x5c\x1a\x02\x2f\xb8\x53\x14\x1f\xbc\x4c\x7a\xd6\xe0\xf6\xab\xca\xff\xb1\xbd\xf7\xd9\x29\x4d\x4f\x6c\xbc\xbf\x0a\x7a\x6e\xac\x30\xbe\x2c\xd1\x4e\xf8\x6c\xb8\x87\x93\x3d\xfa\x7f\xaa\x55\x2c\x22\x19\x36\xbe\x2c\x5c\x4e\x92\xa0\x51\x22\xc9\xf8\xf2\x18\xe0\x46\xd2\xbd\x4e\x17\xd5\x99\xde\x10\xbc\x10\x4f\x7f\xd0\xb1\x47\xfd\x01\xf5\x00\xde\xe5\x70\xd9\xed\x42\x80\xdb\x45\x50\xa9\xdb\xd9\x76\x91\x15\x9a\xdf\xe0\xc1\x60\xa2\xdf\x23\xb2\x35\xef\x6a\x24\x6a\xec\xe6\xdf\x9b\xba\x6c\x4d\x0b\x73\x86\xbb\x4b\x64\xcb\x51\x11\xca\xd8\x78\xc7\x5d\x6e\x8f\xb9\xfc\x34\xc6\xf7\xce\xdb\xaa\x59\x91\x55\x77\x7c\x1b\xdb\x50\x76\x47\xf5\x56\x62\x7b\x28\xb2\xbd\x92\xf0\xb1\xe8\x96\x5c\x88\x3a\xef\x3e\x68\x1e\x52\xe0\xf7\x91\xfc\xc1\x87\x04\x6c\x12\xca\x70\x11\xe5\x47\x39\xa6\x2d\x5c\xde\x03\xb9\x2a\x9a\x2a\xca\x8f\xf8\x51\x93\x58\x7e\x38\xf3\x97\x5e\xd8\x30\x67\x5a\xe8\x42\x4f\x58\x69\x42\xa3\x6c\x29\x46\xfc\x06\x15\x38\xc2\x3a\x65\xcb\x85\xf2\x1b\x18\x95\xa4\x40\xd9\xa8\xb3\x0b\x7f\xf1\xb0\x09\x51\xc5\x34\x30\x52\xf3\x45\x41\x86\x40\x85\x7d\x44\x41\xd9\x19\xa5\x29\x8f\xc2\xac\x2f\x4a\xa1\x19\x05\xa5\xbb\x95\xb5\x3f\x0a\x1c\x19\x54\xa8\x35\x4a\xde\x2a\x75\x25\x29\xb8\x55\xaa\x9c\x67\x14\xdc\x2a\x15\x5c\x15\x05\x8e\x0c\x53\x0a\x97\x28\xc8\x13\xa3\x5c\x0c\x51\x2a\x22\x85\xc5\x8d\x85\xd9\xb7\x15\x54\x16\xa5\x26\x47\xfb\x0b\x64\xf7\xab\xee\x12\x22\xdd\x8b\x85\xe2\x32\x4a\x30\x15\xa5\x11\x12\xe8\x24\x2c\xcc\xa6\xfd\xf3\xe2\xb0\xe0\xa1\x94\x67\x51\x98\x73\x50\xca\xb3\x28\xc8\x9f\xad\xa2\x79\x51\xde\x5b\x6a\x55\xc9\x90\x28\x0d\x91\x8a\x92\x5e\xe5\x45\x00\x7d\xfc\xfc\x0c\x7b\xb7\x47\xc9\x8c\x84\x52\x8d\x45\xe9\xac\xae\xa6\xc5\xef\x94\x0c\x3a\xd9\x4a\x4f\x16\xf4\x1b\xef\xda\xaa\xfc\x5a\x14\x1c\xe7\x0a\xc6\x8a\x02\x03\xc0\x92\xea\x2b\x0a\x7c\x68\x87\xd9\xa7\x13\x3b\xeb\xa8\x2b\xcc\x7e\xad\x6d\x55\x7a\x12\xa9\x99\xee\x0f\x00\x9d\x3e\x60\xf1\x6e\xe9\xeb\xa2\xc0\x00\x50\xbd\x34\x2f\x1e\x68\xbf\xee\x0f\x08\x5a\xcc\xa0\xf0\x8c\x90\x37\x61\x94\xc1\x7b\x59\xf1\x0b\x0b\xfe\x58\x7e\x26\xb4\xea\x7f\x49\xac\x10\x25\x88\xe5\x74\xa7\x2a\x81\x7c\xae\x9e\x76\x58\x03\x54\x6b\x2d\x4a\xe4\xae\xd4\xc2\x05\x81\xb7\xe7\xe0\x45\x14\xb5\x78\xc8\xb0\x07\xc8\xad\x26\x0a\x22\xab\x86\x47\x14\x44\xac\xba\x65\x15\x64\x9a\x51\xa1\xc1\x28\x30\x0f\xa8\xfe\x55\x14\x98\x07\x54\xa2\x2b\xca\xa4\x78\x94\x7c\x2e\x2f\x00\xe9\xc3\x3b\x08\xf1\xdf\x9b\xaf\x34\x25\x95\xfb\xa6\x69\x12\xb8\x79\x1a\x16\xfb\x10\x0d\xa9\xbb\xf7\x42\x2d\xf0\xbb\xd9\x91\x65\x57\xe4\x6e\x11\x85\x6a\x76\xdd\x47\xca\xce\x16\xd5\xc0\x4e\x22\xfd\x3e\x65\x78\xf7\x0f\x38\x86\x04\xf5\x0a\x33\xf8\xc5\xe7\x87\x24\x5a\x44\x22\xf7\xb4\xa2\x0d\xa2\x1c\x84\x2c\x1e\xf7\xc1\x03\x5f\x13\x03\x6f\x89\x61\x09\x7b\x50\x25\x33\xfd\x03\xab\x2b\xf9\x83\x85\x0f\xdc\x03\xcf\x0d\x51\x00\x8d\x79\x55\xe4\x7b\x94\x93\x17\x56\xcf\x1b\xbd\x5f\xbd\xfa\xc8\x3c\x33\x2c\xa1\xe1\xd9\xf0\x99\x36\xa8\xcc\x87\x05\x4f\x7a\x36\x4c\x7f\x40\x65\x97\x6e\x23\xe5\xe4\xf1\xad\x0b\x4e\x01\xe6\x18\x1e\x04\x0b\x55\x7f\x9e\x39\x0b\x1a\x04\xa2\xac\x7d\x59\x29\xac\x42\x6d\x8c\x5d\x50\x0b\x30\xcc\x2c\x17\xaa\x63\x08\x00\x17\x96\xf6\x33\x22\x2e\x37\x7b\xd0\x3a\x30\x9f\x9e\x15\xbe\x05\x55\xa4\xab\x37\xd5\x0d\x5f\xe9\xcf\xff\xf0\x00\x37\xcb\x3f\x14\x13\xee\x21\x21\x42\xf5\x0f\x60\x2f\xcf\x0a\x20\x82\x55\x42\x05\x08\x61\x78\xcf\x3c\x54\x45\x08\xb4\x97\x27\x83\x22\xdc\x22\xf3\x7c\x8a\xc6\x07\x05\x0d\xbd\xef\x1f\x0a\x43\xb5\x50\x59\x66\xda\x1a\xd8\x9a\x20\x41\x80\xb4\xc2\xd1\x72\x7c\x5e\x38\xf8\x85\x5f\xe0\x7d\xd7\x5f\x6c\x3c\x99\x74\x40\xd7\xc4\x11\x9f\x1f\xc0\x30\xd5\xcf\x9c\x88\xaa\x67\x46\xc4\x4f\x3d\xe3\x40\x77\x97\x50\x54\x2b\xcd\x77\xd4\x8d\xb6\xab\x4f\x83\xef\x2e\x93\xd3\x40\xd4\x92\xc3\xd4\x17\x28\xdc\x6c\x3d\x72\x45\x96\x62\x95\xd3\x8a\x5a\x78\x3f\x0a\xff\xc0\x13\x5d\x38\xba\xa2\xe8\xc7\x68\xee\x02\x99\xc3\x97\xff\x3f\x60\x93\x59\x7a\x26\xcb\x7f\x5a\x84\x68\x98\x7e\x7e\x30\x28\x7d\x90\x4a\x00\xc1\xe8\x8a\xa0\x9b\xcd\xe8\xab\x56\x72\x98\x80\x4f\x45\x5d\x66\x65\x49\x8b\x5a\x89\x00\x86\x7f\x20\x0c\x11\x46\xac\x48\x4e\x33\x7f\xf1\xa7\x93\xa8\x42\x11\xae\x9c\xde\x51\x2b\x63\x12\x35\xe6\xc6\xf3\x5e\x57\x87\x0a\xc5\xb8\xa5\x5f\x05\x24\x51\x3e\xf6\xa8\x8d\x36\x0f\xcf\x62\xa7\xa9\xc8\x43\xea\x64\x26\xe1\x9e\xda\xa9\x16\x95\x10\xaf\x1d\xcc\x23\xf9\x56\x3b\x4f\x5f\xaf\x25\xf2\xbe\x54\x4f\xf4\x60\xe0\xa3\xc0\x59\x65\x6a\x37\x1b\x46\x2a\xe2\xa9\x95\x86\x38\xea\xe0\xe1\x64\x22\x10\x60\x3d\xcc\x3e\x83\x37\x53\xc1\xb7\x9a\x5a\x6f\xdd\x3f\x2a\x0a\xc0\x29\xf9\x4c\xd4\xa0\xd0\x35\x8b\x32\x6b\xb0\x0e\xf5\x1a\xe0\xc8\xcf\x33\xec\x4b\x9f\x06\x40\x63\xf7\xf7\x49\xa3\x36\x09\x7c\x00\x94\x4c\x36\x6a\x00\xcd\x49\x16\xd4\x20\x89\xba\xe2\x54\x9e\xe9\xcb\x83\x98\x49\xa3\x68\x60\xfa\x38\x25\xdb\x8c\xca\x63\x5d\x5a\xef\x8a\x02\x6f\xc6\x5a\x95\x11\xcf\xd5\xcf\x94\x60\xd3\x3f\xc0\x5a\xa0\x13\xb7\xb2\xc2\x9b\xdc\x9e\xa2\xae\x24\x4a\x6f\xe4\x29\x2f\x5c\x50\x17\xc1\xb9\x84\x60\x4d\x4d\xba\x20\x60\xa5\xc9\x5e\x67\x43\x65\x9c\xcc\x47\x3c\x2c\xe2\xa3\xe9\x2f\xb8\x59\x75\xc7\xad\x3b\x13\x7a\x9b\x03\x76\x1a\x42\x2c\x0f\x98\xff\x57\xe9\x00\xa3\x22\xdf\xaf\xe3\x79\xa2\x22\x3f\x8c\x55\xac\x75\xe7\x5d\xc9\xd3\xbb\x53\x9c\x5b\x66\xec\x14\xad\x9e\xae\x03\x50\x54\x90\xa7\x42\x3d\x3e\x74\x94\x57\xd4\x58\x6b\x2a\x7b\x12\x95\xea\x71\x95\x31\x89\x7a\x50\x02\x58\xaa\x40\x03\x51\x95\x6d\x2f\xea\x41\x3e\xf1\x0b\x27\x9b\xf0\x0b\xd7\xcb\x89\xe6\xbc\x83\xe0\xd0\xbb\xfe\x04\xaf\x77\x3f\x23\x65\x91\x0e\xeb\x7a\xe6\xdc\x69\x9c\x27\xf7\xb4\x97\xf0\x24\x73\x6b\xb6\x4f\xf8\x85\x7b\x33\x9c\x0c\xb9\xf4\xfb\xdc\x7f\xe6\xe5\x54\x6a\x78\x45\x91\x07\xe6\xe7\x03\x80\x80\xc3\x92\x09\x5a\xfc\xa6\x6c\xa5\x51\x2f\x04\x5d\x98\x04\x16\xa3\x58\x66\x09\x26\x7e\x31\xaf\xb3\x32\xda\xf4\x66\xb8\x72\xf5\xd4\x07\xc2\x5b\x86\xe7\x01\x66\x7c\xb9\xc7\x47\xbd\xb9\xdf\xbc\xbd\x6e\x24\x88\xf4\x16\xbe\x33\x71\xa6\x46\x71\x53\x48\x68\x22\xef\x9c\x48\xbf\xc0\xe3\x5c\x6a\x88\x7a\x27\x95\x1a\x06\xb2\xfe\x2a\xb7\x5d\xd4\x17\xc6\x54\x45\xd4\x46\xbd\x49\xb4\x88\x84\x65\x61\xb8\x07\xa0\x9a\x36\x65\xb7\xac\x34\xde\x7b\x66\x9f\xdc\x6d\x62\x07\xf8\x67\x0e\xa3\x81\x87\x2c\x29\x4d\x47\x4d\x9c\xf3\xa7\xb0\xa2\xa8\x0f\x2f\x53\xe6\x26\x7a\x73\x2a\xa1\x4e\x54\xa4\x04\x5e\x1e\xf2\x43\xec\x27\x6e\x69\x0c\x57\x91\xff\x4d\xb4\x5f\xae\xc4\xd0\x0f\x0c\xe1\xae\x7a\xce\x51\x4f\xfd\x80\x95\xf8\xbc\x30\x50\xa5\xc6\xcf\x10\xdf\xda\xa9\x0d\x25\x89\x6d\x13\x68\x8c\x74\x9e\xba\x6c\xb7\x8d\xb7\x3e\xad\x5c\x63\x44\xcb\x4f\x62\xad\x95\x0c\xa7\x16\x0d\x85\x89\x14\xf4\x05\x33\xec\x79\x6d\x1b\x51\x8e\x24\x50\x2b\x64\xe1\xd0\xf3\xe4\x07\xa2\xba\x70\xdf\x89\xa8\x82\xd8\xf9\xee\x1e\x79\xa3\x0a\xb7\x48\x61\xb1\x99\x48\x6e\x82\xe5\x26\x71\x1d\xf1\xc0\xa9\x6b\x11\xa8\x69\x15\x49\x3a\x24\x46\x1b\x43\x89\x3d\x91\x2f\xa6\xa9\xf2\xca\x8f\x06\xd5\x8b\x12\x85\x45\xa3\x7d\x7f\x7a\x56\x10\x43\xa2\x94\xa7\xd1\xe0\x08\xa9\x7c\xa4\xd1\x1a\x6f\x60\xee\x11\x9e\x91\x43\xf0\xa0\xa5\xb9\x5f\x62\xb9\xb5\x9c\x57\xff\x90\x88\x42\xec\xd2\x28\x76\x8b\x3b\x61\x55\x0d\x6d\xab\xd6\xc8\xa4\x02\xfb\x8d\x51\x22\xca\x15\x17\x8d\xc8\x67\x93\x2c\x6f\x69\x2c\x91\x7e\xae\x75\x2e\xa7\xc8\xe8\xd9\xab\x26\x1f\x01\xc9\xc3\x73\x95\xda\x14\xb7\x88\xd0\x35\x33\x2d\xea\x3b\x28\x9b\x67\x34\x14\xe2\x9d\x9b\x4e\x8f\x06\x65\x8a\xaf\xf9\xad\x73\x2e\xf5\xff\x40\x4d\x17\x89\xc0\x36\xf2\xd8\x14\xc9\x70\x30\x18\x9f\xe7\x86\x4c\xee\x7e\x1e\x1c\x82\x18\x6a\x70\x08\x7e\xc6\x6a\x0a\x0e\xb4\x91\x13\xab\xa9\x1f\x0c\x2a\xfc\xbc\x41\x48\xe1\xbd\x0c\xe7\x4a\xa5\x6b\x88\x46\x68\xe6\xc5\x8b\x5c\x09\x11\x15\xbc\x3d\x98\x07\x91\x72\xcf\x42\xb5\x21\x50\x45\x49\x25\xa3\x51\x7d\x22\x7c\xd1\x60\x9f\x69\xd3\x4c\x4a\x64\xb5\x79\xab\x32\x35\x8d\x14\x8c\x6d\x4e\xbe\xa0\x2e\x27\x76\xe2\xf0\x07\x38\xa5\x85\x1d\xda\x4c\x99\x26\xa2\x17\xfb\x14\xf6\x6a\x2b\x05\x8a\x88\x58\xc9\x60\x9a\x5b\x3a\x18\x6c\x12\xe5\x6d\x51\x1e\xe8\x62\xd6\xd6\xe2\x1b\xee\x85\x18\xc6\x7b\x83\xe9\x5f\x54\x96\x32\xda\xe2\x5c\x98\x0c\x58\x70\xcd\x73\x7b\xd2\x29\x2a\xf6\x9c\x1b\xd1\x49\xad\x8c\x87\x8e\x12\x62\x4d\x45\x0f\xa2\x11\x8b\x6d\x96\x9d\x7b\xee\x47\xff\x80\x3b\xc2\x74\xa7\x39\x30\x8d\x23\x73\xf7\x79\xc9\x76\x1e\x8b\x9b\x7f\x20\xa3\xd5\xbf\xb8\x78\x47\x43\xcd\x31\xe7\x74\x8a\xc6\x04\xc2\x56\xdf\x37\x28\x7e\x7c\x65\x6d\x09\xdd\x74\xff\x6b\x44\x6a\xaa\xc0\x18\xed\x48\x92\x34\x0a\xe4\xe6\x9b\x9b\xe5\x3b\x02\x9d\x8b\xe5\x39\xe3\x9c\x95\xa9\x2c\xda\xc9\x71\xeb\x6e\xd4\xce\x1c\xb7\x7f\xc0\xfe\x12\x6e\x6a\x00\x52\x8e\xf2\x8b\x76\x62\xf7\x08\x06\xb5\xeb\xc7\x17\xf4\x05\x80\x52\xb1\x77\x54\x83\x39\x48\xb9\xe5\xa2\xc1\xfc\x33\xed\x8e\xd3\x2e\x32\xfb\xe6\x2f\x78\x18\xea\x42\xd6\xa0\xbd\x29\xf6\x85\x6a\xb0\xff\xa8\x84\x4a\x34\xba\x4c\x4e\x6f\xd1\x2b\xe7\x5b\x6f\xc0\x20\xa4\x04\x6a\xd1\x6e\x86\x6c\x68\xe0\xa8\xdc\xa5\xfc\x69\xd1\x6e\x6a\x6b\x74\xaf\x6c\x0c\x64\xf1\x38\x61\x31\x1a\x06\x11\xf0\xa3\x2c\x3f\xf3\x2d\xaa\xce\x0e\x83\x0a\x94\xfa\x2a\xf6\x9d\x6a\x77\xae\x9f\xbb\xc0\x5e\xb1\x5c\xb9\xb1\x7e\x9b\x0f\x4b\x84\xc2\x0c\x1f\xa6\xa9\x52\xd2\x45\xb4\x3d\x30\x44\x58\x7c\x52\xc5\x64\xa9\x40\xec\x65\x59\xf8\x24\x4f\x89\xe8\x87\xea\x9d\xe6\x1f\xc8\x00\x66\xc3\x4c\xf4\xa7\x1d\xdd\x7f\xd0\x58\x4a\x9e\xf6\x1f\x66\x52\x22\xa1\xa3\x34\x97\x32\xf8\x44\x07\x54\x52\xfa\x9c\xe8\x8c\x8d\xb1\x3b\x57\x47\x52\x97\xd0\xd2\x74\xd8\xa9\x94\xcb\x26\xfa\xef\xc6\xb3\xde\x07\x54\xb2\xd6\xab\x23\x83\x5f\xb1\xb3\x56\x47\xa0\x8b\x92\xc2\x44\xdf\x48\x81\x28\xde\x18\x53\xd2\xdc\x02\xd5\x3f\xd3\x2d\xe0\x32\x27\x79\xd1\x61\xe7\xb2\x0d\xb4\x6f\xa8\xcf\xa7\x53\xa8\x6f\x24\xd1\xcf\x0f\x54\xf6\x22\x99\xc9\x92\x37\x01\x84\xce\x2a\xb4\xbe\x55\xf5\xc2\x3c\xaf\xcb\x3f\x30\x4c\x4e\x44\x03\xdd\xcd\x4d\x90\xa2\x23\x54\x46\x99\xd9\xa3\xa3\xd2\x56\x7c\x9e\x83\xd3\xe2\x16\x58\x93\x44\xa3\x7e\xd1\xde\xfb\x82\x46\x55\xf2\x6e\x60\xb2\x0f\x24\xbc\xf5\x0b\x5c\x29\x2d\x6d\x41\xcd\x3f\x09\xff\x5e\x7f\x70\xbe\xf2\x33\x4a\x42\x08\xb1\x74\xa8\xb4\x2c\x2a\xfa\x0b\xfe\x8a\x0f\x87\x5e\x93\x35\x34\x8f\x70\xe7\x94\x27\x71\xf4\x3a\xff\xfb\x5f\x53\x81\x86\xe8\x35\x87\xe0\x1f\x60\x2c\x14\x7f\x77\xe4\x91\xa9\x9e\xc5\xca\x11\x98\x22\xca\x0d\x5d\x35\x7b\xcb\x95\x52\x8b\x8d\xf2\xcd\x4d\xa2\xe6\x82\x12\xaa\x44\x87\x99\x2d\x3c\x8b\x2d\xe7\x5d\x7d\x34\xca\xbb\xe2\x16\x16\xbe\xd0\xa8\xda\x8e\x67\x4d\x3b\x0c\x71\xd6\x24\xf7\xc6\x2c\xa7\x7f\x49\xff\x13\x1d\xf1\xca\xca\x85\x12\xbd\xa5\xa8\xd4\x14\x20\x60\xd9\xa6\xf0\xde\x73\xc4\xa2\xb7\xc3\xcd\xc1\x9c\x98\xc8\xb4\xfa\x07\xe4\x44\x35\x9b\x74\x8e\xd8\xdc\xdd\x79\xdb\x11\x0d\x9d\x03\xd4\xb2\x22\xac\x27\xcc\x99\x08\xeb\x51\xd0\x69\x74\x84\xf5\x58\x09\xdd\x3b\x15\xbe\xde\x4f\x48\x94\x53\xec\x74\xd7\x51\x7a\x4c\xb9\x01\xa3\x8f\x8d\x2f\xe8\x0b\xd4\x1e\x53\x64\x6c\xf4\xc1\x55\xd4\x9a\x8c\x0e\x55\x96\x48\x04\x32\x35\x28\xec\x23\xf0\xbe\x26\x69\x70\x0d\xfd\x3f\xea\xbc\x9b\x64\x44\x47\x87\xa7\x04\x1a\x42\xe7\x4c\x8a\x8e\x98\xa0\xf8\x8c\x80\x40\x49\x6c\x04\xb7\x58\xeb\x3c\x3a\x35\x88\x4a\xac\x1b\x3d\x72\x59\xd4\x02\x60\xaa\x6d\xa7\x1d\x76\xc2\xf8\x3c\x77\x1e\x2f\xfe\x00\x9c\x5b\xdc\x45\xc0\x3d\x58\x24\x42\xe7\x18\x9e\x43\x3a\x26\x29\x4d\x69\x74\xa6\x70\x54\x48\x48\x74\x18\x0e\x6d\x7a\xef\x74\xb4\x55\x4e\xd1\xe8\x30\x14\x86\x79\x0d\x89\xa2\x8b\x3d\xfe\xfa\xc4\xbc\x7a\xaf\x4c\xb0\x8e\xd7\x61\xa2\xd6\x4e\xb8\x81\x93\x24\xb8\x07\xb8\xa9\x79\x21\x81\x94\x55\x5a\x3b\x7a\x02\x65\x9d\xa1\x1d\x99\x7a\x6c\x8b\xea\xa8\xaa\x1b\xe6\xf6\x95\x24\xaa\xc5\x45\xf3\x96\xa5\x12\x72\x24\x86\x17\x62\xf1\x0c\x35\xd1\x28\xab\x6b\xbd\x68\xdf\x73\xe9\x34\x4a\xc4\xf7\x84\xb9\x67\xe7\x41\xdf\xfd\x03\x8e\x30\x4f\x34\xe0\xa9\xca\xa3\x45\xa7\x5d\x71\x13\xf4\xeb\xc8\x78\x68\xb7\xf7\x7e\x80\xff\xbd\x83\x0e\xf6\xa8\x41\xd1\xce\x38\x7d\x20\x1d\xec\x51\x24\x1e\xbc\x2d\x08\x4b\x76\x78\xde\xc6\xa7\xc7\x05\x61\x2e\x92\x0f\xe2\x1f\x2f\x25\x72\x49\xc7\xa7\x01\xce\x8a\x96\xf2\x00\x88\xb6\xac\x3e\xf3\x8c\xd4\xca\x20\xb8\x27\x7c\x1c\x9d\x1c\x83\xa6\xf9\xcc\x59\xd3\xa0\x10\x83\xdd\x7d\x5e\x9d\x84\xa2\x96\x85\x27\x7d\xf7\x44\x12\xe0\x70\x7c\xfe\x67\x20\x79\x77\x17\xa0\x59\xb8\xb3\x9f\x74\xf6\x34\x32\x80\x62\x71\x6e\xde\x23\x30\x65\xc6\xe7\xb9\xf2\x05\x11\xf9\xe2\xe5\xa2\x72\x68\xd1\xaf\x8e\x64\x2d\x9a\x96\x8b\xe6\x8a\xcf\x0b\x74\xf9\x72\x8b\xd8\x32\x9f\x06\x51\x32\xcb\x0c\x7e\xe5\x20\xdc\x22\xef\xf9\x9f\x37\x00\x5f\x04\x02\xfb\xcd\x99\x17\x10\xed\x40\xcf\xab\xfd\x49\x43\xd7\x01\xad\xc3\xad\xdf\xc9\x5a\x9a\x65\x6a\x29\x37\xf3\x1a\x6c\xad\x8a\x95\x8f\xce\xa2\x1e\x2a\xf5\x1e\x1d\xf9\x0d\xe7\xf6\x69\x82\xe7\xb6\x65\xd9\xf3\xe2\x7d\xfb\x85\xf7\x87\xe2\xd2\x0c\x8f\xac\x39\xb6\x18\xf7\x87\xc2\xec\xf3\x02\xd6\xde\x5b\x0e\x0e\x59\x8e\x11\x18\x74\xb8\x52\x52\xd1\x18\x08\x19\xb2\x07\xff\xf8\x51\xfb\xa1\x9b\xcf\xa0\x53\xf5\xf6\xf9\x82\x0c\x3a\xfc\x49\xce\x44\xd7\x0f\x74\x1e\xd5\x39\x35\xe0\x33\x6d\xff\xe4\x91\x8a\x43\x91\x39\x10\x57\x64\x67\xf2\xf1\xe3\x6a\x0f\x77\x0a\x96\x15\xfb\x8c\x1f\x39\x54\xbb\x64\x24\x7e\x96\x50\x1e\x5b\xd2\xed\x1f\x88\x60\xdc\xe9\x96\x93\xa7\x5e\x37\x5a\xf6\x86\xdf\x20\xec\x70\xb7\x88\x26\xb2\x8f\xf3\x28\xc4\x55\xd5\x3f\x40\xee\xea\x00\x1c\x85\xd7\x7c\x0f\x04\xa1\xe0\xd5\xe1\x44\xa3\xe0\x4c\x16\x0f\x8c\x42\x32\x4d\x44\x22\xdc\xea\x37\xa8\x86\xf3\xc8\xe0\x0a\x66\xef\xc8\x51\xa9\xfb\x31\x15\x34\xba\x6e\x52\x5f\x8f\x4a\x32\xfd\xcc\x8b\xbc\x07\xc6\xf2\xb2\xfd\xf3\x06\x56\x48\x1a\xc9\x51\x79\x64\xb9\x8f\xc6\x3b\xb5\xc4\xff\x68\x64\x5e\x9d\xc4\xa3\x61\xff\x49\x4e\x0d\x5a\x5e\xa7\x87\x0e\xcb\x6b\xb1\x2b\xec\x48\x07\x70\x8f\x8c\x30\x35\xfc\x05\xf5\x0d\x9f\x1f\xa8\x2d\x34\x9d\xa9\xc4\x34\xb7\x02\x87\x7e\x06\x46\x68\xf9\x59\x21\x38\x84\xf9\x0c\x19\x9d\x4b\xa8\x63\x6a\xf4\x01\x17\x34\xbf\x80\x33\x24\xdc\x40\x2e\x98\xba\x80\x8a\x32\x3e\x0d\xe4\xbe\xd7\xcc\x64\xc9\x58\x5d\xf4\xc7\xc8\xf5\x50\x9b\x44\x6e\xe1\x2f\xd0\xa4\x54\x3f\x63\x90\x27\xcc\x35\x8c\x58\xda\xc2\x3f\x50\xaf\xe2\x05\x83\x0a\xd1\x3e\x39\x23\x55\x88\x9e\x19\xe4\xba\xb1\x47\xcc\x08\x8a\x40\xaf\x06\xa1\x97\xd0\xdd\x20\xd4\xd2\xd9\x37\x02\xc9\x78\x97\x7b\x44\x06\xae\xe6\x0e\x38\x08\xff\x0f\xcf\x0f\xaf\x5d\x20\x71\xba\x8c\x07\x63\x92\x62\x7d\x3f\xe9\xab\x2f\xfd\xc7\x98\xb0\x7f\x79\x04\xa8\xf0\x61\x6f\x84\x31\x99\x85\x43\x1d\x24\x70\xab\x7e\x81\x95\x1c\x35\x22\xe4\xce\x76\x48\xdc\x98\x1c\xa1\x1b\xc0\xae\xf8\x10\x80\x33\x48\xb7\x8e\x41\x4b\xb0\x67\x0c\xe9\x12\x95\x9d\x22\xc6\x4a\xde\xfa\xd3\x99\x34\xe0\x1b\x66\x4b\xf6\x58\x88\x7b\x32\x1b\x2d\x84\x0d\x7c\x7a\xa3\x5a\xf9\x43\x0e\xed\x18\x22\x7f\xf1\x06\x22\xf8\x33\xe8\x8c\xae\xda\xf1\x31\x52\xb1\x29\x45\xf3\xd8\x61\x7e\x09\x7f\x41\x67\x70\x13\xb5\x53\x88\x7e\xde\xc0\x2a\xfa\xfc\xd8\x29\xba\xcd\xbb\x07\x96\xd5\x6c\x82\x7a\xaf\xaa\x57\x18\xe3\xa0\x66\xd4\xb3\x76\xa0\x94\xaa\xcf\xac\x23\xbb\x14\x0d\x07\x14\xcb\xde\x70\x27\x2f\x52\x42\x3c\x03\x20\xcc\x26\xe7\x41\x0f\x75\xcf\xc3\xc9\xfd\xe7\x41\x9c\x28\xfd\x22\x7c\x3d\x4e\x16\x22\x10\x6b\x9e\x14\x44\xde\x2c\x08\xc1\x2a\x16\x0a\x4c\x7b\x63\x77\xdc\xc1\xaa\x1f\xd3\x44\x03\x95\xd9\xea\x3d\x12\x95\xf9\xa4\xb8\x48\xb4\x9f\x29\x35\xbc\x3f\xae\x81\x17\x44\xc3\x0b\xba\xea\x26\xab\xc2\xb8\x88\xf9\x3d\x2f\x50\x51\xda\xdd\x62\x5c\xa8\xc1\x61\xc1\x05\x48\x65\xeb\xf0\xb8\xe0\x86\x6a\x76\xbf\x29\xf3\xbd\xa3\x5f\xcc\xd5\x6d\xa8\x1d\x37\x63\x09\x44\xc1\x8d\x4b\xb7\x05\x3c\x6c\xc1\xb6\xc3\x8e\x3b\x97\xda\x2f\x04\x5e\x10\x3f\xde\x3c\x1d\x2d\x63\x90\xd9\xd0\x36\xcd\x71\x53\x17\xe8\x89\xbf\x73\x9e\x35\xe8\x17\x86\x55\x15\x2d\x8b\xc1\x54\x86\x8e\xd7\x19\x0f\xc5\x8a\x19\xf0\xc1\x89\x20\x7d\xcb\x40\x32\x9f\xcf\x49\xf7\x50\xe3\x23\xb0\x38\xe0\x14\xf7\xe1\xe0\x27\x27\x5e\xc3\x82\xdf\xfc\xf4\x11\xf2\x24\x91\xa2\x1a\x4e\x6f\xaa\x36\x19\xf1\x4b\x22\x87\x7e\xd8\x00\xfa\xfd\x42\x43\x8b\x55\xcf\x49\xd3\xd4\x0f\x98\xc9\x4f\x8b\x13\xcf\x9b\x9e\x11\xe0\x13\x6e\x20\x37\x76\xe8\x87\x83\x71\x21\x7a\xa6\x1f\x69\xd7\x33\xf5\x1b\x92\x1d\x91\x90\x4c\x1a\xca\xd8\x08\x14\x25\xc0\x63\xa3\x26\x5f\x6a\xd6\xd8\x78\x17\x9f\x6e\x83\x13\xe5\x26\x78\x2b\xd5\xde\x0f\x28\x2d\xbd\x9a\x01\xa5\xa5\xa1\x4f\x20\x77\x8f\x5d\xd0\x23\xbd\xea\xb4\x29\xa2\x70\xe2\xfc\x01\x91\x8f\x8e\xda\x80\xd3\x9c\xad\xc3\x51\x78\xf1\x98\x6e\x81\x76\x13\x6d\xa3\x28\x3c\xdf\x25\xe1\x82\x35\x5b\xa7\xa9\xa8\x94\xfb\xda\x49\x51\x69\x43\x14\x87\x44\x25\xcb\xe8\x78\x8e\x54\x0a\xfa\x0b\xe2\x18\xcd\x14\x9c\xf1\x8b\x5d\x8d\xa3\x72\x3d\xcc\x22\x40\x68\x36\x30\x45\xe3\xfa\x08\xb7\x47\xc2\xad\xf9\x27\xc7\xba\x60\x55\xd6\x70\xf3\x60\xb0\xe2\x67\x42\x31\x6d\xd5\x68\x39\x2d\xea\xaf\x27\x01\x5a\xbc\xce\xdd\x2d\x89\x16\xd0\xb9\xd9\xbe\x1c\xd0\xb9\xd9\x70\x1a\x3d\xf7\x8d\x7f\xc8\x41\xeb\x07\xe8\xd0\x86\x24\x52\x8c\xf2\xdf\xff\x62\x9a\x49\x47\x85\x57\xb9\x16\x73\xf0\x76\x63\x0e\x44\xe4\x9c\x75\x68\x31\x58\x04\x4c\x24\xa5\x23\x9e\xd9\x01\x8e\x78\x36\x68\xc7\x60\x69\x08\xb3\xe4\xe0\x20\xfc\xcc\xcb\x8e\x99\x21\x28\x56\xbb\x7f\x28\x1c\xa6\x7f\x00\x4f\xea\xda\x11\xac\x86\xe6\x44\x0d\x11\x84\xe7\x12\x41\xc1\xec\x39\x76\xfb\x0e\xd8\x7b\x67\x71\x93\x0f\x9e\x35\x0c\xd8\x7f\xc3\x79\x11\x22\xdd\xe1\x85\x26\x02\xe0\xc7\xc6\xda\x00\xf8\x99\xba\xa7\x04\x12\xd7\xd8\x10\x1b\xac\xf4\x61\xb3\x5c\xd0\xe9\xcd\xee\xa4\xb1\x68\xd3\x58\x7e\x83\xf2\x40\xea\xfe\x58\xec\x43\x73\xc7\xe0\x70\x15\x3d\x8d\x40\x9d\x55\x9b\x72\x83\x5a\xaa\xe2\x99\x81\x56\x6a\x16\x8f\x6b\x47\x71\x06\x2f\xe8\xce\x05\x35\x13\xc2\xce\xda\x7c\x7b\x8a\x3d\x0b\x24\xbb\x09\x44\xb2\x7e\x88\xb8\x70\xd3\xf1\xff\x94\x10\xc3\x4d\x72\x2b\xe8\x9c\x8b\x83\x64\xab\x8b\x83\x88\xc5\x4c\x73\x80\x4f\x2d\xa6\x0e\x42\x57\x13\x75\xe0\xf0\x17\x94\x8d\xcc\x53\x63\x0e\x38\xc8\x33\x5a\x60\xf8\xcc\xd9\x5e\x19\x07\xb7\x8e\x05\x3e\x6a\xe0\xdb\xb8\x1b\x27\x2f\xbb\x16\x39\xc8\x17\x6d\xfb\x65\xa4\xcb\xbc\xc5\x39\x21\x8d\x30\x4f\x5c\x54\xc9\x78\x39\x2f\x4a\x00\x21\xd2\xb8\x72\x58\x7e\x83\x7d\x68\xdc\xc4\x30\xd6\xce\x06\xca\xbd\x5a\x39\x1b\x50\x1c\xf9\xa6\x14\xc0\x34\xd6\x94\xc6\x9d\x7c\x2d\xa2\xa0\x16\xfa\x4c\x3d\x34\x3f\xd3\x07\xe7\x9d\x0c\x23\x12\x6e\x96\xa3\xf3\x07\x94\xdd\xba\x07\xc5\x0b\x5a\xaa\xd3\x49\x04\x93\xd3\x0c\xff\xbf\xb3\x45\xb7\x70\xf2\x07\x13\xc9\x8c\x05\x7e\x06\xdb\xfb\x24\x85\xe6\xc8\xb6\x87\x78\xa8\xd6\xb1\xac\x65\x99\x7b\xc7\x93\x05\xf2\x2f\xdb\x61\x24\xd2\x05\xce\xc2\xf8\xa1\x29\x58\x90\x37\x60\x55\x9d\x45\xd0\x2a\xa0\x4b\xf2\xc5\x78\xa2\x80\xac\x5d\xe0\x26\x4a\xa3\xcd\xb2\xf9\x85\x9c\x98\xa1\x1f\x16\xdf\xd8\xf4\x03\x9b\xf4\xf3\xc5\x17\x8a\x7e\xe0\xce\x89\xbf\x14\x2f\x8a\xb9\x71\xd7\xe8\x4c\x9a\xa8\x93\x61\xf5\xd8\x44\xe8\xbd\x37\xee\x44\xb6\xc0\x4d\x06\x90\xb9\x25\x81\x1a\xd3\xc6\x53\x55\xb0\x68\x16\x6c\x54\x9d\xb2\xb3\xc0\x90\x1c\x7e\xa6\xa8\xd6\xf9\x31\x53\x45\xf4\x79\x03\x95\x54\x4c\x13\x82\xf3\x6d\xcd\x9e\x74\xe3\xd7\x5d\x64\xd2\x09\x5f\xa5\x38\x62\x56\x2e\xb6\x04\xf1\x44\xc1\x58\x3b\x27\xce\x8a\xe0\x6f\x89\xf6\x99\xda\x1d\xdd\xd1\x66\x0d\x72\x87\x68\x00\xb8\xb0\x8e\x6f\xd6\x87\x89\x5d\xfe\x3d\x43\x55\x13\xbe\x08\xcf\x54\xd5\x08\xaf\xcc\x86\x63\xb2\xfb\x85\x20\xd5\x7e\x21\xf9\xcb\x6f\x10\xca\xe9\x28\x9e\x0d\xb7\xd3\x4f\x93\x2c\x73\x28\x09\x35\x3b\x9d\x07\x65\x8f\x9a\x09\x20\x04\xe6\x26\xf0\xc0\x72\x14\xe4\x84\x11\x4e\xa5\xf6\x62\xf6\xe4\x27\xcd\xcd\xe0\xf2\x98\x25\x06\xa2\x2c\x4c\xe6\xa0\xfb\xc9\xf2\x0b\xdc\xbd\x9b\xdf\x40\xaa\xa9\xe1\x17\x4e\x28\x0d\x34\x2e\xa8\x62\xe2\xfb\x03\x0e\x2d\x13\x15\xa8\xbd\xf3\x79\x06\x24\x95\xd6\x71\x06\x3c\x18\x3d\x51\xd0\x9b\x58\x59\x37\x91\x1a\x66\x39\x91\xcb\x9c\x94\xb3\x5a\x6f\xe4\xb1\xb3\xc2\x70\xc2\xe5\xdd\x9e\xc7\x73\xe6\x90\xd4\xe3\x64\x0f\x1a\x12\x03\xdb\xcc\x51\x3c\xea\xa5\x39\x9d\x93\x8a\x04\x0f\xe1\x3d\xfb\x6b\xf3\x36\x41\xd6\xe0\x52\xfd\x4c\xa1\x2a\x38\x3b\x61\xa0\xb2\xe9\x67\xae\x40\xe2\x63\x51\xc4\xbc\x31\x06\x72\x13\xf6\x2a\x2b\x0f\xe7\xa2\xe8\x28\xfe\x81\xca\x5b\xcb\xa7\xc4\x0a\x42\xa8\x73\x4f\x21\xa9\x95\x84\x05\xcb\x5a\xb7\x99\x58\xc1\x0c\xb7\x33\xfa\x54\x7d\xec\x64\x6a\xc9\xdd\xf9\x62\x85\x62\x4f\xa3\xb9\x93\x4a\x3f\x93\xe9\x3f\x2f\x20\x02\xcb\xb9\x88\x26\x92\xd1\x58\x0b\x37\x8f\x3c\xaf\x34\x13\x47\x52\xad\xc9\x3f\xb8\x0b\x2c\x66\x11\xc1\xbf\xc6\xe7\x13\x6c\x4e\xc1\x8f\x09\xaf\x2c\x2b\x50\x26\x9d\xb2\x54\x70\x32\x26\xac\x5c\xbe\x33\x4f\x3a\x69\xd9\x03\x7f\x22\xe4\xdf\xca\x8b\x79\x24\x03\xa8\x4b\xaa\x5c\xcc\x72\xa8\x3d\xe1\x0b\xee\x44\xfc\x9d\x0a\x89\xc4\x3c\x69\x7e\x9f\xfe\x20\xf7\x9d\x88\x3e\xf3\xe4\xf7\x1b\x98\x5b\x0b\x56\x24\xb9\xb1\xa3\xc6\x4c\x0d\x8b\x40\xd6\x3c\x93\x23\x34\x51\xc8\x12\xa0\x82\x17\x31\x51\x6b\xde\x0a\xce\x99\xf0\xc4\x1b\xe5\xe2\xcc\x6e\x7f\xca\xc5\x30\xe1\x44\x66\x25\xd2\xbc\x78\x40\xea\x6a\x30\x2f\x5e\xd2\x2d\x98\x09\x66\xbc\xd3\xd3\x87\xcc\xc2\xe7\xe2\x3c\x9b\xa9\xd3\x2e\x25\xd4\x36\x6f\xda\xfc\x75\xbd\x98\x54\xa1\x58\xa0\xa1\x18\xbd\x8d\xd1\x33\x5d\xbc\x3c\xd1\x37\x17\xdf\x0d\xc0\xd7\x42\xa0\x6d\x3e\x38\xe2\x94\x52\x37\xe6\x43\x19\xea\x89\x7e\x38\x70\x7f\x91\xe3\x14\x0d\x28\xcd\xda\x94\x6e\x2f\x26\xa3\x02\xed\x07\x3e\x91\xdb\x67\x5a\xb2\xc3\x1f\x7e\xfa\xa2\x36\x9f\x9c\x89\x7f\xe3\x58\x2c\xdd\x65\xa7\xaf\x95\x2a\x92\xa6\xe7\xa4\x62\xea\x07\xcc\x8c\xae\x44\x8b\x56\xa7\xf1\x69\x81\x66\x78\x75\x81\xec\xc4\xb3\xe8\x5c\x5c\x48\x6f\x67\x3c\xb1\x88\x37\x74\xa1\x59\x48\xed\x63\x49\xbf\xb6\x9c\xeb\xa5\x1f\xb8\xf3\xaa\xbf\x38\x39\x0a\x37\x89\x13\xcb\x2e\xd5\x8b\xc9\x07\x1c\xe8\xbc\xca\x8f\x6f\xa8\x0d\x1a\x9d\x1c\xe6\xb9\x0a\xe5\xbf\xc8\xa0\x49\xc9\xae\xbc\xab\x80\xef\xa4\x09\x58\x28\xb3\x60\x70\xb8\xe0\x33\x65\x78\xb9\xe0\x21\x5f\xec\xea\xbb\x0a\xcf\x38\x01\xa7\xf5\x82\x94\x69\x35\xcb\x62\x64\xe0\xf2\x17\xf4\x91\xb7\x67\xd7\x42\xe0\x5f\xd9\x7e\xfe\x01\x93\xa5\x63\x6e\xd5\xe4\x11\x51\x55\x11\x39\x2a\xf4\xb6\x10\x18\xd8\x94\x48\x37\x56\x65\x52\x1a\x0d\xb3\xe6\xd4\xa9\x85\x06\x34\x27\xc9\xb9\x5a\x86\x15\xeb\xb9\xf0\x03\xbf\xd0\x48\xa4\xdf\xe8\xec\x53\x44\xc0\xaf\x3e\x7e\x9f\x3e\x80\xe7\x8a\x9b\x80\x75\xd4\xab\xd5\xb0\x18\xc5\xef\xf3\x30\xd6\xbd\x79\x21\xa9\x51\xb1\x8b\xf3\x42\x9a\xe3\x62\x8f\xe6\xd5\x5f\x39\x66\x41\xb3\xfa\xc6\x17\x34\xfb\x1d\x07\x9b\xc4\xc8\x62\x41\x59\x87\x99\x2f\xb8\xe5\x1b\x21\x2e\x44\x2c\xda\xde\xba\x3a\xb7\x8a\x9f\x27\x89\xd4\x62\x51\x53\xb3\x4c\xc2\x85\x00\x46\x31\x3a\x80\x97\x4d\x33\x0b\x5e\xf8\xd3\xff\x0f\xae\x84\x08\x82\xab\x93\xc3\x34\xd7\xe8\xd8\xcc\x9a\xa5\x41\x7c\x59\xfd\x02\x6a\x5b\x7a\xad\x47\xf2\xb8\x7b\x38\x38\x66\x8d\x61\x30\xc3\x9e\x5e\xa0\x2f\x52\xd1\xad\x6b\xc1\x95\xc8\xea\xca\x05\xd7\xa1\xb0\x67\xdf\x0a\x0e\x5a\x2b\xc5\x1a\xf4\x76\xc0\x5e\x91\x12\xc5\x7d\x70\x37\x5b\xc4\x50\xed\x22\xe1\xbb\x60\xe3\x72\xf2\xc8\xc5\x32\xf6\xcd\xff\xa3\x52\xbe\x8e\xa8\x05\x13\x56\xb4\x3f\xa9\xec\xd6\x24\xbd\x9a\x44\xa6\x2b\x5e\xa6\x17\x19\x93\x5c\x98\x3f\x16\x80\x9f\x4a\xb5\xc7\x9a\x48\xfa\x6c\x3e\x79\x81\x5f\xb5\x09\x6a\x2d\x72\x9e\xe5\x00\x42\x1f\x3f\x79\x0c\xd7\x02\xbe\xb6\xc8\x5c\x29\xac\xb4\x2c\x50\x02\xb5\xe5\x29\xa2\x47\xff\x32\x51\xb4\x7b\x59\x1a\xad\xa4\x5a\xe3\x82\xab\x92\xcf\xf9\x45\x2b\x56\x91\x2a\x63\xd1\xd9\xde\x2d\xc0\xd7\xde\x87\xe8\x22\xae\xb3\x97\xf3\xda\x79\x31\x14\x3e\x5d\x04\x76\x16\xe4\x3b\xb9\xab\xf8\x85\x17\x21\xf9\x90\x5c\x3b\x37\xad\xb7\xdc\x0b\xec\xaa\x33\x0c\xad\x03\xb9\xca\xbd\xe5\xe0\xdc\xe4\x23\x72\x1d\x04\xa3\xcd\x3f\xe4\xbc\x68\xae\x8f\x5c\x4e\x0d\x8b\x85\xee\x9b\xbb\xb8\xb1\x9a\xfe\xe0\x81\xf2\x53\x83\x40\x05\x09\x55\x90\x8b\x45\x10\x67\xd1\x75\x72\x87\xe8\x46\xb6\xe8\xac\xe4\x4c\x0f\xeb\xe4\xb6\x94\x4e\x68\xb1\x86\xd8\x47\x48\x23\xb7\x93\xc3\x6f\x17\x0b\x44\x38\x03\xec\x82\xa5\xcc\xa9\x1e\xd6\x99\x13\xa7\x89\x81\x16\xe9\x43\xe5\x45\xaf\x78\x8d\xe2\xca\x93\xc5\x3f\x74\x74\xa9\x16\xe9\xcc\x5f\xa4\x33\x5a\x2c\x77\xef\x2e\xaf\xa4\xc9\x2f\xf0\xbc\xfb\x34\xc9\xf3\xce\xcb\x7d\xd1\x43\x4f\x2f\xd0\x34\x66\x67\xe9\x05\xd3\xd8\xb2\x48\x46\xd5\xaf\x62\x57\xe8\x75\x73\xbd\xdd\x02\x53\xb8\xf9\x99\xe7\xa3\xae\x2f\x0b\x81\x93\xb6\x00\x2c\x00\xbd\xcf\xe9\x07\x87\x24\xc7\xb9\x2d\xa8\x9d\xd6\xf8\x34\x70\x70\x10\x26\xe1\x44\x0b\x6e\x91\x97\x13\x7f\x81\x0a\xac\xcd\x12\xf1\xe1\x76\xd7\xc5\x61\x51\x8b\xa4\x2a\x5b\xb1\x00\xec\x6c\xaf\x5b\x74\xcd\xdf\x74\xdc\xed\x80\x6d\xbe\xb1\xef\xcc\xee\xe0\xcc\x1c\x3b\x1c\x90\x9a\xd3\xe3\xee\xd0\x33\x55\x03\xd4\x1d\x25\x58\x8b\x3d\xd9\x77\xd8\xb6\x2c\xd6\x76\xe8\x9d\x9a\x13\xea\xee\x4c\x6c\x5c\x74\x43\xde\x51\xa3\xd5\x38\x7b\x4f\x28\xa8\x71\xec\x70\x40\xb2\x50\xda\x01\x0d\x1d\x02\xb8\xb3\x44\xab\xd3\xe9\xee\x5b\x43\x09\x26\x3f\x53\xce\xe9\xd2\xb5\x6f\xa8\x6d\x1f\x6e\x01\xc9\x18\xb4\x39\xf7\x84\x86\xdd\x3f\xa0\x6e\xce\xf4\x33\xae\x33\xce\xcf\xbb\xc3\x3b\xc9\x3b\x69\x2f\x3c\x4b\x34\x86\x92\xab\xa5\x2e\x4b\x4e\x9c\xe6\xa5\xf0\x00\x93\x44\xd8\xe9\x6b\xe4\xec\xbb\x3b\x8c\x5d\xb5\xfa\x99\xbb\x53\x90\x78\x67\xd9\x89\x51\xfe\xe4\xd2\xb0\xa3\x26\xc5\x67\x6d\x2b\x4b\xfb\x88\xe4\x0a\x9e\xf6\x10\x2b\x71\x87\xb6\xea\xce\xd0\x49\x27\x20\xd9\x6b\x72\xb9\x98\x01\x9e\x4b\x9f\xb5\x87\xe1\xac\x0e\x77\x41\xc5\x81\xff\x87\xe0\xf6\x42\x52\x17\xa6\x8d\xbb\xc3\x8c\x66\x0b\xe4\x0e\xb7\x26\x27\xb0\xd8\x51\xad\xeb\x33\x63\x2d\x65\xa4\xc6\x98\x90\xd1\x1c\xde\x68\x52\x12\x45\xa9\x3b\x93\x32\x6d\xa7\xee\xcc\x2e\xca\x3b\x9c\xef\xbf\x2d\x9c\x6c\xd2\x4d\xc0\xf9\xdc\xcc\x05\x2f\xa7\x22\x3d\xc4\x9e\xba\x35\x11\x0d\xff\x79\x3b\x20\xef\x9d\xc2\x46\xf8\x6e\xef\x94\x99\xba\x0b\xed\x9d\x2b\xa3\x69\xe8\x3c\x21\xbb\x9b\xa4\xde\x52\x02\x6c\xef\xc9\x4b\x22\xa2\x53\x21\x23\x84\xbf\x0f\x4c\x6d\xf5\xc6\x1d\xf4\x06\x57\xa7\x23\xc9\x52\x13\x09\x03\xa5\x06\xda\x07\x67\x46\x03\x49\x6d\x9d\x10\xcc\xce\xe0\x4b\xef\xaa\x91\x54\xa9\x0f\xf8\x45\x39\x9f\xeb\x1e\xac\x08\xa2\x16\x83\x1b\xd9\x1b\x15\xa9\x9d\x1d\x9b\xb9\x07\xcf\xe5\x4f\x0b\xa4\x49\x13\x41\x6b\x5d\xb8\x01\xc8\x16\x6f\xa1\x04\x89\x5e\x0d\x54\xfd\xb2\x1f\xfe\x3e\x73\x8f\xa9\x87\x89\x64\xfa\x42\xae\xfb\xe4\x41\x6d\x9a\x50\xea\xc2\x51\x5a\x3b\x2a\x5d\x6c\x32\x28\xec\x48\xb6\x19\x4e\x84\xbb\xc3\x13\x6a\x0d\x13\x0d\xd7\x27\x27\x67\xdd\x53\x67\x68\x96\x9a\x94\x1d\x26\x62\xf1\xb6\x2c\xcc\xbf\x27\x38\x34\xd7\xa1\x9c\xac\x43\x90\x77\x80\xc5\x58\x6e\x81\x5b\xc7\x33\x83\x7c\x9c\xcb\xfb\x00\x1e\x51\x4e\x9c\xba\x2f\x30\xa5\x2e\xbe\xfb\x22\xd1\x9a\x86\x95\x33\xab\x51\xb1\x8a\x85\x8e\xa7\x9d\x91\x9d\x9f\xb5\x62\xe0\xe6\x67\x71\x76\x2c\xa6\xd7\x66\x67\xd2\x51\x8d\x89\xe9\xb5\x8a\x4f\x06\xa4\xd3\x72\x00\xfb\x8e\x6c\x5a\x06\x86\x3b\x4c\x7f\x4e\xd0\xb9\x1f\xd9\xa3\x66\x1a\x51\x96\x6b\x7c\x7e\xe0\xa8\x45\x23\xa3\x2e\x4b\xb8\x49\x38\x1f\x79\x1a\xe8\x20\x35\x3e\x3f\x50\x9b\x12\x6e\x12\x47\x87\x80\xdd\x7e\x92\x08\x3f\x37\xfc\xaf\xf7\xa1\xce\x53\x05\xc2\xd8\x4f\x82\x76\xcf\x34\x6c\x83\x0e\x0e\xde\x4f\xae\x84\x66\xe5\xe4\xf5\xec\xd3\xc2\x8e\x0f\x34\x4d\x2c\x2d\xeb\x7d\xca\xf4\x5b\xf6\xa8\xda\x61\x5c\x74\xa2\xc7\xfd\x4c\x48\xe6\x16\x38\xa6\xf8\xd3\x41\x74\xc1\x8e\xa3\xfb\xe5\xfe\x82\xca\xe6\xe8\xba\x1d\x35\xc5\xd6\xe7\x99\x13\xa0\x55\xa3\xa6\xce\x91\x05\xfb\x85\xd3\xda\xcb\x8e\xfc\xd8\x4e\x33\xb3\xbf\x80\x31\xec\x58\xb7\xdf\x84\x56\x9a\xa0\x9b\x05\x53\xd5\xde\x0b\xff\xaa\xad\x0e\x3b\x6a\xc0\x3a\xc1\xfc\x7e\x23\x59\xc3\xf4\xff\x3c\x29\xa5\x1e\xdd\xef\x9c\x71\x51\x00\xc5\xdf\xe7\x60\xbc\x79\xad\xf2\x33\xa1\x9a\xb0\xfc\x7e\x73\x08\xee\x02\x35\x33\xcc\xb9\x70\x5f\x77\x3a\xbc\x3d\xd1\xa1\x99\xe0\xe1\x15\xc6\xc8\xed\xa1\xbf\x97\x7a\x78\x10\x1a\xe7\x93\xf0\x21\x84\xd5\x24\x20\x05\xf8\x87\x6d\x9f\x9c\x75\x37\x98\x88\x55\x34\x32\x8f\x86\xf3\x74\xed\x08\x05\x75\xf6\xa6\xe3\xc5\x9b\xdd\x09\xf8\x0e\x38\x52\xb9\xcb\xe3\x87\x79\x1e\x7e\xa6\xea\x52\x32\xe7\xa0\xb7\xbb\xa4\xdc\x81\xe4\x63\xce\x92\x71\xc0\xb7\xdd\x99\x9b\x0e\x94\xc8\x70\x3e\xbe\x63\xa3\x9a\x52\x04\x20\x15\x59\x38\xf0\xe6\x80\xd1\xb2\x59\xe4\x1c\x48\x35\x66\xcd\xc6\x01\x1f\x28\xb3\xda\xb1\x11\x93\x69\x6b\x1c\x4c\x10\x2e\x65\xfb\x41\x9b\xa4\x63\x27\x8e\xf2\x9e\xab\x4e\xfc\x7a\x14\xe6\x06\xf5\x73\x0e\xda\x1f\x60\x3b\x0f\x3f\x27\x73\xb9\x0b\x1e\x0f\x52\xae\x1e\x85\x17\x64\x49\x88\x83\xa5\x5b\x3d\xee\x92\x4b\xa7\x1f\x2a\xaf\x50\xda\x73\x47\xea\x10\xab\xdf\xc0\xa6\xd4\xd9\x7e\x54\x6a\xe7\x64\xa2\x3e\x50\xc2\xdf\x49\xdc\x8e\xca\xc5\x74\x03\x48\x40\xa5\x4d\x74\xd4\xbc\x11\xb9\x4b\x82\x43\xa9\xb2\x0f\x6a\x08\x8b\xf6\xd9\x01\xc3\xa7\x6f\x59\x07\xc0\xdc\x67\x39\x5b\x4e\x9d\x5b\x98\xb0\xf6\xb9\x01\x24\xfb\xd7\xc6\x3f\xe0\xb1\xee\x48\x98\x03\x29\xcc\x9d\xc5\xe9\x40\x6c\xa4\xb3\x8d\x1d\x74\x60\xb7\x2c\x3e\x1a\xd2\x35\x4a\x72\x1c\x1d\xdb\x52\x37\x91\x03\xda\xc1\x4f\x03\x70\x78\xb7\x2f\xda\xc1\x0c\xa8\x9b\x39\x16\xa1\x92\x76\x78\x3b\xe8\x11\x5f\x3e\x3f\xc0\x84\xed\x69\xef\x20\x51\xdb\xfa\x60\xba\x72\x1f\x1f\xc7\xa0\x20\x90\xba\xf0\x18\x9c\x45\x4d\x42\x46\x2e\x2e\x7f\x81\xf3\xc4\xeb\x30\x88\xfb\xcd\xa2\x63\xe7\xda\xbb\x53\xcc\xdb\xf4\x0b\x04\x7a\xcd\x2f\x60\xdb\x4c\x3f\x03\x0b\xd8\xea\x7d\xd0\xed\xca\x87\xd8\x11\x2c\xd0\xec\x7d\x12\x14\x16\x9a\x88\xe0\x30\xb4\x76\xcc\x6a\x3a\xea\x9f\x2e\x43\x47\xf0\x1c\xf7\x4a\x40\xbf\xe8\x90\xd2\x83\x29\x4d\x9d\x6e\xfc\x98\xc9\xf0\xa2\x70\x32\x36\xc1\x2f\x04\x2e\x3b\x7e\xe6\x3e\x35\xc7\xc3\x89\xcb\x2e\xe2\xc7\xc4\xd2\x99\x1b\x27\x11\x93\x84\xfe\x81\x1c\xea\x76\xc6\x3e\x12\xe5\x49\x8f\x75\x2c\xee\xd2\xe6\x1f\x20\x61\xbd\x94\x48\xb2\x5e\xcd\x8f\x0b\x45\x46\x85\xa7\x0f\x14\x11\x29\x9b\xce\x91\x83\xb9\xcf\x3c\x6a\xa2\xba\xcf\x33\x20\x99\x74\xa8\x07\x4c\xc3\x0e\x0b\x38\x98\x83\xdd\xca\xe4\x63\x91\x35\xb4\x6c\x8b\x83\x76\x03\xf0\x44\xf8\x34\x80\x31\x7b\xcb\xee\xc4\xdf\x96\xc8\x7b\xa6\x35\xd2\x33\xef\x29\x3e\x55\x90\x37\xed\x23\x04\x76\xea\x17\x2c\x50\x91\x36\xcd\x91\xb4\x07\x3c\xc4\x9a\xe1\xcd\x71\x64\x9f\x6a\x92\x89\xdc\xcd\xdf\x34\x03\x3b\xe0\xe9\x80\x1f\xbd\xd3\x9c\x1c\x07\xb7\xed\x72\x0b\x9c\x68\x1f\x55\x07\x45\x93\xe6\xe1\x20\xe6\xfa\x34\x41\x3d\x98\xd7\x0a\x1a\x43\x1f\xe0\xc7\x89\xfb\xbc\x67\xfa\x24\x51\xba\x88\x1c\x27\xc3\xae\x35\x6e\xe6\x55\x73\x3e\xfa\xe3\x45\x92\xe3\xf7\x79\xa6\xc9\x5d\x24\x9c\xbc\x0b\x9b\xa5\x81\x24\x3f\xe2\x8d\xc5\x4f\x5c\x8a\xe0\x38\xc9\xe2\xfe\x00\xab\xbf\x4c\x02\x39\x5a\xd3\x02\xfd\xe1\xac\x52\x42\x1c\xd4\x17\x3a\x81\xfd\x71\x51\xa6\xfb\xfc\xbc\x52\x1a\xb9\x8d\x24\x42\x13\x91\xf8\xd0\x47\xd1\x8b\x07\x87\x3d\x36\x0f\x2a\x0c\xcd\x93\x50\xff\xd9\xd4\x78\xbc\xf8\x6f\xd8\x03\xe7\xb8\x39\x4f\xa2\xe9\xa6\x83\x84\x59\xec\xc5\x7b\xc3\xfe\x9b\xc7\x9d\x24\x89\xe8\x17\xce\x35\xe7\xb3\x3d\xe0\x44\x36\xab\x34\x1d\xc7\x43\x55\x9c\x4f\x96\xa7\xbe\x4d\x4a\x09\x76\x3c\xa0\xc1\xd2\xe6\x09\x3c\xab\xcb\x87\x34\x79\x5f\x3c\x64\x7b\x4b\xed\x84\x67\x12\xca\xe7\xef\x07\xaa\xa7\x9e\x37\x0a\xe5\x4d\x3f\x90\xa3\xc2\x3f\x54\x92\xbd\xf4\x03\x85\xa2\x0e\xb8\x93\x86\x5f\x1f\x68\xe7\x0f\x74\x7e\xbe\xa0\x6b\x81\x04\xfd\xf9\xa3\x26\xbd\xf9\x0d\x62\xe1\xf0\x1b\x58\xbe\xcd\xcf\xb8\x51\x59\x75\x71\xfe\xb8\x81\x75\x28\x9e\x2f\xce\x1b\xf6\x7e\x3d\x5f\x9c\xd7\x9c\x49\xef\xdc\x38\xb9\x7e\x6e\x78\x5f\x3d\x6c\x9c\x5c\x7f\x4f\x51\x2e\xe4\x71\x6e\x64\x31\x9d\x3e\xe7\x8b\x0b\xc3\xb1\xc9\xe7\x8b\x0b\xc7\x6f\xfb\x4b\xe5\xf1\x38\x89\x19\xed\x44\x74\x66\xea\x36\xcd\x6a\x21\xbd\xea\xad\x50\xe6\xe9\x0c\x3f\x0b\xef\x84\xdd\x5f\x70\x04\x7e\x21\xd9\x43\x23\x78\x41\xe3\x70\x96\x8a\xf3\xc5\x8c\xc3\xfa\xe9\xb3\xe4\x2a\xf8\x05\x1a\x74\x25\x25\xcf\x84\x88\x42\x01\x67\xa5\xe7\x9a\xae\xbe\x67\x62\x44\x21\x89\xb3\x26\x99\x9a\xe8\x0a\x32\xa5\x6d\x39\x2b\xac\x03\xc3\x7d\x60\xe9\x8b\x5b\x44\x8d\xf6\xea\xff\x5f\xfc\xf5\x19\x55\x03\x4b\x4b\xe4\x9d\x69\x54\x6e\xfe\x01\x33\x29\xe5\xdd\xd9\x28\x13\xb5\xcf\xce\x46\x06\x96\xac\x3f\x69\x23\xae\x9b\x7f\x38\xd1\x84\x86\x9d\xfa\x3f\x4d\x54\xc3\xd2\xeb\x5a\x74\x76\xd2\xa4\xff\x7b\xce\x9b\x88\xee\xe0\xbe\xe2\x67\xae\xae\xd0\xd2\xd9\xb1\xf7\x3d\xaf\x4c\x93\x5f\xcd\x9f\x7d\xa2\x05\xcd\x73\xa7\x8c\xec\xa6\x81\x88\x4d\xc7\xcd\xd9\x73\x0f\xf9\x07\x50\xed\x2d\x32\x28\x1c\x34\x71\xc8\x7a\x3f\x5d\xd3\xe0\xa4\x37\x9f\xa1\xc2\x39\x30\x0c\x4b\x8f\x01\x29\xaa\xdb\xe0\x39\x28\xc9\xbb\x9b\x5c\x6c\x52\x54\x0e\xcc\xac\xae\x2d\xe7\xe0\x35\xe5\xf3\x03\xf1\xb7\xce\xfa\x93\xee\x7d\xd5\x7c\x1e\xb9\x95\x34\x15\x4c\xce\xe6\xc0\xab\xf3\x05\x96\xd5\x8e\x68\x67\x90\x4c\x0d\x23\x2d\xcf\x9f\x1f\x20\xa0\xec\xb4\x73\x06\xb7\xc6\x74\xa7\xd4\xf9\x98\xad\x11\x4d\xe9\xf8\x8c\x93\x96\x65\x8f\x63\xb2\x36\xb2\xa6\x6a\x82\x2b\xcd\xd6\x33\x99\x50\xe3\x64\x35\x5c\x67\x72\x3d\x27\x4a\x06\x7c\x5e\x40\x78\x99\x47\x35\x51\xe6\xc0\x72\x79\x26\xe0\xd6\x0b\x0b\xeb\x2b\x50\x74\x2e\x44\x0c\x0b\x6d\x9c\x19\x41\xf0\x79\xa1\xa3\x5c\x88\x18\x04\x48\xd1\xf1\xd9\xe7\x02\xa0\x31\x05\x28\x2e\xe7\x0c\x2b\xe7\xe2\xf1\x63\x9e\x84\x3e\xd0\x68\xf7\xdc\xe9\x54\x24\xd4\x75\xee\x90\xe2\x96\x82\x7b\xc1\xb3\x7a\xdc\xc9\x70\x7e\x1f\x25\xaa\x75\xcc\x9f\x3b\xb1\x84\x65\xda\xce\xec\x0d\xe2\x8d\x1d\xdb\xc6\x07\xe2\x0e\x19\xd8\xfc\x3e\xa4\x8f\x85\xfa\x7e\xe3\x7f\x4d\xc9\xc1\x5b\xb3\x1b\x3c\x48\xb1\x86\x74\x90\x62\xad\xda\x81\x75\xf6\xd9\x77\x00\x37\x08\xca\x9c\x07\x0d\x2a\xde\x22\x07\xcf\x19\xdd\x19\x4e\x66\xdb\xb5\xca\xe3\x3c\x40\xa3\x4f\x4f\x24\xc5\xf8\xb0\x22\x73\xbc\xad\xf1\x27\xaf\xee\xf3\x04\x57\xf8\x20\x3d\x31\x00\x1f\x2b\x27\xf1\x9a\x85\xdb\x89\xdd\xe3\x93\xeb\x4c\x46\xd5\x90\x00\x11\xd7\xe7\x83\x8b\x2d\xf8\x05\x38\x7e\x79\xce\xd2\x06\x6d\xc6\xb9\x48\x83\x46\x94\x8e\x81\xde\xe2\x4c\x88\xb1\xe9\x9e\x74\x5e\xd4\xb0\x7b\xe1\x5e\x54\x59\x3f\xb3\x98\xa0\x72\xb8\x4d\x70\x82\x85\x44\x82\x4c\x21\xdf\xf3\xe2\xca\x78\xde\x2f\xc8\x2a\x6f\xc8\x8b\x57\x5e\x1f\x5d\xd7\x8d\x1d\x6a\x1a\x60\x58\x10\xf4\x3d\x59\xa4\xd7\xc0\xe8\xe6\x30\xf5\x3d\x9d\x0b\x6d\xfe\x3b\x11\xea\xe0\x9b\xd3\x99\x4a\x46\x5d\x08\xce\x9b\x48\x4a\x9a\xa2\xf3\x86\x4c\xf7\x5a\x3c\xec\x42\x5d\x3e\xd8\x40\x1e\xd3\xc3\xc3\xd0\x22\x9b\xa0\x53\x0a\xb9\x93\x26\x67\x1f\xaf\x0f\x40\x84\x94\x42\x67\xc6\x31\xb8\x03\xea\xe3\xff\x11\x70\xa5\x01\xba\xe9\x19\x04\x0d\x3f\x13\x5f\x56\xff\x80\x22\x61\x5a\xc8\x0b\x55\x05\x0d\xdc\xae\x1f\x09\xac\x7a\x26\x41\xa1\x67\x54\x0a\x10\xf7\x5d\x3f\x84\xbd\x6f\x6e\x3f\x99\x4d\x3f\x6c\x70\x53\xd5\x9c\x5e\x0c\x73\xd8\x74\xa3\xb9\x58\xbd\xc0\x81\xbb\xd7\x46\xf5\xbd\x40\xf2\xb5\xb1\xfc\xbb\x9b\xc0\x16\x19\xfe\x80\xc2\x7d\xf9\x87\x80\xeb\x9c\x3f\x98\x18\xa4\x1b\xa4\xd7\x9a\x66\x11\x91\x9b\xb6\x87\x5f\xd0\x51\x3a\x58\xec\xda\xc0\x9a\xc3\x24\x93\x35\x75\x18\x5c\x1b\x0f\x7f\xc9\xf6\x0b\x6e\x8d\x4e\x8c\x71\xa1\xa8\xa1\xd3\x00\x5e\xc8\x1c\xec\x6c\x2a\x57\xc9\x31\x8b\xe4\x92\x63\x72\x8b\x04\x1c\x62\xf7\x8b\xe6\x6e\xb1\xc6\xf5\xe2\xcb\xfa\x21\x32\xdd\x1c\x97\x5f\x80\xb0\xd5\x79\x73\xbd\xf8\xb3\x19\x90\x5c\x50\x59\xda\xa7\xe3\xaa\xbc\xbd\xe8\x78\xb8\x2a\x98\xcb\xeb\x92\xc9\xe3\x44\x51\xc5\xba\x78\x0c\x50\x50\xba\x7e\xee\x05\x9f\x48\x67\xe0\xbf\x2a\x2f\x54\x9e\xa5\x8a\xed\xe5\x69\x65\x2a\x38\x07\x51\x5c\x2c\xca\x64\x7d\xe2\x85\x30\xd0\xaa\x3d\x7e\xb1\x26\xd3\xcf\xcf\x0d\xeb\xe0\x06\xc8\x3a\x22\xb9\x81\xdd\x3f\xed\x11\x08\xea\x04\xbb\x1a\x0a\x26\x4b\x76\x5e\x0d\x27\x9a\x2e\xec\x17\x8c\xd7\x0e\x66\xbc\x58\x60\x61\x7c\x7a\xe4\xac\x6b\x96\x09\x66\xe5\x65\x7b\x31\xf9\x9b\x0e\xa8\x8b\xee\x8f\x0e\x0a\xbc\x7a\xb2\x86\x16\xb6\xd3\x85\x64\xfe\x29\x1b\xdd\x45\xa8\xab\x7b\xd5\xc5\x54\x71\x8e\x29\xbc\x12\xda\x7e\xde\x20\x3e\x6f\x26\x09\x63\x9e\x26\x80\x6e\xbe\xcd\x4d\xe4\x7e\xf0\x17\x37\x36\x9c\x26\xe1\xc5\xba\xd5\x66\xea\x0b\x69\x8a\x1d\x46\x74\x0d\x1c\xe3\xd3\xcf\x2c\x5b\xf1\xf3\x0f\x34\x53\x6b\xda\x47\x8e\x42\xeb\x34\x70\xde\x84\x5f\xc8\x41\x68\xa5\x07\xd6\xc1\xcc\x17\xc9\x5b\xfa\x22\x50\x5c\xdf\x2b\x1d\xe4\x76\x35\x10\xa0\xd1\xcb\x90\xc9\xdc\xc4\x3a\x31\xa0\x4d\xd2\x34\x06\x45\xbb\x65\x33\x35\xa4\xd3\xcf\x74\xd4\xfa\xf4\xc0\x1d\xfd\x73\x17\x80\x22\x82\xc5\x17\x55\xa8\xae\x8c\x79\xcd\x64\x16\x75\x3a\x09\xce\x2d\xbf\x27\xaf\x90\xde\x42\x93\x06\x59\x1f\x11\x4c\x1b\x62\xed\xf4\xc5\x54\xc8\xb5\xbb\x0d\x80\x2a\x13\x3e\x93\xc7\x45\xe7\x24\x4f\x8b\x8a\xc5\x28\x0f\x4b\xe8\xc5\xf5\x55\x8b\xd4\x92\x3a\x66\xf0\x62\x26\x64\xfb\xc5\x5d\x2b\xaf\x32\x7a\x7e\x65\x87\x63\x67\xaf\x45\x9e\xd4\xdc\xc1\x8d\xd2\x49\x31\x2e\x46\xd4\x7c\x24\x43\xa2\x65\x0b\xf9\x17\x2d\x0f\x3b\x9e\x5f\x3b\x9c\xbe\x7d\x70\x11\x1c\x5b\x00\xef\x18\x83\xf9\x63\xa7\xaf\xb4\x45\xc5\x9e\x63\xf0\x17\xe4\x41\xc1\x85\x8b\x70\xd8\x47\x1f\x02\x6a\x3e\xe2\x0d\xf1\x34\xbe\x00\x5e\x84\xc7\x16\xa0\x3b\xe6\xd9\x47\xc0\x0b\x97\x87\x3d\xe1\x2f\x04\xde\x5a\xcb\x72\x21\xe5\x9c\x33\x35\x5c\x19\x5b\x63\xf1\x77\x20\x19\x84\x09\x3c\x20\x1e\x97\x1b\x24\x64\x12\xc0\xb9\x0e\x18\x6a\x7d\x9a\x1f\x13\x14\xb8\x07\x2a\xa3\xbc\x51\x0f\xe0\x87\xe9\xe7\x97\xc7\x6d\xef\xb9\x88\xb6\x3d\xeb\x30\xee\xdb\x10\x72\xc1\xcb\xd3\x20\xef\x3a\xb9\x6d\x05\xb1\x2e\xd6\xce\xf2\x15\xe0\x3a\xa1\x01\x31\x89\xc0\xcb\x4e\x86\x76\xc1\x36\xdf\xcc\x18\x8c\xb4\xb1\xad\xe5\x3a\x89\x2b\x45\x32\x4b\x63\x39\x81\xfd\x75\x41\x9a\x79\x96\x10\x69\xd3\xa4\x6e\xb8\x5e\xb4\x3c\x6c\x4d\xbf\x58\xb8\xc2\xcb\x7e\x91\x51\x7c\xee\x5d\x9c\x45\x91\xcc\x72\x9c\xf6\x5c\xbe\x50\x8e\xd3\x79\x20\x2f\x62\xe5\x0f\x89\x17\x1a\xd0\x1c\xbc\x50\x79\xd8\xe9\xfe\x7a\xa1\x71\xfd\xcc\xc9\xbd\xe1\x7f\x7d\x4f\x7f\x4e\x07\x3c\x5e\xc8\x7d\x52\xab\x7b\xbc\x1b\xbe\xf0\x0b\x14\x23\x7f\x8b\x6d\xbd\x12\x7a\x5b\x2c\x21\x8e\xc7\x0e\xc7\x17\xa2\x8c\x9d\xf0\xfd\x62\x5c\x8f\x3d\x06\xae\x84\xe2\x16\x21\xa8\x06\xf6\x59\x25\x44\x1d\x97\x22\xc5\xc5\xc5\xc8\x1f\x0b\xa5\x87\xd8\xc1\x62\x0c\xe0\xdd\x71\x06\xd7\x03\xef\x74\x63\x38\xe6\xa7\xb3\xa9\xe6\x7a\x92\x28\x7f\x71\xa0\x85\x7f\x5f\xdc\x28\x6b\x51\xec\x02\x70\x43\x01\xec\x6c\xb9\x37\xd0\x77\xd1\xfe\xbb\x7f\xe0\x14\x6d\xd0\xfb\x47\xef\x2b\x11\x7d\xff\x16\x5e\x70\x03\x3b\x9e\x37\x3d\x83\x02\x51\x74\x6f\xb9\x3d\xf4\x41\xba\x76\x4e\xff\x80\x51\x9b\xc4\x8d\x0e\x7d\xd3\x4d\x24\x77\xfa\x87\x03\x7a\x0a\xb7\x70\x72\x94\x4b\x3f\x50\xd6\x0e\xff\x00\xbb\xdb\x72\x1f\x10\xb5\x5a\xcc\x3b\xd5\xb3\x92\x0a\x77\x01\x3f\x4a\x70\xdd\x85\x44\xfa\xff\x8a\xe7\xa2\xe7\x81\x00\x0d\x3f\x93\x66\x6d\xd1\xbb\xd0\x73\x5b\x8a\x82\x9b\x89\x94\x3d\x2f\x0c\x4c\xae\x02\xb3\x37\xe1\xb2\xc3\x25\x6f\x3a\x8b\x2e\x3f\x53\x5d\x2b\xac\x78\x57\x12\xad\x2e\x00\x8f\xed\xa0\x7a\x03\x1e\x17\x07\x75\xde\xc0\xc7\xf6\x37\xbe\x2b\xdd\xd4\xc2\x2d\x04\x5e\xd0\x3c\x55\xac\x7e\x71\x8f\x58\x7d\xdd\x5b\xee\x8a\xd5\xd7\x26\xbd\xa9\xdc\x5d\xfe\x1e\xaa\x0b\x9d\xec\x37\xbc\x41\x8b\x83\x48\xef\x86\x48\x57\x53\x04\x65\xae\xfd\x9b\xef\x74\xff\x14\x36\xbc\x53\xbb\x1b\x6e\x61\xe0\x0b\xcd\x52\x7a\x0c\x78\xda\x10\x31\xd4\xac\x7b\xbd\x1b\x65\x99\x9f\x0f\xea\x2f\xf4\x8c\xe0\x1b\x9d\xa2\x37\x8a\x9e\x16\xc7\x77\xde\x9d\xbb\xcc\xd3\xd2\x91\x39\xcd\xc3\xee\x0d\xa5\x83\x35\xec\xce\x30\x13\xbf\x0f\x9a\x85\x2d\xee\x4e\xa4\xe6\x61\x77\x88\x53\x81\xfa\xbb\x43\x9c\x9a\xc4\x9e\xf3\xa8\x1e\x5f\x7c\x1b\xce\xfa\x7e\x0f\x1a\xdf\x05\x16\xee\x04\xb4\x66\x8e\xc1\x79\xf3\x0b\x5c\x7a\xd1\x3c\xb0\xf4\xd5\xef\x63\xe9\xab\x7b\x3c\xde\x1e\xcd\xbe\x03\xea\x49\x21\xea\x3b\x15\xbb\xcb\x3f\x24\xfb\xaa\x45\x00\x60\x17\x68\xbe\x83\xf7\x8c\xcf\x0f\xb9\xd6\xfe\x81\x26\x0f\x01\xd6\x3b\x48\xa4\xe6\x2d\xc0\x8f\x9e\xf8\x38\xf1\xec\xf7\x31\xaf\xc2\x3b\x77\xf0\xda\xec\x2d\x15\x10\x14\x5e\x29\xc6\x82\x7f\x38\x78\xe2\xde\x6c\xf9\x08\x3d\xef\xd6\xfe\x14\xd2\x7a\xcf\xfd\xbf\xff\x7d\xc0\xcc\x3d\x41\x9e\x90\xc1\xcd\x40\x71\xdb\xe2\xef\x89\x75\x17\x18\xb9\x11\x30\xf4\xd9\x1e\x50\xf9\xda\xc7\xe7\x4e\xef\x81\xe5\x17\x20\x12\x74\x09\xb9\x57\xb2\x81\x7f\x00\x1b\x78\xd9\x32\x5c\xc8\xbc\xcc\x24\x32\x55\x73\xfe\x40\x68\xb8\xac\xc5\x53\x81\x1d\x04\x67\x1e\xca\x08\x6d\x9f\xa7\x72\x7b\xe9\xc2\xf9\x30\xf9\x65\xd5\x4d\xe8\xa9\x84\xf3\x9f\x1f\xb8\x2c\x12\xaf\x4f\xca\x0d\xed\x98\x87\x15\x7a\x1c\xf5\xff\xb0\x42\x8f\xed\xd2\x0f\x2e\xda\xf6\x21\x78\x1a\x81\xa3\xff\xa7\x16\x55\xc0\xee\x81\xcd\xc6\x96\xf1\xa7\xa3\x01\x5d\x53\x1e\x58\x64\x6c\x82\x7e\x3a\x5d\xb2\x3c\xae\xce\x63\x49\xbb\xf4\xe9\x39\x2e\xfd\x00\x8b\x4b\xb7\xd9\xfa\x19\x04\x31\x1e\xc6\xe0\xbd\xa4\xfa\x07\x6c\xcb\xf0\x17\x28\xbf\xa2\x6d\xfa\xb0\x0e\xe1\xe7\x7d\x1e\x85\xd3\x2f\xdc\x30\xf0\x6b\x18\xc1\x34\xe9\xfa\x3f\xc8\xe1\xd3\x2f\x10\x4c\x6a\x9c\x01\x2b\x81\xa7\x1e\x71\x7d\xcd\xeb\x1b\x98\x17\x09\xe4\xe7\xdd\x93\x9f\x68\x91\x67\x82\x05\xb5\x89\x1f\xee\x18\x9d\x39\xcf\x44\xda\x75\x1d\xb5\xcf\x04\x47\x6a\x4b\x3e\x93\x33\xa0\xfe\x26\xfb\x13\x7d\xef\xa6\xaa\x8e\xf4\x7a\x66\xae\x8b\x3f\xc0\x2e\x33\x03\x4f\x1e\xb4\xd5\x14\x20\xc7\xe2\xa7\xc7\xe4\x36\x75\x41\x2f\x9d\x2a\x59\xf6\xac\x5c\x48\xff\x00\xe6\x91\x98\x78\x16\xf1\xa6\x36\xe2\x83\xfb\x65\xd8\x90\xf0\x2c\x6c\x13\xf3\x06\x0b\x10\xd6\xe5\x17\x20\xab\xcc\x5e\x0b\xb2\xc0\x9b\x64\x87\xcf\xad\xf9\x77\xe7\xcd\x7b\xfa\x07\x4c\xb4\x79\x8b\xf9\x18\x7e\x6e\x20\x79\x4d\x13\x85\xb8\xbd\xd0\xb1\xf6\xb0\x44\x4e\xf1\xff\x84\x9f\xd5\x3d\x90\xd9\xbc\xa9\x76\xd2\xe8\x67\x88\x53\xf3\x16\xac\x27\xbe\x5f\x3e\x47\x63\x8b\x9a\xb7\x03\x8b\xef\x31\xf0\x7a\x67\x6e\x86\x79\xc5\xe2\xf7\x39\xb8\xe7\x74\x9d\x7b\xe0\xac\xed\x63\xee\x81\xb1\xa4\xdb\x71\xe0\x39\x79\x78\xeb\x72\xf4\x20\xc7\x78\x35\xff\x9d\x14\x2d\xde\x21\xf4\x99\x71\xdc\xde\x73\x62\xe9\x96\x9b\x84\xb3\xb2\xd0\xe5\x03\x5f\xea\x6e\xe7\x83\x87\x19\xc1\x9d\xe2\xea\xb9\xa8\x35\xd4\x30\x2f\xb0\x8f\xb9\x85\x17\x38\x9d\x03\xcf\x45\xcf\x4a\x9d\x14\xcf\x95\xc3\xd2\x17\xb0\x3d\x8c\xdf\x9f\xdc\xb5\x1f\xde\xbe\xcc\x6a\xb8\x6c\x4d\x3b\x3d\x3e\x37\xed\x6e\x3f\xbf\x81\x75\xf1\x42\xdf\x39\x27\x9a\x03\xf8\xcb\x58\x39\xfc\xe0\xba\xe4\xd0\xd6\x07\x49\x9a\xba\x95\xbd\x0f\xfc\x65\x5c\xad\xe7\x81\xbb\xcc\x6c\xde\x52\x70\x97\xb1\xf6\xf8\x79\x6f\x43\xc3\x6a\xc9\x07\x85\x6c\xba\x2d\x07\xcf\x83\xdc\x55\x82\x69\xcf\xc3\x65\xc9\x1e\xe7\xef\xbd\x1c\x55\x25\x49\x98\xbf\xf7\x6e\xd4\x64\x0a\x99\x3f\xc4\xce\x35\x5d\x6a\xe7\xef\x87\xa2\x5f\xff\xf0\xf5\xfc\xbd\x97\xa7\x21\x95\xdf\xfc\xc1\x74\x21\x4f\xa7\xf9\x83\xe9\xa2\x7c\x3a\xa0\xe5\x6c\xf9\x87\xc9\x31\xfa\x8b\x9d\x3f\xb8\xc9\x03\x4d\xf8\x05\xf0\xf7\x87\x46\x1e\x29\xcb\x1f\x90\xd7\x36\xbf\x41\xe1\xd5\xd4\xc4\x7b\x23\x2b\x4a\xa2\x32\x7f\x1b\x65\xd7\x26\xaa\x70\x21\x93\xd2\x6f\xfe\x36\x5e\x1b\x9a\x7f\x68\xfc\x42\x9d\x6e\xb4\xd9\xb8\x8b\xc1\x61\xf8\x8b\x80\xde\x47\x44\xc1\x7e\xa1\x64\x58\xf3\xc7\xc4\x50\x8a\x21\x9d\x3f\xd6\x73\x1e\x4b\x4d\xe2\x42\x56\x7e\x5a\x8b\x92\x34\xf8\x05\x16\x67\xf2\xea\xbc\x37\xae\xa1\xfc\x59\xf3\xc7\x0b\x56\xfb\xa9\x0f\x66\x9a\x2c\x4d\x6d\x22\xd8\x6e\xb6\x9f\x38\x84\x17\xa6\xa1\x99\xa1\xb7\x4b\xe9\x6a\xb3\xd2\x0c\xd9\x34\x10\xd4\x22\xd4\xf1\x3b\x7f\x35\xc5\xbc\xfb\xa0\x3e\x6a\x89\xcc\x9a\x6c\x2b\xb2\x70\x87\x2a\x5e\x0e\xa6\xa6\xfc\x99\x6f\x91\x9b\x52\xee\xbf\xf3\x57\x39\x8e\xee\x1f\x1e\xb4\xa0\x67\x26\x13\x57\xb0\xe4\xfc\xb5\xdc\xdf\x22\xbb\xe5\xc0\x44\x37\x6e\x51\xc5\xb3\xfb\xde\x91\x46\xf1\x8a\x77\xf0\x88\x27\x1b\x3e\xcb\x72\x5e\x98\xbf\xce\xc9\xd7\xa0\x3a\xbf\xd7\x18\x3a\x4c\xa7\x66\xdb\x4e\x92\x45\x10\x7c\x9c\xfb\xef\xf3\xc3\x06\x75\xaa\xc6\x34\x48\x80\xe6\x75\xe4\x08\x44\xf1\x48\x1e\xf4\x1b\x20\xa9\x68\xed\x06\x79\xce\x34\x0f\x98\x9f\xaa\xba\x7c\x91\xd1\xd0\x35\x6f\xfe\x22\x37\x8a\x5a\x84\x42\x5e\x97\xd7\xf9\x83\x42\x5e\xd7\xeb\xf9\x0b\x28\x33\xdd\x63\x50\x8a\x7e\x7e\xc0\x2c\x17\xd1\xfc\x42\xa9\xa2\x68\x8a\xf9\xc3\x75\x46\xd7\xc0\xf9\x83\x9f\xca\x6c\xe6\x69\xdc\x5f\x74\xed\x9b\xbf\x80\xf3\x94\x19\x16\xd7\x17\x9d\x7e\xf3\x97\xea\xf9\xae\x0f\x26\x44\x58\xd1\x98\x5f\xf0\x35\xe4\x27\x39\x7f\x93\x14\x6a\xc8\xc8\x75\x55\xa7\x28\x9a\xbc\x81\x2d\x37\xb8\xfe\xfb\x5f\x2d\x53\x73\xf0\xa2\xaf\xf6\x1b\x7f\xa9\x99\x37\x7f\x2f\x32\xab\xc2\xaa\xf3\x37\x53\x0a\x88\x7e\xa8\xed\x85\xa8\xe7\x0f\x6a\xfb\xb6\xd4\x1b\x3c\x54\x94\xa4\x66\xfe\xa8\xb4\x6f\xde\x0a\x40\x59\xc5\xfb\x13\x5a\x7b\xdd\x23\xe6\x8f\xa8\xab\x79\xf7\x41\x6d\xdf\x2d\x98\x16\xe5\xab\x17\x99\x69\xaf\x3c\x83\x3b\x34\x97\x9e\x41\xa2\xac\xe6\xad\x83\x0c\x99\xad\xfb\x03\x0a\x2e\xb3\x11\xd5\xf6\xcd\x9b\x8f\xe9\x12\xa6\x68\x78\x71\x57\xfd\xcc\x0a\xb2\x25\xf4\x9f\x39\x75\x87\x78\xad\xfe\x00\x6c\x52\xdd\x20\x82\x70\xbd\x3b\x53\x4d\xaf\x06\x0f\x58\xc3\xdc\x01\x60\xd9\xe6\xf6\x0e\x9e\x5b\xde\xfe\x47\x66\x5d\xf1\x17\x48\x56\xdf\x44\x11\x40\x94\x80\xe0\xfc\x9d\xe0\x3b\xcb\x30\x3a\x2e\x37\x93\x80\x82\xd0\x0a\x48\x98\xbf\x04\x5d\x9e\x36\x6a\xd1\x7f\x96\xc5\x40\x5d\xf5\xf3\x45\xee\x6f\x71\x13\xdc\x50\x14\xe8\x3e\x7f\x27\x15\x10\x4b\x4d\x32\x41\x95\x22\x68\xe7\xef\xa2\xb6\xc9\x08\xe0\x4a\x32\xfd\x09\xf6\x87\xc7\x79\x61\xc7\x56\x7f\x00\x7e\x33\x51\x17\xf9\x4d\xc3\x84\x9e\xbc\x78\xc7\xc3\xa5\x44\xf6\x90\xf9\xcb\xfc\x9a\x96\xed\xac\xc3\xe2\x0d\x89\x8c\x55\x1f\xc1\x7a\x73\x03\xbb\x01\x8a\x41\x0b\x2d\x64\x21\x58\x2a\xbe\x37\x7f\x37\x8f\x0f\x63\x0a\xf8\x94\x7c\x8e\x7b\xa6\xf4\x0e\xcb\xde\x07\x67\xb1\xf7\xc4\x93\xf3\xa6\x51\x3e\xb4\xf1\xf9\xc0\x41\x8e\xef\x0f\x95\x74\x43\x69\xde\x45\xcc\x69\xa5\x30\xe0\xf9\x43\x4e\xab\x15\x06\x4f\xf0\x7e\x0e\xb3\xdc\x43\x96\x1b\x62\x6a\xe0\xbf\x15\xc6\x4e\x74\x55\x69\xde\x58\x0f\xb6\x85\x99\xf4\xa1\xab\x88\x9b\xbc\xd9\xc2\xbf\x26\x37\x7a\x47\x4b\x3a\x6c\x70\x5e\x59\x2a\x23\x38\x37\x24\x4f\x50\x15\xb3\xb9\xc1\x37\xda\xcb\xb7\xfd\x90\x77\x2f\xfc\x3f\xb2\x85\xfd\xd3\x0a\xcf\x0d\xda\x74\x63\xb3\xed\xc5\x7f\x45\x8a\x8f\xb9\xfd\x68\x80\x1d\xee\xf0\xe2\x98\xf4\xc6\x96\xd2\x43\x5d\x6c\x39\x71\xfe\x61\xf2\x8d\xd0\x0f\x70\x2e\xd1\xfa\x6e\x1b\x78\xb2\xf9\x7f\xde\xa1\x86\x5b\xb8\xd9\xa9\xbe\x60\x8e\x2c\x45\xe5\xce\x0d\xea\x70\x23\xa9\x8d\x95\x09\x9b\xfb\xa4\x3e\xbc\x49\x4c\x6e\x85\x23\xf7\x33\xaa\xf2\x29\xfd\xca\xdc\x12\xae\x15\xb7\x09\xb6\xd4\x7e\xdf\x6a\xb2\xa5\xfa\xa8\x88\xc4\xf2\x62\xa0\x8e\x74\xfd\x3c\x27\xd3\xb5\xbf\x9c\x45\xdb\x0b\xd4\xaa\xe5\xfc\x96\x38\xcd\x23\xa8\x39\x4d\xfe\x81\x6b\x63\x76\x79\x81\xd9\x30\x24\xd9\xe8\x2c\xa2\x6b\xdc\xdc\x1a\xb5\x6f\x43\x63\x24\xec\x12\x0c\xdb\x58\x38\xb0\x98\x61\x5a\x52\xe1\x2f\xb0\x78\x92\x0f\x1b\x0b\xb2\xc8\xcb\x77\x6e\xd0\x56\x2b\x03\xf7\xdc\x90\xdd\x4a\x86\xad\xb9\x75\x6c\x66\x21\x82\x8d\x59\x40\x15\x15\x3a\xb7\x8e\xb5\x15\x4c\xda\xa0\xcc\x36\x32\xdb\x7a\x47\x6e\x49\x51\xd4\x93\x01\xfd\x02\x16\xee\x9f\x42\x68\x6e\x23\x65\x9a\x48\x60\x65\xbe\xef\x1b\x3c\xb6\xab\xdf\x80\xa7\x69\xf5\x0b\x74\x1b\x36\xd5\x83\x53\x2d\x22\xa8\x5c\x56\x55\xc7\xb9\x05\xf3\x4c\x88\xa8\xe0\xb0\xfd\xcc\xad\x2d\x68\xb5\x05\x4e\x28\xc9\xb4\x2d\x72\x29\x44\x53\x4c\x30\x88\x5f\x80\xbf\xae\x97\x2a\x68\x56\xd0\xbc\x21\xed\xc0\xb4\x2c\x98\x80\x97\xde\x65\x93\xf0\xd2\xec\x03\x45\xd9\x67\x93\x41\x51\x66\x11\xb9\x4d\x5e\x81\x3c\x2b\x93\x0c\x5e\xdd\x24\xa5\x6a\x88\xe1\xa0\x2b\xb3\xcc\xdc\x26\x8e\x27\x8b\x17\xea\xca\x54\x2a\x72\x6e\x0c\x58\x53\x8c\xf1\xdc\x26\xa1\x83\xe6\x75\x71\x17\x0a\x30\x6d\x84\x68\x9e\xa6\x85\x03\xc9\x2c\x9e\x9e\x16\x9e\x87\x45\x30\xa1\x23\x6b\x7b\x31\x5a\xed\x16\x8a\x2b\x89\x72\x93\xb0\xb4\x7e\x3e\xb8\x80\xfa\x4c\x02\xe5\xb8\x00\xd4\xb6\x73\xaa\xf5\xc1\x9e\x3c\xae\xa9\xdd\x49\xb4\x86\x0d\xbf\xe3\xcf\xb6\xdb\x61\x1d\x5e\x6e\x00\xd2\xcb\xf3\xba\xe7\x34\xe9\x05\x38\x42\x7c\xa6\xed\xa0\x36\x43\xc0\x60\x3b\x90\x9c\xc1\x42\xf8\xc8\xc5\xd4\x20\xe1\xf9\xf0\x99\x26\x68\xbe\xbe\x3d\x60\xe9\x3c\xe8\x83\x2a\x21\x9d\x6e\x1b\x1c\x19\x14\x6b\x3b\xb7\x03\x5b\xc4\x63\x86\x23\x83\xfc\xea\xe7\x06\xc7\xe0\xe2\xb3\x07\x7a\xb0\xd9\x9a\x7f\x00\x3f\x0a\xda\x6f\x54\x8c\xb5\xe6\x1f\x28\xce\xdc\x25\xf2\x18\x54\xcb\xa2\x13\x63\x98\x1a\xc3\x89\x69\x9c\x1a\xf3\x3f\x4c\xe7\x17\x72\xe9\x35\x4d\x27\x06\x25\x80\xbf\x9d\x9c\xf8\x0f\xd5\x54\x84\x09\xeb\x6e\x17\x36\xba\x6e\x2c\x1b\x8a\x53\x4f\x0f\x1b\x90\x6e\x7d\xce\x70\xc6\xa7\x35\x61\xb6\xed\xe2\x1d\xde\xc2\xe5\xe2\x30\xdc\x04\x87\xe1\x16\xb8\x34\x7e\x9f\x40\xc4\x32\x97\x20\x2e\xfe\x14\x3b\x34\xb7\x9b\x5e\x8d\x6a\x8e\x29\xd4\x9b\x79\xe7\xa6\xff\x9d\x9f\xe3\xed\x5f\x6a\xa6\x0d\xbe\x0d\x0a\x5d\x9c\x1b\x7d\x19\x2c\x48\x6e\xa2\x0c\xaf\x2c\x33\xa8\x37\x43\x82\x9b\x26\x50\xb7\x40\xf1\x6a\x18\xc2\xa4\xa5\x16\x45\x59\x5a\x4f\x24\x3d\x64\x0d\xd3\x88\x5c\x05\x2b\x7c\xbe\xa6\xe3\xb1\x67\x11\xde\x0e\x5d\x51\x1a\x73\x43\xb8\x5b\xf9\x3c\xf3\xbc\x35\x86\x78\xc0\xe1\xcb\x2f\x50\xcd\x2a\x58\x52\x58\xf7\x45\x6e\x2b\xb3\x00\xd0\x75\xc5\x4c\xcc\xf2\xe3\xdc\xea\x3c\x2d\x70\x88\x50\x94\xe7\x2c\x3f\xce\xad\x9b\x24\x2c\x0d\x3d\xaf\xff\xfe\xd7\xe5\x97\x3e\x0b\xfc\x23\x14\x90\x39\xcb\x8f\x1c\xad\xbb\x5a\x81\x46\xcf\x97\xb9\x82\x50\x38\xc5\x5b\xce\xc2\x9c\xed\x1a\x54\x49\x7d\x9e\x36\x51\xd9\x7e\xf8\x40\x63\x42\x24\x9c\x1c\x63\x66\x79\x11\xe2\x90\xef\xf1\x2c\xd0\xc5\x29\x0b\xcc\x2c\xc4\x87\xc3\xcf\x3c\x7c\xbb\x3f\x20\xb0\x16\xc4\x2c\x08\x8d\xfb\x3e\xb3\x60\x83\x29\xe0\xcd\x4b\x1b\xa0\x6c\xd0\xf6\x74\x93\xf4\x8e\xa1\xba\xcb\x92\x47\x9f\x26\xa1\x50\x5c\x0a\x3a\x95\x42\xee\x58\xfe\x64\x61\x54\x7e\x01\xae\xbc\xc5\xff\x1f\xf8\x5f\x5d\xc2\x19\xb9\x15\xbf\xff\xf2\x8a\xb4\xfc\xb3\x20\x55\x56\xb7\xf6\xa7\xbc\xe8\x71\x28\xbe\x73\x96\x9a\x02\xda\x5f\xbc\x2c\x2d\x3f\xd9\x59\xa0\xfa\x93\xff\xc6\x2c\x4c\x0b\xff\x69\x60\xa2\x41\xcd\x1a\x9c\x91\x95\x39\x78\x96\x9a\xd3\xec\x1f\xb8\x0b\x05\x72\x4a\xe3\x4a\x8b\x44\xd6\xa1\x56\x58\xff\x2c\xf4\x8e\x50\xa9\xdc\x59\xe8\x1d\x61\x65\x43\x69\x59\xc2\x5e\xf3\xd4\x98\xbc\x5c\xf3\xd2\x72\xf5\x45\x45\xa3\x72\xa1\xb9\x13\x8a\x5c\x89\x97\xd2\x28\x72\x25\x30\x4b\x7a\x0c\x4b\xbb\x57\x3a\xcf\x7c\xf7\xc2\xf0\xb6\x36\xfc\x09\x26\x47\xe8\xab\x74\x2e\xaf\x26\x1b\xfa\x43\x45\xe8\xcd\xc2\x74\x58\x6d\xb8\x45\x6c\x1b\x01\x97\x02\xd0\xa9\xf8\xb9\x59\x12\x74\xea\x96\x5b\xa0\x40\xf4\xe5\xaf\x0c\x9e\x66\xc3\x3f\x34\xbc\xa0\x1e\x06\xed\xdc\x9a\x98\xf4\xf8\xf5\xce\x1c\x1c\x83\x96\x6b\xf0\xa6\x2d\xac\x5e\x60\x7a\x95\xa7\xf5\x2c\x03\xb9\x8b\x24\x13\x0b\x30\x69\x35\x0f\xc3\xf2\xda\x3d\xf3\xc1\x80\x2d\xcf\x1a\x72\x65\x7d\x84\x13\xab\x31\x5b\x71\x53\xd2\x81\x57\xea\xb9\x12\x94\x99\xc3\x9f\x60\x1f\x94\xbf\x64\x3c\x9d\x85\xee\xbe\x4d\x47\x51\x99\x9c\x34\x01\xa5\xc2\xb2\x36\x61\xe9\x32\x73\x96\xfc\xc9\xe2\x1b\x1a\x15\x53\x5f\x35\x6f\x1c\x80\xd0\xe2\x8d\x32\xb1\xb4\xde\xba\x93\x2a\x38\x1d\xa7\x85\xde\xbd\x2a\xa6\x3c\x0b\xbc\x1c\xaa\xa0\x77\x59\x49\xa6\x5f\x68\x54\xd2\x89\x4c\xa2\xd2\x8f\xd8\x5d\x93\x3f\xf8\x13\xc0\xfb\xe6\x36\x21\xe4\xbc\xf7\xe0\xbd\x5b\xbd\x7b\xf7\x1f\x1b\xd0\x07\x3b\xa3\x17\xcc\xb2\x3b\xfd\xb5\xfd\xc2\xbb\x9a\x9b\xb7\xd1\xce\x30\xc5\xe1\x26\x29\x21\x84\x11\x0b\xdc\x77\xab\x05\x31\xf4\x7e\xd5\x0c\x87\xca\x39\xbe\x36\x95\x3d\x67\xce\x24\xa0\xbe\x97\x97\x8f\x69\x11\x14\xc6\x38\x0b\xd2\xe3\x57\x5d\x52\x4a\xe2\x58\x01\xdb\x82\x4a\x3a\xc3\x1c\xc1\xbc\xaa\x2d\xfc\x45\xb0\x4f\x7f\x91\x78\x5f\xcf\x18\xa6\x4e\xf1\x72\x24\x3f\x68\xd8\x07\x47\xe9\x17\xb8\xf7\xc3\x3f\x20\xad\xee\x74\x97\x39\x4c\xff\xc0\xd0\x48\x73\xfd\x49\x4d\xbc\x68\x38\x53\x2c\xaa\xcf\x2b\x27\x42\x54\x5f\x74\x9c\xd4\x38\x11\xb2\x56\xbd\x14\x2f\xac\x6c\xbe\x15\x17\x44\xac\x4d\x0f\x22\x03\xd6\x3c\x51\x28\x27\xd8\x2d\xf1\x00\x22\xab\xa7\x09\x1e\xb6\xe5\x73\x5e\x00\x45\x56\x73\x03\x5c\x6e\xad\x62\x2d\x70\xb1\xad\x96\x16\x17\x18\xd2\x8b\x7f\x27\x43\xaa\x01\x58\x7d\x8d\xce\xcb\x9d\x6b\x2b\x12\x6f\x1c\x81\xde\xa9\x77\xee\x1a\x0d\x12\x49\x54\x3f\x87\x28\x94\x8d\x61\x0e\x7f\x81\x68\x59\x16\x47\xcc\xa2\xd5\xa6\xbb\x4c\x8e\xd6\x20\x5f\x28\x5a\xad\x17\x2e\x74\xa2\xfd\x1c\x04\x89\x3c\x0d\x15\xe0\x45\xeb\x5b\x72\x79\x48\xb4\xe6\x11\x11\x70\xd5\x1c\x9d\xc0\xd3\x07\xfd\xc3\xb3\xc8\x62\xf9\xe1\x4a\x88\x48\x84\xc0\x55\xd3\x08\x27\xdb\x6a\x20\x90\x59\xb2\xbc\x8b\x9e\xe4\xbf\x7f\x5d\xd4\x4c\xa6\x2f\x11\x57\x7f\xdb\x7f\xff\x9b\x2a\xbb\x34\xeb\x8f\x35\x11\x9b\x9e\x39\x08\x37\xd0\xb0\xf6\x7e\xa6\x8f\xec\xd2\x33\x30\x9e\x44\x47\xfd\x71\x08\x6e\x8f\x5b\x66\xfa\x07\x7a\x54\xe9\x99\x20\xd1\x14\x33\x5d\xaa\x72\xd3\xce\x8a\x4c\xfa\xf2\xac\x9b\x95\x2e\xb6\xca\xb0\x36\x2b\xd3\xa1\xfa\xbc\xac\x85\x7e\xf0\x12\xba\x15\x4a\x42\x65\xcf\x99\x15\x2e\xb1\xb6\x33\x57\x42\xb6\x3e\xfe\x72\x14\x55\x26\x2f\xf0\xf9\x5d\x33\xe1\x95\x14\x0f\x95\xe6\x5d\x9f\xc7\x15\x0a\x44\xa5\x42\x9e\x35\xcd\xbd\x42\xd2\x15\xfe\xb3\x55\x1a\xc6\x0a\xff\x59\x05\xe4\xcc\x4a\x73\xb0\xaf\xcc\xb5\x82\xb7\x9a\x9f\x3b\x9e\xd5\x63\x85\x11\x23\xfc\x7f\xb0\x01\xf7\xf8\x9e\x32\xc6\x88\x15\xfe\xb5\x55\x7a\xf3\x5a\x79\x21\x96\xa2\xa1\x26\x26\x9c\xa6\x89\x1b\x44\x7b\xb0\x12\x24\xea\x02\x53\x59\x97\xd0\xa8\xa2\x36\xde\x79\x3c\xac\x46\x91\xbd\xfc\x06\x86\x21\xf0\x5d\x5f\xd0\x18\xc3\x0b\xd9\x78\x21\xd6\x21\x50\x91\x74\x5f\xa5\x52\x67\xcd\x84\x0a\xfe\xff\xdd\xb4\x56\x52\xd6\x4e\x1a\xb5\x54\x2c\x45\x64\x5b\x4e\x85\x12\xd2\xca\xd7\xda\x39\xf3\x12\x66\xb5\x93\x66\x61\xa7\xda\x29\xd1\x3f\x7d\xe4\x3e\xd7\x30\x13\x73\x2e\xbf\x31\x41\xb5\xa9\x40\xf8\x93\xfd\x35\xea\x0b\x11\xa7\x6a\x0b\xcc\x0a\x88\x18\xe1\x71\xb3\xb4\x60\xd5\x65\xae\xc2\x02\xec\x3b\x40\x45\xe6\x81\xea\x99\x0b\x26\x90\x12\x4d\x74\x60\x0d\xc9\x9a\x0a\x0b\xaf\x4f\xf4\x0a\x87\xd5\xef\x07\xc9\xe5\x7e\xe1\x01\x8d\xea\x61\x26\x49\x5a\xbc\x99\xeb\x2f\xa2\x99\xe5\xea\xd3\xc7\xe4\x72\xab\x8f\xc9\xc3\xd0\x5c\x08\x8f\x3b\x9f\x3c\x15\xe1\x57\xd5\x4c\x09\x2d\xe2\x47\x3a\xc1\x6d\xb5\x5b\xc1\x5b\xe1\xb6\x6a\x14\x51\x17\x2f\x5b\xe6\xb0\x45\x79\xa7\x1e\xe0\x85\xaa\xac\xc2\xb3\x2e\xda\x30\xbc\x77\xd7\xe2\x20\xfc\x05\x69\xd0\x44\x32\x4b\x55\x5b\x7e\x81\x02\x43\x30\xa2\x32\x20\xab\x2d\xff\x00\xb1\x6d\x19\x48\x44\x27\xb4\x5d\xa1\x45\xac\x16\x30\x88\xc7\x52\x08\xc9\xac\xf4\x9f\x33\xfc\xaa\x7b\xee\x13\xd1\x80\x6c\x04\xd5\xfc\xb3\x53\xc5\xa1\x1b\x5e\xdd\x39\x0a\xf1\xcf\xce\x48\x07\x91\xc4\x82\x47\x3e\xb3\xeb\xce\xed\xef\xad\x76\x30\xb0\x51\x44\x1d\xe4\x40\x7d\x00\xad\xa0\x3c\x17\x67\x3d\x28\x25\x75\xc8\xd7\x13\x42\xd0\x27\x05\x94\x7a\xc3\xec\x73\x06\x18\x4e\x1d\xb0\x56\xf3\xe7\x2c\x82\x12\x6f\x78\xab\x22\x9c\x29\x2c\x6e\x4e\x30\x43\xf8\x99\xe0\xcc\x83\xbc\x18\x80\xea\xd3\xf1\x22\x72\xf6\x27\xc8\x0f\xf0\xd9\x66\xcc\x31\xd5\xbd\x53\x2f\xfa\x05\x88\x06\x68\xec\xe4\x3f\x3c\xeb\x8b\x9d\x9c\xfc\x7d\x56\x84\xf6\xcf\xee\x6d\x84\xda\xcc\xdb\x9f\xb2\x9d\xce\x7a\x83\x31\x7c\x14\xde\xa4\x57\x30\xa7\x42\x41\x37\x8d\x37\x2b\xdd\xe5\x0c\x1f\xeb\xbd\x90\xe5\x46\x8c\x70\xd3\xce\xe3\x4d\x79\xe3\x70\xf4\x24\x01\x07\x7d\xd6\x95\x46\x5a\x33\xc6\x83\x40\x0a\xa9\x56\x2b\x62\x8b\xaa\xcf\x3a\xc2\x22\xcb\x91\x17\x16\xcd\x61\x04\x82\xe4\x53\xd6\x29\xd6\x27\x25\x95\xa6\x18\xea\xb9\xd9\x3f\x5f\x80\xc2\xe5\x2f\x4e\x7e\xa1\x39\x7d\xc0\x7a\x9a\x95\x96\xc9\xa8\x04\xbc\x1a\x51\xcf\xe7\x99\x56\xe3\xa9\x67\x06\x38\x6a\x19\xdb\x8f\x44\x0e\x3d\xef\xff\xfd\x2f\x54\xdf\x7a\x36\x78\xcf\xc9\x29\x7c\xb6\x17\x06\x55\xc5\xcd\xcd\x46\x5d\x9b\x0e\xd3\x06\x54\x24\x6f\xd3\xd9\x7e\xd4\x6c\x48\xaa\xb4\xf4\x95\xd3\x06\x6d\x1b\x05\xbe\x7a\xdc\x72\xa5\xbb\x7e\x08\xfe\xe0\x37\x28\xb9\x04\xbd\x5a\x01\xf7\xe8\x58\x6a\x08\x35\x52\x98\xcf\x6c\x65\x21\xc1\x9f\xff\x87\x8c\x90\x60\x6b\x2f\x12\x1a\xf6\xe5\x6a\xcc\x21\x6f\xbc\xda\x6a\x3a\x27\xeb\xf9\x15\x09\xf6\x89\x69\x54\x4c\x49\x5b\xd3\x6a\xae\xac\x5a\xac\x38\x84\x96\x9f\x51\x90\x55\x92\xb4\xd1\x8c\x69\xf1\xdd\x60\xc6\xb4\x1f\x5d\xa3\x19\xd3\x78\xb6\x21\x88\x7d\x78\x96\x90\xb5\x53\xe5\x8c\x66\x4b\x33\xa7\x64\x6f\x6b\x29\xe7\xb4\x54\xed\x46\x42\x63\xcd\x22\x20\xc6\x54\xdd\x8a\xd9\xa8\x73\x32\x8c\x6f\x9d\x97\x11\xd1\xd0\x93\xa3\xd5\x29\x1c\xf8\x7d\x0f\x68\xd4\x31\x75\x21\xda\xd6\x29\xa9\xcc\x4f\x83\x87\xad\x58\xbc\x21\xac\xbc\x4b\x9e\x37\x28\x99\xec\xfb\xd3\x50\x1f\x79\xf3\x54\xd3\x6b\xcd\x97\xb8\x36\xc8\x3f\x9b\x5b\xa0\x52\x40\x44\x51\xeb\x64\x68\xdf\x10\x97\x63\xaf\xc6\xc6\xcc\x9d\xbe\x48\xb6\x71\xe0\x05\xd3\xc8\xc0\x64\x37\xc0\x13\xc1\x0d\xdc\x78\xdf\xff\x3f\x78\xd6\xc4\x32\x4c\x47\xd1\xd7\xb3\x21\x4e\xdd\x5a\xa8\x16\xf4\xfe\x90\xec\x68\x91\xa3\x54\x17\x70\x84\xdb\xbc\x05\x82\x88\x43\x47\x69\x7b\x71\xd2\x90\xff\xf1\x7b\xd7\xe7\xb4\x88\xa3\xe0\x19\x67\x47\xb8\x16\xb0\x19\x9a\x5f\x22\xd7\xce\x44\x91\x81\x84\xd5\x1b\xcc\xad\xb3\x0b\x38\x37\x98\x5b\xed\xb3\xda\xe0\x1a\xd7\xbc\x6d\x32\xa9\xbb\xa5\x0d\x12\x32\x35\x2f\xe6\x42\xbd\x17\x6f\xd4\x45\xe4\x25\x40\xd1\x16\x6d\xcc\x5e\x3b\xaa\xa1\x86\x9f\xb9\x91\x74\x56\x36\x46\xa1\xf7\xf2\x97\xa0\xd6\xf7\x0c\x86\x97\xad\x26\x01\x76\xd2\x6e\xee\x5b\xcc\xe9\xad\x83\xaa\x01\xe1\x34\x33\x1b\xd2\x31\xd9\xcf\xa3\x31\xbd\x52\xd7\x39\xd9\x76\xe2\x30\x53\x0c\xcf\x32\xfb\x2b\xb7\x3d\x25\xa6\x9a\x60\x7d\x45\x1b\x3a\xdb\xc1\x48\x34\x7d\x71\x34\x88\x02\xd1\x70\x4c\x14\x29\xd0\xa4\x1d\x5c\x69\xf5\x78\xf0\x4a\x64\x21\x0d\xf5\x90\x1d\x9c\xda\x41\xfe\x76\x87\x54\xc3\x9a\xfb\x98\xae\xbd\x17\x93\xc0\x69\xd0\x17\x27\x9d\x4f\x85\x57\xdb\xc9\x79\xd1\x34\x9c\xc4\xaf\x42\xc4\xed\x84\xb9\x4b\xd0\xb0\x21\xed\x66\x73\x0f\x27\xe5\x9b\x06\x81\x88\x01\x7b\x19\x36\xd8\x39\x9b\x4e\xef\x76\x12\xe7\x59\xbc\xc1\xee\x69\xbf\xb3\xf6\x62\xa4\x61\xff\xa9\x86\x08\xf0\x18\xfe\xbf\x72\x8c\xa2\xf0\x22\x45\x6a\xf0\xe2\xb4\xfa\x7f\x50\xa4\x5b\x62\x7b\x11\x92\xe3\xa3\x67\xbb\x93\x13\x35\xcd\x4c\x80\xd9\x4d\xf3\xcd\xc3\x55\x24\xdd\x4c\xe4\xe7\x0f\x28\xa1\x85\x34\xdb\x93\xd3\x2c\xa2\x1f\x6e\x49\x41\xc7\x46\xc7\x32\x5f\xd9\x1b\x50\x8b\xbd\x88\xda\x43\x69\x68\x81\xfb\x24\x55\xa2\xfb\xa1\xbd\xcd\xfb\x1e\x4e\x60\xad\xba\x49\x5e\x56\x74\xc5\x6a\x0f\xb8\x41\x33\xd7\x19\x43\x3d\xfd\x8c\xbb\x89\x6c\x19\xfd\x97\x34\x2c\xfd\x40\x17\x1c\xc1\x8c\x4e\x13\x9e\x2f\x27\x7d\xe3\xb9\x21\x51\xd1\x37\x64\xe3\x11\x93\xf7\x17\x56\x54\x55\xaf\x7a\xcf\x20\x10\xed\xff\x71\x84\x6b\x94\x1d\x26\x3a\xbb\x11\x76\xaa\x6f\xfa\xe7\x03\x32\x94\x04\x64\xdf\x28\x0b\x96\x49\xc0\xb0\x35\xf7\xbd\x90\xe7\x87\x9e\xb9\x16\xe2\x88\x5e\xea\x7f\xff\x0b\xfb\x99\x75\x64\x39\xb7\xff\x41\x67\x39\x1c\x5f\xe2\x3a\x13\x06\x59\x01\xd4\x4b\x52\xe9\x4f\xb8\x36\xa2\x09\x3a\x1d\x03\xc0\x5e\x78\x00\x0b\xd7\xf7\x4a\x1d\x93\xc0\x52\x4f\x15\x8d\xb6\x6e\x4f\xb3\x9d\xd8\xb2\xd3\x6c\xe7\x36\x2b\x71\x82\xf6\x72\x07\xba\xf1\x05\xa7\xd7\xfb\x05\x95\x5e\x2b\xc6\x1e\xfa\xba\xdb\xa1\x71\xb1\xd7\x4d\x6f\x98\x39\x2f\x46\xab\xa8\x8b\xaa\x0e\x1a\x35\x13\xcd\x0d\x4c\x34\x20\x06\x6a\x4c\x53\xa4\x89\x43\x80\xb2\xcd\x69\x1d\x3e\x5f\x76\x50\xe8\xc8\x59\x1e\x1e\x52\x62\x21\xc1\xad\xde\x93\xdf\xd4\x43\xe7\x4e\x13\xac\xe8\xf4\xfa\xf2\x7d\xa2\xf7\x0a\xb1\x2c\xa2\x11\xfd\xd8\xfe\x54\x19\x6f\xf6\xd4\xbd\x34\xf7\x07\x65\xb7\x79\xa7\x73\xc4\x26\x70\xa1\x37\x3f\x13\xe3\xfa\x7b\xb2\xaf\x57\x91\xa1\x94\xd1\x4d\x2f\x75\xae\x52\xb5\x74\x64\xf0\xf9\xcc\xfa\xa0\xf1\xcc\xb3\x38\x26\xfc\xd6\xc4\x8d\x03\x99\xe3\x3d\xeb\x03\x90\xc2\xfc\xfc\xe2\xa8\xa9\x82\xb9\xb3\x03\x37\x35\x53\x30\x72\xd6\xf5\x02\x41\x8c\x64\x53\x0f\x22\x7f\x5d\xff\x3b\x2b\xd7\xd8\xf8\xda\xe9\xdf\x6f\x23\x53\xa7\xb9\xce\xee\xe7\x1d\xe6\x3a\x5b\x67\x3b\x2d\x72\xb6\x4a\x76\x78\x95\x35\x41\x8c\x9e\x30\xc7\xcc\x36\x91\x2f\xdc\xf3\xc4\xf4\x3b\x21\xc5\x59\x9f\x3c\xf4\xbd\x78\x93\xe3\x70\x93\x58\x3c\xd3\x34\x73\x5c\xfe\x01\x67\xc9\xa7\xcb\x83\x2f\x98\x48\xe6\x6b\xd2\x5d\xb1\x4f\xc2\x06\x1d\xa0\x1d\x81\xcc\xb6\x5b\xf7\xc5\x3d\xa5\x16\x68\xd1\xeb\x9e\x7d\x04\x5c\xda\x6f\xa3\x03\x39\xd9\xc0\xd7\x59\xf1\x5a\xf1\xe8\xb3\x03\x2c\xd9\xeb\xb9\x23\x12\xa0\x7d\xfe\x87\x2c\xd2\xd1\xd3\xa9\x2e\xea\x9f\x1e\x38\xf5\xfe\x22\x2d\x7e\xba\xa3\xf7\x3d\xa5\x93\x26\x06\x6e\x65\x76\xdc\xe9\x4c\x6c\x6e\x5d\x48\x87\x0a\xc9\xf6\xfb\xbe\x53\x86\xea\xce\xdc\x77\xce\xbd\x3f\x40\xc9\x05\x8b\x54\x84\x64\x76\xef\x13\x84\x06\x28\x5b\xcd\xec\xfb\x7b\x48\x4f\xcb\xa6\x9d\xa7\x9f\xd7\x6e\x47\x5e\xd3\x0f\x89\x0f\xa2\x7f\xd5\xc0\xf1\x7b\x77\x81\x2e\x8f\x9d\x11\x9b\xbe\xb4\x77\xa6\x41\xb7\xae\xa5\xa7\x01\x50\xea\xc2\x7e\x50\xf9\xa1\x6b\x54\x27\xc4\xf3\xd9\x04\xd7\xb6\xe6\xe3\x92\x06\x3f\x5f\xab\xfa\x89\x48\x3d\xdd\x40\x3a\xf3\xa2\x5b\x03\xd3\x59\x38\xf1\xb3\x79\xe1\x69\xd6\x7c\x46\x33\xad\x79\x37\x83\x9d\x74\x9f\x5b\xfe\x02\x97\x5c\xe1\x84\x9e\x41\x9c\xde\xbd\x27\x0e\x4c\x33\x10\x21\x99\x65\x1c\x62\x36\xed\xa1\xd0\xd3\xa0\x27\xe0\xda\x61\xc0\x6b\x3e\x78\x10\x0b\x60\x07\x84\x7e\x91\xc1\xdc\x43\x5a\xf0\xa4\xaf\xe8\x37\x37\xb7\x67\x0e\x69\xce\x37\xef\xab\x9b\x34\x68\xe2\x18\x0d\xf0\x11\xc4\xa9\x88\xf2\x01\x0a\x45\x94\xaf\x00\xfd\xc6\x5a\x74\x7f\x40\x05\xb4\x39\x2a\x3d\xbf\x0c\x24\x50\x96\xa6\x39\xb8\xaf\x3f\xd9\xa9\x66\x02\xa8\xcd\x9e\xdd\xfd\xe1\xfa\xfb\x03\xf4\x69\x61\x80\xba\x34\xd3\x48\x83\x55\x0f\xeb\xfa\x4b\xbe\xb9\xd9\xe1\x15\x66\xdb\x7f\x7f\x12\x44\xfc\xeb\x7e\xfc\xa8\x6f\xd4\xc4\x0f\xe4\xac\xb4\x5f\xe3\x00\xe2\x53\x3c\xf8\x7b\x2a\x22\x87\x5f\xd5\x33\xf9\xd5\x0d\x42\x94\x68\x13\x0e\xe4\xc0\x09\xa5\xc5\x7a\xb7\x0f\x7b\x1c\xfa\x81\x17\x0a\x49\xc8\x01\xbd\x92\xfd\x2a\xc6\x36\xfe\xfb\x5f\xb7\xf2\x7a\x6c\xf1\x3e\xeb\x6a\x37\x36\xba\xa1\xe9\x86\x31\x52\xcd\x24\x56\x18\x1b\x27\xd5\x5d\x52\x28\x2f\xff\xc0\x6b\x91\xf8\x71\x94\xa4\x52\x9d\x42\x33\x65\xdb\xff\x28\x59\xcb\x4d\x03\xa7\x97\xbf\xfd\x09\x46\xa1\x82\x3b\xdc\x04\x77\x95\x3a\x2d\x28\xd8\xab\x43\x75\x54\x6c\x22\xcf\x43\xa2\xb3\xe5\x1f\x72\xa0\x22\x22\xb5\x55\x5a\xdf\xc1\x42\xd7\x56\x57\x0d\xda\xcc\xba\xf8\x69\xa4\xcd\xcc\x1c\x80\x80\x49\x3b\x14\x8c\x96\x29\x10\xd5\x09\x3c\xf7\xc7\xd4\xf5\x69\x30\xeb\x78\x68\x5f\x8c\x04\x75\xdd\x6f\x60\x37\x4b\xb4\x0f\x80\x34\xd5\x21\x9b\x03\x69\x16\xad\xf1\x1d\x3d\x59\x40\x1f\x74\x1e\x71\x5e\x31\x24\xa4\xb0\x7e\x6a\xc0\xf1\xde\xc1\x23\x83\x45\x05\xbb\x27\x0f\x16\xaf\x50\xd6\xad\x39\x60\xe1\x1a\x9f\x2e\x60\x6d\xb2\xaa\x70\x74\x84\x48\x7b\xfd\x50\x77\xfa\xe3\xda\x37\x00\xb3\xc2\xac\x0d\x37\x2b\xbb\x5e\x0f\xe4\x99\x09\x65\xa0\x9a\x63\xd0\xda\xa8\x13\x6c\x50\xe5\x65\x3d\xcb\x40\x46\x0b\x6b\xaa\x07\x4b\x4d\x5b\xa3\x35\xe0\xfc\xaf\x7c\x50\x73\x0c\xde\xaf\x3c\x11\x83\xe8\xc1\x54\xc0\x91\xca\xd6\xee\x11\x0c\xd3\x31\x9b\x21\x35\x62\xb1\x86\x72\x44\x72\xae\x3a\x09\xc6\x31\xba\x49\x6a\x24\x4d\x26\xb0\x9a\xaa\xf4\xcc\x01\xa8\xe6\x6a\x5b\x73\xcc\x6c\x52\x9d\x4e\xc8\x5a\xcb\xd6\x31\xc9\xba\x9e\x1b\xb8\x42\xd5\xcf\x17\x3c\x9d\x3d\x90\xcc\x33\x21\xd0\x3a\x60\x38\x6b\x9f\xe7\x8e\x74\x34\x1a\xd7\xca\x81\x6a\x5c\x69\x49\x93\x16\x6b\x20\x8f\x61\xb1\x7e\x6f\xec\x30\xe4\x5b\xb7\x36\x76\xf6\xa1\x2f\x76\x20\xc8\xe2\xff\xd9\x87\x30\xc1\x80\x5b\x92\x0d\x6b\x83\x46\x2a\xab\x3b\x06\xd2\x40\xd8\x3c\x33\xe0\x2d\xdf\x2c\xab\x0e\x4a\x1e\x4f\xf6\xc1\xbd\xe0\x89\x40\x5e\x08\xdb\x72\xc7\x11\xec\xc2\x4d\x50\x4e\x78\x14\x0c\x51\xb4\xb2\x6b\x1c\x0f\x7f\xd0\x5c\x9d\xf4\xf9\x11\xe4\x1b\x67\x92\xe1\x1f\x92\x0c\xb5\x81\x30\x46\x2b\xb3\x06\x3d\xe0\xdb\xf6\xa7\x70\xd7\x41\x2d\x91\xe0\xff\x38\x99\x25\x58\xf3\x46\xd0\x62\x09\x7d\x32\x55\xa1\x7b\xcb\x34\x67\x7a\x46\x8a\x25\x81\xbb\x71\x25\xfd\x1a\x21\x03\x1c\xad\x2b\x1b\x17\xe9\xf7\x33\xd5\xcf\xde\x6b\xcc\x0c\xa8\x1c\xd7\x73\x30\x6d\x76\x75\x93\x64\x1f\x73\x03\x22\x1c\x6d\x16\x1a\x30\xb5\x15\xab\xaa\x06\xfc\x94\x6c\x8e\x18\xf0\x53\xb2\x6d\x6c\x10\xe5\x58\xdb\x36\x98\x8d\x42\xd9\x8f\xe7\x00\xca\xf9\x08\x08\xd6\x72\xb6\xba\x6d\x24\xcc\x31\x7b\xdc\x64\x0f\xcb\x6f\xa4\xa7\xb0\xc1\x70\xdc\x27\x9e\xdd\xe7\x05\xd5\xa9\xdf\x47\x4a\x18\x5d\x58\xc7\x4d\xa2\xc5\x19\x0f\x1d\x39\x34\x4d\x80\x34\xdd\xec\x98\xc9\x29\x3c\x8f\xb0\x96\x75\xef\x19\x58\xcb\x62\xfb\xfc\xc0\xbd\xef\x51\xc3\xab\xc8\x18\x37\x50\xdb\xc5\x06\x8f\x80\x0f\x91\xbd\x34\x02\xd6\x34\x3b\x98\x05\x0b\xb9\x58\xa3\x13\x3f\x2e\xb6\xb8\x37\x80\x73\x6c\xaa\x8a\x1f\x17\x5f\x0c\x1a\xbf\x89\x17\xa6\x9e\x39\x4a\x37\xb0\xe3\xd9\x3d\xd0\x77\x58\xeb\x10\x30\xb8\x79\x5a\x83\x6e\x48\xca\x44\x39\x83\xde\xed\xd6\xbe\x05\xf3\x07\x2a\x97\xda\x0c\x14\x7e\xe9\x92\x25\x81\x6c\x15\xfd\xe7\xff\x79\xe0\x2c\xbf\x40\x97\xd4\xee\x37\xb0\x56\xc3\xcf\x04\x29\x9e\x07\x40\x25\xeb\x87\x03\xa5\xa2\xe3\xf3\x01\xaf\x02\x9e\x97\x8d\x48\x5d\x28\x25\x12\x3a\x49\x04\x46\x49\xbc\xe0\x37\x92\xa9\xb5\x7c\xa5\xa3\x53\x4d\x55\xa1\xa0\xf6\xd4\xc0\xe3\xdd\xba\xf8\x28\x8c\x72\xea\xee\x23\xe7\x4e\x3f\xc0\xf0\xf7\x71\x33\x8b\xca\xfd\x2f\xe4\x1d\x70\x60\xb2\x59\x25\x90\xef\xcf\x36\x91\x60\xb6\x0a\x15\x62\x9f\x01\x87\xa4\x8f\x4f\x4c\x20\x5b\x45\x2f\xee\x22\xe7\x46\x93\x05\x6c\x65\x43\x4c\x10\x5b\xd9\x63\x25\x98\x8c\xc2\x0a\xb7\xa0\x39\xd1\xaa\xc8\x80\x3e\xcc\xd1\x57\xd1\x98\x53\xc0\x1f\x60\xf3\x9a\x67\x68\x2c\xb4\x7a\x34\x90\xf2\xda\x36\x85\xe8\x39\x31\x5a\x40\xc4\x38\x5a\x5d\x1a\x48\xd0\xe7\x10\xb4\xe8\x98\x17\xe9\xba\x03\xb6\xc3\x8f\x01\x33\xe0\xaf\x6e\xb5\x73\xa4\x7e\x6a\xf8\x0b\x4c\x83\xce\xfe\x40\xf1\x95\x2e\x81\x14\x8c\x81\xb4\x8a\x37\x06\x49\xf2\x07\x88\xa5\xf2\xf6\x86\xb7\xb9\xb5\xe9\x81\x7c\x7c\x5d\x87\x41\xc0\x8c\xd7\xeb\x9f\xee\x48\x31\xc8\x3a\xee\x2d\x73\x5d\x98\xa3\x51\x64\xe5\xa3\xa2\x0b\xc4\x47\xda\x1e\x10\x01\xf5\xaf\x37\x0d\xd2\x80\x75\x4b\x9b\xa0\x22\x5e\xb7\xd9\xa0\x89\xce\x0a\xb5\x08\x04\xa4\x99\x9f\x61\x90\x73\x36\x8c\x98\x84\xb3\xde\xfa\x33\xb7\x88\xbf\x00\xa0\x1a\x16\x48\x70\x25\x9f\x56\xac\xc7\xa4\x53\xc2\x70\x1b\xaf\xa0\xb7\x9f\x6e\x30\xe5\x84\x2f\x77\xb1\x78\x1c\x99\x0c\xaa\x9e\x54\x15\x70\x06\xad\x76\xbe\x2f\xc6\x4a\x81\xa2\x91\x65\x40\xa2\x25\x08\x0c\x6f\x56\x15\xc6\xce\x4d\x61\xc9\x09\xdf\x22\x6b\x70\x63\xa7\xe9\x50\x97\xb3\x60\x92\x88\xe1\xc9\x00\xe8\xb2\x22\x30\xf6\xec\xd3\x4d\xa0\x4f\x53\x79\x90\xe3\x04\x27\x02\xa5\x4b\xac\xf7\x0b\x54\xb8\xeb\xbe\xb6\x06\x92\x3a\x2c\xef\x75\x58\xde\xac\x00\x0b\xf8\x16\xf5\x4f\x83\x37\x69\x74\x8b\x74\xde\xd5\x85\x31\x10\x73\xf8\xd9\x67\x44\x5c\xc3\x52\x10\x00\xcb\xda\xcb\x00\x64\xb2\x12\x2e\x90\x5b\xd9\x6a\xc0\x60\x9a\x88\xf6\x69\x91\x12\x2c\xfc\x06\x01\x8b\x34\x5c\x71\x72\xe2\x34\x8a\x93\x54\x5b\xd0\x5e\x24\x52\x1f\xc0\xf5\xdb\x4a\x97\xb8\x72\xfd\xb5\x78\x88\x20\xec\x9b\x25\xda\x45\xec\xe9\xc5\x61\xad\x11\xdf\xa3\x22\x51\x92\x07\x4a\xe5\xcf\xf0\x7e\x82\x93\x91\x63\xa8\x82\x19\x92\xad\x0a\x0c\xc2\x24\x7b\x6a\x05\xdd\xb5\xad\xa1\x0e\x9a\xec\x86\xe5\x20\x93\x72\x59\x6b\x10\x2f\x0c\x0a\x87\x5b\x06\xb4\x3d\xdd\xb7\xed\x20\xee\xd1\xb5\x37\x58\x94\xd8\x7a\xd7\x80\x9f\x51\xd7\x35\x38\xa8\x1e\xb2\x5e\x35\x90\xfa\xa1\x1b\x0f\x06\x03\xff\xda\xa7\x4d\x46\xb1\x68\x3a\x99\xe5\xb8\x7d\xda\x3c\x90\x87\x4e\xc3\x80\x86\xc7\xba\xbc\x78\x28\xcd\x34\x57\x13\x9e\x46\xdd\x17\xe1\xc9\x4c\x5e\x8e\x27\x9a\x08\xf3\xb3\x25\x6a\xfe\x72\x09\xa7\x7e\x80\xdb\x9b\x04\xc9\xfc\x71\x49\xbb\x9b\xdc\x29\x9d\xfc\x46\x4e\xee\xd2\x0f\xd8\x1e\xdd\x7d\x80\x6c\x09\xc4\xf9\xe3\xdc\xaa\xc5\x54\x1b\x69\x35\x26\xa1\x8f\x44\xd3\xdc\xc8\x02\x1a\xf8\xdc\x92\x05\xd4\x25\x33\x75\xf9\x16\x34\x61\x38\xb4\xaa\x6b\xc2\xef\xdb\xaa\xb9\xb9\x51\x4d\xae\x63\x66\x6e\x39\x4e\x51\xbd\xe5\x6a\xb8\x0f\x0a\xf6\x30\x59\x27\x3b\xd5\xc0\x98\x7d\xd9\x0a\xdd\xf9\xe2\xa5\x98\xdb\x9f\x8c\x49\xb3\x70\xd4\x22\xa0\x70\xfb\x69\x9a\xe0\x56\x6e\x47\xcf\x89\xba\x78\x56\x81\xcf\xc2\xb3\x5a\x87\xf7\x2c\x3c\x9b\xa5\xcf\x9b\x85\x3b\x5e\x67\xe9\x64\xad\x64\xeb\x76\x67\x25\x0d\x9a\xe8\xca\xd3\x50\x10\x65\x56\xca\x80\xe1\x1f\x38\xb1\x9a\x25\x78\x76\x5b\x33\x36\x33\xda\x4f\x2a\xa6\x49\x20\xe5\x89\xa7\xd6\x4a\xa5\xb6\xe7\x4c\xa5\x94\x68\x68\xdc\x7a\x66\x87\x86\x89\xf1\xb0\x18\x1e\x68\x0d\xf4\x6c\x10\xa6\x5e\xa8\x46\xd3\x8f\x34\x4c\x13\x95\xf1\x6c\x24\x9e\xf4\xe3\x1e\x82\x05\xb3\xe5\x5a\x6b\xb2\x5f\xe8\x55\x9c\x04\x61\xa2\x9c\xb2\x6f\xfa\x93\x5a\xaf\x90\x5e\x65\xf6\xa4\xda\x3f\x90\x6a\x75\x01\x57\x6f\xeb\x2d\x67\x4f\x22\x35\x93\x9d\x5b\xd3\x7d\x40\xcd\x65\xab\xf1\x4c\x70\x26\x28\x34\x09\xce\x3c\xcc\xce\xb9\x97\xde\x65\x42\x0f\x56\x3e\x34\x51\x1a\x7b\xf5\xa0\x07\x6b\x1f\xa2\xb0\x75\x3d\x0d\xf0\x0c\xeb\xca\x17\x3e\x27\x3d\xc3\xac\xc0\x9d\xc0\x77\x86\x47\x73\x70\xd8\xea\x72\x30\x41\x92\x7a\x1c\xb9\x73\xb5\x78\x2f\xde\xab\xbe\x26\x4f\xe6\xc8\x50\x85\xd2\x39\x07\x19\xc8\xcf\x9c\x7a\xa9\xc9\x26\x0d\x94\xaa\x1f\x3a\x67\x30\x47\xa4\x68\x08\xae\x8d\xb7\x0e\x12\x9c\x59\xdd\x31\xe1\xce\x6e\xb5\xcc\x44\x4e\x8c\x65\xa2\x69\xe1\xb4\xae\x7d\x32\xfe\xd0\xaa\xfc\x89\x84\x65\xd6\xe3\x4c\xd8\x33\xbb\x69\x84\x3d\xd3\x66\xdd\x39\x73\x1e\xf5\xc1\xc4\x4e\xf4\xd2\x11\x24\xea\x56\x3c\x59\x2b\xe4\xe7\xf7\x61\x3b\xf0\x3c\x23\x98\xd0\x77\xde\xb9\xf8\xbd\x86\x00\x85\xd9\xf4\x41\xb0\x20\x4d\xa4\x10\x99\xd4\x9f\x7d\x84\xf2\x02\x73\xe9\x8a\x3b\x17\x47\xa4\x29\x58\x3c\x8c\xcc\xe0\x89\xf5\x04\x38\x26\xb1\xde\xf2\x33\xb6\xa9\x6e\x97\x73\xe7\x01\x69\xfe\x45\x1c\x60\x57\xfa\xfa\x39\x77\x56\x90\xd0\x20\x90\x76\xd5\x0a\x93\x09\xfd\x9a\x6f\xd9\x13\x45\xec\x7c\x5d\x9d\x08\xda\x53\x35\x9c\x39\x0f\xae\xb3\xdf\x0f\xe8\x3a\xfd\x3f\xcf\x00\xf3\x3f\x2d\x74\x2a\x3c\x3b\x27\x5c\xaa\x7c\x6b\x9f\x67\x0e\x5a\x83\x7a\x91\x5e\xd9\xbc\x1f\xce\x02\x6f\x21\x91\x0c\x4d\x9a\x5d\x79\x27\x22\xf4\x9a\x53\x48\xcd\x33\x27\x41\x83\x3e\x29\xd6\x4d\xf5\x49\xb7\x08\x4f\xd3\x89\x78\x5b\xe1\xb4\x49\xfd\xd8\x68\x7f\x8a\x38\x9a\x17\x14\xf4\xca\x2c\x3f\x27\x7d\xac\x54\x79\x74\x4e\x68\xd3\x7c\xdd\x9e\x2f\x30\xac\xd3\xdb\xe9\x22\x22\x28\xfe\x01\x2e\x53\x16\x54\xb0\x00\xfa\x26\x3c\x2f\x1e\x9c\xe6\x76\x54\x98\xf3\xe5\x7a\xde\x54\x59\x7a\x87\xde\x70\xff\x37\x49\xa9\xf8\xf2\x06\xbb\x27\xba\x10\x3f\x67\x3c\x9d\x37\x10\x00\x9c\x6f\x65\x13\x00\xce\x4a\xc8\xf9\x70\x90\x7e\xbf\x03\x18\x69\xd6\x9f\xec\x51\xec\xfc\x20\xfb\x84\x07\x0d\xd5\x98\xef\xde\x13\x0e\x59\x76\x00\x9c\x0f\x8a\xad\x9a\xd9\x1e\xd4\x0c\x10\xda\x5b\xbf\x5c\xb5\xa5\x1f\x48\x71\xd7\x33\x28\x14\xe6\x59\x89\xe5\x74\xd7\x5e\x3f\x78\xa3\x68\x5d\x16\xd4\x56\xbe\x4a\xad\x1f\x28\xda\xfc\x3f\xf5\x09\x92\x7b\x0b\xc8\xcc\x43\x5c\x1b\x55\x6f\xfe\xbf\xa2\x01\x3f\xd3\x99\x4e\x14\x6d\x58\x67\x21\xf5\xf5\x02\xa4\xe1\x39\x5c\xcc\xaf\x65\x95\xfb\x82\x72\xc8\xd7\xc3\x55\x68\x6d\xd2\x0e\x5f\xb0\xbc\xf5\xcd\xb3\xc4\x84\x09\x8e\xcf\x5b\x88\x76\xeb\xca\x14\x3e\x57\xa5\xb4\x97\x68\x5b\x74\xa6\x52\xed\x8e\xb9\x2a\x8f\x5e\xc9\xb6\x05\x50\xe3\x9b\xd1\xaa\xbc\x84\x76\xbf\x00\xee\xd2\xae\x5e\xd0\x1f\x85\x37\xe9\xa2\x71\xce\xf1\x6b\x0b\xb0\xc7\x17\xbe\x45\xfd\x91\x4a\x1d\xcc\xd5\x88\x82\x8b\x7f\xd8\x30\x17\x6a\xa1\x11\x8b\xe9\xfe\xb0\x1a\x67\x5f\xcb\x0d\xd8\x33\x3e\x0d\x74\x7e\xe0\x17\x68\xc0\xf0\x6c\x32\x09\x82\xd3\x99\x2e\x68\x98\x86\x39\xe8\x85\x39\xff\x8f\x26\x0a\x79\xcf\x14\xfd\xa9\x6c\xe2\x58\x40\x2d\x36\x9a\x2c\x56\x3d\xb3\xe9\x60\x25\x28\xf9\x7c\xc1\xb3\x53\xe7\xc0\xea\xd4\x5d\x7c\x3e\x01\xdb\x48\x6c\x2f\xfa\xa7\x7b\x35\xa0\x63\x1a\x52\xc1\xac\xd4\x31\xe9\x1c\x58\x23\xa7\x4e\x2d\xb0\xe2\xaf\x77\xfb\x1a\x9c\x3b\x4d\xf6\x20\x07\x88\x45\xa0\x75\x32\x72\x5e\x83\x00\xd1\x44\xc3\x4b\xca\xe0\x7b\x0d\x8a\xb4\xe5\x2e\x1f\xbc\xa0\x61\x07\x45\x9a\x89\x44\x16\x04\xfb\x1d\xae\x48\x1a\x45\x03\x34\x51\x06\xca\x2b\x88\xc5\xa5\x7e\x59\x70\xc4\x1a\x52\xad\x2d\x64\xe6\x2a\x36\x41\xac\xa0\x60\xf6\x30\x22\xa7\x5a\xf3\x40\xf7\x71\x1b\x0c\x16\x80\x8b\x91\xf1\x42\x76\x2f\x15\x45\x9d\xeb\x05\x2e\x5b\x9d\x02\x80\x6b\x42\x32\x5b\x4a\x21\x9b\x97\x65\xff\x9a\x03\x42\xe9\x4f\xfa\xba\xc5\x34\xac\xe6\x47\xb8\x64\x0d\xa1\x96\x95\x8a\xb0\x0f\x39\x5c\x27\x3f\x43\x31\x66\xe9\x30\x73\x7c\x5a\x06\x78\x64\x59\x2a\x2f\xa6\xbc\x57\x49\xd6\xb9\x16\xe9\xf7\x73\xe3\x3e\xd5\x0c\x51\x2d\x66\xc4\xba\x32\xc7\x82\x9f\x31\x08\x6f\xe4\x85\x41\x48\xd1\xb6\x50\x69\xc2\xd7\xfe\x45\x87\xab\x61\x31\x4a\x87\x2b\xeb\xfe\x17\xfc\xd7\x0d\x70\xd7\x9e\x02\x4c\xc3\xdc\xc1\xbe\x82\x29\x6b\x47\xc1\x55\xcf\x1b\xf2\x7a\x19\x9a\xad\x74\xa7\xf2\x33\xe4\x80\x50\xcc\x82\x4e\xcd\xa9\x14\xd7\xc1\x59\xd2\xc5\x71\x21\xc1\xbd\xad\xfc\x0b\x86\x4c\xeb\xd8\x16\xdd\xa7\x6c\x73\x59\x47\x92\xac\x95\xa2\x3f\x95\x8d\x2e\xeb\xa0\xd0\xd5\x2d\x6d\xc1\x5d\xca\x30\x64\x1d\xc9\xbc\xee\x04\x7b\x50\xba\xa5\x05\x24\x63\xf5\xc8\xba\x78\xd7\xf0\x1e\x64\x4e\xac\xe9\x0d\x92\x1a\x2d\xaf\xdd\x15\xa4\x4a\x7d\x5c\xbc\x74\x79\x9b\xc2\xa1\xfc\x73\x34\xb0\x80\x97\x05\x03\x53\xca\x3b\x08\x64\xdd\x03\x3a\x77\x11\x81\x2c\x56\x1f\x29\xcd\x62\xb8\x36\x68\xad\x9b\xca\xdd\xe1\x37\xc8\xc4\x3e\xb8\x1f\xea\x7d\xbc\x4b\x1f\x42\x36\x29\x0f\x16\xd1\x8c\xa7\x02\xbe\x4a\xe1\xc8\xc0\xf5\x80\x29\xbb\x3f\x48\x2a\xfc\xc2\xc5\x26\x35\xfd\x4f\xb2\xe9\xbf\xe9\xde\x99\x75\xea\xe7\x67\xe4\xd4\xb0\x41\x6a\x87\xe5\xce\x96\x9e\x1d\x96\x3b\x4b\xe5\xfd\xc7\xc3\xbd\xfa\x03\x16\x44\xf4\x0b\x60\xd3\xf9\x7f\x8c\xbd\x49\xce\x36\xbd\xb2\x1c\x36\xf7\x2a\xbe\x1d\xb8\xd8\x93\x93\x7f\xe2\xb1\xbd\x87\xea\x68\x68\xa0\xab\x8b\x63\x69\xff\x46\x45\x90\x11\xcf\x11\x24\xe0\x1b\xbc\xc0\xfb\x14\xab\xd8\x24\x93\x99\xc9\x6c\x3d\x02\xd0\x54\x07\xe5\x3c\x5e\xb8\x85\xf9\x7b\x5e\x57\xdd\x01\x72\x48\xf9\x70\x9f\x74\x50\x72\xa4\xdc\x19\x10\x0a\x2d\x01\xe4\x84\xa6\xc9\x28\x76\x42\xd1\xd4\xed\xfd\x7f\x86\xb5\xbd\x9a\x13\x34\x4d\xa6\x48\x27\x4a\xe2\x3a\xe4\xeb\x84\xe6\xc9\x72\xe5\x89\xac\xa4\x3e\x49\x27\x65\x26\x61\xfd\x49\xa5\x92\x4d\xac\x27\x92\x4a\x99\xb1\x9c\x14\xa2\x6c\x8d\x3c\xe3\x5a\x94\x86\x8c\x94\xe8\x45\xc3\xce\x6d\x94\xd3\x6f\x9e\xce\xe0\x3e\x21\x87\x55\xf7\xc0\xc3\x29\x91\xe9\x8c\x48\xcd\xac\xeb\xea\x89\x22\x5e\x55\x72\xc1\x49\x1b\x9d\xcd\x7c\x67\xa2\x67\x91\x00\x8d\xa4\xa5\x3d\xbb\x9d\xf5\x62\xd5\x21\x93\x98\xfe\x8c\x40\x99\xec\xe7\x05\x2a\x2a\x35\xe5\x44\x12\xa6\x29\x27\x38\x11\x0c\x0f\x88\xe4\x5d\xa2\x37\x27\x9d\xa3\x4a\xfc\x2b\x46\x74\xb2\x32\x8f\x2a\x86\xf5\x93\xb9\xe6\x6d\x3c\x3d\x29\xae\x55\xbf\x90\xf8\x82\x26\xbc\xc4\x31\x5d\x6f\xcf\xcc\x15\x69\x46\x4c\x37\x10\x7e\xba\xc4\x99\x94\x76\xe6\x84\xb8\x36\x9c\x1c\xfe\xcc\x3c\x93\xba\x9f\x9e\x99\x52\xa5\x78\xcb\x09\x8f\x78\x5b\x70\x4f\xa8\xa5\x7a\x71\x3b\xe8\xb6\x0e\xf5\x59\xd6\xac\xb5\x0c\x64\x41\xb5\x8c\x71\x96\x02\xf5\x8c\x3b\x24\x66\x48\xf8\x3a\x99\x16\xd5\x49\x12\xce\xa5\xa6\x92\x6a\xe2\x2c\xc4\x78\x7f\x71\xb3\x0b\x4f\xe2\x21\x20\x3c\x08\x03\x4b\xf4\x1b\x49\xae\x9c\x6b\xf3\x44\x7d\xa1\x16\x3c\x6b\x68\x9d\x7e\x4e\x40\x5d\x65\x93\xf4\x9b\x3c\x3b\xfa\xc1\x8a\x8e\xd0\xef\xb5\x0a\xf7\x40\x3f\x43\x8f\x00\xdb\x6c\x77\x3b\x48\x91\x38\xe8\x49\x79\xd0\x74\x02\xf2\xa0\x73\x64\x9d\x10\xff\x2c\x56\x9c\x0d\xae\xbe\x9e\x31\xec\x90\xb6\x0d\x9f\x90\x06\x2d\xca\x9d\xcb\xd5\xcb\x70\x6f\x08\x2d\xf0\x09\x6d\x9c\x90\x3f\x78\xb9\x22\x01\xb1\x91\x38\xfa\x08\x52\x07\x65\xe3\xee\xd9\x09\x45\xad\xb9\x13\x39\xbc\x0f\x08\x1d\xfc\xc1\x68\x64\x58\xf8\x39\xb3\x70\xb1\x1f\x8e\x51\x3b\x61\xda\x1c\x5e\x15\xb2\xe8\xf7\xee\xdf\x17\x47\xf0\x07\x2b\x20\x42\xbf\x1f\xc4\x60\x7a\x8a\xa4\x33\xde\xb8\x25\xbf\x99\xd0\xc0\xa3\xde\xbe\x80\x27\xa3\x15\x6d\x02\x39\x3f\x01\x2f\xfe\x30\x11\xc8\x73\x43\xb2\xcf\x39\xd6\x22\x3c\x04\x65\x02\x63\x13\xb2\xf1\x77\xef\x3d\x93\x36\xd8\xec\x79\x22\x69\x43\xf5\x32\x69\x27\x2d\xfe\xcd\x55\xf8\xd8\x42\xe2\xfb\xe1\x53\x14\xf8\x7c\x84\xe0\xaa\x56\x8d\x7d\x48\xbe\x3f\x8a\x7f\x93\x38\xfa\x7b\x50\x12\xd3\x89\x93\x33\xf4\xde\x43\xd5\x96\xba\xc1\x76\x32\x5d\xa3\xa0\x80\x14\x5b\x16\x6a\xcf\x73\x11\x44\x0f\xb1\xd6\xa0\x45\x7d\x32\x62\x1c\x3e\x93\x08\x88\x74\x5a\x89\xf3\x22\x36\x65\x3f\x58\x80\xd6\x2c\x97\x04\x28\xa5\xce\x79\xc1\x69\xdb\x5b\x75\x11\x5d\xbc\x57\x10\x09\x7d\x8d\x3b\xaf\xf7\x83\x43\xf4\x07\x13\xc6\x7b\xbd\x8f\x54\xaf\x55\xfa\x87\xf3\x5e\x73\xd2\xa4\x61\x97\x55\x91\xb0\x7e\xde\x24\x77\xd9\x5f\x80\xbd\x17\xbf\xd0\xf9\x82\x16\x71\x2f\xa2\xad\xbd\xa3\x61\xd6\xb6\xde\x13\xee\x6e\x9f\x04\xf0\x37\x8c\x08\x59\x26\x6c\x08\x3e\x11\x30\x59\xbb\x27\x8c\x4c\x67\x3e\x20\xcf\x52\x2b\x68\x3e\x50\x06\x0e\xbb\x22\x9f\x9f\x94\x9c\x86\x61\xf0\xc9\xc0\xd9\x51\x7d\xe7\xb3\x76\x41\x1b\x4b\x89\xb7\xbb\x47\xd0\x73\x73\x56\x68\xfb\x0e\x6f\x3c\x92\x4e\x0c\x55\x43\xee\x27\x3c\xe3\x9c\x0a\xf4\x7c\x90\xdb\xc5\xb2\x02\x4c\xc0\x3f\xb8\x87\x04\x5e\x4e\x91\x7f\xbe\xd8\x35\xcb\x91\x28\x91\xfb\x23\x7c\xbc\x70\xd1\xb0\x18\x48\x09\xdb\xa2\x00\x72\x4c\x54\x8b\x91\x48\x03\x3b\x5c\xb6\xe7\x84\x57\x5c\x2f\xfe\x4d\xfe\xa3\x0f\x26\x29\xa5\x0f\x30\x2a\x05\xb8\xe0\xd1\x39\x79\x3e\x05\xe3\xc9\x9b\x87\x0f\xc7\xe4\xcd\x23\xf8\x01\xf2\x52\x98\xf7\x4f\xce\x59\x6b\x80\xf5\xd8\x91\xb3\x27\xab\x00\x78\x17\x27\x35\xd3\x26\x09\x50\x27\x0e\x53\x2d\x1a\x8b\x6d\xd2\xbe\x50\x16\xca\x35\x1f\x2e\x96\xcc\x15\x31\xbf\x0e\x16\xc7\x38\xf4\x9b\x31\x17\x4d\xbf\x29\xcf\x74\x7f\xc0\xf3\x1b\x3c\x42\xc3\xbe\xb9\x07\x9a\xd9\x84\xac\x17\xd3\xfe\xdb\x8a\x7e\x51\xa0\xff\x99\x13\x05\x9c\xee\x41\x5f\x44\x33\x45\xfd\x9e\x1c\x53\x3d\x40\xc2\x77\x69\x83\x2b\x10\xdd\x25\x3e\x5f\x81\xc8\xa2\x49\x42\x5e\x77\x35\x85\x2b\x70\xd2\x7e\x9f\x45\x49\xba\x7e\x9f\x68\x0f\xfa\x7d\xc1\xe0\xe5\x01\xd7\x46\xf8\x03\xe4\x14\xfe\xe9\x90\x02\x7d\xf1\x83\xc5\x88\x35\x85\xc8\x35\x08\xb0\x91\x2a\x15\xff\xe6\x94\x05\x25\x54\x80\x72\x6a\xf2\x0b\x09\xc6\x9c\xe2\xfd\x62\x4e\x58\x9d\x97\x2b\x2e\xa8\xaa\x83\xb4\xf0\x59\x23\x20\x29\xac\x4b\x0e\x5c\x89\x37\x33\x11\xda\x8b\x0a\x4f\x1d\x80\x8b\x45\x02\x6c\xf4\xbf\x50\x13\xc0\x09\xd6\x2f\x88\xc7\xce\x6d\x7e\x31\x5d\x97\x9d\x19\xae\xbc\x4e\x84\xe6\x90\xd7\x15\xd5\x6f\x90\xb4\x8a\x2b\x5e\x9f\x3c\x5c\x9d\x93\xf8\x82\xf6\xd2\xe9\xd0\x2f\xfa\xc7\x39\xe5\xef\x95\x39\x29\x0f\x31\xf1\x5b\x80\x59\xfe\x72\xa2\x24\x17\x82\x15\x86\xb3\x68\x5f\x0c\x17\xf5\x6e\x97\x75\xb0\xfd\x02\xf6\x46\x62\xd8\xc5\x12\xb7\x12\x55\xaf\x42\x4d\x71\xf4\x03\xe0\x93\x58\xd4\x55\xb8\x79\x6e\x47\x72\x03\x31\x9c\xab\x90\xf1\x8a\xd6\x5c\xf0\xb8\x73\xae\xe7\x8b\xba\x4d\xfb\x5b\x5c\x75\xd5\x64\xd4\x6f\x4e\x41\xb4\xe4\x82\x45\xb5\xfd\x5d\xf2\x85\x0b\x82\xae\xf3\x3a\x5f\x75\x51\x77\xad\xb8\x72\x3e\x02\xd1\x92\x74\x35\x5a\x63\x11\x3e\xff\x46\xf6\x57\x03\x04\x6a\x4e\xd7\x13\xb8\x90\x34\xa3\xff\x9c\x58\xc4\x30\x98\xe5\x5e\x4c\x2e\xd6\x0d\x32\x9a\x67\xed\xb9\x74\x51\xcd\xd9\x0d\x64\x98\x67\x9d\xd9\xf9\x5a\xc2\xb1\x58\xd0\xc5\x74\x63\x9e\x04\xc2\x4d\x9d\xb3\xf8\xea\x0b\x53\x34\x09\xc8\xc6\x4e\xa9\x73\x31\xfb\x98\x9d\x58\x2e\xc6\x9f\x76\xef\x53\x3f\xff\xf9\xf3\x13\x67\x77\x2d\x1f\x3e\x1f\xd3\x4e\x48\xbb\xcb\x85\xce\x1e\x13\xe8\x6c\xc8\x2d\x61\x58\x77\xd0\x6b\x65\xea\xd0\x07\x48\x37\xe6\xfc\xb1\xd7\xa0\x07\x8b\x44\x91\x6b\xf0\xe6\x25\x05\xf1\x35\xd6\x85\x52\x63\x0c\x12\x5c\xed\xff\x8d\x5c\x7f\x36\x7b\xdd\x89\xa7\x54\xd7\xbb\x9b\x81\x4b\x96\x0f\x6e\x14\xca\x75\xca\xd1\x9b\xf5\x44\xcc\x27\x6e\x16\x7a\xb3\x2b\xcc\x0d\xdf\x5a\xe7\xc2\xbc\x49\x4c\x24\xf4\xdf\xbc\x5a\x9b\x88\xdf\x1f\xed\x48\xc1\x43\x66\xd2\x2f\x89\x4d\x37\xae\xd6\x4e\x8e\x79\xe7\x75\x26\xa2\x1e\x50\xc1\xa1\x49\xd2\x23\xc4\x91\x51\x37\x89\x8d\x4e\xd5\x4d\xda\x92\x3d\xc2\xe4\x9c\xf4\x01\x92\x01\x3a\xb1\xd4\x4d\x0f\x11\x3b\xdb\xdc\x08\x84\x1a\x5d\x48\x77\x2f\xe2\x52\xfc\x49\x41\x17\x9a\x24\x53\xfd\x99\x59\xdd\x65\x01\x5f\xb3\x2a\x3c\x0a\xcd\x9f\x7c\xeb\x72\x75\x99\x9b\xd6\x17\x3b\xec\xdc\x0c\x85\xb2\xd5\xf0\x86\x35\xc5\x16\x81\x1b\x77\x6b\xa7\x13\xba\x79\x75\xb6\x67\xcb\x5d\x19\x92\x92\xfc\xc6\xe0\x34\xb5\x5f\xc8\xdd\xe3\x54\xb9\x37\x2e\xd3\xf6\x23\xbc\x49\x63\xc4\x6d\xee\xba\x30\x44\x08\x80\xd4\x3b\x45\xe5\x9b\xfb\x0d\x2f\x5c\x67\x5f\xb9\x59\xa4\xc4\x80\x69\xc0\x39\x51\xd1\xbb\xad\xed\xf4\x03\x0c\x29\xa2\x72\x37\xe2\xa0\xae\x5c\x77\xe7\xb2\x35\x85\xce\xbd\x10\xa4\x91\x2c\xd0\xc9\x0e\x6e\x58\x22\xec\xe1\x71\xaf\xab\xad\x2e\x33\x37\x8a\xc0\xfd\x60\x3d\x1d\x70\xed\x51\x71\x23\x7b\x60\x37\x1f\xbf\xe9\x91\x6b\xc6\x7f\x23\x18\xdc\xc1\x79\x37\x2c\x0b\x0e\xec\xb9\x59\x16\xce\x5c\xf8\x66\xb6\x40\xb3\xe1\x9b\xd9\x02\xed\xa8\x72\x83\x02\x38\x72\xe6\xfe\x08\x40\x32\x95\xba\x71\xfe\x93\x4d\x03\xf7\xc9\x3a\x3b\x82\x0b\xc2\xaa\xcc\x5c\xee\x93\x29\x2e\xd5\xc1\xb9\x90\x5a\x53\x80\x6d\xc2\x9a\xc2\x1b\xb9\x77\x52\x2b\x7f\xc3\x8d\xee\x93\x61\xbc\xda\xc6\x93\x50\xd7\x2e\xb0\x64\x9c\x4f\x10\xaf\xb5\xde\x04\xe4\xf5\x71\xb8\xc2\x0d\x8f\x12\xbb\x4d\xdf\xb8\xd5\xba\xa4\xc4\xfd\x5d\x6a\xd3\x0f\xf5\x83\x47\x89\xdd\x0c\x6e\xc4\x6b\xd9\xab\xfa\xbe\x60\xfb\xf1\x62\x11\x13\xde\x9b\xfb\xe3\xf9\x94\x48\x7c\x23\xed\xcf\xe8\xe2\x34\xf7\x05\x9f\x17\x71\xf3\xfb\xbb\xe2\xa6\xf0\xd3\xce\x15\xb8\xc7\x09\xb4\xd2\xfb\x37\x0d\x74\x9a\x21\x72\xfc\x34\xf1\x88\x9b\x0e\x29\x3e\x19\xdf\x15\x38\xb9\x3e\xc0\xfd\xdd\x80\xf3\x0f\x02\xdc\x8b\x8f\xf9\x05\x9e\xff\xee\x1e\x18\xcc\xaf\x19\xa1\x1a\x8a\x55\xbb\xf7\xba\x11\x47\xbf\x70\xc2\x17\x49\x40\xba\xd7\x51\xd1\x1a\x71\xc9\xb5\x87\xd7\x8d\x6a\x28\x4e\xbe\x7e\xdf\x64\x7c\x5e\x24\xd2\x04\xb9\x5a\xca\xfd\x50\x8e\xf3\x17\x4f\x02\xd2\x69\x9f\x19\x10\x66\x51\xf0\x66\x75\x14\x0b\x93\x37\x02\xc2\x4a\x30\x85\xc0\x35\xd8\x7e\xe7\xf7\x77\x0d\x8e\xf6\x6c\xbb\x97\xab\xb3\x87\x24\x61\xfd\x79\x01\x15\xab\x74\xad\xbd\x5f\x54\x28\xf7\xe9\x7d\x69\xd5\xf9\x79\x00\x82\xe0\x0e\x90\xb7\xda\xbe\xf2\x37\xee\xc1\xf6\xbe\xbf\x71\x0f\xb6\xa2\xe1\x66\x10\xbc\xfd\xa5\x6e\x16\x48\x31\xf2\xad\x8b\xb0\xd8\xff\x8d\x8b\x70\xf8\xe9\x81\x80\x96\x80\x7c\x4f\xa4\x49\xf0\xf9\x63\x6a\x23\xcb\xe4\x37\x53\x1b\xd9\xeb\xeb\x9e\xc8\x83\x65\xfc\x5d\x37\x61\x73\x5e\x56\xc4\xfb\x41\x87\x49\x57\xb4\xe2\x41\xe8\x8c\xe9\xdf\x40\x0f\x33\x3d\xe6\xa5\xb6\x1f\xd7\xbd\xee\xbe\x12\x21\x9f\x83\xb7\x42\x69\x32\x1f\x56\xbc\x73\x2a\xdf\x87\x77\xd7\xe6\xdf\x38\xb8\xa2\x8b\xcf\xb1\x48\xab\x1f\x00\x1d\x9a\x7b\x04\xe5\x11\x5f\x7d\xe0\x15\x6d\x8f\xd2\x87\x21\x61\x16\xfc\x1f\xb8\x45\xdb\x49\xf5\xe1\x4d\x56\x0c\xe8\xa1\x69\x2a\xfa\x37\x76\x5f\x38\xfe\xe0\x62\xdb\xc4\x3e\x1e\x5e\x6c\xa5\x10\x78\xc2\x82\xab\x07\xa0\x37\x40\x71\x8f\x6b\xfb\x35\x47\xc4\x30\x5b\xf3\xf3\x2c\xb5\xb9\xa4\xde\x87\xbc\x5f\xe4\xf1\x41\x8c\x73\xeb\x6e\x5f\x87\xc6\x2f\x20\x01\x98\xb6\xf2\x61\x8c\x73\xd0\x15\xed\xa9\x3c\xea\x82\x3b\xbd\x3b\xad\xba\x7f\xe0\xcc\x69\x75\xda\x83\xeb\x84\x3d\xc3\x9e\x46\xb0\x68\x0d\x28\x4e\x6b\x4b\xf4\xd3\xa8\x68\xf1\xef\x06\x0a\xee\xdf\x0b\x57\xfe\x8a\xff\x3c\x9d\xa3\x6b\x36\x7d\xa1\xbb\xa6\xc3\xe2\x65\x41\xf4\xfb\x41\xd9\x7f\x23\xef\xd3\xd7\xa1\xd4\x84\x11\x1c\xed\xfa\x55\x0f\x83\xa3\x83\x78\xd2\xb3\x04\x05\x49\xb7\xcf\x58\xd8\xac\x35\x0c\x1a\x25\xc5\x86\x1e\x38\x6f\xb6\xee\x17\x28\xdd\x78\xe3\x96\x58\x2f\x6a\xf5\xd0\xe7\xc0\x4e\x7e\xcf\x09\x7f\x65\x9d\xca\x87\xe5\x5c\x83\xc8\xfa\x03\xf7\x4d\xeb\x5a\x9f\x93\x22\x96\x04\xde\x87\x49\x7d\x1d\x53\xf7\x20\x89\x5e\xb3\x69\xfc\xb9\x48\xa6\x25\xe0\x3e\xd0\x11\x9b\x53\x3c\x57\x61\x17\x7e\xa1\xf1\x81\xa6\x45\x86\x6a\xb7\xbb\x07\x5e\x03\x76\x37\x7a\xa8\x33\xb6\x1b\xdd\x73\xad\x52\xe3\xee\x02\x32\x80\x68\xdc\x73\x2f\x50\x68\xcb\xa0\x35\xb6\x53\xda\x73\xaf\x59\x69\xcb\xee\x05\x1b\x8d\x71\xaf\x69\x6a\xcb\xee\xce\xd3\xef\x41\x58\xab\xca\x78\x88\x70\x1d\xfb\x47\x3c\x37\x04\x54\x23\x16\xf3\xb4\x84\xea\x07\xa0\x1f\xa6\x71\xcc\x26\x6c\xa7\x80\xe7\x61\x16\x46\xc9\x93\xcf\x72\x7f\xc8\xfe\x04\x24\x63\xf8\x0b\x5a\x24\x4d\x32\x1e\x52\x3d\xf1\xcd\x87\x4c\xd0\x04\xe1\xe1\xac\x05\x09\xe8\x7e\x2d\x6f\x3d\x08\x82\xb6\x05\xf3\xf9\x78\x5c\xb4\xd6\xf2\x01\x4b\xb3\xf1\xf0\x79\xd7\xf1\x51\x87\x8c\x81\xb6\xd3\xe2\xf3\x92\xac\x49\x20\x7d\x50\x7c\x61\x18\x51\xdf\x45\x62\x04\xc9\x17\xf5\xaf\x25\xb1\x3e\xd4\xe6\xda\x2f\xf2\x99\x10\x81\xa2\x5f\xc8\x1c\xc2\x0f\x0a\xe4\x0f\xcd\x01\xae\x9d\x36\x16\x3e\xf4\x95\xb0\x0e\xe3\x99\x5c\xf6\x86\xe3\xbb\xf8\x8f\x18\xeb\x7b\x50\xdc\x88\x7e\x03\x31\x68\x42\xa9\xf7\x58\xa7\x69\xe8\xc1\xcd\x2f\x92\x1e\x20\x95\xb3\x8e\xf4\x0b\xfe\x61\x3d\xff\x1b\x02\x97\xa9\x21\xe8\xcb\x60\x05\xc3\x1b\xd6\x24\xfc\x09\xa6\x2d\x84\x79\x23\x7d\x2b\xc5\x69\x5f\x38\x12\x34\x3b\x58\xbc\x74\xd8\xb4\x81\xf9\x65\xaa\x14\xeb\x1c\x5e\xa4\xf5\xf5\x3d\xfa\x45\x26\x14\x2b\x8d\xdf\x44\xd0\x48\x64\x7f\x57\x71\x7a\x89\x14\x2f\x82\x79\xad\xf2\x7d\x91\xe7\xd7\xaa\xf4\x37\x71\x19\x42\xfc\x97\x1a\x08\xeb\x0b\xde\xb4\xd4\x1c\x5a\x39\x42\x4a\x6c\x00\x78\x33\x2a\x9a\x0b\x8d\xdf\xdc\xd0\xae\x0e\xa0\x3e\xb0\x3e\xe9\x85\x26\xd2\x6a\xc2\x17\x65\xe4\xad\x74\x7e\x59\x5c\x2a\x34\x7f\x00\x8c\x09\x9e\x00\xb5\x68\x92\x2e\x5f\x56\x9f\xaa\x3f\x43\x90\x42\x97\xbf\xe2\x4b\x6f\x21\x54\xb5\x51\xac\x23\x60\x15\xca\x0b\x55\x82\xef\xbf\x2f\x62\x47\xac\x00\x7b\xa9\x17\xa8\x3f\x0f\x28\x1c\x14\x7f\x01\x4f\x40\xf1\xfa\x17\x5e\x98\xbe\x1a\xbd\x75\x6d\xa4\x86\xa4\x17\xa6\x95\x2e\x2f\x42\x7f\xad\xef\x78\xe1\x84\x69\x0d\xd9\x5b\x79\x51\x28\xfe\x80\x47\x59\xba\x89\x77\x29\x06\xc4\xf9\x5e\xc6\x7e\x58\x0d\xf3\x36\xa2\xac\x14\x20\x6f\x5b\xd3\xd2\x27\x08\xfe\xf0\x7d\xe6\x45\x16\x5f\x67\x6f\x7c\x1b\xa9\x64\x75\x97\x15\x1f\x68\x5d\xd4\x47\x3a\x73\xe2\x4b\xfd\xa3\xb5\xc4\x2f\x93\xaa\x04\xd9\x3e\x5f\xa8\x1f\x9a\x3d\x72\x5e\xa8\x1f\xcc\xe8\x5e\xc8\x15\xbe\xaf\xbc\xb0\xb4\x5b\x26\x7e\xa1\x7d\xb0\xd0\xfc\x22\x77\x9d\x05\xf7\x97\xd5\xa7\x7a\xf5\x0b\xc0\x48\x9f\x89\x7e\xe1\xb7\xa6\xc8\xf8\x60\x71\xde\x97\xf5\x4e\xbb\x44\x88\x77\x70\x46\x5a\x35\x6b\x1b\x04\x09\xbc\x2f\x1c\x25\x2d\x5e\xbe\x83\x53\x16\x5c\xc7\x82\xa3\x3f\x20\x0f\x94\x80\xf0\x42\x4a\xb1\x18\xf3\x0e\xde\x85\xbd\x15\x63\x21\xa5\x27\xf1\xf0\x81\x07\xa1\x54\xed\x75\xc0\x72\x6e\x21\xe4\x65\x49\x54\xcb\x7f\xef\xb9\x76\x4f\xf3\x3e\x17\xe8\x34\x08\x74\x0a\x16\x8d\xde\x4f\xb0\x89\x8e\x3f\x7b\xe1\x2c\xf9\x03\xba\x93\x67\x59\x0c\xe7\x65\x39\xaa\xa0\xcb\xc4\x4b\xc1\xc7\xeb\x42\xdc\x8a\xf9\xf0\x7b\x71\xd2\x6e\xa7\xba\x4b\x77\x83\xf7\xe2\x75\xf5\xe7\x0b\x84\x8d\xd8\x1f\xe5\xbd\x56\xed\x4b\xcd\xfa\xa2\xea\x47\x7c\xf2\x85\x98\xd3\x75\xf1\x7f\x3f\x31\xa7\xd9\xe7\xeb\xbd\xc9\x2f\x8c\x53\x37\x70\x4e\x5c\xf0\x45\x8c\xb2\x19\xef\xbb\x84\x1c\xe3\x14\x2e\xfe\x3f\x4c\x0e\x32\x8e\x2b\x3d\xbd\x10\x71\x7e\x58\x1a\x6c\xdb\x96\x4f\x5e\xe6\x7d\x39\x3c\x01\x28\xe5\x3d\xa1\x87\x17\x64\x89\xca\x2f\xae\xf9\x5d\x82\xd9\xbb\x1c\x3e\x75\x87\x7a\x21\x9e\xfc\x70\x27\xde\xd1\xed\xde\xfc\xa2\x1e\x82\x2b\x34\xbf\xdf\x95\x3b\xd9\x06\xf5\x52\x3e\x31\x73\xa2\xb0\xd1\xcd\x11\x5f\x8e\x20\x18\xd0\x57\xd3\x8e\x3e\x2f\x6d\xc9\x76\x88\x7e\x59\xd1\xc0\x1e\xd4\xef\x5c\x80\xd7\xb2\xe6\x02\xac\x66\xc1\x50\x62\xcf\x92\x25\x44\x83\xd4\x4a\xef\x64\x90\xae\x71\x72\x72\x5a\xda\x5c\x4a\x2c\xc5\xed\x2c\x12\xe2\x39\x00\x39\xa4\x7a\x98\xcc\x1d\x67\xf5\xe6\x64\xc9\xf8\x9a\x8f\xbf\x61\x47\x13\xd7\x6b\x07\xd7\x4e\x84\x21\xf7\x9f\xdf\x3c\x84\x22\xec\xf3\x58\xb4\x61\xe8\x01\x12\x40\x8a\xa4\x4e\x5c\xb7\xcd\x8d\x26\x2c\xc7\x26\x15\x13\xe9\x52\x4c\xe5\x27\x6e\xcb\xa6\xd1\xf3\x13\x7e\x92\x61\x3c\x03\x67\xa4\xf5\x85\xca\xf5\x25\x3d\xa0\x09\x41\xf7\xed\xc9\x10\x62\xbb\xfd\xcc\x00\xf2\x55\xfd\x02\x60\x2e\x7a\x37\x03\xa7\xe8\xf7\x21\x1b\x07\x4f\x89\x71\x5c\x3f\x43\x42\xfc\xd2\x89\x9c\x91\x92\x90\x8e\xec\x8c\x24\xa9\xcd\x6f\xe0\x48\x56\xbf\xb0\xe0\xaa\x39\x30\x5c\xc6\x4e\xd4\x93\x55\x17\xb2\x5f\x38\x3f\xe1\x58\xd7\xbe\xc9\xdc\xc5\xd6\x63\xcf\x48\x39\x40\xc4\x6c\xb2\x20\x55\xf8\xe9\x82\x18\x6e\x5c\x89\x2c\x83\xaa\x59\x25\xee\x85\xe6\x90\x56\x7a\x78\x6d\x56\x5a\xeb\xf2\x17\xbc\x50\xe9\x1e\x31\x59\x61\xaa\x7a\x5a\x09\x3e\x58\x42\xe8\x99\xb8\x19\xee\x92\xbc\xa4\x79\x50\xee\x8e\x26\x09\x83\xf5\xcf\x6e\xa6\x09\xd7\x34\x81\x96\x61\xc9\x8e\x3a\x99\x8c\x4b\xae\x3f\x0f\x80\x72\xc6\xe1\x4c\x9d\x92\xa8\xcf\x44\x01\xaa\xfc\xd3\x25\x70\x4e\x07\x7f\xc2\x21\xf4\x07\xb2\x79\xed\x9e\x16\x41\x31\xd3\xbb\xc9\xb8\x65\x9b\xe1\x27\xc5\x4a\xe3\x43\x86\xfe\x4e\x72\xeb\xcc\x5c\xa4\x7f\x4f\xae\x41\x1d\x14\x4a\x47\xc6\xf2\xc2\x70\x07\xf1\xa2\xc9\x38\xe5\xee\xad\x40\xce\x98\x1f\xc0\xd2\xdf\xd3\x56\x89\x59\x38\x29\x81\x01\x82\xa3\x35\xce\x93\xde\x9b\xd2\xd8\x4c\x6a\x99\xec\x17\x3e\x07\x19\xae\xa6\x80\x94\xb5\xf6\x1a\x9c\x4b\x0a\xf0\xe1\xa5\x7a\xc3\xc4\x00\x69\x48\x7e\xf6\x12\xee\x73\x5d\xa2\xeb\x3c\x29\x1d\x9b\xdc\x9d\x6b\x91\x7e\xb0\x10\x50\x63\x7e\x62\x43\x76\x99\xf2\x79\x76\xfc\xd6\x9c\x61\x58\xf8\xed\xe0\x83\xfc\xcf\xd9\x3e\x39\x25\x01\x81\xde\x72\xba\xd4\x4c\x64\x2d\xb1\x23\xda\xbc\x22\x82\x48\x34\xde\xb5\xa6\xec\x0e\xb0\x0d\x86\x22\xb3\xcf\xda\x87\x70\x22\xab\x89\x05\xfa\x09\xc3\xc2\xf1\xd3\x01\xb4\xaa\x26\x57\xac\x98\x64\xc7\xc8\x89\x44\x72\x43\x77\x8a\xb9\xf4\x22\xa6\xa9\xcc\x6a\x62\xeb\xcb\x44\xfd\x80\x18\xfd\x3b\x23\xdd\xbb\x7a\x84\xe2\xc4\x1a\xf1\x79\xf3\xe6\xe6\x39\x43\x4d\x92\xed\x76\x38\x99\xcf\xb6\xfd\x8c\x49\x91\xb0\xfe\x95\x1b\xf7\xa4\x44\x61\xfb\xce\x64\x12\x14\xd3\xae\x67\xad\x49\x03\x52\x8b\x62\x64\x66\x6a\x39\xfb\xa1\x4f\x46\xc7\xb6\x9f\x2f\xc0\x59\x74\x8b\x99\xcb\xb4\xf0\xf3\x05\x58\x97\x74\x86\xf3\xe5\x15\xc5\xb8\x00\xff\x36\x8b\x31\xf3\x25\xdd\x37\x3e\x2f\xad\x88\x37\x1b\xf9\x6f\x6d\x19\x98\x2f\x93\x28\xb9\x47\x9a\x64\x4d\xf6\x91\xfe\xf6\x07\x7d\x91\xfe\xb6\x4b\xe7\x35\x5f\x16\xe4\xd2\xa2\x68\x08\x08\xfe\x7e\xf1\x2a\x77\x00\x7c\x96\x9a\x6d\x42\xa9\xe2\xac\xab\x73\x19\x06\xbc\x06\x44\xa4\x74\x69\x8e\xe6\x5c\x60\xf2\x17\xeb\xc8\x69\x88\x4f\x0c\x4a\x56\xbb\x4d\x84\xac\xd8\x05\x6e\x4e\xb2\x2a\xf3\x95\x4f\xa8\x49\x36\x33\xcf\xb9\x30\x7a\x0d\x31\x0e\x94\x3c\x10\xb1\x1b\xc7\x01\xef\xf8\xdd\xe3\x38\x0e\xde\x71\xba\x1f\xa4\x0f\x6c\x87\x3f\xa0\x66\xa8\xbb\x47\x6c\xc4\xd6\xa0\x8d\x03\x7a\x1d\xb1\xdb\x71\xac\x32\xea\xd9\x3d\x5e\x58\x44\xd6\x6f\xaa\x75\x36\x5f\x1a\x07\xec\x06\x63\x0b\xc1\xe3\x40\x36\x15\x11\x8a\x71\x40\xed\x13\xdd\x8e\x9a\x0b\xa3\xa9\x1d\xc9\x54\xfa\x50\x7f\x28\xb9\x70\xfc\xfc\x86\x5b\x9f\x27\x44\x41\x68\xf8\x77\xc5\xf8\x49\xbf\x1b\x1c\x4c\xfd\x3d\xe9\x4c\xd5\x12\x03\x24\x8a\xe2\xdf\x27\x76\xc1\x1f\x50\x93\xd5\xfd\x02\x62\x47\xf6\x99\x1c\x07\xa2\x84\xc7\xe1\xdf\x13\xe6\x41\x01\x1d\x01\x2f\x52\xbe\x8c\x03\x89\x53\x86\x37\x05\xe1\x2e\x72\x3f\x18\x47\x44\xc9\xda\xec\xf6\x86\xf7\xb5\x47\x91\x5a\x85\xe1\x17\x28\xd1\x14\x3f\x78\x81\x27\x82\x71\xa4\x2e\xa6\x6b\x4d\x88\x31\x4e\x86\x01\x12\xd0\x29\x13\xc7\x38\xa0\xa2\x92\x36\x6f\x1c\x89\x40\x75\x3b\xb5\x64\x55\x50\x4f\xac\x19\xaa\x35\x40\x9c\x51\x6c\xd5\x38\x12\x5c\xfa\x8c\x98\x89\x58\xe1\x0e\xc9\xd8\x9b\x3a\xc8\xb0\x88\x16\x2d\x01\xfe\x77\xd5\xa8\xce\xec\x74\xca\xd4\x34\x8e\x4c\x1a\x33\xfc\x00\x7e\xf1\x5e\x23\xc3\x55\xbc\x46\x08\x27\x23\x08\xac\xf0\xa0\xe9\x3f\x33\x40\xf2\x11\x23\x5a\xa6\x20\xe9\x35\x40\x58\x91\x0b\xec\x38\x10\xcc\xa2\x6c\xfa\xe3\x28\x38\x7c\x41\xef\x23\x34\x65\x04\xbd\x0f\xc9\xe4\x67\xc2\x70\xc5\x1b\xc1\xdf\x83\x5e\x04\xc1\xb0\x8c\x7f\xfe\xb4\xec\x05\x14\x22\xa6\xf1\x00\x81\x29\xba\x86\x8f\xa3\x90\x7b\x34\x61\x66\x21\xd4\xc7\x5f\xf0\x9e\x71\x20\x68\x25\xf9\xa0\xc2\xaf\xa6\x99\x18\x55\x72\x16\x9f\x5c\x06\xad\x78\x3d\x9f\x5c\x94\x7e\x70\x80\xc6\x37\xf9\x28\x8d\xa3\xc2\xeb\x3f\xb9\x03\x2c\xd8\x07\x85\x95\x1f\x82\x7f\xf3\xf6\x6b\x08\xd4\x07\x46\x4e\xbf\xf0\xe2\xc2\x2e\x08\xc2\xb5\x4f\xbe\x5e\xe3\x60\x0c\xf3\xcf\x14\xa1\x4b\x1b\x51\x33\x68\xa4\x8f\x43\x10\x43\xcc\x72\x36\x92\x40\x97\x36\xa2\xdb\x91\x72\xdc\x67\xb7\x75\xfc\x76\x3b\x95\x33\xc3\x2f\x9c\xd8\x74\xbf\x80\xcc\xce\x26\x2e\xf0\xf4\x1b\x51\x4b\x44\xf2\xbd\x6c\x62\x03\xc7\x3e\xd5\x78\x1b\x07\x14\x6f\x4a\x11\x32\x8e\xce\x15\x69\xc2\x3d\xfd\xf3\xa7\x28\x37\xed\x38\x68\xdf\x2b\xee\x8f\x6c\xcc\x9b\x42\xcd\x9c\x27\xcc\x64\x7e\x3f\x33\x86\xe3\xd0\x30\x79\x83\xa6\x6e\x44\xa1\x79\x5f\x68\x29\xa0\x76\xb2\x08\x6f\x5b\x27\x5f\xf3\x49\xe9\xd8\xa7\xa4\x6d\x61\x50\x4c\xf3\x0b\x23\xe0\x6c\xaa\xcb\x65\x30\xf4\x2c\x07\x2d\x3f\xa6\x17\xac\x2b\xf1\xc3\xd9\x98\xfc\x2f\x78\x5a\x83\x3a\x6e\xbf\x71\x2e\xec\xd0\x3c\x4f\xca\x00\x4d\xc0\x3e\xc9\x5f\x7f\xde\xc0\x11\x37\xef\x60\xe1\x88\xfa\xf3\x45\x85\x5b\x9e\x3f\x00\x8a\x1b\x3f\x4e\xaa\x98\x04\xbc\x93\x90\xd0\xba\x18\xb8\xdc\xcc\xf2\xa1\x6a\x1b\x3e\x33\xcb\x04\x39\x34\x85\x8b\x26\x0e\xef\xf0\xb5\x08\xa3\xdf\x00\x71\x4f\x5a\xf7\x45\x29\xd6\xec\xe2\x13\xc5\xd3\x61\x96\xca\x4a\x5d\x3f\x3c\xf9\xa2\x34\x55\x34\x4d\x48\xd2\xc1\x2f\x30\x21\xb3\x8c\xfb\xe3\xb8\xd7\xfe\x08\x10\xcb\xa0\xd8\xdd\xc5\x3a\x29\x1a\x15\xda\xb7\xc3\x98\x7d\xaf\xd3\xef\x17\x50\xc8\xaa\x0a\x14\x4b\xd4\xed\x7e\xc0\xdd\x30\xf0\x1e\xea\x44\x3c\x4f\xe8\xd7\x46\x52\x97\x0f\x51\xb5\x0b\x36\x0f\x8d\xd9\x9e\xd5\x83\x08\x1d\x03\x8f\xf9\x00\x9b\x25\x2a\xd6\x7e\xb0\x34\x00\xe1\x58\x99\xf5\xc7\x01\xa7\x17\x85\xb6\x8f\x63\x19\x08\x0d\x88\x17\x09\xa5\x8a\xe6\xc8\x70\xea\x66\xa2\x85\xe4\x7f\xf9\xe7\x05\x9a\xa5\x8d\x85\xd4\xd0\xfd\x48\x18\x93\x96\x0c\xb3\x2e\xc6\x77\xfc\x08\x86\x93\x29\x71\xb4\xac\xb9\x70\x42\x83\x4c\x6e\xa0\x7b\x80\x80\x2d\x91\x23\x2c\x85\xdb\xf0\x03\xac\x3b\xfb\x37\x2f\x80\x3a\x7f\x01\xf1\x18\xe3\x93\x14\xff\x82\x1b\x85\x65\x70\xd4\x69\x0d\x07\xe5\xb8\xee\x07\xbc\x55\x6b\x27\x02\xab\x79\x29\x18\x63\x84\xc0\x29\x05\xfd\xa6\xae\x40\x90\x0c\x01\x39\x73\x92\x3f\xa0\x4b\xff\xbe\xdf\x8d\x40\xa5\x9a\xa5\xd7\x10\x88\xc6\xc3\x83\x82\x3a\x6e\x45\xe6\x08\x4c\xcb\xa7\xf0\x8a\x11\x98\x85\x4f\xd5\xac\x47\x60\x7d\x07\xd9\xa0\x47\x88\x6b\xde\x1a\x35\x2e\x48\xe9\x93\x48\xc6\xa9\x3e\x23\x0d\x38\x06\x3e\xca\x39\x84\xc3\xbf\x49\x71\x85\x43\x81\x15\xbb\xe4\xa4\x31\x02\xcc\x9a\x8a\x22\x1c\x81\xc5\x49\x2d\xd1\x85\x44\xe0\xf9\x37\x81\x57\xfd\x80\xec\x7d\xb8\x4b\x0a\x89\x3a\x6d\x61\xd9\x35\x75\x98\x02\x94\x5c\x25\x1e\x1e\x95\x67\x7c\xb8\xd3\x87\x6f\x68\x97\x19\xa6\x5c\x8d\x46\xb9\xf3\x0d\xed\x00\x6a\x96\x46\x4f\x14\xb6\xcd\x91\xdd\xc3\x05\xd9\x57\xb3\x42\xaa\x3c\x95\xa3\x1f\x01\x62\x5d\xfa\x79\x1f\x81\x49\x06\xdd\xd2\x41\x19\x13\x91\x53\x46\x85\x63\x47\x28\x6b\x8a\xea\x11\x82\x9f\xec\x04\x23\x50\xd0\xcb\x6e\x07\xa0\x4c\x33\x02\x25\x3f\xdd\xc2\x42\x61\x4c\x8f\x37\x83\x49\x69\xc6\xcf\x83\x8b\x50\xd0\x27\x75\xed\x9f\x96\x09\x71\xad\x78\xd6\x30\x66\x8e\xec\xf6\x45\x12\xb4\x39\x15\x6c\x22\xfb\x77\xe3\x98\x5a\x27\x2a\x9c\x0e\x93\x80\xca\x34\xb4\xfe\x00\x80\xad\xfe\xcd\x03\x6a\x44\xa7\xf4\x25\x4e\x15\xe0\x0a\x35\xc4\xc3\x03\xa4\xb1\xde\x3d\x22\xa4\xb1\x43\xc2\x4f\x80\xf4\xa5\x7a\xe6\x23\x40\xfa\xf2\xc5\x28\xb4\x05\x37\x2d\xba\x2d\xb8\xf9\x01\xd5\x31\xc6\xd1\x4e\x2d\xa9\x71\x94\x02\x55\xd1\x17\x9d\xfc\x55\x6c\x27\x50\x82\xea\x46\xc0\x8e\x83\xd0\x7c\xfa\x3a\xea\xea\x18\xc3\x28\x41\x15\xf7\xb0\x66\xe5\x17\xc0\x96\xbc\x2e\x44\x52\xf8\xe6\x11\x90\x0c\xb9\x44\x63\x14\xad\x9f\x9e\x24\x3d\xac\x7c\x81\x0b\x88\x22\xae\x3e\xac\x63\x91\x14\xad\x9b\x49\x5f\x8c\xb3\x83\x26\x1b\x63\x18\x3c\xaf\x55\xe9\x6d\x84\xb1\xe6\xa0\x07\xac\x4f\xd1\xbc\x5b\x27\x21\xa7\x2e\xcf\x0c\xff\x51\xf5\x78\x2e\x38\x69\xd6\xac\x62\x1a\x83\x10\x02\x96\xcc\x61\xf2\x7b\x12\x2e\x5a\xd5\x89\xb4\xb8\x5e\x25\xa5\x27\xd3\xf3\x6b\x31\x42\x75\xf0\x49\x4f\xcd\x72\x65\x80\xf4\x54\xa2\xe4\xfb\xc0\x82\x16\xfd\xf8\x9b\x02\xe3\x23\x5c\xe0\xe5\x55\x20\xa0\x64\x55\xb5\x2d\x94\xac\xba\xa1\xcc\x22\xaa\xc9\x2f\x60\x81\xa6\xc2\x30\x7a\x8e\xe1\x8d\xbd\xc8\x2d\x8c\x3b\x94\xc5\x86\xc1\xce\x72\x19\xcd\xc8\x03\x25\xe6\x18\x86\x22\x3d\xa0\x7d\xf1\x0c\x77\x85\x13\xba\x66\x05\x43\x68\x30\x10\x10\x13\x9c\x74\x11\x0d\xa8\x77\x31\xaa\xdb\xb1\x0d\xd5\x23\xe2\x0e\x63\x52\x72\x23\x82\xb0\x7b\x3c\xd4\x2e\x33\x81\x64\xbe\x3f\xb3\x44\x24\x72\xf6\x4d\x3d\x2c\x1d\xa6\xde\x87\x9b\xd7\x30\xc5\x7e\xc0\xfe\x2c\x5a\x3c\x1d\xdc\x4e\x20\x61\x5a\xe7\xe6\x6d\x7f\x4e\xf0\x4b\xff\xc6\x02\x8c\xcb\x10\xfb\xb2\x79\x0a\x5c\x9f\x8b\xd1\x84\x42\x9f\x05\x07\x78\x85\x0d\x53\x36\x04\xfc\xaa\x3c\xcf\x08\x2f\x74\x56\x9e\x30\x1c\x9b\x9b\x01\x0c\x1f\x30\x0b\xf5\x01\x2e\x5f\xbd\x7b\x87\xe8\xb7\xdc\xbc\x87\xac\xc9\x1a\xbd\x27\x93\xde\x72\xde\x94\x49\xd1\x44\xea\x82\xc0\x8c\x38\xcd\x9d\x4e\xf2\x08\xc9\x70\x01\x46\xd5\xd1\x3c\xc8\xc3\x2f\x04\x07\xb8\x81\x0d\xdd\x5e\x22\x33\xe6\x58\x99\x17\x99\xf3\xaf\xff\x3c\x80\xb7\x6a\xf6\x17\x9c\x95\xee\xf4\x11\x7e\xc8\xc3\x6a\x97\x78\x60\x6f\x84\x3c\xf1\xb8\x39\x89\xa6\x07\x88\xe4\x2f\xfe\x80\xd5\x54\xf6\x66\xc4\x00\x97\x6e\x31\xcb\x08\x05\xe2\x10\x70\x23\xfc\x8c\x47\x73\x3b\x0e\xa9\xae\x11\x31\x2c\xe3\xb4\x3f\x80\x96\x44\xb2\x70\x84\xd3\xd8\xb0\xb2\x2a\xb2\x04\x44\x94\x5e\x21\x7e\xf2\x57\x3b\xc4\x09\x63\x24\x60\xb5\xa6\x94\xf8\x41\xd4\x03\x04\x29\x68\x27\x62\x62\x9e\x09\x81\x31\xad\x11\x92\x1e\x20\x5b\x86\x81\x90\x08\x35\x77\x70\xa3\x5d\x33\x62\x48\x9a\x5c\xfe\x46\x44\x48\x9a\xcf\x5c\xcc\x80\x9a\xa7\xcc\x6c\x7d\xf2\xf0\x1a\x31\xaf\x39\x6b\x4e\xf0\x31\x0b\x3f\x2f\x00\x8e\x3a\xe5\x91\xd9\xfa\xac\xfb\x88\x79\xed\xbd\x26\x0d\x2f\x34\x45\xee\x8f\x48\x0d\x5c\xf7\x08\x27\xe7\xa0\x55\xa1\xa0\xaa\xf2\xd8\x8e\xc8\x00\x59\xab\x5b\x62\xc6\xc1\x2c\x1e\x72\x72\x48\x0d\x01\xbf\x32\x65\xd5\x19\xb1\x04\x7c\xa0\x21\x59\x9b\xcb\xca\xd9\x08\xeb\xe0\xd0\xc5\x35\x32\x42\xad\x79\x6b\x58\x12\x55\xbc\x39\x22\x1e\x76\x48\xae\x8a\xac\xdd\x75\xb8\x03\x60\x93\x2e\xd7\xb1\xf2\x24\xeb\x5e\x1b\x2b\xcf\x90\xb1\xa9\xc2\x74\x36\xfe\x26\x0b\xf7\x88\xf0\x41\x1b\xba\x05\x45\x16\xaa\xef\x46\x35\x68\xdd\x94\x00\x67\x44\x2a\xdd\xc4\x95\x23\xa2\xdf\x7a\x37\xaa\x31\x73\x8c\x5c\xef\x46\x6c\x4c\x91\xac\x5d\x60\x1e\xbf\xe6\x13\x88\x88\xd7\x61\xcd\x65\xa4\x43\x99\xbc\x9a\x46\xa4\x98\x25\xff\x9f\x11\xdb\x8b\xa8\x1f\xbf\x30\x39\x0b\x75\x81\x3c\x7d\xcd\xd3\x44\xbc\x6a\x32\xae\xc0\x2d\xfd\x87\xae\xf4\x8e\x54\x9e\xea\x90\x99\xf6\xe4\x26\x37\x62\x3f\x39\x05\xf7\xf0\xf0\x0d\xad\x8b\x25\x26\xac\x70\x8d\x03\x1a\x4f\xdd\xf5\x23\x53\xb1\x28\x6a\x6f\x44\xb8\x90\x0d\xdd\x56\xe2\xe0\x91\xd0\x22\x10\xbf\x3a\x74\x23\x8a\x2c\x1b\x6f\xd3\x40\x44\x26\x16\x5f\xed\x23\x03\xe0\xba\x8f\xed\x80\x31\xc2\xab\x40\x35\xd4\x21\x4e\x15\x61\x5a\x1e\x3f\x1d\x10\x8e\x3e\x84\xf4\x8b\x6f\xa6\xc8\x4c\xb5\x22\x19\x2a\x32\x8b\x71\x33\x29\x39\x99\x82\xd0\x87\x0c\x65\xc2\x7e\x4e\x00\xbc\xc1\xc6\xf0\x31\xbd\x48\x3b\xa4\xe3\x88\x90\xa2\xd2\xcf\xb9\x64\xb2\xbc\x66\x72\x03\xeb\xef\x90\xd8\x1d\x69\xfd\x6d\x26\x60\xa8\x3d\x3a\x74\x57\x88\xf4\x0f\x6b\x3f\x5d\x92\x16\xf8\x20\xde\x94\x79\x8d\xf9\xac\x06\x1f\x0d\xbc\x9b\x84\xdc\xa8\xbe\x24\x23\xd3\x38\x1a\x74\xe5\xd2\x37\x22\x7d\xc4\x2c\x8b\x44\xe8\xad\x86\x15\xac\xf1\x5e\xf3\xf0\x03\xdc\xe7\xe5\x9b\x34\x22\x1c\xdd\x87\x44\xeb\xf8\x80\xf4\x4a\x16\x8f\x0f\xb3\xd4\x6a\xa9\x0f\x62\xf6\xab\x7f\x43\x2b\x21\x4e\x1f\x29\xfe\x48\xea\x8c\xcf\x82\x9d\x07\x00\x89\xf2\x59\x78\x48\x15\x8d\x55\x2f\x67\xa0\x0f\x5e\x8a\xee\x12\xb4\x23\x2d\xb8\x2a\x93\x33\x22\x6a\x56\x64\xd3\x84\x97\x64\xc6\x34\xe0\xe5\xa4\xfc\x01\x27\xe5\x59\xbe\xdc\x50\x0f\x01\xf3\xfe\xcf\x9c\xc8\xf7\x3d\x6b\xa8\xb9\x62\x73\x8f\x64\x69\x86\x1b\xfd\xe0\x65\xa8\x1e\x71\x46\x14\x07\x53\x0f\x48\x91\xfc\x73\xfc\x26\x8f\x9f\xcf\x2f\x22\xb5\xaa\x89\xfd\x27\x32\x75\xab\x06\xe2\x3c\x3f\xbe\x2e\xc1\x32\x4e\x94\x9a\xf6\x94\x18\xd8\xe5\x35\x4c\x38\xfc\xc9\x84\x94\x8e\x35\xc3\xa2\x07\x88\x89\x6a\xfe\xfd\xdd\x70\x93\xea\x38\x8e\xf4\xc9\x4f\x51\x7e\xd7\x23\x1d\x0b\x8c\x55\x0f\xa8\x10\x49\xfe\x62\x62\x8e\xfa\x02\x5a\x2f\x79\x69\x8d\xc4\x94\x81\x72\xf7\x1c\x89\x75\xb7\x6c\x62\x48\x4c\x09\x28\xa7\x85\x91\x20\x11\x29\xbe\x60\xa4\x00\xf1\xe6\xc8\x7f\xc3\x90\x52\x20\xcc\xdc\xfb\xda\xd7\xa6\x07\x0f\x60\x90\xf5\x1b\x3c\xbc\x79\xb4\x85\xad\x7a\x01\xfa\x30\x55\x54\x1a\x29\x82\x87\x4b\xfa\x4e\x31\x62\x44\x01\x15\x05\xf0\x0f\xdd\x0a\x13\xb3\x05\xda\x44\x9d\x22\x0f\x94\x7f\x43\xcd\x97\xdc\x21\x05\x97\xe4\x1e\xa1\x92\x35\x4c\x23\xc9\xb4\x88\x6a\x62\x09\xfd\xf6\x33\x27\x28\x99\x82\x87\xb8\x61\xd3\x75\x0f\x2f\xe6\x28\x90\xc3\xe5\xcc\x4a\xfb\x94\x10\xe5\xea\xfe\xd2\x22\x5d\x5a\x14\x7d\xd0\x9a\x31\x25\x15\xf4\xe8\x2f\xc8\x94\x45\xfd\x12\x5d\xd0\x6c\x31\x4d\x89\x3b\xe5\x17\xae\xef\xb7\xee\x9e\xe9\x13\xf8\xda\x61\xdc\x5c\xf2\x9c\xc8\x7c\xca\xe4\xb9\xea\x70\x25\x25\x30\xb2\x42\xa0\x4b\xd9\xc8\xf9\x09\x74\x29\xfa\x3c\xd0\xdf\x4b\x54\x3f\xb1\x20\xbe\x2d\x96\xa9\x2c\xec\xd5\xb2\x58\x8e\x55\x19\xd6\x46\x2a\x08\x7d\x28\x7e\x81\xd2\x89\x0f\xe1\x27\xe2\xb5\x43\x17\x8e\x54\x40\xa9\x9a\x3b\x58\x14\xdd\x3d\x50\x0c\x15\xb3\x4a\x85\xf5\x1d\xdd\xc3\x8d\x1e\x3d\x6b\x52\x26\xa3\xf4\x27\xe3\xb5\xc3\x07\xa8\x2e\xd0\xab\x87\x25\x63\xe9\x66\x95\x2a\x35\xa1\xc6\xc1\x4a\x2e\x6c\xd0\x20\x96\xc0\xfa\xef\x54\x49\x08\xc4\x66\x52\x05\x4a\x05\x4f\x82\x77\x48\x2f\xb4\x81\xea\x7b\xcc\x46\xd8\x1a\xe9\x1a\x95\x1f\x62\xa9\xa9\x2d\x24\x13\x8a\x20\xb6\xc0\xe6\xd1\xc4\x7a\xad\x2a\x02\x32\x12\x53\x38\xfb\x6a\x9b\x1a\x61\xe5\x2e\xc9\x2e\x25\x0f\xa7\xc6\xa8\x62\xad\xab\x51\xba\x90\x8c\x94\x3a\xf5\x19\x3e\xff\x2c\x25\x21\x6f\xdc\x91\x96\xfe\xcc\x34\x71\x65\x51\x96\x22\x28\x75\x5e\xf0\x35\x48\x5f\xb3\x10\xb0\x3a\xe5\x26\xa3\xd1\x92\xf5\x24\x58\xa7\x81\xd3\x10\xfc\x02\xf1\x4c\xb7\x99\x84\x34\xca\x87\xc7\x40\xda\xbd\x6e\x2c\x59\x1a\x35\x49\x87\x89\xb2\x9d\x89\x08\x0d\x92\xd1\x44\x82\xc1\x01\xf2\xd0\x1d\xe9\x5c\x3b\xa6\x69\x9f\x4b\x19\xa9\x59\x9d\x88\x56\xf6\x86\x2d\x1d\x5b\xf7\x0b\x2c\xca\xa2\xfd\x58\xe2\xdf\xf0\x18\x83\xb3\xf0\x1b\x94\xdd\x25\x63\x26\x94\xa2\x3f\x8c\xaa\x17\xb1\x5d\xeb\xb8\xc0\x2e\x24\x9a\xa7\x8b\xb8\x6d\x0e\xb4\xb4\x5c\x9e\xc4\x4d\x65\xb5\x64\xf3\x74\x83\x84\x9b\x45\xdd\x50\x2b\x18\xcd\x58\x47\xbe\xd7\xbf\x09\x2e\x1a\xe9\x93\xd9\x9a\x2f\x30\xe9\xe6\xe9\x93\x70\x99\xee\x35\x43\xed\xdd\xbd\xd6\x2c\x38\xc2\xd5\x7f\xf8\x86\x9e\x96\xd8\x27\x79\x26\x3d\x80\x82\xc9\x2d\x42\xfa\x83\xb7\xff\x81\x48\xd5\x4d\x0b\x1f\xce\x4a\x63\x52\x6b\xa5\xf0\x81\x91\x68\x8c\xec\x26\xa7\xcf\x83\x2f\x34\x6d\xaa\xa5\x7c\xd6\x1e\x1a\x75\xcc\x13\x60\x8b\xb4\x66\x23\xbd\x24\x9e\x46\xb9\x17\x48\xed\xb3\xf6\x82\x89\x48\x1e\x4e\x2f\x99\x88\x39\xe1\xbb\x00\xaf\x39\xbc\x5c\x85\xb6\x92\x7e\x73\xf2\x22\x1f\x89\x7e\x72\xdd\x5c\x82\xd1\x01\xb6\x76\xa4\x4f\x0a\x73\xd6\xc4\x91\x26\x55\x44\xe6\x33\x73\x6d\x8f\x06\x9d\x2b\x4b\xba\x3f\x59\xc4\x70\x43\x3f\xc3\x33\x2e\xda\x62\x92\x8f\x45\x45\x9a\x1e\x00\xc5\xb4\xa1\xf9\xa0\x3d\x4b\x7d\xe6\xa3\xe1\x85\xa2\xdf\x9d\x5d\xfa\x0b\x4a\x01\xd5\x83\x52\x72\x11\xb3\xca\x01\x38\xa1\x85\xe4\xc0\x31\x35\xa9\x40\xf0\x47\xfd\x2e\x1c\x42\x63\x42\x12\x53\x22\xf5\x91\xe1\xab\x66\xdb\x61\xa6\xb0\x25\xd2\x98\xe1\x7a\xe6\x92\xfc\x23\x7f\xb2\x52\xb3\x2f\x59\x8e\xe0\xf1\xb2\x1c\x66\x16\x2b\x1d\x3f\x2f\xac\x1e\x04\xa7\x04\x69\x4b\x32\x72\x66\x89\x2d\x39\x9e\x8f\x9c\x48\x83\x7e\x1e\xd0\x92\x24\xfe\x99\x29\x9a\x88\x60\xe4\x04\x8e\xec\xad\x48\x2c\xd2\x2b\xc0\x52\x30\x11\x1d\xcc\x69\x6d\xb7\xe0\xc6\x5c\xc8\xd6\xab\xe7\x44\xc8\x8b\x5b\xe6\xcc\x75\x6b\x4e\x79\x9d\x3e\xcd\x81\xc2\x8d\x28\x4e\xce\x90\x09\xa5\xcd\xca\x99\x48\xe9\x76\x46\xa8\x78\x0e\x74\x07\xb3\x35\x39\x43\x54\x51\xbe\xc2\x91\x0b\xc4\xd2\xec\xdf\xcc\x20\xad\xad\x29\x14\xbb\xc5\x7e\x33\x73\x1f\xd9\x9d\x29\x17\xc0\x41\x37\xcb\x5c\xb0\x79\xd9\xbf\x6f\x7e\xe0\x29\x40\x04\xf0\x29\x28\xdc\x4c\x09\x22\x99\x82\x89\xe7\xc0\xca\x13\x56\x3c\xe7\xca\x49\x6b\x6b\xea\xda\x5c\xc1\xa1\xf2\x14\x04\x3f\xe0\x66\x09\xb0\x95\x5c\xcc\x70\x60\xcc\xa3\x9c\xf8\x47\x66\xa9\x09\x45\x9b\x8e\xcc\x20\x48\xb9\xe4\x8f\xdc\x30\x4d\xef\x66\xa3\xb2\x5b\xf2\x53\x6e\x24\x64\x62\x84\xb9\x01\xc5\x0c\xcb\x86\xc3\xeb\x49\x50\x0c\xd1\x15\x39\x37\x90\xd2\x9f\xef\x01\xb9\xe2\x19\xe0\x56\x25\x71\x20\x77\xe0\x93\x04\x8a\xcc\xd4\xc2\x8a\xa0\x1d\x99\xf9\xd3\x7a\xf8\x9b\x9a\x45\xa3\x7c\xd3\x4b\xe6\x48\xa5\x51\xdf\xab\xad\x2e\xcb\x72\x29\x46\x5e\xda\x02\x9a\x1e\x74\x66\xf6\x69\xfa\x8d\x9d\x93\xac\x50\x30\x43\xc5\x10\x8f\xb2\x27\xa8\x31\x3b\x75\x1d\xcd\x0f\x00\x33\x11\xea\xd2\x29\x18\xeb\x10\x15\x64\x3f\x56\xaa\x82\x51\x3a\xb6\xbe\xba\x1d\xc9\x32\x82\xa7\x44\x37\xa1\xe6\x39\x4c\xb8\x54\xea\x37\xcb\xe6\x7b\xd5\x03\xd7\xe3\xee\xdf\xd0\x41\x6b\x97\x0a\x65\x30\x69\x00\xca\x00\x21\xa9\x6e\x5f\x0c\x50\x33\x38\x81\x48\xd5\xbf\xa9\x23\xd2\xa1\x2c\xf4\xe8\x12\x5e\x94\x93\x81\x5f\x82\x09\x6c\x96\xa6\xd0\xe5\x2c\x28\x71\xee\xdf\x95\x1b\xe7\x0e\x08\x44\x77\x00\xfe\x28\x1e\x51\x96\x78\x55\x3c\xa5\x8b\x3a\x04\x4f\x89\x15\xc7\xbd\xf5\x27\x70\x55\x5c\xbd\xa0\x0a\x7f\xb2\x0a\xba\x40\xff\x16\xfd\xc1\xb5\x08\xb0\x26\x71\xd1\x8f\xc5\x5b\x4d\x11\xad\xb9\x07\x26\xd6\x91\xee\xac\x5c\x20\x35\xcd\xbf\x71\x7e\xc4\x1c\xcb\x45\x86\x6b\x74\xbb\x70\x80\x44\x27\x0a\x4b\xca\xda\xa1\xa4\x50\xa4\xf3\xd6\xdc\x14\x2d\x44\xcd\x0a\x64\x3a\xfb\x93\x14\x7a\x88\x29\xea\x65\x14\x7a\x88\xd9\x6f\xa2\xdc\xc0\xbf\xe6\x1e\x18\xa5\x2c\x81\xa8\xdc\x9c\xb5\x96\x7d\x13\x92\x02\xd4\x4a\x36\x2c\xd1\xa3\x3c\x24\x77\xe2\x76\xe5\x01\xc6\xfd\xbc\x00\x3a\xe3\x11\x1e\x60\xe0\xcf\xfb\x1d\x0c\x5a\x53\x5c\x42\x9d\xe4\xa3\xf2\x50\x96\xf1\x29\x7b\x30\xc7\xee\x17\xc8\xdb\x24\x83\x95\x87\xa7\xc8\x70\x78\x48\xd5\x25\x39\x16\x56\x1b\xb3\xab\x46\x79\x41\xad\xfc\xc5\x0b\xda\xa0\xab\x4a\x79\xa9\x02\x12\x87\x2e\x94\xfb\x7c\xf0\x96\xdc\x27\x0a\x5c\x10\x90\x91\x4d\x1c\x2a\x6a\xaf\x2b\xaf\xf3\xa8\x61\x21\x44\xd4\x03\x12\x2c\xc9\xf0\x95\xa2\x88\xae\x3f\x35\x46\xbe\xe0\x07\x6b\x56\xea\x22\xe2\xec\xc8\x66\x55\xa1\x65\xb1\xa3\x7c\x8d\x14\x90\xdd\x25\x73\x31\xd8\x71\xa2\x7e\xc2\x4a\xb2\x13\x43\xa5\x0e\xc4\x0a\xf8\x9a\x48\xe3\x44\x62\x2a\xca\x30\x58\x63\x57\x59\xee\xd3\x2e\xc3\x35\xd1\x00\x5f\xfc\xc6\x87\xe9\x0a\xb9\x1d\x15\x95\x16\x7c\x93\xac\x99\x97\x1b\x21\x76\xcd\xd8\x0d\xf7\x08\xc3\x9a\x72\xbe\x8d\x9a\x71\xf6\xa4\xe3\xaf\x19\x18\xa2\x4b\x77\x85\x15\xcc\x52\x64\xcd\xe0\x55\xb2\x42\xd4\x02\x74\x08\x7f\x13\xe9\x3a\x2a\x0b\x62\x59\xdb\x5f\xcb\xda\x05\xed\x5b\x21\x6f\x12\x95\xad\x9f\x18\x92\x94\x90\x66\x54\xaa\x43\x86\x3f\xc0\x29\xd3\xdd\xa9\x52\x2a\xd1\x6d\xab\x16\xce\x57\x00\x5a\x06\x30\x2f\x10\x89\x17\x6c\xa7\xae\xc8\x10\xab\x34\x60\xa3\x56\x2a\xa3\x35\x00\x6c\x5e\xca\xe5\x3b\x6a\xfd\x0e\xa5\xbd\xdf\x2a\x1c\x93\x92\x57\x54\x6f\xb4\x7b\x3c\xa2\xaa\x78\x65\x85\x9f\xb8\x8d\x4b\xf5\x13\x37\x9a\x1d\x0c\x6a\x83\x7d\x3f\xbb\x7d\xc1\x4c\x33\x68\x70\x7d\xd7\xad\xbb\xa2\x08\xbb\x9d\xe9\x2a\xc5\x13\xe9\x0a\x6a\x43\x2d\x3e\x9f\x26\xf8\x29\xd9\x09\xbb\x32\xfd\xa3\x3d\x5b\x6a\xa3\xe8\x97\x3c\xe2\x03\x67\x7b\x8f\xb8\xd6\xe4\x2f\x48\x90\x8d\x97\x9d\x87\x45\x24\xbc\xf6\x95\xae\x4d\x1b\xdd\xa9\x74\xf4\xa1\xa7\xf3\xb8\xf5\x77\x15\xbe\x4f\x56\x31\x55\x14\xcb\x1a\x46\x15\x88\x10\x56\x2e\x54\xa6\x79\xb0\xc3\x4b\x85\x55\x4e\xa1\x91\xa3\xc2\xf3\xc9\x32\x71\xed\x28\xe8\x66\xc0\x41\xa4\xc8\x92\x82\x2a\x52\xc8\x2a\x17\xd2\xa8\x83\x02\xad\xee\x1a\x15\xe5\xaf\xb2\x17\x39\x0a\x3a\xd4\x0a\x58\x2d\x61\xf8\x74\x8e\x86\x17\x84\x0b\xa3\xe3\xb7\x96\x44\x13\x9d\xb7\x6a\x50\x5b\x68\xf4\x47\xf4\xa7\x6a\x7b\x8c\x0a\xc7\x29\x55\x92\x1a\x75\x40\xff\x6d\xaa\xc6\x62\x0a\xb6\x17\xd5\x93\xd8\x27\xa8\x9f\x88\x07\x32\xf6\x9d\x6b\x17\x34\xe2\xc9\xda\x1a\x22\xdf\x95\x5a\x1f\x5b\x67\xea\xc9\x45\x69\x4c\xba\xa1\x8b\x2b\xd5\x25\x95\x48\x50\xaa\xe7\x89\x0f\xfc\x9b\xf7\x44\xef\xec\x09\x53\x87\x31\x1c\x4a\x20\xab\x3b\xea\x72\xa4\xf2\x29\xff\x84\x92\xa6\xea\xc0\xa3\x5e\x38\xa4\xde\xb9\xab\x7d\xab\xf4\x99\xbb\x78\x04\x7c\x8a\x2f\x96\x1d\x70\x87\x08\x29\xf2\x14\x21\x92\x74\x47\x9e\x55\xc4\x7b\x56\xf3\x17\x6a\x99\x9a\xdb\x33\x7c\x9e\x05\x46\x58\x03\x93\x97\x84\x44\x91\x49\x72\x57\xbd\xe9\xa4\x21\x28\x7f\xf2\x88\xcb\x32\x8e\xca\x94\x58\xb6\xb4\xd4\x4f\x1e\x69\x0a\x42\x1c\x95\x1e\xec\xde\x15\x88\x23\xc1\x74\xee\x7e\xf1\x5b\x13\x7a\x90\x9a\xd4\xfb\xcc\x4a\xa7\xaa\x87\x3c\x2a\xa4\x91\xe0\x6d\x84\xa3\x94\x72\x6f\x8f\xca\xe2\x5f\xbe\x59\xd7\x4f\x1c\xc9\x49\xfa\x82\xfa\x2c\x20\x6b\x4d\x48\x0a\x59\x8d\x7b\x90\x4e\xc2\xcf\xef\x05\x64\x0f\x41\x37\x40\x43\x69\x49\x27\xf9\xaf\xac\x45\x15\xf9\x2a\x2c\xb9\x54\x78\x4e\x45\x09\xa6\x15\x72\x47\x8c\x6e\x27\xa2\x7a\x13\x91\x12\xd2\xce\xb8\xf5\x5d\x9e\x06\xfa\xcd\x2b\x81\x64\x9f\x3a\x91\xff\xd5\xdc\x97\xb5\xc8\x94\x9c\x62\x54\x38\xcb\x5b\x7b\x51\x27\xea\x4b\x18\x04\x08\xeb\xb4\x01\xb8\x4e\xa0\x81\xe4\xb5\x3a\x17\x1a\xf8\x85\x8f\x5f\x2a\xaf\xd9\x68\xb0\x0a\x26\xdd\x41\x1a\xa3\x36\xbd\xe8\x76\x2c\xba\xeb\x2f\x70\x76\xa2\x7f\x53\x4f\xa4\x8d\x6e\x07\x0e\x53\xf4\x6f\x04\x3d\x4a\xd0\x6d\x07\x88\x98\x8e\x42\x3b\x16\x18\xb3\x1e\x20\x8d\x82\xe4\xff\x76\xb0\x90\xa6\x7f\x03\x35\xb5\x0f\x0d\x56\x47\xe5\xdd\x1e\x2d\x04\xfc\x3e\xf4\x3b\xe1\x7d\x4d\x80\xb9\xbb\xec\x6f\xda\x02\x66\xac\x8b\x55\x83\x8d\xd1\xb2\x5d\x0b\x0b\x8a\x9a\x32\xc3\x30\xed\x75\xd8\x60\x58\xb4\x6e\xa3\x05\x0a\xce\xd9\x43\x30\x1e\x4f\xbf\x59\x45\xcc\x3c\xb2\x45\x80\x55\x2a\xc0\x16\x11\xb0\x2b\xe1\xbe\x45\x0a\x87\xd5\x1f\x80\x2a\x7a\x27\x13\x88\x9e\xe4\x86\xb6\xe4\x4f\x1d\x86\x46\x33\x9e\xa7\x94\x60\xda\x1f\x6e\xaf\x0c\x99\x13\x1c\x3f\x79\xd4\xf5\xb0\x46\x4b\x04\x8b\xa0\x90\x60\x81\x16\xf6\x36\x08\x97\xdd\xce\x9e\x0d\xc2\x65\x30\x72\x65\x8e\xe8\x76\xac\xd9\x03\x64\xec\x43\x76\x87\x8d\x1d\xba\x03\xa0\x4e\x76\x07\x98\x91\xee\x75\x2d\xaf\x9c\xac\xee\x11\xfc\x6d\xb8\x83\x75\x7f\xd1\x1a\x32\x58\x87\xc4\x8c\x46\x9f\x2c\x1d\xe1\x56\xe8\xab\xec\xf6\xc2\x1b\xb2\x1f\x54\x68\xd2\x34\x42\x59\x73\xf6\x0b\x54\x52\x49\xa4\x6e\x50\xad\xd9\x85\xa2\x15\xde\xc2\x9a\x1f\x5c\xec\xc2\x0f\x40\xf8\xb2\x7f\xbf\x88\xc3\xd3\x98\xd0\xa4\x05\x9f\xc0\x4f\x88\x6d\xd9\x07\x00\x4e\x5c\xd6\xf6\xb7\x4a\x77\xba\xe6\x0f\xb8\x11\x82\x0a\x85\x56\xa3\xca\x72\xb7\x17\xa5\x6b\x95\x1b\x21\x64\x44\xb6\x31\x25\x5a\x1e\xad\x92\x96\x07\x8f\x00\xf6\x63\x20\xc0\xff\xde\x94\xaf\xd5\x45\xba\x35\x85\x86\x43\x2c\xe1\xab\xb5\x35\x67\xcd\x09\x72\xae\x4d\x5e\x6d\x39\x7e\x35\x7f\x01\xe4\xd0\xfd\xab\x35\x1c\x98\xe2\x11\x2e\x6e\x8c\x76\x0a\x7a\x39\xa5\x0c\x1e\xad\xf1\x76\x65\x5a\xb8\xc4\x56\x53\x2a\x56\xfd\xea\xfe\xa4\x73\xd6\x9a\x54\x67\xd6\x92\xbf\x0a\x72\x6d\x1d\x1c\xd4\xf3\xe9\xd8\x05\xc9\xd9\xad\xf3\xfe\xfe\xd3\x3b\x81\xaa\x5d\x80\x17\x99\xa3\x01\xda\x58\xb2\x98\x7a\x18\xeb\x88\xeb\x0b\x96\xe3\xb2\xf9\xb2\x0d\x2a\xf9\xfd\x05\x85\x64\x23\xe7\x58\xd8\xea\x2e\x00\x35\x49\xd1\x8d\x86\x42\x47\xce\xb6\xb1\xa0\xa6\x69\x9f\x2c\x6a\x21\xb0\x52\xef\x15\x4d\xeb\x4e\x10\x6c\x9f\x90\x13\x80\xf0\xba\xa0\xc7\xb2\x76\xa6\xc1\x15\xbf\x79\xd2\x27\xd5\xe1\x46\xa6\x93\xd1\xd1\x7e\x61\x91\x01\x2d\xe2\x5a\x87\x54\x6f\x5c\x6b\xdd\x7e\x40\x9d\xbb\xc9\x25\x53\x9f\xfa\x6e\xdd\xae\xb5\x70\x4d\x8b\xde\xf0\x36\x99\xb6\x9b\xaa\x63\x63\xfd\xcd\x85\x6a\x90\x9b\x0b\x55\x97\xf4\xf8\xea\x5e\x29\xac\x87\x36\xaa\xb5\x9b\x5e\x0e\x26\xa9\x4b\xee\x33\xac\x28\xf7\xf9\xe4\xc2\x78\xd8\xed\x66\xd6\xee\x85\xe5\x1e\x94\xb7\x35\x83\x9f\x79\x3d\x6c\xfb\x6b\xac\x89\x6f\xb1\xa3\x3d\xd4\x8d\x6a\x1d\x0f\x39\xac\x65\x80\x67\x2d\x44\x3b\xb2\xa4\x41\x4b\x01\x4c\x11\x1e\xa5\x7b\x6a\x0f\x15\x68\xa6\xdd\x14\xff\x7c\xbe\x97\x72\xca\xd0\x5b\xe2\x9f\x54\x4d\x6d\xe9\xa2\x8c\x58\xef\x9a\xb8\x3e\x79\xa9\x88\x36\xc4\x5f\xc8\x1a\x3e\xf2\x2f\x6a\x26\x19\x51\x58\x0a\xdf\x2e\xb4\x6d\xae\x2e\xf5\xc6\x04\xd3\xf3\x81\x41\x39\xd9\x94\xdc\xce\x1b\x53\xf7\x0b\x38\xf6\xc6\xb4\x09\x24\x30\xf2\x2e\x19\xce\x0b\x87\xc5\xd1\x0e\xdc\x0d\xc5\x64\x95\x0e\x77\xf4\x23\x40\x27\xd2\xf4\x1b\xa5\x63\xc5\x0e\xfa\x27\xd2\xc5\x43\xdb\xd9\x19\x0d\x39\x7e\x5e\x20\x93\xcb\xfa\x5d\x11\x33\xe4\x0e\xc9\x0e\x74\x53\xee\x30\x47\x2a\xb5\xf5\xe8\x07\x89\x44\xf7\x10\xd8\xbb\xee\x11\x28\xba\x27\xcf\x79\xed\x9d\xc7\x80\x50\x27\xac\xec\x01\x26\x06\xed\x6d\x0f\xbc\x40\x69\x0a\x28\xaf\x6f\x9e\xd7\x03\xa3\xa1\xdd\xbe\x16\xe9\x07\xa4\x85\x22\x43\x1d\xc9\x39\x94\x8e\x7d\xf4\x00\x3d\xc8\x70\x8f\x24\xbf\xcd\x1f\x80\xc9\x49\x5c\xe9\xf4\x2e\x73\x64\x78\x0f\x6b\x51\x7b\x6b\x3b\xa3\x29\x1d\xda\xda\xa1\x87\x0c\x42\xfa\x1e\xc9\xe5\x84\x6f\x9d\x62\xa1\x21\x1d\xe9\xf4\x92\xdc\x25\xd9\xde\x4f\x17\xb4\x79\x79\xde\x91\xb5\x32\x3c\x26\x62\x18\xfe\xce\x83\xae\x2f\x9b\xac\xe1\xbe\x6c\xb2\xa2\xe6\x1d\x72\xa7\x7d\x81\x3a\x2c\xae\x56\x08\xf4\xc4\xfb\x81\xf0\xb9\x27\xdc\xff\xdd\x63\x02\x4d\xd3\x89\xea\x88\xcc\xcc\xb6\x18\xf4\x4f\xce\x4c\xaa\x16\x3b\x3a\xf2\x77\x98\x82\xf5\x84\x33\xdb\x3d\x03\x82\x5d\x64\xb6\x67\x9e\x72\x1d\xb1\x4e\x41\xd3\xe8\xb9\x04\x4d\x1d\xd2\xbe\x04\x49\xa3\x1f\xf4\xa0\xe6\xa4\x1d\x81\x9a\x4e\x77\xd1\xa1\xf7\xb4\x5c\xd9\x59\xa0\xc6\xe9\x71\x3a\xeb\xd1\x18\x79\x0a\x37\x52\x8b\x28\x34\x8b\xfc\x3c\x80\x6b\xd8\x70\x8f\x50\x7d\x1a\xb9\x0a\x09\xe6\xcf\x07\x9f\x7c\x63\xa7\xe4\x0e\xd5\xa8\xaf\x49\xbd\x20\x44\x5d\x5c\xb2\x57\x58\x99\x87\x7f\xf3\x40\x48\x1c\xef\x94\xfa\x74\xa3\xe8\x95\x40\xf1\x4e\x51\xa8\x33\xb2\x32\xc5\x6c\x34\x2e\x34\xf0\x37\x4f\xb1\x01\x9b\x45\xd2\xfb\x09\x5f\x46\x89\x8d\x9d\x9a\x1e\x7f\x4f\xf7\x6f\xdb\xb5\xfb\x49\xba\xa1\x1b\x40\x3f\xc9\xac\x7c\x40\x4e\x6c\x84\x34\x60\x9d\x49\x0b\x6c\x65\xeb\x08\xbb\x73\x06\x82\x7e\x51\x5f\xea\xad\xa3\x32\xc8\x70\x61\x25\x4d\x1b\x87\xfa\x45\x25\xf4\xcf\x18\x24\x77\x3f\x7d\xd2\x05\xc0\x7d\xdc\x4c\xae\x99\xfd\xe0\x83\x8c\x63\xde\xfb\x4d\xc8\x08\x94\xcb\x1b\xdc\x08\x07\xd1\xc0\xc1\xde\xfd\x5e\xb3\xf2\x17\x6b\x56\x7e\x40\xe0\x15\x8f\x41\xfa\x64\x52\xf1\xb0\x3c\x8a\xb6\xe7\xe3\xb0\xf5\x67\x0c\xa8\x4f\x8a\x41\xf7\xb2\x1c\x8a\x57\xb1\xf8\xa9\xc4\xfa\x0e\xa7\x1e\x7b\xeb\xf6\x97\xd7\x5c\x23\x25\x2b\xba\x27\x2f\xfc\xa5\x7a\xd0\xe4\xe0\x5d\xc1\xfd\x02\xf7\x3b\xb0\x72\x77\xc1\xbb\x45\xf1\xb4\x2e\xbc\xe0\xdf\xcf\x3f\x7f\xf2\x0f\x0d\xfd\x78\x78\x49\x26\x99\x2f\xd2\x98\x98\xf7\x50\xc9\xa2\xeb\x56\x9f\x6b\xd2\xda\x5f\xb0\x6c\x5f\x5e\xfa\x5c\x73\xf6\x17\x54\xa6\x69\x8a\x48\x48\x60\xcf\xb7\x8e\xe4\x59\xaa\xfd\x3b\xc6\x72\x00\xd2\x14\xc7\x41\x74\xf0\x0b\x48\x81\x10\xdc\x4e\xf9\x49\x14\x6b\x30\xc7\xa7\xb5\xfc\xe3\x20\x94\x8a\x7e\x23\x00\x5a\xfe\x1b\x03\xb9\xb1\xcc\x0f\x07\x5c\xb3\x2d\x8a\x0e\xd6\x7a\x34\xbb\x1b\x1f\x43\x6d\xb6\x1e\x8e\xc0\xda\xfc\x6e\xcf\x68\xd7\x04\x02\x31\xf6\xa7\xc7\x8e\x17\xba\x7e\x93\x73\xe8\xa0\x8d\x8f\x1b\xb6\x18\xfe\x2a\xb6\x68\x80\x53\x3a\x22\x7c\x2c\x8b\x9d\x0e\xc8\x00\xa7\x74\xbc\xee\x88\x6b\x93\xfc\xc5\x47\x50\x55\xdc\x67\x0c\x46\xce\x15\xb7\xf3\x3e\xe8\x15\x7e\x8c\xb3\x45\xdd\xe4\x07\xfc\xa4\x8d\x27\x23\x11\xfb\x25\xd4\x0e\xfa\x41\xdb\x3e\x37\xd2\x82\x89\x26\x95\x28\x43\xf8\x01\x32\x63\x96\x24\xe4\x1d\x4b\x89\x22\x81\x7d\x40\x89\xe2\x50\xca\x91\x3f\x71\xd1\xf6\xa0\x91\x49\xb6\x9b\xbb\x24\xae\x0c\x77\x49\xd5\xd1\xcf\x03\xe0\x8a\xb1\x0b\xcc\xcd\x02\xe5\x80\x91\xcf\xb1\x72\x03\x09\xd6\x4b\x32\x7a\x66\x5e\x75\xc4\xcd\x46\xc1\x56\x4a\x04\x1d\xcb\x70\x27\xca\x3f\x0a\x67\x2d\x6c\x82\x9a\xa4\x79\xc8\xc2\xdc\x6e\xc3\x2f\x2c\x48\xb9\x87\xb5\x3d\x9a\x15\x92\xaa\x97\x64\x94\x2f\x94\x55\x7e\xde\x98\x7c\x43\x9d\x56\x32\x03\x31\xd1\x01\x3f\xd9\x24\x25\xda\x40\xf5\xe9\xe3\xe7\xf7\x1a\x54\x3d\x30\x5d\xa6\x53\xdc\x8c\xef\xba\xeb\xea\x79\x63\x2c\x0b\x8a\x48\xff\x38\x49\x4d\x24\xf3\x8d\x93\xa0\x10\xf4\xcf\xb5\x81\x1a\x03\xa1\xe7\x39\xf9\xf7\x27\xef\xa8\x7a\xc8\x18\x17\xa5\x48\x51\xfa\x01\x27\x8c\xe2\x5c\x53\xe3\xc2\xe1\xb0\xbd\x62\xa0\x16\x88\xa3\x96\xc7\xc7\xf4\x92\x4d\x2c\x83\xb5\x41\x6c\xaf\x18\xf0\xb1\x70\x64\xc7\x58\x06\x8d\xe6\x2f\x26\x1f\xa8\xcb\xef\x72\x9b\x92\x24\xa6\x71\xaf\x75\xfb\xc1\x77\x3a\x7c\x1b\x1e\x60\x71\x56\xfb\x0e\x38\x61\x38\xba\x64\x80\xa1\x39\x56\x63\xe0\xae\x5b\x92\x49\x1a\xee\xa5\x3f\x68\xfd\x80\x44\x48\x3f\x39\x60\xa2\x70\xa8\xc5\xa0\xd7\xab\x53\x97\x8c\x75\x4d\xed\xee\x11\x56\x17\x9f\x5f\xb8\xc5\x3a\xc8\x60\xb0\x84\x87\x6f\x7f\xe3\x39\xd9\xa5\xe7\x80\xa3\x64\x4a\xcf\x24\xd9\xb6\x7a\x0c\xf8\xcd\x3a\x9c\x63\x3c\x3c\x4a\xdd\x93\x9a\x78\x41\x3d\xbe\x8b\x30\x6b\x12\x70\xa0\xb0\x03\xea\x78\x1b\x87\x50\x97\x93\x58\x2e\x96\x3a\x26\x96\x21\x3e\x3e\xe6\x5a\x86\xbf\xc0\xac\xc5\xbf\x06\x0b\x22\x3b\x3a\x76\xa0\x08\x54\xd6\x32\xcf\x03\xa0\x96\xe2\xf5\xa4\xd9\x20\x49\x77\x7c\x1e\x74\x5e\xd1\x39\x39\x0f\xd0\x46\xeb\x72\xcf\x03\xc7\x40\x4a\xcb\xf3\x60\xba\xd2\xea\x07\xe4\xf3\xdd\x5d\x5c\xec\xc2\xa3\x52\xcf\xf3\x33\xc8\x0b\xf1\xc3\x63\x00\x96\x92\xdc\xce\x40\x85\x80\x0e\xe7\xc9\x80\x24\x8b\x59\xe7\xc7\xf5\xe0\x83\xf8\x17\x3c\xe9\x0c\x4b\x50\xd0\xef\x4a\x28\x44\x3d\x00\xa1\xcd\xee\x7d\x2d\x69\xe8\xc1\xcb\x25\xa9\x8b\xc8\xbd\x13\x13\x3a\xc9\xe7\xac\x49\x3d\x57\x04\xb8\x4e\xff\x09\x57\x95\x62\xa7\xad\x93\x21\x43\xd6\x51\x9f\x48\x5c\x6d\xaf\xe7\x33\x72\xbb\xd5\xc3\x77\x85\x4b\x96\x1d\xce\xc5\xd8\x74\x0e\x4e\x96\x11\x71\x50\xed\xc9\x4b\x9d\xc3\x53\xcf\xb4\x96\xee\x37\xbe\x5b\x9e\x2d\x57\x27\xa3\xc8\xd3\xcf\x17\xe0\xa6\x52\x9d\x9e\x19\x2c\x44\x52\xdd\x89\x14\xd1\x87\x83\xc9\x4e\x32\x42\x49\x30\x67\x86\xcc\x24\x75\xe9\x99\x79\x9a\x87\x5f\x00\x86\x49\x6c\x3b\xc9\x18\xad\xfd\x3c\xe1\x47\x5b\xd2\xcf\x03\x62\x58\xf4\x27\x3c\x08\xc3\xb3\xc2\xf1\x95\xd8\x75\x66\x92\x7f\x4d\xa2\xac\x59\xab\x07\x78\xde\xaa\xf8\xed\x38\x0b\xcf\x81\x38\xdf\x49\xce\x28\x61\xf3\x2c\x84\xa4\x18\xfc\x59\x08\x49\x4d\x92\x39\xa2\xcd\x5b\x4f\x18\x10\x54\xcc\x66\x9c\x70\xcd\x8d\xd2\xc6\x9d\xac\x4a\x3a\x7e\x5e\xc0\xb1\x10\x25\x3e\xe1\x68\x6b\x37\xb0\x13\xe6\x00\x3b\x09\x9d\x15\x53\x94\x8a\xf7\xac\x40\x6b\xdd\x1b\x4e\xb8\xdd\xfe\x9c\x5c\xdc\x0b\xed\x99\x71\x22\xae\xc3\xbe\x99\xe7\x49\xaa\xa9\x1b\xfc\xc9\xea\x56\x56\x28\x9e\x70\x33\x34\x7f\x3a\x79\xcd\xb3\x42\xf1\x3c\xc9\x7e\x44\x15\x4f\xd8\xfc\x6d\x8e\x3e\x17\x0b\x34\xe0\xaf\x05\x78\xbf\xc1\x1b\x94\x89\xc1\x45\xbe\xab\x59\x51\x07\xfc\x83\x81\xd7\x42\x0f\x6d\x05\xb9\x64\xf5\x6f\x30\x7f\x6b\xd2\x4e\xd4\x85\xb0\x41\xfa\xdc\x1a\x60\x8d\x79\x2f\x3a\xa9\x2e\x6e\xe6\x67\x12\x24\xe8\x9a\xe8\xc8\xb7\x13\x09\x51\xa2\x55\x67\x27\x62\x7c\x7f\xee\x92\xe7\x8d\xed\x95\x04\x79\xc2\xb3\x70\x38\xc0\xef\x24\xa3\x94\xc4\x78\xb2\xc2\xe3\x61\x2c\x66\x71\x2b\x87\x31\x9e\xa8\xe8\xf8\x73\xfd\x3c\xa9\xd0\xb5\x3a\xed\x44\xe0\xaf\xc3\x0b\x4e\xc4\xfd\xb6\x9f\x1e\x08\xbb\xe4\x49\xdc\x78\x41\x1f\xbc\x6b\x96\x7e\xc0\x0d\xf3\x7e\xbc\x6b\x56\xda\xd2\x17\x77\x62\x49\x18\xe7\xe2\x84\x62\xae\xe7\xbb\x76\x50\xe0\x46\xa0\x6f\x32\xc3\xe0\xd5\x51\xfc\xfc\x64\xe0\xaf\x75\x1e\x27\x72\x37\x67\x49\x08\xe7\x0b\xaa\x25\x6e\x7d\xbe\x80\xb5\xdb\x27\x40\x2b\xd6\x7b\x4e\x1c\x25\x5d\xb9\xcf\x49\xc2\x29\x4d\xd3\x39\x71\xba\xc5\x8a\x4f\x96\xa3\x48\x3e\xac\x54\xff\x8e\xbf\x2a\x16\x31\x4e\x72\x72\x31\xee\x93\x69\x54\xac\x41\x39\x59\xce\xd1\x1a\x94\x8b\x71\xc1\x56\x90\x5c\xc7\x22\x61\x59\x0f\x22\x37\xdf\x9f\x24\xce\xd1\x6f\x60\x23\xc4\xa9\x2f\x66\x6a\xf6\x95\xfc\x42\x05\x8a\xc3\x08\x75\x81\x97\x1f\xde\xed\x8b\xbc\xdc\x31\xa3\x17\x79\xb5\x43\x40\xaf\x40\x2c\x95\x8c\x71\x05\x1e\x0d\xb1\xdb\x8b\x37\x4e\x31\xf3\x2b\xac\x51\xdd\x27\x08\x55\xf7\x6f\x22\xa5\x84\x90\x8b\x55\x1c\x1d\x22\x78\xc1\x90\x7f\x58\xb5\x73\x05\x6c\xb8\xf8\xf3\xc5\xb2\x5e\x49\xa4\xeb\x8a\x20\x96\xe2\x18\x17\xef\xa1\x4e\xa0\x76\x41\x41\x3b\x1c\x1c\x79\x45\x96\xe4\x14\x51\xb8\x98\x43\xd9\x0c\xf9\xfa\x18\x72\x49\x3a\x6c\x57\xfa\x08\xb6\x95\x28\x17\xd8\xf1\xf1\x03\x2b\xfa\x96\x5a\x3b\x74\xa1\x62\x83\x63\x0a\xae\xc4\x72\x31\x9a\x03\x3d\x49\x1d\x99\x7a\xe1\x1e\x6a\x8f\xa6\x0b\x39\x8f\xed\x5c\x7c\x81\xfb\x3a\xb5\xc8\x05\x5b\xbe\x33\xf4\x5e\x1f\xf3\x4d\x0e\xb9\xbf\x72\xe7\x14\xfd\x60\x81\xc1\x23\xf0\xec\x15\x77\x39\xd1\xa5\x20\xf9\xf1\xd6\xe6\xdb\xdc\x85\x68\x5b\x95\x60\x1b\x57\x59\x50\x50\x07\x1f\xa7\x6c\xbe\x16\x5d\x60\x94\x76\xe9\xbf\x78\xa5\xb4\xfb\xec\x55\x16\x29\xd5\x10\x8c\x49\xb1\x2a\xe8\x82\xe9\x7c\x1c\x12\x63\xae\x4a\xa2\x24\x19\xe2\xaa\x8b\x54\x6a\xd4\xba\x56\xae\x75\x50\x8f\x6a\xdd\x0d\xaa\xfe\x67\x47\xe7\xa0\xaa\x7f\xb7\x3d\xf3\x6a\xeb\xbc\xf9\x01\x81\xed\xdf\x05\x1f\xa8\xc3\x46\x1e\x21\x0e\x8f\xaa\xfe\x5f\x0f\x9a\x25\x2b\x75\xda\x9d\x12\x45\xfa\xbf\x59\x0a\x23\x3a\x36\xd8\x28\x05\x53\xf6\x8f\x3e\x07\x45\xf9\xbf\x2e\x04\x6e\xe4\x9a\x3b\x7e\x70\xa8\x13\x0b\x25\x48\x5c\xb4\x60\xdb\x73\x0f\x75\xfc\xc3\x8f\x5a\xe7\x62\xa5\x6f\xbb\x1b\xad\xc2\xfd\x76\xb5\x41\xe1\xfe\x60\x2b\x39\x0a\xf7\xbb\xae\xf7\x60\xdd\xfe\xc3\x21\xa0\xd7\x00\xda\x18\xf1\x06\x32\x33\x34\x7f\x40\x4c\xf6\x6f\xf2\x1d\x09\x1f\xd7\xe0\x7e\x49\xb6\x40\xa5\xff\x6f\x08\xbf\x41\xbc\x31\xb0\x4e\x92\x26\x53\xc8\x93\x32\x79\xf2\x1b\xc0\x4d\xcf\xf2\x5c\xa0\xd1\x34\x3e\x21\x29\xa9\x18\xdb\xb8\x10\x9b\x61\x43\xee\x45\x23\xb7\x63\x36\x2f\xa4\x46\xf9\x01\xcc\xc9\x42\xcf\x9a\xe4\xb5\x00\xa3\x65\x5c\xe1\x83\x9c\x27\xcd\xf4\xbd\x8e\xe9\xbc\xe0\x26\x69\x99\xfe\x62\xc1\x50\xbb\x14\x5d\x90\x98\xc6\x11\xfb\xdf\xf0\xa6\x0b\x81\x1e\x16\x6c\xaf\x4f\x9c\x72\x81\xf5\x71\xd1\xa2\x6e\xd5\xd7\x05\x8b\xfa\x70\x68\xd2\x05\xf9\xea\xf8\x39\x6c\x90\xaf\x7c\xa9\xb8\xe8\x56\x69\xa7\xc2\x0b\x6a\xf3\x14\xfd\x7b\xed\x83\x90\xf6\xe6\xe9\xf4\xac\x18\xd9\xe1\xc3\x89\xc0\x8e\xf4\x33\xe4\xda\x6b\x77\x09\x32\x25\x81\xfe\xa2\xb9\xdc\x0a\xb9\x0b\x71\x1b\x3f\xa7\xf7\x41\x5e\x0d\xa3\xd3\xb3\xe6\xa4\x63\xf2\x10\xac\x5e\x05\x84\x27\xeb\xc8\xaf\x87\xd4\xda\xab\x40\xb4\x6d\xb6\xcc\x77\x21\xea\xe2\xe7\xbc\x43\x69\x90\x24\x3f\x5f\x2f\x90\xde\xc8\xf3\x72\x8e\x5a\x35\x64\xad\x1f\x75\xea\xf5\xae\x49\x6a\x0e\xf0\x86\xb4\x67\xe1\x05\xb5\xfc\x70\x28\xc0\x85\x5c\xc1\xc5\xca\xb5\xeb\xe5\x76\xfe\x3c\x98\x7c\xa0\x3e\x27\xb6\xd3\x5d\x40\x9a\xfa\xd9\x2c\xd8\xd6\x7f\x76\x77\x92\x1a\xfb\x54\x21\xc0\xd7\x1e\x67\xd7\x5c\xb3\xd6\xba\x27\x25\x13\x13\x63\x66\xa6\xb3\x2a\xf3\x62\x80\x6f\xf2\xb9\x61\x3c\xaf\xed\x07\xd7\x24\x16\x0a\xa9\xee\x4f\x84\xea\x4e\x90\x77\xa3\xbe\xd7\x61\x0f\xc6\x1b\x3e\x93\xf6\xb2\xbc\x21\x2f\xd9\x27\xe0\x86\x4b\x64\xd2\x59\xbf\xa1\xcc\xf7\xac\xef\x03\x38\x98\xdd\xdf\x02\xad\x3b\xb8\xf1\x41\xd7\x6f\xa4\x65\x6e\xfe\x80\xe4\x5e\xca\xb6\xfb\x93\xae\xb2\xd9\xf9\xcd\x02\xa7\xd6\x52\xde\x50\xff\x27\xc9\x8d\x37\x9c\x28\x0d\x95\x1b\xea\x7f\x6f\xee\x1d\x0a\x7e\x7b\x00\x52\x40\x4f\xf1\x93\xb5\x9a\x53\xd9\xde\xb0\x96\x1f\x8e\xd6\xbe\x03\x91\xda\x50\x5a\xca\x11\x29\x46\x6f\xd8\x00\x92\xd4\x29\x77\x24\xc1\x92\x1a\xea\x66\x49\x55\xab\xec\xef\x48\xc0\x6b\xd6\x10\xce\x52\x76\x8f\x14\xce\x9a\x5f\x20\xc2\x78\x2b\x58\xf4\xcb\x7a\xce\x3b\xf2\x4e\xe1\x85\x44\x22\x8c\x41\x05\x03\x7b\x09\x7e\xe1\xc5\xa0\x9e\x14\x22\x0f\xc5\xad\x6f\x58\xd0\x93\x64\xb5\x9b\x9e\x9b\x0e\x7c\xbd\x29\xee\x49\x91\x71\x2f\x71\x4f\xdc\xe5\x5e\xda\x17\x23\x08\x73\xf8\xd9\xd9\xf3\xa6\x51\x5d\xa2\xcf\x8d\xb0\x66\xb3\xa3\x3b\xb1\xc0\x84\x87\x20\xdb\x6d\x9e\x14\x16\x21\xf5\xcc\xcd\x48\xa2\x1f\x9c\x66\x54\xb3\x95\xa9\x37\xac\xee\x87\x19\xd4\x9d\x29\x2a\x79\xa1\x30\xc3\x27\x09\x7c\x77\x6e\xf8\xed\x1e\x10\x8b\x6d\x0c\x61\x5d\x57\xab\x5f\xef\x82\x90\x2a\x2f\xbb\x50\x50\xfa\x3b\x7f\xef\x9b\x46\x0a\xc7\x34\xdf\x85\x02\x8c\xa8\xe4\x5d\x10\x07\x70\xb8\x7f\x12\xe6\xe2\x17\x00\x46\xf1\xdc\x9b\x65\x30\x2c\x67\xdf\xac\xfc\xea\x74\x8c\x77\x21\x96\x4b\x3b\x73\x97\xb5\x28\x0f\x42\xaa\x28\x85\xcf\x0d\xf7\xce\xe4\x69\x56\x5e\xd0\x44\xac\xef\xba\x96\xed\x37\x16\xf5\xf6\x1b\x84\xac\xe6\xbd\x64\x52\xf1\xa4\x9b\xa5\x5e\x7f\x4e\x46\xe3\xd9\x92\x20\x76\xb3\x94\xab\xdd\x86\xee\xc6\xdd\xd3\x18\x6d\x1d\x1d\x3f\x00\x55\xf3\x4a\x99\xf0\xd8\x11\xb0\x37\x3d\x30\xed\xbb\x72\xbf\xa8\xef\x2e\xfa\x7e\x33\xf4\xcf\x11\xab\xf7\xcb\x75\x08\x34\x28\xc5\x64\xbd\xf4\x8d\xfb\x7c\x92\x7c\x79\xbf\xa0\x8b\x92\x83\x6f\x32\x18\x49\xbd\xf7\x5c\xab\x54\x87\x28\x5f\xed\xe4\x1e\xf7\xc4\x1d\x43\x3a\xc5\x7b\x22\x78\xca\xe4\x81\x09\x24\xac\x6b\xbf\x17\x3f\xd1\x49\x7b\x96\x6a\x5c\x47\xf1\x81\xad\x57\x35\x72\xc7\x43\x66\x20\xb8\x3e\x47\x43\x36\xc1\xa8\xdf\x00\xa3\x84\xe8\x87\xcc\xa1\xba\x9d\x38\x27\xa9\xec\x81\x16\xdc\x02\xc9\x43\xd3\xae\x03\x68\x1f\xd2\x76\x31\x83\x87\xb4\x5b\x2c\xf0\x09\x4c\x1b\xe9\xdf\x14\xcc\xa4\x55\x78\x70\x09\x76\xfe\xe5\x07\x59\xae\x1c\x9d\xf2\x44\x2e\x49\x4b\x86\xa9\x35\xeb\x12\xfd\xc0\x77\xdd\x25\x7f\x1e\x9a\x5e\x7f\xbe\xbf\xb1\x02\xf7\x4f\xf6\x25\x05\xc3\x93\x28\xcb\x4a\xbe\x79\x12\x37\x52\x64\xfa\x49\x14\xda\x75\x51\x7f\x12\x63\x9b\xdd\x05\x17\x25\x25\xf7\x93\x28\xd5\x27\x7f\x01\x92\xd7\xfc\x05\x57\x2d\x28\x20\xaf\x43\x12\xcb\x7c\xf2\xda\x69\x4d\x2a\x93\x1d\x49\xb6\x7c\x78\x49\xf6\x46\x64\x5e\xa1\x86\x1f\x00\x70\x5e\x05\xd3\x5c\x99\x24\x3e\xf0\x80\xb7\x95\xed\xc9\x3c\x53\xa2\xba\x0f\x2c\xb1\xce\x4d\xf9\xf0\xd2\xac\x23\xf6\x14\x2a\x73\x0c\x5b\x54\xf2\x49\xc6\x57\x50\x2c\xe7\xe7\x7b\x16\x39\x12\xd1\x7d\x2a\x60\x2f\x9a\xf7\x7c\xe4\x28\xb5\x9f\x76\x6e\x85\x08\xda\xb3\xc8\x53\xf1\x1b\x00\xc3\xcf\x0b\x0b\x0c\x9a\x43\xe5\x75\xb5\xf8\x8d\x93\x7b\xe3\x2e\x78\x77\xf0\x24\xee\xef\xdc\x1a\x0c\x15\x7b\xe5\xdd\x6f\x14\xd1\x04\x06\x44\x51\x26\x63\x74\xa3\x24\x69\x30\xc0\x5b\xdc\xa6\xc0\xa7\x51\x61\x25\x59\xf4\x69\x34\x3f\x17\x77\xf9\xf2\x81\xe6\xc4\xbc\x0c\x63\xfc\x55\x1a\x86\xa7\x93\x1b\x49\x7b\xf5\x30\x75\xbb\xad\x5b\x0f\x72\x22\xa4\x9f\x17\xb8\x73\x6e\xe7\x65\xda\x07\xbf\x53\x72\x15\xe7\x78\x58\xec\xc6\x2a\xef\x87\xa9\xa6\xc4\x40\x1f\x24\x92\x4a\x36\x5f\x3c\x83\xda\x0c\xf1\xe0\x87\x0e\xe1\x87\x74\x68\xcf\x20\xa0\xd4\x05\xd3\x1a\x1c\x06\xfd\x89\xdd\x96\x42\xec\x39\x31\x6d\x99\x2f\x9e\x55\x76\xe6\xf0\x03\x10\x71\x8f\xc0\x24\x04\xf6\x47\x78\x4e\x96\x56\x3a\xfc\x00\xbb\x2d\x2a\xfe\x2c\x83\xb8\xf8\xdd\x73\x61\xbb\x8d\x60\xb0\x7f\x1f\x3f\x1f\x90\xb9\x79\x15\x17\xce\xd9\xf0\x0b\x5c\xb6\x57\x71\x7d\xcb\x76\x36\xb9\x07\x49\x0a\x92\x21\x7b\xad\x49\x7b\x0a\x64\xfc\x5e\x37\xb3\x12\x38\xf6\xfa\xb9\x0f\x7e\xa2\x37\x6e\x9c\x5d\x23\xc0\x1d\x31\xa6\xe6\x70\xaf\x83\xe5\x17\x08\x6a\x8d\x89\xdb\x6f\xf6\x6e\xae\xdb\xaf\x58\xf2\x73\xaf\x65\x09\x30\xab\xcc\xf4\xe1\x2e\x27\xba\x10\x60\x9e\x84\xdf\xfa\xe0\xa1\xe8\x29\x96\xfc\x7c\xb7\xd9\xe6\xac\xdb\xcf\x83\x4a\x61\xde\xdd\x87\x14\xcb\x93\x7c\xb8\x9b\xd2\x43\x3c\x4c\x11\x6a\xae\xfd\x2c\xd3\x80\x01\xf1\xf2\xb4\x1a\xda\x2f\x25\x62\xdd\x1c\x9f\x97\x2b\xf7\x17\xcb\xdf\xc4\x5f\x50\x37\xac\x0b\xcb\xb3\xae\xab\x92\x0d\x1e\xb8\x82\xe7\xc3\x5f\xac\x79\xfa\x05\x82\x46\x2b\x67\xd9\x46\xeb\x1f\x9f\x89\x88\x2b\x13\x6b\xe4\x00\x3d\x7c\x01\x7e\xe8\x0b\xfe\xc3\xcb\x61\xa9\xcf\xd2\x3f\x3e\x90\x26\xec\x50\xf4\xc0\x18\xe0\x08\xa9\x67\x62\x8e\x06\xdd\x5c\x73\xdc\x70\x78\xe9\x69\xe6\x70\xf1\xf7\x58\x80\x18\x7a\x70\xf2\x8d\x43\x0f\x1e\x3e\x88\x7a\xb0\x3a\xdd\xa0\x7a\x99\xa4\xd3\x22\xc9\x8b\x82\xcf\xc9\xaa\xa5\x37\xc0\xfa\x23\xed\xd6\x4b\xbd\xba\x63\xa7\x5f\xa6\x68\xb0\xa4\xf6\x7e\x97\xbd\x96\x3d\x71\x24\xd1\xc9\x1e\xb3\xd1\xea\xa9\x1e\x11\xdd\xe3\x62\x68\x6f\x5b\x1c\xc2\x2f\x5c\x1c\xd2\x3d\x7c\xb2\xa0\x73\x2d\xbe\x8d\xb0\xf3\x07\xab\xec\xdf\xfe\xdd\x57\xea\x02\xbd\x80\xe0\x1e\xbb\xc1\xbf\x08\x38\x1f\x0e\x4c\x7e\xa1\xef\x4c\x56\x4f\xbd\x1d\xdb\x69\xb0\x40\x15\x99\x45\x4c\xdf\x81\x03\x2d\x5e\xfc\x0e\x44\x57\x4b\x14\x44\xd9\xff\x96\x45\xd0\x5f\xba\x2b\x1d\x3f\x0f\x18\xa8\xec\x0e\x3b\x5f\xf0\x83\x05\x05\x4f\x01\xab\x8e\x7f\x75\x43\x7a\x97\x5e\x53\x22\xd1\x3b\xa0\xa9\xf6\x36\x9e\x0b\x81\xb5\x0d\x27\x67\xec\xdf\x9f\xbc\x9c\xc4\x97\x5f\x96\xd5\xb0\xb4\xfb\x82\x1b\xe4\xe8\xdf\xa0\xab\x3a\xa7\xef\x49\x36\xeb\x6d\x39\xb9\x00\xc1\x78\x31\x03\x51\xcd\xf7\x64\x38\x84\x64\x85\x77\x29\x3e\x25\xb4\xbf\xf0\x86\x4a\xbe\x99\xbe\x50\x74\x3a\xaf\xd8\xfb\xb1\x83\xe6\x9c\x7c\x2f\xb8\x41\x8e\xfe\x0d\xe2\x91\xfd\x1b\xe5\x1a\x7d\xc8\x50\x1e\xb8\x79\x8e\x1f\x33\xc8\xed\x67\x02\x3c\x62\xc1\x0f\xe0\xa2\xda\x3c\xa1\x89\x62\xbf\x82\xf3\xcd\x20\x12\xef\xeb\x8d\x64\xbd\x3f\xbf\x17\x66\x08\x8e\xf7\xc2\x04\xcd\x11\x69\x04\x7f\xd2\x77\xbf\x48\x48\x63\x37\xd8\x17\x81\x40\x55\xb2\xc0\xfb\x50\x3d\xac\x0e\x50\xd2\xcc\xb7\xe5\x17\x6a\xcd\x9c\xfc\x9b\xb2\x83\x57\xfd\xf4\x7f\xfe\x94\x9a\xfd\xc2\x80\x53\xab\x7f\x53\xab\xa9\x35\x3c\x9c\x90\x96\x00\x57\x29\xa7\xd6\x78\x1f\x90\x88\xe4\x09\x4d\x42\x51\x33\xfe\xf8\x44\xcb\x52\x39\xbd\x2f\x35\x10\x22\x97\x2f\x52\xcb\x64\xef\xc3\x52\x6a\xea\xa2\xf2\x22\x83\x60\xfe\xf9\x80\x32\x5d\x75\x97\xa0\xf9\x06\xd2\x5c\xb8\xe5\x07\xa8\x66\x6a\x39\xf1\x9d\x54\x06\x4a\x51\xf2\xc2\x24\x9c\x7f\x7e\x13\x6e\xc9\x0f\xb8\x75\x62\x4d\x2f\xa2\xba\xb3\x58\xea\x3b\xd7\xc2\xf7\x17\x73\x51\x79\x51\xcb\xc9\xa8\x6d\x87\xef\xcf\x65\x80\xcd\x7e\xe3\x45\x9d\x92\xa8\xdf\x54\x6a\x6a\xb7\x66\xa0\x46\x40\x97\xb2\x19\xd6\xca\xfc\x06\xef\x3b\xba\x06\x4e\xf8\x43\x39\xad\xe1\x0c\x0b\xfe\x9a\x05\x2e\x9a\x59\x68\x3d\x17\xdf\x48\x7e\x81\x1b\xa2\x1b\xd2\x0c\xbc\x09\x34\x7f\x42\x01\xe5\x67\x10\x0a\xe6\xd9\x0f\x26\xdf\xd8\x9b\x3a\x11\x75\x63\x47\xc2\x09\x35\x62\x96\x9c\x3e\xe3\xda\x21\x7f\x40\x3d\x90\x2e\x72\xa8\xdb\xdf\xb2\x50\x1f\x45\xf9\xbf\x59\xa9\x8b\xc4\x95\xea\xc2\x82\x1a\xfb\xe1\xe7\x44\xa3\xa6\xfe\xf7\x40\x4b\x65\x51\x7d\x67\x64\x40\x51\xfd\x94\x7f\xbe\x40\x91\x23\x63\xef\x4c\x8b\x6a\x68\x9e\xb8\xa0\xe6\xe2\x2e\xb9\x72\x21\xe3\x5c\x4a\x3a\xf1\x3c\x54\xcd\xff\x1e\xa8\x0b\x78\x0f\x0f\xe7\x7d\x40\xdd\xfc\x98\x7e\xf0\x20\x83\x20\x17\x77\x71\xfd\xf3\xa7\xd8\xbf\x95\x65\xf1\x9d\x75\x77\x32\x12\xc6\xa0\x81\x03\x94\x2b\x04\xce\x42\xd4\xd4\xa5\x18\x55\xf2\x5b\x2e\x7f\x15\x23\xbb\x2a\xe8\x3b\x09\xc4\x2c\x44\x21\xe3\x58\x59\x90\xd7\x84\xa8\xb4\x73\xfe\x80\x59\x28\x2a\x18\x0d\xa9\x93\x73\xda\x84\x59\xc8\x53\x8c\x53\x15\x92\x9c\x5f\xa8\x90\x82\x25\xa1\xce\x4a\xb6\xd6\xfd\x60\xb0\x4b\x4d\x0b\x3e\x52\xd9\x48\x88\xbc\x3f\xb9\xba\x7d\xcd\xc1\x2f\xac\x39\x08\x70\x95\x27\xd4\x78\xcb\x0a\xb2\x4e\x6c\x30\x1b\xb7\x5b\x57\xf1\x89\x5b\x6e\x16\xf5\x9a\x8d\x8c\xcf\x88\xdd\x88\x0f\xe2\x7c\x13\x4a\xbd\xec\x43\x8f\xe4\x40\xb9\x7a\x08\x1e\xbf\xe2\x17\x1e\x3e\xd0\x98\x1d\xc9\x7f\xbc\xb0\x4e\xa4\xf4\xd1\x18\x24\x2c\xa2\xfb\x73\x50\x88\x90\xce\x62\x52\xec\x31\x5d\x59\x62\x8f\xcf\x1f\x2b\xac\xda\x3d\x79\x22\x08\xd9\xf6\x8e\xf9\x49\x39\xc5\xce\x5f\xf3\x13\x64\x3e\xd8\xa9\x07\x24\xe3\xcb\x26\x2b\x27\x89\x9b\xcf\x12\x83\x92\xad\x17\x99\x27\x61\xe7\x83\x70\xf2\xce\xe1\x4f\x10\x49\xf4\x93\x61\x61\xb2\x60\x96\x59\xec\x64\xa6\x3a\x0b\x2f\x13\x16\xce\x62\x9f\x33\x54\xf9\x0f\xd9\xd7\x6b\x96\xf5\xcf\xb6\x16\x4e\x44\xf1\x1c\x8a\x31\x3f\x1b\xee\xae\x45\xa9\x24\xce\x8b\x5a\x70\x25\x72\x98\x1d\x8a\xd7\x92\x37\x3a\xcf\x8e\x40\xf6\x92\xf7\x4c\x27\xa2\x47\x42\x52\xda\xf9\x39\x20\x9f\x27\x5d\xeb\x27\xa2\x37\xbe\x89\xe5\xfd\x20\xd2\xe1\x6b\xcb\x82\x73\x44\xfa\xce\xef\xab\xe1\x1c\xb0\x4a\x24\xdd\xf4\x27\xfd\xf1\x93\x0c\xbc\x73\x00\x83\x93\x4c\x23\x73\x20\xcb\x53\x96\x12\x64\xc2\x21\xbf\x29\xab\xe8\x1c\x08\x3f\xcf\xba\x0a\xce\x81\x7d\xca\xba\xc1\x4e\xf8\x9d\x37\xa5\x63\x9d\xf0\x12\x0f\xae\x26\x37\xe1\x92\x1d\x92\x14\x12\x73\x40\x49\xac\x7a\x20\x93\xbe\xcb\x49\x4e\x1f\x13\x6e\xc5\x5d\xb7\xac\x09\xb7\xe2\x2e\xb1\x7d\xc2\xad\xb8\xa9\xac\xc9\xa4\x57\x71\x96\x93\xd0\x84\x57\x71\xcf\xdd\x1f\xa4\xef\xb7\x16\x71\x7e\x8c\xb2\xe7\xad\x6d\x98\x67\x60\x00\xee\xe1\x17\xea\x3f\x7f\x7a\xd1\x7e\x9d\x1f\x9f\xec\x4a\x1f\x34\xcf\x8f\x09\xf6\xb2\x8f\xd4\x3c\xbf\xfb\x56\x2f\xdd\xdf\x3f\xdf\xef\x9f\x09\xbd\xf8\xed\x01\x91\x06\xc3\x2b\x8c\x48\x7e\xb9\x49\xe6\x84\xd3\x71\xaf\xc9\xed\x2c\xa0\x5a\xfd\x80\xd5\x4a\x35\x81\x88\x24\xd9\x49\x20\x61\x95\xd0\x7d\xdd\x9b\x70\x49\xee\xd5\x0b\x88\x28\x13\xe2\x09\x47\x7a\x07\x7a\x02\x0f\x84\xd1\xbd\xcb\x70\x59\x0e\x49\x84\x6b\xd2\x67\x39\x25\xcf\x08\x1a\xe1\x24\x35\xd2\x84\x13\xf3\xf7\xc0\x7d\x40\x86\x96\xd5\x74\xc2\xab\x39\x24\x71\xc7\x09\xaf\xe6\x56\xcb\xdf\x54\x85\x9d\xf0\x78\xfe\x66\xa0\x35\xc3\xe5\xd9\x81\x1b\xf3\x84\x0c\x90\x44\xe8\xe6\x09\x19\x20\x25\x2f\x1b\x66\xb8\x24\x25\xc4\x3c\xe9\xa7\xa5\xdc\x6a\xf3\x4c\x3c\x98\xd1\xa3\xbc\x7c\xe0\x49\x4f\xf6\xa1\x61\x33\x61\x55\x05\x89\x4c\x58\x19\x1f\x33\x61\x95\x34\xb1\x4c\x58\x15\x81\x37\x13\x56\x4d\xc0\xcb\x84\x55\xd4\xc4\xa0\xba\x56\xa1\xc9\x09\x6f\xeb\xaf\x4f\x77\x41\x70\x64\x7f\x41\x91\x68\x68\xe6\x10\x35\xda\xcf\x17\x84\x46\xf3\xc4\x79\x74\x7d\x0e\x32\xa1\x91\x3d\x2d\x42\x23\xf9\x01\xa1\x31\xb4\xd6\x42\x68\x14\x75\x5a\x08\x8d\xe2\x37\x08\x8d\xa8\x3e\x0a\xa1\x61\x6c\x2d\x84\x46\x16\x88\xcb\xc2\x1c\x3f\x20\xed\x2b\x9a\x69\x21\x38\x7c\xe4\xe8\xc6\xfd\x83\x2e\x85\xd8\xd1\xfc\x80\xd8\x51\xdc\x29\xac\xfa\xe1\xa7\x0f\x66\xa0\x33\x04\xcb\xda\x7b\xc1\x98\x85\xf3\xe5\x32\x31\xcf\xca\xd5\x9a\x58\xd5\xb5\x5a\xbf\xc1\xd5\x8a\x17\xc0\x1d\x3c\xf8\x12\x3f\xe1\x0f\xfe\x8d\x22\x74\x81\xcf\x5b\x91\x66\x72\x9e\x95\xab\x8d\xfe\x84\x9b\xdf\xfc\x09\x57\x6b\xc4\x86\x80\xa4\x22\xcf\x13\x4e\xe4\xc1\x0e\x50\xf3\x44\x74\x71\x8e\xc6\x5a\x88\x4c\x49\xc9\x7a\x26\x5c\x59\x87\x61\xfe\xa2\x1a\x9f\x7c\xc2\x27\xb4\x52\x4d\xb1\x5b\xf3\x85\xe1\x5d\xa2\xec\x7c\x13\x58\x87\xa8\xe4\x3c\xc2\x3f\x7f\x74\x21\x9e\xb8\x65\x75\xa9\x46\x27\x2e\x59\xd2\x71\xcd\xb9\x12\x63\xe9\x27\xb3\xb9\xe8\x27\xb3\x3a\xe8\x67\x43\x5f\xfe\x18\x91\xcf\x5d\x3f\x51\x5a\xcb\x7d\xdd\xff\xfc\x31\x31\x9d\x07\xea\xf2\x27\xfd\xfc\x24\xf0\xe4\xae\xe7\x3f\x7f\x54\xd1\x69\xce\xc0\xaa\x5c\xfa\x89\x6f\xf5\x72\x60\xed\x17\xfd\xfc\xbe\xdd\x37\x8e\x89\x9b\x93\xea\x6c\x4f\xdc\x50\x14\xd5\x3a\x71\x41\x31\x49\xc7\xf5\x44\x96\xd3\x89\xcb\x89\x4a\x29\x4e\xdc\x4d\x54\xe2\x6f\xce\x8f\x26\x49\x49\x3c\x67\xf9\x7a\x16\x82\xcd\x82\x9e\x35\xc9\x0f\xef\x95\x93\x7f\x42\x3a\x57\xfe\xa4\x39\xe1\xda\xa4\xd3\x3b\xdf\xf4\xf5\xac\x69\xbc\x19\x80\xf6\xdb\xd8\x16\xbf\x8d\x1c\xb9\x04\x56\x98\xa8\x1c\xde\x77\x66\xd9\x30\x23\x2e\xd6\xc7\xb6\xe6\x86\xc9\xe2\x88\x61\xdf\x04\xc2\x44\xfa\x9b\x10\x77\x28\x54\x3c\x0e\x98\x63\xd3\xce\xfa\x18\x8f\x03\x79\x26\x15\xd1\xf5\x3d\x80\x0c\xb3\x75\x72\xf1\x60\x29\xff\xb6\xad\xca\xdf\x03\xfa\x5a\xe6\xbf\x08\x43\x8a\x07\xeb\xf2\xe7\xed\x44\x19\x0f\x14\x50\xff\x24\xd3\xb6\x1e\xa0\x86\x73\x3c\x76\x76\xe2\x78\xa0\x1c\x6e\x48\x5d\x6f\xc4\x40\x53\x65\xd9\x7d\xa0\x68\x50\x90\xa7\x7b\x3c\x58\xa1\xa5\xed\xac\x0a\xf1\x48\x9d\x0f\xba\x3e\x99\x5c\xe8\xd8\xa3\xac\x3c\xf5\xdb\x79\x3a\x1e\xe5\x58\x6f\xec\x4f\x0a\x78\x55\xde\x79\x15\xe2\x81\x7c\xd2\x1f\x88\x36\x28\x0a\x23\x0f\x92\x80\x55\xb7\x70\xb5\x01\x5e\x69\x5c\xde\x69\x34\xe3\x51\x5f\x7a\x16\xf5\x0d\x70\x24\xf9\x0a\x6d\xc7\x65\xc5\xa3\xd1\xe9\x6f\xdf\x9c\xe2\xc1\x8c\x26\xf2\xf2\x8b\x47\x07\x67\x96\xe3\x60\x3c\x3a\x0c\x40\xf2\x90\x8b\xc7\xa0\x95\x7d\xa7\xa5\x88\xc7\x80\x41\x50\xde\x69\xf1\x18\x4c\xfe\x14\xb4\x2f\x08\x1e\x0d\xf2\x67\x8b\xc7\xa2\xac\xbb\x5e\x5b\x3c\x4e\xe6\x7c\xde\x54\x31\x1e\xf0\x3f\x0f\x72\x0d\x8b\xc7\x85\x6c\x4a\x69\x17\x93\x88\x07\x9c\x32\x43\xda\x81\x14\xf1\x80\x51\x39\xc8\x49\x22\x1e\xcf\xda\xfd\xb1\xfb\x78\x58\x8a\x63\x73\xab\x78\xbc\x98\x87\x4c\x8b\xdf\x03\x0e\xab\x6d\x78\x99\x4a\x6a\xb3\xe2\x78\xcc\x42\x98\x6e\x74\x08\x2c\xbf\x2a\x8d\x7d\x0c\x91\x92\xca\x8e\xd3\x8f\x21\x82\x49\x4a\x67\x1f\x43\x64\x0a\xaf\x2d\x48\x7f\x0f\x2e\xbe\xd1\xf6\x03\xb8\x46\x4a\xdb\x1b\x03\x6a\xbf\x05\xe9\x87\x63\x88\xf0\xce\x93\x1a\x32\x86\x04\xe7\x85\xda\x17\x5d\x8e\x81\xc5\xa7\xa4\x37\x8c\x01\xb5\xa4\x82\x14\x8b\x31\xa4\x9b\x0f\xf2\x1e\x85\x65\x02\x5a\x5e\x76\x99\xef\xc1\xcb\xe2\x6c\x7b\xa6\x65\x4d\xac\xed\x37\x6a\xe6\x83\x0d\xb1\x80\x1c\xa3\x9f\xe4\xb6\x47\x41\x5e\xc4\xd0\xf2\xd8\x9f\x20\x3d\xde\xf7\x60\x03\xa8\xe3\x7a\x58\x77\xfe\xe3\x18\x18\x43\xdb\x4a\xdc\x8b\x43\x00\x61\xeb\xfa\x7d\x33\x6b\x48\xd9\xc4\x26\x3c\x0c\x1d\x28\x9b\x1c\x85\x85\x0d\x25\xef\x4f\x68\x9e\x6f\x25\x6f\x70\x3c\xb0\xac\xb4\x9d\xa9\x33\x86\x67\xf0\x8d\xe2\x07\x37\x1f\xec\x99\xd3\xc6\xdb\x76\x9a\xe8\x18\x1e\x20\x61\xdb\xc1\xf4\x31\xd0\x64\xd7\x76\x6a\x8f\x18\x5e\x56\xe6\x28\x02\xe9\x9b\x08\x1f\x4d\x0c\xac\x28\xb4\xd2\xf4\xa0\x71\x71\x9b\x04\x85\x09\xd7\xcc\x56\x16\x35\x8e\x31\x10\x5f\xf6\x3d\x26\x46\xd4\xcf\x0d\x43\xb4\x20\x26\x76\x5a\xfd\x00\x19\x44\x5a\xdd\xf4\x24\x56\xa6\x9f\xdc\xfa\xd8\x18\x2b\x9c\x4a\x5b\xdd\xa7\x34\x22\x91\x4a\x68\xbb\xaa\x6f\x8c\x4c\x4b\xd2\x76\xd2\xfb\x18\x07\xcc\xe8\x6d\x17\xb2\x8c\x91\xa1\x64\x6d\xb3\xb0\x18\xaf\xcc\xe0\xe6\x8d\x1e\x91\x1e\xe2\x6d\x17\xf9\x88\x91\xee\x8f\x32\x42\xc4\x08\xdf\xc5\xef\xc1\xda\x86\xb8\x8e\xed\x76\xd8\x8e\xf1\x65\x4c\xc6\xd6\x5b\xc5\x38\x91\x70\xf4\xd8\xa9\x2f\x63\x62\xd1\xef\xb6\x0b\x8d\xc6\x14\x88\x51\xdb\x65\xee\x7b\xc0\x6d\xd8\x47\x3f\x85\xc9\x34\xca\x1b\x1e\x29\xc1\x13\xac\xed\x50\x8e\x98\x58\x7f\x28\xef\xbc\x8d\x31\x25\xa6\xae\xdf\x91\xd6\xdf\x83\xf5\xc9\x5f\x58\x99\xbe\xb7\x39\xa7\xaa\x11\x9f\x95\xc9\xd9\x03\x9c\x7c\x10\xf5\x60\xf2\xc1\x5e\x57\x22\x5d\xd8\x45\xef\x62\x4a\x93\x9a\x95\xb8\x3f\x59\xcc\xa8\x75\x3f\xb8\xf8\x60\xf7\xc1\xa2\x29\xad\xed\x2d\x49\x99\x6e\x74\x4d\xb0\xc9\x1c\x65\x17\x1c\x89\xa9\x30\xf4\x72\xdb\x34\x62\x42\x55\x88\xd0\x76\x22\xf9\x98\x0a\xe1\xbb\xa3\xb3\x63\x62\x96\xf7\xd6\x05\xdf\x8a\x5b\x61\xdb\x79\xa4\xbe\x07\x74\x28\x1d\x7a\x83\xb4\xa5\x6b\xd3\x1a\x82\xa5\x5a\x17\xc4\x90\x7f\x34\xb4\x9d\xcb\x30\xa6\x06\xc6\x5a\x87\x66\xca\x9c\x8f\x75\xc7\x11\x7f\x0f\x56\xfe\xc4\x3d\xd3\xb6\x0a\x81\xef\xf3\x97\x90\xda\xec\x13\x1e\x34\x2c\x13\x8d\x75\x41\xbd\x13\x45\x77\x96\xa3\x98\x90\x8a\xe9\x7b\xb0\xfb\x38\x07\x57\xbb\x45\x80\x74\x43\xf5\xd4\x76\x62\x92\x98\x6e\xa8\xc0\x72\xd4\x6a\x6f\xec\x5c\xda\x21\xf3\x31\x3d\xa8\xf4\xdd\x76\x74\xe8\xf7\x00\x31\xf3\x5b\xb1\x14\xd3\x93\xf9\x86\x00\xf4\x10\xa5\x76\xce\x9e\x98\x1e\xca\x26\x43\x07\xe1\x21\x2d\x19\xda\x86\x09\xf7\x9d\xb6\x9d\x11\x63\x3e\x32\x0f\xd3\xc6\xea\x7c\xd0\x17\x66\x7b\xcf\xc4\x1c\xa0\x28\xea\xdb\x1c\x1a\x73\x60\xc9\xd6\x1d\x01\x13\x73\xc0\x5a\xfa\x36\x8c\xc7\x8c\xc2\xa1\xdf\x25\x66\xcd\x34\x27\xe8\x08\xfb\xf6\x93\x8e\x99\xb5\xbb\xc4\x36\x72\x65\x7d\xc7\xad\xb3\x8d\x99\x19\xb6\xfb\xd6\x65\xc6\xcc\x14\x74\x2a\xf9\x1e\x73\x67\x9a\xc7\x5d\xdf\x22\x66\x5e\x93\xfb\xb6\x85\xc7\x7c\xb1\xd4\xf4\x36\x3e\xc4\x7c\xb1\xec\xcd\xb6\x03\xc4\x4c\xff\xed\x2e\xda\x92\x1f\x24\x50\x4b\xdb\x49\x2b\xe6\xf7\x58\x36\x8f\xae\x07\x58\x6c\xf0\x03\x08\xcb\x7d\xe7\x86\x8c\xf9\x65\x5a\xd0\xb0\x71\x2e\xbf\x2c\x8e\x17\x34\xf5\xb9\xac\x65\x9b\x91\x94\x83\x75\xb8\x77\x7a\xb0\x58\x0e\x26\xce\xda\x39\xd3\x62\x09\xf0\x02\xef\x3b\xff\x57\x2c\x01\x09\xc4\xfb\x4e\xd5\x18\x4b\xb8\xb9\xfc\xa1\x4f\x58\x31\x76\xa7\x4d\x8c\x05\x65\xd6\xbf\x07\xbb\x8f\xc8\xc0\xef\x9d\xbf\x20\x16\x16\xa7\xea\x12\xb2\x4b\x66\x41\x99\x7d\xb3\x88\x25\x33\x39\xc4\x76\xba\x8d\xa5\x1c\xeb\x8d\xfd\x09\xea\xb1\x84\xbe\x7d\x2f\x62\x61\x1e\xfc\x2c\xb9\xbc\x34\x0a\xd9\xc2\x97\xd2\xb8\x96\x9d\x42\x20\x96\x06\xb1\xa2\xef\xe0\xfd\x58\x98\x53\x6b\xd7\x81\x8d\x65\x50\x98\xd9\x37\x94\xef\x01\x15\xc6\x5b\xfa\x2d\x2b\xed\xc5\xbe\x17\xc7\x82\x60\xde\x90\x76\x4c\x7a\x2c\x27\xd3\x36\xed\x6c\xac\xdf\x03\x7e\xb2\x74\x13\xb1\x9c\x4c\x7b\xb8\xd3\xb1\xc6\xc2\xe0\xa1\xae\x63\x5c\x6e\x90\xd7\xbe\x23\x04\x63\xb9\x41\x70\xfa\x56\x18\xc7\xb2\xa4\x88\x6d\xf8\x8c\xe5\x25\x8c\x93\x56\xff\x12\x4d\x25\x96\x97\x17\xc2\x4b\x4f\x9a\xe9\xcb\x12\xe3\x5b\xd1\x10\xcb\x7b\xaf\x37\xf6\xd4\x5f\x66\x9a\xdc\xda\x9c\x58\xde\x77\x3d\xd8\x9d\x4e\xe6\x62\xde\xce\xf0\xb1\xe0\xfa\xf9\x3d\x88\x7f\xc1\xbe\xca\x24\x38\xb7\xbe\x24\x96\x09\xd9\xa7\x6f\xbd\x62\x2c\x93\x25\xe2\xb6\x96\x2a\xd6\xe3\xe0\x00\x9b\x1a\xd5\x03\x76\xcf\xbe\xf5\x6d\xb1\x1e\xcc\x54\xb3\x5d\xf7\x62\x3d\x50\x81\xb8\x6f\x4f\x8b\x58\x23\xd0\x3e\xed\xf4\xcb\xb1\xc6\xca\x6b\xe5\xbe\x8f\xd5\xd8\xd8\x47\xd7\x27\xac\xb2\xb4\xbd\x1e\x63\x4d\x79\xd5\x0c\xde\x7d\xb0\x32\x5d\xdf\x2a\xb9\x58\x51\xba\x21\xf4\xed\x25\x13\x6b\xe5\x65\x73\xbb\x0b\xc5\x8a\x54\xd7\xa1\xef\xcc\x8b\xb1\x76\xa6\x65\xcf\x5a\xdc\x4a\xd8\xb5\xed\xd7\xb1\x0e\x6a\xdc\xaa\x1f\x90\xfa\xe4\xb2\xfb\x80\xda\x3f\xe4\x9d\x0e\x3b\xd6\xb1\x3a\x15\x80\x4e\x9e\xd8\x2c\x00\x2d\x7d\xda\x2e\x97\x14\xeb\x89\x3a\x9b\x7d\xa7\x49\x8e\x75\x05\xfc\x6f\x9b\x5b\xac\x27\xf9\xd9\xa1\x37\x18\xdb\xd1\xf2\xc6\xea\x7a\xb3\x0a\xe9\x2e\x7a\x17\xeb\x4d\x43\x52\xf4\x03\x4e\x6c\x47\x7b\xc4\xfa\x92\x17\x1d\xda\x86\x85\xa2\x65\x5f\x59\x2a\xed\x5d\x5d\x32\x7a\x9d\x08\x4a\xea\xbb\x5c\x5b\x6c\xc7\x64\xfd\xbf\x7d\x54\x5a\x60\xbe\xcc\xad\xf0\x8f\x2d\x24\x56\x7e\xd8\xac\xb8\x51\x44\xea\xbb\xd6\xf2\xf7\xe0\xe2\x83\x63\x3f\x20\x2f\xaa\x9b\x3e\x35\x54\x04\x0c\xbd\xee\xb3\xf3\x5d\x80\xf8\x60\x77\x5a\x99\x34\xb3\x6e\x4c\x6e\x15\x9e\x5f\x7d\x2b\x9b\x62\x63\x95\x9b\x5e\xb7\x2c\xd8\x58\x96\x43\x85\x06\x62\xab\xa8\x9b\xd5\xb7\x1b\x48\x6c\x8d\x6c\x62\xeb\x82\x62\x5b\xb9\xd0\x77\x85\xf6\xd8\x90\x74\xfb\x7b\xb0\x80\xdc\x46\xe7\xb0\x5b\xfe\x6b\xc8\x5f\xf4\x09\xba\x1b\x40\x67\xe7\x4c\xb7\x30\xd7\x2e\xd6\x7c\xd8\x8a\xaf\xef\x01\x86\xdd\xf9\xbf\x62\x63\x28\xa0\x6c\x0c\xb1\xdd\x89\x71\xd8\x82\xc7\x0d\x29\x5e\x81\xb8\xb1\xc1\x4b\x38\x1e\xbb\xb0\x59\x6c\x0f\x52\x19\xcb\xd1\x2d\xb6\x37\xac\x07\xfb\x93\xc9\xeb\xf9\x56\x32\xc6\x4e\xed\x4f\xdf\x19\x41\x62\x3f\x50\x81\xb4\xb7\xbd\x96\x8f\xec\x02\x84\x1b\xa6\x3d\xb2\x18\xca\xae\xf5\x1f\x7b\x64\x86\xba\xb6\x6f\x24\x1d\x15\x40\x83\x52\x80\xc7\x9e\x49\x61\x76\xad\xf8\xd8\x59\xe1\xaf\xb7\x7d\x45\xe9\x85\x45\x7d\x25\x64\xf7\xfa\x10\x1e\x1b\x84\x1d\xc5\x03\xbe\x07\xfb\x93\x95\x6a\x6c\xa7\xb9\xff\x1e\xb0\x32\xdc\x46\xba\x3e\x56\xa5\xe0\xa0\x4f\x7a\x63\x32\xcf\xa4\x07\xac\xa4\xb5\x71\xac\xaf\x83\x2c\x79\xb8\x9f\xbb\xa0\xb5\xde\xc8\x2c\xdf\xb1\x79\x60\x3f\x57\xb1\x60\x2d\xff\x64\x1d\x94\x9d\x87\x3b\xf6\x93\x1c\x7f\xa7\xca\x8e\xfd\xe4\x31\x95\xc4\xdc\x17\x47\xeb\x5b\x36\xe9\x0c\x1d\xed\x12\x6e\x3b\xa3\x13\xbb\xe4\xe1\x8e\xa3\xde\xb6\x76\x34\xf6\x87\x7b\xbd\x73\x4f\xc6\xfe\xac\x79\x6d\xd1\xa4\x3f\xab\x36\xe8\xa6\xc0\xfd\x0d\x0b\x1c\x55\x0f\x38\x48\xd7\x03\x66\xe1\xdf\x4a\xe8\xd8\xdf\xce\xb5\x6d\xc6\xda\xdf\x97\x9d\x0e\x75\x8a\x84\xc1\xbb\xd2\x7b\xec\x73\x55\xc5\x1c\xed\x2f\xd8\x57\x5f\xc4\x67\xa7\xb0\x8a\x23\x12\xa7\x77\xb2\x9f\x38\xe2\xb5\xf2\xfa\x2f\xf8\x8f\x3c\xf8\xc6\xd6\xb9\x8c\x72\x33\x1b\xcb\xde\xb2\x55\xe0\x27\xed\x52\xd9\x91\x95\x2e\x42\xdf\x15\x7f\x22\x6b\x2c\x84\xbe\xa3\xc7\xe3\x68\x85\x6f\x6c\xea\xcc\x8c\x97\xa1\x4b\x20\x1f\xe7\x0a\x49\xda\x27\x78\x3c\xb4\x0f\x35\xcd\xf4\x79\x18\x0a\x13\x77\x1f\xf4\x54\x1d\xdb\xc1\x28\x8e\x97\x41\x1e\x69\x93\xeb\xf1\x66\x7a\x40\x6f\x12\x37\xde\xbe\xe2\x58\x77\xa7\x74\xb5\x1b\xdb\xc3\x24\xd2\x6f\x2d\x8c\xed\x88\x11\xc7\xbb\xd2\x8c\x6c\x75\xc8\x98\x37\x23\x5d\x9b\x1e\x3c\xed\xdf\x1e\x9c\x47\xe0\x28\x5b\xc2\x3a\x8f\x48\x6f\xf0\x8d\x6d\xe7\xd1\x57\x18\x45\xde\x0f\xe6\xf2\xbc\x5f\xf0\x38\xc3\x58\xfe\xe2\xbb\x8f\x78\x51\x78\xde\x64\xf2\x64\xa9\xe9\x21\x0d\xe4\x99\x19\x17\xb8\x4b\xe3\xc4\xb3\x40\x8e\x1b\xbb\x6c\x4b\x3c\xeb\x72\x25\xdb\xe2\xd2\x59\xe1\x70\x75\xec\x48\xf5\x78\xd6\x6b\xbd\xb1\x3b\x1d\x2f\x5d\x14\x36\x79\xba\x50\xc7\x21\xa8\x78\x45\xbc\x1a\x19\xfe\xce\x20\xfe\x3d\x20\x21\xdd\x37\xeb\xab\x2d\x9f\x9c\xe1\x37\xa8\xc4\xdd\x02\xf8\xd5\x10\x24\x72\xec\xbc\x67\xf1\x42\xc2\xff\x4f\xae\xcd\x7a\x40\x4d\xe8\x3e\x8f\x17\x12\xfa\xc7\x43\x6b\xb9\x5a\xa7\xc2\x64\x1f\xe1\x0b\x29\xf5\x43\xde\x55\x1b\xbf\x07\xbc\xf4\x6d\xc4\xbd\x5a\x67\xe1\x8e\xa8\x37\x06\x59\xcf\xa6\x68\x17\xb2\xcd\xc7\x63\x57\x96\xfc\x1e\xc0\x51\x27\x78\xf9\x17\xed\x76\x4d\x7d\xa0\xe8\xf3\xb1\x13\xe3\x7e\x0f\x26\xc5\x0a\x4d\x8c\xce\x96\x3b\x23\xe8\xf7\xa0\xb3\xd0\xa2\xde\xa0\xe7\xa1\x8c\x06\x17\x72\x6a\xc7\x43\xb4\xe5\x62\x42\xeb\x63\xe7\x79\xfa\x1e\x9c\x8c\x12\x5f\x50\x7f\x0a\xad\xba\x7d\x8b\x59\x6f\x6c\xd4\xa5\x6f\x92\xff\x16\x9a\xe9\x44\x37\x5f\xd4\xb8\x09\x79\xc7\x35\xc4\xc9\xec\xe1\x45\xba\xe3\xc9\xcc\xdd\xd2\x91\xcc\x4e\x67\x86\x6d\x54\xf9\x1e\x74\xbc\xd0\xf4\xfb\xa4\xa2\x58\x5f\x2c\xd1\xb6\xfb\x41\xa7\xd2\x5b\x9f\xc4\xfb\xdf\x54\xeb\xb3\xd3\xb8\xbf\x6d\x55\xdf\x03\x52\xa0\x7d\xd0\x27\x72\x3e\x7f\xd3\x88\xfb\x01\xcd\xbc\xd2\xbb\xcc\x4e\x4b\xa8\xee\xf7\xb3\x57\xee\x5b\xd4\x1b\x10\x07\x53\x4f\xea\x03\xee\x51\xcd\x33\xff\xc4\x90\xd6\x92\x7e\x33\x9f\xa4\x24\xcc\xd9\x07\xd7\x1a\x35\xc6\xb9\xa6\xa5\x4f\xe0\xf0\x9c\xb6\x3b\x4a\x9c\xfd\xe2\x3c\xab\x16\x7f\xf1\xbc\x45\xad\x15\x31\x19\xd2\x78\x4f\xe4\xf5\xfd\x51\xd0\x4d\x24\xf6\x6d\xdb\x50\x1a\x27\xf3\xf6\x66\xd9\x72\x66\x5f\xf1\x13\xd5\x6f\x60\x9e\xdb\x9c\xf7\x3d\x00\xf3\xf3\x0b\x48\x11\x98\x24\xa3\xcd\x41\xaf\x19\x29\x01\xe7\x58\x86\xb0\x8d\xd3\x73\x1c\x74\xff\x11\xf4\xc6\xda\x78\x4d\x9c\x19\x61\x7b\xfa\x77\x57\xc0\xf1\xbf\x60\x5b\x13\xf9\x60\xbf\xde\xf7\x04\xc7\x72\x48\xd8\x02\xce\x1c\x74\x40\x90\x4e\x6c\x0e\x1a\x90\x75\x2e\xe7\x80\x51\x23\xe9\xee\xbc\x7c\x85\xf2\xe1\x35\x3c\xf4\x1b\xab\x9a\x21\x13\x2d\xec\xc8\xa1\x38\xc7\x4a\xe7\x5f\xff\xf7\xee\x8b\xff\x3a\xff\xe3\xff\x7d\xf1\xfa\xf7\xc5\xf1\xcf\x9f\xf5\x2f\xd4\xca\xfb\x79\x79\xf4\xbc\xa1\xec\xdc\x6e\xf8\x2e\xc9\xfb\xdf\x0f\xc2\x87\x3e\xf9\xf0\x62\xff\x0b\x8f\xaf\xa6\x96\xdb\x2d\xcc\x88\xb8\x5b\x6e\x0f\x8f\xf4\x9b\xdb\x7a\x7b\x1c\x9f\x34\xbc\xfe\xa5\xc9\xed\xd8\x2d\xcf\x70\x0b\x65\xe8\xdd\xf2\xba\x37\xe6\xe6\x4a\x6a\x71\x6f\x93\x09\xea\x77\xcb\x74\x6f\xc8\xa3\xb0\xed\xe7\x47\xf8\x04\x91\xfd\xef\x60\xb2\xf4\x3d\xef\x58\xb5\xd6\xc8\x68\x42\xb9\x8d\x1f\xd1\xb3\x88\xc0\x6b\x3b\xa7\x7e\x04\xcc\x6d\xe8\x53\x75\x78\x8e\x74\x08\xb2\xe9\x60\xd1\x5a\xb5\x54\xb7\x80\xf2\x6c\x58\xa4\xa0\x39\x26\x7a\x26\x2b\xdb\xff\x91\xc2\xe3\xb6\x97\x6d\x51\x6d\x53\x6d\x4c\x18\xd5\xb5\xc3\x29\x9d\x6a\x83\xfb\x4f\x51\xae\xfc\x23\x7d\xf4\x64\xff\xbb\x2a\x0f\xb9\xcd\x73\x41\xe5\xc2\x43\x51\x13\x47\x1a\x5e\x1b\xb4\x2c\x8a\x5a\x3a\xd2\x87\x45\xfb\xdf\x6f\x09\x87\xbf\x3a\x6f\x37\x81\x21\xc9\x19\xff\x48\x97\x7b\x84\xa4\x2c\x3f\xf0\x23\xdd\xee\x11\xf1\x64\xf2\xf5\x3c\x60\x2a\xd8\xff\x82\x3d\xc9\x75\xfe\x80\xae\x61\xff\x7b\xb3\xad\xa9\xed\x75\x1b\x67\xb2\xbd\x3a\x0e\x5c\x5b\xf7\xbf\x05\xc3\x0d\x35\x69\xe3\x50\xe7\x3d\x28\x94\xe6\x40\x9d\xf7\xf5\x2f\xcc\xc1\xaa\xf9\x79\xa0\x38\xfa\xfe\x97\x13\xd9\x5e\x64\x07\xaa\x98\xef\x7f\x39\x91\xed\x05\x14\xde\xb4\xdb\xc2\xcb\x9a\xef\x8a\xf8\x88\x3e\xe7\xf1\x80\xbb\xf9\xf6\xea\x89\x47\x8a\x6a\x81\xbf\xc9\xf6\x54\x8c\x47\x1a\x6e\x39\xe1\x66\xb0\x5b\x72\x53\x0b\xbc\xa8\xaa\xea\x20\xc5\xa3\x65\xb5\xb5\xf1\xcf\x9f\x91\xdc\xd4\x3d\x89\x8e\xa6\xed\x79\x16\x43\xd9\x7b\x16\x43\xc9\xf8\xaa\xa8\xa9\xba\xe9\xfc\xe7\xcf\x68\xdd\x4d\x97\x9b\x5e\x7c\x15\x76\x53\xd5\x58\x01\xe9\x21\x8b\x3b\xac\xa7\x9b\xae\x7f\xfe\x74\x45\x72\xc6\xd0\xfc\xd5\x37\xf9\xae\x08\xcc\x18\x9a\xbf\x6a\xf8\x6a\x9f\xea\x08\xc1\x77\xff\xcb\x18\x6c\xb5\x78\xee\xf0\x11\x8e\xca\xa9\x1e\xc3\xe8\x6e\x1b\x6c\xd3\x60\xb7\x80\x18\x3e\xba\xd8\x95\xf7\x2a\xc6\xb8\x49\x48\x8c\x91\x6e\x4e\xdb\xa5\x30\xc6\xd8\xdc\x86\xc8\x11\xb7\x5c\x6e\x21\xf3\xdd\x2d\x55\x43\x45\x8a\xb4\xe9\xa7\xad\xba\x0d\x55\x59\x83\x5a\x4e\xb7\x5c\x5f\x7f\x69\xb7\x34\xe1\x53\x84\x78\x12\xe5\x1c\x1f\x63\x73\x7f\xcc\xce\x50\x0e\x8d\xd5\xfd\x1d\x52\x7d\x6d\x1f\xba\x18\xbb\x67\x08\xc5\x4b\x91\x63\x75\x84\x0a\x71\xff\x0b\xd7\x70\xcd\xa3\x7b\x86\xd0\xea\x97\xbc\x49\x63\x8c\x8f\xdb\x20\x9b\x94\x26\x14\x48\x87\xe0\x0b\xba\xfb\x7d\xb7\x37\x3a\x45\x9d\x88\x14\xcf\x7f\xfe\x28\x42\x2b\xa6\xf1\xa8\x05\x41\x6a\x51\x55\xe0\xa2\x29\x5c\x4c\x70\xa4\x89\x2a\x23\x16\xd3\xd9\xdc\xf6\x21\x5c\xf0\x60\xe7\xe5\xa6\x07\x4d\xea\xf1\x12\xc2\x81\x0e\x86\xaa\x1c\xbf\x31\x5d\xaf\xda\x60\x18\xad\xca\x61\x1b\xb3\x0f\x45\x46\x29\x0c\x95\x97\x8f\xd9\xc7\x36\x77\xf8\x82\xe9\x28\x65\x11\xf6\x88\x9b\x76\x57\xe6\xd4\x98\x45\xd7\x63\x1e\x0c\xc7\xda\xdc\x38\xe6\x71\xab\xed\xfa\x70\x58\x81\x51\x31\x5f\xda\xb5\x8c\xab\xfa\x21\xef\xbe\x98\x1f\xcf\x11\x2c\xd2\xe5\xdf\x63\x7e\x05\x92\x0c\x39\xe7\x50\x56\x9b\x98\x67\x71\x1b\x84\x0c\x05\x89\xc7\x72\xa8\xcf\x82\xdc\xf2\x79\xbb\x85\xc5\x52\xb5\x71\xa5\xbe\xdf\xb1\xde\x44\x3f\x96\xa6\xc5\x95\x0f\x5a\x5d\x19\x69\x63\xe9\x6e\xfa\xa0\xd3\x15\x92\x18\x61\x71\xdd\xff\x16\x74\xb8\xa7\x58\xbc\x34\x16\x53\xaf\xca\x36\x1e\x51\x86\x7c\xff\x8b\xc1\xb4\x35\xd5\xb3\xaf\x07\x9a\xb4\xe8\x2a\x06\x13\x2b\x54\x39\x55\x89\xba\x23\xaa\x90\xef\x7f\x1f\x90\xb9\x3d\xc7\x5a\xb5\xa3\x15\x17\xaa\xa8\xd0\xe5\x58\x7d\x7e\x51\x37\xf9\xc3\xad\x3d\xc9\xe6\xf3\xdb\x1a\x80\xb5\x13\x16\x44\xd4\x1a\xd8\xff\x42\x92\x53\x72\xd6\x38\xa6\x8e\x1b\x32\x7b\x7f\x6d\x1b\xc8\x97\x8f\xdb\x05\x1f\xc4\xaf\x89\x92\x2b\xe5\xd4\xff\x9d\xe8\x1a\x91\xfa\x70\xff\x5b\x58\x15\x78\xaf\xfd\x32\x31\x41\xde\xc0\x8f\xb6\xee\x05\xbe\x5d\x70\x79\x91\x90\x20\xa9\xc0\x77\x7c\x25\xdd\xc6\x97\x8e\xfc\xaa\xe2\x1b\x5f\x1f\xac\xf7\xa6\xd1\x61\xbb\x2d\x46\x44\x96\xed\x7f\xcb\x3f\x7f\xb2\x12\x4f\x46\x44\x77\xed\x7f\xe3\x3f\x7f\x72\xd9\xfe\xdd\x71\x5e\x53\x4d\x4c\xcc\xbb\x65\x80\x38\x1f\x7f\xf5\xc4\xdf\x80\xa7\x08\xfb\xce\xfe\xb7\xfc\x86\x99\xa4\x43\x98\x92\x8e\x4f\x9a\x91\xff\x7b\x3a\x04\xe6\x74\x7c\x60\xde\xae\x21\xdf\xcf\xae\x96\x10\x7e\x68\x5a\x3a\xb4\xa8\x74\x7c\x8b\xaa\x5b\x66\x48\x87\xd0\x2e\xd1\x52\x54\x05\x8a\x74\x84\x9f\xfe\x06\xe9\xff\xd8\x6d\x29\xa9\x0d\x48\x12\x15\x08\x9c\x8e\x1c\xd4\x36\x10\x8e\xa0\x79\x0c\xcf\xe3\xe3\xa7\x4d\xa5\xbe\xd3\x31\x86\x9b\x90\x4c\x53\x8e\xe8\xe9\x18\x97\xdb\xee\x7f\xfe\xd4\x2c\x60\x88\x58\xa7\xe3\x23\xd6\xdb\x71\xe6\x48\xbe\xdd\x24\xdc\x13\x94\x01\x3a\x1d\xb3\xb9\xe5\x04\x47\xd6\x47\xd3\xdd\x4d\x74\xb7\xf6\x3e\x59\x30\x48\x01\x7e\x72\x55\x99\x77\x53\x98\x6e\xc3\xf5\xa2\x2a\xaf\x7f\x0a\x3a\x30\x29\x4c\x7e\xb7\xa9\x52\x8a\x92\xe4\x52\x84\x66\xfa\x50\x50\x57\x8a\xf1\x74\xdb\xfc\x48\xee\x3e\xd6\x29\x26\xad\x2c\x22\x7d\x57\x0d\x6a\x92\xbc\x99\xe2\x27\x50\x75\x45\x61\xa6\x58\x6e\x37\x81\x50\x2b\xc7\x7e\x8a\xdd\x13\x81\xda\xea\x50\xbd\xcd\x64\xe6\x9b\x22\x7c\x91\x0e\x23\x29\xf4\xb9\xfb\x5f\x48\xee\xb9\x6b\x01\x67\x76\x5b\xc7\x2c\x37\xbc\xe2\xe5\x05\x5c\x6b\x2a\x5a\xc1\xe3\x2e\x41\xfb\x0f\x05\xee\x27\x5f\xab\x12\xaf\x55\x41\x57\xa4\x94\x24\xd6\xa7\x04\x87\xd3\xa0\xf2\x2c\x29\x85\xd3\x6d\xa8\x63\xa9\xf2\x15\xc9\xd7\xa7\x94\x70\xef\x0f\x2a\xa8\x90\x52\xec\x6e\x1b\x68\xdb\x7c\x2f\xa5\xe8\xf1\x10\x30\x12\x94\xb1\x3e\x25\x11\xd0\x94\x70\x36\x82\xf2\x91\xa7\x94\xfc\x5d\xe6\x77\xc2\x95\x94\x93\xdb\x2a\xdb\xb4\x86\x7c\xb9\xed\x46\x9b\xb6\x2f\x65\xaf\xa1\xb0\xcf\xac\x3e\x4b\x71\x1b\xfb\xdc\xdc\x28\xe1\xde\xb7\xff\x85\xa0\xb0\x6f\xc5\xc9\x37\xc0\x94\x3a\x84\x99\xa1\x95\x77\xaf\xe0\x43\x88\x56\x0d\x30\xc9\x09\x09\xa2\x53\xab\x87\x3a\x34\x3a\xa4\xf3\xe3\xa5\xca\x34\x90\xd2\xa3\xf3\x98\xa0\x8a\x0c\x2a\x9a\x98\x8a\x94\x17\xa9\x30\x83\xae\x92\xe1\x25\xd4\xa2\xdd\xff\xd2\xaf\x70\xdf\x37\xe9\x41\xb2\xff\x2d\xd4\x48\xd5\xdd\x16\x93\xda\xe0\x65\x34\x94\xf5\x22\xbf\x71\xaa\x0d\xdb\x9a\x95\x0a\x39\xc3\xfc\xba\xff\x0d\x6c\x8b\xbb\xad\x79\xbc\xf6\x89\xde\x41\xb9\x39\x32\x52\x1d\xac\x7f\xbf\x03\x23\xf7\xec\xef\xf7\xe5\x26\x86\xe3\x2c\xe2\x90\xa7\x36\x3c\x4f\xd8\xd2\x83\xf2\x9a\x64\x84\x4e\xee\x7f\x99\x75\x72\x5f\x2b\x33\xa2\x26\xf7\xbf\xf0\x08\x52\xfc\x45\x9e\x97\xfb\xbc\x90\xd2\x55\x82\x5c\x9e\xd2\xdf\xe4\x79\x07\xb6\x95\xdd\xf6\x6a\x75\x70\x72\xcf\x92\x7a\x8b\xf9\x54\x39\x0e\x02\x65\x2b\x3b\x8a\xef\xa3\x05\xec\x22\x06\xf1\x8f\x72\x94\xa0\x36\x14\x42\x0e\x2a\x50\x5d\x8e\x9e\xd4\xf6\x5d\x18\x62\x50\x5d\xe6\x72\x0c\xf7\x39\xe8\x58\xbe\xc5\xec\x72\x8c\xa9\xb6\x93\x4b\xc8\x6a\x3b\xdd\x86\xa4\x0d\x2e\xba\x55\x8e\xeb\x74\xdb\xf2\x4d\xd7\x5c\xee\xa1\xb6\xfb\xfc\x96\xee\xa6\xe7\x56\xd3\x43\x68\x6e\x56\x5c\x82\x48\x55\x09\x1f\xa9\xb2\x80\x51\xc2\x71\xbb\x09\xc6\x9c\xed\xb4\x74\x94\x10\xdc\x16\xd8\xe5\x56\x33\x94\xa0\x1b\x61\x09\x08\x90\x0c\xaa\xe6\x5a\x42\xf4\x77\x91\xdf\x6d\x99\xbf\x84\xa4\x95\x87\x0f\x83\xb3\xe4\xa7\x82\xeb\xf4\xfe\xf7\x5b\x9c\xc4\xd1\x12\x46\x51\xd3\xc7\xa9\xa5\x96\x3f\xe8\x04\xb5\xff\xbd\xbe\xa6\xa4\xb1\x2e\x2f\xfb\x8a\x68\x52\x87\x8f\x36\x35\x3c\x3c\x75\xfb\x84\x94\x68\x68\x31\x2c\x22\x2b\xb1\x54\x31\xb7\x2b\x91\x99\xd8\xa4\x25\x2c\x51\x67\x84\x5e\x55\x59\x62\x7d\x81\xb9\x61\xff\xcb\x80\xe9\x1d\x2c\x5a\xa2\xd7\x16\x51\xa5\x38\x88\xb9\x96\x28\x45\x55\x89\x27\x8a\xbd\x79\x96\xba\xea\x94\x88\xa2\xbe\x21\x1e\xe5\xaf\x04\xdc\x12\x8d\x61\x91\x18\xa6\xfc\x1a\x25\x4e\xcf\xf4\x93\x1e\xe4\xaf\x78\x94\x74\xe8\xb3\x04\x95\x77\x56\x60\x54\x49\x46\x07\x30\xa7\x18\xbc\x43\x49\x2a\x82\x92\x90\x01\x3e\x28\x29\x4f\x01\xa5\xdf\xff\x72\x15\x5b\xc7\x51\x92\x74\x15\x25\xb1\x4a\xa0\xf2\x3c\x16\x38\xde\xee\x7f\x71\x98\x75\x1b\x2a\xd9\xe8\x97\x3f\xf4\xcb\x4a\x17\x5a\xb2\x78\x61\xa1\xde\x6c\xe8\x2e\x57\xb2\x2e\x6c\x05\x5e\xf0\x31\x78\xff\xb2\xd4\xab\x25\xbf\x1f\xfe\x49\xf7\x54\x7c\x05\x2c\x85\x91\x01\x86\x4a\xf1\xe1\x2a\x30\x5a\x85\xb8\x03\xe7\x4a\x91\xf6\xa9\x14\x64\xdf\x54\xf8\x70\x81\xb3\xed\xfe\x17\xc9\xb0\x15\x0b\x56\x8a\xd8\x53\x29\x0f\x01\xb6\x25\x8b\x52\x25\x75\x94\x0a\x13\x44\x56\x4a\xad\x82\x68\x92\xfd\x2f\x10\x57\xb5\x5d\x4a\x15\xa7\x2f\x15\xb9\x4c\x83\xee\x0b\xa5\x56\x7f\x57\x01\x68\xb1\x99\x52\x9b\xdb\x60\xb2\xce\xca\x43\x55\xaa\x31\xb7\xc2\x13\x3d\xe7\xad\x99\x2d\xd5\xd0\xac\xa8\x64\x11\x74\x13\x2c\x75\x0a\x2c\x75\x32\xd2\x60\x33\x85\xd2\x7c\x30\x1b\x32\x0f\x07\x29\x89\x4b\x93\x54\x55\x1a\x02\x23\x86\x4a\xac\x97\x16\xb5\xeb\x2d\x82\x1d\x2a\x67\x64\x69\xba\x39\x94\x06\x47\xfd\xac\x70\xe7\xd2\x52\x73\x5b\xff\xe7\x4f\x56\xce\x8a\xd2\xd2\xe3\x26\x90\x4d\x95\xca\x28\x2d\x6b\x79\x34\x10\x3b\x31\x52\x41\x75\xf7\xfd\x2f\xa3\x44\xb6\x30\x56\xda\x70\x9f\xcc\x47\xa4\x80\xfa\xd2\x8c\xef\xa8\x41\x9d\xf3\x66\xbf\xa5\x4d\x0f\x07\x13\x44\x56\x71\xe0\xd2\x7d\xbc\x3a\x8f\x97\x72\xa8\x95\x2e\x51\xba\xf4\xce\x70\x94\x7d\x5d\x29\xbd\x8b\x4a\x77\x1a\xdf\x95\x7c\xa3\x74\x89\xd9\xa5\x9f\xdc\x05\x9d\x13\x54\x94\xdc\xff\x32\xd6\x44\x1c\xa3\xcf\xcb\x6d\x0f\xee\xab\x1b\x9a\x43\x97\xc8\x32\x56\xf0\xc8\x8e\x65\x2c\x28\xcf\xb8\xff\x25\x02\x6e\x89\xbf\x0c\x9f\xf4\x81\x93\xbe\x5d\xcd\x8e\x02\x5d\xc1\xfe\xb7\xf2\xb3\x8d\xd3\xa3\xb9\x8d\xa1\x17\x8a\x58\x2f\x43\x46\xa0\x82\x9a\x67\x59\xb1\xe7\x65\xbc\x5a\xdc\x78\x89\x2a\x12\x3c\x4e\x0f\x87\x58\xea\x5c\x84\x0e\x88\x28\xde\xff\x16\x66\x35\xdb\xfb\x73\x5a\x46\x38\x4f\x06\x92\xec\xd0\xd2\x72\xea\xae\x56\x50\xec\x24\x17\x1d\xe6\xcb\x04\x02\xa5\x1d\xb2\x0a\x91\x96\xab\x89\x06\x5c\x74\xba\x55\xee\x87\x72\xe9\xd6\x58\x50\x2b\x20\x7e\xe2\xd1\x6e\x3b\x45\xf7\x99\xa1\x3f\x28\xe1\x51\xb9\xcc\x47\xe1\xfd\xfa\xb5\x6d\x58\x5e\x86\xd7\xf5\x30\x67\xdb\x96\xf6\xcb\x7d\x08\xfb\x90\xf8\x3b\x2b\xe0\xb2\xdc\x49\xc3\x21\x63\x73\x56\x00\x65\x41\x0a\xdf\xfd\xef\x8a\xd8\xd1\x67\x12\x6c\xcb\x4d\xc1\x56\xea\x8b\x72\x4f\xcd\x12\xd9\x6e\x63\x30\x12\x21\xb7\xe7\xfa\x17\x59\x3d\x43\xde\x3a\x87\xf2\x34\xad\x00\xb9\x30\x63\x50\x15\x9c\x82\xec\x88\xfb\xdf\xef\xe2\xe1\xc5\xbd\x52\x62\x14\x3a\xdf\x64\xa5\x35\x28\xaf\x6c\x30\x05\xae\xe1\x59\x5a\xe0\xf2\x16\xed\xc1\x5b\xb8\x07\x3a\xc9\x6f\xd5\x09\x79\x69\xc2\x2d\xfb\x32\x53\x5e\x73\xa7\xb7\x32\x7e\x48\xe8\xf0\x1a\x9f\xdf\x0f\x9f\xb3\xec\x04\xc5\xba\xa5\x82\x54\x5b\x5f\x97\x1b\x28\xef\x2d\x80\xc1\x99\x38\x4b\xc7\x5d\xde\xc7\x8b\x63\x89\x24\x45\xc8\x97\x57\x3a\xee\x02\x07\xa1\xac\x90\x54\x7a\x1c\xef\x7f\x07\x9a\xf6\xba\xa7\x65\x49\x44\xe6\x86\x5c\x44\xf3\xa7\x05\x84\x49\x01\xa1\xec\x5b\x76\x99\x66\x93\x48\x78\x93\x9b\x36\x67\x1a\x19\x26\x91\xa1\x88\xac\x4f\x29\xb2\xcb\x44\xa4\x65\x28\x22\x8a\xf3\x71\xdb\xb3\xda\x34\x9c\xe9\x2c\xdd\x9d\xad\xce\x28\xf3\xe9\x6e\x1b\xc8\xc2\xaa\xa6\x57\x60\x9e\x2f\x43\xa4\xf6\x54\xea\xa1\x15\xd4\xa3\x34\x56\xae\x68\xbb\x6d\xb8\x0d\x19\xee\xb6\x33\xe0\x51\x2d\xea\x57\x88\xfa\x31\x94\x6d\x0a\xa9\xc7\xfd\xba\x6d\xb2\xad\xec\xb6\xe9\x2e\x27\xba\xdc\x4a\xf5\x0a\xe7\xda\xfd\xef\xfb\x35\x6d\xda\x56\x83\xa8\x6c\x0d\xf0\x85\xcd\x9e\x24\x82\x6a\xf7\xbf\x1f\x49\x54\x65\xdb\x1a\xa4\xaa\xa9\xa1\x13\x94\x5b\x0f\x55\x83\xee\x4d\x35\xf0\xde\xb4\xe3\xd9\x8e\x1a\x86\x87\xe3\xbd\x49\xe7\xbf\x86\xdb\x7d\xf2\xea\x57\x86\xa6\xe9\x85\x87\xb5\xf0\x91\xfe\x4a\xe8\xad\xe1\xbd\xf5\xe9\xcb\x02\x22\xfb\xbc\xd6\x28\x55\x65\x8d\xc7\x87\xb7\x2a\x6c\x56\xa3\x6e\x8d\x35\x7e\xa2\x42\x56\x85\xa9\x1a\xbb\xc0\x09\x5d\x54\x74\x99\xa1\x1a\xbd\xc0\x88\x5c\x87\xdb\xe9\xe7\xa8\x16\xdc\x6b\x44\x9d\x91\x20\x14\xab\x51\xc7\xb5\x42\x17\x15\x43\xdd\xd2\x48\x85\xcd\x7c\xff\x8b\x28\xa8\xba\xc5\x91\x9a\xb2\x86\x83\xda\xe6\x23\x8b\x7b\x05\xe9\x54\x9f\x30\x76\x87\xa1\x64\xae\x35\xe9\x9c\xd7\x15\x8b\x26\xb5\x74\x4d\xaf\xc7\x7b\x39\xde\xd6\xba\xd4\xa4\x5b\x42\x65\x30\xf4\x50\x4a\x84\x9a\x65\x7e\xac\x99\x39\x74\x95\x49\xb2\x66\xaf\x2f\x2f\x72\xb4\xcf\x50\xcd\xb7\xc6\xcb\xb0\x2f\x35\xd5\x4c\xab\x59\xae\x0f\x35\xbf\xe1\x9f\x3f\x45\x39\x0e\x2b\x6c\x39\xfb\x5f\x9c\x93\xba\xc9\x7e\x2d\xde\xd7\x72\xb0\x6d\xcb\x0e\xb5\xe8\x2a\x50\xcb\xc7\xbc\x8b\x32\xd5\xd7\x92\x6e\x37\x3d\xfc\x6c\x43\xa5\xc8\x00\x50\xcb\x87\xe0\xe5\xd8\xec\xb5\x16\x4f\xb2\x70\x92\x5a\x5b\x99\x1e\x0c\x31\xeb\x41\xc9\x1c\x6a\x99\xaf\xdb\xb8\xe7\x9b\xb2\x57\x4b\xed\x15\x52\x7b\x0c\x4a\x61\x50\xab\x44\x8e\x5a\x3f\x7e\x53\xa4\x91\xa9\x55\xe6\xeb\x5a\x11\xe2\x91\x77\x5c\xe8\x51\xab\xd8\x6b\x85\xb5\xa6\x28\xad\x67\xad\xf5\x76\xd3\xc3\xe0\x48\x75\xd9\xfc\x19\x94\x3c\x55\x1a\xcd\x5a\xbb\x87\xa3\x23\xa6\x72\x17\xd6\x3a\x4e\xb5\x8d\x9b\x85\x7d\x36\x54\xea\x2d\x58\xd6\x1b\xa2\x9d\x6a\x3b\xd6\x16\x75\x4a\xda\x77\xb7\x2c\x61\x5b\x37\x6a\x93\x7d\xa6\x22\xb6\xaf\x48\x77\x52\x9b\x1c\x82\x6a\xa3\x4a\x49\x35\x13\x6a\x4f\xda\x9e\x0e\x67\xfe\x5c\xb7\x6e\xa8\xf6\x3a\xd5\xd6\x40\x73\xda\xf6\xb5\xa8\xdd\xf8\x4c\xa7\xb6\xd6\x05\x4c\xd4\xf1\xdf\xff\x5e\x6c\xd3\x77\x52\xc8\x30\x52\x24\x86\xa6\x33\xd9\xa5\xc2\xaa\x2c\x14\xdf\x7a\x54\xdb\xf4\x3c\x27\xe7\x29\x64\x1f\x72\x23\xa8\x63\xcd\x53\xf4\x76\x34\xad\x61\x20\xa3\x6b\x56\x16\x8a\x3a\x1e\x41\x73\xc0\x43\x37\xd7\xcd\x99\xeb\x10\xef\xaa\x83\xbc\x4b\xb5\x6e\xea\x69\xea\xc7\xac\x42\xad\xeb\xbb\x53\x92\x4c\x65\x66\x99\xac\x14\x19\xf5\x94\xf5\xbc\x9e\xc8\x15\x1b\xba\xf0\xf6\xd4\x35\xa7\x42\xfc\x0d\x59\xd9\x91\xea\x79\x7a\xbc\xf3\x3b\x5d\x72\x4f\xa8\xe7\xe5\xe1\xc8\xd1\xbb\x48\xce\x69\xb2\xc2\xca\x94\xa1\x8b\x74\xa0\x8c\xe4\xfe\x97\xe4\xc8\xc3\x3d\x3a\x42\x27\x6b\x15\x79\xfb\x4e\x89\x93\xf5\x64\xa0\x74\xdf\x22\x63\xbd\xe4\x37\x55\x61\x5b\x8c\xa1\x8b\xf2\x5f\x87\xb6\xe1\x42\x06\x87\xb6\xfd\xe6\x8f\x7a\x49\x0d\x54\x51\xa8\xcc\xc5\x12\xea\x25\x45\x69\x85\x08\xff\x4d\x53\xc3\x79\x67\x51\xbd\xcc\x69\xf2\xeb\x35\xdc\x74\x42\xb0\xed\x51\x5d\x1a\x98\x17\x72\xba\x85\x2e\xb6\x76\x19\x71\x51\x6f\xcb\x79\xad\xeb\x75\x79\x92\x48\xff\x1a\xb6\xdb\xec\x51\x2f\x79\x40\xd5\x0b\xf5\x3b\x43\x4f\x9a\xa5\x1c\xeb\x2a\x4b\x4b\x35\x15\xee\xae\xd7\x6b\x80\x31\xfa\x56\x95\xa4\x2b\x0a\xee\xec\x7f\x33\xb2\xc3\xee\x63\x79\x9b\x08\xb0\x3c\x8d\x33\xb8\xd7\xdb\xec\x09\xc5\x2f\x42\x96\x13\x49\x7d\xfc\xdd\x13\x39\x9c\xa0\xf2\x58\x64\x79\x98\xd8\x43\x26\x8f\xfa\x66\x2d\x9d\xee\xf2\x6d\x08\x2c\xaf\xb4\x7b\xf5\x85\xc9\xa3\xa9\xa6\x5c\x7d\xe5\x64\x54\x5f\x64\x4c\x6a\xaa\xfc\x56\x91\xc6\x77\xff\x0b\xb5\x92\xc5\x27\x8b\xd9\x15\x62\x76\xc9\x42\x15\x4b\xd9\x75\xb9\xe1\x97\x43\x6d\xaf\xbb\x7c\xd9\xa5\xb8\xc9\x94\xdf\x47\x9d\x2c\xaf\xde\xb4\xbc\xe9\xa3\x30\xb9\x43\xaa\x44\xd0\xec\x97\xd9\x0e\x26\x5b\x12\xed\x6f\x87\x94\xa5\xed\x80\x50\x9c\xb7\x23\xf0\xf7\xa0\xb8\x0d\x0e\x90\x65\x3b\x3a\xb6\x90\xf7\x36\xb4\x90\x91\xc7\x6d\x13\xb2\x16\x24\x94\xb4\xc0\x0a\xb7\x4a\x74\xda\x82\xac\xd7\x0d\xb2\x60\xb4\xe1\xa9\x59\x52\x6b\x90\xd4\xa2\x0d\x4f\x2d\x4a\x40\x6a\xf1\xe3\xe0\x45\xa6\xa0\x16\xa5\x75\x6e\x31\x1f\x68\xda\x93\x8c\xd9\x4d\x30\x57\x8d\x12\xf5\x99\xcc\x55\x2d\xc2\x5c\x95\xe5\xde\xd6\x62\xd5\x0a\x22\xa3\xfa\x94\x2b\xb2\x21\xbd\xc7\xfe\x17\x4c\x4f\x66\xae\x16\x0d\xb0\x48\x9a\xa3\xea\x85\xcd\x1e\x9e\x0d\x1e\x9e\xa5\x6e\xb4\x6d\x49\x26\xa4\x96\x68\x42\x6a\x3d\xff\x95\xe4\xdb\xec\xcb\xd9\xe8\xcb\xd9\x55\x99\xa6\x25\xdd\x54\x5b\xfa\x6e\xaa\xf2\xbe\xfe\x7e\x9f\x6e\x22\x06\x26\xcd\x26\x6b\xf1\x30\xf7\x15\xd9\xc0\x5b\x32\x22\x25\x5e\xb5\x55\x46\xaf\x25\xc3\x2c\x2d\x98\x35\x75\x29\xf3\x5f\x4b\x9d\xb0\xde\xe2\x66\x4b\xc3\xdf\x41\x4d\x92\x9b\x10\x37\x4b\xf1\xd7\x32\x14\x7f\xb9\x6f\x9e\xd1\xb2\xec\x67\x2d\x93\xe5\x2b\x29\x73\xcb\x92\x83\x5a\x46\x91\xa0\xa0\x42\xd3\x2d\x7b\x2e\x99\x71\x5d\x7d\x6b\xac\x5b\x96\x32\xa4\x65\x96\x5e\x56\x11\x89\x96\xc5\xba\x5b\x9e\xd8\x3f\x75\x59\xa4\x30\x6c\x25\x31\x06\x7b\xeb\x04\x5a\x31\xba\x14\xa0\x4b\x54\x5e\xf3\x56\x9a\xbf\x63\x88\xaa\x2c\x53\xad\x88\xcb\xb6\xf2\x4d\xb3\x34\x61\x6e\xd1\xfd\xa3\x15\x5c\xb0\xf2\x8e\x2a\x3b\x5a\xf1\xf9\x2a\xf0\x37\xe9\x32\x68\xb5\xf2\xb8\xed\x5d\x6d\xfa\x6e\xba\xcf\x8f\x23\x16\xdd\xee\x9b\x65\xd8\x06\x19\xb6\xc8\x41\x90\x91\x94\xfb\xdf\xca\xda\x5c\x45\x6d\x97\xdb\x18\x87\xae\xb3\x50\xe5\x8e\xf0\xdd\xa5\xbf\x2e\xf7\x3d\xb6\x55\xf9\x8f\xb6\xca\xea\x37\xca\x42\xdd\xaa\x3c\x48\xbf\x2b\x25\x3e\xd3\x4c\xa4\xca\x6e\xb5\xa2\xc7\x6d\xaf\x6f\xf6\x5b\x6a\xb5\x9e\x68\xda\xe7\xbc\xca\xab\xa7\x55\x96\xe8\x54\xc2\xe5\x56\x87\x27\x32\xf0\xd9\x36\x96\xb4\x2a\xe6\xdb\x2a\x98\x6f\x54\x7e\xe3\x56\x65\x7d\x6e\xcc\x71\x90\x7b\x55\x97\xa7\xe7\x0f\xfa\x6d\xc7\xbd\x56\x2f\xcf\xf2\xe2\x70\xfb\xb0\x36\x69\xa3\x5a\x43\x18\x4a\x34\x35\x6a\x72\xec\x6c\x90\xaa\xcb\x8e\x48\x39\x9a\x35\xdc\x0d\x1a\xee\x22\x31\xb4\xb5\x2c\xc4\x6b\xc8\x35\x58\x55\x89\xbf\x35\xa9\x34\x5a\x83\x4a\x23\x2a\x5b\x6c\x6b\x52\xb5\xb5\x86\xd8\xee\x2c\x2f\xef\x66\xed\x77\x6b\x0d\xc5\x47\x0f\xed\x77\x33\x9c\x1b\xbc\xa7\x86\xae\xfd\xcd\x62\x7d\x83\x58\x5f\xba\x18\x49\x7b\x84\x79\x0d\x21\x0b\x5d\xc5\x98\x5b\x8f\x5a\x42\x47\xc4\x7d\xde\xd9\x5f\x8e\xd6\xe5\xb1\xd8\x3a\x6b\xdf\xaa\xb4\x50\xeb\x26\xc3\x2b\x80\x44\x8e\xf6\xad\xcb\xad\xbf\x75\x86\x8d\xca\xd0\xd5\x86\x8c\x60\x0d\x49\x63\xc3\x90\x97\x49\x1b\xba\x92\xb5\xc1\x2b\xd9\xd8\x8a\xb8\x36\x2e\xf5\x39\xb0\xaf\x63\xb3\xfa\x36\xe4\x57\xde\x06\x43\x3d\xe5\x27\xd3\x4e\xd3\xf5\xf3\xa3\xeb\x45\xfe\x20\xed\xd4\xe5\xb6\x41\x33\x1d\x63\xd8\xa6\x84\x76\xfa\x18\x20\x25\x62\x91\x3b\x48\x3b\x65\x91\x6f\xa8\xf8\x1e\xb2\xea\x9e\xb7\x53\x8a\xde\x76\x3e\x98\xa4\x10\xec\x7c\xdd\xe3\x8b\x1e\xb7\x21\xa1\x5d\x9e\xe3\xc5\x39\x56\x35\xc9\x67\xa5\x5d\x91\x3b\xb7\xb5\xf0\xed\x32\xbf\xbe\x32\xaa\x8c\xea\x8e\xd7\x2e\xdd\x81\xda\xf5\xdd\x81\x8a\x2a\xf1\xb5\x4b\x86\xcd\x76\xb1\x84\xbd\x22\x42\xda\xa5\x2b\x78\xbb\x58\x9b\x5c\x86\xee\x76\x79\x53\x2f\x56\x21\x97\x31\xbb\xdd\x26\x36\x37\x89\x4d\xd0\x78\xb7\x1c\x9c\x1a\x2b\xf2\x0d\xa9\xb1\xda\xed\x0d\x5f\xa5\xf0\x74\x1d\x6b\xb7\x54\x40\xed\x66\xac\xbe\x0c\xb0\xed\x96\x90\xd6\x6e\x08\x69\x59\x85\x87\xdb\x23\x85\x7a\x43\x71\xb4\xaf\x6d\x8f\xf7\x98\xc1\x3c\x64\x30\xaa\xed\xd8\x1e\x5d\xd0\xdb\xd3\xb9\xaf\x5a\xc3\x23\x91\xbe\xa1\x8a\x4e\xb4\x47\x63\x7b\x6e\xf7\x79\xa3\xa2\x92\xea\xa4\xb6\x47\x66\xa7\xf6\x30\xf2\x45\xba\x95\xf6\x16\xc1\xec\x2d\xe7\x3f\x7f\xea\x8e\x5f\x3f\xda\x6b\x9e\x85\x2a\x22\xa1\xcb\x21\xbf\xbd\x72\xf3\x69\x08\x06\xae\x3b\xd2\xf2\x68\x28\x18\xb2\xff\xcd\x5f\x93\x80\xf9\xca\x1d\xaf\xbd\x70\xc7\x53\x65\xe0\xf6\xea\xaa\xd9\xe0\xf6\x12\xa3\x2c\xcf\x0d\x6e\x2c\xfb\xdf\x17\x9f\xa9\x49\x37\xdb\x36\xbf\x9b\x6d\x0d\xda\x81\xe9\x1d\x67\x7e\xf7\x6c\xaa\x38\x4d\xf9\xe6\x47\x5d\xaa\x11\x6c\x4a\x65\xd1\xe6\xca\x0e\xd2\xdd\xd6\xdd\x86\x55\x0b\xf7\xec\x3d\xd3\xe8\x3d\xd3\x55\xe8\xab\xcd\xe6\xd1\x58\xc0\x45\xf5\xbe\xdb\xbc\xb5\x37\x48\xab\x5d\x83\x48\xa9\x35\xd5\x8d\x9a\xea\x72\x68\xbb\xe7\xf4\x70\xac\xbc\x20\x6d\x60\xb7\xf7\x65\x87\xf7\x65\x55\xed\xf0\x7e\xc8\x69\xad\x23\x1a\x24\x46\x39\x15\xf6\x43\xe6\xea\x7e\xc0\x9b\xaa\x28\xb7\x7c\x0f\x75\xcf\xb2\x87\xfa\xcd\x52\x6e\x43\x3d\x48\x38\xeb\x81\x36\xa0\xa3\xfc\x9d\xb4\xdb\xc3\xf3\xe8\x53\x44\x71\x0d\x25\x23\xed\x41\xd2\x4d\x0f\x1f\x8d\xaf\xca\x5c\xdd\xed\x35\xd9\x03\xac\x47\x51\x06\xdd\x6e\xaf\xc9\x1e\x26\x62\xd6\x36\x9b\xef\xf6\x15\xe9\xf0\x15\xa9\x72\xec\xea\x51\xf7\xda\x1e\xa1\x52\x1f\x12\xcf\xba\xa3\x1c\x3a\xa2\x1c\xaa\x0c\xd9\x4c\x8a\xb0\xff\xed\x5f\xd3\xd6\x00\x77\x3b\x46\x7e\xa4\x12\x73\x1c\xfa\x6c\xb8\xc7\x01\xd2\xa7\x84\xe5\x3d\x9e\x9e\x09\x13\x6e\xaa\xda\x65\x8f\xa7\x87\xa3\xbc\x21\x7b\x61\x4f\x22\x37\x9d\xe1\x61\x5d\xf7\xd3\x6e\x67\x90\x0e\x67\x90\x18\xa5\xaa\xe9\x29\xf8\xbb\x80\x25\x6c\xe9\xa0\x23\x60\x6c\xff\x3b\xf9\x99\xba\x94\xc4\xd1\x13\x0b\xa0\x7a\xe9\x49\xae\xba\x3d\x21\x98\xb1\xe7\x7d\x03\xe8\x49\xf2\x6c\x4f\x90\x67\x8b\xa4\x91\x9e\xe5\xd8\xd5\x33\x93\x6d\x14\x4d\x33\x8b\x4a\xf5\x8c\xf4\x66\xbd\x68\x2e\xf9\x74\x1b\xca\xb6\x45\xe9\x5c\x7a\x96\xa2\xa3\x67\xe4\xd7\x8c\x32\x8e\xf5\x2c\x03\x45\x67\x00\x42\xdf\x39\x0d\x8f\x5e\x14\x07\xd6\xcb\x91\xf8\xdd\x9e\x67\x31\xc8\x0a\x40\xa6\xd4\xf9\xbd\xc8\x7b\xe1\xeb\x0b\x5d\x26\x75\x29\x92\xd3\x0b\x2e\x5b\x51\x99\x99\x7b\x11\x9f\xef\x85\xd9\x84\xca\x16\xf3\x7b\xb9\x04\x6a\xdc\x06\x62\x54\xc4\x54\x2f\x32\x73\xf5\xc2\x4c\x4f\x3b\xdb\xe1\xd1\xab\x6e\xa1\xbd\xe2\x16\xda\x54\x4e\xab\x57\x59\x97\x3a\x1c\x51\x62\x54\xe6\xf9\x5e\x65\x42\xea\xb5\xa0\x6e\x68\xf6\x77\x92\xc4\x7a\xa5\x24\x26\x5b\x42\xb7\x66\xb9\x43\x0e\xaf\x0a\x49\xea\x55\xde\x9d\xbd\x0e\x26\x8d\xd9\xe2\x43\xb7\x10\xdd\x29\x44\x97\x63\x93\xdb\x5e\xbd\xb3\xf5\xdb\xd9\x9a\xdd\x74\x79\x75\x17\x44\x04\x79\xfb\xf6\x26\x9b\x40\x6f\x2c\x19\x2c\x2f\x8b\xde\x14\xe9\xd4\x1b\x73\xe0\x48\xbd\xd0\x9b\xac\x60\xbd\xb1\xce\xa1\x42\x0d\x7b\x1b\x9a\x66\x43\xfa\xb8\xd1\xb6\xda\xa8\xb7\xd3\xe3\xc1\x7f\xa6\x18\xd2\x4d\xfe\x33\xbd\x21\x25\x41\xaf\x51\x7d\xca\xfc\xd7\xdb\x84\x3f\xbe\x36\xaf\x4b\xbb\xd5\x7b\xe6\x26\x88\x0c\x74\x93\x8f\x8e\x24\x98\xa3\xe9\xa8\x77\x23\x4b\x67\x19\x07\xd5\x72\xe9\x5d\xd2\x43\xef\xf7\xc7\x97\xcb\x96\x94\x7b\x97\x3d\xa7\x77\x64\xe6\x8a\x8a\x77\xea\xdd\x38\xd6\x3f\x1c\xab\x72\xcd\xed\x56\x7f\x77\xaa\xbf\x8b\x0a\x9a\xf4\x21\x07\xa7\xce\x18\xeb\xa1\x34\xda\x7d\xe8\x9e\xd9\x47\x20\xa0\x85\xd2\xc3\xcc\x8b\xa1\xd8\x45\x97\xef\x3e\xe4\xda\xde\x47\xfc\x48\x71\xd5\xe2\x86\x24\x8b\x3e\x60\xbb\x88\xb2\xc7\xf7\x61\xa2\x33\x3e\xa2\x53\x95\x89\xb9\x0f\x29\xfe\x3b\xb2\x39\xd5\x2a\xf2\x70\xfa\xfc\x9c\x07\x30\x4c\x96\xee\x7e\xca\x0a\xde\x51\x14\xe0\x6b\xdb\x5d\x9e\x8a\x8f\xe9\x67\xc3\x85\xab\x44\xb7\x9d\x6e\x03\x25\x2e\x5b\xd6\xef\xe7\x29\xa0\x9c\xe7\xc7\x62\x95\x7a\xba\x9f\x52\xea\x75\xa8\xc1\x63\x2c\x5a\xc1\x25\x87\xb0\x7e\x21\x73\x42\x91\x24\xd6\x2f\x69\x16\xfa\xf5\x09\x65\xb5\xe9\x1c\x5c\x26\xd2\x17\x89\x74\x15\x37\xbc\x74\x55\xee\xd7\x87\x6b\x75\xa7\x01\x3a\xfa\x2d\xe1\xa8\x23\x75\x5a\x8c\x45\x44\xec\x96\x6b\x43\x47\x19\xe6\xaf\x6d\x77\x79\x4b\x94\xec\x77\x27\x50\xb6\x99\xae\xdf\xb2\xcd\xf6\xbb\xa3\x6e\xcf\xbe\x3f\xf4\x5b\xe1\xe4\xfd\xbe\xb0\x00\x89\x1d\xb7\x19\xfd\x0d\x46\x2f\x8b\x4d\x7f\xbc\x73\xcf\x81\x98\x95\x2d\xed\xf6\xe7\xd5\x57\xa8\xad\x58\xdb\x16\x09\xfb\x23\x23\x42\x7f\x58\x81\x59\xb6\x95\x6e\xa7\xf0\xfe\x12\x17\x64\x3e\xee\xaf\xd4\x9c\xfd\xfd\x04\xfd\xda\x85\x78\xaf\xa2\xaf\x3b\x4a\x09\xd6\x9d\x2c\xe2\xe8\xaf\x22\x82\xfa\xcb\x5c\x81\xde\x9b\x57\x37\xfd\xfe\xa6\xce\xd1\xf6\xd1\xb1\x2b\x79\xa7\x2b\xf9\xe8\xc2\xd8\xb7\x78\x38\x16\xf0\x96\x67\x43\x7f\x65\x0b\xed\x2f\x4b\xc0\x56\x1d\xab\xd7\x84\x01\x79\x65\x62\xdc\x79\x66\x8f\x3e\x65\x22\xe9\x28\xbe\x15\xa3\x1c\x83\xfa\x94\xda\xa7\x23\xc0\xe9\x6b\xdb\x4b\xb7\xf0\xdd\x21\x7c\xc7\xa8\x00\x9b\x3e\x3d\xcf\xb9\xe6\xb9\xd5\x4c\x7d\x56\x7f\xf7\x21\x58\xed\xc2\x93\x79\x7a\xb8\x93\x1b\x24\xba\x37\x2f\xe1\xde\x44\x26\x8a\xb2\x73\x31\x1e\x7d\xea\xc6\xd8\x91\xac\xb7\xba\x60\xe3\xa1\x38\x8d\x71\x44\x88\x0e\x32\x48\x0f\xc7\x29\x8d\x23\x11\x2a\x2a\xfe\x73\x48\x11\x3d\xe0\x83\x5e\x47\x38\xfe\x4a\xe4\x1d\x87\x1c\x65\x07\x93\x1d\x34\x5d\x81\xc6\xf1\x78\x36\x0f\x88\xbe\xf2\xcb\x8f\x43\x5a\xbb\x81\x14\x05\xa1\xbb\xfe\x37\x92\x4d\xee\x7f\x61\xfe\x92\x6a\x6e\x58\xaf\x3f\xa0\xd7\x0f\x5d\xd6\xbd\x11\x74\x51\x1b\x01\x09\x64\xa2\xcc\x32\x23\xc8\x14\x32\xa0\xff\x0f\x45\x81\x75\xc3\x5e\x1f\x03\x5e\x1f\x55\x8a\x82\x11\x6e\x77\x79\x33\x99\x95\x4a\x91\xda\x8f\x7b\xc0\x8f\xfb\x1b\x6e\xd7\x2d\x0a\x32\xb2\x0e\xe4\xc1\xec\xc2\xa4\x11\xe4\x34\x30\x02\x9c\x06\x62\x53\x89\xc2\xf0\x7a\x96\xdf\x65\xa9\xbb\x52\x60\xd0\x9d\x77\x84\x8f\xcf\xd6\xa1\xba\x4a\x51\xa7\x79\x44\x9e\x66\x95\x44\x18\x51\xce\x35\x03\x97\x82\xaf\xad\xab\xad\xba\x8d\xb0\xfc\xf9\xee\x76\x1b\x64\x8e\xa6\x72\x60\x31\x7a\x3c\x54\x71\x8b\xb2\x9d\x8f\x28\xcd\xca\x88\xa8\x1f\x1e\x9b\xca\x73\x45\x79\x0d\x8c\x98\xd6\x77\x1b\x98\x0e\xca\x1a\xb1\x70\x3c\xd5\xc0\xb3\xb9\x63\x20\xdd\xe2\xd7\xa6\x35\xe8\xca\x32\x70\x65\xf9\xc4\x3d\x35\xb9\xcb\xc6\xcc\x64\x2a\x46\xe9\x98\xac\x11\x4f\x82\x4c\x75\xc8\xa2\x34\x51\x23\x42\x13\x35\x86\xea\xa8\x45\xb1\xde\x11\xa9\xbf\x56\xd5\x98\x11\x6f\x7f\x07\x27\x92\xe2\x02\xb0\xf1\xf1\x5c\x1e\x2e\x4f\x35\xae\x92\x44\xb8\x91\x98\x0c\x59\x97\xf7\x91\x74\xed\x1a\x89\xd7\x2e\xc9\x46\xc3\x99\x24\x06\x62\xa9\xdb\xa1\x32\x77\xe9\x72\x97\x17\x21\xad\xd3\x65\xd7\xf6\x01\xd7\xf6\xaf\x6d\x83\x25\xc9\x56\x3f\x10\x8b\xd4\x0e\x6d\x7a\x96\x88\x3d\x32\x83\x35\x86\x36\xc1\x29\x21\x46\x5e\x88\xa4\x72\x68\x45\xba\xd5\x51\x3a\x77\x41\x05\xdc\x8a\xdc\x1b\x46\x41\x0d\x2a\xdd\x0d\x47\x91\xfa\x64\x14\xaa\x4f\xa4\x1e\x1e\x45\x71\xa4\xa3\x20\x09\xf6\x18\xda\xbc\x2a\x85\xf3\xa8\xc4\x4d\x19\xa5\x47\x35\x6e\xd6\x38\x91\x15\x62\xcf\xb2\x9a\x38\xd6\xc4\x73\xae\x12\xe0\x56\xf9\x8f\xa5\xf2\xef\x2a\x36\x56\xa5\x8d\x1e\x95\xda\x68\x19\xac\x47\x95\xb5\x66\x20\x9d\x57\x0b\x22\x1d\xd6\xa6\x8f\x7a\x0d\xd4\xca\xd8\x5f\x35\x31\xd2\xd1\x22\x17\x27\x6c\xb0\xe7\xf7\x80\xe7\x77\x93\x63\xca\x68\x3e\x07\xad\x81\xc7\x8a\x8f\x8e\x26\x8f\xea\xd1\x06\x8a\x8d\x88\x9c\x36\xcf\xb1\x31\xb9\xec\xd0\x8e\xb7\x2b\xb9\x0d\x65\x57\x54\x6f\xae\x89\x3d\x8d\x46\xf6\x24\xfd\xe9\x68\xc6\xaf\x46\xfc\xea\x2a\xf7\xdc\xa6\x67\x39\x39\x4b\x55\xc1\xeb\xf2\xf7\x18\x4c\x34\xd5\x65\x1c\x1f\x5d\xd7\xf3\xd1\x61\x10\xd0\xed\x61\xf4\xe2\xcf\x58\x93\x2d\x0a\xd5\x7b\x75\x1b\x32\xda\x8c\xa1\x52\x73\x76\xbb\x19\x70\xbb\x69\x41\xc5\xd4\xbb\x09\x40\x67\xe6\x68\x45\x11\x0e\x5f\x11\x06\xaf\x08\x5d\xde\x75\x63\xf8\x18\x0c\x1e\x03\x99\x57\xc7\x90\xa9\x70\x0c\x9a\x9b\xcc\x64\x86\xc4\xaa\x31\x50\x2a\x26\x8a\x21\x0c\x03\x65\x24\x16\x22\x17\x4b\x1b\xc9\x5d\xa6\xd5\x65\x57\x9b\xbb\x4c\xec\x72\xaf\x60\x48\x2d\x31\x06\xca\x46\xba\xee\xfc\xd0\xa5\x70\x8c\xef\x68\x2a\xed\xdd\x31\x86\xf9\xe7\x38\xd1\xa1\xea\x15\xdb\x84\x30\x60\x42\xf8\xe6\xa8\x79\xbc\x9e\x23\x2a\x86\xc4\xa1\x52\xcf\xc3\xcc\x0e\x7e\x40\x2d\x0a\x9b\xc7\xf4\x1c\x27\xe6\xa8\x72\xb2\x43\xba\xf4\x31\xa8\x4b\x57\x51\xbe\x31\xa6\x7b\x9c\xac\xc2\xaf\x42\xe2\xa7\x0c\x32\xe3\x8c\x2c\x38\x2b\x66\x77\x1a\x9d\x4f\xa2\xb3\xb4\x3f\xe3\xbc\xfc\xdd\xc5\x44\x55\xaa\xe7\xea\x7b\xcc\x38\x51\xa8\x57\x21\x36\xe3\x94\x6d\x68\x9c\xcf\x44\x93\x46\x53\x56\x84\x81\x1c\xd0\x4d\xd1\x22\xe3\x9c\x6e\x42\x1d\xf3\xe8\x42\xaf\x97\xb9\xfc\x45\x2e\x2f\xf7\x83\x71\x99\x38\x5f\xc7\x9a\xa4\xbe\xb3\x34\x75\x45\x0c\xa7\x4a\xe7\x97\x8c\x46\xe3\xfa\xc4\xc5\x16\x55\x38\xdf\x16\x92\x01\x0b\x49\x53\x66\x98\x71\x99\x56\x5e\x89\x79\xe9\xc4\xe2\x2f\xd3\xca\x8b\xb4\x52\xa6\x9a\x71\xf9\x10\x5f\xdf\x21\x6e\x49\x65\xc3\x2f\x93\xd1\x8b\x64\x54\x66\x9c\x71\xc9\x33\x7d\x5c\xf0\x4c\x1f\x87\x38\xc1\x55\xdd\x65\xe5\x86\x8b\xfd\x5f\xcd\x7d\x36\x66\x86\x54\x75\xd2\x6b\xb8\xed\xc3\x79\x94\xad\xf9\x37\x79\xb7\x8e\xff\xa5\xb8\x6b\x9f\xa7\x01\x9f\xa7\xa6\xe8\xa1\x71\x99\x2b\x5d\xc8\x6e\xe0\xc2\xd1\xb7\x74\x00\xe3\x5e\x39\x29\x85\xcf\x77\x16\xc4\xee\xcc\x36\x11\xee\xdb\x62\xf9\x5d\x98\x87\x52\x38\x7b\x57\x7f\x57\x99\x2b\x53\xc4\xe6\x36\x58\xee\xca\x2c\x99\x22\x36\x8f\xb4\x7d\xe3\x61\x21\x0f\x79\x91\x8e\xc7\x84\xe8\x61\x4d\x8f\x28\x61\xf1\xf1\xae\x3f\xbc\x3e\x0c\x71\xc8\xa7\xb8\xad\xb0\x6d\xa8\xcf\xe2\x3e\x0b\x76\x5d\xec\xff\xf1\x0e\x3d\x6b\x87\xba\x8a\xf2\xeb\xaa\x3f\x9e\xc1\x93\xb0\x6f\xb6\xe3\x31\x99\x7a\x56\x2d\x76\x1d\xc9\x47\x6e\x4d\xe3\x59\xb5\xb2\x5d\x96\x5d\x49\xad\xc6\x0b\x8f\xd6\x74\xb8\x4e\xb6\xe9\xf3\x1b\x90\x4d\x45\x94\xc3\x57\xcd\xf1\x76\xa6\xe3\x77\x79\x6c\x29\x09\x07\x52\x70\xb4\xfc\x53\x97\xfe\x75\x13\xcb\xb3\x0a\x6f\xdf\xdb\x6d\x0f\xeb\x69\xef\x05\xbc\xf2\x15\x1f\xf0\xb5\x8a\xe9\x70\x65\x78\x29\xd8\xc6\x3b\x91\x18\x48\x14\xe0\x9d\x9e\xc8\x44\x49\x6f\xd7\xd5\x95\x2a\x7d\xcc\x03\x09\x94\x5c\x58\x56\x0a\xa8\x81\x40\x88\x78\xfc\x14\x9d\x55\xb8\xe9\x40\xb2\xdb\x6f\x22\x2a\x98\x2a\x25\xcd\x98\x88\xda\x4b\x2e\xbd\x6d\x53\xd4\x98\x15\x45\xa0\xc5\xfe\xa7\x52\x2f\x8d\x59\x59\xf3\xd6\xe5\x68\x3d\xda\xe0\x68\x2e\x1d\x6c\xa1\x7b\xde\xcc\xbe\xaa\x72\x73\xb6\xa5\xaf\xd4\x92\x25\xbb\xd0\xa9\x70\x68\x8e\xc1\x82\xa5\xae\xc5\xb9\x4f\xe4\x44\xb9\x9f\x5e\x5c\xff\x50\x5a\x80\x79\x7e\xb2\x58\x57\x80\xd3\x3c\x05\xae\x09\x8d\x59\xaf\x3f\x55\x02\x2f\x35\x95\x55\x40\x71\xb7\x5d\x32\xd4\xcc\x8b\xd9\x1a\xa2\x5a\x92\x5b\x90\x21\x4c\x15\x13\x5f\xb9\x5f\x4f\x20\x6b\x93\xeb\xde\x7c\x75\x84\xe7\x8b\x23\x5c\x77\x9e\xfd\x63\xbe\xc9\x9f\x21\x25\x46\x57\x81\xbb\x57\xd7\xaf\x89\x20\x21\xfb\x48\x4e\x6b\x68\x26\x34\x34\x6d\xa8\x96\xdb\x2b\x8a\x3e\xdf\x8f\xa2\xb7\xb1\x05\x90\xf9\xca\xe9\x6d\xbe\x9f\x00\xd2\x46\xf0\x57\x8f\x9b\x5e\x7c\xe5\xb1\xa6\x9a\xf2\x81\x26\x2d\x2c\x7b\xf2\x1f\x5a\x35\x97\xd7\x7d\xb3\x27\x8f\xc0\xc6\x58\x55\x3b\xf1\xcd\x9e\x7d\xe6\xec\x5d\xb6\x4f\xfb\x8c\xea\xec\x55\xb5\x11\xa7\x88\xc1\x9c\x2c\x59\xe8\xfa\x7c\xa7\x5b\x60\x20\x53\x9d\x3b\xc9\xe6\x73\x2e\x58\xec\x16\xcf\x1c\x95\xaf\xbb\x2b\x16\xea\x38\x4c\x58\x66\x83\xdd\x21\xe6\xac\xfe\xea\x63\x2c\x2e\xf4\x39\x5f\xcf\xee\x85\x74\xaa\xea\x79\x7b\xde\x61\x06\xa6\x4a\x39\x8e\x5d\x27\x2f\x24\xb7\xc1\x87\xf4\xd8\x9b\x15\x66\x28\x6e\x43\x7a\xa4\xa3\x26\xb5\x35\xb7\x21\xeb\x49\xd8\xe3\xc5\x78\x6d\x1e\x14\xe3\x45\x1e\xb4\xd5\x46\xb1\xce\x4d\x8f\xbe\x7f\x1b\xcd\x35\x3b\xb3\x77\xd9\xbe\x04\xdf\xbf\x83\x59\xd0\x95\x9f\x7c\xfb\x4a\x7c\xff\x32\xd1\x76\xfa\x9f\x4c\xac\xdf\x8f\xff\x7a\xfe\xe7\xff\xf1\x7f\xfd\xdf\xe7\x7f\xfe\x3f\xe7\x7f\x7d\xff\xdc\xff\xe3\x5f\xff\x7a\xff\xe3\xbf\x3f\xff\xe5\xfe\xef\x7f\xfe\xcf\xef\xe9\x9f\xe7\x9d\xff\xe5\x3f\xde\x7f\xbd\xff\xdf\x7f\xfb\x1f\xff\xba\xdf\x3f\xff\xf9\xdf\xfe\xf3\xfb\x0a\x7f\xff\x7f\x00\x00\x00\xff\xff\x0e\xf7\x18\x67\xc1\xb5\x03\x00"); -func _fed ()([]byte ,error ){return _dc (_ccf ,"78-V")};var _ebge =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x0d\xc6\x83\xf8\x2c\x5f\x70\xde\x4c\x6e\x66\x0d\xea\xdf\x1b\xad\xa5\x67\xad\xb8\x0d\x0d\xe7\x9d\x9c\x57\xf1\x44\x48\x5b\x5b\x5b\x5b\xfb\x5b\x7f\xfc\x0f\x7f\xfe\x8f\x7f\xfe\xf5\x97\x7f\x7c\xfd\xf1\x7f\xff\xed\xaf\xe7\x3f\xdd\xff\xf8\x7a\x7e\xf9\xf5\xfa\xed\xfe\xfb\x5f\xff\xf5\xb7\xf3\xfe\x3a\xee\x7f\xf9\xe5\xd7\x3f\xfc\x21\xc4\xaf\xeb\x97\xf3\x1f\x9f\x26\xfe\x9c\x7f\xd9\xff\xf6\x87\x3f\xcc\xef\xff\xe9\xdf\xfe\xfe\x8f\xfb\x2f\x7f\xfe\xf5\xf9\xeb\x57\xe2\x7b\xd7\xbf\xfe\x6d\xbd\xfb\xf5\xf5\xc7\xff\xe3\xfe\x97\x5f\xfe\xfe\x8f\xdf\xfe\xed\xeb\xdf\xfd\xcf\xd7\x5f\x8f\xfb\x7f\xf8\xba\xee\x67\x3e\xff\xdf\x7e\xbb\xee\xdf\x7e\xf9\xf5\x5f\xbe\xfe\xdd\x7f\xda\xff\xb6\xff\x1a\xf4\xc3\x3f\xfd\xeb\xdf\xfe\xf6\xff\xdd\x7f\xb9\x7f\xfd\xc7\x57\xc3\xb3\xfb\xd7\x0b\x7f\xff\xf0\xc7\xff\xf0\x9f\xf7\xbf\xfd\xaf\xfb\x5f\xee\xaf\x3f\xfe\xf3\xaf\xbf\xfc\xa7\x3f\xff\xd3\x7f\xdd\x62\x48\xff\xfe\x9f\xff\xcb\x9f\x52\xfc\xf7\xff\x0b\xde\xc1\x2b\xff\xe7\xfd\xdb\xdf\x7f\xf9\xeb\xaf\x5f\xe1\x7f\xdc\x62\xf1\xe3\xff\xf2\x6f\x7f\xbb\xbf\xc2\xea\xea\xbf\xfe\xf3\x9f\xff\xe3\xd7\xff\x1d\xbe\xc2\xf6\x15\x4b\x0d\xf9\xff\x59\xcf\xff\xaf\xff\xfc\xd7\xeb\xfe\xda\xd8\x0a\x9c\xc6\xf9\xd7\xeb\xfe\xfb\xdf\xf6\xf3\xfe\x6d\xff\xf5\x5f\xee\x3f\x7c\x7d\xfd\x4f\xdb\xfa\xf7\x3d\xff\x1b\xb6\x3f\xfd\xe9\x4f\x7f\xfa\x9e\x70\xfe\x37\x6f\x7e\x3a\xf8\xf5\xaf\xff\xb8\xee\x87\xcf\x7e\xff\xed\xfc\x17\x9e\xef\xaf\x30\xbf\x7e\xbf\xf6\x87\xb0\x6d\x6b\xf4\x5f\xae\xf3\xff\xdd\x7f\xfb\x7c\x58\xce\xef\xaf\xd1\x3e\xad\x36\x5b\x43\xad\xeb\xfb\x6b\x64\xb5\xee\xef\xaf\xb0\x6d\x9f\xe6\xbe\xcd\x61\x3e\x8d\x3c\x7f\x53\x37\x7b\xf9\xfe\xaa\xfe\xb1\x7e\x7f\x8d\xa4\x56\x9b\xaf\x56\x35\xfb\xf7\x57\x48\x51\xcd\xf1\xfd\x15\x8a\x9b\xfb\xf7\x57\xc8\x1e\xf3\x98\xdf\x0a\xbe\xfd\x9c\x2f\xbb\xe7\x6b\x36\x3d\xec\x84\xb7\x08\xfc\x7d\xa2\x25\xea\xdb\x63\x42\x1c\x05\xf1\x51\xe6\xcb\xfe\xb5\x7e\x7f\x85\xd0\xd5\x9c\x30\x07\xbf\x0c\x98\xd5\xf3\x31\x61\xae\x02\xf2\x00\xcc\xfe\x75\xc2\x1c\x05\xe4\x01\x30\x34\xfd\x73\x0e\x94\x34\xee\x35\x7b\xce\x9a\xfe\x35\x5f\x2e\xea\xf9\x9e\x2f\xe7\xf2\x69\x3e\x78\xf9\x03\x64\x98\x24\x30\x52\xad\x6a\x07\xb4\x83\xda\x71\x76\xd6\x8a\x5f\x48\x78\x50\x87\x1e\x64\x3c\x48\x4d\x0f\x80\x95\xa6\x21\xc3\x56\xd9\x87\x07\x6d\x78\xd0\x3c\x4a\xc7\x83\x9e\xf4\x60\xf0\x81\x47\xd9\xbf\xbf\xe2\x96\x92\xdf\x38\xf0\x40\xab\x1e\xb6\x93\xa3\xf8\x93\x8b\xa3\xf8\x8d\x9b\xa0\x7b\xd8\x87\x6f\x7c\xd0\x1e\xc2\x86\x4e\xa3\x3e\x09\x81\x6f\x68\x2e\x21\x02\x3f\x1a\x24\x24\xb4\xdd\x43\x25\x9c\x7e\xd0\x08\xa7\x00\x0f\x9c\xab\x96\x3e\x04\xce\xb5\xf9\x8d\x7d\xf6\x39\x3c\xe6\x31\x77\x94\x36\x4a\x08\x9c\x69\xf7\x18\x9c\xe9\x70\x97\x37\xa1\x70\x17\x0f\xa1\xd0\x83\xc8\x99\x7a\xd5\x62\xe0\x1b\x5a\xe8\x18\xf9\x86\x1f\x70\xa1\xbb\xfb\xe0\x42\x0f\xe1\x33\x72\xf2\xa2\xdb\x10\xb1\xd0\x3d\xb8\x8f\x8e\xa9\x08\xd0\x38\x66\x3b\x08\xdf\x11\x53\xaf\x86\xea\x40\xdb\xbf\xaf\x89\x09\xff\x71\x4d\x4c\x5f\xa4\x35\x31\x11\x5b\x9a\x4b\x98\x05\x41\xe2\xb4\xa2\x90\x97\x12\x1f\xf8\x83\x35\x4f\x7f\xb2\xe6\x29\x28\x12\xe7\x29\x16\x13\xd2\x5a\x64\xf7\xd1\xd9\xa9\xe0\x4c\x5c\xe4\x17\x9c\x3b\x57\xdd\x7d\x90\xa0\xb3\x47\x39\xf1\xc0\x84\x92\xb8\xcc\x9e\x7c\x22\x41\x67\x77\x4a\x6c\x44\x2d\x51\x5e\xd8\x50\x1f\x19\xd8\xd0\x8a\xe5\xb9\xbd\xfd\x7d\x5e\x9b\x5b\x30\x64\xe2\xa2\x09\x17\xb9\x10\x4a\x2d\x71\x26\x2e\xbc\xa9\x32\x37\x77\xf5\x1b\x24\xf8\xe6\x51\x06\x81\xc2\x79\xf3\x39\x59\xfe\x7b\x67\x4d\xc8\xdc\xf9\xd1\x20\x60\x3b\x98\x2e\xf3\x3c\x7e\x92\x11\x99\x2f\xd0\x8c\x70\x50\x36\x02\xa4\x15\x2f\x6b\x53\x6b\xb5\x0a\xb0\x20\x80\xcb\xc4\x42\x16\x96\x0b\x71\xe0\xbd\x53\x48\x0f\xd5\xdf\x2f\x7a\xf0\x08\xa4\x07\xe3\xb1\xac\x4d\xef\x3e\xd6\xa6\xf7\x28\xa4\x07\xd3\x54\x39\xf8\xc0\xa3\xac\x6d\x2f\x3c\x96\xb5\xed\x0d\xf8\xa2\x07\xad\x45\x21\x83\xd3\x61\x10\xea\xa4\x07\xef\xcf\x3a\x37\xbd\xce\xb3\x50\xc9\xec\xbd\xfd\x2a\xe9\xa1\xab\xc3\x4a\x5c\x98\x48\x2b\x71\x51\xfc\xc6\xe2\x01\xee\x83\xb8\x48\xfe\x84\x3c\x40\xa8\xa8\xe4\x01\xfe\x80\x3c\x40\xf3\xae\xe4\x01\x06\x7a\xe1\xc1\x2f\x2c\x3c\x08\xfd\xf5\xc6\x08\x6e\x3f\x18\x41\x14\xd3\x16\x45\xf8\x01\x29\xa2\x0b\x4f\x8d\x5c\xc2\x67\x58\x23\x97\x30\x14\x2d\x73\xcb\xfb\x13\xee\x0c\x93\x59\x23\x26\x8c\x9a\xb6\xa8\xc2\x9d\x4e\x2e\x61\x4e\xd4\x48\x13\x26\xc4\x46\x9a\xf0\x19\xd7\x16\x4d\xf8\x93\x75\xe8\xf9\xc1\x35\xbb\xf4\x08\x93\x5f\x9a\x0b\x8d\xb9\xc0\xc6\xfc\xc0\xf2\x76\x6f\xad\x33\xf2\x81\x40\x3e\xb1\x97\x8c\xd9\x93\x98\xf5\x07\x0f\x7e\xd7\x52\x5c\x1b\x30\x2d\xa4\x5c\x01\xef\xab\xbf\x2b\xe2\x77\xcd\xf0\x4a\xf8\xdd\xed\x8c\xdf\x05\xe1\xb5\xd8\x8d\x66\x70\x51\x96\xb0\x1c\x70\x11\xa9\x66\xf0\x17\xb7\x9a\x4f\xe0\x8b\xec\xc6\x1b\xe9\x22\x5a\x7d\x3a\x5e\x8b\xf5\x8a\x04\x2f\xa2\xd5\x3c\xe6\x21\x1c\xc6\xf3\x03\x29\x57\x88\x8a\xf3\x04\x18\x59\x5d\x46\x32\x9d\x2e\xaa\x8f\x05\x98\x90\x74\x18\x0b\x51\xad\x21\x62\x59\x8b\xe1\x2f\x80\x0b\x6d\xd6\x48\xb6\xd3\xb5\xbb\x63\x01\x2e\xfa\xe6\x2f\x78\xdc\xbe\x3e\xe9\x7c\x30\xf4\x00\x7b\x2d\x7a\xd0\x1d\x6d\xff\x4e\xde\xea\x1e\x4f\x42\xb9\xe9\xc1\xcd\x07\x06\xe2\x21\x10\xea\xa2\x72\xe6\xa2\xc1\x58\x03\x85\x00\x41\x45\x26\xd2\x8d\x2c\x32\x91\xae\x33\x3b\x56\xce\x2c\xb8\x53\xce\x4c\x84\x1f\xeb\x9a\x59\xd3\x03\x2c\x6a\xef\xee\x94\x6b\x38\xdc\xe9\x45\x48\xfd\x80\xec\x72\x78\x14\xce\x25\xa5\x9f\x1c\x4c\x91\x5c\xa4\x07\xc1\xb4\xb8\x88\x04\xb7\xd8\xb8\xc6\xda\x0e\xb1\x71\x8d\x45\xef\xb1\x11\x15\x92\x35\xe2\xe4\x22\x23\x4b\x2c\x8b\x8d\x98\xe8\x7e\xc0\x89\x8b\xfb\x45\x72\x8d\xbe\x79\x10\x62\x22\x7b\x90\x83\x6f\xb8\x8f\x85\x09\x43\xbe\x30\xa1\x37\x3a\xe7\x26\xf9\x3b\xf6\xb5\x88\x9a\x5b\xe7\xdc\x36\x3f\xc0\x56\xd6\xc9\x10\x3b\xa7\x26\xf6\x16\x3b\x21\x17\x33\x88\x9d\x90\x4b\xf2\x8a\x9d\x90\x27\x7f\x42\x7e\x37\x84\x9e\x7e\x02\x3d\xfe\x82\x33\x31\xbe\x3a\xe9\x33\x18\x0c\xae\xa9\x64\xe3\x38\x38\x35\xf1\xb0\x38\x38\x35\x43\x3e\xc0\xa4\xbc\xcf\x06\x67\xe2\xbd\x3b\x48\xaf\x3a\xb2\xe2\x58\xd4\xe8\x41\x38\xb5\xe1\x3e\xb8\x91\x86\x07\x21\xe4\xc1\x6f\x2c\x40\xb5\x6c\xfb\x82\x4b\x9d\xee\x8b\x65\x68\x51\x0e\x4e\x45\xec\x39\x1e\x7c\xc3\x14\x78\x70\xdf\x18\x81\x53\xb1\xf4\x96\x38\x26\x3a\xf5\xdb\xc9\x01\x4d\x05\xd0\x33\xbd\x3c\x27\x25\x3b\x31\xe3\x78\x72\xda\xd9\x3d\x8c\xb7\xba\x1c\xcf\xfd\xad\x2e\xc7\xf3\xf8\xfe\xd2\xe1\x17\x4f\x62\x44\x4c\x37\xf2\xec\x30\xd9\x5e\x6b\xfe\x1a\xff\xc3\xd9\xfd\x60\x69\x89\x42\x2a\x38\x7b\x72\x0f\xeb\xb8\x14\x7c\x93\xaf\x1b\x39\x17\xe5\x86\xe2\xf7\x49\x3c\x92\x7f\xd2\xd4\x8e\x05\x71\x9a\xaa\xef\x70\x2b\xbf\xe7\x9a\xa6\xd6\x1b\xc5\x58\xd3\xf6\x3b\x48\xd2\xd4\x56\x43\xf2\xb7\x73\xee\xc9\xc3\x5c\xbf\xc7\x63\xa2\x62\xda\x25\x5c\xa4\xc0\x9d\x21\x71\x31\x51\x07\xec\x12\xbb\x13\xb5\xb3\x2e\xb1\x29\x51\x3b\xeb\xc5\x0f\xda\xdb\x00\x91\x22\xec\x11\x1a\x32\x92\x62\x3d\xdb\xb8\x86\xf4\x1b\x1c\x52\x0a\x76\x8a\x84\x52\x62\x54\x4a\xa4\x47\x69\xc7\x69\x2a\x5b\x12\x88\x12\x15\xab\x2e\xb5\x3f\x25\xd8\x31\x04\x60\x5a\x20\x68\xd6\x89\x23\x36\x3f\x20\xa2\xdc\xe5\x3a\x5b\x24\xa7\xa5\x0e\xa1\x2b\x8b\xe8\x52\x87\x16\xe5\x23\x2d\xf5\x9b\x0f\xb4\x36\xfd\xe1\x03\xf5\x31\xa0\x34\x99\x01\xa4\x7d\xe7\x1b\x7e\x70\xf0\x81\xe0\x38\xd6\x27\xea\x03\x92\x54\x8d\x3a\xcd\xd3\xc9\x3e\xb4\x9b\xd3\xc9\x3e\x74\xa4\xa5\x93\x80\x99\x0a\xe6\x86\x08\x71\x1b\xdb\x4f\x8e\xa3\x84\xed\x12\xb7\xe1\xcf\x0b\x1f\x68\x00\x6c\x87\xb8\x89\x84\xf3\x16\x60\x55\x53\x1b\x8a\xd1\x26\xf6\xf0\x40\xd8\x8a\xe1\xb3\xbf\xc2\x0d\x7e\x91\x3e\x0c\x22\xdc\x07\xa4\xa0\xcf\xd9\x1f\x9e\x86\x2d\xfc\x61\x83\xe1\x69\x14\x7a\xfc\x3b\x38\xeb\x07\x6d\xe1\x69\x38\x33\x3e\x4b\x11\xb7\x6d\x8a\xdd\x1f\x34\xc7\x6d\x6e\xb8\xea\x5f\xc3\xc4\x47\x56\x2b\xfc\xae\x15\x7f\xd7\x9a\xe7\xec\xab\x99\x5f\x74\x16\xb7\x50\xbe\xbf\x6a\xd5\x28\xa1\xce\x66\x55\xb3\x9b\x43\xc6\x2d\x0c\x73\xc8\xb8\x61\x1b\x7e\xa6\x17\x37\x6c\xc2\xcd\xef\x4e\xea\xfc\xac\x78\xdc\xc2\x0d\xec\x7d\x9a\x71\x42\xf8\x41\x45\xdc\x22\x80\x70\x13\x40\xa8\xab\xb9\x93\x64\xb9\x8a\x5b\x3a\xbe\xbf\x24\xd1\xc6\x0d\xfb\x22\x86\xa0\xbe\xd3\xfd\x62\x3e\x71\x4b\xdc\x98\x59\xbd\x67\x52\x63\x57\x87\xd0\xeb\x37\x75\x98\x07\x3b\xd4\xef\xa0\x84\x1a\xbb\x46\x98\x82\x62\xeb\xc6\xcb\xd4\x3d\x9b\x8e\x8a\xb8\x61\xe5\x53\x73\x1b\x20\x0c\x23\x67\x07\xe9\x14\x0d\x09\xe6\x5b\x65\x76\x89\x1b\x98\x6f\xd8\x3e\xdb\x30\xc2\x34\x19\x42\x2f\x7e\x90\xbe\xbf\xda\x47\x98\x8a\xb4\x33\x06\xf1\xa3\x08\xa3\x61\x4f\x9b\xdf\xdf\xd1\xce\x6a\x03\xa6\x22\xba\x80\xf1\xae\x6f\x51\x1f\x4c\x4a\x68\xd5\x23\xc4\x30\x7f\x37\x00\x30\x89\x09\x62\x98\xbb\x46\x7a\xfd\xdc\xd8\xbf\x1f\xcc\x65\xfb\xb0\xbb\xf8\x31\x5e\x89\xd4\x96\x61\xa9\x7c\x24\xe3\x08\x1b\x50\x4f\x1f\x41\x2d\xc2\x74\x31\x64\xd7\x8b\xb0\x5c\x0c\x89\x7a\x11\x86\x8b\x21\x51\x26\x7e\x2c\x13\x51\x1d\xcc\x65\xe8\x69\xd3\x00\x53\xe4\x1a\xd2\x73\x23\x14\x42\xa9\x39\x11\x0a\xa1\xec\x4b\x31\x50\xf0\x29\xa2\xb3\x30\x05\x82\x9e\x36\xbd\x70\x82\xa3\x44\x03\x8c\x43\x3d\x46\x43\x44\x1e\x16\x0d\xf2\x05\x11\x25\x8b\x14\xa1\xf2\xcd\x07\x82\xf1\x9e\x83\x6c\x46\xca\xdd\xd0\xd6\x07\x77\x47\x5b\xab\x78\x0f\xb4\x05\xe4\xd4\xd5\x7a\xd2\xfb\x11\x74\x54\xf2\xc7\x5c\x1a\x23\x6d\xda\xf9\x23\x69\xc5\x48\x9b\x76\xfe\xe8\x0e\x31\xd2\x84\x9d\x45\xce\x71\x5b\x56\x2e\x3f\x68\xec\xc3\x9d\x42\x38\xc9\xd5\x0f\x06\xfb\xa8\x7a\xb0\x73\x4b\x6c\x7a\x70\xf0\x13\x0f\x4b\xf3\x9d\xd8\x40\xa4\xf9\x79\x7c\x44\xe6\x18\xc1\xe6\x8a\x9b\x89\x0b\xa4\xb9\xc2\x96\x1c\x04\x25\xc5\x86\xfc\xd1\x70\x62\xa4\xa5\xb8\xbc\x3a\xa4\xbf\xa3\x8c\x1f\x9c\x31\x31\x06\x32\x16\xb1\x85\x18\x89\xdb\xe1\x07\x6b\xd6\x7e\x40\x10\x9a\x66\x1d\x2f\xce\x49\x30\x47\x4a\x5d\x22\xca\x48\x39\x21\x57\x3f\xe0\x3e\xf1\x27\x60\x80\x46\x64\x5a\xb3\xd2\x03\xda\x31\x8b\xc8\x30\xe6\xd5\x83\x30\x43\xa3\x64\x11\x7f\x5a\xfa\x78\x16\xaf\x5f\x7a\x6c\x2e\x7e\x10\xf8\x86\x96\x8b\xe6\xb2\x22\x86\xb3\xd4\x80\xf1\x7a\x70\xf3\x81\xfa\x80\xff\xab\x0c\xc3\xb1\x93\xd2\x86\xa6\x76\x2c\x14\xeb\xc1\x09\x39\x33\x7e\xc4\xe0\x98\x40\x7a\x73\xa9\x3f\x0f\x26\x51\xc8\xbb\x12\xd3\x72\x30\x88\x4f\xa5\x81\x5d\x2a\x03\x67\x4c\x83\xe7\x87\xa8\x39\x41\xf7\x78\x3f\x00\x9c\x51\x66\xf3\x98\xa0\x8c\x44\x93\x5e\x82\x32\xf2\xbb\x4f\xca\x7f\xfb\x80\xd2\x83\x58\x3e\xc4\xa8\xdf\xbd\x31\x25\x9e\x50\xe3\xc7\xf3\x11\x73\x4c\x7c\xf0\x99\x7c\xbe\x27\x0b\x97\x89\x2c\xe6\xe7\x81\x01\x4b\x0c\xad\x4c\x0e\xd9\xa3\xc0\x2a\xe5\x46\xfb\xd3\x41\x99\x8b\xd6\xa3\x60\x28\x15\x1d\x16\x7d\x3f\x55\xfe\x1e\x3f\x82\x76\x2c\x0d\xfd\xe9\xe4\x2c\x93\x61\xf6\x98\xf5\x7d\xc7\xf7\x42\x65\x99\x1a\x6a\x8f\x59\xe3\x4d\x71\xb3\xc7\x2c\x78\xa6\x82\xda\x63\x56\xff\x1d\xf0\x25\xf7\x8f\xf1\x25\x9b\x94\x89\xf8\x16\xf5\xf3\x44\xbb\x57\xb2\x4c\xa4\xf7\x4d\x07\x4c\x21\x46\x5f\xdd\xed\x64\xc8\x1f\xd5\x22\x96\x83\x07\xb9\x4e\xd5\x72\x80\xe3\x0b\xbe\x03\x1c\x5f\xe0\x1d\x5c\xb3\xe1\xd7\xc9\x7c\xfd\xc2\x39\xdf\xd7\xf4\xa7\x00\xd8\x92\x66\x7f\x92\x6c\xc4\x15\xcb\x89\x13\x54\x07\x46\x99\x07\x88\x8f\xa7\x32\x35\xca\x26\xb9\xa5\x9c\x40\xb6\x07\xa3\xcc\x9c\xc4\x4c\xca\x3c\x6f\x5a\xd4\xe8\x38\x6d\x36\xf3\x85\x32\x09\xaa\xe9\x3c\x2f\xe7\x33\x9b\x02\xe6\xce\x58\x6b\x61\xf3\x2e\x68\x0b\x1a\x78\x4a\xe3\x8b\x58\xee\xf9\x7d\x13\xf0\xcf\x42\xae\xe0\x7d\x78\xda\x69\xf5\xea\x3c\x37\x9a\x24\xc0\xba\x61\xb6\x41\xcd\x1b\xe2\xc4\xe7\xf3\x1a\x40\x0b\xda\xc7\x35\x80\x16\xfc\x79\x9e\xb4\x20\xde\x51\xa7\x10\xd7\xc4\x5b\x6a\x05\xa5\xea\xd8\xab\xa0\xf4\x4d\xbc\xbf\x56\xd2\x8a\x7a\xaf\x09\xef\x27\xb5\x33\x7e\x17\xec\x15\xd8\xd0\x51\x52\x6b\x45\x3b\xab\x4d\x4a\x10\x38\x73\x27\xc9\x31\x1a\x6b\x3d\x40\x68\xe2\xc1\xb5\x92\xc9\xbc\x1e\x4c\x5a\x69\xee\x0f\x9b\x3f\x8c\x1f\x9d\x3c\xb5\x62\x29\x04\xfc\xe2\x4f\x62\x9b\x75\xed\x84\xe2\x37\xb8\x58\x92\xce\xea\x24\xd5\xa9\xfc\x08\x41\xc7\x4d\x75\x48\x0f\x96\x34\x23\xea\x6e\x1b\x79\x9c\x8e\xf0\x16\x16\x7f\xda\xf4\x80\xc3\x6a\xbf\x37\x88\xde\x51\x26\xf7\xd8\x32\x05\x20\xed\xe1\x56\x16\x95\xe9\x8d\x46\x9e\x26\x4c\xb7\x1d\x3c\x4b\x0b\xdf\x8e\x87\x90\x7f\xba\x18\x38\x23\x6a\x14\x17\x1c\x30\xc4\xc4\xa8\x8d\x78\x00\xae\xb0\x89\x54\x0f\x58\x03\xa2\x19\xdb\x11\x09\xc6\xc7\xfc\x12\x0f\x9c\xdc\xd1\xac\xf0\xa8\x84\x3c\xf8\x41\xe0\x03\x8d\x82\x03\x30\x9a\x06\x8f\x51\x7e\x07\xf9\x31\x1a\x15\xc8\x4f\x17\x37\xb0\x51\x8a\xa8\xe8\xee\xf0\xb5\x59\x68\xbf\x7b\x81\xae\x56\xfc\x46\x83\xc7\xf2\xf5\xc6\xc0\x27\xaf\x37\x0e\xbc\x21\x40\xef\xc9\x64\x73\x14\xd7\xb9\x61\x03\xcc\x16\xc5\xee\xa9\xe1\xe7\x9a\xdd\x8e\xdf\x5f\x49\x6e\xcf\x78\x4f\x39\x38\x5b\x10\xbe\xa7\x20\x9c\xcd\x09\x6e\x1a\x00\x93\xc4\x9e\x7b\x30\xc8\x42\x8c\xf4\xc6\xcc\x53\x2f\xee\x12\x71\x17\xa5\xfa\x93\xf1\xfd\x55\xb6\xe2\x3e\x8f\xd9\xee\x6e\x4f\xf2\x6c\xb2\x07\xc6\x7b\x1e\xd2\xa9\xea\x28\xba\xe7\x1e\x48\xde\x13\xf7\x0e\x54\xca\x3c\x17\x6f\xc4\xd7\x14\x79\x67\xe2\x8d\x13\x39\x07\x6d\x81\x1b\x71\x34\xd9\xfa\xc0\x8d\x48\x9a\xe4\x03\xe8\xc6\xbe\x4a\x43\x07\xc2\x8d\x7d\x95\xc7\xf0\x1b\x73\x9f\x8f\xe0\xa9\x23\xa2\x26\x5b\x0a\xba\x11\x53\x93\x86\x18\xdb\x8d\x43\xa9\x6c\x62\x0d\x37\xec\x96\xef\x4e\x0f\xcc\x25\x18\x1b\x30\x64\xe6\xad\x69\x2e\x88\x9f\xc9\xdb\xeb\x13\xda\xd4\x44\xd0\x30\x4e\x84\xf4\x5a\x65\xd8\x37\x87\xce\xbe\x9b\xde\x2e\xdb\x09\xee\x33\x61\xd1\xb4\xbd\xef\x29\x7b\xc5\xaa\x8d\x77\x33\xf0\xa6\x4a\x38\xbb\x61\xe1\x4c\xd6\x8b\x6f\x5a\x35\xe5\xd1\x8a\xf7\xc9\xf8\xa2\xee\x41\x20\xe0\x45\x13\xdb\x15\xbe\xbf\xd2\x66\x94\x53\x43\x32\xe7\xba\xe9\xf3\x7a\x7f\xd1\x38\x33\xbf\xd1\x27\x9c\xd2\x3d\x6e\x28\xd7\xa9\x1b\x17\x50\xae\x93\x2d\x02\x37\x82\x84\x92\x8c\xab\xf1\x9e\x87\x63\xa8\xc6\xc5\xd4\xb2\x52\x32\x65\xdc\xa0\x0c\x9d\xbd\xf7\x7d\x60\x48\x21\xf7\x86\xe3\x31\xfb\xf7\x49\xad\x43\xba\xcd\xfd\xc0\x04\x21\xd1\xe5\xd9\x68\xdc\xda\xd4\x9e\x4c\xcf\x47\xfd\x33\x79\x6f\x96\xad\x2a\x3e\x53\x47\xcb\x66\xd6\x0f\xcc\xaf\x8a\x07\x8a\xcf\x3c\x7a\x73\x90\x28\xf0\xcc\xb3\x37\xc5\xe6\xef\xdb\xfc\x3d\x78\xbc\x89\xb2\xa2\x2d\xfd\x4c\x75\x2d\x47\xe9\x03\xcf\xd4\xd6\x52\xec\xf5\x27\xa7\xd3\x33\x35\xb9\x94\x86\x07\x3f\x67\x67\xc1\x9d\x5f\xb3\x1d\x0d\x3c\x18\xd4\x0b\xf8\x67\xb6\x85\xbc\x27\x6c\x68\x0b\x98\xa9\x07\xa6\x50\xfd\xfb\xe4\x57\x43\xec\xe7\x99\xe7\x52\x8e\x12\xbb\x9e\x50\xbf\xbf\xb2\xed\x08\x0f\x82\x90\x92\x91\x31\x55\x84\xd4\x3c\xd9\xa9\x36\xe6\x24\xae\xfc\xcc\xe3\x23\xa7\xe8\xfe\x0f\xb4\xfd\xfe\x39\xbf\xcf\x7e\x7f\xd2\xdb\x90\x35\xeb\x99\x92\x4d\xce\xc5\xed\x49\x0c\x41\x1c\xfb\x41\xf4\x51\x94\x65\xe6\x99\x72\x7f\xea\xda\xdc\x4f\x9c\xfb\x4e\x4e\xaf\xf8\xcc\xd3\x2b\xda\x4e\xf8\x20\xd0\xe8\xb5\x58\x71\x2e\x6e\x15\x83\x79\x22\xf6\x83\x76\xfa\x33\xcf\xb6\x98\x8b\xc7\xdb\x7f\xc7\xff\x9f\x78\xa0\xed\xfe\xe6\xfa\x79\xdf\x3f\x53\x67\x8d\xa1\x19\x9e\x39\xbf\x66\x7c\xc1\x12\x3e\x4c\x4c\x30\x84\x0f\xc9\x56\x0f\x62\x90\xe4\xb8\x88\x4f\x22\xe7\xf1\xfb\xbf\x3f\x6f\x9e\x84\xf3\x46\x52\xc5\x33\x15\xe0\xac\xc0\xb5\xf8\xa4\x8a\xb6\xf0\x91\x1a\xda\xee\x7f\xf2\xf5\x2a\x0e\xf2\xc0\xb2\x9e\x8b\x17\x34\x4d\x04\x28\xde\x2e\x3e\xe9\x40\xdb\x1f\x9c\x73\x77\x18\x61\x53\xc3\xce\x43\x3c\xfe\x41\xe4\xd1\x78\xf5\x37\x45\x14\xc5\xe8\xc4\x07\x71\x47\xd1\xbb\x3d\x07\x1c\x76\x02\x70\xca\xb2\xa9\x78\xc3\x4c\x85\x3d\x59\x43\x7d\x60\x9f\x54\x30\x4c\x7c\xa6\xfe\x9e\x6c\xb3\x7d\x72\xc5\x61\xe9\xfe\x1a\x76\xab\xe0\x9d\xea\x7d\x51\x84\x68\x7c\x60\xe0\x94\x67\x21\x3e\x79\xee\x6e\xb9\x6e\xe3\x93\xe7\xa9\xd6\x8b\xc7\x9f\xf3\x8f\x9e\x5f\xbe\xbe\xbf\x8a\xc2\x10\xe2\x93\xef\xd9\xae\xfe\xfe\x41\x5b\xf0\x4c\xb5\x34\x65\xc9\x52\x4f\x99\x1b\xb8\x7b\x43\x16\x58\x12\xc5\x4d\x9f\x92\xe6\xf7\xde\x00\x05\x07\xcf\xe6\xdf\x21\x15\x19\xfe\x29\x44\xa6\x4d\xdc\xf7\x29\x73\xfe\xc5\x04\x53\xe6\xfc\xab\x37\x58\x19\x68\xfb\xfd\x39\xff\x6a\x02\x45\xb0\x51\x32\x3d\xc0\xef\x5f\xcd\x8d\x11\x6a\x64\x13\xcd\x83\x30\x80\xf1\xea\xff\x01\x81\x0b\xdf\x94\x1d\x75\x40\x3d\xb4\x9d\xf8\x7d\x9a\x4e\xa4\xa6\x3e\x53\x39\x89\xb5\xf8\xfb\x3c\xf1\xa5\xc3\xfd\x99\xca\x49\x92\xf3\x2a\x3e\x53\x39\x49\xd9\x1b\x0e\xf1\x01\xd9\xc7\xd9\x53\x27\x02\x5e\x04\x5e\xc7\xe4\xd0\x5e\xa0\xa9\xbd\xa4\xec\x05\x9f\xea\x4b\x0c\xcd\x00\x9c\x20\x10\x21\x6c\x2a\x2f\xa9\xbd\x06\xbc\xe7\xef\xc9\xbf\xcf\x0d\x50\x25\x61\xc2\x13\x12\xa3\x17\x0c\xb1\x01\x79\x48\xfd\x82\x2b\x24\xa4\xfa\x93\x50\x83\x08\x3f\x49\xb0\x4c\xfc\xb4\x89\x9e\x61\xe8\x11\x7b\x34\xbc\x5c\x6d\xa2\xe7\xb5\xdc\x88\x3c\x7a\x9d\x3f\x0c\x22\x90\x28\xf9\xb4\xf1\xfd\x55\x5f\xe7\x4b\x9b\xd8\xb1\xd9\xf1\x69\xd4\x8c\xfc\xfd\xe4\x8f\x9b\xb7\x23\xa3\x8e\x5e\xed\xfb\xfb\xab\x46\x49\x80\xcf\x54\x71\xa2\x05\x98\xa7\x6f\xf3\x77\xf7\xd7\x03\xb6\xaf\xbe\xef\x73\x7b\x14\x9f\x27\x53\x4b\x88\xd1\xf0\xf5\x8c\x30\x36\xf7\x07\xed\x46\x46\x8e\x07\x5e\xc0\x6a\x61\x61\xea\x10\xd1\x86\x86\xa7\xcf\xf3\xe1\xb5\x9d\x3a\x42\x84\x5e\xe3\xef\x73\x7c\x6f\xa7\xa9\x61\xd4\xe4\xf3\xa5\x9f\xdf\x5f\xf5\x45\x7e\x7d\xce\x7f\x98\x1d\x21\x0a\xa1\x9b\xdd\xd1\xc5\xe8\xef\x07\x5d\x1b\xfa\x7e\x84\xef\xaf\x5a\x0d\x3f\xe2\xb4\x5e\xe7\x1f\x02\xb5\xb2\xf9\x39\x0c\xf3\x76\xae\x3c\x03\xeb\x6f\x76\x35\xd5\x91\x14\x86\x7f\x6f\xdf\x5f\x55\x51\x7b\xf1\x99\xca\x48\x6d\xde\x9e\x08\x57\xc8\x3e\x8f\xc6\x9c\xbf\xc5\xdc\x67\xea\x26\xb1\xbf\xc6\x9b\xec\x51\x61\x45\xf1\x19\x17\x84\x29\xd1\xd3\xd4\x5d\x62\x32\xfd\x4d\xd5\x25\x16\xcb\x1f\x53\x75\x89\xc3\xec\x97\xa1\x0e\xc1\xdb\x75\x8f\x10\x08\xfc\xc2\x3c\x1f\x5e\x02\xd2\x54\x6d\x52\xb6\x40\xb2\x4f\xfe\x30\xbc\xfd\xa1\xe9\x34\x9f\x5f\x7b\xfb\x9d\x8c\xfd\x4c\xc5\x27\x75\x13\xe0\xd4\x7b\x52\x31\xbf\x9e\x6a\x4f\x0b\xde\xad\x53\xeb\x69\xc1\xe7\xd9\x4e\xcb\x8f\xfb\xbb\xbe\xbf\x7a\xb5\xb4\x3a\x55\x9e\x94\x4d\xb0\xfb\x03\xfe\xaf\xfe\x11\xb9\x91\xbd\x61\xa6\x46\xd4\x82\x37\x30\xac\x74\x41\xba\xdd\x03\x7d\x28\x59\x40\x38\x32\x36\xb8\xe0\x3f\xe6\xfc\xcb\xab\x3f\xf0\x47\x9f\x4f\x53\x7d\x8a\xc5\xf8\x3b\xb0\x01\x4c\x70\x07\x63\xe4\xdc\x9e\x0c\xe0\x25\x5d\x1f\x70\x56\x7b\x03\x1f\x2b\x36\x59\xed\x0b\x76\x3d\xb7\x61\x88\x93\xee\xfa\x40\xf5\xb2\x76\xf1\xd0\x3d\x6e\x79\x63\x6a\x5e\x69\xb3\xc0\x36\x15\xaf\x96\x5f\xef\x33\xba\x42\xf3\x85\x1d\x31\x47\x7f\x3f\xd7\xd7\x6a\xeb\x03\x83\x48\xb2\xba\xf2\x20\x32\xa5\x7a\x07\xd0\xb4\xe8\x1d\x05\xcb\x62\xb6\x44\x38\xf5\xb8\x96\x7d\xe0\x4f\x35\x2e\xbd\xd4\x0b\x98\xae\x87\x0f\xb0\xa9\xd5\xc5\x66\x00\x2f\x08\x00\xa6\xf8\x2b\x41\x1d\x5a\xfd\x27\xba\xb6\x3f\xc3\xa7\x6d\x6a\x33\x3d\x7d\x36\x58\x82\x3b\x5b\x01\x8a\x09\xfe\x6c\x49\x43\x09\x7e\xe7\x5a\xfd\xeb\x44\x7e\x7d\x7d\x4c\xc7\x73\xfb\x49\xdc\x40\x42\xe6\x4f\xab\x1f\x63\x49\xda\xa6\x6c\xde\x25\xaa\x25\xb8\xa2\x43\x8c\xc1\x0f\xe0\x9f\xfb\x18\x11\x12\x9c\xd3\x21\x2a\x3b\x27\xd1\x3d\x5d\x65\x05\x4e\x1b\xfc\x33\x31\x34\x8d\xb1\xfc\x0d\x1f\x86\x9b\x98\x17\xe4\x13\x23\x6d\x0f\x38\xae\xc6\x7c\x30\x63\x21\x00\x6e\x80\x2a\x33\x75\x8a\x13\xc8\x1e\x3e\x0c\x3f\xc5\x29\x50\x77\xc9\x93\x09\x2e\xa5\xae\xb8\xf7\x04\x8f\x52\x57\x1a\x4c\x8a\x98\x93\x02\xe1\x13\xc2\x39\xbb\x14\x94\x14\xa7\x40\xdd\x95\x63\x93\xe2\x14\xa8\x5b\xfd\x44\x02\xa4\x38\xe5\xe9\x2e\xef\x48\x8a\x70\xe4\x2a\x86\x3c\xc1\x61\xd5\x95\xdf\x93\xe0\xb1\xea\x4a\xe1\x49\x71\xca\xd3\x5d\xee\x96\x14\xa7\x3c\xdd\x95\xc3\x94\x62\xc6\xfc\x8a\xdb\x34\x11\x6a\xfe\x53\x9e\xee\xca\xf2\x49\x70\x80\x75\x85\x3c\xa4\xb8\xfc\xfd\x43\x0f\x0a\xac\xc5\x43\x00\xe3\x44\xda\xe4\xb7\x4b\x88\x8a\xeb\xa1\xba\x8d\x11\xb4\x04\x71\x60\x84\x2a\x8c\x0c\x60\xb8\x68\x06\x30\x91\x6d\xd9\x4b\x34\x80\xe2\xea\x76\xe3\x0b\xee\x01\x38\x16\xe1\x21\x86\xae\x4b\x46\x4e\x71\x1e\x4a\x61\xcb\x5d\x48\x83\x5f\x6b\xcb\xdd\x5f\x9c\xec\x52\x68\x9e\xe7\x52\x4f\xc1\x5f\x00\xcd\xaf\x59\x3f\x9c\xb5\x5e\x80\x57\x6b\xcb\x7e\x03\x46\xb5\x2d\x0f\xcd\x7b\x9e\x14\x5d\x4e\xad\x14\x77\xae\xbc\x28\x67\xc7\xca\x17\xf7\x88\x95\xaf\x9a\x05\x4e\x0a\xe5\x9f\xa5\xb8\x03\xa4\xea\xfe\xb0\xf2\xe2\x0c\x88\xf1\xeb\x4a\x6e\x4b\xf1\x81\xa6\xe5\xfd\x89\x18\xb5\xbe\x65\xb7\x11\xd4\x20\x52\x65\x9c\x5a\x50\x1c\x57\x42\xa4\x5a\xd7\x59\x9b\xd2\xc6\xb4\xb5\x8f\x76\x9b\xe8\x60\x0c\xf2\xf2\xa6\x04\xdf\x76\x50\xf4\x59\x4a\xf0\x6d\x87\xfe\xd1\xb7\x12\xc3\xdd\x82\xbc\x96\x89\x01\x6f\x41\x81\xad\x89\x21\x6f\x41\x71\xab\x09\x41\x6f\xad\x88\x3e\x52\xc8\xf0\x62\xea\x83\x50\x30\x0f\x01\x11\xc0\x76\xb4\x65\x52\x20\x94\xc3\x1f\x20\x2e\x40\x7b\x26\xd1\x17\x2e\xdb\x5c\x4a\x81\xfe\x17\xf5\x18\xe1\x21\xd1\x26\x49\x91\x98\x13\x62\x10\x52\x17\xe4\xac\x4d\x0c\xa9\x0b\x43\xbc\x32\xc5\x8a\x39\x08\x84\xd8\xd0\x16\x08\x71\xc7\x88\xc2\x0a\x02\x42\x8a\x21\x82\x2f\x3c\x8c\x20\x24\x24\x6c\x4b\xf1\x0d\x04\xd0\x05\x2b\xda\xf3\x48\x9e\x14\x1d\x05\x52\x22\x04\x1a\x21\x01\x2b\xd2\xd4\x53\x82\x29\x20\x8c\xe4\x37\x10\x2e\x21\x56\x93\x90\x88\x14\x46\xd2\xb4\xc1\xbb\xb6\xec\x21\x4e\xc2\xe0\x2f\x08\x75\xd2\xea\x23\xa9\x28\x0c\x9d\x57\x09\xec\x68\xcb\xe5\x27\x07\x50\xca\x70\x2c\x89\xb7\xa5\x4c\x88\xbd\x0e\x53\x79\x6f\xa5\xbb\xf7\x1d\x73\x16\x92\x32\x28\xc9\x94\x35\x95\xf3\x2e\x6b\x55\x4a\x93\xd7\xb5\x32\xd4\x5f\x21\x52\x3d\x22\x42\xef\xc3\xd0\xa6\x4e\x85\x2b\x6f\x52\x29\x80\x51\xfc\x3b\x41\x9d\x0b\x0a\xbf\x4c\xa9\x21\x72\x47\xcc\x2a\x4d\x0d\xa9\xd5\x57\x1b\x67\x74\xd4\x2a\x4c\x0d\xa9\x55\xaf\x2b\x02\x75\x36\x43\x80\xc0\xe6\xa0\x48\xc7\x84\xa0\xc4\xbe\x19\xc5\x83\xdb\x41\xab\x34\x00\x61\xf4\xfb\xd8\x0d\x5e\xb4\xc1\x0d\x59\xdd\x01\x18\x8d\xf7\xdb\x8e\x01\x74\xa4\xc1\xe3\xdf\xaa\x89\x9f\xbe\x67\x43\xbc\xe3\x00\xe8\xfe\x1d\xfc\xdd\xab\x70\x10\x60\xf5\x77\x80\xb4\xa3\x56\xed\x60\x7f\x7e\x9f\xc1\x58\xea\x0f\x22\xa2\x95\xde\x94\x20\x13\x4a\xa9\x4d\xe9\xc4\x79\x21\x66\x8f\x80\xca\xbe\x99\x2a\x4f\x70\x5e\xb3\xa4\x13\x4b\x10\x34\x81\x0b\x0e\xd0\xa4\xfe\x2e\xf2\x30\x2d\x7a\xde\xa8\xa2\x6b\xbb\x66\x86\x05\x25\xcd\x39\x83\x75\x36\xb9\xff\x53\x66\x8c\xed\xf8\x98\x99\x53\x46\xd0\x6c\x8b\xda\x6e\x19\xd1\x2e\x39\x06\x3d\x40\x26\x43\xf6\x7e\xcb\xc8\x64\x68\xf1\xa3\xfd\xa6\xdc\x97\xb6\xae\x51\xa0\x1e\x36\xd9\x7b\x53\x46\x22\x72\x55\x26\x58\xca\x70\x86\x34\x05\x7e\xa5\x0c\x01\xbc\x27\x71\xec\x8c\x60\xee\x26\x1b\x71\xca\x0c\x96\x96\x4c\x9d\x4a\xa0\x8b\x40\x14\x53\x60\xf4\xb3\x0d\x3d\x15\xa4\x87\x35\xe5\xbd\xa5\x02\x9f\x6e\x53\xaa\x4d\x2a\xd4\xc3\x94\x2f\x9b\x0a\x3c\x4e\x4d\x76\xfe\x54\xa6\x64\x3f\x1f\x7c\xe0\x28\x58\x86\x96\x44\x98\xe5\x42\xd8\xdc\x56\xf5\xc6\x03\xe3\xa0\x12\x64\x13\xdc\xee\xa1\xe5\x8f\x74\x9e\x2a\x02\x3e\x47\xf8\xe8\x13\xa9\x66\x74\xaa\x90\xde\x54\x11\xf4\xdf\xf2\x47\xc3\x4a\x15\x1e\xbc\xa6\x90\xaf\x54\xa1\x13\x37\x89\xf0\xa9\xc2\x71\xd3\x2c\x5d\x34\xb8\xbc\x5b\x11\xe7\x6c\x70\x79\xb7\x22\x5e\xdb\x5a\xe1\x83\xcf\x5c\x5a\xa7\x63\x46\xac\xa7\x61\x5d\x5a\xf1\x83\x1b\xae\x30\xe5\x7e\xa7\x76\x03\x63\xa5\xe9\x0d\x4e\xbf\x08\xf4\xf6\x5c\x7c\xf0\x19\xa5\xc3\xb7\xd2\xca\xc7\x9c\x98\x3a\xec\xd3\x2f\x16\xd9\x13\xf5\x63\xc9\x52\x3d\xf3\x13\x1d\x5d\xbd\x70\x2e\x9a\x6d\xaf\x84\x54\x87\x5d\xdf\x91\x31\x2c\xa5\x35\x75\x38\xfe\x86\xac\xae\xa9\x3f\xfb\xef\x9c\xa0\x69\xe0\xcc\x6e\x55\x34\x36\xe0\xa7\x6e\x55\x5c\x60\x20\x05\xa7\x55\x31\xff\xb1\x23\xcf\x4e\x61\xb5\x69\x40\x75\xdd\x8c\xa0\xbd\x9c\x7c\xf0\x59\xb9\x9d\x54\xd8\x82\xde\x80\xf9\xac\xc9\x5e\x9f\xf6\x8e\x74\xae\x29\xcf\xff\xe0\x80\xda\x4f\x82\x20\xde\xbb\x33\x74\x5b\xc1\xf3\x69\x87\x87\xae\x29\xac\x26\xed\xf0\xd0\x35\x05\x65\xa5\xfd\xc6\x44\x65\xd2\x4f\xfb\xc3\x98\x43\x31\xec\x63\x23\xd4\x42\x16\x7d\xf8\x4d\xa9\xf7\xe9\x40\xb8\x71\x53\x0e\x71\x3a\x22\x63\xd6\x44\x80\x07\x52\x9c\x9a\x12\x7b\xd2\xd1\x08\x87\x14\xa3\x03\xde\xf4\xa6\x94\xbf\x74\x80\xb9\xd8\x51\x97\x8e\xce\x3e\xb4\x24\x07\xdc\xc8\x4d\x59\x39\xe9\x40\x90\x50\x35\x93\x3b\xe0\x37\xad\x43\xac\xf5\x38\xd9\x87\xf8\xc0\xf1\x80\xbc\xcc\x4b\x8e\x07\xf9\x94\xd6\x98\x4e\x04\xe7\xd6\x21\x59\xfd\x44\x80\x42\x93\x11\x2c\x9d\x18\xa5\x0d\xad\xe2\x09\x47\x69\xb3\x70\x74\x21\x5c\xb2\x29\xc4\x23\x5d\xd0\x84\xdb\xf8\x98\x7d\xd3\x95\x48\xb3\x5a\x97\x2b\xe3\x1c\x96\xb8\x7d\x21\x37\xad\x0d\x91\xfd\x05\xad\xa3\x6f\xd2\xae\x2f\xc4\x38\xbd\x4e\xd6\xeb\x5c\x0e\xf0\xcf\x2a\x5c\x88\x68\xed\xb2\x66\xa4\x1b\xfc\xe9\x25\x59\xde\x89\x93\x15\x5c\x37\xf3\xb4\x83\x36\xf9\x5d\x39\x8a\xf4\x88\x1b\x29\x71\x5d\x36\xd7\x74\xe3\xdc\xe8\xb2\xc9\x24\x86\x52\xf4\x4d\xbc\xf6\x66\x3a\x95\x72\x21\x12\xc2\x18\x42\xdf\xc4\xd2\x6e\x66\x42\x2a\x39\x22\xc1\x8f\x10\xba\x37\x17\xcd\xd4\x75\xe8\xdc\x80\xa9\x39\x74\x25\xaf\x24\xd8\x96\xc3\x4b\x97\x85\xed\x2b\xbc\x54\x22\x18\xb7\x42\xb6\x8e\x43\x63\x4c\x0f\x9a\xfe\x73\xb1\x0f\xb1\xb4\xe7\x5a\x38\x5d\x9f\xe4\x2d\xf1\x93\x8f\x62\x96\x37\xa4\x36\x76\xd9\x38\xf3\xc6\x64\x56\xe5\x85\xe7\x55\xa9\x22\x7f\x00\xcb\x0c\x18\xef\x32\x13\x67\x66\xa6\x77\xc5\xc0\xe4\x90\x1f\x3c\xf8\x70\xe3\xcc\x04\x68\xc7\x0f\xe6\x80\x0a\x20\x5d\x87\x73\x0e\x07\x3f\xf9\x78\x0e\x32\xc2\x97\x43\x8f\x1f\xfd\x2a\x87\xfb\xe6\x03\x8d\xf2\xb0\xd3\x0f\x4e\x33\x83\x89\xbb\xce\xf3\x1c\x37\x7e\xf2\xd9\xb6\x99\x29\x93\x59\x91\x48\x39\xae\xd9\x7e\xb4\x9d\xcc\x5c\xad\x2e\x93\x5e\x8e\x17\x1f\x64\x7d\x82\xa0\x80\xae\x8c\xe5\x9c\x20\xdf\x74\x79\xb1\x32\xd4\x93\xd0\x75\x16\xe7\x84\x38\xda\x9e\x3e\x8a\x5f\x4e\x9c\x8b\x92\x52\x73\xc2\xc6\xee\xca\x28\xcd\x19\xba\x62\x17\x49\xe5\xcc\xba\x1c\xaf\x37\x70\x08\x74\x65\x81\xe4\x0c\xbe\xd6\x95\x80\x93\x33\xf8\x5a\x57\x16\x64\xce\xcc\xc8\x97\xbd\x27\x67\xf8\xab\xda\xf6\x31\x47\xe4\x8c\x3c\xc9\x9e\x5f\x0f\x76\x3e\xf8\x10\x4c\xc6\x89\xdf\x73\x55\xa7\xb0\xa9\x76\x9d\xe7\x39\x1f\x9c\xdc\x10\xe8\xdc\xc8\x0a\x14\xcf\x85\x93\x2b\x1f\xa6\x9d\x0b\x32\xb7\x7a\xf9\x48\xcd\xb9\x40\x45\xcc\x0a\x81\xca\x85\x28\x2c\x5a\xa8\xd2\xd6\x9e\xfb\xcc\xa5\x20\x13\xb0\x29\x8f\x24\x97\x83\xa3\x08\x8e\x02\xc0\x46\xf0\x27\x37\x28\xb9\x86\xfe\x83\xf3\x2b\x17\x9e\x3d\xb2\x66\xe7\x0a\x5e\xdb\xab\x56\xa0\x06\xfa\xab\xb5\x77\x2a\x34\xba\x2e\x8f\x78\xae\x4c\xd1\x55\xe6\x65\xae\x3b\xdf\xf8\x70\xf4\x5c\x57\xe5\x9c\xcf\x09\x97\xeb\xce\x51\xb4\x55\x1a\x28\xa1\xd7\x8f\x8c\x91\x1b\xab\x92\x28\x4e\x22\x37\x90\x79\x6f\x9f\x08\xb3\xdc\x58\xbc\x46\x01\xc0\x99\xb2\x4e\x57\x50\x67\xee\x01\x0b\xaf\xe4\x98\xdc\x59\xfb\x44\x39\xf0\xb9\xd3\x97\x2c\xe3\x5f\xee\x19\xeb\xac\xf0\x85\xdc\x21\x3e\x77\x79\xf7\xf2\x80\x79\xbe\xc9\x46\x92\xc7\x0d\x9a\x95\x2d\x21\x0f\x88\x36\x5d\x51\xec\x79\x87\x99\xa5\xcb\x58\x90\x77\xc4\xd3\x75\x9d\x92\x79\x87\x4c\xde\xa5\x36\xe7\x03\xaa\x79\x52\xfd\x94\x7c\xc0\x92\xda\x15\xe8\x97\x8f\xb6\x16\xfe\xd3\xe9\x01\xa5\xa8\x2b\x1c\x2b\x1f\x27\xe1\x10\xa7\x38\xae\xf5\xc6\x67\x2e\xc7\x4d\xed\xe1\xa3\x88\xe5\x93\x42\x98\x8c\x9b\xf9\x44\x10\xff\x50\x68\x67\x3e\x01\xd8\x90\xf9\x30\x9f\x27\xfd\x4d\x62\x3f\x27\x92\xcd\xc6\x26\x8c\x9d\x77\xe0\x27\x9f\x07\x17\x78\xda\x50\x7c\x56\xbe\x70\x4e\x0c\xf9\x50\xf2\xfd\xfb\x08\xa0\x7c\x6f\x88\x83\x7a\xb5\xa9\xe5\x08\x5f\xf7\x06\x2f\x60\x73\x07\x30\xfa\x17\xff\x8e\x90\x9e\xe0\x0e\x06\x7c\xba\xfe\x1d\x5e\xbd\x8f\xf5\x26\xdf\x4c\xca\xcc\x7e\x9f\x87\xce\xeb\xc1\xf5\xfd\x95\x8a\x38\xd7\xbd\xc1\xe9\xfb\xb1\x8b\xe5\x1b\xfb\xa8\xf9\x40\xb9\x11\xb7\x23\xab\x6a\xbe\x21\x90\x28\xce\x27\xdf\x61\x4d\x49\x3d\x42\x51\x51\x6a\x4a\xbe\x43\x41\x07\x51\x6d\x38\x32\x93\xdb\x0d\x81\x3a\x1e\x00\x81\x1e\xda\xa6\x77\x80\x1f\x6b\xb8\xbf\x1b\x28\xf1\xfb\x88\x84\x8c\xa2\xe3\x3b\x4e\xa4\x0f\xe3\x28\xd2\x73\xac\x01\x63\x7f\x87\x65\xe5\x1b\x54\xdd\x14\x60\x9e\x6f\x84\xd2\x6c\x62\x91\x37\xce\x90\x1c\xb5\xee\x37\x34\x60\x07\x1d\xe6\x3b\xd2\x59\x2a\x2c\x43\x23\x6e\x8a\xa2\xce\xf7\x14\xd2\xf2\xe6\x49\xc0\x08\xa6\x72\x2d\xf9\x4e\x53\x7a\x0f\x9b\x09\x01\xe1\x30\x8a\x15\xcb\x77\xa2\x16\xee\x85\x02\x41\xcb\x3d\x96\xef\x29\x4d\xc4\xe1\x85\x45\xed\x1d\x59\x6f\xf2\x9d\xe0\xdf\x1e\xfe\xfd\x79\x07\x9f\xe5\x3b\x33\x38\x4d\x10\x21\x7c\x45\xba\x74\xbe\xc1\x72\xb2\x52\xcf\xf2\x8d\xfc\x93\x9a\x85\x94\xcc\x3d\x98\xfc\xa0\x53\xed\xd3\x90\x19\x21\x65\x26\xd6\x3c\x69\x51\x51\xc3\xf9\xce\x64\x0d\x9a\x52\x46\x74\xa8\xa7\x8c\x0c\xbe\xa6\xc8\xe4\x7c\x97\xf2\xfd\x55\xb3\xd1\x5e\x88\x34\x75\x88\x9a\x35\x4a\x25\xca\xf7\x14\xb0\x72\xf0\x76\x44\xc5\x9a\x64\x5a\x46\xc1\x1a\x47\xee\xe6\x1b\x7a\x58\x98\x4c\xe2\x07\x87\xd2\x5d\x96\xd2\xaa\x36\xe6\x53\x34\xff\x02\x8f\x69\x14\x78\x35\x22\x24\xcb\xed\xc4\xd1\xd4\xc1\x94\x87\xe7\x03\x2d\x4a\x25\xa9\x66\x2d\x42\x03\xad\x8b\x11\xde\x0d\x4e\xe5\xae\x09\xa0\x92\xc2\x90\xd7\x28\xdf\x2c\x8b\xe0\x19\x22\x52\x3b\xcb\xaf\x9d\x6f\x94\x49\xa8\x66\x69\x3d\x02\x67\xc2\x79\xff\x5d\x50\x62\xbe\x7b\xc5\x6e\xf3\xef\x70\x43\x8b\x8b\x22\xb4\x39\x36\x53\xfe\x94\xe0\x73\x30\x19\xf5\x03\x41\x96\x6e\x9f\xef\x20\xc7\x7c\x43\x77\xcb\x2f\x42\x44\x24\x74\x70\x1b\x42\x50\x34\xbf\x80\x25\x69\x98\x0c\x19\x58\xe0\xad\x38\x68\xf1\xd6\x80\x8c\x73\x96\xa3\x32\x23\xce\x39\x86\xcd\x74\x37\x26\xd9\xbc\xdb\x03\x6d\x21\x1d\xa1\x04\x9b\x4e\xd6\x1b\x3e\x9b\xa0\xd3\xfa\xa6\x34\xa4\xd0\xa1\x7c\x4f\x41\xc3\x21\xb7\xf9\xde\x81\x63\x13\x3e\xd4\x53\x9f\x99\xf7\x4e\x90\xfd\x7d\x45\xac\xa2\xa6\x00\x0b\x54\xed\x5a\xc3\x7d\x6e\xac\xad\x09\x40\xb8\xee\x47\xf3\x78\x0f\x67\xa8\x07\x53\x38\xc8\xc1\x1b\x65\xca\x91\xd9\xd2\xd5\x3d\xd5\xe3\xac\xa8\xe2\xbc\x22\x95\x5f\x5b\xf9\xd8\xdf\xa1\xa7\xf9\x3e\x8e\xdf\x85\xbc\x67\x86\x32\x37\xeb\x25\xf7\xd4\x39\x63\x32\x4c\xe7\x54\x63\x8b\x91\x7a\x12\x27\xea\x91\xaa\xf2\x6b\x9d\xe7\x01\x9e\x95\x18\x98\x11\xc8\x9c\x55\xab\x30\xdf\xb0\x06\xd6\xe2\x0e\x3b\x3b\x70\x8f\xf0\x97\x57\x77\x70\x30\xa6\x5b\xed\x0b\x1d\x6a\x0a\x27\x08\xcf\x3b\xe3\x9c\xdb\xb9\x78\xb7\x22\x2f\x34\x27\x1f\xd6\x53\xd6\x8e\xc1\x2c\x17\x95\x7f\x5e\xcb\x38\xd5\x99\xa8\x12\x09\x19\x31\xd0\x59\xb9\xd8\x19\x21\xd0\xa9\x44\x0f\x30\x10\x02\xa4\x09\xd0\xac\xa8\x4c\xb1\x7c\xa3\xe8\x4f\x78\x51\xe2\xd4\x8f\xaa\x17\xe1\xc2\x0c\xa2\xdf\x7f\xd0\xd6\xeb\xf7\x9a\x81\x5e\xb8\x19\xc1\x2c\x94\xdc\x91\x03\x88\x10\xee\x84\xa8\x56\x4d\xe9\x9e\x8b\xb2\x99\x2e\x20\xd5\x87\x2a\x08\x6e\x72\xb4\xd7\x07\x07\xe7\xa0\x49\xdf\xc0\x7a\xf4\x90\x08\xf3\xce\x6e\x2f\xda\x55\x97\xb4\xc3\x48\x7a\xbe\x1f\x9e\x12\x45\x5f\x3c\x11\x87\xb3\x26\x05\x5d\x75\x04\x6f\x9f\xa7\xf0\x0b\xe1\xe1\xa9\xd4\x45\xd4\xe6\xc2\xf8\x83\x79\x90\x45\x09\xfd\xf7\x73\x02\x4d\xfe\x9e\x3c\xcb\xfb\xe9\xb9\x09\xb4\x96\xf2\x21\xdb\xd5\x0e\x43\xec\x78\x4f\x12\x5a\x10\x3b\x1e\x4a\xfb\x89\xbb\x29\x23\xb0\x7c\x76\xdf\xf5\x00\x2e\x35\x31\x51\x46\x86\x07\x65\x62\x64\x86\x86\x9b\x45\x3d\x74\x76\x6a\x2f\x20\xfa\x7b\xc2\x67\x78\x96\x20\xe9\x2f\x60\x19\x95\x60\xf9\x7c\x2a\x51\xaa\x8d\xdd\x21\x45\x1c\xf1\xdf\x49\x89\x1b\x19\xf1\xdf\xa1\x8a\x76\x11\xff\x1d\xc3\x26\xa4\x3e\xa1\x10\x04\x8d\x18\xe8\x99\x28\xee\x92\x8c\x7a\xb8\x8f\x75\xda\x09\x88\xc0\x54\x0f\x61\x79\xaa\xe5\x59\x1e\xff\x8c\x20\xef\x24\x9b\x7a\x46\xd0\xf4\xec\x40\x78\x88\x14\x49\xc4\x75\x10\x16\x9d\x54\x05\x2f\x23\x2c\x3a\xcb\x50\x9b\x19\x16\x3d\x14\x26\x91\x11\x07\x3d\x81\xf4\x17\x88\xf3\xd2\x71\xf3\x2c\xd1\xcf\x40\x52\xf4\x13\x1b\x41\x24\xf4\x9c\xb7\x66\x85\x4a\x8c\xc5\x40\xc2\xfd\x99\x8c\xfa\xb4\x83\xcf\xf8\xf7\xb5\x98\x7e\x80\x50\x60\xaf\x25\xbc\x9f\xf2\x79\x64\x86\x42\x37\xa5\x11\x66\xc6\x3e\x07\xcb\xaf\x08\x76\x9e\x0f\xd4\x05\xc4\xc5\x4d\x5b\x08\xd1\xcc\x71\x68\x07\x20\x9a\x39\xbf\x30\x0d\xe1\xb0\x5a\x3f\x65\x38\x73\x4e\xe2\xdf\x88\x4f\x0e\x32\xa8\x65\xc4\x27\xa7\xad\xb9\x07\x44\x0d\x68\xd3\x21\x3e\x39\x9a\x35\xad\xf8\x64\x53\x4b\x59\x20\xab\xc3\x02\xde\xe5\xa5\x2c\x94\x70\x75\xe4\xac\x08\xe5\xec\x11\x50\x2a\x40\x0c\x1f\x96\xc5\xac\x2c\xa1\x8c\x08\xe5\x89\x36\x8f\x30\xa0\x5c\xf9\x05\xc8\x3e\x12\x88\x11\xa2\x9c\x55\x8d\x28\x3f\x14\x37\xb3\x21\x22\x2f\x34\x40\x93\x7f\x97\x6a\x80\x60\x73\x6d\x1e\xa0\x2e\x06\xae\x11\x96\x48\xa9\x33\xe3\xa1\x31\x58\x99\x38\x19\x51\xc4\xd9\xea\x38\xa2\x88\x67\x9f\xc2\x73\x65\xdc\xb4\x84\x05\xc4\x09\xc7\x60\x31\x1a\x81\xc2\xd9\x3a\x26\x02\x85\xb3\x55\x6d\x04\x0a\xcf\x0f\xd4\x25\x9c\x17\x36\xe3\xc1\x00\x9b\x8a\x89\xa9\xe1\x28\x97\x8a\x88\x58\xde\xd9\x81\x1f\x50\x50\x8f\x1e\x12\x98\x4c\xee\x11\xec\x4a\xa2\x35\xa3\x75\x6d\x59\x45\x74\xee\xec\x51\xa8\xec\x54\x63\x4d\x0d\x30\x3d\x2b\xdd\x3e\x23\x3e\x37\x0c\xc5\x2b\x65\x06\xe8\xb6\xe8\xd5\xe8\x80\x5a\xda\x09\x22\x72\xb3\x6c\xe8\x99\x11\xb9\xc1\xa2\x2f\x42\x72\x5f\x96\x48\x84\xe4\x66\x55\x7d\xc8\x08\xc9\x9d\x1f\x08\x2f\x9d\x09\x49\x86\x69\xad\x84\x1f\x60\x25\x64\x5e\x40\x50\xee\x7c\x41\xab\x3b\x85\xe5\x6c\x93\x06\xa2\x72\xbb\x82\xf4\x33\xa2\x72\xe7\x07\x7e\x80\x28\xbe\xfe\x93\xba\xa6\x19\x31\xba\xf9\x45\xbf\x88\x87\xca\x56\x42\x11\xa4\x9b\x6d\xf4\x43\x90\xee\x1c\xce\xf0\x00\x25\x26\x68\xb8\xf8\xab\xcf\xad\x41\xa6\xe0\x36\xf9\xb3\x8f\x11\x84\xe5\x86\x60\xee\xc9\x30\x3c\x1f\x2b\x30\xf2\x25\xf3\xbe\xfd\xc0\x9e\x12\xca\x20\x3b\x37\x77\x08\xd9\xb9\x48\x9a\x40\xd8\x6b\x18\x3e\x42\x8e\x45\x38\xea\xf0\x28\xe0\xce\x02\x11\x71\xab\xc3\x47\xeb\x41\xa3\x91\x7b\x3c\x88\x04\xaf\x3b\x6c\xa3\x59\xf5\x7c\xf3\x73\x40\x11\x76\x9b\x26\x33\x2f\xfb\x09\x4e\x26\xb9\x0e\xa1\xa6\xe1\x85\xc5\x73\x91\xaa\x3f\xa8\x1c\x52\x40\x9d\x9d\x0f\xb4\xee\xc8\x5b\xb7\x1d\x9d\xc1\xa5\xc9\x67\xca\x49\xb9\xcd\xd3\x3a\x49\xac\xe6\x9e\x27\x02\xd5\xcc\x36\x28\x3e\x9b\x78\x4f\x8a\x40\x96\x41\x2e\xb0\x0d\x63\xfe\x02\xad\x1a\x91\xd7\xc2\xb4\x60\xbc\xe8\x30\x30\x75\x5f\x50\x09\x7c\x8e\xa1\x90\x66\xf7\xa1\x73\x81\xfc\x7c\x70\x5e\xe0\xc7\xde\xd2\x17\xb8\x88\x0f\xfb\x8b\x73\x32\x9b\x99\xf2\x74\xaa\x66\xc8\x14\xa0\x4d\x4c\x53\x80\x6e\xd5\xc4\x71\x43\xa9\x71\x87\x94\x9f\x2d\x81\x3f\x53\x7e\x4e\xed\xd5\x01\x65\x1c\xe3\xfd\x46\xd8\xb9\x41\xbc\x31\xa2\x57\xf2\xe1\x0e\x97\xbc\xfc\x40\xfc\x4d\xcd\x93\x7e\x88\x36\x69\x83\xcf\x03\xcb\x8e\x99\xc4\x14\x7f\x93\xaa\x84\xe4\xe7\xc1\x2e\xae\xee\xa0\x23\x49\x57\x93\xa0\x0b\xfc\xf5\xfd\xc2\x92\x76\xf9\x12\x7f\x7d\xce\x3d\x58\x7a\x6f\x91\x07\x25\x7c\x3e\x4a\x40\x61\x8d\xac\x4d\x06\xb6\x82\xd8\xe1\xb9\x47\x92\x1e\xc0\xea\x50\xfc\x02\x61\xec\x6a\x37\xc2\x90\xf5\x00\x66\x87\x8f\xe6\x52\x36\x18\x4a\xad\x94\x97\x6d\xa3\xa8\xe7\x17\x28\xe0\x16\xf7\x30\xd7\x5a\x87\x54\xd9\x20\xe0\x56\xe5\xdf\x94\x6d\x4a\xb8\x45\x86\xcc\xb2\x6a\x79\xa9\x40\x76\x41\x39\xaf\x2c\xa1\xba\x20\x02\x3a\xbd\x26\x11\xa8\xd2\x7e\x44\x9a\x82\xa2\x5e\x59\x01\xa7\x05\x65\xbc\xc2\xa8\x1e\x61\xcd\xd2\x2f\x50\x8a\xea\x02\x9a\x12\x70\x75\x8f\xa4\x70\xff\x4e\x51\xf0\x23\xb3\x14\xd6\xfb\x6a\xd1\x88\x0a\x17\xc7\x30\xd4\x08\x3d\xeb\x1e\x13\x72\x57\x50\x0f\x91\xb3\x54\x07\x08\x41\x4c\x06\x09\x89\x90\x35\xab\x3f\x24\x42\x8e\xa2\x85\x88\x5c\x5a\x2d\x65\xa4\xf2\x25\x34\x47\x1e\x22\x3f\x2a\xad\x5d\xb6\x88\x2d\xfe\xea\x1d\xe2\xcd\xab\x37\x22\xc4\xd0\x1c\x48\x3b\xf5\xef\xd4\x10\x0c\xfd\x14\xc1\x36\x2f\x11\x63\x9d\x92\x57\x3d\xad\x0d\x28\xf8\x29\xcf\x4b\xd4\x2d\xdb\x27\x30\x45\x6d\x26\xee\xb9\x87\xb5\x26\xc2\x30\x22\xa3\x93\x09\x0d\x9e\xab\xda\xbc\x5f\x32\x51\x2c\x42\xca\x30\xd7\x54\xb7\x17\x08\x1a\x22\x43\x72\xed\x9a\x35\xa5\xf1\xa6\x35\xcc\xc0\x5a\xd3\xac\x33\x6b\x2e\xf9\x77\xee\x9e\x64\x90\xd6\x6e\x31\x48\x54\x19\x9a\xdf\xc0\x99\x15\x34\xa9\x02\xee\xee\xdf\xcb\x22\x7e\x8d\x59\x40\x07\x26\x44\x18\x73\xe5\x1e\x2e\x5b\x59\x74\xe0\x1e\x78\x6e\x1a\x6f\x14\xaf\x9b\x60\x9a\xe2\x74\xda\x5e\x3d\x3e\x04\x5a\x1f\x54\xae\x5d\x12\x5e\x90\xc3\x37\x5e\xe4\x51\x17\x94\xea\xb3\xd2\x4d\x29\xa8\x2b\xad\x87\xc9\x0f\xb8\x47\x93\x96\xbb\x52\x56\x4d\xee\x02\x24\xd6\x3c\x06\x77\x5c\xd2\xf2\x35\xae\xbf\x7a\x58\xf2\x73\xd6\x72\x34\x16\x6d\xf3\x07\xc8\x2d\x8e\x9a\x28\xe4\xe9\xcd\xb8\x6e\x8c\xe5\x11\x8c\xcb\x6f\x65\x92\x6c\x5c\x7f\xb7\x51\xc9\xce\x8b\xd7\xb9\x78\x1a\x70\x89\xcf\x59\x34\x4e\xab\x70\x77\x9b\x02\x46\xd6\x90\x9d\xba\x91\x67\xdd\x49\x52\x59\x68\xe9\x38\x5b\x4d\xf5\x7d\x89\x76\x1e\x94\x02\x83\x57\x6b\x49\xb7\x66\xd1\xf4\x87\x17\xe1\x81\xc2\xeb\x10\xde\x06\xe5\xa0\xee\x07\x6b\xf5\x34\xf1\x01\x39\xc8\xcb\x3d\x05\xd4\x94\xcd\xc2\x07\x48\xec\xd5\xc1\x41\x10\xfc\xc2\xc9\x1e\x05\xf5\x92\x50\xab\x3e\xd9\x49\x63\xe6\xd1\xfb\xa2\x31\x4d\x63\xa7\x5d\xcf\xd8\xdc\xe9\x86\x70\xfb\x82\x5e\x29\x28\x0f\x9a\xbc\x8c\xbb\x03\xc6\xd3\x57\x1b\x0c\xc2\x3c\xfc\xc0\x41\xd3\x85\xa8\x83\x36\x08\xc1\x88\xdc\xaa\xec\x49\x2c\x11\xd5\xe7\xf1\x41\x9a\xf5\xc1\xc2\x40\x83\x4d\x78\x38\xb9\x36\x66\x10\xb4\xe7\x9a\x05\x9d\xb4\xc2\x99\x0d\x9e\xd4\x4c\x0d\xe4\x0a\xa3\x74\x0f\xb4\x83\xbc\xba\x20\xae\xbd\x2f\x90\xd1\x14\x5f\x40\x90\x29\x99\x00\x90\xd2\xa4\x1c\xe9\xb2\xc1\x64\x5b\x9b\xbb\x84\x13\xb8\x0e\x61\xfa\xa2\x3e\x64\x96\x71\x11\xca\xf1\x93\x30\xbb\xb2\x5d\x05\x45\x09\xdc\x3d\x78\x9a\x77\xf6\x05\x57\xe4\x10\x0e\x58\xfd\x57\xc6\xa1\xb2\x5d\xc8\x5a\xf5\x4e\xa6\x05\xd7\x3b\xff\xa2\xba\xe3\x4d\x72\x93\x14\x7c\xa0\x2d\x91\xd3\xf4\x77\x83\x16\x3c\xe6\x9d\xf9\x82\xe6\x7c\x63\x2f\x1b\x69\x0c\x58\x48\xde\xec\x37\x52\x4f\x2d\x7c\xdd\xf4\xad\xfb\x90\xbd\x69\xcb\xc9\x1e\x03\x86\x0c\xa3\xf5\xc6\x34\x5e\x40\x72\x6b\x67\x3d\x78\x58\xa9\x6e\xd3\xbc\x1e\xda\xd5\xcc\x78\x59\x7c\xa3\x99\x5c\x1e\x6e\x23\x23\xf7\xe1\xee\xd7\xa0\x0f\xe7\x25\x7a\x7a\xc8\xa3\x4c\x81\x0f\x64\x85\xe1\x21\xc8\xa2\x3c\x2f\xd8\x7d\xab\x57\xe7\x59\x7b\xfb\xd3\x25\xeb\x7b\xd6\x8f\x5a\x55\x18\xaf\x55\x75\xe7\x4f\xe1\xcd\x42\xca\x75\x28\xbc\x47\xa8\xea\xe2\x87\xc2\x7b\x84\x86\x04\xfc\xc2\x7b\x84\xb2\x8c\x73\x25\xd0\x74\x3b\xfc\x02\xc5\x07\x31\xd2\xb0\xe4\x50\xb1\x45\x5c\xf0\x13\x2d\x5f\x04\x88\x99\x51\xec\x24\xc0\x43\xaf\xa8\x85\x82\x9a\xa1\x39\x48\x1a\x0f\x2b\xba\xc2\x43\x06\xea\x51\x49\x6d\xb2\x07\xe3\x01\x62\x67\xfc\xd8\x6b\x4a\x58\x62\xa7\xd8\x24\x6e\xf3\x99\x0f\x34\x6f\x48\x95\x8a\xfd\x2a\xa8\x53\x9a\x55\x0e\xaa\x84\xc8\x8d\x28\xa2\xc3\xb5\x3a\x49\x95\x54\x0b\x6f\xcd\x09\x16\x30\x70\x49\xce\x7c\x20\xc4\x25\x24\xe0\x06\xbf\x40\x0e\x24\x29\x07\xb7\xe4\xcc\x2f\xd4\x67\x5a\x31\xe8\x7e\xa3\x01\x2a\xbf\x40\xca\x97\x78\x88\x3b\x71\x66\x17\x42\x55\x22\x26\x0c\xc4\x81\xb6\x10\x01\xb7\xbc\x62\xab\x0a\x2f\xb3\x51\x19\x90\x12\x68\x68\xb5\xb4\xc0\xfb\x6c\x54\xa5\xb6\xf0\x3a\x1b\xdd\x55\x50\x78\x9b\x4d\xf2\xac\x33\xca\x2a\x78\xb1\xe1\xa6\xaf\xda\xfe\x08\x18\x8c\xcd\x8b\x9f\xa9\x41\x08\x4b\x19\x16\x99\xe1\x36\x6b\x3c\x1b\x40\xd6\x85\x71\xff\xb0\x9f\x98\x56\x60\xb6\xb5\x90\x86\x78\xc4\x39\x21\x75\x00\xbb\x6d\x34\x69\x94\x88\x0e\x05\x50\xe1\xca\x4b\xf8\xc0\xe5\x35\x59\x25\xbb\x0a\x2b\xc4\x56\xc5\x1c\x15\x5c\x55\x33\x1f\xf8\x0d\x5a\x37\xba\xfb\xdc\x51\x7c\xc6\xed\x93\xa5\x0c\xd4\x5e\xfc\x48\x63\x56\x3a\x99\x86\xa0\xae\x84\x52\x68\xa9\x64\x36\x42\x3b\xaa\x3b\xf8\x30\xe3\x1d\x32\xc1\x12\x12\xee\x90\x09\x4e\x9f\x2d\xb8\x43\x26\x2a\xa1\xbd\xe0\x8e\x18\x17\xe0\x29\xbc\x23\x66\x54\x8f\x00\xcd\xa4\xfe\xc4\x43\x54\x70\x7d\x4c\x8e\x66\x4c\x8d\xe7\x9c\x3a\x63\x38\x79\x32\x19\x34\x6a\xe0\x12\x9e\xc3\xb2\xd1\x0a\x5c\x5c\x05\xa3\xfb\x2d\x4a\x60\x58\xb6\x74\x10\x5c\x04\x93\x64\x0e\x2a\xbc\x09\xe6\xcd\x75\x1a\x23\x33\x4d\x59\x8d\xb1\x74\xda\x5c\x8d\xd6\x4d\x49\x29\x01\x52\xa8\xb2\x76\x4b\xe8\xf1\x5d\x92\xa8\x84\xbe\x26\xa1\x21\x96\xcd\xd6\x3c\xa1\x63\x55\x8a\x7b\xe0\x6d\x00\xfe\x00\x15\x93\xa2\x47\xc4\x09\x20\x75\x20\xa0\x2c\x5b\x4b\x66\x6c\x1d\xd4\x1f\xdd\x01\xe4\xa2\xd7\xef\x6b\x0e\x86\x00\x65\x91\xa2\xda\x03\x65\x23\x24\xe4\x04\x18\x68\x15\x1c\x58\x50\xcd\x38\x29\x0b\xbf\xa0\x9c\x71\x56\x24\x60\x09\x83\x21\x2e\xee\x8f\xc9\x28\x66\x38\x30\xb1\xbe\x78\x37\xf3\x47\xdd\x21\xcb\xb7\x9a\x21\xc1\x3e\x9a\x65\x71\x2a\x01\xc1\x09\x31\xb9\xbd\xb0\xec\x1e\xb0\x1f\xa5\x00\x07\x14\x2e\xb0\xb6\x1a\xf6\x8a\xdf\xb5\x4c\x28\x54\xa0\x8c\x92\x12\xa6\x74\x9b\x2c\x7f\x04\xe4\x5c\xb4\x64\x9e\x88\xe8\x04\xc5\x67\x95\x00\x69\x56\x41\x74\x05\x01\xcc\xd1\x0a\x77\x38\x70\x9e\x99\x34\x61\x81\xed\x9e\xc1\x94\x6e\xf3\x66\x06\x72\x2c\x2e\xee\x0e\x77\x3e\xd0\x14\x0e\x4a\x9a\xc5\x43\xa0\xfa\x95\x04\xe4\x70\xc0\x48\x62\x2c\x1f\xe4\x72\xb2\x82\xe0\x1a\xa2\xf9\x40\x5d\x9e\x34\x5e\x9a\xcf\xb1\x30\x9b\x19\xe5\x89\x59\xf8\x44\x84\xcd\x36\x7b\x61\xcf\x05\xb5\x3f\x00\xf1\x4a\x4c\x0b\x27\x3d\x39\xde\xe4\xe7\x81\xa3\x40\xf3\x9e\xf2\x73\x1a\x9e\x25\x0b\x02\x54\xff\x4e\x7d\xd9\x67\x0f\x43\x24\x5f\xbc\xfb\x5a\xb3\x12\x0c\x0c\x71\xb0\x98\x8f\xcb\x8d\xec\x47\x2e\xbc\xca\x68\xbc\xf8\x20\x6c\xae\xd1\x6c\xef\x42\xb5\x59\x23\xee\x62\xf0\x8c\x80\x64\xea\xd4\x8b\x53\x5d\x84\xd2\x6c\xe2\xde\xde\x95\xc7\x4a\x98\x22\x71\x6a\xde\x52\x37\x25\x47\x6f\x81\x7b\x01\xad\x69\xdd\x40\xb5\x19\x0d\x04\xde\xe1\x43\xf9\x26\xa6\xdd\x01\x0a\xab\xf9\x38\xb9\x11\x0f\xe0\x33\x1a\xe2\x6f\xb4\x40\x76\x53\xfa\x91\x3a\x15\x1e\x82\xac\x0f\x20\xed\xea\xd2\x81\x12\x9e\x85\x67\xd1\xdb\xb3\x36\xa1\x1f\xd0\x79\x29\x85\x0c\x25\xc3\x5d\x6f\xad\x84\x87\x19\x2e\x82\xf9\xa1\x9d\xc2\xb2\x0d\xcc\xbc\xd1\xf4\xf7\x20\x38\xce\x93\x7e\xe8\x01\xf0\x00\xb0\x8f\xfe\xc8\x33\x54\x02\x2c\xc0\x8a\xbd\x29\x28\x60\xee\xea\x6f\x05\xe5\xca\x63\x11\x55\xc4\x0d\x3c\x45\x4c\x88\xd5\xcb\x87\xf9\x28\xaa\x97\x27\x85\x0b\x15\xe4\x1b\x44\x85\x40\x95\x55\xbb\x5c\xb4\xbe\x2a\x95\x6f\x06\x00\x64\x57\x3c\x20\x00\xd4\x8a\xb0\x4c\xb9\xca\xc3\x14\x56\x29\x6f\x36\x7b\xb2\x4e\x79\xd6\x2d\x8d\x25\x52\xaa\x96\xf1\x21\x22\xd9\x5b\x01\x0f\x25\x32\x7c\x41\xc1\x35\x25\x22\xf0\x55\xd9\xa1\x25\x06\x4a\x29\xc3\x2f\x5c\x20\x43\xc1\x1c\x49\x05\x12\x09\x62\x64\x28\x81\x5f\x40\x49\xb1\xe0\xdf\x2b\xb1\x96\xf5\x00\xf2\x6b\x71\x7b\xed\xc6\xa2\x07\x03\xf1\x84\x02\x1a\xe6\x52\x79\x8b\x4b\x5c\x01\x12\xc6\x73\x24\xde\xd4\x4e\x58\x58\x83\x88\x32\x70\xd1\x58\x4a\x6b\x21\x05\x73\x62\x38\xb0\x5f\x00\x5d\xea\x88\x46\x99\x8a\xa0\x0b\x59\x0a\xca\x54\xe4\xf8\xfa\x9d\xc1\x0e\xee\x8f\xf2\xa9\xdb\xb4\x54\x8a\xce\x23\x23\x15\xc4\xec\x51\x47\x22\x7b\xf3\xc6\x65\x3c\x95\x5c\x12\x33\xbc\x48\xd1\xed\x55\xac\x55\x20\xd0\x3a\x9a\xfd\xc2\x5c\xb7\x66\x24\x66\x9c\xf9\xd2\xd1\x23\x05\x58\x49\x72\xbc\x05\xad\x29\x18\xa8\xe0\x16\xb4\x54\xbd\x6c\x1f\x81\x56\x48\x58\x02\xed\xf0\x1b\x3c\xb1\x4c\x3b\x85\xf7\xbf\x09\x06\xe6\x3e\x9a\x11\x47\xdc\x76\x61\x9b\x20\x6e\x41\xcb\xd1\x3b\xb2\xf0\x04\x13\xc3\x60\xf1\xf8\xf1\x5a\xda\xba\x24\x05\xcd\x8b\x99\x45\x32\x96\x21\xc3\x27\xda\x5b\x81\x3b\xd1\x52\xf2\x10\xcb\x76\x6a\xd4\x23\x16\x21\xbe\x3a\x00\xf5\x55\x83\xb0\x26\xe1\x07\x54\xc0\xbd\x56\x95\x51\x47\x7a\x01\x35\xcb\x8a\x67\xdd\x20\x5e\x79\xd6\x8d\x97\x85\xba\x0d\x72\x95\x96\x89\xcb\xcc\x72\x34\xf5\xa1\x2a\x99\xa5\xdc\x48\xa9\x57\x01\x17\x05\xf7\x90\x65\x39\xdb\x4a\x6c\x58\x7b\x7f\xd0\x69\x17\xf3\x52\xf6\xc5\x58\x34\x24\xcb\x07\xeb\x40\xe4\xa5\x63\x4d\xd1\x3b\x25\xf6\x45\xa0\x7e\xc0\xec\x23\x77\xd9\x01\x83\x90\xd0\xb1\xa9\xbd\x07\xfb\x22\x16\x7f\xb0\xf6\x88\xdf\xe0\x2c\x44\x4d\x94\x4a\x25\x6a\xa0\x72\x4a\xb6\xb1\x9f\xa9\x5b\x59\x37\xa6\x16\x94\x4e\xc9\xf6\x2a\xc5\x25\x96\xea\x44\x43\xe5\x93\x18\xac\x0e\xa0\xf2\x89\xeb\x7f\x16\x14\x3e\xe9\xc9\xfb\x7a\xd0\xef\xae\x49\x41\x6e\x4d\xb9\xfd\xe4\xf8\x41\xc9\x93\xac\xc4\xfc\x12\x99\xff\xa9\xea\x67\x05\x77\x16\x4c\x70\xfc\xa0\x7e\x7f\x75\xdd\xea\x5b\xe2\xde\xf8\x82\xa6\xbc\xa3\xfe\xa6\x84\x4e\x14\x4d\x49\x36\x88\x46\xde\xa7\x24\x09\x91\x45\x50\x8a\x51\x86\xeb\x95\x82\x2d\x03\xf1\x40\x8a\x80\x99\x00\x6c\xb4\x2f\x46\x46\xa9\x56\x62\x4e\x3c\xa8\xa8\x6b\x4d\x0e\xa8\x22\x3e\x42\x69\xa2\xb5\x29\x21\x1e\x2b\x4d\xff\xd3\x3e\x37\x4c\xd1\x6d\x2c\xb2\x8f\x58\x14\xb0\x6a\x26\xed\x93\xdb\xd9\xc7\xcd\x09\x37\x83\x04\xf9\xc8\xa8\x02\xab\xee\xb8\x5d\xcd\x41\xc0\x85\x97\xab\x65\x45\xcf\x15\x5c\xae\x96\x94\x3b\x5d\x78\xbb\x5a\x4b\xaf\x07\x0c\x3e\x32\x65\x22\x28\xd7\xe2\x61\x84\x45\x37\xd8\xfe\x10\x19\x85\xbb\x79\xd0\x8b\x85\x4a\xcd\x86\x2e\x14\x22\xb3\x6c\xc1\x30\x5d\x1b\x14\x22\xac\xb6\x2f\xc4\x5d\x34\xd2\xf9\x28\x47\xa0\x6e\xf4\xa9\xc9\x5b\xdc\x3c\xef\x6b\xa0\xb2\xa2\x7f\x3f\x80\x69\x0f\x70\x72\x44\xa1\xfa\xc2\x49\x9f\x3d\x09\x30\x63\x9f\xb2\x17\x9c\x69\x26\x26\x8a\xb8\x3e\xd3\x56\xaa\x92\x21\x84\xd5\xb7\x9a\xfd\xc3\xe8\x6b\xd3\x79\xbc\xb9\x01\x34\x00\x45\xe0\x68\x46\x79\x43\x69\xeb\xee\xa0\xb1\xb0\xb4\xda\x9d\x1f\x68\x8e\x37\x63\x2f\xbd\x61\x6f\xee\x70\xd3\xcf\xbd\x66\x2d\x20\x1e\x1a\x2a\x7d\x20\xd0\xc8\x6b\x4b\x64\x64\xec\x82\x19\xd5\xc3\xa2\xc0\x82\xe2\x59\x4b\x27\x30\x29\xf5\xfa\x8c\x7a\x16\x49\x0a\xaa\x87\x0c\xdb\xac\x80\x62\xad\x27\x86\x1b\x11\x6a\xf3\x3c\x68\xe4\xf5\xa1\xf4\x20\x8b\x43\x43\xb2\x58\x91\xaa\x63\x97\x84\x9c\x2f\xe5\x9a\x17\xa4\xa4\xa6\x28\xf3\x15\x8a\x19\xcd\x49\x06\x3d\x80\xd4\x96\xfd\x02\x50\xaf\x83\x17\xb5\x8b\xa6\xc6\xe3\x0f\xc0\xdf\x85\x15\xd4\x21\x8a\x21\x8a\xb9\x26\xd6\x66\x1e\x06\xe1\x41\xed\x64\xfd\xce\x5a\xcc\x9a\x62\x0a\x0b\xef\x51\x0f\x12\x7b\xd4\x90\x30\x11\xbf\x40\x80\x30\x6b\x97\x00\x2a\x17\x25\x5d\xec\x50\x12\x65\x59\x5b\x52\x12\x4d\xc4\xc5\x2f\xa0\x1c\xf3\x6b\xc4\x83\x1f\x08\x8d\x08\x4c\xa8\xfd\x05\x34\xa4\x2a\xe3\x11\x79\x60\xc1\xa6\x92\x84\x44\xb0\x61\x16\x9d\x50\x92\xd9\x27\x69\x8a\x34\x7a\x35\xb5\x13\x60\xf0\xfb\x19\x2b\x29\xc4\x47\x6e\x8a\xe8\x07\xa8\xb0\xaa\x6d\xc8\x5a\x47\x63\xf2\xf0\x1f\x1c\x42\xb8\x5b\xd0\x09\x54\x25\x31\x72\x40\x77\xc3\x15\x54\x4a\x72\xf6\x51\x61\xa5\xa4\x11\x5f\x0f\x08\xb0\x90\x98\x28\x38\xca\xb4\x82\xca\x48\xce\x95\x29\x28\x8c\x94\xb2\xf4\x75\x16\x46\xd2\x3d\xfd\x05\x75\x91\x5e\xa2\x2e\xea\x22\x4d\x90\x84\xb2\xb4\x66\xe8\x21\xa9\xba\x56\x3f\x98\xdb\xe1\xb5\x6e\x79\x03\x08\x1a\x32\x87\x77\x9d\xee\x82\x3a\x4a\xa1\x39\x02\x05\x09\xd9\xb1\x99\xb4\x32\x48\x2d\xf8\x77\x16\xfe\xd6\x1c\x21\x8e\xeb\x4e\xcd\xc2\xda\x4a\xc3\xa4\x98\x59\xf8\x5b\x53\x40\x5d\xe4\xfc\xea\x8f\xbe\x88\x6a\x08\x69\xdc\xd1\x0e\x47\xf1\x25\xc7\xe6\x17\x14\x5b\x4a\xf6\x4d\xa0\xd8\x52\x54\xa1\xdc\x92\x18\x48\x2c\x61\x9c\xa5\x96\xaa\xf7\x27\x2a\x19\x5b\x26\x4c\x90\xde\x87\x14\xbf\xc4\x40\x06\xe5\x54\x96\x04\xf3\xb4\x82\xef\x4a\x2a\xdc\x1c\xc9\x0f\xce\x77\xb1\xf3\x92\x20\xbc\x5b\x2e\x4e\x08\x6c\x68\xde\x5d\x4b\x54\x97\x18\x9a\x20\xaa\xd7\x6e\xac\x23\xae\x61\xd8\x31\x91\x56\x71\x06\xc1\x54\xc9\x38\x0d\x64\xfd\x5d\x81\xf5\x92\x2a\xd1\xe8\x69\xd6\x45\x3b\x82\xb2\x12\x4a\x0f\x81\x92\x89\xa6\x84\xb6\x2e\x87\x54\x7b\x5d\x6a\xaf\x76\xc4\xfe\xd4\x88\x8d\x61\x8f\xc2\x0a\x6c\xd6\xd5\x94\x01\x93\xf5\xf0\xfe\x6a\xc8\x34\x35\x9b\x6c\xac\xa8\x29\xac\x31\x59\xee\x0d\x00\xc5\x11\xe3\x1d\x61\xc6\x8a\x10\x2f\x28\x81\x15\x92\xae\x3f\x2f\xa9\xad\x22\xe2\x1e\x83\x65\x31\x84\x03\xd8\xac\x93\x19\x6b\x27\xa7\x35\x31\x75\x94\x89\x96\x3e\x9c\x78\x35\x88\x4f\x62\x5e\xf6\x19\x6c\x7b\x4c\x28\x5b\x98\xbd\x72\x4c\x78\xb3\x48\x84\xba\x5a\xd9\xc2\x2e\xea\x68\xa5\x61\x7a\x1d\x9c\xb7\xb7\x0c\x0a\x84\x0c\xef\x10\x44\xdd\xd6\x6e\x7a\x82\x30\xde\x3d\xab\x1d\x9b\xde\x4c\x00\x75\x74\x82\x8d\x97\x69\x09\xdc\xc6\xf5\x8e\x5d\x6e\xd6\xba\x13\x46\xc1\xb4\x23\xc7\xc1\xbc\x1a\xb7\x78\xd8\xa8\xc7\x8b\xb7\x86\x45\xa8\xc4\x4b\x3c\x94\xd6\x5b\x12\xcc\xc8\x8e\xf5\x48\x3b\xa8\x4f\x62\x60\x62\x20\xaf\x45\x1e\x54\xf7\xca\xf6\xcd\xb2\x9a\x97\x7d\xf1\x89\xc5\x15\x7c\x6a\x1e\x6b\x4e\xea\x91\x51\x14\xb6\xc0\xa6\xa3\xbe\xef\x18\x28\xe9\x58\x7b\xc8\x0f\x78\x4c\xfa\x88\x3a\xd6\xb4\x84\x97\x83\xe2\x88\x5f\xa0\x54\x6f\x44\xa0\x76\x4b\x4b\xe9\x27\x77\x0e\x95\xc4\xfb\x42\x2c\x94\x25\xda\xa5\x9b\xdb\x38\x62\x7c\xa2\x9c\xfd\x7d\x2d\x42\x49\x27\xcb\x4a\x0b\x3e\x1a\x99\x65\xf5\x42\xc5\xb2\xd4\xa5\x6b\xa2\x62\x59\x6c\x66\x0a\xb0\x31\x67\xd3\x26\x6e\x88\xb5\xf3\x3a\x2d\x79\x5e\xee\x6e\x94\x34\x8b\x8e\x15\xe5\x15\xb0\xcd\xa1\x02\x09\x59\x74\x2f\xca\x41\xd0\xaf\xa3\x84\xd2\x45\x45\x4d\x10\x5e\x8c\xc7\x32\x4a\xa7\x74\x9e\xb2\xa9\x7f\x0a\xe3\xdd\x56\xb5\x74\x71\xc3\x65\xf7\x88\x83\xdc\x3d\x22\x6d\x6e\x58\xc8\x4c\x10\xc7\x6d\x4c\x4c\x90\xc6\x9b\x49\xf3\x4e\xef\xbb\x25\x4a\xba\x57\x6d\x2f\xb5\x59\x63\xcb\xbf\xd3\x50\xd2\xfc\x02\xb5\x51\xcb\x8c\x37\x0e\x7e\x93\xe2\x8d\x6c\x70\xa3\x19\xc2\xf8\x30\x5b\x42\xda\x5d\x35\x2d\x43\x36\xcf\xc6\x3a\x2c\xd6\x2f\x24\x22\x60\xe3\xb5\x7d\x11\xb0\x61\xf7\x3d\x6a\xa6\x44\x95\xc6\x2c\x69\x4a\xf2\xd1\x06\x83\x04\x03\xf6\x4b\xe6\x85\xfd\xfa\x25\xbb\xad\xfa\x67\xa6\x83\x87\xd9\x5f\xcd\x6f\x00\x07\xaf\x11\x20\x15\x9b\xc3\x3c\x1d\x23\xb8\x0d\x01\x53\x5b\x0d\x17\x03\xbf\xe2\xb2\x32\x73\xe6\x6c\x62\xce\x8c\xd5\xd0\x14\x33\x42\x35\x8c\x12\x54\x81\x89\x2a\xde\x59\x32\x0a\x86\xaa\xe0\x48\xc9\xb8\x5d\x45\xe9\xa4\x25\x6f\xeb\xea\x2d\xb5\x91\xd8\xbc\x19\x00\x38\xca\x35\xa1\x8c\xf8\x62\x25\x52\x97\x8c\x04\xba\x61\x80\x91\x40\xe7\x58\xc5\x4c\xa1\x5d\x3b\x2b\x07\xd6\x9f\xd6\x89\x9d\x03\x15\x8d\xe8\x37\xa8\x91\xc9\xe8\x9d\x11\x96\x61\xe5\x3a\x07\xac\xba\x56\x35\x07\xde\x72\x24\x41\x24\x07\x16\x5d\x13\x8e\x22\xee\x6b\x92\x48\x9b\x23\xf9\xbe\xd8\x41\x8e\x6b\x5d\x35\x4b\x14\x63\xb0\xa6\x9b\x57\x74\x6f\x73\x97\xb4\x14\x69\xb7\x65\x44\xf0\xbe\xdb\x64\x91\xd1\x5d\xa0\xca\x5f\xf5\x98\xa0\xd5\xec\x1e\xc9\x52\xb4\x1d\x33\x73\xf4\xac\x9c\x64\x44\x82\x24\xcb\xc5\x19\x29\x78\x2f\xa8\xd7\xe5\x23\xee\x61\xe0\x74\xd2\xda\x4c\x39\x3a\xd9\x7d\x91\x11\xd5\xe1\x98\x9d\x9c\x88\x58\xf7\x8f\xb5\xce\xee\x0f\xdb\xc9\x16\x83\x4c\x29\xda\x68\x62\x75\x06\x9d\x13\x39\xaf\x32\x85\x82\x20\x53\x13\x96\xfd\x29\x23\xee\xa3\x9a\xbc\x33\x59\x86\xd7\x6e\xca\xcd\x49\xf5\x4f\x4a\x66\xe0\xc7\x6b\x08\x96\x13\x77\x07\x27\xb1\xe6\x0e\x18\xe6\xff\xa3\xe2\x08\x25\x67\xae\x8a\x01\x5e\xab\xa2\xf1\x21\x65\xbf\x56\x09\x56\x71\xe7\x5b\x97\x5c\xc8\x87\x75\xb6\xe4\x02\x3e\xec\x2f\x2a\x55\x0b\x83\xbc\x0c\xd0\xb2\xd4\xe7\x65\x71\x96\x48\x99\xeb\xc2\x8a\xc0\x42\x14\xc6\x6b\xe5\x2b\x65\x73\x93\x46\x85\xbd\xc0\x7c\xa5\x2e\xb9\xc3\x0f\x68\xa4\xf6\x2e\x43\x3a\x5c\xf2\x44\x61\x83\xb6\xa7\x2e\xa3\x66\x83\xb9\x7d\x6e\x74\xe5\x35\x3f\x80\xac\xf4\xea\x10\xd4\x69\x90\x28\xd7\x7a\x65\x29\xa5\x7a\xd6\x6d\xe5\xee\xaa\x4d\xce\x23\x24\x50\x46\xed\xde\xc6\x9d\x10\x0b\x00\x86\xfb\xda\x39\x90\x97\xd4\x6a\xc6\x30\xa5\xd6\x97\xfd\x37\xd3\x46\x6d\xd3\x7d\xee\x84\xd9\x3d\xb0\x64\xc1\xe6\x17\x16\xa2\x85\x26\x64\xc7\xf9\x58\xce\x28\x14\xe1\x88\xe2\x8c\xd0\x0b\x47\x77\xe7\x55\x28\x42\x02\x5f\x46\xa1\x88\x64\x5e\xd4\x49\x2e\xfa\x1d\x37\xe6\xd9\x18\x89\x6a\x5a\x13\x02\xe1\x05\x56\x6e\x7b\xf8\xf2\x58\x01\xa9\xfe\x82\xe4\xe4\x7d\x0f\xa3\xb5\xa5\x9b\xcc\x6c\x34\xfb\x13\xf2\x4e\x69\xcd\x34\xbb\xc2\x2d\x64\xd6\xcd\x08\xb7\xb0\x46\x91\x11\x5d\xe1\x73\x30\x53\x70\x36\x90\xab\x1c\xa9\xc9\x69\x6f\xdc\xa7\x42\xe4\x0e\xd9\xc0\x07\x0b\xca\x7d\xe7\x60\x10\x16\x43\x75\x97\xa0\x1f\x63\x76\x07\x37\x7b\x4d\x62\x61\xda\x3d\xb0\x46\xaa\x29\x70\xca\xd6\xd9\xa6\xe5\x7c\x2c\x8e\xab\x2e\x0e\x9c\xbe\x3e\xcc\x78\x39\x9e\x0f\xcb\x25\x29\x7b\xd3\x1c\x98\x84\xa9\x63\x55\xa0\x90\x21\x38\x1f\xd4\xd5\xbc\x5a\x90\x9c\x87\xe3\x4e\x50\x40\x36\x27\x33\xbc\x83\x25\xfc\x45\x0f\x07\xe8\xc5\x3c\xf8\x60\x10\x98\x44\xcf\x0c\x51\x3b\xb8\xc3\x29\x4c\x27\x5d\xfc\x58\x32\x42\x9c\x2d\xa5\x65\x96\xac\x78\x6d\xc4\x93\xbb\xc4\x1d\x2c\xfa\x71\x0f\xd8\xc9\xde\x56\x27\x97\x4e\x20\x42\xfa\x0e\xde\xa8\x27\x4f\xf4\x57\x8f\x6b\x69\x84\x05\x5e\xea\x60\x25\x3b\x5f\xec\x52\x2f\xdc\xb4\x42\x79\x0c\x0a\xaf\xa6\xe1\x1b\xb3\x32\x8c\xb0\xfc\x66\x1f\xaf\x37\x8c\xdd\x96\x9b\x6e\x92\x53\x72\x07\x64\x88\xe6\x57\x14\x2e\xbd\x74\x14\x2e\x4d\x4e\x37\x6f\x5e\x32\x37\x61\x49\x87\xd7\x56\x7d\x90\x49\x65\x12\x5e\xe1\x10\x3f\xba\x7a\xa8\xe4\x65\x14\xf6\x8e\xa0\xac\xe8\x85\x7e\x78\xd4\x25\x8f\x47\x88\xdd\xe6\x51\xe4\x2d\x82\x8c\x36\x5d\xee\x51\x0a\x84\x47\x87\x20\x15\xc6\x2f\xd8\xc4\x53\x78\xfb\xba\xb0\x5a\x60\xe4\x55\xcd\xdc\xc2\xb2\x7c\xc3\x26\x9f\x02\x71\xb3\x79\x07\x94\x8d\x96\xb8\xee\x31\xc0\xdf\xc4\xff\x0a\x05\x46\x11\x53\x41\x80\x82\x99\x55\x09\x0b\xa6\xa2\x07\xa8\x9a\x2f\xc6\x51\x22\x39\x49\xf2\x83\xb5\xb4\x4d\x0f\x78\xf8\xc9\x9b\x5f\x28\x7b\xc9\x40\x5f\x50\x2e\x41\x97\x90\x95\x82\xa0\xdc\x2c\x61\xae\x24\x4a\xe1\xda\x74\x85\x26\xce\xe1\x17\xa8\x07\xc8\xd5\x51\x90\x4d\x35\x5e\xa8\xa5\xcd\x53\xd6\xb6\x82\x00\x01\xef\x80\x92\x68\x3c\x6b\x7e\x61\xd1\xa3\xdf\xa0\x4e\xdd\xfc\x60\x2e\xaf\xaa\x66\x97\x42\x69\xcc\x98\xce\x8b\x1e\xfd\x00\x09\x38\x32\xd9\x17\xda\x30\x65\x57\x2d\xa8\x86\xa0\xab\x58\x4a\x61\xad\x2c\x6f\xec\x92\x79\xfa\x35\xf7\x48\x2d\xd5\x98\x44\x9c\xed\x0b\x0f\x79\x01\x2d\xd4\x67\x56\x97\xd2\x72\x97\x8d\x27\xac\x06\x2d\x64\xc2\xd2\x28\x0a\x52\xb0\xba\x18\x60\x61\x54\x81\x4d\x26\xa5\x70\xcc\xa8\x36\xb6\x81\xcc\x3e\xb8\x99\xbc\x55\x13\xf5\x2a\x3f\xe0\x0f\x6a\xa0\xeb\x42\x5f\x54\x2c\xaf\xe9\x85\xe5\x08\x7c\xd6\x94\xca\xe5\x95\xa8\x5c\x20\xcc\x38\xec\xad\xe0\x9e\x2e\x6b\xe7\xa5\x31\x5a\xb0\xf9\x05\x5c\xd4\x28\xc1\xa2\x30\xf5\xdf\x7e\xcd\x02\xe9\xc6\xae\xdd\xd2\x03\x11\xa5\xe5\x5f\x2e\x79\x13\xe5\x14\x77\xb2\x4d\xc8\x05\x77\x75\x35\x23\xb2\xc3\x59\x1c\xfc\x7e\xc3\xfb\x9a\x54\xa7\xdf\x53\x16\x37\x5c\xc1\x1e\x86\x67\x8d\xa2\x58\x76\x10\xe2\x0a\xf6\xb4\x6d\x06\x99\x7b\xdd\x04\xd6\x69\xbc\x92\x82\x50\x58\xfc\xdb\xa7\x5b\x61\x19\x2c\x9b\x96\x0a\x53\xfb\xed\x3a\x2d\xcb\x4e\x28\x2d\xa4\xb0\xf0\x95\xfd\x9a\x05\xe9\xfa\x36\xb8\x16\x14\xbe\xb2\x4f\xbe\xc0\x4e\xe8\xe0\xd3\x82\xe4\xa7\x62\x22\x86\xdd\x30\x1b\x8f\x83\x4b\x23\x44\x0f\x8a\x09\xfa\x7e\x5f\x20\x6a\xc0\x7d\x81\x28\x98\x21\xdc\x74\x6f\x3c\xc8\x36\x96\x65\xca\x94\x6d\xb2\x05\x30\xdc\x26\x1f\x75\xa1\x70\xe1\x65\xf2\x0e\xb2\x2c\xb8\xf4\xca\xd1\xef\x65\x5f\x96\x4e\x0f\x40\x90\xd5\x66\x19\x4d\xaf\xdc\xb1\xd0\xac\x39\xf2\xba\xf9\xf2\x23\x97\x50\x39\x78\xd2\x99\x27\x9f\x94\x41\xcd\xbd\x98\x26\xe5\xd8\xc1\x02\x19\x22\x07\xbf\x50\xd0\xd6\xf8\xe7\xda\x40\x7e\x01\xc4\x68\x88\x4f\x1e\x24\xdd\x0f\xc8\x20\xcd\xde\x4e\x32\x48\xef\x18\x08\x11\xd5\x49\x06\x65\xf9\xd4\x4d\x4b\xd7\xda\x32\xea\xe3\x5a\x70\xfb\x01\xe0\x96\x31\x02\x35\xf1\xf3\xeb\xc4\xbc\x28\xae\x65\x8f\x81\x8d\x1e\xdc\x01\x37\xba\xa9\x73\xd9\xe5\xcc\x22\x61\x97\xcb\x92\xc7\xca\x4d\xa0\x8c\x4c\x54\xab\xb2\x9b\x13\xb7\xe7\x67\x07\xd8\x95\x7b\xa1\xc6\x0f\x28\x08\xf8\x58\xbe\x29\x4e\xf9\x68\x58\x2e\x6b\xe9\x04\xe5\x21\xfe\x7d\xe4\xa1\x78\x54\x8e\x7e\x81\x27\xbb\x04\xf6\x82\xb4\x23\x95\xb4\x2e\x05\xc2\x86\x2e\x2d\x28\x05\xb1\x93\xd9\x8c\xfd\x21\x43\x13\x97\xad\x4b\xb8\x90\xf8\x8d\x4b\xfa\xe3\x90\xb4\x5d\x37\x1e\x37\xaf\x2f\x16\x43\xaa\x7a\x80\x60\x4f\x21\xbf\x32\x5d\x5e\xe5\x9b\x4b\x65\xb9\x27\xab\xeb\xac\xaf\xdb\x7c\xc6\xe1\x82\x82\xec\xf0\x92\x8a\x2c\x22\x8b\xf4\x35\xd0\x6f\x27\xa0\x90\xbb\x6e\x59\xa2\xd2\x43\x6c\xbf\x77\xc5\x0d\xbd\x2a\xb2\x5c\x2a\x6a\xba\x16\xaf\x4e\x5d\xa6\x22\x9d\x89\x35\xf2\xaa\x6f\x01\x1d\xd7\xf2\xf9\x0b\x50\x88\xc7\x4c\x6b\x12\xfa\x02\xf2\x89\x63\xd3\xeb\x94\x4f\xb2\xaa\xd1\x97\xca\x6a\x4e\xf6\xbd\x57\x5c\x6b\xeb\x30\xa0\xca\xf8\x46\xdb\x0b\x2a\x4c\x49\xf9\xd5\x23\x0d\x5e\x62\xa2\x15\xf2\x8b\x4a\x47\x97\x9a\xe8\x8d\xa9\xee\x92\x35\x50\x82\xbb\xa4\x97\x76\x78\x1a\xdc\x1a\x2f\xa8\x78\x3b\xbc\xf8\x5a\xcd\x6b\xa2\xfa\x24\x93\xd1\xe8\x2c\xaf\xf0\xcb\x9a\x6d\x54\x88\x2c\xc1\x2e\xff\xba\x64\x96\xd7\x17\x83\x83\xf8\x8d\x83\x0f\x34\x57\x5c\x39\xdb\x5e\x7d\x92\x88\xaa\x5f\x20\x69\xbb\xcb\x05\xb7\xf0\x8d\xac\xf1\x2c\x95\xab\x4e\x91\xa5\x39\x3b\xa9\x16\x1e\x10\xaf\x07\xbc\xcb\x5d\x98\x28\x54\x4d\x8d\x6e\x66\xf2\xbc\x50\x53\xb9\x82\xfa\x82\x36\x22\x4b\x1c\x15\x55\xe9\x55\xdb\xb0\xd4\xba\xe6\x2d\x42\x45\x98\xa2\xc3\x02\x6a\x05\xe1\x26\xff\x0e\x4e\x26\x89\xb5\xf2\x4a\x83\x17\xe2\xea\x9a\xb6\x60\xc0\x65\xa8\x45\x2c\xba\x22\xec\x30\x38\x34\xa0\x22\xa3\xbb\xf8\xa0\xab\x48\xb7\xf1\x31\x54\x71\xdd\xe9\x6b\x12\x14\x7a\xf2\x8f\xa2\xb5\x6b\x67\x42\x85\xe1\xe9\x8b\xaa\xdd\x1d\xa8\x5a\x52\x5a\x45\x08\xa2\x9d\xf2\x95\xe9\xde\xaf\x85\xa4\x84\x23\x69\xa4\xd2\x9a\xe3\x50\x85\x8a\x18\xc4\xf6\x86\x18\x7b\xd5\x33\x42\x48\xa1\xed\xf1\x15\xd6\x98\x97\x24\x88\xdb\x4d\x5a\x2d\x7e\x01\x22\xb4\xc5\xb6\x3a\x16\xde\xdd\x25\xcf\x35\x63\x91\x41\x86\x36\x5b\xd5\x9d\x68\xd3\x34\x70\x89\xa7\xa3\x85\x2a\xac\x31\x16\xec\xeb\x4e\xee\x5f\xfd\xa0\x71\x9e\x5a\xfc\x7d\x61\xc6\x6f\x0c\x02\x21\xd4\xec\x0b\x35\x9a\x18\x65\x10\x6f\x23\x5e\x3e\x60\xa9\xa7\xb2\x06\x91\x05\xab\x7a\xd0\xbd\xff\x7a\x83\xc8\x53\x97\x07\xd7\x4f\x50\xb1\x28\x91\x6d\x5f\x15\xc6\x92\xac\x73\xae\x1e\x37\x73\x6c\x84\xcc\x13\x98\x31\xb6\x11\x3d\x98\x75\x0e\x56\x18\x43\x74\x5d\x74\xa9\x70\x2c\xea\x76\xe2\x52\xcf\x75\xc1\x8d\x40\x80\xad\x23\xfb\x10\x3b\xb9\xcd\x82\x47\xd8\x11\xb1\xec\x1e\x89\x27\x2f\x06\x6f\xad\xb0\xb5\xad\x9e\x6b\xc1\x35\xed\x93\x97\xb8\x0b\xf7\xe7\x5a\x6f\xbd\x70\x6d\xec\x53\xd3\xb8\x38\x2d\xe1\xe5\xe2\x34\x34\x04\x42\x01\xb3\x4f\x18\x98\x57\xec\x73\xa9\x17\xb9\xb9\xa1\xbe\x60\x3f\x36\x19\xa3\x66\xa7\x83\x96\x2a\x63\x03\x1d\x7d\x52\x21\xf7\xbc\x24\xbc\x7a\xd1\x2b\xe3\x36\x2f\xf1\xf1\xd2\xc0\x1f\x69\x77\x7e\x65\x74\xa0\xed\x1d\x15\x72\xd0\x30\xd5\xde\x74\x75\x05\x3f\x20\x91\x1a\xb5\x37\xa5\xb3\xe6\x3e\xc9\xca\x25\x59\x57\x18\x71\xb2\xcf\x3d\x78\x04\x37\xaf\xc5\x12\x94\x7c\x38\x23\xb6\xcf\xa9\xb3\x15\xd7\xa7\x38\xc1\xb0\x52\x2c\xf2\x31\xf8\x30\x6a\x59\xd3\x9e\x62\x52\xdc\x4c\xa1\x0f\xf8\x85\x4e\x82\xb6\x81\x40\x75\xd6\xb4\x0d\x75\x68\x92\xdb\xd8\x12\x62\x69\x8d\x99\xd7\x36\x45\x34\x84\xd9\x65\x6d\xe5\xb6\x11\x20\xff\xbe\xf8\x4b\xd3\x03\xf0\xfd\xea\x36\xe9\xb1\xb9\x07\x48\x76\xc2\x49\x5b\x97\x16\x7c\x88\xa7\x85\xc0\xb5\xf7\x03\x1c\xca\x3a\x07\x5a\x00\xf5\xbd\x3e\x20\x0f\x94\x90\xdc\x28\x74\x09\xa9\x0d\x99\xda\x59\xd4\xd7\x50\x00\x53\x57\x44\x95\x16\xd6\x32\xba\xc7\x07\x61\xcc\x02\x39\x72\x43\x88\xa0\x1b\x82\xe8\xd2\xd0\x46\x6f\xcc\x4a\x71\x48\x4b\x8b\x0c\x60\xf7\x2c\x22\x81\x12\xa6\x61\x57\x0a\x3f\xba\x4a\xaf\xb4\x48\xa3\x84\x90\xca\x6a\xed\xa6\xd5\x16\x77\x8e\xef\xee\x89\xf6\x6e\x90\x71\xc1\x42\x30\x80\x14\xe2\xbb\x1f\xf0\xfc\xf5\x24\x11\x9a\xe7\x88\xf9\x86\xac\x6d\xc7\xd1\xb5\xf4\x70\x4c\xd1\x02\x2c\x44\xd9\x68\xcc\x0b\x29\x6a\x2f\x83\x8f\xda\xb8\xac\xbe\xfb\xfb\x93\x10\x68\x61\x32\x59\x97\x41\xa2\xa8\xd4\xdc\x03\xc8\xdd\x93\x64\xf9\x4b\x09\x78\x8d\xd6\x1e\xaf\x74\x59\x10\x09\x6f\x85\x6e\x00\xb7\xc9\x0b\xa5\xd3\xb5\x0a\xd6\xf7\x6a\xaf\x1e\x34\x04\xdc\x6b\x9b\xa9\xb1\x16\xf4\xe8\xdf\xa9\x86\xf8\x77\x9e\x85\x12\xf7\x5a\x25\x9b\x91\x6e\xd4\x10\x53\x96\xbd\x30\x95\x3e\x75\xff\x4e\x36\x64\xbc\xad\x18\x33\x59\x0c\x1a\x8b\x53\xa6\xd7\xa0\xe4\x8e\xc6\x2c\xa2\xcc\x5e\xfa\x54\x63\x79\x1d\x47\x24\x36\x24\x75\x54\x97\x09\x69\xac\x3f\x99\x24\xe5\xb7\x46\x43\xa8\x34\xcb\x86\x64\xe6\x66\x25\xae\x35\x86\xaf\x8a\x5d\x35\x66\x33\x3b\x6a\xa4\x35\x2e\xa0\x5e\xe8\x0b\x0c\x01\x8a\x1b\xe3\xab\x04\xd5\xd6\xa9\x52\x4b\x4f\x6f\xc8\xf3\xc8\xdd\x1f\x10\x7b\xc2\x05\xb2\x95\x2d\x04\xb4\xbe\x88\x4c\x43\x22\x99\x38\x7b\x16\x83\x72\x9f\x74\x91\x36\x28\x77\x4a\x74\x6d\x83\x4c\x52\x3a\x58\x1b\x0b\x35\xee\x93\xd7\xd2\x19\x9b\x63\x8d\x2a\xb0\xe8\x14\x73\xb0\x4a\xa3\x90\xe5\x79\xed\x0b\x13\x82\x8b\x25\x73\xcc\x40\x76\xa6\x9b\xf8\x03\xb0\x72\xe9\x81\x6d\x09\x5d\x92\xc8\xdb\x12\xba\x8c\xdb\x9d\x60\x67\x7f\x02\xf9\x54\xb6\x84\xb6\xd3\x93\xe7\x21\xc8\x33\x3c\x06\xa2\xc5\x74\xb1\x4e\x69\x07\x71\xa9\x21\x91\x54\xfc\x52\xeb\x1b\x23\xb7\xec\xd3\x6f\x94\xa0\xcc\xdc\x29\x21\x49\xa1\x6e\x28\x68\xae\xbb\x7c\x4a\x3b\xdb\x04\xc9\x1c\x01\x97\x45\xbe\xd8\x2c\x42\xaf\x9a\x11\x4f\x33\x8e\x35\x9b\x76\xf2\xe6\x0c\x2d\xd5\x49\xbf\xaf\x37\x2c\x6d\x34\x92\x2c\xda\x45\xb1\xdf\x58\xb9\x08\x92\x86\xe4\x9d\x70\x56\x5e\xdb\x94\x5e\x92\xa5\xc4\x76\xad\x49\x6b\x92\x10\x5e\x9a\x95\xa5\x06\xe9\xc5\xb9\x48\x6d\x0a\x2f\xa9\x98\x47\xdc\x24\x06\x49\xbf\x0d\xa9\x0c\xc5\xdb\x02\xc2\x4b\x75\x40\xfe\xba\x60\x27\xbf\xba\x20\xd1\x7a\xad\xee\xb5\xfa\x42\xf5\x4d\x19\x2b\xfe\x28\x88\xae\xb1\xe2\xb8\xb5\x1f\x5c\x5f\x18\x8b\xa9\x0b\xb1\x49\xf6\x27\xb4\x87\xe4\x67\x2c\x4c\xd9\x26\xbd\xe6\x04\xd9\xc6\xd9\xac\xed\x21\x3b\x31\x80\xac\xb1\x68\xac\xf1\x7e\x44\x6b\x43\x8d\x1e\xa9\xf4\x7a\xc0\x33\x4d\xfc\x06\x37\x28\xa6\x26\x72\xe9\xcc\x4b\xd0\x52\x75\xa4\xe0\xba\x32\x6a\xe9\xf0\x61\xb5\xfc\x7a\xc0\x3b\x85\xfc\x05\x4a\x40\x48\xe2\xea\xac\x32\xee\xe0\x89\xbe\x51\x84\x4f\x7e\x83\xbb\xac\xab\x8d\xe2\xab\x52\x84\x3b\x33\x19\x1c\x81\xd4\x97\xd9\x49\x9b\xa2\x4f\x89\x27\xba\xc4\x57\x0f\x03\x3d\xb8\x4d\xa5\x40\x9a\x4e\x47\x4c\x53\xd9\xdc\x01\x09\xd0\x40\x06\xb2\x23\x69\x2a\x3d\xf2\x80\x10\x51\x77\xd4\xa2\xd1\x9d\x19\xa5\x23\xed\x56\xd7\x74\x94\xce\x34\x5b\x1b\xcb\x7a\xe4\xb6\xc8\x7e\x83\x86\x72\xbf\xc0\x6d\x21\xe1\x15\xb7\x59\x36\x8b\x48\x9d\x37\xd4\x8b\xb5\xf7\x84\x1b\x23\xfc\x3e\x52\x03\x5e\x36\x86\x8e\xda\x35\xf6\x45\xf7\x54\x10\x2d\x26\x44\x26\x8a\x4d\xc6\x2c\xf3\x66\x3d\x49\x84\x28\x39\xc1\xa7\x2f\x11\xc7\x98\xce\xd8\x98\x12\x30\x7a\x46\xbe\x9a\xb1\x92\x39\x82\xf1\x98\x59\x7c\x5d\x20\x65\x2e\xb6\x3b\x20\x7f\xf2\xa4\x96\x79\x68\xb8\x4b\x8a\x24\xee\xa2\x50\x1a\x95\x16\xd9\xa7\x94\x13\x9b\x67\x85\xe2\x31\xce\xc4\xea\x25\xc3\x07\xaa\x1e\x0b\x0f\x34\xa9\xad\x1d\xb1\xf9\xde\x58\xbd\xa0\x6c\x49\xf5\x88\xc8\xa0\xf0\x2c\x11\x9a\xef\xac\xbc\xce\xa0\xa4\xd7\xef\x0b\x64\xcd\x72\x4a\x51\xad\x79\x92\x28\x1c\xa3\xba\xd2\xa5\xd7\xc5\xbe\xd4\x23\x03\xed\xad\x49\x77\xde\x02\xe3\xe8\x8a\x5e\x99\x99\xaf\x39\xa0\x52\x8c\xaa\xd4\x96\xbe\x84\x22\x6f\x33\x44\x20\x95\xcd\x6d\xc2\xa0\x0e\x60\x5e\xb2\xb9\xa9\xb7\x35\xa2\x80\x6c\xd8\x65\xc1\x2f\xf0\x4c\x4f\x7e\x01\x61\xbc\xc3\x2f\x2c\x34\x68\x56\x7d\x6d\x2a\xe1\x05\x5e\xb7\xe1\xa4\xa4\xce\xea\x2d\xe6\x05\x28\x29\x68\xe7\x52\xef\xb4\x93\x78\x9a\x2c\x8f\xed\x30\xa5\xce\x6b\x3e\x6d\x42\xe8\x83\xa5\x47\xf5\xc5\x20\x47\x93\xf6\xde\x07\x8d\x9c\xd5\x6f\x20\xd7\x3b\xb8\x87\x4e\x28\x05\xd5\x40\x4d\x49\x71\xf2\xbe\x6c\x4a\x06\x02\xf7\xf1\x5b\xdc\xec\xf0\x71\xf9\xd0\xed\xfb\x1a\x52\xc8\x47\x39\x94\x26\x1b\x45\xdf\x17\xd3\xfc\xc9\x45\x78\xa5\xb3\x56\xa0\xf5\xee\xce\x7a\xd6\x66\x04\x30\x1e\x15\x69\x67\x9d\xb5\x02\xad\x57\x77\x86\xb9\x4b\x1c\xee\x53\x90\x49\xc5\xac\x07\x91\x37\xc5\x68\x3f\x48\x0b\x7e\x7f\x47\x5b\x0b\x7b\x10\x00\xcd\x07\xb5\x53\x86\x53\xbd\x3a\x4c\x49\x9b\x8f\x11\x84\xd1\x54\x23\x80\x21\xe9\x8e\x74\xe8\x8c\xa3\xb1\x6a\xdf\x99\x89\xea\x20\xa9\x0e\x27\x58\x91\x1e\xd1\x4f\x14\xec\x30\xff\x65\x79\x6b\xbb\xfc\xfb\x49\xde\xe4\xf6\x09\xf6\xe9\x36\x97\xd5\xab\x04\x17\xd8\xcb\xc8\xdb\x99\x67\x6a\x21\xa0\xc3\x52\x54\x8c\xc7\x8b\xf1\xb8\x06\x0a\xa6\xa3\x62\xca\xb8\x56\x80\xb1\x56\x02\xc5\x53\x5e\xb4\x75\x2d\x52\x11\xb9\xc2\xd8\x54\x24\xbf\xf7\x8b\x4b\x23\xa8\x2f\x2c\x8d\x24\xed\xce\x50\xf7\xfc\xea\xf1\xc4\x0b\x9e\x04\xcf\xa1\xea\x07\xa0\x96\xe0\x11\x41\xbd\x52\x7c\xfa\xcd\xa0\x02\x4f\x62\x89\x67\x5e\x4d\x3a\xdd\x6c\x26\xe9\x70\xb2\x95\xe4\x17\xb8\x56\x1a\x82\xc5\x02\x2d\xeb\xf4\x9b\x16\x31\x21\x12\xb1\xe9\x2f\x82\x44\x49\x6c\x57\x2e\xe8\x37\x61\xd4\x24\x61\x79\xaa\x66\x5e\x0f\x4b\xaa\x69\x0e\x08\x1e\x7a\x1d\x01\x53\x5a\x4b\x9b\xa9\x0b\x86\xa7\xe2\x93\x11\xd1\x41\x96\xee\xc6\x06\xee\xa9\xa3\x75\x6c\x48\x62\x16\xed\x8c\x8d\xef\x0f\xb5\x91\xfd\xab\x55\x1b\x1b\x99\xa7\x44\xb5\xb1\x91\xd8\x84\xc3\x01\xbb\x90\x25\x92\x81\x7c\x4d\xdd\xb7\x59\x46\x20\x1f\x93\x99\x67\x4c\xa9\x28\x75\xd9\x27\x46\x58\x77\x4c\xaa\x8d\x18\x99\xe0\xdf\x07\x92\x2a\xaa\xda\x3b\x6e\x22\xd2\x14\xe0\x7a\x2b\xd9\xfd\x9f\x48\x4a\x72\x9b\x74\xa3\x35\x18\xcc\xbd\x74\x2e\xe5\x88\x8b\x2e\x34\xeb\x18\x91\x13\xad\x21\x61\x25\x1a\x3e\xc5\x46\x5c\xdb\xc1\x5f\x80\x50\xb2\xbb\x04\x6f\x96\xb6\x3a\x68\x19\x4a\xaf\x2e\x07\xce\x41\x41\x19\x39\x2b\xcd\x1a\xb5\x9e\x4d\xfd\x03\x76\x20\xdb\xd9\xc7\x32\x03\x49\x34\x1c\xcc\xd0\x74\xb0\xdc\x48\x4c\x6b\x50\x8f\x70\x0f\x96\xd7\x07\x94\xa1\x5f\x2f\xc0\xd4\x25\xb3\xe9\x80\xb3\xaf\x18\xd1\x10\xcb\x7c\x8b\x55\x19\x69\xd1\x82\xd0\x92\xb0\x23\x3d\x89\x25\x97\xc9\x46\x32\x32\xc7\xd4\xe9\x3d\x50\x11\xd0\x76\x9c\x91\xd7\x35\xf0\x82\x12\xc6\xa8\xf2\xea\x01\xbe\xa3\xe2\xdf\x41\xd0\xe5\x47\x25\x4e\x07\xec\x52\xba\x1f\xa1\x0c\xc4\x75\x3b\x92\x7d\xc0\x83\x57\x24\xff\x0c\xd8\xa5\x6c\x5b\x19\xcb\x2e\xa5\xed\x3d\x0a\xd2\xd9\xc4\xc4\x06\x44\xb8\xe6\x55\x45\x9d\x68\x47\xca\x0d\x4a\x70\x62\xed\x03\x97\xfc\x95\xe2\x01\x06\x09\xcd\x10\x61\x7f\x16\x0f\xc8\xfd\xe9\x0e\x90\xff\x23\x06\x35\x28\xe2\x39\xd8\x61\x14\x9a\x94\x64\xed\x1b\x95\x73\x14\xc8\x4c\xb7\xb4\xfc\x3f\x28\xf4\x49\x30\x19\x95\x73\x74\x07\xb8\x69\x46\x62\xeb\xa8\x60\xf4\xc5\xdf\x33\xe6\xd2\xef\x83\x45\x15\xb7\x99\xde\xe3\xfe\xa9\x05\x75\x3f\x00\xe3\x97\xe0\x33\x2a\x15\x5e\x93\x55\xc5\x35\x17\xde\x5c\x75\x91\x99\xe6\xd4\xd6\x3a\xe9\x0d\x64\x5f\x5a\xb7\x1b\xf0\x59\xba\x56\xde\x40\x4d\xe9\x22\xc1\x64\xb4\xb5\x0e\xee\x71\x01\x29\x18\x1a\x15\x02\x93\x02\x62\xbb\x5c\xa0\x6c\x74\x1c\xb1\x12\x5d\x46\x87\x0a\x6b\x90\xa6\x08\x99\x7c\xdc\x0d\xe6\x52\x7a\xe5\x3b\xea\x74\x0d\x7f\x4f\xcf\xba\x59\xf3\x12\x29\x65\xc5\x19\x28\x84\x52\xcc\x99\x99\x7c\xe9\x90\x83\x31\xd6\x29\xaf\x59\xa1\x14\x4a\x35\xab\x5d\x26\x34\x0f\x3a\x50\x8d\xce\x40\xd3\xa4\x66\x4f\xe8\x18\xac\x1e\xe1\x0f\x26\x33\xd6\xad\xc4\x65\x0c\xc0\x24\xa3\xe8\x18\x24\x47\xd3\x27\xaa\x9d\xb8\x08\xce\xd8\x91\xd7\xae\x13\x78\xec\xd4\xa1\x85\xe6\x65\x2e\x93\xf4\x3e\x20\x92\xba\x98\xd6\x60\x85\x3e\x9f\x3f\x3b\xd9\xff\x70\x0f\x54\xaa\x4d\x6f\xfb\x3a\x0f\x84\x06\x96\x3b\x71\xa4\xc5\x40\x89\xea\x22\x21\x6f\x1c\xeb\x3c\x10\xea\x8f\x05\x95\xfa\x3c\x18\x68\x2c\xbc\x1c\x48\x10\x78\xb5\x79\xfb\x9d\x7b\x5c\xe4\xe4\x07\x73\xf1\xac\xa0\x0e\x06\x5b\x59\x43\x1d\xbc\xf4\xbf\x9b\x15\x2c\x41\x73\xf8\x41\x05\xd4\x6e\xd3\xb2\xe3\xd5\x44\x84\xb6\xf3\xe5\xc7\xb9\x44\x30\x4d\xeb\xa4\x74\xa3\x59\x2d\x49\xd3\xbb\x00\x82\x65\xf0\x07\xab\xe8\x9e\x7a\xbc\xa8\xfa\x7b\x1a\xa8\x51\xed\xe2\x20\x03\x72\xa5\x8b\x5e\x0e\x0a\x7d\xd5\xbf\x73\xef\x9b\x25\x2f\x9b\x9c\xa9\x9e\x25\xf5\x5e\xfc\x08\x09\x89\x8e\x25\x1c\x30\xb1\x59\xa9\xe1\x5d\xd2\xcd\x16\xd8\x71\x73\xf3\x6b\x52\xa8\x90\xd7\x4c\x30\x37\x72\x2e\xbd\x29\x10\x68\x95\x86\x11\x7d\x13\xa6\xf1\xa3\x80\x85\xc1\x4b\x01\x1d\x9b\x32\xe8\x6d\xb4\x6f\x78\xb0\x82\x9e\xe3\x40\x06\x4b\x87\x38\x0e\x64\x20\x70\xcb\x2e\x9b\xc1\x02\x79\x8e\xd2\x18\x0c\xdc\xb2\x6f\x78\xc0\x4a\xe7\x14\xe4\x81\xc0\x2c\xa7\xd0\xef\xdb\xc6\x1e\xa2\x1e\x04\xac\x4c\x56\x3b\x21\xe0\xda\x1f\x50\x04\x2a\x7e\x01\x7c\xbe\xf9\x05\x8a\x8e\x3a\x48\xf6\x25\x3a\x0e\x3f\xb8\x39\xe6\x07\xa8\x1d\x97\x90\x14\xf1\xd0\x9d\xf7\xec\x39\xce\x62\x0f\x8b\xe8\xbb\x1e\xac\xc5\xac\x7a\x00\x0d\xb5\xfb\x0b\x1c\xa0\xcd\x1f\x1c\x4c\x9f\x0b\x7a\x00\x8a\x6b\xee\x60\x01\x65\x20\x20\xb2\x1b\x11\xf0\x32\x5a\x48\xd8\x97\x0b\x51\x27\xea\x1e\xd7\x6a\xf9\x01\xa4\x00\x11\xf9\xbe\x4c\x6e\x22\xa0\x9d\xd2\xa1\x63\x22\x70\x79\x79\xaa\xd1\x3d\xb0\x6a\x9b\x58\xd4\x1e\x17\x2e\xfd\x00\xdb\x40\x72\xfa\x9e\xd6\x7a\x0e\x3d\x40\xd6\xac\xc1\x86\x17\xd0\x91\x42\x3b\x4d\x64\xda\xa9\x3b\x72\xf2\xec\x68\xda\x33\xa3\x66\x74\x66\xee\x99\x40\x8b\xc4\x76\x14\xb3\xb0\xa8\xb6\x67\xde\x10\x27\x9a\xdb\x69\x11\x73\x94\xc4\xce\xb4\x39\xdb\x38\xf6\x82\x3c\x3e\x1d\x27\x3b\xc5\x19\xc7\x13\xec\x14\x4e\xbc\xbc\x75\x21\x5f\xd3\xa8\x0c\xd5\x18\x7e\x80\xe2\x8b\x9e\x47\xa5\xc3\x2c\xfa\x05\x50\x48\xf7\x10\x20\x88\xee\x0f\xc8\x82\x24\x1c\xec\xcb\xe5\xe6\x2e\x59\x7a\xc1\x66\xfe\x9d\xd2\x82\xfd\x95\x7b\xa3\x46\x6e\xaa\x6b\x0f\xc8\x54\xa8\xe9\xb4\xac\xe9\x80\xd8\x59\xbd\xd7\xe6\xe6\x7d\x2c\xe4\x09\xff\xa8\xb6\x6b\xf3\xf3\xce\x98\x69\xbb\x81\x76\x1a\x8c\xec\x74\xd9\xe9\xff\xb2\x57\x66\x1f\x9c\xba\xc0\x1c\xe4\x74\x5a\x51\xb8\xc3\x9a\x2d\xd6\xfb\x58\xf3\xd0\x03\x78\xbb\x9a\xed\xcd\xfb\x4e\x32\x91\x86\xba\xef\x64\x03\xb2\x4e\xec\x34\xea\xd8\xaa\xb8\x33\x2c\xd9\x51\x24\x3b\x13\xac\xac\x96\xef\x07\x73\xcc\xbd\x3f\x8e\xc5\xde\xdc\xe9\x5a\x02\x4d\x9e\x07\xac\x43\x3c\x71\xfd\x7f\xb6\xd0\xb8\xa3\x2a\x6e\x19\xfe\x1d\xba\x41\x77\x07\x4c\x1f\xf6\x06\x42\x39\x02\x9b\xc1\x77\x04\x0d\x15\x1d\x23\xfb\xb9\x96\x50\xb8\x61\x89\x31\x6b\xb6\x3b\x2d\x3b\xb6\xb7\xed\x3c\x80\xbd\x07\x4f\xa8\xb2\xdd\x6d\x54\x99\xf6\x76\x60\xc1\x01\xdb\xbf\x76\x5c\x43\x56\xcd\x40\xe1\xf3\x72\x5c\xca\x4e\x23\xcc\xf8\x51\xaa\xd1\xce\x2b\x7a\x6d\x90\xde\x2f\x2e\xbf\x0e\xa6\x9d\x77\xee\x3a\xcc\x64\x87\x45\x65\x98\xbb\xd2\xdf\x65\x02\x5a\xc5\x01\xcc\x23\x6e\x02\xa8\x09\xa0\x3a\x6d\xf1\x91\xc0\x84\x2c\x57\x87\xd9\x79\xb6\xda\x84\xb7\xd3\xa1\x65\x5b\xeb\xfe\xac\x31\xf4\x09\xa3\x9a\x5d\xed\x65\x47\xf4\x4d\xb0\x55\xe3\xd8\xd6\x3c\x9a\x1e\x04\xbe\x51\xf5\xa0\xb3\x53\x3f\xc0\x6d\x17\x52\x5c\x0f\x78\x83\xec\xf0\x3e\x36\x90\x97\xd8\xce\x81\xe0\x96\xaa\xed\x7b\xf0\xa0\xb2\xd5\xee\x08\x34\x25\x49\xec\x38\x70\x32\x8d\xf4\x7a\xe3\xe2\x03\xbd\x11\x97\xa0\xa0\x41\x10\xce\x52\x5e\x2f\x90\x9f\x56\xbf\xb0\x03\x8a\xac\x36\x2c\xc2\xd5\x6d\xf2\x36\xe9\x0c\x07\x7d\x39\x3a\xb3\x0f\x18\x0d\xaa\x18\xc0\x91\x32\xa7\xa1\x21\x13\xe7\xe9\x0f\xb8\x33\xa3\x7b\xbc\xf1\x82\x10\x99\x49\xb2\x02\x31\x53\xff\x14\x91\x1f\xb8\x20\xaa\x6a\xaf\x1f\xc8\x4f\xf2\x45\x16\x47\x5e\x3b\xdb\x2f\x2c\x32\x55\x97\xac\xd2\xef\x2f\xa6\x1a\x9f\xab\xe8\xfa\x28\x64\x5a\x86\x91\x91\xb9\x92\x01\x0e\xa8\xed\x55\x74\x7f\xe0\x32\x55\xbb\x27\x0f\xdc\xd5\xef\x7c\x81\x03\xc9\x48\x3d\xbb\x3f\xdc\x59\x6b\xe2\x29\xd4\x0d\x05\xf1\x3a\xd6\xa2\x3b\x40\x3e\x94\x91\xc4\x92\x47\x46\x7b\x5d\xc5\xe1\xd5\x26\x80\x5a\x47\xc6\x01\x57\xbf\x4f\xf2\x15\xf7\x3b\xa0\x84\xeb\xa6\xfc\x72\x40\xe9\xee\xd9\xbf\x2f\x88\x84\x43\x86\xa2\xd8\x4c\x7d\xc0\x2f\xe3\x6b\x96\x0e\x64\x86\xdb\x72\x79\xa0\x1a\xa9\x2d\x8b\x47\x23\x88\x9a\x22\xa2\x80\x7d\x63\x78\x39\xa0\x73\x57\xaf\x5a\x03\xad\x1a\xe4\xe5\xb7\x69\x86\x80\xf9\x2e\x32\x76\x1e\x88\x13\xae\x06\xb1\xf3\x64\x11\x7f\x3d\x90\x1c\x95\x5e\x0b\x83\xe4\xa8\xfa\x7a\x81\xe4\x1c\xdd\x25\xd4\x4d\x31\xd0\x83\x77\x43\x59\x1f\x3d\x10\x3c\xec\xc2\x02\x47\x47\x0e\xfe\xab\x8d\xdb\xc8\x24\xd1\x1c\x9d\x3a\x55\xf3\x0b\x07\x6c\x4e\xc2\x13\x02\x5d\x5e\x8c\x86\xf7\xa6\x36\x83\xc8\x95\x91\x64\x70\x30\x9d\x4a\x3c\xf7\xa0\x12\xdf\xe5\x5e\x3d\x18\x19\x63\x9f\xf0\x31\xe0\x5f\x35\xa7\x19\xbc\xe4\xcd\xdc\x0e\x9e\x24\xbb\xf8\x8f\xc1\x1a\x91\x6e\xa3\x42\x8b\x99\xdf\x80\x63\xf1\x05\x02\x4a\xb3\x79\x3f\x40\x6e\x78\x2d\xed\xc0\x75\x59\xe5\x47\xc7\xd0\x81\x90\x1b\x47\x49\x1d\x10\x31\xaa\x24\xdb\x63\x67\x0d\x36\x21\x68\xcf\x78\x5f\x2b\x84\x92\xfe\xdd\x2b\x80\x6a\x4d\xd5\x4b\xcc\x34\x2a\x7b\x22\x0e\x5a\x08\xec\xee\x3b\x60\x21\x70\x70\xf6\xb1\xf3\xd8\x95\x15\xfd\xa0\x81\xc0\x2c\x6a\x65\x84\xeb\x83\x83\x56\x4d\xad\x08\x8a\x2d\xd9\x4b\x7a\x20\xef\x2a\xbd\xda\x34\xab\x98\xf6\xe1\xc7\x72\xad\xd1\xe3\xe0\xe5\xcc\x06\x80\xfa\x80\xf7\xef\x41\x59\x3b\xbb\x4b\xdc\x7c\x28\x71\xe7\x60\x01\x55\x59\xc0\x0e\xda\x13\xec\xc9\x38\xe0\xc9\x7a\xf1\xed\x93\x5b\x45\xcb\x00\xf1\xc6\x9e\x8d\x03\x05\x55\xad\x66\x1f\x53\xda\x49\x4d\x32\xdb\x81\x54\xae\x6a\x2c\xa3\xe2\x7f\x35\xcb\x43\x41\x7f\x7b\x6b\x8e\x93\xab\xe0\x75\xe6\x85\x58\x96\xdc\x8f\x25\xfd\xc8\xe8\x7e\x50\xfa\xf1\x0b\xb0\x36\x58\x06\x3c\x90\xd7\x65\xf3\xee\x81\x90\xa1\x6a\x1e\x77\x71\x1f\x18\x86\x6b\xad\x83\x26\x85\x3b\xaf\x1c\xb9\x70\x20\xf1\xeb\x75\xfa\xc1\x27\x65\x83\xf2\x01\x97\x94\xeb\xec\x1c\xbc\xf2\x4a\xda\xc9\xc1\xea\x4b\x2e\x3e\x76\xdc\x14\x2a\xdd\xc6\x79\xeb\x65\x82\x43\xaa\x1a\x42\x38\xa4\x5c\xf8\xe7\x80\x3c\xe5\x40\xe1\xe3\x46\xf9\x3e\x69\x96\xc7\xdd\xbf\xbf\x8a\x93\x58\x0e\x44\x13\x95\xd7\x78\x10\x63\xe4\x1b\x3f\xe0\xbf\xda\xec\x00\x3d\xa6\xfc\x95\x5e\x47\xe3\xbd\x16\x41\x28\x78\xb8\x08\x1a\x91\xf9\xef\x76\x49\x1d\xa8\x83\x6a\x93\xcf\xb1\x8c\x19\xd9\x0f\x50\x9a\xd7\x42\xca\xc3\x39\x79\x84\x0e\x9b\x91\x70\x80\x2a\xa8\xf1\xf5\xfd\xc5\x11\x85\x14\xc4\x17\xf9\xde\xc3\x03\xb6\x0e\x47\xd8\x9d\xa8\x7a\x6a\x8b\xf4\x89\xf2\x4a\xae\x0c\x74\xc2\xd4\xd1\x8a\xe6\x74\x6e\x60\x31\xc3\x6d\xac\x82\x8e\x95\x13\xc1\x45\xce\x17\x38\x37\x5e\x49\x59\xd4\xa6\x73\x27\xaa\x7d\xc0\x4b\xe8\x01\xb9\x7b\x8b\x3b\xbc\x30\x80\x3b\xbc\x11\xff\x14\xd4\xc6\x0d\x54\xe2\x50\x27\x82\xb1\x6d\x6a\x39\x57\x7d\x25\xad\xeb\x89\x60\x6c\x33\xd1\x13\x5e\xb9\xac\xab\x78\xcb\x39\xe5\xd5\xd8\x36\xf7\x40\x8b\x92\xd4\x9d\x13\xf2\x6a\xf2\x31\x73\xc2\x0f\x67\xb3\xc7\x89\xbb\x57\xcd\x45\xcf\xe5\x66\x13\x57\x3c\x23\x28\x45\xdb\xf7\x8c\xa0\x75\x39\xa4\xce\x65\x48\x69\x7e\x00\x93\xb8\x58\xd2\x19\x79\x18\x6b\xbb\x9d\xb8\x40\xd5\xd7\xb5\x9e\x8c\xb7\xb6\xbb\xf3\x64\x11\x80\x79\x3c\xff\xe0\xe4\x39\x59\x21\xc0\x71\xcb\x27\xa3\xb3\x1d\x87\x7c\xd2\xec\xf2\x6a\xf3\x70\xf6\xca\x27\x6a\x16\x3a\x1a\x4f\x78\xe1\xac\xa5\x9f\x2c\x22\xf0\x5a\x3a\x5e\xc1\xfa\x5a\x3b\x16\x0d\x70\xe8\xf2\x99\x58\xf5\x57\xb3\x46\x91\x00\x3b\xf2\xce\x84\x62\x5d\x46\x1b\x4a\x04\x58\xab\x3f\xa7\x04\x9e\xac\x68\x9c\xac\x82\xaa\xc3\xe4\xcc\xeb\xbe\x28\xb5\x29\xd9\x09\xed\x99\x77\x56\x69\x8e\x28\x72\xea\xf8\xae\x13\x45\x4d\x75\xe7\x7e\x39\x11\x2f\xee\xd4\xfd\x13\xa9\x76\x8e\xa4\x3e\x51\x0d\xc0\xc5\xc5\x4e\x78\xe5\x5c\x96\xef\x44\xb4\x78\x35\x42\xe0\x95\xf3\x71\x7c\xc2\x2b\xa7\x4b\xff\xcb\x59\x40\xdb\x5e\x83\x02\x71\xc7\xa4\xbd\x9c\x6a\x06\xa0\xf0\xf4\x34\xe9\x96\xe3\xfb\xab\xd9\x2f\x72\x96\xb5\xee\x02\x11\x02\xbb\x55\xfb\x93\x5e\x35\x7b\xb9\xcf\x8a\xfa\x15\x3a\x8f\x4f\x14\x13\x70\x14\xe7\x59\xe3\xf7\x57\xab\xb2\x29\x9f\xcb\x6e\x25\xd5\xff\x44\x7c\x7a\x33\xdd\xe0\xfe\x81\xf1\x1a\x80\xea\x62\xf7\x83\x13\xb3\x16\x95\x30\x90\xca\x06\xbb\xb3\x12\xad\xee\x11\xcb\x6e\xb2\x69\x54\xa4\xcd\x64\x18\x5b\x6e\xea\x47\xe9\x26\x5d\x10\x5e\x4e\x04\x56\x55\xd9\xb0\x4e\x98\xbd\x6a\xf7\x42\x2f\xb3\x97\x19\xeb\x12\xe1\xbd\x54\x8d\x87\xbc\xfb\xec\x64\x33\xee\x94\xc9\x78\xf6\x21\x9f\x9d\x56\x09\xb1\xfb\x13\xb5\x94\xaa\x8e\xb4\xb3\x33\x32\xd8\xa8\x1a\xc8\xbd\x35\x77\xc5\x85\x00\x55\x16\xa9\x73\x70\x0b\xba\x07\x64\xeb\xd5\xea\x0f\x16\x94\xfe\x62\x0d\x21\x28\x59\x1a\xc9\xe7\xe8\xc9\x9b\xfa\xcd\xeb\x96\x5d\xcc\x44\xbb\x53\x4a\xf7\x19\xc0\xa2\xfd\x66\x55\x3b\x0d\x04\x26\xfb\x9d\x77\xac\x69\xde\x88\xb5\xb2\x9b\xe2\xdc\x89\x7e\xaf\xdf\x4e\xdf\x9b\x16\x18\x9e\xb0\xe6\x69\xf1\xae\x2a\x7b\x6a\xcf\x23\xe0\x9c\xd4\x07\xc7\x42\x8c\xbe\xa0\x5c\x6b\x3c\xf0\xf2\x2a\x1b\xe6\xce\x65\x98\x33\x91\x1d\xa4\x19\xb7\x21\x05\xca\xbe\x70\xc2\x70\x57\x5e\x3d\xd2\x2f\xa6\x49\x1e\x9c\x83\x41\xe4\x62\xfb\x77\x10\xb5\x74\xc2\x13\xc1\x54\x55\xc6\x83\x93\x52\xa7\x79\x15\x0b\x08\xd8\xb3\x7b\x9e\xe4\xf1\xe6\x56\xbc\x56\xb5\xfb\x68\x5c\x3e\x2b\x49\xba\xe7\xb5\x68\x54\x78\x42\xe8\x52\x6d\xfe\x62\x6d\x3d\x41\x81\xb8\x70\x57\xfd\x3b\x79\xd1\xe9\xf6\xa3\x20\x85\xf3\x5e\x8a\xb2\xba\x47\x82\x9b\x83\x28\xce\x9b\xc3\x6b\x11\x6e\x28\xce\xe6\x0c\x28\x59\x54\xcd\x4a\x6e\x1e\x52\x46\xea\x8d\x0a\xfd\xa6\xb4\x29\xc2\xa5\x17\x83\xe5\xfd\x4c\x76\xd2\x9e\x0f\x92\x65\xbc\xc3\xa6\x84\x96\x7c\x87\xf7\x89\xa8\xa3\x6a\xce\xf1\x1c\x88\xb0\x14\x04\x0f\x21\xfa\x20\xf0\xda\x68\xc8\x12\x3f\xbd\x36\x4a\xe2\xa2\x8b\x8b\x57\x24\x05\x7f\x01\xba\x10\x0e\xae\x8d\xb6\x80\xec\x17\x56\xe0\xc3\xa7\xcd\x94\xff\x22\x5a\xbe\xe0\x5b\xaa\x52\x88\xae\xe5\x5b\x12\x69\x5e\xa8\x09\x50\xbb\x7b\x00\x69\x89\x50\xae\x15\xa7\x54\xd4\x06\xa9\x89\x4c\x2e\xc4\x2d\xf9\xb2\xca\x0b\xd1\xde\xbe\x9e\xf7\x82\x27\xaa\x0e\x8f\xc7\x29\x69\x06\x81\xdb\xb3\xfa\x01\xce\x41\x69\x91\x57\x5c\x53\xd2\x14\x28\x40\xc9\x5c\x7c\xf1\xde\x51\x9b\xd2\xae\x15\xa6\xf4\xea\x82\xe9\x06\x1e\x34\x22\x4f\x23\xfb\x0b\x86\xd3\xf8\x77\xba\x21\xb4\xe3\xaf\x44\xf1\x5e\x3b\xfc\x82\x45\x70\x38\x15\xe8\x4a\x6b\xcb\x09\xac\xb4\xb6\x87\x96\x82\x61\x41\xb6\xec\x5c\xb8\x23\xde\xaa\xdf\x95\x79\x3a\x7a\xb1\xf2\x82\x5b\xa3\xf2\x66\x50\x47\x81\x5d\xcb\x1b\xa5\x9d\x7f\xb1\x28\x91\x1d\xc5\x17\x42\xba\x5d\xe9\xfc\x42\x91\x22\x1f\xc9\x17\xc5\x10\x99\xa2\xaf\x29\x76\xa4\x61\x1a\x2d\xd4\x98\x9b\x5f\x00\xfa\x65\xcb\xbe\x18\x0c\x94\xfd\x01\x25\xbb\xe6\x17\x28\x88\x24\xf7\x00\x10\xb4\xcf\xae\x4a\xe4\x7a\x01\xeb\x22\x52\xcd\x9b\x55\x22\x2d\x37\x5c\xa8\xf9\x68\xb3\xdb\x55\x79\x5c\x1a\xb7\x94\x13\x86\x5f\x40\xc4\x90\xa4\xf0\x0b\xc1\x33\x9b\x51\xbd\xc4\x02\x43\x4d\xc3\x9e\x36\xf3\x45\xb1\x40\x96\xee\x8b\x65\xc4\x9d\x22\x75\xb1\x88\x91\x59\xec\xb5\x8a\x16\xe9\x4c\xbf\x50\x58\xdc\x25\xdf\x2f\x66\x8b\x39\x89\xea\x42\x89\x46\xc7\x57\x5f\x28\x52\xe4\xd2\x37\xd7\x92\x12\x9a\x3f\xa0\x48\xe7\xdd\x88\xaa\x44\xbe\x2f\xf7\xa2\xd4\x60\xbc\xa1\xa0\xa2\xab\xd2\x5f\x83\x5c\xdf\xdb\x73\xb9\xd3\xbc\x38\x83\x9b\xc9\x1b\x9a\xd1\x32\xaf\xdd\x35\x78\x84\xbf\x06\xa1\xd0\x66\x9e\xc0\x2b\xd8\x5f\xfb\x0f\xf1\x31\x56\x3d\xaf\xb1\x70\xa7\x89\xed\x54\x28\x4c\xa6\x3b\x71\xe7\x36\xdd\x4e\x92\x13\xae\x9d\x5b\x43\xf2\xfb\xb5\xaf\x41\x35\x57\xd4\x48\x9c\xba\xde\x0f\x8e\xa3\x0b\x31\xd9\xbe\x2d\xe3\x62\x51\x21\xfb\x47\x2f\xb8\xef\x8a\x1d\xe6\x17\x6b\x8d\xdb\x11\x7c\x1d\x5c\x3d\x41\x88\x28\xec\x4d\xd6\xeb\x0b\x87\x7c\x0b\xee\x91\x48\x11\x0e\xce\xb5\x14\xea\xe0\xa4\x9d\xc6\xdc\x1e\xc6\xa5\x26\xfd\xf8\x3a\x19\x2c\x55\xfc\x00\x56\x56\x9f\x06\xb8\x9a\xa7\x49\xa7\xba\x4e\x9e\x91\x5e\xfe\x0b\xf6\x32\x93\x2c\xab\x08\xd9\xfe\x75\x5d\x58\x07\x4f\x02\x11\xd3\x2d\xf8\xf7\x8a\xb6\xb0\xc2\xf4\x33\x8b\xa5\xd7\xc5\xa4\x3b\xf3\x8f\x8b\xee\x59\x13\x18\xae\x9b\xf4\xa5\x46\x17\xac\x4d\xaf\xa5\xb8\x58\x8f\x5c\x68\x59\xee\x39\xb3\x30\xb8\xe7\xec\x6f\xbf\x10\xef\x9c\x5c\x9b\xf0\x42\x72\xbd\xaf\xfc\xbe\xee\xb5\x74\x1a\x02\x0e\xbc\x61\x8a\xbe\x59\x0a\x50\x68\x61\xba\x9a\x89\x01\xb2\x8a\x45\xa3\x8b\x55\x8a\xec\x76\xbd\x6e\xce\xc9\x6d\x04\xd8\x1b\x82\x75\x77\xba\x06\x78\x88\x66\xb7\x51\x80\xd6\x33\x98\xb2\x4a\xb2\xe5\xf4\xc2\xa5\x3a\xce\x1c\xbb\x1e\x02\xe8\xdf\x17\xd6\x35\xc3\x67\x31\x65\x7f\x41\x1b\x9f\x47\xb8\x10\xaf\x28\x88\x1f\x56\x69\x31\x44\xac\x87\xac\x75\xbc\x97\x77\x51\x2c\xf7\x86\x7d\xc9\xd9\x6b\x37\xb2\xfb\x1d\xa4\x7d\xe3\x7e\x48\xc7\x49\xdc\x1b\x05\x4e\xb1\x8d\x1b\xd2\x4f\x8b\xee\x00\xd4\x2c\xc6\x73\x6f\x54\x58\xc4\x24\x6e\x08\x3b\x2d\xba\xbd\xb8\x5b\xd7\x03\xde\xb4\xad\x1e\x50\xe0\xe8\x95\xdd\x76\x43\x7a\x69\x52\xa2\x6f\x48\x2f\x8e\x6c\xbd\x03\x41\xd2\xa4\xa7\xf4\x92\x36\x11\xca\xbd\xaa\x6f\x8b\x98\x6f\x26\xe7\x9b\xdc\x6f\xdc\x58\x63\x0f\xe9\xcd\xfb\x1d\x9d\xe6\x7a\x47\x44\x9f\x05\xbf\x30\x67\x69\x5d\xe2\x46\x48\xf4\x2b\x9f\xee\x46\xf1\x6c\xdf\xe9\x77\xc3\x18\x63\x6f\xf8\xcd\x3b\x6a\x9c\xd5\x7a\x27\x5c\xaf\xb8\xf9\x85\xc2\x17\xd4\x63\xc2\xcd\x0e\xa2\xa6\x3b\xc1\x91\xd1\x3d\x02\x6d\xd4\x5e\x29\x78\x37\x6d\x4b\xb9\xe1\xcc\x6c\x32\x3d\xdc\xb8\xc0\xb1\xc9\xb6\x73\x67\xdc\x54\x6d\x90\x33\x58\xa5\xce\xd2\x9b\x89\x6a\xc5\x2b\xbb\xbc\x9f\xda\xe3\x77\x86\x96\x67\xda\x80\x18\xe3\xcc\xda\x1b\x17\x38\x36\x89\x31\x37\xac\x23\xce\xee\xbf\x0b\x45\x6f\x77\x58\x08\x82\x90\x54\x16\x69\x08\x84\x42\x47\x75\xf6\x03\x9a\x2f\x4d\x5d\x85\xb5\x6a\x8a\x07\x7d\xd0\xa7\xbe\x98\x82\x4e\x4a\xfd\x47\x69\x43\x37\x62\x7e\x9a\xc4\xc7\xbb\x62\xfb\x78\xb4\xca\x19\x6a\x02\x75\x11\x92\x3f\xa0\x15\x50\x32\xcf\xdd\x16\x2d\x6a\x99\x70\xb5\xe2\x6b\x9d\x1b\x87\x70\x1b\x5c\xc6\xb4\xda\x78\x00\x49\xfd\xb8\x71\x3d\x8b\x3d\x64\x37\x02\x88\xed\x61\xbe\xe1\xdc\x74\x15\xc6\x1b\x39\xf8\x63\xf3\xef\x48\x5a\xe8\xee\xef\x82\x13\xcb\xef\xdf\xd8\xf1\xfe\x1d\x08\x35\x25\x77\x3a\x16\x24\x0f\xdf\x53\xe6\x4a\xdb\xe6\x36\x44\x2c\x1d\x5f\x37\xca\x26\x39\x9a\xeb\x9e\x12\x56\xb2\x3b\xe8\xee\xb4\xee\x0a\xc9\x7d\x2d\xba\x1f\xe0\xc4\x74\xd0\xd3\xdd\x61\x93\xf6\x32\xc1\xeb\xb8\xe9\x68\xb8\x07\x8b\xbc\x6b\xc4\x81\x58\x78\xf3\x28\x0a\x4b\x9b\x3b\xe4\xcd\x2e\xdd\x1d\xd2\x63\xa4\x36\x52\xf1\x7d\x09\xfd\xbd\x47\x42\x24\xa4\xc0\x33\xf8\xba\x58\xf7\xde\x61\xae\x70\xd4\xc6\xbd\x43\x91\x95\x26\x7c\x23\xba\x78\x33\x69\xed\x8b\xf6\x85\x77\x18\x5d\x5e\x89\xa1\xf7\xce\x4b\x66\xb5\x50\xf4\x2e\xbe\xd8\xda\x0e\xc6\xa8\x03\xe8\x86\xd1\x25\xbc\xb6\xd3\x0a\x26\xd6\x31\x7e\xc3\xa8\x62\xa7\xd1\x7d\xc0\xbb\x60\x56\x4b\x6f\xa1\xb9\xff\xd1\x41\x3b\x7e\x7f\x10\x04\x4d\xfb\xa0\x02\x26\x89\xf0\xc6\x6d\x89\xd6\x43\x6e\xd4\x61\x6c\x8e\x23\xba\x51\xdf\xa8\x79\xc3\x40\xbe\xda\xcc\x13\x4e\x48\x70\xc5\x6d\x9c\x99\x0e\x35\xbf\x91\xa3\x16\x9c\xb6\x79\x9f\x8b\x5c\xdc\x25\x29\x58\x88\xbc\xb8\x9a\xc2\x34\x43\x89\x1d\x6f\x75\xd3\x2e\xe3\x68\xa4\xfb\x5a\xb1\x7f\x6a\x43\xe2\x32\x85\x5e\x0b\x0f\x82\xe1\x5a\x40\x79\x0c\x48\x81\xc6\xcb\xb5\x80\x34\x50\xb8\xa2\xd5\x1f\xa0\x00\xb5\x0d\x9c\xf7\x8d\x73\x56\x96\x93\x1b\xee\xbb\x26\xb3\xe0\x8d\x78\x28\xdb\xf0\x6e\x5e\x5d\x68\x17\xe5\x8d\xfc\xb1\xd7\x5d\xcf\xf7\x0d\x59\xd8\xbb\x04\xee\x35\xdf\xf6\x70\x3f\x1c\x51\x1d\xc0\xbb\xe6\x82\xfc\xf7\x03\x66\x28\x7b\xea\x8d\x60\x28\x7b\xd3\x6f\x26\x90\x99\x51\x3d\x58\xe9\xea\x36\x33\x57\x3d\x05\xa4\xfb\xf7\xe6\x17\x60\xcd\xf7\x16\x79\x50\x45\xc1\x33\xa2\x37\xce\x01\x3f\x37\x4a\x42\xb6\xea\x0e\xe9\x7e\xf8\xb4\x9f\x8d\x06\x38\x21\xf1\x81\x7b\xce\x9e\xe3\x67\xa3\x33\x4b\xbb\xf4\xd9\x30\xe7\xea\x0f\x70\xfb\xa8\x4e\x9b\x07\xee\xb8\xd7\x1d\x97\x0f\xca\x25\xbd\x72\x82\x1f\x86\x77\xd5\xed\x47\x37\xb2\x3e\x88\x6c\xb6\x6b\xfb\xc1\xed\x29\xe6\x22\x0f\xc5\x33\x99\x44\x1e\xc4\x82\x6d\xc3\xbf\x4f\x32\x73\xb0\xff\xc3\x6a\xd8\x0e\x61\x7b\xe0\xce\x73\x2d\xb0\x07\xd5\xb0\x5d\x93\xe1\xa1\x38\x27\x8b\xca\xc3\x30\x68\x23\x24\x20\xc9\x7f\xf3\xf7\x08\x81\x97\xdc\xff\x20\x18\xcd\xd5\xc8\x1e\xdc\x80\x68\x15\xff\x09\x3c\xbd\x04\xe0\xba\x00\x51\x5b\xed\x41\xa5\x82\x51\x3c\xc0\x4d\xfc\x19\xa2\x07\x64\xa5\x19\xc5\x00\xf5\x49\xbf\xc7\xb5\x79\x35\x44\xa4\x3d\xbc\xf8\x01\x99\xb5\xd7\x08\x17\x84\xdb\xdf\xf8\xb0\x72\x81\x18\xeb\xb3\x2a\x7e\x6b\x52\x91\xbc\x5a\x82\xfa\x83\xcb\x58\x9c\x9b\xf2\x44\xec\xf6\xe6\x01\xb8\xdb\x83\x47\x00\x4b\x92\xb1\xe5\x61\x0c\xf5\x0b\x68\x3a\xf3\x24\x04\x3f\x09\xc9\x2a\xe2\x1f\x4f\xa2\x27\x5b\xb3\x86\x2b\xef\x95\xa2\xfa\x20\xc5\xce\xca\xfb\x83\x14\x3b\x97\xfc\x7d\x70\xe7\xe1\x4b\x9a\x7b\x50\x4f\xf3\x95\xa1\xfc\xc0\xd9\x67\x9b\xc3\x93\x68\x08\x15\xc3\x78\x50\x0f\x7c\x64\x0f\xc9\x10\x04\xa3\x05\xee\xbe\x57\x92\xf4\x03\x7f\x9f\x73\x54\x9f\xbc\x56\x42\x5d\x64\xdc\x0e\x6f\xf2\x61\x81\x28\x07\xd4\x3d\x99\xd3\x10\x50\xb0\xbd\xd9\xaa\xf1\xc0\xd4\xe6\x7c\xca\x27\xaf\x03\xc9\x2f\x80\x47\x98\xe0\xcb\x82\x51\x98\x2e\x84\x51\x68\x28\xf3\x04\xf3\x65\xf1\x0f\xaf\x31\x74\xd4\xcf\xb3\xa4\x56\x29\x30\x4f\x01\x35\x74\xb7\xc9\x79\x8d\x59\x18\xe3\x5a\x35\x0c\x20\x17\x99\x63\x9f\x4a\x6a\x30\xde\x50\x73\xca\x31\xdc\x0f\xae\x74\x71\x3e\xfe\x03\x1f\x5f\x73\x18\xe1\x83\x28\xbe\x57\x56\xf5\xc3\x54\xba\x31\x3c\x06\x34\xc1\xee\x2f\x60\x9e\x2d\x6e\xf3\x4e\x05\xcd\x12\x35\xa7\xac\x69\x3e\xa8\xae\xb0\x79\x61\x2a\x44\x26\xaf\x7d\xc5\x9c\x8c\x36\x66\xce\xbd\xf0\x0c\xc9\xd8\xfe\xb9\xa7\xf1\x76\x30\x01\x08\x41\xb9\xf9\xda\xfe\x07\xd6\xc1\x66\x7a\xc4\xfd\x2e\xbe\x29\xea\x61\x79\x06\x47\xd8\x3d\x0d\xa1\x4c\x52\x9f\x9f\xb6\xf3\x05\xf7\x00\x0a\xcf\xfe\x60\x51\xb8\x16\xaa\x91\xf9\x98\x7d\x52\x18\x96\x00\xf4\x40\x18\x76\x3e\xcd\x83\x6a\x55\x0e\xd7\x78\x68\x7e\x94\x11\xe3\xe9\x9c\x83\xb0\x84\xa8\xc0\xee\x6d\xcf\xa0\x40\xb3\x67\x5a\x23\xa5\x93\x3d\xa8\x6d\xd5\x86\xc7\x1b\x5c\x67\x4d\x01\x05\x45\x9b\x0f\x04\x18\x27\x47\xf9\x51\xbe\xd0\xc3\x0b\xcf\x25\xe6\x3c\x08\x10\x0c\x8e\xde\x7b\xe0\x00\x6d\x8e\x06\x7d\x90\x2a\xe0\xa8\xa5\x07\x0e\xd0\x26\x25\xf5\x41\xe6\x40\xc8\x6e\x27\x5c\x7b\xaa\x0e\x99\x38\xe0\x08\xb9\x07\xa2\xba\x6f\x40\x7b\x06\x27\xec\x0f\xb0\xb7\x86\x07\x3c\x89\x00\x3f\x58\x30\x0b\x85\xa8\xae\x6e\x9b\xc9\x43\x59\xde\x84\x0c\x7f\xaa\xab\x3e\x3e\xfb\xa2\x3b\xf5\xb8\xaf\xbd\xe4\x2f\x78\xc6\x1b\x2d\x3b\x81\xd4\x90\xfb\x80\xaa\xed\xdf\xa1\xe1\x6c\xee\x91\x0c\x41\xba\xfb\xb3\x33\x0a\xc0\xc7\xec\x8e\xdd\x33\xfc\x02\x03\x2b\xdc\x7e\x08\x82\x86\x44\x79\x0a\x07\x8b\x3e\x07\xce\x69\x13\x26\x24\xfd\xe4\xa2\x09\xcf\xc1\xfd\xae\x95\x39\x16\x17\xd3\x10\x08\x04\x0c\x5e\x6a\x98\x4e\x7d\xf1\xf0\x03\x51\xdf\xe1\xd8\x0f\x4c\xa7\x76\x43\x3f\x27\xd1\x26\xf3\xc0\x83\x30\x3e\x1b\xa4\x9f\x73\xf1\x76\x3f\xe0\x06\x96\x01\xe1\x61\xad\x53\x47\xcd\x3d\x10\xfe\x9b\x7d\x10\x0f\x8d\xad\xde\x4f\xb8\x47\xd1\xc1\x10\x0f\x04\x75\xdf\xe7\xfa\xc0\xc1\xea\x1a\xa0\x0f\xf2\x0e\xd2\xab\x7d\xe1\x7d\x81\x74\x21\xd2\x48\x22\xea\x03\xa9\xdc\xba\xed\x03\x77\xeb\xab\xca\xc2\xc3\x3a\x0f\x8e\x2d\x7e\x10\x56\xe7\xeb\xe7\x9e\x7b\x4d\x52\x78\xbb\xd7\x24\xfd\x06\x6d\x08\xe6\x84\x37\xe5\x60\xad\x0c\x6f\x0c\x2f\xc9\x2f\x5c\xec\x42\xb8\x87\x28\xff\x92\x73\x21\xca\x3b\xe3\xf7\x61\xda\x9f\xc3\xce\x1e\xde\x14\xe3\xd0\xd5\x07\x91\x72\x0e\xce\x7b\x78\x39\x8c\xe3\x9d\x1e\x48\xf3\xbe\x1c\xeb\x79\xc8\x5c\x65\x77\x78\xa6\xf4\x9e\xfb\xab\x07\xee\x54\x4f\x9c\x95\x4a\x7d\x00\xa0\x52\xa9\xee\x18\xa8\x1b\x2b\x8f\xea\xea\xa2\xba\xb1\xfa\xba\x42\x61\xea\xb6\x5c\xb3\xd5\x0f\xe6\x5e\x57\x16\x7d\xdd\x70\xf7\x8b\xc2\xba\xea\x86\x8a\x11\xaa\x29\x5c\xb7\x00\xf6\x54\x34\x24\x2f\xf8\x56\x85\x87\xba\x05\x1e\xf6\xd5\x0f\x0a\x7a\x10\x4c\x81\x39\x5f\x45\x6d\xf2\x86\xcf\xda\xd4\x2d\xf0\x46\xaf\xea\x31\x07\x7a\x70\x8f\xd4\xf3\x93\xbb\x04\xe2\x82\x7b\x80\x8c\x1f\x3c\x04\x82\x9a\x3e\x67\x52\xdd\x58\xa9\xab\x64\x8d\x00\xfb\xa7\xea\xa7\xd6\x2d\x72\xf5\xdd\x5e\x34\xaa\x11\x78\x1d\xa1\xf4\xa0\xba\x21\xbb\x43\xbe\xd9\xba\xa1\x54\xa9\x8a\x31\xd5\x0d\x35\x27\xaa\xd1\x04\x81\x58\x19\xe7\x75\x8b\x9c\xa3\x40\x44\x70\x5c\xde\xb6\x1f\x9c\x42\x75\x8b\x9c\xbf\x16\x85\x55\xc1\x14\x3d\x54\x37\x24\x20\x2a\x80\xb0\x6e\xb8\x20\xbc\x1b\x41\xb8\xb7\xd0\xa5\x48\xea\x06\x63\x6b\x55\x49\xb6\xba\x4d\xe1\x37\xf7\x28\xf8\x33\x05\xae\x2c\xc2\x81\xa0\xaa\x7a\x2e\x75\xc3\x45\x83\x3d\xb9\x9d\xd0\x76\x07\x40\x50\xd4\x88\xcb\x69\x5c\xdd\x21\xb7\x7d\x16\x90\xbc\x57\x30\x99\xf6\x32\x61\x12\x0e\xe1\x44\xde\x92\x56\x95\xb9\x27\x8a\x29\xae\x1b\xee\xe3\xee\x6e\x43\x92\x95\xcf\xa6\x6e\xf4\x22\x2b\x7a\xaf\x6e\x48\x46\x19\x5e\x25\xe6\xa2\xa8\x52\x54\xdd\xe0\x46\xce\xa6\x5d\x08\xb2\xfd\xd5\x26\x88\x02\x89\x25\x21\x8a\x26\x59\xb8\xdd\xf4\x7e\xe5\x76\xd3\xf6\xab\x8b\x5b\x6a\x40\xc8\xb1\xca\x04\xae\x5b\x25\x5a\xfd\x01\x98\xa7\x71\x30\xa5\xd8\x38\x0c\x70\x25\x8b\x30\x03\x40\x45\x08\xdd\x7e\x57\x37\xd6\x04\xf3\x0c\x2a\x67\x20\x88\x51\x93\xbe\x7b\xfb\xc2\x85\xad\xbc\x8f\xba\xb1\x26\xfd\x26\x94\x41\x8a\x55\x65\x84\xba\xb1\x6a\x6a\x53\xff\x6d\xe1\x5c\x10\x36\x14\x07\x34\xbf\x80\xd0\xfa\xee\x80\x9a\x61\xd1\x0c\x1a\x4f\x76\x33\x39\x54\x77\xe8\x66\x0f\x9d\xbc\xbb\x88\xf6\x20\x53\xf6\xd7\x07\x40\x9a\xd9\x41\x47\x48\x4d\xd1\x90\x4c\x34\x51\x28\x79\xdd\x3a\x69\xb3\x88\xba\x71\xe9\xa0\x0a\x01\xd7\x8d\x77\x0e\x9a\x1d\x74\x60\x2d\x8b\x74\x3b\x72\xbd\xba\xb0\x86\xf2\x10\xdd\xfb\x6f\x19\x70\x4d\x28\xbc\x53\xb0\x18\x26\xdc\x29\xd8\x4d\xaa\x74\x89\x17\x0f\x49\x97\xf8\x26\x90\x78\xe9\x60\x35\xa9\x8c\x35\x09\xe1\x09\x19\xa7\xdd\x3c\x6a\x10\x68\x4d\x72\xdd\xde\x5d\x0d\x03\x6d\x25\xaf\x2f\x98\xe8\xac\x1e\xa7\xe4\x98\x5e\xa7\xcd\xb2\x02\x9b\x1c\x11\x79\x57\xcc\x56\x96\xe4\xe8\xa5\xd8\x69\x94\x7b\x75\x01\x9b\x59\x13\x0c\x3b\xc8\xe3\x35\x24\xad\x47\x66\x34\x10\x2d\x93\x4f\x30\x58\x89\x83\xa9\xe3\xa0\x3a\xeb\x69\x32\x07\xb6\x9a\x75\x1d\x11\x4a\x8f\x86\x44\x85\xd6\x6e\x12\x47\x4d\xfc\x6e\x62\x38\x70\xe2\x19\xaf\x07\x0a\x75\x98\x82\x59\x90\xa2\xf8\x88\x44\x46\x49\x37\x45\xf3\xc6\xc1\xf4\x7a\x01\x75\x33\x9a\xdb\x20\x17\x13\xc3\x41\xad\xcb\xbb\x90\xa5\xcf\x8a\xcf\xd0\x93\x9c\xeb\xf5\x00\xa5\xfa\x7c\xd0\xa3\x20\x45\x37\xf9\x9c\x50\x2b\xf2\x4f\x8c\x70\x75\x3b\x17\xd2\x05\x10\x23\xf9\x5e\xc7\x03\x8a\x9a\xa9\xd4\x65\xdd\xe0\x91\xef\xde\x51\xd7\x12\x1b\x34\xfe\xc5\x3d\xa8\x1d\x71\x11\x47\x6e\xd3\x80\x6c\x46\x85\x7a\xf8\x9b\x71\x76\x2d\x10\x04\x13\x2c\xcc\xd5\x48\xbc\x16\x39\x1b\x26\x8a\xae\x6e\xa3\xa2\xac\x59\xd5\x4d\x19\x51\x1d\xc0\xc0\xdc\xcd\xb9\xee\x85\x74\x75\xb0\x3c\xf8\xc2\xf1\xb2\x30\x57\x4d\xe2\x06\xf1\x9a\xbb\x53\xd4\x6d\xfe\x7d\xad\xab\x7a\xe4\xf5\xd8\x66\x0b\x14\x53\x9b\x46\x78\x10\xac\xe5\xdd\xf2\x10\x02\x81\x0c\x0b\xf4\x6b\x07\x3f\x8b\x29\x68\x44\xba\xe0\x5f\x47\xe0\x83\x0a\x5f\x3e\xc1\x10\x4e\xf8\x5a\x27\x0a\xad\x16\x9d\x58\x60\xb6\xbc\x1e\xd0\x9e\x24\x51\x22\xa0\x9e\xbe\x0f\xfa\x80\xfc\x5e\xf9\x12\x6a\xe0\x85\xda\xaa\x95\x53\x03\x4c\xca\x5e\xa7\xb0\x81\x54\xab\x3f\xe0\x7e\x6a\x7e\x00\xa7\x8b\xb8\x6d\x40\x61\x35\xf3\x88\xb0\x51\x5f\x78\x81\x40\xa0\x75\x0a\x86\x8d\x4b\xaf\x2f\x18\xb1\xa8\x44\x99\x1a\x02\x6c\xa8\x86\x81\x52\xae\x10\x1f\x02\x13\x05\x84\xe9\x10\x16\x90\x42\x43\x20\x01\x67\x7f\x02\xc3\x9c\xa7\x8d\x9c\xe3\x90\xdc\xa6\x3a\x50\xfc\x80\xd4\x91\x0d\xc4\x03\x6e\xaa\x59\x44\xc4\xc9\x88\xdb\x06\x8a\xb5\x22\xbf\x10\x17\xa6\x85\x87\x08\x7a\x14\xc5\x07\xe4\x70\x74\x31\xdb\xb0\x52\x36\xaa\x5f\x60\x2c\xcf\xab\x4b\x88\x03\x22\xf9\x90\x00\x82\x17\x3f\xf1\x1c\x73\x97\xb8\xf7\xa8\x8b\x42\x03\x53\x2e\x8a\x61\x58\x29\x17\x5e\xfe\x04\x3d\x5c\x9c\x2c\x24\x1a\xc4\xbd\x58\x30\xd4\xb6\x9a\xfd\x06\x80\x6a\xc2\x03\x4a\xd4\xf6\xee\xdf\xa1\x04\x19\x0d\x09\x52\x99\xb6\x61\xe0\x35\x8d\xca\xd0\xa9\x81\xc2\x6d\xd7\xac\x32\x27\xe1\xdf\xd7\x24\xdc\x03\x9d\x78\x62\x46\x21\x13\xd3\xee\x01\xb7\xce\x7b\x6d\xf3\x9a\x94\x60\xa6\xb0\xeb\x49\x22\xd6\xc0\x3b\x3f\xf0\x56\xed\xee\x11\x79\x44\xf8\x7b\xd4\xec\xd6\x91\x11\x90\x98\xd1\x87\xfa\x43\xe8\xc1\x8b\x96\x60\x61\x55\xb2\x6d\x0d\x85\x91\x84\x5e\x69\x8a\xae\x43\x1d\xf2\x3e\x24\xa5\x0c\xd5\x50\x51\xa8\xcf\x23\x56\x9e\xf5\x9a\x72\x5d\x47\x92\x40\x44\xe2\x74\x1f\x7e\x01\x77\xf4\x85\x9f\xd4\xd2\xae\x01\x81\x05\x2a\x12\x50\x03\xe5\xd4\x21\xfc\x54\x6e\x71\x53\x26\x0a\x95\x0d\xcf\xa7\x72\x3e\x22\x0a\x08\xaa\xe6\xc5\x01\x39\xd5\x7d\x68\x8d\x59\xc7\xac\x98\x72\x61\x6d\xed\x5d\xf3\x6d\x20\x8a\xe1\xdf\x39\x3d\x77\x58\x31\x3d\xb7\x41\x12\x5d\x33\x58\xd6\x59\x93\x29\xe3\x12\x92\xd7\xbc\x2d\x8e\xe0\x21\xc8\x6b\xcd\x09\x1b\x26\x19\xdc\x66\xde\x97\x19\x1d\x2a\x9f\xbd\x78\x29\xcc\xa7\x72\xe4\xd4\x00\xeb\xe8\x90\xe6\x18\x78\xdd\x92\xec\x47\x35\xf0\xb6\x6c\xcb\xc6\x01\xa2\xab\x95\xf1\x80\x60\xce\x4d\xd2\x54\x80\xc1\x73\x6c\xfe\x3d\xa3\xed\xdf\x2b\xda\x9a\x24\x03\x37\xab\xb7\xc6\x40\xde\xa7\x99\x37\x0c\x9c\x7d\x88\x8c\x06\x41\xf6\xef\x6b\xe5\x85\xe8\xb1\xb0\xe4\x21\xa9\x41\x48\x82\x0b\x3b\xb5\xdb\xae\x3e\x77\xde\xa3\xa5\x3e\x57\xb0\x82\x31\xbf\x43\x5c\x92\x94\x19\x56\x70\x42\xf1\x17\x93\xdd\xdb\xb0\x12\x76\x9a\x66\x4c\xa0\xc8\x10\x19\x92\x2a\x03\x02\x41\xc7\xe6\x1e\xe9\xbb\x35\xa2\x11\xfc\x39\x64\xfd\x09\x88\xf5\x7c\xb1\x14\x26\x32\x4b\xdb\x0d\xab\x2e\x8b\xd9\xdc\x41\x77\xb2\xe9\x09\xb1\x9f\xc3\x4b\x77\xf0\xee\x09\xef\x50\xc8\x99\xb2\x9d\xd7\x70\xd2\x73\xe8\x3d\x8e\xc4\x64\xdd\x10\x5f\x03\xa4\x4a\xd5\x13\xac\x01\xf5\x74\x37\xc3\x88\x58\x86\x11\xdc\x1e\x68\x0b\xad\x27\x21\x12\x84\x28\xc2\xa2\x78\xbf\x1a\x4e\x22\x49\x00\x22\x74\x54\x11\x1f\x35\xb0\xb8\xae\x89\xeb\x5a\xeb\x26\x00\x2f\xda\x91\x7d\x1e\x5d\x0b\xcd\x7e\x40\x55\xcc\x8c\xee\x5a\xd4\x22\x34\xb1\x74\x6d\x31\xaf\xbc\x19\xcb\xe6\x33\x0c\xa1\x06\x43\x6a\x4e\x60\xe4\x66\x32\x37\x47\xaa\xf0\x30\x75\xdc\x94\x16\xcc\x9e\xef\xb5\x78\x5a\x6d\x5e\x3d\x50\xcc\x4e\x98\xfc\x5b\xbd\x75\x51\x9e\x76\x33\x49\x42\xf6\x1b\x5e\xbc\x25\xfb\x79\x1e\x0f\x81\xf0\x07\xe0\x05\xaf\x0e\x3a\x08\xcc\x1d\x60\x71\xcc\xd0\x1f\x2c\x86\xec\x31\x01\x99\x25\xc3\x2c\x19\xc1\x06\xba\x4d\xb2\x06\x98\x2f\x87\xf4\xa2\x08\xc1\x50\xd7\xbc\xd4\xc8\xc2\x2f\x8a\x95\xa9\x91\x37\x0b\x28\x14\xa6\xc6\x8d\x47\x48\xf3\x27\x34\x6f\x88\xcb\x47\x86\x03\x64\x77\x01\x18\x93\x7b\x00\x8c\xc9\xbf\x23\x6c\x57\x0b\x13\x03\x6a\x00\xe7\x9f\x64\x07\xd5\x18\x90\x68\x26\x86\x1d\x19\xd9\x29\x4e\x14\x03\x92\x10\x24\x13\x46\x64\xb5\x8c\xe4\xdf\x0b\x29\xcb\xa3\xa3\x94\x5c\xf1\x07\x3b\x54\x18\x0f\x80\xed\x90\xfc\xfb\x49\x04\xb9\xc7\xeb\xfb\xab\x36\x2d\x71\x0c\x58\x82\xe4\x36\x2e\x8e\x92\x64\x1c\x19\x08\x2a\x1f\x45\x8d\x10\x19\x47\xf2\x0b\x8c\xf7\xd0\x09\x13\x23\xed\xe0\x52\xcc\x62\x64\xb2\xb2\xbf\x68\xec\x52\x63\x46\x9a\xef\x5f\x5f\x80\x8e\x92\xdb\x07\xbf\x70\x17\x84\x5a\xab\x0c\x73\x66\xd5\x6e\x89\x09\x84\x93\xdd\x66\x78\x92\x8e\xe6\x88\x4b\x0d\x5e\x40\x43\xa6\x4c\xcd\x88\x66\x65\x9c\xe8\x17\x68\x6b\xf4\x52\xa6\x03\x3a\xbc\x5f\xe0\x19\x22\x11\x30\x22\xda\x34\x29\xca\xaa\x46\x64\xf2\x56\xb7\x61\x31\xcd\x06\x1a\x06\xd3\x21\xb3\x43\xe4\x4d\x4f\xaa\xa5\x53\x23\x13\x6d\x6c\x2c\x89\xf4\xfd\x2b\xb0\xa3\x46\x66\xde\xd8\x38\x12\xa7\x54\x19\xdb\xab\x8b\xfe\xfd\x55\x5f\x98\x45\x41\x5e\xd5\x25\xae\x11\x42\xa4\x52\xa8\x6b\xe4\xed\x51\xb6\x4c\x44\x5e\x0e\xfe\x1a\x11\x2b\x21\x41\x38\xb2\x6a\x9c\xa2\x0d\x6a\x2c\x34\x58\x4a\x3a\x8f\xac\xe7\x53\x3d\x8b\x29\x78\x46\xdb\x2e\x62\xe1\xac\xc4\xf3\x23\x24\x51\x6b\x08\xb1\xac\x59\x0a\x53\xac\xe8\x23\xde\x18\x0b\x93\x2d\xbd\x2d\x0a\xb6\x85\xa9\x9a\x31\xb0\x72\x8c\xd7\x58\x38\x0d\x0d\x51\x49\x40\xc2\x13\x73\x7d\xaa\x11\x0b\x33\xeb\x30\xe2\x78\xdd\x78\x35\xa2\x2a\x0e\x32\xd9\x02\x22\xcd\xa0\xd5\x40\xaf\xba\xb8\x1e\x92\x69\xab\x3a\x0a\x23\xbc\xf9\xc1\x40\x37\x6e\x2c\xc9\x39\xb1\xd1\x71\x22\x18\x1a\x17\xd3\x1f\x50\x39\xeb\xfe\x80\xbe\x3f\xaf\x05\xae\x3c\x1f\x92\xa4\x22\x33\x7e\xe5\xac\xaf\x11\x57\x9e\x8f\xe2\x36\xc2\x46\x3d\x4b\x38\xef\xab\x77\x01\x9c\xf5\xa3\xb8\x0d\x34\x79\x67\x33\x90\xd5\x00\xe0\xfa\x4f\x17\x22\xa9\x11\x37\x4d\xe9\x0e\xb8\x1a\x51\x58\xd7\xd6\x86\x38\x18\x3a\x6b\xb4\x4d\xe9\x31\xf9\x4c\x8a\x94\x1e\x4d\x5d\x2c\xa7\x63\x52\xa0\x34\x69\x06\xc8\x22\xb9\xdd\xef\xa3\x7e\x85\x77\xe9\xa0\x56\x6e\x08\x61\x04\x1d\x5e\x26\x04\xba\xaa\xda\x67\x8d\x03\xe2\xae\x8e\xe1\xc8\xd4\x61\x69\xc8\x71\xe7\xc1\xdd\xfd\x00\x75\xfc\x4c\x6b\x53\xce\x2b\x9b\x4f\xa8\x83\x37\xb4\xe8\xf7\x83\x87\x5e\xf8\x91\x25\x2e\x1e\x0c\xec\x15\xf8\xac\x75\x6b\x22\x61\x71\x9a\x17\xef\x44\x52\xef\xf0\x12\x1d\xf4\xef\x6a\xbe\xb8\x6d\x6a\x98\xa8\x50\x59\x6f\x98\x95\x2e\xa7\xb5\xc9\x14\x86\xc5\x21\xb3\x45\xa4\x08\x68\x84\x22\x0b\x78\x78\x85\x28\x02\x4a\xbd\x8f\x14\x01\x9b\xfb\xc3\xe9\xd0\xdc\x1f\x88\x58\x32\x69\x84\x03\x3b\xbd\xfa\xbf\x39\x43\xcd\x00\xc1\xac\xc3\x3b\x71\xc9\x84\xfa\x00\xa6\xc9\x61\x22\xe7\x7d\x0b\xe6\x3f\x28\x8b\x6b\xfd\x22\x5e\x24\x39\x01\xbc\x64\x4a\x2f\x39\x4a\xd7\x54\x0b\x4a\x11\x95\xfe\x86\xb9\x09\xb2\x8b\x86\x89\x0e\xc9\x45\xca\x5c\xa8\xf1\x5a\x3b\xd9\x0f\x0e\xec\x23\x4f\x81\x38\x10\x8d\x5c\xc0\x81\x59\x03\x6f\x57\x68\x6e\xb3\x8e\x9b\xdb\x8b\x0a\x04\x21\xca\xe6\x66\x8b\x3d\x37\xca\x54\x58\xb0\xc0\xa5\x9c\xe3\xd5\x21\x70\xea\x03\x16\x76\xc8\xe1\xef\xe9\x2e\xaf\x96\xed\xe0\x2e\xb7\x25\x29\x3e\x94\xdc\xa4\x94\x45\xe4\x06\x0d\x1f\xb8\x74\x9f\x1b\x67\xa8\xa2\xbb\xf9\xb8\x5c\xce\x71\xaf\xfb\x8a\x6d\x35\x52\x50\x69\x26\x99\xb7\x50\xdc\x14\xa1\x26\x88\x97\xba\x81\xbd\xa6\x8d\x94\x3d\xd4\x5e\x0c\xd8\x0f\x78\x52\xe9\xb8\x4c\x1b\x63\x23\xdc\x23\x48\x59\xc2\x67\x62\xa9\x99\xea\x36\x1d\xd7\xd5\x1d\x50\xd2\x91\xc8\x9c\x28\x9e\x0a\x4d\x69\xa3\x76\xad\xdd\x91\x96\x21\x52\xdb\x21\x05\xe4\x12\x68\xbf\x26\x3a\xe4\x55\xcb\xa9\xa6\x65\x89\x14\xcb\x4b\x2b\x9d\xa8\xfa\x0d\xe8\x81\xcd\x63\xc0\x72\x1e\xb4\xfa\x89\xf9\x42\x12\x2b\x52\xe4\x16\x76\xbb\xc3\x52\x29\x4c\xc6\x41\x18\x34\xe4\xb2\x1b\x8a\xe2\x13\x44\xbc\x6d\xf8\x05\x9e\x44\xc9\x2f\x3c\x30\x57\x09\x53\x89\x62\x84\xf8\x70\x4a\xdc\x75\xda\x64\x69\xd9\x09\x65\x6f\x49\xbc\x12\xc1\x96\xe8\x94\x50\x19\xad\xbb\xcf\xb9\x6b\x54\x39\xb0\x26\x98\x01\xcd\xea\x12\xa2\x33\x9b\xdb\xcb\x0c\x68\x44\x65\x4a\x01\x46\x44\x5e\x30\xa8\x4b\x98\xf1\xec\xdf\x4d\x99\x1b\xcf\xa8\xca\xb4\xe9\xc8\xe8\x95\x58\x98\xd7\x40\xc3\x8e\xa7\x84\x82\x9a\x32\x8d\xbe\x26\xd3\xcc\xad\x28\xa0\x50\x91\x45\x01\x37\x35\xf1\x5e\x84\xea\x69\x16\xe6\x34\xc8\x92\x95\x96\x04\x96\xfc\x09\x6c\x81\xaf\x36\xe2\xd2\xd3\x4f\x4a\xc4\xd5\x04\xe9\x2c\xd8\x17\x95\x0a\x8f\x54\x31\x8b\xc4\xe8\x4e\x7b\x8b\x12\xe4\x33\x85\x7f\xd6\x54\xa9\x07\x35\x3f\x20\x33\x10\x83\x4b\xb5\xe1\x90\x14\x12\xe0\xc5\xd6\x45\x55\x35\xa1\xa4\xe2\x30\x7d\xc1\x1a\x38\x5e\xbf\x33\x34\xc0\x6b\x5b\x17\x01\x0a\x8d\x28\xba\xa8\xfa\x85\x35\x35\xea\x14\x32\x03\xa4\x46\x73\x8b\x40\x6a\x3c\x08\x4d\xa1\x8d\x4a\xfe\xf0\x1b\x38\x09\x4d\x1c\xad\x81\xab\xbb\xc7\x85\x39\x41\x89\xbb\xd7\xa3\x39\xd6\x14\xe8\x92\xee\x46\xa9\x69\xdd\x0d\x6a\x76\xd1\xc8\x2e\xbc\x29\x96\xbd\x4f\xb2\x72\x42\x59\x46\x1f\x3d\xa9\xd3\x54\x61\xcc\x74\x7a\x8c\x34\x46\x5f\xd3\xd2\x18\xbc\xa1\xdd\x06\xfa\xc4\x2a\x8b\xd9\x5d\x12\xf7\xfe\x60\x6d\x7e\x2d\x06\x2e\x47\xb0\x01\x2f\x75\xee\x3b\xff\x0e\x8a\x36\x7d\x0e\x7a\x68\xbd\xef\x58\x5d\xd9\x6b\xc5\xeb\xb8\x7c\x80\x26\x66\x7f\xdb\x5d\x93\x28\x06\xea\xb4\x49\x83\x65\x91\x34\xcb\x25\xf6\x79\x9b\x0d\x6e\x54\xcf\x0a\x65\x14\xb3\x19\xf1\xf2\x7d\x7b\xef\x0f\x42\x2d\xb4\xc0\xf7\x3d\xa4\xe7\x24\x5e\x46\x2a\x4d\x29\xc1\x17\x3e\xcc\x09\x70\xd9\xc2\x30\x23\x60\x82\x94\x2d\xf2\x09\xae\xf0\xea\x39\xf0\x02\x30\xdb\x36\x12\xa2\x2c\x87\x19\x20\x8a\xd4\xd8\x7c\x92\x60\x82\x8c\xaf\x0e\xe6\x1c\x95\x61\x53\x13\x2d\x90\xaf\xef\x41\x5e\x2f\x08\xb9\x47\x74\x06\x27\x5a\x1c\xa5\x0e\x24\x86\x50\xfa\x44\x85\x23\x7c\x98\xf8\x50\xf7\xb9\x19\xc9\x07\x8f\x6c\x43\x74\xdc\x53\x16\x96\x70\x9d\xce\x0d\x6d\xcd\x80\x85\x11\xed\x88\x49\x08\xa1\xb4\x03\x35\x4d\x69\xb4\x6c\x3e\xa9\x4e\x12\x82\x34\xbd\x34\xa5\xd1\xb2\x79\x0b\x31\x82\xd2\x5e\x8b\x34\xc5\xcf\xa2\xe4\xdb\x9a\x96\x38\x29\x09\x3a\x9d\x4c\x3b\x52\x7b\x8a\x93\x69\x33\xed\x5d\xd4\x80\xcd\xa0\xa7\x3c\x59\x94\xc8\x5a\xd3\xc5\x13\x5a\x1a\x40\xba\x10\x1f\x20\x11\x3c\x4d\xf1\x2f\xd9\x75\x91\x58\xd8\x50\xb2\x54\xba\x28\xfa\x58\xce\xb8\x29\x14\x78\xe5\x20\xef\x05\x33\x92\x3b\x01\x04\xa1\xed\x66\x78\x97\xf7\xf0\xcd\x59\xbb\x03\xec\x59\xc7\x19\x25\x04\x4c\xa6\xd7\x2e\xbf\x99\xf4\xa8\x21\x1e\x1e\xd0\xde\xb5\xcf\x9a\xa6\xf0\xf0\xb0\xf0\xa6\xdb\xf0\xf0\x7b\x47\x3d\x5c\x1a\xb7\x1b\xac\x69\xe6\x97\x0f\xf1\xf2\x93\xc8\xec\x9a\x37\xf4\x26\xab\x42\xe6\x15\xa2\x76\xd7\x64\xc6\x46\xda\xaf\x90\x91\xa8\xed\x70\x97\xbc\x3d\xe8\xe1\x33\xc3\x1c\xc8\x86\x74\x4c\x65\x98\xf7\x86\x35\x89\x1c\x80\xe6\xe0\x17\xf2\xf7\x57\x53\x1e\x76\xcd\x81\x33\x1c\x6a\x37\xbc\x5f\xd5\xee\xec\xd0\x0f\x20\x0e\x76\xb7\x79\xf8\x8b\xb7\x66\x94\x9d\x19\xba\x9c\xa0\xe6\x95\xcb\x23\xce\x96\x11\xa9\x38\x74\x3b\x41\xcd\x91\x82\x93\x18\x55\x8e\xc4\x94\xbf\xe8\x68\xbb\x4b\xf2\xc6\xe1\x07\x8b\x38\x34\x0f\x54\xae\x56\x29\x83\x9a\xa7\x34\x97\x74\x71\x48\xcd\x0c\x3f\x54\x99\x92\x9a\x99\xbc\x63\xf7\x49\x4e\xd8\xb7\x62\x8e\x99\xc9\xde\xf9\xf5\x80\x40\x6a\x08\xf8\x78\x1d\x58\x97\x69\x8f\xcb\x5e\xef\xb4\xaa\xff\xa9\xcd\xd0\x24\x2f\x0e\xec\x6d\x2a\xd0\x53\x33\x93\xb7\xed\x5f\xc9\x19\xcc\xc8\x43\x64\x1a\xd8\x65\x1d\xc9\x05\x37\x72\x8a\x33\x64\x46\x0b\x66\x63\xb2\x70\x0b\xc8\xdb\x90\x0b\x0f\xd3\xee\x07\xb8\x25\x74\x73\x9b\xae\x6b\x9d\x95\xb9\x30\x8a\x45\x3c\x33\x2f\x5b\x56\xf1\x83\x8b\x61\x03\x42\x55\x59\x33\x55\xa7\x95\x3e\x78\x61\xbf\x92\x8b\x4a\xb8\xce\x75\xc1\xa9\x99\x54\x12\xa6\xa0\xa8\xb0\x22\x44\x7f\x40\x39\xc3\x84\x59\xb1\x57\x64\x55\xc8\x34\x5e\xa9\x48\x4c\xcd\x8d\x64\x28\x4f\x50\x6e\x58\xd0\xe8\x17\x10\xb3\x21\x86\x93\xdb\x72\x4e\x09\x26\xe4\xa2\x58\x43\xc8\x6d\x61\xc6\x2f\x2c\x44\xa8\x0b\xa4\x55\x3b\x0c\x24\x77\x1e\x06\xc5\x0f\x1a\xbf\xd0\x82\x75\x90\x7e\xf4\x0b\x6b\xc9\x85\x08\xda\xa3\xb2\xb7\xec\x08\xec\x42\xc8\x66\x01\xbb\xe6\x2f\xc0\x13\xc4\xbc\xf3\x14\x4d\xca\x66\x9e\x80\x72\xcd\xe9\xf5\x3d\xc9\x50\x4a\x63\x1e\x08\x19\xad\xee\x90\xe5\x46\x05\x33\x6f\x6d\x72\x70\x6f\xa6\xa0\x61\xdb\x64\xde\xb9\xbc\x3a\x60\x32\xbc\x99\xc1\x6b\xb1\x13\x26\x4d\x6a\x49\x16\xb2\x37\xe4\x9d\xa7\xa4\x44\xb6\xbc\xe3\xbc\x90\xde\x9a\x61\xd4\xb2\x03\x35\x33\x3d\x23\x9b\x82\x90\x69\xad\xda\xba\x35\xef\x3c\x56\x05\x23\xaa\x36\x37\xb3\x14\xc4\xdc\x35\xef\x7f\x26\x62\xdb\x7c\x9e\x0f\x96\xef\x11\x04\x53\xb6\x28\x9b\xb4\x8e\x7c\xc0\xac\x16\xdd\x21\x85\x17\x49\xdb\x19\xb7\x85\xfa\x74\xc9\x27\x8e\x69\xa9\x18\x79\x5d\x19\x21\x01\x2f\x9f\xc0\x52\xf2\x07\xd8\x24\x3f\xd3\x8a\xf2\x49\x95\xb8\xba\xfb\x9d\x07\xaa\x30\x80\x1a\xcb\xcd\x5b\xea\x44\x34\x9a\x14\xfd\xbc\x6a\xe1\x99\xb2\xae\xb5\xce\x42\x01\x05\x0d\xc9\x6b\x99\x86\x2a\x0f\x49\x43\x95\xf5\xf8\x7c\x2d\xfa\x77\x97\xa0\x7f\x29\x66\x79\x4a\x22\x65\xf3\x9e\xbb\x11\xfd\x6f\x52\xa3\x5c\xe1\x23\x93\x25\x6a\x9a\xb9\xf0\x4d\x4d\x6e\xb8\x07\x92\x96\x90\x78\x13\x89\x02\x09\x86\x28\xab\x5d\xf9\x26\x5f\x37\x9f\xb8\xc1\x69\x24\x01\xe6\x87\x3b\xd2\x5f\x3c\x01\x3d\x0a\x2b\x0f\xb0\x62\x2e\xf0\xe0\xa8\x31\xe1\x3c\xe4\x0a\x46\x34\xe5\x10\x49\x84\xf9\xa1\xc2\x23\xe9\x2a\x3f\xc0\x8a\x04\x9b\xfc\x90\x13\x99\x94\x9e\x6b\xbe\xe0\xd3\x0d\x96\x28\x47\xb9\xe6\x87\x5b\x56\x67\x51\xd9\x20\xe7\x4a\x14\x29\xcb\xf3\x29\x2b\x6b\xe1\x85\x4e\x2a\x35\x52\xcb\x06\x62\xd4\xc9\x52\xb6\xd5\xa5\x1e\x2c\x3b\x90\xf4\xb6\x12\xd6\xda\xf8\x01\xfd\x2a\xc3\x9f\x60\xf5\x75\x00\x16\xde\x82\x61\xcf\x77\xe1\x2d\x18\xba\x23\xa5\x96\x80\x4d\x56\xdc\xc6\xc4\x5f\x43\xdc\x1c\xb3\xe9\x01\xcf\x26\xb1\xbf\x32\xe5\x95\xe6\xb4\x80\x12\x41\x51\x3a\x9a\x4a\xc4\x6a\xe9\xb4\x2b\x2c\x33\x6c\xd3\x66\x89\x3c\x27\x24\x0c\x97\x88\xd5\x31\x8c\x11\x8c\x41\x67\x5b\x89\xb4\xb7\xbb\xc7\x9b\x20\xf9\x01\x12\xbe\x3d\x89\xb4\x16\x43\x3d\xd0\x16\xa5\xba\x47\xb5\x50\x38\x11\x33\x2b\x09\x44\x2d\x16\x5e\x12\x10\x2b\xa2\x2f\xb4\x4c\x49\xcc\x2b\xbc\x42\xdd\x76\xa4\x82\xcc\x62\x5b\x0a\x0a\xaa\x04\xd7\x57\x87\x0f\xbc\xd2\x9a\x23\xaf\xee\xb4\x89\xa5\xe4\xb5\xd8\x43\x0f\x20\x50\x69\x97\x94\xbc\x88\x5a\x30\x64\xc2\xa8\x85\x61\xb6\x85\x03\xaa\x4a\xc6\xda\x8a\xdb\x94\x4c\xfe\xe4\x21\xa1\x17\x79\x65\x97\x6b\x50\xe2\x72\x81\x6b\xd0\x42\x46\x59\x86\x29\x89\xaa\xa5\x10\x68\xf1\xf8\x52\x40\xe4\x62\x60\xa5\x10\xcf\x5a\x19\xd8\xa5\x54\x69\xac\x96\xc2\x39\xb8\x0d\xc9\x55\xec\xad\x14\x4c\xa1\xb9\x7f\x48\x78\xd5\xbf\xf3\xb8\x97\x78\x56\xea\x62\x2e\x82\x19\xe9\x17\xc5\x48\xa1\xe4\x64\xe2\x43\x8e\xb0\x2e\x1f\xa9\xa5\x2e\x34\xbb\x83\x83\x73\x14\xda\x60\x89\x72\xde\x4c\x41\x92\x6f\x35\x6d\x35\xb0\x2f\xa3\x79\x0a\x52\xd1\x1a\x70\x69\x70\x78\x6d\xf5\x27\xa7\x50\x69\xa8\x2d\x20\xde\x58\x1a\x10\x26\x3b\x5b\xe1\x65\x59\xcd\x64\xb2\x3c\x84\x12\x3f\x4b\xa7\x76\x2b\x51\xbe\xf4\xb5\x68\x9a\x40\x5f\x2c\x5f\x58\x45\xf5\x1a\x73\xc7\xd2\x79\x7f\x82\x70\x86\xdc\x09\x9f\x8c\xa5\x2f\x20\x34\xc5\xce\x44\x69\x0f\x09\xd9\xc1\x1d\x4c\xa1\x2c\xa9\x9e\x41\x2d\xf0\x11\x5a\xd4\x2c\x83\x72\xb9\xc4\xba\x32\xa8\x5d\x44\x7f\x81\x72\x37\xde\x4f\x4c\x8d\x50\xfd\xcf\x5a\x70\x95\xa6\xfd\x1b\x65\x80\xa9\x98\x0b\x21\xc6\x4c\x77\xd0\xd7\xb2\x52\x25\xbc\x21\x07\x8e\x2d\x77\xb0\xaf\xdd\xe1\x07\x74\xff\xaa\xc7\x25\xb4\x49\xc1\x2e\x3b\xef\x6a\xd6\x10\x34\x07\x49\xc9\x2a\x4b\x68\x93\x42\x53\x76\x2e\xb6\x3b\x20\xcc\x6e\x43\x93\xf0\xba\xc0\xbc\x63\x17\x76\x59\x22\xda\xf0\x88\x64\x8c\x02\xf9\xe0\x65\x7b\x6e\x93\x2f\x9a\x93\x2e\xd7\xa5\x4e\xce\x72\x50\x0b\x90\x40\x51\x58\xa3\xd8\x9a\x45\x39\xc0\x3a\x25\xe4\x14\x04\xad\xb5\xe6\x1d\x08\x87\xa6\x85\xdb\x42\x7f\xe5\xe6\x31\x99\xeb\xa7\x59\x1e\x64\xef\x3e\x61\x78\x77\x58\x33\x35\x9c\x10\x18\xcc\xa7\x18\xd4\x56\xbd\x98\x27\xce\x24\x6f\x72\x1a\x99\xcc\xb7\x90\xa6\x6b\x8f\x64\xa1\x8d\xc9\x6b\x7f\x52\xad\x4f\x1e\x61\x10\x04\x7f\x01\xc3\x98\xb9\xf5\x89\x33\xca\x7c\xe8\x5c\x93\xf0\x90\xc8\xaa\x92\xb4\x5b\x2e\x32\xaa\xd7\x03\xb0\x0d\xef\xdb\x8b\xdb\xd4\x98\xe7\x9d\xf0\xd5\xcb\x0f\x61\xd0\x92\x5a\xb9\xb8\x07\x2c\x72\x5c\x90\xf9\x4d\xb1\x17\xe8\xc9\x7b\x84\x97\x7d\x2a\xb5\xbd\x16\x84\xc1\x59\x6e\x2a\x53\x5a\x0c\xc9\x4a\x61\xb9\x71\x4d\x89\xa7\x09\xe1\xd0\xc1\x58\x05\x05\x0c\x2d\x99\x15\xa4\x47\x44\xa3\x09\x31\x70\xcd\x10\x21\xcd\xf7\x75\xae\x42\x78\x0c\xde\x32\x90\x15\x7d\xf1\x57\x2d\x94\x15\x3d\xe7\x67\x2d\xbd\x20\x78\xb8\x52\x06\x09\x15\x77\x92\xc5\xac\x07\x48\xb0\x0c\x05\xb7\x64\x53\x35\xb5\x5a\x37\x28\xdf\x62\xb1\x15\x05\x73\x6c\xe6\xad\x1b\x88\xeb\xd5\x5e\x0b\x95\xf5\x00\x55\x1d\x25\xc7\xd5\x8d\x5e\x83\xaa\x36\x77\x48\xf2\x0b\x03\x23\xba\x03\x08\x44\xc3\x10\xd0\xfc\xde\xd4\x26\x8f\x17\xc3\xae\xb8\xd0\x42\x25\x18\x6a\x45\x05\x9c\xcd\x1d\xa2\xc2\x8d\x55\xdc\x1a\x70\x24\xb5\xfc\x93\x23\xa8\x06\x58\xfd\xc4\xb6\x2a\xee\xb6\x08\xd6\xda\x2b\x65\x4a\x43\xc3\x2b\xe2\xad\xa4\x57\x5c\x02\xba\x59\x65\xae\x81\xd2\x90\x10\x10\x79\x4f\x9a\x26\x18\xa9\xa3\x4b\xb5\xab\x2b\x88\x4d\x3b\xb8\xb2\x38\xb3\xb5\xf8\x1a\x51\x3c\xa6\xb9\x8b\x82\xa2\xd9\x02\x2a\x2e\xa8\x3d\x66\x43\xe5\x3e\xcd\x62\xdd\x1a\xea\x21\x07\x3f\xf0\x03\x9e\x72\xc9\x43\x30\x95\xa2\x1b\x86\x93\xc4\x68\x28\x2f\x2c\x9c\xd6\x25\x52\x02\x33\x0c\xc0\x83\x09\x21\xfd\xff\x8c\x7d\xc9\xd9\xf4\x2c\xcf\x6c\x2a\x5f\x08\x6d\x26\xc1\xe6\xcd\xc5\x63\xfe\x21\x9c\xcb\x55\x7a\xaa\x7c\x56\xff\xbd\x74\xb7\x0d\x02\x84\x28\x34\xf2\xc6\x38\xfd\xc3\xf6\xdf\xff\xa6\xa3\x37\x46\x65\x9e\x9f\xe9\x1f\x20\xd9\x74\xb8\x8f\x1a\xa4\xda\x3f\xe4\x30\x44\x75\xa5\xef\x95\xa4\xe7\x78\xa1\x6b\x28\xe1\xf9\x18\x28\x6d\xba\x3e\x34\xbc\x07\xe1\x26\xd1\x37\x18\x48\x6c\x90\x36\xda\xbb\x27\x37\x8f\x1a\x7a\xba\xa2\x5b\xc9\x80\x5b\x9c\xad\x43\xe3\x85\xba\x7d\xd3\x9e\x1e\x8d\x47\x8a\xce\xbd\xd1\xb8\x56\xd2\x25\x8c\xc6\x00\x73\xc9\x8d\xf1\x62\xdd\xbe\x99\x05\x69\xa5\xf5\x35\x76\x40\x37\x68\x8f\xc5\xd1\x72\x69\x4c\x04\x2f\x3a\xcd\x7d\x60\x98\x3a\x43\x46\x4f\x1e\xd4\x30\x89\x7e\xbd\x0f\x3a\xa2\x5a\xbc\xa9\x68\x46\xf5\x1d\x71\x74\x6c\x6b\x4f\x6c\xa7\x02\xc1\x3c\x0a\x74\xeb\xcb\xf9\x00\xba\xb5\x6e\x71\x74\x92\xa4\x1e\x98\x33\x47\x59\x71\xc7\x60\xb0\xb1\xfd\x2e\xc7\x8b\x76\xbb\x4d\x56\x83\x85\x31\x6c\x57\x18\x83\x73\x2f\xfe\x19\xdc\xdc\xfe\x1f\x57\x4c\xb3\x0f\xf4\x88\x3e\xc6\x06\x13\x62\x87\xb7\xee\xa0\x95\xed\xf3\x05\xdc\xe6\x3c\x6d\x70\x9b\x73\x38\xf2\x78\xe1\x72\xdf\xbc\x52\x01\x17\x5b\xb3\x63\xc2\x65\x51\x18\x9d\x83\x76\x03\x48\xe0\xa7\xc3\x7b\x04\x39\x7c\xf3\x17\x28\x89\xaf\xbb\xd7\xa0\x57\x9d\x52\xd9\x8d\x11\x27\xbf\xd0\xb4\x45\x9e\xd6\x6e\xe2\xe1\x1b\x1a\x26\xfc\xe8\x42\xb9\xe7\xc6\x60\x75\x3c\xa1\x9c\x31\x2b\x86\xa5\x61\x4c\x4c\xb4\x89\x82\xe6\x52\xd9\x4f\xc6\x80\xe2\x72\xf3\x52\x4e\x70\xf4\xa7\x43\xe2\x51\x9d\xc5\x63\x82\x39\x3c\x0d\x8b\x14\x49\x05\x31\x10\x70\x6c\xbd\xcb\x58\x04\x77\xdd\x3f\xe0\xb0\xfe\x7c\x10\x70\x76\xf1\xff\x24\x49\x43\x5a\xe4\x5f\x91\xb8\xc0\xae\x02\x6a\x83\xd9\xb5\x7d\x33\x1a\x3b\x4e\x4e\xcb\xc3\x9d\xfe\xec\x7e\x86\x4e\xc4\xbe\xa7\x03\xc5\xe4\x7e\x7f\xaa\x27\x34\x06\x33\xca\xf8\xdc\x65\x78\x85\xd2\x03\x8e\x81\x04\x32\xbe\x63\x0f\x86\x05\x2b\x9f\xe0\x18\x07\x62\x2d\x2d\xd9\x52\x45\x69\x5e\x85\x39\xd4\xe8\x77\x24\xd8\xf5\xaa\x1d\x98\xa2\xe2\x67\xac\x9a\x2e\x36\xe3\xe0\x91\xe0\xa3\x1b\x4a\x4d\xa5\xe5\x1c\x03\xf6\x52\x55\xd3\x19\xe3\xc5\xb6\xb3\x59\x9e\x9f\x84\x85\x16\x4b\xc0\xba\x9b\x10\xd4\x00\x94\xdd\xbc\x9d\x90\x6c\xb2\xda\x5f\x60\x30\x0c\xd8\x83\x06\x96\x75\xf9\xcd\x31\x4e\xd2\xec\x67\xee\x06\x0f\x8a\x06\x54\x43\xfc\x71\x66\x35\x6c\x7d\x72\x35\xbe\xa1\x4e\x5f\x6c\xda\x37\x7f\x01\xff\x38\xab\xf8\x06\xd4\x92\xdb\xe7\xfd\x9c\x27\xcd\xcb\x85\x8c\xad\x9f\x67\x68\x9f\x8d\x60\xae\xe4\x35\x31\xdf\x0d\x31\xf2\x79\x06\x05\x42\xcb\x83\xa9\xb3\x1d\xfd\x35\x60\x30\xb5\xcb\xd3\x60\xae\x48\x43\xfa\x41\x8f\x3a\xfb\x1c\x0f\x56\xfa\x30\x02\x1f\x0f\xfa\x34\x64\xa0\x05\xf5\xf3\x7f\x05\x8c\x11\x4d\x74\x99\x93\x36\x6e\x3c\x1d\xdf\x6b\x90\x4f\xe0\x59\x24\xa2\x34\x9b\x75\x17\xe3\x21\x5a\x76\x7b\xc8\x51\xe0\x53\xf0\x85\xb2\xd3\xe1\x78\x03\xe1\x1c\xf5\xd3\x3e\x14\xd4\x3e\x88\xa1\xd5\xfc\x08\x04\x54\x72\xb3\x17\x76\xb0\x6a\xbd\x0e\xf2\xf8\xe5\x06\x5a\xfa\xa1\xfe\xf7\xbf\xe6\xa8\xf6\xf8\x75\x4e\x99\xbf\x20\xfc\xa8\x7e\x03\x11\x28\x92\xc5\xc1\xc0\xde\xe1\x0f\x0e\x5c\x0e\x4d\xc2\x85\xb4\x52\x53\xcf\x40\x4c\xd3\xcf\x38\x12\x85\x98\x62\xa3\x90\x73\x07\x1b\x8b\xec\x48\xe8\xc4\x96\x35\x1e\xf4\x0c\x7f\xdb\x4f\x0b\x64\x9c\xa1\xe7\x40\xfa\x4b\x51\xc8\xa8\xdf\x30\x89\x1b\x48\x5e\x7e\xe6\xfe\xa9\xfe\x01\x39\x6a\x37\xf7\x80\x3d\x5f\x4d\x01\x82\x7e\xdd\x00\x43\x38\x7c\x03\x89\x92\x48\x43\x63\x28\x54\x7f\x34\x7f\x02\xdb\x9b\x07\xf9\x62\xd3\xfa\x99\x85\x17\x9a\x56\x9f\x78\x51\x98\xd6\xda\xdf\xa7\xf3\x94\x9e\x41\xa2\x36\x78\x64\x6a\x46\x91\x5c\x73\x56\x35\xa6\x17\x77\x56\xe3\xad\x48\xf3\xaf\x84\x6f\x40\xc3\xba\x7d\x9e\xc1\xeb\x3a\xd6\x03\x1a\x56\x5b\x7b\x03\xb0\xd4\xf1\x7b\xc1\x4c\x8c\xda\x4b\x51\x73\x33\xfa\x03\x70\x82\xa7\x84\x28\x54\x6a\xb6\x68\xbc\xbb\x8a\xdb\x83\x21\xbe\xbe\x54\x44\x23\x89\x7f\x72\xd3\x8e\xcc\x76\xa3\xcd\x1c\x2d\xe5\xaa\x9b\x83\x56\x4c\xa2\x3e\x12\x72\xea\x3c\x8d\xc6\x03\x6b\xb8\x09\xc4\x7a\x7a\xd6\x1b\x62\xd8\xfd\x3f\x15\xb2\x92\x71\x81\x6c\x37\xd3\x43\x84\xb5\xda\x9e\xdf\x91\xea\x58\x5d\x17\xa2\xe7\xaa\xf8\x8b\x01\xbb\x86\xbf\x80\x50\x14\x24\x88\x8e\xb4\x15\x9f\xf7\x93\x64\x8d\x81\x10\xd5\x8c\xd5\x99\x2c\x46\xff\x0f\x88\x48\xc1\xa4\x80\xe5\xda\x01\xee\x81\x10\x63\xe7\x8a\x09\x16\x66\xfb\xfc\x0f\x67\x7c\xdd\xef\x63\xe0\xe0\xe8\x7e\x3f\x37\x9b\x7f\x80\xb9\x49\x5a\xf1\x18\x88\xea\xb1\x62\x3d\x50\xa8\x4d\x05\x09\x46\x10\x7f\xea\x7c\x8c\xd8\xe0\xfa\xe0\x67\xe8\x61\x84\x01\x22\x78\xdd\xd7\xa2\x04\x27\xd9\x42\x10\x5e\x83\xf6\xfa\x0a\x96\x66\xb6\x42\x38\xa0\xc3\x55\x51\xe3\x11\xb4\x83\xab\xa0\xef\x88\x00\x48\x90\x09\x25\x90\x30\xc7\x86\xc4\x78\xd1\x68\xb5\x09\x3b\x66\x82\x04\xb5\x98\x25\x61\x3c\x0b\x93\x07\xb4\x70\x7f\x4c\x1c\x3d\x16\x62\x4c\x50\xee\x2e\x08\x3f\x2d\xf5\xe6\x81\x67\x91\x38\x49\xa2\xdb\xcb\xed\xe8\x17\x12\x23\x88\x04\xa4\x4d\xb4\x35\x2b\x16\x73\x10\x5a\x10\x27\x3e\xd5\x85\x2a\xb2\xf4\xf2\xf2\x1b\x4c\xae\xaf\x3e\x98\x49\xd1\x77\xb6\x80\x16\xd8\x07\x6c\xac\x3c\xf4\x45\xe6\xe2\xdd\xc0\x8b\x03\xe3\xfd\x47\xd4\xae\x04\x22\xee\x03\xda\x49\xaf\x05\x72\x2d\x16\x21\xbc\x40\x6a\x45\xeb\x64\x63\x87\xd8\x11\x88\x0e\x38\x09\x7e\xd6\x76\xa7\x02\xd5\x3b\x66\x87\xd4\xb1\xa8\xde\x39\xf3\x1a\x03\xd2\x1e\x3a\x46\x33\x98\xed\xc6\xda\xf7\x38\x72\x22\xd5\xc5\x41\x1d\x98\x10\x5d\x1c\xb8\x8b\x78\xd3\x1e\xc0\x8c\x96\x2b\x07\xc5\x82\xb7\x7d\x56\x50\xf6\x07\x10\xd6\x3e\x1e\x08\x7b\x87\x7b\x04\xcd\x5e\xdb\x17\xf6\xce\xe6\x3d\x93\x2a\x5c\xcb\x5e\xd6\x4b\x16\xbc\x0b\xb8\x05\x3a\x77\x4d\x30\xfb\x4d\x58\xf0\x9c\x74\x47\xd1\x5d\x39\x4e\x40\xf3\x9f\x5b\xa4\x34\xf7\x1e\x80\x0e\x77\xfb\x7c\x40\x2d\x9b\x57\xea\x4c\x5e\x70\xa7\x48\xf7\x1a\x7e\x86\x6c\xfb\x3c\x43\x72\x58\x9a\xc2\x6f\xd0\xea\xd5\x80\xdf\x60\xb7\xec\xbb\x92\xa1\x35\x4d\xf0\x1b\xf4\x25\x32\x00\x9b\x1d\x11\x1c\x50\xe0\xa2\x80\xfa\x5f\x4e\xa0\x6b\xc2\x57\xd3\xad\x2d\x7e\xad\x39\xa3\x17\xe2\xf0\x33\xef\xbd\x52\x40\x04\x33\xb6\xdb\xff\x29\x2e\xdc\xe8\x0c\x00\x2f\xce\x80\x26\x99\x71\xd2\x1f\x1c\x71\x43\xbf\xe0\x2d\x7b\x83\xb3\x2c\x46\xee\xdc\xa1\x9a\x02\x78\x0b\x38\x27\x43\x10\x85\x1b\xdf\xdd\x90\x2b\x9e\xe3\x9b\x14\x68\x0c\x70\x1e\xd8\x3c\xa6\x54\x08\x5b\x98\x3e\x1b\xb4\x55\x6a\x80\x71\x2c\xbe\x16\x07\x4a\xdc\x7c\x0e\xcd\x87\xd5\x87\xfd\x7f\xd6\x9d\xd2\x33\x87\x60\xde\x7d\xe8\x73\xe1\x13\xe5\xc9\x89\xd7\xb4\xbd\xb8\x3c\xac\xdb\x8f\x87\xb1\x12\xee\x02\x2e\x12\xce\x90\x10\x0f\xf4\xb5\x96\x4a\x70\x2f\xf0\x3d\x74\x02\x78\x37\xdb\x51\xe7\x0f\x37\x69\x0d\x6a\xa2\xe6\x4d\x51\x8f\x13\x3a\xe8\xd2\xdd\x40\x87\x4e\xef\xdf\x42\x4f\x06\xa1\x28\x67\xf4\x98\x1b\x59\x53\x0d\x12\x25\xfb\xae\x30\xa1\xe5\xb5\xcb\xeb\x44\xd2\x47\x65\xbd\x1d\x73\xe3\xf6\xd2\x65\x7a\x32\xcb\xb9\xaf\xe3\x13\x15\xf8\x86\x33\x53\x4c\xe2\xe0\xe9\x3e\x69\xd7\xd1\xda\x4d\xa8\x7d\xed\x7d\x3c\xe9\x1a\x29\x69\x3e\x19\x98\xec\x0b\xfd\x64\x91\x9b\x66\xaa\x0b\xd8\x6b\xfa\x19\xf1\x3b\x5a\x89\x09\xd7\x82\x6d\xba\x45\x62\xb4\x62\x12\x08\x78\x3c\x73\x85\x17\x4f\x6d\xbb\x59\xb1\x05\x3c\xee\x4a\x49\x25\xe4\x3a\x11\xba\x6c\x68\x3c\x6b\xd6\x48\xd2\xf3\x82\x72\x5e\x5d\x56\x6e\x53\x13\x59\xb3\xce\xab\x9e\x01\xd6\x3f\x0d\x52\x75\xb9\xfc\x43\xd2\xa8\x26\x1b\x30\x8e\x34\x37\x13\x71\x30\xce\x83\x35\x1b\xdd\xc0\x35\x86\x86\xfc\xdf\xe1\x67\x28\xd3\x97\x9f\xa9\x07\xf1\xea\x13\x3a\x4f\x37\x88\x78\xa2\xe1\xff\x79\x69\x5a\xa6\x80\x0a\x5a\x1d\x31\x93\xa9\x1e\x95\xb3\x78\x4c\x78\x2b\x28\x07\xf9\x98\x8d\xdc\xa2\x31\x31\xf5\xa3\x4e\xee\x49\xfd\xac\xbf\xef\x50\xee\x98\xc4\xce\xe4\x35\x9a\x45\xe6\x34\x17\x70\x9c\x3d\xc7\xa4\x41\x76\xee\xf3\xe5\x1e\xa9\xd0\xed\x6e\x82\xdc\xa5\x95\xa4\xab\xa7\xa3\xa6\x66\xcf\xac\xb5\x7a\xbe\xb0\xcf\xfd\x8c\x85\xf2\xb4\x0d\x1c\xd4\x5e\x79\x04\xc9\x7c\xd8\x35\x7d\x0f\xbc\x03\x46\x2e\xbd\x7a\x0c\x9e\xfd\xd2\x41\xcc\x17\x9e\xf6\x22\xcd\xf8\x0c\x5e\xd1\x75\x23\x9f\x41\x85\x91\x9f\x21\xa1\xff\xe6\xa3\x3d\x53\xd7\xea\x85\x86\xff\x81\x4b\xe6\x8f\xc9\xaa\xc5\x2a\x50\x31\x26\x42\x5e\x42\x49\x95\xc7\x7c\xd1\x6d\x2f\x52\x18\xcf\x80\x88\xf7\xc2\xa1\xd6\x8e\x63\xd5\x26\x02\x5e\x62\x5a\x8e\x50\xd5\xea\x39\x60\xc0\x8b\xa3\x9f\xe6\x44\x62\x5f\xef\xb8\x39\x28\x26\xfc\x02\x57\x56\xc7\xca\x9c\x17\x68\x12\x73\xbc\xf0\x36\x9c\x15\x74\x4e\xd2\xa8\xf7\xa9\x7c\xb5\xf3\xeb\x04\x76\xf5\xc5\x69\x2e\x1c\x8c\xe6\xa5\x35\xf8\x81\x48\x60\x58\xb3\x57\x16\xfe\x09\xdb\xe7\x39\xa7\xcd\x3f\x60\x7f\x58\x38\x2e\x92\xa4\x06\x5f\x60\xda\x8b\x8c\x07\x93\x4e\xa5\xbe\x6d\x4e\x20\x53\xbb\xff\x4c\xd6\x50\x76\xbe\x9a\xb9\x27\xab\xb8\x89\xf1\xdf\xff\x3e\xa9\x1d\x27\xc3\x55\x2c\x98\xf6\x89\xfb\xab\xff\x4f\xee\xd0\xa8\x77\xd2\x6c\x12\x78\x6b\x10\x32\x9d\x3b\x0b\x5d\xa8\x45\x82\x5d\x59\x3c\x26\xca\xfb\xd8\x09\x63\x26\xd4\x95\x16\x60\x12\xea\x5a\x5c\xb3\x5a\xa2\x53\x0f\xcf\x17\xeb\xf6\xe2\x79\x07\xd4\xfd\xcc\x02\xa0\x6c\x31\x73\x1d\x3b\x9e\xdd\xc1\xc1\x06\x35\xc8\xcc\xec\xa8\x31\x12\xa9\x3a\x7d\xd2\x84\x1b\xaa\x9d\xf4\xe6\xd9\xf9\x82\x68\x04\x52\x2d\x1e\xc3\x8b\x54\xa7\xd3\xa5\xcd\x13\xbe\xdb\x5e\xe9\x13\x24\xf9\xac\x66\x79\x20\xaf\xfc\x49\x56\xd1\x85\x73\x9e\xe0\xe6\x4f\x87\x50\x32\x9b\x19\x19\x4f\xed\xe0\xbc\x79\x25\xaf\xa8\x85\x17\xca\x56\x87\x86\x4c\x46\xc0\xa8\x66\xca\x98\x17\xc4\x8c\xbb\xbc\x30\xcd\xba\xa4\xcc\x8b\x97\x60\x8b\xdb\x17\xeb\x76\x25\xbd\x1f\x13\x8e\xab\x4e\xbf\x34\x99\x1d\xd2\xf9\x97\x27\xb2\x43\xae\x4f\x8b\x0f\xe6\x5d\x0d\x42\x01\x5c\x2c\xdf\x5f\xac\xda\xed\x04\x38\xe1\xe9\x5a\x7c\xc6\x01\x89\xda\x15\x61\xde\xd4\xdf\x54\x37\xc0\x23\x4a\x68\x78\xde\x74\x9e\x34\xdc\xb8\x39\xd1\xc5\x6f\x5c\x6c\xc3\x8d\x32\x67\x9b\x9f\x1f\x10\xa1\x67\xa0\x53\x87\x26\xcd\x27\x6f\x62\xa2\x32\xd1\xa7\x10\xf6\x24\xfa\xb4\xbb\xd9\x7c\xc0\xb0\xc5\x4d\x40\x71\xf6\xe9\x22\x19\xd6\x1f\x10\xe3\x78\x9b\x3e\xb4\xcf\x0b\x64\x2f\xa4\xf1\xb1\x5f\xc8\xfa\x61\x2a\xb5\x0b\x17\xe3\xaa\x6d\xc3\x5b\x3f\xac\xbe\x68\x5a\xd0\x03\x1b\xd9\xad\x5f\x8e\xa2\xeb\x87\x1c\x85\x7f\xe0\xf2\x6f\x7a\xa6\xe8\x88\x3f\x79\xc5\x2d\x84\x65\x0f\xa7\x20\x5b\x50\x23\x3b\x1e\x75\xfd\x4e\x34\xef\x11\x31\x3a\xde\xcf\x2f\x00\xb7\x1b\xf4\x82\x5a\xb9\xc8\x2c\xba\x36\xaa\x64\xc5\x6d\x6b\xa3\xa5\xd5\x5f\x6c\x05\x53\xa0\x1e\x53\xef\xac\x13\x60\xa5\x9b\x84\xce\xb1\xb5\x51\x7a\x76\x77\x42\x85\xa1\xbf\xc0\x3e\xaf\x6e\x12\xf0\x62\x9a\x06\x38\x1e\x9a\xa6\x82\x65\x92\xb8\x5e\x05\x24\x69\xe1\x17\x3c\x73\x4b\xf5\x33\xf7\xa8\xfa\x47\x18\x91\x83\xe1\x17\xc2\x88\x8a\xa0\xc4\x2a\xa4\x47\x6b\x54\xb1\xe3\x24\xfe\x17\xdd\x6c\x7d\xdf\x5d\x95\xf6\x34\x81\xbc\x05\x2d\x71\xa9\xfe\x82\x27\x8c\x2e\xed\x0b\x5a\x62\x95\x76\x1f\xab\x26\xa0\xf7\x17\xe0\x76\xcf\x2a\x2b\xf8\xd8\x3c\xbc\x2a\x64\xdd\xe7\x19\x27\x8a\xd4\x2b\x0b\x50\x77\x38\x7b\xdd\x4a\x35\xb0\x99\x95\x99\x1e\x9d\x64\x7c\x01\xbc\x0e\xe7\xa3\x5b\x8d\x61\x6c\x7e\xe6\x31\x26\x1c\xb7\x50\x3f\xc7\x59\x7d\x56\xc7\xfe\x68\xfe\x1f\x25\x4f\x3c\xaa\xce\x8b\xbf\xe4\xc0\xea\x1c\xa6\x9f\x19\xe8\xa9\xa5\xeb\x29\x8a\x44\x63\x07\x83\x7b\x66\xe1\x4a\xe0\xd4\x08\x0b\x7a\x5a\x67\xa7\x5c\x83\x35\xb0\xf4\xff\x00\xef\x08\x22\x2d\xe8\x65\x8b\x4e\xee\x35\x92\x9d\xd5\x01\xf2\xe7\x0c\x67\xbb\x5b\x83\xa2\xcb\x83\x66\xc8\xf7\x67\x13\x0e\xa4\xfd\x5b\x6e\x82\x22\xde\x0c\x06\xe5\x6e\xf1\x28\x5f\xb8\xdb\x4b\xf3\xff\x94\xb7\xe6\x40\xe6\xe8\x29\x6e\x11\xa3\xf4\xa6\x44\xea\x72\xc7\xd6\xad\x44\xc7\x1e\x26\x2a\x51\x56\x4f\x0b\xd1\xb2\xf9\x11\x68\xd9\xe6\xab\x05\x70\x5c\xaa\x1b\xe4\x16\x71\x7b\x58\x37\xcb\x15\xba\xe3\x3a\x9b\xfb\x4a\x38\x3c\xdd\x03\x2a\x1d\xe8\x4c\x59\x0c\x00\x1f\x7e\xe6\x90\xd4\xc0\xc4\x42\x75\x3f\x63\x48\x12\xff\x0b\xd8\xb6\x19\x79\x2e\xd6\xee\x16\xba\x58\x2c\x70\xe3\x5b\xf6\x7a\xb1\xed\x56\xbc\x6b\x17\x7a\x18\x7e\x26\xde\xb6\xdc\x58\x2c\x08\xa7\x16\x11\x10\x55\x74\x4e\xae\xc4\xb6\xee\x12\xf9\x1e\x55\xcb\x72\x2c\x44\x48\x7d\xb6\xc7\x02\xf3\x9a\x19\x09\x5d\xa5\x45\x5a\x09\x5d\x2d\xf9\x80\x4c\x87\x33\x27\xae\x9d\xf0\xc2\xd3\xb2\x63\xa1\x86\xbf\xa0\x20\x19\xee\x83\x3b\x68\xf8\x0b\x4e\xbc\xb9\x6f\xe7\x96\xf9\x93\x33\xc2\xa2\x96\xd6\x09\x5e\x16\x0b\x79\xfb\xca\xb0\x0e\x4c\xab\xee\xb3\xeb\x80\x74\xf6\xc2\x43\x29\x5b\xc2\x0d\x50\x26\x7c\x5e\xc8\xd4\xd2\x1a\xf4\x91\xcc\xa5\x41\x22\x82\xaa\x08\xe1\xaf\x23\xf7\x8b\xbf\xc0\x90\x3c\xf1\x07\x8e\x39\xcb\xe7\x33\x89\xd6\xda\x9f\xe4\x36\x35\x00\x47\xda\x8f\x58\x48\xad\xeb\xf4\x07\xf1\xdf\xff\xc2\x1e\x6d\x8b\xd1\xd9\x56\x66\x2c\x82\x57\xcf\xd3\xc9\x40\x09\x37\x80\xbc\xfa\x66\x5f\x06\x55\x7d\xbe\xe7\x10\xb4\x8e\xf0\x45\x18\x4e\x20\xb9\x2e\x30\x8f\x4f\x55\x96\x16\x77\xad\x80\x75\x61\x0c\x16\x9d\xd0\xa3\xda\x90\xb7\x2e\xc0\x6d\x2f\x1c\x94\xa2\xce\xe1\xb0\xa0\x14\x2d\x46\x4b\x77\x01\x77\x8b\xa2\x9b\xe8\xc8\x43\xb8\x53\x32\xfa\x07\x30\xa7\x05\xe3\x0d\x29\xe2\x49\xbb\x79\xe0\x6c\x7e\x81\x9e\x62\x3e\x92\x6e\xac\xb4\x59\xe1\x06\x8d\xde\xd3\x4f\x16\x78\x52\x93\x88\xa1\x72\x79\x83\xf5\x24\x91\x5a\xfa\x87\x17\x25\x8b\xc6\x87\x7b\xcc\xf0\xe1\x49\xc9\xe2\x1f\x20\xec\x7c\x70\x3e\x28\x8f\xe6\x3d\x48\x77\x83\xe5\x3e\xa1\xac\x70\x96\xfc\xf5\x80\xfd\x84\x88\x76\xfa\x1b\x58\xad\xb4\x53\xef\xe9\x88\x93\xfd\x87\x61\xe8\xb2\xb5\x33\x9f\xa4\xf5\x4a\x3b\xa2\xaa\x54\xfe\x72\xec\x70\x9d\x75\xc8\xfa\x0e\x60\xe8\x79\xd9\x09\x0c\x97\x9f\x1f\xf6\x28\x9a\x36\xb2\x8f\x4e\xd2\x9d\x40\x4f\x0c\xb9\x23\x64\xbc\x98\x82\x0d\xfb\x58\xb2\x6a\x67\x4a\x48\x47\xa0\xee\xc8\x23\x6e\xf7\xc7\x7d\x83\x4b\xdd\x72\x8f\xdc\xd6\x9a\xc7\x7d\xc3\x62\x87\x5b\xbc\xf8\x82\xbb\x04\x47\xea\x4c\xd9\xe1\x4e\x6b\x8f\xe5\x3d\x1d\x0a\xdc\x65\x41\xe4\xa4\xe0\xf2\x0e\xa4\x68\x17\xfc\x9d\x48\xd1\xeb\xc0\xea\x91\xd6\x8d\xed\xac\x06\xe9\x78\xa6\x1d\x41\x5c\x0e\xb5\xdc\x0b\xbd\xac\xfd\x01\x71\x9a\x26\xa1\x70\x1b\xeb\x7d\x64\x19\x57\x2d\xe1\xb1\x57\xea\x70\xb4\xcf\x77\x64\x15\xb7\xd7\xf1\x4e\xa4\xa8\x4b\xf1\x9e\x8e\xae\xba\xd4\xee\x70\x28\xb0\x8f\xf1\x0e\x35\xab\xa3\x35\x77\x38\x18\xd8\x93\x64\x07\x92\x1c\xce\x74\xbb\x43\xcd\xea\x6c\xab\x3b\xd4\xac\xcd\xbe\x29\x3b\x02\xd2\xc3\x65\x22\x76\x38\xb2\x16\x4f\x73\xe3\xd2\x4b\xd8\xed\x2f\xb4\x9c\xdd\x34\x35\x08\x02\x09\xbf\xbd\x91\x66\xbf\x4f\x84\xd4\xff\x52\xc9\x7b\xec\x8d\x51\xfd\x92\xce\x3b\x52\x13\x59\xa9\xbf\xd3\xc7\xd5\xde\x37\x3b\x53\x3b\x3a\x79\xf4\x0e\xa5\x68\x77\x8c\xfd\x9e\x1e\x03\x3a\x48\x77\xe6\x72\x74\xb0\xcf\x8e\x52\x90\xbe\x36\xef\x80\xae\x2a\xe6\x3d\xf6\x54\x8a\x7e\x5a\xa0\xbb\x8b\xe6\x19\xd5\xca\xad\xfe\xd8\x07\x99\x51\x44\x32\x53\xa3\xb3\x6b\xec\x2f\xb0\xec\xd5\xbc\xc2\x8a\x38\x76\xab\xde\x07\x6f\xee\xde\x52\x2f\x90\x9c\xdd\xf3\x1a\x29\x1e\x35\xf1\xc1\x4d\xad\x41\xc1\x09\xb5\x7b\x43\x10\xe7\xb9\xc1\xc4\x75\xde\xd4\x2f\x4c\x9b\x2a\x65\x3c\x76\x96\xb4\x11\x84\xd9\x27\x8a\xa8\x59\x8a\x4c\x42\x1a\x2f\xfd\x24\xc0\xf6\x20\xe0\x30\x5a\x7f\x7e\x81\x56\x26\xd3\x3c\x79\xb1\xd7\xb1\xb2\x43\x69\x59\x85\x76\xf7\x49\xab\xab\x3e\x58\x3f\xfc\x2f\x1a\x17\xa5\xab\x89\x5c\xc4\xf4\x52\x14\xed\xeb\xe5\x4f\x57\x5e\xd9\x19\xda\x6e\x35\xe7\x0e\xe4\xe6\x40\x82\x7d\x67\x17\x1a\xc4\x4e\xe9\x69\x6e\x49\xe4\xb6\xf9\x8d\x57\x40\x3b\xac\x7c\xdf\x73\x54\x7e\xe1\x04\x0d\xee\x82\xea\x62\x11\x9d\xc8\xcb\xa3\x80\x0a\xb0\xba\x87\xa3\x91\x68\x2d\x26\xac\xd7\xd5\xa3\x04\x6c\x72\x44\xc8\xce\xa4\x36\x4e\x9a\xbd\x13\x05\xe9\x20\xdb\x11\x68\x5e\xa5\x4d\xd8\x4f\xf6\xa8\x0e\x58\xf0\xdb\x69\xb9\x77\xba\x54\x5a\x79\xbb\x5f\x04\x5a\x16\xd1\x2f\x4a\xe9\xaa\x7d\x3b\x76\x54\x57\x31\x0c\xda\x19\xfd\xe3\x04\xb8\xfb\xc5\x79\xf3\x0b\x69\x1a\xd0\x33\xb5\x3c\xe1\x17\x38\x2a\x4b\x50\xe0\x98\x2a\x85\xda\x7e\x3d\x78\x16\x49\x89\x6b\x34\x4d\x77\xc3\xb3\xc6\x70\x13\xa0\x0a\xb6\xec\x2f\x8c\xa9\xce\x79\xb8\xdf\x24\xd1\xff\x27\x49\x9a\x37\xd4\x42\xd9\xac\x9c\xdd\xe1\xf0\xf8\xdb\x7c\xf4\x3d\x6c\x42\xa3\x42\xb0\x8e\xd3\xdd\xee\xac\x55\x62\x6d\xec\xfe\xe4\x28\xff\x7d\x71\xb0\x16\x89\xd5\x5f\xc7\x8f\x4a\x89\xf0\x0f\xed\xbf\xff\x55\x27\x94\x3e\x00\x21\xec\xeb\x76\x50\x15\x65\x85\xee\x41\x4c\xf1\xe9\x82\x2c\x2b\x70\x75\x00\x22\x54\xdd\x6b\x0f\xb8\x14\xda\xc4\x72\xd0\x76\xea\xa8\x8d\x63\xe3\xd9\x53\xfc\xc5\x3b\x0c\xdf\x2b\x8f\x8d\x67\x8f\x30\xc0\xb1\x61\xb1\x4c\x34\x22\x66\x0c\x09\x8e\xc2\xd4\x88\x7e\x06\xde\xd3\xe9\x77\x14\x9e\xaf\x3a\xb0\x0f\xd4\x7b\x36\x4f\x1f\x0c\x7f\xb1\x96\xfa\x60\x4e\xe7\xb9\xfd\xe9\x2c\x3a\x0a\x4d\xdc\xc5\x1d\xf2\xb0\xd4\x79\x7b\xd4\x82\x3c\xb0\xa2\x30\x75\x41\x9e\xd6\x3a\xd8\xa1\x7f\x80\x34\xd2\x41\x71\xf0\x84\x97\xbe\xeb\x80\x6e\xc8\x49\xc5\x0e\x46\xb6\x14\xf7\xc0\x2b\x5f\xf8\x03\x30\x8b\xee\xd6\x07\x4e\xf8\xee\x75\xcb\x8c\x33\xe2\xf0\xa3\x61\xa3\xeb\x2a\x71\x30\x7d\xb3\x63\x65\x8e\x46\x12\x45\x32\xe2\x52\x0c\x3a\x0e\x96\x6e\x9e\xd3\x2f\xd0\xbd\x48\xb3\xc2\x74\xcd\xae\x32\x70\x40\xb7\xf4\xe1\xce\x0e\x09\x6b\x9a\x19\x85\xe2\x14\x5e\x07\xed\x9c\x66\x36\xe8\x9e\xaa\x24\xc9\x91\x07\xb8\xb9\xb5\x33\x93\x9a\x10\xed\xc1\x13\xbc\xb9\x4b\x6c\x3a\x29\x45\x8e\x9e\x34\x9a\x06\x30\xa3\x74\x6e\xc7\xa0\x3d\x41\x17\x9c\x03\xda\xa5\xaa\xcb\xc6\x31\x10\x11\x64\x9a\x11\x84\x6d\xb5\xcc\xf1\x1e\xf9\xc5\x61\xe2\x07\x2b\x39\x3b\x05\xef\x81\x28\x6d\xd7\x66\x38\x00\x01\x86\xfd\x06\x0f\xc4\xa9\xd8\x74\x75\xa0\x08\x9e\x23\xe0\x8e\x41\x6e\x36\x73\xa4\x6e\x69\x99\xa6\x9b\x6f\xf8\x13\x04\xcf\x7a\x5a\x82\xd2\x4b\xf2\xed\x80\x76\xa9\x5a\xb7\x73\x04\x6e\x27\x12\x4e\x07\xea\x89\x38\x4b\xcb\x41\xed\x92\xa3\x03\x8e\x08\x3a\xef\x8b\x1d\x12\x67\x2c\x77\x7a\x60\xe6\xf4\x05\xc3\x4e\xac\x8b\x3c\xa8\x0f\x72\x4c\xfe\x01\xeb\x68\xb5\x24\x20\xae\xe8\x6e\xa1\x73\x18\xa2\x6a\x0e\xb8\xf2\x8a\x06\x44\x77\x3b\x04\xe8\x80\x42\xa9\x16\x3f\x33\x0e\xc3\x14\x00\x86\x78\x6d\xa0\x1e\xb2\x07\xdd\x01\xaf\x3d\x87\xb0\x1f\x2b\x48\x80\x7f\xc0\xbe\x96\x7e\xe9\x58\x94\xaf\xcb\x3f\xe0\xe4\x12\xee\x3e\x76\x0e\x49\x14\x31\xd9\x8d\xb5\x6e\xc7\xce\x0b\xb5\x57\x9b\x91\xd3\xd6\x69\x1d\x3b\x9d\x53\xbc\xda\x3b\xb1\xb2\x20\xe1\xb1\x83\xc9\x05\x95\x8f\x83\x4e\x97\x96\xa0\x50\xf0\xb8\x4a\xd6\x01\x05\x8f\xeb\xb5\x1d\xc4\x25\x82\x6b\x07\x4c\x93\x86\x21\xc7\xc1\x42\x8f\x7e\x1f\xb2\xc4\x9b\x20\x13\x3f\xfb\x7b\x26\x2d\xd1\xb6\x45\x68\x89\xdd\xd3\x8e\x84\x31\x66\xa6\x83\x87\xc8\x74\x0b\x30\xa1\x79\x9a\xce\xdf\x7f\xff\x6b\x5d\x90\xf3\x80\xa5\xd2\xa9\x0f\x0e\x18\x2a\x6d\x98\x3c\x4e\x08\x06\x41\xb5\x03\x86\xc7\x66\xdf\xa9\x03\x99\x9d\x6d\x03\x39\x4e\xf8\x39\x79\x57\x42\x79\x53\x9d\x43\xf8\x80\x9d\xd1\x26\x86\xe3\xe2\x9c\x89\xa2\x17\x06\xd5\x77\xcc\x7f\x39\x83\x2e\xde\xb6\xfc\x71\x0a\x09\xcd\x28\x34\x3f\xb6\xfd\x1e\xc8\xda\x1c\xb6\x80\x1f\x17\x6a\x06\x08\x02\x1d\x84\x48\xc2\x75\x07\xb3\x32\x3b\xb9\xc2\x71\x33\x9b\x84\x6e\x43\x07\x14\x35\xae\xd6\x73\xc0\xbf\xcd\xe5\x7d\x0e\xd6\x87\x73\x79\x9e\xe3\x66\x17\x9a\xa2\x27\xbb\xd0\xb2\x3e\x98\x12\xc3\x97\x87\xb7\x1f\x9f\x9b\x0f\xf3\x7e\xf8\x50\x7a\xa8\x22\xd3\x0e\x3f\x11\xc1\x1c\xb6\x81\x9c\xac\xc2\xa1\xca\xf8\xe3\xfc\x11\xa6\x6b\x4f\x9e\xb0\xcf\xb9\x1e\xca\xf9\xcb\x4e\x8a\x7e\xc8\xb9\xf3\x17\xcc\xfb\x23\x41\x74\xfe\x72\xa8\x53\x3f\x40\xa0\x6a\x53\x9e\x5b\x1e\x1b\x6a\x02\x99\x91\x6d\xfb\x3c\x37\x9e\x75\x3a\x5e\xcf\x8d\x11\xef\x6a\x91\x3e\x67\xd6\xf5\x9d\x1b\xa7\xdf\x1f\xd0\xe1\x46\x07\xf2\x09\x4d\x87\xeb\x4c\x9c\xc8\x56\xe3\xea\x23\x67\x61\x1a\x2c\xed\x99\xb3\xf0\x58\xd0\x69\x78\x66\x28\x84\x78\xf8\x84\xbf\x97\x83\x7e\xcf\x04\x36\x3a\xf3\x4f\xe4\x39\x0e\xab\x2c\xcf\x4a\x37\x1f\x3f\xa3\xb4\xb0\xae\xe9\x27\xb2\xcb\xfc\xea\xe7\x03\x9e\x5e\x3a\x71\x4f\xa4\x97\x69\x92\x25\xe7\x8b\x5c\x66\xd7\xcd\xff\x6c\x4c\x71\xa9\x06\x1a\xe2\x39\x3c\x2f\xb4\x8a\x75\x3f\x53\x95\x20\xc6\x3e\x5b\xf6\xa8\x1e\x18\xbc\xe0\x42\x3f\x67\x23\x09\x9a\x86\x96\x53\xad\x1f\x10\xbd\x60\xdd\xf1\x99\xc9\xf6\xa6\x7f\x48\x2e\x54\x1f\xc8\x1e\xe3\x0a\x1d\x27\xcc\x64\x2a\x3c\x3e\xce\xce\x2b\xb1\xce\xec\x93\x11\xb5\xe6\x6b\xe8\x1e\xc2\x8a\xd4\xb3\x9f\x98\x17\x7f\x80\xda\xe9\xda\x6d\x27\xcc\x64\x2e\x1a\x72\xc2\x41\xcb\xe9\x4c\x4f\x44\xdc\x3a\xd3\xfc\x49\x5d\x85\xb9\x63\xd0\x2b\xb2\xfa\x03\xec\x1b\x9d\xf0\x27\x4c\x5c\xae\x86\x70\x26\x0e\x11\xf4\x39\x47\xce\xab\x06\x3d\xb8\x94\x7a\x06\xec\xf8\x7c\x00\xd4\x61\x4d\xdc\x89\xf8\x04\xa7\xa3\x3e\x83\x97\x7a\x9d\xd7\x67\xc6\x23\x98\x26\x66\x2d\xb6\x5e\xf6\x8c\xdc\xdc\xfe\x04\xb9\x1a\x75\xa4\x9f\x19\xb1\xf0\xe9\xe4\xc2\x46\x34\x51\x98\x47\x2f\x0c\xac\x56\xce\x60\x7e\x4e\xce\x9b\x16\xea\x05\x29\xd5\x55\xa7\x4e\xe6\xa4\xf9\xfe\xc0\x4d\xb4\xfc\x03\x84\xbb\x57\x76\x12\x45\x74\x77\x09\xf7\xe8\xea\x2e\x16\x9b\xd4\xd4\x23\x29\x8d\x4d\x9e\x27\x71\x8b\xb9\x8f\xea\x12\xa1\x8e\x73\x81\x66\x53\xb0\xa8\x42\xff\x93\x7d\xe8\x5c\x39\x20\xb7\x9e\x03\x72\xf3\x2c\xf6\xe5\x67\xb2\x92\x37\x14\x83\x19\x5c\x5d\xe9\x44\x30\x83\x23\x53\xce\x45\xde\xf2\x07\x10\x7e\xc2\xf5\xe7\xe2\xfd\x5b\x90\xe6\x64\xc0\xae\x35\xcd\xe7\x0e\x81\x6b\x22\x99\xe1\xd8\xec\x8f\xca\xbb\xcd\x0e\x8d\xe7\xce\xb8\x32\x91\x94\x59\x03\xbd\xd0\x7b\xb2\xb3\x7f\x78\x39\xc3\xf5\xbc\xce\x83\x28\xda\x4d\x02\x46\xb9\xe4\xd2\x79\x50\xe8\x9b\xf9\x10\xa5\xeb\x0a\xde\x67\xa6\xa4\xf1\x38\x8f\x89\xf2\x33\x1a\xe6\xc1\xe2\xa1\xfe\x60\x47\x0f\xfe\x1f\x98\x5a\x78\xf3\x3c\x90\x5e\xc3\x42\xe1\x00\x63\x98\xb9\x0f\x0e\xc1\xef\xbf\xe7\xab\x2d\x02\xe7\x09\x4c\x6e\x21\x73\xf2\xb8\x2d\x7e\x01\x87\x8c\xd7\x01\x79\x09\x5d\xe8\xf9\x84\xfe\x68\x38\xb3\xf4\x89\x50\x05\x67\x12\x38\x11\xa9\x60\x20\x76\xc2\x68\xe6\xf0\x8a\xf3\xe4\x0d\xcd\x43\x3a\x73\xa5\xd5\x65\xba\x7c\x09\xdb\x9d\x74\xf9\xb2\x32\xfb\xbc\x28\x9e\xcd\x5e\xc4\x62\x3e\x6c\x2f\xaa\x10\x3e\x3f\x20\xe9\xbc\x00\xf0\x99\x3e\x5f\x9e\x38\xf8\x7c\xb9\xf2\xca\x89\x7c\x34\xf6\xee\x3b\x5f\xfc\x35\xbb\x37\x3d\xf2\xd3\xd8\x7c\x7f\x42\xa7\x15\xbe\xe5\x9d\x30\xcd\x39\xc7\xf1\x79\xb3\x34\xb9\x7b\xb8\x51\x8a\x45\x98\xf9\x44\xfa\x43\xeb\x8f\x4e\xd8\xea\x6c\x65\x38\x6f\xe6\xe2\xd2\x10\xee\x94\x2a\x1a\x23\x12\xd8\x38\x57\xff\x79\x53\xaa\x18\xc4\x40\xe9\xe5\xb4\xb7\xe7\xcd\x0d\x50\x4c\xc2\x4d\x1a\xfd\xc5\x83\x41\xa8\x0b\x56\x08\x36\xea\x41\x8a\x1b\x07\x74\x9f\x4f\x6e\x08\x4d\x1b\xc3\x8c\x3d\x88\x87\x0a\x4f\x1f\x09\x0f\xd5\x4b\x3a\x95\xae\xdf\x8f\x44\x0d\xfd\xb0\x51\xef\x5f\xf5\x03\x94\x7d\x12\x96\x17\x03\x79\x6d\x29\xb8\x58\x09\xc3\x09\x57\x2e\x58\xd6\x7c\x5f\xba\x60\x59\x73\xfa\x81\xeb\x97\xe3\x76\x93\xe4\x49\x5d\x90\x2e\xfa\x54\x39\xc3\xca\x05\x3d\x9a\x33\x86\x5e\xcc\x88\xe8\x68\xe1\x0b\xa6\x34\xa7\x82\xb8\x36\x30\x94\xe4\xd7\x85\x6a\x6b\x9b\x55\xe4\x17\x62\x75\x3f\xe3\xde\x98\x8a\xd5\xff\x63\x2d\xb4\x75\xaf\x42\xb1\x2d\x1c\x7c\x15\x44\x0b\x37\xbf\xc0\xb3\x53\xb7\xb4\x0b\x86\xb0\xe2\x41\x15\x60\xb7\x9f\x3f\x00\x4f\xbb\xc7\x92\xd3\xe2\x1e\x1e\x42\x08\x7d\x81\x5a\x68\xc3\x49\x95\xae\x5a\x50\x16\x45\xb3\xf0\x22\xd0\xde\xfe\x56\x65\xf5\xaa\x1c\x91\x0e\xfb\xab\x42\xf8\xe8\x98\xb9\x60\x58\xfb\x70\x02\xb4\x6c\x0e\x36\xbc\x2a\xef\xd2\xd5\x2f\x00\x0c\x84\x1b\xe0\x2e\xfd\xd0\x8b\x5d\x6a\x5e\x02\x58\xb5\x82\xf5\xaa\xbc\x9f\xe8\x5a\x78\x35\x78\x7c\x6b\xd3\x5d\x28\x9b\xe6\xc4\x84\x17\x5c\xb6\x9c\xf6\xe4\xa2\xfb\x94\x93\xdc\x5c\xb4\x49\xb9\xac\xde\x05\x95\x96\xbd\x64\xae\x8e\x5d\x5a\xfc\x3f\x81\xa2\x07\xd5\x99\xb1\x6e\xe9\x39\x97\xc9\x3f\x24\xf7\x6a\x5e\x58\x3d\xf7\x33\x8a\x41\x23\x93\x70\xd6\x05\xef\x7e\x27\x41\xb8\x90\x7b\xc5\x99\x34\x2f\x16\xcd\xb0\xbd\xee\x42\xf2\x15\x3b\xbb\x5d\x23\x37\xa1\x86\x31\x80\x00\x7e\x6e\x11\x5a\xae\x6e\x9a\x70\xe2\x7b\x1a\x98\x8b\xa5\xb9\x03\x62\x4b\xb5\x17\x39\x06\x7d\x10\xd0\x8d\x7b\xe9\xa0\xa0\xb2\x74\xbb\x00\x1d\x5d\x6d\xee\x0a\xce\xb3\x08\x08\xe2\x01\x01\xc5\x8b\xea\x29\x1f\x8e\x17\x02\x51\x9d\xdc\xed\x7a\x71\xdc\xec\x66\x37\xb8\xe6\x5b\x05\x7b\x01\xc6\x55\xab\x97\x2e\x26\x1b\x74\x89\xbc\x0b\xb8\xee\xb3\x30\x93\x12\x58\xb7\xc6\x0b\x99\x53\x9c\x4c\xf0\x5a\x19\x39\xa2\x51\x31\x03\xb4\x6d\x50\xd7\xe2\xca\x69\x14\x69\x28\x13\xb8\xbc\xa0\xe3\x72\x3a\xc2\x6b\x11\x9d\xba\x81\x5c\x39\xbf\x30\xd9\xa7\xc6\x8d\x1a\xb8\xae\x31\x70\xbd\xe0\xad\x3a\x34\xe4\x42\xd5\x32\x3b\x6b\x5e\x3b\x5d\x5e\xa5\x46\xbb\x68\x38\x73\x85\xbb\x6b\xe7\x5d\x47\x5d\x52\xa3\xe5\xa2\x7a\x17\x2c\x67\x9f\x79\x80\x33\xbd\xdd\xb0\x2e\xfa\xce\xdb\xbf\xff\x3a\xb8\x56\x5a\x8b\x83\xa3\x92\x3e\xe4\x82\x65\xad\x79\x29\x0e\x5e\x24\x84\x99\x2f\x38\xcb\xbb\x42\xd3\xc5\x9c\xce\xf3\xd3\x27\xed\xa6\x82\x3a\xd7\x89\x22\x1c\x9e\xc9\x04\x53\x42\x73\x17\xcb\x97\x7d\xa4\x01\xd1\x94\x2e\xe8\x17\xb4\x56\x0e\xa6\xbb\x90\xf5\xd9\xb9\x7d\x2e\x06\x86\xda\x36\x7b\x9d\x3c\xda\x2c\xa3\x4f\x9c\x1a\x3e\xda\x90\xdc\xcf\xd9\x17\xae\x93\x33\xdb\xfd\x03\xf6\x95\x0f\x2e\xa0\xad\xaf\xd4\x07\xda\x32\x54\xbf\x90\xec\xcf\x71\xf9\xd7\xc5\x31\x88\xe6\x2b\xa3\x14\x34\x28\xa8\xae\x6c\x78\xbd\x08\xa5\xbc\xb6\x17\x3d\x86\x96\x3f\x48\x0c\xe0\x2e\xa9\xf1\xf4\xbc\xc0\x1e\xe8\xa4\x2e\xd7\xc5\x83\xc8\xe7\xcc\x4d\xa8\x2e\x65\xd6\x85\x70\xd0\x8f\xc4\xbb\xb9\x6f\xe2\x4f\xf1\xab\x17\x62\x45\x1d\xd6\x76\xdd\x54\x44\x87\x9b\xe3\xc2\x69\x4c\x70\x93\x72\x4a\x89\x0b\xd8\xab\x39\xd1\xd3\x45\xec\xe5\xa3\x0d\x0e\xfb\xe5\xf3\x3f\xd7\xcd\xff\x63\xc4\x5e\x78\x16\xe0\x75\x35\x9e\x2b\x53\x53\x7b\x16\x11\x5d\xea\xda\x98\xd7\x03\x1b\xa9\x45\x3a\x4a\x66\x18\xd1\x5e\x09\xc5\x74\x17\xb9\x1e\x96\xc6\xd4\x18\x1e\xea\x82\x2c\xce\x58\x25\xcd\xa7\xe9\x03\xdf\x49\xc3\x28\x38\x5d\x39\x13\xe5\x05\x0b\xa9\xc3\xec\x2f\x38\x61\x39\x1f\xd0\xf5\x40\x0a\x48\x74\xdd\xbf\x5c\xc4\xd0\x0f\x49\xe2\xd4\x0f\x48\x4b\xaa\x59\xbc\x7f\x3c\x5d\x97\x9e\x01\x79\x36\xb7\x08\xfb\x80\x86\x78\xc3\x3c\xea\x44\x96\x37\x4a\xa4\x59\xa5\x76\xc3\x33\xde\xf6\x86\x7b\xa3\x54\x51\x7b\x1b\xcf\x18\x13\x40\x54\xa7\xcb\xcc\x0d\x54\x67\x69\x7c\x33\xa9\xb5\x4e\xc1\x1b\x39\xac\xed\x10\x70\x6f\xb9\x3d\xdd\x23\x50\x9e\x50\xe1\x5d\x58\x6c\x4f\x33\x00\xf7\x28\xe7\x22\xb9\x4b\x1e\x5a\x9a\x33\x68\x0d\xed\x7d\x7d\x43\x6b\x68\x07\x94\x1b\xf9\x59\xb6\xea\xff\x71\x90\x4b\xe4\xdc\x05\x87\x9c\xa7\xa0\xf0\x50\x73\xfb\x00\x89\x3a\x56\xef\x72\x22\xab\x86\xdb\xc7\x08\x25\x6f\xee\x42\x46\xf6\x80\xa8\xb6\xd2\x0c\x31\xdf\xb5\x11\xd5\x0d\x14\x58\x6d\xa2\xbe\x53\x27\xe9\x49\x26\xec\x93\x60\xbe\x5f\xd8\x37\x8d\xc1\xee\x8a\x55\xd6\x29\x7b\xa7\x4a\xd2\x6c\x52\xc9\x78\x1a\x53\x25\x8d\x22\x01\x2a\xc7\x0f\x2c\xbc\x61\x5c\xb5\x6b\xde\xdd\x78\xc8\x6a\xbb\xde\xcc\x80\xed\xb8\xa5\xbb\x31\xcb\x8d\xba\x40\xc8\xa8\x7d\x70\x6f\x84\x8c\xb6\xcf\xff\x94\x68\x7e\x81\xb5\x6e\x6d\xeb\xba\xd3\x9a\x6a\x66\x85\xb5\xd4\xb7\xb7\x9b\x41\xa1\x4e\xc9\x7f\x77\xe2\x13\xf5\x81\xd2\x68\x46\x50\x37\x35\x8e\xc5\xcf\x3c\xf1\x74\xb0\xdf\x40\x96\xc3\x48\xe0\x86\x35\xd5\x41\x13\xf7\x48\x9a\xb4\xda\xf0\xc5\x0f\x17\xdc\xbc\x11\x26\xea\x3b\xc8\x3d\x78\x29\x91\xe2\xf4\x1e\xe4\x27\x8d\x6a\x70\x2d\xfc\x3f\x0c\x41\x1e\x35\xdc\xa1\x1c\x99\x72\x07\x7d\x26\x74\x07\xbd\x51\xfb\xc3\xce\xd3\x77\xd0\xb4\x2e\x5d\xc0\x1d\xd4\xfe\xeb\xee\x7f\xa3\x30\xad\x73\xcf\xde\xc8\xa8\x67\x1f\xd8\x7b\xbe\xe7\xbc\x43\x96\x6f\x68\x08\xed\xc3\x78\x03\xf7\x2d\x3b\x91\xdf\x80\x79\x56\xc7\xdd\x33\x27\xf6\x4f\x49\x4c\x6f\x04\x70\x5a\xad\x7f\xb3\x2c\x88\x77\xcc\xca\x39\x16\xfd\xb0\x5a\x1a\xf9\xde\x8b\xfb\xc3\x0d\xd0\xf4\x20\xcd\xee\x0d\xc0\xe6\xba\xb6\x37\x12\x87\xb8\x82\xd3\xbd\x48\x81\x26\x84\xf9\xa4\xed\x14\x72\xef\x80\x63\x16\x6b\xa8\xf1\x61\x95\xfc\xbd\x93\x15\x2d\xe7\xe0\x4a\x65\xc7\x96\x1b\x88\xb0\xda\x47\xe8\x86\x09\xf3\x23\xc9\x0f\xde\x2c\x05\x64\x6e\x98\x2c\x6d\x06\xba\x99\xfe\xd9\xee\x0a\x77\x42\x42\x8b\x85\x03\x95\xaf\xcc\x18\x30\x5a\x7e\x0e\x83\x63\x47\xa1\x12\xf7\x40\x31\x21\x65\xd9\x0d\x1f\xf5\x65\xf7\xe9\xfb\xa0\xf4\x16\x27\x1d\xc4\x52\x7a\x3e\x39\x4f\xd2\x4b\xdd\x67\x8e\x42\xe3\x3e\x39\x0a\xd1\xc0\x88\x4c\x17\xac\xbd\xa1\x7f\xb3\x81\xec\x46\xfa\x67\x7b\xb7\xde\x27\x4f\x3c\x41\xe7\x9b\x5e\xec\x36\xd4\xdf\xc8\x99\xe7\x5b\xc9\x9d\x90\xb1\xb8\x49\xea\x14\x35\xf5\x84\x8c\xde\x0e\xa9\xa1\x5b\x26\x9a\x17\xcc\xe2\x61\x11\x8c\x98\xc1\x59\x96\xcc\x54\x43\x1f\xf7\x91\x3c\x88\x98\xfc\xdc\xd4\xef\x0b\xe5\xb0\x4c\xf4\x85\x42\xc7\x66\xd9\x17\x5f\x6d\x1f\x3d\xe4\x7d\xf3\x0a\xf1\x79\x83\x54\x8b\x26\xaa\xaa\xbc\xda\xf0\x2a\x37\x3c\xba\x1f\x94\xa5\xf9\xf9\xff\x97\x1b\xec\xd5\x7b\x3f\xd8\x34\xa6\x88\xc9\x99\x5d\x2d\xf5\x7e\x92\x02\x91\x04\x7f\xae\xe6\x4c\x65\xf7\x03\xd1\xe5\x79\x7b\x78\x96\xff\x9b\xd8\xe7\xc7\xd4\x47\x55\xcf\x05\xc5\xde\x7e\x7a\x26\xdc\xd1\x18\x1e\xc4\x26\x96\xcf\x07\xb9\xd6\x53\x3f\xe0\x92\xdd\xfd\x01\x2f\x9c\xe1\x1f\xa8\xf0\x08\x7f\x91\x8b\x6b\xa2\x1e\xdc\xcb\xf5\x05\x2c\x9d\xc3\x55\xd8\x9f\x0d\x4a\x6f\xed\xb3\x07\x4e\xe5\xde\x14\x0f\x4a\x7f\xd8\x03\xf1\xd9\xa0\x01\xd1\x44\x3e\x0c\x2e\xb4\xa6\xfe\x61\x3a\x0e\xdf\xb4\x9e\x2d\x39\x54\xe3\xdc\xe8\xb6\xe1\x3e\x5e\x14\x54\xab\xd6\xe2\x01\xea\xe9\xc2\x65\x4f\x81\x4b\xa2\x70\xdd\xc3\x32\x64\x2e\x96\xfb\x00\xe5\x2c\xbb\x37\x3f\x25\x65\xb6\x9b\x4c\x22\xfc\x06\xec\x07\x9e\x18\xe4\xa5\x73\x34\xd4\xc3\xbc\x74\x96\xcb\x4f\xe1\xfd\x50\xe7\xe9\x83\x14\xc9\xcb\x9e\xb7\x4f\xc5\x54\x2e\x3f\x93\x47\xb5\x38\xb4\xd7\x3a\x9b\xe5\xc3\x3a\xb4\x2e\x10\xfe\x24\x16\x92\x18\x7c\x5e\x2c\x54\x9c\x66\xea\xa9\x39\x75\x9a\xfe\x54\x79\x4d\xff\x70\x63\xfd\xfe\xe4\xa7\xf0\x54\xee\x2a\x0d\xba\x91\x19\x44\x31\x70\x8f\x4b\x39\x3f\xb4\xac\x3a\x1e\xf1\x61\x19\x33\x6d\x9a\x87\x6e\xdd\xae\x83\xfb\xb0\x8c\x99\xbd\x0c\x1e\x98\x5a\x6d\x1f\x78\x12\xd6\x4c\xff\xf0\xee\x54\xab\xe2\x9f\x4e\xad\x5f\xf3\x0b\xb9\x94\x5a\x3a\x78\x89\xd9\xdb\xe2\x61\x49\xd8\xcd\x44\xe5\x52\xfa\x87\x94\x78\x1a\x67\xe7\xda\x6a\x1d\x52\xa3\x26\x41\xfe\x8c\x94\xf4\xfe\x81\xc0\x5c\x7a\x97\x07\x8e\x63\xd6\xdf\x3e\x70\x15\xb7\x1e\xe6\x19\xdc\x16\x3a\x75\x1f\xe6\x8f\xb3\xdb\xc2\x33\x2e\x7c\xe1\x16\x10\x19\xec\x61\xa0\x4e\x9a\xbd\x60\x9f\x80\x65\x5d\x50\xfd\x41\x04\x61\xd7\x61\xf4\xc0\x73\xfc\xb3\x05\x62\xc7\xb3\x26\x16\xb9\xde\x6c\xde\x7d\x18\xff\xe7\x24\xa2\x4f\x24\x3e\x14\x85\x2f\x52\xea\xf6\xcb\x7d\x60\x5b\xfd\x6c\x00\x20\x27\x5b\x46\x9f\x99\x8b\x2f\x92\x91\x0c\xce\x59\x4a\x9e\x89\x49\xf2\x1e\x43\x6a\xe2\xf5\xed\x81\x77\x50\x7f\x40\x8d\xaf\x94\x76\xcf\xa4\xb7\x67\x73\x17\x39\x0a\x13\x81\x0d\x21\xb0\xff\xac\x5c\x5b\x7d\x81\xa8\x43\xeb\xfd\x9e\xc5\xa5\xb5\xf8\x59\x39\x0c\x51\xb1\xa8\xf8\xb1\x40\x5a\xb9\x6f\xfd\x06\xfd\x05\xfc\xc2\x44\x3d\x4a\xef\x8b\x45\x26\xf6\xd6\x42\xd5\x8f\xf5\x59\x5e\xd6\x66\x73\x49\xd5\x67\x4f\xd1\xad\x4e\x90\xf0\xcd\x17\xf4\x67\x87\xe8\x16\x12\x78\xe0\x9c\x66\x15\xc1\xb3\x53\xdc\x58\x76\xb3\xec\xc7\xda\xfc\x05\x58\xc4\x22\x0e\x8a\xbb\xf5\xd9\x5a\x7b\x12\xa5\xb9\xa1\x11\xd5\xce\x18\xcf\x81\x1b\xac\x27\x0f\xbe\x67\xd6\x05\x3e\x47\x7f\x57\xd4\x4c\x96\x59\x30\xa4\x1d\x7a\x0e\xf2\x80\x89\x42\x5e\x0c\xeb\x11\x9e\x83\x4b\xde\xfd\x02\x6f\xd9\x42\x76\x0f\x82\x09\x6d\x76\x7d\x90\xe3\xed\x23\x83\x4e\xf2\xa9\xb8\xec\x44\x2c\xae\x77\x02\x63\x0b\xed\xbc\xf1\x40\x91\xe7\x2b\xe8\x73\xd2\x9f\x4b\xfa\x9b\xe7\xa4\x4e\x54\xf7\xe2\xe7\xe2\xdc\x8b\x04\xa8\xd5\x7c\x27\x7d\x90\x74\xe2\x33\x0d\x57\xf2\x83\x3f\x80\x50\xf3\x3c\x5e\x94\x59\x3e\x0a\xe0\x11\xe6\x9b\xfc\x03\x1d\x99\xfd\xf6\x1f\x18\x20\x1d\x12\xf4\x50\xe9\xe5\x1e\x61\x4f\xdc\xec\xee\xf1\xa4\x41\xd1\xf8\xe4\x86\xf2\xd1\x4c\x0c\x4c\x66\x3c\xfc\x40\x89\x65\xa7\x98\x07\x4a\xac\xcf\xb1\xfe\x90\x61\xfb\x9f\x94\x72\x0f\x8c\x8d\xf6\x1e\x7e\x1e\x32\x8e\xe8\x7d\xc8\x38\xfe\x7f\xfc\xf7\xbf\x70\xf2\xaa\x07\x88\xee\xe3\x35\xf1\x40\x3f\xe5\x4c\x0b\x0f\xcb\x6b\x38\xe0\xf3\x61\xf6\x09\xbb\x7a\x3c\x40\x78\x32\x52\xc4\x0f\xc6\xca\x29\x27\x9c\xf8\xfd\x48\xe3\xd4\x33\x69\x2a\x7a\x7e\x69\x52\xf2\xdb\xf8\xfd\xa0\x6d\xf9\xb7\x88\xf1\xfb\x81\x95\xff\xcd\x68\xfc\x00\xe8\xa6\x6c\x74\xf1\xfb\x71\xd5\xbb\x9e\x29\x15\x36\xbf\x80\x55\xff\xc7\x26\xf1\xdb\x48\x51\xe8\x19\x5a\xbe\x22\x0a\x60\xa7\xdc\x64\x47\x89\x1f\x0a\xb5\xf5\xe6\x67\xcc\x52\xd3\x10\xe0\xb7\xd6\x9b\x3a\x84\x4a\xab\x37\x91\x4c\xbb\xe5\xe7\x19\x04\xfd\x3b\x18\xe3\xc7\xaa\xb2\x3a\x04\xe2\x07\xff\xff\x29\x53\x51\xfc\x50\xff\x42\xa9\x32\xe3\x87\x5c\x6a\xba\x8f\xc4\xaf\x40\xe6\x7b\x92\xa0\x82\x1a\x9e\x44\xe6\x41\x5b\x9b\xba\x44\x36\x88\xde\x34\x07\xc0\x5d\xbd\x69\x8e\xe0\x16\xb7\xc9\x03\x26\x7e\x35\x27\x45\xeb\xc8\xa2\x6a\xe1\x59\xa8\xb9\x30\x22\x82\x99\xd0\x94\x40\x2b\x7e\xc4\x59\x4d\x4d\xb4\x1c\xa6\x86\xd5\xb2\x57\x91\x81\xbc\xbd\x53\x86\x96\xf8\x35\xee\x40\x2f\x16\xeb\xa6\xe9\x48\x8e\x5f\x4b\xf7\x3b\x7f\x72\xb0\x0d\x0d\xa5\xf1\x9e\xe4\x26\x78\x66\x77\x11\xde\xc1\x20\x5d\x2f\xb0\x8c\x6c\x98\x01\x3a\x85\x5d\xd1\x8a\xa3\xae\xac\xe2\xa4\xe3\x07\xe3\x61\xef\xfa\x7f\x64\x0b\x1a\x3a\xac\x87\x53\xb5\x89\xe3\x87\xf4\x0a\x53\x25\x79\xe3\x87\xec\x61\xd5\xfb\x62\xe4\x6c\xfa\x8b\x9b\x5f\xb8\x13\xea\x85\xb4\x20\xb0\x0f\x36\xff\xcf\x54\xb7\xd2\x1a\xbe\x82\x80\x2d\xf8\x0b\x58\x62\x87\x9f\x51\x66\x6b\xd3\xc4\xb0\x3c\xd9\xe7\x99\x02\xd6\x33\xc5\x72\x65\xe1\x81\x4f\xee\x76\x75\x39\xb3\x4b\xcd\x14\xaa\xd7\xff\x3c\xb5\xf0\x57\x1f\x66\x22\xe6\x3b\x58\x22\x09\x7e\x5d\xaa\x7c\x1a\xbf\x45\x96\x29\x7e\x81\x76\xd9\xee\x1f\x78\x62\x17\x7f\x42\xa6\xf2\x30\x80\x34\x56\xff\xfc\x00\x99\xf3\x69\x82\x57\x88\xe2\x17\x1e\x36\x21\x26\xdb\xa9\xfe\xec\xfe\x01\x41\x8c\xd5\xcf\x38\x08\x3e\xff\x23\x5e\xf5\xf3\x3f\xf6\x46\xd7\xea\x42\xfb\xd3\xcd\x93\x47\xca\x08\x4d\x14\xd4\x41\xf3\xe7\x1d\x4a\xd4\xd0\xc5\x62\x47\xce\x8c\xbf\xa0\xa2\xc4\x73\x07\x03\xa0\x0a\x8a\xc5\x0f\xae\x57\xca\xc2\x1f\x3f\xa4\x2c\xd8\xe6\x5f\x92\xcb\xc5\xef\x60\x3a\x7b\xf5\x76\x4e\x84\x4f\x68\x40\x27\xc5\x83\x77\x2e\xfc\xd1\x65\x8d\x8e\x1f\xdc\xcb\x65\x33\x8d\xdf\xc5\x01\x7a\x93\x5d\x93\xf4\xfb\x0d\x2c\x93\x77\x1d\xa3\xe8\xc2\x03\x82\xc7\x51\x37\x3f\xf3\xfc\xf7\x9e\xba\x73\xd5\xf4\x01\x82\xde\xe6\xcf\x02\x88\x27\xac\xb7\xcc\xc3\x72\x68\x7e\xde\x39\xc9\xa2\xe9\x61\x97\xff\x5e\xd8\x7e\x94\x71\xe2\xcf\x8d\xbe\x3a\x3a\x0f\xb7\x5f\xca\x92\xd0\x0f\xdc\x22\xe2\xd7\x2d\x4d\x3a\xdd\x9f\x4c\xbe\xd1\xf4\x03\x27\xc2\xcf\xc9\xaf\xfe\x82\xe3\x2a\x26\x0b\x7a\x3a\x9d\x81\x5b\xaa\x2c\xd4\xe7\xc6\x16\xfd\xff\xfe\x9e\x91\xff\x2e\x77\xb1\xa1\x6a\x54\x1f\x7e\x4e\x19\xfa\x6f\xe2\xb6\x42\xe7\xae\xcf\x0f\x74\x0f\x57\x8b\x38\xd2\xa4\xde\x8c\x8d\xf5\x98\x96\x47\x99\xda\x84\xe2\x37\xd8\x87\x96\x6f\x2b\xdc\x85\x9e\xba\xf7\x54\x0b\x45\x30\xc4\x56\x29\x8e\xfc\x05\xa2\xd4\x14\x58\x17\x5b\xe5\x71\x52\xfd\x02\xbd\x09\x45\x04\x5c\xaf\x37\xf9\xf7\xc4\x46\xb3\x86\x2e\xa9\xb1\x35\x08\x30\x49\xb8\xad\x11\x95\x0e\x7f\x91\x95\x4f\xc4\x01\x38\x7f\x64\x55\x8c\x0d\x41\x63\xb2\x57\xc5\xd6\x09\xa1\xbc\x7a\xac\xe4\xb9\xdc\x64\xe7\x75\x4b\x8c\xbd\xf5\xe4\x32\xcd\x15\x9c\xb1\xfb\xf0\x33\xd0\x78\x68\x66\x3a\x8f\xf3\xea\x1f\xe0\x09\xb5\xfc\x4c\xc6\xf6\xb8\x68\x1a\xa9\x6e\x91\xc7\x8f\xa7\x8e\x71\x64\xca\x1d\x19\x1b\xdc\xad\x7b\x88\xc8\xf7\x10\xac\x55\x67\xc3\x36\x48\xa3\x86\xc9\xeb\x7f\xf8\x7f\x54\x5e\x9b\xee\x80\x7e\x42\x1e\x35\xcb\x1b\x79\xd0\x83\x13\x2b\x92\x11\x14\xa6\xe0\xf6\xd8\x82\x90\xc5\xfb\x04\xe7\x59\x78\x2d\x27\x67\x5e\xb8\x69\x43\xf8\x55\x37\x3b\x4c\x1e\xa1\x1e\xe3\xe4\xad\xc6\x4d\xa2\x32\x50\x0f\x11\x3d\x33\x26\x4c\xcf\x54\x61\x48\xf0\x6f\xb0\x6d\xc8\xff\x35\xb6\xbc\x4a\x5b\x82\xbc\x27\x5c\x95\x86\x33\x36\x78\xaf\x74\x6f\x9c\x45\x79\x61\xfe\x42\xe5\x1f\x25\x98\x88\x6d\xe5\x52\x8a\xc1\x16\x11\x91\x17\x1f\xae\xc5\xd5\xbb\x7f\xcf\x79\x50\x13\xb0\x6e\xcc\x9f\xa9\xde\x31\x4c\xaf\x0d\x8f\xb7\xa9\xa9\xce\x3b\xae\xc5\x1c\xee\xb8\xca\x13\x10\x1b\xdc\x57\x96\x2e\xb9\xb1\x1d\x8c\x84\x5c\xa2\x92\x77\xd8\x29\xa2\x0e\xde\x17\xc7\x5f\x5c\xb8\x63\x83\xdb\xaf\x2a\xff\xc7\xf6\xde\x67\xa7\x34\x3d\xb1\xf1\xfe\x2a\xe8\xb9\xb1\xfc\xf8\xb2\x44\x3b\xe1\xb3\xe1\xee\x4f\x92\xe3\xff\xa9\x56\xb1\x88\x64\xd8\xf8\xb2\x70\x39\x49\x82\xa6\x00\x19\xc8\x97\x07\x08\x37\x92\xee\x75\xba\xa8\xeb\xf4\x86\xe0\x85\x78\xfa\x83\x8e\x3d\xea\x0f\xa8\x07\xf0\x2e\x87\xcb\x6e\x17\x02\xdc\x2e\x82\x4a\xdd\xce\xb6\x8b\xac\xd0\xfc\x06\x0f\x06\x13\xfd\x1e\x91\xad\x79\x57\x23\x51\x63\x37\xff\xde\xd4\x65\x6b\x5a\x98\x33\xdc\x5d\x22\x5b\x8e\x8a\x50\xc6\xc6\x0b\xf0\x72\x7b\xcc\xe5\xa7\x31\xbe\x17\xe2\x56\xcd\x8a\xac\xba\xe3\xdb\xd8\x86\xb2\x3b\xaa\xb7\x12\xdb\x43\x91\xed\x95\x84\x8f\x45\xb7\xe4\x42\xd4\x79\xf7\x41\xf3\x90\x02\xbf\x8f\xe4\x0f\x3e\x24\x60\x93\x50\x86\x8b\x28\x3f\xca\x31\x6d\xe1\xf2\x1e\xc8\x55\xd1\x54\x51\x7e\xc4\x8f\x9a\xc4\xf2\xc3\x99\xbf\xf4\xc2\x86\x39\xd3\x42\x17\x7a\xc2\x4a\x13\x1a\x65\x4b\x31\xe2\x37\xa8\xc0\x11\xd6\x29\x5b\x2e\x94\xdf\xc0\xa8\x24\x05\xca\x46\x9d\x5d\xf8\x8b\x87\x4d\x88\x2a\xa6\x81\x91\x9a\x2f\x0a\x32\x04\x2a\xec\x23\x0a\xca\xce\x28\x4d\x79\x14\x66\x7d\x51\x0a\xcd\x28\x28\xdd\xad\xac\xfd\x51\xe0\xc8\xa0\x42\xad\x51\xf2\x56\xa9\x2b\x49\xc1\xad\x52\xe5\x3c\xa3\xe0\x56\xa9\xe0\xaa\x28\x70\x64\x98\x52\xb8\x44\x41\x9e\x18\xe5\x62\x88\x52\x11\x29\x2c\x6e\x2c\xcc\xbe\xad\xa0\xb2\x28\x35\x39\xda\x5f\x20\xbb\x5f\x75\x97\x10\xe9\x5e\x2c\x54\x9e\x51\x82\xa9\x28\x8d\x90\x40\x27\x61\x61\x36\xed\x9f\x17\x87\x05\x0f\xa5\x3c\x8b\xc2\x9c\x83\x52\x9e\x45\x41\xfe\x6c\x15\xcd\x8b\xf2\xde\x52\xab\x4a\x86\x44\x69\x88\x54\x94\x68\x2b\x2f\x02\xe8\xe3\xe7\x67\x18\xc3\x3d\x4a\x66\x24\x94\x6a\x2c\x4a\x67\xe9\x35\x2d\x7e\xa7\x64\xd0\xc9\x56\x7a\xb2\xa0\xdf\x78\xd7\x56\xb5\xd9\xa2\xe0\x38\x57\x30\x56\x14\x18\x00\x96\x54\x5f\x51\xe0\x43\x3b\xcc\x3e\x9d\xd8\x59\x47\x5d\x61\xf6\x6b\x6d\xab\xd2\x93\x48\xcd\x74\x7f\x00\xe8\xf4\x01\x8b\x77\x4b\x5f\x17\x05\x06\x80\xea\xa5\x79\xf1\x40\xfb\x75\x7f\x40\xd0\x62\x06\x85\x67\x84\xbc\x09\xa3\x0c\xde\xcb\x8a\x5f\x58\xf0\xc7\xf2\x33\xa1\x95\x6e\x34\x25\x08\xd7\x74\x6d\x2a\x81\x94\xad\x9e\x59\x28\xfc\x55\x4e\x2d\x4a\xe4\xc6\xd3\xda\x04\xb1\xb5\x87\xf9\x82\x86\x5a\x3c\x2a\xa8\xfc\x67\xfc\xc5\x7f\x3b\x0a\x22\xab\x86\x47\x14\x44\xac\x26\x18\x99\x66\x54\x68\x30\x0a\xcc\x03\xaa\x7f\x15\x05\xe6\x01\x95\xe8\x8a\x32\x29\x1e\x25\x9f\xcb\x0b\x40\xfa\xf0\x0e\x42\xfc\xf7\xe6\x2b\x4d\x49\xe5\xbe\xf0\x42\x99\x04\x6e\x9e\xa3\xc5\x3e\x44\x43\xea\xee\xbd\x50\x0b\xfc\x6e\x76\x64\xd9\x15\xb9\x5b\x44\xa1\x9a\x5d\xf7\x91\xb2\xb3\x45\x35\xb0\x93\x48\xbf\x4f\x19\xde\xfd\x03\x8e\x21\xc1\x89\xc2\xf4\x7e\xf1\xf9\x21\x89\x16\x91\xc8\x3d\xad\x68\x83\x28\x07\x21\x8b\xc7\x7d\xf0\xc0\xd7\xc4\xc0\x5b\x62\x58\xc2\x1e\x54\xc9\x4c\xff\xc0\xea\x4a\xfe\x60\xe1\x03\xf7\xc0\x73\x43\x14\x40\x63\x5e\x15\xf9\x1e\xe5\xe4\x85\xd5\xf3\x46\xef\x57\xaf\x3e\x32\xcf\x0c\x4b\x68\x78\x36\x7c\xa6\x0d\x2a\xf3\x61\xc1\x93\x9e\x0d\xd3\x1f\x50\xd9\xa5\xdb\x48\x39\x79\x7c\xeb\x82\x53\x80\x39\x86\x07\xc1\x42\xd5\x9f\x67\xce\x82\x06\x81\x28\x6b\x5f\x56\x0a\xab\x50\x1b\x63\x17\xd4\x02\x0c\x33\xcb\x85\xea\x18\x02\xc0\x85\xa5\xfd\x8c\x88\xcb\xcd\x1e\xb4\x0e\xcc\xa7\x67\x85\x6f\x41\x15\xe9\xea\x1d\x77\xc3\x57\xfa\xf3\x3f\x3c\xc0\xcd\xf2\x0f\xc5\x84\x7b\x48\x88\x50\xfd\x03\xd8\xcb\xb3\x02\x88\x60\x95\x50\x01\x42\x18\xde\x33\x0f\x55\x11\x02\xed\xe5\xc9\xa0\x08\xb7\xc8\x3c\x9f\xa2\xf1\x41\x41\x43\x0b\x85\x87\xc2\x50\x2d\x54\x96\x99\xb6\x06\xb6\x26\x48\x10\x8c\xaf\x70\xb4\x1c\x9f\x17\x0e\x7e\xe1\x17\x78\xdf\xf5\x17\x1b\x4f\x26\x1d\xd0\x35\x71\xc4\xe7\x07\x30\x4c\xf5\x33\x27\xa2\xea\x99\x11\xf1\x53\xcf\x38\xd0\xdd\x25\x14\xd5\x4a\xf3\x1d\x75\xa3\xed\xea\xd3\xe0\xbb\xcb\xe4\x34\x10\xb5\xe4\x30\xf5\x05\x0a\x37\x5b\x8f\x5c\x91\xa5\x58\xe5\xb4\xa2\x16\xde\x8f\xc2\x3f\xf0\x44\x17\x8e\xae\x28\xfa\x31\x9a\xbb\x40\xe6\xf0\xe5\xff\x0f\xd8\x64\x96\x9e\xc9\xf2\x9f\x16\x21\x1a\xa6\x9f\x1f\x0c\x4a\x1f\xa4\x12\x40\x30\xba\x22\x22\x67\x33\xfa\xaa\x95\x1c\x26\xe0\x53\x51\x97\x59\x59\xd2\xa2\x56\x22\x80\xe1\x1f\x08\x43\x84\x11\x2b\x92\xd3\xcc\x9f\x80\x4a\x85\xae\x5b\x69\xbb\xa3\x56\x86\x1d\x6a\x58\x8d\x47\xba\x6e\x07\x15\xba\x6f\x0b\xb8\x0a\xd4\xa1\x94\xeb\x51\x1b\xcd\x1a\x9e\xa8\x4e\x53\x51\x94\xbf\x9c\x44\xb5\x93\x99\x84\x7b\x6a\xa7\x5a\x54\x42\xbc\x76\x30\x8f\xe4\x5b\xed\x3c\x7d\xbd\x96\xc8\xfb\x52\x3d\xd1\x83\x81\x8f\x1e\x33\x53\xbb\xd9\x30\x52\x11\x4f\xad\x34\xc4\x51\x07\x0f\x27\x13\x81\x00\xeb\x61\xf6\x19\xbc\x99\x0a\xbe\xd5\xd4\x7a\xeb\xfe\x51\x51\x00\x4e\xc9\x67\xa2\x06\x85\xae\x59\x94\x59\x83\x75\xe2\xd7\x00\x47\x7e\x9e\x61\x5f\xfa\x34\x00\x1a\xbb\xbf\x4f\x1a\xb5\x49\xe0\x03\xa0\x4c\xb3\x51\x03\x68\x4e\xb2\xa0\x06\x49\xd4\x15\xa7\xf2\x4c\x5f\x1e\xc4\x4c\x1a\x45\x03\xd3\xc7\x29\xd9\x66\x54\x1e\xeb\xd2\x7a\x57\x14\x78\x33\xd6\xaa\x0c\x87\xae\x7e\xa6\x04\x9b\xfe\x01\xd6\x02\x9d\xb8\x95\x15\xde\xe4\xf6\x14\x75\x25\x51\x7a\x23\x4f\x79\xe1\x82\xba\x08\xce\x25\x04\x6b\x6a\xd2\x05\x01\x2b\x4d\xf6\x3a\x1b\x2a\xe3\x64\x3e\xe2\x61\x11\x3c\x4d\x7f\xc1\xcd\xaa\x3b\x6e\xdd\x99\xd0\xdb\x1c\xb0\xd3\x10\x62\x79\xc0\xe4\xc0\x4a\x07\x18\x15\xc9\x80\x1d\xcf\x13\x15\xf9\x61\xac\x62\xad\x3b\xef\x4a\x9e\xde\x9d\xe2\xdc\x32\x63\xa7\x68\xf5\x74\x1d\x80\xa2\x82\x3c\x15\xba\xf3\xa1\xa3\xbc\xa2\xc6\x5a\x53\xd9\x93\xa8\xd4\x9d\xab\x8c\x49\xd4\x83\x12\xc0\x52\x05\xea\x89\xaa\x6c\x7b\x51\x0f\xf2\x89\x5f\x38\xd9\x84\x5f\xb8\x5e\x4e\x34\xe7\x1d\x04\x87\x16\x09\x27\x78\xbd\xfb\x19\x29\x8b\x74\x58\xd7\x33\xe7\x4e\xe3\x3c\xb9\xa7\xbd\x84\x27\x99\x5b\xb3\x7d\xc2\x2f\xdc\x9b\xe1\x64\xc8\xa5\xdf\xe7\xfe\x33\x2f\xa7\x52\xc3\x2b\x8a\x24\x31\x3f\x1f\x00\x04\x1c\x16\x5b\xd0\xe2\x37\x65\x2b\x8d\x7a\x21\xe8\xc2\x24\xb0\x18\xc5\x32\x4b\x30\xf1\x8b\x79\x9d\x95\xd1\xa6\x37\xc3\x95\xab\xa7\x3e\x10\xfb\x32\x3c\x0f\x30\xe3\xcb\x3d\x3e\xea\xcd\xfd\xe6\xed\x75\x23\x41\xa4\xb7\xf0\x9d\x89\x33\x35\x8a\x9b\x42\x42\x13\x79\xe7\x44\xfa\x05\x1e\xe7\x52\x43\xd4\x3b\xa9\xd4\x30\x90\xf5\x57\xb9\xed\xa2\xbe\x30\xa6\x2a\xa2\x36\xea\x4d\xa2\x45\x24\x2c\x0b\xc3\x3d\x00\xd5\xb4\x29\xbb\x65\xa5\xf1\xde\x33\xfb\xe4\x6e\x13\x3b\xc0\x3f\x73\x18\x0d\x3c\x64\x49\x69\x3a\x6a\xe2\x1c\xa9\x36\xea\xc3\xfb\x92\x19\x86\x0e\x9b\xca\x99\x13\x15\x59\x7f\x97\x47\xf5\x10\xde\x89\x21\x1a\x23\x52\xe4\x62\x13\xed\x97\x93\x3d\xf4\x03\xa3\xb4\xff\xe2\xc1\x10\xed\x97\xa3\x9e\xfa\x01\x2b\x21\xb0\xd7\xa0\x7c\xb1\xb6\xa7\xd1\x3d\x40\x3b\xb5\xa1\x24\xb1\x6d\x02\x8d\x91\xce\x53\x97\xed\xb6\xf1\x4a\xa8\x95\x6b\x8c\x68\xf9\x49\xac\xb5\x92\xe1\xd4\xa2\xa1\x30\x91\x82\xbe\x60\xfa\x3d\xaf\x6d\x23\xca\x91\x04\x6a\x85\x2c\x1c\x7a\x9e\xfc\x40\x54\x17\xee\x3b\x11\x55\x10\x3b\xdf\xdd\x23\x6f\x54\xe1\x16\x29\x2c\x36\x13\xc9\x4d\xb0\xdc\x24\xae\x23\x1e\x38\x75\x2d\x02\x35\xad\x22\x49\x87\xc4\x68\x63\x28\xb1\x27\xf2\xc5\x34\x55\x2e\xfb\xd1\xa0\x7a\x51\xa2\xb0\x68\xb4\xef\x4f\xcf\x0a\x62\x48\x94\xf2\x34\x1a\x1c\x21\x95\x8f\x34\x5a\xe3\x0d\xcc\x3d\xc2\x33\x72\x08\x1e\xb4\x34\xf7\x4b\x2c\xb7\x96\xf3\xea\x1f\x12\x51\x88\x97\x1a\xc5\x6e\x71\x27\xac\xaa\xa1\x6d\xd5\x1a\x39\x58\x60\xbf\x31\x4a\x44\xb9\xe2\xa2\x11\xf9\x6c\x92\xe5\x2d\x8d\x25\xd2\xcf\xb5\xce\xe5\x14\x19\x3d\x7b\xd5\xe4\x23\x20\x79\x78\xae\x52\x9b\xe2\x16\x11\xba\x66\xa6\x45\x7d\x07\x65\xf3\x8c\x86\x42\xbc\x73\xd3\xe9\xd1\xa0\x4c\xf1\x35\xbf\x75\xce\xa5\xfe\x1f\xa8\xe9\x22\x11\xd8\x46\x1e\x9b\x22\x19\x0e\x06\xe3\xf3\xdc\x90\xc9\xdd\xcf\x83\x43\x10\x43\x0d\x0e\xc1\xcf\x58\x4d\xc1\x81\x36\x72\x62\x35\xf5\x83\x11\x87\x9f\x37\x08\x29\xbc\xd1\xe1\x5c\xa9\x74\x0d\xd1\x08\xcd\xbc\x78\x91\x2b\x21\xa2\x82\xb7\x07\xf3\x20\x52\xee\x59\xa8\x36\x04\xaa\x28\xa9\x64\x34\xaa\x4f\x84\x2f\x1a\xec\x33\x6d\x9a\x49\x89\xac\x36\x6f\x55\xa6\xa6\x91\x82\xb1\xcd\xc9\x17\xd4\xe5\xc4\x4e\x1c\xfe\x00\xa7\xb4\xb0\x43\x9b\x29\xf0\x44\xf4\x62\x9f\xc2\x5e\x6d\xa5\x40\x11\x11\x2b\x19\x4c\x73\x4b\x07\x83\x4d\xa2\xbc\x2d\xca\x03\x5d\xcc\xda\x5a\x7c\xc3\xbd\x10\xc3\x78\x6f\x30\xfd\x8b\xca\x52\x46\x5b\x9c\x0b\x93\x01\x0b\xae\x79\x6e\x4f\x3a\x45\xc5\x9e\x73\x23\x3a\xa9\x95\xf1\xd0\x51\x42\xac\xa9\xe8\x41\x34\x62\xb1\xcd\xb2\x73\xcf\xfd\xe8\x1f\x70\x47\x98\xee\x34\x07\xa6\x71\x64\xee\x3e\x2f\xd9\xce\x63\x71\xf3\x0f\x64\xb4\x6a\xb2\xa0\xa1\xb5\xc7\x58\x63\x8e\x60\x6b\xe8\x1b\x74\x3b\xbe\x95\xb6\x44\x67\xba\xe2\x35\x82\x31\x15\x59\x8c\x76\x64\xaf\x22\x14\xe9\xf7\xe6\xb6\xfd\xe9\xb2\xd4\x10\xe8\x5c\x2c\xcf\x19\xe7\xac\x4c\x65\xd1\x4e\x8e\x5b\x77\xa3\x76\xe6\xb8\xfd\x03\xf6\x97\x70\x53\x03\x90\x72\x94\x5f\xb4\x13\xbb\x47\x30\xa8\x5d\x3f\xbe\xa0\x2f\x00\x94\x8a\xbd\xa3\x1a\xcc\x41\xca\x2d\x17\x0d\xe6\x9f\x69\x77\x9c\x76\x91\xd9\x37\x7f\xc1\xc3\x50\x17\xb2\x06\xed\x4d\xb1\x2f\x54\x83\xfd\x47\x25\x54\xa2\xd1\x65\x72\x7a\x8b\x5e\xb9\x18\x7a\x03\x06\x21\x25\x50\x8b\x76\x33\x64\x43\x03\x47\xe5\x2e\xe5\x4f\x8b\x76\x53\x5b\xa3\x7b\x65\x63\x20\x8b\xc7\x09\x8b\xd1\x30\xc2\x80\x93\x65\xf9\x99\x6f\x51\x75\x76\x18\x71\xa0\xd4\x57\xb1\xef\x54\xbb\x73\x71\xdd\x05\xf6\x8a\xe5\xca\x8d\xf5\xdb\x7c\x58\x22\x14\x66\xf8\x30\x4d\x95\x92\x2e\xa2\xed\x81\x21\xc2\xe2\x93\x2a\x26\x4b\x05\x62\x2f\xcb\xc2\x27\x19\x4e\x44\x3f\x54\xef\x34\xff\x40\x06\x30\x8f\x66\xa2\x3f\xed\xe8\xfe\x83\xc6\x52\xf2\xb4\xff\x30\x93\x12\x09\x1d\x75\xbb\x94\xc1\x27\x3a\xa0\x92\xd2\xe7\x44\x67\x6c\x8c\xdd\xb9\x3a\x92\xba\x84\x96\xa6\xc3\x4e\xa5\x5c\x36\xd1\x7f\x37\x9e\xf5\x3e\xa0\x92\xb5\x5e\x1d\x19\xfc\x8a\x9d\xb5\x3a\x02\x5d\x94\x14\x26\xfa\x46\x0a\x44\xf1\xc6\x98\x92\xe6\x16\xa8\xfe\x99\x6e\x01\x97\x39\xc9\x8b\x0e\x3b\x97\x6d\xa0\x7d\x43\x7d\x3e\x9d\x42\x7d\x23\x89\x7e\x7e\xa0\xcf\x17\xc9\xcc\xa4\xbc\x09\x20\x74\x56\xa1\xf5\xad\xaa\x17\xe6\x79\x5d\xfe\x81\x61\x72\x22\x1a\xe8\x6e\x6e\x82\x14\x1d\xa1\x32\xca\xcc\x1e\x1d\x95\xb6\xe2\xf3\x1c\x9c\x16\xb7\xc0\x9a\x24\x1a\xf5\x8b\xf6\xde\x17\x34\xaa\x92\x77\x03\x93\x7d\x20\xe1\xad\x5f\xe0\x4a\x69\x69\x0b\x6a\xfe\x49\xf8\xf7\xfa\x83\x67\x96\x9f\x51\x12\x42\x88\xa5\x43\xa5\x65\x51\xd1\x5f\xf0\x57\x7c\x38\xf4\x9a\xac\xa1\x79\x84\x3b\xa7\x0d\x27\xbd\xce\xff\xfe\xd7\x54\xa0\x21\x7a\xcd\x21\xf8\x07\x18\x0b\xc5\xdf\x1d\x79\x64\xaa\x67\xb1\x72\x04\xa6\x88\x72\x43\x57\xcd\xde\x72\xa5\xd4\x62\xa3\x7c\x73\x93\x28\xc8\xa0\x84\x2a\xd1\x61\x66\x0b\xcf\x62\xcb\x79\x57\x1f\x8d\xf2\xae\xb8\x85\x85\x2f\x34\xaa\xb6\xe3\x59\xd3\x0e\x43\x9c\x35\xc9\xbd\x31\x05\xaa\xff\xc7\x06\xd9\x4c\x73\x4a\x43\x8d\x12\x31\xc9\xb6\x76\xf7\x9e\x83\x12\x49\x1d\x6e\x0e\x66\xb6\x04\x9f\xd5\x3f\x20\x27\x6a\xf9\xd3\x39\xd4\x3b\x47\x6c\xee\xee\xbc\xed\x88\xc0\xce\x01\x6a\x59\x11\xd6\x13\xe6\x4c\x84\xf5\x28\xe8\x34\x3a\xc2\x7a\xac\x84\xee\x9d\x0a\x5f\xef\x27\x24\xca\x29\x76\xba\xeb\x28\x3d\xa6\xdc\x80\xd1\xc7\xc6\x17\xf4\x05\x6a\x8f\x29\x32\x36\xfa\xe0\x2a\x6a\x4d\x46\x87\x2a\x4b\x24\x02\x99\x1a\x14\xf6\x11\x78\x5f\x33\x38\xb8\x86\xfe\x1f\x75\xde\x4d\x32\xa2\xa3\xc3\x53\x02\x0d\x61\x6f\x9f\x06\xb0\x88\x9f\x11\x10\x28\x89\x8d\xe0\x16\x6b\x9d\x47\xa7\x06\x51\x89\x75\xa3\x47\xae\x99\x5a\x00\x4c\xb5\xed\xb4\xc3\x88\x18\x9f\xe7\xce\xe3\xc5\x1f\x80\x73\x8b\xbb\x08\xb8\x07\x8b\x44\xe8\x1c\xc3\x73\x48\xc7\x24\xa5\x29\x8d\xce\x14\x8e\x0a\x09\x89\x0e\xc3\xa1\x4d\xef\x9d\x8e\xb6\xca\x29\x1a\x1d\x86\xc2\x30\x23\x22\x51\x74\xb1\xc7\x5f\x9f\x98\x57\xef\x95\x09\xd6\xf1\x3a\x4c\xd4\xda\x09\x37\x70\x92\x04\xf7\x00\x37\x35\x2f\x24\x90\xb2\x4a\x6b\x47\x4f\xa0\xac\x33\xb4\x23\x53\x8f\x6d\x51\x1d\x55\x75\xc3\x5b\x61\x25\x89\x6a\x71\xd1\xbc\x65\xa9\x84\x1c\x89\xe1\x85\x58\x3c\x43\x4d\x34\xca\xea\x5a\x2f\xda\xf7\x5c\x3a\x8d\x12\xf1\x3d\x61\xee\xd9\x79\xd0\x77\xff\x80\x23\xcc\x13\x0d\x78\xaa\xf2\x68\xd1\x69\x57\xdc\x04\xfd\x3a\x32\x1e\xda\xed\xbd\x1f\xe0\x7f\xef\xa0\x83\x3d\x6a\x50\xb4\x33\x4e\x1f\x48\x07\x7b\x14\x89\x07\x6f\x0b\xc2\x92\x1d\x6e\xb9\xf1\xe9\x71\x41\x98\x8b\xe4\x83\xf8\xc7\x4b\x89\x5c\xd2\xf1\x69\x80\xb3\xa2\xa5\x3c\x80\xb0\x2d\xab\xcf\x3c\x23\xb5\x32\x08\xee\x09\x1f\x47\x27\xc7\xa0\x69\x3e\x73\xd6\x34\x28\xc4\x60\x77\x9f\x57\x27\xa1\xa8\x05\xe5\x49\xdf\x3d\x91\x04\x38\x1c\x9f\xff\x19\x48\xde\xdd\x05\x68\x16\xee\xec\x27\x9d\x3d\x8d\x0c\xa0\x58\x9c\x9b\xf7\x08\x4c\x99\xf1\x79\xae\x7c\x41\x44\xbe\x78\xb9\xa8\x1c\x5a\xf4\xab\x23\x59\x8b\xa6\xe5\xa2\xb9\xe2\xf3\x02\x5d\xbe\xdc\x22\xb6\xcc\xa7\x41\x94\xcc\x32\x83\x5f\x39\x08\xb7\xc8\x7b\xfe\xe7\x0d\xc0\x17\x81\xc0\x7e\x73\xe6\x05\x44\x3b\xd0\xf3\xf2\x20\x80\x9e\xc3\x0d\xdc\xc9\x3d\x9a\x48\x2a\x22\x37\xb3\x13\xcc\xa9\x0a\x87\x8f\xce\xba\x1d\xaa\xe6\x1e\x1d\x29\x0c\xe7\xf6\x69\x82\x47\xf3\xf8\x93\x5f\x77\x7f\x5e\xbc\x6f\xa7\xf1\xfe\x50\x5c\x9a\xe1\x91\x35\xc7\x16\xe3\xfe\x50\x98\x7d\x5e\xc0\xda\x7b\xcb\xc1\x21\xcb\x31\x02\x83\x0e\x57\x4a\x2a\x1a\x03\x21\x43\xf6\xe0\x1f\x3f\x6a\x3f\x74\xf3\x19\x74\xaa\xde\x3e\x5f\x90\x41\x87\x3f\xc9\x69\xea\xfa\x81\xce\xa3\x3a\xa7\x06\x7c\xa6\xed\x9f\x3c\x52\x71\x28\x32\x07\xe2\x8a\xec\x4c\x3e\x7e\x5c\xed\xe1\x4e\xc1\xb2\x62\x9f\xf1\x23\x87\x6a\x97\x8c\xc4\xcf\x12\xca\x63\x4b\xba\xfd\x03\x11\x8c\x3b\xdd\x72\xf2\xd4\xeb\x46\xb3\xdf\xf0\x1b\xc4\x24\xee\x16\xd1\x44\xf6\x71\x1e\x85\xb8\xaa\xfa\x07\xc8\x5d\x1d\x80\xa3\xf0\x9a\xef\x81\x20\x14\xbc\x3a\x9c\x68\x14\x9c\xc9\x3a\xcf\x46\x21\x99\x26\x22\x11\x6e\xf5\x1b\x54\xc3\x79\x64\x70\x05\xb3\x77\xe4\xa8\xd4\xfd\x98\x0a\x1a\x5d\x37\xa9\xaf\x47\x25\x99\x7e\xe6\x2d\xdf\x03\x63\x79\xd9\xfe\x79\x03\x2b\x24\x8d\xe4\xa8\x3c\xb2\xdc\x47\xe3\x9d\x5a\xe2\x7f\x34\x32\xaf\x4e\xe2\xd1\xb0\xff\x24\xa7\x06\xcd\xb2\xd3\x43\x87\x59\xb6\xd8\x15\x76\xa4\x03\xb8\x47\x46\x98\x1a\xfe\x82\xca\x88\xcf\x0f\xd4\x16\x9a\xce\x54\x62\x9a\x5b\x81\x43\x3f\x03\x23\xee\xfc\xac\x10\x1c\xc2\x7c\x86\x8c\xce\x25\xd4\x31\x35\xfa\x80\x0b\x9a\x5f\xc0\x19\x12\x6e\x20\x17\x4c\x5d\x40\x45\x19\x9f\x06\x52\x28\x68\x66\xb2\x64\xac\x2e\xfa\x63\xe4\x7a\xa8\x4d\x22\xb7\xf0\x17\x68\x52\xaa\x9f\x31\xc8\x13\xe6\x1a\x46\x2c\x6d\xe1\x1f\xa8\x57\xf1\x82\x41\x85\x68\x9f\x9c\x91\x2a\x44\xcf\x0c\x72\xdd\xd8\x23\x66\x04\xe5\xa3\x57\x83\xd0\x4b\xe8\x6e\x10\x6a\xe9\xec\x1b\x81\x64\xbc\xcb\x3d\x22\x03\x57\x73\x07\x1c\x84\xff\x87\xe7\x87\xd7\x2e\x90\x38\x5d\xc6\x83\x31\x49\xb1\xbe\x9f\xf4\xd5\x97\xfe\x63\x4c\xd8\xbf\x3c\x02\x54\xf8\xb0\x37\xc2\x98\xcc\xc2\xa1\x0e\x12\xb8\x55\xbf\xc0\x4a\x8e\x1a\x11\x72\x67\x3b\x24\x6e\x4c\x8e\xd0\x0d\x60\x57\x7c\x08\xc0\x19\xa4\x2b\xc9\xa0\x25\xd8\x33\x86\x74\x89\xca\x4e\x11\x63\x25\x6f\x69\x0a\xe0\xfe\x65\x63\xf5\x58\x08\x6d\x32\xa7\x2c\x44\x06\x7c\x1a\xa4\xe6\xf8\xd3\x23\x4d\x15\xa2\x70\xf1\x92\x21\x84\x33\xe8\x6f\xbe\x45\xfc\xe5\x44\x1a\xa9\xd8\x94\xa2\x79\xec\x30\xbf\x84\x9b\xa3\xa7\xb8\x29\xde\x29\x44\x3f\x6f\x60\x15\x7d\x7e\xec\x14\xdd\xe6\xdd\x03\xcb\x6a\x36\x41\xbd\x57\xd5\x2b\x8c\x71\x50\x33\xea\x59\x3b\x50\x4a\xd5\x67\xd6\x91\x5d\x8a\x86\x03\x8a\x65\x6f\xb8\x93\x17\x29\x21\x9e\x01\x10\x66\x93\xf3\xa0\x87\xba\x27\xe9\xe4\xfe\xf3\x20\x4e\x94\x7e\x11\xbe\x1e\x27\x0b\x11\x88\x35\x4f\x0a\x22\x6f\x16\x84\x60\x15\x0b\x05\xa6\xbd\xb1\x3b\xee\x60\x49\x90\x69\xa2\x81\xca\x6c\xf5\x1e\x89\xca\x7c\x52\x5c\x24\xda\xcf\x94\x1a\xde\x1f\xd7\xc0\x0b\xa2\xe1\x05\x5d\x75\x93\x55\x61\x5c\xc4\xfc\x9e\x17\xa8\x28\xed\x6e\x31\x2e\xd4\xe0\xb0\xe0\x02\xa4\xb2\x75\x78\x5c\x70\x43\x35\xbb\xdf\x94\xf9\xde\xd1\x2f\xe6\xea\x36\xd4\x8e\x9b\x81\x06\xa2\xe0\xc6\x8d\xdc\x02\x1e\xb6\x60\xdb\x61\xc7\x9d\x4b\xed\x17\x02\x2f\x88\xdf\x6f\x9e\x8e\x96\x31\xc8\x6c\x68\x9b\xe6\xb8\xa9\x0b\xf4\xc4\xdf\x39\xcf\x1a\xf4\x8b\xd1\xaa\x8a\x96\xc5\x60\x2a\x43\xc7\xeb\x8c\x87\x62\xc5\x0c\xf8\xe0\x44\x90\xbe\x65\x20\x99\xcf\xe7\xa4\x7b\xa8\xf1\x11\x92\x1c\x70\x8a\xfb\x70\xf0\x93\x13\xaf\x61\xc1\x6f\x7e\xfa\x08\x79\x92\x48\x51\x0d\xa7\x37\x6b\x4b\xe2\x97\x44\x0e\xfd\xb0\x01\xf4\xfb\x85\x86\x16\xab\x9e\x93\xa6\xa9\x1f\x30\x93\x9f\x16\x27\x9e\x37\x3d\x23\xc0\x27\xdc\x40\x6e\xec\xd0\x0f\x07\x83\x46\xf4\x4c\x3f\xd2\xae\x67\xea\x37\x64\x17\x8b\x84\x64\xd2\x50\xc6\x46\xa0\x28\x01\x1e\x1b\x35\xf9\x52\xb3\xc6\xc6\xbb\xf8\x74\x1b\x9c\x28\x37\xc1\x5b\xa9\xf6\x7e\x40\x69\xe9\xd5\x0c\x28\x2d\x0d\x7d\x02\xb9\x7b\xec\x82\x1e\xe9\x55\xa7\x4d\x11\x85\x13\xe7\x0f\x88\x7c\x74\xd4\x06\x9c\xe6\x6c\x1d\x8e\xc2\x8b\xc7\x74\x0b\x34\xaa\x68\x1b\x45\xe1\xf9\x2e\x09\x17\xac\xd9\x3a\x4d\x45\xa5\xdc\xd7\x4e\x8a\x4a\x1b\xa2\x38\x24\x2a\x59\x46\xc7\x73\xa4\x52\xd0\x5f\x10\xc7\x68\xa6\xe0\x8c\x5f\xec\x6a\x1c\x95\xeb\x61\x16\x01\x42\xb3\x81\x29\x1a\xd7\x47\xb8\x3d\x12\x6e\xe9\x40\x0f\x56\x65\x0d\xb7\x00\x1e\x2a\x7e\x26\xda\xd2\x6e\x8c\x96\x23\x57\x93\x3d\xfb\xd0\xfa\x74\x6e\x60\x09\xad\x80\x5a\x6d\x96\x3f\xb9\x30\x04\x74\x6e\x36\x9c\x46\xcf\x7d\xe3\x1f\x72\xd0\xfa\x01\x3a\xb4\x21\x89\x14\xa3\xfc\xf7\xbf\x98\x66\xd2\x51\xe1\x72\xae\xc5\x1c\xbc\xdd\x98\x03\x11\x39\x67\x1d\x5a\x0c\x16\x01\xd3\x1c\xa5\x23\x9e\xd9\x01\x8e\x78\x36\x68\xc7\x60\x69\x08\xb3\xe4\xe0\x20\xfc\xcc\xcb\x8e\x99\x21\x28\x56\xbb\x7f\x28\x1c\xa6\x7f\x00\x4f\xea\xda\x11\xac\x86\xe6\x44\x0d\x11\x84\xe7\x12\x41\xc1\xec\x39\x76\xfb\x0e\xd8\x7b\x67\x71\x93\x0f\x9e\x35\x0c\xd8\x7f\xc3\x79\x11\x22\xdd\xe1\x05\x35\x02\xe0\xc7\xc6\xda\x00\xf8\x99\xba\xa7\x04\x12\xd7\xd8\x10\x1b\xac\xf4\x61\xb3\x5c\xd0\xe9\xcd\xee\xa4\xb1\x68\xd3\x58\x7e\x83\xf2\x40\xea\xfe\x58\xec\x43\x73\xc7\xe0\x70\x15\x3d\x8d\x40\x9d\x55\x9b\x72\x83\x5a\xaa\xe2\x99\x81\x56\x6a\x16\x8f\x6b\x47\x71\x06\x2f\xe8\xce\x05\x35\x87\xc2\xce\xda\x7c\x7b\x8a\x3d\x0b\x24\xbb\x09\x44\xb2\x7e\x88\xb8\x70\xd3\xf1\xff\x94\x10\xc3\x4d\x72\x9f\xe8\x9c\x8b\x83\x64\xab\x8b\x83\x88\xc5\x4c\x73\x80\x4f\x2d\xa6\x0e\x42\x57\x13\x75\xe0\xf0\x17\x94\x8d\xcc\x53\x63\x0e\x38\xc8\x33\x5a\x60\xf8\xcc\xd9\x5e\x19\x07\xb7\x8e\x05\x3e\x6a\xe0\xdb\xf2\x1b\x27\x2f\xbb\x16\x39\xc8\x17\x6d\xfb\x65\xa4\xcb\xbc\xc5\x39\x21\x8d\x30\x4f\x5c\x54\xc9\x78\x39\x2f\x8a\x07\xc1\xd5\xb8\x72\x58\x7e\x83\x7d\x68\xdc\xc4\x30\xd6\xce\x06\xca\xbd\x5a\x39\x1b\x50\x1c\xf9\xa6\x14\xc0\x34\xd6\x94\xc6\x9d\x7c\x2d\xa2\xa0\x16\xfa\x4c\x3d\xd4\x42\xd3\x07\xe7\x9d\x0c\x23\x12\x6e\x96\xa3\xf3\x07\x94\xdd\x16\x9b\x2f\x68\xa9\x4e\x27\x11\xcc\x5c\x33\xfc\xff\xce\x16\xdd\xc2\xc9\x1f\x4c\x24\x33\x16\xf8\x19\x6c\xef\x93\x14\x6a\x25\xdb\x1e\xe2\xa1\x5a\xc7\x82\x98\x65\xee\x1d\x4f\x16\xc8\xbf\x6c\x87\x91\x48\x17\x38\x4b\xea\x87\xa6\x60\x41\xde\x80\x55\x75\x16\x41\xab\x80\x2e\xc9\x17\xe3\x89\x02\xb2\x76\x81\x9b\x28\x8d\x36\xcb\xe6\x17\x72\x62\x86\x7e\x58\x7c\x63\xd3\x0f\x6c\xd2\xcf\x17\x5f\x28\xfa\x81\x3b\x47\x28\x79\x6e\xdc\x18\x3a\x93\x26\x4a\x61\x58\x03\x36\x11\x5d\xef\xbd\x39\x91\x10\x70\x93\x8d\x63\x6e\x49\x83\xc8\xde\x78\x70\x0a\xf9\xcc\x82\xbd\xd8\xff\x92\x2e\x35\x66\x81\x21\x59\x27\xfb\x64\x46\xe4\xa9\xf3\x63\xa6\x8a\xe8\xf3\x06\x2a\xa9\x98\x60\x04\xe7\xdb\x9a\x3d\xe9\xc6\xaf\xbb\xc8\xa4\x13\xbe\x4a\x71\xc4\xac\x5c\x6c\x09\xe2\x89\x82\xb1\x76\x4e\x9c\x15\xc1\xdf\x12\xed\x33\xb5\x3b\xba\xa3\xcd\x1a\xe4\x0e\xd1\x00\x70\x61\x1d\xdf\xac\x0f\x13\xbb\xfc\x7b\x86\xaa\x26\x7c\x11\x9e\xa9\xaa\x11\x5e\x99\x0d\xc7\x64\xf7\x0b\x41\xaa\xfd\x42\xf2\x97\xdf\x20\x94\xd3\x51\x3c\x1b\xae\xae\x9f\x26\x59\x03\x51\x12\x6a\x76\x3a\x0f\xca\x1e\x35\x13\x5d\x08\xcc\x4d\xe0\x81\xe5\x28\xc8\x09\x23\x9c\x4a\xed\xc5\xec\xc9\x4f\x9a\x9b\xc1\xe5\x31\xbf\x0c\x44\x59\x98\xcc\x41\xf7\x93\xe5\x17\xb8\x7b\x37\xbf\x81\x3c\x54\xc3\x2f\x9c\x50\x1a\x68\x5c\x50\xc5\xc4\xf7\x07\x1c\x5a\x26\x2a\x50\x7b\xe7\xf3\x0c\x48\x2a\xad\xe3\x0c\x78\x30\x7a\xa2\xa0\x37\xb1\xb2\x6e\x22\x35\xcc\x72\x22\x97\x39\x29\x67\xb5\xde\xc8\x63\x67\x85\xe1\x84\xcb\xbb\x3d\x8f\xe7\xcc\x21\xa9\xc7\xc9\x1e\x34\x24\x06\xb6\x99\xa3\x78\xd4\x4b\x73\x3a\x27\xb5\x0c\x1e\xc2\x7b\xf6\x57\xe5\xdd\x8e\x89\xac\xc1\xa5\xfa\x99\x42\x55\x70\x76\xc2\x40\x65\xd3\xcf\x5c\x81\xac\xc8\xa2\x88\x79\x63\x0c\xe4\x26\xec\x55\x56\x1e\xce\x45\xd1\x51\xfc\x03\x95\xb7\x96\x4f\x89\x15\x04\x5f\xe7\x9e\x42\x52\x2b\x09\x0b\x96\xb5\x6e\x33\xb1\x82\x19\x6e\x67\xf4\xa9\xfa\xd8\xc9\xd4\x92\xbb\xf3\xc5\x0a\xc5\x9e\x46\x73\x27\x95\x7e\x26\xd3\x7f\x5e\x40\x04\x96\x73\x11\x4d\x24\xa3\xb1\x16\x6e\x1e\x79\x5e\x69\x26\x8e\xa4\x5a\x93\x7f\x70\x17\x58\xcc\x22\xbc\x7f\x8d\xcf\x27\xd8\x9c\x82\x1f\x13\x2e\x5b\x56\xa0\x4c\x7a\x6c\xa9\xe0\x64\x4c\x58\xb9\x7c\x67\x9e\x74\xd2\xb2\x07\xfe\x44\xc8\xbf\x95\x17\xf3\x48\x06\x50\x97\x54\xb9\x98\xe5\x50\x7b\xc2\x17\xdc\x89\xf8\x3b\x15\x12\x89\x79\xd2\xfc\x3e\xfd\x41\xee\x3b\x11\x7d\xe6\xc9\xef\x37\x30\xb7\x16\xac\x48\x72\x63\x47\x8d\x99\x1a\x16\x81\xac\x79\x26\x47\x68\xa2\x90\x25\x40\x05\x2f\x62\xa2\xd6\xbc\x15\x9c\x33\xe1\x89\x37\xca\xc5\x99\xf5\x6a\xc1\x4f\xcc\x7a\xa2\x79\xf1\x0c\x14\xfa\x9f\x17\xef\xe1\x96\xbd\xc4\x2b\xde\xcc\xe9\x26\x66\xf9\x72\x71\x2a\xcd\xb7\x69\x97\x5a\x7f\xd2\xd8\xcd\x9b\x36\x7f\x5d\x2f\x26\x55\x28\x16\x68\x28\x46\x6f\x63\xf4\x4c\x17\x2f\x4f\xf4\xcd\xc5\x77\x03\x70\xc4\x10\x68\x9b\x0f\x8e\x38\xa5\xd4\x8d\xf9\x50\x86\x7a\xa2\x1f\xce\x8a\xbf\xc8\x49\x10\x0d\x28\xcd\xda\x94\x8b\x2f\x26\xa3\x02\xed\x07\x3e\x91\xdb\x67\x5a\xb2\xc3\x59\x7e\xfa\xa2\x36\x9f\x9c\xa6\x7f\xe3\x58\x2c\xdd\x65\xa7\xaf\x95\x2a\x92\xa6\xe7\xa4\x62\xea\x07\xcc\x8c\xae\x44\x8b\x56\xa7\xf1\x69\x81\x66\x78\x75\x81\xec\xc4\xb3\xe8\x5c\x5c\x48\x6f\x67\xb0\xb1\x08\x46\x74\xa1\x59\x48\xed\x63\x49\xbf\xb6\x9c\xeb\xa5\x1f\xb8\xf3\xaa\xbf\x38\x39\x0a\x37\x89\x13\xcb\x2e\xd5\x8b\xc9\x07\x1c\xe8\xbc\xca\x8f\x6f\xa8\x0d\x1a\x9d\x1c\xe6\xb9\x0a\xe5\xbf\xc8\xa0\x49\xc9\xae\xbc\xab\x80\x29\xa5\x09\x58\x28\xb3\x60\x70\xb8\xe0\x33\x65\x78\xb9\xe0\x21\x5f\xec\xea\xbb\x0a\xcf\x38\xa1\xaa\xf5\x82\x94\x69\x35\xcb\x62\x64\xe0\xf2\x17\xf4\x91\xb7\x67\xd7\x42\xe0\x5f\xd9\x7e\xfe\x01\x93\xa5\x63\x6e\xd5\xe4\x11\x51\x55\x11\x39\x2a\x68\xb7\x10\x18\xd8\x94\x48\x37\x56\x65\x52\x1a\x0d\xb3\xe6\xd4\xa9\x85\x06\xa8\x27\xc9\xb9\x5a\x86\x15\xeb\xb9\xf0\x03\xbf\xd0\x48\xa4\xdf\xe8\xec\x53\x44\xc0\xaf\x3e\x7e\x9f\x3e\x80\xe7\x8a\x9b\x80\x75\xd4\xab\xd5\xb0\x18\xc5\xef\xf3\x30\xd6\xbd\x79\x21\xa9\x51\xb1\x8b\xf3\x42\x9a\xe3\x62\x8f\xe6\xd5\x5f\x39\x66\x29\xb4\xfa\xc6\x17\x34\xfb\x1d\x07\x9b\x64\xcc\x62\x41\x59\x87\x99\x2f\xb8\xe5\x1b\x21\x2e\x44\x2c\xda\xde\xba\x3a\xb7\x8a\x9f\x27\x89\xd4\x62\x51\x8d\xb3\x4c\xc2\x85\x00\x46\x31\x3a\x80\x97\x4d\x33\x0b\x5e\xf8\xd3\xff\x0f\xae\x84\x08\x82\xab\x93\x63\x38\xd7\xe8\xd8\xcc\x9a\xa5\x41\x7c\x59\xfd\x02\x6a\x5b\x7a\xad\x47\xf2\xb8\x7b\x38\x38\x66\x8d\x61\x30\xc3\x9e\x5e\xa0\x2f\x52\xd1\xad\x6b\xc1\x95\xc8\xea\xca\x05\xd7\xa1\xb0\x67\xdf\x0a\x0e\x5a\x2b\xc5\x1a\xf4\x76\xc0\x5e\x91\x12\xc5\x7d\x70\x37\x5b\xc4\x50\xed\x22\xe1\xbb\x60\xe3\x72\xf2\xc8\xc5\x32\xf6\xcd\xff\xa3\x52\xbe\x8e\xa8\x05\x13\x96\x7d\x39\xd6\x24\x49\x9a\x27\x66\x24\x5e\x26\x09\x49\x91\x5c\x7b\x3f\x16\xb0\x9d\xaa\xb1\xc7\x9a\xc8\xeb\x6c\x56\x78\xb1\x5d\xb5\x09\x6a\x2d\x32\xd7\xf6\x27\x8d\xdd\x42\xe8\xe3\x27\x8f\xe1\x5a\xc0\xd7\x16\x99\x2b\x85\x95\x96\x05\x4a\xa0\xb6\x3c\x45\xf4\xe8\x5f\xa6\x98\x46\x31\x4b\xa3\x95\x43\xd2\xa0\xe1\xaa\xe4\x73\x7e\xd1\x8a\x55\xa4\xca\x58\x74\xb6\x77\x0b\xf0\xb5\x9f\x3e\x4b\x88\xeb\xec\xe5\xbc\x76\xde\x1a\x85\x4f\x17\x81\x9d\x05\xf9\x4e\xee\x2a\x7e\xe1\x45\x48\x3e\x24\xd7\xce\x4d\xeb\x2d\xf7\x02\xbb\xea\x0c\x43\xeb\x40\xae\x72\x6f\x39\x38\x37\xf9\x88\x5c\x07\xc1\x68\xf3\x0f\x39\x2f\x5a\xfb\x23\xd7\x5a\xc3\x62\xa1\xfb\xe6\x2e\x6e\x2c\xb5\x3f\x78\xa0\xfc\xd4\x20\x50\x41\x42\x15\xe4\x62\x11\xc4\x59\x74\x9d\xdc\x21\xba\x91\x2d\x3a\x2b\x39\xd3\xc3\x3a\xb9\x2d\xcd\x8f\xac\x21\xf6\x11\xd2\xc8\xed\xe4\xf0\xdb\xc5\x02\x11\xce\x00\xbb\x60\x29\x73\xaa\x87\x75\xe6\xc4\x69\x62\xa0\x45\xfa\x50\x79\xd1\x2b\x5e\xa3\xb8\xf2\x64\xf1\x0f\x1d\x5d\xaa\x45\x3a\xf3\x17\xe9\x8c\x16\xcb\xdd\xbb\xcb\x2b\x69\xf2\x0b\x3c\xef\x3e\x4d\xf2\xbc\xf3\x72\x5f\xf4\xd0\xd3\x0b\x34\x8d\xd9\x59\x7a\xc1\x34\xb6\x2c\x92\x51\x12\xac\xd8\x15\x7a\xdd\x5c\x6f\xb7\xc0\x14\x6e\x7e\xe6\xf9\xa8\xeb\xcb\x42\xe0\xa4\x2d\x00\x0b\x40\xef\x73\xfa\xc1\x5b\xc9\x71\x6e\x0b\x6a\xa7\x35\x3e\x0d\x1c\x1c\x84\x49\x38\xd1\x82\x5b\xe4\xe5\xc4\x5f\xa0\x02\x6b\xb3\x44\x7c\x28\x0b\x74\x71\x58\xd4\x22\xa9\xca\x56\x2c\x00\x3b\xdb\xeb\x16\x5d\xf3\x37\x1d\x77\x3b\x60\x9b\x6f\xec\x3b\xb3\x3b\x38\x33\xc7\x0e\x07\xa4\xe6\xf4\xb8\x3b\xf4\x4c\xd5\x00\x75\x47\x09\xd6\x62\x4f\xf6\x1d\xb6\x2d\xcb\xbc\x1d\x7a\xa7\xe6\x84\xba\x3b\x13\x1b\x17\xdd\x90\x77\xd4\x68\x35\x08\xdf\x13\x0a\x6a\x1c\x3b\x1c\x90\x2c\x94\x76\x40\x43\x87\x00\xee\x2c\xd1\xea\x74\xba\xfb\xd6\x50\x82\xc9\xcf\x94\x73\xba\x74\xed\x1b\x6a\xdb\x87\x5b\x40\x32\x06\x6d\xce\x3d\xa1\x61\xf7\x0f\xa8\x9b\x33\xfd\x8c\xeb\x8c\xf3\xf3\xee\xf0\x4e\xf2\x4e\xda\x0b\xcf\x12\x8d\xa1\xe4\x6a\xa9\xcb\x92\x13\xa7\x79\x29\x3c\xc0\x24\x11\x76\xfa\x1a\x39\xfb\xee\x0e\x63\x57\xad\x7e\xe6\xee\x14\x24\xde\x59\x76\xc2\xae\xa8\x3b\xca\x4e\x7c\x96\xaf\xb2\x7a\x8f\xa8\xaa\x60\x5b\x8f\xa2\x12\x5a\x74\x37\xc0\xd5\x13\x17\xee\x35\x19\x59\xeb\x0d\xe7\xa4\x77\x79\xff\x70\x22\xed\x30\x9c\xd5\xe1\xfe\xa9\x38\xd0\x1c\x20\x9b\xc4\x67\x21\xa9\x0b\xd3\xc6\xdd\x61\x46\xb3\x05\x72\x87\x5b\x93\x13\x58\xec\xa8\xd6\xf5\x99\xb1\x96\x32\x52\x13\x90\x90\xd1\x1c\xde\x68\x52\x12\x45\xa9\x3b\x93\x32\x6d\xa7\xee\xcc\x2e\xca\x3b\x9c\xef\xbf\x2d\x9c\x6c\xd2\x4d\xc0\xf9\xdc\xcc\x05\x2f\xa7\x22\x3d\xc4\x9e\xba\x35\x11\x0d\xe7\x7a\x3b\x20\xef\x9d\xc2\x46\xf8\x6e\xef\x94\x99\xba\x0b\xed\x9d\xcb\xa6\x69\xe8\x3c\x21\xbb\x9b\xa4\xde\x52\x02\x6c\xef\xc9\x4b\x22\xa2\x53\x21\x23\x84\xbf\x0f\x4c\x6d\xf5\xc6\x1d\xf4\x06\x57\xa7\x23\xc9\x52\x13\x09\x03\xa5\x06\xda\x07\x67\x46\x03\x49\x6d\x9d\xe0\xcd\xce\xe0\x4b\xef\xaa\x91\x54\xa9\x0f\xf8\x45\x39\x9f\xeb\x1e\xac\x08\xa2\x16\x83\x1b\xd9\x1b\x15\xa9\x9d\x1d\x9b\xb9\x07\xcf\xe5\x4f\x0b\xa4\x49\x13\x41\x6b\x5d\xb8\x01\xc8\x16\x6f\xa1\x04\x89\x5e\x0d\x94\x04\xb3\x1f\xfe\x3e\x73\x8f\xa9\x87\x89\x64\xfa\x42\xae\xfb\xe4\x41\x6d\x9a\x50\xea\xc2\x51\x5a\x3b\x2a\x5d\x6c\x32\x28\xec\x48\xb6\x19\x4e\x84\xbb\xc3\x13\x6a\x0d\x13\x0d\xd7\x27\x27\x67\xdd\x53\x67\x68\x96\x9a\x94\x1d\x26\x62\xf1\xb6\x2c\xcc\xbf\x27\x72\x34\xd7\xa1\x9c\xac\x43\x90\x77\x80\xc5\x58\x6e\x81\x5b\xc7\x33\x83\x7c\x9c\xcb\xfb\x00\xee\x52\x4e\x9c\xba\x2f\x30\xa5\x2e\xbe\xfb\x22\xd1\x9a\x86\x95\x33\xab\x51\xb1\x8a\x85\x8e\xa7\x9d\x91\x9d\x9f\xb5\x62\xe0\xe6\x67\x71\x76\x2c\xa6\xd7\x66\x67\xd2\x51\x8d\x89\xe9\xb5\x8a\x4f\x06\xa4\xd3\x72\x00\xfb\x8e\x6c\x5a\x06\x86\x3b\x4c\x7f\xce\xde\xb9\x1f\xd9\xa3\x66\x1a\x21\x98\x6b\x7c\x7e\xe0\xa8\x45\x23\x43\x32\x4b\xb8\x49\x38\x1f\x79\x1a\xe8\x20\x35\x3e\x3f\x50\x9b\x12\x6e\x12\x47\x87\x80\xdd\x7e\x92\x08\x3f\x37\xfc\xaf\xf7\xa1\xce\x53\x05\xc2\xd8\x4f\x82\x76\xcf\x34\x6c\x83\x0e\x0e\xde\x4f\xae\x84\x66\xe5\xe4\xf5\xec\xd3\xc2\x8e\x0f\x34\x4d\x2c\x2d\xeb\x7d\xca\xf4\x5b\xf6\xa8\xda\x61\x5c\x74\xa2\xc7\xfd\x4c\x48\xe6\x16\x38\x26\x75\x79\xc1\x54\xa3\x2b\xe4\xfe\xe2\xc6\xe6\x00\xba\x1d\x65\xc3\xd6\xe7\x99\x63\xd4\xc2\x50\x53\xe7\xe0\x81\xfd\xc2\x81\xec\x95\x45\x0a\xec\xd5\xff\x14\x6f\xb4\xbf\x80\x31\xec\x58\xb7\xdf\x84\x56\xa2\xf6\x66\xc1\x54\x75\xf6\xc2\xbf\x6a\xab\xc3\x8e\x1a\xb0\x4e\x30\xbf\xdf\x48\xd6\x30\xfd\x3f\x8f\x51\xa9\x47\xf7\x3b\x67\x5c\x6b\x0a\xc5\xdf\x07\x14\xdd\xbc\x56\xf9\x99\x50\x4d\x58\x7e\xbf\x39\x3e\x77\x81\x82\x1a\xe6\x5c\xb8\xaf\x3b\x1d\xde\x9e\xe8\xd0\x4c\xf0\xf0\x0a\x63\xe4\xf6\xd0\xdf\x4b\x3d\x3c\x08\x8d\xf3\x49\xf8\x10\xc2\x6a\x12\x90\x02\xfc\xc3\xb6\x4f\x2e\x89\x1b\x4c\xc4\x2a\x1a\x99\x64\xc3\x79\xba\x76\x84\x82\x3a\xb5\xd3\xf1\xe2\xcd\xee\x04\x7c\x07\x1c\xa9\xdc\xe5\xf1\xc3\x3c\x0f\x3f\x53\x75\x29\x99\x73\xd0\xdb\x5d\x52\xee\x40\xf2\x31\x67\xc9\x38\xe0\xdb\xee\xcc\x4d\x07\x4a\x64\x38\x1f\xdf\xb1\x51\x4d\x29\x02\x90\x8a\x2c\x1c\x78\x73\xc0\xa2\xd9\x2c\x72\x0e\xa4\x1a\xb3\x66\xe3\x80\x0f\x94\xf9\xf0\xd8\x88\xc9\xb4\x35\x0e\x26\x08\x97\xb2\xfd\xa0\x4d\xd2\xb1\x13\x47\x79\xcf\x55\x27\x7e\x3d\x0a\x73\x83\xfa\x39\x07\xed\x0f\xb0\x9d\x87\x9f\x93\xb9\xdc\x05\x8f\x07\x29\x57\x8f\xc2\x0b\xb2\x24\xc4\xc1\xd2\xad\x1e\x77\xc9\xa5\xd3\x0f\x95\x57\x28\x6d\xc8\x23\x75\x88\xd5\x6f\x60\xc7\xea\x6c\x3f\x2a\xb5\x73\x32\x51\x1f\x28\xe1\xef\x24\x6e\x47\xe5\x62\xba\x01\x24\xa0\xd2\x26\x3a\x6a\xde\x88\xdc\x25\xc1\xa1\x54\xd9\x07\x35\x84\x45\xfb\xec\x80\xe1\xd3\xb7\xac\x03\x60\xee\xb3\x9c\x2d\xa7\xce\x2d\x4c\x58\xfb\xdc\x00\x2a\x01\x68\xe3\x1f\xf0\x58\x77\x24\xcc\x81\x14\xe6\xce\xe2\x74\x20\x70\x52\x35\x1b\xe3\xa0\x03\xbb\x65\xf1\xd1\x90\xae\x51\x92\xe3\xe8\xd8\x96\xba\x89\x1c\xd0\x0e\x7e\x1a\x80\xc3\xbb\x7d\xd1\x0e\x66\x40\xdd\xcc\xb1\x88\xa3\xb4\xc3\xdb\x41\x8f\xf8\xf2\xf9\x01\x26\x6c\x4f\x7b\x07\x89\xda\xd6\x07\xd3\x95\xfb\xf8\x38\x06\x05\x81\xd4\x85\xc7\xe0\x2c\x6a\x12\x32\x72\x71\xf9\x0b\x9c\x27\x5e\x87\xc1\x4b\x81\x59\x74\xec\x5c\x7b\x77\x8a\x79\x9b\x7e\x81\x40\xaf\xf9\x05\x6c\x9b\xe9\x67\x60\x01\x5b\xbd\x0f\xba\x5d\xf9\x10\x3b\x82\x05\x9a\xbd\x4f\x82\xc2\x42\x13\x11\x1c\x86\xd6\x8e\x29\x4f\x1d\x7c\x7c\x04\x8f\x6a\x4f\x36\x54\x88\x8e\x1a\x3d\x98\xb5\xd4\x19\xc5\x8f\x99\x3c\x2d\x22\x26\xc3\x0f\xfc\x42\xe0\x3e\xe3\x67\x6e\xc5\xfe\xa7\xdc\xdd\x07\x9c\xb8\xec\x3f\x7e\x4c\x2c\x9d\xb9\x71\x12\x31\x49\xe8\x1f\xc8\xa1\x6e\x67\xec\x23\x51\x9e\xf4\x58\xc7\xe2\x2e\x6d\xfe\x01\x12\xd6\x4b\x89\x24\xeb\xd5\xfc\xb8\x50\x64\x54\x78\xfa\x40\x11\x91\xb2\xe9\x1c\x39\x98\xfb\xcc\x53\x42\x54\xf7\x79\x06\x24\x93\x0e\xf5\x80\x69\xd8\x61\x01\x07\x73\xb0\x5b\x99\x7c\x2c\xb2\x86\x96\x6d\x71\xd0\x6e\x00\x9e\x08\x9f\x06\x30\x66\x6f\xd9\x9d\xf8\xdb\x12\x79\xcf\xb4\x46\x7a\xe6\x3d\xc5\xa7\x0a\xf2\xa6\x7d\x84\xc0\x4e\xfd\x82\x05\x2a\xd2\xa6\x39\x92\xf6\x80\x87\x58\x33\xbc\x39\x8e\xec\x53\x4d\x32\xcb\xbb\xf9\x9b\x66\x60\x07\x3c\x1d\xf0\xa3\x77\x9a\x93\xe3\xe0\xb6\x5d\x6e\x81\x13\xed\xa3\xea\xa0\x68\xd2\x3c\x1c\xc4\x5c\x9f\x26\xa8\x07\xf3\x5a\x41\x63\xe8\x03\xfc\x38\x71\xd9\xf7\x4c\x9f\x24\x4a\x17\x91\xe3\x64\x4c\xb6\xc6\xcd\xbc\x6a\x4e\x56\x7f\xbc\x48\x72\xfc\x3e\xcf\x34\xb9\x8b\x84\x93\x77\x61\xf3\x3b\x90\xe4\x47\xbc\xb1\xf8\x89\x4b\x11\x1c\x27\x59\xdc\x1f\x60\xf5\x97\x49\x20\x47\x6b\x5a\xa0\x3f\x9c\x55\x1a\x8a\x83\xfa\x42\x27\xb0\x3f\x2e\xca\x74\x9f\x9f\x57\x4a\x23\xb7\x91\x44\x68\x22\x12\x3c\xfa\x28\x7a\xc1\xe2\xb0\xc7\xe6\x41\x85\xa1\x79\x12\xea\x3f\x9b\x1a\x8f\x17\xff\x0d\x7b\xe0\x1c\x37\xe7\x49\x34\xdd\x74\x90\x30\x8b\xbd\x78\x6f\xd8\x7f\xf3\xb8\x93\x24\x11\xfd\xc2\xb9\xe6\x7c\xb6\x07\x9c\xc8\x66\x95\xa6\xe3\x78\xa8\x8a\xf3\xc9\xf2\xd4\xb7\x49\x29\xc1\x8e\x07\x34\x58\x14\x3d\x81\x67\x75\xf9\x90\x26\xef\x8b\x87\x6c\x6f\xa9\x9d\xf0\x4c\x42\xf9\xfc\xfd\x40\xf5\xd4\xf3\x46\xa1\xbc\xe9\x07\x72\x54\xf8\x87\x4a\xb2\x97\x7e\xa0\xc4\xd4\x01\x77\xd2\xf0\xeb\x03\xed\xfc\x81\xce\xcf\x17\x74\x2d\x90\xa0\x3f\x7f\xd4\xa4\x37\xbf\x41\x2c\x1c\x7e\x03\xcb\xb7\xf9\x19\x37\x2a\xab\x2e\xce\x1f\x37\xb0\x0e\xc5\xf3\xc5\x79\xc3\xde\xaf\xe7\x8b\xf3\x9a\x33\xe9\x9d\x1b\x27\xd7\xcf\x0d\xef\xab\x87\x8d\x93\xeb\xef\x29\xe7\x85\x3c\xce\x8d\x2c\xa6\xd3\xe7\x7c\x71\x61\x38\x36\xf9\x7c\x71\xe1\xb0\x5e\xfc\x24\x2c\xb4\x9f\xd0\x99\xd9\xd9\x34\x71\x85\x24\xa9\xc1\x42\xb1\xa6\x63\xfa\x2c\xbc\xf6\x75\x7f\x41\x22\xfd\x42\x72\xc0\x9f\x0e\xa3\xf3\x05\x8d\xc3\x59\x2a\xce\x17\x33\x0e\xeb\xa7\xcf\x92\xab\xe0\x17\x68\xd0\x95\x94\x3c\x13\x22\x0a\x05\x9c\x95\x9e\x6b\xba\xfa\x9e\x89\x11\x85\x24\xce\x9a\x63\xd0\x44\x57\x8c\x41\xda\x96\xb3\xc2\x3a\x30\xdc\x07\x96\xbe\xb8\x45\x14\x70\xaf\xfe\xff\xc5\x5f\x43\xe7\xdf\xd9\xc0\xd2\x12\x79\x67\x1a\x95\x9b\x7f\xc0\x34\x4b\x79\x77\x36\xca\x44\xed\xb3\xb3\x91\x81\x25\xeb\x4f\xda\x88\xeb\xe6\x1f\x4e\x34\xa1\x61\xa7\xfe\x4f\x13\xd5\xb0\xf4\xba\x16\x9d\x9d\x34\xe9\xff\x9e\xf3\x26\xa2\x3b\xb8\xaf\xf8\x99\x4b\x2f\xb4\x74\x76\xec\x7d\xcf\x2b\xd3\xe4\x57\xf3\x67\x9f\x68\x41\xf3\xdc\x29\x23\xbb\x69\x20\x62\xd3\x71\x73\xf6\xdc\x43\xfe\x01\x54\x7b\x8b\x0c\x0a\x07\x4d\x1c\xb2\xde\x4f\xd7\x34\x38\xe9\xcd\x67\xa8\x70\x0e\x0c\xc3\xd2\x63\x40\x8a\xea\x36\x78\x0e\x4a\xf2\xee\x26\x17\x9b\x14\x95\x03\x33\xab\x6b\xcb\x39\x78\x4d\xf9\xfc\x40\xfc\xad\xb3\xfe\xa4\x7b\x5f\xf5\x26\x88\xdc\x67\x9a\x0a\x26\x67\x73\xe0\xd5\xf9\x02\xcb\x6a\x47\xb4\x33\x48\xa6\x86\x91\x96\xe7\xcf\x0f\x10\x50\x76\xda\x39\x83\x5b\x63\xba\x53\xea\x7c\xcc\xd6\x88\xa6\x74\xf0\xc6\x49\xcb\xb2\xc7\x31\x59\x1b\x59\x53\x35\xc1\x95\x66\xeb\x99\x4c\xa8\x71\xb2\x1a\xae\x33\xb9\x9e\x13\x25\x03\x3e\x2f\x20\xbc\xcc\xa3\x9a\x28\x73\x60\xb9\x3c\x13\x70\xeb\x85\x85\xf5\x15\x28\x3a\x17\x22\x86\x85\x36\xce\x8c\x20\xf8\xbc\xd0\x51\x2e\x44\x0c\x02\xa4\xe8\xf8\xec\x73\x01\xd0\x98\x02\x14\x97\x73\x86\x95\x73\xf1\xf8\x31\x4f\x42\x1f\x68\xb4\x7b\xee\x74\x2a\x12\xea\x3a\x77\x48\x71\x8b\xc8\xbd\xe0\x59\x3d\xee\x64\x38\xbf\x8f\x12\xd5\x3a\xe6\xcf\x9d\x58\xc2\x32\x6d\x67\xf6\x06\xf1\xc6\x8e\x6d\xe3\x03\x71\x87\x0c\x6c\x7e\x1f\xd2\xc7\x42\x7d\xbf\xf1\xbf\xa6\xe4\xe0\xad\xd9\x0d\x1e\xa4\x58\x43\x3a\x48\xb1\x56\xed\xc0\x3a\xfb\xec\x3b\x80\x1b\x04\x65\xce\x83\xd6\x16\x6f\x91\x83\xe7\x8c\xee\x0c\x27\xb3\xed\x5a\xe5\x71\x1e\xa0\xd1\xa7\x27\x92\x62\x7c\x58\x91\x39\xde\xac\x54\x39\x4f\x2c\xbc\xcf\xca\x13\x34\xfa\x58\x39\x09\xc9\x2c\xbf\x4e\x6c\x10\x9f\x5c\x67\xf2\xa2\xa8\x06\x0a\x5c\x9f\x0f\x2e\xb6\xf0\x27\x1b\xd1\x79\xc2\xf1\xcb\x73\x96\x36\x68\x33\xce\x45\x02\x35\xa2\x74\x0c\xf4\x16\x67\x42\x8c\x4d\xf7\xa4\xf3\xa2\x86\xdd\x0b\xf7\xa2\xca\xfa\x99\xc5\x04\x95\xc3\x6d\x82\x13\x2c\x24\x12\x64\x0a\xf9\x9e\x17\x57\xc6\xf3\x7e\x41\x56\x79\x43\x5e\xbc\xf2\xfa\xe8\xba\x6e\xec\x50\xd3\x00\xc3\x82\xa0\xef\xc9\x22\xbd\x06\x46\x37\x87\xa9\xef\xe9\x5c\x68\xf3\xdf\x89\x50\x07\xdf\x9c\xce\x54\x32\xea\x42\x70\xde\x44\x52\xd2\x14\x9d\x37\x64\xba\x17\xea\x61\x17\xea\xf2\xc1\x06\xf2\x98\x1e\x1e\x86\x16\xd9\x04\x9d\xe6\x1d\x9a\x9c\x7d\xbc\x3e\x00\x11\x52\x0a\x9d\x19\xc7\xe0\x0e\xa8\x8f\xff\x47\xc0\x95\x06\xe8\xa6\x67\x10\x34\xfc\x4c\x7c\x59\xfd\x03\x8a\x84\x69\x21\x2f\x54\x15\x34\x70\xbb\x7e\x24\xb0\xea\x99\x04\x85\x9e\x51\x29\x40\xac\x79\xfd\x10\xf6\xbe\xb9\xfd\x64\x36\xfd\xb0\xc1\x4d\x55\x73\x7a\x31\x06\x62\xd3\x8d\xe6\x62\xf5\x02\x07\xee\x5e\x1b\xd5\xf7\x02\xc9\xd7\xc6\xf2\xef\x6e\x02\xfb\x67\xf8\x03\x0a\xf7\xe5\x1f\x02\xae\x73\xfe\x60\x62\x90\x6e\x90\x5e\x6b\x9a\x45\x44\x6e\xda\x1e\x7e\x41\x47\xe9\x60\xb1\x6b\x03\x6b\x0e\x93\x4c\xd6\xd4\x61\x70\x6d\x3c\xfc\x25\xdb\x2f\xb8\x35\x3a\x31\xc6\x85\xa2\x86\x4e\x03\x78\x21\x73\xb0\x53\xad\x5c\x25\xc7\x2c\x92\x4b\x8e\xc9\x2d\x12\x70\x88\xdd\x2f\x9a\xbb\xc5\x1a\xd7\x8b\x2f\xeb\x87\xc8\x74\x73\x5c\x7e\x01\xc2\x56\xe7\xcd\xf5\xe2\xcf\x66\x40\x72\x41\x65\x69\x9f\x8e\xab\xf2\xf6\xa2\xe3\xe1\xaa\x60\x2e\xaf\x4b\x26\x8f\x13\x45\x15\xeb\xe2\x31\x40\x41\xe9\xfa\xb9\x17\x7c\x22\x9d\x81\xff\xaa\xbc\x50\x79\x96\x2a\xb6\x97\xa7\x95\xa9\xe0\x1c\x44\x71\xb1\x28\x93\xf5\x89\x17\xc2\x40\xab\xf6\xf8\xc5\x9a\x4c\x3f\x3f\x37\xac\x83\x1b\x20\xeb\x88\xe4\x06\x76\xff\xb4\x47\x20\xa8\x13\xec\x6a\x28\x98\x2c\xd9\x79\x35\x9c\x68\xba\xb0\x5f\x30\x5e\x3b\x98\xf1\x62\xf5\x85\xf1\xe9\x91\xb3\xae\x59\x26\x98\x95\x97\xed\xc5\xcc\x70\x3a\xa0\x2e\xba\x3f\x3a\x28\xf0\xea\xc9\x1a\x5a\xd8\x4e\x17\x12\x01\xea\x8b\x68\x56\x57\xa7\x8b\xd9\xe0\x1c\x36\x78\x25\x7a\xfd\xbc\x41\x08\xde\xdc\x2b\x86\x35\xdd\x07\x3d\x79\x9b\x9b\x48\x96\xff\x93\x1f\xf7\x05\x87\x49\xdf\xa5\xaf\x17\xeb\x56\x9b\xa9\x2f\xa4\x29\x76\x18\xd1\x35\x70\x8c\x7b\x44\x34\x95\x3b\xce\xf1\x62\x09\x09\x4f\xfb\xc8\x21\x6a\x9d\x06\xce\x9b\xf0\x0b\x39\x42\xad\xf4\xc0\x3a\x98\xf9\x22\x79\x4b\x5f\x04\x8a\xeb\x7b\xa5\x83\xdc\xae\x06\x02\x34\x7a\x19\x32\x99\x9b\x58\x27\x06\xb4\x49\x9a\xe3\xa0\x68\xb7\x6c\xa6\xfa\x74\xfa\x99\x8e\x5a\x9f\x1e\xb8\xa3\x7f\xee\x02\x50\x44\xb0\xf8\xa2\x7e\xd5\x95\x31\xaf\x99\xcc\xa2\x4e\x27\xc1\xb9\xe5\xf7\xe4\x15\xd2\x5b\x68\xd2\x20\xeb\x23\x82\x69\x43\xac\x9d\xbe\x98\x0a\xb9\x76\xb7\x01\x50\x65\xc2\x67\xf2\xb8\xe8\x9c\xe4\x69\x51\xb1\x18\xe5\x61\x09\xbd\xb8\xbe\x6a\x91\x5a\x52\xc7\x0c\x5e\xcc\x84\x6c\xbf\xb8\x6b\xe5\x55\x46\xcf\xaf\xec\x70\xec\xec\xb5\xc8\xb0\x9a\x3b\xb8\x51\x3a\x29\xc6\xc5\x88\x9a\x8f\x64\x48\xb4\x6c\x21\xff\xa2\xe5\x61\xc7\xf3\x6b\x87\xd3\xb7\x0f\x2e\x82\x63\x0b\xe0\x1d\x63\x30\x7f\xec\xf4\x95\xb6\xa8\xd8\x73\x0c\xfe\x82\x3c\x28\xb8\x70\x11\x0e\xfb\xe8\x43\x40\xcd\x47\xbc\x21\x9e\xc6\x17\xc0\x8b\xf0\xd8\x02\x74\xc7\x3c\xfb\x08\x78\xe1\xf2\xb0\x27\xfc\x85\xc0\x5b\x6b\x59\x2e\xa4\x9c\x73\xa6\x86\x2b\x63\x6b\x2c\xfe\x0e\x24\x83\x30\x81\x07\xc4\xe3\x72\x83\x84\x4c\x02\x38\xd7\x01\x43\xad\x4f\xf3\x63\x82\x02\xf7\x40\x65\x94\x37\xea\x01\xfc\x30\xfd\xfc\xf2\xb8\xed\x3d\x17\xd1\xb6\x67\x1d\xc6\x7d\x1b\x42\x2e\x78\x79\x1a\xe4\x5d\x27\xb7\xad\x20\xd6\xc5\xda\x59\xbe\x02\x5c\x27\x34\x20\x26\x11\x60\xda\x99\xd2\x2e\xd8\xe6\x9b\x19\x83\x91\x36\xb6\xb5\x5c\x27\x71\xa5\x48\x66\x69\x2c\x27\xb0\xbf\x2e\x48\x33\xcf\x12\x22\x6d\x9a\xd4\x0d\xd7\x8b\x96\x87\x4d\xed\x17\x0b\x57\x78\xd9\x2f\x32\x8a\xcf\xbd\x8b\xb3\x28\x92\x59\x8e\xd3\x6e\xcd\x17\xca\x71\x3a\x0f\xe4\x45\xac\xfc\x21\xf1\x42\x03\x9a\x83\x17\x2a\x0f\x3b\xdd\x5f\x2f\x34\xae\x9f\x39\xb9\x37\xfc\xaf\xef\xe9\xcf\xe9\x80\xc7\x0b\xb9\x4f\x6a\x75\x8f\x77\xc3\x17\x7e\x81\x62\xc4\x60\x20\xd1\xb5\x25\x0f\x42\x75\xec\x53\x7c\x21\x90\xd8\x39\xdd\x2f\x86\xee\xd8\x29\xe0\x4a\xb4\x6d\x29\x81\x82\x5f\x9f\x85\x40\x60\x71\x29\xdb\xdf\xce\x20\x46\xfe\x58\x28\x3d\xc4\x0e\x16\x63\x00\xef\x8e\x33\xb8\x1e\x78\xa7\x1b\xc3\x31\x3f\x9d\x4d\x35\xd7\x93\x14\xfb\x8b\x03\x2d\xfc\xfb\xe2\x46\xcd\x8b\x62\x17\x80\x1b\x0a\x60\x67\xcb\xbd\x81\xbe\x8b\xf6\xdf\xfd\x03\xa7\x68\x83\xde\x3f\x7a\x5f\x89\xe8\xfb\xb7\xf0\x82\x1b\xd8\xf1\xbc\xe9\x19\x14\x88\xa2\x7b\xcb\xed\xa1\x0f\xd2\xb5\x73\xfa\x07\x8c\xda\x24\x6e\x74\xe8\x9b\x6e\x22\xb9\xd3\x3f\x1c\xd0\x53\xb8\x85\x93\xa3\x5c\xfa\x81\xb2\x76\xf8\x07\xd8\xdd\x96\xfb\x80\xa8\xd5\x4a\xdf\xa9\xbb\x95\x54\xb8\x0b\xf8\x51\x82\xeb\x2e\x24\xd2\xff\x57\x3c\x17\x3d\x0f\x04\x68\xf8\x99\x34\x6b\x8b\xde\x85\x9e\xdb\x52\x14\xdc\x4c\xa4\xec\x79\x61\x60\x72\x15\xff\xde\x84\xcb\x0e\x97\xbc\xe9\x2c\xba\xfc\x4c\x75\xad\xb0\xe2\x5d\x49\xb4\xba\x00\x3c\xb6\x83\xea\x0d\x78\x5c\x1c\xd4\x79\x03\x1f\xdb\xdf\xf8\xae\x74\x53\x0b\xb7\x10\x78\x41\xf3\x54\xb1\xfa\xc5\x3d\x62\xf5\x75\x6f\xb9\x2b\x56\x5f\x9b\xf4\xa6\x72\x77\xf9\x7b\xa8\x2e\x74\xb2\xdf\xf0\x06\x2d\x0e\x22\xbd\x1b\x22\x5d\x4d\x11\x94\xb9\xf6\x6f\xbe\xd3\xfd\x53\xc0\xf1\x4e\xed\x6e\xb8\x85\x81\x2f\x34\x4b\xe9\x31\xe0\x69\x43\xc4\x50\xb3\xee\xf5\x6e\x94\x65\x7e\x3e\xa8\xdc\xd0\x33\x82\x6f\x74\x8a\xde\x28\x7a\x5a\x1c\xdf\x79\x77\xee\x32\x4f\x4b\x47\xe6\x34\x0f\xbb\x37\x94\x0e\xd6\xb0\x3b\xc3\x4c\xfc\x3e\x68\x16\xb6\xb8\x3b\x91\x9a\x87\xdd\x21\x4e\x05\xea\xef\x0e\x71\x6a\x12\x7b\xce\xa3\x7a\x7c\xf1\x6d\x38\xeb\xfb\x3d\x68\x7c\x17\x58\xb8\x13\xd0\x9a\x39\x06\xe7\xcd\x2f\x70\xe9\x45\xf3\xc0\xd2\x57\xbf\x8f\xa5\xaf\xee\xf1\x78\x7b\x34\xfb\x0e\xa8\x27\x85\xa8\xef\x54\xec\x2e\xff\x90\xec\xab\x16\x01\x80\x5d\xa0\xf9\x0e\xde\x33\x3e\x3f\xe4\x5a\xfb\x07\xda\x43\x04\x58\xef\x20\x91\x9a\xb7\x00\x3f\x7a\xe2\xe3\xc4\xb3\xdf\xc7\xbc\x0a\xef\xdc\xc1\x6b\xb3\xb7\x54\x40\x50\x78\xa5\x18\x0b\xfe\xe1\xe0\x89\x7b\xb3\xe5\x23\xf4\xbc\x76\xc4\xbb\xe7\xfe\xdf\xff\x3e\x78\xe5\x9e\xa0\x40\x87\xff\xcd\x58\x70\x9b\xdb\xef\x89\xa5\x15\xde\xb8\x11\x30\xf4\xd9\x01\xd0\xea\xda\x8d\xe7\x4e\x07\x81\xf5\x27\x9b\xd0\xbd\x20\x12\x74\x09\xb9\x57\xb2\x81\x7f\x00\x1b\x78\xd9\x32\x5c\xc8\xbc\xcc\x24\x32\x55\x73\xfe\x40\x68\xb8\xe6\xc5\x53\x81\x1d\x04\x67\x1e\xca\x08\x6d\x9f\xa7\x72\x7b\xe9\xc2\xf9\x30\xf9\x65\xd5\x4d\xe8\xa9\x84\xf3\x9f\x1f\xb8\x2c\x12\xaf\x4f\xca\x0d\xed\x98\x87\x15\x7a\x1c\xf5\xff\xb0\x42\x8f\xed\xd2\x0f\x2e\xda\xf6\x21\x78\x1a\x81\xa3\xff\xa7\x16\x55\xc0\xee\x81\xcd\xc6\x96\xf1\xa7\xa3\x01\x5d\x53\x1e\x58\x64\x6c\x82\x7e\x3a\x5d\xb2\x3c\xae\xce\x63\x49\xbb\xf4\xe9\x39\x2e\xfd\x00\x8b\x4b\xb7\xd9\xfa\x19\x04\x31\x1e\xc6\xe0\xbd\xa4\xfa\x07\x6c\xcb\xf0\x17\x28\xbf\xa2\x6d\xfa\xb0\x0e\xe1\xe7\x7d\x1e\x85\xd3\x2f\xdc\x30\xf0\x6b\x18\xc1\x34\xe9\xfa\x3f\xc8\xe1\xd3\x2f\x10\x4c\x6a\x9c\x01\x2b\x81\xa7\x1e\x71\x7d\xcd\xeb\x1b\x98\x17\x09\xe4\xe7\xdd\x93\x9f\x68\x91\x67\x82\x05\xb5\x89\x1f\xee\x18\x9d\x39\xcf\x44\xda\x75\x1d\xb5\xcf\x04\x47\x6a\x4b\x3e\x93\x33\xa0\xfe\x26\xfb\x13\x7d\xef\x8e\xab\x8e\xf4\x7a\x66\xae\x8b\x3f\xc0\x16\x34\x03\x4f\x1e\xb4\xd5\x14\x20\xc7\xe2\xa7\xc7\xe4\x36\x75\x41\x2f\x9d\x2a\x59\xf6\xac\x5c\x48\xff\x00\xe6\x91\x98\x78\x16\xc1\xa8\x20\xf7\x83\xfb\x65\xd8\x90\xf0\x2c\x6c\x13\xf3\x06\x0b\x10\xd6\xe5\x17\x20\xab\xcc\x5e\x0b\x82\xc2\x9b\x64\x87\x43\xae\xf9\x77\xe7\xcd\x7b\xfa\x07\x4c\xb4\x79\x8b\xf9\x18\x7e\x6e\x20\x79\x4d\x13\x85\xb8\xbd\xd0\xb1\xf6\xb0\x44\x4e\xf1\xff\x84\x9f\xd5\x3d\x90\xd9\xbc\xa9\x76\xd2\xe8\x67\x88\x53\xf3\x16\xac\x27\xbe\x5f\x3e\x47\x63\x8b\x9a\xb7\x03\x8b\xef\x31\xf0\x7a\x67\x6e\x86\x79\xc5\xe2\xf7\x39\xb8\xe7\x24\x7f\x1f\x38\x6b\xfb\x98\x7b\x60\x2c\xe9\x76\x1c\x78\x4e\x1e\xde\xba\x1c\x3d\xc8\x31\x5e\xcd\x7f\x27\x45\x8b\x77\x08\x7d\x66\x1c\xb7\xf7\x9c\x58\xba\xe5\x26\xe1\xc9\x2c\x74\xf9\xc0\x97\xba\xdb\xf9\xe0\x61\x46\x70\xa7\xb8\x7a\x2e\x6a\x0d\x35\xcc\x0b\xec\x63\x6e\xe1\x05\x4e\x87\xc4\x73\xd1\xb3\x52\xc7\xc8\x73\xe5\xb0\xf4\x05\x6c\x0f\x4e\x6b\xf1\xf0\x82\x65\x6e\xc2\x7d\x6a\xda\xaf\xf1\xb9\x69\x5a\xfb\xf9\x0d\x4c\xbd\xd7\xf2\xce\x61\x6b\x98\x70\x89\xb1\xfe\xf7\xc1\x75\xa9\x8f\x3f\xd5\x17\x7f\x90\xa4\xa9\x5b\xd9\xfb\xc0\x5f\xc6\xd5\x7a\x1e\xb8\xcb\xcc\xe6\x2d\x05\x77\x19\x6b\x8f\x9f\xf7\x36\x34\xac\x96\x7c\x50\xc8\xa6\xdb\x72\xf0\x3c\xc8\x5d\x25\x98\xf6\x3c\x5c\x96\xec\x71\xfe\xde\xcb\x51\x55\x92\x84\xf9\x7b\xef\x46\x4d\xa6\x90\xf9\x43\xec\x5c\xd3\xa5\x76\xfe\x7e\x28\xfa\xf5\x0f\x5f\xcf\xdf\x7b\x79\x1a\x52\xf9\xcd\x1f\x4c\x17\xf2\x74\x9a\x3f\x98\x2e\xca\xa7\x03\x9a\xd5\x96\x7f\x98\x1c\xa3\xbf\xd8\xf9\x83\x9b\x3c\xd0\x84\x5f\x00\x7f\x7f\x68\xe4\x91\xb2\xfc\x01\x79\x6d\xf3\x1b\x14\x5e\x4d\x4d\xbc\x37\xb2\xa2\x24\x2a\xf3\xb7\x51\x76\x6d\xa2\x0a\x17\x32\x29\xfd\xe6\x6f\xe3\xb5\xa1\xf9\x87\xc6\x2f\xd4\xe9\x46\x9b\x8d\xbb\x18\x1c\x86\xbf\x08\xe8\x7d\x44\x14\xec\x17\x4a\x86\x35\x7f\xcc\x1a\xa5\x18\xd2\xf9\x63\x3d\xe7\xb1\xd4\x24\x2e\x64\xe5\xa7\xb5\x28\x49\x83\x5f\x60\x71\x26\xaf\xce\x7b\xe3\x1a\xca\x9f\x35\x7f\xbc\x60\xb5\x9f\xfa\x60\xa6\xc9\xd2\xd4\x26\x82\xed\x66\xfb\x89\x43\x78\x61\x1a\x9a\x19\x7a\xbb\x94\xae\x36\x2b\xcd\x90\x4d\x03\x41\x2d\x42\x1d\xbf\xf3\x57\x53\xcc\xbb\x0f\xea\xa3\x96\xc8\xac\xc9\xb6\x22\x0b\x77\xa8\xe2\xe5\x60\x6a\xca\x9f\xf9\x16\xb9\x29\xe5\xfe\x3b\x7f\x95\xe3\xe8\xfe\xe1\x41\x0b\x7a\x66\x32\x71\x05\x4b\xce\x5f\xcb\xcd\x2f\xb2\x5b\x0e\x4c\x74\xe3\x16\x55\x3c\xbb\xef\x1d\x69\x14\xaf\x78\x07\x8f\x78\xb2\xe1\xb3\x2c\xe7\x85\xf9\xeb\x9c\x7c\x0d\xaa\xf3\x7b\x8d\xa1\xc3\x74\x6a\xb6\xed\x24\x59\x04\xc1\xc7\xb9\xff\x3e\x3f\x6c\x50\xa7\x6a\x4c\x83\x04\x68\x5e\x47\x8e\x40\x14\x8f\xe4\x41\xbf\x01\x92\x8a\xd6\x6e\x90\xe7\x4c\xf3\x80\xf9\xa9\xaa\xcb\x17\x19\x0d\x5d\xf3\xe6\x2f\x72\xa3\xa8\x45\x28\xe4\x75\x79\x9d\x3f\x28\xe4\x75\xbd\x9e\xbf\x80\x32\xd3\x3d\x06\x45\xec\xe7\x07\xcc\x72\x11\xcd\x2f\x94\x2a\x8a\xa6\x98\x3f\x5c\x67\x74\x0d\x9c\x3f\xf8\xa9\xcc\x66\x9e\xc6\xfd\x45\xd7\xbe\xf9\x0b\x38\x4f\x99\x61\x71\x7d\xd1\xe9\x37\x7f\xa9\x9e\xef\xfa\x60\x42\x84\x15\x8d\xf9\x05\x5f\x43\x7e\x92\xf3\x37\x49\xa1\x86\x8c\x5c\x57\x75\x8a\xa2\xc9\x1b\xd8\x72\x83\xeb\xbf\xff\xd5\x32\x35\x07\x2f\xfa\x6a\xb2\x6f\xcd\xdf\x0b\xbe\xaa\xe0\xe8\xfc\xcd\xdc\xe8\x22\x11\x9a\x79\x81\xe6\xf9\x83\x66\xbe\x2d\x35\x08\x27\x14\xe5\xa1\x99\x3f\xea\xe5\x9b\xb9\x1d\x40\xea\x45\xcc\xff\xf7\x31\x34\x7f\xd0\xda\xeb\x1e\x31\x7f\x44\x5d\xcd\xbb\x0f\x6a\xfb\x6e\xc1\xb4\x28\x5f\xbd\xc8\x4c\x7b\xe5\x19\xdc\xa1\xb9\xf4\x0c\x12\x65\x35\x6f\x1d\x64\xc8\x6c\xdd\x1f\x50\x70\x99\x8d\xa8\xb6\x6f\xde\x7c\x4c\x97\x30\x45\xc3\x8b\xbb\xea\x67\xca\x90\x2d\xa1\xff\xcc\xa9\x3b\xc4\x6b\xf5\x07\x60\x93\xea\x06\x11\x84\xeb\xdd\x99\x6a\x7a\x35\x78\xc0\x1a\xe6\x0e\x00\xcb\x36\xb7\x77\xf0\xdc\xf2\xf6\x3f\x32\xeb\x8a\xbf\x40\xb2\xfa\x26\x8a\x00\xa2\x04\x04\xe7\xef\x04\xdf\x59\x86\xd1\x71\xb9\x99\x04\x14\x84\x56\x40\xc2\xfc\x25\xe8\xf2\xb4\x51\x8b\xfe\xb3\x2c\x06\xea\xaa\x9f\x2f\x72\x7f\x8b\xd5\xe0\x86\xa2\x40\xf7\xf9\x3b\xa9\x80\x58\x6a\x92\x09\xaa\x14\x41\x3b\x7f\x17\xb5\x4d\x46\x00\x57\x92\xe9\x4f\xb0\x3f\x3c\xce\x0b\x3b\xb6\xfa\x03\x30\xa3\x89\xba\xc8\x6f\x1a\x26\xf4\xe4\xc5\x3b\x1e\x2e\x25\xc3\xdb\x25\xf3\x6b\x5a\xb6\xb3\x0e\x8b\x37\x24\xd2\x59\x7d\x04\xeb\xcd\x0d\xec\x06\x28\x06\x2d\xb4\x90\x85\x60\xa9\xf8\xde\xfc\xdd\x3c\x3e\x8c\x29\xe0\x53\xf2\x39\xee\x99\xd2\x3b\x2c\x7b\x1f\x9c\xc5\xde\x13\x4f\xce\x9b\x46\xf9\xd0\xc6\xe7\x03\x07\x39\xbe\x3f\x54\xd2\x0d\xa5\x79\x17\x31\xa7\x95\xc2\x80\xe7\x0f\x39\xad\x56\x18\x3c\xc1\xfb\x39\xcc\x72\x0f\x59\x6e\x88\xa9\x81\xff\x56\x18\x3b\xd1\x55\xa5\x79\x63\x3d\xd8\x16\x66\xd2\x87\xae\x22\x6e\xf2\x66\x0b\xff\x9a\xdc\xe8\x1d\x2d\xe9\xb0\xc1\x79\x65\xa9\x8c\xe0\xdc\x90\x3c\x41\x55\xcc\xe6\x06\xdf\x68\x2f\xdf\xf6\x43\xde\xbd\xf0\xff\xc8\x16\xf6\x4f\x2b\x3c\x37\x68\xd3\x8d\xcd\xb6\x17\xff\x15\x29\x3e\xe6\xf6\xa3\x01\x76\xb8\xc3\x8b\x63\xd2\x1b\x5b\x4a\x0f\x75\xb1\xe5\xc4\xf9\x87\xc9\x37\x42\x3f\xc0\xb9\x44\xeb\xbb\x6d\xe0\xc9\xe6\xff\x79\x87\x1a\x6e\xe1\x66\xa7\xfa\x82\x39\xb2\x14\x95\x3b\x37\xa8\xc3\x8d\xa4\x36\x56\x26\x6c\xee\x93\xfa\xf0\x26\x31\xb9\x15\x8e\xdc\xcf\xa8\xca\xa7\xf4\x2b\x73\x4b\xb8\x56\xdc\x26\xd8\x52\xfb\x7d\xab\xc9\x96\xea\xa3\x22\x12\xcb\x8b\x81\x3a\xd2\xf5\xf3\x9c\x4c\xa7\xd9\x7e\xb1\x58\xb5\x28\xdf\x12\x8a\x99\xc8\x9a\x33\xe1\x1f\x38\xfd\xe6\x88\x17\x7b\x0d\xa3\x8e\x8d\xfe\x20\xba\xa9\xcd\xad\x51\xc1\xf6\xa7\x5b\xd1\xdc\x08\xbb\x04\xc3\x36\x16\x0e\x2c\x66\x98\x96\x24\x6a\x56\xe0\xfe\x61\xec\xb7\xb1\x20\x8b\xbc\x7c\xe7\x06\x6d\xb5\x32\x70\xcf\x0d\xd9\xad\x64\xf5\x9a\x5b\xc7\x66\x16\x22\xd8\x98\x05\x54\x51\xa1\x73\xeb\x58\x5b\xc1\xa4\x0d\xca\x6c\x23\xb3\xad\x77\xe4\x96\x14\x45\x3d\x19\xd0\x2f\x60\xe1\xfe\x29\x84\xe6\x36\x52\xa6\x89\x04\x56\xe6\xfb\xbe\xc1\x33\xbd\xfa\x0d\x78\x9a\x56\xbf\x40\xb7\x61\x53\x3d\xb8\x0e\x22\x82\xca\x65\x55\x75\x9c\x5b\x30\xcf\x84\x88\x0a\x0e\xdb\xcf\xdc\xda\x82\x56\x5b\xe0\x84\x92\x4c\xdb\x22\x97\x42\x34\xc5\x04\xf7\xf8\x05\xf8\xeb\x7a\xa9\x82\x66\x05\xcd\x1b\xd2\x0e\x4c\xcb\x82\x09\x78\xe9\x5d\x36\x09\x2f\xcd\x5b\x50\x94\x7d\x36\x19\x14\x65\x16\x91\xdb\xe4\x15\xc8\xb3\x32\xc9\xe0\xd5\x4d\x52\xaa\x86\xb8\x11\xba\x32\xcb\xcc\x6d\xe2\x78\xb2\x78\xa1\xae\x4c\x75\x24\xe7\xc6\x80\x35\xc5\x18\xcf\x6d\x12\x3a\x68\x5e\x17\x77\xa1\x00\xd3\x46\xfc\xe6\x69\x5a\x38\x90\x86\x3f\x48\x9a\x44\xe4\x22\x98\xd0\x91\xb5\xbd\x00\xae\x76\x0b\xc5\x95\x44\xb9\x49\x98\x61\x3f\x1f\x5c\x80\x84\x26\x81\x72\x5c\x00\x6a\xdb\x39\xd5\xfa\x60\x4f\x1e\xd7\xd4\xee\x24\x5a\xc3\x86\xdf\xf1\x67\xdb\xed\x30\x1d\x2f\x37\x00\xe9\xe5\x79\xdd\x73\x9a\xf4\x02\x1c\x21\x3e\xd3\x76\x50\x9b\x21\x60\xb0\x1d\x48\xce\x60\x21\x7c\xe4\x62\x6a\x90\xf0\x7c\xf8\x4c\x13\x34\x5f\xdf\x1e\xb0\x74\x1e\xf4\x41\x95\x90\x4e\xb7\x0d\x8e\x0c\x8a\xb5\x9d\xdb\x81\x2d\xe2\x31\xc3\x91\x41\x7e\xf5\x73\x83\xd7\x70\xf1\xd9\x03\x3d\xd8\x6c\xcd\x3f\x80\x1f\x05\xed\x37\x2a\xc6\x5a\xf3\x0f\x94\x75\xee\x12\x79\x0c\xaa\x65\xd1\x89\x31\x4c\x8d\xe1\xc4\x34\x4e\x8d\xf9\x1f\xa6\xf3\x0b\xb9\xf4\x9a\xa6\x13\x83\x12\xfa\xdf\x4e\x4e\xfc\x87\x6a\x2a\xc2\x84\x75\xb7\x0b\x1b\x5d\x37\x96\x0d\xc5\xa9\xa7\x87\x0d\x48\xb7\x3e\x67\x38\xe3\xd3\x9a\x30\xdb\x76\xf1\x0e\x6f\xe1\x72\x71\x18\x6e\x82\xc3\x70\x0b\x5c\x1a\xbf\x4f\x20\x62\x99\x4b\x10\x17\xde\x45\x37\x1d\x17\xfd\xcc\xf3\xd3\xec\x71\xd3\xc5\xce\xcf\xf1\x76\x21\x4d\xd2\x06\xdf\x06\x45\x27\xce\x8d\xbe\x0c\x96\x15\x37\x81\xc4\xfc\x4b\xe5\xbc\xb9\x31\x83\x7a\x33\x24\xb8\x69\x02\x75\xf3\x14\xaf\x86\x21\x4c\x5a\x6a\x51\x94\xa5\xf5\x44\xef\x43\xd6\xf0\x00\x90\xab\x60\x85\x0f\xdf\x74\x3c\xf6\x2c\xc2\xdb\xa1\x2b\x4a\x63\x6e\x08\x77\x2b\x9f\x67\x1e\xc6\xc6\x10\x0f\x38\x7c\xf9\x05\xaa\x59\x05\x4b\x0a\xeb\xbe\xc8\x6d\x65\x16\x00\xba\xae\x98\x89\x59\x7e\x9c\x78\x9d\xa7\x05\x0e\x11\x8a\xf2\x9c\xe5\xc7\x89\x77\x93\x84\xa5\xa1\xe7\xf5\xdf\xff\xba\xfc\xd2\x67\x81\x7f\x84\x02\x32\x67\xf9\x91\xa3\x75\x57\x2b\xd0\xe8\xf9\x32\x57\x10\x0a\xa7\x78\xcb\x59\x98\xb3\x5d\x83\x2a\xa9\xcf\xd3\x26\x2a\xdb\x0f\x1f\x68\x4c\x88\x84\x93\x63\xcc\x2c\x2f\x42\x1c\xf2\x3d\x9e\x05\xba\x38\x65\x81\x99\x85\xf8\x70\xf8\x99\x87\x6f\xf7\x07\x04\xd6\x82\x98\x05\xa1\x71\xdf\x67\x16\x6c\x30\x05\xbc\x79\x69\x03\x94\x0d\xda\x9e\x6e\x92\xde\x31\x54\x77\x59\xf2\xe8\xd3\x24\x14\x8a\x4b\xe1\xaa\x52\xc8\x1d\xcb\x9f\x2c\x8c\xca\x2f\xc0\x95\xb7\xf8\xff\x03\xff\xab\x4b\x38\x23\x1b\xfb\x15\xf8\x1e\x4b\xcb\x3f\x0b\xf2\x68\x75\x6b\x7f\xca\x8b\x1e\x87\xe2\x3b\x67\xa9\x29\xa0\xfd\xc5\xcb\xd2\xf2\x93\x9d\x05\xaa\x3f\xf9\x6f\xcc\xc2\xb4\xf0\x9f\x06\x26\x1a\xd4\xac\xc1\x19\x59\x99\x83\x67\xa9\x39\xcd\xfe\x81\xbb\x50\x20\xa7\x34\xae\xb4\x48\x64\x1d\x6a\x85\xf5\xcf\x42\xef\x08\x95\xca\x9d\x85\xde\x11\x56\x36\x94\x96\x25\xec\x35\x4f\x8d\xc9\xcb\x35\x2f\x2d\x57\x5f\x54\x34\x2a\x17\x9a\x3b\xa1\xc8\x95\xec\x29\x8d\x22\x57\x02\xb3\xa4\xc7\xb0\xb4\x7b\xa5\xf3\xcc\x77\x2f\x0c\x6f\x6b\xc3\x9f\x60\x72\x84\xbe\x4a\xe7\xf2\x6a\xb2\xa1\x3f\x54\x84\xde\x2c\x4c\x87\xd5\x86\x5b\xc4\xb6\x11\x70\x29\x00\x9d\x8a\x9f\x9b\x25\x41\xa7\x6e\xb9\x05\x0a\x44\x5f\xfe\xca\xe0\x69\x36\xfc\x43\xc3\x0b\xea\x61\xd0\xce\xad\x89\x49\x8f\x5f\xef\xcc\xc1\x31\x68\xb9\x06\x6f\xda\xc2\xea\x05\xa6\x57\x79\x5a\xcf\x32\x90\xbb\x48\x32\xb1\x00\x93\x56\xf3\x30\x2c\xaf\xdd\x33\x1f\x0c\xd8\xf2\xac\x21\x57\xd6\x47\x38\xb1\x1a\xb3\x15\x37\x25\x1d\x78\xa5\x9e\x2b\x41\x99\x39\xfc\x09\xf6\x81\xc5\x11\x3d\x7a\x9b\x8e\xa2\x32\x39\x2f\xc2\x42\x85\x95\x6b\xc2\x02\x64\xe6\x44\xf8\x93\xc5\x37\x44\x38\xb3\x5b\x35\xef\x0d\xe0\xcc\xf2\x1b\x7f\x39\x8d\xca\xc4\xd2\x7a\xeb\x4e\xaa\xe0\x74\x9c\x16\x7a\xf7\xaa\x98\xf2\x2c\xf0\x72\xa8\x82\xde\x65\xe5\x18\xfc\x42\xa3\x92\x4e\x63\x20\x2a\xfd\x88\xdd\x35\xf9\x83\x3f\x01\xbc\x6f\x6e\x13\x42\xce\x7b\x0f\xde\xbb\xd5\xbb\x77\xff\xb1\x01\x7d\xb0\x33\x7a\xc1\x2c\xbb\xd3\x5f\xdb\x2f\xbc\xab\xb9\x79\x1b\xed\x0c\x53\x1c\x6e\x92\x12\x42\x18\xb1\xc0\x7d\xb7\x5a\x10\x43\xef\x57\xcd\x70\xa8\x9c\xe3\x6b\x53\xd9\x73\xe6\x4c\x02\xea\x7b\x79\x6d\x99\x16\x41\x61\x8c\xb3\x20\x3d\x7e\xd5\x25\xa5\x24\x8e\x15\xb0\x2d\xa8\xa4\x33\xcc\x2e\xcc\xab\xda\xc2\x5f\x04\xfb\xf4\x17\x89\xf7\xf5\x8c\x61\xea\x14\x2f\x47\x32\x8b\x86\x7d\x70\x94\x7e\x81\x7b\x3f\xfc\x03\x72\xee\x4e\x77\x99\xc3\xf4\x0f\x0c\x8d\x34\xd7\x9f\xd4\xc4\x8b\x86\x33\xc5\xa2\xfa\xbc\x72\x22\x44\xf5\x45\xc7\x49\x8d\x13\x21\x6b\xd5\x4b\xf1\xc2\xca\xe6\x5b\x71\x41\xc4\xda\xf4\x20\x32\x60\xcd\x13\x85\x72\x82\xdd\x12\x0f\x20\xb2\x7a\x9a\xe0\x61\x5b\x3e\xe7\x05\x50\x64\x35\x37\xc0\xe5\xd6\x2a\xd6\x02\x17\xdb\x6a\x69\x71\x81\x21\xbd\xf8\x77\x32\xa4\x1a\x80\x49\xd8\xe8\xbc\xdc\xb9\xb6\x22\xf1\xc6\x11\xe8\x6d\x7c\xe7\xae\xd1\x20\x91\x44\xf5\x73\x88\x42\xd9\x18\xe6\xf0\x17\xa5\x96\x65\x71\xc4\x2c\x5a\x6d\xba\xcb\xe4\x68\x0d\xf2\xc5\xa9\xd5\x7a\xe1\x42\x0f\xdb\xcf\x41\x90\xc8\xd3\x50\x01\x5e\xb4\xbe\x25\x97\x87\x44\x6b\x1e\x11\x01\x57\xcd\xd1\x09\x3c\x7d\xd0\x3f\x3c\x8b\x2c\x96\x1f\xae\x84\x88\x44\x08\x5c\x35\x8d\x70\xb2\xad\x06\x02\x99\x25\xcb\xbb\xe8\x49\xfe\xfb\xd7\x45\xcd\x64\xfa\x92\x7f\xf5\xb7\xfd\xf7\xbf\xa9\xb2\x4b\xb3\xfe\x58\x13\xb1\xe9\x99\x83\x70\x03\x0d\x6b\xef\x67\xfa\xc8\x2e\x3d\x03\xe3\x49\x74\xd4\x1f\x87\xe0\xf6\xb8\x65\xa6\x7f\xa0\x47\x95\x9e\x09\x12\x4d\x31\xd3\xa5\x2a\x37\xed\xac\xc8\xa4\x2f\xcf\xba\x59\xe9\x62\xab\x0c\x6b\xb3\x32\x1d\xaa\xcf\xcb\x5a\xe8\x07\x2f\xa1\x5b\xa1\x24\x54\x6a\x9d\x59\xe1\x12\x6b\x3b\x73\x25\x64\x13\xdc\xa9\xcc\x4f\xe0\x23\xba\x66\x4e\x2b\xe9\x16\x2a\x2d\xb8\x3e\x72\x2b\x74\x84\xca\x76\x3c\x6b\x5a\x74\x05\x96\x2b\x5c\x64\xab\x94\x88\x15\x2e\xb2\xb5\xfd\x49\x3b\x57\x69\x0e\xf6\x95\xb9\x56\xf0\x56\xf3\x73\xc7\xb3\xc8\xa9\x30\x62\x84\xff\x0f\x36\x60\x72\xde\x53\xc6\x18\xb1\xc2\xbf\xb6\x4a\x6f\x5e\x2b\x2f\xc4\x52\x34\xd4\xc4\x84\x82\xd6\x95\x85\x0a\xbd\x07\x2b\x41\xa2\x2e\x30\x95\x75\x09\x8d\x2a\x6a\xe3\x9d\xa7\xf9\x0b\x8a\xec\xe5\x37\x30\x0c\x81\xef\xfa\x82\xc6\x18\x5e\xc8\xc6\x0b\xb1\x0e\x81\x8a\xa4\xfb\x2a\x95\x3a\x6b\x26\x54\xf0\xff\xef\xa6\xb5\x92\xb2\x76\xd2\xa8\x75\x64\x29\x22\xdb\x72\x2a\x94\x90\xd6\xcc\xd6\xce\x99\x97\x30\xab\x9d\x34\x0b\x3b\xd5\x4e\x89\xfe\xe9\x23\xf7\xb9\x86\x99\x98\x73\xf9\x8d\x09\xaa\x4d\x05\xc2\x9f\xec\xaf\x51\x5f\x88\x38\x55\x5b\x60\x56\x40\xc4\x08\x8f\x9b\xa5\x05\x8d\x9e\x2a\x2c\xc0\xbe\x03\x54\x64\x1e\xa8\x9e\xb9\x60\x76\x29\xd1\x44\x07\xd6\x90\xac\xa9\xb0\xf0\xfa\x44\xaf\x70\x58\xfd\x7e\x90\x5b\xc0\x2f\x3c\xa0\x51\x3d\xcc\x24\x49\x8b\x37\x73\xfd\x45\x34\x53\x60\x7d\xfa\x98\x5c\x6e\xf5\x31\x79\x18\x9a\x0b\xe1\x71\xe7\x93\xa7\x22\xfc\xaa\x9a\x29\xa1\x45\xfc\x48\x27\xf8\xb4\x76\x2b\x78\x2b\x7c\x5a\x8d\x22\xea\xe2\x65\xcb\x1c\xb6\x28\xef\xd4\x03\xbc\x50\x95\x55\x78\xd6\x45\x1b\x86\x37\xf6\x5a\x1c\x84\xbf\x20\x0d\x9a\x48\x66\xa9\x6a\xcb\x2f\x50\x9a\x08\x46\x54\x06\x64\xb5\xe5\x1f\x20\xb6\x2d\x03\x89\xe8\x84\xb6\x2b\xb4\x88\xd5\xd2\x07\xf1\x58\x8a\x2f\x99\x95\xfe\x73\x86\x5f\x75\xcf\x7d\x22\x1a\x90\x8d\xa0\x9a\x7f\x76\xaa\x38\x2c\xf2\x76\x8e\x42\xfc\xb3\x33\xd2\x41\x24\xb1\xe0\x91\xcf\xec\xba\x73\xfb\x7b\xab\x1d\x0c\x6c\x14\x51\x07\x39\x50\x1f\x40\x2b\x28\xcf\xc5\x59\x0f\x8a\x50\x1d\xf2\xf5\x84\x84\xf4\x49\x01\xa5\xde\x30\xfb\x9c\x01\x86\x53\x07\xac\xd5\xfc\x39\x8b\xa0\xc4\x1b\xde\xaa\x08\x67\x0a\x8b\x9b\x13\xcc\x10\x7e\x26\x38\xf3\x20\x2f\x06\xa0\xfa\x74\xbc\x88\x9c\xfd\x09\xf2\x03\x7c\xb6\x19\x73\x4c\x75\xef\xd4\x8b\x4e\x03\xa2\x01\x1a\x3b\xf9\x0f\xcf\xfa\x62\x27\x27\x7f\x9f\x15\xa1\xfd\xb3\x7b\x1b\xa1\x36\xf3\x66\xc9\x7e\x63\xed\x7d\xda\xdd\x24\x49\x48\xa6\x42\x41\x37\x0d\x29\x2b\xdd\xe5\x8c\x10\xeb\xbd\x90\xc8\x46\x6b\x7d\xd3\x94\xe3\x7d\x77\xe3\xfc\x8b\xbf\xe4\x54\x98\x15\x38\xe8\xb3\xae\x34\xd2\x9a\x31\x1e\x04\x52\x48\xb5\x5a\x11\x5b\x54\x7d\x10\x12\x16\x59\x8e\xbc\xb0\x68\x0e\x23\x10\x24\x9f\xb2\xc2\xb1\x3e\x29\xa9\x34\xc5\x50\xcf\xcd\xfe\xf9\x02\xe4\x2f\x7f\x71\xf2\x0b\xcd\xe9\x03\xd6\xd3\x94\xb5\x4c\x46\x25\xe0\xd5\x88\x7a\x3e\xcf\xb4\x1a\x4f\x3d\x33\xc0\x51\xcb\xd8\x7e\x24\x72\xe8\x79\xff\xef\x7f\xa1\xfa\xd6\xb3\xc1\x7b\x4e\x4e\xe1\xb3\xbd\x30\xa8\x2a\x6e\x6e\x36\xea\xda\x74\x98\x36\xa0\x22\x79\x9b\xce\xf6\xa3\x66\x43\x52\xa5\xa5\xaf\x9c\x36\x68\xdb\x28\xf0\xd5\xe3\x96\x6c\xd0\xf5\x43\xf0\x07\xbf\x41\xc9\x25\xe8\xd5\x0a\x58\x4b\xc7\x52\x43\xa8\x91\xc2\x7c\x66\x2b\x0b\x09\xfe\xfc\x3f\x64\x84\x04\x5b\x7b\x61\xd2\xb0\x2f\x57\x63\x0e\x79\xe3\xd5\x56\xd3\x39\x59\xcf\xaf\x48\xb0\xc3\x4c\xa3\x62\x4a\xda\x9a\x56\x73\x65\xd5\x62\xc5\x21\xb4\xfc\x8c\x82\xac\x92\xa4\x8d\x36\x4e\x8b\xef\x06\x33\xa6\xfd\xe8\x1a\xcd\x98\xc6\xb3\x0d\x41\xec\xc3\xb3\x84\xac\x9d\x2a\x67\x34\x5b\x9a\x39\x25\x7b\x5b\x4b\x39\xa7\xa5\x6a\x37\x12\x1a\x6b\x16\x01\x31\xa6\xea\x56\xcc\x46\x9d\x93\x61\x7c\xeb\xbc\x8c\x88\x86\x9e\x1c\xad\x4e\xe1\xc0\xef\x7b\x40\xa3\x8e\xa9\x0b\xd1\xb6\x4e\x49\x65\x7e\x1a\x3c\x6c\xc5\xe2\x0d\x61\xe5\x5d\xf2\xbc\x41\xc9\x64\xdf\x9f\x86\xfa\xc8\x9b\xa7\x9a\x5e\x6b\xbe\xc4\xb5\x41\xfe\xd9\xdc\x02\x95\x02\x22\x8a\x5a\x27\x43\xfb\x86\xb8\x1c\x7b\x35\x36\x66\xee\xf4\x45\xb2\x8d\x03\x2f\x98\x46\x06\x26\xbb\x01\x9e\x08\x6e\xe0\xc6\xfb\xfe\xff\xc1\xb3\x26\x96\x61\x3a\x8a\xbe\x9e\x0d\x71\xea\xd6\x42\xb5\xa0\xf7\x87\x64\x47\x8b\x1c\xa5\xba\x80\x23\xdc\xe6\x2d\x10\x44\x1c\x3a\x4a\xdb\x8b\x93\x86\x9c\x93\xdf\xbb\x3e\xa7\x45\x1c\x05\xcf\x38\x3b\xc2\xb5\x80\xcd\xd0\xfc\x12\xb9\x76\x26\x8a\x0c\x24\x89\xde\x60\x6e\x9d\x5d\xc0\xb9\xc1\xdc\x6a\x9f\xd5\x06\xd7\xb8\xe6\x6d\x93\x49\xdd\x2d\x6d\x90\x90\xa9\x79\x31\x17\xea\xbd\x78\xa3\x2e\x22\x2f\x01\x8a\xb6\x68\x63\xf6\xda\x51\x0d\x35\xfc\xcc\x8d\xa4\xb3\xb2\x31\x0a\xbd\x17\xb7\xb9\xe0\x48\xab\x71\xc2\x14\xda\xcd\x60\x8b\x69\xbb\x75\x50\x35\x80\x98\x66\x7e\x42\xc6\x25\xbb\x72\x34\x66\x50\xea\x3a\x0a\xdb\x4e\xa8\x35\xfe\x52\xb0\x75\x36\x78\x96\xd9\x5f\xb9\xed\x29\x31\xd5\x3e\xeb\x2b\xda\xd0\xd9\x0e\x46\xa2\xe9\x8b\xa3\x41\x14\x88\xc0\x63\xa2\x48\x81\x26\xed\xe0\x4a\x6b\x8e\x0e\x5e\x89\x2c\xa4\xa1\x1e\xb2\x83\x53\x3b\xc8\xdf\xee\x90\x6a\x58\x73\x1f\xd3\xb5\xf7\x62\x12\x38\x47\xfa\xe2\xa4\xf3\xa9\xf0\x6a\x3b\x39\x69\x9a\xa3\x93\xf8\x55\x88\xb8\x9d\x30\x77\x09\x1a\x36\xa4\xdd\x6c\xee\xe1\xa4\x7c\xd3\x20\x10\x31\x60\x2f\xc3\x06\x3b\x67\xd3\xe9\xdd\x4e\xe2\x3c\x8b\x37\xd8\x3d\xed\x77\xd6\x5e\x8c\x34\xec\x3f\xd5\x10\x01\x1e\xc3\xff\x57\x8e\x51\x14\x5e\xa4\x48\x0d\x5e\x9c\x56\xff\x0f\x8a\x74\x4b\x6c\x2f\x42\x72\xf0\xf4\x6c\x77\x72\xa2\xa6\x99\x09\x30\xbb\x69\xbe\x79\xb8\x8a\xa4\x9b\x89\xfc\xfc\x01\x25\xb4\x90\x66\x7b\x72\x9a\x45\xf4\xc3\x2d\x29\xe8\xd8\xe8\x58\xe6\xfb\x7c\x03\x6a\xb1\x17\x51\x7b\x28\x0d\x2d\x70\x9f\xa4\x4a\x74\x3f\xb4\xb7\x79\xdf\xc3\x09\xac\x55\x37\xc9\xcb\x8a\xae\x58\xed\x01\x37\x68\xe6\x3a\x63\xa8\xa7\x9f\x71\x37\x91\x2d\xa3\xff\x92\x86\xa5\x1f\xe8\x82\x23\x98\xd1\x69\xc2\xf3\xe5\xa4\x6f\x3c\x37\x24\x2a\xfa\x86\x6c\x3c\x62\xf2\xfe\xc2\x8a\xaa\xea\x55\xef\x19\x04\xa2\xfd\x3f\x8e\x70\x8d\xb2\xc3\x44\x67\x37\xc2\x4e\xf5\x4d\xff\x7c\x40\x86\x92\x80\xec\x1b\x05\xc5\x32\x09\x18\xb6\xe6\xbe\x17\xf2\xfc\xd0\x33\xd7\x42\x1c\xd1\x4b\xfd\xef\x7f\x61\x3f\xb3\x8e\x2c\xe7\xf6\x3f\xe8\x2c\x87\xe3\x4b\x5c\x67\xc2\x20\x2b\x80\x7a\x49\x2a\xfd\x09\xd7\x46\x34\x41\xe1\x63\x00\xd8\x0b\x0f\x60\xe1\xfa\x5e\xa9\x63\x12\x58\xea\xa9\xa2\xd1\xd6\xed\x69\xb6\x13\x5b\x76\x9a\xed\xdc\x66\x25\x4e\xd0\x5e\xee\x40\x37\xbe\xe0\xf4\x7a\xbf\xa0\xd2\x6b\xc5\xd8\x43\x5f\x77\x3b\x34\x2e\xf6\xba\xe9\x0d\x33\xe7\xc5\x68\x15\x75\x51\xd5\x41\xa3\x66\xa2\xb9\x81\x89\x06\xc4\x40\x8d\x69\x8a\x34\x71\x08\x50\xb6\x39\xad\xc3\xe7\xcb\x0e\x0a\x1d\x39\xcb\xc3\x43\x4a\x2c\x24\xb8\xd5\x7b\xf2\x9b\x7a\xe8\xdc\x69\x82\x15\x9d\x5e\x5f\xbe\x4f\xf4\x5e\x21\x96\x45\x34\xa2\x1f\xed\xc2\xd0\x53\xbd\xd2\xdc\x24\xf4\xd9\x66\x8f\xce\x41\x99\x86\x85\x06\xfd\x4c\x18\xeb\xef\xc9\xa1\x5e\x28\x46\x4b\x46\xff\xfd\xe5\x20\xea\x9d\x3a\x57\xa9\x5a\x3a\x32\xf8\x7c\x66\x7d\xd0\x78\xe6\x59\x1c\x13\x7e\x6b\xe2\xc6\x81\xcc\xf1\x9e\xf5\x01\x48\x61\x7e\x7e\x71\xd4\x54\xc1\xdc\xd9\x81\x9b\x9a\x74\x56\x7d\xe4\xac\xeb\x05\x82\x18\xc9\xa6\x1e\x44\xfe\xba\xfe\x77\x56\xae\xb1\xf1\xb5\xd3\xbf\xdf\x46\xa6\x4e\x73\x9d\xdd\xcf\x3b\xcc\x75\xb6\xce\x76\x9a\xeb\x6c\x95\xec\xf0\x2a\x6b\x82\x18\x3d\x61\x8e\x99\x6d\x22\x5f\xb8\xe7\x89\xe9\x77\x42\x8a\xb3\x3e\x89\x08\xbc\xb2\x93\xe3\x70\x93\x58\x59\xd3\x34\x73\x5c\xfe\x01\x67\xc9\xa7\xcb\x83\x2f\x98\x48\x26\x73\xd2\x5d\xb1\x4f\xc2\x06\x1d\xa0\x1d\x51\xce\xb6\x5b\xf7\xc5\x3d\xa5\x16\x68\xd1\xeb\x9e\x7d\x04\x5c\xda\x6f\xa3\x03\x39\xd9\xc0\xd7\x59\xf1\x5a\xf1\xe8\xb3\x03\x49\xd9\xeb\xb9\x23\x12\xa0\x7d\xfe\x87\x2c\xd2\xd1\xd3\xa9\x2e\xea\x9f\x1e\x38\xf5\xfe\x22\x2d\x7e\x52\x64\xf4\x3d\xa5\x93\x26\x06\x6e\x65\xf6\xea\xe9\x4c\x6c\x6e\x5d\x48\x87\x0a\xc9\xf6\xfb\xbe\x53\x86\xea\xce\xdc\x77\xce\xbd\x3f\x40\xc9\x05\x8b\x54\x84\x64\x76\x6f\x22\x84\x06\x28\x5b\xcd\xec\xfb\x7b\x48\x4f\xcb\xa6\x9d\xa7\x9f\xd7\x6e\x47\x5e\xd3\x0f\x89\x0f\xa2\x7f\xd5\xc0\xf1\x7b\x77\x81\x2e\x8f\x9d\x11\x9b\xbe\xb4\x77\xa6\x41\xb7\xae\xa5\xa7\x01\x50\xea\xc2\x7e\x50\x33\xa2\x6b\x54\x27\xc4\xf3\xd9\x04\xd7\xb6\xe6\xe3\x92\x06\x3f\x5f\xab\xfa\x89\x48\x3d\xdd\x40\x3a\xf3\xa2\x5b\x3d\xd3\x59\x38\xf1\xb3\x79\xe1\x69\xd6\x7c\x46\x33\xad\x79\x37\x83\x9d\x74\x9f\x5b\xfe\x02\x97\x5c\xe1\x84\x9e\x41\x9c\xde\xbd\x27\x0e\x4c\x33\x10\x21\x99\x05\x20\x62\x36\xed\xa1\xd0\xd3\xa0\x27\xe0\xda\x61\xc0\x6b\x3e\x78\x10\x0b\x60\x07\x84\x7e\x91\xc1\xdc\x43\x5a\xf0\xa4\xaf\xe8\x37\x37\xb7\x67\x0e\x69\xce\x37\xef\xab\x9b\x34\x68\xe2\x18\x0d\xf0\x91\xd2\xa9\xa5\xf2\x01\x0a\x2d\x95\xef\x07\xfd\xc6\x5a\x74\x7f\x40\x05\xb4\x39\x2a\x3d\xbf\x0c\x24\x50\x96\xa6\x39\xb8\xaf\x3f\xd9\xa9\x66\x02\xa8\xcd\x9e\xdd\xfd\xe1\xfa\xfb\x03\xf4\x69\x61\x80\xba\x34\xd3\x48\x83\x55\x0f\xad\xc4\xec\x70\xfc\xb2\x79\xbf\x3f\x89\x13\xfe\xf5\x30\x7e\x54\x29\x6a\x6e\x07\xd2\x52\xda\x75\x71\x00\xd4\x29\xe4\xfb\x3d\xf8\x90\xa6\xaf\xea\x99\x2c\xf9\x27\x3b\xd1\x80\xda\xc9\xde\x0e\x03\x39\x70\x42\x69\xb1\xde\xed\x43\x72\x86\x7e\xe0\x85\x42\x12\x72\x40\xaf\x64\xa7\x8b\xb1\x8d\xff\xfe\xd7\xad\xbc\x1e\x5b\xbc\xcf\xba\xf7\x8d\x8d\x6e\x68\xba\x61\x8c\x54\x33\x89\x15\xc6\xc6\x49\x75\x97\x14\xca\xcb\x3f\xf0\x5a\x24\x7e\x1c\x25\xa9\x54\xa7\xd0\x4c\xd9\xf6\x3f\x4a\xd6\x72\xd3\x34\xd3\xcb\xdf\xfe\x04\xa3\x50\xc1\x1d\x6e\x82\xbb\x4a\x9d\x16\x14\xec\xd5\xa1\x3a\x2a\x36\x91\xe7\x21\xd1\xd9\xf2\x0f\x39\x50\x11\x91\xda\x2a\x2d\xfe\x60\xa1\x6b\xab\xab\x06\x6d\x66\x5d\xfc\x34\xd2\x66\x66\xf6\x40\xc0\xa4\x1d\x0a\x46\xcb\x14\x88\xea\x04\x6e\xfd\x63\xea\xfa\x34\x98\x75\x3c\xb4\x2f\x46\x82\xba\xee\x37\xb0\x9b\x25\xda\x07\x40\x9a\xea\x90\xcd\x81\x34\x8b\x56\x07\x8f\x9e\x2c\xa0\x0f\x3a\x8f\x38\xaf\x18\x12\x52\x58\x3f\x35\xe0\x78\xef\xe0\x91\xc1\xa2\x82\xdd\x93\x07\x8b\x57\x28\xeb\xd6\x1c\xb0\x70\x8d\x4f\x17\xb0\x36\x59\x55\x38\x3a\x42\xa4\xbd\x7e\xa8\x3b\xfd\x71\xed\x1b\x80\x59\x61\xd6\x86\x9b\x95\x5d\xaf\x07\xf2\xcc\x84\x32\x50\xcd\x31\x68\x6d\xd4\x09\x36\xa8\xf2\xb2\x9e\x65\x20\xa3\x85\x35\xd5\x83\xa5\xa6\xad\xd1\x1a\x70\xfe\x57\x3e\xa8\x39\x06\xef\x57\x9e\x88\x41\xf4\x60\x2a\xe0\x48\x65\x6b\xf7\x08\x86\xe9\x98\xcd\x90\x1a\xb1\x58\x43\x39\x22\x39\x57\x9d\x04\xe3\x18\xdd\x24\x35\x92\x26\x13\x58\x4d\x55\x7a\xe6\x00\x54\x73\xb5\xad\x39\x66\x36\xa9\x4e\x27\x64\xad\x65\xeb\x98\x64\x5d\xcf\x0d\xfc\xa4\xea\xe7\x0b\x9e\xce\x1e\x48\xe6\x99\x10\x68\x1d\x30\x9c\xb5\xcf\x73\x47\x3a\x1a\x8d\x6b\xe5\x40\x35\xae\xb4\xa4\x49\x8b\x35\x90\xc7\xb0\x58\xbf\x37\x76\x18\xf2\xad\x5b\x1b\x3b\xfb\xd0\x17\x3b\x10\x64\xf1\xff\xec\x43\x98\x60\xc0\x2d\xc9\x86\xb5\x41\x23\x95\xd5\x1d\x03\x69\x20\x6c\x9e\x19\xf0\x96\x6f\x96\x55\x07\x25\x8f\x27\xfb\xe0\x5e\xf0\x44\x20\x2f\x84\x6d\xb9\xe3\x08\x76\xe1\x26\x28\x27\x3c\x0a\x86\x28\x5a\x13\x36\x8e\x87\x3f\x68\xae\x4e\xfa\xfc\x08\xf2\x8d\x33\xc9\xf0\x0f\x49\x86\xda\x40\x18\xa3\x95\x59\x83\x1e\xf0\xd6\xd3\x0c\x2a\x82\x84\xf0\xc7\xc9\x44\xc0\xfe\x1f\x47\x9f\x85\xf0\xc9\x6c\x84\x6e\x30\x33\x99\xe9\x19\x59\x94\x84\xdf\xc6\x95\x24\xfe\x25\x03\xdd\x1c\x0c\x70\xb4\xae\x6c\x5c\xa4\xdf\xcf\x54\x3f\x7b\xaf\x31\x33\xa0\x72\x5c\xcf\xc1\xb4\xd9\xba\x56\x0d\xa2\x1a\x2b\x8e\x06\x22\x1c\x6d\x16\x1a\x30\xb5\x15\xab\xaa\x06\xfc\x94\x6c\x8e\x18\xf0\x53\xb2\xe1\x6c\x10\xe5\x58\xdb\x36\x98\xaa\x42\xd9\x8f\xe7\x00\xca\xf9\x08\x08\xd6\x72\xb6\xba\x6d\x24\xcc\x31\x7b\xdc\x64\x0f\xcb\x6f\xe4\xae\xb0\xc1\x70\xdc\x27\x9e\xdd\xe7\x05\xbd\xaa\xdf\x47\x4a\x18\xdd\x66\xc7\x4d\xa2\xc5\x19\x0f\x1d\x39\x34\x4d\x80\x34\xdd\xec\x98\xc9\x29\x3c\x8f\xb0\x96\x75\xef\x19\x58\xcb\x62\xfb\xfc\xc0\xbd\xef\x51\xc3\xab\xc8\x18\x37\x50\xdb\xc5\x06\x8f\x80\x0f\x91\xbd\x34\x02\xd6\x34\x3b\x98\x05\x0b\xb9\x58\xa3\x13\x3f\x2e\xb6\xb8\x37\x00\x82\x6c\xaa\x8a\x1f\x17\x5f\xdc\x1b\xbf\x89\x17\xa6\x9e\x39\x4a\x37\xb0\xe3\xd9\x3d\xd0\x77\x58\xeb\x10\x30\xb8\x79\x5a\x83\x6e\x48\xca\x44\x39\x83\xde\xed\xd6\xbe\x05\xf3\x07\x2a\x97\xda\x0c\x14\x7e\xe9\x92\x25\x81\x6c\x15\xfd\xe7\xff\x79\xe0\x2c\xbf\x40\x7f\xd5\xee\x37\xb0\x56\xc3\xcf\x04\x29\x9e\x07\x40\x25\xeb\x87\x03\xa5\xa2\xe3\xf3\x01\xaf\x02\x9e\x97\x8d\x48\x5d\x28\x25\x12\x3a\x49\x04\x46\x49\xbc\xe0\x37\x92\xa9\xb5\x7c\xa5\xa3\x53\x4d\x55\xa1\xa0\xf6\xd4\xc0\xe3\xdd\x8a\xfa\x28\x8c\x72\xea\xee\x23\xe7\x4e\x3f\xc0\xf0\xf7\x71\x33\x8b\xca\xfd\x2f\xe4\x1d\x70\x60\xb2\x59\x25\x90\xef\xcf\x36\x91\x60\xb6\x0a\x15\x62\x9f\x01\x87\xa4\x8f\x4f\x4c\x20\x5b\x45\x2f\xee\x22\xe7\x46\x93\x05\x6c\x65\x43\x4c\x10\x5b\xd9\x63\x25\x98\x8c\xc2\x0a\xb7\xa0\x39\xd1\xaa\xc8\x80\x3e\xcc\xd1\x57\xd1\x98\x53\xc0\x1f\x60\xf3\x9a\x67\x68\x2c\xb4\x7a\x34\x90\xf2\xda\x36\x85\xe8\x39\x31\x5a\x40\xc4\x38\x5a\x5d\x1a\x48\xd0\xe7\x10\xb4\xe8\x98\x17\xe9\xba\x03\xb6\xc3\x8f\x01\x33\xe0\xaf\x6e\xb5\x73\xa4\xf2\x6a\xf8\x0b\x4c\x83\xce\xfe\x40\xf1\x95\x2e\x81\x14\x8c\x81\xb4\x8a\x37\x06\x49\xf2\x07\x88\xa5\xf2\xf6\x86\xb7\xb9\xb5\xe9\x81\x7c\x7c\x5d\x27\x45\xc0\x8c\x67\x5d\x7a\x0c\x72\x87\x1b\xcc\x74\x16\x66\x5a\xd4\x51\xf9\xa8\xe8\x02\x21\x90\x56\xf9\x47\x40\xc3\xeb\x7d\x81\x4c\x5f\xdd\x02\x25\xa8\x6b\x1f\x7f\x0a\x32\x0a\x9a\xe8\xac\x50\x8b\x40\x40\x9a\xf9\x19\x06\x39\x67\xc3\x88\x49\x38\xeb\xad\x3f\x73\x8b\xf8\x0b\x00\xaa\x61\x81\x04\x3f\xf3\x69\xc5\x7a\x4c\x3a\x25\x0c\xb7\xf1\x0a\x7a\xfb\xe9\x06\xf3\x51\xf8\xe6\x17\x8b\xc7\x91\xc9\xa0\xea\x49\x25\x03\x67\xd0\x6a\xe7\xcb\x64\xac\x14\x28\x1a\x59\x06\x24\x5a\x82\xc0\x2a\x67\x55\x61\xec\xdc\x14\x96\x9c\xf0\x2d\xb2\x06\x37\x76\x9a\x0e\x75\x39\x0b\x26\x89\x18\x9e\x0c\x80\x2e\x2b\x02\x63\xcf\x3e\xdd\x04\xfa\x34\x95\x07\x39\x4e\x58\x23\x50\xba\xc4\x7a\xbf\x40\x85\xbb\xee\x6b\x6b\x20\xa9\xc3\xf2\x5e\x87\xe5\xcd\x0a\xb0\x80\x6f\x51\xff\x34\x78\x93\x46\xb7\x48\xe7\x5d\x5d\x18\x03\x31\x87\x9f\x7d\x46\xc4\x35\x2c\x05\x01\xb0\xac\xbd\x0c\xe0\x29\x2b\xe1\x02\xb9\x95\xad\x06\x0c\xa6\x89\x68\x9f\x16\x29\xc1\xc2\x6f\x10\xb0\x48\xc3\x15\x27\x27\x4e\xa3\x38\x49\xb5\x05\xed\x45\x22\xf5\x01\x5c\xbf\xad\x74\x89\x2b\xd7\x5f\x8b\x87\x08\xc2\xbe\x59\xa2\x5d\xc4\x9e\x5e\x1c\xd6\x1a\xf1\x3d\x2a\x12\x25\x79\xa0\x54\xfe\x0c\x6f\x36\x78\x20\x39\x86\x2a\x98\x21\xd9\xaa\xc0\x20\x4c\xb2\xa7\x56\xd0\x5d\xdb\x1a\xea\xa0\xc9\x6e\x58\x0e\x32\x63\x97\xb5\x06\xf1\xc2\xa0\x70\xb8\x65\x40\xdb\xd3\x7d\xdb\x0e\xe2\x1e\x5d\x7b\x83\x45\x89\xad\x77\x0d\xf8\x19\x75\x5d\x83\x83\xea\x21\xeb\x55\x03\xa9\x1f\xba\xf1\x60\x30\xf0\xaf\x7d\xda\x64\x14\x8b\xa6\x93\x59\x8e\xdb\xa7\xcd\x03\x79\xe8\x34\x0c\xa8\x7f\xac\xcb\x8b\x87\xa2\x4e\x73\x35\xe1\x69\xd4\x7d\x11\x9e\xcc\xe4\xe5\x78\xa2\x89\x30\x3f\x5b\xa2\xe6\x2f\x97\x70\xea\x07\xb8\xbd\x49\x90\xcc\x1f\x97\xb4\xbb\xc9\x9d\xd2\xc9\x6f\xe4\xe4\x2e\xfd\x80\xed\xd1\xdd\x07\xc8\x96\x7a\x6f\xfe\x38\xb7\x6a\x31\xd5\x46\x5a\x8d\x49\xe8\x23\xd1\x34\x37\xb2\x80\x06\x3e\xb7\x64\x01\x75\xc9\x4c\x5d\xbe\x05\x4d\x18\x0e\xad\x07\x9b\xf0\xfb\xb6\x6a\x6e\x6e\x54\x93\xeb\x98\x99\x5b\x8e\x53\x54\x6f\xb9\x1a\xee\x83\x52\x3f\x4c\xd6\xc9\x4e\x35\x30\x66\x5f\xb6\x42\x77\xbe\x78\x29\xa6\xc4\xf4\x2c\x1c\x98\xfa\x28\xdc\x61\x9a\x09\x78\x8e\xdb\x97\x73\xa2\x2e\x9e\xb5\xdc\xb3\xf0\x38\xd6\xf9\x3c\x0b\x8f\x5f\xe9\xf3\x66\xe1\xa6\xae\x7f\x3a\x9a\x26\x6b\x25\x5b\xb7\x3b\x2b\x09\xd4\x44\x57\x1e\x95\x3a\x5d\x67\xa5\x0c\x18\xfe\x81\x13\xab\x59\x82\x67\xb7\x35\x63\x33\xa3\xfd\xa4\x62\x9a\x04\x52\x9e\x78\x6a\xad\x54\x6a\x7b\xce\x54\x4a\x89\x86\xc6\xad\x67\x76\x68\x98\x35\x8f\x99\xe1\x81\xd6\x40\xcf\x06\x61\xea\x85\x6a\x34\xfd\x48\xc3\x34\x51\x19\xcf\x46\xe2\x49\x3f\x6e\x15\xdc\x9d\xb3\xe5\x5a\x6b\x25\x5e\xe8\x55\x9c\x04\x61\xa2\x9c\xb2\x6f\xfa\x93\x5a\xaf\x90\x5e\x65\xf6\xa4\xda\x3f\x90\x6a\x75\x01\x57\x6f\xeb\x2d\x67\x4f\x22\x35\x93\x9d\x5b\xd3\x7d\x40\xcd\x65\xab\xf1\x4c\x70\x26\x28\x34\x09\xce\x3c\xcc\xce\xb9\x97\xde\x65\x42\x0f\x56\x3e\x34\x51\x1a\x7b\xf5\xa0\x07\x6b\x1f\xa2\xb0\x75\x3d\x0d\xf0\x0c\xeb\x9b\x39\x9a\x9e\x61\x56\xe0\x4e\xe0\x3b\x63\xa7\x39\x38\x6c\x75\x39\x98\x20\x49\x3d\x8e\xdc\xb9\x5a\xbc\x17\xef\x55\x5f\x93\x27\x73\x64\xa8\x42\xe9\x9c\x83\x0c\xe4\x67\x4e\xbd\xd4\x64\x93\x06\x4a\xd5\x0f\x9d\x33\x98\x23\x52\x34\x04\xd7\xc6\xfb\x0a\x09\xce\xac\xee\x98\x70\x67\xb7\x5a\x66\x22\x27\xc6\x32\xd1\xb4\x70\x5a\x11\x3f\x19\x7f\x68\x55\xfe\x44\xc2\x32\xeb\x71\x26\xec\x99\xdd\x34\xc2\x9e\x19\x3a\xb2\xe6\xcc\x79\xd4\x07\x13\x3b\xd1\x4b\x47\x90\xa8\x5b\xf1\x64\xad\x90\x9f\xdf\x87\xed\xc0\xf3\x8c\x60\x42\xdf\x79\xe7\xe2\xf7\x1a\x02\x14\x66\xd3\x07\xc1\x82\xa8\x91\x42\x64\x52\x7f\xf6\x11\xca\x0b\xcc\xa5\x2b\xee\x5c\x1c\x91\xa6\x60\xf1\x30\x32\x83\x27\xd6\x13\xe0\x98\xc4\x7a\xcb\xcf\xd8\xa6\xba\x5d\xce\x9d\x07\xa4\xf9\x17\x71\x80\x5d\xe9\xeb\xe7\xdc\x59\x41\x42\x83\x40\xda\x55\x2b\x4c\x26\xf4\x6b\xbe\x65\x4f\x14\xb1\xf3\x75\x75\x22\x68\x4f\xd5\x70\xe6\x3c\xb8\xce\x7e\x3f\xa0\xeb\xf4\xff\x3c\x03\xcc\xff\xb4\xd0\xa9\xf0\xec\x9c\x70\xa9\xf2\xad\x7d\x9e\x39\x68\x0d\xea\x45\x7a\x65\xf3\x7e\x38\x0b\xbc\x85\x44\x32\x34\x69\x76\xe5\x9d\x88\xd0\x6b\x4e\x21\x35\xcf\x9c\x04\x0d\xfa\xa4\xcc\x37\xd5\x27\xdd\x22\x3c\x4d\x27\xe2\x6d\x85\xd3\x26\x95\x67\xe3\xf3\x03\x74\xf0\x4a\x1e\x3f\x27\xdd\xa8\x54\x5c\x74\x4e\x28\xcc\x7c\xa3\x9e\x2f\xf6\xab\xd3\x3b\xe6\xe2\xa1\x5f\xfc\x03\xbc\xa2\x2c\x8b\x60\xe4\x7b\x2f\xbb\x7f\x39\x87\x2e\x1e\x9c\xe6\x76\x54\x98\xf3\xe5\x7a\xde\x54\x59\x7a\x87\xde\x70\xff\x37\xbd\xa9\xf8\xf2\x06\xbb\x27\xfa\x17\x3f\x67\x3c\x9d\x37\x10\x00\x9c\x6f\x65\x13\x00\xce\x1a\xca\xf9\x70\x06\xfc\x7e\x07\x30\xd2\xac\x3f\xd9\xa3\xd8\xf9\x41\x6a\x0a\xcf\x08\x54\x63\xbe\x7b\x4f\x38\x64\xd9\x01\x70\x3e\x28\xb6\x6a\x66\x7b\x50\x33\x40\x68\x6f\xfd\x72\xd5\x96\x7e\x20\xc5\x5d\xcf\xa0\x50\x98\x67\x25\x96\xd3\x5d\x7b\xfd\xe0\xaa\xa2\x45\x5b\x50\x5b\xf9\x2a\xb5\x7e\xa0\x68\xf3\xff\xd4\x27\x48\xee\x2d\x20\x33\x0f\x71\x6d\x54\xbd\xf9\xff\x8a\x06\xfc\x4c\x67\x3a\x51\xb4\x81\x09\x84\xd4\xd7\x0b\x90\x86\xe7\x70\x31\xbf\x96\x55\xee\x0b\xca\x21\x5f\x0f\x57\xa1\xb5\x49\x3b\x7c\xc1\xf2\xd6\x37\xcf\x12\x13\x26\x38\x3e\x6f\x21\x14\xae\x2b\x53\xf8\x5c\x95\xd2\x5e\xa2\x6d\xd1\x99\x4a\xb5\x3b\xe6\xaa\x3c\x7a\x25\xdb\x16\x40\x8d\x6f\x46\xab\xf2\x12\xda\xfd\x02\xb8\x4b\xbb\x7a\x41\x7f\x14\xde\xa4\x8b\xc6\x39\xc7\xaf\x2d\xc0\x1e\x5f\xf8\x16\xf5\x47\x2a\x75\x30\x57\x23\x0a\x2e\xfe\x61\xc3\x5c\xa8\x85\x46\x2c\xa6\xfb\xc3\x6a\x9c\x7d\x2d\x37\x60\xcf\xf8\x34\xd0\xf9\x81\x5f\xa0\x01\xc3\xb3\xc9\x24\x08\x4e\x67\xba\xa0\x61\x1a\xe6\xa0\x17\xe6\xfc\x7f\x34\x51\xc8\x7b\xa6\xe8\x4f\x65\x13\xc7\x02\x6a\xb1\xd1\x64\xb1\x24\x9a\x4d\x07\x2b\x41\xc9\xe7\x0b\x9e\x9d\x3a\x07\x56\xa7\xee\xe2\xf3\x09\xd8\x46\x62\x7b\xd1\x3f\xdd\xab\x01\x1d\xd3\x90\x7e\x66\xa5\x8e\x49\xe7\xc0\x1a\x39\x75\x6a\x81\x15\x7f\xbd\xdb\xd7\xe0\xdc\x69\xb2\x07\x39\x40\x2c\x02\xad\xd3\xa8\xee\x92\x00\xd1\x44\xc3\x4b\xca\xc8\x7c\x0d\x8a\xb4\xe5\x2e\x1f\xbc\xa0\x61\x07\x45\x9a\x89\x44\x16\x04\xfb\x1d\xae\x48\x1a\x45\x03\xd4\x54\x06\xca\x2b\x88\xc5\xa5\x7e\x59\x70\xc4\x1a\x52\xad\x2d\x64\xe6\x2a\x36\x41\xac\xa0\xd4\xf6\x30\x22\xa7\x5a\xf3\x40\xf7\x71\x1b\x0c\x16\x80\x8b\x91\xf1\x42\x76\x2f\x55\x4c\x9d\xeb\x05\x2e\x5b\x9d\x02\x80\x6b\x42\x32\x5b\x4a\x21\x9b\x97\x0f\x86\x35\x07\x84\x92\xe6\x81\x99\x56\xcd\x72\xf0\xba\x1a\x02\x26\x2b\x75\x5d\x9f\x1e\xb9\x14\x7e\x86\xee\xcb\x02\x60\xe6\x10\xdc\xc3\x83\x52\x9d\x7f\x4a\xc2\xb0\x98\xf2\x5e\x25\x59\xe7\x5a\xa4\xdf\xcf\x8d\xfb\x54\x33\x44\xb5\x98\x11\xeb\xca\x1c\x0b\x7e\xc6\x08\xbd\x91\x17\x46\x28\x45\xdb\x42\xa5\x09\x5f\xfb\x17\x1d\xae\x86\xc5\x28\x1d\xae\xac\xfb\x5f\x70\x6e\x37\xc0\x5d\x7b\x0a\x30\xcd\xc1\x0e\xf6\x15\x4c\x59\x3b\x0a\xae\x7a\x52\x91\xd7\xcb\xd0\x6c\xa5\x3b\x95\x9f\x21\x07\x84\x62\x16\x74\x6a\x4e\xa5\xb8\x0e\xce\x92\x2e\x8e\x0b\x09\xee\x8d\x30\x16\x0c\x99\xd6\xb1\x2d\xba\x4f\xd9\xe6\xb2\x8e\x24\x59\xcb\x48\x7f\x2a\x1b\x5d\xd6\x41\xa1\xab\x5b\xda\x82\xbb\x94\x31\xca\x3a\x92\x79\xdd\x09\xf6\xa0\x74\x4b\x0b\x30\xc7\xea\x91\x75\xf1\xae\xe1\x3d\xc8\x9c\x58\xd3\x1b\x24\x35\x5a\x5e\xbb\x2b\x48\x95\xfa\xb8\x78\xe9\xf2\x36\x85\x43\xf9\xe7\x68\x60\x01\x2f\x0b\x06\xe6\x9b\x77\x10\xc8\xba\x07\x74\xee\x22\x02\x29\xae\x3e\x52\x9a\xc5\x70\x6d\xd0\x5a\x37\x95\xbb\xc3\x6f\x90\xc3\x7d\x70\x3f\xd4\xfb\x78\x97\x3e\xc4\x73\xd2\x2c\x2c\xa2\x19\x4f\x05\x7c\x95\xc2\x91\x81\xeb\x01\x53\x76\x7f\x90\x54\xf8\x85\x8b\x4d\x6a\xfa\x9f\x64\xd3\x7f\xd3\xbd\x33\xeb\xd4\xcf\xcf\xc8\xa9\x61\x83\xd4\x0e\xcb\x9d\x2d\x3d\x3b\x2c\x77\x96\xca\xfb\x8f\x87\x7b\xf5\x07\x2c\x88\xe8\x17\xc0\xa6\xd3\x3d\x80\x4d\xb5\x51\xf6\xdf\x0d\xb7\x30\x7f\xcf\xeb\xaa\x1b\x40\x0e\x29\x6f\xee\x9d\x0e\x4a\x8e\x94\xdb\x37\x84\x42\x0b\x80\xec\xd0\x34\x99\xc5\x76\x28\x9a\xa6\xbd\xff\xf7\x2d\x97\x57\x34\x41\xd3\x64\x71\xb5\xa3\x24\xae\x43\xbe\x76\x68\x9e\x8c\x2b\x77\x64\x25\xf5\x4e\xda\x89\x99\xc4\xf5\xff\x8f\xb1\x37\xc9\xd9\xa6\x57\x96\xc3\xe6\x5e\xc5\xb7\x03\x17\x7b\x72\xf2\x4f\x3c\xb6\xf7\x50\x1d\x0d\x0d\x74\x75\x71\x2c\xed\xdf\xa8\x08\x32\xe2\x39\x80\x24\x7c\x83\x17\x78\x9f\x62\x15\x9b\x64\x32\x33\x99\xed\x49\xa5\x92\x4d\xac\x27\x92\x4a\x99\xb1\x9c\x14\xa2\x6c\x8d\x3c\xe3\x5a\x94\x86\x8c\x14\xf7\x45\xc3\xce\x6d\x94\xd3\x6f\x9e\xce\xe0\x3e\x21\x87\x55\xf7\xc0\xc3\x29\x91\xe9\x8c\x48\xcd\xac\xeb\xea\x89\x22\x5e\x55\x72\xc1\x49\x1b\x9d\xcd\x7c\x67\xa2\x67\x91\x00\x8d\xa4\xa5\x3d\xbb\x9d\xf5\x62\xd5\x21\x93\x98\xfe\x8c\x40\x99\xec\xe7\x05\x2a\x2a\x35\xe5\x44\x12\xa6\x29\x27\x78\x18\x0c\x0f\x88\xe4\x5d\xa2\x37\x27\x9d\xa3\x6c\x67\x3c\x59\x7c\x47\x45\xc1\xfa\xc9\x74\xf2\xb6\x8f\x9e\x94\xc8\xaa\x5f\x48\x7c\x41\x73\x5a\x12\x97\x6e\xb0\x67\xe6\xa4\x35\x28\x33\x0a\x7c\xd7\xc1\xbf\xe0\x45\x27\xfc\xe5\x9d\x73\xe6\x84\xb8\x36\x9c\x1c\xfe\xcc\x3c\x93\xba\x9f\x9e\x99\x52\xa5\x78\xcb\x09\x8f\x78\x5b\x70\x4f\xa8\xa5\x7a\x71\x3b\xe8\xb6\x0e\xf5\x59\xd6\x92\xb4\x46\x64\x41\xb5\x8c\x71\x96\x02\xf5\x8c\x3b\x24\x66\x48\xf8\x3a\x99\x16\xd5\x49\x12\xce\xa5\xa6\x92\x6a\xe2\x2c\xc4\x78\x7f\x71\xb3\x0b\x4f\xe2\x21\x94\x3c\x08\x03\x4b\xf4\x1b\x49\xae\x9c\x6b\xf3\x44\x7d\xa1\x16\x3c\x6b\x68\x9d\x7e\x4e\x40\x5d\x65\x93\xf4\x9b\x3c\x3b\xfa\xc1\x8a\x8e\xd0\xef\xb5\x0a\xf7\x40\x3f\x43\x8f\x00\xdb\x6c\x77\x3b\x48\x91\x38\xe8\x49\x79\xd0\x74\x02\xf2\xa0\x73\x64\x9d\x10\xff\x2c\x56\x9c\x0d\xae\xbe\x9e\x31\x8c\x94\xb6\x0d\x9f\x90\x06\x2d\xca\x9d\xcb\xd5\xcb\x70\x6f\x88\x3b\xf0\x09\x6d\x9c\x90\x3f\x78\xb9\x22\x01\xb1\x91\x38\xfa\x08\x52\x07\x65\xe3\xee\xd9\x09\x45\xad\xb9\x13\x39\xbc\x0f\x08\x1d\xfc\x41\x77\x64\x58\xf8\x39\xb3\x70\xb1\x1f\x8e\x51\x3b\x61\xda\x1c\x5e\x15\xb2\xe8\xab\xa0\x72\x3f\xe9\x41\x6f\x6b\xf0\xd9\x57\xb4\x84\x7e\x3f\x88\xc1\xf4\x14\x49\x67\xbc\x71\x4b\x7e\x33\xa1\x81\x47\xbd\x7d\x01\x4f\x46\x2b\xda\x04\x72\x7e\x02\x5e\xfc\x61\x22\x90\xe7\x86\x64\x9f\x73\xac\x45\x78\x08\xca\x04\xc6\x26\xa4\xea\xef\xde\x7b\x26\x6d\xb0\xd9\xf3\x44\xd2\x86\xea\x65\xd2\x4e\x5a\xfc\x9b\xab\xf0\xb1\x85\xc4\xf7\xc3\xa7\x28\xf0\xf9\x08\xc1\x55\xad\x1a\xfb\x90\x7c\x7f\x14\xff\x26\x71\xf4\xf7\xa0\x24\xa6\x13\x27\x67\xe8\xbd\x87\xaa\x2d\x75\x83\xed\x64\xba\x46\x41\x01\x29\xb6\x2c\xd4\x9e\xe7\xa2\x96\x1e\x62\xad\x41\x8b\xfa\x64\xc4\x38\x7c\x26\x11\x10\xe9\xb4\x12\xe7\x45\x6c\xca\x7e\xb0\x00\xad\x59\x2e\x09\x50\x4a\x9d\xf3\x82\xd3\xb6\xb7\xea\x22\xba\x78\xaf\x20\x12\xfa\x1a\x77\x5e\xef\x07\x87\xe8\x0f\x26\x2c\xfb\x7a\x1f\xa9\x5e\xab\xf4\x0f\xe7\xbd\xe6\xa4\x49\xc3\x2e\xab\x22\x61\xfd\xbc\x49\xee\xb2\xbf\x00\x7b\x2f\x7e\xa1\xf3\x05\x2d\xe2\x5e\x44\x5b\x7b\x47\xc3\xac\x6d\xbd\x27\x7c\xe1\x7e\x24\x00\x24\x92\xb0\xad\xf7\x44\x4c\x64\xed\x9e\x13\x92\x99\xf9\x0c\x3c\x4b\x73\xa0\x21\xa1\xef\x1b\xf6\x36\x3e\x3f\x41\x38\x0d\x2f\xf3\x13\x73\xf3\xd1\xfe\x2a\xe2\xe8\x7c\xd6\x2e\x68\x63\x29\xf1\x76\x0f\x07\x7a\x6e\xce\x0a\x55\xe0\xe1\x8d\x47\xd2\x89\xa1\x6a\xc8\xfd\x84\x67\x9c\x53\x81\x9e\x0f\x72\xbb\x58\x56\x80\x09\xf8\x07\xf7\x90\xc0\xcb\x29\xf2\xcf\x17\xbb\x66\x39\x12\x25\x72\x7f\x84\x8f\x17\xfe\x1b\x16\x03\x29\x61\x5b\x14\x40\x02\x8a\x6a\x31\x12\x69\x60\x87\xcb\xf6\x9c\xf0\x8a\xeb\xc5\xbf\xc9\x7f\xf4\xc1\x24\xa5\xf4\x01\x46\xa5\x00\x17\x3c\x3a\x27\xcf\xa7\x36\x60\xf2\xe6\xe1\xc3\x31\x79\xf3\x08\x7e\x80\xbc\x14\x96\x35\x26\xe7\xac\x35\xc0\x7a\xec\xc8\xd9\x93\x55\x00\xbc\xc5\x93\x9a\x69\x93\x04\xa8\x13\x87\xa9\x16\x8d\xc5\x36\x69\x5f\x28\x0b\xe5\x9a\x0f\x17\x4b\xe6\x8a\x98\x5f\x07\x8b\x63\x1c\xfa\xcd\x98\x8b\xa6\xdf\x14\x76\xba\x3f\xe0\xf9\x0d\x1e\xa1\x61\xdf\xdc\x03\xcd\x6c\xc2\xe4\x8b\x69\xff\x6d\x45\xbf\x28\xd0\xff\xcc\x89\x02\x4e\xf7\xa0\x2f\xa2\x99\xa2\x7e\x4f\x8e\xa9\x1e\x20\xe1\xbb\xb4\xc1\x15\x78\x16\x24\x3e\x5f\x81\xc8\xa2\x49\x42\x5e\x77\x35\x85\x2b\x70\xd2\x7e\x9f\x45\x49\xba\x7e\x9f\x68\x0f\xfa\x7d\xc1\xe0\xe5\x01\xd7\x46\xf8\x03\xe4\x14\xfe\xe9\x90\x02\x7d\xf1\x83\xc5\x88\x35\x85\xc8\x35\x08\xb0\x91\x2a\x15\xff\xe6\x94\x05\x25\x54\x80\x72\x6a\xf2\x0b\x09\xc6\x9c\xe2\xfd\x62\x4e\x58\x9d\x97\x2b\x2e\xa8\xaa\x83\xb4\xf0\x59\x23\x20\x29\xac\x4b\x0e\x5c\x89\x37\x33\x11\xda\x8b\x0a\x4f\x1d\x80\x8b\x15\x04\x6c\xf4\xbf\x50\x30\xc0\x09\xd6\x2f\xc8\xce\xce\x6d\x7e\x31\x5d\x97\x9d\x19\xae\xbc\x4e\x84\xe6\x90\xd7\x15\xd5\x6f\x90\xb4\x8a\x2b\x5e\x9f\x3c\x5c\x9d\x93\xf8\x82\xf6\xd2\xe9\xd0\x2f\xfa\xc7\x39\xe5\xef\x95\x39\x29\x0f\x31\xf1\x5b\x80\x59\xfe\x72\xa2\x24\x17\x82\x15\x86\xb3\x68\x5f\x0c\x17\xf5\x6e\x97\x75\xb0\xfd\x02\xf6\x46\x62\xd8\xc5\x12\xb7\x12\x55\xaf\x42\x4d\x71\xf4\x03\xe0\x93\x58\xd4\x55\xb8\x79\x6e\x47\xe6\x03\x31\x9c\xab\x90\xf1\x8a\xd6\x5c\xf0\xb8\x73\xae\xe7\x8b\xba\x4d\xfb\x5b\x5c\x75\xd5\x64\xd4\x6f\x4e\x41\xb4\xe4\x82\x45\xd5\x29\xaa\x2f\xc8\xb2\x4e\xdd\x7c\xd5\x45\xc0\xb5\xa8\xca\x21\x05\x85\x25\xcc\xaa\xc3\xc6\x22\x7c\xfe\x8d\x04\xaf\x5e\x33\x34\x99\x2d\xfe\x4d\x29\xd7\x7e\x21\x69\x46\xff\x39\xb1\x88\x61\x30\xcb\xbd\x98\x5c\xac\x1b\x64\x34\xcf\xda\x73\xe9\xa2\x9a\xb3\x1b\xc8\x30\xcf\x3a\xb3\xf3\xb5\x84\x63\x83\x80\xe9\xc6\xc4\xc3\x2e\x84\x9b\x3a\x67\xf1\xd5\x17\xa6\x68\x12\x90\x8d\x9d\x52\xe7\x62\xf6\x31\x3b\xb1\x5c\x8c\x3f\xed\xde\xa7\x7e\xfe\xf3\xe7\x27\xce\xee\x5a\x3e\x7c\x3e\xa6\x9d\xdb\xe0\x2e\x17\x3a\x7b\x4c\xa0\xb3\xc1\xba\x84\x61\x5d\x50\xaf\x95\xa9\x43\x1f\x20\xdd\x98\xf3\xc7\x5e\x83\x1e\x2c\x12\x45\xae\xc1\x9b\x97\x14\xc4\xd7\x58\x17\x4a\x8d\x31\x48\x70\x85\x1c\x37\x72\xfd\xd9\xec\x75\x27\x9e\x52\x5d\xef\x6e\x06\x2e\x59\x3e\xb8\x51\x28\xd7\x29\x47\x6f\x16\x1b\x31\x9f\xb8\x59\xe8\xcd\x7e\x32\x37\x7c\x6b\x9d\x0b\xf3\x26\x31\x91\xd0\x7f\xf3\xde\x6d\x22\x7e\x7f\xb4\x23\x05\x0f\x99\x49\xbf\x24\x53\xdd\xb8\x5a\x3b\x39\xe6\x9d\xd7\x99\x88\x7a\x40\x05\x87\x26\x49\x8f\x10\x47\x46\xdd\x24\x36\x3a\x55\x37\x69\x4b\xf6\x08\x93\x73\xd2\x07\x48\x06\xe8\xc4\x52\x37\x3d\x44\xec\x6c\x73\x23\x10\x6a\x74\x21\xdd\xbd\x88\x4b\xf1\x27\x05\x5d\x68\x92\x4c\xf5\x67\x66\x75\x97\x05\x7c\xcd\xaa\xf0\x28\x34\x7f\xf2\xad\xcb\xd5\x65\x6e\x5a\x5f\xec\xb0\x73\x33\x14\xca\x56\xc3\x1b\xd6\x14\x5b\x04\x6e\xdc\xad\x9d\x4e\xe8\xe6\xd5\xd9\x9e\x2d\x77\x65\x48\x4a\xf2\x1b\x83\xd3\xd4\x7e\x21\x77\x8f\x53\xe5\xde\xb8\x4c\xdb\x8f\xf0\x26\x01\x12\xb7\xb9\xeb\xc2\x10\x21\x00\x52\xef\x14\x95\x6f\xee\x37\x5c\x74\x9d\x7d\xe5\x66\x91\x12\x03\xa6\x01\xe7\x44\x45\xef\xb6\xb6\xd3\x0f\x30\xa4\x88\xca\xdd\x88\x83\xba\x72\xdd\x9d\xcb\xd6\x14\x3a\xf7\x42\x90\x46\xb2\x40\x27\x3b\xb8\x61\xa6\xb0\x87\xc7\xbd\xae\xb6\xba\xcc\xdc\xa8\x10\xf7\x83\xf5\x74\xc0\xb5\x47\xc5\x8d\xec\x81\xdd\x7c\xfc\xa6\x47\xae\x19\xff\x8d\x60\x70\x07\xe7\xdd\xb0\x2c\x38\xb0\xe7\x66\xcd\x38\x73\xe1\x9b\xd9\x02\xcd\x86\x6f\x66\x0b\xb4\xa3\xca\x0d\x0a\xe0\xc8\x99\xfb\x23\x00\xc9\x54\xea\xc6\xf9\x4f\x36\x0d\xdc\x27\xeb\xec\x08\x2e\x08\xab\x32\x73\xb9\x4f\xa6\xb8\x54\x07\xe7\x42\x6a\x4d\x01\xb6\x09\x6b\x0a\x6f\x24\xe6\x71\xf6\x80\xfb\x64\xa4\xae\x76\xea\x24\x60\x05\x68\x56\x85\xf3\x21\xe1\xcd\xd5\x70\x46\xea\x1e\x47\x24\xdc\x70\x1a\xb1\x67\xf4\x8d\x8b\xeb\x18\x7f\x15\xf2\x7a\x7f\x97\xda\xf4\x43\xfd\xe0\x51\x62\x37\x83\x1b\xf1\x5a\xf6\xaa\xbe\x2f\xd8\x7e\xbc\x58\xc4\x84\x77\xdd\x9a\x6f\x46\x6b\xd9\x05\xe5\x46\xda\x9f\xd1\xc5\x69\xee\x0b\x3e\x2f\xe2\xe6\xf7\x77\xc5\x4d\xe1\xa7\x9d\xcb\x73\x8f\x13\x68\xa5\xf7\x6f\x1a\xe8\x34\x43\xe4\xf8\x69\xe2\x11\x37\x1d\x52\x7c\x32\xbe\x2b\x70\x72\x7d\x80\xfb\xbb\x01\xe7\x1f\x04\xb8\x17\x1f\xf3\x0b\x3c\xff\xdd\x3d\x30\x98\x5f\x33\x42\x35\x14\xab\x76\xef\x75\x23\x8e\x7e\xe1\x84\x2f\x92\x80\x74\xaf\xa3\xa2\x35\xe2\x06\x6c\x0f\xaf\x1b\xd5\x50\x9c\x99\xfd\xbe\xc9\xf8\xbc\x48\xa4\x09\x72\xb5\x94\xfb\xa1\x1c\xe7\x2f\x9e\x04\xa4\x13\x12\x30\x20\xcc\xa2\xe0\xcd\xea\x28\x16\x26\x6f\x04\x84\x95\x60\x0a\x81\x6b\xb0\xfd\xce\xef\xef\x1a\x1c\xed\xd9\x76\x2f\x57\x67\x0f\x49\xc2\xfa\xf3\x02\x2a\x56\xe9\x5a\x7b\xbf\xa8\x50\xee\xd3\xfb\xd2\xaa\xf3\xf3\x00\x04\xc1\x1d\x20\x6f\xb5\x7d\xe5\x6f\xdc\x83\xed\x7d\x7f\xe3\x1e\x6c\x45\xc3\xcd\x20\x78\xfb\x4b\xdd\xac\x9e\x62\xe4\x5b\x17\x61\xb1\xff\x1b\x17\xe1\xf0\xd3\x03\x01\x2d\x01\xf9\x9e\x48\x93\xe0\xc3\xc9\xd4\x46\x96\xc9\x6f\xa6\x36\xb2\xd7\xd7\x3d\x91\x07\xcb\xf8\xbb\x6e\xc2\xe6\xbc\xac\x88\xf7\x83\x0e\x93\xae\x68\xc5\x83\xd0\x19\xd3\xbf\x81\x1e\x66\x7a\xcc\x4b\x6d\x3f\xae\x7b\xdd\x7d\x25\x42\x3e\x07\x6f\x85\xd2\x64\x3e\xac\x78\xe7\x54\xbe\x0f\xef\xae\xcd\xbf\x71\x70\x45\x17\x9f\x63\x91\x56\x3f\x00\x3a\x34\xf7\x08\xb2\x24\xbe\xfa\xc0\x2b\xda\x1e\xa5\x0f\x43\xc2\x2c\xf8\x3f\x70\x8b\xb6\x93\xea\xc3\x9b\xac\x18\xd0\x43\xd3\x54\xf4\x6f\xec\xbe\x70\xfc\xc1\xc5\xb6\x89\x7d\x3c\xbc\xd8\x4a\x21\xf0\x84\x05\x57\x0f\x40\x6f\x80\xe2\x1e\xd7\xf6\x6b\x8e\x88\x61\xb6\xe6\xe7\x59\x6a\x73\x49\xbd\x0f\x79\xbf\xee\xeb\x0f\x62\x9c\x5b\x77\xfb\x3a\x34\x7e\x01\x09\xc0\xb4\x95\x0f\x63\x9c\x83\xae\x68\x4f\xe5\x51\x17\xdc\xe9\xdd\x69\xd5\xfd\x03\x67\x4e\xab\xd3\x1e\xdc\x35\xec\x19\xf6\x34\x82\x45\x6b\x40\x71\x5a\x5b\xa2\x9f\x46\x45\x8b\x7f\x37\x50\x70\xff\x5e\xb8\xa2\x19\x74\x0e\xa0\x01\xfb\xc2\x68\x8d\xc8\xfa\x64\x41\x24\xfa\x41\x65\x7f\xe3\xe7\xd3\xd7\xb9\xd3\x9c\x10\xff\xec\x12\x55\x0f\xe3\x9f\x43\x8d\x7f\xc3\x83\x9e\x25\x28\x48\xba\x7d\xc6\xc2\x66\xad\x61\xd0\x28\x29\x36\xf4\xc0\x79\xb3\x75\xbf\x40\xe9\xc6\x1b\xb7\xc4\x7a\x51\xab\x87\x3e\x07\xf6\x00\x7c\x4e\xf8\x2b\xeb\x54\x3e\x2c\xe7\x1a\x44\xd6\x1f\xb8\x6f\x5a\xd7\xfa\x9c\x14\xb1\x24\xf0\x3e\x4c\xea\xeb\x98\xba\x07\x49\xf4\x9a\x4d\xe3\xcf\x45\x32\x2d\x01\xf7\x81\x8e\xd8\x9c\xe2\xb9\x0a\xbb\xf0\x0b\x8d\x0f\x34\x2d\x32\x54\xbb\xdd\x3d\xf0\x1a\xb0\xbb\xd1\x43\x9d\xb1\xdd\xe8\x9e\x6b\x95\x1a\x77\x17\x10\x10\x44\xe3\x9e\x7b\x81\x42\xfb\x09\xad\xb1\x9d\xd2\x9e\x7b\xcd\x4a\xfb\x79\x2f\xd8\x68\x8c\x7b\x4d\x53\x5b\x76\x77\x9e\x7e\x0f\xc2\x42\x56\xc6\x43\x84\xeb\xd8\x3f\xe2\xb9\x21\xa0\x1a\xeb\x98\xa7\x25\x54\x3f\x00\xfd\x30\x8d\x63\x36\x61\x3b\x05\x3c\x0f\xb3\x30\x4a\x9e\x7c\x96\xfb\x43\xf6\x27\x20\x19\x46\x7d\x56\x04\xb3\x41\xfe\x79\x48\xf5\xc4\x37\x1f\x32\x41\x13\x84\x87\xb3\x16\x24\xa0\xfb\xb5\x30\xf6\x20\x08\xda\x16\xcc\xe7\xe3\x71\xd1\x5a\xcb\x07\x2c\xcd\xc6\xc3\xe7\x5d\x67\x4b\x1d\x32\x06\xda\x4e\x8b\xcf\x4b\xb2\x26\x81\xf4\x41\xf1\x85\x61\x44\x7d\x17\x89\x11\x24\x5f\xd4\xbf\x96\xc4\xfa\x50\x9b\x6b\xbf\xc8\x67\x42\x04\x8a\x7e\x21\x73\x08\x3f\x28\x90\x3f\x34\x07\xb8\x76\xda\x58\xf8\xd0\x57\xc2\x35\x11\x9f\xc9\x65\x6f\x38\xbe\x8b\xff\x88\xb1\xbe\x07\xc5\x8d\xe8\x37\x10\x83\x26\x94\x7a\x8f\x75\x9a\x86\x1e\xdc\xfc\x22\xe9\x01\x52\x39\xeb\x48\xbf\xe0\x1f\x36\x02\xbc\x21\x70\x99\x1a\x82\xbe\x0c\x56\x30\xbc\x61\x4d\xc2\x9f\x60\xda\x42\x98\x37\xd2\xb7\x52\x9c\xf6\x85\x23\x41\xb3\x83\xc5\x4b\x87\x4d\x1b\x98\x5f\xa6\x4a\xb1\xce\xe1\x45\x5a\x5f\xdf\xa3\x5f\x64\x42\xb1\xd2\xf8\x4d\x04\x8d\xe4\xf9\x77\x15\xa7\x97\x48\xf1\x22\x98\xd7\x2a\xdf\x17\x79\x7e\xad\x4a\x7f\x13\x97\x21\xc4\x7f\xa9\x81\xb0\xbe\xe0\x4d\x4b\xcd\xa1\x95\x23\xa4\xc4\x06\x80\x37\xa3\xa2\xb9\xd0\xf8\xcd\x0d\xed\xea\x00\xea\x03\xeb\x93\x5e\x68\x22\xad\x26\x7c\x51\x46\xde\x4a\xe7\x97\xc5\xa5\x42\xf3\x07\xc0\x98\xe0\x09\x50\xc5\x26\xe9\xf2\x65\xf5\xa9\xfa\x33\x04\x29\xb4\xa4\xc1\xb7\x10\x70\xda\x0b\x96\x0a\xb0\x96\xe4\x85\xb6\xc0\x57\xdc\x17\xe1\x21\xd6\x71\xbd\xbc\xfa\xd7\x9f\x07\xe4\xff\xc5\x5f\xc0\xd9\xaf\xff\x55\x8a\xd4\x17\x5e\x98\xbe\x1a\xbd\x75\x6d\xa4\xe6\x43\x2f\x4c\x2b\x5d\x5e\x84\xfe\x5a\xdf\xf1\xc2\x09\xd3\x1a\xb2\xb7\xf2\xa2\x50\xfc\x01\x8f\xb2\x74\x13\xef\x52\x0c\x88\xf3\xbd\x8c\xfd\xb0\x1a\xe6\x6d\x44\x59\x29\x40\xde\xb6\xa6\xa5\x4f\x10\xfc\xe1\xfb\xcc\x8b\x2c\xbe\xce\xde\xf8\x36\x52\xc9\xea\x2e\x2b\x3e\xd0\xba\xa8\x8f\x74\xe6\xc4\x97\xfa\x47\x6b\x89\x5f\x26\x55\x09\xb2\x7d\xbe\x50\x3f\x34\x7b\xe4\xbc\x50\x3f\x98\xd1\xbd\x10\x3a\x7c\x5f\x79\x61\x69\xb7\x4c\xfc\x42\xfb\x60\xa1\xf9\x45\xee\x3a\x0b\xee\x2f\x4b\x53\xf5\xea\x17\x80\x91\x3e\x13\xfd\xc2\x6f\x4d\x91\xf1\xc1\xe2\xbc\x2f\xeb\x9d\x76\x89\x10\xef\xe0\x8c\xb4\x6a\xd6\x36\x08\x12\x78\x5f\x38\x4a\x5a\xbc\x7c\x07\xa7\x2c\xb8\x8e\x05\x47\x7f\x40\x1e\x28\x01\xe1\x85\x94\x62\x31\xe6\x1d\xbc\x0b\x7b\x2b\xc6\xc2\x58\x4f\xe2\xe1\x03\x0f\x42\xa9\xda\xeb\x80\xe5\xdc\x42\xc8\xcb\x92\xa8\x96\xff\xde\x73\xed\x9e\xe6\x7d\x2e\xd0\x69\x10\x28\x1c\x2c\x1a\xbd\x9f\x60\x13\x1d\x7f\xf6\xc2\x59\xf2\x07\x74\x27\xcf\xb2\x18\xce\xcb\x72\x54\x41\x97\x89\x97\x82\x8f\xd7\x85\xb8\x15\xf3\xe1\xf7\xe2\xa4\xdd\x4e\x75\x97\xee\x06\xef\xc5\xeb\xea\xcf\x17\x08\x1b\xb1\x3f\xca\x7b\xad\xc2\x98\x9a\xf5\x45\xd5\x8f\xf8\xe4\x0b\x31\xa7\xeb\xe2\xff\x7e\x62\x4e\xb3\xcf\xd7\x7b\x93\x5f\x18\xa7\x6e\xe0\x9c\xb8\xe0\x8b\x18\x65\x33\xde\x77\x09\x39\xc6\x29\x5c\xfc\x7f\x98\x1c\x64\x1c\x57\x7a\x7a\x21\xe2\xfc\xb0\x34\x18\xbe\x2d\x9f\xbc\x4c\x0a\x73\x78\x02\x50\xca\x7b\x42\x0f\x2f\xc8\x92\xa3\x5f\x5c\xf3\xbb\x04\xb3\x77\x39\x7c\xea\x0e\xf5\x42\x3c\xf9\xe1\x4e\xbc\xa3\xdb\xbd\xf9\x45\x3d\x04\x57\x68\x7e\xbf\x2b\x77\xb2\x0d\xea\xa5\x7c\x62\xe6\x44\x61\xa3\x9b\x23\xbe\x1c\x41\x30\xa0\xaf\xa6\x1d\x7d\x5e\xda\x92\xed\x10\xfd\xb2\xa2\x81\x3d\xa8\xdf\xb9\x00\xaf\x65\xcd\x05\x58\xcd\x82\xa1\xc4\x9e\x25\x4b\x88\x06\xa9\x95\xde\xc9\x20\x5d\xe3\xe4\xe4\xb4\xb4\xb9\x94\x58\x8a\xdb\x59\x24\xc4\x73\x00\x72\x88\xd9\x4c\x26\x96\xb3\x7a\x73\xb2\x64\xbc\xbd\x98\x27\x6e\xd0\x8e\x9f\x9d\x88\x34\xee\x3f\xbf\x79\xce\x44\xbb\xe7\xb1\x8e\xff\xd0\x03\xe4\x78\x14\xd5\x9c\xb8\x51\x9b\x1b\x4d\x18\x87\x3f\x6a\xf0\x17\xdc\x68\x22\x5d\x8a\xa9\xfc\xc4\x6d\xd9\x34\x7a\x7e\xc2\x4f\x32\x8c\x67\xe0\x74\xb5\xbe\x50\xb9\xbe\xa4\x07\x34\x21\xe8\xbe\x3d\x19\x42\x6c\xb7\x9f\x19\x40\xbe\xaa\x5f\x00\xcc\x45\xef\x66\xe0\xfc\xfd\x3e\x64\xe3\xe0\x29\x31\x8e\xeb\x67\x48\x88\x5f\x3a\x91\x33\x52\x12\xd2\x91\x9d\x91\x24\xb5\xf9\x0d\x1c\xc9\xea\x17\x16\xd0\x35\x07\x86\xcb\xd8\x89\x7a\xb2\xea\x42\xf6\x0b\xe7\x27\x1c\xeb\xda\x37\x99\xbb\xd8\x7a\xec\x19\x29\x24\x88\x98\x4d\x56\xab\x0a\x3f\x5d\x10\xc3\x8d\x2b\x91\x65\x50\x35\xab\xc4\xbd\xd0\x1c\xd2\x4a\x0f\xaf\xcd\x4a\x6b\x5d\xfe\x82\x17\x2a\xdd\x23\x26\x2b\x4c\x55\x4f\x2b\xc1\x07\x4b\x08\x3d\x13\x37\xc3\x5d\x92\x97\x34\x0f\xca\xdd\xd1\x24\x61\xb0\xfe\xd9\xcd\x34\xe1\x9a\x26\xd0\x32\x2c\xd9\x51\x27\x93\x71\xc9\xf5\xe7\x01\x50\xce\x08\x9e\xa9\x53\x12\xf5\x99\x28\x40\x95\x7f\xba\x04\xce\xe9\xe0\x4f\x78\x8b\xfe\x40\x36\xaf\xdd\xd3\x22\x28\x66\x7a\x37\x19\xb7\x6c\x33\xfc\xa4\x58\x69\x7c\xc8\xd0\xdf\x49\x6e\x9d\x99\x8b\xf4\xef\xc9\x35\xa8\x83\x42\xe9\xc8\x58\x5e\x18\xee\x20\x5e\x34\x19\xa7\xdc\xbd\x15\xc8\x19\xf3\x03\x58\xfa\x7b\xda\x2a\x31\x0b\x27\x25\x30\x40\xaa\xb4\xc6\x79\xd2\x7b\x53\x1a\x9b\x49\x2d\x93\xfd\xc2\xe7\x20\xc3\xd5\x14\x90\xb2\xd6\x5e\x83\x73\x49\x01\x3e\xbc\x54\x6f\x54\x7f\x80\x83\x64\xc0\xc3\x7d\xae\x4b\x4d\x35\x4f\x8a\xce\x26\x77\xe7\x5a\xa4\x1f\x2c\x04\xd4\x98\x9f\xd8\x90\x5d\xa6\x7c\x9e\x1d\xbf\x35\x67\x58\x1d\x7e\x3b\xf8\x20\xff\x73\xb6\x4f\x4e\x49\x40\xa0\xb7\x9c\x2e\x35\x13\x59\x4b\xec\x88\x36\xaf\x88\x20\x12\x8d\x77\xad\x29\xbb\x03\x6c\x83\xa1\xc8\xec\xb3\xf6\x21\x9c\xc8\x6a\x62\x69\x7f\xc2\xb0\x70\xfc\x74\x00\xad\xaa\xc9\x15\x2b\x26\xd9\x31\x72\x22\x91\xdc\xd0\x85\x63\x2e\xbd\x88\x69\x2a\xb3\x9a\xd8\x34\x33\x51\x3f\x20\x46\xff\xce\x48\xf7\xae\x1e\xa1\x38\xb1\x46\x7c\xde\xbc\xb9\x79\xce\x50\x93\x64\xbb\x1d\x4e\xe6\xb3\x6d\x3f\x63\x52\x24\x34\x55\xa5\xd0\xd0\x7e\x1e\x40\x24\x34\x79\x7a\xd6\xb4\xd5\x27\x15\x25\xc6\x57\x66\x8f\xb3\xab\xf9\x64\x74\x6c\xfb\xf9\x02\xcc\x23\xfe\x95\xba\x6e\x2e\xd3\xc2\x4f\x77\xe0\x6b\x52\x28\xce\x97\x57\x14\xe3\x02\xfc\xdb\x2c\xc6\xcc\x97\x74\xdf\xf8\xbc\xb4\x22\xde\x6c\xe4\xbf\xb5\x65\x60\xbe\x4c\xa2\xe4\x1e\x69\x92\x35\xd9\x47\xfa\xdb\x1f\xf4\x45\xfa\xdb\x2e\x9d\xd7\x7c\x59\x90\x4b\x2b\xa6\x21\x20\xf8\xfb\xc5\xab\xdc\x01\xf0\x59\x6a\xb6\x09\xa5\x8a\xb3\xae\xce\x65\x18\xf0\x1a\x10\x91\xd2\xa5\x39\x9a\x73\x81\xc9\x5f\xac\x23\xa7\x21\x3e\x31\x28\x59\xed\x36\x11\xb2\x62\x17\xb8\x39\xc9\xaa\xcc\x57\x3e\xa1\x26\xd9\xcc\x3c\xe7\xc2\xe8\x35\xc4\x38\x50\xf2\x40\xc4\x6e\x1c\x07\xbc\xe3\x77\x8f\xe3\x38\x78\xc7\xe9\x7e\x90\x3e\xb0\x1d\xfe\x80\x9a\xa1\xee\x1e\xb1\x11\x5b\x83\x36\x0e\xe8\x75\xc4\x6e\xc7\xb1\xca\xa8\x67\xf7\x78\x61\x11\x59\xbf\xa9\xd6\xd9\x7c\x69\x1c\xb0\x1b\x8c\x2d\x04\x8f\x03\xd9\x54\x44\x28\xc6\x01\xb5\x4f\x74\x3b\x6a\x2e\x8c\xa6\x76\x24\x53\xe9\x43\xfd\xa1\xe4\xc2\xf1\xf3\x1b\x6e\x7d\x9e\x10\x05\xa1\xe1\xdf\x15\xe3\x27\xfd\x6e\xf0\x3e\xf5\xf7\xa4\x33\x55\x4b\x0c\x90\x28\x8a\x7f\x9f\xd8\x05\x7f\x40\x4d\x56\xf7\x0b\x88\x1d\xd9\x07\x76\x1c\x88\x12\x1e\x87\x7f\x4f\x98\x07\x05\x74\x04\xbc\x48\xf9\x32\x0e\x64\x55\x19\xde\x14\x84\xbb\xc8\xfd\x60\x1c\x11\x25\x6b\xb3\xdb\x1b\xde\xd7\x1e\x45\x6a\x15\x86\x5f\xa0\x44\x53\xfc\xe0\x05\x9e\x08\xc6\x91\xba\x98\xae\x35\x21\xc6\x38\x19\x06\x48\x40\xa7\x4c\x1c\xe3\x80\x8a\x4a\xda\xbc\x71\x24\x02\xd5\xed\xd4\x92\x55\x41\x3d\xb1\x66\xa8\xd6\x00\x71\x46\xb1\x55\xe3\x48\x70\xe9\x33\x62\x26\x62\x85\x3b\x24\x63\x6f\xea\x20\xc3\x22\x5a\xb4\x04\xf8\xdf\x55\xa3\x3a\xb3\xd3\x29\x53\xd3\x38\x32\x69\xcc\xf0\x03\xf8\xc5\x7b\x8d\x8c\x65\xf1\x1a\x21\x9c\x8c\x20\xb0\xc2\x83\xa6\xff\xcc\x00\xc9\x47\x8c\x68\x99\x82\xa4\xd7\x00\x61\x45\x2e\xb0\xe3\x40\x30\x8b\xb2\xe9\x8f\xa3\xe0\xf0\x05\xbd\x8f\xd0\x94\x11\xf4\x3e\x24\x93\x9f\x09\xc3\x15\x6f\x04\x7f\x0f\x7a\x11\x04\xc3\x32\xfe\xf9\xd3\xb2\x17\x50\x88\x98\xc6\x03\x04\xa6\xe8\x1a\x3e\x8e\x42\xd6\xd2\x84\x99\x85\x50\xd7\x8c\x10\x97\x92\x7c\x16\xe1\x3a\xd3\x4c\x6f\x2a\x39\x8b\x0f\x27\xe3\x52\x3c\xe5\x4f\xf4\x49\x3f\xdb\x4c\xfb\x9a\xdc\x90\xc6\x51\xe1\xd8\x9f\xfe\x46\x23\x37\x0e\xa4\xce\x1b\x3e\x28\xac\xfc\x10\xfc\x9b\xb7\x5f\x43\xa0\x3e\x30\x72\xfa\x85\x17\x17\x76\x41\x10\x7e\x7f\xf2\xf5\x1a\x07\x63\x98\x7f\xe6\x0f\x5d\xda\x88\x5a\x5f\x23\x7d\x1c\x82\x18\x62\x96\xb3\x91\x04\xba\xb4\x11\xdd\x8e\x7c\xe4\x3e\xbb\xad\xe3\xb7\xdb\xa9\x9c\x19\x7e\xe1\xc4\xa6\xfb\x05\x64\x76\x36\x71\x81\xa7\xdf\x88\x5a\x22\x92\xef\x65\x13\x1b\x38\xf6\xa9\xc6\xdb\x38\xa0\x78\x53\x8a\x90\x71\x74\xae\x48\x13\xee\xe9\x9f\x3f\x45\x89\x6b\xc7\x41\xe3\x5f\x71\x7f\x64\x63\xde\x31\x6a\xe6\x3c\x61\x26\xf3\xfb\x99\x31\x1c\x87\x86\xc9\x1b\x34\x75\x23\x0a\xa9\xfa\x42\x4b\x01\xb5\x93\x45\x78\xdb\x3a\xf9\x9a\x4f\x4a\xc7\x3e\x25\x6d\x0b\x83\x62\x9a\x5f\x18\x01\x67\x53\x5d\x2e\x83\xa1\x67\x39\x68\xf9\x31\xbd\x60\x5d\x89\x1f\xce\xc6\xe4\x7f\xc1\xd3\x1a\xd4\x71\xfb\x8d\x73\x61\x87\xe6\x79\x52\x06\x68\x02\xf6\x49\xfe\xfa\xf3\x06\x8e\xb8\x79\x07\x0b\x47\xd4\x9f\x2f\x2a\xdc\xf2\xfc\x01\x50\xdc\xf8\x71\x52\xc5\x24\xe0\x9d\x84\x84\xd6\xc5\xc0\xe5\x66\x96\x0f\x55\xdb\x48\x5a\xc5\x32\x41\x0e\x4d\xe1\xa2\x89\xc3\x3b\x7c\x2d\xc2\xe8\x37\x40\xdc\x93\xd6\x7d\x51\x8a\x35\xbb\xf8\x44\xf1\x74\x98\xa5\xb2\x52\xd7\x0f\x4f\xbe\x28\x4d\x15\x4d\x13\x92\x74\xf0\x0b\x4c\xc8\x2c\xe3\xfe\x38\xee\xb5\x3f\x02\xc4\x32\x28\x76\x77\xb1\x4e\x8a\x46\x85\xf6\xed\x30\x66\xdf\xeb\xf4\xfb\x05\x14\xb2\xaa\x02\xc5\x92\x83\xbb\x1f\x70\x37\x0c\xbc\x87\x3a\x11\xcf\x13\xfa\xb5\x91\xd4\xe5\x43\x54\xed\x82\xcd\x43\x4b\xb7\x67\xf5\x20\x42\xc7\xc0\x63\x3e\xc0\x66\x89\x8a\xb5\x1f\x2c\x0d\x40\x38\x56\x66\xfd\x71\xc0\xe9\x45\xa1\xed\xe3\x58\x06\x42\x03\xe2\x45\x42\xa9\xa2\x39\x32\x9c\xba\x99\x68\x21\xf9\x5f\xfe\x79\x81\x66\x69\x63\x21\x35\x74\x3f\x12\xc6\xa4\x25\xc3\xac\x8b\xf1\x1d\x3f\x82\xe1\x64\xbe\x1c\x2d\x6b\x2e\x9c\xd0\x20\x93\x1b\xe8\x1e\x20\x60\x4b\xe4\x08\x4b\xe1\x36\xfc\x00\xeb\xce\xfe\xcd\x0b\xa0\xce\x5f\x40\x3c\xc6\xb0\xa4\x18\x96\x4d\x51\x07\x32\x1c\x14\xd5\xba\x1f\xf0\xe2\x2c\x60\x07\x16\xec\x52\xbc\xc5\x08\x81\xa3\xaa\xcf\x40\x75\x80\x80\x15\x02\xd2\xe2\xa4\xbf\xc9\xcb\x3d\x42\xa0\x4b\xff\xbe\xdf\x8d\x40\xa5\x9a\xa5\xd7\x10\x88\xc6\xc3\x33\x02\x75\xdc\x8a\xcc\x11\x98\x96\x4f\xe1\x15\x23\x30\x0b\x9f\xaa\x59\x8f\xc0\xfa\x0e\xb2\x41\x8f\x10\xd7\xa2\x34\x6a\x5c\x90\xd2\x27\x91\x5c\x55\x7d\x46\x1a\x70\x0c\x7c\x94\x73\x08\x87\x7f\x93\xe2\x0a\x87\x02\x2b\x76\x05\xf1\x95\x00\xb3\xa6\xa2\x08\x47\x60\x71\x52\x4b\x74\x21\x11\xb2\xfe\x4d\xc8\x56\x3f\x20\xef\x1f\xee\x92\x42\xa2\x4e\x5b\x58\x76\x4d\x1d\xa6\x00\x25\x57\x89\x87\x47\xe5\x19\x1f\xee\xf4\xe1\x1b\x42\x01\xc6\x30\x57\xa3\x51\xee\x7c\x43\x3b\x80\x9a\xa5\xd1\x13\x85\x6d\x73\x64\xf7\x70\x41\xf6\xd5\xac\x90\x2a\x4f\xb5\xea\x47\x80\x58\x97\x7e\xde\x47\x60\x92\x41\xb7\x74\x50\x46\x53\xe4\x94\x51\xe1\xd8\x11\xca\x9a\xa2\x7a\x84\xe0\x27\x3b\xc1\x08\x14\xf4\xb2\xdb\x01\x28\xd3\x8c\x40\xc9\x4f\xb7\xb0\x50\x18\xd3\xe3\xcd\x60\x52\x9a\xf1\xf3\xe0\x22\x14\xf4\x49\x5d\xfb\xa7\x65\x42\x96\x2b\x9e\x35\x8c\x99\x23\xbb\x7d\x91\x04\x6d\x4e\x05\x9b\xc8\xfe\xdd\x38\xa6\xd6\x89\x0a\xa7\xc3\x24\xa0\x32\x0d\xad\x3f\x00\x60\xab\x7f\xf3\xf4\x1a\xd1\x29\x7d\x89\x53\x05\xb8\x42\x0d\xf1\xf0\x00\x69\xac\x77\x8f\x08\x69\xec\x90\xf0\x13\x20\x7d\xa9\x9e\xf9\x08\x90\xbe\x7c\x31\x0a\x6d\xc1\x4d\x8b\x6e\x0b\x6e\x7e\x40\x75\x8c\x71\xb4\x53\x4b\x6a\x1c\xa5\x40\x55\xf4\x45\x27\x7f\x15\xdb\x09\x94\xa0\xba\x11\xb0\xe3\x20\x34\x9f\xbe\x8e\xba\x3a\xc6\x30\x4a\x50\xc5\x3d\xac\x59\xf9\x05\xb0\x25\xaf\x0b\x91\x14\xbe\x79\x04\x24\x43\x2e\xd1\x18\x45\xeb\xa7\x27\x49\x0f\x2b\x5f\xe0\x02\xa2\x88\xab\x0f\xeb\x58\x24\x45\xeb\x66\xd2\x17\xe3\xec\xa0\xc9\xc6\x18\x06\xcf\x6b\x95\x81\x1b\x61\xac\x39\xe8\x01\xeb\x53\x34\xef\xd6\x49\xc8\xa9\xcb\x33\xc3\x7f\x54\x3d\x9e\x0b\x4e\x9a\x35\x4b\x9c\xc6\x20\x84\x80\x25\x73\x98\xfc\x9e\x84\x8b\x56\x75\x22\x2d\xae\x57\x49\xe9\xc9\xc4\xfe\x5a\x8c\x50\x1d\x7c\xd2\x53\xb3\x5c\x19\x20\x3d\x95\x28\xf9\x3e\xb0\xa0\x45\x77\x97\x17\xd8\x75\xd5\x2a\x29\x3c\x55\x41\x9e\xc2\x53\x37\x20\x59\x27\x35\xf9\x05\xac\xc1\x84\x16\x76\xcd\x31\xbc\x77\x17\x19\x42\xf8\x9b\x7c\x3f\x23\x50\x16\x1b\x06\x3b\xcb\x65\x34\x23\x0f\x94\x98\x63\x18\x8a\xf4\x80\xf6\xc5\x33\xdc\x15\x1e\xea\x9a\x32\x0c\xa1\xc1\x40\x40\x4c\x70\xd2\x45\x34\xa0\x18\xc6\xa8\x6e\xc7\x36\x54\x8f\x88\x3b\x8c\x49\xc9\x8d\x08\xc2\xee\xf1\x50\xbb\xcc\x04\x92\xf9\xfe\xcc\x12\x91\xc8\xd9\x37\xf5\xb0\x14\x9c\x7a\x1f\x6e\x5e\xc3\x14\xfb\x01\xfb\xb3\x68\xf1\x74\x70\x3b\x81\x84\x69\x9d\x9b\xb7\xfd\x39\xc1\x2f\xfd\x1b\x0b\x30\x2e\x43\xec\xcb\xe6\x29\x70\x7d\x2e\x46\x13\x0a\x7d\x96\x2a\xe0\x15\x36\x4c\xd9\x10\xf0\xab\xf2\x3c\x23\xbc\xd0\x59\x79\xc2\x70\x6c\x6e\x06\x30\x7c\xc0\x2c\xd4\x07\xb8\x7c\xf5\xee\x1d\xa2\xdf\x72\xf3\x1e\xb2\x26\x6b\xf4\x9e\x4c\x7a\xcb\x79\x53\x26\x45\x13\xa9\x0b\x02\x33\xe2\x34\x77\x3a\xc9\x23\x24\xc3\x05\x18\x55\x47\xf3\x20\x0f\xbf\x10\x1c\xe0\x06\x36\x74\x7b\x89\xcc\x98\x63\x65\x5e\x64\xce\xbf\xfe\xf3\x00\xde\xaa\xd9\x5f\x70\x56\xba\xd3\x47\xf8\x21\x0f\xab\x5d\xe2\x81\xbd\x11\xf2\xc4\xe3\xe6\x24\x9a\x1e\x20\x92\xbf\xf8\x03\x96\x5a\xd9\x9b\x11\x03\x5c\xba\xc5\x2c\x23\x14\x88\x43\xc0\x8d\xf0\x33\x1e\xcd\xed\x38\xc1\xba\x46\xc4\xb0\x8c\xd3\xfe\x00\x5a\x12\xc9\xc2\x11\x4e\x63\xc3\xca\xaa\xc8\x12\x10\x51\x7a\x85\xf8\xc9\x5f\xed\x10\x27\x8c\x91\x80\xd5\x9a\x52\xe2\x07\x51\x0f\x10\xa4\xa0\x9d\x88\x89\x79\x26\x04\xc6\xb4\x46\x48\x7a\x80\x6c\x19\x06\x42\x22\xd4\xdc\xc1\x8d\x76\xcd\x88\x21\x69\x72\xf9\x1b\x11\x21\x69\x3e\x73\x31\x03\x6a\x9e\x32\xb3\xf5\xc9\xc3\x6b\xc4\xbc\xe6\xac\x39\xc1\xc7\x2c\xfc\xbc\x00\x38\xea\x94\x47\x66\xeb\xb3\xee\x23\xe6\xb5\xf7\x9a\x34\xbc\xd0\x14\xd6\x3f\x22\x35\x70\xdd\x23\x9c\x9c\x83\x56\x85\x82\xaa\xca\x63\x3b\x22\x03\x64\xad\x6e\x89\x19\x07\xb3\x78\xc8\xc9\x21\x35\x04\x9c\xce\x94\x55\x67\xc4\x12\xf0\x81\x86\x64\x6d\x2e\x2b\x67\x23\xac\x83\x43\x17\xd7\xc8\x08\xb5\xe6\xad\x61\xbd\x54\xf1\xe6\x88\x78\xd8\x21\xb9\x2a\xb2\x76\xd7\xe1\x0e\x80\x4d\xba\x5c\xc7\xca\x93\xac\x7b\x6d\xac\x3c\x43\xc6\xa6\x0a\xd3\x99\x64\xe0\x08\x37\xb3\xa1\x5b\x50\x64\x2d\xfa\x6e\x6c\x82\xd6\x4d\x39\x6e\x46\xa4\xd2\x4d\x8c\x37\x22\xc0\xad\x77\x63\x13\x93\xc3\xc8\xf5\x6e\xc4\xc6\x2c\xc8\x7f\x13\x53\x34\x22\xf3\xf8\x35\x9f\x40\x44\xbc\x0e\x6b\x2e\x23\x1d\xca\xe4\xd5\x34\x22\xc5\x2c\xf9\xff\x8c\xd8\x5e\x44\xfd\xf8\x85\xc9\x29\xaa\x0b\xe4\xe9\x6b\x5e\x03\xe2\x55\x93\x71\x05\x3e\xeb\x3f\x74\xa5\x77\xa4\xf2\x54\x87\x4c\xc3\x27\x37\xb9\x11\xfb\xc9\x29\xb8\x87\x87\x6f\x08\xbb\x58\x62\xc2\x0a\xd7\x38\xa0\x0e\xd5\x5d\x3f\x32\x15\x8b\xa2\xf6\x46\x84\x0b\xd9\xf0\x4e\x0d\x1e\x09\x2d\x02\xf1\xab\x43\x37\xa2\xc8\xb2\xf1\x36\x0d\x44\x64\x62\xf1\xd5\x3e\x32\x00\xae\xfb\xd8\x0e\x18\x23\xbc\x0a\x54\x43\x1d\xe2\x54\x11\xa6\xe5\xf1\xd3\x01\xe1\xe8\x43\x48\xbf\xf8\x66\x8a\xcc\x54\x2b\x92\xa1\x22\xb3\x18\x37\x93\x92\x93\xf9\x09\x7d\xc8\x50\x26\xec\xe7\x04\xc0\x1b\x6c\x58\x8d\x1c\x2f\xd2\x0e\xe9\x38\x22\xa4\xa8\xf4\x73\x2e\x99\x2c\xaf\x99\xdc\xc0\xfa\x3b\x24\x76\x47\x5a\x7f\x9b\x09\x18\x6a\x8f\x0e\xdd\x15\x22\xfd\xc3\xda\x4f\x97\xa4\x05\x3e\x88\x37\x65\x5e\x1f\x0b\x56\x83\x8f\x06\xde\x4d\x42\xee\x73\xb0\x24\x23\xd3\x38\x1a\x74\xe5\xd2\x37\x22\x7d\xc4\x2c\x8b\x44\xe8\xad\x86\x15\xac\xf1\x5e\xf3\xf0\x03\xdc\xe7\xe5\x9b\x34\x22\x1c\xdd\x87\x44\xeb\xf8\x80\xf4\x4a\x16\x8f\x0f\xb3\xd4\x6a\xa9\x0f\x62\xf6\xab\x7f\x43\x65\x21\x4e\x1f\x29\xfe\x48\x24\x8d\xcf\x82\x9d\x07\x00\x89\xf2\x59\x78\x48\x15\x8d\x55\x2f\x67\xa0\x0f\x5e\x8a\xee\x12\xb4\x23\x2d\xb8\x2a\x93\x33\x22\x6a\x56\x64\x13\x8c\x97\x34\xc8\x34\xe0\xe5\xa4\xfc\x01\x27\xe5\x59\xbe\xdc\x50\x0f\x01\xf3\xfe\xcf\x9c\xc8\xf7\x3d\x6b\xa8\xb9\x62\x73\x8f\x64\x69\x86\x1b\xfd\xe0\x65\xa8\x1e\x71\x46\x14\x07\x53\x0f\x48\x91\xfc\x73\xfc\x26\x8f\x9f\xcf\x2f\x22\xb5\xaa\x89\xfd\x27\x32\x75\xab\x06\xe2\x3c\x3f\xbe\x2e\xc1\x32\x4e\x94\x9a\xf6\x94\x18\xd8\xe5\x35\x4c\x38\xfc\xc9\x84\x94\x8e\x35\xc3\xa2\x07\x88\x89\x6a\xfe\xfd\xdd\x70\x93\xea\x38\x8e\xf4\xc9\x4f\x51\x7e\xd7\x23\x1d\x0b\x8c\x55\x0f\xa8\x10\x49\xfe\x62\x62\x8e\xfa\x02\x2a\x31\x79\x69\x8d\xc4\x94\x81\x72\xf7\x1c\x89\x75\xb7\x6c\x62\x48\x4c\x09\x28\xa7\x85\x91\x20\x11\x29\xbe\x60\xa4\x00\xf1\x46\xfc\x25\x05\x82\xc5\x1d\xac\xad\x6b\x7a\xf0\x60\x99\xfe\x00\x6c\xba\xb9\xc3\x85\x90\x7a\x01\x2a\x2f\x15\x4d\x1a\x29\x82\x4d\xff\x55\x59\xd7\x91\x62\xc4\x74\x04\x54\x14\xc0\x3f\x74\x85\x4b\xcc\x16\x68\x13\x75\x8a\x3c\x50\xfe\x0d\x35\x9f\x0e\x7d\x62\xd2\x66\x25\x4f\x1b\x29\x42\x25\x6b\x98\x46\x92\x69\x11\xd5\xc4\x12\xfa\xb6\x87\xa6\x08\x25\x53\xf0\x10\x37\x6c\xba\xee\xe1\xc5\x1c\x05\x72\xb8\x9c\x59\x69\x9f\x12\xa2\x5c\xdd\x5f\x5a\xa4\x4b\x8b\xa2\x0f\x5a\x33\xa6\xa4\x82\x1e\xfd\x05\x99\xb2\xa8\x5f\xa2\x0b\x9a\x2d\xa6\x29\x71\x1b\xfd\xc2\xf5\xfd\xd6\xc5\x34\x7d\x02\x5f\x3b\x8c\x9b\x4b\x9e\x13\x99\x4f\x99\x3c\x57\x1d\xae\xa4\x04\x46\x56\x08\x74\x29\x1b\x39\x3f\x81\x2e\x45\x9f\x07\xfa\x7b\x89\xea\x27\x16\xc4\xb7\xc5\x32\x95\x85\xbd\x5a\x16\xcb\xb1\x2a\xc3\xda\x48\x05\xa1\x0f\xc5\x2f\x50\x3a\xf1\x21\xfc\x44\xbc\x76\xe8\xc2\x91\x0a\x28\x55\x73\x07\x8b\xa2\xbb\x07\x8a\xa1\x62\x56\xa9\xb0\xf8\xa3\x7b\xb8\xd1\xa3\x67\x4d\xca\x64\x7c\xff\x64\xbc\x76\xf8\x00\xd5\x05\x7a\xf5\xb0\x04\x30\xdd\xac\x52\xa5\x26\xd4\x38\x58\xc9\x85\x0d\x1a\xc4\x12\x58\x39\x9e\x2a\x09\x81\xd8\x4c\xaa\x40\xa9\xe0\x49\xf0\x0e\xe9\x85\x36\x50\x7d\x8f\xd9\x08\x5b\x23\x5d\xa3\xf2\x43\x2c\x35\xb5\x85\x64\x42\x11\xc4\x16\xd8\x3c\x9a\x58\xaf\x55\x45\x40\x46\x62\x0a\x67\x5f\x6d\x53\x23\xac\xdc\x25\xd9\xa5\xe4\xe1\xd4\x18\x55\xac\x75\x35\x4a\x17\x92\x91\x52\xa7\x3e\xc3\xc4\x81\xa5\x24\xe4\xaa\x3b\xd2\xd2\x9f\x99\x26\xae\x14\xcb\x52\x04\xa5\xce\x0b\xbe\x06\xe9\x6b\x16\x02\x56\xa7\xdc\x64\x34\x5a\xb2\x9e\xa4\xee\x34\x70\x1a\x82\x5f\x20\x9e\xe9\x36\x93\x90\x46\xf9\xf0\x18\x48\xbb\xd7\x8d\x25\x4b\xa3\x26\xe9\x30\x51\xb6\x33\x11\xa1\x41\x32\x9a\x48\x30\x38\x40\x1e\xba\x23\x9d\x6b\xc7\x34\xed\x73\x29\x23\x35\xab\x13\xd1\xca\xde\xb0\xa5\x63\xeb\x7e\x81\x45\x59\xb4\x1f\x4b\xfc\x1b\x1e\x63\x70\x16\x7e\x83\xb2\xbb\x64\xcc\x84\x52\xf4\x87\x51\xf5\x22\xb6\x6b\x1d\x17\xd8\x85\x44\xf3\x74\x11\xb7\xcd\x81\x96\x0a\xcc\x93\xb8\xa9\xac\x96\x6c\x9e\x6e\x90\x70\xb3\xa8\x1b\x6a\x05\xa3\x19\xeb\xc8\x77\x13\x92\x4f\x2c\x6b\x87\xcf\xf0\xcd\x03\x26\xf9\x31\xdd\x6b\x12\xfe\x62\x2d\x4b\xa0\x82\x37\xff\xf0\x25\x3c\x2d\xc9\x4e\x22\x4b\x7a\xb0\xd0\xd8\xff\x8a\x2b\x21\xa4\x3f\x78\xfb\x1f\x88\x54\xdd\xb4\xf0\xe1\x94\x35\x21\x6a\xad\x14\x3e\x30\x12\x8d\x91\xdd\xe4\xf4\x79\xf0\x85\xd6\x44\xb5\x94\xcf\xda\x43\xa3\x8e\x79\x02\x6c\x91\xd6\x6c\xa4\x97\xc4\xd3\x28\xf7\x02\xa9\x7d\xd6\x5e\x30\x11\xc9\xc3\xe9\x25\x13\x31\x27\x7c\x17\xe0\x35\x87\x97\xab\xd0\x56\xd2\x6f\x4e\x5e\xe4\x23\xd1\x4f\xae\x9b\x4b\x30\x3a\xc0\xd6\x8e\xf4\x49\x61\xce\x9a\x38\xd2\xa4\x8a\xc8\x7c\x66\xae\xbd\xd3\xa0\x73\xa5\x50\xf7\x27\x8b\x18\xee\xcd\xcc\xf0\x8c\x8b\xb6\x98\xe4\x63\x51\x91\xa6\x07\x40\x31\xed\x76\x3e\x68\xcf\x52\x9f\xf9\x68\x78\xa1\xe8\x77\x67\x97\xfe\x82\x52\x40\xf5\xa0\x14\x6b\xc4\xac\x72\x00\xc2\x68\x21\x39\x70\x4c\x4d\x2a\x10\xfc\x51\xbf\x0b\x87\xd0\x98\x90\xc4\x94\x48\x7d\x64\xf8\xaa\xd9\x76\x98\x29\x89\x89\x34\x66\xb8\x9e\xb9\x24\xff\xc8\x9f\x20\xd5\xec\x4b\x96\x23\x78\xbc\x2c\x87\x99\xc5\x4a\xc7\xcf\x0b\xab\x07\xc1\x29\x41\x14\x93\x8c\x9c\x59\x62\x4b\x8e\xe7\x23\x27\xd2\xa0\x9f\x07\xb4\x24\x89\x7f\x66\x8a\x26\x22\x18\x39\x81\x23\x7b\x2b\x12\x8b\xf4\x0a\xb0\x14\x4c\x44\x07\x73\x5a\xdb\x2d\xb8\x31\x17\xb2\x95\xee\x39\x11\xf2\xe2\x96\x39\x73\xdd\x9a\x53\x5e\xa7\x4f\x73\xa0\x70\x23\x8a\x93\x33\x64\x42\x69\xb3\x72\x26\x52\xba\x9d\x11\x2a\x9e\x03\xdd\xc1\x6c\x6a\xce\x10\x55\x94\xaf\x70\xe4\x02\xb1\x34\xfb\x37\x33\x48\x6b\x6b\x0a\xc5\x6e\xb1\xdf\xcc\xdc\x47\x76\x67\xca\x05\x70\xd0\xcd\x32\x17\x6c\x5e\xf6\xef\x9b\x1f\x78\x0a\x10\x01\x7c\x0a\x0a\x37\x53\x82\x48\xa6\x60\xe2\x39\xb0\xf2\x84\x15\xcf\xb9\x72\xd2\xda\x9a\xba\x36\x57\x70\xa8\x3c\x05\xc1\x0f\xb8\x59\x02\x6c\x25\x17\x33\x1c\x18\xf3\x28\x27\xfe\x91\x59\x6a\x42\xd1\xa6\x23\x33\x08\x52\x2e\xf9\x23\x37\x4c\xd3\xbb\xd9\xa8\xec\x96\xfc\x94\x1b\x09\x99\x18\x61\x6e\x40\x31\xc3\xb2\xe1\xf0\x7a\x12\x14\x43\x74\x45\xce\x0d\xa4\xf4\xe7\x7b\x40\xae\x78\x06\xb8\x55\x49\x1c\xc8\x1d\xf8\x24\x81\x22\x33\xb5\xb0\x22\x68\x47\x66\xfe\x34\x85\xdc\x8e\xf2\xcd\x20\x99\x23\x95\x46\x95\xae\x76\xb3\x2c\xe3\xa4\x78\x75\x69\x0b\x2e\x7a\xd0\x99\xbc\xa7\xe9\x37\x36\x47\xe2\x40\xc1\x24\x5a\xfa\x2b\xc3\x51\xd9\x13\xd4\x84\x3a\x75\x1d\xcd\x0f\x00\x33\x11\xea\xd2\x29\x18\xeb\x10\x15\x64\x3f\x56\xaa\x82\x51\x3a\xb6\xbe\xba\x1d\xc9\x32\x82\xe7\x4b\x37\x21\xed\x7c\x81\x94\x65\xf6\x53\x58\x36\xdf\x20\x19\xb8\x1e\x77\xff\x86\x0e\x5a\xbb\x54\x28\x83\x49\x03\x50\x06\x08\x49\x75\xfb\x62\x80\x9a\xc1\x09\x44\xaa\xfe\x4d\x1d\x91\x0e\x65\xa1\x47\x97\xf0\xa2\x9c\x8c\x0a\x13\x4c\x60\xb3\x34\x85\x2e\x67\x41\x89\x73\xff\xae\xdc\x55\x77\x40\x20\xba\x03\xf0\x47\xf1\x88\xb2\xc4\xab\xe2\x29\x5d\xd4\x21\x78\x4a\xac\x38\x6e\xbc\x38\x81\xab\xe2\xea\x05\x55\xf8\x93\x55\xd0\x05\xfa\xb7\xe8\x0f\xae\x45\x80\x35\x89\x8b\x7e\x2c\xde\x6a\x8a\x68\xcd\x3d\x30\xb1\x8e\x74\x67\xe5\x02\xa9\x69\xfe\x8d\xf3\x23\xe6\x58\x2e\x32\x5c\xe3\xe2\x85\x03\x24\x3a\x51\x58\x52\xd6\x0e\x25\x85\x22\x9d\xb7\xe6\xa6\x68\x21\x6a\x56\x20\xd3\xd9\x9f\xa4\xd0\x43\x4c\x51\x2f\xa3\xd0\x43\xcc\x7e\x13\xe5\x06\xfe\x35\xf7\xc0\x28\x65\x09\x44\xe5\xe6\xac\xb5\xec\x9b\x90\x14\xa0\x56\x26\x62\x89\x1e\xe5\x21\xb9\x13\xb7\x2b\x0f\x30\xee\xe7\x05\xd0\x19\x8f\xf0\x00\x03\x7f\xde\xef\x60\xd0\x9a\xe2\x12\xea\x24\x1f\x95\x87\xb2\x8c\x4f\xd9\x83\x39\x76\xbf\x40\xde\x26\x19\xac\x3c\x3c\x45\x86\xc3\x43\xaa\x2e\xc9\xb1\xb0\xda\x98\x5d\x35\xca\x0b\x6a\xe5\x2f\x5e\x10\x0e\x5d\x55\xca\x4b\x15\x90\x38\x74\xa1\xdc\xe7\x83\xb7\xe4\x3e\x51\xe0\x82\x80\x8c\x6c\xe2\x50\x51\x7b\x5d\x49\x9f\x47\x0d\x0b\x21\xa2\x1e\x90\x9a\x49\x86\xaf\x14\x45\x74\xfd\xa9\x31\xf2\x05\x3f\x58\xb3\x52\x17\x11\x67\x47\x36\xab\x0a\x2d\x8b\x1d\xe5\x6b\xa4\x80\xec\x2e\x99\x8b\xc1\x8e\x13\xf5\x13\x56\x92\x9d\x18\x2a\x75\x20\x56\xc0\xd7\x44\x1a\x27\x12\x53\x51\x86\xc1\x1a\xbb\xca\x72\x9f\x76\x19\xae\x89\x06\xf8\xe2\x37\x3e\x4c\x57\xc8\xed\xa8\x28\xc3\xe0\x9b\x64\xcd\xbc\xdc\x08\xb1\x6b\xc6\x6e\xb8\x47\x18\xd6\x94\x10\x6e\xd4\x8c\xb3\x27\x1d\x7f\xcd\xc0\x10\x5d\xba\x2b\xac\x60\x96\x22\x6b\x06\xaf\x92\x15\xa2\x16\xa0\x83\xc4\x88\xca\x9a\x57\x56\xe8\xd7\xb2\x00\xad\xad\x29\xe4\x4d\x22\xa4\xf5\x93\x34\x92\x72\xce\x8c\x4a\x8d\xc7\xf0\x07\x38\x48\xba\x3b\x55\x0a\x1e\xe3\xaf\xbc\xea\x6a\xe1\x7c\x05\xa0\x65\x00\xf3\x02\x91\x78\xc1\x76\xea\x8a\x0c\xb1\x4a\x03\x36\x6a\xa5\x32\x5a\xa3\xc3\x20\xa6\x5c\xbe\xa3\xd6\xef\x50\xda\xfb\xad\xc2\x31\x29\x79\xb9\xf5\x46\xbb\xc7\x23\xaa\x4a\x4e\xaf\xf0\x13\xb7\x71\xa9\x7e\xe2\x46\xb3\x83\x41\x6d\xb0\xef\x67\xb7\x2f\x80\x6a\x06\x0d\x7e\xf1\xba\x75\x57\x54\x68\xb7\x33\x5d\xa5\x78\x22\x5d\x41\x6d\xa8\xc5\xe7\xd3\x04\x3f\x25\x3b\x61\x57\xa6\x7f\xb4\x67\x4b\x6d\x14\xfd\x92\x47\x7c\xe0\x89\xef\x11\xd7\x9a\xfc\x05\x09\xb2\xf1\xb2\xf3\xb0\x88\x84\xd7\xbe\xd2\xb5\x09\x0b\x3a\x95\x8e\x3e\xf4\x74\x1e\xb7\xfe\xae\xc2\xf7\xc9\x2a\xa6\x8a\x62\x59\xc3\x78\x04\x11\xc2\xca\x85\xca\x34\x0f\xf6\x86\xa9\xb0\xca\x29\x34\x72\x54\x78\x3e\x59\x26\xae\x1d\x05\xdd\x0c\x38\x88\x14\x59\x22\x52\x45\x0a\x59\xe5\x42\x1a\x75\x50\xa0\xd5\x5d\xa3\xa2\xfc\x55\xf6\x22\x47\x41\x87\x5a\x01\xab\x25\x0c\x9f\xce\xd1\xf0\x82\x70\x61\x74\xfc\xd6\x92\x68\xa2\xf3\x56\x0d\x6a\x0b\x7d\x36\x10\xfd\xa9\xda\x1e\xa3\xc2\x71\x4a\x95\xa4\x46\x1d\x50\x8e\x9b\xaa\xb1\x98\x82\xed\x45\xf5\x24\xf6\x09\xea\x27\xe2\x81\x8c\x7d\xe7\xda\x05\x8d\x78\xb2\xb6\x86\xc8\x77\xa5\xd6\xc7\xd6\x99\x7a\x72\x51\x1a\x93\x6e\xe8\xe2\x4a\x75\x49\x25\x12\x94\xea\x79\xe2\x03\xff\xe6\x3d\xd1\x3b\x7b\xc2\xd4\x61\x0c\x87\x12\xc8\xea\x8e\xba\x1c\xa9\x7c\xca\x3f\xa1\xa4\xa9\x3a\xf0\xa8\x17\x0e\xa9\x77\xee\x6a\xdf\x2a\x7d\xe6\x2e\x1e\x01\x9f\xe2\x8b\x65\x07\xdc\x21\x42\x8a\x3c\x45\x88\x24\xdd\xfe\xc4\x15\xf1\x9e\xd5\xfc\x85\x5a\xa6\xe6\xf6\x0c\x9f\x67\x81\x11\xd6\xc0\xe4\x25\x21\x51\x64\x92\xdc\x55\x6f\x3a\x69\x08\xca\x9f\x3c\xe2\xb2\x8c\xa3\x32\x25\x96\x2d\x2d\xf5\x93\x47\x9a\x82\x10\x47\xa5\x07\xbb\x77\x05\xe2\x48\x30\x9d\xbb\x5f\xfc\xd6\x84\x1e\xa4\x26\xf5\x3e\xb3\x0c\xaa\xea\x21\x8f\x0a\x69\x24\x78\x1b\xe1\x28\xa5\xdc\xdb\xa3\xb2\xf8\x97\x6f\xd6\xf5\x13\x47\x72\x92\xbe\xa0\x3e\x0b\xc8\x5a\x13\x92\x42\x56\xe3\x1e\xa4\x93\xf0\xf3\x7b\x01\xd9\x43\xd0\x0d\xd0\x50\x5a\xd2\x89\x04\xbf\x8a\x94\x14\x16\x4e\x2a\x9c\xa3\xa2\x64\xcf\x0a\xd1\x22\x46\xb7\x13\x17\xbd\x4f\xc8\xfa\x68\x7f\xdb\xfa\x2e\x67\x02\xfd\xa6\xd4\xdf\xff\xea\x1e\x54\x27\xf2\xbf\x9a\xfb\xb2\x16\x99\x92\x53\x8c\x0a\x67\x79\x6b\x2f\xea\x44\xf1\x09\x83\x00\x61\x9d\x36\x00\xd7\x09\x34\x90\xbc\x56\xe7\x42\x03\xbf\xf0\x31\x53\xe5\x35\x1b\x0d\x56\xc1\xa4\x3b\x48\x63\xd4\xa6\x21\xd2\x8e\x45\x77\xfd\x05\xce\x4e\xf4\x6f\xea\x89\xb4\xd1\xed\xc0\x61\x8a\xfe\x8d\xa0\x47\x09\xba\xed\x00\x11\xd3\x51\x68\xc7\x82\x71\xd6\x03\xa4\x51\x90\xfc\xdf\x0e\x16\xd2\xf4\x6f\xa0\xa6\x36\xa9\xc1\xea\xa8\xbc\xdb\xa3\x85\x80\xdf\x87\x7e\x27\xbc\xaf\x09\x30\x77\x97\xfd\x4d\x5b\xc0\x8c\x75\xb1\x6a\xb0\x31\x5a\xb6\x6b\x61\x41\x51\x53\x66\x18\xa6\xbd\x0e\x1b\xac\x8e\xd6\x6d\xb4\x40\xc1\x39\x7b\x08\xc6\xe3\xe9\x37\xab\x88\x99\x47\xb6\x08\xb0\x4a\x05\xd8\x22\x02\x76\x25\xdc\xb7\x48\xe1\xb0\xfa\x03\x50\x45\xef\x64\x02\xd1\x93\xdc\xd0\x96\xfc\xa9\xc3\xd0\x68\xc6\xf3\x94\x12\x4c\xfb\xc3\xed\x95\xf1\x74\x82\xe3\x27\x8f\xba\x1e\xd6\x68\x89\x60\x11\x14\x12\x2c\xd0\xc2\xde\x06\xe1\xb2\xdb\xd9\xb3\x41\xb8\x0c\x46\xae\xcc\x11\xdd\x8e\x35\x7b\x80\x8c\x7d\xc8\xee\xb0\xb1\x43\x77\x00\xd4\xc9\xee\x00\x33\xd2\xf1\x6e\x79\xe5\x64\x75\x8f\xe0\x6f\xc3\x1d\xac\xfb\x8b\xd6\x90\xc1\x3a\x24\x66\x34\xfa\x64\xe9\x7c\xb7\x42\x5f\x65\xb7\x17\xde\x90\xfd\xa0\x42\x93\xa6\x11\xca\x9a\xb3\x5f\xa0\x92\x4a\x22\x75\x83\x6a\xcd\x2e\x14\xad\xf0\x16\xd6\xfc\xe0\x62\x17\x7e\x00\xc2\x97\xfd\xfb\x45\x1c\x9e\xc6\x84\x26\x2d\xf8\x04\x7e\x42\x6c\xcb\x3e\x00\x70\xe2\xb2\xb6\xbf\x55\xba\xd3\x35\x7f\xc0\x8d\x10\x54\x28\xb4\x1a\x55\x96\xbb\xbd\xc8\x60\xab\xdc\x08\x21\x23\xb2\x8d\x29\xd1\xf2\x68\x95\xb4\x3c\x78\x04\xb0\x1f\x03\x01\xfe\xf7\xa6\x7c\xad\x2e\xd2\xad\x29\x34\x1c\x62\x09\x5f\xad\xad\x39\x6b\x4e\x90\x73\x6d\xf2\x6a\xcb\xf1\xab\xf9\x0b\x20\x87\xee\x5f\xad\xe1\xc0\x14\x8f\x70\x71\x63\xb4\x53\xd0\xcb\x29\x65\xf0\x68\x8d\xb7\x2b\xd3\xc2\x25\xb6\x9a\x52\xb1\xea\x57\xf7\x27\x9d\xb3\xd6\xa4\x3a\xb3\x96\x08\x4e\x1d\x4c\xd2\x43\x76\x00\x5a\xa2\x74\xeb\xbc\xa2\xff\x74\x40\xb8\xb9\x83\x07\x8a\x09\x75\x30\x96\xb8\xa5\x1e\xc6\x3a\xc5\x7f\xe5\xae\xd0\x58\x8e\xcb\xe6\xcb\x36\xa8\xe4\x77\x77\x14\x92\x8d\x9c\x63\x61\xab\x66\x34\x00\x35\x49\xd1\x8d\x86\x42\x47\xce\xb6\xb1\xa0\xa6\x35\x9d\xac\x78\x21\xb0\x52\xef\x15\x4d\xeb\x4e\x10\x6c\x9f\x90\x13\x50\xf2\xa2\xa1\xc7\xb2\x76\xa6\xc1\x15\xbf\x79\xd2\x27\xd5\xe1\x46\xa6\x93\xd1\xd1\x7e\x61\x91\x01\x2d\xe2\x5a\x87\x54\x6f\x5c\x6b\xdd\x7e\x40\x9d\xbb\xc9\x25\x53\x9f\xfa\x6e\xdd\xae\xb5\x70\x4d\x8b\xde\xf0\x36\x99\xb6\x9b\xaa\x63\x63\xfd\xcd\x85\x6a\x90\x9b\x0b\x55\x97\xf4\xf8\xea\x5e\x29\x4c\x8b\x36\xaa\xb5\x9b\x5e\x0e\x26\xa9\x4b\xee\x33\xac\x28\xf7\xf9\xe4\xc2\xb2\xd8\xed\x66\xd6\xee\x85\xe5\x1e\x94\xb7\x35\x83\x9f\x49\x3f\x6c\xfb\x6b\xac\x89\x6f\xb1\xa3\x3d\xd4\x8d\x6a\x1d\x0f\x39\xac\x65\x80\x67\x2d\x44\x3b\xb2\xa4\x41\x4b\x01\x4c\x11\x1e\xa5\x7b\x6a\x0f\x15\x68\xa6\xdd\x14\xff\x7c\xbe\x97\x72\xca\xd0\x5b\xe2\x9f\x54\x4d\x6d\xe9\xa2\x8c\x58\xef\x9a\xb8\x3e\x79\xa9\x88\x36\xc4\x5f\xc8\x1a\x3e\xf2\x2f\x6a\x26\x19\x51\x58\x0a\xdf\x2e\xb4\x6d\xae\x2e\xf5\xc6\x04\xd3\xf3\x81\x41\x39\xd9\x94\xdc\xce\x1b\x53\xf7\x0b\xa0\x09\xc6\xb4\x09\x24\x30\xf2\x2e\x19\xce\x0b\x87\xc5\xd1\x0e\xdc\x0d\xc5\x64\x95\x0e\x77\xf4\x23\x40\x61\xd2\xf4\x1b\xa5\x63\xc5\x0e\xfa\x27\xd2\xc5\x43\xdb\xd9\x19\x0d\x39\x7e\x5e\x20\x93\xcb\xfa\x5d\x11\x33\xe4\x0e\xc9\x0e\x74\x53\xee\x30\x47\x2a\xb5\xf5\xe8\x07\x89\x44\xf7\x10\xd8\xbb\xee\x11\x28\xba\x27\xcf\x79\xed\x9d\xc7\x80\x50\x27\xac\xec\x01\xf6\x07\xed\x6d\x0f\xbc\x40\x69\x0a\x28\xaf\x6f\x9e\xd7\x03\xa3\xa1\xdd\xbe\x16\xe9\x07\x24\x94\x22\x43\x1d\xc9\x39\x94\x8e\x7d\xf4\x00\x3d\xc8\x70\x8f\xa4\xcd\xcd\x1f\x80\xc9\x49\x5c\xe9\x74\x3d\x73\x64\x78\x0f\x6b\x51\x7b\x6b\x3b\xa3\x29\x1d\xda\xda\xa1\x87\x0c\x42\xfa\x1e\xc9\xe5\x84\x6f\x9d\x62\xa1\x21\x1d\xe9\xf4\x92\xdc\x25\xd9\xde\x4f\x17\xb4\x79\x79\xde\x91\xb5\x32\x3c\x26\x62\x18\x74\x0f\xeb\xcb\xec\x6a\xd0\x2e\xb3\xab\x08\x76\x87\x68\x69\x77\x9f\x0e\xa3\xaa\xef\xfc\x3d\xf1\x0a\x20\x94\xed\x09\x57\x7c\xf7\x98\x40\xb6\x7a\xf8\x1b\x9e\xd4\x11\x99\x99\x6d\x31\xe8\x9f\x9c\x99\x54\x4a\x76\x74\xe4\xef\x30\x05\xeb\x09\x67\xb6\x7b\x7a\x04\xbb\xc8\x6c\xcf\x3c\xe5\x3a\x62\x9d\x82\xa6\xd1\x73\x09\x9a\x3a\xa4\x7d\x09\x92\x46\x3f\xe8\x41\xcd\x66\x3b\x02\x35\x9d\xee\xa2\x43\xef\x69\xb9\xb2\xb3\x40\x8d\xd3\xe3\x74\xd6\xa3\x31\xf2\x14\x6e\xa4\x16\x51\x68\x16\xf9\x79\x00\xd7\xb0\xe1\x1e\xa1\x17\x35\x72\x15\x12\xcc\x9f\x0f\x3e\xf9\xc6\x4e\xc9\x1d\x7a\x53\x5f\x93\x7a\x41\x88\xba\xb8\x64\xaf\xb0\x32\x0f\xff\xe6\x81\x90\x38\xde\x29\xf5\xe9\x46\xd1\x2b\x81\x22\xda\xd7\x29\xd4\x19\x59\x99\x62\x36\x1a\x51\x1a\xf8\x9b\xa7\xd8\x80\xcd\x22\xe9\xfd\x84\x2f\xa3\xc4\xc6\x4e\x4d\x8f\xbf\xa7\xfb\xb7\xed\xda\xfd\x24\xdd\xd0\x0d\xa0\x9f\x64\x56\x3e\x20\x27\x36\x42\x1a\xb0\xce\xa4\x05\xb6\xb2\x75\x84\xdd\x39\x03\x41\xbf\xa8\x2f\xf5\xd6\x51\x19\x64\xb8\xb0\x92\xa6\x8d\x43\xfd\xa2\x86\xfa\x67\x0c\x92\xbb\x9f\x3e\xe9\x02\xe0\x3e\x6e\x26\xd7\xcc\x7e\xf0\x41\xc6\x31\xef\xfd\x26\x64\x04\xca\xe5\x0d\x6e\x84\x83\x68\xe0\x60\xef\x7e\xaf\x59\xf9\x8b\x35\x2b\x3f\x20\xf0\x8a\xc7\x20\x7d\x32\xa9\x78\x58\x1e\x45\xdb\xf3\x71\xd8\xfa\x33\x06\xd4\x27\xc5\xa0\x7b\x59\x0e\xc5\xab\x58\xfc\x54\x62\x7d\x87\x53\x8f\xbd\x75\xfb\xcb\x6b\xae\x91\x92\x15\xdd\x93\x17\xfe\x52\x3d\x68\x5a\xf1\xae\xe0\x7e\x81\xfb\x1d\x58\xb9\xbb\xe0\xdd\xa2\x78\x5a\x17\x5e\xf0\xef\xe7\x9f\x3f\xf9\x87\x86\x7e\x3c\xbc\x24\x93\xcc\x17\x69\x4c\xcc\x7b\xa8\x64\xd1\x75\xab\xcf\x35\x69\xed\x2f\x58\xb6\x2f\x2f\x7d\xae\x39\xfb\x0b\x2a\xd3\x34\x45\x24\x24\xb0\xe7\x5b\x47\xf2\x2c\xd5\xfe\x1d\x63\x39\x00\x69\x8a\xe3\x20\x3a\xf8\x05\xa4\x40\x08\x6e\xa7\xfc\x24\x8a\x35\x98\x00\xd4\x5a\xfe\x71\x10\x4a\x45\xbf\x11\x00\x2d\xc3\xcb\x40\x6e\x2c\xf3\xc3\x01\xd7\x6c\x8b\xa2\x83\xb5\x1e\xcd\xee\xc6\xc7\x50\x9b\xad\x87\x23\xb0\x36\xbf\xdb\x33\xda\x35\x81\x40\x8c\xfd\xe9\xb1\xe3\x85\xae\xdf\x64\x2b\x3a\x68\xe3\xe3\x86\x2d\xea\x76\x3f\xc0\x0c\x1d\xf4\x3d\x96\x51\x4e\x67\x60\x80\x19\x3a\x24\x77\xc4\xb5\x0f\xfe\xe2\xa3\x99\xaa\xdf\x33\x06\x83\xe3\x8a\xdb\x79\xe5\x1b\x7f\x53\xbc\x75\x8c\x8f\x71\xb6\xa8\x9b\xfc\x80\x9f\xb4\xf1\x64\x24\x62\xbf\x84\xda\x41\x3f\x68\xdb\xe7\x46\x5a\x30\xd1\x8c\x13\x65\x08\x3f\x40\x66\xcc\x92\x84\xbc\x63\x29\x51\x24\xb0\x0f\x28\x51\x1c\x4a\x39\xf2\x27\x2e\xda\x1e\x34\x32\xc9\x76\x73\x97\xc4\x95\xe1\x2e\xa9\x3a\xfa\x79\x00\x5c\x31\x76\x81\xb9\x59\xa0\x1c\x30\xf2\x39\x56\x6e\x20\xc1\x7a\x49\x46\xcf\xcc\xab\x8e\xb8\xd9\x28\xd8\x4a\x89\xa0\x63\x59\xf5\x44\xf9\x47\xe1\xac\x85\x4d\x50\x93\x34\x0f\x59\x98\xdb\x6d\xf8\x85\x05\x29\xf7\xb0\xf6\x4e\xb3\x42\xc6\xf5\x92\x8c\xf2\x85\x82\xcc\xcf\x1b\x93\x6f\xa8\xd3\x4a\x66\x20\x26\x3a\xe0\x27\x9b\xa4\x44\x1b\xa8\x3e\x7d\xfc\xfc\x5e\x83\xaa\x07\xa6\xcb\x74\x8a\x9b\xf1\x5d\x77\x5d\x3d\x6f\x8c\x65\x41\x11\xe9\x1f\x27\xa9\x89\x64\xbe\x71\x12\x14\x82\xfe\xb9\x36\x50\x63\x20\xf4\x3c\x27\xff\xfe\xe4\x1d\x55\x0f\x19\xe3\xa2\x14\x29\x4a\x3f\xe0\x84\x51\x9c\x6b\x6a\x5c\x38\x39\xb6\x57\x0c\xd4\x02\x71\xd4\xf2\xf8\x98\x5e\xb2\x89\x65\xb0\x36\x88\xed\x15\x03\x3e\x16\x8e\xec\x18\xcb\xa0\xd1\xfc\xc5\xe4\x03\x75\xf9\x5d\x6e\x53\x92\xc4\x34\xee\xb5\x6e\x3f\xf8\x4e\x87\x6f\xc3\x03\x2c\xce\x6a\xdf\x01\x27\x0c\x47\x97\x0c\x30\x34\x07\x72\x0c\xdc\x75\x4b\x32\x49\xc3\xbd\xf4\x07\xad\x1f\xd0\x0f\xe9\x27\x07\x4c\x14\x0e\xb5\x18\xf4\x7a\x75\xea\x92\xb1\xae\xa9\xdd\x3d\xc2\xea\xe2\xf3\x0b\xb7\x58\x07\x19\x0c\x96\xf0\xf0\xed\x6f\x3c\x27\xbb\xf4\x1c\x70\x94\x4c\xe9\x99\x24\xdb\x56\x8f\x01\xbf\x59\x87\x73\x8c\x87\x47\xa9\x7b\x52\x13\x2f\xa8\xc7\x77\x11\x66\x4d\x02\x0e\x14\x76\x40\x1d\x6f\xe3\x10\xea\x72\x12\xcb\xc5\x52\xc7\xc4\x32\xc4\xc7\xc7\x5c\xcb\xf0\x17\x98\xb5\xf8\xd7\x60\x41\x64\x47\xc7\x0e\x14\x81\xca\x5a\xe6\x79\x00\xd4\x52\xbc\x9e\x34\x1b\x24\xe9\x8e\xcf\x83\xce\x2b\x3a\x27\xe7\x01\xda\x68\x5d\xee\x79\xe0\x18\x48\x69\x79\x1e\x4c\x57\x5a\xfd\x80\x7c\xbe\xbb\x8b\x8b\x5d\x78\x54\xea\x79\x7e\x06\x79\x21\x7e\x78\x0c\xc0\x52\x92\xdb\x19\xa8\x10\xd0\xe1\x3c\x19\x90\x64\x31\xeb\xfc\xb8\xde\x8f\x0f\xe2\x19\x96\x2c\xa0\xdf\x95\x0b\x8d\x7a\x00\x5a\x9a\xdd\xc1\x9a\xf5\xd0\x83\x97\xb3\x56\x17\x91\xdb\x23\x4e\x7a\x92\xcf\x8d\xbf\x4b\xba\x70\xae\x08\x70\x9d\xfe\x13\xae\x2a\xc5\x4e\x5b\x27\x43\x86\xac\xa3\x3e\x91\xb8\xda\x5e\xcf\x67\xe4\x76\xab\x87\xef\x7e\x97\x2c\x3b\x9c\x8b\xb1\xe9\x1c\x9c\x2c\x23\xe2\xa0\xda\x93\x37\x3e\x87\xa7\x9e\x69\xc1\xc5\x6f\x7c\x57\x40\x5b\xae\x4e\x46\x91\xa7\x9f\x2f\xc0\x4d\xa5\x3a\x3d\x33\x58\x88\xa4\xba\x13\x29\xa2\x0f\x07\x93\x9d\x64\x84\x92\x60\xce\x0c\x99\x49\xba\xd4\x33\xf3\x34\x0f\xbf\x00\x0c\x93\xd8\x76\x92\x31\x3a\x56\xf4\x84\x1f\x6d\x49\x3f\x0f\x88\x61\xd1\x9f\xf0\x20\x0c\xcf\x0a\xc7\x57\x62\xd7\x99\x49\xfe\x35\x89\xb2\x66\xad\x1e\xe0\x79\xab\xe2\xb7\xe3\x2c\x3c\x07\xe2\x7c\x27\x39\xa3\x84\xcd\xb3\x10\x92\x62\xf0\x67\x21\x24\x35\x49\xe6\x88\x36\x6f\x3d\x61\x40\x50\x31\x9b\x71\xc2\x35\x37\x4a\x1b\x77\xb2\x2a\xe9\xf8\x79\x01\xc7\x42\x94\xf8\x84\xa3\xad\xdd\xc0\x4e\x98\x03\xec\x24\x74\x56\x4c\x51\x2a\xde\xb3\x02\xe7\x75\x6f\x38\xe1\x76\xfb\x73\x72\x71\x2f\xb4\x67\xc6\x89\xb8\x0e\xfb\x66\x9e\x27\xa9\xa6\x6e\xf0\x27\xab\x5b\x59\xa1\x78\xc2\xcd\xd0\xfc\xe9\xe4\x35\xcf\x0a\xc5\xf3\x24\xfb\x11\x55\x3c\x61\xf3\xb7\x39\xfa\x5c\x2c\xd0\x80\xbf\x16\xe0\xfd\x06\x6f\x50\x26\x06\x17\xf9\xae\x66\x45\x1d\xf0\x0f\x06\x5e\x0b\x3d\xb4\x15\xe4\x92\xd5\xbf\xc1\xfc\xad\x49\x3b\x51\x17\xc2\x06\xe9\x73\x6b\x80\x35\xe6\xbd\xe8\xa4\xba\xb8\x99\x9f\x49\x90\xa0\x6b\xa2\x23\xdf\x4e\x24\x44\x89\x56\x9d\x9d\x88\xf1\xfd\xb9\x4b\x9e\x37\xb6\x57\x12\xe4\x09\xcf\xc2\xe1\x00\xbf\x93\x8c\x52\x12\xe3\xc9\x0a\x8f\x0e\xaa\x3c\x59\xdc\xca\x61\x8c\x27\x2a\x3a\xfe\x5c\x3f\x4f\x2a\x74\xad\x4e\x3b\x11\xf8\xeb\xf0\x82\x13\x71\xbf\xed\xa7\x07\xc2\x2e\x79\x12\x37\x5e\xd0\x07\xef\x9a\xa5\x1f\x70\xc3\xbc\x1f\xef\x9a\x95\xb6\xf4\xc5\x9d\x58\x12\xc6\xb9\x38\xa1\x98\xeb\xf9\xae\x1d\x14\xb8\x11\xe8\x9b\xcc\x30\x78\x75\x14\x3f\x3f\x19\xf8\x6b\x9d\xc7\x89\xdc\xcd\x59\x12\xc2\xf9\x82\x6a\x89\x5b\x9f\x2f\x60\xed\xf6\x09\xd0\x8a\xf5\x9e\x13\x47\x49\x57\xee\x73\x92\x70\x4a\xd3\x74\x4e\x9c\x6e\xb1\xe2\x93\xe5\x28\x92\x0f\x2b\xd5\xbf\x56\xcb\x9c\x64\xd6\xe2\xcd\x27\x33\xa5\x58\x49\x72\xb2\x62\xa3\x95\x24\x17\x43\x7f\xad\x03\xb9\x8e\x45\xa5\xb2\x1e\x44\xee\xaf\x3f\x49\x9c\xc6\x5f\x25\x4b\xbd\x60\xf2\xb7\xf2\xf6\x62\xa6\x66\x5f\xc9\x2f\x94\xa7\x38\x8c\x50\x17\x78\xf9\xe1\xdd\xbe\xc8\xcb\x1d\x33\x7a\x91\x57\x3b\x04\xf4\x0a\xc4\x52\xc9\x18\x57\xe0\xd1\x10\x2f\xbe\x78\xe3\x14\x33\xbf\xc2\x1a\xd5\x7d\x82\x50\x75\xff\x26\x52\x4a\x08\xb9\x58\xc5\xd1\x21\x82\x17\x0c\xf9\x87\x55\x3b\x57\xc0\x86\x8b\x79\x5f\x2c\xeb\x95\x44\xba\xae\x08\x62\x29\x8e\x71\xf1\x92\xea\x04\x6a\x17\x14\xb4\xc3\xc1\x91\x57\x64\x49\x4e\x11\x85\x8b\x39\x94\xcd\x90\xaf\x8f\x21\x97\xa4\xc3\x76\xa5\x8f\x60\x5b\x89\x72\x81\x1d\x1f\x3f\xb0\xa2\x6f\xa9\xb5\x43\x17\x2a\x36\x38\xa6\xe0\x4a\x2c\x17\xa3\x39\xd0\x93\xd4\x91\xa9\x17\xee\xa1\xf6\x68\xba\x90\xf3\xd8\xce\xc5\x17\xb8\xaf\x53\x8b\x5c\xb0\xe5\x3b\x7d\xef\xf5\x31\xdf\xe4\x90\xfb\x2b\x77\x4e\xd1\x0f\x16\x18\x3c\x02\xcf\x5e\x71\x97\x13\x5d\x0a\x92\x1f\x6f\x6d\xbe\xcd\x5d\x88\xb6\x55\x09\xb6\x71\x95\x05\x05\x75\xf0\x71\xca\xe6\x6b\xd1\x05\x46\x69\x97\xfe\x8b\x57\x4a\xbb\xcf\x5e\x65\x91\x52\x0d\xc1\x98\x14\xab\x82\x2e\x98\xce\xc7\x21\x31\xe6\xaa\x24\x4a\x92\x21\xae\xba\x48\xa5\x46\xad\x6b\xe5\x5a\x07\xf5\xa8\xd6\xdd\x5c\x95\x45\xf5\xf4\x42\x8b\x20\x8d\x1a\xa3\xad\xc3\xe8\x07\x04\xb6\x7f\x17\x7c\xa0\x0e\x1b\x79\x84\x38\x3c\xaa\xfa\x7f\x3d\x68\x96\xac\xd4\x69\x77\x4a\x14\xe9\xff\x66\x29\x8c\xe8\xd8\x60\xa3\x14\x4c\xd9\x3f\xfa\x1c\x14\xe5\xff\xba\x10\xb8\x91\x6b\xee\xf8\xc1\xa1\x4e\x2c\x94\x20\x71\xd1\xbc\x6d\xcf\x3d\xd4\xf1\x0f\x3f\x3a\x9f\x8b\x95\xbe\xed\x6e\xb4\x0a\xf7\xdb\xd5\x06\x85\xfb\x83\x4d\xe8\x28\xdc\xef\xba\xde\x83\x75\xfb\x0f\x87\x80\x5e\x03\x68\x63\xc4\x1b\xc8\xcc\xd0\xfc\x01\x31\xd9\xbf\xc9\x77\x24\x7c\x5c\x83\xfb\x25\xd9\x02\x95\xfe\xbf\x21\xfc\x06\xf1\xc6\xc0\x3a\x49\x9a\x24\xe1\x5c\x27\x65\xf2\xe4\x37\x80\x9b\x9e\xe5\xb9\x40\xa3\x69\x7c\x42\x52\x52\x31\xb6\x71\x21\x36\xc3\x86\xdc\x8b\x46\x6e\xc7\x6c\x5e\x48\x8d\xf2\x03\x98\x93\x85\x9e\x35\xc9\x6b\x01\x46\xcb\xb8\xc2\x07\x39\x4f\x9a\xe9\x7b\x1d\xd3\x79\xc1\x4d\xd2\x32\xfd\xc5\x82\xa1\x76\x29\xba\x20\x31\x0d\xa7\x84\xb9\x10\xcb\x61\xd9\xf5\xfa\x24\x26\xd7\x50\x1f\x17\x8d\xe6\xd6\x6e\x5d\x30\x9a\x0f\x87\x26\x5d\x10\xa1\x8e\x9f\xf3\x04\x11\xca\xf7\x86\x8b\x9e\x93\x29\xfd\x95\x31\xe9\x82\xda\x3c\x49\xa0\xbf\xee\xb5\x0f\x42\xda\x9b\xa7\xd3\x53\x66\x64\x87\x0f\x27\x02\x3b\xd2\xcf\x7c\xd6\x5e\xbb\x4b\x90\x29\x09\xf4\x17\xcd\xe5\x56\xc8\x5d\x88\xdb\xf8\x39\xbd\x0f\xf2\x6a\x18\x9d\x9e\x35\x27\x1d\x93\x87\x60\x95\x88\x77\x41\x78\xb2\x8e\xfc\x7a\x48\xad\xbd\x0a\x44\xdb\x66\xcb\x7c\x17\xa2\x2e\x7e\xce\x3b\x94\x06\x49\xf2\xf3\xf5\x02\xe9\x8d\x3c\x2f\xe7\xa8\x55\x43\xd6\xfa\xd1\xb5\x5e\xef\x9a\xa4\xe6\x00\x57\x49\x7b\x16\x5e\x50\xcb\x0f\x87\x02\x5c\xc8\x15\x5c\xac\x5c\xbb\x5e\xee\xf5\xcf\x83\xc9\x07\xea\x73\x62\xaf\xdd\x05\xa4\xa9\x9f\xcd\x82\x6d\xdd\x2e\xa3\xd7\x24\x35\xf6\xa9\x42\x80\xaf\x3d\xce\xae\xb9\x66\xad\x75\x4f\x4a\x26\x26\xc6\xcc\x4c\x67\x55\xe6\xc5\x00\xdf\xe4\x73\xc3\x78\x5e\xdb\x0f\xae\x49\x14\x15\x52\xdd\x9f\x7c\xd5\x9d\x20\xef\x46\x7d\xaf\xc3\x1e\x8c\x37\x7c\x26\xed\x65\x79\x43\x5e\xb2\x4f\xc0\x0d\x97\xc8\xa4\xb3\x7e\x43\x99\xef\x59\xdf\x07\x70\x30\xbb\xbf\x05\x5a\x77\x70\xe3\x83\xae\xdf\x48\xcb\xdc\xfc\x01\xc9\xbd\x94\x6d\xf7\x27\x5d\x65\xb3\xf3\x9b\x05\x4e\xad\xa5\xbc\xa1\xfe\x4f\x12\x2a\x6f\x38\x51\x1a\x2a\x37\xd4\xff\xde\xdc\x3b\x14\xfc\xf6\x00\xa4\x80\x9e\xe2\x27\x6b\x35\xa7\xb2\xbd\x61\x2d\x3f\x1c\xad\x7d\x07\x22\xb5\xa1\xb4\x34\x27\x52\x8c\xde\x30\x10\x24\xe9\x5a\xee\x48\x82\x25\x35\xd4\xcd\x92\xaa\x56\xd9\xdf\x91\x80\xd7\xac\x21\x9c\xa5\xec\x1e\x29\x9c\x35\xbf\x40\x84\xf1\x56\xb0\xe8\x97\xf5\x9c\x77\xe4\x9d\xc2\x0b\x89\x44\x18\x83\x0a\x06\xf6\x12\xfc\xc2\x8b\x41\x3d\x29\x44\x1e\x8a\x5b\xdf\x30\xaf\x27\xc9\x6a\x37\x3d\x37\x1d\xf8\x7a\x53\xdc\x93\x22\xe3\x5e\xe2\x9e\xb8\xcb\xbd\xb4\x2f\x46\x10\xe6\xf0\xb3\xb3\xe7\x4d\xa3\xba\x44\x9f\x1b\x61\xcd\x66\x47\x77\x62\x81\x09\x0f\x41\xb6\xdb\x3c\x29\x2c\x42\xea\x99\x9b\x91\x44\x3f\x38\xcd\xa8\x66\x2b\x53\x6f\x58\xdd\x0f\x33\xa8\x3b\x53\x54\xf2\x42\x61\x86\x4f\x12\xf8\xee\xdc\xf0\xdb\x3d\x20\x16\xdb\x18\xc2\xba\xae\x56\xbf\xde\x05\x21\x55\x5e\x76\xa1\xa0\x64\x50\xd3\x0e\xe1\xb0\xe5\xbb\x50\x46\x11\x21\xbc\x0b\x5c\xfd\x0f\x77\x41\xda\x5b\xfc\x02\x20\x55\xdc\x25\xe5\x56\x31\x88\x9b\x95\x5f\x8f\xf2\x57\x46\xa5\xbb\x10\xcb\xa5\x9d\xb9\xcb\x5a\x94\x67\x40\xaa\x28\x85\xcf\x0d\xf7\xce\xe4\x35\x54\xde\xde\x44\xac\xef\xba\x96\xed\x37\x16\xf5\xf6\x1b\x84\xac\x16\xb5\x64\x52\xf1\xa4\x9b\xa5\x5e\x7f\x4e\x46\xe3\xd9\x92\x20\x76\xb3\x94\xab\xdd\x86\xee\xc6\xdd\xd3\x18\x6d\x1d\x1d\x3f\x00\x55\xf3\x4a\x99\xf0\xd8\x11\xb0\x37\x3d\x30\xed\xbb\x72\xbf\x28\xfe\x2e\xfa\x7e\x33\xf4\xcf\x11\xab\xf7\xcb\x75\x08\x34\x28\xc5\x64\xbd\xf4\x8d\xfb\x7c\x92\x7c\x79\xbf\xa0\x8b\x92\x83\x6f\x32\x18\x49\xbd\xf7\x5c\xab\x54\x87\x28\x5f\xed\xe4\x1e\xf7\xc4\x1d\x43\x3a\xc5\x7b\x22\x78\xca\xe4\x81\x09\x24\xac\x6b\xbf\x17\x3f\xd1\x49\x7b\x96\x6a\x5c\x47\xf1\x81\xad\x57\x35\x72\xc7\x43\x66\x20\xb8\x3e\x47\x43\x36\xc1\xa8\xdf\x00\xa3\x84\xe8\x87\xcc\xa1\xba\x9d\x08\x29\xa9\xec\x81\x16\xdc\x02\xc9\x43\xd3\xae\x03\x68\x1f\xd2\x76\x31\x83\x87\xb4\x5b\x2c\xf0\x09\x4c\x1b\xe9\xdf\x94\xda\xa4\x72\x78\x70\x09\x76\xfe\xe5\x07\x59\xae\x1c\x9d\xf2\x44\x2e\x49\x4b\x86\x1d\x36\xeb\x12\xfd\xc0\x77\xdd\x25\x7f\x1e\xda\x65\x7f\xbe\xbf\xb1\x02\xf7\x4f\xf6\x25\x05\xc3\x93\x28\xcb\x4a\xbe\x79\x12\x37\x52\x64\xfa\x49\x14\xda\x75\x51\x7f\x12\x63\x9b\xdd\x05\x17\x25\x25\xf7\x93\x28\xd5\x27\x7f\x01\x92\xd7\xfc\x05\x57\x2d\x28\x20\xaf\x43\x12\xcb\x7c\xf2\xda\x69\x4d\x2a\x93\x1d\x49\xb6\x7c\x78\x49\xf6\x46\x64\x5e\xa1\x86\x1f\x00\x70\x5e\x05\xd3\x5c\x99\x24\x3e\xf0\x80\xb7\x95\xed\xc9\x3c\x53\xa2\xba\x0f\x2c\xb1\xce\x4d\xf9\xf0\xd2\xac\x23\xf6\x14\x6a\x7a\x0c\x5b\x54\xf2\x49\xc6\x57\x90\x33\xe7\xe7\x7b\x16\x39\x12\xd1\x7d\x2a\x60\x2f\x82\xf8\x7c\xe4\x28\xb5\x9f\x76\x6e\x85\x08\xda\xb3\xc8\x53\xf1\x1b\x00\xc3\xcf\x0b\x0b\x0c\x9a\x43\xe5\x75\xb5\xf8\x8d\x93\x7b\xe3\x2e\x78\xb1\xf0\x24\xee\xef\xdc\x1a\x0c\x15\x7b\xe5\xdd\x6f\x14\xd1\x04\x06\x44\x51\x26\x63\x74\xa3\x24\x69\x30\xc0\x5b\xdc\xa6\xc0\xa7\x51\x61\x25\x59\xf4\x69\x34\x3f\x17\x77\xf9\xf2\x81\xe6\xc4\xbc\x0c\xd6\x51\x3f\x9d\xdc\x48\x0a\xaa\x87\xd9\xd9\x6d\xc0\x7a\x90\xf6\x20\xfd\xbc\xc0\xcd\x71\x3b\xef\xcb\x3e\xdb\x9d\xc2\xa9\x98\xc3\xc3\x7a\x36\x63\xfc\x55\x62\xa0\x87\xa9\xa6\xc4\x40\x1f\x24\x92\x4a\x36\x5f\x3c\x83\xda\x0c\xf1\xe0\x87\x0e\xe1\x87\x74\x68\xcf\x20\xa0\xd4\x05\xd3\x1a\x1c\x06\xfd\x89\xdd\x96\x42\xec\x39\xb1\x26\x99\x2f\x9e\x55\x76\xe6\xf0\x03\x10\x71\x8f\xc0\x24\x04\xf6\x47\x78\x4e\x96\x56\x3a\xfc\x00\xbb\x2d\x2a\xfe\x2c\x83\xb8\xf8\xdd\x73\x61\xbb\x8d\x60\xb0\x7f\x1f\x3f\x1f\x90\xb9\x79\x15\x17\xce\xd9\xf0\x0b\x5c\xb6\x57\x71\x7d\xcb\x76\x36\xb9\x07\x49\x0a\x92\x74\x78\xcf\xb5\x26\xed\x29\x90\xf1\x7b\xdd\xcc\x4a\xe0\xd8\xeb\xe7\x3e\xf8\x89\xde\xb8\x71\x76\x8d\x1d\x77\xc4\x98\x9a\xc3\xbd\x0e\x96\x5f\x20\xa8\x35\x26\x6e\xbf\xd9\xbb\xb9\x6e\xbf\x62\xc9\xcf\xbd\x96\x25\xc0\xac\x32\xd3\x87\xbb\x9c\xe8\x42\x80\x79\x12\x7e\xeb\x83\x87\xa2\xa7\x58\xf2\xf3\xdd\x66\x9b\xb3\x6e\x3f\x0f\x2a\x85\x79\x77\x1f\x52\x2c\x4f\xf2\xe1\x6e\x4a\x0f\xf1\x30\x45\xa8\xb9\xf6\xb3\x4c\x03\x06\xc4\xcb\xd3\x6a\x68\xbf\x94\x88\x75\x73\x7c\x5e\xae\xdc\x5f\x2c\x7f\x13\x7f\x41\xdd\xb0\x2e\x2c\xcf\xba\xae\x4a\x36\x78\xe0\x0a\x9e\x0f\x7f\xb1\xe6\xe9\x17\x08\x1a\xad\x9c\x65\x1b\xad\x7f\x7c\x26\x22\xae\x4c\xac\x91\x03\xf4\xf0\x05\xf8\xa1\x2f\xf8\x0f\x2f\x87\xa5\x3e\x4b\xff\xf8\x40\x9a\xb0\x43\xd1\x03\x63\x80\x23\xa4\x9e\x89\x39\x1a\x74\x73\xcd\x71\xc3\xe1\xa5\xa7\x99\xc3\xc5\xdf\x63\x01\x62\xe8\xc1\xc9\x37\x0e\x3d\x78\xf8\x20\xea\xc1\xea\x74\x83\xea\x65\x92\x4e\x8b\x24\x2f\x0a\x3e\x27\xab\x96\xde\x00\xeb\x8f\xb4\x5b\x2f\xf5\xea\x8e\x9d\x7e\x99\xa2\xc1\x92\xda\xfb\x5d\xf6\x5a\xf6\xc4\x91\x44\x27\x7b\xcc\x46\xab\xa7\x7a\x44\x74\x8f\x8b\xa1\xbd\x6d\x71\x08\xbf\x70\x71\x48\xf7\xf0\xc9\x82\xce\xb5\xf8\x36\xc2\xce\x1f\xac\xb2\x7f\xfb\x77\x5f\xa9\x0b\xf4\x02\x82\x7b\xec\x06\xff\x22\xe0\x7c\x38\x30\xf9\x85\xbe\x33\x59\x77\xf5\x76\x6c\xa7\xc1\x02\x55\x64\x16\x31\x7d\x07\x0e\xb4\x78\xf1\x3b\x10\x5d\x2d\x51\x10\x65\xff\x5b\x16\xb5\x7f\xe9\xae\x74\xfc\x3c\x60\xa0\xb2\x3b\xec\x7c\xc1\x0f\x16\x14\x3c\x05\xac\x5a\x34\xe6\x5d\xaa\x4b\x49\x3d\xef\x80\x32\xda\x3b\x75\x2e\x1c\x15\xa4\x4f\x4e\xca\xbf\x3f\x91\x38\x89\xf5\xbe\xac\x9c\x61\x81\xf6\x05\xc1\xcf\xf1\xaf\xdc\x1b\x5e\xb8\x00\xbb\x1e\xc4\x7b\x92\xcd\x7a\x5b\x4e\x2e\x40\x30\x5e\xcc\xc0\x2b\x3a\x19\x0e\x21\x59\xe1\x5d\x8a\x4f\x09\xed\x2f\xbc\xa1\x92\x6f\xa6\x2f\x14\x9d\xce\x2b\xf6\x7e\xec\xa0\x39\x61\xdf\x0b\x6e\x90\xa3\x7f\x83\x78\x64\xff\x46\xb9\x46\x1f\x32\x94\x07\x6e\x9e\xe3\xc7\x0c\x72\xfb\x99\x00\x8f\x58\xf0\x03\xb8\xa8\x36\x4f\x68\xa2\xd8\xaf\x36\xe1\x66\x10\x89\xf7\xf5\x46\xb2\xde\x9f\xdf\x0b\x33\x04\xf4\x7b\x61\x82\xe6\x88\x1c\x83\x3f\xe9\xbb\x5f\x24\xa4\xb1\x1b\xec\x8b\x40\xa0\x2a\x59\xe0\x7d\xa8\x1e\x56\x07\x28\x69\xe6\xab\xf4\x0b\xb5\x66\x4e\xfe\x4d\xd9\xc1\xab\x7e\xfa\x3f\x7f\x4a\xcd\x7e\x61\xc0\xa9\xd5\xbf\xa9\xd5\xd4\x1a\x1e\x4e\x48\x4b\x80\xab\x94\x53\x6b\xbc\x0f\x48\x44\xf2\x84\x26\xa1\xa8\x19\x7f\x7c\xa2\x65\xa9\x9c\xde\x97\x1a\x08\x91\xcb\x17\xa9\x65\xb2\xf7\x61\x29\x35\x75\x51\x79\x91\x41\x30\xff\x7c\x40\x99\xae\xba\x4b\xd0\x7c\x03\x69\x2e\xdc\xf2\x03\x54\x33\xb5\x9c\xf8\x4e\x2a\x03\xa5\x28\x79\x61\x12\xce\x3f\xbf\x09\xb7\xe4\x07\xdc\x3a\xb1\xa6\x17\x51\xdd\x59\x2c\xf5\x9d\x6b\xe1\xfb\x8b\xb9\xa8\xbc\xa8\xe5\x64\xd4\xb6\xc3\xf7\xe7\x32\xc0\x66\xbf\xf1\xa2\x4e\x49\xd4\x6f\x2a\x35\xb5\x5b\x33\x50\x23\xa0\x4b\xd9\x0c\x6b\x65\x7e\x83\xf7\x1d\x5d\x03\x27\x9c\xa5\x9c\xd6\x70\x86\x05\x7f\xcd\x02\x17\xcd\x2c\xb4\x9e\x8b\x6f\x24\xbf\xc0\x0d\xd1\x0d\x69\x06\xde\x04\x9a\x3f\xa1\x80\xf2\x33\x08\x05\xf3\xec\x07\x93\x6f\xec\x4d\x9d\x88\xba\xb1\x23\xe1\x84\x1a\x31\x4b\x4e\x9f\x71\xed\x90\x3f\xa0\x92\x48\x17\x39\xd4\xed\x6f\x59\xa8\x8f\xa2\xfc\xdf\xac\xd4\x45\xe2\x4a\x75\x61\x41\x8d\xfd\xf0\x73\xa2\x51\x53\xff\x7b\xa0\xa5\xb2\xa8\xbe\x33\x32\xa0\xa8\x7e\xca\x3f\x5f\xa0\xc8\x91\xb1\x77\xa6\x45\x35\x34\x4f\x5c\x50\x73\x71\x97\x5c\xb9\x90\x71\x2e\x25\x9d\x78\x1e\xaa\xe6\x7f\x0f\xd4\x05\xbc\x87\x87\xf3\x3e\xa0\x6e\x7e\x4c\x3f\x78\x90\x41\x90\x8b\xbb\xb8\xfe\xf9\x53\xec\xdf\xca\xb2\xf8\xce\xba\x3b\x19\x09\x63\xd0\xc0\x01\xca\x15\x02\x67\x21\x6a\xea\x52\x8c\x2a\xf9\xcd\x69\xce\x56\x91\x7c\xe7\x79\x98\x85\x58\x62\x34\x2a\x0b\xb8\xfe\xa4\xf3\x13\x2d\xbc\x50\x1a\x30\xa6\x51\xed\xe6\xcc\x08\xb3\x90\x6d\xe4\xbf\x4a\x13\x34\x2b\x24\x39\x7f\x5d\x21\x05\x4b\x42\x9d\x95\x3c\xaf\xfb\xc1\xe0\x78\x9a\x33\x7c\xa4\xb2\x91\x10\x79\x7f\x72\x75\xfb\x9a\xa0\x5f\x58\x13\x14\xe0\x2a\x4f\xa8\xf1\x96\x15\x64\x9d\xd8\x60\x36\x6e\xb7\xae\xe2\x13\xb7\xdc\x2c\xea\x35\x1b\x19\x9f\x11\xbb\x11\x1f\xc4\xf9\x26\x94\x7a\xd9\x87\x1e\xc9\x81\x72\xf5\x10\x3c\x7e\xc5\x2f\x3c\x7c\xa0\x31\x3b\x92\xff\x78\x61\x9d\x48\xe9\xa3\x31\x48\x58\x44\xf7\xe7\xa0\x84\x21\x9d\xc5\xa4\xd8\x63\xba\xb2\xc4\x1e\x9f\x3f\x56\x58\xb5\x7b\xf2\x44\x10\xb2\xed\x1d\xf3\x93\x72\x8a\x9d\xbf\xe6\x27\xe5\x7c\xb0\x53\x0f\x48\xc6\x97\x4d\x56\x4e\x12\x37\x9f\x25\x06\x25\x5b\x2f\x32\x4f\xc2\xce\x07\xe1\xe4\x9d\xc3\x9f\x20\x92\xe8\x27\xc3\xc2\x64\x35\x2d\xb3\xd8\xc9\x4c\x75\x16\x5e\x26\xcc\x9f\xc5\x3e\x67\xa8\xf2\x1f\xb2\xaf\xd7\x2c\xeb\x9f\x6d\x2d\x9c\x88\xe2\x39\x14\x63\x7e\x36\xdc\x5d\x8b\x52\x49\x9c\x17\xb5\xe0\x4a\xe4\x30\x3b\x14\xaf\x25\x6f\x12\x39\x3b\x02\xd9\x4b\xde\x33\x9d\x88\x1e\x09\x49\x69\xe7\xe7\x80\x7c\x9e\x74\xad\x9f\x88\xde\xf8\x26\x96\xf7\x83\x48\x87\xaf\x2d\x28\xce\x11\xe9\x3b\xbf\xaf\x86\x73\xc0\x2a\x91\x74\xd3\x9f\xf4\xc7\x4f\xb2\xfe\xce\x01\x0c\x4e\xd2\xd7\xcf\x81\x2c\x4f\x59\x1a\x92\x09\x87\xfc\xa6\xac\xa2\x73\x20\xfc\x3c\xeb\x2a\x38\x07\xf6\x29\xeb\x06\x3b\xe1\x77\xde\x94\x8e\x75\xc2\x4b\x3c\xb8\x9a\xdc\x84\x4b\x76\x70\x4d\x9b\x39\xa0\x24\x56\x3d\x90\x49\xdf\xe5\x24\xa7\x8f\x09\xb7\xe2\xae\x5b\xd6\x84\x5b\x71\x97\xd8\x3e\xe1\x56\xdc\x54\xd6\x64\xd2\xab\x38\xcb\x49\x68\xc2\xab\xb8\xe7\xee\x0f\xd2\xf7\x5b\x8b\x38\x3f\x46\xd9\xf3\xd6\x36\xcc\x33\x30\x00\xf7\xf0\x0b\xf5\x9f\x3f\xbd\x68\xbf\xce\x8f\x4f\x76\xa5\x0f\x9a\xe7\xc7\x04\x7b\xd9\x47\x6a\x9e\xdf\x7d\xab\x97\xee\xef\x9f\xef\xf7\xcf\x84\x5e\xfc\xf6\x80\x48\x83\xe1\x15\x46\x24\xbf\xdc\xf4\x74\xc2\xe9\xb8\xd7\xe4\x76\x16\x50\xad\x7e\xc0\x52\xa6\x9a\x40\x44\x92\xec\x24\x90\xb0\x4a\xe8\xbe\xee\x4d\xb8\x24\xf7\xea\x05\x44\x94\x09\xf1\x84\x23\xbd\x03\x3d\x81\x07\xc2\xe8\xde\x65\xb8\x2c\x87\x24\xc2\x35\xe9\xb3\x9c\x92\x67\x04\x8d\x70\x92\x1a\x69\xc2\x89\xf9\x7b\xe0\x3e\x20\x43\xcb\x6a\x3a\xe1\xd5\x1c\x92\xb8\xe3\x84\x57\x73\x53\x25\xab\x09\xa7\xe6\x6f\x10\x2d\x0b\x5e\xcd\x8e\xcd\x98\x27\xd8\x7c\x12\x2d\x9b\x27\xd8\x7c\x4a\x5e\x19\x2c\x6d\x49\x7a\x86\x79\xd2\x15\x4b\xe9\xd3\xe6\x99\x78\xf6\xfe\xea\xc2\x34\xe1\x47\xfd\xbd\xed\x49\x4f\x0e\xa0\x39\x65\xc2\xaa\x0a\x12\x99\xb0\x32\x3e\x66\xc2\x2a\x69\xd6\x99\xb0\x2a\x02\x6f\x26\xac\x9a\x80\x97\x09\xab\xa8\x59\x43\x75\xad\x42\x93\x13\xde\xd6\x5f\x9f\xee\x82\xb0\xca\xfe\x82\x22\xd1\xd0\xcc\x21\x6a\xb4\x9f\x2f\x08\xaa\xe6\x89\xf3\xe8\xfa\x1c\x64\x82\x2a\x7b\x5a\x84\x46\xf2\x03\x42\x63\x68\xad\x85\xd0\x28\xea\xb4\x10\x1a\xde\xe5\x42\x68\x44\xf5\x51\x08\x0d\x63\x6b\x21\x34\xb2\x40\x5c\x16\xe6\xf8\x01\x69\x5f\xd1\x4c\x0b\xc1\xe1\x23\x47\x37\xee\x1f\x5c\x2a\x44\x9d\xe6\x07\x44\x9d\xe2\x4e\x61\xd5\x0f\x3f\x7d\x30\x03\x9d\x21\x58\xd6\xde\x0b\xc6\xac\xaa\x2f\x97\x89\x79\x56\xae\xd6\xc4\xaa\xae\xd5\xfa\x0d\xae\x56\xbc\x00\xee\xe0\xc1\x37\xfc\x09\x7f\xf0\x6f\x14\xa1\x0b\x7c\xde\x8a\x34\x93\xf3\xac\x5c\x6d\xf4\x27\xdc\xfc\xe6\x4f\xb8\x5a\x63\x3d\x04\x24\x15\x79\x9e\x70\x22\x0f\x76\x80\x9a\x27\xa2\x8b\x73\x34\xd6\x42\x64\x4a\x4a\xd6\x33\xe1\xe7\x3a\x0c\xf3\x17\xd5\xf8\xe4\x13\x3e\xa1\x95\x6a\x8a\xdd\x9a\x2f\x0c\xef\x12\x65\xe7\x9b\xc0\x3a\x44\x25\xe7\x11\xfe\xf9\xa3\x0b\xf1\xc4\x2d\xab\x4b\x35\x3a\x71\xc9\x92\x8e\x6b\xce\x95\x18\x4b\x3f\x99\xea\x45\x3f\x99\xd5\x41\x3f\x1b\xfa\xf2\xc7\x88\x7c\xee\xfa\x89\xd2\x5a\xee\xeb\xfe\xe7\x8f\x89\xe9\x3c\x50\x97\x3f\xe9\xe7\x27\x81\x27\x77\x3d\xff\xf9\xa3\x8a\x4e\x73\x06\x56\xe5\xd2\x4f\x7c\xab\x97\x03\x6b\xbf\xe8\xe7\xf7\xed\xbe\x71\x4c\xdc\x9c\x54\x67\x7b\xe2\x86\xa2\xa8\xd6\x89\x0b\x8a\x49\x3a\xae\x27\xb2\x9c\x4e\x5c\x4e\x54\x4a\x71\xe2\x6e\xa2\x12\x7f\x73\x7e\x34\x49\x4a\xe2\x39\xcb\xd7\xb3\x10\x6c\x16\xf4\xac\x49\x7e\x78\xaf\x9c\xfc\x13\xa2\xbb\xf2\x27\xcd\x09\xd7\x26\x9d\xde\xf9\xa6\xaf\x67\x4d\xe3\xcd\x00\xb4\xdf\xc6\xb6\xf8\x6d\xe4\xc8\x25\xb0\xc2\x44\xe5\xf0\xbe\x33\xcb\x86\x19\x71\xb1\x3e\xb6\x35\x37\x4c\x16\x47\x0c\xfb\x26\x10\x26\xd2\xdf\x84\xb8\x43\xa1\xe2\x71\xc0\x1c\x9b\x76\xd6\xc7\x78\x1c\xc8\x33\xa9\x88\xae\xef\x01\x64\x98\xad\x93\x8b\x07\x4b\xf9\xb7\x6d\x55\xfe\x1e\xd0\xd7\x32\xeb\x13\x44\xb1\xe7\xed\x27\x19\x0f\xd4\x48\xff\x84\xcf\xb6\x1e\xa0\x4c\x73\x3c\x76\x02\xe2\x78\xa0\xe2\x6d\x48\x5d\x6f\xc4\x40\x6b\x64\xd9\x7d\xa0\x2e\x50\x90\x33\x7b\x3c\x58\x84\xa5\xc5\xf1\x17\xae\x75\xf1\x48\x9d\x6f\x77\xf5\x37\xb9\xd0\xb1\xa7\xb0\xf2\xd4\x6f\xe7\xe9\x78\x94\x63\xbd\xb1\x3f\x29\xe0\x55\x79\xe7\x55\x88\x07\xf2\x49\x7f\x20\xda\xa0\x28\x8c\x3c\x48\x02\x56\xdd\xc2\xd5\x06\x78\xa5\x71\x79\xa7\xd1\x8c\x47\x7d\xe9\x59\xd4\x37\xf4\x90\xe4\x2b\xb4\x1d\xb4\x15\x8f\x46\xa7\xbf\x7d\x73\x8a\x07\x33\x9a\xc8\xcb\x2f\x1e\x1d\x6c\x5b\x8e\x83\xf1\xe8\x30\x00\xc9\x43\x2e\x1e\x83\x56\xf6\x9d\x96\x22\x1e\x03\x06\x41\x79\xa7\xc5\x63\x30\xf9\x53\xd0\xa6\x21\x78\x34\xc8\x9f\x2d\x1e\x8b\xb2\xee\x7a\x6d\xf1\x38\x99\xf3\x79\x53\xc5\x78\xc0\xff\x3c\xc8\x35\x2c\x1e\x17\xb2\x29\xa5\x5d\x4c\x22\x1e\x70\xca\x0c\x69\x07\x52\xc4\x03\x46\xe5\x20\x27\x89\x78\x3c\x0b\x35\xc6\xee\xe3\x61\x29\x8e\xcd\xad\xe2\xf1\x62\x1e\xb2\x3b\x7e\x0f\x38\xac\xb6\xe1\x65\x9e\xa9\xcd\x8a\xe3\x31\x0b\x61\xba\xf8\x6a\x0c\x2c\xbf\x2a\x8d\x7d\x0c\x91\x62\xcc\x8e\xd3\x8f\x21\x82\x49\x4a\x67\x1f\x43\x64\x0a\xaf\x2d\x48\x7f\x0f\x2e\xbe\xd1\xf6\x03\xb8\x46\x4a\xdb\x1b\x03\x6a\xbf\x05\xe9\x87\x63\x88\xf0\xce\x93\x1a\x32\x86\x04\xe7\x85\xba\x93\xdf\xc7\xc0\xe2\x53\xd2\x1b\xc6\x80\x5a\x52\x41\x8a\xc5\x18\xd2\xcd\x07\x79\x8f\xc2\x32\x01\x2d\x2f\xbb\xcc\xf7\xe0\x65\x71\xb6\x3d\xd3\xb2\x26\xd6\xf6\x1b\x35\xf3\xc1\x86\x58\x40\x8e\xd1\x4f\xac\xdb\xa3\x20\x2f\x62\x68\x79\xec\x4f\x90\x1e\xef\x7b\xb0\x01\xd4\x71\x3d\xac\x3b\x39\x72\x0c\x8c\xa1\x6d\x25\xee\xc5\x21\xba\xb0\x75\xfd\xbe\x99\x35\xa4\x6c\x62\x13\x1e\x86\x0e\x94\x4d\x8e\xc2\xc2\x86\x92\xf7\x27\x34\xcf\xb7\x92\x37\x38\x1e\x58\x56\xda\xce\xd4\x19\xc3\x33\xf8\x46\xf1\x83\x9b\x0f\xf6\xcc\x69\xe3\x6d\x3b\x4d\x74\x0c\x0f\x90\xb0\xed\x48\xfb\x18\x68\xb2\x6b\x3b\xb5\x47\x0c\x2f\x2b\x73\x14\x81\xf4\x4d\x84\x8f\x26\x06\x56\x14\x5a\x69\x7a\xd0\xb8\xb8\x4d\x9f\xc2\x84\x6b\x66\x2b\x8b\x1a\xc7\x18\x88\x2f\xfb\x1e\x13\x23\xea\xe7\x86\x21\x5a\x10\x13\x3b\xad\x7e\x80\x0c\x22\xad\x6e\x7a\x12\x2b\xd3\x4f\x6e\x7d\x6c\x8c\x15\x4e\xa5\xad\xee\x53\x1a\x91\x48\x25\xb4\x5d\xd5\x37\x46\xa6\x25\x69\x3b\xe9\x7d\x8c\x03\x66\xf4\xb6\x0b\x59\xc6\xc8\x50\xb2\xb6\x59\x58\x8c\x57\x66\x70\xf3\x46\x8f\x48\x0f\xf1\xb6\x8b\x7c\xc4\x48\xf7\x47\x19\x21\x62\x84\xef\xe2\xf7\x60\x6d\x43\x5c\xc7\x76\x3b\x6c\xc7\xf8\x32\x26\x63\x2b\xb5\x62\x9c\xc8\x46\x7a\xec\xd4\x97\x31\xb1\x22\x78\xdb\x85\x46\x63\x0a\xc4\xa8\xed\x32\xf7\x3d\xe0\x36\xec\xa3\x9f\xc2\x64\x1a\xe5\x0d\x8f\x94\xe0\x09\xd6\x76\x28\x47\x4c\x2c\x4e\x94\x77\xde\xc6\x98\x12\x53\xd7\xef\x48\xeb\xef\xc1\xfa\x24\xeb\x01\x87\xad\xea\xf4\x59\xc9\x9a\xdd\xc7\xc9\x07\x51\x0f\x26\x1f\xa8\x0f\x1e\xfd\x5d\xd7\x2e\xa6\x34\xa9\x3c\x89\xfb\x93\xc5\x6f\x5a\x8f\x7f\xc1\xbf\x52\xc6\xed\xa2\xed\xba\x5b\x31\xb1\x68\x4a\x6b\x7b\x4b\x52\xa6\x1b\x5d\x13\x6c\x32\xa7\xb0\x0b\x8e\xc4\x54\x18\x7a\xb9\x6d\x1a\x31\xa1\x2a\x44\x68\x3b\x91\x7c\x4c\x85\xf0\xdd\xd1\xd9\x31\x31\xcb\x7b\xeb\x82\x6f\xc5\x95\xb1\xed\x3c\x52\xdf\x03\x3a\x94\x0e\xbd\x41\xda\xd2\xb5\x69\x0d\xc1\x52\xad\x0b\x9c\xc8\x3f\x1a\xda\xce\x65\x18\x53\x03\x63\xad\x43\x33\x65\xce\xc7\xba\x33\x32\x7e\x0f\x56\xfe\xc4\x3d\xd3\xb6\x0a\x81\xef\xf3\x97\x90\xda\xec\x93\x2c\x34\x2c\x13\x8d\x75\x6d\x49\x27\x8a\xee\x2c\x47\x31\x21\x15\xd3\xf7\x60\xf7\x71\x0e\xae\x76\x8b\x00\xe9\x86\xea\xa9\xed\xc4\x24\x31\xdd\x50\x81\xe5\xa8\xd5\xde\xd8\xd6\xb4\x43\xe6\x63\x7a\x50\xe9\xbb\xed\xe8\xd0\xef\x01\x62\xe6\xb7\x62\x29\xa6\x27\xf3\x0d\x01\xe8\x21\xbe\xed\x9c\x3d\x31\x3d\x94\x4d\x86\x0e\xc2\x43\x5a\x32\xb4\x0d\x13\xee\x3b\x6d\x3b\x23\xc6\x7c\x64\x1e\xa6\x8d\xd5\xf9\xa0\x2f\xcc\x0e\x18\x8d\x39\x40\x51\xd4\xb7\xad\x34\xe6\xc0\x92\xad\x3b\x02\x26\xe6\x80\xb5\xf4\x6d\x18\x8f\x19\x85\x43\xbf\x4b\xcc\x9a\x69\x4e\xd0\x11\xf6\xed\x27\x1d\x33\x0b\x7b\x89\x6d\xe4\xca\xfa\x8e\x5b\x67\x1b\x33\x33\x6c\xf7\xad\xcb\x8c\x99\x29\xe8\x54\xf2\x3d\xe6\xce\x1c\x90\xbb\xbe\x45\xcc\xbc\x26\xf7\x6d\x0b\x8f\xf9\x62\xa9\xe9\x6d\x7c\x88\xf9\x62\xd9\x9b\x6d\x07\x88\x99\xfe\xdb\x5d\xb4\x25\x3f\x48\xa0\x96\xb6\x93\x56\xcc\xef\xb1\x6c\x1e\x5d\x0f\xb0\xd8\xe0\x07\x10\x96\xfb\xce\x0d\x19\xf3\xcb\xb4\xa0\x61\xe3\x5c\x7e\x59\x1c\x2f\x68\xea\x73\x59\xcb\x36\x23\x29\x07\xeb\x70\xef\xb2\x18\xb1\x1c\x4c\x9c\xb5\x73\xa6\xc5\x12\xe0\x05\xde\x77\xfe\xaf\x58\x02\x12\x88\xf7\x9d\xaa\x31\x96\x70\x73\xf9\x43\x9f\xb0\x62\xec\x4e\x9b\x18\x0b\xca\xac\x7f\x0f\x76\x1f\x91\x81\xdf\x3b\x7f\x41\x2c\x2c\x4e\xd5\x25\x81\x97\xcc\x82\x32\xfb\x66\x11\x4b\x66\x72\x88\xed\x74\x1b\x4b\x39\xd6\x1b\xfb\x13\xd4\x63\x09\x7d\xfb\x5e\xc4\xc2\x3c\xf8\x59\x42\x7b\x69\x94\xc0\x85\x2f\xa5\x71\x2d\x3b\xbf\x40\x2c\x0d\x62\x45\xdf\xc1\xfb\xb1\x30\xa7\xd6\xae\x03\x1b\xcb\xa0\x30\xb3\x6f\x28\xdf\x03\x2a\x8c\xb7\xf4\x5b\x56\xda\x8b\x7d\x2f\x8e\x05\xc1\xbc\x21\xed\x98\xf4\x58\x4e\xa6\x6d\xda\xd9\x58\xbf\x07\xfc\x64\xe9\x26\x62\x39\x99\xf6\x70\xa7\x63\x8d\x85\xc1\x43\x5d\xc7\xb8\xdc\x20\xaf\x7d\x47\x08\xc6\x72\x83\xe0\xf4\xad\x30\x8e\x65\x49\x11\xdb\xf0\x19\xcb\x4b\x18\x27\xad\xfe\x25\x9a\x4a\x2c\x2f\x2f\x84\x97\x9e\x34\xd3\x97\xf5\xc7\xb7\xa2\x21\x96\xf7\x5e\x6f\xec\xa9\xbf\xcc\x34\xb9\xb5\x39\xb1\xbc\xef\x7a\xb0\x3b\x9d\xcc\xc5\xbc\x9d\xe1\x63\xc1\xf5\xf3\x7b\xb0\x47\x99\x84\xd8\x56\x89\xc4\x32\x21\xde\xf4\xad\x3a\x8c\x65\xb2\x0a\xdc\x56\x44\xc5\x7a\x1c\xec\x63\x13\x9c\x7a\xc0\xb4\xd9\xb7\x4a\x2d\xd6\x83\xc9\x68\xb6\xeb\x5e\xac\x07\x8a\x0c\xf7\x54\xcb\x5f\xb0\xaf\x1a\x81\xf6\x69\xa7\x5f\x8e\x35\x56\x5e\x2b\xf7\x7d\xac\xc6\xc6\x01\xf6\xc1\xa8\x91\x55\x96\xb6\xd7\x63\xac\x29\xaf\x9a\xc1\xbb\x0f\x56\xa6\xeb\x5b\x25\x17\x2b\x4a\x37\x84\xbe\xbd\x64\x62\xad\xbc\x89\x6e\x77\xa1\x58\x91\xea\x3a\xf4\x9d\x79\x31\xd6\xce\xb4\xec\x59\x2b\x5f\x09\xbb\xb6\xfd\x3a\xd6\x41\x8d\x5b\xf5\x03\x52\x9f\x5c\x76\x1f\x50\xfb\x87\xbc\xd3\x61\xc7\x3a\x56\xa7\x82\xde\xc9\x13\x9b\x05\xbd\xa5\x4f\xdb\x76\xc4\x58\x4f\xd4\xd9\xec\x3b\x4d\x72\xac\x2b\xe0\x7f\xdb\xdc\x62\x3d\xc9\xcf\x0e\xbd\xc1\xd8\x8e\x96\x37\x56\xd7\x9b\x55\x48\x77\xd1\xbb\x58\x6f\x1a\x92\xa2\x1f\x70\x62\x3b\xda\x23\xd6\x97\xbc\xe8\xd0\x36\x2c\x14\x2d\xfb\xca\x52\x69\xef\xea\x92\xd1\xeb\x44\x50\x52\xdf\xe5\xda\x62\x3b\x26\xeb\xff\xed\xa3\xd2\x02\xf3\x65\x6e\x85\x7f\x6c\x21\xb1\xf2\xc3\x66\xc5\x8d\xf2\x53\xdf\xb5\x96\xbf\x07\x17\x1f\x1c\xfb\x01\x79\x51\xdd\xf4\xa9\xa1\x22\x60\xe8\x75\x9f\x9d\xef\x02\xc4\x07\xbb\xd3\xca\xa4\x99\x75\xa3\x79\xab\xf0\xfc\xea\x5b\xd9\x14\x1b\xab\xdc\xf4\xba\x65\xc1\xc6\xb2\x1c\x2a\x34\x10\x5b\x45\xdd\xac\xbe\xdd\x40\x62\x6b\x64\x13\x5b\x17\x14\xdb\xca\x85\xbe\x2b\xb4\xc7\x86\xa4\xdb\xdf\x83\x05\xe4\x36\x3a\x87\xdd\xc2\x61\x43\xfe\xa2\x4f\xd0\xdd\x00\x3a\x3b\x67\xba\x85\xb9\x76\xb1\xe6\xc3\x56\x7c\x7d\x0f\x30\xec\x4e\x0e\x16\x1b\x43\x01\x65\x63\x88\xed\x4e\x8c\xc3\x16\x3c\x6e\x48\xf1\x0a\xc4\x8d\x0d\x5e\xc2\xf1\xd8\x55\xcf\x62\x7b\x90\xca\x58\x8e\x6e\xb1\xbd\x61\x3d\xd8\x9f\x4c\x5e\xcf\xb7\x92\x31\x76\x6a\x7f\xfa\xce\x08\x12\xfb\x81\x0a\xa4\xbd\xed\xb5\x7c\x64\x17\x20\xdc\x30\xed\x91\xc5\x50\x76\xad\xff\xd8\x23\x33\xd4\xb5\x7d\x23\xe9\x28\x0f\x1a\x94\x02\x3c\xf6\x4c\xf2\xb3\x6b\xc5\xc7\xce\x0a\x7f\xbd\xed\x2b\x4a\x2f\x2c\xea\x2b\x09\xbc\xd7\x87\xf0\xd8\x20\xec\x28\x1e\xf0\x3d\xd8\x9f\xac\x54\x63\x3b\xcd\xfd\xf7\x80\x65\xe3\x36\xd2\xf5\xb1\x2a\x05\x07\x7d\xd2\x1b\x93\x79\x26\x3d\x60\x25\xad\x8d\x63\x7d\x1d\x64\xc9\xc3\xfd\xdc\x05\xad\xf5\x46\x66\xf9\x8e\xcd\x03\xfb\xb9\x8a\x05\x6b\xf9\x27\xeb\xa0\xec\x3c\xdc\xb1\x9f\xe4\xf8\x3b\x8f\x76\xec\x27\x8f\xa9\x24\xe6\xbe\x38\x5a\xdf\xb2\x49\x67\x5c\x69\x97\x70\xdb\x19\x9d\xd8\x25\x0f\x77\x1c\xf5\xb6\xb5\xa3\xb1\x3f\xdc\xeb\x9d\x7b\x32\xf6\x67\xcd\x6b\x8b\x26\xfd\x59\xb5\x41\x37\x05\xee\x6f\x58\xe0\xa8\x7a\xc0\x41\xba\x1e\x30\x0b\xff\x56\x42\xc7\xfe\x76\xae\x6d\x33\xd6\xfe\xbe\xec\x74\xa8\x53\x24\x0c\xde\x95\xde\x63\x9f\xab\x2a\xe6\x96\x5d\xfa\xa2\x2f\x3b\x4b\x55\x1c\x91\x68\xbb\xf3\xf9\xc4\x11\xaf\x95\xba\x7f\x81\x78\xe4\xc1\x37\xb6\x5a\x65\x94\x9b\x09\x57\xf6\xae\xac\x1a\x3e\x69\x57\xc3\x8e\x2c\x66\x11\xfa\x28\x7f\x91\x79\x3c\xb2\xc6\x42\xe8\x3b\x7a\x3c\x8e\x56\xf8\xf9\xa6\xce\xcc\x78\x19\xba\x04\xf2\x71\xae\x90\xa4\x7d\x82\xc7\x43\xfb\x50\xd3\x32\x9e\x87\xa1\x30\x71\xf7\x41\x4f\xd5\xb1\x1d\x8c\xe2\x78\x19\xe4\x91\x36\xb9\x1e\x6f\xa6\x07\xf4\x26\x71\xe3\xed\x2b\x8e\x75\x77\x4a\x57\xbb\xb1\xdd\x4f\x22\xfd\xd6\xc2\xd8\x8e\x18\x71\xbc\x2b\xcd\xc8\x56\x87\x8c\x79\x33\xd2\xb5\xe9\xc1\xd3\xfe\xed\xc1\x79\x04\x8e\xb2\x25\xac\xf3\x88\xf4\x06\xdf\xd8\x76\x1e\x7d\x85\x51\xe4\xfd\x60\x2e\xcf\xfb\x05\x8f\x33\x8c\xe5\x2f\xbe\xfb\x88\x17\x85\xe7\x4d\x26\x4f\x96\x9a\x1e\xd2\x40\x9e\x99\x71\x81\xbb\x34\x4e\x3c\x0b\xe4\xb8\xb1\xcb\xb6\xc4\xb3\x2e\x57\xb2\x2d\x2e\x9d\x15\x0e\x57\xc7\x8e\x54\x8f\x67\xbd\xd6\x1b\xbb\xd3\xf1\xd2\x45\x61\x93\xa7\x0b\x75\x1c\x82\x8a\x57\xc4\xab\x91\xe1\xef\x0c\xe2\xdf\x03\x12\xd2\x7d\xb3\xbe\xda\x72\xd8\x19\x7e\x83\x4a\xdc\x8d\xc4\x57\x43\x90\xc8\xb1\xf3\x9e\xc5\x0b\x09\xff\x3f\xb9\x36\xeb\x01\x35\xa1\xfb\x3c\x5e\x48\xe8\x1f\x0f\xad\xe5\x6a\x9d\x0a\x93\x7d\x84\x2f\xe4\xdb\x0f\x79\x57\x6d\xfc\x1e\xf0\xd2\xb7\xb1\xfa\x6a\x9d\x85\x3b\xa2\xde\x18\x64\x3d\x9b\xa2\x5d\xc8\x36\x1f\x8f\x5d\x59\xf2\x7b\x00\x47\x9d\xe0\xe5\x5f\xb4\xdb\x35\xf5\x81\x8a\xd0\xc7\x4e\x8c\xfb\x3d\x98\x14\x2b\x34\x31\x3a\x5b\xee\x8c\xa0\xdf\x83\xce\x42\x8b\x7a\x83\x9e\x87\x32\x1a\x5c\xc8\xa9\x1d\x0f\xd1\x96\x8b\x09\xad\x8f\x9d\xe7\xe9\x7b\x70\x32\x4a\x7c\x41\xfd\x29\xb4\xea\xf6\x2d\x66\xbd\xb1\x51\x97\xbe\x49\xfe\x5b\x68\xa6\x13\xdd\x7c\x51\x00\x27\xe4\x1d\xd7\x10\x27\xb3\x87\x17\xe9\x8e\x27\x33\x77\x4b\x47\x32\x3b\x9d\x19\xb6\x51\xe5\x7b\xd0\xf1\x42\xd3\xef\x93\x8a\x62\x7d\xb1\x44\xdb\xee\x07\x9d\x4a\x6f\x7d\x12\xef\x7f\x53\xad\xcf\x4e\xe3\xfe\xb6\x55\x7d\x0f\x48\x9e\xf6\x41\x9f\xc8\xf9\xfc\x4d\x23\xee\x07\x34\xf3\x4a\xef\x32\x3b\x2d\xa1\xba\xdf\xcf\x5e\xb9\x6f\x51\x6f\x40\x1c\x4c\x3d\xa9\x0f\xb8\x47\x35\xcf\xfc\x13\x43\x5a\x4b\xfa\xcd\x7c\x92\x92\x30\x67\x1f\x5c\x6b\xd4\x18\xe7\x9a\x96\x3e\x81\xc3\x73\xda\xee\x28\x71\xf6\x8b\xf3\xac\x5a\xfc\xc5\xf3\x16\xb5\x56\xc4\x64\x48\xe3\x3d\x91\xd7\xf7\x47\x41\x37\x91\xd8\xb7\x6d\x43\x69\x9c\xcc\xdb\x9b\x77\x86\xec\xef\xc1\xda\x23\xbf\x81\x79\x6e\x73\xde\xf7\x00\xcc\xcf\x2f\x20\x45\x60\x92\x8c\x36\x07\xbd\x66\xa4\x04\x9c\x63\x19\xc2\x36\x4e\xcf\x71\xd0\xfd\x47\xd0\x1b\x6b\xe3\x35\x71\x66\x84\x95\xe9\x6c\x22\x23\xec\xd7\x85\x1e\x2c\xaf\x83\x2d\xc5\xcc\x41\x2f\x03\x29\xbe\xe6\xa0\x95\x58\x87\x6f\x0e\x58\x2e\x92\x2e\xc8\xcb\x21\x28\x1f\x9e\xe8\x43\xe7\xb0\xfa\xef\xfe\x16\xf1\x7f\xc2\xb6\xe6\x60\xa2\x85\x1d\x39\x14\xe7\x58\xe9\xfc\xeb\xff\x9a\xeb\xfd\xeb\xfc\x8f\xff\xf7\xc5\xeb\xdf\x17\xc7\x3f\x7f\xd6\xbf\x50\x2b\xef\xe7\xe5\xd1\xf3\x86\xb2\x73\xbb\xe1\xbb\x24\xef\x7f\x3f\x08\x1f\xfa\xe4\x72\x57\x17\xeb\x2f\xa8\xe5\x76\x0b\x33\x22\xee\x96\xdb\xdf\x20\xfd\xe6\xb6\xde\x1e\xc7\x27\x0d\xaf\x7f\x69\xdb\x38\x76\xcb\x33\xdc\x42\x19\x7a\xb7\xbc\xee\x8d\xb9\xb9\x92\x5a\xdc\xdb\x64\xb1\x80\xdd\x32\xdd\x1b\xf2\x28\x6c\xfb\xf9\x11\x3e\x29\x65\xff\x3b\x98\x2c\x7d\xcf\x3b\x7e\x47\x73\xff\x8b\xb5\xca\x6d\xfc\x88\x9e\x45\x04\x5e\xdb\x39\xf5\x23\x60\x6e\x43\x9f\xaa\xc3\x73\xa4\x43\x90\x4d\x07\x8b\xd6\xaa\xa5\xba\x05\x94\x67\xc3\x22\x05\xcd\x31\xd1\x33\x59\xd9\xfe\x8f\x14\x1e\xb7\xbd\x6c\x8b\x6a\x9b\x6a\x63\xc2\xa8\xae\x1d\x4e\xe9\x54\x1b\x7c\x83\x8a\x12\xe9\x1f\xe9\xa3\x27\xfb\xdf\x55\x79\xc8\x6d\x9e\x0b\x2a\x17\x1e\x8a\x9a\x38\xd2\xf0\xda\xa0\x65\x51\xd4\xd2\x91\x3e\x2c\xda\xff\x7e\x4b\x38\xfc\xd5\x79\xbb\x09\x0c\x49\xce\xf8\x47\xba\xdc\x23\x24\x65\xf9\x81\x1f\xe9\x76\x8f\x88\x27\x93\xaf\xe7\x01\x53\xc1\xfe\x17\xec\x49\xae\xf3\x07\x74\x0d\xfb\xdf\x9b\x6d\x4d\x6d\xaf\xdb\x38\x93\xed\xd5\x71\xe0\xda\xba\xff\x2d\x18\x6e\xa8\x49\x1b\x87\x3a\xef\x41\xa1\x34\x07\xea\xbc\xaf\x7f\x61\x0e\x56\xcd\xcf\x03\xc5\xd1\xf7\xbf\x9c\xc8\xf6\x22\x3b\x50\xc5\x7c\xff\xcb\x89\x6c\x2f\xa0\xf0\xa6\xdd\x16\x5e\xd6\x7c\x57\xc4\x47\xf4\x39\x8f\x07\xdc\xcd\xb7\x57\x4f\x3c\x52\x54\xcb\xc7\xb4\x86\xa2\x14\xe3\x91\x86\x9b\x4e\xf8\x19\xec\x96\xdc\xd4\x02\x37\xaa\xaa\x42\x48\xf1\x68\x59\x6d\x6d\x7c\x1d\xba\xa9\x7b\x16\x1d\x4d\xdb\x2f\x2d\x86\xb2\x37\x2d\x86\x92\xf1\x55\x51\x53\x75\xd3\xf9\xcf\x9f\xd1\xba\x9b\x2e\x37\xbd\xf8\x2a\xec\xa6\xaa\xb1\x02\xf2\x43\x16\x77\x58\x4f\x37\x5d\xff\xfc\xe9\x0a\xe5\x8c\xa1\xf9\xab\x6f\xf2\x5d\x21\x98\x31\x34\x7f\xd5\xf0\xd5\x3e\xd6\x11\x92\xef\xfe\x97\x41\xd8\x6a\xf1\xdc\xe1\x24\x1c\x95\x54\x3d\x86\xd1\xdd\x36\xd8\xa6\xc1\x6e\x01\x31\x7c\x84\xb1\x2b\xf1\x55\x8c\x71\xd3\x90\x18\x23\xfd\x9c\xb6\x4f\x61\x8c\xb1\xb9\xad\xb3\xcd\xdf\x5d\x6e\x83\x23\x70\xd9\xfe\x51\x31\x56\x0d\x17\x29\xd7\xca\x3b\x2f\xc6\x5a\xdd\x06\x47\x77\x39\xdf\xc7\x68\x48\x46\xd6\xb6\x97\x13\x69\x8c\x4d\x88\x15\x99\x30\x6c\x78\xbc\xe6\x3e\x99\xa6\xa1\x1c\x1a\xaf\xfb\x3b\xb8\xdf\x16\xb9\x7b\xc7\xd8\x3d\x4f\xe8\x60\x8a\x7c\xac\x23\xb4\x89\xfb\x5f\xce\x73\x9f\xb6\x18\xbb\xe7\xd9\x39\xcf\x4d\x27\x63\x1c\x86\xe7\xe0\x77\x5d\xdf\x3d\xfe\x0e\x42\x4c\x69\x42\x95\x74\xe8\x3b\x10\xe8\xaf\xcf\x3d\xcf\x14\x75\x72\x52\x3c\xff\xf9\xa3\x50\xae\x98\xc6\xa3\x16\x84\xba\x45\x95\x8b\x8b\x26\x85\x31\xc1\xe3\x26\xaa\xde\x58\x4c\x67\x73\xdb\x87\x98\xc1\x83\x9d\x97\x9b\x1e\x34\xa9\x47\xf1\xe4\x08\x82\x19\xaa\x32\x05\xc7\x74\xbd\x6a\x83\x05\xb5\x2a\xd9\x6d\xcc\x3e\x3c\x19\x35\x33\x54\x87\x3e\x66\x1f\xef\xdc\xe1\x34\xa6\x23\x97\xc5\x01\x22\xee\xeb\x5d\x29\x56\x63\x16\x03\x88\x79\x30\x6e\x6b\xb3\xed\x98\xc7\xad\xb6\xeb\xc3\x75\x45\x50\xc5\x7c\x69\x4f\x33\x2e\xfc\x87\xdc\x00\x63\x7e\x3c\x47\xf0\x52\xd7\x89\x8f\xf9\x15\x48\x32\x04\xa2\x43\xe9\x6f\x62\x9e\xc5\x6d\x90\x46\x14\x4d\x1e\xcb\xa1\x3e\x0b\x92\xd0\xe7\xed\x3f\x16\x4b\xd5\xc6\x95\xfa\x7e\xc7\x7f\x73\x87\x58\x9a\x16\x57\x3e\x68\x75\xa5\xae\x8d\xa5\xbb\xe9\x83\x4e\x57\x60\x63\x84\x69\x76\xff\x5b\xd0\xe1\x9e\x62\xf1\xd2\x58\x75\xbd\x2a\x2d\x79\x44\xbd\xf2\xfd\x2f\x06\xd3\xd6\x54\xcf\xbe\x1e\x68\xd2\xa2\xab\x38\x51\xac\xd0\xf9\x54\x65\xf4\x8e\x28\x57\xbe\xff\x7d\x40\x0e\xf7\x1c\x6b\xd5\x8e\x56\xdc\xbc\xa2\x62\x9c\x63\xf5\xf9\x46\x81\xe5\x0f\xb7\xf6\x24\x9b\xcf\x77\x6b\x00\x96\x8e\x14\x8a\x12\xec\x7f\x21\xf2\x29\x8b\x6b\x1c\x53\xc7\x0d\x29\xc0\xbf\xb6\x1d\x0f\x43\xa9\xf5\x7f\x25\xc8\xc6\xcb\xa7\xf1\x82\x2f\xa3\xf2\x19\x45\xe4\x48\xdc\xff\x16\x96\x0f\xde\x6b\xbf\x4c\x6c\x90\x60\xf0\xa3\xc1\x7b\x81\x6f\x17\x5c\x5e\xa4\x35\x48\x2a\x13\x1e\x5f\x89\xc1\xf1\xa5\xc7\xbf\xca\xfd\xc6\xd7\x07\xeb\xbd\x69\x9d\x10\x51\x44\x08\xda\xfe\xb7\xfc\xf3\x27\x2b\x43\x65\x44\x18\xd8\xfe\x37\xfe\xf3\x27\x97\xed\x08\x1e\xe7\x35\xd5\xc4\x0c\xbe\x5b\x58\x88\xf3\xf1\x57\x4f\xfc\x8d\x8c\x8a\xb0\x12\xed\x7f\xcb\x6f\x3c\x4a\x3a\x84\x29\xe9\xf8\xc4\x1e\x39\xca\xa7\x43\x70\x4c\xc7\x07\xc7\xed\x43\xf2\xfd\xec\x6a\x09\xe1\x87\xa6\xa5\x43\x8b\x4a\xc7\xb7\xa8\xba\x85\x8b\x74\x08\xed\x12\xed\x4d\x55\xa0\x48\x47\xf8\xe9\x0f\xb8\xa5\xda\x40\x09\x92\xc8\xfe\x17\x5b\xa6\x88\xe1\x74\xe4\xa0\xb6\x81\xb8\x05\xcd\x63\x78\x1e\x1f\xdf\x6d\xaa\x09\x9e\x8e\x31\xdc\x84\xac\x9b\xca\x3d\x97\x8e\x71\xb9\xed\xfe\xe7\x4f\xcd\x02\x86\x88\x75\x3a\x3e\x62\xbd\x3d\x6c\x8e\xe4\x6b\x50\x3a\x66\xfd\xe7\x8f\x52\x45\x27\xdc\x2f\xf6\xbf\x27\x38\xb7\x3e\x9a\xee\x6e\xa2\xbb\xb5\xf7\xc9\x02\x44\x0a\x70\xa8\xab\x4a\xd1\x9b\xc2\x74\x1b\xee\x21\x55\x05\x00\x52\xd0\x81\x49\x61\xf2\xbb\x4d\x95\x52\x94\xc8\x97\x22\x54\xd8\x87\xa2\xbf\x52\x8c\xa7\xdb\xe6\x47\x72\xf7\xb1\x4e\x31\x69\x65\x11\x79\xbe\x6a\x50\x93\x04\xd3\x14\x3f\xc1\xab\x2b\x5c\x33\xc5\x72\xbb\x09\x84\x5a\xc9\xf8\x53\xec\x9e\x08\xf4\x5b\x87\x0a\x73\x26\x33\xe6\x14\xe1\xb4\x74\x18\x49\xa1\x15\xde\xff\x42\xc4\x17\x63\x4e\xf1\xcc\x6e\xeb\x98\xe5\x86\x57\xbc\xbc\x80\x6b\x4d\x45\x2b\x78\xdc\x25\x68\xff\xa1\x08\xff\xe4\xfb\x57\xe2\xfd\x2b\xe8\x2e\x95\x92\xe4\xff\x94\xe0\xb6\x1a\x54\xe4\x25\xa5\x70\xba\x0d\xd5\x30\x55\xe7\x22\xf9\x9e\x95\x12\x74\x07\x41\x95\x17\x52\x8a\xdd\x6d\x03\x6d\x9b\xef\xa5\x14\x3d\x1e\x22\x4b\x82\x52\xdb\xa7\x24\x02\x9a\x12\xce\x46\x50\xe2\xf2\x94\x92\xbf\xcb\xfc\x4e\xb8\x92\x72\x72\x5b\x65\x9b\xd6\x90\x2f\xb7\xdd\x68\xd3\xf6\xa5\xec\x35\x14\xf6\x99\xd5\x67\x29\x6e\x63\x9f\x9b\x1b\x25\x5c\x10\xf7\xbf\x10\x14\xf6\xf5\x39\xf9\xaa\x98\x52\x87\x30\x33\xb4\xf2\xee\x15\x7c\x08\xd1\xaa\x01\x26\x39\x21\x41\x74\x6a\xf5\x50\x87\x46\x87\x74\x7e\xbc\x54\x29\x09\x52\x7a\x74\x1e\x13\x74\x96\x41\xd5\x15\x53\x91\x96\x23\x15\xa6\xda\x55\xd6\xbc\x84\xa2\xb5\xfb\x5f\x3a\x20\xee\x8b\x29\x5d\x4d\xf6\xbf\x85\xaa\xab\xba\xdb\x62\x52\x1b\xdc\x91\x86\xd2\x63\xe4\x37\x4e\xb5\x61\x5b\xb3\x72\x26\x67\xd8\x69\xf7\xbf\x81\x6d\x71\xb7\x35\x8f\xd7\x3e\xf1\x3c\x28\x89\x47\x46\xc2\x84\xf5\xef\x77\x60\xe4\xc7\xfd\xfd\xbe\xdc\xc4\xa0\x9e\x45\x1c\xf2\xd4\x86\xe7\x09\xa3\x7b\x50\x02\x94\x8c\x18\xcb\xfd\x2f\xd3\x53\xee\xfb\x67\x46\x78\xe5\xfe\x17\xae\x43\x0a\xd4\xc8\xf3\x72\x9f\x17\x72\xbf\x4a\x90\xcb\x53\x8a\x9e\x3c\xef\xc0\xb6\xb2\xdb\x5e\xad\x0e\xde\xf0\x59\x52\x6f\x31\x9f\x2a\xc7\x41\xa0\x6c\xad\x48\xf1\xc5\xb5\x80\x5d\xc4\x20\xfe\x51\x8e\x12\xd4\x86\x8a\xc9\x41\x95\xac\xcb\xd1\x93\xda\xbe\xeb\x44\x0c\x2a\xe0\x5c\x8e\xe1\x3e\x07\xdd\xd3\xb7\x98\x5d\x8e\x31\xd5\x76\x72\x09\x59\x6d\xa7\xdb\x90\xdd\xc1\xd5\xb9\xca\x71\x9d\x6e\x5b\x1e\xee\x9a\xcb\x3d\xd4\x76\x9f\xdf\xd2\xdd\xf4\xdc\x6a\x7a\x08\xcd\xcd\x8a\x4b\x10\xa9\x2a\xe1\x23\x55\x16\x30\x4a\x38\x6e\x37\xc1\xea\xb3\xbd\x9b\x8e\x12\x82\xdb\x02\xbb\xdc\x37\xa4\x12\x74\x73\x2c\x01\x91\x94\x41\x65\x5f\x4b\x88\xfe\x2e\xf2\xbb\x2d\xf3\x97\x90\xb4\xf2\xf0\x61\x70\x96\xfc\x54\x70\xed\xde\xff\x7e\x8b\x93\x38\x5a\x82\xee\x5c\x05\x37\x64\xe9\xef\x0f\x7a\x4b\xed\x7f\xaf\xaf\x29\x69\xac\xcb\xcb\xbe\x22\x9a\xd4\xe1\xa3\x4d\x0d\x0f\x4f\xdd\x3e\x21\x25\x1a\x5a\x8c\x9f\xc8\x4a\x4f\x55\xcc\xed\x4a\x64\xca\x36\xa9\x13\x4b\xd4\x19\xa1\xfb\x55\x96\x58\x5f\x60\x97\xd8\xff\x32\xb2\x7a\x47\x95\x16\xdf\x27\x0b\xee\x93\x31\x88\xb9\x96\x28\x8d\x56\x89\x27\xaa\xc2\xb5\xf1\x57\xf2\x6d\x89\xba\x09\x95\x88\xe2\xc0\x41\xe9\xd8\x4b\x34\x86\x45\x62\x98\x12\x71\x94\x38\x3d\xd3\x4f\x7a\x90\x63\xe3\x51\xd2\xa1\xcf\x12\x74\xe3\x59\x11\x54\x25\x19\x1d\xc0\x9c\x62\xf0\x0e\x25\x29\x12\x4a\x42\xaa\xf8\xa0\xec\x3d\x05\x94\x7e\xff\xcb\x69\x6e\x5d\x48\x49\xd2\x69\x94\xc4\x72\x82\x4a\x08\x59\xe0\xa1\xbb\xff\xc5\x61\xd6\x6d\xa8\x64\xa3\x5f\xfe\xd0\x2f\x2b\xaf\x68\xc9\xe2\x85\x85\x0a\xb6\xa1\xbb\x5c\xc9\xba\xb0\x15\xb8\xcb\xc7\xe0\xfd\xcb\xd2\xc3\x96\xfc\x7e\xf8\x27\x1d\x55\xf1\x15\xb0\x14\x86\x10\x18\x2a\xc5\x87\xab\xc0\xba\x15\xe2\x8e\xb0\x2b\x45\x5a\xaa\x52\x90\xc3\x53\x71\xc6\x05\x5e\xb9\xfb\x5f\x64\xcd\x56\xd0\x58\x29\x62\x4f\xa5\x3c\x04\xd8\x96\x2c\x4a\x95\xd4\x51\x2a\x6c\x15\x59\xb9\xb7\x0a\xc2\x4e\xf6\xbf\x40\x5c\x15\x81\x29\x55\x9c\xbe\x54\x24\x3d\x0d\xba\x2f\x94\x5a\xfd\x5d\x05\xa0\xc5\x66\x4a\x6d\x6e\x83\x6d\x3b\x2b\x61\x55\xa9\xc6\xdc\x0a\x97\xf5\x9c\xb7\x0a\xb7\x54\x43\xb3\xa2\xe4\x45\xd0\x4d\xb0\xd4\x29\xb0\xd4\xc9\x90\x84\xcd\x14\x4a\xf3\xc1\x6c\x48\x51\x1c\xa4\x4d\x2e\x4d\x52\x55\x69\x88\xa0\x18\xaa\xc5\x5e\x5a\xd4\xae\xb7\x08\x76\xa8\xe4\x92\xa5\xe9\xe6\x50\x1a\x3c\xfa\xb3\xe2\xa2\x4b\x4b\xcd\x6d\xfd\x9f\x3f\x59\xc9\x2d\x4a\x4b\x8f\x9b\x40\x36\x55\x53\xa3\xb4\xac\xe5\xd1\x92\xec\x0c\x4a\x05\x65\xe0\xf7\xbf\x0c\x27\xd9\xc2\x58\x69\xc3\x7d\x32\xab\x91\x22\xef\x4b\x33\xbe\xa3\x58\x75\xce\x9b\xfd\x96\x36\x3d\xdc\x84\x65\x4d\x55\x84\x4b\xf7\xf1\xea\x3c\x5e\x4a\xb6\x56\xba\x44\xe9\xd2\x3b\xe3\x56\xf6\x75\xa5\xf4\x2e\x2a\xdd\x69\xa5\x57\x96\x8e\xd2\x25\x66\x97\x7e\x72\x17\x74\x4e\x50\x7a\x72\xff\xcb\xa0\x14\x71\x8c\x3e\x2f\xb7\x3d\xb8\xaf\x6e\x68\x0e\x5d\x22\xcb\x58\x51\x26\x5b\x85\x57\x50\xc7\x71\xff\x4b\x04\xdc\x12\x7f\x19\x3e\xe9\x03\x27\x7d\xfb\xa4\x1d\x05\xba\x82\xfd\x6f\xe5\x67\x1b\xa7\x47\x73\x1b\x63\x34\x14\xda\x5e\x86\xac\x45\x05\xc5\xd1\xb2\x82\xd4\xcb\x78\xb5\xb8\xf1\x12\x55\x24\x78\x9c\x1e\x0e\x41\xd7\xb9\x08\x1d\x10\x7a\xbc\xff\x2d\x4c\x7f\xb6\xf7\xe7\xb4\x8c\x70\x9e\x8c\x38\xd9\x3a\xcf\x72\xea\xae\x56\x50\x32\x25\x17\x1d\xe6\xcb\x04\x02\x35\x20\xb2\x2a\x96\x96\xab\x89\x06\x5c\xf4\xce\x55\x92\x88\x72\xe9\xd6\x58\x50\x54\x20\x7e\xe2\xd1\x6e\x3b\x45\xf7\x99\xca\x3f\x28\x33\x52\xb9\xcc\x47\xe1\x26\xfb\xb5\x6d\x58\x5e\x86\xd7\xf5\x30\xb9\xdb\x96\xf6\xcb\x7d\x08\xfb\x90\x21\x3c\x2b\x32\xb3\xdc\x49\xc3\x21\xb5\x73\x56\xa4\x65\x41\xae\xdf\xfd\xef\x0a\xed\xd1\x67\x12\x6c\xcb\x4d\xc1\x56\xea\x8b\x72\x4f\xcd\x12\x69\x71\x63\x30\x12\x21\x09\xe8\xfa\x17\xe9\x3f\x43\xde\x3a\x87\xf2\x34\xad\x00\x49\x33\x63\x90\x0e\xbc\x20\x8d\xe2\xfe\xf7\xbb\x78\x78\x71\xaf\x94\x18\x85\x5e\x3a\x59\xf9\x0f\xca\x2b\x63\x4d\x81\x0f\x79\x96\x16\xb8\xbc\x45\x7b\xf0\x16\xee\x81\x4e\xf2\x5b\x75\x42\x5e\x9a\x81\xcb\xbe\xcc\x94\xd7\xdc\xe9\xad\x0c\x34\x12\x3a\xbc\xc6\xe7\xf7\xc3\xe7\x2c\x7b\x42\xb1\x6e\xa9\x20\x27\xd7\xd7\xe5\x06\xca\x7b\x0b\x60\xf0\x3a\xce\x3b\x66\xe6\x28\xef\xe3\xc5\xb1\x96\x92\x42\xe9\xcb\x2b\x1d\x77\x81\x27\x51\x56\xec\x2a\x5d\x93\xf7\xbf\x03\x4d\x7b\xdd\xd3\xb2\x24\x42\x78\x43\x2e\xa2\xf9\xd3\x02\xc2\xa4\x80\x50\xf6\x2d\xbb\x4c\xb3\x49\xa4\xcd\xc9\x4d\x9b\x33\x8d\x0c\x93\xc8\x50\x44\xd6\xa7\x14\xd9\x65\x22\x24\x33\x14\x11\xc5\xf9\xb8\xed\x59\x6d\x1a\xce\x74\x96\x4e\xd3\x56\x67\x94\xf9\x74\xb7\x0d\xa4\x6b\x55\xd3\x2b\x30\xcf\x97\xb1\x54\x7b\x2a\xf5\xd0\x0a\xea\x51\x1a\x4b\x5c\xb4\xdd\x36\xdc\x86\x54\x78\xdb\x6b\xf0\xa8\x16\xf5\x2b\x44\xfd\x18\xca\x8e\x89\xae\xc7\xfd\xba\x6d\xb2\xad\xec\xb6\xe9\x2e\x27\xba\xdc\x4a\xf5\x0a\x2f\xdc\xfd\xef\xfb\x35\x6d\xda\x56\x83\xa8\x6c\x0d\x70\x9a\xcd\x9e\x24\x42\x73\xf7\xbf\x1f\x49\x54\x09\xdc\x1a\xa4\xaa\xa9\xa1\x13\x94\x5b\x0f\x55\x83\xee\x4d\x35\xf0\xde\xb4\x03\xdf\x8e\x1a\x86\x87\xe3\xbd\x49\xe7\xbf\x86\xdb\x7d\xf2\xea\x57\x14\xd0\xfb\xbf\x17\x7a\x6b\x30\x5c\xc2\x82\xcb\xd0\x74\xde\x5b\x6d\x2f\x2b\x8d\xec\xf3\x5a\xa3\x54\x95\x35\x1e\x1f\xde\xaa\x02\x5a\x8d\xba\x35\xd6\xf8\x89\x0a\x59\x75\xaa\x6a\xec\x02\x27\x74\x51\xd1\xf5\x88\x6a\xf4\x02\x23\x92\x22\x6e\xef\xa0\xa3\x5a\x32\xaf\x11\x05\x49\x82\x50\xac\x46\x1d\xd7\x0a\x5d\x54\x0c\x75\x4b\x23\x15\xc6\xf5\xfd\x2f\xc2\xa5\xea\x16\x47\x6a\xca\x1a\x0e\x6a\x9b\x8f\x2c\xee\x15\xa4\x53\x7d\xc2\x2a\x1e\x86\xb2\xbe\xd6\xa4\x73\x5e\x57\x44\x9b\xd4\xd2\x35\xbd\x1e\xef\xe5\x78\x5b\xeb\x52\x93\x6e\x09\x95\x51\xd3\x43\xb9\x13\x6a\x96\x99\xb2\x66\x26\xdb\x55\xca\xc9\x9a\xbd\xbe\xbc\xc8\xd1\x3e\x43\x35\xdf\x1a\x2f\xc3\xbe\xd4\x54\x5c\xad\x66\xf9\x48\xd4\xfc\x86\x7f\xfe\x14\x25\x43\xac\xb0\xe5\xec\x7f\x71\x4e\xea\x26\xfb\xb5\x78\x5f\xcb\xc1\xb6\x2d\x3b\xd4\xa2\xab\x40\x2d\x1f\xf3\x2e\x4a\x69\x5f\x4b\xba\xdd\xf4\xf0\xb3\x0d\x95\x22\x03\x40\x2d\x1f\x82\x97\x63\xb3\xd7\x5a\x3c\xc9\xc2\x49\x6a\x6d\x65\x7a\x30\x44\xbe\x07\x65\x7d\xa8\x65\xbe\x6e\xe3\x9e\x6f\xca\x5e\x2d\xb5\x57\x48\xed\x31\x28\xd7\x41\xad\x12\x39\x6a\xfd\xf8\x4d\x91\x46\xa6\x56\x99\xb9\x6b\x45\x2c\x48\xde\x01\xa4\x47\xad\x62\xaf\x15\xd6\x9a\xa2\xfc\x9f\xb5\xd6\xdb\x4d\x0f\xa3\x28\xd5\x65\xf3\x67\x50\xf2\x54\x69\x34\x6b\xed\x1e\x8e\x1e\x9b\x4a\x72\x58\xeb\x38\xd5\x36\x6e\x56\x00\xda\x50\xa9\xb7\x60\x59\x6f\x88\x76\x2a\x02\x59\x5b\xd4\x29\x69\xdf\xdd\xb2\x84\x6d\xdd\xa8\x4d\xf6\x99\x8a\x20\xc0\x22\xdd\x49\x6d\xf2\x1c\xaa\x8d\x2a\x25\x15\x57\xa8\x3d\x69\x7b\x3a\xbc\xfe\x73\xdd\xba\xa1\xda\xeb\x54\x5b\x03\xcd\x69\xdb\x29\xa3\x76\xe3\x33\xbd\xdf\x5a\x17\x30\x51\xf0\x7f\xff\x7b\xb1\x4d\xdf\x49\x21\xc3\x90\x92\x18\x9a\xce\x64\x97\x0a\xab\xb2\xa2\x7c\xeb\x51\x6d\xd3\xf3\x9c\x9c\xa7\x90\x7d\xc8\xdd\xa0\x8e\x35\x4f\xd1\xdb\xd1\xb4\x86\x81\xd4\xaf\x59\xe9\x2a\xea\x78\x04\xcd\x01\xef\xa8\x5c\x37\x67\xae\x43\xbc\xab\x0e\xf2\x2e\x15\xc5\xa9\xa7\xa9\x1f\xd3\x0f\xb5\xae\xef\x4e\x49\x32\x95\x29\x68\xb2\x72\x69\xd4\x53\xb6\xf5\x7a\x22\xa9\x6c\xe8\xc2\xdb\x53\xd7\x9c\x0a\xf1\x37\x64\xa5\x51\xaa\xe7\xe9\xf1\xce\xef\x74\xc9\x8d\xa1\x9e\x97\x87\x23\x47\xef\x22\x39\xa7\xc9\x0a\x4b\x58\x86\x2e\xd2\x81\x7a\x93\xfb\x5f\x92\x23\x0f\xf7\xe8\x08\x9d\x2c\x6a\xe4\xed\x3b\x25\x4e\xd6\x93\x11\xd5\x7d\x8b\x8c\xf5\x92\x83\x55\x85\xf1\x30\x86\x2e\xca\x7f\x1d\xda\x86\x0b\xa9\x1e\xda\x76\xb0\x3f\xea\x25\x35\x50\x45\x45\x33\x57\x55\xa8\x97\x14\xa5\x15\x22\xfc\x37\x4d\x0d\xe7\x9d\x45\x99\x33\xe7\xd3\xaf\xd7\x70\xd3\x09\xc1\xb6\x47\x75\x69\x60\x5e\x48\xfe\x16\xba\xd8\xda\x65\xc4\x45\x61\x2e\x27\xc0\xae\xd7\xe5\x49\x22\x4f\x6c\xd8\xfe\xb5\x47\xbd\xe4\x2a\x55\x2f\x14\xfa\x0c\x3d\x69\x96\xf2\xc0\xab\xac\x41\xd5\x54\xe1\xbb\x5e\xaf\x01\xc6\x30\x5d\xf9\x76\x54\x54\xe6\xd9\xff\x66\xa4\x91\xdd\xc7\xf2\x36\x11\x60\x1d\x1b\xa7\x7a\xaf\xb7\xd9\x13\xaa\x64\x84\xac\xba\xf9\xf5\xf1\x77\x4f\xe4\x70\x82\xca\x63\x91\xe5\x61\x06\x10\x99\x3c\xea\x9b\xb5\x74\xfa\xd5\xb7\x21\xb0\xbc\xd2\xee\xd5\x17\x26\x8f\xa6\xe2\x73\xf5\x95\x33\x52\x7d\x91\x5a\xa9\xa9\x44\x5c\x45\xbe\xdf\xfd\x2f\xd4\x4a\x16\x9f\x2c\x66\x57\x88\xd9\x25\x0b\x55\x2c\x65\xd7\xe5\xaf\x5f\x0e\xb5\xbd\xee\xf2\x65\x97\xe2\x26\x53\x7e\x1f\x75\xb2\x0e\x7b\xd3\xf2\xa6\x8f\xc2\xe4\x0e\xa9\x64\x41\xb3\x03\x67\x3b\x98\x95\x49\xb4\xbf\x1d\x52\x96\xb6\x03\x42\x71\xde\x1e\xc3\xdf\x83\xe2\x36\xe4\xe2\x2c\xdb\x23\xb2\x85\xbc\xb7\xa1\x85\x8c\x84\x6f\x9b\x90\xb5\x20\xa1\xa4\x05\x96\xc2\x55\x46\xd4\x16\x64\xbd\x6e\x90\x05\xa3\x0d\x4f\xcd\x92\x5a\x83\xa4\x16\x6d\x78\x6a\x51\x02\x52\x8b\x1f\x07\x2f\x32\x05\xb5\x28\xad\x73\x8b\xf9\x40\xd3\x9e\x64\xcc\x6e\x82\xb9\x6a\x94\xa8\xcf\x64\xae\x6a\x11\xe6\xaa\x2c\x3f\xb8\x16\xab\x56\x10\x19\xfe\xa7\xa4\x92\x0d\x79\x40\xf6\xbf\x60\x7a\x32\x73\xb5\x68\x80\x45\xd2\x1c\x95\x39\x6c\x76\x05\x6d\x70\x05\x2d\x35\xf6\xbf\x92\x7c\x5b\x92\x85\xa9\x25\x5a\x98\x76\x1c\xd4\xd1\xec\xf4\xd9\xe8\xf4\xd9\x55\xc2\xa6\x25\xdd\x54\x5b\xfa\x6e\xaa\x72\xd3\xfe\x7e\x9f\x6e\x22\x06\x6e\x16\xdc\x52\xd6\xe2\x61\xee\x2b\xb2\x81\xb7\x64\x44\x4a\xbc\x6a\xab\xde\x5e\x4b\x86\x59\x5a\x30\x6b\xea\x52\xe6\xbf\x96\x3a\x61\xbd\xc5\xcd\x96\x86\xbf\x83\x9a\x24\x37\x21\x6e\x96\xe2\xaf\x65\x28\xfe\x72\xdf\x3c\xa3\x65\xd9\xcf\x5a\x26\xcb\x57\xf6\xe6\x96\x25\x07\xb5\x8c\x6a\x42\x41\x15\xa9\x5b\xf6\x5c\x32\x03\xc0\xfa\xd6\x58\xb7\x2c\x65\x48\xcb\xac\xd1\xac\x6a\x13\x2d\x8b\x75\xb7\x3c\xb1\x7f\xea\xb2\x48\x61\xd8\x4a\x62\xb0\xf6\xd6\x09\xb4\x62\x74\x29\x40\x97\xa8\x04\xe8\xad\x34\x7f\xc7\x58\x56\x59\xa6\x5a\x11\x97\x6d\xe5\x9b\x66\x69\xc2\xdc\xa2\xfb\x47\x2b\xb8\x60\xe5\x1d\x7e\x76\xb4\xe2\xf3\x55\xe0\x6f\xd2\x65\xd0\x6a\xe5\x71\xdb\xbb\xda\xf4\xdd\x74\x9f\x1f\x47\x2c\xba\xdd\x37\xcb\xb0\x0d\x32\x6c\x69\x3b\x81\x15\x43\x2e\xf7\xbf\x95\x45\xbc\x8a\xda\x2e\xb7\x31\x60\x5d\x67\xa1\xca\x1d\xe1\xbb\x4b\x7f\x5d\xee\x7b\x6c\xab\xf2\x33\x6d\x95\x65\x72\x94\xae\xba\x55\x79\x9a\x7e\x57\x4a\x7c\xa6\x99\x48\x95\xdd\x6a\x45\x8f\xdb\x5e\xdf\xec\xb7\xd4\x6a\x3d\xd1\xb4\xcf\x79\x95\x57\x4f\xab\xac\xe5\xa9\xcc\xcc\xad\x0e\x4f\x64\xe0\xb3\x7d\xdd\x6c\x55\xcc\xb7\x55\x30\xdf\xa8\x44\xc8\xad\xca\xfa\xdc\x98\x0c\x21\xf7\xaa\x2e\x4f\xcf\x1f\xf4\xdb\x8e\x7b\xad\x5e\x9e\xe5\xc5\xe1\xf6\x61\x6d\xd2\x46\xb5\x86\x78\x95\x68\x6a\xd4\xe4\x00\xda\x20\x55\x97\x1d\xba\x72\x34\x6b\xb8\x1b\x34\xdc\x45\x62\x68\x6b\x59\x88\xd7\x90\x94\xb0\xaa\x64\x7f\x6b\x52\x69\xb4\x06\x95\x46\x54\x5a\xd9\xd6\xa4\x6a\x6b\x0d\x11\xe2\x59\xee\xe0\xcd\xda\xef\xd6\x1a\xaa\x94\x1e\xda\xef\x66\x38\x37\x78\x4f\x8d\xb2\x73\x1e\x36\x8b\xf5\x0d\x62\x7d\xe9\x62\x24\xed\x11\xe6\x35\xc4\x36\x74\x55\x6d\x6e\x3d\x6a\x09\x1d\xa1\xf9\x79\xa7\x89\x39\x5a\x97\xc7\x62\xeb\x2c\x92\xab\x1a\x44\xad\x9b\x0c\xaf\x48\x13\x79\xe4\xb7\x2e\xff\xff\xd6\x19\x5f\x2a\x43\x57\x1b\x32\x82\x35\x64\x97\x0d\x43\x5e\x26\x6d\xe8\x4a\xd6\x06\xaf\x64\x63\x2b\xe2\xda\xb8\xd4\xe7\xc0\xbe\x8e\xcd\xea\xdb\x90\x03\x7a\x1b\x8c\x09\x95\x9f\x4c\x3b\x4d\xd7\xcf\x8f\xae\x17\xf9\x83\xb4\x53\x97\xdb\x06\xcd\x74\x8c\x61\x9b\x12\xda\xe9\x63\x80\xdc\x89\x45\xee\x20\xed\x94\x45\xbe\xa1\x34\x7c\xc8\x2a\x90\xde\x4e\x29\x7a\xdb\xf9\x60\x92\x42\xb0\xf3\x75\x8f\x2f\x7a\xdc\x86\x84\x76\x79\x8e\x17\xe7\x58\xd5\x24\x9f\x95\x76\x45\xee\xdc\xd6\xc2\xb7\xcb\xfc\xfa\xca\x28\x47\xaa\x3b\x5e\xbb\x74\x07\x6a\xd7\x77\x07\x2a\x2a\xd9\xd7\x2e\x19\x36\xdb\xc5\x5a\xf7\x0a\x1d\x69\x97\xae\xe0\xed\x62\x11\x73\x19\xba\xdb\xe5\x4d\xbd\x58\xae\x5c\xc6\xec\x76\x9b\xd8\xdc\x24\x36\x41\xe3\xdd\x72\x70\x6a\x2c\xdd\x37\xa4\xc6\x6a\xb7\x37\x7c\xd5\xcc\xd3\x75\xac\xdd\x52\x01\xb5\x9b\x41\xfd\x32\xc0\xb6\x5b\x42\x5a\xbb\x21\xa4\x65\x55\x28\x6e\x8f\x14\xea\x0d\x55\xd4\xbe\xb6\x3d\xde\x63\x06\xf3\x90\xc1\xa8\x08\x64\x7b\x74\x41\x6f\x4f\xe7\xbe\x6a\x0d\x8f\x44\xfa\x86\x72\x3b\xd1\x1e\x8d\xed\xb9\xdd\xe7\x8d\xba\x4c\x2a\xa8\xda\x1e\x99\x9d\xda\x03\xb3\xd3\x90\x6e\xa5\xbd\x45\x30\x7b\xcb\xf9\xcf\x9f\xba\x03\xdd\x8f\xf6\x9a\x67\xa1\xdc\x48\xe8\x72\xdc\x6f\xaf\xdc\x7c\x1a\xa2\x86\xeb\x0e\xc9\x3c\x1a\x2a\x8b\xec\x7f\xf3\xd7\x24\x60\xbe\x72\xc7\x6b\x2f\xdc\xf1\x54\x42\xb8\xbd\xba\x6a\x36\xb8\xbd\xc4\x28\xcb\x73\x83\x1b\xcb\xfe\xf7\xc5\x67\x6a\xd2\xcd\xb6\xcd\xef\x66\x5b\x83\x76\x60\x7a\xc7\x99\x08\x3e\x9b\x2a\x4e\x53\xbe\xf9\x51\x97\x6a\x04\x9b\x52\x59\xb4\xb9\xd2\x88\x74\xb7\x75\xb7\x61\xd5\xc2\x3d\x7b\xcf\x34\x7a\xcf\x74\x55\x04\x6b\xb3\x79\x34\x56\x7a\x51\x61\xf0\x36\x6f\xed\x0d\xf2\x6f\xd7\x20\x52\x6a\x4d\x75\xa3\xa6\xba\x1c\xda\xee\x39\x3d\x1c\x4b\x34\x48\x1b\xd8\xed\x7d\xd9\xe1\x7d\x59\x55\x64\xbc\x1f\x72\x5a\xeb\x08\x1b\x89\x51\x4e\x85\xfd\x90\xb9\xba\x1f\xf0\xa6\x2a\x4a\x42\xdf\x43\xdd\xb3\xec\xa1\x7e\xb3\x8c\xf5\xf8\x2b\x69\xb7\x07\xc9\x6e\x3d\xd0\x44\xa4\xac\xf2\x3d\x3c\x8f\xda\x10\xee\x35\x94\xb5\xb4\x07\x49\x37\x3d\x7c\x34\xbe\x2a\xc5\x75\xb7\xd7\x64\x0f\xb0\x1e\x45\x19\x74\xbb\xbd\x26\x7b\x98\x08\x6e\xdb\x6c\xbe\xdb\x57\xa4\xc3\x57\xa4\xca\xb1\xab\x47\xdd\x6b\x7b\x84\x4a\x7d\x48\x3c\xeb\x8e\x83\xe8\x88\x83\xa8\x32\x64\x33\x7b\xc2\xfe\xb7\x7f\x4d\x5b\x03\xdc\xed\x18\xf9\x91\x4a\xcc\x71\xe8\xb3\xe1\x1e\x07\x48\x9f\x32\x9b\xf7\x78\x7a\x26\xcc\xcc\xa9\xb2\x98\x3d\x9e\x1e\x8e\xf2\x86\xec\x85\x3d\x89\xdc\x74\xc6\x91\x75\xdd\x4f\xbb\x9d\x41\x3a\x9c\x41\x62\x94\xaa\xa6\xa7\xe0\xef\x02\x96\xb0\xa5\x83\x8e\xc8\xb2\xfd\xef\xe4\x67\xea\x52\x12\x47\x4f\xac\x94\xea\xa5\x27\xb9\xea\xf6\x84\x80\xc8\x9e\xf7\x0d\xa0\x27\xc9\xb3\x3d\x41\x9e\x2d\x92\x46\x7a\x96\x63\x57\xcf\xcc\xca\x51\x34\xcd\x2c\x2a\xd5\x33\xf2\xa0\xf5\xa2\xb9\xe4\xd3\x6d\xa8\xef\x16\xa5\x73\xe9\x59\x8a\x8e\x9e\x91\x88\x33\xca\x38\xd6\xb3\x2c\x10\x9d\x01\x08\x7d\x27\x3f\x3c\x7a\x51\xc0\x58\x2f\x47\xe2\x77\x7b\x9e\xc5\x20\x2b\x00\x99\x72\xec\xf7\x22\xef\x85\xaf\x2f\x74\x99\xd4\xa5\x48\x4e\x2f\xb8\x6c\x45\xa5\x70\xee\x45\x7c\xbe\x17\xa6\x1d\x2a\x5b\xcc\xef\xe5\x12\xa8\x71\x1b\x88\x51\x91\x55\xbd\xc8\xcc\xd5\x0b\x53\x42\xed\xb4\x88\x47\xaf\xba\x66\xf6\x8a\x6b\x66\x53\xdd\xad\x5e\x65\x5d\xea\x70\x44\x89\x51\x29\xea\x7b\x95\x09\xa9\xd7\x82\x02\xa3\xd9\xdf\x49\x12\xeb\x95\x92\x98\x6c\x09\xdd\x9a\xe5\x0e\x39\xbc\x2a\x74\xa9\x57\x79\x77\xf6\x3a\x98\x5d\x66\x8b\x0f\xdd\x42\x74\xa7\x10\x5d\x8e\x4d\x6e\x7b\xf5\xce\xd6\x6f\x67\x6b\x76\xd3\xe5\xd5\x5d\x10\x11\xe4\xed\xdb\x9b\x6c\x02\xbd\xb1\xb6\xb0\xbc\x2c\x7a\x53\x34\x54\x6f\x4c\x96\x23\xf5\x42\x6f\xb2\x82\xf5\xc6\x6a\x89\x8a\x49\xec\x6d\x68\x9a\x0d\x79\xe6\xc6\xce\x38\x78\xf4\x76\x7a\x3c\xf8\xcf\x14\x43\xba\xc9\x7f\xa6\x37\xe4\x2e\xe8\x35\xaa\x4f\x99\xff\x7a\x9b\xf0\xc7\xd7\xe6\x75\x69\xb7\x7a\xcf\xdc\x04\x91\x81\x6e\xf2\xd1\x91\x2d\x73\x34\x1d\xf5\x6e\x64\xe9\xac\xf7\xa0\xa2\x2f\xbd\x4b\x7a\xe8\xfd\xfe\xf8\x72\xd9\x92\x72\xef\xb2\xe7\xf4\x8e\x14\x5e\x51\xf1\x4e\xbd\x1b\xc7\xfa\x87\x63\x55\xae\xb9\xdd\xea\xef\x4e\xf5\x77\x51\x59\x94\x3e\xe4\xe0\xd4\x19\x8c\x3d\x94\x6f\xbb\x0f\xdd\x33\xfb\x08\x04\xb4\x50\x7a\x98\x79\x31\x66\xbb\xe8\xf2\xdd\x87\x5c\xdb\xfb\x88\x1f\x29\xae\x5a\xdc\x90\x64\xd1\x07\x6c\x17\x51\xf6\xf8\x3e\x4c\x74\xc6\x47\x74\xaa\x52\x36\xf7\x21\xc5\x7f\x47\xda\xa7\x5a\x45\x1e\x4e\x9f\x9f\xf3\x00\x86\xc9\xd2\xdd\x4f\x59\xc1\x3b\xaa\x07\x7c\x6d\xbb\xcb\x53\xf1\x31\xfd\x6c\xb8\x70\x95\xe8\xb6\xd3\x6d\xa0\xc4\x65\xcb\xfa\xfd\x3c\x05\x94\xf3\xfc\x58\xac\x72\x54\xf7\x53\x4a\xbd\x0e\x35\x78\x8c\x45\x2b\xb8\xe4\x10\xd6\x2f\xa4\x58\x28\x92\xc4\xfa\x25\xcd\x42\xbf\x3e\xa1\xac\x36\x9d\x83\xcb\x44\xfa\x22\x91\xae\xe2\x86\x97\xae\xca\xfd\xfa\x70\xad\xee\x7c\x41\x47\xbf\x25\x1c\x75\xe4\x58\x8b\xb1\x88\x88\xdd\x72\x6d\xe8\xa8\xd7\xfc\xb5\xed\x2e\x6f\x89\x92\xfd\xee\x04\xca\x36\xd3\xf5\x5b\xb6\xd9\x7e\x77\x14\xf8\xd9\xf7\x87\x7e\x5f\x5a\xc0\x7d\x61\x01\xfb\x0e\xda\x6f\x33\xfa\x1b\x8c\x5e\x16\x9b\xfe\x78\xe7\x9e\x03\x31\x2b\x5b\xda\xed\xcf\xab\xaf\x50\x84\xb1\xb6\x2d\x12\xf6\x47\x46\x84\xfe\xb0\x54\xb3\x6c\x2b\xdd\x4e\xe1\xfd\x25\x2e\xc8\x7c\xdc\x5f\xa9\x39\xfb\xfb\x09\xfa\xb5\x0b\xf1\x5e\x85\x69\x77\xd4\x1c\xac\x3b\xab\xc4\xd1\x5f\x45\x04\xf5\x97\x49\x05\xbd\x37\xaf\x6e\xfa\xfd\x4d\x9d\xa3\xed\xa3\x63\x57\xf2\x4e\x57\xf2\xd1\x85\xb1\x6f\xf1\x70\xac\xf4\x2d\xcf\x86\xfe\xca\x16\xda\x5f\xd6\x8a\xad\x3a\x56\xaf\x09\x03\x12\xd0\xc4\xb8\x13\xd2\x1e\x7d\xca\x44\xd2\x51\xa5\x2b\x46\x39\x06\xf5\x29\xb5\x4f\x47\x80\xd3\xd7\xb6\x97\x6e\xe1\xbb\x43\xf8\x8e\x51\x01\x36\x7d\x7a\x9e\x73\xcd\x73\xab\x99\xfa\xac\xfe\xee\x43\xb0\xda\x85\x27\xf3\xf4\x70\x27\x37\x48\x74\x6f\x5e\xc2\xbd\x89\x94\x15\x65\x27\x6d\x3c\xfa\xd4\x8d\xb1\x23\xab\x6f\x75\x65\xc7\x43\x71\x1a\xe3\x88\x10\x1d\x64\x90\x1e\x8e\x53\x1a\x47\x22\x54\xda\xdf\xf9\x36\x8c\x43\x7a\xea\x01\x17\xf5\x3a\x54\x7d\xef\x90\xa3\xec\x60\x56\x84\xa6\x2b\xd0\x38\x1e\xcf\xe6\x01\xd1\x57\x22\xfa\x71\x48\x6b\x37\x90\xcb\x20\x74\x17\x0a\x47\x56\xca\xfd\x2f\xcc\x5f\x52\xcd\x0d\xeb\xf5\x07\xf4\xfa\xa1\xcb\xba\x37\x82\x2e\x6a\x23\x20\xd3\x4c\x94\x59\x66\x04\x99\x42\x06\xf4\xff\xa1\x28\xb0\x6e\xd8\xeb\x63\xc0\xeb\xa3\x4a\x51\x30\xc2\xed\x2e\x6f\x66\xbd\x52\xcd\x52\xfb\x71\x0f\xf8\x71\x7f\xc3\xed\x02\x47\x41\x46\xd6\x81\x84\x99\x5d\x98\x34\x82\x9c\x06\x46\x80\xd3\x40\x6c\x82\x66\x78\x3d\xcb\xef\xb2\xd4\x5d\x52\x30\xe8\xce\x3b\xc2\xc7\x67\xeb\x50\x01\xa6\xa8\xd3\x3c\x22\x4f\xb3\x6a\x27\x8c\x28\xe7\x9a\x81\x4b\xc1\xd7\xd6\xd5\x56\xdd\x46\x58\xfe\x7c\x77\xbb\x0d\x32\x47\x53\x51\xb1\x18\x3d\x1e\xca\xbd\x45\xd9\xce\x47\x94\x66\x65\x44\x14\x1a\x8f\x4d\x75\xbc\xa2\xbc\x06\x46\x4c\xeb\xbb\x0d\x4c\x07\x65\x8d\x58\x38\x9e\x8a\xe5\xd9\xdc\x31\x90\x97\xf1\x6b\xd3\x1a\x74\x65\x19\xb8\xb2\x7c\xe2\x9e\x9a\xdc\x65\x63\x0a\x33\x55\xad\x74\x4c\xd6\x88\x27\x41\xa6\x22\x78\x51\x9a\xa8\x11\xa1\x89\x1a\x43\x05\xd7\xa2\x58\xef\x88\xd4\x5f\xab\xf6\xcc\x88\xb7\xbf\x83\x13\x49\x71\xa5\xd8\xf8\x78\x2e\x0f\x97\xa7\x62\x58\x49\x22\xdc\x48\xcc\x9a\xac\xcb\xfb\x48\xba\x76\x8d\xc4\x6b\x97\x64\xa3\xe1\x94\x13\x03\xb1\xd4\xed\x50\x3d\xbc\x74\xb9\xcb\x8b\x90\xd6\xe9\xb2\x6b\xfb\x80\x6b\xfb\xd7\xb6\xc1\x92\x64\xab\x1f\x88\x45\x6a\x87\x36\x3d\x4b\xc4\x1e\x99\xc1\x1a\x43\x9b\xe0\xdc\x11\x23\x2f\x44\x52\xdd\xb4\x22\xdd\xea\x28\x9d\xbb\xa0\x4a\x6f\x45\xee\x0d\xa3\xa0\x58\x95\xee\x86\xa3\x48\x7d\x32\x0a\xd5\x27\x52\x0f\x8f\xa2\x38\xd2\x51\x90\x2d\x7b\x0c\x6d\x5e\x95\xc2\x79\x54\xe2\xa6\x8c\xd2\xa3\x1a\x37\x6b\x9c\xdf\x70\x2a\x15\x56\x4d\x1c\x6b\xe2\x39\x57\x21\x71\xab\xfc\xc7\x52\xf9\x77\x55\x25\xab\xd2\x46\x8f\x4a\x6d\xb4\x0c\xd6\xa3\xca\x5a\x33\x90\xf7\xab\x05\x91\x0e\x6b\xd3\x47\xbd\x06\x8a\x6a\xec\xaf\x9a\x18\xe9\x68\x91\x8b\x13\x36\xd8\xf3\x7b\xc0\xf3\xbb\xc9\x31\x65\x34\x9f\x83\xd6\xc0\x63\xc5\x47\x47\x93\x47\xf5\x68\x03\x55\x49\x44\x4e\x9b\xe7\xd8\x98\x85\x76\x68\xc7\xdb\x95\xdc\x86\xfa\x2c\x2a\x4c\xd7\xc4\x9e\x46\x23\x7b\x92\xfe\x74\x34\xe3\x57\x23\x7e\x75\xd5\x85\x6e\xd3\xb3\x9c\x9c\xa5\xca\xe5\x75\xf9\x7b\x0c\x66\xa4\xea\x32\x8e\x8f\xae\xeb\xf9\xe8\x30\x08\xe8\xf6\x30\x7a\xf1\x67\x2c\xde\x16\x85\xea\xbd\xba\x0d\xa9\x6f\xc6\x50\x4d\x3a\xbb\xdd\x0c\xb8\xdd\xb4\xa0\xaa\xeb\xdd\x04\xa0\x33\xc5\xb4\xa2\x08\x87\xaf\x08\x83\x57\x84\x2e\xef\xba\x31\x7c\x0c\x06\x8f\x81\xcc\xab\x63\xc8\x54\x38\x06\xcd\x4d\x66\x32\x43\x62\xd5\x18\xa8\x29\x13\xc5\x10\x86\x81\x32\x12\x2b\x96\x8b\xa5\x8d\xe4\x2e\xd3\xea\xb2\xab\xcd\x5d\x26\x76\xb9\x57\x30\xa4\x96\x18\x03\xf5\x25\x5d\xa0\x7e\xe8\x52\x38\xc6\x77\x34\x95\x1f\xef\x18\xc3\xfc\x73\x9c\xe8\x50\x55\x8f\x6d\x42\x18\x30\x21\x7c\x73\xd4\x3c\x5e\xcf\x11\xa5\x45\xe2\x50\x4d\xe8\x61\x66\x07\x3f\xa0\x16\x85\xcd\x63\x7a\x8e\x13\x73\x54\xdd\xd9\x21\x5d\xfa\x18\xd4\xa5\xab\x7a\xdf\x18\xd3\x3d\x4e\xd6\xf2\x57\xc5\xf1\x53\x06\x99\x71\x46\x56\xa6\x15\xb3\x3b\x8d\xce\x27\xd1\x59\xda\x9f\x71\x5e\xfe\xee\x62\xb2\x2b\x15\x7e\xf5\x3d\x66\x9c\xa8\xe8\xab\x10\x9b\x71\xca\x36\x34\xce\x67\xa2\x49\xa3\x29\x2b\xc2\x40\xb2\xe8\xa6\x68\x91\x71\x4e\x37\xa1\xe0\x79\x74\x45\xd8\xcb\x5c\xfe\x22\x97\x97\xfb\xc1\xb8\x4c\x9c\xaf\x63\x4d\x52\xdf\x59\x9a\xba\x22\x86\x53\x49\xf4\x4b\x46\xa3\x71\x7d\xe2\x62\x8b\xaa\xb0\x6f\x0b\xc9\x80\x85\xa4\x29\x83\xcc\xb8\x4c\x2b\xaf\xc4\x04\x76\x62\xf1\x97\x69\xe5\x45\x5a\x29\x53\xcd\xb8\x7c\x88\xaf\xef\x10\xb7\xa4\xfa\xe2\x97\xc9\xe8\x45\x32\x2a\x33\xce\xb8\xe4\x99\x3e\x2e\x78\xa6\x8f\x43\x9c\xe0\xaa\xee\xb2\x72\xc3\xc5\xfe\xaf\xe6\x3e\x1b\x53\x48\xc6\xf8\xef\xf2\x6e\xfb\x9f\x8b\xbb\xd7\xf0\x97\xdf\x89\x50\xf5\x9b\xef\xb7\xa8\x06\x7c\x9e\x9a\xa2\x87\xc6\x65\xae\x74\x21\xbb\x81\x2b\x4c\xdf\xd2\x01\x8c\x7b\x25\xaf\x14\x3e\xdf\x59\x10\xbb\x33\xdb\x44\xb8\x6f\xcb\xdd\x77\x61\xc2\x4a\xe1\xec\x5d\xfd\x5d\x65\x52\x4d\x11\x9b\xdb\x60\xb9\x2b\xd3\x69\x8a\xd8\x3c\xd2\xf6\x8d\x87\x15\x3f\xe4\x45\x3a\x1e\x13\xa2\x87\xc5\x3f\xa2\x84\xc5\xc7\xbb\xfe\xf0\xfa\x30\xc4\x21\x9f\xe2\xb6\xc2\xb6\xa1\x3e\x8b\xfb\x2c\xd8\x75\xb1\xff\xc7\x3b\xf4\xac\x1d\xea\xaa\xde\xaf\xab\xfe\x78\x06\x4f\xc2\xbe\xd9\x8e\xc7\x64\xea\x59\x45\xdb\x75\x24\x1f\xb9\x35\x8d\x67\x15\xd5\x76\xfd\x76\x65\xbf\x1a\x2f\x3c\x5a\xd3\xe1\x82\xda\xa6\xcf\x6f\x40\x36\x15\x51\x0e\x5f\x35\xc7\xdb\x99\xb7\xdf\x75\xb4\xa5\x24\x1c\x48\xc1\xd1\xf2\x4f\x01\xfb\xd7\x4d\xac\xe3\x2a\xbc\x7d\x6f\xb7\x3d\x2c\xbc\xbd\x17\xf0\xca\x57\x7c\xc0\xd7\x2a\xa6\xc3\xf5\xe5\xa5\x60\x1b\xef\x44\x71\x59\x51\x80\x77\x7a\x22\x13\xb5\xbf\x5d\xd4\x59\xaa\xf4\x31\x0f\xd4\xe8\x76\x05\x5a\x29\xa0\x06\x02\x21\xe2\xf1\x53\x9d\x56\xe1\xa6\x03\x59\x71\xbf\x89\xa8\xb2\xaa\x94\x34\x63\x22\x6a\x2f\xb9\x46\xb7\x4d\x51\x63\x56\x54\x8b\x16\xfb\x9f\x4a\xcf\x34\x66\x65\x71\x5c\xd7\xad\xf5\x68\x83\xa3\xb9\x00\xb1\x85\xee\x79\x33\x4d\xab\xea\xd2\xd9\x96\xbe\x72\x50\x96\xec\x8a\xa8\xc2\xa1\x39\x06\x2b\x9b\xba\x68\xe7\x3e\x91\x13\x75\x81\x7a\x71\xa1\x44\x69\x01\xe6\xf9\xc9\x62\x5d\x01\x4e\xf3\x14\xb8\x26\x34\x66\xbd\xfe\x94\x13\xbc\xd4\x54\x56\xa5\xc5\xdd\x76\xc9\x50\x33\x2f\x66\x6b\x88\x6a\x49\x6e\x41\x26\x31\x95\x56\x7c\xe5\x7e\x3d\x81\xac\x4d\xae\x7b\xf3\xd5\x11\x9e\x2f\x8e\x70\xdd\x09\xf9\x8f\xf9\x26\x7f\x86\x94\x18\x5d\x95\xf0\x5e\x5d\xbf\x26\x82\x84\xec\x23\x39\xad\xa1\x99\xd0\xd0\xb4\xa1\xa2\x6f\xaf\x28\xfa\x7c\x3f\x8a\xde\xc6\x16\x40\xe6\x2b\xa7\xb7\xf9\x7e\x02\x48\x1b\xc1\x5f\x3d\x6e\x7a\xf1\x95\xc7\x9a\x6a\xca\x07\x9a\xb4\xb0\xec\xc9\x7f\x68\xd5\x5c\x87\xf7\xcd\x9e\x3c\x02\x1b\x63\x55\x91\xc5\x37\x7b\xf6\x99\xb3\x77\x7d\x3f\xed\x33\xca\xb8\x57\x15\x51\x9c\x22\x06\x73\xb2\xb6\xa1\x0b\xf9\x9d\x6e\x81\x81\x4c\x05\xf1\x24\x9b\xcf\xb9\x60\xb1\x5b\x3c\x73\xd4\xcf\xee\x2e\x6d\xa8\xe3\x30\x61\x99\x0d\x76\x87\x98\xb3\xfa\xab\x8f\xb1\xb8\x22\xe8\x7c\x3d\xbb\x17\xd2\xa9\xca\xec\xed\x79\x87\x19\x98\x2a\xe5\x38\x76\x41\xbd\x90\xdc\x06\x1f\xd2\x63\x6f\x56\x98\xa1\xb8\x0d\xe9\x91\x8e\x9a\xd4\xd6\xdc\x86\xac\x27\x61\x8f\x17\xe3\xb5\x79\x50\x8c\x17\x79\xd0\x76\x99\x8e\x75\x6e\x7a\xf4\xfd\xdb\x68\xae\xd9\x29\xc0\xcb\xf6\x25\xf8\xfe\x1d\x4c\x97\xae\x44\xe6\xdb\x57\xe2\xfb\x97\x19\xb9\x53\xfe\x77\xd6\xfc\xfd\xf8\xaf\xe7\x7f\xfe\x1f\xff\xd7\xff\x7d\xfe\xe7\xff\x73\xfe\xd7\xf7\xcf\xfd\x3f\xfe\xf5\xaf\xf7\x3f\xfe\xfb\xf3\x5f\xee\xff\xfe\xe7\xff\xfc\x9e\xfe\x79\xde\xf9\x5f\xfe\xe3\xfd\xd7\xfb\xff\xfd\xb7\xff\xf1\xaf\xfb\xfd\xf3\x9f\xff\xed\x3f\xbf\xaf\xf0\xf7\xff\x07\x00\x00\xff\xff\xa7\x3d\x70\xec\xad\xb5\x03\x00"); -var _gaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\xc1\x8e\xdb\x20\x10\x40\xef\xfe\x8a\x39\x6e\x0f\x5b\x1b\xdb\xc0\x46\xaa\x2c\xb5\x49\xa5\xfa\xb0\xdb\xaa\xd9\xa6\x95\xaa\x1e\x08\x4c\x52\xa4\x1a\x23\x6c\x1f\xf2\xf7\xd5\x0c\x4e\xb2\x07\x6b\x98\x07\xbc\x19\x0c\xe5\xb6\xdf\xf5\xc1\xcf\x50\x7e\x4b\xa3\xdd\xe3\x0c\x27\x1f\x5c\xc2\x69\x5c\x92\x45\x38\xe2\xd9\x87\xa2\x10\x35\x38\x6f\xe7\x6b\xca\xc1\x0e\x26\x16\x45\xf9\xf9\x15\xc3\x30\x3d\x7e\x92\x8f\x5f\x60\x99\x70\xa5\xdb\x7e\xb7\xbf\x4c\x33\x0e\x7d\x38\x8d\xd0\xe4\xdd\x6e\x89\xab\x01\xa0\xfc\x8e\x67\x3f\xcd\xe9\x02\x0f\x1f\xdd\x78\xc4\x77\xe0\xf0\x44\xfc\x6b\x72\x98\x7c\x38\xc3\xc3\xf6\x65\x2f\x6e\x78\xbf\xc4\xf8\x0f\x07\x0c\x33\x54\xcc\x30\x38\x8e\x45\xb9\x7d\x36\xf1\xc5\x0c\x08\x6f\x7a\x39\xf0\x1c\x4f\x1d\x30\x4d\x7e\x0c\x20\xaa\xf7\x55\x25\xef\xfc\xf5\x12\x11\xc4\xea\xf8\xf5\xa3\xdf\xc1\x6f\x01\xa2\x82\x5a\xca\x8d\xfe\xb3\xf2\x9f\xcf\xa3\xbb\xad\x52\xb9\x7b\xeb\x9d\xfd\x6b\x52\xf1\xc1\x88\xf6\xd8\x81\x68\x54\xab\x38\xb1\x1d\x88\x6a\x43\x43\xa9\x3a\x68\x44\xcd\xc3\xa7\x0e\x44\x9d\x87\x86\x56\xeb\xb6\xe1\xc4\xe6\x44\xd2\x49\xae\x4a\xfa\xd1\xd7\x1a\xc9\x84\x33\xf2\x4a\xd7\x01\x05\xa4\x0d\x15\x11\x25\x98\xa8\x9a\x48\xcb\x44\x66\xa2\x88\x3c\x31\xd9\x64\x42\x35\x5b\x2e\xaf\xb2\x47\x91\x27\x77\xac\xb3\x47\x93\x47\xb2\x59\x67\x8f\x26\x8f\x64\xb3\xce\x1e\x4d\x1e\xc9\x66\x9d\x3d\xfa\xde\x8f\xc9\x1e\x73\xef\xc7\x34\x99\xb4\x6b\x3f\x56\x61\xdb\x01\x05\x49\xd5\xab\x8d\x5e\x8f\x9d\x4f\xc9\x09\xbd\x9c\xdb\x5d\xda\x25\x25\x0c\x33\xbf\x1b\xbe\x2e\xba\x02\x1f\xf0\xf6\x32\xe3\x18\x69\x17\x7f\xff\x03\x00\x00\xff\xff\xfc\xb5\x10\xb6\xc5\x02\x00\x00"); -func _bfdg ()(*asset ,error ){_gge ,_bee :=_fad ();if _bee !=nil {return nil ,_bee ;};_bffc :=bindataFileInfo {_ag :"Ext-RKSJ-H",_bc :13359,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491904,0)};_edce :=&asset {_cd :_gge ,_dce :_bffc };return _edce ,nil ; -};func _fgbf ()([]byte ,error ){return _dc (_dfbbd ,"UniKS-UTF32-V")};func _bcce ()(*asset ,error ){_abdg ,_gcg :=_bbff ();if _gcg !=nil {return nil ,_gcg ;};_bbdf :=bindataFileInfo {_ag :"UniKS-UTF8-V",_bc :738,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493065,0)}; -_dgccf :=&asset {_cd :_abdg ,_dce :_bbdf };return _dgccf ,nil ;};func _cagc ()([]byte ,error ){return _dc (_fced ,"GBT-H")};func _dcdf ()(*asset ,error ){_dgdc ,_dbed :=_faef ();if _dbed !=nil {return nil ,_dbed ;};_gaf :=bindataFileInfo {_ag :"UniJISPro-UTF8-V",_bc :5120,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492871,0)}; -_afae :=&asset {_cd :_dgdc ,_dce :_gaf };return _afae ,nil ;};var _eeac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x96\x4f\x8b\x1b\xc7\x16\xc5\xf7\xfd\x29\x6a\xe9\xb7\x79\x53\x55\xf7\x5f\x35\x34\x82\x87\x6d\x78\x13\x70\x1c\xe2\x38\x09\x84\x2c\x34\x52\x6b\x10\x64\x24\xa1\xd1\x2c\xfc\xed\xc3\x3d\x67\x6c\x12\x2f\xcc\xf5\xfc\x54\x75\xba\xf4\x53\xdd\xaa\xbe\x7b\x7b\xff\xee\xfe\x74\xbc\x95\xbb\x9f\xae\xe7\xdd\xa7\xf5\x56\x0e\xc7\xd3\xfe\xba\x3e\x9f\x5f\xae\xbb\xb5\x3c\xac\x8f\xc7\xd3\x34\xb5\x5e\xf6\xc7\xdd\xed\xeb\x9f\x28\xbb\xa7\xed\x65\x9a\x72\xfe\xa7\x2f\xcf\xb7\xf5\xe9\xfe\x74\x38\x17\xe1\xb8\xfd\xcb\xe5\x75\x6c\x29\x77\x3f\xaf\x8f\xc7\xe7\xdb\xf5\x4b\x79\xf3\xbf\xfd\xf9\x61\xfd\x4f\xd9\xaf\x87\xe4\x1f\xaf\xfb\xf5\x7a\x3c\x3d\x96\x37\x3f\x6c\x2f\xdb\x53\xfb\xf6\xc1\xa7\x97\xcb\xe5\xaf\xf5\x69\x3d\xdd\x4a\x03\x5b\x4f\x7b\xd4\xe9\xee\xed\x87\xed\xe5\xc7\xed\xd3\x5a\xee\xfe\xff\x0f\xf2\xeb\x7a\x7d\x3e\x9e\x4f\xa5\xd5\xff\xd6\xea\xf8\x00\xfc\x97\x2f\x97\xf5\x35\x62\xba\xfb\x7c\xff\xee\xe3\xe1\xf0\xbc\xde\x4a\x1f\x95\x63\x7e\xff\x7c\xff\xae\xfc\xd1\x4a\xab\xa5\x9b\x88\xfd\xf9\x3a\xf4\xb7\x0f\xe7\xfd\x5a\x38\x68\x6a\xfc\x26\xbb\xf3\x7e\x7d\xbe\x6c\x77\xeb\x75\x7b\x7a\x5c\xa7\x52\x96\xde\x7a\xdb\x94\x25\xde\xc7\xfb\x4d\x2e\xf1\xbb\x11\x53\xab\xf5\x75\xea\x71\x4f\xf4\x75\x4a\x6f\xb1\x6e\x4a\x71\x91\x69\xe9\x9d\xa8\xf7\x44\xd1\x23\x91\x6c\x81\xb4\x25\xd2\x96\x48\x89\xac\x02\xcd\x89\x6c\x07\xe4\xdb\x44\xe6\x89\xa2\x03\xc5\x9c\x28\x30\x31\x1f\xf5\x5a\x4a\x44\x4e\x14\xa9\x89\x44\x30\x6a\xd4\x44\x8a\x45\x88\x21\x6b\x06\x72\xa2\x48\x34\x5a\xc6\x2b\x97\xaa\x21\x89\xb4\x4f\x4b\x37\x22\x0b\xdf\x94\x32\x77\x9b\x96\xee\x44\x2e\x63\x53\x5a\x6d\xb9\x08\x67\xbc\x1b\x90\xe4\xa8\xe0\xa8\xc8\x4f\x5a\xb5\x5c\x57\x18\x51\x00\xcd\x19\x3f\x38\x0a\x25\x14\xab\x1f\xbd\x13\xf5\x44\xa3\x01\x09\x91\x24\x9a\x89\x94\x48\x81\x0c\xc8\x88\x6c\x53\xc2\xaa\x00\x39\x91\x63\x14\xe3\x83\x28\x30\x2a\x80\x06\xd1\x48\xd4\x39\x71\x26\x9a\x13\x35\xc6\x6f\x89\xb6\x89\x84\x8b\x78\x20\x7a\x00\x62\xfc\x8e\x68\x87\xd5\x57\xa0\x3d\xd1\x1e\x88\x5f\x7b\x25\x5a\xb1\x2e\x05\x3a\x10\x1d\x80\x46\x22\xfe\x8e\x28\x61\xd5\x81\xe8\x2b\x4b\x58\x45\x96\xd0\x57\x96\xb0\x86\x2c\xa1\xaf\x2c\x61\x82\x45\x08\x7d\x65\x09\xeb\x9c\x48\x5f\x02\x5f\xc2\x27\xd2\x57\x96\x30\x63\x16\x7d\x09\x7c\xe1\xd7\x1e\x42\x5f\x42\x5f\x5c\x17\x7d\x09\x7d\xc1\x04\x37\x39\x4a\x98\x30\x8b\xbe\x04\xbe\x94\x8b\xa0\xaf\x2c\x61\x95\x8b\xa0\xaf\x2c\x61\x68\x98\x21\xf4\x95\x25\xac\xf1\x89\xf4\x95\x25\x0c\x5b\x6e\x28\x7d\x29\x7c\xa9\x4d\x8b\x54\xec\x2f\xa9\xd9\x1d\xad\xe5\xf6\x15\xb6\xa8\xa0\x45\x5b\xcf\xa5\x0a\x5b\x54\xd0\x43\x4d\x9a\x4c\x8b\x08\x91\x00\x69\x6e\x13\x61\x77\x88\x02\x59\x6d\xd3\x22\xec\x0e\x31\xa2\xdc\x85\xc2\xee\x10\x07\xf2\x91\xf1\x6c\x05\x09\xa0\x18\x19\xcf\x7d\x2f\x03\x68\x44\xc6\xcf\x44\x33\xd0\x9c\xbd\x2d\x5b\xa2\x6d\xa2\x5e\x3d\xe3\x1f\x88\x1e\x80\x5a\xb6\x95\xec\x88\x76\x40\xdd\x32\x7e\x4f\xb4\x07\x12\xcd\xf8\x95\x68\x05\xd2\x3c\x73\xe4\x40\x74\x00\x82\x42\xa5\x2f\x85\xaf\xee\x7d\x9e\x16\xa5\x2f\x85\xaf\x1e\xd9\x1d\x4a\x5f\x0a\x5f\x7d\xb4\x98\x16\xa5\x2f\x85\xaf\x3e\xe7\x36\x51\xfa\x52\xf8\x92\x5a\x33\x9e\xbe\xd4\x88\xb2\x1f\x95\xbe\x14\xbe\xa4\xcd\x19\x4f\x5f\x0a\x5f\xd2\x47\xc6\xd3\x97\xc2\x97\x48\x1e\x0a\x4a\x5f\x0a\x5f\xa2\x91\xf1\xf4\xa5\xf0\x25\xe6\x19\x4f\x5f\x0a\x5f\xe2\x9e\xf1\xf4\xa5\xf0\x25\x61\x19\x4f\x5f\x0a\x5f\x32\x2c\xe3\xe9\x4b\xe1\x4b\xe6\xdc\x4c\x4a\x5f\x7a\x30\xd9\x14\xad\xd9\xee\x46\x5f\x06\x5f\x5a\xf3\x5c\x35\xfa\x32\xf8\xd2\x36\x74\x5a\x8c\xbe\x0c\xbe\xb4\xc7\x98\x16\xa3\x2f\x83\x2f\x95\xe8\xd3\x62\xf4\x65\xf0\xa5\xea\x3e\x2d\x46\x5f\x06\x5f\x6a\x9e\xf1\xf4\x65\xf0\xa5\x9e\x2d\x6a\xf4\x65\xf0\xa5\xa1\x19\x4f\x5f\x06\x5f\x8a\x93\xdc\xe8\xcb\xe0\x4b\x67\xc9\x78\xfa\x32\xf8\xb2\x9a\xe7\x84\xd1\x97\xc1\x97\xb5\x9e\xf1\xf4\x65\xf0\x65\xbd\x65\x3c\x7d\x19\x7c\x99\xb4\x8c\xa7\x2f\x83\x2f\xd3\x3c\xac\x8c\xbe\x0c\xfb\xcb\xac\xd6\x69\x71\xfa\xf2\x4a\x94\x07\x9f\xd3\x97\xc3\x97\xf9\x18\xd3\xe2\xf4\xe5\xf0\x65\x91\x27\xa6\xd3\x97\xc3\x97\x8d\x70\x5c\xc8\x5f\xef\xdd\xa9\x8d\xef\x6f\x62\xa7\x4d\x87\x4d\x9b\x23\x1f\x4e\x9b\x0e\x9b\x5e\x3d\x1f\x4e\x9b\x0e\x9b\xde\x2c\x1f\x4e\x9b\x0e\x9b\xde\x2d\x1f\x4e\x9b\x0e\x9b\x2e\xea\xd3\xe2\xb4\xe9\xb0\xe9\xaa\x19\x4f\x9b\x0e\x9b\x8e\x03\xcf\x69\xd3\x61\xd3\xbd\x67\x3c\x6d\x3a\x6c\x7a\xe4\x41\xec\xb4\xe9\xb0\xe9\xb8\x89\x9d\x36\x1d\x36\x7d\x6e\x19\x4f\x9b\x0e\x9b\x51\xab\x4e\x4b\xd0\x66\x54\xa2\xbc\x33\xe2\xf5\x9d\x05\x36\xa3\xe5\x1d\x1b\xb4\x19\xb0\x19\x7d\xf8\xb4\x04\x6d\x06\x6c\x86\xe4\x2d\x15\xf4\x15\xca\x0b\x35\x14\xc8\x88\x7c\x53\x46\x1f\xfa\x2f\xe7\xf9\xff\x7c\x43\xfc\xf6\xc6\xb6\x7b\xb9\x5e\xd7\xd3\x0d\xef\x87\x78\x3b\xcb\xd7\xab\xe3\x69\xfd\xf6\xae\x79\x39\x5f\x72\x16\xfe\xfd\x1d\x00\x00\xff\xff\xfd\xdd\xf7\xfd\x97\x0a\x00\x00"); -var _efed =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9a\x4b\xab\x65\x47\x72\x85\xe7\xf7\x57\xec\x61\x7b\xd0\xae\x9d\x3b\x23\x5f\x70\x39\xd0\x48\x2d\x2c\x9a\x76\x1b\xcb\x6d\x1b\x8c\x07\x3b\x5f\xa2\xc0\xba\x55\x54\x95\x06\xfa\xf7\x26\xbe\x75\x24\xb9\x1b\x83\x06\x22\x54\xab\x22\x63\x47\x46\xc6\x63\x65\x9e\x7a\xf7\xd5\xb7\x5f\x7f\xfb\xf6\xfe\xcb\xf1\xee\x5f\x3e\x7d\x18\xdf\xad\x2f\xc7\x7e\xff\x36\x3f\xad\xcf\x1f\x7e\xfc\x34\xd6\xd1\xd7\xf7\xef\xdf\x5e\x5e\xc2\x75\xcc\xf7\xe3\xcb\xcf\x7f\x44\x8c\x1f\xee\x8f\x2f\x2f\xbe\xfe\xbb\x9f\x3e\x7f\x59\x3f\x7c\xfb\xb6\x3f\x1c\x51\x7a\xf3\xc7\x8f\x4f\xdd\xe3\x78\xf7\xaf\xeb\xfb\xf7\x9f\xbf\x7c\xfa\xe9\xf8\xdd\x1f\xe6\x87\xbe\xfe\xe1\x98\x6b\x3b\xfe\x97\x4f\x73\x7d\x7a\xff\xf6\xfd\xf1\xbb\x3f\x7d\xf8\xb4\xee\xf0\xcb\x5f\x7c\xf7\xe3\xc7\x8f\xff\xb3\x7e\x58\x6f\x5f\x8e\x13\x6c\xbd\x4d\xe4\xcb\xbb\xaf\xfe\x7c\x7f\xfc\xe7\xfb\x87\x75\xbc\xfb\xd3\x77\x5f\x7d\x1c\xbf\xff\xe3\x5f\xbf\xfa\xfd\x3f\xf1\x77\xfc\xd5\xbf\xaf\x4f\x9f\xdf\x7f\x78\x3b\xda\x3f\x9e\x67\xfe\x15\xfe\xb7\x9f\x3e\xae\x23\x3c\x4d\xfc\xf5\xdb\xaf\xff\xb2\xf7\xe7\xf5\xb3\xf1\x77\xff\xf9\xd7\x6f\xbf\x3e\xfe\x2b\x1c\xe1\x3c\xae\x64\xa7\xfd\xf7\x53\xf1\x3f\xfe\xfc\x61\xae\xa7\xd2\x4b\xd4\x7e\xc6\x87\xb9\x3e\x7f\xbc\xc7\xfa\x74\xbf\x7d\xbf\x5e\x8e\xe3\xf5\x3c\x1f\xc7\x71\xbc\x56\x7b\xf8\x9f\xfe\x10\x2c\x3c\x8e\xd7\x6f\xbe\xfe\xe6\x8f\xfc\xf9\x9b\x3f\xf2\xb7\xdf\x7c\xf3\xf0\x4d\xfc\xdd\xea\x97\x20\xa3\x6f\x1f\xbe\xcc\xb5\x85\x61\xef\x35\xec\xc7\x11\x7c\xc5\xff\xfd\xab\x97\x70\x9e\x4f\x2f\xde\xcf\xa7\xf6\xe5\xda\x65\xb9\xf6\x6b\xf5\x2f\xd7\xf8\x38\x5a\x7e\x79\xbd\xe5\xc8\x1d\xca\x7c\x1c\x35\xb4\xe0\x50\x15\xd4\xee\xc7\x51\xaf\x74\x39\xd4\x06\xd0\x7d\x3a\x54\xaa\x43\xb7\xb4\x5c\x84\x93\x75\xf7\x25\x24\xba\x52\x8d\x40\x06\xb4\xfd\xd3\xa7\xbd\xbc\xde\x97\xbe\x77\xd9\x40\x29\x39\x24\x4b\xd7\x4a\x8f\x23\x34\x90\x95\x41\x7c\x59\xbd\x5a\x79\x79\xbd\xa3\xd6\x45\xfc\x8c\x97\x3b\x15\xe5\x67\x6c\xdb\x21\xbe\x17\x65\x2a\xfa\xc2\x2b\xfb\xf7\x4c\xeb\x8c\x75\x16\x80\xb4\xce\x58\x67\xc5\x3f\x68\x5a\x67\x33\x3e\x8e\x98\x7c\x7b\x36\x13\x88\x5b\xb2\xb3\xbd\xbc\xde\x49\x96\x12\x96\xd2\xe9\xc1\x4b\xb2\x94\x6a\x77\x28\xbb\x9f\x49\x96\xd2\x7d\x3f\x0e\x4b\x1e\x96\xd4\x4f\x90\xde\x1e\x87\x65\x90\x21\x9d\x59\x1f\x87\x15\x90\x79\x0b\xf1\x0d\x27\xe2\x9b\x96\x94\xb6\x2b\x11\x95\xb4\x9b\x10\x0f\x5d\x62\xbf\x59\x3e\x65\xf9\x54\xdd\x81\x2c\x9f\x72\xf5\xd3\xcb\x56\x81\x26\x50\xf3\x83\xc9\x6c\x2f\xb7\x2c\xc8\x3d\xcf\x39\x01\x2d\x41\x1e\x96\x8c\x5b\x59\x9b\xc9\xcb\x1e\x47\x0a\x1e\x84\xbc\x08\x4b\xe6\x64\x72\x71\x1f\x8a\x7c\x28\xf8\x90\x9b\x6b\x15\xf9\x50\x30\x55\xf2\xe9\x90\x4c\x95\xb5\x1f\x87\x1c\x2d\x9b\xb8\x14\x4c\x15\x32\xaf\xca\x54\xc5\x54\x25\xc4\x55\xa6\x2a\xa6\x2a\x21\xae\x32\x55\x3d\xb7\x72\x46\xe9\xce\x42\xf2\xe3\xc8\xe5\x04\xa9\x42\xb6\x23\xd8\xee\x5a\xe5\x9f\xcb\xc5\xbd\x6c\xfa\x5a\x2b\xe6\xa6\x9b\x87\xa5\xc9\x74\x73\xa5\x92\xfc\x63\xb7\x94\x6e\x5c\x6a\xc9\x6d\xdf\x72\xe9\x76\x97\xda\x19\xdc\xf8\xad\x75\xf7\xf6\x08\x73\xea\xf7\x36\x21\xcb\x95\xcc\xf3\xb5\xcb\x54\x77\x53\xed\x4c\x1e\xbb\x2e\x53\x1d\x53\x81\xec\xec\x32\xd5\x77\x7e\x1c\x2d\x82\xec\x22\xe4\x76\x25\x4b\x40\x5d\x90\x9b\x8a\xd1\xbd\x1a\xb2\x3e\xb0\x1e\xcc\x37\x38\x64\x7d\xb4\xf2\x38\xda\x15\xd0\x92\xf5\x31\xa8\xda\x0b\x68\x50\xb6\x63\x9e\xae\x15\xdd\xad\x31\xa5\xb5\xd1\xc2\xd3\xb1\xa5\x85\x5b\x17\x69\x35\xf5\xc5\xc9\x17\x2f\xb4\xa6\xcc\x4f\x4f\xf9\x16\x7d\x3f\xfd\x04\xea\xa7\x5a\x40\xcd\x2f\xaf\x5d\xad\xa3\xab\x2b\x84\x7a\xbe\xbc\x76\xf5\x80\x4e\xc5\x87\xab\xf8\x42\xd5\x72\xa7\x96\x43\xcc\xf5\xe5\xb5\xab\x4c\x3b\x45\x19\x2c\x5f\x2f\xaf\x5d\xf5\xd6\x13\x50\x4a\x6e\x5e\x59\xdb\xc9\xd1\x90\xfd\xc8\xba\xb2\xaf\x93\x6b\xa1\x98\x9b\x57\x16\x75\xf2\x21\xd4\xe8\xe6\x75\xfa\x9d\xd3\x0f\x2d\xba\x79\x1d\x6c\xe7\x18\xaf\xf3\x72\xf3\x3a\xa0\xde\x81\x82\x87\xb0\x2b\xaa\x7d\x00\x5d\x6c\x5b\x91\xe8\x13\x28\x9e\x6e\x7e\x09\x5a\x40\x76\xba\xf9\x2d\x68\x0b\xf2\x86\x3c\x14\xaf\x41\xbc\xae\xd4\xce\x97\xd7\xa1\x78\x8d\xa0\xae\x56\xed\xe5\x75\x28\x5e\x83\x78\x5d\xc5\x1b\xc6\x50\xbc\x86\x7a\x5f\x2d\xd7\xcb\xeb\x50\xbc\x06\xf1\xba\x9a\x97\xca\x50\xbc\x06\xf1\x8a\xa7\x97\xe6\x50\xbc\x06\xf1\x8a\x21\xb9\x79\xc5\x6b\x10\xaf\xc8\x69\x0f\xc5\x6b\x10\xaf\x18\x3d\xa1\x87\x82\x33\x08\x4e\xb4\xe8\xe6\x15\x9c\xd1\xc7\xf6\x46\xea\x89\x39\xba\x27\xd6\x53\x58\x08\x68\x4d\x69\x79\x8f\x8d\xa9\x14\xa0\x2c\x28\x3f\x8e\x98\xd9\x50\x9f\x05\xc8\x87\x41\x4c\xd5\xbf\xd8\xd7\x13\x2a\x8f\xa3\x90\x98\xa3\xaf\x0a\x84\x13\xc9\xab\x78\xe8\x38\x06\xc7\x11\xf3\x15\x5e\x5e\x87\x8e\x63\xcc\xe1\x50\x09\xc9\x21\xf7\xf1\x29\xa2\x11\x89\x29\x57\xa7\x9b\x8f\x25\xb3\x50\xe6\x11\xa5\x9d\x27\xf3\xf9\xe7\xb9\xfa\xff\x8d\xda\x31\x57\x63\x05\x5f\x2f\x3e\xe1\x86\x4e\x7e\xac\x7b\x3c\x8e\x58\xcf\x02\x34\x05\x4d\xa0\x0b\x68\x01\xb1\xb0\x7a\xbb\x1d\xca\x8f\xb1\xbd\xf4\xa3\x7f\xdd\xff\xbf\x0b\xea\x40\x17\xd0\x10\xe4\x0b\x9b\xa7\xcc\x54\x16\x49\xc4\xd6\x22\xd0\x25\xe8\x72\xc8\x32\x50\x04\xea\x05\x2d\x73\xa8\x57\x41\xf5\x57\x2d\x9f\x5c\xaf\xf3\xf4\x40\xd9\xe9\xb1\x9b\x27\x81\x92\x88\xc5\xb3\x7b\x9e\x53\x5f\x9c\xc3\xb5\xa2\xa0\x29\x68\xfa\xc9\xc7\x00\xb4\x80\x34\x56\xbd\x36\xa7\xb2\x7b\x06\x9f\xbd\x76\xfa\x58\x9b\x61\x9a\x20\x7b\x1c\x16\xbd\x1b\xcc\xc0\x3c\x96\xb0\xe0\x75\x3e\x03\x29\x33\x83\xa7\x89\x85\x28\xad\x2a\xa8\xb2\x30\x01\x35\x41\x37\x5a\x5a\xd8\x81\xd6\x89\x16\xd0\x92\x13\x2e\x2c\xe0\x7d\x58\x97\xa0\xcb\x27\xd6\x89\xab\x2b\x0a\x72\x27\xa2\x67\xe4\x0c\x4b\x4e\xb8\xb0\x58\x65\xab\x08\x92\x5f\x0d\x48\x7e\xad\x8e\x56\x01\x1a\x82\x3c\x5e\xc1\x64\x7e\x0a\xf2\x78\x45\x9f\x88\x33\xac\x25\x68\xa1\x25\x68\x03\x6d\xbc\xe7\xd0\xc2\x96\xf7\x1b\xef\x0d\xbf\xb6\xbc\x77\x61\xb1\xe1\xd7\x96\xf7\x9b\x10\x1a\x81\xde\xf2\x7e\xe3\x7d\xc3\xd5\x2d\xef\x9d\x6c\x58\x30\x2d\xbc\x05\x79\x08\xed\xd4\x42\x85\xd0\x85\x31\x6d\x66\xd8\xda\x90\xcf\x24\xb3\x53\x0b\xe5\x3d\xa7\x0d\x8b\x9a\x6a\x5c\x12\x16\x48\x80\x4b\x89\x79\x79\x32\x9a\x05\x41\x26\x28\xa3\x15\x80\x8a\x20\x9c\x08\x17\x50\x17\xd4\x81\x64\x7e\x08\x22\xaa\xde\xcb\xe6\x45\xa5\x49\x98\x5d\x32\x8f\x5f\x57\x97\x13\x9e\x26\x57\x97\x13\x2e\xcc\x2e\x16\xf6\x28\x88\xf4\x4d\x98\xef\xcf\x85\x0b\x76\x87\x5f\x9d\xe3\xb8\x06\xb6\x0a\xe6\x87\x6c\x8d\x88\x56\x04\xd2\x86\x5c\x58\x0a\x05\x28\x09\xe2\x38\x8a\xb4\xb2\x20\x91\xc7\x0a\xa4\x3d\xba\xb0\x24\xbf\x86\xf6\x38\xd8\x63\x11\xa4\x3d\x0e\xfc\xba\xd8\xd0\x90\x5f\xd4\x50\xba\xb0\xa5\x1a\xba\x28\x98\x14\xd1\x52\xc1\x20\x2c\x14\x41\x4d\x10\x4e\x90\x72\x97\x0a\xe6\x52\x21\x53\x30\x97\x0a\xf9\x9a\x1b\x2d\x16\x2e\x9a\x02\xc2\x42\x21\x5e\x2a\x2b\x84\x25\x63\xdb\x2a\x2b\x84\x25\x25\x80\xca\x0a\x61\xf0\x81\x79\x2d\xc5\x6b\xe1\x7d\x66\x8f\x4b\xde\x7b\x29\x59\xca\x38\xb1\xe4\xea\xc2\xd5\x82\xab\x4b\xae\x52\x69\x49\xae\xaa\xd2\x2e\xaf\x1b\x0b\x15\xad\x2d\x57\xbd\x22\x2c\x9f\x98\xdf\xfa\x22\xd5\x91\x95\xab\xaa\x0e\x84\x85\xca\x1e\x55\x1d\x17\xac\x3c\x2b\x01\xb6\x9c\x20\xc9\x03\x1d\x40\xa3\x78\x46\x41\xcd\x73\x55\xa3\x78\x1a\xad\xe3\x42\xcb\xd4\x3a\x4c\xad\x83\xd3\x36\xb5\x0e\xa3\xac\x22\x89\x69\x2a\x2b\xc4\xb3\x7f\xd9\x9e\x82\xd6\x2f\xfd\x4b\x63\x7d\xa6\x5b\x1d\xb3\x02\x25\x41\xe9\x97\xfe\x95\xe0\xc9\x53\x97\x13\xf5\xaf\xa4\x1a\x42\x3c\x9b\x55\x52\x0d\x25\x0a\x46\xcd\x2a\xa9\x60\x10\xcf\x0d\xa5\x9b\xfc\x4a\x72\xa2\xfa\x42\x11\x89\x99\x7d\x9c\x98\x65\x20\x8d\x13\x84\x05\xa7\xef\x33\x6b\x9c\x64\xd2\xd7\xb0\x95\x95\xbe\x08\x0b\x45\x10\x5f\x84\x94\x58\xa2\xdc\x45\x4a\x66\x51\x75\xe4\xf0\x9b\xa3\x78\x16\x15\x0f\x22\xa5\x84\x11\x15\x4f\x59\x3a\x79\xaf\xba\xa2\x5c\x43\x64\x95\x7e\x51\xae\xc1\x7f\x2c\x5f\xee\xb6\xf8\xcf\xac\x82\x9c\x7a\x4c\xf1\xc5\x09\x5f\xb4\x42\x76\x8b\x12\x4d\x28\x91\x55\x8a\x47\x94\x68\x76\x4a\xbf\x51\x75\x5d\xa5\x8f\x48\x6a\x6f\x5d\xa5\xdf\xf1\xab\x91\xca\x5d\x7e\x21\xac\xf9\x95\x77\x76\xf9\x05\xd9\x49\xa7\xdf\xba\xa7\xc8\xce\x1c\x7e\xf2\xe9\xc4\xd5\xa1\x93\x47\x14\xb5\x91\xa1\x93\x1f\x5a\xc8\x28\x16\x25\x9a\x93\x85\xf0\xd8\x39\xb5\x10\x91\x4e\x2a\x78\x6a\xe1\x9c\xd2\xf2\xe0\x4c\xb5\x11\x44\x0a\x54\xca\xd4\x28\x9e\x5e\x4f\x29\xe0\xfd\x54\x3d\x21\x4a\x76\xce\x33\xe7\xd6\x42\x9c\xb8\xf0\x5e\xcc\x68\x2e\x4f\xf8\x74\x51\x4f\x4b\x09\x8f\x48\xc9\xd9\xee\x5c\x4a\x78\x44\x8a\xce\x79\xe6\xd2\x68\x41\xa4\x48\x62\x89\x2c\xcd\xed\x2d\x3c\x45\x8e\x76\xab\x85\x23\x8a\xb8\xc5\xee\xf8\xb5\xbd\x4b\xa5\xe8\xe4\x70\x6e\x75\x29\x44\x8a\x7e\xad\x98\x5b\x5d\x6a\x7b\x3d\xa6\x48\xb3\xd9\x9a\xe1\x88\x64\x74\x83\xad\xfe\xb3\xe5\x84\xe7\xed\x12\xf1\x5a\xe7\xc6\xbc\x4f\xe7\x75\xee\x27\x14\x1e\x47\xe6\xd0\xd6\xc9\x74\x5e\xd0\xa0\x64\xde\xc2\x97\x68\xd0\x0a\x5e\x7c\xc9\xbc\xea\x56\x60\x72\x49\x24\x18\xea\x0a\x14\xe2\x82\x35\x24\xf3\x81\xbd\xc4\x1a\x24\x52\x0c\x2c\x5c\xd2\xc2\x7c\xf2\x0d\x2d\xcd\xdd\x75\x09\xf2\xa3\x5d\xea\x52\x2b\xfa\x09\x25\xee\xf2\x2b\x72\x42\x12\xe5\x3c\xd1\xa2\x09\x2e\x7a\x59\xe2\x4e\xbc\xd4\xcb\x24\x4a\xf4\x91\xb7\x8c\x19\xbe\xcc\xaf\xdd\xa9\x78\xbc\x96\xdd\x4d\x50\xc3\x7c\x05\xba\x81\x64\x8b\x2f\xaa\x71\x2d\x9a\x4d\xaa\xa9\x02\x2d\x41\x8b\xa7\x02\x03\xda\x40\x7e\xaf\x4c\xd5\xf3\x6b\xa5\xae\x85\xcf\x81\x9d\x80\xa2\xa0\x8a\x16\xe6\x69\x36\x12\x66\x5e\x1d\x2b\xf5\x5b\xd0\x8d\x56\x03\xea\x82\x68\x49\x97\x20\xa2\x9a\x7c\x86\xa7\xea\x33\x69\x25\x66\xb8\x84\x59\xc4\x09\x0a\x79\xa5\x81\xf7\x1c\x5a\x1a\xf2\x9e\x51\x6c\x11\xbf\x86\xbc\x1f\xbc\x7d\x38\x17\x5b\x09\x02\x2d\x61\x5c\x9d\x56\x9a\xda\x90\x8b\x54\x1b\xb6\xe6\x25\x88\x3d\x46\x41\xda\x23\xc5\xc7\xa3\xc5\x4a\x14\x9f\x84\x59\xc4\x7b\xae\x4e\x8b\x17\xa3\xd4\x48\xb9\xb4\xb5\x6d\x46\x8b\x39\x47\x5c\xbc\x24\x3d\x85\x08\xce\x4a\x5b\xdb\xa6\xd2\x9a\xfc\xda\xda\x90\x48\x9c\xdf\x9d\x97\x1a\xbd\x84\x99\x37\xbe\x95\x95\x00\xd9\x49\x5c\x6a\x51\x90\x09\x22\x5e\xce\x11\x57\xa6\xc1\xac\xec\x4d\x25\xb5\x28\xa8\x08\x62\x68\x38\x1f\x58\x99\xc7\x9b\x95\x29\x85\xe6\x4d\x74\x65\x95\x42\x16\x89\xf3\xee\xbb\xb2\xd2\x04\x91\xb8\xa9\xac\xac\x34\xc9\xf0\x3a\xf3\xf1\xb9\x72\x97\x5f\x34\x85\x26\x57\x95\x26\x08\x33\x52\x2e\x77\xb9\xda\xf1\xcb\x04\xc9\x2f\x26\x97\x11\x1c\x4d\xae\x95\x3d\x5b\x52\x4b\xf8\xd5\x87\x20\x32\x27\xe3\x97\x32\x27\x93\x39\x2d\x11\x2f\x65\x0e\xc2\x02\x85\x9c\x95\x39\x88\xd4\x32\xb6\x18\x01\x2b\x0f\x8d\x4f\xbc\x1f\x8a\xc4\xe0\x1c\x29\xe4\x3c\x6e\x41\xdc\x67\x9e\x0b\x49\xdf\x4c\xe6\xb4\xcc\x17\x95\x39\x59\x99\x93\xd9\x90\x32\x27\x93\x39\x4c\x98\x95\x95\x39\x59\x99\x93\xd9\xa3\x32\x27\x3b\x21\x4c\xad\xc8\x96\xb6\x3d\xa9\x21\xca\x3d\x4f\x39\x31\x89\x44\xc9\xbf\x39\x8a\x57\x9e\x0a\x14\xd7\xc3\xa0\x9d\x4c\x05\x6a\x72\x80\x45\x3e\xea\x00\x61\x95\x26\x1f\x61\x95\x12\xa9\x51\x88\x79\x29\xfd\x60\x95\x46\xdb\xcd\x4b\xfb\x5d\x04\xbd\x6a\xa1\x82\xce\xf8\x54\x8f\xd5\xeb\xa5\x84\x19\x0d\x22\x2f\x85\x00\x12\xc6\x63\xf0\xca\x4b\x21\xa0\xf7\xb7\x2a\x2d\x9d\x03\xdc\xd3\x0a\xb9\xb6\x14\x95\xc5\xd1\x54\x99\x57\x54\xe0\x9e\xa6\x0d\x2d\x6d\xdb\x45\x7e\x56\x8a\xfa\x75\x5e\x6c\xbb\xea\x8b\xda\x36\x0c\xd5\xe4\xfd\xd6\xb6\xb7\xb6\xcd\x42\xcd\x11\x84\x59\x65\xdb\x9a\x23\x88\xe7\x84\xc8\x5b\xc7\x4c\x57\x6f\x15\x27\xd4\xd5\x11\x66\xda\x90\xba\x7a\x16\xb5\x55\xde\x6e\x6d\x7b\x73\x6d\xa5\x85\xe7\xad\x6d\x6f\x92\xa1\xc9\xbc\xb6\xcd\xf5\xd0\xe4\xbd\x3a\x0b\x54\x2d\x35\xbf\xb6\x2e\x51\x35\x09\xd3\x30\x2b\x6a\x10\x05\x6e\xd1\x68\x82\x05\x6e\x21\x61\x86\xab\x45\xdd\xa0\x78\x07\xc8\xa7\x93\xd6\x55\x34\x47\x10\x66\x4e\x34\x57\xd1\x1c\x29\xba\x0b\x3e\xbf\xd8\x05\x75\x16\x5e\x40\x43\xd0\xf8\x99\x7b\xae\xa2\x36\x52\xd4\x46\x5a\x04\x5a\x82\x36\x0b\x81\x78\xb1\x97\x30\x63\x86\x17\x4d\x9b\xe2\x17\xbf\x7c\x9e\x09\x68\x0b\xe2\xd0\x1a\xd0\xd0\x42\x17\xf9\x0c\xb8\x3a\xb4\xd0\x45\x29\xc4\xbe\x0c\x45\xc2\x4b\x3f\xf3\x06\xbb\x8a\x4a\x1f\x61\x46\xef\x2f\x43\x91\x50\x37\x68\xb2\x55\x05\xdd\x2c\xc4\x2f\x95\x7e\xd1\xf5\x90\x46\x2f\x86\x2b\x91\x21\x84\xab\x0c\x6d\x1b\x7e\x9d\x14\x1c\x8d\x29\x44\x3e\x2f\x62\xaf\x31\x55\x98\x49\x49\x91\xd0\x4c\x2a\xde\x46\xf2\xc9\x60\x2c\x6a\x23\x08\xe3\x67\x90\x55\x78\xae\x59\x65\x62\x8b\xc1\x58\xe6\xd3\x16\xd7\xc3\x13\xf3\x2a\x64\x98\x77\xe6\x45\x7c\x89\x79\x4b\x58\x82\x6e\x88\x79\x4b\xe4\x93\xae\x5e\x54\xa2\x08\x4b\x81\x78\xa9\x44\x8b\xa7\x6f\x3e\x29\xab\xb2\x9f\x90\x57\x6d\x51\x08\x95\xbe\xb0\xf8\x7c\x92\xe4\x62\xf1\xab\x2e\x16\xd2\xcb\xaa\x6c\x55\xdd\x2b\xe9\xea\x55\xb5\x5d\xbd\x1e\x33\x6f\x33\xab\xaa\x1e\x11\x96\x18\x40\x55\xf5\x58\xf5\xea\x52\xa5\x75\x09\xca\x2c\x2c\x40\x32\x4f\x59\x25\x66\x52\x95\x5f\x88\x1c\xfc\x5a\xb2\xaa\xca\x0a\xa1\xcb\xda\xaa\x2a\x2b\x44\x0e\xcf\x2f\x76\x41\x9c\x76\xca\x40\x43\xd0\x44\xcb\x80\x96\x20\xae\x4e\x30\x36\xdd\x54\x56\xe3\x07\x12\x5e\xcf\x56\x53\xa5\x21\x2c\xd1\x3a\x9a\xe6\x6e\xa3\x86\xd4\xa3\x9b\x6a\x08\xc1\x9d\xcb\xff\x9f\x64\x6a\x43\x5a\xd8\x52\xca\x21\x2c\x11\xe8\xa6\x94\x6b\x8a\x04\xc7\xd1\x14\x09\x44\x51\x67\x6a\x8a\x04\x37\xa8\x7c\xc1\x07\x74\x83\x5a\x37\x35\x74\x91\x00\xf7\x78\x42\x4e\xa0\xc3\x15\x81\x08\xf4\xcd\x9d\x8d\x1f\x24\xd7\xad\xcc\x41\x18\x8f\xca\xeb\x56\xe6\xf0\xb3\x4c\x8e\x81\x85\x5c\x4b\x24\x2c\x54\x41\x5a\x88\xab\x91\x82\xb9\xe5\xea\xad\x43\x83\x23\xde\x72\xf5\xf6\xd8\xe7\x78\x09\x1a\x82\xd8\x36\x6d\xfb\x16\x7f\x42\xe4\x18\x65\x7e\x09\xe2\x38\x68\xdb\xba\x12\xae\x7e\xe3\x57\x34\x20\x13\x44\x29\x54\x41\x49\x10\x7e\x41\xa9\xba\x0e\xad\xeb\xd0\x6a\x06\xaa\x82\x2a\x5a\xed\xb7\x47\x71\x57\x43\x45\x58\xe2\x1c\xba\x1a\x2a\xc2\xc2\xf3\xeb\xe4\x5a\x77\xce\x93\x23\x35\xd0\xc5\x9c\x7b\x27\xfd\x9a\xa0\x21\xc8\x9b\x0d\x0f\x16\xab\x8b\xff\x20\x2c\x35\xf6\xcb\xb3\xd9\xea\x9c\x69\x24\xfd\xba\xce\x14\x61\x89\x4e\xdc\x75\xa6\x08\x4b\x34\xd4\x3e\xa2\xa0\xc4\xc2\x06\x94\x05\x11\x82\x26\x5b\x0a\x01\x19\xc9\xfd\x6d\x75\x65\x64\x57\x46\x36\x2d\x94\x5f\x74\x3c\xae\x74\xab\xab\xe3\xf1\x73\x84\x65\xaa\xae\x8b\x38\x21\xf4\x64\xb0\xba\x3a\x1e\x3f\x47\x64\x7e\x88\x5a\x7d\xea\x8b\x3c\x9b\xf1\x8a\xb0\xba\x58\x12\x57\xf3\x1c\xe1\x16\xba\x9a\x2f\xee\xe1\xd9\xfc\x72\xbb\x74\x0f\x97\xb0\x1c\x0c\xa8\x08\x2a\x40\x19\xa8\x0a\x6a\x2c\x14\x74\x0b\xba\xd1\xaa\x40\x5d\xd0\x42\x4b\xd0\x16\xb4\xe1\x9e\xbe\xa1\xa1\x61\x36\xe0\xc4\xf9\x12\x74\x09\xba\x38\xed\x02\x14\x05\xe9\x0d\xe4\x02\x4a\x82\x78\x10\xe3\x82\x35\xba\xbc\x77\x6a\xac\x97\x92\x35\xba\x5c\x85\x26\xf3\x52\xb2\x86\x68\x32\x22\xdb\x85\xf7\xca\x1c\x84\x65\x8a\x67\xe8\xce\x35\x7c\x7c\x66\xdd\xcc\x86\xc6\x27\x3f\x4e\x5a\x8e\x38\xa1\x9c\x18\x03\xbf\x9e\x90\xfc\xe2\xdd\x34\x53\x3c\x43\x39\x81\xb0\xcc\xad\x65\x68\x7c\x0e\x4f\x8d\xac\x6b\xd8\x18\xf2\x4b\xcc\x99\xbc\x1f\x1a\x9f\x63\xca\x3c\x4e\x4c\x99\x9f\x32\x8f\x96\x68\xf2\x98\xbf\x92\xb8\x21\xee\x3a\x26\xaf\x41\x54\xc7\xd0\xc8\x1b\x3e\xe6\xb2\xd1\x89\x87\x88\x2a\xc2\x32\x23\x6f\x88\xa8\x0e\xa6\xa0\x51\x0a\x43\x53\x10\x61\xd9\xb4\x50\x4e\x30\xa6\x74\x45\x19\x1a\x53\x83\x31\x95\x8d\x0d\x69\x4c\xf1\x9b\x6c\x16\xfb\x1b\x6a\x5c\x43\xef\x93\x72\x75\x3f\xb5\x38\x0e\x78\xf0\xd0\x68\x41\x58\x56\x9a\x68\xb4\xf0\x40\x94\xc5\x83\xf5\x40\xb4\x26\xef\xf2\xbc\x78\xad\xa9\x2e\x35\x9d\xc2\x66\xa3\x2f\x4e\xbd\x35\x20\x52\x64\x7c\x4e\xd1\x59\xde\x79\xb2\x66\xa5\xde\x79\xd6\xf2\x7b\x43\x4e\xdc\x34\x16\x8f\xca\x12\x59\x2c\x6b\xe9\x92\xc0\xa3\x4e\x56\x32\xe9\x51\x67\x6d\x41\x5e\xdb\x5b\x4f\x2c\xfb\xd4\x2f\xf9\x1e\xc2\xad\xc7\x93\xcd\x83\x47\xae\xbe\xa1\xad\x07\x8f\x7d\xd1\x99\x9a\x47\x75\xf3\x92\xff\x14\xa9\x38\x4f\xd9\x7a\xd0\xdf\xbc\xe1\xe6\xe6\x57\x89\x7d\x11\x1c\x89\x54\x0a\x5a\x04\x67\xf3\x78\x52\x4e\xcf\xc2\xad\xc7\x93\x1d\xbd\xba\xca\xe9\x29\xb7\x63\x7f\x42\xf0\x01\x67\xa5\x3b\x52\x69\x3b\x6a\xa1\x77\x93\xad\xc7\x93\x6d\xde\x01\x4a\xf0\x52\xd8\x46\x07\x90\xc8\xe6\xdd\x77\xf3\x90\xf2\xba\xcd\x03\x5d\x82\xa7\xef\x36\x02\x2d\x91\xb3\xb4\x08\xf4\xe6\x3d\xa5\x5c\xce\x4a\xb7\xde\x53\x76\x12\x74\xb9\x13\xba\xad\x6f\x2e\x06\x25\x06\xd7\xe2\x76\xf0\x14\x76\xf9\x39\x6e\x5d\x12\x24\x4a\x6c\x15\x28\x0b\xc2\xd5\x28\xad\x22\x68\xa1\xe5\x90\xb8\xfe\x2e\xde\x14\x8a\x9d\xc5\x21\x9a\x82\x84\x5d\x26\xa8\x01\x0d\xb4\xa2\x9f\x90\xe8\xac\x84\x5d\xde\x90\x77\x19\xd2\xf2\xee\x5b\xcc\x93\x7c\x8b\x6f\x4a\x18\x73\x68\x8b\x6f\x6e\x78\x5d\xe1\x9a\xbf\xc5\xeb\x76\xf5\xfc\x2a\x86\xf7\x95\xfc\x92\x28\x89\xa3\xad\xe4\xd7\x86\xd7\x15\xf8\xd3\x16\xaf\x93\x48\x67\x65\xe1\x96\xad\xe7\x3f\x02\x71\x2d\xf1\xa7\xfd\xfc\x77\x21\x3e\xf9\xb6\x78\x8a\x44\x29\xce\x5d\xf7\xcd\x15\x47\x22\xa6\x54\xff\x76\x14\xb7\xbf\x1f\xc4\xfb\xe6\xe7\xd7\x0d\x63\x29\x3a\x51\x31\x16\x89\x48\x2f\xd8\x37\x85\xbf\xe1\x0f\xa5\x78\x81\x6d\xf1\x87\xdd\x05\x79\xb1\x6e\xcd\x9a\xcd\xe4\x28\xd5\x0b\x6c\x33\x3e\x9e\x22\xd6\x20\x2d\x72\x9b\x2a\x2f\xd5\x39\xd2\x56\x95\x6f\x8a\xb5\xf0\xc4\x00\x5f\xd9\xfb\x71\xb4\xbf\x25\x13\xfe\xff\x3f\xdc\x1f\x5f\x7e\xf9\xc7\x75\xe3\xc7\x4f\x9f\xd6\xdb\x17\xfe\x29\x1f\xff\x80\xee\x98\x6b\xbf\x7f\x5b\xbf\xfc\xb3\xc0\x8f\x1f\x3e\xfa\x2a\xfe\xfb\xdf\x00\x00\x00\xff\xff\x07\xd3\x93\xda\x42\x28\x00\x00"); -func _adbe ()([]byte ,error ){return _dc (_gbff ,"UniKS-UTF32-H")};func _gba ()(*asset ,error ){_fdgae ,_cge :=_feaa ();if _cge !=nil {return nil ,_cge ;};_fae :=bindataFileInfo {_ag :"Ext-RKSJ-V",_bc :1151,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491925,0)}; -_egfa :=&asset {_cd :_fdgae ,_dce :_fae };return _egfa ,nil ;};func _cgff ()(*asset ,error ){_ddcc ,_bgg :=_aecg ();if _bgg !=nil {return nil ,_bgg ;};_cba :=bindataFileInfo {_ag :"HKm471-B5-V",_bc :615,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492433,0)}; -_fgbd :=&asset {_cd :_ddcc ,_dce :_cba };return _fgbd ,nil ;};func _afead ()(*asset ,error ){_acfd ,_dcdd :=_adbe ();if _dcdd !=nil {return nil ,_dcdd ;};_bae :=bindataFileInfo {_ag :"UniKS-UTF32-H",_bc :162757,_bd :_ce .FileMode (436),_bg :_f .Unix (1580493048,0)}; -_ceaad :=&asset {_cd :_acfd ,_dce :_bae };return _ceaad ,nil ;};func _edfd ()([]byte ,error ){return _dc (_ffdg ,"Adobe-Japan1-1")};func _fedg ()([]byte ,error ){return _dc (_geab ,"UniCNS-UTF32-H")};func _ggbag ()([]byte ,error ){return _dc (_aaaa ,"UniJIS-UCS2-H")}; -func _ff ()(*asset ,error ){_cfb ,_gdb :=_bf ();if _gdb !=nil {return nil ,_gdb ;};_bca :=bindataFileInfo {_ag :"78-H",_bc :12437,_bd :_ce .FileMode (436),_bg :_f .Unix (1580490877,0)};_eb :=&asset {_cd :_cfb ,_dce :_bca };return _eb ,nil ;};var _ddcb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\x41\x8f\x95\x30\x10\x07\xf0\x3b\x9f\x62\x8e\xeb\x41\xa1\x40\xe9\x6e\x62\x4c\x14\x0e\x72\xd8\x5d\x23\xbe\xa7\x89\xf1\xc0\x6b\x07\xd2\x44\x4a\x53\xca\xe1\x7d\x7b\x33\x53\x64\x0f\x2f\xf3\xf8\x85\xf9\xa7\x33\x25\x6f\xfb\xae\x77\x36\x42\xfe\x2d\xac\x7a\xc0\x08\x93\x75\x26\xe0\xb6\xee\x41\x23\xdc\x70\xb6\x2e\xcb\x44\x09\xc6\xea\xf8\xff\x91\x8b\x5e\x46\x9f\x65\xf9\x17\xe9\xf5\xfb\xaf\xb0\x6f\x78\x40\xdb\x77\xc3\x7d\x8b\xb8\xf4\x6e\x5a\xa1\x4a\x8d\x66\xf7\x47\x33\x40\xfe\x1d\x67\xbb\xc5\x70\x87\x87\xcf\x66\xbd\xe1\x3b\x30\x38\x91\xbf\x06\x83\xc1\xba\x19\x1e\xda\x97\x41\x9c\x3c\xec\xde\xff\xc5\x05\x5d\x84\x82\x0d\x9d\xe1\x9a\xe5\xed\xf3\xe8\x5f\xc6\x05\x21\x1d\xe3\xca\xcc\x7a\xc5\xb0\xd9\xd5\x81\x28\x3e\x14\x45\xf3\xe6\x3f\xee\x1e\x41\x1c\xed\x97\xbe\x7b\x9d\xa6\x0d\x23\x3c\x15\x29\x3a\xff\x75\xe9\x3b\xf8\x2d\x40\x14\x50\xca\xea\xb1\xfa\x73\xbc\xfa\xf3\x79\x35\x67\xa3\x28\xd3\x30\xda\x9a\x30\xba\x19\xb3\x8f\xa3\xa8\x6f\x9f\xe0\x28\xa2\x6a\xea\x86\x4c\x8e\x6c\x54\x44\xa5\xea\x8a\x4d\x27\xd3\xc9\x24\x9b\x49\x86\x64\x05\x49\x23\x58\x9a\x92\xa4\x66\x91\x49\x1a\x92\x47\x96\xa7\x24\x94\x5e\x97\x2c\x29\xa7\xa1\x9c\x74\x02\x95\x72\x14\xe5\x48\x4e\x56\x29\x47\x51\x8e\xe4\x64\x95\x72\x14\xe5\x48\x4e\xc6\x8a\x85\x0a\xcd\xa2\x68\xe3\xe7\xac\xf4\x9f\x6e\xfa\xdc\xbd\xde\x43\x40\x17\xf9\x9e\x79\xc7\xb4\x24\xeb\xf0\xfc\x88\xfc\xea\xa9\x8b\x7f\xff\x02\x00\x00\xff\xff\x92\x04\xb5\xc7\x70\x02\x00\x00"); -func _fff ()([]byte ,error ){return _dc (_bga ,"Adobe-CNS1-3")};func _gdc ()([]byte ,error ){return _dc (_aacf ,"Adobe-KR-6")};func _eggc ()([]byte ,error ){return _dc (_cfaef ,"UniCNS-UTF16-H")};func _bdbab ()([]byte ,error ){return _dc (_fgd ,"UniJISX02132004-UTF32-H")}; -var _bgcd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x41\x6f\xdb\x3e\x0c\xc5\xef\xfe\x14\x3c\xf6\x7f\xe8\xdf\x92\x35\x47\x31\x50\x14\x58\x93\xa1\xf3\xa1\xeb\xb0\x2c\xdd\x80\x61\x07\x59\xa2\x02\x01\x8b\x2c\xc8\xf6\x21\xdf\x7e\x10\xe9\xb9\x87\xe0\x25\x3f\xf1\x3d\x91\x11\xeb\x43\x7f\xec\x63\x98\xa1\xfe\x9a\x47\x7b\xc2\x19\x7c\x88\x2e\xe3\x34\x2e\xd9\x22\x0c\x78\x09\xb1\xaa\x64\x03\x2e\xd8\xf9\xdf\x4f\x12\x7b\x35\xa9\xaa\xea\xe7\xa7\x64\xef\x3f\x9d\x0f\xf7\x9f\x61\x99\x70\x85\x87\xfe\x78\xba\x4d\x33\x5e\xfb\xe8\x47\x50\x6c\x76\x4b\x5a\x03\x00\xea\x6f\x78\x09\xd3\x9c\x6f\x70\xf7\xd1\x8d\x03\xfe\x07\x0e\x7d\xe1\xaf\xd9\x61\x0e\xf1\x02\x77\xcf\x4f\x72\xa3\xa7\x25\xa5\x3f\x78\xc5\x38\x83\x20\x86\xd1\x91\x56\xf5\xe1\xc5\xa4\x2f\xe6\x8a\xf0\xde\xc9\x1b\x1d\xd1\xc9\x1b\xe6\x29\x8c\x11\xba\xff\x85\xd8\xbd\xe3\xef\xb7\x84\x20\xd7\x84\x73\x7f\x7c\xf5\x7e\xc2\x19\x94\xe0\xf4\xfa\xe7\xb9\x3f\xc2\x2f\x09\x52\x40\xd3\xaa\x5d\xfb\x7b\x2d\xfd\xf1\x32\xba\xcd\xd8\x08\x1e\xc7\x06\x97\x4d\xbc\x60\xf5\x60\xa4\x69\x1e\x61\x15\x68\x75\x4b\x48\x31\x52\x84\x3e\x10\x32\x8c\x4c\x41\xdd\x9e\xd0\xc0\xc8\x3e\x82\xd6\x82\xab\x1c\x23\x47\x55\x5d\x41\x03\xc7\x0f\xbe\xa0\x7d\x53\x90\x47\x42\x45\xb4\x16\xbb\xea\xc1\x28\x23\x0b\x22\x81\x56\xef\x09\xed\x19\x75\x64\x14\x84\x2c\x23\x4b\x55\x8a\x10\x32\xe2\x2c\x5d\xd0\x40\xad\xaa\x61\xa0\x2a\x8a\x1f\x1c\x23\x47\x55\x14\x5f\x1a\x5a\x05\x5a\x5d\x5a\x55\x8e\x06\x22\xd1\x5a\x30\x62\xa3\x23\xa3\xa4\x26\x1c\x1b\x8b\xc0\x4e\x10\xf2\x6c\xf4\x74\x63\x47\x37\x7a\x36\x7a\xfe\x27\xa8\x2f\x1e\x5b\xf1\xd8\x52\x96\x85\xd8\xde\xa1\x7c\x2f\x7b\xb8\xad\x86\x5d\x72\xc6\x38\xd3\x16\xd2\xfb\x97\x07\x0c\x11\xb7\x35\x4f\x63\x2a\x2e\xfa\xfc\x0d\x00\x00\xff\xff\x92\xaf\x31\x14\x12\x03\x00\x00"); -func _fgbb ()(*asset ,error ){_dcfac ,_bbdb :=_cbfe ();if _bbdb !=nil {return nil ,_bbdb ;};_gaeg :=bindataFileInfo {_ag :"UniGB-UTF32-H",_bc :265659,_bd :_ce .FileMode (436),_bg :_f .Unix (1580492773,0)};_ccdfa :=&asset {_cd :_dcfac ,_dce :_gaeg };return _ccdfa ,nil ; -};var _fdb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4d\x6b\xdb\x40\x10\x86\xef\xfb\x2b\xe6\x98\x1e\x52\xef\x8c\xf6\x4b\x20\x0c\x4d\x4c\x82\x0f\x69\x4a\xd3\xb4\x85\xd2\x83\x2c\xad\x8c\xa0\x96\x84\x2c\x1f\xf2\xef\xcb\xcc\xc8\x29\xf4\x60\x64\x3f\x9e\x7d\x6d\x3d\xaf\x76\x37\xf7\xfb\xdd\x7e\xe8\x17\xd8\x7c\x99\xc7\xe6\x25\x2f\xd0\xf5\x43\x3b\xe7\xf3\x78\x99\x9b\x0c\x87\x7c\xec\x07\x63\x90\xa0\xed\x9b\xe5\xfa\x51\x2e\xcd\xa9\x9e\x8c\xe1\xf5\x2f\x6f\xe7\x25\x9f\xf6\x43\x37\x42\xa1\x73\xed\x65\x5a\x67\x01\x36\x5f\xf3\xb1\x3f\x2f\xf3\x1b\xdc\x7c\x6a\xc7\x43\xfe\x00\x6d\xee\x98\x3f\xcf\x6d\x9e\xfb\xe1\x08\x37\x8f\x77\xf8\x4e\x5f\x2e\xd3\xf4\x27\x9f\xf2\xb0\x00\x0a\xcb\x43\x2b\x57\xb3\xb9\x7f\xaa\xa7\xcf\xf5\x29\xc3\x46\x82\x6e\x1f\xef\xf0\x56\x67\xe4\xab\xef\x79\x3e\xf7\xe3\x00\x68\x3f\x5a\x1b\xfe\xf1\x6f\x6f\x53\x5e\xb3\xcc\xe6\x75\xbf\x7b\xee\xba\x73\x5e\x20\xa2\xd5\x99\x9f\xaf\xfb\x1d\xfc\x42\x40\x0b\xe4\x9d\x2f\x7e\xaf\xa3\x3f\x9e\xc6\x36\x83\xbd\xfe\xf8\x7e\x77\x3f\x5e\x86\x05\xca\x54\x46\x65\xa8\xf7\xd8\x8c\x6d\x3e\x4f\x75\x93\xe7\x7a\x38\x66\x03\x50\x59\x6b\xed\x16\x2a\x0a\x0f\x0f\x5b\xfe\xff\xff\x4d\x98\xa2\x5c\x57\xf6\xad\x92\xeb\x0a\x6b\xbb\x6e\x0b\x00\x60\x4d\x65\x51\x11\x0a\x22\x1f\x4c\x65\x49\x11\x09\xf2\x48\xa6\xb2\x85\xa2\x42\x50\x0c\xc9\x54\xd6\x29\x72\x8c\xd0\x92\x33\x95\xf5\x8a\xbc\x20\x4a\x1c\x1f\x14\x05\x41\xbe\xe0\xf8\xa8\x28\x0a\x8a\x25\xc7\x27\x45\x89\x11\x59\xc7\xf1\xa5\xa2\x52\x50\x61\x39\xbe\x56\x54\x0b\xf2\x81\xe3\x0f\x8a\x0e\x82\x12\x72\x7c\xa3\xa8\x61\x54\xd8\xc8\xf1\xad\xa2\x56\x50\x41\x1c\x9f\x15\x65\x41\x3e\x71\x7c\xa7\xa8\x13\x94\x9c\x35\x15\xaa\x2f\x14\x5f\xce\x96\xc1\x54\xa8\xbe\x50\x7c\xb9\xc2\x93\xa9\x50\x7d\xa1\xf8\x72\xc1\x26\x53\xa1\xfa\x42\xf1\xe5\x52\x70\xa6\x42\xf5\x85\xe2\xcb\x23\x71\xbc\xfa\x42\xf1\xe5\x8b\xc8\xf1\xea\x0b\xc5\x97\x0f\x05\xc7\xab\x2f\x14\x5f\x3e\x25\x8e\x57\x5f\x28\xbe\x02\x3a\x8e\x57\x5f\x28\xbe\x82\xb3\x1c\xaf\xbe\x50\x7c\x85\xc0\xd5\xa2\xfa\x42\xf1\x15\x4a\xae\x16\xd5\x17\x8a\xaf\x88\x5c\x2d\xaa\x2f\x14\x5f\xd1\x71\xb5\xa8\xbe\x50\x7c\xc5\xc0\xd5\xa2\xfa\x42\xf1\x15\x4b\xae\x96\xd6\x27\x52\x7c\x25\xe4\x6a\x49\x7d\x91\xf8\x4a\x8e\xab\x25\xf5\x45\xe2\x2b\x45\xae\x96\xd4\x17\x89\xaf\x54\x72\xb5\xa4\xbe\x48\x7c\x95\xc4\xd5\x92\xfa\x22\xf1\x55\x3a\xae\x96\xc2\xba\x07\xea\xb4\x85\x32\x52\x92\x8d\x70\x7d\xe0\xf9\x3d\x9f\x1f\xef\x5b\xba\xb9\xcc\x73\x1e\x16\x39\x3d\x64\xd7\xf2\x16\xeb\x87\xfc\x7e\x12\x4d\xe3\xc4\xab\xe4\xf5\x37\x00\x00\xff\xff\x39\xbe\x00\xdd\xb5\x04\x00\x00"); -var _aa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd5\x4f\x8f\xdb\x36\x10\x05\xf0\xbb\x3f\x05\x8f\xe9\x21\xb5\xf8\x77\x48\x20\x58\xa0\xd8\x3d\xd4\x29\xd2\x16\xd9\x76\x5b\xa0\xe8\x81\x94\xb8\x0b\x01\xb5\x2c\xc8\xf6\x61\xbf\x7d\x31\xef\xb9\x6e\x0e\xc1\x64\x7f\x26\x47\xc3\x67\xc9\xda\x3f\x1e\x9e\x0e\xcb\x7c\x31\xfb\x5f\xb7\xd3\xf8\xdc\x2f\xe6\x75\x5e\xa6\xad\x9f\x4f\xd7\x6d\xec\xa6\xf5\xb7\x79\xd9\xed\xac\x33\xd3\x3c\x5e\xfe\xfb\x13\x65\x3c\xd6\x75\xb7\xdb\x97\xe1\x78\x5e\x3f\x7e\xfd\xe9\xf9\xf3\xc7\x1f\xcd\xf5\xdc\x6f\xfc\x78\x78\x7a\x7e\x3f\x5f\xfa\xf1\xb0\xbc\x9e\x8c\xe7\xf6\xe9\xba\xde\x5a\x18\xb3\xff\xda\xdf\xe6\xf3\x65\x7b\x37\x1f\x7e\x98\x4e\xad\x7f\x67\xa6\xfe\xaa\xfe\xcb\x36\xf5\x6d\x5e\xde\xcc\x87\xcf\x75\xad\x8b\xbd\x7f\xf0\x7c\x5d\xd7\x7f\xfa\xb1\x2f\x17\xe3\x60\x7d\x99\x50\x77\xfb\xc7\x2f\x75\xfd\xb9\x1e\xbb\xf9\x76\x9c\x17\x7c\x88\xcf\x5e\xfa\x76\x9e\x4f\x8b\xb1\xf6\xfb\x61\x48\xff\xfb\x6f\xef\x6b\x37\xf6\xd6\xe4\xcf\xdf\x0f\x4f\xe6\x2f\x6b\xec\x60\x5c\x0c\x21\xfd\x7d\xf3\x3f\xbe\x9c\xa6\xfb\x2a\xc9\x3c\xc1\x38\x4f\x5b\x5d\xde\xfa\xee\x53\xb6\xc1\x3e\x18\x2d\xee\xc1\x48\xce\x02\xf2\x24\xff\x60\xb2\x4b\x19\x14\x48\x41\x49\x82\x52\x1c\x40\xd1\x62\x63\x01\x35\xd2\xa4\x54\xac\x52\xe2\xaa\x14\x40\xd8\x98\x0a\x48\x2a\x08\x1b\x33\x87\xd0\x22\xc5\x62\x88\x9a\x41\x5a\xc4\x63\x51\xe5\x3e\x2d\xe2\x31\x55\xad\x94\xa6\x92\x20\x23\x65\xc4\x9c\xc3\xee\x53\x76\xe5\x55\x09\x45\x8a\xd5\x7d\xae\xe2\x72\x28\x52\x6c\x01\x79\x92\x57\x72\xd8\x58\x23\x29\x82\x2c\x48\x48\x02\x72\x4a\x23\x7b\x8d\xe8\xe5\xbc\x52\x27\x75\x52\x00\xb1\x7d\x67\xfb\x08\x62\xfb\xce\xf6\x09\x34\x92\x46\x90\xc6\xe0\x03\xf2\x43\x91\xe2\x32\xc8\x91\x1c\xa8\x80\x02\x49\x53\x2e\x7e\x00\x25\x52\x02\x59\x50\x26\x65\x90\x4e\xef\x13\x7b\x25\xf4\xf2\x3a\xbd\xcf\x18\x15\x45\x8a\x0f\xa0\x48\xc2\xa8\x3e\x82\x84\x84\x24\x90\xbd\xcf\x9d\xd4\x41\x98\xbe\x70\x63\xe1\x10\x3a\x7d\xe0\xd7\x81\x22\x21\xeb\x5c\xa1\xe2\x8c\x28\x12\xa4\x80\x2c\x49\x23\x0c\x25\x82\x1c\x49\x47\x8d\x83\x07\x79\x92\xc7\x2a\x6e\x0c\xa4\x00\x62\xfb\x48\xd2\xe9\xa3\xe3\xc6\x44\xd2\xb9\xa2\x65\x7b\x21\xe9\x81\xa2\xe7\xc6\x4c\xca\xb8\xa2\x80\x0a\xa9\x60\x15\xaf\x58\x49\x15\x07\x72\xa0\x46\x6a\xa0\x01\x34\x92\x46\xcc\x85\x24\xea\x44\x9a\xd0\x3e\x81\x3a\xa9\x83\xd8\x8b\x79\x55\xe4\x85\x07\x28\x34\xe6\xa5\x45\x22\xbe\xed\xd0\x98\x97\x16\x89\xb8\x31\x43\x63\x5e\x0d\x79\x31\xfb\xc6\xbc\xb4\x48\xb4\xec\xc5\xbc\xb4\x48\x8c\x24\xe6\xd5\x98\x17\xe6\x6a\xcc\xab\x31\x2f\x1c\xbb\x31\xaf\xc6\xbc\xb8\x91\x79\x35\xe4\x65\x11\x61\x63\x5e\x0d\x79\x05\x04\xdd\x98\x97\x16\x89\xb8\xc9\x43\x63\x5e\x5a\x24\x5a\x5e\x91\x79\x69\x91\xe8\xb9\x91\x79\x35\xe6\xc5\x03\x31\xaf\x86\xbc\x82\x1e\x5b\x22\xf2\x92\x84\x07\x26\x68\x38\x92\x2c\xc9\x3e\x98\xec\xf1\xc0\x08\xef\x7b\xe1\x7d\x1f\x3c\xc8\x93\xf4\x57\xcf\x7b\xae\x0a\x24\x3c\x56\x98\x5e\x52\x24\x45\xac\xca\xa0\x44\xc2\xa3\x10\x04\x94\x49\x59\x57\x85\x00\x2a\x24\x3d\x76\x89\x9c\xab\x91\x1a\x56\xb1\xd7\x48\x9a\xb0\x8a\x73\x75\x52\xc7\x2a\xcc\x95\x71\x03\x08\x7f\x2e\x63\xd2\x77\xc9\xfd\x27\x5d\xff\xaf\x6f\xb1\xfb\x5b\x65\xbc\x6e\x5b\x5f\x2e\x78\x87\xe1\xbd\xa1\xef\x82\x79\xe9\xf7\xd7\xe4\x7a\x5a\x75\x17\xfe\xfd\x1b\x00\x00\xff\xff\x56\x46\xab\xf5\x52\x07\x00\x00"); -var _fffa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8a\xdb\x30\x10\x06\xe0\xbb\x9f\x62\x8e\xdb\xc3\xd6\x92\x5d\x3b\x32\x2c\x81\xe2\x14\x6a\x96\xed\x96\xa6\x49\x0b\xa5\x07\x59\x1a\x05\x41\x23\x0b\xd9\x3e\xe4\xed\x8b\x66\x52\x77\x0f\x61\xe2\x4f\x9a\xdf\xb2\xa4\xb2\x1f\x0e\x43\xf0\x0b\x94\x5f\xd3\x64\x8e\xb8\x80\xf3\xc1\x26\x9c\xa7\x35\x19\x84\x11\x2f\x3e\x14\x85\xac\xc0\x7a\xb3\xfc\x7b\xa4\x62\xae\x3a\x16\x45\xf9\x7c\xec\xa3\x79\xfc\x74\xea\x1f\x3f\xc3\x3a\xe3\x5d\xfb\xe1\x70\xbc\xcd\x0b\x5e\x87\xe0\x26\xa8\xb9\xdb\xae\xf1\x9e\x00\x50\x7e\xc3\x8b\x9f\x97\x74\x83\x87\x8f\x76\x1a\xf1\x1d\x58\x74\xd9\x5f\x93\xc5\xe4\xc3\x05\x1e\x9e\xa7\x84\x5a\x6e\x03\xc7\x35\xc6\x3f\x78\xc5\xb0\x80\x20\xc3\x60\xa9\x16\x65\xff\xa2\xe3\x17\x7d\x45\x78\xb3\x9a\x33\x8d\xd1\xd0\x19\xd3\xec\xa7\x00\xdd\x7b\x21\xda\xff\xfc\xfd\x16\x11\xe4\x3d\xe2\x34\x1c\x5e\x9d\x9b\x71\x81\x5a\x70\x7c\xf9\xf3\x34\x1c\xe0\x97\x04\x29\xa0\x6a\x3e\x88\xe6\xf7\x7d\xea\x8f\x97\xc9\x6e\x8d\xb2\xe5\x4f\x32\xde\x26\x1d\x2e\x58\x3c\x69\xa9\xab\x3d\xe4\x52\xef\x41\x89\xa6\x25\x6a\x98\x1a\x22\x45\xd4\x32\xb5\x7b\x50\x75\x25\x88\x3a\xa6\x91\x66\x75\x44\x96\xc9\x66\x6a\xab\x4c\x23\xc7\x8f\x4c\x75\x26\x1c\x89\x90\x1a\x77\x4d\xf1\xa4\x6b\x2d\x33\x51\x51\x62\xd7\x12\x29\xa6\x8e\x68\x47\x64\x98\x0c\x51\x47\x84\x4c\x98\x49\xe5\x75\xd5\xa3\x26\x1a\x1d\x91\xcc\x64\xe9\x8d\x54\x94\x50\x94\x65\x2d\x13\xad\x4b\x29\x22\xc7\xc4\x8d\x14\xef\xb8\xd1\x51\x7c\x27\xf2\x29\x6e\x7b\x97\xff\xe7\xfb\xb3\x9d\xa7\x59\x53\xc2\xb0\xd0\xed\xa1\x33\xcb\x9b\xee\x03\x6e\xf7\x33\x4e\x31\x77\xd1\xef\x6f\x00\x00\x00\xff\xff\x8b\x02\x5f\x71\xcb\x02\x00\x00"); -func _bebce ()([]byte ,error ){return _dc (_ggbea ,"UniKS-UTF16-H")};func _caef ()([]byte ,error ){return _dc (_bdeg ,"GBT-EUC-H")};func _fegge ()(*asset ,error ){_bed ,_eefd :=_dde ();if _eefd !=nil {return nil ,_eefd ;};_fcfb :=bindataFileInfo {_ag :"Ext-V",_bc :1141,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491941,0)}; -_edg :=&asset {_cd :_bed ,_dce :_fcfb };return _edg ,nil ;};var _dfeb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x4f\x6f\x5b\xbb\x11\xc5\xf7\xfa\x14\x77\x99\x2e\x52\x93\x1c\xf2\x5e\x12\x30\x0c\x14\x09\x8a\x3a\x40\xda\xa2\x4e\xd2\x02\x45\x17\x57\x12\xe9\x0a\xa8\x65\x41\xb6\x17\xf9\xf6\xc5\xfc\x8e\xec\xe7\xf7\xde\x42\xe0\x99\xe1\xfc\x39\x24\x87\x43\xdd\xab\x4f\xb7\x9f\x6f\x8f\x87\xe7\xe9\xea\xef\xe7\xc7\xdd\x5d\x7f\x9e\xc6\xe1\xb8\x3f\xf7\xa7\xc7\x97\xf3\xae\x4f\xdb\x7e\x7f\x38\x6e\x36\x31\x4d\xfb\xc3\xee\xf9\x55\x64\xd8\x3d\xac\xa7\xcd\xe6\xea\xfb\xf1\xf0\xe5\xf6\x2e\x85\x90\x3f\x7e\xff\xf6\xe7\x38\x7f\xfc\xcb\xf4\xf2\xd4\x2f\x93\x9f\x6e\x3f\xdf\xfd\x7c\x7a\xee\x0f\xb7\xc7\xf1\x38\x99\x82\xec\x5f\x4e\x97\x40\xd3\x74\xf5\x8f\x7e\x7f\x78\x7a\x3e\xff\x9c\x3e\xfc\x69\xff\xb8\xed\x7f\x98\xf6\x7d\xb8\xfe\x6f\xe7\x7d\x3f\x1f\x8e\xf7\xd3\x87\x2f\xeb\x69\x3d\xc6\xb7\x89\xbb\x97\xd3\xe9\x7f\xfd\xa1\x1f\x9f\xa7\x05\x5d\x3f\xee\x19\x37\x57\x9f\xbe\xae\xa7\xbf\xae\x0f\x7d\xfa\x3d\xa9\x1f\x98\x60\xf1\xa3\x9f\x9f\x0e\x8f\xc7\x29\xfe\x31\x84\xf9\x17\xf5\xb7\x9f\xa7\x3e\xc5\x4b\xa4\x7f\x7d\xbf\xfd\x3c\xfd\x3b\x4e\x31\x4c\xa9\xcc\x16\xfe\x73\xd1\xff\xf3\xeb\xe3\xfe\xcd\x2a\x86\xa0\x75\xec\x0e\xfb\xdd\x7f\xd7\xf3\xe6\x3a\x84\x6d\xb8\x99\x6a\x9a\xdb\xe6\x3a\x85\x18\x6e\xa6\xa5\x36\x03\x17\x70\x02\xcf\xe0\xe2\x38\x49\x5f\xc1\xd2\x2f\x8e\x2d\x79\x9c\x05\x5f\x33\xc7\xd5\x71\x6c\x1e\xd3\x2a\x30\x3a\x9c\x81\xc9\x61\x03\x9a\x43\x8f\x11\x77\xf9\x66\xaa\x16\x23\xb8\x80\x03\x78\x06\x3b\x97\xd8\x1d\x87\x0b\x5e\xc0\x19\x5c\xc1\xf8\xf6\x06\xf6\xfc\xd6\xb6\x37\x53\x4c\x31\x57\x84\x1d\xc2\x2c\x61\xaf\x99\x05\xa1\x23\x94\x80\x30\xde\x99\xad\x41\x66\x0d\x21\xca\x6c\x46\x48\xef\xcd\x4c\x33\x05\x21\x4b\xd0\x4c\x79\x6f\x36\x6b\x86\xa4\xab\xf3\x7f\x9d\xa8\x60\xe9\x1b\x58\x49\xd6\xf7\xde\x5b\x9f\x58\x12\x78\x07\x8e\xe0\x3d\xd8\xc9\x97\xb0\xbb\x99\x96\xcc\x61\x95\xb0\x07\x2f\xe0\x0e\x9e\xc1\x03\xec\x31\x0b\x87\x5e\x82\x81\x23\x18\xdf\x98\xc0\x19\x6c\x60\x7c\x63\xc6\x37\x82\x0b\x58\xbe\x33\x38\x81\x17\xb0\x7c\x2b\xb8\x81\x1b\x71\xe4\xbb\x82\xe1\x1c\xb7\x60\xf9\x3a\xff\x92\x14\x73\x0f\x86\x7f\xec\x60\x71\x1b\x60\xe2\x27\xf8\x27\xb8\x25\xf8\x27\x72\x25\xf8\x27\xd6\x48\xd1\x16\xc3\x97\xa2\x2d\x46\xfc\xb4\x80\xc9\x9b\x2a\x58\x31\xe1\x49\x51\x96\x04\x4f\x53\x7c\x78\x9a\x62\xc2\x33\x12\xd3\xe0\x10\xb1\xb1\xcc\x5a\xf0\x35\x62\x06\xec\x33\x36\x99\xb5\x67\x78\x66\xd6\x9e\xe1\x99\xe1\x90\xd9\x67\x2a\xb2\x64\xe2\x50\x76\x25\xc3\x3f\x13\x3f\xc3\x3f\x2b\x26\xfc\x0b\x6b\xc9\xe4\x2a\x1e\x67\xf6\x3d\xac\x29\x45\xb0\xd7\x46\x8a\x0d\xdc\xd1\xcb\x66\x80\x9d\xc3\x12\x54\xc9\x8b\x07\x5d\xbc\xc6\x6b\x0a\x6d\x73\x6d\x81\xc3\xa8\x7e\x90\x16\x38\x8c\xe6\xa5\x6f\x81\x03\x68\x5e\xc5\x16\x58\x4c\x8b\x15\x6c\x60\x7c\x21\xdd\x3c\x81\x05\x88\x36\x27\x64\x21\x37\x70\x72\x3c\x63\xef\x87\x6d\xa1\x0a\x93\xab\xca\xb7\x80\xe5\x4b\xde\xda\xc1\x8b\xf7\xd0\xd7\x26\xb6\xa9\xf9\x37\x5d\xcd\x82\xdf\xfa\x9a\x16\x72\x34\x36\x63\x21\x37\x97\x79\x36\x93\x00\xf1\x04\xf1\x55\xc9\x21\xbe\x92\xdc\x20\xbe\x92\xfc\x62\x0f\x71\x23\xe8\x0e\x7b\x83\x78\x17\x86\x78\x97\x2f\xc4\xbb\x7c\x21\xde\x21\x6e\x6c\xd8\xd0\xa6\x7a\xcc\x34\xc6\xcd\x94\x2c\x14\x4f\x6c\xc1\x7b\xb1\x79\x0f\x32\x0b\xde\x43\xcd\x4b\xcd\x2c\x78\x3b\x89\x6d\xd6\x04\x8d\x91\xcc\x16\x66\x4d\x44\x84\x45\x42\x41\xa8\x12\x64\xd6\x24\x28\xd8\x2a\x61\x46\xd8\x22\x2c\x8a\xbc\x93\x90\x10\x74\xda\x4c\x70\xe5\x5b\x26\x4b\x24\x7d\x96\x9e\xbe\x6c\xc2\xca\x5e\x25\x54\x26\x58\x54\x54\xf2\x4a\x54\x0a\xd0\x0a\xac\xfc\x82\x56\x63\xcb\x2d\xb1\xda\x0c\xc1\xa4\xd5\xb2\x3f\xe6\x37\xd7\x05\x79\xcc\x70\xd2\x04\x9b\x9b\x59\xac\x5f\xd1\x6a\x54\xa6\x71\x45\xdb\x25\xc3\x5e\xce\xa4\xb0\x88\x11\x29\x8c\x7a\x0f\x01\x6f\xd3\x4e\x67\x30\x19\xfc\x02\x9a\xd9\x82\x51\xd4\x44\x95\x40\x0e\x6b\xb0\x25\x87\xad\x9a\x90\xcb\x96\x09\xe5\xdb\x69\x82\x0d\xb1\xbd\x04\xb2\xe7\x28\x01\xb3\xcc\x2e\x28\xa3\xdf\x92\x6a\x45\x58\x09\x93\x04\x2a\x4f\x9b\x9e\x57\x16\x08\xab\xcc\x21\x89\x48\x66\x6b\xa9\x30\x2b\x54\xb6\xb6\xb3\x68\xad\x5a\x5f\x31\x09\x9a\xc9\x12\xd8\x85\x42\xee\x8c\xd5\xc2\x9b\x19\x2e\x82\xd6\xa1\x24\x8b\xd6\x91\x39\xcc\xa5\x4b\xe0\x3c\x96\xc1\x69\xe6\xcd\xf5\x18\x81\x1b\xe7\xe5\x36\x46\xa0\xe5\x2c\xe8\xa3\xde\x32\xef\xff\x63\xa8\x9d\xf8\xbe\x8d\x61\x1c\x9a\xbf\x41\x63\x18\xfa\x80\x83\x0d\x6e\x4a\x70\x5c\x64\x53\xc0\xba\x41\x33\x58\xf6\xc2\xfd\xb5\x5d\x8d\xc1\xad\xac\xb5\xfd\xaa\x55\xd8\xf2\xd6\x2a\xce\xeb\xf1\xbe\xfb\xe3\xe9\xff\x80\x7c\x88\xb4\x86\xa2\x47\x14\x5d\x09\xbe\x8f\xb9\xd2\xb3\xbd\x47\xfa\xe0\x61\xf3\x42\x5b\xf6\x7b\xe9\x03\xaf\x60\xd5\x8b\x3b\x4b\xc5\x03\xc8\x3f\xa0\xe2\x57\xd1\x87\x86\x4a\x8e\xab\x54\x5b\x54\x7a\x66\x0c\x55\xa2\xeb\x1b\x24\xbc\x7c\x7d\xe0\xb1\x8b\x7a\x50\x22\x2a\xe3\x9d\xa0\x77\x17\x2b\x52\xf1\x14\x04\xc2\x7b\x7d\xfa\xc0\x6b\xc5\x5f\xa5\x62\x8a\xc5\x86\x96\xac\x07\x43\x56\xd4\x53\xe1\xa2\x07\x5f\xaf\x0f\x89\xad\xa3\x59\xc1\xde\x02\xff\x0c\x5a\x40\xe5\xed\xc0\x07\x5a\x5d\xa0\x35\x7a\x27\xf0\x61\x61\x0f\xd5\x46\xe3\xc5\xb3\x71\xe8\x34\x83\xd0\x0a\xba\x36\x53\x20\x74\xcc\x21\xd5\xe0\xe6\x51\x98\x71\xf8\xee\x5b\x1c\x4d\xcd\xda\xd0\xad\xd2\x0d\x74\x2a\x4d\xd1\x35\x5e\xaf\xd8\x74\xb5\xbd\xde\xbc\xd1\x98\x7a\x19\x55\x1b\x57\xe9\xd4\x0e\x2a\xbe\xfe\x82\x79\x8b\x88\xd2\xa9\xf3\x54\xe9\xd4\xb1\x9a\xfa\x89\xe2\x59\x50\xc7\xa0\xf0\x2d\x4b\x57\xa4\x53\x4b\x91\x5d\x96\x5d\xd2\x55\x35\xe9\x66\xe9\x74\x4d\xb7\xd2\xe9\x56\x25\x35\x04\x71\x29\xf2\x55\x3f\x2d\x45\x3a\xf9\xfa\xee\x8d\xc1\x59\x8c\x41\x25\xd5\x86\xaa\x0c\x54\xf3\xe5\x4f\x6a\xbc\x54\xbb\x8a\x1b\xc1\xbf\x6b\xde\xbe\x33\x76\x2f\xe7\x73\x3f\x3e\xf3\x55\xc3\x47\x84\x7f\x18\x1c\x8e\xfd\xed\xf3\xe9\xf4\x78\x72\x2f\x7e\xff\x0f\x00\x00\xff\xff\xb3\x28\x27\x75\x6a\x0d\x00\x00"); -func _cgb ()([]byte ,error ){return _dc (_bdg ,"83pv-RKSJ-H")};func _eabg ()([]byte ,error ){return _dc (_bfdbd ,"UniJISX0213-UTF32-V")};func _ebca ()(*asset ,error ){_eac ,_ebcad :=_gae ();if _ebcad !=nil {return nil ,_ebcad ;};_eacb :=bindataFileInfo {_ag :"CNS-EUC-H",_bc :10002,_bd :_ce .FileMode (436),_bg :_f .Unix (1580491600,0)}; -_eacc :=&asset {_cd :_eac ,_dce :_eacb };return _eacc ,nil ;}; \ No newline at end of file +package bcmaps ;import (_g "bytes";_ga "compress/gzip";_e "fmt";_a "io";_ff "os";_f "strings";_c "time";);var _cgadd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4f\x6f\x1b\xbd\x11\xc6\xef\xfa\x14\x7b\x4c\x0f\xa9\x49\x0e\xb9\x4b\x02\x86\x81\x22\x41\x51\x07\x48\x5b\xd4\x49\x5a\xa0\xe8\x61\x25\x91\xae\x80\x5a\x16\x64\xfb\x90\x6f\x5f\xcc\xef\x91\xfd\x3a\xef\x41\xe0\x33\xc3\xf9\xf3\x90\x1c\x0e\xb5\x57\x9f\x6e\x3f\xdf\x1e\x0f\xcf\xd3\xd5\xdf\xcf\x8f\xbb\xbb\xfe\x3c\x8d\xc3\x71\x7f\xee\x4f\x8f\x2f\xe7\x5d\x9f\xb6\xfd\xfe\x70\xdc\x6c\x62\x9a\xf6\x87\xdd\xf3\xab\xc8\xb0\x7b\x58\x4f\x9b\xcd\xd5\xf7\xe3\xe1\xcb\xed\xdd\xc7\xef\xdf\xfe\x1c\xe7\x8f\x7f\x99\x5e\x9e\xfa\x65\xe2\xd3\xed\xe7\xbb\x9f\x4f\xcf\xfd\xe1\xf6\x38\x1e\x27\x53\x80\xfd\xcb\xe9\x12\x64\x9a\xae\xfe\xd1\xef\x0f\x4f\xcf\xe7\x9f\xd3\x87\x3f\xed\x1f\xb7\xfd\x0f\xd3\xbe\x0f\xd7\xff\xed\xbc\xef\xe7\xc3\xf1\x7e\xfa\xf0\x65\x3d\xad\xc7\xf8\x36\x71\xf7\x72\x3a\xfd\xaf\x3f\xf4\xe3\xf3\xb4\xa0\xeb\xc7\x3d\xe3\xe6\xea\xd3\xd7\xf5\xf4\xd7\xf5\xa1\x4f\xbf\x12\xfa\xc1\x34\xb3\x3f\xfa\xf9\xe9\xf0\x78\x9c\xe2\x1f\x43\xa8\xbf\xa9\xbf\xfd\x3c\xf5\x29\x5e\xa2\xfc\xeb\xfb\xed\xe7\xe9\xdf\x71\x8a\x61\x4a\x65\x8e\xe9\x3f\x17\xfd\x3f\xbf\x3e\xee\xdf\xac\x62\x08\x5a\xc3\xee\xb0\xdf\xfd\x77\x3d\x6f\xae\x43\xd8\x86\x9b\xa9\xa6\xb9\x6d\xae\x53\x88\xe1\x66\x5a\x6a\x33\x70\x01\x27\xf0\x0c\x2e\x8e\x93\xf4\x15\x2c\xfd\xe2\xd8\x92\xc7\x59\xf0\x35\x73\x5c\x1d\xc7\xe6\x31\xad\x02\xa3\xc3\x19\x98\x1c\x36\xa0\x39\xf4\x18\x71\x97\x6f\xa6\x6a\x31\x82\x0b\x38\x80\x67\xb0\x73\x89\xdd\x71\xb8\xe0\x05\x9c\xc1\x15\x8c\x6f\x6f\x60\xcf\x6f\x6d\x7b\x33\xc5\x14\x73\x45\xd8\x21\xcc\x12\xf6\x9a\x59\x10\x3a\x42\x09\x08\xe3\x9d\xd9\x1a\x64\xd6\x10\xa2\xcc\x66\x84\xf4\xde\xcc\x34\x53\x10\xb2\x04\xcd\x94\xf7\x66\xb3\x66\x48\xba\x3a\xff\xd7\x89\x0a\x96\xbe\x81\x95\x64\x7d\xef\xbd\xf5\x89\x25\x81\x77\xe0\x08\xde\x83\x9d\x7c\x09\xbb\x9b\x69\xc9\x1c\x56\x09\x7b\xf0\x02\xee\xe0\x19\x3c\xc0\x1e\xb3\x70\xe8\x25\x18\x38\x82\xf1\x8d\x09\x9c\xc1\x06\xc6\x37\x66\x7c\x23\xb8\x80\xe5\x3b\x83\x13\x78\x01\xcb\xb7\x82\x1b\xb8\x11\x47\xbe\x2b\x18\xce\x71\x0b\x96\xaf\xf3\x2f\x49\x31\xf7\x60\xf8\xc7\x0e\x16\xb7\x01\x26\x7e\x82\x7f\x82\x5b\x82\x7f\x22\x57\x82\x7f\x62\x8d\x14\x6d\x31\x7c\x29\xda\x62\xc4\x4f\x0b\x98\xbc\xa9\x82\x15\x13\x9e\x14\x65\x49\xf0\x34\xc5\x87\xa7\x29\x26\x3c\x23\x31\x0d\x0e\x11\x1b\xcb\xac\x05\x5f\x23\x66\xc0\x3e\x63\x93\x59\x7b\x86\x67\x66\xed\x19\x9e\x19\x0e\x99\x7d\xa6\x22\x4b\x26\x0e\x65\x57\x32\xfc\x33\xf1\x33\xfc\xb3\x62\xc2\xbf\xb0\x96\x4c\xae\xe2\x71\x66\xdf\xc3\x9a\x52\x04\x7b\x6d\xa4\xd8\xc0\x1d\xbd\x6c\x06\xd8\x39\x2c\x41\x95\xbc\x78\xd0\xc5\x6b\xbc\xa6\xd0\x36\xd7\x16\x38\x8c\xea\x07\x69\x81\xc3\x68\x5e\xfa\x16\x38\x80\xe6\x55\x6c\x81\xc5\xb4\x58\xc1\x06\xc6\x17\xd2\xcd\x13\x58\x80\x68\x73\x42\x16\x72\x03\x27\xc7\x33\xf6\x7e\xd8\x16\xaa\x30\xb9\xaa\x7c\x0b\x58\xbe\xe4\xad\x1d\xbc\x78\xff\x7c\x6d\x62\x9b\x9a\x7f\xd7\xd5\x2c\xf8\xad\xaf\x69\x21\x47\x63\x33\x16\x72\x73\x99\x67\x33\x09\x10\x4f\x10\x5f\x95\x1c\xe2\x2b\xc9\x0d\xe2\x2b\xc9\x2f\xf6\x10\x37\x82\xee\xb0\x37\x88\x77\x61\x88\x77\xf9\x42\xbc\xcb\x17\xe2\x1d\xe2\xc6\x86\x0d\x6d\xaa\xc7\x4c\x63\xdc\x4c\xc9\x42\xf1\xc4\x16\xbc\x17\x9b\xf7\x20\xb3\xe0\x3d\xd4\xbc\xd4\xcc\x82\xb7\x93\xd8\x66\x4d\xd0\x18\xc9\x6c\x61\xd6\x44\x44\x58\x24\x14\x84\x2a\x41\x66\x4d\x82\x82\xad\x12\x66\x84\x2d\xc2\xa2\xc8\x3b\x09\x09\x41\xa7\xcd\x04\x57\xbe\x65\xb2\x44\xd2\x67\xe9\xe9\xcb\x26\xac\xec\x55\x42\x65\x82\x45\x45\x25\xaf\x44\xa5\x00\xad\xc0\xca\x2f\x68\x35\xb6\xdc\x12\xab\xcd\x10\x4c\x5a\x2d\xfb\x63\x7e\x73\x5d\x90\xc7\x0c\x27\x4d\xb0\xb9\x99\xc5\xfa\x15\xad\x46\x65\x1a\x57\xb4\x5d\x32\xec\xe5\x4c\x0a\x8b\x18\x91\xc2\xa8\xf7\x10\xf0\x36\xed\x74\x06\x93\xc1\x2f\xa0\x99\x2d\x18\x45\x4d\x54\x09\xe4\xb0\x06\x5b\x72\xd8\xaa\x09\xb9\x6c\x99\x50\xbe\x9d\x26\xd8\x10\xdb\x4b\x20\x7b\x8e\x12\x30\xcb\xec\x82\x32\xfa\x2d\xa9\x56\x84\x95\x30\x49\xa0\xf2\xb4\xe9\x79\x65\x81\xb0\xca\x1c\x92\x88\x64\xb6\x96\x0a\xb3\x42\x65\x6b\x3b\x8b\xd6\xaa\xf5\x15\x93\xa0\x99\x2c\x81\x5d\x28\xe4\xce\x58\x2d\xbc\x99\xe1\x22\x68\x1d\x4a\xb2\x68\x1d\x99\xc3\x5c\xba\x04\xce\x63\x19\x9c\x66\xde\x5c\x8f\x11\xb8\x71\x5e\x6e\x63\x04\x5a\xce\x82\x3e\xea\x2d\xf3\xfe\x3f\x86\xda\x89\xef\xdb\x18\xc6\xa1\xf9\x1b\x34\x86\xa1\x0f\x38\xd8\xe0\xa6\x04\xc7\x45\x36\x05\xac\x1b\x34\x83\x65\x2f\xdc\x5f\xdb\xd5\x18\xdc\xca\x5a\xdb\x2f\xad\xc2\x96\xb7\x56\x71\x5e\x8f\xf7\xdd\x1f\x4f\xff\x07\xe4\x43\xa4\x35\x14\x3d\xa2\xe8\x4a\xf0\x7d\xcc\x95\x9e\xed\x3d\xd2\x07\x0f\x9b\x17\xda\xb2\xdf\x4b\x1f\x78\x05\xab\x5e\xdc\x59\x2a\x1e\x40\xfe\x01\x15\xbf\x8a\x3e\x34\x54\x72\x5c\xa5\xda\xa2\xd2\x33\x63\xa8\x12\x5d\xdf\x20\xe1\xe5\xeb\x03\x8f\x5d\xd4\x83\x12\x51\x19\xef\x04\xbd\xbb\x58\x91\x8a\xa7\x20\x10\xde\xeb\xd3\x07\x5e\x2b\xfe\x2a\x15\x53\x2c\x36\xb4\x64\x3d\x18\xb2\xa2\x9e\x0a\x17\x3d\xf8\x7a\x7d\x48\x6c\x1d\xcd\x0a\xf6\x16\xf8\x67\xd0\x02\x2a\x6f\x07\x3e\xd0\xea\x02\xad\xd1\x3b\x81\x0f\x0b\x7b\xa8\x36\x1a\x2f\x9e\x8d\x43\xa7\x19\x84\x56\xd0\xb5\x99\x02\xa1\x63\x0e\xa9\x06\x37\x8f\xc2\x8c\xc3\x77\xdf\xe2\x68\x6a\xd6\x86\x6e\x95\x6e\xa0\x53\x69\x8a\xae\xf1\x7a\xc5\xa6\xab\xed\xf5\xe6\x8d\xc6\xd4\xcb\xa8\xda\xb8\x4a\xa7\x76\x50\xf1\xf5\x17\xcc\x5b\x44\x94\x4e\x9d\xa7\x4a\xa7\x8e\xd5\xd4\x4f\x14\xcf\x82\x3a\x06\x85\x6f\x59\xba\x22\x9d\x5a\x8a\xec\xb2\xec\x92\xae\xaa\x49\x37\x4b\xa7\x6b\xba\x95\x4e\xb7\x2a\xa9\x21\x88\x4b\x91\xaf\xfa\x69\x29\xd2\xc9\xd7\x77\x6f\x0c\xce\x62\x0c\x2a\xa9\x36\x54\x65\xa0\x9a\x2f\x7f\x52\xe3\xa5\xda\x55\xdc\x08\xfe\x4d\xf3\xf6\x8d\xb1\x7b\x39\x9f\xfb\xf1\x99\x2f\x1a\x3e\x22\xfc\xc3\xe0\x70\xec\x6f\x9f\x4d\xa7\xc7\x93\x7b\xf1\xfb\x7f\x00\x00\x00\xff\xff\x03\x19\x3b\x09\x62\x0d\x00\x00"); +func _cbb ()(*asset ,error ){_cdg ,_dea :=_gga ();if _dea !=nil {return nil ,_dea ;};_eac :=bindataFileInfo {_ee :"78ms-RKSJ-V",_ffd :1875,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490915,0)};_ffe :=&asset {_da :_cdg ,_dc :_eac };return _ffe ,nil ;}; +func _dcdf ()([]byte ,error ){return _gb (_beaca ,"UniGB-UTF8-H")};func _ebab ()([]byte ,error ){return _gb (_gebe ,"UniJIS2004-UTF16-H")};func _cea ()(*asset ,error ){_ceae ,_dedb :=_ccac ();if _dedb !=nil {return nil ,_dedb ;};_aba :=bindataFileInfo {_ee :"Adobe-CNS1-7",_ffd :1877,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491225,0)}; +_dffg :=&asset {_da :_ceae ,_dc :_aba };return _dffg ,nil ;};func (_gg bindataFileInfo )Mode ()_ff .FileMode {return _gg ._cd };var _eece =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4d\x8b\xdb\x3c\x10\xc7\xef\xfa\x14\x3a\xee\x73\xd8\x27\x33\x7a\xb3\x0c\x26\x50\x76\x59\x48\x61\xdb\xd2\xed\x1b\x94\x1e\x1c\x7b\x1c\x0c\x8d\x6c\x1c\xe7\xb0\xdf\xbe\xcc\x8c\xb3\x85\x1e\x82\xa3\x9f\x35\xff\x28\xbf\x91\xb4\x7b\x38\x3c\x1e\xca\xb8\xda\xdd\xa7\x65\xea\x5e\x68\xb5\xc3\x58\xfa\x85\x2e\xd3\x75\xe9\xc8\x1e\xe9\x34\x16\x63\xd0\xd9\x7e\xec\xd6\xdb\x50\x1e\xdd\xb9\x9d\x8d\xe1\xfa\x97\xd7\xcb\x4a\xe7\x43\x19\x26\xeb\x75\x5e\x7f\x9d\xb7\xb9\xd6\xee\x3e\xd3\x69\xbc\xac\xcb\xab\xbd\x7b\xd7\x4f\x47\xfa\xcf\xf6\x34\x30\xff\xb8\xf4\xb4\x8c\xe5\x64\xef\xde\xb7\x73\x5b\xf0\xed\xc5\xcb\x75\x9e\x7f\xd3\x99\xca\xca\x79\x34\x18\x2a\xbd\x3c\xcd\xee\xe1\xb9\x9d\x3f\xb4\x67\xb2\x3b\xc9\xba\xd7\xca\x7b\x9d\x26\x6f\xbf\xd1\x72\x19\xa7\x62\xf1\x7f\x80\xf8\x17\x7f\x79\x9d\xc9\xe2\x96\xf2\xe3\xeb\xe1\xd1\xfe\x44\x8b\x60\x5d\x8c\x3e\xfc\xda\xf8\xf7\xe7\xa9\x27\x0b\xb7\xdf\x3a\x3c\x3e\x4c\xd7\xb2\xda\xda\xc7\xa0\x0c\xf5\x5f\x75\x53\x4f\x97\xb9\xed\x68\x69\xcb\x89\x8c\xb5\x0d\x00\xc0\xde\x36\x2e\x3c\x3d\xed\x79\xb9\xff\xcc\x30\xbe\xda\x2a\xc7\x5e\xc9\xad\x02\x60\x18\xf6\x16\x4c\x03\xa8\x63\xe4\xb1\x8b\xc9\x34\xe0\x94\x38\x26\x11\x9d\x69\xc0\x2b\xf1\x4c\xaa\x94\x4d\x03\x41\x49\x60\x82\xe0\x82\x69\x20\x2a\x8a\x82\x5c\xe6\xec\xa4\x28\x09\x8a\x9e\xc3\x2b\x45\x95\xa0\xaa\xe6\xf4\xac\x28\xcb\x0a\x20\x70\x7c\xad\xa8\x16\xe4\x81\xe3\x5b\x45\xed\xb6\x4e\x8e\x3f\x2a\x3a\x0a\xca\xc8\xf1\x9d\xa2\x8e\x91\x87\x8a\xe3\x7b\x45\xbd\x20\xef\x38\x9e\x14\x91\xa0\x98\x39\x7e\x50\x34\x08\xca\x01\x4c\x83\x6a\x0a\xc5\x54\x80\x3a\x99\x06\x55\x16\x8a\xac\xe0\xa3\x33\x0d\xaa\x2d\x14\x5b\x21\x41\x36\x0d\xaa\x2e\x14\x5d\x21\xa7\x60\x1a\x54\x5f\x18\x36\xa7\x1c\xaf\xbe\x50\x7c\x45\x5f\x71\xbc\xfa\x42\xf1\x15\x93\xe7\x78\xf5\x85\xe2\x2b\xe6\xcc\xf1\xea\x0b\xc5\x57\xc2\xc0\xf1\xea\x0b\xc5\x57\x0a\xc0\xf1\xea\x0b\xc5\x57\x4a\xdc\x58\x54\x5f\x28\xbe\x52\xcd\x9d\x45\xf5\x85\xe2\xab\x42\x6e\x2d\xaa\x2f\x14\x5f\x55\xe0\xd6\xa2\xfa\x42\xda\xfa\xcf\xf1\xea\x0b\xc5\x57\x55\x73\x6b\xdd\xb6\x17\xc5\x57\x46\x6e\xad\x53\x5f\x4e\x7c\xe5\xc0\xad\x75\xea\xcb\x89\xaf\x5c\x71\x6b\x9d\xfa\x72\xe2\x2b\xd7\xdc\x5a\x17\xb6\x7d\x9d\xeb\xbd\xad\x1d\x26\xd9\xdc\xb7\x4d\xcc\xdf\xf9\x16\x78\x3b\x95\xdd\x75\x59\xa8\xac\x72\x07\xc8\xb1\xe3\x63\x33\x16\x7a\xbb\x4f\xe6\x69\xe6\x2a\xf9\xfc\x09\x00\x00\xff\xff\xb3\x7e\x40\xe8\x7b\x04\x00\x00"); +var _fgg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xe4\x46\x14\x04\xf0\xbb\x3e\x45\x1f\x37\x87\x8d\xfb\xfd\x51\xab\x05\x62\x61\xf1\xb2\xe0\xc3\x6e\x42\x1c\x92\xb3\x2c\xf5\x98\x81\x58\x33\xc8\xe3\x83\xbf\x7d\xa8\x57\x33\x0e\xe4\x60\xc6\x53\x96\x9e\xc4\xaf\xdc\xdd\x77\xf7\x0f\xdf\x1e\xb6\xe3\x25\xdd\xfd\xbe\x9f\x96\xc7\x76\x49\x87\xe3\xb6\xee\xed\xf5\xf4\xb6\x2f\x2d\x3d\xb5\xe7\xe3\xd6\x75\xa2\x69\x3d\x2e\x97\xdb\xd7\xf8\x58\x5e\xe6\x73\xd7\xe1\xfe\xc7\xf7\xd7\x4b\x7b\x79\xd8\x0e\xa7\x64\xbc\x6e\x7d\x3b\x5f\xaf\x4d\xe9\xee\x8f\xf6\x7c\x7c\xbd\xec\xef\xe9\xd3\xd7\xf5\xf4\xd4\x7e\x49\x6b\x3b\x20\xff\x6d\x5f\xdb\x7e\xdc\x9e\xd3\xa7\xfb\x9f\x8f\xf2\x11\x3f\xbe\x9d\xcf\xff\xb4\x97\xb6\x5d\xd2\x10\x59\xdb\xd6\xf8\xec\xee\xee\x7f\xcc\xe7\x9f\xf3\x4b\x4b\x77\x31\xe9\x33\xee\xfb\xcc\x8b\xe2\x6f\x7f\xb5\xfd\xf5\x78\xda\x92\xfc\x9a\xb3\xfc\x17\xff\xf9\x7e\x6e\x49\xae\x33\xfe\xfe\x71\x5a\x5b\xca\xb7\x89\x0f\xdf\xee\x4f\x6f\xdb\x25\xc9\x28\xc3\xc8\x50\xf8\xea\xcb\x69\x6d\xaf\xe7\x79\x69\xfb\xbc\x3d\xb7\x2e\xa5\x29\xe7\x9c\xbf\xa4\xc9\xbf\x7e\xff\xfe\x05\x6f\xf5\xbf\x2b\xba\xa1\xbf\xde\x79\x5c\x99\xdc\xee\xc8\xf9\x70\xf8\x92\x72\x37\x65\xe1\x77\xc1\x77\xed\x4b\x37\x65\x65\xa2\x48\x7a\xd1\x6e\xca\xc6\xc4\x90\x0c\xa5\x76\x53\x76\x26\x8e\x44\xb2\x7a\x37\xe5\x9e\x51\x1f\x91\x56\xcc\x2e\x8c\x4a\x44\xbd\x61\xf8\xc0\x68\x88\x68\x18\x31\xbd\x32\xaa\xf1\x06\xd9\x31\x7e\x64\x34\x46\x64\x19\xe3\x67\x46\xf3\xf5\x3d\x31\xfe\x89\xd1\x53\x44\x55\x30\x7e\x61\xb4\x20\xb2\x3c\x60\xfc\xca\x68\x8d\xc8\x14\xe3\x1b\xa3\x16\x51\x5f\x31\xfe\xc0\xe8\x10\x51\xf5\xdc\x4d\x42\x29\x09\x29\xcf\x63\xe9\x26\x21\x96\x04\x96\x5b\xaf\xdd\x24\xd4\x92\xd0\xf2\x92\x6b\x37\x09\xb9\x24\xb8\xbc\x16\xef\x26\xa1\x97\xf8\xd5\x14\xe3\xe9\x25\xe1\xd5\xdb\x80\xf1\xf4\x92\xf0\xea\x8b\x61\x3c\xbd\x24\xbc\xfa\x5a\x31\x9e\x5e\x12\x5e\x45\x1c\xe3\xe9\x25\xe1\x55\x3c\x63\x3c\xbd\x24\xbc\x4a\x41\xb1\x42\x2f\x09\xaf\x32\xa2\x59\xa1\x97\x84\xd7\x20\xa8\x56\xe8\x25\xe1\x35\x38\xaa\x15\x7a\x49\xbb\xf6\x8f\xf1\xf4\x92\xf0\x1a\x46\x54\xab\xf4\xd2\xf0\xaa\x82\x6a\x95\x5e\x1a\x5e\xd5\x51\xad\xd2\x4b\xc3\xab\x0e\xa8\x56\xe9\xa5\xe1\x55\x47\x54\xab\xf4\xd2\xf0\x1a\x15\xd5\x2a\xbd\x34\xbc\x46\x47\xb5\x4a\x2f\x0d\xaf\x71\x40\xb5\x4a\x2f\x0d\xaf\x71\x44\xb5\x4a\x2f\xad\xb7\xff\x55\xcc\x27\x98\x8e\xcc\x1c\xe5\x2a\xc5\x74\x66\x36\xa0\x5d\x25\x99\x06\x19\xda\xc7\x23\x68\xa6\x0b\x33\x45\xbf\x4a\x34\x5d\x99\xf5\x28\x58\xa9\xa6\x8d\xd9\x80\x86\x95\x6c\x7a\xe0\x22\xc9\xa8\xd8\xe8\x66\x99\x99\xa2\x63\x23\x9c\x09\xb3\x1e\x25\x1b\xe5\x4c\x6f\x0b\x2c\x77\x93\x91\xce\x82\x4e\x2c\xa3\x66\xa3\x9d\x71\x6d\x9a\xa1\x67\x23\x9e\x71\x71\x5a\x8f\xa2\x8d\x7a\xc6\xd5\x69\x15\x4d\x1b\xf9\x8c\xcb\xd3\x33\xaa\x36\xfa\x19\xfd\xdc\xd0\xb5\xd1\xcf\xe8\xe7\x3d\xca\x36\xfa\x19\xfd\xbc\xa2\x6d\xa3\x9f\xd1\xaf\x17\xd4\x6d\xf4\xb3\xe5\xb6\x2b\xe0\x19\xf4\x33\xfa\xf5\x05\x85\x1b\xfd\x8c\x7e\x7d\x45\xe3\x46\x3f\xa3\x5f\x11\x54\xee\xd7\x3d\x90\x7e\xc5\xd0\xb9\xd3\xcf\xe9\x57\x0a\x3a\x77\xfa\x39\xfd\x4a\x45\xe7\x4e\x3f\xa7\xdf\x20\xe8\xdc\xe9\xe7\xf4\x1b\x1c\x9d\x3b\xfd\x9c\x7e\x43\x41\xe7\x4e\x3f\x2f\xb7\xad\x0c\xcf\xa0\x9f\xd3\xaf\x0a\x3a\x77\xfa\x39\xfd\xaa\xa3\x73\xa7\x9f\xd3\xaf\x16\x74\xee\xf4\xf3\xb9\xcd\xc8\x46\xf7\xd8\xd1\x6f\x3b\x37\x7e\xc7\xf9\xf6\x71\xe2\x2c\x6f\xfb\xde\xb6\x4b\x9c\x6e\x71\xa8\xe0\xac\x38\x6e\xed\xe3\xa4\x3c\x9f\xce\xb8\x2b\x7e\xfe\x0d\x00\x00\xff\xff\xea\x94\xed\x0a\x55\x07\x00\x00"); +var _efdad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xc1\x8e\x9b\x30\x10\x86\xef\x7e\x8a\x39\x6e\x0f\x5b\x3c\x10\x13\x90\xa2\x95\xaa\x44\x55\xd1\x6a\xdb\xaa\xd9\x6c\x2b\x55\x3d\x10\x3c\xa4\x96\x1a\x83\x0c\x1c\xf2\xf6\x95\x7f\x08\x55\x0f\x68\x3e\x7e\x0f\xd6\x37\xd8\xc9\xbe\x3a\x54\xde\x8d\x94\x7c\x0d\x5d\x73\x94\x91\x5a\xe7\x6d\x90\xa1\x9b\x42\x23\x74\x96\x8b\xf3\x4a\x71\x4a\xd6\x35\xe3\xfd\x15\xa5\xb9\xd6\xbd\x52\xc9\xc9\xbb\xe7\xe3\xe3\xe9\xf5\x23\xe7\x8f\x9f\x68\x1a\x64\xc9\xf7\xd5\xe1\x78\x1b\x46\xb9\x56\xbe\xed\x28\x9b\xbf\xb7\x53\xbf\xec\x41\x94\x7c\x93\x8b\x1b\xc6\x70\xa3\x87\x0f\xb6\x3b\xcb\x3b\xb2\xd2\xc6\xfc\x4b\xb0\x12\x9c\xbf\xd0\xc3\x73\x17\xa4\xe6\x75\xe1\x38\xf5\xfd\x1f\xb9\x8a\x1f\x89\x91\x89\xb7\xa8\x2a\xd9\xbf\xd4\xfd\xe7\xfa\x2a\xf4\x9f\xcf\x1b\x56\xb1\xf8\x26\x61\x70\x9d\x27\x7e\xaf\xb5\xf9\x17\xbf\xde\x7a\x59\x36\x53\xc9\x8f\x53\x75\xa0\x9f\x4c\xac\x29\x35\x66\x63\x7e\x2d\xf9\xf7\x97\xce\xae\x5d\xcc\xf3\x04\x8d\xb3\xcd\xef\x3a\xa8\x5d\xaa\x39\x7f\xa2\x42\xe7\x1c\x39\x35\x91\x4d\xa1\x76\x99\xe6\x2c\xf2\xd6\xa8\x5d\xdb\x6a\x06\xe7\xe0\x06\x5c\x82\x25\x72\xa1\x23\x67\x67\xf0\x16\x6c\xc1\x05\xb8\x05\xa3\xdf\xa0\x3f\x4f\x23\x0b\xf6\x2f\xb3\xf8\x1f\xee\x3a\x6a\xbb\xea\x85\xda\x5f\x04\x7e\xd9\x13\xc5\xb2\x81\x5a\x19\xd5\xa2\x4e\x2c\x29\xa2\x1c\x51\x81\x88\x21\x9a\x1b\x0c\xb0\x99\x23\xcc\x94\x67\xf0\x8d\x5d\x6d\xab\x4b\x8c\x00\x55\xae\x11\xf1\x6c\xc9\xb0\x3c\x23\x32\x18\xa2\xd4\x8b\xe0\x2c\x84\x97\x78\x47\xd6\x33\x6b\xa6\x10\xc4\x8f\xb8\x21\x38\x95\xf8\xa7\x9d\x97\xf5\x16\xf6\x5d\x1f\xbf\xc2\xf3\x37\x00\x00\xff\xff\xf1\x10\xe4\x07\xb1\x02\x00\x00"); +func _cgfba ()(*asset ,error ){_cfag ,_bagf :=_fbdaf ();if _bagf !=nil {return nil ,_bagf ;};_aabe :=bindataFileInfo {_ee :"UniJISX0213-UTF32-V",_ffd :4404,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493008,0)};_cdcb :=&asset {_da :_cfag ,_dc :_aabe }; +return _cdcb ,nil ;};func _gage ()(*asset ,error ){_aedc ,_ead :=_gbeg ();if _ead !=nil {return nil ,_ead ;};_aca :=bindataFileInfo {_ee :"Add-V",_ffd :1483,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491110,0)};_cdd :=&asset {_da :_aedc ,_dc :_aca };return _cdd ,nil ; +};func _gga ()([]byte ,error ){return _gb (_dd ,"78ms-RKSJ-V")};func _edcb ()([]byte ,error ){return _gb (_adgc ,"UniJIS-UTF32-H")};func _eaeb ()([]byte ,error ){return _gb (_dgcg ,"EUC-V")};func _defa ()(*asset ,error ){_fbaa ,_edafg :=_cedad ();if _edafg !=nil {return nil ,_edafg ; +};_dgfc :=bindataFileInfo {_ee :"HKdlb-B5-H",_ffd :18683,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492327,0)};_baaa :=&asset {_da :_fbaa ,_dc :_dgfc };return _baaa ,nil ;};var _acc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\x41\x8f\x95\x30\x10\x07\xf0\x3b\x9f\x62\x8e\xeb\x41\xa1\x40\xe9\x6e\x62\x4c\x14\x0e\x72\xd8\x5d\x23\xbe\xa7\x89\xf1\xc0\x6b\x07\xd2\x44\x4a\x53\xca\xe1\x7d\x7b\x33\x53\x64\x0f\x64\xe8\x2f\xcc\x3f\xed\x94\xbc\xed\xbb\xde\xd9\x08\xf9\xb7\xb0\xea\x01\x23\x4c\xd6\x99\x80\xdb\xba\x07\x8d\x70\xc3\xd9\xba\x2c\x13\x25\x18\xab\xe3\xff\x25\x17\xbd\x8c\x3e\xcb\xf2\x2f\xf2\xfd\x57\xd8\x37\x3c\x96\x6d\xdf\x0d\xf7\x2d\xe2\xd2\xbb\x69\x85\x2a\xb5\x99\xdd\x1f\xad\x00\xf9\x77\x9c\xed\x16\xc3\x1d\x1e\x3e\x9b\xf5\x86\xef\xc0\xe0\x44\xfe\x1a\x0c\x06\xeb\x66\x78\x68\x5f\x06\x71\xf2\xb0\x7b\xff\x17\x17\x74\x11\x0a\x36\x74\x86\x6b\x96\xb7\xcf\xa3\x7f\x19\x17\x04\xda\xc4\x95\x91\xed\x8a\x61\xb3\xab\x03\x51\x7c\x28\x8a\xe6\xcd\x7f\xdc\x3d\x82\x38\x9a\x2f\x7d\xf7\x3a\x4d\x1b\x46\x78\x12\x29\x38\xff\x75\xe9\x3b\xf8\x2d\x40\x14\x50\xca\xea\x51\xfc\x39\x3e\xfd\xf9\xbc\x9a\xb3\x51\x94\xe9\x28\xda\x9a\x30\xba\x19\xb3\x8f\xa3\xa8\x6f\x9f\xe0\x28\xa2\x6a\xea\x86\x4c\x8e\x6c\x54\x44\xa5\xea\x8a\x4d\x27\xd3\xc9\x24\x9b\x49\x86\x64\x05\x49\x23\x58\x9a\x92\xa4\x66\x91\x49\x1a\x92\x47\x96\xa7\x24\x94\x5e\x97\x2c\x29\xa7\xa1\x9c\xb4\x03\x95\x72\x14\xe5\x48\x4e\x56\x29\x47\x51\x8e\xe4\x64\x95\x72\x14\xe5\x48\x4e\xc6\x8a\x85\x0a\x9d\x45\xd1\xbc\xcf\xb3\xd2\x3b\xdd\xf3\x39\x79\xbd\x87\x80\x2e\xf2\x2d\xf3\x8c\x69\x48\xd6\xe1\xf9\x03\xf9\xd5\x53\x17\x3f\xff\x02\x00\x00\xff\xff\x86\xb8\x44\x50\x6c\x02\x00\x00"); +func _fdc ()(*asset ,error ){_dfded ,_agcc :=_eafd ();if _agcc !=nil {return nil ,_agcc ;};_eebb :=bindataFileInfo {_ee :"GBK2K-V",_ffd :1168,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492041,0)};_egdd :=&asset {_da :_dfded ,_dc :_eebb };return _egdd ,nil ; +};func _ccef ()([]byte ,error ){return _gb (_cbf ,"Adobe-Japan1-5")};var _faec =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4d\x6b\x1c\x49\x12\x86\xef\xfd\x2b\xea\xe8\x3d\x78\x95\x9f\x95\x99\x60\x04\x8b\xcd\xb2\x32\x78\x77\x59\xd9\xde\x81\x61\x0e\x95\x95\x55\x9a\x86\x51\xab\x69\x49\x07\xff\xfb\x21\xde\x78\xa3\x8d\xe6\x20\x54\x4f\x44\x56\x7c\x64\x46\x46\x54\xdf\x7c\xbc\xfb\x74\x77\x3a\xbe\x4c\x37\xff\xbd\x3c\xad\xf7\xdb\xcb\xb4\x1f\x4f\xe3\xb2\x3d\x3f\xbd\x5e\xd6\x6d\xea\xdb\xc3\xf1\x74\x38\xf8\x30\x8d\xe3\xfa\x62\x88\x7f\xeb\xe3\x72\x3e\x1c\x6e\xbe\x9d\x8e\x9f\xef\xee\xdf\x7f\xfb\xfa\xcf\xfa\xfe\x5f\xd3\xeb\xf3\x46\xf9\xc7\xbb\x4f\xf7\x3f\x9e\x5f\xb6\xc7\xbb\xd3\xfe\x34\x45\x7d\x7f\xbc\x9e\x69\x63\x9a\x6e\xfe\xb7\x3d\x1c\x9f\x5f\x2e\x3f\xa6\x77\xff\x18\x4f\x7d\xfb\xdb\x34\xb6\x5d\xe4\xff\xb9\x8c\xed\x72\x3c\x3d\x4c\xef\x3e\x2f\xe7\xe5\xe4\xaf\x8a\xfb\xd7\xf3\xf9\x8f\xed\x71\x3b\xbd\x4c\x05\xb2\xed\x34\xf0\xff\x70\xf3\xf1\xcb\x72\xfe\xf7\xf2\xb8\x4d\x6f\xe2\xf9\x0e\x2d\x94\xdf\xb7\xcb\xf3\xf1\xe9\x34\xf9\xf8\x77\xe7\xea\x4f\xf9\xd7\x1f\xe7\x6d\xf2\xb4\xf2\xcb\xb7\xbb\x4f\xd3\xaf\x7e\xf2\x6e\x0a\x39\x25\xf7\x1b\xe5\xff\xff\xf2\x34\xae\xab\xbc\x73\x9a\xc3\x7a\x1c\xeb\xef\xcb\xe5\xf0\x61\x0d\xdd\xdd\x4e\x35\xcc\xed\xf0\x61\x0b\xd5\x35\x77\x3b\x95\xda\x22\x29\x83\x02\x69\x06\x65\xa5\x45\x75\x95\xa4\xba\xa2\xd4\x83\xd8\x2c\xb4\xd2\xa3\x50\x55\x9a\xe1\x21\x56\x82\x17\x98\x09\x41\xa0\x11\xa2\x80\xda\x2b\x35\xdd\x4e\x35\x7a\x4f\xca\x20\x47\x9a\x41\x1a\x63\x91\x38\xaa\xbb\x52\x01\x25\x52\x05\xd1\xca\xd2\x40\x1a\xd5\xd6\xfa\xed\xe4\x83\x4f\x95\xb8\x02\x67\xc3\xa1\xda\x42\xdc\x80\xd9\x11\xf7\x37\x8b\x17\xa7\x8b\x1b\xd1\xeb\xe2\x99\x18\xde\x2e\x8e\xaa\xcd\xc4\xa4\x68\xda\xfc\x76\xf1\xac\x5a\x86\x81\xec\x7e\x2a\x2b\xc8\x74\x0d\x64\x4e\x97\xb7\x76\xba\x28\x4b\x20\xad\x20\x4f\x1a\x20\xa4\xd6\x52\x5d\x6f\xa7\x92\xf4\xc8\x5b\xaa\x03\x54\x48\x1b\x68\x26\xed\xa0\xaa\x84\x43\xce\x2e\x92\x3c\x88\x56\x70\xcc\xd9\x25\x52\x04\xd1\x4a\x4b\xb0\xe2\x49\x19\x64\x56\x66\x50\x20\x15\x90\x59\xa9\xa0\x46\x6a\xb0\x69\x56\x16\x10\x33\x92\x83\x2e\xd9\x99\x15\xc9\x2f\x07\xf3\x30\x40\xcc\x4f\x4e\xb9\xe4\x60\x51\xef\x20\xfa\x5b\x90\x5f\x60\xd4\x0b\xf2\x0b\xf4\xbe\x20\xbf\xc0\x9d\xc0\x35\xc9\x91\x56\x70\x4d\x72\xa4\x3f\x39\xc0\x92\x23\x63\x91\x03\x2c\x39\x9a\x07\xe4\x10\x19\xcb\x82\x1c\xa2\xf9\x43\x0e\xd1\x3c\x20\x07\x4f\x0f\x1d\x91\x79\xae\xec\x09\xd9\xd2\x4a\x87\x07\xa7\xef\xe5\x8a\x95\xc9\x93\x90\x43\x72\x24\xe4\x90\x02\x09\x67\xa4\xd5\xdf\x72\x85\x4d\x2d\xef\x96\x2b\xf2\x4b\x33\x09\xf9\x25\xf3\x80\xfc\x72\x24\xc1\x7b\x56\x9b\x55\x76\xbe\x86\xe0\x49\x52\x75\xc1\x37\xd2\x06\x9d\xad\xdc\x41\x1a\xd9\x5a\xf5\xfe\x14\x75\x81\xdb\x55\x83\x93\x17\x63\x75\x38\xce\x8a\xa2\x10\x92\xe3\x6c\xb8\x78\x42\x3b\xa8\x80\x3c\xd2\x6d\xbe\x92\x22\xa8\x91\x24\xa5\x06\x87\x42\x05\xe4\x49\x0d\x14\x94\x16\xbc\x87\xf2\x89\xd2\xe1\x40\x89\xa4\x56\x32\x49\xad\xcc\xa4\x0d\x54\x64\x0a\x58\x2b\x3e\xd4\xfc\x97\xde\x2c\x2b\xa5\x5c\x6b\x28\x81\x84\x4d\x2b\x1a\x4b\x40\xa3\x99\x63\x34\x44\x4a\xa1\x92\x34\x98\x46\x42\x30\xd1\x91\x10\xcc\xf5\x3d\xa4\x14\xd5\x45\xd4\x24\xa2\xa6\x14\xd5\x4a\x4c\x24\xb5\x92\x49\x6a\x65\x26\x21\xa5\xa8\xdb\x1b\xbb\x1e\x84\x7a\xe8\x7d\xbf\x9d\x42\x74\x59\x83\x59\xa5\xf0\x6a\xcc\x8e\x24\xd3\x21\xc6\x4a\x92\x06\xe8\xdb\x6c\x4a\xb4\x7a\x46\xb3\x4a\x75\x89\xd2\x13\x8b\x62\x26\x56\x45\x5b\xdc\x14\xcd\xf0\xa2\x38\x13\x3b\xb0\x98\x9f\x55\x31\x10\xb5\x72\xa8\x44\x53\x6a\x89\x5e\x1b\x42\x4a\xa6\xc3\xf4\x89\x46\x1a\x51\x35\xac\x50\x32\xed\xa6\x01\x55\xfa\x40\x91\xc7\xcc\x68\xa5\x69\xd4\xc8\xe3\x5a\x17\xec\x49\x62\xe8\x8b\xee\x09\x77\x73\xc5\x50\xf0\xad\xd9\x9b\x33\x62\x35\x25\x0e\x25\x71\x4b\xa4\x6d\xd4\xc8\x1b\xb0\xa2\x6d\xb4\xab\xc7\xa1\x66\xe8\xb2\x7b\x2c\xa5\xcb\x8e\x5b\xe6\x1c\xed\x74\x3d\xa3\x44\x82\xc7\x54\x48\x05\x4b\xbd\x29\xab\x22\x7d\xf6\x86\x4c\xe8\xb3\x2f\xaa\xb4\x57\x3b\x94\x16\xc1\xaa\x4a\x6e\x5e\x1f\x8a\x1a\xd1\xa8\x98\xaa\x8e\x37\x6f\x54\xaf\xda\x46\xc4\xf6\x31\xa4\x21\x85\x51\x63\x36\xd2\x88\x82\x21\xca\x9d\xe7\x37\xa4\x2c\x4a\xcb\x89\x84\x73\x67\xb4\xa3\xe2\x84\x58\xd2\x03\x43\xac\xf1\x4c\x46\xd3\x0d\xe2\x96\x8c\x16\x15\x4d\x9b\x14\x33\x11\xf1\x24\xae\xed\xf8\xd4\x70\x57\xd4\xb4\xcd\x29\xd3\x4e\xcc\xb3\x6f\x8a\x9e\xb8\xa3\x4c\xe4\xd5\xbd\xa3\x6a\x6b\x40\x85\x0b\xa1\x6b\x16\xea\x9a\x8e\x7c\x0c\x41\x41\x64\x86\x8d\xdf\x3b\x36\xbe\x34\x8c\x67\x21\xe8\x1c\x5f\x14\x17\xa5\x36\x07\x1a\x4d\x57\x66\x92\x5e\xeb\x99\xa4\xef\x19\x6d\xd7\xde\xbb\xf7\x1d\x8d\xa3\xd6\xf6\xa6\xc3\xc5\x72\xed\x70\x97\xe5\xf4\xb0\xe9\x17\x87\x4c\x2c\x7d\xf0\xe8\x67\xd9\xbe\x3d\x54\xde\x12\x7a\x75\xaa\x1c\xe7\x72\xd4\xfa\x20\x2e\x52\xe1\xd4\x95\xc6\xa1\x0f\xf8\x68\xa8\xf6\xc9\x32\x9b\x18\xdf\x0b\x95\x93\x57\x6a\x42\x1f\x1a\xc4\x66\x64\x31\x71\x87\xd8\xa6\x6f\xa4\x78\xc1\xe8\x8b\x0c\x50\x6e\x90\x3e\xe0\xdb\xc0\xdb\x94\xf5\x14\x77\x8c\x4d\x0e\xae\xd4\xb3\x89\x31\x15\x1d\x5d\xca\x05\xd1\x07\x0c\x75\xcf\x8f\x81\x6e\xb6\x71\x1c\x39\xd9\x0c\xe5\xea\x8c\xba\xcd\xec\x50\xae\xc2\xa5\x3c\x04\x6c\x7b\xa1\xb8\x52\xac\xb5\xeb\x28\x6e\xc9\xc4\xe8\xe7\xce\x53\x3c\x9b\xb8\xe0\x1c\x82\x0d\xd5\xab\x95\x86\x92\x62\x3f\x0b\x2d\xab\x3c\xa0\x07\x86\x99\x43\xa2\x53\x1c\xb5\x4d\xf0\x4a\x14\x3d\x65\x79\x68\x3a\xb5\x22\xe5\x8b\xc9\x77\xc8\x79\x2d\x56\x4b\x49\x07\xbe\x6f\xd6\x99\xa4\xca\xb5\x7f\x46\x6d\xd9\x6c\x2d\x6d\x31\xb9\xf6\xb5\x4a\x3b\x32\xf6\xb5\xdf\x79\x95\x5b\x53\xad\x26\xd7\xb6\xdc\xac\x49\x9a\xfd\xae\x0d\xc7\xb1\x5d\xf7\x64\xf2\xac\x72\xeb\x94\xd7\xf5\xbb\xb6\x19\x6b\x2c\x51\xe5\x03\x43\x2b\xb8\x60\x4d\xa5\x9b\x5c\xef\x7d\xb0\xfe\xc6\x38\x47\x53\xbf\x1c\x29\xc3\x76\x79\x34\xb5\x83\xdd\x97\xdb\x8e\xf8\xe5\xa1\xe1\xde\x35\xde\xc2\x5d\xc5\xc3\x7e\x85\x78\xde\x40\xbd\x70\x00\xf9\x91\x7b\xfd\xd1\xb9\xbe\x5e\x2e\xdb\xe9\x05\x3f\x71\xf1\xab\x52\x7e\x29\x1e\x4f\xdb\xf5\x67\xf4\xf9\xe9\x2c\x6f\xe1\xef\xcf\x00\x00\x00\xff\xff\xe2\x5c\x6c\xc3\x72\x0f\x00\x00"); +func _dbe ()([]byte ,error ){return _gb (_bgfd ,"Adobe-KR-5")};var _aaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4f\x6b\xe3\x56\x14\x05\xf0\xbd\x3e\x85\x96\xd3\xc5\x34\xef\xfe\x79\x7f\x04\x62\x60\xc8\x30\x90\xc2\xb4\xa5\x29\xed\xda\x91\x9e\x83\xa1\x91\x8d\xe3\x2c\xf2\xed\xcb\xb9\xc7\x4e\xa1\x8b\xc1\xe3\x63\xe9\x4a\xfc\x4e\x9e\x9e\xee\xee\x1f\xbe\x3d\x6c\x87\xcb\x78\xf7\xfb\xf9\xb8\x3c\xf6\xcb\xb8\x3f\x6c\xeb\xb9\xbf\x1e\xdf\xce\x4b\x1f\x9f\xfa\xf3\x61\x1b\x06\xd1\x71\x3d\x2c\x97\xdb\xd7\xf8\x58\x5e\x76\xa7\x61\xc0\xf9\x8f\xef\xaf\x97\xfe\xf2\xb0\xed\x8f\xa3\xf1\xb8\xf5\xed\x74\x3d\x76\x1c\xef\xfe\xe8\xcf\x87\xd7\xcb\xf9\x7d\xfc\xf4\x75\x3d\x3e\xf5\x9f\xc6\xb5\xef\x91\xff\x76\x5e\xfb\xf9\xb0\x3d\x8f\x9f\x7e\xd9\x9d\x76\x9b\x7c\xfc\xf0\xf8\x76\x3a\xfd\xd3\x5f\xfa\x76\x19\x6b\x64\x7d\x5b\xe3\x73\xb8\xbb\xff\xb1\x3b\xfd\xba\x7b\xe9\xe3\x5d\xcc\xfa\xcc\x33\x3f\xf3\xb0\xf8\xf5\xaf\x7e\x7e\x3d\x1c\xb7\x51\x7e\x4e\x49\xfe\x8b\xff\x7c\x3f\xf5\x51\xae\x53\xfe\xfe\x71\x5c\xfb\x98\x6e\x33\x1f\xbe\xdd\x1f\xdf\xb6\xcb\xa8\x96\xca\x35\x14\xde\xfe\x72\x5c\xfb\xeb\x69\xb7\xf4\xf3\x6e\x7b\xee\xc3\x38\xce\x29\xa5\xf4\x65\x9c\xf3\xd7\xef\xdf\xbf\xe0\xbe\xfe\x77\xc4\x30\xdd\xce\x3c\xac\x4c\x6e\x67\xa4\xb4\xdf\x7f\x19\xd3\x30\x27\xe1\x77\xc1\x77\xcd\x65\x98\x93\x32\x51\x24\x59\x74\x98\x93\x31\x31\x24\xb5\xb4\x61\x4e\xce\xc4\x91\x48\x52\x1f\xe6\x94\x19\xe5\x88\xb4\x61\x76\x61\x54\x22\xca\x86\xe1\x95\x51\x8d\xa8\x4e\x98\xde\x18\xb5\xb8\x83\xe4\x18\x3f\x31\x9a\x22\xb2\x84\xf1\x3b\x46\xbb\xeb\x7d\x62\xfc\x13\xa3\xa7\x88\x9a\x60\xfc\xc2\x68\x41\x64\xa9\x62\xfc\xca\x68\x8d\xc8\x14\xe3\x3b\xa3\x1e\x51\x6e\x18\xbf\x67\xb4\x8f\xa8\x79\x1a\x66\xa1\x94\x84\x94\xa7\xa9\x0c\xb3\x10\x4b\x02\xcb\x2d\xeb\x30\x0b\xb5\x24\xb4\xbc\xa4\x36\xcc\x42\x2e\x09\x2e\x6f\xc5\x87\x59\xe8\x25\x7e\x35\xc5\x78\x7a\x49\x78\x65\xab\x18\x4f\x2f\x09\xaf\x5c\x0c\xe3\xe9\x25\xe1\x95\x5b\xc3\x78\x7a\x49\x78\x15\x71\x8c\xa7\x97\x84\x57\xf1\x84\xf1\xf4\x92\xf0\x2a\x05\xc5\x0a\xbd\x24\xbc\xca\x84\x66\x85\x5e\x12\x5e\x55\x50\xad\xd0\x4b\xc2\xab\x3a\xaa\x15\x7a\x49\xbf\xf6\x8f\xf1\xf4\x92\xf0\xaa\x13\xaa\x55\x7a\x69\x78\x35\x41\xb5\x4a\x2f\x0d\xaf\xe6\xa8\x56\xe9\xa5\xe1\xd5\x2a\xaa\x55\x7a\x69\x78\xb5\x09\xd5\x2a\xbd\x34\xbc\x26\x45\xb5\x4a\x2f\x0d\xaf\xc9\x51\xad\xd2\x4b\xc3\x6b\xaa\xa8\x56\xe9\xa5\xe1\x35\x4d\xa8\x56\xe9\xa5\xed\xf6\xb7\x8a\xf9\x04\xd3\x89\x99\xa3\x5c\xa5\x98\xee\x98\x55\xb4\xab\x24\xd3\x20\x43\xfb\xb8\x04\xcd\x74\x61\xa6\xe8\x57\x89\xa6\x2b\xb3\x8c\x82\x95\x6a\xda\x99\x55\x34\xac\x64\xd3\x3d\x17\x49\x42\xc5\x46\x37\x4b\xcc\x14\x1d\x1b\xe1\x4c\x98\x65\x94\x6c\x94\x33\xbd\x2d\xb0\x34\xcc\x46\x3a\x0b\x3a\xb1\x84\x9a\x8d\x76\xc6\xb5\x69\x86\x9e\x8d\x78\xc6\xc5\x69\x19\x45\x1b\xf5\x8c\xab\xd3\x1a\x9a\x36\xf2\x19\x97\xa7\x27\x54\x6d\xf4\x33\xfa\xb9\xa1\x6b\xa3\x9f\xd1\xcf\x33\xca\x36\xfa\x19\xfd\xbc\xa1\x6d\xa3\x9f\xd1\x2f\x0b\xea\x36\xfa\xd9\x72\x7b\x2a\xe0\x1a\xf4\x33\xfa\xe5\x82\xc2\x8d\x7e\x46\xbf\xdc\xd0\xb8\xd1\xcf\xe8\x57\x04\x95\x3b\xfd\x9c\x7e\xc5\xd0\xb9\xd3\xcf\xe9\x57\x0a\x3a\x77\xfa\x39\xfd\x4a\x43\xe7\x4e\x3f\xa7\x5f\x15\x74\xee\xf4\x73\xfa\x55\x47\xe7\x4e\x3f\xa7\x5f\x2d\xe8\xdc\xe9\xe7\xe5\xf6\x28\xc3\x35\xe8\xe7\xf4\x6b\x82\xce\x9d\x7e\x4e\xbf\xe6\xe8\xdc\xe9\xe7\xf4\x6b\x05\x9d\x3b\xfd\x9c\x7e\x6d\x42\xe7\x4e\x3f\xa7\xdf\xa4\xe8\xdc\xe9\xe7\xf4\x9b\x1c\x9d\x3b\xfd\x9c\x7e\x53\x45\xe7\x4e\x3f\xa7\xdf\x34\xa1\x73\xa7\x9f\xef\xf9\xac\x55\x74\x9e\xaf\x7b\x48\xba\x3d\x7f\xd3\x30\x67\xfa\x65\xee\x0a\xa9\xa2\xf3\x4c\xbf\xac\xcc\x26\x74\x9e\xe9\x97\xc3\x4f\x45\xd1\x79\xa6\x5f\x76\x66\x19\x9d\x67\xfa\xe5\xcc\xac\xa2\xf3\x4c\xbf\x1c\x7e\xaa\x09\x9d\x67\xfa\xe5\xca\x4c\xd1\x79\xa6\x5f\xe6\xfe\xa0\x19\x9d\x67\xfa\x65\x6e\x10\x5a\xd1\x79\xa6\x5f\xde\x89\x71\xd3\x48\xb1\x23\xde\x76\x3e\xfc\x1f\xef\x08\x1f\x7b\xf6\xf2\x76\x3e\xf7\xed\x12\x6f\x08\xb1\x29\x63\xaf\x3d\x6c\xfd\xe3\x6d\xe3\x74\x3c\xe1\xac\xf8\xf7\x6f\x00\x00\x00\xff\xff\xfa\x9e\x80\x79\x99\x08\x00\x00"); +func _ded ()(*asset ,error ){_eeb ,_gdd :=_efa ();if _gdd !=nil {return nil ,_gdd ;};_dfa :=bindataFileInfo {_ee :"90ms-RKSJ-V",_ffd :1895,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491032,0)};_efe :=&asset {_da :_eeb ,_dc :_dfa };return _efe ,nil ;}; +func _edeg ()(*asset ,error ){_dbbf ,_bce :=_cdefb ();if _bce !=nil {return nil ,_bce ;};_baef :=bindataFileInfo {_ee :"UniCNS-UTF8-H",_ffd :287804,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492718,0)};_geda :=&asset {_da :_dbbf ,_dc :_baef };return _geda ,nil ; +};var _aeg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xcd\x6e\xdb\x3a\x10\x85\xf7\x7a\x8a\x59\xe6\x2e\x72\x45\x8a\x95\x69\x01\x41\x80\xc6\x2e\x52\x2d\xd2\x14\x75\x9d\x16\x28\xba\xe0\xcf\xd0\x20\x50\x53\x02\x25\x2d\xfc\xf6\x05\x67\x14\x75\x61\x1c\xeb\xd3\x9c\xe1\x19\x71\xea\x43\x7f\xec\x53\x9c\xa1\xfe\x9a\x07\x77\xc2\x19\x42\x4c\x3e\xe3\x34\x2c\xd9\x21\x58\xbc\xc4\x54\x55\xb2\x01\x1f\xdd\xfc\xfe\x48\xe2\xae\x66\xac\xaa\xfa\xf9\xe9\xfe\xd3\xf9\x70\xff\x19\x96\x09\x57\x74\xe8\x8f\xa7\xdb\x34\xe3\xb5\x4f\x61\x00\xc5\x56\xbf\x8c\xab\x1d\xa0\xfe\x86\x97\x38\xcd\xf9\x06\x77\x1f\xfd\x60\xf1\x3f\xf0\x18\x0a\x7f\xcd\x1e\x73\x4c\x17\xb8\x7b\x7e\x92\x1b\x3d\x2d\xe3\xf8\x07\xaf\x98\x66\x10\xc4\x30\x79\xd2\xaa\x3e\xbc\x98\xf1\x8b\xb9\x22\xbc\xe7\x78\xa3\x17\xc4\xdf\x30\x4f\x71\x48\xd0\xfd\x2f\xc4\xee\x1f\xfe\x7e\x1b\x11\xe4\xea\x3f\xf7\xc7\xd7\x10\x26\x9c\x41\x49\xee\x5d\xff\x3c\xf7\x47\xf8\x25\x41\x0a\x68\x5a\xb5\x93\xbf\xd7\xd2\x1f\x2f\x83\xdf\x8c\x8d\xe0\x61\x5c\xf4\xd9\xa4\x0b\x56\x0f\x46\x9a\xe6\x11\x56\x81\x56\xb7\x84\x14\x23\x45\xe8\x03\x21\xc3\xc8\x14\xd4\xed\x09\x59\x46\xee\x11\xb4\x16\x5c\xe5\x19\x79\xaa\xea\x0a\xb2\xdc\xde\x86\x82\xf6\x4d\x41\x01\x09\x15\xd1\x5a\xec\xaa\x07\xa3\x8c\x2c\x88\x04\x5a\xbd\x27\xb4\x67\xd4\x91\x51\x10\x72\x8c\x1c\x55\x29\x42\xc8\x88\x7b\xe9\x82\x2c\x45\x55\xd6\x52\x15\xb5\xb7\x9e\x91\xa7\x2a\x6a\x5f\x02\xad\x02\xad\x2e\x51\x95\xa7\x81\x48\xb4\x16\x8c\xd8\xe8\xc9\x28\x29\x84\x67\x63\x11\xd8\x09\x42\x81\x8d\x81\x4e\xec\xe8\xc4\xc0\xc6\xc0\x5f\x82\x72\xf1\xd8\x8a\xc7\x96\xb2\xac\xc3\x76\x0f\xe5\x7f\xd9\xc2\x6d\x31\xdc\x92\x33\xa6\x99\x76\x90\xee\xbf\x5c\x60\x4c\xb8\xad\xf8\x38\x8c\xc5\x45\xbf\xbf\x01\x00\x00\xff\xff\x42\x42\x4b\x36\x0e\x03\x00\x00"); +func _dagf ()([]byte ,error ){return _gb (_cgf ,"Adobe-Japan1-0")};func _dgef ()(*asset ,error ){_bbgg ,_gdac :=_fbbc ();if _gdac !=nil {return nil ,_gdac ;};_bdaf :=bindataFileInfo {_ee :"UniKS-UCS2-V",_ffd :737,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493030,0)}; +_bcfc :=&asset {_da :_bbgg ,_dc :_bdaf };return _bcfc ,nil ;};var _dgb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x5f\x6b\xe3\x46\x1b\x05\xf0\x7b\x7d\x0a\x5d\xee\x7b\xb1\x6f\xe6\xf9\x33\x9a\x19\x10\x0b\x65\x97\x85\xb0\x6c\x5b\x92\xd2\x5e\x3b\xd2\x38\x18\x1a\xd9\x38\xce\x45\xbe\x7d\x39\xcf\xb1\x53\xe8\x45\x70\x7c\x22\x3d\x12\xbf\x93\xd1\xe8\xee\xeb\xfd\xb7\xfb\xed\x70\x19\xef\x7e\x3f\x1f\x97\xc7\x7e\x19\xf7\x87\x6d\x3d\xf7\xd7\xe3\xdb\x79\xe9\xe3\x53\x7f\x3e\x6c\xc3\x20\x3a\xae\x87\xe5\x72\xfb\x1a\x1f\xcb\xcb\xee\x34\x0c\x38\xff\xf1\xfd\xf5\xd2\x5f\xee\xb7\xfd\x71\x34\x1e\xb7\xbe\x9d\xae\xc7\x8e\xe3\xdd\x43\x7f\x3e\xbc\x5e\xce\xef\xe3\xa7\x5f\xd6\xe3\x53\xff\xdf\xb8\xf6\x3d\xf2\xdf\xce\x6b\x3f\x1f\xb6\xe7\xf1\xd3\x8f\x87\x8f\xf0\xf1\xed\x74\xfa\xbb\xbf\xf4\xed\x32\xb6\xc8\xfa\xb6\xc6\xe7\x70\xf7\xf5\xe7\xee\xf4\xeb\xee\xa5\x8f\x77\x31\xe7\xf3\x8f\x87\xcf\x3c\x24\xfe\xf2\x67\x3f\xbf\x1e\x8e\xdb\x28\xff\x4f\x49\xff\x8d\xff\x78\x3f\xf5\x51\xae\x13\xfe\xfa\x79\x5c\xfb\x98\x6e\xf3\xee\xbf\x7d\x3d\xbe\x6d\x97\x51\xb5\xb6\xc2\x50\x78\xdb\xcb\x71\xed\xaf\xa7\xdd\xd2\xcf\xbb\xed\xb9\x0f\xe3\x38\xa7\x94\xd2\x97\x71\xce\xed\xfb\xf7\x2f\xb8\xa7\xff\x1c\x31\xb4\x74\x3d\xf3\xb0\x32\xb9\x9d\x91\xd2\x7e\xff\x65\x4c\xc3\x9c\x84\xdf\x05\xdf\x35\x4f\xc3\x9c\x94\x89\x22\xc9\xa2\xc3\x9c\x8c\x89\x21\x29\x53\x1d\xe6\xe4\x4c\x1c\x89\x24\xf5\x61\x4e\x99\x51\x8e\x48\x2b\x66\x4f\x8c\xa6\x88\xb2\x61\x78\x61\x54\x22\x2a\x0d\xd3\x2b\xa3\x1a\x77\x90\x1c\xe3\x1b\xa3\x16\x91\x25\x8c\xdf\x31\xda\x5d\xef\x13\xe3\x9f\x18\x3d\x45\x54\x05\xe3\x17\x46\x0b\x22\x4b\x05\xe3\x57\x46\x6b\x44\xa6\x18\xdf\x19\xf5\x88\x72\xc5\xf8\x3d\xa3\x7d\x44\xd5\xd3\x30\x0b\xa5\x24\xa4\x3c\xb5\x69\x98\x85\x58\x12\x58\x6e\x59\x87\x59\xa8\x25\xa1\xe5\x53\xaa\xc3\x2c\xe4\x92\xe0\xf2\x3a\xf9\x30\x0b\xbd\xc4\xaf\xa6\x18\x4f\x2f\x09\xaf\x6c\x05\xe3\xe9\x25\xe1\x95\x27\xc3\x78\x7a\x49\x78\xe5\x5a\x31\x9e\x5e\x12\x5e\x93\x38\xc6\xd3\x4b\xc2\x6b\xf2\x84\xf1\xf4\x92\xf0\x9a\x26\x14\x2b\xf4\x92\xf0\x9a\x1a\x9a\x15\x7a\x49\x78\x15\x41\xb5\x42\x2f\x09\xaf\xe2\xa8\x56\xe8\x25\xfd\xda\x3f\xc6\xd3\x4b\xc2\xab\x34\x54\xab\xf4\xd2\xf0\xaa\x82\x6a\x95\x5e\x1a\x5e\xd5\x51\xad\xd2\x4b\xc3\xab\x16\x54\xab\xf4\xd2\xf0\xaa\x0d\xd5\x2a\xbd\x34\xbc\x9a\xa2\x5a\xa5\x97\x86\x57\x73\x54\xab\xf4\xd2\xf0\x6a\x05\xd5\x2a\xbd\x34\xbc\x5a\x43\xb5\x4a\x2f\xad\xb7\xff\x55\xcc\x27\x98\x36\x66\x8e\x72\x95\x62\xba\x63\x56\xd0\xae\x92\x4c\x83\x0c\xed\xe3\x12\x34\xd3\x85\x99\xa2\x5f\x25\x9a\xae\xcc\x32\x0a\x56\xaa\x69\x67\x56\xd0\xb0\x92\x4d\xf7\x5c\x24\x09\x15\x1b\xdd\x2c\x31\x53\x74\x6c\x84\x33\x61\x96\x51\xb2\x51\xce\xf4\xb6\xc0\xd2\x30\x1b\xe9\x2c\xe8\xc4\x12\x6a\x36\xda\x19\xd7\xa6\x19\x7a\x36\xe2\x19\x17\xa7\x65\x14\x6d\xd4\x33\xae\x4e\xab\x68\xda\xc8\x67\x5c\x9e\x9e\x50\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\xcf\x28\xdb\xe8\x67\xf4\xf3\x8a\xb6\x8d\x7e\x46\xbf\x2c\xa8\xdb\xe8\x67\xcb\xed\xa9\x80\x6b\xd0\xcf\xe8\x97\x27\x14\x6e\xf4\x33\xfa\xe5\x8a\xc6\x8d\x7e\x46\xbf\x49\x50\xb9\xd3\xcf\xe9\x37\x19\x3a\x77\xfa\x39\xfd\xa6\x09\x9d\x3b\xfd\x9c\x7e\x53\x45\xe7\x4e\x3f\xa7\x5f\x11\x74\xee\xf4\x73\xfa\x15\x47\xe7\x4e\x3f\xa7\x5f\x99\xd0\xb9\xd3\xcf\xa7\xdb\xa3\x0c\xd7\xa0\x9f\xd3\xaf\x0a\x3a\x77\xfa\x39\xfd\xaa\xa3\x73\xa7\x9f\xd3\xaf\x4e\xe8\xdc\xe9\xe7\xf4\xab\x0d\x9d\x3b\xfd\x9c\x7e\x4d\xd1\xb9\xd3\xcf\xe9\xd7\x1c\x9d\x3b\xfd\x9c\x7e\xad\xa0\x73\xa7\x9f\xd3\xaf\x35\x74\xee\xf4\xf3\x3d\x9f\xb5\x8a\xce\xf3\x75\x0f\x49\xb7\xe7\x6f\x1a\xe6\x4c\xbf\xcc\x5d\x21\x15\x74\x9e\xe9\x97\x95\x59\x43\xe7\x99\x7e\x39\xfc\x54\x14\x9d\x67\xfa\x65\x67\x96\xd1\x79\xa6\x5f\xce\xcc\x0a\x3a\xcf\xf4\xcb\xe1\xa7\x9a\xd0\x79\xa6\x5f\x2e\xcc\x14\x9d\x67\xfa\x65\xee\x0f\x9a\xd1\x79\x6e\xd7\x7d\xaf\x24\x64\xa5\x7a\xec\x7e\xb7\x5d\x0e\xbf\xe3\x3d\xe0\x63\x6f\x5e\xde\xce\xe7\xbe\x5d\xe2\x2d\x20\x36\x60\xec\xab\x87\xad\x7f\xbc\x51\x9c\x8e\x27\x9c\x15\x3f\xff\x04\x00\x00\xff\xff\x4b\x3b\xc9\x6a\x7d\x08\x00\x00"); +func _fbbc ()([]byte ,error ){return _gb (_agfac ,"UniKS-UCS2-V")};func _ggc ()([]byte ,error ){return _gb (_cfg ,"Adobe-CNS1-1")};func _ebdf ()([]byte ,error ){return _gb (_beg ,"CNS1-H")};var _afgf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x5b\xcf\x2f\x3d\x92\xdd\x07\xde\xd7\xa7\x78\x2e\x35\x17\x33\x9d\x3c\x93\xc0\x8b\x0d\x8c\x0e\xad\x69\x08\x1a\x1b\x96\x4f\x80\xe1\x8b\x3c\x30\xdb\x05\xb8\xab\x1a\xd5\xad\x0b\x7d\x7b\x83\xbf\x15\xc9\x68\x0b\x32\xde\xda\xc0\xc6\xc3\x3f\xc9\x4c\x32\x23\xc8\xe0\x5a\xc1\xd3\xdf\xfc\x9b\xbf\xfb\xb7\x7f\xf7\xa7\x3f\xfe\xf3\xcf\xdf\xfc\xf7\x7f\xf9\xf3\xfd\x9f\xe6\x3f\xff\xbc\x7f\xfc\xd3\xf3\x97\xf9\x4f\x7f\xfe\xcf\x7f\xb9\xe7\xcf\x35\xff\xfe\x8f\x7f\xfa\xc3\x1f\x42\xfc\x79\xfe\x78\xff\xf3\xf7\x93\x3f\xf7\x3f\x9c\xff\xf8\x87\x3f\xac\xe7\xff\xd3\x7f\xf9\xa7\x7f\x9e\xff\xf0\x77\x7f\x7a\xff\xfc\x93\x94\xef\xf9\xcf\xff\x68\x79\x7f\x7e\xfe\xe6\x7f\x98\x7f\xff\xc7\x7f\xfa\xe7\xbf\xfc\x97\x9f\x7f\xf5\xff\x7d\xfe\x7c\xcd\xff\xd7\xcf\x33\xdf\x15\xff\xdf\xfd\xe5\x99\x7f\xf9\xe3\x9f\xfe\xfe\xe7\x5f\xfd\xfb\x7f\x1d\x76\xec\x7f\xfa\xcf\xff\xf8\x8f\xff\xe7\xfc\x87\xf9\xa7\x7f\xfe\x29\xc4\xcd\x3f\x3d\xfc\xfd\xc3\xdf\xfc\x9b\xff\x78\xfe\xe3\xff\xff\xfc\x87\xf9\xf3\x37\xff\xfe\x5f\xff\x87\xf8\x1f\xfe\xdf\xff\x3f\xe2\x89\xfe\x9f\xe7\x5f\xfe\xe9\x8f\x7f\xfe\xd3\x4f\xf8\xff\x1c\x47\xf7\xe8\xff\xf1\xbf\xfc\xe3\xfc\x09\xf6\xf8\xff\xfa\x3f\xfd\xdd\xbf\xfd\xf9\xdf\xc2\x4f\x38\x7e\x62\xc9\x65\xfc\xef\x16\xff\xbf\xfc\xc7\x3f\x3f\xf3\xe7\xd0\xaf\xa4\x7a\xdf\x7f\x7e\xe6\x3f\xfd\xe3\x79\xcf\xbf\x9c\x7f\xfa\xfb\xf9\x87\x9f\x9f\xdf\x8e\xe3\xd7\x8f\xfe\xfd\xd6\xfe\xf6\xd7\x8a\xe9\x21\x1d\xeb\xff\xaf\x9f\xdf\xfe\xf6\xdf\xa5\xb1\xfe\x5b\x7c\xb6\xbc\xbf\xfd\xed\xbf\xfb\xdb\x7f\xf7\x6b\x7d\xc1\x7f\xf5\xbe\x3f\x04\x15\xf3\xa7\x3f\xff\xf3\x33\x5f\xc5\x51\xc2\x6f\xe1\xfd\xf5\x13\xd6\x13\xff\x32\xe9\x0f\xe1\x38\xac\x5e\x7f\x7c\xee\xff\xe3\xfc\xcb\x1f\x54\x78\x4e\xf5\xd7\x4f\x8c\xa9\x64\x22\xc6\xfa\xbf\x22\x72\xee\x16\x71\xa5\xf8\xeb\x27\x87\x1a\xf7\xef\xf4\xeb\x27\xb7\xa3\xed\xdf\x79\xfd\x8e\x9e\x5e\x48\x1f\xfb\x77\x5d\xcf\xf7\xb2\x7f\xb7\x5f\x3f\xe1\x08\x29\xec\x88\xfe\xeb\x27\x94\xe1\x2f\x1c\xbf\x7e\x72\xaf\xdf\xef\x7b\xc9\x27\xc5\xd4\xf7\xef\x40\xfe\xb8\x7f\xc7\x95\xde\x8e\xfd\x3b\xfd\xfa\x19\xdd\x93\xa9\x5f\x2d\xfb\xf7\xaa\x5f\xef\x79\xff\x5e\xf5\xeb\x6d\xec\xdf\xed\xd7\x4f\x3c\x46\xd8\xbf\xfb\xaf\x9f\x72\x04\xaf\xce\xf8\xf5\x13\xf2\xae\xfe\xb3\xaa\x17\x4b\x4e\xfb\x77\xa0\xfa\xc7\xfe\xbd\xe4\xd7\x82\xff\x46\x7e\xd9\x7f\xe7\x25\x8f\xd6\xfa\x8e\x28\xbf\x7e\x52\xda\xf2\x78\x56\x05\x43\x28\xfe\x40\xfb\xf5\x93\x47\xae\xfb\xf7\x92\x5f\x8c\xfe\xfc\x58\x15\x8e\x5f\xfe\xb9\x2a\x98\x63\x4f\xfb\x77\xf8\xf5\x13\xf3\x56\xe0\x5c\x15\x2c\x25\x7a\x7a\xfa\xf5\x93\xea\xe8\xfb\x77\xfe\xf5\x93\x72\xc8\xfb\x77\xf9\xf5\x53\x6a\xf5\xf7\xab\x7e\x5b\xc2\x73\x55\x30\xf5\x32\xf6\xef\x55\xc1\xf4\x2f\x5e\xb8\x9a\xd8\x88\x5f\x05\x5e\x2a\x58\x4b\xdd\xbf\xc3\xaf\x9f\x32\x52\xde\xbf\xe3\x7a\xbe\x7b\xfa\xaa\xe0\xd8\x2d\xf4\x5d\x15\x2c\xe9\x88\xfb\xb7\x04\x58\xf6\xef\xfa\xeb\xa7\x1e\x87\xbf\x6f\xd5\x2f\x05\x7f\xbe\xff\xfa\xa9\xa1\x7a\xfe\xa5\xe1\xd6\xad\xfe\xe3\x40\xc3\xc7\x48\xfb\x77\xa0\xcf\xf4\xfd\x7b\xd5\xaf\xa5\xb8\x7f\x27\xde\xe7\xf9\x97\x86\x7b\xf1\xf4\x42\x8b\xaa\xfb\x77\xfd\xf5\x53\xe2\xbf\x78\x7f\x5b\xdf\x53\x3d\x7d\xc9\xaf\x0d\x2f\x6f\x29\x78\x7c\xf2\x18\x18\x90\x52\x3f\x05\x8d\x80\xfc\xea\x71\xec\xdf\xab\x83\x8c\xaf\x01\x8c\xb0\xea\x17\x76\x8f\x18\x81\xfa\xc5\xdd\xa2\x46\x40\x80\x39\xb5\xfd\x7b\x75\x91\xf2\x09\x6c\x84\x55\xc1\x9a\xbf\x2e\x3e\xc2\xaa\x60\x6a\xc3\x5f\xb8\x04\x58\xe2\xf7\xbe\x88\x00\xe3\xd7\xe4\x47\xa4\x07\xd7\x7f\x91\xbe\x2a\xd8\x63\xd8\xbf\x97\x82\xe3\xa7\xe0\x11\xe9\xc2\xa9\xf8\xf3\x85\xdf\x6d\xff\x5e\x46\xac\xe7\xb1\x7f\x2f\x05\x87\x98\xf7\xef\xbe\xea\x9f\xbc\x3c\xba\xf0\x16\x50\x5a\xf5\xab\x65\x2b\x3c\xad\xfa\xa5\xbe\xeb\x97\x50\xf0\xd1\xd2\xfe\x9d\x7e\xfd\xc4\x96\x3c\x9d\x1e\x92\xfc\x7d\x4b\x7e\xc7\x96\x47\x5a\xf5\x4b\xf9\x33\x29\x23\xc9\xc4\x14\x7f\xdf\xaa\x5f\x0d\x9e\x4e\x03\x0c\xdf\xf3\x99\x0e\xd2\x42\xda\xbf\x97\x82\xbd\x81\x66\xe4\x77\x04\xff\xbd\x4c\x8c\xd7\x37\xaf\xfa\xc5\xb1\x1b\x5c\xa6\x7e\xf1\xf0\xfc\x4b\xbf\x47\x0e\xfb\xf7\xb2\x30\xe9\x33\x59\x23\xd3\x00\xfb\x6e\xe0\x79\xd5\x2f\xb5\xd8\x19\x97\x6c\x3c\xf9\x6f\x8f\x30\x63\x94\x55\xf9\xd0\x52\xda\xbf\x97\x70\xd3\x67\x6f\x47\xc1\x3e\xc6\x9a\xf7\x6f\xcc\xcf\x56\x76\x59\x95\x6f\x21\xf8\xef\xf2\xeb\xa7\x1d\x47\xdf\xbf\x97\xf9\xa9\x47\xf5\x02\xda\xaf\x9f\x31\xfc\x7d\x1d\xe1\x84\xfd\x7b\x59\x9f\xbe\x9f\xaf\x34\xce\xbe\xcb\xab\xf4\xee\xb6\x1b\x7f\x45\xb8\xdb\x5c\x8e\x4a\xfd\xb6\x35\x1b\xd5\xcc\x63\xda\xbf\xcb\xaa\x4f\xe9\xfe\xc0\xaa\xe0\x88\x9e\xa1\x21\xed\xb1\x7f\xf7\x35\x80\x24\xff\xbd\xc6\xbf\x3d\xbe\x8d\x46\x05\x5b\x3f\xf6\xef\xf0\xeb\xa7\xa5\x31\xf6\xef\xf8\xeb\xa7\xc5\xea\xf9\x57\x05\xdb\x6e\x5d\x8d\xde\x13\xa2\xff\xa6\xf7\x1c\xfe\xfc\xea\x3d\x79\xf8\xfb\x1b\xe3\x6b\xd8\xbf\x3b\x0a\x28\xfb\x37\xbd\x7b\x9b\xab\x4e\xef\xa9\xdb\x1c\x75\x14\x1c\x6b\xd8\xbf\x57\xef\x89\xfb\x7b\x3b\xad\xb3\xee\xde\xdb\xa9\x5f\xc9\x79\xff\x2e\xcb\x5a\x0c\x4f\x5f\xbd\x27\x15\x2f\x6f\x99\xc7\x3d\x5c\x8c\xae\xde\xfd\x8d\xff\xa3\xaf\xfa\xb5\xd4\x3f\x05\x0d\xf0\x43\xda\xbd\x7d\x60\x7d\x9a\x77\xef\x81\x00\xc3\xb6\xcf\x03\xfb\x18\xb7\x00\x06\x15\x3c\x8a\xff\x5e\xdd\x67\xec\xee\x3d\x84\x70\xea\xd8\xbf\x97\x00\xfb\x38\xbc\x06\xfd\xd7\x4f\x3f\xba\x17\x08\xc6\xda\x35\x3a\xe9\xdf\x3e\xc0\x9c\xd4\xb0\xc7\xb2\x7f\x47\xec\x69\xdf\xbf\xd3\xaf\x9f\x96\xb3\xa7\xaf\x2e\x52\xbe\x01\x6e\x9c\x74\x91\xb6\x5b\xd4\x49\x0b\x8c\xdd\xf3\xaf\x16\x58\xab\xbf\x0f\xfb\xd3\xe2\xfe\xbd\xfa\xb7\x0f\x40\xd7\xaa\x5f\xeb\x47\xda\xbf\x03\x03\xca\xb1\x7f\xa3\xe1\xe2\xbf\x97\x00\x57\x43\xdd\x11\x34\xc1\xe1\xbf\x57\x13\x8c\xcd\x0b\xa0\x8b\x8c\xdd\xe6\x01\x89\xb1\x44\xff\xdd\x19\x41\xfc\x05\x4b\xc7\x6d\xb7\x11\x30\x62\x4f\xc1\x7f\xa3\xe3\x3d\x24\x82\x11\x63\xc9\x71\xff\x5e\x12\x2c\x5b\x82\x02\x89\x69\x7f\x21\x20\x31\x1e\xff\xf2\x05\x58\x99\x6d\xf2\x85\x12\x7d\xc8\xbb\x35\x46\xef\x46\x08\x4a\xec\x3e\xa4\x08\x25\xc6\x7f\xf1\x7b\xa1\xc4\x18\xfc\x77\xfc\xf5\xd3\xdd\xc4\x83\x12\xdb\xd8\xe5\x81\x12\xdb\xd8\x43\x9a\x40\x62\xfe\x30\xcf\x78\x34\xc4\x6c\x4c\x02\x48\x4c\xe3\x03\x81\x03\x90\xd8\xd3\x11\xf6\xef\x41\x13\xfb\xde\x37\x65\xa5\x8b\xff\x5e\x46\x66\x83\xbc\x01\x48\x6c\x7d\x77\x2a\x40\x62\xf1\x21\x67\x0a\x65\x1f\xfe\xfc\xb2\x82\x7d\x1b\x25\x40\x62\x6f\xdb\x28\x80\x11\x7b\xca\xfe\xbe\xbe\x40\x7b\xf5\xe7\x57\x17\x59\x9d\xfc\xaf\x18\x62\x5e\x69\xff\x28\xfb\x37\x26\x7c\x57\x06\x00\x19\x43\x1f\x1e\xb1\x4c\x64\xae\xfe\xc0\x42\x40\x63\xdb\x7c\x10\x64\x6d\xbb\xb9\x81\x20\x47\xdb\x16\xe2\x95\x89\xdc\x26\xf4\xd5\x00\x19\x3d\xff\xe0\xfd\xa6\xbd\x13\x04\x19\x8e\xaf\x83\x9d\x20\xc8\x9e\x3e\x93\x7b\x1e\x92\xee\xd7\xda\x4e\x10\x64\x8f\xb9\xed\xdf\x68\xff\x93\xfe\x79\x88\xc3\x7c\x16\xe9\xac\x1f\xc0\x3a\x76\x44\x16\xad\x6b\x3b\x42\x3c\xaf\xd9\x27\x9f\x4d\x56\xd6\xeb\xd0\x2c\xc7\xd7\x07\x4f\xc6\x81\x15\x11\x76\x44\x57\x84\x35\xd2\x29\x25\xc5\x12\x91\x43\x5b\x2d\x3e\x76\x72\xf7\xa5\xed\xaa\xd6\x3e\x9f\x5f\x3f\x3d\x88\xde\xbc\x95\x3c\xab\x12\xb1\x40\xd3\xe0\x61\xb1\xae\xd6\x5f\x79\x4f\x6c\xf9\xd7\x8f\x19\xcf\xd8\xce\x95\x1f\xb9\xc4\xf6\xac\x2e\xdf\x14\x3f\x97\x3c\x13\x63\x52\xec\xcb\x3a\x0d\xac\x59\xec\x09\x3b\xc0\x8b\xc6\x41\x61\x3c\x7c\x96\xd5\x1d\xc7\x52\x48\xbc\xd7\x78\xd6\xa8\x68\xbc\x57\xa5\x3b\xe0\x24\xce\x40\xc1\x3c\x3b\x41\x7c\x1a\xf5\xe3\x5c\x2f\xcd\x85\x02\xe6\xd2\x44\xc3\x90\xc4\xf5\x65\xa3\x17\x2a\xf1\xd2\x7f\x31\x81\xf1\x6d\x4b\x9b\x49\xe1\xce\x4b\x79\xcf\x4b\x61\x81\x67\xdf\x93\x02\xe8\x80\xf1\xbd\x56\x01\x6d\xd5\x28\xe5\x43\x09\x9d\x1f\xab\x4a\xca\x94\xf2\xfa\x04\x81\xb8\x94\xd7\x5b\x43\xd4\x03\xf7\x8a\xa7\xa7\xa7\x42\x4d\x11\x4b\x2a\xf4\x30\x06\x9d\x54\x26\x9f\xbf\x6a\x91\xea\x7a\x4f\x40\xbe\xa9\x56\xde\x49\xfe\xb6\xbe\xe0\xa8\x0a\xaf\xf7\x37\xbd\x73\xe9\x35\x1c\xb9\x51\x09\x14\x32\x00\x53\xa9\x5d\x4a\xd0\x13\x37\x4f\x24\xc2\x8f\x12\x28\x7a\xa9\xaa\x07\x3a\x76\x5a\x9a\xea\x07\xe3\x46\xea\x2a\x9a\x6a\xf4\x41\x38\x12\x56\x09\xca\x23\x01\x53\xed\x81\xe0\x81\x5d\x69\x4c\x84\x4d\x61\x67\x5d\xc2\x86\x4c\xa6\xf3\xe2\x59\xca\x3a\x27\xe1\x41\xf8\x25\x4c\x9e\xeb\x20\xcc\xb3\xd7\xb9\x5a\x0e\x1a\x4f\xb4\x84\x48\x13\x4c\x2f\xef\x04\xc1\xe5\xb2\xf2\x07\xca\xca\x4d\x2d\x24\x13\x5e\xcd\x54\x63\x62\x6e\x8d\x7a\xae\x67\x73\x5f\x5d\x79\x58\x78\xae\x30\x50\x37\x8f\xc8\xb3\x95\x70\xa2\x81\xf0\xec\x58\xdd\xe3\x40\x05\xf9\x5c\xef\x0f\xb8\x12\xf2\x19\x31\x01\xe4\x3f\x19\x0c\x30\x5f\xf9\xc4\x5d\x50\x9b\x12\x68\x13\x87\x1e\xae\x08\x97\xc2\xce\xf5\x31\x8b\x60\xfc\x8e\xf5\xcc\x37\x8d\x01\x28\x94\x1f\x6a\x45\xe7\xcc\x8f\x9c\x12\x88\x2f\x3f\x2b\x53\x45\x7c\xf9\xa9\xb2\x64\x07\x3f\x56\x13\xab\x74\xc9\xfc\x74\x25\x04\x7e\xac\xf2\xb3\x04\xf8\x2c\x85\x86\xa1\xd7\xae\x8f\xcd\x28\x31\x4f\x14\xad\xf8\xb9\x94\x25\x42\x92\x5f\xda\x3c\xb6\xb8\x14\x09\x3c\x10\xa6\x7d\xd2\xab\xca\x6a\xe7\xe1\x68\x4d\x09\x32\x18\x91\xf0\xe4\x61\xe2\x69\xdc\xc2\x89\xa5\xaf\x9a\x76\x3a\x40\xe9\x17\xfd\x9f\x17\xa1\x95\xaa\xf8\x81\x71\xa2\x63\x94\x81\x93\xaa\xeb\x45\xa3\xf3\x30\x09\x4b\x2d\x4d\xe3\x7c\xb9\xb0\xda\xd8\x82\x9a\xcf\x5f\x3f\xe3\x00\x03\x56\x2a\xd4\xe8\x17\xb5\x76\xe2\xd7\xb3\x95\x02\x2a\xcd\xa7\x8e\xc1\x08\xb0\x54\x5d\x51\x7b\xc5\xba\xd7\xfb\xc4\xd6\xf0\x9e\x7b\x75\xb0\x20\x66\x53\xef\x9b\xae\xcd\xc3\xf7\xa3\x04\xfd\x58\x8d\x4c\xfc\xa5\x3e\xeb\x4d\x8d\x51\xb5\x3e\x3c\x70\x28\xfc\xf0\x05\x4b\x14\x15\x33\x27\xa8\x53\x67\xa7\x46\x94\xb6\x74\x30\x0e\xcc\x62\x7d\xf3\x0a\xd3\xe5\xdb\x32\x48\x4b\xc8\x84\x89\xef\x0a\xf3\x05\x7c\x59\x5b\x5f\x1f\x42\xa0\x57\xb5\x7c\x91\x29\x12\xbe\xe9\xb5\x95\xf0\xcb\x4b\x57\x61\x0d\xe3\x74\xd0\xe3\x5b\x41\x74\xe8\xa3\x95\x0b\x9d\x15\xc2\x37\xa2\xa3\xb0\xc2\x17\x87\xa8\x04\x6a\x0a\xbd\x6d\xe5\x55\x02\x25\xd4\x83\x27\xc8\xb4\xb4\x3f\x3a\xac\xa2\x35\x4a\xa0\xb5\xb4\x65\x9c\x86\x86\xe2\xc6\x30\x12\xd4\xb9\xdb\x32\x4e\xeb\x07\x4f\xf4\x40\x2e\x3e\x6e\xf5\xe8\x71\xa0\xce\xb6\xac\xd6\x38\x68\xd8\x6d\xb5\xa9\xf5\x80\x32\xa1\x67\x7a\x65\x5b\xe6\x6c\x25\xf0\xa5\xd8\xb3\xa4\xca\x2e\x7b\xd6\xfa\x50\xfc\xa4\x7e\xd4\x63\xd9\x83\x71\xd0\xa8\x1a\x8d\xad\xd2\xf0\xda\x50\x5d\x29\xed\x24\x0f\xc3\x75\x3b\x31\xed\xa8\xbc\x5d\xc4\xe3\x2d\x6d\x57\xa6\x60\x5a\x55\xbb\x0a\x06\x84\xc2\xae\x8b\xb1\x56\x99\x50\x03\xdd\xbc\xdd\x07\xcd\x9f\xfc\xf7\x82\xcc\x21\xd2\x8f\xda\xcd\x37\x63\x4c\xda\x2d\xfd\x28\x93\x74\xcb\x67\xd2\x22\x6b\x51\x7e\x2c\x2c\xe6\xbf\x3d\x3c\x0b\xf8\x69\x0f\x83\xbc\x34\x82\x4d\x09\x1a\xcd\xdb\xb2\x29\x43\x5e\xd7\x86\x85\xb0\x4c\x6b\xec\x1c\xf2\xbe\xb6\x35\x76\xb6\x41\xe7\x6c\x2f\x32\x15\x24\x6a\x6b\xf0\xec\x8b\xa1\xfe\x8e\x79\xeb\xb4\xdd\x46\x3b\xee\x8c\xa5\x0d\x0d\xf5\xd5\x8e\x7b\xb1\xf8\xc2\x9b\x8b\x7e\x54\x12\xc8\x74\xf1\xdd\xc8\xa3\xf3\xad\x1d\xcb\xdc\xd7\x77\x74\x75\xf5\x8e\x05\x54\x15\xfb\x83\x60\xe9\xde\x7d\x16\xc2\xbc\x47\xd0\x80\x4e\xd6\xdf\x04\x33\x53\x7c\xa5\x6f\xac\xcf\x1e\xab\xcf\x74\xb9\x0c\x47\xa6\xdd\x63\x6e\x47\xa6\xdd\x67\x5c\x67\x23\xd3\xee\x0f\x65\x7a\x95\xb0\x04\x35\x0a\xed\x9e\x61\x60\x14\x7d\x9a\xc2\x0f\x86\x5b\x61\xda\x7a\xa6\xad\x8f\xa2\xaa\x52\x44\xa5\x51\xea\x61\x06\xb8\x4c\xb5\xc7\x1a\xd1\x5b\x47\x46\x63\x99\xcc\xde\xe9\xd2\x63\x59\xae\x36\x54\x8b\xc1\x00\xc7\xa0\x39\x18\x7f\xe4\x14\x1c\x27\x5d\xa3\xe8\x1b\x4e\xc0\x4a\x51\xf8\xc5\x98\x50\xeb\x25\xdf\x5e\x69\x88\xe3\x02\x25\xd0\x33\xc6\x45\x5b\xc2\xdc\x8e\x5b\x5f\x46\xfe\x1b\xb9\x07\xc5\xd3\xb8\xf5\x9e\x9b\x3e\x09\xf6\x1d\xb7\x0a\x96\xbc\x6e\xb0\x97\x5e\x8a\x95\x14\x3e\x19\x58\xc9\x4e\xe7\x1e\x0f\xd4\x5c\xb5\x7e\xd6\x57\x8a\x46\x8f\x65\x01\x7b\x62\x34\x3b\x81\x64\xa1\xd0\xf7\x4e\x9a\xd1\x01\x31\x3a\xcb\x58\x25\x53\x8b\xb3\x08\x4b\x44\xc2\x18\x6e\x79\x64\xcf\x65\xc6\xfa\xc1\xe7\x9c\x32\x63\xd2\xc8\x59\x10\x1e\x03\xda\x09\x78\xee\xf4\xf4\x73\x41\xcc\x1e\xb1\x81\x57\x06\xf8\xd3\xd3\xaf\x65\x70\x87\x06\xc9\x0b\x8b\x16\xb1\x9f\x57\x5f\x05\xc8\x5f\x72\x2d\x85\x8c\x88\x62\x2f\x2c\x43\x44\x99\xd7\xc5\xb3\xd8\xe7\xeb\x52\x9e\x55\xa1\x0b\xd9\x45\xd0\xd6\x25\xd9\x69\x9c\xbb\x96\xec\x86\xfa\xea\x05\x34\x0a\xc8\xe5\x5a\x8d\x7f\x44\x14\x7b\xad\x11\x66\x44\x3e\xe6\xa2\xc1\x47\xd0\xe9\x35\x97\x1c\xe5\x41\xbb\xde\x03\x24\xb0\x2a\x7a\x67\x3d\x1b\x08\xd3\x10\xe0\xab\x77\x11\x8c\x68\x84\xf9\x18\xec\xc2\x4d\xab\xcb\xe8\xe0\x5e\x1f\x19\xa2\x7a\xc5\xdd\x05\x23\x0a\xe1\x89\x2d\x54\xf8\xa5\x30\x1e\x58\xe8\x7f\x3d\x40\x09\x83\x11\x16\xa5\xdd\x0c\xf9\xf2\xf6\xdf\xb4\xe5\x6e\x79\x4e\xba\x26\xf1\x80\xaf\x03\xc0\x75\x2f\xc3\xdb\x3b\xc6\xf9\x5e\xe0\xab\xd7\xae\x70\xa1\x00\xbc\xa2\xb7\x50\x28\xa2\xbb\x4f\xe0\xbf\x0a\x50\xfb\xc5\x46\xde\x0f\x88\xae\x29\x8c\x1d\xc0\xa6\xde\xd8\xc5\xa8\xd1\xf6\xc6\x2e\xc6\x23\xff\x9e\x69\xbb\x81\x58\x05\xcd\xdd\x2f\x5d\x92\x81\xe8\x69\x1a\x27\x1a\x61\xde\xac\x6f\x7d\x5a\xa1\x5a\x89\x30\xc3\x2c\x1c\xe3\x61\xe4\x0a\xf4\xe7\x67\x09\xb0\x0d\x58\xfb\x43\x53\x3a\xe8\x3d\x0f\xcd\x47\x6d\xf8\x59\xd4\x68\x04\xec\xc5\x33\xf1\x94\xc5\xaa\x04\x10\x31\x1a\x7a\xa6\xcc\xf8\x6a\x0e\x0f\x26\x3d\xd0\x33\x9e\x77\x12\x5e\x1a\x9a\xcb\xd6\x8e\x40\xbf\x9d\x45\xe1\x4c\x78\xb5\xc3\x98\x68\xac\xb3\x74\x46\x31\x85\x87\x12\x94\xeb\xc4\xa1\x40\xb8\x62\x61\xb0\xc8\xb3\x02\x25\x69\x4c\xb3\xbe\x3c\x00\xd0\x9e\xed\xa0\x88\x55\xa5\x09\x11\x19\x54\x6f\x0e\x7a\x3d\xad\x78\x0e\x35\x20\x5e\x84\xae\x3b\x16\x63\x4a\xa5\x0c\x3e\xf3\x64\x28\x48\x0a\x3f\x14\xd0\xf5\x43\x02\x5b\xdf\x39\x2f\x46\x6e\x5a\xe8\xbc\x14\x4f\x4d\x6f\x1a\x13\x00\x6d\xde\x68\x47\xd6\x76\xde\xb8\xec\x2c\x01\xa6\x8b\x61\x98\xb7\x1e\xa6\x16\x0b\x7b\xb7\x41\x53\x9f\x0c\x3c\x32\x3d\x73\xde\x7c\xfe\xca\xff\x82\x92\x13\x74\xe8\x2d\x00\xfa\x43\xf1\xab\xef\x05\xe6\xd4\xde\x52\xb0\xda\x95\x30\xef\xc4\x08\xbf\x0c\x17\x72\xdc\xbe\x95\x61\x04\xc5\xbe\x80\x9e\x88\xc6\x5f\x40\x4f\x2c\x74\xca\xb7\x03\x8c\x15\x1e\x0c\xe8\x74\xe8\x77\xe0\x6f\x2c\x2a\x6d\x20\x3b\x60\xf8\x8b\xac\x13\x32\x7d\xc7\xad\x4c\x7a\xe2\xc1\x5d\xc6\x03\x0b\x0e\x0f\x4d\x97\xbd\x17\xce\x03\x14\xf8\x2e\x79\xb5\xce\x88\xf7\xde\x74\x3e\x0d\x73\xef\xad\xc6\xc3\x37\x23\xbb\x81\xa6\xde\x65\xdb\x5b\x5f\x8d\x6a\x1c\x40\xa9\xb0\xc6\x85\x71\x40\x1f\x99\xff\x1b\x87\x51\xc0\xb6\xc2\xa0\xa1\xb4\x0a\x18\xc7\x42\x43\x23\x64\xc5\x17\xc2\x65\x85\x1f\xc8\x43\xe4\x3d\xd8\xbf\xb0\x10\xd6\x38\xa6\xde\xcf\xb3\x2f\x2d\x6d\x51\xb7\x71\xa8\xf1\xa7\x95\x27\xe4\xa5\x9b\x42\x7c\xc8\xbc\x67\xf5\xf9\x11\x32\x92\xe8\x41\x99\xe4\xe6\x48\x2b\x5c\x54\x09\x85\xe5\x02\x52\x78\x55\x28\xeb\xa5\x8c\x41\x61\x49\x71\x04\xfa\x04\xf3\x6e\x23\x48\x99\x2a\xa0\xea\x3d\xe4\xa9\xf8\x6a\x21\x9f\x23\x54\xfc\x05\xab\xb5\x8c\x50\x45\xaa\x79\xa0\x01\x4d\x54\xb0\xf9\x60\x28\x0c\xbb\x91\x96\xfd\x1b\xa1\xf1\xf5\x85\x70\x47\x35\x7a\x16\x90\x3b\x16\x80\x1d\x01\xbb\x9b\x22\xcf\x0e\x15\xdc\x7e\x0f\xb5\x8d\x00\x1c\x0e\x89\x5a\x0d\xc6\x86\xcc\x9b\x69\x3d\x2d\x12\x86\xe1\x82\xbd\x47\x38\x31\x05\x12\xc7\x79\xf1\xa9\x71\x85\x01\x70\xbd\x92\x07\x04\x9c\x25\x26\x10\x30\x98\x6a\x84\x9b\xb2\xf4\xfe\x5b\x48\x88\xf7\x3c\xd0\xfe\x41\x1e\xf0\x02\x43\xcf\x08\x18\xf1\x2a\xf5\x3c\x9a\x27\x88\x14\xf6\xa8\x83\x21\xfb\xa7\x28\x41\xb9\x2a\xa4\x5e\x99\x9a\x12\x28\x0e\xe8\x91\x1b\x55\x7a\xe4\x7d\x28\x84\x55\x3d\x04\x88\xb1\x65\xb2\x6c\x84\x45\x98\x87\x09\x9f\x61\xd5\x5a\xcc\x22\xcc\x21\x0e\x7d\xc3\x2b\x4f\xda\x0a\xc7\x4b\x04\x78\xd5\x3b\xde\x10\xe3\x05\x6c\x47\x5c\x60\x3d\x24\xc6\x88\x11\x1f\x8d\x50\x89\x70\xa6\xe7\x75\xc2\x98\xc2\x65\x0c\x46\x9c\xf2\xa4\xad\x4f\x88\xcb\x82\x77\x38\xc9\x48\xf8\x46\xda\x1a\x3a\x46\xa2\xbd\x1d\x14\x9c\x1a\x94\x11\x85\x24\x9a\x12\x8e\xe0\x91\xba\x38\xec\x7a\x67\x12\xb7\x59\x66\x61\xa4\x13\xb4\x4c\x45\xf1\xe7\x84\x14\x13\x2f\x82\xe8\x44\x65\xba\xb0\xc7\x59\x61\x41\x4a\x0a\x40\xb3\x07\x6d\x2f\x5d\x37\x0f\x17\x4a\xbb\xe8\x49\x9d\x07\x6e\x94\x30\xc8\x04\x57\x49\xaa\xdd\xc3\x38\xb5\x4c\xea\x48\x74\xed\xae\x67\x1f\x78\x6b\x25\xff\x22\xcc\x4d\xe2\x4d\x8c\x71\xa9\x2b\xac\x5a\x77\xc2\x8c\xc6\x96\xe7\xa4\x12\x5d\x09\x8c\xb4\x07\x05\x60\xa7\x21\x95\x23\xe1\x15\x6d\xd8\x8e\xb4\x98\xf7\x7a\x40\x3f\x5e\x8c\x30\x32\x5d\x5a\x0e\x29\xd2\x0a\x13\x7e\x91\x7e\x50\x3d\xd0\xe9\xa1\x4f\x78\x19\xd7\x55\x8d\x45\x8c\x5a\xd7\x5b\x51\x94\x2c\x5e\x86\xef\x1c\x45\xe1\x07\x2b\xb7\xaa\x8a\x73\xab\x35\x94\x93\xf1\xb5\x24\x64\x9d\x0b\x4e\xac\xaa\x3c\x1a\xb2\x1a\xe1\x35\x64\x25\x46\xe0\x91\x0b\xbe\x23\xba\x42\x2e\x72\x73\x04\xc2\x32\x91\x85\xf0\x4d\x4b\xa0\xe0\x82\xc6\xad\xb0\xa9\x17\x0d\x7e\xd0\xd4\xe8\x21\xb9\xe2\x61\x40\xb3\xb9\x16\x32\xd1\xa6\x32\xde\x9c\x84\xfa\xb3\xc6\x78\x34\x95\x71\x5b\x86\xae\x70\xe2\x81\x44\xd1\x8d\x37\x55\x8a\x6e\x7a\x13\xbd\x33\xcb\xb8\x75\x65\x6a\x4a\xe0\xeb\x9a\x3e\x82\x0f\xc2\xeb\x99\x12\x06\x23\x63\x02\x33\x6d\x3e\x03\x1d\xda\x20\x53\x0f\xd8\x58\xf2\x74\x19\xf7\xf6\x7b\xd6\x2d\xe3\x8a\x02\x3f\x8d\xcc\x00\x1a\x68\x29\x38\xff\x5a\xc3\x78\xe7\x8b\x91\x1b\xcb\x95\x2f\xc9\x5c\x99\x20\xf5\x45\xf2\x87\x27\x45\xac\x4f\xbe\x51\xa4\x94\xb4\xb8\xea\xc0\x81\x3c\xf0\xca\xf5\x1e\x28\x6c\x32\x8b\xb7\x30\xc9\x28\x48\x2d\xf3\x15\x05\x9f\x39\xde\xcb\x51\xe4\x59\xa5\xc1\x95\x05\x86\x86\xda\x7a\x51\x85\x16\x6e\x1b\x05\xde\xd6\xe8\x4b\xe5\x56\x1e\xde\xf3\xd0\x5a\x8b\x5e\xfa\x30\x88\xa3\xec\x82\x43\x20\x75\x85\x93\x32\xf1\x34\x4c\xba\xd2\x75\xcb\xea\x65\x23\xa1\x95\x32\x11\x51\x5d\x5f\x53\xe4\x0e\xac\x95\x70\x87\xa0\x75\xc2\xd8\x21\xbe\xb2\x82\x1e\xf3\x62\x43\xa3\x8a\xb6\x52\xeb\x56\x57\xef\x4e\x48\xa8\x55\x5a\xe2\x82\xc2\xa3\x2d\xca\x1b\x12\x58\x78\xb4\xd5\x98\x46\xa2\xb9\xb6\x05\x5c\x06\xf8\x64\x34\x46\x9e\xb6\xf0\xef\xc0\x11\xd3\x3a\xa6\xa4\x89\x0f\x80\x1e\xe4\x4b\x49\x8c\x75\x0d\x1f\x66\xa3\x7f\xe2\xc5\x68\xac\x60\x1a\xf8\x17\x06\x18\x74\x74\x7c\x66\xcc\x2a\x8e\x0e\x03\x3a\x50\x59\x6f\x7c\x3c\xa8\xa2\x2f\xd5\x84\x7c\xd0\xd2\x7b\x63\x80\x66\xe4\xee\x38\xa8\xb2\x0c\x4e\xc7\x41\x95\x54\x02\x0e\xcd\xb1\xb0\xd0\xe8\x32\xb1\xe0\x99\x7e\x2e\xd3\x9e\xb0\x00\x9d\x31\x52\x26\xbf\x33\x2e\xc0\xec\x47\xbf\x10\xb5\xc5\x33\xc0\xd0\xdd\xfa\x2d\xcb\xab\x30\x1d\x1a\xcb\xd0\x19\x17\xcb\xa1\x70\xe2\x8b\xa9\x0f\x73\x24\x00\xe1\xd1\x31\x92\x05\x75\xc8\x11\xa2\x1e\xd9\xa7\xa4\x45\x3c\xe3\x14\xab\x26\xc6\xc8\x09\x49\x1c\x84\x57\x6b\xcf\xa1\x05\x7e\xd0\xda\x3b\x61\xfc\x79\x09\x4b\x32\x2a\x2e\x4f\xac\xcd\x68\x2a\xa0\x12\xe6\x23\x11\xc4\x58\x50\x65\x30\xc1\x38\x46\x07\x9b\xea\x3d\x7d\x10\x4f\x7e\xe3\x8e\x54\x02\xa8\x82\xd7\x72\x98\x8b\x63\x10\x3e\x95\x7f\x35\x83\x71\x49\xa0\x99\xb0\x54\xc6\x7b\x2e\x54\x16\xab\x7e\x24\x2a\xa4\x07\x96\x0d\xc2\x51\x37\xc6\x45\x45\xa3\xe2\x1f\x5e\xd4\x08\xab\xfd\x51\xd1\xd5\x9e\x42\x16\x6a\x93\xef\x03\x17\xc4\x18\x38\xe7\x72\xd4\xa7\xe1\x9c\x4b\xa0\xb3\x71\x53\x3d\x10\x1c\x3e\x8e\x91\xc0\xa9\xf2\x71\x34\x89\x45\x1e\x78\x7d\x3e\x43\x79\x56\xbc\x74\x93\x15\xdf\xa9\x35\xef\x59\xe3\xd4\x48\xd8\x63\xfc\x20\x63\x99\xc1\xdf\x31\x6b\x67\xc6\x46\x62\xd0\x4f\x4d\x3d\xd1\xd7\xce\x0a\x56\x55\xfc\xd2\x61\xc8\x09\xab\x70\x56\xb9\x80\x49\xc0\xef\x54\x28\xfd\x6c\xb8\xe1\x01\x09\x67\xa3\x1f\xd1\xaa\xce\xce\xb4\x5d\xe3\xd9\x4e\x0d\x19\x00\xce\x81\x22\x0a\xf9\x07\x1d\x9e\x56\x7b\x0e\x5a\x33\xca\x3d\x07\x8d\x81\x61\xfe\xc4\xc4\xe1\x30\x1d\x27\x3c\x3f\x63\x07\x4e\xfa\x75\x50\x1e\x7a\x4b\x52\x1e\x00\x12\x7e\xf4\x71\x82\xe5\x3a\xad\xf6\x5c\x52\x1d\xf8\xbb\xc6\x39\x61\x5d\x18\xb5\x13\x4e\x9c\x33\xc6\x5b\xbe\x9c\x8c\x41\x39\xa7\x24\xb1\x1a\xc3\x85\x79\x0c\x5d\x61\x80\x34\x18\xef\x66\xb0\x8d\x18\x9a\xbb\x60\x2c\xf8\xe0\x1b\x1f\x79\xb0\xf8\x6b\x15\xd0\x0e\xfd\x50\x7f\x5f\x25\xdf\x8d\x79\x1a\xfa\xfe\xdd\x58\x20\x41\x73\xbe\x99\x6a\x3b\xe8\x83\xb7\x78\x10\x6d\xe1\x66\xba\xac\xf0\xc5\x37\xf3\x0e\x4c\xfe\x8c\xfb\xc6\x0b\x40\x23\xbc\x27\x83\xa5\x2a\x87\x59\x56\x4b\xbd\x27\x66\xb6\x2a\x7e\x99\xd3\xdc\xe9\xc0\xb7\xa6\x11\x30\xa7\x37\xf3\x9a\x2c\xbd\x1a\x37\xf6\x9a\x69\x8a\xf1\x40\x84\x32\x36\xfa\xc1\xe3\xca\xf2\xaf\xf1\x64\xc8\x92\xc5\x03\x53\x78\xf6\xc9\x93\x02\x68\x50\x0f\x76\x53\x98\xe5\xa9\x60\x16\x6a\xf1\x54\x79\xf2\x78\xa0\x0a\x4e\x53\x18\x60\x81\x95\x0b\xe3\xa1\x9d\x75\x06\x04\xfc\x21\x1d\x4f\xf3\x90\x3f\x04\xba\x3e\x9e\x35\x80\x84\x8c\x83\x73\x3c\xcc\x16\x54\x44\xf1\x30\x5b\x90\x99\xfe\x1b\x8f\xdc\xfa\xc8\xf7\xc1\x1d\x15\xc2\xd2\xc7\x43\x6b\x0c\xf4\xd3\x87\x39\x1e\x3c\xae\xe3\x39\xa5\x70\xe2\x69\x75\x01\xc5\x3e\x27\x9f\x4c\xcb\x79\x4e\x1a\x02\xad\xfd\x39\x71\x71\xe9\x2b\x2f\xf2\x1f\x0a\xd3\x4a\x07\x65\xe1\x34\xc5\x37\x30\x1e\x71\x60\x20\xe4\xa3\x49\x6d\xd5\x73\x71\x9a\x21\x6c\xf5\x30\x0e\x0b\x2a\x3d\x0f\xa8\x11\x3e\xf0\x30\x23\xa4\xd1\xed\x51\x4b\xc6\xb4\x3e\x1a\x7a\x25\x21\xf9\x43\x81\xe8\x72\xe8\xb0\x40\x7b\x3c\xb8\xe2\x85\xbe\x9f\x17\x12\x6f\x79\x26\x2b\x24\x68\x8c\x13\x3b\xce\xb4\xc4\x98\x4c\x5d\x17\x0b\xd3\x48\x81\x68\x53\xd3\x7b\xd8\xdc\xc9\xf4\x5e\x39\xe8\x36\x53\x9e\x0b\x40\xd6\x5c\x90\x73\x25\x64\x7e\xd0\x72\x10\xf5\x04\x5b\x5a\x09\x4c\x0f\x09\x54\xcd\x2a\xc7\x5f\x20\xcc\x2a\xaa\x83\x91\x78\x56\x78\xdf\x38\x7e\xcf\xae\xcd\xaa\x36\xa9\x87\x60\x05\x20\x25\x7c\x4b\x23\x80\x09\x27\x68\x0a\x6f\xec\x98\x4d\x75\xc7\x0a\x4f\x30\xa8\xb4\x35\x19\xa8\x98\x07\x1d\x93\xc1\x29\x34\xc5\xa3\xf5\x41\x75\x35\x50\x35\x04\xb2\x7a\x6d\x28\x1a\xee\x67\x57\x33\xa1\x34\x46\x2a\xd9\x82\x09\x60\x09\xb4\xcf\x39\x94\x87\x5a\xc8\xb0\xa1\x96\x79\x6a\x5e\x93\x2f\x80\x36\x17\x7a\xa1\xfc\x55\xf8\xdc\xc7\xa4\x59\x15\x9a\xe7\x84\x68\x45\x6c\xd3\xbc\xf4\x4e\xe4\xf7\x6a\x1a\x78\x85\xdf\xcc\x82\x02\x2a\xfa\x2e\x49\xf4\x8a\x51\x7c\x71\xae\x46\x46\xc5\x77\x74\x28\x37\x79\x4e\x7c\xf4\x80\xa6\xf7\x64\x74\xb5\xb0\xb0\xea\xaa\xc3\x4b\xb3\x6d\x8c\xae\xaf\x9a\x2d\xc0\xea\xa5\x79\x66\xc5\x4f\x38\x1a\x78\xf6\xc5\xd2\x64\xe0\xc4\xfb\xe2\x80\x60\x00\x7e\x69\x86\x19\x5e\xf2\xaa\x19\x32\x96\x9d\x07\x38\xa3\x2c\x1c\x73\x1e\x38\x1f\xf3\x6a\x0b\xe7\x21\x54\x96\x15\x66\x9e\x60\x35\xaa\xf3\x60\x2a\x05\x94\x78\x1e\xb8\x56\x8e\x55\xd1\xf3\xa0\x51\xb1\xbc\xf8\x3c\xd4\xa8\xd2\x92\xc4\x79\xd0\xa8\x72\x22\x41\x43\xda\x1a\xbd\xcf\x83\xb5\x02\xac\xd0\x3c\x8f\x2e\xc7\x02\x61\x34\x59\x2c\xcc\xa4\x71\x50\x98\x66\xce\x64\xef\x79\x0c\x3c\x74\x81\x02\x00\x23\x10\xe8\xf3\x00\xfe\xa7\xc1\xd7\xc8\x4b\xa8\x1a\x3d\xf8\xb4\x3b\x35\x7d\x26\xde\x00\x9e\x05\x9f\x32\xe3\x76\xb2\xa2\x25\x46\x06\xc7\x73\xac\x21\x24\x1c\x28\xe7\x1c\x94\x06\xa5\x3f\x4f\x4c\x70\x5d\x0a\x3c\x4f\xc9\x65\x61\x85\x53\xa3\x75\x5b\xfd\xfc\x3c\x41\xab\xa5\x54\x32\xe1\x7b\x0e\x41\x99\xe4\xf5\x1d\x84\xe5\xab\xd5\x03\x38\xf5\x07\xf9\x71\xb9\x77\x0b\x5f\xbc\x68\xf5\x8f\xf3\x1c\xf4\x89\xa0\x04\xba\x36\x82\x61\xec\x5e\x99\x2a\x3f\x10\xc0\x6a\xe3\xe7\xb9\xa0\xee\x4a\x58\x45\x5c\xcc\xfa\x1d\x0b\xe3\x9c\x17\x3a\x8f\x6b\xec\x3b\x99\x4c\x09\x5a\x18\x7f\x5e\xc0\x72\x96\xc1\x9c\x97\x66\xfd\x0e\x65\x6a\xca\x14\xf8\x81\xb1\xa2\x65\x30\xfd\xd2\x6b\x56\x3c\xc3\x31\xfa\xb9\xb2\xea\xb7\xf2\xdc\xbc\xa8\xae\x81\xf0\xbc\x85\xe9\xa9\xf7\x4d\x1f\x4f\x14\xa6\xc9\x8b\xc2\x7b\xee\x01\x82\xb6\x30\x8d\x64\xd9\x81\xf3\x61\xaa\x07\x0f\xf8\xf9\x60\xce\xd2\x32\xa4\x27\xe3\xdd\x80\x7e\x9f\x36\xde\xa1\x5b\x1c\xfd\x83\xc1\xf2\x7c\x20\xa2\xf9\x77\x17\x67\x9f\x0f\x36\x85\x75\xc0\xe7\xd3\x01\x48\xab\x5f\x9d\x1a\xc2\xd2\x1a\xce\x4e\x19\xdf\xb4\xe0\xc2\x89\xfd\x6c\x8d\xd6\x2a\x07\x3a\xb0\xfe\xc4\x68\xb5\x96\xc9\xdf\x35\xe2\xaf\x0a\xce\x21\xa7\xe0\xaa\xf8\x3c\xe1\x9e\x0b\xec\x9d\x72\x2d\xe3\x8a\x3e\x5f\x0c\x61\xe5\xd9\x57\x2b\x67\x16\x08\x3c\xdf\x2e\x6a\x41\x1e\x66\xca\x59\x10\x7e\xbe\x4c\x50\xb0\x2c\xe3\x7c\x99\xe1\xa9\x40\x8d\xf3\x95\xa7\x91\xbe\x8a\x67\x79\xd4\xa2\x4c\x90\xe4\x65\x24\xce\xf7\xd4\x03\x8b\xd3\x5f\x47\xb6\x1f\x83\x1f\x89\x1f\x4b\x71\xd7\xc1\x34\x55\xcd\x4a\x78\x09\xe7\x15\xc6\x03\xdb\x0a\x4f\x83\x70\x81\x60\xd7\x81\xef\xa3\xae\x46\x72\x1d\x45\xeb\xc9\x94\xe7\xe4\xa5\x4b\x00\xd7\x51\xf4\xa1\x85\xf0\xad\x04\xe5\x02\x61\x14\x95\x30\x95\x40\xd1\x78\x45\x6a\xe3\x89\xaa\xd5\x65\x81\x30\x56\x4c\xd5\xc3\x5b\xc2\x72\x89\xeb\x60\x70\x62\x61\xd3\x75\x68\xad\x5c\xa0\xe4\xa6\x97\x76\x12\x18\x23\x6a\xa5\xb4\x65\x9f\x43\xc5\x6f\x7e\x1d\x60\x15\xbc\x48\x17\xbe\xe9\xce\x6a\xc4\x4b\xbe\xe9\xca\xfa\x8a\x0b\xdf\x74\x67\x11\xc6\x15\xc0\x64\x35\x2c\xe6\x71\x05\x71\xd9\xca\xd3\x38\x05\x31\x88\x17\x0e\xec\x95\x49\x09\x8c\x0d\x7c\x1c\x6e\xdd\xc1\x26\xa9\x2b\x4a\x13\xcc\x2f\x5c\x31\xaf\xc6\x97\xf9\xa2\xc8\xd0\xcb\x20\x76\xc5\x0a\x1c\x5c\x3d\xe8\x62\x85\xe0\xc0\x2e\x5f\x2c\xfe\x1b\x79\xd9\xf4\x2b\x42\xed\xc0\xa4\x57\x1c\x5a\x53\xb0\x9e\x4d\xd8\x00\x7d\x27\xae\xc9\xc1\x4a\x98\x2b\x31\xf3\x95\x91\x24\xae\xc9\xc1\x92\xea\x8b\x65\x67\xa1\xb2\xfe\xf9\x4a\x70\x44\x76\x43\x5d\x59\x73\xeb\xab\xcb\x5d\xf2\x78\x31\x2a\x5d\x78\xb3\x46\x5e\xad\xf8\x32\x67\x16\xcd\x2a\x57\xbe\x0c\x96\x7b\x65\x46\x8d\x38\x48\x00\x7b\xf6\x45\x72\xaf\xdc\x78\x78\x71\x99\x2b\x77\x06\x10\xf4\x9c\xf9\x9a\x4c\xb3\x62\xc1\xd8\xc8\xab\x0b\x5c\x45\xe2\x62\xb5\xe0\x55\x96\xb8\xb4\x94\xfd\x2a\x9a\x52\x58\x7d\xec\x2a\x60\xa3\xc0\x17\x14\xb8\x43\x5e\x64\xf3\x2a\xac\xaf\x61\xbe\xf7\x2a\x45\x0d\x86\x3c\x18\x16\xfc\x0c\x57\x19\xb8\x29\x93\xc2\x1a\x87\x57\x9e\xba\xf4\x37\xb0\xd6\x57\xb5\x19\x88\x46\x18\xb0\x7d\x28\xcf\xa9\xcd\x0f\x81\x1f\xf2\xb9\x17\xc2\xe2\x0b\x4b\x5c\x2d\x8b\x0a\xac\x2f\x6b\x85\x0f\x40\xaf\x8d\xa9\x0c\x3c\x8d\x57\xa3\x65\x37\xe5\x67\xc5\x22\xdb\x53\x2e\x96\xf5\xf4\xf6\xbb\x6e\xb6\xab\x31\xfe\x14\xc4\xdd\x9a\x4c\x25\x2f\xc6\x72\xd5\x83\xc2\x3b\xcd\x13\x33\x73\x69\x99\x8f\x6a\xd5\x69\x31\x95\x5a\xd9\x5a\x91\x85\x9a\x2f\xad\x15\xa9\x2d\x29\x81\x05\x0f\x0b\x12\x5c\x3d\xab\x17\xaf\x12\x3a\x8e\xd4\x40\x07\xe8\x45\x0e\xd9\x4c\x98\x91\x2f\x28\x0f\xdd\x0a\x9f\xca\xd5\xcd\x04\x28\x8c\x6c\x0e\x3d\xfc\x2a\x13\x4f\x54\x88\x7b\xa0\xe4\xf5\x6d\xbd\xd0\xac\x3a\xe6\x3e\x20\xe4\x21\x77\x2e\x8d\x78\xa0\xd1\xc6\x8b\x86\xe8\x0d\x35\x1a\x43\x64\x85\x3c\x58\x65\xd6\x48\x5e\x27\x9c\x0c\x97\xe3\x75\xca\x1c\xb2\x20\xf3\x3a\x31\x87\x92\xd1\x89\xa3\xad\x22\x54\x16\x3f\x74\xd6\x50\x5f\x27\x0b\xaf\xf0\x7d\x5d\x67\x3d\x09\xaf\xca\x9d\x02\x3e\x7c\xc0\xd9\xf5\x9e\x4a\x18\x39\x0e\x6a\x74\x8a\x9e\x36\x5e\xca\xf4\x62\x1d\x34\x6e\x18\xff\xc0\xbf\x74\x9d\x2c\x05\x65\xd7\xe9\x25\x06\xcf\x62\xe7\x4b\x20\x20\x46\xf2\xcb\xbe\xe3\xb7\xb9\x04\x02\xc0\xed\x17\x43\x77\x63\x9e\xf2\xba\x8a\x5e\x5a\x08\xaf\x06\xca\xd6\xcc\xeb\xd2\xc2\x03\xba\xd8\xc5\xe7\x74\x4c\xef\x85\xff\xa2\x1d\x3c\x8b\x0f\x8a\x95\x3c\xd7\xb5\x8c\x53\x68\x60\xae\xeb\x62\x2c\x8e\x96\x69\x28\x41\x4f\x33\x79\x36\xa8\x05\x8e\xc6\xbe\xb0\xf4\x75\xd3\x97\x64\xa0\xe1\xfc\x6d\xac\x21\xea\x82\xe7\x77\xf6\x72\x5e\x37\x1a\xec\x7c\xc1\x0d\xcc\x6c\xc0\x95\xeb\x06\x66\xb2\x3d\xec\xba\x57\x3f\x59\x09\x83\x1f\x2c\x07\xe5\x3b\x6f\x7c\x2d\xda\x37\x75\xdd\x58\xd2\x46\x57\xbf\x6b\x57\x82\x72\xb1\x2e\x24\xab\x0c\xcd\xb5\x2a\xd3\x54\x26\x95\x81\x75\xc7\x70\xdf\xed\x50\x02\xb9\x80\x38\x91\xf6\x76\x37\xd5\x50\x9f\x84\xdb\x92\x25\x96\xd7\x4d\x1b\x38\x54\x73\x38\x50\xa4\x3b\xdc\x74\x4a\x99\x25\xbc\x15\xbd\xd2\x7e\xee\x05\x16\xd7\x8b\xf4\x00\x13\x8e\x49\x99\xe4\xad\xa3\x1a\x74\x56\xd6\xff\x5c\x77\xd7\x6a\x5a\x6a\x41\x23\x93\x16\x6f\x1a\x59\x63\xe3\xd3\x25\x1f\x48\xc6\x9e\xdc\x34\xb2\x06\x80\xbf\x6e\xcd\x61\xeb\x1b\x58\x87\xcc\xce\xac\xeb\xee\x4c\x0c\x4b\x13\xa0\xa3\x68\xf1\x38\x47\xf4\x52\x06\x99\x8a\xa6\x6f\x5c\x4c\x38\x4c\xaf\x1b\x00\x12\x8b\xf2\xc0\x46\x10\x85\xf9\x3d\x16\x5b\xbb\x9e\xcc\xea\x1c\xcc\xfe\x93\xa5\x44\xd4\xf0\x00\x4c\xe3\xef\xee\x7c\xb8\x9e\xcc\x12\x1d\x86\x6c\x01\x46\x75\xb4\x27\x4b\x80\x0c\x47\x8f\xc6\x72\x2b\xe6\x56\x82\x72\x69\x49\xa8\xea\x22\x6d\x67\xbd\xea\x65\x1e\x62\x7d\xec\xb3\x60\xce\x88\x0c\xd3\x4f\x51\xbb\xc1\x4c\x3d\x74\x7e\x29\xfb\xa1\x57\x68\x5c\x7f\x70\xea\xa9\x6d\x3d\xd6\xf6\xc9\x5f\x99\x06\x6b\x0a\x6b\x91\x09\xf9\xad\x39\x49\x24\x5a\x7d\x96\x95\x00\x51\x6d\xd4\xbb\x69\x5a\x5b\x61\xc4\x5c\x29\x40\x4b\xcb\x55\xeb\xae\x17\x75\x5e\xd4\xb5\x8e\xba\x10\xc6\xc7\x90\x78\xa0\x4b\x32\x18\x08\x41\x5e\x26\xda\xae\x07\x88\x09\x41\xbb\x58\x03\xb3\x32\xf1\xf4\xc2\x98\x03\xef\xd4\xf5\xd8\x22\x22\xbe\x99\xc9\x01\x76\x94\x5e\x0f\xd3\xd2\x61\xd1\xa4\x6b\x32\x70\x40\xbe\xae\x29\xad\xe2\x16\xb8\xa6\xb4\xda\x94\x49\xe6\x48\xf1\x2c\xe4\x5a\x64\xf5\x9a\x0c\x1c\xc2\x88\xb8\x43\x46\xc4\x0e\xe2\x0e\xe9\x4c\x99\x5c\x00\xf2\xd0\xa2\x1e\x2e\x7a\xa9\x12\xa0\x89\x55\x0f\x50\xbb\xde\x09\xe3\x36\xcd\xca\x03\xc8\xeb\x2a\x8c\xf5\x01\xbd\x11\xe6\xf3\x9b\xde\xf9\xf2\xc5\xeb\xcb\x26\x63\x4e\x07\xef\xe0\x49\x59\x05\x2b\x81\x95\xcf\x49\x61\x1a\x32\xe3\xc0\xac\x5a\x35\xa7\x30\x4d\x12\x35\xe3\x38\x19\xb8\x6a\x2e\x1c\x27\x3d\x30\xe8\x68\x4d\x4e\x44\xa4\x53\x7e\x5f\x9a\xc8\x6c\x5a\x11\x46\xc1\x8d\x76\xc7\xee\xe1\x6b\x36\xbd\x94\x2f\x6b\x7a\xa9\x1e\x66\xf6\x59\x62\x6c\xfa\x1a\x5e\xd4\x35\xb5\xa0\x30\x7c\x64\x28\x5c\xf4\x52\xfd\x60\x8a\x5a\xb2\x86\x14\xb1\x43\xe5\x9a\xdd\x4a\xa6\x84\x2e\x6f\xac\xc2\x94\xdc\xf5\xc0\x43\x26\x4c\xce\x64\xc1\xbf\x70\xfa\x64\x31\xda\x21\x45\x0d\xad\xca\xa1\xb4\xa1\xad\x28\x7c\x02\x0b\x65\x1a\x6b\xfd\x2e\xf9\x6f\xa2\xb4\x83\xef\x84\x65\x70\xd7\x1c\x43\x99\xf4\xb4\x06\x08\xaa\x01\x65\x6e\xea\xf5\x53\x36\xa7\xab\x38\x74\xd8\x28\x82\x41\xb1\xa9\x0f\xbf\x59\xe8\x37\x13\x66\x3a\x16\x28\x83\x3b\x67\xe0\x76\xbe\x5e\x28\x0f\xbb\x1f\xaf\x97\x85\xa5\x6c\xa1\xb9\x5e\x35\x36\xaa\xca\xaa\xa1\x11\xe9\x47\x6f\x05\x44\xf0\xcd\xaf\x35\x12\xbd\xa8\xd2\x84\x69\x61\xaf\x1a\x09\xfd\x02\xfe\x37\x62\xff\x3d\x82\x7a\xbd\x8c\xaa\x35\xab\x14\xa6\xef\x30\x76\x6f\xa3\x44\x20\xf6\xdb\x54\x22\x5a\x7d\x1b\x25\x82\x50\xdf\x26\x9a\xa4\x30\x6e\x7b\x7d\x12\xb8\xf0\xcb\x2f\x05\x0f\xbd\x09\xf4\xd9\x94\x40\xaf\xc4\x04\x88\xa2\xb6\xa0\x92\xb5\x3a\x31\x11\x46\xf1\xec\x2b\xbd\x5e\xb5\x39\x09\x16\x44\x26\x9c\xfc\x5a\xfb\xe3\x45\x00\x7a\x08\xfe\xf5\x76\x15\x80\x6c\x58\x39\xc5\xd6\xbc\x4b\x2b\xa7\x5a\x52\x69\x18\x19\x16\x3c\x5d\x38\xd3\x7a\xa6\x47\xb0\x58\x6a\x50\xf0\x0d\x8d\xed\xb0\x84\x5b\xc4\x15\xc7\xdd\x7d\x60\xf7\xf3\x52\xc4\x7d\x64\x01\x7a\xe5\x61\x4b\xcd\x6a\xdf\xf7\x21\xb3\x0f\x8b\xbf\x0f\x51\xb8\x65\x4b\xee\x03\xb5\x73\xa0\xc2\x7d\xb0\x06\x89\xbd\x75\xf7\x81\x51\x4a\x87\xf2\xe0\xd3\x0d\x14\x56\xb4\xe0\x53\x61\x9c\xd2\x4b\x51\xf7\x21\x5b\x32\x28\xb8\xea\x9d\x0a\x4b\x12\x83\x30\x36\x19\x57\xd4\x7d\x54\x0d\xb4\x3c\x5c\x6f\x25\x50\x1a\xd8\xa4\xae\x2e\x7a\x1f\xc2\x51\x55\xe1\x57\x99\xa8\x1e\xed\x82\xc9\xeb\x5b\x2e\x37\x4e\xd9\xb8\x0f\x50\x47\xb7\xb0\x04\x5c\x28\x5b\x66\x26\x51\x82\xda\x42\xaa\xca\x85\xff\xe5\x40\x7a\xe8\x1c\x17\xe8\x7d\x30\xc8\x43\x06\xef\x63\xa8\x7e\x03\x29\x0d\x89\x75\x85\x21\xc0\x8d\x5d\x48\xb7\x56\x6d\xb1\x64\xe9\x0e\x30\x43\x5a\xe7\x1d\xaa\x68\x6b\x23\x4c\x13\xce\xcb\x6a\xde\x2c\xcf\x1a\xec\x35\xbb\x03\xf5\x6e\x7a\x91\xed\xc8\x22\x0f\x16\xa4\x2e\xcb\x72\x47\xb8\x54\x5e\x70\xec\x8e\x40\xd5\x5a\x15\xe6\x3b\xe1\xaa\xb7\x88\x74\x5d\x26\xfa\x66\x1b\x5d\xcf\x6b\x6c\xb8\xb5\x8d\xae\xb1\x2d\xf6\x8e\x9d\xc9\xf8\xd5\x0c\xef\x88\x5f\x8a\x95\xbd\x77\x94\x1b\x07\xe9\x45\x4a\xce\x5d\xf1\x38\xcd\xa2\xc2\x20\xaa\x52\xf5\x30\xfe\x90\x4a\x09\xda\xe6\xb2\x86\xf4\xdb\x28\xb9\x0a\x93\xe9\x2a\x55\x3f\xf0\xd7\xac\x51\xe0\x8e\x27\xf3\xcb\x6b\xd4\xb8\xd9\x0a\xd7\xd5\x1a\xc4\xe1\x0b\x6d\x38\x69\xf5\x2a\x32\x4a\x00\x3e\x76\xbc\xdd\x89\x81\x98\x6d\xd3\x77\xce\xda\x81\x94\x08\xc3\xed\x03\xe1\xa2\xfc\x8d\x30\x7b\x62\xf9\x32\x16\xad\x74\x56\xb0\xdd\xb9\xb2\x38\x97\xe6\x99\x35\x03\x49\xa5\xb5\x0c\x84\xc5\xab\x77\x16\xde\xc0\x5f\x7b\x6b\x1d\x08\x13\xaf\x77\x1e\x10\xda\xdf\xdd\x7a\x75\xb3\x21\x6c\x48\x73\xf0\xfb\xae\xb6\x97\xe9\xe9\x31\x52\x5b\x99\x7e\x8e\x16\xb9\xf3\xd0\x94\x13\xd5\x92\xfc\x38\x55\xe1\xce\x43\xdf\xb7\xe4\x51\x60\xab\xcc\x2c\xdc\x05\xb6\xaa\xcd\x8a\x77\x91\xc3\x9b\xc6\x84\xa7\xa0\xb3\x7b\xfa\x2e\xb6\x7d\x90\x07\xe4\xa1\x49\x0a\xb3\x40\x9b\x6f\x2a\xb8\x9c\xda\x82\x4a\x77\x61\x88\x57\x5b\x2a\xda\x4a\xb8\x0c\xf1\xad\xdd\x56\x2c\xda\xbb\x0b\xfb\xdb\x18\x2b\x6f\xbc\x09\xa3\x2d\x44\x78\xe3\x4d\x08\x5a\x6f\x7d\x6b\xa9\xc9\x41\x43\xac\xf8\x34\xc4\xd0\xee\x8a\x0b\x48\x92\xad\x5a\xb8\xd4\x14\xa6\xb7\x2e\xcb\x7d\x57\x6a\xc4\x8e\xb8\xbb\x62\xf5\xf1\x39\xde\x72\x0f\xc0\xdc\xee\x26\xa0\xb1\x86\xca\xbb\x31\x02\xb0\x3e\xe9\x6e\x18\x74\x66\x25\x6f\x36\x88\x84\xce\xa6\x8d\x5b\x3b\x44\x0e\xda\x49\xd7\x66\x25\x2a\xd1\x8b\xe6\xeb\xd6\x8b\x3a\x05\x70\xb8\xc3\xdd\x31\x44\xb2\xab\x1d\x2c\x0a\x27\xbb\x3b\x18\x82\x9d\x6a\x77\x47\xcb\x47\xa2\xb0\x25\x96\xa0\x05\x60\x77\xc7\xdd\x8b\xbb\xfb\xee\x83\xa1\x07\xcd\x76\xed\x07\xc4\x26\x0d\x55\x02\x99\xda\x1e\x0f\x5a\x82\xd6\x3f\xb0\x95\xe5\x1e\x58\x40\x2d\x91\xbd\x07\x78\x8a\x59\x8a\x7b\xa8\xe5\xd2\xa2\x07\x58\x84\xd5\xf9\xf7\x00\xd2\xea\x2b\x07\xca\xc1\x87\x7c\xe3\xe1\x1f\x1d\x65\x8a\xe7\xe3\x71\xb9\xc5\xf3\x59\xca\x7d\x9f\xda\x92\xc5\x7b\xce\xaa\x15\x06\xe4\x91\x24\x68\x44\xa7\xd4\xa1\xf7\x30\xd8\x1e\xa8\xf5\x94\xd8\x17\xa1\xba\x4f\xa0\x1b\xbb\x2e\xee\x93\x71\x54\x9c\xf7\x3e\x9b\x44\xba\xa4\x72\xd2\xc5\xb4\x25\xf3\x3e\xb5\x21\x2b\x28\xcc\x6a\x74\xfa\xed\xd9\xb5\x14\x44\x61\x4d\x44\xad\x2f\x3e\xb5\xb1\xaf\x50\x32\x2b\x01\x18\x84\x6f\xe6\x03\x06\xa8\xec\xd6\x7c\x80\x3c\x92\x37\xf3\x01\x9d\x95\xfa\x37\xf3\x01\xa1\x83\x99\x6e\x26\x04\x06\xfc\xf5\xbe\xd8\xda\xc6\x5a\xe6\xfb\x32\xcb\x4b\x9e\x22\x8d\x67\xc2\x28\x70\x81\xc3\xfb\xc2\xa1\xab\xed\x0c\xf7\x25\xcf\x20\x43\x15\x7e\x81\xc1\x04\xe7\x7d\x61\xce\x58\x0b\x70\x5f\x12\x0c\x6d\xf6\x62\xa1\x58\x53\x55\xbb\x9a\x17\x2f\x55\x93\xc2\xa6\x5e\xf8\xea\x1a\x9d\xe8\xa2\x77\x75\x56\x1a\xdd\xda\x08\x72\x50\xbb\x3b\x33\x2e\xd2\xeb\x6e\x3a\x17\xab\x8e\xee\x3b\x4b\x8e\x8a\x07\x57\x16\x85\x59\x17\x80\x66\xb5\x4f\x83\x05\xa8\xf7\x2d\xed\x97\xdf\x9b\x33\xbd\x6f\xed\xc3\x5b\xe0\xfa\xbe\xb5\xa0\x8f\x8e\x61\x1e\x06\x86\x0f\x28\xff\x38\x00\x2e\x77\x13\x17\xa1\x10\xc6\x24\xed\x5b\xbe\x6f\x69\x97\x16\x60\xf3\x23\x18\x9e\x9b\x09\x32\x6d\x54\xba\x6f\x06\x22\xf6\x69\xdd\x62\xdb\x81\xb1\x47\xdc\xad\x32\xde\x3e\x1a\x93\xe8\xb6\xcc\xe8\xf6\x8c\xed\xd0\xcc\x2d\x27\x11\xdd\x53\xed\xad\x00\x32\x26\x26\xbd\x1e\x4a\x60\xf8\x64\xa0\xd7\x6e\x01\x61\xaf\xa9\xc5\x72\x98\x57\x21\x68\x19\x27\x90\x72\x67\x4b\xf2\xfd\x6a\x72\x80\xc2\x5e\xe4\xc7\x66\xd3\x1b\x3c\x3b\xd8\xfc\x74\x03\x55\x5b\xa3\x72\x2f\x5b\x36\x3a\x33\x22\xf7\x0b\x00\xa8\x40\x0f\xb0\x6a\x63\x77\xc5\x0d\x0c\x1d\x6c\xaf\xbf\x5f\xd5\x9a\x09\x84\xfb\xa5\xd6\xec\xc1\xbd\x5f\x11\x16\x5a\xbd\xe0\x26\x47\xb4\xdc\x2f\xbe\x64\xf6\xfc\xdd\xef\x60\xfe\x00\x23\xf4\xf2\x35\xac\x5c\xb8\x99\x35\x09\xbd\xa2\x76\xa6\x4d\x06\xdb\x53\x1f\xe0\x63\x1b\xcb\x14\x3e\x20\xc3\xc6\x1e\xdc\x47\x68\x90\x13\x83\x1e\xa6\x37\x3a\xdb\xe2\x9f\xc3\x3c\x69\x91\xb0\xbc\x96\xe4\x07\xce\x33\x13\xf7\x80\xed\x42\xa7\x7d\x3e\x87\x96\x76\x2d\x0b\xf3\x30\x8b\xd1\x71\x9e\x3e\x9a\xc5\xe8\x0c\x78\x8f\xd6\xbf\x73\x58\xc6\x13\xcc\xfb\xbc\x32\x81\xa4\x5a\x5b\xda\x7f\x00\x52\x1d\x38\xff\x08\x48\xb1\xf2\xf1\x09\xac\xe8\x60\x19\xf1\x13\xf4\x52\xf6\x78\x3c\xc1\x9a\x4e\x20\xac\x29\xa7\xf1\x87\xdf\x1e\xa6\x27\x46\x5d\x48\xe5\x89\xa0\x90\xb1\x10\xc6\x13\xe5\xf2\x25\x7f\xc4\xbb\x4d\x57\x7d\x22\x54\x87\xbd\x46\x4f\xb4\xf9\x99\x4e\x58\xb0\x28\x11\xd6\x76\x07\x85\x55\x89\xa1\x1f\x2f\x46\x98\x02\x1a\x24\xfb\x68\x84\x05\xf9\x28\x8c\xa5\x27\xec\xc1\x7c\xa2\x76\x98\x2b\x6c\x24\x33\x13\x86\x64\x1e\x54\x08\x4e\xf1\xd5\x1a\x92\x89\xef\xf4\x01\x6b\x0d\xce\x10\x79\x12\xdc\x81\x75\x44\x8f\x4e\x17\xc8\x6b\x54\x78\x52\xe6\x9c\x90\xb1\x86\x82\x27\x65\x2d\x79\x52\x98\x99\x81\xc5\x0b\x1e\xd6\x81\x0f\x7a\xe3\x93\x34\x33\x40\xad\x13\x00\x0b\x47\xd4\x93\x8a\xac\xdc\x20\x7c\xf3\xd2\x42\x69\x45\x2f\x4a\x84\xf5\x39\x14\xc0\x6a\x5c\x76\x91\x3d\x3a\x83\xa0\x73\xe2\xcc\xc3\x19\x04\x03\x1f\xfc\xa3\x33\x08\xfa\xf7\x04\x73\x0c\x91\x84\x2e\x57\x28\x4f\x8b\xdf\x23\xed\xd4\x85\xe7\xa8\x86\x26\x2b\x69\xa8\xcc\xff\x84\x3e\x46\xfc\x1d\xe3\xf6\x30\x3b\xd4\xab\xbd\x6d\xea\x29\xfd\xd0\x1e\x58\x5e\xcd\xdc\xa4\x00\xca\x93\x34\xcd\x5f\x94\x10\x95\x40\xa1\x43\xcd\x89\x0a\x6b\x73\x78\x47\x19\x43\x07\x08\x0d\x25\xb0\x8b\x31\xf1\xe9\xb6\x6b\x5c\x0f\x9f\xca\xa4\xd7\xea\x53\x90\xb4\x36\x65\x4a\x1b\x74\x64\x6d\x62\x7d\xd2\xa9\xdd\xbe\xeb\x4d\x19\xe0\xa3\xcd\xa4\x4f\xce\x5a\xab\xd0\x09\x83\xe9\xd6\x00\xf1\x64\xc6\x41\xed\x13\x7d\x32\xf0\x6b\x24\x3d\xc0\xd4\x11\xed\x3d\x33\x42\xe4\x65\x2a\x1e\xad\x15\xaf\x55\x61\x90\x52\x22\x0f\x5b\xba\x34\x7c\x3f\x82\xdd\x83\x36\xae\xf5\xe1\x7d\x0d\x9c\x4f\xa6\xc7\x0e\x0b\xab\xb0\x4a\x98\x93\x1c\xf4\xa2\xaa\xef\x41\xf9\xb9\x69\x13\x04\xdf\x83\x1f\x40\xb0\xe3\xd1\x9a\xf0\x61\x61\xce\x22\x02\x2d\x3c\x3a\xb4\x81\x29\xe6\x47\x73\x70\x4c\x6d\x3f\xac\xfc\xee\xc3\xde\x0a\x13\x40\xa5\xcc\xcd\xb5\xae\x78\x68\x3d\x5b\x31\x1f\xe6\xe9\x64\x1e\x9f\x0c\x6f\x62\xdd\xf6\xa3\xb5\xdd\x45\x42\xa5\x9b\xe6\x41\xb5\x57\x4b\x0b\xda\x65\xf1\xe4\x8e\xb1\xe8\x7c\x27\x8d\x89\x93\xf7\x1e\x3b\x2d\x62\x50\x21\xb5\x25\x69\x61\x48\x55\xf4\x16\xe8\x45\x1f\x99\x17\xd1\xe1\x41\x63\x8f\x8e\x94\x18\x85\xd2\x18\x29\x6b\xa6\xd6\x8c\x94\xda\xe1\xf0\x64\xda\xd8\xc8\x0a\x83\xfb\xb3\x5e\xaa\xd2\x78\xf8\x54\x69\xd8\xa9\x22\x7b\x47\xe7\x17\xb3\x60\x45\xf7\x53\x74\x16\x09\x32\x85\x58\xf4\x60\xf1\x7c\x33\x9f\x53\x8a\x5e\xd4\x78\x91\xa6\xf9\xa8\x85\xce\x6b\x60\x1e\xfd\x29\x45\xd5\x6b\x7a\x82\xea\x15\x4a\xb3\xed\x7d\x7a\x40\xd2\xa3\xf7\x6b\xd6\x52\x4a\x2f\x45\x73\x59\x7a\xd3\x54\x26\x3d\x2d\x24\x48\x9d\x70\x62\x56\x65\x02\xb3\x4a\x4a\x85\xe6\xc6\xd9\x35\x0f\x04\x27\xe8\xcc\x82\x47\x0c\x07\xa4\xfd\x14\x5c\x50\x25\x28\x13\x2e\xa8\x35\x02\x3f\x85\x31\x4b\x1b\xe4\x9f\x42\x03\xc5\x31\xfe\x68\x61\x3d\x6e\xd8\xa7\x34\xed\xb3\xe3\x1b\x8c\xbf\x53\x8b\xc6\x22\xa6\xa6\x30\x8d\x9b\xd1\xa2\x30\x94\x6b\x77\xe4\x53\xba\x16\xe5\x65\xc2\x70\x05\x5a\x4f\xc1\x73\xa9\xad\x92\x4f\xd1\x21\x2a\x85\x2a\x31\xab\xa1\x8d\x99\x4f\xe9\x32\xe1\x54\x89\xe3\x08\xb4\xf3\xf1\x29\x3a\x5e\x25\xff\x9e\xf3\xed\x29\x6a\xb2\xcc\x9a\x3f\x85\x55\xe5\x43\xea\xc3\xe1\xa9\x95\x33\x4f\x01\x97\x0e\x7d\xba\x48\x46\xa2\xf6\x72\x20\x80\x19\x0a\xcd\x91\x13\x51\x1e\x1d\xa5\x31\xa4\x7b\x6d\xbe\x6d\x8a\x3f\x79\x69\xa0\x04\x8c\xd9\x00\x34\x14\x6b\x9a\x64\x52\xd3\xc4\x75\xfc\x40\x19\xfb\xa8\x95\x30\x9d\x3f\x30\x62\x55\x26\x59\x98\x5a\x7c\xaa\xe6\x71\x8b\x1e\xc0\xa4\xd0\xae\xeb\x1a\xe1\xd6\x03\x99\x1f\x9c\x3e\x53\x1b\x61\xc4\x03\xa6\xa9\x59\x4c\x4c\xe1\xa9\x07\x94\x89\x3a\x61\xe5\x98\x14\xef\xec\x98\x7d\xaa\x26\xf2\xe8\x15\xd5\xd6\x8e\xf1\xb0\x1a\x39\x33\x04\x0f\x7b\x15\x3a\x53\xa8\x4f\x95\x59\x0c\x2a\x42\x66\x11\xf0\xc2\x94\xfa\x4a\xd0\x6b\xb5\x18\x99\xba\xaa\x2b\xc0\xf6\x1e\xe6\xd4\x3b\x7b\x00\x9e\x4a\x57\x18\xf4\x97\x6a\xa7\xfd\xa8\x88\x57\x0f\x90\xa9\xca\xb9\x42\x71\x74\x05\xa8\xcc\x53\x35\xc1\x0e\x0c\xaa\x2c\x9d\x65\xcf\xc4\x53\xab\xb4\x92\xf5\x80\xb4\x82\x04\xaa\x24\xc0\x4b\x9b\xb4\x82\x55\xa9\x3a\x21\xa7\x29\xcc\x7a\x21\x55\x55\x56\x58\x50\xa0\x62\x85\x05\x23\x2a\x56\x78\x34\xc5\x03\xe4\x55\xef\x26\xd1\x60\x01\x2b\x9d\x47\x10\xac\xea\xa0\x21\xfa\x7f\xc5\x0c\x0f\x2c\x4c\x55\x57\xa0\x53\x55\xcc\x70\x52\xc9\xf4\x04\xce\xe0\x79\xaa\x5a\xab\xc4\x4d\xab\x0c\xfa\x4e\x0d\xab\x98\x8b\xa6\x19\x1c\x94\xd8\x00\x42\x1c\x25\xfc\xe8\xb8\x13\xf8\xca\xd3\x58\xe2\x22\x34\xc2\x02\x86\xa0\x65\x97\x4f\x2b\xda\x56\x53\x09\x53\x39\xec\x51\xd3\xc2\x91\xa2\x3c\x6a\x0d\x43\x6f\x62\x57\x13\xfd\x84\x25\x0f\x7d\xd0\xe3\xd9\xb9\xd2\x99\x84\x7b\x5a\x95\xe9\x68\x84\xb5\xdc\xbb\x10\xc6\x63\x8b\x24\x1a\x62\x14\xf2\x6d\x62\x0a\x8c\x23\x8d\xb9\x51\x4e\x4a\x7a\x38\xaf\x64\x34\x3a\x71\xb3\x33\x70\x78\xbf\xb6\x8c\xe8\x8b\xd5\xb9\x71\x01\x3d\x1c\x51\xd2\x59\x8f\xfc\x34\x0d\x48\x9d\x87\x87\x74\x46\x45\x87\x0e\xb7\x64\xec\xd0\x96\x19\xf6\xa8\x3e\x5d\xeb\xb7\x11\x4b\xb7\x19\x6e\xe2\xc7\xf1\x9d\x4d\xf8\x74\x06\x33\x56\x73\x3d\x38\x4a\x82\xf6\x47\x3c\x5d\xa3\x19\x23\x58\xd7\xc1\x4f\x55\xf1\x58\x54\x2c\x43\x97\x3b\xac\x29\x0f\xf0\x87\x71\xbd\x0f\x61\x93\xdf\x63\xa9\x8f\x3c\x2d\xc5\x0a\x11\xf0\xcc\x84\x5f\x96\x60\x50\x2b\x99\x1c\xf5\xb1\x91\xed\x47\xe1\x07\x75\xc7\xfe\x8c\xac\x0d\x4e\x8d\x70\x52\x26\x25\xb0\x7c\x0e\x55\xb0\x99\xa5\xb1\xa6\xe2\x19\x99\xc9\x3a\x9a\xc0\x60\xc1\xa1\xb6\x5e\x3c\x23\x33\x5b\x57\x94\x89\x56\x79\xa8\x68\xad\x23\xe9\x84\x2f\x3d\xa0\x1f\xac\x2c\xec\x0a\x43\xce\xa2\x5e\x84\x0d\xb0\xea\x69\x93\xd6\x92\xe0\x28\xf6\x0d\xfa\x81\xdf\x12\xa3\x3b\xb4\xfe\xfa\x50\x98\x2d\x2c\xb0\x0a\x9d\x27\xc2\x14\xdd\x33\x60\x79\xd1\x9e\xa5\xb3\x46\xe5\x61\x25\x21\xba\x1e\x4c\x13\x6b\xd7\xd1\x33\x6c\xc2\x51\x0f\x43\x5b\xb0\xbf\x43\x66\x8c\xad\x27\xcf\x10\x06\x54\xc9\x90\x27\x36\x52\x3c\x83\xfe\xc0\xf1\x62\xcf\xa8\xac\x31\xc4\x72\xb1\x13\x28\x68\x6b\xcf\x33\xb4\xc5\x8b\x1e\x37\xe0\xd4\x42\xc7\x43\x03\x34\xd3\x0a\x8f\xed\x17\x52\xbd\x85\x20\x99\x56\x78\xf0\x97\xf5\x4c\x7b\x1a\x42\x90\x4c\x25\x3c\x83\x61\x3c\x59\x82\xb6\x23\x2b\x1e\x68\x65\x61\x00\x24\xc3\xea\x90\xe9\xea\x8a\x97\x42\x8b\x12\x38\xc3\x26\x2b\xcc\xac\x02\xa8\x9e\xd3\x55\x3a\x3b\x35\x9f\x01\x25\xe5\xc0\xef\x67\x80\x07\x38\x97\xf1\x19\x5d\x1b\xf6\xa8\x84\x76\x0d\x62\xc6\x06\xa0\xb1\x63\xf6\xd8\xc2\x34\x38\x0c\xf6\x19\x5a\x9a\x80\x2d\xc5\xcb\xd7\x99\x60\x78\xb4\xb5\x89\x0d\x0d\xcf\xd0\x0e\x19\x38\xc0\xd0\xb9\x56\x58\xa8\x21\xdf\xb9\x3e\x86\x99\x8d\x91\x9a\x1e\x66\xa3\xaa\x84\x8a\x8b\x60\x1c\x7a\x58\x72\xa4\xff\xb1\x90\xa8\x67\xfa\xe8\x69\xbd\xa4\xe9\x87\x0e\xa4\xaa\x84\xe9\x25\x34\xfa\x53\x0b\x6b\x0f\xe5\xa1\xd9\x52\x55\x9c\x90\x9d\xf3\xa2\x1e\x56\x13\x37\x61\x0b\x1c\x89\x9d\x75\x6e\x0f\x8b\x87\x3a\xeb\xca\x1f\xdc\x7f\x83\xed\xf8\x0f\xab\x76\x3a\x87\x53\x3d\x97\xe0\x16\xfd\xe8\xd2\xc2\x23\x60\xd8\xc5\xa4\xbf\x60\xd8\x35\x44\x30\x57\xfe\x9b\xe9\x79\xd9\x58\x5c\x5e\x83\x39\x9b\xe7\x66\x2e\x87\x19\xf0\xe7\x66\x26\x8c\x59\xae\x87\xf5\x3b\x61\xe0\x2b\x7a\xb4\x69\x87\x03\x05\x9f\x9b\xf9\xf9\xc1\xc2\x85\xe7\x96\x9f\x22\x29\xcc\xda\x21\xbe\x80\x03\x4f\x74\x3c\xea\x73\x43\x7f\x65\xe9\x59\xe5\x33\x34\x62\xb2\x7e\xa7\x71\xe2\xd0\x63\xcb\x77\x30\x29\x37\x53\x64\x2d\x95\xdf\x33\x6f\xac\x39\xee\x59\x85\xc3\x7a\x39\xac\xee\xb1\x05\x2f\xe0\x3a\x16\xbc\xb4\x41\x6b\x60\xc1\x4b\x67\x3f\xff\xa3\x43\x55\xaa\x3e\x82\xf5\x10\xa3\x42\x33\x38\x55\xc5\x9a\xf6\x6d\x9b\xad\x78\x11\xcd\x27\xeb\x61\x6d\x3b\x04\x1c\xb0\xbb\x67\xb0\x2c\xf7\x61\xc5\xc9\x48\x60\xbf\x47\x9b\x8a\x79\xf6\xd1\x1a\x63\xfa\xf6\x83\xc4\x58\x79\xf9\x3c\x48\x8c\x99\xba\x47\x0b\x51\xd8\x38\xf6\x68\x21\xca\xa8\x59\x0f\xd3\xa7\xaa\xc2\x8c\x57\xb8\x85\x1e\xe1\x1e\x4e\xa7\x7a\x1e\xcd\x3d\x02\x09\x59\x42\xbd\x12\xc8\x85\xc0\xd9\x3f\xf4\x3c\xe2\x00\x38\xd2\x9e\x07\xdb\xc3\x5a\xe7\xe7\xa9\xaa\x13\xf5\xae\x7c\x03\x6a\x67\x63\x51\x30\xcf\x90\x2d\x6a\x01\x04\x3d\xb2\x2a\x40\x8b\x47\xab\x1a\x68\x34\x0f\xde\x70\x8e\xe0\x7c\x1e\x5b\x92\x48\x58\xb8\x5f\xe2\x66\xed\x4a\x93\x7f\x80\xa5\xdc\x23\x59\xbc\xce\xf4\xa5\x16\x5d\xc7\x68\xf2\x09\x72\x62\x64\xc5\x63\xe8\x31\x00\x8f\xe6\x17\x50\x33\xab\x55\x9a\x48\xe3\xa3\x59\xb8\xa0\x3c\xcc\x03\x49\xc2\xb8\xbc\xc4\x18\x1e\xf5\xed\xaa\xcf\x97\xd7\x80\xae\x31\xed\x3c\xad\x44\x98\x89\xe1\xa6\x78\xd0\x2e\x15\xd5\x06\x1f\x79\x61\x58\xe9\xd2\x59\xbb\xff\x4c\x8d\x42\xd8\x0b\x1d\xde\xc2\xf1\x58\xcf\xd4\x58\x20\x6f\xde\x94\x8b\xb9\x2b\x13\xb2\x06\xd2\x4e\xb1\x3b\xe6\x42\x1f\x2d\x51\x61\xb6\xec\x99\x55\x9b\xcd\x79\xa0\x6a\x71\x38\x35\xd2\x5c\x30\xc6\x7c\x36\xdc\x82\x28\x56\x0e\x5f\x35\x24\x56\x65\x0c\x4e\x51\x7d\x6c\xc9\x04\x7e\x12\x2d\x99\x18\xf2\x6c\xb2\x64\xa2\x73\x98\xe7\xf3\x8a\x67\xb0\x25\xef\x79\xb3\x36\xfd\x34\xc2\x5a\x18\xbd\x3e\x01\x2f\x6f\xc7\x9b\xfb\x70\xa2\x4a\x18\xcc\xb4\x3d\xaf\x9c\x5b\x98\xff\xb7\x50\x55\xec\xe2\x2b\x54\x4e\x27\xd4\xda\xf8\x8a\x0d\x7b\xd9\xfe\x3e\x04\x44\x5e\x99\x83\xa6\x4c\x4d\x09\x54\x43\xe8\x10\xb1\xbe\x55\xe7\x22\x2d\x7d\xe2\x48\x6e\x1c\x36\xfa\xb0\xe6\xa1\x27\x8b\x07\x4b\x03\xde\x58\xf2\x10\x06\xdb\x69\x9e\x57\x9b\x34\x82\x32\x5d\x4a\xa0\x7e\x5a\xf4\x80\x55\xd2\xa2\x87\xd1\xf5\xd5\x5a\x90\x47\x13\x7b\x75\xb4\x27\x0e\x4a\x16\x3d\x8c\xa8\x7a\x77\xec\xa1\x2c\xe8\xab\x36\x5c\x14\xc6\x6f\x3b\x94\x89\xd5\x10\xcb\x3c\xcd\x43\xd8\xfa\x77\x37\x66\x4d\x16\xce\x77\x34\x3c\x59\x50\x80\xf3\x6e\x85\x71\x2d\x2f\xeb\x30\x0f\xad\xb3\x56\x3c\x33\xff\xf2\x02\x4f\xcd\xfc\x73\xa0\xee\xd4\xcc\xbf\xd6\x84\x4f\x66\xfe\x3b\x87\x03\xcc\x43\x56\xb3\xf2\x26\x8d\xb9\x0b\x42\xcc\x03\xaf\xdf\x60\x86\x7f\x1e\xc6\x7a\xc9\x04\xb6\xa5\x41\x4d\xf6\xf6\xac\x4c\xbc\x49\x87\x7f\x76\x9e\x66\x16\x70\xb0\xee\x7a\x6a\xd7\x0f\x3e\x9f\x79\x18\x7a\x5e\x6f\xd2\x51\x31\x00\xc4\x19\x64\x8b\x78\x38\x54\xb0\x7d\x24\x5e\x4b\x1c\x78\x0f\x1e\xee\xce\x59\x4a\x93\xc3\x58\x3a\x9b\x8b\x67\x60\xac\x64\xbd\xff\xe4\x50\xde\x30\xb0\xf6\x33\x88\x0c\x2c\x1b\x35\x03\xeb\x9c\x86\x6a\x11\x98\x5c\x63\x0a\x61\x06\x98\x41\xb1\xb7\x3e\xca\xc4\xab\xd8\x22\x92\xf5\x5a\x01\x77\x2c\xd6\xd4\xd1\x2d\x6c\xa8\x9d\x41\x0b\x07\x3a\x4f\xb3\xc6\x85\xed\x8c\x33\x08\x76\x24\x85\x41\x66\x8d\xba\xd2\x05\x33\xe2\x0e\x27\x57\x6e\xe0\x9e\x9c\x78\xe0\xd7\x8f\xcc\x0f\x15\x5d\x09\x47\x25\x14\x7e\x00\x17\x56\xcb\x9c\x31\xeb\x55\x4b\x64\xb1\xe8\x69\x25\x14\x3d\xcd\x03\x45\x4f\x87\xce\x0f\x2a\xbe\xfa\xd7\x8c\x40\x5e\xf0\xd8\x8c\x5a\x3c\xdf\x15\xcf\x7a\xf6\x46\xd1\x5a\xf2\xdf\x78\x56\x6b\x36\x96\xb9\x98\x78\xff\x3b\xe8\x7f\xb2\xec\xa2\x71\x7a\xe9\xc4\xfb\xdf\xa0\xaa\x33\xae\xd6\x1a\x0f\x3c\x4c\x33\x32\x13\x08\xca\x9d\xb1\xaa\x00\xbe\x53\x98\xf5\x50\x1e\xed\x74\xa2\xb0\x26\x9f\x3a\x9f\xd6\x84\x9c\x78\xe9\xea\x8c\xf1\x60\x66\x6f\xda\xae\x88\x46\x26\x66\x4e\xc1\xb8\x33\x76\xd5\x54\x79\xd8\x5f\xa0\xaf\x5c\x1d\x30\x1e\xb8\x18\x67\x04\x23\x71\x36\xc4\x64\x7e\x61\xb0\x53\x77\x46\xb5\xf4\xcc\xe7\x68\xf1\x42\x27\x8f\x74\x4e\xbb\x65\xb1\xc8\xe0\x80\xd7\x19\xa5\xf3\xae\xfc\xec\x96\xe8\x88\x05\xb6\xcd\xd2\xf7\xc9\x9a\x90\xc1\x16\xd3\x19\x45\xe2\x68\x54\x36\x35\x81\xb8\x12\xb8\x91\xd3\xde\x26\xcb\x40\x06\x73\x77\x33\x31\x31\x0b\xd9\x9e\x49\x7b\x1f\xaa\xc2\x28\x9f\x2e\x9c\x4c\xf9\xe8\x2c\x15\x9d\x6e\xc8\x4b\xa5\x63\xba\x70\xd2\xe4\x15\x95\x4e\xda\xd6\xd1\x15\xd6\x21\x30\xbc\x48\x0b\x76\xfa\x92\x62\xc2\xc9\x81\x3f\x6d\x72\x6a\x72\x3c\xf0\xd9\xcd\x04\x53\x60\xd6\x65\x26\xec\x2f\x5e\xa5\xa9\xa9\x0c\x3c\x87\x33\xc9\xc0\xa4\xdf\x5b\x1f\x32\x99\xcd\x18\xac\x7a\x9d\x9c\xa8\xbc\x4a\xd1\x1b\xb4\xf7\x92\x12\xbb\x56\x20\xf3\x49\x4b\x6f\xf1\xc0\x1d\x3a\xb5\x9f\xa5\x60\x1c\x98\x98\x18\x9c\xc7\x30\x99\x98\x88\x07\x47\x47\x4f\x4d\x4c\x70\x20\xc3\x64\x62\x62\x25\xe8\x07\x1f\xb2\xc6\x82\xc9\xc1\xcb\x2b\x81\x32\xb4\xf4\x88\xe6\xcd\x64\xc4\x28\xfa\xf2\xa1\xca\x22\xaa\xa1\xca\x46\x3d\xad\x89\x6b\x2a\x3e\x54\x8f\xd5\x97\x92\x3a\x38\x3e\xb1\xc9\x64\xc4\x28\x0b\x71\x4f\xe6\x22\x06\x27\x9c\xcc\x8c\xe6\x71\xa7\xcf\x8c\xe6\xd9\x4f\x39\x39\xce\x66\xc8\x2e\x65\x56\x41\xc3\x24\x66\x86\x3d\x00\xed\x26\xd3\x12\xab\x00\x12\x18\x54\x58\x19\x35\x39\xe7\x26\x1e\x1c\x8c\x33\x39\xe8\xa6\xb3\x0c\x69\x32\x79\x31\x38\xb4\x6c\x6a\x8e\x82\xe5\xb7\x33\x97\xa1\x07\x0a\x3f\x4e\x32\xe9\xad\x12\x78\xd6\x6b\x19\x76\xb0\x7c\x9c\x74\xb3\x12\x1a\x3f\xb4\x73\x92\xe2\xb0\x14\x6c\xdc\x98\x9c\x6e\x33\xd8\x74\x38\xb3\xac\x43\x22\xac\x46\x64\x61\xc9\xbe\xea\x07\x0f\xe8\x45\x4d\xb2\xa7\x80\x86\x6f\x40\xd2\x63\x91\x45\x91\x54\xd5\x80\xe8\xaf\xd9\x1a\x10\x16\x51\x3b\x8e\x58\x4b\x35\x59\xc7\x14\x0f\x76\xab\x4c\x5b\xc7\x44\xcf\xd1\xb4\x06\x5b\x91\x66\xee\xaa\x2a\x25\x70\x18\x1c\xd3\x3a\x93\xe9\x8e\xc1\x42\x81\xc9\x51\x36\x83\x39\xa4\xc9\xac\xc6\x60\x75\xf4\x64\x56\x63\x15\x40\x55\x31\x21\x41\x55\x92\x8f\xa7\x52\x30\xe6\xa1\x48\x5e\x2c\xa5\x63\xcf\xe5\xcc\xd6\x4a\x18\xfb\x34\xd1\xa0\xf1\xa4\x64\x6e\xd0\x61\x67\xf5\x2c\x6a\x02\x39\x12\x46\x00\x0b\x0e\xcf\x92\x45\xfb\x33\x61\xda\x1e\x06\x8e\x99\x89\xc1\xd2\xb8\xc9\xc4\xc4\x60\x99\xd3\x64\x32\x62\xe0\x66\x9f\xcc\x45\x34\x16\xf4\xcd\x52\x28\x8c\x39\xe6\x59\x68\x19\x4c\x9a\x4e\xe6\x22\x7a\xb0\x17\x3d\xca\x44\xc9\x45\x27\xcc\xf1\x26\x6d\x41\xa7\x2f\x31\xb5\x30\xd8\xbb\x37\x59\x3c\xd5\xba\x4a\xd6\xfe\x91\xca\xb3\xe6\x80\xe5\xa5\x78\x34\x40\xb4\x93\x29\x87\x78\x00\x38\x27\x53\x0e\xa3\x44\xc2\xd6\x2e\x10\x05\x74\xa3\xa2\x9d\xd2\x54\x6d\x1a\x46\x91\x09\x2a\xbc\x95\x46\x92\x55\x9a\x1a\x09\xc6\xb8\xa8\x2d\xb0\xe0\x66\x16\xe3\x21\x4a\xc0\x36\xc0\x62\x66\xd1\x76\x0b\x86\x07\x66\x13\x06\xab\x72\xa7\xa6\x02\xba\xbe\x5f\x8b\xe0\xc6\xef\x9d\x62\x39\xf1\xfb\x0f\xa6\x46\x27\x6e\xff\xc1\x71\x14\x53\x67\x0f\x71\x9e\xd6\x2c\x6a\x04\x6c\xa7\x98\x72\xfb\x73\xd4\xcf\xac\x32\x03\x8b\x38\x4e\x39\xf1\x39\x98\x79\xea\x2c\x6e\xce\x21\x98\x55\x7b\xcd\xf8\x24\x6d\x60\x63\xe5\xf5\x94\x1b\x9e\x4d\xae\xb3\x9a\x7e\xe9\x03\xb8\xe1\x87\x2c\x82\x36\xb0\xe1\x44\x9b\x55\xdd\x18\xc9\xca\x47\xae\x06\x87\x8f\x3c\x1e\xac\x18\x9f\xf8\xc8\x07\xa7\x26\x4e\x79\xb6\x2b\xd6\x0e\xcf\xf6\x38\xf8\x9c\xaa\xae\x8b\x69\xa9\x4c\x65\xb3\x24\x62\xd6\x86\x35\x61\x4d\xf0\xac\x52\x4b\xd0\x8b\xe8\x10\x55\x2f\x9a\xca\x44\x82\x5d\x7c\x80\x5c\x7a\x50\x02\x1f\xaa\x15\xc8\x98\x10\x7c\xe4\xf1\x60\xc5\xca\xac\xb8\x42\x70\x4e\x4c\x73\x92\x17\x85\xbb\x32\xe9\x55\xaa\xa0\xc2\xd4\x03\xb3\x51\x35\x28\x48\x4a\x70\xff\xd2\x15\xe6\xa3\x19\xe7\x2b\xb3\x8a\x6a\x72\x55\x3a\x64\x04\xac\x8c\xe7\x05\xb8\xd4\x64\xc9\xe9\x5a\x4d\x5d\x17\xf5\xe0\x61\x1f\x85\xf1\x5f\x67\x85\x17\x00\x4c\xd3\xae\x36\x30\x42\x93\xf1\xe6\x18\xa0\x29\x6f\x3b\x93\x24\xb3\xc9\x78\x03\xa3\xf0\xb6\xaf\x4c\x7a\x82\xde\x81\x90\xb4\xc1\x90\xfd\x74\x53\xe7\x83\x73\xec\xe7\xc4\xdb\x1e\x0f\x41\x66\xdc\xed\x83\xa3\x10\x66\x13\x52\xc3\xd5\x38\x1b\x48\xad\xa8\x1e\x4d\x23\x50\x25\xac\xb1\x8f\x12\xba\x56\x50\xf2\x0d\x26\x79\x84\xd7\x24\xf9\xc8\x03\x32\xa7\xb4\x55\x1d\x28\xce\x4a\x90\xa9\xa3\xc2\x45\x1f\x70\xd0\x0f\x8e\x06\x98\x4d\xe3\x37\x20\xac\x01\xbc\xb8\x57\x66\x36\x75\x1e\x06\x87\x06\x4b\x8f\x34\x98\x2e\x01\x03\x92\xb4\x7b\x91\xd3\x25\x26\xbb\x17\xe3\x81\x3b\x7a\xda\x49\xd7\x68\x87\x63\xa9\x06\xbc\x71\xf6\x7c\x2a\x93\x9e\xa6\x16\x87\x9e\xa6\x16\xc0\xb0\x6e\xb3\x5b\x3c\xac\x11\x11\x7b\xd0\x35\x22\xb2\xfa\x63\xb2\xc7\x71\x70\xc8\xf6\xec\x4c\xb6\xb2\x07\x79\xf6\x8a\x5c\x58\x8f\x3b\xbb\x2c\x22\x66\xa6\xb3\x7a\x91\x19\xf3\xd9\x35\x0a\xd2\x19\xba\x46\x41\x8e\xa9\x9c\x5d\xd6\xae\xeb\x01\x4a\x00\xac\x75\x9d\xcb\x46\xab\xea\xea\x0c\x6c\x5b\x9d\xda\x20\xc9\x82\xaa\xd9\xad\xcd\x23\x00\xb5\x79\xce\x59\x9c\x5d\x6d\x1e\x6a\xd4\xed\x3c\x65\xbd\x49\xbb\xa4\xf8\x68\xf9\x1a\x8b\x5e\xc4\x21\x34\xe3\xf7\xa6\x51\xe7\xb0\x03\xf0\x57\xd5\x87\x61\x4e\x85\xd1\x85\x88\xc5\xd0\xe9\xb7\x54\x0b\x5f\x7a\x17\x0b\x1a\x3a\xf5\x87\x2e\xca\x59\xde\x8d\x03\x03\x27\x67\x79\xaf\x87\x0b\x3f\x18\x53\x95\x09\x94\xca\x4c\xf4\x64\x03\xe8\xca\xa4\x1f\x1c\xfd\xc2\xf0\x37\x74\xe8\xa7\x3d\x20\xd1\xd2\x16\x71\xb2\xf7\x9a\x14\xae\x4a\xe8\xfc\xe0\xa8\x26\x4c\xd6\xa0\x7b\x70\x4c\xd2\xc4\xe1\xde\x39\x30\x73\xca\x1b\x2e\xc2\x86\x37\x3c\x1e\x02\x68\xb6\x0e\x15\x23\x8a\x37\x7c\x74\x7d\x44\xd3\x31\x20\xbc\x88\x95\x3b\xe2\xc7\x78\xc3\xbb\x7a\xf8\x90\xb9\x13\x02\xc4\x1d\x3e\x38\xf4\x71\x0e\x48\x0d\x8b\xb5\xe6\xe8\xfa\x36\x6a\xaa\x35\x93\x5d\xf9\x39\x64\xa5\x2a\xac\x5d\xdc\xca\x0f\x32\x14\x0a\x93\x9f\x9c\x15\x70\x73\xe8\xec\x1e\x89\x9e\x7e\x16\x54\x6b\x9d\x47\xca\x90\x30\x20\x38\x02\x64\xf8\xcf\x07\x8b\x0d\x27\xfe\xf3\xc1\x8e\xa8\x89\xff\x7c\x15\x40\x4d\x75\x7c\x45\x51\x61\xfa\x1c\xc6\x76\x1c\xe8\x9d\x9d\x6f\x13\xff\xf9\x10\x3a\x3b\x6d\xe3\x6a\x26\xac\xb3\x6f\x02\x61\x4a\xc3\xfc\x9e\x74\x58\x4e\x10\x9a\xa7\xa6\x86\xb0\x82\xa7\xb6\x1e\xd0\xa8\x4e\x99\xca\x62\x09\x7c\x0e\x36\xfd\xe4\xf8\x5f\x4e\x30\x9c\x5a\xe8\xdb\x2d\x9e\x97\x62\x1d\x4f\x1d\x90\x4c\xdb\x39\x85\x04\xf9\xcc\x53\xf7\x68\x24\xc5\x03\xed\xf5\x7e\x93\x29\x2d\xf2\x94\x1b\x04\xe3\xc8\xe9\x5c\x3d\xea\xcb\x58\x7e\xc2\xd6\xdb\x79\xea\x40\x08\xfa\xc5\x25\x7e\xcf\x84\xf5\xbc\x98\x31\xe0\x68\x8d\xa9\x35\xb9\x9c\xe0\x39\x75\x14\x07\x87\x29\xcc\x4b\x1b\xe2\x18\xdf\x2e\x19\x7b\x8e\x54\x9f\x57\x51\x0b\xe6\x45\xb6\x29\x45\xf1\x68\x84\xf5\x73\x53\x0b\x74\x05\x27\x34\x67\xc0\xb9\xe8\xf3\x52\x87\xe1\xec\xd4\x79\x55\x6d\x76\x57\x02\x13\x85\x18\xf5\x4b\x47\x9b\x82\x1b\xae\xa6\x07\xe8\x30\x97\x56\xeb\xc1\x80\x2e\x6d\x7f\xa5\xb5\x69\x26\x02\xc7\xe2\xbc\xe0\x7e\x4c\xdc\xcd\xab\xeb\xdb\x78\x29\x7b\x4d\x59\xb5\x3e\xed\x08\x11\x0a\xb0\x39\x03\x2c\x94\x4e\x00\x13\x8d\xb8\x65\x66\xd9\x6f\x3d\xb5\x2a\x97\x55\xa8\xf3\xd6\xe7\x58\x18\x73\x85\x2c\x6e\xdb\x00\x45\x58\xe7\xc9\xd0\xa6\xe4\x9e\x97\xfb\x05\xb7\xfa\x60\x57\xe2\xd4\x99\x23\x3d\xfe\xde\x51\xbd\x53\x07\x92\x70\x94\xe0\xc4\x67\x3e\xe4\x9b\xc2\x67\x1e\x0f\xae\xeb\x99\x8f\xad\x99\x1f\x84\x31\x6f\xa0\x5e\x9d\xcc\xc5\xc1\xfd\xf3\x3b\xc1\x84\x9a\xc8\x4f\x4e\xf7\xc1\x4f\x1e\x0f\xfc\x98\xf3\xd1\x04\x1a\x83\x9c\xed\xc6\xc4\x94\x3c\xe2\xae\x02\x3c\x8f\xce\x54\x41\xa5\x8f\xb9\xa0\xf8\x56\xed\x5d\x89\xca\x53\xf5\x40\xe5\x07\xfb\x0a\x80\xc6\xac\x13\xee\xc5\x4a\x18\x2c\xd8\x54\x09\xf0\xec\xaa\xf8\x4b\x0f\x53\x57\x88\x2f\x0b\x5f\xe7\x23\xe2\xcb\x72\xb1\x89\x3f\xbd\x0b\xa1\xe3\x4f\x5f\x09\xbc\x4a\xcb\x69\xe9\xc7\x53\x6b\x4b\xd1\xc5\xd4\x54\x19\xc5\x4d\x9d\x14\x4d\xc3\x67\x4b\x69\x63\x6a\x6a\x4e\x5d\x07\x70\xe8\x59\x76\xaf\x60\xea\xe4\x67\x67\x5f\xf5\x9c\x5a\x97\x4a\x97\xd6\x2e\x52\x26\x16\x26\x9b\x45\xb5\xca\x76\xb2\x59\x34\x1e\x6c\x0b\x9e\xec\x16\x1d\x1c\x34\x32\xa7\x96\x8e\xe8\xe1\xaa\x9b\x0e\xc8\xa3\xc5\xab\xb8\x51\xd8\xd8\xd9\x59\xb4\x32\xd9\xd8\xd9\x99\x04\x98\x53\x04\xa5\xeb\x0b\xaa\x5e\x44\x02\xce\x56\x0d\x3e\xda\xa8\x29\x38\xc6\x46\xcd\xc6\xed\x45\x93\xc5\xd7\xa3\x2a\x3f\xf8\x88\x6b\x85\xe6\xd4\x4d\x62\xa0\x91\x09\x3e\xe2\x2c\xba\xc9\x41\x33\xa3\xa2\x59\xb6\x63\xc6\x83\x1d\x77\x73\xea\x8e\x15\x7d\xb2\x6e\x00\x93\xb8\xb4\xd4\xb9\x2b\xcc\x17\x77\xe5\x51\x03\xa3\xa5\x4e\x1d\xfc\xa8\x92\x39\xf3\xb3\xa9\x64\xad\x07\x46\xd6\x9a\x10\xa8\x28\x99\x09\x81\x81\xbb\x7e\xda\x7c\x00\x30\xfd\xcd\x40\x1c\x8e\x8a\x9b\xaf\xce\x93\xa1\xda\x6f\xd6\xdc\x65\x21\x7c\x7f\x57\xfc\xcd\x57\x56\x4c\x4e\x61\xed\xb4\x14\xd1\x7d\xa5\x29\xb9\x35\x5f\x34\xc5\x2a\x80\xf9\xca\x31\x49\x77\x7d\xe5\x9c\xa2\xe7\x69\x3e\x80\x39\xa0\xf9\x0a\xbe\xb2\x74\x72\xbe\x72\x34\x62\xdd\xde\x7a\x29\x41\x4f\xe8\x0c\x2e\xea\xa4\xc1\x5a\x99\x9a\x0e\x39\x52\xbc\x1e\x00\x45\x69\xf9\x39\x7b\xa5\xe6\xab\xc1\x57\xd5\xeb\x74\x7a\x16\xf0\x4d\x1d\x1a\x2f\x3f\x13\x87\xc6\xaf\x04\xea\xc1\x39\x8e\xc3\x12\x64\xa3\xf5\xa6\x5b\x99\x28\x0f\x0f\x82\x9c\x51\xaf\xd6\x32\xeb\xeb\x74\x3c\x95\x1e\xd0\x1e\x6c\xfc\x4f\x1c\xf9\xd3\x39\x05\x61\xbe\xea\x86\x72\xbd\xb1\xaa\xbd\xb1\x75\xe9\x3d\x34\xce\xb0\x34\xec\x3d\x50\x5d\x88\xbf\xe7\x87\x7b\x8f\xac\xeb\x5b\x1a\x61\xe9\x75\x75\xd8\xf7\x50\x67\x0c\x0a\x73\xda\xd5\x92\xdb\x7b\xa8\x63\x66\x15\xa9\xcb\x52\x3a\x61\xc6\xcb\x4a\xe9\x3a\xd9\x7d\xc9\xfc\xd5\x31\x63\xdc\xec\xf3\xea\x5c\xa1\xaa\x67\x6d\x31\x74\x5c\x61\xa1\xae\xd5\x3c\x5e\x26\x38\x06\x27\xf2\xbc\x9c\x32\x36\x70\xf9\xbd\x07\xae\xc8\xc0\xac\xda\x7b\x34\xdd\x20\x48\x01\x3a\x85\x2e\xf2\x05\x20\x30\x0e\xe4\x79\x99\xeb\x88\x81\x15\x44\xef\xc1\xf4\x0f\xa7\x41\xbd\x87\x90\x56\xe2\xcb\xb4\x97\x5e\x5f\x2c\x65\x27\x6a\x04\x12\x38\xb2\xc2\x3a\xca\x41\x79\x04\x84\x78\x27\xb3\xc5\x5d\xef\x59\xf6\x3a\x06\x16\x99\xbd\xcc\x87\x34\xb6\xad\xbc\x87\x8e\xb0\x5b\x4d\xf1\xd5\x11\x41\x6c\x85\x7d\x83\x66\xd5\x51\x96\x1d\x7e\xbf\xfa\xdc\x1b\xb4\xb9\x7d\x75\xa7\x37\xac\x31\x2b\x06\x50\xc1\xcb\x4e\x80\xc6\xe1\x9c\xaf\x4e\xc2\xc7\x3c\xbc\x01\x37\x3c\xa7\x8f\xbd\x41\x03\x61\xe5\x61\xed\x04\xa6\x42\xda\x5e\x19\x54\x80\x89\x65\xf5\xea\x37\xd8\x45\x2b\x4a\x90\x83\xba\x12\x66\xc3\x2f\x0a\x0f\x88\x8b\xd3\x26\xdf\xd0\xf5\x99\x9d\xd2\x74\x14\xd7\x50\x38\x29\x81\x37\x69\x41\x67\xd7\x13\x45\x09\xd4\x49\x57\x2d\x04\x85\x1b\x09\x43\xb9\x74\x7f\x67\x24\xcc\xf6\x59\xf4\xa9\x49\x16\x16\x81\xbf\x9a\x58\x61\xd7\xf2\x1b\xb5\x8c\x7b\x75\xc5\x37\xae\x51\x3e\x06\x3a\xe9\x1b\x33\x93\x5a\x41\x09\x6c\xb7\x45\x3f\x9a\x00\xc1\xc5\xf3\x7e\x13\x20\x8a\x67\xdb\xf7\x62\xe8\x2f\xdb\x1c\x06\xec\xf6\x8d\x45\x1b\x83\x28\x4c\xe7\x80\x1c\x3c\xab\x56\x08\xe0\x7d\x63\xd3\x4b\x15\x66\x77\xf2\x32\x77\x2f\xdb\x19\xa2\xee\xda\x7a\x63\x13\x13\xd5\xd3\x94\x10\x29\x59\x3b\x55\x2d\x1e\x71\x27\xbe\x00\xe4\xc4\x5e\xeb\x37\x76\x7d\x5a\xa5\x1a\xda\x77\x47\x93\x8c\xb8\x23\x39\xf7\xed\xd5\x4c\x07\x67\x80\xbd\x51\x8b\xdd\x54\x23\xf0\x3e\x27\x1a\xbc\x9a\xb8\xe0\x00\xfe\x97\x89\x8b\x18\x80\xd7\x2f\xbb\x27\x06\xa7\x0f\xbc\xd1\xac\x8c\x1e\x7e\x94\xa9\xf3\x43\x67\x3f\xaf\x4c\xda\xb5\x8a\xf7\xfb\xe5\xfe\xc6\xc1\x61\x0d\xaf\xee\x6f\x64\xa7\xda\xab\x1d\x16\x38\x9c\x5e\x76\x58\xc4\xc0\x79\x8e\xaf\x76\x58\x00\xe0\xde\x24\xed\xd0\xab\xb4\xc3\x82\x3d\x72\x6f\xd2\x2e\x17\x64\x94\x74\x14\x16\xd5\x4e\x12\x6a\xb4\x1f\x20\xbb\xdf\xdd\xce\xf0\x26\x9d\x25\x54\x33\x61\x41\xc0\x46\x98\x3d\x89\x08\x47\x93\x09\xb8\x2a\x5f\x6d\x22\xc0\x57\xff\xb2\x57\x60\x70\xa6\xeb\x8b\x8b\x7d\x70\xcc\xea\x9b\x35\x4e\x21\xf0\xac\x2e\xca\x62\x85\x37\xab\x8b\x5a\xa6\x53\x09\xbc\x09\xb0\xce\x31\x8d\x2f\x9e\xf4\xa8\xeb\x8a\x5f\x1d\x1a\xcf\xf5\x91\xaf\xbc\xe7\xdc\x73\xf2\xb2\x47\x37\x06\x76\x53\xbf\x59\x33\xa4\x74\x4c\x79\xc9\x71\xf8\xbd\xf2\x80\xb3\x14\xe1\x95\x07\x3c\xe0\x93\x7d\xb3\x76\x6b\x2e\xfa\xf8\x66\xdb\x57\xc6\xc3\x43\x0e\x22\x1e\xd6\xc6\xd5\x45\x2b\xdf\xa2\xe5\x41\x94\x5c\xd4\x9b\xd8\xd3\xfc\xe2\x87\x1e\x7a\x51\xd1\x99\x3e\x0b\x2f\xbd\x5c\x50\x18\x43\xd2\x13\x45\x67\x59\x35\xc2\x5a\xc6\xa1\x30\xf0\x9e\xb6\x8b\xc7\x78\x80\xfe\x5e\x1d\xc6\xc5\xdd\x20\x6f\xd1\x92\x20\xcc\xaf\x9c\xbe\xb2\x88\x85\x8d\x42\xac\xc4\x78\xcb\xe2\x24\x31\xb0\x95\xe1\x2d\xf4\x45\x56\x82\xbe\x5a\x8c\x5e\x69\xec\xac\x1b\x1f\xf8\x47\x5e\x96\x8d\x0f\xf6\x8f\xbe\x2c\xed\x1e\xf0\x90\x97\xa5\xdd\x31\xb0\x0b\xe8\x95\x3f\x97\x53\xd9\x5e\x96\x76\x0f\x68\xf5\x5b\x24\x23\x8c\x1a\xee\xdb\x18\xd8\x55\xfc\xca\x7f\x0b\x5b\x7b\xf1\xd9\x0e\x56\x8d\xbd\xb8\x6c\x57\xa6\xc1\x0f\xaa\x37\x22\x61\x55\x49\xf1\x54\x69\xf1\xad\x97\x95\xda\x31\x80\x67\x5e\x96\x6a\x0f\x36\xf5\xbf\x95\x1e\x01\xaf\x7a\x6b\x96\xef\xbd\x13\x56\xbd\x69\xac\x55\xd2\xc6\x3c\xc8\x99\xcb\x72\xb2\xb7\x4a\xaa\xb4\xaa\x5a\x31\x52\x1c\x8b\xfb\xb2\x97\x78\x70\x5c\xee\x5b\x19\x5b\xd9\xfa\xfd\x56\xd6\xfa\xb0\x68\xea\x65\x5d\xb3\x96\x62\xbc\x55\x7d\x8e\xce\x5e\xd5\xe7\x38\x7f\xee\x95\x97\x97\x29\xdb\x97\xf5\xcb\xdd\xe2\x75\xaa\x2b\x92\xac\x3a\xd3\x0a\xcb\x8f\xa3\x35\x06\x26\x8e\xdf\x8a\x2b\x1d\x5f\xca\x5b\x75\xef\x29\xa8\xa1\xea\x9e\x40\xc6\xe8\xaa\x05\x2b\x40\x11\x2e\x93\x1c\xac\xfb\x78\xe5\x8d\x85\x70\xbf\x15\xa7\x84\xec\x3b\xeb\x9a\x63\xc8\x2a\x0d\x6f\x21\x6b\x3d\x5e\x5c\xb6\x2b\x41\xb9\xd4\x02\x14\x96\x24\x69\x26\x75\xa8\xbd\x51\x25\x28\x4c\x60\xc6\xf7\x95\x37\x97\x03\x02\xdf\xc6\x1c\x1d\xfc\xec\x95\x07\x97\x55\x23\x2f\x37\x3f\x0e\x8d\xc6\x4d\x77\xda\x30\x4a\x37\x79\x1c\x68\x0c\xdc\x02\x19\x03\x13\xa6\x6f\x13\xff\x64\xa4\xc5\x51\xbb\x12\x78\xba\xa8\xe2\x7a\x9a\xf3\xeb\x92\x32\x51\xef\xf6\x7b\x2b\xe1\xde\x26\xcd\x0f\x1e\x92\xe6\x71\x69\xbe\x4d\x07\x69\xd1\xf5\x1b\xae\x7b\xd6\xa9\xbc\x4d\x7d\x08\xfb\x2f\xef\xae\x00\x64\x93\x0d\x61\xc2\xeb\xe5\xf2\xc8\xc1\x26\xf7\xb7\x83\x11\x71\x13\xbf\x38\x56\x07\x5b\x1b\x5f\x9d\xf7\x0f\x9c\x7e\xbb\x7c\x33\x98\x73\x1d\x11\x87\x83\xfa\x65\x77\x79\x0c\xf8\xc6\x5f\x56\x4a\x0f\x0e\x61\x78\xbb\x36\x12\x22\x03\xb9\x49\x39\x20\xeb\xed\x70\xeb\x80\x7f\xf7\xd5\x7e\x74\x76\x76\xbe\xdc\x1c\xd0\xed\x45\x5a\x00\x49\xd3\xea\x02\x34\x9c\xdc\xfb\x76\x00\x0d\x87\x84\xbf\x1d\x54\x1f\xd8\x27\xf3\xca\x99\xca\x99\x77\x2f\xce\xd4\xa8\x7b\xea\x5e\x5d\x35\xc0\xb5\xa5\x6f\xd7\x66\x27\xd5\x4f\xc0\x85\x9d\x35\x6f\xb7\x1b\x9f\x79\x2d\xcd\x97\x99\x8f\x57\x4e\x53\x2b\x81\x89\xff\x43\x45\xc3\xae\xd8\xaf\xf0\xea\x9e\x02\x0e\x10\x7e\xb5\x6e\x99\xfb\x78\x5e\xad\x5b\xd6\xfb\xb5\xfd\x5d\x15\x62\x55\xf1\xe0\x54\xdb\x77\xd8\xb5\x7b\xe4\xd7\x39\x7a\x34\x14\x5c\xa4\x03\x87\xcf\xab\x35\xc2\x4c\x92\xbf\xb8\x2f\x63\x80\x12\xbf\x43\x53\x6d\x18\x5a\x2d\x1e\xc6\xf9\xf3\xb2\x46\xb8\x73\x59\xd0\xab\xbb\x03\xb8\xc0\xe5\x1d\x42\x1b\xec\xe0\x7d\x87\x76\x05\x33\xda\xca\x73\xc8\x89\x1c\x2f\x27\xe8\x0e\xb6\x14\xbf\xac\xb6\x8d\x81\x7d\xdb\xaf\xdc\x85\x2c\xa4\x7b\xb5\x16\x96\x0b\xaf\xdf\x53\x0d\x06\xe4\x75\xea\xee\x47\x40\x12\x0e\x3c\x1d\x4d\xf0\x9e\xe6\x9c\x51\x98\xcf\x67\x74\x3d\xf5\xc9\x58\x41\xee\x13\x8c\x81\x73\x8c\xdf\x93\x35\x72\x5c\x23\xfa\x72\x3a\xdf\x4a\xe0\x69\xb1\x7a\x85\x71\xb8\x73\xfe\xc9\xab\xa3\xfa\x58\x79\xf9\x9e\xb2\x6a\x1a\xca\x38\x8f\x7f\xa8\xf1\x68\x3f\x3f\xcb\x9f\xdf\xb3\xab\x79\xf2\x09\xcc\x6e\xe0\x08\x7b\x75\x52\x5f\xd5\x27\x68\x0b\x36\x82\xd4\x39\xfd\xcc\x83\xbe\xa7\x64\x94\x14\xc6\x65\x6b\x79\x74\x94\xea\x2a\x4b\xd7\x1d\x72\x96\xee\x7b\xc9\x8f\x81\x81\xd3\x5e\x7b\x0d\x6a\x97\x1d\xbd\x1a\x09\xd3\xca\x65\x7d\x2e\x6c\x46\xb5\x30\xae\x02\xac\xd5\x25\x74\x50\x15\xd6\xa9\x0b\xe4\xd1\x9e\x52\x9a\xc8\xa5\x5e\x21\xb8\xc3\x86\xfc\xce\xfa\x91\xf7\x02\x90\xb2\x2a\xf2\xbd\xf0\x4c\x07\x56\xf0\xbd\x97\xf9\x19\x1a\xe1\xfb\xbb\x8b\xfe\xbd\x98\x01\x63\x49\xdd\x7b\x31\x8b\x19\xd8\x90\xfc\xea\x26\x44\x76\x80\xbd\xda\x85\xcf\xe9\x53\xaf\x8e\xff\x63\x5f\xe5\xcb\x29\x7f\xad\xb7\xff\x3b\x41\x4d\xed\xbf\xb6\x6e\xb7\x96\x84\x81\x59\x6e\xdb\x3e\xbc\x3e\xef\x16\x2a\xe0\x74\xc7\x57\x27\xf5\xb1\x5b\xe1\xbd\x35\x7e\x21\x40\xce\xce\x1b\x2c\x8d\x7c\x6f\x8d\x40\x34\x9f\x47\x44\x8c\x51\xd7\xd6\xea\xd2\x00\xb4\x0e\x97\x99\x98\x17\x87\xa1\x2e\xad\x7f\x1f\x09\x5f\x64\xf5\x31\x57\xa5\x5e\x84\x08\x90\xa5\x56\xdb\x72\x49\xcd\xab\x45\xb5\x6a\x92\x3a\x40\x8e\x45\xe2\xaf\xfc\x83\x82\xdb\x8f\xfa\x2a\xeb\xd2\x5e\x8e\xf4\x1f\x1c\x86\xf4\x3e\x1a\xa5\x31\xb7\x2c\xb6\x1d\xac\x29\x7c\x39\x40\x6e\x3d\x40\x09\x4d\xa5\x0d\xc2\x10\x54\xe4\xa2\x23\xfd\x39\xa3\xeb\xe5\x04\xb9\x18\x65\x92\xb8\x08\x51\x97\xee\xbf\x5a\x55\xcb\x3a\xdf\xd7\x2e\x45\x04\x76\xe9\x4c\x01\x8e\xf4\x7f\xe5\x5c\x64\x0d\xe1\x2b\xd7\x1f\xb3\xc6\x2f\x9e\xbf\x50\x99\x29\x7b\x1f\x9d\x4f\x49\x27\x7e\x34\x91\xad\xae\x84\xeb\x2f\x2f\x53\xf2\xff\x34\x7a\xfd\xe5\xfc\xd3\xdf\xcf\x3f\xfc\x16\x8f\x5f\x3f\xbf\xb1\x51\x9d\x5b\xf7\xfb\xfb\xa4\xfe\xeb\xe7\x0b\x72\x01\xbf\x2e\x8b\x5f\x11\x33\x1d\x5f\x9a\x5d\xce\xcf\x3a\xf9\x1e\xd2\x1a\x8a\x2d\x6d\x05\xb9\xda\x5f\xd7\xca\xae\x88\xe8\x69\xd1\x9e\xe3\xe2\xe0\x15\x91\x3c\x2d\x59\x5a\xf9\xd2\xb2\xa7\x65\x4b\xab\x5f\x5a\xf1\xb4\x62\x69\xed\x4b\xab\x9e\x56\x2d\xad\x7f\x69\xcd\xd3\x9a\xa5\x8d\x2f\xad\x7b\x5a\x57\x1a\x2b\x7f\x88\x18\x9e\x36\x2c\x2d\x58\xda\x59\x52\xb2\xb4\xb3\xa4\xc2\xd9\xe7\xdc\xcd\xa8\x88\xee\x69\x43\x69\xdd\xd2\x7a\xaa\x5f\x5a\x5f\xd9\x62\x64\xdb\xda\x8a\xb8\x72\xca\x96\x76\x7d\xdf\xce\xfd\x95\x2b\xc2\xbf\xfd\xfa\xbe\x3d\x98\xac\x2f\xff\xf6\xab\x9a\x1e\xa2\xa5\xcd\x77\xa7\xcd\xd7\xbe\xe1\xd3\xdf\x7b\xec\xb4\xf7\xb0\xb4\x4f\x7f\xaf\xeb\xf6\x0d\x96\x56\xbe\x34\xd7\xed\x6b\xba\x85\x6b\x13\xe1\xba\x7d\x4d\xb7\xcc\xef\x13\xe1\xba\x7d\xed\xfb\x70\x58\x10\xe1\xdf\xf7\xda\xf7\xe9\x76\xdc\x15\xe1\xdf\xf7\x9a\x6e\x01\x43\x44\xb8\x6e\x5f\xd3\x6d\xfd\xe4\xf2\xba\x6e\x5f\xd3\x6d\xfd\xe4\xf2\xba\x6e\x5f\xd3\x6d\xdd\x72\x39\x3d\xed\xb4\xb4\x2d\x97\xcb\xd3\x2e\x4b\xdb\x72\xb9\x3d\xed\xb6\xb4\x2d\x97\xc7\xd3\xac\x8f\xd5\x2d\x97\xe9\x69\xd6\xc7\x74\x21\x6c\xc8\x8a\x67\x39\xf1\xa1\x1b\xc6\x71\x1f\xad\x3f\xab\xff\x6a\x49\x5c\xc7\x5d\xb4\xfe\x14\xe2\xb8\x24\x13\x5f\xcf\x6f\x3d\x4c\x8e\xe2\x0f\xaa\xff\x9c\xc4\xbd\xe4\xc3\x27\xd0\xc3\xab\x7c\x5c\x6b\x70\x70\xe8\xe0\xea\xbb\x5f\xdf\x56\x50\x75\x1a\x5f\x5a\xf4\x34\xd3\x3f\x8e\x0a\x22\x92\xa7\x99\xfe\xd9\x59\x49\x44\xf6\x34\xd3\xbf\x6e\xfd\x5f\x11\xc5\xd3\x4c\xff\xba\xae\x74\x45\x54\x4f\x33\xfd\x33\x6b\x45\x44\xf3\x34\xd3\x7f\xdb\xdf\xd0\x3d\xcd\xf4\x0f\xe1\x26\x62\x78\x9a\xe9\x5f\x57\xf0\xaf\x88\xd3\xd3\x4c\xff\xba\xdb\x7f\x45\x5c\x9e\x66\xfa\x6f\x5b\x2e\xb7\xa7\x99\xfe\xfb\x96\xcb\xe3\x69\xa6\xff\xbe\xe5\x32\x3d\xcd\xf4\xdf\xb7\x5c\x5e\x4f\xb3\xfe\xdb\x3f\xb9\x8c\x63\xa7\x0d\xeb\xbf\xfd\x93\xcb\x70\xfd\x0d\xd3\x5f\xff\xe4\x32\x5c\x7f\xc3\xf4\xd7\x3f\xb9\x0c\xd7\xdf\x30\xfd\xf5\x4f\x2e\xc3\xf5\x37\x4c\x7f\xfd\x93\xcb\x70\xfd\x0d\xd3\x5f\xff\xe4\x32\x5c\x7f\xc3\xf4\x37\x3e\xb9\x0c\xd7\xdf\x30\xfd\x8d\x4f\x2e\xc3\xf5\x37\x4c\x7f\xe3\x93\xcb\x70\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xd8\x72\x71\xfd\x0d\xd3\xdf\xf8\xe4\x72\xba\xfe\x4e\xe9\x2f\x1d\x9f\x5c\x4e\xd7\xdf\x19\x2c\xed\x93\xcb\xe9\xfa\x3b\xa3\xa5\x7d\x72\x39\x5d\x7f\x67\xb2\xb4\x4f\x2e\xa7\xeb\xef\xcc\x96\xf6\xc9\xe5\x74\xfd\xd9\x98\x95\x8e\x4f\x2e\xa7\xeb\xef\xac\x96\xf6\xc9\xe5\x74\xfd\x9d\xcd\xd2\x3e\xb9\x9c\xae\xbf\xb3\x5b\xda\x27\x97\xd3\xf5\x77\x0e\x4b\xdb\x72\x71\xfd\x9d\xd2\x5f\x0a\x5b\x2e\xae\xbf\xf3\xb2\xb4\x2d\x17\xd7\xdf\x79\x5b\xda\x96\x8b\xeb\xef\x7c\x2c\x6d\xcb\xc5\xf5\x77\x4e\x4b\xdb\x72\x71\xfd\x9d\xaf\xa5\x7d\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x97\xe9\x2f\x7c\x72\xb9\x5c\x7f\x86\x0f\x52\xfc\xe4\x72\xb9\xfe\x0c\x1f\xa4\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\xf8\xc9\xe5\x72\xfd\x5d\xa6\xbf\x3d\x76\x5c\xae\xbf\xcb\xf4\x17\xb7\x5c\x5c\x7f\x97\xe9\x2f\x6e\xb9\xb8\xfe\x2e\xd3\x5f\xec\xdf\xae\x1d\x61\xd7\xff\x16\x9c\x25\xbf\xab\xf7\x32\xf5\xc6\x2d\x36\x57\xef\x65\xea\x4d\x5b\x6c\xae\xde\xcb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\x3e\xb1\xdd\xae\xde\xdb\xd4\x9b\xbe\xe6\x74\xbb\x7a\x6f\x53\x6f\xfa\xe4\x72\xbb\x7a\x6f\x53\x6f\xfe\xe4\x72\xbb\x7a\x6f\x53\x6f\xde\x72\x71\xf5\xde\xa6\xde\xbc\xe5\xe2\xea\xbd\x4d\xbd\x79\xcb\xc5\xd5\x7b\x9b\x7a\xf3\x96\x8b\xeb\xef\x36\xfd\xe5\x2d\x17\xd7\xdf\x6d\xfa\xcb\x5b\x2e\xae\xbf\xdb\xf4\x97\x3f\xb9\x3c\xae\xbf\xc7\xf4\x97\x3f\xb9\x3c\xae\xbf\xc7\xf4\x97\x3f\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\x3e\xb9\x3c\xae\xbf\xc7\xf4\x57\xb6\x5c\x5c\x7f\x8f\xe9\xaf\x6c\xb9\xb8\xfe\x1e\xd3\x5f\xd9\x72\x71\xfd\x3d\xa6\xbf\xba\xe5\xe2\xfa\x7b\x4c\x7f\x75\xcb\xc5\xf5\xf7\x98\xfe\xea\x96\x8b\xeb\xef\x31\xfd\xd5\x4f\x2e\xd3\xf5\x37\x4d\x7f\xf5\x93\xcb\x74\xfd\x4d\xd3\x5f\xfd\xe4\x32\x5d\x7f\xd3\xf4\x57\x3f\xb9\x4c\xd7\xdf\x34\xfd\xd5\x4f\x2e\xd3\xf5\x37\x4d\x7f\xf5\x93\xcb\x74\xfd\x4d\xd3\xdf\x86\xc3\xd3\xf5\x37\x4d\x7f\x1b\x0e\x4f\xd7\xdf\x34\xfd\x6d\x38\x3c\x5d\x7f\xd3\xf4\xb7\xe1\xf0\x74\xfd\x4d\xd3\xdf\x86\xc3\xd3\xf5\x37\x4d\x7f\x1b\x0e\x4f\xd7\xdf\x34\xfd\x6d\x38\x3c\x5d\x7f\xd3\xf4\xb7\xe1\xf0\x74\xfd\x4d\xd3\xdf\x86\xc3\xd3\xf5\x37\x4d\x7f\x1b\x0e\x4f\xd7\x9f\xd1\xcb\xb4\xe1\xf0\xeb\xfa\x33\x7a\x99\x36\x1c\x7e\x5d\x7f\x46\x2f\xd3\x86\xc3\xaf\xeb\xcf\xe8\x65\xda\x70\xf8\x75\xfd\x19\xbd\x4c\x1b\x0e\xbf\xae\x3f\xa3\x97\x69\xc3\xe1\xd7\xf5\x67\xf4\x32\x6d\x38\xfc\xba\xfe\x8c\x5e\xa6\x0d\x87\x5f\xd7\x9f\xd1\xcb\xb4\xe1\xf0\xeb\xfa\x33\x7a\x99\x36\x1c\x7e\x5d\x7f\x46\x2f\xd3\x86\xc3\xaf\xeb\xcf\xe8\x65\xda\x70\xf8\x75\xfd\x19\xbd\x4c\x1b\x0e\xbf\xae\x3f\xa3\x97\x69\xc3\xe1\xd7\xf5\x67\xf4\x32\x6d\x38\xfc\xba\xfe\x8c\x5e\xa6\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfa\xe0\x70\xe8\xd1\xd3\x4c\x0f\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xf4\xc1\xe1\xe0\x34\x2f\x18\xcd\x4b\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xf4\xc1\xe1\xe0\x34\x2f\x18\xcd\xcb\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xfc\xc1\xe1\xe0\x34\x2f\x18\xcd\xcb\x1f\x1c\x0e\x4e\xf3\x82\xd1\xbc\xfc\xc1\xe1\xe0\x34\x2f\x18\xcd\xcb\xc7\x96\xcb\xe5\x69\x97\xa5\x6d\xb9\xdc\x9e\x76\x5b\xda\x96\xcb\xe3\x69\x8f\xa5\x6d\xb9\x4c\x4f\x9b\x96\xb6\xe5\xf2\x7a\xda\x6b\x69\x9f\x5c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\xc3\x96\x8b\xeb\xcf\x68\x5e\x8e\x5b\x2e\xae\x3f\xa3\x79\x39\x6e\xb9\xb8\xfe\x8c\xe6\xe5\xb8\xe5\xe2\xfa\x33\x9a\x97\xe3\x96\x8b\xeb\xcf\x68\x5e\x8e\x5b\x2e\xae\x3f\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\x3f\x38\x1c\x9c\xe6\x05\xa3\x79\xf9\x83\xc3\xc1\x69\x5e\x30\x9a\x97\xff\x4a\x38\x1c\x9c\x05\x06\x63\x81\xf9\x83\xc3\xc1\x59\x60\x30\x16\x98\x3f\x38\x1c\x9c\x05\x06\x63\x81\xf9\x83\xc3\xc1\x59\x60\x30\x16\x98\x3f\x38\x1c\x9c\x05\x06\x63\x81\xf9\x83\xc3\xc1\x59\x60\x30\x16\x98\x3f\x38\x1c\x9c\x05\x06\x63\x81\x39\x6d\xb1\xb9\x7a\x8d\x05\xe6\xb4\xc5\xe6\xea\x35\x16\x98\xd3\x16\x9b\xab\xd7\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\xb4\xe5\xe2\xea\x35\x16\x98\xf3\x96\x8b\xab\xd7\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\xfe\xe0\x70\x70\x16\x18\x8c\x05\xe6\x0f\x0e\x07\x67\x81\xc1\x58\x60\x2e\x5b\x2e\xae\x3f\x63\x81\xb9\x6c\xb9\xb8\xfe\x8c\x05\xe6\xb2\xe5\xe2\xfa\x33\x16\x98\xcb\x96\x8b\xeb\xcf\x68\x5e\x2e\x5b\x2e\xae\x3f\xa3\x79\xb9\x6c\xb9\xb8\xfe\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\xba\xe5\xe2\xfa\x33\x9a\x97\xeb\x96\x8b\xeb\xcf\x68\x5e\xae\x5b\x2e\xae\x3f\xa3\x79\xb9\x6d\xb9\xb8\xfe\x8c\xe6\xe5\xb6\xe5\xe2\xfa\x33\x9a\x97\xdb\x96\x8b\xeb\xcf\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xee\x5b\x2e\xae\x3f\xa3\x79\xb9\x6f\xb9\xb8\xfe\x8c\xe6\xe5\xbe\xe5\xe2\xfa\x33\x9a\x97\xfb\x96\x8b\xeb\xcf\x68\x5e\xee\x5b\x2e\xae\x3f\xa3\x79\xb9\x6f\xb9\xb8\xfe\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xfe\xe0\x70\x70\x9a\x17\x8c\xe6\xe5\x0f\x0e\x07\xa7\x79\xc1\x68\x5e\xde\x70\xd8\x69\x5e\x30\x9a\x97\x37\x1c\x76\x9a\x17\x8c\xe6\xe5\x0d\x87\x9d\xe6\x05\xa3\x79\x79\xc3\x61\xa7\x79\xc1\x68\x5e\xde\x70\xd8\x69\x5e\x30\x9a\x97\x37\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0d\x87\x9d\xe6\x05\xa3\x79\x65\xc3\x61\xa7\x79\xc1\x68\x5e\xd9\x70\xd8\x69\x5e\x30\x9a\x57\x36\x1c\x76\x9a\x17\x8c\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xf9\xe0\x70\x74\x9a\x17\x8d\xe6\x95\xbf\x12\x0e\x47\x67\x81\xd1\x58\x60\xf9\xe0\x70\x74\x16\x18\x8d\x05\x96\xb4\xc5\x76\x79\x9a\xa9\x29\x6d\xb1\xdd\x9e\x66\x6a\x4a\x5b\x6c\x8f\xa7\x99\x9a\xd2\x16\xdb\xf4\x34\x53\x53\xda\x62\x7b\x3d\xcd\xba\xd9\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\x4b\xde\x72\x71\xfd\x19\x0b\x2c\x79\xcb\xc5\xf5\x67\x2c\xb0\xe4\x2d\x17\xd7\x9f\xb1\xc0\x92\xb7\x5c\x5c\x7f\xc6\x02\x4b\xde\x72\x71\xfd\x19\x0b\x2c\x65\xcb\xc5\xf5\x67\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xb3\xc0\x68\x2c\xb0\x7c\x70\x38\x3a\x0b\x8c\xc6\x02\xcb\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\xd4\x2d\x17\xd7\x9f\xd1\xbc\x52\xb7\x5c\x5c\x7f\x46\xf3\x4a\xdd\x72\x71\xfd\x19\xcd\x2b\x75\xcb\xc5\xf5\x67\x34\xaf\xd4\x2d\x17\xd7\x9f\xd1\xbc\x52\xb7\x5c\x5c\x7f\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\x4a\xdb\x72\x71\xfd\x19\xcd\x2b\x6d\xcb\xc5\xf5\x67\x34\xaf\xb4\x2d\x17\xd7\x9f\xd1\xbc\xd2\xb7\x5c\x5c\x7f\x46\xf3\x4a\xdf\x72\x71\xfd\x19\xcd\x2b\x7d\xcb\xc5\xf5\x67\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7c\x70\x38\x3a\xcd\x8b\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x8c\x2d\x17\xd7\x9f\xd1\xbc\x32\xb6\x5c\x5c\x7f\x46\xf3\xca\xd8\x72\x71\xfd\x19\xcd\x2b\x63\xcb\xc5\xf5\x67\x34\xaf\x8c\x2d\x17\xd7\x9f\xd1\xbc\x32\xb6\x5c\x5c\x7f\x46\xf3\xca\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\x07\x87\xa3\xd3\xbc\x68\x34\xaf\x7e\x70\x38\x3a\xcd\x8b\x46\xf3\xea\xb1\xe5\xe2\xfa\x33\x9a\x57\xc3\x96\x8b\xeb\xcf\x68\x5e\x0d\x5b\x2e\xae\x3f\xa3\x79\x35\x6c\xb9\xb8\xfe\x8c\xe6\xd5\xb0\xe5\xe2\xfa\x33\x9a\x57\xc3\x96\x8b\xeb\xcf\x68\x5e\xfd\xe0\x70\x74\x9a\x17\x8d\xe6\xd5\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xfd\xe0\x70\x74\x9a\x17\x8d\xe6\xd5\x0f\x0e\x47\xa7\x79\xd1\x68\x5e\xfd\xe0\x70\x74\x9a\x17\x8d\xe6\xd5\x0d\x87\x9d\xe6\x45\xa3\x79\x75\xc3\x61\xa7\x79\xd1\x68\x5e\xdd\x70\xd8\x69\x5e\x34\x9a\x57\x37\x1c\x76\x9a\x17\x8d\xe6\xd5\x0d\x87\x9d\xe6\x45\xa3\x79\x75\xc3\x61\xa7\x79\xd1\x68\x5e\xdd\x70\xd8\x69\x5e\x34\x9a\x57\x37\x1c\x76\x9a\x17\x8d\xe6\xd5\xbf\x16\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xba\xe1\xb0\xb3\xc0\x68\x2c\xb0\x6e\x38\xec\x2c\x30\x1a\x0b\xac\x1b\x0e\x3b\x0b\x8c\xc6\x02\xeb\x86\xc3\xce\x02\xa3\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x2c\x30\x19\x0b\xac\x1f\x1c\x4e\xce\x02\x93\xb1\xc0\xfa\xc1\xe1\xe4\x34\x2f\x19\xcd\xab\x1f\x1c\x4e\x4e\xf3\x92\xd1\xbc\x5a\xb6\x5c\x2e\x4f\x33\x3d\x94\x2d\x97\xdb\xd3\x4c\x0f\x65\xcb\xe5\xf1\x34\xd3\x43\xd9\x72\x99\x9e\x66\x7a\xa8\x5b\x2e\xaf\xa7\x59\x3f\xfa\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\x6d\x5b\x2e\xae\x3f\xa3\x79\xb5\x6d\xb9\xb8\xfe\x8c\xe6\xd5\xb6\xe5\xe2\xfa\x33\x9a\x57\xdb\x96\x8b\xeb\xcf\x68\x5e\x6d\x5b\x2e\xae\x3f\xa3\x79\xb5\x6d\xb9\xb8\xfe\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\xbe\xe5\xe2\xfa\x33\x9a\x57\xfb\x96\x8b\xeb\xcf\x68\x5e\xed\x5b\x2e\xae\x3f\xa3\x79\x75\x6c\xb9\xb8\xfe\x8c\xe6\xd5\xb1\xe5\xe2\xfa\x33\x9a\x57\xc7\x96\x8b\xeb\xcf\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xd5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfd\xe0\x70\x72\x9a\x97\x8c\xe6\xb5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\xfb\xe0\x70\x72\x9a\x97\x8c\xe6\xb5\x0f\x0e\x27\xa7\x79\xc9\x68\x5e\x3b\xb6\x5c\x5c\x7f\x46\xf3\xda\xb1\xe5\xe2\xfa\x33\x9a\xd7\x8e\x2d\x17\xd7\x9f\xd1\xbc\x76\x6c\xb9\xb8\xfe\x8c\xe6\xb5\x63\xcb\xc5\xf5\x67\x34\xaf\x1d\x5b\x2e\xae\x3f\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\x2d\x6c\xb9\xb8\xfe\x8c\xe6\xb5\xb8\xe5\xe2\xfa\x33\x9a\xd7\xe2\x96\x8b\xeb\xcf\x68\x5e\x8b\x5b\x2e\xae\x3f\xa3\x79\x2d\x6e\xb9\xb8\xfe\x8c\xe6\xb5\xb8\xe5\xe2\xfa\x33\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\x83\xc3\xc9\x69\x5e\x32\x9a\xd7\x3e\x38\x9c\x9c\xe6\x25\xa3\x79\xed\xaf\x84\xc3\xc9\x59\x60\x32\x16\xd8\x3e\x38\x9c\x9c\x05\x26\x63\x81\xed\x83\xc3\xc9\x59\x60\x32\x16\xd8\x3e\x38\x9c\x9c\x05\x26\x63\x81\xed\x83\xc3\xc9\x59\x60\x32\x16\xd8\x3e\x38\x9c\x9c\x05\x26\x63\x81\xed\x83\xc3\xc9\x59\x60\x32\x16\xd8\xd2\x16\x9b\xab\xd7\x58\x60\x4b\x5b\x6c\xae\x5e\x63\x81\x2d\x6d\xb1\xb9\x7a\x8d\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\x4b\x5b\x2e\xae\x5e\x63\x81\x2d\x6f\xb9\xb8\x7a\x8d\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\xfb\xe0\x70\x72\x16\x98\x8c\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\xfb\xe0\x70\x72\x16\x98\x8c\x05\xb6\x0f\x0e\x27\x67\x81\xc9\x58\x60\xdb\x70\xd8\x59\x60\x32\x16\xd8\x36\x1c\x76\x16\x98\x8c\x05\xb6\x0d\x87\x9d\x05\x26\x63\x81\x6d\xc3\x61\x67\x81\xc9\x58\x60\xdb\x70\xd8\x59\x60\x32\x16\xd8\x36\x1c\x76\x16\x98\x8c\x05\xb6\x0d\x87\x9d\x05\x26\x63\x81\x6d\xc3\x61\x67\x81\xc9\x58\x60\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0d\x87\x9d\xe6\x25\xa3\x79\x6d\xc3\x61\xa7\x79\xc9\x68\x5e\xdb\x70\xd8\x69\x5e\x32\x9a\xd7\x36\x1c\x76\x9a\x97\x8c\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\x0f\x0e\x67\xa7\x79\xd9\x68\x5e\xfb\xe0\x70\x76\x9a\x97\x8d\xe6\xb5\xbe\xe5\x72\x79\x9a\xe9\xa1\x6f\xb9\xdc\x9e\x66\x7a\xe8\x5b\x2e\x8f\xa7\x99\x1e\xfa\x96\xcb\xf4\x34\xd3\x43\xdf\x72\x79\x3d\xcd\xfa\xd1\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\x07\x87\xb3\xd3\xbc\x6c\x34\xaf\x7d\x70\x38\x3b\xcd\xcb\x46\xf3\xda\xd8\x72\x71\xfd\x19\xcd\x6b\x63\xcb\xc5\xf5\x67\x34\xaf\x8d\x2d\x17\xd7\x9f\xd1\xbc\x7e\x6c\xb9\xb8\xfe\x8c\xe6\xf5\x63\xcb\xc5\xf5\x67\x34\xaf\x1f\x5b\x2e\xae\x3f\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\x3d\x6c\xb9\xb8\xfe\x8c\xe6\xf5\xb0\xe5\xe2\xfa\x33\x9a\xd7\xc3\x96\x8b\xeb\xcf\x68\x5e\x0f\x5b\x2e\xae\x3f\xa3\x79\x3d\x6c\xb9\xb8\xfe\x8c\xe6\xf5\xb0\xe5\xe2\xfa\x33\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\xaf\x84\xc3\xd9\x59\x60\x36\x16\xd8\xe3\x16\x9b\xab\xd7\x58\x60\x4f\x5b\x6c\xae\x5e\x63\x81\x3d\x6d\xb1\xb9\x7a\x8d\x05\xf6\xb4\xc5\xe6\xea\x35\x16\xd8\xd3\x16\x9b\xab\xd7\x58\x60\x4f\x5b\x6c\xae\x5e\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\x3d\x6f\xb9\xb8\xfe\x8c\x05\xf6\xbc\xe5\xe2\xfa\x33\x16\xd8\xf3\x96\x8b\xeb\xcf\x58\x60\xcf\x5b\x2e\xae\x3f\x63\x81\x3d\x6f\xb9\xb8\xfe\x8c\x05\xf6\xb2\xe5\xe2\xfa\x33\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x59\x60\x36\x16\xd8\x3f\x38\x9c\x9d\x05\x66\x63\x81\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\xeb\x96\x8b\xeb\xcf\x68\x5e\xaf\x5b\x2e\xae\x3f\xa3\x79\xbd\x6e\xb9\xb8\xfe\x8c\xe6\xf5\xba\xe5\xe2\xfa\x33\x9a\xd7\xeb\x96\x8b\xeb\xcf\x68\x5e\xaf\x5b\x2e\xae\x3f\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x3f\x38\x9c\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xd9\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\x7d\xc3\x61\xa7\x79\xd9\x68\x5e\xdf\x70\xd8\x69\x5e\x36\x9a\xd7\x37\x1c\x76\x9a\x97\x8d\xe6\xf5\x0d\x87\x9d\xe6\x65\xa3\x79\xfd\x83\xc3\xc5\x69\x5e\x31\x9a\xd7\x3f\x38\x5c\x9c\xe6\x15\xa3\x79\xe3\x83\xc3\xc5\x69\x5e\x31\x9a\x37\x3e\x38\x5c\x9c\xe6\x15\xa3\x79\xe3\x83\xc3\xc5\x69\x5e\x31\x9a\x37\x3e\x38\x5c\x9c\xe6\x15\xa3\x79\xe3\x83\xc3\xc5\x69\xde\x0a\x76\xd2\x4c\x2e\x65\x74\x9d\xa2\xa4\xa0\x9e\xab\xd9\xd2\xb6\x1e\x8a\xd1\x84\xc1\x7d\x21\x44\x9c\x9e\x76\x5a\x5a\xff\xd2\x2e\x4f\xbb\x2c\x6d\x7c\x69\xb7\xa7\x49\x0f\x83\x7b\xf6\x88\x78\x3c\xed\xb1\xb4\xf0\xa5\x4d\x4f\x9b\x96\x16\xbf\xb4\xd7\xd3\x5e\x4b\x4b\x96\xe6\x34\xa1\x18\x4d\x18\x5c\x55\x46\x84\xeb\xcf\x68\x82\xee\x6b\x21\xc2\xf5\x67\x34\x41\x37\x93\x10\xe1\xfa\x33\x9a\xa0\xeb\x3c\x88\x70\xfd\x19\x4d\x18\xe1\x93\x8b\xd3\x84\x62\x34\x61\x84\x4f\x2e\x4e\x13\x8a\xd1\x04\x5d\xb6\x4a\x84\xeb\xcf\x68\xc2\x88\x9f\x5c\x9c\x26\x14\xa3\x09\x3a\x69\x99\x08\xd7\x9f\xd1\x04\x9d\x0b\x4d\x84\xeb\xcf\x68\x82\x4e\x25\x26\xc2\xf5\x67\x34\x61\xc4\x2d\x17\xd7\x9f\xd1\x84\x11\xb7\x5c\x5c\x7f\x46\x13\x46\xdc\x72\x71\xfd\x19\x4d\x18\xb1\x87\xbf\x06\x0e\x17\x67\x11\xc5\x58\xc4\x88\x9f\xd8\x9c\x45\x14\x63\x11\x23\x7d\x62\x73\x16\x51\x8c\x45\x8c\xf4\x89\xcd\x59\x44\x31\x16\x31\xd2\x27\x36\x67\x11\xc5\x58\xc4\x48\x9f\xd8\x9c\x45\x14\x63\x11\xba\xf0\x9e\x08\x57\xaf\xb1\x88\x91\x3e\xb1\x39\x8b\x28\xc6\x22\x74\x39\x36\x11\xae\x5e\x63\x11\xba\x8c\x9a\x08\x57\xaf\xb1\x88\x91\xbe\xe6\xe4\x34\xa1\x18\x4d\x18\x69\xcb\xc5\xd5\x6b\x34\x61\xe4\x2d\x17\x57\xaf\xd1\x84\x91\xb7\x5c\x5c\xbd\x46\x13\x46\xde\x72\x71\xf5\x1a\x4d\x18\x79\xcb\xc5\xd5\x6b\x34\x61\xe4\x2d\x17\xd7\x9f\xd1\x84\x91\x3f\xb9\x38\x4d\x28\x46\x13\x46\xfe\xe4\xe2\x34\xa1\x18\x4d\xd0\x7d\xac\x44\xb8\xfe\x8c\x26\xe8\x52\x52\x22\x5c\x7f\x46\x13\x74\x19\x29\x11\xae\x3f\xa3\x09\xba\xec\x92\x08\xd7\x9f\xd1\x04\xdd\xe2\x46\x84\xeb\xcf\x68\x82\xae\xad\x24\xc2\xf5\x67\x34\x41\xd7\x27\x12\xe1\xfa\x33\x9a\xa0\xcb\x1b\x89\x70\xfd\x19\x4d\x18\x65\xcb\xc5\xf5\x67\x34\x41\x77\xe2\x11\xe1\xfa\x33\x9a\xa0\x9b\xe7\x88\x70\xfd\x19\x4d\xd0\x25\x6e\x44\xb8\xfe\x8c\x26\xe8\xe2\x33\x22\x5c\x7f\x46\x13\x74\x60\x2d\x11\xae\x3f\xa3\x09\x3a\x39\x74\x45\x38\x4d\x28\x46\x13\x74\x3e\x2b\x11\xae\x3f\xa3\x09\x3a\xbb\x94\x08\xd7\x9f\xd1\x04\x9d\x10\x4a\x84\xeb\xcf\x68\xc2\xa8\x9f\x5c\x9c\x26\x14\xa3\x09\xa3\x7e\x72\x71\x9a\x50\x8c\x26\xe8\x16\x16\x22\x5c\x7f\x46\x13\x74\xcf\x08\x11\xae\x3f\xa3\x09\xa3\x7e\x72\x71\x9a\x50\x8c\x26\x8c\xf6\xc9\xc5\x69\x42\x31\x9a\x30\xda\x96\x8b\xeb\xcf\x68\x82\xae\x5f\x26\xc2\xf5\x67\x34\x61\xb4\x2d\x17\xd7\x9f\xd1\x04\x5d\x15\x44\x84\xeb\xcf\x68\x82\x4e\xbc\x24\xc2\xf5\x67\x34\x41\x07\x98\x13\xe1\xfa\x33\x9a\xa0\xb3\xc7\x57\x84\xd3\x84\x62\x34\x41\x87\x46\x13\xe1\xfa\x33\x9a\xa0\x63\xba\x89\x70\xfd\x19\x4d\xd0\x41\xda\x44\xb8\xfe\x8c\x26\xe8\xe8\x6a\x22\x5c\x7f\x46\x13\xb8\x91\x48\x11\xae\x3f\xa3\x09\xba\x66\x82\x08\xd7\x9f\xd1\x04\x1d\x1b\x4a\x84\xeb\xcf\x68\x82\xee\x7f\x27\xc2\xf5\x67\x34\x61\xf4\x4f\x2e\x4e\x13\x8a\xd1\x04\x9d\xd8\x4a\x84\xeb\xcf\x68\xc2\xe8\x5b\x2e\xae\x3f\xa3\x09\xa3\x6f\xb9\xb8\xfe\x8c\x26\x8c\xb1\xe5\xe2\xfa\x33\x9a\x30\xc6\x96\x8b\xeb\xcf\x68\xc2\x18\x5b\x2e\xae\x3f\xa3\x09\x63\x7c\x72\x71\x9a\x50\x8c\x26\x8c\xf1\xc9\xc5\x69\x42\x31\x9a\x30\xc6\x27\x17\xa7\x09\xc5\x68\xc2\x18\x9f\x5c\x9c\x26\x14\xa3\x09\x63\x7c\x72\x71\x9a\x50\x8c\x26\x8c\xf1\xc9\xc5\x69\x42\x31\x9a\xa0\xeb\xc7\x89\x70\xfd\x89\x26\xa4\xe3\xf8\xe4\xe2\x34\xa1\x88\x26\xa4\xe3\xf8\xe4\xe2\x34\xa1\x88\x26\xa4\xe3\xf8\xe4\xe2\x34\xa1\x88\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\xe3\xd8\x72\x71\xfd\x89\x26\xa4\x63\xc3\x61\xa7\x09\x45\x34\x21\x1d\x1f\x1c\xae\x4e\x13\xaa\x68\x42\x3a\x3e\x38\x5c\x9d\x26\x54\xd1\x84\x74\x7c\x70\xb8\x3a\x4d\xa8\xa2\x09\xe9\xf8\xe0\x70\x75\x9a\x50\x45\x13\xd2\xf1\xc1\xe1\xea\x34\xa1\x8a\x26\xa4\xe3\x83\xc3\xd5\x69\x42\xed\xa6\x87\x0f\x0e\x57\xa7\x09\xb5\x9b\x1e\x3e\x38\x5c\x7d\x36\xa8\x76\xd3\xc3\x07\x87\xab\xcf\x06\xd5\x6e\x7a\xf8\xe0\x70\xf5\xd9\xa0\xda\x4d\x0f\x61\xcb\xe5\xf2\x34\xd3\x43\xd8\x72\xb9\x3d\xcd\xf4\x10\xb7\x5c\x1e\x4f\x33\x3d\xc4\x2d\x97\xe9\x69\x33\x35\xd2\xb6\x5c\xde\x14\xbe\xb4\xd7\x9e\xe3\xf0\x4e\x4e\x12\xda\xcf\x69\x36\x28\x1d\x1c\x48\x4f\x84\xeb\x6f\x98\xfe\x62\xfe\xd2\x5c\x7f\xc3\xf4\x17\xcb\x97\xe6\xfa\x1b\xa6\x3f\x6e\x03\x26\xc2\xf5\x37\x72\x2a\xa4\xb5\xfe\x57\xc0\x61\x9d\x47\xca\x35\xf7\xe1\x2b\xaa\x70\x66\x6d\xac\x81\xb8\xd6\x56\x5c\x15\xab\x6b\x89\x38\x89\xb5\x15\xc5\x8d\x15\x97\x0e\x9e\x6d\x97\xe2\x38\xa3\x94\x8b\x34\x3a\x97\xcb\xaf\x3f\x51\x71\x95\x38\x95\xd1\x5f\xc5\xf1\xec\x50\xbe\x33\x13\x27\x26\x7a\x72\xb6\x6e\xbc\x1b\x71\x62\x99\x37\xe7\xa5\xc6\x79\x10\xd7\x61\x97\x53\x75\xd1\xd9\xa8\x59\x75\xd1\xd9\xa8\xf1\xe5\x3b\xb2\xca\x7d\xf5\x1d\x6f\x25\x4e\x4c\xf8\xbd\x15\x37\x15\x57\xfe\xf0\x5b\xe7\x3e\xf9\xf5\x27\x2b\x6e\x10\x57\x15\x47\x5d\x72\x8a\xc4\x0d\xc5\x5d\x8a\xcb\xc4\x3d\xc4\x49\xa6\x39\x2d\xf9\x25\xc9\x34\x15\x95\x9b\x13\x71\x5d\x71\x8f\xe2\x2a\x71\x2f\x71\x55\xe5\x16\xca\xa8\x9c\xe7\xca\x8d\xf2\x2b\x6e\x7d\x1b\xb7\xc8\xaf\x3f\xaa\x0b\xe7\x29\x27\xc9\x39\xe9\xcc\x58\x2e\xf0\xef\x49\x67\xc6\xa6\xce\x79\xb3\x5c\xd9\xd0\xb9\x03\x7e\xfd\x91\xac\x90\x5f\xea\xc8\x8a\x3b\xdd\x83\xee\x03\xed\xdc\xe3\xbe\xfe\xa8\x7e\x83\x67\x87\xea\x77\x52\x86\xa0\x6e\x3a\x55\xc6\x79\x2a\x8e\xfa\x9d\xb7\xe2\x78\x96\x6b\xe5\x7b\xba\x54\xbf\x6b\x28\x8e\x72\x2f\xd5\xe5\xa6\x7e\xdc\xdf\xd5\x93\xf4\x9b\x74\xa6\x6d\x91\xfc\x74\xa6\x6d\x92\x8e\x04\x41\xb3\xda\x2e\x97\xb8\xaf\xb8\x25\x03\x2e\x6e\xff\xad\xe7\x46\xdb\xe0\x44\xfe\x9e\x5b\x54\x1c\xdf\xc6\x01\xf4\x3d\xab\xed\xe6\x56\x15\xc7\xb3\xad\x2b\x8e\x32\x04\x1f\xb3\xce\xe1\xe5\xd2\xf3\x15\xd7\x89\x4b\x8a\xe3\xdb\xe4\x59\xe5\xd2\xf2\xdf\x7a\x1e\xca\x87\x29\xe3\xd2\x98\xf5\xe7\x56\x5c\x26\x0e\x39\x73\x67\x79\x38\xb8\x80\xaf\x67\xc9\x2f\x9f\x5d\x71\xd4\xef\x44\x06\xf9\xce\x8a\xa3\x7e\x37\xed\x2f\x3f\xb4\xab\x76\x2c\x1d\xe5\xe7\x52\x1c\x65\xb4\x18\x89\x53\x19\x73\x28\x8e\x72\xa7\xf2\x4d\xea\xdc\x12\xcf\x4e\xd5\xf9\x3d\x14\x47\x19\xaf\x64\x25\x39\x0b\x2a\x16\xc9\x99\x1b\xd1\xc3\xc1\x39\xf0\x9d\x2b\x6a\xd6\x1f\xbd\x8f\x73\x8c\x8b\xda\x2e\x77\x96\x87\x43\xb0\xaf\xa8\xed\x16\xc9\x94\xcb\xbc\x7a\x91\x4c\xb9\x60\x26\xe8\xd6\xc6\x5e\x7a\x57\xdc\xa9\xb8\x41\x1c\x6d\xa8\x48\xa6\x5c\x3a\xd9\xcb\x48\x8a\x2b\x8a\xe3\x7d\x83\x3e\x58\x4e\xe5\xa3\x5f\x96\x53\xf9\x2e\xc5\xe9\x3b\x2e\xc5\xe9\xdb\x7a\x59\x32\xa8\xfa\x36\x6e\x06\x0f\xba\x04\xaf\x73\x83\xcc\x6f\xbd\x16\xda\xcb\xe0\x4c\xe5\xaa\xef\xad\x95\xfe\x26\xd8\xc3\x0d\xdf\xbf\xf5\xaa\x6f\x93\x87\xaf\xea\xdb\xaa\xea\x37\xe8\x33\xdc\xbc\xb2\xfe\x2c\xfd\x86\x83\x76\xcf\x45\x2b\xbf\x75\x2e\x49\x59\x71\xd4\xe5\x44\xf6\xf5\x1e\xc4\xd1\x17\xea\x8d\x4c\xeb\xa3\x7c\x75\xb5\xe7\xfa\x28\xdf\x52\xfd\x8a\x6b\xc4\xa1\xf3\x3a\x95\x8f\x36\x54\xa7\xf2\xcd\x46\x1c\x5e\xc6\x3a\x55\x67\xda\x41\x38\xe8\xe7\x55\xed\xa0\x2e\xd3\x18\x82\xa0\x44\x7d\xf5\xbd\xc8\x2a\x1c\x63\xe5\x6b\x99\xbe\xc5\xd5\xdc\x61\x15\x4c\x5c\x51\x5c\x57\xdc\x20\xee\x51\x1c\xcf\x72\x4b\x6b\xe7\x7e\xee\xf5\xa7\x2a\x8e\x67\x65\xff\xb8\xc7\x25\x84\xc0\xf7\x72\x0d\xcb\xfa\x53\x14\xd7\x88\x43\x7e\xad\x29\x1f\x3a\x6a\x1a\x67\xb8\x78\x25\x04\xc1\x8a\xa6\x7e\xc9\xcd\xd9\x2b\xae\x10\xa7\x7c\x5d\xf9\xf0\xd0\x36\xf5\x55\x6e\xc9\x5e\x71\xbc\x4f\x7d\xb5\x8d\xa6\x38\xea\xa7\x76\xd5\x86\x9e\x45\xbf\x4d\xfd\xb7\x9d\x7a\xb6\xf1\x6d\xa7\x9e\x3d\xf5\x6d\xf4\xd5\x76\xea\xdb\x2e\xe5\xc3\xee\xb6\xab\x2a\xee\x24\x6e\xf0\xec\x75\x2b\x4e\xb2\xe2\x0c\xfb\x76\xeb\x3b\xd4\x0e\xe2\x81\x5c\x6e\xc9\xf4\x26\x9f\x26\xaf\xdb\x23\x99\x3e\x41\x71\xf1\xf7\x87\xfb\xf6\xa8\x0a\x8f\x5e\x1d\x10\x91\x4c\x48\x63\x48\x0c\x5c\x2b\xd7\xdb\x6b\x71\x2a\x0e\xb3\xd7\x35\x24\x76\xa9\x3f\x32\x34\xf5\x8c\x6a\x7a\x53\x3e\x44\xde\xd5\x05\x3a\x66\x3e\xc8\x43\xd6\x65\xe6\xfb\x4d\x93\xe5\xb6\xf3\xde\xf5\x49\xfd\xe1\x7d\x89\xa6\xd8\x9f\xa2\x38\xea\x92\x46\x22\xae\x2b\x6e\x2a\x8e\x32\xa6\xca\x98\xcb\x3c\x86\x7c\x50\x97\xc9\xb7\x75\x86\xfb\xc0\xf5\xe2\xbd\xbf\x59\x71\x34\x09\x6e\x97\xea\x5d\x43\x49\xd7\xb7\xc9\x1b\x35\x64\x06\x46\x3e\x15\xb7\xf2\x0d\x0d\x25\x03\x33\xa0\x6b\xa0\xfa\x90\x19\x18\xe5\x56\xdc\xaa\x0b\xf7\x69\xaf\x3f\x8a\xc3\x3c\x8e\x4a\x33\x19\x0c\x43\x81\x8b\xba\xfb\xd0\x30\x34\x1a\x32\xd0\x44\x2c\xf7\x58\xaf\x3f\xaa\x0b\x5d\x74\x48\x7e\xa3\xab\x2e\x34\x9d\x21\x53\x38\x64\x42\x32\x72\x19\x32\x21\xdc\x1d\x1d\x02\xd7\xcc\xf7\xa1\xe1\x79\x30\x3c\x07\x4d\xbe\x8e\x73\x28\x6e\x2a\x6e\xe9\x72\x5c\x2a\x43\x3a\xe2\xa2\xb6\x3e\xa4\xa3\x71\xe9\x7d\x40\x99\x71\x4b\x06\x77\x52\x1c\xdf\x71\xeb\x7d\xb7\xf2\x61\x5a\x87\xcc\xd4\x90\x99\x2a\x40\x99\x21\x33\x35\x9e\xa6\x38\xca\x7d\xf4\xec\xc3\xb7\x15\xc9\xea\xd1\xb7\xc9\xfc\x14\xcc\xf2\x90\xf9\x19\xd2\x91\x26\x60\x4f\xb5\x3f\x6e\xb9\x09\x41\x9e\xa6\x53\x43\xce\xc9\x71\xfa\x81\xab\x5c\xfa\xa9\xe3\xf4\x4f\xc9\x94\x7b\x5f\xfa\x29\x99\x9e\x33\x29\x6e\x7d\xc7\x29\xc8\x78\xaa\x0c\x6e\x1c\xe9\x97\xda\xc1\xa5\x36\xce\xcd\x69\xfd\x92\x89\xbb\x64\xe2\xb8\xcb\xa9\x5f\x99\x32\x2e\x99\x24\x0d\x75\x97\x4c\xd2\xa5\x72\xb9\x5c\xae\x5f\x2a\xf7\xea\xe8\x9c\xeb\x54\xfa\xd5\xd1\xf9\x25\xbd\x71\x83\x4c\xbf\xa4\xb7\x4b\xe6\xa2\x63\x92\xae\x2b\x2b\x8e\x72\x7b\x57\x9c\xca\x95\x8e\x7a\xa7\x2e\x97\x9e\xbd\xd1\xb9\x3c\x07\x97\x20\xd4\xa5\xbe\xc5\x9d\xce\xfd\x52\xdf\xba\x34\x6c\x8c\x43\x71\xaa\x8b\xfa\x11\x37\xcb\xf6\x4b\xfd\xe8\x9a\xe8\x88\x7b\xa9\xfa\x35\x6f\xc5\xbd\x8a\xe3\xd9\x97\xb6\x71\x49\x7e\x5c\x13\xdb\x6f\xc9\xef\x96\xfc\x06\x32\xbd\x25\xbf\x5b\xc3\x81\x86\xce\x5b\xc3\xc1\xad\xe1\x40\x9e\x82\x5b\xc3\x01\xf7\x56\xaf\xb8\x4e\x1c\xf5\xbb\x25\xd3\x01\xcc\xb8\x25\x53\x6e\xa2\x09\x91\x9b\x4c\xfb\x2d\x58\x70\xd3\x3f\xe2\x41\x3f\xbf\x07\xfa\xb8\x81\x05\xf1\x00\xd6\xdf\x32\xcb\xf7\x12\xd9\xb2\xac\xd4\x59\x6d\xfc\x7e\x94\xaf\x50\x67\xd9\xc9\xfb\xd1\xfb\x1a\xcf\x3e\xc8\xf4\x7e\x2d\x8e\xfa\xbd\x16\xb7\xea\x17\x35\xfc\x3d\x92\x01\x57\xcb\x84\xa8\xe1\xef\x69\x55\x71\xd4\x59\xc3\xcb\xd3\x6e\xc5\xe9\x59\x18\xee\xa3\x6f\x7b\x16\x6a\x5f\x71\x3c\xdb\x87\xe2\x94\x8f\x76\xc0\x15\x33\xeb\xcf\xa3\xb8\x4e\x1c\xed\xe0\xa1\xbd\x44\x2e\x13\xef\x8f\xda\xcb\x33\xf9\x36\xae\x86\xec\x8f\xda\xfd\xb3\xd4\x1c\x22\xb7\xae\xf7\x67\x22\x97\xe7\x55\x9c\xea\xf2\x5a\x1c\x65\x44\xec\xf3\xd4\xb7\xcd\xa5\xd2\x10\x23\xf0\x66\x6a\x0c\xe0\xea\xe8\x15\xb7\xca\x98\x05\xd9\x4f\xe0\x52\x4c\x8c\x33\x53\x70\x89\x1b\xa0\x43\x4c\xd4\x65\x36\x64\x3f\x25\x83\x84\xcd\x99\xa2\x31\x73\x20\x2b\xee\x4b\xeb\x73\xdc\x8a\x53\x3e\xe4\x32\x4f\xd5\x65\x21\xbd\x15\xd7\x88\x2b\x8a\xe3\x3b\x34\xb3\x31\xa5\xf3\x79\x5e\x8a\x4b\xc4\x21\xab\xb9\x46\xdf\x15\x47\x19\xea\x47\xf3\x46\x6f\x1a\x53\xa6\x20\xf7\xbc\x6f\xc5\x51\x86\x6c\xdd\x7c\xf8\x5e\xae\x35\xec\x53\x63\xd4\x9c\x94\xa1\x31\x65\x4e\xda\xee\x54\xdb\xd0\xec\xc5\x2b\xf9\xbd\x05\x7d\xe8\x8a\x1c\x2e\x6c\x5e\x7f\x54\x06\xdf\xf1\x16\xc6\x8f\xb7\xf2\x6d\x5c\xa8\xd7\xdf\xca\xb7\xbd\x92\x55\xee\xe3\xf7\x87\xfb\x57\xcd\x89\x3b\x97\x43\x2c\xa8\xe1\x55\x73\x7a\x17\xe0\x59\xa3\xf8\xfa\xcc\x77\x74\xc5\x21\x72\xee\xcc\xef\xaf\x90\xce\x0b\x42\x8d\x05\x76\xf0\x0a\xa1\xbe\x12\x5b\xc1\xb4\xbe\x97\xf2\x31\x44\xc4\x42\x73\x7a\x6f\x7d\x92\xc4\x56\x5a\x25\x4e\xf9\x18\x0e\x62\xa1\x19\xbf\x1a\x0e\x5e\x89\xa8\xac\xe6\x34\xb8\x80\xf9\xb7\x71\xe8\x33\x59\xef\x32\xb8\x6b\xf8\xb7\x71\x80\xc4\x62\x5d\xc3\xdf\x38\x68\xee\xe3\x60\x08\x8b\x30\x9f\x71\x30\x84\x8d\x43\xdd\x9b\x6b\x9d\xc6\xf1\x7f\x31\x76\xee\xb8\xbb\xf4\x38\x7e\xce\x7b\x15\xbd\x03\xd7\x4d\x17\x02\x07\x93\x38\xb6\xf7\xa0\x2b\x30\xc1\xcc\x34\xda\x33\xfb\x37\xf4\x3c\x6f\x62\x3b\xf8\x1c\x1c\xbc\xf8\xf3\x54\x95\x24\x8a\x22\xf9\x23\x29\xe9\xcc\xe7\xf9\x61\xbc\xa0\x97\xb8\x98\xd6\xb8\x30\x43\x0f\x77\x0e\xc6\x85\x2a\x8c\x8b\x08\xc2\xc3\x9d\x89\x71\x11\x41\x88\x6b\xf9\xbd\xe0\x5d\xd4\x5e\x5c\x2e\x15\xae\x8d\x8c\x8b\xa5\x12\x97\xe3\xe0\x72\xc7\xf0\xa6\x97\xb8\xbf\x5b\x5a\x40\x7b\xa5\xd1\x2e\x41\xec\xb8\x3f\xda\xb8\x41\x57\xde\x12\x12\x5c\x71\x7c\x7e\x5e\x69\x2f\xb4\x2c\xad\x4a\x4b\xd0\xba\xb4\x21\xad\x42\xf3\x7b\xd9\xef\xc1\xbf\x3b\x7f\xd2\xa6\xb4\x0f\x1a\xfc\xbb\x0b\xb2\x51\x3f\x68\xa5\x48\x83\xa7\x04\xbd\xe3\xc6\x45\x09\x6f\xa7\x79\xb8\xd0\x3b\xbc\x9d\x26\xb8\xae\xf8\xd0\x32\xb4\x24\xcd\xbe\x64\xda\xad\xf6\x25\xec\x4b\xa6\x7f\x61\x5f\x02\xfe\x71\x07\x7b\x70\x29\xf1\xf9\x91\x2f\x85\xb1\xb1\xe4\xe3\x6e\x8e\x97\xf9\xb8\x9b\x34\xe7\x1c\x53\x17\x77\xff\xd1\xe8\x1f\x17\xc5\xc7\x3d\xec\x9f\x4b\x99\x9b\xb5\xe3\x1e\xb6\xab\x4c\x86\xbc\x1f\xf6\x6f\x30\xbf\x21\xef\x51\xf3\x71\x4f\xbf\x27\x9f\x97\xdf\x53\x8d\x86\x3c\x5d\xce\x25\x28\xfb\x01\x39\xc6\xbd\x9c\x0f\xe5\x25\x5e\xe6\x7c\xfb\x9c\xb2\x11\xc7\xdc\x87\x51\xb7\x78\xe4\x69\x20\x7f\x8f\x3c\x7d\xfa\x99\x0f\x6f\xff\x88\xa7\x33\x1f\x0f\xae\xd6\x7b\x1d\xb5\x17\xcf\x44\xfe\x1e\x4c\xfb\x7b\x1d\x75\x1b\x0f\xa6\x3d\x1e\xfa\xfc\x12\xf0\x8d\x67\xf9\x1c\xea\xfb\x25\xd0\x1b\xaf\xed\xbe\x44\x4c\xbc\x11\x23\x5e\xdc\xdc\x78\x91\xa1\xf7\x66\x2e\x5f\x65\xe8\xcd\x3e\xc7\xbc\x11\x7e\x3a\x3f\xf4\x8f\x9b\x88\xe3\x55\x5e\xde\x62\xbb\xcc\xc7\xeb\x38\x08\x32\x1d\x5a\x40\x43\x86\x5e\xd6\xef\xfb\xd8\x97\xb0\x0d\xa2\x7d\x2f\x17\x55\xc7\x8b\xaa\x8e\xb7\x33\x36\x2e\x66\x8e\xb7\x27\x69\x05\xda\xc7\x73\x47\x00\xce\x4f\x83\x96\x18\x47\xf7\x7b\xb8\x41\xef\x93\xce\x9a\x79\x87\xfd\x03\x35\xbd\xd4\x15\xc4\x3b\xed\x1f\x10\xe3\xc5\xfc\xc5\x3b\x6d\x77\xfa\xbd\xc2\xd8\xd4\x07\x2f\x88\xfa\x7d\x0a\xcf\x81\xa8\xe3\x5d\xf6\xaf\xd2\x06\xee\x52\xbc\xc7\x82\x1e\x1a\x7d\xde\x3e\xb7\x7d\x4e\xbe\x6c\x9f\xdb\x21\x8d\x77\x81\x59\xf1\x3a\x47\x4f\x9c\xb1\x19\xd5\x8a\x0f\x17\xca\x6b\x2d\x82\x3b\x94\xcf\xcf\x90\xf6\x41\x5b\xd2\x98\xa3\xf7\x3e\xf2\xf7\xa9\x23\xb8\x5a\xf9\xd0\x12\xb4\x90\xd6\xa4\xd1\x46\xb6\x8d\x6c\x1b\xc8\xda\x07\xca\x8e\x0f\x1d\xf1\xbe\xc8\xfd\xa7\x8e\xf8\x88\x3c\xbe\x2f\x32\xfe\xe1\xe6\x86\x51\xb2\xf7\x45\xc6\x8d\x88\xc5\x47\x44\xe7\xe5\x56\xfb\xf8\xaa\xed\x62\x3f\xde\x97\x79\xfb\xb0\x1f\xf1\xe1\xe6\xbe\x14\x25\xc4\xd7\xed\x73\xf7\x7b\x95\xef\xe1\x92\xc5\x07\x5c\x7c\xb9\x69\x2d\x3e\xe0\x62\x7c\xd8\x8f\xf7\x43\x9f\x7e\xd3\x36\x26\x3c\xf8\x1c\x87\x72\x6f\x04\xeb\xe5\x16\xc2\x30\x82\x15\xc9\x71\x7c\xac\xb7\x44\x04\x35\x8c\x4c\xbd\xe9\x82\xa6\xec\x26\x22\xd5\x2f\x37\xc3\x45\x22\x52\x1d\x09\x57\xeb\xc5\x5e\x06\x37\x17\xff\x89\xe4\x38\x80\x36\x91\xba\xcf\xa1\x9b\xde\x94\xf9\x9e\xf6\x28\x29\x7f\xe9\xc0\x89\x48\xae\xd5\xa4\x5c\x71\x01\x60\x24\xe5\x2a\xe1\x92\xbd\xd9\xbe\xe0\x92\x45\x22\x3a\xf7\xe6\xff\x0f\x74\x1f\x49\xb1\x4b\x1b\x16\x91\x37\x8f\xb4\x43\xda\x94\x76\x3e\x6d\xd0\x2b\x88\x69\xdd\x2f\x97\x84\x46\xc6\x0b\x89\x0c\x3a\x7d\x33\x6a\x3e\xab\xfa\x0d\x70\xbd\xe4\xb0\xc3\x00\x57\x18\x18\x7a\x35\xc5\xc5\xef\x95\x4c\xf7\x35\x61\x25\x57\x69\x7c\x8f\x9b\x27\xa3\x28\x4e\xc5\xef\x71\xc1\x66\x14\xbf\x57\x08\x98\x79\xda\x7e\x14\xcd\x81\x81\x97\x37\x30\xa7\x06\x5e\xc2\xc0\xcb\x1b\xb0\xc8\xc0\x4b\x18\x3c\x79\x83\x25\x50\x54\xfd\x85\x00\xd7\xab\x0a\x2e\xcb\x76\x31\xd9\x6f\xb0\x44\x8b\x26\xdb\x08\xc7\x1b\x8c\xa3\x3a\x8e\x4a\xd0\xdf\x93\xea\x83\x9b\x7a\xcf\x4f\x95\x96\xa0\x35\x69\x4b\xda\x99\x7e\x6e\xee\xfd\x13\x15\xc4\xff\x5d\x37\xdf\x2b\x9f\x34\x9f\x63\x09\xd4\xca\x1c\x55\xd0\xcb\x77\xc1\x97\xaa\x7a\xac\xc7\xa3\xb9\xbf\x0b\x75\x5b\x1b\x62\x5c\x0f\x78\xbf\xbf\xab\xf2\x6e\x43\x9c\x2a\x26\xe2\x23\x28\x17\xb5\x57\x69\x3c\x77\xc3\x17\xa3\x2d\x51\x8f\x97\x73\x68\xb4\x31\x7c\x6e\xd0\x2e\xb9\xbd\xa8\x63\x48\xdb\xd2\xce\x7c\x54\xcd\x4b\x25\xc8\xfc\x71\x75\x76\xd4\xe9\x38\x96\x34\xcc\x9f\xd1\x96\xa8\x8b\xb1\xdd\x98\xb5\xba\xe5\x01\x11\x98\x8f\x8b\xfb\xa3\x6a\xfe\x8c\xb6\x7c\x9a\x17\xa3\x2d\x11\x9f\xdf\x63\xbc\x21\x9f\x83\xc0\xdf\xc7\xb5\xfa\x11\xaa\xa4\x40\x25\x7d\xdc\x8f\x19\xa1\x0c\x45\x61\x8e\x34\x25\x51\x7c\x17\xb7\xe5\x7b\x50\x71\x01\xba\x0a\x23\x2b\x1f\x39\xbb\x30\xb2\x12\x51\x7d\x97\xf1\x72\x5d\xef\xf9\xa9\xd2\x02\x5a\x93\x66\xbb\xac\x8f\xa8\xb6\x8b\x2b\xf3\x3d\x2f\xe3\x88\x47\x9a\xef\xbe\x8c\x23\x7c\xb7\x49\x83\x2f\xd1\x7e\x34\xf8\xcc\x6e\x8f\x08\xd5\x5e\xe0\x4a\x7f\x0f\xea\x82\x30\xcb\xf9\xf1\x5d\xcc\x50\x0c\xdf\x1d\xf6\xa5\xd2\x97\x61\x5f\xa6\x7d\xc1\x14\x1b\x6d\x09\x02\x2c\x87\x46\x5f\x88\xec\x45\x4c\xdb\x45\x5e\x42\xf5\x18\x20\xfe\x8f\xda\xb6\x08\xe7\x32\x08\x14\x7f\x5c\x4b\x1b\x41\xa0\x38\x02\x44\xf3\xbd\xc8\x55\x80\x68\xc2\x48\x8d\xc7\xc8\x87\x91\x9a\x30\x52\xf3\x69\x5e\x9a\xf3\xdb\x08\xaa\x7f\xef\x23\x8d\xbe\x34\x10\xff\xf7\xbe\xd0\x40\xfc\xd1\xb2\x7d\xc1\x5d\x6f\xea\x8d\xe6\x3a\x7a\xf3\x59\x47\x8d\xc8\x59\x70\xe3\xf0\xfd\xbd\xc8\x06\x21\x9f\xf3\x63\xbb\xf0\xca\x28\x4f\xb4\xea\x38\x30\xcf\x4d\x33\xd4\xaa\xe3\x40\x87\x35\xd7\x5b\x73\x2e\x5f\xdc\xfa\xe6\x5c\x72\xe9\xf0\xa1\x55\x68\xb6\x11\x8c\xe3\xbb\xf8\x9e\x6e\x69\xc3\x1c\x7c\x1f\xbc\x6a\x42\x91\x46\xa4\xe1\x03\x25\x46\x53\x37\x35\xd7\x2f\xdb\x43\xa2\xb9\x7e\x9b\xeb\x8d\x84\x64\x34\xd7\x5b\x03\x4d\x7e\x5c\x1a\x1b\x6d\x16\x69\xbe\x9b\xe8\x8b\x73\xd9\x96\x6d\xe0\xca\x34\xe7\xcd\x08\xd6\x47\x12\x30\x8c\x60\x85\x51\xa8\xef\x63\x6c\x46\xa1\xa2\x2b\x2f\x09\xf3\xd7\x95\x17\xa3\x41\x1f\xb7\x2f\x87\xd1\xa0\x30\xa2\xf3\x91\xec\x0a\x23\x3a\x31\x48\x66\x7e\x19\xf9\x1b\x24\x33\x83\x80\xcd\xfd\x51\xbf\x14\x46\x6a\x62\xb8\x2e\x0b\x3c\x18\xae\xcb\x51\x7c\xee\xe5\x39\xa2\x73\x61\x44\xe7\x2b\x40\x11\x23\x3a\x31\x80\xa9\x1f\x89\xa8\x18\x24\x2e\x63\x60\x03\x3e\xee\x06\x8e\xa1\x0d\x18\x24\x1a\xbf\xc2\x9a\x19\x42\x82\x41\xb0\xdc\x63\xbb\x63\x8c\x2e\x8d\x36\x28\x9d\x8f\xa1\xdb\x37\x56\x92\x46\xbb\x9a\xd8\xa1\x8c\x57\xd6\xf4\xd0\x56\x10\xd8\xb9\x3f\x12\x47\x31\xb6\x6d\x60\x43\xbf\xca\x1c\x19\xe5\x89\x09\xbc\xfb\x6a\x4a\xd0\x5e\x69\xb6\x01\x9f\xe7\x57\xa5\x31\x0e\x61\xd1\xd4\x56\x4c\x20\xda\xc7\x85\xcb\xc1\xbd\xc7\xe7\x07\xd9\xad\xf5\xfd\x6b\x73\x3f\x73\xf3\x15\xbb\x85\xe7\x34\x55\x8f\xd3\xe5\x53\x31\x6b\xd3\xe5\x33\x9d\x9a\x8a\xc7\x61\x40\x2a\x0c\x48\x7d\x15\x71\x37\xf8\x14\xc4\x9b\xee\x4f\x24\xc5\x1d\xc7\xe7\x87\xee\xc7\x2d\x8d\x69\x98\x2e\x9f\x60\xc9\x4f\x97\xcf\x54\x15\x8a\xa4\xa6\xaa\x90\x1b\x8d\x0f\x8d\xe7\x9a\x2c\x22\x40\xf3\x05\xd3\x3f\xf5\xfa\x27\x01\x9a\x2f\x10\xc5\xd9\x6c\x83\xfc\xdd\x47\x0e\x2e\xa6\x1e\xd6\x24\xf8\xf9\xc5\x07\xdb\xba\xe3\xc5\xeb\xff\x02\xf3\x32\xf5\xfa\xa7\x6a\x34\x50\x21\x53\x35\x3a\x87\xe3\xc8\x8c\x43\xf4\x37\xa7\x6d\x60\x86\xe6\xb4\x7f\x13\x5e\x11\x70\x8c\x39\xe5\xd5\x72\x1c\xa0\xb0\x29\xfa\x9b\x5b\x1a\x2e\xc5\xd4\xfd\x9a\xaa\xc7\x00\xf9\x4c\xd5\xa3\x81\xb5\x44\x89\x52\x18\x58\x8b\x09\x12\x48\x17\x6a\x65\x8a\x04\xe6\x91\xb4\x43\x3b\xdf\x33\xd8\x16\x0b\x77\x24\xe9\x66\x2c\xcd\x24\x31\xb7\x3b\xe9\x66\x2c\xdd\x91\x45\x50\x29\x5d\xcc\xd1\xd2\x9d\x5b\xc9\xef\x3d\xd2\xe0\xd5\x42\xec\x12\xa5\x4d\xb1\x8c\x0c\xac\x6c\xff\x98\x8f\xa5\x0a\x5e\xb8\x6e\xe9\x42\x55\x13\xb5\x3b\x3f\x0b\x1a\xcb\x62\x15\xfb\x57\x6c\x17\xaf\x7f\x29\x57\x0b\xb9\x4a\x17\x73\xb4\x74\x23\x0d\xf2\x25\x4a\xa3\x62\x29\x6b\xab\x3a\x36\x96\xd4\xaa\xb6\x1b\xf6\x0f\xd7\x68\x29\x57\x0b\xf7\x30\xe9\x1a\x2d\xd5\xf2\x6a\xb6\xcb\x1c\x2d\xe5\x8a\xf8\xdf\x9d\xae\x2a\x4d\x1e\x60\x8a\xd3\xc5\x1c\x2d\x4d\xf1\xa2\x2e\x21\xe9\x56\x19\x0c\x8c\x85\x37\x9f\xc8\x7f\xc6\x12\x75\xae\x2e\x5f\x58\x33\x4b\x57\x6b\x6d\xfb\x0c\x5a\x5b\xa2\x3a\x83\x7c\xe9\x46\x55\x1b\xe4\x8b\xfd\xd1\xc6\x8d\x9a\xda\x1f\x6d\x6c\xf9\x47\xc9\x52\x6c\xf9\x67\x40\x2f\x3d\xcc\xa5\x11\xbb\xd8\xe4\xbc\x13\x01\xdb\xd8\x04\xb7\x63\x93\x9b\x4c\x0f\x3c\xdd\xe4\x26\x63\x3b\x5e\xaa\xe9\x63\x3b\xde\xed\x78\x1f\xdc\xeb\xed\x78\x37\x6b\x2b\x3d\xa8\x9a\xdd\x98\x8f\x3d\x7e\xcf\xd1\x86\xeb\xc3\x88\x5d\xd2\x55\x30\x62\x17\x1b\xb9\x4f\x0f\xf2\xbc\x45\x2a\x9b\xe4\x40\xa2\x6e\x27\x36\xc9\x81\xd8\xb8\xdc\x49\x73\xbf\x55\xa3\x9b\xb5\x90\x5e\xdc\xaa\xed\x5a\xd8\xca\x38\xc1\xde\x66\xb4\xaf\x5d\xb8\x82\x09\xe4\xd8\xae\x23\xf0\xe7\x27\x49\xcb\xd0\x8a\xb4\x2a\xad\x42\x6b\xd2\x6c\x37\x5d\xd0\x36\xb4\x64\xbb\x89\x36\x48\xda\xb5\x8b\x3c\x73\x7a\x8f\x5c\xb5\x8b\xc8\x59\xbb\x5c\x0b\x6f\xe6\xb9\x6c\xbb\x45\xda\x41\xa7\xed\x42\x77\xb6\xab\xf8\xbd\xca\x73\xc5\xef\x39\x6f\x24\x2e\xdb\x45\xd0\xba\x5d\xca\xee\x1b\xd0\xc2\x77\xa9\xa9\x49\xdf\x81\x27\xed\x0a\xc7\xe1\x1c\x7d\x67\xad\xb6\xab\x39\x0e\x60\x4c\xfa\x5e\x78\x30\xe4\x0b\x6e\x5f\xfa\x1c\xc7\x70\x6c\xd3\x77\x33\x3c\x98\xbe\x3b\x7d\xae\x48\xf3\x39\xe7\x83\x04\x62\x23\x84\xf9\xa7\x19\xa1\x4c\xdf\x91\xdd\x76\x03\x31\x1a\x91\x29\x3a\xfc\x48\x78\x1a\x77\xfc\xf3\xcc\xd3\x25\xe1\xfa\xc7\xe1\xb0\x95\x56\x8d\xe2\x2a\x36\x3c\x37\x0a\xac\xce\xcf\xe0\x54\xff\xbf\xfd\x69\xaf\x1f\xa2\x5a\xe7\xc9\xa7\xfd\x4f\xca\x77\xe4\xe1\x3d\x5a\xba\x25\x29\xe9\x2c\xa0\xef\x98\xfc\x96\xa5\xe4\xb3\xcc\xd2\xd1\x58\x2d\x0f\x29\x47\x70\xd2\x71\x0f\x5b\xf1\x99\x72\xfe\x23\x1f\x60\xd8\x48\x7f\xff\x69\xe5\x74\x22\xbf\xe7\x2d\x61\x5c\x03\x76\x05\x48\xb1\x99\x93\x6e\xf5\xa8\x91\xa0\x52\xa3\x09\xb0\x5a\x3d\x8c\xce\xf0\xb2\x0e\x46\x56\x8f\x6c\xb3\x47\xb1\x09\x54\x5a\x1c\x65\x1a\x14\x73\xb4\x20\x9c\xd2\x82\x70\xca\x45\xe1\x46\x33\x03\xdc\xc4\x1a\x17\xd9\xa7\x26\xd6\x68\x61\x21\xc8\x95\xfe\x7a\xa7\x76\x0b\x5c\xc6\x16\x67\xaa\xca\xb1\x82\x4d\x47\xba\x35\x9c\x87\x94\x8e\x86\x68\x4d\x09\xd7\x41\x4e\xe9\x39\x1d\x68\x00\xcd\xd6\xa8\x66\x4a\x14\xf6\x37\x1d\xe4\xd6\x00\x45\x29\x21\xe1\x0d\x50\xd4\x74\x9a\x53\xca\xbc\x6b\x47\x75\x72\x13\xf1\xfb\xd6\xe4\x0d\x8e\x25\xae\x52\xeb\xd4\x7e\xb4\xee\x3a\x4d\xc7\x5f\x68\x1d\x97\xbe\x75\x7b\xe7\x6c\x74\xa2\x52\x4d\xf7\x33\xe5\x8b\x77\x6d\xa1\xe3\x07\xa4\x7c\x74\x7d\xeb\xb6\xd0\x0f\xf7\x89\xcf\x36\x1d\xcd\x36\x5c\xf5\x99\x55\x35\x5c\xf5\xc3\xb1\x66\x26\x60\xb8\x22\x07\x81\x8a\x84\x03\xd9\x06\x16\xa6\xe9\x54\xa6\xf2\x41\xb3\xd5\x81\xe7\x92\x0a\x5a\x64\xe0\xb9\xb4\x41\xe5\x47\x2a\x68\x82\x41\x95\x5b\x1b\xf6\xae\xc0\x27\x9d\xbb\x36\xd5\x36\xe5\x80\x8b\x36\xd5\x36\x93\x8a\xa7\x54\x8e\x35\x69\x13\x8b\xda\x74\xe4\x52\xbd\xa0\xe1\xc8\x35\x1d\xb9\x54\x11\xbf\x49\xea\xab\x4d\xb5\x48\x65\x1e\xa7\x5a\xc4\xf4\x5f\xaa\x0f\xed\xda\xe7\x49\xb5\x59\x22\x4e\xdf\x26\xb1\xb5\x36\x89\xad\x25\x9c\xd4\x36\xb1\x94\x6d\x12\x44\xf0\xd0\xeb\x86\x8b\xf6\xa7\xe9\x95\xa5\x8a\x26\xd5\x2b\x6b\x7a\x60\xa9\xa2\x35\xf5\x2a\xda\x52\x43\xd6\xe3\x1d\xb5\xa5\x86\x5c\xd9\x76\x2b\x34\x2a\x3e\xdb\xcf\x6a\x57\x14\x84\xa9\xb9\xf6\xb3\xda\xa4\x86\xdb\x02\x40\xb7\x65\x5f\xe2\xa1\x0d\xfb\xb2\xd4\x7c\xa4\x86\xdb\x92\xcf\x8b\x20\x47\xa2\xa8\xbc\x69\x29\x9b\x69\xae\x14\xe9\xcc\xaf\x69\xae\xb6\xf5\x20\xe2\x00\xd9\xb6\x95\x5b\x2d\xa5\x07\x41\x37\x2d\x65\xdb\xf0\x2a\xe3\x09\xb5\x4d\xac\xae\x6d\x80\x7b\xc6\x13\x6a\x5b\x1e\xec\xe8\xd0\x58\x2f\x3b\xa6\x34\xbf\x77\x78\xda\x2f\x24\xbc\x63\x89\x82\x0a\x81\x8e\x05\x3a\x3f\x3e\x76\xba\xdc\x2f\x7c\xf7\xae\x81\xc9\x38\x33\x5d\x03\xd3\x2f\xb0\x6d\xbe\x0e\x16\xe8\x58\x96\xf3\x73\x9f\xcf\x9d\x91\xf5\x2b\xfb\x58\xb6\x27\x07\x0a\xf4\x0b\xbf\xaa\x5f\xd4\x31\x65\x6a\xb9\xba\xd9\xae\x7e\x85\x9f\x3b\x36\xa7\x5f\xf8\xd2\xfd\x62\x26\xf3\x7d\x56\x4c\xbf\x9a\x3d\x46\x7f\x1f\x19\xe8\xe6\x9c\xba\xf9\xa5\x7c\x9f\xf1\x77\x92\x48\x7f\xba\xf9\x9b\x7c\x1f\x4b\xdc\xcd\xdf\x74\x73\x30\xf9\x2e\xef\xa1\xe1\x55\xf5\xfb\xd7\xc2\x99\xef\xae\x85\xe8\xe6\x2e\x70\x0e\xfb\x43\x15\x46\x7f\x70\x18\xf3\x73\x9d\xc7\x1e\x1c\xc6\xfe\x50\x01\x93\x9f\x23\x7a\xfd\xa1\x02\xa6\x5b\x30\x9c\xa9\x20\xea\x16\x0c\x77\xd3\x1e\xf9\x49\x7c\x0f\x91\xea\x0f\xf1\x97\x8c\xd3\xd2\x1f\xe2\x2f\xfd\x41\x25\xe5\xe7\x38\x78\xfd\x21\x9b\xdf\x1f\xbb\x47\x7c\xa3\x6b\xaf\xfa\xf3\xab\x52\x3a\x24\x33\x1c\x9d\xf2\xdd\x3b\x3f\x07\xfe\x76\x8a\x78\xff\x74\xb3\x19\x99\x28\x7b\x37\x9b\xd1\xcd\x5c\x64\xb6\xdc\x75\x33\x17\x9d\x92\xd9\x3b\xbf\x4c\xe3\x4b\xf8\xa0\x9b\xcd\xc8\x84\x23\xfa\x4b\x28\xa8\xbf\x76\xe5\x65\xce\xb4\x78\xdd\xfa\xd4\xe7\x39\x3d\x36\x90\xdf\x3f\x25\xe5\x3d\x0a\xa3\x7f\x4a\x8a\x01\xfa\x4c\xf4\xa0\x1b\xa0\xef\x1f\x8a\x25\x53\xba\xdc\x3f\x94\x48\xff\x80\x6c\x99\x1c\x73\xa7\x56\xf5\xfc\xf8\xdc\x59\x54\xdd\xf2\xd4\xfe\x11\xb0\xce\xe4\x98\xfb\xc7\x22\xe8\x9f\x1c\xfd\x3e\xde\x95\xa3\x5f\xfc\x9e\x3b\x42\x60\x79\x6a\x37\x40\x9f\x89\x32\x74\xcd\x74\xff\x05\xcf\x8f\x71\xeb\xc9\x09\x4f\xca\xd4\xc7\x64\xa4\xa3\xf2\xff\x74\x8a\x40\xef\xcc\x46\xb9\x9e\x40\x1c\x3d\xe1\x65\x65\x36\xc8\x75\xca\x43\xff\xf4\x94\x6d\x82\xd9\x48\x0e\xcd\xb8\x7b\xfe\x8e\x25\xe9\xc6\xdd\x7b\x72\x8d\xa6\xe3\x41\xf6\x04\xd8\xef\xc9\xee\x25\x66\x43\x9f\xa1\xa7\x5f\x30\xf1\x88\xbc\xb1\xec\x9e\x01\x3f\x39\x31\x8a\xac\xc8\xe7\x04\xf7\x48\x3f\xf7\x4c\x6a\xa4\x67\x62\x16\x39\x15\x9f\xa3\x7b\xc6\xb7\x33\x29\xe9\x6e\x7c\xbb\x5b\x98\x99\xa9\x28\xea\x3a\x26\xdd\x98\x77\x3a\x36\xad\x1b\xf2\xee\x94\x3a\xde\x39\x7f\x7f\x9d\x8c\xef\x05\xc3\xdd\xa9\x84\xbc\x73\x46\x94\x0a\x89\xde\x5e\xec\x55\x3e\xb0\xb4\x97\xc4\x5c\x15\x94\x62\xce\x30\xdc\x12\xc8\x5e\x30\xf0\x99\x28\x4c\xa7\x1e\xf2\xfc\xd0\xfb\x0c\x23\x2d\x81\xec\xc5\xde\x17\xe4\x4b\x97\xa9\x1b\xe9\xc6\x72\x77\x3d\xa4\x5e\x5d\x25\xe5\x78\x4d\xdd\x52\xbe\x5e\xb1\xe6\x99\x20\x4c\x27\xc2\xfd\xa7\x57\xbb\x4c\x10\xa6\x57\xbb\x5c\x9d\xe7\xc2\xc2\xae\x54\x6d\xf6\x6a\xf7\x0a\x93\x50\xf1\x3f\xba\xc1\x6f\x4f\xcc\xed\xba\x61\xbd\xaa\xb3\xcb\x41\x5f\xbd\xda\xe5\xfa\xeb\x72\xa5\x5d\xbb\x6c\xd0\x18\xb3\xdf\x75\xc5\x7a\x90\xee\xca\x14\x08\x77\x2b\xf4\x7a\x28\x5e\x95\x61\x84\xe2\x15\x98\x8f\x4c\x0a\xbb\x1b\x0b\xee\xfa\x67\xb9\x22\x0f\xfa\x67\x3d\x88\x2f\xe5\x5a\xf8\x9e\x22\x47\x11\xdd\x9d\x71\x4b\x7a\xd8\x15\xe3\x9b\xe5\x78\x25\x5d\xaf\xac\x37\x42\x3f\x9e\x4f\xdb\x9b\xa6\xa2\xb9\x22\xe2\x58\xa3\xde\x5c\x11\x16\xac\x79\x1e\x6d\x6f\x4e\x2e\x75\x6b\x87\x76\x86\xd6\xe4\x5e\xcb\x21\xad\x42\x43\xdd\x35\xd5\x27\x85\x54\xbd\xa9\x3e\xf5\xde\x32\xb1\x8e\xae\xf7\xd6\x5b\xf5\xb9\x2c\x2d\xa4\x31\x34\x62\x18\xbd\xe1\xf9\x74\xc3\x96\x39\x60\x81\x5e\x5e\x37\x7c\x48\xe6\xa5\xeb\xe6\x75\x6b\xdd\x32\x59\x91\x6e\xad\x5b\xef\xe8\xac\x42\x08\xa3\x77\x75\x56\xc7\x0b\x2e\x18\xda\xde\x5d\x4d\x9d\xa1\x95\xeb\x3e\x5d\xee\x0e\xad\x13\xe1\xf5\x58\xda\xde\x1d\x5a\x27\x6c\x55\x30\xc8\xbd\x13\xb6\xea\xba\x8d\xe5\xc2\x48\xe9\x36\x76\xdd\xc6\x72\x21\x7c\xba\x8d\xdd\x08\x25\x91\x98\xae\xdf\xd8\x07\x0a\xa0\x50\x96\xd5\x0d\x50\xf6\x81\x8c\x16\x12\x25\x9d\xba\xb2\x3f\x7d\x20\x2c\xe5\x3e\xde\x6a\x1f\x44\xd0\xfa\xc0\x70\x95\xfb\x86\xa6\x9a\x1d\xe5\xf8\xfc\x80\xed\x3e\x94\x1f\xbc\xcc\xf3\xd8\xe9\x9d\xee\x65\x1f\x88\x72\x21\x9f\xd2\xf1\x35\xcf\xcf\x92\x76\x7a\x3c\xc2\xe7\xb0\x65\x45\x23\x65\x1c\xb3\xeb\x72\x96\x9b\x09\x1f\x8e\x8c\x4a\xb2\x87\x38\x47\xd7\x0b\xed\x86\x18\x0b\xdb\xaa\xfa\x24\xfe\xd3\x27\xf1\x9f\x72\xa3\xdc\x0d\x27\xf6\x89\xfb\x51\x6e\x94\xfb\x54\xce\x26\xe9\x94\x72\xa7\x33\x19\x53\x33\x8d\x33\x7a\x97\x3b\xf3\x5c\x1e\xd2\xec\x72\xa1\x0d\x3c\xec\x3e\x09\xdb\x96\xbb\x24\x68\x3e\xf7\x63\x01\x0a\x68\x56\x9f\xab\x3e\x87\x81\xd3\x0b\xed\xb3\xfa\x1c\x02\xa4\x17\xda\x67\xd8\x3f\x66\x63\xea\x6d\x10\x22\xbc\x0b\x5b\xb1\xfa\x0c\xdf\x95\x2d\xa4\x7b\xfa\x94\x2d\x13\xb6\x50\xaa\xdd\x75\x60\xfb\x42\x79\x95\xe7\x0a\x68\x59\x1a\x5d\x21\x94\xd2\x17\xf0\xa4\xaf\xe4\xe7\xd0\xe4\x4b\xb6\x18\x16\x2b\xcf\xc3\x73\xba\x65\x44\xbd\x0e\xad\x40\xf3\x39\x5c\xb5\xc2\x21\x07\xdd\x10\x58\x37\x04\x56\x1e\xec\xaf\xf5\x6b\x7d\x91\x99\x28\x14\x2c\x74\x62\x5f\xe7\xc7\x77\x99\x36\xc3\x5d\x7d\x55\xfb\x8c\x87\xb4\xb4\xc9\xab\xfe\x9e\x3b\x53\xbe\x94\x96\x45\xf8\xa7\x10\xd6\xe9\x78\xd1\xe7\xe7\x93\xc6\xbb\x61\x5f\xc2\xbe\xa0\x70\x97\xac\x22\x14\xf5\x3c\x68\x87\xed\x72\xde\x9f\xc3\x3d\xb8\xb0\x6f\x95\xe6\x4e\x7e\x0e\xdf\xcf\x12\xb4\xbe\x5d\xba\xec\xf8\xea\xfa\xe1\x7d\x83\x63\xca\x53\xa5\x85\x34\xbb\x1c\x17\xb4\x29\xcd\x77\x99\xf1\x0d\x1e\xed\xfb\xc7\x16\x3c\x2e\xfd\xf5\xae\xbf\x5e\x48\x3c\x75\xfd\xf5\xbe\x95\xa0\xf7\xe2\x5d\x22\xce\xdd\xfa\xb4\xc2\xae\xb2\x6e\xb4\xab\x6f\x94\x75\x79\x59\x80\xd6\xa7\x75\xeb\xd3\xca\xcb\x54\x6e\x59\x40\x3d\xd9\x43\x40\x68\xe8\xd6\x8f\x8b\x72\x8a\xf2\x1e\x6d\x33\xf4\xeb\x07\xf1\xa3\x43\x8b\x43\xc3\x67\x18\x97\x6c\x79\x5f\x9e\xc3\x67\x18\x97\x5a\xee\x7d\xff\x7a\x3f\xdd\xb8\x8e\x64\x9d\x1f\xe4\x9f\x78\xd6\x00\x03\x9c\x1f\x47\x79\x14\xd9\xb8\x8a\xb4\x62\xb7\x12\xcd\x21\x38\xe3\x52\x70\x38\xce\x61\x5c\x20\xdb\x61\xac\xa9\xe0\x7f\x0e\xf1\xc1\xb8\x5c\x3b\x6f\xe6\x7b\x70\x63\x5c\x3f\x6e\x04\xcf\x35\xdb\x80\x1b\xf8\x81\x43\x80\x30\x6e\xac\x68\x21\x4c\x35\x6e\x04\x62\x58\x6c\x56\x08\x53\x8d\x1b\x3f\x75\x50\x4b\x76\x68\xa7\x89\x1b\x40\x38\x6e\x7c\xd2\xf2\xc1\xc9\x1b\x65\x39\xa8\x1b\xbb\xcb\xaf\x0d\xfc\x92\x21\xe0\x28\x6c\x6b\x1b\x02\x8e\x71\x3b\xa9\x6c\x6b\x1b\xa0\x8f\x3f\x43\xc0\x51\xbe\x23\x88\x43\xc0\x31\x00\x1c\x4f\x3a\x8a\x71\x58\x2b\x35\x1e\x3c\xad\xc2\x6e\xb5\xf1\xe0\x4a\x8d\x47\xb3\x82\x0f\x39\x04\x21\xc3\x9d\x87\x85\xc3\x14\x86\x35\x55\xe3\xc1\x3a\x96\xc4\x6c\x3c\xd4\xa9\x8d\x07\x57\xb8\xa4\x63\x59\xc7\xc3\x72\x1a\x0f\x86\xbf\x24\xb8\x2c\xb8\x18\x8f\x31\xac\x63\xa8\xc7\xab\x2c\x09\x2e\x0a\xe1\x93\x21\xb8\x18\x2f\xfe\x46\x49\x47\x71\x8f\x17\x65\x39\x04\x17\x25\x1f\xd1\x1c\x82\x8b\xf1\xda\x95\x0c\xf7\x5e\xbb\xf2\x3a\x91\x94\x3a\x0e\x6a\xa4\xfe\x0c\xc1\x45\x01\x38\x0e\xc1\xc5\x30\x9c\x56\x78\x55\x70\x31\x3e\x15\x5e\x3e\xfa\x7d\x7c\x18\xea\xf1\xb1\x17\xb1\xe4\xec\x73\x8c\x4c\x10\x52\x88\x73\x0d\x41\xc8\x10\x84\x94\x7c\xf4\xfb\x10\x84\x0c\xab\x84\x4a\x2e\x3e\x47\x57\xc0\x22\xb7\x87\xdf\x8e\x8f\x18\xe9\x70\xdf\x5c\xc9\x95\x76\xf1\xf4\xc6\x47\xa4\xa9\xb0\x2f\x6d\x58\x25\x34\xac\x12\x2a\xe5\xe2\x7b\xd8\x8b\xf1\x11\xa1\x28\xe5\x28\xe9\x21\x08\x19\x1f\xb1\xed\x52\x1e\x9e\x73\x36\x04\x26\x85\x08\xcf\x10\x98\x0c\x80\x89\x45\x92\xc3\xa2\x9e\x91\x5c\xd9\x04\xcc\x46\xc2\x89\x1d\x82\x95\x52\x98\xf0\x24\x0b\x92\x0e\x02\x75\xfe\x23\xb9\xda\x93\xf2\x5d\xe0\x32\x28\xe5\xfc\x30\x5c\x02\x41\xc3\xed\x6b\x23\xfd\x86\x91\x79\xd7\x99\x4c\x0a\x10\x27\x18\x8c\xe4\x30\x04\x30\x9e\x5d\x3b\x12\x59\xe1\x21\x80\x29\x78\xac\x43\x00\x33\x00\x30\x4f\x1c\x58\x37\x32\xf8\x6a\x64\x87\xc1\x2e\xb7\x91\x55\x50\xf9\xcb\xd2\x7c\x0e\x2e\x67\xbb\x57\x91\x82\xec\x6c\x64\x32\x30\x85\xc4\xe4\xc8\xd4\x35\x0d\x41\x4d\xa9\x74\x59\x50\x33\xf2\xaf\x2b\xc7\xd9\x1d\x82\x9a\x01\xa8\x79\x49\x2e\x0d\x41\xcd\x70\xf3\x55\xa1\x9e\x66\x88\x3c\x46\xd1\xea\x71\xfc\xd5\x28\xc5\xe7\x54\xef\x91\x78\xb7\xf8\x9c\xeb\x20\xe0\x5e\x71\x1d\x88\x50\x0a\x09\xb6\x61\xbd\xcf\x10\xa1\x14\xce\x01\x18\x22\x94\x01\x42\x79\xf1\xcc\x86\x9b\x8d\x86\x25\x36\x95\x7c\xd8\xb0\xc4\x66\x54\x26\xb2\x5e\x77\x85\xc6\x68\x2b\x5d\xf6\xa0\xd7\x51\xed\x72\xc5\xc1\xac\xd7\x41\x32\xa3\xe2\x60\x8e\x5a\xa4\xa1\x94\x44\x23\xa3\x12\x59\xab\x6c\xcb\x1f\x95\xc8\xda\xa8\x61\x1b\x74\x99\xa8\xf1\xf9\xa9\xd0\xe0\x5e\x25\x1e\x33\x2a\x16\xa9\x5e\xf5\x85\x86\x0e\x16\xc9\x54\xf6\xd6\x0d\x91\xcc\xa8\x0e\x0d\x7d\x2b\x92\x19\xf1\x1b\xda\x01\x3c\x43\x24\x33\xac\x74\xa9\xf7\x71\x7d\x46\x68\x22\x28\x6e\xb9\xeb\xfd\x4a\xab\xd2\x78\x97\x02\xce\x21\x92\x19\x51\x7f\xb4\x33\xe1\x11\xbe\x8b\x3c\x56\xfc\xa6\x11\x2e\xab\xb0\x7b\x04\x7d\x86\xe8\x66\x80\x6e\x5e\xec\xf9\x10\xdd\x8c\xf6\xd9\x95\xe3\x0b\x0c\x63\xce\x43\x74\x53\xa9\xf3\x1c\xa2\x9b\x21\xba\xa9\x37\x3a\x58\x74\x33\x1a\x5b\x38\x3c\x7e\x75\x34\x60\xc1\x68\xf8\xdd\x95\x6d\x09\xa3\x01\xd2\x46\x73\xb8\x04\x91\x46\x73\x86\x1a\xb2\x5c\x1f\x66\xb7\x29\xcb\xc6\xb5\x2b\x45\x3c\xc3\xb8\xf6\x60\x97\xcf\xa1\x1d\xc9\x68\x6a\x96\x86\x1f\xe1\x11\xad\xa3\x55\xfb\x52\x6d\xe3\x65\x1c\xe1\xd8\x9c\x5d\x5c\xb3\xd1\xc2\x36\x70\xd0\xeb\x71\xcd\xfe\xd2\xc8\x37\x62\x51\xa3\xc9\x49\x52\x1e\x43\x30\x35\x00\x53\x2f\x79\xa2\x61\x29\xc6\x30\x66\x5e\xf1\xc8\x46\x77\x15\x83\xa9\xee\x8a\x47\x36\x08\xa0\x9f\x1f\x7b\x9a\x7d\x17\x6e\xf4\xe4\xc8\xd1\xe5\x3d\xf9\x2e\xce\x6b\x7d\x0a\xcf\xa9\xb4\x7a\xb6\xf7\xe8\x68\x01\xd6\xe8\x3f\x0e\x31\xab\x5d\x3f\x42\x80\x55\x5f\x38\x2e\xc0\x1a\x5d\xf9\xc7\xd3\x1a\x5d\xf9\xef\x72\x8d\x0a\xd2\xd1\xab\x7d\x91\x6b\x1c\x6b\x35\xba\x5c\xeb\x0a\xd8\x8b\x86\x72\x13\xd3\x10\xb0\x55\xf2\x7b\x43\xc0\x36\x00\x6c\x2f\xe9\xa9\x31\x5c\xda\x03\xd3\x55\xf5\xb4\x86\x2c\x70\x8f\x50\xd5\x6d\x72\x8f\xd0\x70\x3f\x50\x25\x0d\x38\xac\x32\x19\x03\x47\xb5\xbe\x68\x9e\xa1\x7b\x35\x88\x97\x54\xdd\xa6\x81\xf3\x3a\x04\x76\x95\xf4\xde\x18\x44\x24\x87\xd5\x28\x95\x2a\xa2\x61\x35\xca\x00\xe0\xdd\x95\x8a\xa1\x21\xb2\x1b\xe3\xc7\x02\x4c\xdc\x90\x05\x6c\x33\xba\x2b\x27\x5f\x8d\x41\x2a\x6f\x58\xa1\x52\xa9\xfa\x19\x22\xbb\x21\xb2\xab\x1f\x26\x4e\x64\x37\x40\x76\x6f\xa2\x59\x91\xdd\x30\xf6\x5f\x29\x04\x1a\xc6\xfe\xc7\xe4\x44\x84\xfa\xa1\x65\xa6\xcb\x78\x62\x1d\xeb\x17\x09\x1a\x96\x5a\x94\x54\x13\xeb\x49\x94\x34\x40\x49\xaf\x86\x5f\x94\x34\x4c\xec\x7b\x0c\xeb\x30\xb1\x3f\x4c\xd8\x57\x12\x6a\x63\xb9\xc4\x0c\xf3\xd7\x94\xa0\xb9\x9c\x96\x82\x61\x97\x4d\xce\x0f\x77\xe5\xd4\x84\x5a\x70\x57\xce\x00\x8c\xdc\x35\xa1\xdd\x96\x42\xb0\x7e\xdd\x43\x2d\x88\x4c\x06\xc8\xe4\xe5\x54\xcd\x61\xe4\x7f\x98\x23\xf7\xa4\xd4\x61\x8e\x7c\x88\x4c\x6a\xc6\x3a\x6e\x5d\x70\x00\xca\xed\xc9\xa8\x63\xeb\xab\x6c\x05\x23\x63\x31\xb7\x82\x21\x32\xa9\x19\xad\x20\x32\x19\x9b\x8d\x58\x9e\x8e\x3a\xb6\x0e\xeb\x2e\x7e\x0f\x65\xb9\x75\x58\x77\xf1\x5d\xd8\xb2\xcb\xef\x5d\xd8\xa2\x1b\xb6\x65\x8b\x68\xa5\xe6\x44\x1b\xa0\x95\x41\x92\xe1\xae\x19\x45\xbb\xb5\x17\x5b\xb6\x70\x82\xea\x10\x99\x0c\x90\xc9\xcb\x26\x8a\x69\xea\x7b\x5e\x80\x33\x0f\x53\x9d\xa4\x1a\xfe\x4c\x92\x0c\x77\xa5\xba\x76\x5e\x04\xdc\xe6\xf5\x63\xcb\xe1\xf2\x14\x99\xcc\xeb\xc7\x82\x08\x68\x53\x1a\x02\x44\xec\x6f\x0a\x3d\xe6\xa5\x14\xe0\x86\x4d\x70\xc8\xf9\xe1\xdd\x72\xd3\x17\x94\xef\x34\x0d\x51\xcb\xcd\xf7\xaa\xfd\x73\x26\x71\xc3\xa6\x90\x62\x02\x29\xde\x38\x90\x75\x0a\x29\xe6\x6d\xf7\x70\x91\xa6\x7b\x55\xa6\x7b\x55\x2a\xbb\xfe\xe7\x8d\x6d\x98\xee\x4b\xa9\xb8\x4d\x53\x48\x31\x85\x14\xb5\x04\xcf\x15\xdf\xb5\x2b\xf5\xac\x8d\x29\x7c\x98\xb7\x4b\x0d\x7f\x68\xde\x08\xda\x14\x3e\x54\x7c\x9f\x29\x7c\x98\xc0\x87\xef\xfa\x9e\xbf\xfd\x99\x0f\x3e\xfb\x7c\x54\xc2\xd4\x69\xcd\x07\x9f\x7d\x3e\x72\x9e\x3a\xad\xf9\xc8\xf9\x47\x8e\x52\x93\x35\x1f\x39\xfa\x64\xdf\x65\x86\x1e\x34\xcb\x7c\x80\xc5\xb5\x56\x9e\x03\x16\x4f\xf3\x1f\x95\x42\xac\xf9\xe0\x23\xcd\xc7\xb5\x56\xe3\x83\xf6\x4a\xfb\xa4\xf1\xae\xc3\x35\x27\x52\x29\xc4\x9a\xc2\x96\xf9\x50\x88\x55\xc9\x60\xcf\x07\x41\x9b\x8f\x5a\x89\xa2\xab\xc9\xe9\x29\x7f\xe6\xa3\x62\xa6\xe8\x6a\x3e\x61\x1b\x20\xad\x1a\x07\x7b\xcc\x87\x60\xcb\x14\xde\xd4\x78\x68\x57\x56\x01\x6f\xbe\xfb\x28\xe1\x69\xee\x64\xbe\x78\xa2\x95\xda\xac\xf9\xe2\x89\x4e\xcf\x3c\xa9\xc4\x26\x27\x87\x9d\x9c\x1f\x86\x4b\x6d\xd6\x7c\x65\x9f\x3b\x4b\x6a\x7c\xbc\x8b\x53\x33\x5f\x25\x83\x7a\xad\xf9\x2a\x19\xaf\xeb\x19\x77\x72\xbe\xac\xe7\xf9\x82\x3d\x2a\x59\xc0\xe9\x39\x28\xd3\xf3\x4d\x6a\x30\x6d\x2f\x6b\x72\x0a\xab\x6a\x54\x9e\x93\x55\x6f\xb5\x8d\x4a\xbb\xa8\xaa\xf9\x56\xbf\xc7\x74\xbc\x38\xe8\x93\x23\x4d\xee\x1a\x91\xff\xd2\xca\x4f\x91\xd8\xf4\xf8\x13\x0f\x5b\x9d\x22\xb1\x09\x12\xfb\xf0\x33\xe6\x87\x39\x9b\x1f\x55\x5a\x71\x1d\xd7\x6d\x02\xcb\xce\x4f\x97\x56\xa1\x4d\x69\x84\x2e\xaf\xe3\x5c\xcf\x0f\x13\x37\xbf\x64\x75\x05\x4b\xf1\x23\x76\x39\x01\x69\x87\x56\xa0\x85\x34\xbf\xc7\x44\x7f\x0a\xe7\x47\xce\x36\x38\x2d\x62\x7e\xae\xa7\x8f\xe5\x1e\xd7\x43\xbb\x2e\x77\xf7\x75\xc4\xf5\xd2\xae\x42\xf7\xc1\xdd\x20\xb1\x39\x81\x6f\xe7\xa7\x49\xe3\x7b\x38\xf0\xd3\x94\x53\x10\x82\x9d\xa6\x9c\xa6\x27\xa2\x04\x45\xed\xf3\x03\xc8\x4e\xf7\x7f\xc4\x75\x34\xe8\xfc\x9c\x05\xb6\x81\xdc\x41\xa2\x74\x02\xf3\xce\x8f\xe3\x38\x1e\xd1\x14\xed\x4d\x0e\x46\xb9\x03\x2f\x7c\x8a\xf6\x26\x68\xef\xc3\xb9\x98\xa2\xbd\x49\x36\xea\xf6\x48\xd9\x29\xda\x9b\xe9\xb3\x09\x54\x4f\x52\x38\x01\x7d\x77\x70\xdb\xc2\x4c\x0a\x67\x3a\xc2\x59\x03\x4d\x91\x54\xaa\xe0\xc0\xf3\x18\x9f\x4b\x7e\x2e\xf9\xb9\xc2\xe7\x5c\xee\xe0\xc0\x3b\xf0\xf3\x67\x72\xb9\xa7\xec\x28\x50\x01\x49\x05\xea\x0e\x93\xe0\xb2\x86\xe9\x0e\x93\x99\x8a\x92\x81\x32\x4f\x72\x3e\xfd\x38\x7f\x2c\xfa\x4c\x72\x3e\xfd\x38\x1f\xb4\x2b\xe7\xd3\x8f\xf3\x28\x78\xb6\xa5\x9c\x1f\xfa\x0c\x4e\x9a\x29\x64\x0b\xf6\x27\x28\xf5\x9f\x1c\x8e\x72\x7e\x68\x83\xa8\xf6\x4c\x0a\x73\x92\xcb\x9c\xbf\x31\x05\xa3\x13\x30\xfa\x7d\xc7\xe1\x9e\x59\xcd\x28\xf0\xf4\x40\xdc\xe9\x71\x28\x33\xb3\xdc\x83\xa8\xf6\xcc\x0a\xae\x59\xb7\x20\xaa\x3d\x41\xa6\xe7\x87\xe1\xde\x2f\xcf\xe5\x2c\xad\x4a\xf3\xb9\x21\xcd\xae\xa0\x3e\xb2\x2c\x70\xf7\x49\xdc\x18\x16\x77\x9f\x4c\x81\xac\x07\xe9\x4e\x81\xec\xcc\xd5\xe1\x32\x95\xb9\xda\x67\xaa\x87\x83\x1d\x06\x33\x57\xbf\x87\xb6\x0c\xca\xf2\x66\x56\x5b\xe6\x90\x7d\x99\x77\x65\x95\x47\xb3\x04\x3b\x11\xa6\x47\xb3\x4c\xc1\x72\xb0\x13\x61\x0a\x96\x27\x60\xf9\xe3\x34\xa3\x29\x58\x9e\x45\x81\xe4\xd4\x8f\x59\x64\x5f\xf9\xe4\x7c\xf5\xb9\x26\x6d\x4b\x3b\xdd\x2b\x4a\x9a\x29\xbe\xe0\x24\x90\x59\x94\x34\x37\xd1\xc4\x83\xd2\x2f\x4a\x9a\x9b\x68\x82\x50\xf7\x2c\x78\x35\x53\x40\x1e\x8f\x7d\xd1\xd8\x14\x25\xed\x41\x8f\x14\x25\xad\x28\x69\x1c\xeb\x31\x4d\x19\x4e\x01\xb9\xe7\xfa\x4e\x01\xf9\x2c\xb2\x94\xf0\xf7\x2c\xb2\xb4\xb8\x9e\xd5\x73\xc5\xf5\x5c\xd0\xaa\x41\xf8\x7b\x16\xa5\x8f\xc3\x53\x0e\x8d\x77\x35\x36\x02\xfc\x20\xd4\x3d\x05\xf8\xb3\xec\xf8\x97\xbf\x7f\xf9\x80\x8f\x69\x0a\x72\x9a\x6e\x0c\x4e\x13\x99\xa6\x1b\x67\x55\x1d\x3e\xf9\x48\x50\x55\x1d\xd6\x5f\x97\x59\xcf\x02\xf7\x59\x71\x95\x83\x43\xc6\x66\x25\x9a\x38\x2b\x30\x2e\x38\x3c\x6c\x0a\xbe\x27\xe0\xfb\xcb\xac\xb5\x50\x6b\x92\x25\xbc\xe3\x45\xf8\x42\x0d\x19\x72\x99\x6d\x08\x93\xfc\xe1\xf9\x91\x86\x8b\x10\x94\x2a\xcc\x90\x2b\xd4\x11\xce\x90\x2b\x9c\xcf\x71\x07\xb1\xd8\xe9\xb6\x90\x19\xe1\x73\x74\x39\xf0\xda\x27\xbb\x43\x0e\x8d\xe7\xec\x1e\xe0\xfb\x23\xf1\x39\x1b\x15\xe4\xb3\x29\x40\x5c\x54\x31\xd9\x46\x71\x7e\x6c\xa2\x26\x68\xc8\x32\x1b\x23\x0e\x8d\x77\x09\xba\x4f\xc1\x72\x70\x8c\xd9\x14\x2c\x4f\x53\x86\xf1\xb1\x4e\x4d\x19\xce\x86\xc9\x8c\x8f\x75\xda\x28\xe2\x99\x82\xe5\xe0\xe2\x89\xd9\x5c\x2f\xa2\xdc\xf8\x58\x93\xa2\xdc\x09\xca\xa5\x48\xfd\xcf\x14\xe5\x4e\xd3\x7e\xf1\xe1\x38\x99\xf6\x9b\x5d\xd9\x23\x3e\x3b\xbb\xb2\x27\x02\xf5\xb0\xdb\x29\x02\x9d\x5d\x8d\x46\xde\x7f\x76\x6d\x49\x57\xce\x38\xf8\x76\x76\xb2\x4a\xb3\xab\xd1\x38\x86\x64\x76\x39\x2a\xda\x0c\xc0\xcc\x14\x6d\x4e\xd0\xe6\x17\xa5\xfc\xb5\x91\x37\x7b\x38\x87\xd6\x9b\xad\x11\x73\x90\x4c\x9a\x82\xd1\x48\xc7\xa7\x9f\x1e\x4e\x31\x07\xd8\x3b\xd8\xc9\x37\x07\xbb\x64\xe7\xd0\x02\x53\x52\x30\x87\x16\x18\xfc\x79\x07\x25\x05\x73\x28\x5f\x24\x1b\x0f\x2d\x41\x63\x44\x56\xb1\x45\xc2\x43\xb6\x8a\x6d\x5a\xc5\x16\xd4\xce\x4d\xc1\xe8\x1c\xca\x9c\x4b\x67\xe8\x0a\x0a\x50\x23\x23\xfe\x03\xa4\x38\x87\x32\x97\xf1\x1a\x86\x2b\x71\x28\x73\x84\xa1\xe7\xd0\x0e\x0c\x5c\xc1\x20\x0c\x3d\x05\xa8\x13\x80\x9a\x38\x81\x72\x0a\x50\xa7\x3b\x19\x82\xc8\xf4\x9c\x5a\x5b\x77\x32\x44\xc6\x65\x9c\xae\xd8\xe9\x8a\xe5\xac\x95\x69\xea\x71\x5a\x28\x17\xec\x22\x99\x53\x3b\x40\xb6\xf1\x0e\xa0\xd3\x9c\xc4\xb7\x26\x75\x70\x77\x50\x0f\x31\xa7\x42\xc2\xb6\x84\x78\x8b\xa4\x2e\x49\xae\xa0\xa2\xad\x89\x9b\x53\x11\xce\x3e\x57\xed\x9e\x72\x43\x54\x7b\x9a\x8d\x9c\x1e\x9d\x11\x9c\xa2\x36\x3d\x3a\x63\x4e\xcd\x00\xa5\x14\x73\x6a\x06\xe6\x8f\x7b\xe8\x68\x33\x94\x73\xaa\x50\x32\x33\x64\x86\x72\x7a\xec\x46\x70\xc7\xc5\x14\x7b\x4f\xb0\x77\xba\x51\x00\x4b\x97\x70\x7d\x36\x81\xe1\x5f\x3a\xd2\x16\xee\x87\xca\xc8\xc2\xfd\xb9\x14\x34\x2a\x38\xe6\xd2\xb2\x2e\x9d\x90\x72\xf1\x6e\x96\xa6\x00\x95\x9b\x77\x15\x20\xb3\x91\x41\x52\x60\x8a\xe5\xa7\x58\x3e\xca\x73\x86\x6b\xe6\x71\x9a\x51\xf4\xec\xdf\x69\x46\x71\x9a\x3d\x0c\xca\x20\xa7\x18\x7d\x82\xd1\xd3\x03\x69\xab\x8c\xcc\x1e\x06\x87\xe1\xcc\xed\x84\x8b\xbd\xa3\xa0\x01\xb6\xab\xdd\x2a\xbe\x10\xc5\x99\x29\x9c\xdb\x09\xaf\x97\xcf\xf9\x2e\x39\xaf\xa0\x32\x72\x92\x22\x3c\x3f\x70\x9e\xca\xc8\xb9\xd5\xb3\x5b\x8b\x54\x71\x4c\xb6\x0a\x4a\xec\xed\x11\xbf\x53\xec\x3d\xcd\x00\x86\xa8\x50\x9c\x3d\xc1\xd9\xe9\x3d\xfe\xc1\x12\x67\xaf\x4b\x03\x5c\x0f\x0c\x59\x17\xd0\x64\x5d\x2e\x67\xce\xdb\x59\x17\xcb\x79\x99\xa6\x8b\x7a\x5c\xc2\x75\x91\x07\x5e\x62\xe5\xa8\x67\xe9\x2e\x4b\xf6\xd6\xa5\xb1\xe5\x0c\x9e\x65\xea\x6e\x99\xa6\xb3\x74\x7a\x89\x9f\xd7\xe5\xd2\x65\x17\xeb\xba\x30\x17\xeb\xd2\x5c\x70\x06\xcf\xba\x10\xbe\x65\xb9\x5f\x80\xec\xd6\x15\x3e\xe7\xd0\xe2\xe6\xb9\x66\x9f\x19\xda\x77\xfc\xee\x25\xf6\x5e\x9e\x31\x11\xd4\x5e\x2e\xcf\x98\x58\xb7\xb3\x41\xd5\xc9\xba\xf1\x2d\xd6\xad\x17\xcb\x8e\x98\x75\x33\x43\xeb\x76\x36\xa8\x1c\x59\x62\xef\x65\xea\x2e\x8e\x02\xfd\xb3\xc4\xde\xcb\xb3\x1e\x22\x2a\xcf\x11\x5b\x5d\x37\xa9\x6b\x0b\xa3\x97\x67\x3d\x2c\xce\x7a\x08\x4e\x36\x59\x66\xf8\xd6\xad\xda\x3e\xa0\xeb\xfc\x61\xb3\x2e\xa1\x08\xba\xec\xc8\x80\xed\x89\x03\xa5\x96\x10\x7d\x81\xca\x9f\x8b\x43\x7e\xd6\x43\xde\x6a\x3d\x67\x69\x3c\x96\x59\xaf\x87\x1c\xd5\x02\xa9\x3f\xd7\x75\x64\x60\x3d\x60\xc7\xc5\xf9\xa5\x87\xc6\xbb\xd9\xef\x1d\x3d\x74\x68\xbc\x9b\x7d\x37\xfb\xee\xf1\x68\x96\xb0\x7d\x3d\xc7\x72\x1d\x5a\x82\x16\xd2\x06\xb4\x8f\xe7\xd0\x40\x8b\xb2\xc5\x43\xab\xd0\xfc\x5e\xf5\x7b\x89\x77\xc3\xef\x85\x7d\x39\xf6\x65\x3d\xb2\xe5\x09\xdb\x80\x55\x4f\xf8\xee\xd1\xcb\x8f\x47\x04\x2f\x21\xfa\x02\xa2\x27\x4a\xdb\x97\x10\x7d\x91\x88\x3c\x8f\x49\xfb\xa4\x39\xb4\x83\x82\xd6\x0b\x00\x5d\xef\x51\x30\xcf\x05\x0a\x5a\xe0\xf5\xf3\x23\x4b\xcf\x72\x5e\x9c\x51\x7a\x7e\x5e\x69\xbc\x0b\x44\x5f\x40\xf4\x43\x0b\x68\x21\xad\x43\xab\x37\xb4\x29\xcd\x2e\x1f\xe8\xbd\x5e\x54\xc1\x7a\x8f\xbc\x1d\x1a\xdf\xcb\x7e\xef\x08\x5f\x7c\x95\xcf\x65\xbb\x77\x98\xfd\x5c\x17\xf2\xc3\xc1\x12\xe7\x87\x66\x41\x37\xeb\x75\x59\xbd\xa5\x4b\x63\xb8\xca\x23\x85\x99\x87\xf6\xd7\x49\xf9\xe5\xf1\x13\x8b\x33\x4e\x9f\x8b\xfa\x9d\xf5\x3a\x09\x6f\x30\x81\xec\x7d\x5e\x24\x62\xcf\x8f\xcd\x3d\xf4\xde\x49\x00\xf1\x27\x54\xea\xf2\x34\x86\xf5\x7d\xf6\xf4\x78\x28\xeb\xc3\x49\x5b\x80\xfc\x43\x3b\x9f\x13\xc9\xaf\x4f\x46\x52\xbf\xb3\x3e\x65\xf3\x53\x36\x01\x3a\x4b\xd4\xbe\x48\xad\x3e\x1e\x91\xbc\x3e\x99\xc6\xa1\x0c\x87\xf6\x42\xb3\x8d\xe3\xf4\x1d\xda\xe1\x86\x48\x7e\x91\x82\x7d\x2e\x0e\x96\x5a\xe6\x59\x17\x87\x32\x3c\x1e\x9d\xbc\x3c\x8d\x61\x7d\x75\x48\xe3\x7b\xca\x26\x45\xa1\x87\x46\x5f\xc2\x3e\x2b\x9b\xec\x53\x5a\x9f\x4b\x96\x73\x4c\x0f\x8d\x76\x09\x74\xaf\xef\xc8\xab\xb7\x0c\x2c\x41\xfb\x02\xb4\x27\xce\xac\x59\x82\xf6\x95\x3e\xc4\x81\xfd\x23\x2b\xc9\xa9\xa4\x68\xde\xa8\x4a\xeb\x49\x57\xfa\x71\xef\xa0\xdd\x25\x42\x5f\x29\xc1\x15\x2a\x84\x56\x52\x0c\x93\x62\xf8\x20\x0f\x9e\x3a\xba\xc8\xde\x1e\x1a\xef\x66\xdf\xcd\x70\x80\x4d\xe2\x2b\xc9\xd1\x24\x47\x29\x11\x5a\x49\xf5\x0e\x92\x3f\x34\xbe\x97\xfd\x5e\xb1\xdd\x63\x7d\x96\x08\x7d\x81\xd0\x9f\x8b\x9c\xd3\x02\x9a\x9f\x9f\x25\x8d\x71\x80\x9b\x56\x52\x36\x29\x1b\x5a\x09\x2b\xb5\x92\x5a\x01\x8c\xb4\x52\xb5\x8d\xb0\xcf\x1f\x7c\x09\xfb\x1c\xbe\x7b\x5c\xa9\x25\x6a\x5f\xa0\xf6\xe7\x22\xd1\xb4\x44\xed\x0b\xd4\x9e\xb4\x16\x99\x18\xe7\x22\x85\x7c\x1e\xfb\xa0\x25\x69\x55\x9a\xcf\x75\x69\x76\x05\x25\x93\x41\x12\x0b\x24\x7f\x68\xbc\x4b\x52\x75\x71\x3e\xc4\xa1\xf1\xae\xac\xcf\x49\x16\x20\x54\x59\xe5\x9b\x55\xbe\x94\x12\xad\xec\x74\x80\xf8\x0f\xed\xb0\x4a\xc4\xbf\xf2\x8f\xa5\x98\x90\x4c\xbe\x78\x65\x05\xf7\x09\x9e\xab\xf6\xb9\xa2\xc9\x28\x11\x5a\x59\x53\x93\x6b\x97\x46\xff\x5c\xcf\x59\xc1\x25\x99\xb5\xb2\x82\x9b\xc3\x77\x0f\x2c\x5e\x59\x2b\x0a\xa0\x3f\x34\xda\x88\xdf\xbb\x4b\xda\x99\x5e\xd1\xfd\x02\xdd\x67\x8e\x8a\x5f\xa2\xfb\x05\xba\x7f\x2e\x4e\x48\x59\xa2\xfb\x55\x5c\xf7\x54\x1c\x2d\xd1\xfd\x2a\xdf\x90\x56\xa0\x4d\x69\xeb\xac\x8d\x72\x7a\x57\xd4\xa9\xd4\xf9\x3e\x17\x07\xa9\x2c\xeb\x7c\x57\x51\x57\xbe\xe8\x77\x90\xfe\x9f\x55\x0a\x33\x09\x14\x5d\x45\xc5\x58\x54\x82\xe4\xbc\x56\x51\xf8\x8a\xc2\x07\xec\x5c\x02\xf9\x55\xea\x2d\x8d\xae\xe0\x14\xaf\xa2\x40\x02\x45\x57\xd1\x4c\x15\xb5\x21\x4e\xf6\x12\xc8\xaf\xa2\x99\x7a\xed\x33\x5e\xe2\x2a\xaa\x82\x17\xf5\x20\xb8\x5f\x9c\x8c\x2a\x0e\x5b\x25\xec\xb2\x96\x8b\x14\xda\x12\xef\x2f\x12\xfa\x59\xb5\x2d\xde\x5f\xf5\xc7\xd0\xe3\x4e\x2f\x4b\x8e\x57\x55\x46\x5f\xcc\x40\x55\x15\x54\xad\x14\xa7\x7d\x2e\x13\xff\xab\x6a\xa5\xd8\x9b\xbf\xaa\xce\x40\xd5\x19\xe0\xb4\xb6\x55\xb5\x48\x55\xe5\x4a\x25\xfd\xaa\xba\x3e\xe4\xff\x9f\x8b\x4a\xfa\x55\x41\x1e\xab\xaa\x48\x41\xca\xab\xaa\x48\xab\x5c\x06\x29\xaf\x2a\x97\xab\x5c\xe6\x70\xef\x65\xb9\xf2\xaa\xca\x28\x87\x7b\xaf\xaa\x8c\x56\x65\x94\x93\x42\x57\x95\xa3\x14\x03\x1c\x1a\xef\xca\x96\x2a\x5b\xd0\x72\x16\x03\xac\xf8\x7c\x95\x25\x19\xca\x4f\x38\x5c\x0a\xa3\x56\x80\x3f\x57\xfc\x86\x8b\x5e\x0e\x2a\x5a\x17\x87\x91\x1e\x1a\xcf\x69\x23\x42\x8d\xa6\xb5\x0d\x1d\xd6\x70\xf9\x71\x8e\xf7\x32\xbe\xb1\xc2\xe1\x72\x8e\xf7\x0a\x87\x16\x0e\x8d\x3a\xf7\x65\x7c\x63\x71\x22\xc6\xe3\xd9\xde\xcb\xc3\x48\x57\xa8\xd1\xb8\xd2\x66\x85\x4e\x6c\x28\x2c\x9c\xed\xbd\x8c\x79\xac\x70\xf9\x25\x54\x95\x31\x8f\x45\xcc\x23\x53\x2c\xb8\x9a\xda\xab\xa9\xbd\x08\x0c\x2c\xcb\xa9\x57\x73\xa9\xa5\xe7\xfb\x6b\x23\xef\x01\x13\x8b\xc8\xc8\x79\xe5\xb4\xd6\x54\x64\x4d\x1b\x92\xf0\xf0\xac\x5b\x58\xcd\xa5\xc8\x59\x77\xcb\xba\x85\xd5\x9c\x68\xe5\xba\x55\xbb\xa5\x15\x4d\xc0\x81\xa6\x82\x6a\x3f\x0e\x15\x9f\xab\xd2\xe4\x06\xee\x92\x87\x49\xac\x16\x2c\xed\x84\xc2\x6b\x61\xbb\xae\x13\xee\x8d\x5c\x86\x53\x16\xe1\x94\x4c\xa6\x79\x51\x2d\x70\x7e\xe8\x32\x89\xd1\xd5\x09\x48\xac\x2e\x37\xf2\x01\x53\xab\x6b\x46\x7b\x7a\xa4\x9d\x61\x74\xb5\x4c\x57\x47\xb3\x77\x61\x75\x51\x4d\xd7\x4b\x23\x59\xba\xba\x0e\x47\xcf\x43\x1a\xef\x66\x9f\x73\x9d\xe8\x6d\x76\x22\x4a\xab\xeb\x92\x71\x46\xc4\xea\x0a\x4e\x97\x55\x20\xfe\x65\x18\x67\xf5\x6a\x9f\x81\x26\x54\x15\x9c\x1f\x04\x96\x04\xea\xea\x9a\xc2\xee\x9a\xc8\x89\xfe\xc9\x02\x42\x36\xee\x24\x59\xc6\x64\xd6\xd0\x6b\xa0\x16\x6d\xb9\x13\x70\x0d\x4d\x52\xc6\xd9\x1c\xe9\x47\xb3\x09\xd6\x93\x05\x02\x6b\x38\x5c\xe0\xf3\xb2\x40\x60\x0d\xfd\x7c\xea\xd3\xd6\xd0\xca\x8f\xc2\xf7\x48\x78\xae\xa1\x49\x1a\x0e\x0d\x48\xbd\x8c\xbf\xac\xe1\x4c\x92\x04\x5d\x26\xfe\xd7\x70\x18\x85\x61\x18\x43\x59\xc4\x50\x72\xc2\xea\x19\x43\x59\xd3\x61\x14\x5c\x33\x63\x28\x6b\xea\x12\x72\x6c\xfa\x9a\x5a\xd6\xa9\x15\x25\x0e\xb8\xdc\x58\xb8\xa6\x4e\x0d\x07\x0f\x2e\x37\x16\xae\xa9\x53\xc3\xc1\x83\xcb\x92\xee\x35\x7f\x43\x83\x05\x1e\x01\xb1\xa6\x36\x84\x4d\x89\xcb\xcd\x86\x8b\x53\x1f\x9e\x8b\xfa\xb4\x35\x9d\xc9\xe9\x70\x81\xde\xcb\x22\x84\x35\x75\x4c\x80\xde\xcb\x00\xc7\x22\xc0\x91\x73\x3e\x4d\x18\xcc\x58\x4b\x81\x64\xff\xe1\x32\x98\xb1\x96\x96\x90\xfd\x87\x8b\xc8\xc6\x9f\xb5\x74\x2e\x84\xde\xcb\x35\xb9\x5c\x93\xdc\x33\xb9\x96\xda\x6d\xc9\x02\x72\xb9\xcb\xd3\x0a\xd6\x92\x05\x1c\x20\xb5\x96\x2c\x58\xfa\x70\x5c\xbc\xb3\x2c\xd5\x5e\x4b\x8d\x47\xbd\xdb\x5a\xb2\x60\xfd\x86\x8b\xd9\x5b\xc5\x36\x44\x71\x9c\x27\xb8\xdc\xcf\xb8\x96\x82\x4b\x3c\x73\x2d\x4d\xe6\x52\x70\x85\xf7\x4b\x6c\xbb\x2a\x52\xc5\xb9\x83\x8b\x88\xca\xf9\x91\xcd\xa8\x32\xf7\x38\xae\xa5\x13\x42\x82\x77\x2d\x41\xc5\xd2\x7b\xe6\x28\xde\x65\x91\xc4\x5a\x4a\x90\xa1\x01\x03\x30\x8b\x00\x4c\x2e\x40\xf4\xed\xba\xdf\x1a\x07\x0e\xe4\x58\x5b\xe3\xb0\x65\x29\xc7\x18\xae\xad\xab\xbc\x0f\x67\x83\x53\xd0\xd6\x96\xa3\xdb\xb5\x11\x4c\xe4\xd6\x5e\x6c\xd7\x46\xf8\x9c\x6b\x63\xcb\x51\x4e\x3b\x5c\xd6\x4d\xac\x2d\xf7\xc8\x03\xaf\x2d\xf7\x28\x95\x78\x2e\xf2\xbb\xcb\x1a\x89\xb5\x15\x20\xf6\xa8\x2c\xab\xbc\xd7\xd6\x09\x09\x1c\x98\xad\x5d\xa1\xd8\x3b\x44\x5f\x1e\x42\xba\xb6\x66\x85\x94\xdc\xda\x32\x99\xc2\xef\x43\x3b\xcc\xf3\x60\xd2\xb5\x45\x64\x06\x2e\xb6\xcc\xdb\x3f\xe6\x65\x86\x26\xf3\x08\xfb\x64\x12\xfa\xdb\x22\xef\x7d\x09\x8b\xd9\x05\xb3\x3d\x31\x60\x5f\x3a\xc0\xec\x1f\xd9\x9e\x18\xb0\x29\xb9\x38\xb4\x7a\x68\x30\x74\x5f\x5a\x60\xee\xe7\xdc\x6e\xf2\xdc\x54\x5e\x1c\x1a\xdf\x83\xcb\xfb\x52\x6e\xc9\x3e\x6f\xea\x2f\xfe\xec\xeb\xc7\xd1\xe0\x5d\xac\xf2\xbe\x94\x51\x4e\x06\xd9\x86\x91\x36\xa7\x0d\x3c\xf7\x75\xf1\xbd\x62\x1b\x28\xdc\xfb\xba\x18\x07\xf1\xcf\x4d\x69\xc6\x73\xe3\x9d\x6e\xab\xc2\x37\xe1\xa6\x60\x4b\xe7\xbe\x60\xf2\x26\xda\x74\x1e\x7b\xa1\xd9\x2c\x5c\xbe\x49\x25\x6f\x42\x4f\xe7\x67\x4b\xe3\xdd\xf0\x5d\x94\xdc\x4d\x10\x65\x7b\x50\xc1\x26\x02\x75\x68\xbc\x0b\x97\x37\x11\xa8\xcc\x41\xce\xdb\x08\xd4\xa6\x86\xfc\xb9\x39\x2b\x64\x5b\x3c\xbe\x29\x02\x79\x6e\xe2\x20\xdb\x93\x4a\xf7\x9d\x7f\xb4\xc3\xe5\x1b\xe5\xb5\x39\x81\xf4\xb9\xaf\xf2\xd7\x5b\xe4\x37\x55\x21\xe7\x67\xf2\x4a\xe5\xd3\x78\x5f\xfb\x66\x21\x7a\x7d\xc1\xbe\xc3\x2e\xe0\x8e\xdc\x1c\x88\xb9\x8d\x3c\xed\xdb\x11\x51\x63\xb9\x8d\x3c\x6d\x22\x4f\x6e\x31\xda\xd6\x9b\x6f\x02\x50\xcf\x4d\xf6\x74\x3f\x84\x53\xf6\x03\x66\xbd\xef\xb3\x9a\x36\xd5\x23\x7f\x36\x37\xe7\x3c\x37\xa9\xd2\xfd\x60\x80\x37\x45\x24\x8f\x3b\x52\xb7\x45\x24\xfb\x49\xec\x60\x21\x32\xb0\x9f\x6c\x1b\xce\x3d\xd5\x17\x9b\x90\xd3\xf9\xf1\x5d\xb8\x66\x21\xc8\xe6\xb2\x9c\xc7\xdb\x0b\xb6\x9b\x63\x37\xf5\x20\xc1\x99\x63\x9b\x88\xd3\x9f\x4d\xac\xe9\xf1\xf2\x82\x4d\x7d\xfb\xf9\x81\x2b\x5c\x5e\xb0\x1f\xe7\x94\xad\xb4\x87\xf6\x42\x43\x5c\x9f\x1f\x57\x8e\xfb\xb2\x0d\x3c\x6d\x02\x4f\xe5\x7e\x0f\xc9\xfb\x70\xf6\xfb\xe3\xca\xb1\xd3\xdb\xfb\x70\x36\xb5\x21\x87\xf6\x41\x1b\xd2\xb6\xb4\x23\x0f\xd6\x81\xec\x37\xdb\x04\x13\xf4\x66\xbf\x87\x91\xba\xc9\x76\x6e\xa3\x3d\x9b\xfa\x8e\xe7\x7e\x8e\xfd\xdd\x46\x7b\x36\xfb\x6f\x9f\x1b\x44\xbd\x0d\xe7\x6c\xae\xa2\x79\x6e\x32\x8c\xdb\x30\xcd\x26\x4c\xe3\xde\x9c\x6d\x89\xfc\xfe\xec\x32\xc7\x50\xec\xcf\x2e\x7f\x76\x0f\x64\xbb\xbd\x32\x66\x7f\x8a\x2b\x9b\x5f\xf6\x87\xd7\xb4\x0d\xd3\xdc\x20\xd6\xfd\x81\x24\x36\x7b\x72\x9f\x9b\x43\x3d\xb7\xe1\x97\xfd\x39\x69\x9c\x92\xb6\x2d\x90\xd8\x9f\x9c\x7f\x8f\x2b\xbc\x3f\xe5\xf1\x23\xda\x74\x53\x1a\xb9\x3f\x0c\xc3\xfe\x9c\x8d\x97\x99\xb4\x18\x62\x7f\xce\x06\x17\xe3\x6f\xe3\x2a\x9b\xb8\x4a\x01\x61\x6e\xe3\x2a\x3b\x39\xb4\xf7\x68\xe3\x9d\x94\xd1\xe4\x4a\x64\xf3\xcb\xb6\xa2\x61\xb3\x0d\xf7\xb9\x29\x8d\xdc\xc6\x4b\xb6\xf1\x92\xfb\x3d\xea\x73\x13\x28\x39\x3f\x3e\x87\xb0\x58\xbd\xb0\x8d\x6f\xdc\x2f\xfa\xce\xd2\xf7\x9d\x94\x47\x0e\x4e\xdb\xa9\xda\x86\x33\xf4\xa2\xdb\xac\x4a\xd8\xc9\xe1\xb2\xcd\x79\x1b\xcb\xd8\xc9\x59\x63\x4b\xc9\x36\x96\xb1\x89\x65\x14\x4e\xcd\xde\x96\xc3\xef\xec\xd0\x30\x66\x9b\xdb\x59\xce\x4f\x93\xf6\x41\x5b\xd2\xf6\xbf\xfc\x3d\xd8\x49\xba\x2d\x4a\xd8\x44\x2f\xce\x63\xd2\x92\x34\x64\x94\xeb\x45\xb7\xa1\x8c\x9d\xe5\x00\xb0\x6e\x5b\x49\xbf\x33\x1a\xfa\xe6\x7e\xa6\x4d\x85\xc2\x9f\x9d\x5d\xa5\x5c\x31\xba\x73\xb1\x7b\xca\x2d\xe7\xb2\x6c\x62\x18\xe7\x67\x49\xa3\x5d\x39\x95\xe5\xd4\x97\x79\x0e\x97\x78\xe7\x6a\x5f\x8e\x27\xb5\x89\x6b\x9c\x1f\xb4\x3b\xbb\xab\xb7\x85\x0a\x3b\x03\xc6\xef\x0f\x2b\x95\x55\xd1\x59\x15\xcd\x21\xe1\xdb\xb0\xc5\x26\x6c\x51\x38\xdc\x7b\x1b\xb6\xd8\xdc\xd4\xf2\xdc\x6c\x96\xd9\xdc\xd7\x72\x7e\x9c\x0c\x64\xd9\xb0\xc5\x2e\x9f\xc3\x3d\x90\x70\x17\x39\x5a\x92\x4d\x30\xb9\x45\xe5\x55\x64\x15\x90\x70\x17\x59\x55\x72\x93\x16\xd0\x98\xdc\x22\xab\xd2\x4d\x1b\xb2\xca\xb8\xc5\x0d\xae\xdb\xc6\x28\x76\x51\xbe\xd3\x4b\xbb\x0e\x83\x60\x41\xc9\x7c\xce\x60\xc1\xae\x0e\x23\xe5\x04\xed\x95\x96\xa4\x15\x68\x45\x1a\x43\xe3\x0e\xff\xed\xe1\x9c\xbb\xba\xc4\x29\x5e\xdd\x16\x11\xec\x9a\x1f\x69\xb4\x91\x7d\xb7\xd8\x46\xd0\x86\x32\x5f\xb5\xbf\x64\x5b\xb7\x41\x80\x6d\x10\xe0\x26\xdb\xba\x3d\xc4\x73\x13\x0b\x78\xbc\x76\x62\x57\xd7\x41\x75\x26\x33\x86\xb5\x3a\x93\xd5\x75\x00\xd0\xda\xee\x1c\xd8\xec\x1c\x78\x6e\x80\xd6\x76\xe7\xc0\xae\xae\x0d\x80\xd6\x36\x32\xb0\x09\x06\x3c\x37\xd5\xab\xdb\x6d\x02\x9b\x60\xc0\x73\x73\x48\xeb\x36\x0a\xb0\x8d\x02\xdc\x54\xa0\xee\x70\x8d\x87\xd6\x96\x9b\xa7\x76\xe0\x27\x6f\x23\x03\x37\x39\xd3\x6d\x64\x60\x73\x5b\xc9\xa1\x9d\xbe\x70\x67\xc9\xf9\xf9\xd1\x0e\x9f\xdd\x62\xb0\x43\x69\x66\x43\xf6\x36\x32\xb0\x43\xa3\x43\xf2\x72\x5b\xf9\xb0\x43\x29\xe5\x10\xc0\x6d\x14\x60\x87\x53\x5e\xfe\xef\x73\x6c\xd3\xfd\xff\x18\x79\x77\x20\xec\xe6\xec\x73\xeb\xff\xb6\x30\x62\x37\x67\x9f\xd3\xde\x77\x73\xf6\x9b\x42\x5c\xe0\x2e\xdb\x16\xfe\xec\x96\x6c\xed\xe5\x5d\xbd\xb9\xa6\x0e\x00\xc3\x6d\x11\xff\x6e\x72\xad\xc0\x5d\x77\x25\x6c\x36\x22\x1c\x1a\xdf\x23\x54\xb4\x9b\xeb\x9d\x54\xe9\xb6\xa8\x62\x1b\x2d\xb8\x71\xd5\xb7\x45\x15\x9b\x8d\x08\xcf\x5d\x90\x44\xa3\x05\xbb\x29\x11\xe4\x4f\xb7\xfb\xb0\x77\xd3\xfd\xe2\xe2\x90\x6d\xb4\x60\xb7\x1f\xd7\x2a\xcf\xc9\xb5\xf6\xe3\x1a\xfa\xcd\x4a\x8b\xdd\x95\xf6\x82\xc4\xba\x39\x7b\x77\xb5\x7e\x65\x81\x76\x10\xd6\xee\x1a\x34\xee\xd7\xda\x6c\x1a\xf8\xb3\xbb\xc6\xab\xe2\x0a\x76\x8d\x57\x27\x04\x7b\xd7\x8f\xe7\x1c\x47\xb7\x7f\xf5\xe3\x39\x90\xce\xee\x1a\x2a\x4e\x8c\xd9\x5d\x43\xd5\x09\xa3\xde\x24\x4b\xb7\xb8\x7d\x73\xf9\xc7\xa1\x15\x68\x49\x9a\x6d\x30\xde\x61\x9f\xc5\xed\x37\x49\xd5\xed\xee\xec\x3d\x5c\xa1\x5c\x71\xba\x87\x8a\x66\xe0\x49\x7b\x61\xc9\x1e\x7a\xd2\x43\x89\x65\x9f\xfd\xf6\x44\xa0\x3d\x9c\x23\x70\xcd\x1e\x7a\xd2\x6c\xe6\x3e\xb4\x07\x5a\x91\x56\x8f\xc9\x48\x92\xfc\x9c\x53\xc9\x81\x36\x5b\xc8\xbf\x87\x53\x49\x02\x75\x8f\x6a\x57\x00\x85\xde\x75\xb2\x2d\xc3\xd8\x86\x01\x6e\x4e\x1a\xde\x62\xfe\x3d\x9d\x0e\xee\x35\xd9\x53\xe5\x33\x9d\x8e\x40\xf9\x4c\x87\x3b\x75\x0a\x83\x29\x9f\x3a\x85\x53\x9f\x23\x98\xf2\xa9\x61\x9e\xa4\x86\x6e\x4a\x59\xb7\xc7\x3e\xee\xe9\x42\x26\xf9\xba\xa7\x0b\x79\x2a\xba\x81\xee\x9e\x2a\xb3\xa9\x32\x23\xd3\xba\xad\xaf\xd8\xec\xe6\x7e\x1e\x8e\x1e\xdc\x62\xfe\x4d\xfd\xc4\xa1\xf1\x9c\xc8\x81\x62\x8a\xe7\xe1\x94\xab\x6d\x31\xc5\xa6\x98\xe2\xd0\x78\x4e\xd1\xa0\x98\xe2\x79\xb8\x49\x75\x5b\x4c\xb1\xa9\x95\x38\xb4\xd3\x97\x45\x8c\x6f\x53\x99\xf0\x3c\x14\xa1\x6e\x2b\x13\xb6\x20\xf8\x60\xc5\xff\x53\x31\x9c\x3f\xfe\xad\xfd\xe3\x6f\xff\xfd\x7f\xb4\x7f\xfc\xcf\xf6\x6f\xeb\xef\xe3\xbf\xfe\xf9\xcf\xf5\xef\xff\x39\xff\x75\xfc\xe7\xdf\xff\xdb\xa1\xfe\x7d\xae\xfd\xaf\xff\xbe\xfe\xb9\xfe\xd7\x7f\xfc\xd7\x3f\xc7\xfa\xfb\x3f\xfe\xe3\x1f\xe7\x2d\xfe\xfd\xef\x00\x00\x00\xff\xff\x80\x7b\x94\x6c\x70\x5a\x01\x00"); +var _cbg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4d\x6b\xdb\x40\x10\x86\xef\xfb\x2b\xe6\x98\x1e\x52\xef\x8c\xf6\x4b\x20\x0c\x4d\x4c\x82\x0f\x69\x4a\xd3\xb4\x85\xd2\x83\x2c\xad\x8c\xa0\x96\x84\x2c\x1f\xf2\xef\xcb\xcc\xc8\x29\xf4\x60\x64\x3f\x9e\x7d\x6d\x3d\xaf\x76\x37\xf7\xfb\xdd\x7e\xe8\x17\xd8\x7c\x99\xc7\xe6\x25\x2f\xd0\xf5\x43\x3b\xe7\xf3\x78\x99\x9b\x0c\x87\x7c\xec\x07\x63\x90\xa0\xed\x9b\xe5\xfa\x51\x2e\xcd\xa9\x9e\x8c\xe1\xf5\x2f\x6f\xe7\x25\x9f\xf6\x43\x37\x42\xa1\x73\xed\x65\x5a\x67\x01\x36\x5f\xf3\xb1\x3f\x2f\xf3\x1b\xdc\x7c\x6a\xc7\x43\xfe\x00\x6d\xee\x98\x3f\xcf\x6d\x9e\xfb\xe1\x08\x37\x8f\x77\xf8\x4e\x5f\x2e\xd3\xf4\x27\x9f\xf2\xb0\x00\x0a\xcb\x43\x2b\x57\xb3\xb9\x7f\xaa\xa7\xcf\xf5\x29\xc3\x46\x82\x6e\x1f\xef\xf0\x56\x67\xe4\xab\xef\x79\x3e\xf7\xe3\x00\x68\x3f\x5a\x1b\xfe\xf1\x6f\x6f\x53\x5e\xb3\xcc\xe6\x75\xbf\x7b\xee\xba\x73\x5e\x20\xa2\xd5\x99\x9f\xaf\xfb\x1d\xfc\x42\x40\x0b\xe4\x9d\x2f\x7e\xaf\xa3\x3f\x9e\xc6\x36\x83\xbd\xfe\xf8\x7e\x77\x3f\x5e\x86\x05\xca\x54\x46\x65\xa8\xf7\xd8\x8c\x6d\x3e\x4f\x75\x93\xe7\x7a\x38\x66\x03\x50\x59\x6b\xed\x16\x2a\x0a\x0f\x0f\x5b\xfe\xff\xff\x4d\x98\xa2\x5c\x57\xf6\xad\x92\xeb\x0a\x6b\xbb\x6e\x0b\x00\x60\x4d\x65\x51\x11\x0a\x22\x1f\x4c\x65\x49\x11\x09\xf2\x48\xa6\xb2\x85\xa2\x42\x50\x0c\xc9\x54\xd6\x29\x72\x8c\xd0\x92\x33\x95\xf5\x8a\xbc\x20\x4a\x1c\x1f\x14\x05\x41\xbe\xe0\xf8\xa8\x28\x0a\x8a\x25\xc7\x27\x45\x89\x11\x59\xc7\xf1\xa5\xa2\x52\x50\x61\x39\xbe\x56\x54\x0b\xf2\x81\xe3\x0f\x8a\x0e\x82\x12\x72\x7c\xa3\xa8\x61\x54\xd8\xc8\xf1\xad\xa2\x56\x50\x41\x1c\x9f\x15\x65\x41\x3e\x71\x7c\xa7\xa8\x13\x94\x9c\x35\x15\xaa\x2f\x14\x5f\xce\x96\xc1\x54\xa8\xbe\x50\x7c\xb9\xc2\x93\xa9\x50\x7d\xa1\xf8\x72\xc1\x26\x53\xa1\xfa\x42\xf1\xe5\x52\x70\xa6\x42\xf5\x85\xe2\xcb\x23\x71\xbc\xfa\x42\xf1\xe5\x8b\xc8\xf1\xea\x0b\xc5\x97\x0f\x05\xc7\xab\x2f\x14\x5f\x3e\x25\x8e\x57\x5f\x28\xbe\x02\x3a\x8e\x57\x5f\x28\xbe\x82\xb3\x1c\xaf\xbe\x50\x7c\x85\xc0\xd5\xa2\xfa\x42\xf1\x15\x4a\xae\x16\xd5\x17\x8a\xaf\x88\x5c\x2d\xaa\x2f\x14\x5f\xd1\x71\xb5\xa8\xbe\x50\x7c\xc5\xc0\xd5\xa2\xfa\x42\xf1\x15\x4b\xae\x96\xd6\x27\x52\x7c\x25\xe4\x6a\x49\x7d\x91\xf8\x4a\x8e\xab\x25\xf5\x45\xe2\x2b\x45\xae\x96\xd4\x17\x89\xaf\x54\x72\xb5\xa4\xbe\x48\x7c\x95\xc4\xd5\x92\xfa\x22\xf1\x55\x3a\xae\x96\xc2\xba\x07\xea\xb4\x85\x32\x52\x92\x8d\x70\x7d\xe0\xf9\x3d\x9f\x1f\xef\x5b\xba\xb9\xcc\x73\x1e\x16\x39\x3d\x64\xd7\xf2\x16\xeb\x87\xfc\x7e\x12\x4d\xe3\xc4\xab\xe4\xf5\x37\x00\x00\xff\xff\x39\xbe\x00\xdd\xb5\x04\x00\x00"); +var _bgf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x93\x5f\x6b\xdb\x5c\x0c\x87\xef\xcf\xa7\xd0\x65\xdf\x8b\xbe\x91\xce\x3f\x3b\x60\x02\x6b\xbb\x96\x5c\x74\x1d\xeb\xba\x0d\xc6\x2e\x1c\x5b\x0e\x86\xc5\x36\x8e\x73\xd1\x6f\x3f\x24\x25\x19\xec\x22\x38\x79\x22\xfd\xf0\x79\x74\xb4\xba\xdf\x3e\x6c\x87\x7e\x81\xd5\xe7\x79\x6c\x5e\x79\x81\xae\x1f\xda\x99\x8f\xe3\x69\x6e\x18\x76\xbc\xef\x07\xe7\xc8\x43\xdb\x37\xcb\xe5\xa7\x3e\x9a\x43\x3d\x39\x27\xfd\xaf\xef\xc7\x85\x0f\xdb\xa1\x1b\x21\x58\x5d\x7b\x9a\xce\xb5\x00\xab\x2f\xbc\xef\x8f\xcb\xfc\x0e\x37\x1f\xda\x71\xc7\xff\x41\xcb\x9d\xf0\x97\xb9\xe5\xb9\x1f\xf6\x70\xf3\x74\x47\x57\xfa\x7a\x9a\xa6\xdf\x7c\xe0\x61\x01\x54\xc6\x43\xab\x4f\xb7\xba\x7f\xae\xa7\x4f\xf5\x81\x61\xa5\x41\xb7\x4f\x77\x74\x6b\x35\xfa\xd7\x37\x9e\x8f\xfd\x38\xc0\xfa\x7f\xc4\xfc\x17\x7f\x7d\x9f\x18\xe8\x1c\xf1\xb6\x7d\x78\xe9\xba\x23\x2f\x10\xc2\xb9\xf5\xc7\xdb\xf6\x01\x7e\x12\x10\x82\x4f\x21\x97\xbf\xce\xa5\xdf\x9f\xc7\x96\xcf\xef\xa0\xc7\xbc\x1f\x4f\xc3\x02\x45\x41\x85\x31\xb2\x23\x36\x63\xcb\xc7\xa9\x6e\x78\xae\x87\x3d\x3b\x80\x0a\x11\x71\x03\x15\x7d\x7c\x7c\xdc\xc8\xeb\xff\x53\xe1\xc2\xa5\xb3\x6f\x8d\x5c\x3a\x10\xbb\x6e\x03\x00\x80\xae\x42\x32\x44\x8a\x7c\xca\xae\x42\x6f\xc8\x2b\x4a\xe4\x5d\x85\xc1\x50\x50\x54\xe4\xd2\x55\x18\x0d\x45\x41\x84\x3e\xba\x0a\x93\xa1\xa4\xc8\x97\x12\x9f\x0d\x65\x45\x29\x48\x7c\x61\xa8\x50\x54\xac\x25\xbe\x34\x54\x0a\xf2\x18\x25\x7e\x6d\x68\xad\x28\xa0\xc4\xd7\x86\x6a\x45\x29\x4b\xfc\xce\xd0\x4e\x51\x49\x12\xdf\x18\x6a\x04\x05\x2c\x24\xbe\x35\xd4\x2a\x0a\x5e\xe2\xd9\x10\x2b\x4a\xa5\xc4\x77\x86\x3a\x45\x65\x44\x57\xd1\xd9\xb0\xfa\x8a\xb8\xce\xae\x22\xf3\x45\xea\x2b\x86\xe4\x5d\x45\xe6\x8b\xd4\x57\xcc\x58\xba\x8a\xcc\x17\xa9\xaf\x58\xe6\xe8\x2a\x32\x5f\xa4\xbe\x12\x79\x89\x37\x5f\xa4\xbe\x52\x28\x24\xde\x7c\x91\xfa\x4a\x39\x48\xbc\xf9\x22\xf5\x95\xca\x52\xe2\xcd\x17\xa9\xaf\x4c\x51\xe2\xcd\x17\xa9\xaf\x1c\x51\xe2\xcd\x17\xa9\xaf\x9c\x65\xb4\x64\xbe\x48\x7d\xe5\xb5\x8c\x96\xcc\x17\xa9\xaf\x82\x64\xb4\x64\xbe\x48\x7d\x15\x51\x46\x4b\xe6\x8b\xd8\xc7\x8d\xcc\x1f\xf5\xc2\x5d\x2e\x96\x7c\x97\x35\xbd\x6e\x4e\x73\x9a\x67\x1e\x16\x5d\x52\xdd\x0e\xb9\xca\xfd\xc0\xd7\x85\x9f\xc6\x49\xba\xf4\xf3\x27\x00\x00\xff\xff\xd1\xcb\xaf\x2a\x1c\x04\x00\x00"); +func _baad ()(*asset ,error ){_bcef ,_adcc :=_daab ();if _adcc !=nil {return nil ,_adcc ;};_acfg :=bindataFileInfo {_ee :"UniJIS2004-UTF32-V",_ffd :4466,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492822,0)};_geffa :=&asset {_da :_bcef ,_dc :_acfg };return _geffa ,nil ; +};func _fbff ()(*asset ,error ){_fcgf ,_gggbc :=_ceba ();if _gggbc !=nil {return nil ,_gggbc ;};_ebb :=bindataFileInfo {_ee :"UniCNS-UTF32-H",_ffd :322404,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492707,0)};_aeef :=&asset {_da :_fcgf ,_dc :_ebb };return _aeef ,nil ; +};var _bgec =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8a\xdb\x30\x10\x06\xe0\xbb\x9f\x62\x8e\xdb\xc3\xd6\x92\x5d\x3b\x32\x2c\x81\xe2\x14\x6a\x96\xed\x96\xa6\x49\x0b\xa5\x07\x59\x1a\x05\x41\x23\x0b\xd9\x3e\xe4\xed\x8b\x66\x52\x77\x0f\x61\xe2\x4f\x9a\xdf\xb2\xa4\xb2\x1f\x0e\x43\xf0\x0b\x94\x5f\xd3\x64\x8e\xb8\x80\xf3\xc1\x26\x9c\xa7\x35\x19\x84\x11\x2f\x3e\x14\x85\xac\xc0\x7a\xb3\xfc\x7b\xa4\x62\xae\x3a\x16\x45\xf9\x7c\xec\xa3\x79\xfc\x74\xea\x1f\x3f\xc3\x3a\xe3\x5d\xfb\xe1\x70\xbc\xcd\x0b\x5e\x87\xe0\x26\xa8\xb9\xdb\xae\xf1\x9e\x00\x50\x7e\xc3\x8b\x9f\x97\x74\x83\x87\x8f\x76\x1a\xf1\x1d\x58\x74\xd9\x5f\x93\xc5\xe4\xc3\x05\x1e\x9e\xa7\x84\x5a\x6e\x03\xc7\x35\xc6\x3f\x78\xc5\xb0\x80\x20\xc3\x60\xa9\x16\x65\xff\xa2\xe3\x17\x7d\x45\x78\xb3\x9a\x33\x8d\xd1\xd0\x19\xd3\xec\xa7\x00\xdd\x7b\x21\xda\xff\xfc\xfd\x16\x11\xe4\x3d\xe2\x34\x1c\x5e\x9d\x9b\x71\x81\x5a\x70\x7c\xf9\xf3\x34\x1c\xe0\x97\x04\x29\xa0\x6a\x3e\x88\xe6\xf7\x7d\xea\x8f\x97\xc9\x6e\x8d\xb2\xe5\x4f\x32\xde\x26\x1d\x2e\x58\x3c\x69\xa9\xab\x3d\xe4\x52\xef\x41\x89\xa6\x25\x6a\x98\x1a\x22\x45\xd4\x32\xb5\x7b\x50\x75\x25\x88\x3a\xa6\x91\x66\x75\x44\x96\xc9\x66\x6a\xab\x4c\x23\xc7\x8f\x4c\x75\x26\x1c\x89\x90\x1a\x77\x4d\xf1\xa4\x6b\x2d\x33\x51\x51\x62\xd7\x12\x29\xa6\x8e\x68\x47\x64\x98\x0c\x51\x47\x84\x4c\x98\x49\xe5\x75\xd5\xa3\x26\x1a\x1d\x91\xcc\x64\xe9\x8d\x54\x94\x50\x94\x65\x2d\x13\xad\x4b\x29\x22\xc7\xc4\x8d\x14\xef\xb8\xd1\x51\x7c\x27\xf2\x29\x6e\x7b\x97\xff\xe7\xfb\xb3\x9d\xa7\x59\x53\xc2\xb0\xd0\xed\xa1\x33\xcb\x9b\xee\x03\x6e\xf7\x33\x4e\x31\x77\xd1\xef\x6f\x00\x00\x00\xff\xff\x8b\x02\x5f\x71\xcb\x02\x00\x00"); +func _cgfa ()(*asset ,error ){_ggec ,_cfe :=_aaae ();if _cfe !=nil {return nil ,_cfe ;};_afg :=bindataFileInfo {_ee :"CNS2-V",_ffd :371,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491570,0)};_faad :=&asset {_da :_ggec ,_dc :_afg };return _faad ,nil ;}; +var _cgbcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xd1\x6e\x1c\xbb\x0d\x7d\xdf\xaf\x98\xc7\xf4\x21\xb5\x24\x4a\x33\x12\x50\x18\x28\x12\x14\x75\x80\xb4\x45\x9d\xa4\x05\x8a\x3e\xcc\xee\x48\xee\x02\xf5\x7a\xb1\xb6\x1f\xf2\xf7\x17\x3a\x5c\x1d\x3a\xc6\xbd\xc0\x45\xe6\x90\x12\xc9\x43\x89\xa4\xbc\x37\x9f\xee\x3e\xdf\x9d\x8e\x2f\xd3\xcd\x3f\x2e\x4f\x87\xfb\xfa\x32\xb5\xe3\x69\xbb\xd4\xe7\xa7\xd7\xcb\xa1\x4e\xfb\xfa\x70\x3c\xed\x76\x3e\x4c\xdb\xf1\xf0\x32\x20\xfe\x39\x3c\xae\xe7\xdd\xee\xe6\xfb\xe9\xf8\xe5\xee\xfe\xe3\xf7\x6f\x7f\x91\xf0\xf1\xaf\xd3\xeb\x73\xbd\x2a\x3e\xdd\x7d\xbe\xff\xf9\xfc\x52\x1f\xef\x4e\xed\x69\x12\x35\xb0\xbd\x9e\xaf\x46\xa6\xe9\xe6\x9f\xf5\xe1\xf8\xfc\x72\xf9\x39\x7d\xf8\xf3\xf6\xb4\xaf\x7f\x98\xb6\xda\xba\xfc\xef\x97\xad\x5e\x8e\xa7\x87\xe9\xc3\x97\xf5\xbc\x9e\x3c\x15\xf7\xaf\xe7\xf3\xff\xeb\x63\x3d\xbd\x4c\x0b\x64\xf5\xb4\xe1\xdf\xdd\xcd\xa7\xaf\xeb\xf9\x6f\xeb\x63\x9d\x7e\x0d\xe8\x07\xd4\xd0\xfe\xa8\x97\xe7\xe3\xd3\x69\xf2\x7f\x74\x2e\x9b\xf8\xdb\xcf\x73\x9d\xfc\xd5\xca\xbf\xbf\xdf\x7d\x9e\xfe\xe3\x27\xef\xa6\x90\x66\xef\xfe\x7b\x95\xff\xeb\xeb\xd3\xc6\x55\xde\x39\xe5\x70\x38\x6e\x87\xff\xad\x97\xdd\x9f\x1c\xfe\xdb\xbb\xdb\x29\x87\xb9\x28\x0e\xce\xbb\xdb\x69\xc9\x45\x88\x13\x70\x20\x9e\x81\xd3\xc0\x41\xf5\x99\x58\xf5\xcb\xc0\x12\xba\xfd\x85\xf6\x44\x3a\xce\x03\xfb\xd2\xfd\x49\x26\xf4\x1d\xce\x84\xa1\xc3\x42\x28\x1d\x0e\xdb\xfe\x10\x6f\xa7\x2c\xde\x13\x27\x60\x47\x3c\x03\x8f\xd8\x7d\xed\xd8\xbd\xc1\x0b\x70\x24\xce\xc0\xb4\x57\x0b\xf0\x88\x55\xca\xfe\x76\xf2\xc1\xc7\x4c\xc1\x01\x82\xd9\x04\x9b\xae\x58\x28\xa8\x10\x24\x47\x41\x7b\xb7\x65\x75\xba\xa5\x50\xe0\x75\xcb\x4c\x41\x78\xbf\x45\x74\x45\xa2\x20\xaa\xc0\x56\xa4\xf7\x5b\x66\x5d\xc1\xc0\xd6\xce\xfd\xed\x82\x0c\x6c\xfa\x02\x6c\x41\xac\xef\x2d\xee\xfb\x82\x25\x10\x1f\x80\x3d\xf1\x06\x3c\x88\x27\x77\xb8\x9d\x96\xc8\x8b\x93\xdc\x06\xbc\x10\x57\xe0\x99\xb8\x01\x0f\x7f\x09\x17\x33\x39\x21\xf6\xc0\xb4\xe7\x03\x70\x24\x16\x60\xda\xf3\x11\xf6\x3c\x71\x02\x36\x7b\x33\x70\x20\x5e\x80\xcd\x5e\x06\x2e\xc4\x05\xf6\xcd\xde\x0a\x4c\xbe\x7e\x0f\x6c\xf6\x3a\xff\x14\xcc\xdf\x06\x4c\xfe\xbe\x02\x1b\x9f\x06\x4c\xff\x01\xfc\x03\xf9\x04\xf0\x0f\x8c\x27\x80\x7f\x60\xbe\x50\x98\x49\x68\x0f\x85\x99\x84\xfe\xc3\x02\xcc\xf8\x42\x06\x36\x7f\xe0\xc7\x62\x4b\x01\xfc\xc4\xfc\x83\x9f\x98\x3f\xf0\xf3\xf4\x27\x88\xd7\x73\xbd\x44\xe4\x83\xf6\x04\xfe\x1c\xf7\x47\xac\x8f\xcc\x67\x04\xbf\xc8\x7c\x46\xf0\x8b\x8c\x37\xe2\x7c\x59\x69\x29\xc2\x3e\xcb\x28\x45\xf0\x8f\xf4\x1f\xc1\x3f\x9a\x3f\xf0\x4f\xcc\x47\x44\x3c\x69\xd8\x9f\xfb\x79\xe5\x10\x3c\x71\xbf\xcf\xc1\x17\xe2\x0a\xbd\xad\x6f\xc0\x23\xde\xc5\x69\xd5\x2e\xc3\xe1\xd2\xeb\x3a\x07\x77\x35\x20\x0e\x17\x22\x8f\x0b\x26\x0e\x17\xa2\x8c\xb2\x17\x87\x0b\x50\x46\xc5\x8a\x43\x42\x8a\xcf\xc4\x02\x4c\x7b\x20\x5c\x46\x00\xe2\x40\xb0\x0c\x02\xe2\x62\x01\x0e\x03\xcf\xd8\x3f\x2e\xa4\xb8\xac\x98\xf1\x64\xb5\x97\x88\xd5\x1e\xe3\xcb\x15\x78\xe9\xf3\x6c\x0c\x95\x5d\x8e\xbf\x33\x65\xc4\xf5\xce\x99\xc3\x42\xdf\x05\xc9\x5d\x18\x1b\x9a\xe0\x2c\x62\x02\x90\x0d\x24\xbb\x6a\x70\x24\xbb\x22\x38\x21\xd9\x15\xc1\xbd\xd9\x0f\xb2\x42\x87\x07\xec\x17\x92\xad\x8a\x49\xb6\xaa\x3d\x92\xad\x6a\x8f\x64\x2b\xc8\x0a\x0f\xa3\xe9\xe1\x0d\x7f\xa1\xb5\xdb\x29\x88\x4b\x23\x40\x71\x7d\xae\xca\xe8\xfb\x22\xae\xcf\x3d\x19\xe5\x22\xe2\x7a\xcb\xf6\x65\xb6\x05\x18\x5e\x8c\x50\xdc\xac\x0b\x3c\x05\x8b\x0a\x12\x05\x59\x05\xb6\xa5\xa8\xc0\x9c\xac\x2a\x98\x29\xd8\x43\xb0\x98\xd7\x83\x0a\x02\x05\x7a\x0b\xb9\x00\x6d\xb3\x44\x46\xe1\x11\x66\x34\x3d\x66\xac\x18\xd6\x28\xb3\x09\x32\x16\x30\x31\x5e\x83\xcc\xf4\x88\x42\x92\x44\x16\xbd\x91\x65\xe1\x51\x4b\x40\xe6\x22\x49\x05\xcd\x1c\x73\x2f\xbd\xd3\x75\x81\x59\x98\xc1\xc1\x16\xe0\x30\x23\x13\xd7\x5b\x59\x16\x56\x9a\xa0\x95\x95\x37\x11\x6c\x6a\x90\x21\x88\xc7\x06\x86\x20\xa8\x6d\xe7\x68\x51\xf4\x74\x23\x31\x22\x18\xcd\x49\x44\x16\x6c\xf0\xb6\x20\xab\x80\x31\x48\x01\x4b\xc6\x20\xab\x2e\x30\x13\x7b\x2c\xb0\x98\x0e\xba\x80\x89\x96\x4d\x05\x8c\x32\x7a\x15\x70\x4b\x44\x66\x2d\xaa\xde\x21\xb2\x24\xc3\x1a\x54\x30\x01\xaa\xc8\x0e\x3b\xae\x48\x14\x59\x44\x5c\x16\x0b\x3a\xe2\x28\x59\x25\x92\x50\xc5\x76\x74\x49\xf3\x66\x79\x4a\xa2\x02\x5b\x11\x55\xc0\xcc\x26\xc4\x18\xb9\x63\xc1\x1b\xcc\xbd\x11\x68\x1e\x2c\x88\x45\xf3\x10\x79\xc1\x96\xaa\x02\xde\x87\xa5\xe1\x86\x5d\x4d\xb4\xe6\xd0\x8d\x46\xd9\xb4\xe6\xd0\xda\x17\xea\xbd\xbe\x7d\xc6\xac\x6f\x4d\x5b\xf5\x38\x9b\xd6\x04\x17\x68\xbc\x4d\x5a\x13\xe8\x1d\x0d\x48\x43\xb7\x70\x03\x27\x5d\x9f\x88\xb5\x9b\xcc\xc4\xba\xdf\x70\x7d\x3b\x2a\x5a\x43\xf7\xca\xb9\xfc\xd2\x7a\x65\x61\xeb\xbd\xac\xa7\x87\x7a\x9d\x3b\xd2\x5f\xf8\xe3\xd3\xa3\xcd\x26\x7b\x94\x51\x97\x5c\x3f\xab\x98\x39\x7f\xfb\xfc\x1a\x9f\xdd\x5d\x5c\x38\x5a\x7b\xef\x1a\x9f\x78\x45\x65\x7b\xd5\xcd\xa6\xc2\x03\x8a\x2f\xfd\xd4\xdb\xd5\xf8\x2c\x50\x99\xc1\xd5\x54\x7b\xa8\xec\xd9\x21\x54\x05\x4c\x78\x61\xf0\xbd\x4c\xc7\x27\x1e\x4b\xde\x1e\x17\x9e\x2a\xc1\x3b\x81\x73\x39\x49\x32\x15\x9e\x00\x8e\x61\xf4\x1a\x1c\x9f\x78\xdd\xf0\x4f\x85\x24\xe6\x0b\x87\x99\xa2\x3d\x1c\x6c\x17\xea\x23\xb1\x79\x3a\x37\xc2\x10\xd7\xd3\xb9\xe4\xcc\x01\xc2\x6c\x88\xc3\x4b\xb6\x38\xaa\x7c\x34\x15\xc6\x92\xe3\x58\xf3\xb3\xa9\x16\x9c\xa5\x8d\x44\xff\xc6\x62\xc1\x85\x65\xd3\x75\x25\x51\x57\x66\x5c\x76\x4e\xbe\x66\xaa\x86\xae\xc5\x62\xf4\x6d\xdc\x0e\xf1\xad\xe8\x80\x16\xea\x56\xd3\x35\xe8\xac\x24\x8d\xb6\xe0\x15\xe4\x8b\xb5\xce\x5e\x5b\xa3\xf1\x8b\xce\x1e\x56\xae\x5f\x4d\xa7\x2d\x38\xd3\x66\x7f\x0d\x8d\xf6\xec\x55\x67\x13\x21\x9b\x4e\xa7\x4b\xb1\xde\x6e\xfe\xc4\x69\xd7\x66\x63\x90\x68\xba\xa4\x3a\x6b\xf1\xb6\x2f\xea\xbe\x60\x6d\x50\x4c\x37\xab\xce\x5a\xe0\xde\x74\xda\x99\x82\x35\x64\xe3\x90\xd4\xa6\xcd\xcd\x94\x4c\xa7\x36\xc7\xe9\xb5\xc6\xbb\xd2\x1a\x2a\x27\x17\xaa\x52\xa3\x6a\xbe\xfe\x21\xe9\xaf\x5d\x41\x9b\x00\xc0\xe3\x7a\xde\xf1\xb7\x86\xc3\xeb\xe5\x52\x4f\x2f\xf8\x65\x03\x3f\x26\x4c\x5b\x6d\xc7\x53\xe5\xcf\x27\xe7\xa7\x73\xdf\x85\xff\x7f\x0b\x00\x00\xff\xff\xd3\x1e\xdc\xc0\x6a\x11\x00\x00"); +func _feg ()(*asset ,error ){_eaa ,_aec :=_ccef ();if _aec !=nil {return nil ,_aec ;};_cdegd :=bindataFileInfo {_ee :"Adobe-Japan1-5",_ffd :2005,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491332,0)};_deg :=&asset {_da :_eaa ,_dc :_cdegd };return _deg ,nil ; +};func _cee ()([]byte ,error ){return _gb (_gcc ,"GB-H")};func _acfd ()([]byte ,error ){return _gb (_dbgfe ,"UniJISPro-UCS2-HW-V")};func _gbedg ()([]byte ,error ){return _gb (_efdad ,"UniKS-UTF16-V")};var _ddae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x5a\x4d\x8b\x65\x39\x72\xdd\xbf\x5f\x71\x97\xe3\xc5\xb8\xf4\x11\x0a\x49\xf0\x78\xd0\x74\xf7\xe0\x62\x18\x8f\x71\xbb\x6d\x83\xf1\xe2\x4a\x0a\x15\x09\xae\xcc\x24\x2b\x6b\xd1\xff\xde\xc4\x39\xb7\xab\xed\xb1\xa1\x17\x43\x4c\x9f\x92\xe2\x86\x42\xf1\x71\x42\x2f\x3f\x7c\xff\xf1\x87\x8f\xcf\x4f\xef\xc7\x87\x7f\x7a\x7b\x99\x3f\xd9\xfb\xb1\x9f\x9e\xd7\x9b\x7d\x79\xf9\xfa\x36\xed\x18\xf6\xe9\xe9\xf9\x76\x8b\xe9\x58\x4f\xf3\xfd\xd7\xff\x84\x98\x9f\xcf\xd7\xdb\xcd\xf7\xff\xf4\xcb\x97\x77\xfb\xfc\xf1\x79\xbf\x1c\x99\xeb\xd6\xd7\xd7\x6b\xed\x71\x7c\xf8\x67\xfb\xf4\xf4\xe5\xfd\xed\x97\xe3\x0f\xdf\xad\x97\x61\x7f\x77\x2c\xdb\x8e\xff\xf5\x6d\xd9\xdb\xd3\xf3\xa7\xe3\x0f\x7f\x7e\x79\xb3\x33\x7e\xfb\x87\x9f\xbe\xbe\xbe\xfe\x97\x7d\xb6\xe7\xf7\x23\x00\xb3\xe7\x05\x79\xfb\xf0\xfd\x5f\xce\xd7\x7f\x3c\x3f\xdb\xf1\xe1\xcf\x3f\x7d\xff\xc7\x1f\x7f\xfe\xfe\x8f\xff\x80\x7f\xc1\x3f\xfc\xab\xbd\x7d\x79\x7a\x79\x3e\xfa\xdf\x87\xa0\xbf\xc1\xff\xf2\xcb\xab\x1d\xf1\x52\xf0\xf3\xc7\x1f\xfe\xba\xf7\x17\x7b\x3f\x62\xa0\xf2\x0f\xff\xfe\xf3\xc7\x1f\x8e\xff\x88\x47\x0c\x47\x2a\x12\xc2\x7f\x5e\x4b\xff\xed\x2f\x2f\xcb\x2e\x0b\x6e\x89\xe7\x99\x2f\xcb\xbe\xbc\x9e\xd3\xde\xce\xe7\x4f\x76\x3b\x8e\x7b\x08\x8f\xe3\x38\xee\x2d\x3c\xfc\xbf\xbe\x8b\xdf\xc5\xc7\x71\xff\xd3\x8f\x7f\xfa\xf1\xe1\x66\xff\xcd\xfa\x5b\xa4\x9a\xe7\x97\xf7\x65\x9b\x18\x34\xdc\xe3\x7e\x1c\x2d\x74\xf1\x4d\xff\xf3\x5f\x6f\x6e\x26\x3f\xfd\xb4\xae\x0d\xc9\x37\x54\xbb\x36\xdc\xcf\x78\xfa\x37\xcf\xb8\xed\x71\xc4\x10\x6f\xf7\x33\x11\x49\x56\x1e\x47\xec\xe5\x76\x3f\x33\x91\xec\x6b\x92\xfa\x2e\x21\x22\x2b\x3f\x8e\x5c\x9a\x23\xab\x00\xf1\x35\x12\xfa\xed\x7e\x16\xae\x29\xe7\xf9\x38\xa4\xb8\xe6\x32\x02\x90\xd1\x1f\x87\x28\x90\xc9\x35\xab\x3d\x0e\xa9\x40\x8c\xc8\x76\x04\x5f\x57\xea\x51\x93\xc7\x51\xa2\x6b\xae\x44\xaa\xed\xc7\x51\x5a\xbd\xdd\xcf\x46\xa4\x9d\xf2\x38\x54\x15\x88\x12\xd1\xc7\xa1\x35\x00\x69\x44\xb6\x23\xfe\xad\x36\xb8\xcb\x6d\xd6\xea\x9a\x3b\xf5\x74\x47\x6a\x71\xcd\x27\x91\x73\xe7\xc7\xd1\x70\x8a\x41\x64\x6c\x7d\x1c\x3d\xbb\x37\x26\x91\xe9\x87\x89\x21\xf9\xc7\xe6\x22\xb4\x01\x95\x7c\xbb\x8f\x80\x55\x23\xd0\xd3\x4d\x6f\xf7\x41\xe7\x0f\x3a\x3f\xb6\x70\xbb\x0f\x7a\x7f\x24\x40\xa9\xca\xed\x3e\xe8\xfe\x01\xf7\xc7\xac\xed\x76\x1f\xf4\xff\x80\xb7\xa3\x68\xba\xdd\x07\xdd\x3d\x0a\xa0\x52\x5c\x3d\x3d\x37\x14\x90\x16\x57\x4f\xd7\x8d\x0a\xa8\x8a\xab\xa7\xef\x06\xbc\x10\x5b\x76\xf5\x74\xc3\x80\x1b\x62\xcf\xae\x9e\x7e\x18\x27\x62\x20\x24\x57\x4f\x47\x8c\x01\x28\xfa\xb1\x07\x3d\x31\x26\xa0\x14\x5d\xfd\x22\xb4\x00\xe5\xe0\xea\x8d\x90\x01\x92\xe0\xea\x37\xa1\x4d\xa8\xeb\xed\x3e\xe9\xaf\x09\x7f\xa5\xd2\xc3\xed\x3e\xe9\xaf\x19\x19\x88\x4d\x6e\xf7\x49\x7f\x4d\xf8\x2b\xd5\xda\x6e\xf7\x49\x7f\x4d\x86\x6b\xab\xe9\x76\x9f\xf4\xd7\x84\xbf\x52\xf7\x00\x99\xf4\xd7\x84\xbf\x72\x50\x57\x4f\x7f\x4d\xf8\x2b\xc7\xe2\xea\xe9\xaf\x09\x7f\xe5\x24\xae\x9e\xfe\x9a\xf0\x57\xce\xe2\xea\xe9\x9c\x09\xe7\x64\xc9\xae\x9e\xce\x99\x63\x6e\xcf\x90\xec\xea\xc7\x0a\x80\x5c\x48\x8c\x58\xb5\xb8\xca\x93\x27\x97\x5a\x01\x29\x21\x7d\x1c\x59\x71\xa0\xb1\x2a\x20\x53\x64\x9b\x7f\x71\xd8\x05\xd5\xc7\x51\x11\x5f\x73\x58\x03\x04\x23\x4a\xf7\x8d\xbc\x8e\x89\xeb\xc8\x9a\xe2\xed\x3e\x79\x1d\x73\x4d\x87\x6a\x2c\x0e\xb9\x8d\x97\xc8\x02\x4f\x2c\x9a\xba\x5c\x7d\xae\x8a\x8d\x54\x0f\x51\x7b\xc0\x2a\xeb\x80\xa0\xbe\x36\xd7\xc5\xab\x9d\x76\xce\xc7\x91\x5b\xa8\x80\x16\xa1\x05\x28\x01\x32\x40\xd8\xd8\x3c\xa7\x27\x03\x60\xee\x7d\x3e\x8e\x4c\xf5\x7b\x0f\x42\x03\x50\x02\x34\x09\xf9\xc6\xee\x31\xb1\x18\x26\x14\xb9\xf7\x0c\x28\x11\x4a\x0e\x89\x02\xca\x80\x46\xc5\x2a\x71\x68\x34\x42\xed\xb7\x55\x5e\x99\xee\x2b\xb8\x27\x24\xb8\x73\x56\x80\x27\x28\x72\xf5\xf0\x5d\x61\xf1\x8b\x6b\xfa\xaa\x4c\x68\x11\x5a\x7e\xb5\x39\x02\x32\x40\x2c\x88\x9e\x7c\x8b\xe1\xbb\xa2\x57\x4d\x09\xcd\x4d\x8d\x4b\x08\xc9\xe3\x90\xec\xe9\xbe\x22\x2a\x29\x85\x44\x4f\xe4\x15\x11\x13\x2b\x7a\x1c\x48\xcc\x5c\xd5\x08\x35\x6c\x2c\x80\x3a\xa1\x13\xab\xb8\x71\x00\xb2\x80\x55\x80\x8c\x46\xb8\x90\x08\xeb\xa3\x25\x42\xc9\xeb\x69\x80\xa9\x96\x09\xb9\x11\xd9\x43\x6e\x45\xa3\x11\x2e\x24\x37\xea\xaa\x84\x68\x57\x07\x44\xbb\x6c\x60\x55\x05\x34\x09\xb9\xbf\xa2\x50\xfd\x22\xe4\xfe\xca\x3d\x02\x32\x42\x86\x55\x84\x36\xa0\x0d\xeb\x71\x69\x71\xd3\xfa\x0d\xeb\x05\x76\x6d\x5a\xef\x42\x72\x87\x5d\x9b\xd6\x6f\xb8\x50\xe0\xe8\x4d\xeb\x37\xac\xef\x30\x75\xd3\xfa\xdd\xb1\x8a\x1b\x4f\x42\xee\x42\x09\xdc\x48\x17\xba\x90\x28\xdc\xc8\x03\xed\x85\x55\x8a\x66\xfd\x6b\x87\xfd\xff\x9a\xee\x42\xc5\xba\x84\xa0\x3d\x2e\x16\x2e\x0a\x89\x88\x8f\xc4\xb8\x4d\x1e\xab\x22\x91\x90\x10\x52\xac\x8a\x80\x2a\x21\xd8\x18\x13\xa0\x41\x68\x00\xa2\xfa\x49\x08\x4e\xf7\x5a\xb6\x12\x12\x91\x42\x24\x51\x3d\xec\x4a\x83\x46\x78\x14\xa5\x41\x23\x5c\x88\x24\x6c\x1c\x99\x10\xa2\xbb\x40\xfd\xb8\x36\x1a\x9a\x3b\xec\x1a\xb8\xad\x34\xa1\xab\x42\xfd\xa4\xae\x99\xb1\x2a\x03\xe2\x81\x5c\x48\x89\x15\x50\x21\x84\xdb\xaa\x5c\xa5\x84\xc8\x1d\x1a\x20\x9e\xd1\x85\x14\xda\x35\x79\xc6\x89\x33\x56\x42\x3c\xe3\x84\x5d\x09\x07\x9a\xb4\x0b\x29\x56\x12\x74\x31\xc5\x12\xf2\xa9\x64\xac\x62\x3e\x41\x48\xac\x84\x3a\x21\x18\x81\x88\x4c\xcc\xa7\xc4\x3c\x47\x3e\x25\xe6\x79\x5a\x1b\xab\xb0\xd1\x50\x33\x20\x24\x56\xf8\x8b\x59\x07\x21\x45\x70\x6c\x66\x1d\x84\x14\x06\x00\xb3\x0e\x42\xc0\x07\x56\x32\xfa\xcb\x60\xbd\xe2\x8c\x46\xeb\x3d\xd3\xa4\x28\x8c\x30\x9a\x6a\x30\xb5\xc2\x54\xa3\xa9\x48\xc4\x42\x53\x99\x88\xc9\xd3\x4a\x62\xc3\xaa\x4d\x53\x3d\x61\x44\x03\xd4\x6f\x7e\x11\xc9\xa3\x8c\x55\x26\x0f\x84\xc4\x86\x33\x32\x79\x12\x78\x9a\x32\x00\x36\x8d\x40\x90\x47\x14\x08\xb6\xe2\x95\x09\x75\x8f\x55\xb6\xe2\x25\xa8\x2c\x09\xab\x84\x95\x45\x58\x59\x70\xdb\xc2\xca\x22\xc8\xba\x8c\xc0\x14\x66\x1d\xc4\x55\xde\x64\x2f\x42\xf6\xad\xbc\xb1\xad\xaf\x72\xb2\xa0\x36\x40\x85\x50\xf9\x56\xde\x0a\xd8\xe1\x22\x37\x65\x79\x2b\xcc\x21\x88\xab\x96\x15\xe6\x50\x41\xc2\xb0\x96\x15\x26\x0c\xc4\x75\xa0\x72\x22\xbe\x0a\x8d\x68\xbe\x91\x44\x62\xa9\x77\x1b\x11\x05\xc4\x6e\x03\x21\x51\x2b\x20\xf8\x4b\x11\xbe\x02\x5d\xca\xf0\x85\x90\x58\x09\xe1\x8b\x20\x25\x52\x90\xee\x24\x25\xab\x32\x3b\xbc\x3b\xaf\xca\xec\x80\x28\xa5\x60\x15\xb3\xa3\x1a\xaf\xd6\xd3\xaa\x32\x98\x20\x94\xb9\x5d\x19\x4c\x20\x38\xa2\xc9\xed\x22\xc1\x59\x8d\x90\x73\x8b\x45\x42\xb8\x40\x08\xa5\x22\x7c\xc9\x79\x16\x38\x8f\x34\x64\x07\x39\xcf\x1a\xc8\xed\x8e\xb4\x1a\xcc\x6d\x88\xc2\xfa\x35\x98\xdb\x03\x76\x75\xc4\xea\xa0\x5d\x10\xd2\x53\x02\xc4\x8d\xae\xbe\x04\x1f\x4c\x16\xd9\xcc\x9a\x7e\xb5\x25\xc0\xd4\xc9\xab\x85\xa8\xac\x13\x93\x57\x3b\xb9\x11\xad\x98\x9c\x67\x2d\x6c\x04\x51\x5d\x8b\x1b\x21\x4a\x40\x8a\x2e\x6e\x5c\x8b\xab\xdc\x39\x8b\x75\x02\xa2\x44\xa4\xc2\x62\x2b\x5e\x9e\x30\x25\xc2\xfa\xc5\x84\x81\xa8\xea\x9c\x67\xad\xcd\x8d\x30\x22\xc1\x7a\x32\xa3\x65\x1e\xd1\x25\x21\x61\x8c\x11\x0d\x51\x8a\xd3\xd9\x65\x8c\x68\x88\x92\x9d\xf3\x2c\x63\xef\x80\x28\x19\x91\x43\xb2\xb4\xb6\xd7\xe8\x92\x71\xb5\x9b\x35\x1a\xa2\x92\x5b\xec\x01\xbb\xb6\x97\xa1\x92\x9d\xfd\xad\xcd\x32\x04\x51\xb2\xcf\x0d\x6b\xb3\x0c\x6d\x4f\xb8\x92\x51\x4d\x36\x7b\x38\x44\x11\xa4\xfb\x66\x81\xd9\x34\xc2\x03\xd3\x48\xbc\x2c\x6c\xa8\xf7\xee\x6c\x61\x5f\x50\x7c\x1c\x8a\x4b\xb3\x80\xee\x6c\xa0\x41\x45\xbc\x46\x1b\x69\x90\x45\xcf\xae\x22\x9e\x56\x16\xd1\x9a\x28\x0a\x28\xa8\x45\x64\x9a\x81\x35\x14\xf1\x86\x6d\x64\x0d\x14\x25\x47\x6c\x34\xae\x82\xfa\xa2\xe9\x77\x5b\xb1\xb1\xef\x5a\xe2\x0e\xbf\x79\x63\x95\xb2\xec\x17\x58\xd4\x1b\x90\x65\x5c\x20\x45\x0d\x01\xab\x50\x04\x0d\xb5\xac\x60\x38\x34\xd6\x32\x8a\x9a\xbd\xe5\x99\xa0\x87\x9b\xf8\xb0\x59\xaa\xbb\xd3\xe4\xec\x84\x3a\xd4\x37\x40\x27\x20\xea\xc2\x17\x59\xb8\x0c\xc5\xa6\x34\x9f\xa9\x8d\xc5\x86\xa2\x34\xf8\x8e\xc5\xc6\x30\x49\x97\xe6\xe1\x67\x65\x70\xe3\xd5\xb0\x0b\xa0\x4c\xa8\x61\x15\xd4\xa3\xd8\x50\x88\x78\xf2\x58\x19\x27\xa1\x13\xab\x3a\xa0\x41\x08\x25\x29\x11\x82\xd3\x8b\xf7\xf0\xd2\xbc\x27\x59\x41\x0f\xa7\x10\xc9\x30\x02\x79\x6e\x65\xc2\x7a\xdc\x69\x99\xb4\x1e\xad\x58\x32\xec\x9a\xb4\x7e\x62\x70\x77\xaa\x66\x05\xfc\x9a\x42\x30\x3a\x59\x59\x3c\x90\x8b\xd2\x3a\x74\xad\x44\x08\x67\xcc\x84\x78\x46\xe4\x66\xeb\xf0\x17\x72\x93\x42\x24\xc3\x7a\x8c\x4e\x56\xbc\x35\x95\x8e\x88\x2c\x9b\xc7\x46\x6b\x11\xa7\x90\x56\x90\x88\x14\x24\x38\x56\x36\x8f\x8d\x44\xec\xb4\x6b\xf3\x40\x24\x71\x3e\x3b\x1b\x0b\x3d\x85\x88\xd7\x45\x53\x06\x80\x3a\x89\x2b\x3d\x13\x12\x42\xf0\x97\x53\x48\x53\xd4\x1f\x53\xaf\x39\xa5\x67\x42\x95\x10\x9a\x86\xf3\x01\x53\x3c\x59\x98\x22\x53\xba\xd7\x58\x53\x66\x8a\x92\xc4\x79\x71\x36\x65\x98\x40\x14\x0c\x32\xa6\x0c\x13\x05\xaf\x13\x6f\x9f\xa6\x83\x76\xa1\x66\x74\x9a\xca\x30\x81\x10\x41\xc8\xe9\xa0\xa9\x03\x76\x09\x21\xda\x85\xce\x25\x70\x0e\x3b\x97\xa9\x47\x4b\xe9\x05\x76\x8d\x49\x08\x91\xa3\xb0\x8b\x91\xa3\x88\x9c\x5e\xe0\x2f\x46\x0e\x84\x44\xe4\xb9\x32\x72\x20\x4a\x57\xe8\x42\x87\x30\x9d\x6c\x9f\xb0\x7e\xd2\x13\x13\xf7\xe8\x85\xcb\x74\x9e\x84\x30\xee\x5c\x1b\x11\xbe\x8a\xc8\xe9\x8a\x2f\x32\x72\x94\x91\xa3\x38\x10\x23\x47\x11\x39\x68\x40\xa6\x8c\x1c\x65\xe4\x28\xce\xc8\xc8\x51\x27\x84\xa5\x57\xea\xe2\xb1\x17\x72\x08\xe9\xae\x8b\x46\x2c\x78\xa2\xc2\xf7\x8b\x9e\xc0\x78\x18\x69\xea\xa2\x27\x16\x6e\xa8\xd2\x08\xde\x10\x68\xa3\xd0\x08\xd0\x46\x8a\xd2\x91\x69\x6a\x8c\x2f\xd0\x46\x41\xd9\x55\xe3\x81\x0c\x5e\x6d\xdc\x48\xaf\xa2\x7d\xb2\xc6\xaa\xd1\xab\x60\x59\x82\x0a\xa0\xc6\x33\x82\x65\x49\x85\x57\x8d\x67\x44\xed\xef\x8d\xab\xe8\x68\x90\x4b\xe1\x81\x8c\xc7\x36\xf8\xbe\x51\x3d\x8f\x0d\x72\x29\x3c\x90\xf1\xd8\x2e\xf4\x4a\x05\xd6\x6b\x35\x1c\xbb\xf1\x8b\x3c\x36\x28\xa8\xd0\xfa\xcd\x63\x6f\x1e\x1b\x1b\xd9\x47\x20\x44\x1a\x8e\xcd\x3e\x02\x71\x75\x08\xdd\xbc\x47\x94\xed\xde\x60\x04\xcb\x36\x84\x08\x0f\xc4\xb2\xad\xe4\xae\x0c\xcc\xcd\x63\x6f\x8c\xad\xa8\xd1\xba\x79\xec\x8d\xdb\xee\x54\xcf\x63\x63\x3c\x14\x5a\xcf\xd2\x01\x2e\x56\xba\x8f\xad\x46\x2e\x46\x21\x6c\x66\x95\x15\xa0\x82\x5b\x74\x54\xb9\x0a\x6e\x41\x21\x02\x53\x2b\xd3\xbd\x7a\x8a\x6b\x70\x56\x6a\x95\x8d\x02\x42\xc4\x99\xa4\x55\x36\x8a\xca\x61\xef\xfa\xe2\x20\x34\xb0\x31\x01\x9a\x84\xe6\xaf\xe4\xd2\x2a\xeb\x44\x65\x9d\xe8\x19\x90\x11\xda\xd8\x08\x08\x2f\xb2\x14\x22\xe8\xe1\x95\xed\xa4\xfa\x64\xa7\x21\x14\x40\x9b\x10\x2e\xad\x03\x9a\xdc\xe8\x42\x43\x84\xa9\x93\x1b\x5d\xd4\xda\xf2\xef\xb7\xe2\x3a\xe9\x28\x4f\x7d\xc5\xbb\xa9\x55\xa6\x3e\x84\x08\x6a\x7f\x9d\x74\x14\xab\x41\xe7\xa7\x1a\xa1\x13\x1b\x61\x36\x53\xbf\x72\x3c\x44\xa1\x27\x01\xa6\x50\xf0\x45\xab\x93\x5e\x01\xbf\x2e\xf4\x1d\xdb\x14\x84\x86\x84\xab\x61\x9b\xaa\xe8\x49\x85\x8e\x62\x4f\xaa\x5e\x46\x34\xa0\x31\x56\x96\x11\x08\x29\x01\xd7\x8c\xd7\x1c\xab\x0b\xba\xd0\x18\xeb\xba\x74\x61\x3c\x0c\x50\xcf\x3c\x07\x31\xd7\x80\x06\x44\x62\x4e\x21\x05\x74\x83\xc4\x9c\x42\x03\xaa\x7a\x65\x06\x43\x48\x89\xf0\x17\x33\xb8\x7a\x74\x6b\x40\xd6\xd5\x7d\x41\x9e\xd4\x95\x2e\x64\x74\x83\xe4\x6b\x40\x0e\x90\xe4\x5b\x33\x6c\x44\x2d\x6b\xd4\xd5\x38\x57\xa2\xaa\x37\xa6\x7e\xf3\x74\x55\x3c\xdd\x58\x63\xba\x42\x48\x41\x03\x6a\x4c\xd7\xc6\x47\x99\xc6\x55\x89\x90\x62\x63\x05\x44\xf5\xc8\xba\x82\x9e\xd4\x68\x17\x84\x46\x9f\x5a\xac\x31\xeb\x20\x38\xac\x59\x63\xd6\x41\x68\xbc\xbe\x38\x08\xe1\xb6\x8b\x02\x9a\x84\x16\x56\x09\x20\x23\x84\xd1\x09\x8c\x8d\x83\x8c\x75\xfc\x2c\x80\xc7\x35\xeb\x4c\x44\x08\x29\xa8\x2c\x9d\x7d\xb7\x23\xc5\x58\xc2\x3b\x53\x0c\x82\x33\x97\x75\xa6\x58\x9f\x5c\x05\x5d\x0c\x39\x08\x29\x70\x74\x67\xc8\x75\x7a\x02\xd7\xd1\xe9\x09\x88\xca\xc2\xd5\xe9\x09\x0c\x58\x9a\xc0\x07\x38\x60\xd9\x89\x14\x4b\x08\x80\x73\x5e\x90\xf3\xeb\x98\x32\x20\x38\xfa\xc4\x48\x97\x50\x89\x4f\x46\x0e\x84\xe0\x51\xd9\x4e\x46\x0e\x7e\xc5\xd0\x1c\xb1\x11\x53\x0b\x85\xc4\x46\x88\x1b\x61\x6a\x46\xc2\x9c\x34\xf5\xe4\xa5\x81\x23\x9e\x34\xf5\x74\xdf\x6b\x4e\x84\x26\x21\x1c\x1b\x55\xfd\x24\x7f\x82\xd0\x9c\xa9\xde\x08\xe1\x3a\x50\xd5\x39\x31\xda\x38\x61\x57\x16\x40\x42\x08\xa9\xd0\x08\x15\x42\xb0\x0b\x94\x6a\xf0\xd2\x06\x2f\xad\x29\xa0\x46\xa8\x61\x55\x07\xd4\x09\x75\xac\x6a\x80\x4e\x42\x60\x0d\x97\x7a\x04\xd3\x70\x52\xa3\x19\x41\x3e\x48\x8d\xc7\x40\x7c\x75\x42\x93\x90\x57\x13\xbc\x48\xd8\x20\xc1\x81\x90\xd2\x71\x20\xbc\x8b\xd9\xc0\xa5\x65\xc4\xd7\xe0\xa5\x41\x48\x41\x25\x1e\xbc\x34\x08\x29\x28\xa8\x63\x66\x42\x05\x1b\x61\x3d\x6b\xe1\x40\xe1\x2b\x9d\xba\x78\x46\x84\x1c\xe6\x37\x1b\x0c\xb9\xc1\x90\xeb\xdc\x48\xbb\x50\xd2\x30\xd2\xd9\x60\x49\xc3\xef\x0d\xa2\x48\xab\x41\x66\x04\xc1\x27\x03\x1b\x2c\x69\xf8\xbd\x41\xf1\x4b\x93\x8d\xc5\x2f\xe2\x5d\x0c\xaf\x08\x36\x48\x83\x30\x9a\x6b\x06\xb7\xe0\x68\x6e\x98\xc3\x55\x7c\xb8\x35\xce\xe1\x14\xa2\x51\x00\x55\x42\x15\x90\x02\x6a\x84\x3a\x36\x12\x3a\x09\x9d\x58\xd5\x00\x0d\x42\x86\x55\x84\x36\xa1\x0d\x72\xe9\x07\x9a\x6c\x66\x13\xa4\x57\x13\xa1\x44\x28\xe1\xb6\x2b\xa0\x4c\x88\x6f\x20\x09\x50\x21\x84\x17\x2f\x4c\x50\x73\xd0\x7a\xe7\xbe\x7c\x29\xb1\x39\x68\x2a\x78\x30\x5e\x4a\x6c\x92\x07\x43\xa8\x24\x58\xcf\xc8\x81\x10\x45\x76\x4c\x0e\x55\xd3\xdb\xa7\x72\xf4\x9a\x6c\x9f\xf8\xc5\x50\x34\xc3\x08\xc6\xc4\x9c\xb0\xeb\x82\x68\x17\x1e\x46\x15\xd9\x31\x19\x13\x10\xa2\x18\x4b\x26\xfb\xe3\xf4\xd0\x50\xce\x59\x73\xd2\x2e\x52\xe3\xd6\xfe\x77\x2b\xd6\xfa\x7f\x3a\xf1\x64\xf7\x9c\x8b\x1f\x87\x89\x8b\x1f\x5f\xfc\x38\x7c\x4e\x96\x3c\xd7\x6f\x14\x6f\x92\xd9\xce\x85\xb7\x22\xe4\xce\x64\xc7\x9b\xde\xe5\x54\x50\x88\x27\x69\x2c\x84\x28\x3a\xde\x24\x8d\x9d\x68\x82\x82\x44\x99\x6c\x82\x10\xa2\xc2\x8d\x34\x02\x5d\x8a\x13\xca\x64\x97\x9a\xe8\x52\x2a\x38\x2e\xbb\xd4\x44\xdd\x22\x37\x9c\xac\x5b\x93\xcf\x93\x34\x75\x5f\xab\x70\x59\x60\xc9\x93\x9d\x05\x42\x94\x41\xc4\xce\x82\xe7\x23\x25\x4b\xe6\xf3\x91\x2d\x3c\xcb\xe3\x3d\xcc\x16\x8b\xd4\x72\x82\xab\x82\xb2\xb8\xf8\x12\x01\x51\x32\xba\xe7\x22\xd9\xc5\x2b\x90\xb2\x55\xf2\x15\xc8\xcc\xc7\x06\x2d\x18\x34\x0c\x6f\xca\x14\x4a\x0e\x66\x1c\x21\xf0\xe4\xa3\x0c\x35\x3e\xf9\xd8\x26\xe4\x99\xbf\xf9\x00\xb3\x03\x7f\xbe\x76\x17\x6e\x3e\xad\x6c\x3c\x87\x68\xf3\x03\x6d\xbe\x77\xec\x84\xba\xd5\xdd\xab\x1b\x0f\xf9\x97\x28\xd5\x69\xca\xe6\x7b\xfe\xc6\x13\xae\x76\x1f\x34\x76\x82\x73\x28\x4a\xad\x58\x05\xe7\x6c\xbc\x9d\xd4\xe0\x31\xba\xf9\x76\xb2\xb3\xe7\x5e\x0d\x1e\x90\x3b\x8f\x0b\x02\x1d\x70\xce\xba\x33\xf2\x70\x67\x6e\xf4\x5a\xb3\xf9\x76\xb2\xc5\xeb\x43\x8d\x9e\x28\x5b\x50\x1f\x28\x54\xbc\x36\x6f\xbc\xa3\xdc\xb7\xb8\xa3\x6b\xf4\xe0\xde\x02\x47\x53\xa8\x72\x15\x1c\xbd\xf1\x9c\x52\x93\x73\xd6\xcd\xe7\x94\x5d\x08\x25\x37\x82\xc3\xfa\xc6\xd8\x50\x73\xf4\x55\x98\x1d\x2e\x21\xc9\xef\x71\x73\x84\xa0\xa8\xb9\x37\x40\x4a\x08\xa6\x66\xae\xaa\x84\x0c\xab\x1c\xe2\x24\xb0\xab\x97\x8c\x2a\xa1\x3a\x84\x92\x41\x21\x49\x08\x75\x40\x13\xab\xb2\xdf\x10\xd9\x2c\x85\x24\x2f\xd7\xbb\x4e\xae\xf2\xda\x5c\xc5\x83\x7c\x93\x6e\x52\x08\xba\xd4\x26\xdd\xdc\xa0\x75\x15\x53\xfe\x26\xad\xdb\xcd\xe3\xab\x0a\xac\x6f\x88\x2f\x8a\x5a\x70\xb5\x0d\xf1\xb5\x41\xeb\x2a\xe8\xd3\x26\xad\xa3\x28\xa1\x61\xe3\xa6\xae\xeb\x8f\x21\x7c\x15\xe9\xd3\xbe\xfe\x3e\xc2\xfb\xe2\x26\x4d\xa1\xa8\xd5\xa9\xeb\x3e\x31\x00\x51\xe4\xe2\x59\xbb\x4f\xfc\xfe\xba\xc1\x49\x2a\x2f\x8d\x9c\x84\x22\x23\xdd\xf7\x89\xdc\xde\x60\x08\xb5\x7a\x0e\x6d\x32\x84\x3d\x08\x79\x3e\x6e\x36\x9b\x8d\xd6\x51\x9b\xe7\xd0\x46\xff\xb8\x44\x6e\x91\xab\x10\xbe\x48\xe4\xda\x9c\x05\x6d\x26\xf2\x46\x3e\xd6\xfe\x37\x8f\x85\xfe\xff\x3f\x9f\xaf\xb7\x6f\x7f\x25\x34\xbf\xbe\xbd\xd9\xf3\x3b\xfe\x26\x09\x7f\x0b\x74\x2c\xdb\x4f\xcf\xf6\xed\xef\x9b\x5e\x5f\x5e\x7d\x17\xfe\xf7\xdf\x01\x00\x00\xff\xff\x47\xc0\xc3\x30\x0b\x25\x00\x00"); +func _cfcff ()([]byte ,error ){return _gb (_fagb ,"UniCNS-UTF16-H")};type asset struct{_da []byte ;_dc _ff .FileInfo ;};var _cbca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xcd\x6e\xdb\x3a\x10\x85\xf7\x7a\x8a\x59\xe6\x2e\x72\x45\x8a\x95\x69\x01\x41\x80\xc6\x2e\x52\x2d\xd2\x14\x75\x9c\x16\x28\xba\xe0\xcf\xd0\x20\x50\x53\x02\x25\x2d\xfc\xf6\x05\x67\x54\x75\x61\x1c\xfb\xe3\x39\xc3\x19\x73\xea\x43\x7f\xec\x53\x9c\xa1\xfe\x9a\x07\x77\xc2\x19\x42\x4c\x3e\xe3\x34\x2c\xd9\x21\x58\xbc\xc4\x54\x55\xb2\x01\x1f\xdd\xfc\xf7\x27\x89\xbb\x9a\xb1\xaa\xea\xe7\xa7\xb7\xfb\x4f\xe7\xc3\xfd\x67\x58\x26\x5c\xd9\xa1\x3f\x9e\x6e\xd3\x8c\xd7\x3e\x85\x01\x14\x67\xfd\x32\xae\x79\x80\xfa\x1b\x5e\xe2\x34\xe7\x1b\xdc\x7d\xf4\x83\xc5\xff\xc0\x63\x28\xfc\x35\x7b\xcc\x31\x5d\xe0\xee\xf9\x49\x6e\xf4\xb4\x8c\xe3\x6f\xbc\x62\x9a\x41\x12\xc3\xe4\x49\xab\xfa\xf0\x62\xc6\x2f\xe6\x8a\xb0\x35\xf2\x4e\x27\x74\xf0\x8e\x79\x8a\x43\x02\x29\xfe\x17\x62\xf7\x8f\xbf\xdd\x46\x5c\x2b\x55\xf5\xb9\x3f\xbe\x86\x30\xe1\x0c\xbb\x4e\xb0\xe7\xc7\xb9\x3f\xc2\x4f\x09\x52\x40\xd3\x2a\x2d\x7f\xad\xd6\xef\x2f\x83\xdf\x82\x8d\xe0\x71\x5c\xf4\xd9\xa4\x0b\x56\x0f\x46\x9a\xe6\x11\x56\x81\x56\xb7\x84\x14\x23\x45\xe8\x03\x21\xc3\xc8\x14\xd4\xed\x09\x59\x46\xee\x11\xb4\x16\xec\xf2\x8c\x3c\xb9\xba\x82\x2c\x97\xb7\xa1\xa0\x7d\x53\x50\x40\x42\x45\xb4\x16\xbb\xea\xc1\x28\x23\x0b\x22\x81\x56\xef\x09\xed\x19\x75\x14\x14\x84\x1c\x23\x47\x2e\x45\x08\x19\x71\x2d\x5d\x90\xa5\x56\x95\xb5\xe4\xa2\xf2\xd6\x33\xf2\xe4\xa2\xf2\xa5\xa1\x55\xa0\xd5\xa5\x55\xe5\x69\x20\x12\xad\x05\x23\x0e\x7a\x0a\x4a\x6a\xc2\x73\xb0\x08\xec\x04\xa1\xc0\xc1\x40\x37\x76\x74\x63\xe0\x60\xe0\x7f\x82\xfa\xe2\xb1\x15\x8f\x2d\x65\x59\x88\xed\x1d\xca\xf7\xb2\x87\xdb\x6a\xb8\x25\x67\x4c\x33\x6d\x21\xbd\x7f\x79\xc0\x98\x70\xdb\xf2\x71\x18\x4b\x8a\x3e\x7f\x02\x00\x00\xff\xff\x0f\xbf\x93\xd7\x11\x03\x00\x00"); +func _gbba ()(*asset ,error ){_fafc ,_gffd :=_dfdd ();if _gffd !=nil {return nil ,_gffd ;};_dbebc :=bindataFileInfo {_ee :"GBpc-EUC-V",_ffd :786,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492178,0)};_cfcfd :=&asset {_da :_fafc ,_dc :_dbebc };return _cfcfd ,nil ; +};var _ffea =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\xcd\x6a\xe4\x46\x14\x05\xe0\xbd\x9e\xa2\x96\x93\xc5\xc4\x75\x7f\x54\x2a\x81\x30\x04\x9b\x01\x2f\x66\x12\xe2\xfc\x41\xc8\xa2\x2d\x55\x9b\x86\x58\xdd\xc8\xed\x85\xdf\x3e\x9c\x7b\xba\x1d\x98\xc5\xd0\xd3\xc7\xd2\x95\xfc\x1d\x57\xd5\xcd\xdd\xc3\xfd\xc3\x7a\x38\xa7\x9b\x5f\xb6\xe3\xfc\xd8\xce\x69\x7f\x58\x97\xad\xbd\x1e\xdf\xb6\xb9\xa5\xa7\xf6\x7c\x58\xbb\x4e\x34\x2d\x87\xf9\x7c\xfd\x1a\x1f\xf3\xcb\xee\xd4\x75\xb8\xff\xf1\xfd\xf5\xdc\x5e\x1e\xd6\xfd\x31\x19\xaf\x5b\xde\x4e\x97\x6b\x53\xba\xf9\xb5\x3d\x1f\x5e\xcf\xdb\x7b\xfa\xf4\xd3\x72\x7c\x6a\x3f\xa4\xa5\xed\x91\xff\xbc\x2d\x6d\x3b\xac\xcf\xe9\xd3\xdd\xb7\x47\xf9\x88\x1f\xdf\x4e\xa7\x7f\xdb\x4b\x5b\xcf\x98\xd6\xf6\x5d\x5b\x97\xf8\xec\x6e\xee\xbe\xee\x4e\xdf\x76\x2f\x2d\xdd\xc4\xa4\xcf\xb8\xef\x33\x2f\x8a\x9f\xfd\xd1\xb6\xd7\xc3\x71\x4d\xf2\x63\xce\xfd\xff\xf1\x6f\xef\xa7\x96\xe4\x32\xe3\xaf\xdf\x1f\xee\xd3\xdf\x92\x24\x27\xed\xfb\x3a\xfc\x73\xc9\xff\xfc\x7a\x5c\x5a\xca\xd7\x27\x3d\xdc\xdf\x1d\xdf\xd6\x73\x92\x5a\xbd\x30\x14\xfe\x4a\xf3\x71\x69\xaf\xa7\xdd\xdc\xb6\xdd\xfa\xdc\xba\x94\xa6\x9c\x73\xbe\x4d\x93\x8f\x5f\xbe\xdc\xe2\x6d\xbf\xbb\xa2\x1b\xfc\x72\xe7\x61\x61\x72\xbd\x23\xe7\xfd\xfe\x36\xe5\x6e\xca\xc2\xef\x82\xef\xda\x97\x6e\xca\xca\x44\x91\xf4\xa2\xdd\x94\x8d\x89\x21\x19\x4a\xed\xa6\xec\x4c\x1c\x89\x64\xf5\x6e\xca\x3d\xa3\x3e\x22\xad\x98\x5d\x18\x95\x88\x7a\xc3\xf0\x81\xd1\x10\xd1\x30\x62\x7a\x65\x54\xe3\x0d\xb2\x63\xfc\xc8\x68\x8c\xc8\x32\xc6\xef\x18\xed\x2e\xef\x89\xf1\x4f\x8c\x9e\x22\xaa\x82\xf1\x33\xa3\x19\x91\xe5\x01\xe3\x17\x46\x4b\x44\xa6\x18\xdf\x18\xb5\x88\xfa\x8a\xf1\x7b\x46\xfb\x88\xaa\xe7\x6e\x12\x4a\x49\x48\x79\x1e\x4b\x37\x09\xb1\x24\xb0\xdc\x7a\xed\x26\xa1\x96\x84\x96\x97\x5c\xbb\x49\xc8\x25\xc1\xe5\xb5\x78\x37\x09\xbd\xc4\x2f\xa6\x18\x4f\x2f\x09\xaf\xde\x06\x8c\xa7\x97\x84\x57\x5f\x0c\xe3\xe9\x25\xe1\xd5\xd7\x8a\xf1\xf4\x92\xf0\x2a\xe2\x18\x4f\x2f\x09\xaf\xe2\x19\xe3\xe9\x25\xe1\x55\x0a\x8a\x15\x7a\x49\x78\x95\x11\xcd\x0a\xbd\x24\xbc\x06\x41\xb5\x42\x2f\x09\xaf\xc1\x51\xad\xd0\x4b\xda\xa5\x7f\x8c\xa7\x97\x84\xd7\x30\xa2\x5a\xa5\x97\x86\x57\x15\x54\xab\xf4\xd2\xf0\xaa\x8e\x6a\x95\x5e\x1a\x5e\x75\x40\xb5\x4a\x2f\x0d\xaf\x3a\xa2\x5a\xa5\x97\x86\xd7\xa8\xa8\x56\xe9\xa5\xe1\x35\x3a\xaa\x55\x7a\x69\x78\x8d\x03\xaa\x55\x7a\x69\x78\x8d\x23\xaa\x55\x7a\x69\xbd\xfe\xad\x62\x3e\xc1\x74\x64\xe6\x28\x57\x29\xa6\x3b\x66\x03\xda\x55\x92\x69\x90\xa1\x7d\x3c\x82\x66\x3a\x33\x53\xf4\xab\x44\xd3\x85\x59\x8f\x82\x95\x6a\xda\x98\x0d\x68\x58\xc9\xa6\x7b\x2e\x92\x8c\x8a\x8d\x6e\x96\x99\x29\x3a\x36\xc2\x99\x30\xeb\x51\xb2\x51\xce\xf4\xba\xc0\x72\x37\x19\xe9\x2c\xe8\xc4\x32\x6a\x36\xda\x19\xd7\xa6\x19\x7a\x36\xe2\x19\x17\xa7\xf5\x28\xda\xa8\x67\x5c\x9d\x56\xd1\xb4\x91\xcf\xb8\x3c\x3d\xa3\x6a\xa3\x9f\xd1\xcf\x0d\x5d\x1b\xfd\x8c\x7e\xde\xa3\x6c\xa3\x9f\xd1\xcf\x2b\xda\x36\xfa\x19\xfd\x7a\x41\xdd\x46\x3f\x9b\xaf\xbb\x02\x9e\x41\x3f\xa3\x5f\x5f\x50\xb8\xd1\xcf\xe8\xd7\x57\x34\x6e\xf4\x33\xfa\x15\x41\xe5\x7e\xd9\x03\xe9\x57\x0c\x9d\x3b\xfd\x9c\x7e\xa5\xa0\x73\xa7\x9f\xd3\xaf\x54\x74\xee\xf4\x73\xfa\x0d\x82\xce\x9d\x7e\x4e\xbf\xc1\xd1\xb9\xd3\xcf\xe9\x37\x14\x74\xee\xf4\xf3\x72\xdd\xca\xf0\x0c\xfa\x39\xfd\xaa\xa0\x73\xa7\x9f\xd3\xaf\x3a\x3a\xf7\xf1\xb2\x6f\x8f\x0b\xb2\x52\x6b\xec\xde\xd7\x5d\x1a\xff\xc7\x19\xf7\x71\xea\xcc\x6f\xdb\xd6\xd6\x73\x9c\x70\x71\xb0\xe0\x5c\x38\xac\xed\xe3\xb4\x3c\x1d\x4f\xb8\x2b\xfe\xfd\x17\x00\x00\xff\xff\x1f\x1a\xa1\x81\x59\x07\x00\x00"); +var _dcb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4f\x6b\xdb\x4c\x10\x87\xef\xfb\x29\xe6\x98\xf7\x90\xd7\x33\xfb\x4f\x2b\x10\x86\x12\x13\x70\x21\x4d\x69\x9a\xb6\x50\x7a\x90\xa5\x95\x11\xd4\x2b\x21\xcb\x87\x7c\xfb\x32\x33\x76\x0a\x3d\x18\xd9\x8f\x66\x7e\x58\xcf\xec\x68\xf3\xb0\xdf\xed\xcb\xb8\xc2\xe6\xf3\x32\x75\x2f\x79\x85\x61\x2c\xfd\x92\xcf\xd3\x65\xe9\x32\x1c\xf2\x71\x2c\xc6\x90\x85\x7e\xec\xd6\xdb\x4f\xb9\x74\xa7\x76\x36\x86\xfb\x5f\xde\xce\x6b\x3e\xed\xcb\x30\x81\xd3\xba\xfe\x32\x5f\x6b\x01\x36\x5f\xf2\x71\x3c\xaf\xcb\x1b\xdc\x7d\xe8\xa7\x43\xfe\x0f\xfa\x3c\x30\x7f\x5e\xfa\xbc\x8c\xe5\x08\x77\x1f\xdb\xb9\x2d\xf4\x7e\xe3\xe5\x32\xcf\xbf\xf3\x29\x97\x15\x48\x58\x2e\xbd\x5c\xcd\xe6\xe1\xa9\x9d\x3f\xb5\xa7\x0c\x1b\xc9\xba\xd7\xce\x7b\x2d\x93\xbb\xdf\xf2\x72\x1e\xa7\x02\x84\xff\x23\xc6\xbf\xfc\xeb\xdb\x9c\xaf\x71\x66\xf3\xba\xdf\x3d\x0f\xc3\x39\xaf\x40\xe8\x50\x8b\x7e\xbc\xee\x77\xf0\x93\x80\x10\x6c\x08\x0e\x7f\x5d\x6b\xbf\x3f\x4d\x7d\x06\xbc\xfd\x81\xfd\xee\x61\xba\x94\x15\x92\x0b\xb5\x32\xd2\x47\xed\xa6\x3e\x9f\xe7\xb6\xcb\x4b\x5b\x8e\xd9\x00\x34\x88\x88\x5b\x68\x2c\x3e\x3e\x6e\xf9\x19\xfe\xa9\x30\xce\x5d\x3b\xc7\x5e\xc9\xad\x03\x71\x18\xb6\x00\x00\x68\x1a\x24\x45\x24\xc8\x86\x68\x1a\xb4\x8a\xac\xa0\x40\xd6\x34\xe8\x14\x39\x41\x55\x4c\xa6\x41\xaf\xc8\x33\x22\xb4\xde\x34\x18\x14\x05\x41\x36\x71\x7c\x54\x14\x05\x05\xc7\xf1\x95\xa2\x4a\x50\x55\x73\x7c\x52\x94\x18\x59\xf4\x1c\x5f\x2b\xaa\x05\x39\xe4\xf8\x56\x51\x2b\x28\x44\x8e\x3f\x28\x3a\x08\x4a\xc4\xf1\x9d\xa2\x8e\x91\xc3\x8a\xe3\x7b\x45\xbd\x20\x67\x39\x3e\x2b\xca\x82\x42\xe2\xf8\x41\xd1\x20\x28\x79\x34\x0d\xa9\x2f\x12\x5f\x1e\xeb\x68\x1a\x52\x5f\x24\xbe\xbc\x0b\xd6\x34\xa4\xbe\x48\x7c\xf9\x88\xc9\x34\xa4\xbe\x48\x7c\xf9\x14\xbd\x69\x48\x7d\x91\xf8\x0a\x64\x39\x5e\x7d\x91\xf8\x0a\xae\xe2\x78\xf5\x45\xe2\x2b\x44\xc7\xf1\xea\x8b\xc4\x57\x48\x89\xe3\xd5\x17\x89\xaf\x48\x9e\xe3\xd5\x17\x89\xaf\xe8\x91\xe3\xd5\x17\x89\xaf\x18\x79\xb4\xa4\xbe\x48\x7c\xc5\x9a\x47\x4b\xea\x8b\xc4\x57\x45\x3c\x5a\x52\x5f\x24\xbe\x2a\xcf\xa3\x25\xf5\x45\xe2\xab\x8a\x3c\x5a\x52\x5f\x24\xbe\xaa\x9a\x47\x6b\x6f\x27\xb2\x8d\x5b\x48\x54\x5b\x39\x96\xb7\xe3\xc7\xdf\x79\xa9\xdf\x97\xac\xbb\x2c\x4b\x2e\xab\xac\xb4\x2c\x11\x1f\xf8\xb1\xe4\xf7\xd7\xc3\x3c\xcd\xdc\x25\x9f\x3f\x01\x00\x00\xff\xff\x26\x4d\xff\xfa\x4a\x04\x00\x00"); +var _dacd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\xc1\x6e\x9b\x40\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\xd0\xc2\xee\x02\xbb\x2b\x55\x91\xaa\xf8\x50\x52\xa5\xa9\xe2\x26\xad\x54\xf5\x80\x61\xb0\x90\xea\x05\x01\x3e\xf8\xed\xab\xf9\xc7\x75\x0f\xd6\xd8\x9f\x77\x7e\x0d\x68\x36\x7f\x68\x76\x4d\x1a\x37\xca\xbf\x2d\x53\xb7\xe7\x8d\x86\x31\xf5\x0b\xaf\xd3\x79\xe9\x98\x0e\x7c\x1c\x53\x96\x19\x4b\xfd\xd8\x6d\xff\x7e\xa2\x74\xa7\x76\xce\xb2\xfc\xe5\xcb\xfe\xf1\xfd\x67\x3a\xaf\x7c\x85\x87\x66\xb7\xbf\xac\x1b\x9f\x9a\x34\x4c\xe4\xb4\xb1\x3f\xcf\xd7\x66\xa2\xfc\x85\x8f\xe3\xba\x2d\x17\xba\xfb\xd4\x4f\x07\x7e\x47\x3d\x0f\xe2\xcf\x4b\xcf\xcb\x98\x8e\x74\xf7\xd8\xce\x6d\x32\xb7\x3f\xf6\xe7\x79\xfe\xc3\x27\x4e\x1b\x19\x18\xa7\x1e\x35\xcb\x1f\x9e\xda\xf9\x6b\x7b\x62\xd2\x41\xde\xc0\xd0\x37\x5e\xd6\x71\x4a\x64\xec\x87\xa2\xa8\xfe\xfb\xf7\xcb\xcc\xd7\x98\x2c\x7f\x6d\x76\xcf\xc3\xb0\xf2\x46\xa1\x2c\xf4\xcc\xcf\xd7\x66\x47\xbf\x0c\x99\x82\x6c\xe5\x5c\xfc\x7d\x3d\xfa\xe3\x69\xea\x6f\x8d\xd6\xeb\xe3\x74\x63\xbf\xb4\xe9\xc8\xd9\xc7\x60\x4a\x73\x4f\x52\xec\x3d\xf9\x10\xbc\x50\x55\x80\x2a\x03\x8a\xa0\x83\x52\x2f\x14\x8d\x50\xad\xa7\xea\x12\x54\x82\x22\xc8\xb7\x20\x34\x06\x8d\x97\xe2\xa3\x91\x78\x1b\x07\x21\x14\x1f\x4d\x10\x6a\x71\x0a\xc5\x47\x13\x41\x4e\xc9\x09\xd9\x02\x54\x29\x55\x20\x03\xf2\x4a\x1e\x64\x85\x3a\xcd\xea\x90\x65\x9d\x10\x2b\xb1\x52\x09\xd2\x78\xd6\xf8\x0a\xa4\xf1\xac\xf1\x35\xa8\x53\xea\x40\x32\xbd\x2b\xf1\xd8\x28\x3e\xda\x00\xb2\x4a\x16\x14\x41\xa5\x92\xbc\x9c\xe8\x0a\x50\xad\x54\x83\x0c\x28\x28\x05\x90\x4c\xef\x6a\xcd\xaa\x91\xe5\x64\x7a\x17\x30\x2a\x8a\x8f\xae\x04\x55\x4a\x18\xd5\x55\x20\xaf\x84\x37\xe1\x6a\x10\x2b\x31\x08\xd3\x47\x6d\x8c\x3a\x44\x90\x95\xbc\x2d\x83\x7c\x97\xcb\x70\x5b\xce\xee\xbc\x2c\x9c\x36\x5c\x05\x2c\xa1\x6c\xd1\x98\xf8\x76\xcf\xe6\x69\x96\x2e\x7c\xfe\x06\x00\x00\xff\xff\x51\x31\x38\xdc\x93\x03\x00\x00"); +var _efdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\x4b\xcb\x27\xc9\xd1\xdd\xf7\xcf\xa7\xf8\x2f\xe5\x85\x3c\x15\x95\xb7\x4a\x68\x1e\x90\x75\x41\x83\x91\x6c\x3c\xbe\x81\xf1\xa2\x32\x32\x73\x68\xf0\x74\x37\x3d\x3d\x0b\x7d\x7b\x13\xe7\x57\x23\x5b\xf6\x0b\x7a\x17\x22\x34\xa7\x23\x2f\x75\x2a\x2e\x27\xb3\xfe\xcf\x77\xbf\xff\xfe\x0f\xdf\x7f\xfa\xf8\xed\xf5\xdd\x7f\xfc\xfa\xd9\x7f\x58\xdf\x5e\xfb\xe3\xa7\xf9\x75\xfd\xfc\xf9\x97\xaf\xbe\x5e\x63\xfd\xf8\xf1\xd3\xdb\x9b\x9d\xaf\xf9\xd1\xbf\xfd\xfa\x9f\x32\xfe\xd3\xfd\xe5\xed\x2d\xc6\xff\xf0\xb7\x9f\xbf\xad\x9f\xbe\xff\xb4\x3f\xbf\x12\x7e\xf3\x97\x2f\x8f\xef\xeb\xf5\xdd\x7f\x5a\x3f\x7e\xfc\xf9\xdb\xd7\xbf\xbd\x7e\xf3\xbb\xf9\x79\xac\x7f\xf3\x9a\x6b\x07\xfe\x1f\xbe\xce\xf5\xf5\xe3\xa7\x1f\x5f\xbf\xf9\xfd\x5f\x7f\xb0\xbf\xc3\x3f\xfc\xf2\xe5\xcb\xff\x5a\x3f\xad\x4f\xdf\x5e\x26\x6c\x7d\x9a\xb2\x6f\xdf\xfd\xfe\x2f\xf7\x97\xbf\xde\x3f\xad\xd7\x77\x7f\xfe\xf7\x3f\xe5\x66\xbf\xfd\x77\xe5\xb7\x7f\xd6\xbf\xe9\x9f\xfe\xeb\xfa\xfa\xf3\xc7\xcf\x9f\x5e\xf6\x6f\x8f\xa3\xfe\x1f\xf8\x3f\xff\xed\xcb\x7a\xa6\x7a\xfb\xee\xbf\xff\x97\xef\xff\xf0\xfa\x1f\xf6\xb2\xe3\x75\x96\x72\x96\xff\xf9\xe0\xff\xed\x2f\x9f\xe7\x7a\x1d\xfc\xd7\xc9\xe6\xfd\xf3\x5c\x3f\x7f\xb9\x7d\x7d\xbd\x3f\xfd\xb8\xde\x5e\xaf\x0f\xc7\xf1\xfe\x7a\xbd\x3e\x5c\xc7\x7b\xfc\xd7\xef\x2c\x1f\xef\xaf\x0f\x7f\xfa\xe3\x9f\xfe\xf8\x1e\xbb\xfc\x7f\xfc\xdf\x8c\x69\x3e\x7d\xfe\x36\xd7\x06\xd3\x0c\x1f\x6c\xbf\xbf\x2c\x46\xfc\xdf\xff\xf4\x66\xc7\xf1\xac\xfb\x71\x3e\xde\x67\x78\xb7\x15\xde\x1f\x6e\x56\xbb\xad\x5c\xef\xaf\xde\x03\x28\x1d\xc0\xdf\x5f\x96\x5a\x4e\xc2\xa6\x30\x0d\x3a\xaf\x40\x6e\x13\xb2\xcb\xfb\xcb\xea\x19\xc8\xae\x20\xf5\xfd\x75\x66\xf9\xec\x06\xd2\x02\x69\x42\x2e\x90\x15\x48\xac\x76\xb2\xfc\x19\x33\x9f\xa5\x06\xc2\xcc\x67\xf8\x24\x0b\x9f\x84\x4f\x0a\x9f\x6c\xb1\x9f\x84\x4f\x1a\xe3\xfd\x95\x5b\x8c\x4a\x63\x82\xec\xf7\x57\x39\xc2\x27\x33\x2a\xc7\xa8\xd2\x4b\x20\x8c\xca\x31\x73\x2d\xb1\xc3\x82\x4f\x09\x9f\x56\xe2\x29\x0a\x3e\x25\x7c\x2e\x8b\x51\x15\x9f\x1a\x3e\xfd\x88\xfd\x54\x7c\x6a\xf8\xf4\x16\xa3\x1a\x3e\x4d\xfc\x1c\x35\x36\xd4\x70\x6a\xe1\x64\x76\xc6\xb8\x0b\xaf\x0b\x16\xcf\xd8\xe4\x85\xd7\xb5\x21\x36\x06\x76\xbc\xba\xbc\xd2\x75\x04\x84\x57\x97\x57\xd6\x1b\xb9\xf1\xba\xe5\x55\x52\x90\x7b\xe3\x75\xcb\xab\x1e\x31\x70\xe0\x35\xe4\x55\x7b\x0e\x08\xaf\x21\xaf\x56\x62\xa0\xe3\xe5\xf2\xba\x4a\x44\x85\xe3\xe5\x7b\xbe\xbf\xac\x5b\x0c\xf4\x18\xf1\x98\x33\xa7\xf0\x9a\x0c\x9c\x7a\x79\xc7\x11\x73\x4d\x06\x4e\x79\x1d\x2d\x36\xb1\xf0\x5a\xf2\xb2\x1a\x73\x2d\xbc\x96\xbc\xce\x33\x06\x6e\xbc\xb6\xbc\xd2\x19\xd3\x6f\xbc\xb6\xef\x80\xae\x18\xb8\x27\x5e\xcf\x26\xce\xb7\x0f\xe3\xd0\xc0\x71\x68\x60\x6e\x3d\x20\x0d\x1c\x87\xbc\x4a\x0e\x2f\xc2\x7c\x28\x82\xcf\x9a\x6a\x40\x78\x11\x8c\x35\x62\x7f\x10\x8d\x83\x68\x6c\x3d\x05\x84\x97\xc2\xf1\xbc\x22\x42\x07\xf1\x38\x14\x8f\x67\x2f\x47\x40\x78\x25\x05\xed\x11\x31\x3a\x88\xbf\xa1\xf8\x4b\x16\xe4\x0c\x02\x70\x64\x42\x3b\xc8\x19\x44\xe0\x50\x04\xa6\x33\xc8\x19\x84\xe0\x50\x08\xa6\x14\xe4\x0c\x62\x70\x28\x06\x53\x0e\x72\x06\x41\x38\x14\x84\x29\x07\x39\x83\x28\x1c\x8a\xc2\x54\xda\x15\x10\x5e\x8a\xc2\x54\x73\x0c\x24\x0a\x87\xa2\x30\xb5\x54\x02\xc2\x4b\x51\x98\x5a\x8f\x81\x44\xe1\x50\x14\xa6\xab\x07\x85\x44\xe1\x50\x14\xa6\x5e\x62\x20\x51\x38\x14\x85\xf9\x88\x84\x1e\x44\xe1\x50\x14\x66\xb3\x18\x48\x14\x0e\x45\x61\x3e\x8f\xa0\x90\x28\x1c\xc3\x5b\x40\x35\x06\x0e\xbf\x04\x69\x60\x8a\x44\x1b\x04\xe6\x50\x60\xe6\x24\x72\x08\xcc\xa1\x28\xcc\x59\xe4\x10\x85\x43\x51\x98\x8b\xc8\x21\x0a\x87\xa2\x30\x17\x91\x43\x14\x8e\x55\xec\xfd\x95\xab\xc8\x59\xe5\x04\x3a\xb5\x22\x50\x12\xa4\xb9\x6a\x8f\xad\x12\xab\x43\xb1\x9a\x5b\x8e\x97\x46\xac\x0e\xc5\x6a\xbe\x52\x4c\x4f\xac\x0e\x05\x66\xbe\x7a\x7b\xfb\xe0\x04\xa6\x2b\x30\x73\xef\x16\x90\xbc\x5c\x81\x59\x8e\x92\xdf\x3e\x38\x81\xe9\x0a\xcc\x62\x51\x37\x9d\xc0\x74\xbb\xef\xf7\x57\x39\xcd\x04\x0d\x41\x1a\x78\x9e\xe7\xdb\x07\x27\x56\x5d\xb1\x5a\x52\xb0\xea\xc4\xaa\x9f\x1e\x03\x53\xb0\xea\xa7\x0f\xa0\xa1\x81\x26\xc8\x05\x69\xae\xac\xe9\x89\x68\x4f\xf5\x08\x28\xca\xb9\xa7\xaa\xb9\x14\xe4\x25\x07\x13\x4e\x90\x7b\x1a\xd7\xfb\xab\x94\x53\xd0\xe8\x40\x3d\xa0\xa2\xb9\xc6\x0d\x74\x0b\x3a\x04\x69\x13\xca\x8e\x52\xa2\xce\x3a\xd9\xe1\xb9\x94\xf7\x57\xa9\x67\x78\xe5\x52\x81\xaa\x56\x2c\x82\x9a\x20\x6d\xa2\x66\x0d\x64\x13\xca\xa1\x52\xaf\x80\xc8\x21\x57\x0e\x95\x16\xed\xc0\xc9\x21\x57\x0e\x95\x2b\x05\x13\xe4\x90\x57\xfa\x41\x4a\x6f\x1f\x9c\x20\xf7\x9e\x63\xf7\x5d\xcf\xd8\xf3\x0d\x74\xbf\xbf\x6a\x74\x3a\xef\x59\x9b\xef\x75\xbc\xbf\xea\x21\x9e\x7b\x15\x83\x4a\x8e\x7a\xe4\x43\x6d\xfa\xd7\xf6\xfa\x2f\x75\x5c\x27\x77\xbc\x47\x97\xaa\x47\x89\xfd\xf4\xb1\x80\x34\x49\x02\xda\x82\x96\x07\x74\x69\xf5\x35\x05\xa9\x67\x59\x64\xab\x93\x74\xae\xa4\xab\x56\xe2\x41\x48\x3a\xbf\xa3\xf7\xd6\xd3\x62\x8f\xb7\x9a\x2f\xa6\x5a\xc4\xa8\xdf\xea\xbe\xae\xd4\xac\xe9\x08\xea\x48\x4d\x57\x6a\x56\x25\x9d\x93\x9a\x3e\xf0\x8a\xf6\xe6\xe4\xa1\x2b\x0f\x6b\x8e\xf6\xe6\xe4\xa1\x3b\xbd\x34\xda\x9b\x93\x87\xae\x3c\xac\x35\xda\x9b\x93\x87\xae\x3c\xac\x35\xda\x9b\x93\x87\xae\x0c\xab\x2d\xda\x9b\x93\x61\xae\x0c\xab\x57\xb4\x37\x27\xc3\x5c\x19\x56\x7b\xb4\x37\x27\xc3\x5c\x19\xd6\x8e\x68\x6f\x93\x0c\x9b\xca\xb0\x76\x44\x7b\x9b\x64\xd8\x54\x86\x35\x8b\xf6\x36\xc9\xb0\xa9\x0c\x6b\x67\xc4\xe8\x24\xc3\xa6\xd2\xa9\xa5\x68\x6f\x93\x74\x9a\x4a\xa7\x96\xa3\x18\x4c\xd2\x69\x2a\x51\x5a\x6e\x31\x90\x44\x99\x09\xc1\x50\x4b\x40\x78\x29\xb8\x9b\x42\x66\x12\xdc\x53\x61\xdb\x5a\x64\xeb\x24\x6c\xa7\xc2\xb6\xb5\x2b\x06\x12\xb6\x13\xf1\x71\x45\xe3\x9a\x84\xed\x54\xd8\xb6\x1e\xf1\x3e\x09\xdb\xa9\xb0\xbd\x8e\x68\x5c\x93\xd2\x3f\x6b\xe4\xf4\x75\x44\xe3\x9a\x55\x39\x8d\xb9\x5a\x44\xce\xac\x3e\x05\xa1\x64\x82\xd5\x49\x83\x98\xad\xf5\x80\xba\xa0\x76\x03\xdd\xef\xaf\xeb\xba\xba\xa0\x01\x14\x03\xe1\x8b\x36\x32\xd5\x46\xae\x33\x4a\xff\xa4\x8d\x4c\xb5\x91\x2b\x45\xe9\x9f\xb4\x91\xa9\x36\x72\xe5\x28\xfd\x93\x0c\x9b\xca\x94\xab\x44\xf2\x4c\x52\x61\x2a\xa2\xaf\x12\x45\x6a\x12\xd1\x53\x11\x7d\xd5\x1a\xfb\x22\xa2\xe7\x3d\x03\x6a\x51\x6b\xe6\x3d\x37\xd0\xd6\x03\xc5\xf4\xf7\x62\xa0\xe6\x6a\xda\x3d\x11\x3d\x15\xd1\xd7\x15\x85\x65\x12\xd1\x73\xdc\x55\xcf\x98\x04\x35\x41\x1a\x78\xf5\xf0\x22\xc8\xa7\x82\xfc\xea\xd1\x20\x26\x41\x3e\x15\xe4\xfd\x88\xee\x39\x09\xf2\xa9\x20\xef\xca\xc7\x49\x90\xcf\xb9\x47\x40\xd1\x3d\xe7\xdc\x0e\xe4\x31\x50\xfb\x9a\x7b\x02\xc5\xc0\x53\x10\xa9\x30\x95\x0a\xfd\x8c\x06\x31\x49\x85\xa9\x54\xe8\x29\x1a\xc4\x24\x15\xa6\x52\xa1\xe7\x68\x10\x93\x54\x98\x4a\x85\x5e\xa2\x82\x2f\x52\x61\x29\x15\x7a\x3d\x4a\x40\xf2\x5a\x4a\x85\x5e\xeb\xf5\xf6\x61\x91\x0a\x4b\xa9\xd0\x5b\xd4\xf9\x45\x2a\x2c\xa5\x42\xbf\xce\x18\x48\x2a\x2c\xa5\x42\xef\x21\xc1\x17\xa9\xb0\x94\x0a\xbd\x47\xd5\x5d\xa4\xc2\x4a\x68\xde\x23\xca\xee\x22\x17\x96\x72\xc1\x0e\x8b\xa2\xb6\x48\x86\x95\xf1\x3b\xa3\xf0\x2e\xb2\x61\x65\xfc\xce\xa8\xbc\x8b\x74\x58\x05\xbf\x14\xef\x64\x91\x0f\xab\xe0\x97\xa3\xd6\x2d\x12\x62\x55\xfc\x4a\x9c\x2b\x16\x19\xb1\x2a\x7e\xd5\x62\x2c\xc1\xbe\x1e\x4d\xde\x8e\x1c\x18\x7e\x88\xf2\xa3\xd5\x18\x4b\x20\x2f\x54\xf9\x71\xd5\x60\x93\x48\x5e\xd7\x7d\x06\xd6\xcf\x2c\x2c\x09\x63\x6c\x0f\xe9\xb1\x08\xef\xd5\x5b\x9c\x82\xec\x10\x55\xbd\x55\x30\x09\xff\xa3\xc5\x58\x62\x7e\x21\xe0\xed\x88\x10\x5c\x04\xfd\x42\xc1\x9b\xb5\x98\x8f\xa8\x5f\xf7\x73\x68\x08\xb1\xb1\x08\xe8\x35\xca\x1d\x58\x8a\x4a\xbe\x46\x19\xc2\x18\x9b\xf4\x22\x89\xf2\x35\xf6\x21\x2c\xe2\x70\x8d\xfd\x60\xc6\x9e\xab\xb0\x13\x4c\x63\x73\x04\xfa\x22\xf6\x17\x27\x00\xcb\x11\x8a\x8b\xe0\x5f\x3e\xe3\x08\x60\x25\x62\x71\x79\xa4\xe3\x63\xe2\xd9\x92\xb0\x2d\x8c\xf9\x6a\x9c\x99\x16\x59\xb2\x26\xf3\x55\xbd\x23\xd2\x64\xcd\xbb\x07\xd6\xf4\x8e\x66\x48\x9c\x0f\x6b\x32\xb6\x45\xb6\x2e\xb2\x62\x2d\xc6\x5e\x0a\x65\xd2\x62\xad\x25\x0e\x2e\xc5\xf2\x5a\x03\x6c\xc4\xd1\x49\xf2\x6d\xad\xe8\x9c\x1f\xd6\x62\x3e\x15\xd0\x45\xfe\xac\xcd\x7c\xbd\xda\x3f\xed\xd6\x8b\xfc\x5a\x9b\x53\xd9\x11\xaf\x7f\x93\x60\xfb\x08\xc1\x62\xa7\xd9\x15\x98\x14\x0b\x26\x1e\xa9\x0b\x6b\xc2\x38\xe4\x59\xbc\xc2\x4d\x26\xee\x23\x74\x99\x9d\x76\x09\x93\x30\xc3\xc4\x2b\x34\x61\x2e\x8c\x75\x25\xf3\x36\x29\xbb\xad\x9e\xc2\x82\xf2\x6d\x35\x81\xdd\x3c\x7a\x17\x36\xc0\x44\x47\xd5\xba\x26\x9d\xb2\x9f\x63\x7b\xb2\x16\x18\x7b\x31\xd6\x48\xd1\x50\x36\x09\xbf\xcf\xda\x02\xcb\x29\xc6\x9e\xf5\x02\xbb\x02\x6b\x11\xb2\xfb\xac\x5d\x18\xf3\xe5\x26\x3f\xe6\x3b\x5d\xfb\xcb\x71\x52\xd8\xa7\x6b\x7f\x27\x6b\x94\x48\x95\x4d\xb9\xd8\xa9\x65\x61\x97\xb0\xc8\x9b\x30\x8b\x3d\x07\x07\x94\x90\x4d\x09\x39\x6b\xb4\x9f\x4d\x09\xd9\xb9\x8a\xfb\x96\x4b\x60\x55\xdc\x53\x56\xce\x16\x1a\x7f\x53\x56\x76\x1e\x5a\xe3\x12\x2f\x79\x14\xb0\xc2\x5e\xaa\x30\xc6\x46\x79\xb6\xf3\x3a\xe5\xa7\xfa\xbc\x29\x49\x67\x3f\x62\x5d\x4a\xd2\xa6\x24\x9d\xfd\x08\x0e\x28\x49\xbb\x3c\x7e\x21\x86\x36\x25\x69\x57\xbd\xa3\x74\xd4\xe0\xa5\xf2\x8e\x64\x62\x2c\x58\x16\xc6\xd1\xfe\x08\x89\xbb\x29\x5d\x9b\xd2\x95\x4c\xef\x9c\xd2\xb5\x29\x5d\x49\x7a\x6e\x53\xba\x36\xa5\x2b\x9d\x21\x17\x36\xa5\x6b\x53\xba\x52\x52\x6c\x50\xba\x36\x65\x2a\x65\xbd\x5f\xca\xd4\x56\x65\xb2\x54\xf4\x7e\x7b\x6b\x60\xf2\x2b\x97\xfc\x18\xdb\xe3\xf5\x59\x2a\x21\xa8\x76\xf7\x0c\x96\xf1\x2b\xc2\x0a\x58\x70\x9a\xaa\xf8\xeb\x5e\xc1\xb4\x06\xef\xb2\x3b\x6b\x4c\x13\xc6\xba\xf3\x04\x63\x6c\xa4\xe8\xa6\x14\x62\xac\xb4\x68\x42\xfb\xce\x06\x16\x63\xb3\x24\xcd\xbe\xf3\x09\x16\x3c\xb7\x74\xe0\x97\xc0\x92\x2e\xa2\xe2\x9c\xbd\xef\x9c\xc1\x62\xcf\xe5\x6a\x60\x05\xac\x30\xb6\x0a\xab\x60\xb1\xe7\x72\x66\xb0\x06\x16\xb9\x90\x8f\xc2\xba\x17\xd8\xa5\xbd\x74\xf6\xdc\xc1\xa2\x9c\xe5\x1a\xad\x69\xdf\x3a\x3c\x60\x62\x0d\xd6\x1d\x60\x91\x97\x35\x1b\xf3\x39\xd8\x64\x3e\xd6\x5d\x60\x8b\xb1\xf8\x6d\xb0\x0d\x07\xc1\xf3\x5d\xe0\x2a\x4c\xf8\x81\xc1\x55\x18\xab\xbc\xf3\xbb\xc0\x55\x1c\x68\xad\xa5\x28\xb7\xfb\x2e\xf0\x12\xc6\xea\x91\xc4\x5f\x81\x17\xd5\xb5\x7a\x24\xad\x4b\x5d\x93\x89\xb1\x7a\x5e\xea\x9a\x8c\xd5\x5c\x19\x0b\x2f\xa5\x0b\x2b\xac\x0b\x07\x6a\x57\x35\x17\xf6\x07\x07\x05\x0e\xaa\xb8\x2a\x70\xa0\x6b\xc6\x9a\x2b\xeb\x4e\xb0\xe0\xa5\xb6\xca\x9e\xe1\xa5\xe8\x0a\xcb\x9e\xfd\xc1\x4b\x85\x03\xd3\x7c\x15\x0e\x2a\x1c\x44\xdb\xdd\x77\x85\x03\xe5\x65\x3d\xe0\x85\xbc\x94\xb1\x72\x11\x43\xe4\xa5\x4c\xcc\x07\x06\x2f\xaa\x39\xe5\xe2\x5d\x52\x73\x64\x62\x0d\xe6\x83\x17\xd5\xc9\xaa\xfb\xa7\x7d\x53\x27\x65\xac\xe6\x8b\xfd\xc1\x4b\x25\x36\x8c\xb1\xf0\x52\xc5\x41\x21\x26\x2b\x1c\xd4\x09\xc6\x7c\x70\x50\xc5\x41\x31\x9e\xed\xe1\x60\x2b\xee\x93\xf6\xd7\x88\x8d\xf6\xf0\x02\x06\x2f\x4d\xbc\x94\x53\x7b\x69\xf0\xd2\xc8\x23\x62\xb2\xc1\x4b\x53\x1e\x99\xf2\xfc\x6e\xf0\xa2\x9a\x5d\x4b\x32\x61\xf0\x22\xc9\x53\x4b\xd2\x5e\x1a\xbc\xb4\x27\x5e\xb4\x67\xea\x8b\x4c\xf8\xe9\xd9\x1a\xf1\x12\xc6\x4a\xef\xf8\xc1\x55\x18\x2b\x0f\x7f\x0d\xae\xda\xcd\x7b\x03\x83\xab\xa6\x18\xba\x9e\xb1\xc4\x50\x13\x7f\xc7\xc5\xfe\xe0\xaf\x89\xbf\xc3\xfe\xf9\xe1\x7c\x4b\x82\x3d\xc6\x2a\xed\x1e\x25\x86\x89\x69\x94\x02\x37\xb4\x49\x15\xd6\xa2\x36\x74\xdf\xd0\x76\x2b\x9c\x5a\x16\xe5\x37\xb4\x85\xb1\x7c\x65\xd1\x7b\x43\x5b\x18\xcb\xad\x30\x16\xda\xee\xca\x1a\x7a\x35\x37\xb4\x85\xb1\x96\x4e\xa5\xc0\x0d\x6d\xb7\x42\x8c\x76\x70\xdf\xd0\x26\x35\x55\xae\x83\x3d\x43\xdb\x7d\xb3\x3f\xfc\xa0\x2d\x8c\x95\x52\xf1\x83\xb6\x1b\x8a\x32\x6b\xc0\xc1\xad\xfb\x64\x2b\x60\x84\x58\x18\x2b\xba\x30\xd8\xf7\x20\xc4\xc2\xc4\x9e\x45\xf9\x80\xab\x01\x57\x84\xc9\x80\xab\xa1\x10\x33\x4a\xdc\x80\xab\x41\x49\x3a\xf1\x83\x2b\xb5\xec\x6a\x84\x09\x2d\x5b\x26\xe6\x13\xa7\xb4\x6c\x19\xab\x07\x69\x31\xe0\x2a\x8c\x95\xeb\xd9\x0b\x5c\x8d\x0b\x3f\xf6\x0c\x57\xa3\x83\xe1\x07\x57\x83\x10\x83\xe7\x01\x57\x61\x62\x7f\x8c\x85\xab\x41\x88\x49\x02\xdc\x83\x10\x1b\xf0\x47\xa9\x1e\xf0\x37\x28\xdf\xa4\xd9\x80\xbf\xb1\xe1\x4a\xcf\xe1\xf0\xe7\xa4\x28\xb1\xe6\xf0\x17\xc6\xb8\x87\xda\xb7\xc3\x9f\x53\xba\x24\x1f\x6e\x64\x95\x4c\xcc\xa7\x18\xa2\x3d\xcb\x58\x33\x5a\x04\xed\x59\xc6\x4a\x6f\xf8\xc1\x9f\xda\x73\xe9\xb4\x30\xda\xb3\x4c\xf8\xb1\x2e\xfc\x85\x89\xfd\x31\x16\xfe\x5c\xad\xee\xec\xec\x05\xfe\x24\x69\xeb\x49\x19\x45\xd2\xca\xc4\x58\xe6\x83\xbf\x30\xb1\xae\xb8\x72\xf8\x73\x4a\x5c\x63\x2f\xf0\xe7\x8b\xbd\xe8\x1d\x39\xfc\xf9\xc6\x4f\x9c\x4e\xf8\x9b\x0f\x7f\xe2\x74\xc2\x9f\x64\x46\x3d\x89\x21\x64\x86\x8c\x55\x23\xd6\x26\xfc\x4d\xf1\x57\x2a\x63\xe1\x6f\xd2\x12\xc9\xcb\x09\x7f\x92\x28\xd5\x88\xb5\x09\x7f\xb3\xb2\x86\xde\xdb\x84\xbf\xd9\xc8\x69\x3d\xdb\x84\xbf\xf9\xf0\x07\x06\x7f\x93\xf8\x7b\xf6\x02\x7f\x61\x2c\x57\xf2\x72\xc2\xdf\x7c\x72\x55\x3c\x4f\xf8\x9b\x4f\x5c\xb1\x17\x78\x99\xf0\x82\x34\x5a\xf0\xb2\xc8\x4b\x5a\xc9\x82\x97\x45\xe9\x97\x44\xbe\x17\xbc\x84\xb1\x92\x2f\x71\xbf\xe0\x65\x25\x30\x71\xb0\xe0\x65\xd1\x12\x13\x7e\xf0\xb2\x28\xfd\x5d\xef\x63\xc1\xcb\x52\x5c\x35\x49\xbc\x7b\xc1\xcb\xa2\xf4\x13\xcf\x0b\x5e\x96\x4a\x7f\x22\x0e\x16\xbc\xac\x8e\xd4\xd2\xb3\x2d\x78\xd1\x49\xaf\x56\xf2\x77\xc1\x8b\x4e\x7a\xb5\x92\xbf\x0b\x5e\x16\xad\x93\x18\x5f\xc4\x55\x98\xa8\xc5\x60\xc4\xd5\x52\x6d\xaf\xc4\xf3\x82\xbf\x25\xfe\x38\x2a\xdd\x1b\xfe\x74\x7a\x2e\x99\x67\xdb\xf0\xa7\xd3\x73\x4b\x09\x0c\xfe\xc2\x58\x7e\xa4\xe5\x86\xbf\x30\x96\x9f\x9c\xd9\xf0\xb7\xd5\x03\x8e\xaa\xe7\xd8\xf0\xb7\xc9\x4b\xe2\x6f\xc3\xdf\x56\x5c\xd5\xc7\x0f\xfe\xb6\x7a\xc0\x81\x7c\xd8\xf0\xb7\x55\xd7\x2a\xf9\xb1\xe1\x2f\x4c\xec\x4f\xef\x77\xc3\xdf\x86\x3f\xe2\x6a\xc3\x9f\x8e\x3b\x2d\x21\xfb\x38\xee\xc8\xc4\x7c\x60\x70\xc5\x07\xc4\x2a\x09\xc5\xed\x03\x26\xb0\x2e\xcc\xc0\x1e\x5e\x9a\xb0\x13\x4c\xf9\x56\xd5\x8a\x07\xd2\x5c\x26\xfc\x2e\x61\x19\x0c\x69\x7e\x32\x5f\x01\x23\xdf\x8c\xb1\x15\x8c\xb8\x2a\xec\xa5\x81\xd1\x1b\x13\x63\x2f\x30\x49\xf3\xab\xff\xf3\xd3\xfd\x1e\x28\x77\x19\x6b\x49\xaf\x7f\xa0\xdc\x65\xac\xea\xc3\xcf\x1e\x28\x77\x99\xf0\x63\x5b\x0e\x46\x3b\x30\xb6\x35\xc1\x26\x5b\x60\xec\x02\xe3\x8b\x6d\x86\xa2\x0d\xa6\xb0\x6b\x52\x94\x03\x35\x2f\x63\x55\x97\x22\x7b\xa0\xe6\x07\x6a\xbe\xa9\xbd\x0c\xd4\xbc\x4c\xf8\x25\x61\xd0\x2b\x85\x5f\xf4\x11\x6d\x0f\x14\xfe\x40\xe1\xb7\x93\x35\xa0\xb7\x70\xf2\xd1\x89\x6b\xa0\xf0\x65\xac\x36\x5e\x21\x0a\x5f\x26\x42\x96\xbd\x40\x6f\x51\xd8\x35\x49\x8a\x51\xe0\x4f\xaa\xbf\xb4\xcc\xfe\xe0\x0f\xd5\x9f\x2e\xfc\xe0\x0f\xd5\xdf\x08\x27\x54\xff\x40\xf5\x27\xf8\x43\xf5\xcb\xc4\xfe\x78\x36\xf8\x43\xf5\x93\x52\x03\xd5\x2f\x13\x2d\x47\xeb\x56\xf8\xab\x94\x3d\xb5\xec\xc1\x49\x40\x26\xe6\xd3\x1a\x9c\x04\x06\x27\x81\xd6\x18\x0b\x7f\x3a\x09\x54\xe4\xc8\xe0\x24\x20\x13\x61\x27\x4e\x39\x09\xc8\xc4\x7c\xda\x0b\x27\x81\xc1\x49\xe0\x48\xac\x0b\x7f\xba\x45\xa9\x48\xa8\xc1\x2d\xca\xe0\x74\x70\x10\xee\x9c\x0e\x06\xa7\x83\x76\x31\x16\xfe\x74\x3a\xa8\x0d\xfe\x38\x1d\xc8\x58\xee\xcf\x7c\xf0\xc7\x89\xe1\x38\x79\x0e\xf8\xd3\x89\xa1\x9d\x9d\xfd\xc1\x1f\x27\x86\xc3\x98\x0f\xfe\x38\x31\xb4\xae\x77\xce\x89\x61\xb4\x87\x2b\xf9\x71\x3a\x18\x9c\x0e\x4e\xd2\x96\xd3\x81\x8c\xe5\x93\x77\xce\xe9\x60\x70\x3a\xd0\x67\xe3\x3d\x38\x1d\x0c\x4e\x07\xfa\x82\xbe\x07\xa7\x03\x99\xe0\x5e\xfb\xe3\x74\x30\x38\x1d\x1c\x2a\x5d\x83\xd3\x81\x4c\x8c\x15\x57\x9c\x0e\x64\xa2\xad\xb1\x67\xb8\x7a\x4e\x07\x07\x63\xe1\x8a\xd3\xc1\xf1\x3c\x07\x5c\xe9\x24\x50\x4e\x49\xbc\x81\xd4\xe7\xe2\x34\x9f\xe4\x02\x52\x5f\xc6\xca\xa9\xd3\xd0\x40\xea\xcb\x84\x6c\xd1\x73\x20\xf5\x07\x52\xbf\x53\xe2\x90\xfa\xe3\x7e\x62\x83\xb1\x3c\xef\x23\xeb\x79\x6f\xc8\xfa\xf1\xc8\xfa\x07\xe3\x79\x91\xf5\x07\x71\x8a\xac\x97\xb1\x7a\x3d\xfb\xe3\x79\x91\xf5\xd7\x85\x1f\xcf\x7b\x53\x9b\x0a\x7b\xe1\x79\x6f\x67\x2c\x7b\x21\x36\x24\xf5\xcb\xf1\x3c\x1b\x1c\x48\xea\xd7\xab\xb2\x06\xb1\x21\xa9\x5f\x2f\xe2\x1e\xa9\x3f\x90\xfa\x97\x64\xda\x40\xea\xcb\xc4\xba\x60\x70\x25\xa9\x5f\x13\x79\x8e\xd4\x97\x89\xf9\xf4\xde\x90\xfa\x32\xc6\xa7\xdb\x3d\x90\xfa\x03\xa9\x7f\x49\x7a\x0c\xa4\xfe\x40\xea\x5f\x92\x37\x03\xa9\x2f\x13\xa7\x3f\x3d\x2f\x52\x7f\x20\xf5\xb9\xb1\x1b\x48\x7d\x99\xc8\x5f\xc6\xc2\x1f\x52\xbf\x53\x63\x91\xfa\x32\x56\x9a\xb1\x2e\xfc\x21\xf5\x7b\xc2\x0f\xfe\x90\xfa\x9d\xfc\x45\xea\xcb\x84\x1f\xeb\xc2\x1f\x52\x3f\x4b\x86\x0f\xa4\xbe\x8c\xd5\x8c\x1f\x52\x5f\xc6\x6a\x87\x7b\xa4\xbe\x8c\xe5\xc2\x73\x20\xf5\x07\x52\x9f\x5b\xc6\x81\xd4\x97\xb1\xa2\x6f\x3c\x7b\x20\xf5\x07\x52\xbf\x51\xc3\x90\xfa\x03\xa9\x5f\xa9\xb1\x48\x7d\x19\xab\x5d\xb7\xaf\xfc\xe0\x02\x63\xe5\x20\x5e\x90\xfa\x32\x71\xac\x04\x83\x3f\x49\xfd\x7c\x9d\xec\x05\xfe\x24\xf5\x6b\x22\x26\x91\xfa\x32\x56\x39\xc6\x0c\xa4\xfe\x40\xea\xf7\x8e\x1f\xfc\x39\xb5\x5d\xf2\x66\x20\xf5\x07\x52\xff\x60\x0d\xa4\xfe\x40\xea\x73\xd4\x1c\x48\x7d\x19\xcb\xb5\xb7\x7f\x45\xbb\xe7\x24\x20\x13\xd3\xe8\x91\x38\x09\xc8\x58\x3b\x68\x93\x9c\x04\xc6\x24\x95\x75\xa1\x37\x50\xfd\xe3\x51\xfd\x84\x2c\xaa\x5f\x26\xd2\x1b\x3f\xa8\x9c\x48\x0a\x9d\x22\x06\x0a\x5f\xc6\x2a\x17\x8e\x03\x85\x3f\xa6\x94\xd8\x53\xf6\x26\x14\xe9\x3b\x4b\xb1\x67\x2f\x50\x84\xea\xe7\xe2\x6a\xa0\xfa\x65\xac\x71\x6a\x1f\xa8\x7e\x19\x2b\x87\x54\xe1\x40\xf5\xcb\xc4\x5e\x34\x1f\xaa\x5f\xc6\xda\x41\x39\x43\xf5\xcb\x04\xa6\x35\x50\xfd\x32\x51\x92\xf4\x1c\xa8\x7e\x99\x98\x4f\xfc\xa1\xfa\x65\xac\x9e\xcf\xba\xf0\xb2\x9e\x12\xa7\x14\x40\xf5\x0f\x54\x7f\xa7\xad\xa1\xfa\x65\x02\x13\x07\xa8\x7e\x19\x6b\x09\xe9\x81\xea\x1f\xeb\x29\xe9\xe2\x1e\xd5\x2f\x13\x7e\xac\x0b\x7f\x52\xfd\xf5\xa4\xad\xa1\xfa\xf9\x16\xd6\x12\x69\x86\x9a\xe7\x5b\x58\xd3\x2f\x93\x36\xdf\xc2\x30\x51\xba\x34\x1f\x6a\x5e\xc6\x9a\xd1\x36\x50\xf3\x32\x56\x8c\x96\x83\x9a\x97\xb1\x66\xb4\x35\xd4\xbc\x8c\xe5\x44\x8b\x40\xcd\xcb\xc4\xf3\x6a\x7f\xa8\xf9\x81\x9a\x7f\xa4\x25\x6a\x7e\xec\x87\x03\xe6\x83\x83\x3d\x88\x0d\xd6\x85\x03\xa9\xf9\x7c\xe8\xd2\x75\xa0\xe6\x65\xac\xf1\xd1\x69\xec\x87\x03\x6e\x74\x14\xf7\x7c\xe7\xc3\x58\x33\xc9\x16\x47\xcd\x3b\x6a\x9e\x1b\x18\x47\xcd\xcb\x44\xfb\x6b\xc2\x12\x18\x6a\xbe\x82\x65\x30\x6e\x1f\xd4\xd6\x1c\x35\xef\x5c\xb4\xeb\x27\x18\xdb\x51\xf3\x32\xf1\xbc\xac\xd1\xc0\xb8\xbd\x79\xfc\x2e\x30\xa9\x79\x53\xc9\x74\xe4\xba\x4c\xc8\x4d\xb0\x1b\xec\xe1\x8a\x67\x1b\x60\x83\xb1\x60\x0e\x26\xae\x4c\x2d\xd6\x91\xeb\x8e\x5c\xb7\x67\x2f\x0b\x4c\xb2\xe0\xd7\xe7\xd8\x60\xba\x7c\xd7\x6f\x5c\xb7\x23\xd7\x1d\xb9\x6e\x8a\x71\x47\xae\xcb\xc4\x5e\xc0\xe0\x4f\x72\x3d\x1f\x8a\x53\x47\xae\x3b\x72\xdd\x24\x41\x1d\xb9\x2e\x63\xd9\xd4\x3a\x1d\xb9\x2e\x13\x7e\x49\x18\xfc\x3d\x17\xf2\xfa\xf0\xe6\xc8\x75\xe7\x42\x5e\xbf\x7e\xd9\x8e\x5c\x97\xb1\xcc\x25\xae\x23\xd7\x65\x02\x63\x5d\xf8\x93\x5c\xcf\xa6\x98\x74\xe4\xba\x8c\x65\xeb\xac\x01\x7f\x92\xeb\x99\x8f\x2b\x8e\x5c\x97\x09\x8c\xfd\xc1\x5f\x41\x56\x19\x63\xe1\x4f\x72\xbd\x74\x9d\x94\x1d\xb9\x2e\x63\xc5\x54\xfa\x1d\xb9\x2e\x13\x63\xf5\x1c\xc8\x75\x99\x78\x5e\xf1\x87\x5c\x97\x09\x3f\xbd\x37\xe4\xba\x3f\x17\xf7\x92\x28\x8e\x5c\x97\xb1\x7a\x3c\xeb\xc2\x9f\xe4\x7a\x3e\x89\x2b\xe4\xba\x23\xd7\xf5\xcb\xde\xed\xc8\x75\x99\x98\x8f\xfd\xc1\x5f\xe5\xf6\x8b\x58\x43\xae\xfb\x73\x99\xcf\x7b\x43\xae\x3b\x72\x5d\xbf\x69\xd8\x8e\x5c\x97\x09\x69\xc9\x5e\xe0\x4f\x72\xbd\xd0\x12\x1d\xb9\x2e\x13\xf3\xe9\xbd\x21\xd7\x65\x2c\x17\xe5\xb9\x23\xd7\x65\x2c\x27\xd5\x21\xe7\x82\x5f\xc6\x32\x97\xf9\x8e\x84\x97\xb1\xcc\x2d\xa3\x23\xe1\x1d\x09\x4f\x8f\x72\x24\xbc\x37\x6a\x7b\x63\x0d\xb8\x42\xae\x23\x0b\x1c\xb9\x2e\x13\x7e\x60\x70\x85\x5c\xa7\x5e\x39\x72\x5d\xc6\xb2\x7e\x15\xb4\x1d\xb9\xee\x8f\x5c\xd7\x51\xd8\x91\xeb\x8e\x5c\x3f\xe1\x0f\xb9\x2e\x13\xfb\x63\x0d\xb8\x92\x84\xcf\xa9\xa6\x7f\x6c\xf7\x57\xff\xff\xba\xbd\x23\xf0\xf9\x25\x43\xe5\xae\x92\x5f\x32\x60\x8c\xdf\x91\x6e\x47\xe0\xfb\x0d\x1b\x12\x58\x8e\x98\x97\x89\x9d\x6a\xf7\xdc\xdb\xcb\xe4\x4e\x51\x41\xdf\xcb\x04\x19\xb8\x41\x90\xf4\x7d\xa5\x31\x39\xfa\x5e\xc6\x9a\x7e\xc9\xbd\x1d\x7d\xef\xe8\xfb\x44\x70\xa2\xef\x65\xac\x34\x7d\x1d\x73\xf4\xbd\x3f\xfa\xfe\x62\x3e\x08\xba\xb9\x4a\x7d\xd6\x80\xa0\x9b\xb3\xb3\x04\x8a\xa3\xef\x65\x2c\xa7\x8e\x1f\xc1\x84\xbe\x3f\x99\x0f\x7d\xef\xcf\x55\xbe\xce\xd8\x8e\xbe\x97\x89\x35\x44\x0b\xfa\x5e\xc6\xca\xa9\x86\xed\xe8\x7b\x47\xdf\x1f\x3a\xb3\x3b\xfa\xde\x07\xc1\x44\x72\xa3\xe5\x65\x2c\xf3\xcb\x02\x47\xcb\xcb\x84\x1f\xeb\xc2\x95\xb4\x7c\xb9\x0e\xd6\x85\xab\x5f\xaf\xed\xf1\x83\x2b\xe9\xf6\x9c\x13\x18\xbc\x48\xb7\x97\x46\xb0\xa3\xdb\x65\x2c\x67\x5e\x25\xba\xdd\xd1\xed\x08\x1e\x47\xb7\xcb\xc4\x5e\x84\xa1\xdb\x65\x2c\x67\x89\x11\x47\xb7\xcb\x84\x9f\xde\x1b\xba\xdd\x9f\x2b\x7a\x12\x14\xdd\x2e\x13\x63\xc1\xe0\xc5\x09\xab\x93\xb1\x84\x95\x3f\x5c\x29\xae\xd0\xed\x32\x96\x33\xc5\x0c\xdd\xee\x5c\xd1\x3f\x85\x06\xdd\x2e\x13\x22\x03\x3f\xb8\xe2\x8a\x3e\x13\xf6\xe8\x76\x47\xb7\x67\x8a\x0a\xba\x5d\xc6\xca\x93\x0a\xe8\x76\x99\x10\x14\xec\x0f\xfe\xa4\xdb\xdb\xc1\x3b\x42\xb7\x3b\x57\xf4\x7c\x79\x76\x74\xbb\x4c\xac\x2b\x3f\x74\xbb\x8c\x95\x8b\x9c\x41\xb7\x3b\xba\xfd\xe4\xbd\x21\xcc\x65\xac\xf0\xd5\xd5\x11\xe6\x32\x96\xf5\xd3\xb6\xed\x08\x73\x7f\xae\xe8\xf5\x69\xc5\xb9\xa2\x97\x89\xe2\xa8\xe7\x45\xac\x3b\x62\xdd\x88\x71\xc4\xba\x73\x45\xcf\x95\xba\x23\xd6\x65\xe2\x5c\xa6\xe7\xe5\x8a\x5e\xc6\x72\xa1\x10\x22\xe0\x7d\x3e\x39\xa8\xe7\xe5\x3a\x5e\xc6\x0a\xe2\xda\x11\xf0\xfc\x28\xaa\x3c\x39\x8d\x58\x77\xc4\xfa\x93\x83\x88\x75\x99\x68\x60\x7a\x0e\xc4\xba\x8c\x65\x7e\x71\xe1\x88\x75\xe7\x8a\xfe\x42\x90\x21\xd6\x1d\xb1\x9e\xf4\xf9\xc6\x11\xeb\x8e\x58\x3f\x75\xff\xe2\x88\x75\x19\xcb\x95\xe6\x8c\x58\x77\xc4\xba\x7e\x30\xbc\x1d\xb1\x2e\x13\x7e\xac\x01\x2f\x12\xeb\xb9\xd2\xac\x10\xeb\x32\xb1\x2e\x63\xe1\x45\x62\xbd\x64\x09\x64\x47\xac\xcb\xc4\x58\xf6\x02\x57\x12\xeb\x25\x3f\x18\x5c\x49\xac\xe7\xaa\x2f\xc5\x8e\x58\x97\x09\xa1\x00\x07\xf0\xc7\x15\xfd\x23\xbe\xb8\xa2\x77\xae\xe8\x5b\x06\x83\xbf\x4d\xbd\x22\x4e\x11\xf5\x32\xb1\xae\x9e\x03\x51\x2f\x63\xf5\xd0\x55\xbe\x23\xea\x1d\x01\x9f\xe0\x1e\x01\xef\x5c\xc7\x1b\x71\x80\x80\x97\xb1\x5c\x9f\xb1\x70\xf5\x08\x78\xc4\x08\x02\x5e\xc6\x72\x45\x58\x72\x1d\xef\x8f\xa8\xa7\xe6\x20\xea\x65\xc2\x8f\xfd\xc1\x95\x44\x7d\x3d\xc9\x7d\x44\x3d\x7f\x83\xd3\x12\x22\x1c\x51\xcf\x1f\xe1\xb4\x5c\xff\xa1\x1f\xc6\xff\xff\xe9\xfe\xf2\xf6\xf7\x3f\x68\xf3\x5f\xbe\x7e\x5d\x9f\xbe\xe9\x8f\xe7\xf4\x47\x6b\xaf\xb9\xf6\xc7\x4f\xeb\xef\x7f\x88\xf7\xe5\xf3\x97\x18\xa5\xff\xfd\xef\x00\x00\x00\xff\xff\xd6\xea\xb5\x3c\xb4\x37\x00\x00"); +var _abd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\x41\x6b\xdb\x4e\x10\x05\xf0\xbb\x3e\xc5\x1e\xf3\x3f\xfc\x6b\x49\xb3\xb3\xbb\x82\x60\x08\xf1\xa1\x2e\xa4\x29\x4d\x93\x16\x4a\x0f\xb2\xb4\x36\x82\x5a\x16\xb2\x7c\xc8\xb7\x2f\xf3\x9e\xeb\x1e\xc2\xc4\xbf\xec\xce\xee\x1b\xe2\x5d\x3d\x6e\x37\xdb\x71\x58\xdc\xea\xcb\x7c\xea\x5e\xf2\xe2\xf6\xc3\xd8\xcf\xf9\x7c\xba\xcc\x5d\x76\xbb\x7c\x18\xc6\xa2\xa8\x6a\xd7\x0f\xdd\xf2\xf7\x23\x4a\x77\x6c\xa7\xa2\x58\x3d\xf4\xfd\xff\x1f\xdd\xe5\x9c\xaf\x9f\x1f\xb7\x9b\x97\xf7\xf3\x92\x8f\xdb\x71\x7f\x72\xc2\x7d\xfd\x65\xba\xee\x75\x6e\xf5\x35\x1f\x86\xf3\x32\xbf\xbb\xbb\x87\xfe\xb4\xcb\xff\xb9\x3e\xef\xcd\x9f\xe7\x3e\xcf\xc3\x78\x70\x77\x9f\xda\xa9\x1d\xab\xdb\x1f\x5e\x2e\xd3\xf4\x3b\x1f\xf3\xb8\xb8\x0a\x96\xc7\x1e\xb5\x58\x3d\x3e\xb5\xd3\xe7\xf6\x98\x1d\xee\xf1\x06\x05\xbe\xe5\xf9\x3c\x9c\x46\x57\x95\x1f\xca\x32\xfc\xf3\x6f\xef\x53\xbe\x76\x29\x56\xaf\xdb\xcd\xf3\x7e\x7f\xce\x8b\x8b\x4d\xc9\x35\x3f\x5e\xb7\x1b\xf7\xb3\x72\x55\xe9\x6a\x95\x3a\xfd\xba\x2e\xfd\xfe\x74\xea\x6f\x1b\x35\x32\x4d\x37\xf4\x73\x3b\x1e\x72\x71\x5f\x57\x75\xbd\x76\x56\x64\xed\x62\x4a\x11\xe4\x49\x7e\xed\x52\x1d\x12\x48\x49\x6a\x14\xbd\x91\x54\x20\xa9\xb1\xb1\x01\x75\xa4\x6c\xd4\x54\x46\x9e\xab\xbc\x82\xb0\xd1\x07\x52\xb0\x5e\xa9\x06\x45\x52\x44\x7b\x05\x25\x52\xc2\xaa\x12\xd4\x90\x1a\xac\xc2\x55\x7d\x0b\xd2\x1d\xda\xdb\x25\x7c\x8d\x13\x51\x62\x53\x25\x90\x90\x04\xc4\x55\x4a\xb2\x7b\x35\x75\x09\x8a\xa4\x08\xaa\x40\x0d\xa9\x01\xd9\x55\xbd\x67\x2f\x8f\x5e\xb5\x18\x05\x52\x20\x79\x10\xdb\x07\xb6\x57\x10\xdb\x07\xb6\x0f\xa0\x4c\xca\x20\x0b\xe4\x23\x37\x46\x0c\x27\x58\x2f\x65\x20\x65\xa0\x3a\x81\x84\xc4\x13\x1b\x90\x92\x70\xa2\x94\xa0\x48\xc2\x89\x52\x81\x1a\x12\x02\x89\x05\x52\x06\x52\x06\x12\x0b\xa4\x0c\xa4\x0c\x24\xb8\x04\x03\x29\x03\x89\x82\xd8\x9e\x81\x24\x80\x32\x09\x81\xc4\x02\x29\x03\xa9\x05\x8a\x8d\xa4\xe2\x3e\x46\xb5\x4b\xb0\xc4\xc6\x0b\xa8\x25\xb5\xa0\x12\xb4\x23\xed\xd6\x2e\x89\x65\x8c\x51\x3b\x52\x87\x55\x15\xa8\x27\xf5\xb6\x4a\xb8\x31\x93\xf6\x20\x6c\x0c\x25\xc8\x4a\x6c\xbc\x82\x2a\x52\x85\x55\xb8\x57\xa8\x49\x35\x56\x45\x90\x90\x30\x09\xc5\x89\xc1\x93\xec\xdb\x21\x9e\x1b\x95\x84\xe1\x28\x02\x85\x40\x42\x6c\xc5\xbd\x30\x2f\x96\x24\xde\x83\x12\x29\x81\x78\x22\x87\x13\x30\x1c\xe5\x2a\x0e\xc7\x4a\x12\xce\x2b\x70\x38\xa1\x03\x31\x23\x27\x11\x30\x09\xe5\xbd\x38\x09\x2b\x49\x94\xed\xf7\x24\x0c\x87\x57\x8d\x1c\x8e\x95\x24\x1a\x40\x0c\x64\x25\x89\xfd\x47\xc7\x3e\x62\x38\x28\x49\x44\xec\x2d\xbb\x3d\x23\xf6\xbb\xbd\xa2\xb7\x57\xad\xbb\xcc\x73\x1e\x17\xbc\xa1\x78\xbe\xec\xfd\x19\xc6\x7c\x7b\x9f\xa7\xd3\x64\xbb\xf0\xf3\x27\x00\x00\xff\xff\x72\xe0\xee\x65\xcb\x05\x00\x00"); +func _bga ()(*asset ,error ){_gde ,_gcdd :=_cfbbdg ();if _gcdd !=nil {return nil ,_gcdd ;};_bgfdd :=bindataFileInfo {_ee :"Adobe-KR-6",_ffd :1493,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491438,0)};_ebe :=&asset {_da :_gde ,_dc :_bgfdd };return _ebe ,nil ; +};var _fcfd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\xc1\xce\x94\x30\x10\x07\xf0\x3b\x4f\x31\xc7\xcf\xc3\x27\xb4\x50\xaa\x89\x31\x51\xf6\xb0\xc4\xec\x6a\x44\x57\x13\xe3\x81\x6d\x67\x49\x93\xa5\x34\x05\x0e\xfb\xf6\x66\xa6\xc8\x1e\x36\xb3\xfc\x4a\xff\x99\x4e\xc9\x9b\xf6\xd0\x7a\xb7\x40\xfe\x2d\x4e\xa6\xc3\x05\x6e\xce\xdb\x88\xf3\xb4\x46\x83\x70\xc5\xc1\xf9\x2c\x13\x12\xac\x33\xcb\xff\x47\x2e\x66\xec\x43\x96\xe5\xc7\x2f\xf6\xde\xbf\x7e\x56\xaf\x47\x58\x67\xdc\xb0\x69\x0f\xdd\x63\x5e\x70\x6c\xfd\x6d\x82\x32\x6d\xb6\x6b\xd8\x02\x00\xf2\xef\x38\xb8\x79\x89\x0f\x78\xf9\x64\xa7\x2b\xbe\x01\x8b\x37\xf2\xaf\xd1\x62\x74\x7e\x80\x97\xe6\xdc\x89\x9d\xbb\x35\x84\x3b\x8e\xe8\x17\x10\x6c\xe8\x2d\xd7\x2c\x6f\x4e\x7d\x38\xf7\x23\xc2\xb3\x95\x0b\x2f\xf1\xca\x05\xe3\xec\x26\x0f\x42\xbe\x2d\x0a\xf5\xf4\x1f\x8f\x80\x5b\x54\x96\xff\xfe\xd9\x1e\xe0\x8f\x00\x51\x80\x54\x4a\xca\xbf\x9b\xff\x3a\x4d\x76\x7f\x4b\xc8\xd4\xbd\x71\x36\xf6\x7e\xc0\xec\x43\x2f\xaa\xeb\x47\xd8\x8a\x28\xeb\xaa\x26\x53\x3d\x1b\x15\x51\xea\xaa\x64\x33\xc9\x4c\x32\xc5\x66\x93\x21\x59\x41\x52\x0b\x96\x5a\x92\x54\x2c\x2a\x49\x4d\xf2\x8e\xe5\x7d\x12\x4a\xaf\x24\x4b\xca\xa9\x29\x27\x75\xa0\x53\x8e\xa6\x1c\xc5\xc9\x3a\xe5\x68\xca\x51\x9c\xac\x53\x8e\xa6\x1c\xc5\xc9\x58\xb2\x50\xa1\xb3\x68\x1a\xf1\x7e\x56\xfa\x4f\x57\xbb\x0f\xdb\xac\x31\xa2\x5f\xf8\x62\x79\xa0\x34\x24\xe7\x71\xff\x72\xc2\x14\x68\x17\xff\xfe\x05\x00\x00\xff\xff\x33\xd3\x9f\xac\x65\x02\x00\x00"); +var _beaca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4b\xaf\x6d\x39\x72\x26\x36\xcf\x5f\x71\x86\xed\x41\xbb\x16\xdf\x0c\x20\x71\x00\x97\xd4\xd5\xd6\xa0\x6d\xc3\x92\x6c\x03\x86\x07\xe4\xde\x6b\xcb\x05\x58\x59\x85\xaa\xd2\x40\xff\xde\xe0\xf7\x58\x29\x18\x06\x6e\xde\xc9\xdd\x71\xc8\xc5\x67\x30\x18\x8c\xe7\xef\xfe\xee\x1f\xfe\xfe\x1f\x7e\xf9\xe3\xdf\xbe\x7e\xf7\xbf\xfc\xe5\x4f\xaf\x7f\xbc\xff\xf6\xf5\xf9\xe3\x2f\xef\xbf\xdc\x7f\xfd\xd3\xbf\xfd\xe5\x75\x7f\xed\xfb\x5f\xfe\xf8\xcb\x4f\x3f\xa5\xfc\xf5\xfe\xe3\xeb\x6f\x06\xf1\xdf\xeb\x5f\xd7\x9f\x7f\xfa\xe9\x7c\xff\x8f\xff\xfe\xd7\xbf\xdd\xff\xfa\x0f\xbf\x7c\xfe\xf4\x55\x58\xef\xfd\x6f\x7f\x56\xdd\xaf\xaf\xdf\xfd\xaf\xf7\xbf\xfc\xf1\xaf\x7f\xfb\xcb\xbf\x7f\xfd\xa7\xff\xe1\xfd\xa7\x7d\xff\x77\x5f\xef\xfb\x73\xfe\xfe\x3f\xff\xe5\x7d\xff\xe5\x8f\xbf\xfc\xcb\xd7\x7f\xfa\xaf\xbf\x4f\xcf\x5f\xff\xf1\xdf\xfe\xfc\xe7\xff\xe7\xfe\xd7\xfb\x97\xbf\x7d\x35\xfc\xed\xfe\xe5\x8d\xff\x7f\xfa\xdd\xdf\xfd\xb7\xf5\xe7\xff\x69\xfd\xeb\xfd\xf5\xbb\x7f\xfe\xe5\x8f\xff\xf5\xf7\xff\xf9\x9f\xff\xe9\x0f\xf3\x3f\xff\x8f\x28\x44\xd9\xff\x76\xff\xe5\xaf\x7f\xfc\xd3\x2f\x5f\xa9\xfc\xf7\x57\xea\xbf\xfe\xfd\x9f\xfe\xfd\xcf\xf7\x57\x52\x23\xff\xc7\x3f\xff\xc3\xdf\x7f\xfd\x9f\xe9\x2b\x5d\x5f\xb9\x95\x11\xff\x97\xfe\xfe\xbf\xff\xb7\x3f\xbd\xef\xaf\x8b\x50\xe5\xe8\x5f\x7f\x7a\xdf\x7f\xfd\xf3\x7a\xdd\x7f\x59\xbf\xfc\xcb\xfd\xd3\xd7\xd7\xcf\xd7\xf5\xfd\xc5\x7f\x3f\x8f\x3f\x7c\x9f\xbf\xfc\xdd\x35\xf5\xb7\x9f\xff\xfe\x0f\xbf\xe7\xdf\xfe\xcb\x35\xf5\xd7\x9f\xff\xcb\x1f\x7e\xef\xbf\xfe\x01\x7f\x3d\x7f\xff\xf9\x0f\xe3\xf7\xfa\xfb\xfd\xcb\xfb\xff\xd3\xcb\x4f\x89\x9d\xff\xf2\xa7\xbf\xbd\xef\x0f\xff\x86\x7e\x7f\x4e\x9f\xef\xaf\x74\xbe\xf8\x8f\x45\x3f\xa5\xeb\xd2\x68\xff\xf8\x7e\xfd\xdf\xeb\x2f\x3f\xfd\xfc\xca\xeb\x3a\x35\xcf\x8f\xfa\xfd\x95\xfa\xc0\xcf\xf6\xfd\x95\x73\x69\x15\xc0\xf8\xfe\x4a\x83\x55\xe6\xf7\x57\xba\x32\x7e\xc6\xf7\xd7\x18\xa9\x9c\xdf\xfb\x34\xd1\xf1\xe7\x9d\xbe\xbf\x52\x46\x23\x7b\x7c\x7f\x45\xfc\xf4\xf3\xab\xc4\x69\x21\xcf\xf3\xf3\xf4\xd6\xd1\x58\x59\xe9\xfb\xab\x77\x54\x38\xed\xf6\xd1\xf0\x33\xce\xcf\x82\x9f\xeb\xfb\xab\x07\x7f\xbe\xce\x5f\x59\xf7\x7d\x7e\x9e\x1e\xca\xce\xdf\x5f\x7d\xa2\xc2\x2e\xe7\x27\xda\xdd\xe8\x0d\x75\xf7\x69\x6c\xb2\xee\x69\x6c\xa2\x8b\x7d\x1a\x8b\x33\xdc\x3a\x31\x86\x33\xb2\x1a\xa7\x85\x81\xbf\xc6\x3e\x3f\xcf\xe4\xeb\xc2\xcf\xfe\xd3\xcf\xaf\x36\xeb\xf9\x8c\x3f\xcf\x78\x63\xe0\xe7\x19\xce\xbc\xce\x4f\xd4\x9d\xe7\xb3\x31\xef\xf3\xd9\xf9\xeb\x08\xcc\x78\xe2\x27\xc6\x9b\xf1\xf3\x34\x36\x3b\x7e\xf6\xf3\x93\x15\x4e\xbb\x33\xf0\x13\x93\x67\x0b\x18\xef\x99\xdb\xc0\x84\xe2\xd4\x8d\x38\x43\x8f\xd3\x5b\x60\x25\xb1\xd4\x7b\x9e\xc9\x5f\x09\x3f\xe3\xfc\x3c\x2d\xec\x88\xb3\x15\x57\xfc\xf4\xf3\xfb\xc2\x94\xaf\xf9\xd3\xcf\xef\x84\x26\x6a\xfa\xe9\xe7\x3b\xed\xb9\x3f\xa7\x91\xf6\xd3\xcf\x77\x9e\xd7\xcc\xd8\xdd\x4e\xe8\x4c\x21\x5d\x57\x9a\x02\xcb\x69\x2d\x5d\x82\x0e\xda\x5c\xfa\x2e\x1a\x8a\x92\xa0\x7e\x8a\x06\x81\x95\x89\x0e\xf8\xcd\x6a\x59\x10\xaa\xa9\x71\xe0\xd2\x50\xdb\x9b\xf5\x8a\xa0\xfd\xfd\x95\xce\xfa\xde\x79\xa6\x78\x7f\x7f\x35\xb5\x97\x0f\x7a\x1c\x7c\x65\xc5\x3a\xcb\xc1\xc7\x26\x80\x6d\x54\x41\x58\x89\xa4\x32\x0c\x70\x70\x18\xf5\xac\xe2\x99\x65\x17\xc8\x25\xe0\x77\xfd\x6c\x5d\x9a\x4d\xc0\x69\x7f\x72\xc0\xf3\xe0\x42\x2a\x43\xc0\x39\x76\x85\xdf\xcc\xb3\xbc\xa9\x14\x01\x18\x46\xbe\x04\xad\x53\x14\x02\xde\xdf\x5f\xa9\x25\x01\xf7\x01\xd4\x5c\x7c\xf0\x91\x8a\x70\x52\x6b\x16\x80\x4d\xc8\x86\xda\x29\x72\xbd\xb3\xf1\xa5\x0b\x40\x4f\x4d\xc0\x59\xc1\x6a\xe0\xf4\x54\x55\x6d\x9f\x5d\x6c\x1a\xd0\x59\xf6\xd4\x34\xbf\x7d\xd6\xa8\x68\xdc\x38\x5b\xc5\x25\x18\x37\x4b\x02\xcb\x50\x43\xc0\xeb\x00\xac\x16\x81\x8d\xcf\x5c\x87\xc0\x24\x5a\x16\x70\x56\xa8\x72\xb2\x8b\x2b\xa4\x65\x5d\x07\x65\x53\xe5\x4a\x2e\x4e\x8f\x3d\xad\xcd\x45\xe1\xc0\xf7\xfa\x10\x79\x0e\x71\x14\x51\xfb\xff\x21\x73\x77\x9e\x2f\x6c\x61\xc5\x30\xa2\x63\x18\x33\x09\x38\xc3\x98\x17\x81\x8d\x9d\x56\xb5\x8d\x9d\xc6\x68\x63\x4c\x60\x4b\x08\x00\x55\x9c\x02\xce\xba\x8e\x26\xe0\xac\xeb\x18\x02\xce\xf0\x06\xc6\x1a\xf3\xa0\x62\x1a\x55\x00\x5a\x2b\x02\x80\x96\x93\x1f\xc5\x04\x3d\x4d\x02\xce\x78\x3a\x06\xb7\xd7\x29\xc9\xb9\xe6\x29\x30\x1d\xf0\xe2\x0a\xee\x75\x28\x54\xce\x17\x51\x69\xaf\xb3\x25\x07\xac\x02\x37\xc1\x26\x10\x67\xe6\x72\xcb\x87\x46\x1f\x50\xdf\x2e\x82\x43\xdf\x1e\x2c\x3a\xa0\x3a\x3a\xa8\x93\xf3\x35\xf5\xed\x59\xa5\x03\x66\x81\xec\x88\x3b\xb9\xf7\xe4\xb7\x41\xf0\x75\xa6\x50\x71\x5b\x00\x4a\xdf\x5f\x75\x90\x46\xec\xd7\x99\x6b\x1d\xd9\x65\x05\x65\x21\xa8\x9e\xef\x78\x04\xf7\x0b\x4b\x79\xa5\x92\x04\x76\xa0\xaf\x9b\x19\xdf\x5f\x75\x76\x43\xf3\xfb\xab\xe4\xe2\xee\x03\x35\xdd\xc5\x3a\x65\x24\x37\xfb\x75\x56\x28\xa6\x8b\x5e\xa7\xf7\xee\xfe\xde\xa7\x49\x12\x9f\xfd\x3a\x5b\x5c\xe7\xf0\xc8\x3e\xdf\x5f\xf9\x0a\x0d\xe5\x10\xcb\x76\x25\x75\x0e\x1a\x50\x3d\xcc\x83\x82\xb9\x11\x07\xf7\xeb\x90\x91\x3a\xb5\x01\xaf\x43\x47\xeb\x48\x86\xda\x81\xaa\x21\x12\xd2\xa1\x39\x9c\xbd\x2a\xc5\xb3\x3d\x97\x46\xd2\x39\xdc\xaf\x73\x6e\x6a\xf0\x58\xef\x17\xe8\x4c\xce\xfe\x6e\x9f\xa1\x65\xd7\x3c\x13\xcc\xd3\x83\x79\x7f\x7f\xe5\xea\x8d\x38\x54\xa8\xb5\xec\xb2\xcf\xf7\x57\xe9\xde\xc0\x73\x74\x4a\x4d\x5a\x8a\x73\x76\x5a\xf7\x24\x0e\xd1\x4c\xa9\x79\xd5\x0e\x91\x2a\xb3\x69\x9d\xc0\x60\x94\xa7\x99\xc3\x63\x44\x56\x87\xe7\x0e\xa8\xbd\x69\xd8\x07\xfb\x5a\x14\x77\x01\x0a\x3b\x5d\x16\xdf\x5f\x25\xaa\x5b\x59\xdf\x5f\xad\x5c\xda\xb3\x43\xdf\x4a\x09\xf7\x7e\xee\xcd\xeb\x72\x2b\xef\x53\x96\xfc\xdd\xb9\xa0\xd3\x33\x4e\x9c\xd2\xa9\x71\x9e\x2b\x28\x5f\xa1\xc9\x6f\x9c\x31\xa3\x0f\xa8\xc3\x28\xea\x0f\x5c\x47\xea\xae\x59\x71\x47\xb8\xac\x01\x0f\x34\xea\x43\x45\x5b\x7e\xda\x3c\xf3\x2b\xdd\x65\x13\x74\xc5\x3d\xc4\x99\xbb\x67\x7b\xd8\x96\xd6\xbd\xd8\xe7\x64\xb5\x7e\x69\xb1\x0f\x1f\x53\xc2\x1b\x08\x6a\xfc\xe0\xeb\xbe\xc1\x04\x19\x0f\x0e\xcd\x2c\x95\xb7\xd4\x7e\xe3\x08\x36\x2d\xc5\x1b\x0c\x41\xd5\x31\x7b\x9f\x23\x58\x86\x96\xf0\x8d\x9b\xb4\x91\xd6\xee\x37\xe9\x8b\x90\xf2\x8d\x23\xd8\x9f\xb2\x7e\xb6\x9a\x57\xd5\x7e\x9f\x13\x58\x72\xfd\x31\x59\xde\xef\x73\x3c\x6b\x69\x6e\x34\x00\x79\xa0\x87\x74\xcc\xea\xa1\x9d\xdd\x4d\xb9\x0a\x3a\xe8\xdb\x8a\xbb\x7f\xe3\x86\x70\x2b\x67\x77\xdb\xf4\x77\x1f\x0c\x4d\x35\xc9\xcc\x90\xf0\xee\xf7\x39\x9f\x79\xb8\x95\x73\x3e\x4b\x2d\x6a\xe5\x9c\xcf\x72\x79\x29\xce\xf9\x2c\x55\xa7\xfc\x7d\xce\x67\xbe\x9a\x5b\x01\xf6\x26\x97\x91\x61\xf6\x77\x13\xe7\xda\x35\xcf\xee\x1a\xd3\xde\xe7\x78\x96\x2b\x19\xda\xdf\x5f\xf5\xd7\x91\x1d\xfa\x1c\xc9\x23\x3b\xd8\x9b\xbd\x49\xe7\x78\xd6\xab\xba\xbf\xcf\x59\x33\x51\x8e\x37\x6f\x36\x61\xe8\xfb\x1c\xcf\x32\x44\x00\xde\x8b\xd8\xab\x1e\x70\x3a\x8b\xa8\xd8\xfb\x9c\xce\x9a\xbb\x56\xf7\x9c\xce\xd2\xbd\x2b\xe7\x74\x8e\xf4\xf4\x30\xbe\xbf\xc6\x75\xb9\xcd\x89\xfb\xa9\xbb\x51\xdc\x64\x6e\x85\xf3\xd3\x38\xcf\xe9\x3c\xbc\xa5\xa0\x33\xbf\xf9\xf4\xf0\xc6\x3e\x68\xdf\xcf\xe9\x2c\x26\x46\xef\x73\x3a\x8b\xe9\xc6\x7b\x93\xfc\xa8\x3b\xbc\x37\x7a\x9b\xaa\x8a\xe3\x29\x5e\x63\xbf\xcf\xf1\xac\x97\xd1\xe7\x1c\xcf\xdc\x8a\xa1\x43\x60\x7d\x0f\xbc\xcf\xf1\xcc\x43\xf7\xd9\xfb\x1c\xcf\x51\xc2\x35\xe7\xf7\xd7\xc8\xdd\x35\x0f\xf9\x19\xde\xf8\x73\x3c\x6b\x7a\xfa\x3b\x1b\x58\xbc\x49\xe7\x78\xe6\x1a\x6e\x13\xcc\x92\xd1\xe7\x1c\xcf\x91\x8c\x22\xe7\x74\xa6\x26\xe2\x70\x9f\xd3\xd9\xbb\x08\xc0\x7d\x4e\x67\xc9\xba\x96\x6f\x30\x03\x59\x33\xba\x71\x41\x76\x1d\x96\x1b\x17\x64\x23\xcb\xb4\xef\x89\x27\x5c\xb8\xec\x9c\x4e\xf1\xc7\xfb\x3e\xa7\xb3\x99\xd8\xde\x38\x80\x4d\x77\xe0\x7d\x0e\xe0\x28\xba\xbb\x6f\xdc\x8f\xe5\x72\x19\xd8\x1c\x9f\xa4\xfb\x9c\xc0\x21\x5e\x6e\xdf\x38\x81\x39\x3c\x50\x60\x68\x33\x74\x76\x30\x74\x92\xee\x20\x07\xa0\x49\xe0\x86\x9c\x21\xb4\xb8\xcf\x11\x9c\x97\x67\x1f\xe4\x2c\xd4\x3f\xae\x48\x13\xe6\xfb\x1c\xc1\x34\xb3\x1b\x05\x07\x90\xdd\xca\xd9\xc1\x5a\x5d\x76\x76\xb0\xe9\x22\xb8\x03\x2f\xd7\xe2\xee\x71\x43\x4e\xd7\x3c\x3b\x88\x07\x21\xa0\x43\x62\xfa\xd0\x04\x71\x04\x4d\xb4\xef\x73\x04\xc7\xbc\x3c\x16\x4c\x50\xf8\x73\xe3\x08\xe6\x66\xe8\x4c\x30\x86\x78\x80\xfb\x9c\xc1\x9a\xbc\x4e\xe7\x0c\xd6\x3c\xd4\x28\x6e\xc8\x08\x61\xe5\x8d\x2b\xb2\x65\x43\x1d\xd4\xd7\x1f\x9e\x19\x0e\xef\xef\x39\x84\xb3\x24\x43\x01\x02\xa4\xf9\x82\x77\x6b\xd5\xad\xec\xb3\x16\xb5\xfd\x98\x32\xdf\xe7\x84\xd6\xe2\x29\xe2\x84\x5e\xbf\xb6\x7a\x2e\x98\x5e\x3c\xf0\xc3\x02\xf9\xd6\xb8\xf9\x86\x33\x46\x9d\x23\x3a\x4d\x8c\xef\x73\x42\x73\x7e\x20\x4c\x3f\x19\xaa\xdf\x5f\xd3\xa4\xf2\x3e\x27\x74\x84\x7b\x38\x27\x74\x84\x88\xff\x7d\x4e\x68\xa9\xba\xf6\xef\x73\x42\x4b\xd5\x15\x7d\xe3\x84\xea\xa5\xb5\xef\x73\x42\x67\xb9\xb4\x6a\x7c\x42\x3e\xad\xbc\xc0\xb6\x1b\x7a\x7f\x7f\x0d\x73\x32\x37\x4e\xe8\xf4\x39\x38\x27\xb4\x99\x50\x7f\x70\x7f\x0e\xe1\xd3\x67\x02\x81\x45\x1f\x3e\xe7\x84\xce\xa1\xf3\xfa\x39\x27\x74\x16\x31\x2b\x9f\x73\x42\x63\x76\x7f\x77\x76\xd7\xa7\xf0\x73\x4e\xe8\x2c\x7c\x47\xef\xcf\x39\xa1\xf9\xd7\x1e\x0e\x23\x9f\x66\x18\x3c\x13\xac\xdd\x55\x0f\x02\x87\x28\xe7\x67\x52\x74\xe1\xee\x5f\xdf\x5f\x31\x9a\x87\xc6\xf7\x9a\x27\x71\x63\x29\x5c\x13\x0c\x82\x90\xfb\xa3\x3b\x52\xdf\x9d\x13\x3a\x8b\x08\xd9\xe7\x1c\xd0\x31\x85\x06\x9f\x73\x40\x67\xd6\x03\xe4\x73\x0e\xe8\xd0\x13\x6e\x7f\xc0\xc3\x4e\xd0\x80\x32\x2f\xb0\x12\x40\xa6\x03\x80\x7d\xaf\x02\xc0\xdd\x5e\xd9\x20\x30\xdb\x35\xf9\x7a\x04\xbe\x14\x8a\x1e\x92\x01\xf0\x38\xd7\xd5\x0c\x7e\x28\x04\x18\x00\x73\x80\x59\x29\x78\x95\x1d\x90\x22\x2d\x6c\xd3\x01\x3b\x41\xf6\x09\x99\x51\xce\x9c\xe3\x01\x27\xc1\x2c\x30\x08\x26\x81\x8b\x60\x11\xb8\x25\xd8\x38\xbf\x5f\x94\x21\x10\xac\x38\xa4\x85\x03\x9a\x5b\xf2\x05\x82\x6b\x61\x3d\xae\x8b\x8d\xde\x92\x3e\x5c\x2c\x05\xaa\x1c\x70\x0a\xe4\x54\x2f\xb6\x8b\x95\x3d\x4d\x61\x7c\x91\x26\x1f\x6b\x20\xef\x25\x92\x9e\x63\x8d\xa5\x3d\xf8\x58\xe3\xba\xc4\x9c\x02\x83\x60\xf0\x75\x86\xd7\x7e\x59\x35\xf8\x66\xc4\x6d\x5e\x56\xd3\x43\x8f\xab\xb6\xf0\x9a\x3d\x60\x23\x18\x17\xc1\x29\x50\xa5\x1d\x60\x68\x18\x78\x86\x95\xf5\x56\xbf\x03\xf3\xdd\x49\x2d\x03\xc7\xca\x86\x5c\xf0\x80\xa7\xdf\x3a\x13\xb7\xe7\xc2\x83\xa7\xce\xa6\x96\xc1\xaa\xd4\xf9\xe2\x6e\x5d\x78\xbe\xd7\x79\x53\xfa\x73\x81\x07\xa8\xf3\x26\xc3\xce\x2b\xa4\xce\x0f\x1e\x36\xf9\x02\xd2\xd4\x28\x6a\x19\x3b\x5d\x23\xf4\x0a\xc6\x4e\xd7\x80\x40\x22\xeb\x2d\x57\x03\xef\x97\x03\x56\x81\x41\xb0\x01\xe4\x05\x9f\xaf\x40\x47\x81\x0b\xf0\x80\x18\xc6\x6a\xda\x14\x60\x46\x5d\x8d\x48\x03\x79\x1c\xc0\x37\x41\x74\xb4\x3a\x38\xeb\x79\xe1\xf8\xd7\xd5\x63\xb3\x74\x08\xfc\x10\xec\x04\xc1\xac\xe4\x74\xc5\x8f\x68\xf8\xa9\x3b\x58\x17\x0b\xb9\x93\x40\x70\x95\x75\xe7\x95\x09\x0e\x81\x85\x20\x16\x63\x77\x6e\x51\xc2\x0d\x5b\xf7\xfc\x0f\x0f\xf7\x03\x25\x10\x93\x2a\x28\x03\x21\x87\x0b\xc1\x39\xe3\x02\x38\xd0\x21\xd6\xa3\x0e\x41\x87\xdd\xa8\x6d\x0a\x3a\xb4\x2c\x4f\x43\x60\x37\x4a\x17\x74\xf8\xfd\x39\xfd\x1d\x2e\xe3\x70\xd9\x1b\x0f\x4d\x77\x7f\xe3\xa6\x32\xf4\xe1\x60\x54\x15\xec\x06\x5f\xaf\x07\x82\x50\xce\x55\x43\xe3\x56\x1f\x78\x91\x77\x5c\x40\x07\x3a\x1c\x3f\x05\x73\x07\xc2\x8b\xfc\x32\xd4\xc1\x85\x6a\x69\xc0\xf1\x5f\x42\xd7\x3d\xcf\x21\x2a\x94\x2e\x1d\xe8\xdc\xc6\x7c\xb6\x1c\x08\x1c\x63\xf3\xd8\x36\x44\x75\xee\xfe\x05\x41\xa0\x6b\x1e\x7e\xa3\x5d\x6e\xf3\x46\xf7\x1a\x1a\x18\xf9\xe6\x81\x8a\x94\x4c\xad\xfe\x02\xa3\xdb\xd5\xc5\x61\x22\xea\xe5\x15\xa6\xac\xf5\x9a\xfe\x12\xef\xb4\x50\x8f\x6b\x3e\xc2\x98\x03\x51\x7e\x3c\x5d\xb8\x70\xa9\xbb\x90\x6f\x15\x4d\xf1\x9c\xc0\x36\x9e\x3e\xde\x87\xa1\x04\x81\xa9\x7b\x52\x39\x60\xb4\x11\x11\xf4\xa6\x82\x5f\x2f\xd9\x55\x35\x0f\xb5\x43\x86\xdd\x83\xdb\xa4\x79\xd3\x75\xfb\x23\x2a\x3a\x10\x37\x20\x84\x71\x60\x08\x48\x78\x0f\x04\x51\xa2\x17\xeb\x1c\xc4\x32\xba\x9b\xd9\x78\x06\xb8\x47\x92\xef\xd0\xb4\x70\x48\xdb\x33\xba\x73\x1c\x4a\x72\x8f\x9f\x47\x38\x55\x77\x1c\x84\xcf\x53\x93\x0c\x11\x6f\xd2\x89\x1d\x62\xc5\x2f\x41\xdc\x01\x21\x72\x40\x56\x35\x52\x12\x74\xc8\xef\xa8\xfe\xf0\x3c\x86\xb3\x70\x35\x70\xd1\x5f\xa2\x2f\x3b\x26\x46\x9e\x5d\xf5\x75\xce\x4a\x72\xd9\xd9\x81\x9a\xfd\xe1\xb9\x3c\xa2\x1b\xfa\xe0\xbd\xc6\xd5\x08\x90\xf0\xea\x36\x83\xbb\xa3\xe5\x80\xe4\xb6\x5c\x45\xb3\x02\x2f\x1e\xdd\x1f\xe2\x70\x54\x4d\x4a\x17\x52\x68\x39\xc0\x8c\xcf\xe2\x56\xa9\x93\xb8\x5c\xf7\x3c\x18\xb3\x87\x03\x79\x15\xc5\x7a\x07\x82\xd0\xcd\x93\x22\xe9\x0e\xf7\x7f\x1e\x85\xde\xff\xc0\xa3\x37\x35\x8d\x06\x32\xa9\xa9\x4d\x05\x15\x2f\xe1\xe9\x2f\x1c\x55\x9d\xb8\x38\x58\x5d\x47\x16\x04\x51\xcf\x10\x6a\x04\x6e\x8e\xae\x73\x1b\xc0\xcd\x2b\xe9\x8c\xe3\x3a\x2b\xb9\x6b\x69\x0e\x32\x94\xf4\x7c\x08\x8a\x93\xd4\xea\x02\x0f\x98\xd5\xce\x3a\x1b\x9e\xdb\xbc\x7e\x48\xad\xf7\x92\xf6\x46\x2b\xbe\x28\x1a\xb9\xdc\xce\x19\x79\xbb\xdc\xc7\x62\xd5\x22\x70\x83\x1e\x0d\x41\xaf\x47\x1c\x7a\xa0\x37\x08\x60\x13\x74\x43\xec\xe7\xb2\x73\xb5\x54\x51\xdc\x45\xbe\x8f\x0a\x8c\x03\xa6\xd3\x7f\x57\xff\xa0\x95\x21\x1a\xb7\x40\x2a\x47\x56\x33\xc0\x86\x99\x5d\x06\x84\xd7\x6e\x2c\x0a\x40\x2e\xcd\x09\xd4\xf0\x4a\xc5\x1f\x2e\x50\xa7\x4b\xd0\x99\x45\x34\x8f\xe6\xfe\xfe\x9a\x7d\xba\x19\x1c\xb8\xac\xf9\x9e\x0d\x97\x88\xf7\x40\x90\x72\x88\x52\x2f\xdc\x6a\x64\xfc\x0e\x04\xa2\x62\x4c\x5d\x20\x8e\x49\x24\x86\x8a\x85\x29\x12\xb7\x20\x84\x4c\x42\x62\x88\xc0\x53\xf6\x92\x42\xcc\x11\xd5\xdd\x07\x04\x53\xee\x90\x7b\xf1\x80\x98\x45\x71\x87\xe0\x12\xba\xbb\x38\x44\xbd\x7b\x69\x70\xc3\x36\xdd\x93\xeb\x20\x5c\xf1\xd5\x00\xa1\x7a\x35\x4a\x2f\xc8\x16\xaf\x24\xca\xb0\x20\xbd\x98\xba\x6e\x17\x48\x1a\x45\x94\x95\xe2\xf7\x3a\xbc\x34\xa0\x53\x29\x38\xee\x3d\x21\x3c\x11\x46\x6d\xca\x16\xb4\x15\x9b\xc2\x77\x0d\x66\x53\xf8\x2e\x74\xdf\x90\x2d\x0c\xe1\xe5\x26\x41\xab\xfe\xee\x9c\x2f\x72\x9b\x07\x82\x86\xe8\xe9\x01\x0a\x63\x1f\x53\xa8\x24\xab\x69\xaf\x14\x03\xd5\x1f\x82\xe7\x11\xea\x6d\x60\xf0\xe5\x0b\x7e\x4f\x88\xbf\x9e\x1e\x6f\xdc\x9a\x5c\xa8\x1d\x3c\xb5\x2a\xe3\x8d\x4e\x0d\xda\x01\xcf\xee\xfb\x2a\xde\x10\x20\x74\x8f\xe6\xa0\x69\xa9\xd9\xcd\x9c\x69\x34\x4f\xf8\xd0\xac\x5a\xbb\xbf\x83\x84\x36\xf9\xbb\xc3\xb3\x4c\xdd\x4b\x3b\xa0\x19\xa8\x6e\x05\xd7\xf4\x70\xd9\x07\x54\x42\xad\x2c\x9e\x2e\x37\xba\xa0\xfa\xd0\x1e\xee\xc5\x71\x77\x83\x05\xf2\xcc\x26\xe8\x20\x6d\x4f\x86\x1a\x48\xa6\x66\xc8\x4b\x7b\xb8\x51\x1e\xaf\xee\xaa\xe0\x36\x3c\x1c\x5c\xda\x63\x68\x1a\x40\xcc\x21\xc4\xdc\x1b\xdc\x9d\xce\xf3\xe6\x35\x9d\xbc\x53\x07\x33\xeb\xb3\x36\xc0\xcc\x21\xf6\x6a\x0b\x33\x8d\x37\xc0\xcc\x31\xfc\xe1\xa1\x7d\xcf\x8c\xc1\x7d\x9a\x4a\xee\x83\xa7\x25\x57\x97\x71\xc3\x3d\x54\x88\xcb\x7a\x73\x8f\x37\x0b\x35\x2b\x90\xdb\x5e\xf8\x25\x14\x4a\xa7\xb0\x0b\x4c\x90\xda\x5e\x82\x80\x71\xe2\x8c\xa0\xee\xa9\x49\xf3\x80\x4e\xa7\xcc\xe2\xb2\x1b\x52\xff\x1f\x8a\xac\x2b\x15\x3e\xc9\x84\x09\x0a\x9f\xd4\x45\xdf\xa0\xf0\xa9\x97\xb8\x36\x68\x6a\x6a\xeb\xae\x39\x21\x62\xd5\x40\x0f\x1a\x65\x9f\x1b\x68\x6a\xf2\x55\xfc\x1d\x77\xaa\x09\xba\xc1\xa5\x69\x4a\x40\xaa\xa7\x0c\x48\x55\xb4\xa6\x2f\xbe\x22\x7d\xdc\xa1\x8e\xa9\xe6\xd9\x5e\xa2\x84\x42\x5c\xa8\x63\x4a\xf1\xf4\x81\x54\x43\x84\x18\xea\x98\x4c\x19\x64\xa5\x3a\xa6\x0e\x1d\x22\xa8\x5c\x8a\xb7\xff\x45\x9c\x9a\xee\xf0\xac\x8c\x09\x21\x14\x29\xc9\x4c\xc9\x8b\x38\x95\xc5\x06\x40\x93\x52\x47\xb8\x6a\x61\xa1\x41\x22\x95\xc6\x46\xd6\x2f\x7b\x89\x81\x54\xfd\x72\xb3\x83\x85\x1a\x01\x58\xbf\x22\xfc\x87\x32\xe5\x14\x6a\xca\x20\x94\x66\xb0\xa1\x4d\x39\x85\xae\xfb\x42\xa1\xa1\x37\x86\xc7\x2e\xa9\x07\xa9\x5a\x01\xe8\x3a\x52\xcd\x97\xa0\x83\x46\x43\x6b\x85\x67\x6e\xaa\xa2\x5b\x50\x3d\xd4\xae\x3b\xfb\xcd\x97\x88\xf0\x06\xaa\x87\x9a\xb5\xe2\x6f\xd2\x2d\x8a\xc2\xaa\x74\x0f\xbd\xba\x10\xcb\x91\xdd\x23\xb8\xad\x10\x97\xf4\xa6\x72\x30\x67\x0d\x0e\x28\x37\xc2\x55\x27\xa8\xd3\x14\x04\x86\x52\xd8\x01\xed\x43\x1d\xa2\x23\xd0\x3e\xa4\x3e\x0c\xf1\xb5\xa5\xe9\x83\xc6\x99\xbf\xa7\xf6\x61\xe8\xd2\xa4\xf6\x61\x78\x52\x78\xc7\x4f\x2f\x06\xa5\x9b\xba\x97\xa9\x61\x18\x62\x20\xa0\x61\xa8\xd4\xed\x54\x6a\x18\xce\x24\xd4\xa8\x30\x4e\x33\x94\xd9\x91\x27\x8c\xcb\x37\x74\xa6\xa9\x47\xa8\xe1\x3e\x70\xdd\x79\x2d\x0e\x02\x86\xb8\x59\x68\x03\x9e\xa7\x2f\xb4\x01\x75\xe8\x2c\xbc\x85\x61\x3a\x0c\x6f\x3e\x2e\xbc\x4e\xb8\x50\xa7\xf0\x16\xaf\xfe\x3a\x2f\xd7\x7c\xf3\x43\x2d\xdb\xc6\xd2\x88\x83\x78\x53\xeb\x26\x5a\x40\x69\xfd\x10\x53\x26\x69\xbd\xd8\xb7\x9b\xf2\x30\x13\x43\x88\xeb\x67\x1a\xfe\x90\x18\xae\x8b\x12\xf2\xfa\x94\xa7\xbf\x04\x81\xd3\x6b\xe2\x26\x57\x98\xab\x0b\x37\x54\x1e\x2e\x7c\xb1\xb0\x0a\x7c\xe3\xfa\xf3\x78\x6e\x16\x36\x81\xd8\x55\x2d\xdd\x4d\xbe\x30\xeb\x92\x83\xc8\xbe\x0e\x31\x94\x94\xca\x4f\x1d\x31\x4a\xe5\xaf\xac\x7d\x85\x58\x7e\xe6\xe9\xaa\x03\x42\xfa\x4b\x10\xd4\x09\xe1\x0f\x39\x3a\x5d\xce\x90\xb6\xd7\x24\x2e\xe6\x26\x7f\xef\x66\x20\xa7\xe8\xfd\x87\x32\xec\x2a\x89\xfa\x95\x75\x91\x50\xa2\x9e\xbc\x07\xe0\xf7\xaa\xb6\x19\x12\xf5\x94\x84\x48\x90\xa8\x17\x53\x32\x48\xd4\xb3\x1f\x54\x90\xa8\xd7\x79\xb9\x8c\x64\x44\xef\x5d\x4a\xcd\xe7\xe5\x46\x89\x1f\x5d\x53\x86\x62\x6b\x7a\xd7\x41\x2d\x43\xac\x0a\xe4\xdd\x25\x35\xcd\x11\x77\x9c\xdf\x4c\x90\x2a\x87\xf9\x54\x48\x95\x53\x11\xe7\x40\x51\x61\x9b\xae\x89\x63\x25\x9c\x83\x70\x38\x53\xb9\x5a\x29\xf2\xad\xf3\x81\xc0\x9c\x88\xa7\x82\xc8\x37\xb7\x62\xe8\xec\xf0\x14\xfd\xfd\xc0\xde\xa0\x15\x43\x50\xf8\x89\xc0\x7c\xc8\xcf\x67\x9d\xff\x4f\x70\x69\x0c\x71\x69\x9e\xba\x58\x1a\xb1\x43\x10\xcc\xa5\x4b\xc8\xf9\x01\x51\xb1\x24\xe2\x03\xa2\x32\xc5\x70\x7d\xce\xee\xcf\xae\x77\xf8\x87\xaf\x3b\xaf\x05\xf9\xa6\xac\x6d\xfb\x80\xe2\xcc\xa4\x0e\xb1\xc1\x53\x04\xfe\xb3\x78\x8e\xdc\x07\x18\xa7\x29\xda\xfc\xc1\x0e\xb7\x6a\x88\xd3\xd0\x6a\x40\xf5\x91\xbc\x6e\x0b\xaa\x2d\x4f\x91\xa6\x03\xde\xa7\xcd\x83\x22\x04\xfb\xe0\x41\x59\x24\xa4\xf8\x6c\x0d\x55\x7b\x43\x06\x3f\xb9\x2a\x46\xa3\xab\xe9\xc3\x7b\xab\x08\x8b\x3e\xe7\xde\x8a\xe6\xef\xb0\x8b\x4f\xa3\x1f\xd6\x3c\xcd\x34\x9a\x8c\x4a\x99\xd6\x28\x59\x9f\x19\x8d\x1e\x08\x8a\xaf\xe1\x32\x90\x8a\x82\xfb\xee\x80\xfb\xfb\x6b\x44\x77\x21\x76\x2a\xfb\x43\xec\x54\x73\xcd\x9b\x1f\x76\x81\xdc\xaa\x20\x44\x4a\x41\x4d\xd4\x01\xa1\x3a\x78\x0a\x69\x81\xa5\x56\x83\x0a\x81\xa4\x2e\x21\xaf\x2f\xc5\xd0\x39\x7e\xd4\xa8\x1f\x28\x20\xc1\x30\x04\x2e\x0e\x04\xf0\x40\xc0\x31\x2e\xf2\x01\x39\x72\x17\x52\x27\x20\x88\x0c\x78\xc9\x9a\x08\x98\x25\xd2\xfc\x46\x9b\xc4\x3a\x9f\xb2\x8e\xd1\x5c\x82\x06\x3f\xd4\x3c\x88\x39\x59\x0b\x00\x89\xc2\xf4\x3a\x42\xdb\x36\xa7\x1b\xdd\x20\x7f\x9a\x31\x49\x83\x27\x0c\x31\x19\x15\x30\x07\xe2\xae\xaa\x43\xe8\x95\x69\x36\xd4\x64\xf8\x78\x95\x6a\x90\x96\x0f\xea\x82\x37\x50\xa9\x06\x21\x98\xf0\x3e\x0a\x3b\x2a\x17\x20\xe1\x0a\xe2\x33\xfd\x40\x64\xc7\xab\x20\x4c\x4a\x33\x4e\x07\x57\x66\x8b\x2e\x88\x03\x37\xc4\x1e\x5b\x16\x88\x91\x6b\xac\x09\x54\xe5\xd2\x1c\x13\x55\x40\xf9\x87\x92\xea\x53\x75\x81\xe3\x50\x33\xda\xd5\xae\x3e\xce\xae\x96\xae\x59\x25\x52\x71\x97\x71\x55\xb5\x1c\xe9\xdc\xeb\x83\xbc\xea\x81\xda\xf7\xd7\x9c\xda\xff\x04\xc6\x31\xaa\xcb\x0e\x55\x23\x8f\x7b\x20\x5c\xf2\x4f\x4d\xee\xc6\x10\xf4\x81\x15\x15\x6b\x66\xd8\xe0\x55\x2d\x69\xa6\x4d\x5f\xca\x82\x26\xa8\x68\x13\x44\xe2\xcf\x56\xa0\x72\x9a\x30\xc2\x05\x04\x94\xaa\x97\x0b\xe7\xf7\xd7\xa4\x54\xfc\x40\x38\xa9\xda\x52\x48\xe9\x63\xea\xf8\x65\xbd\x0c\x93\x20\xdc\x6f\x55\x5b\x93\x89\xc4\x3a\x61\x99\x4c\x55\xd5\x61\x84\x21\x77\x9d\x1e\x1c\xad\xaa\x9e\x32\x20\x71\x71\x33\x2f\x5c\x30\x1a\xcd\x41\xd4\x39\x1a\x31\x23\x1f\x2a\x16\x43\x43\x3b\x34\x6c\x18\x69\x32\xf4\xb7\xe1\x29\x71\xed\xbd\x32\x9b\x63\x11\xb6\xc1\x38\x7c\xd6\xa1\x59\x00\xdd\x29\x2f\x3c\x10\xac\xb8\x92\x1b\xbd\x4f\xcd\xe7\xbb\x0f\x9b\xe1\x2a\x16\x48\xda\x42\xb3\x2f\x67\x2f\x66\xd2\x89\x2a\x40\xe1\xd0\x89\x2a\x34\x41\xd0\xca\x14\x92\xa9\xaa\x15\x2e\x20\x53\x55\x47\xb8\x1c\xa4\x9d\x45\x88\x01\x85\x51\x9d\xa2\x4b\x05\xcf\xb4\x36\xdc\xcc\x8d\x53\xc2\x71\x97\x85\xee\x45\x7b\x0b\xef\x1e\xf7\x00\x41\x3b\xe9\xf9\x81\x26\x86\xad\xfe\x88\xc0\x42\xcb\x42\xb2\x50\x35\x6c\x92\x05\x21\x1b\xac\xdc\x4b\xd3\x2e\x15\x3e\x92\xa8\x08\x3e\x20\x4e\xc5\xd0\x87\xe7\x06\x99\xd7\x53\xb6\x58\x55\xcb\x86\x15\xbe\x74\x2f\x54\xdc\x19\x43\x0b\x05\x93\xf8\x74\xd5\xe1\x42\xae\x70\x12\x54\x58\xd8\x04\x42\x61\x2f\x62\x5b\xa5\xd4\x1d\x5d\x20\x17\x2e\x04\x01\xf9\xaa\x5b\x3d\x0b\x90\xba\x21\x8c\x75\x7a\x00\x1c\xeb\x18\x02\x71\x30\xab\x7a\x0c\xdc\x6f\x22\x2f\x95\xf2\xea\x2a\x6a\x5b\x21\xaf\xce\x6e\x95\xf7\x4b\xd5\x3d\x51\x03\xc8\x99\x5c\xb5\x01\x52\x97\xe7\xf4\xc5\x6c\xea\xf1\x5c\x1a\x83\xbc\x6f\x9b\x95\x97\x46\x0d\x7d\x08\x0d\x61\xd3\x46\xd6\x43\xed\x27\xad\x81\xda\xac\x1b\xaa\x71\x9d\xf7\x0a\x14\x0f\x2f\x32\xec\x10\x42\x37\x61\x3d\x1b\x30\x23\xb9\xe6\x0b\x90\x5b\xf9\x3c\x16\xaa\x6d\xb6\x49\xed\xd5\x10\x44\x89\x6c\x13\x04\x86\xa2\x09\xfd\x1b\xa8\x7b\x11\x09\x83\xbb\x42\xbd\x44\x27\x1a\xf6\x86\x5c\xda\x81\xc0\xf8\x0e\x77\x31\xd8\xcc\xf8\x31\x95\x86\xe7\x43\x99\xe1\x3e\x02\x16\x8f\xee\x63\xb1\x9d\x29\xf0\x3c\x3e\xca\x33\x8f\x17\x0b\x3d\x02\xd8\x7b\x89\xda\x37\xec\x63\xd3\x32\x36\x58\x18\x98\x50\x36\x6e\x63\xcb\x2e\xac\xe7\xb5\x7d\x5d\x82\x40\xef\xba\x16\x80\x47\x55\xb7\x44\x83\x65\x4f\xcd\x86\x36\x9b\xd1\x42\x52\xd5\x26\xaa\xd2\xa8\x07\x6d\xea\x11\xb6\x6f\x59\x07\xa9\xe1\x21\x90\x2f\x75\x71\xe8\xe4\xcc\xd9\x35\x39\x63\x11\x2e\x38\x80\x84\x90\xb1\x81\x86\x8e\xf0\x77\x67\xbe\x3d\x1b\x22\x23\xee\xde\x3f\x6c\x45\x23\x85\x4e\xc2\xa4\xb1\x6d\xda\xa6\x6b\xf6\x64\x21\x9b\x0e\x55\xa3\x79\x7a\x75\xd5\x0a\x2b\x2b\x8d\x1b\x4f\x5a\x13\xc3\xb6\x21\xa4\xd5\xb9\x6d\x10\xc4\x99\xf3\x6a\xb0\x3f\xf5\x79\x6b\x87\x70\xd4\x5e\x5d\x93\x33\xac\x6e\x74\xe3\x79\xed\xee\xcf\xd3\x3b\x79\xf6\x1b\xef\x49\x7d\xd8\x27\x8d\x68\xbb\x20\xbc\x27\x74\xbd\x75\x4a\x9a\xbb\x6b\x1e\xba\x35\xd5\x7d\xc7\xeb\x76\x88\xe0\x75\xaa\x87\xb5\x4d\x1d\x38\x94\x84\x51\x1d\x6a\x8d\x22\xaa\x01\x07\x8d\x3c\xb4\x14\x1d\x1a\x88\x11\x2e\xeb\x8f\xf1\xf6\x81\xa0\xf3\xf4\x58\xf0\x9a\xb9\x9a\x6e\xd7\x0e\xd9\x6e\x74\x0d\x26\x38\xfb\xa6\x59\x40\x2d\x5f\xaa\x0b\x61\xa0\x29\xbe\x53\x0e\x05\x1e\x37\xe5\x70\xad\x6b\x00\x90\xc3\xf1\xf9\x7a\x20\x62\xb4\xd8\xd9\x0e\xb1\x48\x29\x6e\x07\x18\xad\xcb\xa7\x43\xba\x46\x43\xf3\x03\x51\x3f\xec\x66\x20\x85\xd4\x21\xee\x78\x79\x24\x8f\x66\x63\xbd\xbd\x36\xc0\x9a\xec\xd5\x80\x1c\xc4\xcc\x64\xe7\x25\xd2\x74\x33\x74\x5c\x22\x55\x3c\x02\x2c\x0d\x6a\x6a\x6e\xf4\x60\x4d\x4b\xfe\x70\xe3\x04\xb9\x0c\x77\xd8\x34\x44\x6b\x79\xd6\x1c\x74\x5a\x50\xd9\x38\x74\xa9\x5c\xc3\x65\xb8\x33\x9a\x58\x0d\xb8\x58\xd4\x2e\x12\x36\x78\x67\x4c\x43\xdc\x29\x2d\xc6\x98\x78\xb0\x75\xb7\xca\x9d\xd2\x8c\xe9\x90\x51\xc3\x9d\xbc\x20\x30\xf4\x87\x6f\x58\x76\x0d\x41\x37\x3f\x74\xd5\x0f\x9e\x7a\x6a\x95\x6c\x42\xf3\xd0\x69\x3b\x20\xfa\x32\x80\x0d\x2d\x0c\x91\xbe\x85\xab\xbe\x61\xbd\x2b\x68\x5d\x8f\x87\xc0\x81\x60\xb3\xaa\x6d\x1c\x72\xbb\xeb\x82\xb0\xe1\xba\xc2\x06\x36\xfc\xea\x3a\xfd\x03\xca\xa3\xab\xfc\x06\x3a\x3d\x60\x9e\x77\xf5\xcb\x0d\x9d\x69\x99\x9b\x1e\x34\x70\xd7\xb5\x31\x60\x9f\x97\x44\x7c\x07\x29\x4c\xbf\x34\x3a\x50\x98\x2a\x0a\x3f\x88\x2c\xfd\xf2\x97\xed\x71\x75\x38\x50\xc7\x85\xe3\x3e\x06\xab\xba\x10\xef\x39\xa1\x20\xdc\xd8\x7c\xc8\x06\x48\x4c\x79\x2a\x9e\x55\xbd\xba\x2b\xbe\xd0\x83\xd6\x18\x4f\x1d\x2a\x5e\x0e\xa4\x29\xba\x10\x56\xd0\x5a\x63\x18\xab\x24\x3f\xa0\x68\xac\xe2\x2b\x7c\x92\xfc\xd4\x29\x08\x7a\x5d\x1d\x5c\x7a\xe5\xf4\xe6\xef\x06\x44\x24\x21\x08\x9a\x96\x07\xc2\x13\xdd\x4f\xd4\x49\x49\x8b\x36\x0e\xe6\x29\xed\xba\xdc\x28\xa4\x82\x62\xa0\x61\x81\x52\xc2\x03\xa5\x56\x55\xd8\x08\xb3\x92\xde\x92\x6b\xe2\xc0\x89\x6c\xc0\xaa\x24\x77\x1d\x38\x58\x95\xd4\x7a\xb9\x0c\xc6\x19\xe2\xae\x64\x55\x52\x5c\x46\x24\xd2\xcd\x4b\x6f\xb3\xa2\x2d\x84\x4f\x59\xf1\x03\x9d\x96\x23\x7e\x67\xc3\x1c\x24\x87\xee\xc1\x49\x01\x89\x18\x68\x5a\x83\x5c\x5d\xb7\x2b\x1d\xcb\x92\x38\x98\x29\xb4\xcd\x6e\x15\xd2\x63\xaf\x29\x30\xd3\xcf\xc5\xc9\xbb\xaf\xeb\x05\x41\x63\x91\xaa\x9b\x70\x52\xd1\xa4\xc3\x48\x8b\x8f\xe6\xe5\xa7\x05\xe8\x30\x84\x4b\xda\xeb\x06\x0b\x50\x63\xd4\x24\x7e\x35\xd7\x24\x57\xa2\x91\x52\xeb\xd4\xbd\x54\x44\xb0\xee\xaa\x44\x30\xb1\xdb\xb2\xf8\xd0\x39\x09\xda\x80\xea\x0a\x0f\x5a\x43\x0d\x43\xe7\x2e\x4a\xe2\x51\x60\x1b\x52\x7c\xa1\xc2\x36\x64\xc6\xe5\x9a\x87\x47\xf4\xed\x0e\x0b\x8f\x12\xd5\xdf\x81\x9b\xd0\xb8\x83\xee\x48\xcd\xad\xbc\xa1\x58\xe4\x0c\x61\xc4\x91\xfc\x76\x85\x11\x47\x36\x6f\x4d\x3b\x8d\xfe\x94\x81\xdc\x3e\x83\x81\xce\xf3\xd2\x92\x46\x40\x04\xe4\x0e\x69\x8a\xa1\x6b\x32\x28\xac\xeb\xc2\xe1\xa0\x0a\x40\xf7\x62\x50\x93\x29\xf6\x39\xa0\x53\xbf\xdc\x23\xdf\xa0\xfd\xa9\x0a\xce\x23\x1b\x9a\x2c\xf4\x97\xd8\xb7\xe9\xc2\x05\x52\x9c\x04\xdd\x67\x70\xda\xef\x90\xd4\x4d\x83\xa3\x53\x8e\xb6\x2d\xa8\x4a\xea\x5d\x03\xd0\xa3\x54\x8d\xc2\xa8\xf8\x59\x2a\x2a\x79\x44\x6c\x42\xfb\xad\xab\x29\x68\x4f\xaa\x9d\x5a\xd4\x32\xfa\xba\x5d\xf4\x5b\xeb\x86\xc8\xd0\x24\x41\xe5\x3c\x67\xd2\x0f\xc5\xd3\xa7\xea\xd9\xff\x24\xe2\x03\x7b\x8f\x72\xe9\x4c\xc3\xde\x63\x52\xe6\x7e\xa0\x75\xe6\x1f\x1e\xcd\xe6\x68\x5c\x88\x07\xc4\xf3\xe1\x1b\xcf\x29\x2e\x07\x6c\x3a\xea\xd0\x6a\xc0\xa4\x63\x5e\xcd\x10\x89\xfd\x70\x55\xea\xfc\xd5\x07\xef\x37\x8f\x4d\x54\x44\x84\x6a\xd1\x1f\x45\xc4\x0f\x96\x1a\xe9\xd2\x8d\x06\x4b\x8d\x64\xde\x1e\x96\x1a\x39\x89\x84\xd3\x52\xc3\xaf\x5b\x58\x6a\xb4\x67\xc2\x10\xeb\xb7\xe9\x9a\x13\xcc\x8e\x21\x70\xa5\x97\xdb\x5c\x60\xbd\xfc\x1d\xad\x25\x55\x13\x32\xd7\x26\xfa\xb2\x68\x6e\x2e\x04\xa3\xa3\x62\x75\x0f\x67\xbf\xdb\x75\x19\x82\xb2\x46\xfc\xf2\xe6\x76\x0f\x0d\x0d\x96\x12\x33\x09\x6d\x37\xdf\x5d\xe3\x32\x08\x1b\x03\xb1\xc1\x30\x80\xa8\x59\xeb\x2d\x03\x88\x21\xca\x04\x03\x88\x3c\x74\x11\x6d\x32\x2d\x23\xb9\x4f\xd8\xd4\x89\xdc\x6d\xf9\x11\xea\x43\xbe\x74\x87\xee\x6c\x58\x39\xe4\x1a\x86\x80\xd4\xba\x27\x60\xc8\xd0\x2e\x37\x4a\x39\xd3\x10\x85\x87\x25\x43\x2e\xdd\x1f\x1e\x14\xeb\x22\x23\x9b\xdc\xae\x05\x01\xfb\xec\xff\xec\xe2\xcc\x36\xf7\x7f\x78\x7d\xce\xfe\x9f\x47\xbd\xa0\xfb\x2c\x4f\x78\x00\x1f\x18\xc7\xa8\xec\xec\xf1\x79\x61\x0b\x2a\x6c\xa6\x0a\xa4\x89\xa5\x06\xb7\x39\x65\x2d\x00\xf8\x92\x70\xa3\x90\x26\xe5\xcb\x35\x21\x2e\xf3\x92\xe3\xc9\x32\x75\x8c\x37\x94\xbc\x45\x77\x21\x4d\x07\xa6\xf7\x11\x9b\x6c\x99\x04\x5d\x51\x8b\xb6\x4a\x2e\xa5\x42\x1c\x7a\x94\xfa\xa5\xfd\xe2\x13\xd9\x3c\x03\x5c\x4a\xeb\x25\xd2\x20\xdf\xd0\xee\x0f\x71\x16\x7c\x4f\xc0\x56\xa0\x15\x21\x2e\x6c\x05\xea\x74\x8f\x34\x29\xd5\x16\xd3\xc9\x33\x84\x9c\x2f\xee\x5b\x73\x19\xd1\xa8\xb9\x30\x10\x65\xa1\x0b\x5a\x8f\xaf\xe8\x81\xf0\x2c\x12\x9d\x7a\xf1\xf4\x89\x2d\x86\x79\x40\xf6\x93\x98\xce\x9a\x97\x49\x83\x9c\x35\x9f\xaa\x50\x81\x56\x37\x73\x50\xa3\xbb\x0b\x08\x04\xc3\x73\xc2\x63\xd6\x2f\x36\x58\x00\xcc\x4b\xf7\x39\x2d\x00\xae\x21\x92\xfa\xe2\x96\x8a\x45\x84\x72\xbe\x78\xbb\xa9\x9b\x4f\xa2\x5a\x2f\x3e\x34\x45\x8a\x5e\x54\xab\x56\x43\xc0\x2f\xe1\x1e\x9c\x19\xa7\x39\x3d\x38\x33\xca\x35\xf6\x40\x9c\xe1\x74\xe1\x99\xa1\x05\x74\x6f\x5a\x69\x8e\x99\x7f\x4c\xa7\xe1\xeb\x58\x2d\x75\xa0\xfe\xff\x1a\x7a\x98\xd0\xd9\xb1\xe8\x91\xf0\xa6\x84\xa4\xb8\x2a\x8c\x3c\x8a\x6b\xca\x50\x4c\x10\xec\x32\x9f\x56\x20\xa0\x14\x12\xdb\x4b\xd1\x93\x94\xa0\x2b\x04\x65\xf8\x25\xe9\x43\x1a\x2d\x8b\x4b\x81\xa9\xc0\xf4\x75\x4b\x4b\x81\xea\x0e\x61\xfb\x3e\x44\xa6\x61\x28\x90\x2d\x3b\x81\x31\x40\x4a\x4f\x2b\xb8\x5f\xfc\x80\x86\x35\x80\x5c\x8c\x0f\xf4\x66\xa1\x56\x15\xc4\x3f\x69\x53\x61\x0e\xd0\x8a\x98\x46\x98\x03\x54\xcb\x04\xe0\x8c\x28\x07\x8d\x03\x1d\x1a\xd6\x85\x37\x34\x15\x18\xd5\x65\x30\x78\xd2\x71\x7b\x93\xa3\x30\xd9\x7c\x0b\x35\x35\x54\x48\x56\xa7\xc8\x9d\x4c\x05\x46\xb8\xd5\x5f\xbd\xa1\x0f\x44\x02\xa7\x4b\x14\xfe\x88\xe5\x99\x06\xd1\xd8\x4b\x45\x87\x26\x11\x0a\xd8\x11\xd4\xec\x3d\xdd\xb0\x36\xd4\xdd\x4f\x97\xc3\x6b\x18\xe5\x70\xc5\x5c\xde\x37\x88\x64\xb2\x57\x1c\x8f\xeb\x3e\xdd\x0c\xb1\x48\x94\xf1\x4d\x99\x4c\x71\xab\x13\xd8\xe0\xfe\x83\x55\x0d\x2e\xcc\xca\x7d\x40\x8f\xab\xaa\xf2\x10\xd4\x11\xbf\x29\xaf\x9d\xba\xa9\x6e\xa9\x8a\x9b\x20\xf8\x78\xea\xf8\xdf\x34\x53\x2d\x86\xc8\xed\x5f\x82\x16\x9b\x71\x1f\xb8\xa8\xba\x1b\x3d\x8c\x62\x7a\xba\x00\x4b\xe5\x66\x80\x7f\x3e\xd4\xf0\xc3\xcb\x4d\x07\x1e\x7e\x78\xe7\x8d\x23\x08\x6e\x4c\x42\x7f\x6a\xff\x87\x1e\x1b\x37\xd9\x0b\xab\xca\x6e\xfa\xbb\x0a\x55\x61\x1a\x30\x86\x16\x55\x6e\x34\x53\xaf\x24\x38\xdb\x15\x8b\x8b\xe9\x6c\x37\xc4\xec\xcb\x34\xc0\xaa\xc2\x9b\x06\x50\x4f\xab\x70\x67\x9e\xfe\x70\xb0\xaa\xc6\x43\xd5\x89\x57\x83\x5e\x21\xe1\xb2\x43\x1b\x2d\xaf\xbd\x89\x54\xba\xa7\xe0\xfb\x36\xb3\xe8\xcf\x4d\x3e\xd5\x2f\x21\x3a\xbf\xcd\x70\x61\x63\xa1\xe6\x01\xf7\xf1\x4b\x37\xf3\x4d\xcb\xb9\xcb\x10\x08\x87\x46\xf3\x21\xe3\x62\x0e\xeb\x43\x13\xcf\xe9\x42\xb8\xe7\x8b\x70\xc0\x8c\x60\x8c\xe1\x9a\xf3\x09\x07\x70\x20\x38\x2d\x68\x1a\x34\x23\xb8\x9e\xb2\x0d\x9f\xc5\x29\xe8\x75\xf8\xa6\x69\x08\x76\x7b\xe2\x28\x3e\x94\xeb\x0a\x6d\x3f\xf4\xa0\x16\x7f\x23\x1f\xa6\x29\xa2\xf2\xc1\x53\x24\x89\xa3\xa1\xc5\x81\x75\x6c\xb4\x38\x48\x57\xfa\x31\xa1\x86\x39\x42\xb5\xca\xed\x43\x8e\xc6\x02\x6a\x98\x23\xe4\xe8\x1e\x00\x7d\xfa\xd4\x07\xe3\x92\x5c\x86\x88\x46\x7a\x6e\xc1\xc8\x60\x58\x97\x03\x1b\x83\x6c\xcd\xdd\x07\x68\x64\x84\xfb\x40\x35\x59\xb2\x9b\x81\xa5\x9a\x68\x8a\xec\x0f\xa6\x68\x33\xec\x0f\x5a\x19\x2e\x0c\x40\xfe\x70\x41\xc5\xab\x45\x25\x83\xeb\x1d\x86\xba\xa8\x3e\xdf\xbd\xbf\xbf\xfc\x2c\x82\x69\x42\x6a\x97\x3b\x80\xd0\x47\x34\x1c\xa6\x09\xc5\xd2\x33\x58\x26\xb4\xa2\x7b\x19\x96\x09\xa5\xfa\x3b\x3a\x65\x3e\x35\x79\x4c\x44\xb5\x3f\xb4\xef\xac\xfe\x90\x02\x42\x97\x9d\x09\x5a\x1b\x07\x8b\x86\xd2\xbc\x4c\xb8\xec\xcd\xc0\x7f\xb6\x36\x46\x13\x44\x5c\x83\x22\xe9\xf4\x67\x33\x7a\x8c\xfb\x7f\xa3\x0c\xeb\x1b\x97\xd0\x9b\xcc\x56\x5c\xd4\x87\x70\x81\xe3\xe2\x75\x4f\x37\x8c\x03\x16\x70\x49\x45\x50\x85\xff\xca\x14\x44\xec\xeb\x2e\xec\xe8\xc4\x85\xdc\xa8\xee\x66\x61\xfa\x4d\xe6\x3f\x2e\xde\xe8\x14\x57\x07\xad\x28\x6a\xb8\xe6\xe6\x87\x4d\x20\xb4\xd6\x4f\xd5\xf7\xb9\x6f\x93\x9b\xa1\x53\x86\x87\xfa\x81\xa7\x89\x6a\x9e\xcb\xbf\x74\x1e\x9b\xb8\x28\x2f\x2a\x6a\xf3\xdc\xfd\xad\x0c\xb5\x02\x33\xc1\xc9\x2d\x0e\x85\x62\xd2\x95\x1e\x08\xc6\x94\xbb\xa7\x18\x9c\xa2\xbb\x80\x83\x69\xd2\x32\x4a\xb0\xad\xe9\x93\xd5\x9f\xc3\xad\x42\x75\x71\x19\xba\xa1\x7f\xf1\xd8\x0e\x29\xce\x59\xb3\xc0\x19\xea\xd5\x10\x50\x6c\x6a\xdc\x64\x36\xe7\x50\x8f\xe7\x0c\x35\xba\x99\x1f\x08\x52\x37\x2f\xff\x39\x27\xf4\xa5\x3e\x00\x9e\x81\x4d\xc3\x86\x79\x73\xaf\xea\x9d\xf7\xf9\x1c\x5a\x7d\x08\xa1\x66\xb8\x07\x9a\x0c\xb8\x8c\xe1\x4d\x5c\x86\xf8\x02\xde\x35\xc4\x17\xb8\xfc\x1d\x59\xd6\x39\x34\x6e\x48\xd2\xa5\xb6\x8a\x6b\x63\xf5\xa7\x21\x52\x70\x6f\xc6\xa6\x13\x84\x3f\x84\xc6\xad\x6a\x1a\x38\x0c\x22\x44\x71\xe1\x3e\xd7\x0d\x16\x97\x0e\xc3\x70\xab\x64\x4b\xb4\x18\x38\x0c\x12\xca\x84\x8c\x3d\xa6\x17\x07\xc6\x1e\xba\x96\x42\xc6\x1e\x12\xbb\x47\xc2\xeb\xe6\xd2\x2e\xc2\xf4\xa3\x15\xea\x40\x22\xf1\x75\x23\x0c\x4b\xc2\x77\x0a\x5e\x22\xd1\xc0\x50\x78\x93\x28\xe7\x14\xbb\x1d\x09\x08\x2f\x51\x47\xa4\xc9\x83\xab\x76\x60\x43\x76\xe8\xdb\x8f\xe8\x74\x24\x32\xb4\x93\x2c\x5d\xc0\x4e\x24\x4b\xf2\x15\x89\xa8\x3a\x35\x80\x40\xb0\x14\x0f\x0e\x06\xad\xe5\xa9\x09\xaa\xe9\xb1\x89\xdc\x87\x3f\x64\xbc\x10\x17\xd2\x43\x8a\xbb\x93\xc0\x7c\x7a\x93\x13\x5f\xa5\xd3\xeb\x71\x48\x7a\x2b\x42\x8f\x44\xee\x33\x74\x00\xd2\xc2\xe0\x9e\xaa\x83\x85\x5a\x8f\xc5\x58\x0a\x82\x48\x64\x3d\x1c\xe0\x4e\x4d\x6a\x06\xaa\xfc\xe1\xbd\x22\x91\x8d\xa7\x10\x06\xbe\x64\x5b\x02\x66\x2b\xad\x84\x21\x2c\x87\x17\x6e\x53\x46\xab\x79\xd0\x72\x42\x38\x9f\x88\x3a\xde\xc7\x4d\xf2\xc3\xd5\xa0\x11\x8b\x6c\x2c\x22\x53\xe7\x2f\x83\x84\xc8\x13\x58\x1e\x2e\x2c\x2c\xec\x02\xb9\x38\x6e\x87\x8b\xf3\x34\x0b\x0b\x1b\xf2\xa2\x91\xc1\x28\x54\x5e\x86\x91\xa1\xbd\x0b\x21\xab\x6c\x63\xa4\x3e\x8b\x4c\xef\xe0\xf0\x87\x20\x2b\xbc\x1d\x22\xe3\x2d\x34\xdc\x0c\x31\x27\x1e\x10\xae\x09\xc2\xc0\x4c\x65\xf1\xd3\x49\x70\xac\x49\x10\x9c\x7d\x3c\x49\x3c\x86\x4a\xd3\xac\x60\x8c\x2f\x89\x75\x64\x52\xc0\x10\xea\x64\xc4\x9a\xab\x42\x00\x18\xe0\xb4\x2a\xd2\x09\x03\x9c\x26\xb1\x51\x64\xe1\x4a\xd1\xe0\x80\x2b\xe2\x14\x02\xf6\x37\x4d\xb7\x6c\xc0\xfe\xa6\xf6\x6a\x68\x23\x9c\x9d\x9b\x01\x4b\x2d\x42\x0a\xfb\x9b\xc6\x60\x07\x07\xba\xd9\x85\xa6\xc8\x4b\xde\x4b\x45\xe2\xe5\xcb\x02\xd1\x18\xab\x5e\xa6\x91\xf9\x52\x09\x91\x9d\x4c\x3d\xa0\x68\x19\x6c\x77\x5a\xbd\xd4\x2a\xc9\x95\x37\x19\xd7\x33\x1d\x28\x0f\xf4\xfa\xfe\x8a\xcb\x7b\x0c\x11\xaa\x58\xc3\xc8\x14\xa1\x86\x47\x8e\xb0\x09\x7a\x7e\x46\x39\x38\xa7\xb7\x58\x14\xba\x69\xf0\x81\x11\xb0\xe3\x69\x95\xdc\x57\x14\x61\x5c\x35\x88\xa8\x18\xba\x9d\x8a\x30\xae\xba\x51\xc4\xfd\xe8\x6e\x15\xae\xc6\xd9\x65\x87\x90\x99\xae\x16\x86\x16\x1a\xae\xf9\xc2\xd0\x9a\xa0\x37\x3c\x06\x5d\xf3\x3e\x03\x75\x23\x98\x83\xd0\x0d\x86\x43\xcd\xf7\x48\xa1\xb3\x87\x3b\x08\x4e\x42\x4d\x1e\x6c\x6b\x95\x8f\x1d\xba\x9d\x9f\x51\x0f\x81\xe0\x94\xa6\x0b\x27\x0b\x35\x43\x3e\xbe\xa3\xba\x59\x8e\xd4\x85\x40\x86\xec\x2f\x6f\x40\x1a\x2a\x6f\x63\x7f\x47\xc3\x95\x68\x5a\xe2\x73\x1d\xcf\x21\x4a\x01\x5b\xa5\x74\xde\xb0\x3f\x24\xd5\x30\x64\xca\x46\xa9\x42\x24\x16\x33\x04\x43\xa6\x52\x3c\x2b\xd9\xd0\xba\x26\x2c\x21\x9b\x21\x5c\xc0\x3a\x35\x30\x6b\x2a\xb2\xc4\x0b\xc4\xf1\xac\x32\x40\x08\x18\x39\xb5\x6a\xcc\xc0\xe5\x28\x2d\x40\x14\x5a\x42\x86\x18\x2c\x86\x5b\x30\xb6\x95\xcd\xa5\xd1\x42\x09\x15\x8d\x19\x8c\xe0\x21\xbe\xa5\x92\x8d\x94\x0a\x32\x60\xf3\x54\xd3\x53\x58\x81\xe0\x53\x10\xf1\x4d\xf7\x28\xac\x9a\x8a\x74\xf7\x51\xe9\xed\x26\x54\xa9\x14\xf6\xc6\x70\x61\x1c\x34\x6a\x02\x80\x46\x22\x0c\x95\x1c\x9e\x3b\x3c\x68\xd4\x64\x17\x1b\x30\x54\x6a\xb2\x70\x0b\xc4\x22\x6d\x55\x4c\x05\x8c\x91\x5a\x15\x5d\x52\xc4\xca\xd0\x11\xae\x10\x9a\x48\x01\x1b\x95\x1b\x55\xfc\xe1\x02\xd4\x05\x71\x19\x75\xc3\x55\xe8\xeb\x62\xb8\x90\x94\x39\xfc\x25\x78\xa5\xea\x56\xe1\x7c\xe4\x75\x83\xc0\xb6\x36\x4d\x8a\xb1\x5f\x8b\x66\x2f\x6a\x13\x6a\x95\xbb\xda\xd4\x0c\x2e\xb1\x5a\xdd\x0c\x30\xbc\xba\xe6\x9b\x96\xef\x1a\x1c\x78\x9c\x91\xfd\x21\x96\x51\x0b\x0e\xe3\xa8\x53\xb5\x09\xc4\x3a\x6a\xa8\xb4\x8e\x4a\x97\xe8\x2d\xac\xa3\xb2\xef\x2d\x5a\x47\x75\x21\x20\xad\xa3\xd2\x75\xb9\x10\xd1\x92\xb4\x57\x30\x72\x6a\x55\x1c\x07\x8c\x9c\xe2\x01\x3e\xe7\xb1\xaf\x91\x36\xd2\x06\x6d\x38\xec\x96\xa6\x2f\x7f\x98\x2d\x9d\x27\xac\x06\x43\xe2\x50\x5d\x88\x6b\x42\xc7\xbf\xf1\xbc\x37\x37\xca\xd5\xd0\xfc\x9b\x7c\x62\x55\x95\x96\x04\x45\xc3\x86\x30\x5d\xfa\x8c\xa0\x15\x53\xd1\x81\x6b\x38\xc4\xb5\x1b\x22\x6e\xf8\x3b\x68\x53\x3c\x18\xaa\x72\x2f\xe1\x1f\xcc\x98\xea\xd0\x69\x6c\xbc\x8a\xbc\x6c\x70\x5f\x0d\xaf\x3e\x45\x56\xda\xe1\xc6\x3b\x43\xa7\x0f\x96\x42\xa5\x17\xb5\xa9\x1d\x2e\x1a\x29\xf4\x30\x55\x7c\x4a\x93\xe3\x83\xea\xd2\x8e\xa8\x88\x8a\x74\xee\xb0\xa6\xd1\x19\xab\x4e\x3c\x6d\x9f\xc4\xb0\x21\x08\xde\x6d\xd9\xd0\x79\xee\xfc\x5a\x36\xd1\xca\x25\x08\xc6\xe5\x62\x04\x3a\xf8\xdb\x19\xee\x0f\xb3\x78\x7a\xe7\x19\xe6\xb0\x7b\x10\xf9\xb4\xdf\x9d\x87\xb8\x1b\xc2\x21\x16\xd1\xa0\x91\x51\xc9\xfe\x10\x08\x25\x2a\xd1\xc9\x97\x3e\xd0\x1b\x9c\x9f\x26\x2f\xd1\x6a\x2b\x3f\x26\xd3\x08\x12\xd2\xaa\x1e\x94\x1d\xb6\xbe\x97\x76\xb8\xc3\x4c\xb1\xea\x11\xd1\xb5\xc3\x5a\x70\x58\x15\x4d\x5f\xd2\x7d\x71\x6f\xba\x41\x84\x41\xd2\x1d\x02\xb3\xa2\x26\x2b\x65\x46\x4a\x9d\xd2\x89\x30\x54\x6a\x7d\x9a\xd9\xc4\x77\x11\x0a\x98\x15\xb5\xea\x3d\x85\xe4\x33\x99\xc2\xd2\xae\x28\xbc\x8d\x9b\xc2\x9e\xee\xba\x58\x2c\x0f\x9d\xb7\x81\x1f\x35\x9d\x01\xd7\x74\xa8\x60\x83\x74\x0a\xb5\x94\x42\x24\x49\x0e\x60\x77\xd4\x64\x2a\x1a\xb0\x3b\xaa\xd2\x3d\x30\xb2\xeb\xac\x3a\x39\x83\x4a\x79\x11\x2e\x9a\x1d\x25\x3f\xf8\x07\xa9\x81\x9e\x9c\xb0\x1e\x9a\x32\xeb\x8d\x41\x14\x10\x1d\x1d\x64\x07\x9a\x21\x98\x99\x84\x6b\x12\x3d\x42\x10\xc9\x8f\xc7\x46\x72\xa0\x1d\x40\x20\xe8\xe9\xab\x02\x46\x47\xa7\xaa\x5b\x85\xf0\x2d\xbb\x55\x9c\x4e\xbd\x29\x86\x90\x47\x8f\xa3\x21\xfc\x10\xb4\x88\xbc\x22\x24\x83\x6a\x59\x5d\x1d\x83\x51\x3c\xa5\x41\x8e\x01\xc5\x50\xf3\x5a\x91\xe1\x15\xa7\x3a\x16\x36\x56\x7b\x37\xc8\xef\xea\x75\x3a\xe8\x50\x75\x85\x41\x9c\xba\xa7\xd1\x73\x39\x5e\x1e\x2b\xaf\x27\x6f\xd5\xc2\x50\xc5\x53\x0e\xa1\x92\x8e\x24\x8d\x8e\xaa\x1b\x3d\xa8\x14\x97\xb7\x83\xd7\xca\xf0\x87\x08\xa0\x22\x42\x36\x48\x65\xc2\x10\x90\x23\x89\x91\x83\xb9\x50\x6b\xe2\xf0\x27\xa9\x8c\x10\x00\x26\x41\xb3\x89\x1e\xc3\x24\xe8\x7c\xe8\x42\x4c\x2a\x5c\x18\xd0\x75\x17\x41\x20\xe4\x1a\x37\x4c\x82\xe2\x9a\xae\x89\x20\xc1\xd9\x65\x30\x2d\xd1\xcd\x89\xb8\x33\x53\x66\x66\x31\x89\x1c\x4f\xa3\x81\x09\x0b\x55\x60\x21\x34\x86\x47\x8a\xb7\xf1\x95\xdd\xcc\x86\x88\x47\x73\x0a\x70\xed\xc2\x38\x1a\x01\xa5\x94\xfc\x21\xd7\xc6\x5d\x60\xf9\xc5\x29\x4e\x3e\x77\xf4\xfa\x9c\xda\xfd\x21\x68\x60\xd9\xd4\x21\x44\x35\xb6\x41\x0c\x18\x0c\x4d\x1f\x31\x86\x88\x69\x5e\x36\xdc\x23\xed\x72\xd9\x8d\x39\x69\xa4\xd0\x20\x76\xd1\x5c\x58\x04\x85\xc9\xd1\xa4\x34\xc6\xdd\xd3\xae\xb1\x18\x2a\xec\xde\x1f\xe2\x86\x17\x82\x21\x7a\x4c\x5c\xc2\x0c\x98\x12\x95\x76\xb9\x51\x6e\xa9\x78\x5a\xd8\x12\x85\x2c\xe7\x03\xb6\x44\xed\xd7\xaa\x8b\x55\xdd\x25\x22\x14\x89\x3a\xc2\x40\x28\x9d\xe7\xd5\x0f\x89\x35\x23\x3c\xa7\xa4\x1d\x87\xf9\x50\xc8\x38\x9e\x31\xa9\x9a\xec\x2c\x03\xa6\x3e\x4d\x62\xd4\x40\x2c\x97\x9a\x44\x73\x61\xdc\xd3\x7c\x32\x11\x67\xa5\x35\x5d\xc7\x08\xb3\xd2\x24\xd0\x0e\x84\x59\x69\x4d\x54\x04\xb6\x3d\x4d\x66\x66\x01\xdb\x9e\x30\xd9\x44\x28\x95\x30\xd5\x64\x84\xee\x24\xeb\xc0\x08\x18\x6c\x34\x11\xca\x58\x5c\x71\x1d\x8d\x58\x1c\x8d\x21\xae\xb8\xab\xf2\x9c\x6a\x6c\xa4\x0c\xa9\x19\x84\xdd\x4b\xf8\x43\x78\xb4\x0a\x53\x60\x05\x54\x2d\xfc\x08\x3c\x93\x65\xf0\x1e\xb1\x48\xfd\xfc\xdd\x07\x58\xa4\x85\xa2\x3d\x6c\xd2\x5d\x85\xd0\x2e\x4d\xa6\xb3\x01\x83\xa1\xb8\x44\xa8\x43\x88\xa3\x3b\x86\x06\x43\x92\xc4\x47\xd0\x8c\x3a\x89\x59\x88\xcd\x88\xf1\xea\x52\x98\x23\x7e\x24\x10\x29\xd4\x52\xa4\x80\x91\xa3\x94\x06\x11\xc2\x1c\xdd\xcf\x30\x27\x0a\xdf\x63\xeb\xdc\x46\xcd\x42\x46\x04\x8c\x69\x4d\x07\x9e\x26\x42\x5d\x98\x02\x4b\x9f\xf0\x65\xb4\x18\x05\x2b\x89\xfc\x2d\xca\x94\x93\x1b\x45\xd4\x66\xf5\x0f\xdb\x9e\x46\xd7\xdb\x03\x55\x7e\x38\x05\x62\xaf\xc2\x85\xe7\xe0\x16\x61\x35\xac\x72\x8a\xdf\x58\x8b\xfb\xa8\x5b\x64\x69\x1f\x45\x38\x60\xb2\x33\xfd\xfe\x44\x70\x93\xb0\xdc\x70\x81\xa6\x37\xd1\x26\x18\xe2\xc4\x25\xd9\x30\x82\x9b\xcc\xee\x56\x64\xb8\x2e\xe2\xb0\x48\xe1\x75\x6d\x2c\x98\xfd\xc9\xfe\x3e\x16\x0d\xd0\xf5\xe1\xe6\x9a\x4e\x43\x09\x50\x17\x94\x41\x54\xb2\x20\x78\x7f\x64\xd7\xe4\x81\x77\x4d\x6c\x9b\x8e\x3f\x63\x94\xc8\x22\x30\x60\xa1\x93\x92\x1c\x2a\x03\x41\x4a\xc2\xf2\x05\x98\xe8\xcc\xe7\x43\x1e\x4d\xd1\xc2\xcd\xa3\xe9\x0e\x83\xa6\x0e\xae\xb9\x71\xbd\xba\xec\x45\x3b\x6e\x17\xe2\xf4\x0b\xdf\x60\x67\x93\xcd\x9a\x6f\x7a\xde\xeb\x30\x20\xba\x48\xcd\x12\xc4\x21\xb8\x48\x6b\x6e\x05\x6a\xd0\xa1\x15\xa5\x0d\x8e\xfd\xd9\x02\x36\x38\xc9\x2f\xda\xcd\x13\x96\xdd\x0c\x47\xa3\xa7\xd0\x86\x25\x67\x11\x1b\xb7\xe9\xa8\x20\x3c\x61\xc8\x10\xcb\x1e\x11\x15\xa4\x0c\xaf\x29\xee\xec\xe6\x0e\x49\x52\xc5\x0d\xc3\x5c\x27\x4d\xcf\x89\x16\x98\xa2\x13\x30\xde\x29\x46\x0c\x18\xef\x34\xdf\xe7\x2f\xc6\x98\x6b\x86\xb0\xdc\x7a\xa6\xd0\x94\x27\xc9\x76\x2e\x60\xcb\x53\x65\xf1\x1e\xb0\xe5\x89\x2b\x7e\xac\x4d\x0c\x85\x8e\xbf\xfc\x21\xc6\x4d\x95\x6c\x20\x96\x48\x93\x9d\x59\xbc\xe8\x3e\xab\x8b\xe9\x45\x47\x85\x5c\x0d\xbe\xe1\x26\xa6\xaa\x88\x70\x3b\x74\x66\x11\x04\x7e\x0e\x91\x22\xd8\x00\xcd\xf6\x94\xe1\x78\xe5\x66\x70\xa2\xd0\x55\x41\xc3\xb5\x33\xff\x31\x44\x7b\x63\xdc\xc2\x62\xed\x0a\xe2\xa7\xd7\xa2\x9b\x10\x41\x0c\xdb\xe5\x71\x83\xf1\xba\xdc\x0a\x5f\x06\x59\xc7\x1b\x01\xd4\xdb\xe5\x09\xe3\x65\x20\xed\x65\xd0\xb2\xc7\xcf\x1d\x84\xef\x68\x97\x24\x18\x0c\x61\x7e\x15\x97\x31\x06\xbd\x5a\xc1\xbb\xd0\xaf\x3b\x18\xf6\x28\xe9\xc0\x81\xc0\x94\x65\x51\x37\x85\x29\x57\xa3\xb0\xec\x39\x85\x53\x20\x4c\x07\xf5\x10\x87\x09\x4e\xb6\x1c\x86\x66\x36\x3d\x1b\xe2\xa4\x74\xdc\x10\x37\xbc\x5d\x4f\x21\x78\xc4\xa7\x0c\x21\xde\xba\xfb\xc7\x7d\xae\x6b\x49\xc1\x3b\x84\x8b\x8c\x1b\x6e\x91\x30\x4d\x69\x2c\x94\x83\x29\x4d\x4e\xc5\x10\x8e\x77\xb8\x26\x97\x54\x93\xc0\xcd\xfb\x14\x31\x36\x80\xbb\x83\x77\x87\xee\x5d\xda\xd1\xc8\x4a\x3a\x18\xd4\xfb\x12\x3e\xd3\x56\xc6\xb2\x14\xda\xca\xa4\x2c\xae\x13\xb6\x32\x45\x7e\xbc\xf1\x26\xbd\xce\x0f\x38\xb1\x86\xfe\x12\xbb\xf6\xb4\x8a\xd0\xdd\xc5\xfd\x63\xd7\xaa\x21\xa2\x77\xf8\x43\x18\xbb\x8b\x27\x81\x1d\xcd\x29\x34\x08\xe5\x9a\x17\x8a\x78\xd2\x0c\xc1\xaa\x41\xf7\x85\x0c\x60\x84\xa6\x6f\xe2\x89\x4e\xf0\x9b\x7e\x00\x7a\x6a\xd3\xc6\xc5\x3a\x20\xd8\xb8\x64\xbf\xd1\x61\xe2\x92\x65\xef\x1c\x30\x71\x69\x97\x2e\x2f\x98\xb8\xb4\x4b\x58\x02\x2b\x96\x12\xe1\x32\xf4\xa0\xf5\xbe\x99\xa8\x41\x5c\x1f\xa2\x50\xb7\x4b\xac\x04\xc3\x56\xc8\x61\x26\x60\x7e\xd2\x4c\x86\x60\x7e\xd2\x2e\x11\x3a\x58\x9f\x24\x59\xcd\x04\xad\x4f\x8a\xf6\x17\xd6\x27\x4d\xc6\x9e\x71\x73\xd7\x64\xfd\x13\x0c\xf5\x6c\xa6\x07\xd6\x27\xed\x6a\x6e\x74\xb2\xaa\x46\xca\x5d\x13\xa1\x47\x64\x8a\x53\xe8\x4e\xe0\x06\x33\x3c\x80\x17\x0b\x5d\x17\xdb\x26\xc9\x2a\x2c\x55\xb2\xa5\xcc\xb0\x54\x69\x97\x08\x0f\x2d\x55\x92\xe9\x3e\x2c\x55\xda\x25\x61\x0a\x82\x2f\x37\xb3\xcb\xb4\x30\x19\xba\x75\x61\x61\x62\xd6\x01\x66\x23\x59\x9e\xd2\xc1\x88\xb6\x59\x6c\x15\x62\x51\x34\x45\x18\x08\x84\x18\x6e\x87\xe7\xff\x21\x85\xfe\x30\xbe\x97\x6c\x38\x83\x26\x26\x1e\x1a\x4c\x4c\xda\xe5\x3e\x82\x03\x4d\x82\xb0\x6e\xcf\x77\x20\x83\x62\xce\x10\x99\xa2\x99\x39\xfb\xf0\x1d\xed\xf7\xd8\x47\xd1\xf6\xd5\x0c\xdf\xd1\x42\x1b\x98\x8d\x84\x25\xb0\x1f\x6e\xb1\x10\xe5\xc3\xe5\x16\x69\xa7\xa5\x46\xb2\xe6\x14\xa6\x1a\xcd\x6c\xd5\x87\x0b\xac\xcb\x13\x56\x15\x53\x9e\x65\xf1\xd1\x72\x6b\x30\x88\x4c\x1c\xc3\xdf\xc1\x4c\xc7\xb3\xd8\xec\x10\xdf\x2d\x18\x4e\x34\x31\xe0\xeb\x22\x31\x95\x8a\x6f\xc1\x70\xa2\xc8\xad\x67\xc1\x36\x62\x6a\xdc\x8b\xd1\x99\x1b\x11\x75\xc1\x34\xa2\xc9\x4c\x67\xc1\xfa\x61\xea\xd6\x5b\xb0\x7e\x68\x7a\x47\xac\x8b\x77\x20\x93\x71\x1c\x90\xa3\x51\x33\xb0\x69\xd0\x4b\x71\xc1\x50\x21\xe9\x62\x5b\x17\x5f\xb8\x3c\x7b\xeb\xe2\x3e\x0d\x75\xc1\xa7\x8a\x07\x8a\x67\xeb\xf5\x7c\xc7\xd8\x53\x97\xaa\xf2\x60\x0e\xcd\x82\xa2\xf2\xe2\xb2\x0a\xaf\x26\x2d\xcd\xa2\xeb\x8e\x06\x8a\xe7\xa7\x0c\x1c\xd6\xc5\xb0\x68\x1e\xcc\xe1\x71\x86\x6c\xc4\xd6\xc5\x50\x03\x9e\x20\x93\x26\xa9\x87\x04\x7e\x44\xaf\x9f\x05\xa5\xf9\x64\x9e\x90\x03\xed\x33\x89\xe4\x9a\x08\x3b\xd5\x0d\xbd\xbf\xbf\x7a\x7b\x6a\x02\x4b\x24\x7b\x5e\x88\xad\x10\xf2\x2a\x5a\x89\xf2\x47\x09\x63\x17\x34\xea\xe5\xe9\x1f\x61\xb3\x25\x18\x5f\x89\xa7\x44\x92\xf1\x95\x70\x4a\xa4\xa5\x5e\xd0\xaf\xcf\x36\x5c\x15\x8e\x5a\x9a\x70\x62\xe4\x31\x1e\xe7\x05\xa5\xf9\x94\xe3\xda\xa2\xd2\xfc\x59\x45\x28\xcd\x43\x22\xf4\x05\xa5\x79\xd3\x93\x7e\x25\x58\x5a\xca\x6c\x63\x25\xb2\x15\x53\xdd\xd3\x23\xc3\x23\x85\xdb\xba\x74\xa4\x2b\xd1\x42\x3f\xab\x4d\xb2\x07\x92\xbd\xad\x4c\x8c\xe6\xd5\xbd\xa0\xc2\x6e\x92\x8b\xac\x4c\xd9\xbf\x64\x18\x0b\x2a\xec\x9c\x9f\x0f\x2b\x0b\xbb\x40\x84\x01\x7c\x0a\x81\x6f\x7c\x44\xac\x0c\xaf\x8b\xe9\x32\xf8\x97\x17\xb2\x4e\x0b\xba\xe6\xac\x47\xfb\x82\x02\xb9\x30\x4f\xd6\x81\x40\x4f\xa6\xcb\xc0\x81\xc8\xff\x6c\x41\xbb\x3c\xa7\x87\x4a\x51\x8c\x84\x2f\x2b\xc3\xb3\xa6\x0a\xfd\x32\x88\x8d\x51\x05\x2a\xe3\x3c\xdd\x07\x6c\x61\xe4\x9b\xba\x32\xfd\x63\x84\x1b\x8c\xcb\x20\x7d\xe6\x82\xfe\x76\x3e\x6d\xf2\x2e\x25\xfb\xbd\x32\x65\xf1\xcd\x5d\x20\xda\x82\x0c\xba\x16\xa3\x2d\xd8\x09\x63\x15\x4a\x2d\xf4\x4e\x5d\xc5\x56\x03\x3f\x24\xd3\xab\xf0\x1e\xce\xfe\x10\xf2\x5f\x3d\x87\x16\x94\xb6\xb3\xf1\x22\x5a\xd0\xa9\x36\x29\x86\x17\x74\xaa\x87\xbe\xaa\x2a\xb8\xe5\xae\x3d\x2f\x7c\xc5\x8a\x43\x5c\x85\x61\xd1\x34\x4d\x28\x55\x27\x83\x79\x1e\x08\xc1\x20\x42\x13\x39\xdb\x13\xf2\x8d\x5f\x8c\xe2\x70\x79\x92\x67\xc9\x67\xf6\x68\x28\x0d\xb9\x34\x1a\x4a\x43\xe4\x0d\xbd\x0a\xce\x43\xb8\x0b\x9e\x87\x56\xfd\x25\x4c\x7f\x85\xbb\x85\xe9\x12\x3d\x63\x5e\xd3\x8c\x36\x74\xc0\xfd\x64\x54\x3a\xd0\x0b\x51\x39\x5d\xa6\x40\xd7\x6e\xe7\xa0\x87\x58\xdb\x55\x40\xab\xa6\xa8\x4c\x81\x85\x5f\x79\x20\xaa\xf7\x0d\xc1\xb9\x40\x54\x06\xc1\x21\xaa\xe9\x11\x54\xac\xf3\xf2\xba\x6d\x3c\x56\x44\x00\x10\xfe\x41\xe9\x9d\x0e\xc4\x29\x3e\x20\x12\x3a\xf1\x4d\xbf\xaa\xc2\x08\x0c\x41\x48\x47\x94\x5c\x76\xf3\xc3\x29\x10\x6e\x18\x7c\xd3\xaf\xca\x00\x62\xcd\x50\x7b\x72\x46\x1d\xa8\x23\x92\xb3\x9a\x09\x3a\x7a\x34\x41\x0b\x8c\x98\x3a\xe4\x21\x33\x1d\xab\x70\x5f\x4b\x1e\x29\xee\x06\xc5\x22\x59\x48\xed\x37\x9f\x71\x6b\xdf\x44\xab\xa0\x45\x6d\xdd\xfd\x83\x8e\x75\x4f\x6a\x11\x71\xa7\xbf\x1c\x4f\x42\xab\x03\x31\x0f\xd7\x74\x27\x30\x78\xac\xfe\x12\x91\x07\x9f\x32\xc6\xda\x73\x1f\xb4\xae\x17\xcd\xa9\x74\x97\x7c\xc6\x0a\x81\x1f\x1f\xf9\xab\x32\x62\x98\xc8\x63\xa5\x8c\xab\x89\xcc\x40\xff\x5a\x7c\xa7\x57\xbc\xc0\xa5\x29\x5c\x50\xb8\xd6\x24\x92\x5f\x61\x35\xa4\xb8\x30\xab\x6e\x4a\xad\xb5\x70\x9b\xab\xea\xef\xb8\xaa\xde\x2a\xd0\x0e\x3d\x2e\x96\x34\xb5\xed\xe9\x11\xe7\xc8\x4b\x2e\xda\xc1\x57\xef\x92\xaa\x56\xfe\xd1\x8b\xaa\x5a\x3d\x44\x56\xe3\x63\x4e\x38\xd7\x84\x65\xa2\x88\x0a\x64\xa1\x55\x46\xb0\x8a\x62\x7e\x00\xe1\x28\xb2\x11\x82\xe1\x28\xfa\x30\xc4\x43\xf6\xf4\x81\x35\x6f\xfe\x10\xec\x6e\xf5\xe0\x10\xa6\x51\x1c\x4f\x0b\x0d\xd5\x20\x03\x8a\x6a\xe0\xb4\xb1\xec\xfa\x10\x1c\x66\xf6\xd8\x60\x52\x24\xa1\xda\x6a\xb0\x61\x56\xc8\x87\xd5\xc0\x7d\x16\x11\x92\xc6\x98\xf0\x0c\x1a\x7a\xc0\x85\x66\xd4\x21\xf3\x3c\x8a\xc8\x51\xc7\x9b\xe4\xe6\xbc\x10\xaa\xa2\x48\x38\xb7\xa0\xe4\x0d\xb1\x78\x8d\x2a\x15\x51\x2e\x68\x75\x47\xb8\x07\xbe\xec\x7b\xfa\x31\x4f\xbd\xa0\xf2\x9d\xcf\x82\x93\x00\xf9\xd6\x6f\xbc\x67\x44\x9e\x11\x80\x42\x49\xdc\x0e\x04\xf7\x61\x11\x27\x05\xa0\xe8\xd9\x55\x3b\xb6\x4a\x63\xa5\xe4\xb4\xeb\x0c\x42\x77\x9c\x53\x75\xd5\x00\x7f\x62\x88\x2a\x51\xb6\xda\x89\x47\x5d\x5d\x76\x66\x33\x15\xf7\x40\x85\x30\x03\xac\x1e\xa8\xa0\xcc\x10\x24\x52\x7c\xc4\xad\x3e\x35\x38\x83\x88\x3b\x20\x7e\xb4\x33\xb7\xa3\xc6\xd6\x19\x93\x5d\x37\x2b\xb5\xc5\x49\x96\x62\xab\x33\x81\x60\xf5\xe0\xde\xe8\x51\x63\xc3\xdd\x25\x73\x98\x85\xa4\xa1\x99\x39\xb4\x0e\x04\xc3\x69\xdd\x5c\x08\x49\xd1\xe5\xb2\xb7\xa8\x2d\x4e\xbd\x68\x6c\x30\x4d\x9b\xee\x1f\x8e\x77\x8a\x96\xb1\xa0\x20\xee\x97\xd7\x66\x61\xc2\xee\xe2\x10\xb2\x2e\xa7\xcc\x85\xb8\x12\x45\xbe\x7d\xab\x33\x69\x57\x31\xb4\x51\x53\x3d\xe0\x25\x28\x13\xd3\x85\x28\x13\xdd\x97\x23\x54\xbe\xdd\xfc\x08\x74\xb3\x59\xee\xb3\x4b\xba\xd9\xee\x15\x66\x8c\x21\x9d\xa9\xbe\x31\x50\x77\x4f\xda\xd0\x75\x8a\xa0\x7e\xcd\x92\x94\x2f\x84\x72\xe8\xd2\x1b\xad\xa1\xc0\xe6\xaa\xc9\x8c\x23\xda\x35\xc6\x63\x50\xcc\xb4\xc5\xec\xba\xb2\xb0\x58\xd0\xb7\x56\x5f\xdc\x83\x51\x63\xc4\xc7\x0d\x2d\x77\x08\x9a\x18\x9a\xbf\xe3\xfe\x6a\x81\x07\x63\xcd\x55\x77\xcf\x53\x34\xdc\x3f\xc4\xcf\xc3\x85\xd8\x7c\x5d\xf1\x83\x7b\xc1\x77\xf9\x62\x90\x87\xd4\x45\xa9\xa1\x35\xcd\xe6\x07\xa1\x18\xad\x49\xb7\x01\x62\x3e\x28\xf1\x66\x5b\x4c\xf8\x6b\x0e\x98\xa1\x12\x92\x04\xb9\x0b\xb1\x12\x6a\x16\x9e\x32\x00\x82\x7c\xa6\x16\x03\x20\x24\xa9\x51\x16\x54\x9a\x65\xe8\x56\x9b\xf2\x03\x11\xa2\x32\x04\xc2\xc8\x86\x28\x41\x31\x84\x20\x71\x1a\x2a\xd4\x9d\x5d\xc2\xb3\x05\x75\x67\x37\x57\x07\x75\x67\x37\x5f\x89\x28\x07\x5d\xb2\xc3\xc5\x28\x07\x4a\x49\x75\x40\x2c\x4e\x31\x04\x22\x1e\xfe\x90\x79\xe1\xd4\x28\x7c\x49\x8b\xbb\x60\xb4\x02\xdd\x4d\x93\x4b\x2c\xd6\x70\x72\x89\x87\xf6\x91\x19\x71\x7d\xa7\x32\x78\x81\xbc\xc2\x16\xb5\x88\x45\xab\x38\x89\xd3\x3a\x0b\xd2\x22\x0e\x4f\x7f\xe3\x10\x89\xff\x60\x0e\x8a\x34\x74\x32\xa9\x46\x94\x93\xcc\x42\x2c\x81\x2e\xc9\xe6\x82\x86\xaf\x4b\x06\xba\xa0\xe0\x9b\xb9\x19\xa2\xdb\x7d\x15\x84\x8c\x72\xe2\x05\x83\xd8\xff\x1b\x62\x7c\x2c\x38\xf3\x77\xc9\x12\x57\x30\x80\xb4\x9b\x59\x98\x94\x08\x2a\xb4\x6f\x43\x96\x80\x0b\xda\xb7\x7e\x15\xd7\x5c\xb0\x0c\x32\x74\x1e\xd8\x72\x35\x59\x50\x85\x55\x49\xff\x17\x54\x61\x5d\x02\xc2\x05\x4d\x58\x91\x9a\x6c\x41\x13\xd6\x25\xa0\x5b\x50\x76\xf5\x67\x2c\x40\x4c\xef\xd3\x62\xa0\x1e\x8a\x96\x16\xe2\xff\x67\x99\x93\x2f\xb8\x9c\x77\x2f\x0c\xb4\x4b\x91\x45\x08\xe0\xf3\xdd\x25\x82\x5c\x8b\x9b\xa6\x17\x25\xd4\x49\x45\x0e\x0b\x8b\xb1\xf2\x93\x42\xb6\x2d\xe8\x93\x7a\xeb\x6a\x74\x03\x83\x25\xce\x58\x60\x76\x25\xc8\x5c\x8b\x44\xaa\x1a\x02\x91\x52\xe4\xb1\x45\x8f\xf0\x34\x35\x29\xa8\x97\xb2\x22\x21\xad\xcd\x8b\x47\x28\x4c\x2f\x6f\xd9\x56\x2c\x68\x89\x8a\x22\x3e\xac\x4d\x2a\xa5\xad\x70\x78\xfa\x6e\x10\xd8\xa6\x1b\x7c\xcb\x79\xae\x1b\xec\x28\x54\xff\x81\xc5\xd1\x09\xde\xa4\x61\x22\xbd\xd0\x21\x75\xc9\x24\x17\x14\x43\x5d\x92\xcd\xb5\x99\x72\x99\x32\xa2\xc5\xa8\xf3\x49\x21\xb3\xd6\xe6\x89\xd2\xde\xec\xc5\x0e\xd5\x05\x53\x1e\x0c\xd7\x04\x25\x9a\xc3\xad\x72\xe3\x54\xb8\x71\xf6\x85\xed\x50\xfe\x84\x02\x68\x2d\x44\x7d\x8f\xac\xbb\x06\x1e\xd8\x21\x8f\xb8\x05\x75\x4b\x28\x8a\xc7\x7a\x91\xba\x74\x43\xec\x30\x5c\x95\xcd\x54\x41\x2f\x44\xde\x13\xc4\x85\xd2\x14\x5f\x24\xf6\x5a\x44\x25\xcb\x0d\xf7\x88\xc4\xe8\x52\x9a\x2d\xb8\x47\x87\xbc\x35\x17\x54\x23\x91\x75\x9f\x40\xdf\x31\x4d\x16\x18\xcb\x3c\xf9\x81\xfd\x22\x36\x8a\xb7\x61\x2c\xf3\x64\x1e\x09\xb1\xcc\xab\x9c\x44\xd6\x8b\x07\x45\xd8\xf8\xa2\x1f\xbb\x9e\x05\x6f\xd2\x0c\x71\xb3\x50\x54\x84\x42\x2c\x2c\xa9\x1f\xb4\xfb\x6f\x52\xd7\xe1\x32\xec\x62\x68\xdf\xde\xa4\xae\x12\xb5\xc1\x21\x38\xcb\xb0\x7b\xc1\x21\xb8\x96\xe7\xc3\xce\x0f\xd5\x23\x42\x87\xfb\xe9\xf3\xa6\xd1\xda\x74\x19\x78\xb2\xa7\x7f\x1c\x46\xa1\x0d\x13\x97\x8e\xec\xef\x10\x3a\xbc\xb9\x0b\x58\x56\x57\x97\xdd\xec\xd0\xcd\xc0\xcb\xd6\x23\x25\xcd\x12\x4a\xc1\x21\x58\xd9\xb4\x0e\x04\x2f\x3b\x5d\xd9\x50\x72\x74\xf3\x16\xf4\x07\x36\xf2\x41\x8d\x91\xe4\x04\xb3\xa0\xc6\xc8\xbe\xb0\xa1\xc6\x98\x72\xab\x5b\x6f\x9a\x36\x8a\x77\x54\x5e\x51\x1d\x21\xf8\xf8\x36\xe9\x7e\x16\x7d\x7c\x95\x42\xe7\x80\x5c\xe0\x1f\x66\x74\x39\x55\x2b\xbf\x74\x27\xc8\x99\xeb\xfd\xc6\xee\x9b\xd5\xa0\x93\x6f\x0a\x2f\x2a\x93\x7a\x3c\x1f\x22\x9e\x94\x77\x71\x73\x19\xbd\x8d\x1b\x22\x0b\x31\x10\xc8\x1f\xaa\xe4\xc9\x07\x4a\x08\x44\x55\x04\x71\x22\x5a\x71\xa8\x4e\x8a\x54\x19\x0b\xaa\x93\x26\x43\xef\x05\xd5\x49\x95\x19\xf2\xba\x29\xb2\xf1\x53\x03\x21\xc9\xab\x22\xec\x2c\x44\x24\x2f\xb2\xee\x5b\x70\x1d\x8e\xe6\xa2\xc5\xef\x3c\x1a\x28\xc3\xb2\x5b\x79\xe1\x71\xef\xef\x18\x0d\x5b\x65\xd0\xb9\x84\xce\xdb\x4d\x49\x8f\x9c\xc2\x16\xdc\x8a\x9b\x1c\x19\xd6\x2d\x2c\xd6\x96\xdf\xc4\xe2\xee\x76\xe0\x03\x20\xde\x12\x3e\xc7\xb5\x3d\x35\xf1\xd4\x4d\x86\xe0\x77\x25\x72\xcf\xdc\x9f\x7e\xcb\xdd\x8a\x55\xad\x91\x06\xd3\xd3\x6a\x4e\x94\x3b\xcb\x98\x7f\x29\xf9\xa7\x58\x0d\x28\x84\x4a\xf1\x7a\x33\x33\x8d\xb0\x8a\x0a\x21\xdf\xdf\x50\x08\x15\x19\x88\x2f\x28\x84\x5a\x3c\x65\x1d\x96\xdd\x5a\x0c\xc8\x12\x9e\x2d\x5d\x8c\xa2\xae\x32\xc8\xab\x2d\x03\xa2\xe2\x46\x81\x41\x16\xf4\x36\x35\xe9\x3e\x65\xb8\xf1\xf0\x74\x99\xa8\x23\xb9\x15\x86\x42\x0f\x57\x9d\x18\x8c\x66\x8f\xd7\x59\xd6\x11\x46\xd6\xcc\x2c\x7f\x80\x75\x13\x31\x93\x6b\x7e\x20\x92\x26\xf4\x51\x54\xa4\x2a\x88\x44\x52\xf4\x1c\x41\xcc\x73\xd2\x23\x87\x41\xcc\x65\x03\xb1\x90\x1a\x33\x8f\x69\x08\xba\xd6\xcb\x8d\x22\xca\xa2\x9e\x27\x0c\x62\x6e\x2e\x97\xde\xc7\xd9\x0f\x40\x68\x95\x92\x9c\xc3\x16\x14\x47\xb5\xb8\x0b\x50\x29\x0b\xc4\xa0\xf1\xc9\xd2\xc4\x2e\x28\x7c\x52\xf6\xd0\xb8\xbd\x7e\x66\xd0\x51\xf8\xa9\xca\x58\x27\x62\xc8\xe1\x27\x7c\xaa\x0e\x81\x38\x5e\xd5\xed\x20\xb7\xeb\x70\x19\x0c\x50\x25\x57\x81\xa3\xf0\x94\xcd\xf3\x62\x9c\xf2\x2a\x4e\x1a\x7e\xc2\x53\x36\x9e\x0b\x7e\xc2\xa7\x0b\xcd\x1f\xf4\xcd\xd2\x3a\x38\x0a\xcf\xd4\xdd\xcc\x9b\x55\xb5\x38\xe7\x95\xd7\xe4\xe4\xb2\x18\xc5\x3c\xfb\x7d\x06\x5f\xe1\x26\x57\x9d\xf5\xa1\x84\xde\x7d\x20\x11\xab\x9c\xe8\x17\x5d\x7e\xb3\xdf\x39\xd0\x4e\x29\x55\xfb\x81\x28\xa1\x76\x19\x93\x6f\x68\xe4\x9b\xc1\x6e\x34\x7f\xba\xfc\x16\x43\x08\xc5\x43\xe6\x75\xd3\xe5\x37\xeb\x61\xb1\xa9\xba\xd2\xf1\xde\x17\xcd\xbc\xd9\xcc\xa6\x57\x6f\x16\xbb\xbe\xa1\xba\xca\x69\xfc\xd8\xc9\x65\x43\xaf\x35\x65\x82\xb6\xe1\xf1\x3b\xc5\x4f\xee\x8b\x0c\x3a\x45\x60\x1b\x3a\xaf\x2a\x11\xf4\x86\xce\x6b\x2a\xa4\xc3\xa6\xce\x2b\xeb\xd5\xb3\x2f\x46\x1a\x0c\x0f\x1c\xa6\xd4\xdd\x1f\x7e\x9e\x34\xf6\x6d\x33\x6c\xba\xe3\x84\x6c\xaa\xc7\x0a\xd7\x7f\xd3\xad\xb7\x79\x6c\xe4\xfa\xbb\xcb\x30\xc5\xe7\x3b\xee\x46\x71\x21\x1c\x39\x9b\x56\x83\x41\x63\xa4\x03\xdb\x88\xa2\x5e\xca\x03\x6d\x16\x7a\x3c\xe0\x20\xbb\x0b\x81\x3a\x59\x9d\xc0\x06\x50\xaf\xa7\x7d\x09\xc9\xab\x0b\x99\x45\x5c\x6b\x05\x2a\x26\xf3\xe8\x4d\x2f\xdf\x2c\xf6\x7e\xc3\xcd\xb7\x26\x0f\x00\x4a\x21\xe6\x65\x6c\xfb\x62\xe0\xfc\x4b\xcb\x0a\x7d\x28\x73\xe3\x1e\x08\xf6\x3b\x4d\xfd\x33\xdf\x4b\xb8\x0c\x09\x4e\xb2\xda\xa4\xe5\xc9\x74\x9b\x74\xb1\x73\x9b\x78\x66\x3e\x65\xc8\x34\xd7\xb4\x6e\x74\x39\x19\x6e\xe5\x83\xab\x97\xab\x98\xe8\x8f\x40\xf2\xb3\x13\xbd\xd8\xc8\x31\xee\xa4\xdb\xb5\x0a\x42\x28\x00\x52\x9f\x0d\xa7\xda\x22\x53\xb5\x0d\xa7\xda\x22\xe7\xbf\x9d\x98\x08\x4b\x2b\x91\x98\xf6\x92\x47\x71\x43\x05\x58\xea\xd3\x1f\xac\x29\x74\x32\xa0\x01\x6c\xa2\xd2\x9b\x0a\x40\xb9\x82\x6e\x46\x5e\x97\xc6\x6f\xd3\x4f\x36\xdc\x3b\xef\x2f\xed\x6e\x12\x7d\x1b\x2a\x5c\x74\x3e\x57\x21\x42\xb6\x28\xf0\xfa\xa6\x02\x30\x0f\x35\x0a\xcb\x60\xf9\x09\x6d\xe8\xff\x86\x62\xe2\x6c\x86\x68\xef\xee\x02\x76\xe1\x72\x05\xda\xf4\x99\xb5\x88\x63\xc3\x67\x36\x14\x67\x6d\x43\x39\x38\x65\x9a\xba\x93\x88\xd6\x70\xff\x78\xa0\x3d\x55\xe1\x8b\xe4\xaa\x9b\x47\x68\x68\xa5\x28\x0c\x4f\xfa\x90\x0a\x0f\xaf\xd4\x86\xe9\x56\x75\x19\x14\xfa\xc2\xae\x2c\x6a\x43\xb1\xf5\x86\x5a\xb1\x48\x37\xb5\xa1\x56\x2c\x7a\xd8\x6d\x04\x7b\x6f\xd2\x8c\xef\x4c\xab\x5d\x3e\x1e\x77\xa6\xd5\x2e\xd9\xde\x0d\x0f\xd6\xd6\xf8\xe8\xdb\xf0\x60\x6d\x22\x8b\x1b\x3e\xaa\xc9\xd3\xa7\x8f\xaa\x6f\xc9\x0d\x27\xd5\xf6\x74\x8f\xe3\x3d\x9e\x46\x31\x0b\xe1\x2c\x75\x8c\x72\xf7\xda\x99\xc6\x61\x22\x8b\xf9\x6c\xe2\x60\xfe\x88\xc6\xa4\xaf\x8d\xe9\x39\x1b\x73\xbe\x36\xbd\x8e\x37\xc3\xc0\x3f\x93\xe7\xed\x92\x92\x0b\x61\x1a\xd8\x35\x5f\x1a\x74\x77\x57\x45\x90\x80\xa4\x32\x5a\xdb\x8a\x46\xd3\xef\xd4\x21\xe0\x36\x74\x93\xb5\x78\xfa\x60\x90\xf3\x61\x19\x7e\x48\xa4\x33\xcd\x08\x3d\x0f\xa8\xb4\x72\xd2\x41\x41\x44\xf9\x26\x47\xd0\x0d\x07\xd6\xf0\xe0\x60\x09\x21\xad\xd5\xa6\x8f\xaa\xd2\xda\x1e\x90\x19\x10\xd9\x28\x55\x9c\xca\x51\x76\x40\x4e\xa4\x09\x82\x91\xa1\x90\xba\xc0\xdc\x41\x52\xea\x4d\xe7\x4f\xa9\x4d\x76\x21\x9f\x29\x0c\x2b\xf4\xae\x10\xad\x29\x34\x93\x16\x89\x84\x23\x66\x93\x2e\x7e\xd3\xd7\x52\x61\xfd\x76\x51\x06\xc2\x66\x10\xa1\x10\x86\x1b\x0d\x16\x6a\x34\xb4\x93\x4e\x86\xc0\xcf\x88\xbe\x14\xa5\x60\x35\x04\x45\xbd\x0e\x78\x61\x98\x82\xe4\x29\xe2\x76\x97\x94\x7e\x17\x06\xcb\x14\xc2\xd1\xdb\xd2\x11\xe6\x37\x15\x85\x92\xa0\xef\x4a\xa3\x65\x9d\x3e\xea\x02\xb3\xce\x1b\x74\x81\x21\xe6\x6e\x43\x17\x58\x64\x1a\xb0\xa1\xfc\x4b\x0a\x4b\xb1\xab\xd0\x7f\x1a\xc4\xcb\x4e\x24\xad\xc2\xd9\x41\x21\x33\x36\x1d\x23\xdb\xd3\xcc\x8d\xee\x35\x18\x2e\xb1\x1b\x5d\x6c\x34\x5c\xc8\x91\xaa\x51\xba\x30\x88\x16\x51\x87\x97\xa5\x35\xde\x95\xd9\xf4\xba\xab\xc2\xf6\xfa\x29\x43\x8e\x55\x4a\xc3\x36\xd4\x74\x4d\x26\x2c\x1b\xba\xb7\x26\xe1\xe3\xae\x44\x3f\x6d\x3f\xb4\x64\x4d\x9a\xc0\x5d\x95\x5a\x42\x37\x08\xb4\x5b\x5d\x8c\xd7\x6e\x34\x31\xd5\x69\x6c\xc4\x37\xdd\x5f\x88\xa7\x5e\x92\xee\x64\xa8\xac\x42\x2a\x9b\x4d\x5d\x93\x5e\x39\xbb\x69\xa1\xd4\x26\xec\x8b\x9f\xcb\xa6\xd1\xbe\x58\x14\x0d\x1a\xa4\x26\x1d\xdd\x66\x74\xf3\x2c\x7b\xee\xdd\x78\xfc\xa7\x21\x1c\x7f\xb1\x41\x8d\xd6\xdd\xda\xb6\xc6\xe9\xeb\xb6\xa1\xc6\x26\xcb\xa8\x74\x43\x63\x13\x49\xe4\x16\x1a\x9b\x66\xde\xa6\x33\x62\x4b\xd6\x29\x82\xca\x66\x2a\x64\xc1\xee\xb2\xdb\xe5\x3c\xa0\x32\x09\x45\x1d\xdb\x54\x99\x64\x19\xaa\x6c\x7a\xd8\x35\xdd\x4c\x9d\x73\xf4\x87\xd0\xe8\xcb\xf1\x67\xc3\x4f\x2e\x14\xaa\x75\x77\xd2\x10\x2d\x23\x3c\xd1\xc2\xa4\x18\xca\x8e\x94\x4b\xd2\xac\xa0\x34\x57\xd8\xe0\xcd\x60\xd8\x59\x81\x68\x36\x3c\xd1\xa6\x02\x69\xee\x41\xeb\x7e\xe1\x0d\x14\x1a\x53\xe1\xba\xf6\x20\xc7\x28\xd7\xc0\x3d\x98\x4b\x4e\x94\x0a\x1a\x8d\x29\x73\xd8\x0d\x8d\x46\xca\x32\xfc\xdb\x50\x69\x84\xfc\x90\x36\x34\x13\xdd\xa7\x98\xc1\xa8\xb3\x2c\x24\xf7\x60\xc8\xdf\xec\x0f\x6f\x44\x4c\xe0\xca\xc1\xf3\xab\x4a\x56\xb8\xe9\xf9\x95\x8b\x21\x38\x89\x4f\x43\xd0\x91\xcd\x1f\x26\x48\x3c\x55\x19\x37\xd9\x5d\x20\xe6\xa4\xb6\x11\x8e\x5f\x69\x78\x35\x88\x63\xa5\x6a\xe0\xb0\x84\x98\x5a\x46\x06\xb1\xce\x97\xcb\x60\x23\xe7\x59\x40\x1e\x67\x96\x02\x31\xac\xf3\x15\x2e\xcb\x48\x10\xa4\x56\x98\x34\xc3\xdd\x83\xfa\x3d\x45\x03\xa1\x75\x34\x4e\x46\x2d\xd7\xc5\x04\x7f\xb1\x9c\x75\x2f\xd0\x5f\xcc\x7e\xa8\xcc\x85\x9e\x1c\x3d\x42\xc9\xd0\x65\x34\xc4\x64\xe8\x45\x11\x09\x99\x0b\xdd\xae\x2e\x1b\xca\x95\xe4\x18\x78\x7b\xd2\xf6\x48\xc3\x51\xf0\x69\xca\x26\x99\x36\x3d\x39\xb4\x03\xf3\xa6\x17\x85\x6b\x60\x36\xf4\x32\x9f\xfe\x71\xfc\x8a\x9a\x81\xa8\x50\x2e\x93\x4c\x78\xde\x64\x17\xc6\x9c\xe6\x4d\x19\x44\x98\xd3\x3c\x9b\xdc\x30\xa7\x79\x17\x7d\x65\x4e\x73\x87\x0a\x65\x4e\xf3\x2c\x2f\x38\xe6\x34\x6f\xca\x73\xa3\x9c\xe6\x26\xbe\x53\xd6\x4e\x6e\x06\xc9\x8a\xaa\xbb\x7f\x43\xfa\xac\x9a\x48\x98\x22\xa7\x1c\xa5\x26\x57\x0c\x08\x66\x26\xaf\x72\x6d\x62\xba\xf1\x59\x3d\xf9\x45\xf4\xd6\xc1\x80\x33\x59\x99\x4f\xa3\x8c\x45\x2b\x88\x9c\x48\x31\x44\xf4\xd6\xa5\x01\x5d\xcf\x54\x00\x38\x66\x14\x1f\xd3\x23\x25\x29\x10\x79\x87\x4f\x58\x52\x1e\x02\xe5\x05\x57\x6c\xcc\x0d\x4d\xcf\x54\xf2\x9a\xcd\x48\xd0\x59\x21\x69\x36\x43\x41\xcb\x1e\x96\x69\xc2\x43\xa6\x04\x4c\x13\xde\xda\xd3\x0c\x45\x83\xae\x09\x2d\xa0\x78\x1b\xf9\x79\x89\xd8\x40\xef\x93\xa5\x88\x50\xae\x6d\x87\x36\x62\xb2\xed\x90\xb3\x24\x73\x6d\x87\x9f\xb5\xc1\x9b\xa0\x1a\xc2\x45\x54\x5d\x13\xa6\x44\xe2\x58\x82\x52\x0e\xd9\xe1\x31\xa1\x76\x6b\xee\x11\x44\x42\xb6\xca\x1b\x4e\x60\x63\x3c\x1f\x6e\x48\x07\x34\x6e\xdd\x98\x1a\x37\xc3\x34\xfb\x3b\x1c\x4b\x3f\x55\xa1\x69\xca\xf3\xa9\xc9\xd8\x49\x94\x55\x6c\x3a\x5d\x49\xd7\xb2\xe9\x74\x95\xab\xd7\x86\x6e\xe7\x62\x67\xe0\x74\x35\x24\xd0\xde\xd4\x43\x49\xac\xb3\x83\xa1\xe5\x75\xbc\x02\x19\x0b\xfc\x38\x64\x24\x68\x49\x5b\x99\xdd\x7b\x4a\x0f\xa3\xec\xde\x53\x7c\x3e\x3c\xb7\x9a\xfc\x0a\xf7\x62\x1c\x01\x8d\x65\x51\xfe\x20\x8f\x34\x66\xfe\x2e\x49\x68\xaa\xe4\xde\xd3\x65\x88\x4a\x2e\x62\x8e\x78\xce\xad\x4f\x43\x50\x98\x69\xbe\x08\xe0\x9c\x15\xb2\x9b\x39\xb9\x9b\x24\xc8\xca\xc9\x9d\x15\x2c\x83\x49\xb9\x73\xfd\x0d\x91\xa7\x99\xb1\xbb\xe6\xe2\x56\x11\x27\x54\x17\xd6\xc2\xab\xa3\x7b\xa4\x20\x04\xd5\x63\xe3\x4d\x6b\xea\xb6\x64\x9c\xe0\xe1\x20\x38\xd4\xf3\xe1\x66\x55\x17\x42\x54\x77\xb9\xc7\x37\x0b\xdd\x2c\x42\x09\x3c\x03\x80\xf3\x83\x10\x15\x11\xa4\x9b\x4f\xc6\xa2\x45\x96\x18\x0f\xf8\xa3\x25\x9f\x0c\x68\x0c\x6b\x0f\x7f\xc7\x9b\x56\x6b\x43\xa2\x61\x86\x4d\x89\xb8\xc5\xcb\x42\x81\xd8\x94\x9e\x40\xc9\xb6\xed\x52\xc1\x64\xdb\x4d\x96\x54\x1b\xfe\x68\x45\x96\xa5\x7b\xd1\x69\xe1\x69\x06\x31\x14\x45\x24\x17\xdc\x60\x14\x31\x7b\x33\xda\x74\x17\x09\xa3\x72\x31\x2b\x1e\x06\x13\x63\x67\xbf\xf3\xe8\x74\xe6\x15\xdf\xdc\xf1\x30\x04\x83\x3c\x91\x90\xcd\x0d\x6f\x2e\x63\xa6\x79\x43\xc0\x29\x2d\x06\x9c\xc5\xa6\xe2\x21\x30\x15\xf5\x98\x62\x7b\xa0\x13\x0c\x19\xa3\x30\x13\xf5\x50\xb8\x3b\x26\xa2\x1e\xa1\xe5\x46\xb2\xe9\xd6\xc3\x10\x58\x22\x09\x23\x99\x6c\xba\xf5\xf0\x87\xdc\x7d\x61\x2a\x3c\xc9\x66\xd6\x8b\x0c\x29\xa4\xa7\x5f\x4b\x9b\xf6\xee\x49\x1f\xea\xf0\x6b\xa5\x36\xd3\x4a\x78\xc2\x4c\xda\x26\x5e\x12\xbe\x63\xd9\xbc\x14\xbc\xc5\x5a\xf6\x42\xd1\x1c\x42\x7c\xc6\x4b\x61\x24\x0c\xd1\x4d\x23\x09\xca\xf0\x9c\x33\x04\xba\x24\x7a\x02\xbf\xb2\x2c\x4f\xc1\x0d\x05\x65\x53\xa8\x4f\xe6\x96\x4e\x59\xae\xd1\x4c\x2e\x6d\x8f\xfa\xfd\x62\x64\x34\xdd\x9e\x88\x02\x5d\x14\x0c\x48\x19\xa3\xb3\xdc\x9f\x99\x32\xba\x15\xcd\xe2\xc5\x23\x2d\xc7\xdd\x0d\xff\xb0\x34\xdc\x07\x85\x05\xb2\xce\xdc\x0c\x20\x2d\x73\x98\xcd\x00\xd2\x59\x0e\xc0\xcc\x3d\x9d\xbc\x1d\x54\x7c\x4a\x45\xc8\xfc\xd2\x49\x1a\x23\x66\x94\x4e\xd5\x03\x60\xcc\x5e\xd7\x84\x20\x67\xb8\x26\xdc\x89\xc2\x63\xc3\xfb\x54\xba\x9d\xfd\x5a\x92\x36\xaa\xfb\x45\x91\x93\x3f\x5c\x80\x34\xd2\x45\x3b\xa9\x4b\xd0\xcd\x0f\x5d\x08\xb1\x8e\x08\x03\xfd\xcc\xb2\x6c\x8e\x99\x44\xba\x64\x5d\xe0\x2f\xde\xe7\xf2\x6a\x65\x12\xe9\x30\xbf\xc8\x1c\xd2\xb9\x79\x97\x99\x8e\xee\x81\x02\xc9\xa1\x34\x74\xc6\x9e\x16\xa1\x62\x5e\xe8\x2c\xe7\x49\xe6\x85\xee\x72\xea\xd8\xd4\xd1\xfa\x15\x86\x48\xd0\x21\x4b\x83\xfd\x26\xc7\x66\x3e\x0c\x91\xa0\x87\x79\x34\xa8\x73\xa7\x99\x70\xf8\x9d\x9d\xaa\xbf\x81\x9b\x86\x57\xda\xf4\xfb\x91\x5e\x69\x59\x5a\x15\xe6\x94\x6e\x21\xe2\xc8\x38\xd1\x59\x06\xca\x4a\x2a\xad\x28\x9b\xcc\x29\x9d\xa4\xaa\x51\x4e\xe9\x6c\x0e\xe7\xcd\x60\x91\xcd\xad\x42\x60\x37\xfd\xe1\x00\x34\x04\x41\x1b\x34\x5d\x13\xee\xb2\xa2\x63\x4c\x14\xad\x70\xe3\x1b\x7e\x6a\x4d\xe1\x4f\xf7\x9b\xb1\x78\x75\x3c\xdf\x94\x1b\x5b\x44\x02\xfd\x6e\x91\x45\x2c\x73\x43\x9f\x42\x83\x30\x96\x4b\x6e\x95\x16\x5a\x2e\x63\x44\x10\x37\xc3\xad\xf3\x70\x68\x59\x2b\x8c\x84\x9f\x5a\xb6\x00\x98\x31\x9d\x4d\x80\xa1\xef\xad\x59\x97\xec\x5b\x78\xd5\x0c\xe2\x76\xb8\xfc\xe1\x00\xa4\x75\x23\x67\x68\x71\xda\x5b\x82\x46\x4d\x99\x02\x68\x4b\x9e\xde\x44\x2c\xb1\x51\x6f\xe6\x1e\x91\xc8\x00\x5a\xdb\x22\xb3\x98\x0d\xad\x6d\xf5\x31\xbf\x69\x84\x2d\x0c\x64\x4c\xe7\x6c\x91\x1d\x1d\xde\xfc\x48\x64\x22\x69\x45\x32\x61\x1e\xe9\x53\xb5\x09\xe4\xc8\x8b\x20\x50\x04\xe1\x11\xb4\xb6\xad\x3f\x3d\x22\x1a\xb3\x24\x0f\x4c\x23\xad\xd4\x17\x4c\x23\xdd\x94\x20\x88\xa9\xa1\xab\x5f\x65\xc8\x0c\x3d\xad\x8e\x80\x17\x5d\xf1\x0d\x44\xa5\xad\x9c\x8c\x98\x18\x3a\x65\x0b\xbe\x98\x19\x5a\x71\x9d\x36\x03\x45\x2b\x94\xd0\x86\xd2\xb6\x29\x93\x10\xf3\x44\x37\x3f\x92\xa8\x98\x75\x42\xc6\x0d\xcd\xec\x50\x42\xb4\x4d\xcd\x6c\xb6\xa8\xe7\xd6\xcb\x5f\xed\x2c\x86\x8e\x55\x3b\xbc\xd8\x24\x66\x87\x53\xdd\x50\xb0\x36\xa5\x7b\xbe\xbc\x35\xf0\xe3\xea\x42\x46\x26\x74\x96\xfd\x12\x53\x38\x37\xa5\x04\xda\x37\x05\x94\xa6\x15\x54\xaa\x2a\xe6\xd3\xbe\x85\x37\x5e\x62\xf0\xad\xd3\xcb\x0f\x33\x6b\x4b\x53\xa9\x62\x95\x81\x22\x93\x3f\x17\x45\x8d\x67\xf2\xe7\x26\xbf\x5f\x26\x7f\x76\xdc\x96\x0d\xbd\x69\x95\xe2\x72\x7f\xb8\xc1\xe1\x32\x98\x2e\x5e\xfe\x0e\xd9\x3c\x8a\xcb\xe4\x9a\xe7\x0f\xcf\xe3\x72\x08\xdf\xa1\x62\xed\x56\x08\x40\xc5\xda\x7d\x1d\xd3\x6f\xaf\x3c\x50\xc7\x77\x97\x20\xbc\xe7\xaa\x5b\x99\xc0\x76\xd7\x84\x75\x5e\x71\xd9\x59\x60\x65\x25\x60\xee\xe7\x6a\x31\x33\xd4\xad\xcd\x3c\x24\x35\xaa\x32\x71\x64\x7a\xe7\x6a\xd9\x11\x34\xa3\xcd\xca\x01\x46\x50\x56\x14\xb5\xfd\x21\x2b\xd8\x93\xab\xa2\xc3\xe4\x2e\x6e\x34\xaa\xee\x19\xd3\xec\x37\x04\x60\xda\x50\x93\x66\xc5\x4c\x64\x3e\xe7\x26\x2b\xfe\x0d\x6d\x67\x91\x89\xc0\xa6\xb6\x33\x5b\x74\xfa\xa1\x81\xb3\x0e\x29\xd2\x3b\x37\x99\x66\x2a\xbd\x33\xc9\x72\x67\x76\x67\xa9\xe5\x0f\x04\xdd\x04\x30\xe1\x40\x19\xa6\x15\x97\xa0\x82\x56\x5c\x93\x0b\x55\x05\x61\x69\x70\x13\x76\x26\x77\x6e\xd4\xa0\x77\x26\x77\xae\xa4\x1f\x9d\xb9\x9d\xdb\x80\xe8\xa4\x33\x7d\x73\x26\x63\xd8\x95\xbe\x39\x33\xef\x40\x67\xfa\xe6\xca\x30\x25\x07\xa2\x60\xc1\x10\xdd\x26\x34\x09\x1c\xe7\x91\x34\x6c\x3c\x19\x32\x43\x83\x75\x66\x73\x6e\x8c\x69\xd0\x99\xcc\x59\xd4\xfc\x40\xf0\xd5\xc6\xe6\x77\x25\x73\x66\x38\xd5\xce\x5c\xce\x8d\xfe\x35\x9d\xb9\x9c\x33\x9f\x5a\x9d\xb9\x9c\x1b\xd3\x1e\x74\xe6\x72\x2e\xe4\x4b\xba\x52\x39\x33\xf2\x71\x67\x2a\xe7\xc6\x5c\x29\x9d\xa9\x9c\xd3\xf4\xc8\x20\xfe\x1c\x5e\x5f\x30\x29\xc9\x23\xc3\xb9\xa7\x75\x6b\x67\xba\xe6\xda\xbb\xfa\x03\xfb\x40\xdf\x82\xce\x84\xcc\x8d\xd1\xec\xfa\x4c\x14\x23\x51\x61\x7f\x40\x9c\xa6\x51\x04\x65\x54\x9d\x82\x0a\x84\x4a\xfe\x10\xb9\x79\x9a\xcb\x88\x4f\xdd\x20\xe9\x05\xf7\x97\x41\x79\x29\x56\x39\x10\xf0\x99\x39\x8e\x0e\x88\xec\x63\xb5\x0b\xa2\x27\x9c\x9a\x39\xfb\xd4\xfb\xa8\x82\x16\x20\x7f\xf7\x06\xa4\x71\xc3\xac\x85\x46\xca\x07\x2a\x28\x6b\x82\xe0\xbd\x51\xf4\x1d\x4c\x4f\x79\x93\x1c\x08\x37\x50\x75\x19\xac\x05\xc2\x6d\x12\x49\x43\x10\x93\x0d\xba\x26\xa2\xc9\x35\xb7\x02\x4f\xa3\x30\x44\xe2\x35\xdd\x3d\x3c\x8d\x9a\x20\xd8\x78\x25\x9d\x8a\x44\x0f\x29\x61\x02\xa2\xec\xca\x97\xa6\x33\x39\x74\xca\xdd\xa3\xd9\x1c\x8d\x66\xb8\x89\x0a\x5a\x35\x6a\x92\x3d\x27\x08\xfb\x29\x00\xe9\xcc\x23\x7d\x9a\xd1\xc0\xf1\x26\xc9\x9d\x55\x33\xcf\x68\x69\x82\x90\x0a\xa7\x0c\x41\x81\x71\x1b\x7a\xa1\xa6\x21\xd0\x0b\xcd\x02\x4e\x89\x6d\xe8\x18\x32\x00\x6e\x1e\x3a\x24\x50\x2e\x66\xaf\xbe\x94\x8b\x24\x98\x9d\x09\xa9\xdb\x78\x0a\x31\xc5\xe2\x56\x31\xc5\x32\x05\x01\xc1\x86\x0e\x1b\xe3\xe1\x32\x3b\xc3\x81\x6e\x16\xba\x1d\xac\xb8\x36\x35\x33\x2a\x49\xd7\xc8\x69\xd3\x77\xb9\x0c\x61\x39\x84\xc4\x99\xca\x2e\x1f\x7d\xfa\x3a\xd2\x99\xef\x40\x1b\x78\xe3\xb2\x17\x70\xca\x65\x1c\xcd\x0f\x49\xf4\xa9\xaa\xa1\xfa\x4b\x24\x92\xf1\xac\xf8\xd2\xf0\x09\xa7\x0e\x73\x78\x1e\x8c\x66\x29\x3a\x01\x15\xe6\xa9\xea\x42\x90\x57\x9d\x22\x68\x29\x83\xbe\x2c\x9d\x79\xaf\x67\x49\xfe\x90\x93\xd4\xf9\xcf\x74\x7b\xf1\x7a\x10\xad\x9e\x0f\x61\x12\x23\x08\x0e\x94\x25\xe9\x30\xc2\x81\xb2\x31\x1f\xce\x81\x60\x3e\x20\x7a\x03\xb5\x64\x79\xca\x10\xa7\x82\x46\xc3\x9d\x99\xad\x0b\x53\xae\x1c\x08\x57\xd4\x03\x31\xa7\x50\x75\x55\xa0\x43\x55\xa3\x7a\x2f\x8a\xa0\x17\xc6\x2c\x14\xd9\x62\x48\x5a\x8a\x43\x3b\x73\x62\x9f\xaa\x53\x20\x03\x86\x0a\x62\x22\x4c\x61\x4e\xa1\x5e\x5a\x77\x46\xa1\xfc\x77\xba\x8c\x89\xe2\x0c\xc1\x6c\x77\xb8\x66\x90\xde\x09\xc2\x0d\xc2\x84\x4b\x07\x64\xa2\x5f\x77\xc8\x93\x13\x82\xe0\xcb\x34\xfc\xe1\x8d\xf7\x50\x12\x04\x29\x9f\x87\x0d\x64\x68\x22\x62\x05\x79\x8b\x8a\x70\x01\xe1\x6a\x23\x79\x2d\x20\xc7\x8c\xec\xef\x80\x0a\xcd\x35\x79\xe0\x9a\x66\x01\x23\xbb\x2b\xf9\x43\xd8\xd1\x79\x2d\xf0\x04\xe5\xab\xaa\x33\x41\x77\x24\xad\x3e\xa2\xd5\xb6\x21\x7a\xc7\x04\xdd\x59\x64\x0b\x7a\xd7\xde\xb5\x32\xd2\xbb\x8e\xee\x0f\x71\xbb\x25\x57\x85\x71\x4c\xb8\x2a\x49\xf8\x14\x04\xae\x43\x6b\x58\x19\x7f\x5b\x78\x09\xa5\x6c\xa3\xd9\xc1\x81\x16\x5a\x71\x19\xe4\xbd\x3a\x33\x70\xba\x8c\xf4\xd4\x44\x1e\x38\xad\x3d\x43\xd7\x1a\x83\xe0\x74\xd9\x98\x12\xf3\x40\xc8\x81\xda\x0d\x71\xd5\xa6\xe6\xcb\xeb\x5b\x1b\x03\x7d\x6d\xae\x5e\x19\x5e\xca\x5a\x5f\xa8\x5d\x23\x69\x9b\xe0\xf2\x18\x49\xf8\x0c\xb5\x6b\x24\x0f\x86\x36\x1f\x1a\x0c\xbc\x08\x53\xd1\x25\x41\x2f\xc2\x87\x2c\x50\x09\x3b\x9e\x42\x58\x10\xab\xd1\x46\x29\xfd\x53\xf3\xcd\x0f\x93\xc0\x1b\xa6\x9f\xaa\x4a\x93\x2e\xa1\x65\x93\x08\xdf\xd0\x44\x22\x96\x2a\x48\xfd\x87\xc0\x85\xc2\x22\x88\xbb\xe6\x32\x9c\xb5\x29\x72\xd2\xce\x82\x47\xd2\x81\x66\x52\xeb\xa1\x13\xd4\x24\xc7\x73\xd9\x59\xa9\xaa\xd5\x40\x38\x58\x59\xad\x75\x26\xbc\xce\x8c\xa8\xd1\x99\xf0\xfa\x74\xa1\xa5\x82\x51\x7c\xd2\xbd\xd0\x68\x4f\xad\x8b\x10\xae\x81\x33\x7b\x1a\x34\x29\x9c\xba\x09\x91\xd5\xba\x8c\xf8\xa1\xcd\x74\x67\x56\xeb\x48\x5e\x1c\x8a\x71\x98\xb2\xb1\x33\xad\x75\x1b\x22\x68\x70\x2a\x9c\xd5\x83\x93\x30\x96\xeb\x0f\xd5\xf2\x34\x6e\xc0\x51\x6f\x98\xd8\x75\xc6\x04\x4a\x59\x10\x98\x5e\x6d\x63\xa7\x80\x65\xea\x2c\x20\xcc\xeb\xcc\xda\x0d\x44\x79\x9d\x54\x20\x75\x26\x9d\x8e\xd4\x0c\x15\x7e\xa8\x1e\x83\xa4\x60\x0a\x42\x24\x81\xa7\x0c\xdb\x38\x35\x52\x98\x4e\x45\x31\x34\xf0\x9d\x3a\x04\xe5\x63\x22\xa2\x03\x81\x27\x73\xf7\xa4\x7c\x73\x18\xdc\x90\x30\xf9\x43\x50\x3e\x71\x10\x0c\xeb\x9a\xa7\xd7\x66\xf1\x34\xa8\x10\x81\x5c\xbb\xae\x0c\x44\x67\x9d\xc6\x1b\xaa\xc4\x87\x8e\x26\xdc\xf8\x52\x88\x30\xd0\x8d\x4f\x46\x74\x7d\x0e\x98\xbf\x35\x91\x37\x46\x51\x4d\x9a\x3e\xa2\xa8\x96\x50\xf7\x08\xa2\x3a\x4d\x19\xe0\xf0\x17\xc3\x8d\xe0\xa6\xd7\xd9\x87\x7a\x3c\x92\xae\x96\xc1\xd7\xa6\x70\x78\x30\x07\xa2\xce\x97\xb4\xe3\x0c\xdc\x7b\x40\x2c\x7e\x57\x7f\x81\x50\x74\xba\x84\x10\x09\x35\xaa\x70\x18\x8e\x7a\xe1\x7b\x76\x28\xd8\xb9\x3a\x24\x4f\x12\xc9\x85\x13\xa3\xd1\x48\x99\xed\x5f\x1c\x0a\xc3\x92\x0e\xb1\x76\x08\x4b\x7a\x58\x6f\x41\x30\x2e\xf5\xc2\xc8\xea\x5f\xb3\xa0\x59\x41\x64\x7f\xc8\xf3\xa5\x49\x51\x60\x14\xd9\x75\x61\xd0\xeb\xd5\xc0\xb3\x51\xee\xb6\x9d\xe9\x90\xa7\x99\xf7\xc1\x70\xe7\x42\x1b\xa8\xab\x27\xed\xa9\x3b\x73\x1c\xf7\xae\x5d\x83\x9a\x39\xaa\x88\xe6\x64\xfa\xf5\xee\x9a\x1c\x9c\xce\x30\x72\x1c\x97\x59\x5c\x78\x76\x8a\x01\xae\x0f\x04\x9e\x2c\xb9\x43\xe4\x82\x17\x4f\x8c\x60\xa7\x25\xeb\x5a\x98\x74\xfe\xd7\xbe\x4d\xca\xc2\xb5\x6e\xcc\x8d\xec\x35\x85\xd7\x60\xce\xd9\x50\xe1\x60\x34\x52\xd8\x3f\x94\xe1\x42\x2c\xbf\x16\x1c\x9a\xec\x7c\x89\x66\x43\x93\xdd\x69\x75\xdf\x99\x46\xb9\xd6\xea\xee\x35\x43\xf7\x8f\xa8\x57\x42\x14\x68\xb2\x7b\x09\x37\xf3\x01\xa4\x0f\x6d\xe6\x6f\x30\xa1\x50\x1f\xc2\x93\xa5\xe8\xa6\x9d\x4b\x03\x37\x58\xbf\xbf\x3a\x43\x87\x1d\xa8\xa1\xaa\xa6\x41\x13\xd9\x28\x6e\xe7\xec\x8d\xa9\x0d\x72\x2e\xe7\x9c\xdc\x0c\x71\xc3\x1b\x77\x8e\x7b\xaf\x97\x21\xe2\x86\x50\x05\x3a\xf1\xdc\xbb\x0b\x3f\x2c\xd4\xce\xc1\x92\xc2\xd7\xcd\xa4\xc0\x23\xea\x0f\x1d\xc5\x4f\x5d\xd0\x0d\x21\x20\x3d\x27\xfd\x94\x86\xe3\x64\xaa\x7a\xa4\x30\xc4\x6a\x78\x22\x1b\xd4\xaf\xfa\xbb\x1b\x90\x47\x03\x81\x87\xd8\x29\xe8\xd6\x4b\x13\xa7\x17\x0a\x38\x12\x82\x98\xd5\x5e\x6c\x11\x74\xeb\xbd\x8b\x31\x08\xe6\x64\xcc\xae\xba\x58\xd5\xed\xc0\xa7\x58\xfb\xc1\x70\xab\xe5\x72\x19\xdd\xdd\xab\x20\xde\x0c\x1c\x5b\x30\x12\x80\xc8\x7d\x80\xf8\xeb\xbc\x05\x90\xd3\x3b\xce\xa4\xcb\x59\x38\x16\x14\x76\x3d\x8d\xc0\xa6\x4e\xc7\x3f\x94\x4b\x4c\xad\x40\xbd\x92\xf4\x78\x0b\x9a\x40\x08\xdf\x99\x2b\x39\xc7\xf3\x61\x40\xf3\xa7\xc9\xe3\xb5\x5c\xc4\x49\x43\x09\x5f\xcc\xe8\x05\x93\x89\x88\x45\x0b\x0a\xc1\x93\xcb\x68\x2c\xe1\x32\x2a\x25\xd5\x03\x6e\xec\xac\x93\xa1\xac\xca\x1e\x1a\x1e\xcb\xa6\xc4\xc1\x44\x9e\x97\xa1\x17\x1e\xd2\x9a\xbc\xa8\xd4\x74\x33\x58\x50\xbd\x07\xa9\x59\xcf\x92\x8d\x40\xb3\x9e\x2f\x1d\xb7\x25\x4b\x99\x2a\x28\x90\x1d\xb1\x0b\x5a\x08\x2d\x4a\x00\x49\x38\x92\x38\x67\x68\xc4\x4b\xd5\x1e\x31\xa3\x71\x4f\x86\x2a\x39\x67\xb5\xc2\xd7\xd0\x1c\x82\xf0\xfe\x17\x8d\x84\xd2\x3b\x17\x5d\x4a\x8b\x34\x63\xf8\x3b\xd2\x8c\xf0\x87\x88\x36\x18\x1e\x0d\x73\xcc\x19\x62\xf6\x57\x41\x8b\xa2\x18\x35\x43\xd3\x6a\x91\x61\xa4\x42\x2e\x49\x5c\x0e\x82\xae\xa6\xe2\x97\xf2\x02\x7f\x1c\x62\xf2\x17\x93\xcc\x54\x97\xe1\xa1\xec\x59\x60\xeb\xaf\xcb\x8d\x22\xb6\x94\x70\x14\x99\x91\xd3\xa5\x9b\x8e\x61\x56\xab\xd8\x3c\xe8\xaa\x1f\x2e\x6f\x29\x25\xbf\xde\xe2\x8b\xe9\xd9\x44\x95\x11\x74\xb5\x5e\xdd\x55\x45\x69\x04\xdd\xfc\xd0\x85\x78\x60\x0b\x2d\x99\x36\xd9\x13\x66\xd6\xe4\x72\x09\x2f\x37\x0c\x29\x9a\x36\x7f\x53\x8d\x21\xfe\x6c\x53\x8d\xf1\x34\x83\xbc\xa5\x62\x1e\x36\x23\x80\x84\x6b\xf2\x54\x74\x41\x38\x15\xc9\x3d\x6c\x76\x98\x04\x42\xfd\x92\x0c\xe1\x58\x54\x37\x0a\x7a\x79\xb9\xec\xc3\x0f\xd5\x87\xb2\xad\x4f\x41\x89\x85\x45\x20\x3c\xbc\x24\x6b\x84\x7a\xbe\x58\x4c\x00\xef\xde\x98\x2e\x6a\xfc\x4e\xab\xc1\x38\x37\x9e\x30\x53\x5e\x3d\x10\x18\xf2\xcb\x3d\x20\x13\x76\xf9\xa1\x8d\x47\x67\x42\xe7\x56\x3c\x45\x78\x69\xd6\xee\xfe\x31\x7d\xdd\x42\x4a\xd9\xec\xb1\x31\x33\xab\x8e\x1e\x2c\x00\xb2\x9f\xbb\x8c\x16\x5b\x2e\x51\xd6\x8d\xac\x99\x59\xc7\x6d\x2b\xcb\x84\x96\x06\xcf\x8a\x48\x6e\x46\x71\x0b\x05\x05\xe4\xcc\x2e\x7b\x61\xdb\x34\x50\x98\x66\xd4\xe4\x56\x6e\x4c\xc2\xdf\x7d\x20\x66\x56\xef\x78\xa5\x17\xbf\x5c\x18\x82\x76\x7a\xdb\x20\xb2\x51\x08\xcb\x03\x22\x00\xbf\x8e\x22\xe3\xd3\x56\x11\x29\x9a\x1c\x14\xcb\x25\x36\x13\x6e\x79\x13\xf5\xaa\xf0\x87\xe7\x48\x59\xd6\x89\x70\xb5\xb5\x7b\xa3\xe0\x37\xe2\xbb\x7c\x13\xf9\xc5\xf1\xc3\x00\xe1\x74\x11\x02\x13\x25\x03\x82\xa0\xa7\x2d\x86\x48\xf7\x0d\xcd\x73\xb1\xab\xfb\x17\x9d\x2b\xdd\x08\x63\x36\x0a\xc2\xed\xd4\xc5\xf4\xbc\x88\x50\x42\x4b\xa6\x88\x6e\x62\x07\xa0\xfd\xcf\x96\x19\x20\x90\x6c\x52\xd0\xc4\xce\xfc\xd1\x65\x5e\x6e\xe6\x06\x05\x71\x33\xcc\x51\xcc\x05\x66\x6e\x69\xbf\x3e\x5e\x74\x2c\xd7\xc2\xbc\xe8\x24\xa4\xbd\x47\x3c\xda\xda\xc4\x0c\xbc\x98\xa7\x26\xfc\x1d\x64\xf5\xd9\x35\x27\x78\x73\x01\x48\x93\x77\x75\xd7\x44\x9e\x92\xe2\xde\x71\x9c\xc3\xd0\xc1\x8b\x2a\x22\x4c\x7f\xec\x2a\xde\x90\xe1\x68\x8b\x88\x19\x75\xfd\x16\x64\xbf\x90\x23\xc0\x52\x3e\x84\xa3\x9d\xdd\x2b\xb1\x79\xee\x75\x09\x20\xe2\x6c\x99\x42\xfc\x37\xf3\xe9\x09\x49\x99\x4b\x5a\x61\x89\x3a\xd3\x45\x17\x3f\x62\x60\x24\x90\x6b\xf5\x87\x3c\xbf\x6e\x94\x94\x56\x9c\xd1\x9b\x56\x23\xc9\xcd\x9c\xd7\xcf\xd3\x26\xc2\xef\x86\x5b\x01\xaa\x55\x7f\x46\x17\x25\xf5\x07\x89\x7f\xd1\x4e\x30\x05\xb4\x65\x32\x70\xc0\xce\x75\xba\x0c\x0e\x9a\x9a\x2f\x82\xcc\xa6\x72\x89\xa3\x67\xb6\x66\x3f\xc3\x99\xad\xd9\xf4\x82\xda\x7b\x6b\x23\xde\x3c\xe8\xe1\x9a\xf0\x69\xd7\x65\xc9\xa8\xb2\x25\xbb\x8c\xd3\x0d\xf7\x88\x48\x88\xcd\x1d\x12\x11\x9f\x76\x90\xf8\x53\x17\x32\xc2\xca\x66\x6f\x22\xdd\xb3\x8b\x08\x2b\xd4\xf5\x31\xf5\xd4\x64\x5e\xe5\x52\x0c\x0d\xbc\x21\x34\x52\xc8\xf1\xcb\x03\x6d\xdc\x1d\x6c\x93\x1a\xf8\x29\x84\x82\x06\x3e\x95\xa4\xcb\x83\x8e\xd3\x55\xe7\x00\x2a\xf8\x59\xbb\xab\xd6\xf3\xba\xd2\x6e\x43\xc9\x9e\x5a\xff\x0d\xf4\x59\x7e\xd3\xd5\xcd\xc0\x24\x25\xdc\x05\x47\x3a\x04\x6d\x8e\xc6\x85\x48\x01\xab\xa3\x8e\x94\xcb\xa7\xb0\x0a\x04\xc1\xcc\xae\x8a\xc0\xd0\x5a\x37\x68\xeb\x8b\x05\xce\x77\x68\x8e\x6a\x87\xfa\x3d\xd1\xf2\x9b\x11\x8a\xdc\x07\xf4\xf3\x25\x89\xd6\x50\x41\x5f\xc4\x41\x43\xb1\x9e\x8d\xee\x4c\xc1\xac\xbc\x8b\x5d\x29\x98\xbb\x10\xe7\xe6\x5b\x48\x5c\x3a\x53\x30\x97\x24\xec\x80\xd3\x73\xce\xc9\xed\x74\x16\xaa\x4b\x0a\xfe\x2e\x7f\x09\x9e\x5a\x77\xe2\x2d\xb7\x25\xd7\x04\x92\x85\x7b\xe4\xd2\x15\x83\xe0\xf6\x25\xb2\xa2\x32\xdf\x02\xd2\x9b\x57\xcd\xd3\xe1\x87\x1f\x6a\xb1\xce\x5d\xd3\xab\x0e\x2a\x3c\xab\x73\xd7\xa5\xc8\x88\xb8\x16\x56\x43\xd1\x5f\x9b\x88\x18\x15\xfd\xd5\x1b\xc0\xcc\x9f\x7e\xe0\xdf\x5b\x1e\x56\x82\x34\x54\xb7\x8a\xa1\x7a\xe0\x9b\xbb\x2c\xbc\x86\xa7\x75\x33\x01\xb8\xb7\xc6\xca\xa1\x23\x09\xf4\x34\x35\xa2\x8d\x40\xd1\x7d\x42\x1b\x81\x62\x29\xe1\x87\x99\x6f\x9f\x0f\xe9\xdb\x6d\x08\xb7\x9b\x08\xfc\x87\x78\x55\xdc\x28\x42\x37\xe8\x20\x7f\x98\xcf\x4c\xb3\xfa\x08\xaf\x44\x73\x3e\x0a\x4f\xe1\x42\xe0\x95\xd8\x10\x04\xde\x9d\xde\x47\x38\x5e\xb7\xf2\x34\xc3\x49\x79\x34\x10\x20\x17\x5d\xe7\x1f\xfa\x54\x09\x57\x3e\x34\x49\x4e\xba\x29\xe8\x79\xed\x63\x0e\x97\xe9\x5c\x9e\x32\xbc\xa2\xc5\xea\x40\xf7\x9f\xbd\x01\xd0\xfd\x4f\xdf\x45\x1f\x26\x7b\xd5\xfe\x7f\xf8\xbc\x4d\xc3\x60\x45\x34\x67\xcd\x9f\x0c\x44\x92\xc0\xe3\x43\x06\x42\xac\x2d\x7d\xa4\x4b\x12\xf1\xa0\x65\x40\x29\xae\x0a\xff\xf9\xe1\x2e\x6f\x56\x9d\x02\xf1\x7c\xe0\x5d\xa1\xdc\xc7\x0c\x8f\xd2\x99\xfa\x38\xd1\xc7\xa4\x33\xf5\x71\x66\xc8\xb0\xce\xec\xc6\x99\x56\x48\x9d\x59\x89\x5b\xe1\x86\x33\x29\x71\xa3\x6f\x71\x67\x52\xe2\x49\x63\xb2\xae\xa4\xc4\x25\x4d\x17\x22\xb2\x81\x1b\x05\xdf\xab\xb3\xc2\xcc\xc3\x89\xee\x08\x9d\x99\x87\x0b\xe3\x02\x76\x26\x17\x1e\x4c\xc3\xdc\x99\x5c\xb8\x31\x36\x7b\x67\x72\xe1\x22\x91\x31\x73\x0b\x9f\x36\x5d\x88\xac\x38\xcd\x1d\x72\xff\xdd\x2a\xf7\xbf\x1a\xc2\x0d\x50\x55\x95\x49\x59\x79\x1c\x99\x17\xb8\xd0\x42\xa9\x2b\x2d\x70\xa1\x1d\x4c\x67\x5e\x60\x65\x97\xeb\xcc\x0b\x9c\x4a\xfc\x58\x79\xc8\xf4\xbe\x4d\x22\x15\xa5\xf7\x2d\xcf\x6e\x50\x10\x4d\x3c\x62\x46\xdf\x12\x5e\x00\x3e\x91\x2e\x43\x37\x3f\xd4\x0a\x9c\x2d\xee\x34\xa1\xed\xcc\xd9\x7b\x0a\x87\x40\x4e\x32\x0b\xa2\xaf\x7b\x17\x04\xdf\xea\xea\x0f\xfb\xf7\x97\x5e\xa4\xcc\xe7\x5b\x45\x63\x94\xce\x57\xef\x7f\xa5\xf3\x2d\xf9\x01\x19\x97\x52\x55\x03\xf1\xab\xdd\x03\xcd\x79\xb4\xfd\x8c\x21\xac\x80\xa6\x07\x24\x03\xad\xee\xf9\x40\x7e\xca\x60\xf6\xdf\x0c\xc9\xfb\xa8\x0a\x24\xe1\x0a\x41\x8c\xb6\xaa\x1e\x19\x50\x73\x18\x62\xd6\x34\x4f\x9f\x01\x88\xc8\x0f\x44\x22\xe5\x6e\xea\x7f\x71\x51\xab\xbf\xa4\x33\x83\x20\x18\x1b\x8b\x8c\x30\x9b\x6e\xd0\x9a\xab\x33\x9b\x6e\x2a\xb9\xa9\x0f\xf2\x07\x64\x48\x98\x4e\x77\x0c\x2d\x0e\x9c\x7f\x73\xd3\x8c\x99\x15\xd7\xa4\xd2\x59\x71\x79\x77\x32\x2b\x6e\xf6\xb9\xcd\x4c\xb6\xcc\x58\xe7\x07\x44\x04\x4b\xcd\x03\x4e\xc4\xd3\x07\x20\xcb\x7e\x73\x0a\x42\x54\x29\xf7\xc8\x84\x82\x3a\xaa\x74\x1b\x2e\x92\x9d\x30\xb7\x6d\x69\xc2\x71\x6a\xf6\x8b\x26\x95\x99\x24\x59\x6b\xcc\x00\xc3\x3d\xbb\x26\x42\x4a\x37\x0d\x06\x4a\xa2\xe9\xef\x96\xcc\xe0\x05\xb5\xb3\x18\xdd\x10\x0c\xd6\x87\x6b\x2e\xe6\xb7\x33\x88\x64\x18\xcf\x87\xf0\x54\x7c\x20\xc8\xd7\x8a\x6b\x62\xdf\xa6\xe6\xcb\x1b\x37\x4f\x8d\x0d\x16\x9a\x62\x5d\x98\xcb\xf6\x14\xaa\x1d\xc8\x1e\xcb\x03\xc1\xb1\xc6\xeb\xb6\xb9\x36\x53\xb3\x92\x61\x96\x21\xee\x86\x77\x95\x17\x72\x26\x47\x1c\x59\x08\x60\x88\xda\x3e\x77\xf2\x02\x07\xee\x4e\x88\xd6\x1e\x3b\x9f\x0e\x97\x3b\xf9\xe0\x02\x66\x19\x9c\x8a\x9b\x74\x7f\xcc\x7c\x3b\xa5\x4e\x65\xe6\x5b\xd9\x6c\x77\x65\xbe\x2d\x79\xba\x10\x9c\x25\x65\x34\xcc\x7c\x5b\xc4\x65\x28\xf1\x6d\xc9\x64\x73\x98\xf9\x76\x4e\x11\x19\x98\x04\x4c\x3d\x36\x03\x26\x01\x63\x3e\xfd\xbf\xf8\xa1\x5b\x7d\x33\xae\x99\xa0\x1b\x76\x06\x49\x10\x37\x44\xd8\xc9\xe4\xb7\x45\x28\x5f\x78\xcb\x9b\xe8\xc3\x01\xba\x30\x15\xd2\x81\x38\x11\x5e\xfa\x81\x48\xcd\x63\x7a\xce\x14\x6f\xe8\x3c\xc0\x0c\xa1\x57\xe1\x0e\xcd\x10\x8a\xd4\xdb\x01\x33\x84\x29\x63\x0a\xa6\xbb\x2d\x2d\xff\xd0\x68\xba\x33\x17\x6e\x2a\x92\x9a\x30\x19\xee\x94\xe8\x96\xb9\x70\x4f\xa1\xe6\xc5\xc7\xaa\xc8\x35\xe3\x38\x97\xe2\x2d\x61\x32\x70\xcf\x0b\xb2\xb7\x22\x69\x31\x73\xe3\x2a\x39\xd4\x81\x60\xe2\x5d\xdd\xea\x07\x07\x46\xad\x42\xca\xee\x43\x08\x83\x82\x11\x3a\x4c\x30\x28\x98\x53\xb7\x57\x21\xa3\xa1\xb7\x73\xc0\xa2\x60\x8a\x79\x88\xc2\xe0\x17\x1e\xcd\x86\x52\x53\xa4\xa4\x10\x5b\x8b\x06\xa3\x34\xcd\xee\xfe\xcd\x46\xb5\xac\x54\x16\x55\x17\x72\xad\x74\x27\xc0\xdc\x20\x87\x68\x82\xb2\xe1\x6a\xd3\x99\x0d\xf7\x41\x42\x58\x1f\x4c\x33\x13\x30\x30\x68\xd2\x1c\x33\xe3\xed\x34\x65\xad\xc8\xd3\x5d\x74\xb4\x2b\xd1\xc3\x14\x12\x4e\xe0\x33\x4d\x57\x65\x1f\x45\x03\x60\x3e\x00\xad\x71\xe5\x43\x44\x3c\x62\x54\xc8\xd6\xe9\x01\x71\x20\x44\xd9\x9e\xfe\x50\x2e\x56\x43\x20\x1e\x9b\x1e\x1d\xa5\x1e\xbe\xdd\x2a\xc2\xaa\x32\x05\x71\x0f\x06\x88\x1e\x3a\x21\xb0\x55\x98\x59\x87\x19\xb6\x0a\xb3\x55\xd7\xc4\x2d\xac\x8d\x44\x94\xe7\x29\xf9\x3d\xb3\xec\xe6\x67\x1a\x8c\xc6\x33\xdd\x0a\xf7\xe3\x69\x06\x97\x62\x77\x55\x08\xb9\x92\xaa\x6e\xea\x8b\xb4\x01\x8c\x66\xa8\x73\x5e\xe9\x8c\xe4\xc5\xe0\x65\x66\xba\x8f\x28\xcf\xd5\xd7\x17\xa2\x3c\x27\x99\xb0\x05\xa3\x3c\x17\xdf\x74\x0c\xf3\x2c\xf5\x19\x53\xee\xa6\xee\xcd\xd9\x1c\x0d\x51\x8e\xa9\x72\x25\x28\x8e\x46\xb5\xae\x2e\x53\x58\x4e\x0c\xe9\xdf\x03\xc6\x11\xa9\x36\xd7\xa4\x28\x98\xb3\x60\x88\xe5\x42\x53\xe1\x03\x26\x64\x7f\x6f\x82\x38\xc5\x22\xe8\x6c\x3f\x45\x8a\xd1\x98\xef\x50\xdc\x63\x63\x84\xba\xa7\x43\x98\x11\xe7\xcb\xad\x70\x86\xba\xa2\xe0\x05\x2f\x8b\xfe\xce\x1c\xbb\x49\xd1\x2b\xbb\x92\xec\x5e\xd3\xa3\x81\x55\x45\xd6\x50\xf1\xb4\x90\x84\x28\x60\x46\x51\x64\xfd\xc2\xac\xba\xa9\x35\xd7\xdc\x18\xb7\x16\x03\x32\x4d\x49\xf8\x82\xe6\x0f\x12\x8a\x44\xe3\x5d\x56\xa6\x41\xca\xfe\x0d\xf1\x6c\x78\x34\x9b\x86\xb5\x5a\x00\xc6\x62\xf2\x72\x58\xd4\x61\x10\x1e\x3f\x7c\xa2\x32\x1f\xef\x6c\x22\x23\xb4\x86\x90\x1c\x84\xb9\x72\x87\x8c\x71\x98\x1d\xb7\x0c\x2d\x7f\x57\xd6\xfe\x29\x88\x2e\x14\x1c\x1b\x8c\x21\x7a\xd3\xc1\xe8\x4c\xc5\x2f\x5c\x64\xb8\xe3\xc2\xfc\x1b\x07\x2c\xa8\xfa\x63\x39\x08\x93\xe5\x9e\x2f\xd5\x25\xb2\xd1\x3d\x03\x80\x5e\xa6\x18\xff\xe1\xf7\x9f\xfc\x7e\x50\x62\x5d\x99\x6e\x30\xb3\x6e\x96\x0d\x67\x74\x62\x80\x99\xf2\x0e\x53\xa5\xf6\x54\x45\x54\xce\xee\xaa\x10\x1f\x6a\x3f\x3a\x05\x61\xd5\x4b\xa7\xa7\xa6\x3e\x84\xf4\x32\x57\x43\x8d\x76\x15\x82\x38\xd6\x64\x10\xf1\x5a\xbc\x3e\x4b\x63\xd5\xbc\x28\x01\xd7\x15\x4d\x53\x8e\x22\x59\x2e\x53\xf4\xf6\x1e\x6e\x07\x09\x23\x92\xf6\x07\xa4\xa3\x35\x0f\x00\x1c\x54\xcd\x06\x21\xd1\x73\x97\xc0\xba\x10\x03\x09\x53\x8e\x61\x3e\x88\x79\x76\x8b\x79\x76\x86\x37\xe8\x5e\x57\x18\x2d\xb7\x30\xf4\x86\x5c\x9b\x8d\x0e\xbe\x51\x24\xfc\x8b\xc1\x00\x83\x22\x5d\x43\xa9\x99\xf8\x4a\x8f\x31\x89\x04\x21\xa8\x02\x9a\x82\x18\x22\xa8\x0b\xea\x28\x1b\x82\x10\x1d\x4c\x8b\x0c\x2b\x90\x2e\x11\x52\x0c\x8a\xbb\x64\xbf\xc1\x14\xbc\x5d\xba\x9a\x18\x8c\xe4\xce\xe7\x34\x53\xf0\xf6\xae\xd5\x40\x5e\xdd\xde\x45\x57\x10\x04\xba\x5c\xba\x90\x90\x0f\xb7\xd0\x3b\xac\x33\x1d\x6e\x2a\xd2\xae\x32\x1f\x6e\x4e\x42\x6c\x44\x45\x28\x59\x2f\xcf\x41\xab\xc5\x64\x08\xd2\x46\xad\x1b\x03\x3b\xfb\x71\x8d\xc0\x07\x55\x66\x08\x31\x68\xc3\x2a\x7a\x34\x10\x4c\xe4\x12\xca\x23\x9a\x41\x0a\xcf\x97\x34\xfe\x81\x20\x06\x13\x6d\x86\xb9\x48\x91\x71\x1a\xb3\xd8\x76\x8f\x85\x41\x09\x8a\xb4\x31\x81\xa8\x04\xde\x26\x04\x25\xe8\x12\x4a\x31\xc3\x6d\xae\xd5\x15\x17\xca\x8a\x20\xbc\x9e\x25\xa0\x60\x4e\xdb\xe4\xd7\xe3\xd4\x56\x0c\xb7\x8a\xb8\x79\x94\xc9\x30\xa9\x6d\xbe\xf4\x5e\x87\xf5\x46\x95\x45\x0c\x53\xdc\x96\x29\x91\x04\x8c\x37\xba\x4f\x0d\x4c\x32\xba\x0f\x1f\x22\x06\x74\x19\x69\x32\x51\x6d\x2a\x75\xba\x51\xe8\x23\x74\x6c\x27\x6d\x8d\x3d\x0d\x72\x6a\xa2\xdb\x53\x27\xd3\xfd\x63\x9f\x2c\x68\x40\xe2\xda\x2a\x45\x30\x73\xd3\xd6\xda\xdd\x28\x7b\xd4\xa9\x81\xed\x44\xa9\x22\xa3\x93\xfa\xa7\xaa\xfd\x86\xed\x44\xaf\x7a\x5a\x31\x74\xf4\xaf\x55\x31\x47\xb1\x6a\x88\x35\xd0\xab\xb8\x28\x44\x8e\xae\x6d\xba\x26\x16\xd5\xf7\x08\xcc\x23\x4a\x5c\xfe\xf0\xc3\x42\x82\xcc\x23\x5b\x9a\xd8\x51\x18\x48\xf4\xaa\x9b\x0b\x06\x12\x53\x02\xe5\x80\x7d\x84\xc2\xff\x1d\x68\x23\xe0\x59\x12\xf4\x42\x2c\xb8\xdf\x40\xab\x63\x42\x5e\x21\x26\x33\x98\x11\x47\x7b\x05\x23\x88\x22\xaf\x0f\x26\xa7\xed\x26\xe3\xc1\xc0\xb3\x7a\xae\x22\x68\x41\xa7\x13\x79\x67\xe2\xda\x6e\x9a\x81\x40\xd6\x45\xe6\xc4\x4c\x4e\x3b\x67\xf3\x77\xd8\x8d\x96\x5d\x88\xc1\x88\x84\x31\x68\x81\xa2\x8b\x76\xa6\xae\xed\x26\x53\x48\x4e\x5b\x66\x71\xd5\xc6\xaa\x5a\x37\xc6\xd7\x14\xa7\xc6\xec\xb4\xa5\x3d\xcd\xd2\x53\xcb\xed\x20\x7a\x91\xb8\x51\x58\x4c\xe4\x2c\x06\x84\x16\x13\x7e\xe5\x20\xa4\x81\x45\x82\xca\x23\x5b\x9a\x2e\x79\x18\x50\x64\x99\x3d\x31\x8f\x6c\xf7\xa1\x46\xd4\x82\x6a\x02\x0f\x8b\x89\xdc\xbc\x70\xda\x7f\xad\xce\x9a\xe4\xaa\xab\xa0\xc2\xc2\x26\x10\x1b\x50\x0c\x0d\x04\xa1\x2a\x82\x26\x38\xdc\x4b\x50\xc0\xce\xc8\xcd\xc0\x94\x48\x23\x85\x79\x45\x91\xae\x23\x60\x25\x91\x65\xed\x1c\xb0\x92\x08\xad\xc5\xe2\x49\x15\x59\x86\x3d\xc3\x90\x2e\x96\x89\x62\xbb\x2c\x6e\x98\x27\x76\x58\x76\x48\x37\xfd\x21\xba\xb8\x98\x7d\xc0\x53\xc0\x4b\xfe\xf2\x6c\xa1\xc8\x8b\xa1\xef\x60\x37\xe4\x0b\x74\x69\x61\xc4\x0a\xc1\x9c\x20\xfc\xdc\xa0\x39\x41\x31\xdf\xb2\xe9\xb5\xab\xc5\x87\x3d\xc1\x79\x87\x0b\xa2\x2d\xb0\x86\x03\x83\x82\xd9\xc5\xe0\x42\x4b\x1f\x45\xd4\x07\x9a\xf8\x52\xdd\x0c\xb9\x8d\x2e\x3e\x05\x89\x5b\x8b\x5f\x1b\xf0\xb7\x9f\x49\xec\x2e\x03\x6b\xfb\xf5\x05\x55\x78\xaf\xd5\x35\x91\x8d\x5f\xd4\x67\x33\x9c\xab\x50\xc1\x29\x56\x45\x36\x36\xd9\x46\xf1\xa2\xd0\x6f\x57\xd9\x5b\x32\xff\x6a\x1a\x9e\x3f\xf1\x2b\xbb\x19\x30\x86\x97\x6b\x06\x23\x79\x0b\x7a\xc1\x68\xd8\xdf\xbd\xd9\xa1\xe6\x44\xe3\x9d\xe4\x0e\x99\x5f\x98\x10\xf4\xdb\x55\x16\x41\x4c\xce\x3a\x7d\x9f\xbd\x68\x86\xae\x97\xc0\x8b\x66\xe8\xc3\xd0\xb9\x6d\x9a\x78\x1b\x78\xcd\xdb\x40\x47\x69\x54\xad\x56\x60\x1a\xd5\x24\x5f\x9a\x78\x91\x15\xd5\xf1\x7e\x31\xa5\x99\x2e\xc9\x17\x5f\x10\xd5\x65\xa0\xfd\xfd\x01\x71\x83\x6a\x13\x5f\x8c\xfa\xab\x77\xb9\x74\xe1\xbd\x1a\x84\xe4\xd6\xfd\x93\xf8\x48\xe9\xa3\x94\xab\x97\x6e\x54\x78\xc6\x77\x0b\xc4\xe0\x19\x1f\xb2\x5f\x61\x02\xd6\x6c\xba\x20\xad\xb6\x71\x0a\x5a\xed\x32\x86\x0b\xa1\x92\xf4\xc2\x51\x56\x2d\x24\x7a\xf1\x62\x4a\x3f\xcc\x2f\x7e\xaa\x72\xa8\xcd\x83\xc3\xad\x25\x4e\x80\x2e\xf5\xa5\x7b\xce\xcc\xa9\x2e\x04\x80\xd7\x7c\xb1\x24\xed\xc5\xa4\x76\xa2\x6f\x2f\xe5\x17\xd4\x70\x60\xfb\x20\x03\x1a\x26\x6b\x7d\xe4\x22\x4c\xd6\xaa\x38\x0d\x9d\xc9\x5a\xab\xac\xa9\x02\xaa\xf3\x47\x1e\x0f\xed\x78\x92\x33\x11\x13\xb9\x26\xc5\xe5\x38\xe0\xfc\xfe\xea\x7e\xde\x43\x75\x5e\xa4\x1d\x67\x22\xd7\x2e\xa3\x56\x26\x72\x3d\x1f\xba\x55\x50\xcd\xec\xc1\x81\x4f\x10\xe3\xf9\x66\x7e\x1f\x4d\x83\x2e\xf3\xa6\x7d\xf4\x98\x2f\x66\x20\x19\x4a\x3d\xeb\x9a\x80\x57\x7c\xf5\x8b\x16\x71\xce\x95\x0b\xac\x33\x95\x6b\xb2\xce\x9f\xc9\x5c\xbb\x85\xe5\xd4\xb3\x57\x2d\x23\xf5\xec\xf2\x11\x51\x32\x57\x6f\xc6\x9b\x99\x41\x3c\x36\x66\x06\xd1\x9d\x0d\x55\x7a\xf7\xbb\x14\xaa\xf4\x2e\xf3\x3c\xe6\x60\x4d\x72\xa5\x51\x0e\xd6\x22\xef\x35\xe6\x60\x4d\x97\x90\x1a\x8e\xef\x39\x7b\x69\x20\x89\x9a\x9e\x3e\x0d\x27\x74\x1a\x19\xe7\x3c\xeb\x5e\x66\x28\xf3\xe2\xf3\x87\x50\xe6\xdd\x67\x43\x4a\xf7\xae\x37\x02\xb4\xee\x3d\x57\x57\xc5\x4e\x55\x97\x71\xa5\xc4\xea\x23\x96\x79\xb1\xb0\x03\xa1\xcc\xd3\x25\xda\x74\x93\xbd\x91\x6d\x5d\x30\x96\xb9\xa5\xaa\x50\xbb\x27\x3f\xcb\xa0\x76\xef\x59\x1c\x05\x7d\xdb\xad\x1f\x8e\x9b\x11\x7c\x75\x85\xd3\xb9\xbd\xc8\x1d\x96\x79\x60\xbb\x1f\x74\xd4\x90\xfb\xfe\xb9\x19\x45\x55\x97\x01\x7d\xd6\x6d\xc9\x19\xd0\x89\xcb\x83\xfb\x40\x40\xd5\xe2\xaa\xc1\xaa\x06\x91\xe6\x42\x94\x83\x19\x64\x8b\x3c\x52\x03\x1e\xed\x49\x06\xd1\x01\x8f\xf6\x2a\x2b\xfa\xb8\x89\x47\xba\x54\xa9\x4b\xaf\x6e\x86\x09\x65\x75\xa9\x49\x97\x2e\xdf\x36\x66\x94\xed\x59\x7c\x9a\x74\xe9\xf2\xd3\x61\x46\xd9\x9e\xc5\x19\x40\x97\xde\x73\x71\xab\x1c\xb9\xf0\x83\xc1\xc6\x93\x4e\x00\x95\xe9\x5d\xaf\x66\x26\x94\x2d\xf2\x66\x63\x42\xd9\x9e\x8b\x07\x70\xb3\xd0\xc3\x43\x98\x4d\xef\x16\x94\xe9\x66\xd5\x6f\xe2\x99\x64\x51\x37\xf1\xcc\x42\x9e\x9b\x78\xa6\xd3\xa2\x38\xe5\x3a\x57\xd0\xb4\x2b\x3e\x69\x67\x26\xda\x9e\x75\x3c\x3f\xc4\x1d\x13\x96\x0f\x58\x63\xeb\x60\x98\xa6\xb6\xc8\xf7\x92\x79\x6a\xbb\xb5\x50\x1f\xe6\x87\xd4\xc0\xa1\xe8\x0e\xb1\xff\x0c\x30\x2e\xdb\xbf\xa0\x9e\xfb\x69\x04\xbc\xf0\x25\x02\x84\xf8\xe2\xe5\x50\xa7\x1f\x12\x6b\x26\xad\x7d\x86\x46\x3c\xaa\x6e\x14\x67\xbe\xb9\x0c\x67\x5e\x78\xfc\x11\x1a\xe9\x5e\xf9\x10\x8d\xc4\x39\xc0\x8b\xbe\x67\x5d\x32\x1f\x2a\x7d\xc2\xcd\x80\x57\x1a\x6e\x15\xe6\x1b\x72\x72\x60\x0e\xdb\x53\x98\x04\x66\xb4\xa3\x19\x53\xdc\x71\xb9\x2a\x06\x27\x74\x84\x57\x7d\xb6\x9e\x07\x11\xc5\xb3\x19\xb0\x8f\xf6\xdb\xd0\xb9\x71\xfc\x9e\xff\xd0\x4e\x4f\xbe\x1a\xf1\xa1\x65\x85\xc8\xfa\x87\xde\x3f\xa2\x07\x50\x96\xf7\xfc\xd4\x24\x86\x0d\xb7\xc3\x18\x3b\x98\x3f\xf3\xdd\x76\x66\xdc\xe9\x4c\x69\x5b\xf5\x8a\x54\x4a\xdb\x32\x86\x0b\x11\xed\x9e\xb4\x73\x21\xf6\x77\x65\x24\x8a\x03\x71\x8a\x86\xb0\xfe\xd5\x5d\xc0\x29\x99\x07\x8e\xf9\x6e\xbb\x9c\x1c\x98\xee\xf6\x74\xe1\xaa\x38\xc6\xcd\x85\x38\x0b\x5d\x1d\x52\x16\xca\x70\xd3\x5d\xa9\x71\x2b\x27\xb5\x2e\xde\x47\x83\x34\x6f\x41\xeb\xee\xe7\x2f\x33\xe5\x96\xeb\x69\x07\xe4\x28\xbb\x26\x96\x6a\x68\xc6\xb8\x64\x64\xda\xb3\x2e\xee\xdb\x34\x84\xe7\x86\xdb\x64\xa2\xc0\xa2\x32\x08\x89\xe4\x9c\xb2\x2e\x8a\x90\xfd\x1d\xd4\x61\x4c\xde\x71\xa0\x37\xae\x78\xb7\x82\xf9\x7a\x4a\xe4\xcd\x27\x77\x71\x25\x6e\x8d\x96\x86\x4e\xef\xf2\x1a\x5b\x0c\xa1\xcd\x20\xe9\x07\x2a\x48\xa1\x97\x04\x55\xec\xbe\x5b\x41\x42\xb3\xa7\x26\x44\x18\xc5\x35\x07\x3b\x0c\x81\xf3\x3c\x53\x8a\x00\x4c\x7e\xb8\x08\x3b\x3a\xdc\x26\x4e\x94\xee\x14\xa6\xe6\xad\xcc\x84\xd5\x99\x9a\xf7\x14\xba\x0f\x4c\xb1\x7b\x16\x9c\x22\x39\x3e\xe6\xe6\x35\x17\xa1\xd4\xbc\x8c\x86\xdb\x99\x9a\xf7\x54\xd5\x78\xa0\x0a\x91\xea\x9e\xa9\x79\xb3\xe4\x2b\x0b\x0e\xf9\x3d\x6b\x89\x13\x8f\xa2\xb6\x3b\xc9\x04\x4f\x35\x17\xd7\x46\xb3\x82\x88\x4a\x86\x1b\x0b\xd1\xb7\x7b\x1e\xea\x8f\xb4\x5f\x1b\x05\x1d\x7b\x96\x63\xed\x82\x8a\xbd\xf6\xe4\x56\x70\x4f\xce\xac\x59\x40\x26\x29\xbd\xe9\x4a\x90\x6e\x48\x55\xcb\x24\xbe\xa9\xc8\x49\x6f\x41\xc7\x5e\xe4\xde\xb6\x12\x99\x01\xb2\x18\x4c\xdb\x7b\xf8\xad\x2c\x30\xe1\x79\x5b\x04\x71\x6d\xaa\x41\xd0\x65\x9d\x05\xe6\xed\x2d\xb3\xba\x21\x44\xa6\xe2\x1d\xb2\xa8\x64\x97\x78\x63\x65\x48\x29\xa4\x8f\x66\xa6\xde\x2e\x75\xf0\x52\x14\xed\xa9\xef\x10\x21\xb1\xe4\x1f\xe6\x08\xe8\xcc\xd4\x3b\x5b\x77\x33\x54\x5d\x7b\xe4\x50\xa4\xcb\x5a\x71\x65\x66\x69\x2c\x1a\x0d\xc4\x0b\x43\x67\x11\x8e\xee\x85\x51\x27\xbb\x72\xfa\xb6\x64\x08\x21\x2e\xba\x26\x2c\xed\xf8\x70\x21\x1e\x5c\x45\x93\xa2\x6c\x57\xa7\x01\x0a\xf0\x52\xbd\x18\xbc\x42\xc5\x52\xac\xcc\x2b\x54\xdb\x01\x6d\x74\x96\xfd\x97\x92\xf8\x96\x49\xf6\x7f\x41\x1d\xdd\xf3\x03\x21\x30\xcb\x03\x11\x1f\xc8\x0d\x2d\x3a\x9a\x5f\xea\x43\x5a\x65\x49\x97\x17\xb5\xca\x0a\x8a\xa0\x2c\xbe\xb2\x91\x67\x9e\xde\x2a\x6f\xa4\x55\xf8\xa6\x7e\xca\x06\x84\x01\x21\x68\x82\xe1\x33\x04\xce\x44\x66\xae\x4c\xe2\x9b\x15\x0c\x85\x69\x7b\xc7\x14\x76\x16\x06\xb1\x17\x49\x87\x46\xb7\x33\x3b\xd7\x81\xa0\x29\x4f\x86\x60\x48\xeb\x36\x69\x81\x10\x2e\xe4\xb5\xe5\x09\x23\xc8\xac\x6c\xcf\x17\x7c\xbb\xb3\xde\x0d\xcc\xa8\xdb\x7d\xc4\xa1\x97\x4d\x93\x2c\xe5\x2a\x34\xeb\x0b\xe1\x46\x21\x37\x4c\xe9\xc7\xaa\x3c\x0e\xcc\x24\x75\x40\x50\x43\x3e\x80\x17\xb4\xad\x35\x69\xe3\x2a\x19\x55\xad\x70\xe5\x82\xcb\x55\x8c\xf9\x76\x6b\x7b\x9a\xa1\x91\x87\x9b\x01\x6e\x8a\x38\xd6\xe0\xa4\x54\x93\xcf\x9f\x28\x06\x21\xea\xd6\xac\x2a\xa9\x0a\x39\x4c\x26\xa6\x35\x83\xc9\xe4\xb3\x55\x6e\x01\xcc\x36\xdb\xe5\x6a\xc1\x8c\xb2\xbd\x5c\xea\x50\x96\x12\x1a\x37\x6f\xed\x18\x06\x3f\x54\x43\x00\x42\x22\xd8\x2e\xa5\x3d\x33\xb8\x4e\xe9\x4f\x56\x0b\x78\x30\x93\x9f\x63\x1e\xd6\x22\x25\x35\x73\xad\x76\x79\x3c\x2d\xa9\xfe\x92\xcb\xde\x68\xd3\xdf\xe1\x61\xa8\x81\x36\x72\x42\x8a\x06\xc3\xcc\xab\xdd\xc8\x00\x5d\x5f\xd7\x73\x73\x41\xd7\xd7\x65\x80\xbc\xe0\x32\x9d\xea\xe5\x56\x61\xb6\x2e\xdb\x44\x26\x5b\xed\x7a\x0b\x33\x9d\xea\xa9\xea\x76\x0e\x15\xd1\xc3\x80\xe9\x54\xbb\x8c\x48\x16\xf4\x82\x9d\x69\x2f\x3a\x13\xa8\xce\x4b\x2b\x4c\x5d\x5f\xbd\x44\x29\xe4\xeb\xac\x43\x04\x5d\x5f\x97\x87\x0e\xf3\xa7\x76\xd9\xa6\xaf\x06\x91\x8e\x84\x28\xcc\x9f\xda\xe5\x29\xc6\xf4\xa9\xa7\xd1\x10\x08\x5d\xa7\x58\x08\x46\xe3\xae\xf2\xd0\x61\x02\xd5\x2e\xb3\x08\x25\x50\xad\xf2\xa6\x51\x02\x55\x23\x35\x92\xa4\x76\x6f\x00\xb3\xa2\x1a\xfd\x3a\xf3\x91\x4d\x43\x70\x7f\x14\xda\x42\x9d\xd7\xe5\x2e\xb5\x3a\xdd\x2f\x3d\x36\x3a\xac\xe4\x1f\x3b\x90\x2f\xe8\xdd\x7a\xf1\xb8\x99\x3f\x47\x3c\x0c\xd4\x6e\xa9\x4a\x2d\xb1\xa0\x77\x8b\x5f\xab\xa2\xc7\xa7\x2a\x37\x4e\xec\x1e\xf4\x6e\xdd\x84\x0a\x7a\xb7\x69\x82\xdb\xb9\x71\x42\xf1\x8e\x60\xb6\x3d\xb9\xec\xd0\x7b\x99\xf4\x31\x2d\x6a\x2f\x5e\xb6\xcd\x93\x49\x64\xa0\x66\x4d\xc1\xb8\x0f\xc8\x46\xbb\xa0\x05\x68\x08\x82\x89\x95\x0e\x11\x15\x64\x72\xf4\x59\x50\x90\x4d\xe9\x61\x17\xf5\x63\x12\xd1\x2f\xe8\xc7\x52\x95\x87\x2b\xf3\xa9\x26\x86\xc4\xeb\xcc\x92\xda\x65\xdb\xc1\x64\xa7\x39\x35\x43\xf0\x7e\x15\x6a\x0c\x1e\x14\x31\x1f\x83\x6e\xaa\xd5\x10\xb7\x5b\xdf\x41\xa2\x20\x33\x8b\x85\x58\xdc\x53\xe6\xff\x8b\x1e\xcc\xb2\x36\x5d\x70\x60\x4e\x55\xd6\x13\x4c\x67\xda\x65\x26\xab\x74\xa6\x35\xe9\x4c\x41\xb7\x35\xa7\xf8\x2b\xa8\xb6\x66\x52\xab\x88\xa9\x1d\x9e\x05\xb4\x59\xa9\x6b\x69\xa0\x85\x9a\x7a\x15\xad\x49\x73\x91\xa6\x36\x91\x06\xbe\xb9\x07\x6a\x84\xc5\x31\x4f\x05\x9b\xd2\xf4\xe1\xed\xeb\xb0\x0b\x0b\xde\xbe\xa7\x30\x04\x16\x50\x2d\x57\x05\x4a\x57\x43\xc0\xbe\xa4\xc5\x81\x47\x6f\x92\xa1\xdc\x82\x6e\xa9\x9b\x88\x50\xb7\x54\x65\xd2\xad\x9c\xa5\xd9\xcb\x81\x1b\xbd\xf8\x43\x08\x74\x65\x30\xb0\xe6\x39\xfd\xb3\x25\xd7\x04\x82\xf3\x8d\xba\xe8\x79\x2b\xab\x93\x45\xcf\x5b\xef\x1b\x55\x4b\x0f\x45\x0f\x1e\x77\x75\x4f\x7f\x5a\x8f\x3b\x26\xc9\x5d\x16\x84\xe0\xdc\x22\x4c\x81\xeb\xc5\x04\x3d\x78\xa2\xf5\x2a\x0a\x7a\x4e\x8a\x68\x41\xd1\x93\xaa\xa4\xe2\x2b\x78\xdc\xab\x9b\x81\x05\x9d\xc6\x16\x5a\x7f\xb1\x50\xc1\xe7\x8c\x56\x0a\xf1\xa8\xa7\x0c\x33\x57\xd0\xa1\x5a\x4c\x7b\x50\x64\xae\xcd\x08\x12\x46\x1d\x68\x38\xaa\x76\x09\xd7\xd7\xa2\xab\x31\xa5\x39\x0b\xba\x93\xa2\xc7\xf4\x92\x7e\xa4\xb8\x26\x97\xad\x09\xc2\xb2\xe9\x89\xba\x16\xa7\xcf\x27\xfa\x82\xf2\xa4\xcb\x4a\x75\x2d\x5a\xc1\x75\x43\xa0\x52\xc2\x45\x44\x47\x0e\x99\x35\xad\xc5\xf3\x55\x55\x53\xae\x55\xa2\x52\x50\xad\xcc\x4b\x67\x1f\xae\xa2\x61\x04\x5b\x78\xda\xc9\xac\x87\x39\x53\xcf\x87\x6e\x15\x2b\xdc\xfc\x21\x44\xfd\x5a\xfd\x75\x90\x2f\xa6\x16\x11\xf1\x90\xc3\x0b\xb5\x88\x5f\x6e\x14\x66\x66\x97\x78\x6b\xb8\x71\x0e\x73\x61\x70\x78\x8c\xb3\xdd\x3f\x24\xd2\xd0\x97\x84\x51\x18\xce\x89\x61\x5a\x47\xe7\xc4\xea\xc7\x15\x74\x29\x61\x54\xdc\x08\xe6\xe0\x6d\xdb\xe2\xbb\x55\x26\x4a\x34\x04\x91\xb7\x9f\x82\x18\xf2\x55\x44\x63\x8b\xf2\x27\x41\x9b\x85\x4d\x20\x76\x43\xb8\xb8\xb9\x1a\x22\xbd\x50\x9f\x84\xb7\x1f\xf9\x4c\xa7\xc2\x6f\x2d\x84\x0b\x9e\x66\xd8\xa0\xdb\x98\xf5\x29\xc3\x48\xb5\xa7\x08\xf3\x1b\x46\xd3\x17\x99\x60\x1d\x9a\x17\x67\x28\x9a\xa9\xe8\xbc\xe6\x43\xe0\x75\x57\x92\xc8\x1b\xbd\xee\xcc\x06\xc0\xeb\x2e\x49\x58\xb5\xe0\x75\x57\xa4\x2e\x5b\xf0\xba\xeb\x6d\xb8\x15\xb8\x6c\x79\x68\x48\x98\xe0\x5b\x90\x29\x4a\xe5\x35\xcc\x14\xa5\xa9\x9a\x9e\xc3\x99\xae\x37\x37\xba\x19\x2f\xc1\xcd\xe0\xe2\x49\x2e\x83\xab\x99\x56\x8d\xce\x74\x76\x98\x58\x6f\x1a\x86\x48\x94\xf0\xa6\xf1\x87\x96\x0d\x3a\x80\xc2\x0c\x92\x07\x62\xff\xda\x0b\xea\x00\x92\x6e\xda\x37\xd3\xff\xe9\x0d\x06\xc1\xfe\x94\x15\x1d\x33\x96\x76\x69\xd5\x99\x6a\x34\x3c\x36\x8a\xe0\xab\x4c\x3e\x17\x64\xf0\xf3\x7a\x0a\x33\xcc\x36\xba\x20\xf8\x2e\x8a\x61\x64\x1e\x52\x99\xf2\x32\x0f\x69\x4a\xcd\x35\x3b\x1e\x76\x1a\x37\x9e\x79\x12\x56\x33\x0f\x69\x51\x58\x38\xe6\x13\x9d\xcd\x6b\x81\xf0\x20\xf2\x41\x61\x52\xd0\x21\x7f\x6e\x25\x05\x95\xf1\x07\x73\x82\xa6\x2a\x03\xf9\x05\xff\xb5\xe2\x07\x09\xa4\xec\xd9\x92\x1b\x8a\xce\xab\x62\x47\x30\xd3\x67\x95\xa7\x17\x33\x7d\x76\x63\x8d\x62\xc6\x96\x69\x90\x8c\x66\x15\x04\x2a\xd5\xdd\x0c\x37\x43\x8b\x0a\xb9\x7a\xbd\x9e\xc2\x85\x37\x68\x08\x42\x88\x9d\xe1\x1e\x99\xe0\x4f\xf2\x82\x9b\x2c\x61\x57\x1f\xd0\xab\x34\x8f\x9c\xa1\x60\xe5\xbf\xc5\x04\x9e\xc3\x62\x26\xca\xd5\xab\xdc\x3e\x99\x89\x33\x4c\x6d\x6f\x06\xe1\x10\x45\x83\x40\x3c\x4c\x7b\x21\xc7\xee\x45\x7c\x0f\xe4\xd8\x61\xda\x0b\x51\x75\x98\xbe\x41\x52\x1d\xa6\x92\x37\xb6\xca\x32\x36\x4a\xaa\x9b\xd8\x5c\x48\xaa\x1d\xac\x83\x09\x35\x53\xf3\xf4\xc9\xae\x9b\x0b\xa3\x4f\x58\x4e\xae\x0a\xc2\x20\xb4\x85\xdb\xd7\x4c\x4f\x87\x38\x28\xda\x7f\x4a\xb1\x1d\x81\x62\x7d\xa8\x01\xd1\x4a\x41\x8a\xdd\x7d\x65\x29\x69\xa6\x1e\x2f\x1f\x5a\xe6\x76\x37\xc3\x9c\x72\x5d\x10\x43\xcb\xfd\x16\x5e\x1a\x3e\x60\xd9\x02\x19\x86\x86\x7d\x04\xa9\x72\x02\x13\xfe\xd3\xcf\xab\xe9\x56\x66\x82\x4d\xbf\x16\x21\xe3\x4e\x12\x8e\xaf\x4f\x30\x4e\xad\xa6\x01\xb5\x8a\x2f\x94\x0f\xed\xb2\xb4\x6e\x90\x86\x9f\x0e\xab\x40\x24\x64\x12\xa6\x7e\xc8\x40\xc8\xa8\x66\x41\x1e\x9e\x4d\x8a\x21\xc7\xae\xb2\xa9\x60\xa2\xcc\xae\xe0\x72\xcc\x93\x99\x42\x2c\xd2\x87\x36\x73\x62\x1f\x21\x7f\xee\x16\xb1\x52\xfe\x5c\x15\x6f\x8c\xa9\x30\xfb\xb3\x39\xa0\x85\x55\x8f\x37\x0a\xa7\x65\x43\xb8\x28\x9c\x56\x7c\xe9\xce\x94\x96\x21\x0b\x47\xe6\xa9\xec\x8c\x70\xdf\x99\xa6\xb2\x57\x6e\x23\x33\x51\x76\x19\x2a\x39\x13\x25\xb7\x9f\xf9\x25\x43\xa6\x90\x4c\x2f\xd9\x2b\xaf\x5e\xa6\x97\x4c\x55\x86\x1a\xca\x2f\x29\xf1\x20\xf3\x4b\x56\x29\x9c\x98\x5e\x32\x4f\x72\xba\x9b\x22\xe6\x2a\x3b\x86\x0d\x11\x73\x1e\xcf\x87\x50\x07\x87\x3f\xc4\xb8\x43\xa3\x81\x2d\xc8\x74\x87\x8a\xe0\xdc\x5d\x08\x4d\x51\x73\x33\x88\xea\xc2\x75\xdb\x0a\xdd\x2a\x01\xf8\xbe\x68\xa8\x13\x86\xe8\x47\x60\x08\x4e\x2f\x94\xc0\x30\xbb\x64\xaf\xa1\xf9\x83\xfa\x56\xa9\xb5\x95\x5e\x52\x06\x2e\xce\x2e\x99\x35\x47\x70\x02\xcd\x00\xb6\x2d\xfc\x19\x0c\x10\x2e\x0d\x94\x89\x66\xb2\x1b\xc1\x7a\x27\x97\xbd\xd9\x9f\xbb\xe7\x7b\xc5\xd0\x07\x3e\xf5\x5a\x0c\x06\x1a\x1d\x6a\x06\x4c\x68\x95\x4c\x7f\x5f\x78\x12\xb5\xcb\x55\x0b\x0b\x0d\xc2\xaf\xca\xc8\xc0\xa8\x52\x0f\x84\xf4\x12\x5e\x70\xa6\x2b\x22\xaf\xc3\xbc\x94\x45\xd6\x94\xcc\x4b\x59\x1b\x4f\x0d\xf3\x52\x16\x09\x75\x36\x44\xe5\x55\x4e\x3e\x1b\xa2\xf2\x2c\x3e\x9b\x59\x2a\x53\xad\x5a\x44\x3a\x8b\xc9\xf6\x8c\x69\x2a\x9b\x0c\x75\x98\x7c\xb2\xcc\x6e\x08\xf1\xb6\x84\x8b\x0c\x24\x2b\xc6\x6b\xa7\x20\x29\x7c\x0a\x11\x0b\xe8\xf2\x87\xb0\xf4\xd4\x9c\xe0\x39\xd6\x64\x78\xbf\xe1\x39\x66\x17\x27\x66\xad\x4c\x53\x1b\x05\xc7\xb1\xac\x80\x98\x4c\x5a\x99\xa4\x6f\x60\xd2\xca\x22\x09\x1f\x13\x53\x16\x99\x7d\xee\xc4\x8b\xb8\xaa\x4d\xec\x53\xf3\xca\x70\x9f\xf4\x04\xdc\x69\xc3\xe5\x7d\x1a\x2a\x2c\x54\x1f\xf0\x06\x94\xbf\xcd\xa6\xfc\xdb\x56\xda\x1b\xf2\xef\x36\xdd\x25\x62\xc2\x5f\x5e\x45\x18\xd3\xca\xc9\x7d\x33\x40\xac\xec\x34\x98\x8a\x32\x55\xd9\x6c\x2b\x17\x65\x6d\x3f\xce\xe7\xd2\x95\xa8\x52\x71\x8b\x98\xa8\xb2\x4a\xac\xbf\x21\x46\xb7\xc2\x61\x53\x8c\x5e\x1b\x25\x59\x1b\x62\xf4\x36\xc2\x10\x47\xee\x66\x06\xab\xba\x1d\xa4\xa0\x12\xa6\x66\x06\x07\x6b\xae\xca\x9d\x0b\x41\xb0\x8d\xd1\xee\x30\xfd\xa5\x7c\x85\x37\xa5\xf1\xa6\x05\x59\x88\x33\x05\xc1\xc2\xe3\x32\x04\xfa\x2e\x95\x16\x53\x5c\x66\x85\x30\xdc\x10\xb8\x27\x13\xb1\x4c\x92\x22\x73\x20\x66\xbc\xcc\x52\xf8\x33\xe3\xe5\x29\xd4\x97\x8c\x3d\x29\x9a\x06\x2f\x37\x47\xca\xda\x99\x69\x99\xab\xa6\xc8\x74\x8c\x53\xfd\x43\xe6\x27\x2f\x95\x0d\xc1\xfd\x69\x54\x73\x44\x9c\x03\x85\xcd\x50\xe6\x4c\xb1\xde\x4c\x9c\x99\xe7\x33\x36\xfa\x45\x14\x57\x7d\xe3\x43\xf7\xc1\x30\x07\x1a\x29\xc2\x1c\x28\x34\x17\xf3\x68\xb6\x67\x1b\x81\x8f\x0a\xcd\xc6\x7c\x97\x49\xd1\xaf\x76\x66\x1a\x5c\x2f\x3f\xb9\xc6\xe6\x29\x22\x3c\xb5\x82\x3e\x6c\x38\xb5\x3d\x34\x94\x4e\x6d\x3e\x39\x99\xf6\x5e\xc5\x35\x91\x95\x48\xbb\x08\xd7\xb4\xc2\x44\xf2\x07\x82\xc2\x69\xba\x0c\x5e\xe4\x5a\x0b\xaa\x0d\x24\x56\x60\xd6\xcc\x64\xeb\xc6\x0d\xb5\x41\x96\x9d\xda\xa6\x83\x99\xf7\x14\x3e\x64\x8d\x89\x70\x0f\xc4\x03\xa7\x66\xc0\x41\x74\x77\x01\x7f\x47\x19\xc8\x6f\xba\x97\x49\x15\xb7\x19\xba\x56\xfe\x8e\xbb\x30\xcf\xd0\x53\x93\xe7\x4d\xd4\x07\x5a\x83\x36\x75\xfa\xe0\x24\x96\x15\x97\x70\xc3\x47\x2c\x25\x6d\x1a\x34\x0a\x45\x01\x07\x98\xd1\xf3\x34\xa3\x1e\x81\x43\xbe\x88\x0a\x8d\x8b\x3d\x6e\x3e\x42\xa5\x44\x62\xd6\xce\x6c\xb2\x81\xd0\xb5\x6d\x26\x57\xbd\x01\xb9\xec\x83\xc5\xd0\x48\x45\xb7\xb4\x34\x42\x13\x97\x11\xdb\xb5\xa5\x70\x27\xab\x52\x3d\x33\xf9\xe7\x29\x34\x08\x46\xec\xa9\xca\xc0\x80\x86\x38\xd4\xe1\x4e\x16\x3a\xd1\xde\x30\xa0\xbd\x2e\xb8\xc2\xa0\x38\x42\x30\xf8\x9a\xd5\xea\x5d\x44\xa0\x02\xc9\xca\x76\x11\x85\x13\x0d\xa9\xa2\x70\x42\x23\x68\x3f\xb2\x4c\xba\x36\x3c\xcf\x9a\x02\xae\x30\xa5\x68\x93\x65\xdc\x86\x2e\xa4\xea\x15\xbc\xa1\x0b\x69\xf3\xf9\x0e\xf7\xb4\x57\x87\xa1\x6d\x67\x51\x8f\xf2\xa9\x55\x87\x60\x36\xa5\x60\xdb\x95\xcc\xa6\x6c\x48\x37\xbc\xc9\x9a\x02\x98\x6e\x78\x93\xb5\x49\xee\x92\xd9\x47\xf3\xb8\x5c\x76\xc3\x29\xe5\xc7\x5e\xe4\x4c\x46\x9a\x65\x09\xc1\x5c\xa4\xa9\x8a\xf7\x54\x32\xd2\xe9\x59\x91\x88\x88\x88\x31\xd4\xad\x89\x08\x1d\xc6\xa6\x88\x4f\xc5\xc5\x25\x77\x8d\x5d\xf1\x9a\x6f\x9e\x14\x92\x97\x48\x17\xc5\xcc\xa4\xa9\xf6\xcb\x1f\x36\x34\xa3\x85\x83\x7d\xad\x34\x93\x9b\x2e\x62\xb5\x0b\x39\x2b\xb3\xa7\x35\x2d\x23\x76\x5c\x36\x3a\xcc\x70\x5a\xd2\xe5\x0f\x71\xc6\x9a\xbb\x60\x72\x21\x31\xad\x8d\x3b\xae\x90\x6c\xbb\x61\xc7\x65\xd1\xba\x1b\xa3\xac\x48\x5a\xbb\xdb\x24\x01\xe8\x82\x38\x74\x9d\xeb\x46\x92\x93\xdd\x0e\x53\xbd\x17\x41\xb0\x0b\x0a\x97\x4d\x34\x33\x04\x05\x9b\x71\x55\xa4\x73\xaf\x1e\x00\x1e\xad\xe1\xb2\x17\xab\xba\x10\x94\xba\xb8\xf0\x86\x53\x88\x47\x83\xe3\x29\x52\x49\xf7\xb6\xda\x45\x66\xe8\xde\xa6\xe0\xe1\xbb\xc1\xad\x5e\x36\x44\x1b\x5a\xad\x1c\x3a\xd7\x8d\x44\xae\x68\xad\x10\xea\x4b\x8f\x96\x0d\xad\x56\xd6\x5b\x97\x59\x5d\x93\x32\xcf\x75\xa6\x75\x6d\xf3\xe9\x82\x69\x16\x9f\x56\x81\x2c\xd5\xa3\xe1\x86\xe8\x44\x36\x12\x3d\x31\x44\xd0\x79\xb5\xa9\x5d\x86\xce\xab\x98\x39\x63\x28\x60\x85\x0e\x64\x76\xd8\xac\xe7\xce\x86\x1e\x2b\xc9\xfc\x4f\xe9\x60\xa5\xe2\x67\x3a\xd8\x5a\xbc\xc7\x70\x52\x9b\xd3\x65\x13\x7e\x08\x1a\xda\x41\xc0\x48\x3a\xb8\x50\x5c\xb5\xa9\x9b\x02\xba\xa9\xd2\x85\xe3\x50\x3f\xe5\x10\x6e\x76\x8a\x2c\x64\x99\xab\x4c\xb1\x49\xb7\x6f\xa7\x8f\xa2\x76\xb8\xd3\x86\xb4\xb9\x0c\x49\x00\xbb\xbb\xe0\xb2\x3d\x3d\xd2\xf3\x82\x23\x85\xb3\x5b\x53\x5c\xfb\x4d\x67\xb7\xda\x29\x33\xd8\x5d\x81\xd5\xd5\x07\x6c\x8a\xbb\x16\x8a\x8a\xab\xda\xdd\x65\x20\xe0\x87\xb8\x8f\xae\xad\x71\x33\x1f\x38\x29\x0a\xd2\xce\xa8\x51\x32\xb5\xba\x47\x3a\x59\x9a\xee\x91\x2b\xb0\xbe\x16\x67\xe9\x90\x0b\x62\xa0\x3f\xed\x22\x7c\xd4\x8a\x2c\x5e\x98\xff\x36\xa7\x6e\x08\xaa\xb2\xe6\x66\xc8\x8c\xf9\x3b\x86\x39\xf4\xd8\x40\x8d\xba\xc7\x86\x59\x74\x7f\x07\x46\x41\xcc\x67\x67\x32\x56\xf7\x8e\x0b\x47\xe1\xfa\x98\x61\x37\x29\xa2\xd7\x86\x32\xac\x29\xe7\xc1\x96\x32\x4c\xf8\x35\x98\x67\x51\x3b\xc3\x8c\xba\x0a\xad\xb6\xe1\x3a\x56\x94\xc4\x62\x0f\xde\x13\x5a\xc3\xc1\x44\x19\xe1\x36\x91\x38\x22\xfd\x06\x3a\x3d\x68\x86\xe5\x2e\xf8\xd4\x1d\x86\x06\xf3\xa5\x69\x34\xf0\x41\x36\x87\x31\x78\x6b\x88\x17\x40\xea\xdd\xe6\x37\xf2\xe0\x6e\x0b\xdb\x87\xd3\xae\xa9\x55\x6e\x37\x45\x8b\xcc\xcb\x9b\xa4\xb5\xdc\x03\x59\x34\xb2\x17\x43\x3b\xea\x59\x21\xf8\x89\xa2\xf1\x33\xa3\xee\xfc\xb5\xea\x46\x86\x38\x77\x41\x23\x0d\x37\x0a\x74\x1f\xda\x60\x66\xdb\x0d\x6d\xf0\x60\xfe\x7c\x3d\xc3\x07\x79\x0a\x99\xcc\x32\xa5\x6e\x92\x08\x9c\x29\x75\x4f\xa1\xc1\xf6\xfd\x35\x25\xb0\xdb\xf0\x5e\x8b\xe4\xe1\x6c\xbe\x36\x43\xd0\xe4\x87\x2e\xc4\x3b\xe9\xa9\x0a\x19\xd9\xd3\x23\x8e\x94\xe8\xdb\x60\x4e\x15\xc9\x4f\xa6\x72\x23\x5c\x82\x90\x08\x5d\x38\x45\xf7\x35\x8b\xa1\x98\x36\xb7\xc9\xbc\x6c\x4f\xc6\x37\xd2\x8a\x4f\xf2\x09\x42\xfe\x49\xb5\x8e\x2c\x66\x99\x53\x37\x27\x61\x38\x73\xea\xca\x29\x89\x39\x75\xab\x0c\x2a\x98\x53\xf7\x7c\x58\x04\x72\x73\x0c\x21\x2c\xad\x8e\xc6\x24\x4b\x21\x8a\x0e\x4f\xb7\x2a\x2b\x95\x3d\x29\xe6\x17\x99\x80\xc2\x31\x29\x10\xc5\x96\xc2\xd1\x32\x1a\x28\x1c\xab\x8c\xb6\x37\xc2\x0b\x27\x85\xbd\x67\x8a\xdd\x36\xdd\xe1\xc1\x94\x69\x5e\x14\xca\xc8\xe2\xc7\x36\x75\x91\x75\x14\x83\x3c\xe0\xae\xfa\x82\x63\xbd\x46\x4a\x43\x90\xe9\xb2\x9b\x1f\x7a\x70\x88\xfa\xaf\x93\x3a\xf9\x66\x19\x1a\x0d\xdf\xd0\x4a\x64\xb2\xe1\x21\x97\x25\xcb\x65\x8e\x5d\x6b\x60\xf6\x24\xf7\x29\xbf\xeb\x0d\x35\x66\x96\x3b\xd1\x9e\xcc\xcf\x5a\x5c\x95\x5b\x25\x74\xa4\xa3\x5b\x88\x00\x30\xc9\xee\x14\xb9\x0b\xe6\xd7\x56\x33\xc1\x1d\x17\x2f\x1c\xda\x38\x9d\x55\xe6\xd5\x35\x87\x1b\x3c\xf2\x8a\xe6\xc0\xbc\xba\x45\x71\xb9\x99\x57\xb7\xca\x16\x80\x79\x75\x43\x3a\x20\xe6\xd5\x6d\x32\x84\x62\x7a\xdc\xa6\x90\x89\x3b\x44\x36\xf5\x1d\x82\xd6\xc8\x43\x9d\x29\x68\x6d\xbd\xcc\x14\xb4\x45\xa6\xde\x1b\x7e\x5e\x59\x21\xac\x99\x82\x36\x55\x3f\xaf\x17\x63\x3f\x75\x43\x40\xbf\xe1\x0f\x61\xc0\xa9\xb3\xb1\xc8\xb3\xb8\x51\x88\x08\xa5\x66\x61\x0a\xd8\xa9\x80\xa0\x4f\x0a\x58\x31\x6d\x08\x87\xdb\xa4\x2b\x64\x5e\xd7\xac\x30\x2d\xcc\xeb\x3a\xfc\x6a\x42\x5a\xd7\xf3\xa1\x41\xf6\xa8\x56\xa1\x67\xc9\x3a\xfd\xcc\xeb\xfa\xf4\xa8\x64\x20\xe9\xc7\x9a\x44\x66\x7d\x6d\x32\xfd\xda\xd0\x79\xda\x2c\x6f\x2f\xca\x76\xc5\x6c\x2d\xea\xd4\xcd\x51\x2e\xbe\x9b\xc4\x6e\x2c\xa1\xaa\x66\x45\x54\x35\xd7\xb8\x28\xee\x09\x17\x36\x16\xba\x59\x5c\xa9\xda\x39\xa4\x84\x6d\x53\xc4\x69\x11\x71\xc3\x7d\x60\xff\xa7\xbf\x03\x67\xe0\xa7\x09\x42\xe9\x36\x59\xe2\xed\xad\xfb\x4f\x18\xb0\x15\x8f\xb0\x08\xc2\x58\xc3\x65\x1c\xab\xce\x03\x7c\xdf\x86\x3c\x8a\x36\x7c\xdf\xa6\x65\x71\x0c\xa5\x5b\xfd\x8c\xd9\x14\xf0\x0c\xb7\x83\xc4\x55\xd5\x1f\xbe\xa0\xad\x36\x84\xcb\xc2\xef\x08\x44\xc8\x0d\x05\x31\xda\x5b\x98\x44\x24\x67\x80\xdc\x6a\x56\x89\x11\x72\x15\xf7\x96\xf9\x6b\x4f\xa1\xeb\x22\x40\x73\x73\x21\x44\x75\x7a\xf2\x6e\x7a\x71\x75\x43\x4a\x0f\xa3\x15\xe0\x23\x5f\xeb\x4a\xe7\x3b\xef\xdd\x66\x86\x7b\x51\xf2\xad\x13\xa8\x79\xf0\x96\x15\x25\xdb\x94\x13\x89\x4f\x46\xdc\xdb\x26\x5f\x18\x66\xbe\x3d\x1d\xfa\x43\x18\xf5\x78\xa9\xe8\xa7\xf3\x34\x0a\x39\xd1\x03\xf1\xb4\x88\x04\x2a\xf0\xad\x27\x05\xa2\x2b\x0d\x92\xb2\xe2\xca\x87\x6a\x6f\x86\xad\xf2\x77\xd0\x3c\x99\xfb\xdf\xc2\x47\x71\x47\x5b\xef\x78\xad\x1b\x35\x88\xdd\x55\x27\x08\x90\x21\x38\x4d\x8a\xe4\xc1\x69\x6f\xca\x52\x88\x59\x71\x0f\x8f\xd5\x04\x22\x32\x91\x68\x1c\x82\xd2\x3a\xea\xf1\x7e\x81\xc9\xba\x86\x21\x36\x3a\x04\x41\xf6\x2d\xd4\x40\xc6\x5a\x25\x6c\xed\xcc\x58\x5b\xfd\x4c\x82\x63\x5e\x93\x67\xfb\x46\x54\xda\x29\x9f\xe0\xad\x70\xb2\xff\x2f\x63\x67\x72\x35\x3d\xcb\x34\x69\x57\xda\x04\x89\x99\xcd\xef\x8b\x54\x55\xb7\xff\x26\xf4\x51\xc4\x15\xfa\x96\xcf\xbb\xcc\x03\x02\xc4\x90\x24\x39\x05\xf7\x0f\xe9\x64\x73\x54\x3e\xf6\x79\xe0\x2f\x3e\xce\xc8\xc2\xdd\x2c\xcb\x76\x27\x33\x6a\x70\x67\x8f\x7c\x27\xdc\x59\x78\x8c\xa3\xeb\xc8\x97\x73\x7f\x9c\x56\xe1\xed\xc1\xa7\x2f\xdd\x9b\x71\xed\x90\x7f\x6a\x86\xbf\x80\x8d\x70\xfc\x8c\x49\x4b\xee\x18\x63\xd2\xae\xe8\x3b\x04\x49\xdb\x1a\x97\xd1\x47\x7a\xe1\x7d\x84\xf2\x3e\xd9\xf9\x70\xc9\x37\x8a\x5f\x94\xee\x8d\xe4\x93\xf7\xc7\xf9\xa4\x60\x9c\x5f\x2f\x5b\xda\x51\xb0\xdd\xce\xce\x74\x0a\xd9\xa8\xd7\x6d\x20\x6f\x9b\x05\xff\xfa\xfe\xe3\xfe\xf9\x02\x66\x52\xa0\xe4\xbb\x00\x1f\xff\x02\xc1\x19\x4a\x0f\x33\xee\x66\x45\xbe\xd5\xec\x68\x47\xbe\xb5\xfd\x1f\x5c\xa8\x6f\xa7\x9f\x25\xc1\xae\x11\x61\x3b\xf9\x57\x41\x84\x6d\xe0\x0b\x1a\x11\x76\x65\xe6\x6c\x69\x6f\xbb\xe4\x4b\x21\x5d\x73\xe0\xbe\xf6\x9a\xde\xa9\xaa\xf4\x2d\xb0\x7c\xc5\xbe\xed\x13\xee\xa3\xd8\xb7\x45\x4c\xb6\x41\x5f\xcf\x86\x4b\xa9\x51\x5f\xfb\x86\xc5\x7e\x7d\xe0\x76\xcd\x97\xca\xfe\x77\x84\xd2\x0b\x73\xe7\x43\x21\xe2\x9e\x69\x95\x3c\xae\x0c\x40\x7a\xb3\x68\x1c\x0d\x01\xdb\x70\xb7\x35\x06\x6c\x27\x45\xf6\xad\xe0\xb7\x1d\x2d\xaa\x2c\xf8\x2b\x66\x39\x47\xbb\xe1\xfc\x1f\x98\xd7\x8d\xc8\x23\x93\xfd\xca\x21\xfb\x19\x79\x85\x69\xb5\xc9\x9e\x20\x1d\x60\x5e\x81\x55\x03\xca\x35\x9b\x43\x46\xf9\x4e\x1c\xd0\xad\x34\xb2\x05\x40\x2a\xe3\xb3\x2e\x52\x03\x1b\x83\xb5\x00\xef\x11\x5c\xd5\xd4\x34\xae\x2a\x5b\x55\x46\xf8\x15\x7b\x82\xe2\xce\x3a\xde\xd5\xc6\x5c\x3d\xdb\xce\x3f\x3d\x07\x77\x13\x15\x6d\x60\xd5\x1d\x65\xfb\xcf\x51\x8a\x88\x91\x3f\xbf\x46\x22\x64\xc8\x28\x8f\x2b\xa4\x41\x57\xfb\x86\x35\xfc\xcc\xfc\xe0\x45\x7f\x06\x18\xe0\x96\xf8\xb3\x0f\x21\x62\x83\x6c\xe9\x3d\x7a\x18\x05\x84\x2d\x1c\x24\x80\x4e\x8d\xe2\x43\x51\x5f\x7d\x73\x4e\x48\x6e\xfa\x96\x75\xa5\x5c\xe0\xbb\x6d\xbf\xa9\x94\xdd\x8a\x3a\x0f\xf5\x53\x7f\x0d\x4a\xe7\x9b\xd7\xa6\x33\x9d\xe2\x2f\x0e\xe6\x29\x31\x38\xc6\x3c\x5d\xd1\xde\xff\x19\xe2\x9e\x65\x31\x74\x69\xa4\xd2\x3f\xf3\x2c\x8e\x93\x22\xb0\x56\xce\x88\x22\xb0\x26\xa8\x3e\xf7\x9f\x9e\x5a\x07\xd7\xb7\xb0\x4a\xcf\x7e\xa4\x19\xe5\x11\x23\x23\x29\x58\xa5\xfd\xc8\xb8\x6f\x43\x3e\x31\x52\x09\xe2\xdd\x52\xc1\x5c\xb2\x72\x6f\x0f\xee\xa1\xfc\x10\x5c\x50\x8a\xab\xd7\x04\x4f\x23\x92\x9e\xdd\xa9\xda\x1f\x52\xe8\x67\xba\xdb\xa7\x41\x48\xf7\xb9\x28\x93\x70\xd1\x0f\x3d\x21\x1e\x52\x90\x1c\xba\xf9\xa6\x61\x47\xa7\xa1\x93\x1e\x4a\xf7\xe0\x4c\x4d\xc1\x4b\x1e\x2d\xed\xe8\x58\x96\x14\x8a\x69\x96\x7c\xf8\x71\xd5\xb4\xfa\x95\x7f\x4e\x81\xfa\xb9\x90\x9f\x34\xe6\x96\x0e\xdb\x34\x28\xe9\xf6\xab\xed\xa1\xaa\x5a\xe5\x97\x2f\x6b\xa5\x52\x53\x83\xdb\x94\x3d\xab\xb3\xfd\x2e\x78\x28\xbd\xf6\x1c\x84\xfd\x90\x42\x99\xda\x0c\x55\x2a\x5b\xeb\x4c\x1e\x4a\x5b\xb3\xe6\xc3\x9f\xdc\xcf\xe8\x82\xe5\x18\x6e\x46\xc1\x54\xfb\x9c\xff\x04\x76\x79\xaa\x0a\x48\x6d\x17\x28\x05\x16\xb6\x0d\xa5\x6d\x55\x29\x63\x39\xd6\x09\x79\x8a\x69\x37\xa8\xe7\x34\x38\xd0\xfb\xa1\x94\x76\xa0\x1f\x50\x5f\x75\x41\xa3\x3e\x0d\xac\xbf\x42\x9b\x96\x23\xd2\xa6\x11\x44\x97\xa3\xd5\xa6\x11\x44\xb7\x93\x1e\x4c\xe3\x82\x16\x27\x10\x9f\xc6\x05\x1d\x86\x92\x9d\xc6\x05\x2d\xb6\xc8\x4d\x70\x41\xfb\x79\xa4\x99\x3f\x5b\xdd\x4d\x29\x24\xda\x3b\xfe\xa1\x94\x98\xe8\xa4\xe6\xad\xa0\xef\x83\x0e\x75\x67\xf7\x33\xad\x5a\x7d\x99\xd1\xc8\x96\x36\x5a\x9a\xf9\xba\x2a\xc3\xd1\x85\x5e\x67\x7a\x54\x6a\xdd\xe9\xa5\x91\xa1\x77\x58\x29\xff\x50\x4e\x87\xb3\xa1\xb6\x84\xab\x01\x45\x56\x33\xa8\x9f\x4c\x72\x94\x89\x15\x39\xe8\x7a\x82\x04\xda\x4f\x7e\xaa\x38\xc8\xf4\x0c\xa5\xe0\x95\x99\x0f\x9d\x18\x29\xd4\x96\xf4\xcc\x60\xb6\x73\x2f\x75\x28\x21\xf7\x1c\x74\xef\x2c\x55\x27\x1d\xca\x9f\xb4\x72\xf8\x1d\xc9\xe4\xd4\x4b\xd3\xc0\x9b\xc5\xf0\x5f\x13\xdc\xcd\xc2\x89\x36\xee\x66\x3f\x33\x6e\xb9\xd2\x0f\x4e\x9b\x71\x37\xbb\x31\xaf\x26\xc0\x9b\x27\xa7\x56\x68\x9a\x23\x0b\x25\x13\x28\xce\x40\x0f\x65\xfd\x01\xff\x24\x5b\x46\x3f\x33\x8b\x72\xc2\xb7\x65\x63\x1a\x69\x13\x04\xf7\x87\x32\x52\x9a\xcb\x2a\x2b\xb3\xa1\x84\xb8\xcc\x5e\x70\xea\xce\x36\x53\x53\xb1\x8a\xa3\x43\x29\xac\x6b\x4d\x28\xf1\x9e\x93\x7d\x2a\x8b\xe8\xb0\x59\xe1\xa1\x1e\xde\x9f\x59\x54\xc8\xd3\xb9\x39\x6c\x0a\x79\x2a\x8e\x3f\x9f\xc6\xe4\x3c\xbb\xb5\x50\xd3\xa0\x9c\xad\xc3\x5f\x65\xcb\x6c\x07\x87\x46\x26\xc9\x62\x74\xac\x87\xea\x46\x66\xa3\x1d\x3d\xae\xfd\x62\x9f\x46\xda\xac\x95\x19\x96\xb9\x72\x0c\xf6\x89\xcc\x95\xe5\xa8\x69\xc6\xfd\xcf\xf4\x61\x35\x77\x28\xe5\xbb\xeb\xe9\xc2\x88\xe2\x29\xf3\xe1\x9b\xe9\x51\x08\x60\x83\x1e\x95\xe0\xb2\xc3\xfb\x94\xe0\xb2\x1a\x78\xf6\xa1\x96\x3e\x64\xab\xc8\x24\x59\x76\xd6\x46\x2b\x35\xf8\xd0\xe8\x96\xf6\x22\x7b\x28\xd9\xce\x60\x3d\x0e\x79\xca\x48\x9b\x1d\x10\xf8\x7d\xe5\x9e\x3c\x7b\x39\x52\x28\x38\x8a\x97\xd2\xc9\x38\x27\x94\x73\xcf\x1d\xf9\x52\x53\xd5\xe8\xdf\xae\x69\xec\x22\xe7\x9e\x1c\xcc\x46\x93\x7f\x69\x26\x55\x46\xbf\x12\x2e\xad\x64\x8f\xc3\x6f\xde\xb9\x88\xaa\x3a\xcf\x7f\x33\xe9\xc6\x41\xa1\x43\xeb\x20\x8a\x7f\x5f\xc6\xb1\x31\x38\xfb\x32\x79\x2d\x7b\x81\x4f\x03\x5a\x8e\xc1\x39\xb1\xc5\xab\x97\x96\x42\x23\x5a\x2e\xa8\xaf\x0b\x27\xa4\x4c\x5e\x95\xaa\xf2\x60\x6e\x5c\x3d\xdd\x7c\xa2\x9c\x50\xfe\x70\xa4\x50\x41\x76\x9c\x69\x65\x54\xdc\x6f\x1f\x12\xfb\x7b\xe1\x0a\x17\x32\x65\x71\xf4\xf9\x43\x75\x17\x32\x58\xc5\x60\x8d\x96\xc2\x29\x54\x26\xfa\xf0\xc6\xcd\x04\x18\xc1\xff\xed\x43\x7e\x5c\x5c\xef\xfd\x62\x70\x29\x94\xb6\x80\x33\xa6\x5c\x8c\xc3\x06\xc9\x69\x28\xca\x61\x23\xdb\x43\xb9\x0b\xfe\x5f\x1c\xa6\x97\x19\xd2\xd3\xca\x54\x39\x65\x1e\x1f\x0e\xa2\x09\x4e\xa8\x4b\xfe\x40\x13\x4a\xe7\x16\xd6\x20\xbb\xd2\x9a\x48\x1e\x46\x94\xec\x05\x06\x3f\xcc\xc3\x7b\x0a\x95\x63\x06\x41\xc0\xa1\x53\x03\x59\x43\x89\x10\x89\x94\x7d\x28\xf9\x02\xb2\x35\x65\x56\x1a\x83\x0b\x7c\x78\xda\xd2\x8a\x26\x6a\x50\x51\xa8\xb7\x2d\x8d\x98\x13\x57\xa6\x74\x30\x33\xa9\xda\x5c\x18\x52\xdb\x8f\xad\xa1\xd4\x82\x63\xc0\x60\x04\x21\x39\x17\x67\xd1\x10\x92\xe0\x5c\xcc\x65\xa3\x0f\x70\x21\x0f\x79\xea\x17\x0b\x94\x47\x40\x9f\xd3\x69\x64\xd8\xe3\x02\x98\x9c\x0b\xd6\x38\x9d\xfe\x85\xa5\x51\x1a\xc0\x65\xf0\x8e\x09\x52\x64\x0f\xc3\x73\xd0\x93\x93\x9d\x3e\x94\x22\x2e\x39\xfe\xb2\xe5\x2c\x2b\x92\x1e\x4a\xbb\xa8\xa6\x99\x3f\xad\x14\x14\x93\x1a\x4a\xe9\x06\xb8\xfc\x64\x9f\x99\x13\xae\x39\x0d\x81\x5e\x43\x29\xbd\xd9\xc8\x77\x8f\x18\x74\x70\x31\xc8\xae\xb2\x8e\xfc\xae\x67\x91\xc3\x07\x14\x64\x49\x4d\xed\xe8\xca\x51\x50\x24\xd5\x6e\xf9\x25\xa6\x98\xcb\x77\x39\x50\x1a\xf1\x75\x39\xff\x3f\xc7\x76\x19\xeb\x14\xc6\x2c\xf8\xc3\x15\x29\x70\x59\x28\xae\xec\x45\xe7\xe5\x1b\x08\x22\x8b\x5d\xb4\xa0\xb6\x33\xe3\xa4\x50\x26\x76\x2e\x38\xe3\x16\xf6\x76\xa4\xee\x47\xee\x57\x0c\x47\x01\xb7\x3d\x65\xcf\x06\xdc\x9c\x0c\x83\x0d\xf6\x8c\xc6\xd1\xb7\x5c\x4c\x4a\xa7\x77\xce\x33\x8d\xc8\xf5\x13\x41\x53\x66\x85\xbd\xd3\x88\xdf\xe6\x69\x5f\xf1\xa5\x67\x9a\xbc\xe5\x23\x9b\x9a\xce\xee\xc3\x5a\x28\x70\xaa\xda\x63\x77\x1a\xb2\x70\x3e\x2f\xe5\x7f\x72\xe9\x65\xc0\x7f\x3e\x74\x18\xd5\x71\x86\x5a\x4a\x76\x13\x4a\x33\x01\xe7\x93\xa5\x62\x74\x36\xa2\xf2\xec\x8d\xce\xc5\xe3\xec\x79\x9d\xe9\xb5\x69\xa2\xe7\x94\xc8\x34\xb1\x1b\xb3\xad\x88\xab\x76\xb0\xf5\x1d\x71\xd5\xb3\x85\x0d\x45\xb8\xcf\xb4\xea\x3f\x66\xdb\x6c\xa7\x73\x83\x49\x3a\xf1\x5e\x6f\x35\xe3\x51\x36\x5f\x56\xdf\xd1\x59\xbd\xb1\x37\xb7\xa3\xe3\xb8\x17\x15\x9d\x55\x32\x73\xdb\xa9\xcf\x46\x28\x41\xb9\x75\x46\x2e\x7d\x40\x6f\xef\x87\xe2\x61\xec\x29\xd9\x4a\x46\x1b\xe9\x42\x89\xff\xd8\xef\x5b\x89\xd0\x2a\x6f\x10\x65\xda\xab\x27\xc2\xb4\xb1\x09\xc3\x96\x95\x5a\xaf\x2e\xb6\x94\xb0\x09\x57\x76\xb4\x03\xc0\x16\x57\xcd\xe5\xbc\x04\x2c\x3f\xa9\xf4\x98\xc6\xcb\xcf\xd5\x9a\xb2\x5b\x65\xa1\x3c\x8b\xf0\xfa\xcb\x3e\xda\x33\x8d\x7a\x16\x39\x60\x97\x73\x29\xc2\xa5\x84\x5c\x38\x1a\x0f\x84\xcb\x59\xaf\x39\xe0\x97\x13\x1d\x0e\xca\x9c\x5b\x8f\x29\x95\xf9\x63\xe5\x8e\x32\xe4\x5f\x39\x52\xf6\xfd\xbf\xff\xd7\x23\xf8\x5c\x16\xc3\x1a\x92\x87\x6c\x23\x67\xae\x6c\xd9\x46\x7a\xa4\x22\xdb\x3b\x22\xf8\x5c\x09\x6d\xa0\x0f\x3d\x89\x22\x41\x5c\x38\x1b\x7a\x6e\x64\xb6\x58\x0b\xc1\x53\x56\x8b\x9e\x2e\x6e\x0b\xcc\x5c\x0b\xb2\x5a\xf4\x8c\xfb\xc6\x2b\x35\xdf\xe9\x64\xc0\x78\x65\x7b\xe8\x91\x66\x64\x7a\xe8\xb9\xe8\x0d\xce\xd7\x3b\xcb\x6d\xdb\x43\x1e\x1a\x36\x3d\xf4\x9c\x22\xd9\x1e\x7a\xee\x76\x59\x10\xce\x05\xaf\x11\xc8\xde\xd9\x3b\x8f\x09\xe5\xf6\x2b\xf5\x6d\xd5\x5e\x83\x69\xd5\x5d\x32\xab\xb2\x28\x9c\x9b\x5d\x6b\x8b\x42\xde\xb5\xd2\xfd\xf7\xcc\x94\x74\xff\x3d\x7b\x51\xba\xff\xb3\xd7\x94\x09\x76\x8d\xa5\xb9\x9d\x95\x80\x77\xa5\xec\x02\x3d\x72\x87\x73\x02\xbe\xff\xa4\xb8\xd0\x9a\x19\xbe\xfd\x87\xfc\x93\x5c\xbf\x72\xd3\xdf\x5e\x52\xae\x13\x99\x0c\x7a\xae\x68\x99\x0c\x4a\x67\xb9\x65\x32\x58\xff\x2b\x93\xb2\x6f\xa5\x95\xaf\x32\x47\xbb\x3f\x1b\x10\x7a\xa7\xc3\x8f\x97\xbb\xa6\xb0\xb8\x70\x43\x7a\x34\x15\xea\x12\x95\x32\xdd\xd7\xec\x68\x59\x10\x7a\xee\x96\x8f\x05\xf4\xce\x4d\x6b\x13\x42\xa4\x09\xe7\xf6\x2b\xfc\xbe\x52\xfb\xf5\xdc\x91\x86\xb9\x9b\xf3\x3f\x70\x69\xe7\xfd\x3b\x47\x9a\xd1\x7e\xcb\x3f\x4a\x37\x11\x31\x5f\x76\x89\x9e\x9b\xce\x30\x77\x79\xf1\x0b\xca\xae\x0f\xee\x32\x19\x22\x6a\x1e\x2b\x1f\xb2\xec\x84\x72\xa8\x4a\xbe\xfb\xe8\x3b\x86\x4d\x7e\x67\xc4\x3c\x59\x22\xea\x66\x9b\xca\xd6\xd0\xed\x07\xf1\x50\xc2\x05\xed\xa1\xba\x3f\x64\x16\x8d\xe3\xdd\x99\xc5\xdb\xd1\xa6\xf4\x21\x8d\xf5\x68\x29\xd3\xbe\x44\xd0\xfb\xf8\xad\xdc\x91\xdd\x3f\xb7\x94\x71\xec\xfd\x8f\x01\xc0\x57\xaa\x1a\x46\xdf\x6b\xf1\x65\x33\x20\xcc\xd8\x2c\x11\xf5\x87\x10\xf2\xd6\x84\x83\x09\x20\x6f\x85\x9f\x7c\x7d\xbe\xb9\xb0\x15\xc5\xd7\x07\x2f\xe0\x2f\x47\x18\x0e\xaa\xfc\x7c\xa3\xf2\x53\x5f\xaf\x37\x57\xa6\x82\xfa\xfa\xe0\x36\x51\xee\xbc\xb9\xd2\x85\x45\x92\x8e\x66\xee\x6b\x18\xfb\x33\x85\xfe\xc5\x7c\xa8\xd5\xe0\x8e\xc0\xb6\x30\x53\xf6\x73\x33\x03\x52\x07\x93\x95\xfa\x02\xf1\x10\xca\x03\x47\x6d\xe7\x90\xbf\x83\xad\xa9\xe4\x79\x2b\xcf\x63\x27\xcf\xeb\x03\xdd\x14\xc6\x05\x56\xfc\x4b\xb6\xce\x54\xdd\xae\xca\x2f\x4b\x82\xc9\xd1\x90\x71\x61\x65\xdf\x7e\xad\xb8\x3d\x33\x9c\xaf\x3f\xe4\x47\xe4\x95\x6b\xbb\xeb\x43\xfd\xb9\xd0\xed\xc8\xf2\xb0\xcf\x33\x54\x53\x2e\xee\x13\x6a\xca\xd4\x99\xb2\xe5\x0f\x37\xa4\x52\x5c\x33\xad\xce\xb3\xd7\xc7\x4b\x3a\xd3\x66\xa8\xe7\x3e\x3f\x11\x2f\x84\x44\x37\x4e\xc4\x02\xc5\x03\x96\xa8\x60\x7e\xb8\xda\x76\xa8\xe7\x26\x3c\x59\x0f\x25\xc4\x1b\x27\xec\xfe\x67\x87\x16\x66\xd5\x30\x70\x3d\x92\xfd\xcf\x47\x8e\x43\x26\xf3\xc2\x38\x11\x20\x0c\xf5\xb6\x59\xd5\x9f\x33\xeb\x20\x5e\xfd\xbc\x8e\xe1\x46\xb2\x3d\x94\x4c\xa3\xe3\x01\xa3\x62\x56\x90\xdf\x88\x96\x43\x41\x7e\x23\x0a\x6f\x63\xbb\x9d\xf0\x54\x59\x22\x46\xd4\x7f\xb2\x44\x9c\xef\x71\x74\x58\x5f\x94\x35\x7f\x4a\x81\x79\xae\x7c\xb8\x55\xb6\xa1\x2e\xbd\xab\x3b\x94\xfc\xae\x57\xa8\x9f\x71\x08\x43\x7a\xde\xbc\x6e\xca\x63\x77\x46\xe3\xf7\xe7\xd9\xe7\x88\x39\xe5\xdc\x09\xbf\x97\x9d\x62\x9c\x28\xb2\x9c\x39\xae\x0f\x8e\xb1\x0c\x15\xad\xc3\x0d\x94\x1c\x6e\x9c\x88\x61\x7f\xc6\x46\x18\xac\xd4\x9f\x9e\x3d\x51\x7a\xfc\x59\xd4\xcb\x36\x72\x22\xb9\x73\xfd\x33\xce\x65\x1a\xb0\xed\x3c\xd8\xa9\xca\x1d\x37\x4e\xee\x0d\x5b\x23\xc2\xa9\xb1\x46\xd8\x27\x75\xee\x43\xcf\x45\x34\x49\xfb\x90\xb8\xd1\xed\x4e\x3a\x01\x4c\x33\xb8\xdf\x43\xc9\xba\x58\x42\x49\x01\xeb\xbb\x71\x3b\x05\x9c\x8d\xeb\xd3\x08\x69\x03\x4b\x85\x11\xd2\x2a\xfc\x6f\x1f\x4e\xd6\x77\xa4\xec\x56\xcd\x6d\x4a\xae\x2f\xdc\x22\xfb\xf0\xc4\x6d\xda\x94\x88\x8c\xd9\x64\xcb\x6a\x70\xf6\x99\xc1\xe8\xa1\x85\x81\x61\x1f\xe6\x6a\xf6\x5f\x98\xc6\x3d\x1b\xe8\xc6\xc1\x3d\xeb\xce\xce\x38\x8d\x7b\x36\x30\x38\x80\x7b\xd6\xed\xa5\xf6\x90\x5a\xe5\xcd\x3f\xea\x38\xf4\x59\x18\x90\x1e\x65\x67\xa6\x4a\xf9\xf9\x7a\x7e\xd9\x49\xae\x3b\xad\x4a\xf4\xb6\x1b\xea\x34\x26\x5a\xd9\x2d\x65\x32\x1a\xcf\x50\x0a\xb2\x35\xcb\x05\xf6\xac\xdb\xdb\x69\x6e\x52\xc2\x99\xc7\x6d\x25\x65\xdb\x8e\x09\x9a\x9b\x94\x68\x07\x35\x0d\xda\x3d\xcd\xac\xf7\xe9\x34\x40\x47\xa8\xe5\xc2\xd4\x55\x8a\x26\xf3\x91\x7d\xea\x29\xb4\xfd\x9e\xd8\x27\xab\xc3\x70\xa4\xcb\x72\x24\xed\x04\xbf\xac\x3b\xc9\xfe\x34\x7e\x59\xb5\xc9\x6b\x1a\xbf\x0c\xb4\xa2\xb9\x31\x5c\x34\x06\xfe\xac\xce\x9a\x2f\x25\xbf\x4c\xe6\xff\x74\xae\x4c\xf3\x98\x2d\xfb\xc3\xb9\x32\x50\x89\xd7\x0e\x35\x99\x9b\xec\x69\xcc\xe9\xe9\xc4\x7a\x99\x0c\x6f\x71\xbb\xfa\x4c\x23\x94\x9d\x7d\xb2\x8d\x15\xf6\x55\xec\x34\x38\x0d\x3b\x36\x30\x00\x18\x76\xec\xa9\x9a\x42\x25\xb8\x78\x0b\x2f\x17\x76\x48\xe5\x9d\x3a\x53\x55\x23\x38\xd3\x87\x47\x60\x2e\xb7\x8b\x73\x4b\x9d\xa1\x3c\x8f\x8c\xce\xf3\xb8\x38\x10\xc5\x99\x4d\x4f\xfa\x70\x16\x0b\xe6\x43\x71\x57\xbb\xa6\x47\x67\xac\x3b\x69\x46\xb7\xec\xc1\x79\x90\x62\x7f\x20\xff\x19\x93\x6b\xdb\xbb\x65\x02\x82\xe5\x04\xf4\xd3\x58\x56\xbb\x32\x18\x65\x24\x1b\x85\x56\x8c\x56\x85\xc3\xfa\x34\x5a\xd5\x86\xad\x1a\x82\x6a\x3b\xf1\xd3\x43\xdd\xae\x4a\xab\x4e\xba\x59\xf3\xa1\x7f\xb1\xa5\x93\xe7\x17\x0d\x03\x38\x41\xa4\xc2\x9f\x7d\x1a\x91\x6a\x6c\x98\x85\x11\xa9\x70\xbc\x9f\x46\xa4\x02\x54\x7c\x82\x48\x75\x9c\xa1\xa4\x05\x2c\x8c\xc7\x1a\x52\xde\xd0\x06\xa4\xaa\x33\xff\x2c\xd9\x71\x71\x58\xaa\x1f\xcd\x9c\x8e\x0a\xac\x10\x65\x96\x1d\xed\xd0\xfd\x90\xf2\xf6\x81\x3f\x55\xe3\x0a\x75\x7a\x34\x62\xe1\xf1\x6f\x66\x6d\xec\xa8\xd6\xd8\x1c\x8a\xd2\xd9\x3c\xd3\xb7\xa2\x74\x7a\xe1\xe4\x36\xdf\x56\x6b\x85\x74\x1f\xee\xb1\xd9\xc8\xb8\xd8\xac\x4a\x59\x36\xd0\x2e\x19\x58\xea\xc4\x71\x70\x1a\x59\x6a\xa0\x5d\x32\x3c\xd4\x89\x9c\x6d\x78\xa8\xee\x1c\x00\xd3\xf0\x50\xd5\x49\xa9\xa7\xd1\xa1\x4e\x1c\xca\xa6\xe1\xa1\x2a\x92\xe5\x6e\x3a\xe5\x58\x53\x8c\x07\x35\x27\xcc\x42\x39\xd2\x4e\xbc\x58\xa6\x01\xa1\x6a\xe5\x08\xb6\xcb\x11\xbb\xf4\x21\xf9\xa4\xe5\x1f\x2d\x9f\xac\x9d\x56\x15\xa7\x06\x0b\x16\x5a\xd4\xd8\xef\x87\xba\xf4\x46\xca\x34\x57\xfb\x48\x1f\x32\xc8\x36\x28\x09\x2f\xc8\xd2\xbb\x39\x6b\xd0\x0c\xa5\xe4\x6e\x5c\x08\x0a\x0c\xaa\x95\x0d\xe8\xc0\x20\xfc\xc4\xa6\x61\xa6\xce\x5c\x88\xcd\x02\xea\x3e\xf2\xa5\xd4\x36\x19\x8e\xbd\xb8\x57\xca\xb6\xab\xa6\xd9\xe7\x7c\x3a\x0d\xea\x04\x66\xca\x78\x1d\xd3\x30\x53\x03\x6b\x96\x61\xa6\x4e\x5c\xb5\xe6\x56\x9c\xd0\x70\x52\xd4\x09\xea\x94\xb3\x19\x4f\xa3\x4e\x8d\xb0\x39\x59\x30\x46\x78\xa0\x0d\x18\x85\x03\x89\x01\x63\x73\x94\x65\xc0\x18\x93\x3b\x48\x31\x3b\x75\x32\x70\x85\xde\x14\x83\x19\x4c\xb0\xa4\x50\x5c\x18\x4b\xaa\x1f\x25\x35\xd5\xe1\x4a\x99\x80\x5c\x32\x34\xf9\x0a\x54\x78\xb7\x2c\x1d\x13\x99\x73\xcb\x98\x51\x06\xcb\x4f\x6c\x4d\x86\xed\xe8\x8a\x23\x94\x52\xec\xc0\xff\x6c\x92\x78\xc7\x29\x13\x68\xb7\x07\xd1\x34\x3c\xd4\x89\x85\xc0\xf0\x50\xe7\xbb\x19\x94\x33\x6e\xda\x67\x70\x02\x0f\xd5\x37\x17\x92\x43\x6f\x70\x9d\xd8\xce\x19\x37\x33\x38\x9d\xf1\x93\x32\x25\x82\x1b\xb9\x2b\x06\xa1\x56\x1d\x4a\xa0\x42\x30\x67\x61\x47\x4d\xde\x55\x7b\x38\x07\x01\x17\xe7\xf0\x29\xe6\xb5\x6a\xf0\xa8\x86\xb0\x6c\xf0\xa8\x79\x1c\x29\xf3\x3f\x76\x5a\x55\xde\x24\xf4\xa4\x86\x87\x3a\x7b\x56\x4a\xf8\x50\xf3\x48\x97\x4e\x82\x9b\xc1\x59\x02\x30\x60\xfd\x34\x3c\xd4\x39\x47\x3a\x51\x3c\xd5\x91\xb2\xaf\x9a\x29\x50\x3e\x62\x99\x00\xa9\x3b\xf1\xb2\x30\x3c\xd4\x3c\xb8\x65\x14\x97\xd3\x72\xa8\x1c\x97\xd3\x8d\xb3\xf3\x90\x55\x55\x69\x46\x19\x49\x98\xe2\xe1\x40\xc0\x9a\x8a\x8a\x67\x44\x3a\x90\x19\x66\x86\xe1\x03\xf8\x84\x52\x2b\x88\x4f\xef\x60\xa4\xc4\x1b\xcc\xcd\xad\xa1\x71\xad\xc9\x80\x33\x8f\x7f\xfb\x50\x3f\x55\x75\xe1\x64\x16\x01\x2b\x09\xb5\xd4\xcc\x84\x52\x50\x1a\x12\xa8\x80\xa2\xea\xc8\x60\x04\x66\x5c\x8f\x94\xfd\x14\x3f\x1f\xca\xe7\x9b\x05\x97\x31\x67\xe6\x48\xc9\x96\x33\x0f\x8e\x9b\x82\x7d\x26\x06\x42\xe3\x44\x9d\x67\x09\x65\x56\xc4\xb9\x51\xb4\x4f\xeb\xcc\x94\x8c\x40\x2d\x77\xca\x94\xe0\x5e\x66\x3e\xbc\xa4\x18\x9d\x50\x5a\x6e\x24\x5c\x19\x88\xda\xdb\x05\xbb\x0f\x36\x25\x03\x51\xeb\xec\x62\x19\x88\xce\x5d\x53\x55\x9b\x8f\x7b\xda\x71\x41\xdd\xb9\x7b\x1e\x52\xbb\x8f\xb9\xb1\x2d\xe9\xac\xe9\xf1\x72\xd5\xb4\x23\x53\xfa\x4a\x1f\xc2\x98\xc9\x4f\x49\x81\xde\xd3\xa3\x77\x54\xa1\xe6\xa5\x99\xca\xc0\x2d\x0b\x6c\x1e\x12\xb6\x3b\x1d\x85\xd1\x3c\x52\xd4\x0c\x9f\x12\x34\xd5\x3c\x10\x22\xa6\xdf\x11\x7b\xa7\x55\xe1\x3c\x1c\xe9\xff\x56\x55\x26\xdc\x91\xc7\x5c\x7e\xd3\x3b\xac\x86\x12\x2f\xe2\x46\x95\xc1\xea\xcc\xf2\xcb\x60\x35\xf1\xf0\xda\xb2\x49\xcd\x83\xc9\x50\x72\xbf\x89\x6e\x24\xb8\x55\x70\x77\x60\xab\x5a\xca\xf4\xf7\x56\x30\xee\xa5\x47\xdc\xc8\xae\x55\x1c\xd0\xc4\x33\xcc\x30\x56\xf3\x68\x29\x53\xbe\xc4\xb7\xcc\x83\x59\x50\xca\xc8\x89\x24\x24\x1b\xd8\x3c\x38\x97\x8a\xe6\x99\x38\x8d\x6d\x05\xf3\x9c\x23\xfb\x54\xd1\x3c\x13\xef\x88\xbd\x94\xa8\xe8\x40\x86\x74\x6e\x41\x5c\xc8\xf6\xb2\x3b\x40\xb6\xbb\x2c\x6b\x13\x1b\x9c\x41\xad\x76\xae\x6c\x63\x5a\x45\xba\x58\xe6\x35\x48\x9b\x0a\x03\x9a\x2b\xbf\xaf\xdb\xc5\xf9\x41\x1f\xaa\xba\x0b\x1a\xb5\xbb\x3a\x3b\x53\x61\x40\x13\x1d\x8e\xc1\xb0\x6a\xcb\xd8\x64\x3f\x88\x1c\x20\x4b\xde\xd3\x0c\x13\x6e\x34\x80\x1d\x4a\xa1\xfc\x67\x3e\x54\xfa\xa9\x95\xb1\x7d\xfc\x61\x86\xa3\x03\x96\x9f\x32\x5f\x42\x9c\x52\x18\xd0\x44\xbb\x6f\x9c\x2c\xf2\xc6\x4c\xe3\x64\x4d\xcc\xe1\x5b\xc6\xbb\x9a\xa7\x87\x2c\x74\x7b\xbc\xad\x68\x11\xb3\x33\xec\x0c\xf2\x6e\x22\x59\xe8\x0e\x0e\xed\xf2\x76\x43\x46\xde\xde\x6e\x08\xe9\xc2\xcc\x7a\x3e\x9c\x90\xc2\x49\xac\xa9\xea\x91\x36\x28\xcf\x0d\x7b\x6a\xeb\xd1\x34\xde\x76\x64\x1d\x5e\x10\xfe\x7b\xda\xf4\xfd\xc5\x6d\xb6\x49\x5d\x90\xef\xcc\x42\xc6\xbf\x3d\x3e\x8c\x93\x75\x8e\x4c\xaa\x2d\x7d\xa8\x6d\xb7\xcc\x77\xf3\x18\x29\xf3\x74\x64\xe4\xdb\xd3\xc1\xe8\x94\x2b\x79\x86\x32\xd8\x29\x72\xd7\x56\x30\x59\x36\xbc\x50\xb3\xf6\x78\xa9\xfe\x7f\xff\x6f\x61\x91\x33\x68\xd6\xd3\x05\x3f\x29\xc7\x3c\x94\xdf\x80\x66\x8d\xb7\x47\xf9\xf6\x8e\x8c\x06\x61\x27\x13\x62\x06\xc3\x33\x69\xcb\x2b\x7f\xcc\xb4\xa3\x95\x63\x73\x08\x60\x6b\xe1\x1c\xb2\x95\xdb\x71\xf5\xcc\xe3\x6d\x7c\x3b\xbe\x93\x50\x9a\xe7\xcc\xb6\xd7\x75\x16\x47\x1b\x67\x9f\x69\xf3\x79\x33\xee\x54\x7c\x8e\x22\xbb\xdd\x58\x5b\x23\x62\xb7\xb1\xb6\x1a\x52\xb7\xb1\xb6\xc6\x31\x43\x3a\x4f\x54\x87\xf2\x12\x73\x63\x2b\x08\xab\xe4\xe9\x7d\x39\xe3\xce\x99\xaa\x8f\x2c\xbb\x7b\xfa\x10\x0e\x6b\x4f\x4d\xbd\x1f\x99\x43\xe5\x92\xdc\x9c\x76\x19\x0b\x9f\x1e\x52\x56\x55\x73\x43\xe9\x11\xc8\xaa\x5d\xd2\x7b\x44\x5c\xba\xb6\x20\x83\xb9\xcc\x2f\x25\x54\x8a\x7c\x74\x19\xdb\x0c\xc1\xe6\x02\x17\x88\xef\x9e\xe9\x9d\xe8\xc8\xb7\xa3\xa3\xc6\xc9\x15\x21\x6b\xe1\x3c\xf3\x83\xb2\xb8\x0f\xe6\xfe\x32\xb0\xe4\xc9\xc5\xab\x78\xa8\xb5\xf2\x4f\xb7\x51\x61\x4d\xc9\x3e\xd8\xd0\xfb\x1a\xb4\xab\x61\x86\x30\x66\x57\xd9\xdc\x26\x8e\x5b\x1a\x27\x8f\xf2\xdb\xf7\x3e\x27\x41\x98\x5d\x4f\xe1\x84\xbc\x14\x66\x96\x2f\xbf\x8f\x2c\xbb\x43\x89\xf5\xa6\x15\xa5\x7c\x65\x7b\xcb\x92\xd8\x0e\xee\x72\x59\x12\xcb\x09\xe7\x75\x10\x13\xce\xc3\x5b\x31\x4c\xe7\x38\x91\xba\x6e\x27\x38\xae\x29\xec\x2e\xcc\x97\x46\x3b\x4a\x55\xe7\xcc\x2a\x50\x0e\xb9\xc8\x87\xb7\x1e\x92\x0c\x54\xc9\x69\x17\x8c\x50\x16\xc8\x12\x41\xd6\x06\xc8\x71\xc2\xb2\x65\x81\x5c\x27\xf7\x80\x62\x9a\x9e\x42\x5a\x95\x86\xea\x78\xbf\x6c\x0f\xeb\x67\x0f\x2b\xa6\x69\xcc\x9d\x66\xec\x24\x58\x52\x55\x21\x46\xec\xb0\xdb\x28\x6d\x3d\x1f\xda\xd1\x98\x1e\x6f\x0f\xa7\x86\x7c\x5e\xeb\x33\x6b\xa3\x27\xe8\x44\x98\xb8\xd9\x46\x30\xed\xdb\x50\xb7\xe9\x51\xbc\x7f\x67\x15\xfd\x3e\x69\xa1\xec\x2b\x91\x66\xc4\xec\xce\xcc\xe3\x6d\xcd\x77\x85\xfa\x73\xa1\x49\x5b\x2c\xc7\xc9\x78\x64\xb1\xac\x75\x85\x6a\xea\xa4\x43\x29\xfb\x7d\xcf\x87\x4e\x24\xfc\xef\xdc\xa6\x13\x18\xb3\x8a\x50\x6e\x18\xb3\x81\x43\x8a\x61\xcc\x46\x1e\x85\x1f\x9d\xce\xc9\xd5\xa4\x88\xa8\x31\x53\x13\x54\x5a\xff\xb3\xe3\xa3\xa2\x69\x73\x7c\xd4\xfb\x7a\x96\x21\x72\x84\x33\x1a\x8c\x2c\x8a\x4f\xe5\xfa\x3c\x63\xec\x30\x1a\x59\x6b\x25\x94\x1c\x44\x32\x1d\x52\x4b\xbe\xbf\xec\xa4\x0e\x58\x22\x8c\x22\x56\xe6\xa4\x50\x3e\x5e\xd1\x8a\xca\xd8\x58\x70\x2c\xd9\x1f\x27\x27\xe7\xb4\xc8\xd8\x38\x26\xd7\xfd\x07\x7e\x00\x5f\x71\x06\xd1\x01\x3f\x90\xb1\xf1\x8c\x0d\x61\x7f\xe4\x50\x8d\xcf\xb6\x21\xc6\x1a\x96\x5f\x43\x8c\xb5\x0e\x07\x12\xc2\xd8\x39\x4e\x8e\x8b\xd3\x8b\xce\x91\x0f\xa7\x06\xb0\xa1\x94\xe9\x36\x65\x9e\x71\x38\xe0\x57\xb6\xa6\xf2\x52\xf2\xa3\xe2\x17\x0d\xd4\xd5\x10\xcc\xbe\x9e\x70\x36\x99\x63\x97\x7a\x4d\x99\xe4\xd2\x68\x69\xbf\x3e\x57\xf0\x43\x87\x2e\x45\xd1\xf7\xf5\xda\x44\x47\x2a\xa3\xe5\x98\x23\xed\x68\x34\x25\x7d\xd8\x46\xed\x69\xc4\x10\x08\xb3\x92\x75\x6f\x60\x5d\x35\xa4\x56\x8b\xc9\x40\xc6\xbd\x31\x79\x91\xfe\xac\x57\x81\x01\xc8\xb6\x57\xe6\x0e\xa5\x67\x1f\x53\xaa\xe0\xa0\x31\xd9\xc4\xce\xd8\x39\xe9\x5d\xd6\xbb\xba\xb8\x7d\x6c\xbd\x9b\xec\xaf\x9f\x20\x04\xe6\x99\x32\xb9\x23\xb1\x15\x95\xaf\x73\x45\x97\xff\xf3\x1e\x2e\x2d\x64\xf9\xbf\xff\xd7\x4b\x3a\x94\x22\x2d\x72\xa8\x01\xac\x80\x81\x9a\x06\xb0\xaa\x67\x4d\xd5\xe5\xc2\x02\x29\x07\xf6\x9d\x2f\x9d\xfd\x8a\xc1\x59\xcb\x96\x27\xa2\x10\xac\x6a\x1e\xb3\x02\xb0\xda\x38\xe3\x81\x51\x95\xed\x2e\x4b\x5f\x1d\xbc\x5e\x8d\x51\x05\x2c\xd2\x04\xa3\x6a\x72\x4e\x64\xea\x6b\x39\x0b\x3f\x99\x61\x5b\xcf\x87\x9a\x46\xa4\x9b\x9f\xb3\xbf\x45\x3f\xa8\xd4\x9f\x93\x08\x89\xfd\xa7\x2c\x26\x8b\xe9\x90\x71\xaf\x47\x6a\xf8\x33\x0a\x3e\x73\xac\x3c\x98\x2b\xc2\x4e\xd2\x60\x4e\xa8\x8f\xae\x66\xca\x0c\x20\xc6\x5d\xfc\x27\x59\x0f\x9b\xdc\xfe\x63\xd7\x62\x78\x92\x35\xaf\xe1\x19\xb8\xff\x98\xff\x9d\x76\x9e\x13\x95\x57\xf0\x1f\xf3\xcf\x34\xca\x9a\x57\xa2\x85\xff\xb3\xb0\x17\x0d\x95\x22\x96\xca\xf9\x52\x52\x73\xb2\x8e\xb6\xed\xf5\x96\xd1\x3d\xa7\x2f\x93\xa1\xd0\xd8\x08\x11\x7f\x56\x5d\xb2\x6d\xff\x9c\xb6\x0a\xcd\xed\x9f\x41\xd0\xeb\xf1\xcf\x70\xc4\xa7\xae\xdc\x16\x31\x98\x29\xb6\xa9\x46\xb3\xef\x04\x9e\xc4\x21\x18\x5c\xaa\xe0\x63\x07\xb8\x14\x96\xc5\xeb\x90\xab\x18\x02\xf4\x75\x28\x6c\x16\x1d\x08\xf8\x51\xce\x9a\x32\x8d\x11\x55\x8f\x97\x92\xb6\xc4\x47\xd1\xb8\x4f\x03\x83\xa4\x71\x9f\xaa\xe3\x5d\xa7\x61\x9f\x4e\x10\x1d\x1e\x52\x16\x79\x5b\x3d\xaf\xc3\x12\x06\xbe\xb7\x06\x85\x22\x67\xd1\x43\x89\xdb\xe2\x88\x7c\xc9\x26\xd9\x98\xc6\x8b\x1c\x9d\x38\x0f\x5d\x8e\x6c\x02\xfe\xe0\x21\xc5\x37\x0e\x1a\x12\x18\x86\xb3\xda\x3f\x54\x73\x55\x46\x6b\x0e\x97\x19\xf0\xed\x93\x11\xd8\x4b\x3b\x83\xf5\x56\xc1\xdf\x17\x24\xaa\x79\xa4\x50\x1c\x27\xa3\xd3\x5d\x64\xec\xbf\x79\xc9\x08\x59\xd0\xc9\x5c\x36\x3b\xf2\x80\x36\x66\x55\x75\x32\xe7\x69\xcc\xaa\x66\x68\xff\x69\x94\xaa\x31\xb3\x1c\x96\x14\x88\x9f\x31\x4c\x55\xe9\x59\x55\x4b\x0a\xce\xbb\x3d\x0d\x53\x75\x62\xf7\x31\x14\xd5\x46\xcb\x6f\x28\xaa\x93\x04\xed\xd3\x58\x54\x27\x7a\x56\x63\x51\x9d\xa4\xc0\x9f\x06\xa3\x1a\xf3\x6d\x47\xe3\x39\x53\xd5\xe3\x69\x21\xa5\x9f\xb6\x3e\x03\x4c\x29\xb0\x03\xa6\x31\xa5\x06\x4e\xae\xc6\x94\x3a\xc9\xac\x3f\x0d\x2a\x55\x57\xda\x51\x3a\x22\xe7\x49\x7d\xa8\xaf\xb2\xe5\xd3\x8c\x9e\x74\x2d\xdf\x29\x0c\x8d\x77\x8b\xf1\x9f\xce\x51\x07\x63\x95\x3d\x19\x4e\x6e\xfc\xa7\x42\xbc\xc1\xa5\x58\xab\x56\xd2\xa1\xe5\x86\x93\xe9\xd0\x3b\xa2\xbc\xdf\x29\xbe\x85\x75\x3c\x0d\xd9\xd7\xe8\xc1\x72\x1c\x07\xc2\x26\x4a\x0c\xd6\x97\x4d\x94\xa3\x5a\xe0\xb9\x9c\x6e\xb2\xbd\x94\x92\x4e\xf4\x54\x7d\x18\xf7\x4b\x08\x50\xd2\x8c\xe3\x2a\x9a\x27\x94\x24\x97\x43\xa4\x46\x4d\x87\x7a\x36\x71\x51\x1a\x18\xaa\xce\x16\xca\xc9\x69\x3a\x94\x67\x66\xa7\x1d\xcd\x0c\x07\xa7\xd8\x20\xc0\xcc\xd8\xea\x89\x65\xdd\xb8\x50\x67\x96\xc2\x69\x2a\x07\x8f\xc8\x4b\x69\x2a\x07\x76\x76\x83\x46\x3d\x85\xb4\xea\x13\x57\x18\x80\x4f\x1c\x3e\xe5\x57\xf1\x89\x2b\xcc\x86\xb9\x33\xa6\x3d\x23\x4c\x9d\x4e\xc0\x34\x8d\x30\x75\xc6\xd2\x77\x29\x51\xe5\xea\xf9\x67\x5d\x79\xa8\x82\x8c\x29\x55\x76\x06\x2b\xbc\xa3\x93\xbd\x51\x6c\x85\xe0\xc4\x1b\x6f\xaa\xbf\x35\x8d\xd2\xc7\xc0\x6f\xef\xa9\xd4\xd4\x11\xe7\xc0\x17\x67\xf5\xa9\xf9\x4e\x0c\xa8\xfd\x3b\x21\xd3\x53\xf7\x23\xfb\x79\xbe\xfc\xfa\xcb\x0c\x5c\xef\x91\x1d\xea\xcf\x85\x1e\x79\xb5\xc8\xdf\x38\x81\x20\x5e\xb1\x5b\x94\xb9\xf2\x44\x11\x6c\xc0\xab\xe1\x04\x29\xd3\x80\x57\x85\x70\x2f\xe3\x5d\x9d\x46\xd9\x98\x97\x52\x55\x16\xde\xe6\x97\x2c\xc6\x83\x67\x8d\x01\xae\x0a\x4f\x37\xc3\x56\x0d\x9e\x7c\x46\xad\x5a\xce\x54\x31\x8d\x4c\xb5\x5b\xc6\x62\xd4\xe0\x9e\x32\xa1\x06\x67\x64\xe6\x8d\x35\x35\x95\x4e\xda\x6f\x9a\xab\x7a\x69\x6a\xa8\xea\x54\xa0\x34\x23\x3b\x2f\x4e\x51\x97\x4c\xb9\x05\xf5\xad\x71\xaa\x0a\x46\x8f\x4b\xf1\x54\x1b\x49\x09\x60\xaa\xe1\x2c\x62\xd3\xc0\x54\x05\xf9\xda\xc0\x54\x03\x7f\x0d\xa3\x4d\xcd\xc5\xd6\xb0\x05\xd6\x69\xb8\x1f\x4a\x18\x2b\x9c\x0d\x25\x4a\x1c\x44\x77\x01\x2f\x85\xa4\x72\xc9\x72\x7a\x92\xf9\xfa\x21\x15\xd3\x0e\x2b\x92\xb1\x74\x13\xaf\x79\xc9\x56\xba\xf0\x41\xb8\x64\x2b\x9d\xb8\xb1\x5f\x32\x79\x6e\x74\x3d\xe0\x52\x4d\xf6\x9b\xac\x91\xd5\xc9\xd4\x1f\x4a\x51\x80\x6f\x4d\x45\x01\x32\xdd\xc6\xac\x8a\xff\xbd\x41\xab\x6a\xcd\x5c\x78\x7f\xe1\x8e\x7f\xd9\x54\x89\x1e\xf0\x52\x46\xc3\x8a\xda\xfb\x52\x5e\xc2\x81\x6e\xf7\xea\x56\x5b\x74\xf8\xa4\xec\x98\xf5\xf0\xe3\xf3\xea\x16\x15\x58\xb6\xee\x20\xb5\x4e\x99\x2f\x75\x98\x91\xd1\xae\x06\xd7\x8d\x8c\x93\x03\xc5\x97\xd1\xae\x48\xda\x38\x2f\x02\xaf\x26\xdd\x4b\xb5\xdc\x53\xd3\x21\x2b\xec\xe0\x6e\x59\xbc\x97\x14\x2a\x0c\xaa\xf3\x87\x92\xc5\x77\x09\x35\x5c\x35\x5f\x6a\x34\xcc\x8d\xc2\xb0\x6a\xce\x93\x42\xad\xca\xc1\xa1\x25\x49\x60\x67\xa3\x76\x47\xbe\x75\x0a\x9d\x0d\x83\x6d\x83\x71\xf2\x2d\xdb\x8e\xa6\x63\x6e\x1c\x6a\xe5\x57\x9a\x11\xad\xda\x62\x6e\x86\x53\x88\x72\xa2\x14\x78\x55\xf2\x8f\xc3\x51\x71\x23\x65\x6e\xa5\x42\x7d\xe5\x9f\x99\x9a\x8e\xa0\x19\x50\x5a\x6f\xb8\xcb\xf0\x7c\x0f\x28\xb9\xaa\xe0\x36\x00\xf2\x14\x41\xa0\x80\x4b\xa1\x09\x02\x31\x0a\x47\x9e\x0b\xbb\x9d\x31\x2f\xe6\x25\xc3\xdd\x26\xbc\xc2\x70\x52\x73\xa5\x0b\x45\x5e\x81\x64\xf1\x90\xda\x19\x1c\x0c\x9b\xe3\x6a\x5a\x7d\x66\xa6\x45\x4a\x13\xd6\x54\xe9\x67\xa8\x8f\x9b\x09\xa9\x9c\x9d\x99\x0c\xfb\xf5\x72\x69\x0d\x36\x38\x42\x9b\xa2\xb2\xda\x71\xfe\x3b\x72\xdc\x98\x55\x35\x27\xc3\x11\x5b\x03\x67\xb1\xcb\x11\x5b\x88\xdb\x97\x2d\x79\xb9\x6e\x65\xac\x3b\xd1\x5a\x19\xec\xea\xf9\x30\xe4\x2d\xdf\xbd\x54\xf5\x8f\xec\x74\x22\xe4\x3b\xe6\x5c\x79\xfb\x4a\xb8\xb4\x0c\x7b\x05\x97\xa3\x4b\xb6\xbb\x81\xfd\xfb\x92\x79\xae\x60\xc6\x37\xbe\x55\x1b\xf0\x65\x59\xd9\xc6\x86\xbf\xca\xca\x76\x1a\x86\xf3\xa1\xc4\xa7\x88\xe6\xbc\x64\x65\xab\x27\x87\x71\x3a\xed\x3c\x53\x3e\x7d\xf5\x46\x18\x9f\x7e\x98\xf6\xf4\x71\xb9\x90\x81\x2b\x98\x7a\xb7\x54\xfd\xb8\x90\x7f\x94\x7c\xb5\x5b\x46\xf0\x73\x61\xfa\xfc\x93\x21\x9f\xaa\x52\xbf\xa1\xa8\xbb\xa6\x03\xd4\x33\x00\xbd\x4c\x71\x02\xbd\xa6\x37\x04\xf1\x08\x46\xe3\x2a\xd8\x41\x0c\xb8\x55\x71\x49\x33\xde\xd6\x99\x88\x3e\x03\x6e\x0d\x8c\x1d\x97\x8c\x72\x03\xcd\xf4\xa5\xf8\xb2\x41\x40\xd7\xe5\xfc\x7b\xc4\x6f\x5e\xcb\x2b\x37\xde\x3e\x14\x24\xc9\x7a\x28\xff\x5e\x6d\x88\x66\x4a\xaa\x37\x78\xfe\x5d\xb2\xb4\x9d\x79\x0e\xc9\x9a\xd6\x3a\x67\x7c\xd9\xcb\x0a\xf6\xbb\x8c\x34\x10\x8e\x6b\xe0\x2e\xbc\xee\x0c\xcd\x35\xfb\xa0\x7b\x1d\x48\x82\x81\x0c\xb0\x35\x51\x45\x5f\xcb\x67\x2e\x27\x59\x16\xab\x3a\xe1\x63\x0a\x30\x1b\x91\x37\x97\x53\x6f\x63\x82\x37\xfc\xd6\x20\x8c\xcb\xf0\x5b\xe7\x20\x48\xf9\x5a\x36\x44\xd4\x54\x15\x62\x4b\x49\x1f\x9a\xff\xb7\x47\xaf\xf1\x4c\x3b\xca\xaa\x07\x93\x95\x05\x6b\x47\xda\xdf\xcb\x1a\xa5\x0a\xf5\xf9\xbf\xff\xb7\xd1\x36\x5d\xdb\x6c\x8d\x29\x56\xc2\xbb\x35\xf3\x9d\x5e\x9c\x3b\xdf\x49\xfa\xcd\xa4\x2a\x86\x6b\x47\xbe\xb3\x89\x08\xd3\xde\x25\x63\xce\xc2\x59\xfc\xc2\x98\x93\x77\xa2\x8c\x39\xfb\x1d\x8c\x74\x28\x9b\x6b\x64\xdf\xf6\x24\xa7\x51\x39\x19\x0c\xc2\xef\xae\x7d\xdb\xe9\x3b\x55\xa5\xe0\x99\xa9\xaa\x5c\xb3\x47\x6a\x0a\xb4\x91\x2b\xe6\xb2\x35\x8f\x57\xb4\xc2\xb6\x6a\x5e\xe6\x97\xf9\x4f\x5e\x5b\x97\x5d\x80\x19\xdb\x65\xe7\x34\xb6\x34\x26\x9b\x3c\x76\x64\xb2\x99\x07\x6b\x7a\xf9\xde\x8e\x14\x23\x9b\xcd\xc4\xf4\x73\x29\xc4\xab\x9e\x1c\x86\xcb\x6e\x2d\xac\xb0\xcc\x34\xad\xf7\x94\xc9\xb6\xc9\x92\x5e\xf6\x72\x47\x88\x71\x8a\x3d\x54\xa6\x97\x32\xec\x95\x82\x64\xa0\x0c\x7b\x67\xe5\x86\x53\x86\xbd\x9a\x8d\xea\x0c\x7b\xaf\x60\xa8\x40\xb1\xd2\xce\x7f\x2b\x3f\x8c\x31\x36\x09\x0d\xbc\x2e\x27\x34\xcb\xb8\xed\x3a\x00\xc7\xbb\xac\xa4\x8c\xa0\x76\xd9\x77\x20\xc3\x61\x37\x30\x1c\x79\xb9\xe6\xaa\xba\xac\x6d\x8b\xbc\x77\xd9\xad\x65\xf2\x57\xb6\x10\x5b\xa3\x76\x5d\xc6\x53\x44\x82\xbe\x6c\x21\xe6\x05\xa3\x78\xb3\x1d\x79\xc7\x16\xa4\x33\xb3\x2f\xc5\x0c\x21\x47\x97\x53\xdf\x11\xf7\x7c\x39\xf5\x5d\x63\xf5\x9d\xfa\x2e\x7a\xe8\x4b\x26\xa4\x3d\x5e\x4a\x38\x2b\x5c\x14\x58\x90\x88\x9d\xb9\x6e\x3b\x92\xb2\x35\x6e\xa7\x94\x65\xa6\x64\xd0\xa9\x44\x06\x5e\xb7\x33\x36\x73\xc0\x1c\x36\x56\xb8\x61\x6c\xb4\x21\x8f\xc9\x25\xa3\x4d\x8b\x90\x2e\xb3\x4c\xa9\x2f\xa5\xb7\x1e\x5e\x73\x97\xec\x32\x75\xbc\x1f\x7a\x67\x76\x28\xcd\x37\x77\x91\x82\xc8\x4a\xe1\x64\xdc\xbe\x26\x70\x1c\xbb\xb0\xd2\xf0\x2c\xbb\x15\x1d\x84\x91\xe6\x92\x75\xa5\xe5\x59\x70\x3f\x33\x3c\x0b\x6c\xd2\x11\x5f\x44\xcb\x5f\x36\xae\x8c\x09\x9b\xb6\x75\x25\xc2\xfe\x87\x43\xc4\x2b\x59\x39\xe3\x36\xbf\xff\xe1\x0c\xc1\x8a\x3f\x3a\x43\x28\x7b\xaf\x0f\x13\xbe\x43\x6a\x00\x4c\xaa\xac\x29\x35\x87\x48\xc9\xe6\x26\xfe\xd7\xd7\xc7\x81\x0c\x0b\x66\xf4\xd9\xc6\x39\x0f\x65\xd0\xa1\x54\xed\xfa\xb0\x40\x6d\x51\x74\x68\xff\x8c\x75\x84\x34\x48\x01\x3d\xca\x78\x5e\x10\x29\x3e\x40\xd9\xc0\xb6\x64\x95\x99\x65\x85\x6a\xa2\x1a\x94\x7a\x5c\x8c\xc6\x62\x33\xe2\x17\x46\x99\xc5\x05\x2f\xa3\xcc\x89\x33\xde\xf5\xb1\x1e\x66\xb1\x73\x15\x3b\x36\x71\x64\xba\x14\x3b\x36\xf1\xb2\xb9\x3e\x46\x93\x18\xa9\xf9\xf5\x87\xa9\xea\x91\x7b\xe7\x28\x76\x6c\x66\x3b\x7e\x7c\xc3\xad\x12\xb2\xaa\x90\xb9\x92\xcb\x57\xe1\xfc\x61\xb2\xc9\x03\x4f\x26\x9b\x82\x27\xd3\x85\xc9\x66\x95\xd4\x35\xda\x6c\xba\xf4\x78\x78\x2a\x28\x7a\x6c\x86\xc7\x1b\x12\x6e\x2c\xce\xbc\x62\xc2\x66\x41\x56\x14\x24\xdc\xc4\x14\x67\x48\xb8\x49\xaa\x05\x20\xe1\xc6\xaa\x29\xdc\xc6\x97\x81\xf2\x52\xd6\xd4\x95\x0d\xa5\xa6\xf0\xa3\x3e\x0a\x94\x0d\xfc\x9e\x01\xc5\x9d\x95\x70\x20\xc5\x9d\x35\xf2\xde\x5c\x0a\x3b\xab\xb8\x6e\x5e\x5f\xab\x63\x57\x1a\xd5\x36\xab\x3b\x55\x75\x06\x08\x7f\xbe\xbe\x32\xf8\x9e\xf9\x2b\x7b\x70\xac\x96\x2e\x35\xcd\x6b\xfd\x9b\x5b\x7f\xad\x80\xc2\x45\xfd\x92\xd9\x6a\x96\x95\x11\xc8\x56\x7c\x66\x78\x1f\x57\x0d\xa9\xf3\xcb\x81\xfd\x7a\xbf\xf2\x96\xf9\xfa\xd5\xb7\x60\x0a\x32\x6a\xcd\xc2\xf1\x95\x6d\x6a\x4f\x78\xe2\xd7\x7b\x29\x7f\xe9\xbd\xc4\x79\x55\x70\xdb\x8c\x94\xa5\xe0\xb6\x49\x52\xa4\xcb\xc1\x6d\x83\xe4\x17\x06\xbb\x2b\x8d\x87\xc6\xd7\xb2\x13\xa9\x60\x40\xbb\xab\xe9\xd1\xb2\x13\xf6\x18\xa3\xdd\x4d\xec\x08\x97\x6c\x5c\x15\x4f\xd3\xeb\xcb\x56\x42\x06\xfe\x01\x71\xbe\xa1\x9e\xf1\x10\x5b\x60\x5c\xba\x95\xcb\xdb\xb8\x74\x63\xcd\x7c\x68\xfc\x13\x28\xb9\x82\x65\x38\xbf\xed\xc4\xca\xa1\x94\x27\x86\x73\xf7\xdb\x9c\xed\x02\x29\x59\x8a\x6b\x48\xd9\xf2\x26\x91\x07\xd7\x4f\xcb\x11\xfb\x80\x4d\x60\xab\x85\x7a\xe6\x91\xf8\xb9\x4b\x66\xad\x99\xa7\x9d\xac\x5a\x25\xf6\x01\x59\xb5\x26\x86\x34\xc3\xd9\x4d\x2c\x2e\x97\x8c\x5a\x93\xd8\xe5\x4b\x46\xad\x72\x22\x39\x2a\x9a\xad\x6e\x0e\xbd\xcc\x58\x93\x28\x9c\xeb\x77\xbb\x3f\x4f\xb7\x42\xd4\xd6\xc9\xeb\x44\x21\x6a\x93\x88\x8c\xeb\x4f\xd7\xec\x46\x1c\xfa\x33\xd7\xdf\x0c\x5b\xc8\x73\x8d\x84\x36\xd7\x1f\x19\x0f\x26\xd4\x72\xd5\x13\x72\xcb\x70\x95\xaa\xce\x30\xcf\x70\x84\x59\xb7\x23\x57\x0a\xb3\x6e\xd6\x0c\x67\x7b\x38\x0c\xd5\x5a\xdd\x9d\x4e\x94\x80\x94\xd0\x62\x20\xe3\x30\xb0\x1b\x32\x6e\xd6\xb7\xa6\xd6\x82\xe5\xfe\x33\x96\x26\x8c\xf5\xcf\xae\x4f\xec\x70\xd9\xb4\x56\xe3\xd6\xfd\xf3\xec\xa3\x43\x95\xa1\xaa\x90\xd3\xe0\xfa\x33\x4a\x7c\xda\x34\x97\xc5\xf1\xd0\xe0\x72\x7b\x22\xc8\xca\x54\x55\xf0\x3d\xba\x94\x68\x6f\x56\x4e\x86\x13\xed\xbd\xef\x28\x59\xa3\x66\x4c\x33\x0e\x6d\x1b\x4e\x79\x3f\x6f\x99\xa3\xf6\xf4\xc2\x19\x40\xee\x24\xdd\xc7\xad\x5c\x7a\x13\x43\x8d\x01\xe4\x26\x06\x1f\x03\xc8\xad\x62\x29\x07\x00\xb9\x08\xeb\x06\x90\x9b\x48\xd9\xc6\x7a\x9b\x24\xf7\xba\x65\x29\xda\xd8\x7b\x0c\xee\x36\x31\xe9\x00\xee\x36\xb6\x0f\x98\xc1\xdd\x16\x6e\xee\x06\x77\x7b\x0a\x19\xc0\xe5\xe9\x58\x50\xee\x23\x55\xed\x26\x45\xff\xcc\x78\x6a\x7a\x6b\xd0\xa3\xf7\x6d\xa5\x43\x83\x90\x1e\xa1\xa4\x74\xc9\x0f\x3b\xeb\x1a\x3f\x2c\x03\xcf\x34\x8a\xf1\x34\x64\xda\x44\x00\x37\x64\xda\x39\x8c\x6b\xfb\x90\x55\x89\xf5\xfe\xad\xa7\xbe\x4f\xa7\x4d\x2e\x69\x47\x8f\xba\x05\xa5\x0c\x32\x18\xa3\x0c\x61\xb6\xb1\xf6\x18\xc2\x6c\x95\x1e\x4a\xae\xe2\x93\x9a\x72\x9f\x73\xda\xf2\x69\x08\xb3\x8d\xd1\xec\x96\x59\xe6\x8c\x2b\xf3\x2d\xbb\xcc\x2a\x6f\xd5\xaf\x0b\xd3\x8e\x66\xc3\x57\x81\xf1\xcd\xb6\x73\x5a\x4f\xe3\x9b\x15\x82\x2a\x0c\x6f\xd6\x78\xc6\xdd\xa7\x15\x49\xcc\xf7\xe9\x8d\x3a\x53\xd3\x49\xf4\xdd\xbd\xad\x34\x48\xd5\x77\xf1\x31\xb5\xc8\x75\xcb\xf8\x52\xba\x19\xe8\xad\x14\x74\x15\xcf\xd6\xbb\xd8\x2f\x0a\x87\xcd\xbb\xf8\x35\xe4\x23\x75\xcb\x14\xd3\xd0\xc6\xdd\xc5\xec\x74\xd2\xa1\x8f\xb0\x45\xc5\x5b\x41\x65\x93\x97\x92\x21\xc2\x2a\x19\x16\x8c\x02\x36\xc9\x79\x67\x10\xb0\x73\x1a\xdb\x64\x1a\x05\xac\xd5\x8c\xdb\xb6\xef\x34\x13\x45\x0d\x94\x6c\x86\xa1\x7c\xda\x07\x83\xb9\xdd\xc5\x84\xaa\x72\x26\x09\xa5\xbb\x6d\xe5\x3b\x3d\x0d\x06\xfd\x59\x8a\xc6\x9b\xef\xb6\xc1\x62\xe6\xd0\x54\xef\x4c\x56\xa6\xfa\x36\xb3\xa0\x76\x57\x2b\xd1\x0e\x4b\x26\x77\x95\x9c\x94\x4e\x94\x84\x6e\xe2\xdc\x64\x54\xae\xa7\x6a\x48\x43\x94\x15\x28\xef\xa2\x34\x2b\x21\x86\xf7\x8f\xe1\xb5\x2a\x71\xdc\x86\xd7\x9a\xd5\x42\xdc\xed\x7c\x75\x13\x9b\xf6\x2d\x63\xc7\x79\xbe\xcd\x08\xdd\x6b\xa6\xea\x57\xfb\x3d\x8d\x2a\x87\x0e\xa7\xcf\xd9\xeb\x8c\xf9\x3a\x0d\xc4\x55\xb2\x6f\xaa\x5d\xcf\x38\xfb\xd5\xb7\xe2\xa2\x95\xcb\x91\x19\xf4\xee\x34\x9a\x99\x0c\x45\x6e\x4f\x02\xe9\x8d\x8b\xb5\xb1\x9f\x1a\x16\xeb\x29\x64\x8e\x95\x6b\x89\x7b\x11\x58\xac\xc4\xb1\x18\x17\x6b\x63\xc1\xbd\x1d\x0d\x37\xc9\x88\x70\x57\x73\x9f\x9d\x76\x9e\x93\x6a\x78\xa7\x69\xcc\xac\x33\x5e\x93\x80\x66\x2d\x76\x6e\x75\xb2\xce\x9a\x56\xff\x5c\xd5\xc3\x93\xf5\x65\xa1\xff\x36\x2e\xd6\x53\x38\x20\x8b\x3a\x49\x55\xff\x09\xf3\xda\x9c\x68\x81\xdd\x22\x43\xcd\x22\xae\xe6\x6e\x7a\x90\xe1\x27\x79\x2b\x63\xde\xe2\xb1\x7a\x2b\x63\x5e\xe5\x05\x6c\x7c\xad\x45\x98\xbb\xf1\xb5\x9e\x2e\xd2\x8c\x83\x9c\xf8\xd0\xa8\xcb\x19\xaa\x10\xc0\xf1\xd3\xb9\x9b\x11\xcf\x39\x81\xca\xad\xb7\xc3\xe2\x9a\x8f\x3c\x09\x2a\x0d\xc5\xb5\x1a\x27\x89\xc0\x3d\x12\x5c\x19\x8a\x6b\xad\xfc\xb1\x6c\x68\xe8\x91\x0c\xc5\x35\xc9\xb2\x7a\x2b\x70\x6f\x97\xff\xe0\xa5\x77\x37\x41\x6c\x60\x8d\xb8\x95\xa3\x6f\xee\x8c\x46\x8e\x32\x39\xd7\xc2\xe5\x2a\xef\x84\x2b\x56\x07\xdb\xf3\xad\xf0\xbb\xd2\x33\x53\xf2\x50\x26\xe1\x8b\x71\xb9\x36\x09\xdb\x8c\xcb\xb5\x71\x3d\x32\x2e\xd7\x6a\x59\x27\xa5\x5c\x21\x89\x90\xa1\xb7\x76\x49\x0f\x7a\x61\x4d\x3c\x18\x0d\xbd\xb5\x0b\xac\x4a\xb6\xa8\x8d\x23\x92\xd1\xb5\x76\x6e\xf4\xce\xb6\x41\x4c\x10\xba\xd6\x22\x52\xd4\xe0\x5a\x4f\x61\xea\x2a\x51\xb3\x65\x11\x83\x6b\x3d\x85\x69\x56\x8f\x31\x6e\x66\x45\xd1\x6d\x72\xfb\x19\xf9\xea\x9c\x27\xe3\x11\xf4\xd5\xca\x66\x94\x35\x6a\xa3\x8c\x36\x0e\xd5\xca\xc1\x91\xc5\x69\x21\xcf\xdf\x32\x38\x2d\xfc\xab\x0c\x3c\x35\x49\x44\x77\xcb\xc2\x74\x4e\xfc\x10\x6f\x99\x98\x16\xef\x3d\x23\x4f\x35\x42\x50\xee\x6e\x9f\xf0\x19\x4a\x39\xc3\x4a\x28\x6d\x4d\x38\x77\xb7\x02\x24\x7f\xf8\x1c\xea\x19\xa9\x41\xd6\xa7\x73\x12\xe5\x6f\x58\xaa\x85\x21\xfc\x1e\xe6\xce\x84\xd9\xdf\x32\x38\x4d\x4c\xc6\x46\xa9\x7a\x0a\x0b\xa4\xbb\xac\x50\x3a\x7e\x23\x65\xfe\xab\x9d\x66\x97\x0a\x1b\x94\xf3\x23\x4f\x28\x41\x83\xc0\x2a\x14\x1d\xb7\x48\x25\x61\x78\xa9\x45\x32\x28\xa3\x4b\x9d\x93\x64\xc5\x86\x97\xda\xc4\x7f\x1a\x34\x6a\x2e\xa6\x43\xb1\x69\x1b\x25\x8b\x61\xa1\x26\xbe\x07\x86\x77\x5a\x23\x7f\xac\xac\x80\x65\xa6\x4c\x29\xe3\xd8\x29\xb2\x6a\x4d\x54\xb3\x86\x7e\x3a\x67\x49\x17\xe2\xc7\xa8\x2a\x6e\x5b\xb5\x70\x36\x37\x2e\xd4\xc2\x1a\x75\xcb\xa8\x35\xf1\x12\xbe\x95\x4e\x70\x85\x8f\x2b\xfe\x6c\xa1\x7f\xb9\x87\x39\xec\x4c\x0f\x3a\x29\xdc\xa3\x32\x78\x2d\x23\x46\x3e\xd4\xc7\x83\x49\xe1\x57\xbc\x28\x94\x37\x31\x7f\x68\x58\x04\x8e\xad\xe2\xcf\x36\xba\x29\x03\x4a\x6d\x14\x4e\xb7\x2c\x53\xeb\x3c\x53\x76\xab\xa6\x87\x26\xdb\xd3\x42\x4b\x71\x3b\xeb\x20\x9a\xff\xdb\x41\x65\xb3\xb4\x90\xee\x62\x41\xb9\x8b\x34\x23\x20\x00\x16\x46\x71\x63\xfb\x7f\x8d\x5a\x9f\x1f\x4a\x86\xf7\x1d\xca\x93\x9f\x42\xbd\xf4\xf1\x34\x30\x9e\xd4\x46\xbf\x73\x2b\xa6\xec\xa9\x4a\x8f\xf2\x0a\x9f\xe9\x5f\x26\x4d\xf4\x44\xf7\xf4\xe1\x0b\xd7\x76\xe0\x18\x8e\xc6\xb7\x2c\x5a\x8b\xb0\x26\xc3\x4b\xad\xbc\x35\xa6\xf1\x6c\x36\xbf\x28\xb3\xd4\x2c\x08\x78\xd3\x9c\xf1\xbf\x08\xd4\xd3\x6c\x13\x61\xc8\xd0\x53\x33\xec\xcf\x39\x12\x0b\x6f\x8f\xe9\x7b\x3b\xfc\xcf\xd8\x53\xe8\xe6\x0c\x2f\xb5\xd1\xa2\x19\x5e\xea\x9c\xe1\x62\xb2\x8c\xed\xb0\xbf\xa5\xb3\x88\x31\xf8\x5e\x8a\xf3\x41\x6b\x65\x7c\xa9\x8d\x76\xc3\xf8\x52\x1b\x85\x9f\x51\xa2\x76\xfe\x51\x28\x51\x1b\x65\xd3\xed\x98\x2f\xec\x42\xb7\xb3\x29\xce\xb7\x51\xf3\x49\xb6\xb8\x03\xc2\x50\xee\xdc\xb2\x68\x6d\xa2\x22\x0c\xf6\xb4\x70\x82\xbe\x1d\xbb\x85\x6a\xd4\x98\x4d\x13\x6f\x4a\x63\x36\x9d\x51\x98\x18\xb4\x69\xa3\x5e\x33\x68\xd3\x8a\x2c\x2e\xdb\xd7\xca\x4b\x60\x79\xc2\xf3\x1d\x13\x8e\x80\xa3\x68\xad\x8d\xbe\xe4\x56\xb4\xd6\x46\x29\x74\x2f\xe4\x24\x46\x63\x50\x12\xb6\xb1\xad\x64\x51\xa6\x18\xde\x69\x97\xcc\xb7\x17\x83\x58\xdc\x5b\x56\xb2\x89\xb7\xc3\xed\x4c\x8c\xb3\xc2\x62\x64\x26\x5b\x2b\xff\x61\x24\xa8\x96\xaa\xd6\x46\xf3\x12\xde\xe6\xd4\x68\x42\x6e\x22\xbd\xce\x50\x1e\xfa\x82\xd2\x56\xb1\xe6\xeb\x56\x9a\xc6\xd9\xd2\x8c\x12\xdd\x66\x70\xdb\x07\x19\x5f\xcc\x5b\xb1\x5d\x0b\x85\x9e\x31\xa4\x16\x79\x09\xef\xed\xcc\x11\x47\x28\x59\x38\xb8\xc5\x65\x52\xdb\xa8\x66\x6f\x9b\xd4\x48\xcc\x77\xcb\xa4\xb6\x88\x95\xbc\xb1\xa8\x71\x72\xb7\x57\x95\x08\xf3\x7b\x8b\x19\x63\x52\x31\xa0\xd4\xce\x4c\x29\x76\x6a\xa3\x69\xba\x65\x8a\xdb\xef\x5c\x48\xfa\x88\x80\xab\x24\x89\x0b\x17\xa5\x5b\xf1\x51\x8b\xd0\xad\xdb\xf1\x51\x79\x33\x3a\x40\xea\x9d\x60\xe6\x9b\xe9\x77\x84\x14\x86\x8a\xfb\xf2\x85\xc6\xbe\x09\xf4\x14\xd2\xcf\xe5\x53\xc4\xed\x4b\xd8\x13\xa9\xb3\x6e\xe5\x50\x5c\x98\x3e\x6f\xd9\xd7\x36\xfa\xc3\xdb\x29\x14\x67\xed\xe9\x52\xa1\x6c\xec\x06\x85\x41\x2d\x5c\x0a\xee\x4b\x3c\x76\xbd\x54\xf7\x87\x8c\x47\x00\x57\x24\x87\x02\xe0\x6a\xe2\xe0\x63\x80\xab\x8d\xe6\xed\xbe\x74\x72\xf1\x9f\x33\xdc\xd5\xca\xed\xef\xc4\x8c\x47\x7e\x52\xef\x96\x1c\xe3\x4b\xde\x7d\x44\x2f\x18\xed\xea\xdc\x19\xb7\x1c\x0c\x4e\xf6\x94\xc2\xb0\x6a\xf8\xf8\xe5\x74\x40\xac\xa2\x4c\x71\x0d\xd3\x90\xb1\xae\x0a\xae\xbf\xc6\xba\x2a\x79\x5e\xc8\xda\x56\x23\xa5\x3a\x11\x24\xb9\x0e\x6e\x19\xdb\x06\x79\x6d\x6f\x27\x82\x9c\x75\x84\x94\x41\x95\x7b\xe3\x72\xba\x9f\xfc\xbc\x71\x00\x8f\xff\x20\x4f\x2b\x44\xec\x9c\x59\x53\xbd\x7e\x57\x66\x54\x1e\x82\x13\xcf\x52\x03\x68\xb5\xf1\x52\x86\xd9\xe6\xa7\xec\xc0\x8d\x98\xaa\x60\xb2\x16\x46\xa5\x60\xb2\x8a\x7d\xc9\xd8\x5a\x27\x19\x05\x0d\x9f\x55\x50\x4a\xde\x97\x93\x4b\x1c\xa9\xf9\xa7\x58\x22\xf7\x77\x3b\x31\x0e\x43\xbb\x0d\x2d\xc9\x44\xc9\x66\x58\xa3\x79\x90\xcd\xb0\x2e\x2e\xc6\xdb\xc1\xe6\x25\xad\x68\x64\x08\x6c\xb7\x13\x73\x21\xdb\xca\x62\x78\x1e\x6f\x7f\xf6\x73\x48\x9b\x8f\xc0\x8a\x4b\x86\xa1\xb3\x4a\x04\x01\x05\x9d\x8d\x33\x65\xf6\x5d\xe5\x76\xbd\x8d\x5c\xcc\xdd\xa6\xa0\xb3\x12\xd9\x46\x31\x67\x23\x8f\x47\xc5\x9c\xd5\xc2\xbc\x24\xe4\x2c\xbf\x24\xe7\xb1\x3c\x25\x1d\x73\x46\xb8\xe7\x7d\x5b\x57\x3a\x53\x53\x79\xaa\x5b\x1a\x55\x8a\xa4\x33\xdd\xeb\x65\x7f\x64\x68\xf2\x64\x7f\x5b\x91\x6e\xe3\x08\xf5\x27\xd3\x09\xbf\xa4\x60\xf6\x9a\xa1\x39\xd8\x34\x63\xb9\xbc\x47\xe0\x9e\x36\x7b\x76\xb6\x93\xcc\x9e\x15\xef\x63\x43\x6c\x95\x77\xb6\x9d\x14\xab\xe4\x3b\xe5\xac\xe7\xf6\x90\x81\xb4\x11\x69\x7e\xdf\x72\xb2\x21\x18\xcf\xe8\x5b\x4f\x87\x21\xbf\xaa\xca\x87\x12\x58\xde\x45\x73\xc4\x01\x12\xa9\x02\xd5\xea\xcc\x77\xca\x45\x4c\x8a\xdf\x5b\x86\xd5\xc4\xdb\x19\x99\xeb\xc4\x37\xc7\xc8\x5c\x67\xf8\xb3\x8c\xae\xe7\xab\x1e\xbb\x8d\x1e\x91\xfd\x64\x10\xed\xb7\x7b\xed\x66\x18\xf4\x6d\x9b\x37\x7f\xf8\x71\x58\x14\x0f\x10\x85\xb0\x15\xc0\x14\x6e\x19\x64\xcb\xe4\x9a\x95\x3d\xb6\x90\x61\xd6\x18\x5e\x05\xfb\xfb\xed\xf0\xb6\x57\x91\xe6\x20\x35\x42\x0a\xef\x8f\xb3\xf3\xf4\x34\xaa\xe4\x20\x48\x47\xb6\xc0\xbe\xfa\x38\xe5\xee\x3c\x71\x21\x36\xfa\xd7\xd9\x98\x28\x59\x60\x0b\x8e\x32\xb7\x53\x77\x1e\x9c\xe5\x8f\xb7\x65\xc6\x2d\x8d\x5f\x6d\x69\x53\x67\x0b\x99\xc7\xb6\x5a\xbc\xc4\xef\x8f\xb7\xe5\x5b\x53\x49\xce\xd8\x88\x1f\x07\x41\xe7\x97\xb6\x99\x5e\xa6\xcd\x89\x04\xd9\xdd\x1f\xfb\x09\x9d\xa1\x14\x4f\xca\x53\xc1\x89\x3c\x3b\xcf\x36\xe7\xe3\x8c\xb6\x59\x19\x38\x0b\xa9\xc2\x6e\xc7\xc4\x9d\xa9\xa9\xec\x2b\xe5\xa5\x7c\xc5\x64\xbe\x2d\x0f\xb5\x50\x6c\x05\x26\x43\x7e\xaa\x79\xc4\x29\xb6\x6d\xe6\x11\xf9\xf5\xbb\x3d\x0a\x40\x59\x34\xf7\xd8\xff\x36\x21\x1a\xfc\xeb\x9c\x75\xa7\xd9\x9f\xe4\x8a\x50\xbe\xca\xb9\xe7\x65\x0c\x3d\xf1\x30\x32\x50\x58\x25\x2c\xd0\x40\x61\x8d\x50\xb0\xdb\xf6\xce\xdc\x5d\x5f\x98\xcd\x4b\x2a\x5b\xe4\xdb\xa8\xf3\xf6\x30\x72\x33\x1b\x5c\xea\xef\x2f\x29\x12\x0e\x28\x05\x9f\x70\x93\xca\x68\x79\xbe\xaf\xcc\xaf\xdd\xe6\x91\x96\x64\xb4\x8c\xa2\x9e\x00\x3a\xce\xa2\xb2\x7e\xb6\x6c\xbf\xaf\xf3\x90\xc3\x89\xbe\x4e\xfb\xdf\xd2\x88\x7e\x9f\xb4\xd9\xc6\x09\x9b\x1b\x3e\xfc\x75\x08\xeb\x4e\x99\x62\xa8\xb2\x1c\x16\x8f\x5b\xd6\xca\xfe\xc6\xc8\x23\x32\x76\x4e\xfc\xfb\x0d\x13\xf6\x54\xe5\xff\xed\x18\x9f\x81\xeb\x84\xe7\xa4\xda\x9e\x39\x09\xd2\x34\x14\xd8\x43\x9e\x90\x1e\x4f\x85\x52\x2e\xd1\x9d\xaa\x43\x4e\xdc\x13\x6a\xfa\xc3\x0e\xe9\x60\xbc\x05\xb5\x5d\x38\x20\x15\x1b\x54\xd2\xea\xed\xc2\x34\xa4\xec\x7d\x68\x80\x6c\x26\x9d\xa4\x56\x03\x2a\x2c\xda\x62\xdb\x49\x71\xb3\xb9\x7f\xca\xb2\x83\x7b\xd0\x8d\xf1\x13\x1e\xa7\x68\xc0\x46\xfa\x8e\xfb\x67\x33\x12\x32\xc9\x8f\x25\x87\x21\xc8\x4e\x5a\x31\x0d\x1a\x55\xac\xc6\xaa\xa3\x48\xc1\x4d\xbc\xd1\xed\x48\xc1\x49\x48\x83\x21\xc7\x5e\xb9\xc3\x91\x82\x93\x78\x17\x43\x8e\xad\x99\xd9\xb1\xbe\x18\x9f\x1c\xa3\x8c\xbd\xd7\xa6\x8c\xa3\x8d\x88\x47\xe3\x8a\x9d\xd9\xc9\x3f\xa3\xb8\xb1\x91\x15\xe2\xd7\x30\xf7\xde\x0e\xf1\x9b\x24\xb6\xbe\x1d\xe2\x17\x3d\xf7\x1f\xeb\x3a\x42\x1a\xe2\xbb\x42\x29\xe7\x15\xbb\xfc\xcf\xe9\x4c\x98\xb9\x3f\x56\x07\xb1\xe1\xcf\x30\xe6\x67\x3e\xf4\xea\x30\x72\x25\x02\x9d\xe4\x92\x36\x5e\xd9\x22\x7b\xf6\xfd\xe7\xc7\x0c\xee\x4b\xf7\x9f\x00\x26\x36\xf3\x21\x30\xb3\x97\x5d\x08\xcc\xac\x86\x5f\xfe\x81\x5d\x4d\xa3\x5a\xac\xdc\x8e\xb2\xa3\xce\xca\x56\x56\x1c\xe1\xcb\x57\xfe\x6c\xe3\xe3\xc1\x28\xab\xea\xcb\x2c\x64\x47\x7d\xf9\xc1\x1f\x27\x32\xe3\x76\x8a\xc4\x14\x4a\x7d\x80\xa0\xf0\x87\xdc\x99\x81\x4a\x95\x44\x70\xe0\xfd\x67\xc5\x2a\x22\xc6\x9f\x1f\x9a\xed\x2d\x74\xb8\x71\xda\xf1\x2c\x3e\xcd\xac\x25\xa3\x6a\xb3\xee\xf4\xa1\x4e\x01\xf1\x1c\x50\xc5\x18\xc7\xa9\x2a\xef\x2d\x31\xef\x87\x52\x62\x3d\x4d\xc6\x32\x08\x5a\xb3\x9a\x77\x19\x04\x6d\x3c\x27\xee\x1f\xdc\x7a\x19\x04\x6d\x5a\x8e\x78\xa8\x8f\x13\x99\x41\x19\x8d\x80\x46\xe5\xb8\x62\x6f\xf1\x65\x44\xb4\x67\x6c\x1b\xd2\x79\x1b\x3a\x94\xd6\xdb\x59\xce\x1f\xd2\x79\x1b\xf8\x47\xbf\x90\x16\x3f\x25\x8b\xaf\xe5\xbd\x87\x9a\xc2\xfe\x4f\x33\xba\x9e\x47\x5a\xd9\xd2\x9d\x40\x38\xde\x74\x99\x92\x0e\xca\xda\xb2\x87\xf2\xd0\xd2\x9f\xd4\x91\x16\xdb\x96\x01\xd1\xa6\x9d\x61\x1f\x6a\x8b\xe2\x9f\xf4\xce\x71\x9e\x86\x87\x72\x92\x8c\xb7\x55\xdd\x80\x6f\xe1\xd7\xe6\xfe\xb4\xea\x04\x0f\xb4\x2a\x0d\xa4\xa5\x9a\x65\x5c\xb5\xa7\x2a\x2b\x95\xc4\x6a\x50\xe6\x62\x19\x81\x7c\x5a\x9c\x0c\xe1\xa1\x94\xa1\xb3\x31\x00\xa5\x52\xb7\xee\xe0\xa1\x9e\x73\xf2\x0e\x4e\x3b\xcc\xba\xb4\x87\xfa\xb8\xd1\x54\x15\x72\xe6\x99\xc2\x9f\x0b\xd3\x87\xf6\xff\x72\x55\xd9\xa3\x8b\xb3\xea\x2d\x43\xb9\x4d\x73\xe3\x87\xd2\x4a\xd5\x03\x4a\x41\x4b\x33\x35\x15\xb4\x47\x9b\xb2\x4d\xb7\x74\x2f\xdb\xf4\x74\x4e\x8b\xb5\x4e\x6f\x94\x5a\xa0\xbc\x51\x1a\x8d\x2a\xa7\x85\x23\x73\x97\x71\xdd\x9e\xc2\x7c\x39\xa4\xbc\xa0\x0f\x3f\xa5\x7b\x4b\x43\x8a\x07\x79\x3b\xb1\x33\x46\x63\x74\x4e\xc1\x76\x36\x28\xa5\xef\x3d\xa8\xea\x1d\x50\xa9\x29\x1b\xac\x43\x3c\x97\xd1\xdb\x56\x61\x37\x2a\x7b\xea\x5c\x19\xaa\xd7\xb8\xd2\x26\x20\xba\xa9\xa9\xfc\xac\x25\x14\x17\x15\x1d\x4a\x97\x35\x06\xbf\x21\xf3\x40\x65\x89\x15\xb5\xb8\x56\xfe\xc9\x17\x79\xcf\x68\xa4\xcb\xb2\xae\x7e\x19\xf6\x6d\xf5\x91\x0f\x65\x71\x6f\x69\x54\x11\x2f\xcb\xfb\x0f\xd4\x37\xc6\xa6\x6c\xad\x35\x73\x5a\xf4\x28\x3d\xd9\x53\x42\x84\x5b\x9d\xb9\x28\x7a\x94\xe6\x0c\x2b\x68\xb2\xb5\x99\x32\x86\xb6\x20\x1f\xd1\xb5\x8c\x34\x7a\xb9\x70\x43\xda\xaa\x9f\xd1\x08\xf9\x29\x1f\x2a\xfc\xc8\x7e\xa5\xcb\x00\x71\xd5\xba\xcb\x87\xf2\x0a\xcf\x54\xd5\x3b\x18\xee\x57\x58\xe1\x49\x1f\x20\x8e\x14\x28\x5f\x5b\xa9\xfa\x51\x1f\x29\xb3\x74\x9a\x32\x1f\x06\x58\x9c\x2c\xf9\xc4\x4d\xad\xe5\x28\xca\xc2\x36\x2e\x76\xa1\xe2\x50\xcb\xca\xdf\x6c\xf2\x79\x28\x6f\xe3\x95\x0f\x9b\xdd\x23\xa1\x1c\x38\xcd\x48\xf5\x6c\xf4\xab\xe6\xa1\x1c\xb5\x3e\xff\xcd\xa8\x8d\x82\xd7\xcf\x7c\xe8\x23\x9e\x55\x95\xde\x25\xdc\xa0\x98\x1b\x35\x88\x3f\xa1\xdf\x33\x6e\xeb\xc7\x7b\xf6\x86\x44\xce\x0e\xf7\x95\x5f\x41\xab\xf9\xa9\x9b\x9f\x4a\xe1\x73\xdf\x84\xe1\x19\x13\xcf\x61\xfb\x0b\xdc\xbb\xc1\x71\x73\xb8\xe5\xb4\x9b\xef\x32\xee\xdd\xe8\x9c\x3e\x45\x54\x8e\xf0\xe6\xe2\x80\xb7\xc9\x5f\x28\xcf\x7f\x87\xc5\xca\x3d\xa1\x35\x76\xbf\x31\xf1\x36\x1c\x56\x98\x78\x23\x1c\xc6\x98\x78\x93\xab\xb0\x2e\x0f\x74\x41\x99\x89\xec\x14\x0a\xde\xfb\xcc\x87\x1f\xe1\x7f\xa4\x0b\x0d\x0d\x06\x57\x1d\xdf\x3b\x19\x8c\xbc\xe8\x37\x87\x4f\xbe\x09\xa3\xc3\x6d\xf0\x4d\x18\x47\xaa\x6e\xf5\xbf\xa1\x74\xa7\xbc\xcd\x68\x11\x4b\xa8\x8f\x5e\xfb\x69\xd4\xdd\x33\x50\xed\xcc\x23\x83\xd1\xe6\xdb\x9c\x28\xa5\xe6\x6d\x33\x3f\x21\xc9\xe7\x64\xd3\x1a\x74\x6f\x8e\x97\x54\x87\xb0\x29\x47\x77\x1e\x1c\x93\xea\x4d\x53\xd3\xcc\xcf\x1f\xa6\x50\x1e\xfe\x2c\x70\x35\x5e\x1c\xeb\x54\xbd\x6b\x6a\x28\xad\x05\x7c\x11\x87\x87\x4c\x94\x37\x4d\xe5\x7f\x6d\x37\x19\x1c\x77\xf9\x3b\x94\x33\xbf\xef\x87\xeb\x60\x9f\xc8\xdf\xa1\x1d\x47\xaa\x3a\xa5\xe6\x99\x2e\xaf\x67\x83\x33\x52\x6f\xb7\x71\xa6\x13\x6d\xb7\x96\x81\x0b\x9d\x13\x36\x21\x8f\x86\x96\x9b\xd8\x4e\x0b\x8e\xda\x7b\xa8\x21\x7f\xb6\xd4\x54\x52\x1e\xa6\x58\x4e\x0b\xe5\x60\x43\x2b\x6b\x70\xcb\xb2\xc9\x2f\xa1\x1e\x1c\x76\x25\x0d\x2e\xb6\x86\x3d\x94\xa7\x86\xfe\xa4\x4b\xdb\x9c\x20\xf9\x2c\xb4\x35\x53\xe6\xa9\x29\x69\x54\xee\xbc\xad\x41\x79\x6a\xd8\xd2\x06\x04\xec\x2d\x94\xa7\x86\xfd\x26\xa7\x85\xe2\x0c\x9f\x0f\x75\x0b\xa5\xa9\x43\xfd\xf4\xa1\x27\xca\xb9\x7f\x73\xd9\x36\xcb\xc1\xcc\x77\x33\x9b\x18\x29\x94\x76\x76\xb2\x34\x8d\x05\xa7\x43\x29\xa2\x7a\xa3\x0b\x56\x11\x1e\xde\x0c\xf8\xd2\xe9\x51\x42\xf2\x2a\xa9\xaa\x34\x60\x47\x9a\x71\xe4\x11\x55\xe5\x0a\x50\xed\xee\xf5\x50\x6e\x75\x54\x48\x4d\x40\x3f\xa0\x3c\x01\x23\x75\x15\xc4\xd3\x37\x94\x42\xd1\x5e\x4a\xbf\xcc\xe0\x9c\xb5\x77\x46\x6a\x93\xbf\xc1\x8a\x40\x8d\xbf\x41\xe4\xbd\x6e\xf5\xd3\xf1\x1f\x24\xea\x6e\xc9\xf8\x60\x38\x72\x1a\x9d\xb9\xb6\x1d\x6f\xdb\xe1\x38\x4a\x06\x5c\x23\xee\x75\xe9\x53\x67\x0b\xa5\x17\x36\x67\xc5\x51\xb4\xc6\x63\x7e\x28\x05\x1f\x9f\xa1\x14\x36\xbb\x42\x59\xa2\x60\x72\x14\x29\x1a\x11\xa2\xfb\x5d\x3a\xb8\x52\x85\x5e\x38\x7a\x0f\x75\xb9\x90\xb9\x92\x6d\x7e\x65\x05\x7c\xdf\x8c\x95\x66\xc5\x3a\xb8\xf0\xbb\x13\x31\xac\x54\xf5\xcc\x71\x22\xba\x59\x07\x6c\xad\x9b\x75\x64\x95\xcd\x1e\x7a\xca\x64\xf3\xdd\xf4\xef\x23\x7f\xa6\xe6\xa5\x87\x39\xdd\xcb\x51\x70\x21\x0a\x76\x6d\xa4\x1c\x00\xe5\x14\xae\x76\x7e\x5c\xcb\x5e\x14\x07\x6c\x6c\xd8\x53\x65\x30\x55\xc3\xb7\x08\x4b\x3c\xbc\xab\x46\x3e\xf4\xae\xe2\xde\x50\x14\xef\x79\xb6\x14\xea\x17\x3b\x94\xf7\xc6\xe0\xcc\x29\xe3\xf0\xe8\x2c\xb8\x73\x03\x9f\xec\x72\x52\x03\xbf\xa3\x93\x9b\xf0\x86\x1f\x0f\x67\x67\x3d\xd2\xcc\x47\x71\xf9\xf4\xef\x68\x2c\x96\x4a\xa9\x81\xd7\x89\x08\x2b\x0f\x8b\x11\x71\x4b\x1e\x16\x23\xf7\xd6\xb0\x59\x7d\xc2\xd5\x05\xc3\x58\x9c\x80\xf5\xa1\xb6\xb6\x4a\xa8\x4b\x1f\x7a\x8a\x87\x35\xd1\xdc\x54\xf2\x7f\xe8\x03\x39\x51\xfe\x0f\xa3\xcf\x06\xa5\xad\x31\x4b\x0a\xe5\xff\xc0\x9a\xda\xff\xa1\x9d\x69\x46\xfe\x0f\x3c\xe8\x14\xef\x5b\x27\x37\x95\x42\x7a\x47\xe7\x8a\x71\x48\x6f\x38\xae\x22\x7a\x5b\xe9\xa1\xf4\x2c\xda\xa9\x69\xd4\xd1\x0a\xe5\x9f\x08\xa5\xab\x61\xd6\x7c\xa8\xe3\x3f\xd3\xa1\xdc\xcb\x78\x50\x4e\x1b\xfc\x66\xcd\x97\xca\x7c\x80\xb4\x65\x57\x89\x93\x39\x9d\x2c\x22\xcb\xa6\x1c\xbb\xbb\xc1\x1c\xc1\x6b\x64\xa6\xe4\x1c\xb1\x36\xb3\x28\xff\x87\xb3\xc0\x38\x8d\xd0\xd8\x78\xdc\xcb\xe1\x61\x95\x9a\x9a\xee\x22\x7f\x6c\x95\x62\x4f\xa3\xfe\x2b\xa6\x78\xda\x0f\xbf\xa6\xf0\x2b\xdd\x3f\x93\x03\x70\x4f\x28\x65\x8c\x42\xbb\xa0\xb8\xdc\x92\xf7\xa4\xb1\x1d\xe7\x84\x8b\x4e\x3b\x82\x67\x36\xcc\x9c\x27\x67\x63\xa1\xb3\xa8\x50\xd5\x85\x03\x52\xce\xfe\x35\x94\xd2\x4f\x73\x34\x14\xb4\xdb\x0a\xab\xba\x1e\xae\xbe\xe6\x48\x33\x4b\xae\x48\xe9\xc2\x69\x8c\x37\x94\xbc\x61\xf8\xc5\xc5\xaa\x72\xc2\x9c\x49\xb7\xa4\x7b\x73\xdf\xff\x00\xc7\xf5\xd4\x95\x8a\x95\x79\x5c\x7e\x8b\x4e\xb6\x87\x22\x83\xeb\x78\x0b\x6f\x01\x19\xa5\x13\xe7\xf3\xca\x00\x3c\x75\x70\x55\xb9\x55\xd4\x55\xd3\x8c\x64\x5a\x4e\x95\xe3\x84\xe7\x84\xc7\x2e\x3b\x99\x72\xcd\x2f\x16\x7d\x85\x34\xb6\x30\xad\x3a\xf6\x82\x95\xb4\xd3\xc5\x81\xc4\xe9\x24\xb8\x95\xfd\xb8\x2c\xc8\xcd\x95\xaa\x52\x05\x66\xb1\x94\x7a\xe5\xcc\x9c\x4b\x15\x79\xc2\xd4\x1d\x8c\x3c\x27\x6f\x83\xe5\x24\xef\x33\x55\x2d\x91\x84\x9a\xc2\x2e\xca\x87\xfe\x8d\x7c\x27\x0f\x64\xd8\x01\x3e\x17\x51\x30\xd8\xe7\xa2\xb6\x50\xda\x65\x3d\xcd\x78\x97\xb1\x3f\xb7\x37\x12\x97\xb5\x21\x2d\x0d\xf3\xb3\x80\xb4\x9c\x39\x66\x4a\x91\x3b\x6b\x4f\xa1\xbb\x64\xd3\x6d\x87\x26\xb0\x90\xdb\xf1\x06\x5c\x6b\xca\x6d\x5b\xf3\x8e\xd8\x4e\x22\x32\x43\x29\x16\x00\x26\xef\x64\xb6\x95\x0d\xe0\x84\xb5\x61\x5d\x4a\x58\x7b\xce\x05\xb7\x50\xc6\xda\x75\xac\x50\xd3\x85\x1b\x52\x73\xc5\x51\xb6\xd3\x45\xb8\xf3\xb6\x66\xf2\xfd\x50\x1e\x9f\x1c\x88\xed\x85\xe3\x40\x38\x27\xed\x91\xd9\x30\x30\x25\xab\x21\x9f\x8b\x76\x22\xc9\x29\x18\x7a\x1c\x5c\x15\x8a\x77\x5e\x83\xc7\xa0\xb3\xd7\xce\xbc\x69\xe5\x9e\xd1\x8f\x95\x2e\xa4\xa7\xcf\x60\x6e\xe5\x85\xcb\xd2\x88\xab\x67\x65\x04\x3d\x7a\xa0\x33\x94\x73\x46\x29\xfc\xad\xd3\xd7\xce\x1c\x06\xc5\x42\xf7\x03\xce\x2d\xcf\x8d\x36\x91\x7e\xf0\xdc\x58\x35\x85\xc2\x42\xe0\xfa\x95\xe7\x46\xab\xcc\x93\xc1\x2f\xf1\xb1\x5b\x06\xbf\xac\xd9\xe1\xf2\xdc\xe8\xc7\x4e\x99\x07\xc7\x87\xbe\xa9\x17\x8c\x44\x41\xd4\xfd\xd8\xa1\x9c\x33\x34\xd4\x54\x19\x83\x7b\xf6\x49\xb7\x99\xff\xa1\x34\x51\x08\x2a\xf2\xd4\xa8\xab\xa4\x0b\xa5\x89\xe0\xc2\x73\xd8\x34\x91\xc2\xcb\xf8\x9a\x3d\xca\xce\xcb\xcc\x60\x71\xa6\xe5\xc7\xd1\xa3\x42\x95\xaf\x46\x8f\xd6\xf2\x22\x8b\x3f\xd3\xa8\xdc\x8e\x83\xf3\x7e\xb1\xc1\x90\x1b\x15\x36\xdd\x8f\x4d\x8f\xc2\x82\x3c\x91\x22\xe5\xc8\xd1\xa3\x88\x95\x23\x47\x3f\x8f\x74\xa1\x10\xb5\x96\xb1\xc9\x89\x3e\x15\x7f\xaa\xc8\xff\x0a\x56\x7d\x73\x4a\x8c\xe7\x99\xdd\x26\x37\x8e\x73\x23\xfa\xe1\xa9\xb1\xb8\xf0\xc8\xe6\x8b\xf8\x6f\xe8\xcf\xf3\xdf\xd9\x3e\x9e\xaa\x53\x7d\xf0\x83\xb7\xd7\x22\x7d\x6c\xe5\x17\xe1\x27\xcc\x6d\x16\x9c\xe0\x92\xa3\xe6\xce\x5c\x58\x50\x89\x68\x22\x47\x8e\x96\x33\x24\x47\x8e\x7e\x1e\xa1\xac\x15\x85\x4d\xdc\x36\xa0\x2c\x78\x81\xe1\x46\x4f\x76\xa3\x1c\x3b\x7a\x54\xd1\x72\xde\xa8\x73\xa6\xcc\x63\x4d\x33\xde\xe2\x0c\x56\xde\x1b\xfd\x3c\xd2\xe8\x73\x8b\x9c\xdc\x0c\x46\x1f\x8d\x46\x5b\xde\x1b\x35\x9a\x89\x9b\x5d\x8c\xf4\x2d\xf7\x8d\x16\xee\x6b\xf0\xd1\xe8\x6c\xe5\xbe\xd1\x23\x7c\xcb\x7d\xa3\x46\x85\x26\xf7\x8d\x7e\xb6\x34\x3a\xdc\x28\x03\x97\x45\x75\xee\x34\xaa\xdf\x78\xfb\x57\xda\xd9\x95\x9a\x1f\x75\x98\x46\xbf\x6e\x86\x9f\xb2\x16\xe3\x1d\xcd\x9f\xa0\x50\xa9\x2a\x1c\xc5\x70\xb4\xdb\xbb\x1f\x41\xdd\xe9\x84\xc1\xd9\x7e\x48\xfd\xc6\x11\xca\x47\x83\x49\xd5\xeb\xa7\x64\xde\x74\x34\xf2\x6a\x92\xff\xc6\x3e\xce\xd4\x74\xf8\x6a\x5a\xf9\x93\xcb\x04\x7f\xe1\x07\x6f\x9e\xe3\x86\x3b\xcd\x79\x33\xa4\x69\x9e\x69\x86\x34\x3d\x4b\x6a\x9a\x87\xce\x14\x6e\xe9\xa1\xe9\x91\xed\x98\xc1\xdd\x3a\x70\x48\xa3\x1f\x36\x15\xd7\xbd\x52\x04\xb7\xa8\x09\x05\x6a\x5a\x26\x8b\xf3\x71\x16\xf0\x33\x65\x06\x43\x4b\x99\x7c\x2f\x6a\x5a\x19\xea\x62\x40\x79\xa8\xa1\xb4\x8a\xb0\x1b\xf9\x65\xf4\xb3\x64\x30\x5a\x45\x7e\xf8\xe3\x97\xf1\xe2\xd2\x36\x6c\x6a\x19\xe9\x50\x4c\x8c\x63\x8c\x5f\x46\xde\x62\x8a\x8c\xef\x51\x8b\x7f\xd8\x54\xdc\x0d\xc6\x4d\x3d\x7b\xaa\x6a\xfb\xd7\xb4\xa3\xb9\x61\xc1\x3f\xde\x54\x28\x71\x3e\x76\xc3\x81\xdf\x39\x86\x3d\x72\x01\x10\xa7\xac\x8d\xc3\xd4\xa3\xfd\x50\x98\x7a\x0f\x6f\x70\x9a\xe1\xb9\xd9\x45\x4a\x33\xdc\x4f\x38\xc5\xc7\xeb\xbf\xd9\x9b\xc6\x3f\x8d\xe5\xc5\x31\xec\x33\xa2\x98\x62\xd8\xfb\x39\xf2\xa5\x36\x47\x4b\x59\x97\x71\x8f\x9f\xb2\xd0\xb4\xd3\xcc\x74\x33\x21\x05\x3a\x90\x65\xbc\xad\x42\x4f\xa3\x9a\x1b\x4e\xb8\x63\xdf\x67\x5e\xbf\x8a\x7d\xef\x27\x9c\x5a\xe9\x8a\xfb\xd9\x43\x69\x6c\x30\xaa\xaf\x33\xc2\x33\xe1\x5f\xef\x06\x78\x9a\xa3\xdb\xe7\x3e\x53\xe8\x88\xaa\x50\x9e\x1c\xef\x71\x87\xac\x3f\xd4\x3f\x59\xf5\xd7\xeb\xcf\x52\x29\x9e\xbd\x44\xc5\xe3\x78\xf6\xb9\x39\xb8\x5f\x1b\x7b\xd8\x9c\x5f\xeb\xad\xce\x54\xd5\x06\xdc\x70\x1c\x65\x48\xee\x27\x4b\xfe\xf5\x2d\x8a\x28\x66\x38\xd6\x68\x78\x1c\x69\xde\x4a\x28\x2f\x1c\xdb\x5a\xe9\x93\x6b\x9e\x91\x4a\x9f\x5c\x0e\xae\x66\x65\x4f\xee\xe7\x08\xa5\x63\x84\x98\xac\x08\xf5\x56\x38\x8c\xf2\xfd\xe8\x27\x1c\xee\xeb\x0b\x96\xb7\xc8\xd7\x17\xec\x48\xf7\xb7\x36\x43\x06\xaa\x65\xc3\xf2\x21\x4f\x90\x16\x0d\x9f\x3c\x38\xce\xa8\x06\xbf\xbe\xe1\xe0\x45\x5f\x73\x0d\xa4\xf2\xaf\x17\x9f\x1b\x56\x09\x99\xfb\x09\x0b\x91\x8b\x46\x8f\x38\x2f\x17\x8d\x7a\xb0\x86\xf2\xc2\x28\xb1\x49\xc9\x09\x63\xad\x19\x4a\x5a\x78\x6e\xa9\x9f\x6f\x10\xee\x93\x9f\x6f\x10\xd8\x9b\x02\xd0\x57\x98\xfd\xcf\x7a\xc9\xdd\x53\xa8\x61\xaf\x14\x6a\xd8\x6c\xef\x9f\x0f\x34\x8c\xf0\xc7\xf2\xb2\xbf\x7f\x5e\xde\x95\x66\xfe\x5c\xe8\x65\xfa\x79\x7d\x11\x45\x1c\xc8\x3e\x37\x2b\xf3\x73\xc6\xa0\xb4\x03\xbb\x0f\xe5\xe1\xd0\xa5\xd7\x69\xe5\x3b\xad\x13\x37\xa1\x31\x5b\x17\x9b\xe6\x67\x89\x86\x1b\x5c\xde\x1a\x25\x56\x08\xc3\xb2\x46\xf5\xfa\xb3\x3e\x7b\xbf\x55\xb5\x69\x56\x28\xb9\xd0\x72\xda\x7e\x5e\x52\xde\x64\x3f\x63\x99\x23\x86\xfe\x7c\xd8\x91\xad\x7f\x1c\x76\x56\xdf\x4e\x1f\x27\x1c\x54\x4e\x1f\x25\xfa\x0c\xf9\x75\xf4\xc2\xf5\xf6\x67\xa9\x64\xa7\xac\xab\xac\x42\x0d\x37\xba\x21\x85\x49\xfe\x7e\x68\x84\xaa\x05\xe5\xfe\x57\xda\xf9\xc8\xe7\xb2\x43\x09\xc1\x96\x5b\x5a\x7e\x1c\xbd\xc0\x50\xff\xac\xc2\x8e\x85\xfe\xef\xd9\x2a\xbd\x1c\xa9\xea\xad\xc2\x4f\xfe\x79\xab\xf0\x10\xf8\x33\x2c\xf6\x4c\x99\xf6\xf4\x4e\x33\xe6\xda\xc8\x70\x72\x08\xe9\x05\x36\x6d\x87\x90\xdc\x5a\x72\x08\xe9\xe5\x4c\x99\x0e\x43\xbe\x93\x73\xdd\x01\x5f\x54\x60\x7d\x8f\x0b\x86\x93\x3e\x1f\x99\xaa\xdb\x93\xca\x4f\x69\xf9\xc7\x91\x32\xe7\x75\xa5\x15\x1d\x3e\x23\xaf\xae\x2d\x47\x8e\x73\x39\x75\xf6\x43\x7a\x35\x2a\x54\x71\xe1\x80\xac\xfa\x72\x43\x49\xd3\x50\xd2\x4e\x77\xd5\x09\xe9\x69\x4c\xab\xde\xe1\x05\xca\x29\x8a\x52\x53\x07\xee\xdf\x2e\x7a\x4f\x55\xb9\xd5\x8e\x34\xfa\x95\xcc\x12\xea\x27\x01\x36\x03\xf7\x7c\x2f\x53\x76\xd7\x3b\x32\x54\x31\x7b\x83\xa4\x3e\x94\xd7\x94\xd1\xe8\xc0\xdb\x63\xf1\xa1\xbe\x72\xd0\x3b\x4d\x89\xbb\x96\xcc\x94\x92\xac\x3b\x75\xc1\x32\xf2\x6c\x75\x32\x9b\x65\x34\xd9\x85\x09\x72\xcb\xaf\xa2\x97\x4a\x7f\x32\xa4\x3b\x7c\xe1\xa1\x96\xfa\x0b\xa5\xde\x0b\xc3\xbe\xdd\xbb\xa7\xfb\xf4\x8c\x96\x50\xf2\xcd\x62\x2c\xa7\xff\xe8\xa4\x4c\x11\x19\xd8\xe0\x8c\xfa\xda\x7a\x5a\x91\x5e\x37\x4f\x70\xa3\xbe\x76\xbb\x8a\x2d\xa3\xbe\xf6\x52\xf2\xa1\xf5\x55\x29\xd3\xd0\x7c\xed\xee\x53\x0e\x67\x70\x89\x7d\x5e\xde\x26\xac\xe8\xe9\x74\xff\x6c\x1a\xc7\xea\xe3\xe2\xb0\xcf\xcb\xdb\x64\xa6\x9d\xa1\x28\x28\x7e\x43\xcc\xae\x64\xe0\x52\x24\x2d\x4c\x54\xdb\x91\xfc\x7b\xe4\xc3\x8f\x8c\x59\xa1\xb4\xa5\x6b\x9a\xf9\xf9\x43\xfe\x51\x81\x1e\x0e\x01\x5c\x01\x93\x3d\x58\x29\xf9\x43\x9c\x86\x77\x7a\x28\xff\xc8\xe2\xbf\x24\x31\x39\x5c\xef\xa1\x9a\x0b\xe9\x45\x7e\xcd\xad\x31\x58\x31\xd1\x92\xbf\x94\xbe\x02\x71\x7a\x9f\x5e\xe3\xc2\xec\x48\xcf\xb4\x8e\xc5\xf4\xdc\x9e\x73\x37\x6a\x8c\xda\x66\x71\xd2\xb8\xb3\xdd\x5e\xec\x0b\xdc\xd9\xc5\xdb\xde\xb8\xb3\x85\x0b\x66\xcb\x3f\xa1\x1b\x98\xe9\xa1\xbe\xae\xba\x21\x7f\x2a\xf4\x4f\xca\x79\x61\x1f\x6c\xdc\xb2\xbd\x3c\x7c\x28\x51\x17\x55\xef\x76\x92\xe7\xc5\x03\x66\xcb\x79\xa1\xcc\x0c\x4e\xfa\x03\x8c\x84\xbb\x98\x89\x35\xca\x24\x25\x18\x52\x62\xed\x62\xf4\xbc\x4e\x99\x9e\xd3\x8b\x67\xc9\x96\x7d\xbe\xe3\x02\xb2\x8b\xe3\x19\xcc\x7d\xb7\x92\x02\x74\x87\xe1\x2d\x83\xd9\x76\x87\x67\x3f\xd4\xad\x66\x32\x70\x65\x5d\x98\x99\x0d\xb3\x38\xd6\x46\xd6\xfa\xa7\x2a\x43\x95\xe2\xa7\x30\x70\x99\xeb\x37\x4f\xbd\x2d\x73\x7d\x47\x9d\xbd\xab\xb1\xdd\x59\x9b\x6a\x6f\x11\x4b\x73\x86\xcf\xed\xc5\x12\xe3\xae\x06\x50\xe3\x3c\xd8\x3e\xbf\x78\xa3\xee\x6a\x2c\x57\x26\x5c\xa9\x91\x7b\xb1\x27\xc5\xae\xf2\x1d\xee\xcc\x94\x70\x77\x9f\x0f\x19\x9b\x84\x98\xd2\xe8\xd1\x1e\xe1\x33\x1f\x7e\x75\xc1\x33\xb6\xed\x5f\xec\x0c\x47\xc9\xd4\x50\xa6\x18\x4b\xb7\x3b\xf2\x65\x19\x2e\xb7\xbf\xbf\x21\x9f\x8f\x85\xe4\x6d\xbc\xdc\x8e\x70\x6f\xb8\xdc\xee\xec\x50\x0f\xe5\x6c\xe4\xff\x84\xe2\x7a\xaa\x92\x28\x28\x9d\xc8\xcd\x07\x86\xe0\xec\xcc\xdc\x5b\xbb\xfa\xde\x4a\xff\x66\x80\x83\xdf\x50\x70\x55\xd8\x76\x65\x19\x67\x3e\xd4\x32\xd2\x45\xf3\xfe\xe7\xff\x31\x67\xc3\xe1\x1b\xb3\xea\x4b\xdc\x18\xb8\x65\x96\x54\x35\xea\xe4\x86\x72\x3a\xfe\x94\x5d\x72\xd0\xc8\x77\xbf\x67\x34\xac\x46\xf3\x8d\xee\xf7\xcb\x56\xb0\xfc\xd3\xc5\x82\x94\x82\x1a\xd6\xd9\x2e\xfa\xa7\x0f\x83\x0c\x59\x47\xb1\x95\xc8\x79\xe7\x86\x6d\x16\xe9\x76\x3e\x94\xbe\xbe\xa5\x4c\x40\x7c\xb0\x98\xe6\x14\x90\x2f\x25\x16\xc3\xfe\x6b\x3e\x37\x1c\xb8\xe6\x73\xd3\x19\x9a\xc4\x72\x1e\xc5\xdb\xd1\xf2\x1c\x77\x67\x75\x76\x5e\x8d\x65\x88\xd9\x73\x21\x97\x6c\x45\xcb\xef\x03\x5e\xd4\x2d\x18\xe4\x3a\xe8\x16\x0c\x2c\x09\x6d\x19\xc1\xf7\x51\xd3\x8e\x84\xb6\xdc\x31\x32\x82\x77\x07\x72\x3f\x94\xdc\x8a\x60\xc6\xdd\x20\x94\x33\x65\x9a\xef\x7c\xe7\x4b\x0d\xae\xd1\xcd\xc3\x90\x44\x64\x8f\x3e\x57\x79\x0b\x7d\xc3\x76\x28\x6d\xe2\x9e\xaa\x8c\x26\xa4\x42\x59\xcf\x50\x9a\x37\x2e\x03\xc5\xe3\x77\x47\x2f\x2f\x83\xd5\xee\x83\x23\xdd\x75\xc5\xad\x9c\xe9\x2e\xd5\x0e\xb6\x9c\x2d\x73\x75\x2f\x1c\x4d\x59\xab\xa3\x3c\x33\x92\xed\xc2\x5b\x64\xcb\x1e\xbd\xf0\x3a\x30\x92\x6d\x2f\x33\x94\xbb\x80\xfb\xc9\xe6\xdc\x6a\x46\x73\x4b\xa0\xe2\x48\x3b\x20\x7f\xe5\xd8\x76\x2f\xff\x4c\x55\x2d\x3f\xf7\x66\xf7\xf2\x73\xfd\x77\x23\x3c\x1c\xf9\xee\xcf\xcd\xf8\xff\x95\x1d\xfa\xcc\x25\x36\x2c\x98\x73\x16\x14\xab\xff\x54\x5d\x90\xba\x36\xfc\x2e\xdb\x8e\xd5\x3f\x38\x60\xb6\x48\xaf\x2c\x80\x2c\xd2\x0b\xdf\x25\x23\xe2\x9e\x2b\xdb\x71\x28\x5c\xe3\x38\xd2\xaa\x8e\x18\x3c\xdd\xe6\xea\x95\xd5\x91\xb9\x7a\xaf\x9e\xc2\x26\x3f\x66\x9a\x79\x24\x97\x76\x30\x73\xc3\x92\x0b\xdb\x5a\x60\xb5\xfb\xfd\x2b\x2f\x1c\x2c\x65\x58\x38\x29\xb0\xd8\x81\x41\xe4\x84\xf2\xce\x49\x3b\x5e\xe4\x99\x76\xe4\x47\x0d\x17\x93\x49\xba\xee\x0c\x5c\x6a\xe8\xff\x35\x2a\xd4\xdf\xfc\xb0\xb9\x1f\xfb\x7f\xd8\x55\x16\xee\x33\x58\x55\x04\x97\xe1\x55\xcd\x68\xe4\x4a\x64\x68\xd5\xb5\x27\x67\x15\x39\x6a\xfa\x16\x5b\xff\xc4\x20\x5f\x41\x81\x45\xe4\xb2\x6d\x99\x97\xf8\x9e\x1c\xc0\x09\xa5\xec\x50\x0c\x75\x4a\xb7\x82\xd3\x83\x31\x61\x3b\x9e\x14\x86\x84\x3d\xc1\x31\x5a\xc6\x84\x2d\xbb\xa6\xaa\x56\x03\xe9\xc7\x01\xfb\xe1\xc5\xca\x24\x5d\xf1\x17\x32\x5e\xeb\xc2\x58\x05\x08\xeb\x38\x18\x8c\x92\x3c\x1d\x30\x2e\x87\xb9\x4f\x84\x41\x87\xb9\x2f\x8c\xc0\xdb\x61\xee\x07\x5b\x43\x61\xee\x73\x9e\xa9\xea\x66\x68\x54\x76\x66\x7b\xf4\x2f\x83\xb0\xf6\x82\x0c\x2f\xf3\xf0\x3e\x10\x53\x16\x87\x61\x43\x0d\xe5\xa6\x4a\x99\x82\xce\x61\xcc\x32\xfa\x2e\xdc\xb3\xf6\xf2\xbd\x04\x4b\x5b\xe6\x4c\x3b\x94\xc6\xc2\x19\x5e\x5c\x36\x9e\xa6\x65\xe6\x83\xb4\xaf\xb0\xf6\x5e\xf8\x5d\x43\x92\xae\x3a\x42\x6a\x9b\x70\xd7\xc9\xc4\xba\x78\xbf\x1b\x2f\xb4\x35\xa4\x0b\x1b\x3c\x17\x0a\xf1\xbd\x98\x8b\x14\xde\x2e\x0c\xa9\x55\xdb\xa9\x2a\x07\x63\x7e\xdf\x68\x9e\x11\x3d\x94\x44\xf9\xdc\xb0\x02\x99\x2d\xcb\x60\x9d\xb6\x51\x21\x4a\x28\xbd\x51\xb9\x34\x8c\x02\x8a\xea\xce\x28\xa0\x73\xbd\x35\x15\xa5\x58\x52\x53\x43\x6b\xbc\x2d\x85\xec\xb9\xc2\x6d\x8d\xec\xb9\x1a\x22\xab\xa2\xca\x5b\x66\x43\xc6\xd0\x75\xf0\xb8\x53\x8c\xf9\x20\x12\xc0\x00\x9d\x0b\x35\x97\x41\x37\xcf\x2c\x8d\xa2\xca\x27\x1a\xc8\xbd\x2d\xdc\xe0\x1c\xb2\x6d\xfd\x8c\x00\xb5\x1d\x10\xcc\xe5\x2e\xd3\xe4\xb9\x59\x53\x99\x26\x27\x2a\x4f\xa3\x6e\x4e\x14\x80\xa0\x6e\xa2\x63\x36\xea\x66\xc5\xff\xc1\xb0\x9b\x15\x6d\xbc\x71\x37\x49\x28\xb3\xb6\xf2\x3b\xd7\xc6\xfb\x51\xf9\x9d\x1b\xaa\x1c\x43\x72\x96\xc9\x91\x91\x65\xb2\x4e\x64\xc2\xcb\xf1\x13\x23\x35\x65\x97\x47\xd0\xbd\xbc\xa0\x48\x56\x8a\x1a\x9f\x99\x98\xcb\x67\xbb\xd5\x90\x42\x9f\x86\x0b\x5e\x06\x7b\x7f\x29\x37\x03\x75\xb9\x19\x86\xed\x84\x62\x3b\xd4\x54\x19\xdd\x3b\xd4\x01\x0e\x79\xd9\xd1\xdd\xaa\xc9\x2d\x4b\xe0\x44\x6d\xb9\x9d\x40\x79\x35\xb6\x9e\x13\x28\xa3\xfd\xdc\xb2\xf7\xcd\x68\x19\x64\xef\x9b\xef\x40\xed\x05\x0f\x83\x06\x9f\x13\xae\x77\x39\x96\x81\x1b\x52\xc1\xd7\x13\x1d\x8f\xe1\x39\x27\xfe\xa4\xfb\x76\x68\x29\xdb\xc9\xc9\x95\x23\xf3\xdd\x56\x87\x34\xa6\xcd\x91\xd2\x91\x40\x6d\x6c\xab\xfd\x9f\x69\xa8\x97\xb1\x3b\x9f\x76\x36\xa4\x66\x63\xa6\xd5\xcb\x52\x08\x94\xd2\xf2\x96\x0c\x4e\xdb\x72\xa6\xcc\x93\x41\x2b\x72\x3d\x41\x35\x6b\xf0\x4e\x72\xf2\x2c\xf0\x39\x23\x67\xc9\x82\x46\x32\x9f\x87\x52\x7c\x79\x7a\x90\xf3\xfa\x6a\xcc\xb0\xcc\x6b\xad\xbf\x8d\xaa\xfb\x95\x66\xd4\x7d\x7e\xdf\x91\xcc\x19\x9a\x17\x98\x7b\x4d\x51\xc6\xa4\x16\x5a\x00\x69\xce\x92\xef\x24\x9f\xb4\x8c\x46\x1e\x7a\x2d\x73\xa1\xb8\xa6\x70\xba\x9b\x25\xe5\x7f\x6f\xff\x45\xca\xa4\xc5\xe4\x18\xde\xf6\xc9\xcd\xd0\x0c\x8e\x99\x5f\xba\xe9\xd0\x5d\x7c\x7c\xd6\xd8\xd0\x32\x7c\x3d\x85\x1b\xd2\x29\xf1\x3b\x94\x46\x83\x1a\xcd\x99\x9e\x71\xdf\xdb\xb2\x6e\x4d\x34\x7c\xdb\x99\x9e\x4f\x4e\xc2\xc7\xeb\xfb\xb6\xa9\xed\xb6\xf3\x9d\xa6\x26\x83\x51\xee\x74\x3c\x1b\xf6\xc7\x87\x34\x3d\xf8\x90\xf6\x23\x55\xe5\xa0\x09\x4b\xb4\x71\x6b\x85\xef\xc9\xb8\x55\xd7\x5b\xa8\xf7\x77\x49\xab\xba\x21\x88\xa5\x30\xfc\xe6\x8c\x4e\xcf\x59\xa0\x17\x51\x07\xfb\xe3\x90\x77\x16\xce\xb1\xc5\x8b\xe8\x85\x4d\x8e\x68\x4e\x8a\xc0\x39\x4b\x83\xd7\x7d\x9c\x55\x17\x89\xf8\x23\x36\x11\xe5\xe4\xc7\xaf\xd3\xce\xc5\x47\xc6\x68\x98\x9d\x02\x8f\x67\xc9\xe0\x9c\x80\x97\x27\x1f\xc9\x9c\xf3\x8f\xda\x0d\xd1\x06\xca\x9e\x35\x4b\xc6\xed\xbc\xb9\x47\x28\xb7\xc2\x6c\x88\xd5\xa2\x6f\x35\x4e\x66\xcb\x6b\xfc\xeb\x0c\xdd\x30\x57\x9b\xa1\xfe\x57\x53\x79\x94\x99\x45\x07\x16\xaf\x68\x4a\x14\x58\x5c\x31\x3e\x6c\x19\x97\x26\x6e\x80\xfb\xcb\xc2\xb5\x14\x2a\x5f\x0a\x3b\xe5\xcb\xc2\x71\x99\x3a\x78\x38\xcf\xe8\xaf\x55\x35\x38\x17\xef\xaf\xf3\x77\x23\xba\x91\xd5\x18\xa1\xe7\xeb\x29\x2e\xb4\xea\x9c\xdc\xbc\xeb\xbe\x9e\xe1\x92\x9a\xca\x02\xf2\x96\x69\x6e\x10\x5e\x1c\x12\xbc\xf0\x42\xdd\x0e\x09\x8e\x06\x52\x71\xbe\xe7\x86\x6b\x7e\x6f\xf0\xdf\x42\x0e\xe1\xe1\x86\x9a\x2e\xa4\x59\x65\xb3\x22\x26\x61\x93\xd4\x98\x27\xa8\x6c\x48\x33\xaa\x32\x07\x01\x2f\xdc\x39\xf7\xcf\x61\xe0\x4c\xc7\x4f\xe7\x2f\x4a\x16\xe1\x78\xee\x01\x87\x73\xc2\xe3\x28\x0b\x7f\x5e\xc7\x9a\x56\xd4\x61\x49\x4d\xe9\x71\xfa\xfa\x0f\x2a\x0f\x05\xfd\xd6\xbc\x9d\x7e\x2c\xeb\x86\xd2\x8e\xe3\xb1\x18\x94\xcf\x03\x4a\x18\xcf\x19\xb7\xd1\xc6\xd1\x2a\x39\xc5\x71\x94\x8a\x4e\x63\x1c\x6d\x8c\xd3\x18\x67\x37\x2a\x8d\xf1\x8c\xde\xea\x67\x05\xe8\xe0\xa4\xfe\x74\x13\x46\xc6\xff\x39\x95\x39\xbb\xd1\x50\x9d\x6b\x70\x52\x7e\x4e\x4e\x9d\xfe\x95\xca\xfc\x9d\x37\xe3\xcb\xc3\xa9\x64\xe0\x39\xdf\x97\xec\xcf\x69\xf0\x91\x57\x65\xe1\x99\x51\xea\xfd\x39\x79\x1e\x9b\xd1\x81\xbb\x2b\x76\x03\x99\x78\x66\x74\x93\x58\x78\x06\x9b\x4c\x09\x91\xf7\xe0\x00\xfc\xf9\x25\x39\x58\x1d\xc7\xfc\x46\x57\xf9\xe7\x95\x6b\xa9\xaa\x50\x22\x38\xa7\xf3\x21\xe7\x25\xad\x18\xdf\x19\x55\xe9\x9f\x57\x0a\x51\x4b\xe8\xa0\x33\x0f\xe9\x3f\x9f\x1b\xc4\x0b\xe1\x81\x6e\x02\xd2\xc0\x03\x5d\xa3\xa5\xaa\x27\x2e\x94\x86\xc6\xbb\xfe\xcf\x62\xca\x48\x1f\x5a\x39\x3c\x0b\x41\xf5\x5c\x23\x33\xe7\x43\xc6\x36\x92\x89\x67\xc7\xfe\x20\x33\xce\x5c\x9c\x86\x3f\xc3\x3e\x70\xc5\x29\x90\xb7\xe6\xc4\x39\x90\x77\x11\x87\xb0\x15\xc8\xbb\x66\x26\xd5\x3c\x0e\x01\xd2\xc9\x92\x17\x4e\xba\x97\x4c\x3c\xcd\x29\x5d\x1e\xca\x3f\x69\x51\xf0\x92\x8d\x67\x39\xeb\xfc\x43\x79\x00\x03\xca\xbf\xcc\x87\x4a\xf5\x85\x17\xba\xc1\x3b\xf7\xd8\x7c\x67\x75\x1c\x82\xbf\xd1\x3b\xc9\x7c\xb6\x0c\xde\x79\x92\xdd\x68\x19\xbd\xb3\xf2\xe6\x37\x78\xe7\x44\xcb\x65\x7c\xce\xc9\xb3\xcb\x78\x9c\x0b\xd1\xec\x72\x9a\xe5\x45\x50\xc0\xa5\xd0\xda\x89\x0a\xe2\x72\x9a\x65\x9c\x39\x0d\xdd\xb9\x0d\x3c\xb0\x2e\xc7\xc0\xee\xfc\xbf\xa1\xe3\x76\x28\xe5\x79\xcc\xd0\xf4\x92\x44\x73\x71\x1d\xcc\xf8\x4e\x33\x7a\xf6\x9d\x29\xd4\x59\x65\x16\x4f\xe3\x45\xf5\x50\xf6\x3b\x5e\x50\x8e\x89\xe8\x50\x43\xb1\x0c\xa1\x2e\xe5\x16\x2b\x50\xda\x54\xce\x0e\xbd\x0c\x9c\x59\xf1\x90\x37\x70\x66\xc3\xd7\xec\x52\xb4\x6a\x2e\xea\x4b\xc1\xaa\x75\x59\xc4\xb8\x64\x1d\x2a\xd8\xb4\x2e\xac\x43\x44\x2f\x5c\xb2\x0e\x35\xe7\x40\x79\xa8\xcb\x85\x13\xd2\x39\x50\x0f\xa8\x8f\x0b\x19\x8e\x64\xff\x95\x76\x1c\x06\xc6\xbe\x91\xb5\xa8\x13\x4d\x75\x9d\x46\xd9\x1d\x0c\x47\xb7\x11\x3a\xee\xcb\xc6\x22\x5e\x96\x06\xe3\x3c\x4f\xe6\xd4\x01\xb0\x28\x2b\x2f\x6c\x45\xb3\xfc\xdb\x2d\xcf\x48\x9d\xd5\x59\xbe\x97\x91\x3a\xcf\xec\x5b\x67\x84\x26\xe7\xc1\x32\x54\x67\x5b\x33\x5d\xfe\xb9\x90\xbf\xba\x25\x0e\x2e\x46\x27\x43\xd2\xc2\x0f\xf3\x92\x25\x69\x1e\x8b\x2f\x6f\xd9\xe0\xd8\xc6\x0e\x90\x5d\x98\xc3\xaf\xd3\xe1\x45\xe6\x5c\x97\x02\x64\x27\x4a\xa7\xeb\xc4\xd3\x98\xf9\x90\x3c\x82\x5d\xeb\x2a\x56\xfa\x18\x5d\xe4\x21\xe5\x4f\xe7\x6b\xed\x92\x21\x89\xc4\xc7\x0f\x55\x5d\x75\x42\xda\x0d\x18\x42\x19\x08\x38\x1b\xc5\x49\x91\xd9\xd5\xc5\x4f\x8a\x23\x9f\x79\x8d\x5b\xfa\x57\x46\x29\xf6\xa3\xd2\x57\xd7\xce\xfe\x57\x48\x6c\x43\x61\x61\xcc\xcf\xea\x04\xa9\xcb\x40\x9e\x24\x5a\x5e\xc6\xf1\x3c\xd7\x4c\x8f\x97\xc3\xcb\x18\x9b\x38\xe7\xf1\x96\xb9\xff\xc1\x70\x2e\xc5\x96\x84\xd2\xfc\x87\xc7\x28\xce\x73\x62\x63\x33\x38\xe6\x3c\xcc\x71\x01\xbc\x5c\xc4\x5d\x02\x78\xc9\x4b\xf8\x52\x84\x66\xe1\x15\x63\xf8\xcb\xc6\x6d\x74\x55\xa3\x1e\x71\x38\x65\x0e\x9a\xb8\x4b\x1b\x0c\x73\xcf\x33\x6d\x3e\xcb\x86\x70\x7e\x55\xe5\x27\x45\x34\xbd\x64\xe3\x69\x4e\x73\xfc\x50\xfe\x7d\x38\xa5\x90\x32\x1b\xe2\xaf\x91\x32\x1b\xc1\x2c\x97\xe2\x35\x67\x85\x8b\x28\x5c\xb3\x22\x63\x5e\x0a\xc9\x9c\xc6\x2d\x7f\x28\x25\x01\x9c\xf9\xee\xe7\x2e\x52\xe8\x44\x22\xfc\x2f\x8b\xb1\xa1\x04\x2c\xb4\xe9\x42\x9e\x46\xe8\x39\x2e\xc7\x6b\xe2\x92\x6c\xf8\xcd\x89\x11\xe3\x92\x11\x67\x1e\xe9\x41\x3c\xf4\xc8\x2f\xd9\xa6\xba\x38\xb7\xd5\x01\x3a\x35\x55\x9b\xf6\x50\xa8\x25\x79\x23\x94\xae\x7b\x58\x71\xf5\x1a\xb2\xbe\xb6\x0c\xad\x97\xf2\x74\xa7\xe6\x9f\x3b\xf4\xd8\x9a\x4d\x15\x35\x94\x60\xc3\x5b\x28\x3d\xb0\xfc\xa0\xb8\x14\x12\x79\x3a\x5b\xf6\x43\xe9\x40\x2f\x8b\x4d\x97\x8d\x48\xd8\x49\x8d\xe2\x39\xc3\x60\x8d\xe2\x89\x47\xf2\x25\xab\xd1\xc4\xf8\x76\x39\xff\x32\x0e\xba\x97\xd3\x28\x63\x97\x35\xa6\x67\x45\xe1\x6f\x10\xcf\x8a\xba\xc6\x20\x9e\x13\x2f\xdb\x4b\x81\x8d\x3d\x1c\xb4\x99\xd7\xe0\x2e\x7c\x29\xb0\x31\xc6\xb6\x4b\x99\x93\xf7\xe0\x3c\x37\x3f\x84\xd9\x7b\xcd\x92\x38\xae\xc4\x57\xb3\x72\xe3\x60\x32\x2c\x89\xe3\x3c\x7c\xc9\xa4\xb4\xc7\x48\x1f\x72\x49\x86\x2f\x62\x1b\xc2\x95\xd7\xa0\x9e\x13\x37\xf3\x4b\xb9\x92\xeb\xb6\x94\x66\x50\xcf\x1d\x09\x42\xc6\x98\x39\xcb\xbf\x35\x1f\x86\xea\xdc\x83\xb3\xdf\x9d\xba\x1e\x0e\xda\x0d\x16\x05\xcb\x54\x90\xe1\x26\x20\xf6\xea\x46\xa6\x48\x4d\xab\xf4\xb1\xfe\x1b\x9c\x93\x9c\xe7\x0f\x65\x38\xae\x54\xd5\x8d\xba\x76\xc8\x8f\x0c\x83\xfc\xb1\x64\xe8\x95\x5f\xbc\x9d\x26\x86\x9f\xb2\x26\xef\xa0\x0b\x05\xf2\x65\x87\x39\x90\x6f\xe1\x3c\x69\xfc\xcd\x86\x2f\xeb\xe5\x74\xc8\x0b\x07\xc9\x6b\x58\x69\x50\x53\xe8\xdc\xf5\xf9\x50\xb8\x2c\x2b\xad\x3e\xa3\xd9\xa1\x74\xbf\x1b\x8b\xe2\xa1\xe4\x52\xc1\x86\x1b\xb6\x77\x65\xe1\x14\xd6\xb7\x1b\x3b\x75\x38\x1e\x33\x55\x65\x89\x6c\x6c\x15\xd9\x30\x56\x2b\xa9\xa9\xb9\x31\x38\xe4\x43\xca\x6c\x78\x84\x52\xd0\x19\x5b\x55\x99\x8b\x37\x0a\xd8\x4b\x26\x8d\x9d\x1b\x64\x18\x9c\x2c\x73\x73\x5b\x39\xcd\x1f\xda\xbc\x8b\x0d\xdd\x20\x9b\x1b\xc5\xa6\x31\x36\x27\x0e\xfa\x86\xd1\x2c\x28\x4b\x81\xd1\xcc\xfd\x39\x7d\xd5\x6d\x84\xa6\x69\x09\xf6\xa5\x9c\x8b\xae\x40\x09\x9c\xac\xe6\x43\xc5\xb5\xbd\x8d\x2e\x25\x83\xcb\x77\xc2\xec\xb7\x74\x6f\x48\xcd\xa7\x0b\xff\x86\x51\x34\xc3\xb3\xa7\x76\x78\x84\x2d\x05\xd9\x4d\x12\x45\x5c\xd3\x2a\x13\xbc\x00\x2f\x99\x42\x26\x19\x06\xae\x69\x95\x09\xf9\x0f\x2e\x27\x2f\x46\x81\x62\xc4\xcd\xc2\x7b\x1e\xc4\xcd\x45\x5c\xbd\x21\x37\x27\x4a\x12\x23\x6e\x9e\x95\x85\x53\xd0\x5d\x72\xca\x18\x0b\x73\x92\x37\xe1\x52\xb2\xe0\x41\xbe\x83\x4b\x46\x94\x1d\x11\x01\x23\xca\x46\x80\xb1\x11\x65\xc2\xb5\xa7\x39\xc5\xbb\x1c\x52\xaf\x19\xc5\x6a\x19\x1a\xb3\x85\xfb\x0b\x1a\x73\x6d\x06\x2e\x64\xcc\xb9\x56\xca\xaa\xc2\x48\x37\xd4\x23\x23\xe1\xc8\x7f\x39\xac\x0e\xc7\xb7\x6b\xf9\xe5\xb7\x77\x0a\x65\x44\x7d\x9b\xf1\xac\xbe\x3d\x7e\xd4\x63\x5a\xf5\xac\xc2\x8d\x85\xa2\xb9\x70\xb7\xb8\x96\x4c\x5a\x2b\x52\xb3\x22\xf2\xd6\xce\x7f\xe8\x54\x0d\xf6\xca\xf2\xbb\x64\xef\x14\x3e\x2f\x21\xfc\x7c\x2f\x19\x72\x56\x7d\x9b\xf1\xec\xc0\xe4\x97\xf3\x55\xb3\x59\xc8\x73\x7c\x84\xfa\x28\x56\xee\x48\x27\x32\x07\xef\xb4\xfa\x73\x21\xff\xa5\x07\x4e\xcf\xe8\xe4\x44\x80\x33\xf5\xb5\xb4\x21\xf6\x71\x84\xf4\xe8\xf8\x50\x8f\xd1\xf0\x63\x5b\x84\x1a\x72\xb3\x53\x1b\x8f\x11\xaa\xc9\x74\x45\x4d\x6d\x01\x19\xc7\xff\xc9\xac\x15\x66\xb7\x36\xac\x4b\xa6\xa4\xb5\x38\x58\x8e\x96\x23\x03\x08\x50\x9d\x71\x24\x30\x56\xe7\x19\x23\xe3\xb5\xbd\x5d\xf8\x52\x69\x87\xd7\xae\xa9\x2a\x67\xe3\x5c\xc1\x8a\xa5\x1b\x18\xfd\xc0\xee\xdc\x6f\x99\x3b\x61\xbf\xca\xee\xf4\x4a\x20\xb2\x3b\x9d\xf1\x4f\xb8\x94\xbf\x78\xed\x97\x52\x82\x46\xec\xfc\x97\xf3\x17\xe3\xe4\x77\x39\x7f\x71\x65\xdb\x2b\x08\x6f\xed\xb7\x0f\xc5\x9d\xb3\x09\xb7\x53\x8f\xa7\x4c\xb9\xfc\x31\x03\x01\x17\x9a\xa7\xe9\x76\x72\xf1\x4c\x87\xfd\xe1\x58\x72\xf2\x1e\xb3\xeb\x37\x81\x95\x3d\x85\xb7\xd4\x08\x4c\x95\x3c\x0e\x77\x4b\x33\xcf\x23\x62\x23\xc7\xc9\x42\xb5\x36\x7b\x45\xf1\x79\x4f\x33\x7c\x28\x48\x06\x63\xf9\x3e\x94\x02\xf4\x60\x17\x0a\xd0\x9b\x1b\x31\xc3\x49\x91\x0d\x08\xbe\x8c\x56\xfa\x34\xd3\x21\xb5\xe5\x5a\x28\x65\x16\xac\xa1\x3c\xb6\x74\xf8\x27\xca\x8d\x2a\xb4\xee\xbd\x57\x04\x33\xba\xc2\x03\x2e\x2f\x3f\x4b\x21\x94\xd1\x75\xbe\x65\x4b\xdd\x23\xfd\x2b\x0a\xaf\x19\x1d\xea\xa1\x1e\x49\xca\x39\x3f\x97\x11\x48\x17\x5e\x34\x97\xcc\x59\xb5\x59\x51\x79\xd9\x9c\xb5\x9d\x4d\x7e\x01\x41\x9a\xdb\x42\xd1\x73\x6b\x72\x23\x28\x7a\xee\xa9\x9a\x76\x2e\xad\x29\x7d\x48\xa7\x87\x67\xaa\x61\x46\xcf\x9d\xd7\x9f\xa1\x44\xb3\xfd\x14\x2f\xb7\x88\xbb\xba\xc8\x7b\x9c\xf7\xde\xe5\xfc\xe5\x70\x7d\x59\xc9\xd6\x78\xab\x6a\x8a\x7b\xca\xb4\x53\x60\x73\x0e\xa6\xdb\x79\x1a\xca\x84\xb6\x72\x52\x2e\x7b\xa3\xe6\x97\xb5\xe0\xb9\x03\x88\x7c\xcb\x03\xe0\xb2\x28\x09\xb3\xba\x7c\xaa\x91\xdd\x14\xb2\x36\x23\x49\x28\x2a\x6d\x11\xc0\x62\x9c\xd1\x44\x13\x5d\xb7\xa0\x34\x36\xa2\x9b\xf2\x09\x9f\x3b\xc2\xf2\x6d\x6d\x20\xfb\xf6\xb6\xb5\x9c\x3d\x6d\x6b\xd7\x8e\xb8\x2a\x6b\xd7\xda\xbc\xcd\x6d\xed\xda\x11\x89\x65\xee\x5a\x8d\x83\x73\xeb\x6d\xba\x23\xcb\x2a\x2a\x6d\xed\x96\xf1\xfc\x5c\x98\x86\xb4\x03\x59\x65\x87\xa5\xed\xc8\x84\xb2\x86\xbd\x77\xbb\xc2\xd2\x16\x1a\x58\xa3\x99\x2e\x0c\xef\x97\x62\xcd\xd6\xe6\x2e\x91\xf9\x6b\xa1\xd6\xbf\x14\x5d\x96\x00\xaa\xcb\xd1\x65\x9b\x18\x49\x03\x9f\xae\x3c\x9c\x15\x33\xb6\x72\x0b\x2a\x64\xec\xa9\x1a\x52\xc7\x63\x30\x1a\x09\xb3\x9b\xe8\x4a\x63\x9d\x2e\x74\x7e\x97\x82\xc6\xd6\x23\xf7\xff\x93\x5b\x2b\xa2\xec\x15\x43\x9c\xe7\x77\x13\x98\x66\x94\xd4\x45\xca\x20\xa3\xa4\xae\xe8\x0a\x6e\xb3\x87\x4c\x87\x5e\x76\x9b\xb0\x8a\x4b\x16\xb8\x57\x28\xb9\xd9\x3b\xfc\xa4\xde\xe3\x39\xca\xb2\xc7\xbd\xaf\x07\x27\xfa\xdd\x84\xe9\x19\x5e\x75\xe1\xf5\x7c\x29\xf6\xec\x29\x4c\x5d\xb1\x12\xde\xb9\xca\x02\xfc\x14\xa6\x13\x29\xd6\x11\xa0\x6c\xbc\xdb\x78\x7d\x5e\x32\xde\xad\xca\xcd\xf2\xf1\x3d\xc3\x79\x95\xed\x6e\xe1\x22\x7d\x7d\xd8\xaf\x6f\x55\x5d\x8a\x0c\xf6\x63\x0e\xc5\xf6\x90\x61\xef\xa9\x9a\x76\xa6\x5e\x69\x0b\x4a\x9e\x4e\x25\xfd\x6b\x70\xdc\xc2\x1f\x5f\x50\x44\x8a\x19\xa7\x75\x45\xeb\xf8\xf1\xa5\xc3\x7f\xc8\x7a\xf7\x54\xa5\x8f\xed\x45\x0f\xa5\x14\xaa\xf9\xc7\xed\xe3\x03\xab\x93\xf9\x6e\x45\x4a\xff\x98\x61\xcd\x94\xe9\x3d\x91\x5f\xb6\x1c\x12\x71\xe2\x63\x39\x84\xb5\x93\xb9\x6e\x4d\xd8\x97\x70\x5a\x93\x5d\x10\x9c\xd6\x8d\xf7\x83\x71\x5a\x17\x31\x20\x86\x62\x5d\x79\xdc\x7f\x0c\x7f\x91\xa1\x7a\x97\x71\x40\x3e\xde\x3a\x2c\xf2\xc7\x80\x32\x99\x2a\xaf\xea\x19\xca\x13\xc7\xe1\xf9\x1a\x22\x91\x7d\xf5\xb5\x10\xb0\x52\x26\x6f\x0f\x6e\xb6\xaf\xe7\x0d\x96\xfc\x25\x61\x23\x57\xab\xac\x67\xab\xa1\xcd\x90\xf1\xec\x95\x6e\x15\xe1\xb5\x48\x7d\x63\x2c\xd1\xe7\xc3\xb4\xaa\x9f\x82\x23\xc8\x5e\x56\x70\x83\xbc\xbe\xfe\x7d\x18\x9d\xc2\xa8\x6a\x6e\x56\x59\xcf\x56\x34\x62\x32\x9e\xbd\xaa\x43\x19\xcf\xe2\xde\x62\x44\xd0\x85\xfb\xd2\xa5\xc0\xa9\x15\x3d\x8f\x12\xdf\x26\x4c\xf1\x52\x70\x54\xd2\x6b\x5c\x0a\x8e\xda\xe4\x7a\xb9\x14\x1c\x35\x27\x5c\x5e\xd6\xa9\x85\xeb\x3a\xc8\x9d\x1b\xe3\x91\xa1\x3b\x17\xa6\x64\x43\x77\xae\x28\xa4\x15\x0e\xb5\x36\xba\x2b\x87\x43\x6d\xac\x45\x97\xed\x5a\x1b\xa9\xdc\xe1\x50\x60\x7d\xad\x4b\xe1\x50\x6d\xa5\x55\x59\x80\xc3\xc9\x65\xf4\x3a\xf3\xd4\xf9\x39\x29\x1d\x1b\x8c\x5c\xb6\xe9\x42\xf1\xe4\x04\x2f\x18\x01\xb4\x12\x98\x6d\x04\xd0\x8a\x95\xcb\x08\xa0\x6d\xed\x50\xf7\xff\xfd\xbf\x1a\x05\xcd\xcf\x0c\x2f\xea\x83\x9f\x13\x9b\x8f\x34\x2a\x8f\x21\x6e\x03\x99\xce\xda\x01\xa7\xfc\x39\x99\x01\x77\x8c\x13\xe2\x02\x34\xf6\x90\x45\xfe\xf8\x8c\x5b\xf9\xfd\x71\x16\xbe\x14\x62\xd5\x72\xc9\x2b\xc4\xaa\x3d\xa2\xe2\x3f\x39\xb5\xf3\xea\x1e\xb0\x66\xe7\xd5\xed\xec\xef\x58\xe7\xf8\x29\x33\x4a\x2c\x70\x97\xcc\x73\xb5\xbf\x1f\x3a\xd5\x77\x28\xc5\xcd\x8d\x8c\x46\x68\x99\xf0\x50\x59\xee\x0a\x39\x39\x8c\x6b\xda\xf2\xb2\x94\x1d\xaf\x46\x6e\xfe\xb3\x6e\x14\x7e\xf2\xe7\xb7\xf4\x91\x9a\x8e\x0b\x84\x9f\xc8\x8c\xd7\x72\x55\xcb\x8c\x57\x49\xbc\x66\x58\xd3\x96\xa3\x27\x2b\x5e\x5b\x2f\xa5\x84\x9c\x0c\xdb\x89\x7b\x49\x41\x71\xc9\xc2\xd7\x16\xef\x31\x05\x78\xb5\x85\x06\xf0\xcf\x57\x3a\xf6\x47\xc3\xa1\x36\x1c\x05\x2e\xc5\x7b\xd5\xc8\xa6\x0a\xf7\x6a\x9b\x07\x98\xc2\xbd\x6a\xe5\xb1\x28\x34\xd4\x13\xcf\xd9\xeb\xcf\xfe\x2d\x3b\xad\x7c\xf4\x5d\x5a\xd1\x49\xe0\x78\x39\xf6\xab\xc1\xf8\x8d\x9b\xba\x46\x28\xb9\x6d\x70\x7f\xc8\xa4\xd8\x70\x22\x30\xa6\x6a\x23\x5c\xf7\xfa\x73\x76\x8e\x4c\x9a\x12\xfc\xe7\x1d\xfd\x27\xb6\x8b\x9b\x82\xf1\x56\xcf\x8d\x25\xf4\x92\xb9\xb1\xe4\x38\xcb\xda\x58\x49\xe3\x71\xc9\xda\xd8\xea\xdb\xc5\x33\x87\x1b\x5d\x85\x8c\x8d\x75\x65\xe9\xe5\x5d\xb3\xcf\x50\x9a\xc2\x15\x4a\xf1\xb1\x6f\xcd\xaa\x9a\xfc\xa0\x92\xff\xb7\xac\xcb\x2d\x94\x02\x8e\xa8\x4c\x96\x6d\xa3\xf0\xf8\xb3\x07\x7b\x36\x90\x23\x3f\x32\x85\x7a\x40\xec\x6c\x3c\xed\xf4\xbc\x0a\x9d\x96\xb8\xe7\xff\x94\x96\x78\x9f\xa1\xb4\xd1\x39\x76\xb2\x74\x96\xbc\xcb\x65\xe9\x6c\x86\xc1\x5d\x46\x85\x6d\x84\x11\xdf\x0a\x7b\xab\xa4\x18\xba\x15\xf6\xd6\x8c\x95\xf1\x50\x0f\x43\x62\x87\xde\x32\x89\x36\x42\x5e\x6f\x59\x44\x0b\xce\x0b\xf7\x61\x6c\x5f\x1f\x25\x23\xcd\x36\x82\x0e\xef\x63\x29\x65\x8b\xc7\x72\x1f\x52\x68\x00\xf6\xf7\x90\x97\xf6\x41\x3a\x54\x10\x40\x4d\x87\xfa\xc1\x92\x46\xbf\x72\x9e\x08\xf5\x93\xb3\x56\x28\xfd\xa0\xf7\xdd\x2d\x13\x6c\x45\x74\xbc\x65\x65\xad\xbc\x96\x6f\xe7\x2b\xc6\xe7\xe6\x76\xbe\x62\x6e\xdf\x5b\xf9\x8a\x1b\xfa\x93\xfb\x90\xeb\x25\x89\x38\x6e\x99\x5c\x1b\x6a\x8f\xfb\x00\xbf\x32\x6d\x7e\x55\xc6\x58\xac\xbc\xc0\x04\x6e\x64\xdb\xca\xc5\x61\x60\xdb\x46\x78\xcc\x7d\x48\x79\x81\xc7\xd9\x7d\x08\x5c\x74\xe7\xe7\xb5\xed\x49\x59\x61\xd0\xdb\xc6\x6b\xfc\x56\xc8\x5d\xe1\x90\xdf\x4a\x89\x5c\x38\x2e\xb7\x02\xf0\xca\xca\xea\xca\x52\x64\x4c\xb6\x75\x1f\xe2\xe2\xa4\x84\xbd\x65\xf0\xad\x70\xff\x5b\x79\x8d\xeb\x59\xfe\xed\xf0\x71\x1f\x56\x82\x79\x6b\x1b\x2d\xf7\x04\xf6\x6f\x19\x2e\xb7\xe0\xcc\x7b\xcb\x8e\x7b\xa2\xba\xb9\x4f\xc3\x27\x31\xf9\xa7\x14\x5d\x38\x1d\xdf\x0a\xeb\x23\x07\xfe\x32\x58\x6e\xc5\x4e\x78\x9f\xf2\xda\x43\xab\x73\x2b\xcb\x30\xa9\xda\x1f\x4a\xf9\xc3\x1a\x6d\x3a\x1d\x3c\x73\x28\x7b\x6b\x39\x8e\x94\xf9\x15\x75\x42\xc9\xe5\x39\x23\x53\xbc\x5b\x37\x17\xbd\x65\xa6\x9c\x3d\xdf\xe9\xee\x41\x9a\xba\x15\xb5\x76\x66\xc3\xda\xd8\xd8\xcd\x0c\x6f\x1b\x14\x0d\x87\xbb\x80\xbc\x45\xa9\x76\x2b\x86\x6d\x92\x54\xf7\xb6\x79\x71\x93\xe1\xf8\x76\x8e\xdd\x49\x17\x0a\x4c\x4b\xa2\x6e\x83\xdc\x4e\x3c\xda\x80\xb5\x9d\x35\x65\x3f\xa9\x9b\x4e\x28\x09\x1e\x95\x0d\xac\x6c\xb8\x13\x99\xfc\x56\x98\xda\x9c\x23\x65\xd2\x6f\x58\x9c\xb8\x8b\x1e\x50\x75\xa6\xa6\x9f\xd0\xfc\xc5\xe5\xb7\xef\x01\xe5\xf4\x64\xa9\x29\x95\xde\xe2\x27\x24\xe6\xae\x83\xc1\x48\xce\x23\x1f\xc8\x5d\x0c\x32\xb5\x68\xd3\xf2\x03\x29\xc7\x8c\x8e\xbb\x9d\x88\x7e\x19\x1d\x77\xc2\x7e\x6f\x05\xc9\x4d\x34\x9c\x77\xb1\x62\xae\x66\x6c\x76\x4b\xe8\xa9\xaa\xbf\x60\xd5\x8a\x55\xb3\x19\xa9\x5f\x5a\x18\xdf\x6e\x05\xd4\x6d\x84\xd7\x5b\x01\x75\x93\x1b\xe6\x96\xc9\x34\xde\x5d\xb7\xe2\xe9\x36\x39\xe7\x8c\xce\xfb\x34\x13\x52\xd9\xf1\xd8\xb3\xd5\xd0\xac\x47\xa8\x53\x1f\x0e\x28\xbd\xa6\xfd\xb4\xbc\x95\xfe\x76\xe1\xcf\x74\x2b\xd6\x6e\xa1\x16\x34\x8c\xef\xce\xa9\x70\xf6\xdb\x8d\xfe\xdd\x30\xbe\x0b\x59\xd2\x30\xbe\x0b\x11\x0d\x18\xdf\x5d\x7d\x03\x18\xc6\x77\xad\x8c\x46\x7e\x28\x5c\xef\xb7\x0c\xb1\x0b\x15\xff\x2d\x43\xec\x9c\x83\xef\x2c\x13\x57\x26\x4e\x86\xd8\x8d\xbb\xf2\x5d\x0d\x5c\xb6\xf3\xa1\x37\x71\x67\x00\x7e\xf9\xe7\xaf\x2c\x18\x90\xb7\xcb\xa8\xbe\xab\xb1\xe1\x2a\x3b\xb5\xd3\x90\x92\xee\xd5\x14\xca\x36\xc3\xcb\xf2\xae\xd6\x19\xbe\x94\x0c\x3e\x9c\x22\x99\x69\x13\x96\x7a\x57\xeb\x08\xc8\xf8\x75\x57\x43\x85\xb6\x50\x53\x23\xe7\xaf\xb4\x8d\x49\x73\x74\x2b\xe5\xee\xae\x1c\xfe\xea\x6d\x5c\x18\xb7\xf4\x89\x2b\xcb\xa1\x07\x0a\x92\xae\x51\x7c\x17\x19\x68\x0c\xe2\xbb\x8d\xf7\xfb\x50\x1f\x1d\x30\x7a\x37\xf6\x78\xa7\x07\xbd\xeb\xc8\xd9\x0e\xc0\xef\x36\xba\xd1\x32\x4c\xef\xae\x3b\x94\x1e\xdd\x16\x9f\xef\xa6\x05\x5f\xff\x21\xa7\xa9\x31\x7c\x9f\x56\x27\xe4\xa5\x24\x87\x1d\x4a\xef\xb3\x23\x7d\x7c\x5c\x75\x41\x6a\xac\x30\x8a\x66\x05\x12\x61\x1c\xb7\x32\xe9\xae\xc9\xa4\xca\x6c\xbc\x2b\x87\xb3\x61\x7e\xa3\x26\xb0\x86\xf4\xaf\xe7\x13\xd9\x89\xee\xa6\xbd\x81\x3a\xf7\x56\x74\x61\xc3\xb7\xf9\x6e\x4e\x26\x81\xac\xe2\xe8\xc2\xf7\xfc\x39\xba\x70\x21\x03\x38\xba\x10\xe7\xf9\x5b\xc1\x85\x0d\xb3\xd9\xdd\x40\x4e\xe3\x9f\x84\x04\xb2\xd3\xc8\x50\x9a\x6a\xfe\xde\xc0\x69\x3d\x15\x25\x8b\x65\x64\x8e\xbc\x29\xa9\x79\x3d\x77\xe9\xca\xc8\x9e\x87\x15\xd1\xb3\x77\x73\x7a\xbf\xb7\x3b\x07\x81\xf2\x47\x92\x35\xc7\x3b\x30\x3b\x6f\xd2\xa6\x62\xb2\x7b\xbe\xbb\x6d\xdd\xa3\x07\xdd\xc8\x23\xe3\xb4\x59\x6a\xa4\xa6\xf0\x22\xb2\x0e\xba\x90\x31\x3c\xde\x4e\xe1\x3b\xb9\x11\x15\x11\x79\x8e\xb7\xe6\xe5\x33\x02\x75\xab\x95\xf4\xf7\xd1\x04\x86\xfa\xaa\x2c\xfd\x3d\xe2\x16\xc9\x9e\x8c\x2d\x5c\x0e\xd8\xb7\x4c\xe2\xa3\x71\x98\x64\x11\x2f\x68\x94\x0c\x2d\x5c\x06\xe7\x5c\xc1\x92\x2d\x3c\xb1\x1b\x5f\x8d\xde\x3b\x46\xc8\x06\x75\x29\x4e\xe0\x84\x32\xd0\xf1\x01\x25\xc8\x8b\x9a\x1e\x34\xce\xb7\x87\x9f\x12\x44\xa6\xcd\x3f\x79\x5c\xd0\xa6\xde\x46\x38\xf8\xdc\x8a\xa3\xec\x38\x18\xde\x8a\xa3\x2c\x28\x65\x6e\x85\x51\x8e\x06\x23\x91\xe5\xbe\xe0\xfc\x7e\x3b\x8c\xf2\x65\xd0\x0a\xa3\x6c\xa4\xb2\xbd\x15\x46\x39\xde\xee\x25\x41\x8e\x33\x94\x50\xf8\x56\xa8\x67\xb2\x71\x28\x34\x1c\x72\xcb\xad\x2e\x8b\x7f\xab\x2b\x65\xe6\x0f\x9c\x32\x99\xfc\x5b\xe3\x7a\x54\x5e\xe1\x5a\x11\xc5\x14\xa9\xd9\x50\x3c\xdc\x8e\xd4\xc4\x67\xe9\x96\x73\xc0\x59\xd2\x28\xbc\x92\x0b\x41\xce\x01\x35\xec\x58\x29\x88\xe7\xff\xba\x30\x97\x0f\x65\x66\xc1\x8e\x55\x18\xe7\x24\x7b\xd7\xed\xcc\xc1\x20\x25\x18\x56\x79\x66\x3f\x75\x83\x2a\xbc\x94\xd0\x4f\x60\x32\x82\x5c\x3e\xb1\xb1\x1a\x72\xb9\xe2\xb3\x04\xaa\xf2\x06\x0c\xc3\xa8\xca\x27\x2e\x9c\xb7\x02\x35\x67\x43\x36\x1a\x06\xc6\x41\x4c\x54\xb8\x65\x23\xc5\xe4\x2d\x2f\x82\x4a\x54\xc6\xad\x10\xca\x49\xd0\xe4\xad\x10\xca\xd9\x60\x5c\x43\xe2\xe5\x4e\x0f\x06\x18\x2f\xa1\x84\x59\x87\xd4\xa6\x34\xbe\x95\x90\x85\x7b\x18\x7d\xba\xfe\x3b\x8d\x29\x80\xc7\xef\x2f\x19\x7f\x1e\x2e\xa3\x34\xbe\x8d\xb4\x99\x06\x3c\x2e\x18\x90\xee\x21\x1f\xe5\x96\x5f\x92\x84\x93\xd3\x3b\x2c\xe1\xb4\x9e\x66\x2e\x55\xed\x50\xb7\x0b\xd3\xe3\x47\x85\x69\xf5\xeb\xc2\x34\x2b\xfc\xab\x9a\x66\xff\x54\xd5\x73\xea\xb4\xbe\xf5\xa5\x34\x6f\xcc\x94\x3c\x0c\x9e\x66\x42\x0a\x37\x9a\x53\x63\x3c\xe4\x95\xa2\x8f\x9e\x95\x13\xca\xdd\x23\x7f\x4c\x6b\x30\xc8\xdf\x63\xe8\xe4\x82\x5e\xf5\xb6\x53\x01\xa9\xc2\xef\x69\xfc\xcd\x91\xb2\x8f\x3f\x4c\xa1\xa0\x07\xcf\x50\x42\xa3\xe6\xec\x03\x88\xcc\xad\x2a\x0f\x03\x20\x93\x1e\x4a\x3f\x35\x53\x26\x67\x08\xd6\xc6\x91\x98\xbb\x71\xab\x4f\xbb\x5e\x22\xd4\xd9\xdf\x20\x0c\xd3\x39\x7e\x49\x52\x60\xc8\xe3\x82\x53\xb2\xa1\x8a\xeb\xc8\x5f\xd8\x9c\x88\x37\xa5\xa1\x8a\xcb\x99\x59\xd4\xc9\xd8\xe4\x38\x37\x54\xf1\x7c\x7f\x51\xcc\xbc\xcf\x7c\xa8\xfe\x11\x23\x94\x2b\xf8\xf9\x30\x5d\xea\x9c\x32\x8d\x0a\xe2\x9c\xe1\xd8\xcb\x2f\x2f\x9a\x59\x7e\x90\xd3\xbf\x3d\x0c\x76\x43\x70\x90\x87\xc1\x49\x06\xe2\x7b\x39\xc9\x21\x62\xa4\x7d\x08\x70\x6e\xbc\x97\xcf\xd4\x0c\xe5\xee\x53\x53\xca\x09\x26\x55\xd6\xfd\x99\x39\x55\xbc\x67\x1d\xb0\xec\xe5\xa5\x81\x2d\x3b\xdd\x2e\x21\x70\xf7\x72\x8a\x65\xf6\xc9\x32\x97\xc2\xdd\xc3\x18\xc7\x93\x00\x2d\x43\x1c\x3f\x85\x21\xb5\x19\x90\x77\x9c\x6e\x17\xcc\xa4\x5b\xe9\x76\x9f\xaa\x14\xfa\xa4\xb2\x71\xed\x25\x90\xf7\xc6\xf2\x69\xcc\x0f\x7b\x69\x58\xa8\xe5\xe3\xc7\x0e\x5b\x9e\x7d\x78\xaf\x0c\xff\x33\xeb\xbd\x6d\x73\xc9\x13\x79\x3b\xb5\x50\x0d\x65\xb3\xca\x84\x5a\xcf\xb9\x81\xbf\x39\x85\x6e\x5b\x29\x53\x87\x3b\x8d\xde\x5a\x99\x06\xf5\x11\x83\xa1\x7b\x49\xf4\x33\xfd\xc9\x81\x2f\x5c\x43\x26\xf9\x4d\x6a\xc2\x5b\x26\xf9\xf3\x60\xb7\xc9\x24\x3f\xc3\x42\x0c\x37\x1c\x01\xc4\x81\xa1\x84\x99\x19\x6d\xf8\xdc\xbd\x87\xd4\x04\x23\xfb\xc9\xea\x3e\x1b\xb7\xd9\xf6\x4b\x90\xf4\xf2\xb7\xcc\xee\x27\xf9\xed\x8d\x45\xfc\x14\xf2\x8b\x7a\x0a\x86\x6d\x6c\x3f\x05\xff\x57\x57\xec\x86\xfb\x4c\xf1\xa6\x1b\xb3\xc2\xbd\xcd\xfd\xc8\xa9\x6f\x18\xe3\xf9\x6c\xe9\x7f\x32\x6a\xe3\x18\x57\x8e\xcd\xe5\xab\x88\x04\xbf\xb7\x43\x4e\xf3\x6c\xb8\x7c\xa6\xb8\x17\x2f\xbf\xdb\x48\xf1\x7e\xcb\x82\x7f\xe2\x14\x7f\x63\xc1\x27\x2a\xc8\x08\xc8\x7b\xf2\xe0\x90\x05\x7f\xae\x92\x32\xa5\x1b\xae\xa1\x3e\xfe\xf0\x84\x94\x49\x64\x85\xf2\xac\x73\x8e\x0d\x80\x4c\x8c\xde\xad\x3c\xba\x93\xec\x32\xb7\xd2\xe8\xee\x68\x57\x94\x46\x77\x47\x7f\x24\x2f\x81\x4d\xae\x0d\x43\x25\x4f\x22\x96\x6e\x59\xfe\x37\xb6\x1b\xc3\x1f\x3f\x1d\xf2\xcb\xf6\xe9\x3a\xd2\xa8\x8f\xdc\x4c\x5d\x79\xc2\x20\x03\xcb\x11\x60\x63\xbb\x33\xac\xf1\x5c\x2d\x94\xfd\xad\x18\x8d\xa2\xdd\x27\xf2\xaa\x81\x8c\xeb\x48\xd9\xc7\xc9\xec\xa0\xfe\x74\x19\xd3\xbd\x37\x52\x66\x58\x58\x04\xf8\x16\xdc\x0a\x5e\x5d\xad\x86\xd2\x7c\x33\x32\x9b\xd6\x71\x76\xbc\x65\x5a\x4f\x0a\x34\xa3\xf5\x2e\xf2\xe3\x19\xad\x77\x44\x0c\xbc\xc1\xf4\x0f\xa5\x8d\x0b\xc0\x89\x41\x78\xdf\x77\xa9\xcc\xe5\x1b\x65\xbe\x51\x70\x57\xce\x9f\x8c\xde\x1b\x3b\xae\x41\x69\x37\x9e\x9f\xf7\x6d\x2d\x09\xfb\x1d\x43\x72\x5a\x11\xd2\x14\x76\x8d\xdb\x81\x9d\x99\xa6\xdb\xef\x52\x6e\x1b\x99\x91\x37\x3e\xd0\x37\x66\xe4\xc8\xe0\xb7\x41\xbc\x47\xa8\x3f\x17\xba\x47\x19\x87\x57\xf4\xa1\xb2\x0d\x9f\x7b\xc0\x0b\x3f\xd6\x5a\x30\xdf\x18\x87\x49\xc5\x7e\xcb\x38\xbc\x2b\x67\xe1\xe3\xdd\x9f\xcb\xf0\xe3\x74\x5e\x3b\xed\x78\xe8\x74\x69\x80\x75\xb6\x3b\x08\xb2\xe1\xf8\xb2\x15\x4f\xfc\x6e\x0c\x21\xbb\x5a\x49\xd9\x2d\x05\x0b\xc3\xd9\xfa\xe7\x99\x9a\x42\x46\x87\x1b\x3a\xb0\x12\x3f\xb8\x5b\x26\xde\x1d\x45\x84\xc3\x2c\x23\x96\x7e\xa4\x33\x20\x61\xc5\xfd\x71\x0a\xba\xcc\x8d\x3c\x8f\x2b\x77\x98\xf2\x84\xae\xa8\x01\x1d\x66\x89\x9b\xd1\x6d\x9b\x2e\x1e\xda\xb7\x6c\xba\x8b\x6c\x51\xc6\x73\xdd\x18\x8b\xc0\x73\x4d\xec\xde\xfd\x95\x96\x08\xb8\x99\xfb\xeb\x78\x24\x18\x93\xb2\x86\xbe\x6f\x7d\x2c\xc3\x33\xdf\xc9\x23\x1e\x76\x6f\x3b\x71\xb4\xca\x5f\x6f\x4c\x0e\xf0\x97\x1c\x01\x74\xef\x97\x37\x7e\xfd\x86\x56\xdd\xf8\xfc\x03\xad\x5a\x61\x84\x5f\x7b\x6e\x80\x36\x73\x7f\xd9\xc4\x07\x54\x77\x61\xea\x0e\x21\x2a\x30\x00\xa9\xb5\x81\x45\x31\x46\xeb\x89\x73\x04\x18\xad\xcf\x23\xf3\x9f\x6c\xfa\x6b\xcd\x2e\xc1\x3b\xb7\xcc\xcf\x23\xfb\x4d\xe6\xe7\x36\xde\xfe\x9f\xe7\x62\x36\xaa\x02\x3b\x0b\x81\x6d\xc6\x7a\xad\x25\x13\x67\x49\x80\xa3\x21\xd3\x74\x03\xa4\xc3\xf8\xad\xe3\x9d\xf0\x67\xbd\x47\x7d\xcb\xf4\xd2\x18\xa1\x3e\x4f\x19\xd2\xc5\xd7\x10\xa0\x30\x45\x43\xbb\xe2\x54\x67\x68\xd7\x82\x45\x0c\x64\xd7\x1d\x3d\x88\xa2\x3a\x0b\xb6\xd9\x5b\x51\x9d\xa3\x22\x79\x28\xaa\xf3\xc4\x6d\xc4\x38\xaf\x05\x30\x13\xe3\xbc\x8e\x3c\x25\x15\xf1\x79\x12\x7f\x65\x98\xd7\x92\x83\xf0\x73\x44\x3d\x13\xa3\x68\xd0\x91\x97\xba\xa3\x41\x37\x21\x4e\xf7\x4f\x22\x7a\x66\xed\x27\x09\x1d\x8f\xaf\x5b\xe6\xf6\xa7\x2a\xa3\xb1\xcf\x59\x7a\x54\xfa\xc9\x08\x29\x3f\xc7\x78\xd4\x34\x2a\x44\xf5\x95\x32\x6d\x8c\x96\x46\x35\xc1\x3b\x94\xc1\x7b\xd3\xc3\xa5\xb2\xf4\x70\x2b\x8a\x2c\x35\x9d\x8d\xac\x42\x89\xd9\xe5\xa1\x25\xa3\xfd\x19\xfd\xa4\x8d\xf6\x47\xba\x90\xd3\x71\x9e\x0b\x42\x8e\x9d\x91\x98\x7e\x76\xfc\xc8\x7d\xf9\x63\xef\x71\x30\x65\x6f\x3f\xb1\xef\xdf\xd8\xdb\xff\xf7\xa9\x94\x89\x35\x55\x7f\xd2\x5e\xa7\xea\x9f\x28\x86\xa3\xcd\x17\x23\x99\xec\xed\x35\xda\x63\x99\xdb\x57\x58\xb8\x73\x98\xe2\x44\x05\xfe\x2c\xc1\x29\x46\x9c\x2d\xb9\xa0\x8d\x38\x9b\x27\xbf\x8d\xdf\xf1\x7a\x06\x71\x36\x7e\xce\x20\xce\xe2\xd8\x7f\xff\xc9\x2a\x18\xdd\xc1\x9f\x19\x53\xb4\x15\xd8\xc6\xe9\xd2\xb6\xf1\x63\xa4\xaa\x2e\x02\xb2\x62\xdf\xc4\xb8\xce\xf4\x21\x3d\xd5\x99\x0f\xe5\x7d\x00\x63\x20\x6d\x69\x14\x8d\x32\x6b\xb7\xdc\x68\xb2\x6a\x17\x22\x45\x0d\x5c\xfb\x54\xe5\x47\xa4\xd7\xc1\xe3\xd4\xc0\xb5\x27\x7e\x84\x06\xae\xed\x78\x2e\x1a\xb8\xf6\xc4\xaf\xf9\xfe\xf3\xae\x5a\x69\xd4\xab\xfa\x36\x23\xc3\x32\x93\x6c\x0b\x38\x19\x56\x6f\x59\xc0\x2b\x30\x2c\xb7\x2c\xe0\xa5\xbf\x35\x9f\xdf\x28\xf9\x61\xbf\x6d\xb8\xb3\xff\xe0\x9a\xf9\x0d\xe5\x63\x22\x06\xc0\xe0\xb8\x1d\x8f\x47\x83\xe3\xf6\xa8\x24\xfe\xd8\x80\x6f\xd5\xa5\xc2\xf4\xb1\x45\x31\x36\x6d\xce\xf6\x7e\x28\x95\x65\x26\x8a\xbd\xf9\x56\xb5\x79\x95\xb9\x51\xe6\xa6\xfd\x8e\xcd\xab\x91\x76\x1c\xfe\x07\x7f\x95\x11\xbc\xef\xfe\x6f\x44\xc4\x5b\x16\xf2\xbd\x32\xff\xca\xb7\x0b\x78\xc7\x2d\x2b\xf8\x79\xc0\x7f\x64\x05\x2f\xff\xa3\xbe\x52\xb2\x3d\xbf\xb8\x0d\xc0\x5b\x1d\xfe\xb9\x0d\xc0\x5b\x8d\xeb\xb8\x0d\xc0\x5b\x9d\x09\x64\x1b\x7f\xb7\x8e\xb7\x4c\x33\xac\x43\xbd\x8d\xbf\xdb\xed\xc3\xb8\x8d\xbf\x5b\x1c\x2b\xf3\x50\xba\x7a\x5a\xbe\x53\x0e\x1e\x2d\xf0\x36\xfc\x6e\xb7\x67\xe8\x06\x7e\x77\xdb\x2d\x69\x1b\x7f\xb7\xef\xb7\xaa\x13\x02\x8d\xb4\x2a\xe5\x51\xfa\xd0\x96\x36\x70\xef\x36\x38\x6f\xb7\x5f\xe2\x36\x36\xef\xe9\xa7\xfc\x06\x9b\x77\xcf\x97\xd4\x0b\x71\xf3\x8b\x7a\xcd\x39\xbf\xc4\x36\x36\x6f\xb7\x73\xdf\x06\x9b\xd7\x8e\xb2\xdb\xd8\xbc\x4f\x33\xe9\x51\x52\x42\x4d\xa3\x92\x90\x67\xfa\x77\x82\x8b\x50\xfe\xc7\x99\x3e\x84\x31\x5c\xf2\xe1\x4f\x3b\x3c\x94\x61\x0f\xf8\x7f\xa9\x2a\x6d\x11\xd9\x06\xf9\xed\xb6\xca\x6f\x63\xfc\x9e\x23\x83\x91\x59\xc7\xd9\x0e\x1e\xca\x7f\x41\x7f\x97\xe7\x34\xad\xc8\xc3\xe4\x08\xf5\xf7\x94\xa5\x77\xbb\xf0\x16\x86\xed\x0c\xdd\x46\xd5\xd9\x86\xdf\x6d\xce\x36\xb2\x0d\xbf\x5b\x1c\x5e\xbf\x81\xdf\x3d\x32\x18\x0b\xc5\xf6\x18\xd8\x86\xdf\x6d\x25\xf3\x0d\xdb\x64\x15\x31\x7e\x1b\x01\xe7\x21\x9f\xe7\x6c\x67\xfd\x85\xcd\x5b\x3b\xd3\x78\xc2\x36\x59\xf1\xd3\xbb\x71\x86\x9a\x82\x4b\xe9\x50\x8a\x5a\x5f\x13\xca\xf3\xbf\x43\xea\xad\x7d\x0c\xa8\x9f\xe4\xd7\x05\xf5\x27\x37\x29\x6a\x2a\xdf\xa6\x5d\x0f\x36\xc8\xbd\xc6\x4d\xdf\x06\xee\x9d\x8e\xd5\xda\x06\xee\x5d\x3d\x7f\xb1\xcd\xb5\xd3\xa8\xee\xe2\x93\xe5\x57\xa0\x74\xb7\x61\xeb\xa1\x74\x1a\x66\x6a\x7e\x14\x38\x92\x0e\xed\x1a\x74\xa4\x47\x05\x06\xcc\xf4\xf1\xe7\x42\x5a\x95\x05\x70\xa6\x1d\x47\x4d\xfb\x51\xf6\x90\x45\x9d\xf0\x57\xd6\xba\x9e\x2c\x80\xe3\x3f\x9c\xf0\xf2\x21\xbb\xb0\xeb\xd2\x8e\xc7\xca\xac\x12\x53\x90\x0f\x25\x8a\x65\x1d\x65\xa3\x69\xa9\x49\xba\x01\xc6\x66\x35\x84\xc5\x88\x6d\x74\xe0\x6e\x11\x63\x1b\x1c\xb8\x39\x15\xc0\x36\x38\xf0\x53\x95\xd1\xd8\x22\x9d\x1e\x9d\xe0\x23\xcb\x61\x7d\xed\xca\x92\xcb\x96\x38\xf3\x57\xd6\x58\xf8\x99\xf0\x90\x4a\xf4\x55\x33\x00\x1d\x88\xc5\xb4\xda\x24\xbd\x38\x3b\x0a\x94\x3e\x1d\x83\xb4\x8d\x24\xdc\xec\x25\xfc\x50\xa7\x8c\xa7\xff\xe4\xd4\x4f\x55\x4d\xf9\xca\x87\x62\xf1\xac\x6b\xc1\x5e\x7d\x42\x4d\x31\xa0\x50\x9a\xf1\x95\xee\xfd\x8f\xf0\x8a\x82\x9b\x66\x28\x6d\x1d\x8e\x67\x71\xa4\x30\x87\xa3\xc8\xb0\x58\x58\xff\x22\x2f\xb6\xf3\x2d\x2b\x6e\x94\xd1\x78\x5b\x77\x46\x6a\xeb\xf5\xe2\x02\x28\x32\xe4\x58\x63\xb8\x8d\x56\xfc\x14\x0e\x48\xf9\xd4\xbc\x85\xcb\x85\x21\xe5\x0b\xc4\x6e\x35\x5a\xf1\x5e\xdc\x40\xc5\xce\x40\x23\xd4\xc7\x85\x1b\x52\xde\x40\xf0\x2b\xb9\x5d\xb4\xcd\xe1\x29\x76\x06\x82\xed\x28\x00\xbc\x18\x22\xf0\xa1\xa4\x6d\x63\x1d\x8b\x13\x29\x72\x21\x38\x1a\x7c\xaf\x9a\xaa\x72\x8c\x82\x77\x14\x6b\x37\x6d\x78\xdf\xc6\x12\x6e\xe5\x2d\x74\x48\x30\x65\x76\x6d\xe3\x98\xc9\x0d\xa3\x9e\x59\x64\xfb\xb4\xdb\xa3\x78\x1b\x4c\xb8\x85\x79\xc8\x0d\xa3\x6d\xee\x07\xb9\x61\x54\xbb\x08\x3c\x94\x7c\xdb\x38\x3b\xc5\x6c\x77\xc1\x67\x9c\xd6\x38\x67\x57\x6e\x18\x6d\x64\xca\x05\x58\x15\x56\x22\x2f\x8c\xd2\x77\x9a\x91\x83\xde\x4a\x2b\xe6\x16\xcd\xa3\x71\x1c\xfb\x36\x0e\xd3\x36\xd2\x70\xab\x9c\x4f\xa7\x2e\xce\x16\x74\x1c\x7b\x4e\x2b\xee\x14\x8b\x91\x57\xfb\xa9\xad\xb4\x2a\x40\x0b\xa6\x4a\x81\xec\xa5\xbd\x65\x72\x30\x9b\x94\xe9\xee\xce\xe9\x90\x6f\x45\xeb\x9c\xf9\xca\xf6\xec\x21\x35\x8d\xec\xf2\xea\x2d\x97\x2e\xbc\x8d\xe0\xba\xd5\x7e\x95\xdc\x3a\xb8\x4f\xe4\x9f\xec\x53\xb6\x90\x3a\xe4\x3e\xb1\xde\x0f\xfd\x52\x5f\xdc\x97\x72\x9f\x28\x95\x5b\x47\xee\x13\x6d\x73\x23\xc8\x27\xa2\x6d\xb8\x95\x7c\x22\x5a\x7d\xbf\x53\x92\x09\x76\xa3\x7c\x22\xda\xe6\xcc\x55\xcb\x8a\x6b\xa4\xd0\xb9\x22\xf8\xc5\x8b\xc1\xf1\x57\x72\x1c\x76\xc0\xe2\x36\x9e\xf0\x59\x32\xe1\x8a\x95\xb2\xc8\xb9\x8d\x18\x7c\xb6\x33\x94\x04\xd0\x4a\x8f\x5e\x7f\xf8\x18\x3e\x12\x8b\x65\x74\x60\x7b\x67\xaa\x9a\x2f\xd6\xc5\x8a\x37\xaf\x3f\x67\xac\xd9\x2a\xb5\x56\x48\x39\x75\x33\x38\x39\x49\x2c\x6b\xbf\xb6\xb1\x7f\xd7\x4a\x99\xa5\xae\xc5\x7e\x6c\x8e\x4c\x48\x97\x8e\x4c\x58\x48\x13\xf6\x7c\x88\xa4\x61\x7c\xdf\x83\xd9\xb1\x77\xc3\x4e\x4d\x2f\x47\x1a\x95\xcb\xc2\xe6\x62\x97\x27\xc2\x5c\x23\x94\xf4\x36\xf5\x9f\x41\x2d\x4f\x55\x2d\xc0\x66\x07\x36\x16\xc0\xcb\x21\x0f\x03\xd2\xf5\x6e\xe3\x02\xb7\x88\x0b\xcd\xf7\x5c\x3f\xa1\xaa\x9b\x61\x70\xb7\xff\x38\xcd\x74\x17\xf2\x1f\x8e\x71\xd9\xf9\x52\xf0\x6a\x07\xab\xa3\xab\x2c\x5b\xce\x09\x92\x0f\xee\x07\x25\x48\xee\x07\xb7\xbe\x13\x24\xef\x0d\xe7\x54\x82\xe4\x95\x35\x57\x82\xe4\x56\xe0\x0e\xdd\xf6\x8d\x33\x94\xad\xb9\xa1\xa4\xe1\x81\x71\x75\x27\xe7\x80\x73\xc8\xe8\x3f\x1b\x5c\xd5\x48\xbf\x7b\x23\xf5\x76\xc7\x2f\xa7\x43\x1d\xce\x83\xdb\x41\xc6\xfb\x73\xb0\x71\x6d\xa0\xaf\x23\x94\x90\xc6\xd3\x85\x3c\xeb\x1a\xaf\x0c\xd9\xe0\x67\x2b\x29\x53\x4c\x76\xe6\xc2\xb6\x45\xae\x43\xa3\x00\x67\xc3\x3b\x59\x72\xe3\x56\x53\x7c\x7e\x69\x19\x99\xd9\xff\x6e\x29\xb4\x15\xae\x43\x7d\x5d\x18\x52\xd8\xba\x33\x94\xac\x00\x5c\x87\xdd\xb6\x17\x04\xe4\x6e\x6f\x93\xfc\xc5\xed\x71\xf3\x87\xec\x05\xe4\xc3\x6e\xd3\x4b\xd6\x49\x26\xca\x72\xa4\x6c\xc8\xdd\x24\x65\x53\x99\x33\x18\xa9\x10\x93\x3a\x0f\xa9\x6e\x13\x59\x26\x5f\xfa\xae\xc5\x36\x1d\x36\x9f\x20\xa9\x38\x03\xc0\xde\x30\x8a\x61\xf3\x49\xab\x50\x7e\xb7\xf7\x01\xa9\x3b\x65\xe5\xcb\xcb\x85\x13\xf2\x96\x01\xe7\x80\x92\xe5\x87\x19\x1f\xca\x2a\xd8\x78\xac\x0c\x6f\x14\x64\x2c\x1c\x04\x2a\xfd\x6f\x5f\xdb\x74\xc8\x69\x67\xe0\x82\x41\x9a\x33\xad\xc8\xc9\xe3\x08\x25\x8f\x38\xe6\x5b\x79\x05\x66\xe3\x0e\x57\x5e\x01\xf2\x0d\x3d\xd4\x47\xf8\xc0\x8c\xd3\xd3\x9d\xff\xb5\x9d\x91\x49\xc4\xb0\xcf\x56\x98\x8e\xed\x82\x83\x29\x3b\xc0\x1a\x23\x65\xba\x89\x72\x4d\xc8\x76\xbf\x27\xdb\xd4\xd9\x01\x76\x4e\xb0\x8c\xf7\x7b\x96\x50\x9e\xfe\x9d\xba\x53\x76\xd7\x05\xe5\xe9\x67\x6f\x4e\x1f\xd3\x95\x2f\x2f\x3d\x0e\x53\xf5\x96\x22\x3c\x03\xf8\x08\xd0\x28\x8d\x0a\x76\x71\x64\xe4\x3f\xa1\x7e\xa7\x15\x03\x69\xd2\x8a\x3d\x02\xc2\xd1\xed\x11\x50\x90\x2f\x94\x62\x79\xb7\xfc\xf2\x66\xe0\x1d\x52\x29\x18\x10\xa2\x84\x09\x3c\x73\x87\x08\x13\x18\x37\x83\x87\x92\x2d\xe9\x48\xa3\xe6\xbd\x94\xc9\x08\xbd\x10\x61\xe4\x1f\xb0\x5b\xc6\x7d\xb9\x87\x7f\x2a\xa9\xb7\xf1\x82\xcb\x61\xff\xd0\x6d\xc0\xe0\xb9\x61\x4c\xb2\xfa\xe3\xbb\xf0\x50\x43\x55\xdf\x42\x77\xc2\x87\xb7\xdb\x39\x99\x1d\x99\x7e\xa2\x2b\x30\x7c\x70\xe5\x46\x51\x42\x82\xdd\xf8\x63\x25\x24\xc0\x79\x61\x1b\xf5\x77\x37\x44\x41\x25\x1d\xd8\x0d\xa1\xd1\x58\xbe\x76\xcf\x7d\x28\x85\x54\x1f\x29\xd3\x83\x13\x49\x50\x2e\x00\xe5\x38\x98\x2a\xf9\x00\xec\x3c\xa3\x94\xf3\x79\x37\x8e\x86\x3d\x02\xf2\xe0\x73\x1a\x81\x8a\xb4\x21\x8f\x80\x75\xc2\x43\x6c\xf5\xdf\x48\x30\xcb\xa8\x5f\x07\x7b\x5c\x11\xfe\xbb\xcd\x54\x55\xe6\x0e\xc4\xeb\xe5\xd5\x98\xa9\x29\x24\xeb\xcc\xc5\xe5\x91\x22\x97\xc9\xce\xbf\xc3\x60\x97\xec\x37\x11\xf6\x6c\xe6\xcf\x0e\x5b\x9e\xfd\x95\x9a\x9a\x28\x18\xfa\xf2\xe4\x73\x9d\x3a\x8f\x74\x5b\xf9\xee\x2b\x8a\x49\x94\xdd\x67\xf6\x50\x4a\xf1\xc1\xe1\xdb\x76\x1c\x66\x0f\xef\xe5\x1f\xac\x50\xea\x8f\x0d\x2d\x9b\xff\x6e\x3b\x35\xd5\x03\x6c\x49\xc1\xfd\x80\x3a\x3f\x94\x5a\x41\x24\xd9\xdb\x1b\x6a\xa6\x70\x2a\xce\x8e\x2e\x14\xe6\x57\x61\xd9\x8e\xe6\xaf\xfc\x92\xa2\xf9\x77\x43\xec\x51\xfc\x3e\xa0\xd2\xdb\xa8\xb9\xf8\xad\x6c\xc3\xd6\x96\x13\x8e\x2d\xa0\xda\x15\x25\xc5\xb6\x36\xef\x64\x0b\xd9\x3a\xdf\x8f\x7c\x28\xfb\x18\x07\x4a\x16\x77\x3c\x35\xf6\x92\xc5\x7d\x4d\x98\xb2\xb0\x69\x77\x18\x88\xe2\xe7\x9f\x46\x53\x55\x2a\x0c\x76\xb0\x8c\xe1\xb3\xf3\x2a\x94\xbd\x7b\x0d\xf8\xb0\x61\x63\x8f\x93\x03\x64\x83\x77\x87\x11\x5f\x02\xf1\xef\x67\x3e\x74\xa6\x51\xf8\xa2\xc3\xe2\x6b\x4d\xa1\xff\x2a\xe3\x91\x71\xbc\xf3\x82\x97\x71\xfc\x29\x4c\x9f\xd2\x8c\x70\xa2\x14\x16\xbf\x3b\xd3\xa1\xc8\xf7\xdd\xb9\xa3\x2f\x6f\xf7\x93\xbb\xf6\x22\x15\x3c\x3f\x79\x79\x74\x07\x14\x79\x50\x43\x2e\xb5\xd3\xa0\xb6\xaa\x86\xf2\x94\x33\x1a\x19\x96\x7b\xfe\x4a\x29\x6d\xc2\xa5\x85\x23\xfb\x34\x9a\x42\x4f\x24\x1f\x3e\x22\xc3\xee\x68\xdf\x2e\x63\x13\xbf\x65\xcb\x1f\xa6\x50\xb2\x35\xdb\x51\x16\xf8\x72\x9c\xc8\x68\x86\x79\xed\x30\x5f\x05\xd4\xef\x68\x0d\x65\x9e\x7f\xaa\x86\x7c\xd6\x2e\xcf\x59\xc5\xd7\x3f\x85\x1d\x52\x53\x47\x97\x37\x3b\x02\xa1\x45\x89\xa8\xd7\x80\xfb\x2b\x0f\xf5\x53\xf8\x1f\xb4\x1f\x0a\xcd\x9f\x93\xc1\x2a\x34\x7f\xf6\x9e\xf1\x68\xb0\x67\x5a\xd5\x76\x85\xa7\xcb\x0b\x60\xee\x1a\xea\xab\xc1\x85\x52\xc0\xd2\x39\x42\xea\xc3\x74\xe1\x2d\xc0\x56\x96\x17\xc0\x8c\x82\x43\xa1\xef\xbb\xd7\xd4\xd4\x0e\x80\x37\xdd\xec\x00\xee\x8d\xdb\x3b\x80\xe3\xa2\xf4\xd2\xe5\x38\x67\xbe\xd4\x31\x87\x23\x38\xd6\xbd\xf5\xb4\x23\x78\xe8\x23\x3d\x6a\x6c\x6c\x73\x25\x9b\xde\x11\x53\x6f\xef\x00\x2e\x78\x85\xba\xef\xce\xb6\xbe\x0d\xa0\x77\xc2\x7f\xed\xa2\x70\x66\xa8\x76\x88\x47\xfb\xfe\x61\x91\xe1\xb8\x0a\x4a\xdf\x1d\x16\xef\xa4\xd1\x1d\xf1\xc7\x11\xe2\xb9\xb6\x3f\xb6\x36\x46\x8f\x6b\x0f\x81\x08\x98\x72\x02\xd8\x1d\x99\xfd\xe3\xfb\x9e\x6d\xa5\x90\xf0\x9d\x55\xfc\xf8\xb0\x96\x34\xaa\xf3\xc0\xa6\xfa\x78\x69\xd8\xd6\x1f\xa7\xb0\x80\xcb\x39\x81\xf3\x11\x01\x4f\x19\x9c\x57\x3b\x52\x68\xac\x45\x1a\xf5\xda\x14\xec\x14\x0e\x10\x8f\x92\xc2\x01\xe2\x03\x66\xf1\xf1\xf4\xb7\x50\xca\x28\x91\xd1\xdc\x8e\x1c\xa1\x95\xdb\x09\xaf\xe8\x42\xd3\xbf\x78\xdb\x7d\x3c\xfd\xd1\xa2\xcb\x0b\x61\xf7\x12\xca\xe7\x38\x8d\xfe\x39\x7a\xce\xa3\x11\x22\xe9\xee\x9c\x9b\xaf\xa5\x48\x96\xff\xeb\x13\x57\xd8\x8d\x5f\x9f\x38\x74\x78\x76\x3c\x68\x0c\x4e\x69\xa2\xf1\xe5\x7a\x28\xf1\xf5\x1d\xea\xa3\x66\x6a\x3e\x74\x58\x05\xfd\xcb\x0f\xa1\x23\x0c\x38\x24\x7d\x1d\xa1\x6e\xd5\xa4\xfb\xcb\x35\x37\x94\xd6\x9b\x9f\xfa\x9a\xe3\xb5\xd4\x54\xbc\x55\x06\xa3\xc8\xd0\xa3\xb0\xa8\xf2\x09\x58\x0d\x2e\xff\xf5\x0e\x47\xb9\xa2\x9c\xcd\xeb\xe0\x86\xff\x7a\x87\xf7\x50\x8a\xf8\x80\x37\x7f\x0d\xaa\xce\x55\xf9\x65\x4e\xb9\xc8\x94\x95\x79\x55\xae\x15\xdb\xef\x8f\xd8\x49\x9c\x96\x39\xfc\xef\xe7\x79\x1b\xa9\x2a\x2d\x69\x4d\x99\xf2\x56\x31\x35\x8e\x49\xcf\x76\xff\xf9\x76\x2a\x1c\x69\x59\xc9\x77\xa4\x66\xe7\x53\x1e\x5c\x15\x32\x68\xef\x83\xb9\xf9\x99\x89\xc0\x53\x0d\xc2\xe9\xbc\x5d\xdb\x20\x9c\xe5\x28\x88\x4d\x3f\xae\x91\x34\xaa\x63\x33\xd2\xa8\x27\x75\xa7\xd0\x27\xbc\x42\x7d\x5d\xb8\x21\x1d\xa9\xc6\x50\x2d\x8c\x55\xee\x9c\x9f\x17\x00\x29\xee\xe7\x3d\xfe\x6f\x8c\x80\xa7\x6a\x73\x3b\xf4\x29\x29\xba\xcf\x50\x9e\x0f\x06\x60\xc1\x82\x05\xf8\xf3\x36\x5e\xa1\x34\x03\x08\x6e\xb2\x4b\xaf\x6c\xf8\x3f\x7b\x49\x54\x66\xc0\xa9\x97\xb3\x1f\x14\xb4\xfd\x14\x6e\x48\xdd\x0d\x23\x85\xe2\xff\x48\xd8\x32\x5a\xef\x0e\x1f\x51\xf0\xf5\x1c\xe9\x51\xef\x94\x18\xea\xfe\x58\x47\xfa\x97\x04\xd6\x67\xca\xe4\x25\x80\xe0\xa8\x2c\xcd\xe5\xa8\x1c\xaa\x3f\xe7\xd7\x61\xe7\xc8\xda\xbc\x3b\xb2\xb8\xac\xcd\x4f\xd5\x7c\xe9\x0d\x58\xa1\x96\x32\x26\x30\x6e\xcf\x22\x6a\xa0\x3f\xbf\x45\xf2\xc4\x94\xd1\x76\xf7\x95\xc2\xe5\x42\xfe\x51\xe2\x30\x36\x4d\x63\x66\x6e\x47\x3c\x6e\x83\x5d\xee\x6e\x8e\x63\x5c\xca\xe5\xdc\xe3\xdb\xb0\x94\xe5\xb0\xc7\xce\x43\x6a\xe4\x85\x0f\x2d\x9f\xf9\x3c\xee\xc3\xac\x62\xa5\x19\x7b\xc1\xd1\xa1\x59\xbc\x5f\xad\x46\xb0\xdc\x7d\xd1\x85\x45\xae\x45\x0f\xbe\x28\x7d\x17\xef\x03\x90\xb6\x65\x4a\x7e\x76\x0e\x99\x7d\x28\x79\xbd\xed\x94\x79\xbf\xe5\x0f\xc5\x2a\x58\x6f\x03\x5a\x6e\xec\x4b\xfb\xb0\xcc\x5b\xdf\x76\x2c\x80\xa5\x1d\x73\xe3\x54\xd5\xd6\xb4\x8c\xbf\x4f\x67\x09\xa2\x51\xa7\x3e\xee\x66\x94\xfb\xf4\x7e\x73\x4c\xc5\x43\x6a\xbf\xf9\x81\x65\xf0\x4b\xe0\x1d\x1f\x8a\x34\x0c\x21\x35\x6f\xe6\xc6\x5b\xe6\xb6\xdd\x98\xa9\xd3\xd2\xc7\xa6\x51\x50\x96\x4b\x48\xed\x86\x95\x0f\x95\x54\xcf\x0c\xc0\x50\x94\xe5\x40\x69\x62\x2c\xca\x8d\x5a\xd6\x70\x93\xcb\x19\x07\xb7\xd1\x26\x9f\xaa\xb4\xe3\x34\x92\x2d\x94\xec\x64\x2c\xe3\xe9\x4d\x85\xa5\xd2\xa8\x91\x1b\xdb\xe4\xc6\x14\x96\x91\x2b\xae\x6e\x65\xe6\x6e\x27\xfe\x48\xa3\xf2\xad\x63\xe5\x8a\x13\x31\xf0\x9d\x0d\x53\xc8\x5b\x86\x97\x1c\xbc\x4c\x8d\x2e\x39\xb0\x5a\x1a\x40\xb2\xf2\x90\xd9\xc5\x1b\xd5\x9e\xf3\x0f\x29\x23\x36\x53\x8c\x25\x8a\xc1\xc8\x12\x35\x56\xba\x90\x21\x6a\x1d\xf9\x4e\x67\xca\x5e\x9f\xdb\xd0\x93\x83\x0b\xcf\xd0\x93\x4f\x21\x03\x90\x36\xd9\x3e\xb7\x0f\x25\x25\xf9\x60\xa8\x36\xbe\xd7\xf4\xf8\x27\x8d\x0a\x65\xe2\x0d\x76\x10\xdd\x06\xa9\x3c\x79\xfc\xee\x62\x94\xed\xc6\x77\xb2\x99\xd6\xb7\x4c\x71\xe7\x2f\x35\x95\x14\x83\xdf\x57\xda\x11\xac\x92\x5b\x91\xc1\xe7\x3a\xfe\x99\x78\xfa\xa9\xaa\x19\x7e\x3f\xd4\x0c\x9f\xe9\xfe\x23\x8a\xbf\x97\x7f\x1e\xd6\xcc\x2d\x5b\x56\xd9\x29\xb3\xbd\x2a\xdf\x29\x43\xb9\x11\xa5\xb6\xb1\x35\xeb\x99\x1e\x6e\x4d\x7e\x61\x2a\xa4\xbb\x3e\x61\x36\xb2\x33\x35\x27\xa1\xdb\x46\xc8\x2c\x3c\xd3\x0c\x90\x39\x70\x8a\x30\x40\x66\xb3\x3f\xe0\x36\x40\x66\x75\x3a\xd7\x87\x52\xec\xa1\x5f\x1e\x5b\x01\xbd\x65\xb0\x4b\x64\x81\x1a\x8e\xca\x7e\xa8\xae\x1d\x34\xa1\xa4\x2d\xb5\x12\x70\xcb\x00\xf5\xac\x75\xba\xf8\x33\xe9\xd1\x28\xed\xf1\xc0\x46\xbf\x95\xf6\x78\x20\x16\x6e\x45\xe2\x3e\x55\x53\xa8\x29\x6d\x74\xa2\xac\xd3\x63\xd2\x89\xa1\x7c\x7d\x9f\x6c\x99\x87\x5a\x63\x4a\x65\x1e\x1a\x61\xa0\x8a\xae\xad\x2b\x3f\x7c\xb1\x4b\x69\xf4\x52\xff\x2f\xa5\x15\x4d\xf7\x5e\xd1\x9e\x46\xa5\x4c\x9b\x29\xfb\x2a\x21\x01\xe3\x76\x22\x99\x1d\x4a\x96\xdd\x41\x4d\x59\x20\xcb\x19\x6a\x3c\xb3\xcf\xca\x54\x79\x5c\xae\xfc\x84\xac\x8a\xe3\x08\xa5\x91\x8d\xb4\x79\x09\x73\x95\x5f\xba\xcd\x31\x33\x34\xc3\xfe\xe5\x27\xbc\xdc\x96\x98\x76\x93\x5f\x91\x1d\x75\x1f\x4a\x7e\x45\x34\x2a\x8b\xd3\xc0\x79\x61\xcb\xe2\x34\x30\x78\x6d\x19\x9c\xce\x6a\xf9\x69\xdb\xe0\xe4\xa0\xe0\x87\x52\x16\x9b\x33\xd4\x2d\xa4\x9c\x09\xa5\xc4\xf5\xac\x92\x62\x69\x2b\xe6\x0e\xc3\x78\xd6\xc1\xc9\x0e\x36\x27\x3d\x78\x5b\xc0\xe7\x6d\x6d\xaa\x30\xb6\x66\x6d\xf4\xfb\x9d\x96\x85\x2b\x50\x31\xb8\xcf\x54\x30\x6c\x0b\x0f\x0d\x5e\xae\xd0\xda\xba\xd8\x89\xcd\xfb\x02\x56\x2e\x3b\x55\xc1\xe5\x68\x2b\xb4\xf6\xac\x35\xcd\x38\x51\x38\xff\xe4\x3c\x50\x6c\x59\x62\x6b\x1b\x67\xa6\x99\x7d\x64\xa8\xde\x4f\x3b\x65\xe2\x02\x6f\x99\xd8\xdc\x99\xa1\xe9\x8c\xbe\xe3\xfe\x53\xf4\x10\xdf\x69\x3f\xcd\x2c\x05\xb9\x87\xe0\x81\xcd\x6c\x20\xe3\x7e\xd8\xc0\x70\xd8\xf5\x36\x52\x68\x3d\x33\x53\xcf\xa6\x19\xce\xaf\xb1\x8d\x14\x7a\xf2\x8e\x34\x52\xe8\xc0\x50\x61\xa8\xd0\xa7\x0b\x37\xe3\x7c\xd0\xbc\xc7\x0d\x15\x5a\xb0\x6f\x1a\x2a\x74\x6c\xee\x95\xbe\x18\x5b\x83\xd4\x9a\xd2\xaa\x4c\x5f\x4f\x61\xbe\xdc\xfa\x72\x42\x29\x09\x0c\xdc\xa5\x23\x03\x8c\x90\x1f\x55\x5d\x50\x32\x7e\xe5\x43\x69\xce\xe7\xbf\x13\xe3\x3d\x55\x75\x41\x20\x73\x29\x00\xf6\xe9\x23\xed\x98\xd9\x70\x50\x14\xc9\x3a\xc2\x95\x15\xc9\x5a\xb2\x71\x65\x28\x1b\x9b\xd5\xe9\xd9\x63\xfc\xa5\xf6\x11\x32\xb0\x21\x40\xcb\x3b\x03\x5a\xe4\x03\x45\xf6\x96\xe1\x6a\x6c\x24\x0b\x19\xae\x0a\xaf\xce\x2d\x8b\x53\x75\x92\x9a\x6d\x40\xd0\x89\x77\x14\x48\x9e\x46\xca\xd9\x7b\xd8\x3c\xc2\x6d\x32\x9c\x9a\x04\x7d\xf8\x56\x0e\xea\x8d\xcd\x61\x2b\x05\xf5\xca\x1f\xcb\x00\xb5\x4f\x4e\x83\x4c\x4c\x13\x13\x97\x71\x3c\x9f\x66\xd2\xc7\xad\xb0\x90\x54\xfd\xe8\xc3\x01\xe5\xcd\xb2\x42\xfe\x54\xd8\xa0\x1c\xfa\xc1\x87\xdb\x53\x85\x9c\x3b\xac\xb2\xac\xa1\x9c\x76\x88\xf3\xe8\xb4\xd7\xf8\xab\x19\x01\x94\x44\x74\x0f\xe5\xd7\x33\x63\xd5\x93\xe0\x60\xcf\x0f\xe7\x43\x41\xd5\xb7\x87\xf5\xec\x6c\x24\x01\x82\xee\x95\x9f\x74\x5c\x04\x5c\x5b\xb1\xad\x13\x5b\x30\x90\x9f\xbc\x3a\x0c\xf9\xf9\x34\x9a\x3e\x6e\x8d\x26\x55\x35\x1d\x30\x80\x21\x01\x11\x17\x83\xad\xb8\x57\xc0\x08\x1e\x4a\x33\x3e\x42\x49\x7b\x08\x73\x18\xd6\x1e\xa2\x74\xdb\x8a\x66\x5d\x61\x47\x0a\x66\xdd\x67\x16\x4e\x5a\xf7\xdc\x28\x8a\x65\xdd\x27\xec\xc0\x89\xb5\xd1\xc0\x6d\xdb\xc3\xb0\x6a\x6d\x99\xbc\xf6\x42\x3c\x9d\xbe\x97\x51\xe6\x6e\x99\xbc\xf6\xc9\xb5\xec\x94\xd8\x07\xca\xa3\x3d\xc1\xf4\x6f\x50\xfa\xfd\x91\x0f\x65\xd6\x83\x01\xcb\x90\xb5\x4f\x96\x6d\x7a\xd9\xd8\xef\xb6\x63\xe1\x64\xb7\x9d\x4a\x1b\x03\x94\x81\x43\x27\x3e\x2c\x06\x0e\x2d\x47\x7f\x0b\xf5\x8b\xdc\x37\xd3\x59\x5e\x76\xa8\x22\xdc\x94\x50\xea\x82\xbb\xcf\xe6\xa8\xc9\xd4\xc8\x1a\xd5\x67\xa6\x46\xce\x47\xb5\xa4\xec\x56\x19\x53\x63\x99\x1f\x9d\xeb\x9e\xe2\xd4\xc7\x4a\xa1\xf0\x1a\x91\x9d\x15\xf5\x7a\x56\xe4\xae\x79\xfb\x82\xa3\xfb\xe7\xe6\xef\x73\x84\x92\x81\x35\xdf\xc9\xa3\x78\x66\x65\x6c\x58\x80\x51\x4f\x3b\x0d\xb3\x4d\xa6\x61\x3d\xb3\x4c\x7a\x72\xbd\xbf\x0b\x2e\x0d\xb3\xa6\xa8\x8c\xc9\xfb\x47\xd1\xb1\x7d\x66\x25\x6e\x4b\x28\xa1\x7e\x2a\xe3\xe7\xad\xd5\x41\x51\xbb\x65\x51\x3b\x23\x78\xc8\xa2\x76\x62\xfb\xdd\xcb\xf6\x56\x24\x75\xc5\xd8\xb6\xda\x43\x0d\x35\xda\xa1\xbc\xbd\xb8\x35\x64\x7c\xeb\x8f\xbc\xf4\x4f\x36\xbd\xec\x99\xbc\xd2\xe3\x4f\x09\xc7\xd3\xea\xdf\xd3\x0c\x52\x82\x4c\x71\x67\x1e\xb5\x86\x5f\x0d\x73\x5d\x0f\x3b\xe9\x79\x9a\x2d\xbf\x14\xd1\x2a\x6d\xd9\xe9\x4a\x83\x49\x2d\xbf\x46\x50\xc6\xee\x65\xb3\x06\x4a\xb6\xed\x2c\xde\x0e\xfc\x79\x28\x79\xbe\xb5\x74\xf9\x73\x55\x46\x27\x87\xcf\x9e\x66\x7d\x31\xa0\x72\xdc\xcb\x5e\x72\xf0\xf7\x65\x27\x19\x38\x91\xe3\x7c\x37\x6c\x52\x46\xbd\x5a\x58\xe3\x65\x77\x16\x58\xf8\x92\xfc\x38\xb2\x00\x72\x60\x3b\xb9\x09\x64\xd3\x6b\x85\x33\xab\xd0\xdd\x16\x3e\xa8\x14\xde\x25\x72\xe7\xe2\x7d\x30\xa1\xe4\x95\x95\x61\xcb\x11\x1d\xcb\xe4\x96\x4d\xaf\x1c\x68\x51\x36\x46\x3d\x8f\x65\xdb\x49\x9d\x36\x37\x49\xb1\xb8\xfb\xb7\xb3\xac\xc1\xb1\xb7\x05\x83\x88\x9a\x8a\x00\x3e\x27\x23\x95\x35\xb0\x9c\xb0\x73\xa5\x05\x2f\x63\xa4\xec\xd9\x46\x11\x12\x1d\x1d\x5c\xde\x46\xe5\xbf\xd8\xd3\xbf\x19\xe8\x08\x29\xef\xe7\x77\xa8\xca\x18\xf6\x36\xf3\x95\x57\x88\xa7\x7b\x3b\x95\x1a\xd7\x80\x72\x82\x37\x7c\x2b\x8c\x54\x5b\x2b\x02\x3a\x39\xc1\x61\x04\x46\xaa\x3d\x50\x7e\x6c\x4b\x9e\x7d\xa6\xd0\x19\x66\x16\x94\x67\x71\xa6\x55\x79\x2f\x71\x47\x6c\xf6\xc9\x0c\x29\xff\x6a\x84\x4d\x99\x23\x5b\x65\x9f\x38\x9d\x78\x38\xf8\xb6\x90\xca\xce\xdc\x4e\x9f\xd6\x53\x73\xc9\x99\x27\x65\xc2\x0f\x3b\xf2\x9d\x64\x2d\x78\xed\xb6\x86\x13\xcd\xa0\xd1\x70\xdb\xce\xf4\x5b\xc1\x01\x1f\xde\x56\x70\xa0\x19\xdb\x8a\x64\x6e\x84\x09\x6c\x45\x32\xcf\x95\x3e\xec\x4c\x39\xf2\xe1\xb3\xc2\xe3\x4c\xcd\xa1\x90\x05\xc6\xa6\x54\x18\x3b\x7f\x21\x83\x4a\xe1\x6e\xd9\x4e\x88\x6a\xd3\xd3\xbe\xcc\x6e\xd8\xd1\x97\xf7\x09\x43\xbb\x60\x37\x88\x48\x0a\x3f\x6e\xe8\x69\xf7\xc5\x6d\x86\x9e\x84\xf0\xe3\xb7\xaa\xe2\xc8\x39\xa5\x97\x75\xf8\x1d\x89\x4d\xe1\xc7\x8d\x60\x87\x7d\x11\x59\x18\x4a\x81\x00\xbc\x47\x15\x7d\xdc\x0a\x07\xd3\x99\xc7\xc3\x0b\x95\x78\x7c\x4d\xf6\xcd\x65\xcd\xc8\x40\x98\xb8\x70\xd1\x4d\x55\x69\xed\xe8\x41\x28\x40\xeb\x6d\xe5\xf2\x77\x29\x54\x8e\xdf\x9e\xee\x95\xd8\x26\x03\x7d\xf6\x42\x0d\x23\x72\xbe\x70\x8c\x74\x86\xdc\x2d\xc7\x38\x43\x2a\x21\x33\x57\xdd\x65\xe7\xd9\xff\xe0\xeb\x61\x94\xdd\x95\x67\xd8\xe5\xa4\x91\x03\xa1\xf8\xe2\x7a\x63\x00\x76\x36\x80\xa5\x08\x82\xf7\xa9\xca\xca\x89\x33\x85\x33\x5f\x36\xf0\x60\xc7\xde\x97\xb7\xc3\x19\xea\x91\x51\xc3\x6d\xb1\xb7\x66\x1f\xc9\xde\xba\x31\xb7\xec\x4b\x7c\x2b\xcf\xde\xcb\x37\xdc\x80\x51\xca\xfc\x5a\x0b\x57\xea\x6d\xd4\x16\x5e\x17\x32\xb0\xb6\x83\x6d\x7c\x3b\xd4\x6b\xa6\x4c\x2b\x07\xdf\xb8\x1d\xe9\x85\x88\x78\xfb\x75\x43\x00\x8f\xa1\x7c\xc7\x6e\x29\xfc\x28\x0e\xaf\x42\x7d\x95\x7e\x22\x83\x91\x9e\xb4\xe5\x3b\xc9\x13\x27\x5d\xc8\xd8\x8a\xd1\x6c\xdf\xf2\xc8\x6c\x68\x09\x9d\xae\x1c\x8b\xb2\xc1\x7b\x17\x16\x7e\x83\xf7\x96\x23\xa2\xf5\x6d\xfb\x52\xfe\x9e\x3c\x55\x5e\xa9\x5b\xb6\xbf\xde\x43\xe9\x84\x87\x6d\x3a\x7b\x39\x91\x37\xfb\x76\x62\x32\xf4\x3a\xb7\x39\x0c\xbb\xd8\x38\xbf\x98\xdb\xb7\xec\xb0\xed\xe0\xae\xbb\x8d\x4b\xc2\x92\xde\x88\xc4\x8c\x5b\x5c\x03\x7f\x87\x2d\x5b\x6b\xc9\x0e\xb7\xad\x15\xcf\x13\xc3\xfc\x96\x63\xf4\x14\xca\x03\x95\xed\x77\xb3\x17\x32\xa7\xf2\xb7\xc8\xc1\xb9\x8d\xb0\x0d\xd7\xbc\xd9\x0b\x70\xdf\x8f\x01\x4d\xd8\x0b\x32\xd2\x4e\xfc\x14\xf6\xc7\x58\x47\x35\x65\xde\xb7\xf0\x3b\x59\x70\x27\xae\x08\x86\xfd\x6d\x38\xe2\x00\xfb\x1b\xed\xbe\xc2\xbf\x0b\x31\x01\x06\xfa\x2d\x39\xb7\x1f\xaf\x7e\xc9\x60\x3c\x53\x94\x49\x68\x59\x30\x66\xa5\x06\x2f\xd1\x92\x2b\xde\xbb\xe6\x25\xf5\xb1\xbc\x8c\x47\xa4\x01\x79\xeb\xfb\xa1\x53\xc7\xb3\x35\x3e\xb6\x19\xc2\xa7\x94\xa8\x7b\x62\x78\xdf\x1f\xf9\x4e\x62\x06\x37\xca\x6e\x39\xc6\x4e\xa1\xd3\x5c\xd1\xbf\x0c\x01\x3b\x35\x1f\x3e\x85\xc7\xeb\xfe\xe8\x79\x32\x5b\xca\xf4\x83\x35\x65\x9e\x7c\xd8\xab\xa3\xc1\x71\x42\xd8\x5f\x0b\x09\x93\x76\xbe\xc6\xb1\x6b\xa1\xc4\x09\x42\xc9\x5b\x31\xcf\x1c\xc3\xec\xe6\xb1\xa2\x5c\xe0\xa5\xa0\xfc\x54\xba\xef\x12\x61\xea\xeb\xec\x0e\x35\x65\x02\xc0\xe3\x74\x7f\xa5\x69\xc6\x7f\x65\x2b\x52\xbc\x1c\xb8\x0b\x1a\x64\xb7\x54\xee\x4c\x45\x8a\x97\xb0\x77\x45\x8a\x97\xb9\x43\x75\xe5\xb9\xa2\x51\xf1\xde\x28\x56\x64\xbe\x3d\x89\x72\xdb\x5f\x69\x72\x4a\x0f\x25\xc6\xc3\x3d\xf4\x35\x93\x0c\x7b\xb5\x89\x96\xd5\x36\x52\xee\xf8\x37\x1a\xe2\x06\x0d\x37\x7c\x4f\x11\xcf\x35\x22\xc2\xcf\x57\xdd\xe4\x40\xfd\x6c\xca\x4b\xcd\x9f\xcb\x42\x0a\x91\x8a\xb7\xc4\xcf\xcf\xf8\x18\x21\x7e\x96\xad\x31\xad\x6d\x05\x40\xcf\xf0\x41\x19\x6c\xeb\x89\x68\xfd\xf3\x2c\xb2\xc0\x32\xd8\xce\xc1\x76\xb3\xc1\x16\x17\x44\xe0\x70\x07\x1b\xf3\xe7\x07\x59\xd4\xad\x3f\x3f\xc8\x98\xf0\x9f\xb5\x2a\xf3\xfd\xf2\x4f\xfd\xf3\x93\x72\xf9\x8d\x94\x40\xde\xee\xc9\x32\xca\xb4\x3a\x07\x0a\x98\x9f\x51\xe7\x60\x45\xb6\x9e\x46\xf5\xfe\xe7\xa7\x33\xaf\x20\xd9\x4b\x37\x3e\xaf\x46\xaa\x2d\xff\x9f\xb1\x77\xc9\xbd\xac\x45\xa2\x7b\xfb\x35\x8a\x1a\xc2\xe1\x0d\x52\xa9\xe6\x02\xe7\xec\x7d\x7b\xb7\xe1\xf9\x37\x2c\xe2\xb7\x56\x5a\x96\x6d\x7d\xd9\x4a\x58\xb9\xff\x1c\x1e\x41\x40\x10\xaf\x8f\xb5\x30\x2f\x06\xa1\x7a\x47\x08\x75\xe9\xac\x3a\xb2\x5e\x1e\x35\x74\x83\x09\x77\xdc\xe5\x97\x9b\x97\x08\x0e\x62\x44\x2f\x3b\x5a\xfe\x59\x0b\x0d\xa9\x14\xb4\x8b\x70\xd1\x16\x10\xc3\x57\xb6\x64\x6d\xa2\x17\xdd\xb6\xfc\x91\xd6\x8b\x02\x63\xb9\x76\x5b\xcd\xee\x5b\x48\x0f\x3e\x06\x5f\xf4\x7e\xf2\x1c\x5a\xa1\x21\xad\xb2\x2a\x26\x1d\x6d\x29\x1e\x46\xa8\x9d\x3a\xc7\xd2\xfe\x60\xe7\xa2\xcb\xf5\x0e\x67\xd5\x49\x4c\x85\x5b\x23\x27\x54\x52\x2d\x1e\xa0\xb2\xbf\xe4\x17\xd9\x71\xca\x3f\xdb\xd9\x0e\xe4\x9f\x9d\x52\xca\xef\x8f\xf2\xcc\xf9\x17\xc3\xcb\xac\xfb\xff\x16\xcd\x0c\x55\x23\xbc\x46\x72\x33\x87\xff\xf4\xb7\x11\xf8\x34\xfb\x53\x26\xb9\xa8\xd9\x50\xd8\x0e\xff\x48\xbc\x4e\x49\x29\x48\x5a\xdb\x31\xfc\x87\xc1\x70\x08\x2e\x79\x6b\xa1\xda\x9b\x1a\xf1\x82\x51\x55\xd5\xee\xaa\xca\xe9\x94\x4c\xb5\x8b\x10\x2a\xb7\x16\xa1\x96\x3c\x44\xa2\xdf\xeb\x75\x7a\x87\x83\xe8\x12\x47\xdf\xe1\x20\x3a\x9b\x9b\x39\x18\x53\xea\xcb\x50\x57\x13\xaa\xfd\xd6\xc2\x22\xa9\x68\xc2\xc9\x54\x3b\xd4\xed\x13\xdb\x68\x7a\x84\x87\x46\xf9\x4f\xd2\xd1\xea\xe1\x8e\x8c\xb3\x53\x62\x1f\x19\x67\x07\xf1\xd0\x6f\x2d\xd2\x2f\xfb\xef\x42\x77\x2d\x45\x0c\xf9\x67\xa7\x9c\x4e\xc9\x38\x3b\x07\xac\x98\x84\xb3\x4b\x06\x01\x24\x9c\xcd\x1f\x91\x26\x09\x67\x87\xf4\x32\x3b\x1c\x29\x67\xd6\x04\x87\x73\xe4\xea\xd3\xb5\x16\x35\x7d\x89\x06\x87\x28\x98\xb7\x1a\xa9\x48\xdc\x1b\xb2\x28\xb9\x37\xf1\x50\xd7\xb5\x4e\x91\xef\x75\x76\x11\x46\x68\x72\x97\xdc\x3a\x49\xf7\x3a\x09\xf7\xbc\xc8\xf6\x9a\x3f\xeb\xe3\xff\x64\xc0\x1a\x14\xf9\x1c\x44\xfc\xb8\x4a\xfe\x99\x44\xe5\x42\x9f\xff\xc8\xa8\xc9\x21\x5b\xd2\x70\x33\x33\x72\x05\x76\xd5\x42\x7a\xd3\x92\x86\x17\x65\x91\x45\xec\x0e\x2f\xca\x4a\x8c\xf0\x5b\xfb\xfe\xf7\xdf\x3d\x79\x84\x27\xbc\xf6\xff\xb4\x12\x19\xf8\xb2\xc7\x1b\x4f\x15\x1a\x61\xf8\x50\x8e\xa4\x1d\x14\x3e\x94\x89\x74\x63\x8b\x5c\xb3\x45\x37\x3b\x72\xcd\x0e\x39\x9f\x92\x6a\xb6\x96\xec\x2f\x43\xca\x13\xe5\x67\xe4\x33\xf1\x81\x70\xa1\x2c\x04\x98\x5e\xe4\xa1\xcd\xd2\x3a\xee\xd0\x54\x0f\xe9\x19\x77\xc6\x45\x2d\xbb\x67\x87\xb9\x6f\xaa\x3e\x54\xbb\xaa\x97\xd7\xa7\xaa\x76\x42\x04\xd3\x6b\xe3\x0e\x3d\x76\xf9\x68\xbc\x79\x69\x0d\xd5\x55\x02\xa6\x6b\x45\x09\x46\x9d\xdc\x39\x14\x03\x52\x37\x28\xd9\xad\xd4\x3d\x3b\xf4\xd8\xb9\x4c\xd7\x22\x47\x85\xe7\x0d\x63\x59\xb2\x41\x2e\xf2\xe2\x56\xbd\x0f\x6c\x69\xb5\x45\xfc\xa1\xb9\x4e\xd5\x13\x80\xe1\xca\x12\xcf\xca\x84\xb1\x4c\x6a\x06\xf6\xfe\xf1\xa7\xf1\x4a\xad\x35\x0d\x5f\xc7\xfb\x87\xae\x5e\xf6\x22\x33\xc2\x9d\x45\xb6\x49\xbd\x0b\xb2\x95\x5b\xe0\x0e\x87\xc6\x25\x87\x1e\x52\xe8\x2e\x39\xcd\x6c\x82\x35\x17\x31\x94\xc2\xb5\x97\xe0\x98\x8b\x34\xb9\x4b\x3e\x3c\x5b\xca\x5d\xe9\x30\x76\xc1\x92\x5b\xfc\x3d\xdc\x0b\x93\xd9\x74\x04\x5d\xce\x1f\x3d\x1e\x91\xfd\xb6\x9b\xbd\x86\x1a\xb8\xc8\xdf\x76\x17\xe2\xea\xfa\x37\x74\x2f\x73\x33\x6f\xa4\xa2\x50\x6f\xc2\xc8\x43\xea\xf2\x8d\x5b\xe0\x47\x1e\x3d\x64\xbf\xb5\x97\xe2\x0e\x4f\xc0\xa6\x6b\xbf\x32\xdc\x4a\x5e\xd8\xa1\xf7\x5d\x49\x33\x55\xb8\x6d\xe8\xc9\x6d\x17\x5e\xf4\xdd\x37\x6e\x1b\x7a\xab\xdb\xe1\x09\x38\x96\xff\x13\xd9\xa6\xe8\x17\xb9\x6d\x2c\xff\x48\x44\x86\x90\x29\x35\x19\x6f\x67\xf3\x94\x1f\x42\x9e\xfb\x0f\x23\x8f\xe1\xc7\x8d\xc6\x4d\x54\x8f\x19\xbb\x12\xa3\x4a\x44\x56\x39\x43\x65\x5a\xbe\x43\x33\x3b\xc6\x9f\x4f\x63\x58\xd9\xb5\x70\xbf\xfe\xf8\x4b\x36\x16\x77\xba\x5d\x09\x03\x96\x5c\xfb\xc5\xec\x30\x8f\x64\xce\xd5\xbb\x3d\x99\x73\x95\x4f\x6a\x91\x38\x77\xca\x6d\x49\x89\x73\xbd\x73\x2a\xdc\x5f\x3c\x26\x14\xb5\x4b\x6f\x95\x3b\x5c\x06\xe7\x47\xcc\x3f\x14\xb3\xb3\xbb\x15\x69\x62\xf4\x7b\x61\x9d\x4d\x44\x91\xa5\xfc\xb7\xb2\x81\x20\xa9\xed\x4a\xd9\xb5\xd0\x92\xe8\x3c\x45\x89\x99\x24\xc9\xef\x88\xee\x3b\x49\xe7\x72\x6b\xa1\x26\x11\xe3\x6a\xa8\x49\xf2\x5f\xf0\xe9\x08\xe8\x9b\xd3\x47\x5b\xb5\xc5\x9d\xa5\x68\x31\x1a\x6a\x32\x4d\x69\x43\x4d\xa6\x7d\x13\xca\xc7\xa9\x78\x1b\xbb\x11\x9d\x5c\x7b\x21\xe2\xf4\x66\xfb\x45\xef\xc6\x0d\xba\xa9\xd1\x88\xd5\x6a\xba\x25\x50\x6f\x92\x67\xcc\x0e\x7f\xbe\xa5\x37\x88\x1d\x6a\xca\x25\xa3\x0c\x52\xec\xe6\xf4\xd1\xf2\x93\x63\x57\x11\x1f\x76\xb8\xf0\x29\x7d\xd6\xad\x45\xa0\xe0\xae\x3f\xdc\x8c\xd1\xb3\xc3\xc5\x44\x97\x86\x08\xa3\x9b\x93\xf9\x2a\x9e\x79\x7a\xcb\xd9\x0d\xbf\x6c\xad\x47\xe8\x37\xb3\x84\xb4\xdd\x88\xa8\x92\xd5\x4c\x04\x45\xfc\x68\x53\x87\x63\x5e\xd1\xeb\xc5\x0e\xc7\xbc\xfb\x13\xfe\xb4\x46\xe7\xfc\x69\x8b\x68\xd2\x6e\xb4\x47\x5a\x20\x75\xfc\xc4\x16\x77\x4f\xe3\x4d\x40\x5e\xfb\xa4\xf1\xcd\x4a\xf1\x7c\xab\xdf\x4b\xd3\xee\x69\x84\x1b\xe8\x3a\x39\x1a\xf6\x32\x1f\x4f\x0e\x47\x25\x97\x66\x52\xfe\x36\x05\xf5\x20\xe3\x6f\x9e\x62\x95\x11\xaa\xb7\xf9\x7a\xd7\xc9\xf6\x9f\xfc\x65\x8f\x3c\xb6\xfe\x32\x7a\xaa\xfb\x5c\x27\x1d\xad\x0e\xce\xd0\xc4\xde\x9f\xf7\xa7\x3b\x3e\xf5\x7f\x9e\x38\x1b\xfc\x87\x5f\x3e\x1d\xaa\x32\x8c\xa6\x9a\x86\x31\x55\x8d\xf8\xac\x3a\x57\xd1\xb6\x2a\x16\x03\x59\x85\x4b\xf5\x97\xf1\x22\xe9\x7b\x69\x28\x5b\xab\x6c\x62\x76\xc4\x0a\x2e\xcb\xad\xec\x30\x37\x10\x83\x0b\x0d\x6a\x93\x9e\x8c\x2c\xc2\xb3\x68\xfa\x43\x2d\x3a\x25\xf9\xee\x1e\x7b\x7a\xf9\xf7\xe2\xb6\x25\xf3\x4f\x32\x0c\xe7\xf4\xf1\x0f\xf2\xac\xec\x01\xc7\x6d\xcb\x57\xc8\xf0\x0c\xcc\xc9\xa4\x19\xae\x81\x43\xfa\xb6\x3d\xb0\xa9\xf7\xff\x05\xd7\x92\xa5\x0d\x49\x7d\xa7\x6f\x31\x43\xdb\x4f\x97\x3f\x94\x96\xd2\x2a\xed\x50\x5a\xce\x0f\x5a\x85\x1d\xfe\x75\x4b\x76\xb3\x1b\xff\x3a\x29\x5c\xc8\x06\x7c\x9b\xf1\xef\x47\x06\xc3\xe5\x1a\x2b\x35\xdd\x6a\x5c\xbd\xa7\xff\x92\x95\x9a\xee\xeb\x1b\x1d\x50\x6d\x33\x48\xb1\xca\xd0\x7e\x4e\x89\xd0\x1b\xed\x67\xd6\x4e\x1d\x4a\x0c\xaa\x3f\xe4\x12\xab\x9d\x12\x4a\xbe\x29\x4b\x00\xd2\xf8\xe6\xe4\x13\x2f\x94\x7c\x43\xda\xc1\x1d\x6a\xbd\xe5\x4d\x15\xae\x71\x4b\x46\xed\x4a\xb1\x2b\xe3\x50\x52\xec\x2e\x3d\x7a\x93\x28\x77\xc9\xe0\x75\xcf\x78\x91\x2c\x22\xc6\x88\x5d\xbb\x7c\xa1\x8f\xd0\xb5\x39\x49\xdb\x4c\xd6\xda\xa5\xd8\x1f\x1b\x9f\xb6\x2c\xf2\xc7\xa7\x2d\xf9\x4a\x3d\xc9\x6f\xd9\xff\x31\x02\xf5\x22\x6b\xed\xca\x3a\x9a\xc3\xc5\x6d\xca\x12\x68\xe3\xe2\x26\x8f\x71\x72\xd8\xce\xbc\xfc\x13\xfc\xa2\xf8\x56\x68\xb9\x96\x19\x77\x68\xb9\x96\xcc\x11\x77\x28\xb9\x56\x2e\xfe\xbf\x88\xcf\xa8\x61\x84\x3e\x6a\x99\x17\xe2\xc7\x26\x9b\x0d\xf2\xd9\xe6\x3f\x47\xea\x62\x1a\x91\xe0\x95\x87\x96\xb4\xf5\xb7\xd6\xf9\x74\xaa\x3a\xe2\x10\xf7\xa7\xa1\x97\xd7\xfc\x87\x42\x6a\x65\xf1\xe2\x50\x32\x4d\xe9\x86\x95\x96\x56\xb6\xf9\xa4\xa5\xcd\x49\xce\xe5\x3b\x14\x49\xca\xf4\x76\x6b\xb1\xfc\x3a\x9b\x42\x59\xb4\xb2\xd8\x3d\xca\xa2\xa4\x38\x25\xe4\xa5\xcd\x0a\x53\x45\x5e\xda\x5a\xdc\x9b\xd0\x62\xca\xab\x8b\xbc\xb4\xf5\xa3\x53\x6c\x11\xfa\x4d\xe4\xbf\xb0\x79\xd4\xf4\x2f\xf6\x3f\x51\x4e\x17\x79\x69\x53\xaa\xfe\xc3\x1a\xca\x41\xff\xdf\x65\x3f\x8a\x42\xb0\x51\x2b\xd5\xe4\x46\x23\xa9\xb7\x6e\x3b\xe1\x8e\xd7\x3f\xc3\xb5\x50\x7f\xea\xd4\x8e\x58\xb9\xc5\xec\x2e\x54\x4e\xfd\x33\xfc\x7f\x98\x4e\xfa\xff\xde\xf8\x3f\x6a\x3b\xbc\x46\x86\x5a\x09\xc7\xbd\xdb\xed\xa2\x6a\x9c\xa1\x9a\xa7\xd0\x5c\x75\x29\x0e\xc8\x7c\x9b\xe5\x88\x4b\xe6\xdb\x34\xb5\x14\xa1\xb8\xea\x32\x70\x26\xf1\xed\x6d\xb4\xaa\x1a\xa3\x98\xae\xc5\x51\x30\xdc\xcc\x37\x52\x39\xf9\xff\xc2\x80\x4c\x9b\x26\x74\x53\x9d\x1c\x22\xb7\x16\x82\x91\x7f\xf0\xd2\x57\x37\x5f\x0a\x65\x54\xf9\x88\xa3\x85\x32\xaa\x9b\x2d\xe1\x0b\x98\xd2\x72\xf5\xca\xa1\x79\xb9\x99\x08\xa6\x26\xa2\x89\xe0\xb7\xb9\x8b\xf7\x85\xbb\x5f\x6d\x1e\x53\x9c\x19\x9f\x3f\xff\xd7\x91\xf6\xf4\x8b\xf7\x92\xde\x3f\x12\xe6\x37\xc1\x32\xc5\x6d\x37\xd1\x03\xb5\x9f\x43\x53\x35\xa4\x18\x26\xd1\xed\xe8\x62\x3d\xa1\x52\x1a\x96\x18\x42\xa5\x34\xf4\xae\xbb\x43\xa3\x94\x2c\x23\x85\x46\x29\xa7\x9c\xdc\xe8\x8e\x4f\x35\x42\xae\x0c\x39\x69\xd9\x78\x76\xd5\x2e\x0d\x1d\xd2\xe8\xda\x33\xa1\x43\x1a\x52\x9b\x90\x21\x77\x58\x10\x3e\xbc\xc1\xea\x72\x8b\x37\x9d\x74\x31\xa4\xa7\xcd\xb6\xe5\x22\x3d\xed\x50\xb0\x0e\xd2\xd3\x2e\xd9\x0b\xee\x08\xb8\x5b\xa4\x0b\xda\x11\x6f\x77\x4a\xd9\xbe\x43\x33\xe4\xb8\x3e\x24\xb2\x75\x08\x20\x12\xd9\xde\x9f\x70\x75\x86\xbd\x9c\xff\x30\x1e\x4b\xc5\x24\x0e\x47\x8d\x19\x71\x28\x83\x86\x6f\x85\xe1\x95\x37\xbc\xf5\x0e\xef\xb3\xfe\x7d\xf8\xb9\x39\x48\x38\xde\x8d\xfe\x17\x5a\x44\x32\xd0\x3a\xca\xcd\x46\x53\x24\x77\x46\x52\xc7\x0e\x99\x92\x92\x39\x36\xa7\x2c\xc1\x0b\x15\x4f\x17\x93\x8e\xc0\xbd\xd5\xe3\xf8\xf2\x76\x28\xba\x09\xd5\x4c\x4e\x59\x3d\x47\x37\xe3\xeb\x64\x68\x63\xd6\x6c\xfe\x43\xb6\xbb\x7e\x12\x75\x8c\xef\x93\xa1\x8e\x19\xbe\x24\xe2\x5d\x27\xeb\xd1\xfd\x65\x1e\xb5\x17\xbf\x08\x9e\x3a\x16\xbe\x3c\x73\x0f\xd7\x2a\x1c\xa5\xa8\x1a\x81\xa1\xdd\x8c\x76\x83\x76\x38\x9a\x9b\x52\xfd\x97\x93\xff\xd4\x90\x91\x59\xbb\x3f\xc5\x0a\x4c\x9d\x8b\x98\x71\x52\x6a\xed\x2f\xf6\xc8\x59\x37\x88\x2f\x8a\x5b\xdd\x68\x42\xad\x53\xfd\x12\x12\x81\x7c\xbb\x6c\xe9\xf6\x37\x2e\xc9\x0a\xba\xb3\x7f\xdc\x19\x7c\xf5\x08\x17\xba\xac\x90\x0d\x5b\x2e\x74\xa2\xdc\xd0\xe4\x0c\x3f\x10\xff\x88\x9e\xa9\xab\xef\x4f\xdb\x61\xaa\xd6\x69\xb4\xa8\x1a\x7b\x55\xcb\xf1\x63\xa9\x9a\x7f\x22\xc8\x41\x37\x98\x9f\x44\x54\xff\x5d\x90\x51\xf6\x0f\xbe\x91\x0e\x8f\x89\xfa\x2d\xf5\x5b\x7d\x63\x8f\x69\x03\x84\x5b\x5e\xf6\x5e\x09\xb7\x3c\x87\xc0\x22\x53\x6c\x4e\xf2\x67\x54\xaa\xd8\xa1\xed\x40\x8e\xd7\xac\x59\x0c\xe5\xcd\x1a\x12\xd9\x22\x74\xee\x1a\x3a\xec\x1e\xcd\x5b\x75\x35\x02\x83\x6b\xa5\xc2\x85\xee\xfe\xe7\x52\x35\x02\x58\xe8\x37\x94\xe5\x55\xf3\x1f\x4a\x98\xac\xe4\x2e\x6b\x87\x16\x66\xf9\xb6\xfb\xe0\x19\x5f\x5c\x0b\xbd\x9a\x36\xc7\x83\xd2\x4b\x64\x1c\x21\x62\x97\x0c\xba\x48\xeb\xea\x80\x89\xe4\x55\x75\x14\x46\xf2\xaa\xae\x21\x21\x05\x1d\x4c\x2a\xd3\x9f\x46\x33\xda\x46\xb8\xbe\x49\x93\x42\x9a\xd1\x25\xdb\x2b\xd2\x8c\x2e\xe9\x6e\x48\x1e\xba\xa4\xfe\x25\x77\x68\x4e\xf5\xe3\xea\x8a\x67\xdf\xa6\x5a\xf4\x46\x3b\x25\xc2\x9c\x3a\x42\x20\x79\x3e\x73\x52\x10\x16\x12\x7d\x2e\x59\x58\x90\xcc\x73\x49\x21\x47\x32\xcf\xfb\xe9\x52\x35\x3a\x2e\xae\xfa\x12\xa6\x5d\x47\x1c\xfe\x64\x32\x2d\x24\x7f\x67\x4e\x7e\x16\xc3\x9f\x4c\x61\x10\x49\xd2\xe9\x48\x87\x3b\xb4\x2e\xd3\xf7\x84\x50\xba\xdc\x3f\x54\x77\xe2\x6d\xd9\xaf\xd0\x04\x08\x95\x95\x1e\x29\x2d\x1d\xc0\x51\x29\x2d\x93\x37\x55\xe8\x59\x1c\xf7\x8f\x1c\x93\x6b\x70\xfc\x92\x63\xd2\xe1\x03\x49\x1c\xe9\x30\x84\x24\x87\x5c\x93\x33\xf5\xe0\x79\xa6\x08\xa9\xb7\x1a\xcc\x89\x5d\x4c\xe6\xc8\x79\xff\xef\x9f\x58\xf5\xc1\xbd\x8c\x6c\x6b\x8b\x2c\x8f\x4b\x9a\x34\xb2\x3c\xe6\xa4\xe0\x1a\xa4\x79\x5c\x32\xd0\x25\x95\xe3\x92\xef\x0f\xa9\x1c\x17\xf9\xf2\x17\xc9\x1b\x97\x5c\x88\x48\xd7\xb8\x14\x22\xf1\xe0\xa5\x26\x8b\xa2\xf3\xe1\xfd\x32\xe9\x17\xb0\x98\xac\xfe\xfd\xf0\xe7\x93\x03\xc6\xf9\x84\x19\x41\x92\x33\x01\xb9\x1c\xd7\xf8\x53\x83\xe4\xa6\x26\x20\x5c\xaf\xa4\xa2\x38\x1f\x0e\x19\x45\xc2\x38\x1f\x6c\x4a\x92\x16\x20\x2c\x6d\xa5\x92\x3b\x1f\xc4\x04\xd9\x3d\x9f\x34\xe9\x81\x6b\x31\x64\x38\x87\xf2\x3e\x4a\x41\x7a\x12\x0b\x00\x39\x1e\x7c\xd8\x94\xf3\xf3\x56\xc3\x42\x99\xcb\x28\x69\x20\xef\x7f\xaa\x1d\x0e\xf6\xe4\x76\x46\xf8\x17\xfa\xd3\xa0\x0e\xc4\xad\x93\x44\xe4\xfe\x3f\x9c\x0b\x3e\xae\xbe\xb1\x75\xd5\xd5\x20\x64\xe9\x0b\x0f\xfe\x6d\xb2\x0c\x25\x49\xe4\xd2\x73\x22\x49\x22\xb3\xc3\x97\x91\x25\x72\x49\xed\x7a\x12\x97\x25\x29\xfa\x4f\x68\x22\xaa\x6e\x87\x27\xb4\x0d\x43\xde\xc7\x27\xc3\x10\x65\x90\x74\x42\xdd\x90\xc5\xf3\x9d\x6d\x12\x9e\x47\x0e\xc9\x21\x7f\x5f\xa5\x90\x4c\x32\x54\x3d\x39\xa2\x84\xca\xe1\xf7\x64\x2c\x29\xe0\x72\x27\xc3\x2c\x65\x7e\x7a\xb2\x66\xb9\xaa\xd9\xb0\x9e\x90\xd3\x04\xf9\x26\xef\x7f\x32\x92\x78\x7e\xcf\x7a\x99\x25\x1b\x64\xb6\xa3\x84\xd2\x41\xca\xff\x8f\x74\x90\xf7\x3f\xf5\xa3\xc8\xaa\xcd\x43\x09\x4a\xcb\x9a\xbd\xac\xd9\xe3\xfc\x22\x3f\x62\xd1\x61\x7e\x4a\x04\xf5\x49\x22\xee\x42\x80\x65\x4d\x5e\xe1\x6e\x81\x58\x47\xae\xc0\x21\xfb\x28\xf2\x01\x4e\x1d\x2d\x87\x67\xec\xae\x7d\x4f\x92\x3f\xbd\xa2\x9f\x42\xca\x49\xcd\x07\x49\xfe\xe4\x29\x7b\x8a\xf2\xf1\x68\xdf\x85\x57\xd2\xea\x62\x26\x11\x4e\x6e\xc9\x5a\xed\x54\x14\xb1\xa2\xd6\x0a\xfb\x96\x23\xe9\x51\xac\x39\xed\x88\x4a\xc0\x55\x35\x1a\xcf\xbf\x53\x07\x0d\xb9\xf2\x72\x92\x45\x20\xc9\xf2\x56\x17\x17\xa8\x90\x6b\xd7\x46\x8b\x6c\x79\xab\x8b\x78\xc3\x4f\x67\xc9\x44\x88\x3c\x77\x73\xb8\xab\xe1\x8b\xa3\x50\xd8\x8b\x44\x77\xb3\x4f\xb5\x1a\x11\x1f\xe4\x2c\x4e\x52\xba\xf5\xe7\x27\x42\x4d\xfa\xf1\xef\x07\xb5\xca\x22\x8f\xf4\x6e\x4b\x7a\xac\xc3\x33\xae\x02\x77\x9c\x78\xc6\x5d\xfe\xbd\x86\x26\x54\x4c\x88\xc7\x58\xbd\xb7\x91\xfd\x6c\x48\x85\x48\x82\xb3\xd5\xb5\x91\x1b\x5a\x61\x04\x9b\x13\x61\xd1\x96\x17\xb8\x21\x70\xeb\xf6\x48\x6a\xb2\x59\xc6\x3f\x9b\x7e\x9c\xc6\x78\xb5\xfc\xf1\xc2\x3a\xf5\xc2\x77\xba\x56\xb1\xa9\x16\xab\x28\x71\xed\xc4\xfb\xe3\x92\xcd\xc8\xe9\x0c\x4a\xd4\x17\x8f\x81\xab\x73\xb0\x91\x38\x2c\xa7\xa1\x55\x8c\x30\x61\x4b\x6e\x52\xa7\xa3\xa6\xe5\x4a\x76\x3a\xa4\xc9\x2b\xd2\xe9\xd1\x37\xbd\x70\x92\x00\x6c\x7e\x34\x37\x1d\x9e\x9b\x5d\x8b\x59\x14\x57\x89\x07\xbf\x25\xdb\x92\x13\xef\x7d\x39\x91\x52\xf6\x56\x63\x31\x44\xd3\x03\x79\x7c\x68\xa5\x06\x01\x5d\x5d\x63\x50\xc5\xb5\xb8\x66\x8b\x1f\xc6\x13\x5f\x4e\xba\x75\x1d\xde\xf8\x4c\xa8\x83\x21\x8a\x73\xe1\x6d\xa0\x77\x84\x33\xd0\xd8\x73\x05\x23\x1d\xd6\x92\xd4\x79\xc2\xf8\x7f\x49\x22\x25\x39\xd6\x52\x64\x8c\x13\x06\xfe\x4b\x42\x27\xe9\xaf\xe6\xf8\xf3\x65\xfc\x9e\x76\x6d\xa4\xa6\x5a\x92\x40\x4f\x84\x97\x5a\x72\xc8\x3c\x53\x3d\x2b\xaa\x9d\xf8\x32\xab\xf6\x25\x0a\x9e\x3f\x8d\xdd\xf6\xa7\x16\xda\x7c\x9d\x71\x61\xc2\x9e\x65\xd9\x70\xc2\x84\xbd\x7b\x27\x4c\xd4\x6b\x43\x3f\x11\xee\x73\xf2\xac\x21\x8b\x55\xf6\x49\x49\x3c\xab\xe4\x93\x2a\xe2\x59\x65\x79\x9e\x9d\x88\x67\x55\x3f\xe2\xe9\x93\x3d\xeb\x13\x6f\x2a\x5d\xff\x52\xed\xe1\x3f\x5d\x7d\xe3\x8d\x43\xed\x20\xd6\xf8\xe4\x0a\x3b\xf9\xbe\xdc\xbb\xf0\x9c\x55\x4c\xda\x83\x9d\xbc\xbc\x79\x48\x71\x75\xff\x50\xb3\x1a\x91\x5e\x87\xb6\x6d\xbc\x1a\x76\xc5\x84\x3d\xf1\x6a\xd8\x15\xbe\xf5\xc4\xab\x61\x57\x14\x58\x32\x5e\x25\x1f\xa3\xf1\x86\xd8\x15\x3d\xf5\x4c\x82\x79\x8a\xd7\xaf\xa9\x9e\x56\x55\x4b\x78\xf7\x4d\xd5\xea\xfd\x43\x5d\x47\xe2\x0d\x31\xe9\x2d\x9c\x8c\x57\x45\x56\xfb\xe7\x8f\xd9\x7a\x53\x35\x7e\x71\xfa\xd3\x58\x38\xed\xe1\xb5\xf4\x8b\xfa\xcb\x15\x73\xc3\xd5\x95\xec\x58\x5d\xc6\x7b\x47\x0f\x8c\xd2\x21\x9d\x78\x60\xec\x0a\x8b\x77\xc2\xe2\x7d\x98\xa6\x17\xfb\x5d\x0a\xa6\xb3\x38\x37\x25\xe7\x9e\x30\x72\xef\x0a\x86\x42\x9a\xad\xfe\xa7\x3f\x5b\x19\x77\x55\x6b\xfc\xa1\xff\xf3\xf2\x46\x29\xea\x48\x9e\x55\xb3\x3f\x8d\x87\x1d\x05\x94\x3b\x7a\x1b\x54\xfc\x5e\x92\x67\x0d\xb3\x6d\x45\xe7\x52\x54\x5e\x92\x67\x2d\x79\xd3\x9e\x78\x0e\x5c\x7a\x65\xfb\x93\x3b\xab\xa8\x76\xf8\x43\xff\xc8\x37\x3c\xcf\xfc\xe9\x2f\x0c\x5a\x34\xc6\xb0\x66\x24\x25\xd8\x22\x75\x56\x96\x9a\xf4\x6c\x5e\x7d\x86\x6b\xf1\x3e\x31\xfe\xd9\x2f\x91\xe4\x54\x43\xe6\x2d\x24\xa7\xca\x12\x73\xcf\xe6\x92\xa7\x21\x46\xc6\xa9\x21\xd3\x17\x12\x4e\x65\xe5\x4b\xbd\xd5\xb8\x27\xe8\xea\x4a\x50\xad\xa2\x89\xe3\x99\x4d\x4e\x2c\x87\xb8\x59\x52\xfe\x90\x55\x6a\x4d\x9d\xd3\x9b\xb8\x8c\x5a\x8c\xcd\x24\xea\xd4\xde\x64\x63\x74\x9b\x31\x6d\x7a\x39\x38\xf1\x3a\x96\x1d\x85\xf9\x60\x71\x6d\xc3\xb3\xe3\xb0\x55\x49\xb5\x15\x2a\xa5\xae\x1a\xf7\x94\xac\x5a\x84\xde\x17\xcb\x09\xe3\xe8\xac\x38\x1d\x27\xde\xce\xba\xac\xe3\x8f\xde\xce\xe4\x51\x75\x0e\x71\x4f\x45\x53\xf1\x3e\x56\xf4\x1c\x7a\xe2\xd1\x2b\x9b\x6e\x8f\xa2\xb4\x17\xd5\x98\x36\x86\x8f\x39\xb4\xef\x0c\x98\x43\x27\x59\x74\x9c\xc3\xdd\x6b\xba\x16\x0f\x19\xa2\x8c\xc3\xd3\xcd\x4a\xae\xc6\x43\x86\xf6\x58\xd8\x4a\x8f\xd9\xfc\x87\xf1\x90\xe1\xa9\x09\x83\xdc\xbe\xd4\x1b\x5e\xc0\x74\xa1\x22\x1f\x96\xc2\x3b\x9d\x83\x5e\x54\x4e\xa1\xe7\x90\x69\x42\xfc\x27\x8c\xa5\xd7\x14\xff\xc7\x58\x3a\xfd\x99\xd4\xf0\x1e\x97\x49\xee\xd1\x4b\xda\xca\xfe\x36\xae\xfc\xcd\x9f\x62\x8e\xee\x5a\x88\x0a\xbc\xb2\x90\xc7\x4a\x49\x39\x16\x79\xac\x72\x92\xed\xc7\xf9\x72\x55\xaf\xae\x7d\xf9\x4f\x7f\x1b\x76\xc6\xd5\xb5\x27\xec\xa2\x96\x6a\x2f\x9f\xb2\xc8\x11\x0b\xab\x0e\xf1\x4a\x12\x62\x99\x55\x47\x3e\xac\xfb\xe9\x54\x35\xa8\xd3\x3f\x09\x23\x93\xb9\xf6\xf9\xa2\xc5\xfc\xf3\x97\x4c\x88\x38\x47\x44\xca\x6a\x52\xd5\x9d\x88\x7f\x55\xe4\x6d\x7c\xbe\x5a\xf4\xea\xff\x8c\x45\x97\xac\xf0\x8d\x00\x40\x7d\xf9\x53\x56\x4b\x5f\xf2\xd0\x2c\x01\xfd\xab\x25\x70\xab\x3c\x66\x4a\x22\xfb\x6a\x09\xba\xff\x32\x5c\x89\x74\x5a\x7d\xd9\x4a\x8a\xbd\x4e\x02\xad\x5b\xa5\xdd\x78\x4d\x1b\x32\x92\x3e\xbf\x49\x30\xcc\x8f\x6a\x91\xda\x4d\xdb\x2c\x9e\xc1\x96\x82\x9c\x9c\x78\x06\x2b\xd2\x41\x9c\x78\x05\xeb\xbe\xb8\x87\x39\xf5\xf0\xe9\xfd\x43\x58\x5a\x7f\x3e\xc5\x0e\xbb\xa8\x16\x34\x20\x5e\xf9\x8b\x4b\xee\xa8\xfe\x89\xa0\x16\xad\x72\x98\x4c\x2b\xbd\xcd\x22\xb9\xd6\x94\x8e\x8b\xe4\x5a\x39\xf9\x0c\x8a\xec\x5a\x8e\xa7\x4e\xfe\xac\x35\x24\xd4\xfc\x78\x93\x6a\xfe\xc3\xc3\x1f\xea\x17\x37\xbf\xaf\xa9\xd1\x25\x57\xbf\xaf\x57\x38\x35\x8a\xd3\xb4\xc6\x14\x6f\x72\x43\x51\xe4\xc8\x3c\x35\x5a\xf9\xdf\x6f\xd5\xad\xfc\x9f\xac\x3a\x82\x5a\x65\x5f\x9c\xb1\xa7\x56\xe0\x1c\x32\x48\x0d\x4b\x9c\x61\x4e\x3d\xb3\x66\x26\x1e\xeb\x66\x11\x1f\xc5\x44\x5a\x81\xf7\xc9\x11\xb5\x14\x10\x83\xcc\x4f\xd9\x97\xe8\x78\xba\x4b\x7a\x90\x22\xf3\x53\x97\xb9\x3c\x99\x9f\x86\xc2\x75\x2b\xb9\x93\x59\x4c\x18\x5a\x57\xc5\xbc\x38\x84\x90\xca\x1f\x31\xdc\xc7\xb1\x8d\xab\xaa\x93\xa4\x5c\xfe\xdf\x30\x98\xff\xf8\x37\xb1\xa2\x48\x92\x9b\x9e\x60\xfa\x19\xc3\x89\x67\xc5\xfc\x67\x45\x62\x7f\xd6\x43\x6e\x96\x15\x95\x78\xe9\x63\xdf\xdc\x4a\x5c\x9d\x6e\x5f\xdf\x5d\xf9\xab\x4f\xf0\xe3\x77\x47\xcc\xe4\x8c\xc8\xff\xee\xc8\x4d\x9c\x3a\x16\x1e\xef\x8e\xe8\xb3\x93\x60\x74\x2f\x3a\xed\xfc\xe1\x3a\xfe\xee\x49\x54\xec\x20\x86\x77\xe3\x00\x9a\xf1\x09\xb9\x55\xc6\x15\xcc\xe2\x25\x77\x2b\x16\xb4\xb7\x12\xae\xb9\x4d\x95\x70\x15\xad\xaa\x2c\x0f\xe1\x55\xa6\xd4\x0f\xb1\x2d\x5e\xae\x98\x78\x91\xbd\x5c\xf1\x08\xbd\xf4\x72\xc3\xc3\x2f\xee\x55\xde\xc0\xd8\xf7\xef\xc1\xab\xe0\x43\x25\xde\x17\x6f\x7b\x55\xd5\x50\xe9\x34\x55\x2a\xff\xe7\x6a\x18\x53\xb6\x7f\xfd\xe7\xfd\xec\x0f\x29\x28\x72\x8e\x64\x7c\x02\x58\xa6\x4b\xfa\x01\x94\xc9\xa4\xde\x8d\x72\x81\x55\xe7\xff\x5a\xc8\x0b\xec\x1e\xf7\x35\x96\xf2\xfd\xec\x48\xb7\xc2\xca\xf3\x2b\x59\x36\x22\x39\x34\x85\xef\x67\xd7\x19\x8e\xc2\xf7\x4f\xd2\xff\xf3\x1a\xf3\x3f\xf6\xff\xff\xff\x3d\xff\xfa\x4f\xfe\xfc\xf7\xdf\xff\x19\x77\xac\xff\xfa\xcf\x37\x12\x4e\xde\x7f\xae\x14\x12\x36\x97\xdf\x78\xa0\xfe\xcf\xf7\x89\x0c\x39\xf7\x06\xfb\x0d\xf3\xff\xfb\xcf\x9d\xf0\x7b\xde\x7c\x23\x07\xd8\xfd\xe7\x8d\x14\x6a\xff\xfa\xcf\x37\x5e\x92\xef\x3f\xf7\xaf\x2e\xbd\x7e\xc3\x2e\xff\xfe\xb3\xc2\xd4\xe7\x5f\xff\xf9\xc5\x6b\xe7\xfd\x27\xf4\x8a\x39\x90\x1e\x08\xea\xe1\x75\x91\x23\xe4\x5e\x20\xee\x6f\xfd\x22\xab\xcd\xfd\xe7\x22\x71\xf6\x65\xd2\x07\x51\x20\xc5\x98\xd0\xaf\xd1\xc8\x4a\x93\x40\x2f\xaf\xa1\x50\xc2\x3c\x31\xd0\x10\xec\x29\x44\xa6\x87\x0f\xe8\x31\xca\x2d\x34\xe8\x35\x13\x8e\x9b\x42\xa4\xfc\xef\x42\xbb\xd1\x15\x2e\x36\xc0\x21\x27\x51\x98\xe1\x21\x16\x68\xdc\xab\x29\x84\xdc\xd0\x84\x76\xa3\x97\x05\xf2\x04\x74\x6b\x8f\xe1\xb0\x68\xa2\xcb\xa1\x47\xa2\xb0\x23\x39\xc2\x45\x89\x9e\x45\x01\x3d\x3a\xe8\xa9\x42\x39\x93\x40\xe3\x3d\x8f\x42\xd0\x53\x16\x3a\x85\x92\x43\x95\x6f\xab\xbf\xe5\x91\x25\xf6\x66\x26\xc2\x08\x85\x78\x88\xa1\x85\xb6\x8c\x86\xbc\xbc\x82\x27\x66\x42\x5c\x50\xb8\xc7\x0d\x76\x91\x99\x80\x11\x14\x2e\x3f\xc5\x04\x3c\x13\x3a\x81\xc2\xbd\xe6\x10\x33\x3f\x13\x36\x80\x42\x7c\x1d\xb7\xe6\xcc\x1d\x9e\x42\xf8\xe6\x60\xae\x96\xc9\x7c\x4b\x21\x86\x48\x7c\xf5\x4c\x5e\x5b\x0a\x1b\xbc\x0a\xff\x09\xc7\x19\x89\x98\x60\xb7\x3a\x8d\xc7\xe6\x44\x92\xc8\xe4\x99\x8d\x82\x82\xcb\xc4\xe1\x77\xab\xfe\x7e\xf3\x7d\x28\x7f\x32\x59\x62\x29\xfc\xc0\xb3\xf0\x57\x78\x48\x4a\x99\x7b\x74\xe6\x56\x4f\xa1\x81\x6b\x5c\xa7\x1b\x87\x15\x78\x1e\x8e\x7f\x17\xf6\xcf\xc3\x7e\xe6\x96\x4f\xe1\x05\x67\xbc\x47\x0b\xc8\xd5\xfe\xe2\x53\xb8\xfa\xc9\xdd\x35\x13\xdd\x23\x93\x5e\x8d\x42\xdc\x7c\x3e\x31\xae\x42\xde\x33\x0a\xf1\x60\x22\x70\x1a\x7c\x4d\xa1\x85\xe4\x62\x14\x48\x97\x2f\xb4\x1a\x25\x20\x96\xd0\x6e\x74\x44\x34\x31\xa1\x3f\xa3\xcf\xa5\x81\xa5\x3e\xec\x24\x38\xc4\x24\x44\xe1\xc2\x3e\xa7\x10\x53\x58\x96\x7e\xf1\xb8\x77\x4c\x15\x61\xa5\x0b\x79\xb2\xa2\x70\xc2\x4f\x98\xb1\x64\x0f\x30\x5e\xa4\xd1\x49\x15\x92\xed\x50\x88\x2c\x5d\x18\x60\x14\xf2\xec\x50\x78\xc0\xf9\xcd\xec\x2e\x46\x30\xaf\x5a\x68\xa5\xb8\x6d\xc2\x4a\x0d\xda\x08\xd3\x62\x0a\x6a\x83\xf1\x54\x48\xba\xcc\x78\x43\xc5\xa2\xe8\x56\xa6\xd1\x7b\x5f\x2d\x4d\xe8\x36\x1a\x87\x4c\x0d\x99\xab\xcc\xbe\xf5\x8b\x1d\xf2\x41\x8f\x57\xe6\x34\x1e\xe9\xcc\xb9\xf4\x95\x19\xea\x4c\x0a\x91\xc0\x09\x87\xc1\x32\x1f\x18\xec\x2d\xd0\x43\xb5\x12\xe1\x24\x29\xe8\xd8\x8c\x76\x96\x89\x84\xa0\x82\x39\xe3\xcc\x58\x56\x32\x1e\xae\x2c\x59\xbe\x92\xb7\x3a\x85\xb3\x29\x78\x20\x2f\xe6\x66\x45\xdc\x2c\x63\xa2\x51\xcc\xcf\x0a\xa1\xd2\x72\xc6\x4a\xbc\x2c\xcf\x2f\x31\xb5\xb2\xac\x27\x8b\x79\x5a\x81\xa7\xe5\x8c\xc6\xb2\x98\xab\x15\x02\xf6\xe4\x4c\xe8\xb2\x42\xc4\x9e\x28\x70\x20\x63\x22\x7a\xab\xaf\x70\xbe\xe7\xb1\xbe\xac\xe1\xef\x87\xf0\xd8\x74\x85\x40\x1d\x14\x7e\xc1\xa3\x83\x9b\x16\x82\x64\x44\x61\xc1\xbb\xe3\x78\x2b\x04\xb6\x88\x42\xb4\x53\x3e\x9d\x7e\x2e\xb7\xc3\x7b\x46\x49\x9a\x9f\x6d\x7c\x0b\xef\xfc\xee\x31\x8e\x2b\x6d\xc1\x38\xac\xe0\x4a\x1b\x05\xe1\xec\x9c\xf5\x33\x4e\xf8\xd8\xa2\xbd\xb0\x1e\xe3\x0f\x38\x49\x43\xca\x7a\x8d\xbf\xc2\xe3\x92\x55\xb6\xd7\x7d\xb3\xee\x05\x9d\x4c\xd9\x5e\x77\x9c\x5a\xb2\x92\x60\x97\xed\x75\xdc\x59\x78\xdc\x70\xcb\xf6\x3a\xca\xb2\xbe\x70\xa1\x2e\xdb\xeb\xb8\xab\x9c\x3c\xfe\x84\xfd\xe3\x8e\xf3\x7f\xbb\xf6\xc4\xd7\x4b\x7f\x46\x73\x98\x0f\x94\xed\xe5\xc7\x46\x3a\x17\xc2\x5d\x16\xcc\xa2\xa3\xc0\xf7\x24\x40\x2a\xdb\x64\xb1\xbb\xf0\x42\xb7\xbc\xfc\x3b\x12\x48\x64\xa5\xd6\x2a\x98\xb4\x52\x88\x34\x4e\x9f\xb8\xaf\x14\x0c\x46\xa3\x10\xed\x54\x0c\xc0\xcb\x36\xb9\xc8\xc0\xb1\x7e\x20\xeb\xed\xe5\x97\xe5\x5d\x25\xed\x5c\xc1\xd6\x8e\x42\x7c\x8f\x63\x4d\xd9\x26\x8b\xbd\x85\x4f\xa6\xdb\x64\xb1\x21\x0b\xb9\xcc\x94\x6d\xb2\xd8\x90\x45\xc5\x35\xaf\x6c\x93\x05\xa6\x1c\xb9\x16\xc8\x1a\xeb\x8d\x28\xe8\xfb\xc9\x7c\x9a\x5c\x36\xe4\x52\x6b\x61\x3e\x4d\x2e\xa8\xcb\x73\xc5\x6f\xa2\x1c\x93\x8b\x34\xb5\x95\xe0\x23\xe5\x98\x5c\xd0\x75\xde\xa3\x73\x81\x6b\x5d\xd0\x56\xe6\x8a\x1d\x75\x39\x26\xa3\x93\x85\x43\xd6\xc7\x64\x84\x82\x2e\x57\xfc\x61\xcb\x29\x62\xce\x07\xf2\xaa\x98\xdc\x97\x63\xf2\x42\xbf\x94\x2b\xaf\xda\xe5\x98\x4e\x4e\x13\x0e\xfb\x38\xa6\x87\x03\x3d\x54\x1e\x24\xca\x31\x3d\x1c\xd6\xb7\xf1\xaa\x56\x8e\xd7\x17\xc9\x24\xb7\x8f\xfa\xef\xf5\xd5\x73\x65\xc3\xd1\xaa\x1c\xaf\xa3\xce\xf2\x46\x2a\xba\xe2\xb3\xbc\xf0\xf8\x93\x1b\xd6\x50\xe5\x78\x1d\xf5\x20\xd1\xd0\x1e\x96\xe3\x75\x54\x76\xe7\xa6\x83\xf1\x78\xbd\x48\xc3\x9b\x1b\x41\xf9\xca\xf1\x7a\x1d\xd6\xab\xa1\x69\xad\x3e\xfb\x2b\xf9\x27\x73\x23\x1c\x6e\x9d\xc9\x38\xda\xf0\xc6\xd3\x68\x25\x67\x63\x14\xf8\x1e\x6b\xfa\xea\x23\xb6\x72\x38\xe6\xc6\xab\x67\xf5\xf1\x58\xc9\xb4\x95\x1b\x66\x06\x75\x56\xe3\xac\x4b\x9b\xf1\xf6\x55\x67\x33\xde\xa4\x8e\x0d\x21\xae\xfa\x8e\x5f\x95\xdd\xa7\xf1\xe4\x58\x67\xf7\xf7\x5d\x78\xdc\xb1\xea\x1c\xc6\x59\xaf\x8e\x5f\x41\x9d\xd3\xf8\x14\xbe\x68\x67\x19\xd7\xf3\x32\x91\xc5\xea\xdc\xc6\x59\xaf\x8e\xd1\x60\x9d\xc7\xf8\x11\x3e\xf9\xdd\xaf\xf1\x2f\x51\x15\x10\xd2\x2b\x41\xd3\x29\xc4\xf7\xf5\xc3\x3c\xfc\xfc\xfd\x4f\x78\x62\xbc\x8f\x71\x62\x61\x77\x6c\x2e\x2a\xd1\xaf\xa3\x10\x8a\x98\x8e\xbd\xdd\xad\x66\xe3\x3c\x8f\x67\xda\x7f\xdd\x0e\x06\x39\xbd\x69\x9e\xc3\xb7\x39\x0a\xfa\x3e\xee\x9a\xd5\xc7\x7c\xd5\x31\xdf\x79\x75\xa9\x3e\xe6\xab\x8e\xed\x8e\x7d\x5e\xf5\xb1\x5d\x75\x6c\x77\x52\x6a\x54\x1f\xdb\x75\x85\xcb\x59\xee\x98\x10\xdd\xea\x10\xce\xf7\xec\xc7\xea\xe3\xbc\xea\x38\xef\x98\x50\x57\x1f\xe7\x55\xc7\x79\x47\xac\xaa\x3e\xce\xab\x8e\xed\xce\x8b\x4c\xf5\xb1\x5d\x75\x6c\x0f\x8e\xe1\xea\x63\xbb\xea\x18\x1e\x38\x33\x55\x1f\xc3\x55\xa1\x8b\x46\x62\x9e\x89\x56\x14\x85\x30\xcf\x1c\x58\x46\x57\x42\x03\x45\x81\x76\xb0\x53\xad\x3e\xb6\xab\x8e\xed\x81\x55\x66\xf5\xb1\x5d\x75\x6c\x8f\x02\x3d\xfb\xd8\xae\xeb\x4b\x1c\x03\x7c\xbe\x6f\xb5\x1a\x8f\x30\x6a\x55\xf3\xff\xe5\x32\x58\x75\xcc\x0f\x2c\xae\xab\x8f\xf9\xba\x7e\x28\x06\x48\x74\x75\xab\x3f\xe3\x7c\xaf\xfe\x9b\xae\x14\x88\x60\x10\x55\xb8\x2e\x5d\x13\xab\xae\x05\x03\xb3\x95\xea\x6b\x41\xd5\xb5\x40\x01\xe3\xab\xaf\x05\x55\xd7\x02\x59\x4a\x54\x5f\x0b\xaa\xae\x05\x03\xbb\x84\xea\x6b\x41\xd5\xb5\x40\xc9\x3a\xab\xaf\x05\x55\xd7\x02\x3d\x87\x56\x5f\x0b\xaa\xce\xf7\x81\xa6\xa4\xfa\x7c\xbf\x85\x50\xae\x2c\xe6\x79\x37\xae\x9b\x55\xef\x5a\x83\x20\x5f\x15\x0f\x24\x0a\x31\x5e\xfc\x34\x2a\xee\x46\x14\x22\x5b\x18\x79\xe4\xaa\xef\x03\xd5\x4e\x46\x58\x65\xde\x6a\x36\x1e\x32\x55\xfa\x64\xe1\xcd\x38\xb1\xbe\x3e\x55\xf8\x10\x1e\x0e\x2a\x13\x45\xdb\xad\x7e\x8d\x47\xac\x1c\x02\x63\xd6\xad\x4b\x7d\xdd\x91\x94\xeb\xe2\xf4\xb3\x8b\x6f\xe8\x7e\x32\x09\x3f\x5b\x7d\x3f\xa9\xba\x6f\xcc\x4f\xe3\x7b\xd3\xb9\xee\x1b\x4a\x5a\x5c\x7d\xdf\xa8\xba\x57\xcc\x04\x9f\xf7\xbd\xa2\xea\x5e\x31\x73\x4b\xff\x7c\xfd\xaa\xbe\x76\x54\x5d\x3b\x26\x09\x86\xab\xaf\x1d\x55\xd7\x8e\x59\x06\xdd\x32\x99\xea\x7a\x31\x49\x41\x56\x7d\xbd\xa8\xba\x5e\x4c\x22\x67\x57\x5f\x2f\xaa\xae\x17\x4a\xbf\x53\x7d\xbd\xa8\xba\x5e\x4c\x8c\x02\xaa\xaf\x17\xf5\x84\xf7\x77\x3c\xe3\x80\x6b\xfa\x74\xbd\x98\xa8\x51\xaa\xaf\x17\xf5\x64\x96\x01\xc3\x83\x5b\x7d\x85\x87\x3e\x22\x23\xcb\x56\xcc\x93\xa2\xa0\x76\x16\xb8\xc9\x57\xd7\x8e\x89\xce\xa4\xfa\xda\x51\x4f\xb8\x6a\xe6\x39\x27\xfd\xac\xbc\x97\xdc\xc2\xa2\xfd\x29\x7c\x0b\xa7\x1d\x6c\x56\xaa\xaf\x29\xf5\x38\xa9\x1d\xe4\xee\x6b\x4a\x3d\xe1\xe2\x95\x97\xc8\x0b\x1b\x8f\x28\x04\x19\x2d\xb1\xbf\x13\x49\xb9\x28\x74\xdc\xcc\xe9\xff\xf4\x78\xe7\x96\xfb\x39\xf3\x36\x79\xb5\xaa\x68\xff\xd3\xe7\xa3\xfe\x9b\x8c\x4e\x38\xe1\xa4\xcf\x07\xb6\x72\x96\xfb\xaf\xf8\x6c\x64\x64\xaa\xc7\xec\x12\xed\xf3\xc5\x8b\xf0\x61\x7c\x82\x0f\xe1\x6e\x87\xdf\xe5\x39\xb0\x1e\x5d\x8b\x2b\x9a\xe1\xf4\x11\xfb\xf6\x75\xea\x16\xa2\xff\x38\x97\x56\x5e\x92\x28\xf0\xbb\x6c\x27\x5e\x86\x28\x8c\xc0\x45\x3f\x5b\xdb\x12\x65\xef\xc5\x59\x97\xed\xf9\xdc\xb8\x4e\x26\xcd\xbf\x9e\x70\x6e\x61\x81\xab\x3f\xc7\xed\x20\xf7\x27\xd8\x1c\x4a\xd4\x28\x84\x5b\xef\x87\x47\xc3\x5b\xdd\xc6\xbf\xe0\xfc\xee\xd9\x6a\x3f\x54\x9a\xe9\xc3\x53\xe7\xad\xfe\x8c\x33\x3f\x9d\xdf\x3d\xa6\xf3\x50\x33\xa6\x4f\xd2\x7e\xf9\x8a\x6d\x9d\x30\xc0\x4f\x4a\xa1\x53\xd1\x1b\x52\xe0\x77\x27\xf4\x16\x69\x6f\x28\x90\x34\x18\xf6\x7d\xbe\x9e\x9f\xaf\xe6\x67\xa9\xfd\xad\xdf\x8d\x07\xcd\x8b\x37\xe1\xfe\x7e\x33\x0f\x4b\xbf\x2b\xb6\xcb\x75\x36\x7d\xb2\xe8\xd6\xfc\xe1\xfc\xa0\x2b\x92\xdb\x54\xf4\x6e\x14\x62\x1d\xf1\x19\xb9\xd5\x61\xfc\x0b\xce\xfc\xfc\x10\x03\x2a\xba\xae\xf4\xe1\x5d\xb4\xa2\xcf\xa2\x70\xc0\xf5\xbb\x9e\xcf\x1f\xfd\x44\xaa\xae\xe7\x77\xdc\xce\xa1\x9d\xf2\x11\xee\xdf\x65\x9e\xf1\xda\xa8\xbe\x76\xdf\x82\xbe\xa7\x9d\xc7\xf3\x19\xf1\x7a\xd2\x07\xd5\xd4\xad\x4e\xe3\xb4\x23\x3a\x79\x74\x2d\x93\x66\xe9\x93\xc5\xaf\x1e\x8f\xeb\xd1\xb8\x1a\xfd\x7f\x8e\x7f\x37\xd2\xe1\x7e\x32\xd7\xd6\xf3\x98\x3e\x1f\xe8\x30\x8b\x4e\xcc\x57\xcf\xcb\x7e\xc9\xa3\x09\xef\xc6\x17\xf8\x10\x7e\x8c\xc7\xba\x93\x8e\xb1\x9e\xd7\xe3\x7a\xa1\x93\x2c\xfa\x79\xcd\x27\x5f\xf6\x7b\x16\x7f\x78\xb7\xdb\xd9\xac\x97\xe8\xe4\xf5\xbe\x8e\xf4\x1f\x49\x59\x5d\x2a\x2f\x94\x14\xe2\x77\x4b\xf0\xc3\x36\x3f\xbc\xef\xdd\x42\x03\x9f\xc2\x87\xf1\xa0\x73\xdc\x07\x1a\x0f\x92\x14\x06\xf8\x12\xfe\x33\x1e\xf3\x43\xb0\xc9\x36\x3f\xf0\xab\x5b\xa8\xe0\x5d\xf8\x2b\x5c\x11\xd0\x82\x1e\x9a\xc5\xa4\x46\x4a\xfe\xf4\x29\xb5\x0a\xaf\xc6\x3b\xf8\x10\xbe\x8d\x1f\x22\xa9\xa9\x9d\xe5\x76\x16\xbf\xdb\x8a\xf0\x6e\x5c\x91\xd7\xa6\x70\xf5\x3f\xa9\x9f\x5d\xdf\x6f\x7f\x0f\x9d\xa3\xfc\x6c\x24\xa5\x8f\x42\x28\x4e\x3e\x04\xa7\x69\x53\xe7\x63\x23\x4d\x7c\xfa\x94\xa9\xfe\xc3\xc7\x1a\x39\xe1\x2f\xce\xf7\xd9\xf3\x1f\x41\x48\x2e\xbe\x84\x77\xe3\xcc\xf3\x2a\xc2\x97\xf1\x2f\x78\x13\xfe\x08\x5f\xac\xe3\x52\x3b\x4b\xf3\xa3\xbc\x12\x55\xeb\x9b\xf7\x1f\x3c\xc6\x45\x9a\x81\x46\x4e\xf2\x28\xc0\x9f\x79\xcd\x6a\x64\x07\xa7\xb0\xc0\xf5\xbb\x1e\x57\x66\x5c\xe8\xe9\x9b\xc5\xd4\x46\xca\xef\xf4\xa9\x5a\xdf\xc2\x39\xd2\x48\xfe\x7d\xf1\x2c\xbc\x1b\x9f\xe0\x55\xf8\x36\xfe\x80\xab\xfd\x25\xba\x2a\xac\x2f\xf7\x9f\x36\x25\x0e\xdd\x02\xfd\xac\xfd\x9f\xaf\x5f\x8d\x04\xdf\x14\x64\x8d\xbd\x84\x8b\x4c\x0b\x64\x41\x0c\xf0\x5b\x5d\xc6\x99\x3e\x91\x51\x31\x59\x93\x21\x41\x01\xf5\x1b\x6f\xd9\x14\x18\x5e\xef\xc2\xbf\xc6\x83\x3d\xf1\xdc\xdd\x66\x04\xb2\xa0\x20\x9c\xf6\xab\xc9\xb7\xb2\xfd\xaa\xc8\x4b\xaf\x77\x8d\x24\xd6\x49\x71\xcc\x1b\x59\xac\x29\x30\x1d\x22\xa3\xba\x35\xde\xca\x32\xf3\xda\xd4\xc8\x2c\x4d\xa1\x83\xeb\x77\xbd\xfc\x95\xe5\x27\xed\xe2\xad\xfe\x8c\x3f\xe0\xf4\xa7\x99\x1c\x09\x6c\xaf\x10\xdc\x8d\xcc\xcd\x14\x68\x27\xeb\x7b\x6f\xbf\xa6\xf4\x27\x99\xdf\x8d\x90\x0e\x14\x62\xfe\xb1\x75\xb8\xd5\x6e\x7c\x80\x43\x8e\x92\x42\x1a\xaf\x1a\x49\x81\x9b\xdb\xec\x26\xbb\x0e\xd9\x35\x91\x4b\x37\xd9\x91\xb8\x58\x31\x90\x1b\xc9\x89\x29\x1c\xf0\x21\x5c\xed\xa3\xec\xfc\x34\xd1\x89\xd4\x76\xb7\x40\xfb\x62\x37\xdd\xe3\xea\x1c\x3f\xe4\xb3\x68\xb3\xbb\xff\x11\x93\x3d\x7d\x30\x1b\xb8\x55\x7f\xcf\xf1\x49\xc6\xa2\x36\xbb\xe7\xbf\xc3\x56\x9a\xe8\xa4\x7b\xbc\x5d\xe3\x1d\xfc\xee\x30\x5b\x09\x03\xe2\x8b\x33\xae\xe1\x6d\x33\x38\x26\x71\x67\xbd\xd5\xc7\x38\xed\x88\x4e\x86\xe9\x27\x52\xeb\x5e\x5c\xed\xec\x66\x9c\x76\x16\xfd\x9c\x66\xd3\x93\xe3\x04\xab\xe2\x5b\x3d\xc6\x83\x6d\x75\xd1\x8f\x1e\xf9\x1b\xf9\x68\x2f\x0e\x3d\x4c\xcf\xe7\x84\x9d\x61\xe6\xdb\x48\x3f\x4b\x21\xfa\xd9\x45\x57\x73\x6b\xbc\x93\x7e\x22\x3d\x37\x72\xd0\x52\x18\xe0\xf4\x7f\x1e\x7f\xcf\x3e\xc5\xde\xba\x91\x50\x96\x02\xbf\x2b\x7a\x5b\x53\xed\x2c\x8e\x9f\x2e\x36\xb4\xe6\x34\xbe\xc0\x97\xf0\xc7\x38\xfd\x14\x1d\x2e\xcf\xff\xe2\xfa\xd2\x45\x87\xcb\xfb\x62\xb1\x2e\xe4\x5b\xba\x55\xcd\x4f\xbc\x9a\xa4\x0f\xaf\x86\x6d\x2e\xaf\x0b\x26\xa9\x9f\x2e\x7a\x5b\xde\xd7\x8b\xe0\x82\x5d\x7c\x69\x1d\xb1\xe3\xc5\x7e\xef\xe2\x4b\xcb\x7c\x29\xcc\x45\x2f\xce\xfc\x6f\xaf\xe3\xd6\x78\x45\x57\xdb\xe3\xda\x1a\x97\x8e\xbd\xbd\xfc\xbd\xfa\x3f\x59\x97\xbd\x8d\x6b\xfe\xe7\x14\xfe\x35\xfe\x8b\x34\xf3\x5d\xb0\x9b\xc7\x64\x85\x47\xea\x5b\x75\x33\x9c\x32\x5d\x64\x78\xdc\xcd\x43\x37\x09\x0b\xd4\x48\xfd\x49\x21\xba\x39\x44\x6e\xc7\x64\x75\xd8\xa6\xf8\xf5\xb7\x79\xb6\xa6\xe7\xc0\x7e\x86\xc8\xe7\x98\x7c\x24\x1d\x0c\x91\xcf\x39\x9a\xfe\xc3\x2d\x91\xe8\x64\x8d\x2c\x9b\x14\x06\xf8\x12\x7e\x8c\x47\xff\x87\xc8\xe1\xeb\x6d\x8a\xb1\xcd\x67\xe8\xb6\xf3\xf5\x29\x2f\x69\x62\x88\xcd\x7c\x97\xbf\x57\xff\x9b\xbe\xf7\xf1\xf5\x45\xea\xc1\x85\xf3\x56\x1f\xe3\xf4\x5f\xcb\xfe\xf5\xb2\x7c\xb9\x55\x0e\x2d\xfb\x77\x0f\xe3\x0b\xbc\x0b\x77\xfb\xdc\x36\xf1\xc2\x6c\xa4\xbc\xa4\x10\xc7\x1a\x1e\x57\xb7\xfa\x35\xce\x78\x07\xdf\xff\xcc\x06\x7e\xdc\x7e\x87\x8e\xaf\xdf\xd2\x36\xfa\x71\x2c\x0c\x91\xc9\xcf\x64\xf2\x83\x9c\x87\xd6\xfd\xe7\xf9\xfc\x71\xec\xe0\x24\xd8\xfc\xc8\x7b\x0b\x09\xbc\x0a\x1f\xc6\x27\xf8\x10\xae\xf9\x79\x98\x4f\xfc\xf9\x1a\xd9\x1b\x29\x0c\x70\x7d\xef\x79\x7e\x98\xe7\xa9\xdb\xef\xe3\xdb\xd4\xc3\xfc\x4c\xd1\xc9\xe3\xeb\xc0\xc3\xb6\x9b\x3a\xd6\x9e\xe3\xfe\xc0\xce\xa7\xd8\xcc\xe3\x79\x93\x94\x31\xc5\x66\x5e\xd3\xf9\xcb\x31\x35\x45\x3f\xaf\xfb\xff\xc2\x3e\xa7\x8e\xaf\xd7\x6c\xe6\x85\xcd\x10\x2f\xad\xf1\x66\x4d\x81\xf6\x75\x9d\x79\x7d\x8c\xbc\x1c\x23\x18\xe0\xb5\x25\x53\xa2\x5b\xa0\x9f\x1c\x47\xeb\x23\xfa\x59\x1f\xe8\x87\x80\x87\x6d\x7d\x44\xff\xeb\x03\xfd\xcf\x31\xfe\xe2\xf6\xb5\x64\x64\x70\x0b\xc1\x8d\xc9\xe1\xda\x96\x2f\xfd\x2b\x71\x9a\x90\x1f\xa9\x91\x4d\x8f\x02\xdd\x85\x5c\xc8\xab\x47\xa1\xfe\xf7\xdf\x8d\x38\xb7\xb7\xf6\x13\xcc\xee\x26\x45\x69\xc3\x28\x28\x0a\x70\x1b\xf2\xff\x34\xf2\xd8\x51\x88\x51\xa3\xd9\x6e\x64\xad\xa3\xf0\x82\xc7\xaa\x61\x30\x44\x41\xdf\xd3\x9d\xbc\x8c\x47\xb4\x82\xcf\x82\x2a\x96\xef\xe4\xd8\x14\x49\xd3\xd4\xc8\x11\x17\x05\x44\xd2\x95\xd5\x8c\xbb\x19\x77\xf6\x86\xb5\x45\x23\x57\x1a\x85\x98\x6b\x14\x38\xb7\xea\xcf\xd5\xfb\xca\x2c\xf8\x26\xbd\xca\x54\xc4\x7f\x7e\xb6\x88\x27\xae\xb8\x49\x37\x09\x08\x24\x31\xa3\xc0\xaf\x76\x60\x1d\x3c\x4b\x17\x62\x9c\x43\x1a\x79\xc5\x28\x7c\xc1\xab\xf0\x57\x38\x3b\x80\x3c\x07\xb7\x5a\x8d\x63\xa4\x26\x8a\xab\x53\xed\x57\x2e\x2e\x98\x0f\xdf\xea\x36\x1e\x94\xbb\x44\x71\xd5\x4b\x5e\xa1\xf4\xc5\x81\xb4\xaa\xe4\x54\xf2\x6c\x5d\x5c\xed\x6b\x07\xac\x0a\x47\x5c\x93\x59\xf0\x45\x99\x0c\x5a\x0d\xcb\xa8\x46\xce\x2c\x0a\x71\xc0\x60\x5d\xd3\x96\x0c\x4c\xda\xd2\xbd\x1a\xf3\x9a\x46\x1e\x2b\x0a\xfa\x5e\xdd\x39\xfe\x3e\x2c\x85\x12\xc1\x73\x1b\xb9\xa5\x28\x4c\xf0\x29\xfc\x18\x7f\x02\x4f\xfa\x5e\x07\xc0\x0a\x9f\xbd\x8b\x57\xe1\x6e\x67\xd1\x3e\x0c\x6b\x35\xdd\x1f\xc8\xef\x94\x14\x46\xed\x56\xb3\xf1\x02\xde\x84\x4f\xe3\x0b\x5c\xed\x78\x19\x23\x8c\x59\x4a\x9f\xa2\xfe\x98\x08\x09\x5a\x26\xb1\x69\x35\xd3\x60\x44\x2f\x4b\x8a\x02\xd6\x96\x1e\xf7\x1b\x59\x9b\xd2\x15\x47\x85\x7f\x8d\x33\xdc\xca\x74\x76\xaf\x6e\xdc\xaf\x2f\xae\x76\xbc\xba\x11\xe4\xeb\xe2\x53\xf8\x36\xce\x34\x88\x3a\xa5\x0c\xb8\x05\x7e\x57\xd4\xd9\x3d\xdc\xae\xe1\x76\x7f\xaf\xe1\xf6\xc3\xb4\x75\xa6\xa7\x4b\xdc\x21\x5d\x51\xab\x22\x4e\xe9\x0e\x1a\x99\x8a\x52\xe2\x31\xb8\x91\x70\x88\x02\xdd\x19\xfe\xfe\x6b\xfc\xde\x7e\x88\x7f\x7e\x6b\xfa\xd5\x41\xa8\xc2\x8f\xf8\xd7\xf0\xe2\x86\x17\xdf\xc5\xd5\xbc\xf7\x5c\x64\xfa\x69\x55\xa4\x3f\x24\x43\x90\xe3\x27\x5d\x7e\x04\x7e\xdc\xcb\xd8\x8a\x09\xdb\xe8\x46\x4a\x1f\x0a\x41\xfa\xda\x11\xc3\x24\x3b\x08\x32\xf7\x59\xcc\xfd\xf4\x0e\xe5\x8a\x9f\x92\xb8\xe6\xf4\x60\x27\x83\xe5\x05\xba\x91\xde\x86\x42\x01\x5f\xc2\x97\xf1\x8d\xd7\x30\x6b\x32\xbd\x56\xe1\x9a\x97\x14\xdd\xeb\x56\x9b\x71\xbc\x8c\xb9\xfa\x93\x75\x86\x02\xbf\x2b\x12\x9f\x3a\x4b\x49\xfe\x72\x71\x26\x7f\xb9\xff\x4b\xfd\xe4\x05\x62\x2d\xcf\xfe\x52\x3f\x45\x83\xcb\xb4\xb6\xe4\xdd\x8c\x28\xb8\x96\x69\x8d\x17\xfa\x94\x44\xfb\xcb\x6c\x3c\xee\xee\x29\x25\xd1\xe0\xf2\xb2\x2c\x96\x25\x89\x13\x2e\xdd\x65\x56\x5c\xc1\x5b\xd3\x70\x97\x49\x2d\xf4\x4b\x29\xf1\x60\xdd\xd6\xf6\x59\x19\x57\xf4\x8b\x77\xe1\xd3\x38\xdd\x41\x42\x24\xa3\x07\x05\xa6\x13\x49\x70\xe9\xe1\xbe\x91\xab\xe3\xe2\x4b\xb8\x86\xb5\x35\xfd\x3a\x8b\x7d\x93\x5f\xe1\x92\x95\x14\x3c\xab\x91\x88\x83\x02\x76\xc5\x3a\x5c\xb7\xa9\x2d\x6c\x38\x93\x02\x2e\xb5\xb5\x4d\x56\x1b\x4e\x88\xbd\xc6\xad\xfe\x8c\xbf\xe0\xcc\xc3\x91\xe4\x4e\x4a\x8b\x94\xb2\x38\xe1\x91\xe4\xae\x04\x16\x8a\x6f\xd4\x48\x4b\x11\x05\x36\x51\x4e\x8c\xf7\x98\x95\x1c\x96\x37\xeb\x18\x3d\x5e\xde\xc3\xf2\x12\x69\xed\x56\xa7\xf1\x05\x4e\x3f\x2d\x12\x90\x1d\xe2\xe2\xea\xa7\x44\x17\xf2\x44\x5c\x2a\x64\x1e\x2c\x2a\x90\x23\xe2\xe2\x5d\xb8\xfb\x1f\x57\xe7\xc4\x03\x77\x5b\x16\x15\xd6\x51\x6c\x47\xae\x7a\xd6\x6f\xdf\x42\x06\x2f\xc2\xf5\xbb\x21\x1b\x5c\x7c\xfe\xcd\x95\xeb\x2b\x81\x6d\x7d\xb1\x30\x25\x20\xd1\xad\x2e\xe3\x2c\x4f\x6b\xc2\x7f\xc6\x1f\x70\xba\xfb\xf5\x6e\xfd\x42\x2e\x44\x9b\x6e\x56\xbb\x37\xf2\x36\x5c\x5c\xdd\xf5\x34\x29\xb8\x8f\x66\xe3\x2b\x79\x9c\xfc\x0c\xf7\x73\x35\xef\xf3\xf4\xab\x59\x12\x55\x5b\xc0\x20\x4d\xc3\xc5\xe9\xe6\xcf\xd4\xf2\xe3\x80\xc9\xa2\xea\x9f\x77\x47\x84\xdf\x49\x0a\x5c\xd4\xc8\xc0\x40\x81\xef\x79\x37\x5b\x16\x48\x48\xbc\x90\x52\x16\xb5\xff\x7c\x6e\xfe\x38\x37\xb3\x78\xe8\xcf\xd4\xfe\x53\xff\x45\xed\x3f\xf7\xff\xa7\xcc\xb6\x62\x96\x3f\xef\x02\xd4\x1e\x49\xcf\xf1\xb6\x32\x68\x58\x19\x24\x85\xfb\x69\xb6\x32\xb8\x85\x58\xe5\xa2\x5d\x60\xc1\x66\x45\x2e\xfa\xa4\x94\x2b\x8d\x34\x08\x51\x58\xfa\x9e\x71\x3d\x5e\x76\xd4\x24\xa9\x88\xda\x1f\x5f\x8b\x50\x93\xa4\x22\x66\x69\x01\x66\x21\xc0\xa4\xa2\xf5\x7a\x7c\xee\x87\x24\x93\x52\xd1\x41\xfe\xf8\xe0\x7f\xd4\x7f\x51\xe9\xeb\xfe\xbf\xea\x3f\xcf\xf4\xcb\x82\x0d\xe9\x07\x2e\x9e\x85\x7f\x8d\xff\xc0\x99\xcf\xd7\xdc\xec\xd5\xb8\x74\x60\xbf\xe6\x66\x2f\x17\x02\x52\x46\xdd\xea\x31\xfe\x05\xa7\xff\xaf\xd7\xf1\x65\x1d\x49\x68\x7e\xab\xcd\x38\xdf\x0f\xb5\xef\xf5\x7d\xd9\xc5\x16\x2d\x5e\xcf\x43\xa4\x16\xb8\xb8\x7e\xd7\xbb\xf8\x65\x17\x17\xd1\x95\x05\x2d\xac\x3f\x2e\x1e\xf3\x4c\x4a\x01\x0a\x95\x6c\xc5\x49\xf8\x34\xbe\xc0\x8b\xf0\x47\x38\x5c\xae\x70\x38\x13\xe0\x9f\x82\xda\x59\xc2\x87\xf1\xd8\x47\x44\x9e\xbe\xd5\x6d\xfc\x0b\x5e\xc1\xb7\xdb\x61\x7e\x24\x15\x10\xde\x9f\x42\xf4\x07\xab\x99\x5b\x3d\xc6\x1f\xf0\x06\x7e\xdc\x8e\x02\x20\x26\xf5\x47\xdc\x0f\x6b\x97\x7b\xd6\x32\x5e\xab\x7f\x76\xe2\x26\xa5\x7b\xf8\x4e\xba\x38\xee\xc4\x3c\x10\xa9\xbe\xed\xb4\x8c\xb3\x7f\xa5\x06\x20\x48\x3f\x85\x1f\xb8\xbf\x7f\x85\x87\x28\x98\x48\xec\xdd\xb6\xd5\x3c\x3b\xc1\xd5\x49\xaa\x77\xab\x3f\xe1\xdc\x7b\xb1\xfe\x6b\xc4\xc4\xa7\xc0\x7c\x22\x18\x13\xd6\x9e\x02\xbf\x0b\xbf\xda\x56\xe7\x10\x33\xfe\xe2\x43\xb8\xe6\x2d\x43\xcf\x58\xa5\x35\x62\xb9\x53\xe0\xfb\xa9\xef\xc5\x6e\x89\xa7\x7e\xef\x1c\x55\xf8\x36\x1e\xbf\xdb\xb4\xbe\x59\xfb\x97\x30\xea\x17\x87\x4e\xf2\x71\xfb\xf0\x9f\xa6\x75\x2c\xba\x1c\x11\x3d\x3d\x25\xbd\xdb\x13\x12\x3d\x0a\xd0\x9b\xde\xed\x77\xd1\xbe\xdb\x85\x7d\xa7\x77\xf8\x6d\x7d\xca\x46\x9f\x92\x1a\xc2\xe9\x2e\xa6\x9f\x88\x5c\x9e\x14\xca\xa6\xed\x22\xfe\x4f\xec\xf1\xa4\x40\x35\x6d\x5b\x4c\xdc\x05\xfe\xd9\xb4\x5e\x45\x0f\x28\x1b\x7d\x4a\x6a\xcd\xed\xf8\x77\xd9\x77\x4d\xeb\x58\xb4\xef\xb0\x8a\xba\x38\xf3\x50\x4d\x6f\x15\xbe\x84\x35\x56\xdb\xd5\xf4\x56\x39\x47\x08\xfa\x73\xab\xd3\x38\xed\x73\xac\x11\x5c\x9c\x42\x01\x5f\xc2\x87\x71\xfa\x39\xfc\xfd\xcf\xf8\x03\xae\xfe\x78\x7d\x2b\xf4\x49\xdc\x99\xb6\xab\xf7\x51\x65\x1f\xe1\xa4\x77\xab\xee\x27\xfc\xa7\x89\x4e\x9a\xfb\xdf\xd4\x7f\xd1\x49\x13\x5f\xdd\x0d\xbe\xaa\x77\x7b\x22\x79\x53\x88\xf6\x71\x2e\xb8\xd5\x63\xfc\x05\xa7\xff\xd6\xcb\x10\x65\xfb\xe2\x4b\x78\x37\x1e\xe3\xc5\xc5\xb1\xd9\x5a\xbc\x11\x23\xfb\xe2\x8c\xb7\x79\xbf\x28\x92\xb5\xde\xed\x6d\x4d\xd6\x14\xb6\x3a\xe9\xdd\x9e\xc0\xd1\x14\xf8\x1e\x39\x74\x5b\x2f\xb3\xd1\xcb\x24\x42\xad\xdc\x6a\x35\xde\xc0\xbb\xf0\x6d\x5c\xed\x2c\xe1\xea\x67\xe7\x3a\xd3\x45\x9f\xd6\xd7\xec\xce\xbe\xd3\xfb\xfc\xee\xba\xfd\xee\xd0\xe3\xf4\xcf\xe7\x6f\x2e\x5f\x04\x95\xa6\xf0\xa3\x35\x56\xb9\xeb\x94\x21\x96\x74\x4a\x5d\xd4\xde\xa5\x95\xc3\x78\xed\xe2\xea\xd5\x71\x3b\x70\x9b\x2e\xee\x64\x79\x74\x0f\x44\x34\xc2\x5d\xde\xea\x30\xbe\xc0\xa7\xf0\xaf\x71\x66\x9b\x53\x8f\xa8\xd1\x14\x3a\x78\x13\xae\xd9\x1e\x9a\xa5\xa1\xdf\xf5\x2c\x0d\xcd\x92\xa8\x74\x78\x96\x06\x22\x5a\x17\x95\x5a\x52\xdd\x43\xe3\xe2\x75\x65\x0f\x8f\x6b\x20\xba\x0d\x51\xdd\x34\x55\x87\xd1\x55\xff\xe8\xd0\xb0\xe4\xb9\x25\x79\x0e\x1d\x56\x53\x97\xa0\x3d\x15\xfa\x5f\x4c\x6e\x9a\x28\x26\x4c\x6b\xe8\xb0\xb2\x44\xba\x27\x77\xdf\xa1\xc3\x6a\xae\x3f\xed\xd0\x1d\x11\xa9\x95\x4e\x5b\x92\xea\x10\x53\x9c\x9e\x06\x9c\x1c\x13\xf9\x76\x6e\xd5\xfd\xe4\x55\x61\x88\x78\xa7\x99\xd9\x44\x24\x92\xd6\x60\xcf\xe3\xdf\x65\x13\x48\x3b\xb0\x2d\xc1\x12\xaa\xf9\xe2\x43\xf8\x30\xce\xef\x22\x79\xee\xe5\x4d\xb3\xb8\x14\x10\x08\xa1\x11\x94\x99\x42\x90\xc3\xe8\xc6\xfd\x3d\x4c\x68\xe8\x70\x5b\xde\xf4\xd8\x9e\x29\x9d\xee\xad\x4e\xe3\xb4\x33\xfc\xfd\x9f\x76\xbe\xe0\x4b\xb8\xc8\x47\x51\x91\x89\x69\x77\xab\x6e\xe7\xd0\x8e\xc8\xc4\x12\x32\x71\x8c\x2f\x4e\x3b\xdb\x64\xbe\xd9\xf4\x43\x97\xa3\xad\x17\x4d\x62\xfd\xa6\x34\xc5\x84\x64\x93\xd6\x08\xd7\x9b\x14\xad\xa7\xed\xed\xfe\x6f\xfa\x4f\x00\xce\x5b\xd5\xef\x62\xab\xa6\x88\x31\x6d\x6f\x1f\xfe\x9b\xcb\xef\xd4\x7a\x6d\x5d\x7e\x89\xb1\x9b\x14\xc3\xa5\x6d\x8b\xb0\xfb\xb0\x2e\x53\xeb\x75\x4c\xb7\x07\xba\x9d\x5a\x17\x8b\xb0\x04\xd2\xbd\x38\xf4\x79\x4c\x9f\x07\xfa\x9c\xda\xd6\x67\xfd\xf9\xfe\x05\xd7\xf7\x92\xc1\xf6\x61\xbd\xa6\x0e\xa5\x23\x2d\xcf\x3e\xd0\xe7\xd4\x76\x3f\x66\x4b\x07\xfa\x9c\x5a\x5f\x8b\xb0\x1b\x6d\x57\x9a\x5a\x47\x8b\xb0\x04\xb5\x4d\x49\xcf\xf6\xfb\x9c\x3f\xed\xd0\x1f\xad\xa3\xb5\x5d\xc4\xb2\x4d\x69\xea\x92\xfb\xf5\x78\x25\x8b\x4e\x5d\x5a\xbf\x66\xd2\x5f\x1e\x2f\x97\x0e\x99\xaf\x2f\xa7\x68\xa9\xd2\xd2\x61\x62\x2d\x15\x81\x63\x53\x5a\xda\x8f\x5f\x1f\x92\x5f\x0e\xc9\xa5\x75\xfc\x7a\xbd\xb0\x9d\x53\x0c\x90\x46\x4c\x58\x0a\x31\xcf\x7a\x41\xc7\xc3\x87\x02\xdf\x6b\x7f\xfd\x7c\x68\xff\xd8\x2f\xa4\xdd\xbd\xd5\x61\x7c\x82\x2f\xe1\x6e\x47\xfd\xd4\xe5\xe2\xe7\xf9\xfc\x41\x57\x04\xdd\xb8\xd5\x63\xfc\x0b\x4e\x3b\x16\xf2\x88\xb0\x9a\xd2\x12\x7b\x7e\x7c\x19\x79\x78\xf2\xd1\x9b\xf8\x7e\xdc\x9f\x47\xf3\x86\x10\x4c\x4c\x54\x0a\xf4\x07\x61\x65\x3f\xbe\x94\x3d\x1c\xda\x7a\xfc\xde\x8f\x0f\xed\x47\xfd\xd1\xbe\xb3\x90\xb7\x25\xe4\x2d\x09\x25\xaf\x2f\x4d\xaf\xe6\x53\xeb\xfb\xba\xff\x6f\xcc\x67\xfe\x88\xcd\xbf\xe6\xcf\x08\x6d\x99\xd0\x48\x6d\xbf\xee\x4f\x18\xb9\xa5\x6c\xfe\xff\x9a\x4f\x86\x74\x75\xf1\xf8\xdd\xf3\x11\x9f\x3c\x21\x5d\x5d\x7c\x81\x2f\xe3\x0b\x9c\xa7\x9a\xf3\xd1\xb1\x76\xc2\x77\xf6\xe2\xfa\x5e\xfc\xe1\x84\x94\x93\xf2\x07\x61\x82\xa8\x9f\x51\x20\x10\xfc\xa7\xea\xfb\xe3\xf6\x0f\xed\xb3\xaf\x09\xef\x49\xa1\x83\xd3\x4e\x12\x7f\x38\xa1\xef\x4a\xca\xaa\x79\xab\xdd\xf8\x00\x5f\xc2\xbf\xc6\x7f\x81\x43\x3f\xc7\xea\x2f\xc2\x6f\x5e\xbc\x08\x77\x3b\x71\x09\xcd\xa4\x81\xb8\xd5\x6d\x5c\xed\xa8\x7d\x1d\xd7\x27\x69\xbc\x43\xfd\xf4\xb8\x10\x7a\xb2\xde\xa7\x09\x9a\x49\x81\xf9\x67\xbf\x9f\xec\x71\x65\xf5\x1f\x25\xc9\xb1\x0d\x1b\x71\x31\x2f\xee\xef\x1f\xe3\x41\x0f\x78\x70\xb6\x93\x3d\xae\xcc\x7a\xe9\xc5\xf9\x64\x3d\xd2\x9c\x48\x59\xd5\x5a\x2b\x7f\x71\xf9\x3a\xf2\x46\x6e\x87\xec\x55\x39\x7d\x18\x9d\x2c\xd2\x6f\x61\x82\x2f\xe1\xee\x15\xab\x8c\xe7\x76\x3b\xd6\xb3\x9d\x30\x81\x4b\x99\xd4\x4a\xed\x58\x84\x22\x36\xe6\xc5\x87\xf0\x66\x7c\x83\x2f\xe1\x5a\xcd\x82\x07\x38\x16\xd4\xb7\x5a\x8c\xd3\x9f\xaa\xf6\xbd\x6a\x45\xfd\xaf\x6a\x7f\xfb\x77\x37\xbf\x8b\xe8\x73\xac\x99\x23\x92\xe6\xc5\xa7\xf0\xc7\x38\xb3\xcd\xcb\xdd\xb1\x28\x46\xac\xcd\x8b\x67\xe1\xc3\x38\xfd\x17\x15\x59\xb4\xc2\x62\x3f\x65\x2c\xa5\x9b\x2d\xf6\x6f\x81\x71\x21\xfa\x1c\x6b\xf8\x4e\x68\xf8\x5a\x43\x91\x77\xaa\x5e\x82\x4e\x88\x5e\xf7\xf3\x26\x7c\x1a\xa7\xfb\x30\xb3\x53\xf5\x5c\x8f\x07\x40\x52\x1e\xf4\x5b\xf5\xf7\x8b\x6e\xf2\xc2\x72\xac\xf8\x23\x4a\x67\x52\x52\x83\x46\x5c\xce\x28\x68\xda\x96\xba\xa9\xcb\xda\xa9\x6c\x82\x2c\x62\xac\xdb\xdf\x33\x3d\x59\xc4\x68\x49\xec\x54\xc8\x41\xef\xd7\x76\x38\xb8\x85\xd8\xf4\x84\xc1\xbb\xd5\x69\x7c\x05\xce\xfb\xf2\x69\x62\x8a\xa7\xb1\x09\xf0\x8f\x6b\xc7\x9a\xbf\xd3\x70\xfe\xc7\xb0\xfa\x56\x97\xf1\x18\x6f\x2e\xfe\x5e\xcb\x82\x24\x96\xf5\xbe\x7c\x9a\x99\x56\x64\x39\x4a\x4a\xdc\xda\x8e\xa2\x7b\xdc\x02\xe3\x42\xc6\x38\xd6\xf0\xe1\x30\x71\x71\xfa\x6f\x55\xde\xe9\x1a\x97\x98\x47\xf7\xb8\x22\x02\x48\xca\x59\xe4\x60\x89\xeb\x20\x71\xe5\x2c\x26\xd1\xdd\x4f\x2c\xe4\x32\xf1\xdd\xdb\xe9\xba\x5c\x1f\x54\x76\x39\x8b\x79\x58\x65\x77\xfa\x11\xce\xb8\xac\x9a\xc3\xcf\x34\xe5\xa2\x6d\x6a\x59\x88\xd8\x99\x17\x9f\xc2\xbb\xf1\x98\x37\x19\x2c\x9f\x61\x26\x34\xd8\x8e\x45\xdb\xd4\xb2\x10\xc1\x33\x53\x2e\x3a\x34\x86\xe9\x67\xb0\x1d\x8b\xb6\xe9\xd0\x65\xf9\x0c\xf2\xe0\xe9\x25\xf4\x0c\x1d\xb6\x27\x84\x9f\x8b\x33\x9f\xc3\xf3\x3c\x18\x17\xd1\x70\xdb\xb1\x1a\xee\xa0\x86\xcb\x7a\x39\x3d\xd3\x4c\x14\xa1\x27\xeb\x85\xf4\x58\xe8\x39\x91\xe3\x26\xe5\xa2\xed\x3b\xcd\x44\x51\xc3\x65\xbd\x90\x1e\x5b\xd4\x11\xed\xf2\xe2\xac\xcb\xf4\x3c\x87\xd4\x92\x32\x7e\xcd\x0d\xff\x95\x28\xc0\x0e\x0b\x2f\x14\xc7\x96\x73\x04\xa2\x4c\x99\x08\xeb\xb7\xea\x7e\xc2\x36\x48\x30\x7a\xab\xc7\x78\xa8\xbd\x74\xd6\x4e\x73\x93\xa9\x65\x44\x84\x3c\xcb\xcb\xb5\x34\x5c\x6d\xeb\xe5\xe1\x2e\x0d\x8b\x87\x0e\x82\x3c\x52\x88\x9f\xd5\x83\xe7\x59\x66\x03\x0b\x36\xa0\x07\xcf\xb3\xcc\xfd\xd7\xd6\xf7\x43\xb8\xdb\x0f\x19\x20\x13\xaa\xbd\x1d\xab\xe1\x70\x8c\x49\x59\x0f\x98\xc7\x6a\x38\x62\xaa\x5c\xbc\x09\xff\x1a\x7f\xc0\x69\x7f\x9b\xcc\x37\xd3\x2f\xbb\x67\x87\x4c\xb9\x05\xfa\xa3\xed\x6b\x0b\x39\x42\xa3\x24\x65\x2e\x68\x44\x38\xa1\xc0\xb8\x44\x3e\xc7\xe4\x8f\xec\x91\xab\xee\x22\x0a\x69\xd2\xe4\x3f\xa3\xd0\x2b\x8d\x88\x83\x14\x1a\xb8\xda\xd1\x43\x16\x0e\x36\x29\xeb\x61\x13\x37\x1b\x0a\x8c\x4b\x64\x62\xd9\x43\xfe\x36\x59\x0f\x9e\xf6\xb7\x69\x04\x05\x4c\xb9\x8a\x1c\x8e\xc9\x9c\x8c\xe8\xb9\x8a\x0d\x58\x1d\x46\x7c\xbf\x8b\xd3\xcf\xaf\xd9\x0f\xb2\x44\xc6\xed\xb2\xe1\x7e\x43\x81\xfe\x70\xd7\x3c\xd6\x6b\x9d\x2f\xfd\xd7\x43\xa8\xfd\x70\x6e\xe1\x01\x67\xbc\x5f\xaf\xcb\x97\x75\x69\xc8\x90\xc7\x32\x06\x0e\x39\x17\x57\x3b\xba\xbb\x13\x30\x2f\x65\x72\xc1\xdf\xea\xcf\xf8\x0b\xce\xf7\x96\x31\xe4\x87\xa3\xe8\x1f\xb7\xba\x8c\x07\x9d\xeb\x41\xf5\xfc\xcc\x3e\x7f\xb0\x4f\x3d\x9c\x12\x98\x2b\x0a\xb0\x1f\x19\x30\x1f\xcb\x1e\x07\xd9\x23\xeb\xe1\x14\xb7\x1c\x0a\xf4\x47\xf4\x60\x45\xd5\xf9\xc1\x7e\xf4\x40\x7a\xac\x90\x72\xe4\x39\x3d\x84\x1e\xcb\x1e\x87\x28\x28\xb9\xf5\xbf\xb1\xb3\xc7\x6b\x87\x02\xd3\xaa\x53\xe3\xf1\xf0\xc2\xc2\x2e\x65\xdf\x0a\x1e\x5f\x6a\x1e\xc8\x48\xef\xa4\xe7\xf1\x32\x3c\x5a\x86\xe9\xef\xc5\x9d\x70\xdf\xc9\x44\x36\x6b\xc7\x22\x0b\x91\xdf\x52\x6e\x22\xa3\xc7\xec\xe6\xd1\xf0\xc4\x3e\x2c\xca\x9c\x37\xb4\xad\x8a\x62\x7e\xab\xc3\x38\xd3\x2a\xf2\x7a\x25\xca\xe3\xdf\x93\x32\x61\xc7\xdb\x79\x3d\xde\x97\xed\xd4\xc5\x6e\x5e\x8f\x57\x22\x4e\x17\xbb\x79\xbd\x9c\x2f\xa7\x21\x81\xbe\xdb\xb1\xbe\x8a\x60\x6b\x17\xcf\xc2\x9b\xf1\x0e\xae\xf6\xcd\x3e\xc8\x9c\x9d\xf5\xde\x7a\x5e\xcf\xcf\x0b\xf7\x26\x7a\xf3\xad\xba\x7d\xe6\xad\x8b\x9d\xbd\x26\x6b\xdc\x89\x32\x81\xb8\x6f\x75\x19\xdf\xe0\xb7\xfd\x8e\x17\x11\x85\xfe\xdf\x7f\x37\x5e\xe2\xba\xbd\x89\x6e\x81\xee\x04\xb5\xdf\xea\x31\xce\x34\xc4\xb3\x6d\x77\x54\xa4\xee\xa8\x48\xc4\xb8\xee\x53\x6a\xac\x4e\x8c\xb3\x8b\x0f\xe1\x8f\x71\xa6\x2d\x24\xf6\x6e\xef\xa3\x2e\xef\xa3\xcc\x73\xee\xad\x7e\x8d\x3f\xe0\x0d\xfc\xf8\x77\x35\x0d\x55\xfd\x67\x1a\x3a\xd1\x91\x52\xc6\xdc\xfa\x56\x7f\xc6\x69\xa7\xf1\xbd\x0c\x17\x3b\xee\x49\x29\x63\x6e\x7d\xab\x8f\x71\xfa\xd9\x99\x87\x04\x99\x74\x79\x2b\x65\x02\xa5\x77\x7b\x2b\xdd\x02\xe3\x1d\x55\xf8\x31\xce\xbc\x8d\x21\xdc\xed\x23\xc1\xf2\x30\x7b\xab\xcd\x38\x64\x32\xe9\x7f\xe2\xae\x7f\x0b\x19\xbc\x0b\x77\xff\x39\xcc\x31\xdb\xee\xf6\x6e\xba\x85\x2b\x71\xf1\xe0\xd9\x1d\xab\xe2\x16\x68\x66\x65\xe1\xcd\x38\xdd\x5f\x4d\xf8\x36\xce\x6e\x59\x4b\xb8\xba\x8f\x36\x4c\xc9\xc5\x6e\x75\x18\x5f\xe0\x0c\x57\x01\xa4\x6e\x21\x7e\x17\x33\xef\x5b\xad\xc6\x1b\xb8\xfa\x89\x60\xdb\xf1\x7e\xba\xb8\xda\x39\xc6\x59\x5e\x42\x2a\x77\x7c\x9a\x28\xbc\xe0\xf4\xbf\x78\xbc\x68\xc9\xf2\xc8\x53\xf8\x30\x4e\x3f\x4b\x11\x2e\x72\x43\x7b\x96\x31\x17\xef\x76\x62\xea\x72\x62\xca\x98\x85\xdf\x6a\x37\x3e\xc0\xe9\x7f\x31\x39\x17\x8d\xab\x32\x6f\x12\xcd\xba\xbc\x8b\xf2\x68\xea\xe7\xf1\xef\xaa\xff\x8d\xf1\x4a\x04\xeb\x53\xb2\xd6\x10\x79\x56\xaf\x8b\x64\x2d\xcc\xbf\xfb\xac\xde\x8e\x55\xfd\x14\xd9\x56\xf7\xb3\x6a\x5d\x44\x9e\xd2\x6e\x75\x79\x23\x65\x62\x94\xf4\x59\xbd\x5e\x55\xeb\x35\x3f\xc2\xa7\x71\xe6\x5f\xe4\x59\xbd\x4d\x25\x6b\x0d\x91\xa7\x64\xad\x2e\x2f\xa5\x4c\x52\x9a\x6e\x2f\xa5\x8e\x5b\xd2\xc5\xf9\xbe\x79\xbd\x1a\x97\x05\x42\xf3\xdd\xea\x2b\x9c\x75\x99\xa2\x9f\xe6\x75\x69\x8c\x77\x8a\x7e\x9a\xc7\x2b\x19\x6c\x8a\x7e\x9a\xb7\x63\x63\x3b\x12\xcc\xbd\x3b\xc6\x4a\x97\x57\x53\x9e\xa2\xab\xe6\xed\xd8\xd8\x8e\x53\x74\xd5\x3c\x5e\xf2\xd1\xe6\x29\xba\x6a\xde\xa6\x68\xcf\x14\x02\xfa\x56\xa7\x71\xc2\xc2\x8a\x4d\x76\x8f\xb7\x23\x7a\x4f\xb1\x3d\x79\x41\xdd\xc2\x02\xf7\xf7\x5f\xe3\xfc\x6e\xa3\x7d\x99\x59\x76\x82\x38\x5e\xbc\x09\x3f\xc6\x19\x6f\xff\x08\xd7\xfe\xed\x9c\x52\x3c\x50\xdf\xaa\xdb\xd1\x78\xfb\x14\xae\xf9\x47\xdf\x95\xa7\xd8\x9e\xf4\x5d\xb7\xd0\xc0\xf5\xbb\x1e\x2f\xfa\xae\x3c\x45\x57\xc3\xe3\x1d\x1a\xef\x6c\xc2\x8b\x71\x7e\x77\x0e\xe1\xa2\xcf\xa1\x75\x5f\x8c\x77\x78\xbc\x03\xe1\x60\x8a\x7e\x86\xd7\x11\x7d\x57\x26\x8f\xfb\xad\x56\xe3\x0d\x5c\xfd\x31\x9f\xc1\xd2\x52\xa1\xd1\x6e\xd5\xfd\xe1\x78\x59\xa2\x93\x39\xb5\xbe\x98\x54\xe6\x25\x7a\x98\x4b\xeb\x82\xe2\x29\x2f\xf1\x93\xe9\xfd\x32\x39\xdd\x57\x59\xff\x7c\xf9\xea\xf8\x34\x51\x88\xe9\x58\x3a\xf5\xa6\xa7\x75\x22\x62\x12\xa2\xa9\xcf\xe5\x53\x0c\xa7\xa7\xbc\x74\xea\xc9\xe9\xa9\xe3\xf4\xd4\xd1\x85\xf6\xb9\xbc\x9b\x16\xb3\xba\xc4\x6d\x96\x67\x75\xb1\x6b\x78\x06\xbf\xd5\x65\x3c\x76\xfd\x12\xb5\x2c\x8f\x7a\x69\xb6\x3b\x54\xba\x3c\xdb\x4b\xb3\x3d\x98\xd5\xe5\xdd\xb1\xd8\x1d\x4b\x5c\x68\xf9\x10\x5b\x47\xdf\xab\x9f\xe6\x96\x0b\x6e\xb9\x44\x45\xeb\x6c\xe3\x71\x2a\x2d\x71\xa7\xed\xd5\x91\xa8\xb7\xc4\x9d\xb6\x4f\xb7\xcd\xe9\xb6\xc4\x9d\xb6\x2f\x35\x5b\xf3\xb0\xd4\x8e\xc7\xb5\xb5\x9a\x8b\xdf\xdd\x5b\x5c\x05\x1f\xa9\xf2\x11\x77\xda\xa6\x22\x44\xc0\x42\x40\xc1\x8e\xcb\x54\x14\xe2\x0e\x57\x70\x9e\xba\xd5\x6c\xbc\x06\x9e\xf4\xbb\xbe\xbc\x90\x34\xb2\x10\x07\xb8\x3b\xe2\xd2\x2d\x24\x70\xfa\x73\xcc\xbd\x11\xe9\xca\x47\xd4\x78\xbc\x0b\x70\x92\x2a\xd8\x86\xdf\xea\x36\x7e\x02\x2f\xfc\xee\x31\x59\x85\x0c\x77\x71\xda\xf9\x7a\x57\x46\x82\xc3\x54\x3e\xba\xac\x7d\x7d\xfa\x84\x3e\xe8\xe2\x55\xb8\xe8\x2a\x62\xaa\x5f\x9c\x7e\x7e\xcd\xa5\x51\x1b\x95\x88\x19\x1c\xd5\x61\x7c\x81\xab\x1d\xcf\xf3\x57\xf3\xac\xcb\xda\xd7\x5c\x97\xd0\x0a\xe5\xa3\xd3\xf0\xeb\xcb\x60\x18\x27\x5e\x5c\xed\x78\x17\x7f\x35\x9f\x3a\x25\xbf\xe7\x18\xff\x06\x2e\x6e\xf6\xf3\x3c\xff\x34\xcf\xe2\x66\x3f\xdf\x16\xc2\x38\xf1\xe2\xf4\xe7\xb7\x44\x6f\x11\xb2\x3c\x95\xcf\x4c\xc2\xbb\x71\xe6\x47\x5c\xee\xe7\x7d\x11\x11\xc7\x53\xf9\xe8\x34\xfc\x99\xbb\xfe\x44\x27\xba\x65\xfd\xdc\x7f\x6c\x12\x4b\xd2\x2d\xeb\xe7\xf5\xfa\x85\x08\x5e\x92\xe8\xed\xe7\x5b\x04\x22\x60\x49\xa2\xb7\xc7\xf4\xff\xb0\x8e\x49\x5c\xee\xf1\x65\xf6\x61\x5d\x08\x2d\x72\xab\xcb\x38\xed\x88\xfb\x3d\xde\xbf\xa8\x99\x4a\x92\x10\xf0\x98\x5d\x45\xec\x85\x8b\xd3\x9f\xd7\xfb\x31\x82\x28\xa7\x92\x44\x3f\xaf\xe7\x13\xd9\xac\xa4\xea\xef\xb7\xf1\x2f\x38\xfd\x79\xdd\xcf\x57\xfd\x14\xfd\xbc\xa6\x9f\x17\xfa\x49\x62\x7b\xaf\x4f\xbd\x97\xf9\xc7\x80\xbb\xcf\xd7\xf3\xff\x2a\xa6\xb1\xe8\x47\x21\x1a\x6e\x81\xdf\xed\xfe\x5e\xeb\xf2\x42\x57\x49\xa7\xe1\xeb\x5b\x28\x36\x83\x25\xc1\xc7\x96\x6c\x03\x6f\xa1\x82\x2f\xe1\xdd\x78\xf0\x87\x04\x9d\xac\x8f\xe8\x67\x85\x9e\xeb\xe2\x43\x78\x33\xce\x7c\x4e\xb5\xc3\x8b\x79\x97\x93\x57\xe1\x65\xbc\x2f\x0b\x4f\x72\xf2\x2a\x89\xd3\x70\x7d\x78\x5a\xb8\x85\x98\x1f\x5e\xc6\x6f\xf5\x11\x1e\xb7\xb5\x42\xb4\xf3\x8e\x2f\x18\x05\xbe\x4f\x6a\x5f\xfb\x65\x7d\x18\x6f\xe6\x96\x85\x13\x18\x05\xda\x81\x2f\xad\x24\xbe\xba\x12\x7c\x00\x4b\xed\x5b\x6d\xc6\x07\xb8\xbe\x17\xbd\xad\x90\x96\x92\xf2\xeb\x77\x07\x85\xbe\x85\x0e\xde\x84\x6f\xe3\xf4\x27\x5e\x6c\x3b\xde\x61\x14\x32\xf8\x10\x5e\x8d\xc7\xfc\xf0\x92\x7e\xab\xd3\xf8\x8a\xc8\x50\x4b\xf0\xd7\xf0\xcb\xe7\x34\x6f\xe1\x69\x65\xd8\x43\xe6\xd8\x5c\xd2\x92\xf5\x95\x35\x5c\xc8\xca\x5e\x65\x5d\x5e\x65\x05\x93\xe8\x6e\xaf\xb2\x5b\xf8\x81\x67\x70\x0f\x17\x21\xa9\x64\x8e\xc1\x95\xc5\x0e\x17\xfa\xae\x92\x45\x56\xd9\xcb\x15\x21\x1f\x1a\xd9\x97\xfb\x92\x05\xe0\x2d\xb0\x8a\xa2\x92\xe2\xd9\x27\xf9\x5b\xc9\x6b\x08\x3f\xc6\xa3\x3b\x45\x54\x52\x4c\x3d\x44\x4e\x28\x58\x38\xdf\xea\xcf\x78\x70\x61\x2c\x99\xfb\x2a\xc7\xed\xc3\x05\x78\xd7\xbf\x55\xf7\x07\xaa\x2a\xdc\xc5\x57\x15\x77\x90\x03\x59\x29\xa2\x92\x2a\xee\xb0\x2a\xdc\xa1\x70\xaa\xd9\xb1\xac\xcb\xb1\xac\x94\xac\x76\x24\xf3\xac\x1a\xb2\x68\x29\x70\xa5\x55\x75\xc7\x5d\x58\xe8\x95\xf2\x57\x77\x2f\xfc\xc7\x28\xd0\x5d\x11\x57\x35\x71\x21\xe2\x14\x9e\xfd\x6f\xf5\x6b\x9c\xe9\xd3\x32\x58\x94\x59\x0d\x66\x40\x14\xda\x5b\xed\xc6\x63\x13\x14\x51\x4b\xf3\xf0\xc2\xa3\xec\xe2\x45\xf8\xcf\x38\xc3\xee\x4c\x87\x45\x9f\x85\xe8\x53\x0a\xcc\xc9\x8e\x64\x7d\x35\x0d\x5b\xcc\xa9\x89\xf9\xad\x06\x93\x20\x0e\xca\xad\x0e\xe3\x1b\x7c\x09\xf7\xef\xc6\xfb\x63\x41\x1d\xd0\xed\x31\xd6\x09\x4b\x78\x71\xbe\xb7\x28\x43\xbc\xf4\x54\x8a\x98\x50\xd7\xdd\x54\x9e\x64\x85\x78\xd5\xb7\x3a\x8d\xc7\xef\x12\xe3\xf9\x56\x7f\xc6\x5f\x70\xfa\xaf\x00\x0d\xb7\x10\xf3\x50\x45\x76\xdd\xcc\x0f\x51\xa6\x54\x91\x5d\xd7\x61\xb5\x50\x3f\x95\x2a\xf2\xea\xba\x3c\xae\xce\x65\xa7\x8a\x09\x29\x40\x43\x27\xac\x62\x2a\xc4\x41\xe9\x6b\x98\x1c\x87\xfa\xc9\xe1\x86\xeb\x17\x85\x04\xbe\x84\x17\xe3\x31\xcf\x95\xa7\x82\x35\xcc\xbc\x09\xdc\x50\x6a\x55\x3b\xdb\xdf\xc7\xcb\x57\xa9\xe2\x36\xc3\x4c\x0e\x53\xbc\x52\x11\xe9\xf0\x15\x8b\xc2\x25\xc8\x8e\x5d\x77\xb7\x6f\xd8\x2d\xf0\xb3\x62\x4e\xc3\xbb\x6f\xb0\xfb\xaa\xc8\x6d\x98\xa7\x0f\x0d\x57\xe4\x36\xbd\x5c\x48\x38\x85\xc8\xed\xb7\x3a\x8c\xd3\x0e\x77\x7a\x3b\x8d\xdd\x42\x06\xef\xc2\xbb\xf1\x09\xae\x76\xcc\xfc\x42\x64\x4a\x85\xbc\xa8\x7d\xc9\x44\xef\x16\x98\x86\xa9\x76\x74\xb7\x5e\x13\x5e\x5f\xc5\xcd\xa6\xc7\x3b\xd9\x8e\x55\xdc\x6c\x9a\x29\x4e\x2d\x2f\x77\xa9\x65\x11\x69\x2d\x96\xb1\x89\x9b\x2d\x93\xdb\x62\x7b\x35\x9d\x6d\xcb\xe3\x5a\x2c\x2f\xea\x83\x5b\x9d\xc6\x17\xf8\x14\x7e\x8c\x47\x3f\xb1\xc7\xee\x8e\x9a\x79\x0b\x05\x5c\xed\x7b\x5c\xc4\x7f\x28\x4d\x64\x68\x19\x69\x61\x72\x57\x88\xa3\x72\xab\xfe\x5d\xd6\x11\x3b\xed\x6e\xa7\xb4\x8e\x1b\xda\xc5\x19\xef\xf6\x76\x24\x3c\x5c\x69\x62\x63\x96\x85\x16\xf1\x22\x4a\xe3\x8e\xb5\xb6\xd9\x0f\x5e\x69\x0a\x76\x7d\xab\x9a\x1f\x64\xa4\xd2\x74\x76\x6e\xb3\x9f\x0d\x99\x37\xb1\xbd\xed\xf9\xd9\x9a\x87\xa6\x76\xcc\x8d\x37\x6c\xa9\x89\xde\xb6\xc9\x1f\x53\xbf\x42\x1c\x95\x6e\x6f\xb5\x5b\x60\xbd\x44\x6f\x8a\x47\xd1\xe5\xc5\x56\xb0\xd3\xbe\x55\xb1\xbd\xad\x79\xe3\xee\xbe\xb6\x4f\x25\xc9\x54\x6d\xaa\xff\x66\x03\x5b\xf3\x36\xe9\xbf\x65\x2d\xdc\xd9\x2e\xbe\x84\xeb\xfb\xa3\xf1\xf2\x42\xba\x8e\x0f\x79\x12\xdd\x97\x2e\xba\x3a\xa6\x87\xd0\xbb\xf5\xca\xd5\x77\x1d\x4f\x03\x16\x80\xa5\x6b\xfb\x1e\x93\x3f\x16\x80\x8a\x29\x7e\xab\x6e\x9e\xb3\xbf\xeb\xf0\xb4\x28\xb7\x24\xca\x75\xdd\x5d\x8e\xb9\x36\xce\x6d\xa5\x8b\xeb\x1d\x4f\xc3\x81\x1b\x76\x1d\xaa\xc7\xd3\x20\xd1\xaf\xeb\x50\xfd\xfa\x70\xc6\x89\xad\x74\x71\xc3\xaf\xb7\x11\xda\xbc\x22\x3d\x80\x9d\xdb\x6e\x81\xdf\x15\x79\x7e\x7d\xc5\x25\xb1\x56\xe9\x22\xcf\xaf\xc9\x04\x2d\x5f\xe9\x22\xcf\xaf\xef\x40\x5f\xcd\x83\xc8\xf0\xeb\xed\xfe\x65\x79\xbb\xd8\x9b\xb4\x79\xb7\xb0\xc0\xd5\xbe\xb7\x85\x44\xbc\x2e\x72\xfb\x9a\xcb\xa3\xe5\x2b\x5d\xa7\xe9\xcf\xe3\x42\xcb\x57\xba\x4e\xd3\x9f\x97\x1d\x2d\x5f\xe9\x22\xc3\xdf\xf2\xf7\x90\x43\x17\xb9\xfd\x4c\x0e\xbf\xa5\xef\xe9\xe7\xcf\x6c\xe0\x07\x7b\xd3\xbb\xfe\xfa\xf9\xb6\xf1\x43\xd4\xd5\xbb\xfe\xfa\x49\x24\x21\xe3\xd1\xc5\xd5\x1f\xb3\x81\x9f\xd6\x6b\xd1\xce\xe3\xab\xf8\x03\xd9\xea\xa1\x7e\x59\xf4\x5b\x12\xfd\xf4\x50\x4f\x0c\x5c\x0a\x2f\x38\xfd\x7f\xbc\x5e\xa8\xfd\xca\xf8\xa8\x1d\xdf\x2a\x1e\xb6\xef\x10\x3b\xb4\x48\xb8\x24\x12\x4a\xd1\x60\xf7\xb2\x2e\xf7\xb2\x32\xf2\x5f\xc4\x97\xe8\xeb\x75\x77\x5f\xb8\xb1\xde\xdf\xd7\xeb\xbb\x2b\x5e\x63\x65\x88\x6b\xbd\xe6\x1e\x64\x33\x2a\x64\x95\xbb\xd5\x6e\x7c\x82\x57\xe1\xdb\xf8\x01\x1f\xc2\x7f\xc6\xf9\x5d\x91\xd1\xeb\x6d\x23\x49\x8f\x60\xa9\x7d\x2b\x18\x5f\x97\x17\x58\x21\xcf\x70\xdf\x4a\x07\x72\x0b\x0d\x7c\x09\x9f\xc6\x69\x67\xfa\xfb\x47\x78\x28\x85\x8b\xde\xcd\xed\xd5\x75\x0b\xf4\x7f\xaa\x1d\x91\xc5\xfe\x20\x91\xea\xdd\xdc\xde\x5b\x1d\xef\xad\x9e\xdd\xcd\xe3\xee\xb0\xeb\x49\xdf\x7e\xab\xdb\xf8\x01\xa7\x19\x6b\xb1\xf0\xbe\x4a\x45\xcf\xe9\xdb\x82\x18\xce\x58\x3d\x77\xc3\x5f\xc1\x6c\x4a\xbd\x8e\x6f\xcb\x55\x5b\x02\x94\x5e\xbb\xb7\xc2\x6f\xdc\x42\xcc\x32\x41\x50\xfa\xce\x3a\x6b\x77\xe6\x0e\x81\x79\x75\xb7\x6f\xd5\x2d\xd0\x7d\xae\xd0\x3b\x4b\x5e\xdc\xa4\x2f\x29\x04\x41\xe9\xf6\xb9\xba\x85\x98\x9d\xa9\x7e\x66\x51\xc9\x46\xcb\x54\xc8\x61\x78\xab\x6e\x87\x4d\x86\xd9\x75\xdf\x59\x44\x2d\x5f\xac\x82\x79\xf5\xad\x76\xe3\x8c\x8b\xcd\xbd\x15\x2a\xaf\xe3\x7c\x95\x0a\x51\x4e\x6e\x55\xab\x8b\xc1\x60\xd1\x2b\xf5\x96\xc1\xe0\x2d\x04\xf5\x90\xfe\xb6\xdb\x17\xeb\x16\x1e\x70\xe6\x41\x11\xfe\x6f\x21\x83\xeb\x77\x75\xa5\xdf\x85\xb3\x13\xb3\xeb\x8e\xcb\x16\x85\x38\xdb\x48\x12\xd9\x71\xd9\xa2\xc0\xef\x26\x7d\xef\x71\xa1\x95\x2a\xa4\x71\xbc\xd5\x9f\xf1\x17\x9c\xfe\x5b\x2b\xb5\x2b\xd4\x4f\xe6\x88\x8e\x0b\x16\x85\x0d\x4e\xff\xab\xc7\x5b\x35\xae\xaa\xef\xc5\x54\x70\xa6\xea\x18\x94\xf5\x6d\xe5\xd3\xc6\xd0\xaf\x2c\x36\xf5\x56\x88\x8f\x4e\x3e\xb7\x8b\x37\xe1\x8f\x71\xba\xd9\xf5\xb3\x5e\x46\x49\x6c\xe4\x15\xee\x76\xc5\xba\x05\x86\x0b\xaf\xdf\xd5\xbb\x02\xc3\xc0\x42\xe4\x92\xee\xc0\xdb\xb7\x90\xc0\xbb\xf0\x62\x7c\x81\x4f\xe1\x5a\x46\x42\x7f\x14\x22\x97\xdc\x6a\x33\xce\x72\xc1\xbb\x77\x33\x73\x20\xd4\x5e\x59\xcb\xdf\xff\x69\x87\xfe\x70\xc5\xdd\xcd\xf3\x13\xb1\x41\x52\xfd\x88\x7c\x2c\xe1\x6d\x24\xbc\xaa\xe7\xe9\xdd\x4c\xe6\x48\x78\x95\xec\xb6\xdd\xae\x5e\x7d\x87\x45\xe1\xc5\xd5\x7f\x93\x09\x21\x44\xaa\x9e\xa7\xed\x02\xd6\x89\x2c\x7e\xf1\x2a\xfc\x67\xfc\x05\x67\x7e\xba\xb7\x7b\x88\x7a\x5d\xef\x04\x5b\x11\xfb\xba\x3c\xc3\xea\x27\x1b\xd7\x32\x12\x42\xa4\xea\x35\x7b\x77\x33\x25\x42\x88\x54\xd2\xf8\xdd\xea\x32\xce\xb0\x44\x6d\x16\x14\x71\x05\xbb\xb8\xda\xf1\x70\xbb\x86\xcb\xeb\xd0\xee\x1e\x6e\x28\xb3\x2e\xbe\x84\x37\xe3\xb4\xd3\xf4\xbb\xe6\x6e\x44\xf8\xab\x1f\x71\x2b\xf9\x78\xdd\xc2\x03\xce\x34\x0c\xef\x16\x7c\xb9\x2a\xb9\xa7\xba\xf3\xa9\xdc\x02\xbf\x2b\xee\x63\xdd\xd6\x1e\x1a\x97\xc8\x70\x48\x2b\x81\x53\xd7\xc5\x59\xae\x61\x72\x18\x1a\xaf\xce\x96\x61\x2e\x10\x86\x8c\x17\x1f\xc2\x35\xcf\xe8\xbc\x2a\xc6\xde\xb7\x5a\x8d\xf3\xbd\xb8\xd5\x34\x99\x87\x68\x98\x6a\x12\xf7\x99\xde\xed\x48\x84\x35\x89\xfb\x4c\x93\x3f\x12\x61\x25\x90\x78\xb7\x33\xd7\x2d\x44\x3f\x31\xc3\xee\xf8\x76\x51\x08\x32\xd1\x72\x59\x50\xc4\xa9\xeb\x7e\x0e\xb5\x4d\x53\x39\x81\x02\x6b\x12\xf3\x99\x3e\x1a\x23\x80\xf7\xc5\xd5\x8e\x97\x77\x42\xcd\x7a\x84\xde\xd3\x4c\x2f\x24\xc6\x8b\xab\x9b\xc7\xed\x30\x0d\x49\x87\xd4\x32\x17\x88\x74\xda\x17\x9f\xc2\x9b\x71\x86\x25\x6e\xb5\xf4\x2a\xb8\x11\x38\x2b\x56\xde\xb7\xfa\x35\xfe\x82\x33\xcd\xcb\xe4\x80\xf2\xad\x26\x91\x89\x95\x6c\x7b\xb1\xec\x7a\x84\xb6\x8f\xd7\x2d\x30\x2e\x91\x89\x92\xf1\xf5\xbd\x20\xf3\x34\xfe\x22\xab\x50\x27\x19\x0f\x85\x19\x7f\x26\xa6\x65\x5d\x1b\xbe\x5d\xa9\x26\x51\xcb\xf2\xa6\x27\xea\x49\x25\x9a\x48\xdf\xd6\xc1\xed\xad\x69\x12\xd3\xb2\xdc\xb9\xd1\xc1\x55\xbd\x45\x6f\xcb\x9d\x3b\x04\xcd\x8b\xab\x1d\xc9\x97\xf8\x88\x5d\x7c\x09\x77\x3b\x50\x91\xde\xa8\xb7\xe5\xce\x1d\xa9\xed\x2e\x5e\x84\xff\x8c\xbf\xe0\xea\x8f\xc9\x28\xec\x37\x53\xd5\x1b\xf5\xb6\xce\x6e\x6f\xc8\x88\xa8\x21\x7d\x2b\x4a\xca\x2d\x64\x70\xf5\xc7\xbb\x06\x17\xb3\x9a\x11\x88\xec\x62\x76\x0b\x1b\xbc\x0b\xff\x1a\xa7\x3f\x85\xe5\xb4\xdc\xb9\xcf\xa4\x7d\x2c\x01\xb6\x02\x27\xf6\x7d\x96\x70\xd6\xe5\xac\x3f\x78\xec\xbe\x2c\x72\xb1\xee\x6f\x1f\xb8\x01\xd9\x74\x6e\x55\xe3\x3a\xea\xbf\x0e\xb1\xe3\xfe\x1f\xf5\x7f\xea\x77\xdd\xff\xa3\xfe\x4f\x7f\xff\x35\x4e\xff\x75\xd7\xf9\xba\xff\x5f\xd6\x3d\x8b\x4e\xbe\x5e\xf7\x2f\x5c\x22\x8b\xab\x7c\xcd\x25\x30\xff\xac\x05\xc1\x64\x7f\x7d\x17\x24\x4a\x4a\x2d\x3a\xac\xbe\xbe\x43\xa0\x43\xac\x7a\x8d\xde\xd6\x21\x6e\xc2\xb3\x2b\xdb\x53\xdf\x5f\x5f\x16\xbe\xcc\x03\xd6\xe4\xb7\x2a\x3a\x41\x57\x58\x4b\xd6\xf7\xc7\xed\xc3\xed\x4b\x31\xee\x7e\xc2\x0e\xcc\x9e\xac\x2b\xdc\x84\x6d\xaf\x45\xeb\x68\x41\x72\x23\x48\x56\xac\xcc\x6f\x75\x1b\x3f\xe0\x55\xf8\xcf\xf8\x0b\xce\xfc\x58\xb7\xb8\x23\xc0\xc9\xc5\x97\x70\xb7\x03\x3b\x28\x48\x30\x78\xae\x51\x88\x79\xd6\xf3\xf1\xb6\x20\xb9\x7f\x1a\xaf\x2e\x41\xd6\x2d\xe2\xcb\x96\x6a\x11\xfb\xf8\x79\x5f\xa3\x43\xac\x7a\x26\xde\x8f\xf7\x75\x48\x9a\x9d\x68\xdc\x7d\x3f\x3e\xb4\x1f\x2d\x17\xcf\x28\xfb\xf1\xf6\x0d\x1d\x63\x2f\x12\x48\x1e\x53\xed\xa3\x55\x14\xf5\x3c\x1e\x15\x29\x87\xdd\xc9\xc7\xbc\xef\xd1\xe2\x2e\x37\xa3\xa3\x3c\xf2\x0e\x5f\x5c\xbf\x6a\xb1\x29\x72\xbd\x5e\xbc\x0b\x6f\xc6\x99\x9c\xa5\x9f\xb5\x00\x13\xb9\x85\x52\xad\xba\x70\x3f\xde\xec\x04\x53\xa9\x55\x44\xf8\xf8\xe8\x0f\xf1\xf6\xe2\x6a\xc7\x9b\x82\x68\x90\x55\x8f\xb2\xfb\xf5\xd1\xf9\x72\x74\x56\xdd\x98\xac\x00\xdd\x04\x53\xa9\x55\x37\xa6\xd7\xc4\x4f\xd0\x94\x5a\x75\x35\x7a\x3d\x0f\x2f\xe3\xad\xba\x88\xbf\x1e\x2f\xc6\xa3\xb5\xea\x6a\xf4\xee\x3f\xdf\xd3\x1f\x5e\x5d\xf6\xeb\x71\xbd\x30\x81\x2a\x26\xf3\xfa\x2c\x7c\x61\xfe\x55\x44\xf8\x9a\xf9\x23\xfe\x56\xa2\xc6\x75\xe7\x22\xb9\x05\xc6\xc5\x15\xe8\x7c\x74\xe6\x9d\x0f\x44\x4e\xb0\xed\x7e\x2c\xfe\x9e\x50\x5c\x76\x62\x61\xdc\xda\xd7\x30\xdd\xec\xc2\xd5\x9d\x43\x70\xca\x5a\xa1\xcd\xf3\x39\x6e\x5e\xdd\x19\xfe\xfe\x31\xfe\x82\xf3\xb3\x72\xd7\xbb\x85\xa0\x36\x62\x76\xdc\xea\x31\xce\xf7\x10\xed\x49\xda\x73\x27\x71\xe6\x54\xa4\x6e\xbc\xf1\x28\xb0\x5c\x5c\xdc\x4f\xd2\xf4\x9f\x04\xb9\x55\xc8\xed\xd8\x88\xf3\x24\xae\x28\x75\xa9\x3f\xdb\xed\x44\x0e\x62\x62\xa1\x76\x9c\xf7\x28\x44\x77\x08\xf1\xdd\x4f\xd2\x53\xb6\xbc\xf8\x2a\x09\xec\x6f\x75\x1b\x8f\x69\xc0\xe2\xbd\x1f\x1b\x6b\xca\x5b\xaf\xea\x69\xfa\x64\xb1\x18\xdc\xf6\x52\xd5\xd3\xf4\xc9\x1e\x2e\x62\x77\xc5\x12\xfe\x56\x9b\x71\x7e\x97\x9b\xd7\xc9\x5e\x2e\xb2\x83\x56\x2c\xe1\xfb\x51\xe8\x92\x2e\xbf\xbb\xda\x38\xea\x8e\x42\x97\xdc\xc2\x00\xa7\x3f\x36\xca\x94\xdf\x5d\xd5\xd3\xf4\x51\x64\xf9\x5b\xe0\x77\xb9\xa0\x9f\xe2\xfe\x17\x96\xab\x71\x11\xc7\x0d\x8f\x02\xfd\xe7\x86\x85\x1b\x1e\x85\x0d\xde\x85\x7f\x8d\xff\xc0\xe9\x7f\xd9\xfe\x5d\x96\x4b\x4f\xd3\xb8\xe1\x51\xe0\xfb\xae\x76\xbc\x2e\x21\x2e\xb7\xa9\x65\xb1\x54\x8c\xbb\x5c\xaa\x6d\xfc\x85\x97\x63\x3f\x0a\x60\x72\x0b\x9d\x3f\x6b\xc2\xa7\x71\x46\x01\x23\xb6\x3b\x5d\x3f\xa8\x3b\x6b\xe3\xba\xef\xfc\x3a\xb7\x40\x3b\x22\xea\xea\x51\x57\x8d\x5a\x44\x6d\xe1\xfb\x54\xee\x8f\x6d\xa9\x1d\x13\x29\xfa\xcf\xda\x44\xbc\x36\xf1\x3c\x95\xd9\xe8\xa2\xde\xea\xd5\xaf\xac\x7e\x47\xea\x3c\xd5\x9b\x18\x29\xbb\x92\x4e\xad\x1f\x4b\xc1\xa7\x41\x5d\x18\xbc\xf7\x63\xa9\xf6\x48\xaa\xed\x98\x60\x1e\x4b\xb5\x47\x52\xad\x5e\xae\x8f\xf5\x96\x72\x9b\xab\x7a\xb9\x3e\xcd\xbb\xa9\xa9\x9f\xa2\x52\xb9\xcd\x75\xb9\xcd\x55\xbd\x5c\xdb\x6d\xee\x16\x3a\xb8\xfa\xe3\x5d\x26\x69\xb7\x8b\x7a\x2d\xed\xca\xcd\xae\xca\x82\xdd\x79\x89\x6e\x21\x81\x17\xe1\xc5\x78\x05\x6f\xc2\xb7\x71\xda\x47\x9e\x38\xdd\xeb\x1b\xe9\xba\x53\xed\xa2\xf6\xee\xf5\x8d\x48\x29\x6d\xc2\xa2\x8f\xa5\xe3\x23\x29\xb8\x6b\x13\x74\x2f\x57\xd7\x34\x70\x02\x9f\xee\x69\xc0\x92\xb3\x76\xf1\x5c\x5b\x72\x9e\x8e\x98\xd4\x45\xec\xdd\xcb\xd8\xd9\xc4\x7a\x18\x3f\xdd\xbc\x58\xd2\x6e\xc7\xb8\xe1\x28\x9e\xfd\x2d\x30\xcd\xdc\x33\xcf\x30\x39\xa3\x46\xad\x32\x78\x3f\xb6\xf0\x3c\x43\xc3\xe5\xfe\x79\x14\xff\xbe\xe3\xce\x77\x71\xb5\xa3\x9b\xc2\x09\x71\x38\xd5\x2e\xb2\x1d\xe6\xc5\xc4\xbf\xaf\xb2\x60\x3f\xc3\x64\x32\x20\xe7\x2e\x72\x1e\x26\xdb\x01\xd9\x0e\x91\xed\xf0\xf2\xa2\x17\xad\xb2\x60\x77\xb6\xcb\x7e\x24\x05\x13\xa2\xa4\x1f\x4b\xc1\x47\x52\x30\x21\x4a\xba\xbd\xf8\xba\xbc\xf8\xea\x40\xbe\x38\xd3\xcc\x69\x72\x6f\xd7\x83\xf9\x51\xb2\xdc\x5b\xf8\x82\x77\xe1\x8f\x71\xfa\x83\x9e\xf0\x4c\x8f\x8b\xd0\x25\x75\x14\xb5\xef\xf5\x9d\xac\x2f\x29\x95\xfb\xb1\x49\xe9\x91\xb8\x3b\x44\xce\x16\x77\x4f\xc4\x30\x49\x75\x70\x25\x70\xba\xab\xae\x74\x57\x55\x2f\xee\xc7\xe2\xee\x59\xbc\xde\xc8\xb2\xfd\xd8\xa6\xf4\x2c\x98\xb1\x5e\xd6\xf1\xf6\xa3\x10\x64\xab\x23\xdb\x26\xa5\xf2\xfa\xab\x43\x3c\xd7\xd2\xae\xbc\xfe\xea\xe0\x26\x78\xd6\x76\x77\xb6\xbe\x57\xf3\x26\x73\xd4\xa8\x55\x06\xec\x67\x79\x1a\x96\x86\xa5\xa3\xdf\x6a\x51\x32\xaf\xa7\x2a\x83\x74\xf2\xac\x53\x60\x3a\x45\x26\x16\x4f\xe5\x0d\x58\x7d\x66\x6f\x9f\x3d\xa8\x3f\xeb\x14\x77\xdb\x1e\x97\xc4\xd0\xa9\xb3\x79\xbb\xff\xa8\x3f\xeb\x14\x99\x58\xfd\x29\xaf\xc2\x2a\x43\x75\x7b\x15\x76\x12\xb1\xa7\x2a\x43\x75\x27\x62\xef\x47\xe2\xe9\xd4\x99\xad\x60\x9d\x5d\x59\xb9\xea\x14\xd7\xdb\xbe\x1a\x49\xdc\x9c\xe2\x7a\xc7\xdb\xf1\xb0\x1d\x89\x5f\xde\xcf\x31\x79\x4a\xac\x94\xe1\xf9\xb1\x3a\xf3\x1c\xd6\xc5\xec\xc7\x7a\xc8\x83\x1e\xb2\xca\x20\xdd\xde\x83\xb7\x40\x3f\x75\x43\x3c\x5e\x97\x03\x79\xca\x50\xfd\x58\x3f\x79\xd0\x4f\xd6\xa9\x9b\xa3\xf5\x93\xe7\xc0\x66\x64\xc0\x7e\x6c\x9a\x8a\x7b\xe1\xc5\xbb\xf0\x61\x7c\x82\x2f\xe1\xdb\x38\xed\xa0\xb0\x39\x16\x37\x49\xff\x75\x71\xb5\x63\xb6\xfa\xd5\x3c\x88\x5d\x7d\x3d\x0f\xc4\xe9\x57\xf2\xdc\x7e\x2c\x6e\x92\x16\xec\xe2\xfa\xde\x77\xa0\x08\x6d\x92\xea\x14\x5b\xfa\x9a\x7d\x12\x16\xb3\x4e\xd1\xdb\xcf\x97\x08\x89\x8f\x64\xc3\xbb\xd5\x6e\x7c\xdc\x6d\xc4\xab\xca\xf9\x79\x19\x7f\x2c\xa3\xec\xda\xcf\x4f\x62\xd9\xf9\xc1\x55\xa5\x01\x38\x3f\x73\xa5\x1f\x5c\x69\x89\x0c\x7f\x3e\x94\x7f\x3c\x3e\x2d\x91\xa1\xa5\xcd\x83\x3a\xb3\xca\x0e\xfe\xfc\x7c\x79\x20\x90\x4a\x5d\x3a\xac\x7f\xe6\x4a\xa8\x2d\xeb\x12\xb7\xfa\x79\x79\x25\x6d\x2e\x1d\xb2\x96\x36\x0f\xe9\x01\xaa\x34\x03\xc7\xd2\xe6\x41\x9d\x59\x97\xb8\xd2\xe3\x65\x7c\x38\x34\x97\xc8\xf0\x31\xf7\x79\xb8\xfc\xac\xbf\x89\xad\xda\x9d\x8b\xac\xcb\x99\xb1\x2e\xdd\x14\x1f\x3d\x1a\x29\x17\x59\x5d\xa2\x3a\xcb\x97\x47\xf2\xa5\x34\x0d\xc7\xf2\xe5\x79\x78\x6c\x90\xa6\xe1\x3c\xde\x1d\x92\x2f\xa5\x69\xb0\xf3\x63\x27\x89\x59\xaa\xd2\x34\xe0\x0b\x49\x81\xd5\xd7\x5d\xf0\xf1\x8d\xf3\xe1\x2e\xb5\x74\x17\x7c\xbc\x3b\xd0\xb2\xd6\x25\x2a\x55\xb0\xce\x2e\xe7\xc7\x2a\x0d\x84\x9d\x1f\xfb\x79\x45\x16\x68\x5c\xec\xfc\x78\x0b\x15\x7c\x08\xef\xc6\x21\x8b\xa5\xf6\xcd\xe5\xc2\x3b\x32\xb5\x8f\x24\x16\xcb\xa9\x07\xc3\xdb\x46\x9c\x98\x6e\xa7\xc8\x2e\xa7\xc8\x26\x0d\x84\x9d\x22\x6f\x41\xed\xe8\x77\xcd\xd5\x43\x2f\x9b\x9a\x0c\xe1\xed\xfc\xd8\xf1\x6a\xbc\xf8\x6d\x67\x38\x95\xf3\x2d\xd4\xc0\xe3\xf0\x1c\xf6\x66\x1c\xca\x8d\xd6\x50\x1d\x0c\x9c\x18\x29\x3c\xe0\x15\x9c\xed\x71\x0b\xb4\x13\x87\xe4\xad\x76\xe3\x23\xf0\xaa\x76\xb8\xb3\x0e\xdc\x17\x2f\xae\xdf\xe5\xce\x7a\x0b\x1d\x5c\xed\xa0\x89\x19\x24\x55\x4b\x0d\x95\xc2\x98\x1f\x2e\x5f\x43\xde\x8c\x8d\xf8\x31\xc3\xde\x8c\xb7\x40\xff\xbb\xbf\xdf\xc6\x99\x9f\x4e\xff\x93\xe7\x81\xf4\x0c\x0d\x95\xc2\xad\x36\xe3\x27\xf0\xa0\xb7\x5b\xfd\x19\x67\x1e\x86\xbe\xf7\x3c\x24\xcd\xc3\xd4\xf7\x9e\x87\xa4\x79\x98\x4d\xf8\x32\xfe\x05\x1f\xc2\x5f\xe1\x9a\x9f\x45\xff\x25\x20\x0f\x79\x39\xb6\xcf\x52\x3b\x9c\x7a\xb7\x00\x3d\x2c\xb5\x73\x34\xcf\x04\xf7\x6c\x18\xc2\x8f\xa9\xfc\x0f\xb7\x70\xc0\x99\x7f\xe5\x6a\x1b\xca\xd5\xd6\x52\x5c\xd6\x86\x73\xb5\x0d\xb9\x39\x36\x22\x99\x8f\xa9\xe0\x9e\xb7\xf0\x03\x1f\xc2\xd5\x7f\xdc\x1c\x1b\x86\xf0\xc3\x6e\x8e\xb7\x40\x3b\x59\xed\xac\x6d\x9c\xfe\x88\x0e\x95\x30\x62\xc8\x9d\xb1\x11\xe1\x7c\x4c\x49\xc8\xb7\x10\xf3\x80\x0e\xe2\x56\xfd\x7d\xec\xeb\x46\xe4\x98\x81\x17\x23\x85\x01\xbe\x84\x1f\xe3\xb1\x8e\xe8\x1a\x06\x5e\x8c\x14\xf8\xbe\x4d\xe1\x5f\xe3\x7c\xdf\xd5\xfe\xf6\xf7\xec\x53\x42\x93\x8f\x59\x8e\xf1\x23\x5c\xdf\x9f\x66\x9c\xfe\xcf\x24\x7c\x1b\xff\x82\xab\x3f\x1e\x57\xd1\xb8\x44\x27\xd5\x74\x5b\xb5\x2e\x73\x09\x3f\xc6\xf9\x7e\xd1\xff\xba\xb4\xbe\x91\x54\x22\x29\x95\xfc\xad\xfa\xfb\x78\x27\x6b\x84\x76\x19\x4e\xae\x76\x0b\x2d\xf0\xa4\xef\xf7\x30\xfe\x80\xeb\xfb\xe3\xef\x0f\xdf\xe7\x26\xdc\xdf\xd3\x7f\x94\x00\xc3\x6e\x8b\xb7\x10\xf4\x96\xc5\x37\x9a\xe9\x8d\xa4\x11\x2d\x6b\x7d\x9b\xe9\xaa\x41\x57\x59\xfc\xa1\xad\x62\x3c\xe8\x27\x8b\x3f\x34\xef\x23\x6c\x7a\x5b\x16\x1f\x68\x7b\x1b\xe7\xfb\xde\x85\xfb\xfb\xa3\xef\xd5\x4f\xd3\x5b\x24\x81\x48\x2d\x8b\x0f\x28\x55\xf4\x2d\x7c\xc1\x87\xf0\xc7\x38\xe3\x15\x7f\xe8\x1e\x6f\x08\xb7\xa9\x65\xad\x7b\x37\x9f\xc1\x6d\xb1\x65\xf1\x87\xee\x75\x24\x6b\x44\x43\xd3\x3f\x66\x37\x7d\x76\xcd\xc3\xaa\xc2\xdd\x4e\x1c\xe7\x2d\x8b\x0f\x74\xef\x2f\x6c\x80\x1b\xc1\xbb\xc7\xec\xe6\xc3\x04\xfd\x6c\x04\xe9\xbe\xd5\x65\x3c\xe6\xa7\x24\xf5\x73\x8b\xef\xa1\x0a\x6e\x45\x7c\xa0\x9b\xdf\x12\xbe\xb3\x15\xed\xf7\x6e\x7a\xc6\x9d\xb1\x11\x82\x66\xcc\xe1\xfd\x38\xd8\x8f\x28\x0d\x6e\x75\x19\xe7\x7b\x9d\x2f\xc3\xeb\x8e\xcd\x70\x2b\x85\xfe\x0f\xf3\xd5\x01\x3f\x29\xa2\x93\xe1\xf1\x0e\xe8\xa1\xe8\x7c\x19\xeb\x67\xfc\x01\x87\x7e\x86\xe7\x01\x5b\xe2\x46\x08\x9a\x5b\x9d\xc6\xbf\xe0\xea\x8f\xe9\x64\xb0\xaf\x8b\xce\x9d\xe1\x7d\x3d\x34\x0f\x3a\x5f\x86\xe7\x61\xc0\x6f\xb1\x39\x1f\x73\x9a\x1e\x30\x1a\x6e\x65\xe4\x7f\xbe\x7e\xdd\xaf\x87\xff\x8c\x6e\x0d\x37\xf7\x18\x0f\xb2\x2b\x62\x1f\xd3\xdb\x9e\x44\x14\x8d\x58\xdd\xc3\xb9\xe6\x86\x72\xc7\xb5\x22\x72\x99\x5e\x66\x52\x39\xb7\xfa\x61\x78\xd3\xc7\x2d\x2a\xe1\x86\x29\xf9\x98\xcb\xc3\x40\x95\xdb\xaa\xae\x17\xcb\xcb\x49\x48\x9b\xc6\xb3\xfc\x70\xee\xb8\x31\xb1\x11\x6e\x55\x6c\x62\x79\x1b\x87\x43\xe5\xc5\xf9\x5d\xa9\x6c\x87\xfc\x22\x1b\x29\x32\x6f\x75\x1b\x0f\x72\xa9\xba\x5e\x2c\xb3\x5d\x42\xda\x34\x62\x63\xdf\xaa\xdb\x51\xff\x75\x3c\x2c\x93\x2f\x3a\x5c\x25\x79\x19\x73\x79\x7b\x93\x3b\xae\x91\x1b\xf3\x56\xdd\xff\xbb\xbd\x3b\x26\xdd\x63\xee\x29\xee\x87\x0a\xb7\x55\x51\xcb\xf6\xee\x26\x62\x4e\xab\x8d\xe9\xdf\xde\xc5\x5b\xd3\xd0\x8b\xf0\x62\x9c\xe1\xf6\x26\x7c\x18\x7f\xc0\x59\xf6\xed\xd3\x07\x19\xb9\x61\x4a\x7e\xab\x6e\x87\xdb\x42\x1d\xfe\x7e\x1a\x67\x59\x74\x4b\xd9\xbe\x2d\x60\x0a\xac\xac\x2d\xb7\xea\xdf\x8d\x77\xdb\x9e\xd4\x8c\x89\x1a\x11\xb9\x55\x5d\x52\x8e\x87\x4b\xde\x8a\x56\x45\x55\xc7\xd4\x70\xa0\xda\xf6\x61\x93\x1d\x0f\x97\xfc\x14\xad\xe9\x32\x72\xbc\x89\x11\x9d\x5b\x13\x13\x3a\x3e\x94\x08\xbc\xd3\xb0\x30\x1f\xf6\xd2\x1c\xf2\xd2\x6c\x4d\xd4\x76\xbc\x29\x11\x91\x5b\xd3\xa5\xe3\xb8\xff\x61\xc2\xdb\x7a\x31\xfc\x18\x7e\xf9\x9c\xe6\xbf\xe6\x59\x28\x64\x5b\x13\xcf\xfa\x9a\x47\xe3\xd4\xd9\x78\xc5\x1f\x76\xea\x1c\x78\x71\x26\xc5\x7f\xba\xd5\x69\x3c\x36\x63\xab\x55\xb8\xbf\xe7\x0c\x6e\x22\xce\xaf\x57\x91\x38\x3d\xad\x89\x38\xe5\xec\x79\x0b\x41\xb4\x4d\x67\xde\xd7\xbc\xe9\x0b\x8f\x6e\x0d\xea\xf9\xfa\x6c\xc6\x12\xb8\x91\xa8\x73\x38\x93\xdd\x50\x26\xbb\xd6\x74\x46\xfe\x4c\xcd\x3f\xa8\xb9\x89\x97\xfd\x7c\x36\xff\xb4\x8c\x3a\x3b\x7f\xde\xd4\x28\x64\x1b\x06\xe6\x63\xfe\xbc\xbc\x3f\x2d\xaf\xa8\xf3\xe7\x79\x08\x99\x38\x35\x0c\xcc\xc7\xfc\x99\x17\xff\xb4\xbc\x13\x72\xfb\x79\xf3\xfe\xd8\xbc\x4d\x77\x9a\xc7\x77\x56\x44\xde\xd6\x75\x86\x3d\x26\x43\x2c\x78\x5b\xd7\x9d\xe6\xb1\x0c\xf3\xb0\x5e\x5d\x64\xf5\x78\xbd\x22\xb8\xe8\xc5\xe9\xff\xe3\x3b\x3d\xaa\xd7\xd6\xc5\xdc\x1e\xef\x46\x12\x4d\x34\x2c\xc9\xc7\x7c\x7c\x47\x7c\xd8\xa5\x5d\x67\xde\xe3\x5d\x8a\x25\x70\xeb\xa2\xab\xc7\xeb\xfb\xb0\x8e\x5d\x77\x5c\xe9\x58\x6f\x81\x7e\x16\xfd\xae\xef\x22\x38\x8d\xb6\xae\x3b\x93\x74\xac\xb7\x10\xf4\xd9\xc5\x0c\x1f\xaf\x2f\xb2\x6e\xeb\x3a\x23\xa5\x63\x1d\xca\xb8\xd7\xba\xce\xc2\xd7\xf4\x8c\x33\x69\x23\x12\xcc\x70\xc6\xbd\x5b\xa0\x9f\xe2\x62\xaf\xb7\xa9\x64\xd7\x2e\x2e\xf6\x7a\x1d\x31\x31\x6e\x5d\xdc\xea\xf5\x36\xc5\x69\xb4\x11\xf1\xe5\x56\x45\x3f\x38\x8d\xb6\xae\xbb\xd4\xeb\x75\x27\xaf\x77\xeb\xdc\x99\x96\x65\xd7\xf5\x41\x66\xc3\xa2\xfb\x56\x87\x71\xfa\x09\xfb\x59\x8a\xc4\x73\x0b\xac\x0b\x77\x20\x3b\x93\xde\x42\xcc\x1b\xa1\xb8\x6f\xf5\x2b\x9c\xf5\x22\xf4\xca\xad\x16\xe3\x15\x7c\x82\x1f\xb7\x13\x3a\xe2\x46\x28\x95\x61\xe7\xd0\x81\x37\xe8\xc5\xd5\x1f\x9e\x70\x6e\x21\xfa\x33\x0a\xed\xcb\x39\xf4\x16\x36\x78\x13\xae\xfe\x48\xb6\x24\x64\xca\xb0\xb3\xe7\x2d\xf0\xbb\xac\xcb\x4a\x92\xa5\x57\x82\xae\x30\xcd\xbe\xd5\x63\x3c\xe6\x9f\xcc\x98\xb7\xfa\x18\x7f\xc1\xd5\x8e\xc7\x85\x13\x68\x1b\xac\xa3\x9d\x40\x6f\x21\xd6\x65\xb0\xdf\xed\xed\x39\xf0\xf6\xec\xd8\x19\xdd\x5a\x35\x1c\x64\x3b\xa6\xf1\xaf\x71\x9a\xe1\x6e\xb2\xb2\x97\x45\x22\x21\x96\xdc\xb7\xfa\x0a\x67\xb8\xf3\xa3\x76\x3c\x5c\x6c\x95\x1b\x0f\xcb\x03\xdf\x4f\x0a\x2b\xba\xa3\xe6\x45\x85\x2b\x33\xda\xf9\xf9\x0b\x3b\xfb\xb1\xb2\x27\x83\x24\xe1\x6d\x26\x0d\x5a\x37\x85\x45\xa8\xd4\xc6\xf3\xf2\xad\x3e\xc6\xf9\x19\xce\x9e\x55\x3c\x49\xf8\x9a\xb6\x09\x33\x58\x16\x48\x97\x04\xd2\x59\x84\x2f\x7f\xcf\x55\x61\xc6\x7b\xdf\xb0\x6f\xea\x20\x99\xe1\xc5\xe9\x8f\x7c\x50\x07\x4e\xa7\xa9\xf1\x8c\x3c\x96\x05\xd2\x25\x81\x94\x67\xe1\x61\x5f\xd3\x5b\xe0\x77\xb9\x72\x2c\x0b\x98\xf2\x35\x6d\xc4\x2f\xb9\xd5\x66\xfc\x80\xd3\xcf\xba\xb4\x0a\x64\xef\x6e\x73\x1a\xff\x19\xa7\x7d\xee\x0a\xab\x9a\x78\xab\x56\x53\x9b\x58\xce\xa4\xb7\x40\x3b\xda\xc4\x72\x1a\x1d\x72\x1a\x6d\x3c\xf3\x8e\xd5\x74\x08\xc8\x69\xb4\x61\xe9\x3d\xec\x34\x3a\xe4\x34\xda\x96\xa8\xb1\xe9\x2e\x82\xf7\xe8\xc5\xf9\xdd\xe6\x79\x26\x4b\x44\x5b\x22\x97\xe6\x79\x46\xf9\xda\x78\xcf\xbd\x55\xad\xaf\x04\xcc\xa5\xf5\x6d\x66\x12\x64\x8f\x68\xbc\xe7\x0e\x3b\x8d\x0e\x65\x1f\x6c\x58\x80\xdf\xaa\xc6\x25\xc1\x13\x0b\xf0\xb1\xa4\x4c\xbd\x85\x98\x37\xde\x73\x87\x9d\x46\x6f\x21\x83\x0f\xe1\xd5\x78\xec\x82\x85\x20\x63\xa7\xd1\x21\xa7\xd1\x86\x69\xf8\x70\x5a\xc2\xa1\xb4\x84\x0d\xd3\xf0\xb1\x14\xff\xe6\x16\x82\x9e\x89\x5c\x32\x56\xf7\xba\x90\xd5\xbb\x2d\x31\x09\x69\x41\x6f\xa1\xfe\xf7\xdf\x43\xef\x8b\xcb\x72\xe1\x42\x09\xda\x96\xc8\xc7\x72\xa1\x7c\x49\x1b\x01\x4d\x86\xd3\x0c\xde\x02\xd3\xc0\x19\x40\x76\x41\x0a\x74\x87\xbb\xc2\x52\x28\xd3\x21\x5f\xd2\xb6\xb8\xc9\xae\x61\xde\x4d\x98\x9b\xb6\xc4\x3c\x86\x99\xc7\xd0\x72\x89\x0c\x87\xa7\x7f\xc0\x0d\x88\xeb\x3d\xec\x1c\x3a\x48\x1c\x98\x3a\x16\xe3\x63\x59\xce\xc3\x4b\xf4\xe2\xfa\x5d\x8f\x0b\x39\xaf\x13\xb8\xe4\x56\x7f\xc6\x1f\x70\xc8\x61\x9a\x3c\x51\x82\xf6\x8f\xc8\xd3\x82\xdc\x42\x90\xeb\x9e\x4f\x0b\x72\x2b\x6c\x82\x2f\x3e\x84\x7f\x8d\xff\x02\xe7\xce\xb1\xa6\x79\x3a\x82\x5c\xff\x88\x0c\xa7\xd9\x18\xc9\xc1\xfb\x47\x64\x38\xbd\x5e\x28\x3b\xfb\x47\x67\x92\x42\x9c\xde\xc2\x06\x67\xbd\x96\xc9\x8d\x3c\x0d\x5d\xef\xbe\x6b\x79\x5c\x91\xb0\x61\x75\x51\xe7\x9a\xdb\x30\xd3\xc3\x15\x65\x59\x1e\x54\x62\xc2\xfe\x11\x17\x93\xb2\x73\x28\x01\x61\xd7\xb3\xef\x5a\xe6\x1a\xa4\x6f\xe8\x1f\x51\xad\x42\x99\x0e\x12\x10\xae\x2e\x22\xb7\xd8\xb7\x96\x46\x25\xa6\xb7\x3c\xaa\xa5\x51\x89\xe9\x6d\x53\x21\x2e\xa0\xfd\xa3\x13\x6f\x9b\x69\x84\x72\x33\x75\xbd\x06\xaf\xed\x4d\x84\x29\x6e\xff\x88\x9a\xb7\x6e\x94\x72\x01\xed\x1f\x31\xc9\x6d\x26\x89\x7c\xd7\xf5\x7a\xbc\x2c\xdf\x29\x61\x61\xff\xe8\x88\xdc\xde\x8c\x21\xd0\x5d\x9c\xe9\xd9\x7a\x0d\x96\x4b\x67\xc7\x20\x7d\xd8\xa5\x73\x90\xa1\x30\x75\xbd\xfa\xda\xa5\xf3\x16\x06\xb8\xfa\xe9\xc3\x6b\x43\x9d\x49\xd4\x79\x3c\x0f\x84\xcf\xe9\x49\x37\x20\x65\x7b\x18\x4a\x58\xd8\xf5\x1a\xbc\x8e\x77\x29\x02\x5e\x4f\xba\x19\x1d\x2f\x23\x91\x55\x7b\xd2\xe1\x78\x4c\xb5\x08\x78\x5d\xaf\xc1\xb8\x6c\x52\x10\xce\xfc\x58\x90\x5b\x47\xfd\xe7\x19\xc0\xbe\x98\x43\xbe\x98\x3d\xe9\x70\xfc\xfa\x26\x85\x69\x6d\xc7\x22\xfd\x56\x9b\xf1\x0e\x3e\x84\x0f\xe3\xf3\xbf\xff\xee\x83\x0b\xb1\x5d\x34\x07\xbe\x97\xa9\x27\x51\xe1\xd7\xcb\x42\x60\xd5\x9e\xc4\x23\x2d\xb0\xc9\x15\xb3\xeb\x91\x78\x7d\x7d\xe5\x20\xb0\x6a\x27\x8c\xf8\x58\x5f\x9f\xc9\xa1\xf3\xbc\xb8\xba\x69\xa6\x81\xcb\x65\x4f\x62\x6e\x3f\x6f\xba\x9f\xba\xaf\x33\xf6\x67\x1e\x1f\x92\xd8\xc5\x99\xb6\x9f\xcf\xb4\x30\x8d\xed\x18\x18\x0c\x27\x06\x1c\x4a\x00\xd8\x93\x78\xde\xcf\xab\x42\x10\x9e\x9e\x45\x25\x3f\xf3\x4e\xe2\xb0\xf6\x2c\xde\xf6\xd3\x5b\xe1\xfa\xc5\x91\xd0\x49\x5f\x79\xab\xea\xfe\x0f\x1e\x99\x45\x3d\x3f\xaf\x16\xb9\x1e\x7a\xce\x7f\x61\x67\x3f\x96\xc5\x3c\x39\x6a\xf6\xac\x6b\xf4\x63\x56\x83\x66\xb3\x67\xb1\x32\x8b\x73\x0b\x71\xae\x67\xdd\xa4\x14\xbb\xe7\x16\x06\xf8\x14\xbe\x8c\x33\x6c\xf1\xa0\xc7\xc3\x0e\xf9\xad\x0f\x2d\x9a\xa5\xb6\xf5\xc4\x01\xdf\x33\x52\xf9\x7a\xcc\x71\xc9\x34\xd1\x33\x6f\x40\xf6\xf7\x1c\xf2\xf7\xec\x59\xb7\xf4\xc7\x1c\x97\x3c\xe9\x3d\xeb\x96\xfe\x7a\xef\xbd\x2c\x72\x16\x6f\x7a\xbd\xc8\x48\x67\x5d\x2f\xd1\xeb\x35\x91\x86\xea\xf1\xe2\x4c\xcf\xbb\xfc\x3d\xab\x9c\x45\x2c\xaf\x2f\x64\x2f\x2c\x14\x73\xf4\xe1\x34\x80\xb7\x40\x3f\x75\xf1\x7a\x25\x75\xe2\xd9\x99\x7a\xd1\x49\xf8\x9a\x87\x62\xe9\xda\x0b\xd2\x93\xd3\xfd\x0d\xf2\xfb\x5d\x7c\x08\xdf\xc6\x63\xb9\x4a\xf2\xf7\x8f\x70\x96\x8b\x20\x28\xc3\x69\xfd\x06\x9e\xa0\xbd\xf3\xd0\xbd\x2d\x9c\xed\xcf\x1d\x47\x97\x2c\x87\x37\x28\x85\xe8\xbd\xde\x9b\xf7\x67\xfb\x57\x37\xbf\xca\x39\xb8\x15\xd0\xe7\x16\x62\xb5\xf4\x0e\xbd\x2d\xcb\x29\xa9\x5f\x27\x34\xca\xad\x36\xe3\x1d\x5c\xbd\xd4\x2c\xe0\x17\xda\x71\x16\x1e\x5b\x59\xdf\x6f\x81\xee\xf0\x04\xb4\x93\x16\x71\x27\x4d\x02\xb4\xb6\x15\x24\xf5\x16\x82\xa8\xf4\x0c\x6d\xf7\xd2\x5b\x18\xb7\x79\x76\xd2\x96\x79\xed\x2d\x30\xf7\xcd\xb8\x46\x85\x79\x6d\xc7\xd4\xfd\x56\x9b\xf1\x20\x7d\x4c\xdd\xc7\x56\xf8\x9f\x41\xce\xbf\x8b\xeb\xfb\xe3\xf6\xe1\xab\x44\x44\x19\x64\xfe\xa3\xc0\xac\xf1\xae\xb8\x2d\xf9\x91\x0b\x30\x75\x02\xa4\xdf\xea\x36\x4e\x3b\x30\xa6\x6d\x2d\x21\x7e\xac\xa9\x93\x12\x72\xd8\x7d\x75\xc8\x7d\xb5\x17\x2d\xba\xf2\x5a\xdc\xc2\x03\xae\xdf\xf5\xea\xe2\x8e\xda\xb1\x3a\xbf\xd5\xc7\xf8\x0b\xae\xef\xbd\x8a\xd8\xd7\x2a\x14\xc8\x70\x6a\xc0\xa1\xd4\x80\xbd\x72\xbb\xda\xb2\xaf\x1d\x72\x53\xed\x35\xfb\xfb\xaf\x71\xda\x17\xb5\xc9\xbe\x76\xe0\xaf\x7a\x71\xb5\xe3\x65\x24\xdf\x45\xaf\xa2\x36\xb9\xaf\x0e\xb9\xa9\xf6\x5a\xd4\x8e\x44\x5a\xb9\xa9\x76\x3d\x6f\xef\x22\x8e\xbb\x09\x30\xd4\x89\x88\x32\xb6\x02\x0c\xdd\xc2\x03\xae\xdf\xf5\xfa\x92\xa1\xbe\xeb\x79\x7b\x5b\x0b\x89\x1f\x6b\xea\x7a\xde\xde\x16\x06\x37\x81\x87\xba\xde\xb1\x9d\x7a\x70\x28\xf5\x60\xd7\x3b\xb6\x53\x0f\x0e\xb9\xbb\x76\xac\xd7\x87\xdd\x5d\x87\xdc\x5d\x3b\x21\x54\x86\xdd\x5d\x6f\xe1\x07\x5e\x85\x8b\x1e\xd0\x4e\x76\xcc\xd7\x6f\xb5\x1a\x67\xde\xb8\x47\xed\xaa\x97\x27\x72\x0d\xa6\x5e\x45\x6f\xb2\xd0\x1d\xf2\x83\xed\xe4\xfb\xbe\xd5\x61\x9c\x71\x89\xde\xaa\xe7\x0d\x4b\x5c\x99\xd9\x0f\xa7\x24\x1c\xf2\x83\xed\x55\xf4\x56\x3d\x6f\x95\xf9\xd1\x43\xf6\x6e\x1e\x6f\xe3\x36\xdc\xc4\xf3\x9a\xe9\x1f\xbf\xd6\xde\xb4\x7f\x9b\xc7\xd5\xb8\x07\xb6\x9c\x84\x4f\xe3\xb4\x2f\xba\x6a\xa6\x93\xf0\x6b\xed\xba\xde\x3a\x53\xe1\x50\xa6\xc2\xae\x07\x6b\xbb\xaf\xde\xc2\x17\x9c\x65\x6f\x26\x07\x0c\x77\x7b\xe3\x32\xbf\xad\xcc\x94\x3b\x6a\x27\x00\xfb\xd8\xdd\xc3\x42\x69\xd9\xf5\x30\xbd\xbb\x97\x11\xa5\x65\xd7\xc3\xb4\x33\x18\x0e\xf9\xa9\x76\x02\xb0\x8f\x6d\xa5\x25\x0e\xa8\x17\x6f\xc2\xfd\x3d\xf7\xa5\xd6\x85\xeb\x1a\x48\x0a\xc2\xd4\xf5\x70\xbc\xfb\xfe\xf3\xfd\x0f\x9c\x65\xe9\x3a\xa2\x94\x43\xb0\x37\xae\xc9\xdb\xca\x46\xe5\x0a\xec\x4d\xcb\xae\x00\x45\xb7\xc0\xf7\xcb\xdf\x8b\x9c\xb1\xac\xed\x64\x90\x1c\x7b\x98\x3b\x0f\xb8\x73\xd7\xb2\x5b\x09\xb9\x07\x37\x0a\x0c\xb9\x6f\x75\x19\x7f\xc0\x99\xe7\xe1\x43\x8a\x58\xab\xbd\x8b\xfd\x0c\x1f\x3a\x03\xb6\x24\x3d\xcb\x1e\x3e\x5c\x06\x57\x04\x0c\xb9\x07\xa9\x03\x29\xbc\xe0\x7c\x3f\x3d\x5e\x94\x8a\xbd\x63\xbc\xb3\xad\x35\x24\x9b\xe0\xc5\xff\xc2\xce\xfe\x7e\xad\xdd\x84\x41\x6e\xd7\x7b\xf3\x9e\x7a\x12\x91\x5b\x6a\xd7\xbb\xf2\x9e\xa6\x5e\x0c\x75\x3b\x76\xdb\x63\x4f\x2f\xb3\x64\x54\x09\x85\xce\x31\x38\x94\x63\xb0\x63\xb7\x3d\xec\xaf\x7a\x0b\x7c\x2f\x32\x52\x7a\x8e\xa1\x1c\x83\x5d\xef\xcd\x7b\x7a\xf9\x89\xfd\xda\x31\xc4\x1e\x7b\xf9\x10\x96\x8c\xda\xc5\x55\x96\xa7\x43\xc2\xa8\xde\x9b\xf7\xf2\x78\x09\xf2\xda\x31\xac\xbe\xd5\x6c\x9c\xf6\x51\xae\xee\xe5\xf1\xae\xad\xef\xd9\x06\x56\x5a\x92\x3c\x30\xf5\x2e\xee\x21\xcb\xdb\x5b\x88\x65\x1b\x3a\xad\x96\x97\x9f\x00\x46\x9d\x08\x22\xc3\x39\x03\x07\x39\x03\xc7\xc7\xc3\xf2\x6e\x25\x65\x60\x1f\xba\x48\x59\x48\xdd\x9b\xdd\x37\x74\x58\x6d\x53\xb5\x84\x51\xec\xa7\x87\x53\x09\xde\x42\x05\x1f\xc2\xdd\x0e\xb2\xf7\x10\xf7\xd8\x5e\x2e\x0c\x6f\xfb\xd0\x61\x65\xa1\x53\x7e\x9e\x7d\xe8\xae\xb3\xbd\x2c\x9b\x8b\xe3\x10\x99\x58\xa9\x88\xc3\xe7\xc5\x9b\xf0\x63\x9c\x71\x21\x85\xd9\xcf\x73\x90\x6b\x30\xf5\x21\xee\x77\x7c\x08\x13\x5f\xa8\x0f\x1d\x3e\xc7\x17\x47\xe2\x0b\x75\x3d\x5b\x6f\x6b\x15\xb7\x84\xce\x81\xa9\xce\x3e\x1e\xd7\x81\x0c\x87\x2e\x3b\xc7\x87\xc6\x81\x0b\x0d\x91\xc9\x31\x17\x3a\x70\x57\x0c\xa5\xc7\x3e\xe6\xae\x47\xe3\x15\x17\x3a\x1e\x2f\xd9\xf0\xbb\xde\xb3\xf7\xf1\x78\xc9\x86\xdf\x87\xb8\xd3\xd7\xe3\x25\x90\x50\x1f\x3a\x94\xbe\xbe\x58\x87\x3e\x72\x64\x75\xff\xeb\x69\xc0\x4e\xb7\x4f\x31\xa7\xaf\xa9\x96\x38\x42\x7d\x8a\x09\x7d\xcd\xb4\x24\xd4\x12\xc9\xe4\x56\xdd\x0e\xd3\x33\xc5\x9c\xbe\x9e\x9e\x2f\x67\xaa\x1e\xbe\xb7\xb5\x8d\x1b\x6d\x63\x27\x16\xe4\xad\x56\xe3\xc1\xcc\xf4\x20\x6e\xf7\xcf\x81\xbf\x67\xea\x53\x77\x20\xb9\x73\xde\x02\xfd\x47\xb6\xdf\x3f\xdf\x65\xd1\x12\xf6\xa9\xbb\xce\xcf\xbb\x8b\x90\xb0\x7d\x8a\x9b\xfc\x7c\x68\xfc\xe0\x1a\x53\xdc\xe4\xe7\x7e\xfe\xd4\x4f\xdd\x89\xad\x55\xdc\x68\x15\x3b\x21\x51\xc6\x56\x48\xd8\x81\x5f\x67\xea\x53\x77\x14\x8b\xa1\xfb\x51\xff\x75\x57\xb6\x18\xba\x49\x53\xdf\xb1\x93\x1e\xf6\xf3\xbc\x05\xfa\x2f\xf2\x79\x7c\x47\x7c\xb4\x2e\xbc\x01\xed\xc7\xdc\x04\xcb\xda\x3e\x45\x3e\x8f\xe7\x01\xcf\xcd\x4e\xa0\xef\xb1\x2d\x87\xe2\xaa\x99\xfa\xc4\x42\x68\x3f\xdb\xfd\xb9\xf4\x3b\x8a\x24\x12\x8b\xa7\x78\x6a\xde\xcf\xd5\xbc\xaf\x3a\x0f\xcc\x87\x88\x2b\xb7\xda\x8c\xb3\x8c\x62\x62\x8f\xcf\x24\x94\x8a\x7d\xa9\xfd\xd7\x77\x05\x22\xd7\xf6\xa5\x2b\xf7\xeb\xe5\xc5\x80\xb6\xeb\xbd\xdd\x89\x10\x6f\x61\x82\xeb\x7b\x1f\x16\x64\x0f\xe9\x2b\xfb\x7b\xf5\x1f\x87\xce\xbe\x74\x16\xca\x50\xf6\x16\xf8\x5d\x9d\x85\xaf\x45\x9e\x08\x6c\x34\x8a\x9b\xf7\xa6\x26\xcc\x51\xd7\x33\xfc\x7e\xbd\xa9\xb1\x9f\xed\x4b\x72\xdf\x6b\xea\x21\xa9\x48\x5f\x92\xfb\x2c\x15\xe3\x08\x7a\x71\xb5\x6f\x9e\xfd\x22\x39\x2d\x6e\xee\x47\xe1\x8f\x6e\x81\xef\xa1\xda\xa3\x24\xf8\xb7\x10\xd4\x43\x1c\xf2\x71\x94\x25\xe4\x16\x1a\xb8\xbe\x17\x73\x3b\x1f\x76\x29\xf6\xd4\xe3\xd8\x7e\xf6\x10\xd0\xb6\xeb\xbd\xdd\xf9\x1d\x6f\x61\x81\x57\xe1\x5f\xe1\x2c\x2f\x11\x5a\x86\x1d\x46\x87\x1c\x46\xfb\xe2\x75\xe0\x28\xeb\xc7\x38\x12\x5c\x89\xc4\x72\xab\x8f\xf0\xa0\xda\x81\x5d\xf3\x20\xed\x22\x85\x27\x70\xa4\xfa\x93\xc4\x4d\xe4\x00\x3a\xf4\x8e\x6d\x07\xd0\x81\xc7\x67\x1a\x1f\x0e\x2f\x1c\x3c\xa3\x10\x12\xcc\x90\x9d\xf2\x49\xc7\xdf\xc7\xd5\x68\x90\xff\x72\x90\xa6\x91\xc2\x1b\x38\xeb\x75\x2c\xa1\x1e\xec\x58\xc7\x07\x2e\x63\x0f\xd0\x71\x90\x44\x87\xec\x91\x49\xc7\x48\xa1\x06\xae\x75\x51\x20\xa5\x5b\x60\xbc\x4d\xdf\x6f\xb7\xbf\xe9\x27\xdc\xe4\x28\x12\xed\x2d\xac\xc0\xfb\xdf\xd8\x79\x9d\x2c\x72\x3c\xe4\xbc\xf7\xd9\x6f\xc7\xd1\x21\xc7\xd1\x21\x73\x65\x3b\x8e\xde\x02\xc3\x83\x09\x9d\x7c\x3c\xbc\x43\x77\xb5\xcc\x59\x4c\xee\x44\x1a\x90\x21\x39\xde\xf9\x1d\x6f\x81\x51\x73\xb4\x39\x8f\xe3\xc0\xb1\x74\x14\x2e\x46\xa7\x78\xf1\x8b\x26\x89\x27\x26\xa7\x71\xbc\x05\x7e\x95\x13\xec\x14\x2f\x3e\x62\xed\x20\x5e\xca\xad\x2e\xe3\x41\x2c\x24\xc1\x1c\xa7\xb8\x97\x11\x56\x29\x0d\xe2\xa2\x8c\xa3\x78\xb7\x03\x8f\xcf\x95\xb5\x66\xd5\xdd\xc1\xf6\x75\x24\x4e\xa4\x63\xdb\xd7\x83\x74\x39\x08\xa3\x32\x8e\x55\x93\x38\x76\x5e\x1c\x5a\xa9\xe2\xac\xa7\xd2\x4d\xd9\x1e\xdb\xcf\x73\x90\x3f\x31\x0d\x82\x79\x0f\xfb\x79\xde\x02\xdd\x17\xcd\x55\x2f\x0a\xfe\x9c\x23\x15\xb5\x73\xfc\xbb\x87\xef\x39\xd9\x4e\xf3\xb0\x48\x60\x3f\x64\xab\xec\xf4\x88\xb7\xf0\x0d\x5c\xbc\xc0\x36\xae\x27\x72\x71\xa4\x91\x44\x0c\x16\x0b\xe5\xff\x39\xf4\xdc\x7c\x2c\x16\xca\xcf\x73\xe8\xb9\xf9\xd8\xf6\x15\x87\xcf\x34\x92\x56\xdd\xb6\xaf\x38\x7c\x5e\x3c\x0b\xdf\xc6\x99\x37\xa4\xec\x63\x15\x24\xf9\x13\xd3\x48\xe2\x11\xdd\x7b\x0c\x55\xe3\xd0\x7b\xf3\xb1\x58\x78\x3a\xeb\x92\xc5\x3b\x94\xd8\xfe\x16\x0e\x78\x15\xae\x7e\x76\xf6\x98\x6c\x92\x4f\x37\xef\x43\x8c\x1c\xd2\xf4\x9f\x2e\x5e\x7f\x50\x59\x0e\x82\x6d\x8f\xd3\xcd\x3b\xd0\x4d\x0e\xd2\x53\x0e\xa7\x53\x1c\x72\xc4\x1c\x7a\x68\x3e\x43\x5a\x03\xf2\x2a\xa6\x41\xb0\xed\x61\x07\xcd\x5b\x58\xe0\x6e\x47\xf4\x80\x18\x39\xb2\xe8\x41\x61\x8a\x6e\x81\x76\x74\x36\xd8\x66\x55\x0e\x9a\x43\x0f\xd0\x67\x78\x5c\x43\xe3\xe2\x42\x7c\x14\xe7\xf6\x16\x98\x9f\xa6\x76\xf4\x9a\x71\x06\x74\x98\xc5\xb3\x86\x2e\xa0\xe4\x5b\xbc\xb8\xda\xf1\xf6\x42\x8c\x1c\xb2\x91\xb6\xe3\xe6\x2d\x30\x3f\x88\xe5\x67\x7a\x5c\xe8\x26\x47\xc6\xee\xc3\x8e\x9b\xb7\xc0\x3c\x73\xd3\x39\xd3\x3c\x11\xf9\x6e\x90\x16\x73\x1c\xcb\x77\x67\xb2\xbf\x64\xdb\xec\xb4\x8c\x43\x69\x19\x47\x16\xfd\x58\xee\x53\x5a\xc6\xa1\x97\xe9\xb3\xcc\xad\x16\xdc\x8a\xc0\x27\xb7\xaa\x76\x30\x32\x1d\x85\xab\xc8\x51\x4e\xf8\x81\x2b\x65\x1a\x45\xfc\x41\x81\x68\x87\x3c\x28\x87\xde\x8e\xcf\x32\xbd\xa1\x6c\x1c\x45\x67\x8f\xe5\xbb\x83\x7c\x37\x8a\xce\x1e\xcb\x71\x87\x64\x1d\xa3\x14\x7d\xef\x7d\x84\x91\xe9\x28\xe2\x03\xcb\xfb\x88\x40\x41\x43\x8f\xc1\xf6\xb8\x1c\x24\x62\xbc\x78\x17\x5e\x8c\x0f\x70\xda\xb1\x35\xe9\xd9\xec\xa3\xa2\x33\xc9\x82\xdc\xd9\xac\x4b\xd1\xfa\x6e\xf3\x3d\xac\x49\x87\x5e\x83\xed\x41\x39\xf0\xa0\xec\xe9\x23\x58\x72\xca\x21\xf5\xfb\xd0\x23\xb1\xd3\x2f\xde\x42\x8e\xcf\xa7\xe0\x63\xf8\x7b\x61\x9e\xbc\xce\x31\x31\x84\xb8\x65\x0d\x21\xce\x8e\x14\xde\x0b\x67\x7d\xed\xa9\x8c\xd8\x3b\xd6\x0f\xda\xb7\x71\x90\x3a\xb1\x9b\x31\x7f\x7d\xb9\x0a\x11\xa9\x27\xed\x4f\x6b\xf5\xf0\x6c\xec\xe4\x58\xb8\xb5\x63\x38\x3a\xa8\x55\xfa\x9a\xcb\x86\xe0\xd4\x13\x52\xac\x93\x25\xde\xc2\xb8\xb0\xd6\xc2\x2a\xbd\xf3\xbd\x9b\xae\x27\x6d\x35\x0b\x45\x27\x4c\x2d\xbb\x39\xf5\xd7\x53\x88\x42\xef\xcf\x79\x6b\x99\x88\x94\x89\x69\x10\x31\xfc\x56\xab\xf1\x76\x45\x3d\x44\x10\xbb\x34\x0e\x25\x50\x1c\xb2\xe6\xb6\x8f\xe2\x90\x8f\xe2\xd0\xb3\x39\x2e\x88\x14\x58\xe8\xa5\x9f\x35\x01\x63\x68\x39\xaa\x56\xfa\xe7\x5b\x07\x22\xd4\xd0\xb3\xb9\x7d\x11\x87\x7c\x11\x47\x15\xe3\xb5\x42\x0f\xa7\xc4\x8b\xd3\x9f\xc7\x1b\x13\x51\x69\xc8\xfa\xdb\x3e\x87\x83\x54\x89\x17\x67\x8e\x1f\x33\xc6\x87\x8d\x59\xb5\x52\x8f\xfb\xff\xc0\x18\xab\xd6\x44\x4e\x85\x43\x4e\x85\x83\xa0\x2c\xc3\xce\x83\xb7\xf0\x80\xff\x45\xe2\xc6\x61\xdf\xc2\x81\x6f\xe1\x1f\xfa\x7e\x24\x20\xe2\x4b\x98\x86\x1e\xc9\xed\x42\x38\x94\x6f\x71\x54\x2d\xb2\x25\x20\x7c\x09\xd3\xd0\xa3\xf7\x79\xbd\x6a\x2f\xc7\x84\x1e\xbd\xcf\xeb\xd9\x20\x74\xcd\x20\xed\xe8\xb0\x0b\xe1\x90\x0b\xe1\xa8\xba\xb2\xbf\xde\xce\x2f\xab\xa9\xc7\x70\xbb\x0a\xde\x02\xbf\xab\x63\xda\xa2\x0e\x09\x13\x2f\xde\x84\x6f\xe3\xac\x9a\xd8\xb2\x45\x9a\x43\x48\x9b\x51\xc5\x7e\x5f\x5f\x57\x5e\x88\x97\xf8\xe0\xd3\xae\x82\xb7\x10\xec\xa5\x05\x15\xcd\x29\x85\xde\x2d\xbc\xe0\x03\x9c\x63\xee\x16\x62\xde\xb0\xea\xbe\xd5\x9f\x71\xbe\x4f\x6a\x07\x2a\x9d\x4a\x70\x38\x5a\x52\x3b\x88\x0a\xb7\x70\x05\x5c\x6e\x73\x13\x07\xc1\x28\x70\x4a\x34\xe3\x48\x34\x53\xf9\x0d\x47\x8b\x5b\xde\xb4\xe7\xdf\x2d\x24\xf0\x25\xbc\x1a\x8f\x53\xb7\x95\x24\x7c\x18\x5f\xe0\x45\xb8\x86\x9b\x58\x46\xac\xc0\xa7\xf3\x18\xde\x42\x4c\x33\xd6\xde\xd3\x1e\x7e\x73\x4a\xd2\xe1\x51\xfd\x56\xfd\x3d\xc4\x8b\x95\xf6\x9c\x8a\x5d\x73\x0b\xb1\x09\x88\xb5\x32\xed\xb1\x37\x95\x98\x70\x60\x8d\x3d\xa7\x62\xd7\xcc\x49\x8c\x9a\xd1\x82\xac\x6e\xb5\x1a\x67\x5c\x43\xdf\x23\xa1\xdc\x02\xfd\x09\xf2\x99\x53\xba\xb2\x29\x4f\xbb\x81\x35\xf6\xad\x4e\xe3\xcc\xc3\xa2\xfd\xe2\xf9\x29\x30\x27\xd2\x8d\xde\xaa\xc6\x5b\xf4\xbb\x22\x9f\xe2\x79\x20\xd7\xfb\xe8\x22\x13\x25\x02\x9c\xf2\xa8\x1b\xfd\xa3\xef\xb7\xdb\xbf\xf4\xdb\xb1\xf1\x9f\x76\x90\x9b\x72\x90\x1b\x5d\x54\x52\xbd\xbc\xa4\x68\x1f\x18\x69\xdf\x6a\x31\x1e\x54\xd5\x45\x26\xd5\xdd\xc7\xa1\x6e\x60\xbc\x3d\xed\x50\x37\x95\x37\x70\x74\x91\x4f\xf5\x34\x87\xd4\xd1\x89\xd4\x33\xa7\x62\xc7\x4c\xf2\x04\xa6\x41\x14\xf0\x5b\xd5\x68\x49\xb9\x3e\x88\xa5\x72\xab\x6e\x86\x55\xe7\xcd\x7c\x92\x15\x90\x42\x03\x57\xfb\xa6\x06\xcc\x20\x07\xaa\xa0\x69\x7f\xba\x5b\xe0\x7b\x51\x4f\x5b\x1a\x16\xe6\x8b\x03\x5b\xec\x5b\x5d\xc6\x63\x36\x5b\x15\x7c\x0c\x33\x9b\x22\x9e\xe6\x45\x41\xd3\x34\x08\xde\x3d\xa7\x02\x9f\xde\x02\x8b\x25\xe2\x69\x26\x1e\xdc\xe6\x06\x4f\xe6\x13\x6f\x39\x0a\xbf\xf8\x59\x16\xa5\x7b\x51\xfa\xd4\xe7\x53\xf8\x31\xce\xec\x88\xa6\xfa\xd2\xcf\x12\xe0\x74\x74\xd1\x94\x92\xf4\xdd\x42\x74\x7f\x7c\xa0\x71\x79\xbb\xdd\x42\x06\x57\xfb\xbb\x1a\x8f\x59\x23\x44\xc9\x9c\xdd\x7b\xb1\x73\x93\x1b\x62\x49\x52\x34\xdd\x42\xd0\xfe\x10\xf1\x0c\xf3\x0c\x14\x4d\x83\x90\x23\x73\x0e\x13\x15\x8a\xa6\x31\x44\x0d\xca\x84\x71\x0b\x03\xbc\x0a\x3f\xc6\x63\xbc\x3c\x99\x4f\x7b\xa9\x4d\x25\xe9\x1b\x43\x3c\x63\xb8\xff\x04\x32\x1d\x84\x16\xb9\x55\xcd\xc3\x50\xff\xb5\xbc\xc3\x54\x15\x91\x4b\xab\x59\xd2\xf0\x6a\x0d\x0d\x4b\xcb\x32\xcd\x62\xe6\x65\x31\xa3\xa8\x97\x92\x03\x6e\xe1\xf7\xdf\x7f\x97\xd2\x8a\xe0\xc7\x30\x93\x2f\x52\x93\xba\x68\xca\x07\x6d\x8c\x01\x8d\x4c\x0f\x6a\xde\x8d\x3e\x30\x91\xb8\xb5\x6a\x98\xb9\x99\xcc\xd9\x74\xdf\x43\xdd\xa3\xcb\xef\x24\xaf\x1f\x85\x1f\x9f\x83\x2f\x6f\x08\x82\x8f\x0e\x5e\xd7\x6f\xb5\x19\x67\xca\x56\x13\xfe\x35\xce\xd4\x8b\xa4\x96\x97\x8a\x20\xa3\x83\xfc\x9a\xb7\x7a\x8c\xc7\xf7\x53\xa4\x23\x0b\xc5\x89\xeb\xda\xc5\xab\xf0\x65\x3c\x66\x81\xf0\x24\xb7\xea\xdf\xe5\x34\x9e\xe2\x6b\xcb\x6b\xb2\x60\xbf\xd8\x8f\x4f\x7b\xa6\x4d\x79\xa6\x8d\x99\x21\x85\xed\xf1\x4a\x68\x98\x3a\xce\xb6\xc7\x2b\xa1\x61\x8a\xf1\x48\xfb\x73\x0b\xb4\x2f\x06\xb6\x7d\x4a\xa3\xfd\x19\xe4\xd7\x9c\x73\x9b\x03\x6c\x8d\xab\xb2\xb5\xb6\xfb\xb9\xd5\xcf\xf6\xf9\xe7\x3b\xd7\x9c\x67\xaa\x39\x94\x3a\x83\x40\xe5\xd3\x2e\x64\xb7\xa0\xe6\xa6\xf0\x63\xfc\xfb\xdf\x7f\xcb\x3d\x7d\xce\x63\x36\x86\x81\xe1\x98\x3a\x1c\x65\x48\x38\x71\x0d\xbb\xf8\x10\xfe\x35\xce\xaa\x89\xbf\x1d\xf3\xb1\x03\x1f\x23\xe8\xce\xb4\x07\xd9\x94\x07\xd9\x98\x3a\x34\x8f\xa9\x0e\x57\xb1\x31\x45\xa4\x0a\x9a\x32\xf1\x0d\xbb\x38\xd4\xf5\x35\xc3\x42\x19\x33\x08\x76\x72\xab\xd5\x78\xbb\xc3\x2a\x43\xf0\x34\x1c\x1b\x72\xae\x2c\x5c\xa7\x05\x21\x3a\xc7\x14\x3f\xfc\x9a\xb8\xbe\x0c\x17\xe3\xf8\x39\x65\x48\x78\x0b\xd1\xcd\xa5\x2b\xd7\xcf\x1b\x9b\x50\x9c\x63\x89\x48\x7f\xe6\x63\xc4\x52\x19\x18\xc1\xdf\xea\x36\xfe\x80\xd3\xfd\x9f\xb7\x36\x96\x84\x63\xe9\x70\xfc\x79\x73\x84\x49\xa1\x9c\xf4\xe7\xfc\xf9\xb0\x8b\x4c\xed\xf2\x95\x9f\xe4\xf0\xa3\x10\xa3\x5a\x22\xd1\x9f\x6f\x6e\x3f\x6e\x6e\x4b\x1c\xe2\xe7\x23\xff\xa7\x51\x55\x46\xf5\x78\x0b\x48\xec\x58\xfa\xd9\xc7\x5c\xf8\x81\x0b\x2f\xb1\x8e\xc7\x34\x85\x3f\xd8\xc0\x64\x7e\xda\x1f\x6c\x4e\x22\x74\x8e\x25\x06\xf7\x78\xb1\xf0\x07\x1b\x4b\x34\xfb\x98\x08\xf1\x07\x1b\x4b\xec\xf3\xf1\x05\x96\x18\x27\x83\x64\x9f\xd3\xfe\x5d\xb7\x40\xff\xc5\x28\x1f\x73\xb8\x70\xf4\x6a\x49\x34\xf8\x78\xb8\x8f\x86\x2b\xfc\xf5\x16\x92\xbc\xb1\x44\x9b\x32\x14\xbc\x05\x16\x45\xb4\xf9\xfa\xc6\xf2\x6a\x11\x27\xc3\x7a\xcd\xe1\x5e\x68\x73\x89\x66\x5f\x0f\xeb\x85\x13\x2c\x71\xd0\xd7\x9c\x40\xf2\xc6\x12\x07\x7d\x7d\x91\x94\xbc\x41\x0e\xd0\xe9\x5c\x81\x13\x3f\xaf\x34\x51\x11\x4c\xbb\x77\xdd\xc2\x00\x57\x3b\xbe\x60\x86\x85\x61\xcb\xda\xea\xaf\x6f\x3e\xd8\x1b\xce\xcf\x1f\xfc\x31\xfe\x82\xc7\xb0\x96\x34\x2b\xb7\xb0\xc0\x27\xb8\xb6\xe2\x22\x32\xc9\xfc\x70\x86\xe3\x04\x46\xe1\x80\x0f\xe1\x8f\xf0\x60\x7c\x13\x8b\xf9\xb9\xa4\x71\x99\xa4\x10\x54\x54\xe2\xb9\x14\xb0\xe4\x16\x68\x06\x71\x60\x7d\x44\xfb\x0b\xf1\x64\x7e\x20\xe6\xa5\x3c\x14\xb7\x50\x03\xaf\xea\x3e\xe6\xa1\x13\x2f\xb2\x8b\xab\x9d\xe3\xf6\x0f\xed\x57\xfd\xee\x71\x37\x35\x0d\x8d\x61\x59\xcc\x59\x88\x33\x13\x45\xc6\xad\x0e\xe3\x13\x7c\x09\xdf\xc2\x17\xfd\xec\x6a\x47\xe7\xc5\x0a\x93\xc4\x8b\x4f\xe1\x1a\x57\x78\xa3\xa5\xf9\x19\x6a\x7f\xbb\xfd\x4d\xfb\x43\xed\xeb\xfc\x52\xaa\xc0\x49\xe0\x93\x69\xe7\xb1\xa9\x54\x81\x13\x93\xf6\x5b\x2d\xc6\xf9\x5d\x58\xde\xca\xee\x7f\x28\x74\x1a\x6f\xb8\xb7\xf6\x0a\x0e\xe9\x67\xa6\x0f\xab\xa5\x08\x9d\xb7\xd0\xc1\xd5\x8c\x8e\x3b\x39\x9b\x4d\x42\xb5\xcf\x95\x3d\xac\xcc\xb0\x08\xd5\x3e\xf1\x3d\xa3\x10\xc4\x9c\x44\x6d\xf9\xb8\xfb\xa1\xa7\x9a\xc4\x31\xb9\x55\xff\x2e\xcb\x88\x45\xfb\x5c\xd2\xb4\xdc\x42\x50\x15\x8f\x53\xb7\xda\x8c\x4f\xf0\x2e\xfc\x31\x1e\xd3\x96\xe0\x79\xab\x88\x27\xe1\x0f\x76\x71\xb5\xa3\x7b\xff\x8a\xc0\x25\x17\x57\x3b\xba\x74\x2d\x2c\x0e\x67\x12\x39\x58\xba\x52\xea\xc2\x49\x8c\xf5\xb9\xca\xf1\xf7\x90\x1b\xa6\xee\xd3\xee\x61\x53\x6e\x60\x53\xcc\x6a\x59\x2c\x22\xc7\x60\x9a\x98\xa8\xdf\x6a\x33\xce\xfc\xc3\x4c\x56\xd5\x49\xb7\x48\xb3\x3e\xd1\x19\xdc\xea\x31\xfe\x03\x6f\xe0\xde\x75\xc4\x25\x99\x59\xeb\x5b\xdd\x7f\x74\x33\x33\x7f\xd4\x4f\xdd\x84\x17\xe9\xd4\x27\xb6\xeb\xb7\xfa\x07\x8f\xf9\xcc\x89\xf6\x9b\x4e\xc0\x85\x1c\x35\x33\x27\xdd\x52\x86\x8a\x49\x72\xc1\x34\x33\xd7\xb4\xd5\x4c\x6f\xc4\x25\x99\xc4\x3d\xb9\xd5\x6d\x9c\xef\xc5\x35\xa4\xb3\x99\x72\x1b\x9b\x59\xeb\xae\xb4\xe9\x13\x3f\xb1\x8b\x4f\xe1\xfe\xdd\x30\x36\x99\x59\xeb\xde\x3c\x2e\xdc\xc6\x66\xae\x7f\x61\xd2\x75\xbf\xf6\xcf\x68\x3a\xc4\x3d\x2c\x97\xad\x90\xcb\xd2\xcc\xe2\x1e\xdd\xcb\x8c\x05\xe0\xc4\xa8\x7d\x3a\xe5\xe0\x94\xf7\xd8\xcc\xe2\x12\x16\xcc\x16\x19\x29\x26\x2f\x97\xb7\xda\x8c\xb3\x3c\x3c\x56\x38\x45\xe1\x54\x8a\xc2\x89\x51\xfb\x5c\x7d\xfb\x77\x61\xba\x59\xe4\x65\xc1\x6c\x61\x01\x38\x33\x67\x9b\x53\x17\x4e\xa5\x2e\x9c\x99\xb3\x0d\x2f\x33\x0a\x2c\x33\x8f\x15\x6b\x78\xfb\x21\x98\x4d\x62\xac\x4f\x32\x16\x52\x88\xe9\xc6\xa8\x7d\x2e\x65\x9e\xb8\x85\x0c\xae\xef\x57\x37\x7e\xc0\x97\x70\x2d\x0f\xb1\x35\x67\x11\x79\x8d\xed\xef\xe1\x8a\x45\x87\xcf\xf0\xb8\x70\x37\x9b\x85\xdb\xfe\x92\xea\x66\xca\xdd\x6c\x4a\x04\x5b\xc3\xeb\x85\x5b\xd9\x2c\x62\x13\xd3\xeb\x35\x59\x2f\x09\x55\x6b\xfa\x30\xc4\x02\x70\x16\x9d\x32\x16\xe5\x48\x4a\x78\x71\xb5\xe3\x75\x9c\xb0\x95\x22\x7a\x98\x66\x2b\x98\xf8\xcd\xd2\x9a\xf0\x63\xfc\x07\x3e\x85\x8b\xdc\x27\xe4\x5e\x44\x27\x53\x57\xa3\x85\x0a\x68\x16\xd1\xc9\xdc\xdb\x38\xf3\xdf\xd5\x7f\x93\x3b\xee\x69\xb3\x88\x4e\xa6\x2e\xb8\x6b\x6a\x1e\x78\x67\x58\x96\xfe\xd6\xd2\x3a\x8a\x0d\x2d\x8f\x0b\x7f\xb3\x59\x90\xf2\xd6\xf2\x3a\xa2\x1a\x9a\xa4\xd6\x9c\xf6\x37\x9b\xf2\x37\x9b\x55\xc7\xc3\x72\xff\x17\xfd\xaf\x5a\xf7\x25\xb9\x63\x21\xe5\xcd\xaa\xe3\x61\xe9\x71\x72\x91\x62\x62\x62\x60\x7e\xab\xee\x0f\xeb\x5b\xc5\x6e\xb6\x4f\x3d\x02\x87\xcc\xaa\xe3\x64\xfb\x18\x40\xd5\x33\x31\x18\xbf\xd5\x6e\xfc\x80\xab\x1d\xd3\xe1\x86\xdd\x13\x0f\x65\xda\x81\x6c\x2a\x87\xe0\xac\x5c\x7d\xd7\xf6\x2d\x85\x60\x99\xb3\xea\x78\xd8\xee\x27\x01\x42\x66\xd5\xba\x6f\xd3\x27\xb6\x7c\x93\xb7\xf0\x69\xc7\xb2\x5b\x88\x7d\x57\x3b\xed\x1f\x09\x1e\xca\x15\x38\x09\x70\x32\xd7\x31\x1d\x1e\xd8\x2b\x6f\xe1\x73\x1d\xaf\xd7\x61\xbd\xaa\xd6\xfd\x98\x9f\x1c\x2e\x71\x55\xfc\x41\x8e\x65\x53\x8e\x65\x93\xc0\x27\x73\x1d\xaf\xe3\x61\x3f\x56\xf1\x8d\xe3\x79\x20\x59\xe0\xac\xa2\x9f\x63\x3a\xc4\xc6\x6f\xd6\xa9\x76\xcc\x67\x42\x60\x94\x46\x7c\xda\x3f\x6d\xca\x3f\x6d\xd6\x65\xfc\x18\xa7\x3b\x3a\xc5\xbe\x3e\x65\x88\xc5\x39\x9b\x4e\xb1\xaf\x4f\x99\x2f\x64\xdb\x74\x8a\x7d\xbd\xec\xa4\x78\x98\x4d\xb7\x97\xaf\xb7\x17\x91\x43\xa6\x9e\xce\xd7\xd7\x6c\x86\x08\x21\x93\x40\x29\xd3\x8e\x68\xb7\xf0\x03\x5f\xc2\xdd\x0e\xe4\xd9\x74\x9b\xfa\x7a\xd9\x89\x1c\x32\xf5\x76\xbe\xbe\x1e\x2f\xa9\x1f\x66\xd3\x5d\xf9\xab\xab\xfb\xfa\x86\xc4\x36\xf5\xa6\xbe\xbe\x66\x57\x44\x1a\x99\x0d\x09\x6f\xfd\xbc\x4d\x71\x68\x9b\x4d\xec\xcd\xf2\xa6\x72\x08\xce\xa6\x53\xef\xe7\xd3\xf6\x07\xf9\xeb\x01\x6b\xfd\x7c\xda\x62\x2b\x38\x9b\xd8\xd5\xcf\xb7\x9d\x1f\xe4\xaf\x37\xf5\xf5\xf3\x6d\xe1\xa7\x79\xd0\xe5\xf7\xe7\xe5\xfd\x69\xbc\x5d\xdf\xfb\xd2\xfd\xd3\xb8\x44\x86\x3f\xb3\x9f\x10\x49\x87\x2f\x11\x16\x44\x71\x5d\xbb\x9f\x1b\xef\xc6\x07\xf8\x10\xbe\x8c\xab\xf9\x25\x5c\xcb\xfe\x68\xb8\x22\x37\x0b\xa2\x8b\xd8\x9d\xb3\xe9\x0e\xfd\xf8\x32\x85\x27\xdb\xd4\xd3\xfc\x7a\x4c\xfd\x04\x20\x99\x4d\xa7\x9d\x05\xd4\xf5\x70\xe9\x20\xb0\xca\xad\xba\x3f\x70\xb1\xae\x53\xf0\xf1\x25\x17\x57\xb6\xd9\x75\x0a\x3e\x96\x55\x08\x40\x32\xb1\x6b\xbf\x55\xf7\x1f\x2e\xd0\x35\x3f\xaf\xb9\x00\xb6\x82\x53\x6f\xf6\x78\xb6\x51\x88\xfe\xeb\x0d\x7e\xbd\x5e\x76\x6c\x08\xa7\xde\xe0\xd7\xeb\x79\x20\xa8\xe6\xec\x22\xc3\xd7\x5c\xe0\x85\x1c\xba\xc8\xea\x35\x39\xbc\x90\x43\xd7\x25\xcb\x92\xeb\x22\x29\xc4\xec\x22\xb7\xd7\xe3\x25\x30\xc9\xc4\x70\xfd\x56\x8b\xf1\x06\xfe\x17\x79\xb2\xef\xd7\xc3\x7f\x16\xbb\x52\x6f\xf7\x38\xd0\x51\x60\xd8\x30\xd7\xad\x38\x27\xb7\x40\x77\x39\x54\xb7\x15\x6f\x5b\x92\x2d\x81\xca\xe7\x56\x9c\x93\x5b\x60\xd8\x5d\xed\x2c\x7f\xaf\x69\x1a\xfa\x5e\xd3\x44\x4e\xc5\x8b\x77\x70\xdd\xb1\xb7\x44\xd5\x0e\xb3\xdc\x8a\xb9\x39\x71\x86\x4b\x93\xb8\x2b\xb7\xea\xf6\x35\xae\xa5\x76\xb4\x3b\xb6\x44\x52\xbd\xd2\xdb\x39\xee\x16\x62\xf9\x09\x24\x7e\xab\xc3\xf8\x02\x6f\xc2\x1f\xe1\x6c\x03\xec\xe3\x6f\xb5\x19\x8f\x6d\x30\x78\xc5\xb2\x17\xdc\xdc\x12\x49\x47\xd2\xf7\x5a\x66\x79\xc1\xcd\x91\xf5\xbb\x1e\x17\x5e\x70\x53\xaf\xf7\xdb\x9a\xb7\x8d\xe6\x6d\x62\xf0\x3e\xb7\x62\x62\x4e\xb2\x33\x5e\x7c\x0a\x5f\xc6\x63\x9e\x47\xfd\x08\x57\x7f\x88\x89\x39\xf5\xaa\xbf\x65\x63\x78\x0b\x0d\x7c\x08\x1f\xc6\x83\xfb\x8d\xa6\x76\x74\x59\x56\xb2\xc6\x39\x44\x27\x59\x87\x18\xee\x70\x69\x0e\x2e\x59\xf6\x82\x9b\x1b\x63\xc1\xa9\x07\x79\x72\x34\x52\x60\xbc\x43\xdf\x8b\x7b\x6f\x8c\x05\xe7\x10\x3d\x64\xaf\x23\xa1\x4c\xa6\x5e\xe4\x9d\xc4\x71\xca\x6b\x6e\x0e\x0e\xcf\x6d\x4d\xa0\xbc\xe6\x26\x81\x5d\x6e\xf5\x18\xff\x81\xd3\x1f\x85\x38\x99\x4a\xfa\x38\xf5\x54\x6f\xaf\xb9\x5b\x60\x9e\x97\xda\x17\xb7\xc7\x7d\xee\xe2\x6a\x7f\xbb\x1d\xcd\x8f\xe8\xad\x78\xdd\xc9\x56\x31\x09\x1c\x33\xed\x4d\x77\x0b\x2f\x38\xeb\x22\xef\xb8\x5b\xe0\xfb\xa4\xef\x4d\x0f\x92\x85\xf5\xb4\xbf\x2d\x0b\x6f\x54\x8d\x93\x88\xe4\xb7\x5a\x8c\x77\xf0\x25\x7c\x1a\x0f\x3a\x9f\xb0\xb9\x6d\x55\x23\xee\x70\x17\x67\x7d\xe5\x05\x37\xe5\x05\x37\x27\x1a\xe9\x6d\x5d\x23\xc9\x20\x2f\xce\x3c\x28\x76\xe7\x2d\xc4\xba\xcc\xaa\xef\x3d\x0f\x78\xc1\x4d\x2c\xea\xe7\x96\xfd\xe2\x54\x36\xc8\x39\x11\x0a\x71\x72\xa3\x10\x74\x35\x45\x6f\x0a\xc5\x72\x0b\x7c\xcf\xa9\x6a\x2f\xb8\x49\x9a\xc7\x34\xa7\xf8\x52\xd3\x9b\xc6\x6e\x9a\x07\x2e\xfb\xbb\x79\x1e\xf0\x82\x9b\x44\x24\xbf\xd5\x61\x3c\xf6\x9d\x1e\xd7\x9d\xc5\x71\xe2\xf7\x76\x71\x7d\xbf\xfd\xbd\xc6\xb5\xfc\xfd\xcf\xf8\x03\xae\xdf\x15\x5b\xdf\x92\x9d\xa7\xe8\xa7\x99\x0f\x34\x8d\x97\xe3\x70\x5b\x38\xde\x84\x62\x99\x8b\x63\x6f\xcb\xde\xf1\x16\xa2\xff\x7a\x5d\x77\x16\xc7\x49\xde\xc6\x8b\x17\xe1\x5f\xe3\xb4\x23\x3a\xe9\xa6\x7f\xec\x20\x27\x21\x66\x6e\xd5\xed\x33\x3f\x4b\x74\xa2\x34\x8e\x73\x77\xd6\x9d\x24\xa3\xb7\x9a\x8d\xf3\x3d\xc7\xde\xee\x9e\x1f\xdc\xe9\xe6\x12\xbf\xea\x9e\x9f\xce\xfc\x10\x62\x66\xee\xee\xf9\x21\xe1\xc5\x5c\xa2\x93\xee\xf9\x91\x90\x4d\x28\xf1\xe9\xf4\x8e\xb7\x40\xfb\xe2\x57\x16\xbe\xc9\xf3\x78\x71\xda\xb7\x90\xbd\x43\xc8\xee\x95\xcb\x97\xbd\xef\x26\x69\x1e\x7b\x15\xf5\x0c\x73\xc9\xa1\x59\x10\xb5\x0d\x53\xc9\x40\x64\x23\xe2\xf8\xad\xbe\xc2\x39\xe4\x97\x4e\xc1\xe1\x59\x18\x70\xc9\x35\xf4\xbd\xa9\x7f\x68\x16\x10\x25\xf6\xf0\x2c\xa0\x43\x9d\x44\xa4\x99\x76\xca\x9b\x72\xbe\x9b\x44\x9e\x99\x76\xbe\x9b\x64\x79\xbc\x38\xc3\x52\xe4\x96\xa9\xe4\x8e\x73\x89\xda\xa6\x57\x11\xb5\xe8\x22\xc2\xcc\xdc\xd3\x5c\x0c\xab\xc9\xf5\xe1\xae\xbf\xa7\x77\x6f\xe4\xf7\xbf\xf8\x14\x7e\x8c\x7f\x03\x4f\xea\x8f\xb9\x3f\x56\x93\xeb\x23\x6e\x35\xcd\xfd\x43\xa1\x7a\xf1\x21\x7c\x18\xa7\x7d\x51\xe1\xf4\x2a\xa2\x60\x5d\x1f\x51\xe1\xf2\x6e\xc7\xbb\x6e\x7d\x74\x6a\x2e\x9f\x82\x6b\xf2\xbd\x4e\x4d\x8b\xd8\xca\xd6\xb8\x3e\xe2\x4a\xcb\xf3\xb0\x34\x0f\xd5\xdf\x7f\x8d\xd3\x0e\xa2\xeb\x5e\x5e\x5f\xbc\xee\xd6\xa7\xfe\x45\xfc\xae\x49\xce\x47\x0a\x74\x17\x55\xf9\x5e\x26\x0b\x8c\x39\x97\xde\xcd\xb7\x22\x83\x4e\x65\x77\x5c\x18\xfa\x4f\x67\x77\xfc\x9f\x8c\x9d\x4b\xce\x27\x2b\x72\xc5\xe7\x5e\x45\xed\xc0\x09\x99\x49\x12\x93\x9a\x78\x6c\xef\x01\xf2\x21\xf5\xa0\xbb\xaf\xae\xfb\xee\xdf\x0a\x7e\xe7\x94\x64\x7b\x52\x83\x52\x91\x47\x7c\xfc\x79\x04\x01\x41\x70\x88\xae\xe8\x8e\xa1\x73\x73\x47\x77\xec\x62\xe5\x85\xce\xcd\x87\xfd\xb2\x8a\xee\x18\x1b\x1e\xca\x31\xac\xec\x61\xeb\x85\xce\xd3\xcd\xd6\xeb\x62\xeb\xc5\x26\x31\x1d\x16\xa3\x65\xf9\x77\xf9\xa4\x86\x0d\xff\x31\xd4\xab\x92\x5e\xbd\x1c\xd3\x89\xe6\x98\x38\xa3\x3c\xbc\xe6\xf1\x02\x68\xf0\xa2\x4c\x77\x10\xc7\x0e\x9b\x2f\x71\x9a\x3b\x3c\xe7\x21\xf1\xc5\x26\xdd\x6a\xc3\x7f\x0c\x75\x8f\xf6\x82\xc3\xdd\x33\xd4\x3d\x58\xbc\x63\xb8\x7b\x86\xba\x27\xa8\xcf\x74\xf7\xf0\xd2\x4c\x6c\x5a\xb3\xed\x07\x1e\xf8\x81\xa3\x68\x8f\x38\xad\x0d\x20\xfd\x85\xce\xe5\x87\xa2\x70\x74\x58\x7e\x25\x4a\x71\x7e\x49\xcb\xba\x76\x9a\x38\xed\xb2\x83\x78\xe0\x20\x0e\xdd\x22\x1b\x73\x38\x3f\xb3\xa6\x68\x0d\x56\xd0\xc7\x2e\x72\x5f\x14\x49\xfb\xed\x35\x8c\xb7\x41\x43\xe7\xf5\x0e\xd6\x98\x89\x07\x5c\xf9\x3d\x8c\x38\x82\xa3\x48\xe7\xde\xde\xb3\x62\xc9\x47\xd1\x1a\x7c\x5b\xa7\xf3\xa4\x4c\x14\x89\xa7\x3d\xbe\xe3\x56\xfd\x25\x9e\xb7\x67\xfd\x32\xdd\x13\x57\x39\xae\xff\xcd\x78\x15\x89\xe1\xed\xf1\xc2\x32\x8f\x22\x31\xb4\x65\x3e\xd6\xdb\x32\x25\x0a\x6e\x1d\x07\x65\xec\xd0\xf6\x4a\xe8\x04\x64\x3c\x5e\xc3\x1e\x8d\x8b\xe4\xe7\xf1\x9e\xf5\x51\xfd\xb5\x06\xdb\x02\x1f\xbc\x1d\x13\x55\x7b\x2f\xbb\x88\xc7\x72\x11\x27\x8e\x9c\xd8\x32\x87\xb6\x97\x78\x08\x3f\x8d\x2f\x39\xa9\x1a\xf7\xc7\x6b\x12\x6f\xcd\x44\x95\xf6\xb3\xef\x58\xc1\x1a\x43\xe7\xfb\x66\xf7\x65\x62\x8d\x63\x95\x3c\xd8\x47\x3c\xf0\x11\x87\xce\xf1\x87\x7d\xc4\x8a\xe2\x18\x55\x5a\xee\xf5\xaa\x04\x8b\x2f\x2a\x1e\x7d\xb3\xf2\x3a\xac\xbc\xa3\x6b\xeb\xfb\x7a\x58\x16\xdd\xee\xe8\xda\xf9\xda\xb5\x0b\x99\xee\xf0\xc6\x45\x0f\x71\x76\xc8\x73\x47\xd7\x5c\xf9\x2c\xfb\xcb\x63\x7b\x84\xba\xf2\xb3\xe8\x2f\xc6\xdc\xe1\x5d\xcb\x67\xc9\x5f\xc6\xee\x41\x04\xf4\x3e\xf5\x18\x66\x26\x6a\xc2\x1c\x40\x4f\x85\xe7\xcf\x44\x5b\x70\x13\xfc\x09\xce\x69\x75\xf0\x68\x5d\x7e\x0d\xc3\x73\xc1\x5d\xf0\x6b\xf8\x4b\x18\xbb\x68\xda\xf5\x39\x97\x61\xa9\x88\x25\xf9\x75\x1a\x5e\x3f\x79\xa8\x26\x1a\x51\x85\x2c\x8c\xca\x6e\x62\xea\xd5\xcc\xae\x90\x85\x21\x57\xc4\xb4\x23\x53\x8c\xb5\x80\xc5\x90\x9f\x8f\x71\xca\xe1\x8c\xc7\xa1\x0c\x33\x71\x2c\x1c\xc5\x3b\xf5\x04\x4b\x26\x90\x0c\x34\xec\xf4\xfd\xce\x89\x95\x19\x95\xa3\x46\x88\x6d\x24\xc8\xdf\x95\x5f\xfb\x8c\x59\x98\x99\x35\x54\x4f\x89\x00\xc1\x0b\x13\x57\x39\xd3\xe5\xd3\xde\x1d\x0d\x68\x26\x5b\x26\x0a\xf8\x25\x7c\x37\x7e\x80\x87\xf0\x66\x7c\xcd\x64\x5e\x74\xef\x8e\x71\xd8\xa1\xba\x25\x4e\xff\xd8\x53\x3a\x2b\x2b\xca\x5e\xf5\xbb\x5a\xa7\x09\x6a\x98\xb8\xf2\xbb\xbd\xeb\x22\x69\x09\x5e\xd2\xe9\x30\xd7\x48\xbc\xe0\xf4\x83\xad\xc0\xb9\xb3\xc0\xed\x1a\x76\x5b\x7b\x93\x07\x2d\x83\xf0\xad\x7d\x2a\x34\x7f\x87\x25\x56\x82\x37\x6d\x3a\x5c\xb1\x95\x40\x23\xf0\x12\x7b\x7e\x9e\xc6\xc9\xaf\x71\xb7\x95\xa6\x60\x83\xb1\x63\xf5\xce\xc3\xfd\xb3\x6e\x80\x26\xae\xfc\x96\x87\x03\x8d\xb6\x63\x85\xcc\x43\x33\x7c\x1e\xac\x34\x7b\x57\x7e\x4b\xf3\xba\xba\xa9\xa7\x59\xfa\xb4\xf1\x33\x97\xf1\xd3\x74\xd0\x3e\x6d\xfb\xcc\xf5\x1e\xa5\x1e\x60\xe9\xa6\x7a\x65\x62\x09\xc9\x1e\xca\xee\x4e\x20\x20\x7d\xec\x2c\xab\xd3\x6e\x40\x38\x5c\x89\xd3\x09\xe7\x74\x39\x08\x9b\xfc\x19\xf3\xf4\x24\x82\xba\x15\xdc\xfc\xef\xb3\x79\x12\xe1\xe7\x0b\xde\x77\xcf\xcf\x66\x3c\xc0\x7f\xe3\xc9\xae\xcc\x2d\x59\x27\x22\x5f\x1c\xdc\xbd\x98\x76\x0f\x12\x9a\xaf\x04\xef\xe6\x74\x87\xe4\xcb\x44\x07\x3f\x85\x0f\xe3\x2f\xb8\xca\xd1\x1e\x79\x72\x9f\x33\xe4\x06\x31\x13\xac\x43\xfd\x4a\xbc\x09\x97\xec\x12\xbd\x20\x0e\x69\x20\xbd\x52\xd9\xc5\x04\x8b\x83\x55\xd7\x4c\xb0\x4c\x50\x3e\xbb\xad\xe9\xfb\x9c\x0a\xc9\x17\x72\x77\x4c\x9b\x2e\x73\x85\x2b\xd0\xcd\xff\xee\x88\x7c\x5d\x11\xf9\x82\x67\xde\xfb\xb4\xd7\x70\x2e\x1b\xe6\xfa\x55\x8a\xf4\xf8\xc4\xa2\x89\x43\x9a\xe9\x72\x6b\x2f\xb5\x56\x9a\xe9\xd2\xb9\x0f\x11\xfb\x12\x57\xf1\x9e\x79\x58\x34\x71\x5c\x2a\x67\xba\x1c\x09\x05\xc7\xcc\xe6\x87\x75\xf8\x61\xd7\x81\x19\x3e\xf5\xca\x48\x17\x3d\x2c\x0e\x09\xba\x7d\x8c\x8a\xeb\x17\xf0\x07\xba\xe3\xfa\x65\x82\x41\xc4\x09\x32\xbb\x15\xcd\xba\x20\x9a\x38\xe5\xdb\x30\x52\xbc\xbf\x38\xa4\xf8\x7c\x5f\x54\x71\xfd\xe2\x94\xec\xda\x30\x9a\xf8\x12\xe3\x94\x82\xf3\x85\x51\xc5\xf5\x0b\xf1\x0a\xa6\x0d\x9d\x29\x43\x47\xce\x8e\xd9\x3d\xe8\x9d\xad\x90\x88\x02\x8e\xeb\x97\x09\x7e\x57\x4b\x60\x77\x3f\x74\xfa\xe1\xd4\x1a\xa8\xe7\x45\x3a\x3c\xb4\x4b\x2e\x22\x87\xfb\xcb\x44\x23\x7b\x08\x57\x37\xf0\xba\x48\x88\x57\x30\xc3\xdd\xb0\x7c\x93\xd7\xa1\x19\xaf\x88\x08\x9d\x28\x80\x99\xfd\x14\xde\x8c\x53\x7b\x36\x18\x44\x05\x5c\x09\x84\xe4\x94\x88\xdb\xee\x99\xb2\x7b\x4e\xa9\x55\xdb\x3d\x22\xb1\x85\x5c\x26\x33\xc6\xaf\x72\x26\x38\x42\x15\x16\x92\x40\xad\xca\x65\x32\x6d\xf7\x4c\xd9\x3d\xa2\x27\xcc\x61\x8d\x32\x90\x12\xd1\x13\xe6\xf0\xe8\x0e\x84\xfc\x94\xd0\x0e\xef\x28\x06\xcb\xe9\x29\x75\xeb\x7b\xa7\x0a\xf7\x17\xf2\x81\xcc\xe1\xfa\x13\xee\x2f\x4e\x49\xa7\x0d\x19\x85\xfb\x0b\xd1\x16\xe6\xb0\xf0\xaf\x58\x07\x25\xe4\x1b\x99\x36\x70\x14\x06\x30\x4e\x49\xad\x3d\x98\x0a\x03\x18\xa2\x2d\x4c\x7b\x30\xe7\x44\x23\xf2\xb6\x4f\x7e\xaa\xfe\x93\x0d\x21\x8f\xc8\xe7\xe7\x69\x7c\x80\x5f\xc2\x6f\xe3\xab\x9e\xf2\x75\x98\x27\x97\x89\x1d\xbc\x09\x77\x39\xac\x00\x22\x16\x4c\xdf\x68\x55\x78\xc0\x68\x52\x79\xd3\xed\xc2\x25\x19\x4d\xcb\xec\xed\xd9\xcb\xeb\x22\xd1\x24\x0f\x36\x58\xe0\xc1\x95\x90\x13\xc2\x61\xfd\x32\xc1\xef\x6a\x7c\x6d\xb0\x10\xd6\x2f\x76\x0d\xe3\xed\xea\x13\xb3\x20\xc4\x37\x80\x3d\x47\x62\x89\x5b\xfb\x95\xdf\x3f\xcb\x70\x89\x58\x30\x6f\x0f\x97\xec\x98\x26\x5d\x65\x3b\x66\xde\x6a\x96\xc4\x41\xd1\x01\x33\x41\x35\xb1\x3f\xa6\x3d\x8f\x8a\x1a\x18\x62\x16\x98\x79\xd7\xc5\xbc\x8b\x26\x71\x78\xac\xe1\x65\xf7\xc8\xc7\x31\x6d\xf7\x4c\x62\x1f\x44\xd3\x02\x6c\x8f\xa4\xa8\x77\xd1\xa4\xc4\x7c\x33\x56\xd4\xbb\xb8\xb4\xd0\xda\x8e\x99\xcb\x8e\x69\xde\x84\xd8\x8c\x81\x61\xa7\xf7\xf6\xf2\x2b\x0c\x8f\x05\x53\xb8\x8d\x95\xa9\xc8\xf2\xea\x83\xd7\x1a\x66\x19\x27\x6d\x97\x5e\xb6\xf7\x0f\xda\x5c\x09\x91\x16\xe6\x6b\xcd\xc0\x03\x22\x71\x49\xdf\xbd\xde\x6b\x10\xfa\xbd\xa8\xe6\xbe\x9d\xaa\x48\x7b\x71\x49\xaf\xbd\x56\x0c\x44\xda\x0b\x5e\xb3\xef\xa6\xc9\x65\xe2\x06\xa7\xf8\x4f\xe7\x43\x13\x27\x5f\x5c\x9c\x03\x99\xf6\xd6\x45\x7b\x8b\x4b\x6b\xf1\xe7\xea\xf3\x5e\x65\x5c\x52\x54\x9f\x7b\x92\xf7\x2a\xe3\xd2\x2a\xfa\xb9\x2b\x79\x99\x23\x44\x66\x98\xbe\x3f\x3a\x3f\xd5\xa7\xb9\x9c\xd7\xf8\x07\x9e\xf5\x0c\xd3\xdb\x42\x91\xf0\x82\x57\xf1\xc3\x91\xea\x02\x1e\x5a\x09\x5e\xbf\x0f\xd8\x68\x24\x28\x7f\x49\x72\x40\x47\x23\x41\xfd\xd7\x5b\x75\xe1\x08\x76\xa1\x08\x76\xc1\x73\x41\xf9\x79\x1a\x6f\x3f\x7f\x9c\xd1\x7e\xe3\x78\x2b\xcc\x72\x0b\xb1\xdc\x02\x9f\x4b\x38\x8e\x5d\x26\xe8\x8d\xa5\xde\xf2\xb3\x1b\x27\x7f\xd0\x6a\x59\x41\x41\x40\x3b\x3d\xdb\x1d\x0e\x57\x97\x09\x65\x0f\x70\xcc\xda\x4c\xac\x41\xe3\xed\xfd\x20\x1a\x1d\x89\x1b\xfc\x12\xfe\x09\xa7\x33\x60\x4d\x44\xaf\xae\x26\xb7\x3c\xb3\x5a\xc2\x6f\xe3\x6b\x1a\xf5\x4a\xe7\x29\x3c\x5c\x74\xae\x67\x06\x8f\x09\xe5\xe7\x61\xfc\x04\xdf\x85\x5f\xc6\x03\x9c\x7a\xea\x1d\x8c\x4c\x2c\x61\x84\xed\x10\x5d\xd7\x33\x33\xb1\x83\x37\xe1\xdd\x38\xe5\x1c\x21\x7c\x1a\xa7\x9c\x93\x7a\xea\x7a\x66\x26\x68\xd7\x79\x0a\x77\x39\xf4\x27\x34\x87\x80\xf3\x46\x82\xfa\xb7\x5d\x78\x18\x27\xbf\x84\x71\xb7\x70\xc9\x08\x82\xcf\x10\x44\x97\x23\xc1\xb8\x5c\x87\x70\x97\xc3\x24\x80\xcf\x10\x66\xcb\x85\xd8\x72\xd1\x25\xa4\x87\x27\x01\xac\xb8\x80\xcf\x90\x9f\x1a\x5f\x42\xaa\x07\x8f\x12\xe5\xa7\xf3\xb3\x3b\xe1\xf5\xfe\xfc\xfc\x95\x9f\xfe\x91\xfc\x88\x16\x17\xfd\x60\x72\x73\x76\x91\x9f\x87\xf1\x06\xae\x7a\x8e\x6e\xfc\x06\x57\x39\xd3\xbf\x8b\x12\xc2\xb5\x92\x9f\xd3\xf8\x07\x4e\xfe\xd3\xed\x3d\x59\x05\x39\xee\x88\xae\xeb\x9f\x21\x1a\x5d\x44\xbd\x84\xbf\xc6\xd7\x06\x5f\xe2\xa9\xe8\x73\x99\xa0\x9a\x7b\x11\xde\x8d\x07\xf8\x29\x7c\x1a\xa7\xfa\xbb\x8a\x77\x37\xf0\x92\x47\xc0\x74\xc8\xcf\x66\x9c\x66\x1d\x2a\x7f\xaa\x3b\x89\x3e\x17\xbc\x26\x14\x5d\x91\xd6\x83\x30\x74\x17\xb7\xc6\xc2\xc1\xe7\x32\xb1\x54\x0d\x0e\x9a\x80\x55\x47\x82\xde\x91\x14\x36\x37\x0b\xc7\x53\xe0\x5a\x09\xd8\x76\x24\x68\x96\xa4\x53\xb7\x38\x03\x9e\x5d\xe2\xfa\xdd\x51\x8d\xef\x59\x9d\xdd\xf0\x61\x98\x62\xae\x22\xfc\x57\x31\xab\x93\xd5\x09\xcd\x32\xde\x90\x71\x1c\x31\xe1\xd0\x73\x21\x32\x5e\x84\x64\xb6\x79\xcc\x9b\xc6\x5c\x32\x2b\x6b\x2c\x13\xc7\xcf\x1f\x81\xdb\x29\x1c\x31\x2e\x14\x31\x2e\xf0\xcf\x44\xbf\xac\x62\x64\x75\x41\x67\xc8\xcf\xd3\x78\xfb\xf9\xa3\x6e\x9b\x44\xf6\xb2\xca\x5b\xdc\xba\xc4\x55\x8e\xab\xb3\xcc\xa8\xba\x6d\x12\xc1\x6e\x15\xb3\xae\x6a\xd6\x6d\x93\x08\x76\xab\xc2\xf5\xfa\x46\xe2\x4d\xf8\x30\x7e\x83\xab\x1c\x37\x6b\x99\x51\x75\xdb\xa4\xf2\x7a\x34\xe3\x0f\xf8\x29\x5c\xb2\xb6\xfc\x4b\x75\xc3\xdf\x92\x9f\xdd\x38\xf9\x0f\xda\xab\x88\x01\x99\x20\xbf\x54\x58\xf7\x3a\xb5\xec\xa9\xc4\x2f\xe1\xd3\x38\xf5\x54\x3f\xcb\x5c\xca\x04\xfd\xd3\x8a\xf0\x66\x9c\xf6\xb6\x53\xf8\x30\x4e\x39\xed\x12\xae\x71\x59\x76\x54\xdd\x36\xa9\xbc\x70\x3f\x2c\x83\x29\xf1\x5d\x78\x37\x1e\xe0\x2a\x27\x6e\xe3\xb4\xf7\x52\x3d\xdd\x3f\xeb\xca\x67\xdd\x36\x89\x55\x58\x35\x2f\x43\x2a\xf1\x43\xf8\x65\x7c\x82\xab\xfc\xe1\xf2\xb3\x3f\xe3\xe8\x2a\x7e\xb8\xfa\x93\xe1\xd2\x82\x1c\xee\xce\x65\x68\x25\xde\x85\xbb\x98\x9c\xd2\x75\xc3\x11\x12\xd0\xfc\x48\x54\xf0\x53\x78\x33\xfe\x80\x77\xe1\x6a\xd6\xa0\xdb\x70\x84\xe4\xe7\x61\xfc\x04\x0f\xe1\x8f\xf1\x25\xb6\x45\xe2\xa9\x57\x20\x03\x42\x60\xe2\x97\x70\x97\x3f\x29\x7f\x57\x3d\x67\x35\xde\xc0\x55\x8e\x55\xd5\x60\x5a\x14\xa9\x36\xc5\x8a\x0b\x18\x7f\x89\x77\xe1\x8f\x71\xfa\x41\x2b\xec\x0c\x69\x87\x65\x77\x25\xbe\x0b\xdf\x8d\xdf\xe0\xf4\x8f\xec\xab\x20\x98\x5c\xdd\x8a\x74\x95\x5e\x75\x0c\x28\x82\x75\x2b\x57\xf9\x9d\x7d\xd7\x74\xf3\x96\x5f\x28\xff\x4c\x3f\xef\x85\x76\x5d\x01\x4d\x5c\xcd\x70\xb3\xa7\x9a\x2d\xe9\xba\xad\x0d\xd6\x8d\xd0\xc4\x4f\xe1\x97\xf1\xfe\xf3\x87\xac\xf4\x20\x12\x1d\x09\x15\xc3\xa8\xdd\x6e\xf5\xcd\x24\x28\x5a\x7f\x6f\x2b\x83\x3b\x2e\x70\xe7\xbf\x8d\xaf\x5e\xe5\x09\xa6\x70\xe8\xb9\x4c\x9c\xe0\xaa\x8e\xf7\x21\xcb\xed\x94\xb8\xca\xb1\xb0\xdf\x28\x0f\x62\x3f\x45\xbf\xad\xbb\xef\x59\xc0\x77\xe1\x87\x71\xca\x2f\x2a\xdf\xdd\xb6\xcc\xb5\xc4\xe9\xb6\xc7\xeb\xf2\x43\xf7\x40\xb3\xc8\xcf\x6e\x9c\xfa\x48\x1a\x1f\x2b\x89\x07\xa5\x58\xb5\x30\xcb\x2c\xcb\xc4\x05\xae\xfc\xde\xdf\xae\x9b\xa4\x75\xab\xc7\x26\x5c\xed\x5a\x4f\xa6\x24\x8e\x54\x3f\x5e\x98\xd7\xab\x93\x75\xab\x5a\x51\x1f\x2f\x61\xeb\xd5\xc9\xc4\x91\xf6\xc7\x4a\xf4\x61\x71\xa8\x52\x96\x8f\xf7\x2d\xcb\xd2\xab\x5b\x95\x52\x7c\xac\x44\x1f\xf5\x83\x8c\x92\xd7\x2b\xf9\x32\x01\x13\xef\xc2\x4f\xe3\x6b\x96\x55\x2d\xa9\xaf\xfb\x67\xb9\xb5\x12\xdf\x85\x4f\xe3\x8c\xbb\x8c\x95\xd7\xb3\xe9\x45\x1b\x54\x29\xc5\xd7\xfd\xf3\xa2\x14\xab\xcc\x8b\xd7\x4b\xf9\x2b\x39\x09\x95\xe3\xf6\xbe\x2c\x1a\xbb\xe4\xea\xf5\x9a\xfd\xa2\xe5\x08\x3b\x1b\xfd\xf5\xb8\xbf\x68\xb9\x5d\x8b\xe7\xe7\xf6\x7e\x68\xb9\xbd\x54\xe1\x87\xf1\x06\x7e\x0a\xd7\xb8\x7f\x68\x39\xc2\xd1\x86\x43\xd8\x65\xe2\x04\xdf\x85\x87\xf1\x09\x7e\x09\xbf\x8d\xa7\xf2\x3e\xb5\x4d\xfe\xbc\xf6\xaf\xb7\x55\xea\xb6\x4b\xc9\x7d\x9e\x16\x1f\xc3\xbb\x6b\xad\xfd\xbc\x4f\xfb\x98\xed\xf8\x34\xc2\x11\xec\x82\x08\x76\x75\x83\x46\x91\x9f\x87\xf1\x01\xde\x85\xdf\xc6\x29\xa7\x29\xbf\xc4\x19\x2e\x63\xdd\x76\xd6\xc2\xd0\x53\x2b\x41\x28\xbb\xc4\x77\xe1\xaf\x71\xca\xa1\x5d\xa1\xa8\xec\x01\x97\x31\x71\xfd\xae\xc4\x3c\x96\x71\xab\xb3\xc6\x30\xc7\x31\x20\x35\xd6\x8d\x67\x8b\xf2\xf3\x13\xce\x6c\xdf\xbb\x8a\x99\x2e\x46\xa3\xce\x9a\x07\x85\x91\x04\xe5\x20\x3d\xe6\x2c\x66\x62\x07\xef\xc2\x4f\xe3\x4b\x9a\x0f\xd6\xc2\x90\x4b\x2f\x77\xf7\x05\x5c\xf9\xdd\x3d\x85\xe6\x1e\xcb\x09\x1c\x51\xdc\xdc\xc2\x1a\x80\xbb\x21\x3f\x9b\xf1\x01\xae\x72\xb4\x66\x13\x20\xaf\x6e\xbc\x4f\x14\xa1\x8b\xa3\x99\x68\xe0\x97\xf0\x61\x7c\x49\x15\xef\x13\x85\x39\x8e\x41\x48\xbc\xc4\x0f\xe1\xa7\xf1\x15\xe5\x41\xcd\xb5\xf1\x4b\x80\xbc\xc6\xf5\xc4\x30\xc5\x31\x62\x3d\x59\xd9\x64\x72\x9b\xc9\x98\x89\x3b\x61\x2c\xeb\x90\x7b\x2e\x08\x93\xa7\xd7\x7b\x23\xaa\x87\x6a\xdd\x0d\xd5\xe3\xbd\xf9\xd5\x0c\x8f\x84\xab\x72\x4f\xd7\x64\x3d\xdb\xd1\xd5\x2f\xb6\x86\x61\x27\x36\x9e\x16\x08\x87\xac\xcb\x44\x5d\x70\x08\xde\x0d\xd3\x7a\x74\xa3\x23\xd9\x05\x9c\xc5\x26\x13\x3c\x76\xcb\xea\xba\xd6\xd9\xb8\x94\x98\x5f\x87\xe1\x33\xe1\x53\xb9\xb5\x0b\x8b\xe5\x2e\x6c\xdd\x65\x8f\x5f\x85\x7c\x0b\x56\x55\x3c\x70\xcb\x59\xd8\x3a\x5a\x37\x76\x37\x73\xa7\x99\x6c\x0d\x42\x1e\xc2\x4c\xac\x0a\xa2\x5b\xe3\xd0\x1a\x1c\xcb\x18\x6e\x5d\x73\xec\xb0\x30\xae\x5b\x9c\xad\xa3\x59\xe3\x90\x06\x82\x00\xd9\xba\x66\x98\xde\xa0\xcc\xc4\xca\xdd\x95\x5b\xc6\x44\xac\xe7\x62\x1a\xcf\x05\x44\x1c\x52\xab\xb1\x9c\x8d\x7a\xc3\x37\xe0\x36\x92\x58\x8d\x0f\xd5\x7b\xbe\x86\xb3\xec\xd8\x90\x08\xdb\xb8\x84\xc8\x6b\xbc\x15\x90\x5f\xaf\x61\x72\xf3\x93\xa7\xeb\xbd\x62\x16\x34\xee\x38\xe6\x57\x33\x1c\x0b\x56\x21\x1e\xb4\x65\xd1\x36\x99\xdb\x71\x7a\xc2\xad\x77\x64\x5a\xd4\xdf\x78\x04\x35\x88\xa0\x47\xe2\x5e\x7f\xa5\xdf\x70\x27\xac\xfb\x9a\x2d\x76\xc3\xce\xcd\x96\xe2\xd0\x30\xc9\xe5\x19\x04\xd2\x4b\x9c\x4e\x6b\xee\x86\xc6\x96\x82\x18\x12\xf9\x79\x19\xef\xe0\xca\x6f\x31\x6d\xe8\x5a\x6d\xe8\x43\xb7\x31\x03\xce\x62\xdd\x0e\x29\xb7\x66\x65\xd2\x58\x2b\x70\x63\xe5\xa7\xba\xa8\xa1\x24\x4f\xf5\x7f\xb3\x4c\x36\xea\x7f\x4a\x89\xb5\xe9\xfa\xcc\x55\x9f\x53\x23\x70\x59\x99\x5c\xac\x21\xa7\x86\xe0\x72\xbb\x2e\xda\xc5\xb3\x59\xf9\xf9\x18\x5f\x4a\x0c\xb7\x57\x98\xda\x98\x89\x1d\x5c\xe5\xc8\xd8\x87\xda\x98\xb8\xca\x91\x7d\x14\x17\xed\xe5\x1d\xac\x80\xe9\x48\xe2\x00\x3f\x85\x37\xe3\xf4\x83\x94\xa4\x1e\x9d\xc9\x44\xfb\xf9\xe3\xbc\x1a\xdd\xd9\xbb\x8a\x59\xde\x45\xc5\x16\x8d\xb0\xf5\x1b\xcb\x9b\x78\xf2\x16\x7b\x44\xf7\xa0\x2c\x62\xe2\xa9\x33\xd4\xe8\x1e\x93\x75\xb7\x52\x91\x45\xc3\xac\xc3\x4c\xac\xf5\x83\xa7\xb7\xf2\x73\x1a\x5f\xeb\xd0\x29\xed\xd1\xad\x24\x3b\x36\x0d\xf4\xa1\x88\xee\x21\x59\x41\xf1\x12\xa7\xee\x36\x4d\x23\xd4\xc5\x98\xac\x11\xee\xe2\x50\x17\xab\xad\xe1\x49\x14\x88\x14\xb4\xa2\x70\xf4\xbb\xfc\x9f\xf2\x39\xbd\x8b\xd0\xf6\x03\xd6\x61\xe2\x2a\x47\xbb\x4e\x68\x86\x75\xc3\x47\x16\x0e\x73\x97\x89\x1b\xbc\x09\x77\x3d\xd9\x96\xe0\x0b\x0b\x87\xbf\xcb\x04\x43\x28\x51\x1e\xae\xff\xa0\xfe\x4d\x9a\xc4\x36\x22\x2c\xc2\xc4\x19\xf2\xe1\xfe\x1c\xd4\xa7\x61\x6b\xc6\xb0\x7e\x5d\xc6\xdf\x75\x72\xa8\x1a\x7a\x0b\x26\x20\x05\xd6\x0d\x97\x57\x7e\x0e\xe3\x13\x9c\xe6\xda\xe4\x0b\x99\x7c\x84\xb9\x88\xb0\xc9\x17\x93\x05\xa6\x49\x32\xa7\x25\x79\x5d\x12\x4c\xfc\x14\xfe\x18\xa7\x9a\x3b\x33\x6e\x5a\xef\x4c\x24\xb6\x69\x45\xb2\x89\x18\xeb\xf1\x98\xc4\x55\xcf\xe9\xfa\x30\xa3\x1b\xc6\x40\x4c\x6b\x24\xd9\x86\x4d\x6b\xd5\x74\x37\x4c\xb6\x3d\xc4\x53\x0e\x47\xad\x0b\xa2\xd6\x25\x1e\xc2\x87\xf1\x35\x8c\xf0\x7d\x22\x6e\xf7\xc3\x7a\x5d\x26\xf1\x53\xf8\x61\x9c\xdf\xc5\x48\x88\xdb\xfd\x70\x33\xa3\x9b\x76\x8b\xb7\x67\xf4\xad\x61\xd4\xae\xf0\xd6\x89\x50\xdc\x4c\x17\x1e\xf1\xca\xcf\x69\x9c\xfa\x74\xe7\x7f\x8d\xd3\x9f\xda\xfe\xdd\xd6\x6c\x37\xdb\xbf\x16\x45\xb8\xdb\x85\x78\x36\xad\x5b\x8f\xc5\xf0\xc1\xc8\xb9\x24\x6e\x8f\xb7\x49\x0f\x27\x45\x97\x36\x44\x8f\x17\xe2\x27\x94\x5f\xe5\xb8\x1f\x1e\xfa\xe1\xc2\x48\x88\xc7\xfd\xf0\x20\x0f\x97\x34\xa4\x8d\x3d\xe2\xdf\x25\x4e\xff\x3f\x56\x1b\x0f\x9a\x0d\xde\x50\x7e\x36\xe3\xd4\x47\x9a\xf3\xf1\xe2\xfd\x60\xfc\x5c\x92\x67\x1b\x7b\xf1\xb0\x2d\xbc\x76\xe3\x8f\xf1\xd5\x6f\x78\xc4\xc2\x34\xc2\x4c\xf0\xbb\xda\x2e\xbe\xde\x8f\xbc\x58\x09\x97\xac\x8a\xd7\xd3\x74\xd1\x05\x2f\x4f\xa3\xd7\x3a\xf2\x45\xcb\x5c\x32\x2a\x6c\xd3\x11\xe8\xae\x6e\x97\x76\x41\xaf\x17\xeb\x97\xdd\xf1\x25\xf1\xb1\xad\x17\xb2\xf5\x2e\x89\xcf\xeb\xad\xd7\xcb\xae\xf9\x92\x16\x7b\x3d\x2d\x5e\xa6\xc5\xa5\x2d\xcf\x6b\xc5\xff\x32\xec\x72\x88\x99\x2d\x18\xb0\x05\x13\xa7\x59\xb6\x01\x43\x36\xe0\x25\xf1\xb1\x0d\x18\x1f\x0b\x9d\x5c\x58\xf1\x79\x01\xff\x58\xc0\x2f\x89\xd5\xe7\x05\xf0\x0b\x95\xa3\xf2\x2d\x26\x1f\xe2\xe0\x0d\xf5\xe7\x0d\xb5\x6c\x43\xef\xa8\x3f\x4f\x97\x8f\x7e\xf0\x96\xfa\xf3\xb0\xaf\xf0\xe6\xad\x4a\x4a\x3e\xcf\x8a\x0f\x69\x90\x0b\xcb\x6c\xc0\x4c\xbc\xe0\x4b\x0a\x1d\x0f\x2f\x60\xf1\x85\x26\xe9\xd0\x45\xcc\x4c\xac\x49\x4a\x1c\xe8\xfc\x0c\xe3\xd4\x92\xe3\xdc\xa1\x57\x35\x83\xc8\x78\x89\xff\xc6\x5b\xa8\x41\xf8\x3c\x12\x4b\x07\xf5\x53\x3f\xa3\x41\x1e\x1b\x73\x9e\xb0\xd2\xe1\x38\x7a\x41\x1c\xbd\xc4\x03\x5c\x9b\x34\xe2\xe5\xd5\x4d\x5b\x6c\xc7\xcb\xcb\xc4\x00\x57\xab\xa7\xcb\x61\xf0\xe5\xc8\x1a\x36\x05\x47\x61\x90\x09\x43\x1d\xe6\x0a\x06\x81\xf4\x12\xef\xc2\x3f\xe1\x0c\x32\x51\x34\xc2\x5c\xc1\x20\x90\x5e\xe2\x97\xf0\xdb\xf8\x9a\xf3\xdc\xc0\xcd\x4f\x97\xc3\x81\x87\xb6\xda\x43\xb7\x3b\x33\x71\x80\x37\xe1\xdd\x38\xed\x42\xb8\x46\xd1\xd2\x3c\x0a\x6b\x46\x60\xb2\x0e\xdb\x76\x63\xd9\x76\x57\xd1\x68\xda\x88\x83\xfa\xa7\x97\xe1\x63\xd8\xdd\x39\x56\x0c\xf4\x8b\xc7\x5c\x02\x1e\x20\x89\xc5\x46\xc7\x44\x32\x1f\x30\x13\x2d\x61\x0d\x61\x95\xd5\x3e\x2a\xbb\x1c\x6d\xe5\x4d\x13\x0c\x82\xe5\x05\x31\xee\x62\x28\xa4\x40\x10\x34\x2f\xb3\xab\x74\xc9\x2d\x2c\xc1\xba\xc5\xaf\xfc\x8f\xf1\x0f\x7c\x4d\xa3\xb1\x7b\x04\x77\x56\x35\x02\x74\xe4\x67\x18\xa7\x3a\xec\xe3\xc7\xee\x11\xdc\x39\xc2\x91\x2f\xcc\xb1\xf5\x82\xd8\x7a\x8a\xf1\x15\x26\x09\x06\x24\xc1\xba\x71\x8b\x38\x3f\x5d\x3c\x0f\x5c\x6a\xbc\x77\x8f\xf7\xce\x78\x87\x7a\xd8\x8e\x57\xc8\x82\x89\x2b\xbf\x26\x35\x11\xf7\x42\xa7\xe3\x0e\xac\x17\x04\xd6\xab\x5b\x68\x3a\xe8\xf2\x69\x40\x11\x4c\x9c\x91\xb2\x7f\x95\xc8\x78\x75\xe3\x29\xb0\x70\x40\xbc\x80\x13\x98\x78\x17\xfe\x1a\xa7\x33\x25\xf6\x87\xb5\xc0\xa1\xd6\x5e\x2a\xc7\xad\x3d\xd8\x31\x86\xa6\xc3\xe1\xe6\x1e\x6a\x6e\xdf\x84\xab\x93\x0f\xb4\x03\x24\xa6\x30\x75\x30\x88\x98\x97\xb8\xca\xb7\xec\x1c\x92\x9d\x50\x39\xc3\xe5\xa0\xdc\x78\x0b\x2c\x3f\x5d\x4f\xa6\x7f\x68\x3a\x1c\x32\xc6\xc6\x72\xcc\xd6\xb2\x69\x3a\xd8\x1f\x0b\x87\x30\xf1\x4b\x78\x33\x7e\x2d\x5c\x32\xab\xeb\xb3\x41\x84\xbd\xe0\x55\xa5\xfc\x92\x0c\xae\x68\xee\x99\x9d\x61\xb1\x3f\x96\x40\x7a\x89\x2b\xbf\xbb\x61\x19\xa8\xb5\xc8\x07\x67\x46\x61\x10\x40\xef\xd4\x86\x6b\xd8\x94\x1c\xe7\x3a\xad\x2d\x3c\x05\x16\x8e\x93\x17\xc4\xc9\x4b\x9c\x62\x44\xec\xcb\x44\xc9\x62\xd8\x57\x0d\xbb\x57\xe1\xf5\x9d\x4d\x63\xd5\x3c\xf7\x97\x7f\x34\x4b\xa1\x92\x36\x24\xe1\xf1\xd5\xb2\x69\x3e\x37\x8f\xc9\x7a\x14\x27\xf1\x2a\x5c\x8d\x5a\x8e\xd3\xc4\x19\x93\x66\xd9\x5c\x7e\xd1\xc4\xf9\xdd\xcb\xb5\xc7\x30\x2c\x72\xa8\x39\xba\x5d\xc0\xb4\xab\x65\xe3\x6c\x62\xd8\xd0\x83\x39\x57\xcb\x26\x95\x79\x59\x8f\x5c\xfc\x2e\xc1\xa7\x63\x28\x94\x7a\x10\xb6\x2e\x71\x7a\xc7\x0e\x50\x98\x73\xb5\x14\x29\x98\xee\x31\xc7\xd1\x59\xa0\xe6\xc4\xe8\xee\xcd\x65\xf4\x25\xae\xfc\xda\xce\x11\x7f\xae\x16\x79\x98\xe0\xd5\xad\xc4\x52\xc9\x05\x6a\x4e\x0c\x3b\x34\xc7\xf2\x60\xd6\x22\xcf\xd0\xe8\x5e\x9a\x16\xd1\xad\x96\x82\xd7\x7b\x84\x2c\xd2\xb1\x1c\x97\xc1\xcb\x4c\xf9\xd5\x0c\x07\xd9\x9b\xf0\x69\x9c\xea\xab\x3b\xc3\xd5\xc7\x3f\x59\xe4\x29\x72\x14\xb9\x80\x08\x97\x78\x08\xbf\x8d\xd3\x6d\x6c\x93\x86\x9e\xa4\xc9\x44\x01\x3f\x84\xbb\x3e\x83\x72\xa4\xf1\xc2\xfa\x7a\x11\xd9\xda\xc6\x79\x94\x79\x69\x99\x28\x09\x4b\x31\x0c\xcf\xa0\xc5\x43\xab\xa5\x68\x42\x0f\x1d\x03\x11\x35\xae\x41\x0f\x8b\x61\xef\xe1\x18\x1a\x13\xfc\x4d\xa6\x9f\x05\xf4\xb3\xb6\x49\x5d\x0c\xcf\xb7\x75\xc9\xb3\x6d\x5a\x54\x87\xb5\xce\x7a\x5b\xb4\x6d\xfe\x4d\x0b\xf8\xba\xca\x59\x8b\x9c\x53\xc3\x2e\x45\x38\x69\x89\xeb\x47\xbd\x02\xe1\x52\x2c\x72\x36\x8d\xe9\x01\x9c\x08\x1a\xf1\x41\x02\x6a\x19\x89\x01\xde\x85\x4f\xe3\x77\xee\xa3\x8f\x53\xf0\x63\x98\xea\x54\x15\x6f\xdd\x3b\x43\xf8\xef\xdc\xd8\x22\xda\x1c\x09\x5a\x21\xb1\x9d\xd6\x3d\x13\xb1\xb5\xbc\xd9\xca\x24\x8c\x5c\x2d\x55\x1b\x3d\x5b\x93\x63\xaa\xd5\x5a\x8a\x6e\x0f\xf0\x8d\x4a\x95\xcb\x69\xe8\xed\x99\x4c\xf0\xbb\x12\x73\xbb\x14\x09\x28\x97\xb8\xca\xb1\xdc\x62\x65\x16\xb9\x9c\x86\xad\xcc\x71\x23\xb7\x72\x39\x8d\xdb\x43\x7f\xab\x3b\x2e\xfd\xae\xe5\xf6\x46\x6e\xab\xe4\xf9\xf6\x0a\x8b\xeb\xb0\xc8\xb5\x34\x6c\x35\x42\x51\xab\xa5\x4a\xcd\xdc\x1e\xe5\x5b\xed\xd5\xd2\xa2\x1b\x9a\x99\x58\xf5\x97\x6b\x69\x3c\x96\x5c\x5c\x81\x85\x68\x20\x31\xec\x0a\x1c\xb8\x02\xcb\xce\xf6\x7e\x3c\xae\xff\x83\xd4\xed\x45\xe5\xb8\xff\xd7\xcd\xcd\x5a\xf6\xdd\xb8\xcb\x59\x4b\x5d\xd9\x35\x5e\x8f\x17\x0b\xac\xba\xb2\x6b\x8b\xf7\xba\xff\xd7\x75\xcd\x5a\x76\xa9\xf3\xd7\xab\xc2\x4b\x7f\xee\xda\x31\xbf\xae\xcf\x0a\x82\x90\x78\x17\xae\xb9\xf4\x32\xdf\xe5\xfb\x19\xaf\xd5\xff\xab\xdf\xd5\xd2\xfe\x59\xdd\xe2\x32\x2b\xbb\xfa\xed\xb3\xb4\x7f\xf4\x0f\x31\x94\xf3\xf3\x32\xbe\xfa\xff\x28\xc6\xa5\xe6\xd7\xc5\xcc\x5a\xbc\x5f\xb4\x6f\x8c\x80\x6b\x89\x1f\xc2\x87\xf1\xdc\x41\x5d\x52\x4b\x9f\x3c\xc6\x44\x58\xcb\xec\xc2\xad\x9d\x3f\xba\xf9\xe0\x70\x67\x7c\xee\xe6\x75\x7d\x33\xf1\x55\xfc\xb4\x2b\x6d\x6e\xec\x10\x0e\xa6\xc5\x54\xb8\xf1\x4c\x90\x1f\xcf\xf9\xb4\x79\x35\x71\xa5\x15\x79\x21\x4c\x74\x0b\xa8\x6d\x89\x5f\xe0\xda\x63\xcf\x65\x19\xd5\x72\x70\x76\x37\xed\x1a\x9b\x1b\xab\x32\x2f\x53\x85\x29\x70\x41\x84\xb5\xc4\x55\xfe\xf0\xef\xb2\x3a\x42\xca\x08\xe2\xac\x91\x58\xe2\xc0\x0b\x54\x31\x6d\xf8\x10\x79\x2d\xf1\x4b\x78\x33\xce\xef\x72\x46\x67\xba\x5b\xc0\x63\x4b\x5c\xe5\x48\x3b\xcd\x82\xf8\xe8\xb8\x19\xd6\x1a\x89\x06\x1e\xc2\xbb\x71\xf2\xa3\x2c\xa7\x7d\x60\xd0\xd4\x6a\xd1\xf1\xf1\x54\x48\xf0\x20\xf2\x5a\x2d\x3a\x0e\x36\x1d\x2d\xa0\xa3\x25\xde\x84\x9f\xc6\xfb\xcf\x1f\x8a\x66\x90\x5f\x61\x78\x90\xbd\x83\x4b\xfb\xcc\xf5\x9e\xa7\x82\x19\xc4\xac\x1e\xad\xc5\x56\xbb\x20\x11\xe4\x57\x33\xbc\xe6\xc4\x79\x18\x1f\xc6\xe7\xca\x7e\x0a\x56\x9b\x96\x93\xec\x3a\x35\x24\xb6\x9f\x88\xd9\x76\xc9\xd2\x30\xa1\x2d\x20\xb4\x5d\x27\xc7\x13\x53\x2f\x7f\x66\xe2\x4a\x18\x35\xe5\xc8\x6b\xa1\x08\x6b\xd0\x07\xf2\xcb\x3f\xc9\xec\x3c\xd9\xb4\x4d\x5b\x49\x84\x60\x4b\xfc\x10\x7e\x18\xcf\xd2\x79\x89\x29\xbf\xba\x61\x1a\x2a\x69\xdd\x2d\x05\xcb\x78\x52\x4c\x85\xfc\x2a\x86\x55\x7a\x08\xdf\x8d\x67\x37\xb6\xa2\x1f\xd5\xd4\x87\x8a\xa7\x90\x0a\xe1\xb0\x6e\x41\x58\xb7\x5a\x4e\x34\xd4\xb4\x4d\x35\x97\x4d\x75\x35\x14\xc2\xdc\x2d\x61\x3b\x0a\xdf\x43\x6d\x53\x6b\xee\xec\x73\x89\xfa\x1c\x73\xf7\x8c\x5a\x2e\xbc\xc4\xf5\xb3\x9e\x51\x3b\xfb\x5c\xcb\xc0\xee\xf1\xd8\x27\x8d\xd2\x0c\xdc\xa7\x6b\xaf\x2e\x66\x43\x65\x02\x60\x26\xd6\xc2\x07\x33\x24\x3f\x55\xfe\xc1\xc6\xec\x64\xfb\x31\x0f\x0b\x13\x36\x55\xe1\xb5\xab\x98\x87\xdb\x75\xa0\x11\x60\x7a\xe4\xe7\x61\xfc\x04\x77\xfe\x30\xfe\x82\xab\x3e\xd2\x74\xf3\x60\x81\xe3\x55\xab\xfc\xbc\x8d\x93\x9f\xe3\xea\x69\x1b\x69\x9e\xeb\x58\xb4\xe8\xb8\x7a\x9e\x9e\x69\x32\x7a\x1a\x0b\xcd\x3c\x3d\x47\x64\xf4\x34\x89\x94\x7d\x74\xc4\x8f\xab\x45\xd6\xcd\x54\x8c\x87\x20\x4e\x5c\xe2\xca\xef\x7e\x3e\x55\x7f\x4d\xb6\xd3\x82\xbf\x1c\x72\x89\xab\x9e\xd3\xf5\xa1\xff\x9b\xa6\x95\x6f\xa1\x42\x2a\xac\x05\xca\x45\x38\x3c\x5c\xc0\x0e\x4c\x9c\x76\x35\xd7\x1f\x87\x5b\xb9\x24\xcc\x8a\x1a\x1e\x53\x76\xd2\x55\x7e\xc7\x9b\x38\x6d\x46\xcd\x86\x78\xe9\x14\x97\xe0\x70\x24\x5e\x70\x9a\xe1\x6b\xa7\xb3\xb1\x10\x11\xbb\x21\x1c\x3d\x2e\x13\x03\xfc\x10\xfe\x18\x5f\xcd\xbe\x34\x0c\x97\x15\xde\x45\xf3\x08\x77\x9c\x9f\x87\xf1\xd5\x1d\x97\xe6\xe4\xe5\xe6\x5d\x6a\x9e\xa6\x8d\xde\x2f\x09\x58\x7d\xb5\xc8\x33\x66\x56\x5f\x26\xd6\x30\xe8\x38\x75\x5e\xd3\xe5\xa3\xb0\xe5\x1b\x9b\xbe\x8f\x0a\xad\x2f\x71\xba\xb5\x7b\x78\xfa\x3a\x51\x2b\x62\x0a\x98\xbe\x17\xb3\x33\x3d\xba\x16\x10\xdf\x2f\x9d\x1d\x5d\xdb\x8b\xf2\x7b\x01\xe9\x78\x6d\x35\x8b\x6d\x5d\xcd\xe5\x33\x6b\xba\xc4\x6b\xd2\x5d\x40\xba\xab\xa5\x6b\x54\x7c\x5b\x14\x72\x5d\xd3\xb9\xc5\xb4\xd1\x35\x97\xd1\xd5\x42\x6d\xb2\xcd\x35\x97\xcd\xd5\x42\x4d\xf2\x95\xd0\x29\x93\x4b\x47\xac\xe6\xca\x65\x62\x65\x0f\x95\xa2\x1d\x15\x14\xba\x5a\x44\x1e\x98\xb6\xac\x66\xd0\x22\xc9\xa7\x6f\x72\x4e\xbc\x6e\xa5\x6b\x3e\xea\xe5\x90\x20\xdc\x5b\x2d\xba\xd0\xe0\xb0\x6e\x41\x58\xb7\xc4\x9b\xf0\xdd\x78\x03\xef\xc2\x2f\xe3\xb9\x52\x7a\x1a\x0d\xaf\x94\x83\x95\x52\x37\x20\xe6\xd0\x89\xe2\x1c\x6c\x00\x74\x05\x62\xda\x44\x9b\x03\x39\xeb\xec\xf7\xe7\x90\xdd\x39\x07\x1b\x03\x51\x0d\xe0\xdf\x91\xa0\xd3\xb4\xe1\x19\x96\xbf\xc1\xfc\x11\xa5\x60\x0e\xcf\x1f\x59\x69\xa2\x14\x98\x70\x17\x30\xec\x6a\x11\xa5\x60\x0e\x77\xcf\x40\x2e\x75\xe5\x01\xfe\x1d\x09\xda\xa5\x41\xb4\x55\x37\xd7\xcb\x21\x97\xb5\xcf\x74\x6f\xe2\x34\x2c\x3a\xb8\x9d\xd3\xd3\x6d\x76\xaa\x29\x6d\x6e\x67\x22\xf1\xe9\x12\xa7\x59\xd3\x32\x32\xd9\xfe\xea\x80\xd6\xbc\xbd\x4c\x5c\xe0\x87\xf0\x30\x3e\xc0\x2f\xe1\xd3\xf8\x5a\x04\xb5\x8d\x9b\x5e\xec\x26\xbd\x19\x58\x19\xd3\xbe\x44\x02\xe0\x25\xae\x66\xb9\xd7\xf0\x25\x16\x11\x19\xe6\xb4\xd6\x99\x58\x19\x3a\x75\x9d\xd3\xf3\x67\x99\x81\xed\x92\xac\xd9\xf8\x23\xf4\x5d\x66\xa7\x3a\xb7\x37\x02\x32\xe6\x42\xbb\xb2\xdb\x33\xe2\x66\x4d\x10\xd1\x60\xfa\x1e\x28\x3c\xbd\xc4\xbb\xf0\xc7\x38\xd5\xd7\xfe\xc3\xf7\x3d\xe7\xad\x6a\x4a\xa9\xd9\x68\x9b\xf7\x1a\x44\x79\xf4\xcc\xc2\xcb\x04\x9d\x7f\x19\x3f\x8d\x07\xf8\x21\xfc\x36\xce\xcf\x6a\x69\xb7\x2d\x37\xf1\xe8\x15\xeb\x85\xc7\xcd\x7a\x58\x02\xad\x18\xf4\x2a\x49\xc0\xce\x4b\x5c\xe5\x78\x09\x7f\x58\xc2\x43\x3a\xf0\xb1\xec\x3f\x2c\x8d\xa1\xcd\xb5\xaf\x7b\x42\xeb\x4b\x9c\xee\x79\xbc\x04\x62\x13\x56\x71\x04\xa6\x6d\xc2\xb9\x9e\x21\x49\x9c\xfa\xbc\xd6\x76\x8b\xd0\x57\xeb\xa6\x8d\x98\xaf\x75\xce\xe5\xe9\xbb\x74\xa5\x62\xbe\xb6\x61\x16\xd1\x2f\xb3\x33\x8a\x76\x00\x12\x5f\x2f\xf1\x2e\xbc\x19\xef\x0b\xd7\xde\xfd\x75\x37\xac\x18\xe3\x89\xeb\x67\x6d\xf3\xe0\xe9\xab\xa2\x20\x4c\xdf\xde\x84\xf3\x57\x2b\xd1\x87\x47\x97\x0d\x36\x3a\xce\x9b\xd8\xd6\xce\x61\x38\xc4\xda\xe8\x05\x9c\x13\xbb\xd1\xab\xf1\x2a\x7c\x75\xf3\xe8\xbb\x71\x76\x6e\x51\xd7\xe9\xf9\x30\x3b\x69\xc0\xe2\xa9\xc1\xad\xce\x61\x16\xcf\xe8\xa7\xf0\xce\xef\x36\xe3\x2c\xc5\xa2\xf5\x8f\x7e\x19\x67\xe9\x8b\xb3\xf0\xbb\xdd\x78\x17\x7e\xf1\xbb\x61\x9c\x7b\x12\xc1\xce\x6a\x38\xd6\xce\xd0\xdd\xf5\xb8\x36\x7e\x77\x1a\x9f\xc2\x1b\xbf\x7b\x1b\xe7\xc8\x22\xb8\x28\x37\xfa\x63\xfc\x11\x1e\xfc\xee\x6b\x1c\x13\x5e\xfc\x9b\xe1\xdb\xb0\x83\xeb\xa4\xbb\x28\x23\xc3\xd7\x49\x07\xb1\x1f\xf6\x6d\x5b\x3b\xdb\xe1\x7b\x94\x83\x58\x0b\xfb\x56\xd6\x52\x31\x7c\x0f\x71\x70\xc3\x70\xdf\x38\x10\x1b\x21\x63\x6b\x44\x25\x7f\x5d\xc7\xea\x23\x3c\x2e\xb1\xe7\x0a\xb5\x6f\xf5\xfa\x3f\x27\x5c\xf5\xfa\x7f\x1b\xae\x37\x44\x47\x7d\x63\x49\x23\x26\xda\xeb\xb7\x6b\x5f\xdc\xd2\xdc\x30\x79\x43\xb1\x0a\x5f\x9e\x56\x2d\x22\x8d\xbc\x43\x17\x5c\x5f\xb9\x05\xeb\xb6\xdc\x32\xaf\xdd\x82\xaf\xdc\x70\x95\x03\xc6\x6f\x68\xb3\x92\x09\xf2\xaf\x9e\xfe\x46\xc7\xd0\xc9\x04\xf9\x97\xde\xcb\xcf\x4f\xf8\xb2\x51\x2a\x67\xee\xf9\xe9\xfc\x2a\xff\x50\x39\xd4\xf3\xe3\x11\xb6\xc4\x73\x04\xbe\xe9\xf2\xd9\x15\x21\x3f\xf9\x71\x19\xed\x6e\xeb\x37\x15\xc8\x2a\x13\xc7\xcf\x1f\xdc\xa5\xc9\x8f\xd3\x68\x96\xd0\x8d\xba\x84\xb9\x4a\x50\xb9\x2c\x95\x1f\x7b\x29\x6e\xfb\x7c\xde\x4a\x7d\x6c\xa5\x08\xbf\x97\x1f\x8f\xd1\x37\xf3\x52\x82\xb6\x57\x1f\xa1\x73\xb1\x84\xbe\xa9\xa7\xdb\x3e\x36\x4e\x65\x23\x04\xca\xc7\xf6\x89\xc4\xb5\xf0\xdd\xb8\xf3\x2f\x96\xde\xc6\x93\x6e\xdf\xd4\x2b\xe8\x9f\xde\x10\x10\x65\xe8\x73\x9c\xd6\x8f\x38\xad\xb5\x55\xa1\x6a\x39\xb3\xa3\x51\x43\xcd\x8d\x0f\x5d\xcd\x63\x33\x9f\xc9\xc0\x9f\xc8\xc0\xad\xff\x6f\x39\xcc\x8f\xbf\x8f\x3f\xfe\xed\x3f\xfe\x73\xfc\xf1\x5f\xe3\xef\xef\x8f\xfb\xaf\x3f\xff\x7c\xff\xf1\xaf\xe7\x6f\xf7\xbf\x7e\xfc\x7b\xa2\x3f\x9e\xf7\xfb\xdb\x3f\xde\x3f\xdf\xff\xfe\xe7\x5f\x7f\xde\xef\x8f\x3f\xfe\xf9\x47\xfe\xd5\xfa\xf7\x3f\x01\x00\x00\xff\xff\x4b\x56\x88\x06\x41\x98\x03\x00"); +var _bdac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4d\x6b\xdb\x4c\x14\x85\xf7\xf3\x2b\x66\x99\x77\x91\xd7\xf7\xce\xb7\x40\x18\x4a\x42\xc0\x94\xb4\xa5\xe9\x17\x94\x2e\x64\x69\x64\x04\xb5\x24\x64\x79\x91\x7f\x5f\xee\x1c\xc5\x85\x1a\x8c\xec\x47\x33\x3a\xd2\x73\x34\xb3\x7b\x38\x3c\x1e\xc6\x61\xd5\xbb\x4f\xcb\xd4\xbe\xe4\x55\xf7\xc3\xd8\x2d\xf9\x32\x5d\x97\x36\xeb\x63\x3e\x0d\xa3\x52\x6c\x74\x37\xb4\xeb\xdb\xdf\x72\x68\xcf\xcd\xac\x94\xcc\x7f\x79\xbd\xac\xf9\x7c\x18\xfb\x49\x5b\x8c\xeb\xae\xf3\x36\x56\xeb\xdd\xe7\x7c\x1a\x2e\xeb\xf2\xaa\xef\xde\x75\xd3\x31\xff\xa7\xbb\xdc\x0b\xff\xb8\x74\x79\x19\xc6\x93\xbe\x7b\x3f\x2d\xb9\xe1\xdb\x89\x97\xeb\x3c\xff\xce\xe7\x3c\xae\x9a\x0a\xcb\x63\x57\x8e\x6a\xf7\xf0\xdc\xcc\x1f\x9a\x73\xd6\xbb\x72\xad\x7b\xcc\xbc\xc7\xb0\x72\xf6\x5b\x5e\x2e\xc3\x34\xea\xea\x7f\xa2\xf0\x17\x7f\x79\x9d\xb3\xe6\xed\x2a\x3f\xbe\x1e\x1e\xf5\x4f\xd6\x4c\xda\x78\x47\xe9\xd7\xc6\xbf\x3f\x4f\x5d\xde\x32\xcb\x93\x3d\x4c\xd7\x71\xd5\x95\xb5\x16\x8c\xf1\x54\xed\xd4\xe5\xcb\xdc\xb4\x79\x69\xc6\x53\x56\x5a\xd7\x44\x44\x7b\x5d\x1b\xf7\xf4\xb4\x97\xdb\xfd\x67\x84\xb2\x71\x9b\x39\x74\x20\x6f\x33\x88\xfa\x7e\xaf\xe5\x43\xaa\x26\x06\x63\x30\xe3\x83\xaa\xc9\x80\x19\x30\xcf\x46\xd5\x64\xc1\x2c\x58\x0c\x49\xd5\xe4\xc0\x5c\x61\x4c\xc6\xa9\x9a\x3c\x98\x07\x33\x49\x32\x02\x58\x00\xf3\x56\x32\x22\x58\x04\x8b\x95\x64\x24\xb0\x54\x98\x21\x27\x19\x15\x58\x05\x66\x49\x32\x1a\xb0\x06\xcc\x07\xc9\x38\x82\x1d\xc1\x12\x4b\x46\x0b\xd6\x16\x66\x29\x4a\x46\x07\xd6\x81\x59\x23\x19\x19\x2c\x83\xf9\x24\x19\x3d\x58\x0f\x96\x1c\xa9\x9a\xe1\x8f\xe1\xcf\x51\x15\x54\xcd\xf0\xc7\xf0\xe7\xac\x37\xaa\x66\xf8\x63\xf8\x73\x81\x92\xaa\x19\xfe\x18\xfe\x5c\x0a\x4e\xd5\x0c\x7f\x0c\x7f\x9e\x8d\x64\xc0\x1f\xc3\x9f\xb7\x51\x32\xe0\x8f\xe1\xcf\x07\x2b\x19\xf0\xc7\xf0\xe7\x53\x92\x0c\xf8\x63\xf8\x0b\xec\x24\x03\xfe\x18\xfe\x82\x23\xc9\x80\x3f\x86\xbf\x10\xa4\x73\x86\x3f\x86\xbf\x50\x49\xe7\x0c\x7f\x0c\x7f\x91\xa5\x73\x86\x3f\x86\xbf\xe8\xa4\x73\x86\x3f\x86\xbf\x18\xa4\x73\x86\x3f\x86\xbf\x58\x49\xe7\x66\x7b\x63\xe1\x2f\xb1\x74\x6e\xe0\xcf\xc0\x5f\x72\xd2\xb9\x81\x3f\x03\x7f\x29\x4a\xe7\x06\xfe\x0c\xfc\xa5\x4a\x3a\x37\x6e\x5b\x01\xd1\xed\xb5\xae\x0c\x87\xb2\x0e\xde\xde\x77\xf9\x2d\x1b\xc6\x6d\x01\xb7\xd7\x65\xc9\xe3\x5a\xb6\x8b\xb2\x42\x65\x85\x0d\x63\xbe\x6d\x3d\xf3\x34\xcb\xac\xf2\xfd\x13\x00\x00\xff\xff\x1d\x46\xc4\xed\xa6\x04\x00\x00"); +func _bdeed ()([]byte ,error ){return _gb (_ggecf ,"UniKS-UTF32-H")};func _cag ()(*asset ,error ){_dbg ,_afa :=_dgf ();if _afa !=nil {return nil ,_afa ;};_ccb :=bindataFileInfo {_ee :"Adobe-CNS1-UCS2",_ffd :264249,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490554,0)}; +_fcc :=&asset {_da :_dbg ,_dc :_ccb };return _fcc ,nil ;};var _abe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xef\x2f\x3b\x92\xa7\xb5\xaf\x57\x71\x96\xc3\x62\xa8\x74\x66\xda\x8e\x90\xae\xae\xc4\xf4\xf4\x0c\x2d\x34\x80\x68\x1a\x90\x10\x8b\xb4\x9d\xd9\x2a\x89\xbe\x55\xaa\xaa\x5e\xf4\xbb\x47\xf9\x3c\x59\x80\x10\xd2\xbd\x9b\xf3\xd1\x89\x9f\xf3\xeb\xff\x11\xe1\x70\x44\xf8\xf7\x7f\xf7\x0f\xff\xf1\x1f\x7e\xf9\xc3\x5f\x7f\xfc\xfe\x7f\xfc\xf3\x1f\xe7\x3f\xde\x7f\xfd\xf1\xfc\xe1\x97\xf5\xe7\xfb\x2f\x7f\xfc\xd7\x3f\xcf\xfb\xc7\xb8\xff\xf9\x0f\xbf\xfc\xee\x77\x65\xff\xb1\xfe\x30\xff\xfa\xb7\xff\x02\xf3\x5f\xae\x3f\xfd\xee\x77\xef\xf7\xff\xf8\x6f\x7f\xf9\xeb\xfd\x2f\xff\xf0\xcb\xf3\xc7\x1f\x87\xe5\xd6\xbf\xfe\xe9\x2b\xfb\xe3\xc7\xef\xff\xa7\xfb\x9f\xff\xf0\x97\xbf\xfe\xf9\xdf\x7e\xfc\xbb\xff\x66\xfd\x71\xdc\xff\xd5\x8f\x75\x3f\x2f\xfd\x7f\xf8\xf3\xba\xff\xfc\x87\x5f\xfe\xf9\xc7\xbf\xfb\xcf\xff\xa1\xfc\xdf\xd4\x7f\xfc\xd7\x3f\xfd\xe9\xff\xbc\xff\xe5\xfe\xe5\xaf\x3f\x76\x68\xf7\x2f\x0b\xfc\xdd\xef\xff\xee\xbf\x5c\x7f\xfa\xef\xaf\x7f\xb9\x7f\xfc\xfe\x3f\xff\x87\xff\xee\xdf\xff\xfd\x3f\xfd\xdd\xbf\xff\x6f\xf9\x0b\x7f\xf8\x5f\xee\x3f\xff\xe5\x0f\x7f\xfc\xe5\x47\x29\xff\xf5\xb6\xb5\xff\x87\xfe\x3f\xff\xdb\x9f\xee\x1f\xe5\xfb\x85\xff\xed\x9f\xfe\xe1\x3f\xfe\xf8\xdf\xcb\x8f\xb2\xfd\xd8\xeb\xd1\xfb\xff\xf1\xd1\xff\xd7\xff\xf2\xc7\x75\xff\xd8\xfc\xdf\x6e\xd3\xe7\x1f\xd7\xfd\x97\x3f\x5d\xf3\xfe\xf3\xf5\xcb\x3f\xdf\xbf\xfb\xf1\xe3\xa7\x6d\xfb\xf9\xc7\x8f\x1f\x3f\xc5\xf6\xf3\xfb\xbf\x28\xe7\xf6\xf3\x8f\x9f\xfe\xd3\xdf\xff\xa7\xbf\xff\xf9\x6d\xe4\xff\xa7\xfc\xef\x8a\x3f\xf3\xcb\x1f\xff\xba\xee\x47\x1a\xbf\xf0\x53\x79\x7e\xfe\xd1\x7b\x69\xef\x47\xff\xef\xbf\xfe\xae\x6c\xdb\x57\xf5\x1f\xd6\xf7\xc1\xfe\x7e\xf0\xfe\xc3\x07\x3f\xed\xe5\xe7\x1f\x3f\xf5\xfb\xe7\x1f\x51\xce\xdf\xfd\xad\x05\x51\x7a\xfc\xfc\xa3\x6c\x5b\xdf\x5f\x5a\x4f\x69\xf9\xf3\x8f\xd8\xa3\x40\xba\x24\xdd\x6f\xb1\xb2\xe7\x4b\x0b\x3f\x8d\x0a\xed\xe0\xe7\xa2\x49\x6b\x3f\xff\x88\x16\x16\xeb\x90\xee\x49\xb1\x73\x7b\x69\xf7\x92\xb6\xde\x76\xf4\x80\x74\x43\x7a\xf8\xb5\xfd\xa4\x21\x8f\xbf\xf6\x42\xec\x51\x21\xf9\x6b\x0f\x0d\xd9\xeb\xfb\x6b\xbb\x7d\xd8\xeb\x2e\xed\xfd\xb9\xbd\x1e\xd2\x8e\x9f\x7f\x64\xc4\x09\xe9\x84\xd4\x0a\xc5\x7a\x7f\x69\x6d\x97\xb6\xbf\xed\xa5\x5b\x7b\xf3\xcb\x7e\x50\x2c\xdf\xee\xef\xdd\x4f\x5f\x88\xdc\xa8\xa0\x57\x49\xf9\x16\x3b\x3e\xda\x25\xed\x7a\xdb\xcb\xf8\xee\x7d\x48\xa2\xf7\x47\x39\xa0\x2d\x69\xeb\x9d\x94\xee\x97\xb7\xa4\xdb\x62\x6f\x57\x77\xc7\x17\xe8\xd9\x28\x16\x45\xd2\x6e\xb1\x06\xcd\xf6\xbe\x10\x47\xa1\x0b\x61\x73\xe3\xb1\x18\x9f\xa6\xbf\xf6\xc2\x5b\x00\x92\xbf\x76\x9d\x14\x3b\x18\xcb\xcb\x6e\xbd\x10\x35\xa9\xe0\x62\x16\xf6\xd9\x29\xe6\x90\xcf\x90\x16\x6f\x17\x58\x22\xfb\x4c\x49\xef\xaa\x89\x83\x8e\x4e\xc7\xe3\xde\xf8\xd2\x4a\x6f\x2b\x7d\x21\x72\xa3\xb9\xb7\x93\x70\xd3\xab\x73\x63\x62\x6e\x7b\xf5\x42\x9c\x4e\xe9\x6d\xaf\x5e\xe8\x9d\x05\xb2\xdf\xb6\xd6\xb5\x75\x3a\x09\xae\x2d\x20\xa3\x32\x92\xae\xad\xfd\x61\xe6\x4f\x87\xed\xb1\xd2\x17\xa2\xdb\xa9\xc7\x3a\xdf\xe5\x56\xb6\x73\x97\xd6\xa5\xf5\x9f\x7f\xf4\x70\x88\x1e\xfb\xfe\x42\xa4\xad\x7d\xec\xfb\x43\xdf\x0b\x4d\x7b\xec\xfb\x0b\xef\x8f\xd1\xf7\xc7\xc5\xf0\x42\x9c\x9d\x51\x7b\xa6\xa4\xdb\x62\x6f\x73\x0f\xd7\x33\xf0\xd2\x02\x5a\x91\xf6\x0e\x9b\xbf\x76\x9c\xbb\xa4\xd3\x62\x09\xad\x4a\x7b\xa7\x2f\xe9\xe8\x71\x36\x49\x4c\xdf\x79\xec\xd0\x42\xda\xdb\x85\xb2\x17\x48\x29\x69\x58\xcc\x1a\xa6\xb4\xf9\xfe\x1a\xe3\x71\x9c\x8c\xee\xe1\x5e\x3b\x8f\xb7\xf7\x87\x7b\x0d\x88\x93\xb5\x7b\xb8\xd7\x8e\xea\x50\x9e\x07\xb4\x2e\xad\xbf\x0b\x35\x68\x5b\xb5\x1d\x75\x59\x4c\xda\x2d\xed\x66\x05\x5a\xc1\x03\xa9\xd9\xd3\x4a\x17\x9a\x3d\x7d\x21\x0a\x33\x7f\x34\x7b\xfa\x42\xa4\xed\x68\xd6\xd9\x9d\x79\xd6\xd1\xd1\x1d\xb7\x17\x62\x6b\x14\xeb\xf6\xa0\x3b\x46\x8d\xa1\xec\xb6\xed\x85\xe8\x76\x5e\xc6\x78\xb8\xe7\xcf\xce\x18\xb9\xe7\x81\xc8\xc2\x50\xba\xe7\x81\xb7\x98\x35\x38\x94\x2f\x44\xdf\x19\x0f\xd9\x00\xf0\x16\xa3\xf3\xf2\x81\x43\x06\xdd\xa8\x40\x36\x00\xc4\x16\xb4\x43\x36\x70\xc8\x79\x4f\x38\xd9\x21\xe7\x05\x22\xd9\xf2\x87\x9c\xf7\x08\x78\xfb\x19\x0c\x5b\xd8\x85\x17\x22\x8b\x24\x7b\x10\xf6\xc0\x0a\xec\x41\xb8\xaf\xc2\x76\xd8\xdc\x70\x5f\x59\xa7\xad\xcd\xc3\x62\xf4\x20\x9d\xf9\x64\x97\x26\xed\x48\xa7\x2a\xed\x68\x52\x69\x7e\x9f\xde\x6c\x3f\xc6\x23\x9d\xe5\x8b\x5e\xd5\x8d\xa1\x94\xf7\x00\x3d\x76\x2a\xbd\xec\xd5\x75\x59\x8c\x1a\x2e\xdb\xfb\x42\x24\x8c\xf7\xb8\x1c\xf0\x8b\x4a\xab\x3d\xbd\xac\xf4\x85\x48\x58\xe5\x71\x7d\x95\x3e\x90\xa8\x60\x38\xe0\x2f\x44\xc2\xb1\x8f\xe1\x80\x8f\xf4\xc7\xa8\x60\x38\x6c\x2f\x74\x19\xd9\x31\x6c\xc6\x64\xc0\xab\xb3\x2c\x5b\x04\x62\xdf\x13\x39\xff\x37\xe1\xfc\xff\x27\xaf\xe3\x90\x6b\x1e\x4a\xc2\xea\x16\x53\x12\x02\x3d\x42\x92\xe3\x20\xe7\xa8\xf0\xe0\x53\xce\x71\x9e\x8f\xb4\xb7\x51\x67\x95\xf6\x42\x14\x46\xfa\xac\x74\xe7\xec\x30\x98\xb6\xbd\x0b\xf4\xec\x1f\x4d\xbe\x7c\x42\xda\x25\x31\xbd\x8d\x86\x9c\x4a\x42\x20\x62\xe3\xd7\x94\x84\x67\x6f\x16\xa3\xd2\xde\xa5\x75\x16\x8b\xa4\x90\x44\x7b\xdb\x49\x7b\x5d\xdb\x67\x14\x69\x01\xcd\x5a\x5f\xe8\xe9\xa7\x8a\xb8\x33\x98\xcb\x06\xb3\x3e\x5d\x7b\x40\xcf\x6e\x31\xe6\xf2\x4c\x7f\xad\x51\x43\xfa\x6b\x2f\x44\x6e\x0d\x92\xbf\xf6\x42\x57\x50\x9d\x2e\xda\x33\xa7\x5f\xd2\xfb\x5c\xd2\x5e\x1d\x65\x83\x9b\x9c\x2e\xda\xf3\x72\xdc\x3a\x9f\x5e\x8e\xdb\x0b\x51\x4e\x49\xd6\xf9\x42\xec\x30\xb5\xf3\xb2\xce\x17\x7a\x26\xbf\x7f\x59\xa7\xd2\xb7\x75\x8b\x39\x94\x48\xdf\x74\x5e\xdc\x01\x40\x6c\xce\xa8\x3b\xe0\xbc\xc2\x2f\x99\x97\x2b\xa5\xbd\xcb\x6c\x73\x96\x2f\xd6\xd1\x39\xbf\x0a\xf8\x74\x5a\xc1\x84\x6b\xee\xd4\x39\xad\x60\xc1\xd1\xbb\x43\xb4\x6c\xee\x62\x88\x50\xbc\xce\x65\x73\x17\xbf\xd6\xd9\x3c\xe7\xf2\xd7\x5e\x88\xc6\xe6\x39\xd7\xf7\x6b\x2c\x06\xd9\xe6\xb9\x6c\xef\x0b\xd1\xd0\x77\xce\xe5\x62\x58\x61\x31\xa6\x6a\xd9\x85\x17\xe2\x0c\x7f\xcd\x2e\xbc\x10\x25\x6d\xc7\x90\x34\xfd\x72\x87\xe6\x54\xbd\x10\x67\x5a\x81\x53\x75\xa7\xc5\x18\xf1\xdb\x5f\xbb\x61\x74\xfe\xda\xed\xaf\xdd\xac\xac\x7e\xd0\xf9\xfb\xfb\xf4\xe5\x12\x3b\x1b\xfb\xbc\x5d\x59\xcf\x66\x31\x68\x8f\x13\xff\x20\x91\xdd\x1c\xea\x14\xa7\x5b\xb2\xb3\xc4\xab\x5b\xb2\x56\x3f\xad\x6f\x43\xaa\xfb\x0f\x88\x84\xd1\xd5\xba\x4b\x42\x28\xa1\x67\x54\xc5\x2a\x50\xb6\xde\x2d\x76\x4a\x53\x11\xdd\x21\x55\x49\x76\xa1\x4b\xbb\xa5\xdd\xb4\xcd\x2f\xe9\x42\x6d\x70\x15\x55\xb6\xaa\xc0\x04\xa2\xd5\x06\x89\xb9\xaa\xee\xd2\x1e\xef\x58\x56\x77\x69\x0d\xe6\x54\xf5\xa6\x2a\x5b\x80\x08\xa4\x74\x8d\x90\x74\x59\x2c\xa1\x0d\x69\x03\x3d\x91\x6e\x05\x8c\xb9\xba\x4b\x83\x09\xac\xee\x52\x20\x9a\xbf\xe6\x2e\xad\x59\x2d\x46\x43\xd2\xf6\x26\xe7\x81\x4d\x92\xed\x48\x24\x77\xd8\xd5\xb4\x21\x2f\x44\xa4\xc5\x58\x5b\xf5\xb2\x52\x94\xa0\xea\x36\x05\x7a\xef\xb4\xcd\x6d\x5a\x87\xc5\x9c\xc0\x61\xb1\x17\x7a\xa0\x76\xd6\x61\x31\xe7\x39\x18\xb8\xe6\x3c\xb7\x93\x05\x97\xd4\xd0\xce\x4b\xda\xf5\xf3\x8f\xdc\xd0\x2a\xda\xc9\x80\x34\x27\x35\xf9\xb9\xe6\xa4\x02\xd1\x51\x17\x9a\x93\xda\x1a\xdd\xca\xfa\x36\xa4\xb5\x90\x16\xfc\x5a\x40\xa2\x5b\xcd\xd9\x4a\xfa\xd0\x9c\xad\xe6\xc0\x25\xd2\xb6\x39\x70\x40\x34\x98\x7b\x73\xe0\xda\x3b\x48\xe5\x3d\x97\x41\xf3\xe7\x5e\x78\xa5\x3a\x24\xbb\x00\xcb\x2b\x1b\x1a\x65\x93\xe5\x01\xd1\x58\x22\xcd\xb1\x6c\xaf\x94\x2b\x65\x43\xf2\x35\xe5\x18\x10\x27\x8c\xbc\x4d\x7b\xff\x42\x79\x65\x05\xb4\x29\x6d\xa2\x3d\xd2\x8e\xb9\x24\x2d\x8b\x49\xbb\xa5\xbd\xfc\x3e\x10\x01\x6d\xb2\xa4\xdb\xb2\x6d\x68\x72\x6d\xd9\xb6\x17\xa2\x23\x50\xda\xb2\x6d\xeb\xab\xb4\x43\xb3\xd2\x45\xa5\x9b\xc5\xac\x14\x26\x12\x9c\x7c\x9a\x4c\xa4\xdd\x56\xd0\xfb\xaf\x0b\xef\xe6\xf1\x06\x88\x03\xf9\xd8\x3c\xde\xb4\xbb\xf3\x2b\x6c\x82\x76\x3b\x97\x2f\x44\x83\xc7\xb4\xdb\xc1\xbf\xed\x34\xca\x54\xbb\xbf\x06\xdc\xef\x94\xb3\x67\x9b\xac\xa8\xbd\x67\x95\x52\x36\x8e\xa7\xed\x71\x01\xbd\x90\x1b\x6a\x69\x7b\x5c\x40\x2c\xd1\xb2\xd1\x9d\xee\x12\x05\x5e\x16\x02\xa9\x48\xe2\xd7\xca\x66\xb1\x53\x1a\xbf\x16\x16\xab\x92\xc2\x62\x09\x2d\xa5\xb1\x58\x58\x8e\xdd\xf5\x0e\x94\x52\x50\x9d\xba\x0b\x1e\xc8\x0d\x1d\xb4\x7b\xac\x00\x7a\xff\x9a\xb6\x24\xdd\x7e\x69\xa5\x8f\xb4\x87\x5e\x51\xa7\xba\x4c\xe7\x58\x51\x0a\xab\xb1\x7b\xac\x00\x62\x83\x39\x75\x8f\x15\xbd\xb2\x1a\x0b\xab\xb1\x57\xdb\x56\xd9\x8b\x4c\x42\xaf\x36\xed\x85\x77\xc7\x41\xb2\x69\x2f\xa4\x0b\xaf\x57\x9b\x06\x7f\x2d\x65\xb7\xd8\x2d\x8d\x79\xe9\xfe\xbe\xad\x7d\xe1\x2d\x46\xd3\x9a\xcd\x7d\x21\x5d\x9f\xbd\x39\xe0\xb0\xe1\x52\xd0\x68\xbb\x6c\x18\xc8\x38\xa9\x54\x36\xdc\xbb\x3d\x80\x9b\x74\x4f\x1a\x40\x6e\x88\x83\xee\x49\xa3\x63\x5d\x28\xa5\x4a\xb3\xbd\x2f\xa4\x06\x9d\xee\xa9\x02\x78\x8b\xd1\x5e\xd9\x04\xf0\xd2\xa8\xd5\x73\x05\x90\x1b\x82\xba\xab\x8d\x01\xb9\xc1\x9b\xba\xda\x58\x0f\xbb\xe0\xb8\x79\xfa\x00\x72\x43\x76\x77\x25\x04\xf0\x16\xf3\xd7\x9c\x98\x80\x85\xa1\xf2\x74\x0f\x24\xc0\x5b\x8c\x69\xf6\x44\x02\xbc\x67\x33\x48\xf6\x34\xec\x69\x63\xfe\x3c\x91\x00\x3d\xd2\x2f\xed\xe9\x0b\x29\xb3\xee\x6a\x85\xfd\x95\x2d\xef\x97\xd0\x14\x2e\x40\x6e\xb0\xcd\xae\x0a\xd8\xd3\xe6\x36\xda\xa6\x20\x01\xa2\x21\x5b\xba\x2c\xb2\xa7\xed\xf8\x3e\xb5\x1d\xe9\x88\xd3\x79\x35\xc5\x7e\x59\x29\x5b\xb2\x2b\x5c\x80\xdc\x92\x2f\xd5\x01\xfb\xe5\x7a\x76\x8d\xab\xdd\x01\xa1\xb5\xa5\x5f\xb6\x63\xf8\x6b\x6e\x22\x65\x10\x90\x32\xb5\x3e\xfc\xb5\x17\x4a\x29\xf0\xef\x3e\xdc\xb9\x2f\xc4\x7e\x52\xc1\x70\xae\x86\xbb\x14\x65\xb4\x7b\x72\x01\xd2\xf3\x45\x1f\x6e\x85\xe1\xa2\x71\x78\x87\x63\x39\xd8\x92\xe8\x85\x7d\xba\x8e\x5e\x88\x66\x9d\xd3\x65\xf4\x42\x29\x3b\x5a\x4a\x9f\xae\xa3\xc9\x3a\x42\x8d\xed\xd3\x1e\x28\x33\xf6\xcd\x4f\x9d\xf9\xe9\x2e\x95\x64\xd3\xa6\x0c\x84\x79\x51\x64\x00\xd1\xaa\xbf\xef\x1c\x4c\x5a\xbb\x73\x8a\xed\xca\x07\x20\x52\x2e\xb0\x6c\xed\xb2\x69\x72\x0b\xe5\x03\x90\x9b\x13\xaf\xfe\x0b\x64\xb8\x71\xd5\x7f\x81\xf7\x4b\x46\x4d\xfd\x17\xc8\x70\xf6\xd4\x7f\xfb\xb2\x53\xc5\x4f\xed\x14\x5a\xec\xdf\x7e\xcd\x4e\x61\x6a\x2a\x3b\xba\x52\xf7\x40\x07\xa4\x8c\xbd\x6b\x6a\x02\x7a\xa2\x17\x75\x4d\x4d\x40\x29\xfb\x29\xcd\x0a\x5e\x78\x15\x2b\x48\x5f\x05\x8e\x07\x82\x30\xe4\xff\x40\x74\xd6\x64\xc8\xff\x81\xe8\x6c\xc8\xd0\xac\x14\x8a\x84\x9d\xd1\x0d\x45\x02\x10\xf5\xfb\xb2\x4a\xaa\x16\x93\xd6\xa4\x35\x8a\xf9\x6b\x74\x2a\x64\x3d\x3b\xcc\x22\x64\x3d\xc1\x69\xba\x1c\xd8\x4c\xc2\xd3\x34\x90\x1b\x4b\x26\x5c\x93\xa1\xb2\x70\xa0\x3e\x85\x33\x0f\xbc\x4d\x84\xc4\xcc\xc7\xa2\xbd\xda\x95\xc2\xc9\x02\xe2\x55\xbc\x7e\x55\x6e\x87\x53\x19\x9c\x5b\x8a\xba\x4f\x78\x6e\x01\xc2\xd1\x0f\xcf\x2d\xb1\x6e\x8b\xd1\x9d\xf5\x48\x63\x53\xa0\x5c\xc5\x6d\x0f\x6f\x16\xcb\x69\x77\xb4\x55\x02\xb9\x21\x69\xe3\x76\xbc\xb0\x4b\x16\x0d\x9f\xe1\x19\x22\xb4\x4b\x22\x69\x43\xbb\x24\xd0\x3d\xa3\x84\x12\x3f\xb0\x11\x94\xb3\x58\xec\xfb\xb5\x86\x58\xa5\x69\x2e\xa9\x70\x15\x9c\x1c\xb3\xd2\x55\x90\x0a\x69\xcd\x86\xa9\x90\x06\xa2\xa0\x96\xa5\x42\x1a\xc8\x8d\xb3\x5d\x2a\xa4\x81\x52\x4e\x2c\xf9\x79\xde\xd2\x90\x84\x9b\x5f\x3e\x92\x1e\x8b\x51\xa9\x82\x1b\xc8\x8d\x83\x6d\x7a\x08\x4a\x34\xe1\x72\xc2\xab\x53\x4d\x18\x88\xda\x2d\x56\x25\x4d\x8b\x49\xb3\x21\x2f\x44\x2b\x92\x6c\x47\xb5\xa7\x88\xb8\x54\x24\x03\xb9\x31\xba\xa9\x44\xce\xe6\xaf\xb1\x6a\xb3\xf9\x6b\x0d\x31\x62\xdb\x9a\xbf\x86\x81\xa4\x9c\x70\xd7\xd4\x40\x02\xc4\xc9\xfc\xa5\x06\x92\xc4\xd0\x57\x4e\x84\x41\x6a\xe8\x03\x7a\xb0\x55\x52\x89\x9c\xee\x81\x13\xdd\x23\xdd\x03\x19\xce\x02\x2c\x3d\x95\x71\x40\xc4\x47\xf2\xd7\xd4\xd2\x4f\x96\x65\x2a\x82\x80\x9e\x0e\xb9\x5a\x7a\x62\x61\x2b\xd5\xc6\x29\x82\x80\x9e\x4e\xb3\x16\xb6\xc4\xc2\x56\x2a\x4c\x32\xb5\x2f\x00\x71\xb2\xde\x52\x09\x04\xbc\xc5\xe8\xbd\x22\x08\x88\x52\x25\xd9\x8e\xeb\xb6\x58\x40\xfb\x6a\x78\x50\x31\x99\x7a\xcd\x69\xe9\x6e\xaf\x9c\xc4\xd3\xdd\x0e\x44\x43\x8e\xa4\xbb\x3d\x87\x5d\x38\x2c\x66\x17\x06\xd6\x50\x24\x50\x2a\x81\x80\x77\x58\x5e\x92\x12\x08\xc8\x8d\xd3\x74\x2a\x81\x72\x1e\xfe\x18\xcd\x9d\xae\xad\x09\x4f\xb0\xb5\x5a\x43\x80\xd8\x6d\xad\xd6\x10\x20\xb7\x8d\x11\x9a\x0e\xc7\x74\x38\x5c\xf6\xde\x7f\x00\xef\x4c\x40\x72\x38\x3c\xb4\x54\x97\xbd\x87\x16\xa0\x6b\xf5\x4d\x85\x52\x7a\x68\xa9\x58\x87\xd2\x43\x0b\x10\x81\xde\x95\x0a\xa5\x5c\x5f\xa5\xd2\xac\xf4\x85\xd8\x9c\x2a\x6d\x26\xb9\x58\x46\xea\xf4\xa9\x6c\x01\xa2\x6e\x92\x5c\x46\x1e\x1a\x2a\x07\xd6\x94\x85\x00\x71\xc8\x1a\x3c\x34\xa4\xec\xa2\xb2\x50\x2f\xd9\x05\xf0\xaa\x67\xd2\x8a\xb4\x02\x7b\x95\x44\x7b\xaf\x1a\x16\x7b\x7f\xee\xaa\x29\x2d\xdf\xb1\xac\x92\x2e\x49\x1a\x4d\x77\x48\x43\x12\x9b\xa8\x21\x58\x2f\xd5\x70\x20\x36\x66\xf9\x72\xcf\x5f\xaa\xe1\x6e\xfa\xcb\x4d\x0f\xf4\xc4\x68\x72\xb9\xe7\x2f\xee\x33\x4b\xe3\x84\x70\x69\xb6\x07\x22\xd0\xcf\x2e\x75\xe9\xcb\x2d\xd9\x60\x3e\x97\x5b\xf2\xba\x0f\x69\x94\xf3\xce\x09\x08\xa5\xd7\x25\x1f\xbf\x1c\xa4\x4e\xb1\xe1\x20\x0d\x65\x66\x47\x63\x1d\xca\x4c\xa0\x27\x7a\xdc\x50\x66\x0e\x8f\x51\xbd\xfb\x69\x4a\x7b\x07\x49\x6b\xd3\xf0\x18\x35\x54\xfe\x35\xd5\x8c\xfe\xd1\x5e\xf9\xa8\xde\x32\x54\xfe\x87\x7d\x08\x76\xf8\xb0\x0f\x23\x18\x4c\x8d\x9b\x43\x1e\x02\xc4\x8e\x18\x1b\x6a\xce\x43\x7e\x11\x30\xd5\x21\xbf\x00\x72\x87\x5b\x0e\xf9\xc5\x50\xef\x0c\x54\xe7\xa1\xde\x09\xe4\x0e\xa7\x19\xea\x9d\x63\xd0\x2d\x19\xd7\x18\x76\x6b\xd0\x2d\x4e\x82\xc3\x4d\x3f\xdc\xe1\x2a\x99\xc3\x1d\x0e\xa4\x16\x9d\xe1\x0e\x1f\x13\x26\x15\x59\x7e\x5d\x78\x0f\x37\x2d\x90\xea\x7e\xc3\x4d\x3b\xdc\xb4\x1a\x81\x86\x9b\x16\x48\x35\xb8\xe1\xa6\x05\xa2\x6c\x92\x6c\xa6\xfa\x84\xc7\x8a\xa1\x3e\x01\xe4\x0e\x43\x1c\x2a\x0c\x43\xab\x82\xf6\xff\xe1\x36\x03\x52\xdd\x6f\x68\x55\x18\x6a\x02\xde\xc8\x0d\x57\x10\x90\xfb\x47\xb2\x07\x37\xfb\x38\x61\x92\x43\xdb\x24\x10\x1d\x1e\x36\x6e\x2b\xb8\x1f\x8b\x51\xe9\xe3\x94\xbf\x10\x0a\x92\xa1\x69\x72\xb8\x44\x93\x55\x30\x5d\xa2\xd3\x25\x9a\x2c\xdb\xe9\x12\x05\x72\x47\x0f\x9b\x2e\xd1\xe9\x41\x5c\xc3\xd3\x54\xa0\x03\x51\x8f\x77\x28\xa7\xf2\x7c\x7a\x10\x4f\x4c\xed\xd3\x83\x38\x10\x5a\xa5\xa7\x07\xf1\xe9\xde\xf6\x0e\x7b\xba\xb7\x81\xd8\x51\x9a\xa7\x7b\x7b\xba\x92\x93\x33\xeb\x74\x25\x4f\x04\xe4\xae\xbe\x34\x15\x90\x40\xa8\xcd\x4c\x17\x37\x50\x76\xf5\x94\xe9\xea\x06\xe2\x44\x11\x9a\x9e\x0b\x81\x38\xaa\x24\x7b\xf5\x42\x9c\x6c\xb2\xe9\x1d\x39\xf0\xfe\x18\xcd\xf5\x92\x1c\x88\x06\xaf\x9b\x5a\x2b\x81\x28\xe8\xf3\xd3\x03\xe5\x44\x4e\xef\x1b\xfa\xd8\x54\x4e\x03\x3d\xbe\x1f\xbb\x24\x5d\x68\x72\x7e\x69\x9f\xb0\x4c\xee\x1b\xe6\x85\xa9\x35\x0d\x88\x8d\x03\xda\xf4\xf0\x08\x44\xa0\x69\x4c\x0f\x8f\x40\xb4\x90\xe4\xec\x21\xe0\xf7\x0d\xb3\xc1\x54\xc0\x4f\xaf\xd0\xd8\x08\x53\x01\x0f\x74\x0f\x24\x53\xf9\x3e\xdf\xcd\xf7\x7e\xc9\x92\x51\xb0\x4e\x05\x2b\x07\x81\xa9\x60\x9d\xcb\xd6\xa2\x07\x4c\x45\x15\x10\xbb\x93\xe7\xf9\x09\xe8\x9d\x63\xdc\x74\x0b\x01\x65\xd7\x48\x35\xdd\x43\x40\xee\x9b\x24\x5b\xbb\x1c\x48\x54\xc0\xa9\x90\x03\x42\xad\x65\x7a\xa4\x9a\xcf\x57\x8c\x5e\x79\x32\x02\x7a\x56\x49\x5f\xb1\x77\x61\xed\xda\xad\x96\x1b\x61\xbd\xba\x5b\xd9\x35\x35\x2d\xef\x7f\x81\xdc\x60\x91\xcb\x8b\x2e\xa0\xec\xce\xf2\xf2\xa6\x0b\xe8\x81\x9a\xbc\x7a\x93\x74\x59\xac\x41\x1b\xd2\xb0\x2b\x61\xb9\x5e\x6a\x85\xab\xdb\x10\x8c\x37\xcb\x15\xbe\x30\x90\xec\xda\x08\x96\x06\x12\x20\x0b\xba\xdd\xd2\x40\xb2\xc2\x4f\xd9\xe0\xcb\xb5\x0b\xf4\x84\x2f\x2f\xd7\xee\x82\xa5\xef\x05\xab\xec\x92\xa5\x03\xb9\xc1\xc9\x96\x2c\x7d\xc1\xab\x77\xcf\xe6\x4b\x5e\x0d\xa4\xd2\x76\xc9\xab\xd7\xcd\x3c\xef\xf6\x41\x3b\x26\x90\x05\x3d\x79\xe9\xa5\x01\x94\x7d\x6f\x16\x73\xe0\x10\x99\xc1\x86\x5c\x32\xbc\xf5\x32\xb9\xb7\x18\x0d\xb9\xbb\x34\x4f\xbb\x8c\x9b\x46\xd1\xf5\x58\xcc\x41\xf2\x04\x03\x64\xb1\xb9\xcf\x57\x8c\x9e\xee\x1c\xf8\xd6\x63\x4f\x5f\xc8\x82\x0e\x78\x3b\xcf\x37\x07\xd4\x7d\xc7\x0e\x7e\x7b\x40\x05\xb2\xa0\xdd\xdd\x1e\x50\xef\xfa\x15\x7b\xbb\x70\x57\x8b\x55\x8b\x9d\x90\xbe\x62\x4c\x96\x7e\x3c\xb7\xdc\x0d\x88\xfd\x94\x94\x92\xd2\x62\x7e\x7a\x49\x7b\x95\xdd\xde\x24\xb1\x42\xee\xf6\xfd\xda\x3b\x96\xb7\xe6\x7d\x20\x0a\x63\x74\x6b\xde\xbf\x1b\x3d\x3d\x98\x85\xdb\xa3\x09\x10\x3a\x31\xdd\xed\x91\xc4\xde\x3d\xd8\xbb\x77\xb7\xf7\x2f\xa4\x76\xdd\xdb\x03\xcc\xed\x1a\x3c\xd0\xb0\x6f\xd7\x20\x10\xc9\x2c\xdc\x1a\x01\xef\x64\x45\x1f\x68\x9e\xb7\x4c\x0a\x88\x6a\x73\x73\x4a\xf2\xd7\x58\xbd\xb7\x8b\x0b\x88\x33\x7e\xc3\xb1\xfb\xbe\xac\xff\x3a\xfc\x15\xba\x23\x5f\x03\x22\x50\x9a\x6f\xf9\xda\x8d\x9d\x6c\x3f\x60\xd6\xb7\x4c\xec\x96\x89\x9d\x7e\xe9\x10\x5e\xc3\x62\x7e\x6a\x3b\x2f\x2c\x06\x87\xc5\x96\x24\x87\x35\xa4\x39\xac\x97\x5b\x85\xc5\xe2\x59\xe6\x1e\xd3\x62\x0c\xc4\xf0\xd3\x81\xa9\x0f\xd1\x72\xab\xc2\x00\x29\xb3\xbe\x55\x61\xee\x09\x8b\xf1\xf8\x7f\x6b\xed\x02\x22\x1c\x55\x4f\x24\xc0\x5b\x8c\xd1\xf7\x48\x02\xf4\xfe\x15\x73\x35\xce\x69\x31\x9a\xab\xd1\x03\xe8\x1d\xcd\xf7\xf6\xac\x01\xe4\xc6\x49\xf1\xf6\xac\x71\x2f\xd6\xb6\x77\x2b\xb7\x0c\x16\xe8\x89\x24\xbc\xb5\x73\x00\xa1\x9e\x7e\x7b\xd4\xb8\x6f\x46\x52\x51\x7b\xab\x7c\x00\xa1\x05\xf6\xd6\xd7\xea\x96\xbf\x7a\xd4\x7f\xdc\x77\x4f\x85\x75\x78\xef\xf3\x78\xbb\x09\xc4\x81\xd1\xfb\xf1\x76\x13\xe8\xc1\x56\x7c\x3c\xfd\x03\xa9\x3f\xe1\xe3\xe9\x1f\xe8\x89\x51\xfd\x71\x73\x02\x3d\x39\x3b\x3e\x6e\xce\xa7\x3a\x42\xdd\xdf\x5f\xd2\x5e\x25\x60\x47\x41\x79\x3c\x2e\x3c\x8d\xc5\x76\xb2\x3c\x9e\x66\x9d\x0d\x8b\x03\x0c\xec\xd1\xb3\xe8\x71\x9f\x9c\xd8\x2a\x1f\xf7\xc9\x83\xcd\x7b\x77\x07\x3c\xda\xbc\x81\xdc\x37\x49\x36\x44\x96\x5e\x19\xb6\x47\x96\x0e\x44\x7c\x24\xf6\xf5\x93\xa7\xc5\xde\xf5\xf1\xe8\x24\x03\x64\xa0\x64\x3d\xde\xda\x01\x65\xf7\x48\xfc\x78\x6d\x07\x74\x6f\x1e\x1f\xad\xd4\x8f\x1b\xb6\xa2\x55\x3c\x6e\x58\x20\x0e\xf6\xd0\xe3\x86\x05\xde\x62\xd6\xe0\x20\xe1\xe3\x50\xc3\x0a\x1c\x24\x2e\xfc\xf6\xca\x55\xf7\xe3\x85\x1f\x90\x81\x22\xf0\xa8\xa2\x3c\x6e\x8e\xca\x01\xea\x71\x73\x00\x51\x60\x43\x8f\x9b\xe3\xe1\x20\xbe\x57\xb8\xda\xe3\xb2\x07\xba\x77\xac\x8f\xab\x1e\x28\xbb\x86\x9f\xc7\x65\x0f\x64\x61\xd5\x3f\x2a\xf5\x8f\x3b\x41\x03\xe3\xe3\x4e\x00\xba\x6a\xed\xe3\x4e\x78\x96\xb3\x80\xc4\x7c\x5c\xd0\x40\x0f\x58\xfa\xa3\x5a\xf1\xb8\x78\xeb\xbb\xe7\x73\x63\xf1\xe6\xe6\xdc\xb7\x77\x63\xe5\x16\xd2\x1c\x38\x4c\xdc\xb9\x31\x70\x42\xe2\xd3\x9a\x1b\x03\x27\x04\x3e\x97\xb9\xc1\x0f\x73\xc3\xf4\xb1\xe3\xab\x90\x1b\x92\x55\xe8\x78\x0f\xe6\x86\xe9\x23\x37\x75\xaf\x7e\xe6\x4b\x9b\x56\x8a\x59\xfd\x78\x07\x29\x37\x74\x2f\x21\xcb\xc9\x97\x58\xd5\x73\x93\x83\xe0\x5c\x90\x1b\x63\x29\x64\x79\x8f\x76\xb9\x31\x94\xb9\x61\x25\xd8\x7b\xe5\xd3\x65\xa5\x8b\x9b\xf9\x9d\x1e\x70\x7c\x11\xb2\xd8\x8c\x65\x3f\x71\xb0\xdc\xf1\x55\xcd\xed\xfe\x68\xf6\x9d\xa6\xdd\xf6\xfd\xb6\x07\x49\x3b\x1e\x7b\xf0\x20\x81\xce\x06\xc9\x1e\x28\xe0\xb9\xf9\xcb\x0d\x01\x2f\x64\x39\xa8\x14\x01\x9f\x9b\x13\x13\x2f\xfb\x4c\xfd\x94\xdf\xea\xa4\x25\xb4\x5d\xda\xcb\x55\xb0\xa4\x64\x79\x8f\x37\x2f\xd0\xd3\x78\x8f\x34\x59\x30\x6e\x0a\x1d\xb3\x77\x16\x8c\x9b\xc2\x5b\xcc\x5f\x5b\xd2\xf4\xca\x3d\x20\xd1\xad\x82\xef\xc6\x1e\x0c\x52\xc1\x6c\x29\x24\xfe\x3e\x59\xaa\xed\xc0\x92\xb9\x23\xb1\xb2\xc0\xcb\x84\x9e\x21\xa9\x4a\x7a\x27\xe6\xa4\xa7\x05\x5e\x96\x05\xab\xc9\x1e\xaf\xf2\x9f\x05\x15\x42\xc8\xf2\x6e\xd3\x2c\x68\x10\x42\xd4\x9d\x8e\x56\x3b\x25\xcb\xc3\x3d\x22\x4b\xb5\x07\xb2\x3c\x3b\x5a\xed\x41\xb3\x07\xac\xe7\xd2\xec\x41\xb3\x07\x7c\xd9\xec\x41\xdb\x2d\x76\xfc\xaa\xe4\xce\xd2\x1c\xe9\x86\xd3\xe7\xcb\xd2\xb3\x34\xfb\xac\xba\x12\x07\x0d\x68\x5f\x03\xf4\xf3\x93\xc4\xae\x28\x9d\xcd\xce\x7d\x67\x96\xee\x40\x74\x6c\xd7\x8e\x2a\x2e\x64\x89\x17\x7a\xd9\xa3\x32\x95\xdd\x81\xf8\x1c\xac\x19\xc2\xee\x40\xa0\x6c\x1f\x41\x07\xbb\xb3\xdb\x59\xc7\x55\x92\x43\xe3\xbe\x0e\xdb\xe1\xbe\x2e\xe1\xb4\x55\x86\x35\xec\x42\xc0\x9b\xbe\x62\x4e\x9b\x27\xcc\x68\xfc\x5c\xf8\x73\xdc\x3c\xe6\x41\xd3\xc2\x8e\x7a\x76\x8c\xc6\xb0\xa6\x23\xcd\xd9\xf1\xd8\x69\x6e\x3a\xd2\xe9\x48\x77\x3e\x4d\x87\x92\xdb\xc8\x72\x30\x94\x69\x3b\x64\xfd\xd1\xd9\x02\xe9\x80\x24\xe7\x6b\x87\x0d\xd6\x9f\x45\xd6\x1f\x9d\xf5\x93\x0e\x08\xac\x1f\xc7\xa7\x2c\xe9\x80\x5c\x2e\x33\x76\x71\xb9\x5c\x66\x38\x8c\x71\x3b\x9b\xe5\x72\x74\x2f\x14\x55\x17\xe8\xe5\x8f\xbd\xf0\x6e\x34\x48\xfe\x98\x4c\x2d\x92\x1e\xc8\xd4\x80\xfc\xfa\x2e\x53\x03\xf2\x74\x19\x8f\xef\x4b\x26\x01\xf7\xb6\x2c\xc3\xc5\xc0\x8d\x22\x57\x0a\x59\x64\x7d\x45\xed\x09\x6f\xfb\x2c\xd3\x21\x9a\x0c\x91\x7d\x9f\x0e\x91\xc2\x20\xdd\xea\xd3\x79\x99\x9a\xf2\xe9\xc1\x74\x5e\x26\xac\x29\xdd\xc3\xcb\x1a\x16\x2e\x91\x29\xc9\xa9\xc2\x04\x8b\x19\x21\xcb\x72\xaa\x38\xd7\x36\x19\xc2\xb2\x19\xd8\x86\xf6\x84\xa1\x97\x65\x3b\x96\x5a\x0b\xab\x68\xb9\x64\xd4\xbb\x52\x86\xb0\x5c\xe1\x2f\xc4\x37\x92\xcb\x09\x55\x4e\xa5\x53\xb5\x9c\x51\x6c\xbc\xa7\x33\xb5\x9c\xa9\xa5\x07\x29\xa3\xb6\x1c\xef\xe5\x48\x7e\x34\x47\x72\x39\x92\x0c\xc7\x6d\x3f\x3d\xc5\xa5\xbb\xff\xb6\x57\x9c\xe2\x8e\xce\x10\xdd\xf6\x0a\x5f\xb9\x1d\xd7\xa5\x2c\xb7\x35\xbc\x90\xdf\xb6\xba\x9d\x51\x99\x7c\xba\x3e\x64\xf2\x40\x7c\x7c\x54\x26\x0f\x94\x3d\x9d\xab\xc7\x4a\x1f\xc3\x2c\x24\x59\xa9\x4c\x3e\x91\x53\x06\x72\xa4\x51\x10\x7b\x22\xa7\x8c\x82\xc8\x7d\xbc\x63\x79\x6c\xcc\xdf\xce\x0d\xb6\x10\xcd\x62\x83\xb1\xdc\xb1\xbe\x1f\x98\x17\x72\x77\xea\x81\xc0\xbf\x3a\x77\x34\x62\xa1\x1c\x9c\xf4\x73\x77\x35\x00\x89\xeb\x64\xee\xae\x86\x9d\x79\x3e\x38\x12\xe7\xee\x3c\x03\x19\x55\x52\x95\xf4\xb6\xf7\xe0\xd8\x99\xbb\xd3\x00\xc4\xd9\x20\x39\x0d\x40\xec\xaf\x3a\x92\x46\x41\xe4\xce\x19\xf6\x28\x2c\x5e\x62\x00\x3e\x08\xdc\x08\xd2\x48\x80\x3c\xb8\x4a\x3b\xd4\x33\x8e\x2a\x0d\x7f\xde\xbe\x1d\x90\x8a\xa4\x49\x31\x38\xd9\xa1\x30\x00\x62\x63\xc8\xf5\xac\xcf\xa3\xf9\x6b\x6c\xd3\xa3\xfb\x6b\x1d\x9f\x20\xe6\x14\x67\xf9\x17\x18\xf1\x12\xfc\x9a\xfc\x19\xe8\x18\x82\xf3\x90\x3f\xe3\xaa\x5e\x8e\x02\x1f\xd0\x57\x3d\x71\x1f\x7f\x69\xfc\x1c\x16\x3a\x21\xce\x62\x31\xdb\x86\x46\x75\xec\xd2\xf2\xa3\x71\xb2\xb2\x0b\x6a\x54\x07\x1e\xb2\xc7\x8e\x8c\xc1\x3b\xfc\x83\xc4\xfe\x94\xfa\x88\x0b\xe5\xd8\x11\x3b\x3a\x89\x0b\xb1\xfb\x6b\x1c\x0e\xf3\x18\x87\xc5\xde\x05\x77\x60\xb9\x16\x22\xd0\x20\x8e\x61\x05\xef\x7a\x2a\x07\xf7\xeb\x79\x8c\xef\x53\x2f\xbf\xe8\x15\x36\x93\xc4\xfb\xbb\x1c\xc4\x21\xa5\xee\xdf\x42\x6e\x08\x8f\x43\x96\x07\xbc\xc5\x18\xb8\x61\x4f\x07\x8a\x86\xc3\x3b\xec\x29\xfa\xef\xb1\xb3\x06\x0f\x95\x36\x20\xf0\xd2\xc8\x63\xda\x2b\x9c\x1c\x0e\x0e\x35\x79\xb8\xa2\x81\x38\x8e\x5f\x3f\x73\xe7\xe1\x7a\x3f\x96\xe3\xd5\xe8\x8e\xac\x08\xc8\xad\x32\x36\x72\xa2\x63\xd9\x43\xb6\xcf\xa1\xd2\x08\xf4\xb0\x37\x2a\x8d\x40\xc7\xba\x91\x87\x4a\xe3\x81\xdb\xdc\x81\x89\x37\x0f\x17\x3c\xd0\x65\x0a\x87\x9c\xe8\xb8\x9d\x10\x74\xa4\xe3\x76\x42\x30\x1e\x11\x30\x94\xc7\xed\x84\x78\x6f\xce\xbe\x3b\x6e\x87\xe6\x0e\xbf\xa4\xb9\xb7\x13\x72\x63\x24\xfc\x2a\xb8\x24\xd9\x83\xf0\x53\x7b\x80\x51\x1d\xcf\xf7\x3c\x6e\x7b\xc0\xb9\x16\x53\x62\x1e\xf7\xd7\x83\x85\x17\xa1\x1d\x70\x8a\x6e\xc7\x3e\xa4\x39\xf6\x2f\xc4\xde\xe8\x80\x0c\x11\x28\xc7\x8e\x6c\x39\xe4\x88\x40\xa8\xce\x1e\x32\xc4\xe3\xb1\xef\x6e\x9e\xc7\xbe\x73\x21\xb7\xb9\x15\x1f\xfb\xfe\x60\x70\xb4\xef\x8f\x7d\xc7\xff\xe3\xd8\xd3\x4a\xed\xe8\x0b\x3d\x6c\xee\x63\x3f\x65\x30\xdc\xfa\xe4\x21\x83\x01\x42\x66\x62\xc0\x40\x9e\xdc\x0a\x1c\xc7\x26\xed\x94\x46\x3b\xaa\xa4\x2a\x69\x5a\xec\x84\xb6\xa4\x2d\x4e\x28\x92\x6e\x49\x30\x98\xa3\xbc\x3d\x35\xfc\x40\xe8\xbd\x49\x2a\x92\x50\x8b\xd8\x9c\xa7\x2a\x34\xd0\x93\x55\x74\x62\x20\x10\x02\xfb\x4e\x9e\x2a\xd5\xc0\xfb\xfb\x16\xb3\x69\x15\x8f\x76\xa4\xf4\xa9\x56\x7d\x62\xab\x3b\xb0\xae\xe5\x89\xad\x4e\xc8\x8d\x9d\x73\xaa\x68\x9f\xf5\xb2\x98\x35\x0c\x69\x9e\x8a\xfc\x72\x4a\x9a\x70\x48\x86\x43\xde\x0a\xe4\xf6\xf5\xc9\xae\xe3\x7f\x70\x10\x86\x97\x27\x77\x91\x42\xe0\xe0\x90\x67\x73\x34\x9a\xe3\x8d\x34\x3b\x55\x9b\x81\xdc\xe0\x2e\x67\xb3\x53\x78\x09\x1e\x07\xdc\xfb\x6c\xf6\x0a\x67\xed\x03\x5e\x75\xe2\x25\x98\x27\x0a\xf7\x71\xd8\x5c\x15\xee\x53\xfb\x60\xb5\x52\xdb\x41\x10\xd4\x71\x20\xdf\x8d\xed\x10\x02\xa3\x72\x12\xe7\xf1\xc1\x5b\x8c\x5f\xeb\xb6\xad\xd3\x36\x74\x5f\xc3\x3d\x84\xb7\x18\x0d\x51\x3c\x9c\xaa\xef\xe1\x97\xb6\xad\x3b\x09\x68\xb5\x86\x80\x08\x89\xf7\x6f\x9e\xdd\x49\x40\xcb\x3f\x0e\xf4\xc4\x53\x2d\x1f\x08\xac\x39\x79\xaa\xe5\x1b\x3c\x72\x1c\x6c\x0e\x83\x47\x84\xe8\x6c\x04\x02\x49\x3e\x88\x9d\xad\x6c\x38\x89\x10\xd5\x65\x14\x76\x14\x7f\xf6\xe3\x38\xfd\xd2\xe6\xe2\xcf\x8e\x71\x3b\xcf\xb0\xb5\x18\x6e\x30\xa8\xe7\x19\xb6\x16\xe3\xc8\x71\xf8\x6b\x97\x75\xbe\xd0\x3b\x87\x33\x03\x40\xf2\xe4\xde\xf4\x38\x50\xf2\xcf\x61\xa5\x03\x7b\x17\xb2\xf7\x54\xfa\x00\xe5\x38\xac\x41\xf1\x03\x44\x75\x85\xab\xed\x9c\xc3\xbe\xc3\x79\x4e\xd5\x66\x20\x76\xf4\xd0\x53\xb5\x19\xe8\xdd\xa6\x69\x31\x38\xf1\xa0\x3a\x0e\xd4\x98\x73\xba\x9c\x5f\x48\x62\x0b\xf3\x54\x6b\x26\x3e\xa3\x1c\xf8\x80\xa4\x01\x1a\x42\x84\x5b\x48\x3d\xf4\x5c\xec\xee\xd3\xb5\xab\x6a\x03\xf4\x48\x8a\xc9\xe9\x0d\x82\x38\x3c\x19\x1a\x04\x91\xd5\x15\x78\x22\xb6\xab\x2b\x10\x08\x3c\x5b\xb2\xba\x02\x0d\x3e\x38\x2a\xc6\x11\x83\x0f\xb2\x12\xf2\x7a\x54\x36\x56\x75\x02\x81\x20\xba\x28\xab\x07\xb7\xca\xf5\xc7\x81\x49\x2d\xab\xfa\x43\x35\xc6\x0c\x56\x5c\xb5\xc8\x00\xa9\x7c\xa9\x97\x15\x38\x59\x78\x5a\xa4\x0e\xfe\x42\x0f\xf4\xba\xea\x64\x55\x8e\x3d\x47\x6d\xb4\xcd\x63\x0f\x10\x5a\x3d\xaa\x3a\x40\x55\x44\x57\xf8\x51\x55\x44\x03\x89\x55\x3a\xab\x32\x18\x28\x47\xcd\xdf\x70\xe0\xae\xea\xa4\x40\xaa\x82\x55\x4f\x28\x40\x1e\x21\xc9\x96\xab\xb9\x56\xdb\xa4\xe6\x0a\x44\xab\x92\x58\x66\xf5\xfe\xea\x7f\x27\xae\x3a\x71\x40\x1e\x21\xc9\x0a\xb8\xb8\x39\x9a\x13\xc2\xc5\x8d\x10\xc5\x71\xe0\xe2\x26\xab\x42\xaf\xc1\xf7\xab\x42\xaf\x1a\x1e\xd3\x1a\x24\x7f\xed\x61\x9d\xb5\x9d\x61\x7d\xbe\x4f\x03\x67\x15\x06\x9f\x7b\xbc\xac\x8a\xae\xe6\x02\x52\x74\x55\x75\x63\x56\xad\x01\x17\x49\xa4\x44\x39\x1a\x5c\xad\xc9\xf9\x81\x3c\x8b\x24\x9a\xdb\xf0\xd1\x3a\xec\x7d\xd3\x40\xd0\xf4\xd1\x0a\x49\x4b\x12\xf3\xd6\x10\xc8\x46\x52\xa4\x3e\xf4\x87\x86\x3f\x7d\xe8\x13\x5f\xed\x72\x68\x12\xd2\x59\x5b\xc8\x83\xa5\xd7\xb9\xcc\xc9\xde\xa8\xd5\x25\xda\xdb\x94\x86\x20\x69\x15\xd2\x92\x44\x57\xb9\x51\xcc\x2e\x03\x07\x52\x9e\xde\x65\xe0\xfa\x6f\x1f\x81\x78\xd4\x7f\x3b\x3b\x61\x1e\x47\x70\x42\xeb\x18\x8c\x85\xc4\xea\x9b\x5d\xa3\x01\x10\x1d\x85\x5c\xaf\xe6\xd4\x85\xf9\xc0\x09\x27\x75\x61\x16\x7a\xa0\x93\xea\xc2\x9c\xba\x30\x1f\x5a\x2a\x75\x61\x16\x82\x2b\xed\xd4\x85\x39\x75\x13\x3e\x88\x28\x4d\xdd\x84\x85\x3c\x30\x8f\xe8\x26\x9c\x9d\xe8\x86\xc3\xc3\x63\x57\xa5\x02\xa2\xdb\x0e\x35\x2a\xfd\x62\x0f\xac\xfb\xa9\x5f\xac\xd0\x13\xf5\x5e\xbf\xd8\xd4\xbb\xf5\x48\x66\x46\xef\xd6\xc4\x47\xb5\x9c\xb8\x6e\xa5\x4e\xaa\x42\x72\x31\x96\xfa\xa8\x66\xe0\x83\x73\xe2\x8a\x98\x81\x0f\x8e\x10\x1d\xa6\x1b\xf8\xe0\x64\xe0\x07\x71\x6e\x2c\xcc\xc0\x0f\x42\x88\x0d\x0e\x1b\x6a\x37\x81\xa3\xe0\xb9\x15\x6a\xf0\xfc\x04\xa4\x22\x3e\xe4\x75\x40\x39\x37\x84\x77\xc8\xec\x80\x38\x61\x3b\xa1\xb4\xd5\x59\xf6\xfc\x6a\x70\x9e\x81\x72\xaa\xff\x86\x62\x0e\x48\x2e\xf2\x32\x14\x73\x81\xbb\xc4\xa9\x16\x11\xb8\x4b\x08\x3d\x31\x0e\x85\x87\xb1\xf0\x30\xb6\x59\x01\x53\x1f\x2f\x4b\x2c\x27\x71\x45\x19\xf2\x44\xe0\x3d\x84\x42\xb2\xce\x2b\x29\x16\x7c\xaa\xc1\x08\x08\x0f\xd3\xa1\xc1\x28\x38\xae\x9f\xdc\xeb\x66\x28\xc0\x80\xc0\x25\x32\xc3\xe3\x3a\x10\xc5\x2f\x3d\x64\xe9\x15\x7c\x16\xdb\x26\x83\xd5\x2b\x58\x35\x48\xaf\xe0\x8c\xf7\x58\xf4\x16\xa3\xa3\x9e\x8b\x80\xc0\x15\x39\x63\xfa\x6b\x93\xf1\x20\xc4\x3d\xf1\x24\xfe\xa0\x77\xf4\x4e\xfd\x89\x33\xb0\x07\x9c\xc5\x1a\xe4\xcd\x40\xe0\x4b\x99\x21\xef\x0d\x62\x24\xcf\x02\xff\x09\x39\x2d\x10\xdd\x05\x22\xa3\x8d\xdb\x62\xe8\x8a\xa1\x71\x05\x88\xc3\x61\xbb\xbf\x62\xdc\x39\xb1\x63\x74\x0e\x16\x52\xd5\x4b\xe7\xe0\x0c\x0e\x1c\xa7\x86\xfc\x70\x7b\x00\xa9\x22\x17\x1e\x38\xf4\x21\x3e\x8b\x9d\x97\xd1\xea\x43\x7c\xba\x28\x35\xb7\xe8\x09\x7c\x6a\x22\xd0\x13\x38\xf3\xb4\xb9\xcc\x7c\x6a\x40\x07\x62\x63\xe6\xd3\xf3\x40\xba\xb1\xf0\x5d\xc8\x74\x63\x01\x41\xec\x71\xa6\x1b\x2b\xd1\x59\xcf\x82\xc9\x32\xdb\x47\x83\x21\x31\x1e\x29\xb3\xc4\xdb\xb6\x9c\x38\x7d\xa4\xee\xb6\x42\x0f\x94\xf3\x94\xe5\x25\xee\x17\xa7\x26\x82\x54\xf3\x04\x52\xc5\x33\x55\x3c\x13\xf5\xf1\xc4\x33\x2b\x53\xf5\x11\x08\x3c\x48\x32\x55\x1f\x81\xe4\x4a\x3b\xf5\xd3\x4d\x9d\x72\xcf\x9d\x05\xa2\x53\x6e\x66\x58\x29\xab\x21\x35\xff\x02\xef\x8e\x83\x64\xa5\xc4\xd5\x9f\xbf\x25\xa6\x3b\x53\xc5\x11\x48\x95\x77\x5c\x7f\x5f\x70\x20\x98\xcc\xd4\x88\x9c\x9f\x9b\xd2\x01\xc9\x81\xc0\xae\x7c\xee\xf6\x5a\xbb\x32\x10\xc4\x54\x65\x6a\x57\xd6\x51\xf8\xdc\xd1\xa3\x75\x14\xce\xcf\x51\x38\x2d\x66\xa5\x97\xc5\x58\x54\xfa\xf1\x0a\x79\x70\x7a\xcc\xeb\x2b\xc6\xb6\xd8\xd1\xfb\xf5\xe3\x15\xd2\xf3\x5e\x0e\xdb\x31\xe4\x74\x34\x6d\xd8\x0e\xb4\xa9\x73\x6f\xd2\x5c\x53\xb8\x0c\xaa\xbb\xa7\xda\x14\x90\x04\xb9\x64\xaa\xf9\x02\xa9\xb1\x3c\x65\x1c\x89\xf5\xe4\xdc\xd1\x35\x52\xeb\x09\x90\x6a\xe0\xba\x09\x0b\x89\x97\x44\xea\x26\x2c\x94\xd3\xbb\x10\xfd\x84\x85\x3c\x9c\x70\x15\x64\xe0\x2d\xc6\x70\x78\xa7\x06\xa4\x87\x83\xd4\xfa\x8c\xb7\xef\x5b\x8c\x4e\x4d\x47\x6d\x32\x6a\x28\x29\x39\x1d\xb5\xe9\x8c\x3a\x2f\xda\x20\x81\x3c\x1c\x6f\xd5\x41\x3d\x80\x4f\xfc\x57\x52\x0f\x60\x21\xba\x93\xac\x72\x87\x87\xef\x5b\x8c\x6e\x69\xf7\x4d\xe3\xa1\x5d\x8c\x9a\x64\x72\xd9\x53\x18\x6e\xaa\x95\x03\x71\xfa\x6b\x2a\x77\x89\x1f\xe2\x79\xa0\xd2\xa6\x4c\x27\x65\x3a\xa7\x24\x47\x9c\x58\xc5\xf3\x40\x3a\xa6\xda\x1d\x90\x1e\xe4\x52\x63\x4b\xe2\x1e\x70\x1e\x9b\x34\x37\xd4\x0b\x79\x70\xda\x4d\xcd\x28\xba\x1d\x9f\x47\x61\x9a\xb5\x72\x00\xe9\x79\x4f\xb7\xe3\xd4\xed\xf8\xf4\x20\xae\xdb\x71\x5e\x84\xd3\x9e\x8e\xef\xa5\x4c\x06\x82\x98\x87\xbc\xbc\xdb\xbb\xf0\x43\x3c\x6d\xdc\xa5\xc6\x77\x99\x67\x04\x3d\xeb\xf2\xf4\x7f\x35\x7b\xcf\x1a\xbf\x3c\x63\x03\xf9\xfd\x9a\xec\x0a\x28\xe7\x81\x8e\x7d\xc9\xaf\x80\xd8\xbe\x62\xfe\x9a\x42\xff\x40\x6b\xbb\x14\xfa\x40\x54\xdb\xa1\xd0\xbf\x38\x28\x9f\x07\x0c\xf1\x92\x5f\x01\x21\x57\xbb\x3c\x28\x03\x3d\xc3\x2f\xbf\x0a\x1c\x10\xd6\x9b\xde\xc9\x79\x85\x33\xc3\x29\xe2\xf2\x84\x0a\xf4\x6e\x05\x32\x9a\x2b\x9c\x19\xf4\xd8\x4b\xa1\x0f\xe4\x51\x2d\xc6\xcc\x5c\x72\x95\x83\x63\xc2\x25\x57\x01\xf2\xe0\xbe\xed\x92\xab\x5c\xe9\x80\x70\x80\xbc\xd4\x28\x81\x3c\xaa\x5f\xda\x8e\x64\xb2\x4e\x6c\xd2\x97\x9c\x06\x48\x59\xd9\xe5\xcd\x14\x90\x38\x61\xe6\xe5\xcd\xd4\xc5\xb1\xed\x3c\x37\x69\xb7\x34\x74\x7d\x36\xfd\xe5\xb1\xed\xc2\x49\xf2\x54\x6f\xb9\x3c\x64\x03\x71\x3a\x09\xaa\xa7\x40\x14\x2b\x50\x3d\xbd\x54\x5b\x4e\x96\xe0\x25\x77\x03\xe2\xb0\x02\xd5\x96\x4b\x3d\x80\x0c\x41\x79\xa9\x07\x00\x49\x8c\x70\x5e\x6e\xd3\x8b\x8b\x9d\xf3\xb4\x57\x5e\xec\x00\x11\x45\x92\x43\xe4\xd6\x25\xeb\x4c\x5e\x6e\x5d\x20\x3d\x63\x5f\x6e\xdd\xeb\xb6\x57\xc8\xbd\xcb\x13\x17\x10\xdf\xbc\xa8\x41\xe8\x97\x7e\x9e\x88\x69\xfd\xd2\x85\x38\xd1\xf4\xf5\x4b\x17\xf2\xeb\xa8\xbb\x59\x57\xf5\x93\xb4\x36\xa9\xab\x7a\xea\x35\x7e\x9e\xd4\xa0\xd7\x78\x0e\x39\x52\xe5\x78\x3e\xec\x2a\x90\x85\xe3\xc5\x90\x23\xe9\xf2\x7c\x36\xf6\xae\x2e\xcf\x42\x12\xc0\x98\xba\x3c\xa7\xde\xc7\x27\x49\x3d\x52\xef\xe3\x9c\xa4\x0d\x3a\x1b\xac\x71\x6a\xe0\x03\x42\x36\x38\x35\xf0\xe1\x36\x5c\xce\x0e\x97\x9a\x9a\xe9\x80\x70\x91\x4f\xef\xc3\x81\x2c\xdf\x97\x43\xd2\xf0\x4b\x69\x53\x9a\xca\xee\x09\x89\xb6\x4d\xd5\x8a\xbe\xfd\x7a\x44\x77\x4e\xb5\x0e\x20\x3c\x02\x4f\x77\xf1\xec\x36\x93\x03\xce\xd4\x90\x05\xf4\x6e\x07\x55\x44\x74\x6b\x3e\x3b\x7a\xba\x6e\xcd\x39\x71\x24\x3a\xbd\x64\x9d\xea\x13\x40\x6c\x28\x7f\x53\x73\xd4\xe4\x8c\x76\x76\xe4\xc6\xf4\x8c\x36\xf5\x39\x81\xf9\x4f\xb7\xca\x24\x17\xce\xd9\x59\xca\xd3\xa5\x0c\x44\x65\x13\x4c\xaf\x6c\x27\x91\x96\x27\x69\x18\x72\x2a\xac\x80\x20\xc5\x47\x4e\xf5\xe3\x89\xed\xe2\x8c\x62\xb1\x47\x1a\x9e\xa6\xc8\xd1\xe9\xbe\x98\x77\xb5\x18\x34\x57\x1a\xd0\x3b\xcb\x60\x6a\x27\x00\x42\xa9\x3c\x95\x24\x53\xb1\x11\x08\xa6\xa9\xd8\x00\x7a\x34\xbf\xb4\xa3\x9c\x15\xcf\x40\x09\x9d\x9e\x15\xa7\x91\xf0\x9c\x8a\xa7\xca\x30\x3e\xbe\x6f\x31\x06\x44\xb3\x37\x10\x5b\x91\x64\x05\x8f\xbf\xc6\x9e\x9d\x9a\x13\x80\x20\x99\x40\xea\x16\x9c\x0b\x07\x93\x93\xbc\x61\xb9\x74\x30\x01\x82\x2c\x48\xb9\xd4\x8f\xd7\x69\xe7\xd9\x2a\x4b\xcd\x17\x88\xbd\x59\xac\x4b\xc2\xab\xe5\xfb\x32\x24\x31\xa5\xfa\x11\x2c\x6d\xe8\x4b\x1b\x3a\xcd\x5d\xda\xd0\x97\x07\x4f\x9c\xb3\x73\x79\xf0\x04\x42\x1b\xfa\xf2\xe0\xb9\x70\xec\x38\x03\x3d\x6b\xe9\xd8\x01\x04\xf1\x92\xb9\x74\xec\x58\x38\x9a\x9e\x81\xd4\x58\x8a\x2f\x20\x88\x97\xca\x85\xa3\xa9\x10\x3b\x47\xd6\xd5\x2e\x49\x0e\x5b\xf8\x6b\xb6\x0d\xdb\x72\xa0\x91\x2c\xf5\xf4\xa5\x2c\x0c\x4e\xe2\x4b\x59\x08\x04\x09\x3e\x72\x29\x0b\xf5\xa6\x3e\x35\x14\xea\x4d\x2d\x04\xf1\xae\xa9\x37\x75\xea\x4d\x7d\xe2\xac\x9e\x7a\x53\x0b\xb1\x7d\x5f\x4e\x49\x0c\x25\x21\x70\xb9\x34\xe0\x00\xd9\x58\xa8\x78\x5b\x7f\xf0\x16\x83\xe6\xfe\xc3\xa9\xfa\xa5\xf1\x73\x6a\xe2\xcb\x70\x73\xb6\xee\xf2\xe8\xbc\xc2\x1a\x8a\xc5\xac\x81\xb0\x02\x72\x0f\xe4\x52\x5f\x5f\x8a\x51\xd2\x47\xe5\x52\x8c\x02\x59\x50\x29\x97\x62\x74\xa9\x9c\xeb\x83\xb0\x54\xce\x81\x50\x92\x2c\x45\xe6\xba\xfc\x35\x74\x9e\xe5\xb1\x1b\xc8\xc2\x36\x5d\x0a\x3e\x20\x3c\x67\x2d\x05\xdf\xe2\x0a\xf4\xd4\x46\xb2\xbc\x02\x05\xd2\xfb\xc3\xe5\x15\xe8\xc2\x3f\xf6\x4c\x18\xf8\x92\x37\x00\x59\xc2\x3a\xed\xe8\x45\xfc\x84\xcb\xed\xb2\xa3\x24\x46\x39\x49\x5b\x92\x4b\x55\x1f\x08\x5c\xb3\x73\xa9\xe9\x03\x51\xd0\x45\x97\x9a\xfe\x22\xea\xe7\xcc\x53\xda\xf7\x6b\x48\x78\xd7\x8c\x0a\xfb\xe2\x06\xf4\x4c\xce\xa7\xcb\x1b\xd0\xa5\x07\xa0\x2b\xd0\x93\xfe\x52\x13\x4f\xa4\xfe\x52\x13\x5f\x26\x1e\x74\x96\x65\x6e\x6b\x3a\x7d\x6e\x22\xad\xdc\x40\x7a\x1b\xb3\x54\xce\xd7\xb2\x57\x48\xd6\xa5\x90\x03\xd2\x8b\x91\xe5\x49\x7f\x11\xba\x70\xa6\x23\xae\x01\x15\xe8\x81\x86\xb6\x54\x04\xd6\xed\xf4\xb9\x04\x55\xbb\x81\xd0\xae\xa6\x1b\xbd\x10\x07\x42\x5f\x37\xfa\x5c\x8f\x5f\x3a\xcb\xda\x4f\x97\xf6\x53\x77\x87\xc7\xfa\xa5\x3a\x4d\xd4\x61\x2e\xd5\xe9\x65\x14\x9f\xec\x48\x75\x5a\x37\xfa\xfa\x6d\x70\x6d\x68\xba\xd1\x47\xb3\x98\x8b\x81\x8b\xc4\xba\xb9\x89\xbc\x48\x04\xc2\x1b\xec\x25\x47\x5d\x2f\x17\x7d\x8b\xd9\x36\x87\xf2\xc1\x6d\xf4\xab\xd4\xa1\x44\xe8\x57\x82\x6d\x53\x0f\xfc\xbc\x31\x1c\x54\x6d\x68\xb7\x86\x03\x20\x48\x51\x90\x3a\xe5\x27\x8e\xf8\xa5\x6a\x43\xbb\x65\x96\x40\xd4\xaf\x58\x4a\x42\xc0\xb6\xed\xd7\x25\xf7\xed\x79\xe1\xc6\x13\xb9\x92\xc2\x2b\x6f\x2f\x1a\x6f\xf3\x2c\x71\x26\xbe\xd5\x43\x80\x52\xc9\x5d\x93\xb7\x8a\xc8\xad\x2b\x32\x17\x49\xb7\x17\x8d\x06\x0a\x54\x3d\x2a\x0c\x14\x10\xc2\xe3\xa3\x81\x02\x79\x57\xc7\x6b\x97\xb6\xa4\x21\xb9\xed\x8d\xf7\x85\x40\x7a\xb9\x74\x7b\x5d\x78\xc3\xd2\xeb\x86\x56\x71\xcb\xd2\x81\x20\xa3\x59\xde\xb2\x74\xe0\x2d\xc6\xaf\xe9\x8c\x07\xa4\x0e\x4d\xb7\xb7\x8a\x77\x73\x15\xc0\x12\x6e\xcf\x32\x40\x96\xf0\x4b\x07\x1a\x43\x75\xdd\x38\xb8\xdc\x1a\xaa\x81\xde\x31\x25\xde\x1a\xaa\x89\x3a\x28\x75\x3b\x6d\xc8\xd7\xde\x87\x31\xe2\x4b\xbd\x49\x88\x34\x78\x8b\x51\x83\xac\x1f\x08\x22\x17\xf3\xd6\xf4\x09\xbc\xc5\x18\x23\x6d\x9f\x40\xca\x3a\x6e\x05\x04\x90\x64\xff\xca\x5b\x01\x71\x23\x20\xaa\x86\xd4\x5b\x01\x01\x64\xe9\x92\xec\x81\x1e\x80\x88\x91\x5b\xf9\x60\xf4\x43\xc5\xcb\x3d\x8d\x7e\xc8\x3b\x5c\xa0\x30\xe1\x5b\x7b\xcf\xad\xbd\xa7\x33\x94\xea\x67\xc0\x5b\x8c\x9f\x53\x41\x03\x52\x03\xe6\xed\x69\xec\x4e\xe7\xcf\x71\x53\x18\x00\xa1\xa6\x7a\x2b\x0c\xee\x74\x1d\xc1\x74\x6e\x0d\xf7\x40\x12\x09\x94\xb7\xc7\x2c\x20\x8b\x0b\xd5\x63\xd6\x7d\x39\xba\xf0\xa1\x5b\x61\x70\x7b\x0a\x62\xc7\xde\x0a\x03\x62\x26\x4a\xd5\x3c\x74\xeb\x23\x03\x04\xa9\x36\xd2\xf8\x89\x24\x66\xe2\x2d\xc6\xf0\x6a\x0a\x02\xa2\xa2\x17\xdd\x1e\x96\x0c\x96\xa8\xda\x7d\x0d\x96\x10\x52\x2f\x1f\x83\x25\xf2\x1e\xae\x4a\xf8\xd5\xad\x34\x00\xa2\x5a\x81\xd2\x00\x88\x1d\x45\xf4\xd6\xee\x73\x0f\x47\xd7\x69\xd6\x3c\x0c\x64\xf9\x7e\xcc\xce\x3f\xce\x95\x23\x2e\xa7\x03\xa2\xa1\x3e\xdd\xba\x47\x18\x91\x50\xf5\x6b\x34\x22\x21\x1f\xf2\x16\x54\xaf\xac\x1e\xd5\x2c\x20\x2a\xd3\xfc\xa8\x65\x3d\xae\x71\x15\xec\xa7\x7d\xb4\x87\x1a\xde\x71\x7b\x5c\xe3\x86\x07\xd4\x5d\x9a\x0b\xe9\x21\xa7\x59\x25\x5c\x2a\x1f\xe7\x19\x88\x1d\xe3\xd8\xa3\xa3\x27\xce\xfb\xa5\x92\x19\x30\xf5\xde\x17\xf2\xc4\x44\xfa\xa8\x1a\x3c\x4e\x20\x71\xe9\xf9\x38\x81\x40\x12\x99\x98\x8f\x13\xf8\x38\x81\xea\x9d\xcf\xf5\x7d\x8a\xc9\xef\x2b\x76\x49\x1a\x16\xa3\x52\x85\x3e\x90\xa4\x80\xc8\x47\xa1\xff\xcc\xef\xd7\xf8\x54\xc9\x0a\x44\xc7\xe4\xf7\x28\x59\x75\xc1\xaf\x9a\x9b\x74\xc1\x17\x92\x6c\x73\xa9\x0b\x7e\x3e\xc8\xc2\xba\xb3\x44\x1e\x65\x21\x10\xa7\xbf\xa6\x2c\x7c\xf0\xd0\xa9\x3a\xcd\x3f\x7a\xe8\x00\xdd\x9b\xe7\xc7\x33\xc2\xc3\x81\xa0\x6a\x0c\x7a\xee\xaf\x86\x9b\x4a\x77\x48\x4e\x16\xf2\xb1\x6a\x42\x7c\x94\x8f\x40\x57\x4d\x7e\x5c\x35\x8f\x12\xcd\xeb\x93\x47\x89\x06\xc4\xc9\xad\xed\xa3\x44\x33\x3c\xa0\x62\xd0\xba\x0c\x0f\xb8\x36\x2c\xe6\x15\xe3\xe0\xb5\x71\x22\x10\x82\xd0\xfa\x6b\xc3\x62\x7e\x6d\x1c\x12\x2a\xe6\xde\x6b\x43\xca\x09\x79\x1e\x7e\xd9\x25\x85\xc5\x02\x5a\x4a\x73\xc8\x2d\x76\x49\xb2\xf7\xef\xae\xbc\x36\x96\xaf\xd0\x49\x19\x77\x6d\x2c\xdf\x6b\x53\x8c\x61\x98\xb9\xb6\x6a\x43\xc8\xa7\xc1\xf5\xe2\xb5\x21\xc6\xae\x8d\x08\xb5\x7a\xbc\x5c\xea\xda\xaa\x35\xe0\x5f\xbe\xed\x92\x06\x24\x85\xd1\xd1\xf8\x35\x84\x91\x10\xdc\x95\x5c\x1b\xc2\x48\x28\xf5\xe8\xb4\xad\x39\x20\x08\x23\x12\x09\x5f\x5b\xb3\x1d\xdd\x5f\xeb\xbf\x1e\xd3\x7d\x6d\xdd\xca\x34\xa8\xed\x05\x92\x95\x29\x36\xb8\xbd\xbf\xb6\xfe\xfd\x32\x0c\xa5\x31\x49\xdd\x1e\xba\x41\x49\x08\x73\x19\xc3\x21\x04\xdc\xf4\xda\xc2\x0a\x64\xd7\x47\x52\x2c\x3f\x1a\x95\x5a\x2c\xad\x94\x1c\xb7\x95\x3b\xe5\x6b\x4b\x2b\x4d\x12\xf6\x7d\x24\x2b\x95\xab\x13\x6a\x75\x6d\xe9\x94\x27\x91\x4a\x85\xb1\x49\xa7\xdc\x3d\x4b\xae\xe4\x6b\xbb\x9c\x72\xec\xef\x38\x48\x5e\xdb\xe5\x84\x70\xa9\x5a\xbf\xd5\x32\x9c\x5f\x5c\x3e\xbe\xe6\x4e\x7b\x85\xc1\xb9\x9e\x4e\xf9\x74\x65\x18\x06\xe6\x24\x4d\xbf\x5c\x56\xda\x58\x67\xcb\x4a\x17\xc1\xc9\xc1\x94\x2f\x2b\x5d\xfe\x5a\xb7\x98\xbf\xf6\x42\xb4\x9d\x2e\x2c\x7f\xcd\xcd\x48\xc0\xf9\x65\xfc\x87\x10\x24\x42\xba\x88\x05\xf9\xe9\x32\x88\xa3\x9e\x2f\xbf\xbe\x0a\x87\x99\x0b\x9f\x5f\x3a\xb0\x4b\xd8\x2f\xfc\xc6\x29\xb3\x0f\x49\xdc\xa1\xbd\x9a\xcc\x65\x92\xef\x8b\x24\xde\xfb\x09\xe5\xb1\xcc\xbb\x83\x71\xbd\xbc\x0e\x7f\x08\xd7\x36\x57\x81\x6e\x39\xd7\xf9\x32\x03\x7c\xcc\xae\x2a\xa5\xbe\x12\x82\xf0\x8b\xcb\x44\x86\x57\x7b\x45\x4b\x7d\x35\xb5\xab\x4d\x29\x2f\x8b\xa8\xe7\x5b\xa6\x5b\x86\x64\x56\xed\x3d\xe4\x5c\x24\x8f\xfa\xe9\xea\x6f\x23\xda\xf1\x7e\xe5\xd5\xf3\xc5\xbd\x6d\x72\x53\x7e\x79\x6d\x7b\x05\xe1\x5c\x24\x66\xbc\xbc\x41\xbd\xe2\x9d\xb4\xc6\x24\x04\xa1\x3a\x57\xbc\xec\xaf\x6f\x6f\x19\xaf\xe4\xae\x7c\x95\xc8\xe4\xca\xe6\x4a\xec\x5f\x57\xe2\xa6\xb6\x91\x81\xf1\x22\x1b\xce\x07\x2f\xed\xfd\x31\x53\xdb\x5c\x5e\x68\x6d\x58\xaa\x2f\x2f\xb4\xae\x34\x17\x24\xbe\x7c\x57\xba\x2a\x81\x8e\xff\xf0\x95\x18\x49\xaf\x7c\xa7\xac\xbf\xa7\xc2\x4b\xf3\xfb\x75\x61\xac\xa8\xf5\x15\x72\xd7\x85\xb1\x42\x08\x42\xa3\xae\x4b\x36\x74\xc9\x86\x5e\xad\xf0\xba\x64\x43\x1a\xc7\x2b\xc1\x2a\x97\xc6\x71\x21\x08\x3f\xba\x34\x8e\x0b\xa5\xd6\xc6\xaf\xa1\x16\x0a\x89\x4f\xf4\x75\xb9\xbd\xb1\x97\xbf\xc5\xa4\x75\x69\x86\x04\x27\xa4\x90\x94\x16\x3b\xa1\x5d\xd2\x0c\xbb\xb5\xd2\x21\x89\xfc\x01\x69\x9d\x53\xd2\xed\x97\x34\xd7\x51\xd3\x9c\x5d\x09\x5a\xbb\x34\x67\x0b\x3d\xfc\x34\xfd\xb5\x44\xb0\xe2\x43\x73\x69\xcf\x16\xb2\x14\x8b\x39\x6c\x9a\xed\x60\x16\x5a\xb8\x85\xf7\x4b\x2a\x4d\xc7\x8d\xd8\x59\xb9\xf7\x75\xd9\x8e\xcb\xa1\x64\x7b\x5c\x2e\xa2\xeb\xf9\xdb\x0b\x0e\x97\x06\x5d\x21\xb6\xa3\x41\x2a\x92\x1c\xdc\x57\xff\xbd\x86\x62\x0a\x08\xbc\x9f\x2f\x33\x94\x08\xa5\x36\x16\xa0\x29\x4a\x84\x24\xad\xfa\x35\x94\x5c\xc3\xac\x5e\x9b\x5f\x76\x49\xdd\x2f\x0b\xb4\x90\xc6\x91\x0d\xc9\x65\x6e\x13\x21\xc8\xf8\x7c\x99\xdb\x44\xc8\xf2\x75\x60\x48\x9a\xfe\xd8\x0e\x6d\x49\x73\xd0\xfc\x31\x06\x4d\xc3\x75\x25\x89\xe9\xa5\xe1\xfa\x1a\x8e\x50\xab\x94\x73\x84\x86\x59\x0b\xde\x0e\x68\x7c\xbe\xa6\xe2\xb8\x21\x10\xa6\x9d\x02\xa2\xc1\x55\xa6\x9d\x9a\xae\xdc\xc6\xe6\x9b\xae\xdc\xa9\x2f\x47\x91\xb4\x4b\x62\xda\xb1\xea\x5e\xd3\x55\x04\xe4\x61\xa5\x9c\x37\x2e\x8d\xbf\x15\xe5\xe9\xd2\xf8\x7b\x99\xac\xa2\x76\xf4\x02\x93\x55\x08\x41\xd6\xa0\xcb\x64\x15\x17\xf9\x25\x4a\xe5\x00\x76\x99\x60\x42\x08\x77\xda\x54\x0a\x01\x41\xe0\xfa\x35\x95\x42\xd3\xf1\xc0\x1b\xfb\xd2\xb0\x79\x2d\xb5\x0c\x72\xbc\x5d\xcb\x89\x01\x92\x60\xf6\x6b\x39\x31\x8b\xfc\x3a\xb5\x47\xfd\x75\x11\xbd\x38\xc3\x0a\xc9\x25\xe0\xb5\x38\xc3\x5e\x9a\x25\x2b\xc9\xb4\x2e\xcd\x92\x42\xe2\xb4\x7b\x69\x96\xbc\x34\x4b\xd6\xf0\x53\x4e\xa2\xd7\x67\x96\x44\xd4\x68\x96\xbc\x96\x02\x3f\x6c\xa7\x1c\x01\x48\x4c\xa6\x97\x86\xc4\x4b\x3b\x5f\x0d\x64\x9e\x76\xbe\x6b\x91\x59\xbc\x12\x8b\x76\xad\xb0\x56\x5c\x41\x71\x7d\xbc\x16\x9e\x84\xd7\xf2\x68\x87\x45\xfa\x22\x21\xc3\x07\x79\xc0\x5f\x4c\xcb\x70\x61\x21\x2c\x15\x8b\xf4\xa5\x89\x50\x48\x9c\x8c\x2f\xcc\x85\x3f\x5d\x9a\x03\x2b\xe9\xe9\x2e\xcd\x81\x42\xf2\x62\xc7\xa5\x39\xf0\xd2\xce\x57\x89\x05\xbf\xb4\x95\x5c\x9f\x11\x42\x55\x4d\x23\x84\x90\x04\xbd\x5f\x1a\x21\x2e\xec\x01\xa5\x62\xcf\xbd\x34\x08\x08\xbd\xb3\x6c\xb5\x07\x5c\xdf\x61\x97\x64\xb6\x97\x87\x5d\x21\x70\x31\xb9\x0c\xf5\xbf\xbe\xf3\x2f\x01\x48\x97\xe7\x5f\xa1\xbb\x44\x3d\xff\x5e\xb7\xbd\x4f\x06\xee\xb6\xf7\x40\x90\x3d\xf8\xba\xed\xfd\xad\xa6\x44\xd6\x99\xeb\x76\x8d\x02\x1d\x6b\xf9\x75\xbb\x46\x49\x12\x50\x6a\xb2\x94\x4d\x03\x20\x74\xc2\x88\x2e\x0f\x6d\x97\xc1\xda\x35\xeb\xdb\x2d\x83\xb5\x85\x20\x40\xfc\x32\x58\xfb\x7a\x34\x08\x64\xbc\x6d\x7b\x64\xf3\x40\x36\xba\xf0\xb8\x41\x3d\xb4\xb5\x0d\xc6\xec\xa1\xed\x7a\x58\x22\x0d\xbb\xd3\xf5\xb8\x44\x1e\x93\xcf\x1f\x1d\xd2\x21\x49\x3f\x1f\x2a\x0d\xdb\x81\xeb\x46\xc3\xb0\x74\x3d\x6e\x5a\x20\x49\x51\x7f\x3d\xb8\x6e\x08\x9d\xd4\xd4\xd7\x93\xd6\xc9\x0a\x69\x58\x87\xae\xc7\x15\xf2\x18\x25\xc8\xcc\x7b\x76\xbc\x08\xdf\x7e\x8b\xd1\x05\x45\x0b\x90\xad\xfa\x6b\x4b\x92\xbd\x3a\x2c\x66\xa5\xc8\x11\xbc\x4a\xae\xc7\xd1\x35\xa4\xbb\x6d\xaf\x80\x1f\x9e\x64\x84\x97\x96\xd0\x8a\xb4\x9d\x71\xeb\x90\x0e\x49\x07\xc5\xde\x85\x3f\x3c\xdd\x08\xd9\x4e\xbf\xac\x92\x6c\xc8\x3b\xa7\xc3\xf3\x88\x90\x84\x2b\x8e\xad\x5a\x69\xf5\xd7\x2a\xc5\xaa\xbf\x46\xa0\x6c\xaf\xb4\xad\xfa\x6b\x5c\xea\x37\xa2\x51\xc6\x86\x59\x4d\x08\xae\xf7\xc6\xc6\xa5\xbe\x90\xed\xdd\x6c\x83\x53\xcd\x07\x11\x76\x94\xb3\x8d\xf0\xfe\x18\xbd\xe2\x70\x23\x64\x3b\xfd\xfd\x29\x69\x5a\xcc\x4f\x97\x34\xae\x14\xaa\x3d\xb8\x25\xd9\xd1\x4a\xe7\xab\x1d\xc5\xcd\xbf\x75\x7e\xad\xd9\x51\x58\x1e\x09\x4a\x87\x27\x25\x21\xba\x5d\x6f\x0e\x2e\x21\xb4\xd5\x81\x6c\x8e\x06\xb1\x00\xcd\x9e\x37\x47\xa3\xb9\x16\x1a\x53\xd0\x6c\x2d\x16\x3a\x9e\xa8\x18\x5b\xb3\xb1\xdd\x0e\x34\xfa\xd9\x3f\x1a\x91\x46\x45\x92\x1d\xf8\x36\x42\xf0\x69\xd8\xda\x74\xbc\x83\x8e\xa6\xe3\x8d\xf9\x89\x07\x11\xc6\x96\x8e\x37\xb7\x18\x0d\x07\xbd\xb1\xa5\x03\xce\x2d\x46\x38\x6a\xe9\x80\xbb\xda\x50\x21\xc6\x76\xb9\xb2\x50\xfc\x59\x44\xc6\x73\x0f\x03\xb5\x5b\x79\xb7\xd0\x30\x50\x5b\x08\x94\x9b\x61\xa0\xb6\x50\x1a\x59\x95\x87\x81\xda\x42\x90\x8f\x79\x18\xa8\x2d\xbc\xc5\x3a\xb4\x47\x1a\xde\x9a\xaf\xbe\x3d\x8a\xeb\x0f\x08\x0e\xab\xc3\x70\x6e\xe1\xfd\xd2\x62\xbb\x34\x2c\x37\xcc\x31\xb1\xdd\x3f\x0d\xe3\x87\x1b\xef\x5f\x0d\xe3\x87\x87\x31\xba\x8d\xd0\x93\x61\x8c\xae\x90\xdc\xf1\x0d\x63\x74\x47\xf9\xc6\x23\xe9\x82\xe3\xf1\xbd\x62\xf5\x32\xb2\x61\xec\xa3\x50\x1a\xe9\x24\xc6\xee\x86\x04\xf2\xac\x92\x68\xdb\x8e\x59\xb7\x91\x7f\x6d\xec\x98\x75\x85\x7c\x4f\x81\xbf\x26\xb9\xc7\x8e\xac\x1d\x3b\x69\x30\x1b\xa9\x6b\xc6\xee\x02\x02\x02\x1d\x66\xec\xdc\xf7\x0d\x9f\xc2\x6a\x24\x91\x1d\x3e\x85\x25\x24\x72\x6a\xf8\x14\xd6\x30\x6c\xb3\xe1\x7f\x39\x0c\xdb\x14\xf2\xac\x34\x33\xec\x0d\x6e\x73\x0d\x7b\xd5\xd8\x71\x57\x11\x92\xdb\xdf\xb1\x73\x1b\x37\x76\xb4\xef\x46\x3e\xa9\xb1\xe7\x47\x33\x83\x2e\x5f\xa2\x7d\x8f\xdd\x61\xc5\x3d\x6a\x78\x9c\x1c\xfb\x97\xf4\xf6\x25\x19\x41\x39\x78\x2b\xa9\xb4\x3d\x4f\x68\x87\x34\x6e\xa9\x58\xc7\x87\x3c\xcd\xd0\xc8\x46\xb8\xd4\x30\x34\x52\x48\x64\xe8\x30\x34\x72\x18\xf3\xd8\x70\x99\x1a\xc6\x3c\x0e\x1e\xdb\x29\x0d\xb7\x96\xc1\x93\x3b\x1f\xe4\xc9\xce\xf6\xe1\x9d\x61\x68\x64\x83\xcd\x0f\x43\x23\x85\x24\xb5\xe9\x30\x34\x52\x78\x8b\x51\x2b\xa2\x45\x88\x96\x74\x0b\xd1\x32\x0e\x7b\x8f\x0f\xcb\xf0\x0c\x3c\x7c\x10\x86\x98\x90\x61\x78\xd7\x38\x65\xb8\xf8\xf4\x0f\x83\xa8\x84\xa8\xaf\x9e\x35\x8c\xa1\x1a\x06\x4c\x35\xbc\x70\x86\x01\x53\x42\x62\xad\x1b\x06\x4c\x0d\xc2\x9e\xde\x62\x01\xed\x96\xc6\xce\x7e\x65\xed\x30\xec\x69\x7c\x61\x4f\x48\x16\xc3\x9e\x84\xd2\xf0\x48\x1d\x27\x6a\xa1\x10\x58\x08\xc7\x29\x8f\x24\xda\xe8\x2d\x46\xa5\x2e\x2e\x20\x88\x97\x1f\x46\x1b\x8d\xb3\xdb\x8e\x83\x5f\x93\xaf\x01\xc9\x0b\x51\xc3\xf8\xa0\x41\xe4\x4f\x69\x44\x44\x0f\x43\x7f\x84\x3c\xab\x24\xc7\xc3\x65\xf9\xf5\xd4\xc9\x02\x92\xd7\xab\xc6\xe9\xb2\xe4\x21\x99\xb7\x18\xed\x4d\x7f\x2d\xfd\x35\x86\x32\xfd\x35\x27\x06\xd7\x9f\xa1\x29\x62\x7c\x11\x31\xaf\x0a\x38\x0c\x88\x11\x4a\xe3\x29\xb0\x51\xdd\xed\x40\x8f\xdd\x62\xbb\xa4\xcb\x62\x3b\xb4\x21\x0d\x2f\xe6\x57\x57\x1a\x55\x2e\xc9\x4b\x20\xa5\x91\xcb\x6e\x54\xae\xa6\x84\x20\x2f\xd9\xa8\xca\xd0\x8a\xe9\xaf\x71\xa7\x38\xaa\xe2\x11\xc8\x13\x99\x5f\x95\x8e\x40\x90\x4d\x71\xd4\xfa\x55\xa0\xbc\xf1\xc7\x58\xa8\xf5\x9b\x52\x36\x56\x75\x4a\x81\xc4\xa5\x7d\x54\xa7\xd4\x90\x9e\xc6\xdb\x2c\xc3\x90\x9e\x51\xd5\x6e\x2a\xdc\xba\xa6\x35\x24\x41\x98\x48\x6e\x62\x79\x3e\x48\xbc\x18\x87\x11\x3d\xa3\x3a\xba\x38\xb7\x0c\xcd\x3a\xa3\x7e\x9e\xcd\x6f\x73\x0d\x0d\x19\x4d\xa6\x5e\x99\x84\x26\x53\x07\x92\x03\xfc\x68\x32\x75\xde\xdd\x28\x8d\x74\x32\xc3\x87\x37\x84\xe4\x55\x97\x61\x50\xc9\x68\x38\x25\xb5\xda\xfd\xb5\x94\x86\xc3\xc4\xe6\x97\x97\x24\xe6\x0a\x9f\xe8\xd1\x1c\x4a\x20\xcf\x57\xe7\x1e\xcd\xa1\x04\xba\xac\xac\x39\x94\xc6\x9e\x34\xf2\xd5\x0c\x63\x4f\x86\xef\x6e\x34\xf2\x98\x0e\xcd\x55\xa3\x7d\x77\xac\xef\xa7\x86\xa3\x0c\x9e\x4f\x28\x4d\x65\xac\x2b\x0c\x81\xc0\xdf\x65\xf8\x94\xc2\xe0\xf9\x84\xd2\x1a\xcc\xa7\x2b\xf9\x80\x1e\x6c\xe6\xee\x18\x75\x7b\xda\x5a\x85\x96\xd2\xe0\xd0\x2c\x10\x9f\x52\x18\x1d\xd5\xbc\x35\x56\x65\x57\x71\x01\x92\x83\xe7\xe8\x2a\x2e\x40\xa8\x13\xfa\xd2\x81\x10\xdd\x1f\x53\x78\x75\x2c\x3c\x0d\xcf\xb0\xd1\xfb\x47\x7b\x05\x5a\x85\x35\x74\x2c\x3c\x42\x6c\x2c\x19\x1e\x47\x78\x81\x61\x93\x2f\x1a\x15\x23\x44\xdb\xe8\xa7\x62\xa7\xab\xe6\x77\x87\x2d\xec\x28\xaf\x1a\x7c\x43\x24\x67\xe8\x0e\x78\x87\x07\x6a\xfb\x1b\x86\x99\x60\x46\x19\x9a\xfa\x46\x28\x4f\x48\xe1\x38\x42\x79\x02\x44\xdb\x2c\x76\x4a\x82\xc9\xd2\x29\x63\x51\x84\xf7\x4b\x8b\x35\x69\x24\x5f\xfe\x0d\x8e\xe4\xc3\x7c\xea\x23\x54\x88\xf0\x1f\x1b\xa1\x42\x04\x24\xe9\x10\x46\xb8\x06\xc2\x09\xc7\x7f\x6c\x84\x13\x0e\x04\x2f\x17\x8c\x70\xc2\x43\x8e\x40\xba\xb1\x11\xce\x2e\xd0\xc9\xce\x32\xc2\x65\x0c\xc4\x89\x1e\x19\x2e\xe3\x50\x5f\x26\x98\x62\x84\xeb\x38\x3e\x7d\x59\xd2\xd7\x0e\xd6\xe2\x66\x9d\x8f\xa4\xc7\x2f\xf9\x35\xe5\x03\x10\x67\xa1\x19\xf2\x92\x70\x5d\x78\x30\x08\xd7\x05\x10\x18\x25\x47\xb8\x2e\x0c\x99\x69\xb8\xb6\x0d\x6d\xaf\x23\xbe\x19\x0f\x6a\x70\xc6\x81\x28\x4e\x9b\x33\x1e\xdf\x8c\x07\x43\xe9\x8c\x1b\x26\x81\x09\x68\x68\x92\x1d\xa6\x33\x6f\x1c\x4e\x87\xe9\xcc\x85\xee\xe8\x9a\xce\x7c\xa4\xfc\x30\xa8\x21\xdb\x47\x7b\xf9\x21\x06\xde\x91\xf2\x43\x82\x13\x4a\x23\xab\xcd\x30\x3a\x41\x08\x5e\xa3\x18\x46\x27\x0c\x8d\xb9\x0d\xff\x92\xa1\x31\x77\x24\x3e\x81\x0d\x2b\xfb\x48\x79\x24\x10\x6a\xd1\xe6\xfd\x1e\xe4\xfa\x2e\x0d\x0b\xd8\xc8\xcb\x4f\x39\x5f\xa7\x5d\xb0\xa7\x3a\x5d\x93\x85\x60\x68\xf4\x1d\xa4\x75\x2e\x8d\x0b\x8b\x61\x5e\x67\x21\x08\x5b\x1d\x97\xcb\xfd\xf2\x4c\x48\xc4\xd7\xb8\x5c\xef\x40\xba\xc7\x2e\xd7\xfb\xa5\x50\xf2\x90\x72\xc9\x4a\x81\x6c\x6c\x6c\xbd\xb5\x87\x89\xa3\x1b\x39\x4a\x86\x89\xa3\x85\x38\x61\x43\x26\x8e\x1e\x97\xab\x86\x1c\x25\xe3\x72\xd5\x00\x49\xfc\xd8\xb8\x1c\xf1\xab\xa5\xc5\x68\x6f\xf3\xd3\x17\x12\x83\xf7\xb8\x1a\x23\x7e\xa9\xd8\x92\x35\x6c\x68\x6a\x16\x62\xaf\x92\xec\x82\xb3\x80\x53\xd2\xd0\x38\x3c\xae\xf0\xd3\x26\xcd\x4f\xc3\xde\x4b\xf2\xd3\xb0\xf7\x4c\xea\x15\xf6\x5e\x3f\x4f\xe6\x0f\x77\xee\x0f\xde\x62\x05\x5a\x48\x0b\x7e\x8d\x2e\xa8\x8f\xe0\xc1\xfd\x16\xa3\xab\x6a\x8a\x40\x76\xb4\xd8\x4b\x45\x51\x6f\xea\x96\xac\x1a\x6d\xcd\x42\x9c\xac\x41\x4d\xcd\x42\x10\xf9\x32\x34\x35\x0b\xa5\x71\xf1\x30\x34\x35\x0f\xbd\x87\x09\x30\x1c\xda\x9a\x85\xc0\x81\x64\x68\x6b\x1e\xe6\xb4\x6e\x84\xe2\x0d\xed\xbe\x42\x27\xe5\xdd\xd0\xee\x3b\x06\x2a\x66\xc7\x29\x69\x0c\x55\x4c\x20\xe5\xb8\xc3\x99\x1f\x08\xd1\x8e\x65\x65\x0c\xb9\x0f\x90\x9d\x55\x39\xe4\x3e\xc3\x1c\xc2\x55\xd2\x92\xf4\xf8\xe5\x3b\x1e\xc3\x05\x02\x24\xd9\x91\xc6\x70\x81\x0c\x22\x01\x3a\x66\xc6\x31\x14\x54\x40\x76\x9b\xa6\xa0\x02\x92\x57\x18\xc6\x50\x50\x01\xef\x97\x27\x34\x7b\x80\xcd\x72\xff\xbe\xb4\x07\xac\xc0\x8e\x85\x67\x0c\x57\x20\x10\xbb\x43\xe4\x0a\x1c\xb8\x57\x76\x2c\x3c\x63\x78\xdc\x02\x92\xc4\x4a\x63\xe0\x7f\x30\x34\x7a\x77\xae\x66\x87\x46\xef\xa1\xd1\xbb\xe3\x3d\x33\x34\x7a\x0f\x7d\xae\x71\x3d\x1b\x5a\xbd\xc7\x44\x09\xea\xe4\xb5\x18\x53\x7e\x0f\xa4\x06\x01\xbd\xb0\x85\xee\xbe\xd2\x0b\x7b\xe0\x71\x5d\x3a\x31\x7c\x43\x97\x6b\x21\x70\x70\x18\xba\x5c\x8f\x09\xc7\xeb\x38\x00\x8e\xe9\xf0\x02\x89\x79\x72\x4c\x39\x1e\xf0\x16\xe3\x53\x2d\x1f\x40\x76\x66\x79\xaa\x40\x4c\x27\x86\x6b\x9d\x31\x9d\x18\x20\x92\x75\x34\x9d\x18\xa0\x74\x6e\x58\xc6\x74\x66\x80\xe4\x91\xeb\x31\x9d\x18\xe0\x2d\xe6\xa7\x29\x8d\x94\xe4\xa7\x6d\xb3\x57\x9c\x83\x3b\x97\x33\x63\x7a\x0e\x06\x82\x7c\x4e\x63\x3a\x31\xc0\x5b\xcc\xf6\x3e\xd2\x30\x2f\xd4\xdf\x20\xba\xa7\xe7\x49\xef\x17\x7a\xb1\x9d\x1e\x28\xbd\x5f\x20\x1c\x6b\x78\xbf\x20\xbc\xc5\x98\xa4\xee\x78\x11\x2b\xaa\x90\x9b\xb2\x2b\x20\x36\x47\x55\x76\x05\xe4\x8e\xe4\xd6\x53\x7d\x4c\x34\x29\x1c\x4e\xc6\x54\x62\x02\xa1\xc6\xaf\xef\xba\x10\xcd\x89\xec\x8e\x0c\x72\xaa\x97\xe2\xef\x3b\xe1\xa6\x5a\x3b\xfc\x72\x4a\x5a\x16\x63\xd6\x3c\x8a\x01\x81\x83\xc1\xf0\xe2\x63\x4c\x24\x72\x2f\xce\xa4\x12\x19\x48\x9c\x5c\xc6\x54\x22\x03\x5d\x11\x3a\x65\xad\x40\xba\xd3\xa7\xac\x55\x17\xfa\xce\xeb\x5e\x43\x17\x7a\x21\x4e\xd4\x4f\x5d\xe8\x85\xb7\x98\x34\xfb\x6e\x2e\x4e\x87\x5b\xd6\x0a\xc4\x76\xda\x5a\xfb\x1e\xa4\x68\x74\xad\x87\x5d\xc7\xd8\xbf\x7f\xa5\xec\x7a\xb8\x28\x76\x7f\xcc\x45\x61\x5e\x66\x5b\x96\x76\x1d\x73\x46\xd7\x28\x61\x1a\x70\x21\x9a\x5f\x6a\xce\x00\x52\x13\xca\xf4\x48\x04\x24\x39\x81\x86\x21\x00\x42\x9c\xae\x03\xf9\xbb\x57\x3e\x9d\x7c\x81\x63\xca\x0d\x70\x6f\xdf\x35\x7d\x79\x0b\x34\x74\x6f\xef\x64\x6d\x1c\xba\xb7\x8f\xcf\xbd\x1d\xa6\xa1\x7b\xbb\x90\x64\x0f\x19\x4b\xd1\x0e\xbc\x5f\x1e\xd0\xaa\x34\x56\x1a\x72\x51\x27\xf8\x81\xc7\xfb\x5b\xcc\x5f\x0b\x69\x24\xdc\xaf\xb6\x23\x25\xb1\x09\x91\xb2\xde\x3c\x09\xef\x97\xfe\xda\x90\x86\x29\xf0\x6b\xc7\x94\xe4\x5e\x3d\xfd\x74\x49\xf3\xcd\x3e\xeb\xbc\x25\x39\x2d\xa7\x95\x3e\xd2\x78\x36\x1f\x26\xaa\xff\xfc\x58\x55\x3e\x72\x4a\xeb\xd2\xd8\x2c\x18\xef\x96\x22\x0a\x28\xbd\xd8\x53\x65\x14\x10\xee\xcf\x25\x77\x5c\xcd\x25\x69\xb7\xe4\x54\x40\x6a\x45\x5c\x32\x2a\x20\x64\x4a\xde\x7a\x8d\xa5\xb8\x20\xed\xf3\xd0\xf5\x5e\x08\x5c\xac\xc6\x52\x5c\x00\xc1\x5b\xb1\x63\x69\x03\x5e\x1f\x53\xea\xfe\x9a\x1d\x6d\xe6\x05\xe7\xc7\xe4\x3a\xeb\xe3\x3a\xce\xb2\x5c\x47\x07\x7d\x4d\x19\x3a\xe8\x8f\xd5\xed\x28\xb2\x72\xc9\x16\x80\xa8\x28\x1d\x4b\xb6\x00\x04\x59\x36\x86\xfe\xf9\x42\x92\x93\x6a\xe8\x9f\x3f\xd6\xc7\x15\xc2\x62\xce\x8b\x2f\x5b\x3b\x2d\x72\x05\xe0\x2d\x46\xd3\x3c\xad\x01\x41\xd0\xf3\xf0\xda\x6e\x70\x07\xf7\x16\x93\x66\xd3\x02\x67\xe0\x83\x4a\xdd\xb5\xde\xd1\x75\x7c\x7c\x86\x77\x74\x42\x92\xa0\x69\x78\x47\x37\xf0\xe2\x7f\x8b\x49\xb3\x6d\xdc\xdd\xe0\x3e\x32\xcc\xb0\x2e\xbc\xc5\xa8\xd4\xad\x0c\xa4\xf6\x4b\x6f\xf7\x84\x68\x98\xe1\xbc\xdd\x1b\x2b\x5d\x59\x4e\x9f\x66\x61\x20\xea\x21\xc9\x89\x27\x75\x63\x57\x77\x58\x32\x01\x20\x08\x1f\x1f\x4b\x26\xe0\x5d\x61\x27\x5c\x7a\x18\x13\x30\xf0\xb5\xde\x79\xd0\x6e\x78\x7d\x38\x6e\x8e\xa5\x9d\x67\x44\xc6\xed\x5e\x06\x02\x17\x9f\x71\xbb\x97\xf5\xc8\xee\x38\xe3\x0e\x3d\xb2\x85\xdc\x51\x54\xf5\xc8\x1e\x78\x5f\xbf\xc5\x0e\x68\x29\x4d\x9d\xce\x2f\x2f\x49\xbc\x49\xd2\x2d\x45\x0f\xee\x6a\x73\x91\x71\xb7\x27\x23\x20\xbc\x6d\xd1\x0b\x5b\x48\x12\xbd\x0f\xbd\xb0\x85\x20\x6f\xc9\xf0\xfe\x53\x28\x5d\x8b\xa6\x17\xa0\x42\x12\xd7\x3b\x74\xc2\x16\x3a\x4f\x51\x0c\x9d\xb0\x85\xa8\xd8\x86\x4d\xd6\x2e\xf4\x7e\xfe\x06\x23\xb9\xb9\xdc\x85\x50\x97\x31\x95\xfb\xd0\xb9\xbb\xef\xbb\xb4\x25\x8d\xac\xab\x1c\x36\x75\xee\x16\x52\x0b\xb6\xce\xdd\x42\xe2\x84\x39\x6e\xb5\x53\x20\xc8\x24\x32\x74\xf7\x16\xde\xdf\xb7\x98\x63\xc5\xf5\x2e\x37\xd4\xc3\xeb\x5d\x21\x77\xce\x47\xba\x7b\x0b\x41\xd6\x90\x71\xab\x3d\xdd\xea\x40\xa4\xcf\x1b\x66\x94\x17\x92\xd4\x6f\xe3\x96\xdb\xe8\x01\xde\x77\xf6\x92\x1e\xe0\x42\xe2\xd7\x3e\xf4\x00\x1f\x7a\x80\xf7\x1d\xa3\xab\x1e\xe0\x42\x28\xfc\xf5\x00\x17\x92\x88\xed\x61\xde\xf9\x81\x1b\xf7\xfb\x25\xbf\xa6\x5e\x72\x1b\x07\x0b\x3f\xbb\x3d\xdc\x03\xd1\x5c\x87\xaa\x2a\xb7\x4c\x09\xdf\xaf\x71\xcb\x94\x80\xc4\x4d\x75\xdc\x32\x25\x1c\xc0\xdf\x62\xf4\x40\x16\xa4\x07\x38\x69\xf2\x87\x1e\xe0\x42\x6c\x2e\x57\x99\x12\x90\x5f\x33\x64\x4a\x77\xb8\x93\x10\x77\xb7\x7a\x09\x10\x38\x9d\x8f\x5b\xbd\xe4\x36\x51\x6c\x4a\x72\xbc\xd5\x4b\xf6\xaf\x98\xfd\x0c\xf2\x26\xba\xd0\xd5\x4b\xf4\x1c\x27\x77\xdd\xd0\x73\x5c\x78\xbf\xa4\xb5\x72\x38\x20\xba\x1d\x90\xc3\x71\xe7\xfe\x16\xa3\xef\xb2\x33\x20\xf7\xb0\x02\xfb\x29\x87\x53\x67\xba\xe5\x70\x40\xf7\xf6\xf1\x96\xc3\x01\xb1\xb9\xb9\x64\x70\x78\xab\xbf\x5f\x52\x4c\x76\x06\xc4\xe1\x8a\xd4\xec\xcd\xa5\xfe\x5b\x8c\x21\x4a\x3b\x9f\x24\x84\xc0\x54\xa6\x53\xbb\xf0\x16\xa3\xa7\x32\x42\xbd\xda\x77\xf7\x94\x8c\x10\x48\x92\x05\x8e\xdb\x5b\xc5\x5b\x9d\x49\xfd\xe2\x56\x67\x02\xe2\x5b\xcc\xb2\x4b\xe0\x2d\x26\xcd\xf1\x50\x69\x0a\x7b\xe5\x78\xa4\x2b\xb7\xda\x36\x3b\x4f\x1e\x28\x12\x85\x0d\x7d\x10\x84\xd2\x15\xff\xb7\x9c\x16\x6f\xf2\xdd\x76\xe8\x97\x20\xa4\x2a\xc7\xe3\x11\xf8\x51\x33\x51\x04\x3e\x6a\x26\x40\x6a\xcf\xd6\xe5\x5c\x48\xe2\x5d\x87\x2e\xe7\x42\x92\x05\x70\x3c\x2a\x26\x40\xee\xc8\xc4\x47\x06\xfa\x7c\x7c\x90\x95\x6b\x62\x7c\x21\x1d\x5b\x13\xe3\x0b\xc9\x7b\x17\xc3\xc4\xf8\xe3\xf1\x50\xec\x36\x78\x64\x3b\x40\xe7\x81\x9f\xf1\xc8\x76\x9e\x8f\xed\xd8\x34\xd9\x0e\x90\xb2\xb5\x47\xb6\xf3\xc8\x76\x10\x28\x7a\x64\x08\xe9\x25\x9c\x1e\x19\xe3\xf1\x9c\xfc\xb7\x2f\x43\x1a\x0f\xa9\x9e\x34\x4d\x4e\xf4\x7c\x6c\x07\x83\xfc\x23\xdb\x79\xcc\x90\x54\xfd\x35\xc7\xb1\xd9\x03\xc4\xb5\x1e\xf8\x42\x27\x95\xd0\x78\xe4\x31\xc0\x5b\x8c\x1e\xa8\xd2\x00\xf9\x55\xe0\x39\x0a\x08\x5e\x72\x1b\x8f\xe7\xa8\xe7\xe3\x4e\xdc\xfc\x3d\x72\x27\x20\x3c\x88\x3f\x72\xa7\xc7\x83\xd4\xf7\xfb\x76\xea\xe3\x4e\x69\x3b\xec\x15\xdc\x49\xb3\xdd\x23\x77\x7a\x7c\xb9\x0b\x45\x42\x07\x15\x21\x3b\x67\x2b\x1d\x54\x84\xf8\xa6\x58\x7e\xf5\xa8\x45\x91\x9b\x71\x3c\x32\xac\x47\x86\xe5\xea\x93\x61\xe9\xc6\xd2\xc9\xec\x30\x74\x63\x11\xc2\xcb\x0e\xdd\x58\x84\xd0\x68\xa0\x1b\xcb\x78\x64\x3b\x3c\x56\x3d\x7c\x9a\x40\x48\x9c\xca\xc6\x23\xdb\x01\xf2\x1b\x20\xf5\x2a\x1f\x30\xe8\x5e\x16\xfb\x80\x81\x90\x5f\x33\xe4\x00\x3e\x60\xd0\x0f\x3b\x2a\x07\x00\x82\xa0\xdd\x61\x08\x84\x10\xbc\xa2\x38\x0c\x81\x18\x3e\x56\xd0\x8f\xf2\x1b\x8e\xd7\x3a\xc3\x08\xf9\x8d\x96\x67\x23\x1d\x5f\x3a\x09\xb1\x86\x6f\x19\x0c\xdc\xfa\x77\x9c\xe9\xa7\xbe\x30\x42\x70\xdb\x37\x75\x85\x99\xfa\xbd\x74\xd8\xde\xd4\xef\x45\x48\x62\x57\xa6\x7e\x2f\x73\xf3\xe8\x42\xc4\xc1\xdc\x50\x81\x84\x38\xc3\x2f\xa7\x24\x2f\xb7\xac\x60\x49\x5a\x18\x4a\x2a\xa4\x5b\x12\x7c\x0a\x0f\xad\xa9\x13\x8d\x10\x64\x35\x9e\x3a\xd1\x08\x79\xbc\x87\xf5\xb9\x55\x5b\x4b\x4e\x7a\x92\x76\xcc\x0d\x0d\x4b\x48\x12\x76\x4e\xdc\x6e\x5e\x70\xd2\x0e\x5a\x56\xed\x80\xd9\x33\x0b\x7d\x82\x8d\x4c\x1d\x66\x3a\x19\x3a\xa6\x0e\x33\x42\xf0\xdc\xc8\xd4\x61\x66\xe2\x1c\x53\xfa\xe1\xa8\x55\x7b\x80\xb5\x1f\x1f\x9a\xa9\x73\x8c\x90\x6c\xdf\xa9\x73\x8c\x90\xac\xba\x69\x64\xc1\xdc\x54\x55\x48\x93\x32\x37\x18\x84\x90\xec\xae\xb9\xa1\xaa\x08\xa5\x93\x54\x62\xe2\x17\xf3\x41\x22\x13\xa7\xde\x31\xc2\x5b\x8c\xce\x37\xc7\x1b\xab\x4e\x7b\x05\xf1\xdc\x9a\xad\xd5\xdc\xd6\x24\xd9\x5a\xb9\x0d\x77\xf9\x93\xa0\x85\x0f\x3a\x59\x04\xa7\xb1\x09\xd3\x40\x84\x8e\x77\xf9\x34\x10\x41\x88\x7e\x5a\xcc\xc1\xc5\x1e\x13\x1f\xc9\xc1\xed\xee\x88\x4a\xaf\x60\x2d\x42\xb4\x83\xd6\xc2\x5a\x84\xd2\x8f\xe6\xa7\x8e\x07\xac\xe5\xd8\xac\xd3\xf1\x50\xf1\x39\xec\x42\xb7\xf3\x30\x12\x42\xa7\xa6\x6e\x40\x53\x9f\x9f\x8e\xeb\xc1\xd4\xe7\x67\x6e\x1e\x3f\xc8\x92\x32\xb7\x74\x28\xb1\x41\x70\x9f\x36\x79\xf4\xe2\x83\xd2\x8f\x64\xb5\xa5\x3f\x97\x2e\x5d\x49\x0e\xe5\xb7\xd1\x9c\xe6\xcb\x41\x62\xa3\x71\xad\x3e\x75\xfa\x99\xb8\xe4\xbc\xc5\xde\x3e\xe8\x93\x23\xf4\x2c\x14\x73\x39\xfb\x9e\x42\x27\xe4\x62\xfa\x9e\x82\xd0\xc9\x6a\x3f\x7d\x4f\x61\xf2\xc4\xc1\x5b\xac\x42\x7b\xa4\x61\xda\x66\xb2\x8a\xcb\x0d\x48\x52\x4f\x4e\x5f\x40\x10\x4a\x3f\x77\xbe\x44\xde\x09\xc9\xbd\xfd\xf4\x89\x83\x59\x70\x47\xe8\x27\x4c\xa0\x38\xa7\x40\x76\x9b\xeb\x9c\xf2\x5e\x41\xe9\x5f\x4f\x9d\x40\x20\xba\x15\x38\x7f\xba\x10\x75\x5c\x25\xa6\x2e\x44\xb3\xc8\x47\x71\x5b\x98\x25\xad\x01\x4d\xaa\xed\x92\xac\xc1\xe1\x25\x3c\x69\xea\x42\x34\x71\x21\xf2\x35\x97\xa9\x0b\xd1\xdc\xb9\x0c\xee\xe4\x2b\x98\xbb\x4c\x05\x08\xf2\x9a\xcc\x5d\x9e\xb2\x6b\x69\xe5\x4a\x7e\xee\x08\x6d\x21\x5b\xa3\x18\xf6\x0b\xa1\x74\x1c\x45\xa6\x9e\x46\x42\x72\x3f\x3c\x75\x25\x9a\x3b\x7e\x67\x9d\x40\x9d\xb9\xbb\xe0\x80\x38\x83\x0a\xba\xed\xb0\xf7\xbc\x17\x33\xf5\x11\x9a\x3b\x57\x29\x1d\x97\xf1\xb9\x23\x93\x84\xc0\xb1\x7c\xee\x61\xdb\xf0\xbc\xe8\xa4\x70\x9d\x3b\x2a\xa8\x10\xbc\xb4\x38\xf7\xf4\x4b\x5d\x4d\xd9\x6d\x7b\x7e\x5f\x56\xda\x61\x29\x7b\x95\x38\xb3\xef\x92\xec\x14\x51\x79\x9d\x18\x83\xb9\xa7\xbd\x42\x29\x25\x58\x63\xe2\x90\xf4\x41\x90\x42\x68\xea\x96\x34\x3f\xb7\x24\xfb\xe4\x1e\xda\xd5\x49\x6b\x93\x36\xa5\xe1\xb9\xd9\x6c\xbf\x23\xc4\x25\x5d\xaf\x6c\x49\x5c\x99\x3e\x08\xa2\x0e\xa6\x0e\x4d\x73\x37\xac\xe5\x78\x7f\x4c\x87\x26\x21\xe4\x77\x87\xc2\x4a\x1f\xa7\x4e\x0c\xc3\xd4\xc7\x49\x88\x8a\xc8\xd1\xc7\x69\x1e\x9a\x74\x79\xeb\x68\x1e\x68\x22\x42\xb4\x2a\x69\x4a\x62\xa6\xda\xce\xa7\xce\xd4\xe1\x4c\x35\x76\xc2\xe1\x4c\x01\xe9\xee\x3b\x9c\xa9\x43\xa6\xd2\x8e\x5f\x8f\xd1\x9e\x87\xe3\x05\x04\x0f\xa0\xcc\xc3\xe1\xd2\xb7\xa9\xe3\x3d\x39\xf5\x6d\x9a\xc6\xf7\x90\x64\x77\xea\xdb\x34\x4f\x8d\x14\x5c\x7b\xcf\x13\x23\x85\x10\x3c\xf0\x34\x4f\x8c\x14\xf3\x3c\x99\x10\x97\xf6\xa9\x3c\x06\x12\x6f\xa4\x69\x36\xeb\xa9\xa7\x54\x77\xc6\xf5\x94\x12\x92\x6b\xef\xa9\xa7\xd4\xd4\x53\xaa\xe3\xec\x39\xf5\x94\x12\x82\x64\x89\x53\x4f\xa9\x69\x6a\xe9\xde\xba\xbf\x36\xa4\x69\xd2\x3c\x21\xd9\x0e\xaf\x46\x78\xc2\x71\x9e\x32\x1d\xa0\x93\xb0\x73\x9a\x20\x7a\x9e\x0a\x8d\x16\x34\x44\xa1\x71\x9a\x35\x8a\xa5\x67\x76\xe5\x69\x2a\xe5\xce\x35\xe4\x34\x95\xb2\x10\x3c\x50\x30\x4d\xa5\x3c\x4d\xa5\xdc\xb9\x5f\x9c\xba\x4a\x09\xa5\x13\xd1\x36\xcd\xa5\x2c\x84\x22\xd9\x5c\xca\xf3\xcc\xaf\x18\x03\x97\x16\x4b\xdc\x48\xaa\xa4\xaf\x18\xac\x14\x9e\xa3\xa7\x94\x10\xca\x33\x3d\xa5\xe6\xe9\xb6\xeb\x3b\xed\x70\xdb\x01\x81\x79\x65\x9e\x6e\xbb\xd3\xb3\x60\x67\x0f\x9c\xee\x3b\x20\x48\x88\x3c\x4f\xd7\xd1\xe9\xbe\xeb\x87\x9f\x3a\xbc\xe9\x34\x5b\x81\xd3\xec\xda\x22\x78\x63\xea\x9e\x35\x71\xcf\xf2\x91\x9f\xa9\x7b\xd6\xac\xaa\x7f\xf8\x6a\xcc\xea\xf6\x01\x82\x30\xf3\x59\x55\xff\x80\xd2\x3b\xb3\x50\xb1\x9d\x09\x89\x0b\xdb\xac\xf8\x6c\x4c\xbd\xb8\x7c\xdd\x66\xea\xc5\x25\x44\x7f\x95\xea\xa9\x17\x97\x10\xbc\x75\x36\xab\xab\xb2\x7a\x87\x87\xc3\xcc\xac\x6a\x76\x55\xef\x54\xb4\xb8\xaa\x66\x57\x95\x84\x9d\x1d\x53\x95\x84\x40\x54\xa6\xaf\x2a\x09\xab\xcb\x0d\x27\x9d\x59\x5d\x6e\x40\x74\xf8\x50\x75\xb9\x01\x21\x93\xaf\x8a\x07\x20\x78\xa4\x69\x56\xc5\x03\x10\x3c\x5a\x33\xab\xd2\xa1\x7e\x2b\x0b\x46\xa7\xaf\xd7\xac\x32\xef\x8e\x3e\x52\x5d\x0c\x40\xc7\xb4\x31\xab\x8b\x41\x97\xb0\x4e\xea\xa1\xa9\x4b\x98\x90\xbd\xf8\xa5\xe3\xc1\x05\xb7\x6f\xaa\x4e\x7d\xc2\x84\xd8\x42\x92\x7d\x77\x96\x71\xd9\x98\xba\x89\x4d\xdc\xc4\x76\xf5\x0c\xdd\xc4\x84\xe2\x3d\xf5\x6c\xf2\x52\x20\xdd\x08\x8d\x6b\x92\xd9\x5c\x0c\x98\x3e\x67\x73\x31\x34\x73\xe4\x77\x49\x55\x52\xb3\x98\x35\x74\x69\xa8\x76\xe8\x3b\x8d\x3b\x91\xd9\x9c\x04\xdc\xfc\x66\x73\x12\x80\xc8\xe4\x4b\x27\xa1\x79\xa0\x75\x5f\xb5\x6e\x43\x38\xd0\x6e\x76\xa1\xfb\x65\xff\xbc\x38\xde\xb1\xd4\x75\x6c\xb6\xaf\xf7\xfd\xed\xbd\xae\x63\x13\xd7\xb1\x83\xdb\xc2\xa9\xeb\xd8\xec\xde\x59\xe0\xc6\x31\xf5\xcf\x12\x82\x0b\xf3\xa9\x7f\xd6\xec\xda\xfd\x78\xc7\x7a\x9a\x8f\x58\x08\xbc\xad\x67\x57\x4b\xee\x1e\xa3\x79\x7d\x75\x76\x15\x23\x20\xc8\xb9\x3f\xf5\xec\x9a\x5d\x19\x44\xa2\xff\xd9\x65\x48\x40\x92\xb3\x69\x76\x65\x90\xae\x5d\x9d\xc4\x2c\x53\xd7\xae\xa9\x83\x56\xc7\x55\x62\xea\xa0\x35\x71\xd0\x3a\xb8\x81\x9e\x3a\x68\x09\x25\x36\x4e\x3e\xe1\xa4\x86\xef\x95\xc3\xb6\xc2\x49\x35\xbf\x6f\x90\xd6\x64\x9a\xdf\x57\xc8\x8d\x01\x31\xbf\xef\xc4\x67\xaa\xf8\x6a\xfc\xd4\x69\x4a\x08\xf2\x5e\xcc\x70\x03\x06\x63\x69\xf0\xd2\x0c\xc7\x12\x88\x0a\xd3\x0e\xc7\x32\xb8\xf4\xf7\x89\x87\x19\x9e\x42\x80\xf4\x6c\x18\x0e\x6f\x74\x8b\xa1\x29\x86\xfa\x13\x10\xdc\x98\x4f\xdd\x9c\x66\x10\xbb\xf4\x8d\x6f\x84\x35\x60\x5c\xdc\x38\xa8\x05\xc6\xc5\x19\x69\x17\x18\xcb\x90\x43\x03\x49\xa6\x91\x19\x6e\x4a\xa0\xf0\x0c\xc6\xaf\xca\xee\x70\xd3\x02\x41\xfc\xe3\x0c\x35\xae\x20\x46\x40\x1f\x97\x19\x72\x70\x20\xb9\x87\x98\x21\x03\x0f\x8e\x15\x41\x14\xc2\x0c\xf7\x36\x10\xf8\xc4\xcf\x70\x6b\xeb\xa1\x15\x1b\x67\x69\x3d\xb4\x66\x38\xe5\x6c\x29\x3d\xb4\x66\x7e\x73\x49\x0d\xe9\x5c\xa6\x73\x09\x7b\xd2\x69\x4b\x48\xde\x46\x9e\x3a\x6d\x4d\x93\xd1\xfa\xfe\xf7\x34\x19\xad\xd0\x09\x97\x9b\x26\xa3\x15\x8a\x2f\x1b\xce\x74\xc1\x03\x89\x63\xc6\x4c\x8f\x85\xe4\xa4\x2d\xc6\x27\xcd\x74\xc1\xa7\x72\xba\x4a\x0a\x49\x34\x97\x77\x38\xa6\xbe\x5d\x93\xc4\xaf\x2f\x8d\xf6\x86\xb5\x62\xa0\xe5\x2a\x65\x92\x05\xf6\x83\x74\x21\x9b\x0b\x76\x26\x9c\x33\xb8\x0d\x9a\x29\xe7\x04\xd2\xd5\xa8\xa3\xd8\x4c\x87\x92\x60\x85\xa9\x0b\xd8\xc4\x05\xcc\xa7\x4a\xa6\x2e\x60\x93\x18\xdf\xf2\x2d\x6e\x83\x7c\x85\x0c\x16\xad\x41\xbe\x53\xdf\xae\xef\x94\xa9\x6f\x97\x90\xb8\x7b\x4e\x7d\xbb\xa6\xbe\x5d\x41\x1e\x96\xa9\x6f\x97\x10\xf8\x96\x4c\x7d\xbb\xe6\x45\xee\xbe\xd8\x37\x1a\xa2\x6a\x04\x24\x41\xcf\x93\xa7\xff\x7f\x9a\xb8\x7b\xbd\xc5\xde\x9e\xea\xef\x25\x04\xf7\x80\xf3\xf2\x20\x77\x39\xa7\xf8\xe6\xce\xcb\x39\xbd\xdc\x64\xbb\x24\xbb\x00\x83\x8d\x9d\x9d\x6d\x50\xb2\x90\x6e\x4f\x63\x92\xa7\x01\xc8\x3a\x4b\x4d\x03\x90\x85\xdc\x3e\x52\x48\xba\x2c\x56\xa1\x0d\x69\xf0\xb5\xdd\x0a\xec\x15\xb7\x12\xdb\x66\x05\xf6\xca\xcd\xbe\x7f\xc5\x6c\x6e\x97\x27\xf0\x63\x2e\x10\xe0\x2d\xc6\xa7\x6a\x68\x40\x12\xf0\x3d\x2f\x35\x34\x7c\xc7\x4a\xec\x30\x00\x9d\xc7\x84\x24\x84\x6b\x5e\xe1\x88\x87\x95\xb2\x3d\x74\x1e\x13\x3a\xa1\x2b\xf3\x72\x05\x02\xd1\x10\x38\x97\x2b\xf0\x92\x9b\xec\x4e\xb3\xdc\x04\x08\x22\xd3\xe6\x25\x37\x31\x84\xda\xb7\x91\xa7\x21\xd4\x42\x62\x81\x9c\x86\x50\x4f\xdd\xce\x74\xe4\x9a\xba\x9d\x4d\xdc\xce\x0e\x92\x3c\x4c\xdd\xce\xa6\xf1\xcc\x3e\xe7\x34\x8d\x67\x16\x92\xeb\x8b\x69\x3c\xb3\x50\x0c\xdc\x99\xc6\x33\x0b\xc1\x1b\xe6\xd3\x78\x66\xa1\x04\x86\xfe\x69\x40\xb3\x90\xca\x47\xe3\x99\x27\x8e\x6b\xc5\x17\x64\xa7\xa1\xca\x42\xc6\xd7\x8e\x29\xc9\xa1\x6c\xb6\xf7\x96\xe6\xa1\xdb\x0a\x18\xca\x51\xbf\x4a\xf9\xd4\xed\x01\xa4\x1c\x4f\x97\xb8\x89\x63\x5b\xf1\x0d\xc7\xa9\x67\x9b\x10\x5b\xd0\x0e\x0d\x6d\x40\xf1\x11\xfd\x39\xea\x57\x03\x61\x17\x98\xae\xf4\x7f\x9b\xfa\xa2\x99\x6e\x67\xea\x8b\x26\x24\xc9\xae\xa6\xbe\x68\x73\x7c\x8b\x17\x46\x30\xfa\x47\xe3\x2a\xda\x2f\x5d\xbc\xc3\xc5\x8b\xd4\x1f\x2e\x5e\xdd\xd3\x42\xa3\x94\xee\x69\x73\x28\x96\x0e\xc7\x52\xb1\x04\x44\x77\xb2\x14\x4b\xc3\x25\x48\xfc\xec\x1c\x2e\x41\x20\xd4\xf8\x86\x4b\x70\xb8\xde\xc8\xda\x3c\x87\xeb\x6d\x28\xbd\x38\x89\x0f\xd7\xdb\x90\x0b\x92\x29\x7e\x0e\xb9\x20\x10\x1d\xc5\x70\xc8\x05\x81\x12\x3c\x08\x30\x87\x42\x66\xf8\x48\xba\x93\xa5\xfe\xa8\x87\x5d\x1c\xce\x8c\xcb\x12\x0f\xbb\x83\xe4\x18\x53\x0f\x3b\xa1\x63\xc6\x9f\x53\x4d\x03\x48\x12\xf8\xcf\xa9\xa6\x31\x39\xa7\x86\x66\xd7\xe9\x39\x15\xc8\xed\xf4\xcb\x4b\x12\xf7\x5b\x55\xd2\x90\x44\x26\x4f\x98\xdb\x74\xb5\x4d\x45\x9d\x56\xd7\xe9\xd2\x02\xe2\xe8\xbf\x6e\x2a\x9f\x53\x49\x68\xb2\x54\xdf\x12\x9a\x26\x4b\x15\x92\x4c\x11\xd3\x64\xa9\x73\x72\x7b\x14\x87\x6d\x72\x49\x01\xa9\x6a\xa2\xcf\xdf\xc4\x99\xaf\x98\xd1\x6e\xea\xcd\x27\x24\x6e\x9c\x53\x67\xbe\xa9\xaf\x5d\x90\x51\x66\xea\x6b\x37\x3f\x5f\xbb\xb0\x18\xd3\x61\x6e\xd5\x20\x6b\xf2\xd4\x3f\x4d\xc8\xcd\x4e\x7b\xb0\xc5\xff\xac\x04\xe9\x90\xa7\x21\xf7\x42\x70\x3f\x35\xf5\x45\x13\xde\x62\xb4\xd7\x05\x3a\xbf\x95\x87\x66\x66\xc8\xbd\xd0\x03\xee\xaa\x2f\xd7\x9c\x2a\x44\x27\x67\x67\x43\xee\xe7\x17\x72\xcf\xd1\xc8\x90\x7b\xe1\x2d\x46\x0d\x1a\x99\x80\xd8\x10\x54\x53\x23\x93\x09\x5d\x7d\x79\x61\xea\xcd\x25\x04\xe9\xf7\xa7\xde\x5c\x53\x6f\x2e\x53\xf7\x4f\xbd\xb9\x26\xde\x5c\x07\x6e\x38\x53\x6f\xae\x69\xc4\xfb\x67\xd6\xd3\x9b\x66\xea\xb1\x12\x27\x3c\x41\x8f\x15\x21\x1b\x1b\x5b\x8f\x95\x89\x2b\x4a\x89\x13\xad\x4d\x5f\x14\x21\xb5\x2f\x98\x9e\x72\xea\x77\x12\x95\x3e\xe8\x77\x32\xf1\x3b\x39\xb4\xa4\xe8\x77\x32\xcd\x32\x17\x95\xdd\x63\x96\x39\x21\x08\x0c\x9a\x66\x99\x9b\xe6\x85\x33\xd4\x75\x9a\x17\x4e\x08\x4d\x4a\xe6\x85\x9b\x86\xad\x47\x85\x81\x7b\x1f\x2f\x94\xa8\xa8\xfd\xc6\xad\x0b\xd1\x18\xf2\x5b\xc1\x67\x8e\x36\x9d\x95\xa6\x37\xed\x42\xe2\xcc\x3f\xbd\x69\x9f\x3e\x6e\x1f\x15\xfd\xc6\x6b\x64\x21\xb8\x38\x9a\xde\x22\xcf\x5b\x3e\x41\x82\x8e\x79\x3b\x35\xb7\xaf\x09\x71\xd6\xf7\x16\x79\xde\xdf\x20\xa1\xdf\x78\x65\x3c\xb9\x32\x3e\x3a\xc2\xc5\x2b\xe3\x69\xfe\xb1\x20\xcf\xc6\xf4\x32\x58\x48\x4f\x86\x5e\x06\x4f\xaf\x79\x3f\x71\xeb\x35\xaf\x10\x01\xcf\xf5\x9a\x77\x72\xb5\x5b\xcc\xc9\x33\x1f\xc5\xc6\x63\x28\x74\xfa\x65\x4a\x1a\x16\xdb\xa1\x4d\x69\x18\x22\xd3\x5f\x63\x0d\x7a\x0d\xab\x2f\xe2\xf4\x1a\x56\xc8\x16\x92\x2c\x86\x53\xaa\xf9\x32\xa6\x97\xa9\x42\x27\xca\x62\x7a\x99\x2a\xbc\xc5\xe8\x96\x16\x73\x20\x79\x58\x67\x7a\xbf\x3a\xb9\x4c\x7d\x8b\xf9\xa9\x5d\xe8\x3c\xd0\x5d\x24\xd9\x85\x6e\xdb\x58\x35\xde\x93\x0a\xd9\x42\xd2\xd7\x36\x56\x8d\xf6\x42\x2f\x45\x85\xe2\x9b\x47\xf3\x71\xd5\x00\xd1\x91\x24\xde\x93\x4e\x6f\x40\x83\x78\xeb\xe9\x0d\xa8\x10\xc4\x76\x4c\x6f\x40\x85\x24\x7f\xc8\xf4\x06\x74\x12\xa8\x5f\xa2\xa1\x76\x9b\xde\x4d\x48\x9e\x0b\x9a\x8f\x0c\x03\xc8\xc6\x66\xf3\x9e\x74\x3e\xae\x2d\x1c\x5d\xa6\x17\x95\x42\xe0\x7c\x37\x8d\xe3\x17\xde\x62\xf4\x54\x0b\x31\x90\x0d\x89\xe6\x75\xe6\xe4\x3a\xf3\xc0\xaa\xb8\xbc\xce\x5c\xdc\x36\x96\xc0\xaa\xb8\xbc\x6e\x14\x7a\xbe\xcb\x7e\x79\xdd\xb8\xb8\x47\x2c\x41\x73\x97\x17\x89\x42\xef\xef\x5e\x5b\x5e\x24\xae\xed\x5b\x95\xef\x4a\x5d\xde\x1a\x0a\x41\x5a\xff\xe5\xad\xe1\xda\xbe\xe5\x96\x09\x6d\x4a\x9b\x58\x3c\x2b\x24\xdb\xa1\x48\xc1\xe7\x7f\x79\x1f\x28\x24\x4f\x1d\x2f\xef\x03\xd7\x26\x5b\xc1\x46\xb9\x36\xd8\x8a\x10\xb5\xd0\x36\xd8\xca\x32\x34\xde\x87\x7b\x96\x97\x7f\x82\x7b\x6d\x79\xf7\x27\xbc\xc5\xfc\x35\x7b\xef\x93\x23\x85\x5e\x71\x22\x58\x46\xd0\x07\x91\x95\xcb\xab\x33\x21\x08\x86\x5a\x46\xd0\x0b\x25\xb0\x34\x2e\x6f\xd3\x96\xf7\x5f\x81\x59\x71\x79\xff\xb5\xb8\xff\x3a\xf2\x95\xf1\xcb\xfb\xaf\x55\x1c\x4b\x0c\x64\xcb\x5b\x2c\x21\x7b\xf9\xf5\x87\xc0\x96\x8f\x86\x2f\x1f\x0d\x57\xb1\x59\x3e\x1a\x2e\x04\x5e\x82\xcb\x47\xc3\x97\x4f\x7f\x07\x96\xb7\xe5\xc5\x97\xd0\x7b\xe3\x4b\x8e\x4b\x42\xe0\xb1\xb0\xbc\xf7\x5a\xde\x7b\x45\x4f\x8a\x75\x9b\xe9\x5d\xe6\xbb\x90\x97\xf7\x5e\xab\x38\x5e\x8e\xa1\xef\x6c\x0b\xc9\x83\xaa\xab\x38\x5e\xde\x7b\x05\xaf\xa3\x2f\xef\xbd\x56\x51\x1a\x62\x2b\x5b\x25\xfd\xf4\x93\x86\x34\x37\xfd\x34\xcd\xa9\x91\x90\x98\x24\xaf\xc2\x8c\x6e\x5c\x5e\x85\x2d\xae\xc2\xce\xed\xe5\xcc\xcb\xab\x30\x21\xd9\x9d\xcb\x60\xfa\xb5\x7b\x88\x70\x39\xee\x1c\x22\x84\xe0\x19\xe5\xb5\x73\x88\x58\xbb\xbb\x87\x94\x25\x6b\x77\xf7\xec\x06\xd8\xd1\x34\xef\xd5\xd6\xee\x7a\x27\xb1\xe0\xda\x5d\xef\x40\x47\xcb\x5d\xbb\xeb\x7d\x6f\x56\xca\x5e\xdc\x1d\x5e\x20\x5b\x93\x64\xa5\x5f\xda\x87\x80\x54\x25\x75\xbf\xa4\x02\xd7\x3b\x90\x44\x71\xae\x9d\x5b\xf2\x65\x24\xbf\x5e\x9e\xcb\x48\x7e\x21\x6a\x58\xcc\xe6\x36\x27\x21\xa5\x3d\xd2\x1e\xce\xf5\x74\xbe\x3b\x6c\xca\x69\xbc\x9b\xd6\x8e\x9c\x16\x3a\xa9\x7a\x16\x09\x01\x5e\x38\x2d\x46\xdb\x5c\x20\xbb\x69\xf2\x77\xc6\xc8\x05\xb2\x7f\x33\xcf\x3a\xf2\xce\x6f\x11\xf0\x5f\x22\xfd\x39\xd8\xab\xa0\x95\x67\xed\xb0\xd7\xb5\xab\xa3\x91\x58\x7b\xed\x61\x1f\xd0\xd1\xf2\x2b\x66\x17\x3c\x1d\x90\x58\x7b\x71\x4f\xf8\x81\x27\x81\xe5\x6d\xe1\xe2\x6a\xf0\x2d\x46\xef\xd3\xf6\xea\xb0\xb6\x31\x59\x69\x7b\x71\x57\xf9\xdb\x72\x40\x6f\x13\x92\xf0\xa9\xe5\xdd\xe0\xf2\xee\x4e\x43\xfd\xf2\xee\x4e\xc8\xd3\x5f\x73\x55\x72\x77\x77\x12\x47\xb2\xbc\xbb\x5b\x5c\xca\x95\x20\x4d\xf7\xf2\x56\x4e\x48\x1e\x29\x58\x07\x67\xd6\x75\xe0\x4a\x1f\x04\xb1\xad\x83\xd3\xa8\x10\xbc\xbd\xb8\x0e\x0e\x11\x42\x09\x12\xe9\xac\x83\x53\x84\x90\xe8\xac\xeb\xe0\x14\xb1\x0e\x17\x34\x57\x45\xeb\x70\x41\x03\x49\xbc\xff\x3a\x5c\xd0\x3e\x35\x1d\xbc\xd0\xbb\x7c\x6a\x5a\x48\x54\xdb\xe5\x53\xd3\xeb\x90\x85\x91\xce\x7b\x1d\xb2\xb0\xc3\x98\x69\xa6\xf4\x90\x47\x1d\x2a\x29\x58\x8d\xd7\x51\xed\x02\xf7\x64\xe5\xfb\xd2\x2e\x70\x4f\x16\x24\xf9\x59\x47\xb5\xbd\xd5\x93\x67\x42\x9a\x92\xec\x42\xb5\x6d\x76\xa1\xda\x85\x03\x92\x5d\xa8\x2e\x10\x3a\xcf\xa1\x78\x1d\xfd\x6b\x07\x3d\xed\xb6\x83\x57\x48\xfb\x41\x73\xbb\xed\xe8\x0e\x25\xdb\x94\x7b\xd2\x0f\xb2\x3b\x09\xdd\xa6\xa9\x90\x7c\x35\x74\xdb\xe6\x5b\x82\xbb\xc5\x6c\x9a\xeb\x3e\x83\x5e\xb9\xee\xb9\x2d\x7d\x69\x74\x21\x1c\xb7\x30\xbc\x89\x86\x84\xe3\xa6\xbf\x28\x5b\x97\xc4\x12\x1f\xf4\x3c\x19\x8f\xb0\x07\xe1\xb0\x39\x46\xee\x98\xc3\x84\x4c\x76\x34\x6c\x5a\x38\x6c\x69\x3b\x6c\x1b\xe9\xc6\xda\x57\x81\xc3\xa6\xed\x91\x08\xbe\x65\x7e\x09\x21\x72\xa7\x82\xb4\x07\x5c\xfe\x79\x4b\xb1\x8e\x74\x35\x98\x2f\xb3\x5a\x6c\x97\xb4\x5b\x8c\x86\xb8\xff\x80\x48\xc7\x28\x5d\xf6\x1e\x9b\x12\x16\x72\xb8\xff\x80\x68\x0e\x9b\xdb\xef\xf0\xb4\x92\xe9\xa7\xf6\x9e\x4b\x42\x02\x46\xd7\x91\xce\x9f\x77\xf3\x5f\x9d\x4e\x9f\x9a\x3e\xc9\xd2\x97\x97\xcd\x42\xf0\xc6\xf8\xf2\xb2\x79\xf1\xec\x78\x49\x5e\x0d\x5c\xbe\x3b\x2e\xf4\x74\xd9\x2b\x76\x80\xb7\x18\x6d\x73\xcf\x03\xf1\x1e\xae\x7e\x55\x72\x7b\x8b\xbd\xb8\xc5\x3e\x31\xce\x2d\x6f\xb1\x85\xf7\x87\x0f\x68\x45\x9a\xa9\x4f\x03\xd2\x2e\xe9\xb4\xd8\x09\xad\x4a\xe3\x52\xee\x55\xa2\xd7\x89\x69\x4b\x78\x8b\x49\xeb\xd2\x3a\xc3\x65\x05\x21\x69\x58\xcc\x1a\xa6\x34\x52\x3c\x20\xbc\xbc\x13\x5f\xbc\xea\x5c\xbc\x10\x59\xbc\xed\xfc\x81\x87\xcc\xe5\x0b\xcf\x8b\xb7\x9b\x8b\xf7\x52\xcb\xc7\x9b\x85\x68\xcd\x62\xa7\xa4\x6a\x31\xda\x26\x9b\x00\xa2\x1e\x54\x50\x6d\x2e\x9c\x43\xab\xe6\xf2\x86\x5d\x88\x44\x52\x79\xc3\xbe\xb8\x4d\x2f\xda\xb8\x97\xd7\xe9\x42\x90\xf2\x6d\xf9\x52\xf3\x22\xc9\x48\xd1\xdc\xb5\xcc\x32\x22\x7c\x4c\xd8\x4b\xf7\xc5\xdb\xca\x45\x5b\xed\xf2\x71\x65\x21\x12\xfe\x7d\x2a\x7f\x7d\x6f\xd9\x2b\x84\xe5\x7b\xcb\x42\xe4\x47\x72\x8c\x9a\x8b\x05\xd6\x71\x2a\x59\x81\xe0\x7e\x73\xf1\x1e\xf3\x07\x45\x73\xf3\xf2\x59\x66\x21\xf2\x23\xd9\x36\x9c\xcd\xb4\xdf\x2e\x9f\x65\x16\x82\x34\x65\xcb\x3c\x29\x42\x90\x2c\x6e\x99\x27\x65\xf9\x04\xb3\x26\xf9\xa5\x93\x80\xf0\x89\x16\x9f\x60\x5e\xf8\x08\x14\xcd\x2b\x4b\x27\x01\xe1\x53\x17\x4e\x19\x9d\x59\x57\xb4\xdf\x2e\xb3\xae\x08\x3d\xfc\x35\x19\x1d\x6e\x03\x45\x13\xd8\xd2\x6f\x40\xf8\x84\x81\x89\x58\x04\x4f\x37\xcb\x44\x2c\x42\xe0\xe3\xb1\x4e\x39\xa4\x2f\x35\x6b\xea\x5b\xbe\xd4\x2c\x44\x75\xc3\xc8\x0f\x49\xd7\x52\x92\xbc\x62\xcb\x7c\x2d\x42\x9c\xf0\xbe\x53\x16\x09\xbc\xc5\xfc\xd4\x5e\x05\x3a\x1b\x6c\xf9\x94\x45\x02\x9f\x84\x3b\x65\x91\xa7\xaa\x47\xfa\xfb\x4e\xb2\x1c\xd2\x6e\xca\x21\x75\x8f\x48\x9e\x4f\x58\xba\x47\x08\x91\x8e\xad\x1c\x12\x08\xae\x36\x96\xee\x11\x42\x57\x0c\xea\x1e\x21\x04\x8f\x28\xad\x53\x95\x05\x28\xbe\xd2\xbf\x4e\x79\x26\x10\xe9\xa4\xc8\x33\x75\x85\x48\xd9\x9c\xae\x10\xc2\x27\xdc\x75\x85\x58\x67\xba\xbb\xd1\x6a\x4f\xd9\x1c\xf0\xa9\x0a\xa7\x5c\x4e\x8f\x09\x1f\xed\x5e\x7a\x4c\x2c\x3c\x26\x4e\x55\x2c\x3d\x26\x16\x09\x6b\xde\x62\xd2\x0e\x69\xb0\x7d\x96\x9f\x4e\x14\x42\xf0\x88\xf1\xd2\x89\x42\x08\x92\x83\x2d\x7d\x28\x04\xaf\xb4\x96\x3e\x14\xab\x9e\x4e\x31\x47\xa7\xaa\xb2\x53\x7d\x0f\x8e\x89\xd2\xad\x62\xe1\x37\x51\x92\x5c\x0a\xab\xaa\xd9\x54\x58\x56\x32\xeb\x55\x96\x05\xbc\xc5\xa4\x15\x69\x3a\xb2\x54\x48\xbb\x24\xb7\x5e\xa7\x53\xb2\x31\x20\x48\x4b\xb1\xaa\xfa\x4f\xfd\x38\x1b\x67\x28\xd3\xef\x08\x81\x97\xfd\x32\xfd\xce\x32\xfd\x4e\x6e\x1c\xc2\x4d\xbf\x23\x44\x6f\x56\x6a\x17\x3e\xce\x86\x2e\x62\xfe\x1d\x41\xef\x88\x65\xfe\x1d\x21\x88\xcf\x5d\x55\xfd\x47\x37\x90\xe4\xa6\x60\xe9\x06\x22\x04\x2f\x33\x2f\xdd\x40\x84\x68\x7e\xe9\xb9\x10\xf8\xd4\x30\x13\xf7\x08\x51\xd1\x00\xf4\x15\x11\xde\xdf\xb7\x98\xc3\x81\xb3\x88\x1c\x51\x67\x91\x85\x37\xc8\x5b\x8c\xc1\x95\x73\x02\xc1\x23\xde\xab\x7a\x72\xa9\xed\xeb\x27\xa3\xe6\xe1\xbd\x1a\x00\x80\x88\xa8\x1e\x66\xea\xc7\x73\xc3\x4f\xed\x28\x3c\x97\xa0\xcc\x55\xe5\xb9\xf5\x63\xa6\xc9\x10\xc9\x4c\x7d\x61\x9c\xc0\xb0\xe5\x0b\xe3\xab\x76\xe5\xe8\x6f\x78\x77\x7b\x55\x19\x2b\xd0\x3d\x14\x54\x19\x6b\xfd\x18\x6b\x4a\xb3\x87\x9f\xc7\x27\xa3\x2a\x63\xad\x1f\x63\x4d\xba\x23\x63\x05\x7a\x74\x8b\xd9\xe9\x8f\xb1\xa2\xa9\x54\x19\x2b\x10\xc9\x19\x51\x4f\x1a\xa1\x24\xbe\x5c\xab\x86\xf3\x16\x3e\x2f\xc3\xfa\x94\xd7\xf2\x36\xfa\x5b\x8c\x19\x91\xb3\x02\x51\xdd\x01\x72\x56\xe0\x2d\xe6\xa7\x76\x2b\x5c\xb3\x34\x57\x66\x0b\xbc\xc5\xe8\xa9\xdc\x16\x08\xbc\x62\x57\x0d\x7b\x2a\x03\x2e\x9b\x34\x97\x36\x0c\x58\xfb\x47\x95\x01\x57\x19\x30\x99\xd7\x56\x95\x01\x03\x9f\x82\x5e\x65\xc0\x40\x31\x09\xf1\xaa\x72\x60\x20\xd2\x29\x97\x03\x57\xef\xc7\x0f\xc6\x43\x0e\xac\xb7\x91\xb9\xa1\x97\xde\x46\x42\x10\xa2\xb2\xf4\x36\x12\x22\xab\xa5\x1c\x8f\xb4\xa3\x6e\x14\x15\xcd\xaa\xa2\xe9\x56\x57\xd1\x04\x74\xad\x59\x55\x45\x13\x78\xbf\xa4\x07\x2a\x9a\x40\x90\xae\x63\xe9\xcd\xb4\xaa\xec\x96\xe8\xff\xa5\x9f\x92\x10\xaa\xf6\xbe\x46\x2f\xbc\xc5\xa4\x39\xcb\xb0\x5b\xfc\xd8\x96\xae\x4b\x42\x90\x84\x64\xe9\xb9\x24\x94\x2c\x68\x44\xba\x2e\x09\x41\x12\x92\xd5\x64\xca\xcd\x64\x45\xf4\x5d\x67\xa6\xa5\xe7\x52\x12\x9d\xbf\xf4\x5c\x12\x82\x77\x96\x96\x9e\x4b\xc2\x5b\xec\x84\x96\xd2\x92\x62\x1d\xd2\x25\x89\x79\xef\xfe\xd8\x90\x34\xfd\xb2\x42\x5b\xd2\x74\xf7\xb0\xd8\x2d\xc9\x21\xda\xfd\xb5\x47\x1a\x43\x84\x22\xd9\x64\xde\x66\xf7\x4a\x22\xea\x97\xd9\xbd\x84\x48\x24\x86\xd9\xbd\x84\xae\x5c\x69\xf2\xee\xf6\x3d\x87\x40\x9d\xf2\x6e\x5f\x91\x4f\x62\x6e\x97\x09\xbf\x84\xcf\x94\xe9\x2b\xf2\xc2\x5b\xcc\x4f\x1d\x0f\xb5\xd2\x66\x33\x1c\x0e\x59\x7c\x39\x6c\x87\xe3\x51\x7d\x6d\x92\x51\x93\xc5\x37\x59\x3c\xfe\x24\xcb\xbc\x60\x82\x57\x8e\xcb\xbc\x60\x42\xf0\x88\xd5\x6a\xb2\x78\x20\xea\xd7\x34\x47\x08\x93\x6a\x16\xbf\x94\xc5\x03\x51\xed\xa8\x2c\x1e\x08\xae\xae\x57\x93\xc5\xe3\x6a\xf6\x7e\x49\x05\x32\xef\x66\xd2\x2e\xf4\xe5\xd6\x1c\x8e\xe6\xbc\xa3\xe5\x35\x99\x37\x10\x3c\x79\xbf\x5a\xb3\x9f\xcd\x7d\x70\x5a\xa9\x1d\x6d\xee\x03\x26\x54\x16\xdf\x9a\x93\x7c\xfa\xa9\x5d\x68\x4e\x32\x3d\x50\x5f\x06\xde\x62\xb4\x4d\x85\x19\x08\xde\x33\x5f\xba\xc4\x09\x7a\x7d\x2e\x5d\xe2\x84\xf7\x4b\x7a\xaa\xbe\x0c\x78\x95\xb7\x9a\x6c\x1d\x08\x52\xe5\xac\x26\x5b\x6f\xfa\xab\x39\xb8\xdd\x79\x97\xd3\x7b\xc8\x6a\x72\x7a\x40\xcb\xff\x6a\x72\xfa\xd6\x9d\x50\x98\x5d\x93\xad\x03\x41\xda\x9a\xd5\x34\x0c\xe8\xad\x97\x05\xad\x40\x6f\xbd\xd5\x42\x96\x05\x73\x6e\x2a\xc7\x40\x64\x97\x64\x0f\x3e\x7e\xed\xfc\xc9\xaf\x9b\xfc\x1a\x59\xd2\xe4\xd7\x80\xf7\xdb\xab\xc9\xae\x81\x48\x58\x56\x93\x5d\xb7\x8f\xc1\x56\xbf\x74\x65\xc9\x60\x5d\xe0\x32\xd8\x96\x8e\xa4\x4c\x40\xd6\x09\x44\x71\xe2\x65\x9d\x2d\x5d\x1f\x6e\x04\xf9\x64\xf3\x40\x5e\x2c\xe6\xfa\xf8\x38\x1b\x4c\x51\xb7\xc4\x85\x5b\xe2\xc9\x4b\xe8\x4b\xb7\xc4\xd5\x55\x24\x79\x51\x74\x75\x79\x56\x37\x92\xfd\xfc\x0d\x27\xed\x2e\x4b\xeb\xa7\xf3\x16\xfe\x72\x48\x63\x20\x3e\x52\x4a\x32\xf9\xc7\x01\xe9\x92\xe4\x76\x42\x2d\xe9\x72\x1c\xe0\xb3\x0e\x99\x3d\x4f\x28\xbe\xcf\xb4\x4c\x9f\x27\xc4\x99\x7e\x69\xcb\x39\x07\x6b\x30\xea\x32\xa1\x6e\xfe\xcd\xea\x87\x55\x92\x93\xcb\x71\xab\xcb\x84\x80\x38\x10\x5b\x5d\x26\x64\xde\x3d\x9f\xf4\x5b\xe6\xdd\x13\x3e\xb3\x92\x79\xf7\x56\xf7\x30\xbb\x23\x65\xf5\xe2\x14\x82\x0c\x18\xab\xab\x92\x01\xd1\x77\x4b\x39\x1c\xaa\x64\x64\x11\x58\xdd\xfd\x0a\x84\xa6\xc2\xae\x4a\xa6\x4b\x68\xee\x4e\x9b\x5b\x58\x97\x50\xbc\x28\x96\x2e\xa1\xab\xab\x6b\xed\xd8\x05\xba\xbb\x0e\x08\x2f\x20\xf4\x12\x5d\xdd\x2d\xb6\x23\xf1\xcc\xf6\x27\x74\x02\x30\x97\xd9\xfe\x96\x2e\xa1\x89\x23\xd6\xd2\x25\x74\x75\xf7\xce\x6e\x1f\xdc\x3b\x40\xef\x6c\xa7\xee\xde\xe9\x9e\x22\xb5\xbb\x74\x37\x0a\x90\x1d\xb5\xa3\xbb\x51\x3a\x56\xb5\x24\xc2\x7d\x75\x35\x16\xa0\x93\x22\x6e\x75\x15\x16\x20\xce\xd3\x1f\x73\x40\xdc\x4f\xf8\x64\xaf\xee\x7e\x02\x82\x77\x15\x57\x77\x3f\x75\x8f\x8c\x41\x9d\x2a\x2c\x3d\x1d\x23\x4e\xf2\xdd\xfd\x04\x04\xb9\x9c\x56\xf7\x94\x07\x94\xdc\x61\x9a\xdd\x63\x1e\x10\x89\x96\xdd\x55\x58\x74\x91\x35\xc5\xd1\xd2\x45\x76\xf5\x27\x7f\xfe\x71\x72\x57\xbe\x74\x91\x5d\xe6\x10\x34\xcb\xcb\x32\x87\xa0\x10\xc4\x79\x2d\x73\x08\xae\xd0\xae\x83\xb7\xc3\xd2\xd1\x55\xe8\x1a\x93\xc2\xf5\x1c\xdf\xc4\xa0\x64\xe8\x9a\xba\x02\x5f\x04\x1f\x18\x58\x61\x57\x81\x4e\xe2\xc2\x15\x1e\x8e\x81\x20\x41\xfa\xd2\x33\x55\x28\x3e\x03\xbf\x74\x4d\x15\xba\x9a\xa4\xae\xa7\x42\xef\xcd\x52\x55\x12\x7a\x3a\xec\x25\x1c\x36\x3c\x4f\x4b\x1e\x4c\xbc\xae\xa7\x42\x1c\xdd\x1f\x1b\x92\x30\x0b\x32\x07\xa1\xb6\x06\x74\xef\x15\xf4\x4f\x15\xa2\x7e\xad\x70\x84\x34\x14\xb2\xf9\x42\x95\x0e\x88\x40\xd2\x84\x2a\x9d\x5e\xac\xa9\x68\xd7\x8b\x75\xe1\xc5\x7a\x72\x2f\xbc\xf4\x62\x15\xde\x62\xd2\x8a\x34\x06\x08\x35\x2f\x55\xe9\x80\xc4\x79\x65\xa5\xec\x11\x78\xbf\xb4\xd8\x29\x8d\xb7\x03\xd8\x41\xe9\x41\x1b\xd0\xdf\x7b\xa5\x07\x6d\xa0\x6b\xf9\x4d\x15\xbf\x94\x73\x92\xe5\x69\xa5\x9c\x13\x30\xbc\x60\xa5\x9c\x13\x08\xe2\x4b\x57\xca\x39\x81\xce\xab\x06\x2b\x55\xfc\x52\x43\x23\xb1\xa4\x2b\x35\x34\x02\x29\x63\x4b\x17\x5f\x7a\x3b\xbd\x5b\xe5\x2d\x09\x45\xe7\xeb\xf9\x23\xe9\xe1\xc3\x77\xce\x75\xe9\x15\xde\xdf\x97\xe6\x98\x91\x6e\x04\xbf\xb2\x95\x32\xe6\xf4\xd1\xc7\x4d\x92\x63\xf6\x42\xe2\x17\xb4\xd2\x85\x0c\x04\xa9\x2b\x56\xca\x98\x81\xd8\xbf\x9f\x77\xc8\xe0\xcb\xb8\x92\xae\x94\x2f\xfb\x68\x8f\x7b\x27\xd5\x0d\x81\x92\x04\x05\x2d\x1f\xf2\x11\x22\x9c\x39\x75\xc3\xf4\xe1\x2d\x04\x6c\xaa\x1b\xa6\xba\x21\x29\xa6\x97\xcf\xfd\x08\x11\x5f\xfb\x1d\xb2\xe6\x3e\x81\x23\xa4\xe7\x73\x20\x79\x3b\x7c\xa5\xe2\x01\x88\x13\x95\x29\x15\x0f\x40\xef\xe8\x86\xa9\x86\x97\x4a\x8c\xc3\xa9\x53\x62\x00\x49\xa8\xe6\x4a\x25\x46\xb6\xaf\x69\x0c\x87\xe2\x01\x48\x2d\xef\xd9\xbe\xa6\xc1\x0d\x8f\xfa\x1b\xce\xd8\xfa\x5c\x0b\x3d\x1c\x67\x05\x8a\x3e\xd7\xbe\x33\xbf\xf4\xb9\x16\x82\x6c\xc8\x4b\x9f\x6b\xa1\xf8\xa8\xfc\x4a\x95\x42\x40\x0f\xb2\x95\x2a\x85\xe9\xd3\x42\xee\x2d\x75\x42\x20\xda\x47\x72\x68\xb4\xa1\xc2\x2b\x53\xe9\x94\xea\x84\x61\x29\x47\x46\x81\x45\xf4\xef\xd2\xa7\x5b\xe8\xda\x0c\x53\x81\x95\xc6\xeb\x72\x73\x91\x5e\x29\xa5\x6a\x22\xaf\xb5\x2e\x33\x7d\x0a\x11\x8e\xa9\x6a\x22\x90\x47\x5a\xca\x01\xc2\x1e\xe0\x7d\xb9\x2e\xe3\x42\x0f\x57\x9d\xe6\x80\x54\xd0\x11\x5d\xbc\x52\x41\x07\x84\xea\x54\x2a\xe8\x92\x7b\xa1\x24\xf6\x77\xa5\x22\x0c\x88\x40\xe5\x4c\x25\x18\x90\x47\xfa\xa5\x93\x62\x7e\x33\x94\x66\x5d\xd2\x85\x38\xed\x92\x6c\x3d\xb5\x79\x62\xa1\x4d\xd9\x7a\x2a\xc0\x48\xbd\xbf\x52\x01\x06\xe4\x91\x92\x6c\x19\x27\xee\x40\x5d\x4a\x35\xc9\xf4\x78\x7d\xb8\x84\x65\xd8\x69\xd0\xa0\xf3\x24\xc3\x36\x39\x6a\x1e\xdd\x76\xd8\x27\x38\x76\x77\x6d\xca\xb1\x81\xc8\xcd\x3a\xed\x93\x57\x3b\x4a\x04\xf3\xa5\x0a\xc1\xbb\xf9\x4b\x67\xf9\x85\xb3\xfc\xa9\x26\xa0\xb3\xbc\xf0\x7e\x29\xad\x48\xc3\xc9\x88\x85\x60\x0a\x55\x21\x89\x8d\x5e\xa6\x50\x5d\xd7\xc7\x64\xd1\x28\x2f\x99\xec\xe5\xfb\x49\x9b\x3f\x96\x92\xec\x14\xab\xcf\x57\xb8\x84\xae\x91\x46\x07\x7d\x21\x7a\x5a\x27\x9d\xf2\x79\xad\x8f\x59\xea\xca\x2e\x74\x4d\x28\xe6\x3c\x5d\x7a\xb7\x27\x81\xd0\x4b\xef\x76\x21\x88\x4f\x5a\x7a\xb7\x2f\xf3\xa0\x26\x2f\xe7\x2c\x1d\xd2\x17\x39\x4f\x8b\xb9\xad\x97\x49\x4f\x85\xe0\x2d\xcb\x65\xce\xd3\xa5\xa7\x79\xaa\x2e\xe9\x69\x2e\x64\xdf\x25\xd9\x5e\x65\x24\xa9\xc3\x97\x8e\xe0\x0b\x47\x70\x9f\x2e\x5f\x3a\x82\x2f\x93\x7c\xe6\x89\x58\xd0\xc9\x59\x08\x1e\xaf\x58\x26\xf9\x5c\xc3\x1d\x4a\x84\xf3\x1a\xf6\x61\x68\x9f\x43\x86\x0d\x77\xa8\xde\xcb\x49\xe8\xf2\xd2\x7b\x79\x0d\xcd\x67\xe4\x26\x5f\x43\xfd\x71\x98\xde\x95\x41\x1a\xf6\x74\xa8\x2b\xe2\x9b\xbb\x86\xba\x22\x90\x5a\x00\x87\xba\xe2\xd0\xaa\x54\x11\xa6\xc3\x35\x0e\xa4\xae\x42\xc3\x35\xae\xbf\x71\xe2\x1e\xb9\xf4\x37\x5e\xf8\x1b\x9f\x1e\x9d\xf5\x37\x5e\xd3\x4b\x40\xde\x5d\x5e\x53\xa1\x0e\xa4\x5a\xbc\x4f\x5b\x2d\x7d\x84\x93\x10\xe4\xa5\x8f\xb0\x90\x84\xcf\x2f\x9d\x80\x85\x4e\xd8\xe3\x9a\x8a\x4e\x20\x49\xf3\xb0\xcc\x18\x2a\x94\xc4\xfd\x72\x99\x32\x54\x88\x1e\x92\x4e\x49\x36\x0d\x9e\x3b\x15\x9e\x53\xcf\xa6\x43\x92\x4d\x23\x46\xc4\x2b\x9e\xa9\xf0\x04\x92\x08\x8e\x35\x15\x9e\xb8\x22\xbf\x3f\x76\x40\x5b\xd2\xc8\x76\x8b\x5a\x38\xb5\x85\x4c\xef\xf6\xc8\xcb\xbe\x4c\x36\x2a\xa4\xf6\x00\x73\x8d\x2e\xdc\x8f\x4b\x92\x8b\x7b\x99\x45\x54\xe8\xbc\xd3\xb4\x4c\x22\xba\xbe\x24\xa2\xe8\x50\x26\x11\x5d\x53\x8b\x06\x0f\xd8\xae\xa9\x45\x03\x48\xd2\x7f\xaf\xa9\x08\xf4\x41\xb0\x24\xdb\xd8\x32\x2f\xa6\x10\xa7\x7d\x97\xab\xeb\x8a\x9c\xbc\x5f\xb6\x74\x45\x5e\x53\x86\xad\x76\x6e\xde\x4a\xa1\x07\xdc\xd3\xb4\x95\xeb\x4b\x5b\xc9\x81\xce\xb4\x95\x42\x4f\x98\xa7\x69\x2b\x85\x28\x55\x92\xad\x75\xf7\xf1\x7e\xed\xd2\xd5\x59\x88\xe6\x4c\xb9\xfb\xa6\xea\x7a\x2b\xed\xd7\x25\xb6\x69\x2d\x85\x4f\x06\x4e\xd9\xfe\x94\xc7\x37\xac\xf7\xba\x3d\x0b\x9f\xc0\x9b\xae\xff\x29\x43\x27\xbe\x7c\x99\xfd\x52\x88\xd3\xa6\xcb\xd0\xa7\x6c\xb9\xb9\x56\x64\xcb\x40\x6a\x4a\xd3\x39\x7a\xe1\x1c\x5d\x37\x96\xa7\xce\xd1\x8b\xe4\x94\x25\x79\xa8\x70\x99\x9d\x52\x48\x32\x60\xac\xa5\xa2\x6b\x3e\xc9\x6c\xcc\xb8\xf9\x24\x85\xc4\xe1\x7d\x99\x4f\x72\x2d\x37\x00\xb9\x8b\xd6\x72\x03\x00\x9f\x8b\xd8\x72\x03\x2c\xdf\xea\x42\xab\x5a\xae\x7f\x20\x79\xc9\x63\x2d\xd7\x3f\xf0\xc9\x67\x93\x4e\x0a\x79\x34\x7f\x3e\x24\x85\x55\xfa\xfb\x29\x0d\x6d\xa2\x49\xba\x24\x39\xb9\xf0\x4c\x9f\x64\x13\x82\x77\xf3\x96\x4f\xb2\x09\xc5\xc7\x88\xd6\x92\x67\x2e\x53\xb0\x20\x8d\x7d\xa5\x4d\x78\x8b\xf1\xa9\xbb\x09\xc8\x03\x31\xb8\xdc\x4d\x4b\x1b\x04\x8e\xb5\x6b\xa9\x64\x02\xc1\x03\x64\x6b\xa9\x64\x02\x79\x70\xce\x37\x1f\xe6\x22\x6d\x65\xf1\x6d\xa3\xb5\x54\x15\x81\x3c\x9c\x3d\x55\x41\xd3\x5a\x7e\xae\x7b\xa6\xb5\x5c\x5f\x5a\x4b\x6c\x81\xa6\xb5\x14\xe2\xc4\x0e\x65\x56\xcb\xc5\x6b\x70\xe5\x73\x8f\x5b\xaa\x6f\xcb\x3c\x73\x2e\x05\xe5\x1b\xf0\xe9\x13\x4b\xd9\xb0\xbe\xc7\x05\x24\x39\xde\x78\xff\x1c\xdd\xdf\x1a\x92\xbe\x96\xd1\x29\x37\xb0\x29\x2c\xd3\xdd\x64\x0a\x4b\xa1\xeb\x00\x63\x0a\x4b\x21\x8f\xaf\x94\x03\xa9\xfc\x6c\xd6\xa0\x54\x59\xbe\xbd\x76\x58\x81\x1d\xc0\xc6\x47\xc2\xb4\xe5\xfb\x74\xcb\x44\x97\xd9\xec\x81\x1b\x7d\xe9\xfd\xe3\x52\x50\xf6\x90\xd4\xf2\x2d\xc6\xec\xb9\xd1\x81\x3c\xd0\xdf\x0c\x11\x58\x4b\x23\x9f\x5e\x37\xcb\xd3\xf5\x32\xb0\x13\x7e\xb3\x3c\x5d\xaf\x6f\x73\x87\x9f\xda\x90\xd4\x33\x89\xb6\xb9\xb9\x97\x27\x6e\x5c\x94\xd7\xf2\xc4\xbd\xcc\x92\x51\xfc\xd2\xe6\xb2\xdf\xbb\xfb\xc0\xfd\xbe\x74\xc4\x21\x56\x61\x2d\xb5\x35\x20\xbd\x69\x5a\x6a\x6b\xeb\x63\x0b\x2e\x36\xd9\xc2\xd2\x11\x07\x19\x68\xa8\xc2\x22\x54\xa1\x16\x34\x5c\x43\x15\x84\xe8\x8c\xf7\xad\xb2\x06\x7c\x3a\xe3\xad\xb2\x76\x7b\x96\xd6\x2b\xda\xac\x99\x42\xe8\xa0\x6c\xd2\xcc\x75\xab\xc0\x79\x80\xbf\x55\xe0\x80\xd0\x13\xcc\xa4\x99\x42\x78\xa9\x64\xd2\xcc\x75\x2b\x9d\xc9\xb2\xb3\x6e\xa5\xf3\xed\xc9\x16\x41\x76\x2b\x9d\x6f\x6f\x12\xc8\x5a\xbf\xcc\x3e\x29\xc4\x86\xb0\xb8\x3d\x2d\xde\x9e\x16\xc9\xc8\xb0\x6e\x4f\x8b\xb7\x91\x3c\xe1\xaf\x2d\x49\xec\x33\x87\x43\x4e\x71\x7b\x59\xac\xef\xb4\x49\x2a\x85\x24\x4b\xc3\x32\x49\xe5\xba\x95\x81\x04\x1e\xaf\x5b\x19\x08\x98\xb8\x61\x99\x30\x72\x99\x1d\xf2\x93\xec\x66\x87\x14\x7a\xa0\xfb\x98\x1d\x52\xe8\x5a\xdd\xcc\x0e\x29\xf4\x0e\x3f\x31\x32\x44\x08\x59\xa2\x91\x21\xcb\xc8\x90\x4f\xfe\x1b\x19\xb2\xcc\x56\x98\xbc\x89\xb9\xcc\x56\x28\x24\xaf\x2b\x2c\xb3\x15\x2e\xd3\xff\xa5\x8b\xcd\xc0\x8d\xf5\xa5\xff\xe3\x8e\xd4\xf4\x7f\x42\x49\x7d\xdf\x8d\xe5\x58\xc4\x72\x54\xe2\x09\x97\xb1\x1c\x42\x04\x0c\xc5\xf4\x7f\xc2\xfb\xe5\x0e\x6d\x97\x46\x92\x06\x44\xe1\xa3\xce\x6f\x96\xc0\x74\x01\x9a\x25\x50\x08\x32\x59\x2f\x03\x43\xd6\xf3\xcd\x28\x3b\xde\xb8\x0d\x21\x88\xb4\x58\xc6\x6d\x08\x25\x7b\xf6\x5f\x17\xd9\x4f\xfd\x7e\x59\x27\x96\x80\xf4\x48\x62\x8a\x38\xad\x98\x1e\x50\x88\xca\x36\x34\x3d\xe0\xf2\x29\xc6\xd4\x1f\xdc\xc4\x7f\x42\x34\xb4\x6e\x13\xff\x09\x25\xb5\x7d\x3d\x32\xfd\x47\x45\xab\xfb\x6b\x5d\x52\xb7\x18\xc3\xa5\xa6\x65\x7e\xc0\xde\xad\x20\x25\x4d\x8b\x31\x0e\x8a\x0b\x20\x4e\x4e\xa4\x8f\xe2\xe2\xf1\xb6\x47\xdd\xc8\x28\x14\xa1\x07\xbb\xce\x20\x94\xf5\x78\xd0\xe1\x25\xd1\x65\x4a\x3f\x21\x3c\xdf\x1a\x84\x22\x44\xc3\xf4\x6a\x10\x8a\xf0\x7e\x59\xa1\x5d\xd2\xf0\xda\x28\x7e\x39\x24\x0d\x8b\x31\x94\x2a\x81\x5f\x4e\xbf\xc3\x3a\xed\x81\x77\xfd\xe1\xc2\xe8\x5f\x17\xc8\x97\x6e\x0f\x5c\xda\x40\x10\x61\xbc\x8c\x5e\x59\x8f\xb6\x6e\x52\x5f\x2c\x73\xfa\x09\xb9\x3b\xe0\x9e\x55\x1e\xc5\x8a\x6a\xfd\xa3\x58\x79\x14\x2b\x55\x92\xf3\x42\xe0\x4b\xc6\x57\x83\x3d\x25\xf0\x85\x64\x94\xcb\xc0\x97\xf5\xa5\xfe\x73\x0e\x94\x34\xe6\xd4\x4b\x4d\x11\x06\xa1\x2c\x82\x50\x2a\x69\xd9\x6e\x83\x50\xee\xcd\x6b\x14\x96\xd6\x6d\xe6\x3a\x21\xd0\x59\x6f\x03\x4e\x6e\x9f\x5d\x4c\x1c\x82\x6e\x63\x44\x84\x80\x49\xdc\x26\x96\xbb\xcd\x0f\x97\xf1\x4e\xcc\x6d\x7e\x38\x41\xe7\xd6\xdb\xfc\x70\xb7\xf1\x20\x66\xd5\xbb\x8d\x07\xb9\xbf\x78\x90\x57\x97\xba\x8d\x07\xb9\x37\x2f\x26\xb0\xc4\xdd\xe6\x6a\x13\x22\xfc\x35\x74\x07\xa1\x18\xf3\x70\x9b\xab\x4d\x08\x5e\x1b\xbd\xcd\xd5\x26\x14\xdf\x89\xbb\xcd\xd5\x26\x44\xb7\x1d\xdd\xb6\xc9\xc1\x78\xeb\xfc\x36\x6c\xe4\xde\x54\xff\x73\xa3\xd6\xb0\x06\xd5\xff\x66\x31\x6b\xd0\x5e\x93\x5b\x42\xb3\x0f\xda\x6b\x0e\x49\x0e\x92\x02\x9f\x14\x27\xf7\x86\xc0\x17\x8c\xf3\xbe\x79\xf0\xfe\x83\x0e\x8b\xbc\x7d\xf6\x5e\x78\xbf\xa4\xbd\x70\x52\x41\x17\xe3\x9b\x37\xf0\x3f\x78\x8b\xd1\x53\x54\x05\x21\xf0\x8c\xbb\x7d\x0a\xff\xf6\x39\xc9\xc4\x77\xff\xf6\x39\x49\x21\xd2\x11\x4f\x7b\xe5\x42\xe2\x51\x9a\xdb\x98\x99\x9b\x98\x99\xca\xdb\x04\xb7\x31\x33\x77\x91\xbb\xe2\x3c\x7c\x17\xb8\xab\xa0\xc3\xf2\x5d\xe0\xae\x77\x91\x47\xe1\x15\x7c\x17\x78\x94\x10\x98\x6c\xee\x02\x8f\xba\x8b\xcc\x07\xbf\x86\xbb\xc0\x7c\x84\x4e\x7c\xca\x5d\x5c\x5b\x45\xae\x82\x7f\xc5\x4d\x38\xcc\x07\xc1\x2b\x13\xb7\x41\x31\x42\x94\x8d\x3a\x5d\x34\x46\xbb\x24\xe7\xf6\xdb\x68\x97\xbb\x68\x53\x20\x72\xe1\x2e\xe1\xaf\xe1\x92\x73\xd8\xd3\xf0\xd7\xb0\x9e\xf0\xe4\xe6\x5d\xc2\x5f\xfb\x16\x08\x5b\xa6\xb8\x40\x8a\x37\x57\xaf\xe6\x7b\x17\x17\x48\x71\x37\x3b\x0b\x25\xec\x02\x51\xff\x44\xbb\xdd\x85\xdd\x7c\x17\xdd\x6f\xdc\x32\x05\x2d\x51\x88\x6a\x17\x5c\x5a\xc5\x43\x23\x8e\xde\x77\x71\x6d\x95\x34\x89\x1e\x43\xe9\xa2\x01\xf2\xb4\xb9\xae\x99\xe2\xe5\x0d\xaa\xef\x5d\x5c\x34\xc5\x37\xf2\x1c\x70\xd7\x4c\x31\x53\x5b\x50\xa7\x6b\x06\xc8\x13\x36\x60\xd2\xbb\xbb\x68\x3b\xc1\x43\xfc\xf6\x2d\x4d\x21\xe2\xb0\x98\xfd\xcc\xaf\xb5\xac\x8f\xfc\x5a\x8b\x39\xd9\x39\x40\xe2\x0b\x79\xb2\xad\x88\x21\xfa\x60\xdf\x70\xbd\xbe\x0d\x25\xba\x09\x25\xaa\xbc\xc6\x7d\x1b\x4a\x24\xbc\xc5\x4e\x68\x45\x9a\x7d\x6f\x90\x76\x49\xbb\xc5\x2a\xb4\x43\x1a\x16\x37\x36\x82\xe1\x45\x37\xe1\x43\x6f\xb1\x5f\x3f\x6a\xdf\xe6\xeb\x13\x12\x63\xe4\xbd\xcb\x49\x81\x7d\xdb\xfc\x65\x59\x29\x90\x3c\x9a\x74\xef\xd5\x36\x55\xdb\xf4\xca\x8c\x7b\xaf\xb6\x89\x8b\x0f\x92\xad\xde\x7b\xb5\x4d\x5c\x7c\x60\x6f\xbe\x77\xce\xae\xf7\xfe\xaa\x9f\xef\x97\x56\x7a\x49\x23\xb6\x24\xfc\x72\x48\xe2\x7d\xbb\xce\x38\xa0\xab\xdc\x04\x3e\xed\x1b\xcf\xe4\xdc\xbb\xec\x7b\xf7\x91\xc8\x6e\x33\xec\xd4\xab\x5a\xbc\xc5\xf8\xb4\xd9\x5c\x53\x30\x76\x06\xbf\xd9\x5a\x32\x23\x71\xb3\x75\x1b\x2b\x75\x93\x97\xf0\xfd\x92\xa6\xa1\x53\x08\x3d\x37\xbf\x0c\x49\x58\xe4\x5f\x6d\xeb\x36\x56\x4a\xd8\x37\x9c\x15\xef\x5d\x91\x01\x24\x17\x24\xf7\xde\xec\x54\xb3\x53\x74\x40\x21\x42\x44\xd5\xfb\xa5\xbf\x66\xa7\xbc\xb3\xd8\xfc\xb1\xaf\x53\xbe\xe1\x4f\x3f\xbb\x33\xf5\x0a\x8c\xf7\x4b\x2a\x50\x62\x00\xc1\xd3\x13\xf7\xae\xc0\x20\x8b\xe2\xbe\xe1\x89\x70\x9b\x45\x51\xe8\xf8\xad\xde\x66\x51\x14\xde\x62\x4c\x95\xdc\xe5\x7b\x69\xb5\xf3\x6b\xf1\x7f\x31\x76\x3f\x39\x13\xeb\x3a\x76\xc0\xe7\x59\xc5\xdb\x41\xca\xae\xb2\x25\x01\x99\x65\x9c\xec\xa1\xfe\x90\x40\x0f\xba\xfb\xe2\xa6\x7b\xff\x81\xcf\xcf\x77\x90\xf4\xe0\xbe\xc1\x87\xf3\x81\x90\xcb\x96\x2c\x51\x14\xcd\x43\x9a\x0a\x49\x0c\x92\xef\x24\xb5\x4f\x63\x3b\x8d\xad\x0b\x8d\xed\xa5\x35\xae\x1f\xcb\xe3\xd2\x1a\xea\xb1\xbe\x4c\x05\x5a\x23\xb0\x3f\x12\xd5\x5c\xe8\x59\x60\xbd\xa2\x80\x77\x8a\x24\x8c\xad\xab\x59\x3a\x4a\x6b\x04\x56\xf2\x51\x16\xc6\x16\x90\x3e\xa4\x76\x1b\x52\x48\x5c\xd7\x95\xb9\x29\x4d\xb2\x4b\x21\x37\x73\x03\x8a\x64\xa7\x48\xa6\x56\xa6\x42\xd8\xb5\x71\xf3\x16\x5a\x17\x58\xa9\x84\x59\x68\x5d\x15\x0a\xd7\xf5\xfb\x19\x21\x8a\x44\x7e\xc7\x24\xe9\x2d\xf9\x1d\xc1\x4c\x41\xbb\x92\xdf\x11\xac\xd4\xcb\x2c\xf9\x1d\xc1\x4c\x98\x73\x49\xef\x58\xe1\x83\xed\x8f\x04\x52\x17\x3e\x58\xdd\x7c\x30\xb3\x8f\x6a\x09\x1f\xec\xc8\xf7\xa6\xc2\x07\xab\xe4\x6f\xbc\xae\x24\xdb\xc9\xd2\xf3\x45\xf4\x24\x4a\xcf\xa3\x8f\xb1\xc6\xea\xf9\xb2\x08\xa2\xcf\xc2\x17\xbb\x61\x25\xfc\xa4\xb0\xc6\x2a\x74\xb0\xfd\x91\x70\xe8\xc2\x07\x03\x63\x9c\x9a\x7d\x89\x4c\xab\x3c\xee\x93\xd6\x79\xd2\x3a\x31\x61\xd0\xc1\xc0\xd5\x2c\x97\xd2\x3a\x81\x19\x1a\x56\x3d\x69\x9d\xe7\xa5\x61\xae\x66\x79\x36\x2a\xe6\x49\xc5\xc4\x34\xc1\x1a\x03\x33\xdf\xc7\x0a\x6b\xac\xc2\x1a\xbb\xae\x5c\x91\xe9\x82\x3a\xb4\x53\xb3\x45\xf4\x49\xb3\xbc\x64\x14\x31\x30\x86\x91\x64\x47\x86\x02\x76\x35\xcb\x4d\x4f\x5d\x90\x0c\x76\xee\x11\xe9\xc1\x65\x19\x5c\xcd\xf2\xb8\xa7\x07\x51\x51\x39\x96\xc3\x93\x3e\x49\x35\xe0\xfd\xf1\xc8\xe6\xa9\x1c\x30\x98\x89\x7a\xad\xe7\xd0\xf9\x11\x95\x9b\x28\xdd\x7a\x0e\xef\x2f\x1f\x1f\x43\x35\xac\x27\x63\x22\x30\x96\xd7\xc7\x98\x78\xd2\x14\xdb\xdd\xec\xbe\xe9\xd5\xf9\xc4\x43\x17\xaa\x1a\xc0\x3e\x2e\x4c\xb5\x0a\x2d\xed\xba\x32\x9d\x1f\xc6\x23\x3c\xf9\x14\x6a\x29\xb4\x34\x70\x35\xf3\x6b\x45\x96\xcf\xec\x51\xb9\x98\x6a\x95\x7a\xc5\x57\xb3\x8c\x38\x1d\x10\x98\x71\xd9\x16\xbe\x19\xd8\x1f\x09\x40\x2f\x84\x33\xb0\x8e\x98\x48\xf8\x66\x15\x72\xd9\xd5\x2c\x43\x49\x07\x04\x56\xa2\xbe\x0a\xb9\x0c\xec\x8f\x84\xa0\x16\x72\x19\x98\xcf\xa7\x66\x46\x77\x19\x5d\xdd\xa2\x17\x02\xeb\x70\x03\x7a\x21\x70\x35\xcb\xf3\x52\x0c\x4f\x69\x75\xb3\x93\xe0\x9b\x55\x88\x64\x57\xb3\x4c\x10\x5a\x20\xb0\x0e\xaf\x8f\x16\x08\x6b\xec\x6a\xf6\xf7\x47\xed\xc2\x2a\x03\x2b\x59\x66\x2b\x0c\xb3\x1b\xae\x5f\xf1\x9c\x46\x5f\x4a\x09\xaf\x97\x9d\x12\x58\xc9\xa7\x51\x78\x66\x60\x7f\x24\x44\xb5\x30\xc9\x2a\x4c\xb2\x23\xee\x90\xc2\x24\x03\xeb\x48\x67\x10\xc9\xc0\x3a\x36\xa2\x9d\x68\x4f\xff\x9e\x11\x3d\x89\x32\x80\x19\xfa\x17\xf5\x12\x58\xac\x42\x6c\xb3\x0a\x8d\xec\x7a\x0a\xcd\x26\x59\xa6\xe7\xc3\x53\x2c\x22\xdd\x7c\xba\x67\x91\xe5\x8b\xc3\xe1\x9e\x4d\xd4\x9a\xe5\x52\xea\x25\x30\x93\x5e\xa4\x5e\xb4\x4b\x60\x7f\x24\x55\x5a\xbd\xa8\x97\xc0\xcc\xd7\xad\xc2\x36\x03\xeb\x70\x4f\x0a\xe7\x45\x95\x24\x1a\xb5\xd0\xc8\xc0\x4c\xd5\x99\x42\x23\x03\x57\xb3\x23\xb2\x37\xd9\x3b\xbf\xe6\xd1\x3e\x44\xa6\xc0\xcb\xb3\x7d\xc9\x72\xb0\x8c\x61\x8b\x6d\x06\xae\x66\x23\x32\x9d\x8f\xd7\x65\xdc\x3d\xd0\xf9\xf3\xee\xd5\xb5\x74\x90\xd2\xc0\x4a\x69\xd3\x42\x4a\xab\x64\x7f\xdd\x1f\x89\x16\xad\x97\xf3\x4b\x60\x1d\x59\xe9\x2f\xba\x2a\x3c\xb5\xab\x99\x4b\xf5\x94\xf1\xf3\xd4\x4c\x4f\x6f\xc5\x94\xfd\x19\xb5\x0c\xac\x43\x33\x8a\x29\xb0\x3f\xe2\x39\x2d\xd4\x32\xb0\x0e\x5d\x70\xcc\x09\x8d\xec\x6a\x96\x01\x19\xf7\x1d\x2c\x9d\x74\x9e\x66\x0a\x48\x89\x59\x98\x65\x60\x1d\x4f\x3f\x66\x24\xe9\x2a\xaf\x8a\xae\x7a\xdd\xba\x2a\x46\x2f\xb2\x19\x58\x49\x69\x5c\xc8\x66\x60\x7f\xa4\xa6\x6d\xc9\x5b\x5b\x77\xde\xda\x6c\x5c\xf8\x67\x15\xb2\xd9\xd5\x2c\x77\x70\x00\xc3\x36\x7b\x19\x5c\x07\xb0\xc0\x4a\x7d\xe5\x7a\x39\x80\x05\x56\x08\x8a\x85\x7f\x06\x7c\xf9\x2d\xfc\x33\xb0\x42\xd8\x2c\x15\xc4\x2b\xbc\xb2\xeb\x96\x9e\x56\xa7\x52\xb1\x33\x55\xa0\x0a\xb1\x0c\x5c\xcd\x32\x68\xd4\x23\x66\xd9\x3d\x73\xa9\xc7\xd7\xad\xf7\x62\x41\xe3\x8c\xd5\xcd\x19\x3b\xd3\x75\x7a\xef\xc5\xd2\xd9\xa6\x4b\x3d\x5b\x2c\x9d\xc3\x94\xa4\xe3\x42\x06\xbb\x9a\x65\x88\xa8\xa7\xc0\x4a\x2a\xee\x7a\xd1\x4e\x2f\xaa\xc8\x08\x51\x45\xaf\x5b\x15\x65\x63\x44\x06\xab\x90\xc1\x0e\xc7\x67\x64\xb0\x0a\xa5\x6b\x7f\x6c\x39\xb6\xe2\x74\x01\x89\x10\x0a\xa7\x0b\x5c\xcd\xce\xc8\x26\x99\xc7\xdd\x23\x5a\x44\x6f\xcd\x46\x64\x1f\xb2\xcc\xa2\xac\x20\xe9\x73\xeb\xb8\x35\xcf\x5a\x91\x15\x99\xb8\xa2\x57\x44\x4d\xa4\x57\x11\x51\x3c\x81\x95\x44\xe7\x85\x0c\x06\x56\xb2\xe7\x16\x32\x58\x85\xf8\xb5\x3f\xe2\x6d\x2b\xcc\x2f\xb0\x42\xac\x29\xc4\x2f\x30\x92\x1d\xbf\x10\xbf\xc0\x75\xa5\x7b\xea\x67\x74\x51\x12\x06\xd4\x41\x17\x1d\x94\xcc\xfe\x70\x53\x9d\x8a\x92\xd9\xee\x47\xfb\x11\xfd\x34\x4b\xdf\x29\x99\xc0\x4c\xb8\x65\x21\x7e\x55\x58\x5e\x57\xb3\x0c\x07\x53\x07\xcd\xeb\xdc\x88\xf4\xea\xcc\xd2\xd8\xb7\xf4\xca\x09\x2b\x20\x1a\xa1\x70\xba\xc0\x98\xc6\x83\xde\x39\xe8\x9d\xdd\x4d\xe9\x1d\x34\xaf\x14\x67\x2a\x34\x2f\x30\x9f\x7a\xe0\xcc\x15\xe6\xd7\x75\xa5\x5f\xd3\xd1\xc4\x91\xe5\x63\x41\x61\x7e\x81\xab\x19\x99\x8e\x26\x91\x63\xa2\x33\x0a\xf3\xab\x0e\x1a\x2b\x89\x1c\x0b\x67\x0b\xac\xe3\xf5\x4f\x1c\xb2\x51\xba\xc0\x4c\xa6\xf5\x3a\xf8\xfa\x0e\x06\xd9\x1e\xed\x85\xe5\x05\xd6\x71\xa4\x37\xd4\x5e\x58\x5e\x57\xb3\xf4\x86\x92\x0b\xac\x97\x71\xa0\xe4\x0e\x4a\x2e\xc7\x8b\x83\x92\x3b\x9c\xe6\x76\xbd\xa1\xd1\x0e\x1a\x2d\x79\x1e\x0b\xcb\x0b\x0c\x8e\x10\x2c\x2f\xb0\x3f\xf2\x61\xb3\x0e\xe7\xb9\x43\xf5\xcc\x1c\xca\x10\xbf\xea\x60\xcb\x85\x23\x55\x78\x59\x60\xa5\xc8\x4e\xe1\x65\xd5\xe1\xec\xc6\x4d\x88\x70\x05\xe6\x34\xcb\x28\xa6\x83\x91\x96\x72\x5c\x75\x30\xd2\x0e\xe9\xbf\x73\x36\x39\x18\x69\xe1\x48\x5d\xcd\x32\x96\x6c\xa8\xc0\x4a\xa2\x80\xc2\x91\x02\x2b\xa5\xfc\x0b\x47\xaa\xc2\x91\xda\x1f\xbb\xe1\x5d\xf7\x4d\xb3\x5e\x5f\xb9\x01\x2d\x74\xd0\x42\xbb\x65\x47\x0b\x85\x23\x75\x70\xb5\xe0\x48\x81\x99\x2a\x12\x85\x23\x55\x21\x3f\x5d\x57\xbe\x22\x7b\x91\x65\xb6\xe7\xf4\x26\x95\x73\x85\xe9\x74\x35\xf3\x6b\x8b\x2c\x54\x81\x49\xf4\x26\xd2\x29\xa2\x0f\x91\x91\xbc\x7f\xad\xc8\xc4\xee\xad\x88\xd2\xa9\x93\x5d\x93\xa4\x91\x85\xc2\x04\x56\x72\x89\x15\x0a\x53\x85\x9c\x74\x35\xcb\x1d\xe8\x17\xe4\xa4\x67\x6c\x6c\xe4\x24\xb0\x3f\x12\x81\x5d\xc8\x49\x40\x0c\x50\x21\x27\x55\x88\x48\x57\xb3\x3c\x1b\xc3\x26\xb0\x12\x66\x5b\x88\x48\x75\xde\xfa\x25\x3b\x17\xda\x11\x90\x83\xbd\xd0\x8e\x2a\xac\xa0\xab\xd9\xf5\xfe\xb0\x82\xc0\xa4\xbc\xb1\x82\xc0\xfe\x48\xb9\xb3\xc2\x0a\x02\x2b\x75\x08\x0a\x2b\xa8\xce\x7b\x11\xe7\x40\x8e\xa1\x03\xe6\x19\x53\x18\x43\x07\xac\x47\x26\x03\x86\x4e\x9d\x2c\x91\xd4\x57\x2a\x74\x1c\x20\x66\xa9\x4e\x96\x48\x60\x25\x7b\x54\x9d\x16\xe9\xe9\xd8\x94\xc2\x46\x85\xb4\x03\xd6\x11\x5d\x82\xb4\x03\xd6\x71\x7a\x0c\xc3\x71\x2f\x5c\xef\xca\xc2\x0d\x0c\x8e\xe5\xd3\xba\x0d\x5c\xcd\xf2\xe6\x2d\xdc\x53\x65\xa6\x98\x5c\xd8\x3e\x60\x7f\x24\x01\x5d\xa1\xfb\x00\xe1\x54\x75\xb2\x4e\xc2\xf6\xb9\x9a\xa5\x0b\x6c\x91\x9b\xee\x73\x68\xe6\xc5\xf3\xea\xa4\xbc\x4e\xe1\xfb\x00\xf1\x54\x75\xd2\x02\xa7\xe3\x5b\x02\xb8\xeb\x74\x7c\x3b\x1d\xdf\x4e\x8f\xab\xf3\x0c\x8f\x84\xc4\xd6\xc9\xf0\x38\x1d\xb8\xcc\x36\x86\xc7\xb9\x3c\x9b\xb5\xc6\xe5\x1f\x58\xc7\xd4\xcc\xb3\xad\xb7\x66\xe9\x3d\x35\x70\x52\x03\x31\x59\x4e\x6a\x20\x30\xe9\xdd\x73\xdd\xcf\x51\xae\xcc\x88\xd3\x0c\x27\xcd\x60\x71\xd0\x0c\x01\x11\x61\x85\x62\x54\xa1\x18\x9d\xc9\x2e\x5e\x28\x46\x35\xb8\x6a\xed\x49\x28\x46\x40\x90\x58\xe1\x10\xd5\x60\x9e\xa4\x7a\x54\xe1\x10\x81\x15\x56\x74\xe1\x10\x81\x75\x64\x29\xe3\x10\xd5\x78\x7d\x5d\x39\x22\xfb\x91\x65\xe7\x8a\xef\x64\xd0\x02\x83\x29\x12\x6f\x07\xa6\x11\x90\x2d\xbf\x30\x8d\xc0\xfe\x08\x89\xa1\x30\x8d\xc0\x0c\xcd\xb0\x30\x8d\xc0\x3a\xb2\x1c\x31\x8d\xc0\x75\xa5\x5f\x3b\xc8\xb2\x33\x66\x9a\x62\x1a\xd5\x38\xcc\x98\xfb\xd7\x74\x2a\xe1\x46\x23\xaa\x6d\x38\x16\x0d\x7e\x92\xf0\x13\x4a\xbe\x78\xb0\x8e\x8d\x68\x10\x19\xb5\x18\x9c\xa8\x46\x40\x1c\x5d\xa1\x1a\x81\xab\xd9\x8c\xec\xbe\x43\xd6\xe8\xda\xfe\x7e\xd7\x1e\x34\xc9\x18\x96\x4e\x4c\x95\xe1\x04\x13\x58\x47\x66\x2c\xd6\x51\x0d\x2b\x9d\x63\x56\x8a\x79\xb0\x0e\x2f\xd7\x4a\x1f\x96\x75\xc2\x24\x0a\xc5\xa8\x86\x35\x9c\xc0\xab\x1a\xd6\x70\x60\xee\xb1\x2a\xb1\x8e\xc0\xd5\x2c\x0f\x62\x0d\x0f\x6b\x38\x1e\xee\x61\x0d\x0f\x27\x8c\xe9\xc7\x0c\xa1\x13\x46\x3c\x9d\xb8\x49\x35\xec\xda\x09\xcf\xaa\x61\xbd\x06\xa6\xaf\x76\xb8\x49\x60\x1d\x71\x48\xe1\x26\xd5\x70\x9c\x48\xd8\x52\x61\x1d\x81\x75\xc4\x0b\x86\x75\x54\x83\xc7\xf5\x69\x32\xda\xb5\x03\xeb\x88\x65\x3f\x2c\xf4\xe1\x38\x91\xb8\x94\x42\x31\xaa\xc1\x3f\x12\x4b\x61\xd8\xdb\x87\xbd\xdd\xa8\x59\xd4\x83\x4b\xf4\xa9\x57\xd6\x66\x40\xbe\xed\xc2\x4d\xaa\xa4\xef\x3f\xf9\xad\x70\x93\x6a\xde\x6b\x33\xfe\xbe\x69\x6d\x4e\x6b\x33\x36\xc6\xb4\x36\xa7\x62\x1c\x4b\xab\x83\xc8\xfc\xcc\xda\x99\x0e\x1d\x81\x49\x45\x4c\x87\x8e\x69\x6f\x0f\x5b\xa3\xa6\x25\x1c\x58\x89\x2b\xa8\x69\x09\x4f\x87\x8e\xe7\x7d\xd3\x0f\x59\x06\xfc\xe1\xa6\x5f\x22\x03\xbe\x74\xa1\xc9\x32\xe0\x44\x96\xf5\xe4\x12\xe5\xec\xc4\x9b\x02\xd3\x87\xde\x69\x71\x4e\xde\x08\xa7\x82\x69\xd9\x4d\xde\x88\x58\x75\xd3\xa6\x3d\x1d\x14\x92\x70\xab\xa6\x5d\x3b\xb0\x8e\x7c\xb4\x98\x0e\x0a\x93\x9b\xe1\xe5\x79\x99\xfb\x01\x79\xf7\x6b\x72\x33\x4c\x27\x80\xa4\x9c\xad\xe9\x04\x30\x9d\x00\x62\x71\x4e\x27\x80\xd4\x26\xb8\x9a\xe5\x0e\x3e\x6e\x04\xd6\xcb\x50\x72\x89\x4e\x6e\x86\x44\x94\xd7\xe4\x66\x98\xdc\x0c\xd9\x67\xa7\x45\x3a\xed\xf7\xaf\x9d\xcc\x1d\x18\xed\x31\x01\xa6\xfd\x7e\x5a\xb8\x09\x3c\xaf\x69\xe1\x4e\x0b\xd7\x04\xb1\x70\xa7\x85\xfb\xca\x8a\x44\x41\x03\x73\x44\xa1\x4f\xfb\xf1\xb4\x96\x5f\x39\x80\x4f\x6b\x39\x20\x61\x69\x4d\x6b\x79\xda\x68\x5f\x99\xe3\xea\x2a\x80\xf9\xcc\xf2\x53\x57\x01\xec\x8f\xd7\x8b\xcc\x44\xb2\xd1\xe6\xdc\x3b\x2d\xdc\x69\xa3\x7d\xbd\x3c\x88\x2e\xe4\xa3\xeb\x6e\xdc\x6c\xb4\xd3\xf7\x7c\x93\x86\x05\x3e\x85\xc9\x1f\x1e\xcd\xd4\x8a\x6b\x60\x98\x46\xd6\xf2\x64\x0c\xa7\xfa\x58\x61\x97\xd5\xb4\xae\x32\x9f\xb1\xcb\x2a\x4c\xac\xfd\xf1\x8a\x61\x8a\x89\x05\x46\x6a\xd0\x14\x26\x56\x2d\x13\xd5\x87\x0b\xbc\x28\x30\x9f\x31\xad\xf1\xa2\xc0\xfe\xf0\x2d\x10\x31\x0a\xe0\x36\x17\x62\x14\x98\x3e\xba\x22\x46\xd5\xba\xa7\xf8\xd4\xec\x4d\xf6\xce\x95\x7b\x44\x1f\xa2\xaf\x66\x9e\xe3\x7e\xb6\x5f\x3c\x69\xe9\x15\xbb\x34\x70\x35\x3b\x22\x6b\xb2\xb8\x4f\xfc\x1a\xaf\x7f\x00\x77\xba\x96\xa3\xf0\xba\x17\xc7\x24\xdb\xc9\xf6\x34\x7b\x45\xf4\x24\x7a\xc6\x4b\xe4\xc7\x0c\x07\xb7\x9c\x0f\x51\x38\x55\x60\x9e\x4f\x22\xc3\xe1\x33\xa5\x0f\x17\x38\x55\x60\x26\x58\xb9\x70\xaa\xc0\xe2\x95\x5b\xb6\xc6\xe5\x78\xec\xeb\x03\x9a\x15\x98\xf3\x41\x64\x38\xee\x25\x94\x59\x84\xc0\x04\xa6\x2f\xda\x08\x4c\x60\x7f\xf0\xe5\x62\x30\xd5\x5d\x94\x22\x56\x3f\x02\x13\x58\xd3\xe0\xb2\xa2\x03\x43\x50\x08\x02\x53\x2d\xeb\x91\x7b\x1c\x81\x09\x8c\x35\xff\x3e\xfd\x78\xe1\x37\x81\xc9\xa0\xc1\x6f\x02\xd7\x0f\xe7\xc9\xad\xe0\xc0\xda\x72\x66\x44\x70\x02\x6b\x33\x89\x2d\xe0\x00\x2a\x7b\x2d\x0b\x78\xcd\xbb\xcb\x79\x91\x16\x30\x1a\xd4\x30\x9f\x2c\xe0\xe5\xc3\x26\x7d\xbe\xec\xa9\x01\x8c\xf7\x5a\x16\xeb\x72\x38\x76\x74\x40\x8d\x02\x33\x39\x8d\x0b\x35\x0a\x5c\xcd\x72\xa9\xb5\x89\x1b\x95\x20\xd1\xc2\x8d\x02\x6b\xb3\x24\xec\xbc\x81\xc5\x95\xba\xec\xbc\x81\x95\x04\x48\xb5\x98\xd8\x81\xc5\x2f\xbb\x7c\xd2\x58\xf6\x67\xfe\x7d\x0c\x2a\x80\x8b\x5f\x18\x54\xb5\x58\xdd\xbe\x22\x61\x50\x81\x95\xa2\xe2\x85\x41\x05\xae\x66\x19\x6f\x66\x77\x40\x6e\x82\xc2\xa0\x02\xfb\x83\xb7\x0c\x85\x0a\xcc\x2d\x9b\x0f\x06\x15\x58\xfc\xb7\x18\x54\x15\x06\xd5\x99\x52\xa0\x85\x41\x05\xe6\x16\xdb\x04\x81\xaa\xde\x8e\xe8\x3e\x47\xbc\xed\xf6\x81\xc5\x7d\xfb\xb6\xdb\xbf\x19\xe7\x3e\x77\x60\x50\x81\xc5\x19\x8c\x41\x05\xe4\x1c\xa8\xb7\x9d\xfd\x8d\xa6\xfa\x24\xfa\x10\x79\x77\xd9\x8d\xde\xb6\xec\xb7\xba\x94\xd1\x70\x6f\x96\xf8\x9b\x25\xce\x1b\xfc\x66\x89\x07\x16\x37\xef\x9b\x25\xfe\x66\x76\x73\x54\xbf\x29\xcc\xc0\x18\xfa\x4e\x5f\xaa\x97\x32\xef\x2b\x07\xd1\x74\xe5\x11\x99\x1e\xc4\x12\xdf\x0e\x8f\xa6\x07\xf7\x62\x89\xba\x41\xc7\x02\x53\x88\x91\xf2\x20\xf5\x66\x93\xb2\x09\xde\x6c\xd2\x37\xaf\x77\xa6\x07\xd2\x56\xbd\xef\xd5\x32\xfc\x9a\x07\xc9\x6a\x31\x3d\xde\x56\xcb\xfb\x5e\x06\x39\xad\x20\x72\x81\xc9\x2d\x80\xc8\x05\xf6\x07\x5b\x5f\xcd\x10\x30\x42\xd7\xab\xb7\x65\x10\x98\xa9\x43\x5f\xaa\x88\xd4\x7b\x1d\xae\xd4\xcc\x18\x25\xbb\x59\xb2\x45\xd7\xdb\xb1\xf2\xcd\xb4\xb4\xc7\xbe\x4d\xb6\xc0\x10\x5a\x87\x3c\x56\x21\x8f\x9d\xa1\x49\x17\xf2\x18\xb8\xae\x5c\x91\x6d\x64\xf9\x82\x9b\x15\xf4\xf1\x85\x2c\x55\x44\xf6\x47\x32\x48\x97\x2a\x22\x60\x8e\x3c\x9a\x2a\x22\xf5\x31\x01\xcf\x68\x2c\x25\x43\xc0\x14\xc8\xf0\x31\x01\x3f\x42\x70\xce\x74\xe1\x63\x82\x04\xa6\xb7\xfc\xb1\xc7\x7e\xcc\x99\x73\x23\x73\xd3\xc3\xa6\x92\xc7\x35\x67\x3e\x5c\x38\x67\xbc\x3f\x1f\x5b\xe5\xe7\xae\xcd\xeb\xca\x2f\x51\x96\x72\x92\xf1\x96\x2a\x22\x60\xf2\x99\xa9\x22\x52\x1f\x1f\xc8\x93\x22\xbe\xb0\xe9\xc0\xe4\xd4\xc5\xa6\x03\x57\xb3\x0c\x92\xad\x32\xb0\xf8\x1a\x3f\xb6\xca\xcf\x79\xdf\x34\x0f\x62\x8f\xfa\xc8\x44\xfc\x74\xa5\x9b\xb2\x23\xc5\x41\x7c\xd8\x91\x81\xe9\xbb\xf1\x87\x1d\x19\xb8\x9a\x65\x2c\x7d\x5b\xff\xc8\x44\xec\x06\x4c\xcb\x80\x1c\xd7\xf5\x61\x5a\x7e\xb8\x6d\xcf\xe7\x8c\xcc\x8b\x49\xc4\x4d\xe2\xbd\x0b\xf9\x0f\xcc\xe7\xdd\xea\x4d\x94\x75\x15\xaa\x4f\xe1\x03\x56\xb8\x7f\x97\x2c\xcf\x61\xc5\x04\x66\x72\x06\xd6\xc7\x29\xee\xe3\xc8\x16\x92\x4d\x7d\x58\x7e\x81\x91\x62\x6a\x85\x22\x58\x1f\xc6\xda\x19\x4b\x04\xd1\xaf\x42\xf4\x3b\x19\x44\x88\x7e\xf5\x75\x94\x49\xf9\xc8\xc2\xea\x03\xd3\x9b\xff\x3a\xca\x7c\x59\x61\x09\xc2\x2e\x0c\xbb\xba\x19\x76\x31\x4a\x31\xec\xea\xcb\xe4\x4a\x3e\xa3\xfa\x52\x21\x81\x35\xfe\x89\x8c\x2a\xf5\x35\xcd\xbe\x0e\x1d\x23\x63\xa8\x66\x08\x58\x29\x89\x50\x78\x7a\xf5\x35\xa7\xc2\x5b\x28\x35\x43\xc0\xe4\x0f\x56\x33\xa4\xbe\x7c\xfb\xa9\x55\x59\x2a\x7f\x80\x95\x04\x11\xf5\xe5\xdb\xff\x8e\xf4\x30\x91\xd6\xf5\x65\xd0\x7c\xef\xe2\xec\x44\x7a\xe8\xc5\x85\x7d\x50\xa8\x75\xf5\xa5\x4e\xc2\xb3\x2c\x75\x39\x80\x0a\x72\x85\xa0\x56\x5f\x6f\x84\x95\x8d\x53\x56\xe1\x94\x9d\x5c\x29\x38\x65\xf5\xf3\x46\x44\xcd\xe0\x94\x81\x25\xca\x10\xa7\xac\x7e\x3c\xb1\xa1\x02\x14\x36\x17\x58\xa9\x1e\x58\xc8\x5c\xf5\xe3\x62\x15\x99\x8a\xb9\x05\x04\x64\x17\xe6\x56\xfd\x7c\xc2\x19\x39\x83\xa2\x69\x81\x3b\x10\x1a\x4b\xab\x7e\x0e\x70\xe1\xff\x16\x4a\x16\x58\x3e\xca\xa1\x64\x81\xab\xd9\x8c\x4c\x17\xee\x1a\x75\x79\x0e\x36\xea\x4f\xf5\x8e\x7c\xe9\xf9\xb1\x51\x7f\xf7\xcb\x5a\x9a\x79\xdc\xa4\xe0\x4b\xda\xdc\xc2\xd2\xaa\x1f\x67\x4c\xd2\x14\xd4\xcf\x62\x0c\x2c\x67\x87\x1f\x1b\xf5\xc7\x20\x4d\x32\xc3\xc2\xc9\xaa\x9b\x93\x95\xd7\x8c\x93\x05\xae\x66\x19\x37\x6b\xf6\x87\x52\x1f\x17\xc2\xcf\x9a\xfd\x79\xf5\x09\xec\x2f\xa4\xac\xfa\xf9\x4e\x31\xb5\xb3\xe1\x04\x94\x92\xa8\x9f\x0d\xe7\xc7\xb7\xc9\x17\xfb\x63\x78\x05\xe6\xf0\x6b\x0c\xaf\xdf\x1d\xad\x9a\x17\xc3\xf0\xfa\xa9\x2b\xbc\xbb\xd0\x48\xf2\x80\xda\x32\xf1\xa3\xc0\x3c\xf3\x35\x03\x3f\x0a\xcc\xe3\x7e\x32\x9d\x8a\x47\x25\xa9\x72\x0b\x63\x0a\xcc\x10\xcd\x0a\x63\x0a\x5c\xbf\x9f\x91\x64\xb1\x05\xd6\xd3\x40\x32\xd8\x7e\xa2\x4c\x92\x91\xb5\xb0\xa8\xc0\x64\xdc\x60\x51\x81\xab\x59\x6e\x6a\x13\xfd\x29\x2e\x11\xeb\x09\x8b\xaa\xc2\xa2\x3a\x3d\x1a\x16\x15\x58\xa9\xa3\x5e\x58\x54\x60\x8e\xbb\xd5\x4e\x94\x18\x8d\xec\x97\xc5\x89\x13\x18\x21\x2a\x17\x5e\x15\x18\x21\xe3\x17\x5e\x55\x95\x5d\x35\x55\x9c\x0b\xaf\x0a\xa8\xf4\x53\x78\x55\x60\xee\x39\xf3\xe2\x55\x55\xf1\xb9\x86\xd3\x5b\xe5\x34\x5b\xf2\xf6\x0f\xa2\x0c\x46\xb1\xe1\xf0\x12\x8a\x0d\x17\xc0\xe1\xab\xb2\x45\x97\xfd\x78\xe6\xdd\x95\xfd\x38\xa0\x8a\x44\x15\x6d\x1b\xb8\x9a\xb9\x74\x90\xa5\xea\x4c\xb4\x47\x51\x01\x65\xbd\xa7\x68\x41\xe1\x5f\x81\xc9\x27\x8f\x7e\x55\x65\xbd\xcf\x9c\x78\xca\x7a\x0f\xcc\x47\x4e\x02\x65\xbd\x17\x0f\x6b\xd2\xd8\x95\x02\x3b\x60\x9d\x71\xe8\x95\x63\x64\x60\x8a\xd7\x29\x0e\xd6\x72\xb2\xe4\x73\xc2\xdc\x02\x33\x1c\xb8\x2a\xbb\x76\x59\xef\xd3\x1b\xb5\xde\x03\xea\xe6\x14\x7e\x57\xd5\xbd\x90\x33\x63\xca\x42\x0e\x4c\x47\xe8\xb2\x90\x4b\x68\x6b\x52\x5e\x56\x39\x01\x06\x26\x2f\x74\x39\x01\x06\xc6\x8a\xf2\x40\xf0\x02\xeb\x74\x4f\x36\x6d\xd9\x8e\xa7\xc9\x60\x3b\x0e\x2c\x9b\x65\xd9\x8e\x03\x33\xf5\x70\x4a\x31\xa0\x2a\x3b\x34\xd2\x47\xd9\xa1\x03\x73\xc4\xa4\x2d\x3b\x74\x60\x9d\x59\xed\xe5\x00\x58\x42\x39\x66\x2c\xce\xe2\xae\x09\x8c\x69\xca\x30\x86\x8b\xe5\x9b\xa4\x55\x55\x2c\xdf\x80\xc2\x86\x55\x14\x51\x58\x69\x57\xb3\xf4\x80\x8a\x29\x55\x62\xa6\x66\x3a\x75\xeb\x93\x28\xf5\xa2\x4f\x02\x61\x6a\xfe\xed\xa6\x5d\xd4\x4d\x89\x70\x4b\x05\x86\x2a\xfa\x26\x30\x96\xe1\xa2\x6f\x6a\xdd\x3d\xcc\x40\xd0\x24\x81\x61\xef\x51\x01\x09\xac\xd3\xd8\x53\x24\x65\xfb\xc4\x60\xc1\x9a\xab\xb0\xe6\xce\x94\x14\x2e\xac\x39\x30\x99\x64\x58\x73\x60\xb1\x5d\x90\xe6\xea\x26\xcd\xe5\x4b\x1b\xd2\x1c\xb8\x7e\x5f\xb3\x17\x59\x46\x2b\x6f\xad\xa9\x8d\xc0\x4c\x2e\x8a\x6a\xbb\x73\x73\x78\x99\x50\xcd\xe1\xd5\x72\x9c\x47\x47\x63\xe0\x55\xd3\x07\x2b\xa7\xfb\xa6\x0f\x5a\x88\x7c\x4e\xb8\xcd\x3e\x6f\xfa\x00\xf5\x45\x6d\x26\xb0\x44\xb4\xa8\xcd\x04\xae\x66\x23\xb2\x41\x36\xe2\x59\x49\xdf\xe9\x83\x66\x91\xad\x8d\xec\x4d\x96\x58\xe3\x98\x09\xcd\xe4\x6a\xb6\xd4\xf2\x20\x6c\xa9\x16\xc0\x9a\x8d\x1d\x3d\xaf\x9a\x3e\x48\x86\xda\x42\xa8\x03\x93\x83\x1f\xa1\x0e\xec\x8f\x64\x2a\xaf\xa6\x10\x5a\xf4\x7b\x2c\xfb\xf6\x49\xa5\xe9\x88\xa4\xf8\x2a\x05\xa1\x80\x2c\x21\x85\x8a\x57\x6d\xf1\x27\x8b\x7a\x21\xd4\x81\xb1\xfc\x9a\xc5\x1f\xf6\xdc\xfe\x48\xe2\xe9\xc2\x9e\x03\xf2\xa5\x16\xf6\x1c\xb8\x9a\xe5\x79\xf9\x95\x54\x7a\x4a\x65\xa3\xc2\x9e\xab\xb6\xd9\x27\xe9\x76\xa1\xca\x55\x73\xea\x26\x89\x6a\x29\xeb\x04\xd6\xe6\x2d\xf0\x09\x85\x17\x27\xad\x6a\xa1\xc5\x81\xfd\x91\x1c\xcd\x85\x17\x07\x64\x42\xad\xa6\x38\x02\x57\xb3\x8c\x9b\xc3\x70\x60\xac\xbb\x99\xe1\xe5\x4d\x12\xae\x8f\x2b\x07\x54\x05\xaa\xa6\x4c\x9a\x32\x49\xbe\xdb\x6a\xca\x24\xb0\x04\xb5\x36\x65\xd2\x22\x58\x93\xac\xa5\x14\x8e\x02\xd3\x17\xab\x66\x75\x04\xc6\x7d\x03\x4a\x22\x30\x79\xe8\x9a\x16\x68\xb6\x83\x6f\xd3\xcd\x76\x08\xcc\x24\xca\xad\xb6\xe2\x9b\xed\x20\x28\x59\x61\x2a\x30\xee\xb5\x6c\xc9\xf7\xbd\xe4\x63\x9d\x20\x00\x56\x08\x80\x67\x12\x22\x34\x02\x20\xd8\x1f\xc9\x3d\xdb\x8f\xac\x79\xb0\x12\x96\xdb\x8f\xac\x79\x30\xc7\xc3\x95\x4f\x22\x6b\xfe\xb2\x31\xfa\x91\x35\x0f\x46\x56\x69\x3f\xb2\xe6\xfb\x21\x04\x3e\x09\xdf\xfa\x11\xfb\x1b\xc8\x50\xdb\x8f\x58\x0f\x40\xc1\xc4\x7e\xc4\x7a\x00\x63\x3d\x66\x44\x6f\x22\x7d\x1f\xae\x2c\xb2\x78\x37\x4e\x1d\xe8\x88\x8e\xbb\x53\xb9\xf4\xd0\xa9\x43\xa7\x8e\x88\x74\x8a\x17\x3d\xce\xa3\x4e\x01\xad\x1b\x66\xf2\x53\xb7\x32\x5a\xfd\xb8\xb5\xc5\x4c\x0f\x0e\x3d\x88\xcb\xfc\xf4\xb8\x87\x1e\xb0\x1e\x92\x66\xae\x11\x22\xc1\xf8\xeb\x4a\xcf\x76\xab\x01\x77\x38\x5d\xca\xbb\x7c\x69\xad\x46\x9b\xec\xc7\xbd\xbe\x2f\x5d\xdf\x38\x92\x60\x6d\xbb\x66\xbf\x88\x12\xee\xbe\xa5\xe0\x45\x3f\x86\x9e\x8e\xf4\x74\x4b\xe7\x87\x9e\xe6\x73\xcf\x16\x4e\x7a\x3f\x86\xf7\x97\x33\xf9\xfe\xca\x80\x0c\x9d\xcf\x31\x20\x89\x7d\x1b\xe1\xb2\xc3\xa4\xbc\xae\x24\xf3\xb8\x71\x42\x27\xb1\x6f\x63\x52\x82\x7d\x4b\x62\xc9\x46\xa5\x04\xf3\xf9\x48\x0f\xa2\x40\x3a\xb5\xbb\xae\x66\x99\x20\xe3\xee\x42\xe5\xd7\xd2\x6c\x9a\x94\x5c\xca\xcf\xb4\x9a\x3a\x95\x70\xd1\xcd\x64\x9b\x3a\x45\x7d\x3c\xd3\xf5\xa9\x4f\x71\x92\x6d\xa9\xbc\xdc\x98\x9a\x60\xa6\xec\x54\x63\x6a\x82\x99\x4f\x42\xfd\x98\x3a\x10\xbd\xb0\x3d\xb6\xbf\x8f\x1e\xef\xc7\xd4\x99\xc9\x39\x9b\x2e\x4f\x6f\x28\xc6\xc5\x16\x3e\x56\x23\x72\x82\x35\x75\x66\xe9\x4c\x3e\xec\x6e\x0f\x2b\x6c\xe9\xcd\x4a\x8a\xdc\x99\x41\x5d\x7a\x93\xb3\xf1\xf6\xb0\x4e\xa2\x4a\x80\x94\xc4\x8d\xb4\xd9\x61\x68\x5e\xcd\xf2\x8a\xde\xee\x90\x95\x1e\x9d\xd9\x18\x9a\xbd\x1d\x6e\x7a\x1d\x4d\x7a\xb3\x02\x02\x33\xb1\x2a\xbd\xc5\xa4\x06\x73\x44\x1f\x6c\xd6\x44\x60\xa4\x18\x45\x2b\x87\xd6\xa9\x71\xb6\x6f\xa1\x11\xf5\x66\x4d\x04\x66\x3c\x8f\xbd\x59\x13\x81\xab\x99\x7b\x2e\xb2\xe4\xe6\xce\x2b\x52\x03\x0d\xcc\x58\x73\xbd\x65\x53\xed\xed\xbc\x6f\x90\x9b\x9e\x6e\x10\xfa\x58\xca\xb2\x35\x52\x68\x87\xda\xb9\x6f\x0f\x8f\x1b\xcf\x03\x98\x31\x8b\x7b\x1b\xae\xcc\xc1\x75\xcf\x78\x6f\xe3\xbe\x32\xec\x2e\x9d\x32\x89\xb7\x7b\x12\x67\x05\x6f\x26\x71\x60\xe5\x73\x78\x6f\x26\x71\x60\x3e\xce\x33\xa2\x2f\xd1\xcf\x95\x19\x8e\x58\xca\x60\x25\x3c\xa6\x31\x4c\xc1\xda\xf7\x3c\xac\x79\x1d\xb8\xae\x4c\xa7\x4c\xec\xc0\x0c\xbb\xab\x37\x13\x3b\x70\x35\xcb\x73\x4c\xaf\x45\xba\xf8\xe9\xd7\xbc\x96\x69\x38\x66\xfa\x3e\x0d\x47\xf6\xca\xe4\x6d\x6d\xdc\x54\xb0\x6f\xb4\x1c\x72\x2a\x98\xcf\x28\x12\xdc\x54\x20\x6d\x6b\xe3\xa6\x76\x68\xa2\xd7\x95\x79\x55\xcb\x73\xe4\xe4\x4d\x53\xe1\x89\x76\x48\xa1\xfb\xb6\x99\x58\xcb\x0d\x72\xa6\x4e\x00\x58\x23\x85\x36\x6a\xe7\x96\xec\xf6\x8d\xda\xd9\xa1\x76\x8e\x94\x2f\x69\xd4\xce\x0e\x27\x73\xdf\x92\x9f\xa3\x77\xdb\xca\xae\xaa\x4e\x26\xf8\x1e\x53\x12\x5c\xcd\x46\x64\x83\x2c\x34\xed\x4d\xb3\x49\xf4\xd6\x6c\x46\xf6\x21\xbb\x96\x72\xe2\x2f\x3b\x95\xe5\xfe\x47\x23\x65\x6e\xb1\x31\x1a\x29\x13\x48\x50\xdb\x48\x99\xfd\x17\x29\x53\x2b\x8f\x16\x83\x33\xa1\xa1\xbd\x1f\x1e\x2d\x5e\xb9\x8d\xca\xc4\xc0\x04\x2b\xe1\x29\xad\x0c\x5d\x87\x80\xb9\x6f\xdb\x2d\x6b\x32\x65\x83\x33\x1e\xa7\xf1\xa0\xf4\x53\xb3\xac\x77\x4a\x3f\xb0\x72\x84\x69\x15\xe1\xc0\xbe\xe5\xb3\x50\x2b\x09\x07\xe4\xce\xed\x9d\xd2\x0f\x48\x8a\xdb\x8a\xc4\x81\xeb\xca\x3c\x87\x55\x15\x98\x89\xaf\xeb\xdd\xaa\xda\x87\x5e\x45\x09\xec\x56\x42\x40\xfa\xdf\x46\x90\x04\xf3\x75\x5f\x59\x44\x59\x1b\x51\x45\xf8\x91\xbd\x4f\x2f\x59\x33\xd3\x39\x30\xf7\x95\xc7\x30\x9b\x77\x1a\x3e\x1f\xd8\x7a\x37\x9d\x03\x8b\x86\xdf\xcd\xe6\xc0\xda\x9f\x5a\x2d\xa2\xcc\xe6\xa7\x56\x6f\x22\xaf\x3d\x6f\x85\x06\xdf\xa5\x0d\x36\x40\xd3\xf3\x2f\xc3\x9d\x05\xbf\xd3\xe0\x81\xb5\xef\x44\x86\xdb\xd2\xc8\x77\xad\xc6\x7c\x04\x2b\x31\xc7\x8d\xf9\x08\xae\x66\x79\x0e\x4a\x3d\xb0\x12\xb0\xdb\x0a\xda\x75\x08\x8c\x57\xb3\x3c\xc8\xf2\x6c\xb7\x31\x48\x74\x3f\xdb\x4f\xb3\x74\x61\x19\x5c\x74\x25\x53\x61\x99\x44\xf7\x42\x8b\x6e\x46\x74\xec\x10\x1d\x47\xa8\x3d\x8d\xe8\x08\xa6\xad\xf8\xc9\x16\x0c\xac\xfd\x32\x7a\x1b\xf5\xb1\x9f\xf7\x72\x8c\xba\x56\x0b\x0f\xcc\x54\xa5\xef\xa7\xe5\x18\x9e\xe3\xd5\xec\x15\xd9\x24\x43\xed\xd1\x6c\x11\x2d\xcd\xce\xc8\xde\x64\x51\xba\x2f\x37\xfd\x10\xe5\x55\xbd\xdc\xf3\x4b\xd4\xae\xfc\x27\xb6\x6c\xd4\x48\xb0\x52\xc4\xbf\x31\x23\x3b\x54\xc3\x7d\xdb\xb2\x82\x71\x0d\xc1\x08\x29\xbf\x9f\xa7\x4e\xc7\x6b\xba\x25\x5b\x77\x63\x07\x82\x95\x0f\x1d\x8d\x1d\x08\xf6\x6d\xbf\x65\x06\x22\xd1\xb0\xc9\x59\xd1\x4f\x2b\x27\x30\x13\x8c\xd8\x38\x84\x60\xa5\x84\x70\xe3\x10\x82\x95\x14\x8f\x8d\x43\xd8\x21\x02\x5e\xbf\x1f\x99\x95\x83\xe2\xb7\xd1\x5e\x28\x7e\x60\x85\x08\xd0\x28\x7e\x1d\xca\xda\xbe\x25\xeb\x74\xe3\xac\x81\x99\xaf\xb3\x8d\xb2\xd6\xa1\xac\x0d\x1a\x02\x65\xad\x5f\x5e\xf8\x7e\xee\x91\x1d\x64\x39\x55\x1f\x8f\x88\x4e\x22\x37\xc8\xfe\x8c\x2c\x06\xd6\xcc\xb6\x85\x2c\xd6\x2f\xa6\xc3\x3e\x34\x1b\x64\x39\x7c\x67\x6d\x62\x81\x81\x7d\x4b\x4a\xad\x46\x03\x03\xe3\xaf\x5f\x7b\x13\xbd\x35\x7b\x45\xf6\x21\x4b\xa5\xe8\x97\x5f\xfb\x12\x7d\x35\x3b\x22\xfb\x91\xe5\x3c\x77\xba\x32\x4b\x07\xe5\x6b\x4b\x7c\x73\xa3\x7c\x81\x45\x2f\xa1\x7c\x81\x7d\x4b\x25\xfe\x0e\xff\xeb\x86\x99\x2f\x0f\x8d\x05\xd6\x48\x5a\x5b\x52\xb5\x34\x92\x16\x58\x89\x32\x6f\x24\xad\x7e\x51\xa3\xc9\x2c\xd3\xb8\x56\x60\x25\x49\x55\xe3\x5a\x81\x7d\x0b\x7b\xa4\x71\xad\xc0\x4c\x92\xe0\xc6\xb5\xea\x17\x35\x14\x0e\x6f\x23\x1c\x81\xb9\x7b\x36\x6a\x28\x7c\xa3\x7d\x4b\xb6\xeb\x46\x38\x02\x32\x30\xf5\x6b\x19\x5e\x6a\x28\xdf\xdf\x5a\x91\x2a\xb0\x52\x5a\xa9\xd1\x92\x1a\xe1\x68\x4b\x1e\xe5\x46\x38\xea\x10\x8e\x46\x82\x6b\x1b\xe1\xa8\x0f\x13\xe9\xf9\x7a\x45\x76\x90\x25\xfd\x64\x86\x17\x07\x09\x5c\xcd\x56\x64\x83\x2c\xe9\x34\xd2\x53\x1c\xa4\x3e\x18\xb4\xcf\xcc\x41\xec\x1f\xb0\x46\x66\xea\x61\xd3\x0e\xec\xdb\xd3\x1d\xec\xda\x81\xc5\x92\xc4\x11\x02\x23\xe5\x26\x1b\x47\x08\xac\x90\x95\x1b\x47\xa8\xb1\x7a\xb6\xa7\xe7\x30\x69\x02\x2b\x8e\xf5\xc6\xea\x69\xac\x9e\x2d\x89\xf5\x1a\xab\x07\xac\x91\xa3\x2b\x56\x0f\x90\xcb\xaa\x15\x6f\x6a\x6c\x9a\x2d\x41\xa5\x8d\x4d\x03\xd6\xb8\x45\xf7\x0d\x92\x28\x34\xbb\xc3\x31\x0c\x2e\xab\x20\xa5\xe5\xfa\x60\x15\x04\xd6\xf0\x18\xac\x02\xd5\x96\xce\xa7\x2b\xdd\x93\x52\x79\xe6\x98\x8a\xe0\xd2\x87\xed\x38\x81\x95\xad\x18\x11\x58\xe3\x6e\x66\x88\x62\x5c\x8e\x71\x46\x64\x88\xa8\xa3\x24\x6c\x6a\xd5\x83\xc0\xca\xa7\xd8\x56\x3d\x08\xec\x5b\x2a\xaa\x36\x32\x0b\x98\x61\x56\x35\x32\x0b\x90\x66\xab\x55\x0f\xea\xc3\xd4\x7d\x69\x66\xea\x1e\xa6\x6e\x4c\x66\x5c\x16\xb0\x6f\x89\x84\x6c\x64\x16\xb0\x12\x20\xd0\xc8\x2c\x7d\x50\x8b\xaf\x2d\xbf\x46\x2d\x06\x56\x32\x12\x37\xe2\x4a\x87\xb8\x32\x5e\xd9\x12\x10\x57\xc0\x75\xe5\x8a\x6c\x23\xcb\x80\x47\xd7\x2b\xee\xd3\xa7\x49\x1f\x3f\x65\x63\xae\x80\x95\x0f\x8b\x7d\x9a\xf4\x81\x95\xd0\x93\x56\xdc\x07\x5c\x57\x92\x4d\xb2\xa4\xa5\x5d\x7e\x6c\x11\xe9\x68\xb4\x38\x82\x0b\x58\xf9\xe0\xde\xa7\xed\x32\x30\x99\xa0\x8a\xfb\x80\xeb\xca\x33\xb2\x22\x33\xe0\xd7\x48\xaa\xe4\xd3\xa7\x15\x94\x28\xd0\x56\xa3\x07\xac\xf8\x9d\x5b\x8d\x9e\xc6\x6f\xd9\x5e\xd9\x87\xf0\x5b\xc0\xca\x37\xcf\xc6\x6f\xe9\xd3\xda\x78\x3d\x5f\x7f\xbf\x6d\x2b\x8a\x03\x56\xf2\x34\xb5\xa2\x38\x60\xdf\x12\xaf\xd9\xa7\xb5\x13\x58\x33\x33\xea\xa4\x95\xc3\x61\xb9\x9a\x65\x08\xb9\x51\x02\x2b\x9f\x49\xfb\xe4\x46\x09\x48\x62\xd6\xa7\x45\x77\x5a\x4e\x61\x9e\xb6\xca\x36\x40\xe6\xb4\x56\xd9\xa6\x4f\x76\xc1\x2b\xa6\xb2\x32\x36\x60\xcd\x18\x60\x48\x32\xe0\x6a\x96\x81\xa0\xf7\xb1\x64\x92\x99\xa4\xb1\x64\xc0\xfc\xab\x95\x11\xb4\x38\x93\xb9\xbb\x91\x58\xfa\xb4\x38\x93\xd4\xa7\xf1\x4e\xc0\xca\x57\xdd\x56\x78\xa6\x4f\xc7\xbc\xa4\xa4\x69\xbc\x13\xb0\x46\x0e\x8d\x68\x27\x60\xdf\x92\xd0\xa5\xf1\x4e\xc0\x4a\x20\x63\x9f\xdc\x1d\xa1\x9d\x5c\xcd\xf2\xbc\x16\x71\x60\x85\x7d\xd6\x0a\xd4\x80\x95\xcf\xc6\xad\x40\x4d\x9f\xdc\x1d\x49\xd5\xd2\x27\x6b\xf9\x94\x01\x30\x7b\x1e\xc2\x4a\x9f\x2c\xe3\x24\x3f\xe9\x93\x65\x1c\x58\xc9\x38\xd7\x08\x2b\x60\x25\x4c\xa9\x11\x56\xc0\x72\xca\x53\xd9\x06\xec\xdb\x4b\x47\x69\x84\x80\x14\x71\x8d\xd6\x02\xae\x66\x2e\x35\x3f\xec\x6f\xb7\x48\x3f\x99\xd9\x49\x48\xd1\x27\x33\x3b\xb0\xf2\x55\xaa\x51\x5d\xc0\xd5\x2c\xf3\x88\x2e\xc1\x75\x99\xd1\x42\xb8\x2e\x1d\xae\xcb\x08\x1d\xa3\x71\x5d\x7a\xbc\x0c\x51\x34\xe4\xa0\x38\x02\x2b\x5f\xd6\x1b\xfd\xa5\xc3\x6b\xb9\x9a\x9d\x91\x2d\xb2\x58\x89\x1b\xd1\x9b\x48\xaf\x96\x4b\xbf\x64\xb1\x28\x62\x3d\xe0\xba\x80\x11\xf6\x48\x0f\xab\x3f\xbc\x93\xeb\xca\x3c\x87\x6d\x70\x88\x80\x8b\x9a\x53\xe2\x06\xec\x5b\x72\x65\xf4\xb0\xd4\x87\x00\x8a\x1c\xab\xd1\x53\xc0\xd5\x2c\x37\x65\xb0\x05\x64\xd6\xeb\xc1\x5e\x0b\x4c\xc7\xb0\xc1\x5e\x1b\x42\x56\x72\xea\x1d\xcc\xb5\x41\x6f\x24\x5c\xb4\x07\xc5\x30\x28\x86\x95\x2b\x29\x86\x41\x31\x24\x5c\xb4\x07\xc5\x10\x58\x6c\x33\x05\x79\x3a\x24\x96\xab\x59\x7a\x75\x7a\x8e\x10\xde\x92\x93\xaf\x95\xd5\xe9\x41\x0b\x1c\x46\x97\x16\x18\x36\xd5\xac\x83\x41\x0b\x60\xae\x6c\x89\x86\x6c\xcc\x15\xb0\xe2\x93\x6f\xcc\x15\xb0\x6f\x21\xa5\xf7\x60\xc2\x05\xd6\xc8\xa4\x47\x66\xe9\xc1\x9a\x4a\x00\x63\xe3\x60\x74\x38\x18\xe3\xcc\xe3\xe2\x60\xf4\x34\x67\xc2\xe8\xe8\x69\xce\x04\x66\xe8\x3a\x8d\x96\xd1\x08\x17\x5b\xd8\x15\x8d\x70\x01\x56\x62\xe7\x1a\xe1\xa2\x11\x2e\xb6\xf0\xc5\x1a\xe1\x02\xcc\x7c\x29\x6a\x84\x8b\x9e\x8c\xfc\x50\xde\x1a\x6d\x02\x8c\x14\x10\xed\xc9\xc8\x9f\xaa\x7b\x3c\x89\x3c\x1a\x87\x4a\x58\x5f\xad\x4e\x0d\x58\xe7\x43\xb3\xbc\x98\x79\xbf\xbf\xac\x2b\xdc\x07\xb0\x12\xc3\xd7\xa8\x0f\x60\x9d\x99\x80\xa8\x0f\x60\xdf\x42\x40\xe9\x79\xea\xe8\xa9\x56\xf5\x19\x91\x8e\x0e\xc3\x96\xdd\x7d\x7a\x7f\x81\x79\x3f\x1a\xa3\x68\x72\x7c\x27\xe7\x77\x4f\xba\x78\x4a\x4e\x1f\x45\x39\x9d\xd1\x26\x9f\xe1\xb9\x91\x19\xa3\xf8\x0c\xcf\xe8\xb6\xc9\x67\x88\x21\xb1\xa5\xc0\x67\x63\x48\x80\x75\x3e\xdc\xf4\x47\x54\x9a\xa5\xa7\x66\x43\xe0\x92\xe5\x79\x79\x0d\x03\x72\x94\x37\x86\x44\x4f\x1e\xc2\x44\x9e\xf5\xe4\x21\x9c\x4a\xf5\x1a\x5e\xdb\xc4\xe4\x21\x4c\x59\xd1\x9e\xf6\x89\xe9\x33\x7c\xb6\x7c\x44\x8a\x9e\x94\x7d\x38\xe8\x8d\xfb\x00\xd6\xb9\xfd\x7d\x30\x5a\xa3\x46\x80\x75\x77\xda\x5e\x30\x19\x6f\x09\x3f\xec\x49\x57\x07\xa6\x4f\x0c\xca\xff\x74\x0a\xfb\xec\x5b\xc2\x0f\x5b\x65\x1f\x30\x96\xe9\x4e\x07\x4f\x0a\x37\x5f\xac\x5b\x1d\x1f\x20\x97\x7a\x63\x55\xf4\x62\xe7\x9c\x39\x9e\xa8\x5c\x03\xe6\x96\xa3\x88\xca\x35\x60\x19\x1a\x95\x6b\xc0\x32\xf6\x0a\xd7\xf4\x72\x30\x4d\x6a\xed\x56\x33\x06\xac\x33\x9a\x03\x5b\x02\x8c\x7c\x11\x6f\x6c\x89\xc6\x96\xd8\x92\x33\xbb\xb1\x25\x80\x64\xec\x8d\x2d\x01\x56\xa2\x42\x1b\x59\xa2\xb1\x14\xb6\x24\x1d\x6c\x2c\x05\x20\x3f\x7b\x63\x29\x80\x7d\x4b\x88\x4c\xa3\x29\x80\xf9\x1c\xae\xf4\x68\x8c\xa2\x04\xdc\x34\xe6\x02\x58\x09\x1e\x6d\xcc\x85\x4e\xb5\x97\xab\x59\x3a\x7f\xde\x0f\x92\xba\xe2\x19\x6f\xd5\x5e\x7a\xdd\x73\x36\x1a\x0c\x27\xa0\x17\x03\x25\xe9\x9f\x7b\x99\x79\x4b\xfc\x47\x0c\x94\x65\xe2\x61\x00\x6c\xe7\x72\xa9\x6e\x4d\xdd\xd2\x4c\xb7\x38\xe0\x92\x8b\xb9\x05\xe8\x83\x95\x98\xd8\x16\xa0\xdf\x8b\xfd\xe0\x23\xe5\x62\x3f\x04\x64\xa7\x6f\xf5\x4c\xc0\xbe\x8d\xac\x58\xe1\xf8\x60\x25\x35\x75\x0b\xc7\xef\x45\x09\x8f\x4c\x5e\x71\xf0\xfd\xa6\x71\x53\x12\xa3\x95\x0d\x01\xeb\xcc\x81\x5e\xd9\x90\x7e\xd3\xb8\xc9\xfd\xd8\x6f\x1a\xf7\x4d\xe3\x3e\x5d\x39\x88\x3e\x9a\x1d\x91\x7d\xc9\x92\x14\x3a\xce\x58\x95\x44\x3a\x11\xee\xfb\x36\x5c\x6a\x0e\x06\x66\x72\x1d\xb6\x08\xf7\x7e\xdb\x92\xf3\x91\xb9\xdf\xb6\xe4\xf7\x1d\xd3\x48\xb4\x88\x32\x53\xb3\xb5\x88\x53\xef\xb7\x69\x99\xdc\x37\xfd\x3e\xee\x9b\x66\x5a\xe6\xb0\xf0\x36\x2d\xdf\x9c\xd3\x23\xa6\xf4\xdb\xbc\x0c\xac\x33\x6a\xfe\xcd\x39\xfd\xb6\x4d\x8f\x2c\xac\xb7\x6d\xfa\x2d\x3a\xea\x16\x79\xdc\xc4\x17\x6f\x23\x1e\xaa\xb7\x99\x14\x58\xa7\x1e\xd8\x6b\xdf\xcc\x6b\x3e\x09\xd5\x50\xc0\x4c\xc2\xfe\x7e\x33\xaf\xdf\xcc\x6b\xe7\xfe\x37\xf3\x3a\xb0\x28\x66\x35\x53\xc0\xa2\x54\xd4\x4c\x69\x41\xfa\x9b\x6d\x5a\x90\x7e\xbf\x93\xb5\x61\x73\xe0\x7e\xfb\x00\x13\x58\xf6\x5f\x41\xfa\x60\x25\xf4\xb9\x05\xe9\xf7\x9b\xda\x74\x2e\x7f\x53\x9b\x6f\x6a\xd3\x2b\xa5\x17\x45\xdf\x6f\x4c\x4c\xd1\xf7\x60\xd1\x64\xa2\xef\xc1\xa2\x83\x45\xdf\xf7\xfb\x9e\xe3\xb1\x30\x45\xdf\x83\x95\x00\xf4\x16\x7d\x0f\xe6\xb8\x7f\x4c\x47\x4d\xf1\x97\x5b\x9a\x0b\xf7\x14\x8f\xe2\x17\x7d\xdf\x1f\x66\x80\xb3\xaf\xe0\x78\xb0\x68\xcf\x0f\x33\xe0\xc3\xf7\xe2\xac\xf5\x31\x03\x3f\xe2\xf3\xb2\x61\x0a\xa1\xef\x0f\x5f\x1f\x1b\xf6\xc3\x76\xfc\x08\xbc\x8b\x03\xe2\x63\x9e\x06\xd4\x6e\xe8\x8f\x79\xfa\x61\x3a\x32\x6b\x3f\xc7\x7d\xd3\xec\xab\xb7\xe8\x43\x94\x38\xb0\xcd\x63\x64\x09\x7d\x78\xdd\x58\x98\x1f\xf3\xe3\xc3\xeb\x16\xf5\xf9\x31\x3d\x12\x6b\xbe\x6f\xd3\x4d\x6d\xe6\x1f\x0e\xd7\x58\x0b\x82\xcd\xc1\x1a\xd1\xb2\x1f\x7b\xf9\xc7\x5e\xce\xb9\xfa\x19\xf7\x4d\xbf\xa1\x8c\xb9\xf2\x47\xf4\x4b\x70\x9b\xdf\x2f\xa2\x72\x65\x9a\x99\x6c\x1f\x73\x61\xbe\xf2\xb8\xe6\xc2\xe7\x8e\x47\x23\xda\x88\xdc\x34\xf3\xf4\xe3\xa0\x12\x98\xcf\x68\xd4\x8f\x3d\xf2\xb3\xdc\x21\xea\xfe\xe3\x54\x12\x58\x63\xfb\xff\x98\x5f\x63\xfb\x2f\xdb\xf6\xc7\x0e\x2a\xfc\x7d\x9b\xe9\x8d\x58\xf7\xfe\x26\xda\x63\x4b\x18\x75\x7f\x45\x7b\x04\x56\x22\x06\x5b\x9d\x9b\xfe\x9a\x3e\x09\xc3\xed\xaf\xe9\xf3\x75\x40\x19\x44\x19\xd5\xef\xfd\x76\x73\xa2\x17\xeb\x0e\xe6\x8a\xd2\x14\xcc\xde\x5f\xb6\x60\x12\x86\xb6\x3a\x31\x60\x84\x8f\xd3\x5f\xb6\x60\x6a\xc2\x5c\xcd\x56\x64\x93\x2c\xd9\x82\x0f\x22\xcf\x61\x3f\x5b\x9b\x4b\x9b\xac\xe3\x78\xbe\x86\xeb\x4b\x0b\x7d\x99\xfc\x49\x78\xdc\x5f\x6a\xe8\xeb\xe0\x1f\x95\xf3\x65\x32\x7e\x69\xa6\x44\x7d\xf5\x97\x66\xfa\x3a\xf8\x67\x6a\x7f\xcd\xbc\x84\xc1\x5f\xcd\xd2\x2d\x6a\xe8\x1b\x57\x7f\x6a\x1c\xf5\xd7\xcc\x13\x1a\xbf\x31\xb5\x85\xc6\xf7\x97\x1a\x4a\xae\xe4\xfe\x52\x43\x81\x95\x34\xfc\xfd\xa5\x86\xbe\x8e\xef\xcb\x5d\x1d\xdf\xbf\x8e\xef\x2f\x22\x63\xe9\xa5\xae\xa8\x09\xe1\xf2\xfd\xb3\x8a\x53\x7a\xbd\x7f\x56\xf1\x4f\x48\x40\x1c\x4c\xea\xa8\xf4\x5d\x47\x65\xd3\xea\x45\xa4\x5b\xb1\xd2\x95\x48\x01\x8b\x97\x48\x50\x3d\x18\x0e\xbf\x82\xea\xc1\xbe\x89\x89\x51\x22\x05\x2c\x3b\xcb\xcf\xab\xff\xd9\x6d\x52\x37\xb3\x05\xda\x83\x65\xcb\x50\x21\xa5\x7f\x1c\xf6\xc9\x58\xdd\x02\xed\xc1\x1a\x2f\x22\x3d\x08\x19\x74\x4b\x9a\xec\x16\x68\x0f\x96\x7d\x4a\x9c\x3d\x58\xa9\x0a\xd6\xe2\xec\xc1\xf4\x69\x4e\x9c\x3d\xd8\xb7\xa4\x71\xee\x9f\xb9\x15\x58\xf3\x45\xa4\x53\xac\xac\xa4\x71\xee\x1f\x2b\xeb\xc7\xf5\x94\xe3\x99\xda\x2a\xfd\xb3\x11\x26\x8d\x73\xab\x9a\x02\x56\x32\xc1\xb7\xaa\x29\xe0\x6a\x96\x5e\x99\x82\x81\x15\xa6\x6d\xff\x9c\x5a\x7e\x4e\x2d\x49\xb3\xdc\x42\xf4\xc1\x0c\xeb\xba\x45\xe8\xf7\x2f\x71\x38\x7b\x18\xa8\xfd\xa3\xaf\x02\x6b\xc4\xdf\xf5\xa3\xaf\x44\xed\xef\x2c\x73\x51\xfb\x9d\xea\x26\x97\x2c\x77\x60\xa0\x05\xe6\x6e\xc4\x39\x95\x52\xfd\x64\xdf\x1f\x51\xd6\xaa\x9f\x80\x99\x32\x32\xad\xfa\x49\xa7\xfa\xc9\xd5\xcc\xaf\x79\xcd\x77\xf5\xba\xf4\x9e\x42\xfc\xdd\x79\xad\xf3\xb8\x14\x62\x28\x00\xfb\x9e\xe4\xfb\x8d\x03\x00\x46\xd2\xbe\x37\x0e\x40\x27\xf8\xfe\x6a\x96\xde\x53\x92\xa2\xef\x93\x74\xa7\x05\xdf\x83\xed\x74\x28\x14\x7d\x0f\x66\xd2\x81\xb5\xe0\x7b\xb0\x3f\x18\x15\x42\xed\xc1\x8b\x0d\x2b\xd4\xbe\xeb\x1e\xb7\x58\x59\xa2\xa4\x5b\x08\xee\xfe\x58\xff\xaf\xdb\xf3\xfa\xff\x5f\xdf\x7f\xfc\xb7\xff\xf9\xbf\xde\x7f\xfc\xef\xf7\xbf\xd6\x3f\xbe\xff\xf9\xe7\x9f\xf5\x6f\xff\xf1\xfb\x97\xef\x7f\xfc\xe3\xbf\x5f\xd2\x7f\xfc\xaa\xff\xe5\xdf\xea\xcf\xfa\x3f\xff\xfe\x9f\x7f\x7e\xeb\x1f\x7f\xfc\xfb\x1f\xd7\x55\xf9\xfb\xbf\x01\x00\x00\xff\xff\xb4\x3e\x0b\x15\xdb\x3b\x01\x00"); +func _egg ()([]byte ,error ){return _gb (_cfae ,"Adobe-KR-3")};func _aac ()([]byte ,error ){return _gb (_cef ,"Adobe-CNS1-2")};func _gbeg ()([]byte ,error ){return _gb (_abd ,"Add-V")};var _acf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9a\xc4\x35\xe8\xb2\x71\x76\xd9\x06\xe3\x41\x7c\x28\xca\x17\x5c\xf7\x26\x37\xb3\x06\xf5\xef\x8d\xd6\x8a\x67\xad\xc8\x82\x86\xf3\x4e\xce\xab\x27\x22\x24\xed\xad\xad\xad\xfd\xad\x3f\xfe\xc3\x3f\xfe\x97\x7f\xfc\xf5\x97\xbf\x7d\xfd\xf1\x7f\xfb\xfd\xb7\xf3\xcf\xf3\x6f\x5f\xf7\x2f\xbf\x5e\xbf\xcf\xbf\xfe\xf6\x6f\xbf\x9f\xf3\xeb\x98\xff\xf2\xcb\xaf\x7f\xf8\x43\x88\x5f\xd7\x2f\xe7\xdf\x3e\x4d\xfc\x39\xff\x75\xff\xcb\x1f\xfe\xb0\xbe\xff\xf3\xbf\xff\xf5\x6f\xf3\x5f\xff\xf1\xd7\xfb\xb7\xaf\xc4\xf7\xae\x7f\xfb\xcb\xf3\xee\xd7\xd7\x1f\xff\xf7\xf9\x2f\xbf\xfc\xf5\x6f\xbf\xff\xfb\xd7\x7f\xfa\x9f\xaf\xdf\x8e\xf9\x3f\x7c\x5d\xf3\x5e\xbf\xff\xaf\xbf\x5f\xf3\xf7\x5f\x7e\xfd\x97\xaf\xff\xf4\x0f\xff\xf4\xe7\xa0\x9f\xff\xfc\x6f\x7f\xf9\xcb\xff\x37\xff\x75\xfe\xfa\xb7\xaf\x86\xdf\xe6\xaf\x17\xfe\xfe\xe1\x8f\xff\xf0\x5f\xf7\xbf\xfc\xd3\xfe\xaf\xf3\xeb\x8f\xff\xfc\xeb\x2f\xff\xf0\x4f\x7f\xfe\xcf\xff\xfc\xdf\xfe\x94\xe2\x7f\xfe\x5f\xf0\x18\x4f\xff\x8f\xf9\xfb\x5f\x7f\xf9\xed\xd7\xaf\xf0\x3f\x6e\x61\xf8\xe7\xff\xf6\xef\x7f\x99\x5f\xe1\xe9\xe5\xff\xfa\xe7\x7f\xfc\x2f\x5f\xff\x77\xf8\x0a\xdb\x57\x2c\x65\xa4\xff\xe7\xf9\xfd\xff\xfc\xaf\xbf\x5d\xf3\x6b\x63\x2b\x70\xfe\xe7\x6f\xd7\xfc\xeb\x5f\xf6\x73\xfe\xbe\xff\xfa\x2f\xf3\x0f\x5f\x5f\xff\xd3\xf6\xfc\xfb\x5e\xff\x0d\xdb\x9f\xfe\xf4\xa7\x3f\x7d\xaf\x29\xfe\x87\x37\x3f\x1d\xfc\xfa\xdb\xdf\xae\x79\xf3\xb7\xbf\xff\x76\xfd\x0b\xf7\xf7\x57\x58\x5f\xbf\x5f\xfb\x43\xd8\xb6\x67\xf4\x5f\xae\xf3\xff\xdd\x7f\xff\x7c\xb8\x6f\xeb\xed\x4f\xa3\x7c\x7f\xc5\xba\xa9\xd9\xbe\xbf\x42\xeb\x6a\xf6\xef\xaf\x90\x5a\x6e\xfa\x61\x7c\x7f\x8d\xaa\xd6\xf9\xfd\x15\xf2\x96\x87\x7e\x58\x13\x19\xe5\xd3\x3c\xb6\xef\xaf\xd8\xd5\xf9\x11\xbe\xbf\x62\x88\x6a\xae\xb1\x82\x5e\x3e\xd7\xb4\x7a\xeb\x1a\xfc\x0c\xfc\x41\xc3\x9d\x1d\x3f\x0c\xf5\x70\x0e\xfe\xa0\x11\xce\x7d\xfd\xd0\x37\x81\x77\x45\xbe\xa1\x3e\xae\xc4\x1f\xb2\x7e\x68\x6b\x52\xea\x61\x6e\xec\x41\xd3\x9a\x81\x3f\x24\xfd\x80\x59\xf4\xd7\x27\x83\x6f\x68\xe2\x93\xb3\x48\x9a\xe7\x3c\xf9\x89\x06\x9d\x17\x7f\xd0\x1b\x77\xe4\x0f\xea\xe3\x4e\xfc\x41\x13\xbf\x31\x4f\x01\x76\x73\x16\x59\xb3\xb8\x39\x8b\xe8\x2e\x39\x8b\xe8\x37\x38\x8b\xf8\x59\xcc\xb0\x3d\x18\x2f\xfa\xe1\x81\xf5\xd3\x47\x08\x44\x5f\x1f\xfa\x81\xd3\xda\xd4\x47\xd8\x89\xcf\xa0\x1f\x0e\xbe\xa1\x4f\x22\x7f\xd0\xd4\x43\xe6\x0f\xd9\x3f\x9c\xec\x23\xe9\x87\x07\x3d\x9a\x58\xe1\xb0\x49\x9d\xd6\xa7\x53\xfd\x70\x5e\x9c\xa9\x26\x76\x4e\xce\xe3\x83\xf3\x70\x71\x65\x83\x46\xb9\x48\x5f\x22\xd7\x70\x3d\x8b\xa0\x3e\xae\x4c\x8c\x69\xa6\x57\xe5\x0f\xee\x83\xcb\x10\x3d\xca\x83\x75\x77\xfa\x60\xfd\xb3\x90\xb1\x70\x1e\xa9\xe8\x87\x07\xeb\x7e\x83\xc3\xa6\xa6\x1f\x08\x6d\xd2\x1b\x95\x9f\xa4\xa4\x1f\x38\x6c\xd6\x0f\xad\xf0\x8d\x0f\x41\xc5\xfe\xa0\x30\xeb\x87\xe7\x93\xcf\x62\xc7\xb3\x72\xb3\xeb\x93\xb3\x7d\x7f\x15\x21\x30\xae\xcd\x55\xb4\x0f\xe2\x79\xac\xa6\xa0\xc0\x02\x0c\x7d\x7b\x8d\xf5\xf4\xd3\x77\xda\xf2\x9b\x31\xa4\xed\x3f\xf0\x95\xb4\x9d\xef\xa1\x32\x08\x31\x0d\x01\x9c\x0b\x7f\xa8\xcf\x7a\x87\x79\x4c\x2e\x5e\xd7\x0f\x37\xf1\xac\x37\xce\x67\x27\x6f\xfa\xe1\x41\xda\xb3\x9a\x71\xdb\xd6\x7a\xa7\xfa\x01\x38\x6e\xa0\xee\xa8\xe7\x61\x4d\xfa\xb3\xd6\x71\x8b\xeb\xf5\xcf\x1c\xe3\x16\x17\x86\x83\x5e\x8e\x0b\x7b\x1f\xa6\x10\xb7\xd8\xfe\xee\xe5\xb4\xbe\x6d\xea\x2a\xad\x6f\x5b\x54\x73\xad\x6f\x6b\x6a\xce\x17\xb2\x22\xb9\x6c\xab\x1f\xa6\x16\xc3\x96\x16\xcf\xae\x6a\xae\xce\x3e\x0c\x2d\x86\x6d\xac\xa7\x9f\xce\x42\xa8\xe0\xd1\x45\xcf\x63\xe0\x0f\x45\x3f\xc4\xef\xaf\xa1\xf7\xc7\xe2\xd9\x42\x49\x18\x8b\x67\x67\xbd\x3b\xe2\x6a\xfa\xe5\x35\x93\x5c\x71\x70\x3d\x87\xcc\x7f\xe7\xd8\x89\x61\xf4\xef\xaf\x58\xa2\x9a\x6b\x9a\x45\x30\xcd\x86\x05\xfe\x30\xea\x18\xc3\x3a\x98\x4a\x53\x73\x5f\xec\x2f\xa9\x39\xbf\xbf\xe2\x87\xb5\xc5\xb8\x0e\xc0\x98\xf4\x34\x2e\x18\x3e\xec\x37\xc6\xb8\x66\x29\x04\xc4\x88\x9e\xfd\xf2\xb1\x5e\xd6\x40\x71\xf5\xfc\xd9\x36\x31\xa6\xbc\x20\xd4\x40\x6b\xe1\xe2\x87\x0d\xc5\x98\xce\x35\x0d\xbd\x5c\x16\x76\x44\x3f\xb1\xae\x69\x04\xbd\xbc\x36\x6d\x8c\x9a\xd5\x58\x5d\x65\x4d\x03\xf8\xc8\x9a\x24\xce\x65\x91\x6a\x3c\x00\xa0\x9e\xce\xfb\x4d\x6c\x79\x2d\x69\x11\x05\x94\xc5\xd7\x93\x28\xb3\x2c\x32\x4f\x9f\xa3\x26\x96\xb5\xd5\x52\xd0\xcb\x01\x2f\x17\x35\xf3\x6a\x56\x35\xfb\x6a\x36\x35\xd7\xb7\x1f\xd6\x1e\x4b\x5c\x2f\x7f\xce\xbd\x58\x22\x9e\xea\xe5\x84\xa7\xea\x2a\xe1\xa9\x06\x02\x1b\xcc\xdb\xd0\x34\x0b\xe9\xf2\x73\x98\xc7\xb2\xb0\x19\xf2\xa6\x6d\x52\x70\x0a\xe4\xad\xfb\x93\x8c\x1f\x6a\xd2\x0f\x85\x9f\x08\xba\x42\xea\xef\x7e\xa3\xf1\x13\xcf\xa3\xf3\x13\x41\x51\x06\x3f\x11\x1c\x65\xe7\x27\x02\x1b\xec\x38\x6f\xdd\x33\xa5\x1c\xd4\xfd\xc6\xc5\x4e\x3d\xd3\xc9\x1f\x3c\xec\xcd\x4f\x34\xd3\x4a\x7c\x68\x5b\x97\x4a\x7c\x88\x2d\x94\x4a\x7c\x74\xbf\x41\x7c\x54\x4d\xbd\x12\x1f\xe2\x33\xa5\x12\x1f\x5d\x28\xac\xc4\x47\xf5\xb0\xc4\x47\xd3\xd4\x2b\xf1\xd1\xdd\x29\xf1\xd1\x04\x6d\x25\x3e\x9a\xe7\xf1\xe0\x43\xc0\x55\xe2\xa3\x7a\xea\xf7\xf7\x57\xd2\xc6\x28\x6d\xd1\x9c\x76\x6f\x69\x99\xa7\x81\x26\xd5\xc7\x22\x15\x37\xf7\xd5\x14\x50\xfd\x58\x4d\x81\xd4\x41\x57\xea\xbb\x5f\xab\xa9\xbe\xfb\xda\xce\x43\xd0\xf5\xb5\x8f\x86\x60\x1b\xc4\xa0\xb8\x4e\x19\x20\x7f\x7d\xbd\xf6\x68\x12\xd7\x29\x90\x9c\x4d\xa0\x3b\x0e\x14\xf5\x7d\x40\x7c\xd0\xcb\x07\x0e\x5c\x4d\xf3\x58\x38\x19\x6e\xe2\xb8\xd4\xac\x4f\x0a\x16\x6a\x36\x9c\x6e\x6a\xe2\xfc\xd7\xb8\x14\x6d\x84\x9e\x13\x27\x9f\xba\x9a\x0b\x84\xa8\x59\xcd\x05\x82\x58\x54\xc5\x61\x21\x12\xaa\x1b\xc6\x2d\x6a\xfe\x1d\x13\xaa\x19\x67\x41\x50\x33\xbc\x39\x56\xcd\x38\x0b\x3e\x10\xb5\x74\x61\x15\x3f\xba\x44\x9c\x7d\xe3\xb9\xd5\xf5\x43\xc6\x0f\x42\xc2\x84\x08\xd2\xea\xf8\xd1\x01\x32\x47\xe1\xdb\x43\x3f\xe0\x60\x6c\x5a\xec\x39\x28\x37\xe6\x0f\x78\x73\x2f\x7c\x23\xe8\x87\xc6\x1f\x34\x85\x7d\xe7\x0f\x49\x3f\x3c\x9d\x66\xfd\x30\xf9\xc3\x07\x49\xf3\xa8\xfc\x41\xa3\x1c\xcf\x27\x4d\x3f\x3c\x9f\x08\xf2\x67\x79\x75\x70\xce\xf3\x19\x56\xb0\x60\x11\x5b\x13\x9b\x9e\x17\xfb\x10\x67\x9e\x93\x02\x9c\x8e\xe6\x7b\xb1\xf9\x22\x31\xe1\x5e\x22\x56\x11\x25\xdf\x6b\xa1\x8b\x4e\xaa\x7b\x2d\x74\x15\xd8\xf7\xb6\x44\x3b\x1d\x6b\xf7\x76\xaf\xa7\x9f\xd9\xdd\x01\x3d\x6b\x9b\xdc\x21\xac\xc7\x6e\xc6\xef\xaf\xaa\x4d\x72\x2f\xa9\xa9\x88\x68\xee\x75\x82\x54\x9d\x3e\xf7\x3a\xc7\xcb\xd0\xa2\xdd\x4b\x1e\x29\x12\x28\xee\xb0\xe4\x44\x2d\xd8\xbd\x8e\xf9\xba\x6d\xee\x7b\x09\x99\xd9\x13\x3b\x57\xdf\x1e\xea\xfa\xfe\xaa\x3a\xf6\xef\x25\x14\xd4\x4d\x0b\x75\x43\xd2\x69\x55\x82\xc0\xbd\x24\x9d\x62\x04\x46\x20\x41\x33\x5b\xc7\x57\xdd\xb4\xac\x77\x5c\xbd\x7b\x6a\x4b\x30\x28\x45\x33\x5b\x32\x5b\xdd\x8c\xb3\xb5\x57\x5a\xd4\xd8\x6b\xaf\x94\xa2\x8f\xf3\x82\xba\xf8\x65\xcc\x34\xea\xf1\x3a\xd9\xea\xa6\x5d\x7a\xaf\x33\xa8\x6e\xda\xc4\xf7\xe2\xe3\xbd\x0a\x8e\xc5\xc5\xbb\x4e\x8a\xbb\x61\x79\x5e\xed\xf5\x75\xf0\xeb\x8b\x61\xd6\xa0\x53\xf2\xee\xc0\xa2\x8e\x8d\x7b\xc9\x78\x35\xe8\x7c\xbb\x97\xa4\x56\x93\xce\xaa\x7b\xf1\xb9\xa2\x7d\x7d\xef\x10\x9b\x0d\xf9\xda\x42\xa5\x6a\xc1\xf7\x8b\x58\xf7\xe7\x8b\x92\xab\xa9\x69\xb1\xbe\xd6\x24\xdb\xdc\x6b\xb7\xac\xd3\x5e\xed\x1b\xcf\xd5\x5e\xdc\x6f\x6c\xc6\xe5\x79\x2e\x79\xd5\x0b\xb3\xd4\xb6\xdc\x4c\x52\xd7\xda\xf4\x71\xfb\xfc\x90\x60\x29\xf9\x10\x60\xda\x96\xf4\x1c\x9a\x9a\x8b\x98\xe3\x67\xf6\x89\x4a\x72\x6a\x9f\xa5\x4a\xe1\x24\xd7\xf9\xec\xc3\x14\x60\x85\x68\xf5\x23\xc8\xa5\x80\xad\x9b\x44\xe2\x29\xa6\x47\xc2\x4e\x9f\x1f\xf6\x35\xe4\x47\xbd\x4d\x69\xe1\x33\x7e\x8e\xcf\x94\xce\x25\x62\x6a\x42\x69\x71\xf7\xf8\x41\x7e\x4a\x4b\x4b\x8d\x49\x2f\x2f\x60\x63\xf2\xd3\x25\x26\x7e\xc4\x8c\x94\xa1\x57\xe4\xd6\xf5\xc3\xa2\xca\x50\xf2\x67\xed\x53\xce\x3b\x8e\xb0\x0f\xf6\x52\x86\xf2\xdd\xa4\x9e\xa7\x4c\x21\x62\xb8\x8f\xb6\x66\x5f\xa4\x38\xa7\xdc\x56\x1f\x35\x6b\x16\xb9\x5d\xec\xc3\x3f\xe0\x84\x92\xd8\x95\x32\x0e\xda\xa6\x93\x35\xe5\x01\x41\x44\x07\x75\xca\x64\xd5\x32\x78\xa4\x0c\x5b\x52\xc9\x9f\x53\x30\x65\xb2\x59\xd9\x93\x52\x3e\xb9\xbf\xcb\xd0\x0f\x6b\x69\x4a\x75\x1f\xd7\xea\xa3\x6e\xe9\x27\x07\x4c\xca\xeb\xe4\x0c\x65\x14\x7d\x3e\x2b\x0e\x69\x2d\x75\xbe\x0f\xa2\xe2\xa1\xe5\x54\x70\x7e\xb6\xf8\x61\x1a\xa9\x40\x77\x6b\xf5\xc3\x78\x13\xc5\xda\x26\x83\x40\xa2\x14\xdb\x24\x54\x27\x0a\x9c\xbd\x7f\x36\x58\xa2\xe4\x57\xeb\xe6\x1f\x88\xdf\xa8\x61\x1b\x96\x35\x7c\xd4\xa7\x54\x5a\xe4\x1b\x1a\xb6\x35\x40\x2e\x3a\x2a\x0d\x64\x1b\x3f\xb2\x61\x2a\x38\x8d\xb3\x4c\x06\xa9\x8c\x86\x4e\xb3\xfa\x18\xf8\x44\x36\xa6\x44\x81\xa7\x8a\xf5\xa7\xf2\x2c\x5a\xd6\x3c\xb0\xf9\x6b\xf8\xd8\x43\x52\x81\x5a\xde\x64\x65\x48\x85\x8b\x26\x23\x5e\x2a\xe7\xd3\x87\x3e\x39\x69\x83\x8c\x9a\x18\x0e\xcb\x32\x8c\x53\x08\x40\x75\xdb\x34\x2c\x2c\x37\x35\x19\x7c\x18\x6a\xaa\x54\x95\x54\x2e\x88\x50\x92\xd6\x52\xb9\x80\xd3\xe4\x99\xde\x90\xe6\x24\xe7\xa6\x02\x9b\x5c\x1b\x22\xaf\x02\x9b\x5c\xf5\x66\x2c\x20\x87\xd6\xab\xfb\x98\x7c\xe3\xf3\x03\x04\xaa\xd0\x86\xe6\x51\x03\x0c\x46\x3a\x00\x53\x85\x01\xad\x0d\x6d\xc8\x1a\xa8\x3b\x7c\xf8\x6b\xaa\x11\xc3\x96\x8f\x28\x99\x2a\x2c\x0f\x63\x0b\xfe\xe1\x22\x3e\xd4\x07\xf8\x40\x6f\x9e\x47\x5a\xf3\xa8\x4d\x0b\x55\x41\xa7\xb9\x8b\xd6\x6b\x86\xc8\x99\x3f\x9a\x6f\xaa\x19\x8a\x40\xd2\xca\xd5\x8c\x3e\xf2\x47\x54\x4a\x35\x73\x97\x37\xbd\x01\xa5\xa6\x74\x61\xac\x82\x92\x87\xb4\x9c\x54\xc9\x3a\x36\xf1\xca\xda\xb9\x3d\xd2\x07\xeb\x75\x60\xb1\xb3\xe8\xb4\xee\x94\x58\x87\xde\x80\xc8\x56\x42\xd1\xb0\x10\xd9\x7a\xed\x9a\xfa\x81\xed\x51\xc4\x7e\xea\x11\x88\x42\x0d\x7b\xac\x4e\x8b\x34\x81\x54\x0f\x6c\xc2\x52\x85\x75\x70\x9b\x62\xbe\x5f\x41\xb8\x39\x36\xbd\x71\x26\xee\x06\x8d\x72\x62\x47\x95\xe1\x37\x40\xda\x66\xb6\x15\xa4\x5d\x6a\x13\x3e\x68\xd2\xce\xa2\xa0\x0a\xfb\x74\x1e\x9b\x7f\x00\x53\x8a\x86\x05\xa4\x5d\xaa\x98\x41\x05\x25\xe7\xb1\x09\x1f\x30\x59\xe7\x26\x36\x58\x67\x24\x3e\xb4\xfa\x4b\x29\x08\x75\x88\x8f\x55\x70\xba\x5a\x45\xda\xf5\xc6\x49\xd2\xb5\xb6\x0d\x26\xb9\x3c\xc4\x94\xda\x73\x8e\xea\x14\x68\x30\xea\x55\xb3\xbe\xb6\x61\xa1\x8a\x96\xb2\x6d\xa0\xd3\xa1\x95\x6b\x01\x48\xee\xda\x73\x0d\x36\xb6\xdc\x84\xd3\x06\xe2\xcf\x2d\xfa\x0d\x4c\x2c\x6b\x47\xb5\x88\x3e\x8a\x27\x86\xdd\x50\xaa\x4e\xc5\x96\x1e\x3b\xb7\xde\x80\x35\xae\x4a\xb6\x4b\x2d\x71\x14\xf1\xc2\x96\xc8\x72\xca\x07\x41\x0d\x07\x69\xed\xc3\x3f\x24\x1e\x82\xfa\x01\xea\x79\x69\x7e\xa3\x42\x2f\x4b\x3a\xd9\x1b\x18\x6c\x1b\x62\x5b\x0d\xfa\x64\xee\x22\xdc\x06\x2a\x6c\xc9\x38\x85\x26\x91\x6b\xc9\x3f\x39\xc0\x1a\x48\x63\x48\xef\x4e\x0d\x2c\xac\xc4\xaa\xfe\xe0\x36\x68\x41\x9c\xa2\x81\x85\xd5\xa0\xd3\xa8\x6f\x60\xd8\x43\x14\xd9\x03\xf4\xff\xa6\x4e\x7b\xdc\xf8\x86\x7f\xc0\xb2\xd6\x8f\x56\x99\x7a\x22\x35\x7d\xd4\xdb\xd4\x53\x27\x5c\x1f\x54\x74\x98\x2e\xba\xbc\x3f\xa9\x37\xf2\x34\xa1\xa2\x03\x37\x55\x1a\x52\xea\xd8\x6e\xd9\x87\x4f\x5f\x72\x60\xa8\x32\x32\xa7\x7e\x91\x44\xb5\xff\x3a\xf6\xce\x90\x39\x28\xf5\x9b\x0a\xa7\xd6\x79\x80\x66\xdb\x10\x01\x0e\xd8\x7c\x9b\xb9\xde\x80\x21\xb7\x98\xde\x06\x89\xa7\xf9\x93\x44\x8c\x89\xde\x06\xdc\x17\x6d\x68\xef\x0c\x40\x5b\x9b\xc0\x1f\x38\x8c\x87\x45\xd4\x01\x5d\x39\x67\xed\x8c\xd1\x79\x70\x48\x4a\x1c\x9d\x9b\x49\xe7\xe6\x18\x91\x07\xba\xe6\x31\xb8\x50\x1f\x4b\x56\x1a\xe3\x20\x45\x6a\x14\x9c\xdf\xa5\x0b\x41\x63\x07\x73\xe9\x92\xb1\xc6\xf1\xe0\x43\x33\x85\xfb\xa2\x6e\xee\x14\xbc\xa4\x07\x6d\xc8\x01\x5e\x92\xab\x64\x91\x01\x6f\x57\x93\x7e\x91\x06\x89\x6e\xe8\x00\x1b\x3c\x37\x65\x29\x4d\x03\xe7\x66\x8b\x3a\x8d\x76\x70\x9b\xea\x93\x75\x7f\xb8\x4d\xf7\x0f\x94\xbc\x84\xf5\x3d\x40\xe2\x69\x7e\x23\x50\xe2\x11\xf8\x7b\x04\x82\x86\xd6\x76\x8f\xcf\x69\xa4\x37\x12\x56\x5f\xa6\xf8\xb4\xc3\x57\xd5\x86\xc8\x72\x87\x51\xb2\x5a\xb2\xdd\x0b\x87\x1d\x7e\xe3\xa4\x2c\xa2\x79\xc0\xf6\x57\xe4\x2a\x48\x3b\x8c\x70\x55\x4e\xc9\xb4\xc3\x08\xd7\xa2\x4e\xd6\xfd\xe1\x14\xda\x40\xfb\x8e\x6d\x5a\x24\xe0\xec\x07\x69\x4c\x4a\xc5\x0e\x7b\x41\x35\xd3\xdf\xe1\xc9\xcc\x26\xed\xfd\x06\x1b\xdc\x3c\xd3\x47\xc0\xf1\x3c\x6e\x6e\xc2\xa1\xa9\x53\xde\x95\x4d\x36\x1d\x1b\xf8\x51\xd1\xda\x1e\xe0\x0e\xdd\xfc\xe3\x88\x4f\xa7\x7a\x83\xfe\xbf\xa6\x4d\x78\x40\x16\xe9\xb2\xfd\xa7\x23\x83\xa4\xa4\xf5\xa7\x03\x36\xd9\xbe\x69\x67\x1f\x34\x8e\xd6\xa2\x37\x1a\x85\x35\xf1\xb1\xa3\x3d\x7d\x14\xfd\x40\x9b\x99\xc4\xa8\xa3\xc1\x28\x99\xa3\x3e\xe9\x64\xe9\x55\x3f\xc0\xc0\xd4\xbd\xe7\x0e\x28\x29\x65\xd3\x61\x7c\x60\x8b\x95\xd7\x4c\x29\x11\x77\x1d\x71\x07\x95\x94\xa4\x8d\x7c\x80\x83\x17\x39\x37\xd3\x71\xf2\xf0\xd1\x46\x3e\x20\x36\x94\x6d\x13\xc6\x2e\xb0\x9c\x4d\x5b\xec\xc0\x09\xdf\x37\x71\xcb\x83\x0e\xe5\xd7\x1b\xf4\x1f\x6f\xd2\x54\x0e\xca\xaa\x5d\x74\x7a\xdc\x54\xeb\x74\xa2\x9d\x3c\x8c\xbd\xf7\xcf\x10\x28\x66\x57\xfd\x40\x6d\x52\x92\xf9\x49\xe1\xb5\x25\x7d\x52\xc8\x3f\xc4\xe9\xce\x4e\x4f\xa5\x76\xe5\xf9\x98\x2e\x53\xfc\xc9\x01\x76\xc2\x89\x58\x2c\xa7\x9d\x60\xe9\x35\x79\x92\x8f\xf4\xb3\xf9\x07\x6c\xb7\x5c\x35\x85\x79\x50\xb6\x51\x1f\x70\x96\xf4\x4d\xb3\xbe\xe0\xd5\x1e\x9b\x00\xbd\xe0\xf7\xcb\x72\xb9\xa5\x8b\x32\x78\xd5\x2a\x5e\x89\x8e\x70\xa9\x53\x57\xe2\x28\x3a\x59\xaf\x0c\x13\x9f\x95\xfe\x2b\x53\x2e\x71\xa7\x99\x76\x10\xcd\xf4\xa2\xc7\xa3\x68\x87\x5e\x90\x9f\x6b\xd3\x2e\xbf\x28\x53\xe4\x8f\xef\x2a\x5d\x30\xc6\x17\xf9\x7a\xd2\x45\xc7\xef\x26\x7b\xc5\x05\xa9\xa3\x54\x29\x07\x17\x3d\xc1\x9b\x16\xfe\x82\xb6\x5e\xb2\x50\x78\x75\x6a\x0b\x32\x12\x5c\x9d\xc7\x93\xb6\xca\x45\x5f\xf1\x26\x33\xc9\xd5\x31\xca\x0b\xa7\x83\x1b\xd2\x7d\x40\x6c\x2f\xb2\xb4\xa6\x6b\x27\x11\x6b\xab\x5c\x47\x06\x4f\xd3\xa6\xbe\xa0\x2b\xe6\x28\x66\x7b\xd1\x6c\x5a\x0d\xfe\x49\x66\x2b\x8d\xf4\x62\x04\x48\x37\xd6\x21\x14\x94\x16\x35\x31\x92\x94\xfc\x4c\xe9\xa2\x84\x2d\x4f\x54\xba\xa0\x1a\xd6\xa4\xad\x72\xc1\x17\x69\x8b\x52\xba\x10\xf2\x51\x87\xc8\xf2\x02\x8d\x95\xd7\x52\x32\x5c\x23\x24\xff\x40\xd1\x43\x0c\xea\xba\xa1\x5f\x55\xf1\xf8\x0b\x96\xa6\x36\x8c\xb1\x1b\x33\x4d\x12\x53\x27\x8d\xf3\x4d\xbc\x75\x52\x08\xf5\xc4\x26\x84\xd0\x66\xf3\xd5\xcc\x54\xd9\x25\x3f\xcf\x42\x15\x44\xca\xf4\x84\xb3\xa5\xfa\x14\x98\x3b\x45\x42\x9d\xbd\x73\x27\x4b\x17\x49\xd1\x46\x5e\x8b\xe4\xd6\x89\xa5\x2c\xaf\x61\xa1\x5f\x15\xb9\x95\xd2\x84\x1c\x91\x87\x87\xc5\xda\x16\x0b\x7c\x13\x6c\xb0\xc8\x0b\x94\xe6\x49\xac\x4b\xd0\xa2\x8d\xbc\x07\x8f\xc2\xb5\x4d\xd2\x15\xe7\x45\xa9\xc9\x7d\x30\xa4\x43\xa6\xcf\x34\xc9\x2e\x4a\xd2\x3c\xc0\x5b\x9b\xbc\xdf\x69\x22\x60\xa3\x54\xa9\x42\x93\x96\x02\xf3\x0f\x5a\xe2\xb3\x22\x27\xd2\x84\x7e\x55\x8a\x34\xb0\xf9\xc8\x44\x3a\x49\x26\x28\xa8\x58\x06\x98\x93\xfb\xf6\xf5\x03\x7c\x66\xd5\xcb\x00\x96\x3e\x36\x1d\x0b\x93\xc7\x75\x90\x98\x3d\x41\x63\x45\x7e\xc8\x34\x41\x63\xdd\x82\xd6\xbc\x1f\x8c\xf9\x8d\x07\x63\x9a\xd8\xcd\x7d\xab\xd3\x08\x4e\x84\x50\x52\xf3\x0f\x10\x81\xbc\x5f\xe0\x39\x58\xc3\xfa\x8d\x46\x2d\xc3\x3f\xc0\x0e\x10\xc4\xf4\x6f\x86\xeb\x28\xc0\x21\xdd\x38\xd0\x8b\x3c\xb7\x09\x06\xee\x25\xcf\xe8\x87\x4a\xe0\x24\x67\xde\x38\xae\x7b\xd0\x61\x7c\xd3\x84\xd8\x05\xdc\x8d\x00\x8f\x96\x8a\x7f\x20\xdb\x92\x9c\x79\x73\xb1\x93\x28\xe8\x66\x30\x8e\x5c\x69\xe9\x86\xf0\xda\x83\x14\x82\x1b\x91\x59\x2d\x8a\x3b\xdc\x88\xab\x6a\xbd\x8d\x9f\x1c\x60\x37\x15\x0c\x99\x88\xf2\x06\x74\x56\xb1\xb0\xbc\x6d\xe4\x58\x1f\x40\xf3\x86\xb3\xa6\xcb\x09\x97\x37\xca\x47\x72\xff\xe5\x2d\x73\x92\x5d\x9f\xd0\x84\x28\x3f\x57\xde\xca\xc3\xb1\xc6\xe7\x07\x1e\x1c\x32\xd2\xe7\x0d\x9e\xe0\x2a\x0d\x2c\x6f\x3c\x38\xe4\x82\xcc\x1b\xd5\x55\xb9\x28\xf3\x46\x19\x6b\x64\x4d\x9d\x9c\x22\x55\xcd\x14\x1c\x7c\x04\x0f\x7b\xd0\x20\x56\x34\x31\x6c\xfb\x1a\x36\x4d\x9d\x26\xda\x10\xf4\x03\x22\xa8\xaa\xec\xcf\x79\xbb\x68\x44\x1a\x1a\xe5\xe6\xb2\x56\x75\x7a\x53\x6c\xff\xec\xf2\x1c\x36\x1e\xe8\x1f\x0b\x6a\x0e\xd4\x16\xd2\x67\xef\xe4\xc0\x65\x90\x1c\x9f\x03\x97\x21\x7e\x44\xbb\x1c\x36\x4a\xe9\x1f\xb7\x44\x0e\xb0\xe2\x8f\x90\xd4\x29\x64\x80\x12\xb2\xde\x80\xd8\xde\xa3\x90\x1c\xe8\xf7\x2e\x41\x9f\xd4\xa7\xd3\x0f\x82\x42\xe3\x2e\x6f\x7a\xa3\x01\x5a\x59\x0c\x73\xe8\xcf\xb0\x9a\xe9\x20\x1f\x08\x82\x96\x7e\xe6\x28\x9c\x06\x08\x90\x5d\xc1\x81\x39\x80\x73\x66\x51\x75\xa6\x8b\xa2\xc7\xa0\x51\xc0\xe4\xb2\xb4\xa7\x1c\x40\xf7\x43\x51\x0f\x39\x40\x6a\xca\x21\xeb\x07\x6c\x84\x22\x26\x97\x23\xe5\x45\x71\x9b\x8c\x38\x9b\xd0\xfb\x67\x97\xe7\x88\xf3\x2a\xcb\xf1\x9f\x11\x11\xb3\xe6\xa1\x4f\x2a\x6d\x79\x5d\x3f\xb4\x4a\xa2\xf3\x0f\xa0\x53\xc5\xfa\xe4\xd8\x4f\xfe\xf0\x01\x2e\x0e\x82\xff\xb1\xb0\xe7\x08\x07\x55\x1f\x59\x3f\xc0\xda\x57\xf3\xa6\x3e\x60\x67\xc9\x32\x1d\xe4\x48\x6b\x5f\xfe\xb0\xe3\x1c\xef\xc7\xec\xa6\x79\x50\x15\x2a\xaf\x37\x4e\x8a\xfe\x9f\x4e\x13\xcc\x5d\x23\xa8\xd3\x14\x89\xe4\x0f\x2f\xc9\xa9\x92\x51\x46\xbd\x31\x48\x41\x49\x6f\x0c\xba\x67\x44\x74\xe9\x20\x43\xd1\x32\xa4\xf3\x11\xb4\x3e\x13\x4b\x17\x18\x94\xd7\x36\x71\x03\x19\xfc\xc4\x68\xd3\xe8\x1f\x78\xb4\x48\x78\xcd\x89\x76\x22\x6f\x75\x06\xe0\xf5\xf8\x91\xcd\x72\xde\x68\x49\xd2\xca\x65\x46\x82\xc6\xcf\x41\x9a\x33\x0c\x73\x5d\x21\x5b\x39\x47\x0e\xfb\x11\x3c\x33\xfd\x46\xf9\xf5\x49\x27\x59\x56\x0d\x3b\xe8\x39\xdb\xfc\x03\xcf\xab\xa6\x1f\x68\x32\x93\xf7\x24\x67\x2c\x76\x55\x20\x62\xce\x07\x69\xac\x6a\x58\xc4\x19\x57\x2f\x65\x3e\x1e\x5a\xff\x50\x72\x3e\x79\x08\x8a\x5d\x64\xd8\x9a\xc6\x16\xfd\xc3\x63\x30\x8d\xfa\x01\x3b\x5b\x56\x8f\x9c\x69\x85\x95\xe4\x95\x33\xc4\x86\xa1\xa8\x98\x4c\x67\x54\xa9\xc6\xe9\xe4\x56\x77\x1f\x70\x40\x65\xc5\x4c\xe5\x0c\xb1\xa1\x2a\x6e\x20\x67\x84\x16\x97\x68\xf0\x29\x89\xca\xb3\x9f\xf3\xa4\xc1\xa6\xe8\x07\x2a\x7e\x2d\xf5\x1f\x1c\x60\xb9\x80\x73\x76\xc5\x03\xe5\xb2\x71\x77\x7d\x34\x9f\x5c\xc0\x39\x8b\x8c\xb8\xb9\x6c\x24\x73\x1d\x1c\x85\x21\x87\xf2\xc6\xe4\x82\x98\xe0\xa1\x50\xa6\x5c\xa8\x5f\x29\x58\x26\x17\x9a\x79\xd3\x47\xe3\xc8\x05\x66\xb7\x9c\xb4\x02\x25\x4e\x1a\x93\x3f\xc8\x2a\xb0\xd9\x96\x9c\xfd\x03\xad\x9f\xc9\x3f\x40\x92\x8b\x5d\x13\x43\x88\x4a\x2e\xc9\x3f\x3c\x67\xcd\x67\x49\x4a\x7e\xe6\xa1\x89\x15\x4a\xb6\x4d\x13\xa3\x01\xa8\x54\xbf\x41\xd2\x10\x99\x33\xa2\x6c\x6c\x9e\x18\xc3\xc3\xbc\x77\xca\xe3\x16\x71\xa7\x95\xea\xa5\x71\xca\x18\xab\x94\x35\xb1\x4a\x9a\x6d\x1a\xb6\x91\x75\x88\x88\xe9\xe0\xeb\x0a\x91\xcd\x05\x6a\x5d\x96\xec\x9b\xcb\x4e\xde\xaa\x9d\x51\x18\xeb\x92\xbc\x2e\x8c\x59\x92\xe5\x32\x17\x86\x33\x4b\xf3\xc9\x85\x14\x19\xc4\x4a\xcb\x24\xc7\x12\xd3\xaf\xa4\x20\x99\x87\xf3\x13\x63\x14\x87\xdf\xc0\xd1\x92\xc4\x29\x6a\x78\x6c\xfa\x49\x3f\x10\x38\x91\x54\x65\xc8\x9d\x45\x0f\x3a\x92\xb2\xdc\xaa\xb9\xc2\x9a\x53\xaa\x76\x46\x7d\xa2\xb3\x3e\xaa\x72\xae\x88\x43\x18\x41\xb2\x59\x3d\x48\x96\x55\x13\x3b\x79\x18\x8b\x1f\x55\x28\x18\x45\x26\xa2\x4c\xb7\x48\x89\x5a\xfd\x7a\x3f\xc2\xf0\x07\xa7\x8d\xb6\x04\x59\x2c\x72\x83\xd1\xa4\xc8\x39\x9e\x5b\xe2\x32\x08\xeb\x2d\x67\xfe\xa0\x3e\x68\x29\xb0\x3c\xd3\xf2\xcd\x65\xd0\x1b\x8d\x8e\x13\x9d\xac\x0d\xbe\xda\x2e\xad\x36\x37\x2c\x76\x55\xec\x4c\x6e\x08\x5b\xaa\x32\xfd\xe7\x86\x38\x89\x16\x3c\x2c\xcf\x09\x0b\x8d\xed\xa6\x39\xf4\xe3\xad\xcb\x7d\xa3\xe9\x5f\x2c\xac\x6f\xb4\xe4\x4a\x7c\xe9\x09\x2b\xa7\xe8\xd3\xdc\x0b\x9d\x03\x62\xfa\x1d\x62\x65\xa9\xda\x0d\x9d\x66\xea\xf8\xd1\x49\x72\xa7\xa5\xc0\x62\x43\xdf\x19\xec\xad\xd5\xef\x10\x3c\x8b\xa2\xfe\x72\xe7\x42\x35\x31\x94\x7e\x71\x58\x51\x72\xa7\x60\xbf\x69\xef\x77\x5a\xc8\x36\x77\x7a\xd3\xe7\xa3\x3d\x37\xa8\xf9\x28\xf2\x30\x8f\xf0\xf8\xae\xab\x7e\x98\x9c\xe9\x07\xfc\x81\x43\xb0\x28\x76\x26\x8f\x48\xcb\xc9\xf0\x1b\x14\xf7\xa3\xdf\xb8\x19\x64\xf0\x59\x86\x01\x77\xd5\xf0\x42\x0d\x78\x73\x4b\x11\x0a\x47\xa2\x5a\x27\x76\x31\x12\x4f\x23\x09\x16\x83\x2a\x83\xc5\xfd\xc1\x24\x03\x33\x94\x41\x1d\xc2\x72\xc4\x60\xac\x68\xee\xfe\x61\xe7\x27\x1a\x16\x36\xd6\xdc\xbb\x60\x81\x93\x22\x5b\x7c\xa1\x83\x21\x17\xad\xed\xd8\x49\x0e\x22\x98\x81\x43\x30\x17\x03\x47\x0d\x2c\x15\x21\x79\xd2\xf6\xad\x1f\x76\xb2\x8b\x92\xc2\x4f\x0e\xb0\x3d\xd0\x8a\x22\x40\xf7\x98\x39\xc0\x67\xd6\x7b\x7a\x46\xfc\x4c\x61\xa7\x99\xb7\x88\x41\xed\x3b\x37\xa4\x28\x72\x07\xbd\xb5\x28\xa9\x74\x87\x7d\xa3\xc8\xd9\x90\x77\xfa\x9e\x7c\x2c\xec\xf3\x19\x56\x9f\xdc\x04\x43\xdb\xed\x08\x4c\x50\x10\x4b\x7f\x6c\xe9\x52\x57\xf3\x11\xf9\x86\x8e\x96\x23\xd2\x66\x24\x89\xe1\xc0\x76\xab\xca\xb6\xc9\x07\xcd\x7f\x49\x67\xde\x81\x50\x91\x9e\xc4\xa0\x68\x29\xcf\xa5\xfb\x07\x4a\xb6\xda\x4c\x07\xa2\x77\x6a\x12\xcd\x1e\xfd\xb1\x80\x68\x94\x41\x81\x49\xfc\xf9\x60\x20\xad\x19\x14\x4d\xe7\xb9\x7a\xea\x8c\x2e\x49\xda\x3b\x07\x83\x35\x93\xe4\xe7\xe3\xe0\xca\x49\xf1\x3b\x1e\xe7\xa7\x8e\xc9\x83\x72\x9a\xf2\x60\xf2\x49\xb5\x4e\xe1\xeb\xf9\x84\x6d\xa2\x9a\xfd\x9c\x74\x58\x54\x49\x94\x27\x2d\xb9\x43\x2c\xfd\xa4\x25\xd7\xda\xf5\xc9\x10\x1e\xa5\x12\xe5\x33\x53\x5c\xfe\x58\x0d\xf2\xc9\x58\x09\x79\xc9\xf2\x59\xf8\x83\x0e\xe3\x13\xe7\x55\x55\x44\x78\x3e\xeb\x03\xad\x3a\x6d\x3c\x38\x24\x72\x9f\xed\x11\x92\xf4\x09\xed\xb4\x43\xb2\xef\xd9\x79\xa2\x89\x0f\x9c\x34\xdc\x0e\x89\x2f\x27\x09\xd7\x7c\xe0\x04\xe7\x2c\x72\x7a\xe4\x93\xa1\x11\x59\xb2\xd9\x09\xe9\xb8\x0c\x1d\x1c\xb4\xc1\x37\x93\xf6\x09\x31\xb5\x06\x23\x99\xe6\xae\xd7\xc4\xc0\x5b\xab\x19\xd4\xb5\x11\x1f\xa2\x8f\x0b\x42\x63\xb5\xc8\x7d\x81\xf8\x6b\xd5\x7e\xb9\xe0\x7a\xcb\x55\xdc\xe6\x6a\x14\xe7\x84\xf5\xab\x3d\x58\xff\xac\xed\x05\xf6\x33\x64\x33\xca\x34\x42\xb7\xf4\xf1\x6f\xe6\x6b\x30\x32\x44\xbc\x75\xfe\x5d\xcc\x6c\x9e\x1b\x12\x27\x9a\x9a\x69\x35\xfd\x32\xb1\xa9\x49\xcf\x05\x96\xc3\x8e\xf2\xdc\xfa\xf7\x97\x25\x8e\xb9\x21\xee\xd2\x9d\xef\xab\xe9\xde\x18\x85\xa9\x26\xa3\x4d\xa3\xda\xd7\xf7\x57\xd5\x89\x3f\x37\x44\x88\x06\xb7\x11\xa1\x2b\x9d\x7f\x2e\xfc\x29\xf2\x2d\x4f\x44\xe8\x16\x3f\xcd\xdf\x5f\x4d\x1c\x6f\x2e\xf9\xaa\x89\xa1\xce\x25\x9f\x5b\xd6\x9c\x4b\x40\x69\x5a\xbb\xb9\xb8\x50\x13\x87\x99\x4c\xf0\xab\xdd\xcf\x89\x53\xb1\xcf\x89\x30\xdb\xa2\xd8\xd7\x3c\xc1\x71\x9b\x72\x28\xf3\x44\x6e\x94\x4c\xbd\x79\xc6\xfe\xfd\x55\x92\x3b\x80\x3d\x27\x1a\x73\x11\xa8\x12\x70\xe4\x7a\xd6\xb5\x26\x22\x73\xab\x9b\xc4\x95\xdb\x4c\x05\xf3\x42\xae\x13\xb5\xca\x5c\x34\x13\xe2\x65\xa5\x63\xcf\xc4\xc4\x2e\x0d\xbf\x34\x8b\x9a\xba\x3f\xaf\x6b\xba\x5a\x66\xf0\xdc\x56\x7b\xfb\xc9\x79\x34\xd3\xa2\x11\x83\x9e\x16\x8d\x88\xea\xe7\x62\x3e\xcd\xa8\x4c\x20\x0a\x69\x30\x33\x71\x2f\x1a\x15\x4b\x61\x29\xb2\x0d\xcd\x1c\xfe\x2e\xf4\x34\xcf\x1c\x11\x6d\xad\x0e\x33\x28\xda\x8f\xcb\x9a\x8c\x10\x91\x49\xcf\x9a\x4d\xc6\x5c\xdd\x7c\x8c\xb4\xee\x6d\xad\x8b\xa4\xe3\x99\xaf\x35\x79\xe1\x65\x49\xad\xcd\x24\xb9\x64\xd6\x66\x92\x2c\xa4\x01\x81\xb6\xb4\xa4\xb8\x79\xef\x95\xf1\x0a\x5f\xcf\xf3\x49\xba\xf1\x5e\x03\x47\x6d\xd5\xcb\xb0\xb4\xaa\x32\x5e\x1d\x5c\x00\x46\xcd\x45\x14\xa6\xc9\xb2\xf6\x8f\xe4\xb4\x59\xc7\xf7\x57\xd7\x21\x39\x69\x86\xea\x26\x01\xc4\xbc\x26\x63\xaa\xf1\xbc\x37\x38\x8d\x41\xcb\xfe\x80\x41\xcb\xc2\x1d\x93\x1f\x94\xd4\x99\x27\x03\xdd\x2c\x97\xcc\x1e\xbf\xbf\x52\x31\x7f\xe8\xef\x80\xfd\x3c\x3b\x02\xf6\x05\x7e\x67\x50\xa4\x64\xf3\xd9\xd7\x5a\x55\x77\x4f\x33\xb5\x09\x0d\x9e\x58\x2b\xb2\x13\x41\xdf\x66\x37\x9d\xd8\x12\x42\x3a\xd0\xa5\xee\x10\x12\x2e\x15\x6e\x8e\xb8\x9a\x9a\xdb\x40\xb8\xba\x8c\x21\x73\xe4\xef\xaf\xaa\x83\x1c\x89\x1a\x55\x02\xc7\x84\x6a\x92\x9b\xf7\xd3\x00\xf2\x35\xb3\x41\x0e\x63\xe4\x0f\x4e\x5d\x73\x1b\x13\x6d\x3f\x87\x51\xd9\x54\xbd\x6f\xaf\x64\x86\x3c\x97\x10\x5a\x65\x38\x98\xfb\x9a\xbb\x0e\x8d\xb9\xd3\x48\xe9\x33\x60\x9d\x99\x96\x69\x91\x32\xd2\xcd\xf2\x97\x1a\xd5\xcd\xfc\x60\x02\x57\x40\x5f\x9e\x4b\x61\x8e\x9b\x39\xcd\x52\xb2\xc6\xe6\x4d\x40\xdb\x53\x33\x59\xc2\xf2\x98\x82\x14\x84\x79\x20\xe3\x41\xc8\x38\x1e\x32\x77\x8f\x27\xc3\xaf\xdc\x25\x23\x6a\x7d\x14\x2c\xa9\xa8\x4a\x8a\x44\x9a\xab\xf5\x1e\xf8\xd9\xea\x16\xfc\x78\xad\x9d\x8e\xee\x79\xae\xa5\xd3\x19\x3b\xcf\x8e\xb7\x35\xbb\x13\x89\x08\xc1\xaf\x2f\xb2\x91\x10\x33\x19\x88\x1b\x4d\x37\xd7\x3a\x4b\xcc\x99\xaf\x75\x96\x98\x12\x2e\xc2\xaa\xcf\x2f\xb2\x3b\xcd\xed\x02\x51\xfa\x60\xb8\x16\x47\x31\xe4\x4b\x77\x68\x5e\x8b\x49\x36\xee\xf6\x3a\xe5\x7c\x82\x4e\x80\x22\x7d\x0f\x2e\xb8\xba\x49\x53\x9d\xcc\xd2\xaf\xaf\xef\xe9\xbc\x90\x2c\x3d\x27\x43\x37\xfc\xc9\xbd\x7d\x7f\x75\xd3\xdd\x8d\x09\x18\x97\x77\x5c\x8f\x35\xfb\xa5\x60\x0e\xaf\xfc\x52\xa6\xeb\x66\x42\xbb\x0b\xbe\xfe\x49\x60\x44\x9e\xf7\x22\x43\xf3\xba\x1b\x8c\xbb\x79\x28\x6e\x31\xe9\xb2\xf3\x3e\xd6\xfb\x42\xfc\x7d\xad\xa9\x68\x59\x18\x6e\x65\x45\x1f\x6e\x41\x45\x82\x64\x38\x05\x1d\x3b\x9e\xef\x25\x26\x29\xbe\x34\xdf\x1b\x48\x4a\x82\xea\xbd\x31\x7a\x72\xf8\x05\x82\x9a\xd4\x06\xa8\xa2\xb2\x1b\x72\x93\xcd\x81\xf7\x06\x86\xd0\xd5\xdc\xd7\xe4\xfd\x36\xf2\x3f\xdc\xd9\xb5\x9e\x7a\x2c\x1c\xfe\xd5\x93\x59\xa0\x68\x77\x33\x57\xc9\x46\x58\x24\x2b\x55\xb9\x08\x33\xb3\x95\x6c\x56\x43\xba\x52\x97\x26\x78\xd3\x10\xe5\x35\xbf\x03\xa7\xae\xc9\x05\x4c\xdd\x8f\x99\xd7\x25\xde\xc5\x14\x25\x8b\xa8\x48\x41\xaa\xb6\x96\xdd\xb1\xf3\x03\x4d\x90\x41\x6a\xcd\x33\x64\x5a\x52\xf3\x17\x17\x84\x23\xb7\x17\x3f\xb0\x01\xea\x86\xf9\x40\x0e\xee\x7c\x43\xba\xc9\x55\xe2\xdf\x0d\xf1\xc6\x7e\xbe\x1b\x92\xb7\x0d\xc6\x37\xec\x53\x2f\x10\x29\xef\xa8\xe0\x45\xbe\x11\xcd\x69\xeb\xd4\xcd\xe0\xf2\x28\x9d\xe2\x46\xf4\xac\xb9\x20\x73\xa5\x82\xd7\x1f\xf6\x0b\x39\x90\xf3\x0d\x31\x47\x11\x2a\xf9\x5e\x1a\x58\xb5\x47\xf4\x5e\x52\x4f\x55\x02\x4d\x46\x72\x55\xb5\xd3\xe8\xce\x8c\x1a\xf6\xaa\xc3\x8c\x6b\xc3\xde\x9d\x69\xb6\x93\x31\x0c\xf9\x58\x41\xf1\x0a\xf9\xce\x4c\xd7\x77\x8f\x00\xd1\x64\x91\x21\xda\x7b\x51\x10\x17\x98\x5b\xf3\x0f\x6b\x95\xec\x61\xba\x11\x03\xba\xbd\x06\x9c\x18\xd0\x03\x60\xd5\xb2\x40\x2e\xc8\xa9\xf3\x16\x44\x46\x98\x0d\xe4\x37\x22\xad\xec\xf2\xbc\x61\x75\x56\x56\x7f\xbe\x97\x78\x55\x83\xf7\x24\x34\xd2\x4d\x76\x17\x78\xe0\x6b\xf0\xa6\x82\x03\xfe\x45\x55\x90\xb7\xcc\xcb\x6e\x88\x5b\x9b\x89\xa6\x70\xc9\xaa\xda\x80\xcf\xf0\x23\xc8\x71\x2b\xee\x0f\x4b\xe6\x3d\x0d\xcf\x9f\x22\x93\xf3\x5d\xb1\x84\x32\x31\xdc\x95\xf0\xeb\xfb\xca\x15\xd4\x8a\x56\x64\x15\x76\xbf\xdf\xd0\xd6\x7c\x10\x18\x95\xb2\xbf\xdf\xb1\x1e\x9a\x5f\x5d\x24\x98\x83\xbf\x47\x9e\x97\x8e\x9e\xbb\x4e\x3c\xf7\x78\x48\xea\x92\xe2\x78\xc3\x8c\x92\x92\xdb\x8c\xcc\x32\xc2\x28\x31\x4a\x74\xbf\xdb\x9a\xb0\xcd\x1d\x37\xc2\xb0\x6c\x90\xbb\x97\x7a\x5b\x6d\xec\xb8\x97\x76\x5b\x93\x19\xcd\x92\x38\x6b\xde\xfc\xfd\x40\xdb\xe3\xed\x00\x58\x08\x85\xf9\x40\x71\xcb\x19\xf1\x13\x35\x8d\xed\x27\xc7\xcb\xdd\x90\x48\x69\x96\x00\x0b\x50\xca\x1e\x0c\xd8\xd0\x59\x7a\x2f\xe9\xb6\x26\x6f\xc8\x25\xdc\xd6\x2c\x85\xef\x5e\xb2\x6d\xcd\xc1\xef\x13\x39\x9a\x6c\x27\x72\x84\xcd\x25\xfb\xd6\x64\x9e\xd6\xa1\x2c\x48\x10\xb8\x3b\x91\xa3\xf9\x20\x40\xcd\xb2\xf4\xbd\xa4\xdf\x6a\xbd\xff\x46\xbc\x5a\x6e\xde\xbf\x94\x86\x93\x27\x88\x64\xe5\xe4\x0e\x00\xa0\x44\xd0\x7b\x6c\x00\x48\x1d\xc2\xb2\x90\x24\xf7\xdd\x83\x00\x6a\xc2\x90\x80\x15\x24\x9e\x6f\x88\xc0\x59\x52\xd7\x0d\x73\x58\xca\x6e\x37\xbc\xef\xef\x91\x72\x69\x8e\x36\x48\xbe\x7e\x9f\xf3\x17\x02\x06\xd9\x8d\x10\x08\x63\x9a\x3d\x6e\xf7\x20\x39\x0b\xbe\xfd\xe1\x90\x1a\x70\x7f\xce\x1d\x41\xc4\x08\xe3\x2c\x7d\x84\x69\x9b\x8a\x27\xce\x37\xf2\xf1\x9a\x09\x90\x96\xa4\x6a\x96\x72\x40\xd0\x36\x0f\x3d\x20\x69\x4a\x3f\xbc\x19\x2d\xf2\xe2\x49\x07\x63\xd3\x04\x24\x13\xab\x8d\xd4\x83\x61\xd1\x7e\xbe\x56\xb9\xf9\xd8\x80\xe8\x6c\x69\xf3\x5e\xb2\x73\xb5\x36\x7d\x1f\x4f\x5a\xa2\xc8\x90\xa2\xb3\xc9\x94\x92\xb3\x99\x2a\x45\x67\x9f\x84\x88\x51\xb3\xf6\x7d\xc3\x2d\xdc\x8c\xd5\x93\xfe\x11\xa1\xec\x2c\xc0\x80\x20\x3e\x1b\xfa\xf3\xf7\x9d\x91\x75\x1e\x00\x10\x19\x23\x4c\x0b\x37\x97\x3a\x09\x91\x20\x3c\xa9\x0c\x98\x4b\x50\x1e\x37\x5d\x9e\x0c\xa4\xf7\x07\x84\x58\x33\x84\x9f\x44\x11\x85\xf9\x86\xd9\xba\x99\xce\x2f\x6a\x07\x7e\x1f\x9a\x9d\x8f\x81\xab\x02\x63\x9a\x30\x23\xac\xcc\x36\x2f\x06\x13\x0a\xc0\x8b\x00\xfa\x39\xc3\x19\xfc\x3d\x01\xf4\x78\x27\xda\x42\x00\xb3\xf4\xbc\xaf\x98\x15\x1f\xdd\x3f\xe0\xf3\x3e\x43\xd0\x7b\x33\xd7\x9c\x84\x4f\xef\x33\xc5\x33\x7b\xc9\x99\xbd\xd0\x7d\x70\x4f\xcc\xc0\x92\xc1\x52\x02\x62\xb0\x40\x37\x6f\xd4\x0b\x53\x07\x8c\xa5\xb0\xd8\x7f\xdf\xa8\x72\x66\xa2\x40\x6c\x85\xd3\xad\xf3\xbd\xf4\x82\x18\x4c\xd6\x4b\x31\x68\x8e\x44\xba\x97\x62\xe0\x64\x80\x7c\x2f\xe1\x3e\x06\x53\xed\x4d\xaf\x8b\xc9\xea\x46\x6d\x1c\x53\xcd\xcd\x24\x4c\x1f\xd6\x37\x61\x78\x56\xb9\x20\x21\x3a\xca\xa0\x5b\x9e\x94\x68\xd5\x27\x2b\xdb\x12\xd8\x5b\x18\xfe\xa0\x62\x0a\x5d\xed\x86\xe7\x6e\x23\x88\x2b\xc7\x9f\x9c\x36\x05\x21\x70\x31\x7c\x98\x55\xd9\x96\x80\x1f\x95\x51\x52\xb6\x25\xd2\x37\xc5\x38\x94\x6d\x89\xf4\xb1\x7c\x64\x8d\xb2\x05\x62\x38\xa9\x1d\xd1\xf6\xf3\x84\xd9\xa9\xff\x25\xe3\xc7\xf0\xe1\x64\x65\x83\x39\x54\x8c\xaa\x6c\x81\xd0\x69\xbc\x25\xf4\x37\xd5\x84\x2b\x5b\xc0\x02\x44\xf7\xcf\xf9\x07\xb5\x89\x7f\xb7\x0f\x2c\xa0\xdf\x3f\xd1\x9f\x9f\x4f\xcc\xcf\xf3\x01\x49\x79\xbc\x88\x52\x02\x86\x27\x12\x5e\xcd\x77\xe9\x10\x2d\x6e\x7e\x1f\x04\xb5\xa9\x7f\x14\x38\x52\xf1\xa9\x82\xd2\x54\x31\x6c\xc2\x57\x24\x7c\x6e\x03\x3e\xe3\x3b\x02\xbe\x4d\xf3\x8b\x80\x2f\xba\xcd\xf5\xd2\xea\x47\xc0\x67\xfc\x2d\x0d\x25\xca\xc3\x59\x36\x84\x6e\xe4\x66\x80\x97\xca\xd2\xa2\xe9\x2f\x01\x60\x03\x90\x02\x9e\xeb\xfd\xa5\xb1\x38\x26\xb3\x6c\x8f\xaf\xc0\xf4\x98\xb0\x65\x4c\xbf\x09\x10\x1a\x82\xf4\x94\x9c\x13\x0a\x51\xb8\x29\x6c\x6a\xa3\x7a\x83\xce\xaa\xb2\x2d\x0d\xa3\x29\xd0\xba\x6c\x19\x25\xa4\xaa\x50\x9e\x41\x42\xc5\xed\x8a\xb6\x06\x5c\xfa\x44\x2c\xc5\xfd\x77\xf4\x27\x94\x67\x54\xbf\xaa\x6e\xef\x78\xee\xf1\x0f\xb4\xdd\xff\x89\xf7\x85\x21\x98\x5e\x95\x99\x51\xb6\x0c\x73\x64\xf5\xf8\xdc\x32\x7a\xbf\x00\x1e\x7f\xbf\xd4\x8b\xa6\x84\xb4\xb2\x15\xd4\xc4\xaa\x1a\xbf\x30\x58\xc0\x7b\x6e\xe9\x13\xad\x19\x01\x2c\x9b\xd4\xbd\x66\x4b\x81\x88\xa5\xfa\x03\x42\xa0\x19\x15\x40\x50\xb4\x64\x85\x10\xf8\xfb\x89\x19\x79\x06\x30\xa8\x16\x3d\xaf\x58\xa1\xa4\xef\x2b\x20\x4a\xea\x7f\x29\x10\x4d\x27\x57\x41\xc0\x6b\x2c\x55\x18\x42\xd2\x55\xe9\xa6\xf2\xda\xbf\xbf\x7a\x6a\xee\x60\x60\x40\x01\x50\xb1\x24\x49\x24\x50\x01\x50\xd1\x92\xd5\xe7\x2c\x76\x87\x17\x70\xee\x11\x01\x91\x21\xae\x5c\x13\x75\xd0\x08\x91\xde\x6f\x84\x40\x13\x68\x58\x23\xd3\xd0\xd2\x28\x62\xa9\x6e\x13\x42\xf5\xbf\x34\x8a\x58\xaa\x26\xdc\x40\x83\x4d\x4b\xd6\xb0\x42\xa6\xd1\x86\xf9\x9a\xe6\x97\x50\x9f\x36\x23\xa0\x33\x8d\xd8\x5c\x7e\x49\xf5\xce\x67\x2d\xdb\x92\xea\x7b\x32\x8d\x2c\x29\x3e\x6d\xde\x64\x4b\x6a\xef\xca\x67\x28\x5b\x67\xfc\xb0\xb7\xed\x92\xca\xed\x01\x2e\x5b\x3f\xd1\x16\x86\x58\xcb\xc9\x6b\xda\x27\x9e\xff\x24\x19\xb6\x6c\x83\xe9\x5d\x5e\xe0\x25\xc3\xa7\xcd\x14\x35\x08\x8e\x7a\x5f\x32\xbc\x1d\xe5\x65\x5b\x32\x7c\x4f\xde\x13\x4b\x86\x4f\x9b\x09\x60\xc9\xec\x49\x2a\x78\xd9\x06\xaa\x56\x99\x27\x0c\x94\xad\x2a\x5a\x8f\x01\x68\xbd\x47\x07\xa1\x75\xff\x17\xda\x7e\x1f\xd0\x7a\xbd\x97\x0c\x9f\x36\xf3\x88\x9d\xe8\x17\x3c\x8c\xf8\x91\x65\xa8\xa0\x70\x60\x2a\xe6\xc3\xfb\x05\x8f\x83\x3b\x9c\xdf\x5f\x8e\xe3\x2f\xa8\xde\x9a\x8a\xf9\xfa\x92\xf0\xc7\xe6\x09\x1c\x30\x03\x7a\xbd\x97\x40\xef\xb8\xec\xb2\x2d\x79\x3e\x15\x9f\xe3\x34\x86\x1b\xa0\x25\xcf\xa7\xe2\x73\xe4\xe8\x78\xee\xf6\x8e\xb6\xe6\xbf\xe4\xf9\x54\x2c\xb6\x1c\x2c\xa5\xe9\x1d\x77\xc0\xac\x69\xa6\x74\x4c\x7c\xa0\x15\x59\xf2\xbe\xe3\xbb\x0a\x2a\xca\x3a\xf8\xba\x6c\x4b\xbe\x77\xec\x56\xd9\x4e\x02\xa4\xef\x4f\x02\x24\x04\x9d\x00\xc8\x3c\xee\x24\x40\x42\xd0\x09\x80\x4c\x31\x4b\xbc\x77\xfa\x71\x41\x79\xda\xb1\x79\x87\xb2\xb2\x8d\xe9\x1d\xae\xf7\xac\x72\xab\x65\x5b\xe2\x7c\x1a\xc6\xd0\x12\xe7\xd3\xf0\x07\x4c\x80\x29\x3e\xa7\x96\x3c\x9f\x86\x47\x5c\xf2\xfc\x78\x9d\x4b\x4b\x9e\x1f\x2f\x2e\x79\x15\xbc\x2f\x88\x96\x7c\xef\x32\x9b\x05\xd5\x71\xc7\x4b\x54\x42\xb0\x71\x4d\x66\x5a\x4b\xa0\x4f\xc3\x6b\xb6\x04\xfa\xf1\xe2\xa2\x4b\x80\x1f\xcd\x9b\x84\x69\xaa\x39\x19\x04\x26\x06\xf9\x20\x59\x22\xfc\x78\x1d\x55\x0c\x3f\x78\x31\xde\x09\x98\xbc\xea\x13\x30\x79\x9f\xa1\xe2\xd9\xf0\xaa\xce\x0a\x18\xb4\x2a\xb3\xe1\xb9\x70\x32\x3b\xbe\x77\x7f\x03\x20\xf9\xfd\x1d\xcf\x3d\x3e\xea\x0f\x99\x6f\xce\x0b\xef\xfb\x7b\x2c\x9a\xa9\x60\x69\x0c\xe3\xc5\xc7\x6f\x00\xe8\x73\xe1\xe6\x9a\x69\xfe\x37\xd7\x4c\x08\x60\x28\x7a\x19\x9a\xc0\x52\x10\x1c\x3e\x59\xb6\x1b\xc6\xcc\x17\x27\x80\x3b\x60\x7b\xb1\xb2\xa5\x32\xe4\xf4\x1a\xf2\x40\x5b\x28\x40\x2c\x7b\xee\x16\x59\xa1\x42\x6c\x2f\x66\x04\x97\xc1\xf6\x62\xf6\x08\x67\xda\x14\x91\x59\x50\x4d\x38\xa7\xe2\x76\xe0\x4a\x67\xfd\x10\xf1\xc2\x50\x3b\xb1\x87\xaa\x1f\x32\x5e\xf0\x07\x80\x53\xdb\x2d\x20\xc0\x7e\xf3\x91\x1d\x36\xee\x97\x8f\x09\xa2\x30\x89\xa3\x66\x49\x05\x21\x6c\xa8\x0d\xa5\x31\x11\xc1\x17\xe4\xba\x2c\xa8\x70\x9c\x2d\xa6\xb0\xc0\x71\xd8\x36\x7f\x91\xf1\xc2\x4f\xa2\xa7\x4b\x58\x9a\x45\x36\x29\x05\xb8\x0f\x82\xc2\x38\x4a\x58\xaa\x44\x36\x2d\xb2\x7c\x72\x50\xec\x42\x09\x88\xae\x08\x0a\xf4\x28\x61\x29\x07\x45\xc1\x09\x25\x20\x26\x2c\xa8\x1a\x4c\x41\x3d\xd7\xb2\x19\x02\x24\x60\x87\xa2\x63\x37\x20\x1c\x23\xa8\xfa\x47\x09\xac\x5c\x5b\x74\x90\x07\xd6\xae\x55\x68\x5a\x09\x70\x42\x04\x15\x50\x29\x21\xa2\xf6\xaf\xe4\x4d\x16\x75\xce\xcd\x6b\x47\xaf\x83\x4f\x4b\xa6\xcf\xc4\xd7\xbc\x52\x44\x17\x7e\x01\x65\xe3\x44\xd5\x01\x5e\x84\xa8\xc4\xf1\x12\xe0\x45\x88\xf2\xf0\x97\xb0\xa4\xf8\x22\x17\x77\x09\x4b\x88\x2f\xaa\x01\x5d\x02\x2b\x10\x2a\x88\xbc\x04\xf8\x0d\xa4\x07\x85\x25\xe4\x2b\x16\xa8\x04\x78\x11\x8c\xc7\x25\xe2\x57\x23\x29\x2f\xad\xbc\xb9\x09\x81\x5f\x43\x67\x9e\x04\x6a\x36\xb8\x7d\xd5\xe4\xc1\xa6\x26\x8e\x01\x4f\x03\xa6\x75\x53\x31\x12\x85\x7d\x4c\xb2\xfa\xb5\xbc\x63\x25\x94\x27\x4d\x40\x1f\x20\x04\x3d\x99\xa8\xe1\x1b\x48\x62\xea\x01\xbe\x81\x64\x2a\x84\x30\xdf\x92\xa7\x5b\x68\x58\xd3\x8c\xca\xd2\x46\x0c\xfa\x12\xe5\x5b\x0c\xee\x6f\xe9\x7b\x46\x14\x25\x79\xcf\x77\x49\xf2\xb1\xbb\xb3\xa5\x8a\x98\x72\x96\x1c\xdf\x93\x3b\x87\x23\xa0\x66\x89\xb9\x01\x65\x71\xbb\x7a\x5b\x72\x7c\x1a\x26\xc5\xba\x34\xaf\xae\xa9\x57\xb8\x12\xfd\x76\x5b\x8b\xa6\xc1\x2a\x10\xef\x6f\xe1\x14\x28\x1e\x9b\x85\xcb\x4c\xc6\xf0\x0a\x18\x2f\x4b\xa4\xaf\x1e\xab\x41\x5c\x10\x9a\x91\x39\xdb\x94\x5a\x5c\x02\x4c\xfa\x9b\xa7\x8a\x88\x35\x45\xb2\x96\x80\x80\x35\x45\xe9\x96\x80\x20\x92\x17\x7f\x6b\xac\x26\xf0\xfa\x01\x5a\x69\xd2\xc2\x75\x70\x2f\xcf\xbf\xa3\x7e\xa1\x9b\x5c\x57\x33\x8f\xce\x78\x1e\xcd\xb8\xb3\x96\xab\x01\x5c\x02\xf5\x30\x37\xea\xf4\xab\x09\x9b\x8c\x9f\xf3\xfe\x79\x4a\x8c\xf8\x39\xf4\x70\x6f\xc0\x01\xcb\x95\x37\xe0\x60\xcd\x66\x7f\x8f\x5a\x8f\x82\x1f\x46\xef\x2e\xf4\x0d\xc6\x1a\xf8\x6d\xa6\xf5\x25\x0f\xc7\xba\x9a\xde\xb1\x8f\x55\x5b\x5f\x20\x19\xe8\xb5\x20\x3b\x0c\x41\x92\x2d\xc2\xce\x22\x68\x52\x1a\xc3\x4e\xad\xd5\x18\xd8\x77\x60\x58\x53\xdc\x51\x6f\xd2\x1d\x9c\x50\xc9\xd4\x64\x4d\x79\x03\x08\x09\xd9\xf8\x3f\x58\x27\xd3\x8f\x61\xfa\xcb\xde\xb9\x07\x8b\x06\xf9\xd0\x64\x20\xfb\x52\xf4\x7f\x72\xbc\x7c\xf2\xd8\x34\xdd\x83\x76\x37\x89\x02\x01\x26\x72\x9b\x96\xc2\x01\x3f\x41\xf0\x73\xb0\x48\x1f\xd2\x07\x31\x2a\x04\xb1\xc8\x4e\x37\x48\x27\x6c\x47\x3e\x50\x99\x81\x3f\x8c\xd2\x25\xf3\xb6\x68\x5e\x72\xb2\x4a\x98\x8f\xf9\x13\xdc\x24\xba\x47\x58\x8f\xa4\xe8\x87\x93\x44\xaf\x29\x9d\xb0\x1e\x59\x6c\x38\x61\x0d\x34\x11\xc2\xa4\x5d\xb3\xe4\x3f\x14\xf6\x6f\xcd\x62\x02\x6b\x46\x64\x49\x90\xac\xeb\x5f\x2c\x56\x87\xeb\x59\x06\xad\xf3\x05\xd5\xcf\x2c\x0e\x62\xef\x8b\x05\x5f\x10\x11\x5f\x43\x30\x54\xc4\x78\xbb\x4e\x88\x2a\xee\xf0\x02\x5d\xb9\x3d\x79\xce\xfb\x07\xc6\x30\x99\x8b\xce\xed\x55\x82\xb5\x04\x04\xb7\x18\x69\xf3\x49\x10\xd2\x80\xf3\x61\x46\x82\x89\x31\xb8\x59\x32\x5f\x58\x62\x66\x2c\x86\xe1\xa6\xfa\xeb\x76\x02\xa3\x55\x07\x10\x33\x6d\xdb\x2f\xe1\x2e\xef\x2a\xb0\x25\x2c\x31\x53\x45\xd6\x4a\xb8\x61\xd2\x72\x77\x4f\x1d\x49\xf7\x47\x52\x13\xe5\xb0\x36\x9e\x12\x5b\x4b\xdc\x58\xcf\x5a\x76\xc9\xb8\x04\xc2\x2a\x88\x22\x4a\x15\x37\x95\x5f\x2e\x71\x63\x04\x8f\x5f\x80\x85\xc6\xfd\xd1\x83\xd5\xfc\x3e\xc3\x8b\xfc\xc2\xd2\x77\x65\x75\x8c\x08\xa1\x55\xc5\xa9\x12\x9f\xd0\x90\xa6\xf6\x3a\xe3\xc5\x6c\xe2\x92\xe5\x94\x00\x58\x22\x4b\xd1\x0e\xbf\x7d\x51\x4d\x51\x1b\x31\x0c\xc3\xbd\xdf\x0c\x92\xf8\xd0\x75\x64\x70\xbf\x2d\x58\x31\xd2\x25\x2e\xf0\x20\xb7\x29\x54\xa5\xa0\x6e\x7d\x50\xe8\x48\x89\x90\xda\xaa\x5c\xd0\x25\x46\xa6\xbb\x07\xff\x00\x3d\x40\x67\x2b\x6a\xdb\x07\x0b\xd4\x11\x42\x9b\xf2\x0d\x0a\x0a\x97\xd6\x2c\x7d\x17\xc5\xef\x43\x0d\xaf\x1f\xe8\xd6\xd4\x14\x11\x2a\x62\xb2\x8f\x89\x27\x9e\x9f\xf3\xc4\x13\x12\x20\xd2\x25\x91\x58\x84\x5d\xd6\x9a\x0c\xea\xe9\x2f\x90\x34\x63\x06\xb8\x4a\x23\x8f\x4f\xc1\x0b\x0d\x90\xe1\x9f\xaa\x7e\xbf\x02\x02\x41\x98\x89\x12\x7f\x4f\x17\xa2\x70\x8e\x72\xa8\x4d\x27\x6e\x64\xbd\x27\x9d\x20\x91\xd5\x51\x93\xfb\x63\xd5\x48\x61\x2c\xd3\x1f\x25\x00\xf3\x93\xcc\xa3\x0e\x0b\x6c\xf5\x7e\xa1\xc0\x17\x91\xfd\x1c\x96\x6b\x77\x58\xc8\x6f\xfd\x7e\x23\x46\x84\x22\x96\xa7\xef\xaf\x11\xc8\x5f\xfd\x02\xf8\x6b\x76\x8f\xe4\xaf\x42\x19\xc4\xb5\x90\x7f\x12\x77\x56\x98\xb0\xed\xda\xc0\x05\x97\x18\x34\x05\xfc\x95\x08\xb3\x6b\x34\x82\x2a\x6b\x7d\x49\x5f\x89\x15\x56\x31\xd3\x58\x85\x15\xd2\xbb\x96\x66\x55\x93\x50\xc5\x91\xeb\x15\xad\xb0\x13\x9b\x02\x68\x55\xf5\x0a\x3e\x56\x55\x4d\xb0\xc1\x4a\x66\x92\x43\x5c\xc6\x4b\xc8\x89\x0d\x46\x1b\x63\xbc\x51\x58\x77\x07\xac\xc1\x67\x3e\xd1\x68\x96\x72\x8f\x30\xa3\x19\xe4\x06\xb3\x99\x69\x08\x81\xbd\xc3\xfb\xb4\x83\xd1\x76\x3f\xc7\xbe\x96\x0b\xb1\xe0\x26\x96\x6c\x6d\x3d\x2e\x29\x2d\x5b\x95\x8a\x2c\xb6\xa3\xd8\xdf\x12\x07\x83\x8b\x75\x3c\xc4\x25\xb8\x65\x5b\x59\xe2\x12\xd4\xb2\x4d\x22\x4c\x91\xaf\xd9\x30\x20\x1e\x21\x66\xb3\x33\xa4\xe7\x24\x55\xb6\x2a\x11\x51\xbb\x71\x98\x1d\xa1\xf6\x55\x4a\x26\x34\xca\x6b\xaf\xb5\x1f\xc7\xab\x2e\x78\x89\x03\xe1\x9a\x6a\xee\x38\xa6\xd5\xdd\xce\x5c\x3a\xa3\x6d\x4f\x8b\xbf\xaa\xf7\x9d\xe5\x69\x0d\xe3\x8e\x80\xe8\xee\x0e\x18\xc1\xe0\x85\x44\x04\x83\xa5\xaf\x88\xec\xd6\xd7\x07\x8f\xf4\x24\xe9\x8d\x55\x00\x6a\xf6\x9c\x10\x7c\x6b\x83\x44\xa4\xf4\x64\x96\x7d\x90\x7f\x0a\xad\x4f\xfc\x80\xe6\xcc\xda\xb6\xde\xbc\x88\xbd\x6d\x5e\x58\xc6\x0f\x24\xbf\xcf\x19\x19\x47\x2c\x7d\x9b\x3c\x00\x69\x51\x13\x62\xc9\xc3\xcd\xa7\xce\x12\x96\x5a\x34\xbf\xba\x98\x56\x23\xdd\x30\x52\x18\x0a\xd2\x5c\x23\x0a\x48\xdb\x3a\x10\x2f\x78\x19\x3c\x47\x54\x94\xb6\xe6\x1f\x2f\x78\xb6\x0c\x23\xee\xcb\x7a\xb7\x71\xad\x8b\x4f\xa9\x0b\x9e\x2d\x53\xff\x85\xdb\x1a\xbc\x7f\x2f\xd8\xf4\xbd\xdf\x97\x64\x94\x6c\x53\x8d\x17\x77\x93\x9e\x4f\xea\x8b\x9e\x10\xab\x9b\x76\x1f\x4a\xb8\xf0\xa0\x18\x69\xb3\xa2\xad\x11\xe7\x80\xf0\xe6\xe7\x30\x51\x7a\x95\x27\x2d\x59\x46\xc9\x0d\x4b\x96\x79\x1e\x2a\x03\x6f\x76\x7c\xc4\x9b\xdb\x4b\x3d\xdc\x8f\x85\x45\x43\x42\x74\xb2\xe3\x22\x22\x4b\x38\x66\x8b\x32\x4b\x78\x2a\xd5\x4c\xfa\x1e\xaf\x1a\xfa\x25\xde\xfb\xf7\x57\xf5\xd6\xb8\xd7\xc6\x1a\x42\xd1\x0d\xb9\x46\x5b\x25\x6d\x4c\xc0\x49\xfe\x61\xb1\x34\x09\xa7\x09\x72\x93\xfd\xd1\x69\xe3\x21\x36\xd4\x86\x84\x2d\x84\x25\xfa\xdb\x25\x36\xa4\x00\x49\x52\xd0\xa5\x10\x20\x2d\xbb\x0d\x47\x8a\x56\x28\x85\xf2\xba\x01\xa0\xa4\x25\x47\xd5\x51\x7e\x72\xde\x24\xb8\xde\x5f\x3d\x91\x98\xaa\xda\xfb\xfb\x32\x81\x92\x20\x84\x6d\x3a\x4d\xd3\x12\xc2\xda\x6b\x62\xb0\xff\xc8\x21\x92\x96\xc8\x35\x74\x72\xa6\x25\x70\xa9\xce\x53\x49\x0c\xcd\x1d\x7e\x0c\xfb\xe4\xab\xcd\x6b\xb9\x24\x30\xa6\xf8\x14\xaa\x16\x62\xe9\x28\x97\xfa\x98\x90\xb8\xe4\xb0\xd1\x92\x22\x0f\x33\x0f\x49\x62\x57\x8f\x89\xb6\x6f\x2d\x64\x82\x69\xd8\xdf\xb3\xf6\xa8\x02\xe3\x4a\x4a\xd4\x64\x64\x45\x4b\x10\xd9\x82\x22\xf6\x4b\x82\x48\x16\xed\x7a\x4e\x4b\x26\xb3\xc7\x20\x21\x21\x69\xb8\x43\x5e\x45\x95\x3c\x24\x79\xa0\xa7\x84\x88\x23\x83\x90\xe0\x79\x16\x97\x4d\x8c\xcd\xd5\xe7\xf9\x51\x5c\xfc\x1c\xc9\x55\x5a\x92\x25\xc0\x59\x80\x4c\x48\x50\xf2\xfa\x22\x41\x49\x32\x74\x42\x7e\x92\x98\x5f\x5a\xc2\x9c\xd2\x34\x4b\x82\x0f\xdd\xb4\x92\x49\x1b\x1e\x09\x91\xd8\xc3\x33\x63\x9a\xa7\x38\x4d\xe2\x1d\x63\xe2\x94\x89\x66\x36\x2f\x06\x32\xa6\xcd\x16\x12\xcd\x6e\xe2\x9c\x89\x56\x35\x13\x63\x81\xff\x4f\x7c\x27\x15\x68\x0c\x1e\x8e\xf7\x24\xbc\x9e\xaf\x6d\xb8\xf9\xf3\x9b\x72\x88\xc6\x83\x07\xdc\x88\x86\x24\x66\x62\xac\x50\x9e\xa4\x4c\x25\x94\xf1\xef\xb6\xb3\xa5\xca\xeb\xdd\x84\x8f\xfa\x54\x88\x17\x7c\xf5\x7d\x15\x47\x49\x95\x5c\xc6\x03\x30\xc9\x73\xf3\x0b\x6b\xbe\xde\x5c\x4b\x10\xb3\x29\x3e\x2d\x39\xac\x2a\xaa\xa9\xa4\xc6\xdd\xa4\xd7\x59\x87\xae\x48\xa8\x49\xb4\xa6\x79\x7d\x10\xd0\xea\x00\x81\x84\x80\x56\x9b\x60\x13\xd2\x63\x7b\x35\x42\x98\xb6\x5c\x36\xff\x80\xb8\x1a\x71\xd5\x84\xa8\x54\x8b\x38\x69\x09\x62\xba\x1b\xa6\xa4\x8e\xec\x14\x6f\x25\xc6\x78\x4a\x74\x4f\x83\x75\xd8\xbd\xb5\x18\xf4\x29\x65\x24\x0d\x04\xc7\xc9\x45\x82\xea\x3e\xd5\x36\xe4\x04\x83\x97\xcd\x49\x69\x40\x19\x69\x1e\x10\xca\x88\x57\x6c\x40\x14\x36\xc4\x83\x92\xbb\x16\x60\x90\x6f\x8b\x80\x06\xe1\x55\x9b\x25\x94\x8b\x54\xd8\xb4\xb3\xcc\x4f\xf0\x1b\xb4\x7b\xb8\x0d\x0f\x7e\xf5\x07\x4f\x21\x67\x81\xb8\xd3\xa5\xef\x17\x3a\xf3\x9b\x34\xe7\xfd\xc9\x43\x13\x90\x2c\x1e\x68\xa3\x7c\x7a\x4a\xd9\xfa\xf8\xda\xe1\x4f\xf3\x3e\x82\x9b\x7a\xf8\x10\xe0\xfd\x21\xc5\x94\x78\x3c\xe2\xaf\xba\x3c\xe0\x59\x6a\x3f\x32\xa2\x25\x98\xdc\x62\xf6\x32\x1e\xf5\x75\xc7\x4c\x49\x07\x53\x9e\x04\xf2\x12\x0a\x9b\xc9\xf2\x64\x29\x79\x89\x1f\x89\x41\xa2\xc9\xd3\x3b\x11\x2b\xe4\x9d\x40\x29\xcf\x6e\xe9\x84\x24\x2b\x8f\x8f\x20\x50\x33\x5c\xd8\xcb\xbc\x8f\xcf\x35\xbc\xf1\x7b\x3e\x25\xc6\x3c\xda\x3a\x52\xbc\xcd\xe8\x11\xee\x26\xa2\xeb\x91\xb3\xfd\x06\x89\xc0\x7c\xef\xe2\xf5\x5b\xc2\xe6\x45\x46\x21\xa2\x40\x8c\xa7\xe3\x14\xd2\xf5\x08\xde\x7e\xe1\xc9\x13\xd5\x9c\x10\xe5\xe9\x04\x8e\x92\x68\x2f\xf3\x19\x74\x91\x52\xd5\x25\x85\x3c\x2b\x65\x69\x3e\x7e\x3a\xf5\x30\xe3\xf7\x57\x51\xfa\x68\x49\x33\xbd\xae\xfe\x29\x69\xc9\x80\xba\xd4\xb5\xa4\x59\xbe\xbf\xba\x19\xc1\x92\x08\xbb\x71\x34\xfb\x7a\xd9\x4f\xd7\x31\xe2\x43\x66\xee\xeb\x65\x0f\x7c\xac\xa6\x07\x5a\x7b\xd2\xc7\xe5\xbc\xbe\xbf\x6c\x4e\x4e\x13\x2c\xd1\x60\x81\x25\xea\x5b\xa4\x8f\xc9\x3b\x91\x96\x58\x69\xa5\x0e\x35\xb8\xba\xb9\xeb\x92\x31\x95\xd1\x52\xd2\x0d\x88\xb4\xaa\x37\xab\xbb\x78\x55\x6f\xd6\x4b\x32\xb3\x5b\x12\xa6\xc3\xb3\x12\x12\xc2\x2c\x93\x2d\x11\xb2\x9b\x13\xd2\x36\x67\x63\x21\xea\x7f\x0d\x2d\x68\xde\x96\x6e\xa6\xc1\xf2\x96\x57\x73\x53\xb3\xae\x66\x55\x13\x5e\x88\xe1\xb7\x97\x34\xaa\xa5\xca\x4b\x1a\x55\x61\xd0\x92\xb7\xa5\x5d\x47\x7f\xbc\x84\x73\xb1\xd4\xbc\x2d\xde\x20\xdb\x6f\x5e\x92\xeb\xd0\x56\xc9\x30\xe8\x25\x3f\xbd\xd7\xcb\x1a\x37\x40\xda\x13\x48\x4b\x6a\x1d\xa2\xb0\xbc\x84\xd6\x91\xfc\x94\xcc\xdd\x50\x04\x46\x0a\x4b\xe8\xcf\xa8\x6a\xf5\x12\x3e\x33\x52\xc1\x1c\xc5\x98\x03\xc4\x6c\x89\x3e\x39\xb0\x9e\x4c\xf3\x0f\x07\x88\xda\x1f\x9c\xf8\x40\xa8\x80\x09\xd1\x07\x50\x46\x75\x19\x55\x27\x2f\x19\x26\x44\xc7\x81\x66\xba\x82\xc5\x48\x70\x0d\x64\xa8\xdd\x33\x8c\x8c\xeb\x35\x0e\x96\x08\x5b\xed\xc0\x41\xcd\xb6\x1a\x5f\x3d\x20\x92\x60\xf8\x7d\x64\x11\xbd\x3a\x24\xc8\x6e\xc3\x4f\x2c\xa2\xcd\x4b\x00\xae\x71\xf3\x73\x40\x2c\x66\x95\x21\x10\x87\xd7\xf8\x84\xd8\xe3\xc3\x4c\x2e\x32\xcd\xc8\x6d\xab\x8e\x59\xcb\xc8\xe4\x77\xa8\x69\x86\x97\xd9\xa1\xab\x99\x35\x1a\x55\xaf\xaa\xe4\x44\x7f\xbe\xd6\x20\xb1\xb4\x8b\x36\x46\x5e\xf2\x71\x55\x31\xc5\x92\x61\xb2\x0c\xe1\x47\x67\x49\x4e\x84\xdf\x1f\x73\x85\x3d\x3a\xe0\x35\x89\x40\x78\x76\x60\x6b\x4e\x5c\x61\xb7\x69\x3e\x94\x41\x94\xf7\x37\x39\x74\x39\x67\xba\x05\x34\x20\xc4\x6b\x87\xfa\xe6\x4c\x70\x05\x1d\x13\xfe\x8d\xd0\xcc\x5b\x6a\xb5\x00\x10\xb0\xed\x9c\xc9\xc8\x7b\x73\xa8\x30\xaf\x8b\x72\x68\x74\xce\x4f\x5d\x13\x7f\x70\xd2\xe0\x29\x90\x33\xef\xa2\x49\xfe\x81\x30\x7a\xca\xc8\xc4\xf7\x92\x15\xd0\xa4\x78\x68\xae\x48\xbd\x91\x94\x93\x91\x29\x96\x25\xd5\x64\xd4\x4a\x4b\xde\x15\x10\x7c\xb3\x74\x6d\xdc\x5f\x55\x73\x71\x7f\xb0\x59\x7b\x3e\x15\x26\x62\x1d\x90\x19\x2e\xe4\x9c\xfd\xbc\xf3\xaa\x61\xb5\x59\xf1\xac\x79\x80\x9d\x3e\x3b\x41\xc0\xdc\x32\xb3\x0e\x48\xce\x39\x7b\x06\x94\x9c\x25\xca\xe6\x25\x2a\xbf\xdc\xd0\xb9\xc1\x8e\x64\xa2\x6d\x2c\xeb\xa0\xf7\x21\x4b\xfb\x20\xe1\x8d\x5c\x8e\x5c\xcc\xc8\x35\xcb\xee\x9f\xb9\x66\x66\x5d\x74\x4c\x4b\x86\xc9\x74\x4c\xeb\x78\xce\x74\x4c\x7b\x51\x1b\xb2\x8f\xcc\x1c\x99\x5b\xd6\x3d\x5f\x24\xcf\xbd\xe6\x0b\x57\x8f\x97\xb8\xc1\xab\x98\xdc\x06\xbc\xe6\xbd\x28\x8e\x60\x83\x41\x66\xfa\x98\xf9\x3a\xd3\xc7\x7c\xde\xc0\x62\x6a\xa9\x33\xb3\xee\x8d\x7d\x88\x99\xf9\x62\x52\x86\x32\x1c\xe1\xd9\x27\x14\x8a\x25\x64\x9f\x14\x4c\x07\x33\x9f\x43\x4d\xd1\x64\x04\xa3\x3a\x42\xce\x6e\x4f\xd6\xd9\x50\x9b\x7c\xc9\x44\x09\x8b\x6c\x92\xcc\x87\x42\x96\xaf\x28\xb7\x0c\x4f\xba\x8a\xc2\x95\xe7\x3e\xb4\x6e\x94\xd0\x42\xbb\xf9\xf4\xc2\x65\x04\x76\x49\xf2\xc2\x34\x1b\xa9\xf2\xa0\xfa\xe6\x7d\x03\xed\x22\x9b\x2a\xa1\x4d\x24\xf3\x56\x78\xd3\x6b\x34\x52\x06\xaf\x11\xf5\xf9\xb3\x93\x0c\x85\x45\x14\x52\x68\x12\x0c\x33\x2b\x29\x98\x2c\xf7\x07\x08\xcd\x71\xa7\x4e\xe7\xbd\xbb\x23\x21\xca\x84\x0a\x7d\xc2\xf1\x51\x99\xd7\x71\xca\x38\x98\x69\xd3\x7d\x7d\x3f\x58\x0d\x41\x6d\x68\x48\xb2\x6b\xe7\x9d\xd5\x12\xdc\x1f\xdc\x35\xde\x58\x3b\xcb\x15\x08\x27\x4b\x95\xa8\xb6\x2f\xf1\x8e\x39\x1b\x27\x50\x3b\xb4\x5a\xea\xca\x07\x6f\x98\x13\xc4\x70\xe8\xe7\x60\x66\x03\x87\xbe\x23\x34\x32\x0b\x85\x75\x2f\xfc\x01\x9d\xd0\x5b\xed\x80\x4e\xe8\x65\xe5\x85\x2b\xf9\x27\xd5\xa5\x4b\xe6\xf5\x40\xdd\x1b\x83\x19\x70\xcd\xbd\x13\x1f\xee\x1d\x3a\xb3\xc9\x92\x19\x71\xc5\xdf\x03\x1f\x66\x0c\x4c\x90\x93\x49\x82\x85\x51\x9d\x06\xf1\xdc\xb8\xe7\xe3\x98\xba\x8f\xdc\xdc\x99\xc5\x25\x4c\xa4\x4c\x90\xf3\x71\x46\xfb\xb6\xc2\x2d\x78\x61\x9f\xbd\xda\x99\xf6\x6e\xa3\xf7\x64\x98\x99\x17\xfc\xa4\x97\xd9\x10\x31\x64\xb6\xbf\x3e\x81\x59\xc7\xdb\xe0\xbc\x81\x22\x2d\x31\x33\xe0\xba\x79\x01\x53\xda\xcc\xdc\x58\xf2\xb2\x59\x42\xbd\x88\x24\xbd\x30\x79\xd3\xa7\x3a\x98\x48\xcf\x31\x11\x4e\xba\xc4\x34\x83\x49\x9f\xa5\x4f\x3c\x28\x2b\xd1\x27\xd0\x44\xbe\x8e\xb1\x38\xe1\x03\xf4\xae\x98\xc8\x66\xf1\x79\x32\x91\xaf\x63\x90\x27\xf2\x75\x8c\xc5\x09\x33\xa4\x77\xcd\x44\x3e\x92\x51\x32\x61\x47\x30\xd5\x33\xc5\xcd\x54\x33\x59\x61\xc4\x07\xda\x0d\xa7\x9f\xb7\xed\x8d\x38\x1b\x93\x11\x74\x95\xe8\xf3\x87\x09\x69\x26\x93\x1b\x13\xf0\xb2\xdf\x70\x49\xbe\xda\x98\x90\x2c\x6d\xf9\x46\x7e\x90\xb6\x71\xd9\x80\x61\x8d\x5f\x58\x8c\xd8\xc9\x1d\xa8\x5a\xdb\x54\x7a\xb8\xa0\x68\x6d\x53\xc1\xe3\x52\x90\xcf\xa6\xf2\x7d\xa5\x30\x9f\xad\xf8\x79\xc3\x04\xaa\xda\x08\x6a\xc9\x6e\x03\xc3\xe2\x03\x05\x91\x07\xba\xc1\xa6\xa0\x04\x6e\x53\xa5\xe3\x82\x3b\xd6\x9b\x77\x7d\x61\xa0\xaa\xee\x7a\x28\x85\x26\xf7\xe2\x01\xa0\x10\xcb\x06\x82\x5b\xd9\x63\xf0\x84\x03\x56\x20\xfb\x39\x69\xcc\xcf\x59\xcc\x52\x4b\x50\x98\xf3\x66\x8c\x30\xa7\x2d\xb9\x03\x5e\x14\x91\xfc\x02\x40\xd2\x91\x57\x02\x6b\x90\x8a\xea\xca\xa3\x4c\xb8\x8b\xc8\xfa\xa1\xc6\xca\xd2\x1e\x5c\xfb\xbe\xa0\x86\x6f\x0c\xe2\x26\x25\x3e\x63\x6a\xd6\x11\x01\x1c\x62\xcf\x25\xd2\x34\xf4\x1a\x62\x11\x4a\xdd\xfc\x01\xec\xe7\xc3\x23\x4e\x3c\x77\x07\x37\xda\xa2\x0b\x24\x96\x99\xdb\x96\xa5\x2e\x44\x15\x89\x2a\x25\x21\xe5\x46\x82\x05\x6a\x0a\x47\xbb\x2e\x70\x85\x7d\xf3\x09\x58\x90\x67\xa6\xeb\x55\x0b\x4a\x0e\x37\xf3\xbb\x92\x00\xb1\xe9\x62\x29\x13\xd1\x01\x86\x25\x21\xc7\x48\x82\x13\x2a\x14\xfb\x2e\xcc\x82\x3b\xf2\x9b\x2d\x82\xb8\x4d\x34\xa9\x66\x4c\x61\xbd\xe2\x66\x33\x48\x61\xde\x9a\x04\x97\x82\x2b\xba\x6d\x7e\x2f\xcc\x5b\x93\x64\x56\x32\x72\x88\x7e\xe6\x8c\x29\x8c\x79\xf5\xe8\x19\x09\x46\x9e\x2d\x82\x2b\x6a\x29\x7e\x01\x21\x41\x62\xce\xe5\xb9\x31\xb2\x7b\x78\x38\xff\x25\x47\x15\xa6\xb9\x0d\x77\x80\xf5\x6d\x6e\xc3\xd9\xff\xfa\x9e\xeb\xab\x19\x14\x80\xaf\xf3\xaf\x30\xcd\x4d\xf2\x06\x8a\x35\x37\x9f\xf7\xbc\x7b\xb5\xfb\x80\x44\xf1\xe6\xa8\xf2\x4b\xa5\x20\xfc\x42\x65\xb7\x4a\x29\x0d\xf8\xf4\x73\x12\xa4\x07\x78\x44\x7b\xcd\x18\xd1\xaf\xaa\x63\x56\x70\xcf\x7f\xf4\x89\x86\xd2\xcf\x51\x25\x07\x4b\x61\xda\x9a\x8e\x27\xdc\xe9\x1f\xed\x44\xc7\x95\xfe\xd1\x01\xaf\xb8\xd1\xdf\xb5\x29\x0b\x2e\xf4\x8f\xc5\x18\xa4\xb6\xa2\x12\x72\xa5\x30\xde\xc2\x14\x82\xcb\xfa\xcb\x8b\x99\xb2\x1e\x6f\x32\x52\x1b\xaf\x38\xf3\x2e\x78\x42\x28\xcc\x6e\x1b\xac\xc0\xde\x86\x0c\x99\x78\xf1\xdb\x46\xa7\xaf\x66\xd9\x70\x47\x7f\xf3\x98\xd7\xf7\x57\xcf\xaf\x21\x41\xe7\x26\x9c\xa5\x30\xf4\x6c\xa8\x99\x9a\x66\xf6\xd8\xe1\x81\x34\x59\x23\xe4\xc2\x89\x36\x05\x21\x17\x9b\xf7\xe5\x52\x20\x92\xc3\x1e\x4b\xa7\xf9\xcc\x0c\x7b\x29\x0c\xc9\x31\x1e\xa5\x23\x39\x70\xf8\x03\x44\xb1\x18\xe2\x0e\xdf\x4e\x73\x1b\x00\x7b\x19\x91\xc9\x96\x4d\x57\x08\xbc\xdd\x5e\xfd\x4d\x3c\xf7\x78\x88\x92\x36\xd9\x30\xc2\xe3\x75\x22\x0d\xfa\x5c\x85\x51\x24\xaf\x65\x73\xb2\x81\x64\x30\xd3\xc1\xd2\x27\x92\x9d\x3b\x05\xc9\x6c\xd9\x9c\x88\xc9\x6b\xe6\x34\x4c\x5e\x33\x99\x30\x79\xcd\x9c\x71\x70\x05\x05\xc0\x80\x1b\x5f\xb6\xad\x32\x6e\xbc\xaf\xef\x97\xee\xd0\xb3\x39\xf3\x0e\x1f\xb1\xfb\x67\xf2\x9a\x39\x01\x3c\x11\xd9\x1b\x0f\x65\xd8\xac\x62\xa2\x76\x79\xcf\xe6\xec\x3b\x16\xac\xfa\x39\x16\xcc\x9c\x62\xa7\x4d\xba\xf8\x05\xae\x98\x00\xda\xb1\x62\x66\x66\x48\x96\xdb\x5e\x1d\x20\x1b\xcf\x24\xb9\x93\x15\xeb\xfd\x83\xa9\x57\x3e\x0b\x0e\xc4\x57\x7a\xc6\x07\x68\xd2\x32\xc0\x41\x9a\xf4\xfb\xcf\xfd\xcb\x9a\xd1\x01\x90\xcd\x1a\x1e\x69\xdf\x53\x3c\x18\x20\xed\xe3\x10\x09\x72\x8e\x58\x2c\xbc\xc5\xc2\x66\xde\xc2\x04\x38\x63\xfd\x44\x46\x9f\xe7\x78\xf2\xca\x37\x1f\x58\xc8\x88\xb3\x3d\xa9\x9c\xa8\x61\x66\xa8\x99\x21\xe7\x7d\xc0\x0c\x38\x6f\x7c\x64\xc0\xd9\xbe\x54\x96\x40\x9f\x4a\xf9\xd9\x79\xc3\xf4\x38\x83\xc3\xf4\x38\xd3\x20\x2e\x7e\x7f\x9d\x86\x27\xa3\xd9\x3d\x39\xa4\xff\x59\x84\x39\x09\xbd\xbe\xbf\x08\xbd\x26\x8b\x64\x39\x6b\xab\xb8\x45\xda\xb7\x1f\x96\x72\x25\x3c\x17\xb0\x17\x81\x17\x70\x57\x41\x5b\xf3\xbd\x90\x14\x62\x9a\x66\x71\x8c\xee\x09\xd1\x73\xa2\xa2\x8c\xa5\x5c\x03\x10\xb8\xbd\x03\x5d\x1e\x81\x18\xf0\x73\x64\x74\xfa\xb4\x41\x76\xdd\x8b\x68\x11\x66\xdc\xab\x45\xb2\x27\x9a\x46\x53\x9a\x00\xd9\xeb\x3d\x09\xb2\x3a\x40\xee\xdc\xeb\x44\x67\x2c\x8d\x54\x95\xb2\x54\x91\xe8\x15\x5a\x9a\x48\x2a\x96\x11\x11\x6a\xf3\xda\x54\xbc\xae\x62\x78\x09\x26\xaf\x42\x30\x0e\x27\x26\x68\x41\x17\xe5\x34\x5c\xe8\xb6\xf0\x5a\x6e\x17\x29\x2d\xb8\x96\x7b\xd8\xc4\x59\x6e\x96\xf3\xf6\x91\x79\x23\x87\xd1\xcb\x70\x23\xdf\xcf\xcb\x7a\x23\x1e\xc8\x48\xbd\x91\xdf\x67\xde\xcd\xdb\x49\x87\x0f\x87\x1b\x0e\x4a\xf3\xca\x9b\x0e\x4a\x3f\x47\xc2\x9f\xe9\xf2\x46\xc2\x9f\x36\x4d\xdd\x36\x3c\x2f\x6a\x07\xf4\x57\xd5\x8e\x68\x77\xb5\x91\xd0\x28\x4e\x51\x11\x08\xed\x5a\xc1\x05\x37\x2a\x24\x95\x7d\x2e\x75\xa9\x2b\xc9\x89\x52\xb8\x75\x3c\xe9\xf6\xd0\x52\x37\x02\xe0\x36\x26\xa8\xe3\xb2\x06\x4c\x50\x54\x50\x91\x25\x57\x5d\x70\xa1\x06\xce\x50\x13\x08\x48\x51\xd4\xe9\x52\x97\xb6\x91\x6c\x75\xc7\x85\x0e\xc3\x9e\xeb\x1a\x38\x61\xf7\x87\x25\xe9\xfe\xfe\x40\x5b\x18\x09\x9c\xb0\xdf\x47\x16\x69\x77\x7f\x93\xae\x15\x7f\x80\xc4\x58\xd1\x59\x85\x6b\xa4\x46\xe9\xd4\x35\x32\x34\x4f\xae\xa4\x1a\xe9\x29\xf0\x18\xbc\xbd\x48\x25\xd7\x0a\xaf\x59\x2f\x2a\x62\x5d\x6a\x44\x32\xac\xce\x9c\x1a\x91\x55\x69\x2c\x44\xe6\x27\x7a\x1d\xe0\xee\xd8\x7c\x2a\xf3\xa2\xf6\xe2\x74\xd9\xba\x14\x98\xec\xa0\x8c\x9a\xe8\xc9\xd6\x07\x89\x39\x92\x9e\x43\x42\x8e\xa4\x01\x47\x31\xfb\xcd\xb6\xd9\xba\x54\x92\x6c\xbb\x61\x65\x85\x78\x97\x76\xa8\xac\xde\x67\x59\x03\x77\xc3\x67\x67\xdd\xd7\xf4\x80\x21\x72\x48\xc8\x16\xf5\xea\xb3\x5c\x9f\x0f\x73\x5e\x26\xbf\x59\x5c\xaa\x4b\x4f\xc9\x76\x21\xd7\xcc\xec\x40\x53\x64\x66\x48\x9d\xf7\x04\x1c\x19\xdb\x6b\xde\xf0\x64\xbc\xd2\x0f\x6a\xe6\xf1\xe8\x17\x98\xf5\xda\xfd\x02\x01\xf3\xbe\x81\xfa\xb1\xa5\x1f\x15\x6a\x2e\x35\x13\x6c\x13\x21\xf3\xf2\x6c\xa6\xae\x74\x6d\xb8\x10\x0d\x2e\xc0\xcf\xb6\xb3\xd7\x4c\xb3\xb0\x51\x59\x58\x7c\xdf\x5d\x20\xa6\xa8\xa9\xa2\x7f\xa9\x4b\x23\xc9\x36\xe5\xd7\xc2\xfb\xa7\xe5\xb2\xab\x4b\x03\xc9\xb6\xfb\xd6\xf2\x40\xa9\x41\xcb\x40\x30\xa2\x3f\x78\x96\xcf\x5f\xb0\x1c\x90\x94\xc6\x5a\x98\x8c\x22\x5b\x73\x45\x94\x77\x70\x44\x21\xef\xed\x7f\xa5\xe2\xd6\x8a\x34\x59\x93\x7e\x7d\xdc\x6a\xea\xb3\x22\x4d\xb6\xba\x8d\x4c\x58\xe9\xfe\xb5\xd2\xf1\x24\xd7\x5f\xad\xc8\x84\xad\x1e\x01\x60\x54\x3f\x47\x66\x96\x2c\x26\x75\xe9\x2d\xd9\xa6\xc2\x5a\x4f\x3c\x77\xfb\xe2\x00\x5a\x9c\xfa\xa4\xdc\xf8\x8d\x1b\x5f\x08\xc8\xf6\x40\xad\x05\x6f\x88\xa2\xae\x6e\xd3\xb9\xa6\xe3\xba\xb6\xc7\xbb\x26\x34\x34\xec\x46\x53\x5c\x5b\x9b\xef\xc5\xf7\x1a\xf3\x7f\xcd\x75\x1a\xa1\xd6\x24\x1b\x17\xcf\x1d\x3e\xbe\x25\xff\x40\x87\x5b\x71\x0f\x8c\x29\xdc\xfc\x06\xe0\x2c\xde\x5b\x28\xd6\x17\xac\xf2\xe1\x6a\x9c\xe2\xc2\x14\x15\x85\x3d\x82\x95\xc6\xda\x99\x32\xec\xbd\x85\x7a\x7d\xc1\x31\x2c\xb5\x3f\x11\xae\x1a\x15\xd5\xaa\x5d\x2c\xa4\x76\xa6\x10\x7b\x37\x2e\x8d\xaa\xb8\x5a\x46\x7d\x2e\x34\xf7\x02\xb3\x46\x9f\xe3\xdf\x6a\xe7\xa5\xaa\xd9\x5d\x4c\x44\xd1\x7a\x4c\xa4\x42\x9b\x28\x07\xe1\x12\xe0\x83\x45\xee\x4c\x23\x83\x60\x98\xcb\x0c\xd4\xd8\x36\x8d\xc0\x89\x12\xdf\x5d\x74\x66\x2d\x6b\x4c\x44\xbd\xc7\xf7\xa0\x3b\x7f\x70\x1f\x27\x7f\x10\x60\xa8\xc5\x17\x5f\xa0\x0f\xd6\x3f\x92\xb5\xaf\xa2\x80\x75\xae\x26\x7e\x06\xc3\x47\xd3\x01\x2f\x66\x77\xc1\xa1\xba\xf4\xa1\x92\xbd\x64\x3b\xa2\x38\xcd\x71\xe1\x19\x89\x4e\xcd\xa9\x70\x8d\x44\x55\xb4\x2c\x15\xbe\x91\x98\xbd\x03\x71\xcd\x4e\x74\x3a\x25\x2e\x48\x2a\x96\x4e\x2b\xbd\x23\xce\x6f\xac\x74\x87\x38\x34\xab\xc2\x1f\x12\xed\x70\xa9\xf0\x87\x44\x7b\x70\xea\xd2\x72\x4a\x7d\xbd\x50\xf8\x82\xa6\x85\xe8\x2b\xdd\xc8\x5f\xea\xd1\xd0\x16\x7a\xa1\x05\xf5\xf2\x7a\xe1\xc4\x0b\xee\x80\xd7\xdd\x99\x8e\x96\x92\x53\x1c\xde\x5c\x97\x92\x53\x1c\x95\x5f\x97\x8e\x53\x1c\xa7\x59\x11\x95\x9f\x54\x6a\xbe\x54\x04\x6c\xa5\xe0\x83\x1d\xf7\x10\xa7\xe0\x53\x77\xa9\x39\xbe\x7d\xa9\xd4\xa5\xe6\x14\x87\xa4\xd7\xa5\xc9\x14\x07\x06\x57\xf8\x31\x92\x7d\xc8\xf5\x44\xea\x7a\xfb\x51\x55\x81\x0a\x1f\x47\xb2\x7f\xb7\x5e\xb8\xb6\xc2\x6b\x8d\x7c\xc6\x64\x8f\x73\x65\x48\x57\x91\xdd\xaa\x22\xa6\xab\xbb\x18\x50\xbd\x98\x2a\x2c\xa4\x2d\xcd\xa3\xbf\xde\x47\xb8\x90\xe6\x0f\x3d\xe3\xd5\x3d\xe2\x6e\x3c\x3c\xc3\xac\x85\x1d\x54\xf0\x30\xbe\x59\xa7\xdb\xa4\x8a\x5c\xc6\x57\xe9\xa6\x8a\x5c\x46\x67\x99\xd5\xc9\x5b\x0a\x44\x33\x93\x41\x0a\x7e\x8e\xa0\x04\x63\x1f\x85\xbb\xc3\xeb\x7d\x9e\xd3\x3e\x33\x27\x8a\xdb\x7b\x39\xe6\x73\x4e\x0b\x02\x68\x1d\xae\xf0\x56\xa9\x74\x38\xc7\x1d\xd7\x7c\xd5\x6c\x3e\x71\xa3\x1a\xab\x99\xc0\xfd\x5c\x57\xa0\x36\x2f\x73\xb1\xc8\xce\xcb\x9d\x9b\x37\xdb\x4d\x57\xdb\xa7\xdd\x36\x86\xc0\x89\x44\x1a\x6a\xec\x39\xd4\xac\x6d\xb0\x25\x2b\x56\xa7\xc1\x27\xa1\x0b\x45\x4a\x63\x36\xa4\xd0\xdc\x50\x55\x4f\xd7\x91\x94\xb6\xd1\x24\x35\xd4\x86\x05\x47\x1c\xa5\x2d\x19\x7e\x38\x3a\xa9\x05\x8a\xbf\x0a\xcd\x6a\x4b\x88\xf7\x8d\x0c\x05\x17\x9b\x65\x87\xd3\xb6\xf0\x08\x1e\x1a\xe1\x89\x77\x92\x2c\xd3\x9e\xe2\x16\xaf\x2e\xe9\xbd\x2b\xee\x63\x32\x21\x30\xe9\x87\x45\x5b\x72\x78\xb6\x88\x9c\x4d\xf1\xb0\x16\xfb\x22\x4c\xbd\xbd\x24\xf2\x21\x47\x57\x8b\x8c\xe8\x15\x4a\x97\x3c\xee\xd4\xb4\x16\x41\xd5\xee\x1b\x95\xc4\x87\xbf\x5e\x5a\x92\x38\x59\x43\x6c\xbe\xf8\x52\x63\xa4\xd1\xeb\xf5\x25\xaa\x0f\xed\xd1\x96\x50\x58\xdc\xc8\x60\x68\x90\x21\x81\x10\xdd\x87\x41\x87\x10\xad\xfb\x67\x4b\x83\xad\xbf\x3b\x4e\xb6\x31\x16\xc8\xd8\x64\x2c\x90\x64\x8b\x96\x79\x33\xa1\x8e\xe0\x06\x11\xba\xda\xfd\xd0\x9e\xeb\x3f\xdc\xa6\x19\x54\xca\x43\x83\x45\xdf\xc1\x3c\x0d\xe9\x92\xce\x5e\x6c\x0c\x07\x7a\x0d\x79\xe0\xb9\xdf\x47\x44\xdb\x6b\x8a\x10\xca\x5e\xdf\x13\x46\xc1\x0c\x81\xd9\x09\xfb\x0d\xf2\xb2\x6e\x51\x2f\x0d\x21\xf9\xae\x3c\xd8\x50\x25\xdb\x21\x0c\xad\xf0\x92\x2d\x13\x35\x2f\x62\xb2\x9d\xb3\xf1\xe2\x40\x55\x0c\x2d\x8d\x77\xec\x3b\xac\xbe\x51\xd6\x35\xdd\xa3\x12\xb5\x53\xf4\x1b\x02\xe9\x6d\xc9\x6c\x90\x64\x5f\x23\x30\x8e\x5e\xb7\x5f\x97\x56\x11\x88\xe1\x9d\x0d\x93\xbc\x4d\x97\x8d\x77\x3b\xca\xa0\xd1\x18\x3e\x54\xfc\x3e\x82\x4f\x8a\x27\x80\xe8\x19\x89\x13\x0d\xd1\x42\x59\x52\x4e\x6b\x88\x35\x91\x02\xd0\x10\x2d\x94\x25\xb1\xb4\x86\x00\xa8\xfa\x93\xeb\xd3\x4a\x43\x59\x6a\x67\xef\x37\x48\xb0\xb6\xd4\xb7\xf6\x78\xc7\xfd\x03\x66\x5f\xdd\x86\x85\x67\xf3\xec\x00\x4d\xf5\xec\x78\x07\xae\x0e\x93\x06\x71\x35\x77\xc3\x8b\xe2\xd2\xce\xef\x6f\x90\x4e\x2d\xb7\x37\x08\xa7\x36\x15\x37\x54\xb9\xe8\xce\x24\x68\x90\x2c\x8b\x53\xc6\x5a\x67\x58\x84\xe6\x84\xbb\x50\x1c\xfe\xda\xfa\xc3\x86\x84\x32\x14\xc6\x70\x30\x6e\x1b\xcf\xc5\xfb\x82\x92\xf1\x3b\xd2\xd3\xdb\xe0\x35\x1a\x6e\x17\x14\x93\xd1\x08\x2c\x7d\xe1\x39\x23\x58\xc7\x51\xc6\x0d\xa9\x00\x0e\x06\x6e\xa8\xff\xec\x08\xe6\x86\xd4\x4a\x87\x21\x37\x96\xc6\x70\x84\x6e\x5b\x42\x67\x75\x80\x70\x63\x69\x0c\x29\x6c\x8d\xb7\x61\x3a\x6b\xb5\xed\x3c\x85\x35\x23\x06\xf3\x48\x40\x68\x3b\x32\xab\xcd\xbf\x10\xca\xe3\xe8\xe5\xc6\x9b\xfd\xda\xeb\x07\xde\xa7\x21\xb5\xa3\xed\x4f\x82\xcd\xa7\x0d\xd9\x70\xbc\x18\xd8\xc1\xab\x65\xcd\x33\x0f\x84\x0b\xf9\xc8\x3b\xe0\x50\xf6\x9c\x0e\xb8\xe5\x0d\xd4\x92\x0d\x5b\xf4\x2a\x1c\xf0\x61\x7b\xeb\x22\x1c\xa6\xe4\xee\x01\x50\xa9\xd4\x84\x70\x20\x7d\xd2\xa4\xc5\x1b\xe7\x2c\x4a\xb4\x03\x91\x08\xc6\xd2\x09\x3f\xbc\xe4\x82\x76\x22\x12\xe2\xf5\x1c\xa5\x58\x3d\x23\x04\xc0\x14\x67\x1f\xb7\x13\x20\x99\x39\x9c\xf0\xcb\xcb\xa4\xd0\x78\x3f\x7a\x35\x92\x58\x2e\xc3\x58\x3c\x09\x82\x47\x24\x96\xdd\x01\xb2\x6e\x4d\x79\xa8\x8e\x11\xfd\xfd\x85\xc8\x01\xa9\x1e\xed\x42\xa0\x80\xbf\xbf\x10\x2a\x51\xfd\x7e\x23\x0e\x05\xc1\x75\x22\xad\x57\x13\x78\x2e\x3e\x36\x7f\x62\x89\xb7\xd7\x29\x82\x68\xff\xea\x83\x6c\xc9\x87\xd1\xc5\x2d\xda\x44\x26\xd3\xeb\x39\x7c\xa2\x26\xbd\x99\xf0\x5c\x03\x4c\xf8\x44\xcd\x82\x70\xf1\x4b\xb7\xa4\x33\x79\xac\x0d\x0f\x80\xac\xc2\xd7\x80\x48\x1c\xf3\x31\x86\xa0\xfe\x6e\x51\x6a\x22\x8d\xd0\xbb\x19\x61\xfd\x16\x87\xdb\x7c\xee\xad\x16\x92\x6f\xa4\x66\xf9\x9c\x42\xc0\x8c\x93\x60\xda\x1d\xd1\x81\xdb\x80\xc8\xdb\x1b\x25\xa0\x5f\xbb\x17\xd1\xfe\x2e\xdb\xd2\xee\x8a\xe7\x1e\x0f\x6e\xe9\xd7\x78\x1d\xcf\xfd\x3e\x64\x43\x13\x11\x02\x72\x74\xb3\x57\x69\x37\xfd\xee\x7e\x4e\x04\x78\x3e\x44\x80\x10\xf4\xe4\x07\xa8\x43\x5c\x04\xdb\xcc\x8f\xfa\x46\x80\xa3\xda\x11\x03\xfe\xa8\x52\x67\xdf\x18\x7b\x3f\xdc\x1b\xd0\x21\xe6\xd6\x37\x78\xe9\x83\xdb\xf0\xd2\x4b\x0a\xec\x10\x95\xed\xf6\xea\x1b\xd1\x51\xd5\x46\xf8\x8e\x76\x6d\xdf\x80\x0e\x81\x8b\x5b\x6c\x7d\xa3\x52\xe9\x08\xdf\xb1\x3a\xd7\x37\xa0\xe3\x05\x3d\xe9\x41\xef\x07\x2e\xbf\xe6\x13\x22\x37\xb1\x26\x80\xfb\xf8\x9c\x63\xd2\x11\x7d\x33\x2c\xe8\x74\x5c\x23\xe3\x74\xfc\xbe\x44\xe7\x9e\x45\xb1\x3d\x40\x78\x7f\x8d\xb0\x84\x77\xbb\xbe\x7a\x80\x3f\x59\x5b\xa4\xb3\xda\x88\x03\x3f\xfa\x12\x9c\x93\x3d\x4d\x3d\x06\xb4\x35\x00\xcd\xe1\xd6\x60\x7a\x4c\xe8\x51\x38\x8b\x70\x28\xbf\x3a\x24\x89\x0a\x87\xf1\xd9\x74\x82\x39\x36\xbc\x90\xd5\xee\x68\xfb\x39\x41\xf6\x80\x70\xd0\xbe\xbe\x27\xc8\x1e\x00\x31\x03\x26\x8a\x08\x90\xa3\x27\x08\x0f\xb4\x38\x6d\x4f\x64\x74\x42\x51\x02\x40\x26\xd1\x44\x80\xb4\xa8\x09\x44\xe6\xfe\x12\x3c\xce\xda\xc3\xb8\xd9\xb8\x67\x13\x59\x02\x3c\x26\x8a\x04\x78\xbc\xe6\x89\xa6\x3c\x09\xab\x3d\x61\x4d\x5f\x6d\xb8\x2f\x8d\xc1\x84\xa0\x07\x53\x5d\xe6\x9d\xc6\xd2\x40\x3a\xef\x89\x76\xb6\x6c\x87\xb8\x5e\x36\x89\x25\x3d\x13\xc7\xc2\x11\x2a\xcf\x39\x9f\xa2\x67\xf8\x17\x75\xde\xf5\x8c\x0a\xab\x3a\x60\x7b\x86\x7f\x51\x07\x68\xcf\x9c\xa2\x9f\xa3\x82\x8e\xd7\x74\xc9\xef\xc3\xb6\xc8\x5e\xe8\x5e\x74\x1b\x77\xdc\x55\xb7\x51\xe3\xc1\x1b\xb3\x20\x75\xdf\x00\x95\x82\xfe\xdd\x86\x7b\x59\x87\x5d\x2f\xf0\x37\x8a\xef\xf6\x42\xf8\xdc\x1f\xe1\x13\x3e\x96\xf4\x3f\x9c\x7f\xd2\x71\x8b\x4d\x6f\xaf\x0e\x09\xa0\x00\x2e\x70\x21\x17\x7f\xc0\x80\x2b\xb3\x8e\x4a\x88\xf4\x42\x05\x44\xde\x98\x95\x5a\xb4\x9f\x13\x22\x61\xbc\xd2\x41\xee\xf6\xa0\x5d\xc0\x3f\x60\x49\x74\x3e\xf7\xa7\xcc\xb4\xa9\xa0\xa2\xfc\x48\x75\x1b\x6b\x60\xd6\x81\xaa\x75\xb6\x8e\x74\xde\x54\x63\x77\x4e\x6f\x8c\x47\x55\xe8\x5f\x6f\xf0\x37\x0e\x7f\x51\xa0\xd8\xbb\x47\x14\x50\xf5\x4e\x81\xd1\x7a\x33\x0c\x28\x90\xe2\x20\xb4\xbe\x54\x82\xe1\xd3\xaa\x37\x78\xf3\x24\x41\xf4\xa5\x12\x64\x87\x31\xf4\xa5\x12\xbc\xea\x40\xf5\x06\xf7\xa4\x8c\xcf\x1d\x65\xf0\xec\x2b\xea\x1d\xfe\x53\xd9\xa2\x7b\x87\x77\x72\xfc\xc8\x98\xd6\x97\xf6\x90\x75\xf1\x61\xe9\x9d\xc0\x0a\x3b\x1d\xc0\x76\xb7\xe1\xf4\x1b\x7e\x1f\xa5\xc0\x86\x07\xa7\x37\xd9\xcf\x77\xf4\xa7\xe5\xe9\xa8\x36\x21\xd3\x7a\xef\x13\x6d\x3f\xbf\x81\x2c\x3d\x1f\x28\x01\x20\x2f\x54\x1f\x00\xd6\x6c\x6d\xf0\xf2\x5d\x63\x6b\x10\x20\xbf\x90\xd1\xa1\x56\x13\x89\x03\x6f\x92\x1c\x80\x40\xce\xd7\x3e\x68\x99\x97\x21\xa4\x3f\x17\x32\x9a\x20\x06\xaa\x9b\x19\xe1\x83\x97\x5b\xbd\xc6\x80\x23\xec\xd5\x25\xfc\x7f\x06\x02\xda\xc8\x66\x9d\xb7\x43\x1d\xd9\xac\x26\x76\xa8\x1f\x9b\xb5\xe4\xbe\x17\xfe\xa0\x3e\x77\x38\x36\x8d\x48\x16\xf7\x7b\x6d\xa5\x9d\xb5\x55\xdd\x03\xfc\x9a\x86\x82\x99\xc8\x8e\x3e\xec\x2c\x18\xf3\x3a\xf3\x58\x31\xc6\xba\x3d\x2e\x9e\xcf\x76\xa5\xf5\x9d\xb7\x76\x19\xd9\x8c\x02\x72\xa8\x72\x3f\x1e\xc0\x34\xcd\x03\x0e\x3e\xd3\x13\x0c\xe0\x3d\x9b\x00\x0e\x16\xa6\x37\x93\x3c\x98\x73\x65\xe1\x00\x6a\x4c\xde\xcc\x56\x0f\xda\xd1\x92\x47\x7d\x9c\x5f\x7e\x63\xc2\x11\xe5\x2e\x6e\x7e\x21\x64\x9c\xf0\x75\x35\xb7\xe9\xeb\x92\x29\xa6\x9f\x70\xe0\x49\x93\xe9\x27\x1d\x78\x8a\x9b\xef\x4b\x73\xf1\x15\x4b\xa5\x9f\x4c\x1d\xf3\x01\x7d\x32\x39\xce\x07\x1e\xa3\xf9\xbb\x2c\x15\xfd\x84\x83\xc7\xdc\xf6\x7c\x3c\x57\x7a\xe1\xe2\xcd\xdb\xa6\x0a\x58\xbe\x5d\xc4\xae\x5f\x8f\xe7\x4a\x5d\x5c\x09\x2f\x08\xbb\x17\x1d\x57\x46\xf7\x45\xc7\x95\xc0\xb8\xe8\xb8\xf2\x06\xbb\x70\x39\xb1\xe5\x80\x6b\xa0\xed\x29\xd0\xd3\x62\x06\x7b\xd1\xd3\xe2\x83\xfb\x3a\x69\x77\x13\xf6\x2f\x7a\x5a\x2c\x7b\x30\xdf\xd9\x71\xa6\x1d\xe9\xcd\xd9\x60\xcc\xc7\x8f\x22\x40\x27\xfd\x28\x02\x03\xb7\xe4\xa7\xe4\x15\x9f\x9d\x3f\xb8\x0b\x5c\xa8\xeb\x93\x69\x1e\xdf\x5f\xd5\xcb\x07\x9d\xc7\x84\x3c\x69\x89\x53\x1b\x16\xf1\xd7\x7d\x0c\xfd\x66\x11\x45\xf7\x77\x27\x2a\x86\x02\x0a\x17\x5c\xbe\xa4\x70\xd8\xc0\xab\xa3\xb1\x3b\xe2\x68\x6c\x65\xef\x37\xce\x01\x4b\x17\x4b\xcb\x18\x2f\xa5\xe2\x7e\x76\xdb\x07\xc6\xb1\xd1\x12\xa4\x9d\x31\x50\x31\xd0\x5e\xe8\xb1\xb1\x2a\xa2\x7c\x0f\x83\x35\x04\xad\x5b\x8e\xa5\x3a\x54\xd7\x5b\x1b\xb8\xa9\xfc\x75\x13\xc6\x58\xba\x41\xc9\xee\x00\xb9\x7c\xd5\x6d\xd8\x59\x82\x67\x80\x40\x7e\x79\x86\x06\x03\xf9\x5b\xfd\xc9\x59\x34\x02\x6f\x27\x72\x6f\x50\x1c\xa2\x85\xce\xb1\x14\x87\xe2\x22\x18\x03\xa5\x75\xe4\x39\x19\x61\xc9\xa8\xc1\x6f\xc3\xa9\x93\xdd\xa6\x2d\x4e\xb0\xc1\xdc\x3e\x7c\xf8\x0d\xaa\x09\x0e\x78\x1f\x91\xaa\xb9\xc0\x5d\x6a\x41\x7e\x4d\x70\x69\x01\xd9\x65\x2c\x47\xc4\xe9\xf9\xfa\x1e\x17\xb5\x09\xdb\x4b\xc6\xd7\x6d\x4c\x65\x20\xde\x7f\x73\xe7\x28\x6d\xe0\x97\x79\x43\xb1\xc7\x42\x65\x03\x4d\x1e\xf2\xbe\x24\xb5\x11\x59\xdb\x59\xed\x14\xd6\x63\x0d\x95\x68\xde\x92\x99\x71\x24\x92\x86\x51\x89\xc2\x36\x0e\x55\x1c\x8f\xfd\x5d\x3d\xb0\x5a\xb4\x69\x0d\xd2\xb7\x55\xac\x91\x69\x56\xd5\xfc\x10\x6d\x62\x7d\x66\xa0\x1c\x4d\x94\x13\x71\x3c\xf5\x66\x04\x3d\x6c\xdf\x8e\xa1\x1a\x85\x3b\x4e\xfd\x15\x16\x6e\xd0\x7c\x0a\xeb\x53\x6b\xfc\xc2\xf9\x68\x2d\x51\xf5\xd9\x31\x53\x03\x17\xb2\x84\x57\x7f\x54\x6a\xd5\xae\xd4\x08\xd5\x7f\x45\xc4\xae\x77\x46\xa5\x0a\xef\xf7\x0b\xfd\x11\x1a\xb0\x42\x38\x6f\xfe\x00\x62\xa1\x57\x08\x11\x1c\xdb\xeb\x7d\x8a\x85\x6e\xa3\xcc\x9d\xc4\xc6\x51\x79\x66\xe9\x7b\xc4\x67\x44\xb3\xea\xc1\xb4\xd8\x17\x48\x10\x6d\x93\xae\xf1\x2b\xa3\xf1\xe6\x76\x35\xf3\xa2\x09\x61\xb8\xd1\xa3\xe5\x25\x68\xd8\x3e\x6e\xe2\x4e\x49\x63\x04\x95\x01\x65\xd7\x1a\x4b\xec\x1d\xc5\x4f\x59\xed\x4e\xe0\x34\xd2\x93\xe8\x65\x49\xb9\xe3\x35\x79\xd4\x03\xdd\xdc\x46\xed\x65\x53\x3f\xac\xde\x56\xc8\x07\x84\x5c\x1d\x8d\x03\x32\x6e\xf1\xdb\x4b\xed\x90\xbd\x7a\xf4\x25\xf3\xc9\x1b\x39\x70\x9d\xa2\x95\xfd\x81\xd8\x8b\xe2\x78\x83\x01\x0b\xb9\xeb\x6f\x0c\x18\xc0\x5d\x29\x67\xf0\x36\x70\xef\xe3\xce\xdb\xd3\x85\xe7\xc1\xbd\xa1\x85\x80\x50\xea\xaa\x95\x83\x81\x17\x3a\xad\xc6\x60\x38\x83\x89\x17\x42\xa9\x2b\x65\x0d\xd8\xc7\x9d\x3a\x34\x06\x6f\xa2\xd7\x84\x20\xa3\x06\x29\xba\x03\x22\x6a\x89\xdd\x33\x02\x04\x9e\x31\x62\x2e\xc2\x6b\xc6\x88\x12\xb0\x92\x33\x76\x82\xa0\xf5\xe0\xad\xe1\x1e\x61\xa7\xab\x49\x20\xed\x04\xc9\xdf\x43\xb0\x30\xff\x81\xbc\xea\xa4\xbc\xb1\xf3\xa0\x11\x84\x3b\x20\x7c\x7d\x0f\x71\xc9\x28\x84\xec\x59\xda\xab\x43\xda\xa2\xfd\x02\xfc\x24\xf1\x47\xc1\x6c\x83\x97\x33\xba\x14\xf7\x40\x69\x6a\x5b\xc2\x07\x2e\x6b\x74\xed\xd8\x01\xe3\xbc\xad\x2b\xe3\x40\x4a\xb9\x74\xae\x01\xd3\x7c\x96\xa5\x60\x20\xaf\xd5\x65\x49\xc7\xf1\x78\xc1\x04\xef\xc1\x52\xdb\xa6\xb9\x83\xfc\xd1\x23\x20\xc9\xdc\xec\x83\x52\xae\x39\x38\x8b\x2f\x7a\xb3\x1e\x70\x24\x49\xdc\x18\x8f\xad\xde\x33\xbc\x79\xbd\xa4\x5e\x40\x75\x46\x7b\x81\x06\x6e\x77\x74\xf9\xc7\x81\x64\x55\x17\xf8\x18\xb4\xd5\xdb\xac\x38\x10\x07\x62\x83\xcd\x80\x08\x6c\xc1\x6f\xe0\x7a\xc7\xdc\xdd\x21\x1c\x7f\x52\x05\x07\x4b\x61\xbf\x3b\x84\xe7\x2f\xfa\x83\x83\xda\x83\xda\x04\x59\x20\x31\xb9\x35\x1a\x02\xe4\xd5\x1b\xc7\xc8\x6d\xcd\x92\xf2\x07\x8b\xff\xf8\x04\x45\xed\x1f\x5b\x0d\x07\xa4\x65\x9b\xd4\xc6\xc5\x45\xd7\x78\x17\x8f\x14\x2d\x2a\x52\x63\x5d\x9e\x72\x30\x7e\xdd\x44\x74\x3d\x00\xba\x03\xe4\x67\x4b\xd9\x19\xb8\xde\xd1\x86\xd3\x71\x31\x7d\xd7\x1d\x52\x9a\xf2\x84\x26\xda\xea\x0f\x45\xb1\x9d\x25\x3f\x10\x4a\xf2\x12\x78\xe6\x93\x93\xa8\x36\x44\x50\x23\x74\x52\xfc\x13\xc2\xe1\x19\xb0\xe5\x60\x4c\x02\xe4\xf7\xe1\x86\xf3\x2e\x98\x84\x47\xf3\x47\xa4\x49\xb1\xd8\x3c\x26\x32\x59\x5f\x03\x00\x20\xf3\xad\x49\x80\xfc\x1c\x6c\xa8\x7a\xc9\x20\x67\x17\xdf\xae\x30\x6e\x82\xa8\x29\x2c\xb9\xbb\xda\x57\x31\x6e\x88\x01\x5e\x43\x4a\xdd\xe6\x33\xb8\x56\xbe\x9b\x68\x59\xb5\xdb\x34\x84\x48\x16\xbb\x2a\x06\xee\x8a\x29\x8e\x73\x18\x37\x17\xd5\x82\x0f\x8a\x51\xda\xba\x3d\x9e\xf8\x78\x2d\x0a\xca\x51\xda\xf6\x3f\x6e\xe0\xc0\xdb\xe4\x06\x0e\x5e\xfd\x31\xbd\xf8\xd3\xde\x71\xdb\xbc\x8f\xe9\x7d\x63\x94\xd9\xa6\x76\xe4\xe5\xdd\x45\x3f\x70\xd5\xdd\x86\x79\x7f\xb8\x43\x48\x5e\xaf\xe7\x74\x03\x0e\x8f\x80\x55\x13\x04\x3b\xd2\x73\x8b\x53\xb8\xf7\x0d\x6e\x3f\xd1\xd5\xce\x1b\x27\x45\xb7\x3b\xe4\xf4\xdc\x65\x48\xdd\x03\xfc\x7e\x1e\x12\x57\x4c\x7a\x55\xf7\x40\x4f\xe6\x50\x1b\x6e\x3f\x11\xde\xce\x2b\x26\xb5\xb3\xf6\x40\xcf\x66\x57\x1b\x26\x19\xaf\xd2\x1e\xe0\x16\x7c\x75\x40\x42\xf4\x80\xd0\x4b\xba\xdf\x87\x5e\x62\x88\x20\xe8\xeb\xbe\xf1\xb2\x47\x56\x55\x15\xef\xd9\x79\xa9\x64\xff\x91\x51\x6d\x47\x69\xcc\xea\x60\xa4\x9d\x57\x50\x7a\x0d\x51\x48\xa8\x74\x1d\x7f\x3b\xef\x98\xd4\x4e\xdc\x11\x3b\x5f\x9c\xb4\xbe\x23\x17\xb8\x54\xe3\x3c\xf2\x8e\x22\xbf\xc1\x5b\x21\x0d\x02\x92\x73\x9d\xb5\xbe\x27\x78\x89\xb4\x13\x76\x1a\xf0\x4d\x46\x09\x5e\xa2\xe4\x36\xbc\x82\x12\xaa\x76\xdc\x11\x59\x5f\xfd\x5d\xb4\xb6\xbb\x43\xb8\x81\x74\xe0\xec\x19\xca\x93\x3b\x64\x32\xae\xb8\xd7\x9e\xe1\x05\xac\x6e\xc3\x0b\xe8\x09\xe1\xca\x19\x97\x32\xd8\x71\x6b\x7d\x76\x08\xd7\x9e\x09\x91\x90\x96\xe1\xf7\x2a\xfe\x00\x10\x29\xa4\x68\xc7\x2d\x93\xde\xc9\x3b\xd2\x6f\xab\x01\xc8\x50\x09\x8a\xfb\x87\x9f\x4b\x12\xef\x8e\xf4\x5a\x67\x7c\xef\x48\xaf\xed\xb2\x43\xed\x48\xaf\xed\x12\x23\xf7\x42\x80\x34\x1e\x83\xd9\x5d\xec\x6b\x2f\x5c\x22\xbf\x00\xbf\xa6\xf7\x1d\x6e\x99\xec\x92\x43\xf7\xc2\x25\x12\xc6\x50\xfc\xbc\xb8\xb2\xc0\x0e\x25\xa7\xbe\x66\x08\x4f\x5e\xf6\x0c\x01\x61\xf5\x80\x2c\x10\xeb\xef\xb1\x84\xc9\x03\xc2\x7b\x6e\x0c\xb3\xe6\xa6\x69\x08\xc1\x42\xa5\x7a\xe3\x53\x4b\x4a\x6e\x33\xe6\xca\x44\x50\xb9\xa8\x42\x01\x12\x78\xbb\xd7\xa0\x72\x4d\xfd\x9c\x15\x70\xdd\xee\xbc\xca\xdc\x1d\x92\x4c\x3d\x22\x51\x20\x10\x90\xe0\x9b\x47\xf0\x0f\xc0\x81\xb7\x1e\x2a\xaa\xf7\xd7\x94\x27\xcf\x24\x01\x8d\x8b\x29\xbb\x91\xdc\x1e\xa0\x85\x65\x94\x50\xb7\xee\xb2\x37\xb8\x9d\xbc\x0a\xbc\xd8\xc6\x71\xd7\x7b\xdb\xf1\x82\xdb\x70\x85\x79\xe7\x34\xf8\xfa\x8c\x14\xe6\x07\x9b\x10\x11\x34\x94\x7b\x75\x07\x37\x66\xa0\x29\xf7\x87\x7d\x69\x4a\x9d\x2e\x58\x7f\x81\xcb\x2a\x5d\xe6\x69\xef\x48\x38\x35\x25\x20\x80\xbd\x58\x60\xdf\x11\x56\x54\x9d\xb4\xb4\x77\x00\x61\x6a\xef\x04\x42\x93\x66\xce\xaf\xf9\x47\x27\x7b\x10\xde\x91\xe3\xeb\x38\xaf\x1d\x96\x7e\xeb\x34\x3b\x6e\xdf\xa9\xc3\x53\x5c\x5a\x55\xb2\xf7\x6d\x47\x8e\xaf\x03\xbd\x76\x5c\x58\xe9\x22\x43\x3b\x73\x7c\x4d\x6a\x83\xd5\x3b\x8d\xd6\x41\x0e\xa8\x75\x1a\xbc\x4b\xc0\x0c\x04\x59\xbf\x76\x15\xec\xe3\xc0\x0c\x04\xc2\x20\x88\x42\xc9\xe0\x3a\xf9\x7d\xf8\x64\x4d\x5a\x03\x20\x9b\x36\x59\x91\xd4\x05\x68\x76\xf8\x01\x8a\x43\x75\x77\xe4\x09\xe7\xf4\x23\xfb\xd9\xbe\xf3\x46\x79\xcf\x6f\x27\x06\xdc\x86\x0f\xd7\xdb\x19\x59\xc3\xf6\x95\xed\x3b\x7c\xb6\x5e\x22\xb8\x08\x86\x4b\xa9\xec\x2c\x56\xfa\xda\x5d\x3b\x29\xd5\x3d\x00\x62\x73\xac\x9d\x10\xeb\x39\x6f\x08\x32\x03\x39\xe8\x9d\xd3\x00\xc8\x12\x7e\xc1\x8f\x2c\x61\x47\x01\xef\xb8\x63\xd3\x9a\xf5\x7e\xc0\x9f\x28\xf1\x6f\xc7\x1d\x9b\x56\x23\xf7\x03\xb7\x94\x78\xa7\xe1\x8e\x4d\xc7\x5c\xed\x07\x3c\xa6\xc6\x10\xee\xdc\x74\x84\xe5\x7e\xc0\x63\x6a\x9a\x3a\xe0\x11\xf6\xbe\x3a\xe0\x7d\x6c\x7e\x1f\x0e\x53\x73\x27\x64\x1c\x3b\x8a\x75\x3f\x09\xbf\xde\x3f\xe1\x21\x96\xfc\xbb\x9f\x80\xdf\xbc\x87\x17\x10\x59\xa9\xda\x91\x71\xec\x88\xac\xfd\x24\xc0\x6e\xf3\x5a\x16\x4d\x98\x19\xc8\x5e\x00\x66\x20\x37\x3f\x07\xc0\x26\x51\x24\x19\x3b\xa4\x75\x3f\x09\xb0\xfb\x87\x87\xd8\x7b\x08\xf1\x56\xc5\xfe\x9b\xfd\x64\xfc\xa2\x1c\xb2\x3b\xb4\xae\x61\xc3\xd7\xce\xeb\x86\x9c\xd3\xb0\x23\x71\xd8\xf1\x26\xfb\x85\xc8\x6a\x49\xd8\xfb\xd5\x60\x39\x13\x52\x2e\x44\x5a\x4b\xa2\xde\x91\x36\xdc\x5f\xef\x2f\x98\x1c\xf3\xb5\x23\x6d\xd8\x5a\xc7\xbe\xd4\xae\xe1\x70\x9e\x1d\xe1\xfc\xfd\xd5\x3f\x0c\xef\xc1\xf3\x81\x4f\x52\x12\xfd\x8e\x80\x7e\xab\x65\xfb\x52\xc3\xb2\x13\xa7\x76\x64\x11\x5b\x2d\xdb\x27\x5c\x92\xaf\xef\x33\x79\xab\x06\x98\x44\x80\x16\x61\x02\x01\x56\x01\x70\x25\xa7\x55\x88\x7d\xd2\xb4\xe8\xef\x01\xb0\xd9\xff\x24\xc0\x1e\x10\x00\xbf\xfa\x23\xc0\xee\x8f\x9e\x06\x01\xc0\xac\x63\x5b\xcc\x76\x78\x3b\xb2\xbd\x40\x3b\x2e\xe5\xb4\xf5\x75\x47\xc9\xff\xcd\xe1\x20\x3b\x2f\xe5\xb4\x8e\xc1\x4b\x39\x6d\x9f\xdd\x51\xa1\x75\xcb\xaf\x2e\x3a\x7f\xf0\x2c\x06\x7f\x10\x98\x4f\x56\x81\xc5\x17\xde\xdb\xe9\x23\x89\xd7\x74\x3a\x6e\x68\x47\xa0\x56\xb1\xab\x76\x7f\x7c\x28\xa2\x8d\x63\xa3\x83\x52\x8b\x7f\x40\xbd\xda\xac\xf5\x1f\xbc\x97\xd3\x96\x95\x63\xa3\x2b\x56\xcb\x71\x6c\x04\x25\xba\xd3\x8e\x79\xb9\x4f\xba\x5e\xb3\xda\x9c\x77\x55\x1b\x0e\x65\xb9\xbb\x8e\xed\xa9\xe5\xed\x39\x70\xda\x22\xa1\x23\x30\x59\x2f\xfb\x07\x96\x2d\xd1\xf1\x7b\x3c\x37\x77\x8a\xb5\x1d\x81\xa5\xf0\xb3\xdf\x80\x05\x7b\x18\x8e\x40\x9f\xa6\x4e\xcc\xe3\xb9\xaf\xf3\x67\xc7\xcf\x11\x1e\x07\xa7\x66\xfd\xdc\xe6\x29\x89\xfe\x78\x32\x20\x44\xf8\x47\xc0\xbd\x60\x62\x9f\x47\x60\x92\x62\x76\x17\x37\xeb\xe5\x6b\x4a\xf1\x01\x5c\x9f\x44\x96\x46\x16\xcb\x3f\x90\xb8\x1c\xec\x6e\x3c\x96\x36\x56\x7c\xe5\xce\xc1\xfb\x3e\x5d\xf6\xe8\xe0\x7d\x9f\xae\x2a\x73\x40\x3d\x0b\x76\xd5\x1d\x91\xce\xdc\xec\x1f\x70\x01\x68\x75\x17\x07\xb7\xb4\xa7\x75\xb2\x0b\x4f\xfc\xa2\x63\xd5\xf3\x9c\x7c\x43\xb0\xa2\xba\x6b\x70\x7e\xc2\x91\x98\xd0\xa7\x2f\xe0\xc4\x09\x76\x93\x1e\xc8\x7e\xb6\xcf\xe4\x48\xf4\xd5\xba\x83\x27\x17\x4f\x3f\x2c\x95\xac\x54\xa3\x17\x79\xc7\xd9\x65\x7e\x8f\xa5\x83\x95\x2a\x91\xe8\xa0\x97\xc7\xd7\x7e\x1d\xf9\x49\x58\xf3\x1b\xb0\x21\xb9\xd8\xcc\x91\x9f\xab\x73\x84\x4d\x24\x22\x27\xbb\xd9\x0e\xa4\x4d\x64\x57\x92\x38\x32\x6f\x2a\x4d\xfe\x61\x32\x83\x4b\x6b\x98\x79\xaa\x88\x9f\x1c\x70\xff\xb8\x87\xa5\x5a\x35\xef\xea\xa5\x58\x99\xa1\x1f\x4b\xaf\xaa\x96\xe3\x0e\xc4\x3d\xb9\xe6\xcf\x51\x68\xef\xf7\xfb\x18\xcd\xd3\x61\x0e\x84\xb7\x23\xb4\x1a\x4b\x9a\x07\x73\x22\x74\xc8\x1e\xac\xb1\x2a\xbb\xdf\x81\x1c\x89\xd7\x5d\xf6\xc7\xe7\x5a\x28\x8d\x58\x19\x74\xe2\x17\x60\xcf\x18\x1e\x01\x61\xce\xaf\x1e\x99\x39\x5f\x3d\x25\x48\xd7\x32\x2f\x1f\x0d\xca\xb7\x11\xd4\x10\xe0\x18\xfc\x9c\xca\xb7\x06\x68\x09\xcf\xdd\x7e\xdc\x7b\xc2\x11\xa3\xa0\xa2\x5f\xa0\x34\x6d\x24\x2e\x2d\x68\xf4\xd7\x0b\x88\x3f\x91\xe8\x76\x34\x6e\x19\x81\x88\x54\xde\xe0\xe2\x51\x07\x53\x79\x6b\xf1\x1b\x17\x88\x51\x48\x5a\x5a\x4e\xb1\x39\xf3\x40\x22\xaf\x1f\xa3\x6c\xea\x8b\x33\xf4\xe7\xba\x49\xf5\x07\x9d\xc7\x5c\xba\x23\x25\xc9\x9b\xa1\xaf\x53\xd8\x18\x41\x24\x93\x11\x8a\xa4\x09\x17\xf9\x3b\x3a\x69\xc8\xaf\xc3\x47\x64\xde\xd9\x19\xbc\xa1\x5d\x80\x9c\x89\x6e\x0d\xec\xc0\x7d\x0a\x0e\x95\x39\x06\x28\x5a\x47\xd5\x81\x9c\x89\x2c\x9b\xd1\x01\xf5\xa5\x0f\x23\x70\x3c\x35\xce\xd5\x86\x6a\xec\xbd\x4c\x75\xc6\xcc\x16\x4e\x22\x6b\x9d\xc7\x80\x66\x6c\xc6\x89\x24\x0a\x6b\x2b\x07\x7c\x48\xb5\x7a\x40\xe6\x48\xf8\xd8\x62\x8e\x84\x89\x74\xa7\x7d\x43\x03\xc0\x07\xe4\x40\xb9\x83\xe5\x4e\x7d\x0c\xee\xb4\xfa\x69\x02\x3b\xb2\x40\x3c\x41\x46\x28\xb5\x9a\x7e\x74\xfc\xe0\x72\xd2\x28\x2b\xe6\xb1\x23\x99\xc1\xf8\xdb\x51\xd6\xd1\xfc\xf7\x80\xc9\xcf\xb3\x3d\x60\xe1\x33\x74\x07\x32\x01\x7c\x28\x2f\x55\x23\x46\x9f\x1a\x07\x8a\x26\x1a\x3a\xb8\x7c\x86\x1d\xbe\xc7\xd2\x35\xa2\xef\x19\x3a\x96\xae\x11\xa3\xb9\xf7\x81\x3c\x00\xd3\xeb\x09\x3b\x43\x75\x1b\xe6\x25\x13\x0c\x92\x2b\x9c\xe9\x7b\x9c\x4f\x1d\x32\xff\x80\x44\x00\x53\xd4\x89\x10\x5e\x93\x24\x2e\x2f\x7d\x71\xff\x13\x61\xf3\xe6\x4a\x27\x34\x7a\x93\xfc\x09\x8d\xde\x07\x27\x74\x01\x87\x97\x1e\x27\xd4\x5d\x1f\x82\x27\x94\x3f\xcf\xe7\x82\x4b\x5d\xf2\xdb\x71\xc1\xa5\xee\x1d\x76\x51\xa1\xf7\xfb\xe4\x41\x9a\x1f\xae\x21\x75\x2e\xd5\x71\x15\x32\x08\xbf\x00\xe5\xc7\x00\xb2\xc2\x90\x0b\x04\x1d\xd7\x93\x77\xaa\x45\xbf\x10\x5b\x69\x16\xb2\x44\xfb\xec\xd8\xb2\x83\xa2\xbd\x9f\x53\xb4\xf7\x89\x3a\x11\x00\x62\xae\x88\xcb\xf7\xed\x8e\x38\x26\x02\x42\x7c\x72\x4c\xa8\x2e\xaf\xe7\x54\x5d\x34\x1f\x48\xf2\x0e\x8f\x3b\x70\xdb\x82\xf3\xcd\x8e\x25\xc9\x67\x07\x0a\x1e\x4b\x92\xcf\x8e\x34\x3c\x96\xe4\x9e\x1d\xb2\x77\x30\x6e\xc9\x57\x6d\x1d\xb8\xbc\xcb\x61\x14\xc7\x4d\xe5\xcb\x8b\x7a\x33\x93\xde\x2f\x20\x01\xdd\x6c\xfd\x86\x17\x4f\x13\x44\x75\x20\x2f\xf1\xcd\x88\x19\x1d\xf6\xe7\xe3\xad\xe8\x6a\xc3\x2a\xad\x83\xed\xdc\x32\x36\x41\x52\x9b\x6b\x2a\xa2\x3b\x51\x7b\xd4\xe3\x9f\xcc\xf3\x15\x97\x3f\x99\xe7\x9b\x3d\x00\x2c\x10\xda\x35\xe7\x86\x28\xaa\xe4\x01\x10\x46\xd1\xdd\x1f\x8b\x6f\x7f\x9a\xbc\xf5\x34\xba\xbd\x36\x9d\xd4\x98\x33\xe0\x8e\x1c\x8f\x16\x1e\xf4\x69\xb8\x40\x53\x7f\xf5\x1b\x0c\x36\xd0\x7c\x71\x6d\xea\xeb\x7d\x30\x61\x09\xe1\x67\x78\x2a\xf8\xfa\x7b\xda\xf6\xba\x3b\x80\x09\x41\x6c\xe2\x8c\x8c\x83\xd7\xc9\x73\xe2\xa2\x2e\xed\xfa\x93\x85\x49\x6d\xe6\x3a\x23\x64\x23\xad\x40\xe4\x75\x64\x7e\x8c\xd8\x02\xb1\x95\x93\x97\x16\xbc\xc6\xe3\x41\xa7\xf6\x92\x4a\xbb\x33\x18\x4f\x5c\xca\xe5\x00\xeb\x13\x89\xbf\x0e\xa6\x38\x13\x2a\x5f\x68\xd7\x9f\x09\x04\xa5\xe1\x70\xe1\x56\x75\x73\x5f\x93\xf5\xcb\xb8\x91\xdc\xab\xbf\x24\xda\xfe\x1a\xeb\x91\xa1\xd5\x7e\x22\x26\x3f\x6d\xdc\x87\x9a\x75\x26\x9c\xa8\xef\x9f\x4d\x8d\x10\x4d\x73\xfe\x51\x2e\xe8\xc9\xf2\x9d\xb5\xb9\x37\xde\xf8\x28\x89\xe2\xc4\x75\x00\x0e\x5e\x3e\x91\xff\x6b\x17\xcc\x09\x39\xd7\xb1\xc8\x67\xd9\xb0\x19\xf4\xbc\x04\xb4\xb5\x94\x85\x1c\x5e\xec\xe6\x84\x98\x1b\x87\x5f\xe0\x99\x24\xec\xc1\x81\x10\x75\x22\x9f\x05\x7e\xb4\xd7\xfb\x30\x96\x7b\xed\x50\xfa\xa6\x34\x49\xca\x67\x85\xd8\x28\x0b\xe0\x59\xc9\xef\xd4\x41\x25\xbf\xd3\x8c\xeb\xa3\xfa\x6a\xc4\x25\xd9\x16\xdf\x6f\x78\x2e\xc1\xb5\x58\xf2\x3d\xeb\x53\xbc\xc1\x1f\x20\xcd\xdc\x38\xc0\xbd\x59\x92\x53\x4f\x66\xf3\xea\x29\x22\x9a\x5c\xa0\xe4\x44\xa9\x7f\x17\x1b\x39\x51\xba\x7f\x38\x2c\xf7\x44\x94\x92\x01\x66\x54\x92\xf7\x37\xc3\x90\x3c\x5c\x27\x3b\x92\x7d\xec\xec\x88\x5b\x29\x7e\x81\xbb\x45\x08\xeb\x48\x09\xf7\x84\x70\x6b\x96\x0b\x6d\x9d\x1d\x29\xe1\x9e\x20\xc5\x46\xe3\x07\xa5\xf5\x5d\x8c\xfa\x7c\x42\x8b\xc4\x0e\x28\x25\x4a\x86\x3d\x21\x25\xba\xda\xf6\x89\x50\x22\xfb\x09\x4f\x48\x8d\xae\xa4\x7c\x42\x08\xec\xd6\x54\x4f\xde\xaa\xe5\xc0\x9a\x73\x30\x09\xa4\x79\xc8\x35\x25\x5f\x6c\x76\xb2\x5e\x8b\x8b\x8c\x9f\xe3\xc6\x0b\x6a\x23\x76\xc8\xc5\x57\x4e\x58\xb1\xed\x59\x3c\x11\x3b\x54\xcc\xf3\x97\xdc\x58\x8b\xb7\xc1\xce\x5d\x2a\x9c\x20\xb7\xd6\x09\xcc\x27\x62\x87\x8a\x39\x16\x62\x87\x8a\xa9\x1e\x72\xa3\xa3\x85\x4f\x14\xbb\xb4\x67\xe2\x5c\x72\x64\x2d\xde\x56\xb0\x62\xdb\xee\x7f\xee\x88\x33\xd1\x11\x78\xee\x44\x80\x70\x8e\x32\xf9\xbe\x54\xf0\xdc\x71\x84\x48\xf2\x3b\x51\x26\xdf\x17\xad\x9d\x07\xe1\x77\x1b\xea\xa2\x69\x80\xc1\x43\x92\x34\x4f\x04\x0f\x15\x29\x42\x27\x24\x49\x1b\xd1\x4f\xc6\x0e\x79\x13\xb0\xf0\x65\x95\x98\x73\x3e\x17\xad\x9a\xd1\x9c\x74\xf7\x98\xd1\x9d\x08\x7b\x30\x59\x22\x56\xc7\x8e\xbf\x13\xb1\x3a\xf6\xdd\x9e\xb8\x84\xcb\xbe\xd8\xf3\x44\xd0\x83\x51\x7a\x22\x92\x45\xea\xe5\x79\x92\xd3\x09\x64\x84\xe6\xd8\x79\x7c\x22\x34\xc7\xce\x9f\xf3\x62\x24\x8b\xfa\x7b\xee\x65\xf5\x00\x88\xcd\x71\x74\xe4\x09\xd9\x6f\x58\x52\x3b\x11\x8c\x63\xef\xf0\x79\x11\x22\x21\xf9\xa2\x32\xe1\xe7\xdc\x08\xc2\xc0\x45\x88\x3c\x00\x21\x72\xff\x80\xc0\x7c\xea\x22\x04\xc2\xc8\x7c\x94\x1b\xff\x00\x71\xdf\xac\x65\x3e\xc7\x85\x46\x40\x1d\xfa\xf8\xb3\xab\x74\xce\x49\x6d\xc6\xbd\x5f\xe0\xf4\xc2\x0f\x72\x70\xa3\x69\x90\x35\x5c\x7c\xe1\xfa\x89\xfb\xee\x7d\xfd\xd2\xc9\xa2\xf5\xde\x24\x37\x04\xb1\xe0\xf7\x61\x0d\xb4\x23\xf5\x5c\x82\x60\xf4\x75\x4c\xe7\x0d\x6d\xcd\xbb\xe4\x26\xc9\x88\x84\xee\x75\xb6\x24\xef\xea\xfb\xc0\x8c\xfd\xfe\x49\xfd\xc8\x1f\x10\x24\xcf\x08\x51\x26\xda\x16\x17\x92\x6a\x93\xd8\xcc\x85\xb2\xf7\xbe\x9d\xe9\x62\xda\xab\x56\xe4\x7a\x24\x47\x3f\x87\xf3\x5b\x11\xc9\x17\xd3\x58\xc5\xda\x2f\xa6\xb1\x36\x7f\x8f\xea\xe9\xc5\xe3\xc3\xf9\x2d\xbe\x78\x05\x66\x29\x48\x96\xbe\x10\x06\x53\xc5\x5a\x2f\x54\xa1\xef\xdd\x6d\xe8\x63\xd2\x5f\xae\xc0\x1b\xfc\x45\xf5\x57\x20\x04\x1e\x01\x10\x48\x58\xbc\x90\x17\x5b\xeb\xab\x47\x08\xbf\xe2\xf6\x17\xaa\xd4\x77\x49\x24\x17\xc2\x60\xac\x20\x5d\xbc\x00\xb6\xf9\x7b\x5a\x89\x3c\x20\x40\x54\x98\xcc\x15\xa1\x82\x36\xb7\xa1\x72\x4a\x9e\xba\x22\x22\x1a\x14\x97\x73\x45\x42\x28\x94\x47\x78\xf3\x65\x90\xbc\x50\x02\xbf\xcb\xbe\x7b\x45\x02\x28\x94\x47\x04\x34\x34\x7f\x4f\xf8\xdc\x3f\x2b\xf8\x1a\xe0\x08\x00\xba\xdb\x37\xaf\xbe\xd1\x17\x89\x10\x68\xc6\x88\x83\x77\x98\xe4\x95\xe0\x50\xed\x7e\x0e\x27\xb2\x17\x19\x69\xb0\xf6\xaf\x5d\x09\x2e\x54\xcf\x90\x69\xb0\x3a\x0b\x2f\x46\xd1\x18\xa3\x4c\x83\x95\xa9\xf0\x62\x1a\xac\x5c\xff\x57\x82\x82\xf7\x9a\x1f\xd4\x97\xee\xef\xa1\x53\x1b\xc3\x90\x70\xdb\x30\x4a\x98\x16\x6b\x2a\xce\x10\xc7\x25\xe2\x5e\x19\x00\x9b\x24\x32\x01\x16\x00\x19\x00\x7b\x57\xa0\x8e\xa4\x45\xe2\x8b\x45\x70\xaa\x67\x90\xe1\x24\x96\x0a\x7b\x65\xda\x2e\x4d\xd6\x99\x20\x6a\x91\x33\x5c\x8a\x3a\xee\xae\x0c\x33\x82\x89\x0a\x59\xb5\xce\x7b\xb9\x32\xcc\x06\x26\x92\x02\xb3\x81\x44\xca\xab\x10\x22\x4d\xa0\x10\x22\xf5\x5f\xb8\x44\x42\x79\xa9\xdc\x66\xc2\x29\xaa\xe0\x54\xc7\xc5\x5f\x85\x33\xf6\x08\xb0\xde\x3b\x8a\xf0\x2a\x48\xec\x35\x2b\xa9\x28\xb2\xeb\x7d\xc5\x34\x57\x9d\xf0\x17\xd3\x5a\x75\xbc\x5d\x15\x5e\x58\xb3\x12\xa6\xb9\x9a\x55\x55\x78\x61\x8d\xe3\x4a\x14\x69\x82\x15\xa9\x41\x3a\xae\xaf\x8a\xb2\xc0\xa6\x62\xe4\x02\x74\x87\x57\x5f\xcc\x72\x7d\xb5\x39\xe1\xf8\x93\xb3\xe6\xe2\xdd\xb3\x96\x8a\x2f\x9a\x72\xa5\x43\x5f\x1f\xa9\xda\xdd\xc3\xe3\xaa\xc3\xf6\x42\xca\xab\x03\x93\x2e\xd8\x76\xbb\x03\xf4\x2f\xe4\xbc\xf6\x57\x07\xf0\x40\x1a\xe1\x0d\x1e\x48\x73\x46\xe4\xbc\x5a\xbe\xb8\x3a\xed\x32\xfa\x1e\xe9\x00\x8e\x9c\xba\x90\x0f\xe0\xc8\xda\xab\xd3\x0e\x23\x84\xf7\xa7\x7a\x97\x56\x14\x79\xad\x8e\x64\xba\x3a\x0c\x35\x92\xa0\x2e\xe4\xb5\xf6\x57\x1b\x10\xbf\x3a\x24\xc4\xee\x8f\x91\x11\xa6\x62\x94\xb8\xb7\x44\x74\x75\x96\x01\x31\xce\x06\x1d\x8d\x9e\xf3\xa0\xa3\xd1\x48\x59\xb2\x7d\x76\xca\xe7\x35\xe8\x78\xf4\xa4\xc7\xa3\x7d\x69\x56\x83\x2e\x53\x83\x09\x69\x7f\xb3\x91\xf8\x1a\xcc\xe9\x34\xe6\x96\xb4\x9f\x9d\xe3\x79\x41\xda\xdf\x6c\x26\xbe\xc6\xe3\x7b\xd4\x1b\x4f\xf6\xaa\x57\xfb\xc9\x5e\x35\xbd\xec\x0f\x68\x5a\xae\xc7\x32\x6c\xc6\xbf\xd3\xb3\x28\x81\xf3\x62\xfc\xbf\x53\x19\xaf\x9d\xde\x44\xef\xa9\x9d\xde\x44\x6f\xaa\x9d\x05\x32\x8d\xaf\x9d\x79\xa0\xde\x96\x3b\xf3\x40\x7d\x7e\xed\xf4\x2f\x7a\x23\xee\xb4\x97\xf9\x0c\x3f\xe8\x5f\xf4\xd6\x3f\xe8\x5f\x34\x3b\x3b\x98\x1a\xea\x53\xfb\xa0\x63\xd5\x2c\x1a\x39\xad\xc1\x15\x2f\x2f\xe4\xb4\xd6\x66\x7c\x1c\x74\x30\x7a\xc7\x1d\x54\x9b\xfd\xc2\x53\x1e\x54\xc0\x1e\xf4\x9e\xb8\x7d\xa2\x2d\x40\x8e\x0b\x6d\xa1\xef\x7c\xb2\x85\x04\xfa\xf9\x38\x88\xfd\x03\x92\xeb\x5c\xdf\xf2\x82\x3d\x39\xbe\x56\x0d\x65\x1c\x6d\x0c\xb8\x58\xb6\xd1\xba\xfa\x75\x5e\x50\xee\xdd\xc3\xcd\x17\x34\x8b\x8b\x29\x4a\xe6\xb4\x4b\xac\x2f\xb6\x1f\x5c\x57\x46\x5b\x60\x5c\xac\x35\x69\x4e\xb7\xc4\xfc\xf2\x3a\xcf\x61\xe2\xad\xd5\xe7\xd9\xc5\x44\x4f\x13\xf4\x12\xe4\x5d\x33\xfe\x42\x4c\x7d\xf6\x8c\x16\xa3\x31\x9e\x21\xd5\xdb\x04\x7d\x21\xc2\xde\x37\x27\x5d\xb8\x78\x37\x19\xe2\x09\x81\xc8\x68\x9e\xf4\xf4\xa9\xb9\xa4\x03\xef\xbe\xb9\x84\x03\x23\x78\x69\x08\x0e\x23\xb9\x58\xa7\xd1\x4b\x88\x7b\xa7\x7c\x1b\xe6\x75\x23\x56\xc8\x74\x86\xaa\x38\x9e\x2a\x04\xf6\x57\xc1\xbb\x0b\x11\x15\x0e\x6b\xb9\x50\x94\xd1\x02\xfd\x85\x3a\xed\x8e\x6d\xba\x10\x88\xee\x1d\x78\x23\x83\x50\x93\x9f\x1b\x4d\x2b\x51\x6d\x18\x32\x87\x9a\x83\x57\x5d\xfb\x7d\x5a\x3e\xba\xda\x4c\x0e\x28\x3f\x2a\x7a\x33\x37\xda\x45\xaa\xda\x70\xa7\x89\x5a\x67\xa0\xa7\x5a\xcf\x11\x72\x5e\x5d\x5a\x6a\x2e\x61\xbb\x16\xe9\x3b\x13\xc2\xb6\xc3\x0f\x27\x82\x1b\x1c\x43\x39\x91\x1c\x5a\xb4\x03\x27\x64\x6d\xc7\xbe\x4d\x5c\x5f\xeb\x14\xad\x49\xc3\xad\xd1\x81\x58\x06\xc7\xfe\xcd\x40\xdb\x9e\x27\x08\xc9\x54\xda\xcd\x44\xa9\x46\x47\x3b\x4f\xdc\x3d\xeb\x50\xdc\x89\xa8\x04\xc7\x00\x4d\x88\xc6\x49\xfa\xea\x8c\x54\xaf\xfc\x3e\xd4\xab\xe0\xfe\xa1\x4d\x05\x7f\x3f\x79\x57\xb9\x3a\xe0\x65\x4e\x92\x31\x26\x2e\x73\xea\x92\x4c\x27\xe3\xc3\xbd\xc0\xb8\xbc\xc9\xd6\xce\xc9\xcb\x9b\xb4\x75\x66\x22\x39\xb9\x4d\xd1\x5c\x08\xcf\x14\xe3\xd4\x1f\x05\xd3\xe1\xe7\xcf\x45\xe1\x82\x28\xc3\xfd\xa3\xd3\x6d\x66\xb8\x7f\x0c\xc0\x92\x54\x93\x63\xf7\x26\x8d\xb7\xbe\x10\x64\x52\xf0\x34\x8a\x33\x62\xd9\xaa\x3b\x40\x2c\x5b\x77\x1b\xb1\x6c\x5e\x02\x96\x73\xa9\x9e\x00\x2c\xef\xa6\x41\x94\x6b\xb1\xc9\x60\x16\x08\x19\x12\x52\x66\x81\x8b\x3c\xf9\x7d\xc8\x14\x3a\xf1\xe7\x12\x33\xb3\xe3\x63\x66\x79\xce\x62\x7f\xc0\xf8\xa5\xd7\x1b\x8f\xe9\xcd\x43\xdc\x38\xad\xf5\x45\x7d\xce\x62\xad\x42\x0d\xeb\x05\xd9\xca\x26\x0c\xb8\x2e\x2c\x31\x2b\x62\xd1\x5e\xef\x33\xe6\x47\x2a\xdc\xac\x14\x21\x24\xf9\x4c\xd4\x67\x0c\xbe\xf4\x69\x2e\x61\xb5\xf8\xae\x99\x59\xb9\x75\xbd\x90\xf5\x39\x54\x45\x5a\x4c\x5d\xb5\x64\x33\x51\x93\xd1\x7b\xb1\xc1\x31\x2f\xa8\x59\x80\x45\x30\x37\x3a\x2c\x34\x21\xd6\x5f\x11\x84\x8d\x1b\xd7\x5f\x53\xb6\x16\x40\x88\x3b\xf0\xbe\x5e\xa2\x69\x7b\x75\x06\x87\x82\xd0\xd1\xb8\x8b\x3d\xd1\x09\x9a\xf4\xd7\xf7\xea\x4c\x90\x22\x4b\xd5\x07\xfd\xc4\x4d\xad\x16\x1e\x66\x7f\x42\x1d\xd5\x3f\x62\x0e\xec\xe2\x9c\xfd\x89\x0c\xd1\x7c\x3a\x25\x03\x7f\x00\x7b\xb3\x69\x98\xf6\x66\xd3\x38\x53\x57\xbd\x18\xb4\x37\x9b\x86\x51\xdb\xd1\x65\x9f\x26\xed\xcd\x5e\x6e\x86\x29\xe8\x40\x9b\x9f\x7a\x2a\x9a\x10\xa3\x0c\xbc\x09\x68\x50\x1e\x66\x54\x0c\x2b\x30\xdf\x67\x6d\x46\x73\x72\x86\x15\x78\x46\x3b\x75\x17\xb7\x91\xd1\x65\x62\x81\x75\xd8\x3e\x8a\xb9\x93\x51\x6a\xc6\xac\xbc\x68\x0c\x21\xaa\xa0\x87\x1f\xf9\x70\xe6\x92\x3b\xa3\x2f\x78\x9e\x3b\xb9\xac\x3b\xdf\xd1\xd6\xe4\x77\x72\x59\x41\x8f\x20\x83\x64\xe0\x77\x70\xdd\x68\x60\x26\x9e\x0b\x98\x83\x5c\x5f\xcb\x77\xc0\xa7\x2f\x5d\x79\x1e\x64\xc2\xea\x0f\x41\x06\xb6\xe2\x4d\x04\x19\xd8\x86\x38\x51\xe2\xb1\xcb\x5c\x30\x79\x83\x69\x32\x0f\x3a\x60\xc4\x92\x1a\x32\x4f\xd8\x33\x24\xcd\xcf\x13\x9a\xaa\xb1\xc9\xf8\x61\xaf\x16\xe3\x87\x8d\xdd\x13\x25\xa6\x3c\x61\xc6\x0f\xfb\xd4\x38\x11\x22\x2f\xe9\x6b\x32\x7e\xd8\xab\x87\x4b\x8a\x2c\xe4\xcc\xe7\x82\xd2\xe1\x0e\xa1\xf9\x79\x87\x5c\xbc\xf1\x46\x66\xbe\x79\x41\xd5\xf3\x0e\xc1\xb5\x44\x36\x55\xcf\x0b\x1c\x2d\xbb\x8d\x82\x3f\xde\x93\x8c\x2e\x96\x40\x38\x19\x5d\x9c\xfd\x1c\xca\xae\x24\xc4\x79\x41\xf3\x93\xe9\x7b\x32\xba\xd8\x0c\xe4\xda\xc1\x61\x3d\x1e\xcb\xe6\x78\x09\x18\x5e\x2c\x2d\x64\x5e\xd0\xb0\x5e\x00\x51\xc3\x7a\xcd\x18\x4c\xdd\x0c\x76\x09\xa1\xd9\x81\xb0\x73\x52\xbf\xf2\x94\x11\x85\xe0\x60\xdb\x89\x00\x63\x47\xa8\xce\x49\x05\xc4\x3c\x72\x3e\x5c\x5e\x58\x9e\xd4\xbf\xbc\x4e\x93\xfa\x97\x19\xc9\x7c\xee\xb2\xf7\x2c\x4e\xc8\xd5\x1a\xf4\xa6\x68\xec\xa3\x05\x41\xc2\xc9\x49\x78\xf3\x4e\xdf\x5f\xc5\x69\xf9\x73\x09\xb0\xc5\x0b\x83\x90\x60\x87\x83\x4c\xc8\xaf\xc1\x93\xbe\xe9\xf6\xf0\xca\xdc\x8f\xc8\xe9\x1f\x90\x06\xe8\xa5\x60\x89\x95\xf6\x9a\x12\x42\xca\x1c\x18\x38\x29\xf3\x7a\x46\x70\x36\x7e\xfa\xbb\xb7\x25\xa2\xe8\x94\xba\xb7\x08\x66\xdd\xd5\x86\xa2\xa7\x83\xe9\xde\xe0\x6b\x13\x6d\xdf\x1b\x5c\x10\xd5\xdf\x77\x1a\x27\xd5\x46\x05\x08\xc9\x0f\xf7\x92\x90\x6d\xbf\xbe\x21\x02\xe7\xa1\xc9\xde\x08\x03\xae\xed\xd5\xc1\xe4\x1b\x9e\x01\x4a\x83\x7d\xe0\xbf\x03\xb3\x27\x04\x4f\x80\xa3\xad\xaa\x89\x7b\x0a\xf5\x71\xc0\x1d\x71\x1a\x6d\x09\xb8\xd5\xf5\xf7\xee\x80\x4a\x5d\x1a\x3b\xf0\xe0\x70\x67\x38\x38\x3c\x36\xaf\x3f\xb5\x6a\x75\x23\xae\xc0\xf5\x31\xee\x38\x78\xcb\x83\xda\x17\x6d\x58\x6a\xc3\xe1\xa2\xe5\xbf\x13\xcd\xff\x9a\x0f\x2e\x2b\x75\xd5\xfa\x1b\xf9\x8e\x49\x6b\x7d\xb3\x60\xa1\xcc\x80\x37\x2e\x23\xb5\xe8\x74\x3f\xf2\xac\xdf\x87\xed\x79\xb8\x3f\x46\x9b\x79\xb9\x13\x83\x87\x8c\xbf\x04\xc3\xe5\xcf\xa2\xa1\xef\x0c\xed\xcd\xc4\x90\x21\x3c\x7a\xb5\x33\xd9\x94\xc0\xcf\x64\x4b\x7e\xde\xb1\xa7\x05\x0e\x6f\xef\xb1\x57\xf0\xce\xb8\x11\x46\x36\xc4\x3b\x33\xb8\xda\xe4\x99\x61\x22\x30\x42\x11\x7d\x50\xe2\x6b\x4a\x13\xca\xb7\x87\xb8\xa9\x4a\x6b\x88\xb2\xad\x0d\xeb\x26\xaf\xff\x16\xa7\xbb\x0b\x75\x2e\x61\x0c\x71\xb6\x76\x47\xdc\xbc\x2e\x54\xca\xfb\x5d\x60\x1c\x97\x53\xeb\x2e\x3c\x4c\xfc\x3d\x8b\x3e\xe8\xf8\xbd\x97\x40\x5c\x7c\xfb\xcf\xbd\xa4\xdb\x62\x1c\x56\x98\x62\x74\x3a\xde\xcc\x36\x74\x35\xee\xbb\x72\xc7\x8a\x88\x59\xb4\x25\xb8\x83\xb6\x68\xc8\x3b\xae\xc2\xff\x60\x9c\x22\x99\xd0\x35\x4f\x6e\x84\xe5\xd6\xee\xfe\x91\x13\xdb\xfd\x3d\x74\xa2\xe4\xf9\xc2\x8c\x69\x0a\x5a\x82\x70\x76\x88\xea\xdd\x28\xad\x0b\x01\xbc\x6b\xb4\x49\x09\xbf\x19\xef\x20\x8e\x77\x23\xde\xc1\xf5\x15\x6f\xd4\x27\x77\x05\xe7\x9b\x37\xec\x48\x7e\xb8\x1b\xc5\x47\x7f\x0f\xae\xde\x3c\x01\x70\x4c\x1b\xe7\x6f\xd6\x2b\x37\xd1\xa0\x5e\x79\x91\xc0\x74\x37\x1a\x0d\xfc\x9c\x77\xb7\x68\x89\x21\x01\x17\x73\x91\xce\x18\xd1\xd7\x0b\x5c\x02\xcd\xa8\x93\x66\x34\x01\x08\xc0\x8e\xd2\xbd\x59\xce\x5c\x87\xe1\x8d\xe2\x2d\xb6\xa2\xdc\x08\xa8\x70\x48\xd0\x3d\xe0\xf7\x94\x55\xe4\x1e\x64\x1b\xc2\xe8\x12\x70\xa3\x6f\xcf\xb8\x07\xd9\x84\x9f\x83\x66\xbb\x9f\x43\xed\x95\x00\x74\x0f\x92\x88\xdf\x87\x97\x71\xf8\x7d\x92\x84\xe0\x1d\x10\xc8\xba\xe7\x03\x97\x9b\xf7\xc0\x8e\x88\x1b\xef\x81\x1d\x4e\x45\xf3\x70\x98\x4e\xab\xad\x72\x37\x93\xfa\x86\x5f\xa0\x47\x4a\x13\x64\x21\xc0\xe6\x4d\xb3\x64\xdc\x64\xc3\xf3\xbd\xc3\xd9\x30\xdc\x21\xd5\x62\xcd\x78\x87\x5a\xec\x5d\x8c\xab\x3e\x7d\xf9\xd1\xbd\x43\x2d\x36\x89\xc0\x42\x5a\x5c\x4f\xfe\x3e\x68\xfe\x35\x2f\x5b\x52\x6d\x76\x7e\xcc\x8d\x2c\x3d\x5b\xa6\xee\xa3\x61\x1b\x68\x06\x07\xf2\x9b\xb2\x9f\x33\xd0\xca\x48\x39\x1e\x5e\x27\xac\x3f\x25\x00\x4d\x46\xb4\x87\x1a\x88\x83\x91\x62\x3e\x6e\x50\x1f\x25\xda\x98\x7e\x9f\x8f\xe6\x23\x30\x4e\x84\x2e\xfa\x79\x26\xf7\xd3\x10\x27\x6e\x60\x73\x73\x40\xf7\x13\xd0\xb8\x9b\xdf\x77\xdc\xdc\x90\x7c\x5d\x34\xe1\x46\x48\x84\xdd\x5c\x37\x42\x22\x5c\x5b\xfd\xbe\x50\x81\xa7\xfd\x28\x5c\xe0\xbe\x10\x26\xe4\x5d\x76\x91\x4f\x68\x72\x17\x74\x68\xef\x12\x44\xce\x9a\x4d\x5c\x64\x1b\xfe\x1c\xd2\xa0\xcf\x52\xc8\xc0\xe6\xb3\x17\x73\xaa\x5f\xdd\x43\xaa\x7f\xcd\x9d\x5c\xc2\xcf\x11\x9d\xf0\x62\xbc\xa8\xf8\xf7\x62\x3b\x93\xc0\x8a\x88\x27\xc2\x9c\x8c\x3c\x54\x32\x71\xf5\xb0\x1b\x76\xd7\x62\xe4\x4d\xf0\x39\xd3\x03\xef\xc4\xf1\x2e\xa5\xad\xd5\x8c\x1b\x85\x49\xe2\x6b\x7c\x98\x1b\x0d\xe1\x44\x18\x96\x17\x0b\xc2\xae\x0b\x52\xdc\x37\xe7\x27\x78\x50\x76\xc4\x05\x2c\x6e\x18\x67\xed\x36\xbe\x51\x66\x24\xbe\xbe\x07\x82\xcd\x65\x50\x54\xc4\x05\x31\xee\x1b\x6a\xbc\xe7\x7b\x13\xc1\x7e\xff\xe6\x1d\x5a\x6c\xd7\x0d\x45\x43\x54\xa1\xa3\x6e\x1b\xac\x97\xd9\x6d\x84\x40\x7d\x88\xbd\x6e\x14\x3d\x3f\x4c\xa5\x6e\xa8\xeb\xa7\x8b\x4d\xeb\x86\xba\x7e\xe5\x73\x90\xd5\x0d\x92\xa7\x44\x85\xba\x6d\x1c\xbf\x7e\xda\x08\xa3\xd5\x4d\xf5\x75\x0b\x01\xfd\x05\xb5\xb1\xb9\xa2\xe6\x43\xc9\x34\x6b\x3e\x08\xa3\x95\x0f\xb7\x6e\xb4\xde\x76\xcd\x87\xd6\xdb\xee\xf7\x61\xbd\x4d\xee\x1f\xf0\x46\xcf\x87\xf0\x7a\x3c\xd6\xda\x74\xff\x84\x37\xab\x7d\xf1\xee\x05\xb5\x41\xc0\x49\x6d\x04\xdd\xca\x4f\x51\xb7\xa7\x3e\x88\xfa\x8f\x34\x68\x69\xfc\x48\x49\xa4\xf9\x05\x58\x31\x3c\x01\x9a\x7b\x3d\xe1\x88\x18\xb0\xd7\x00\x8d\xd7\x21\xab\x8d\x63\xd0\x0b\x16\x9f\x5c\x75\xb5\x61\x85\xe9\x42\x48\x24\xc0\xee\x1f\x00\x27\xbf\xcf\x73\xdd\xfd\x13\xe0\xa1\x36\x17\x58\xe3\x25\x04\x68\x35\x53\x44\x02\xc4\xa6\x88\x84\x15\x4d\x5a\x31\x5c\xf8\x53\xa2\x3a\x4c\xdc\x11\x6e\x43\x59\x32\x82\x10\x07\xac\x50\x90\xba\x41\xfa\x6e\x2a\xf9\x59\x37\x14\x20\xec\xc6\x48\x0e\x90\xdd\xdc\x86\x1d\xc9\x18\xc1\x75\x3f\xdd\x4b\x98\xb9\x02\x82\x08\x05\x0b\xbb\x21\x44\xe0\x43\x37\xc9\x20\x56\xb8\x9b\xe4\x70\xf9\x4f\x37\x86\x19\xfd\xab\x30\xc8\xba\x31\xda\xd7\x34\xc1\x68\x5f\x63\x80\xd1\xbe\xaf\x76\x64\x3a\xab\x3a\x60\x49\x43\xa3\x08\xe2\x75\xf7\x26\x67\xb4\xaf\x37\x71\x41\x04\x56\xf7\xfb\x48\x30\x31\x4d\x15\x18\xb3\x82\x96\xa4\xc0\x32\xe7\x4d\x85\xea\x1f\xe9\x47\x96\xb3\xba\x15\xaa\x67\x5a\x8e\x82\x78\x38\x13\x18\x64\xf1\xee\xf5\xc7\xcd\xfd\xd1\xf4\x51\x59\xad\x5d\xe8\xae\x00\xc6\x04\x5d\x21\x07\x0e\x01\xf7\x88\xe6\xc2\x26\x52\xe6\xba\x77\x3c\x44\xf5\xf8\x1a\x0f\xb6\x00\xd3\x27\xea\x7e\x74\xef\x48\x58\xa9\xbb\x37\x40\x85\xe5\xee\xd5\x1f\xe0\x1b\x6e\xdf\x78\xae\xf1\x19\x72\x61\xe4\xc3\x84\xdd\xcd\x01\x51\x4d\x31\x0f\xd3\x5b\x63\xd4\x89\x97\xa7\x3d\xda\xbb\x7f\x40\x02\x90\x41\xee\xd0\x78\x83\x40\xe8\xa4\x70\xbd\xdf\xa1\xf1\x46\x4d\xb1\x23\x84\xcf\x23\x76\xa0\xd4\x4c\xb5\x53\xb4\x15\x8a\x3b\x50\x6a\x1e\xd3\x61\xfc\x0c\x02\xa1\x43\xb4\x1d\x42\x69\x47\x74\xd9\xf0\xf3\x13\xe3\x79\x3e\x44\xa1\xe7\x0b\xe3\xa7\x97\x7c\x20\x16\x6b\xb8\x1d\x31\x9e\xe6\x33\x38\x7f\xb7\x0b\xbe\xd7\xf8\x03\x11\x88\x3e\x44\x06\xe7\x2f\x78\x07\x02\x2a\xbd\xc4\x10\xc5\x93\x0f\x99\x01\x63\xad\xf7\xc3\x00\xbd\x47\xe1\x07\xa1\x0e\x55\xc6\xf7\xba\x0d\xae\xb9\x10\x44\xd9\x7c\xa8\xc3\x9d\x00\xf8\x39\x5c\x6a\xa6\x19\xca\xea\xc9\x3c\x68\x67\xb1\xf1\x22\x94\xed\xbc\xa2\xa0\x0a\xe6\x1d\xea\xc5\x10\x4c\xc7\xc2\xd9\x30\x53\x81\xc1\x78\x6c\xea\x00\x05\x32\x82\x0f\x76\xc4\x16\xf7\xe6\x0e\x91\xb6\x56\xbd\x68\xb0\x28\xb7\x4d\x73\x5c\xb2\x77\x0a\x3e\xf9\x96\xec\xed\x4b\x2d\xeb\x86\xac\x35\x99\xd0\xea\xb6\x64\xf1\xfe\xe2\x72\xb8\x54\x68\xbc\xfa\x3b\xf0\xbe\x9f\x9f\x68\x7b\x82\x17\xe6\xe3\xfe\xe0\x26\x1c\x06\xe8\xc6\xf8\x7a\x1f\x59\x70\xc3\x44\x79\x86\x35\xbe\x71\x0e\xa9\x7c\x98\xed\x2f\xb1\xbc\x2b\xb8\xbb\x6e\x4c\x7a\x73\xff\x48\x7a\x93\x49\xa1\x6e\x48\x7a\x93\x45\xb0\x6e\x67\x07\x3c\x9a\xdf\x89\xd8\xb0\xd7\xf7\x80\xd7\x4c\x14\x17\x10\xd5\xe1\xf9\x9c\x18\x5f\xf8\x58\x62\x7e\x1b\xaf\xf9\x4e\x3c\x37\x7c\x80\xd7\xf3\xc5\xad\xfb\xc1\x44\x7e\x71\xbd\xf4\x3d\x73\xda\x86\x0f\xca\x8b\x0b\xe4\x0e\x06\x3a\x14\x80\xd7\x8e\xe7\x02\x60\x09\xeb\x6d\x18\xe0\x8b\x0b\x24\x80\x2e\x4c\x78\xd3\x2e\xe5\x7d\x45\x2f\x4e\x8c\xfb\x8a\x9a\x5f\x98\x70\xec\x66\xcd\x70\x12\x02\x75\x38\x23\x20\x76\x3b\xf1\xe6\x8f\x9f\xa4\x71\xd6\x6d\x49\xfa\x6d\x18\xfe\x09\x0f\x88\x99\x08\x2c\xd7\x45\x09\xe8\x75\x83\xe5\xda\x17\x9c\xd6\x8d\x81\xd7\xc9\xdb\x76\xd2\xb2\xe7\x4f\x6e\x40\x50\x04\xe1\x0d\x08\x8a\x50\x7a\x13\x02\xa1\xf4\x46\x15\x1a\xaf\xf9\x0d\xa7\x4a\x11\x84\xb8\x9f\xa8\x18\xc5\xb8\x72\x5f\xe1\x7f\x75\xbb\xe1\x54\x69\x7e\xbf\xe3\x7d\xb7\x61\x07\x33\x8c\x37\x9c\x2a\xaf\xf9\xa2\xee\x50\x11\x8d\xdc\xa0\x39\xef\x19\x68\x07\x35\x7a\xd3\xdf\x20\x3a\x6f\x92\xa5\x2e\x74\x59\x6d\x6a\xd8\x88\x80\xae\x36\xca\xd0\x0c\xb7\x13\xbe\xaf\x6a\x63\x93\xe9\xe4\x09\x1b\x00\x16\x8d\x05\xdc\xc0\xaf\x54\xee\x1a\x36\xde\x92\xa5\x19\x06\x5c\xc9\xaf\xe2\x07\x35\xe0\x4a\x7e\x05\x54\xd6\xb0\xf4\x13\xdf\x59\x57\xc3\xd2\x4f\xba\x14\xc8\x1a\x60\x1b\xf7\x05\xbf\x35\xe0\xba\xce\xfa\xfa\x00\x8e\xda\xe2\xe7\x88\x98\xd4\x59\x16\x96\x82\xd2\x65\x97\xaa\x01\xa6\x72\x33\xe6\x10\x08\xb1\x20\x0c\x64\x2b\xea\x2f\x20\xf8\x20\xfb\xfd\x8a\xe7\x82\x38\x70\x49\x35\x1f\x14\xc3\xb0\xf3\xa0\x86\x80\xbb\x58\x86\x07\xc0\xc5\x26\x5a\xb2\x10\x60\x5c\xce\x6e\x5f\xe8\xd0\xdf\x13\xa0\xcf\x92\x06\x68\x24\x8e\x56\x58\xca\x3e\x02\xf8\xab\x40\x8e\x88\xa7\x90\x00\x1d\x96\x4a\x91\x54\x5e\xa2\x06\x5c\x16\xda\x8d\x02\xdc\x16\x2a\x9d\xb4\x86\x08\x57\x9e\xc4\xcf\x80\xeb\x42\xbb\x89\x26\x22\x5c\xa2\xf9\x7b\xd8\x85\x24\x20\x87\xc4\x2a\x32\xee\x30\x21\x28\x55\x12\x77\x40\xac\x75\x35\x8e\x13\x7c\x91\x12\x31\x43\xe2\x84\x35\x40\x42\x59\x1b\xa9\x08\x01\x15\x08\xdb\x78\xfd\x30\xf1\x81\xdb\xc8\xee\xf5\xa2\xd1\x26\x2f\x15\x22\x64\xb8\x16\x8d\x42\x5e\x19\xaa\x9b\xa9\x6b\xc8\x9c\xa1\x50\x9a\xe1\x3d\x6d\x7e\x8e\x19\x77\x77\xc0\x88\x0f\x41\x98\x49\xf6\xc2\x40\x46\x04\x48\xf1\xfb\x27\xfa\x17\xca\x32\xa9\xda\xef\x13\x20\xbf\x4f\x14\x6b\x3e\x28\x92\x5e\x14\xee\x51\x43\x81\x57\xa1\xb9\x4d\xcb\x9b\x50\x5c\x60\x79\x33\x8a\x0b\xf2\x91\x0d\x70\x21\xef\x14\xe7\x08\x05\x3e\x2b\xef\xab\xc2\x35\xf0\x0c\xe8\x61\xf3\x1a\x14\x78\x3b\xa3\xdb\xf0\xef\x56\x81\x88\x08\x16\x85\x48\xd4\x80\x08\x96\xae\x9b\xef\x6b\xa8\x58\x14\xe3\x18\x8a\x43\x6d\x9e\x02\x82\xad\xad\x39\x86\xca\xd2\x42\x26\xfc\x0a\x73\x62\xfc\x49\xf0\x73\x0d\x15\xd6\xd1\xe2\xde\x10\xd8\x6b\xaa\xc7\x45\xfb\x0a\x5d\xa9\x01\xa1\xd9\x0a\x4f\xa8\x01\x65\xda\x95\x00\x59\x43\xe5\x85\xaa\xe6\xb5\xb0\xf9\xcb\x7e\x5b\x43\x23\xd1\x69\xb6\x08\xd5\x56\xbc\x44\x0d\x0d\x8e\xa2\xaa\x0e\x11\x0d\x23\xaf\x62\x0d\x2c\xc4\x61\xd6\x89\x4b\xf6\xb3\x79\x73\x03\x0d\x16\xb7\x1f\xc7\x91\x27\x40\x08\xfd\x02\x72\xca\xa3\x3b\xbc\x48\x03\xfe\x01\x20\x4a\xf5\x09\x0c\xc6\x96\xc8\x19\x3a\x6d\x03\xe6\x24\x1d\xfe\x69\x09\xde\xa1\x33\xb2\xd9\xac\xa8\xd3\x46\x6d\x24\x74\x4e\xb2\xf8\x07\x7a\xb7\xb4\x0c\xfd\xf1\xb2\xbb\x4f\x5a\x7c\x5f\x6f\x30\x78\xca\x94\xd6\x39\x6d\x11\xd6\xc0\x42\x48\x63\x0c\x03\x77\xbe\x98\x3d\x3d\x01\xd9\x66\x70\x4f\x40\xb6\x69\x95\x01\xd9\xc9\x2f\x14\x96\x71\x15\x66\x58\xc7\x7d\x33\xf1\xb2\x26\xc7\x48\x1e\x64\xf0\x07\xcf\x02\xe1\x04\xc9\x5f\x10\x50\x13\x24\xe2\x67\xaa\x6e\x0f\xaa\x81\xb5\xdd\x37\x6f\xb9\x27\x42\xdb\x24\xf1\x04\x64\x9b\xb1\x3d\x01\xd9\x26\x8a\x9d\x90\xf8\x0b\x6c\x99\xe4\xe7\x0c\x07\xf0\x36\xc0\xed\x41\xcd\xac\x73\x67\x60\xb9\xd7\x7c\xc7\x3e\x31\xa0\x3b\xa8\x2a\xb9\x03\x2e\x8f\x59\xcd\xce\xe5\x71\x07\x0f\x14\xfa\xe2\x60\x6c\x9b\xb9\xe5\x73\x99\x90\xf9\xf9\x52\x86\x72\x33\x3b\x3c\xb8\x60\xde\x3b\x4f\x68\xb6\x8f\x1c\x86\x66\x57\x4b\x36\x4b\x1d\xca\x2a\x69\x5d\xc3\xf1\x88\xdb\xfe\x81\x98\x30\xe4\x0c\xcd\x4e\xd9\x83\x30\x30\xfd\x35\x8d\x27\x20\xce\x7d\xb0\x06\x81\x67\xc1\x00\x39\x93\x1e\xa2\xb5\xf3\x30\x93\x38\x19\x75\xee\x93\x05\xb7\xf4\x6f\x66\x7a\x27\xab\x5c\x49\xcf\x08\xe7\x13\xf3\xa1\x41\x9f\x1b\x8a\x7c\x3e\x9f\x48\xc4\x37\xd9\x9c\x28\xd0\x33\x3c\xc4\xc0\x73\x81\x71\x72\x0b\xfa\x7b\xc4\xfd\x99\xb6\xcf\x67\x07\x8a\x68\x4e\x54\xf3\x32\xa1\x22\x1c\xbc\x0d\x63\x9f\xb1\x3d\xcd\xbc\x8c\xa5\x00\x9b\x99\x1f\xae\x1f\x8a\x9b\x0f\x30\x78\x22\xe2\x66\x4e\x71\x31\xdc\xcc\xa2\xe5\x45\xcf\x8e\x39\x30\x9c\x0d\x71\x33\x15\xc0\xd9\x10\xaa\x85\x3f\x5c\xb9\x5f\x6d\x09\x09\x4b\x45\x29\xc9\xe8\xe7\x15\xfc\xd5\x4c\x95\x11\x35\xd5\x5c\x7d\xa9\x25\xe5\xb5\x3f\xe6\x13\xd1\xef\x2e\x3a\xbf\xd0\xc4\xa1\x96\xc4\xad\xfd\xc8\xdc\x16\xa0\xb3\xc4\xcd\xe7\x0c\x3c\x18\x71\x33\xee\x6e\x46\xf8\x9b\x0d\xc3\x47\x11\x37\x23\x73\xa9\x31\xc5\x8a\x58\x40\xa9\x8f\x97\x4c\x8b\x52\x1f\x56\x9d\xc3\x52\x53\x8a\x55\xd5\xb0\xd4\x94\x52\xcd\x93\x11\x7f\x13\x5f\x27\xf1\xd2\x53\x4a\x35\xab\xba\x79\xf5\x93\xd9\xc8\xcd\xec\x7f\x8f\x70\x31\x66\xc8\x40\x4c\xbc\xe0\x1e\x59\xe2\xe9\x03\x53\x5c\x8a\x4a\xb1\x11\x36\xa2\xbc\x48\x4a\x62\x2b\x11\x9a\x46\xf2\xda\x46\x5c\x76\xaa\x85\x8b\x1b\xbd\x72\x55\xed\xa5\x68\x88\x4b\xc5\x0d\xd7\xcf\xe9\x69\xc0\x6d\x73\xea\x2b\xd0\xeb\xe3\xc7\x88\x37\xd0\x91\x13\x19\x73\x9e\xdd\xa6\xd7\xc2\xdf\xd3\x6b\x21\x68\x50\xc6\xdc\x64\x16\x21\xd3\x5b\x84\x8f\x91\xf2\xa9\xfa\x8b\x48\x33\x13\x73\x8a\x11\xc5\x3f\xdd\x7f\x84\x38\xea\xfe\x23\x42\xd9\x3c\x7f\x48\xf4\x36\x71\xc7\x48\x61\xce\x6d\x08\x73\xc6\x6e\xe4\x35\xda\xaf\x1f\x9e\x33\x35\xeb\x07\x30\x6d\x1d\x78\x31\xa1\xbc\x8c\xb4\x9a\x98\xc8\xa6\x34\xe3\xc4\x8d\xa5\x19\x25\xd4\xe2\xf3\x8c\x10\xa4\xa3\x3d\x12\x53\xe3\x35\xdd\xee\x9f\xf2\xe8\xeb\x0d\x38\xca\x8c\xa2\x04\x3f\x86\xc4\x82\x98\x1e\x23\xab\xda\xf0\x63\xb8\xc3\xfc\x70\x5a\xb5\x71\x11\xb8\x4e\xa1\xb8\x24\xfa\xf6\x9a\x70\x46\xc0\x68\xf6\xfb\xb0\xbe\x88\xfb\xc4\x0c\x45\x56\x42\x47\xcc\x50\x64\xa3\x9f\x1f\x0b\x40\x37\x4f\x3a\x91\x85\xd0\x8c\xf9\x0b\x5f\x19\x69\xdd\x7a\x5a\x18\x5f\xac\xc7\x48\x85\x4c\x6e\xc6\xd5\x14\xec\x85\x65\x42\xd5\x5c\xa4\xaf\x78\xfa\x1a\x0b\x02\xbc\x92\x9f\xb3\x4a\xa8\x9a\x28\x8d\xf1\x1a\x1b\xa5\x31\xc4\x23\x63\xc5\x8d\x3c\xda\xdb\x71\xc9\xe9\x55\xe1\xf8\x35\xa2\x48\x5e\x30\xe6\x58\x2a\x44\xa3\x57\x7a\xa4\x35\x59\xd4\xc8\x0b\xde\x89\xb0\xff\x07\xef\x0d\xd8\xfb\xab\x35\xee\x88\xca\x21\x2a\x89\x57\x23\xea\x74\xab\xbc\x56\x8d\x95\x6c\x5f\x03\x36\xb8\x44\x65\x31\x88\xa8\x24\x12\xbd\xf2\x30\xe0\xa7\xd7\xfb\x38\x51\x65\x03\x89\x08\xb5\x51\x3e\x7b\x8d\x28\x78\x17\x4c\x59\xb8\x1e\x29\xbe\xde\x47\x68\x8d\x8c\x38\xb1\x81\x52\xa5\xb0\x47\x5c\x90\x14\x3d\x7f\x44\xda\x84\xd7\xfc\xe0\x92\x96\x89\x24\xc2\x5d\xa0\x7a\x64\x35\x32\xd2\xc6\xdf\x77\x9c\x6a\xa6\xec\x4e\xf8\x7e\x12\x9d\x56\x23\x6b\xe3\x29\x2e\xbc\xc6\x0e\x87\xb6\x59\x5d\xc7\x09\x68\xd6\xc3\xc2\x28\xca\xd6\x5f\xaf\xf2\xb4\x51\x9b\xe8\x10\x7a\x18\xb8\x6e\x74\x74\xa2\xc7\x03\x42\x6a\x32\x7a\x18\xa8\xee\x01\x51\x2f\xaf\x25\xef\x94\xc1\xe3\x4d\xf8\xe2\x25\x4b\xc6\x17\xa4\x75\x15\xcf\x59\x98\xc7\x04\x84\x1f\x08\xeb\xaa\x3c\xb5\x30\x05\x08\xfd\x3d\x4e\x70\x33\xd3\x41\xc9\x43\x00\xb1\x1c\xde\x66\x56\xb4\xb3\x36\xa6\x8e\xbf\x08\x6b\x7f\xb5\x83\x26\x42\x8a\xb6\x55\x2b\xee\xf0\x52\x9b\xff\xb2\x30\x49\xf1\xfb\x48\x99\x32\x49\xf3\x12\xa4\x57\x7f\x64\x76\xee\x0f\x4e\x5b\xe9\x27\x11\x85\x49\x8a\x0f\x3b\x16\x26\x91\x8c\x1e\x19\xa9\x13\xfc\x1c\x3e\x5b\x9d\xe7\xf1\xe0\x79\xa6\xf9\x41\x5a\xb6\x19\x31\xb2\x50\x89\x04\x82\x78\x20\xc4\xd3\xe7\x17\xef\x34\xf2\x92\x1c\x0c\x70\xd5\x7c\x21\x18\xdb\x6c\x18\x0f\x5e\x21\xe1\xf1\x08\x8f\xfb\x23\xc9\xeb\x7b\x48\xc5\xce\x8b\xae\x11\x31\x3b\xd9\x7b\xf0\xa4\xa9\xd9\x10\x9f\x5c\x23\x41\x0c\x29\xb9\x36\x1f\x40\x27\xeb\xdc\x6b\xc8\x13\x96\x4b\x99\x66\xe3\xc9\x25\x74\x07\x04\x51\x28\x39\xb9\x84\x9e\x11\x97\x50\x28\x3d\x19\xd4\xeb\x36\xef\x56\xf1\xfb\xa8\xc0\x64\xa2\x62\xa1\x14\xf7\x0f\x91\xd9\xa6\xe5\x78\x31\xb0\x42\x00\xa2\x4e\x8a\xdd\x33\x91\x35\xf2\x9a\xf9\x2e\x04\x68\x1b\x26\xe3\xc5\x3b\x23\x44\x53\x17\x6f\x1a\xd1\x04\x2f\x02\xe0\xe7\xf0\x9b\xfa\xc4\x67\x28\x4f\x36\x86\x9e\x42\x28\x3e\x48\x70\xb3\xa6\x5d\x58\x71\xa2\x07\x53\xcd\x84\x5f\xdc\x1b\x7b\x22\xb6\xc4\x47\x38\x4a\x99\x74\xef\x8a\x25\xe8\x56\x7b\x60\x22\xe4\xdc\x6e\x14\xdc\xf0\xca\xf9\x9c\xbb\xe1\x79\x96\x7e\x16\x51\x9b\xba\x7b\x97\xf0\x4a\x20\x53\x15\xae\x04\xb2\xc7\x21\x32\x8f\xd2\x54\x88\x42\x27\xf6\xd8\x44\xe4\x55\xda\x03\x16\x11\xbb\x63\x17\x5d\x44\xec\x8e\x3d\x6a\xf1\x26\x06\x3d\x1f\xc2\xef\xf1\x01\xbf\x49\xe8\x86\x17\x52\x52\x65\x42\x6c\x8f\x1d\x3c\x69\x23\xfc\x7e\x0e\xc3\x6f\xf1\x73\x84\x11\x68\x17\x26\x88\xc8\xca\xb0\xa8\x09\x15\xf5\x54\x78\xb4\x26\x64\x72\xaa\xf2\x4d\x4d\x88\x0d\xb2\xdb\x37\x21\x36\x48\x37\x2c\xd7\xc4\x3b\x3f\x47\xf9\xc9\x41\x93\x36\xba\xd5\x3d\xf8\x8d\xce\x34\x58\x80\xcf\x5b\x52\x45\x82\xc8\xad\x30\xe9\x9a\x50\x4e\xcf\xde\xab\x04\x91\x5a\x85\x01\x6a\x42\xda\x66\x4b\xc6\x46\x04\x74\xe2\x00\x89\x79\x93\xc2\x7e\x8a\x70\x0a\x27\xb7\xe1\x14\xce\x7e\x1f\xee\xaf\x6d\xf8\x05\x2e\x87\x20\x40\x24\x4c\x1e\xfe\x02\x37\xeb\x0f\xed\xb0\xc4\xc0\x74\xd1\x6f\x42\xa2\xe5\x6b\x86\x88\x84\xa9\x76\x3f\x25\x08\xc1\xaa\xde\x54\x13\xa4\xe0\x3c\xb2\x7b\x84\xa3\x5e\x14\x9c\x70\x35\x4f\x4a\x9e\x01\x1c\xe1\xaf\xe7\x70\xf9\x65\x0f\x00\x98\xbd\xc2\x09\x8e\x7b\x53\x4c\x42\xe6\xb1\xc7\xcb\x58\x14\x3f\x67\xa8\x8d\x29\x26\x23\x86\xd6\x00\xe0\xe6\x1e\xd5\xb5\xa9\x09\x17\xf3\x44\x63\x00\x17\xf3\xa4\xd7\xfb\x84\xc7\xef\x23\x96\x43\x3b\x20\xe1\xae\xd0\xe4\x45\x86\x10\x9d\x0c\x4f\x46\x20\x42\xf5\x73\xc0\x53\xfd\x9c\xf0\x78\xfe\x58\x42\x71\xa0\xc4\x48\x1c\x13\x19\x2e\xf2\x49\x1e\xbf\x70\xc5\x34\x3f\x06\xde\x78\xc5\x0b\x17\xcc\xfd\x11\x3e\xf7\x07\xf8\x3c\x7e\x21\x0d\x8a\x84\x18\x98\xf3\x9a\xcf\x45\x5f\x8e\x00\xa2\xcd\xdb\xa1\x14\x09\xd7\xe4\x0c\x59\x17\x52\x85\x17\x3b\xfa\x03\xa8\x25\xc6\x18\xa2\x63\x9a\x31\x86\xc0\xf5\x26\xe1\x3c\x55\x9a\xed\xa5\x2c\x24\xdc\x82\x33\x4c\x83\xa8\x27\x6d\x33\x65\x42\x59\xbe\xe1\x0e\x70\x29\xce\x8b\x44\x97\x74\x1d\xad\xb9\xa4\x25\x5d\x47\xe5\x59\xd6\xd4\x00\x40\xf2\x73\xb8\x48\x9b\xbf\x27\x40\x9a\x70\x83\x5b\xde\x24\x0b\xe9\xba\xbd\xd6\xac\xc1\xcd\xfd\x7a\x01\x10\x7a\x4f\x2c\xf1\xba\x0d\xd9\x6a\x53\x03\x80\xc6\x18\xc4\xe9\x6a\x79\x30\x2d\x79\x3a\x36\x7f\x80\xe8\x9b\x61\xa2\xef\xd8\xe6\x9e\xe1\x92\x98\x63\xf3\x12\x21\x1a\xa7\x99\x93\x75\x40\x6c\xc6\x83\xe8\x9b\x91\xfc\x3d\x96\xcc\x18\x46\xf4\x4d\x93\x82\x94\x3a\x03\x0f\x04\x10\x2b\x8c\xa8\x58\x7e\x4d\x1d\x1e\xc3\xea\x01\x00\xa1\xa9\x0e\xe1\x38\xb6\x29\xa6\x0e\x3f\xbe\x77\x29\xc2\x73\x86\x27\x3c\x08\xb0\x30\x8c\x48\xf9\x66\x92\x18\x74\x02\x0b\x21\x08\xcf\x69\xe6\x7b\x08\xcf\x19\x06\x00\x91\xf3\x56\xee\x13\x22\xe7\x9b\x39\xef\x20\x4d\x6a\x7e\x83\x2b\xe6\xf1\xb9\x62\x3f\x3b\x67\x06\x81\x75\xe7\xa0\x57\x6f\x08\x84\xf2\xa8\xae\x64\x4d\x08\xb3\x6f\xa6\xc7\x9d\xf4\xaa\xc9\xec\x70\x9e\x4a\x3f\x4a\x3b\xc2\x12\x4c\x5e\x3b\xc2\x34\xbc\x3a\x3b\xc3\x4a\x34\xf9\x9d\xab\xab\xd5\xde\xb9\xba\x7e\x0e\xf2\xf5\x7c\x77\xb0\x6c\x53\xd3\x8e\x28\x0d\x23\x63\x27\x32\x3c\x5f\xee\x4f\xbf\x0f\x78\x8d\xdc\x03\xfe\x6e\x2f\xc6\x81\x30\x1a\x8f\x0f\x51\xbd\x6e\xde\xd0\x07\x07\x10\xc0\x07\x42\x08\xbc\xbf\x4e\x84\x0c\x54\x75\x00\x59\xbc\x6f\xd2\x97\xd2\x89\xa0\x09\x33\xb9\x13\x1e\x75\x93\x17\x03\x75\x4c\x5e\xcc\x44\x95\x7e\x96\x4e\x70\x84\xea\xef\x1b\xde\xd7\x04\x4f\x78\xd8\xcd\x34\x4f\x5a\x5e\x84\x01\x54\xaf\x76\xc8\x6e\x42\xf5\x6a\x2b\x57\x89\x81\x3a\x3e\x84\x4e\xe4\xea\x54\xf7\x0f\x80\xbd\x02\x27\x8d\x73\xea\x8f\xd5\xac\x65\x1e\x4f\xbc\x4d\x74\xb8\x43\x96\xb3\x6e\x6e\x03\x01\x66\x91\x17\x82\x26\xbc\x64\x17\x59\xa0\x07\x00\xc0\x3e\xc5\x2f\x00\xec\xfd\x7c\x21\x12\xcb\x1c\xf0\x42\x94\x88\x59\xf8\x85\x28\x91\xee\xf1\x01\xb0\x19\xd8\x85\x88\x02\x33\x24\x18\xce\xcb\x30\xc6\x2f\x44\x89\x78\xcf\x4c\xd0\x90\x69\x90\x81\x3e\xf2\x41\xa4\xc9\x7a\xf0\xdd\x2f\x60\xd3\x34\x77\x80\x73\xd4\x2c\x75\x02\x03\xde\xf1\x48\x4b\xed\x0e\x8a\x48\xb3\x7d\x7f\x8d\x68\x1e\x8b\x8a\x29\x0e\x22\x4e\x93\x6b\x2e\x94\x4c\xa0\xa0\xf9\x39\x42\x16\x64\x64\x48\x13\x10\x79\x17\xde\x80\xc8\x07\xfd\x8d\xb2\x59\x1e\x9f\x81\x3f\x9e\xf0\x4d\x1a\xf6\xfb\x08\xfc\x69\x7e\xce\x25\xd5\xf8\x37\xa2\x42\xcc\x32\x11\xe6\x5f\xed\x12\x49\x88\xf4\x71\x48\x44\x7a\x2e\x0f\x7d\xbd\x70\x72\x5f\x7a\x08\xca\xa3\x82\x21\x33\xd6\x46\x3b\x3b\xf3\xca\xfe\x21\xcb\x49\xde\x10\xc7\x21\x95\x33\x6f\xfb\x42\xaa\x58\x5f\x5e\xf2\xfd\x50\x4e\x7b\xcd\x4b\xbe\x1f\x2a\x2d\x59\x33\x43\x6b\xc4\x09\x32\x6c\xe4\xca\xa0\xaa\x19\xa1\x35\xb6\xb8\x67\x18\xcd\x6d\x98\xcb\x01\x61\x1e\x52\x61\x73\x48\x78\x5f\xfd\x05\x04\x55\xe8\x24\xce\x4b\xc4\x1f\x36\xb4\xfc\xff\x8c\x9d\xc7\xd9\xf4\xba\x0e\x83\x5b\xb9\x25\x38\x29\x6d\x4e\x2f\x8e\xfd\x97\x70\x9f\x01\xfc\xe3\xf5\xf2\x5b\x7a\xc6\x96\x44\x05\x8a\x01\x24\xb7\x9f\x48\x3f\x30\xec\x6d\xb3\xc7\x1f\x7a\x14\x98\xba\x7c\xbe\x17\x88\x22\x9b\x66\x9b\x05\x9a\x80\x5e\x25\xd0\xc6\x30\xb8\xd9\xca\x1e\xfd\x66\x5b\x66\xb5\xf7\x27\x78\xda\x66\x13\x7c\x94\xc7\x4d\x26\xf8\xa4\x5d\xa9\xdb\x52\xd5\x59\xcf\xb3\x76\xf4\xcc\xb3\x88\x9b\x19\xcc\xae\xc1\x86\xb8\xd7\x24\x1f\xe2\x16\x11\xf7\xf9\x5e\x8b\x33\x33\x78\x2f\x4e\x26\x4b\x20\x9c\x64\xed\xac\xdb\x3a\x69\x3c\x59\x2c\xd5\x90\x69\x9f\x0e\x9c\xae\x3b\x0a\xda\xa6\x9a\x32\x78\x95\xb6\xd5\x04\xa6\x83\xd5\xdb\x8f\x0e\x44\x60\xb4\xe3\x6d\x7d\xb7\x7c\x28\xfa\x29\x2b\x03\x39\x6b\x7b\xe3\x6c\x99\xc2\xd5\xd1\x44\x85\x2f\x4c\x23\x2f\x78\x41\x69\xe1\x47\x23\x3a\xe4\x26\x58\xcf\xc2\x9c\x08\xd6\x93\x4c\xac\x75\xdb\x4c\x62\xe6\x40\x79\x61\x30\x00\x6c\xca\x03\x03\x2e\x7e\x53\x1e\x98\xce\x86\xfe\xa9\x0b\x03\x83\xc6\x56\x54\x14\x20\x5c\x68\x2b\x62\xfc\x4c\xa9\xf3\xc4\x30\xa5\xce\x13\x53\xf9\x5f\xa0\x9b\x4a\x7b\x43\xed\x87\xfe\xb2\x5b\xa7\xa5\x03\x6f\x0a\x06\x24\x0c\x0a\x3b\xb8\x98\x80\xac\x81\x31\x37\x70\x00\x63\x6e\x72\x95\x6d\x55\x00\x0e\x26\xa4\x4a\x38\x88\xb6\xb0\x09\x61\x83\xc5\x61\xab\x42\x0d\x85\x4d\x6e\x02\xd8\xe0\x9b\xdc\xaa\x4b\x77\x85\x2f\x6e\x55\x65\x0d\x36\x3e\x38\xd4\x20\x03\x38\xf5\x1c\x82\xaa\x92\xf6\x57\x06\xe4\x14\x09\x91\x36\xb6\xaa\x14\x09\x91\x46\xb6\x66\x6c\x00\x6b\xd0\x7c\x1b\x87\x15\x6f\x86\xcd\xb0\x0d\x9b\x50\x43\x11\x37\x36\x65\x91\x21\x7e\x61\x53\xce\x43\x60\xb0\x5b\xf3\x22\x65\x88\xcd\x24\xf1\x2c\x5f\x1a\x23\x6c\x82\x76\x35\xda\x97\xa7\x07\xa5\x74\x73\xca\xc3\xce\x00\xbd\x8b\x33\x47\x4e\x61\x08\xdb\xec\xce\xf6\xc7\xa4\x38\x45\x61\xe1\x59\x11\xe2\xec\x12\x5b\xd8\xa7\xdc\x7e\x5b\x37\x46\xa3\xd1\xa4\xb1\x25\xb9\xc1\xb7\xee\x0c\x44\x71\x63\x6f\x02\xd1\x34\xec\xfe\x5b\x37\x2a\x23\x62\xcf\x66\x14\x4d\xa4\x9a\x6d\x38\xf7\xf4\xe7\x07\x81\x7f\x72\xc7\x6e\x43\xc9\x29\x22\x26\x6d\x43\x90\xb4\xc8\x65\xdb\x78\xe1\x5b\x34\xe0\xac\x86\x4c\xe5\xf0\xf6\xea\xfc\xa0\xb5\x60\x26\x8c\xa1\x29\xb4\xf0\x92\x45\x1f\x12\x7d\x56\x88\xb0\x1b\x33\x13\xf3\x22\x68\xa2\x8e\x6e\x6f\x8e\x43\xd8\xe0\x2e\xaa\x58\xcd\xdd\x50\x93\x68\x63\xdb\xee\x43\x9e\x2e\x76\x91\x19\xf1\x75\xdb\x7d\x86\xf8\xdf\x34\xfc\x09\xa4\xb6\x19\x5c\x53\xe8\x4c\xe0\x9a\xc2\xe8\x04\xba\x83\x83\x1a\x5b\x13\x51\x72\x13\xb6\xa6\xcd\xdc\x99\x87\x57\x31\x0d\xbc\xd0\x9a\x48\x52\x9b\xa0\x35\x09\xe1\xad\xdb\xa1\x55\x84\x87\x09\x59\xd3\x3e\x4c\x57\x39\x0e\xb7\xf1\x69\xd2\x30\x25\xb8\x86\x50\x30\x1d\x36\x77\x3c\x7a\xce\x8c\x08\x04\xd3\x06\x27\xe4\x14\x40\x0b\x3e\xfc\xd3\x30\xb6\x0e\x1f\x36\x06\x66\xfa\xbc\xa0\x7a\x68\x30\xde\x9f\x8a\xb1\x35\xe6\xfc\xa7\x52\x6c\x0d\xbe\x77\xbe\x27\x86\x16\x95\x65\x91\x8d\xf6\xd3\x21\xb6\xc6\x99\x14\xc2\xa5\x73\x66\x7f\x3a\x43\x01\x62\xb3\x9d\x2f\xb0\x27\x3f\x5c\x4e\x27\x19\x2d\x69\xbb\x4c\x43\x86\x7c\xbd\x25\x1e\xd2\xe4\xb5\xe9\x85\x74\x79\x19\xc6\xc3\x89\x74\xac\xee\x04\xe7\xba\x94\x3b\x92\xeb\xe7\x7a\xa9\xe2\x05\x01\x79\xb8\xef\x2e\x47\x4f\x43\xd6\xf5\x9e\xfa\x4c\xd4\xad\xca\x73\x9f\x67\x23\xfc\x98\xe9\x5b\x7e\x7e\x06\x75\x1b\x8e\x84\x54\xfa\x0f\x41\x13\xc2\x6f\x3b\x26\xe8\xd4\x08\x1a\x2e\x2d\x21\x68\x36\x0c\xad\xdb\x3f\x04\x4d\x26\xd3\x29\x69\x6a\x94\xd8\x4d\x20\x99\xb6\x7c\x7a\x75\x4a\xc5\x85\x71\x29\x07\x06\xb7\xc0\xad\xb0\x70\x96\xc3\xf5\x72\x2a\xc2\xed\x63\xca\x43\xe8\x4f\x43\x28\x9f\xc9\x16\xa6\x06\x7b\xf5\xf6\xbc\x7b\x30\x3d\x28\xc9\x0d\xde\x88\x4d\xa0\x1a\x8c\xbb\xdb\x63\xb7\x22\x2c\xf7\x71\x91\x3e\x2e\x4f\xf9\x07\x16\x80\x5a\x9b\x40\x32\x98\x1b\xb7\xc7\x9e\xee\xf0\xe4\x22\x94\x0c\x4e\xaa\x32\xd9\x55\xda\xf8\xc1\xbe\xd1\xf0\xb7\xa2\x54\x36\x0b\x78\xb2\xf2\xd3\x2a\x0a\x66\xf1\x22\xad\x62\x01\x2d\x59\xe4\x25\x58\x00\xf4\x95\xc9\x85\x24\x22\x9a\x16\x61\xf4\x17\xa0\x8c\x45\xf9\x6b\x16\x10\x98\x45\x51\xc4\x0b\xb0\xc3\x32\x29\x9d\x5a\x2e\xdd\x32\x3b\x51\x1c\xc3\x70\x59\xcb\x94\x42\xad\x45\x05\x78\x16\x3c\x7c\xe5\xa7\x4d\x94\x64\xd1\xa9\x65\x76\x81\xc2\xf0\xc6\x22\x8f\xc1\xd2\x0a\x4d\x34\xff\x90\x71\xce\xc6\x39\x65\x98\xb3\xf3\x9e\xf2\xbf\xf3\x9e\x46\x68\x2f\xb3\x61\x4d\xb4\xe8\x3c\xa8\x7c\xe0\xc0\xb2\xc6\xa0\x64\x6c\x44\x02\x2b\x42\xef\xaf\x40\x8b\xca\xf2\x66\x4a\xcd\x27\xcb\x9b\x4d\x29\x74\x2c\xab\xa0\x50\x73\x9e\x9d\x3a\x35\x13\xa1\x88\xe2\x15\xaf\x40\x51\x59\xcb\x95\xbb\xbc\x28\x66\x78\x45\x1f\x2f\xaa\x62\x89\x5c\x59\x7e\xca\x47\xf9\x09\xc2\x7f\xb8\x93\xca\x4f\x33\x29\x18\x54\xcb\xf2\x56\x76\x81\x46\x15\x71\xc4\x7d\x5c\x16\x25\xf8\x0f\x85\x8a\x0f\x28\xc9\xe4\x57\x8b\x72\xb3\xe3\xbe\x2e\xeb\x7b\xb6\x42\x80\xd0\x43\x9f\xff\x8b\xc1\x34\xb4\xe8\xa4\xce\x79\x6c\x82\x98\xa4\xff\xd5\x47\x2f\x13\xb4\xbe\x88\xbc\x3c\x1b\x62\x97\xe9\x31\xb6\x28\x77\x5e\x59\xed\xab\xa5\x7d\x3b\x2a\xf3\xfd\x4f\xef\xa8\x84\xb2\x95\x9f\xde\x51\x09\x55\x2b\xaa\x9d\x49\x00\x45\x31\xd6\x88\xad\x6c\xb7\xc7\xe7\x7f\xe7\x7f\x1a\xbc\x20\x0b\x6e\x64\x8a\xa2\x7a\x41\xa0\xe7\x4a\x51\x6c\x5c\x38\x68\x29\x32\x49\xc7\x64\x56\xe4\xc7\x68\x11\xbd\x4a\x91\x05\x97\x15\x53\xbe\x9e\xcf\xbe\x56\xf9\xa0\x16\xd1\xad\x14\x7b\x15\xb2\x00\xc5\xf5\xc1\x2b\x1d\xc8\xe4\x54\xf9\xe0\xd2\x07\x99\x91\xa2\x28\x9d\x4e\x87\xce\x0b\x11\x99\xa0\x54\x19\x09\x99\x92\x2a\x03\x0b\x1d\x54\xd9\xcc\x38\x25\xd5\x36\xb3\x8c\xb8\xca\x60\xc4\x92\x55\x19\x05\x99\xd2\xfa\xea\x9a\x21\xa1\xda\x78\x40\x03\x97\x47\x94\x21\x2a\x85\xcf\xc2\xae\x6d\xaa\x88\x14\xd1\xb2\x08\xae\x4f\xfc\x60\x69\xbe\xbf\xd3\x81\xe0\xfa\x04\x27\x94\x66\x71\x97\x73\xfc\xe2\xf3\xd9\xb6\xcd\x62\x7b\xe7\x13\x8b\xed\x4c\x9b\xa1\x43\x13\x1b\xa3\x59\xee\x88\xe4\x53\x0c\x0e\xaa\xb9\xa7\x8a\x30\xfa\x73\xcd\xbd\x54\x04\xf0\x59\x00\xb3\x17\x23\x7c\x10\x4d\x8a\x73\x53\x8e\x88\x4f\x45\x1e\x8c\x5c\xb6\xa5\xbb\x3a\x05\xdb\x49\x0a\x48\x23\xce\xae\x74\xa7\x81\x87\x71\x76\xef\x8f\x74\x31\x64\x53\x8d\xb8\x54\x86\x2c\x8c\xf0\xbc\x9f\x2e\x31\xb8\xdf\xcb\x78\xaf\x2d\x3e\x28\xe2\xbc\x7c\x20\x9e\x87\xab\xb0\xc8\x29\xc1\xf2\xca\x07\xb1\xc0\x87\xed\x83\x80\xf5\x2b\x7b\x4f\x6a\xab\xd5\x32\x64\xeb\x8a\x14\x53\x76\x9b\x02\xd2\xff\x2e\x53\x00\x37\xb1\x80\xf6\xf3\x1c\x19\xb5\xc8\x6f\xf0\xf9\x5e\x39\x63\x78\x14\xda\x24\xd2\x47\xd9\x0d\xa8\xa1\x39\x41\x0b\x62\x1d\x2a\x02\x08\x11\xb2\x55\xec\x25\xe0\xf2\x53\xf9\xfd\x12\xad\xb8\xec\xb2\x61\x47\xbe\x2d\x3f\xb1\x7f\x45\xa2\x2a\xc7\xbb\xe6\x99\x9f\xc3\xa5\x90\xb9\xf6\x0f\x8b\x2f\xbc\xd0\xcd\xd4\xd3\xa5\x32\x52\x7e\x5a\x14\xe4\x87\x15\x36\xe4\x87\xe3\x73\xb8\xb4\x35\x23\xb2\x11\x7a\xfd\x13\x2a\xba\x1c\x42\x0f\x44\xe9\x28\xa7\x92\x3b\x45\x09\x2f\xa7\xa0\x20\xf4\xae\x60\xe0\x85\xf9\x38\xc5\x71\xe9\xdd\xc1\xba\x30\xd4\x9f\x3c\xff\x15\x2e\x4e\x31\x5c\xb8\xc5\x25\xfb\x71\x54\xd5\xe2\xb2\x45\x9d\x0d\x7e\xe9\x0a\x8b\xda\x58\x7e\xe2\xfd\x20\x0b\x42\xb9\x5c\xfa\x9d\x0d\xe3\x6c\x94\x91\xf5\x8a\x6b\xdd\x23\x97\x5d\xce\xef\x8a\x44\x74\xbd\x97\x14\x5d\x5a\xca\x62\xcb\x5f\xaf\x94\x15\x2a\x0c\x88\x6f\x90\x2d\xf1\x1e\xa6\xa9\xe4\x3b\x13\x6b\x24\xbb\x3e\x21\x5b\x45\xc2\x7d\xed\x5c\x64\xb7\x02\xf5\x69\xae\xfe\x36\x75\xba\x73\xb5\x7a\x5a\x73\xad\x88\x3c\x0a\x56\x8a\x90\xa8\x4c\x3b\x33\x62\xa5\xd0\x3e\xc9\x73\x5d\x8b\x51\xed\xcc\xf0\x63\xd8\x26\xef\xaf\x7a\x4e\xfb\x8f\x61\x9b\x99\x2f\xa1\x7d\x56\xf8\xb1\x72\x46\xe2\x18\x2b\x8f\x37\x6c\x46\xff\x28\x51\x0a\x5b\xea\x31\x40\x97\xf6\x1d\xd4\x10\x3d\xa6\x4e\x12\x63\xb2\x40\x55\x70\x1c\xfc\x5e\x55\x70\x9c\x12\x29\xa7\x2a\xaf\x3a\x67\xb4\x2a\x8b\x64\x69\x7c\x2f\x44\xda\xca\xfb\xe2\x11\x39\x81\x75\x32\x8f\xe8\x79\x16\xa8\xb0\x32\x1e\x11\xb8\xd2\xbe\x08\x6c\x8c\xc7\x27\x72\xe4\xd9\x04\x2e\x79\x76\xcd\x7c\x9e\x1f\x3d\xa7\x7d\xa7\xfa\x89\x6e\x51\x9d\xea\x27\xb2\x6e\x55\xc9\x4c\xce\x48\x95\xc4\x8e\xd3\xa7\xce\xef\x11\xc8\x73\x71\x61\x82\x3c\x77\xef\x36\x5e\x10\xfe\x28\x82\x66\x55\x26\xca\xf1\x69\xc0\x90\xef\x41\x0b\x92\xcb\x18\x81\x93\xf7\x30\x43\x8b\xe5\xb4\x8c\x48\xc9\x7b\xf0\x1d\x57\x57\xd0\x4c\x2e\xc6\x5a\x17\x21\xc8\x58\x42\x27\xef\x09\x9b\xae\x4a\xde\x83\xef\xb4\x2a\x79\x4f\x52\x1a\xd7\xea\xe4\x3d\x2c\xd9\x22\x84\xd8\xc2\xff\x66\x8a\x0c\xe0\x77\x46\x80\x0a\x54\x57\x39\x62\xcb\xac\x06\xb1\xe7\xde\xac\xc2\x24\x11\x23\x58\x95\x9c\x07\xec\x40\x55\x72\x1e\xbc\xc7\x55\xc9\x79\x80\x06\xd4\x55\x28\xab\xb8\x50\xea\x2a\x82\x58\x02\x25\xe7\x01\xfd\x51\x85\xc2\xc7\xd5\x5f\x37\xf1\xe1\x1c\x92\x6a\x80\x10\x2b\xb0\x09\x92\xc7\x04\xaa\xac\x7c\xed\x74\xb8\x89\x51\x73\x08\x8c\x18\x82\xe2\xcd\x41\xfe\x50\x68\xc8\x10\x53\x6a\xd9\x99\x35\x56\x36\xcc\x4a\xc6\xa9\x6a\xcc\x50\xfb\x93\x6e\x53\x25\x79\x8f\x29\x86\x9e\x6a\x04\x11\xdd\x1b\x31\x04\x81\x45\x04\x73\xc8\x8a\xd3\x1e\xb2\x27\x5d\x83\x08\x57\x61\x15\x26\x08\xf0\x70\x2d\x02\x04\x54\x5a\x10\x20\x20\xb2\x7b\x2d\x42\x47\x44\x52\xa9\x16\xad\xc3\xd3\x6b\xd1\xd5\xc5\x9e\xfb\x89\xd6\x6d\xe5\xb9\x3a\x5e\x3c\xda\x49\xad\x82\x7b\x44\x7a\xab\x55\xf8\x96\xc2\x07\xab\x8f\x55\x46\x50\xa5\x4d\xb0\xeb\x8d\x49\x8a\x76\x50\xab\xb4\x09\x96\x40\xb5\x41\x2b\x49\xb3\xaa\x41\x4a\x6c\x73\x0b\xe7\x70\x8e\x57\x38\x8f\xc2\x5a\xab\xc4\x45\xb6\x4d\x95\xfa\x30\x18\xb2\xc5\x9b\x34\xd0\x24\x4e\x32\xe2\x26\xbf\x06\xbb\xaa\xe9\x76\x86\x75\x35\x5f\x6c\xb0\x92\x26\xff\xee\xe0\x03\xa9\x1b\xf0\xfa\xa6\x5a\x58\x91\xbb\x6b\x93\x37\x0f\x5e\xdb\xe4\xa2\xe7\x1c\x34\xf9\xa7\x07\xed\x0b\x93\xc0\x36\x69\x96\x87\x69\xcf\xe9\xe7\x99\x12\xe7\x9f\x8f\x5c\x5f\xbb\x04\x10\x98\x75\x97\x2f\x15\xe6\x69\x21\x1e\x14\x53\x55\x9d\x23\xd2\x2c\xd5\x9f\x8c\xbe\xa2\x17\x54\xd5\x31\x22\xcd\x51\xed\x72\xae\xc2\xfd\xbb\x9c\xc3\x9c\xfc\x2e\xdf\x1c\xb7\x51\x37\xf3\xcd\x75\x5f\x87\x9c\x71\x74\x60\x91\x3e\xc6\xc8\x3a\x0c\x1a\x60\x4e\x7e\x32\xfd\x20\xe9\x4e\x1d\x72\x38\xc2\xfc\x86\x1c\x8e\xdc\x3f\x43\x59\x01\x3e\xff\x77\x3d\xd3\x81\xfc\x8d\x9f\xf7\x75\x1f\x26\x31\x70\xad\xaa\x78\x34\x7d\x9e\xe5\x88\x89\x87\xb3\x5a\xc6\x8f\xfb\xb0\xfe\x64\xfc\x81\x12\x53\x77\x6b\x80\x19\xb0\xb3\xfe\x7c\xb6\xe9\x2e\xd7\x11\xdb\x6c\x7f\x35\xbc\x4c\xe2\x1b\x3c\xcb\x46\xb5\x7d\x1f\x76\xa7\x60\xd9\xfe\x39\xdd\x36\xe8\x73\x9a\xdf\x60\x59\x76\xea\x1b\x2c\x1b\xd5\xa9\x1e\x4a\x2d\x0b\x83\x7c\x93\x72\x46\x17\xa8\x0a\x96\xfd\x48\x3a\xf5\x50\x4c\x30\x3c\xed\xb0\x03\x8a\xe3\x28\xe5\xa0\xe0\x07\xac\x87\x3d\x35\x9f\x1f\x7e\x94\x77\xa6\x52\x89\x3c\x53\x4e\xa1\x56\x87\xca\xce\x9f\x1f\x0e\xff\xc0\x30\x2f\xff\x40\xa7\xb7\x7f\xa0\x4d\xc9\x23\x8d\xe9\x96\xdf\x60\x9e\x23\xf2\x55\xb9\x01\x10\xca\xeb\x4f\xea\xdf\x50\x72\xaa\xdc\x00\x9d\x05\x16\xc6\x7f\x9e\xe1\xf6\xa7\x87\x9d\x41\x39\xd2\x75\xfe\xb4\x78\x79\xee\x78\xc3\xc7\x80\xc9\xb3\x27\x60\x8e\xdc\x59\x05\xd4\x9f\x7f\xfb\xf8\x2f\x17\x90\xca\x1e\xe1\xca\xab\x6f\x18\x6c\x8c\x04\xf5\x52\xb0\x2e\x33\x7f\x9d\xd2\xd3\x32\xa0\x9f\x56\x50\x08\xb5\xa8\xaf\x52\x10\x97\x6c\xb5\x0e\x00\x8d\xb7\xeb\xbe\x87\x00\x99\xe3\xc7\xc4\x05\x2a\x73\xfc\xf7\x86\xfa\x09\xf6\x05\x6b\x54\x95\xf1\x7d\x5d\x3f\x5d\x9c\x32\x27\xe6\x24\x3e\xce\x6f\x96\x47\x29\x4f\xd3\xc4\xff\xd2\xee\x59\x17\x01\xf3\x0b\x07\xd5\xc0\x7c\xb8\xe7\x23\xa8\x37\x07\xf1\x91\x79\x8a\x53\xf4\x13\xe5\x17\xd0\x45\x4d\x59\x6f\x88\x05\x6d\x93\xaf\x87\x96\x67\x05\x45\x11\x50\xd7\x26\x21\x57\x32\xa9\xed\x27\xba\x0f\x0c\x7a\x6d\x92\x9f\x3c\x57\x6a\x53\xec\x69\x78\x67\x9b\xec\xd7\xcf\xa3\x42\x45\x1a\xad\x29\xd2\x22\x12\x41\x9b\x1c\xe8\x5f\x68\x5e\xb1\x22\x9f\xee\x5d\xad\x9b\x01\xcf\xaf\x85\x26\x4d\xa8\x80\xe8\x42\x17\xb3\x50\xb4\x50\xac\xac\x34\x1d\xd1\xb8\xa9\x60\x28\xd9\xc3\xda\x4f\xb6\x5e\x01\x6b\xb4\xd9\x5d\x46\x2a\x68\x0a\x59\x05\x9c\xd3\x16\xb3\xfb\x34\x28\x30\x0d\xae\x88\xf6\x93\xad\x07\x16\x8c\x26\xd9\x7a\x4e\xad\xc1\xda\x24\x4b\x6f\x64\x95\x6b\x8b\x3d\x11\x3c\x37\x6d\xcc\x0c\xd1\x85\x91\x32\xc2\x45\x05\x34\x69\x4e\xf5\x33\x33\x85\x8b\x6a\x4b\x66\x09\x56\xb1\xf2\x7c\x2b\xb1\x98\x5c\x68\x6d\xd5\xfa\x86\x36\x41\x5f\x06\xff\x56\x9b\x2a\x42\xab\x2a\xd9\xcf\x8c\x74\x75\xc0\x65\x46\x2a\x29\x99\xd4\x5e\x4d\xc5\xec\xe7\xcf\x68\x14\x71\xb9\x31\x9c\x4b\x73\x95\x47\x6b\xca\x74\x27\x4d\x39\x18\x88\x66\x21\x7a\x63\x2a\x37\xab\xba\xf9\x40\x19\x2d\x01\x4a\x35\x65\xb4\x4c\xc6\xfc\xda\x7e\x42\x75\x25\x3f\x64\x53\x8a\x79\xd0\x77\xed\x27\x43\x57\xf2\x03\x36\x25\xb8\x5c\x3f\xfd\x5d\x7a\xce\x04\x49\xe8\x4d\x6a\xed\xda\x8a\xc6\x13\xae\xd9\x54\x98\x13\x2c\x54\x93\x4c\x0c\xb0\xac\x29\x60\x35\x19\xff\x6b\x53\xc0\x2a\xe9\xf6\x9a\x72\xcd\x80\xb5\x6a\xc5\xfd\xd3\x9f\x78\xdc\xcc\xf7\xb2\x7b\x40\x9f\x44\x60\xb0\x52\xad\x3a\x71\x35\x03\xaa\x66\x00\xac\xc8\x2b\xc2\x32\xe7\xd5\xc2\x44\x48\x72\x96\x49\x4c\xee\xad\xca\x7c\xd0\x79\x41\x67\x98\x35\x17\xb2\x65\xe0\xd0\x6a\x02\xae\x80\xca\x6c\xcd\xa5\xbb\x33\xc9\x92\x51\x81\xcd\x36\x85\xa5\x26\x67\x7e\x6d\xca\x3b\x89\x53\xa4\x29\x23\x7c\xe9\x7f\x42\xb3\xb5\xe6\x3c\x5d\x7c\x2c\x16\xc5\x16\x54\xcc\x6a\x6a\x29\xd5\x26\xc3\x33\xe6\xf9\xe6\xec\xf0\x83\xef\xc5\x2e\xe0\x60\xb2\x4b\x83\xd9\x6d\x8a\x51\x25\xd1\x59\x53\x18\xea\x20\x4b\x56\x53\x18\x2a\x99\xd6\x5a\x37\xb5\x7c\x60\x63\x49\x06\xd0\x4d\x6d\x06\xd0\x4d\x10\xef\x2b\xda\x2d\x5a\x56\x93\x45\x1a\x88\x6b\x53\xd4\x69\x81\x47\xab\x3c\x52\x72\xa1\xd7\xd6\x15\x91\xd8\x79\xdf\xf5\x86\xd9\x73\x0a\x53\x05\x94\xdb\x86\x29\xe4\x7f\x59\x43\x62\xcb\x6f\x8a\x52\xc5\x21\xd1\x14\xa5\x4a\x86\xa7\xe6\x94\x32\x6c\xb8\x61\x82\x32\xa0\x21\xeb\x4f\xa7\x3f\x59\x7f\x60\x52\x96\x76\x73\x8d\xb7\xe1\xc4\x69\xfc\xef\xfd\x48\xff\x0a\x19\x85\xe7\x09\xf8\x52\x50\x20\x9a\xa4\xdb\x8e\x2a\xdc\x14\x94\x5a\x3f\x77\x88\xa2\x50\x47\xf4\xbe\x26\xd9\x94\x2c\x04\x4d\xa2\x29\xc8\x97\x76\xd8\x68\xca\xae\x3a\x64\xad\x60\x57\x29\x2c\x15\xab\x6c\x13\xd6\x04\x28\x57\x53\xfd\x7c\x62\x4f\x9a\xe4\x52\xd2\x1c\xb4\x9f\x58\x5a\x89\x1d\x69\xb2\x59\x93\xf9\xb7\x1d\xb2\x66\xb0\x66\x87\xac\x19\x5c\xfb\xb2\x61\x13\x3a\xd2\x1c\x86\x8a\x4f\xbf\x9d\x8a\xc8\x63\x17\x9d\x32\x28\x71\x27\x9d\x26\x28\x04\x9e\x22\xa8\xf1\xbd\x09\xe2\x7d\x13\xc4\xb3\xcc\x2f\xf0\x00\x55\xe7\x27\x32\xa2\xa9\xfa\x7e\xea\xbe\xd4\xa6\xea\xfb\xa3\xf2\xbd\x2c\x64\x2c\xb2\xaa\xf1\x7f\xc4\x00\x09\xa7\x40\xd1\xda\xf5\xe6\xe0\xca\xb3\xcc\x49\x2c\x90\x8b\xf1\x73\xcc\x2f\x27\x1d\x4d\x7f\x97\xed\x63\x19\x9f\x30\x2b\x05\x45\xbc\x5d\x2f\x1f\xa5\x05\x51\x04\x5b\x74\x75\x7e\x8e\x8d\xcc\xde\xa0\xf3\x9a\xaa\xf3\xa7\x1c\x6a\x6d\x97\x28\xe6\x6e\x94\x11\x1c\xc4\x63\x93\xb8\x0b\xda\xaf\xa9\xce\x27\xb1\x31\xcd\x26\x6e\x8e\x8d\xf2\xcd\x63\x8d\x69\xca\x37\x4f\x2c\x4c\xbb\x5d\x1d\x3f\xfd\xdd\x5e\x21\xfe\xd7\x96\xe3\xd8\xdd\x16\xb4\xb2\x82\xb7\xb6\x58\xe3\x59\xf4\x70\x2c\x1d\x23\x8b\x64\xa7\xfc\xf4\xa9\xb1\x5d\xdb\xed\x15\xe4\xd9\x2b\x98\x67\xc7\xc8\xc2\x56\x1c\x23\x1b\x43\x44\x93\xd5\x9c\xf0\xab\x26\xd8\x0a\x9a\x5c\x7b\x94\x8a\x97\xf9\x7f\x4c\x6f\xe6\xcf\x31\xb2\x85\xf7\x4d\xef\x5f\x8a\x13\xd4\xe6\x00\x5a\xe4\x24\xe5\x91\xd9\x88\xdd\x6a\x8e\xa0\x85\xa3\x3c\xde\xcf\xf4\x7e\xdb\xb1\x48\x0b\x66\x31\xff\x1a\xe8\x93\x93\x05\x64\x7c\x7d\x32\x8f\xf9\xfc\xf0\xa6\xfc\xe9\xf9\xc1\xa1\xe2\x0b\x6d\x08\xd1\x86\xb7\xbb\x4b\xfc\x6e\xf8\x45\xfa\xec\xa2\x05\x39\x57\x5d\x05\xff\xc9\xf0\xdc\xe7\xf5\xbf\xff\x2d\xa4\x94\xe8\xb3\xe2\x1f\x06\xcf\x72\x3f\x35\xbe\x97\xb8\xfe\xf9\xbe\xeb\xfb\x0c\x5a\xe5\xfd\xd7\xc6\xb3\xab\xb5\x0c\x1a\x50\x60\x67\xa7\x03\x05\xb3\x76\xfe\xbf\x7d\x5d\x6d\xf9\x41\x56\xc1\x70\xa2\xae\x82\xff\x6b\x2e\xe4\xbe\xd8\x90\x9b\x11\x2d\xaf\x44\x94\x16\x55\xe1\x7f\x0d\x2b\xe8\xaa\xf0\xbf\x66\x23\x75\x4b\xe7\x39\xf9\x5d\x15\xfd\x49\xeb\xd0\x17\x85\xaa\x42\xc1\xa2\xd0\xce\xce\xfb\xa6\x60\xcd\xb3\x72\x4a\x0f\x9e\x45\x40\x58\x53\x5f\x65\x88\x65\xc0\x0e\xb6\xa5\xbf\x55\xe3\xcd\x41\xec\xaf\x10\x1f\x89\xa3\x2b\xd8\xf6\x63\x8c\xef\xaa\x73\xba\x30\xa7\xab\x29\xa0\x47\x2d\xca\xe0\x7d\x51\xd0\x78\x96\xa1\x99\x19\x72\xb0\x2d\x33\xb2\x1a\x1c\x14\x31\xba\x6f\x8a\x46\xa5\x41\x19\xd3\xf1\x80\x75\x1b\xd3\x3b\xff\xcb\x98\xce\x9a\x6d\x26\x39\x1d\xda\x96\x1e\xa5\xb0\x3b\x1a\x97\x29\xde\xec\x50\x5a\x79\xc1\x14\x33\x20\x85\xab\x72\xba\x94\xe9\xbe\x4f\xd1\x0a\xbb\xe3\x71\x1b\x3d\x9a\xe4\x4c\xd9\xa6\x45\x0c\x77\xed\xca\x6a\xb3\x7e\x28\xf0\x2e\x0c\x05\x8e\xc7\xe5\x7d\xe1\x5a\xc8\x25\xd2\x8b\x28\x66\x53\x08\xd7\x42\xb2\x92\x5e\x8a\xbd\x03\x19\x80\x34\x8d\x8d\x08\xe6\x5e\x0c\xeb\xc8\x95\xdc\x55\x09\xaa\x81\x85\xe9\x55\xf6\x76\xc6\xe4\x80\xd7\xdc\x38\xbd\xc9\x5c\xce\x24\x35\x99\xcb\x39\xcb\x4d\x01\x82\x9c\x55\x07\xbc\x72\xd2\x9a\xac\xe3\x6c\x93\xa6\x68\xc9\x70\xe8\xee\x80\x57\x78\x41\xb3\x7f\x20\xe3\x51\xdd\x52\xac\x09\xdd\xf1\xad\xac\x81\xe3\x5b\x99\xc3\xa6\x00\x41\x56\x5d\xc9\xe6\xc9\xd3\xd9\x95\x6c\x9e\xfc\x3c\xbd\x0b\x4b\x14\x53\x74\xef\x0a\x88\xa4\x3f\x87\xbb\x7e\xde\x7f\xe5\x42\x1a\x14\xb8\x88\x73\xd2\x45\x30\x8b\xe6\xf8\xd7\x5c\x51\xfd\x2d\xec\xc4\xae\xea\xa2\x98\xa3\xeb\x00\x58\x8e\x7e\xd7\x0c\xf4\x3f\xc5\x83\xf6\xae\xe9\xe1\xd4\x75\x2d\x67\x44\x96\xee\xe0\xd7\xc8\x9c\xdd\xc1\xaf\x6c\xb9\xe1\xe5\xcd\x72\x0d\x91\xcf\x99\x50\xee\x7a\xa2\x5c\xba\xca\x48\xe1\xe6\xee\x2a\x23\x45\x9e\x91\x3e\x9c\x47\x04\xbe\x33\x4c\x0d\x03\xd2\x80\xd9\xc2\x43\xfe\x1d\xf6\xb8\x72\xd3\x93\x43\xb0\xef\x5e\xbf\xfc\xef\x80\x56\xf6\x8f\x03\x5a\xd9\x8f\xbb\xb0\x61\xb9\x63\xbb\x03\x5a\x3f\xed\x29\x79\x0d\x61\x5a\xdd\x11\xad\x1c\x08\x47\xb4\xb2\x3c\xbb\x96\x8b\x0d\xa3\xd2\xa9\x24\x4f\xeb\x8e\x68\x8d\x5a\xd0\x77\x13\x48\x87\x26\x90\xfe\xb4\x61\x23\xc4\xf6\xdd\x1b\x36\x13\x72\x28\x82\x97\xf6\x0f\x11\xcc\x01\x38\xbc\x62\x69\xef\x30\xd3\x48\x7f\x3f\x2d\xa2\xa3\x69\x75\x27\xc6\x67\x47\xd8\xba\x9d\xea\xf6\xb5\x2b\x44\xb6\xe0\x59\xe8\xc7\x2b\x10\xa4\x89\x37\x1f\x0d\x63\x3e\xed\x50\x62\x15\x4f\x6f\x93\xac\xc2\x69\xf5\x8e\x4e\x7e\xa2\x7e\x27\xe3\x6f\x57\xd4\x2b\x10\xe7\xae\xa8\x57\x82\xd9\xba\xa2\x5e\xb1\xb1\xf4\x53\x28\x5c\xf0\xe3\xfd\xa7\x1b\xac\x18\x59\xba\xc3\x5e\xb9\x2d\x14\xf6\x8a\x91\xa4\x2b\xec\x95\xe0\xaa\x2e\x88\x0b\x59\xa2\xfb\x4f\x17\xe8\x44\xfb\x75\x45\xb9\x12\x8d\xd7\x1d\xe5\xca\xb2\x5c\x9a\xe6\x18\x9d\xfa\x55\x64\x30\xe4\x7d\x85\x48\xb2\x8d\x7e\xaa\xc1\x0a\xe8\xb2\xff\x34\x83\x15\x50\x66\x57\x94\x2b\x46\xa2\xee\xa8\x56\x66\xf4\x92\x41\x32\x46\xa6\xae\xec\xf4\xe4\xa5\xea\xb7\x8c\xbc\xdc\xae\x8a\x51\xc5\x88\xd4\x6f\x21\x0e\xe1\x73\x02\xb3\xd4\xcf\xff\x1a\x1f\xf3\xa3\x90\x54\x92\x52\xf7\x9f\xa4\xdf\x89\x96\xec\xb7\x9c\x9a\x30\x82\x5b\x2e\x3f\xce\xe5\xed\xf1\xd3\xde\xad\xf6\xf9\xfe\x51\xfb\x79\x7e\x64\x60\x85\x51\x3d\xa2\x07\xc6\xf3\x78\x3d\x42\xaf\x43\x56\xb9\x07\x1e\xad\x07\xfb\xe1\xd1\x7a\x20\x7d\x38\x64\x15\xc6\xf7\x08\x51\xc9\xb1\x79\x4c\x2f\xfd\x69\x03\xb2\x21\x95\xab\x9e\xf8\xbf\xae\x5c\xf5\x40\xf6\xba\x72\xd5\x93\x1a\xbe\x3f\x97\x9e\xff\xcd\xef\x90\xe8\x4e\x89\xe4\x3a\x5e\xd1\x3d\xba\xcf\x90\xe8\xde\x48\x64\x3e\x26\xe3\x33\x0a\x6f\x68\x0d\x73\x37\x8d\xc9\x7b\x6e\xe4\x59\x6b\xba\xf0\xbf\x68\x8c\x88\x36\x26\xa1\x46\x23\x94\x0e\x67\xc4\x99\xa6\xfe\x97\xab\x66\x28\xa5\x64\xcd\x8c\x0e\xe5\xae\xaf\x33\xbd\xd9\x8b\x4d\xeb\x3a\x81\x9f\xd1\x68\x07\x2c\x50\xa3\xa0\xe5\x70\xf6\xe1\xd4\xf5\xb9\x07\xc7\xac\x13\x19\x2d\x61\x28\x95\x3d\x66\xde\xe1\x54\xf6\xb9\xfa\xc6\x6c\xc6\xb7\xe5\xb9\x68\x36\x68\x4f\x2c\x67\xe6\x7d\x63\x2d\x18\xb0\xbd\x06\xe3\xf3\xc6\xee\x1a\x0c\x34\x29\xcf\x3d\xf8\x88\xb1\xb8\x8f\xbc\xb0\xf8\x54\xa4\x05\x65\x9a\xac\x20\x81\x87\xe3\x56\xc3\x46\xc6\x2a\xa4\x62\x14\xf6\xa1\xdc\xf1\x29\x00\x57\x87\xc2\x56\x49\x61\x33\x64\xba\x27\x25\xcc\x70\xd8\x6a\xe4\xbd\x21\xb9\x9f\xda\xa4\x75\x38\x6e\x35\xec\x7f\xac\x72\xe5\xc7\x22\x31\x1c\xb6\xca\xa6\x53\xf2\xf9\xe5\xf3\xbd\x1c\xe3\x9d\xe7\x4b\x1d\xf2\xfe\xed\xca\x9a\x34\x28\x0a\x99\x33\x47\xad\xb2\xef\x1d\xb5\x9a\xfb\x71\x6c\xa2\x78\xe3\x79\xf5\xa6\xcc\x14\x6d\x26\xb9\xe4\x59\x24\x6f\x3c\xbb\xb6\x7c\xe3\x07\xc5\x1a\x7f\x5a\x34\x49\x59\x94\x4d\x24\x31\x62\xc5\xc1\x52\x7f\x67\x6c\x5e\xa3\xb4\x57\x34\xe2\xdc\xc0\xa3\x78\x8d\xd2\x7e\x91\xfb\x8c\x63\x5a\x04\x56\x60\x06\x5e\xb1\x3d\x1a\xf7\x50\x5e\x1d\xac\x2a\xa3\x68\x8d\xa2\xf6\x0f\x25\xb8\x04\x56\x34\x14\x38\xbb\x7c\xbe\x37\x81\x19\x70\x39\x34\x00\xde\x37\x81\x0c\x40\x60\x86\x42\x7f\x0a\x34\x2e\x7c\x2f\x82\xa3\x28\x8d\xea\x4d\x99\x25\xab\x2f\xab\x0a\xc5\xd5\x6b\x16\x8a\xab\x67\x20\x33\xe4\x22\x58\x13\xbc\xa2\x7a\x9b\xd2\x80\xe0\x1a\x2b\xcf\xcd\x32\x48\x48\x50\xba\xfa\xca\x94\x54\x4d\x01\xcc\x52\xe9\xeb\x49\x7d\x34\xaa\xa7\x20\x53\xa4\xc8\x5b\xd2\xe8\x0c\x55\xac\xad\x6c\xfb\x6a\x66\xc4\xff\x9a\x82\x48\x71\xa3\x99\x19\xa5\x7f\x65\xb3\x27\xd9\xda\x68\xce\xc8\xc7\x9c\xbf\x18\x9b\xc2\x17\xde\xb6\x3c\x17\x8d\x20\x3d\x2a\x30\x17\xcc\xee\x10\xe6\xa6\x32\xa7\xc6\xdc\x44\xc4\x1a\x4d\x88\x96\xc2\x08\x34\x03\x2c\x62\xd3\x2e\xe7\x72\xe8\x2e\x4b\x31\xf8\x61\x51\x07\x19\xf1\x4f\xd3\x19\x98\x34\x86\x2b\xd6\x4e\x11\x01\x46\x17\x22\x05\xde\xd2\xcd\x0e\xe3\xf8\x1d\x5d\x8e\xbc\x80\x66\x46\xbf\xf5\x9c\x1e\x84\x91\xc1\xc0\x3d\x86\xdc\x92\x7f\xcb\x74\x33\x86\x02\x0e\x98\xf1\x61\x08\x10\x8d\xa9\x3e\x00\xf4\xfe\x34\x93\x01\x7c\x72\x0c\x05\x3a\xc3\x05\x86\xf1\x96\xb0\x01\x01\x68\x00\xf7\x8d\xb1\xeb\x03\x1a\x54\xa4\x73\x24\x90\xf1\xd3\x5c\x36\xe2\xd7\xc6\x10\xb5\x6c\x41\x05\xd7\xf6\x89\xeb\xe3\x05\xd8\x64\xc4\x06\xd8\xb0\x03\x04\xa2\xdf\xc8\x05\x3b\x76\x95\xf8\xe7\xbe\xde\xe5\xa7\x5d\x79\x96\xa3\x16\x46\xb3\x0b\x54\x1d\x19\x68\xec\x22\xf9\xd3\x9e\x01\x3a\x0c\x40\x14\xc7\xbe\x3f\x76\x53\xcc\xf7\xa6\x98\xef\x15\xbe\xce\x0d\xaa\xf0\x5b\xd0\x1a\x43\x68\x1d\xc2\x27\x87\x2a\xe6\x92\x4c\x6b\x1c\x9a\x00\x6e\xfc\xc3\x08\xa3\xd0\x73\xd8\x58\x09\xa3\x3a\xbc\xe6\x7c\xa0\x60\xe3\x08\x95\xe3\xf0\x04\x64\x8d\x55\x60\x17\xfc\xe6\x50\x81\x5d\xa2\x18\xc7\x61\x82\x43\xd0\x61\x02\x79\xdf\x04\xd2\xbf\x36\x74\x1c\x10\xe3\xd0\x12\xaf\xf4\x67\x02\x33\x21\x82\xe4\xd4\x8f\x4c\xa2\x50\x5e\x62\x54\xc7\x29\x58\x00\x6c\xe9\xf4\x0a\xa7\x83\xd3\x2b\x9c\x01\x9c\x22\x88\x43\x7e\x8a\x80\x48\xb5\xe3\xd4\x8a\x71\x08\x4e\x13\xc4\xf7\xda\xa3\xc8\x50\xa7\x57\x8c\xf1\xf8\x84\x32\x1e\x11\xc4\x4d\x72\xa9\x70\x37\x3c\xe3\x7a\xeb\x7f\xf2\x82\x08\x88\x58\x3f\x2e\x13\x90\x19\x55\x5e\xce\xf2\xd9\x03\xf2\x91\xf4\x29\x82\xf4\x50\x8d\x5d\xbc\x5a\xe3\x7e\x4d\xd8\x59\x34\xf9\x2c\x26\x72\x8b\x0e\xc5\xd8\x4e\xe4\xea\x1c\xb7\x11\x5b\x83\x36\x14\x6c\x44\xf6\xcf\x21\x54\xcf\x44\x4c\xde\xb8\x95\x44\x00\xb1\xc6\x8e\x0b\x4a\x28\x0c\xa1\x7a\x26\x92\xd0\x0e\xb9\x2a\x26\xd2\xc6\x8f\x5b\xc1\xe7\xec\x76\xe5\xf3\x9c\x48\x31\x3a\xe4\x8c\x98\x48\x52\x3a\x1e\x53\x82\x88\xfc\x28\xba\x9c\x03\xf9\x98\x32\x4e\xe4\x63\x42\x60\xa1\xcf\x4b\x48\xc6\xf9\x38\x49\x00\x42\xbc\xbc\x0c\x9f\x8a\x95\x43\xc8\xff\x4a\xa0\xc2\x78\x4c\x1a\xbb\xe8\x31\x69\x6c\x83\x47\xa4\x21\xf1\x3c\x26\x6d\xe2\x8b\xc7\x3f\xfc\x1b\xc6\x3e\x19\x87\x17\xde\xb3\x4f\xc2\xe1\x85\xbb\xee\x93\x02\xeb\xc3\x9e\x77\xfb\x21\x00\x11\xed\x93\x69\x5f\xf8\x41\x11\x64\x39\x3b\xfb\xe4\x08\xb2\x1c\x96\x7d\xf2\x5c\xe4\xbe\xd9\xa7\x6e\xc2\x6a\x7e\x18\x7e\x83\x51\x28\x63\x42\x78\xf6\x3e\x19\x2e\x5d\xda\x5f\xae\xa0\xdd\x21\x04\x14\x19\xdc\xe5\x2a\x99\x28\xaf\xb5\x4f\x9e\x97\x5c\x22\xfb\xac\x69\xc8\xf9\xd8\x67\xaf\x78\xcb\xb3\xa9\xce\x25\xb1\xcf\xef\x5e\x4e\x93\xb3\xb7\x40\x8e\xdc\x3e\xbf\xe8\x43\xfa\x30\xd9\x61\x5b\xfb\xac\x1c\x0b\x8d\x67\xa3\x37\x36\xbe\xf0\x0e\x98\xf8\xc1\xc1\x11\x59\xe0\x7d\x36\x65\x13\x03\x15\x12\xb3\x41\x88\x32\x93\x44\x68\xde\x15\x6c\x30\x91\xc4\x79\x5f\xbc\x01\xd2\xc5\xe2\x4c\x0a\xa1\x4b\x00\xa8\x89\x10\xa9\x7d\x79\xf7\x7a\xc6\xb0\x78\x7d\x27\x3e\x31\x60\x11\x42\x15\xd9\x3b\xf0\xf3\xec\x2a\xff\x5b\x6a\x67\x14\x4a\x47\x42\xce\x96\x7d\x79\x13\x11\xa7\xdb\xd5\xa1\x6b\x6c\x1a\x85\xdf\x16\xee\xed\x7d\xdd\xfc\x06\x3f\xfc\x76\x26\x00\xef\x7d\x35\xfc\x33\xa3\x58\x85\xa3\x64\x57\xac\xbb\x9e\x79\xdf\xe8\x4f\x76\xc9\x6a\xa0\x65\xd8\xe6\xbe\x2a\xe1\x02\x87\x63\x35\x1a\x34\x47\x76\x5f\x8d\xb3\x0c\x63\xd8\x37\xcf\x3f\x9d\x28\xc3\xff\x8c\x34\xb1\x6f\xaf\xef\x33\x8d\x6e\xc2\x8b\xe6\xd4\xef\x9b\xa3\xe2\x38\xa3\xd2\xa4\x66\x90\x5a\xbb\xea\x7c\x51\x2e\x7a\xdf\x44\xf8\x67\x10\xc3\xc3\xe4\x85\x43\x2f\xd0\x80\x33\x61\x33\x35\x9b\xe9\xc8\xfd\xb0\x17\xa3\x5a\xd9\xee\xe5\xa5\x23\x6d\x14\xa7\x7e\x86\x0e\xe1\xaf\x36\xf2\x9c\xee\xc5\x0b\xb6\xf2\x46\x31\x21\xa1\xac\x98\xb2\xf0\xc4\xbd\x38\x0b\x43\xd8\xe8\x5e\xbc\xa6\x3c\x7b\x4d\xb3\x64\xc5\x90\x5e\x36\x41\x79\x17\x95\x51\x18\xd2\x0b\xad\xc5\x8b\xb8\xd2\xa6\x32\x81\xb0\x0d\xea\x4b\x3b\x3f\xcc\x7a\x21\x4d\x56\x65\xd1\xc8\x9d\xb4\x2b\x56\xa1\x83\x39\xd9\xeb\x4b\x79\x08\xad\xaf\x10\x4f\x93\xa6\x9c\xd9\x93\xaa\x35\xcf\x6c\x9c\xea\x53\x96\xcb\x73\xaf\x5e\x55\x8e\x4c\x7d\x69\xa7\x5b\x2d\xf3\xe7\x0b\x93\xce\xd6\xaa\xef\x32\x67\x63\x34\xa7\x51\x64\x7e\xdb\xab\x22\xa6\x0d\xd7\x1d\x20\x77\xcb\xae\xf8\xe0\x32\x7d\x7e\xb8\xff\xfb\x5f\x21\xe6\x74\x77\x34\x30\x8a\xf7\xde\x95\xd4\x22\xd2\xcf\xfe\x2f\x18\x38\x7d\x08\x87\xd5\x3f\xdb\xb1\x3b\x9f\x47\xb4\x84\xbd\xab\x70\x07\x77\x4e\x77\x41\x9c\xc2\x0f\x2e\x80\x13\xa1\x79\x77\x3a\x22\x14\x93\x5d\x6a\x52\xa5\xd6\xed\xee\x12\x5e\xa8\xc7\xbb\xb2\x0f\xcd\x84\x33\xec\xdd\xb5\x7d\x60\xd8\xdd\xc1\x68\xfd\x6f\xf7\xd4\x4f\xcf\x2a\x40\xc7\xf7\x61\xba\x23\x27\xef\xae\x21\x80\x85\x60\x1f\x2f\xdd\x19\xc1\x30\xdd\x19\xf3\x30\xdd\x1b\x5f\xbc\x11\xb3\x19\xe2\x4f\xbf\x2a\x80\xc9\xf7\x61\x63\x22\xcb\x35\x1c\xd2\x59\x68\xd3\x59\x4b\x36\xde\x50\xd6\x92\x41\x1f\xf6\x5e\xc2\xcd\xc7\x3b\x2f\x59\xd1\xe1\x25\xe7\x60\xef\x26\x3d\x2f\xec\x26\x3d\x2a\xc4\xbe\x2b\x83\x0b\x97\xe7\x4f\xc7\x2a\x84\x94\xef\xbb\x13\xb8\x14\x5a\x34\xe5\x9c\xda\xdd\x94\x17\xfa\x10\xef\x00\x80\xba\xbb\x8a\x18\xd6\x8a\xdd\xf1\xcb\x80\xca\xf7\x5d\xb0\x75\x28\xdf\x9d\xfb\x84\xf9\x76\xc9\x02\xc0\x5a\xbb\x74\xa3\x42\xce\xc7\xfd\x50\x89\x19\x28\x3f\x1c\x23\xce\x6e\x3f\x7c\xf4\xe1\xd6\x47\xd7\x17\x3c\x3b\x0f\x44\xa7\x0f\x17\x5f\xea\xf4\x71\xe8\x0b\x9a\xf4\x30\xa3\x50\xed\x0e\x63\xc6\x38\xb7\xab\x5e\x17\x49\xbf\xf7\xd3\xa3\xcc\xf4\x9f\xae\x46\x11\x0d\x65\x3f\x5d\x4f\x23\x4a\xe6\xae\x4a\x04\x0b\x5a\xe5\x7e\x5a\x51\x67\x98\x4a\x5f\x54\x50\x21\x76\x39\x83\x2a\xc6\xf8\xfd\x74\x41\x26\x76\xeb\xe9\x1c\x2d\xd0\x7e\x3a\x7a\x98\x45\x14\x36\x6c\xa1\x12\xdf\x7e\x39\x27\x0b\x1b\x41\xba\xcf\x42\x6e\xa8\xfd\xa7\xfb\x14\x44\xf1\xdd\x70\x30\x80\x33\xbb\x6b\x10\x20\xce\xef\x97\x93\xc9\x70\xae\xaf\x5d\x4d\xd0\xa9\x6a\x8d\x71\x0b\x5d\xef\xb8\x33\xbf\x8e\x6f\x88\x8e\xb1\xbf\xf1\x0d\x1c\x2a\x07\x3d\x93\xe2\x6a\xbf\x4d\x07\x8b\x78\x3b\x4b\x4e\xb4\xde\xfd\x56\x7d\xac\x68\x25\xfb\xed\x1c\x38\x2c\xda\xbf\x10\x08\xbe\xd8\xfd\x43\xe8\x70\x95\x2e\xb2\x9b\xed\x8a\x81\xa8\xb1\x7e\xed\xae\xda\x45\x9c\xde\xee\xf8\x66\x1c\xef\xfb\xe3\x0c\x37\x31\xb9\xed\x8f\x35\x45\xae\x47\xa9\x3a\xeb\x67\xdd\xdf\xc2\x5c\xb1\x43\xee\x2a\xcc\x45\xe2\x8f\xfd\xa7\xe9\x7c\x0c\xad\xbb\x14\x9d\x15\xd1\xee\x90\xda\xb2\x4e\xb9\xfc\x0e\x39\x5d\x56\x2c\x95\x87\xf4\x94\x15\x69\xe3\xf8\xe9\x29\x05\x00\xc5\x31\x15\xef\x46\x9a\x50\x76\x99\x2c\xfa\x21\x1d\xe3\x93\xed\xe1\x90\x92\xb0\x72\x10\x8f\xd9\xd5\xbe\xd2\x82\x42\x87\x57\xb6\xef\xf1\xd3\x01\x3e\xcc\xe0\x90\x0a\xb0\xa2\xc1\x1d\x92\xf0\x57\x14\x91\x63\x7e\x59\x27\x6f\x28\x2b\x0d\xce\xa0\xc3\x10\xa8\x8c\x41\x01\x0c\xb9\xe7\x0e\xc5\x2b\x90\x91\xe1\xf8\x49\xeb\x15\xe7\xcb\xb1\x08\xdb\x16\x75\xe0\x70\x79\x81\xf1\x27\xcf\xd1\x21\xb0\xd3\x36\x31\x14\xe1\x62\xc2\x83\x0f\x81\x9b\x36\x3a\x5b\x8d\xc9\xe0\x59\x3e\xfd\xf0\xf0\x43\xe0\xa7\x2d\xf7\xdd\xe1\x4a\x03\xfd\xf3\x81\x0c\xec\x50\xb7\xda\x79\x49\x03\x76\xb6\x66\xb2\x56\xb9\xb2\x22\xd7\x1e\xab\x9c\x79\x0b\x03\xb4\x2b\x8b\x67\x5b\x8f\x79\x5f\xce\x4c\xda\xb3\x8f\x23\x27\xee\xb0\x8f\x83\x05\x57\xa6\x4e\xb0\x56\x87\x5d\x1a\xd1\x1a\x0f\xd5\xdb\x05\xca\x74\x6c\xb2\x0d\x17\xda\x97\x6d\x38\x6c\xf9\xf8\xc9\xe1\x1b\x17\xe9\xb1\xc9\x4c\x54\x68\x5f\x79\x29\x0b\xef\xdb\x4c\x44\x7b\xb2\x7b\xb1\xdf\x36\x29\x7f\x8c\xb7\x28\x8d\x1e\xe3\x2d\xb6\x74\x44\x8a\x3f\x8a\xeb\x2c\xe5\xd2\x3c\x5e\x91\x7c\xa3\x89\x57\x24\xa7\x8d\x57\xd9\xc8\xa0\x24\x92\x17\x0a\x0f\x1d\x16\xc1\x99\x55\x4b\xdc\x9f\x69\x28\xa7\x2e\x7f\x9a\x74\xa9\x2c\xd6\xfd\x27\x70\x17\x0a\x12\x1c\xf5\xe5\xf1\x79\xe1\x27\x70\x17\xcc\x5b\x87\x82\x83\x57\xfe\x5e\xff\xfb\x1f\x15\x48\x8e\x2a\x63\x57\x06\x2c\x59\x1b\x1f\xc2\x21\x31\x99\x7c\xab\x47\xf5\xb6\xcf\xaa\x4a\x28\x6e\x95\x69\x6d\xb2\xc8\x87\x69\x1e\xcd\xe1\xe2\xb9\x0a\x0f\x27\xd1\xf9\x50\xdc\xac\x90\xf1\x85\xaf\x78\x9e\x05\x69\xcb\x08\x25\x42\x37\xe4\xca\x43\x4e\x02\x46\xf8\x93\xa8\x2b\xa8\x8c\xc3\x71\x0c\x61\xda\xc7\x4f\xa0\xae\x38\xe9\x8f\x6e\x29\x9e\x8d\xdf\x85\xb7\x8d\xe5\xe1\xe8\xd6\x39\x33\x5e\xc5\x35\x00\x2f\x3a\x94\x6b\x87\x8c\xac\x47\xef\x9a\x22\xfe\x1f\xc2\x04\xd2\xde\xae\xe7\x0c\x50\x89\x75\xa6\xcf\xf3\xa3\xe7\x70\x96\x17\xde\x94\xf6\x95\xcb\x9f\x20\xda\x63\xc8\x5f\x1b\x45\xf1\x50\xd0\x2d\x51\xbc\xc7\x90\x8f\xf8\xf3\x2c\x94\xc6\xe7\x7b\x31\x12\xf6\xfd\xb0\xd3\x25\xf4\xba\x00\x2d\x59\x1e\x0e\xe7\xcf\x24\xad\xc4\xe1\x8a\xb4\x1c\xdd\xdd\x66\x11\x86\xb4\xbf\xf6\x1f\xde\xb0\xc2\xc6\xed\xb0\x5b\x7d\x60\xdf\xec\x56\x8c\xe8\x54\xdb\x3e\xd7\xe0\x71\xbc\xdb\x3e\x4d\xfe\x84\xcb\x42\xfa\x9f\x43\x91\x08\xdc\xbc\x87\x44\x49\x32\x01\x1f\x2a\x88\x05\x08\xef\x38\x9a\x96\x25\x1d\x1e\x0a\xea\x67\xdf\x1e\xa7\xa6\x8d\x67\x81\x21\x98\x84\x43\xe9\x86\xe2\xc5\x3e\x94\x74\xbf\xc6\xd7\x75\xbc\x49\xf7\x39\xfa\xa7\xe7\xa0\xfc\x29\x7d\xce\xf1\x06\xba\x32\x01\xa7\x25\x5f\x8e\xae\x24\xc8\x15\xb9\xf5\x38\x0d\xf5\xcc\xe3\xa9\x09\xe1\x59\xe1\x76\x7c\x2e\xa1\x8b\xf9\xba\x94\xcc\x25\xba\xec\xa1\x40\x02\x72\xde\x1e\x97\xfc\xa3\xdc\xae\x97\xa1\xac\x79\xf4\xf4\xf2\xf9\x1b\x93\x9a\x67\x5f\xbe\xbc\xbf\x6b\xbd\xe9\x5e\x83\xcf\x76\x90\x10\xf9\xa9\x64\x74\x5c\x3e\xe6\x99\xfe\x5b\x28\xfa\xa8\x16\x87\x4d\xf0\x9f\xf1\xde\x3f\x36\x48\xb9\xf5\xe3\x5e\x75\x4c\xf9\xc0\x17\x70\x06\x7c\x57\x3d\x67\x40\x3f\x89\xb2\x11\xb1\x77\xdc\x3e\xe6\x21\xe0\x36\xd2\x16\x3e\x76\x0b\xdd\xc4\x21\x50\x02\x7b\x14\xe4\xe3\x91\xfb\x97\x0b\xde\x36\x6e\x5c\xe6\xc7\x23\xff\x6e\xa5\x01\x39\x3a\x98\xf1\xd7\x80\x9d\x49\x3a\x6d\xc0\x26\xea\xf4\x9c\xde\x3b\xad\xe5\x07\x9f\xe5\x68\x5c\xe7\xe4\x98\xce\x1c\x9b\x73\xf2\x25\x17\xf9\xf3\x94\x09\x1b\x51\xf0\x9c\x7c\xc7\xe5\x22\x3e\xa7\xae\x95\xa3\x0f\x1b\x0f\x2a\x5f\x38\xed\xd1\xe0\x0d\x6b\x04\x85\x1f\x94\x7f\x90\xa0\x93\xf3\x27\x5e\x52\x02\xe7\x14\x8c\x26\x57\xde\x29\x14\x4d\x78\xc7\xe9\x2c\x35\x11\xe4\x4f\x95\x76\xe5\xa0\x9d\xaa\x43\x45\xe9\xd4\x73\x96\x43\x8a\x47\x85\x82\xe6\xd8\x9c\xb3\xed\xaf\x34\xaf\x32\x70\x98\x91\x4f\x25\xb1\x01\x56\x75\x2a\x67\x0d\x5b\xf3\x5c\x1c\x4a\x90\xf1\x2c\xdb\xef\x39\x3b\xef\x14\x0e\x9f\x2a\x6c\xe7\x52\xf5\x7e\x96\x51\x80\x1b\xd0\xb9\xe7\xa2\x40\xdf\x48\x00\xe7\x62\x4e\x94\xf6\x57\x6f\xac\x10\xa4\x8c\x32\x15\x51\xee\x5c\x1d\xaa\x17\xb5\xe4\x5c\xed\xb2\x4b\x8f\x16\x3e\xe7\x3c\xbe\xc9\x19\x69\xa0\x6a\x06\x79\xdf\xc0\x7b\x86\xb8\xf6\xdf\x8a\xf0\xbf\xb4\x5b\xfc\x37\xe7\xfa\x5e\xda\x8c\xf1\xf8\xb5\x98\xbd\x7c\xae\xc2\x67\x82\xc9\x39\x57\x97\xf4\xc8\xe3\xa3\xf7\xf3\xf7\x26\x2c\x03\x8f\x42\xd6\x65\x86\x7f\xb2\xe9\xfc\x99\x00\x65\x73\x24\x6b\xfb\xb9\xa9\x60\x69\x78\xdf\x29\x9b\x6f\xc5\x8e\x7f\x6e\x0a\xff\xfd\x34\xe8\xf8\xdd\x10\x28\x0b\xef\x67\x89\x8a\x0a\xa8\x32\x61\x45\x15\x53\x19\x9f\x24\xc5\x89\x2d\x23\xb9\x90\x3b\xfe\x2c\xdd\x89\x9d\xf8\x41\x5e\x9f\x89\x06\x76\xcf\x78\x26\x50\x82\xe3\xc4\xa6\x74\x09\x58\x26\x58\x79\xe5\x59\x61\x8b\x91\xcb\x9f\x74\x9b\x53\xd8\x18\xd0\xb4\xa7\xea\xbd\x92\x07\xf7\x54\xbd\xd7\x35\x57\xdf\x59\x15\x9c\x1c\x2b\xd9\x29\xeb\x2b\x78\xac\xb3\x2a\x38\x98\x03\x29\xa1\x92\xb4\x21\x67\x55\xb0\x72\x84\xe4\xb3\x2a\x38\x18\x96\xa3\xc0\xdb\x4f\xa8\xe8\xf9\x93\x3a\x3f\x25\xb6\x4e\xa5\x94\x47\x52\x3f\x55\x2f\x76\xcd\x5d\x76\x0a\xd9\x02\xbc\xea\x6c\x4a\x3c\xc6\x00\x9a\x13\x2a\xd2\x9e\xcd\x4e\x8c\x40\x42\x2b\xac\xf9\x6c\x0a\xbf\x5e\xf8\x5f\x1b\x88\x44\x23\x67\x33\x89\x8c\x40\x24\xc2\x88\xdb\x9b\x5f\x37\xcf\xb6\x81\xf0\xfe\xe3\x8c\xca\xf9\xc1\x62\x2b\x73\x28\xb1\x15\x29\xee\x94\x19\x98\x3a\x6c\xa7\xa4\x56\x20\x6b\xa7\xa4\xd6\x75\xe1\x7f\x09\xfa\x2b\xcf\xa6\x90\xf6\xb5\xa6\x91\x1a\xcf\x9f\xd4\x5a\x51\x37\xcf\xee\x35\xa3\x7d\xf1\x74\xee\x22\xd9\x83\xc1\x77\x9d\x8a\xc6\x25\xc9\xc5\xd9\xbd\x84\x59\x82\xe1\x25\xcc\x04\x0d\x2f\x59\xf6\xc4\x58\xc5\x74\xd3\xbf\xd3\x49\x72\xc2\x86\xf7\x28\xef\x9b\x1e\xfe\xd7\x9e\x84\xa1\x0c\x07\xcc\x67\xbc\x43\x01\xeb\x9f\x67\x5d\x5a\xec\xf1\xa1\x00\x7a\xe6\x6b\xe8\x12\x60\x0b\xca\x8a\xfb\x71\x2e\x9e\x12\x9b\x0b\x65\xa5\xce\xdd\x02\x02\x53\xea\x92\xb1\x11\x59\x4e\x97\x8c\x85\xcf\xab\x64\x2c\xf0\xee\x73\x97\xa1\x92\x53\xb0\x5b\xb3\x61\x4e\x54\x33\x16\x91\xf4\x3c\xde\x20\xf9\x3c\x4b\xa3\x25\xbb\xcd\x79\x38\x90\x8e\x0f\x14\xd1\xcc\xa2\x48\x46\x06\x1e\x7b\x2a\x3a\x97\x8a\x27\xa7\xa2\x73\x81\x86\x9e\x86\xdd\x77\xda\xd3\xa6\x89\x89\xe7\x54\xca\x18\x00\xcb\xa7\x33\x4c\x72\x4d\x38\x3f\x0c\x5c\xf0\x34\x41\x3c\x8b\xa0\x28\x9b\xa7\x82\x75\x01\x7c\x9f\x0a\xd6\x05\xf0\x7e\x2a\x58\x17\xc0\xf6\x69\x08\x7f\x54\x9b\x53\xc1\xba\xd8\x93\xce\x53\xf4\xb1\xc8\x92\xb1\x3f\xd7\x9c\x44\x6c\x00\xda\xe7\xf9\x06\xf5\x65\x42\x4f\x13\x94\x09\x51\x34\x2f\xba\xd5\xa9\x5c\x33\x15\xe8\xea\xa9\x9a\xb1\x78\x20\x4e\x49\xdd\xd4\x88\x39\x55\x33\xf6\x73\xb7\x5f\xa2\x98\x63\xac\x70\x5e\x20\xf5\xe7\xa5\x15\x44\xb6\x30\x76\x25\xee\xd0\xd3\xe1\xbd\x08\x3f\x12\xcb\x81\xf4\x9f\xd7\xd0\xf7\xbc\xaf\xf0\x4e\x56\xc4\x25\x66\x07\xfd\x7b\xcf\xf2\xbd\x8f\xc5\x9f\x32\xe5\x9c\x96\xe1\x39\x73\x97\xd3\x03\x21\x49\xdd\x4e\x33\x9d\x17\x6e\x7b\x14\x42\xdd\xed\x33\x16\x6a\x6e\x4b\x82\x3c\x1b\xa5\x4a\x7b\xde\xbf\x59\x3f\x19\x85\xc9\xe1\x75\xde\xa2\x1e\x26\x74\x5b\x24\xff\xbc\x70\x88\x0b\xd1\xc1\xa9\x67\x3e\x30\xf9\x59\x8e\xdb\x5a\x0a\xdf\x7b\x83\x67\x79\x7f\x3a\xc1\x42\x5a\x8e\xf3\xf1\x06\xcf\xfb\x8f\x97\x3b\x04\x3f\x3e\xb0\x59\x0e\xc5\xfa\x02\xc7\x3b\x1f\x13\x90\x03\xe2\x60\x5b\x72\xb8\x5c\x2e\x48\x9b\xf5\xba\x7e\x1a\x42\x43\x10\xb9\x5c\x90\x76\xca\x11\xb8\x7e\x0a\x42\xc3\x3a\x71\x29\x05\x26\xc1\x59\x97\x4c\xc7\x1b\x01\xe5\xd7\x64\x93\x77\xb8\xd0\x35\x35\xb5\x50\xf3\xdc\xf5\x3c\xf2\x3c\x7e\xcf\x99\x83\x4b\xb9\x76\x88\xa6\xbb\xa4\x3e\x50\x62\xe7\x92\xf6\xc0\x55\x7b\x4d\x32\x49\xcd\x90\xa4\x34\x1d\x0b\xfd\x3d\xea\x2f\xe3\x51\xd9\x5a\xec\xe7\x97\x92\x60\x62\x02\xbb\x94\x04\x93\xe8\xaa\x4b\x91\xbf\xb8\x5d\x2e\x19\xae\x81\x20\x5c\xb3\xe9\xc9\xf8\x67\xa5\x28\x18\xfc\xef\x23\x94\xf1\x4b\xbf\x00\xff\x76\x39\x27\xe6\xe0\x59\xe3\xff\x8c\x4f\xf1\xef\x61\x7a\x97\x8c\xde\x48\x7e\xd7\xb2\x88\x9e\xcc\x87\x32\x5e\x96\x29\xb2\xc5\xb5\xd8\xf2\x91\x09\x5d\xde\x15\xa2\x45\x51\x94\x5d\x7b\xd9\x30\x1e\xb6\x7e\x19\xa2\xb2\xd0\xa0\x72\x87\x7f\x46\x20\x8a\x16\x9e\x4f\x8d\x30\x14\x2d\xa2\x30\xd7\xc2\xb5\x78\x85\x78\x96\xb6\x17\x26\x77\xad\x66\xfb\x19\xcf\xea\x58\x2d\x9e\x6d\x8a\xc8\x8a\x39\x45\xe6\xe0\x7f\xed\xd1\xb0\xfd\x4b\xfa\x0c\x61\xc2\x97\x02\x0a\x80\x58\x5e\xab\x77\x68\xe8\x55\xb2\x79\x30\x9e\xd7\x6a\xfa\x33\xc3\x4e\xa1\x99\x6b\xe0\x5a\xbd\xa2\x3c\x2b\x06\xbe\x33\x3e\xaf\x60\xfa\xdb\xbc\x82\x19\x8f\x60\x2e\xc8\xf6\xd7\xa6\x1d\x18\xb6\x77\x6d\x8e\xa1\x8f\xf0\x72\xd9\xac\x8c\x91\xf3\x52\xd5\xda\x8d\x11\x2a\xdb\xfb\x1a\xbe\x70\x29\x43\x25\xd2\xda\x25\xed\xa1\x62\x07\xb8\x8a\xed\x2b\x2b\x3f\xdc\x6a\x91\x16\xbc\x46\x19\x73\x9d\xf4\x9c\x39\x57\x4a\xca\x8d\x5d\x2d\xab\xf3\xc6\x9e\xfa\xe9\x10\xcb\xfa\x79\x5f\x4a\x6f\x2e\xba\xab\xca\xbc\x42\xff\x55\x14\x45\x9e\xbc\x54\x15\x17\x91\xfe\xaa\xa2\x68\xfe\x53\x4e\xd0\xab\x9e\xfa\x98\xce\xc5\x32\x58\xe0\x9f\x82\xb1\x20\x1c\x5f\x0a\x20\xde\x78\x6e\x26\x96\x67\x69\xd8\xdc\x5c\x97\xa1\xf3\xe4\xa9\xbb\x9a\x74\x7e\xb6\x9c\x42\x8a\xf1\x68\x5e\x4d\x4c\x05\xf2\x55\x43\x77\x65\xfa\x9a\xd2\x09\xb0\x45\x9b\xc9\xa7\xc3\x5d\xdf\x33\xa2\x43\xed\xd3\xde\xa9\x11\x67\xc1\x15\x62\x8c\x37\xee\x52\x88\x31\x29\xe5\xae\x66\x8a\xf3\xbf\x42\x8c\x71\x9f\x5e\xaf\x95\x3c\x82\xca\xa5\x92\xba\xdb\xe7\x59\xe6\xb4\xa8\x58\x57\x97\x49\x01\x26\xd4\xbd\xfe\x59\xdf\xae\x09\x88\x3e\x73\x75\x4f\x00\xdf\x7b\x02\x42\x80\xad\xe8\x2c\x99\xad\xe8\x9f\xef\x3d\x01\xb4\xef\x25\x87\x20\x2f\x39\xed\x2b\xe7\x2a\x5c\xdf\xe8\x14\x8c\x4c\xd7\xf0\x0c\x64\xc6\x65\x86\xdf\x38\x42\xc3\xf6\x44\xfe\x97\xd5\x87\x23\xa8\x28\x63\x14\x92\x6b\x68\x02\x58\x31\x29\x28\x9f\xc4\xbc\xd7\xf0\x09\xe0\x03\x9f\x80\x50\x30\xde\x8a\x0d\x21\xe1\x4d\xef\x03\xdf\xdc\xed\xc6\x65\x9f\xaa\x52\x2d\xb6\xbb\xeb\xa7\x71\xf4\xcf\x55\xbc\xcb\xf5\xc0\xd5\xf1\xd3\x30\x16\xb2\x2b\x5e\x8a\xe3\x25\x07\xe4\x75\xbc\xbb\x80\x1f\x16\xbd\x90\x06\x7e\x0a\x45\xff\x70\x7e\x05\xee\x7e\xee\x2a\x05\xee\x02\xd7\xbb\x7e\x0a\xc5\x27\x3c\xe3\xfa\x29\x14\x0b\x28\xc4\xcb\xa5\x6e\xc9\x11\x71\x1d\xb2\x8d\xc1\x46\x0e\x51\xc4\x36\x3b\x94\x55\x1f\xf9\x46\x56\x7a\x6c\x81\x97\x4a\xe3\x02\xe8\xb9\x0e\x51\xc8\xa4\xff\x34\x8e\xfe\x61\xcd\xaa\x8c\xfb\x99\x51\x05\x05\xe3\xac\xba\x94\xa5\x1e\xd4\xd8\xf5\xd3\x28\x16\xfc\x7b\xd7\x4f\xa3\x58\x3e\x7c\x41\x31\xc1\xd3\xe7\xfd\xa1\xf6\xe9\x4f\xf4\xb1\x6d\x7f\x1a\xc6\x42\x3a\xcb\xeb\xa7\x60\x2c\x14\xde\xba\x64\xc4\x9f\x38\xc7\xa7\x9c\x47\x9c\x7b\x85\x04\x7f\x8e\xed\x4f\x9f\x58\xc8\xaf\x79\x5d\x5a\x40\xf8\x8e\x42\x82\x3f\x5b\x4a\x21\xc1\x00\x03\x2e\x15\xc2\x9d\x98\x2f\x85\x04\x13\x56\x7d\xa9\x10\xee\xc4\x31\xbc\xb4\xa0\x70\xd2\x4b\x79\x1e\xb9\xda\x2e\xed\x50\xd6\xe3\xd2\x7a\x72\x4c\x2f\xef\x48\xfa\x13\x7d\x9c\x3a\xd5\xb9\x05\x82\x77\xdd\xa2\x0f\x61\xec\xd6\xfa\xf1\xfd\x2d\xfa\xe0\x6b\xb7\xd6\x93\x8b\x54\x65\x6e\xf1\xd7\x5e\xb7\xd6\x73\xfd\x53\x4a\xb6\xeb\x36\xb1\x59\x3c\xc5\x17\x7f\x24\xdb\xdb\xc4\x66\x71\x6e\x2d\xee\xa7\x33\x2d\x2e\x9b\xfb\xf6\xe6\x85\x58\x4d\x06\x77\xe0\x6d\xa6\x9d\xe7\xc7\x8b\x9d\xc9\x7f\x34\x19\x4c\xe6\xe3\xcd\x9c\xf1\x3d\x4a\x8c\x80\xe4\xa9\x78\xe3\xe9\xd3\x9e\x37\x37\xcf\x5a\x6c\x4e\xe7\xa3\xcd\xcd\xe6\x50\x12\x4f\x10\xbf\xd7\x23\x7a\x39\x4c\x8f\x37\x33\xdf\x0b\x92\x00\x37\x51\x7c\xf1\x87\xbb\x08\xb2\xdf\xb1\xeb\xde\x93\x57\xbb\xe6\xf9\x4d\xb8\xc7\x0b\xbf\xe5\xc5\xf5\x70\x4f\x96\x85\xb3\x9f\xef\x49\x24\x4d\xb4\x60\x40\x66\x0e\xd0\x3d\xbd\x46\x95\x34\x31\xdb\x16\xb8\xf1\x43\xf7\x0f\xf9\x64\x56\x58\x75\xf8\xf2\x3d\x8b\xec\xec\xd1\x7b\x56\x58\x75\xee\xde\x7b\x16\xd9\x71\xa0\xdc\x4e\xdc\x59\x69\x4f\xc8\x8b\xec\xd1\x7b\x51\x58\x7c\x14\x90\x7b\x99\xf5\x9c\x01\xfd\x14\x80\x5e\x1b\xef\x2b\x4c\x3e\xb2\xc0\xfd\x53\x08\x56\x4c\x71\xf7\xa2\x10\xeb\x5c\xd5\xf7\x22\x87\x31\xe3\x59\xe4\x30\x6e\x7c\xaf\x30\xf2\x38\x44\xee\xc5\xa8\xc8\xcf\x00\x9d\xc8\xe0\xd3\x82\xb0\x27\xb9\x3b\x6f\x7b\x2c\x0a\xcf\xa2\x38\xc6\xca\x5b\xa9\x3e\xf1\x9d\xde\x8b\x5d\x67\xe9\xd1\x1e\x8e\xe8\x98\xf7\xaa\x30\xea\x78\x7c\xee\x55\x61\xd4\xac\xc8\xaa\x6d\x10\x48\xc4\xbd\x7a\x06\x78\xdf\x2e\xf0\xec\x0a\x63\x69\x1a\xdf\x0b\x4b\x53\xf8\x5f\xf4\x30\x7e\x63\x65\xe2\xbd\xb8\x8d\x95\x61\x86\xe5\x9d\x00\x9a\x7a\xcb\x3d\x01\x76\xf5\xde\xb4\x42\x6c\xd3\x4d\xe3\x8b\xdd\xe2\xde\xe4\xd2\x67\xc7\x6c\x1a\x5f\x6e\xb9\x5b\xd1\xc0\xcb\xe7\xd9\xe3\x0b\x7d\x9b\xe7\x97\xef\x3d\x5e\xfe\x57\xed\x26\x02\x09\xef\xe2\x48\x7e\x56\xac\x78\xc4\xbc\xa0\x3d\x16\x95\xf0\x2e\x9a\xe1\x58\x0e\x6f\xc5\x07\x63\xfe\xbd\x8b\x28\x88\xdd\xe9\x2e\xde\x63\x99\x81\xf2\xba\x83\x69\x40\x4b\xf2\x19\xc0\x70\x4e\x13\x5e\x50\xa8\x7e\x94\xaa\xbb\xf8\x54\x31\x42\x9d\xaa\xca\xfb\xf2\xcf\x17\x46\xec\x3d\xc6\xb3\xf6\x18\x6b\x5e\xb5\x66\xac\x41\xf5\x1e\xcb\x1e\xaa\x9a\x01\xfa\xab\x5e\xc3\xcc\xb1\xca\x5f\xd5\xc6\xff\x9a\x81\xc6\xf7\x4a\x64\x10\xa5\xf4\xae\x4a\x4e\xc1\x21\xaa\x3e\x65\x7f\xba\x69\xee\x2a\x96\x13\x3b\xd0\x5d\xb5\x01\x3e\xcf\x5a\x70\x88\x57\xb6\x7d\x42\x87\xef\x66\xe2\x32\xdb\x42\xed\x2c\x9f\x67\x1f\xa0\x0c\xb6\x59\x8e\xe3\xff\x6a\x7d\x87\x17\xcc\x33\x78\x41\xd4\xc4\xb2\x7b\x2b\xbb\x7e\x8d\x9d\xf2\x6e\xaf\xbe\x99\x1f\x8c\xa2\x41\x92\xbb\xbb\x5a\x80\xeb\x75\x73\x59\x9e\x0f\xbb\xcc\x42\x93\x22\x77\xd1\x71\x6f\x45\xee\xa2\xd4\xdd\x5d\xe1\xd0\x11\x0d\xef\x61\x80\x46\x86\xac\x82\x55\x68\x18\xb7\x93\xd7\x43\x92\x82\x6f\xd1\x60\x6f\x27\xaf\xe7\x08\x28\xf6\x16\x25\xf3\x1e\x2e\xb2\x18\x43\xd0\x6d\x60\xcd\xe0\x03\xd5\x2f\xe3\x8c\x0c\xf9\xfb\x59\x44\x05\xe3\xe2\x17\xbe\x87\x09\xc8\xb3\x62\x71\x49\x36\x76\x2b\x16\x17\x15\xf9\xde\x05\xc5\x62\xc6\x76\x05\x47\x47\x96\xbd\x15\x8a\x8b\x8e\x7a\xef\x8a\xe6\x86\xcb\xaa\xec\x2d\x2a\xd8\xbd\x0b\xb1\xd7\x79\x56\xc8\x3e\x3b\x7a\x57\xbc\x3a\x6b\xbe\x6b\xfc\x2b\xe3\x33\x42\x26\xfd\x29\x94\x96\x1c\xc6\xb7\x42\x69\x01\x46\xdd\x87\x16\x84\xdb\x5e\x91\xb4\xa8\x7c\xf7\xa1\xe8\xe9\x4e\x7b\x2f\x64\x32\x03\x3c\xb4\x82\x1c\xd1\x43\x2b\x18\x79\xec\x7e\xdd\x17\x50\xa4\xd8\x5a\xa0\x5a\xf7\x21\x0a\xb9\x09\x0f\x63\xe0\xb9\x3a\x05\x0a\xfa\x1c\x72\x05\xdb\x82\xa2\xbf\x15\x6c\x8b\x1a\x7f\x2b\xd8\x16\xad\xf4\x3e\x95\x48\x22\x12\xd8\x7d\x7a\x0a\x78\xf6\x12\xf2\xac\x29\x98\x79\xf6\x14\x84\xa2\xd3\x4b\x98\x29\x55\xec\x2d\xa0\xa6\xfb\xd4\x12\xc2\xf4\x4e\x81\x2e\xa3\x05\xdf\x8a\xcd\x05\xaa\x70\x2b\x36\x17\xad\xfd\x76\x86\xa2\x40\x52\x6e\xc5\xe6\xce\x1f\x7a\x44\xff\xcc\xff\x86\xac\xf0\x2c\xfa\x23\x31\xde\x97\xb6\x40\x24\xdc\xfb\xa7\x9e\xac\x1f\x26\x7a\x69\x0b\x20\xae\xbd\xa0\x23\x9e\x4d\x7f\xe8\xfd\xa9\x27\x5b\xf9\xbc\x2f\xd0\x29\x3c\xe2\xa7\x8e\x0c\x94\xf4\x5b\x60\xf6\x4a\x79\x87\xdb\xc9\x4b\x27\xae\xde\xcb\x2e\x1e\x8e\xfd\x75\x8a\x04\xbe\x10\x72\xa1\xd1\xa6\xf3\x93\x4e\xc8\x5f\xb7\x00\x8a\x31\x4f\xde\xb7\x27\x2d\xbb\xec\x96\xab\x1e\x3e\x70\x6b\xd2\xd8\xd7\x3f\x31\x7f\x23\xda\xe9\x7e\x04\x73\xe6\x1c\xfd\xc4\xfa\x8d\x48\xbc\xfb\x27\xc6\x6f\x40\x48\xef\x47\x11\xe6\xf0\x81\x47\xf8\x97\xf1\xa7\x38\x9c\xfb\x27\xe3\x7f\xe2\xf9\xef\xa7\xab\x31\x9e\x15\xfa\xcc\x11\x32\x8a\x09\xdc\xed\xfd\x18\x9e\x19\xea\x1c\xa8\x8b\xcb\xe1\x7e\x8c\x54\x60\xf8\xb7\x86\x9f\x35\x7d\x4c\xfe\xbf\xe7\xe7\x45\x39\x65\x13\x3c\x0a\xd3\x25\x8a\xed\x51\x98\x2e\x15\x1f\x9e\x49\x11\xf8\x9f\xf7\x37\xdf\x3d\xb4\xa8\x09\x1a\x34\x50\xd5\xc0\x96\x67\xe5\x20\x18\xbc\xdf\x4d\x02\x1f\x68\x12\x1a\x2f\x08\xab\x9c\x63\xf9\xb8\x5c\x00\x6a\xf9\xf3\x46\xe1\xce\xbc\x71\xb9\xc9\x35\x3f\x68\x13\x0c\x9e\x35\x0b\xb9\x0c\x9e\x59\x51\xf8\x8d\xe7\x55\xff\xe7\xfd\xd9\x9b\x20\x1d\xfc\xd4\x98\x8d\x40\xbe\x67\x76\x52\x9d\x2c\xc3\x23\xb7\x46\x67\x1b\x3d\xb3\x56\x3a\xec\xfc\x99\x95\x58\x60\xd0\xc2\xed\x21\x87\x28\xe1\xa0\x26\xec\xe8\xcf\x4f\x71\xd9\x40\x86\x3d\x8b\x71\x25\x39\x9e\xcf\xe2\x95\xca\x20\x15\x5f\x4b\x84\xe8\xe3\xe2\x5d\x53\xe1\x05\x6f\x65\x5a\x34\xb0\x74\xa3\x4b\x2d\x55\xa3\x87\xa1\x21\x64\xa5\x7e\xaa\xca\x46\x20\xe6\xf3\xd3\x54\x36\x82\xfc\x9e\x45\x67\x73\x62\x04\x3e\x9b\xb4\xa7\x65\x69\x0c\x48\xcb\x92\x4b\xff\x59\x95\x1e\x22\xce\xa3\x67\xd5\xde\x0c\xc3\x7b\x56\x53\x1c\x02\x56\x2f\x5b\xfa\x5f\x5f\x8a\x43\x90\x0b\x19\x0c\x5e\x30\x78\x8d\xff\x45\x70\xa4\x98\x47\x71\xbc\x44\x02\x3f\xca\x85\x84\x77\xe9\x11\x12\x6b\xc2\x5d\xf5\xac\x3e\x9f\xbc\xa0\x65\xee\x34\xf8\x66\xce\xa3\x45\x9f\x4f\x9e\x15\x45\xcd\x07\x9b\xa7\x20\x24\x6e\x06\x21\x46\x3b\x7b\x14\x29\x80\xfb\xe4\x71\x31\x04\xf2\x27\x3e\x9b\x27\x39\x8b\xb4\x19\xe8\xc8\x36\x28\x2f\x0b\xe0\x07\x05\x6a\x73\x42\x8b\x71\x8e\x34\x59\x8c\x59\xe6\x88\x16\x61\x96\x19\x84\x11\x5a\x64\x77\x7f\x8a\x3d\xe5\x85\x37\x1c\xca\x5d\x69\xa2\xeb\xb2\xc9\xda\x0a\xa3\x35\x91\xb1\xfe\x29\x2a\x0d\x14\x89\xf3\x79\x9d\x2c\x9f\x61\x3b\x42\xbd\xd2\x84\xc3\x6b\x3f\x7d\x3c\xea\x23\x93\xfb\xd3\x52\x36\x92\x18\x3c\x86\x6a\x81\x56\x7c\xaa\x29\x8f\x2e\xfa\xd4\x97\x72\xde\xd8\xd4\x44\x46\xf9\x53\x4c\x36\xca\x11\x3d\xd5\x74\x36\x5a\x70\x06\x82\x48\xba\x4f\x35\xa1\x30\x9f\xea\x58\xfc\xca\xb0\x9c\x8d\x21\x1a\xe9\x53\x95\x8d\x61\xf0\xac\x68\x8c\x31\xfe\x72\x07\x3d\xd5\x93\x10\x0a\x9a\x27\x21\x93\xd4\x5e\x9a\x33\x1e\x17\xf6\x8d\x64\xfa\xb4\x77\x87\xf1\x83\xf9\x46\x6e\xa9\xa7\xbd\x44\x87\x82\xa6\xe4\x1a\x9c\x1b\x21\xbc\x0a\xd2\xfb\xd3\x76\x0d\x22\x6b\xe9\x4a\xbf\x40\x2d\x9e\x9f\x8a\xb3\x51\xb4\xe9\x69\xef\x62\x33\x4a\x67\xa4\xd8\x18\x95\xf7\x79\xc4\xc9\x47\xc1\xbf\x9f\xc3\xfc\x7a\x61\x18\x76\x7f\x29\xcf\xd4\x74\x6f\xeb\x8c\xaa\xbf\xdb\x3a\x73\xd5\xbd\xda\xb4\x60\xc2\xa3\x67\x3d\x5d\x0c\x64\xe1\x03\xaf\x7e\x14\xdf\xc7\xb1\xc0\xa4\x2b\x7d\xba\x29\xe7\xbc\x76\xaf\xfe\xc6\x1b\x26\x7d\x63\x98\xb7\x26\x2f\x73\x33\x7c\xa0\xe1\xab\xe3\x05\x2a\x87\xf4\xe1\x6d\x1c\x29\xe6\x19\xce\x3a\xc1\x9a\x0e\x93\x0a\xef\x1f\xef\x22\xf3\x49\x53\xaf\x3c\x5f\x96\x55\x68\xe2\x3d\x7e\x99\x9d\x61\x43\x09\xb2\xc3\x4f\xe7\xda\xa8\x32\xf2\xa8\x88\x70\x5f\x79\x76\x26\x06\x4e\xdb\xfe\x02\xac\xf9\x41\x19\x0b\x62\xf1\x7f\x1c\x9b\x3b\xb3\x2d\x94\x01\x89\xba\x25\xcf\xae\xf8\x98\x95\x06\x1c\x09\xc0\x91\xdf\x5f\xc0\x35\x5f\x38\xb6\x9d\x05\xd9\x1d\xd7\xcf\x81\xdd\x9d\xac\x01\x76\xe8\xf8\x8b\x99\x9d\xb5\x7b\x2a\xe0\x02\xbb\xc3\xdf\x11\x6a\x0e\x47\xfa\x73\xca\x0e\xcf\x45\xda\x3c\x3c\x17\xdc\x55\x3f\x05\x6e\xa3\x84\xf2\xa3\x54\x48\x54\xfc\x79\x0e\x27\xda\x41\x1e\x38\x3c\x15\x3c\x9b\x74\x96\xd8\x45\xca\x62\x0a\x7d\xde\x22\x65\xec\xa3\xe3\xb5\x12\xf0\x83\x29\x87\x57\xbc\x55\xcb\xd8\x58\x8a\x07\xee\xd4\x9a\x7a\x0e\x53\xce\xb1\x3c\xb5\x09\x62\xec\x7a\x4e\x13\x9e\x0f\x4e\xa5\x38\x88\xca\xf0\x9c\xa6\x3b\x3d\x9c\xc6\xd8\xb3\x75\xcf\x57\x8c\xa1\x87\x37\x36\x24\x53\xf5\x86\x7f\x70\x75\x9c\x4e\x68\x00\xc3\x3a\x4d\x3a\x5b\xf5\xf4\xa2\x43\x87\x4b\xa1\xd5\x4f\x1b\x26\x1d\x96\x75\xbe\xfb\x9f\x1f\x5e\xd2\x33\x74\xe1\xcd\x2a\xf2\xff\x73\x39\xd6\x9c\xe9\xfb\xa9\x60\xe5\x23\x51\x5d\x0e\x0f\xe0\x83\xe1\x32\x2f\x19\x96\x54\xae\x42\xa6\x9e\x47\x01\xc4\x1f\x81\xff\x7a\xc7\xcd\x17\x0e\x16\x62\xf7\x5e\x8e\xa9\x67\xb3\xde\xb3\x9a\x48\xa7\xb7\x93\x05\x70\x22\x6e\x27\x0b\xe0\xa4\xdf\x9b\xbe\xe0\x05\x47\xc8\xd7\xbf\xdd\x50\xb7\x33\x28\x30\x2d\xb7\xc3\xe7\x99\x38\x55\x5c\xfb\xc8\xdf\xb7\x89\xe4\x7f\xc5\xfd\x21\x18\xde\xa6\x91\x53\x7e\x2b\x20\x0a\x49\xf3\xa7\x15\x96\x8f\x64\xf9\xe8\xae\x80\x6f\x3f\x9a\x02\x24\x87\xe7\x9d\x82\x34\xf0\xbc\x2b\x17\x92\x15\xac\xfc\xbd\xd2\x94\xa8\x69\xf9\x68\x52\x8a\x5e\xfe\xd4\x92\x78\x14\xac\xbc\xc2\x35\x94\x96\x69\xf9\x88\xfc\x8f\xeb\x3e\x7d\x86\x71\xeb\x0b\x3a\x75\xa1\xa7\x7f\x52\x54\x9b\xa4\xde\x2d\x91\x2f\xdb\x34\xbd\x55\xa4\xe7\xfc\xa0\x80\xbc\xc0\xf7\xdb\xf4\xc6\xac\xfc\x9b\xfd\x36\x09\x94\xb6\x44\x87\x6c\xd3\xa4\xc2\x64\xff\x6e\x82\x36\x4d\x6f\x80\x3e\x5f\x0c\xbd\x40\x1f\xbb\x49\xe7\x07\xa5\x11\x28\xb4\xe8\x82\x55\x13\x4d\x3a\x40\xad\xfd\x7b\x9e\x67\x3d\x67\x90\xb3\x2b\xe4\xfd\x93\xbb\xda\x34\x3b\x64\x7d\xe4\xd9\x88\xe5\x9a\x2e\x67\xc7\xb0\x57\x9a\xfc\x1d\xa5\xa4\xb8\x6a\xd3\xec\x50\xfc\x12\x2a\x66\x87\xe2\xf3\xc1\xa1\xe7\x8c\x71\x76\xe0\x4d\xa5\x4f\x87\xe2\xd3\xc0\xed\xb3\xc8\x0f\x8f\x5e\xc8\xea\x2c\x0e\xbb\xab\x19\xc3\x62\xe8\x3c\x73\xbf\xb8\x52\xd8\xc4\x0f\x26\xa3\xa4\xd3\x45\x64\xcc\x99\x99\xc5\x64\x54\x7e\x70\x68\x7e\xcf\x54\x2d\x0e\xcd\xaf\x99\x7d\xa5\x44\xea\xd3\xe7\x07\xd7\x49\x6f\x21\xf5\xa7\x88\x95\xca\x64\xae\x8e\xd5\x6f\x99\x9b\x9f\x26\x56\x2a\x2d\xac\x8e\xdd\xef\x19\x85\x54\x31\xb2\x94\xb7\x49\x30\x32\xd2\x8e\xb7\x49\x61\x30\x14\x06\x68\xd3\xea\x24\x03\x2d\xa4\xae\x8e\xee\xef\xf4\xf2\x92\xc6\xb8\x0e\xff\x40\x1b\xa7\xdb\xe0\x93\x5b\x03\xcd\x8c\xaf\x26\xb5\xe7\x87\xcd\x79\x09\x7a\x68\xdf\x4c\x6b\x0f\xad\x8e\x87\x69\x2c\xab\xca\x42\xac\x13\x0b\xef\x9a\xcb\xe3\xd3\xe8\xa9\x70\x4a\xda\xbc\x5c\x88\x29\x6d\x4a\x07\xeb\x53\xcd\x1b\xc5\x71\xc7\x19\xb7\x74\x30\xca\xc7\xb6\xa9\x58\xb7\xad\x21\xf5\xa7\x40\x95\x08\x4f\x6d\x2a\x6f\x04\x23\x7d\xbc\x65\x29\x69\x42\xb1\x58\x1b\xe3\x96\x06\xb5\x26\xc3\x45\x9b\x7e\x1a\x54\x09\x76\xaf\x4d\x2a\x24\xb7\x06\x79\xd5\x26\xc5\x4b\xaf\x1b\x47\x5d\x2a\xd4\x1a\xa4\x4f\x9b\xa4\x42\xad\x9f\x73\xf6\x53\xa1\xca\xe0\x28\xff\x34\xa8\x12\x93\x56\x9b\x14\x34\xbd\x16\x28\x55\x82\xa2\xb5\xb0\x1b\xdf\x5c\xb0\x70\x39\x85\xc8\xac\x01\xfb\xb7\x49\x35\x2c\xb6\x0c\x5b\x0a\x54\xab\x9f\x41\x19\x15\xca\x82\x54\xa7\xe6\xac\xf5\x0f\x17\x54\x9b\x14\x21\x13\xa4\x4f\x9b\x14\x21\xf3\x69\x4d\xa5\xe9\x52\x57\xa4\x4d\x8a\x80\xd9\x12\xf4\xdb\x26\x47\xc0\x7c\x3e\x68\xf6\xcd\x87\xe6\xe6\x00\x8b\xac\x9d\x43\x62\x12\x7b\xd8\x26\x15\xa8\x4b\xb2\x97\x36\x49\xfd\xa9\x83\xa3\xd0\x5e\x8a\xf2\x85\xd5\x9d\xcf\x99\x55\x68\x76\x65\x7f\xa8\xe4\xdc\x67\x92\x14\xe4\x12\x9f\x51\x9b\x54\x72\x2e\xc9\x79\xda\xa4\x92\x73\xf1\xa3\xb6\x49\xba\x0d\x59\x1a\xda\x64\xdd\x06\x1e\xdd\x8d\x93\x64\xd7\x2b\xab\x51\xfd\x7c\xe0\x31\x8f\x0c\x41\x45\xe4\x92\x84\xa8\x4d\xc3\x31\x17\x59\x58\xc7\xb1\xb0\xd0\x2e\x22\xc7\xc4\x4b\x8b\x09\xfc\xa0\x4d\xc3\x43\xce\x34\xab\x88\x5c\x65\x16\x15\xc7\x52\xb9\x86\x14\xc7\x52\xd9\xee\x43\xe8\x67\xae\x00\x15\x89\xeb\x0b\x03\xd8\x85\x00\xe7\x44\x49\x61\xd9\x1a\xf7\xaf\x60\x66\xc9\xd8\xda\x26\xa3\xcc\x0a\xb3\xa8\xe8\xee\x1e\x1b\x71\x9b\x76\x87\x07\xc2\xf5\x54\x6f\x22\xa8\xab\x36\xed\x06\x0c\xf3\x81\x20\xdd\x2b\xff\xab\x86\x3b\x8c\x41\xca\xc8\x60\x33\x4a\x17\x19\xb0\x9a\xc3\x90\xee\xac\xd2\x61\x9a\x32\x64\xc5\xb9\x04\xdc\xda\xa6\x43\x80\xdf\x39\xed\x4b\xaf\x48\xca\xd2\x36\x39\x8e\xa5\x31\x60\xe9\x15\xc1\xea\xb5\xc9\x8e\xa0\x0f\xdb\x91\x5a\xd1\x12\x7e\xde\xa6\xb7\xe0\x04\xd7\xe0\x4f\xad\x68\x13\x37\xe9\xe9\x85\x58\x32\x68\x07\xab\x2c\x30\x8d\x53\x10\x48\x0e\xd0\x29\xc8\x23\xb3\xa2\xf8\xee\x8d\x23\x79\xda\xbc\xc4\x3d\x70\x0a\xf3\xc8\x15\x77\x0a\xf4\xc9\xf9\xfa\x49\xf7\x4b\x62\xb2\xda\x74\xb9\x48\x16\xbb\xfb\x12\xe6\x11\xa1\xe7\x12\xe6\x11\x79\xe3\x12\xe8\x13\x56\xaa\x18\xf0\x8f\x04\x73\x09\xd2\x08\x4f\xb8\x4c\x51\x06\x28\x34\xd8\xca\xd6\xba\x84\x6a\x45\x10\xb8\x84\x62\x65\x96\x2f\x11\xc4\x24\x5f\x22\x08\xc9\xe2\xb2\xba\xce\x71\xbd\x05\xe2\xe4\xee\xbc\x45\x10\xc2\x8a\x83\xc2\x61\x62\xb7\x41\x9b\x59\xa4\xdb\xf0\xc0\xbc\x6f\x84\x15\x03\x72\xbc\xc6\xc4\x71\x53\x09\x87\x89\x19\x33\xa4\xea\xf3\xbf\xd0\x44\x0b\xb7\xbb\x31\x55\x8c\xf0\x31\x80\x2e\x23\x52\x0d\x87\x09\x12\x8d\xb1\x62\x0a\x1f\x01\x06\x61\x79\x8f\x90\x00\x83\xf6\x04\xf1\x64\x93\x3c\x97\xbe\xcf\x0c\x09\x63\x55\x2a\x67\xe3\x11\xc2\xee\x9f\x48\xdf\x66\x63\xae\xb2\xe6\xf3\x24\x10\x59\xfd\x0b\xf0\xba\xcd\xaa\xee\x10\xfb\x7d\x9b\xdf\x68\x91\x48\x76\xb3\xca\x3b\x44\xd7\x6e\xb3\x0a\x30\x24\xce\xb7\xcd\x2a\xc0\x30\x85\xc3\xcf\x93\xf1\x8e\x8c\x4e\x78\xce\x9a\xf6\x66\x8f\x96\x67\xaf\x47\xcb\xb3\xa7\x97\xe7\x5f\x7f\x2d\xec\x76\x9e\x85\x54\x8a\x00\x37\x2b\x07\x51\xa9\x9d\x0f\x04\x23\xe9\x99\x0e\x83\xb5\x46\xfe\x5f\x04\x23\xe1\x7d\x83\xb5\x22\x44\xce\x06\x6b\xe5\xde\x9f\x17\x21\x2d\x46\x06\xec\xea\x0b\xff\xcc\x8c\x6d\x36\x38\xab\xf1\x2c\x58\x44\x14\x97\x79\xb1\x5d\xb2\xd1\x80\x25\xb9\x4f\x8b\x4e\x1f\x9a\x2b\x68\x36\xda\x6a\x64\x8e\x17\x91\xd0\x43\xb3\xea\x37\xa4\x56\x40\x9b\x8d\xb6\x1a\xf9\x7e\x35\x09\x21\x69\x7d\x83\x92\x32\x89\x92\x9c\x4b\x12\x82\xb4\x59\x92\xf3\x36\x7f\xba\x30\x55\x99\xa5\x55\xe0\x9e\xc1\xff\x76\x98\xb1\xce\x4a\x1e\x8a\x93\xb3\xcd\x9b\xcb\x06\xe6\xe2\x9b\x95\x9f\x08\x09\x66\x56\x7e\x22\x44\xc7\x59\x5e\x87\xe4\xcd\x69\xb3\x4a\x30\xa0\x12\xce\xce\x1c\x3a\x98\xf9\x4d\xe8\x01\x66\x7a\x33\xfe\x83\xff\x95\xbc\x3e\x27\x6d\xde\xec\xf9\x64\x5e\x94\xa1\x68\x65\xef\x6e\x02\x0b\xb0\xf4\xca\x50\xb4\x72\xd2\x84\xd2\xaa\xcc\xda\x8b\xd2\x62\x56\x8a\xbc\xe5\x61\x2e\xb3\x52\x16\xf5\xe4\x59\x69\xb3\xaa\x38\xc0\x4f\xe7\x22\x9a\x39\x0d\x45\x34\x87\xbd\xcd\x42\x65\x7d\x16\xee\x45\x65\x6d\xfc\x20\x7f\x39\xc7\xa5\x88\x66\x76\x77\x11\x3e\x80\xe3\x5b\x4c\x22\x23\x14\x89\x9f\xf6\x44\x22\xa7\x45\x55\x1a\x50\xbb\xe7\x2a\x0a\xc3\x6f\xe7\xaa\x45\x65\x1b\x54\x2f\x2a\xef\x1b\xd2\x92\xf6\xaa\xf1\x00\x99\xb1\x2a\x3c\x04\x4b\x52\xbd\xa6\x59\x43\x81\xb0\x3e\x47\xc1\x25\x1a\x98\xf1\x6a\x7a\x19\x8f\xe8\xdd\xf8\xfe\x70\x09\x61\x06\xe0\x09\xc8\x8c\x1b\x88\x15\xc5\x6b\x6e\x5e\xc2\x4c\x88\x4b\x48\x07\xe0\xdd\xe6\x66\x0a\x33\x83\xaa\xc1\xd0\x93\x97\xa4\xcd\xf2\x65\x8c\xd8\xf9\xda\xfc\x56\x91\x66\x52\x25\xaa\xd7\x14\x5a\x6c\xb3\x64\xf5\xad\xc2\xd5\x9a\x97\x35\xa3\x54\xb4\x7a\x6f\x0b\x5f\x38\xbb\xc0\xcc\x0f\x52\xbc\x56\x66\xb6\x5d\xff\xfd\x6f\x4b\x8a\xdb\x36\x4b\x9a\xdf\x1a\xe7\xb1\x3b\x45\x42\x54\x8e\xb9\xdb\xfb\x1b\xa9\x6c\xb6\xf3\x22\xe0\xec\x36\xcb\x79\x31\xb3\x9d\xed\xbc\x08\x80\xba\xcd\x02\x89\x4d\x3f\x21\xea\x2f\x97\x4f\x7f\x93\x2c\x64\x62\xde\xb2\x75\x9d\x0e\x9d\x65\x61\x0a\x55\x5d\xee\xe1\x95\x17\x44\x76\x87\xed\x74\x5f\x97\x30\xc7\x6e\xa7\x77\x64\xc9\xd9\xae\x0c\x04\xbf\x79\xb8\x22\x2f\x0b\x36\xe4\x03\x86\x91\x0c\x91\x1d\xe1\x72\x7e\x23\x43\xd8\x95\xc3\x84\x44\xbe\x9d\x15\xcc\xde\x11\xb4\xe6\x21\x37\x77\x2e\xf1\x79\xd8\x43\x07\x2f\x19\xaf\x77\x8a\x61\xda\x47\x03\x37\x1a\xf6\xd1\xb0\xc2\xc3\xee\xa9\xcf\x30\xe4\x86\x63\x41\x77\x3b\x6d\x62\xba\x98\x77\x3b\x23\xd9\xfd\xf2\x86\x50\x12\xad\xcd\x52\x2e\xea\x14\xf1\x67\xde\xed\xc5\x81\x63\xbc\xb9\xa3\x60\xab\xbb\x1d\x54\x9c\x61\x55\x80\x28\x4c\xf8\x6e\x07\x15\x4c\x69\x37\xf1\x9c\xf2\x9f\x7a\xb1\x15\xb6\x91\xd4\x8b\x92\xdc\x40\x6d\xde\xed\x78\x63\x63\x1c\x2f\x69\x69\x42\xbe\x8d\xc2\x56\x3d\xec\x9f\x8a\xf2\x3a\x1f\xf6\x4f\x71\x0a\x0f\xfb\x1c\x21\xe4\x30\x65\x30\x93\xa3\xd9\xd1\x90\x19\x7f\xdd\x1b\x50\x62\xf7\x06\xec\x51\x6a\x08\xb1\xb4\x6d\x7e\xbd\x19\x5c\x52\xaf\x37\x83\xd9\xfa\xa9\x1d\x5b\x87\x83\xbe\xce\x0c\x76\xc6\xf9\x7a\x69\xf2\xc6\x69\x87\x14\xb4\x9f\xce\xf8\x03\x57\x7c\xbd\x13\x4c\xf0\xa9\x44\xd3\xdc\x74\xa7\xdd\x32\xf4\x61\xdf\x04\x1b\xe3\xf5\x4d\xb0\xb7\x4e\x0d\x93\xab\xed\x75\x3c\xb0\x3d\x2f\x3b\xde\x32\x35\xae\xe2\x30\x73\x15\x5c\x72\xba\x70\xbf\xdb\x31\x31\xb3\xb3\x84\x0d\xeb\xb0\xde\xcb\x64\xb1\x1e\x97\xa7\x9f\x25\xbc\x3c\xfd\x19\xf5\x4f\x1d\xd9\x3a\x22\x83\xfc\x10\xb5\xc0\xf3\x2e\xd9\xe4\x61\xa3\xb7\x6c\xf2\x30\xc9\xdb\x99\x7c\xe1\x1e\xaf\x5f\x82\x6d\x74\xdb\x28\x0f\xab\xbe\xed\x4e\xc9\x98\xee\xaa\xe7\x4c\xed\xad\x94\xc5\x4b\xc6\xf8\xcf\xf1\xc0\x07\x2e\x9b\xcf\xb9\xb6\xa7\x01\x76\x73\x5f\x7a\xce\x34\xbc\x8e\x86\x8c\x51\x69\x4f\xe7\xe0\x54\xdb\xfc\xbc\x54\x64\x0c\xff\x5c\x0b\x69\xe2\x91\x33\x05\x76\x64\xad\x67\x46\x89\x90\xab\x81\xec\x6c\x6d\x7e\x94\xf4\x0f\x86\xe6\xb4\xa8\x33\x17\xd0\x73\xf9\x07\xbe\x90\x23\xa1\xd2\x87\x1d\x09\xe1\x0b\xcb\xe4\xda\xf5\xf9\x62\x79\x1d\x09\x39\xc4\xcb\xe4\x1c\x23\x8d\x4f\x56\xbf\x51\xf2\x43\xf1\x1b\x5b\x7e\xa8\x32\xc1\xcf\x79\xb6\x71\xbb\xd1\xa6\x53\x60\x4c\x7f\xc1\x71\xb7\xc5\x6e\x86\xd4\xf0\x68\xcb\x9b\x1a\x2b\xb6\xc5\x65\x92\x85\x7e\xa1\xfd\xdb\x2c\x60\xe4\x07\x25\x1e\x89\x17\xb5\x2d\xb3\x2d\xdf\x21\x4a\x01\x2c\x04\xd8\xb7\x45\x8e\x86\x8d\x5d\xb8\xcc\x96\x0f\xb2\xf1\x17\x39\x16\xd6\x84\x61\xb5\xc5\xb9\x59\x03\xd7\x6f\xcb\xec\xac\xb4\xbc\x70\xf9\x85\xf4\xaa\xea\xd3\x2b\xf2\xf6\xb2\x38\x21\x6c\x8e\xf8\x22\xcf\xc1\xc7\x34\xb5\x28\x4e\xbd\x23\x40\x2f\x8b\xcd\xa8\xcc\xb6\x5c\x09\x6b\xfd\xfc\xf0\xdb\x36\xf0\xd8\x45\xda\x10\x65\xc4\xda\xb2\xc8\xa2\xc0\xa8\x0e\x99\x55\x0b\x1f\x78\x3a\x73\xb5\x2e\x3f\xe5\x67\x4e\xf1\x97\xb6\xac\x3a\x7f\x91\x08\x96\xd5\xd9\x00\xf2\xd8\x7d\xa1\xe5\xd9\x16\x8d\xac\x8e\x22\x49\xb0\xa8\x2c\xab\x6d\x36\x79\xb4\x36\xce\xeb\xc2\x56\xad\xfc\xaf\xb4\x57\x39\xab\x8b\xb5\x1e\xac\x75\xcb\x26\x4b\x17\xdb\x63\x93\x41\xa3\xf2\xc1\x66\xd1\x81\x0f\xc4\x3f\x22\x63\x2d\x9b\x4c\x34\x99\xf2\xcd\xf4\xf0\xba\xf5\xe3\x8c\x5f\x3a\x4c\x2a\x72\xb5\x65\xb3\x00\x1f\xfa\xe5\x15\x28\x28\xec\xcb\x4f\x25\x59\x5b\x94\xcf\xc5\x40\xac\x44\xf0\xb5\xa5\x78\x7b\xb2\xa6\x3f\xa5\x64\xc3\x69\xb5\x48\x29\xf9\xd2\x58\xec\x06\x0b\x09\x3f\xa5\xa4\x6d\x0c\x61\xd7\x90\x79\x5d\x53\x1e\x8a\x8a\x5d\x47\x11\x63\x16\x83\xb0\xe0\x0a\x3f\x1d\xa5\xce\x6c\x6d\x79\x10\x3e\xc7\xc7\x09\x57\xc3\x78\x16\xf9\x0f\x12\xdc\xd4\x96\xea\x4c\x4c\xe9\xb0\x2a\xd9\x14\x5b\xb2\x9a\xf7\x7d\x3e\x90\xb9\x94\x13\x2d\xbc\x55\x65\x80\x55\x26\x5d\xf6\x6c\x55\x7a\x05\x0e\x67\x95\x65\x71\xa1\x43\x5b\x47\xd3\x9e\xa2\xd7\xe1\xb5\x8b\xe0\x52\xa9\x20\xd5\x96\xa6\x14\x1f\xb9\x62\x16\x6b\x18\x51\xda\x16\xc7\xaa\xc3\xe2\x54\xfe\xfa\xc3\xb3\x54\xfe\xfa\xc3\xb2\x1c\xab\xfe\xf9\x5e\x9b\xfc\xf3\x6c\x9b\x4d\x16\xb8\xc9\xe2\x14\xb3\xe4\xd2\x65\x7f\x88\x30\xb6\xa8\xbc\x75\x67\x02\xa5\x37\x7c\x07\xdc\x15\x7c\xd4\x79\xa1\x68\x07\x84\xe0\x9f\xda\xd0\x5b\x9c\x2f\x4b\x77\x56\x5e\x66\xb4\x7b\x97\xd3\xa0\x30\xde\xac\x90\x43\x4b\x58\x52\x87\x96\x54\x46\xa8\x2c\xb8\x28\xda\x8b\xaa\xc4\x71\x9d\x2d\xaa\x12\xc7\x65\xb5\xbc\x2a\x40\x46\x68\x74\xd3\x67\x8f\x0f\x07\x2e\x16\x5a\xb0\x2e\xc4\x31\x19\x02\x29\xc3\xa8\x5e\x25\x61\x99\xfe\x74\xf1\x0c\xd7\xdb\x89\xe0\xb8\xbc\x1a\x43\x84\xbc\x45\xa5\xe2\xf0\xfc\x2e\x2e\x05\x97\x8c\x58\x6d\xd9\x9d\x4b\x3e\xa2\xca\xa2\xb2\x04\x85\x3b\x62\x77\x0a\xb2\x88\x05\xcb\xfe\xa6\x59\xcb\x98\x7f\xb2\x7d\x69\x31\x1f\x2c\xbb\xfd\xa7\xf0\x73\xc9\xf6\x2b\xa2\xe7\xb2\x3b\x49\x38\x13\xa5\xd2\xd4\xb0\x1b\x89\xf6\xad\x72\xcb\xec\xb7\x52\xff\x65\x65\x76\x55\x68\xcd\xa3\x52\x66\x7d\xf6\xe2\x5b\xbe\x8d\xc3\x77\xd8\x6b\x95\x21\x1f\xca\x4d\xc7\x8d\x72\x28\x8f\x59\xf4\xf5\xc5\xe5\xd3\xe0\x16\xa7\x52\xd1\xc1\x60\x25\x6e\x2f\x6c\x9d\xd3\xdc\x21\x03\x90\x17\x60\x61\xe7\x9c\xca\x6b\x06\xfb\x3a\x95\x7b\x8f\x1b\xe4\x54\xc6\x9f\xc2\xf7\xbb\x0e\x73\x26\xe4\x54\xc6\x22\xe6\x43\x59\x60\x2b\x5b\x5b\x18\xa0\xb6\x7e\x1a\x90\x87\x0b\x76\x78\x99\xa0\x74\xe8\x8c\x54\x6c\x65\x67\xa4\x62\x0d\x9d\x81\x8a\x1b\x41\x89\x60\x2b\x1b\x59\x19\xa7\x2a\xec\x5d\x89\x60\x2b\x2b\xe2\x90\x0c\xc4\xb8\xcb\xdc\x2f\x13\x70\x99\x00\xc6\x23\x07\x17\x17\xda\xed\xb4\xdd\x6c\x4b\x25\x7a\x9d\x38\x6b\x4a\xf4\x9a\x28\xe9\xb6\x28\xd1\xeb\xc4\x9d\xab\xc4\xae\x49\x31\xd0\x16\x95\x55\x1b\xb0\x9f\x5b\x33\xcc\x39\xf8\x09\xd8\x6d\x42\x42\x78\xe4\x14\x61\xd7\x3f\x72\x8a\x20\x6d\x3d\x66\xa7\x99\x20\x45\x51\x7f\x56\xf4\x91\x93\x84\x1d\xf1\x98\x9d\xd2\xbe\x44\x1a\x44\xd2\x47\xf7\x1b\xf4\x3e\xca\x7c\xc1\x78\x65\xf1\xff\xec\xd8\x47\x4e\x93\x48\xef\x8b\x0d\xfe\x19\xdf\x3a\xc9\x67\x12\xa1\x78\x55\x8a\xa8\x54\x3d\x6b\xeb\xe4\x09\x0e\x7f\x5e\x1d\x4f\x81\xd1\x7d\x55\x8d\xe6\xa9\xf1\x85\x7c\x18\x19\xf1\xaa\xaa\xcb\xd3\xa7\x07\xb3\xdf\x91\xe7\xf3\xf7\xbc\xf0\xbd\x47\xf8\x6f\xc4\xeb\x3c\x59\x9d\x48\x83\x4a\x08\x3b\xe5\x46\x5a\xe7\x45\x0d\xf6\x3c\xaf\xba\x41\x42\xe2\xac\xa8\xfe\x8d\xef\x35\xe0\x48\x4d\xeb\xec\x01\x87\xc2\x59\x4e\x97\x8d\x01\x28\x90\x3d\x53\xba\xce\x0a\xdc\xdf\x78\x5f\x5e\x8a\x4a\xff\xba\xf1\xb2\xe4\xab\x9c\x00\x2d\x4c\x62\x95\x13\xa0\x45\x48\x5b\x1d\xa1\x1d\x0d\x7c\x5d\x74\x81\xcd\x7c\xdf\xf4\xcc\xff\x5d\x37\xe2\xca\x0f\x0a\x96\x8c\x92\xbf\x2e\x2e\x73\xba\xd0\xc3\xe1\x3b\x34\x24\xbb\xaa\x73\x42\xad\xda\xba\x5c\xea\x83\x67\x4b\xca\x39\x27\xab\x82\xb2\xdb\xfc\xa7\xfb\x66\x95\x0f\xa1\x85\xab\xac\xab\x67\x80\xc6\x3c\x03\x99\x51\x47\x6c\x77\xfe\xd7\x95\x1e\xa9\x71\xb5\x03\xa1\xf3\x7e\x93\x98\xc9\xb3\x4d\x7d\x85\x06\x86\xf9\x5c\xe8\x59\x65\xca\xad\x3c\xcb\x5a\x5f\xf9\x40\x32\x40\xa5\xc5\x5b\x3d\xf0\xfe\xa3\xe7\xbc\xbf\xf9\xca\xcf\x1a\x09\x84\xd3\x67\x3a\xb4\x43\x22\x57\xcd\xba\xbd\x77\x7e\x7a\xd8\x6c\xfe\xcc\x1a\x6d\x45\x3d\xf0\x41\x37\x5a\x21\x93\xb8\x29\x5a\x8f\x6d\xbb\x99\x24\x1a\x70\xa8\xd5\xc2\x10\x1c\x65\xb4\xd0\xa4\x70\xd8\x2c\xb2\x5d\x0e\x0b\x47\x51\x55\x12\x52\x63\xac\xad\xae\x92\x80\xf0\xb9\x3a\xd2\x02\x44\xc4\x5a\x04\xb2\x66\xaf\x2a\xb5\xed\x04\xa2\x61\x75\x6a\xdb\xfa\xe9\x63\xf7\x0f\x19\xb7\x73\xdb\x56\xe6\xda\x22\x3a\xf0\x99\xd5\x61\x0f\xe8\x5d\xab\xc3\x1e\x10\x9a\x57\x61\x72\xe6\x85\x46\xab\x6c\x54\x85\x2f\x86\x5f\xc8\x5c\xb8\x22\xd8\xf2\x69\xe2\xf0\x1b\x19\xa8\x40\x39\xf3\x42\xaf\xcd\xf6\x9d\x34\xe1\xbc\x50\xa8\x47\xeb\x4f\xd4\xa6\x50\x5f\x5b\x9b\x61\xa7\xf0\x4e\x47\x26\x4c\x1c\xf5\x56\x64\xd6\xc8\xa6\x30\xee\x66\x66\x3e\x7f\xd2\x77\x41\xf6\x5c\x9b\xb5\x21\xba\x10\x06\x90\x35\x6f\x87\xcc\x01\x74\x60\x7c\xd9\xa0\x81\xcb\x3f\x64\x05\x65\xca\x5f\x3f\xdb\x46\xc0\x9c\x75\x61\x09\x15\x97\x80\x13\x7a\x95\x69\x7f\xc5\xad\xb1\xf6\x57\xfb\xcf\xd4\x29\x1d\xed\x8a\xa7\x67\xed\xaa\xfb\x4f\x0b\x45\x97\x68\xa8\xec\x4a\x0f\x06\xc7\x55\x7a\x28\xcc\x7f\x6b\x37\x87\xce\xea\xf6\xf1\x6b\x2e\x93\xa0\x6c\xb5\x20\xcd\x56\x65\x87\xfa\x0c\xef\xb4\x69\x88\xcf\xad\xf3\xf1\xfc\x18\x62\x9a\xf1\xff\x04\xf6\x8a\x80\xbf\x3a\xdd\xec\xe7\x7f\x2d\x13\xcb\x36\x94\x3e\x97\x1e\x25\x6f\x83\x7d\x6f\xab\xec\xef\x15\x41\x76\x75\x42\x59\x0e\xaf\xcc\xef\x5b\x85\xc5\x39\x16\x81\x31\xef\xca\x92\x07\x03\xdb\x2d\x98\xa5\xc1\x5d\x82\x19\x73\xb0\x4b\x30\x8b\x64\xb9\xca\xd2\x5e\xb9\x65\x77\x09\x6a\x6c\x14\xa3\x78\x00\xa8\xae\x92\xce\x2b\x3b\x71\xb7\xa4\xc6\x00\x6c\x9d\x66\x11\x05\xf3\xa9\x9f\x06\x24\xba\xc1\x22\x9d\xe0\x96\x49\x93\xf0\x3d\x58\x64\xc3\x76\x98\xc4\x43\x92\x1b\xd7\xf8\xa1\x4d\xb3\xfd\x25\xd9\x68\x5b\x0f\x89\x79\xdc\xd9\xb2\xbe\x0f\x64\x80\x43\x62\x5f\x04\xe5\xf5\x10\x66\x89\x3b\x5d\xb6\xf7\xde\x59\x20\x61\x80\x06\x5b\xf4\x90\x26\xc2\x95\x65\xc0\x0f\x5b\xe4\x90\xa0\x0a\x75\xd2\x14\x06\xff\x9f\xca\xe3\x08\xab\x3d\x25\xb7\x42\xfd\x69\xc7\x1f\xf7\xc5\x69\xf2\xb3\xa0\xa7\x28\xe4\x88\x9d\x42\x39\x45\x75\x58\x4f\x51\xb8\xd1\xa0\xae\xc4\xef\x0f\x42\x39\x31\xbf\x02\x18\x7d\xe4\xba\x53\x86\x07\xf6\xb0\x74\x87\xf1\xe9\x40\xaa\xc3\x67\x81\x65\xc5\xff\xc8\xde\xab\x94\x89\x8f\x39\x7b\x35\xa2\x28\x0a\xdf\x6a\x44\x51\x54\xf9\xd5\x88\x22\x98\x95\xf2\xd9\xd6\x94\x96\x6d\xeb\x25\x69\x1a\xfe\x79\xc9\x18\x04\x83\x35\xa4\x68\xf0\xbf\xa4\x65\x98\x9d\x21\x46\x9d\xf6\x04\x31\x8a\xa7\x62\x55\x02\x2a\x7c\xee\xeb\xad\x8c\xad\xac\xca\xed\x6b\xbe\xf2\x83\x72\x12\x61\x9e\x5a\x5d\x68\x22\x4e\x9d\xf5\xb6\xdd\x93\x83\x78\x2b\x37\x20\x07\x5d\xa1\x07\xa5\xb0\xb3\x5c\x7a\x02\x69\xce\xa5\x27\x06\x2d\x9a\xe6\xac\x83\xf2\x4c\x7d\x78\xad\x35\x94\x4f\x7b\xd6\x08\xf8\x5e\x34\xb2\x13\x95\xa5\xb6\x02\x8b\x5c\x9d\x76\x36\xf5\x7b\xdb\x6a\x58\x13\xcb\xf2\x28\x6d\x16\xcb\x66\x54\x53\x74\x92\xf5\xb1\x0d\x8f\x69\x33\xac\x89\x8b\x52\xf6\xfe\xf2\x61\xb0\xc6\x35\x31\x6b\x8f\x3d\xed\x2b\x5d\x0a\x19\x04\xd1\x4e\x1e\xc5\x46\x78\x94\x2c\x8b\x85\xb3\x9a\x93\x85\xde\x8c\x6b\xca\xa4\x6e\x93\x74\x88\xac\xc2\xe6\x4c\xb8\x3d\x7a\xd1\x36\x49\x89\x08\x09\x9b\xb1\x4d\xd9\x69\x9b\x53\x4b\xe5\x34\x6c\x93\x94\x8c\xac\xc2\x66\xad\xa8\xd3\x9e\xa6\x60\xd0\xa1\xf5\x3c\xbe\x57\x1a\xa9\x8d\x01\x0b\x1a\x35\x68\x4f\x13\x30\x18\x8f\xcc\x6c\x99\xc1\xed\xa7\x14\xcd\x0d\x20\xf9\x36\x6b\x67\x82\x60\xd9\x14\x92\x40\xe0\x52\xdb\x5e\x57\x01\x63\x9e\xa5\x78\x44\xb8\xd8\x66\xdf\x09\x91\xa2\x36\x79\x0a\x7a\x42\x99\xda\x36\xcb\xfa\xba\xd0\xa4\x32\x46\x0c\x9e\x5d\x4d\xe3\xd3\x82\xf4\x8c\xac\xeb\x26\x00\x55\x63\x90\x8b\x34\x87\x70\x8c\x6d\x51\xaa\x1a\xc8\xb6\xee\x94\xad\xb9\x2d\x9b\x9e\xf9\x5f\xba\x14\xd3\x66\x40\xd5\xa0\x3d\x25\x1e\x8a\x21\x6c\xfb\xa9\x4e\xbd\xc5\x9e\xb0\x2d\xca\xb5\xd4\xf9\x5f\xca\xea\x9f\x32\x5c\xb7\x6d\xb1\x26\x0b\x71\x22\x76\xa1\xb1\x5b\xcf\x0c\x4e\x79\x7a\xe2\xf5\xdc\xac\x63\x85\x97\x6c\x56\xa3\xa2\xb5\x6d\x56\xa3\x56\xde\x57\x52\x22\x36\xb9\xd5\xa8\x70\xbf\x6d\xb5\xe5\xb3\xd1\xa0\x52\xa0\xe0\x35\xdb\xac\x27\x01\x18\xdc\x9c\x0b\x2b\x07\x71\x5b\x5d\xfe\x38\xca\xf6\x66\x45\x88\x16\xac\x08\x45\x5b\xdf\x7e\x8a\xd0\x8a\xea\xb7\x59\x0f\xca\xd1\xdf\xa4\x07\x6d\x3d\xe6\x81\xcd\xc8\xac\xc6\x0b\x02\xb8\x24\xe5\x46\xdb\x54\x4a\x6e\x0d\xb7\xd9\x36\x73\x97\xca\x17\x2e\x5a\xb9\xf1\xc6\x7b\xd5\xf1\x83\x93\x48\xcf\x8c\x52\x26\x5e\x4e\xb3\x62\xd0\x93\x78\xb2\x6d\x45\x16\x5c\x06\x69\xa8\x15\x13\x59\x1c\x18\x97\xcb\x73\x33\xd6\x0a\x7e\x52\xac\xcd\xd1\xa0\x53\x28\x45\x5a\xda\x8a\xf0\x65\xf0\x1b\x61\xad\x50\xf2\xb7\x62\x57\x52\xf6\x4e\x31\xc2\x98\xc5\x15\xb8\x0a\xab\xc2\x56\xbc\x30\x99\x95\x6a\xe7\x51\xa4\xdc\xad\x3a\xef\xf0\xc2\x1b\x46\xe4\x70\xd8\xaa\xd2\x13\x30\x6d\x8a\x1d\x4f\x0d\xea\xb6\x49\xcb\xfa\x20\xec\x37\x07\x8f\x63\x0d\xdb\x14\xe8\x50\x3e\x7c\xf6\xa7\x77\x6d\x84\x1c\x6d\x55\x90\x9b\x8d\x0f\x0e\x73\xa9\xcc\x43\x7d\xcb\x9f\x87\x4e\xc5\x92\xa7\xea\x5e\xdb\xaa\x13\x51\x70\x64\xab\x55\xf3\x50\xa1\x78\xf1\x94\x00\x6f\x5b\x7b\x95\xd8\xac\x85\x03\xc8\xb1\xf9\x6d\xed\xd5\xcd\x33\xca\xf6\x5e\xda\x19\x55\xb3\x3d\x1e\x3e\x23\x45\xad\x11\x92\xb4\x35\xeb\xb9\xcc\xee\x5b\xfc\x19\xd6\x27\x55\x6c\x42\x40\xde\x1c\x22\x8e\x48\xbd\x35\xe9\xe7\xf0\x07\x97\x87\x5e\x58\xe3\xae\x50\x78\x18\x8c\x41\x56\x98\x6b\xb7\xd7\x59\x12\xb1\x75\xfb\x69\x62\x1b\xc1\x2d\x9b\x41\x56\x88\xf5\x9b\x41\x56\x58\x68\x37\xe3\xa8\xea\xa7\x53\xab\xf4\xac\x61\xb7\xaf\x20\x74\xbc\xb0\x29\x4e\xa8\x02\xc0\x3f\x16\xb0\x6d\xbc\xa0\x82\x34\xe1\x72\xce\x0b\x03\x97\x07\x64\x5e\x18\x86\xcb\x37\x2f\x4c\xce\x70\xd0\x25\x37\xea\x90\x8a\x0f\x1b\x50\x6c\x04\xb1\xd6\x6d\x1b\xaf\x8a\x9f\xe9\x12\x2c\x8a\x30\xcc\xb6\x0d\x43\x3c\x18\xd6\xe5\x23\x12\x4a\x86\x80\x2a\xac\xb2\x40\x51\x3d\xc2\xdc\x26\x50\xd4\xbc\xc0\x0e\x5d\xbd\x79\x61\x7e\x77\x45\x03\xc7\x02\xbf\xc9\x2b\x52\x93\xdd\xbb\x6d\x6f\xb5\xe6\xc1\x0f\xf6\xd9\x66\x50\xbb\x4d\x00\x19\xf4\xae\x10\xdb\xf5\x2f\xa1\xaa\x6d\xdb\x15\x88\xca\x9d\xef\x60\x71\x30\x93\x9b\x83\xc5\x01\x79\x6e\x6f\x6d\x3e\xae\x5c\x87\x82\x83\x72\xdc\x0e\xdb\x41\xf2\xc5\x61\x84\x08\x97\xee\xf1\xe2\x5c\xd2\xab\xd0\x51\x1f\xb3\xc5\x76\x38\x64\x93\x7d\x79\xd8\xf0\xc1\xdd\x77\x18\x6a\x01\x8b\x16\x5c\x6a\x99\xd9\x86\x0a\xdb\xe8\x04\x7f\x6d\x2e\x06\xdd\x3e\x03\x75\x7c\x6a\x0c\x60\xdb\x61\x78\x05\x23\x77\x58\xe7\xa7\x09\x85\x75\x72\xee\x4f\x87\xa7\xb2\xd7\x4f\xa3\x4a\xd8\x21\xf6\xf0\x00\xa0\xd9\x4e\xfb\xc1\xb8\x0a\x5c\x40\x1a\x2d\x67\x3b\x9d\x90\xfe\xf3\x89\x0d\xba\x9c\x97\xd3\x56\x9d\x90\xfa\x56\x87\xe6\x16\x3d\xdf\x6b\x99\x1f\x1e\xd9\x7d\xd2\xa4\x55\xaf\x64\x18\x6a\xdb\xe5\x30\x5a\xbe\xb8\x5c\x15\x38\x7d\x48\xd7\x5a\x97\xd8\x1b\xb7\x9f\xae\x55\x1a\xfc\x4b\xae\x9c\x15\x13\xda\x26\x04\xd5\xba\x44\x71\xd8\xe4\xcc\x59\x97\x4f\xa7\x2a\x2c\xcc\x3e\x50\x7a\xad\x95\x90\x8e\xed\xa7\x8f\x11\x55\xb6\xb9\x9e\x48\x4c\x9c\x9b\xd4\x2f\xec\x46\xdb\xad\x6b\xb9\xf3\x2c\x14\x18\xe2\xe8\xad\xfa\xd6\x70\x7a\x85\x79\x7f\x38\x82\x2a\x84\xac\xdb\xa7\xc1\x9f\xc4\x0b\x89\x0a\xec\xae\x1f\xb9\xe0\x96\xbb\x8a\x49\xbb\xe5\x1a\xc8\x9c\xdd\x52\x91\x3f\xcd\xc9\x08\x10\xc3\xd4\x26\x30\x55\xc5\x95\xbc\x3d\xaf\xc9\x30\x23\x7e\xec\x81\x44\x06\x77\xd0\xf5\x8a\x1c\xaf\x10\x8f\xc6\x09\x7e\x2c\xba\x64\xcc\xaa\x13\xb8\x32\xc7\x8f\x30\x1a\x61\x93\xc5\x09\xb4\xf0\x16\x94\xc9\xb7\x3a\x2f\x14\x0f\x61\xca\x0f\xbe\x01\x72\x2a\x8a\x33\x60\x01\xc4\x29\x93\x6d\xa5\x39\x8b\xe5\xc5\x29\x45\x80\x2a\xd3\xcb\x34\xfe\x0d\xb3\xcc\x06\x5b\x2d\xfc\xe0\x08\xe9\xe8\x0e\x65\xb6\x2d\x94\xe7\xb7\x46\x55\x06\xee\x1a\xd2\xd3\xa7\x89\x9f\x4e\x95\xc9\x2d\xd2\x4e\x5a\x4a\xe7\xb5\x22\x1c\x53\xe2\xd7\x5b\xb1\xe3\xa6\xf0\xbd\xa7\x92\x06\x4c\x45\x8e\x59\x51\xb8\x47\x78\x77\xf9\x29\x27\x2d\x99\x68\x5a\x59\x94\x4e\x9b\x01\x2c\xae\x23\xc7\xfb\x3a\xb6\x39\x94\x45\x5e\x97\x24\xb5\x6c\x65\xd1\x75\x53\x68\xcf\xdb\x27\x33\xa0\x50\x8d\xd4\xf4\x6c\x65\xb5\xf9\x78\xe2\x87\xe2\x38\xb4\xb4\xb8\xaa\xf6\x5a\x36\x60\x51\xed\x8a\xf5\xf3\xff\xe1\xa2\x52\xb4\x20\x50\x23\x2b\xbb\xaa\x84\x4d\x04\xdd\xa2\x58\xe2\x06\xe4\xa7\x6c\xd5\x56\xbe\x0c\x7a\xb3\x1d\xb0\xff\x25\xc1\x5c\x2b\x8a\x3c\x26\xb8\xb6\x58\x32\x67\x80\x9b\xc5\xdc\xce\x0b\x0a\x06\x84\x22\xf9\x2c\x92\xc4\xa5\x15\xb9\x28\x0a\xf2\x4b\xb1\x68\x8e\x4d\xbd\x14\x45\x79\x7d\xbe\x70\xde\xfc\x1c\xf2\xe2\xf2\x19\x90\xe8\xf2\x19\x8c\xb1\xd8\x9c\x4c\x03\x72\xb9\x32\xa4\x22\x03\x0b\x34\xa8\x78\x06\x38\xd1\x22\x49\xbc\xa0\xc7\x95\xaa\x7d\x13\x29\xa2\xa8\x48\xf3\xc4\xbe\xad\xb6\xb7\xd0\x80\x35\x1e\x36\xea\x4f\x8a\x5e\x57\x36\xe2\x4f\x8a\x5e\xd7\x89\x06\xa5\x88\xae\x74\x78\x99\xf9\x87\x84\xfa\xee\x74\xde\xf0\x56\x4b\x0f\x4d\x9c\x37\x82\x4f\x91\xcc\xdc\x93\x1a\xa4\x95\xa6\x60\x92\xc8\x39\xa5\x49\x9f\x89\xd4\x50\x5a\xd7\xff\x34\x28\xef\x15\x1d\x36\x17\x5b\x62\x2f\x5b\x1a\xc6\x9e\x5c\x9c\x30\x29\xd5\xaf\x5a\x69\x42\xa4\xf3\xdc\x5f\xe1\x2b\x6d\xca\xed\x50\xb8\x47\x4b\x37\xbe\x36\xea\x7e\xe9\x02\x74\x46\xf2\x2f\x3f\x61\xb7\x94\x88\xf5\xa5\xbb\x12\x7e\x96\x5e\x50\x21\x58\x52\x97\x49\x9b\x49\xe8\xef\xbc\x66\xe5\xba\xe7\x75\x30\x46\x85\x14\xb2\x19\xdf\x78\x01\x26\x7a\x28\x65\x5c\xac\x75\x65\x08\x56\xc3\xdf\xbe\x80\xd2\x81\x93\x18\xc1\x9a\xc7\xdb\x61\x5e\xd8\x65\x06\x86\x07\xed\xc2\x2f\x44\x4a\x2e\x0e\xc6\x65\xb3\x2b\x98\x36\x69\xcd\x5a\x91\x30\x57\x31\xbb\x97\xc3\xba\x50\x6c\x3a\xc5\x55\x1d\x98\x14\x99\xda\xc1\xdb\x17\x55\x75\xc0\x35\x5a\x0e\x1d\x2f\xb8\xe0\x4f\x4c\x6b\x80\xeb\xcb\xe1\xe3\xc5\xfb\x3a\x5e\x70\xc9\x43\xc7\x8b\x29\x3c\x6c\xa3\xcd\x14\xc9\xd2\x4e\xa0\x42\x39\x4d\x51\x66\xe0\x34\xd7\xce\x78\x7f\x12\xdb\xf2\xb9\x67\x24\xb0\x55\x22\xe0\xca\xb9\xe9\x83\x74\xa0\xaa\x0f\xe0\xc3\x8a\xaa\x3c\x00\xef\x2a\xa7\xbd\xcf\x6c\x3b\x85\xee\x7e\x98\xec\x29\x5b\x5d\xa5\x41\x01\x04\x98\x51\x97\x71\x60\x97\xaa\x8c\x03\xf9\x4c\xca\x35\xeb\x39\x33\x7c\x29\x28\x93\xbb\x55\x65\x18\xc0\x44\x96\x9f\x60\xb6\xae\xcc\xe8\x4f\x2e\x5b\x71\xf6\x97\x4b\x56\xbb\x8d\xf6\xcc\x3e\x32\xe3\x4a\xc1\xd3\x3e\x53\x7c\xc9\x90\xb5\xf1\xc2\xad\x0f\xf8\x5f\xdc\x83\x3d\xf3\x93\xdb\xd6\x95\x25\xb8\x65\xc8\x8a\xd6\x5f\x7e\x72\xdb\xba\xc2\x51\x7f\x72\xdb\xba\xb2\x09\x6f\x59\xf5\x38\x14\x12\xd3\x00\xf6\x96\xdb\x04\xff\x09\x8c\x50\x94\x70\x75\xfb\x74\x26\x01\x89\x0b\xec\x27\xa4\xad\xe0\x4f\xca\x23\x0b\x16\x6c\xe6\x11\xa6\x95\x23\xf7\xac\x7a\xce\xec\x3e\x9b\x9e\x33\x58\x25\x60\xdd\x98\x4d\x25\x60\xc5\x8f\x5f\x1e\x73\xca\x10\xab\x1c\xab\x6b\x7c\x1c\x45\x39\x56\x57\x76\xc3\x23\x4b\xd0\x42\x7b\x87\xda\xcb\xea\x3d\x82\x2e\xb0\x1b\x1e\xd3\x4b\xfb\x12\x10\xd9\x6d\x8f\xec\x25\xd1\x3e\xea\x24\xfa\xc3\x45\xeb\x64\xfa\xe7\x3c\xdb\xa6\x90\x0e\xaa\x32\xac\xae\xb9\x9e\xaa\xe4\xc5\x9a\xe4\xea\xad\xbe\x19\x53\x63\x38\xaa\x93\x02\x96\x0a\xcf\x4e\x4b\xb9\xd1\x84\x12\x73\x6e\x8c\xc1\x58\x86\x8d\x26\x6d\x05\xea\x79\xf6\x22\xfe\x5b\xa4\x3a\x4f\x22\x3a\x3d\xcc\x36\xfa\x6c\xbc\x20\xdb\x56\x64\xc1\x3a\x1b\x2a\x9d\x3d\x5b\x67\x9b\x78\xb2\x49\xeb\xec\xf0\xb3\xdc\xa2\x75\x7e\x4d\x3c\x35\x3f\x18\xca\xb0\xd2\xab\xa1\x0c\x2b\x6d\xd8\xe6\x13\x4d\xae\xce\xb6\xf9\x64\xf7\xd4\xf9\xbd\xe5\x18\x87\x6f\xb9\x74\xb2\xd8\xe6\x93\xa9\x12\xb2\x7e\x4a\x35\xaa\x56\x17\x65\x78\xa4\xc5\xc5\x26\x9e\xcf\x17\x82\x58\x33\x86\x45\x49\x7e\x37\x3e\xb0\x78\x9f\x5b\xb1\x2a\x8d\x2a\xda\x7a\x7d\x63\x8a\x07\x2d\xc8\x46\xb0\xb0\x47\x16\x5b\xaa\x72\x88\xea\xea\xbb\x99\x4e\x57\x1b\x46\x72\x8c\xea\x6a\x13\x10\xe3\x56\x60\xf1\xbc\x30\xee\x55\x09\xe3\xc2\xa8\xeb\x6a\x93\x10\x53\xb3\xda\x02\x44\x0b\xbb\x9e\xe9\xd3\xe5\x2b\x3b\x2d\x1a\xd2\x01\x65\xeb\x4b\x48\xb6\xc9\x66\xfc\x63\x4e\x6b\xdd\x84\xe9\x60\x23\x6e\xc6\x74\xe4\xb8\x56\x43\xec\xd9\xeb\x32\x4f\xcf\xed\xd3\x82\x22\x70\xd8\x57\xdb\x2b\x34\x64\x98\x12\x71\x4b\xd2\xce\xb6\x2a\x19\xb7\xcd\xec\xe6\x62\x33\x04\x2b\x24\xa9\xb7\x91\x88\xa4\x96\x45\xca\x13\xcf\x56\xb7\xd8\x89\x4a\xc7\x53\x09\x87\xa9\x45\x49\xb2\x98\xbc\xe2\xf4\x5f\xb1\xab\xd6\xe2\x20\x9d\x0c\xb3\x38\x48\x87\xdd\x5e\x9c\x35\x2b\x9a\x65\x2d\x4e\xff\xc5\xa2\x17\xe5\x93\x62\x10\x06\xd3\xe3\x35\xaf\x75\xd6\x0b\xe9\xb3\x3a\x4d\x53\x66\xa2\xbe\x4a\x62\xe8\xaa\x45\x2f\x64\xd4\x2f\xbc\x9e\xd9\x35\xbc\x1e\x8f\x4f\xad\x43\x66\x0c\x5a\x78\x83\x5b\x32\xc8\x9f\xb0\x5c\xc0\x6a\x54\x09\xcb\xeb\x32\x31\xc8\x5b\x2f\xd0\xe2\xbb\x3c\x59\x0d\xa5\xdb\x59\xd7\xf2\xa7\x2c\x09\xb5\x59\x4a\x8d\x0d\xa0\xca\xda\xdc\x93\xaf\xb1\x55\x59\x9b\xd7\x14\xf6\x6c\xb5\x49\x6c\xe5\x7f\x25\x30\x89\x70\x5e\x9b\xc0\x0b\x95\xf1\xec\x8e\x7c\xe5\x07\x55\xc7\x08\x01\x96\xac\x67\x06\xa0\x7a\xe7\x11\x68\x6a\x77\xb4\x7d\x44\xae\xda\x05\x6b\x8e\x3c\x50\x5d\x7e\x9a\xad\x21\x39\xfb\xc3\xc3\x84\xcf\x21\x5b\x5a\xed\x16\xf9\x68\xef\x90\x04\xc5\xf7\x16\x38\x2a\x1f\xc8\x9d\xcb\x76\xfe\x89\xd1\x9d\x6c\x6a\x55\x62\x74\xfb\xf4\x30\xe4\x1a\xe3\x02\x19\x92\x28\xe8\x71\x08\x51\xc8\xfd\xa1\x72\x0f\x2b\xa7\x41\xe5\x1c\xb6\x88\x48\x75\x28\xdf\x2b\x07\x6e\xbc\x9c\x3d\x2f\xc8\xd0\xdb\x92\xea\xae\x55\x19\x76\x67\x40\x89\x55\x86\xdd\x96\x7c\x7a\xad\xee\xb6\x71\xb2\xac\xfb\x6b\xb0\xe4\x07\xa7\x07\xe3\x6a\xdd\xdf\xbd\x48\xb7\x4e\x48\x91\x47\x15\x14\x8e\xf7\xad\x1e\xc2\x2b\x30\x6f\x2a\x9a\x90\xa2\x0e\xad\x1e\x96\x4d\xb2\x13\x64\x65\x6d\x24\xbe\xab\xc7\x7b\x75\xd3\xa2\x27\x22\x13\x75\xd8\xf4\xc3\x89\x3c\x1c\xaa\xc7\xcc\xd8\xa8\x9a\x62\x7b\xad\x1e\x4e\x9a\xf1\xef\xf1\x34\xa2\x38\x7f\x4b\xfe\x1e\xd0\x24\xf1\x1b\xcf\x4a\x95\xfd\x74\x7c\xbe\x97\xf9\x94\xdd\x7c\xfa\x34\xd0\xde\xd0\x66\x0b\xcd\x4e\xa4\x13\x1b\x5e\x95\xed\xb4\x7d\x38\xa1\xab\xa2\x21\xbe\xa8\x2a\x1a\x39\x0a\xeb\xa5\xaa\x61\x34\xa0\x50\xd2\x8a\xd1\xbf\xca\xee\xd9\xfb\xa0\x05\x09\xd8\xc8\x3b\x97\x10\xc4\x8d\x1e\x4f\x2d\x0b\x3d\x58\x64\xcb\x14\xdc\x52\x0a\x63\x18\xaa\xb7\x85\x97\x74\x78\xeb\xca\x87\x6d\xde\x0a\x76\x65\x84\x4e\x67\xb9\xc0\xaa\x6f\x65\x95\x65\x0e\x85\x72\x9f\x41\x9b\xd6\x7b\xd7\x25\x45\x8b\x66\xe5\x30\xbd\xfb\xc5\x0d\xf2\x83\x9c\xd9\xf4\xa0\x80\x4c\x7a\x78\x84\x57\x83\xa7\x3d\xc2\xab\x71\xe9\x3d\x2f\x70\x3f\xcf\xca\x94\xd5\x78\x36\x4b\xe1\x7d\x25\xf7\x8a\x69\xae\x3e\xd2\x73\xd9\x35\xb2\x9b\x0e\xa6\x58\x10\x93\xc1\xa2\x0a\x47\x8f\xc1\xbc\x0a\x47\x3f\x7d\xc6\x2b\x43\x14\x27\x49\x99\x72\x46\x94\xc2\xa6\x70\x52\xb2\xc0\x35\x09\xbd\xc9\x97\xdf\x9a\xeb\x1c\x87\x65\xb6\xc9\xfd\xf3\x6c\x3d\x9c\xf7\xa5\x87\xc7\x94\xd0\x5c\x23\x00\x07\x70\x53\xe1\x62\x90\xb5\x6d\x96\x1a\x1b\x91\xab\xcd\x8b\xfe\xff\x93\x1b\xa8\xfd\xa4\xdf\x86\x1b\xb6\xfd\x84\xdd\x86\x23\xb1\xcd\xd2\xc1\xe3\x6c\x6b\x3f\x31\xb5\x11\x0e\xd4\x6c\x19\xc5\xf9\xd2\x54\x86\x18\x11\xb1\x2d\xea\x20\xf2\x5f\x53\xb8\x67\x45\x49\x6e\xca\x74\x83\xeb\xad\x29\xda\xb3\xe1\x59\x69\x3f\xa9\xb4\x21\xf7\xb6\x45\x66\x84\xc6\xb3\xcc\x08\x4c\xa8\x33\xdf\xac\x59\xe1\x26\xb4\x05\x99\x28\xdb\xe2\x3b\x23\x13\x28\xd0\x39\xc7\xbe\xfd\xc4\xcb\x0e\xeb\x6b\xab\x47\x98\x0e\x57\x21\x7a\x18\xc0\x2a\x50\x2a\x03\x58\x55\xff\x8f\x1d\xb0\xfa\xd2\xe3\x7d\x59\x01\xb2\xe3\x9b\xca\x8a\x11\x6d\xdc\x56\x59\xa3\xd9\x61\xab\xc6\x3f\xd3\xbe\xee\x40\x76\x88\xa3\x41\xf1\x99\xb5\xcd\x2e\x9d\xc8\x8d\x6d\x93\xda\x1c\x36\xd1\x54\x58\x8c\xb0\xdd\xb6\x99\x2d\xf1\xbe\xd4\xfa\x42\x0f\x3a\xd2\xb1\x0d\xb5\x9f\x1c\xba\xae\xcc\x88\x50\x10\x1b\x33\x28\xd0\xc3\xc6\x16\x2d\xbe\x5d\xb2\xa4\x45\x9a\x2f\x14\x09\x1c\xde\x70\xf2\xb5\xa2\x5b\x97\x5d\xa5\x04\x33\x1b\x9b\x44\x55\xbf\x40\xf7\x34\x25\x9c\xc1\x4a\xd9\x8c\x81\x08\x1f\x6c\xd5\x7c\x33\x03\xaa\x52\xdd\x23\xbc\x37\x55\xf1\x02\x6d\xd4\x94\x30\x06\x3b\x69\x53\xc2\x18\xd0\x49\xed\x27\x4c\x8e\x8d\x09\x50\xc2\x98\x16\x59\xbf\x55\x8f\x3f\x13\x2c\xbb\x2c\xbe\x9a\x56\x3d\x7e\xfa\xf7\xf8\x19\x9f\xf8\x3e\x67\xe0\xc5\x36\x14\x3e\x70\xbe\x11\x96\xd4\xa5\x87\x51\x3f\x9a\x33\x33\x62\xc9\x6d\xcd\x18\x9f\xb0\xf6\xd6\x84\x2c\x89\xd4\xd1\x9a\xeb\xf7\xb1\xf1\x9a\xdd\xe2\x9c\x9c\xf6\x6a\xdf\xfc\x20\xed\x9b\x8d\xd4\xde\x71\xd2\x87\x0a\x63\xb0\xb3\xde\x74\x30\xb9\xc1\xda\x9b\x0e\x26\x4a\x67\x7b\xd3\xc1\xe4\x8e\x6c\xdd\x20\x0c\x3a\x71\x7e\x18\xfa\x78\xf3\xc3\x44\xc6\x6b\x5d\xb1\x07\x10\xf6\x02\x15\x58\x1e\x27\x7c\x21\xdd\x62\x33\x72\x81\xfd\xd3\x95\x2a\x84\xf5\x72\xe6\xfa\xca\x02\x39\x73\x3d\x1b\xc6\xf9\x5f\x2a\x2d\xc8\x7c\x4b\xda\xcb\xa6\xd0\xce\x0d\xb4\x52\x7b\x71\x0c\x9f\x2f\xa4\x1f\x2e\x8c\xd2\xe9\x5d\xe6\xc1\x0f\x8e\x55\x60\xd8\x2f\x90\x81\x7d\x34\x2c\x84\x41\xfa\xb0\x62\xcb\x40\x87\x15\x5b\xb6\xb2\x53\xd9\xc3\x2d\x5f\xa0\x02\x67\x67\xb7\x0c\x91\x16\x04\x3b\xc0\xe2\xd2\x9c\x88\x1e\x64\x57\xdb\x2d\x32\xfc\x29\x3b\x4f\x33\xcc\x80\x80\x9a\xb6\x5b\x2b\xce\xc4\xed\xca\x4b\xc1\xe2\xee\x56\xb2\xb8\x61\x8c\x3a\x88\x60\xda\x8c\x3a\x00\x00\xd5\x8c\x3a\x00\x08\xd4\x8e\x55\x5f\x84\xa2\xc3\x12\x7a\x04\xf2\x26\x14\xc2\x4c\x54\x4f\x13\x0a\x61\x06\xb6\xd5\x8e\x57\x99\xcf\x2c\x38\x57\x24\x39\x07\xdb\xf1\x2a\xc1\x7c\xf2\x23\x04\x71\xb3\x39\xc1\x3c\xd9\x50\x9a\x31\x06\xac\xc4\x8b\x20\x60\x87\x48\x20\x2e\x44\x38\x37\x47\x89\x02\xf9\x6d\xa7\x6b\x9f\xb1\x78\xa7\xfd\x18\x21\x55\x80\x81\x4e\xce\x96\x76\xbe\x71\x20\x34\x21\x79\x2e\xb5\x73\x5b\x13\x62\x60\x05\x26\xd5\x7e\x62\x70\x69\xdc\xe0\x4a\xb1\xb2\xe2\x48\x6b\xd7\xeb\x4d\xcf\xf4\x5d\x4d\xd9\x78\x79\xde\x95\x39\x97\x2e\xe4\xca\xe6\xd1\x22\x57\x86\x74\x39\xe9\x30\x83\xbe\x74\x1f\x31\x82\x5b\x46\x3e\x2e\x40\x95\xfb\x8d\xc8\xd7\x6e\xe7\x74\xe6\x6f\x87\x3c\x84\x20\x49\xc5\x15\x35\xb4\xdd\x16\x29\xb2\x96\xb7\xdc\x66\xd1\xa3\xdb\x4f\xe6\x5d\x57\xee\xb7\x5b\xd7\xcd\x46\x87\x4a\x00\x03\x0b\x73\xee\x14\xc0\x91\xed\x71\xd0\x34\xcc\x59\x52\x2f\x15\x9d\x5b\x7b\x8c\x67\xcd\xe3\xe6\x5d\xcf\x07\x4d\x62\x6f\x76\xfd\x23\x7f\x10\x5b\xe3\x51\x40\x70\xa7\x01\xc5\xcf\xc6\xc0\xd2\x1e\x05\x04\xc7\x02\xd6\x1e\x79\xb0\x3a\xfd\x5f\x0e\x04\xcc\xb3\x40\xfd\xc4\x93\x76\x59\x7f\x53\x79\xaa\xf5\x49\x71\x0a\x9d\xff\x15\x96\x10\x29\xa9\x4f\x0a\x4b\x08\x45\x5d\xb6\xe0\x32\x32\x69\x7d\x92\xb1\x22\x82\x7c\x9f\xe4\xf4\xfe\x74\xa0\xc0\x89\xec\x8a\x2e\x39\x18\x9f\x5e\x9f\x3d\x80\xb4\x27\x43\x2e\xa9\xac\xfb\xfc\xb2\xd3\x92\x1f\x4e\xff\x90\x21\xce\x72\x28\x41\x82\xd3\xa0\x23\x96\xf4\x59\x99\x52\x73\xc6\xfb\x22\xad\x3a\x8b\xd0\x8d\x03\x08\xf7\xed\xaf\x30\x1c\x12\x5e\x61\x98\xef\xe5\x40\xca\x22\x74\x05\x78\x7e\xfa\x5b\xe4\x50\x62\x0a\x7e\xa2\x6f\x43\xe7\xee\x8b\x34\xda\x95\xfe\x65\x4e\x09\xc3\xe8\x8b\xa4\xf7\x95\xf6\x4f\xf5\xcf\xff\x26\x98\xf1\xde\x7a\x9f\xfe\xe5\x41\xcb\xf5\xd2\x57\xd1\xcb\x12\xac\xa6\x37\xe3\x5b\xe5\x41\xeb\xfc\x2f\x7a\x73\x09\xf6\x55\x1e\x77\x96\x68\x95\xb6\x91\x4d\xd6\x25\x49\x03\x96\xed\x92\xa4\xc1\x08\xf7\x37\x7a\x33\x2a\x7d\x97\xdd\xb6\x6e\x33\x6f\x28\xa7\xd7\xf6\xb7\x74\xd8\x5d\x20\x86\x82\xbb\xa1\x6f\x02\xf7\xd3\xe1\xe6\x14\x96\xb1\xdd\x74\x49\xce\x00\xc7\xfa\xe6\x72\x69\xd1\x7e\xfb\xd6\x25\xac\xf3\x2c\xe1\x3f\x92\x5c\x97\xa8\x0d\x4c\xac\x6f\xce\xcb\x54\x79\xe1\xd4\x0b\x99\x23\xc9\xe2\x08\xf7\x7d\x93\xf4\xcf\x26\x2d\xf2\x09\x86\xb7\x76\x67\x83\x24\x17\x58\x57\xcd\x5e\x34\xb4\x5e\x5e\xb7\x66\x86\x58\x4c\x64\xe5\x07\xb3\x3b\x9a\x34\xbb\xa3\x05\xb1\x5f\x8e\xb2\x6a\xe6\xb6\x18\x66\xba\x6a\xe4\x92\x84\xbf\x57\x67\x86\x8e\x6c\xda\x55\xe4\x96\x90\x84\x5e\x05\xb6\xcf\x05\xd0\xab\xf4\x91\xe8\xf0\xbd\xda\x4c\xc2\xf7\x36\x93\xf0\x2c\x7d\x85\x6d\x51\x7d\x3f\xf0\xbf\xf4\x15\xe6\xb0\x69\xc0\x8d\x67\xb9\x21\x99\x00\x61\x12\x36\xf6\xbd\x31\x09\x58\x7e\x7a\x93\xab\x8d\x83\xde\x24\xbf\x47\x48\xe9\xaf\x1c\x5c\x69\x41\xbe\xb5\x88\xbd\xbd\xeb\xc6\xe2\xa4\x49\x0c\xde\x80\xf8\xf4\x9f\xd4\x3b\x36\x8e\x46\x97\x4a\xc5\x32\x77\x69\x20\xec\xa3\x6e\xe9\xfe\xf3\x82\xa4\xfb\x88\x69\xbd\x7b\x88\xa1\x51\x22\xed\x27\x4b\x59\xef\xbe\xc4\x18\xd2\xa3\x1e\xf2\xff\x90\xfb\x2f\x97\x5a\x97\x25\xb5\x45\x25\xe9\xc3\x23\xcc\xf7\x43\x4a\x5f\xf4\xf6\x3e\xa4\xf4\xc1\x8c\x6c\x59\x85\x99\x0d\xe9\x78\x6c\xfc\xf1\xce\x21\x0d\x5a\x97\xc8\x24\x3b\xf1\x20\x60\xec\xae\xca\xb7\x1b\xec\x76\xb7\x2a\xc1\xba\x0a\x73\x4b\x94\x4a\x77\xda\x41\x8c\x45\xdd\x69\x07\x01\x99\x77\x55\x5d\xc2\x02\xde\x77\x9b\x41\x3f\x3f\xc8\x83\xc9\xde\x77\xd6\x41\xd0\xdd\x7d\x77\x0e\xcd\xcf\x1b\x56\xa2\xd8\xad\xbb\x01\x2e\x1f\xc2\x2c\xe2\x32\x35\x87\x3c\xb1\xb0\xa9\xc3\x36\xe6\xa8\x0a\xfd\x78\x95\xa6\xb4\x79\x98\xd2\x2c\xce\x61\x4a\x63\xa9\xef\x92\x68\x0b\x39\xb0\xbb\x0c\xbc\x8d\x2c\xfb\xdd\x12\x2d\x69\xb5\xbb\x2d\xbe\x48\x00\x87\x4d\xdf\xdc\xe0\x87\xb4\xa6\x78\x4e\xbb\x92\x0e\x92\x21\xbe\x9f\xd6\xc2\xd3\xe5\xa9\x32\xad\x50\x71\xda\xe8\xcc\xa9\x38\x5f\xc5\x8d\x2f\xac\xb8\xb1\xe9\x4e\x8f\x29\x43\x38\xad\xc8\x65\xcc\xa7\xfd\xac\x4c\xdd\x69\x4d\x0e\x2a\x4e\xfb\x59\xa3\x3f\xf4\xd3\xaa\x1c\xc3\x56\xce\x41\xe2\xf0\xfa\x65\x70\x3d\x74\x5e\x8b\x8f\x12\x6f\xac\x26\xe4\x4f\xd1\x41\x5d\xf2\xf3\x44\x3d\x83\xee\xf2\xb5\x8c\xf9\x7a\xe7\x25\xd3\x20\x80\x6d\xc5\xcf\xd2\x2f\x39\x38\x11\xb6\x2e\xeb\x81\x9f\x26\xad\xf6\x41\xb6\x6b\x25\x2d\x10\xe1\x52\x48\x0b\x64\x2a\x40\xb1\xa3\xf8\xf5\xdb\x1a\x2b\x13\x63\xe3\x31\xe2\xc0\x2d\xb7\x6b\xa3\x49\xeb\xab\xac\xce\x6d\x7d\x15\xca\x54\x03\x17\x53\x59\x77\xb9\xa3\x05\x26\x73\x2b\xfc\x79\x7c\xde\xb0\x68\x9d\x16\x1e\x87\x92\x72\xbc\x8c\xa4\xa5\xe8\x46\x77\x5a\x42\x70\x1c\x5d\x61\x8c\x33\x16\xd5\xee\x3c\x85\xd1\x5f\xfa\xe3\xaa\x17\x31\xdf\xf4\x47\x2a\x2f\xbb\xee\xb1\x95\x1c\x5e\xa5\x02\x48\xd8\xe5\xbb\xa4\xe7\xb9\x7d\x5a\xb8\xfd\x05\x7d\x3c\x7e\xe3\xdf\x4e\x1d\x93\x0a\x35\x45\x67\x1a\x93\x87\x1d\x1b\xd3\x70\x79\x23\xf0\x1e\x63\xb2\x96\x9a\x3b\x60\x4c\xce\xf8\xbb\xd2\x86\x3d\xb3\x59\xb1\xe1\xbc\x82\x30\x8e\x31\x29\x7d\x62\x26\x6b\xcc\x76\x28\x6f\xfc\x60\x5c\x7b\xb6\xc5\x98\xad\x95\x66\xe3\x8c\xb7\x3e\xd1\xe0\x93\x21\x9d\x93\x17\x0c\x52\x8f\x17\x64\xbc\xf5\x87\xa2\xf9\x0e\x81\x1f\x16\xe2\x7f\x87\x24\xef\x25\xf5\x09\xdb\x58\xac\x30\x05\x9c\x33\x84\x76\x58\x7a\xac\x59\xc3\x15\x88\x7a\xb4\xfc\x21\xb8\xc3\x92\xe2\xf4\x6d\xfc\xa4\xeb\x42\x68\xfd\x70\xc1\x21\x92\x2e\x8f\x9f\xf8\x5c\x40\x99\x8f\x45\x39\x13\x22\x96\x8c\x9f\xf8\x5c\x00\x7d\x8f\xc5\xd9\x0e\x57\x7e\xb0\x35\x3c\x02\xf9\x10\xfc\x61\x25\x0e\x6a\x08\xed\xb0\x12\x62\x34\x84\x76\xe8\x40\xe3\x87\xd0\x0e\x1d\xb8\xfd\x58\xad\xfa\x85\xa7\x8d\xf5\x05\xe4\x87\xd2\x55\x31\x64\x84\x03\x0d\x85\xf3\xad\x14\x34\x18\x12\x9c\x57\xcc\xf2\x63\x35\xd2\x2b\x8f\x6f\x42\x44\xfe\xb7\x2f\xac\x30\x0a\x25\xbc\x2a\x0c\xc2\xfa\x20\x5d\xca\xe1\x18\xd1\x7f\x6c\x4a\x3b\x10\x55\x69\x6c\x72\xde\x7d\x9e\xa5\x1e\x46\x75\x1a\x82\x0f\xa7\x56\x67\x1b\x12\xac\xc7\xe7\x7f\xb9\x71\xa2\xaa\x0c\x85\xf2\x81\xe0\x18\x9b\xdc\x28\x9f\xef\xe5\xc6\xf9\xbc\x2f\x44\xfe\xe7\x7d\xa9\x36\x61\x4d\xa3\x48\xb5\x61\x07\x16\xa9\x36\x6c\xfb\x22\x55\x8e\x5d\x5f\xa4\xda\x70\x4e\x8a\xb0\x81\x1c\xac\x62\xd5\x2e\xf3\x55\x94\xc9\x82\x2d\x5f\xa4\xea\x0c\xda\x57\x66\x08\xa0\x71\x43\xa8\x8a\x4f\x42\xd6\x61\xf4\x71\x34\x8d\x61\xf4\x71\x38\xfa\x28\x52\xee\x38\xeb\x46\x1f\x73\x84\x8a\xe0\x91\xe3\x4f\x77\xd2\x28\xd2\x74\x39\x6e\xd5\xd3\x93\xce\xaa\x90\x87\xec\x6b\x85\x0c\x96\xc1\xe8\x04\x5d\x06\x13\x32\x04\x5d\xe6\x8a\x1c\x55\x60\xd1\x4e\x03\x4d\xff\xf3\xbd\x9c\x28\xac\x67\x95\x93\x84\xfd\x56\x05\x9d\x64\x3d\x5f\x91\x3e\xb3\xe5\x1c\x2c\xc8\x4c\xa3\x59\x29\x49\x07\x4d\x06\x96\x5c\x99\xa3\xc9\x47\x92\xcb\x6b\xbc\x3a\x40\xd6\xa3\xc9\x84\x9f\x4b\x62\xfc\x44\xfe\xb1\x71\xd4\x9b\x4c\xf6\x2b\x03\x30\x78\x27\xaa\xe9\x78\x55\x80\x0c\xc8\x60\x0a\x0c\xa9\xa3\x5b\xc0\xce\x08\xba\xbc\x2a\xd1\x9e\x87\x51\xcc\x60\xaf\x47\xb7\xab\x8c\x4d\xa9\x10\xbd\x96\x6a\xde\x6d\xd8\xf2\x8d\x91\x64\x74\x19\xec\x23\x7b\x8e\x17\x76\x1c\xd5\x6a\x38\x4d\x39\x20\x97\xe1\x12\xac\xd8\x5d\xc6\x9b\xa4\x90\x99\x72\x09\x56\x12\x7b\x8d\x37\x49\x61\x14\xc4\xe1\x12\xac\x64\xd2\x1a\x6f\x96\x42\x66\x7f\xbc\x72\x35\xe3\x78\x6b\x32\xd1\xa8\x31\x75\x70\xa4\x17\x79\x11\x49\x7b\x38\x97\xf9\x87\x89\xc9\xd6\xdd\xb0\xc3\x0d\xe5\x4e\xd9\xb0\x9a\x0d\xab\x10\xe4\xcd\x1b\xce\x5d\x4e\x1e\xba\x61\x1d\x82\xc4\x76\xc3\x70\x8e\xe5\xf3\x86\xc2\x06\x40\x3b\x0d\x57\x6e\x65\x4a\x6d\x30\xff\xb4\x60\x83\x39\x67\x41\x19\x54\xda\xfc\x69\xd2\xe2\x44\x28\x7b\x8d\xe4\xb0\xef\xfd\xbd\xc7\xb3\x28\xbb\xc1\x16\x1b\x9f\xf8\x62\xcf\x17\x87\x11\x56\x30\x9c\xc3\x08\x2b\x9e\x5f\x0b\x64\x86\x2d\x2b\x39\x49\x69\x87\x54\x88\x95\x54\x4a\x43\x2a\xc4\x4a\x1d\xa0\x21\xa3\xf8\x4a\xa1\x9f\xf1\xd3\x29\x2a\x9a\xce\x38\x7c\x88\x43\xe7\x71\x69\xc7\xf3\xbe\xfd\x8c\x79\x74\x89\xbb\xbc\xee\xa0\x3b\x76\x91\x63\xee\xb8\x9f\x5d\x3a\x29\x75\xb4\xdb\x38\x8d\x0d\x08\x09\xa7\x0f\x0c\x1d\x9e\x0e\xaa\xe2\x83\x61\x2b\x67\x9e\x77\xc7\x7d\xf2\x82\xbc\xf3\xf0\xc1\xb7\xd8\x12\xf3\xae\x62\x4b\xd3\xa7\x4b\x59\x31\x61\xa4\xa7\xac\x98\xdc\x33\xb2\xae\x0f\xbc\xcd\xe3\xf2\x75\xcf\x4d\x7b\xf9\xa6\xcc\x2c\x2b\xd5\x09\x09\x20\x86\xaa\x29\x7d\x0e\x8a\x52\x99\x14\x36\x93\x52\x99\x14\x4e\x85\xaa\x25\x15\xb6\xfc\xf5\xe8\xfb\xb4\xa7\x62\x49\xa9\xda\xdc\x86\x33\x99\x50\x7e\x69\xfc\x34\x85\x05\x5c\xf2\x70\xb5\xa4\x18\x9c\xc6\x5d\xd5\x60\x48\xfe\xa9\x09\x0b\x10\xdc\x21\xeb\xfa\xf6\xb7\xd4\xd8\x43\x69\x16\x0b\xa7\xfe\x36\x35\x8c\xd6\xd4\xa4\x71\x97\x62\xfa\x88\xbc\xb2\x9c\x7f\xc2\x66\x87\x72\x8e\x00\xb6\x1a\x4a\x31\xf2\x39\xbe\x8f\x8c\x4d\x91\x1c\x76\xc1\xa0\xd7\x85\x67\x5f\x24\x23\xcf\xba\x48\x62\x90\xdb\x95\x10\x84\xaa\x95\xfb\x4f\x4c\x5f\xd7\x88\xed\xbb\xa4\xf4\x0e\x74\x6b\x9f\x84\xca\x8f\x32\xb1\x2b\x2f\x22\x85\x1d\xf7\x49\x28\xfc\x85\x06\x65\x9e\xeb\xbc\x2f\xf3\xdc\xc2\x00\x5c\x23\x30\x66\x8f\xdd\x18\xe8\xac\xe8\x3e\xcb\x4e\x12\x59\x65\x9f\x75\xd1\x64\xca\xf6\x59\xb6\xa7\x8d\xef\x05\x64\x8f\x31\x61\x9f\x65\xd9\xc9\xb5\xb3\xcf\xb2\x45\xe5\xaa\xdd\x67\x5f\x95\xf4\x27\x6b\x59\x98\xd5\xae\xea\x4a\x44\x98\xee\xb3\x2c\x4f\x95\xfe\x75\x53\xe6\x9e\xdb\x17\x99\x3f\x62\x73\xd9\x17\x8f\x37\x13\xb8\xf8\x7a\x61\xc9\x0c\x5c\x46\xda\xdb\x17\x67\x6d\x62\x51\x16\x5b\x65\x98\xe4\xe5\xcd\x04\x91\x41\x2f\x76\x80\x7c\x7a\x51\x52\x6e\x66\x75\xb1\x0b\x9e\x36\x57\xdf\xa5\x2c\xcc\x2a\x7b\x47\x14\x8e\x5d\xb2\xfe\x00\x69\xb2\xaf\x72\x54\x67\x33\xef\xeb\x6b\xde\xc8\x20\x54\x27\xf4\x13\x52\xbd\xaf\xb2\x6f\x14\x5a\xb0\xc9\x85\x2e\x2e\xfd\x1f\xb2\x2c\xa6\x2f\x8c\x7a\x15\x8a\x9c\xb5\xdd\x6c\xdc\x48\x8f\xdb\x5b\xf7\x2f\x2d\x6c\xef\x7d\x97\xb9\x74\x1e\x0e\xa2\x25\xf7\x4d\xf7\x1d\x64\x1b\xe8\xbc\xe4\xc2\xdb\x25\xbb\xcf\x4b\x58\xd0\x2e\xe1\xfd\x53\x36\x66\xdf\x6c\x35\xe3\x10\xfd\xc4\xf7\x0d\xf1\x6e\xdf\x64\x28\x60\xae\x8b\x95\x61\x5a\x28\xf6\xd0\xc6\xf8\xb7\x17\xdf\xba\x99\x99\xe2\x5b\x37\x12\xe9\x2e\x94\xf2\x0c\xa8\x63\x2f\xef\x2d\xcb\x27\xa7\x7f\x08\xa5\xc5\xc5\x05\x98\xad\x9f\x58\x5c\x70\x88\xec\xd5\x15\xae\xc2\x4c\xf6\x6a\x5d\x98\x17\x54\x8a\x97\xf5\x14\xb0\x63\xe9\x91\x12\x77\x67\xe5\xe6\x8e\xdc\x2d\x97\x66\x2e\x5b\x11\x24\x37\x74\x3b\x31\x60\x64\xaf\xbd\xc9\x0f\x38\x68\xcf\x37\x5a\x3a\xb4\x29\x7b\xa5\x3d\xf9\x01\x07\xed\x5d\xa6\x20\x6b\xd5\x7c\x81\xd1\x81\xe2\x2c\x73\xa1\xed\x5d\x6e\xb8\x28\x36\xbb\x2c\xd9\xe3\xf3\xec\xb2\x60\xd1\x53\xf6\xbe\x89\xfd\xa7\x03\xe5\xfc\x23\xb2\x6d\xef\x0a\x1b\x63\xf7\x74\xe1\xbf\xe0\x06\xdd\xf7\x1d\xff\xcb\x09\xc6\x76\x34\xa6\x98\x19\x32\x44\x98\x25\x18\x72\x98\xfc\x2d\x46\x68\x97\x38\xdc\x40\x24\xef\x43\x98\xd0\x48\x90\xbb\xa4\xe1\x3e\x16\x7e\x90\xa2\x13\xb1\x69\x1f\x56\x74\x32\x3c\x03\x8c\xd9\x64\x3f\x51\x78\x5d\xd9\x63\xc3\xb7\x01\xed\xc9\x37\xc2\x49\x18\xf7\x8f\xf9\xc1\x01\x76\x31\x43\x78\xc8\x2e\xe6\x0d\x07\x78\x2d\xd6\x8c\xd8\x16\xeb\xc6\x0b\xca\xbc\x12\xc9\x7b\xdf\x65\xb5\xe5\xbc\xef\xe2\x18\x91\x27\x76\x49\x92\x9f\x04\xa5\xbb\x01\x17\xa4\xc2\xdf\x6d\x8d\xae\x9f\x1f\x1c\x9a\xc2\x1a\xda\x1c\x4d\x16\xc2\xdd\x88\x0b\xd2\xe7\xef\x46\x5c\x50\x48\x76\x37\xe2\x62\xf9\x7c\xf2\x72\x15\xc6\x21\x23\x28\xb7\x80\xec\xd3\x9f\xdc\xe8\xbb\xca\xe4\x74\x32\x79\xee\x87\xad\x72\x1c\xb6\xc3\xd6\xc5\xbc\x20\xf8\x44\x2a\xcc\xb7\x5d\xf2\x62\xc1\x49\xb2\x3b\x79\x1e\x6a\xe4\x7e\x3a\xb3\x41\xfa\x3c\x05\x6d\xe0\xd1\xe9\xd3\xb9\x02\x54\x5b\x93\x30\xcd\xdd\x95\xf5\x97\xc8\xcc\xfb\x25\x9f\x2f\x97\xe3\x65\xe9\x29\x2d\xaa\x6e\xfe\x27\x0f\xce\x2e\xdb\x6f\x07\x85\xbc\x0b\x4e\xb1\x11\xbb\xbd\x5f\x3e\xe3\x5c\xe0\x3f\x11\x70\x25\xf6\x74\x57\x98\x1e\x11\xb7\xbb\x45\x40\x8c\x93\xbb\xe3\xf2\xe0\xa5\x8e\xcb\x63\x8f\xdd\x96\x79\x32\x8f\x8e\xd3\x63\x69\x94\x4f\x61\xdb\x3e\x2f\x0c\xc3\xa3\x78\xe3\x25\x8b\x26\x25\x44\xb0\x0d\x6f\x69\xb2\x11\xfe\xf7\xdb\xee\xa2\x4e\x93\x72\x17\xb1\x76\x8f\xcc\x7f\xcc\x82\xcb\xda\x77\xe6\x49\x56\x5d\x0a\x91\xec\x8f\x59\x65\x66\xc5\x90\x09\x38\x9f\x91\xc1\x9f\xb5\x93\xd5\x77\x7c\x9e\x8d\x1f\xa8\xfc\x60\xde\xf9\xaf\x87\x63\x92\xd1\x28\xff\x1f\xc2\x4c\x94\x5c\xd6\xc7\x64\x49\xba\xe7\xd9\x7b\x61\xe4\x59\xac\x2f\x24\x1e\xc2\x12\x97\x1c\xed\x63\xf2\x09\x28\xfc\x20\x30\x31\xd6\xc6\x43\x20\x8b\x92\x59\x3c\x04\xb2\x28\x61\x77\x87\xc1\xc6\xf1\x87\x1d\x3f\xd1\x71\x01\xc9\x79\x18\x6c\x9c\x49\x3d\x8c\x27\xce\xee\x3d\x66\xa3\xb5\x23\x6f\x1c\x4a\xcd\xc0\x0d\x7a\x38\xa7\xf6\xa0\x01\x49\xe3\x85\x01\x48\x1a\xcf\x7d\x76\x28\x4f\x1c\xa6\xf8\x63\x96\x3b\x9c\x29\x9d\x9d\x1e\x35\x7b\xfb\x10\x46\xa3\x47\x7d\x3a\x94\x74\x9b\x7d\x75\x28\x71\x1c\x47\xfe\x50\xe2\x38\x14\xe9\xc3\xf8\xe4\x1c\xaf\x63\x11\xfa\x37\xbb\xe0\x50\x31\x9a\x82\x73\xfb\x58\x6c\xb9\xe2\xd9\xc2\x4e\xe1\x0b\x93\xf8\xa7\x0b\xe8\x50\x9e\x39\x4c\x03\xc7\x22\x70\x70\xee\xeb\xc3\xe0\xe6\xc2\xf0\x3c\x1f\x90\xaf\xdb\x2f\x27\xf7\x58\x7d\xfb\xf1\x2c\x43\x1e\x83\x53\x2a\x39\x8c\x15\x87\xc1\xd1\x11\x30\x0f\x83\xa3\xc3\x00\x0f\x83\xa3\x73\xbb\x1f\xab\xd6\x37\x6c\xfb\x58\xdf\x1a\xca\x34\x28\x82\x62\x78\x3d\x36\x19\xee\xd8\x00\xc6\x64\x90\xc0\xf0\x90\x44\x5a\x06\x7b\xce\x68\x66\x26\xd8\x68\x66\x48\x56\xc5\x4e\x0a\x24\x1f\x9b\x82\x82\xd9\x01\x82\x68\x50\x5d\xe2\x50\x05\xcf\x35\xa2\xe4\x61\x34\x74\x58\xf8\xb1\x49\xff\x5a\xf9\x5e\xfa\x17\x4b\xb0\x49\xff\x5a\x79\x5f\x56\x0c\x76\x88\xd1\xd2\x91\x08\x8e\x22\x85\x32\x32\xe2\x51\xe6\xdf\x73\xd4\xb1\x43\xb5\x72\xf0\xe2\x1c\x45\xb1\x3a\x11\xd9\x8e\x62\x21\x93\x33\x50\x4c\x70\x3a\x2c\x26\x30\x1d\x54\xeb\x4f\x21\x40\xe5\x34\x37\x0e\x75\xb5\x0f\x22\xde\xaa\x43\xf5\x34\x01\x84\x1c\x55\xae\x7d\x36\x51\x95\x02\x98\xfb\xfd\xa8\x72\xed\xb3\x09\x55\x4f\x13\x7c\xc5\x61\x38\x34\x87\xba\xfa\x22\x8e\x6f\xeb\x30\xde\x99\x5d\x57\xad\x11\x66\xca\x04\x77\xfe\xe0\x88\x0f\x15\xd0\xdc\x72\x2b\x1e\xcd\x24\x65\x0a\x9a\xa5\xa2\x34\xd0\x4c\x51\xa6\xac\x99\xa2\x50\xf8\x13\xab\xb7\xb9\xd1\xbe\x28\x82\x8f\x35\x51\xf4\x79\xee\xfa\x3f\x33\xd2\xde\x4b\x37\x0d\x1a\xc6\x0c\x64\xe4\x30\x6a\x39\x1a\xcc\x61\xd4\x32\xb1\x9c\x87\x50\xcb\x54\xa5\x3c\x5e\xdb\x2d\xfb\xb4\x5b\x49\x62\x63\x09\xb5\x0c\x5e\xfb\xe8\x46\x16\x0c\x06\x61\x64\x41\x8c\x7e\x47\xf7\x25\x09\xb3\xea\xba\x24\xa3\x06\x1f\xaf\x3d\x98\xbd\x33\x8c\xcf\xe6\x7c\xca\x1e\xfc\x41\x3c\x1c\xae\x5b\x19\x7b\xc8\x31\x3c\x95\xb4\x60\xed\x9c\xf3\x39\x44\x68\x64\xa2\xc3\xb6\x5f\xc2\x26\x8f\xe1\x8b\x98\x5b\xca\xa6\x5e\xe2\x8c\x8f\xf1\x52\xca\x27\x96\x06\xf2\x82\x50\xcd\x28\x0d\xc7\x2e\x55\x9c\x7b\x6a\x37\x15\x6c\x69\x97\xa4\xfc\x30\x3a\x63\x43\x80\xcb\x1f\xc6\x6d\x10\x83\x7a\xec\xd6\xb5\x69\xc2\x76\x17\x0e\xb2\xeb\x49\xe2\x71\x3c\x5c\x3e\x92\x5d\x2c\x41\xb9\x91\x3a\xf9\x38\x14\xbf\xc5\x41\x71\xb1\x48\x5c\x90\xc7\xe1\x14\x4c\x6c\xfc\x9f\x14\xbc\x11\xd1\x79\x1c\x36\x21\x70\x74\x0e\xe3\x1b\xd8\xaa\xa7\xb9\xc1\x9f\xd2\xf2\x1c\x82\x6c\xa0\x4c\x1d\xa7\x07\x98\xb5\x73\x0c\x1e\x78\xb7\xc3\x35\x1f\x61\xb6\xa7\xcd\xf6\xf0\x82\xd3\x66\x7b\xb8\xcf\x29\x13\x06\x14\xbd\x80\x0c\xb8\xcf\xe9\x2b\x9d\x3b\xca\x05\xea\x41\xe5\x1c\x2e\xf2\x88\x25\xf8\xb8\xac\x4e\xb0\x56\x2e\xea\x48\x01\xee\xc3\x45\x1d\x3b\xcf\x86\x26\xb0\x56\x97\x2c\x10\x9c\xbe\xcb\x48\x7a\xf6\xf5\x0b\xa9\x60\x62\x5f\x48\x05\x9b\xee\x72\xf0\x3b\x3b\xdd\x85\x20\xf9\x42\xe1\x7c\x9f\xcb\xdc\x75\x20\xb1\x78\x1f\x2f\x28\x83\xc9\x51\x80\xdf\x47\xb8\x78\x31\x19\x4c\xd6\x2d\x63\x0c\xc7\xf5\x7e\xd5\xa6\x0c\xdb\x95\x21\x09\xc8\x3b\x6e\xcd\x04\x5c\xe5\x05\x69\x20\x55\xde\x06\x93\xc0\x67\x6e\xe7\xcd\x8f\xce\x7a\xbc\x10\x0b\xae\xc8\x17\x62\x81\x98\xf1\xd8\x5e\x83\xdc\x60\x48\x05\x84\x3d\x36\xcf\x20\xaa\x1a\x63\x01\x6a\xfb\x78\xac\x11\x40\xea\x63\x7b\x0d\xb2\x87\x04\xf2\x4f\x9e\xad\xe3\x85\x61\x70\x53\xaa\x5a\xe4\x87\x77\xbd\x28\x8c\x1c\xd9\x73\x32\x52\x3b\x97\xf5\x39\x39\x9a\x60\xe3\x07\xd3\x1a\x01\xf2\x9c\x5e\x5a\x7b\x7e\x30\x2e\x63\xe5\x0d\xdb\xa6\xb2\x81\xcf\xc9\xc4\xd3\xab\xf1\x24\x11\x3a\xcf\xc9\xb6\xa9\x42\x13\x2f\xad\x5b\x7e\x50\x98\x44\xe5\x59\x61\x12\x39\xa8\xe7\x64\xd5\x76\xa3\x4f\x93\x1a\x31\xe5\x9c\x4d\x6a\xf8\xd7\x39\x6b\x37\x76\x5e\x78\xc5\x82\x10\x36\x3b\xeb\x7a\x98\xcd\x39\x1b\x5f\x02\x61\x82\x7a\x34\xe2\x8c\x4f\x43\x3d\xd0\x40\x4e\x43\x3d\xb8\xc9\xcf\x59\x8e\xaa\xd8\x37\xce\xd9\x36\xb6\x08\x13\xe7\x62\x48\x4a\x04\xc2\x73\x99\xf5\x45\x5a\x58\x8c\x48\xc9\xb2\x9f\x3f\x91\xbe\xa0\x4b\x9e\x46\x82\x7c\xe6\x7b\x71\xc0\x75\xd8\xd8\xb9\x28\x95\x66\xee\xde\x73\x71\x4e\xc9\x30\xe2\x73\x79\x29\x0d\xe9\xc2\x8a\x00\x55\x3e\x85\x15\x01\x3b\x7e\x3a\xa5\x1b\x39\xe1\xce\xe5\x25\x3c\xa3\x5a\x4d\x17\x4b\xb6\x3a\x41\x64\x2e\xe7\xf3\xad\x97\xcf\x6c\xae\x8a\xe6\xc8\x21\x3a\x57\x15\xfd\xd8\x68\x61\xb8\x53\x7e\x38\xfc\x03\x5f\xbc\xc3\xca\x54\xac\xca\x7c\xc9\x36\xf9\x89\xe3\x05\x5c\xc3\x29\x71\xbc\x7e\xd6\xeb\x27\x8e\x7f\x2a\x5f\x9f\xb2\x0f\x7f\x14\xf1\x73\x33\xee\x86\x6d\xb3\xbd\x8a\x76\x66\x5b\xf6\xe0\xa5\xcf\xb4\x61\x24\xce\x4c\xaf\xbb\x7f\xf8\x13\x8c\xfb\xdc\x8c\xcb\xe1\xeb\x4b\xcf\x19\xf2\x4f\xe0\x2e\xf8\x2f\x4e\x41\xa4\x2b\x41\xfe\xa7\x20\xd1\x2b\xa9\x10\x4f\x99\x97\x57\x72\x09\x9f\xc5\xd9\xed\xc2\xf2\xce\xe2\xa4\x97\x33\x8d\x3a\xc7\xe5\xcc\x27\xbb\x7f\x08\x95\xb2\x2f\xaf\xa4\xb2\x3d\x65\x5f\x5e\x97\xcf\x38\x8c\xc9\xad\xf4\xf2\xfc\xf7\xbf\x42\xcd\xc3\x53\xf6\x66\x6a\x28\x9e\x55\x3e\xda\x5c\x07\x67\x55\x5e\xcb\xdc\xbe\xa7\xb2\x62\x70\x89\x9d\x42\x62\xaf\xa4\xa8\x3b\x95\x15\x63\x25\x47\xdd\x59\x5f\xa4\x50\x26\xcf\x69\x31\x10\xa5\x4f\x65\x66\x5e\x89\x62\x38\x95\x27\x83\xcc\x61\x67\x7d\xa9\x60\x14\xb7\x5e\xe0\x59\xa8\xa8\xc2\x1e\x52\x9e\x8c\x4a\xcd\x9d\x53\x05\x73\xb0\xa4\x9c\x4e\xc4\xcc\x54\x3a\x33\x06\xf8\x81\x53\x66\x71\x52\xd1\x9e\x4d\x70\xa0\x08\x8c\xe7\x2b\x9f\xc7\x49\x76\x2a\x94\xb1\x20\x85\x9e\xcd\xc6\x1b\x5a\x74\x01\x3c\x66\x46\x86\xec\x8f\x41\xe9\xec\xb2\xde\xb0\xed\x6c\xc8\x8e\x2c\x7d\x76\xef\x19\x26\xa6\xcb\x7c\x13\x21\xf5\xec\x32\xe5\x41\xb5\x2d\xd7\x10\xd5\xe5\xc9\x65\x88\x5d\xbe\xcf\x48\xda\xa7\xab\xd0\xa3\xb5\x9c\x43\xa0\x25\xe6\xd5\xc6\x6a\x68\xb2\x6d\x1a\x3e\x68\xdb\x34\xb3\x34\x14\x7f\x92\xeb\xf1\x1c\x8a\x6c\x8e\x3e\x71\x0e\x29\xf7\x1c\xa4\x61\x3d\x6e\xe1\x03\xab\xbe\x7c\x20\xd5\x97\xfd\xbb\x0b\x68\x0f\x87\xdb\xe5\x4b\x65\x80\xbb\xac\x0d\x91\x0a\xce\x5d\x76\x44\xb8\x93\x32\x65\x7c\x94\x8b\x53\xd5\x69\x36\x80\xf6\xe7\x6e\xdd\x37\x24\x49\x6a\xdf\x88\xaf\x38\xf7\x77\xd2\x78\x43\x38\xf7\xc8\x19\xe7\x21\x18\x0e\xfc\xec\x90\x2a\xc9\x6e\x3e\x84\x7b\x67\x1b\x1c\x52\x25\xe9\xe0\x50\xec\x70\x64\xb8\x53\x76\xea\x4e\xfa\xa2\x53\xe5\xdc\x29\xac\x7e\x2a\x52\x70\x22\x63\xc8\x69\x60\x35\x11\xe3\xa7\x0c\xd7\x13\x81\xb8\xe7\xe1\x62\xb4\xb1\x02\x9f\xce\x9d\x41\x79\xbf\xf3\x7c\xfd\x12\xf9\xe4\x7c\x55\x89\x8c\x5b\x68\xeb\x8f\x1e\x76\xbe\x68\x6b\x46\x7e\xda\x72\xc5\xfe\x32\xda\x1a\xa1\xe3\x95\xe5\xd9\x70\x2f\xdc\x9a\xf5\x39\xcd\x0b\x3e\x6d\xda\x3e\xf5\xef\xf1\x7a\x25\xde\x0c\xf3\xb2\xbb\x08\x52\xff\xc9\xf6\x7c\x62\x89\x96\x73\x76\x29\x95\x35\x0b\x76\xd9\x6e\x1b\xe1\xf3\xbc\x2c\x2b\x85\xd0\x4b\xb2\x12\x33\x71\x59\x2a\xa4\x4b\x79\x01\xd8\x11\xaf\xd8\xfe\xb7\xcb\xe8\x56\x5e\x28\xb6\xc3\xfd\x6e\xd9\xb4\x7e\x5b\xd6\xc8\x68\xee\x57\xf2\xe5\x87\xdd\x77\x74\xc6\x7f\xbf\x97\x76\x66\xf5\x76\xb5\xce\xcf\x08\x5f\x37\x62\x7a\x15\x0c\x62\xc5\x1e\x71\x4a\x44\x5f\xa9\xdb\x77\x3e\x66\x67\x4c\xe3\x63\x7c\x4f\x8c\x32\xa7\x61\xd0\xe8\x96\xe7\xf3\x16\xe2\x0e\x29\x32\xa1\xaf\x85\xf3\xfe\x58\x95\xa7\x89\x61\x5c\x29\x3f\x38\x91\x0d\xa3\x38\xed\x3f\xc9\xfe\x78\x94\xe9\x39\xf6\x87\xf3\x8d\x3b\xfc\x47\xd8\x25\x01\x7d\x0c\x9e\x7f\x2c\x8f\xa3\x72\x39\x2c\x31\x23\xba\x14\x96\x88\x16\x7f\x4d\xdb\x7f\xff\x5b\xa6\x88\x65\x97\x84\xf5\x11\x7e\x71\xc9\xe4\x4e\x7a\xec\xeb\x27\xaa\x2f\x53\x24\xaa\x4b\x26\x78\xcc\x3a\x97\xca\xb5\x4c\x91\xa7\x2e\x95\x6b\x21\x53\xc1\xf5\x13\xdc\x17\x52\x1d\x5c\x93\x78\xfa\xa0\xbd\xeb\xf7\xff\xc2\x78\x64\x90\xef\x7c\x2f\x83\x7c\x6e\xf0\xeb\x27\xb5\x2f\x64\x46\xb8\x9c\xfd\x23\x72\xe8\x65\x83\x7c\x0e\xd8\x65\x83\x7c\x76\xdb\x35\xcb\xfb\x3a\xf3\x5c\xf4\xcc\xfb\xf2\xbe\x46\xb8\xbe\x66\x81\x77\x22\xa2\x5c\xb3\xee\xb0\xc8\xd6\x97\xec\xf7\x44\xfd\x5c\xb3\xe8\x5f\x18\xaf\xe8\x0f\xf3\xbb\x94\x6a\x99\xb8\xa5\xcb\x09\x45\x3a\xed\x9b\x7e\xfe\x17\xfd\x91\x68\xae\xc5\xf4\xa7\xff\x45\x0e\x89\x88\x61\x97\x52\x2f\x93\x99\xe1\x92\xec\x5f\x31\x68\x5d\x8b\xee\xb0\x46\x83\x0a\xd0\x6b\x34\x20\x6b\x6f\x54\xb1\x4b\xb5\x5b\x60\x06\x97\x0c\xec\x83\x0d\xb4\x3c\x7a\xce\x04\x2a\x46\x72\xb0\x21\xd7\xdf\x00\x07\x13\xa8\x18\xc9\xc1\x80\x7f\x52\xff\x32\xc2\xc9\x2f\x1b\xd4\xc3\x63\xaf\xd5\x77\x32\xff\xfb\x0e\xa6\xfd\xa1\xef\xb3\x00\x42\x76\xc3\xcc\x2e\xdb\xdb\x1b\xdf\x9f\x7a\x9f\xf6\xe5\x40\x88\x4d\xe2\xda\x3c\x7e\x9e\xe5\x20\x08\xb3\xbc\x36\x8f\x3f\xf3\xb1\x79\xfc\x3c\x6f\x7a\x4e\xff\x8e\x98\x0c\x3f\xbc\x36\xfb\x4f\x78\x16\xf0\x37\x0c\xe0\x72\x80\x64\xee\x9c\x6b\x7b\x71\x38\x7c\xf0\x93\x31\x3a\x2b\xbc\x3d\xbf\x67\x26\xd0\xe6\xf5\x68\x30\xd7\x4f\xda\xef\xe8\x16\x97\xe2\x21\x3b\x0b\xf0\x13\xfe\x3b\x61\x02\xd7\x4f\xf6\xef\x9d\x05\x2b\x96\x41\xd2\xdf\x4f\x15\xe8\x04\x1e\x5c\xb2\xb6\x83\xb9\xbd\x24\xf7\x57\x4a\xdb\x5f\x4e\x56\xd2\x78\x3e\xf5\x01\xcf\x76\xc7\x72\xa6\x94\xbd\xe4\x77\x97\xff\xe1\xbe\xb9\x8a\xc8\xe7\x40\x54\x79\x13\xa2\x70\x5f\x4a\x75\x42\xe5\xb2\xab\x9a\x5c\x9e\xe5\x3c\x88\x62\x7b\x09\x88\xdd\x59\x7f\xa5\x36\xe1\x32\xbd\x14\xab\x89\xd7\xf4\x52\xac\x66\x67\xbf\x0b\xa8\x0d\xa0\xe5\x52\x6c\x26\x41\x16\x57\x35\x71\x3c\x7b\xf9\xd2\x7f\xd3\xf2\x45\xdb\xbf\x9a\xce\xcf\xe7\x7f\xd1\xc3\x76\x68\x72\x45\x47\x4c\xbf\x9c\xd5\x24\x37\xcc\xd5\x14\x56\xc8\xfe\x77\xe8\x26\xab\x61\x1c\x37\x0c\xc7\x38\x6e\x16\xa3\x59\x3c\xcc\xb3\x23\x37\xd9\xaf\x46\x6d\xd3\xbe\x03\x37\x73\xad\x5e\x0e\xdc\x84\xa1\x77\xf9\x4e\xd8\xdf\x5d\x9e\x06\xce\x57\x97\x67\x01\x7e\xd4\x2d\x84\xc1\xc1\xbb\x54\x99\x0f\x07\xea\xa6\x80\x67\x51\xd0\xe8\x51\x88\x11\x38\x5e\x17\xbc\x8e\x67\x07\x76\x32\xa2\x21\x81\x97\x2b\xc0\x81\x9e\xb4\xe7\x40\x4f\xae\x1c\xc1\xbd\xc7\xe7\xce\xb4\xc5\x1f\xb0\xff\x35\xec\x23\x85\x06\xd5\x57\x99\xb9\xa5\x84\xd4\x9e\x08\x52\xbe\x54\x5f\x05\xd5\xe7\x1a\x16\x78\x23\x7a\x5c\x32\xf0\x93\x6d\xfe\x32\x70\x9b\x88\x84\x6b\x57\x6d\x7d\x2e\xf6\xdd\x2a\x24\x1b\x77\x77\x76\xc5\x48\x44\xd7\xfe\x0e\x3b\xa3\x92\x72\x31\x91\xa8\xef\xda\x5d\x50\x0a\xde\xb3\xdb\x53\x11\xdf\xe1\xe5\xf0\x4f\xd2\x59\x5d\xbb\x5d\xf0\x5c\x60\x3f\x85\x64\x03\x5f\x7f\xc9\x8b\x40\xb8\xcf\xb5\xbf\x39\x18\xe9\xf4\x25\x3d\x4d\x1e\x22\x9d\x16\xe5\x55\x20\x8d\xc1\x75\x98\xf2\xf4\x70\x58\xd2\x43\x86\x90\x97\x81\x1c\x20\xd7\x4f\x63\xd9\xa8\xeb\x7a\x1d\x2f\xdd\xa1\x4a\x4e\x06\xea\x79\x5c\x76\x32\x10\x6c\x7c\x09\x7a\x43\x14\xfc\x75\xc8\x33\xc5\x7a\xbf\x0a\xcc\xc2\x0f\xf2\x3b\x71\x0b\x08\xda\x3d\x91\x64\xeb\x3a\xbd\x9e\xf0\xb5\xd3\x0e\x35\xf8\xf2\x69\x07\x0d\xa2\x86\x35\x1c\x7c\x11\xd7\xf9\x2e\x68\xc6\xfd\x53\x79\x36\x0a\x95\x5c\xe7\xbb\x7c\xd9\x13\xa7\xe9\xe0\xf9\xb2\x78\xca\x17\x5e\x1d\x98\xfb\x0b\xe8\x61\xd3\xc8\x39\xd1\xc9\xc9\x73\xfd\x54\x9c\x0d\xc8\xc5\x65\x0d\x07\x47\xdf\x25\x0d\xa7\x93\x94\xef\xba\xac\x32\x20\x24\x5e\xf6\xfa\xc0\x54\xae\x2e\x45\x8c\x4e\x95\x98\x97\x23\xad\x78\x50\x4c\x13\xd7\xf5\x2a\x6a\x99\x9a\xcb\xe6\x8f\x4f\x8b\x72\x66\xc1\x76\x2e\x1f\xc0\x3f\x25\xf1\xb9\x2e\x3b\xba\x38\xcf\xb7\xdd\x6f\x59\xbc\xdb\x61\x15\x70\x59\x25\x2e\x04\x37\x72\xdd\xb6\x22\xb2\x27\x6f\x2b\x1f\x9c\xdf\xdb\xf5\xa8\x60\xa4\xb7\x27\x05\x4e\xae\xf0\x53\xd0\x30\xd7\xed\x49\xc9\x96\xba\x5f\x57\x14\x4d\xca\xf3\x84\x68\x67\x08\x11\x41\x6c\x97\x20\x44\xe0\x71\xae\xc7\xe1\x22\xec\xeb\xe7\xa5\x2b\x7d\xfc\xd4\xac\x0d\x13\xcd\x25\x2d\x6b\x02\x6b\x7d\x3d\x72\xa0\x21\xbe\xbd\x4a\x16\xa7\xf7\x79\xe9\xcc\xdc\x3d\x2f\x9d\xbc\x21\xba\x58\xba\xc7\x74\xc1\x90\x1f\x81\x84\x11\x01\x0d\x54\xfa\xc8\x84\xf2\x8b\x74\x92\x40\x5d\x46\x2a\x41\xe9\x3d\x19\xb1\x97\x4d\x7a\x4f\x2f\x0b\x9f\xf3\x83\x82\x7d\xb3\x3e\xb7\x52\x79\x23\x87\xde\x93\xd0\x78\xa1\xeb\x7e\x4b\xc3\x84\x2d\xdd\x93\x1d\x6a\x9d\x37\xec\x50\xfb\x34\x69\x87\x5a\x18\xd7\x6d\x1f\x06\x65\x24\xef\x9f\x36\xb4\x21\xcc\xde\x76\x61\x84\x0f\xdd\xb3\xcd\x0b\x99\x9a\x7b\xb6\x43\x2d\x3b\xf5\x9e\x6d\x5e\x18\xfc\x60\x8f\x5a\x6e\x96\x7b\x36\x12\xf1\xd3\xe8\x6b\x80\x08\x25\xb3\x3d\x66\x83\x5e\xec\x3b\xa4\x4d\x93\x9a\x03\x7d\xff\xb4\x9e\x8d\x2b\xfc\xfe\x69\x3d\x1b\x42\xce\xbd\x18\x52\x99\xcd\x7e\x2f\x26\x64\xf0\xc3\xaa\x2f\x32\x35\x0a\x7f\x9d\xd7\x4f\x13\xc5\x3f\xf0\x86\xec\x3d\x84\x8d\xde\x8b\xbd\x4e\xd9\x16\xf7\x62\xaf\x53\xa5\x93\x43\x86\x90\xd0\xb1\xbc\xfe\x34\xbe\x90\xe5\x24\xc7\xf8\x5e\x64\x39\x61\x76\x9d\xed\x1b\x24\xc8\xbd\x2a\xca\x99\x5d\xb4\xca\x5a\x12\xbe\x74\x3b\xd7\x37\xb6\xfa\x7b\x55\x6c\x36\x13\xf1\x53\x8f\x3e\x92\xc4\xbd\xda\xb7\x96\x53\x7f\xcb\x47\x82\xfe\x70\xaf\x36\xaf\xc4\xa6\x78\xaf\x32\x17\xb1\x7a\xab\xa9\x6e\x74\x61\x5f\x5b\x63\x0c\xc6\x81\x17\xc8\x92\x01\xa9\x43\x95\xa7\x81\x16\x3c\x0d\x99\xa6\xcd\xd3\x90\x53\x7f\x6f\x9e\x86\x8c\x69\xb3\x53\x31\x96\xd9\x5b\x5e\x16\xb4\xd4\xdb\x28\x7c\xec\x24\xf7\xe6\x79\x08\xd9\xce\x36\x1e\x31\xf5\x7e\xb3\x8d\x73\xa2\x37\x55\x87\xe3\xb4\x6d\xef\xea\xf3\x85\xa9\xcc\xa5\x72\xbf\xc9\xc5\x99\xb9\xe2\x58\xf0\xcf\x1b\x4a\x2e\xce\xbe\x7f\x93\x8b\xb3\x18\xc5\x8e\x36\x76\xd4\x9b\x4c\x9c\xb9\x2d\xf6\xb4\x31\x35\x65\xa8\x4d\xbe\x90\xa3\x8d\xa3\x53\x2c\xfe\xd6\x3f\xc5\xb1\xde\x6f\xe6\xf1\xca\x88\xe4\x6e\x84\xa5\xbc\x90\x7e\x0e\x81\x53\x91\xa3\xf0\xdf\x4a\x45\x4e\x28\xec\x5d\xed\x6e\x64\x66\xab\xa9\x66\x26\x15\x05\xf0\x09\x7e\xbd\xab\x4d\xad\xac\x96\xca\x61\x2e\x64\x18\xb8\x1d\x17\xb0\xf1\xfc\xba\xd8\x33\xd5\xd5\x7e\xba\x4c\x93\x02\x07\x3e\x62\xc5\x2d\xa7\xca\x42\xb9\x95\x5b\x4e\x95\x85\x7a\x27\xb7\x42\x0b\x16\xd2\x9c\xdd\x4d\x55\xd1\xa2\x2a\xde\xf2\xaa\x2c\x64\x48\xbe\x95\x6f\x7c\xa1\x04\xcb\xed\x68\x03\x6a\xa6\xdc\xca\x32\xb9\x50\x64\xe5\x6e\xa6\x2c\xfa\xde\xdd\x14\x01\xb1\xd1\x84\xad\x9b\x91\xe3\x6e\xb9\x66\x96\xbe\xd0\x84\xdc\x79\xf0\x88\x26\x77\x1e\xa7\xad\xd9\xd8\xb9\xf0\xc2\x23\x84\x60\x74\xc6\x5b\xa1\xb5\x4b\x5f\xf8\x61\xf6\x0f\xe9\xb4\x2b\x9f\x3c\x0b\x22\x5f\xcd\x4a\x65\x8a\xbb\x3b\x1b\x7c\x9c\xf8\xb7\xd4\xae\x95\xaa\x0f\xf7\x4f\xed\x2a\x1f\xbe\xd2\x9d\x0d\x20\xce\x8e\x5b\xee\x99\x4a\x18\xec\xfd\x53\xbc\x0a\x71\x4d\xf7\x78\x8d\xb4\x99\x2b\x61\xab\x3a\xb1\xb6\xf7\x90\x7f\x8f\xcd\x3f\xe4\xdf\xe3\xc0\x49\xf5\x5a\x29\x49\x75\xff\x54\xaf\x02\x98\xe3\x1e\x0e\xc9\x84\xb1\x08\x6c\xb5\x92\x73\xeb\x1e\x76\xf8\xad\x7c\xb2\xdb\xca\x1b\x42\x87\x1d\x7e\x2b\xa3\x90\xc3\x0f\xa6\x2d\xe5\xac\x53\xc0\xf4\x96\x6a\xd5\x80\x16\xdc\xbb\xcd\xbc\x8c\x53\x3e\x8f\x86\xd1\xfb\x76\xee\x97\xcf\xd5\xe2\xa2\xf1\x1f\xa6\x7b\xf9\x87\x90\xf2\x08\x56\xd1\xb8\x2b\x9e\xd5\xf2\x7e\xcb\xb3\xdb\xcc\x84\x3f\xca\x27\x36\x45\x5c\x78\x56\x55\x4c\xcf\x30\x9f\xd5\xc6\x4b\x9e\x2f\xd9\xba\xfe\x4d\xf7\xe3\x1a\x0f\xd4\xd7\x7a\x36\xdd\x4e\xe1\x26\xcf\x66\xe8\x47\xd8\xf0\xb3\xf9\xd2\x9d\x79\x43\xc5\x13\x06\x2f\x38\x6f\x64\x26\xf3\xd9\xde\xf3\xc1\x0f\xf6\xe1\x47\x35\x7a\xec\xee\xee\x8c\xea\xdd\x78\x8c\xca\x2e\xae\xcf\x1b\x8f\x37\xda\xbf\xb9\x7c\xe4\x11\x27\x68\xe5\xf9\x71\xf6\x0a\x97\x7c\xca\x62\xbb\x7d\x66\x4a\x9c\xbd\x11\x6c\xfd\xb8\x6c\x44\xce\xcb\x23\x50\x2a\xf8\xaa\xa7\xd8\x4e\xce\xfb\xca\x56\x30\x78\xb6\x1d\x9c\x1e\x65\x07\x1e\x7c\x2f\x3b\xf0\x60\x00\x8a\x52\x65\xc4\x55\xc0\x74\xe6\xb1\xca\x0e\x9e\x93\xf1\x38\xff\x40\x44\x97\xa7\xca\xec\x93\x2b\xf9\xa9\x32\x9a\xe4\x64\x3d\x46\xa0\x46\xae\x78\x8c\x40\x0d\xd3\x79\x54\x3c\x98\xa0\xcd\xc7\xf9\x05\xb8\x97\x1e\xd9\xa5\x5a\xff\x93\xd1\xee\x79\xfd\xd9\x01\x1c\x3c\xc2\x9f\x62\xf6\x7e\x9a\xb5\x00\x76\x56\x53\xa8\x60\x18\xd6\xd3\x9c\x02\xa8\xf0\x85\xe5\xef\x4c\x88\xf8\xec\xbc\x7e\x7e\xb0\xf0\x16\xe6\xf2\x34\x43\x84\xd8\x7a\x2e\x2b\x8c\x25\xe8\x91\xcb\x7b\x21\x3d\xf8\xd3\x8b\x6e\x8c\x74\xda\x7d\x1f\xb0\xb1\xba\x61\x11\x61\xe6\x4f\xef\xda\x69\xe9\x43\xe6\xac\x15\x24\xee\x63\x54\xeb\xa7\x0b\xa5\xef\x66\x33\xf7\x37\xc5\x5f\x9e\x2f\x6d\x2c\x7a\xbc\x75\xa6\x43\xa6\x32\xf1\xd6\x11\x73\xc9\x33\xec\x21\x4a\x07\x43\x1e\x92\x08\xe7\x8f\x22\xb8\x1a\x79\x57\x9f\x21\x17\x09\x43\x56\x89\x08\xa4\xbd\x67\xc8\x45\x32\x68\xf0\x3d\xe3\xf4\xb8\x8b\x6d\x64\x48\x43\x26\x78\x8e\xe3\x90\x0b\x81\xf7\xe5\x05\xe7\x3e\x7b\x64\xaa\xda\xf0\xc4\x3d\xbb\x02\x70\x3b\xcf\xb2\x21\xb2\xd9\x77\xd9\x10\x39\x4c\xbb\x02\x72\x39\x3c\xbb\xd2\x53\x47\xe4\x7d\x76\xd9\x48\x3b\xff\xdb\x6d\xcb\x66\x76\x4a\xb2\xfa\xe9\xe1\xf6\x24\xd1\x85\x54\x63\x68\x3a\xac\x1a\x33\x06\x47\x85\x51\x5c\xec\x91\x59\x6a\x7c\x9e\x5f\x61\x31\xa3\x38\x5e\x3b\x08\x6d\x1a\xb7\xd5\xf8\x41\xe5\x4e\x0a\x7d\x58\xfa\x60\xb7\x1d\x02\x44\xc1\xb6\x0e\x09\x1f\x85\x06\x8c\x2b\x62\x73\x1c\xbe\xd5\x37\xde\xf0\xad\xce\x0b\xb6\x4c\x66\xb7\x1c\x3f\xbe\x84\x49\xf0\x39\x1e\x6d\xbf\x50\xa5\x22\x73\x95\x1b\xe2\x94\x7f\x2a\x97\xe9\x73\x2e\xfa\x3f\x33\x7d\xae\x7a\x4e\x7b\xaa\x29\xb7\xc5\xce\xf9\x9c\x72\x8f\x74\xbe\x97\xbb\x8a\x95\x3a\xe5\xce\x61\xab\x9c\x72\xe7\xb0\x55\x4e\xef\xb5\x6c\x66\x95\x94\xfb\xdc\x58\x97\xdd\x39\xe9\x4f\x25\xe3\x3e\x13\x74\xd9\x81\xcf\x6e\xbf\x5e\xfb\x24\x3f\x3c\xe2\x8c\x19\xe1\x6d\x33\x5c\x80\x86\xcf\x6b\xb9\xa1\x89\xdb\x49\x33\x59\x96\xdb\xc8\x03\xce\xa4\x4d\x37\x6c\xd0\xd7\x74\xc3\xf5\x70\xdb\xa0\x05\xff\xbf\xdf\x2d\x4c\xaf\xef\x16\xa6\x0d\xeb\xd8\xf4\xf1\x78\x83\xe6\x8b\x17\xc5\xca\x41\x7f\xa4\x84\x31\xd7\x2f\x88\x95\x4b\x45\xc6\x9b\x85\x6c\x4e\xcf\x63\xe5\x25\xc3\x34\x66\x15\x80\xcc\xf3\x08\x26\xc8\x28\x1f\x41\x13\x38\x35\x02\xa4\x2e\xfd\x9f\x08\xd2\xa7\x69\xd2\x65\xbf\xe5\x59\x16\xa7\x7f\x3b\xbe\x4f\x2e\xc2\x96\x48\xca\x3e\xd9\x72\xb3\xcc\x7f\xb8\x87\xfa\x24\x6f\x78\x12\x5d\xf6\xc9\x25\x7f\xff\x9d\x86\x3e\x39\x00\x6d\xa5\xb7\xa6\xdd\xcf\xfb\xdd\xf4\x31\x5c\x79\x4f\xff\x49\x71\x7d\x72\xbd\xb6\x7f\xf4\xf7\x49\xee\xee\x69\xca\xff\x72\x67\xa7\x70\x6d\x9f\x14\x5f\x36\xfd\x5b\xa4\x3e\xc9\x80\x33\x2d\x19\xd0\xbc\x69\x00\x99\x0e\xbb\xaf\x57\xfe\xaf\x3a\x4e\x3c\xcb\x7d\xbd\x66\x7c\xb3\x82\x87\xd7\x8c\xc7\xee\xeb\x95\xf6\xc4\xaa\x07\xcf\x3e\x5e\x8c\xe7\x32\xc1\x35\x3f\xdc\xfa\x80\x0e\x7d\xbe\xd2\xc1\xf2\x9a\x83\xf3\xc1\xa2\x48\x95\x11\x8a\x17\x9b\xb1\xd7\x74\x21\xc3\x4d\x5f\x56\xde\x50\x99\xb6\x1e\x1a\x96\xfe\xdb\xc8\x73\x16\xc5\x76\x9c\x95\x49\x5b\xde\xab\x3f\xb3\xbc\x58\xb5\xef\x59\x37\x25\x2a\xeb\x49\x3e\xdf\x27\x25\x33\xd8\x52\x96\xad\x4f\xab\xb3\x7e\x6f\x99\x89\xd5\x89\x81\x18\xe7\xea\x8d\xc6\x0b\xdb\x7f\xff\xa3\xb0\x47\x9f\x56\x43\xf2\x32\x6c\x95\xcd\x98\x18\xf6\xea\xbd\xc4\xff\x43\x4b\xc7\xb3\x90\x11\x4c\xdc\x7a\xeb\x7f\xfa\x93\x44\xc8\x34\x6d\x92\xf8\x46\xde\x97\xa3\x79\x2c\xa1\xd9\x8e\x66\xc6\xe3\x4c\xbd\x2c\xc4\xa6\x5b\x9b\x93\x65\xbf\x31\x5b\xdb\x61\x59\x25\xf4\x17\x5f\x57\x1b\x1f\xa8\x48\x44\x4f\x83\xc5\xb7\x6e\xa6\xb4\xec\x3f\x46\xc9\xe1\x29\x2e\x54\x52\xf8\xc0\x5e\x92\x8d\x37\x7c\xf9\x7c\xba\xb8\xd5\x44\x9e\xab\xd2\xc6\x2e\xec\xff\xfa\x96\x0d\xcf\xa8\xab\xab\x1e\x6f\x19\x85\x2a\xa7\x4d\x49\xf0\xd0\x27\x57\x4a\x0b\xe2\xa1\x4f\xb2\x56\x4c\x6d\xca\x30\x64\x8c\x98\xd7\x4f\xb7\xb2\x6f\x31\xd5\x4d\x00\x29\xa6\xb6\x99\x71\xa6\xc5\xf6\x5e\xe4\xfc\xa0\x1a\x73\x23\x73\xd9\x84\x89\x1a\x19\xe4\x6b\x45\xe0\xdc\x37\x23\x84\x39\x77\x32\x0a\x74\x38\x55\x53\x2d\xb6\x2d\xe7\x4e\xb2\xec\xc4\xea\x39\xdb\x56\x42\xd0\xfb\xd4\x7f\x17\xf1\xc6\x76\xea\x92\xb1\x46\x68\xec\x72\xfb\xb3\x9d\xbb\x57\x37\x43\x56\xb8\x56\xb0\xbb\x7d\x72\x4d\x09\x06\xf8\x93\x6b\x6b\x72\xcf\xf6\xa9\x2b\x41\x1e\x73\x36\x26\x1d\x97\x10\xf0\x13\x4b\x6b\x2a\x9d\xf5\x69\x38\x69\x7d\xa6\xe4\x27\x85\xd6\x15\x3e\x3f\x9c\xf8\x21\xed\x0f\x83\xaa\x33\xde\xa1\x8a\xdf\xd0\x3b\x5e\xd1\x27\xcf\x36\xbb\xd0\xde\xa9\xf7\x33\x61\xe3\xad\xeb\x94\x67\xab\xdf\x34\x20\x8f\x6b\x65\x63\x29\xa4\xaa\x6e\x7f\x41\xc9\xf5\x69\x57\x55\x27\x16\x7c\xf7\xc5\x93\xde\x8d\xeb\xfc\x1c\x2e\x79\x5a\x6b\xe1\x59\x28\x8b\xc2\x68\xac\x36\x64\xb8\x3f\x09\xb6\x7e\xf6\xf0\xae\xfa\xe5\x6c\x49\x79\x55\x93\xe7\xab\x4f\x2e\x6f\xcc\x21\x78\xd3\x61\xf1\xff\xe6\x1a\x01\x79\x2e\x6a\x3f\xe3\x39\xde\x7a\x83\x59\x5f\xc9\xa6\x7d\x61\x87\x1e\xce\xcc\x91\x11\x4a\x16\xad\x30\xd8\xe3\x85\xc2\x65\x4e\x24\x7a\x82\x82\xee\x93\x64\xc7\x19\x8e\xf6\x93\x15\xa9\x9a\xd3\x27\xf9\x3b\xcb\x02\x0b\x3b\xcd\x62\x43\xd4\x29\xa5\xfc\xf3\xff\xd0\x73\x86\x74\xee\x7a\xe6\xfd\x53\x2c\x3b\x34\x29\xb9\xd5\x0c\xb7\x91\x70\x39\x71\x3b\x2a\xb9\xd5\x8c\xb8\x70\x4d\x6a\x2f\x8b\xa4\x64\x07\x33\xef\x5f\x82\xda\xd0\xff\x65\x82\x32\x03\x97\xaf\x8c\x10\x7c\x89\x1e\xc4\x15\xe5\x46\x98\x19\xdf\x65\x7a\x32\x61\xd7\xae\xef\x33\x5e\x95\x5b\x8b\xae\xd9\x27\xa5\xca\x9a\x39\xb3\x97\xa4\x93\xcf\x78\x45\x1f\xf3\xa5\xd4\x58\x33\xdf\xdf\x92\x56\x98\xdf\x5b\x60\x43\xae\x44\x65\xc6\x9a\x58\xb0\x9f\x68\xbc\x4c\xf0\x8c\x9f\x64\x4c\x9e\xe7\x3e\x29\x0b\x42\x5f\xd8\x13\x92\x6a\x5b\x67\xdb\xde\xba\x14\x61\x73\xb7\x2e\x41\xb6\xe5\x23\x78\x1c\xc7\xe6\x91\xfa\xc1\x3d\xff\x58\xfd\x48\x7b\x3f\x11\x77\xd9\xd8\xb5\x8f\x04\x42\x36\xed\x4f\xc2\x6d\x15\xd1\xe2\xb1\xcd\x0d\x36\xf3\x48\xa0\xe2\xe0\x3e\xbe\xc5\xe9\x70\xd7\x33\x1d\x1c\xbf\x67\x96\xf4\x11\x1e\x90\x73\xfd\x98\x40\xbe\x17\xda\x2b\x5b\x62\x9e\xa4\x5f\x65\x0a\x67\xe1\x3f\x6b\xae\xa6\x79\x12\xfe\x2f\x52\xca\x3c\xf9\xfe\x2b\xfc\x20\x89\x31\x77\xec\x6c\x11\x37\x53\x3e\xff\x9f\xb1\x33\x39\x9b\x5e\xd5\x81\x70\x2a\x37\x04\x9b\x99\xcd\xc9\xc5\x63\xfe\x21\xdc\xa7\xab\xf8\xf5\x7a\xf9\x2d\xdd\x6d\x03\x62\x10\x1a\x4a\xd2\xb6\x38\x0f\x3d\x98\xc2\x1e\xcf\xd3\xa7\x8c\x16\x64\x35\x2c\xf4\x60\x54\x7c\x4c\xea\xbe\x59\xda\xa2\x89\x15\x59\x15\x54\xee\xfb\x92\x25\xa2\x8d\x9f\x5c\x3b\xc2\x57\x37\xf6\xdd\xc2\x4c\x8e\xe7\xee\x72\x33\x31\x08\xe7\x55\x98\xb4\x38\xd5\x40\xcc\xcb\x6e\x4d\xa4\xd0\xc2\xa9\x17\x68\xe0\xd6\x33\x23\x78\xf4\x5c\xe3\xf9\xd5\x73\x7c\xff\x93\x63\xc9\x62\x36\x76\xe5\x55\x40\x34\xd9\x93\x70\x81\x71\x16\xf6\x24\x5c\x20\x0b\xe9\xbc\x0a\xc1\x0e\xf7\xd4\xd5\x1e\xff\x0b\xd7\x98\x68\x5f\x04\x4c\x06\x94\x4e\xbd\xf0\x17\x84\xc2\xd8\x85\xe2\x0c\xe4\xc7\xd8\x93\xa9\x8d\x45\x36\x8a\x33\x4e\xfe\x6e\x14\x67\x70\xc2\x5d\xd2\xef\x0c\xd7\xd7\xd8\xf3\x4a\x78\x1a\xf3\xe1\x34\xbd\x93\x19\x97\xf5\xb9\x86\x75\x7f\xec\x59\x79\x06\x5a\x50\x24\xa4\x66\x94\x8f\x1d\xbb\x90\x98\x23\x74\x95\x3d\x0b\x29\xd7\xe2\x7b\x67\x46\x48\x0c\x52\x12\xef\x08\x76\xbb\x97\xf2\xdf\xff\x66\x78\x80\xc6\xee\x44\x08\x21\x82\xec\x92\x80\x47\x28\x3b\x7b\x71\x09\x96\x49\x03\x1e\x11\x0d\x48\x9b\x0b\x19\x65\x2f\xaa\xbb\xc0\x24\x14\x8f\x38\x28\x2a\x1e\x71\x50\x60\x68\x66\xdc\x17\x7b\x95\x11\x75\xe7\x59\x58\xc5\x90\x79\x76\x43\x33\x83\x1f\xee\x55\xd8\xbe\x1e\xe3\x73\x26\x84\xc6\xff\x96\xd1\x62\xbc\xd5\xa9\xf5\x2a\x2f\x9c\xbf\x19\x61\xd3\xfe\x24\xec\x59\xd9\xf4\x3f\x79\x7a\x56\x8e\x59\x13\xb8\x8f\x4d\xa9\x4c\x09\x15\x6e\xf3\x13\xaf\x67\x65\x1b\x39\x31\x02\xa7\xce\x75\xe3\x26\xff\xff\x56\x60\xb0\x27\x54\x37\xae\x72\xc8\x94\x18\xa1\xb2\x0d\x5d\x17\x6e\x32\x1e\xa7\x98\x09\x31\x65\x6f\x46\xfe\xc3\x39\x6c\xa7\x0e\x19\x61\xff\x89\xe6\xb3\x72\x0c\x05\xa7\x8c\x64\x14\x63\xef\x02\xfb\xcd\x98\x81\x6e\x8a\xe2\x7b\xc1\x29\x23\x22\x67\xec\x5d\x53\xde\x79\xbf\xe9\xfd\xe8\xbf\x9b\x22\xfa\x93\xd2\xc3\xb1\xe8\x66\x86\x95\x06\x15\x67\xb5\xb3\xa8\x2a\x11\xf7\x39\x26\xc3\x9b\x24\xe6\x70\x08\x3f\x15\x42\xc3\xee\x7a\x70\x3b\x1c\x5b\x45\x86\x7b\x86\x79\x0e\xfb\x81\xe0\x75\xc3\x80\xb6\xb8\xa5\xf6\x21\x40\x5b\x08\x0e\xfb\x58\xa9\x7f\x62\x9a\x86\x75\xb5\x58\x88\xe1\x90\x1c\xe6\x7d\x2c\x5d\x8d\x37\x96\xae\x46\x9b\xa6\x2b\xfa\x5c\x76\xe6\xb8\xea\x76\xa7\xc9\xed\xcc\xfd\x5c\x8a\x57\x74\x32\x85\x68\x62\xb1\x9c\x18\xa1\xb3\x5f\x5d\x8d\x98\x03\xec\x9a\x19\x9d\x0d\x6a\xdc\x64\xe7\x04\x38\x31\x42\xa8\x31\xbb\xf3\xdb\x76\xf8\xb8\x71\x92\x9d\x3d\x79\xd8\x1e\xc1\x0d\x2a\x9c\xe4\x9e\x39\x15\x12\xd6\xf7\x0c\x63\x3a\x6c\xa1\xa0\x53\xf9\x26\x3e\x1f\xc8\xfb\xf7\x39\xa7\x4e\x70\x9b\x59\x90\x63\xa9\x9c\x31\x15\x32\x40\xef\x99\x36\x65\x70\xde\x33\x4b\xb4\x0c\xce\xb0\x3f\xd7\x7d\x8b\xb2\x2f\x63\x57\x51\x8c\xf9\x79\xc1\x98\x19\xb6\x96\xb3\x90\x65\xd6\x6c\x49\xf5\xac\xd9\xb9\x48\xa5\x0d\x1b\x5f\xf6\xbf\xc0\x11\xc6\xfe\x93\xf9\xeb\xe7\x56\x76\xd1\x64\x94\xaa\xfd\x5c\x96\x9a\xa0\x5b\x55\xe3\x3e\x17\xd7\xf9\xe8\x39\x26\x4a\x19\xcb\x3e\xd7\xf2\xb5\xe9\x39\x1a\xbc\x6c\xb6\x81\x47\xfe\x94\x88\xfa\xb9\xf7\x2f\xeb\xea\x31\x07\x97\x8d\x9c\x83\x16\xed\xd3\x1c\xd1\xe5\x25\xa8\x09\x4c\xef\x32\xd4\x24\x0c\x1f\xfb\xca\xaa\xcb\x4d\xf7\xd3\x33\xea\x47\x96\xb8\x0c\xb9\x19\xfc\xb0\xc8\x0e\x32\x7f\x9a\x46\x2d\x4c\xd4\x4f\xb3\xa8\x85\x51\xdf\x46\x69\x84\x1c\xba\xdf\x86\x2a\x84\xec\xbf\xdf\xcb\x37\x10\x4d\xde\xf6\x0d\xf0\xc2\x32\x29\x04\x1d\xaa\x4a\xd7\x18\xd4\xbd\x80\x09\x41\xd7\xbd\x1c\xad\xbc\xf1\xd8\xdb\xc5\xb0\x1c\xaf\x1b\x7d\x2a\x18\x6c\x70\x1f\x3c\xb6\x99\xc5\x64\xbb\xc6\x46\xe2\x46\x73\x69\xba\xca\x07\x0a\x36\x08\xf9\x7d\x57\xc9\x0d\x34\xbc\xfd\x19\x9a\xd9\x18\xe2\xaa\xdf\xcc\xf9\xb6\xe5\x1c\x19\xe1\xb1\xbc\x1d\xab\x6b\x85\x82\x93\xa8\xea\xcd\x03\xf9\xf9\x59\x35\xed\x83\xe6\x77\x9d\xaa\x68\xc1\x10\x47\x84\x86\xd7\x4a\x0f\xff\x37\x17\x30\xe6\x07\xf1\x56\x26\x4d\x70\xc5\x09\xc3\x17\x5c\x71\x43\x0a\x70\x08\x18\x0b\xf7\x5a\xcb\xfc\xf7\x7e\xda\xa4\xf3\x54\x9e\xad\x12\xe4\x78\x96\x8b\x23\x26\x3d\x29\x41\x2f\xa6\xa3\xa4\x04\xbd\x11\x81\xf0\x93\xba\x35\xbe\x14\xcf\xe6\x66\x35\x9e\xbd\x9b\x47\x3c\x1f\xda\x9b\xbc\x6f\x87\x7d\x88\xae\xc9\x46\xf0\x4c\x87\x0a\x69\x89\x2b\x31\x39\xa6\x2b\x08\x4c\xbb\x44\xeb\xe0\x53\x69\x97\xe5\xb1\x47\x07\x3f\x6d\xa1\xa4\x98\xe1\xb4\xdb\xe3\x12\x17\x60\x12\x64\x71\x8b\x72\x95\x23\xed\xb6\xd3\x07\x1f\x4b\xbb\x63\x24\x2b\x6d\xe8\x82\x63\x52\x95\xa3\x37\xaa\x2a\x8f\xf4\x53\x0f\x66\x65\x52\x85\x58\x8c\xa0\xd6\x91\x94\xb6\x21\xc2\x0b\x47\x4a\x9b\xec\x23\x31\x66\x95\xc6\xdb\x3f\xff\x27\xed\x92\xf8\x3e\x49\xd1\x64\x92\x95\xa2\xa1\x4d\x48\x50\x5a\xb5\xc8\x21\x35\x92\xd3\xaa\x21\x58\xa4\xe4\x9d\xcd\x07\x9a\xe5\x48\xf1\x3b\x92\xaa\xd9\xb5\xd8\x67\x29\x5b\x63\x89\x06\x94\xea\x0c\xe9\x34\x29\xd5\x19\x17\x78\xca\x3f\xcd\x71\xc6\x51\x4a\x32\x68\xcf\xd8\xa7\x49\xd5\xeb\x66\x1c\x84\xa4\x48\x2d\x2c\x84\xc9\x91\x5a\x6c\x03\xc9\xff\xe9\x33\x1e\xf9\x58\x91\x1e\x53\x96\xf8\x1c\x12\x45\x2a\x9b\xd6\x80\x67\xc9\x6e\xfb\x5f\x32\xf9\x8c\xb4\x94\x83\xa0\xa6\x54\x3d\xc7\x7c\xfe\x94\x83\x3c\x58\xb0\x22\xd1\x94\xd1\x29\x23\x2f\x9e\x9e\x54\x2c\x6a\x7c\x5e\xb0\xa8\x11\xa2\x67\x12\x7e\x70\xe3\xe0\x27\xe1\x07\xb7\xce\x18\xaa\x85\x0f\xa6\xa8\x5a\xf8\x60\xeb\x2f\x23\x7b\xa3\x0d\x5f\x1d\x93\x37\x7c\x85\x4e\xba\xf5\x5d\x32\x69\xf4\xf1\x5d\xc1\x0f\xc6\xfc\x85\xf2\x9c\x64\x46\x4f\x11\xd8\xfa\x63\xc8\x56\xb5\x62\xaa\x8d\xf1\xab\x30\x91\x66\xac\x5c\x5c\x0e\x49\xa0\xbf\x9a\x3e\x3f\x28\xdf\xe4\xa0\x09\xa7\x7f\x80\xaf\x48\xb8\xcf\xd8\xff\x93\x84\xfb\x1c\x59\xcc\x46\x72\xd9\xe7\x4c\x13\xf6\x0e\xc6\x94\xff\x84\xf9\x8a\xce\x9e\x84\xf0\x8b\xbc\x9d\x23\x75\xef\x60\x9e\xab\x36\x14\xcf\xd6\x97\x42\x61\x4b\xb2\xc3\x4f\xb8\x80\xb2\x09\xef\xcc\x7e\xb7\x81\x8a\x35\x76\xcd\xe8\xfe\x79\x43\xf1\x2e\xd8\xa1\xd3\x4f\x01\x68\x81\x00\x1d\xe9\x27\xff\xb7\xc0\x7b\x8e\xe4\x52\x79\x71\xc3\xa5\x9f\x3a\xd0\x02\x5d\x39\xd2\x4f\x1d\x68\x3b\x43\x1c\xb6\x83\xc7\xfb\x92\xed\xc9\x78\x3c\x92\x0c\xef\x1f\x6e\x39\x7c\x8d\x47\x87\xc3\x05\x6e\xe9\xe0\x51\x83\x31\x89\x32\xd4\xa3\x35\xa7\x65\xa8\x8f\xef\xe7\xae\xf6\xa3\xbf\x69\x4b\x71\x0c\xf0\x27\xe7\x53\x7e\x7e\xa4\x29\x97\x25\x8b\xf8\x13\xea\x1b\x32\x7c\x9a\xb6\x6c\x47\xff\x3f\x99\xbe\x21\x90\xa7\x79\xea\x39\x08\x9e\xbe\x3d\x78\xfe\x8d\xff\x73\xca\x24\xf2\xe3\xe8\x48\x87\x39\x71\xfc\x7f\xec\x7a\x3f\xfa\xff\x69\x00\xad\x73\x9b\x38\x13\x1a\xf3\x71\x14\xfd\x1f\xf4\xda\x54\xcf\x7c\x1c\xbe\xdf\xe1\x7b\x3f\x75\xa0\x7d\xf8\xc0\x21\x82\x61\x5b\x3f\x6d\xa0\x75\x38\xcf\x61\xd3\x14\x4b\x7a\x98\xe2\x98\x51\x29\x03\x8d\x2d\x20\x74\x4a\xa4\x17\x1e\xe9\xf0\x0c\x30\x00\xcf\x40\x50\x28\x55\xa1\xb1\x62\xb6\xf5\xb3\x25\x85\x44\x69\x9c\xc3\x53\x14\xc3\xa6\x96\xad\x3f\x66\xe4\xa7\x15\xb4\xce\x41\x96\x52\xd0\xd8\x71\xca\xf8\xd0\xa0\x47\x3a\x42\xe3\x8c\x9c\x5a\x61\x38\xe7\xa9\x18\x69\xe8\xf9\x29\x01\xed\xc3\x15\x4f\xd3\x1b\xf4\x29\xa5\x5b\x63\x87\x29\x1b\xc4\x98\x5c\xe6\x97\x97\x3c\x3a\xb8\xb4\xc4\xa1\xe7\xa4\x9f\xcc\xdf\xa2\x70\xd8\x48\x92\xf9\xfb\x80\xa9\x4a\x40\x1f\x89\x45\x5e\x68\x4c\xe6\xcc\x39\xd8\x52\xff\x0b\xde\x6d\xa4\x5b\x86\xf2\x30\xba\x26\xa1\x4e\x3e\xd2\xc2\x9d\xf5\x7f\x10\x70\x4b\x86\x0c\x33\x76\xb2\x63\xe0\xf3\xbf\x0c\xe7\xdc\x8c\xb7\xa2\xf4\x39\x63\xb7\x73\x6e\xb0\x05\xec\x19\x80\x33\xda\x13\x00\x3b\xbf\xe5\xe9\xc8\x3c\xcb\xf2\x1f\xf6\x80\xa4\x22\x19\x78\xc3\x93\x3d\x01\x1c\xc2\x47\xe2\x0d\x12\x98\x32\xb9\x15\xdc\x6b\x49\x45\x33\x36\x6e\x98\x47\x5c\x81\x3d\x67\xd7\x00\xc2\x84\x8a\x68\x20\xb7\x27\x15\xd1\xc0\x9f\x99\x1e\xb9\x3e\x98\x51\xd5\xc9\xd8\x91\x86\x9e\x53\xff\xf3\xbe\x5c\x1d\x85\xfe\xe5\xca\x61\x4f\x29\xf6\xa9\x15\xd8\xcc\x63\x8a\xa3\x81\xd7\x14\xf3\xac\x25\x65\x46\xe5\x59\xd8\x91\x30\x5f\xf9\x42\xd8\xd4\xaf\x08\xe6\xee\x91\x67\x21\x12\x6a\x8d\xf4\x6a\x49\x91\xe2\x5f\x5b\xb8\xd9\x93\xca\x2d\x31\x3e\xf2\xd7\xeb\x35\x8d\x39\x7f\x3d\x05\x3c\x6b\x0a\x38\x15\x4e\x0f\x87\x82\x97\x14\x06\x05\x20\x7b\xa4\x57\xe0\x2e\xee\x22\xa1\x71\x7a\x94\xc7\x1b\x59\xde\x07\xcc\x44\x79\xf3\x24\x8c\x78\xf6\xbe\xce\xf1\xec\x55\x6f\xf1\xac\x7d\x1d\xac\x32\xcb\x19\xb1\x85\xcc\x90\x9d\x7d\xa2\xf0\xbe\x1c\x5e\x71\x0e\xb2\xb2\x4f\xb4\x4c\xff\xca\x3e\x91\x19\xdf\x69\x7b\x05\x3f\x68\xd9\x2b\x1f\xc8\x2d\x1a\xdb\x32\x1b\x2f\x13\x07\x31\x1b\x2f\x03\xc1\x4b\x71\x08\xd9\x29\xef\xf2\xef\x04\x2b\xc9\xcb\xaf\xf0\xf9\x42\x0e\x9e\x58\xa5\xfc\x53\x24\x7a\x63\x0a\x16\x82\x66\xd0\x82\x70\x1d\xb1\xd1\x72\x92\x87\x27\x36\x56\x56\x11\xed\xc6\x1c\xa5\xa2\xff\xa3\x41\x6b\x0e\xc1\xcc\x72\x12\x49\x89\xf6\xba\xda\x8f\x35\xb2\x22\xd1\x69\x4f\x14\x31\xc7\x2a\xa2\xdd\x58\xa3\x64\xee\xcc\xb3\x08\x62\x8d\x7e\x7a\x46\x6f\x3b\xed\x49\xcd\x88\x6d\x99\x95\x00\x22\x02\xbe\x47\x56\x02\x88\x08\xf0\x1e\x59\x45\xb2\xdb\xce\xff\x72\xc1\x35\xbe\x97\xc3\x2a\x6e\x93\x2c\xb5\x23\x02\xd0\x47\x16\x8e\xa6\xb1\x07\x05\x72\x8f\xd4\xb4\x23\x4b\xed\x88\x00\xf3\x91\xb3\x8e\x49\xb0\xb2\xac\x04\x11\x83\xf9\xc9\xa2\x8f\x3d\xec\x92\xda\x08\x1c\x39\x8b\xc0\x10\x18\xb2\x32\x46\x44\x84\xfc\xc8\x45\xfa\x77\xa8\x76\xb9\x78\x01\xe3\x7b\x65\x8c\x88\x78\xf4\x91\x55\x1a\xb0\xed\x3c\x6b\x41\x39\x64\xc5\x0b\xf8\x27\x44\x5b\x2e\x3a\x21\xc1\x88\x73\x11\xf5\x71\x11\x64\xa1\x7c\x22\xf7\xf1\xc8\xaa\x13\x88\xdf\x3f\x17\xaf\x2e\xc4\x69\x75\x39\x61\x45\xbb\x35\xd1\xbe\x1c\xb0\x21\x5b\x64\xd5\x11\x8c\xc4\xc1\x23\x57\x4f\x06\xff\x6b\xf5\x83\xe5\x64\xd5\x11\x04\x05\x90\xab\x57\x3f\xfa\xaf\xde\xcd\xbc\x6f\x58\x01\xdb\xa3\xf9\xa6\xa1\x45\x23\x7e\x06\xeb\x21\x80\x4f\x8d\x68\xc3\x91\xdb\xba\xcc\xe3\x0d\xd5\xc2\xc3\xa0\x90\xad\x37\x70\x84\xa4\x37\x24\xce\xf4\x4f\x6f\x18\x58\x13\x72\x97\xe6\xcb\x24\xfe\xd4\x86\x34\x39\xc2\x5d\x9a\x2e\x44\x74\x79\xdf\xd8\x62\x5d\xbe\x46\x8e\x60\x97\xaf\x91\x23\x36\x64\x10\x81\x05\x0c\x8d\x97\x45\x51\x2e\xe5\x12\xf1\x95\x23\x0f\xa9\xe6\x0c\x70\xc8\xb9\xc8\x1e\x1f\x52\xcd\x59\x65\x65\x62\x9b\xf0\xa0\x21\x2c\xd8\xe7\x7f\x39\x4b\x39\xd3\x43\xee\x44\xd8\xe6\x10\x41\xf0\x20\x81\xd2\xe7\x67\x80\x22\x08\x26\xa8\x1a\x24\xf8\x3c\xb2\x22\x81\x0a\xf6\xef\xac\xcc\x6d\x93\x33\x30\xe5\x4d\x65\x9b\x28\x93\x5b\x82\x49\x09\xa3\x0e\x7c\x2f\x4f\xdb\x26\x62\xc0\xd3\x13\xc0\xf7\x5e\x21\xfa\x93\xbb\x98\x6d\x3d\xe5\x09\x84\x49\x4f\x4f\x40\xac\x80\x32\xbf\x15\xe4\x97\x3c\xbd\xa4\x34\xe8\x19\x88\x19\x3a\xe4\x50\x65\x49\x0f\x11\x08\xd7\x3a\x6c\x7c\x89\x0e\x0f\x6f\xc1\x18\xf0\x21\x02\x43\xde\xc9\x87\xb6\x20\x5b\xee\xd0\x16\xac\xfc\xaf\x15\xe6\xdc\x1d\x22\x90\x9b\xf3\xd0\x96\xfc\xf4\x2f\x6f\xf2\xa7\xfd\xcb\x5b\x8a\x01\x78\x8f\x32\x40\xef\xd1\x68\xf0\xd4\x92\xb2\x85\x24\xf4\xf7\x8d\x93\x7c\x2a\x98\x88\x4d\x6e\x29\x1e\xed\x3c\x9f\x32\xf7\xc0\x9a\x7e\x52\xfc\x18\xdc\xdd\x97\xbc\xa5\xdc\xdd\x97\xbc\xa5\x9f\x67\xb9\x83\x43\x11\xce\x97\xec\x9c\xe1\x8a\xcb\x97\xbc\xa5\x81\xe8\xca\x97\x6c\xcb\x8d\xf7\xe5\x1e\x0e\xf1\x28\x5f\x4a\x6c\xc3\xc5\x27\xe8\xf9\x87\xaf\xfc\x94\x84\x1c\x81\x91\x23\xab\xd4\xc9\xe0\x62\xbb\x64\x42\x64\x0f\x29\x99\x42\xfb\xdc\x6c\x97\x6c\xcd\xdc\x4c\x97\xed\x5d\xf1\xff\x2d\x04\x66\x68\xee\xf9\x76\x5c\xc4\xe4\x07\x39\x27\xc3\x13\x91\x6f\xd9\x37\xc2\x75\x91\x6f\x51\xc8\x55\x69\x70\x7b\x38\x4b\xf3\x6d\x0a\xf9\x5e\x36\xaf\x3f\x55\x66\x18\xf9\x16\xb9\x9f\xce\x45\xee\x67\x70\x72\x8e\x73\x13\xdc\xa6\x96\xf7\x95\x1b\x31\x1c\x2f\x59\x45\x57\x32\xff\x3f\xa2\x9e\x9b\xe5\xd1\x72\xd3\xfe\xa3\xe5\x66\x7f\xa9\x06\xcb\xa8\xfc\xaf\xc9\xe0\xe6\x7b\x44\x7c\x08\xf0\xf9\x11\xf1\x95\xef\x05\x4f\x40\x90\x7b\xcc\x02\xf8\x5e\xf4\x72\xcf\x3c\x4a\x63\x04\xcf\x7d\x2c\x27\xb0\x9f\xec\x4a\x60\x7f\x3c\x22\x18\x51\xf2\x15\xc1\x74\xf0\x7a\x7f\xc7\x80\x5e\x99\xbd\xe9\xe0\x15\xc1\x9f\xef\xb5\xfa\x61\x0d\xcb\xaf\x08\x86\x80\x57\xab\x8f\xdc\xf2\x2a\x93\x11\x82\xd8\xab\xfd\xcc\x25\xf1\x9a\x60\xbe\xf7\x02\xf3\x2c\x82\x61\x79\xaf\xea\x3e\x70\xde\x0c\x55\x62\x41\x5f\x9f\xe7\x7f\xcf\x65\xd3\x82\xc6\xad\x5b\x36\xa3\x1b\x78\xf6\x6e\xe6\xd9\x8e\xd7\x38\x50\x65\x13\x41\x61\x5a\x2b\x9b\x4a\x47\x05\x5a\xa0\x6c\x3e\xa0\x2d\x9e\x75\x40\x07\xcf\x82\x73\x7c\xbe\xf7\x01\x1d\xf1\x2c\x82\x3a\xed\x09\xce\x11\x13\x50\x36\x11\xc4\xff\xbb\x19\x54\x10\xb8\x7b\xc7\xf2\xac\x1d\x1b\xca\x48\xd9\xbd\x80\xd1\x9f\x50\x4f\x95\x15\x29\xf2\x5b\x34\xd0\x5b\x65\x5f\x08\x15\x9a\xf0\x9a\x30\x84\xcb\x0a\x4f\xcc\x91\xf0\xf6\x15\x40\x5a\x51\x2a\x85\x82\xa6\x5b\x54\xf0\x65\x7c\xbe\x90\x89\xb9\xb3\x4e\x72\x3d\x0c\x2c\x76\x25\x89\x2d\x14\x5e\x10\xaa\x84\x75\x49\xae\x67\xc8\xfb\xf2\x95\x40\xb7\xd0\xf6\x8d\xcb\xa5\x24\x81\x34\x82\xb3\x97\x2c\xc3\x7e\xdc\xe6\xe5\xa7\x32\xe4\xc8\xa9\x35\x4a\x96\xa1\x3f\x2e\xbb\xf2\x53\x19\x66\x64\xeb\x18\x25\xcb\xb6\x1f\xe2\x4a\xc9\xf2\x68\x85\x81\xa9\x64\x81\x36\x1a\xed\x09\xb4\xc1\x78\xb2\x4e\xc6\xe4\x7b\xf3\x41\xda\x3f\xf4\x3e\xe3\xd5\x04\x34\xda\xbf\xd4\x1f\xdf\xdf\x1a\x7f\xac\x81\x3c\x1b\x15\xa9\xbc\x64\x4d\x40\xdc\xce\xc5\x9e\x8d\x10\x5f\x8a\x3d\x1b\xc1\x9b\x4a\x11\xc1\x2c\xaa\x9d\x19\x9d\xef\xe5\xcc\x28\x7c\x2f\xdc\x4d\x48\x13\xa5\x88\x60\x8e\x5e\xb1\x7d\x68\xa3\x81\xa9\x0f\x78\x3e\x5c\x8e\x9b\x16\x45\x32\xbb\xa6\x08\x49\xc4\xde\x2f\x5a\xf3\x90\x2f\x4a\x11\xb2\x28\x98\x4f\xa9\xa2\x90\xc3\x5e\x85\x2c\x4a\x7f\xf2\xdd\x94\xaa\xe9\x08\xce\x5a\xe4\x26\xa9\x88\x6b\xa5\x7a\x3e\x62\xbe\x5c\x22\x06\x9b\x6c\xa9\xda\x01\x89\x67\xb1\x8e\xc1\x70\x56\xf9\xf1\x18\x7f\xd5\x16\xc8\xbc\xa0\x2d\x10\x12\x6d\x51\x52\xbb\xc8\x92\x37\x4a\xf5\x41\x9c\xf4\xe0\x09\x61\x02\x34\x21\x05\x1a\x7c\x06\xa2\x83\xe6\x09\x8a\x06\x95\xc7\x2e\xf2\xda\x8d\x22\x3d\xe7\x13\xfa\x53\x7e\x7a\x4e\x8e\x3c\x80\xa3\x34\xbb\x8a\x98\x04\x55\xa9\xc1\x0d\x5b\x16\x18\x2b\x46\x64\x30\x56\x68\x35\xa5\x0d\xcd\x32\xff\x7b\x4f\xc4\x29\x10\x38\x2b\xf2\xf6\x8d\xd2\xbc\xeb\x83\xe2\xa6\x5d\xbf\xf3\xbd\x28\xee\x0c\x58\x14\xc3\x88\x54\xc3\xa6\xc2\x36\xba\x95\x80\x30\xdb\x16\xb9\x73\x2a\xf0\xb4\xa2\x2a\x36\x51\x3d\x72\x14\x55\xb1\xa9\x30\xaa\x6e\x4f\x36\xff\x7b\xd5\x63\x4e\xbb\x7d\x7c\x74\x20\x8a\x0b\xdf\x6b\xd1\x43\x0f\x2c\xdd\xe7\x9e\xf7\xbd\xa6\xfc\x2f\x0a\xe1\x9c\xdd\xf5\xb5\x39\x97\x8a\xba\x18\x40\xd6\xcb\x48\x1a\x41\xb4\x20\xec\xd6\xdc\x3f\x3f\x78\xc8\xd1\xe4\xf0\x49\x65\x16\x95\xdd\x0e\x9c\x47\x19\x1e\x03\x0d\x98\xb5\xc4\xfb\x53\x70\x32\xf6\xa1\x0b\xda\x44\x44\xe5\x28\xff\x0a\xda\xc4\x2c\x08\xa8\x55\xc0\x1e\x15\x17\x38\xdf\xd9\x9b\xd3\xbe\x3e\xf6\xe2\xf4\x95\xf1\xf9\xc4\x88\xb3\x10\x2e\xca\x2a\x72\xc3\xe5\xfb\xd3\xb8\x0a\x3a\x75\x71\x7d\x73\x1c\x5d\xc5\x45\x6f\x76\x58\x86\x92\xe6\xa1\x35\x97\x95\x34\x8f\x0d\xab\xa4\x79\x28\x85\x65\x25\xcd\x83\x8d\xba\xdc\x79\x44\x22\x8f\xb2\xb2\xe6\x71\x13\x19\x0e\xb6\x73\xb7\x1d\x66\x35\x8d\x37\x3c\x19\x70\xc2\x95\x25\x8f\x5d\xe0\x8a\x93\x91\xbc\x66\x94\x95\x25\x8f\x7b\x7e\x65\xc9\xe3\x02\x39\x4c\x2b\xec\xd4\x11\xc9\xe8\x97\xe5\xb0\xad\x96\xd3\xb2\xf2\xe4\xc1\x61\x57\x9e\x3c\xc4\x93\x73\x51\x1b\x6f\x9c\xa6\x96\x95\x56\x48\x32\x4a\x61\x71\x59\xca\x8f\xac\x70\x1a\x49\x38\xf8\x41\xc0\x41\xd8\xe2\xca\x84\x07\x6b\x5e\xc9\xbc\xb9\xfc\x57\x32\x6f\xce\xc4\xe9\x65\x0c\x52\x1d\xe6\x41\xa0\x5b\x39\x0d\x17\x67\xba\x94\x2c\x0f\xf3\x47\xb9\xbc\xa5\xe3\xff\x95\x2b\x8f\x35\x5a\xb9\xf2\x98\xac\xcb\x88\x91\xe8\xf3\x12\x6b\xfc\x7c\xd0\xf4\xff\xf8\xd3\x6d\x74\x79\xc1\x61\xb4\xaa\xf9\x83\x75\xa3\x28\x8b\x1e\xba\x7a\xb9\x04\x1d\xe0\xee\x70\x96\xf0\x9d\x33\x7d\xad\x9d\x4c\x8b\x6b\x71\x63\x9e\x2f\x2f\x6e\x08\xff\xe5\xf6\xe2\x22\x03\xfd\x94\xc5\x4f\xc0\x50\xb9\x3d\x07\x48\xbf\x3f\xed\xb1\x60\xc2\x28\xb7\x17\x9b\x3b\xf0\x5e\xe9\x43\x62\x96\x9c\x76\x2f\x92\x4f\x8d\xb2\x32\x8b\x43\xb9\xf3\xea\x45\x3a\xaa\x51\x84\x08\x2b\x19\xce\xf0\x18\x7f\xc7\xae\x5c\x9e\x21\xf6\x98\x53\xdf\x81\x42\x2c\xc2\x80\x55\xf0\x95\xe5\x31\xec\x13\xf9\xce\xa0\xae\x8e\x40\xe6\x70\xe8\x0e\x97\x53\x6a\x3b\xe2\x60\x8b\x82\x9f\x2b\xba\xc5\x63\xb0\x06\xa7\xc7\xa9\xed\x3a\x07\xee\x35\xf4\x39\x46\xf5\x1a\xab\xc1\xd6\x37\xee\xab\xb3\x91\x5f\x47\x16\xc2\xa0\x9c\xca\xae\xc3\x5d\x9c\xca\xae\xb3\x06\xef\xe2\xee\x0c\xc3\xa4\xc2\x08\x9c\xdc\xae\xc3\x27\x5f\x93\x8a\xac\x68\xb8\x58\x67\xe5\xe5\xd6\xd9\x3a\xbc\xf7\x35\x54\x05\xf1\xf1\xa7\x99\x15\x42\x4d\xeb\xb6\x90\x2a\x33\x7e\x30\xb1\x85\x1f\x5c\x16\x3b\x7a\xad\x9b\x2f\xae\x90\xc9\xab\x43\xa7\xdb\xa7\x8d\xa6\x4e\x5a\x3c\x5b\xdc\xe0\xff\x61\xca\xf6\xf8\xc1\xb4\xc7\x75\x5d\x37\xd3\x9e\x18\xa7\x69\x8f\x73\x52\x8d\x2c\x8b\x1a\xd6\xa3\x6e\xa6\x3d\xf1\x86\x69\x4f\xf4\xb2\x60\x3a\x41\xc9\xee\x08\xe5\xd8\xf6\x55\x49\xf4\x22\x41\xc6\xa8\xfb\x9a\x8c\x68\x62\x57\xf2\xc6\x49\x0b\x45\x94\xc6\x20\x8c\x47\x8b\x02\x48\xa3\x2e\x3c\x5a\x08\x12\x75\x57\x36\x93\xc9\x17\x9e\x8b\x60\xa3\x75\xf7\x5c\x34\xbe\x30\xd2\x99\x67\x53\x1e\x4c\xb1\xee\xa6\x9c\x05\xd9\x4d\x79\x65\xd8\xa6\x3c\x44\x83\x9a\xbc\xec\x71\x14\xeb\x4f\x57\x2c\x91\x9c\x61\x54\x25\xd9\x8b\xe4\x0c\xa3\x3a\x56\x1b\x28\x43\x4d\x55\x2f\xd0\xe2\xda\xf1\xfc\xe0\x1d\x9f\xf8\xc2\x94\x16\x7e\x58\xab\x4e\x27\x6b\xc7\xd3\xc6\xda\xf1\xb1\x20\x69\xed\xe7\x58\x00\x97\xa2\xc7\xa0\x5f\xf3\xa2\x2c\x26\x38\x1b\x7a\x15\xa2\x40\x55\xf4\x76\xc3\x02\x5c\xb3\xd9\x10\xb3\x93\x7d\x36\x43\x62\xa9\xd9\xe3\x08\x81\xb8\xba\xd8\xfc\xa4\x4d\x63\xb4\x83\x4f\x55\xe7\xbd\xcb\x90\x52\x8c\xd1\x0e\x06\x50\x5d\x5e\x28\x92\x17\x8f\x5a\x84\xd1\x66\xff\x3a\xf1\x5d\xe6\xd8\x38\xc5\x52\xfe\xdb\x5d\x55\x8b\xb1\xea\xc1\xb5\xaa\xf3\xe2\x65\x36\x73\x11\xba\x93\xe9\x2f\xc2\xaa\x33\x0d\x3f\x4d\xb0\x4c\x8e\x4b\x31\xc0\xa9\x33\xe2\xcb\x99\x80\x18\xe1\xed\x3e\x69\x72\xcd\x4b\xcc\x75\xf5\x34\x04\xcb\xaa\xd5\x01\x61\x21\x67\xd4\xea\x4c\x53\x30\x07\x17\xbc\x27\xb0\xbb\x56\xcf\x03\x2c\xca\x15\xf0\x33\x27\x42\xae\xa2\x1d\x05\xa5\xba\x04\x7e\x54\x46\x1d\xb5\x1a\x97\x4f\x13\x76\xe6\x42\x8a\xc1\x75\x99\x83\x5b\x4d\x1b\x1b\x5c\x11\xe9\xf3\xd3\xa9\xb1\x28\x71\x13\xd5\xe6\x3d\xc0\x31\x6c\x6b\x0f\xc4\x04\x36\x23\x8a\x3f\x9f\x98\xf8\xc2\x1b\x6b\x13\xc4\x04\x36\x13\x5f\xf9\xc1\xc4\xb3\xbf\x9b\xd7\x39\x2e\x81\xda\xb4\x8e\x1c\xc4\x66\xd2\x38\x55\x2b\xca\x3d\x6e\xc0\xda\x94\xa4\x13\xee\xdb\xd6\x32\xc6\x0b\x7d\x2d\x63\xbc\xd1\xad\x39\x70\x4b\xf4\xb5\x48\xfc\xa0\x71\x0e\xb6\x57\xf7\x22\x71\x17\x29\xf4\x7d\xc7\x14\x51\x85\xb9\xdb\x07\x47\xc2\x99\x9d\x50\x44\xab\x30\x77\x3b\x08\xe6\xaa\xa0\x9b\x1d\x03\x52\x55\x74\x3c\x50\xd4\x3a\x9c\x90\x12\x76\xaa\x04\x79\x3b\xca\x6b\x55\xfd\xd2\x7d\x70\x2e\x86\x33\x73\x72\xda\x7f\xaa\x5b\x05\xa5\x5c\xe5\x84\xdb\x07\xd7\xd7\x30\xad\x3b\x9d\x74\x7d\x41\x1f\x26\x95\xbb\x69\x98\xd4\x50\x60\xeb\x50\xbc\xc4\x67\x10\x0b\xec\x19\xa4\x8f\xb5\x68\x74\x7a\xbb\xd3\x98\x4f\x65\xe1\xdb\xc7\x87\x76\x67\xb9\x0a\x59\xa8\xaa\xe6\xe9\x4e\x6e\x81\x3a\x05\xab\x64\xdc\x52\x08\x27\x71\xc3\x75\x9a\x74\x5a\x70\x88\x44\x98\x25\xeb\x5c\xa4\xc7\x64\x49\x1f\x1c\x80\x83\xeb\x5c\xb4\xd3\x86\x69\xe7\x6e\x99\x6b\x99\x69\xe3\x54\xaf\x74\x72\xe9\x99\xff\x17\xe9\xbc\x60\xd2\xb9\x9e\xa4\x10\xee\x44\x34\xd4\x63\xed\x83\xa0\xec\xf0\x3e\xd8\xf8\xc1\xfb\x00\x1e\x21\x85\x70\x27\xa6\xad\x4a\x21\xdc\x41\x0e\xd7\xa3\x69\xd1\x82\x54\x87\x07\x11\x53\x56\x0f\x05\x2d\x7c\x9a\x9c\x02\xd0\xc7\x30\x0f\xad\x3a\x27\xe0\x50\x8c\x0b\x33\xf3\x53\xec\x2a\x50\xa5\x7a\x3a\x2f\x29\x54\xac\xd4\x52\x83\x1f\x8a\x7f\x88\xb9\x5a\xa9\xa5\xc2\x0a\x50\x4f\x67\x2a\x65\x67\x39\xb7\x14\x91\x35\x55\xa8\xbe\x44\x68\x4d\x55\x72\xa9\xc2\x30\x4f\xc7\x01\xd0\x82\x2b\xfe\xcd\x3f\xb9\x93\xaa\xb4\xbe\x44\xa4\x4f\x3d\x8d\x52\xe6\xc0\x5d\x2b\xe6\x25\xb6\xcc\x65\x83\x11\xd7\xeb\xe5\xd4\xa4\xa1\x8e\xd4\x6b\x4d\x44\x4c\xdd\xe5\x89\x40\xf2\xba\x3c\x11\x6c\xdd\xcb\x13\x31\x68\xd4\x29\x5b\xc3\xb2\x57\x2f\xa7\x6c\x65\x3d\x2f\xaf\x1f\x4d\x9c\x7e\x81\x26\x1c\xcd\xc3\xc0\x8d\xc8\xe6\x08\xae\xf0\x9e\x20\xf5\xf6\x0a\x47\x0f\xb7\x01\xda\x70\x5a\x69\x77\x09\x03\x6e\xbd\x9d\x99\x2e\x26\x5f\xca\xdc\xc0\x21\x5c\x57\x3c\x10\xa2\xc7\xed\x1c\x23\x48\x02\x0e\x08\xc2\xbc\x55\x6f\xa7\x62\xe4\xda\xb9\x5d\x88\x89\xeb\x50\x95\xa4\x30\x94\x57\xa9\x7f\x09\x57\x41\xbd\x9d\x95\x95\xab\xec\xb1\xb4\xcd\x22\x3e\x26\x8d\x45\x7c\x9c\xa6\x95\x9b\xeb\x31\xf6\x1c\xb1\xea\x71\xd6\x3d\x2e\xa2\xc7\xa4\x20\xe5\x3c\xce\x7b\x16\x03\xff\x29\x8c\x15\x6b\x74\x7d\x1c\xa2\x82\x88\xb2\x4a\x4c\x71\x07\xcb\x9b\x97\x30\x68\x57\x01\x04\x2b\xa9\x02\xea\xb3\x48\x8b\x4f\x5e\x27\x9c\xe5\x8d\x77\x91\x16\x33\xfc\x9a\x34\x84\xb9\xd7\x5a\x54\xe7\x8d\xe6\xb4\x1b\x41\x9a\xea\xc4\x62\xa9\xa8\xef\x5a\xb5\x18\xb9\x52\x6e\x35\x8e\xfa\xab\x28\xae\xc9\xff\xa7\xfe\xa7\xc1\xcb\x74\xf0\x82\xf1\xe0\x2c\xd1\xeb\xfc\xb2\xac\xc8\x4a\xca\x15\x73\xd1\x36\xe7\x97\x8d\x8d\xd1\x36\xe7\x97\x8d\xad\xd3\xa4\x40\x96\xfc\x79\xa3\xf8\x8d\x11\x3f\xb8\x4c\x66\x8c\xa3\x6d\x8a\x17\x88\x63\xd6\x54\x24\x36\x52\xf0\x8d\xb6\x39\x5e\x2d\x26\xaf\x6d\xa6\xb4\xc4\xb3\x28\x9d\x8c\xf2\x72\x0f\xb4\x68\x07\xfc\xe0\x0b\x09\x6b\xb8\x54\x9b\x74\xc1\x8a\x09\xb1\xfd\x74\xc1\x1a\x89\xfd\x47\x53\xfe\xf4\x19\x79\x3d\x47\x73\xe6\x82\x48\x88\x37\x9a\x74\xbd\x92\x3f\x4d\x74\x65\xd4\xab\xf1\x3c\x1c\x45\x17\x53\x23\x5d\x2f\x6f\x95\x51\x1c\xfa\x82\x3e\x8c\xe0\xcf\x34\x71\xf9\x0b\xfa\x78\xfc\x43\xcc\xae\x74\xbd\xbc\xc5\x41\x6c\xc9\xf9\xac\xe2\x48\x34\xf9\x05\xf3\x16\x02\x75\x4b\x2b\xe3\x4b\x34\x9a\x5c\x15\x34\x0e\x62\x93\xfa\x97\x88\x9d\x6c\x4a\xd5\x95\xb7\x4a\x2f\x2b\x8d\x70\x8c\x43\xfa\x5f\x26\x80\xbb\x25\x3b\x5a\x58\x94\xb4\xa8\x0f\x6a\x93\x33\x0f\x17\x7e\x70\x99\xd0\xc4\xd0\x6f\xcd\x0f\xcf\x8b\xfa\x58\x57\xe9\x83\x8d\x98\x87\x26\xf5\xef\x13\x39\xdf\x94\xbe\x20\x63\x53\x6c\xd2\x07\x73\xfa\x5b\x3a\x85\xa6\x4c\xbb\x19\xbc\x51\x53\x25\x5a\x90\x15\x4d\x95\x68\x3f\xe9\x93\x9a\xb2\xac\x7f\x32\xc3\x35\x69\x93\x9f\xe4\x02\x2d\x3b\x1c\x26\xb4\xf1\x26\x75\xf2\x93\x1e\xa0\x29\xad\x3a\x08\x88\x26\xf5\xf2\x93\x92\xab\x49\x9b\x2c\x78\x0f\x9a\x12\xf6\x66\xe0\x74\xad\xd8\x72\xbf\xd1\x86\x86\x01\x5e\xb5\x49\x9d\xcb\x20\xee\x5a\x71\xc0\x4a\x0c\xbc\x18\x7d\x1f\x4d\x0a\xf1\xf7\x59\xae\x2a\xb8\x23\x7b\xd3\x08\x3f\x76\x91\x11\x7e\x61\x6e\x69\x55\x61\x65\xec\xfe\x6a\x70\x1d\xcf\x42\x2e\x7d\xda\x3b\xff\xfb\x5f\x26\x34\xb6\x55\xb9\xa1\x12\xff\x3f\x7a\xe6\xff\x57\xcf\xd1\x5e\xb3\xb5\x38\x38\x64\x6b\xb6\xef\xb0\x9f\x96\xfe\xc5\x5a\x2d\xfd\x8b\xd5\xfc\xa7\x7f\x05\x11\x4d\xa2\xfd\xa7\x93\x25\xde\xd2\xc4\xf4\xd9\x89\x1d\xe2\xba\xb2\x58\x91\x5a\x73\x04\x22\x4d\x0a\x81\x85\xc6\xdb\xda\xab\xa8\x85\x78\xee\x8a\x72\x08\x55\xaa\x39\x25\x6f\xe7\x79\x29\xd5\xb1\x32\xdd\x90\x74\x1a\x10\x24\x9d\xcd\xd1\x85\xb6\xe6\x90\x74\xa1\xab\x39\xcc\x5d\xe9\x84\x58\xc9\xae\x20\x02\x78\x4c\x17\xd8\x9a\xfd\xda\x6d\x0c\x86\xd3\xa9\x42\x2c\x81\x20\x6d\x08\xdc\xc9\xb4\x0e\x21\x5d\x99\x77\xc1\x10\xa3\x96\xd4\x68\x43\x60\x55\x4e\xc8\x50\xc8\x63\xc8\x12\x4d\xb9\x71\x89\x94\x6d\x43\x60\xd5\x70\x3d\xb4\x29\x68\x75\x98\x2e\x9a\x52\xe3\x12\x88\xda\xe6\x9a\xb1\x18\x80\x60\x87\x58\x67\x9a\x62\x99\x3e\x7b\x7f\x9a\x20\xde\x17\x41\x30\xa2\x69\x82\x62\x86\xa6\xd0\xb9\x8d\x67\x61\xaf\x59\x91\x29\xec\x35\x2b\x30\x4d\x60\xac\xe0\x14\x81\x21\x2e\xb4\x29\x02\xe1\x9d\x87\xef\x2f\x2e\xd5\x43\x14\xb2\xb5\x0f\x1f\xce\xe8\xe0\x30\x81\xfc\xaf\xc3\x19\x7a\x42\x3b\x4c\x60\x10\x74\x88\x20\xae\xa6\x43\x04\xc1\xde\x0f\xc1\x8d\xb9\x61\x0f\xaf\x60\x0c\xd8\xa1\x4b\x04\x2f\xb7\x43\x89\x67\xa0\xd8\x30\x42\x66\xec\x54\xf9\x33\x96\x5c\x49\x0d\x3a\x98\x99\x76\x0a\x38\xf9\x69\x40\xc0\x49\xa6\xf4\x34\x7b\x89\x25\x3a\x0d\x8d\xe5\x7b\x21\x43\x59\xb2\x53\xc0\x49\xf6\xe8\x29\xf6\xf3\x19\x80\x80\x93\x9f\xf6\x84\x83\x64\x06\x2e\x01\x3d\xd9\x83\x97\xb0\xbb\xf4\x27\xd4\x62\xfa\xfc\xef\xf1\xff\xc9\x9c\xd7\x2e\x25\x11\x62\xbd\x2f\xa1\x42\x3f\xcf\x26\x2e\x66\xef\x32\x2a\x34\x88\xbb\x4c\x5c\x6c\x8f\x4b\xb8\x5f\x88\xbd\x84\x02\xfd\xfc\x2f\x9c\x2f\xcb\xff\xd3\x4b\x32\x9a\x4e\x13\x42\x91\xd0\xf5\x76\xff\x88\x89\x22\x38\xa3\x09\xa0\x88\x66\xdb\x6e\x79\xb7\xd9\x0e\x02\x24\x92\x18\xa3\x09\x90\x48\x0e\xa1\xf6\x53\x49\x32\xa1\xe5\xed\xa7\x91\x0c\x72\x20\xb5\xdb\x77\x01\xcf\x97\xfe\x0f\xfa\x85\x41\x9c\x9f\xf1\x3e\x7a\x3f\x16\x4f\x18\x44\xd2\x2a\x34\x61\x0c\xe7\xe7\xd9\xf4\xc4\xf8\x1f\xd3\x13\x8b\xa9\xf4\x04\x20\xcb\x9b\x30\x85\x24\xfe\x68\x3f\x3d\x64\x90\x71\xa3\x3d\x1e\x3f\xdf\x9f\x7a\x8e\xf1\x08\x53\x48\x6a\xd3\xf6\xd3\x42\x32\x7a\x61\x7b\x5c\x6d\x0b\x79\xf4\x95\x23\x13\x06\xf5\x7a\x82\xa3\xc1\x57\x4e\x97\xce\xb3\x10\x0f\x9c\xcf\x57\x18\x8f\xb0\xad\xb5\x57\x88\x07\x38\xee\x2b\xcc\x07\x02\xc5\xeb\xcb\xf5\x5f\x7b\xfd\xa7\x09\x64\x0c\x2a\x7d\x93\xd7\x6c\xf0\x6c\x60\x0e\xcf\x1a\x6f\xdc\xbd\x7d\x13\x26\x25\x34\x8b\x2e\x48\x1f\xa6\xa8\xbe\x0d\x3d\xd7\x78\x16\x42\x63\xf0\xff\xa1\xef\x73\x3c\x1b\x9a\xc6\xff\x82\x29\x85\xb0\xd1\x37\xa1\x27\x06\xcf\x42\x4f\xc4\x0d\xd2\x77\xa7\x17\x8e\x8b\xbc\xaf\x04\xbc\xb1\x84\x7d\x17\xec\x26\x6e\xdd\x2e\x67\xcf\x04\x1c\xd1\x77\xb9\xc8\xe3\xd6\xec\x76\xe5\x60\x59\xe9\x0a\x19\xda\xb0\xea\x75\xe7\x1e\x40\x99\xef\xbb\x5c\xe4\xa1\xf0\x76\xbb\x72\x30\x52\x74\x7b\x6e\x10\xe3\x7a\x5a\x42\x4d\xf4\x9a\xe4\xda\x0f\x83\x41\x4f\xce\x1a\x14\xda\x51\xb7\x2f\x07\x2b\x54\x97\x2f\x87\xa0\x83\x6e\x4f\x0d\xf6\x97\x9e\xe4\xe6\x0e\x41\xac\xdb\x51\x43\x22\x88\x9e\x9c\xec\x78\xa3\x8f\xdb\x3f\xd0\xc7\x22\x24\x3a\xb1\xa3\x06\x63\x59\xb7\xa3\x06\xab\x5e\xcf\x5e\x80\x38\xc3\x3d\x2f\x4a\xf8\x44\xce\xfd\xc2\x0b\xd5\x4d\xc4\x12\x65\x25\xb4\x08\xb9\xa5\xcb\xb3\xb3\x61\x88\xed\xd9\x94\x04\x1f\xea\x59\x1e\xfb\x42\x0b\xa6\x6c\xa7\x89\xc7\xa3\xe2\x0d\x61\x14\x42\x89\xee\xc5\xfe\xf9\xd0\x08\x7a\x59\x89\xab\x83\xb0\xb2\x76\x16\x6f\x38\x39\x4a\x70\x9f\x2e\xe7\xcd\x86\xcc\xd8\x8b\xbc\xda\x61\x08\xec\x06\xdd\x0d\x9a\xb4\x63\x2c\x8e\x77\x5f\x39\x09\x58\xc3\x95\x93\x80\x4f\x56\x4e\x82\x3e\xff\x72\xff\xf4\x95\xb0\x80\xf3\x55\xe5\x21\x0c\x93\x6b\xaf\xf6\x10\x86\x10\xda\xab\x77\x55\xec\x80\x6a\x0f\x61\xe3\x8b\xae\x16\x82\xc6\x6a\x07\x61\x67\x84\x53\x2f\xd0\xa2\xfd\x83\xc1\xd3\x7a\xb5\x5f\xae\xd3\x84\x7d\xa3\xec\x10\xe7\x11\x26\x85\x4f\xaf\x6b\xa2\x62\x3d\xab\x27\x0a\x46\xd0\x36\xf5\x1a\x2f\xb4\x35\x4f\x31\xee\xa5\x35\xb0\x95\x9b\xbd\xbe\x9c\xb0\x26\x07\x38\x9c\x63\xe5\x15\xe6\x14\xff\x94\x84\x42\xa2\x96\xde\xec\x0a\xe5\x10\x37\x93\x3a\x68\xd2\x78\x8b\xb0\x79\xf4\x66\x52\x07\x9f\x2c\x52\xe9\xd5\xa4\xc2\x72\xdb\x22\x35\x86\xa1\x42\x49\x75\x32\x19\x52\x24\xc6\xf6\x79\xc3\x50\x07\x78\x5c\xb7\xc7\x3b\x7a\xed\x8b\xf6\x98\xbe\x6e\xe7\x7f\x2c\x7b\x37\xed\x9d\x3e\x4c\x3b\x2d\x3a\x8f\x54\x88\xb6\xbd\x2f\xda\x69\xc2\xcb\x0c\xed\xdd\xe6\x9c\x10\xbd\xba\x9d\x38\xe4\x46\xe8\x4a\x9d\x46\xb6\xcf\x3e\xec\x5c\xe5\x7f\xeb\x75\x6c\x25\xfb\x70\x08\x02\xe8\xf2\xe1\x0c\x24\xf2\x3e\xec\x57\x63\x2a\xec\xc4\x21\x5f\x42\xb7\x13\x07\x9c\x7f\x97\xd3\xa6\x7f\x7b\xb1\xc7\xf4\xf3\x89\x3c\x6d\xdc\x82\x76\xd1\x60\x1b\xe8\xd3\x2e\xc2\x90\xe3\xfb\xb4\x8a\x1a\x62\x6e\x9f\x8b\x94\x98\x2e\xbb\x60\xc8\xeb\xd0\xa7\x47\x1e\xc2\x5c\xb7\x0b\x86\x4c\x0e\xdd\x1e\x17\x22\x6c\xfa\xb4\x8f\x10\xea\xa7\xdd\x4d\x6c\x15\xfb\x5c\xc0\xcc\x77\x61\xf0\x08\x52\xee\xf3\xd5\x94\xc7\x28\x54\x96\x16\x3f\x50\xb7\x3b\x05\x48\x51\x3f\x96\xae\xcd\x1b\xd5\xc8\xb7\x18\x84\x53\x21\x7f\x08\x39\xec\x29\xa2\xd3\x43\x9e\x22\xd6\xd9\xd9\xd4\xb0\x68\xf6\xc3\xae\xa2\xcf\x30\xec\x2a\xca\x7c\x62\x57\x11\x57\x80\xf3\xad\x7d\x44\x8d\xd3\xde\x07\xee\x43\xe7\x5b\x23\xa2\xa4\xff\x54\x93\x4a\x18\x61\x77\xbe\x35\xf2\x8f\x74\xe7\x5b\xc3\x8e\xda\x4f\xfb\xcd\x10\x1e\x9c\x6f\x8d\x64\x4d\xfd\xb4\x61\x81\xcb\xcc\x09\xd8\x30\x0e\x76\xe7\x58\x63\x32\x4e\x4f\x46\xac\xc0\xb9\x26\x83\x51\x78\x32\x3e\x84\x78\x32\x3e\x9f\xac\xc9\x88\x1f\x9c\x65\x2d\xc4\xc6\x7e\xb9\x1a\x10\xfb\xe2\xf2\x5c\x84\x99\xaf\x5f\x76\x9b\x15\xde\x58\x93\x11\xe3\xbe\xd6\x64\xc4\x3a\x5f\xf6\xa3\xc5\x38\x2f\xb9\xcd\xf2\x9f\xe2\x60\xfb\xb5\xa6\x85\x21\x7b\x93\x20\xdf\x5c\x9a\x97\x4f\x77\x9e\x17\xae\x70\x79\x69\x3e\x29\xc1\xfb\x2d\xbf\x28\xa2\xdf\xad\x54\x72\x08\xab\x8a\xcf\x4a\x1f\xb9\xe2\xb6\xc1\x94\x0b\x5b\x5e\x99\x06\x9a\xb7\xdb\x2b\xf3\x91\x37\xed\x95\xf9\x08\x87\xf6\xca\x7c\xe6\xfa\x36\x34\x9f\xf3\xe0\x3c\x6d\x1f\x29\xcb\x6e\x1a\x3c\xa5\x5d\x89\xdb\xd2\x67\x2a\x6f\xaf\xf0\xa7\x8d\xd7\x9f\x44\x2f\x8f\x3c\x50\xdc\xba\xcf\xba\xff\x62\x41\x9f\xe5\x81\x0a\x62\xed\xa6\xf9\x88\x72\xcf\xa2\x3e\xe6\x4f\xc0\xbe\xf4\x11\xb3\xec\xc8\xf9\xc8\x76\xcf\x72\x3a\xc6\x84\x3d\x6b\x3a\xf8\xe1\x70\x1b\xf4\x62\xea\xb9\xa9\x7f\x3a\x54\x2d\x9f\x4e\x4c\x3c\x82\xee\xb3\xcc\x52\xfc\x20\xef\x1b\x4d\xbe\x49\xcf\x31\x17\xef\x5a\xd7\x98\x8c\xd7\x94\x71\xb2\x55\x08\xa5\x11\x3e\xd0\xe5\x95\x21\xe2\xa4\xbf\x76\xa5\x31\xe1\x72\xcb\x00\xdb\xee\xaf\x1d\x50\xa1\x7a\xf7\x9f\xa6\x45\x45\xda\xd1\xed\x84\xc1\x13\x34\xec\x84\x21\x24\x63\xd8\x09\xc3\xfe\x1c\x9b\xdd\x4d\x8d\x1f\xec\x49\x0b\x0e\x35\xe4\x95\x69\x18\x6f\xc7\x26\x37\xe2\xe7\x0b\xbb\xda\xc2\xa2\x30\x36\xfb\x9f\x1a\xbd\xda\x6b\x18\x06\x8e\xb1\x99\xd4\x46\x27\x76\xb6\x85\xc9\x64\xd8\x31\x83\xdb\x70\x6c\x72\x23\xc6\x41\x1b\xf2\xcb\x14\xd0\x2c\x43\x6e\x97\x04\xe7\x1c\xbb\xfd\x64\xc1\x28\x87\x12\x42\x27\x8e\xf7\xd8\x57\x81\xb0\x2d\x7e\xb0\xff\xa8\xd0\xa8\x6b\x1f\x31\xa3\xcb\xad\xc2\x38\x76\x27\x3c\x84\xd8\x5d\x15\x0c\xe3\x10\x8c\xe5\x55\x81\xd6\x9f\x1e\x56\x11\x73\xc6\x4f\x0d\xab\xc4\x56\x8d\x9f\x1a\x56\xa3\xe4\xec\x18\xd2\xc2\xf2\xc6\x84\xdb\xa5\x02\xca\x7d\xd8\xa5\x82\x4b\x6a\xc8\xa5\x52\x09\x33\x1b\x52\xd4\x32\x1c\x7f\x2c\x97\x4a\xe3\x87\xc3\x6f\x04\xa5\x69\x91\x1e\xb3\xf5\xcf\xc7\x42\xa3\xb7\x2d\x89\x8c\x63\x79\x23\x62\x09\xe4\x64\xc9\xa0\xa9\x86\x4b\xa6\xc0\x2f\x87\x8a\xdd\x12\xac\x36\xec\x74\x41\x8a\x19\x76\xba\x20\xb0\x0d\xa9\x6e\xb9\x7c\xde\x68\x2a\x9f\xc6\x0b\xab\x9e\x23\x7d\x0c\xff\x10\x13\xa8\xf2\xb6\x08\x1c\xe3\xa7\xca\x55\x4c\x62\xc3\x6e\x16\x4c\x04\x43\xf9\x1d\x32\x28\xc7\x61\xbf\x0b\x00\xd0\x91\x5f\xbf\x11\x4b\x60\xe5\x2e\xee\xb2\xa1\x8c\x0f\xe0\xea\x87\x51\x7d\xbf\x8b\xe0\x0f\x57\xd5\x28\x36\x1a\x05\x49\xc5\x0e\x30\x66\xda\x3e\x9a\xf2\xf9\x41\x52\x7f\x61\x3c\xca\xdb\x0f\x27\x50\x92\x86\xfd\xf3\xbe\xce\x13\x76\xb8\xa1\x44\xd3\x44\x56\x8e\xaa\xf0\x7a\x26\xf1\xa7\xb5\x8d\xa8\x9a\x35\x86\x7c\x32\x51\x65\x6b\x0c\x85\x4f\x01\xf5\x18\x55\x66\xa4\xcc\xf7\x16\xde\x99\xc2\x9f\x8e\x56\xc8\x71\x31\x7e\x1a\x59\x01\x2c\x3c\xaa\x79\x32\x07\x49\xb0\xb9\x0f\xee\x70\xfc\x14\xb0\x42\xf6\xc0\xf1\xd3\xbf\x2a\x82\xe6\x68\xae\x34\x1e\x5b\x5c\x3e\x9b\x8f\xe9\x7b\x38\x41\x1d\xd1\xce\xa3\xd9\xdd\xc1\xb3\x38\x06\x1b\xa3\x29\xbf\x0e\x67\xb9\x29\x71\x08\x67\xb9\xc9\xfd\x51\xe9\xd1\xc6\x79\xbe\x7f\x7c\x84\xf8\x41\x89\x43\x42\xf7\x1e\x5d\xb9\x32\x42\x77\x1b\x5d\xc6\xfa\x10\xbf\x47\x97\xb1\x9e\x83\x2e\x7f\x0d\x19\xf5\x86\xd2\x4e\x94\xc1\xff\x32\xbe\x4f\xda\x57\x2e\x8f\x50\xe3\x46\x57\xae\xd3\x50\x50\x47\x97\xf7\x20\x74\xde\xd1\x3d\xbe\xf8\x7f\xc8\x5d\x12\x42\xdd\x18\xf2\xe4\x85\x75\x61\x38\xf1\x34\x69\xa9\xc6\x70\xca\x77\xb8\xf2\x50\x9a\x05\xd6\x60\xc8\x98\xde\xe9\x41\xf6\x66\xf6\xa1\xf3\x4a\x30\x23\x43\x39\x03\x58\x82\xa1\x24\x04\x93\x67\x3b\xf0\xc3\xc0\x3d\x84\x65\x1b\x9f\x6d\x32\x65\x7e\x0f\xdd\x6b\x38\xb1\x04\x8b\x3e\x65\x7e\x67\x0e\x9d\x48\xa2\xf3\xbd\x2c\xea\x2c\xba\x13\x49\x30\x67\x53\x16\x75\xd6\xcc\x89\x24\x58\x63\x25\x92\x20\xfc\x61\x38\x91\x04\x73\xe8\x44\x12\x28\x33\x63\x3a\x3f\x38\xec\xc0\x99\x24\xe0\x78\x53\x0e\x07\x56\x45\x3e\x9f\xf6\x99\xb4\xc3\x24\xc7\x90\x0f\x1f\xf6\x68\xc0\xa9\x25\xd8\x46\x87\x49\x8a\x45\x71\xea\x88\x90\x51\x87\x53\x45\xb0\xaf\x9d\x2a\x02\xee\x72\x78\xd1\x78\x76\xfc\x0e\xfb\xf0\xa7\x29\x65\x24\xb2\x71\xca\xca\x0e\x53\x3f\xc5\x5d\x90\x5b\xe4\x92\x01\xaa\x3a\xe4\x92\xa1\x92\xd5\x90\x4b\x06\xc8\xf2\x90\x4b\xe6\xc3\x2a\x4e\x59\xd1\x43\x3a\x1b\xa7\xbc\x00\x21\xfd\x8e\x9f\x7e\x33\xc0\x58\x0f\xa9\x37\x15\x23\xd5\x50\xe6\x09\xaa\x21\x0c\xa9\x26\xe5\x73\x4f\x09\x13\xd6\xb6\xcf\x17\x1a\x12\xdc\x48\xb9\x21\xd0\x25\xc6\x25\xbb\x34\x47\xef\x92\x5d\x7a\xd2\xa0\x38\x34\x00\x8e\x71\x2b\x38\x12\x06\x7a\x2b\x70\x30\xd4\xd1\x21\xcf\x0a\x9a\xe3\xb8\x15\xfa\x58\xfe\x94\x8e\x6e\xd8\x0d\x13\xf6\xb1\xb1\xdc\x30\x74\x26\xab\x7b\xe6\xd9\xec\x3d\x26\xf0\x96\x97\x80\x8b\xfd\x36\x75\x0c\x46\x2e\xf9\x0c\x31\x8a\x0c\xe5\xbe\xbc\x65\x75\x0f\x6b\xd1\x90\x1b\x06\x15\x76\x3c\x8a\x7d\xe5\x7e\x7b\x5c\xd8\x07\x59\x4e\x7a\xc2\xf6\x11\x75\x1f\x19\xdd\x99\x3e\x07\x04\xa5\x4f\x93\xb6\xe0\x72\x45\x3d\xb6\xe0\x22\x28\x3c\xb2\xe0\x22\x34\x39\x22\xe8\x23\x89\xbd\x0a\xa0\x82\xdf\xbf\xb2\x3b\xc3\x7b\x5e\x5f\x30\x9c\x4c\xc7\xff\x7c\x44\xb7\x77\x0d\x9b\x26\x3d\xec\x98\xb8\xd7\x26\xf6\x18\xf5\xbb\x5c\x05\x31\xd3\xef\xa2\x8b\x41\x2c\xba\xe8\xf4\x56\x13\x7c\xb1\xe8\x8c\xa9\x79\xed\x43\x0a\x3b\xda\x94\x22\xf1\xc9\x26\x38\x95\xa8\x01\x11\x6a\x6e\xf2\x25\x84\x34\x3e\x05\xdd\xda\x80\xc0\x4e\x69\x09\x1b\xb8\xe5\xa9\x14\xd2\xe4\x24\x9b\x0e\xed\x01\x8a\x3f\x7f\x4a\x42\x21\x49\xd9\x74\x64\x0f\x60\xdf\xe9\xc8\x1e\x30\xdd\xd3\x81\x3c\xe0\xc2\xe7\x2e\x0b\x6d\xe2\x79\xf7\x17\x31\x6c\x41\xb3\x36\x80\xb9\x73\x57\xb4\x4a\x6c\x9a\xb9\xaf\x61\x8f\xf8\x41\x81\x7b\x95\x16\x8c\x78\x0f\x6e\x3e\x77\x1b\xe6\x62\xe7\xce\x64\xa9\x24\x5a\x48\x36\xd4\xc5\x0d\x35\x93\xed\x5b\x71\xf2\xa7\xd3\x2d\xa4\x4f\x13\x55\x4d\xc4\xec\x27\x1b\xee\xe2\x8a\x98\xc9\x86\xbb\x41\x27\xb6\x30\xc6\xf9\x9d\x49\xd8\xfe\xcc\x17\xca\x28\x1e\xe7\x75\xba\xfe\x21\x99\x2c\x66\x5a\x74\x04\x61\xd9\x51\x0a\x71\xaf\xcd\x6c\x5b\x6a\x5c\x8c\x33\xdb\x70\xc7\x0b\x36\xe8\x54\x7e\xb0\xfd\x26\xce\xc3\x94\xec\xce\x89\x9b\xd9\xb6\xac\x38\x61\x33\xdb\xa0\x13\x94\x67\x5b\x64\x18\x94\x2d\x32\x95\x17\x54\x0c\x00\xba\xf2\x32\x63\xc4\x0f\x8e\xaf\x21\xe7\xc9\x2c\xb6\x43\x85\x06\x37\xe5\x64\xf9\xa4\xa4\x9f\x2a\x61\x0e\xa3\x98\xc5\x36\x89\x38\x61\x53\x11\x33\x1d\xcb\xea\x2c\xb6\xc8\x7c\x3e\xb1\x09\x82\x03\x53\x6c\x80\xc9\xf4\x6a\x6d\xaa\xd2\xa8\xed\x2d\x71\x6c\x67\x5d\xc6\xc3\x68\xa3\x2e\x73\x4a\x90\x22\xd7\x4a\x85\xdf\xcc\xaa\x6a\xc0\x9d\x26\x8c\xf0\x6d\x7c\x61\x5d\x3d\xc4\xab\x59\xad\xab\x87\x74\x33\xab\x35\xf1\x4f\x1b\x86\xbd\x86\x84\x36\xab\xcc\x10\x9f\x26\x5e\xa9\xea\x31\xcc\x9f\x9c\x5e\x3f\x7d\xae\x54\xd2\x9f\x17\x96\x11\xe2\x4f\xc0\xba\xd9\x96\xa2\xcf\xe7\x45\xa0\xce\x58\xe1\x95\x66\x3a\x74\x9d\xd9\x6c\x09\x88\xbb\x61\xb6\xa5\xfd\xd2\x84\xe0\x94\x90\xe4\x44\xd4\x1b\x34\x35\xd5\x3c\x66\x56\xda\x52\xfb\x21\xca\x00\x43\xa6\xa9\xb9\xce\x41\x6c\x4c\x79\x4c\xf2\x67\xaf\x77\x15\x3e\x08\xe3\xe6\xec\xd6\x74\xe9\xb3\x17\xff\x10\x4d\x2a\x32\xe6\x53\x5c\x68\x76\xeb\xf9\x10\x26\x07\x48\x06\xb0\x3d\xbb\x55\xd9\xc2\x1b\x8f\xa0\x7a\x34\x21\x57\x4f\xc8\xe7\x73\xa5\x23\x80\xb5\x0c\xe5\xef\x84\xb3\x0f\x89\x8a\x30\x96\x9f\xc4\x9f\xb1\x84\xcd\x51\xff\xfb\xdf\x44\x55\x9e\xa3\xc9\x52\x16\x64\x4a\x01\x28\x1f\xaa\xc6\xda\x82\xf4\xb8\x8c\xf7\x74\xa1\x54\xbb\x1b\x1c\x73\xe5\xab\x8e\xc9\x1f\x42\x08\xb1\x3a\xd3\x11\xc5\x21\x6d\x4c\xe7\x86\x63\x7d\xe5\x0a\x69\x18\x48\xa7\x64\x7a\x7c\x0e\xf3\x27\xd3\x67\x6c\x9b\x53\x32\x3d\x3a\xc3\x94\x4c\x8f\x3b\x66\xfe\x64\xf6\x89\xfa\x3f\xa7\xc4\x1b\x16\xd7\x89\x08\x3e\x8c\xcc\x65\x68\x88\x71\x9f\xce\x44\x40\x16\x86\xe9\xc4\x03\x1f\x56\xe6\xc4\x03\x84\xe9\x4c\xd7\xa1\x21\x7a\x68\x3a\xf1\x00\x31\x35\x73\x39\x46\x1a\x3f\xb4\x1f\x8b\x66\x3b\x1c\x6b\x35\x68\xc2\x93\xdf\xe9\xd5\x17\x47\x8c\xf3\x50\x48\xcd\x67\x98\x76\x0d\x34\x46\x65\x8e\xdb\x68\xd2\xae\x01\x06\x71\xda\x78\x1a\x73\xe1\xc0\x12\xec\x2d\x73\x15\x2d\x0f\x7d\x64\x9e\x36\xcc\x71\xa4\x4f\x03\xbb\x63\x14\xa7\x75\xa4\xcf\x17\x02\x00\x43\xd7\xe9\x3a\x24\x2c\x80\x24\xfa\xfc\x61\xd1\x72\x58\x00\x6c\x9a\x72\x58\x7c\x80\x6c\xf3\x72\x61\xbf\x50\x55\xa7\x23\x2c\xb8\xff\x6e\x81\x27\x39\xc0\x4e\xd1\x0c\x37\x56\xee\xb5\x8f\x54\xa5\xdc\x6b\x89\x7b\xff\x96\x62\xc8\x8d\xfb\x93\x91\x27\x2e\xd4\x69\xa8\x12\x1c\xe4\x27\x13\x4f\x82\x8a\xe7\xb3\xe9\x39\xc6\xf7\x93\x91\x27\x31\xdc\xf3\x49\x7a\x0e\x82\x1e\xe1\x54\x60\x51\x4f\xd1\xff\xd1\xfe\xe3\xa3\x1c\xe3\xf9\xc9\xd8\x13\x8f\xed\x7c\xd6\xe6\xa1\x41\xa3\x26\x0a\x23\x72\xc5\x57\xf6\xdb\x12\xba\x61\x50\x16\xba\x89\xc8\x9a\x2e\x4a\x4e\x74\xda\xb4\x90\x4d\xd4\xd7\x7c\x2d\x77\x70\xba\x7f\x52\x76\x2d\x34\xf1\xae\xfd\xc4\x0f\xb6\xfc\x72\xdc\x7f\x42\x75\xa5\xd0\xe8\x7c\x6d\x4f\x83\x41\xbc\xae\x44\x90\xff\x94\x7c\x68\xaa\x44\x39\xa6\xe7\xf9\xda\x10\xfa\x69\xee\x35\x1b\xfe\xf7\xc3\x61\xcb\x7c\x70\xb4\x63\x13\xce\xb6\xf3\xbf\x0c\x4f\xc1\xd1\x0e\x55\x58\x04\x89\x7f\xb8\xa0\x62\x10\x70\x6c\x42\x81\xc6\x1d\x78\xfc\x44\xe1\x54\x62\x8a\x8e\xed\xc7\x21\xa9\xf2\x76\xb8\x9e\x4a\x48\x98\x87\x8a\x8a\x53\xb5\xed\xd8\x65\x57\x0a\x0e\x7b\xec\x59\xff\xef\xf1\xac\x8c\xbb\x93\xff\x9b\xfe\x8f\xf1\x2b\x49\x32\x35\xcf\x0e\x17\x15\x9f\xb4\x2f\x03\xc1\xa0\xbd\xcb\x39\x54\x82\x80\xdd\x66\x1d\x06\x68\xb3\x0e\x1d\x8a\xe5\x87\x22\x75\xa8\x58\xca\x0c\x0b\xc5\xe1\xda\x8a\xc1\x52\x8e\x24\x8c\x67\x6c\x89\xc3\xb5\x14\x99\x20\x09\xcc\x1d\xc7\xf6\x91\x94\xdf\x34\x18\xc8\x21\x7b\x78\xa5\xba\xd6\xe1\x7a\x89\x4c\x79\xf2\x88\x63\x49\xb2\x60\xaa\x4c\xb1\x92\x1c\xcf\x30\x33\x1d\x59\x40\xc1\xc4\xff\xba\x72\x42\x8f\x3b\x56\x70\x39\x24\x67\x1b\x10\xe8\xe0\xd0\x07\x41\x42\x16\xd2\x71\xa7\xc1\x4b\xcf\xbc\x6f\x09\xb3\xf1\x81\x90\x7a\x8d\x0f\xc4\x4f\xe2\x3a\x39\x8a\x6c\x1c\x71\x56\x8f\x22\x23\x4d\xa8\x53\x47\xf1\x88\x79\x5f\x97\x62\x1c\x83\xa3\xac\x8b\x3c\x28\x50\xf1\xc4\x19\x92\xdb\x51\x64\x85\xa9\x34\x68\x06\xc7\xfb\xb2\xc2\x64\x1a\x7c\xf5\x7e\x0c\xa8\x0a\x6b\x1a\xba\xf2\xa1\x7a\xe4\x33\x6c\x8b\x87\x6c\xd8\x64\x54\x3d\xaa\xa7\x9c\xef\xab\x66\x28\xda\xaf\x26\x88\xef\x35\xe3\xc1\xbd\x0e\xc7\x15\x84\xd1\xe7\x50\x1c\x41\x09\xab\xd2\xd1\x34\x9e\xe0\x54\x87\x6a\x23\x82\xde\x39\x9a\x2c\x34\x71\xc5\x1c\xce\xcf\xc5\xa9\x76\xfa\x2d\xe6\x43\x70\xa0\x96\x3a\x3f\xc8\xea\xc2\x0a\x3a\xff\x16\x13\xe2\xfc\x5b\xac\x80\xf3\x6f\xc5\xdd\x7c\x38\xff\x56\x68\x10\x47\xf3\x0e\x88\xef\x55\x0a\x11\x3e\x79\xa8\x14\x22\xca\xd3\xa1\x6c\x5a\x28\xed\x47\xd7\x0d\xc1\x04\x28\x9b\x16\x90\xa8\x43\xa5\x0f\x41\x6e\x1d\x5d\xe3\x0d\x49\xe0\x50\xf6\x2c\x02\x49\x8e\xae\xf1\x87\xe8\x70\x74\x8d\xbf\xf2\xec\x84\xb0\x93\x06\xbc\x65\xa3\x81\xa1\x19\x67\x8b\x0e\x5d\x79\xac\xc8\x4f\x5a\x9d\x38\x15\x8e\x21\x82\xd8\x01\x2a\x69\x8e\x72\x78\x0c\x13\x14\x04\x0f\x81\x4f\x43\x1a\x3e\xc6\xba\xcf\x82\xc2\x21\x5c\x26\x33\x2e\xdc\x0e\x58\xf3\x63\x58\xcc\x63\x89\x64\x8e\x2e\x79\xfc\xc9\x2c\x77\x4c\xa5\xf0\xe1\x5e\x98\x46\x08\xb2\xc5\xa7\x2c\x50\xf0\xd1\xb9\x6c\x09\x41\xf1\x94\x85\x23\xb4\xca\x63\xda\x02\xc5\xa1\x51\x45\x45\x0c\xf0\xc7\x5c\x77\x78\x2c\x82\x2a\x2a\x62\xfc\x3d\x96\x7d\x1a\x5e\xec\x24\x5b\xac\xf2\xe1\x5d\x15\x63\x3c\x44\x04\xbb\xf8\xf0\x98\xa3\xc1\x43\x56\x33\xd8\xc6\x21\x80\x20\xa7\x40\x42\x2c\x78\xfb\xe3\x10\x78\x93\xbb\xe2\x30\x05\xfc\xaf\x3a\x58\x64\x01\x3d\x24\xd3\x92\x20\xfc\x38\xd6\x2a\x32\xe2\xcb\x88\x5d\x7e\x58\xee\xb1\x68\xf3\x94\x69\x09\xd6\xa4\x3c\x59\xa4\x84\x3f\x04\xe4\x19\x99\x1b\xf0\x14\xdc\x0d\x5e\x22\x94\xce\x46\x10\xd2\x71\x0a\xc4\x08\xb7\x75\x9a\x2c\xc0\x2e\x87\xd3\x64\x81\x74\x3e\x94\x26\x8b\xba\x01\xc7\x69\xd1\xe9\x33\x08\x1b\xc4\xb8\x53\x94\x26\x8b\xc2\x00\xc7\x65\xd9\x0a\x8e\x77\x99\x8c\xe8\xe2\xb2\x8a\x11\x8a\xd1\xa1\x34\x59\x24\x77\x3f\x2e\x1b\xfa\x3e\x3f\xd8\x62\xc6\x11\xbb\x6c\xe8\xa3\x0b\xc1\x93\x88\x10\x38\x94\x1b\x8b\xfc\xf1\x87\x72\x61\xb5\x4f\x97\xae\xf0\xca\xb5\x71\xc9\x33\xc8\x45\xe8\xcc\x57\x64\x66\x38\x6e\xdb\xf9\xe0\x2b\xb7\xc8\x62\x1e\x6e\x93\x05\x23\xbb\xb5\x3a\xdc\x3c\xce\x6b\x05\xca\xfc\xb8\xbd\x5c\x9c\x9b\xdb\xf6\x4a\x86\x6d\xd0\x0d\x08\xd2\xe3\x16\x1d\xc8\x7c\x3f\x71\xbe\x7c\x6e\x23\x41\x6e\x76\x42\x17\x0e\x43\x6e\x88\x3d\x38\x04\xb9\xd9\x09\x5e\x38\x1e\xdb\xe0\xd8\xc9\xc2\xdc\xec\xb8\x59\x8f\x67\x59\x17\xa3\x0d\x41\x6c\x76\x1c\xbb\xc7\x63\x15\x30\x48\x57\xbd\xc4\xcf\xad\xfd\x78\x7d\x60\xe2\xc2\xd3\xd4\xcf\xb6\x7a\x64\x3b\xe4\xb4\x3c\xc2\x26\xc2\x14\x95\x49\xeb\x73\x0d\x3f\x26\x03\x2e\x2d\x91\x7e\x27\x48\xe2\x78\x65\x23\x85\xc5\xac\x0a\x8a\x70\x2d\x19\xd6\x89\x52\x39\x5e\x11\xc1\xcd\xf9\x8a\x08\x2e\x2e\x59\xcd\xa9\x02\x72\x28\x69\xd6\xa4\x0c\xc8\xa1\x0a\x8b\x64\x8f\x3f\x24\xf0\xef\xd8\x31\x8e\x57\xab\x05\xd3\x7a\x4d\x14\x23\x5a\x44\xfd\x9b\xc7\xf3\x27\xd2\x17\x12\xe4\x9f\x9b\xac\x86\xb1\xdc\xe7\x66\xe3\x67\xe7\x03\x23\xf9\x82\x6f\x9e\x9b\xad\x9f\x21\xa4\x9e\x9b\x91\x7c\x21\x53\x9e\x8a\x67\x86\x4f\x9d\x9b\xd3\x9a\x04\xb3\x3e\x37\xf3\xe2\x49\x9b\x56\xcf\x43\xec\x3c\x37\xe5\x39\xc9\x34\x69\xed\x3c\xd8\xf9\xb9\x0b\xb8\x57\xfe\xa4\xf9\x9c\xbb\xad\xa9\xc1\x9b\xcf\xdd\x46\xca\x60\xc6\xe7\x6e\x23\x70\x48\xe6\xe7\xbe\x36\x64\x10\xb1\xaf\x89\x89\x99\xda\x3d\x31\xc1\x9f\x4f\xc5\x47\xa3\x45\x9e\xbb\xe7\x25\x6e\x88\x73\x57\xbd\xc9\xd8\xd3\xe7\x6e\x24\xdf\xa0\x0f\xd9\x8d\x0b\x83\xb0\xdd\x78\xf0\x85\xec\xc6\xac\xde\xbe\xac\x18\xb1\x16\xbb\x01\x47\x61\xf8\x3a\x93\xe7\x29\xe6\x2d\x2d\xca\xa3\xcf\x64\xf3\x6c\x30\x95\x73\x05\x47\xc7\x2e\x3d\x93\xd1\x6e\x71\xf6\xce\x64\xcb\x72\xec\xb2\x33\x19\xed\x96\x79\x63\x48\xd7\xa5\x4d\x83\xdd\x82\xa5\x9f\x3f\x3d\xa5\x22\xe3\x9e\x49\x58\xb7\xb8\x66\x4e\xd7\x7c\xc4\x1d\x7d\x26\x67\xd5\xa8\xfc\x60\xc3\x33\xbb\x4c\x96\xff\xf4\x99\xff\x6c\x18\x19\x7b\x3b\x2f\x52\x63\xdc\x79\x51\x16\x8d\x66\x53\x56\x69\xc3\x94\x05\x97\x38\xb3\x73\x85\xd0\x84\x29\x8b\x33\x7e\x66\xdb\xd0\x2b\xe3\xb2\x0d\x9d\x25\xc8\xc6\xf1\x55\x7e\x30\x6d\x2c\x6b\x5e\xab\x18\x6f\x14\x43\xe4\x98\x8e\x9f\x92\x53\xb1\x6e\x9f\xc5\xc6\xe9\x50\x85\x4f\xb9\x07\x3e\xd5\xed\xce\xe2\x10\x77\xb6\x7c\xb1\xd5\x3d\x28\x29\x8b\x54\xda\x5c\x26\x4f\xde\x10\x16\xf0\xd3\x82\x01\x72\xb0\x06\xfb\x0f\x88\x42\x3a\xe5\x3f\x18\xdb\xa4\xcd\xdb\x94\xc5\x9a\x54\x53\xc6\xc9\xaf\xb6\xbb\x87\x17\xfe\xac\x8b\xb4\x18\x86\x1d\x0a\xc4\x8a\x9d\xd5\x25\x1c\xc3\x1a\x7c\x56\xd7\x10\x1e\xf4\x62\x5b\x0b\x27\x6d\xb9\x18\xe0\x40\x55\x45\x85\xe1\x2f\x55\xb4\x42\x5a\x55\xe2\x0d\x4e\x7f\xbd\xf4\x4c\x83\x4e\x3e\xc1\x3e\x10\x10\xa8\xe2\x5b\x3c\xe5\x70\xa0\x96\xdb\xd9\x9c\x7b\x82\x8d\xe2\x5a\x95\x88\x39\xe7\xf2\x21\x84\x62\x73\x36\xa7\x9a\xa8\xbc\xd1\xd4\x66\xcc\x44\x5b\x26\xa4\x98\x2b\x41\x81\x12\x52\xed\x29\xa7\x42\x05\xec\x7d\x2a\x34\x23\xa1\xbd\x9c\x3f\xed\xac\x52\xb4\xef\xb4\x53\x61\xe3\x03\x53\x1a\xfa\xe1\xd9\x4c\x58\xd0\xf1\x53\xcf\x6a\x87\xf0\x9f\x3a\x56\x89\x6a\x39\x55\x9b\x92\xd0\x9b\xb3\x3b\x8f\x04\x73\xdf\xed\xf8\x60\x72\xbb\xcd\xa4\x31\x0f\x7d\x99\x49\x63\x1e\xba\xcd\xa4\x30\x83\xb1\xc9\xd6\x15\x2f\x28\xa2\xa2\x92\x15\xf3\x1c\xce\x9b\x00\xb7\x50\x5a\xac\x0f\x98\xe2\x14\x28\x28\x7f\xb8\xc5\x30\xa2\x91\x03\x32\x8c\x68\x84\x7d\xc8\x49\xf0\xa9\x4c\x70\x2a\xed\xd5\x98\x7f\x82\xcf\x9d\xc3\x89\x14\x98\xa8\xe1\x44\x0a\xcc\xc3\x58\x16\xbb\x98\x29\xe9\x69\x93\x6a\xbc\xe7\xd2\xd3\x42\x24\x39\xa7\xd1\x65\x31\xe6\x9f\xe6\x55\x71\x21\x9c\x53\xb8\xc4\x90\x9a\xce\x9f\xda\x54\xf1\x41\x9c\x8a\x9c\x28\x64\x29\x38\x95\xac\x0a\x03\xd1\x29\x17\x41\xc6\xbe\x7b\x4e\x83\x0c\xe9\x42\xb8\x9e\x4f\xb0\xf8\x79\xba\x3e\x2e\xb7\x96\xc4\xc1\x0e\x9a\xf4\x32\xdb\x8d\x5b\xec\xca\xb6\x39\xcf\x78\x3e\xff\xfb\xdf\x47\x6d\xb9\xb2\x6c\xd0\xb1\x76\x57\xb6\x23\xa3\xf0\x81\x75\x8c\x98\xa8\x4b\x29\x28\x3e\x2f\x88\xa1\xc2\xe7\x2f\x33\x54\x10\x0d\x57\x31\xd7\x61\x4c\x66\xa8\xd8\x95\x2f\x3b\x5c\x83\xd7\x5d\x2e\x77\x35\xe8\x62\xc8\xda\x18\x43\x50\x45\xab\x19\x3c\xe9\x2a\x36\x33\xf0\xbf\xbc\x35\x61\xb8\xba\x1c\x34\x57\x78\x7f\x29\x52\x0c\xf1\xd1\x0b\x7c\x60\xa1\x29\xf8\xe2\x55\x85\x85\x0f\x85\xe3\x12\xaf\x1d\x39\xce\xf6\xf5\xe3\xa4\x75\x06\xef\xbd\xcc\x48\xc3\x90\x71\x55\x17\xcc\x8c\x59\xaa\x22\x31\xb8\xe8\x55\x65\x8e\xfc\x74\x68\x53\x58\x74\xd8\x6c\x9b\x8b\x29\x59\xa6\xa6\xe8\xaf\xd9\x72\xc3\xb3\x2c\x37\xa1\xdf\x5c\x4d\x86\x0e\xfa\x6f\x56\xf2\xf9\x5f\x32\x7f\xe5\x7b\x4f\x59\x4c\xa9\x33\x01\x56\xbe\x5f\x33\x14\x3f\x74\x07\xc7\xc4\x0d\x76\x39\x35\x20\xd5\x53\xae\x6e\x01\x2a\xee\x96\xab\x2b\x38\x26\x44\x86\xab\x5b\xa8\x60\x10\xdd\x97\x0f\xb3\xd8\xd7\xe5\x13\xd3\xa2\xea\xbc\x1c\xfc\x4b\xf8\x47\xd2\xc5\x5f\xca\x57\x51\x37\xba\x54\xfa\x08\xb6\xa2\xca\x70\xe5\xe0\xc0\xd7\x90\x49\x34\x58\xfa\xa5\xb2\x5b\xa8\x3e\x97\x92\xb7\x97\xd0\x12\x2f\xdb\x8f\x58\x96\x61\x03\x18\xcf\x02\x81\x71\x3c\x6d\x3e\xea\x3c\xcb\x7c\xc4\x49\xb0\xf9\x08\x9c\xd5\xe5\xcc\x7c\xd8\x1c\xaf\x69\x4d\x29\x7a\x70\xd4\x17\x35\x8f\x2e\x67\xe2\xa3\x70\xd5\x35\x2d\x9e\x34\xde\x70\x44\xc5\xa7\x0d\xc3\x19\x58\xdd\x69\xf9\x24\xc4\xa8\xeb\x1f\x33\x8b\x89\x9e\xce\x11\xc3\xcc\xc9\x03\x9a\x3e\x5f\xa8\x7c\xe8\xa7\x49\x23\xec\x20\x55\xe5\xb0\x48\x1c\x74\x1d\x82\x96\xb2\xd6\x87\xa0\xae\x2c\xb5\xca\x5f\x51\x1a\xe0\x72\xb9\x2b\xe8\x3e\x04\x34\x65\x43\x1e\x66\x12\x31\xe2\xc3\x27\x8c\xfe\xec\xa2\x60\x3c\x97\x9e\x63\xa2\x9d\xa7\x22\xb7\x3f\x85\xc5\x5e\x87\xd2\x08\x04\xeb\xbe\x4e\x6f\xa4\x68\xfd\xd4\x79\x8d\xfb\xe7\x3a\xe5\x56\x8f\xdb\xe3\x3a\x65\xba\x8e\x7b\xf9\x3a\xe5\xb0\x66\x76\x4e\x99\xae\xe3\xd2\xbd\x4e\xc1\xaf\x33\xff\x0f\xfd\x1f\xb3\x65\x80\x24\xd3\x6f\x80\x64\x08\x59\xd7\x29\x53\x37\x1c\xf0\x94\x33\x21\xf3\xbd\xd2\x0e\x64\xc6\x2b\x53\x3d\x4c\xfd\x14\xbd\x71\x81\x5f\x97\x4c\xe3\xec\x5b\x55\xea\x2a\xdc\x1a\x97\xe9\x8f\xef\x2f\x99\xc6\x39\xb8\x97\xc0\x8c\x71\x61\x5f\xaa\xd4\x85\xaa\x7c\x19\x4d\x19\x42\xf9\x25\xf4\x24\x06\x80\xcb\x95\xb5\xa8\x0e\x7b\xd9\x68\x84\x36\x71\x39\xf9\x79\xc8\xe4\xd7\xbd\x2c\x78\xd1\xc4\xed\xa0\x71\x78\xae\x42\xb5\x0a\x26\x80\xcb\x56\x23\xf4\x8f\x6b\x19\x89\x58\x96\xdb\x46\x3d\xd6\xe1\xf6\xc1\x09\x0b\xf4\x25\x2b\x51\xfb\x34\xe1\xbb\x88\xcb\xe9\xf6\x5d\xc4\x07\x8b\x25\xc4\xc0\x1f\x99\x26\x43\x39\xbb\x1e\xa5\x6c\x66\x69\x1e\x99\xf0\xb8\xa0\x1f\x9b\xf0\xd8\x5b\x8f\x4d\x95\x3c\xdb\x18\xc6\xf5\x67\x3f\x2f\xe8\xcb\x4b\x7e\xde\xfa\xe1\x5b\x8f\xc0\x7b\x6c\x27\xf9\x7d\x1b\xa0\xe6\xeb\xb1\xad\x2b\x14\xd9\x6b\xd9\x84\x42\x51\xbd\xec\xe6\x45\x21\xbc\x64\x14\xfa\x32\x63\x05\x5d\xed\xe8\xba\x97\xe0\x96\xb8\xf0\x2f\xc1\x2d\xf7\xcf\xe4\xca\x11\xdc\x32\x6c\x4a\x8e\xe0\xcf\x82\xbd\x8e\x09\xe4\x02\x50\xae\x3c\x94\xe3\x4b\x41\x59\x28\xa5\x97\x5c\xbf\x9f\x5d\xf4\xca\x8e\xc0\x1e\x71\xa6\x3c\x8c\xd5\xb7\x3d\xbf\x58\xbb\x6f\x87\x60\x61\x2e\xbf\x9d\x48\x1d\x47\xde\xed\xc4\x78\x38\x15\x6e\x85\x60\xe1\xf7\xba\x37\xa9\x58\x83\x3e\x0c\xe2\x0a\x33\xe1\x2d\xbb\x11\x7a\xdd\x2d\xbb\x51\xef\xb1\xd9\x6f\xd9\x8d\x1a\x0b\x78\x2b\xde\x8a\x12\xec\xf7\x66\x55\xe4\xdf\x26\xba\x77\x87\x35\xf1\x81\x2c\x41\x85\xe5\xba\x65\x09\x2a\x60\x68\xee\x5d\x81\x4d\x9f\x2f\x1c\xd8\xc4\x20\xf6\xa5\x06\xf0\x85\x6b\x5b\x85\x20\x77\x3b\x0f\x5e\xfe\xb4\xa1\xd0\x9d\x60\x23\xb7\xec\x3a\x9f\x5b\xe0\x56\x7c\xd6\x27\xc1\xd3\xad\xa0\x0f\xdc\xb2\x77\x13\x7a\x3f\xae\x91\xbb\xf9\xda\x88\xb9\x94\xe0\x03\xf4\xfd\x76\x0e\x64\x44\xbd\x5b\x92\x0f\x09\x96\x6e\xe7\x40\xfe\xac\xce\x12\x85\xe8\xa2\xdb\xf9\x1f\x73\xa9\x20\x0e\x6a\x3d\xdc\x5d\x25\x91\xd9\x32\x5d\x38\x92\xd8\xd6\x77\x57\x0a\xa9\xc9\xfb\x72\xb6\xef\x7f\x4a\xa2\x7a\x77\xa5\x63\x82\xfe\x9f\x44\x34\x32\x0b\xad\xa0\xfa\x02\x20\xe3\xee\xd6\x08\x18\xad\x45\xa2\x68\xc0\x22\x11\xa3\x1d\xe2\xec\x85\xff\x1d\xe9\x14\x57\xd9\xfd\x53\xff\x06\xa7\xf4\x96\xcf\xad\xb0\xea\x8a\x00\x21\xdf\xd3\x2d\x19\xa9\x14\xbe\x37\x6b\x8f\x01\xa9\xdc\x0d\xee\x80\x7b\x0a\x06\x13\x2c\xf6\x9e\xf2\x09\xb2\x47\xa6\x7c\x82\xb4\x27\x8f\x18\xac\xe9\x5e\x1e\xb1\xca\x07\x82\x5c\xb3\x0b\x5d\x76\x06\x1d\xf8\x9e\x06\xb1\x04\xcb\xbd\x15\xd2\x4e\x96\xb2\xdb\x55\x65\xc0\x83\xdd\x06\x77\xe1\xa9\xbd\xe5\x03\x23\x0d\xd8\x7d\x98\x75\x85\x8e\x72\x1f\xcd\x66\x27\x9a\xe8\x7e\x83\x1f\xcc\xcb\x62\x10\x76\x7b\x7d\x76\xea\xb1\xa4\x36\x3a\x91\x55\x09\xd8\xda\x7d\x18\xec\x39\x19\xf8\xed\x37\x62\xb1\x0e\x67\xfe\x64\xb9\x0f\xa7\x91\x0c\x7b\xce\xad\x18\xf7\x0c\xfa\xe6\x76\xaa\x61\x98\xd1\xe9\xed\x1c\xc3\x3a\x95\x40\x8c\xe3\x70\x7a\x7b\xc7\x18\x4e\xab\x42\x7c\xaf\x1d\xbb\xd3\xa1\x04\x37\x8e\x83\x62\x3b\xa8\x4b\x76\x9f\x8a\x8e\x09\xc1\xf1\x56\x3a\xae\x1c\xb7\xf6\x2d\x27\x58\x47\xba\xbd\x95\x8f\x8b\xe2\x22\xb7\xf2\x71\xe5\xf0\xb1\xdc\x72\x8a\x7d\x8f\x84\x72\x6c\x81\x15\xb9\x2f\x09\x63\x71\x29\xdc\x2a\x1b\x4a\x8c\xd3\xad\x1c\x5b\x98\x02\xee\x4b\xc2\x16\xfb\x49\x65\x41\x4b\x65\x84\xc2\x45\x84\x13\xf9\xbe\x84\x3b\x60\xbb\xa9\x2a\x28\x11\x48\xf7\xed\x13\xc0\xb3\x8e\x64\x28\x52\xb7\x73\x70\x71\x05\x49\xd4\x69\x9f\x19\xb8\x4d\x10\x1f\x28\xfc\x26\xb4\xc9\xdb\xd1\x20\x21\x8d\xdd\x4e\xca\xc5\x15\x26\x24\x1b\x41\x5b\xf7\xed\x23\xcc\x80\x44\x70\xdc\x92\xb7\x93\x72\x35\xfa\x97\x74\xc9\xe9\x70\xf4\x07\x37\x85\x91\x6e\x1c\x27\x47\x83\x70\x2d\x18\xe9\x46\xfb\x8f\xdc\xfe\x4c\xa8\x92\x74\xa1\x8b\xde\x8f\x80\x17\x21\xdb\xdf\x8f\x70\x0b\x2c\xe0\x23\xdc\x05\x7b\xfc\x27\xef\x4c\x12\x56\xde\x8f\xa4\x4f\x58\xc8\x23\x03\x03\x1c\xe4\x11\xcb\x62\xc1\x7e\xd2\xcf\x44\xc2\xba\x55\xf7\x13\x6f\xc4\xfd\x9a\xbe\x68\x4f\x95\x66\x90\xf9\xee\xd7\xf4\xf1\xbf\xa4\x65\x2e\xa9\x57\xda\x3e\xac\xe0\xf5\xf8\x82\x1e\x39\xb7\x08\x51\xbb\x5d\x0f\x06\x15\xf0\x5e\x21\x21\x6c\xd9\x77\x89\xcb\xff\x86\xfc\xb8\x20\x4c\x6a\x7f\xf2\x13\x3d\x0a\x3c\x6f\x88\x41\x8f\xcb\xc7\xa0\xcb\x3f\x9b\x53\x1b\x05\x5b\x78\x36\x67\x9f\x6a\xf4\x68\xf9\x3b\x8e\xc1\xe3\x98\x12\x44\xa9\x67\xb3\xfc\x1d\xfb\xf0\x71\x50\x09\x3c\xf1\x71\xbd\x98\xef\x38\x4c\x79\x30\xde\x47\x41\x24\x95\xc3\xfa\x6c\xe2\xe5\x74\xe2\xa0\x12\x5a\x58\x41\x25\x50\xe2\x7c\x60\xa0\x6e\x9e\xdd\xde\xe6\x4f\x13\xc6\xe9\x7e\xda\xb0\x08\x5e\x79\xc3\x5e\x74\x06\xbe\x5b\x06\x67\x58\xae\x07\x03\x96\xe6\x71\x12\x31\x4c\xd8\x8f\x93\x88\x61\x03\x7a\x9c\x44\x0c\x4b\xfa\xe3\x0a\x31\x20\xc0\x9e\x5d\xb2\xcc\x67\xe4\xd2\x35\x58\x82\xdd\x73\x11\x83\x48\xeb\x5e\x8b\xd9\x73\x79\x18\xba\x54\x8e\x31\xd2\x79\x3e\xce\x31\x06\xc4\xe9\x71\x8e\x31\x20\x47\x4f\x5a\x53\x11\x73\x93\x1c\xa5\xcf\xec\x29\xc9\x18\x19\x31\x1f\xb9\xc0\x2a\x17\xf8\xa3\xd8\x16\x72\x86\x3e\x76\x79\x01\x72\x7f\x9c\x63\x0c\x07\xc1\xe3\xd8\x16\xd4\xd1\x27\xcb\x21\xcd\x44\xe4\xa5\x6a\x04\xe5\xd9\xaa\x06\x2d\x28\x44\x87\x99\x91\xbf\x6b\x47\xe1\x7f\xb2\xdd\xea\x61\x61\x7b\xb2\x2a\x8b\x40\x86\xfc\x5d\x9f\x7b\xeb\xc9\x4b\x90\x8c\xc9\xcc\x76\x39\x87\xe4\xf3\x94\xa5\x33\xc5\xf4\x3b\xb8\x05\xb5\xfc\x29\x0a\xc9\x61\xee\x8a\x87\x1d\xa3\x72\xa9\x18\x0c\x56\x8f\x4c\xad\x9f\x90\xe6\xc7\xd5\x60\x28\xe2\xfc\x14\x8b\x19\xf4\x29\xdf\x2b\xdb\xbf\x48\x63\x62\xf6\x8b\x35\x26\xbe\xb7\xeb\x75\xf2\x81\x5d\xd4\x93\x41\xda\xf7\x1a\x37\xf6\x53\x9c\xac\x99\x3e\xab\x8d\x89\x21\x33\x3c\x2e\x06\x43\x76\xe5\xc7\x9e\x2b\x14\x9a\xa7\x5a\x67\xa2\x09\x3b\x24\x1b\x3f\x2c\x33\x18\x5f\xc8\x21\x19\x12\xd8\x53\xed\x90\xec\xfc\x60\x87\x64\x5c\x83\x8f\x63\x65\x3e\x1c\xca\xbe\x2b\xcc\xa8\x4f\xb5\x3a\xc8\xf4\xca\x77\xf5\xd9\x15\x6d\xa9\x87\x31\x3b\x8e\x96\x01\xdd\xf4\xb4\xa5\x2f\x46\x9b\x2d\xab\x09\x5e\x10\x1c\x9a\x6d\x63\xdf\x16\x78\xa8\x47\xbe\xad\xcf\x5e\xb6\x6f\x0b\xc8\xd7\x23\xdf\x56\x27\x5a\xe9\x59\xa9\x89\x3b\x6d\x1e\x96\x0b\xe9\x54\x5e\xbb\xc1\x0b\x4b\x70\xa4\xcd\xd7\x3f\x44\xaf\xb2\xff\x76\x22\xe7\x1e\x05\xc4\xe0\x6b\x7c\x14\x10\x93\xc0\xa3\x3f\x72\x77\xe1\xae\x7c\x64\x0f\x6e\x9f\xe9\xee\x72\xbc\x0e\xba\x30\x7e\xb2\xfe\x29\xb0\xe8\x91\xb7\x2c\x61\xb2\x7c\xba\xb5\xe6\x58\x9b\xbe\xc4\xe5\x20\xb2\x9b\x68\x3e\x90\xfb\x85\xa2\x1a\x8f\xa3\x69\x80\x89\x3d\x43\xc9\x3f\x42\x94\x7c\x86\x92\x7f\x84\x2c\xfa\x0c\xe7\xc0\xe7\xc0\xfe\x94\xa3\xda\x43\xd8\x7d\x86\x63\x99\xe0\x4c\xaa\x18\x83\x63\xf8\x71\x38\xcd\xe7\x5e\xf8\xa9\x53\xb5\xc3\x56\x86\x63\x9d\x18\x82\xbc\x92\x83\x21\x38\xc5\xc9\xa0\x07\x99\x02\x06\x43\x70\xa8\x13\x5f\xc8\x06\x9d\x71\xf9\x3c\xaa\x0e\xf3\x61\xe1\x73\xb9\x04\x63\x0c\xf2\x95\x7d\x98\xfe\xb4\x47\x30\x04\xa4\x67\x2e\x53\x40\x90\x35\x97\x03\x90\x3e\x9c\xb0\x24\x64\xa2\x47\x06\xe6\x5c\x38\x8d\x3f\x1d\xab\x7e\x78\x9d\xc2\x65\x32\x35\x21\x1e\x85\xcb\x64\xaa\x31\x3c\x52\xba\x32\x35\x34\x1e\x29\x5d\x19\x1f\xfa\x73\x38\x7d\x01\xd3\xad\x4a\x9e\x19\x07\xd9\x23\xad\x2b\x7f\x76\xed\x61\xbf\x5f\x0c\xdc\x4a\x17\xfc\x54\x76\xe5\xca\x16\x90\xca\x55\x3e\x2c\x59\x69\xc5\x3a\x81\x97\x8f\x6d\xc5\x9c\xb5\xd3\x76\x48\xee\x1a\x85\xcb\x0c\xcc\x22\xcf\x29\x73\x1c\xbc\xce\xe1\x32\xc4\x07\x3c\x4e\xf0\x85\x7d\xf6\x51\x34\xcc\x67\x10\xae\x9b\x42\x30\xca\x73\xd9\x4a\x15\x16\xd6\xe7\x5a\x84\x47\xa7\x4a\xa7\x85\x6b\xf1\x51\xcd\x93\x06\x0f\xf9\x69\x39\x89\xbc\x36\xcf\xa5\x14\x25\x6c\x5c\x25\xd7\xfa\xe8\x61\xcf\xa5\x20\x86\x30\x28\x3d\xb7\x92\x61\xd0\xc1\x9d\xf4\x7f\xbc\xaf\x78\x1c\xdc\xe5\x8f\xe2\x71\x6a\x40\xbc\x1e\x69\x31\x39\x2c\x1d\x8f\xb4\x98\xfc\xf9\xdf\xc0\x37\x58\xd6\x2d\x97\x00\x97\x8c\xd4\x96\xbc\xf3\xbf\x4c\x23\x3b\xff\x3f\x7a\x66\xc0\x0a\x5a\x60\xd6\x1f\x5b\x34\xe9\xf1\xb1\xcd\x99\x2f\x1e\x29\x62\x1c\x35\x67\x13\x66\x33\x39\x7b\x70\x38\x39\x1e\x67\x0b\x86\x03\x3a\x5b\x30\x0c\x49\xd1\x35\xdf\x21\x3e\xb2\xdb\x73\xb8\x1f\xa9\x92\xdc\x36\xaf\x1c\x5c\xec\xb5\x65\x84\x85\xe6\x57\xd6\x1c\x98\xf2\xeb\x11\xc7\x22\xbc\x1a\x31\x9b\xf7\xb5\xea\xc8\xf7\x72\x4c\x20\x93\xbe\x56\x1d\x63\xc4\xaf\x1c\x13\xec\x9a\xd7\xaa\x63\xcc\xd0\x6b\x5d\x99\xf6\x04\x69\x67\x46\x5e\x21\xc4\x43\xfc\x78\x37\xa9\x56\x21\x9e\xbc\x4a\x47\x8c\xe1\xe5\xdd\xa4\x5a\xc5\xae\x7c\x37\xab\x56\x7c\x2f\xc7\x69\x70\x95\x77\x93\x87\x2f\xc4\x9f\x77\x93\x87\x6f\xd0\x9e\x54\xaf\xf9\xa7\x94\x74\xaf\x72\x13\x23\xda\xbe\x4b\x3b\x89\x9b\xf9\x75\x88\x3b\x77\xf9\xbb\x2b\xf0\x3e\xd6\xe7\x55\xe1\x49\x62\xd2\x5e\x15\x9e\x24\x93\xc7\xbb\xdb\xd8\x15\xe4\x2c\x35\x22\x04\x92\x77\xb7\xd5\x28\x44\xc8\x77\xa9\x11\x9f\x2e\x25\x5e\x7f\x9e\xe5\xb1\xe8\x74\x21\x25\xe2\xd3\xa2\x94\x88\xce\x10\xa5\x44\x40\xd3\x52\x22\x3e\x3f\x58\x49\x08\x4e\xfe\x2e\x25\x21\xf8\xd7\xeb\xa2\x92\xb1\x49\xde\x24\x8f\x45\x48\x66\xaf\x55\x84\x4f\x03\xe2\x7f\xb1\xab\xdf\xb4\x14\x1f\x1a\x58\x4c\x97\x37\x2c\x7c\x67\xba\x54\x96\x4a\xbe\xc8\xce\xa3\xcf\xcc\x2b\x75\xd5\x8e\xcb\xeb\xcd\xf2\xc4\x32\x0f\xd9\xc0\xc7\xd0\xea\x5f\x87\xc3\xe3\xb4\x7b\xff\x29\x0d\x74\x62\x1b\x5f\x68\x2e\x6f\x56\x29\x46\x26\x42\x45\x44\x76\xfc\x7a\xaf\xd2\x12\x63\xa9\x79\xf3\x42\xb2\xd3\xa9\xf0\x9f\x8d\x0f\x04\xd7\x60\xcb\x59\xa7\x20\xc1\xfa\x2b\x9d\xa2\x72\xc3\xbd\x45\x39\x0d\x1b\xcf\x4b\xf6\x8e\x41\x39\x5e\x9e\x23\xf2\x53\x32\x2a\x0a\xdc\x2b\x8d\x81\xeb\xea\x2d\x4b\x81\x0b\xb2\x57\xb4\x7c\x30\x91\xb7\xa8\x3a\x56\xe6\x59\x21\xe7\x61\xa4\x7f\x0d\x6d\x23\xf0\xe4\xad\xeb\xba\x8a\x31\x19\xda\x46\x2c\xce\x2b\x40\x06\x30\xb5\xd7\x80\x8c\xcf\x96\xa8\x4b\x90\xa2\x09\x07\xa1\x32\x55\x56\x08\x3e\x67\xa7\x3a\x6c\x3c\x44\xd8\xd7\x25\xff\x29\xb8\xfd\x56\xc7\x8d\x0f\xda\x58\xc2\x14\xe3\x92\xa3\x05\xd2\x9b\x85\xab\xca\x0f\x16\xae\xe2\x83\x66\xe1\xea\xf3\x83\x03\xc9\xe3\xd2\x78\x9b\x03\xc9\x83\xc9\xbf\xcd\x30\x21\x8e\xb0\x72\xc5\x0e\x72\x28\xbe\xd3\x94\xc4\x17\xd3\x5c\x36\xe8\x98\x32\x58\x85\x4b\xe3\x75\x55\x09\x8a\xd1\xbe\x8e\xe9\x60\x7a\x25\x5a\x95\xcf\xd6\x76\x24\x32\x87\x5e\x92\xd5\x18\x9f\x16\xb4\xd5\x19\xe3\xa1\x0c\x80\x9f\x2e\x7f\x7b\x80\xd4\x57\xef\xe1\x89\x8b\x69\x38\xed\xa1\x8a\xef\x55\x26\xa2\xc6\xcd\xf7\x5a\x8a\x9a\xbc\x6f\x81\x86\xa3\xe4\x8a\x78\xc4\xc3\xbd\xe7\x6f\x1f\x73\x73\x48\xec\x1a\x19\x0e\xa0\xb0\xe5\x0e\x08\xe2\x55\x8c\x47\xdf\x3f\x4d\x4e\xeb\x03\x74\x7a\xf8\x07\x46\xf9\xf8\x07\x7a\x79\x85\x60\x89\x4e\x2e\x23\x8b\x76\x7e\xd0\xfa\x87\xa2\xf5\x5e\x76\xab\xc5\x20\x2e\xc3\x53\x83\x8a\xcb\x05\x98\xfe\x14\x6f\xf4\xfe\x84\xba\x06\xec\xee\xbd\x6c\xa4\x08\xb7\xed\xfb\x13\xea\x1a\xb5\xa7\xdf\xcb\x0e\xb8\x70\x03\xbe\x3f\xa9\xae\x51\x7e\xf9\x75\xca\x54\x58\xf7\xb5\xaa\xa1\x06\x3d\xb7\x75\xa6\x90\xba\x5e\x45\x73\x90\x63\xec\xfd\x89\x79\x8d\x5a\xbf\xef\x4f\xcc\x6b\x14\x89\x7e\x6d\xcd\x66\x63\xdc\x55\xff\xc7\x04\xdc\x82\x5a\xb1\x06\x3f\x31\xb0\x51\xb5\xfb\x5d\x25\xcc\x69\xf0\xd9\xe4\x9f\x8b\x21\x3f\xca\xe5\xc7\xa4\xfc\xc4\xb8\x44\x32\xbe\xf7\x71\x1c\x78\x34\xf8\xc8\xe1\xc1\x56\xff\x09\x75\x89\xec\x13\xef\x4f\xa8\x4b\x64\x5a\x7c\x1f\x05\xfb\x72\x7b\x3d\x2a\xaa\x03\x67\x7a\x94\x55\x8e\x93\xf1\x48\x70\x86\x0d\x3d\xca\xed\xc7\x96\x79\x85\xa4\x81\x6f\xbd\x92\x83\xc3\x6d\xfe\xfe\x44\xb6\x0e\xd6\xf5\xfd\x89\x6c\x1d\x8d\xf1\x7d\xed\x5f\xe4\x59\x70\xbb\x44\x7b\x16\x19\x42\xff\x7b\x5f\xa1\xaa\xc2\x95\xff\xfe\x64\xb6\x0e\xf0\xf5\xfd\xc9\x6c\x1d\xe7\xf2\xfb\xde\x7a\x3f\x08\xfe\xc9\x70\x1d\x60\xec\xfb\x93\xe1\x7a\x00\x7c\xe7\xf6\x93\xe1\x52\x14\x5e\x9f\xdb\xe6\xa3\xdd\xe2\x39\xe9\xfd\x1c\xcf\x8a\x5e\xfe\xe7\x08\x9b\x9b\xa2\xad\xc3\x99\x3d\xb7\x9f\x4c\x97\x6a\xa2\x7d\x45\x33\xff\x3b\x62\x73\x53\x1c\x46\xdb\x26\x1f\xc8\x27\xfa\x6f\x06\xe7\xb6\x49\x11\xf8\x34\xa0\x58\xe0\x7f\x3a\xde\xdc\xb6\x1f\xbb\xdc\xb6\x78\xde\x37\x3d\xc7\xfb\xbb\x3c\x4e\x0c\x50\x26\xe4\x1a\x91\xb1\x73\xfb\x89\x71\x79\xdb\x79\xa1\xaa\x81\x1a\xcf\x4d\xff\xf3\x7e\xd7\xff\x3c\x0b\xec\x34\x83\xa2\xdd\x3e\xb3\x98\xc1\x9f\x4c\x97\xb7\x3d\x08\xda\x4d\x50\xcc\xe0\x4f\xa6\xcb\x1b\x33\xfa\x93\xe9\xf2\xc6\x0c\xee\x26\x30\xc6\x97\x4c\x60\xf4\x97\x4c\x60\x8c\x37\x25\xfd\x1f\xfd\xff\x44\xbe\xbc\x6d\xd1\xff\x4f\xe2\x1b\x39\xc5\xf8\x93\x3c\x60\x93\xff\xe5\x01\xab\x31\xa1\x49\x6a\xcb\x8c\xf1\x65\x79\xbc\x5a\x7c\x9f\x85\xcb\x6b\x31\xbe\x6c\x17\x1e\x1d\x64\xa9\x31\x93\x17\xe4\x94\xae\x31\x40\x47\x67\x37\x3a\x50\xee\x83\xd0\x43\xe6\x96\xa5\xc7\xb4\x18\xa1\xa2\xaf\x07\x33\x9c\xe5\xa5\xee\x74\xf8\xa3\x60\x32\x43\x0e\xbe\x6e\xf1\xac\x60\xeb\xc9\x96\x29\xbe\xae\xf8\x5f\x2e\x9e\xc6\xff\x4d\x82\x1e\x7b\xb2\x74\x35\x10\x14\x15\xf9\xac\x5a\x0c\xa8\x58\x31\x89\x25\x29\x8a\xbd\x9d\x41\x50\xb1\xec\x52\xf8\xe1\x56\x83\x7c\x60\x0a\xf8\xff\xd5\x73\x4c\x91\xa2\xb3\xe7\xf6\x17\xcd\x67\x6e\xd5\xe4\xc6\x86\xaa\x56\xc3\x78\x96\x1a\xc6\x09\x54\x28\xf7\xe0\x84\x29\x94\x7b\xb2\xe1\x65\xde\xad\x11\xc0\x37\xb7\xaa\xa0\x50\x16\x58\x35\x23\x12\xe4\x2b\xfd\x68\x62\xbd\xaa\x5c\x64\xec\x28\xa5\x23\x4d\x9f\x0e\x15\xe4\xca\x80\x54\x0d\x22\xb1\x43\x9b\xf1\x30\x35\x16\xac\x49\x53\x63\x01\x9b\x25\xa4\x98\x3e\x49\x69\x35\xd2\xd4\xce\xcd\xc5\x20\xc2\xeb\x39\x37\x17\x83\x18\x74\x61\x2d\x87\xff\xed\xdf\x19\x31\x09\xc2\xaa\xd4\x0e\xdb\x30\x56\x65\xf0\x2c\xd5\xec\xf3\x81\xb1\x64\x3d\xa8\xec\x4b\x37\x8b\x51\x77\x39\x14\x7a\x90\xdd\x97\xae\xc6\x0f\xf2\x30\xf4\xa0\xa2\xcb\x31\xd2\x63\x1e\x5d\xde\x3b\xf0\x21\x73\xeb\x8a\x0f\x1d\xbc\x60\xb9\x8f\xff\x97\x8a\x43\x0f\x0a\xdd\xfb\x8c\xd1\xa1\x7b\x85\x31\x2a\x74\xef\x33\x66\x61\xb2\x38\x5a\x32\xd3\xee\x9f\xa3\xd1\xad\x03\x45\x0f\x8a\x71\x08\x25\x7b\x6e\x43\x16\xf6\x1c\x34\xb9\xae\x37\x67\xcf\x35\x21\x26\xec\x6b\x2c\x22\x79\xa3\xab\x85\x20\x72\x28\x8c\x2b\x07\x91\xc3\xa1\x1f\x9f\x2e\x7f\x43\xfa\xec\xe7\xa9\xb0\x0b\xb6\xe7\x74\x6d\xce\xa0\x69\x96\xff\xfe\xd7\x76\xa6\x7d\xfa\x4a\x0b\x92\xe6\xd4\xff\xb4\x77\xea\x39\x06\x34\x9f\x9f\xa0\xc7\xde\x9a\x16\x3b\x83\x80\x9f\x80\xdf\x32\xab\x74\xec\xfa\x3f\xc6\x73\x58\x0a\xe5\x7d\x29\x21\x5c\x28\x3f\xf9\x9f\xec\xff\x73\xb3\x65\x95\x0b\xeb\x27\xfe\xb7\xcc\xce\x94\x5d\xb5\x7c\x38\xf8\xe1\x14\x2d\x74\xf8\xf8\x85\xa0\xf8\x50\xed\xc3\x1c\x23\x38\x55\xfb\xb0\x44\x03\xa7\xc5\xc8\xa0\xe0\x94\x18\x99\x63\x86\x4e\x8b\x91\xd1\xc1\x4f\xfc\x6f\x3d\xc7\x0c\xab\x12\xc3\xe7\xf4\x49\xfc\x8f\x54\xb7\x73\x93\xb0\xff\x39\x5b\xa7\x13\x86\xb0\x84\xe7\xfd\x13\xcb\x98\x82\x53\x62\xda\xa7\x81\x57\xcf\xd1\xc1\xa5\xcc\x5b\x9c\xac\x4b\xb0\x30\xb6\xb5\x04\xfd\xf2\xb9\xd4\x7e\x92\x7e\xdf\xa1\xf0\x52\x12\x99\x11\x9b\xec\x1a\x7a\xa6\x01\xc9\x95\xec\x99\x9f\x2c\xdf\xa3\x12\xf6\xdc\x2e\x41\xb4\x39\x89\xb7\x2e\xe5\x1c\xfd\xdd\xee\x8f\x67\xcb\x8d\x31\x83\x3f\xc1\xba\xf7\x3d\x56\xe4\x1e\x7a\x8e\xf6\x6f\x89\x85\x88\x59\xb7\xc4\x42\xc4\xba\xdb\x62\x21\xdf\x4b\x0c\xdc\x63\xbc\x92\xcb\x3b\x7b\xe8\x91\x18\x98\xfe\x82\x48\x98\x9b\x84\xf6\xa8\x83\x3a\x37\x09\xed\x7d\x8f\xc9\x7b\x24\x23\x22\x20\x3c\x12\x92\xf7\x98\x0c\x41\x42\xb6\xcf\xfb\x42\x25\x71\xa2\x55\xc7\x2d\xa7\x20\x4e\x75\xda\xb6\xcf\xe0\x85\x42\xe2\x80\xfe\x84\xf4\x91\x21\xf6\xb5\x92\x11\xe3\x7b\x2d\x11\xf1\x2c\x01\xa5\x45\x7f\x3f\x21\x7c\x7e\x24\x3e\xa5\x34\xda\x43\x28\x9f\xdb\x4f\x08\x9f\x1f\x11\xeb\x95\x69\x98\x0b\xed\xf5\x00\x69\x50\x22\x16\x5c\xf3\xb5\x88\xf5\xef\x79\x97\x21\x15\x91\x70\x97\x21\x15\x11\x70\xdf\x2c\x72\x95\x78\xce\xfa\xbf\xc5\xb3\x25\x2e\x9e\xab\xfe\xaf\xf1\x2c\xc3\xf1\xe4\xfb\xae\xff\x79\x16\xe6\x28\x38\xe2\x2e\xc3\x6b\xe4\x85\x9f\xbb\x6d\xa9\x9d\xf1\x5a\x00\x63\x7c\xc2\xe0\x04\x87\xdb\x37\x09\x60\xc1\x11\xf7\x5d\x86\xe2\xe0\xc8\xfb\x2e\x43\x71\x9c\x96\xfd\x27\xa3\xe7\x28\x24\x38\xf7\x5d\x02\x59\x1c\xd7\x7d\x97\x61\x38\x4e\xcf\x2e\x91\x3c\x0a\xf7\xcd\x5d\x45\xe0\xc2\x3e\x31\xf7\x9f\x88\x5e\x60\x17\xfb\xaa\x01\xd7\xe9\xc0\x59\x2a\xe2\xbc\xed\x86\x6f\xa4\xcf\x90\x96\xb9\x38\x68\x92\xe9\x35\xb3\x26\xbb\x51\x3c\x4c\xca\xaa\x12\xc7\x28\x5d\x25\x2e\xc2\x83\xe7\x9e\x0c\xd4\x81\x2e\x5b\x67\x13\x13\xb5\xca\xc4\x05\x63\xdb\x93\xc1\x2b\x83\x4f\x7c\xc5\xf3\xec\x00\x93\x41\x13\x4b\x72\x89\x81\x26\x6f\x4e\x86\x65\xc1\x85\x67\x23\x38\x06\x84\x58\x72\x61\xdc\x59\x30\x9d\xe0\xae\xbb\x10\x1d\x8d\x0f\x5c\x34\x6e\xd0\xe4\x82\x78\x84\xce\xb5\x1b\xe2\xc1\xfc\x1b\xc1\x81\x80\xbb\x2b\x62\x39\xb1\xa3\x56\xb4\x31\x74\x66\xfb\xbc\x83\xe3\xed\x8e\x36\x8e\x84\x38\x73\x2f\xae\x8a\xce\x64\x3a\x18\x6e\xd0\x68\xb1\xb9\x86\x46\x05\xc8\xc8\x81\x59\x9f\xbb\x00\x19\xe3\xf3\x2c\x47\xdc\x4e\x0b\x66\xf3\x41\x47\xb1\xf9\x20\x36\x49\x91\x03\x32\xf3\xbe\xd8\x6e\x8e\x99\xac\x62\xb3\x89\x67\x63\xb9\xd8\xb9\x55\xac\x34\xc7\xc4\xfd\x64\xf5\x91\xe3\x26\xdd\x55\x2a\x20\x17\xfe\x6f\xfa\x3f\x28\x52\xa9\x80\x8d\x59\xaa\xf2\xc3\xc5\xcd\xbb\xcb\xf0\xda\x76\x58\x4f\x15\x6f\x8d\xab\x7e\x5f\x66\x56\x78\x81\xac\xaa\x3d\xb3\xda\xf5\x15\xf3\x88\x17\x9a\x98\x57\x88\x27\x7b\x33\xf3\x8a\xf7\x7f\xc2\xfa\x44\x9f\xde\x95\xa9\xa9\x84\xc4\xb7\x2b\x9c\x0e\x85\x7e\x6f\xe6\xc6\x7f\x89\x05\x9a\x7b\xb3\xee\x08\xab\xfa\x09\xf6\x93\x8b\x77\x57\x5a\xa7\xa8\x11\x3a\xf7\x76\xe8\x39\x56\x48\x69\x9d\x26\xa3\x97\x94\xde\xa2\x72\xfb\xdc\xbb\x0f\x2d\xbb\xdf\x62\xfa\x67\x6b\x4a\x4c\xcf\x70\x63\x89\xe9\x99\xbd\x2d\x31\xbd\x6d\x71\x7f\xed\x12\xd3\x33\xec\xb9\x9b\x7d\xd1\x83\xa1\x76\x9c\x27\x57\x67\xfb\x1c\xf2\xee\x18\x03\xf6\xc5\xb0\x72\x01\x8b\x57\xf1\xb5\x88\xbe\x9b\xfb\xb0\xdf\x27\x94\xb0\x7d\x98\x91\xc4\xb4\x0f\x69\x40\x83\x16\xed\xab\x9a\xb1\x6e\x43\xbe\xaa\xcf\xf3\xe5\x8d\x41\x0b\x76\x7c\x33\x75\xc3\x29\xa6\x98\x19\x57\x5a\x43\x91\xdb\xa7\x54\x20\xd8\xdd\x5c\x8c\x23\x46\x39\xad\x8a\xc3\x54\x15\x3f\xb7\xa3\xec\xef\x2e\xa3\x86\xee\xbc\xbb\x8c\x1a\xfa\xef\xae\x60\xe0\x0f\x5f\x76\x15\xb5\xcf\xf5\x31\xe5\xc7\x81\xf7\x2b\x7e\x6e\xc7\x60\xb0\x1f\x76\xe4\xb0\x4b\x84\x39\xdf\x3f\x37\x96\x64\xf6\x1d\x8d\x7e\x3f\x14\x70\x09\x33\x3a\x8c\x1c\x62\xb6\x0e\x23\x85\x98\xf0\x63\x71\xf2\xa0\x6c\x81\xce\x1b\x3f\x18\x35\xc5\xa2\x2e\x48\xf9\x4e\xa3\x76\xe6\x04\xe9\x87\xf3\x4f\xb0\x68\xe7\xe2\x9a\xd1\xe6\xa9\x1c\x0d\xdc\x0e\xa7\xe2\xe0\x39\x1f\xa7\x7d\x39\xcc\x9e\x64\xf5\xfe\x61\xdd\xce\x30\x3a\x98\xbe\xd3\x91\xf1\x50\xa6\x0c\xa3\x9d\x13\xf4\x4f\x9c\xe7\x07\xc7\x90\x73\x67\x9d\x0b\x80\x42\xaf\x8f\x7f\x88\x4f\x9c\x62\x14\xc6\x77\x19\xa1\x12\x2d\xd8\x94\x5f\xb8\x6b\x2f\x43\x56\xe0\xdd\xff\x64\xfe\x98\xbc\x9f\xcc\x5f\x3f\x9b\xd1\xd6\x7d\x58\x87\xcb\x10\x70\x2a\x2f\xb3\x16\x86\x24\xf4\xcf\xe7\x7d\x51\xf5\xf9\x5f\xb6\xe5\x4f\xfb\x32\xfc\xb1\x14\x97\xe2\xfc\x42\xaf\xdc\x6f\xe3\x46\x62\x7c\xcb\x78\x1f\x14\x39\x47\x2a\xd3\x7c\x2b\xf1\x25\x3b\x4c\x3a\x45\x54\xac\x9f\xbb\xcb\xa1\x85\xf5\x7e\xee\xb7\x8c\xd1\x21\x67\xef\xb7\x8c\xd1\xa1\x59\xef\xb7\x22\x7c\xb9\x3c\xee\x43\x0d\x32\x00\xdf\x76\x3c\xfb\xb6\xa3\xfd\x57\xbe\xb1\xb0\xc5\xee\x8f\x8c\xc9\x61\xba\xdc\x95\x35\x75\x0b\xc5\x60\x7f\x24\x98\x87\x79\x62\x57\x38\x5d\xcd\x70\xf7\xc7\xb6\xd9\x20\xf9\xd1\x75\xc7\x7d\xaa\x8a\xd0\x91\x37\x62\xee\x3f\x4d\x22\x6f\x61\x7b\xdd\x85\xe1\xc8\x85\xff\x25\xa8\x7f\x06\x28\x94\x49\x8d\x67\x41\x36\xf2\x9f\xea\x3c\xcc\xfd\xd5\x5d\x1d\x46\xbe\xdd\x6a\x46\xa1\x31\x19\x9a\x39\xac\xca\xad\x3a\xc2\x09\x3a\x77\xe1\x39\x32\x52\xd3\x2b\x6a\x0a\xff\x4b\x2f\x0a\xe3\xcc\x2e\xbd\xa4\x62\x4b\xdf\x7f\x7a\xc7\xfc\x90\xfb\xba\xce\x0f\xe7\x4a\x08\x0e\xe8\x4d\x56\x3c\x62\x01\x92\x15\x8f\x9d\xff\x75\x77\xc7\xcd\x95\xac\x78\x84\xcc\x95\x54\x70\x3a\x22\x41\x67\xb2\xe2\x91\xf9\xbe\xe9\xff\x12\xcf\x0a\xa5\x0d\x79\x29\x2d\x6f\x40\xa5\x03\x69\x1e\x9d\x0f\x0e\x75\x98\xe3\xf9\xd2\xf3\x8c\x67\x45\x37\xc4\x29\x4f\x9b\x4d\x19\x9d\x11\x88\xe2\x98\xf4\x24\x77\x41\x09\xa9\x3d\xed\xb2\x6e\x07\x57\x48\xbb\x29\xde\xe3\x79\x59\xb7\x63\x04\xd2\x45\xb6\xcc\xb3\x74\xa9\xcc\x07\xc3\x15\x65\x62\x4e\x77\x69\x93\x99\x67\x93\x14\x43\xde\x45\x52\x62\x84\x52\x16\x83\xf5\x25\xa9\x11\xa4\xce\x9c\x49\x06\xfe\x00\xe7\xcd\x94\xbc\x08\x41\x42\xd2\x22\x04\xdf\x49\x49\x23\x0e\x3e\x93\x92\x46\x1c\xc7\x38\x49\x85\xf8\x78\x14\x92\x51\xe0\x99\x55\x70\xc2\xd6\x80\xda\xce\xe4\x52\xd3\x78\x6d\x52\x92\x06\x18\xf7\x4c\xca\xd2\xf8\x42\x60\x49\x3f\x95\x61\x86\x5f\x6c\xa6\x9f\xca\x30\x03\xac\x39\x53\x56\x54\x49\xf0\xb6\xa4\x8c\xae\x93\x21\x09\xdf\x51\xc3\xfd\x3b\x53\x96\x4a\x18\x62\x6a\xca\x56\x09\xf9\x60\xe8\x39\x88\xce\x62\xd6\x4c\x52\x56\x1e\x8b\xb8\x93\x92\xc0\x1d\x2d\xd0\xf4\x33\x65\x99\xe8\xd9\x38\x76\x32\x70\x54\xb2\x4c\xf4\x2c\x6b\x91\x89\x9e\x9d\x59\x6c\xb4\x66\x12\x8b\xef\x1b\xe6\xa8\xc8\xce\xce\xc2\x17\x93\x14\x24\xfe\x94\x91\x89\x95\x2c\x15\x93\x10\x73\xe4\x54\x1c\x93\xff\x4f\xfd\xcf\xf7\x97\xe6\x9c\x11\x89\x22\x0e\x73\x79\xf4\x3f\xcf\xd2\xda\x43\x14\x48\x3f\x65\x65\x86\xab\x71\x26\xfb\x15\x38\xcc\xf6\x2b\x04\x73\x49\x3f\x5d\x65\x86\xaf\x73\xa6\x5a\xf4\x1c\x7b\x40\xb0\x90\x1a\xc9\xee\x66\xfa\x29\x2f\x13\xa3\x53\xaa\x5e\xc3\x20\xb0\xae\x8d\xc9\x0f\x12\xde\x39\x6b\xd5\x14\xf3\x2c\xe8\x51\xa0\x65\x67\xaa\xda\x96\x83\x21\x29\x33\x42\x65\xd9\xa5\xbc\x44\xc0\xdc\x4c\xcd\xfb\x34\x86\xd4\x1c\x79\xcb\x69\x6c\x26\x92\x06\xbc\x51\x83\x26\x27\x03\x09\x21\x2e\x39\x19\xc8\xe0\x7b\x85\x43\x4d\xfe\x3f\x4d\x23\x3f\x28\xbe\x69\x96\xbf\x5c\x39\xa9\xc9\x10\x33\xe9\xfd\x31\xc0\x28\x26\xa0\x79\x4d\x63\x02\xba\xd7\x34\xfe\xef\x3a\x87\x21\x2b\xa7\xee\x38\xa0\x10\x2a\x92\xeb\x22\x60\x3c\x4e\x4b\x59\x89\xf1\x2e\x65\x85\x93\xb8\x94\x15\xf6\x65\xff\x29\x0e\xc8\x51\x49\x3e\x85\xcc\xd1\xec\x66\x26\x6c\x1c\x39\x15\xb6\xcc\x46\x70\x65\x05\x0c\x3c\xe9\xa7\xee\x14\x2c\xd8\xc9\x99\x93\xd0\xfd\x93\x22\x65\x37\x74\xac\xe4\x6c\xb5\xd0\x25\x7d\xa8\x06\x3e\x79\xa6\x21\xad\x8d\xcd\x28\xbf\xc3\x86\xee\x9f\x54\x6d\x61\xfb\x8c\x5b\xf0\xf0\xed\x3b\x0a\x85\xee\x7f\x38\xb1\x75\x28\x4c\xf7\xc9\x39\x6e\xf1\x95\x26\x29\x51\xdb\x67\x72\x86\xed\x4e\x9c\xc2\xe1\xc9\x60\xc7\xb9\x0a\xdb\x4e\xb7\x4a\x64\x9b\xe1\x54\x4a\x5b\x82\xdc\x99\xa6\x8d\x4a\xec\x12\x21\xc2\x37\x34\xd6\xf4\xd3\xb2\xca\x87\xd4\x69\x52\x39\x06\x4a\x64\xfb\xa1\xc3\x89\x6c\xbf\x7d\xac\x45\x8f\xc9\x71\x60\x2f\x9a\x47\x9a\x5e\xf5\xa0\xcb\x65\x1c\x32\x0c\xd3\x81\xbd\xb8\x15\x93\x03\x7b\x3f\x4b\x72\xac\x45\x8d\x4e\x5c\xb5\x01\xa3\x5c\x3a\x96\xfd\x2c\xe6\xe2\x70\xa0\x1b\xe7\xf1\xf0\x06\xe7\xc4\x1f\x6b\x59\x63\x60\x87\x69\xe5\x85\x45\x2b\x6d\x2e\x5a\x83\xf8\x95\xf3\x96\x53\x76\x88\x56\x36\xb4\x6b\xb4\x61\x71\x4e\xa7\x91\x47\xf0\x7e\xe5\xbc\xfd\xf0\xca\xd3\xea\x3b\xff\x8b\xb0\xcf\x65\x21\xbd\x6c\xfb\x70\x63\xe9\x65\x1b\x6e\xae\x74\x4a\xc1\x67\x94\x52\xcb\xca\x47\xd6\x3a\x7d\xcd\x17\x46\x65\x0d\x9f\x41\x08\x8d\xca\xc9\x96\x12\x56\x51\xf0\x93\x0a\x3f\x8c\xcc\x25\xb8\x92\xe0\x32\xee\x4b\xa6\x42\xb6\x85\xd4\xb2\x0d\xdd\x3b\x5d\x82\x9f\xb2\xe8\xce\x79\xfb\xb9\xa5\x94\xf3\xf6\xc3\xb1\x94\xf3\x76\xc3\xa2\x93\x04\x96\xdf\x3e\x37\xb5\x80\x55\x1b\x36\x9e\x74\xd9\xab\x09\x13\x97\x66\xb6\xa1\xe0\x27\xa5\x34\xd9\x3e\x57\x8f\xa0\x55\x1b\xca\x5d\x72\x8e\x13\xfc\x92\xe9\x5e\xa4\x46\xa3\xce\x94\xfb\xb9\x7f\x6f\xaf\x69\x90\xea\x4c\xb9\x9f\xbb\xe2\xb6\x44\x80\x2c\xe9\xb4\x28\x1f\xa9\xc5\x59\x50\xb0\x65\x24\xe7\xce\xc5\xda\x91\x56\x5a\x14\x16\x49\x59\x50\x5a\x66\x83\x3b\xeb\x09\x16\x93\x74\x9b\x36\x98\xd0\xbd\x68\x8b\x71\x28\x37\xee\xf6\x11\x66\x9e\x45\x5b\x10\xfb\x58\x2c\xfe\x53\x79\xf0\x99\x9c\x26\x85\x21\x59\xaf\x03\x45\x94\x1e\xaf\x3a\x87\xd0\x79\x52\x3e\x57\xfb\xb3\x96\x9d\x1f\xbc\xec\x70\x78\xe7\x49\x61\x3d\x1e\xdf\xac\x28\x23\xaa\x8f\xf1\xdd\x6b\x8f\x8b\x3f\xa2\x3d\x3c\x8b\xd7\x32\x11\x6b\x66\x62\x22\xde\x4d\x6b\x1a\x4d\xbc\x9e\x98\xcf\x0f\xc9\x77\x40\xb4\x29\x2d\xaf\x46\xc9\xc9\x99\x5e\x03\x91\xc3\x0e\x90\x94\x60\x77\x22\x2b\x3b\x71\xca\x47\x27\x59\xfe\x27\x94\x96\x95\x61\x17\x5a\x9d\x61\x17\x2e\xf7\x3a\x36\x21\xf3\x82\x31\xd8\xd0\xbe\x72\xee\x86\x24\x94\x37\x07\x40\x4e\x7e\x70\x00\x64\x08\xfd\x79\x33\x2a\x3b\x04\xbe\xbc\xb2\xab\x84\x15\x32\x6f\x32\xf3\x0f\x9e\xed\xbb\x6f\x7c\x21\x69\x02\x64\x4d\x76\x5a\x5e\xc4\x8b\xbc\x99\xf8\x60\x42\x79\x5b\xb4\xf2\x89\xb3\x86\x4c\x3e\xb1\xdd\xb1\x33\x72\x13\xdb\x69\xc3\xc4\x06\xe4\x28\x2b\xf0\x18\x0c\x54\x76\xaa\xdd\x12\x88\x9e\xec\x54\xbb\x68\xaa\x79\xa5\xda\x85\x36\xa1\xff\xf1\xa9\x65\x67\xda\x8d\x38\xa0\x99\x77\x05\x77\x0e\xfa\x54\x90\xea\xe7\x7f\x61\x2f\x20\x63\x37\xa1\x61\xee\xcb\xfb\xa2\x8b\x2f\x4c\x57\x65\x0c\x8b\xae\xa0\x23\x89\xae\xc1\xb3\x62\x6f\x99\xcc\x64\x7b\x6b\xb4\xe8\x7a\x79\xd8\xc0\x72\x5a\x64\xf2\xc5\xba\x67\xf8\x44\x60\xe3\xd8\x48\xd9\xf5\xf2\xc0\x8f\x65\xa5\xd5\xc5\x71\x96\x5d\x3f\xaf\x84\x08\x9c\x93\xb7\xf3\xe0\x0d\x01\xed\x3f\xcf\x0e\xa9\x62\xa3\xa5\x35\x13\xfc\xa0\x0c\xd2\x93\x26\x15\x51\x40\x17\x8e\x28\xc0\x6a\x99\x95\x66\xb7\xd6\xb8\xeb\xb2\x23\x0a\xd8\xfe\x2b\xa2\x80\xa9\x5b\x11\x05\x71\xa6\x72\x16\xe1\x0c\x6a\x45\x21\x37\xfa\x58\x84\xc6\x54\xb9\xa2\x1e\xce\x89\x2c\x9f\x55\xc3\x00\x96\xa5\x24\x76\x0c\x2a\xb9\x98\x7d\xc4\x05\x9a\xcb\x62\xb4\xb4\x21\x48\x6e\x24\xfc\x9e\xb9\x58\xad\x62\xfa\x8a\x77\x62\xb8\x5b\xb3\xe3\x8e\xb9\x56\xb2\x92\xe6\x56\xec\xf0\xb9\xd8\xaa\x1e\x0c\x39\x3b\xf2\x38\x78\x54\x76\xe4\x31\xc4\x3b\xf2\x18\x79\x24\x2b\xac\x00\xd7\x66\x76\xe0\x71\x64\x05\x9f\xd9\x79\x1e\xa3\xe4\xd2\xcc\xae\xc1\x17\x59\x3d\x67\x56\x18\x01\xaa\x47\xae\x86\x02\x05\x03\xcf\x02\xa2\xed\xdc\xd2\xb9\x9a\xb0\x50\x08\x73\xb5\x5f\x71\xa7\x0d\x13\xf6\x37\x0b\x5e\xae\xa6\x3a\x88\xaa\xa6\x9a\xfe\x16\xd5\x31\x2d\xd5\x54\xc2\x01\x97\x82\x19\x36\xba\xdc\xec\x3a\x60\xc9\x9b\x5d\x07\x61\xd6\xcd\x52\x31\x3b\x70\x83\xac\xa0\x83\x1d\x83\x4f\x16\x9c\x6d\xe7\x76\xcc\x4d\x51\x20\xec\x55\x55\xe5\x1b\xfb\x46\x9b\x9e\x98\xc2\x1b\xc3\xb2\x5e\xcc\xbe\xc2\x90\x3f\xfe\x9e\xdc\xec\x47\x49\xfc\xe0\x74\x6a\xb0\x02\xc5\x25\xe3\x95\xca\xcd\x7e\x14\x58\x83\xb4\xcf\x86\xda\x90\x95\x64\x17\xe1\x3b\xf7\x45\x7b\x34\xd1\x7d\x83\xc0\x45\xbb\xd5\x32\x96\xa0\x8b\xd4\xb8\x0b\xb3\x31\x6f\x08\x06\xb9\xaf\x3d\x10\xa3\x50\xec\x71\xa9\x8c\xd3\xa8\x37\x4c\x35\xb9\x9b\x01\x35\x7a\xb5\xcb\x28\x33\x50\x2f\xf4\xce\x30\x54\xf0\x27\xaa\x05\xcc\xdc\xe5\x33\x82\x7f\xc8\x01\x97\x90\xf9\xb3\x54\xd2\x8f\x34\x9d\x15\x9f\x0c\x5e\x20\x0f\x2f\xf3\xce\x0b\x8e\x58\x64\x14\xc2\xc2\xf5\x0d\x4a\xa4\x93\xd6\x1a\xf6\xe9\xec\x12\xe0\x1b\x8c\xd1\x21\xcb\xe8\xbd\x79\x38\xdc\x1c\x86\xa2\x98\xe5\xc2\xe6\x1a\x0e\xb4\xff\x8c\xf3\x76\x13\x31\xe5\xd2\x40\xd3\x67\x59\xed\xc6\x43\x46\xcf\x8a\x5a\xae\x00\x36\xb2\x20\x75\x09\x85\x31\x4f\x47\xda\xb3\xd0\x53\x91\xf5\x1c\x1c\xe9\xa4\x09\x35\x37\x2b\xe7\x6f\x61\x07\x4f\xc1\xfe\x60\xe0\x53\xb0\x3f\x0e\x9a\x13\x6b\xa2\xd4\xe6\x69\x42\x83\xf0\xe9\x48\x28\x2e\x60\x17\x5b\xe9\x6c\x03\xe7\xd5\x44\x89\xcd\x73\x51\x1e\xd3\x2b\xcf\x60\x42\x03\xcd\x0e\xd6\xc1\x02\x9e\x97\x67\x30\x94\x8f\x7c\xa8\x42\x1f\x7c\x50\x3a\x6b\x42\xbf\xcc\xd2\x59\x13\x26\x80\x6c\x57\x61\x63\x89\xa4\xb3\x26\xc4\xd2\xbc\x7c\x87\x21\xf4\x67\xfb\x0e\xd1\xc7\xb3\x94\xd6\xd4\x38\xcd\xf6\x1d\x62\x42\xc9\x2a\x3e\x08\x76\x34\x1f\x4b\x64\x8c\xf9\x92\x2f\xb1\xc0\x31\x5c\x7b\x10\x95\x28\x9f\xf2\x4f\x85\xb7\x26\x9f\x6b\xd1\x63\xdc\x4a\x5f\x95\xb0\x2b\xe4\x53\xe0\xcf\x30\x00\xe6\x73\x91\x1e\x83\xb0\xb7\x11\x1b\x40\x3e\x17\xa5\xbc\x21\x46\x56\xd9\x27\xd2\x62\x7b\x66\x2e\xec\x5d\xac\xcc\xd6\x69\xab\x20\x6c\xc8\x15\xc8\x3f\xf7\xe1\x65\xaf\x28\xb4\xaf\x10\x6d\xee\xc3\x2b\x2b\x5e\x29\x48\xbb\x1c\xd0\x04\xd7\xb9\x16\x0b\xe6\x87\xee\x26\xf8\x44\x85\xf2\x58\x00\xc7\x74\x37\x2e\x2f\xa9\xa9\xe5\x8f\xa6\xbf\x2c\x1d\x36\x35\x0e\xe1\x4f\x87\xad\xed\x33\x80\xc7\xed\xf3\x82\x21\x34\xb0\xce\xdb\x64\x87\x0d\x21\xdf\x76\x06\xc7\x34\xb8\x2a\x63\xe3\x94\x4a\x85\x6d\x0d\xde\x70\xaf\x79\x88\x89\xba\xbd\x79\x61\xf1\x77\xd3\xb0\xe8\xa3\xeb\x99\x16\x3c\x2d\x31\xca\x7b\xed\x5c\x06\xe1\x79\x0a\xb5\x39\x4b\xc3\xad\x11\xe7\x3c\xf3\x6d\x4a\xb9\xf5\x6f\x95\xcd\x65\x4b\x48\x9f\x2d\xa0\xb9\xf3\x63\x42\xa3\xd3\x27\x69\x10\xd1\xe2\xe3\x10\x47\x84\x95\x47\x85\x71\xe1\xee\x52\x58\x53\xe3\x4e\x79\xbc\xdc\xf0\xab\x47\x74\x71\x18\x9e\xb5\x5e\xb1\x3e\xcf\x5a\x9f\xa0\x4b\x69\x3b\xdb\x44\xbc\x7f\x2d\x1d\x22\x3f\x2a\x4b\xe7\x07\x83\x91\x5f\x5d\x19\xe3\xf3\x83\xdd\xf5\x9f\x1f\x9c\xef\x1b\xd2\x56\x01\x47\x8e\xd8\xeb\xe0\x4c\x66\xeb\x5d\x2b\xc0\x27\x0e\xce\x64\xba\xde\x55\x34\x96\x5e\x2e\xf7\x02\x2d\x4a\x74\x01\x93\x73\xee\xce\xc1\x7d\x29\xfd\x33\xa1\x38\x17\x27\xf3\x8c\x74\xa1\xb3\x6c\x16\xd9\x3b\x6f\x28\xe9\x65\x30\x8b\xa2\xac\x56\x95\xbb\xae\x6c\x8b\xd6\x1e\x3f\x2c\x5a\x73\xfc\x30\xbc\x11\xf8\xc4\x81\xa8\xb1\xe5\xcb\xe6\x4c\x0b\x1b\xc3\x30\xad\x9d\x37\x16\xad\x25\x7e\x30\xe0\x3c\x44\xa9\xb2\x99\xd8\xc9\x1b\xaf\xdf\x08\x52\x76\x13\x1b\x92\x65\x51\xe6\xab\x84\xa1\xa7\xec\xab\x20\x2a\x3f\x2c\x34\x5b\xf4\xb2\x3b\xbf\x49\xc8\x67\x65\xf7\xda\x43\xdc\xee\x04\x27\x93\x1f\x14\x18\x8a\xff\xbb\x48\x47\x05\x06\x5c\x76\x4f\x47\x88\x5f\x65\x77\xa2\x89\x9d\x91\xfb\x9a\x88\xfb\xac\xa4\x45\x4a\xb4\x29\x15\x92\xfc\x8b\xb3\x48\x85\x2c\x35\x6e\x92\x92\x9c\x64\x63\xf2\x46\xf7\x4a\xf2\x83\xf7\x64\xb0\xec\x92\x8c\x29\x61\x25\xd3\xc2\xb0\xf3\x86\xd0\x17\x6c\x9f\xe4\xdc\x2b\x9f\x4e\xd6\xc8\x69\xe2\x11\x2c\x25\x66\x27\xb9\x4e\x01\xfb\x29\x3b\xec\x95\xf9\x93\x16\x99\x77\x36\x47\x56\xce\x99\x38\x6d\x25\x6b\x8b\xb2\xac\x59\x29\x67\x20\x23\x1b\x81\x18\x87\xaf\x28\xf6\x29\xa3\xef\x15\x55\x69\xef\xec\xa5\xbc\x08\xa7\x49\x83\x69\xf8\xc0\xe1\xc5\x10\x9e\xd7\xfe\x64\x50\x0e\x94\x66\x3b\x66\x9b\xa3\x59\x90\xec\xc4\x93\xd0\x21\x45\x35\xef\xb4\x51\xac\xa4\xec\xfc\x90\xfd\xc3\x9f\x14\xab\xa2\x30\xf6\xc8\x96\x36\x8b\xcb\x12\x44\x5c\xfb\x2c\x86\x66\x46\x60\xfb\x2c\x0b\x9a\xd9\xe8\xf0\x32\x56\x93\x36\x6e\x7b\xa6\x68\xc3\xf5\x35\xd8\x78\x75\xc5\x7b\xc7\xdc\x55\x4b\xd8\x85\x1f\x5c\x1e\x21\xd8\x52\x91\x46\x99\x33\x2b\x58\xad\x2a\x07\xe7\x2f\xd5\x6a\x11\x9b\xc2\x71\xe8\x99\x7d\xe4\x38\x74\x10\x93\x45\x55\xdb\x3f\xac\xce\x61\xe6\x44\x80\x14\xa5\x9d\xfa\xf0\x1c\xa5\x9d\x82\x9b\x16\x97\x61\x8f\xb4\xd2\xb3\x34\xcb\xfd\x99\x26\x95\x19\x27\xd3\xe5\x69\xf8\x13\x3f\x48\xd8\x05\x8b\x57\x5c\x76\x1d\x8b\x48\x71\xd9\xf5\x5a\xe8\xc4\x95\x76\xc3\x25\x5e\xba\xcb\x3a\xc7\x64\xb9\x0e\x7b\x0d\x77\x6b\x51\xda\xa9\xc8\xe4\x36\x8b\xeb\xb0\xa3\xaf\x14\xd7\x61\x8f\x8a\x35\xb3\x74\xa7\x09\x62\x2a\x5c\x98\xbd\xc2\x2a\x55\x88\x85\xa0\xa7\xe2\x42\x2c\x15\x7e\x23\xf5\xee\x03\x8b\x29\xdd\x3c\x8b\x15\x52\x6e\xa9\xf9\xe9\x43\x01\x41\x1c\x21\x97\x59\x41\x0e\x2a\x52\xcd\x32\x52\x4d\xb1\x26\x06\x82\xbd\x48\x11\x18\x35\x8c\x3f\x45\xbe\x29\xca\x1d\xcc\xe2\xe0\xf2\xc2\xa2\xae\x54\xa7\x30\xa4\xdb\xf1\xdd\x7c\xf2\xae\x28\xf8\x7f\x6b\x54\xff\xb1\xac\x7f\x23\xad\x3a\x15\x03\x59\xa8\x3a\x2d\x57\x6c\xb5\xaa\xd9\xe9\x40\xf3\x6b\x17\xbe\xb7\xf2\x81\x42\x17\x42\xb0\xa9\xdd\xae\x90\x50\x14\x6a\x37\xa6\xb0\xd0\xc2\xeb\x26\xa3\x09\xa9\xba\x38\xd5\xeb\x50\xcc\x76\x2c\x48\x1d\x0a\x11\xce\xfc\xef\x7c\x05\xc1\xaa\xeb\x10\x68\x39\x50\xd6\x75\x18\xb5\x55\xe3\xd9\xa8\x2d\xfe\x57\x9e\x9a\xd8\x12\x55\x59\x8b\xb7\x90\xbd\xab\xb2\x16\x6f\x99\xef\x85\xa0\x61\x1a\x87\x80\x75\x0c\x50\x59\x8d\xb7\x38\x2c\x75\x0a\x03\x14\xfb\xa3\x4e\x85\x5b\xc4\x81\xae\x53\x80\x9b\x60\x12\x75\xaa\x80\x40\x6c\xe2\x3a\x6d\xe2\xdf\x69\xd0\xf7\x59\x88\x3f\x75\x0a\x8d\x12\xfb\xa9\x4e\x17\x38\xda\x69\xf2\x14\x14\x82\x2e\x85\xdd\xd8\x19\x92\xb0\x1a\x9f\xf7\x5f\x3d\x47\x83\xd2\x43\x4b\x54\x89\x9e\xf5\xb0\x53\x38\x96\xf5\x70\xb2\xa1\xc2\x0f\xf2\x12\x27\x5a\x10\x8a\x99\x49\x57\xa5\x50\x70\x4f\xf5\x58\x97\x76\x2c\xeb\xb1\x88\x8c\x31\x1f\xd6\xc4\x62\xc7\x57\xfb\x45\x31\xcf\xd5\xc3\x9b\x2d\x33\xca\x5b\xee\x14\x3a\xb5\x6b\x8a\x89\x3a\xed\x89\x0a\x21\xb9\xfe\x94\xcc\x02\x28\xa5\x4a\xc7\x9c\x11\xa1\x3f\xab\x54\xc8\xfd\xa7\x20\xfe\xe1\x62\xaa\xf2\x9a\xee\x51\x6d\x7b\xd6\x73\x59\xce\x62\x9e\xe4\x14\x25\x56\xa7\x9e\xcb\xfd\xc0\x0f\xb7\x9b\x60\x48\xcb\xd7\x42\x13\xaf\xdf\x08\x22\x2e\x1b\x05\x43\xf9\xae\xd7\x32\xf9\x45\xa3\x97\x6d\x9f\x9c\xfc\x9f\x7e\x59\xb1\x9f\xd4\x6b\x8d\x93\x1f\x64\x76\x9f\xf4\xb1\x2c\x9f\xb1\x07\x2f\x1b\xd1\x59\x40\xe3\x4b\x83\x39\xd7\x7b\xe9\xef\x31\xee\x5b\x36\x9a\xe0\xff\xf5\x56\xde\x47\x78\x89\x54\xbb\xc8\xad\x3c\xeb\x8f\xa1\xd5\xa8\xf0\x3b\xab\xf5\x32\xdc\xac\xf5\xb6\xd0\x1f\x52\x44\x7d\x56\xed\xf6\xe8\x52\x8a\x19\x71\x6c\xf5\xb1\x80\x15\x63\x7c\x1c\x0b\xc9\x8e\x51\x9a\xaf\xbc\x33\xb7\xf2\x2d\xe6\x9d\x15\x7d\x16\x4b\x8c\x4f\xac\x34\x81\x12\x6d\xbb\xb1\x5f\x33\x9e\x9d\xe8\xfe\xf3\xc3\xf3\xdf\xff\x5a\x64\x8d\x98\xed\x27\xf3\x92\x8a\x66\x36\x47\xfa\xc4\x5a\xb4\x94\xf4\x7f\x8d\xe7\xac\x67\xbe\x77\x84\x69\x8b\x67\x95\xd6\x19\xbc\x2f\xe1\x76\xe7\x7d\x23\x89\x63\x3c\xbf\x7b\xa1\x21\x60\x34\x85\xf0\xc0\x6e\x5a\x52\xc4\x69\x30\xc0\x96\x1d\x71\x1a\xe3\x5b\x72\x6c\x7c\xaf\x00\x1e\x4e\x72\x5b\x21\xfd\xb1\x35\x9a\x7c\x1d\x0d\xd3\x64\xfb\x89\xa5\xad\x87\x22\xd1\x7e\x52\x69\xeb\xcc\x80\xa4\x52\x5c\xad\xed\x27\x94\xb6\x1e\xb2\x77\xcb\x4a\x65\x52\xf8\x5f\x69\x49\xe3\x2a\x6c\xf6\x94\x84\x40\xda\xe4\x28\x69\x80\x9d\x9b\x04\x52\xd0\x0d\xad\x28\xe4\x34\x4e\x54\xb3\x9b\x24\x8e\x43\x93\xc4\x39\xd2\xa7\xc5\xe3\xbf\xff\xf5\xfd\xd3\x80\x42\x48\x27\x0d\x28\x84\x94\x11\x55\x65\xfe\x88\x4b\xa8\x55\x05\x15\x42\x61\x15\x1a\x9b\x0e\xab\xd0\xd8\xf4\xb7\xa2\xe8\xe3\x88\xb7\x2a\xb4\x35\x23\xfe\x09\x96\xa9\x32\x25\x55\x21\x9c\x89\xf7\x85\xae\x66\x0a\x7f\x62\x66\x8a\x8c\x8b\xb3\x55\x85\x74\x86\xdd\xa4\x35\x85\x70\xb2\x44\x4d\xa9\x4a\x58\x22\x79\x00\x06\xa0\xce\xa6\xd0\x18\x4c\x99\xad\x29\x33\x47\xa5\xc1\xeb\xf7\x7f\xb0\xe2\xd6\x94\xa2\x2f\x9c\x48\xad\x29\x0c\x33\x24\xf6\xa6\x0a\xe8\xa0\xa1\x5a\x17\x98\xba\xf2\xac\x6b\x96\x15\xe8\x46\x83\x47\x7b\x5d\x89\x3a\x32\xed\x09\x3f\x1d\x06\x94\xd6\x15\x36\x0a\xc1\x92\xfb\x4a\xdd\xf8\x41\x68\xef\xca\x07\x02\x0b\xb3\x24\xfd\x91\x1c\x10\x03\x1a\x92\x0b\x98\xe1\xe1\x4d\x17\x1c\xb3\x09\x44\xb6\xb1\x44\x43\x82\x00\x7b\x66\x18\x0b\xfc\x97\x4a\x7a\xb3\xb9\x16\x03\x87\x78\x49\x39\x8c\xc6\xa3\x65\x34\x96\x6a\x18\x8c\xac\x98\xa0\x23\x9b\x8a\x33\x10\x23\xdc\x24\x96\x94\x1a\xcc\xb5\xfd\xc4\x92\x49\x50\x70\x5b\x52\x49\xf4\xa0\xe2\x0c\xe0\x80\xdb\x14\x70\x8f\x05\x31\x84\xeb\xd3\xa1\xe1\x12\x21\x43\xb4\x85\xd8\x0a\xa1\xa1\x19\xb1\x85\xc3\xa7\xc9\xfa\x5d\x22\x45\xe7\x6c\x46\x6c\xe1\x16\x6c\xb2\x7e\xf7\xfd\xf3\xc9\xf4\xed\x19\xdd\x2a\x0b\x28\xfe\xb2\x76\xd8\x59\x03\xb7\x3a\xec\x95\x8b\x8b\xab\x9d\xbe\x6f\xe1\xf8\x8a\x7a\xc1\xaa\xdc\x5c\x57\x01\x5c\x5e\x53\x18\x4c\x14\xc3\x9f\xed\x94\x15\x93\xef\x7d\xd9\xc6\x90\x84\xad\x6a\x9f\xf6\x7c\x96\x63\xe6\x4e\x9f\xe5\x98\x79\x9b\xa4\x49\x8b\xd3\x5c\x48\x81\x0e\x54\xe3\x09\x31\xbd\xb9\xc6\x13\x1d\x5e\x82\xa9\x73\x98\x2f\xef\x4c\xfe\xf7\xce\x8c\xbd\xa0\x1a\x4f\x08\x2d\xed\x27\x2d\xcc\x0d\xe6\xa3\xb2\x09\xe8\x8f\xed\xf2\x52\xf3\xbd\xb0\xc3\x99\xf6\x25\x8f\x32\x5f\xc2\x3a\x01\x70\x6b\x0b\xeb\xc4\x07\x32\x14\xef\x51\x2e\x6e\x36\x09\x13\xc4\x50\xb7\xdb\x02\x0e\xff\x77\x2f\x09\x2f\xd8\xc7\xc1\xf6\xbc\x95\xfb\x8e\xe3\x6d\x43\xf1\x67\x3b\xde\xaa\xdf\x0b\x83\x92\x7c\x82\xdd\xb8\xdd\xf6\x74\xb1\xa1\x6f\xb9\x3c\xe0\x78\x96\x57\x10\x8a\xdb\xe3\xe4\x78\xcc\x9b\xe4\x13\x52\xd7\xb4\x47\x7e\x82\x90\xdb\x9b\xa5\x11\x74\x85\x26\x69\x04\x28\x54\x73\x84\x0a\xf3\xa4\xf2\x07\xe8\x32\x4d\xe5\x0c\x2a\xd3\xf4\x9a\x47\xc5\x10\x55\xce\x60\x63\xa7\xbd\x49\xef\xc7\x1c\x48\xd8\x29\x83\xc3\xf1\x56\xad\x5c\x8c\xf8\xa7\x74\x66\x40\xd9\xed\x15\x08\x3b\x9c\x4f\xed\x1d\x7a\x9f\xff\x85\x42\x87\x07\xbe\x87\xfe\x67\x80\xda\x49\x5c\x3b\x8a\x49\x21\x06\xa8\xb9\xfa\x01\x73\xda\x55\xec\x1b\x0c\x61\xdf\x16\xcf\x98\xf1\x43\x76\xf6\x9c\x3d\x7e\x28\xd2\x01\x5a\x3c\x1b\xa3\x12\xbb\xb7\x6f\x06\x8b\x85\x0a\xda\xb7\xa9\x2f\x68\xf2\xf4\x6e\xe4\x85\x5b\xbb\xb1\xc6\xf3\xa3\xe7\x14\xcf\xaf\x9e\xa3\x07\x19\x70\xf7\x1a\x92\x6c\xdf\x77\xbd\x90\xe3\x39\xb9\x87\xe8\x52\x25\x9b\x88\xd9\xef\x7b\xd3\x73\x4c\x83\x0b\x71\x47\xd9\xb8\x1f\x9f\xf6\x0f\xf4\xe9\xfb\x0d\x32\x77\x39\xe4\xe3\x90\x77\x03\x86\x66\x6d\x7f\xb9\x7f\xfa\x2e\x0f\xf6\x64\x80\xf6\xef\xc5\x5e\xee\x69\x71\xcd\xa0\x49\x62\x6e\xc3\xfb\xd9\x93\x1d\x7c\xc1\x26\x7a\x5a\x7c\x94\x37\xac\x42\x44\x27\x2e\xd3\x0d\xa3\xe8\x2e\xd3\x1d\xf5\x3f\x66\x4f\xf2\x0f\x85\x2c\xda\x6d\x0a\x8e\x0a\x2c\xb3\x27\xbb\x27\x82\xd7\xf5\x9f\xb4\x5c\x23\xb7\xe0\xec\x59\xa5\x7d\xe3\x1e\xec\x92\x76\x0b\xc9\x2f\xfa\xb2\xda\x46\x17\xc2\xfe\x7c\x42\x96\x7b\x5e\x3a\x04\x6f\xf8\x2a\x65\x93\x66\x4b\xe8\x2c\xa7\x4d\xa8\x91\xfc\x73\x76\x49\xb0\x1f\xab\x46\x77\xf2\x4f\x64\xe8\x5e\x5c\xf5\x36\x86\x25\x93\xea\xc7\xce\xd1\x65\x35\xe5\x28\x76\x1b\x49\x31\x64\x74\x1b\x49\xb1\x5c\x74\xc5\xaf\x7f\x8e\x8e\xe3\xd7\x2b\x4b\xa8\xfc\xa0\x13\xf0\x78\x57\x7e\xd0\x8c\xdb\xb0\x2b\x24\xbd\xe3\xc0\xeb\xd5\x92\x76\x0c\x5b\x36\xd3\x81\xef\xa2\x57\x73\x90\x98\x7f\xd9\x50\x4b\x65\xdc\xd5\x40\xf9\x44\x93\x46\xe8\x7e\xde\xb8\xed\x91\x8d\x61\xc9\x86\x0a\xfe\xb9\x0b\x57\x53\x90\x7e\xbb\x72\x44\x11\x3b\xd2\x95\xca\x93\xf4\x00\xbd\xd9\x28\xc5\xb3\x8e\xdb\xe7\x7d\xcd\x14\xc7\xef\x27\x0d\xa7\x2d\xa4\xb1\xde\x64\x37\x0b\xe4\x62\x57\x58\xc6\xc6\x2e\x6c\xab\x08\x22\x03\x92\x30\x19\x22\x46\x57\xa4\xc5\xc6\xbe\x96\xb1\x74\xec\x7c\xe0\xd0\x0b\x76\x65\x57\x64\x09\x93\x24\xf1\x17\x1b\x41\xef\x9e\xe6\xa0\xc8\x71\x16\x9f\xb3\xd6\x1d\x5c\x10\xc6\x93\xee\x40\x8b\xcc\x90\x56\xd4\x16\x4d\x2c\x01\x8e\x31\x98\x39\xb3\xf8\x8e\x2b\xff\x70\xe7\x61\x11\x2f\x24\x93\xbe\x22\x2d\xe8\x65\x18\x94\xcf\x11\x77\xe8\x79\x0e\x39\xb3\x3b\xd4\x82\x71\x0a\xc5\xd2\xa2\x6e\xf9\xec\x8e\xac\xe0\x52\xea\x42\xb1\x14\x6c\xd3\x7d\xac\x1d\x44\xaf\xa7\xf6\x03\x6d\xca\xb2\xb4\xf3\xbf\x2d\x4b\x85\x17\x5e\xbd\x10\x5d\xb8\xb8\x6b\xfd\xfc\xd0\xfd\x43\x7c\x21\xc4\x09\x89\x0e\xba\x43\xd1\xeb\xe7\x07\x43\xa8\x42\x7e\xe8\xd3\x81\xce\xf0\x80\x69\x51\x35\x74\xa4\xbe\x62\xd1\xd9\x67\xd3\xb2\x6b\xa3\xd1\xb5\xf3\x63\x3a\x8f\x1f\x7b\x03\x8d\xd3\x17\xe2\x04\x1e\x7b\x98\x2b\x87\x4c\xd1\x15\x8b\x0e\xc6\xb6\x2f\xc4\x09\x6b\x68\xc4\xc9\x87\x35\x1d\xb2\xec\x30\x88\x85\x2f\x61\xc9\x16\x9c\x84\x8d\xe2\x54\xfc\x9f\x45\x76\xfd\xb3\xcf\xce\x51\xd2\xd9\xd2\xd2\x9f\x2e\x27\xd7\x46\xfb\xec\xaa\xd3\x4c\x9c\xf3\x74\xda\xa0\xc9\xf5\x68\x19\xbe\x71\x02\x85\x2e\x69\xe4\xfd\xe9\xe7\xba\x6b\x62\x8c\x46\x97\x44\x71\xab\xd9\x8d\x2e\xe9\x70\x71\x09\xf6\x09\x90\x56\x17\xdc\xa4\x91\x5a\xaa\x9f\xae\x41\xc0\xf5\x23\xd9\x7e\xf4\xf0\xda\x77\xd9\x03\x4b\xfd\x0c\xec\xf5\xe5\x11\x43\xbf\x6c\xbd\x65\x1c\x8a\x66\x1f\xcc\xff\xb5\x88\x8d\x9d\x25\x3c\xca\x60\x49\x65\x1e\xfc\x1c\x87\x6b\xdd\x0c\x31\x2a\x85\x4d\x7c\x6c\x52\xfd\x9a\xf2\xab\xf0\x82\x52\x99\x0c\x7a\xb8\x24\x48\x06\xe1\x0e\x91\xf8\xec\x11\x87\x48\x7c\xb6\xd9\x0a\x91\x80\x63\x39\x44\xe2\x73\x33\x08\x4f\x52\x3e\xd7\xd1\x4f\x4d\xa8\x58\x8c\xbb\xb5\x04\x5c\x4c\xfd\xb6\x1d\xb4\xf1\x85\xb1\x50\x5c\x1d\x4b\x4f\xe0\x1a\x5d\x7a\x02\x73\x61\x44\x09\x49\x54\xfa\xb2\x53\x06\x25\xcf\x9a\xfe\xe8\xf5\x59\x7e\xde\x68\xd3\x66\x47\xd2\xda\xf5\x7f\x72\x7d\xd0\x2a\x40\x48\x07\x02\xd7\x9d\x49\x36\xd4\xf9\xfe\xac\x5d\x10\x2f\xbc\x4b\x84\x8c\x5e\x5d\xa5\x75\xb2\xf9\x14\x4b\x40\xad\x89\xd9\x5f\xa5\x2d\x0b\x03\x46\x7f\xed\x59\x67\x1b\xbc\x0a\xe4\xe2\x10\x0a\xdb\xb1\x57\xa4\xa9\x57\x3a\x13\xd3\x69\x68\x07\xee\xfc\xae\xa2\xac\x64\x94\xe8\xaf\x52\x41\x87\xbe\x32\x04\xd3\xc8\x39\xc6\x30\x94\x30\x16\xf7\xf3\x50\x2e\xaa\x1c\x3d\x0c\xe7\x9a\x8a\xad\x3d\x7e\xb2\x79\x46\x9b\x1f\x4a\xea\x8f\xae\x3e\x36\x25\x64\xf9\xbc\x2f\x4f\x47\xdc\x26\xc3\xb9\xa2\xe2\x30\x8d\x9f\x5c\x9d\xb1\xd7\x0f\xc1\x22\x46\x0f\xb3\xd6\x10\x2c\xa2\xa7\xe0\xe3\xc3\x05\xc1\xd8\x31\xc3\xd9\xa0\x3e\x7d\x2a\x0d\x3f\xe8\x95\xe1\x64\x50\x98\xe7\xc7\xbe\x6e\x13\xde\xb0\x31\x26\xf8\xf8\x70\x36\xa8\xcf\x38\x05\xc5\xc7\x83\x33\x24\x2a\x57\x40\x94\x43\xa2\x32\x91\xea\xc3\xa9\x9f\x70\x01\x8c\xe4\x98\x98\x38\x3d\x23\xf9\x9a\x64\xee\x92\x63\x62\x98\x8c\xe4\x5b\xb1\xc6\xb3\xd4\x1c\x08\x4b\xce\xd0\x52\x18\xb6\x5d\x15\x71\x36\x86\x84\x69\x32\x02\x0c\xa7\xe6\xaf\x0c\x33\xdb\xa2\x13\xbb\x76\x48\x9a\x2e\x35\xce\xf0\x30\x92\x9e\x9c\xc2\x23\x77\xb5\xc9\x17\xbe\x58\x83\x2e\x25\x83\xda\x3e\x63\x38\xf5\x1c\x0d\x96\x75\x50\xa2\x41\xa7\xcd\x8f\x04\xe7\x73\x94\xc5\x47\xa2\x09\x17\xe7\x9a\xec\x8a\x9f\x2c\x5d\x41\x76\x0e\x89\xd2\xf5\xc7\xb5\xff\x70\x3d\x0d\x01\xe8\xf7\xce\x72\x2f\x00\x7d\x1c\xd5\x51\x2c\x0b\x84\xcf\x60\x14\x6b\x6f\x9f\x41\xcb\x1a\xf1\x79\xf6\xfd\x08\x95\x32\x46\x7c\x48\x50\x79\x2b\xe6\xb9\xfa\x56\x8f\x0e\x64\x60\x9e\x5b\x70\xb1\xe1\x2a\x5c\x51\x9f\x63\x8e\x2a\x48\x5a\xe2\xd9\x9a\x54\xa5\x09\x1d\xfe\xd0\xe5\x87\x8b\x70\x45\x45\x8e\x39\x5c\x84\x0b\x6c\xcf\xa8\xca\x1c\xbf\xf3\x6c\x0f\x0f\x7d\xb8\x08\x17\x58\xcb\xd1\x96\xc3\x26\x3e\x11\x98\xbd\x87\xa8\x3f\x9a\x75\x2d\x08\x6f\x5d\x2f\xf0\x3c\x9c\x10\x81\x1f\xa6\xb9\x33\x4d\xb8\xa0\xd1\xa7\x89\x53\xd7\x65\x2c\x97\xd0\x10\x2d\x6a\xf4\xcc\xd1\x9c\x23\x34\x26\xd7\x50\x07\xce\x45\x77\x7a\x19\xfe\x77\x65\x56\x26\xbb\x2f\x84\x40\xb4\xa8\x1a\xf9\x20\x7d\xc6\xa1\x34\x10\x1c\xde\x43\x1e\xde\xcc\xff\xaf\x58\x77\x6c\x07\x39\x3a\xb9\x6e\xc7\x69\xb3\x08\x3d\x2a\x44\x14\x57\xd9\xb0\xb8\x93\x42\x68\x1e\xa7\xb7\x38\xcf\xd6\xcb\x42\x04\x18\xe7\xba\x29\xe9\xd3\x50\x0a\x76\x8c\x32\xf7\x10\x16\x35\x2c\xec\x34\xb8\xfb\xa9\xab\x34\xac\x3b\xe3\xf4\x06\x61\xa6\x4f\xa3\x1c\xd9\xd6\xa7\x51\xa8\x21\xdb\x8c\xcb\x58\x23\x58\x8c\x9c\xa1\x35\x85\x85\x68\x5c\xce\x49\x14\xa3\x58\x89\x79\x76\x9a\x58\x94\xc5\x5c\x5c\x8e\x01\x88\xdb\x78\xb8\xa2\x12\x59\x39\x86\xd0\xb7\xa5\x76\x3a\x39\xbd\x67\xe8\xe5\xb2\x66\xcc\x0f\x8f\x97\x38\xb6\x99\x6a\x18\x81\x49\x1b\x02\x74\xd4\x0c\x1b\xba\xd7\x17\xd1\x84\xaa\x16\x81\xc4\x1a\x8f\x8d\x04\xcc\xdf\x63\x31\x77\xf0\x83\x12\xc2\x71\x09\x38\xb7\x66\x48\xd5\x43\x55\x8d\x88\x2e\x1c\x8f\x4f\x4f\x98\x04\x86\x52\xe4\x60\x77\x1d\x32\x38\x62\xb8\x1a\x32\x38\x62\x09\x1b\xaa\xb7\xfa\xe1\x22\x8e\x9a\x24\x65\xc2\x50\xce\x1c\xd4\xa2\xb1\x2c\x94\x41\xe3\xeb\xd8\x66\xb6\x80\x4d\x92\xac\xd6\x2b\xc5\x96\x1e\x5e\x5f\xd0\x1c\x8d\x57\x79\x21\x32\xcf\x53\xcf\x7c\x60\xe5\x2f\x44\xa9\xf1\x5a\x66\xf8\xf7\xc1\x74\x41\x55\xa4\x9a\x69\x9b\x22\x32\xe1\xdc\x84\x7e\x08\x11\x60\x6e\x56\x49\x67\x3c\x3b\x2a\xbc\xd0\xe4\xba\x6b\x6b\xfc\x20\x67\xc9\xa7\xc5\x43\xc7\x91\x16\xa5\x7c\x87\x9c\x3a\xb7\x95\x47\x2f\xba\xd8\x7d\xb3\xf2\xec\x50\xd2\x60\xb6\x53\xf5\x88\x7a\xfa\x4b\x2d\xf2\x39\x77\x73\x03\x5a\xb3\x5f\x25\x78\xfb\x74\x5d\x54\x14\xcb\xa9\xa4\x99\x18\x6e\xe7\xbe\x0e\x7f\x89\x1f\xe4\x67\x49\x3c\xeb\x1a\x8e\xbd\x3a\x77\x27\x80\x0b\x51\x70\xca\xa2\xb8\x7d\x5a\xb4\x30\x11\x97\xc1\x4c\x32\x92\x86\x09\x64\xa6\xa5\x73\xc7\xa8\xd3\xba\xa6\xa3\x0f\x47\x17\x56\xda\x54\x74\xe1\xf6\x69\xd2\x4a\x38\xa3\x72\x74\x21\x49\xaf\xa7\x83\x07\x49\x3e\x39\x85\xfb\x24\x3a\x74\x5a\xe6\x21\x0b\xf6\x74\x09\x53\xc2\x28\x67\xb6\xc0\x11\x56\xfc\x69\x29\x88\xbc\xd8\x33\x2f\x09\xa4\xc5\x0f\x55\xcc\x37\x26\x2f\x1b\x7a\x1b\x37\xc8\xcc\x8e\xc8\x62\xb9\xb3\x6d\x1c\x83\x26\x96\x6c\x1e\x03\xcf\x36\x27\x7c\x7a\xb5\x8e\x5d\x18\xb9\x64\x08\xa6\xcf\x6e\x74\x12\x25\x4f\x27\xc9\x04\x2c\x37\x0d\xec\x2c\x1b\x3f\x58\x8d\x6e\xfc\xa0\x52\x2d\x2c\x5a\x59\x62\x45\x8c\xb3\xd8\x42\x0b\x69\x2a\x4a\x04\x9c\x6e\x16\x57\x01\xd9\x69\xc2\x3a\x73\xa2\x0f\x63\x56\x13\x6d\x3a\xde\x8a\x35\x29\xc6\x92\xd0\x68\xb5\x60\xc1\xb8\xaa\xa0\x23\xec\x94\x2a\x2b\x2f\x3b\xc5\x65\x8b\x08\x59\x9c\xd5\x95\x12\x3b\x6f\x54\x49\x09\xb4\xb8\xee\x19\xfa\xb4\x24\x12\x0b\x22\xc3\x66\xde\x21\xcc\x12\x15\xd1\x7e\xd3\x65\x8c\xc8\x7f\x3e\xab\xb0\x88\xa1\xfe\xcc\x6a\x88\x1f\xb3\x29\x89\x6a\x7e\x9e\x17\x0a\x33\x9a\x54\x00\x61\x26\xb2\x60\x36\x1b\x07\x58\x31\x05\x10\x76\x72\xd1\xcf\xa9\xaa\x28\x61\xf0\x9e\x53\x89\xc6\x58\xb0\x69\xdf\x43\xdc\x3a\x73\xca\x1a\x1a\x5a\xdf\x94\x21\x6b\xec\xcc\xbe\xcb\xf4\x93\x9b\x6c\xae\x74\x1e\x85\x37\x1e\x1f\xcc\x98\x9b\x65\xa7\x8a\x8b\x64\x1e\x3e\x33\x83\x37\x8a\xd3\x8a\x47\xa3\x87\x00\x47\x9d\x2f\x04\x8e\xe6\xac\x1f\xce\x60\xf1\x69\xc1\xd6\xec\xb8\x6b\xa6\x2b\x42\x72\x84\x0e\x5f\x5e\xb4\xf8\xe8\x99\x06\xa4\x6d\x32\x82\x53\xf9\x72\x42\x0a\x9b\xa7\x72\x20\xc1\x55\x4f\x19\x71\x43\x6a\x9b\xa7\xb4\x51\x0e\xf5\xe9\xbb\x2e\xfa\x3f\xe5\x7d\xe3\xde\x91\x08\x56\x3e\xa7\xed\x74\xb6\x11\x0e\xe8\x69\x33\x2f\x24\x9c\x36\xf3\x72\xe8\x4f\x8b\x1d\x21\x55\xcc\xd3\x6b\x11\xba\xe7\x54\x16\x8e\xcf\x75\xe8\x2c\x1c\x64\x9a\x9b\x97\x6d\xb6\x21\x09\x4e\xc5\x37\xd5\xcf\x44\x08\x90\x36\x72\x88\x47\xf3\xf2\x0d\x59\xff\x64\xcf\x9b\x2b\x49\x47\x88\xe8\xf3\xb2\xce\xcd\xc1\x58\x39\x39\x60\xcb\x2b\x27\x07\xc7\x71\xe5\xe4\x60\xae\x96\xc1\x89\x1b\xeb\x96\x53\x80\x2d\x77\x4b\xe7\x86\xab\x38\x23\x07\x1c\xe0\xae\x7a\x8e\x06\x6f\xab\xdc\x10\xb9\xf2\x6f\xc0\x50\x57\xfe\x0d\x78\xc6\x2d\xcf\x62\xe2\x0b\xdb\x07\x59\x8c\x5b\x2a\x38\x1c\xe1\x36\x9d\x8d\x26\x65\xa9\x66\x53\xdf\x32\x4c\x73\xd4\x2c\x23\xe2\xd4\x99\x96\x11\x13\x9b\x56\x4e\x68\x80\x31\x53\xd6\xaa\x9d\x84\xec\xf3\xf1\x3d\x0b\xa1\x8f\x55\xf2\xcf\x27\x42\x27\xa5\x50\x80\xe6\xe3\x8b\x37\xf4\x93\xf9\xf8\xa2\x0d\x8b\xec\x7c\x0e\xff\x10\x53\x21\x49\x71\xaf\x90\xfa\xc8\xda\xf0\x79\x5e\x2c\x21\x48\x5b\x26\x30\x16\xe4\xb5\x80\x10\xe3\x7c\xad\xc7\x0f\x7e\xb0\xc5\x2b\xcc\x4d\xf3\x75\x3c\xf0\xe7\x07\x03\x23\x07\x6d\x9a\xb9\x21\xa6\x38\xbf\x06\x69\x2a\xa6\xf3\x6b\x90\x16\x61\x3a\xbf\x06\x49\x0e\xe6\x6b\xbb\x3d\x1c\x54\x66\x31\x82\x4d\x8f\x6d\xd7\x73\x8d\x67\x0b\x08\x83\x1f\xcc\xec\x26\x5f\xd8\x08\x1f\x62\xf0\xb1\xd9\x08\x1f\xbc\xe3\x70\x38\x13\x80\xa9\xc3\xe1\x4c\x58\x81\x0f\x47\x2f\x81\xd3\x3b\x1c\xbd\x04\xe4\xe9\x70\xf4\x12\xac\xe0\xd8\x2c\xce\x4f\x3e\x31\x08\x22\x84\xe7\x63\xb3\x78\xc4\xc8\x0d\x82\x08\x66\x71\xec\x36\x97\xc6\x16\x3f\x1c\xbc\x84\x9b\xe3\x70\x68\x12\xa9\xe1\x0e\x87\x26\x81\x9f\x3f\xe4\xfd\x26\xc4\xec\xd8\x2d\x32\xc4\xb8\x77\x07\xfd\x75\x3a\xb5\xe6\xc9\xb0\x76\xdb\x26\x06\x4d\x5a\xf5\x0c\x06\x72\xec\x56\x3d\x07\x6d\xc8\x48\x87\x25\xf0\x70\xec\x12\x4a\xfb\x91\xec\xa3\x8d\xcd\x73\xd8\xc3\x8d\x59\xf7\xb0\x87\x1b\x95\xee\x48\xa6\x35\x2e\xa9\x23\x2d\x5a\xe9\xc5\xc8\x3f\x96\x2d\x59\x82\xea\xfc\x60\xb1\x21\xb8\xed\x91\x1c\x85\x16\x2a\xd0\xe1\xe8\xa6\xc4\xb3\x05\xa6\x4c\x27\xb7\x7f\xa0\x4d\x0b\x4c\x99\x91\xdb\x44\x19\xe7\xe0\xb0\x9f\x3c\x4e\xe3\x91\x1d\x83\x16\x27\xfc\x90\x94\x9b\x88\x0d\x38\x64\xda\x4b\xe0\xb7\x0f\xc7\x37\xb1\x6c\xd9\x11\x78\x99\x36\x25\x31\xb1\xce\x92\x7a\x13\x50\x8d\x23\x2f\xc5\x9c\x37\xec\x59\x4f\x8c\xc2\x86\xb3\x50\xb3\x8f\xec\xb8\x09\x36\x93\x03\x9c\xf6\x9d\x61\xfc\xb6\xf0\xd8\xf8\xc2\x0e\x97\xf4\xa7\xbb\xea\x28\xaa\x0f\x13\xa6\xc1\xa3\xd8\x1b\x10\x92\xe4\x51\x0c\x97\x0d\xb5\xe5\x28\xf2\xc6\x84\x1b\xe3\x28\xb6\x71\x85\x32\x78\x48\x86\x1e\x1b\x2d\x2c\xc9\x32\xa6\x41\x32\x74\x26\x3b\xc0\x61\xcf\x3d\x89\x0f\x8e\x62\x9b\x16\x9b\x66\x05\x44\x71\x22\x64\x40\x24\x9d\xec\x21\x91\x39\x93\x54\xff\x58\x01\x52\x6c\xe6\x15\x20\xc5\x19\xaa\x2e\x80\xc9\x91\x59\x22\x71\xac\xa7\x45\x62\x62\x56\x0e\x89\xc4\x00\xb8\x8f\x6a\xcb\x4b\x70\xca\x43\x22\x71\xce\x30\x9c\x6a\x71\x65\xd0\xa6\x73\x3b\x0f\x86\x25\x63\x5c\xe8\xde\x87\xeb\x76\x62\x82\x38\x9a\x90\x13\x50\xde\x6c\x31\x0a\x25\xe6\xb0\x91\x11\xfc\xde\x21\x23\x23\xea\xd9\xd1\x56\xad\xf1\x98\x4d\xdb\x10\x09\xa7\x3e\x1c\x51\x05\xa1\x8e\xa8\x22\xe2\xfb\x90\x0d\xb1\x63\x97\x3c\x86\xd3\x1d\x87\x25\xf3\x90\x09\x10\x97\xe5\x71\x28\xc8\xa3\xf0\x2c\x68\x54\x5c\xec\xc7\x69\xdf\x3a\xac\x58\x36\xbf\x9e\xd8\x8a\xa7\x61\x75\x30\x9b\xd3\x37\x3b\x9c\xc3\xe9\xb9\x89\xf9\x3c\x94\x06\x0e\x83\xd1\x71\x5a\x81\x8e\x41\x9e\xeb\x5e\xa7\xd3\xc3\x76\x44\xfa\x30\x58\x0a\xca\x65\xf4\x03\xd8\x7b\x48\xde\xac\x3d\x04\xb3\xc3\x11\x10\x04\x4d\x1c\x2b\x02\x02\xbe\xe0\x88\x7b\x2c\x8d\x87\x3c\x9e\xe4\x3a\x3a\x56\x04\x7e\x88\xf6\xc7\x65\xd6\x12\x06\x97\xc3\x01\xf6\xc8\x45\xc7\x2a\x92\xce\xfc\x5e\xe6\x0b\x70\xcd\x9f\xc0\x58\x47\x28\xe5\xc7\xbd\xf6\x7f\xcc\xaf\x02\xe0\x49\xde\x70\xfc\x04\xc6\x3a\x42\x19\x3b\xee\xe5\xf6\x0b\xc2\x84\x5a\x44\x24\x3d\x24\x30\x36\x30\x59\x87\x73\x6a\x73\xff\xde\x56\xd9\x1b\x3f\x08\xb6\x0d\xd3\xb5\x33\x92\x54\x03\xc7\x23\x95\x83\x99\x7a\xec\x15\x84\xdb\x3c\x16\xde\x91\x24\x1e\x79\x01\x43\x37\x3b\x9e\x25\xaa\xf3\xc3\x12\xbe\x83\xae\x67\x09\xdf\xbc\x21\xd1\x8d\x51\xad\x3c\x67\xb0\xa3\xd7\xe6\x68\xd8\xd1\xbb\xb6\x66\x4c\x85\x91\x87\x0d\x2e\x6c\x51\x0d\xfc\xda\x61\x51\x0d\xa0\xd0\xf1\xae\xbd\x48\x2f\x4b\xc6\xa4\x17\xd9\xa0\xd8\xcd\x0e\x3c\x07\x46\x7a\xbc\xb6\xf6\x4c\x9a\x58\x7b\x91\x26\x14\x6a\xb0\xc7\x92\x9c\x0a\x34\x4f\x00\x8a\x4f\x09\x6f\x6d\x0f\x6d\xe8\x54\xe4\x39\xc1\x94\xe7\x26\x78\x44\xd0\x7e\x6e\x36\xa4\x87\x4c\x7f\x6e\x2e\xb3\xd1\x68\xd2\xf2\x4c\xc8\x83\xa7\x05\x33\x12\x10\x9f\xdb\x92\x67\xfe\x54\x72\xe9\x14\x5e\x11\x6e\x75\x6e\x4b\xd6\x61\xc8\x4e\xcd\x18\xcc\xff\x74\xc8\x39\x2e\x8d\x73\x85\x9c\xc7\x39\x3f\x1d\x72\x0e\xdf\x3d\xf7\xb5\x82\x31\xe8\xdd\xb8\xb8\xc4\x27\xbe\xc7\x18\xc7\xee\x6b\x6b\xd0\xc6\xa1\x13\x14\x2f\x24\xb1\x6e\x3a\x4d\x0a\x7d\x0d\xbd\xf0\x4c\x8b\x73\x47\x9f\x49\xd5\xd7\x42\xc4\x3d\x93\xf9\x59\x74\x60\x83\x60\xe6\x7f\xcb\xc4\x8d\x06\xac\x91\x55\xbe\xb0\x4d\x86\xa9\x77\xc5\x72\x30\x70\xa7\xe3\x69\x48\x21\x74\x26\x1f\xd2\xe8\x24\x8b\x4f\x4c\x9e\x65\xa5\xa7\x0b\x9b\x03\x09\xbe\x38\xf3\x9a\xca\x19\x3f\x58\xda\x0f\xd6\x72\x66\x0b\x85\x21\x7a\x9e\xd9\x7b\x28\xf1\xc3\x92\x8c\xf8\x61\x11\x12\xc3\xcc\xb2\x76\x04\x23\x38\x8b\x79\x49\x68\x8a\x67\xf1\x21\x8d\x0b\xff\x2c\x82\xd2\xc6\xf5\x71\x16\x69\xc4\x99\x16\xac\x11\x87\x40\x70\xda\xd8\x07\x32\xf6\x2c\x56\x39\x58\x61\x1b\xf7\xb0\x14\x9c\x65\xb1\xbc\x18\xb7\x3d\x9d\x9f\x41\x48\xe3\xf8\xf4\x21\x4f\x67\xf0\x9a\xb3\x2e\x32\xa2\x4f\x99\xfa\x06\xeb\x65\xb1\x65\x4f\x7c\xa1\x78\x73\x36\xae\xe3\xbc\xc9\x44\x75\x5a\x8e\x21\xb5\xd7\x29\xdf\x28\xd8\x95\xd3\x62\x0b\xe1\x16\xa7\x72\x4f\x6f\xac\x68\xf5\x65\xce\xb3\xa1\x73\x1c\xf9\x66\x0b\xfc\xe4\x87\x35\x97\xd1\x87\xab\x52\x62\x76\x3b\x9b\xad\x0b\xa1\x99\x9e\x8e\xd1\xc9\xa1\xd3\x9c\xcd\x8c\x3a\xc4\x92\xb3\xc9\x5a\x10\x3c\xf5\x74\x95\x49\xd4\xdf\xb3\x9b\x73\xb3\xdb\xbb\xc7\xc5\x11\xed\xf6\x0c\x30\x39\x7d\x0d\x34\x26\xa7\xfb\xcc\xf1\x6c\xb6\xcc\xa1\x74\x02\x2d\x02\x1e\x4e\x27\xd0\x22\xba\xe9\xec\x8e\x92\x64\x6f\xba\x72\x24\xf1\x4b\xa7\xb0\x87\xb5\x84\x54\x7d\x0e\x5b\x07\xe0\x58\xc2\x1e\xf6\x1c\x9a\xc0\x39\x0c\x46\x08\x53\xd8\x29\xec\x61\x23\x3b\xd8\xe9\x72\x92\xe0\x46\x4f\xa5\xd0\x4a\xa0\xf8\xce\xb1\x2e\xa1\x18\xd8\x30\x66\x26\x6e\xcb\x53\x49\x9b\x1b\xbe\xc3\x53\x19\xb2\xfa\xfc\xbc\xf1\x78\x83\x06\xf9\x12\x05\x1b\xc0\xa6\x73\x9a\x16\x2e\x9d\x29\x4b\x07\x6c\x6c\x9a\x94\x10\x16\xcf\xb9\x58\x48\x4c\xc7\x34\x29\x30\x99\x69\x59\x83\x2d\x28\xfc\x61\x02\x84\x7e\x3a\xe5\x15\xa0\xf3\x53\x56\xda\x96\xc2\xfe\x79\x3a\xc3\x15\xc0\xf7\x73\x7a\x15\xc2\x1c\x75\x2a\xb2\x38\x81\xce\x38\x8f\x75\x5d\xfe\x29\xca\xe9\x34\x18\x11\x00\xc9\x69\xf0\x21\x48\xdc\xd3\xe0\x43\x0a\x4a\x9d\x4e\x77\x05\x1c\xfb\x3c\x16\xcf\x89\x51\x2b\x02\x28\x7f\xbe\x38\xf5\x1c\xdb\x40\x50\xc3\xfc\xe9\xe2\xd1\xff\x34\xf8\x7a\x0c\xd1\xa0\x02\x84\xda\xa7\x05\x27\xa2\xca\x21\x10\x9d\xc6\x0e\xe2\x90\x38\x97\xf3\x3c\x64\xa8\xd3\x50\x41\xea\x72\x9e\xf6\x85\x53\x08\xf4\xb4\xeb\xfb\x73\x9a\x55\xc4\x06\xc5\xe7\xbc\x6c\x48\x09\xf1\xfe\xbc\x8c\xa7\xe7\x16\x77\xde\x29\x8a\x85\x9e\xd7\x1a\x57\x74\x62\xb1\x38\x87\xe5\xe4\x54\x60\x30\x48\xb5\x53\xc0\x3f\x30\xe3\xe7\x25\x1f\x3f\x4c\xe8\x5a\x3b\x20\x1a\xb8\xd7\x20\x62\xfa\x56\xd2\xa7\xc9\x0f\x9a\x2d\xd2\x57\x9f\x4e\xfa\x94\x69\xc2\x97\x5b\x08\x61\xa7\x31\x79\xa4\x75\x3e\x1d\xbc\x43\x60\xf7\xa9\xe0\x1d\xb2\x63\x9d\x16\x9c\x49\xa7\x7c\xde\xf6\x9c\x30\x59\x2b\x0d\x14\xb7\xb2\xa3\x8b\x89\x2a\x3d\x1d\xbe\x43\xbc\xf9\xf9\x58\xcb\x08\x6d\xe9\x7c\x16\x69\x41\xc9\xb3\x48\xa3\x51\x83\x48\x27\x6d\x28\x60\x81\xbb\xc7\x89\x9f\xb8\xa5\x65\x38\xfd\x44\x36\x9d\x2b\x13\xd4\xe4\x0b\x63\xc9\x61\xc0\xef\x1a\x78\x6c\x8c\xe5\x53\x67\x3b\xae\x18\x66\x76\x9f\xd3\x3a\x01\x8a\x39\x9d\xd6\x09\x70\xd8\xf9\xfa\xd6\x8d\x71\x4b\x0e\x2e\x60\x77\xae\xcd\x8a\x45\x58\x2d\x2e\x5b\x24\x41\xa0\x5d\x2b\xc1\x52\x30\xf1\xcb\x16\x49\x90\x73\x97\x25\x61\x80\x71\x97\x4d\x94\x78\x44\xae\x6d\x01\x68\x79\xc3\xce\xc0\xb8\x2a\x2e\x9b\x28\xc1\x29\x5d\x12\x76\x31\xdb\x5f\x16\x76\xf1\xf7\x5f\x92\x6d\x6b\x61\xe4\xff\x44\xd9\xa0\x4d\xd1\x37\x58\xfa\x2f\x5b\x28\x81\x10\x5c\x12\x6d\xdb\x5e\x69\x62\x91\x16\xc3\x92\x05\x72\x00\xa6\xbb\x76\x47\x65\x87\x54\x78\xed\xd6\x37\x63\xcf\x5e\x32\x38\xf6\xcf\x7c\x25\xe3\x3d\x82\x8b\x5c\xc9\xb6\xa5\xcc\x0f\x0e\x70\xcf\x7c\x62\x5b\x52\xdc\xf0\x57\xb2\x2d\x89\x2f\x96\xc6\xcf\x17\xa7\xbf\x88\xf9\x5b\xe1\xe3\x71\xd9\x5c\x82\x01\x8e\x8d\x26\x1f\xab\x2b\x41\x89\x6d\x85\x3d\xae\xab\x2b\x1b\x90\x1c\xf3\xe9\x88\x71\xf4\xdc\x2b\x1b\x21\x1b\x07\xe7\xca\xf6\xae\xc6\xb6\xbf\x5c\xc2\xa5\xec\xfc\x60\x5b\x52\x9c\xe8\xcb\xc9\x90\x08\xab\xbc\x6c\x1c\x24\x1d\xe0\x25\x11\xb8\x12\x37\x7e\x09\x1a\x48\xad\xe7\x2b\xdb\x28\x16\x07\xfa\xb2\x6d\x30\xcd\x3f\x95\x13\xbc\x6c\x38\xec\x8c\xc8\x16\xb3\x90\xe1\x2e\x57\x9d\x04\xd6\x79\xd9\x38\x48\x62\x86\xab\x2c\xba\x79\x63\xe5\xe7\x8d\x21\xad\x5c\x47\x21\xa2\x5d\xf2\xa8\x4f\xf2\x03\x5c\xcb\x1a\x18\x72\xe0\x25\x8f\xfa\x68\xbc\x70\xd8\xa8\xc6\x0b\xce\xf7\xb3\xd1\xeb\xe5\x1f\x18\x97\x4b\xaa\x31\xdb\x36\x0f\x96\x8d\x71\x2d\x01\x2c\x3e\xa9\x0b\xeb\x1b\xdd\x5a\xce\x26\xb7\xfc\x25\x9f\x7a\x2d\x9c\x09\x09\xde\xc0\xe5\x2f\x0b\xde\x25\xd8\xe7\x55\x65\x30\xf9\x7c\x20\xfb\xe1\xa7\xcf\xe1\x2e\x62\x97\x2c\x41\x7c\xa3\x49\x73\xcb\xc6\x0f\x26\x84\xad\xb7\xec\x87\x31\x4a\xdb\x0f\x89\x34\xbf\x9c\x80\x89\x6c\xe8\x57\x5b\xa1\x57\x31\x9f\xcd\xa1\x56\xac\x62\x33\xa0\x9e\x9d\x60\x0b\x22\x78\xee\x6b\x25\x54\x82\x83\xac\x84\x4a\xb0\xbe\x95\x2f\x89\x85\x17\x8a\xb0\x21\x05\x5e\x2b\x61\xd2\xe0\x93\x95\x30\x29\x7a\xf9\x97\x30\x29\x46\xda\x6d\xb8\xfc\xb4\x71\xf8\x07\xda\x70\xbe\xc4\x9d\x36\x2e\xe3\x03\x82\xfc\x47\x91\xf5\x9c\xaa\x47\x15\xa3\x60\x7d\x8f\x02\xc7\x43\x44\xbe\x84\x21\x03\x4a\x74\x3d\x8a\x01\xfd\x7c\x2f\xc3\x66\x08\xdd\xd7\x2b\xb4\x55\x5c\x45\xd7\xab\x5c\x33\xdc\x2b\xaf\x0b\x92\xb0\xa4\xc6\xb1\xc3\xbe\x5f\x6b\x4a\x6c\xbc\xd7\xfe\x64\x0e\xc0\xc2\x84\xb1\x09\xec\xc3\xc3\xaa\x73\xbd\x4b\x75\x8a\x51\xbe\x76\x30\xb3\x2d\x1c\x9a\x8a\x97\xef\x36\x8e\x0c\xdb\xd1\xbd\x2c\x43\xb1\x3e\xb7\x70\x64\x98\x74\x6f\x79\xf5\x76\x44\xf0\x5b\x77\xe8\x8e\xbe\x7c\xff\xee\xd0\x02\x02\xe0\xde\x16\x69\x34\x39\xfc\xc5\x1e\x3f\xc8\xc5\x1c\x46\xb1\x5b\xf7\x63\x2d\xc1\xdf\xef\x15\x8c\x1a\x26\x8f\x7b\x97\x43\x98\x3e\x9c\xbc\x9e\x38\x81\x7b\x57\xf0\x75\x5c\x32\xb7\xec\x38\x1f\xe1\xe0\xde\xad\x15\xc5\xde\xbd\x1d\x9e\x5a\x63\x89\x6e\x87\xa7\x82\x67\xbe\x0d\x0f\x63\x98\x8e\x46\xad\x71\xa9\xdc\x4e\x5f\x5f\x2b\x6f\xd8\x2a\x1c\xa6\x83\x3b\x2d\x2d\x29\x06\x6e\x7f\x5c\x09\xff\xd1\x9d\xac\x26\x85\x43\xe2\x96\xfd\x88\x78\xe9\x3b\x2d\x2d\x29\x86\x95\x14\xf8\x97\x79\xb6\xbd\x88\x3e\x17\x1d\x31\xdd\xf6\xa4\x61\x51\xba\xb3\x35\xa0\x30\x23\xdf\x76\x94\x01\x74\xbb\x75\xf9\x25\x10\xed\x77\x76\x92\x76\x08\xc9\x4b\xed\xe4\x87\xee\x36\xf8\xc1\x4a\xce\xdf\x7c\x54\xb7\xc1\x62\x64\xac\xbd\x75\x11\x92\x70\xf9\xce\x8b\x8a\x58\x72\x57\x54\xc6\xb7\x7e\x67\xb9\xb0\x43\x31\xbb\xcb\x22\x33\x96\xc7\x58\x31\xa2\x05\x6e\xe7\x54\x21\x64\xf8\x2e\x56\xdd\xc2\x1e\x78\x17\xdb\x2b\x42\xe5\xb9\x97\x75\x28\x2e\xbf\x7b\x59\x87\x38\x41\xcb\x3a\x14\x8c\xf5\xd6\xbd\xf4\x29\x92\x7c\x17\xab\x4d\x6c\xce\xea\x1a\xbd\x9d\x1f\xe4\x3c\xa0\xcd\xea\x08\xb8\x38\xea\xb7\xb1\x5f\x00\x85\xee\x6a\x3d\x6a\xf2\x83\xf5\xa8\xe0\xab\xb7\xd1\xf3\x78\xba\xee\x6a\x85\x0f\xee\x50\x97\xc2\x17\x6b\x50\x4d\x6c\x70\xa9\xbb\x2e\x62\xf9\xc1\xc4\x0e\x06\x66\xa1\x9c\x26\x1e\x0b\x0b\xbc\x60\xe2\x83\x49\xdd\xcd\x3a\x63\x8c\xd3\x81\xaf\xc1\xfe\xef\xe6\x8d\x15\x62\xd6\xad\x8b\x2a\xe1\x61\xb8\x9b\x75\xaf\x50\xf1\x6f\xb9\xba\x88\xf8\xbd\xe5\xea\x4a\x60\x59\x6f\x65\x7e\xc7\xf5\x75\xeb\xaa\xfb\x64\xfb\xbf\x75\xd5\xf5\xc4\xf6\x53\xee\xc0\x84\xc0\x7d\xcb\x2e\x95\x3e\xab\xda\xad\x8b\xf1\x89\x92\x07\x92\x72\xf7\xd6\x5d\x98\xf0\x4f\xdf\xca\x75\x97\x88\xfb\xbf\xbb\x29\x0b\x69\xe3\xee\x8b\xb2\x18\x78\x37\x25\xf0\x0f\x17\x4e\xde\x13\x6d\xdc\x6e\x83\x81\xda\x96\xc3\x31\xe8\x8b\x94\xf8\xc1\xa9\xde\x89\x35\xbd\xc7\x52\x2b\xa3\x0d\xd9\xa5\x12\x7e\xf1\x7b\x38\x71\x2f\xa7\x51\x31\xb1\x89\x8c\x04\xf7\xb0\x9e\x09\x93\xb1\xa1\x8a\x80\xa1\x7b\x98\xfc\x4f\x1b\x8b\x7c\x7e\x10\x88\x02\xc6\x35\x96\x4e\x1d\xd3\x31\x2d\xbd\xc2\x3d\x9d\x96\x1d\x30\xd2\x2d\xab\x53\xff\x6c\xf2\x69\x45\x09\x1e\x3d\xad\x03\x86\x05\xe2\x9e\x56\x94\x42\x68\xbe\xa7\x75\x40\xae\x8a\xb9\x74\x40\x3e\xb1\xa7\xae\xd3\xad\x75\x40\x6e\xb0\x69\x7c\x43\x63\xe8\xc6\x37\xc0\xa6\x6d\xb9\xc2\x65\x75\x3b\x37\x3b\xd8\xbc\xfb\x58\xd4\xc6\x2a\xd8\x72\x05\xe6\xec\xb6\x71\x0a\xcc\xd9\xed\xe4\xec\x38\xc6\xee\x63\x91\x1f\xc4\x1d\xd6\x62\x38\x2c\x36\x4e\xe1\x92\xbd\x9d\x7a\x1d\xcf\xd8\xed\x58\x59\x50\x65\xf7\x61\x83\xe2\xa7\x17\x2b\x68\x95\x36\xac\x49\x72\xfd\x1e\xf6\x5c\x46\x13\xa7\xf5\x46\xae\xb9\xd3\x26\x70\xe6\xe7\xb4\x22\xc9\xa4\x2b\xa5\xcd\x60\xb7\x9c\x76\xe6\x54\x7e\xb0\x33\x07\x61\x46\x01\x23\x79\xe7\x4a\x97\xef\x78\xb0\xf1\x4f\x6b\x9a\xe5\x4f\xca\xd5\x7d\xae\x7a\xc8\x0c\xd1\x16\x1c\x18\xbb\xab\x3c\xe3\x78\xbb\x6d\x31\xc3\xa9\x78\xcb\x6f\xdc\x3f\xec\xf0\xf2\x44\x84\xec\x79\x5f\x72\xd9\xc2\x56\x5c\xf7\x79\x0f\x61\xf3\x76\xdd\xe7\x0f\xc7\xbc\x3c\x11\x85\x4e\x4c\x77\xe1\x0d\xe3\x7c\x43\x20\xbe\x05\x67\xec\xe4\x0e\xbe\x2f\xfb\x66\x0a\xe3\x3a\xad\xdc\xf2\xc6\x5a\x63\xc6\xe1\x35\x66\x6b\x5d\xa6\xbe\x32\x74\xc3\x56\xc2\x32\x72\xdb\x5f\x0d\xec\xec\x56\xca\xbe\x8c\xdd\xf2\xbe\xad\xa1\x21\x6e\x2a\xc2\x76\x70\xd2\x5c\x73\x8c\x88\x9d\xdb\x2e\x6d\x92\xbf\xdd\xb7\xd5\x72\xb8\xaa\x32\xb6\x53\x5b\xf1\xbe\xad\xa2\xb1\x0d\x6e\x43\x3c\x98\xf3\xdb\xea\x69\x28\x9f\xf7\xbd\x66\x83\x37\x5c\xf1\x1b\x96\x79\x3b\x8b\x2e\xc2\xc6\xed\x2c\xba\x48\xd2\x4a\xc6\x93\xb1\xfa\xde\x8e\xd2\x45\x5f\xbd\x1f\xab\x75\x3b\x6f\x58\xad\xfb\x7c\x52\xfc\x46\x0c\xfd\x11\x2e\x84\x5e\x1f\xeb\x7d\x9f\x1f\x44\x6c\x81\x2f\x3f\x8b\xd8\x58\xb6\xc7\xaa\xf7\xe7\x07\xab\xde\x89\x1f\xac\x7a\x73\x93\x3d\xd6\x58\x99\x73\xd5\x19\xcb\x64\x19\xbe\x5f\xab\xac\x5c\xc1\xef\xa2\x2d\x26\xec\x35\x6d\x2c\xe4\x6b\xda\xb8\x61\xdf\xb5\xb2\xd1\xed\xbb\x88\x0b\x5a\x5e\x2b\xb5\xac\xc2\x6b\x6a\x59\xc9\x77\xd9\x15\x62\x3e\x5e\x83\xaf\xd8\xf9\xaf\xd5\x5e\x36\xfa\xbb\xd4\x71\x3e\x31\x82\x3d\x76\xc3\xb3\x2d\xf5\xbb\xc6\x0f\xa6\x25\xf4\xac\x67\xb3\xda\x1b\xdd\x3e\x9b\xd5\xde\xd0\xe6\x9e\x6d\x29\xe8\x33\x7e\x58\x0a\x7a\x8f\x1f\x9c\xfb\x24\x36\xd0\x23\xcb\x63\x27\x5b\xf7\x23\xcb\x63\x46\x21\x79\x36\x43\x7a\x06\xdd\x9a\xb8\xc6\x27\x96\x0e\xe2\x8e\x7d\x36\x13\x17\x37\xe8\xb3\x1b\xac\x14\x8c\xf8\xd9\xad\xf5\xc7\xa5\xfb\xec\x8e\x1d\x8c\xfb\xf1\xd9\xad\xf5\x4f\x3e\x31\xf9\x8c\xd4\x8e\x77\xd2\x9b\x3c\xd2\xcf\x32\x1e\xa7\x67\x77\x9e\xea\x10\x7d\x9e\x7d\x01\x9a\x82\x38\x79\xe2\xf1\x2d\x3e\xd2\xd7\x50\x98\x1f\x67\xc1\x24\xe3\xf6\x63\x73\x26\x3a\xc6\xa3\xf8\x1e\xf4\xe5\xc7\xe6\x4d\x30\x3a\x8f\x33\xf4\x15\x9e\xa7\xac\xae\xd1\xa5\x4d\x13\xd8\x19\x1f\xc9\x67\x1d\xa3\xd4\xf3\x13\xb6\x32\x79\xcd\x1e\xa5\xe4\x23\xad\xe3\xb3\x52\xf2\xd1\xc5\x50\x38\x38\x2d\xba\xaa\x0e\xbe\xa2\x67\xac\xb0\xc8\x98\xba\x61\x4b\xef\xfe\xa7\x04\xb1\xcf\xf2\x06\x86\x20\xf2\xb8\xa0\x0e\xba\xf3\x63\x29\x0b\x23\xce\x33\xac\x8a\xf1\xbc\x34\x1c\x9a\x58\xba\x19\x54\x39\xdb\x05\x7b\x77\xda\xe3\x1d\x57\xe5\xe3\x82\x3a\xc0\x1e\x9e\x69\x69\x99\x2f\x94\x78\x2c\xae\xea\xc7\x72\x1b\x90\x85\x47\xee\xc3\x42\x5e\xe7\x47\x82\x5c\x83\xe3\x3e\xaa\xb0\xf3\x59\xee\xe9\x94\x11\x8d\x3e\x2c\xd9\x0c\x9a\xb0\x64\x13\x17\xf8\xb3\xe4\x38\x76\xc4\xf4\xad\xc7\x5e\x9f\x32\x3d\x33\x39\xd3\x07\x8a\x05\x9d\x32\xde\xb1\xb1\x0f\x9f\xa7\x8d\x1f\xd6\x79\x8a\xd9\x3b\xec\xb7\x60\xd3\x1c\xc6\x90\x40\xea\xe1\x7d\xc9\x17\x4a\xb4\xdd\x43\x7a\x7a\x56\x11\x58\xce\xa8\xa4\xba\x96\x3e\x9f\xc8\x08\xc3\x82\x48\xa8\x2b\x64\xa1\x7a\x2c\xd4\xa1\xe1\x3f\xc7\x0a\x8f\xe3\x0d\x1b\x44\x3a\xc3\xb2\x41\xa4\xd3\xa8\x5d\x32\x21\x89\x3c\xa7\x75\xf2\xd0\xbc\x9e\x55\x38\x36\x14\xc6\xc7\x89\x0a\x43\x66\x7b\x4e\x21\x72\x33\xcf\xeb\x36\xa7\x49\x73\x0e\xf6\xef\x4f\x88\xcb\xa4\x0e\x7c\x54\xf5\x15\xc4\xf8\xf3\x4f\x4a\x8b\xad\xf5\x93\xd2\x0a\xd6\xbe\xc7\xe5\x74\x80\x07\x3c\x06\xf7\x81\x22\x79\x2e\xd7\xc2\x0a\x7b\xde\x73\xf9\x06\x08\xbd\xec\xf9\x49\x69\x99\x3c\x15\x8f\x84\xb4\x0e\x3c\xea\x71\x7d\x1d\xcc\x04\x8f\x84\xb4\xde\xd9\x6a\x97\x0d\x28\x1c\x89\x4b\xa1\x56\x8d\x4e\x1d\xfb\xc3\x30\x4d\x07\x0d\xd8\x20\x12\x5d\x5a\xda\x2a\xa1\xc5\x3d\x3f\x69\x2b\x93\x1b\xe1\xb9\x17\xaf\x89\x51\x2b\x61\x32\x18\x91\x47\xb5\x6d\x36\x16\xe7\x5e\xac\x22\x56\xef\x36\xab\xe0\x59\x8e\x6a\xa6\x61\x25\x20\xe4\x96\x7b\xa4\xfd\x33\x0b\x8f\x63\xbf\xc2\xd2\xf1\xd8\x81\x09\x76\xe3\xb1\x03\x13\xf7\xc3\x63\x07\x26\x08\x91\xc7\xa5\x6b\xc0\x7f\x3c\xf2\x60\x62\x30\x78\x2c\xe1\xec\x9c\x8e\x67\x89\xae\x74\xb2\x12\x10\xd3\x89\xf4\x15\xe6\xd2\xf2\xcc\x87\xd2\xe5\xd1\xe4\xfa\x79\xed\x39\xe0\x05\xdf\xf8\xf4\x61\xe9\x85\xc8\x85\xe7\x95\xeb\x00\x4a\x5f\x97\x8b\xe7\x7e\x7a\x1d\x72\xcf\x0b\x86\xad\x84\xca\xf8\xb8\x8e\x0d\x36\xcb\xc7\x70\x42\xf0\x50\x8f\xb3\x17\x72\x38\x5e\x97\xce\x80\x05\xba\x8e\x0d\x6b\xfc\xba\x8e\x0d\x9e\x98\xd7\xf0\x42\xee\xb8\x77\xf9\x59\x63\x5c\xef\x92\x65\xe2\x9e\x7c\x37\x51\x56\xff\x54\x5c\xf7\x75\x4d\x1b\x92\x34\xbc\x4b\xf0\x69\xfc\x70\x78\xe6\x72\xfc\xf0\xe8\xd2\x8c\xe7\x95\xac\x30\x14\xd2\xd7\x49\x55\x62\xc1\x5f\xd9\x8b\xf1\x86\xbc\xae\x2c\x83\x5b\xe7\x95\x3c\x52\x88\xea\x7f\x77\xab\x4c\x71\x6f\xbe\x8a\xf0\x18\xb1\xb5\xdf\x7d\xc9\x02\x41\xf4\xbe\x76\x59\x0c\xdb\xfe\x55\xec\xdc\xef\x6e\x87\x4a\x48\xc9\x6f\xda\x34\xcc\x68\xd3\xd1\x1a\x08\x20\xaf\xa3\x35\xf0\x6c\xbc\x8e\xd6\xe0\x88\xbe\x8e\xd6\xc0\xbd\xf4\xca\x9d\xda\x40\xcd\xbf\x8a\xd6\xe8\xf8\xb8\x5f\x67\x24\x44\x6a\x7e\x0d\x39\x44\x48\x7e\x1d\xbe\x81\x6b\xed\x95\x4b\x36\xe1\x8d\x7b\x93\x92\x7f\x4c\xda\xb4\x19\x2a\xd3\x84\xcd\x1b\x71\xd2\xdf\xa4\x44\x3c\x71\x9f\xbf\xb6\x4a\x23\xcf\xbd\xff\x92\x7a\xc7\x17\xf6\xd1\x92\x41\xf5\xb5\x8f\x96\x2c\xb7\x6f\x96\x49\x20\x4c\x17\x6f\x5e\x1a\x03\x6d\x7a\x67\x86\xd8\xf1\xda\x45\x5b\x3e\xc3\xb0\xc6\x90\xe9\xc4\x96\x69\x36\x57\x56\x16\x61\xa6\x2f\xaf\x6b\x30\xa6\x2f\x9b\xe9\x45\xa7\x65\x8d\x3b\xbe\x58\x89\x11\xe3\x3e\x79\x8b\xd1\x0f\xa1\x40\xbc\xc5\xc2\x4d\x30\x8b\xd7\x3e\x56\xb2\x12\xbc\x4e\x95\x88\x1c\xf7\xda\xc7\x0a\xda\xe1\x75\xc4\x05\x62\xc4\x5b\x0e\x0d\x3c\x08\x51\x0d\xd4\xcf\xec\xd9\x72\x8d\xd2\xf6\x96\xb5\x88\x74\x6a\xb6\x18\x17\xfc\xeb\x08\x0c\xac\x47\xaf\x4c\xd9\xa3\x57\x7e\x50\x88\x62\xe1\x59\x88\x36\x6a\xd8\xbc\x75\xed\xe0\x18\x66\x5d\x3b\x38\x7a\x5d\x41\xc8\xcc\x4e\x35\xe4\x82\x25\xb1\x5d\x1a\x14\xe1\xab\xa8\xe4\xb1\xd3\x89\xad\x6d\x93\x4e\xd6\x76\xa4\x09\x6f\xc7\x78\x5e\x79\x5e\xd8\xd1\xb2\x4b\xc3\x49\x5f\x47\x29\x93\x53\xf3\x55\xd1\x1b\x84\x84\x77\x25\x86\xe9\x34\x69\xbb\x0c\x27\x71\xd5\x2c\xfd\xfc\x20\x70\x31\x6c\xcb\x31\x1a\xe4\x9f\x7e\x65\xb8\xa6\x0c\xf0\xdb\x7d\xa5\x87\x8c\xf0\xda\x25\x5b\x38\x77\x2e\x61\xc3\xa2\xbb\xfc\x0c\xbb\x77\x95\x9f\x81\x6d\xd9\xff\x8a\x54\xf7\x5a\xc9\x41\xaa\x7b\xbb\xd5\x4c\x0e\xa6\x4c\xcc\x19\x99\xf7\x95\x89\x79\x90\xd5\xf7\x1d\x82\xdf\xc3\xb6\x16\xc0\x90\x93\xfa\x53\x10\x2a\xea\xf0\x6b\xfd\x00\x07\xe9\x3b\x6d\x0f\xfc\x7c\xe1\xb3\x1e\x94\x4f\x9f\xf5\xc4\x0b\xcd\xa9\x41\xf9\x41\xb0\x84\xed\xd3\xa6\x8f\x0c\x9b\x73\xda\x0c\xf6\x37\x70\xc5\x3b\x15\x36\x02\xd5\xd3\xe8\x18\x58\xdc\x82\x1a\xd2\xfe\xb1\x38\x01\x3f\x2c\xc5\x38\xc6\x28\x73\x6c\x4b\x5c\xbf\x16\xed\xc9\x77\xfc\x4a\xb4\x1f\xd4\x80\x7b\x0f\xa7\x0f\x62\xee\x64\xb0\x1d\xc4\xd2\xbd\x92\xed\x07\x51\x6c\xaf\x64\xfb\x41\x2c\xdd\x2b\xd9\x7e\x10\x8c\xf2\x4a\x72\x1f\x9f\x2b\x55\x92\x7b\x41\x36\x7c\x9d\xc0\x10\x54\xe3\xeb\xca\x25\x08\x1f\xaf\x2c\xb6\x73\xe3\xd6\xbd\x8c\x0b\x09\x01\xf4\x95\x88\x3b\x31\x76\xbe\xb2\x43\x4e\x0c\xa6\xef\xe5\xfc\xae\x61\xd4\x7d\x65\x87\x9c\x98\x2e\x5f\x49\xb5\x23\x0c\x80\xff\x67\xec\x4f\x72\x75\x89\x61\xee\x00\x6c\x9e\x55\xdc\x1d\x44\xbd\xa8\xc9\x9b\x64\x9c\xec\xa1\x1a\x56\xe0\x81\xed\x1f\x7f\xec\xfd\x07\xe2\x11\x0f\xef\x33\x6c\xf8\x0d\x2e\xf0\x5d\xa9\x4a\xa5\x96\x62\x7b\xa8\x69\x4b\xf1\x85\x48\xb6\x9a\xf6\x05\x58\x68\xf9\xd5\xb4\x89\xc5\x74\x8b\x9e\xa6\x7d\x6c\x69\xa9\xd7\x34\xeb\x7e\xdb\xa9\x91\x26\x2c\x08\xed\xdd\x9a\x6e\x50\x38\x57\x2b\x68\x7a\xe0\x47\x35\xd8\xa2\x69\xfa\x84\x60\x5a\x9a\xbe\xfd\x09\xc2\x23\x6a\x32\xbe\x4d\x26\x3f\x9a\x8d\xe5\x11\x66\x6e\xd5\xbc\x6f\xcb\xc1\x00\x40\xcd\xb0\xbf\xd2\xc1\x53\x33\x6e\x0c\x02\x3b\x6a\xde\xd4\x5e\xa8\x82\xd2\x6c\xc4\x3c\x50\x1b\x35\xf7\x03\xe3\xe8\xbd\xc8\x03\xf2\xb2\xf0\x15\xb3\xb4\xc9\xf4\x2b\x45\xb3\x19\xbd\x64\x3a\x6d\xd0\xbc\x4f\x65\x63\x8e\x5a\xcd\xd7\xc1\xa6\xf3\x91\xe6\xfb\xda\x23\x5d\x1c\xd8\x8d\xb9\x99\x2c\x80\xd8\x33\x27\x07\x62\x2b\x5e\x32\x3f\x81\xe8\xf0\xe9\x24\x4e\x4b\x42\x76\xa6\x15\x05\x19\x4f\xf8\xc8\xca\xe6\x3d\x06\x41\x02\xb5\x6c\xde\x23\x72\xb1\x69\xd9\x9c\x45\x2d\x4e\x23\xb5\x74\xcc\xf6\x64\xc1\x9e\x89\x88\x44\xd4\x72\x26\x22\x0a\x90\xa7\x98\x76\x38\x2d\xd7\xe9\xc3\x62\x01\xf2\xc9\x75\xf6\xf2\xda\x6b\x4e\xc8\x3d\x2d\x38\x61\xd3\xbd\x69\xb5\x6c\xb1\x94\x3e\x53\x5a\xb6\x80\x31\x53\x54\x7f\x98\x7b\x17\x07\xb5\x26\x4c\x8c\x4b\x90\x8a\x04\xfd\xc2\x5c\xc9\x5a\xeb\xbe\xdf\x89\xe4\xa9\x15\x81\xa6\x14\x73\x14\xe9\xda\xf3\xec\x7c\x03\xe9\xb7\x12\x27\x1b\x69\xd0\x25\x71\x6e\x2d\xcb\x39\xfd\xb6\x14\x29\xcc\x25\x71\xea\x2c\xc3\x78\x2b\x89\xbd\x1c\x96\x86\x9e\xa7\x05\x89\xbb\x25\x71\x2a\x91\xcd\x5a\x12\x67\x0e\xa9\xa9\x79\x77\x68\x9d\x96\xfa\xde\xb5\xcf\x6a\x89\x95\xb3\xc4\xcc\x20\x89\xb1\xa4\x18\xe7\x85\x4e\x09\x3f\x6a\xc9\x01\x6a\x3c\x60\x9b\xae\xd1\x0f\x4f\x91\xcb\x56\x52\x4c\xae\xd9\x2e\x24\xc5\xe4\xbe\xa7\x4d\xce\x8c\x59\x11\x1a\xb5\xf5\x5a\x01\xa5\x90\x63\x64\xef\xf3\xe7\x47\x24\xa6\x46\xcf\x47\xf8\x55\xa8\x9a\xe9\x16\xab\x48\x92\x29\xc4\x28\x55\x24\xc9\x6c\x8c\x2c\x51\x24\xc9\x14\xa2\x6e\x6a\x3b\x8b\xbe\xfe\x05\x44\x49\x2d\x3f\x66\x63\x00\xa1\x5a\x7a\xcc\x3c\xe8\xf9\xac\xc8\x5c\x29\x44\xbb\x54\xe4\x8c\x14\xc2\xbc\x69\x6b\x58\x2f\x1e\xe9\x66\x6c\x65\xa3\x35\x40\xdb\x66\x2b\x0b\x01\xb8\xd4\xb2\x03\xee\x37\x7c\x2e\x1b\xf2\x9a\xb8\xa4\xa4\x48\x70\xd7\x88\x14\xa8\xcd\x38\x0c\x61\xd2\x48\x45\x7a\xba\x96\x48\xb3\x9b\x9c\x6e\x71\x1e\x70\x00\x99\xd0\x51\xdb\x83\xf4\x0b\x7c\xe0\xbd\x7e\xe3\x7c\x6a\x37\xcd\xb7\x30\xd5\xa5\xf6\x7c\x12\x1c\xfb\x48\x7b\x39\x05\x95\x05\xf3\x2f\xc3\x9a\x76\x13\x94\x84\x1c\x85\xf6\xd6\xff\x12\x1b\xb5\x1b\x83\x1c\x4c\xa1\x76\x00\x3d\x07\xe5\xe8\xb8\x9c\xe3\x7a\x42\xc2\x2f\x89\xdb\xc1\xb2\x54\x31\x98\x4b\x2d\x49\x15\xe3\xcf\xb4\x9b\xee\x22\x72\xd2\x2b\xb2\x3f\x25\x7a\x17\xeb\x48\xf2\x57\xf2\x7c\x1d\xa6\x6c\x17\x22\x14\xaa\xa5\x0a\xca\xc2\x00\x10\xb5\x4c\x39\xbb\xc0\x27\x67\x08\x3a\xe5\x76\x25\x45\x16\x13\x21\x32\x90\x0e\x70\x1d\xc4\x12\xd2\x01\x9e\x82\x81\xef\x3a\x9e\xf3\xca\x60\xc1\xf8\xf3\x33\x29\xfe\xea\xf8\x4e\x13\x3e\xf2\x09\x40\x50\x4a\xfe\x3a\xcf\x84\xbb\x4c\xa3\x13\xf1\x43\x8c\x54\x57\x03\x11\xcf\xc2\x58\x76\x05\x68\xb8\x30\xdc\x5e\x81\x45\x2c\x99\xfc\x81\x61\xf4\x0e\xca\x30\x3a\xbf\xbf\xb1\xda\xd5\x10\x5c\x7f\x21\x9b\x2b\xa0\x4d\x03\x2d\x48\x0d\x7e\x71\x17\xf8\x58\xc5\x94\xf2\x11\x41\xa9\x82\x68\x17\x4a\x35\x7a\x40\x8d\x18\xec\xa6\x6b\xc0\xf5\x97\x5b\x65\xc1\x09\x85\xee\x20\xba\x26\x30\x6b\xb8\x33\x96\x39\x6a\x74\xfa\x3f\xe8\x42\x1a\x47\x46\xca\xea\x12\x4c\xc7\xaf\x02\xc0\x80\x72\xed\x97\x60\x4a\x79\x51\x2d\xdb\xa1\x93\x10\x1b\xba\x04\x1d\xe3\xee\x58\x82\xd1\xfe\x7a\xe2\x81\x95\xa3\xb0\x00\x87\x8b\x0b\xb7\x6c\xf8\x9d\x9e\x2c\xba\x40\xc5\x69\xce\xd7\x65\xec\x7a\xa4\xea\x55\xc3\x74\xda\x4f\xb0\xd1\x0b\xae\x1b\xd1\xe8\xd9\x61\x9c\xe4\x75\x34\xd2\xd1\xe8\x0d\x6b\x3a\x6f\x3c\x83\x2b\xca\x91\x7f\x4d\xd7\x01\xc4\xe6\x8e\x5a\x66\xa2\x0f\x30\x46\x35\x6c\xa1\x1c\x38\x5b\x0a\x70\x21\x61\x26\x2d\x05\xb8\x50\x20\x73\x29\xc0\x85\x24\x93\xd8\x00\xea\x27\x80\x9d\x14\x50\x3f\x12\xf7\x24\xa0\x7e\x26\xa3\x0c\xd5\xa0\x7c\xf6\x9c\xb2\xeb\xef\xf9\x0a\x5f\x31\x4b\xb7\x94\xd8\x1f\x2f\xa6\xb0\xc4\x2b\x03\x4f\x44\xa3\x13\x5f\xe1\x68\x5f\xa8\xb6\xb9\x71\x81\xa4\x33\x19\xdc\xa8\x00\xbd\x99\x0c\xb7\x51\x40\xd6\x4c\x86\xec\x28\xd0\x65\x02\x24\x43\xd7\x87\x29\x2c\xfc\x2c\x78\x17\x06\x72\x29\xa0\x60\x8c\x7f\xfa\x87\x5b\xeb\x4a\x58\x23\x57\x1f\x2a\x00\x5a\xc2\x08\xa0\x00\x68\x11\x2a\x11\xf4\xb2\x8b\x73\xd2\xc1\x56\x2f\x5c\x9c\x85\x9b\x07\x10\x2e\x93\x3e\xbb\x0a\xbc\x95\xd0\x0a\x2b\xc0\x53\x26\xe3\x6f\x14\x48\x28\xa1\xa2\xd2\xab\xa0\x63\xbc\x10\x80\xfe\x31\x19\xb5\xa2\xc0\xf6\x98\x8c\x87\x50\x60\x6d\x4c\xc6\x37\x29\xa0\x34\x66\x30\x27\x86\x72\xb1\x9f\xf0\x25\x01\x88\x45\x28\x12\xf4\xea\x50\x2d\xf3\xd8\x03\xd5\x62\x52\x2d\xa0\x57\x47\x7e\x3b\x9e\xf2\xab\x9f\xaf\xc4\x13\x80\xbb\xe2\xa1\x06\xf0\xc5\x0c\xee\xff\x32\xf9\x60\x52\xc7\xa7\x06\x4a\xf1\x0b\x32\x4b\xaf\x39\xff\xb2\x8b\xe8\x05\x5e\xae\xc6\x3a\xdb\xcd\xde\x19\xbd\xa9\xd7\x61\x9c\x2b\xbb\x0e\xd2\xc1\x24\x0f\x7a\x81\x74\x10\x14\x48\x2f\xc1\x6e\xaa\x2c\x38\x2e\x5c\x12\x05\xd0\x96\xf1\x94\x5f\x87\x96\x90\xcf\xb9\xd6\xf8\x0b\xc9\x51\xaf\xf5\x37\x5a\xa1\x5e\x26\xfa\x07\x4c\xa0\x5e\x17\x66\x3d\xc6\x72\xe5\xbf\x42\x55\xf5\x02\x8b\x4f\x0d\xbf\x1a\xfc\xc5\xaf\xe0\x0d\xbd\x2e\xfd\xcb\xd9\x4c\x2f\x48\xd1\x74\x08\xd2\xeb\xfe\xdb\xdd\x47\x81\x77\x11\x06\x63\xbd\xee\xfe\x97\x95\x4d\x1d\x8c\x82\x0c\x32\x90\x24\x3a\xbd\xd7\xf5\xfa\x5f\x12\xf1\xea\x75\xc0\xce\x1a\xfb\x81\xab\xf8\xd7\x57\x1e\xac\x4b\xe3\x57\xc0\x11\x53\xcb\xaf\xd7\x83\xad\x1d\xab\xff\x9e\xcf\x72\xc6\xde\x33\x7c\xae\x2d\xf2\xff\xd2\x5d\x45\xaf\xf7\x74\x9d\x05\x8a\x82\xce\xb1\x98\x9d\x45\x5a\x1c\x31\x3d\x81\x3a\x1c\xdc\x07\x32\xc8\xfb\xea\x3a\xf4\x88\x17\x29\x40\x16\x66\x0d\xea\xf0\x9d\xaf\xf8\xe0\x6e\x88\x4e\x8d\xf3\x01\x84\x84\x3e\x49\x1d\x0c\x00\x61\x17\x78\xa3\xf7\x21\x39\xdc\x96\xc0\x0e\xe8\x21\xf6\xdf\x19\xfb\x94\xf7\x95\x21\x01\xec\x82\xca\x02\x5b\x17\xc2\xfd\xe9\x7d\x08\xca\x88\x02\xac\x0b\xcf\xfe\x0d\x68\xa5\x10\xeb\x0d\x1d\x60\x3f\xc1\xb1\x98\x2a\x5e\x88\xdd\xa0\x88\x89\x2f\xc1\xaa\xdd\xc8\xcb\x13\x32\xf7\x8d\xbc\x3c\xa4\xf9\x37\x92\x95\xd3\xb0\xa8\x08\x8a\xef\x21\x51\xdf\x90\x0b\xe9\xf2\xa2\x08\x8a\x17\x3a\xa3\xe8\x0d\x8a\x43\x85\x9d\x5a\x84\x7a\x8e\xec\xf3\x7a\x77\x50\x0b\x8a\x3f\x08\x17\x8f\x34\x45\x8a\x70\x71\xa1\x4e\x5b\xef\xa1\x7f\xc1\xd5\xe9\x6d\xf1\x24\x01\x7c\xa4\xf7\xc4\x67\x73\x14\x34\x3c\xc1\x29\xb5\x78\x12\x21\x22\xa2\x22\xf8\x7b\xd6\x58\xb8\x89\xcf\x92\x51\x45\xf4\xb7\xd0\x90\xaa\x88\xfe\x8e\x78\x32\x45\xf4\xb7\xf4\xfc\x2f\x58\x16\x8a\xd0\xf0\x88\x68\x53\x04\x6d\x87\x9f\xa1\x5a\xd0\xf6\xcc\x12\x0f\x4c\x3c\xc0\x61\x81\x4b\x23\x0a\xac\xde\xc6\xa5\x85\x01\x52\x6f\x41\xa7\x4b\xbc\x82\x4e\xc7\xb0\x90\x4f\x51\x62\x58\xe6\x84\x21\x44\xcd\xd3\x7b\x01\x9f\x92\x64\x12\x21\xd9\x42\xfc\x3a\x45\xc0\x75\x97\xf8\xca\x16\xbe\x9b\x90\x4a\xde\x27\x6f\x38\x2f\x2b\xc4\x47\x0b\x01\x7c\xf4\x46\xba\xc3\xc6\x2b\xe0\x86\x36\xb2\xff\x2a\x50\x14\x70\xd9\x2f\xf4\x3c\xda\x80\xce\x8d\xc0\x2a\x7a\x9b\xf2\xb1\x0b\xaf\xa2\xfb\xb6\x7c\xad\x71\xe4\xa1\x78\x62\x9c\xbc\xde\x00\x95\x14\x52\x4d\x44\x33\x4b\x8f\x02\x90\xd1\x1e\x54\x02\x64\x54\xc8\x32\x20\x14\xb9\x4b\xe7\xe8\x1f\x2c\x13\x49\x20\x62\x91\x43\x50\xb0\x58\xe4\xfd\x00\x87\x06\x46\xb0\xff\x6a\xf3\xfb\xf3\x23\x2b\x4e\x1a\xd4\x99\x3d\xbe\xf1\x62\xa8\x41\xab\xde\xf2\x97\x2b\x9d\x22\x9e\x59\x88\x5e\xa0\x88\x67\x0e\x80\x36\x45\x3c\xb3\x30\xd4\x5e\x2d\xb4\x58\x24\xba\xf5\x62\x19\x63\xfe\x4c\x0d\x17\x48\x41\x8a\x50\x63\x09\x35\x2a\x22\x8b\xa5\xc7\x47\x0c\x3f\x31\x5c\x33\xf5\xd6\x93\x53\x9e\x5f\xfd\xd0\x68\x90\x3b\x18\xcd\xe9\x4a\xa6\x0f\x28\x35\x4d\xbd\xfa\x6c\x4a\x1d\x59\xa9\xd4\x62\x7a\xc3\x7f\x40\x1f\xf0\x79\x34\x4e\x28\x02\x61\xfb\x22\xc9\xb0\x40\xd8\x29\xe4\xd9\x4e\xc8\x2a\x6d\xc3\x8a\xf0\x52\xa1\xfd\x4e\x11\x2c\x2a\x9d\x4c\x1c\x82\x43\xa5\x93\x89\x7b\xcc\xa2\x17\xa9\xce\xf4\x69\xe8\x06\xf9\xad\xc7\xd9\x3c\x8e\xcc\x28\x68\xa4\x32\x53\xc4\x2f\x46\x36\x34\x45\x30\xa2\xd0\xaa\xad\x27\x18\x91\xd8\x32\x6a\xc1\x88\xfb\x89\x28\x40\x28\x26\xb7\x2c\x82\x0b\x23\x54\x50\x9f\x8e\x0d\x48\xd5\xca\x63\x30\x1f\xc4\x36\x56\x0b\x36\xac\x35\x7a\x31\x8e\x48\xc9\x5e\x80\x6c\x33\x68\x5a\x11\x39\x28\x83\xd4\x11\x91\x83\x9d\xc1\xc9\x7a\xe2\xf1\xe8\xfe\xa5\x0f\x28\x22\x63\xb7\xf5\x11\x4c\x20\x77\xf9\x03\x19\x93\x31\x1b\xfa\x18\xa3\xd8\x19\xd0\xac\x0f\x18\x45\x06\x6d\xe8\xb3\xd0\x06\x09\xfb\x03\x36\x90\x2e\xf5\xfa\x40\xa4\xa4\xd7\x99\x3e\xc8\x63\x4f\xef\x3a\x7d\x8c\x0d\x14\x7a\x56\xe9\x83\x44\xf6\xb4\x7b\xe8\x73\xc1\xbc\x40\xb6\xe7\xb9\xce\x57\x38\x1f\x66\xa1\x09\xfd\xd7\x03\x31\x95\x49\x98\xf4\xb9\x30\x14\x1e\x8c\xc7\x98\x3e\x19\xe4\x69\x1e\x58\x0c\x46\x0c\x05\x87\x8b\xee\x07\x8a\xc8\x3d\x61\x1e\x02\x45\x60\x9e\xd0\x2c\xad\x2f\x20\x9a\x08\x74\xaf\x2f\xd4\x18\xe3\x9f\x32\x80\xe8\x9b\xe0\xee\xc5\x3e\x59\xcc\xdd\x2e\x18\x2c\xb0\x3d\x4e\x3c\x4a\x45\x14\xde\x08\x2d\xdd\x9b\xf1\xc5\x19\x05\x68\x94\xe3\x7a\x4d\xe8\x12\x22\x45\x2a\x82\xea\x46\x8a\x81\x66\x4c\x05\xcf\x1a\x22\xe4\x84\xa8\x97\xfa\x42\x29\x44\x96\x11\x01\x6f\x23\x8d\x78\x03\xdd\xe0\x61\x44\x04\x9c\xd0\xf9\x4a\x11\xdf\x36\x42\xef\x8d\xf8\x36\x19\x54\xcd\x22\x9c\x4d\x88\x5e\xa4\x08\x67\x1b\xa1\xc8\x7e\x91\x11\x3c\x14\xd9\x08\x1e\x13\x82\x1c\x28\x22\xc1\x46\x28\x6f\x5f\x08\x72\x04\x89\x50\xc4\x75\x8d\xd0\xb6\x5a\xdc\xd1\xa2\x67\xa5\x22\xa8\x48\x42\x27\xf4\x82\x57\x09\xe5\x0c\x22\x82\x46\x5c\x39\x16\x11\x34\x68\x30\x53\x04\xf3\x08\xe3\x92\x14\x81\x38\xc2\x70\x1f\x45\xe4\x49\xa0\x43\x29\x82\x44\xda\xaf\xdd\x87\x1b\x3a\xd4\x28\xf0\xd3\x97\x50\xa3\x98\x4f\xfd\x2e\xe0\x58\x5f\x58\x7e\xa8\x46\x81\x87\xfc\x28\xf1\x59\xe0\x5d\x84\x1a\xe5\xb5\xcc\x0e\x8c\xbb\x51\xb8\xaa\x4b\x68\x51\xe0\x44\x2e\xa1\x12\x81\x8b\xf8\x2f\x63\x81\x1e\x23\x09\x67\x03\x8e\xc6\x12\x0a\x0f\x3d\xa8\x07\xd4\x5e\x28\xf6\x57\x68\x2f\xb4\x9e\x36\x84\x05\x66\xac\x0e\x92\xa8\xed\x74\xcc\x07\xab\xb6\x8e\xc1\xad\x69\xc7\x14\x53\x24\xd1\x8e\xaf\x52\xd9\xa0\x50\x92\x87\x6e\x41\x27\xa6\x98\xf7\x14\xfc\x72\x25\xd4\x00\x70\xaa\xed\x61\x4f\x30\x7f\xd6\x15\xd2\x37\x7c\x53\x25\x04\x76\xf3\x4d\xcd\x9d\x49\x1e\x15\x6e\xa1\xb3\xc6\x57\x2f\xe8\x2b\x9c\xa8\x7e\x15\x4a\x37\x2e\xec\x57\xa1\x63\xe3\x9c\x7f\xf5\x82\xbe\xc2\x09\xe2\x57\x6f\xa8\x38\x12\xdb\x38\x3a\x25\xe7\x55\xbf\xaa\x90\xd0\x84\x8d\x2a\x3c\xd7\x27\xdb\x50\xf4\x43\xa2\x00\x9f\x9d\x7c\xe5\x3b\x60\x94\xde\x8f\x96\x4e\x3f\x92\x17\x64\x0c\xce\xd9\xee\x0f\xd6\x8e\x49\x8e\xf8\x6b\x19\xfd\xc8\xf1\xca\x85\x27\x06\x0b\xd0\x0f\x3f\x2c\x5f\x83\x4b\x38\x9d\x9f\xbf\x06\x2d\x91\x14\xb6\x51\x30\xfc\xf8\xca\x51\x0a\x15\xb6\x61\xfb\x67\x52\xf7\xf9\x99\xc5\x24\x4f\x69\xfc\xac\xc9\x4a\x93\xb9\xf4\xbf\x66\xfb\x65\x4a\xe3\x58\x10\x90\x48\x8e\xed\x6b\x26\x09\x4d\x22\x1f\x7d\xcd\x24\xa1\x49\x6e\xf5\x6b\x13\x8d\x76\x7e\xd6\xd4\x35\x93\xb6\xd6\x0f\x86\x98\x49\xdf\x82\x0f\x86\x98\x59\xa2\xeb\xf0\x67\x97\xce\xe1\x9b\x3b\xfa\x94\xce\xcf\x9a\xa3\xc6\x94\xce\xe1\x2f\x60\x7c\xb6\x28\x38\xaf\x70\xb4\x26\x76\xcc\x12\xa3\xbd\x4e\x4f\x59\xf0\xa0\xd1\xf1\x2f\x56\xae\xaf\x3d\x50\xcc\x4c\xf6\xda\xb8\xd9\x49\x0c\x8b\xaf\x29\x16\x4d\xd8\x05\xe3\x66\x27\x61\x35\xbe\x66\x7e\xa7\x53\xb8\x01\x9b\x62\x7e\x57\xbc\x82\xf9\xe5\x26\x6e\x8a\x34\x2f\x2b\x5e\x01\x70\x89\x70\x7e\x3f\x74\x2c\x71\xf6\x3e\x4c\x45\x34\x7a\x94\x19\x89\x3d\x45\xee\x98\x1a\x0b\xff\x9d\x1d\xe9\x8d\xf6\x74\x94\x7f\xfe\x4a\x37\xe6\x4a\x62\x05\xba\x20\xa1\xad\xb3\x06\x5f\x07\x0f\x13\x1d\xeb\xc7\xff\xc3\xa5\xf7\xaf\x43\xc0\x62\xbe\xa8\xaf\x83\x45\x21\x0e\xee\xd7\xcd\xef\x5a\x16\x4f\x46\x47\x6e\x25\x22\x5d\x7c\x1d\x02\x15\x3d\xdd\xbf\xfe\xc0\xa9\xc4\xa9\xcd\xd7\x21\xfc\xd0\x0f\xe5\xeb\xef\x81\x82\xf7\xf9\xe8\x07\x1b\x9e\xdb\xbc\x83\x11\xa2\xbf\xd2\xd7\xf5\x6f\xc7\x94\x6f\x54\xc8\xf7\xce\x8b\x7f\xa3\x82\xfb\x74\x4e\xfb\x1b\x15\x94\xc2\x6f\x9e\x6f\xe0\x40\x92\x72\x7e\xa3\x1d\xf5\x31\x9f\xc0\x09\x65\xba\x9c\x6f\xb4\xf3\x4a\x63\x01\x9c\x7d\x84\x6d\x74\xa8\xf6\xb8\xef\x07\x0e\x35\x73\x10\x7c\xa3\xa3\x51\xd7\xbb\x7c\x03\xa7\x9c\xee\x40\xdf\x18\x20\x1d\x3c\xb2\x63\x1e\x6e\x9c\x1d\xbb\x8e\xe9\x85\x4f\xec\x09\xa2\x10\xf6\x0d\x35\xa0\x2a\x5f\x57\x01\x2b\x14\x94\x06\xd9\xed\x24\x28\x8d\xe5\xa2\xdb\x05\xde\x02\x32\x05\x4d\x22\x6f\x7e\x86\xb0\x4e\xf8\xa7\xcf\xf0\xd5\x17\x99\x9a\x0f\xaa\xf7\x21\xf1\x80\xe9\xb0\x1a\x13\xbb\x7d\xc0\x82\x1e\x44\x84\xf8\x2e\x1b\x77\x63\x42\xac\x0f\x01\x43\x8d\x86\xd5\x0f\x01\x43\x8d\xb6\xd8\x0f\xf7\x78\xa3\xd9\xf4\x53\x33\xdf\x36\x5a\x5a\x3f\x8f\x0f\xe2\x50\x71\x8f\x73\x03\x2b\x40\x0e\x0a\xff\x35\x1f\x4c\xaa\x55\x3f\x05\xbe\x0f\x95\xa6\x9f\xc2\xb7\x71\x46\x83\xc3\xa0\x6f\x7d\x9c\xf0\x83\x4e\xf1\x6f\x81\xcd\xba\xb0\xc0\x0e\x7b\xe3\xbf\x6d\xbf\xbd\xf8\x6f\xff\xf3\x53\x46\xd4\xda\x2e\xee\xfc\x77\xa2\xb1\xcc\x02\xdb\x3b\x83\xff\x22\xb9\x29\xff\x35\x28\x90\xc4\x7f\x2d\x55\x67\x7c\x0a\x89\x4d\xf9\xef\xb7\x3b\xe2\x8b\x01\xbf\x65\xce\x2b\xbc\x96\x39\xab\xe6\xb3\x1c\x97\xcc\xb7\xd9\xf5\x92\xe3\x61\xdd\xff\xc6\xc3\x86\x37\xc2\x96\xf7\x55\xc9\x04\xe2\xdf\x07\x74\xcf\x19\x13\x08\x74\xcf\xf8\xf7\x45\x3d\xfb\x6d\xc7\xb4\x52\xc1\xfc\x7d\x86\x5e\xc4\x6d\xf4\x9d\x5c\x34\xfc\x17\xd0\xb9\xfc\x17\x01\x98\xfc\x77\x77\x95\x9b\x14\xce\x99\xbc\xd5\x3f\x60\x10\x93\x53\xfa\x3e\x23\xff\xeb\x5f\x44\xa7\xef\x33\x1a\xd5\x98\x1a\xfb\xfb\xd4\xd6\x36\xfe\x35\x38\x56\xf7\x3b\x2c\x29\x01\x05\xc4\xd3\xe1\x96\x94\xc0\x61\x3a\x30\x7d\x49\xc9\x34\xb2\xcd\x81\xe9\x77\x81\x31\x7f\xee\x59\x55\x52\x32\x52\xd1\xca\x61\xd4\x4a\x4a\x82\x84\xad\x95\x5f\x91\x73\x90\xe3\x89\x0b\x1e\x7b\xc5\x0b\x8e\x21\x25\x3a\xf6\x60\x97\x15\x7e\xc5\x7c\xdb\xa6\x3b\x17\xec\x82\x07\x6d\x44\x81\x11\x57\x0f\xdc\x2b\x29\xbd\xc8\xb7\x9e\xd9\x28\x74\xfc\x6e\x05\x28\x29\x23\x2a\xd1\x13\xdc\xef\x02\xa4\x95\x2b\xde\xd3\x0c\x3f\x15\xe7\x0f\x4b\x82\xa3\xd9\x4a\x2d\x0a\x8c\x75\x29\x87\xd7\xdd\x05\x46\x53\x5c\x87\x5d\x52\x36\x1e\x62\xcc\xf8\x0a\xb4\x62\x8e\x9b\x5b\x52\xb6\xeb\x79\x14\x7e\xb6\x98\x4c\x3d\x3c\x90\x61\x17\xd8\x68\xa7\xf8\x67\x0b\x92\xb1\x7a\x04\x79\x49\xc5\xbc\xc3\x99\x26\xbd\xa4\x62\x9b\xb2\x67\xae\x6d\x99\x48\x1f\x5a\xa2\xa0\xa3\x51\xef\x7a\x81\xce\xc1\x9d\x1e\x77\x81\xc1\x97\x4d\x0e\xae\xd8\x05\x3e\x3c\xbe\xb6\xa4\x72\xc3\x9e\xb5\xd8\x31\xc4\x2c\x39\x40\x4b\x49\x05\x29\x98\xdd\x7f\xac\xa4\x62\xec\xca\x68\x9c\xc2\x6a\x24\xa5\xb9\x0f\x5b\x49\x15\xd6\x88\x34\xbc\x8d\x0a\xe3\xa5\x87\x34\xec\x02\xeb\xba\x44\x1b\x7f\x5b\x0e\x76\xc1\x84\x37\x97\xef\x8f\x6a\x72\xcd\x68\x85\xaf\xc0\x37\xd8\xc9\x44\x49\x55\x30\x38\x6e\xfe\x0a\x76\xc5\xa5\xe0\x5d\x60\x6a\x1b\xd7\x18\x97\x54\x6f\x48\x75\xf1\x59\xf3\x22\x1c\xee\xf9\xbf\x0b\xce\x76\xe0\x57\x8c\xb1\xea\x0e\x1d\xbc\x0b\x9e\xdf\x12\x6b\x49\xf0\xb5\x6a\x32\xa3\xa0\x61\x0a\x13\x0b\x3e\x0c\xce\x0f\x50\x1b\x58\xca\xc9\x27\x90\xf9\xbd\xb5\xcc\x02\x20\xd1\x25\x16\x18\xbf\xdc\x84\xc7\x03\xfc\x72\x13\xae\x6d\xbb\xd0\x0f\x6e\xdc\xf6\xce\xdf\xd6\xbb\x92\x9a\x75\x7d\x96\xf8\x0a\x2c\xf0\xae\x87\x2e\xa9\x63\x19\xdc\x12\x59\x52\x47\x3f\x1a\x0f\x61\x87\x5f\xab\xab\x9c\x4a\xea\xe6\xad\x3b\x5a\xf7\xcf\x76\xe8\xc3\x63\x7f\xf4\x07\x86\x7f\x12\x14\xb0\x6f\xd3\xcd\x33\xbb\xe0\xd8\x19\x0b\x0b\x80\x1b\xcb\x7d\x0a\x06\xaf\xb9\x29\x64\x17\xd8\x79\x49\x3c\x73\x23\xc3\x7c\xb5\x12\x0b\x4e\xa3\x95\x05\x70\x02\x6a\x85\x05\xd6\xb1\xce\x33\x37\x2a\x32\xba\x4c\x16\x98\x40\x3e\x66\x3c\x01\xbf\x21\x77\xb7\x28\x69\x22\x10\x5a\xb8\x1d\x66\x85\x88\xc0\xc5\x9e\x30\x6e\x3b\x08\x73\x49\x62\x30\x84\xbd\x70\x5d\x64\x62\xe5\x8a\xbf\x22\x98\x8f\xcc\x85\x5a\xc0\xa5\xca\x8b\x05\x66\x23\x1c\xce\x9a\x97\x84\x24\x6e\xa3\xc5\x13\xf6\x59\x19\x5c\x4a\x64\x32\x9a\xee\xc1\x5c\x12\xbc\x21\xba\x0b\x00\x25\xc1\x83\xa0\xed\x5d\xf8\x7f\xbd\xbe\x4a\xba\xcc\xcb\x77\x25\xf6\xfa\x12\xf8\x5c\x73\x5c\x30\x52\xf7\xce\x25\x81\x09\x5a\x3c\x52\x64\x17\xbc\x28\xf0\x61\xdc\xe9\x38\x54\x7a\x27\x0f\x82\x70\x27\x61\x80\xe5\x68\xb9\xf6\xb0\x24\xa0\xe2\xb6\xc9\x1d\x09\xcb\xd1\x74\x73\x41\x49\xc0\x9b\x15\x47\x26\x28\x09\x60\xb1\x4d\xb8\xab\x6f\xf8\x62\x37\x6e\x2f\x00\xa2\x8e\xc6\xd9\xbb\xb1\xdf\x3c\xbe\xbd\xa4\xfb\x3b\xaf\x34\x16\xe0\x94\x37\x7f\x05\x80\x9e\x14\xc6\x77\xc1\x8b\x9b\xc4\x5f\x81\x4d\xa1\x09\x6f\x12\x80\x45\xce\xc2\x55\x04\xd0\xe3\x4c\x35\x9e\x38\x9f\xe5\x57\x8c\xd8\x8e\xc4\xae\xc3\xc8\x30\x3d\xca\x65\x17\x40\x24\x8d\xaf\xc0\x08\xdb\x48\x4b\xa0\xbc\x97\xc6\xcb\xf8\x31\x1d\xc0\xe8\xbc\x49\x1e\xd3\x01\xd0\x5e\xba\x0b\x8e\xd1\x9e\x8d\x42\xcf\xde\x78\x10\xa0\x45\x1f\x89\x94\xf3\x81\x9e\x69\x90\x60\x3f\x20\xc7\x8d\x5c\xc2\x03\x2f\xab\x1e\x5d\x7f\xe0\x11\x14\x5d\x37\x9b\xd5\x18\x2b\x0a\x10\xd6\x1e\x63\xb1\xb3\x33\x33\xaf\xc9\xc7\xbc\x9b\xe6\xe2\xea\x3f\x50\x20\x36\xde\xac\x06\xd3\xb7\x0b\x38\x85\xb6\x94\xdd\x01\x11\x4a\x7a\x91\x3b\xdd\x5d\xa2\x4b\x82\x32\x79\x64\x4e\x10\xb0\xd0\x5a\xe3\xc6\x7d\xcd\xf8\x33\x16\x07\xf7\xda\x9d\x37\x33\xb9\xa6\xb7\x41\x7d\x41\x6a\xf3\x36\x28\x9e\x66\x3c\x81\x33\xcc\xdb\x19\xaa\xe1\xee\x61\x06\xbb\xc0\xf4\xe0\xbd\x47\x1b\x46\xb0\x07\x07\x07\x04\x2a\x69\xe4\xcd\xa0\x1b\x1e\x99\x0c\xdf\x6b\x9c\xc6\x70\x9b\xe7\x2e\x78\x30\x85\x2c\x80\x5f\x4c\x50\x0a\xc0\x12\xcd\xc2\x9d\xfc\xda\x55\x3b\xdc\x37\xa0\x24\xe0\xf0\x88\x63\x7d\x94\x04\xec\x18\xf1\x50\xe7\x92\x80\x6d\x21\x1e\x56\xbc\x0b\xc0\x9b\x71\x92\xf5\x58\x22\xa4\xb0\xe0\xc5\x51\xcf\x2c\x80\x1f\x08\xb9\x04\xc0\x50\xcc\x45\x62\x0b\x18\x8a\xb9\x78\x4c\x01\x43\x31\x83\x67\x3e\x12\x61\x99\xf1\x8a\x7d\x45\x48\xc1\xd5\x66\x7d\x3a\xf2\x4b\x49\x3a\xde\xdf\xc6\x9d\x92\x14\xfe\x05\x1e\xfd\xb7\x0b\x3a\xa4\x5b\x7e\x76\x9e\xd3\xc0\xaf\x40\xcd\xe6\x19\x30\x77\x81\xa0\xa7\xf1\xc4\x42\x4f\x13\x0b\xa0\x66\x5b\x51\x60\x14\xc6\xd3\x63\x95\x04\x88\x85\xe9\xe6\xd7\x92\x00\x6e\x30\x33\xef\x09\x80\x19\x50\x61\xb5\x0b\x60\x49\x21\xd5\x06\x8c\xc0\x48\x24\x06\x08\xf1\x9f\x42\xfe\xee\x68\x7f\x83\x6b\x42\x88\xbf\x0c\x6e\x5c\x44\xdb\x8f\x4c\x72\xa1\x87\x17\xe1\x41\xb6\x90\xf0\x2c\x89\x9b\x5f\x5f\xec\x64\xd2\x64\x84\x31\x77\x99\x7c\xe5\x3b\x96\xaa\x28\xb8\x30\x85\xfc\x0a\x94\x5e\x2b\xfd\x83\xbf\x45\x49\x26\x94\xe6\xde\xb9\x02\x08\x79\xed\x95\x1f\x40\x34\xaa\x04\x57\x8a\x68\x54\x2a\xf3\x4a\x42\xf4\xe9\x14\x72\x72\x88\x3e\x9d\x42\xd2\x01\xf1\x75\x54\x52\x70\x84\x4b\xce\xc2\xe3\x06\x99\x72\xc6\xe5\xfe\x01\x57\xdf\x93\x85\x94\xf4\xc1\x03\x23\x58\xdd\x0f\xca\x74\xe1\xc9\xf8\xe0\x0f\x96\xa5\xb1\xa0\x63\x6b\xc4\x13\x20\x83\x3c\xf6\xdf\x0d\x0a\x1e\x4f\x18\xd3\xd5\x66\x74\x5d\x71\xfe\x78\xd5\x7e\x7a\xff\x36\xb2\xed\x02\x2c\x3c\xa9\x1e\x64\x56\xda\xd0\x4a\x4e\x60\x86\x49\x07\x72\x6a\xa0\x47\x95\x05\xfd\xf4\x83\xaf\x18\xc5\xa2\xf2\xb8\xe4\x84\xc3\xe4\x38\x93\xbb\x00\x5c\x98\x53\xdf\x9c\x5c\x67\x5d\x58\x70\x0e\xd3\x60\xc1\xd1\x99\x89\x17\xc0\x55\xc6\x23\x1e\x4b\x4e\xeb\x34\x3a\x59\xf0\x82\xc8\xf1\xb3\xc8\x2c\xef\xa1\xf8\xbb\xe0\x8c\x65\x79\xc1\x73\xb6\x03\xdb\x30\x69\x92\xe6\xd6\x5d\x30\x7f\xeb\x87\x77\x01\xb4\xeb\x83\x1d\x03\xa6\x96\x63\x07\xef\x02\xcc\xc7\x60\x3f\x5e\x78\x36\xfa\xb6\xcc\x09\x9a\x04\x89\x02\xe8\x87\x29\x70\xe5\x0c\xdf\x84\xd6\xfc\x89\x7c\xf8\x08\x67\x31\x73\x86\xb6\x93\xc7\x2d\x67\x13\xda\xa6\x1b\xef\x76\xc1\x99\xd3\x28\x40\xc7\xa6\xcf\x7a\x16\x10\x5b\x4e\x61\x96\xf9\xdb\x82\x5a\x72\x7e\xd7\x6f\x63\x70\xc9\xc5\xb4\xae\xc3\xb3\x23\x95\x5c\x1a\x18\x3e\xee\xa0\x32\x91\xa9\xd1\x4f\x79\x2e\x87\xe1\xf3\x9b\x24\x17\xc4\x46\xb8\xc3\x7b\xc9\xc5\xd4\xd2\xc4\x50\x2c\xb9\x28\xe8\x73\x63\xa3\x1f\xf4\xb2\xbe\xf9\x73\x35\x35\x5c\x77\x0f\x91\x5d\x00\xa6\x5c\xe2\x09\xe3\x66\xc9\x7a\xe4\x9a\x20\x19\x73\x3e\x6a\xc5\x0e\x72\x0e\x30\x5b\x64\x55\x1e\x31\x85\x15\x5e\x66\xcd\xef\xef\x5c\xb1\x93\xc9\x94\xe7\x0a\x81\x8b\xaa\x83\x5c\x8d\x60\x13\x8e\x66\x17\x3c\xe0\xaa\x7d\x07\x59\xd8\x52\xee\xae\x95\xdf\x05\x03\x13\xc4\x27\xe0\x3f\xb9\x0a\xc7\x62\xc3\x67\x72\xd5\x92\x21\xc4\x76\xf7\xa9\xdb\x05\x46\xc1\x1d\x65\xa2\xe4\x06\x27\xc4\xce\xbd\xde\x2a\x34\xea\x9c\xd3\x06\x6b\x26\xf9\xbb\xdc\x20\x93\xb8\xdf\xc9\x2e\x00\x51\xca\x7c\x02\xaa\xa5\xd2\x58\x80\x5c\x1e\xee\xbe\x51\x72\xbb\xcf\x58\x7c\x3e\x9a\x02\xe0\x29\xb1\x63\xe6\xb6\xd9\x5c\x6f\x56\x72\x87\xa3\x5e\x73\xbd\x48\xee\x82\xf0\x28\x6e\xcb\x0e\xd6\xd4\x53\xf1\x97\x3c\x12\x7c\x90\x38\xa7\xc3\xe6\x63\x78\x76\xff\x5d\xb0\xd0\xa8\xb7\x01\x63\xc0\xf0\x04\x4d\x65\xff\x84\x66\x8d\x4f\x98\x84\x3e\x3c\xb2\xbe\xe4\x61\xec\xed\x18\xd1\xc6\x0d\xf7\xc8\xc4\x36\x8e\xf6\xa5\xfc\x8b\x04\x96\x07\xcc\x5d\x99\x34\x6d\xc0\xc5\xb7\x93\x96\x0c\xa3\x14\xad\xbb\x2a\x22\x8f\x17\xe2\x7b\xe5\xc8\x41\xf4\x63\x3a\x07\x32\xe0\x66\x52\x8a\x01\xb9\x31\x71\x9d\x87\xad\xc0\xe8\x3c\xb2\xc3\xee\xe1\x26\x5c\x81\xf1\x41\x8b\xe2\x4c\x57\x1e\xa6\x79\x68\x0e\x0e\xb9\x0b\xa0\xb9\x64\x1b\x33\x9d\xeb\xdf\xbb\x3e\x91\x5d\x55\x5c\xe0\xda\x24\x12\x22\x99\xcf\xde\x04\x08\xfe\xf0\xfb\x2a\x4f\x04\x2e\x92\x83\xca\xd3\x88\x4b\x0f\x6a\x33\xe1\x5c\xda\xfc\xba\xce\x73\x3c\xbf\xbd\x1c\x76\xc1\x8b\xbc\xc5\x7c\x65\x40\x83\x1a\x1d\xb3\xeb\xa9\x05\x39\x9e\x16\x4c\x3f\xa8\xf0\xd8\x34\xd3\x0a\x62\x70\x10\xf0\x0b\x2f\x8e\x09\xe5\x5e\x10\x86\x79\x9d\xae\xf3\x15\x90\x30\x57\xed\xef\x02\x48\xeb\x12\x4f\x60\x7b\xf1\x64\x4c\xd3\xc4\xf4\x11\x5f\xb1\xfb\xaa\x39\x3c\xed\x2e\x00\x68\x67\x0c\xee\x39\x74\x91\x83\x3b\xfe\xdc\x3c\x90\xd3\x08\x76\xef\xbc\x26\xa7\x61\xf7\xf4\xb8\xc0\x26\xfc\xb9\xe3\x8a\x9b\xf0\xd8\x18\x24\x2e\x13\x5e\x82\x99\xe4\x78\x2a\x38\x0d\xee\xfb\xf9\xc1\x07\x86\x44\x6e\x7e\x70\xc1\xea\x5c\xa8\x0f\x44\x9f\x07\x72\x1a\x37\xd8\x72\x6c\x87\xef\x68\x73\xd8\x31\xdb\x85\x63\x94\x28\x78\x40\x5b\xfd\x2b\x52\xe0\x58\x28\x83\x05\x38\xa1\xbc\x48\x05\x4e\x42\xd4\x3b\x65\x58\xc6\xda\xe2\x62\xcb\xe1\x11\xc9\x25\x08\x80\x3f\x26\x77\xa1\x40\x86\x5f\x2d\x9e\xb8\x7f\x7b\x8a\x94\x4d\x01\x6c\x4e\xc9\xcf\x08\x72\x25\x50\x26\xc9\x02\xda\xda\xb9\x71\xc5\x80\x28\x5a\x30\x27\x02\xf2\x23\xf1\x04\xe2\x30\x3a\x6f\x12\x19\x00\xdf\x25\x4f\x24\x03\x9a\x6d\x5e\x1c\x32\x4f\x24\x37\x5f\x99\xc7\x27\x8d\x5f\x11\xdc\x13\xe4\x12\x10\xc1\xd6\xdc\x69\x79\x17\x40\xb7\x99\xd9\xa8\x69\xa5\x67\xe2\x2e\x14\xa4\x56\xea\xdc\xb8\x62\x8a\xdb\xb6\x12\xbf\x62\x31\x14\xbd\xd4\x78\x02\x14\x9c\x34\x48\x6e\x5c\x60\xbc\xf2\x05\x8a\xec\x4e\xce\x4b\xcc\x9e\xd0\x26\xa9\xaf\x98\x1e\xa0\x77\x6e\x3a\x41\x8e\x4a\xaa\xff\xb2\x98\x4c\xd2\x0b\xaf\x38\xb1\xcd\xdf\x1c\x58\xa7\x64\x01\xa5\xf3\xf4\x85\x25\x2f\x44\x28\x0d\x57\x75\xe7\x05\xb2\x45\xdd\x4a\x5e\x26\x6f\x8e\x41\xa6\x60\x99\xe1\xb3\xa7\x5f\x4f\x20\x97\x77\x89\x02\xf8\x1c\x93\x39\x59\xe6\x6b\xd4\x26\x2f\x8e\x85\x10\xd3\xc5\x6d\xb9\x40\xfa\x68\xc5\xc9\xeb\x04\xfa\x37\x3e\x61\xd1\xeb\x43\x78\x5e\x10\x48\x28\x8d\x3c\xf3\x02\xa3\x25\xbc\xae\x11\x37\x28\xc1\xdf\x2d\x39\xba\xde\xcc\x02\xc1\xda\xfa\x24\x23\x1a\xaf\xc9\xaa\xff\x72\x81\x59\x4e\xf8\x3c\x1a\x57\x71\x7d\x60\xba\x38\x9d\x97\x9f\x2e\x5f\x78\xa4\x5e\x1e\x54\x89\xe4\x0b\xee\x73\xd4\x3f\xe7\xcb\x90\xd5\x67\x22\xe3\x86\xac\xb8\xb2\xc8\xb8\xdd\xc0\x6f\x1f\x5c\x56\xe4\x9b\x9a\x83\x22\xc8\x0d\x45\x65\xe5\xbd\xf9\x9c\xf0\x09\xd7\x80\xe4\x67\x42\x24\x23\xa3\xf2\xc0\x81\x7d\x70\x03\x3e\xae\x29\x5f\x2c\x80\xa0\xe3\xe2\x54\x86\x46\x88\xce\x5c\x25\x03\x9e\x9d\x46\xf2\x5d\xa0\x56\xc0\xc3\x04\xe4\x6a\x3a\xd6\x97\xfc\x1e\xff\x0a\xee\xea\xf7\x06\x81\xe2\x9c\x02\x92\x77\x0a\x6f\x78\x38\xe1\x0d\xea\xc1\x33\x90\x5b\x9b\xc3\xe0\x94\xfc\x42\xd2\x8e\xb1\x00\x13\x73\x66\xde\x57\x5a\xd0\x53\x1e\x48\x35\xc7\xc7\x31\xb8\x13\xb4\xc2\x4d\x8f\x77\x2f\x1c\xd3\x5a\x73\x89\x3f\x03\x9e\x70\x50\xbd\x93\x01\x36\xd8\x27\x79\x4e\x3d\x3a\x23\x2e\xb6\x1e\x43\x01\xaf\x7c\x33\x4a\x6f\x6e\x8d\x05\x47\xeb\x4f\x5e\xc4\xb0\x71\xf2\x98\xe4\x78\x3e\xe0\x00\x50\x87\x96\x3f\x50\x9b\xc5\xcb\xe7\x33\x06\x67\x52\x87\x56\xd2\xd9\x63\xce\x8b\x94\xd4\x30\x41\x7e\x93\x94\x04\x37\x3c\xea\xe3\x4b\x5a\xc7\xe8\xc1\x57\x8e\xe0\xe7\x24\xbd\x24\xdc\x46\x64\x53\xb7\x1c\x03\x63\x94\xb7\x91\xe1\xfd\x47\x2d\xca\x66\x68\xf0\x59\x3e\x31\x8f\xef\x3c\x9f\xb8\xf2\x6f\x3f\xab\x52\x60\xce\x5c\x54\x9a\x94\x7c\xa2\x50\x5d\xd0\x29\x25\x41\x00\xf5\x7b\xa2\x94\xa3\xda\xf5\xe3\x51\x2a\xec\xce\x9e\x7e\x68\x17\x18\xc5\x22\x1d\x28\x15\xc1\x66\xee\x86\x5d\x4a\x7d\xc1\x13\xb9\xee\xaa\xd4\xa3\x00\xf2\xdb\xb9\x54\x80\x99\x34\xbf\x6b\x0a\x8c\x62\xf4\x83\x2d\xa5\x1d\x36\x8a\xcb\xd0\x90\x80\x90\x7b\xbd\xc0\x28\x36\x96\x9f\x86\xd2\xe0\x8f\xe4\xb0\xb4\xbb\xe0\x01\x30\x0c\xdb\xc0\x7c\x38\x70\xea\x2e\x38\xd0\x31\x8d\x05\xe7\x15\x7e\x05\x69\xc9\xa8\xd9\x2e\x1d\xc2\x01\x55\x99\xa5\xc3\x5f\xd9\x1d\xc7\x4a\xe9\x15\xb6\x49\xe7\xab\x4a\x87\x28\x34\xf8\x95\x2e\x08\xf6\xf1\xd3\x50\x3a\x30\x2f\x57\xe1\x13\xf7\x31\xee\xfb\x57\x46\xc6\x31\xf5\x9d\x5c\xc6\x39\x95\x6c\x74\x14\x3c\xc1\x19\x83\x63\xd0\x70\xef\xd0\x52\x06\xfc\x80\x79\xe5\x97\x71\x54\xbb\x12\x05\xe0\xee\x3b\x5f\xf9\x8e\xc7\xf8\x64\x41\x87\x19\x23\x0a\xa0\x41\xe5\x8c\x4d\xbb\xe2\xe8\x05\xb6\x0b\xc0\x89\x3a\x07\x58\x66\x46\x80\x90\xdf\xf0\x65\x66\x18\xa2\xb9\xd7\xe7\xa1\xb8\x2e\xcb\x94\x09\x9f\xa6\xc2\xcf\x4e\x41\x52\x14\xe7\xdd\xcb\x04\x72\x93\x67\xee\x28\x05\x0c\xf0\x98\x5c\xec\x79\xb4\x62\x7e\x6f\x96\x69\x06\xa8\xe1\xa8\x48\xa5\x08\xbc\x6f\xb6\xd8\xf1\x7f\xbf\xc0\x8a\x58\x56\x8a\x31\x79\x54\x64\x80\x95\xe1\xbe\x17\x78\x62\x37\xbf\x05\x8a\x40\x75\x47\xfb\x55\x91\xe3\x70\xe0\xb7\x6c\x11\x43\xa3\x1e\xc2\xc9\x5a\xd0\x4b\x8a\x2b\x09\xca\xaa\xb0\x70\x39\xcb\x5d\xd6\x51\xaa\x39\xf3\x57\xd6\x38\xf1\x7f\x7c\x65\x9c\xe4\x47\xfe\x15\x5c\xee\x63\xc6\x13\xeb\x84\x1d\xfa\x13\x97\x45\x70\xcc\xe2\x3c\x78\xb9\xa0\x88\x2a\x1c\xed\x75\xc8\xb1\xd3\xf8\x72\x1d\x57\x46\xae\xe2\x05\x5f\xec\x46\x02\x75\x1f\x8d\x3d\xc9\x20\xc2\x1f\x1b\xd5\x08\xe5\xae\x67\x2c\x4e\x07\x90\xac\x77\x24\x1e\xea\x7b\xe0\x8a\xe3\xa1\x46\xb8\x14\x3d\x54\x77\x01\xf2\x70\x70\x59\x91\x1c\xae\x53\xe2\x2f\x0f\x38\xa8\xca\xc1\x3d\x70\xbf\xcd\xfc\x2c\x32\x87\x31\x62\xb2\x94\xa7\x1f\xe7\xcf\xc6\x82\xfe\xe7\x97\x7b\x68\x29\xc8\xa7\x35\xc8\xda\x95\xe7\x28\x19\xfd\x56\x2c\xcf\x3a\x67\xd8\x87\xff\x18\xc1\x6e\x8b\x04\xfb\x81\xf5\x32\x93\xd8\x3e\x27\xf9\x7d\xb4\x71\x9f\xb5\xf5\xd1\x3e\xcf\x49\x8f\xcf\xc1\x3d\xd0\xfa\xf3\xc8\x3e\xcf\xf1\xd8\xf5\x02\x64\x5b\x6a\xd4\x06\x17\x64\x5b\x12\xda\xaf\x0a\xe2\x38\xa4\xf1\x02\x43\xd6\x9b\x59\x9c\x17\x29\xef\x31\x8b\xf0\x16\x40\xca\x95\xe6\x4e\x97\xa5\xbc\x50\x64\x17\xbf\x59\xcb\x8b\x40\x41\xcf\xaf\x54\xca\x7b\xc2\x64\x48\x7e\x90\x79\x62\x74\x52\x2c\x04\x15\x4c\xea\xae\xca\x7b\x86\x2f\x7c\x42\xa1\x94\xe7\xc5\x01\x33\xd1\xa0\x52\xad\x68\x85\x19\xdf\x0d\x27\x45\xdb\x19\x9c\x2f\x03\x8c\x2f\x6d\xf1\x32\x36\xf0\xea\x7d\x2b\xb2\xe0\x3e\xbb\xd0\xbb\xae\xf0\x28\x4d\x1c\xcb\x37\x61\xd0\xe2\x2b\x1f\x1c\x59\x1b\x6f\x56\x78\x87\x31\x49\x4d\xa9\x09\x6e\x95\x9e\xf7\xa6\xd4\x84\x49\xf6\x4c\x42\xbb\x00\x77\x9e\xef\xd3\x9a\x06\x94\x8c\xce\x03\xd4\x34\x91\xb5\xdb\xb7\x76\x3d\xbc\x08\x09\x4a\x4d\x40\xcd\xf3\xbc\x23\xa5\x26\x9b\xc2\xe6\x39\x87\x77\x01\x74\xac\x2e\x60\xd4\xf4\x22\x5e\xc4\x6d\x23\x35\x43\x1d\xea\xd9\x3c\x4a\x3d\xfa\x62\x4f\x68\x59\x6a\x46\x3f\x4a\x3c\x01\xb5\x9b\x83\x60\x97\x9a\x6f\xb4\xe1\xb4\xb0\xe6\x07\x32\x89\xdf\x68\x15\xa8\x5e\x9d\x64\xab\x66\x33\x41\x2c\x07\xf0\x29\x35\x83\x35\xe5\x76\xa8\x25\xe1\xde\x14\x16\x18\x73\xd2\xdd\x3b\x76\x17\x7c\xd0\x7e\x7a\x3f\x8a\xd9\x68\x86\xf8\x3d\x51\x8b\xd9\x6a\xbb\xbb\x2f\xee\x82\x23\xe8\x24\x16\x20\x62\x44\x58\xd0\xcf\x5d\x23\x2c\x50\x78\x3f\x78\xd7\x8b\x11\x83\x46\x1e\xa0\x16\x44\xd4\x50\xb8\xa9\x45\x8e\x78\x19\x4f\x5c\x90\x48\xf9\xc4\x51\x0b\x0d\x0e\x0e\x7e\xbc\x99\xfb\xa3\xd8\x75\xd2\x3c\x9a\xad\xd4\xf2\x62\xd6\xff\x49\x02\xab\x05\x7e\x35\x8e\x70\xbb\x0b\x40\x8f\x9c\xc8\x55\xe0\x87\x11\x4d\x66\x17\x5c\x10\x57\x59\x90\x41\xb0\xfd\x74\xd5\x8a\x6b\x97\xda\xf6\x5a\x1f\x08\xb4\x4e\x9f\x6b\x45\xe0\x1a\xbd\x55\x6a\xb5\x8b\x63\xd0\x80\x53\xeb\xb1\x60\x70\xf3\xc0\x11\x8b\xb1\x31\xbb\xe0\x38\x92\xb3\x0d\x28\x80\xc8\x63\x55\x68\xb9\x3b\x1d\x17\x6b\x3b\x98\x70\x4e\x9f\x2b\x74\xd8\xdd\x7d\x5e\x4b\x6d\x70\x81\x59\x6c\xa3\x99\xb6\x6f\xd0\xf4\x5d\xdb\xc4\xfc\xba\xc2\xa3\xc2\x9f\x9f\x90\xf3\xa5\xf6\x0c\x87\x1f\xce\x29\xb8\xc1\xc6\x7b\xb3\xf6\x0e\xa6\xdc\xb9\x9f\xda\x3b\xf4\xe0\x93\x6d\x9c\xfb\xdb\x6f\x81\xda\x01\x5b\xcf\x9b\xb5\xf6\x05\x35\x13\xfb\xd1\x61\x17\x20\x53\x5e\xfb\x0d\xc8\x43\x6e\xc0\x7e\x98\x9d\xc1\x27\x1e\x28\x91\x84\xfd\x40\xce\xe3\xcc\xd5\xef\x1f\x08\x94\x5f\xa4\x75\xa4\xe3\x75\xc7\x02\x0b\x9f\x91\x38\x7f\xf0\xaa\x92\xc6\x36\xe0\x58\x3f\x84\xc3\x1f\x50\x77\x51\xf3\x50\x47\x3f\x6e\x78\xc2\x82\x0f\xde\x5d\x3e\x1f\xe3\x68\xa6\x38\x96\x21\x38\x6e\x24\x1d\x63\x41\x54\xe6\x2e\x1c\xd7\xb1\x1c\xb0\x8d\x0b\x42\x0a\x89\xdc\x51\xbf\x8f\xf8\x0a\x60\x6e\x3c\xf0\xb3\xd4\xa1\x50\x33\x71\x6d\x67\x3a\x7e\x57\xfe\xc4\x04\x1c\x18\x1d\x85\xea\x44\x9c\x30\x95\xbf\x75\x16\x88\x0f\xa4\x69\x13\xf4\x48\x5c\x1f\x51\x67\x3d\x86\x57\xef\xfa\x1c\x60\xa8\x0b\x0b\xc0\xea\x3a\xf2\x56\xa9\xf3\x82\x12\x89\xd4\x66\x82\x82\x2f\x12\xca\xf9\xc0\xbf\xbe\xf1\x15\xc0\xfe\xa4\x68\x03\x0a\xb1\xc1\x63\x3a\x5f\x68\xc7\x39\xc9\xd0\x5c\x36\x6a\x4e\xea\x3a\x9c\x06\x09\xd4\x75\x9d\x7d\xea\x73\x0a\x74\x0f\xc2\x2e\x96\x0a\xa8\x8e\xf6\xab\x00\x82\x9f\xa7\xfa\x2d\xf5\xce\xa0\xf1\xbc\x15\x6f\xe0\xf4\xd2\xa0\x55\x9f\xa3\xc1\x71\x7b\x42\x45\xb8\xed\xa0\x3a\xa6\x3e\x10\xb7\xe3\xde\x3c\x8c\x16\x39\xaf\x7a\x9c\x8d\x1c\x99\x6f\x17\xcc\xdf\x21\xbb\xa5\x3e\xd0\x7d\x4f\x76\xec\xc1\xf5\x44\xef\xb4\x0a\x36\x6a\xd0\x02\x5a\x91\x4b\x53\x1c\x8f\x76\x17\x9c\xe0\x44\x76\x1d\x40\xe9\x63\xc5\x2b\x40\x2a\xe1\xf1\x40\xbe\xc1\x4e\x8d\x72\x45\xb6\xbc\xde\x79\xa2\x4e\x2a\x36\x77\x79\x2f\xf5\x05\x44\x43\x69\x7c\x02\x5a\xa0\xc9\xed\x00\x26\xa9\x77\xce\xd8\x7b\x1f\xb3\x59\x67\x81\xd1\x8f\x3a\xe2\x95\x0b\x86\x8e\xc9\x02\x4c\x21\xb9\x04\x24\xae\x1a\x41\x71\x91\xb8\x6a\xd0\x6a\x51\x91\x68\xa8\x51\x71\x5b\x91\x48\xa7\x15\xe7\x44\x2b\xf2\xd5\x48\xec\x53\xf8\xe3\x48\xe3\x1e\xd3\x02\x93\x4c\xea\xff\x72\x81\x69\xc1\xa1\xe6\x1a\xa9\xb9\x68\x34\xaa\x79\xab\xda\x71\x1b\x41\xd2\x11\xe0\x31\xc8\x72\x57\x84\x78\x34\x0f\x99\xdc\x05\x0b\xc4\x96\x6d\xc8\x89\xf7\x66\x27\xe5\x3c\xc1\xcf\xc2\x92\x19\xcb\x0a\x06\xb2\x15\x5e\x60\x8a\xc0\xa7\x16\x23\xbf\x61\x48\x22\x8f\x05\x27\x99\x96\x49\x5b\x0d\xd9\x7f\x4f\x05\x1b\x85\x4f\x0c\xb5\x39\x15\x3e\x31\x7d\xc4\x57\x70\x09\xd2\xbb\xab\xea\xb1\xc5\xfd\x2a\xc0\x2a\xf2\x56\x04\xda\x79\x4f\x5c\xa3\xaf\x01\x5f\x92\x13\xf4\x01\x84\x20\x46\x6b\xa0\xd6\x79\xd1\x69\xa8\x02\xb9\x99\xe9\x45\x4b\xfd\x8e\x77\x36\xc9\xf1\x27\x47\xcb\xd6\x59\x00\x07\xb9\x16\xaf\x1c\xb0\x46\xdf\x5e\x70\x6a\x19\x9e\x96\x6e\x17\x4c\x88\xdb\xec\x98\xd9\x4b\x7b\xe2\x8c\x7d\x66\x0b\x1f\xf4\x01\xaf\x70\x59\x19\xbd\x72\xb4\x0a\xb5\xdb\x8a\x82\xb3\x83\xe2\x15\x63\x1b\x2a\xe9\xd1\xa7\x7f\xe1\x8a\x94\xfa\x7d\xd8\x41\xce\x61\xb7\x04\x25\xbf\xa3\x73\x95\x96\x2a\x28\xc5\x8c\x82\xc3\xda\xf1\x95\x0a\x18\x24\x97\x16\x5a\x82\xb1\xd2\x71\x90\x77\x01\x4e\x97\x73\xd8\x2d\x75\xec\x8f\xc5\x36\x90\xc2\xc7\x03\xe3\x76\x01\x16\xbb\xc7\x13\x38\x4c\xd1\x0f\x81\x73\x5b\x63\xc1\xd1\xa1\x0d\x7e\xf6\xc1\xd6\x76\x6d\x4e\x4b\x60\x09\x3d\x09\xfa\x2e\x78\xa0\xfc\xf5\xaf\x64\xb8\x46\xd0\x0d\xaf\xe5\x74\x6e\xb4\xea\x05\x30\x9f\x3b\xee\x4f\x69\xb9\xe2\x54\x3a\xe5\x6c\xb9\x9d\x39\x15\x16\x60\xf5\x07\x1b\x05\x48\x26\x59\xb1\x96\x3b\x86\x3f\xd9\x68\x87\x18\xc3\x75\xc9\xc6\x47\x4c\x7a\x99\xb5\x7c\x36\xee\x62\xa3\xc7\x0d\x2f\xc6\x02\x95\x2a\xf9\xbb\x96\x2f\xe0\x17\x70\x82\x10\x54\x32\x78\x1b\xb5\x0c\x4d\xbf\x07\xc2\xef\x02\xb0\x62\xc2\x36\x8e\xe1\x55\xd8\xd3\xc3\x8a\x35\xb6\x81\x40\xd2\x5f\x73\xfa\x1d\xdb\xb5\xbf\x52\xa0\x32\x73\xd0\xc6\xd2\x4a\x3b\xea\x61\x7f\x05\x32\x49\xe7\x5d\xd3\x4a\x3f\xd4\xc1\xfb\x51\xcc\xdd\xa4\x33\x1e\xa6\x15\x38\xfa\x2e\x6e\xa9\x32\x61\x01\xe5\xf0\x0b\x20\x2a\x0b\xa7\xb0\x00\xa3\x91\x3e\x5f\xad\x1c\xd6\x34\x9e\x00\xd4\x05\x6d\x01\x0d\x51\x26\xb2\xe2\x15\x18\x5c\xc8\xbe\xb4\x82\x4d\xe7\x19\x94\x76\x01\x98\x79\x1e\x8f\x82\x70\xa0\x1e\xaf\x1c\x7b\xaf\xf3\x33\xad\xc2\x77\xbc\x73\x3e\x2a\xfc\xfb\x3d\xa5\x4f\x69\x15\x70\x0d\xf4\x5c\x68\xb5\x21\x67\x08\x3b\x56\x61\x34\xa5\x7f\x44\x33\x60\xe2\x3c\xba\xb3\x2f\xad\x0e\x80\x1c\xf8\x55\xd0\xea\xc0\x2e\x5c\x2c\x10\xd8\xd1\xca\xbf\x78\x21\xb6\x0a\xb7\x33\xba\x37\x35\xf8\xf7\x0c\xaa\x46\x9b\x2b\xd7\xa3\x0b\x80\x9a\xa4\x73\x4a\x43\xa0\x7c\xe7\xf5\xdf\x10\x28\xdf\x1d\xe9\xaf\xb4\x8a\x98\x25\x07\x40\xdd\x05\xb0\xa7\x73\x2a\x5a\x3a\x73\xe3\x5f\x69\x15\xbb\xda\x89\x6d\x6b\x15\x0c\xb5\x8b\xab\xad\x21\x30\x35\x45\x1b\xe0\x5c\x68\x1e\x6d\x88\x36\x6f\x93\x4b\x82\x40\x97\x9e\x9c\x85\x68\x4d\xc0\x97\xf8\xad\xd8\x1a\xf8\x12\x9a\x01\x1a\x54\xf8\x23\x76\x75\x33\xa9\xa5\x8f\xc5\xcf\xc2\x1f\x8e\x52\x4b\x6b\xef\x99\x53\x6f\xa3\x9b\x99\x96\x31\xc6\xa5\xf5\x13\x4a\xc7\xf3\xd7\xa1\x00\xa2\xbf\x45\xeb\xc7\x2f\xcf\xf9\xe7\x36\xf2\x41\xf2\xf0\x9e\x8e\x82\xed\xc5\x19\x1b\x08\xeb\x59\xf1\xca\x3c\x73\xea\x33\x36\x00\x24\xe3\xd1\xa5\xa5\x0d\xa4\xa1\xa4\xc7\x5c\x9b\xe0\x8f\x06\x67\x7d\x42\x9d\x91\x48\x4a\xe7\x81\x19\x62\x1b\x53\x8e\xb0\xe4\x93\x3c\x15\x79\xa1\xdd\xd6\xd2\xe0\x6f\x31\x2b\x29\xa7\x40\xb9\x17\x67\x07\x50\xb5\xd3\xd3\x64\x97\x26\x50\xde\x78\x16\x8a\xd2\x04\x60\x0c\x83\xfd\x10\xa0\x32\x65\xee\x42\xf9\x70\x93\x70\xd6\xe5\x03\x02\xaa\xcb\x57\x4d\x00\xca\x97\xb8\x93\x05\x41\x14\x54\xcb\x36\x01\x77\xec\x20\x08\xa5\x2d\xc8\x9b\x74\xe4\x6c\x2b\xc1\x9e\xee\x32\x6b\x5b\xe9\x70\xa5\xde\xe8\x09\x96\xe9\x24\xa5\x2b\x63\xd3\x0d\x36\x8a\xdb\x68\xc6\x57\x20\x92\x15\xee\xc2\x75\x14\x40\xce\xd9\xb6\x55\x81\x8d\x45\x5a\xb2\xea\xc1\x36\x89\x82\xbf\x70\xd3\xca\xde\x07\x76\x90\xb9\xfa\x0b\x08\x7b\xd4\xb0\xb7\xd5\x10\x65\xc2\xb3\xbf\x1a\xdc\x2b\x3a\x5f\x39\xf0\xbf\x3c\xb7\x0b\xa2\xd0\xe4\xea\x03\xed\x77\xa6\x78\x02\x71\x82\x34\xde\xb6\x35\xcf\x7c\xf0\x2b\xf0\xea\xa0\x9e\xb6\xad\x89\xcb\xb8\x72\xb4\xe0\xcd\x18\x7b\xd9\x60\xe8\xef\x0c\x2c\x6d\xcb\x75\x57\x9c\x42\x30\xc0\x34\x8a\x35\xc0\xff\xf6\x5e\xe2\x95\x13\xbc\x10\x4f\xc0\x14\x42\x52\xba\x1c\xaa\x24\x3e\x0b\xfb\x4a\x67\x1b\x0b\x8e\x53\x95\x5d\xbf\x8e\xae\x89\x4f\x98\x44\xda\x18\x45\xd0\xd6\x05\x5b\x2d\x8f\x18\xf0\x80\x7b\xe2\xad\x08\x3c\xe0\x46\x7d\x60\x5b\xd0\x14\x74\x12\x83\x75\x1f\x1f\x38\xb6\xe1\xe2\x14\x87\x7f\xc3\x4f\x2a\x96\x01\xe2\x14\xed\xdf\x6d\x41\x9c\x8a\x5b\x71\xc1\x6f\x33\x91\x6c\xad\xf7\xe0\x9c\x71\x07\xbd\xc7\x73\x88\x83\x33\xbd\x59\xa7\x3b\x44\x03\x30\xef\x60\xb8\x66\x5b\x90\xc0\x16\x99\xb5\x05\xf5\x54\x8f\x36\xe0\xb3\x9d\x63\x9f\x82\x01\xae\xbc\xf3\xd6\x07\x7b\x53\xfd\x87\xcc\x90\xfb\x69\x3b\x5d\xb4\x0b\xb4\xf5\x9d\x4b\x35\x0a\x10\xa8\x4a\x5e\x6f\xc1\x4f\x3f\x71\x7b\x5d\x88\xa2\x9b\x24\xe9\x40\x07\x10\x9a\xcf\xdb\x01\xe6\xa5\x61\xad\x5d\xf9\x00\x36\xf2\x89\x02\xad\xae\x8b\xef\xed\x2a\x60\xa9\x48\x9f\xaf\x13\x34\x97\xe2\x15\x9c\x1d\x9e\x8c\x0b\x86\xed\xc9\x7b\x13\xa0\x04\x33\xa8\xef\x85\x2c\x58\x29\xc5\x2b\xd0\x61\x73\x27\x5c\xe6\x32\xd6\xe8\x77\xd5\x2e\xdc\x13\xc2\x5b\xf1\xaa\x08\xbb\x24\xdb\x7e\x01\x17\xce\x33\x3d\xed\x02\x20\xd3\x46\x1b\x90\xc0\x1c\x11\x6b\x17\xe0\xa8\xac\x78\x05\x4e\x76\xdc\xc4\x07\x0f\x98\xca\xe4\x06\x3c\xe0\x36\x62\x4e\x91\xda\x23\xf3\xd8\x5f\xb8\xc0\x4a\x8c\x16\x20\x6e\x9d\x67\xe7\x32\xbd\x64\xaf\xd1\xa8\xd9\x37\x99\x6c\x7d\x17\x40\x66\x25\x1d\x00\xda\x6f\xaf\xbf\x9e\x58\x60\xca\xa3\xc0\x48\x07\x85\xb6\x76\xd0\x7e\x13\x79\x5f\x60\xf9\xca\x88\x19\x5b\xc7\x1b\x99\x5f\x59\xa7\xeb\xf1\x04\xfc\x58\x79\x20\x2f\xa3\x14\x3d\xf1\x12\xbc\x0e\x22\x5b\x34\x7a\xc1\xc3\x74\x44\xc1\xc1\xd7\x64\x3f\xcc\x09\x73\x30\x9a\xa1\x5d\x37\x56\x8e\x64\xf0\x82\x13\x66\x8f\x65\x38\x6a\x15\x1e\xb7\xeb\x86\xb3\x40\x6c\x07\xa8\xee\xa8\xa9\x6b\x17\xa0\xe7\x3b\x2f\x1f\xa0\xec\x76\xba\xdf\xb4\x0b\xf8\x90\x23\xb6\x36\xbc\xdd\x7a\xcc\x3a\x54\x99\x69\xb0\x00\x19\x12\xe9\x93\xdb\x2e\xc5\x3e\xe5\xf0\xef\x84\xc8\x4a\xd2\x12\xe0\xaa\xca\xe0\x1e\xbb\x3f\xb0\x84\x64\xc5\x1e\x0b\xd9\xea\xb4\x92\xb5\x07\xce\x35\x83\x27\xfb\x59\x47\xa5\xea\xfd\x80\x0e\x8d\x89\x21\x4a\x7b\xe0\x61\x1a\x7c\xd5\x0b\x50\xdd\x44\xfa\x01\x04\xb9\x19\x7b\x1d\xca\xac\x99\x29\x71\xbc\x00\x86\xca\x12\x05\x27\x12\xc8\xb7\x94\xd6\x63\xcf\xf3\x36\x14\xb8\x2b\xf4\x95\x68\x96\x1c\x35\x00\x5f\x77\x01\x3c\x76\x28\xb3\x02\x10\x43\x42\x10\x06\x74\x04\x71\xe3\x4b\x83\x4e\x63\x52\x09\xdd\x3e\x80\xa6\x75\x32\x27\x48\x26\xc5\x14\x82\xbb\x00\xd4\x81\xb2\xf3\x49\xc3\x34\xc8\x8b\x7c\x37\x42\xa5\x38\x1f\xdf\x73\x5c\xcd\xce\xe0\x7a\x2a\x07\x67\x76\x78\x01\x90\xbe\x8b\x37\xda\x4f\x2c\x8b\x67\x59\x28\x3d\x9b\xab\xc8\xf4\x4c\x95\xa5\x23\xba\x83\x58\x82\xa5\xc3\x9e\x37\xb9\x71\x7b\x36\x35\xe4\xe4\x79\xe9\x10\x62\x85\xb1\x4e\x3d\xeb\x71\x9e\x60\xa3\xc7\xac\x53\xd8\x86\x1e\x06\xf8\xac\x7e\x2f\xc0\xc5\x72\x80\x95\x5d\x00\x55\x77\x62\x41\x87\xa3\x82\xb3\x1e\x1d\xb8\x07\xd2\xdd\xb3\xb3\x97\xe3\x5a\xe5\x26\xaa\x5e\x5e\x44\xaa\xd4\x7f\xc0\x8d\x2f\xbd\xe2\xf2\x21\xc0\x43\xaf\x50\x49\x8e\x5f\x05\xb8\x38\x9c\x84\xf5\x76\xd4\x19\x4e\x5c\x7a\xc3\xc5\xb1\xfc\xea\xee\x48\x88\xd2\xe8\x58\xde\x1b\x8c\x40\x9e\xa1\xb4\xf4\x06\xef\x3f\xf2\x47\xbd\x0d\x68\x2f\x9c\x40\x75\x80\x77\x09\x21\x20\x7a\x5b\xd0\x94\x3b\x5f\xd2\x7b\x05\x9e\x9e\x6b\x73\x36\x41\xfc\x63\x50\xfe\x51\x00\x69\x81\xf3\xdb\x01\xa2\xb3\xa2\x0d\x28\x4d\x88\x1a\xd1\xbb\x5d\x0b\x9d\xfe\x5f\xbd\xf7\xd3\x0f\x9f\x8f\x0e\xae\xb4\x3b\x19\xec\x1d\x17\x87\x63\x9c\xef\x82\x33\x38\xb6\x71\x2c\x18\xd1\x0f\x38\x0e\x53\x43\xd6\xbb\xc0\x90\x3b\xd9\xc6\x7d\x1c\x06\x7d\x4e\x01\x13\xd0\x7b\xe7\x67\x5f\x68\xa8\xfd\x64\x74\xc0\x04\xcc\xec\xf7\x55\x1f\x26\xf8\x4d\x7a\x64\xf4\x81\x09\xa2\xd1\xa3\x0f\xdc\x8a\x9e\x59\xaa\xf4\x01\x17\x67\x5e\x82\x5b\xf0\x06\xeb\xe1\x63\x19\x30\xe3\x67\xee\x48\x38\x40\x31\xf5\x45\xe9\x90\xe2\x5a\xe7\x58\x26\xf0\x2a\xe9\xda\xd8\x21\xd6\x35\x46\xf1\xf4\x79\xec\xe9\xce\x62\xf6\x69\x86\xc6\x11\xfb\xe3\xf8\xe6\xd3\x4f\xb8\xc3\xaf\xbe\x3b\xfc\x54\xe9\x10\xfc\x5a\xe6\xb1\x9f\x7a\xf0\x8e\x7d\x9f\x0a\xc0\xa5\x72\x8b\x02\x28\x4d\xf8\x8a\x1c\xfb\x26\x3b\x26\x0f\xee\x6f\x61\xc1\x7b\x2c\x6d\x3e\x38\x81\x82\x30\xf3\x78\xac\x04\x58\x5b\x37\x8e\xf7\x05\x5c\x1a\x86\x90\xf6\xd5\x0f\xc4\xaa\xcf\xfa\xe1\xc1\xa9\xb7\xee\xeb\x81\xd8\x4f\xe2\x82\xdc\x04\xe2\x70\x50\xa5\xe3\xca\x97\xe1\xfc\x73\xbf\x60\x01\xcd\xf1\xca\x41\x88\x2e\x51\x00\xfb\xa6\xcb\x57\x1d\x97\x60\x8f\xf3\x02\x60\xf0\xc9\x00\xa4\x0e\x04\x6d\x21\x00\x41\xbf\x71\xc3\x7b\x7e\xd1\x5d\x00\xd0\x29\x36\x0a\x78\x81\xce\x68\xf1\x0e\xcc\xe3\x56\x49\xf5\xee\xe3\x16\xc5\x8d\x6b\x78\xc5\xb9\xc5\xba\x3c\xd0\x03\x74\x67\xca\xfb\x03\xf6\xb6\x90\xa0\x00\x19\x98\x78\xb1\xa5\x9f\x28\xfe\xc4\x9d\xfc\x00\x33\xa4\x72\x07\x3d\xc8\xbb\x46\x1f\xc3\xfe\x20\xde\x88\x8c\x67\x7f\x90\xa1\x3a\x06\x07\xfb\x55\x23\x66\x41\x7f\x81\x59\x10\x83\x7b\x81\x7b\x49\xab\x72\x7f\x21\xc4\x16\x52\xf0\x77\xc1\xc5\x92\xbb\x10\xb6\xa7\x45\x2f\x86\x8e\x38\xee\x5e\x12\x0b\x1a\x62\xc1\x39\x16\x24\xbc\x17\x87\xe9\xda\x05\xf0\xd9\x70\x29\xae\x23\xe3\x7d\xa3\xf4\xd4\xf5\x00\xec\x3a\x9f\xd9\x15\x58\xde\x64\x1b\xfa\x89\x4a\xa6\x79\xb7\x9f\xa8\xe4\x41\x12\x0c\x94\xab\x51\xb9\x4f\x2d\xf9\xe9\xa6\xeb\xfe\xca\x87\x23\x96\x5c\xb1\xdf\x81\x09\xd5\x09\xff\x32\x00\xdb\xb4\x68\xd7\x18\xa9\x9c\xd0\x95\xea\x05\xed\xa8\x96\xf8\x04\x22\x33\x5a\xfb\x87\x84\x92\x65\x24\x81\x4e\xc0\x95\xa7\x23\x2d\x5c\x88\x4e\x18\x46\x02\xef\xcb\x2b\x73\x20\x3d\x21\x51\x1f\xcb\xc8\xe9\xe0\xaf\x7b\x1b\xb9\x20\x9c\xcd\x4f\xc6\xc8\xfd\x28\x4d\x16\x0b\xe0\xb4\xe0\xeb\x3c\xf2\x31\x5c\x3a\x9b\x3a\xa0\x8f\xef\xc4\x62\x18\xf9\x82\x79\xd4\x57\x71\xe4\x0b\xd1\x55\x85\xfd\xb8\xff\xc2\x81\x2f\x23\x23\x2e\x9c\xe6\xd1\x81\x34\x7c\x9d\x2e\x2b\xa3\x0c\x5c\x2d\x12\x05\x80\xa3\xf2\x03\x39\x0a\xf2\x2e\x79\xde\x86\x32\xca\x0b\x8f\x0c\x17\x1e\x47\x85\xb2\x93\xa2\xd0\xa8\x88\x22\x20\x3b\x34\x4e\x8a\x3b\xcf\x30\x51\x46\xed\x27\xde\xcf\x7b\x5a\x91\x12\xc8\x31\x18\xcb\x80\xcb\xca\x24\xb3\x33\xa0\x74\xed\x8c\x59\x1a\xcd\x67\xdd\xe7\xa3\x21\x7c\x84\xd7\xf5\x68\x0e\xd2\x92\x59\x80\x7d\xbf\xf8\x4a\x3b\xb8\xf8\x6c\x74\x1c\xff\x13\xef\x7a\x13\xa8\x21\x5d\x32\x1e\xed\xa4\x09\xf0\x7d\x3f\x1a\xb4\x39\xc5\x6f\xf8\xd1\x60\x26\x62\x8c\xc0\x68\x0b\x86\x5c\xbf\x9e\x46\x3f\x2a\x44\x97\x5a\x46\x9f\x80\xc2\x74\xbe\x75\x00\x3e\xb2\x17\x17\x63\x46\x87\x5a\x85\x24\x6c\x74\xd8\x05\xba\xb3\x2f\x63\x20\x1f\x0f\x63\xc9\xc6\x00\x28\x60\xe1\x04\x0d\xa4\x46\x19\xf1\xca\x7d\xac\x53\x93\x05\x50\x0c\xb0\xeb\xe3\x3d\xe8\xa4\x6c\x54\x31\x16\xce\x07\xc2\x13\x89\xe9\x5f\x06\xbc\x3a\xa6\x23\x0d\x96\x31\xdb\x51\xb9\xfb\x62\xcf\xc3\x84\x72\x27\x23\xfa\x4e\xa8\xea\x1e\x70\x3e\xee\xf1\xd9\x89\x1b\xad\x3a\xa5\x18\x92\x0f\x5a\x83\x4f\xa1\x9c\x80\x10\x9e\x4a\x39\x9c\x17\xb7\x94\x1c\x96\x90\xcb\x20\x02\x0f\x6f\xa7\x47\x43\xe0\x43\x46\x9d\xc6\x90\x23\x3b\xbb\x36\x78\xc8\xe1\x23\xfc\xae\x19\x0b\x38\x6a\x8e\x49\x58\x06\x62\x96\x26\xb1\xb6\x06\x3c\x90\x99\x7e\xa0\x0c\x78\x20\x33\xdd\x40\x19\x0b\xce\xb1\xd4\x5b\x8f\x75\x12\xbd\x91\x7e\x2c\xd8\xc0\x28\x70\x8d\x05\x98\xd3\x4c\x42\x89\x0c\x51\x4c\x48\x50\xc6\x89\xfe\xa1\x2f\xfa\xb8\x80\xbf\x40\x1b\xe9\xb8\x8e\x45\x87\xa7\xf2\xa8\x52\x8a\x33\x6b\x03\x5a\x8f\x4e\x08\x99\x81\x2c\x48\x8d\x7e\xe4\xe3\x4e\x50\x1d\x90\x4a\xdd\xc0\x1d\x61\x04\xd1\xb8\x8f\xc3\x7f\x3c\x01\xe5\xd3\x22\x85\x39\x39\x5b\x3c\xd7\xf4\x2e\x80\x1d\xcd\x2f\xd2\x71\xf7\x83\x25\xbb\x58\x70\xd4\xe5\xec\x07\x62\xfc\x18\x6b\x38\x90\x2c\x65\xc4\x4e\xbe\x11\x10\x42\x09\x61\x20\x6b\x49\xcf\x8b\x5f\xc1\xad\x48\x44\x82\x71\x23\x20\xab\xf2\xcc\xdd\x0b\xfa\x51\x67\xe7\xc6\xbd\xce\x24\xb3\xe0\x20\x7a\x65\x16\xc0\xca\x3e\x38\xa7\x37\x54\x7e\xc4\x1b\x18\x60\x4e\x5a\x10\xc7\xe7\xb8\x78\xfd\x4b\xbe\xc9\xfd\x34\x6e\x48\x6e\xf3\xa7\xc1\xbb\xd2\xd5\x4c\xe3\x01\x1c\x1c\xa1\xa4\xc6\x63\x2a\xeb\x46\x5e\x6f\x3c\x48\x72\xe7\xe0\xe3\xbb\x00\x86\x02\x92\xd2\x93\x3c\x60\x44\x27\xaf\xb3\x79\x7c\x05\x8e\x4b\xd0\x88\x7e\x98\xe8\xdd\xc8\x83\x8f\x07\xb6\x38\x22\x47\x0d\x70\x50\x9d\x26\x9e\xf1\x3c\xc7\x05\x86\xaf\x20\x11\x07\x11\x8a\xc6\x41\xa6\x9f\xa4\x8b\x2f\x36\x0f\x43\x15\xc7\x5b\x8e\xb7\x69\xbc\x02\x1b\x63\x89\x02\x98\x7a\x79\x54\x5e\xf8\xb3\x77\x5e\x93\x40\x28\xea\x83\x5c\xc7\xc1\xbb\x27\xec\xd1\x00\xde\xfd\x20\x6a\xe3\x00\xce\x7c\xa7\xdc\x3b\x80\x0c\x24\x64\x86\x07\xdc\xb5\x87\xc4\x13\xd7\x89\xc0\x99\x2c\xb0\xd3\x15\xf7\x26\x1c\xba\x5b\xe1\xed\x0c\x87\xee\xde\xb8\xab\xdf\x0b\xe7\x6f\x45\xa3\x03\x1d\xe3\x7c\x40\x0f\x17\x73\x7a\x80\xe5\x69\x27\x19\x40\x89\x97\x49\xaa\x07\x8d\x50\xa7\xa8\x3c\xa0\x11\x1a\x2b\x1a\x85\xfd\x8a\x58\x0c\x03\x20\xf0\x9d\x21\xfe\x43\x01\xf0\x40\x34\xae\xa1\x09\x2e\x63\x5c\x4a\xcd\xe7\xb8\xf1\x95\x86\x40\x55\x52\x3d\x35\x66\xb8\x55\x2e\xb6\x36\x48\x0b\x9c\x0f\x6d\x27\x24\x9f\x4f\x0c\x40\x40\x70\x5d\x14\x92\x20\x5d\x67\x06\xb0\x83\x5a\x25\xa5\xd0\x93\x47\xb2\xf1\x15\x41\x86\xec\xe8\x18\x12\x65\xac\xf8\x2c\x2e\xb0\xc4\x3d\xa6\x27\x21\x36\x99\x50\x3d\x60\xfd\xd1\xb1\x17\x56\x21\xce\xba\x02\x5e\x20\x93\x30\x28\xcc\x99\x85\x0c\x0e\x02\xf6\x5a\x8f\x9e\x22\x1f\x6e\xfe\xf5\x59\x1b\x0b\x4d\x1a\x03\x28\x3c\x8d\x3a\x8d\xf1\xc1\x88\x1c\x7b\x0c\x8e\xf6\x83\x46\xd3\x71\x32\xa8\x67\x4e\x32\x42\xfa\x06\xa5\xfc\xf1\xdd\x80\x90\x26\xb9\xf8\x60\x49\x21\xa7\x3f\x80\x7e\xd3\x3d\xdf\x50\x99\x09\xb7\xe2\x74\x82\x3d\xe1\x8a\x2f\x44\x05\x9b\xd0\xb2\x35\x4f\x5b\xb7\x0b\x4e\x04\x7e\xf1\x02\x5b\x86\xe6\xd9\xd0\xca\x4c\xce\x00\x47\xc1\x31\x23\x26\x16\xc0\x5b\xdd\xad\xa8\x13\x48\xa9\xad\x46\xc7\x5e\x44\x57\x09\xdb\xf8\x20\xc5\x55\x76\xec\x3b\x61\x5f\xde\x8f\x9c\x00\x7d\xe8\x53\x38\x81\xa5\xda\x88\xc7\x34\x33\x9c\x27\xe8\x14\x37\x33\x2c\x1f\x9e\xf0\x73\x17\x1c\x3b\x0f\x0b\x06\x42\x8c\x33\xbf\x72\x60\x2d\x7d\xc3\xcc\x0c\x53\x24\x4d\x10\xf3\x68\x0c\x1d\x68\xba\xcc\xe3\xd4\x42\xb4\xc4\x79\x72\x68\xd3\xa7\x67\x16\x39\xa9\x7d\x32\x0b\xc0\xdf\x71\x92\x0b\xb6\x36\x51\xe3\x66\xb9\xff\x4a\x8f\xb1\x0b\xa0\x6d\x98\x2c\x50\xf0\x33\xce\xad\xcc\xda\xcf\x9c\x7a\x1b\x75\xc1\x26\xd1\xfe\xc5\x0b\x71\x22\xcb\xc0\xa2\x49\x63\x36\x24\x75\x2b\x4e\x5c\x26\x1c\xcb\x85\xe8\x04\x13\x4c\x79\x27\xc1\x9e\x4d\x90\x57\xdd\x89\xed\xec\x50\x45\x90\x2f\x99\x1d\xb1\x31\xbc\x15\xe7\x41\xc5\xa4\xca\x7a\xf6\xa3\x68\xe0\xdc\x74\x80\xa3\xd0\xf1\x61\xf6\x93\x74\xd3\x35\xe5\x73\x1c\xc8\x68\xbf\xc0\xe6\x48\x27\xaa\x90\x4f\xd4\xc3\x97\x34\x16\x40\x38\xe7\xfc\x8e\x7e\x94\x6a\x51\x00\x46\xd6\x85\x83\x39\x4e\x56\x37\x8e\x76\x00\xcc\x9f\x06\xe5\x39\xe1\x32\x46\xcb\xd2\x9c\x15\xf8\x43\x4e\x06\xe7\xac\xb8\xf3\x9c\x84\xcd\xc3\x94\xd3\xe4\x35\x67\x07\xaa\x4f\xe2\x2b\xc7\x79\x89\x73\x3a\x91\x52\xad\x70\x57\x83\x29\x17\x42\xa6\x4c\x41\x96\xf7\xd8\xb3\x32\x11\x12\xe0\xac\xc7\x94\x75\xb2\x12\xf9\x9c\xca\x7d\xa4\x16\xb6\x01\xdf\x11\x72\x09\x73\xe1\x42\xf7\xfc\x9e\x65\x9e\xf8\x3c\x12\xca\xb9\x60\x03\x8b\x5d\xbd\xec\xaa\x9d\x64\x64\xe7\x02\x6c\x21\xc1\x49\xe7\xfa\x4e\x81\xbf\x72\x81\x6f\xa5\xd6\x71\xc2\xac\x3a\x78\xa1\xcf\x63\x79\xa4\xd5\x7e\x22\x03\xe8\xa0\x49\x63\x5e\x1d\x6e\xc1\x9c\x64\xcf\xcd\xc9\xcf\x5e\x02\x8b\x7b\xe1\x67\x6f\x10\x28\xae\xed\x85\xc8\x55\xc6\xc6\x4f\xe4\x5e\x64\x36\xe1\x32\x4f\xde\xc4\x78\xe5\x4e\x27\x99\x96\x7f\xf6\xce\x27\xe1\xae\x7f\xf6\xae\x20\xa5\xae\xef\x99\x37\x76\x61\xee\xf1\x04\x8e\xac\x5f\x2d\xf3\x6e\x10\xb7\xa3\xc0\x08\xd4\x22\x10\xc9\x44\xaa\xb1\x15\x9b\xff\x46\x4f\x07\x37\xee\x83\x1b\x5e\xb8\x0c\x0f\x10\x63\x18\x2c\x3f\x1f\x13\x40\x85\x7a\xeb\xf9\x20\x6b\x26\x35\xec\xf3\x85\xc7\x4e\xec\x0f\xc4\xf9\x37\x02\x92\xce\xb7\x03\x25\x8d\x44\xff\x3d\xfa\xf3\x68\x63\x9e\x2c\x4a\x7c\x45\x0e\xc4\x17\x9f\x90\x83\xe4\xe3\x5b\xea\x85\xc8\xce\x90\xcf\x09\x77\xed\x46\xa7\x96\x09\xae\xa9\x33\xec\x64\x6a\x3b\xae\x66\x8d\x05\x30\xdf\xb9\x62\x6e\x02\x01\x6f\x64\xf6\xf4\x3b\xa8\x7c\xbe\xa5\x24\x01\xd0\x9e\x11\x22\x92\x70\xf9\x78\xe6\xb4\x22\x09\x29\x30\xe9\x6c\x24\xa9\x9c\x6c\x6c\x93\x05\xc8\xc6\x36\xf8\x04\xac\x53\xc4\x1d\x91\xa3\xf3\x22\xf9\x94\x74\xb2\x14\x0a\x5f\xb9\xa1\x50\x77\x81\x5c\xd2\x0d\x31\xd7\xf7\x98\x24\x40\x49\x51\x63\x21\x49\x4f\xec\x25\xbf\x82\xd8\xe7\xee\xd4\x52\x72\x01\xe3\xe9\xa2\xa1\x00\x03\x8d\x19\xdc\x8a\x64\xe4\xc3\xcd\xec\x58\x1e\x27\xfc\xcc\x3b\x96\x4f\xe6\x6c\x3f\x62\x92\xaf\xd3\x06\x0b\xee\x73\x3b\xfb\x7c\x14\x24\x57\x58\x2e\x21\x48\xc1\xf1\xe8\xec\x7a\x41\xd4\x0d\x7d\x50\x05\xce\xa0\x33\xff\x53\x1c\x98\x20\xe6\x7f\x32\x0a\x57\xca\x82\xbd\xd4\x89\x8b\x14\x00\xb6\x33\xfa\x5c\x0a\x20\x72\xe9\x5e\x21\xf5\xa8\xac\xfd\xb8\x49\x45\x27\xe9\x28\x2b\xf5\xb8\xae\xb9\x5b\x83\x00\x20\xad\x79\xe2\x98\x22\x70\xa6\x6c\x44\xe5\x93\x3a\xa0\x88\xe2\x40\xab\x99\x25\x47\xf1\xdb\x5e\xea\xc9\x68\xe9\x84\x41\xa0\x21\x6b\x64\xca\xa5\x0d\x6c\x1e\xe7\xe4\x04\x96\xb6\x49\x9f\x0d\x81\x9f\x62\x27\xd8\x9b\xb4\xe3\x00\xe5\xdb\x5c\x7a\x82\x4f\xbc\x13\x6c\xe9\x15\x6b\xe4\x37\x89\xf4\x8a\xd3\xd5\x58\x30\xce\x13\xde\xb1\xae\x07\xdf\x82\x8d\x7e\x48\xa4\xc9\x83\x80\xe8\xaa\xe6\x39\xf2\x76\x01\x2c\x5c\xce\x73\xca\x80\xdd\x88\xde\x14\x32\x80\xfc\x42\x6f\x75\x19\x27\x4f\xe6\x62\xa3\x17\x5c\xe0\x9d\xc8\xc9\xb0\xfb\x6a\x51\xdd\x2c\x03\x50\x90\xcc\x34\x20\xe3\x85\xdc\x9b\xd8\xa8\x9e\xe4\x1c\x5e\x80\xeb\x5a\x88\x74\xb8\xc5\x59\x3c\xe1\x8d\x4a\x82\x73\x0d\x3b\x26\x30\x39\x27\xee\xa0\x65\x3c\xe7\x4a\x3c\x6e\xf0\xba\x6b\x0c\x63\x97\x05\x0a\x4e\x64\x6c\x59\x0d\x79\xf6\x0a\x5f\x01\xa7\x41\x9c\x3a\x59\x07\x4d\xd3\x45\x65\x59\x48\x8e\x42\xde\x57\x16\xd6\x85\xfe\xb4\x82\x0c\xfa\x8b\xd1\x66\xb2\x10\x70\x43\x1f\x43\x81\xb7\x5b\xaf\x5c\x5b\x68\xb7\x1a\x11\x0e\x64\xd9\xac\x0f\xc2\x41\xcb\xf1\x32\xa3\x7a\x47\xe0\x32\xc6\x3c\x8d\xbb\xc0\xf4\x81\x54\x77\xc9\x82\xdf\x07\x55\x77\xb2\xde\x13\x12\xc0\x19\x7b\x71\xb3\xc6\x13\xb0\x3e\x10\x11\x44\xe0\xff\x25\x12\xf3\xa1\xb8\xae\x79\x4c\x8f\x37\x16\xf1\xf2\xe4\x24\x66\xa7\x99\x59\xe0\x9e\xd5\x18\xd7\x2e\x0b\xbe\xe8\xf4\xac\x96\x0b\xab\x4f\x40\x22\xb9\x8e\xcf\xa5\x5f\xc6\x72\x3c\xa9\x2a\x89\x3e\xdc\xa2\x06\xe3\x50\xe4\x42\x76\x4c\x82\x18\xc8\x75\xa2\xb4\xb9\x72\xc8\x79\xde\xa8\xc2\x90\xe3\x16\x55\x49\x94\xae\x63\x57\xe4\xca\x5d\x0d\x21\xe8\x29\xda\x38\x7a\xeb\x68\x03\x21\xc6\x7e\xc5\x09\x5c\xab\x06\xc3\x72\x05\x00\x42\xbd\x46\x1b\xb0\x7c\x78\x6e\xbc\x5d\x80\xe8\xe8\xe8\x29\xac\xdb\x41\xfa\x2e\xe8\x9a\xa8\x54\x93\x0b\x56\x65\xb2\xc8\x72\x39\x40\x4c\x67\x01\x8e\x69\x8e\x02\xf8\x05\x91\xe8\x5f\x47\xd7\xc4\x0b\x0c\xe9\xb8\x1b\x21\x0a\xe4\x7a\xe0\xda\x58\xe2\x15\xec\x20\x89\x27\xe0\x7b\x16\x63\x79\x81\xf0\x1f\x4f\xbc\x27\xe2\x95\x6d\x40\xca\xa0\x77\x89\x5c\x7a\xb0\xae\xd9\x0f\xa4\x41\xf9\xd5\x86\x1e\x47\x5f\xce\xa9\x82\xae\x4b\x34\x8a\x0c\x43\x31\x7c\xec\xb1\x4a\x2a\x75\x1f\x11\x75\xfe\x8b\x0d\x4c\xa0\xa2\x6d\x93\xbb\xe9\x86\xbd\x94\x81\x1d\xe2\x40\x13\x33\x0a\x60\x15\x92\x78\x05\xd1\x7c\xdc\xa2\x37\xf4\xcf\x74\x8d\x90\xbb\x1c\x8b\xbb\x0f\xf4\x3e\x4e\x1c\xa4\x9c\xf7\x41\xf7\xe5\x91\xbd\xe1\xa8\x17\x77\x0d\x14\xc1\xbd\x0e\x0e\x74\x1c\x97\x31\xb6\x01\xeb\x5f\x25\x19\x04\xdf\xda\x2b\x27\x0b\x39\xb1\x47\xf0\x25\xf7\x38\x5d\xf7\x09\x07\x6e\xfe\x4c\x93\x83\x83\xbe\x87\x9c\xad\xdc\xb0\x96\x17\x9e\x1d\x28\x82\x07\xd1\xdf\xe4\x86\x99\x36\x6e\xf8\x03\x8b\x35\x63\x70\x70\x61\xa5\x00\x2a\x48\x21\x2c\xf4\x10\x93\x1b\xea\x1d\x86\xf6\xca\x0d\x77\x2f\x06\x33\xca\xfd\x1e\x4c\x35\xdf\x4d\x37\x7c\x84\xa8\xf5\x17\x58\xcb\x67\x22\x29\xbd\xe1\xba\x46\xc1\x4f\x4e\x0e\xe1\x54\xe2\x89\xe3\x19\xc2\xae\x2b\x76\x13\x69\x09\x7c\xd9\x3a\xcd\x00\x02\xfc\xfe\xc6\x50\x67\x79\x00\x05\x43\x15\xa2\x3c\x87\x91\xe5\x7d\xf5\x00\xa8\x8d\x48\x87\xf2\x00\x52\xda\x33\x05\x16\x79\x0a\x0e\x82\x8b\xfd\x72\x80\x48\x3c\xbb\xd7\x2e\x80\x5b\x30\xf9\x88\xa7\x22\x1e\xb4\x44\x01\xfc\x60\x48\xd2\x91\x03\xa0\x53\xa7\x2f\x0f\xf0\x4f\x6a\xe2\x67\xc1\xac\x15\x5e\x0b\xcf\x0b\x87\x30\x76\x1d\x99\x4b\x7b\x25\x71\x81\x91\x7e\xd2\x05\x5e\xde\x93\xa8\x8d\x07\xe8\x60\xab\x0f\xce\x07\x60\x35\x1a\xc3\x8b\x04\x71\x93\x23\x98\x13\x3d\x1b\x97\x0b\xa5\x70\x28\x25\x0c\xb3\x28\x00\x5f\x69\x44\x16\x60\x89\x4f\xc2\x6a\x88\x42\xba\x8e\xdb\x19\x48\x1c\x6d\xc6\x13\x2f\x1c\x4a\x79\x1a\x14\x3b\xa8\x72\x3b\x20\x2c\x50\xc8\x2e\xaf\x34\xb1\xb5\x5d\xdc\x5e\x47\x53\x47\x0d\xfb\x3a\xa1\x74\x14\xda\x56\x42\xdc\x93\x67\x7f\x2b\x0b\x9a\xba\x46\xb7\xa8\x95\x80\xd9\x49\x4d\xdd\x4a\xb0\x4d\x72\xc3\x2c\xe0\x43\x77\xc2\x73\x2d\x20\x37\xf7\x91\xd8\xa8\x1e\x30\xc0\x78\x02\x27\xdb\xd7\x76\x25\x3d\xa1\x63\x67\x19\x16\x54\x77\x93\xfe\x27\x2b\x67\x68\x72\xd9\x68\xae\xa7\x0d\x1f\x6d\x6e\x50\x0b\xb1\xa7\x0e\x35\xe6\x84\x6d\x65\x58\x1e\x29\xf8\xad\x0c\x94\x53\x9a\xdd\x57\x3e\x71\x4a\x7e\xe7\xad\x0c\xf8\x36\x62\xba\xae\x7c\x94\xbf\x4e\x94\x56\xc6\xa9\xa4\x41\x6b\x35\x40\xed\x53\xb9\xb7\x90\x26\x53\x28\xd4\xaf\x06\x96\x90\x9a\xfe\x05\xc8\x86\xb6\xfc\x44\xad\x06\x1e\x91\x00\xda\xab\x01\x7b\x8c\xee\x48\xab\x01\xc6\x91\xc6\xfd\xd5\x80\x61\x5a\x07\x0b\x90\x93\x91\xae\x22\xab\xe9\x5f\xc9\xaa\xcb\xea\x70\x6c\x9d\x5c\x86\x93\xfa\x90\x81\x72\xab\x83\xbf\x63\x24\xf2\xea\xef\xf1\x95\xfe\x17\x15\xe2\xea\x7a\x52\x70\xf3\x75\x20\x60\xd0\x27\x66\x01\x59\x60\x52\x5a\x5f\x13\x1c\xd4\x70\x6a\xb3\xe6\x7b\x5e\xf1\x3e\x09\xb2\x1f\x30\xbe\x6d\xc1\xff\xab\x51\x14\x5a\x02\x6b\x0c\x01\xb0\x16\x70\x33\x85\x70\x32\x4b\xf4\xa0\x2d\xf9\x7e\x43\x9c\x4f\xaf\x8b\x4f\x7c\x70\x4b\x74\x12\xb6\x8e\xff\x17\x71\xb7\x16\x60\x32\x1b\x65\x92\x75\x02\x6e\x88\x02\xbf\x96\xb1\x76\x8b\x61\x2c\x6b\x19\x27\x27\x22\xf1\x04\xfc\xd0\xd8\xd3\x75\xb2\x63\xb8\x7e\x63\xad\x7e\x2e\x30\x1f\xfe\x81\xb8\x64\xf2\xa6\xb5\x16\x12\x48\x34\xf6\x03\x00\xb8\xcc\x29\xb6\x16\x10\x68\xa6\x5f\x60\x0b\xfe\xfd\x42\x9c\xe7\x75\x35\x1c\x37\x3e\x71\xec\xc7\x71\xba\x0e\xc6\x15\x81\x56\xd7\x7d\x0e\x02\xc9\xcf\x03\x6d\x0e\xbd\x3a\xd6\x03\xd7\x08\xb2\xed\xeb\x45\x6a\xb7\xe8\xd8\xdb\xcf\x58\xfc\xb3\xc8\xd2\x31\x18\xb6\xbd\xa0\xef\xe9\x54\x44\xad\x77\x01\xbd\xd5\x69\xfc\x7a\xcd\x4f\x71\x12\x00\x77\x21\x1a\x7f\xd0\x2b\x73\x9d\x70\x7a\x1a\x09\x97\x22\x5f\xdc\x88\x82\xeb\x64\xa7\xf6\xf9\x50\x3b\x08\x8b\x79\x5e\x96\x3e\x27\x5b\x29\x0b\x3e\x4c\xa1\x6b\x40\xd6\x07\x7d\x4f\x34\x8a\x34\x0a\x42\x6c\xf5\x85\x48\xef\x46\xdb\xe4\x82\xbd\x66\xd0\xb3\xfa\x42\x62\x01\x61\x2c\xd9\x85\xbc\x75\xad\xf8\x5d\x73\xa5\x13\x49\x58\x59\x00\xbe\x95\x80\xc0\x17\x48\x69\x67\x0a\x84\x2b\x21\x40\x8d\xb9\x08\x2e\x58\x52\x1a\x7d\x7a\xae\x04\xfd\x39\x23\x00\xae\x9c\xb0\x4f\x9d\x59\xbb\x72\x01\xcc\xae\x5f\x3e\x57\xae\xc8\x8d\xec\xe7\xe5\xca\x00\x13\x62\x90\xe9\x95\xe1\xe2\x4c\x6a\x73\x65\x24\xf7\x1a\xf1\x95\x85\x46\x2b\x0b\x80\x0c\x44\x9b\xfc\x95\xe1\x6e\xd2\xa2\xd1\x1b\x27\x6a\xf0\x09\x40\x7d\xd3\xac\x7a\x65\xb0\x40\xd4\xd4\x5d\x70\xc6\x6e\x84\x71\xbc\x80\x83\xd4\x18\x3b\x75\x95\xe3\x4c\xc2\x8e\x95\x05\xae\xc9\x4f\xd4\x75\x8c\x2f\x04\x9d\xbe\xca\x7d\x02\x66\xe3\x89\x81\xbb\x86\x5f\xb9\x8f\x2c\x10\x4f\x1c\x5d\x93\xaf\x5c\x81\x71\x8e\xb8\x7d\x57\xf9\xa0\x52\xe5\x52\xc2\x1b\x4b\x96\x8b\x20\x57\x05\x8e\x1a\xe3\xf3\x2e\x80\xe0\x37\x9a\xcc\xaf\x06\x28\x59\x5a\x0d\xaf\x76\x2e\x41\x27\x7d\x57\x7f\x4e\x24\x42\x63\x01\x4e\x14\xd7\x76\x24\x60\xc2\xf9\x4d\x72\xc1\x58\xc2\xec\xbe\xe5\x42\x4a\xd8\xc1\xc0\x94\xeb\x64\x6f\x2d\x7e\x08\xaf\x71\x1c\xfe\x9d\xaf\xba\x5e\x58\x93\x32\x7b\xaa\x03\x4c\x92\x53\x87\xbb\x15\x04\x1e\xf8\xdd\x7b\x43\x81\x35\x18\xab\x70\x2f\xc4\xb5\x17\x3f\xd9\x37\x02\x53\x26\x95\xe1\xf7\xf3\xe2\x09\x1f\xfe\xd3\xbf\x93\x89\xe2\x3c\xf1\xb8\x09\x42\xfe\x56\x21\x96\xfa\xbf\xb9\xbf\xde\x0f\x28\x3f\xb4\xbd\x7c\x02\x1d\xbf\x34\x16\x20\x92\x95\x68\x16\x1f\xd0\xb6\x67\xf5\x25\xfa\x0e\xda\x36\x11\xd4\x3e\x41\x12\x25\xc6\xa9\x7a\xda\x59\x62\x3e\x7e\x80\xce\x66\x1a\xf6\xf2\x09\x32\x7f\xf0\xa4\x7c\xb2\x00\x02\xe9\x04\xfc\x13\xb8\x17\xd0\x63\xec\x93\xe7\x38\x75\x14\x2f\x38\x20\x36\xce\xea\x7d\x2b\x21\x15\x2d\xc7\x02\x44\xe6\x41\x6f\xfe\x0f\x17\xda\x64\x3e\xba\x0f\xa1\x8b\x8d\x3b\xe3\x3b\xa1\x8b\xc5\x09\xc5\xb7\xee\xf2\x97\xd9\xf6\x83\x42\xa8\x97\xf8\xec\x7b\xcc\x02\xc2\x02\x18\xcb\x9d\x70\x7e\x57\x3e\x5c\xea\xff\x19\xae\xf2\x3f\xaf\xff\xf6\xff\x55\x7b\x7c\xbf\x91\xfe\xfc\x9c\x9f\xa6\xe3\xf2\xf2\xab\xb0\xfc\xaa\x7f\x7e\xca\xe1\x8b\x53\xaa\x2b\x7b\x4d\xbd\xf2\x9f\x1f\xcf\x76\xb1\xff\xad\x51\xb3\xfe\xfc\xf8\x5d\x9e\x92\x65\x76\x3f\x3f\x9f\xfd\x8e\x27\x4c\x4e\xf5\x89\x77\xf6\x45\xeb\xba\xd1\x94\xcc\xf1\xd1\x7f\xee\x7d\x52\xdd\x34\xb8\x0b\x06\xeb\xea\xa9\xf3\x5e\x58\x50\xfa\xf9\x89\xc4\xbb\x6e\x3a\x4e\x25\x65\x39\x75\x25\x65\x04\x81\xb2\xe6\x89\x1a\xb0\xd3\xa7\x26\x0f\xef\x47\xc9\x63\xfd\xf9\x61\x2a\xe7\x62\x0c\xb0\xff\x5c\x7f\x7e\x5c\x5e\x37\x28\x6d\xd6\x6c\x71\xc6\xd3\x59\xa4\x92\x6f\xf6\x20\xdb\x6d\x54\x99\xcd\xb8\x94\xbd\xd9\xfd\xe7\xf5\xe7\xc7\x2f\x2e\x83\x6d\x65\xcd\x3e\xf9\x9e\x52\x22\x95\x1a\xef\x54\x00\xd1\x7b\xbf\xeb\x66\x69\xfd\xe7\x49\xcd\x7c\xd6\xa3\x18\xec\xd9\xf9\x99\xbf\x3f\x3f\x6e\x64\x4c\xa5\xc5\x68\xcd\x6b\xd4\x23\xe6\x53\xb1\xb4\xf0\xfe\xf3\xfd\xf3\xe3\xda\x9f\x54\xfa\x78\xbd\xa6\x0f\xfd\xf3\xe3\x22\xa4\x45\x39\xb0\x66\xd3\x23\x4f\x50\x93\x8a\x45\x7f\xf8\x4f\xf9\xf3\xe3\x29\xac\x52\xe9\x5a\x58\xa3\xfb\x1d\xce\xaa\x0a\x67\x01\xde\x2c\xd3\x23\xfe\x77\xc1\x13\x75\x48\x24\xcb\x79\xd5\x27\xea\x20\x06\xbb\x73\x45\x2a\xe6\x7d\xe2\x3f\x91\x0e\xd1\x73\xf9\x16\xcb\xcb\xec\x3f\xeb\x9f\x1f\x77\xca\xdd\xff\x4a\xd4\xdc\x7f\x7e\x3c\x59\xcd\xfe\xf7\x89\x1a\xfd\xf3\xe3\x9e\xac\xa9\x7c\x79\xb2\x66\x6f\x43\xe7\x52\xf7\xbf\x1f\x6b\xf6\x71\x74\x4a\xb5\xff\xad\x51\x33\x76\x0d\x7b\x50\xa2\x07\x65\xf7\xa0\xb1\xb5\x12\xad\x6d\x26\x6a\x70\x47\x58\x26\x2a\xff\x59\xfe\xfc\xf8\xc5\xb7\xff\x8d\xef\xec\xf3\xe4\x5a\xdb\xfd\xef\x88\x9a\xdd\xeb\xce\xbe\xd5\x15\x35\xd7\x7e\x27\x6a\x62\x0e\xb6\x6c\xe6\xd8\x57\xa9\x7c\x8d\x6b\xfb\x6d\xf6\x7e\x72\x6d\xbf\x16\xb3\xb3\xd9\xe9\x59\xe3\x9d\x18\x4f\x2f\xbb\xc6\xd7\xf5\xeb\x2d\x6a\xe4\xcf\xcf\x8c\xb9\xee\x57\xd4\xec\xd6\x1a\xbf\xb3\xa5\xd8\xf3\x73\xb4\x3f\x3f\x12\xbd\x1e\xd1\x83\xcd\xe2\x32\x15\x7a\xf9\x46\x8c\x74\x1f\x79\x4f\xc3\xb5\xff\x8d\xf1\xec\xe3\xe1\x19\x26\xf7\xbf\x3d\x6a\xf6\x5e\x4d\x99\x1f\x9a\xd1\x39\xe3\xd8\x13\xcf\xcb\x37\x79\x92\x80\x8e\xe4\xb9\x34\xed\x2a\x8c\x2a\x4b\xb4\x4d\xea\x60\xd9\xc1\xce\x4f\xb3\x79\xba\x37\xac\xdd\x42\x51\xb5\xb7\xb7\x33\x19\x76\xfd\xb0\xca\xae\x75\x87\xb1\xdd\xff\xc7\x76\x30\x57\xbc\x1a\x7b\xf5\x8a\xfd\x80\x30\x7a\xe1\xd4\x6e\x06\xd4\x7f\x02\x81\x81\xb3\x71\xc5\x1a\x6e\xaa\x57\x52\xbc\x75\xc7\x6c\xdc\x96\xc6\x9b\xb4\xd2\xb0\x9c\xfc\x67\xde\x55\x9d\xc7\xec\x89\x71\x3d\xf3\xcf\x4f\x4d\xb1\xf6\x4f\x9c\x8c\xe7\xfa\xf3\x53\x5d\x7f\xbe\xff\x8f\x89\x7a\xbe\x3f\x3f\x95\xc9\xff\xcb\xf7\xc6\xb7\xb6\xbc\xdb\x6a\x1c\x8e\x37\x66\x63\x5f\xbf\xdd\x21\x79\x52\x4d\xa4\x10\x15\x46\x6e\xcf\xa6\x5f\x53\xea\x51\x33\x91\x8e\xbc\xb1\x4e\xa2\x6e\xfd\xa2\xd9\x35\xa5\x2b\x6a\xa0\xaf\x64\xcd\x13\x35\x70\x9a\x67\x8d\x46\x0d\x6c\xf3\x5e\xc3\x1b\xb4\x02\x8e\xea\x30\xdc\xfb\xdf\x16\x35\xb6\xc0\xf1\xce\x1b\x35\x70\xad\xf6\x9a\x12\x63\xdd\x97\x4e\xf5\xc5\xa8\xa9\xc6\x78\x36\x25\x70\x67\xa3\xb4\x57\x85\x35\x0b\x69\xf2\x07\x67\x68\xdd\x51\x87\x3c\xde\x89\xbd\x58\xd1\x8b\x85\xdc\xed\x9d\xef\x5d\xd1\xa6\x49\xaf\x55\x62\x96\xbe\x78\xef\x3b\x39\xdf\xcf\x6e\xaa\x39\x56\x24\xef\xfe\x7b\x34\x63\xaa\x99\xfb\xac\xe6\xa7\xa1\x27\x7c\xeb\x19\x51\x87\x34\xe8\x7e\x5a\x81\x4d\xeb\x3f\x31\x82\xd2\x58\xf7\x46\xdd\x49\x4a\xee\x6d\x5a\x46\x2f\xff\xf9\xfd\xf9\x29\xc7\x5a\x93\xaa\x21\xfd\xf8\x4f\xdd\x35\x67\x26\x9b\x66\x7f\xa7\xe9\xbe\x2e\x5c\x7d\x9e\x9a\xf6\xc2\x9a\x5e\xff\xfc\xb8\xd0\x94\x9a\xc5\x3f\xf9\xcf\xf6\xe7\x87\x29\x72\x53\x53\x9e\xd5\x06\xf1\x9d\xb7\x6c\xd3\xeb\x8d\x2a\xec\x00\x36\xc8\xc9\x68\xba\x27\xc3\x05\x94\xfd\xef\x15\x35\xfb\x3a\x9a\x1e\x68\x0b\x66\xf3\xff\xc4\x7f\x36\xf3\x0f\xf5\x9f\xf3\xcf\xcf\x1c\x1c\xb1\x46\xef\xb5\xed\x1a\xef\xe1\xc7\x7d\xdd\xbe\xbd\xaf\x5d\xaf\x90\xda\xd7\xa3\xc6\xc4\x3f\xe7\xbe\x53\xfb\x3e\xf6\xfd\xfb\xa6\x5d\x4a\x67\x06\x7b\x9c\xad\x6e\x67\xab\xb8\x95\x2a\xf5\x34\x2a\xab\xf6\x75\x31\x79\x8a\x7b\xba\x0b\xab\xb6\x24\x55\xdd\x5c\x9a\x7a\x4e\xfe\xad\x0e\x65\x40\x72\x27\xb6\x5d\x20\x51\x67\x4c\xb2\xa7\xf7\xef\x39\xdd\x51\x65\x17\x43\x3d\x9a\x9b\xd4\x73\x79\x59\x67\x1e\x27\xc5\xa1\x47\x52\x37\xed\x81\xff\xdc\xa7\xb9\xb8\x1f\xd1\x2e\x98\x51\xb7\x6f\x35\x37\xb7\xa6\x9e\x47\x34\xb9\xd9\x36\xb7\xb7\xa4\x6e\xfe\x28\xfe\xf3\xda\xa3\x2e\x5e\x73\xc5\xa7\xf6\xcd\x50\x1c\x6e\x35\xf5\x7c\xc7\xa0\x4d\x57\xe3\xf1\xfb\xa9\xdb\xa9\xf2\x9f\x76\xed\x17\x36\xf8\xc5\xa7\x3e\xfb\xd4\xd9\x52\xbd\x90\x47\xed\x65\x93\xd9\xc1\xf5\x2a\x31\xbd\x96\xaa\xc2\x6d\xdd\xa9\x97\x9c\x59\x93\xcb\x9f\x1f\xc7\xa1\x4c\x3d\x78\xeb\x6e\xbc\x75\x76\x50\x83\xd4\x0d\xeb\xd9\x7f\x56\x63\xa5\x7c\xf6\x0a\xb9\x85\x5e\xba\x71\x32\x85\x9f\x22\x3b\xdc\x2d\x0f\x7f\x75\x73\xc4\xfe\xff\x8e\xaa\x67\x9f\x3b\x61\x83\x12\x83\xda\x17\xfc\x72\xf3\xe4\xfe\x7f\x46\x15\x36\x46\x63\x55\x34\x28\x67\x63\xf8\xe2\x5b\xaa\x43\xff\x89\x81\x45\xd5\x1b\x55\x7b\x81\x5d\x19\x90\x7a\xd1\x18\xb3\x31\xd9\xe4\x6d\xbb\x25\x42\xf4\x9f\xdf\x9f\x1f\xf2\xd8\xbd\x92\x82\x76\xf3\xec\x71\x97\xd1\xfd\xef\x15\x35\xe0\x46\x7d\x19\x6b\xfd\x58\xb5\x25\xf3\xd2\xd9\xbf\x4a\xf9\xa9\xd7\x2d\x28\x2c\x1e\xa0\x3a\x67\xd4\x98\x94\xc4\x1d\x18\xc4\xb3\x1b\xf1\x1c\x25\xf9\xa7\x4c\x14\xf4\x9f\xfb\x66\x70\x24\xaa\xd4\xdb\x13\x55\x9b\x88\x0d\x47\x59\x4c\xbd\x7d\xfc\x56\xfb\x36\x17\xe9\x71\xde\xa9\x77\x32\x71\xbd\xcf\x3d\x60\xf7\x79\x4c\xbd\x47\x83\xa6\x13\xaa\xee\xb4\x91\x7a\x27\xe1\xea\xe6\x7d\x5b\x3b\x4f\xea\x48\x5c\x91\xb1\xaf\xed\xea\x30\x7b\xa9\x0f\xb2\xed\xdd\x92\xce\xb7\xca\x0d\x3a\x28\xdb\xf4\x61\xb2\x4d\xee\xec\xfd\x20\x3f\xd6\x87\xc5\x44\x14\xca\xe3\x7d\xdc\xf1\x35\xf3\x74\xab\x0e\x7c\x9d\xfa\x24\xe7\xd2\xe7\xe6\x5c\x66\xe1\xf6\x35\x44\x63\xff\xd9\xf6\x19\x27\xf1\xb2\x34\x1e\xfe\xd3\xb6\x8d\xd3\xd7\x3e\x4b\x54\x6d\xa9\x65\x90\x4b\xea\x96\xec\xce\x7f\xb6\xbd\x3b\xb8\xe9\xe7\xe2\x6a\xce\xb5\x57\xd3\xd5\xec\xa9\x4b\xe5\xee\x90\x2d\xb8\xd4\xa0\xca\x16\x6f\xee\x3f\xb7\xf8\xda\x96\x77\x43\x82\x9e\x98\x11\xa2\x7a\xae\x9c\xd4\x0d\xe3\xcb\x7f\x5e\x7f\x7e\x96\xb3\x5d\x7d\x05\x91\x5c\x9b\x48\x3a\xb6\x7e\xea\xab\x45\x0d\xfc\x46\xb2\xef\x80\xd5\xa3\x6a\x4b\x1f\x25\xf3\x4c\x5e\x41\xac\x2d\x3e\x6d\x16\x12\x80\xbb\xb2\x0a\x69\x2d\x4a\x1c\x95\xbb\xf1\x98\xc3\x69\xa0\xe6\x78\x8f\x37\x5b\xb7\x30\x31\xd7\x61\xef\x7f\x67\xd4\x58\xe7\xa3\xe6\x8a\x9a\xdb\xf6\x8d\x77\xfe\x0e\x62\x73\x6f\x51\xda\xfd\x7f\x53\xbf\x63\x45\x90\x58\x7f\xba\xd1\x26\xf5\xfb\xe5\xdd\x65\x46\x7b\xe6\xc8\x49\xfd\x56\x9e\x87\x5b\xc7\x9f\x9f\xe6\x96\xf7\xd4\xef\x8f\x5b\xed\xb6\x00\xbf\x4c\xf6\xaa\x3f\x41\x38\x2c\x39\x7e\x75\x74\x9e\xd4\x2d\x60\xcc\x7f\x66\xeb\xfd\x64\x55\x8f\x2a\x38\xbc\x14\x56\x69\x54\x21\xf3\x37\x1b\xec\x3c\x46\xcf\x16\x0a\x0b\xe5\xdf\xfe\x0c\x12\x73\x8b\x99\x6f\x8d\xbb\xe6\xa1\xf0\xd7\x1f\x33\x1e\x95\x14\xfd\x98\xd1\xfb\x4d\xf3\x47\x10\x9c\x67\x45\xef\x2d\xe8\x3e\x73\x86\x1f\xca\x13\xdd\x72\xd5\x0f\xf7\x0a\x4f\xfd\x25\x83\xd5\x5f\xe3\x36\xcb\x8c\xba\x98\xc6\xf7\xb3\x6b\xca\x6b\x34\xf1\xe8\xe9\x3e\xbb\xc2\x1d\xa5\xe4\xd9\xbb\xe5\xe7\xa2\x0f\x4f\xea\xda\xb9\x96\xda\xf7\x5a\x0a\xe7\x50\x29\x09\x77\x18\x7b\xb2\x5b\xc5\x77\xc1\x1b\x75\xe0\x43\xc8\xbf\xe8\xe2\xb2\x20\xcb\x78\xe3\x98\x35\x98\x25\x33\xd6\x33\xea\x71\xff\x1f\x5f\xbb\xf7\x39\x1a\xa4\xf5\xfa\x44\xf7\xb7\xc0\x57\xdd\x60\x9b\xba\x2a\xd7\x19\x69\x37\x0a\x25\x84\xfe\x51\xba\xe9\x96\xfc\xcb\xc3\xe8\x52\xff\x82\x48\x7d\x65\x4f\xfd\x96\x0d\xff\x85\x4f\xed\xa6\x7e\xf1\x9f\xb0\x44\xf9\x0e\xf9\xe2\x4e\x87\xd0\xee\x19\xac\xf6\xff\x57\x54\xc1\x94\xc0\xae\xc4\xbd\xfd\x5d\x46\xa8\x2a\xab\x9e\x68\xd0\xd0\x17\x8a\xc3\xe6\xa6\x91\xb8\x79\x46\xda\x9b\x87\xde\xcc\x69\xe4\xe6\x2d\x8e\xdc\x36\x7d\x73\xa8\xc6\x34\x32\x65\x84\x91\xb7\x8c\xb0\x3c\x15\x41\x1a\x79\x44\xd5\x66\x76\x9b\xa3\x46\xa6\x91\xf5\x65\x95\x9e\xb5\xf6\xd7\x0a\x2f\x89\x51\xcc\xad\xb3\x56\xe7\x20\x46\x21\x3f\x3d\xca\xbe\xf0\x96\x13\xc6\x61\x3e\xc9\xfe\xf3\xde\xf2\x8d\x93\xd3\x51\xb8\x55\x47\xd9\xab\x54\xdd\x88\x9d\x46\xa1\xd6\x68\x94\x66\xbb\xd8\x6f\xcd\x51\x7a\x74\xa3\xb7\x3f\x3f\x9e\x22\x29\x8d\x42\x3e\x61\x14\xf0\x09\xae\xf9\x18\x25\xe6\xb0\xbc\x80\x00\xab\xac\x1a\x51\x05\x60\x22\x7f\xcb\x20\x7f\xfc\xe7\xde\x3b\xee\xc8\x99\x86\x69\x5e\xfd\xe7\x1e\x96\xfb\x10\xa5\x51\x5b\x63\x95\x69\xbc\x2a\x7b\x58\x63\x7a\xab\x9a\xda\xd4\x79\xdf\x11\xfa\xed\xd1\xf2\x34\x89\xda\xdf\x6a\xdc\xc2\xa3\xed\x23\xbd\xc8\xff\x8c\x36\xa3\x6a\xda\x2a\x3b\xab\x35\xda\x7d\xb3\xea\x7e\xfe\xfc\xb4\xb9\xf8\xd6\xc7\xce\xb7\xef\xfe\xf3\xd3\xa3\x87\xbd\x39\x8d\x18\x7d\x6f\xae\x42\x2b\xc0\xe8\xb1\x6d\xfa\xde\x36\xd5\xcd\x48\x69\x74\x32\x6f\xc3\x30\x54\xe9\x23\x9c\x46\x97\x78\x6b\x0b\xa7\x04\x76\x4c\xa3\x53\xe4\x1f\xe6\x59\xc1\x50\xac\x34\xfa\x1d\x6f\x99\xcd\x2a\xb9\x17\x57\x1a\x9d\xf6\x83\xd1\xb7\x94\x31\x1d\x78\x6d\xff\x7f\x47\xd5\xb3\x37\x1b\x57\xa5\x2b\x77\x68\xdf\xab\xb0\xd8\xf9\xc1\x8b\x71\x8c\x7d\x31\x56\xc7\xb1\x4b\x63\x50\xc6\x1d\xc3\xac\x7e\x99\xbc\x05\x10\x05\xfc\xe7\x6d\x47\xc5\x99\xe3\x31\xc8\x0f\x8e\x61\xce\x3d\x85\x42\xee\x18\xb1\x07\x90\x59\xa2\xba\xb7\x78\x1a\xe3\xe3\xb0\xc7\x87\xe5\x64\x8d\x46\xcd\xf7\xe7\xa7\x92\xb1\x1f\xe6\x85\x7d\x7e\x6e\x31\x79\xb8\x7b\xfe\xfe\xbf\x44\x55\xb5\xa9\x12\x56\xb5\xa8\xda\x62\x9d\x1b\x6b\xd3\x98\xb1\xb7\xe7\xde\xdb\xbc\x26\xc6\xe4\x55\x3b\xa6\x09\xdb\x6e\x38\x4c\xc3\x32\x22\x9f\x9f\xf3\x84\x43\x7b\xd5\x94\xa8\x5a\x9b\x04\x2f\xf6\x82\xfa\x94\x31\xf7\x5c\x8f\xc5\x0e\x0a\x65\xb4\x21\xd5\xfa\x4e\xda\x26\xbc\x91\x80\x85\x30\xc9\xcb\x0c\x79\xa3\x6a\xb3\x8c\xf4\xd9\x48\x63\xc5\xd6\x36\xaf\x91\x55\x48\xf6\xcc\x9d\xc3\x7f\xaa\xad\xb3\x2b\x17\x87\xe1\x07\xf9\xcf\xcd\x79\xba\xdb\x5e\x1a\x17\xe5\xdf\x71\x99\xfc\x5b\xdc\x35\x21\x8d\x4b\xe3\xb5\x73\x5b\xb9\x5e\x6d\xdc\x54\x08\x8c\xdb\xb4\x81\x35\xf3\xbd\x9b\xf2\xec\xb8\x2d\x86\xa1\x56\x4e\xff\x9d\xe3\x3d\xb3\x65\x55\x5a\x64\xc6\x4d\x86\x76\x58\x94\xd4\xa4\x91\x69\xdc\x34\x25\x8d\x1b\xd0\x8d\x3c\x9d\x37\xf5\xc8\xe3\xde\xd4\x53\x1c\x8d\x3b\x8d\xe0\x0a\xc7\x7d\xa5\x3f\x3f\x6b\xf1\x2c\xdd\xd7\x15\x55\x38\x16\xce\x58\x8f\x3b\x4e\xe7\xbd\x4f\xe7\xf2\xf8\x9d\xfd\x7f\x8f\xaa\xcd\x30\x36\x12\x2b\x73\xd5\xf4\x9f\x76\x70\x17\xbb\x18\x67\xe2\xde\x67\x82\xae\xb9\x09\x10\x04\xfe\x73\xb3\xb4\x85\xb7\xc4\xfd\x45\x83\xdf\x16\xc8\x0b\xc9\xce\x43\xa1\x60\x3c\xfb\x72\x1a\x34\x5e\x8d\x87\xa6\x51\xa0\x19\x0c\xcf\xf5\xb4\xff\x9f\x51\xb5\x79\x96\xca\xbb\xe0\x29\x1a\x55\x76\x36\x49\x4e\x1f\xf2\xf7\xc3\x52\xc9\x0d\x2a\x71\xc7\x13\x7b\xce\x38\xd8\xec\x01\x68\x69\x3c\x9d\x67\xe9\xb1\x5c\x82\x14\xe2\x86\x25\x93\xf3\x9f\x7b\x0b\x14\x1e\xf6\xe7\x8e\x06\x81\x42\xc3\xcb\xe5\xa5\x08\x32\xe0\x53\xb4\x78\x2a\x5e\xaa\xbb\xc6\x6b\xea\x2e\x8f\x5e\x48\x88\xa7\xf7\x9f\xef\xde\x1c\xc5\x17\x45\x29\x77\x0f\x73\x00\x15\x6a\x92\x86\xd2\x14\x34\x2c\xfd\xab\x0c\x92\x37\x6d\xdc\x88\xba\xa5\x2c\x3a\x22\xa7\xa1\x8b\xdd\xd0\xb5\xb7\x4d\x25\x7d\x53\xe5\x90\x55\x11\xaf\xee\x7c\xf0\xf8\x62\x2d\x0d\xa5\x69\x79\x2e\x81\x84\x58\xee\xf3\x53\xd3\x9f\x1f\x26\xce\x49\x33\xb4\x7f\x13\x9a\xf5\x50\xff\xcd\xd0\x79\x4f\x44\xa4\x15\xde\x65\x33\xb5\xca\x3a\x0b\x4b\xa8\x8e\x29\xb7\x0b\x7a\xd4\x99\x8e\x3a\xb9\x6e\x63\x26\x52\x9e\x89\xa4\xb1\xd5\x5d\xdc\xd2\x4c\x3d\xde\x33\xbf\xbc\xea\x90\x50\x69\x26\x0a\x22\x33\x99\x20\x52\xb7\x0c\xf8\x2f\xcc\xeb\x4c\x33\x86\x68\xc1\x52\x1e\xed\x9a\x66\xba\x1b\xab\xee\xcd\x9f\xfc\xea\xcc\x13\x9d\xd9\xc2\xc8\xfc\x35\xf6\x37\xaa\x2c\x7c\x7f\x78\xec\x79\x42\x64\xb9\xff\xbc\xfe\xfc\x14\xcf\x92\x91\x66\xce\x51\xb5\x17\xa8\x52\xbf\x3d\x43\x07\x3f\x91\xa0\x36\x67\x3f\xa3\x33\x93\x8a\x4c\xd3\x24\x36\x61\xf7\x33\xef\xdd\x99\xed\xde\xcd\xbc\x0a\x67\xe6\xa9\x9f\x96\x3a\xa1\x57\x17\x7e\x66\x21\x2f\x37\x4b\xc6\x95\x2c\x51\xa7\x51\xf7\x61\x0d\xa6\xd7\x15\x4e\x64\x41\x12\x27\x67\xbe\x66\x21\xf7\x3d\xcb\xe6\xbe\x27\xcf\xc7\x0c\x7d\xe0\x34\x7d\xa0\xb8\x07\x56\x9a\x85\x27\x78\x9a\xd2\x8f\x59\xa2\xd2\x2c\x64\x88\x66\x31\x1b\x48\x76\x97\xe8\x34\x2d\x9f\x82\xff\x1c\xb6\x2f\x27\x9b\x8c\x15\x2d\x7b\x45\x07\x0d\x42\xd3\x72\xbb\xf9\x4f\x03\x58\xf1\xdb\x64\x56\x6a\x3a\x67\x05\x95\x19\xfc\x5a\xe5\x95\x31\xab\x5d\x19\x99\x3c\xe7\xac\xe3\xd7\x7b\x9f\xc9\xb9\xae\xb7\x9a\x95\xc7\x78\xd6\x7d\x8c\x47\x75\x11\x6d\x5a\xf2\x5f\xff\x69\xa6\x5b\xe7\x47\x67\x8b\xf9\x6f\xc8\x23\xe7\xc8\x72\x69\x86\x86\x6f\x9a\x86\xaf\x92\xc6\x4f\x03\xbd\xf2\x9f\xf7\xa6\x19\xae\xab\x9b\x8d\x16\x64\x04\xdd\x2f\x6a\x4f\xa7\x39\x78\xf9\xcf\xe7\xcf\x4f\x75\xa7\xa0\x34\x1b\x95\xe0\xb3\xc1\xe0\x4a\x8b\xfd\x6c\x6f\xf4\x71\x53\x96\xe9\xc9\x8a\xd2\x6c\x1f\xa7\xbf\x7d\xfb\x40\x75\x6e\xc8\x46\x13\xc4\x34\xa5\x63\x89\x7d\xdc\x29\xc2\xcf\x6e\xae\xb2\x29\xd5\xa8\x7b\xa2\xee\xdd\xdb\x9f\xf3\xd1\x69\x09\x99\x40\xdf\xca\x1e\xa8\x9b\x66\x2f\x9c\xab\x5e\x30\x57\x8b\x55\x12\x55\x7b\xd7\xf9\xad\x3c\x7b\x8d\x06\xab\xdd\xaf\x85\x35\x33\x6a\x64\x6f\x39\xb7\xc7\xcc\x4e\x15\xef\xec\x6d\xf3\x9c\x83\x53\xdf\x5b\xbc\xb5\xe9\x1e\xb3\xdc\xa6\x69\x08\xa1\xfe\x73\xd8\x6c\xb0\x7f\x8b\x73\x68\x59\xee\x08\x81\xb0\xff\x5f\x51\x05\x3f\x3a\xdf\x6e\xfd\x8a\x39\x34\x5c\x84\x15\xc3\xba\xa2\x41\x33\x68\x2f\x92\x82\x10\x2e\xa6\x09\x17\x85\x02\xc4\x0c\x01\x62\x9a\x00\x21\x71\x31\xf4\x37\x1a\xdc\xb4\xb0\xc4\x9a\x8c\xb8\x33\xc6\x96\xd5\x9a\x83\x4d\xa6\x39\x82\xf4\x0f\x23\xfd\x61\x5b\x9b\x63\xc6\x6b\x5b\x8e\x63\x76\xca\xfd\xff\x1d\x55\x7b\x93\x56\x5e\x5e\x83\x2e\x31\x73\x00\xe0\x85\x34\x7a\xd0\x96\x38\x91\x09\x2f\x39\xa0\x4c\x9a\x83\xd6\xc9\x39\x1e\xdd\x83\xe6\x8a\x8d\xd8\xda\x96\xfc\xae\xce\xe2\x53\x15\x8a\xe1\x39\x93\xdd\x15\x1c\xf4\xa4\x11\xfa\xc0\x36\x74\x8f\x07\x4f\x73\x06\xd5\x9f\x9b\xea\xcf\xce\x91\x4d\x7a\xbe\x4c\xf3\x65\x2f\x75\xb2\x45\x3a\xab\x4c\xf3\x6a\x17\x4f\x91\x91\xe6\x24\xe7\x30\xa7\x71\x0e\x54\xfd\xcc\x49\x16\x6b\xce\xcd\x62\xc9\xe4\x42\xcf\x1e\xdf\xda\x14\x6e\xd1\x48\x36\x43\x0b\x3d\x4d\x0b\xdd\x84\xf7\xd2\x8c\x4d\x35\x6d\x53\x65\x47\x9e\x4b\x73\xde\xf1\xb1\xdb\x2e\x98\x78\xed\x89\x31\x5b\x28\x4e\x71\x17\xc6\x5d\x10\x5f\x7b\x20\x0c\x70\x5f\x4d\x6a\x58\xe7\x7c\xc1\xd4\xc7\x64\x29\xcf\xd2\x54\x3b\x4b\x5c\x34\x09\x12\x21\x08\xa1\x15\x56\x51\x84\x98\x96\xe3\x63\x26\x4e\xb1\x50\xeb\x39\x65\x1f\x46\xa1\x31\x6a\x8a\xf0\x70\xca\xde\x62\xcb\x23\xcf\xd3\x94\xc5\x6e\xc8\xda\x12\xb2\x43\xd7\xa4\x29\x71\x51\x8b\x19\xd2\x13\x95\x94\x53\xc8\x81\x4d\xb1\xf0\xc1\x5c\xb8\x6a\x06\x17\xeb\x3f\x8d\x8c\x15\x17\x21\xa6\xc4\x2d\x2e\x16\x10\x98\xa7\x1b\x38\xe6\x8a\x6b\x7c\xe1\x1a\xa7\xa4\x36\x17\x59\xf4\xb9\xcc\xab\xb4\x08\x2f\xad\x45\xd5\xf2\x44\x06\x0e\x0a\xf9\x73\x05\x97\x65\xb1\x02\x92\xb9\xfd\x17\x95\x79\x13\x99\x2c\x92\xc3\xd1\xef\x02\x8d\xba\xbd\x83\xe2\xce\xb2\x3c\x10\xfe\xd3\xc2\x22\x84\xfd\x7f\x39\xee\x65\xe1\x58\x8b\x3c\xcf\xa2\x0c\x34\x2d\x3d\xc3\xa4\x11\x69\xae\xb8\x46\x2c\xd3\x82\xd0\x7b\x63\x5e\x94\x09\xe7\xb5\x4f\xdd\xa2\xa3\xe5\x0c\xa9\x76\x9a\x54\xdb\xe8\x27\x30\xaf\xc1\x6e\x5c\xa3\xd8\x3e\x66\x83\x54\x05\xcf\xcb\x54\xc1\xa5\x91\x19\xba\xc6\x13\x75\xc6\x55\x4a\xe6\xd7\x68\xda\x9b\xc8\x07\x50\x0b\x8f\xef\x45\x6b\xe6\x34\x58\xff\xd9\xfb\x3f\xf2\xb1\xd7\xe2\x1e\xba\xb6\x14\x5a\x27\x67\xf9\xba\xa2\x51\x73\x68\x48\xb4\x83\xce\x2b\x78\xcb\x0b\xbc\xa5\x27\xf6\xdb\x05\x25\xea\x80\x5d\x55\xd9\x51\x9a\xad\xe7\xb5\x79\x61\xa2\x93\xa4\x79\xd3\x38\x3d\xef\x94\xf7\xa9\x72\x0b\xd4\xbc\xa9\xc3\x9f\xf7\x66\x9b\x5b\xe7\xbd\x76\x7f\xf1\xd6\x87\x8e\xb8\x62\x77\x3e\x95\x3b\xe8\xd9\xf7\x69\xef\xec\xc7\x43\x95\xc9\x7c\xe6\xb2\x8f\x45\x15\x67\xc4\xd0\xed\x26\x3d\x90\x66\x48\x80\xd3\x24\xc0\x96\xc9\xa2\x3f\x74\x76\x9a\xc0\xa2\xdb\x4b\xc7\xba\x1e\x75\x5b\x2e\x17\x72\x14\x8f\xc6\xc7\xf6\x48\xfa\x20\x1f\xf5\x46\xef\xdf\xdd\x7b\xc9\xa4\x32\x6f\xf4\xe3\x45\x3f\x5c\xbd\x31\xdf\xb8\x60\xdf\x07\x9e\x70\xee\x18\x30\x35\xae\x06\x2d\xa0\x17\x5c\x50\xa5\xe3\xdf\xd4\x6e\x0b\x43\xee\x5d\xe3\xfc\xea\x80\x57\x22\xab\xa8\xda\x9b\x70\x1f\xad\x9e\x6e\x37\xcd\x2f\xfa\x6f\x2e\x8b\x22\x24\x32\x5f\x10\x0b\xa4\x41\x6c\xf4\x1c\x99\x5f\xf0\x30\xdf\xe6\x61\x44\x28\x3d\x85\x3b\xe1\x34\x77\xc2\xd5\x24\xaa\x56\x54\x6d\x31\x88\x86\xf4\xf9\xc5\x55\x0f\xdf\xc0\x5c\x29\x10\x7c\x71\xa1\x7f\x5b\x36\x90\x1c\xaf\x5d\xd1\xc7\x2b\xef\x7e\x70\x1e\x3f\x6a\x2d\xe7\xb7\xa7\x5b\x1c\x67\x2e\xcd\xf0\x79\x9b\xe6\xf3\x26\x99\x33\xfc\x05\x7f\xf3\xed\x0d\x51\x83\x03\xfb\xde\xe8\xe2\xfb\xec\x81\x91\x75\xff\x42\xbe\x30\x10\xe4\xe6\x00\xfc\xfb\xff\x12\x55\xc6\xe0\x66\x32\xb8\x5f\x1c\x8b\x6f\x1f\x8b\xb6\xe2\xb5\x2f\x66\xd1\x82\x11\x0a\x95\xe4\xf3\xa3\xb3\xd7\xfc\xcc\xd9\xab\xd0\x03\x47\xc2\x29\x4e\xcc\x29\x6e\xd2\x32\x27\x96\x66\xd1\x7f\x5a\x08\x30\xb5\x26\x92\x28\x29\x48\xda\x92\x82\x78\x9e\x82\x24\x89\xfc\x99\x24\xe3\xcf\x28\x99\x4b\x92\x68\x11\xee\x19\x7e\x59\x4a\xe2\x8d\x28\x69\x53\x93\x42\x37\x50\x31\xf4\x64\xff\x69\xe1\x2e\x74\x3c\x10\x73\x27\xf7\x9f\xb6\x43\x5c\xbe\x90\x4c\xb7\x39\xc9\x7b\x17\x34\xfa\x02\x48\xe6\x75\x22\xd9\xae\x93\x92\x27\x5f\xe3\xd2\x48\x36\xd1\xaf\x7a\x42\xfd\x24\x99\x93\x2c\xe6\x8e\x23\x9e\x78\x24\x49\xa1\xf6\x57\x8a\x59\x36\x1c\xc2\x29\x49\xa1\x6a\x47\x8a\xa9\x76\xe8\x86\x27\x85\x6a\x0c\x29\xa6\xc6\xc8\xb5\x44\x9d\x44\xdd\xda\x8b\x9d\xd9\xe2\x88\x2a\x43\x2c\x2e\x9e\x80\x29\x49\xa1\x2f\x9b\x58\xfe\xc1\x41\x05\xb0\x54\x9e\x19\xa9\xfb\xcc\x14\x1a\xf6\xa5\x91\x65\x92\x66\x21\xe3\x69\xba\xc8\x25\x9d\xb2\xbc\xf4\x62\x13\xe9\x24\x5c\x7a\x74\xa4\x0f\xeb\x23\x37\x56\xa7\x66\x5b\xba\x69\xb6\xc5\xf3\xb9\x26\x31\x6f\x0f\xff\x69\x5e\xd4\x2e\x80\xc8\xa0\x8b\x96\x20\xdf\x40\x75\x14\xe0\x24\x83\xec\xac\x98\x80\xb0\x97\xc6\x3b\x39\xa8\xdc\x96\x61\x3e\x5a\xf4\x98\x96\x41\xee\x13\x68\x2d\x42\x81\x4c\xc2\xf1\x43\xcc\xf1\x43\x3c\x3d\x73\x92\x49\x41\x53\x8c\x9d\xaf\x0e\x35\x93\x64\xd2\xc4\x29\xd3\x4c\x9c\xa9\x70\x69\x26\x15\x83\x32\x0d\x8b\x20\x79\x4c\x65\x92\x49\x53\xb7\x4c\x98\xba\xab\x9f\x51\x99\x5f\xb4\x69\x10\xb1\x85\x6e\xe2\x22\x14\x5e\xc5\x98\xd4\x5c\x62\x07\x09\x0d\x12\x22\x79\x4f\x25\x7d\x89\x45\xa8\x77\xdb\x3b\xee\xcf\xcf\xf4\x5c\xcb\xfb\xff\x1e\x55\x40\xb9\x75\xf6\x5f\x64\x46\x9d\xf9\xf2\xf0\xf2\x12\x61\x2c\x82\x58\x92\xbb\xe2\x39\x6a\x93\xc8\x1d\xfd\xb8\x81\x5f\xc2\x59\x96\x27\x5e\x33\xeb\x34\x05\x0a\x11\xca\x57\x22\x9b\xdb\x5f\x9d\xc4\x42\xbe\x78\xcb\xbc\x21\x92\x03\xba\x25\x59\xb4\xd0\x88\xb1\xb6\xcd\xa1\x6a\xf7\xff\x33\xaa\x96\xb9\x79\xb9\xf1\x49\x16\xdd\x4d\x64\x99\x6f\x60\xae\xa4\x09\x8b\x7e\x23\x02\x40\xe6\x52\x78\xee\x17\xfd\x43\x64\x99\x7f\x48\xe9\x1c\xdc\x0a\x0a\x04\x20\xba\xea\x60\xe1\x49\xd6\x1b\xef\xed\xcb\x40\x16\xf7\xeb\xfa\x62\x04\x16\x39\x99\x3d\xf5\x4b\x92\x2b\xb6\xde\xb5\xb7\x5e\xa1\x73\x26\x70\x5d\xfc\xe7\x96\x44\x16\x77\xc2\x45\xf7\x16\xb9\x36\xe9\x20\xfc\x40\x92\x6b\x46\x83\x16\x5d\x22\x3c\xf8\xd7\x1b\x0d\x5a\xa8\xed\x26\x52\x5e\xf7\x45\x9d\xc5\x3b\xe6\xe6\x52\xb8\xdc\x74\x8b\x92\x7b\x77\xb7\xd1\x15\x08\xb0\x1d\xfe\xd3\x18\x34\x6e\xa0\x9b\x7e\x20\x72\x5b\x26\xbd\x9a\xe6\xf8\x27\x96\x56\x6e\xaa\x3a\xe4\xb6\xec\x15\xb5\xf1\x60\xdd\x4b\xa2\x0e\xc2\xa0\xbb\xe2\x48\x38\xb3\x88\x39\xb3\x88\x03\xcc\x26\x79\x82\x7a\x99\xf3\x4a\x4e\x85\x83\x78\x84\x9f\x7b\xb6\x88\xb7\x06\x8f\xff\xc3\xb8\x2e\x79\x2c\xd8\x34\x53\xf9\x2f\xcf\x15\x75\x5b\x20\x2e\x0e\x1d\x95\xc4\x72\xa4\xfb\xcf\x2d\x0e\x7a\xd6\xd7\x24\x4f\xdc\x47\x86\x36\xd1\xe8\x06\x25\x0f\xd9\x01\x79\xd4\x76\xba\x9b\x42\xe4\xd1\x18\x99\xbe\x56\xe5\x6f\xbd\x74\xfc\x94\x37\x81\x9a\x90\x2c\xbc\x39\xea\xf6\x59\x21\x22\x73\x92\x37\x26\xe4\xdd\x13\xb2\xa8\x08\x91\x97\x72\x9b\x18\x5a\xde\xf2\xc0\xd6\x24\x2f\xb5\x97\xf2\x9a\x11\x82\xf6\x09\xd1\xa0\x94\x0a\x4a\x49\xdd\x95\x84\xc5\x43\xcc\xe2\x91\xb3\x07\x13\x27\xd1\x15\xef\x59\x34\x46\x8d\x95\x51\xea\x20\x44\x2d\x1c\xa3\x3a\xe8\x55\x12\x8d\xcb\x5b\xf7\xe5\x2d\x34\x52\x01\xd8\xc2\x7f\xda\xf1\xe0\x75\xf4\x25\x56\x59\xbc\xd2\x72\x14\xda\x24\xe1\x41\x2d\xe6\x41\x9d\x53\xdc\x10\x5f\x4c\xa4\x85\x2c\xe5\x24\x24\xb0\x5f\x5c\x55\x9f\x5d\x55\xc5\xb1\x07\x76\x01\x6f\x46\x73\xc3\xce\xc5\x11\x03\x76\x41\xbc\xd7\x11\x86\x42\x4a\xf3\x8d\xa8\x1b\x88\xc0\x8a\xbe\xc4\x1d\xf7\x21\x14\xd2\xc1\x3f\xd3\x4a\xa4\xda\x2b\x6d\xaa\xdd\x39\x84\x95\x28\xa9\x03\xb4\xa3\x93\xfc\xae\x44\xed\xc5\x4a\xcb\xa2\xb0\x7c\xbb\xae\xf4\x2e\x56\xbd\xe6\x8a\x9c\x59\x45\x69\x1c\xe8\x1b\xe2\xe0\x6a\x69\x25\x52\xbc\x65\xb1\xe2\xc2\x18\xb7\x95\xe9\x73\xbc\xf2\xf1\x39\xf6\xc5\x59\x99\x9a\xec\x95\xe1\xab\xda\x5c\x1d\xb2\x72\xbd\xa2\xce\xe8\xb2\x63\x65\xa7\x95\x49\x29\x57\x36\x80\x84\x4a\x39\x77\x65\x52\xa8\x65\x20\x84\x73\xfa\xf5\xb1\xf2\x88\xaa\x61\xfb\xdc\xd7\x6d\xe5\x98\xc7\x6c\x18\x55\xfb\x86\x61\x5d\xf4\xd2\xc0\x68\xf7\x0d\xe9\x75\xbc\xf6\x57\xc6\xb5\xdf\x3a\x7b\x49\x69\x7c\x59\xe6\xeb\xee\xf0\x7d\x69\x65\xea\x5b\x57\x36\x67\x8e\xe2\xf9\x59\xd2\xca\x1a\x03\xdf\x33\x2e\x1e\x65\x9f\x56\x21\x43\xb0\xca\x66\x08\x6a\xe3\xba\x15\xf2\xd8\xab\x40\xeb\x24\xce\xc9\xad\xf2\x45\x1d\x90\x1b\x63\xe5\x2a\xaf\xc6\x85\x58\xf1\x4c\x95\xeb\xaa\xb4\x76\xae\xfa\xbe\x9b\xff\x70\x6b\x08\xd0\x45\xfc\xe7\x42\xe8\x44\xd4\x5d\x51\x77\xe3\x80\xfb\xea\xb4\xce\x79\x6e\x7d\xef\x57\xf1\xeb\x6f\xb5\x11\x4d\x1a\xc5\xae\xcd\x19\xf7\xd5\x18\x12\xb6\xda\xd4\x3f\x3f\x9d\xaa\xbd\xd5\xe8\x78\xb6\x9a\x39\x9e\x55\x0f\xfe\x4f\xab\x5f\x6c\xb2\x23\x16\xd7\x9d\xda\x57\xa7\x42\x6a\x75\x53\x48\x65\x9a\x28\x56\xa7\xb4\xb8\x4c\xe5\xdd\x19\x97\xb9\xfa\xcb\x85\xeb\x86\xf2\x5d\xaa\xcb\xc8\xab\xbf\xf1\x1a\xdc\x5f\x1c\x68\x3b\xad\x41\x95\xec\x1a\xcd\xa2\x2b\x78\x08\x06\x9d\x88\xd6\xd8\x0c\x66\xa1\xce\x63\x8d\x39\x58\x35\x2d\xc0\xcb\x85\xb4\x35\x62\x53\x9a\xfa\xbb\xb6\x15\x55\x12\x55\x9b\xd2\x27\xa7\xd9\x6b\xac\xf8\xd6\xa6\xec\xcb\x71\x00\xf6\xff\x2d\xaa\xf6\xde\xf2\x84\x76\x69\x99\x4f\xb5\xff\x94\xcd\x0f\xb8\x20\xb6\xc6\x13\x3d\xb4\x10\x34\xcf\x58\xbd\xff\x5f\x51\x75\x59\x83\xfe\xd6\xe4\x15\xb6\xe6\xa6\xcf\x6d\xba\xac\xbb\xcc\xbd\xc6\x7f\x3e\x98\xc4\xa8\xd3\xa8\x33\x9d\xf1\x22\x71\x9a\x0c\xbf\x5a\xb3\xae\x3f\x3f\x9d\xee\x12\x6b\xd2\xd4\xbf\x66\x55\xdb\x73\xec\x48\x8f\xaf\x6d\x5e\xa2\xd3\xe3\x60\x4d\x3a\x70\x2d\xf3\xd6\x59\x14\x3a\xd6\xa4\x4a\x6c\x4d\x43\x50\xaa\x54\xbd\xac\xf9\xc6\xc7\x0c\x9d\xa1\x30\x58\x74\xcd\x2f\xea\x20\xab\xd3\xe9\x60\x09\xf9\xc2\x25\x26\x92\x30\x7c\x71\x09\x23\x0e\x96\x81\x07\x54\x4f\x8a\xbe\xff\x7f\xa3\x6a\xb3\xd8\x8c\x18\x5d\x21\x58\x2c\x13\x2c\xea\xe2\x3c\x0a\xd9\xe8\x25\x79\xaf\x27\x9d\xdd\x96\x04\x39\x10\xc3\xfe\x2e\x8c\xf4\x5e\x12\x1b\x55\x0c\x9b\xad\x38\xf0\x6a\x5a\x42\xef\xf6\x25\x86\xcf\x5d\x07\x97\x54\xae\xe8\xa4\xc5\x52\xa5\x1a\x63\xa3\xf8\xb0\x4c\x7c\xc8\x85\x52\xe6\x92\x98\x2e\xf9\x2c\x4e\xc0\xc5\xd6\xb5\x78\x3d\x2f\x64\xb1\x4e\x74\xf8\x5e\x2b\x76\xd0\xb2\x1d\x94\x1d\xfa\x25\xad\x45\x0d\xd7\xb2\xbc\xd4\x9d\xec\xc5\x5a\x57\x34\x89\x18\x02\xc7\xb8\x4a\x6b\xd1\x57\x72\x01\x7b\x20\xad\xf1\x6f\x2e\xb3\x6b\xc5\x20\x96\xad\x79\x5e\xdc\x98\x17\xfd\x36\x17\xb2\xb8\xd5\x32\xa3\xee\x8a\xba\x7d\x7b\x53\x1d\xb4\x2e\xf2\x0a\x0b\x79\x67\xab\x23\xf9\xa4\x75\x31\xc6\x74\x5d\xb7\x05\x50\x70\xf9\xae\x18\x84\x09\x06\x7d\xb9\xa4\xb6\xc2\x33\x6b\x99\x67\x56\x9b\xa4\x33\x77\xe2\x5e\x07\xa0\x4f\x71\x78\xa8\xb4\xee\xd8\x47\xc0\xa5\xae\x99\xa4\xf7\xa6\x01\x7b\xdd\xa6\xb9\xac\x95\xe3\xbe\x63\x15\xe0\xfe\x9f\xa8\x58\x5b\x37\x83\x25\xd7\xdd\x8a\x0d\x80\x55\x8c\xca\x5f\xb7\xe5\xb6\x4a\x14\x6c\xd7\x1d\x97\x26\x30\xee\x0a\xe3\xa1\xd6\x43\x43\xef\x7a\x0a\x7c\xcb\x5c\x54\x5b\x4f\x9c\x72\x53\x30\xf7\x45\x26\xe3\xa1\x8c\xba\x1e\xc8\xa8\x34\x8a\xae\x37\x28\x11\x50\xac\x0b\x3d\x46\xd6\x4b\x47\xdd\x85\x94\x6f\x25\x71\x56\x5e\xc6\x4b\xad\xd7\x92\x00\x94\x19\xef\x51\x81\xb6\x5e\x53\xa0\x15\x9a\xe1\xd7\x1b\x9b\x13\x49\x3f\x0a\xdd\xb0\xd6\x1b\x37\xd9\x6b\x37\x59\xa5\x47\xd5\x7a\xbf\xa8\xfb\xae\x3d\x3c\x12\x01\xa5\xf2\x7e\x69\x82\x2e\xcc\x85\xa7\xa5\x74\x95\x59\x6a\x28\x07\x0e\xbf\x95\x56\xc0\x0f\x2c\x53\x25\xe7\xdc\xc9\x71\x2a\xb5\xe6\x0b\xf9\x2c\x72\xe7\x7e\xd6\xe0\x25\xd4\x78\x89\xca\x9b\x47\x83\x79\x54\x13\x97\x2b\xed\x6c\xeb\xa3\x27\xe7\x32\x76\x3d\xe7\xe4\x26\xd5\x15\x3a\xe9\x05\x9d\x74\x61\x54\xfc\x0a\x5e\x7b\x59\x54\x7c\x2e\x93\x97\x60\xf0\xda\xcb\x78\xed\x4e\x35\xf7\xfa\x82\x43\xfc\xcc\x91\xa3\x36\x5e\x5a\x5f\xac\xdd\x67\xa9\xe3\x6b\xe7\x01\xfa\x82\xc4\x7d\xc8\x5c\x41\xb3\xbb\x26\x4e\xb4\x22\x98\x78\x54\x97\xd7\x34\x80\x47\x34\x21\x97\x0d\x87\xae\x89\xb6\x3b\x85\xfb\xd4\x20\x94\x88\xa6\xf6\xab\xce\x50\xa4\x68\xe2\xd5\x44\x1f\x1c\x4d\x1d\xe8\xbb\x83\x75\x14\x98\x35\x8d\xf2\x1b\xe0\x74\x17\x34\xd6\x21\xb3\x4a\x8b\x7e\xce\xa8\x43\x66\xf9\xee\x37\xaf\x26\xee\x4d\x05\xf4\xdf\x70\xdc\xba\xa4\x89\x90\x27\x9a\xcc\x02\x3c\x1c\x96\x7f\x17\x44\x5f\x90\xcc\xce\x81\xc0\x76\xc1\xc7\x3a\x3b\x7b\x83\x01\xc7\x9a\xbe\xe8\xcb\x77\x72\xd8\xf3\x3d\xda\x49\x35\x19\x5a\xd0\xa0\xab\x9d\xe6\x58\x07\xc4\xa3\x0e\xca\xd4\x1a\xee\x5a\x9a\xe1\xd2\x34\x38\x9f\x99\x31\x69\x0a\xc8\xaa\x31\x9c\xb3\xd6\x10\x60\x34\x37\xa4\x0c\x70\x16\x59\x73\xfb\x55\x77\xb2\x91\x4d\xd6\x5d\x51\x77\x03\xde\x37\xb3\xee\x65\x9d\x25\x0a\x64\xca\x9b\x5d\xa0\xac\x33\x0c\xc9\x31\x39\xf6\x4c\xfe\x59\xf3\x49\x95\xd3\x58\x37\x63\xec\x0b\x79\x83\x3b\xc7\x40\x9e\x50\x01\xa7\x35\x3c\xb7\xcb\x2e\x68\x51\x67\x58\x91\x74\xd9\xd5\x80\x77\xd1\x8c\x0c\x1c\x9e\xc6\x75\x17\xc4\xd8\x6f\x00\x24\x24\x8e\xfd\xe6\xba\x5b\x1c\x6c\x1e\x54\x70\x6b\xa6\x1e\x45\xf3\x83\x04\xf2\x31\xbe\x27\xe6\xec\x60\xf1\x36\x7e\x8f\xb6\x73\xcd\x58\x77\xba\xa2\x68\x21\x67\xa5\xa6\xbd\xcf\x43\xdc\x7a\xab\x85\x74\x5c\x8b\xd1\xf1\xb1\xdc\x56\xac\x85\xbe\x17\x0a\xfd\xfd\xa0\x3e\x4e\x0b\xcd\x16\x5a\xb0\x0e\xbc\x37\x34\x14\xf8\x8a\x9c\x2c\x83\xec\xb2\x46\x78\xab\x16\xa0\x48\x11\xc0\x42\x0b\xdd\x73\xb4\x5c\x80\x04\xef\xec\x27\xe9\x8b\x96\x1b\x75\xae\x51\xd4\x72\x47\x9d\x22\x54\xdd\xef\x06\x2d\x34\x2a\x69\xf9\x90\xb6\x48\x38\xbe\x2f\xe6\xe5\x43\x0a\x00\xbf\xf5\xb5\x52\x03\xa8\x15\x58\x89\x0c\x72\xd3\x9a\x7f\xd5\x75\x00\xce\x56\xd6\x71\x7c\xb5\x1e\x30\x5a\x1f\x7b\xa5\x4e\x48\xab\xe9\x84\xc4\x51\x78\x77\x81\x46\x1d\x32\x98\xb9\x6a\x44\x6b\x8b\xef\x41\x9f\xcd\x50\x4c\xad\x14\x43\x15\x99\x29\x1b\x2d\x63\x5a\xe3\x1c\xd5\x86\x6c\xad\x9c\x97\x90\x7a\xb5\xf6\x93\x78\xaa\xb0\x6e\x44\x1d\xc6\x40\x1a\x59\x29\x2f\x68\x35\xfa\xd9\x32\xf7\x7c\x0d\xfa\x69\xbe\x82\x91\x24\x74\x17\x44\x3f\x91\xa4\x8a\xce\x83\x5a\xa9\x64\x56\x33\xe2\x04\xee\xff\x2e\x88\x31\x00\x7c\x9d\x7a\x72\xad\x12\x63\x00\x0c\x5e\x89\xb9\x66\x10\x9a\x56\x60\x3b\xd2\x97\x44\x2b\xfd\x07\xb4\x5e\xc0\xde\xe2\x3e\xab\x41\xcb\xeb\x83\x3a\x9e\xa3\xfa\xc4\x18\x1e\x98\x0c\xd7\xfc\x27\x26\x58\xeb\x13\xcb\xfb\x9e\x9c\xbf\x9c\xb6\x37\x9a\x45\xde\xea\xca\xab\xa5\xbe\x31\x7c\x3d\x09\xfb\xb8\x2d\x34\xde\x03\x30\x7b\xe5\xd5\x59\xbf\x78\x0f\xf0\xc5\xd4\xa1\x68\xa0\x3e\xe9\xc9\x2a\x4a\x87\x4c\x6d\xd4\xaf\x28\xd0\xb6\x98\x77\x67\x17\x70\x99\x9a\x83\xb8\xfb\xd4\xb4\xb8\xaa\x9b\xd9\x1e\x5a\xe5\x96\x69\x35\xbe\x07\x14\xf6\xca\xeb\xa3\x51\x2b\xa0\xad\x03\x30\xd0\x95\x55\xda\xe8\x8f\xa2\x0d\xdb\xa9\xf1\x08\xb6\x11\xdf\x1b\xeb\x37\xde\xe3\x2e\x20\x99\x6c\xf3\xe4\x10\xe3\xf8\x66\x7c\x0f\x79\xc6\x19\xa5\xa7\x8d\x8c\x9d\x36\xd1\xdf\xf8\xe9\x49\xdb\x8a\x31\x18\xd9\x6a\x74\xe4\xd2\x46\xdf\x30\x6d\xd8\x32\x0c\x24\xd3\xf6\x44\x9b\x00\x9b\xa5\x6e\x43\xdb\x1b\x7d\xc1\x1a\xd1\x50\xa8\x3d\xd6\xa8\x03\xee\xbc\x93\x64\x77\x1a\xb5\xb5\x63\x8d\x18\x23\xa7\x3d\xc8\x4f\x2f\xa7\xce\xd7\xbd\x53\x0f\xa9\xfd\x00\xe8\x93\x9d\xea\xd4\xe8\x6a\x07\x04\xb0\xa7\x5a\xdd\x05\x3c\x2e\x1d\x60\xc8\x0c\xcd\xd4\x4e\x15\xab\x76\x64\x3e\xa0\xe0\xa4\xfd\x8a\xba\x93\x8b\x35\xda\xbc\x2b\xeb\xde\x93\x67\x9d\x6d\x52\xc3\xa4\xa6\x61\xa2\x53\x8a\xf6\x37\x7a\x09\xf0\x59\xe1\x4c\x47\x2c\x97\xf6\x0f\x09\x9f\x49\x28\xfa\xd7\xa3\xce\x66\x9a\x01\x82\x3a\x62\xa6\x4f\xc6\x2b\x21\xc3\x34\x82\x29\x1a\xe6\x58\xd6\x3c\xc1\xe1\x2e\x60\x5f\xe0\xc4\xd9\x68\xe2\xd2\xd0\x75\xe9\xb0\xdd\xc9\x3c\x5b\xbb\x20\xea\x10\x26\x4a\x3b\xb5\x0e\x5a\xb7\x75\x5c\x7f\x65\xc1\xdf\x05\xf1\x3d\x64\x3d\x4c\x24\xa0\xe3\x8a\x7e\x5e\x00\x3c\x4f\x6c\xf3\xe2\xbc\x8c\x07\x51\x8e\xdc\x2d\x23\x98\x8d\x81\xcc\x9d\xc9\x15\xb4\x3a\xbe\x68\xd3\xe6\xac\x13\xac\x49\x67\xcc\xd9\x04\x6c\xb9\xe7\x7c\xdf\x05\x7c\x6f\x0e\xa4\x59\xe2\x5c\xcf\x38\x99\xd3\x13\x94\x7a\x3f\x43\xdb\xa4\xd3\x2c\x8d\xbd\xb0\x9f\x93\xd2\x98\x4e\xcb\x0c\xcc\x64\x73\x49\x27\xf5\x27\x3a\x5f\xe4\x56\x13\xf6\x85\xe6\x3f\x9d\x9e\x45\xc0\x77\xd9\x64\xf0\x9c\xce\xef\x80\xf7\x7b\x3f\x25\xc6\x27\x69\xfd\x86\x65\xdf\x05\x5c\x3f\x41\x2e\xb7\xca\xcb\x43\x0a\xbf\x27\x03\x48\xd2\xbc\x54\x85\x6e\x72\x2a\x48\xf9\xd0\xb8\x97\xc2\xcd\x52\x65\x21\x71\xa4\x2b\x7e\x55\x82\x01\x15\xf4\xb3\x71\xae\x57\xf4\x73\x9d\x1c\x68\xbc\x70\x03\xcc\x40\x0d\xcc\x20\x8b\x67\x3e\xd9\x05\x5c\xa3\x35\x4e\x6a\x4f\xff\xde\xa2\x89\x5f\x91\x8b\xac\xd3\x39\x59\x57\x5c\xe2\x6b\x9c\xc4\x81\x8b\x75\x77\xd4\x19\xaa\x78\x30\x53\x8b\x42\xa5\x2e\x00\x1c\x33\x82\x5b\x17\x0d\xf2\xba\x26\xfc\xfc\x49\x21\x17\x6d\x12\xba\x90\xaa\x3a\x53\x60\x09\x57\x4b\x05\xa2\x26\x53\x82\x25\x5d\x41\xad\x97\xcd\xa7\xe4\x18\xdf\x8a\x79\x59\x27\x95\x58\x67\x5d\xcc\xcb\x85\xf7\x48\xb1\x56\x30\xa7\x9e\xc1\x78\x46\xdd\xaf\xf7\x80\xb8\x1f\xdf\x0b\xc6\x75\x21\x9d\x93\x67\x80\x4a\xba\x42\x38\x5c\xc8\x12\x1d\x4c\x98\x65\x45\xf6\x9f\x13\x75\xec\xe7\x1d\xdf\x33\x44\x5c\xf1\x6c\xf7\xbb\x80\xd4\xfa\xa4\x8d\xc9\xb1\x5f\x9e\x68\xd3\x10\x6c\x67\x25\xcd\x5a\x41\x0b\x16\x52\xdf\x31\xde\x45\xd7\x1b\xf3\x09\x14\x70\x07\x1f\xdf\x05\xb1\x27\x0c\x8a\x59\xe8\x17\xa7\x4b\xe3\x3d\xa4\x9f\x89\x73\xbb\x34\xfa\x62\xfa\x2a\x29\x99\xf3\xa2\x31\x67\x1f\xde\x8b\xbd\x1b\xb4\x1c\x09\x6b\xa4\xc4\x5e\x0a\xe1\xf7\xe4\xc0\xf3\x54\xde\x49\xaf\x38\x2b\x97\x45\xaa\x4b\xa1\xf0\x74\x51\x1b\xaf\x17\x50\x9b\x3d\x9d\xf9\x2e\x58\x51\xf7\xa1\xce\xfb\x79\x65\xf6\x05\x78\xab\x52\xb8\xee\x17\x11\xd4\xf4\x42\xfc\x4a\xe1\x5c\x5f\x8c\x0d\xd0\x0b\x88\xd7\x85\x0a\x8a\xab\x44\x9b\x05\x7d\xe1\x1d\x70\x05\x6d\xbd\xea\xa9\xf3\x75\xb8\xea\xaf\x3a\xf8\x91\x51\x88\xbd\x42\xf0\xb8\x00\x8b\xeb\xa9\x6b\x77\x41\x89\x3a\xf4\x85\xdc\xd9\x15\x02\xfc\x85\x2c\xf7\x85\xf4\xfa\xa2\x95\x51\x2f\xa4\x3a\xab\xe9\xdf\x9c\x1d\x34\x7c\x39\xf4\x32\xf9\x5e\x82\xe1\xbd\x42\xbe\x37\x7f\xe4\x5d\xc7\xa5\x08\xd2\x74\x99\xfe\x49\x2a\xe5\x84\x8b\xbe\x17\x7a\x21\x0f\x68\x8d\xe5\x0d\x99\xf3\x02\xfc\x42\xed\x9c\x36\xe1\x71\xb9\x40\x2a\x08\xc4\xa5\x57\x90\x03\x73\x39\xde\x75\x9c\x9a\x2b\xfa\x82\xbc\x5a\xc1\x0c\x5f\x71\xe5\x5e\x48\xeb\x1a\xd7\xc0\x15\x47\x1e\xc0\xcb\x52\x79\xac\x23\x74\x58\x2f\x24\xde\xa2\x55\x45\x2d\x75\xe2\xf9\xf9\x60\x5e\xc8\xf0\x5e\x4f\xf4\x13\xc7\xb3\xf1\x9a\x0b\x9d\xb7\x5e\x96\xdc\x80\x10\xc9\xbb\x20\xda\xc4\xf1\x24\xe4\x95\x5e\x74\x62\xd3\xcb\x04\x8f\x3e\x7b\xd4\xc5\x7c\x22\x09\x45\xe3\xf1\xbc\x42\xde\xbe\x4c\x6f\x25\x8d\xc7\xf3\x8a\xa3\x7b\x01\xf9\x9d\xf6\x60\xbd\xbe\x58\x3f\x24\xdd\x77\xe4\xf0\x5d\x10\xfd\x04\xbc\xb7\xe7\x33\x4e\x7a\x87\x6e\x03\xda\x79\x69\xbc\xaa\x6f\x7a\x3e\xe8\x8d\xa3\xdb\x38\x86\x08\xa9\x56\x64\x08\x12\x4f\xa5\xb6\x0b\x7a\xd4\xd9\xfa\x35\x37\xed\xea\x4d\x7f\x64\x45\x22\x21\xa1\x05\x5a\x6f\xaa\xd9\xf5\x2e\xc8\x16\xc0\xfd\x72\xd3\xcd\x50\x91\x9f\x52\xe2\x8a\xbf\x69\xe8\x57\xc3\x05\xda\xef\x45\x9d\x46\x1d\xc6\x40\x79\xfb\xa6\x0b\x9c\xde\xc6\xd0\x8b\x27\xaf\xda\x05\xd1\x97\x76\x12\x75\x4e\xd6\xdd\x51\x07\x77\x0a\x5e\x49\x77\xe8\x0c\x90\xa0\x48\x18\xd3\xa6\x77\x08\x02\x27\x25\x7d\xe8\x52\xee\x1e\x73\x76\x32\xaf\xa5\xa8\x8b\xbe\x20\x63\x56\x08\x48\x01\x4e\xa4\x30\x69\xf4\x49\xc1\xf1\x1e\xb1\xb6\x03\x79\x5a\xc8\xf2\xde\xc1\x8a\xdc\xe3\xfd\x9d\x3d\x6f\x17\x44\x3f\x2d\xea\x40\xa8\xa7\xd6\x7b\xc6\x7b\x48\x60\x2a\xd1\xe6\x8c\xb9\x06\x2b\x42\xd8\x0f\xbd\x43\xd7\x70\x52\xe9\x4b\xe2\x9c\x05\xdb\x7e\x83\x4d\xe9\x3c\x47\xb7\xc4\xba\x0b\x52\x44\x16\xae\xd1\x8a\x3d\x88\x1c\x32\xd4\xc3\xeb\x1d\xba\x45\x24\xe6\xef\x42\x5a\x17\x0e\x61\x7a\x2f\xe4\xf4\x23\x1b\x76\xaf\xf8\xde\xc9\xdf\x5f\xb9\x5f\xae\x18\x83\xe5\xc1\xee\x21\x22\xdd\x41\xcf\xee\x93\xf9\x83\xca\x84\x3b\x74\x99\xf7\x85\xb5\xe5\xb9\xbd\xaf\x38\x63\xd7\xc9\xc9\xc7\xbe\x5c\xb1\xcf\x4e\x1a\x8b\xe8\xcb\x1d\x6b\x0b\x3a\x48\x88\x64\xbd\xe9\x6d\xa9\xc8\x34\xd5\xa5\xb2\x2f\x41\x07\x91\x74\xaa\x87\xb8\x16\x58\x02\x6a\xd1\x17\xbb\x4d\xf6\xf3\x89\xbe\x1c\x54\x77\xb2\xdf\x77\x88\x95\x27\x09\x95\x04\x2d\x78\x63\x7f\xbe\x27\xcd\x37\xd7\xef\x8d\xb9\x7e\xd1\x26\xd9\xc5\x5b\x63\x7c\xc8\x79\x46\xb8\x60\x0d\x90\x2c\x3d\x29\xad\x84\x4a\x96\x3b\x94\x3a\x48\x66\xc5\xb4\xe2\xbb\x20\xc6\xa0\x27\x3b\x31\xe7\x2c\x58\xa6\x5b\x91\x58\x8c\xec\x69\xa0\x25\xe8\x8d\x3c\x16\xf4\xb5\xd1\x3b\x6c\x09\x48\x7c\x25\x9d\x6c\xca\xfd\xc5\xbc\x40\xf4\x20\xdc\xa8\x3e\x0c\x02\xd4\x07\xc9\xef\xc5\x5d\x44\xf4\x21\x94\x85\x3e\x27\xf3\xf0\x88\xf7\x38\x06\xcf\xa0\xcb\x7b\xec\x09\x91\xfa\x39\x19\x42\x53\xd4\xad\xa8\xc3\xd8\xa9\x30\x78\x82\xd5\x7a\xf2\x49\x92\xce\xef\x05\xab\xf5\x98\xf3\x55\xa7\xc7\x84\x3e\x41\x93\x0d\xae\x21\x77\x9a\xde\xf5\x09\xa5\xd5\x53\x33\xea\x1a\xeb\x62\xec\x27\x6f\x32\xef\xbf\x87\x41\xb0\x0a\xb8\x32\x26\x9e\xdd\x05\x3d\xea\xb0\xb6\xd4\x99\x07\x28\x84\x3e\x60\xb5\x3a\xd9\xb7\x00\x33\xd3\xe7\x64\x95\x25\xfb\xf6\x84\x1e\xf7\xe9\xe8\x27\xf9\x9e\x27\xf4\xb8\xcf\x49\x5e\x1d\x73\x1d\x76\x30\x73\x1c\x8d\x1c\x58\xbb\x20\xc6\x80\x54\xee\x21\x56\x06\x0e\x9a\x1a\xd6\x59\x24\x3a\xda\x05\xd1\x4f\xc9\xbf\xf3\x61\xec\x82\x98\x33\x41\xd2\x75\x8a\x87\x4f\xf0\x67\x8f\x60\x8d\x3a\xc7\x20\xbf\xda\xc4\xda\x52\xdc\x0e\x70\x35\x05\xb8\x9a\xd0\x6d\x53\x9f\x15\xdf\x5b\x18\x03\xc5\xca\x67\x5d\x51\x67\x63\xa7\x9b\x92\x3e\x2b\xbe\xb7\xf0\x3d\xea\x7f\xc3\xfd\x55\xcd\xfd\x75\xd7\x71\xdd\x83\x7e\x3e\x17\xbe\xd7\xfe\x0d\xfb\x56\x9f\x20\xa1\x0f\x24\xcb\x30\xcb\x3d\x21\x59\x3e\xd0\xec\x30\x8b\x81\x3e\x21\x59\x3e\x30\xb9\x0e\x92\xb4\xe7\x8a\x25\x34\xf2\xca\xec\x3f\xbb\x20\xb6\xa1\x49\x96\x7d\xc5\xb1\xbe\xe3\xe8\xde\x58\x5e\x9a\xc9\x9e\x30\x5b\x3d\x20\x77\xf4\x41\xd3\x27\xcc\x95\xe6\xc8\x9b\x47\xa2\xa4\xf7\x04\xb9\x7b\x60\x9a\x22\x0a\x86\xbe\x61\x66\x79\x13\xde\xa3\x74\xf5\xd2\xeb\x47\x5f\xa4\x23\x22\x26\x99\xbe\xc1\xda\xbd\x09\x73\xc6\x65\x7a\x19\x05\xab\x6f\xc6\xb6\x20\xe9\x7d\x83\xb5\x33\xf7\xe0\x2c\x0c\x1b\xd0\x97\x51\x93\xfa\x22\x2b\x44\xa2\x34\xf7\x06\xdb\xf7\x22\x7f\x24\xb1\xf0\xf4\x25\x3a\xbf\xbe\x30\x61\x87\x69\xea\xa5\x8b\xb0\xbe\x90\xe6\x06\xe7\xec\xa5\x9b\x8e\xbe\x05\xb9\x93\xb8\xb6\xe1\x5e\xa1\xaf\xa5\x40\x1a\x89\xe4\xee\x0d\xb3\xdc\x7b\x12\x7d\x51\x84\x78\xc3\x1c\xfb\x22\x6b\x6a\x22\xa9\x7f\x43\x42\x7c\x21\x21\xd2\x43\x44\xdf\x90\x10\x5f\x98\xa6\x06\x49\x4c\x04\xf5\xa9\x05\xf5\xe5\x11\xe6\xb5\x97\x1e\x08\x6a\x5e\x1f\xfb\xbd\xca\xba\x98\x17\x63\x4f\x47\xa2\x18\xf4\x86\xbe\xf9\x6d\x98\x6b\x92\xc2\x37\x4c\xc3\x6f\xc3\x1e\xa4\x26\xe2\x0d\xf6\xf4\x05\x7b\x3a\x48\xb6\xde\x60\x4f\x5f\xe4\x4d\x22\xf2\x92\xbe\x3d\xfa\x62\xe6\x2e\x09\x33\xf5\x1b\xac\xeb\xdb\x31\x67\x31\x86\x10\x55\x5f\x90\xd0\x49\xcd\xc7\x1b\x26\xd0\x77\x00\x05\x84\xe4\xf5\x0d\x16\xf4\x45\x7e\xbc\x4c\xd6\xee\x65\xbc\x82\x9a\x37\xcc\xae\xe3\x18\x42\x1b\xf6\x9a\xed\x42\xe8\x18\xa8\x6f\xb0\xae\xaf\xb1\xae\x4c\xcf\xb5\x0b\x62\x5e\x04\xdf\xe3\x95\xf4\x4a\x7c\x0f\xe6\xd8\x5c\x39\x2f\x41\x7a\x5f\xd3\xed\x8f\xd0\xd6\xbe\x12\xe3\x43\x2a\x6d\xe6\xc4\xd0\x70\xd5\xd1\x17\xd9\x41\x19\x7d\xac\x6f\x98\xd7\x5e\x98\xc5\x09\x3d\xa2\x6f\xb0\x92\x2f\x58\xc9\xd0\xbe\xbd\x41\x07\xdf\x0b\x6d\x92\x9d\x7a\x83\x9e\xbd\x27\x8b\x5f\x9c\x95\xb0\x17\xbc\x40\xa1\x09\xed\xd4\x1b\xda\xa9\xf7\x05\x4e\x04\xd9\xf6\x37\xc4\xdf\x57\xf1\x5e\x8c\x4f\x63\xec\x86\xd4\x35\x0a\xaf\xff\x40\xe0\x54\x43\xe0\xcc\xa3\x90\xad\x7d\x43\xc4\x45\xb2\xa6\x41\x9c\x00\xd5\xa0\x75\x6a\xd6\x84\x11\x5a\x26\x0d\xd6\x47\x33\xfa\x39\xa2\x8e\x67\x53\x41\x7b\x88\x97\xa3\x1a\xb4\x47\x61\xbe\x2f\xa4\xe5\x1a\x74\x02\x21\x08\x23\xb4\x3e\x1a\x6c\x8a\xa1\x2e\xe5\x51\xc9\x6a\x69\xb8\xcf\x68\x47\x58\xbc\x47\x80\xa8\xc6\x39\xb2\x90\xdb\x3c\x18\xd2\xa7\x1a\x67\x45\xe1\x76\x13\xf6\x48\x0d\x76\x43\xcd\xce\x37\x2a\xaf\x7f\x0d\x3b\x9f\x22\x87\x7b\xad\xec\xcb\x8c\x7e\x62\x7f\x12\x0e\x5b\x35\x6c\x4f\xc8\xf5\x32\x42\x05\xa3\xa1\xd6\x39\x89\x44\x19\xb4\xad\x1a\x6a\x1d\x45\x6a\xe5\x2a\x51\xa7\x51\x87\x7e\x92\x16\x68\x88\x4f\x7a\xf6\x6e\xac\x2d\xfd\xac\x55\xa1\x0e\x22\x5c\xae\x6a\xa8\x83\x14\x9a\x5c\xe6\x21\xf9\x2a\xd9\xe8\x0f\x49\xf1\x23\xe7\xc0\x57\xc9\xf2\x7e\x15\xec\xa2\xe7\x84\xde\x05\x57\xd4\xfd\x9d\xd5\xe7\xab\xec\xe7\x67\x99\x99\x22\xd7\xd9\x2e\x18\x51\x77\xf2\xa0\xf1\x7b\x04\xb5\xfb\xaa\xa5\xee\x9b\xb3\xb0\x4d\x8a\x6b\x5f\x55\x64\xad\xf3\xb5\xfd\xaa\xc6\x7b\x1f\xde\x9b\x6c\xf3\x8b\xf1\x7d\xc8\xb9\xe3\x77\xc0\x17\x76\xe8\xaf\x21\x5b\xda\x74\xf5\xc5\xd7\x62\x5e\x9a\xd9\x3f\x27\xc5\xfb\xaf\xd1\xfe\xf9\x19\x40\x66\x9e\x92\x58\xc7\xb3\xf2\x35\xe4\xad\xa0\x48\xfd\x05\x64\xe6\x67\xe6\xea\x3c\x29\x52\x7f\x8d\xaa\x9b\xaf\x99\xea\x66\xd6\x5f\xef\x71\xae\x5b\x3d\xef\xb1\x8e\x77\xea\xd7\xec\x8c\x4d\xcf\x0d\x96\xbe\xd6\x62\x7c\xb6\x7e\x93\xf4\xec\x0b\xbb\xf7\xd7\xec\xce\x99\x8c\x94\xff\x5a\x8f\xbe\xd8\x39\x9a\x74\xbf\xf8\x5a\x8f\xf1\xd9\x39\x9a\x79\xf1\x7b\x3c\x47\x5f\x1b\x27\x15\x25\xe7\x85\xf7\xd1\xd7\x26\x32\xd3\xb9\x4a\xe4\x6b\xbc\x73\xbe\x66\x6a\xd5\xc9\x80\xcf\xaf\xcd\xf8\x9e\x20\x81\x5d\xe1\x18\x18\x44\xf6\x35\xbb\x57\x98\xdc\x7a\x17\xcc\xa8\x43\x5a\xbb\xda\xfe\x66\x87\x65\xfc\xef\xb8\xe1\xaf\x11\x7d\xf0\x33\xa3\x7b\x9e\xa5\xb1\xa7\x54\x8a\x7c\x66\x74\xdf\x75\xbe\xd3\xda\x15\xbd\xb9\xc6\xef\xdc\x7b\xbb\x20\x56\x09\x3b\x9b\xfa\xf6\xaf\xdd\x31\x6b\x48\x28\x4c\xe7\xf8\xaf\xdd\xb1\x0b\x6f\x24\xc5\x9b\x51\x17\xbb\xe2\x39\xe9\xf0\xfc\x74\xb6\x27\xde\x33\x68\x97\x29\x83\x33\xf3\xc6\xf7\xec\x46\x9a\x12\x2b\xff\xc6\xae\x78\x91\x2e\x7c\xf1\xb4\xbc\x31\x2f\x2f\x76\xb6\xf0\x3d\x8d\xd9\x36\xbb\x38\xf3\x39\xef\x82\x68\x53\xb1\x43\x17\xe7\x53\x63\x57\x98\x73\x14\x73\x73\xee\x82\x98\xeb\x0f\xfd\x5c\xdc\x85\x5f\xec\x8a\x0f\xe8\xda\xce\x4d\x7d\xe1\xb9\xf0\x75\x9c\xea\xc5\xd3\xd9\xe3\x54\x77\x9c\x24\x0a\xea\x5f\x67\xf8\xc2\xd7\x3b\xb2\xaf\x70\x37\x75\x0a\xb2\x9f\x61\xf1\xe7\x39\x5c\x49\xff\x75\x3a\x0f\x7d\x1d\x02\xa9\x27\x4f\x4d\x5f\x97\xe8\x8b\x9c\xc4\xaa\xfc\x1e\x39\x98\xaf\x9b\x60\x29\x54\xc2\x7c\x7d\x45\x3f\x21\x3c\x8a\x2b\x4f\xbf\x1e\x7b\xb0\xaf\x93\x89\x96\x7d\x59\xd1\xa6\xe5\xb2\x91\x58\xa3\x7e\x45\x9b\x10\x10\x09\x5f\xfc\x75\xda\xec\xbe\x0e\x9b\xdd\x22\x55\xee\x0c\xb5\xf8\x3a\x92\x55\x53\x11\xf1\x75\xba\x1b\x7f\xfd\x3d\x49\xb9\x39\x76\x8d\x7e\x5a\xcc\xbb\xac\xce\xf7\xe8\x2b\xfe\x19\xee\xed\xae\xf3\x79\x89\x10\xf5\x0f\x21\xea\x01\xa4\xfa\x0d\xda\x94\xbf\x61\x11\x69\x93\x38\x53\xdf\x20\x47\xf1\x8d\x86\x75\xe7\x19\x1b\x94\x04\x3e\xf8\x4a\x4c\xfa\x35\x7c\xe1\x2b\xf1\x0d\x24\xd0\xa5\x34\xfa\x0d\xc6\x4a\x7d\x03\x54\x72\xf1\xf6\x18\x41\x25\x47\x47\x9b\x12\xef\x71\x7f\x0e\xc4\x12\x2e\xee\xf9\x41\x05\xc6\x37\x26\x32\xc5\x72\xef\x46\xb4\xd1\x37\xcc\x01\x51\x88\xd3\xf0\x0d\x4a\xdb\xdf\x40\x86\xe7\x14\xe3\x0b\x1a\x62\x38\x5a\xcc\x96\xf7\x8d\x27\x66\x65\x9f\xda\xee\x0a\x8a\x6f\xd0\x36\xfa\x0d\x2d\xbf\xf2\xa6\x7d\x43\x63\x64\xb6\x3a\x75\x36\xbe\xf5\xc5\x5b\x76\xf2\x22\x9f\xd4\x17\x5e\x19\xdf\x04\x88\x30\x5d\x55\xbf\x08\x78\xf9\x04\xa9\xb5\x29\x67\x7f\xc2\x40\x85\x4f\x90\x49\x9a\x19\x98\x3e\xa1\xfa\xec\xe4\xe0\x9c\x83\xbb\x56\x28\xbf\x9e\x74\x9c\x73\xba\x9a\xe8\x93\xd8\x45\x62\xb2\xe6\x9c\xe4\x6b\x24\x76\x8a\xc0\x75\x9b\xde\x38\x9f\x32\x66\xe7\x53\x53\x0f\x36\x82\xdc\x7c\x81\x2f\xfa\x21\xc1\xbc\x4b\x31\x9f\xc6\xbe\x54\xf3\x75\x88\xf6\xe2\x7e\x56\xeb\x87\xdb\x83\x3f\x25\xfe\xc7\xa7\x07\xff\x83\x35\x6f\xd4\x20\xd9\x32\x6b\xd8\x73\x35\x3b\x6a\x67\x0f\xe8\xa2\xf9\x69\x83\x07\x07\x6b\x6a\xd4\x40\xb1\xce\x9a\xe8\x9b\xe5\x82\x8d\x91\xc6\x99\xd0\xf6\xfc\xf9\x29\x6e\x2e\xf9\xb4\x45\xdf\xb6\xfc\x4b\x07\xcb\x4f\x7b\xcc\x5c\x07\x78\x16\x6b\x5a\xd4\x58\xc0\x02\xc7\xd3\xa3\x07\x1d\x69\x94\x59\x13\x23\xdd\x6c\x05\x9d\x35\x3f\xa5\x51\xe6\xb3\x9c\xfd\xc1\x0f\x04\xe6\xce\xa7\xe3\xfe\xf3\x13\x77\x6c\xe4\x49\xfc\xbe\x04\x44\x0f\xaf\x89\xf5\x36\xd8\x56\x86\x65\x7e\x5f\xec\xbc\x0f\xd9\xc4\xbc\x07\x5f\xcc\xb5\x25\xf8\xab\xe4\x80\x02\x78\xe6\x33\xe0\x19\x8f\xc8\x2c\xe9\x75\xd5\xe4\xfe\xf9\xfd\xbe\x3d\x4b\x66\xae\xb3\xfd\xd3\x6e\x56\xa7\xb0\x25\x27\x97\xe7\xf6\x4f\x50\x20\xcf\x2c\x9c\x97\xdf\x66\xfb\x27\xbc\xc3\x3c\x4d\x75\x65\x82\xa4\xfd\xf3\xb8\x78\x67\xaf\x73\x9c\x95\xfd\x13\x2e\xde\x9e\x88\xbb\x65\xbf\xe9\xf6\x4f\xb8\x5c\x7b\xbe\x64\x59\x7e\xcb\xef\x9f\x47\x9d\xfb\xbf\xf0\x54\xfb\x9f\xff\x7a\xfd\xc7\xff\xe3\xff\xf5\xff\xbe\xfe\xe3\xff\x73\xfd\x57\xfd\x79\xfe\xe7\x7f\xfe\xa7\xfe\xb7\xff\xf1\xfe\x97\xe7\x7f\xfc\xfc\x3f\x77\xe9\xcf\xab\xdf\x7f\xf9\x6f\xfa\x9f\xfa\xff\xfb\xef\xff\xf3\x3f\x1f\xfd\xf9\x8f\xff\xfe\x1f\xfb\x2d\xfb\xfb\xff\x07\x00\x00\xff\xff\x27\xd5\xf1\x1c\x64\xeb\x04\x00"); +func _ddcg ()(*asset ,error ){_egdb ,_gggb :=_adeg ();if _gggb !=nil {return nil ,_gggb ;};_fgbe :=bindataFileInfo {_ee :"B5-V",_ffd :620,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491512,0)};_agec :=&asset {_da :_egdb ,_dc :_fgbe };return _agec ,nil ; +};func (_eb bindataFileInfo )IsDir ()bool {return false };func _dfe ()(*asset ,error ){_ecd ,_cga :=_gaa ();if _cga !=nil {return nil ,_cga ;};_de :=bindataFileInfo {_ee :"78-EUC-V",_ffd :900,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490853,0)};_bg :=&asset {_da :_ecd ,_dc :_de }; +return _bg ,nil ;};func _gbege ()([]byte ,error ){return _gb (_bcg ,"Ext-RKSJ-H")};func _gggc ()([]byte ,error ){return _gb (_ecaf ,"HKscs-B5-V")};func _ceba ()([]byte ,error ){return _gb (_acf ,"UniCNS-UTF32-H")};func _aacd ()(*asset ,error ){_ggaa ,_cfad :=_gefb (); +if _cfad !=nil {return nil ,_cfad ;};_egfa :=bindataFileInfo {_ee :"UniCNS-UTF8-V",_ffd :656,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492730,0)};_eafb :=&asset {_da :_ggaa ,_dc :_egfa };return _eafb ,nil ;};func _gebg ()(*asset ,error ){_abff ,_cfcg :=_acfd (); +if _cfcg !=nil {return nil ,_cfcg ;};_fead :=bindataFileInfo {_ee :"UniJISPro-UCS2-HW-V",_ffd :4376,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492860,0)};_adaeb :=&asset {_da :_abff ,_dc :_fead };return _adaeb ,nil ;};func _abdb ()([]byte ,error ){return _gb (_ddce ,"Adobe-KR-8")}; +func _ccac ()([]byte ,error ){return _gb (_fgg ,"Adobe-CNS1-7")};func _bebg ()(*asset ,error ){_bbd ,_bcf :=_ced ();if _bcf !=nil {return nil ,_bcf ;};_gbf :=bindataFileInfo {_ee :"Adobe-KR-UCS2",_ffd :201011,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490603,0)}; +_cbfc :=&asset {_da :_bbd ,_dc :_gbf };return _cbfc ,nil ;};var _bbc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x31\xcf\x9b\x30\x10\x86\x77\x7e\xc5\x8d\x5f\x87\x16\x6c\x6c\x92\x4a\x55\xa5\x2a\x0c\x65\x48\x52\x95\x26\xad\x54\x75\x20\xf8\x40\x96\x8a\xb1\x8c\x19\xf2\xef\xab\x3b\x13\x3a\xa0\x17\x1e\xf9\x7d\xc0\x67\xf2\x53\x53\x37\xce\x46\xc8\xbf\x85\xb9\x6f\x31\xc2\x60\x9d\x09\xb8\xcc\x6b\xe8\x11\x1e\x38\x5a\x97\x65\x42\x82\xb1\x7d\x7c\x3d\x72\xf4\x53\xe7\xb3\x2c\x3f\x5d\x5a\xf1\xfe\x2b\xac\x0b\xbe\x40\x53\xb7\xcf\x25\xe2\xd4\xb8\x61\x86\x32\x15\xcd\xea\xb7\x32\x40\xfe\x1d\x47\xbb\xc4\xf0\x84\xb7\x2f\x66\x7e\xe0\x3b\x30\x38\x10\xbf\x06\x83\xc1\xba\x11\xde\x48\xba\xe3\x76\xf5\xfe\x2f\x4e\xe8\x22\x14\xcc\xd0\x19\xce\x2c\x3f\x9d\x3b\x7f\xe9\x26\x84\xf4\x19\x77\xc6\x4c\xef\x18\x16\x3b\x3b\x10\xc5\x87\xa2\xa8\xfe\xf3\x1f\x4f\x8f\x20\xb6\xfa\xad\xa9\xaf\xc3\xb0\x60\x84\x8f\x2a\xa9\xf3\x5f\xb7\xa6\x86\xdf\x02\x44\x01\x52\x97\x47\xfd\x67\x5b\xfa\xf3\x3c\x9b\xbd\x28\x64\xda\x4c\x6f\x4d\xe8\xdc\x88\xd9\x27\x29\x64\xff\x19\xb6\x10\x65\xa5\x2a\x62\xe5\x83\x19\x85\x90\x8a\x89\x49\xc4\x10\x49\x6b\x30\x91\x81\x7a\x05\x11\x25\x99\xa8\x92\x08\xb7\x54\x95\xc8\x81\xc8\x91\x49\x97\x08\x99\x95\x64\x92\x3c\x8a\x3c\xe9\xed\x3a\x79\x34\x79\x34\x9b\x75\xf2\x68\xf2\x68\x36\xeb\xe4\xd1\xe4\xd1\x64\x96\x4a\x11\xe1\xa0\x7d\x1c\x68\xda\xfb\x3e\xe9\x9e\x4e\x79\x9f\x7b\xbf\x86\x80\x2e\xf2\x19\xf3\x7c\x69\x40\xd6\xe1\xfe\x03\xf9\xd9\x53\x8b\xaf\x7f\x01\x00\x00\xff\xff\xdf\x7b\xca\x7c\x6c\x02\x00\x00"); +func _debb ()(*asset ,error ){_gfgb ,_bdda :=_bgca ();if _bdda !=nil {return nil ,_bdda ;};_badc :=bindataFileInfo {_ee :"UniGB-UCS2-H",_ffd :272134,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492744,0)};_cgcg :=&asset {_da :_gfgb ,_dc :_badc };return _cgcg ,nil ; +};var _bbef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xcf\x37\x3b\x92\xa7\xb5\xaf\x4f\xf1\x2c\x87\xc5\xd0\xe9\xcc\x74\x3a\x42\x3a\x3a\x12\x33\xd3\x33\xb4\xd0\x00\xa2\x19\x40\x42\x2c\xd2\x76\x66\xab\x24\xfa\x54\xa9\xaa\x7a\xd1\xdf\x1e\xf9\xba\xb2\x00\x21\xa4\xa7\x56\x3f\xdd\x71\x3b\xff\x7e\x8f\x08\x87\x23\xc2\x7f\xf7\xef\xff\xe1\x3f\xfc\xc3\x6f\xbf\xff\xcb\x8f\xbf\xfb\x1f\xff\xf4\x87\xf1\x8f\xcf\x5f\x7e\xbc\xbf\xff\x6d\xfe\xe9\xf9\xf3\x1f\xfe\xe5\x4f\xe3\xf9\xd1\x9f\x7f\xfa\xfd\x6f\xbf\xfb\x5d\xd9\x7f\xcc\xdf\x8f\xbf\xfc\xf5\x4f\x60\xfc\xf3\xfd\xc7\xdf\xfd\x6e\x7d\xff\x8f\xff\xfa\xe7\xbf\x3c\xff\xfc\x0f\xbf\xbd\x7f\xf8\x71\x58\x6e\xfe\xcb\x1f\xbf\xb2\x3f\x7e\xfc\xdd\xff\xf4\xfc\xd3\xef\xff\xfc\x97\x3f\xfd\xeb\x8f\x7f\xf3\xdf\xcc\x3f\xf4\xe7\xbf\xfa\x31\x9f\x77\xd1\xff\x87\x3f\xcd\xe7\x4f\xbf\xff\xed\x9f\x7e\xfc\x9b\xff\xf4\xef\xca\xff\x4d\xfd\xc7\x7f\xf9\xe3\x1f\xff\xcf\xe7\x9f\x9f\xdf\xfe\xf2\x63\x87\xf6\xfc\x36\xc1\xdf\xfd\xdd\xbf\xff\xcf\xf7\x1f\xff\xfb\xfb\x9f\x9f\x1f\x7f\xf7\x9f\xfe\xdd\x7f\xf7\xc7\x7f\xfb\xf7\xff\xe5\xdf\xff\xdb\xff\x96\x7f\xf1\x9f\xff\xe5\xf9\xd3\x9f\x7f\xff\x87\xdf\x7e\x94\xff\x7a\xdb\xea\xff\x43\xfe\x9f\xff\xf5\x8f\xcf\x8f\xf2\xfd\xc2\xff\xf6\x5f\xfe\xe1\x3f\xfc\xf8\xdf\xcb\x8f\xb2\xfd\xd8\xeb\x59\xeb\xff\xf1\xd1\xff\xd7\xff\xfc\x87\xf9\xfc\xd8\xfc\x6b\xb7\xe9\xe3\x0f\xf3\xf9\xf3\x1f\xef\xf1\xfc\xe9\xfe\xed\x9f\x9e\xdf\xfd\xf8\xf1\xcb\xb6\xfd\xfa\xe3\xc7\x8f\x5f\x62\xfb\x75\xfd\x15\xe5\xdc\x7e\xfd\xf1\xcb\x7f\xfc\xfb\xff\xf8\xf7\xbf\xae\x46\xfe\x7f\xca\xff\xae\xf8\x33\xbf\xfd\xe1\x2f\xf3\x79\xa5\xf1\x0b\xbf\x94\xf7\xd7\x1f\x65\x7d\xf1\xff\xfe\xd7\xef\xca\xb6\x7d\xf5\xfe\x7e\x7e\xa5\xf7\x55\xba\x3d\xab\xf4\x5f\x6b\x8b\xd2\xe2\xd7\x1f\x65\xdb\xda\xbe\x68\x2d\xa5\xe5\xaf\x3f\x62\x0f\x8a\xb5\x5b\xd2\xfa\x6c\x2b\x7b\x2e\x5a\xf8\x69\x54\x68\xc7\x09\xed\x92\x76\xfd\xfa\x23\xae\xb0\x58\x83\xf4\x0c\x8a\x9d\xdb\xa2\x3d\x53\xda\xfc\xf5\xc7\xaa\x1b\xd2\x03\xe9\xe5\xd7\xf6\x93\x86\xbc\xfe\xda\x82\xd8\xa3\x42\xf2\xd7\x5e\x1a\xb2\xd7\xf5\x6b\xbb\x7d\xd8\xeb\x2e\x6d\xfd\xdc\x5e\x0f\x69\xc7\xaf\x3f\x32\xe2\x84\x74\x42\xba\x0a\xc5\x5a\x5b\xb4\x6b\x97\xb6\xaf\xf6\xd2\xad\xfd\xf2\xcb\x76\x50\x2c\x57\xf7\xf7\xe6\xa7\x0b\x22\x37\x2a\x68\x55\x52\xae\x62\xc7\x47\xbb\xa5\xdd\xab\xbd\x85\x4a\x5b\x97\x44\xef\x8f\x72\x40\x9b\xd2\xe6\xaf\x3f\x5a\x6b\x7e\xf9\x48\x7a\x2c\xb6\xba\xba\x3b\xbe\x40\xcb\x8b\x62\x51\x24\xed\x16\xbb\xa0\xd9\xde\x05\x71\x14\xba\x10\x36\x37\x5e\x8b\xf1\x69\xfa\x6b\x0b\x56\x01\x48\xfe\xda\x7d\x52\xec\x60\x2c\x6f\xbb\xb5\x20\x6a\x52\xc1\xcd\x2c\xec\xa3\x51\xcc\x21\x1f\x21\x2d\x56\x17\x58\x22\xfb\x48\x49\x6b\xd5\xc4\x41\x47\x87\xe3\xf1\x6c\x7c\x69\xa5\x8f\x95\x2e\x88\xdc\x68\xee\xe3\x24\x3c\xf4\xea\xdc\x98\x98\xc7\x5e\x2d\x88\xd3\x29\x7d\xec\xd5\x82\xd6\x58\x20\xfb\x63\x6b\x5d\x5b\xa7\x93\xe0\xda\x02\x32\x2a\x23\xe9\xda\xda\x5f\x66\xfe\x74\xd8\x5e\x2b\x5d\x10\xcd\x4e\xbd\xd6\xb9\x96\x5b\xd9\xce\x5d\x5a\x93\xd6\x7e\xfd\xd1\xc2\x21\x7a\xed\xfb\x82\x48\x5b\xfb\xda\xf7\x97\xbe\x17\x9a\xf6\xda\xf7\x05\xeb\xc7\xe8\xfb\xeb\x62\x58\x10\x67\x63\xd4\xde\x21\xe9\xb1\xd8\x6a\xee\xe1\x7a\x06\x16\x2d\xa0\x15\x69\x6b\xd8\xfc\xb5\xe3\xdc\x25\x9d\x16\x4b\x68\x55\xda\x9a\xbe\xa4\xa3\xc7\x79\x49\x62\xfa\xce\x63\x87\x16\xd2\x56\x17\xca\x5e\x20\xa5\xa4\x6e\x31\x6b\x18\xd2\xc6\xfa\x35\xc6\xe3\x38\x19\xdd\xc3\xbd\x76\x1e\xab\xf7\x87\x7b\x0d\x88\x93\xb5\x7b\xb8\xd7\x8e\xea\x50\x9e\x07\xb4\x26\xad\xad\x85\x1a\xb4\xad\xda\x8e\x3a\x2d\x26\xed\x91\xf6\xb0\x02\xad\xe0\x85\x74\xd9\xd3\x4a\x17\x2e\x7b\xba\x20\x0a\x33\x7f\x5c\xf6\x74\x41\xa4\xed\xb8\xac\xb3\x39\xf3\xac\xa3\xa3\x39\x6e\x0b\x62\xbb\x28\xd6\xec\x41\x73\x8c\x2e\x86\xb2\xd9\xb6\x05\xd1\xec\xbc\x8c\xf1\x70\xcf\x9f\x8d\x31\x72\xcf\x03\x91\x85\xa1\x74\xcf\x03\xab\x98\x35\x38\x94\x0b\xa2\xed\x8c\x87\x6c\x00\x58\xc5\xe8\xbc\x7c\x00\x88\x72\x51\x81\x6c\x00\x88\x2d\x68\x87\x6c\xe0\x90\xf3\x9e\x70\xb2\x43\xce\x0b\x44\xb2\xe5\x0f\x39\xef\x11\xf0\xf6\x33\x18\xb6\xb0\x0b\x0b\x22\x8b\x24\x7b\x10\xf6\xc0\x0a\xec\x41\xb8\xaf\xc2\x76\xd8\xdc\x70\x5f\x59\xa7\xad\xcd\xc3\x62\xf4\x20\x9d\xf9\x64\x97\x26\xed\x48\xa7\x2a\xed\x68\x52\x69\x7e\x9f\x3e\x6c\x3f\xc6\x23\x9d\xe5\x9b\x5e\xd5\x8d\xa1\x94\xf7\x00\x2d\x76\x2a\xbd\xed\xd5\x7d\x5b\x8c\x1a\x6e\xdb\xbb\x20\x12\xc6\x7b\xdc\x0e\xf8\x4d\xa5\xd5\x9e\xde\x56\xba\x20\x12\x56\x79\xdc\x5f\xa5\x2f\x24\x2a\xe8\x0e\xf8\x82\x48\x38\xf6\xd1\x1d\xf0\x9e\xfe\x18\x15\x74\x87\x6d\x41\x93\x91\x1d\xdd\x66\x0c\x06\xbc\x3a\xcb\xb2\x45\x20\x76\x37\xa9\x6c\xf1\x50\xd4\xd5\xa3\x21\xe7\xff\x2a\x9f\xff\xff\x44\x76\x1c\x4a\x42\xa0\x45\xd0\x4c\x39\xd3\x21\xe7\xa8\xf0\xe0\x53\xce\x71\x9e\xaf\xb4\x55\xdb\x59\xa5\x2d\x88\xc2\x48\x9f\x95\xee\x9c\x0d\x06\x73\x6d\x6b\x81\x9e\xed\xa3\xc9\x97\x4f\x48\xbb\x24\xa6\xf7\x62\xaf\x9f\x4a\x42\x20\x62\xe3\xd7\x94\x84\x67\xbb\x2c\x46\xa5\xad\x49\x6b\x2c\x16\x49\x21\x89\xf6\x5e\x27\xed\x75\x6d\x9f\x51\xa4\x05\x34\x6b\x5d\xd0\xd2\x4f\x15\x71\x67\x30\x97\x17\xcc\xfa\x74\xed\x01\x2d\x9b\xc5\x98\xcb\x33\xfd\xb5\x8b\x1a\xd2\x5f\x5b\x10\xb9\x5d\x90\xfc\xb5\x05\x4d\x41\x75\xba\x68\xcf\x1c\x7e\x49\xef\x73\x4a\x5b\x3a\xca\x06\x37\x39\x5d\xb4\xe7\xed\xb8\x35\x3e\xbd\x1d\xb7\x05\x51\x4e\x49\xd6\xb9\x20\x76\x98\xda\x79\x5b\xe7\x82\x96\xc9\xef\xdf\xd6\xa9\xf4\xbd\x9a\xc5\x1c\x4a\xa4\x6f\x3a\x2f\xee\x00\x20\x36\x67\xd4\x1d\x70\xde\xe1\x97\xcc\xcb\x9d\xd2\xd6\x32\xdb\x9c\xe5\x9b\x65\x76\x8e\xaf\x02\x3e\x1d\x56\x30\xe0\x9a\x3b\x75\x0e\x2b\x98\x70\xf4\xe6\x10\x4d\x9b\x3b\x19\x22\x14\xaf\x73\xda\xdc\xc9\xaf\x35\x36\xcf\x39\xfd\xb5\x05\x71\xb1\x79\xce\xf9\xfd\x1a\x8b\x41\xb6\x79\x4e\xdb\xbb\x20\x2e\xf4\x9d\x73\xba\x18\x66\x58\x8c\xa9\x9a\x76\x61\x41\x9c\xe1\xaf\xd9\x85\x05\x51\xd2\x76\x74\x49\xc3\x2f\x77\x68\x4e\xd5\x82\x38\xd3\x0a\x9c\xaa\x27\x2d\xc6\x88\x3f\xfe\xda\x03\xa3\xf3\xd7\x1e\x7f\xed\x61\x65\xb5\x83\xce\x3f\xdf\xa7\x8b\x4b\xec\x6c\xec\xf3\x71\x65\xbd\x9b\xc5\xa0\xbd\x4e\xfc\x8b\x44\x76\x73\xa8\x53\x9c\x6e\xc9\xc6\x12\xaf\x6e\xc9\x5a\xfd\xb4\xae\x86\x54\xf7\x1f\x10\x09\xa3\xab\x75\x97\x84\x50\x42\xcf\xa8\x8a\x55\xa0\x6c\xad\x59\xec\x94\xa6\x22\xba\x43\xaa\x92\xec\x42\x93\xf6\x48\x7b\x68\x9b\x5f\xd2\x85\x7a\xc1\x74\x54\xd9\xaa\x02\x13\x88\xab\x5e\x90\x98\xab\xea\x2e\x6d\xb1\xc6\xb2\xba\x4b\x6b\x30\xa7\xaa\x37\x55\xd9\x02\x44\x20\xa5\x6b\x84\xa4\xdb\x62\x09\xad\x4b\xeb\xe8\x89\x74\x2b\x60\xcc\xd5\x5d\x1a\x4c\x60\x75\x97\x02\x71\xf9\x6b\xee\xd2\x9a\xd5\x62\x34\x24\x6d\x6f\x72\x1e\xd8\x24\xd9\x8e\x44\x72\x87\x5d\x4d\x1b\xb2\x20\x22\x2d\xc6\xda\xaa\xb7\x95\xa2\x04\x55\xb7\x29\xd0\x5a\xa3\x6d\x6e\xd3\xda\x2d\xe6\x04\x76\x8b\x2d\x68\x81\xda\x59\xbb\xc5\x9c\xe7\x60\xe0\x2e\xe7\xf9\x3a\x59\x70\x49\x0d\xd7\x79\x4b\xbb\x7f\xfd\x91\x1b\x5a\xc5\x75\x32\x20\x97\x93\x9a\xfc\xdc\xe5\xa4\x02\xd1\x50\x17\x2e\x27\xf5\xba\xe8\x56\xd6\xd5\x90\xeb\x0a\x69\xc1\xaf\x05\x24\xba\x75\x39\x5b\x49\x1f\x2e\x67\xeb\x72\xe0\x12\x69\x7b\x39\x70\x40\x5c\x30\xf7\xcb\x81\xbb\xd6\x20\x95\x75\x2e\x83\xe6\xcf\x2d\x58\x52\x1d\x92\x5d\x80\xe5\x95\x0d\x8d\xf2\x92\xe5\x01\x71\xb1\x44\x2e\xc7\xf2\x5a\x52\xae\x94\x0d\xc9\x77\x29\xe6\x80\x38\x61\xe4\xd7\xb0\xf7\x0b\xca\x92\x15\xd0\x86\xb4\x81\xf6\x48\x3b\xc6\x94\x34\x2d\x26\xed\x91\xb6\xf8\x7d\x20\x02\xae\xc1\x92\xbe\xa6\x6d\x43\x93\xbb\xa6\x6d\x5b\x10\x0d\x81\x72\x4d\xdb\x36\xbf\x4a\x1b\x34\x2b\x9d\x54\xba\x59\xcc\x4a\x61\x22\xc1\xc9\xe7\x92\x89\x5c\x8f\x15\xc0\x68\x2f\xcf\x2f\x40\x1c\xdb\xf1\x73\xd9\x7d\x79\xbc\xb9\x9e\xc6\xaf\xb0\x09\xae\xc7\xb9\x5c\x10\x17\x3c\xe6\x7a\x1c\xfc\xc7\x4e\xa3\x4c\x5d\xcf\xd7\x80\x67\x4d\x39\x7b\xf6\x92\x15\x5d\xeb\xac\x52\xca\xc6\xf1\xf4\x7a\x5d\x40\x0b\x72\x43\x2d\xbd\x5e\x17\x10\x4b\xb4\x6c\x74\xa7\xb9\x44\x81\xc5\x42\x20\x15\x49\xfc\x5a\xd9\x2c\x76\x4a\xe3\xd7\xc2\x62\x55\x52\x58\x2c\xa1\xa5\x34\x16\x0b\xcb\xb1\xb9\xde\x81\x52\x0a\xaa\x53\x73\xc1\x03\xb9\xa1\x83\x36\x8f\x15\x40\x6b\x5f\xd3\xa6\xa4\xc7\x2f\xad\xf4\x95\xf6\xd2\x2b\xea\x54\x97\x69\x1c\x2b\x4a\x61\x35\x36\x8f\x15\x40\x6c\x30\xa7\xe6\xb1\xa2\x55\x56\x63\x61\x35\xb6\x6a\xdb\x2a\x7b\x91\x49\x68\xd5\xa6\x2d\x58\x3b\x0e\x92\x4d\x5b\x90\x2e\xbc\x56\x6d\x1a\xfc\xb5\x94\xdd\x62\x8f\x34\xe6\xa5\xf9\xfb\xb6\x76\xc1\x2a\x46\xd3\x2e\x9b\xbb\x20\x5d\x9f\xed\x72\xc0\x61\xc3\xa5\xa0\xd1\x36\xd9\x30\x90\x71\x52\xa9\x6c\xb8\x35\x7b\x00\x37\x69\x9e\x34\x80\xdc\x10\x07\xcd\x93\x46\xc3\xba\x50\x4a\x95\x66\x7b\x17\xa4\x06\x9d\xe6\xa9\x02\x58\xc5\x68\xaf\x6c\x02\x58\x34\x6a\xf5\x5c\x01\xe4\x86\xa0\x6e\x6a\x63\x40\x6e\xf0\xa6\xa6\x36\xd6\xc2\x2e\x38\x6e\x9e\x3e\x80\xdc\x90\xdd\x4d\x09\x01\xac\x62\xfe\x9a\x13\x13\xb0\x30\x54\x9e\xe6\x81\x04\x58\xc5\x98\x66\x4f\x24\xc0\x3a\x9b\x41\xb2\xa7\x61\x4f\x2f\xe6\xcf\x13\x09\xd0\x22\xfd\xd2\x9e\x2e\x48\x99\x75\x53\x2b\x6c\x4b\xb6\xac\x2f\xa1\x29\x5c\x80\xdc\x60\x9b\x4d\x15\xb0\xa5\xcd\xbd\x68\x9b\x82\x04\x88\x0b\xd9\xd2\x64\x91\x2d\x6d\xc7\xf7\xa9\xed\x48\x47\x9c\xce\xab\x29\xb6\xdb\x4a\xd9\x92\x4d\xe1\x02\xe4\x96\x7c\xa9\x0e\xd8\x6e\xd7\xb3\x6b\x5c\xed\x0e\x08\xad\x2d\xed\xb6\x1d\xdd\x5f\x73\x13\x29\x83\x80\x94\xa9\xb5\xee\xaf\x2d\x28\xa5\xc0\xbf\x5b\x77\xe7\x2e\x88\xfd\xa4\x82\xee\x5c\x75\x77\x29\xca\x68\xf3\xe4\x02\xa4\xe7\x8b\xd6\xdd\x0a\xdd\x45\xe3\xf0\x76\xc7\xb2\xb3\x25\xd1\x0b\xdb\x70\x1d\x2d\x88\xcb\x3a\x87\xcb\x68\x41\x29\x3b\x5a\x4a\x1b\xae\xa3\xc1\x3a\x42\x8d\x6d\xc3\x1e\x28\x33\xf6\xcd\x4f\x9d\xf9\xe1\x2e\x95\x64\xd3\x86\x0c\x84\x79\x51\x64\x00\x71\x55\x7f\xdf\x39\x18\xb4\x76\xe7\x14\xdb\x94\x0f\x40\xa4\x5c\x60\xda\xda\x69\xd3\xe4\x16\xca\x07\x20\x37\x27\x5e\xfd\x17\xc8\x70\xe3\xaa\xff\x02\xeb\x4b\x46\x4d\xfd\x17\xc8\x70\xf6\xd4\x7f\xdb\xb4\x53\xc5\x4f\xed\x14\x5a\xec\x5f\x7f\xcd\x4e\x61\x6a\x2a\x3b\xba\x52\xf3\x40\x07\xa4\x8c\xbd\x69\x6a\x02\x5a\xa2\x17\x35\x4d\x4d\x40\x29\xfb\x29\xcd\x0a\x16\x2c\xc5\x0a\xd2\x57\x81\xe3\x81\x20\x0c\xf9\x3f\x10\x8d\x35\x19\xf2\x7f\x20\x1a\x1b\x32\x34\x2b\x85\x22\x61\x67\x74\x43\x91\x00\x44\xfd\xbe\xac\x92\xaa\xc5\xa4\x5d\xd2\x2e\x8a\xf9\x6b\x74\x2a\x64\x3d\x3b\xcc\x22\x64\x3d\xc1\x69\xba\x1c\xd8\x4c\xc2\xd3\x34\x90\x1b\x4b\x26\x5c\x93\xa1\xb2\x70\xa0\x3e\x85\x33\x0f\xac\x26\x42\x62\xe6\x63\xd2\x5e\xed\x4a\xe1\x64\x01\xa1\xe2\x15\xce\x55\x70\x30\x29\x4b\xb9\xf9\xa9\xe0\x0e\xcf\x2d\x40\x38\xfa\xe1\xb9\x25\xe6\xe3\xaf\xd0\x9d\xf9\x4a\x63\x53\xa0\x5c\xc5\x63\x0f\x1f\x16\xcb\x69\x77\xb4\x55\x02\xb9\x21\x69\xe3\x71\xbc\xb0\x4b\x16\x0d\x9f\xe1\x19\x22\xb4\x4b\x22\x69\x43\xbb\x24\xd0\x3c\xa3\x84\x12\x3f\x30\x21\x94\xb3\x58\xec\xfb\xb5\x0b\xb1\x4a\xd3\x5c\x52\xe1\x2a\x38\x39\x66\xa5\xab\x20\x15\xd2\x9a\x0d\x53\x21\x0d\x44\x41\x2d\x4b\x85\x34\x90\x1b\x67\xbb\x54\x48\x03\xa5\x9c\x58\xf2\xf3\x7c\xa4\x21\x09\x37\xbf\x7c\x25\xbd\x16\xa3\x52\x05\x37\x90\x1b\x07\xdb\xf4\x10\x94\x68\xc2\xe5\x84\x57\xa7\x9a\x30\x10\xb5\x59\xac\x4a\x1a\x16\x93\x66\x43\x16\xc4\x55\x24\xd9\x8e\x6a\x4f\x11\x71\xa9\x48\x06\x72\x63\x74\x53\x89\x9c\x97\xbf\xc6\xaa\xcd\xcb\x5f\xbb\x10\x23\xb6\xed\xf2\xd7\x30\x90\x94\x13\xee\x9a\x1a\x48\x80\x38\x99\xbf\xd4\x40\x92\x18\xfa\xca\x89\x30\x48\x0d\x7d\x40\x0b\xb6\x4a\x2a\x91\xd3\x3d\x70\xa2\x7b\xa4\x7b\x20\xc3\x59\x80\xa5\xa7\x32\x0e\x88\xf8\x48\xfe\x9a\x5a\xfa\x09\x7b\x4d\x45\x10\xd0\xd2\x21\x57\x4b\x4f\x2c\x6c\xa5\xda\x38\x45\x10\xd0\xd2\x69\xd6\xc2\x96\x58\xd8\x4a\x85\x49\xa6\xf6\x05\x20\x4e\xd6\x5b\x2a\x81\x80\x55\x8c\xde\x2b\x82\x80\x28\x55\x92\xed\xb8\x1f\x8b\x05\xb4\xaf\x86\x17\x15\x93\xa9\xd7\x9c\x96\xee\xf6\xca\x49\x3c\xdd\xed\x40\x5c\xc8\x91\x74\xb7\x67\xb7\x0b\x87\xc5\xec\x42\xc7\x1a\x8a\x04\x4a\x25\x10\xb0\x86\x65\x91\x94\x40\x40\x6e\x9c\xa6\x53\x09\x94\xe3\xf0\xc7\x68\xee\x70\x6d\x0d\x78\x82\xad\xd5\x1a\x02\xc4\x6e\x6b\xb5\x86\x00\xb9\x6d\x8c\xd0\x70\x38\x86\xc3\xe1\xb2\xf7\xfe\x03\x58\x33\x01\xc9\xe1\xf0\xd0\x52\x5d\xf6\x1e\x5a\x80\xa6\xd5\x37\x15\x4a\xe9\xa1\xa5\x62\x1d\x4a\x0f\x2d\x40\x04\x7a\x57\x2a\x94\x72\x7e\x95\x4a\xb3\xd2\x05\xb1\x39\x55\xda\x4c\x72\xb2\x8c\xd4\xe9\x53\xd9\x02\x44\xdd\x24\xb9\x8c\x3c\x34\x54\x0e\xac\x29\x0b\x01\xe2\x90\x35\x78\x68\x48\xd9\x45\x65\xa1\xde\xb2\x0b\x60\xa9\x67\xd2\x8a\xb4\x02\x7b\x95\x44\x7b\xef\x1a\x16\x5b\x3f\x77\xd7\x94\x96\x6b\x2c\xab\xa4\x5b\x92\x46\xd3\x1d\x52\x97\xc4\x26\xba\x10\xac\xb7\x6a\x38\x10\x1b\xb3\x7c\xbb\xe7\x6f\xd5\x70\x37\xfd\xed\xa6\x07\x5a\x62\x34\xb9\xdd\xf3\x37\xf7\x99\xe5\xe2\x84\x70\x6b\xb6\x07\x22\xd0\xcf\x6e\x75\xe9\xdb\x2d\x79\xc1\x7c\x6e\xb7\xe4\xfd\x1c\xd2\x28\xe7\x9d\x13\x10\x4a\xaf\x5b\x3e\x7e\x3b\x48\x8d\x62\xdd\x41\xea\xca\xcc\x86\xc6\xda\x95\x99\x40\x4b\xf4\xb8\xae\xcc\xec\x1e\xa3\x5a\xf3\xd3\x94\xb6\x06\x49\x6b\x53\xf7\x18\xd5\x55\xfe\x35\xd5\xf4\xf6\xd1\x96\x7c\x54\x6f\xe9\x2a\xff\xdd\x3e\x04\x3b\xbc\xdb\x87\x1e\x0c\xa6\xc6\xcd\x2e\x0f\x01\x62\x47\x8c\x75\x35\xe7\x2e\xbf\x08\x98\x6a\x97\x5f\x00\xb9\xc3\x2d\xbb\xfc\xa2\xab\x77\x06\xaa\x73\x57\xef\x04\x72\x87\xd3\x74\xf5\xce\xde\xe9\x96\x8c\xab\x77\xbb\xd5\xe9\x16\x27\xc1\xee\xa6\xef\xee\x70\x95\xcc\xee\x0e\x07\x52\x8b\x4e\x77\x87\xf7\x01\x93\x0a\x56\x52\x77\x57\x02\xb9\x94\xbb\x9f\xca\xee\xee\xa6\xed\x6e\x5a\x8d\x40\xdd\x4d\x0b\xa4\x1a\x5c\x77\xd3\x02\x51\x36\x49\x36\x53\x7d\xc2\x63\x45\x57\x9f\x00\x72\x87\x21\x76\xf5\x89\xae\x55\x41\xfb\x7f\x77\x9b\x01\xa9\xee\xd7\xb5\x2a\x74\x35\x01\x6f\xe4\xba\x2b\x08\xc8\xfd\x23\xd9\xc1\x87\x7d\x9c\x30\xc9\xae\x6d\x12\x88\x06\x0f\xeb\x8f\x15\x3c\xaf\xc5\xa8\xf4\x75\xca\x17\x84\x82\xa4\x6b\x9a\xec\x2e\xd1\x64\x15\x0c\x97\xe8\x70\x89\x26\xcb\x76\xb8\x44\x81\xdc\xd1\xc3\x86\x4b\x74\x78\x10\xd7\xf0\x34\x14\xe8\x40\xd4\x63\x0d\xe5\x50\x9e\x0f\x0f\xe2\x89\xa9\x7d\x78\x10\x07\x42\xab\xf4\xf0\x20\x3e\xdc\xdb\xde\x61\x0f\xf7\x36\x10\x3b\x4a\xf3\x70\x6f\x0f\x57\x72\x72\x66\x1d\xae\xe4\x81\x80\xdc\xd5\x97\x86\x02\x12\x08\xb5\x99\xe1\xe2\x06\xca\xae\x9e\x32\x5c\xdd\x40\x9c\x28\x42\xc3\x73\x21\x10\x47\x95\x64\xaf\x16\xc4\xc9\x26\x1b\xde\x91\x03\xeb\xc7\x68\xae\x97\xe4\x40\x5c\xf0\xba\xa1\xb5\x12\x88\x82\x3e\x3f\x3c\x50\x0e\xe4\xf4\xbe\xa1\x8f\x0d\xe5\x34\xd0\xe2\xfb\xb1\x5b\xd2\x8d\x26\xe7\x97\xf6\x09\xcb\xe4\xbe\x61\x5e\x18\x5a\xd3\x80\xd8\x38\xa0\x0d\x0f\x8f\x40\x04\x9a\xc6\xf0\xf0\x08\xc4\x15\x92\x9c\x3d\x04\xfc\xbe\x61\x36\x18\x0a\xf8\xe1\x15\x1a\x1b\x61\x28\xe0\x81\xe6\x81\x64\x28\xdf\xc7\xda\x7c\xeb\x4b\x96\x8c\x82\x75\x28\x58\x39\x08\x0c\x05\xeb\x98\xb6\x16\x3d\x60\x28\xaa\x80\xd8\x9d\x3c\xcf\x4f\x40\x6b\x1c\xe3\x86\x5b\x08\x28\xbb\x46\xaa\xe1\x1e\x02\x72\xdf\x24\xd9\xda\xe9\x40\xa2\x02\x0e\x85\x1c\x10\x6a\x2d\xc3\x23\xd5\x78\xbf\x62\xf4\xca\x93\x11\xd0\xb2\x4a\xfa\x8a\xad\x85\xb5\x6b\xb7\x9a\x6e\x84\xb9\x74\xb7\xb2\x6b\x6a\x9a\xde\xff\x02\xb9\xc1\x22\xa7\x17\x5d\x40\xd9\x9d\xe5\xe9\x4d\x17\xd0\x02\x35\x79\xb6\x4b\xd2\x6d\xb1\x0b\x5a\x97\x86\x5d\x09\xcb\xf5\x54\x2b\x9c\xcd\x86\x60\xbc\x99\xae\xf0\x89\x81\x64\xd7\x46\x30\x35\x90\x00\x59\xd0\xed\xa6\x06\x92\x19\x7e\xca\x06\x9f\xae\x5d\xa0\x25\x7c\x79\xba\x76\x27\x2c\x7d\x2f\x58\x65\xa7\x2c\x1d\xc8\x0d\x4e\x36\x65\xe9\x13\x5e\xbd\x7b\x36\x9f\xf2\x6a\x20\x95\xb6\x53\x5e\x3d\x1f\xe6\x79\xb7\x0f\xda\x31\x81\x2c\xe8\xc9\x53\x2f\x0d\xa0\xec\xfb\x65\x31\x07\x0e\x91\x19\x6c\xc8\x29\xc3\x9b\x8b\xc9\xad\x62\x34\xe4\x69\xd2\x3c\xed\x32\x6e\x1a\x45\xe7\x6b\x31\x07\xc9\x13\x0c\x90\xc5\xe6\xbe\x5f\x31\x7a\xba\x73\xe0\x9b\xaf\x3d\x5d\x90\x05\x1d\xf0\x71\x9e\x1f\x0e\xa8\xfb\x8e\x1d\xfc\xf1\x80\x0a\x64\x41\xbb\x7b\x3c\xa0\x3e\xf5\x2b\xb6\xba\xf0\x54\x8b\x55\x8b\x9d\x90\xbe\x62\x4c\x96\x7e\x3c\x8f\xdc\x0d\x88\xfd\x94\x94\x92\xd2\x62\x7e\x7a\x4b\x5b\xca\x6e\xbb\x24\xb1\x42\x9e\xeb\xfb\xb5\x35\x96\x8f\xe6\x7d\x20\x0a\x63\xf4\x68\xde\x7f\x2e\x7a\x7a\x30\x0b\x8f\x47\x13\x20\x74\x62\x7a\xae\x57\x12\x7b\xf7\x60\xef\x3e\xcd\xde\x2f\x48\xed\xba\x8f\x07\x98\xc7\x35\x78\xa0\x61\x3f\xae\x41\x20\x92\x59\x78\x34\x02\x3e\xc9\x8a\x3e\xd0\x3c\x1f\x99\x14\x10\xd5\xe6\xe6\x90\xe4\xaf\xb1\x7a\x1f\x17\x17\x10\x27\x46\x9e\xe7\xb6\x82\xfb\xb0\xd8\xdf\x70\xd7\xfd\xc8\xd7\x80\x08\x94\xe6\x47\xbe\xf6\x60\x27\xdb\x0f\x98\xf5\x23\x13\x7b\x64\x62\xc8\xb3\x47\x26\xf6\xdc\xdd\x62\x7e\x6a\x3b\x6f\x2c\x06\x87\xc5\xa6\x24\x87\x35\xa4\x39\xac\xb7\x5b\x85\xc5\xe2\x59\xe6\xe9\xc3\x62\x0c\x44\xf7\xd3\x8e\xa9\x0f\xd1\xf2\xa8\xc2\x00\x29\xb3\x7e\x54\x61\x9e\x01\x8b\xf1\xf8\xff\x68\xed\x02\x22\x1c\x55\x4f\x24\xc0\x2a\xc6\xe8\x7b\x24\x01\x5a\xfb\x8a\xb9\x1a\xc7\xb0\x18\xcd\xd5\xe8\x01\xb4\x86\xe6\xfb\x78\xd6\x00\x72\xe3\xa4\xf8\x78\xd6\x78\x26\x6b\xdb\xbb\x95\x47\x06\x0b\xb4\x44\x12\x3e\xda\x39\x80\x50\x4f\x7f\x3c\x6a\x3c\x0f\x23\xa9\xa8\x7d\x54\x3e\x80\xd0\x02\xfb\xe8\x6b\xf5\xc8\x5f\x3d\xea\xbf\xee\xbb\xb7\xc2\x3a\xbc\xf7\x79\xbd\xdd\x04\xe2\xc0\xe8\xfd\x7a\xbb\x09\xb4\x60\x2b\xbe\x9e\xfe\x81\xd4\x9f\xf0\xf5\xf4\x0f\xb4\xc4\xa8\xfe\xba\x39\x81\x96\x9c\x1d\x5f\x37\xe7\x5b\x1d\xa1\xe6\xef\x4f\x69\x4b\x09\xd8\x51\x50\x5e\x8f\x0b\xef\xc5\x5a\x3c\x59\x1e\xef\x65\x9d\x17\x16\x07\x18\xd8\xab\x67\xd1\xeb\x3e\x71\x19\xbf\xee\x93\x17\x9b\xf7\xee\x0e\x78\xb5\x79\x03\xb9\x6f\x92\x6c\x88\x2c\xbd\x32\x6c\xaf\x2c\x1d\x88\xf8\x48\xec\xeb\x37\x4f\x8b\xad\xf5\xf1\xea\x24\x03\x64\xa0\x64\xbd\xde\xda\x01\x65\xf7\x48\xfc\x7a\x6d\x07\x34\x6f\x1e\x5f\xad\xd4\xaf\x1b\xb6\xa2\x55\xbc\x6e\x58\x20\x0e\xf6\xd0\xeb\x86\x05\x56\x31\x6b\x70\x90\xf0\x71\xa8\x61\x05\x0e\x12\x17\x7e\x7b\xe5\xaa\xfb\xf5\xc2\x0f\xc8\x40\x11\x78\x55\x51\x5e\x37\x47\xe5\x00\xf5\xba\x39\x80\x28\xb0\xa1\xd7\xcd\xf1\x72\x10\xdf\x2b\x5c\xed\x75\xd9\x03\xcd\x3b\xd6\xd7\x55\x0f\x94\x5d\xc3\xcf\xeb\xb2\x07\xb2\xb0\xea\x5f\x95\xfa\xd7\x9d\xa0\x81\xf1\x75\x27\x00\x4d\xb5\xf6\x75\x27\xbc\xd3\x59\x40\x62\xbe\x2e\x68\xa0\x05\x2c\xfd\x55\xad\x78\x5d\xbc\x75\xed\xf9\xdc\x58\xbc\xb9\x39\xf7\xd7\xda\x58\xb9\x85\x34\x07\x0e\x13\x77\x6e\x0c\x9c\x90\xf8\xb4\xe6\xc6\xc0\x09\x81\xcf\x65\x6e\xf0\xc3\xdc\x30\x7d\xec\xf8\x2a\xe4\x86\x64\x15\x1a\xde\x83\xb9\x61\xfa\xc8\x4d\xdd\xab\x9d\xb9\x68\xc3\x4a\x31\xab\x1f\x6b\x90\x72\x43\xf7\x12\xb2\x9c\x7c\x89\x55\x3d\x37\x39\x08\xce\x05\xb9\x31\x96\x42\x96\x75\xb4\xcb\x8d\xa1\xcc\x0d\x2b\xc1\xde\x2a\x9f\x4e\x2b\x9d\xdc\xcc\xef\xf4\x80\xe3\x8b\x90\xc5\x66\x4c\xfb\x89\x83\xe5\x8e\xaf\x6a\x6e\xcf\x47\xb3\xef\x34\xed\xb1\xef\x8f\x3d\x48\xda\xf1\xda\x83\x17\x09\x74\x5e\x90\xec\x81\x02\x9e\x9b\xbf\xdc\x10\xf0\x42\x96\x83\x4a\x11\xf0\xb9\x39\x31\xb1\xd8\x67\xea\xa7\xbc\xaa\x93\x96\xd0\x76\x69\x8b\xab\x60\x49\xc9\xb2\x8e\x37\x0b\xe8\x69\xac\x23\x4d\x16\x8c\x9b\x42\xc3\xec\x9d\x05\xe3\xa6\xb0\x8a\xf9\x6b\x53\x9a\x5e\xb9\x07\x24\xba\x55\xf0\xdd\xd8\x83\x41\x2a\x98\x2d\x85\xc4\xdf\x27\x4b\xb5\x1d\x58\x32\x77\x24\x56\x16\x78\x99\xd0\x32\x24\x55\x49\x6b\x62\x4e\x7a\x5a\xe0\x65\x59\xb0\x9a\xec\xb1\x94\xff\x2c\xa8\x10\x42\x96\xb5\x4d\xb3\xa0\x41\x08\x51\x77\x3a\x5a\xed\x94\x2c\x0f\xf7\x88\x2c\xd5\x1e\xc8\xf2\xec\x68\xb5\x07\x97\x3d\x60\x3d\x97\xcb\x1e\x5c\xf6\x80\x2f\x2f\x7b\x70\xed\x16\xa3\xb9\x97\x43\x79\xe1\xd5\xb9\xff\x5c\x70\x67\xb9\xec\xb3\xea\x4a\x1c\x34\xe0\xfa\x1a\xa0\x9f\x9f\x24\x76\x45\x69\x6c\x76\xee\x3b\xb3\x34\x07\xa2\x61\xbb\x76\x54\x71\x21\x4b\xbc\xd0\xcb\x1e\x95\xa9\x6c\x0e\xc4\xe7\x60\xcd\x10\x36\x07\x02\x65\xfb\x08\x3a\xd8\x9c\xdd\xc6\x3a\xae\x92\x1c\x1a\xf7\x75\xd8\x0e\xf7\x75\x09\xa7\xad\x32\xac\x61\x17\x02\xde\xf4\x15\x73\xda\x3c\x61\xc6\xc5\xcf\x85\x3f\xc7\xcd\x63\x1e\x34\x2d\xec\xa8\x67\xc7\xb8\x18\xd6\x74\xa4\x39\x3b\x1e\x3b\xcd\x4d\x47\x3a\x1d\xe9\xc6\xa7\xe9\x48\x73\x1b\x59\x96\x8a\x92\x25\x6d\x87\xac\x3f\x1a\x5b\x20\x1d\x90\xe4\x7c\xed\xb0\xc1\xfa\xb3\xc8\xfa\xa3\xb1\x7e\xd2\x01\x81\xf5\xe3\xf8\x94\x25\x1d\x90\xdb\x65\xc6\x2e\x2e\xb7\xcb\x0c\x87\x31\x6e\x67\xb3\xdc\x8e\xee\x8d\xa2\xea\x02\xbd\xfd\xb1\x05\x6b\xa3\x41\xf2\xc7\x64\x6a\xd8\x67\xb2\xc8\xd4\x80\xfc\xfa\x2e\x53\x03\xf2\x74\x19\xf7\xef\x4b\x26\x01\xf7\xb6\x2c\xdd\xc5\xc0\x8d\x22\x57\x0a\x59\x64\x7d\x45\xed\x09\x6f\xfb\x2c\xc3\x21\x1a\x0c\x91\x7d\x1f\x0e\x91\xc2\x20\xdd\xea\xc3\x79\x19\x9a\xf2\xe9\xc1\x70\x5e\x06\xac\x29\xdd\xc3\xd3\x1a\x26\x2e\x91\x29\xc9\xa9\xc2\x04\x8b\x19\x21\xcb\x74\xaa\x38\xd7\x5e\x32\x84\x69\x33\xb0\x0d\xed\x09\x43\x2f\xd3\x76\x4c\xb5\x16\x56\xd1\x74\xc9\xa8\x77\xa5\x0c\x61\xba\xc2\x17\xc4\x37\x92\xd3\x09\x55\x4e\xa5\x53\x35\x9d\x51\x6c\xbc\xa7\x33\x35\x9d\xa9\xa9\x07\x29\xa3\x36\x1d\xef\xe9\x48\x7e\x34\x47\x72\x3a\x92\x0c\xc7\x63\x3f\x3d\xc5\xa5\xbb\xff\xb1\x57\x9c\xe2\x8e\xc6\x10\x3d\xf6\x0a\x5f\xb9\x1d\xd7\xa5\x2c\x8f\x35\x2c\xc8\x6f\x5b\x3d\xce\xa8\x4c\x3e\x5d\x1f\x32\x79\x20\x3e\x3e\x2a\x93\x07\xca\x9e\xce\xd5\x6b\xa5\xaf\x61\x16\x92\xac\x54\x26\x9f\xc8\x29\x03\x39\xd2\x28\x88\x3d\x91\x53\x46\x41\xe4\xde\xd7\x58\x1e\x1b\xf3\xb7\x73\x83\x2d\xc4\x65\xb1\xce\x58\xee\x58\xdf\x0f\xcc\x0b\xb9\x3b\xf5\x40\xe0\x5f\x9d\x3b\x1a\xb1\x50\x0e\x4e\xfa\xb9\xbb\x1a\x80\xc4\x75\x32\x77\x57\xc3\xce\x3c\x1f\x1c\x89\x73\x77\x9e\x81\x8c\x2a\xa9\x4a\x5a\xed\x3d\x38\x76\xe6\xee\x34\x00\x71\x5e\x90\x9c\x06\x20\xf6\xa5\x8e\xa4\x51\x10\xb9\x73\x86\x3d\x0a\x8b\x97\x18\x80\x0f\x02\x37\x82\x34\x12\x20\x0f\xae\xd2\x0e\xf5\x8c\xa3\x4a\xc3\x9f\xb7\x6d\x07\xa4\x22\x69\x50\x0c\x4e\x76\x28\x0c\x80\xd8\x18\x72\x3d\xeb\xf3\xb8\xfc\x35\xb6\xe9\xd1\xfc\xb5\x86\x4f\x10\x73\x8a\xb3\xfc\x02\x46\xbc\x04\xbf\x26\x7f\x06\x1a\x86\xe0\x3c\xe4\xcf\xb8\xaa\x97\xa3\xc0\x07\xf4\x55\x4f\xdc\xc7\x17\x8d\x9f\xc3\x42\x27\xc4\x59\x2c\x66\xdb\xd0\xa8\x8e\x5d\x5a\x7e\x34\x4e\x56\x76\x41\x8d\xea\xc0\x43\xf6\xd8\x77\x46\x84\x93\xa0\x90\xd8\x9f\x52\x1f\x71\xa1\x1c\x3b\x62\x47\x27\x71\x21\x76\x7f\x8d\xc3\x61\x1e\xfd\xb0\xd8\x5a\x70\x07\x96\x6b\x21\x02\x0d\xe2\xe8\x56\xb0\xd6\x53\x39\xb8\x5f\xcf\xa3\x7f\x9f\x7a\xf9\x45\xaf\xb0\x99\x24\xde\xdf\xe5\x20\x0e\x29\x75\xff\x16\x72\x43\x78\x1c\xb2\x3c\x60\x15\x63\xe0\xba\x3d\xed\x28\x1a\x0e\x6f\xb7\xa7\xe8\xbf\xc7\xce\x1a\x3c\x54\xda\x80\xc0\x4b\x23\x8f\x61\xaf\x70\x72\x38\x38\xd4\xe4\xe1\x8a\x06\xe2\x70\x02\x5d\xd0\xc7\x74\x40\xae\xfc\xb9\xe8\x3e\x64\x45\x40\x6e\x95\xb1\x91\x13\x1d\xd3\x1e\xb2\x7d\x0e\x95\x46\xa0\x85\xbd\x51\x69\x04\x1a\xd6\x8d\x3c\x54\x1a\x0f\xdc\xe6\x0e\x4c\xbc\x79\xb8\xe0\x81\x26\x53\x38\xe4\x44\xc7\xe3\x84\xa0\x23\x1d\x8f\x13\x82\xf1\x88\x80\xa1\x3c\x1e\x27\xc4\x7b\x73\xf6\xdd\xf1\x38\x34\x4f\xf8\x25\xcd\x7d\x9c\x90\x07\x23\xe1\x57\xc1\x2d\xc9\x1e\x84\x9f\xda\x03\x8c\xea\x78\xbe\xe7\xf1\xd8\x03\xce\xb5\x98\x12\xf3\x78\xbe\x1e\x4c\xbc\x08\xed\x80\x53\xf4\x38\xf6\x21\xcd\xb1\x5f\x10\xfb\x45\x07\x64\x88\x40\x39\x76\x64\xcb\x21\x47\x04\x42\x75\xf6\x90\x21\x1e\xaf\x7d\x77\xf3\xbc\xf6\x9d\x0b\xb9\xcd\x99\x7c\xed\xfb\x8b\xc1\xd1\xbe\xbf\xf6\x1d\xff\x8f\x63\x4f\x2b\xb5\xa3\x0b\x5a\xd8\xdc\xd7\x7e\xca\x60\xb8\xf5\xc9\x43\x06\x03\x84\xcc\xc4\x80\x81\x3c\xb9\x15\x38\x8e\x4d\xda\x29\x8d\x76\x54\x49\x55\xd2\xb0\xd8\x09\x6d\x4a\x9b\x9c\x50\x24\x3d\x92\x60\x30\x47\x59\x3d\x35\xfc\x40\x68\xed\x92\x54\x24\xa1\x16\xb1\x39\x4f\x55\x68\xa0\x25\xab\xe8\xc4\x40\x20\x04\xf6\x9d\x3c\x55\xaa\x81\xf5\xfb\x16\xb3\x69\x15\x8f\x76\xa4\xf4\xa9\x56\x7d\x62\xab\x3b\xb0\xae\xe5\x89\xad\x4e\xc8\x8d\x9d\x73\xaa\x68\x9f\xf5\xb6\x98\x35\x74\x69\x9e\x8a\xfc\x72\x48\x1a\x70\x48\x86\x43\xde\x0a\xe4\xf6\xf5\xc9\xae\xe3\x7f\x70\x10\x86\x97\x27\x77\x91\x42\xe0\xe0\x90\xe7\xe5\x68\x5c\x8e\x37\xd2\xec\x54\x6d\x06\x72\x83\xbb\x9c\x97\x9d\xc2\x4b\xf0\x38\xe0\xde\xe7\x65\xaf\x70\xd6\x3e\xe0\x55\x27\x5e\x82\x79\xa2\x70\x1f\x87\xcd\x55\xe1\x3e\xb5\x0f\x56\x2b\xb5\x1d\x04\x41\x1d\x07\xf2\xdd\xd8\x0e\x21\x30\x2a\x27\x71\x1e\x1f\xac\x62\xfc\x5a\xb3\x6d\x8d\xb6\xa1\xfb\x1a\xee\x21\xac\x62\x34\x44\xf1\x70\xaa\xbe\x87\x5f\xda\xb6\xe6\x24\xa0\xd5\x1a\x02\x22\x24\xde\xbf\x79\x36\x27\x01\x2d\xff\x38\xd0\x13\x4f\xb5\x7c\x20\xb0\xe6\xe4\xa9\x96\x6f\xf0\xc8\x21\x9b\x33\x78\x44\x88\xc6\x46\x20\x90\xe4\x83\xd8\xd9\xca\x86\x93\x08\x51\x5d\x46\x61\x47\xf1\x67\x3f\x8e\xd3\x2f\x6d\x2e\xfe\xec\x18\xb7\xf3\x0c\x5b\x8b\xe1\x06\x83\x7a\x9e\x61\x6b\x31\x8e\x1c\x87\xbf\x76\x5b\xe7\x82\xd6\x38\x9c\x19\x00\x92\x27\xf7\xa6\xc7\x81\x92\x7f\x76\x2b\xed\xd8\xbb\x90\xbd\xa7\xd2\x07\x28\xc7\x61\x0d\x8a\x1f\x20\xaa\x2b\x5c\x6d\xe7\xec\xf6\x1d\xce\x73\xaa\x36\x03\xb1\xa3\x87\x9e\xaa\xcd\x40\x6b\x36\x4d\x8b\xc1\x89\x07\xd5\x71\xa0\xc6\x9c\xc3\xe5\xbc\x20\x89\x2d\xcc\x53\xad\x99\xf8\x8c\x72\xe0\x03\x92\x06\x68\x08\x11\x6e\x21\xf5\xd0\x73\xb2\xbb\x4f\xd7\xae\xaa\x0d\xd0\x22\x29\x26\xa7\x37\x08\xe2\x38\x91\xda\x06\x41\x64\x75\x05\x9e\x88\xed\xea\x0a\x04\x02\xcf\x96\xac\xae\x40\x83\x0f\x8e\x8a\x71\xc4\xe0\x83\xac\x84\xbc\x1e\x95\x8d\x55\x9d\x40\x20\x88\x2e\xca\xea\xc1\xad\x72\xfd\x71\x60\x52\xcb\xaa\xfe\x50\x8d\x31\x83\x15\x57\x2d\x32\x40\x2a\x5f\xea\x6d\x05\x4e\x16\x9e\x16\xa9\x83\xbf\xd0\x02\xbd\xae\x3a\x59\x95\x63\xcf\x51\x2f\xda\xe6\xb1\x07\x08\xad\x1e\x55\x1d\xa0\x2a\xa2\x2b\xfc\xa8\x2a\xa2\x81\xc4\x2a\x9d\x55\x11\x0d\x94\xa3\xda\x7b\x95\x4e\x20\x97\x8e\xf5\x53\xa9\x5d\x3d\xa1\x00\x79\xb0\x89\xab\x27\x94\xaa\xe6\x5a\x6d\x93\x9a\x2b\x10\x57\x95\xc4\x32\xab\xcf\x57\xff\x9a\xb8\xea\xc4\x01\x79\x84\x24\x2b\xe0\xe2\xe6\xb8\x9c\x10\x2e\x6e\x84\x28\x8e\x03\x17\x37\x59\x15\x7a\x17\x7c\xbf\x2a\xf4\xaa\xe1\x31\xd7\x05\xc9\x5f\x7b\x59\x67\xd7\xce\xb0\xbe\xdf\xa7\x81\xb3\x0a\x83\xcf\x3d\x5e\x56\x45\xd7\xe5\x02\x52\x74\x55\x75\x63\x56\xad\x01\x17\x49\xa4\x44\x39\x2e\xb8\xda\x25\xe7\x07\xf2\x2c\x92\x68\xee\x85\x8f\xd6\x61\xef\x2f\x0d\x04\x97\x3e\x5a\x21\x69\x4a\x62\xde\x2e\x04\xb2\x91\x14\xa9\x0f\xfd\xa1\xe1\x4f\x1f\xfa\xc4\x57\xbb\x1c\x9a\x84\x74\xd6\x16\xf2\x60\xe9\x35\x2e\x73\xb2\x5d\xd4\xea\x12\x6d\xd7\x90\x86\x20\xb9\x2a\xa4\x29\x89\xae\x72\xa3\x98\x4d\x06\x0e\xa4\x3c\xbd\xc9\xc0\xf5\xdf\x3e\x02\xf1\xa8\xff\x76\x36\xc2\x3c\x8e\xe0\x84\xd6\x30\x18\x0b\x89\xd5\x37\x9b\x46\x03\x20\x1a\x0a\xb9\x5e\xcd\xa9\x0b\xf3\x81\x13\x4e\xea\xc2\x2c\xb4\x40\x27\xd5\x85\x39\x75\x61\x3e\xb4\x54\xea\xc2\x2c\x04\x57\xda\xa9\x0b\x73\xea\x26\x7c\x10\x51\x9a\xba\x09\x0b\x79\x60\x1e\xd1\x4d\x38\x1b\xd1\x0d\x87\x87\xc7\xa6\x4a\x05\x44\xb3\x1d\x6a\x54\xfa\xc5\x1e\x58\xf7\x53\xbf\x58\xa1\x25\xea\xbd\x7e\xb1\xa9\x77\xeb\x91\xcc\x8c\xde\xad\x89\x8f\x6a\x39\x71\xdd\x4a\x9d\x54\x85\xe4\x62\x2c\xf5\x51\xcd\xc0\x07\xe7\xc4\x15\x31\x03\x1f\x1c\x21\x1a\x4c\x37\xf0\xc1\xc9\xc0\x0f\xe2\xdc\x58\x98\x81\x1f\x84\x10\x1b\x1c\x36\xd4\x6e\x02\x47\xc1\x73\x2b\xd4\xe0\xf9\x09\x48\x45\x7c\xc8\xeb\x80\x72\x6e\x08\xef\x90\xd9\x01\x71\xc2\x76\x42\x69\xab\xb3\xec\xf9\xd5\xe0\x3c\x03\xe5\x54\xff\x0d\xc5\x1c\x90\x5c\xe4\x65\x28\xe6\x02\x77\x89\x53\x2d\x22\x70\x97\x10\x5a\x62\x1c\x0a\x0f\x63\xe1\x61\x6c\xb3\x02\xa6\x3e\x16\x4b\x2c\x27\x71\x45\x19\xf2\x44\x60\x1d\x42\x21\x59\xe7\x9d\x14\x0b\x3e\xd5\x60\x04\x84\x87\xe9\xd0\x60\x14\x1c\xd7\x4f\xee\x75\x33\x14\x60\x40\xe0\x12\x99\xe1\x71\x1d\x88\xe2\x97\x1e\xb2\xf4\x0a\x3e\x8b\x6d\x93\xc1\xea\x15\xac\x1a\xa4\x57\x70\xc6\x3a\x16\xad\x62\x74\xd4\x73\x11\x10\xb8\x22\x67\x0c\x7f\x6d\x30\x1e\x84\xb8\x27\x9e\xc4\x1f\xb4\x86\xde\xa9\x3f\x71\x06\xf6\x80\xb3\x58\x83\xbc\x19\x08\x7c\x29\x33\x64\xcd\x41\x8c\xe4\x59\xe0\x3f\x21\xa7\x05\xa2\xb9\x40\x64\xb4\xf1\x58\x0c\x5d\x31\x34\xae\x00\x71\x38\x6c\xcf\x57\x8c\x3b\x27\x76\x8c\xce\xc1\x42\xaa\x7a\xe9\x1c\x9c\xc1\x81\xe3\xd4\x90\x1f\x6e\x0f\x20\x55\xe4\xc2\x03\x87\x3e\xc4\x67\xb1\xf3\x32\x5a\x7d\x88\x4f\x17\xa5\xe6\x16\x3d\x81\x4f\x4d\x04\x7a\x02\x67\x9e\x36\x97\x99\x4f\x0d\xe8\x40\x6c\xcc\x7c\x7a\x1e\x48\x37\x16\xbe\x0b\x99\x6e\x2c\x20\x88\x3d\xce\x74\x63\x25\x3a\xeb\x59\x30\x59\xe6\xf5\xd1\x60\x48\x8c\x47\xca\x2c\xf1\xb6\x2d\x27\x4e\x1f\xa9\xbb\xad\xd0\x02\xe5\x3c\x65\x79\x89\xfb\xc5\xa9\x89\x20\xd5\x3c\x81\x54\xf1\x4c\x15\xcf\x44\x7d\x3c\xf1\xcc\xca\x54\x7d\x04\x02\x0f\x92\x4c\xd5\x47\x20\xb9\xd2\x4e\xfd\x74\x53\xa7\xdc\x73\x67\x81\xe8\x94\x9b\x19\x56\xca\x6a\x48\xcd\xbf\xc0\xda\x71\x90\xac\x94\xb8\xfa\x93\x98\xee\x4c\x35\x43\x20\x97\x76\xfe\x53\xe1\x8d\xeb\xef\x02\x07\x82\xc9\x4c\x8d\xc8\xf9\xb9\x29\x1d\x90\x1c\x08\xec\xca\xe7\x6e\xaf\xb5\x2b\x03\x41\x4c\x55\xa6\x76\x65\x1d\x85\xcf\x1d\x3d\x5a\x47\xe1\xfc\x1c\x85\xd3\x62\x56\x7a\x5b\x8c\x45\xa5\x1f\xaf\x90\x07\xa7\xc7\xbc\xbf\x62\x6c\x8b\x1d\xbd\x5f\x3f\x5e\x21\x3d\xef\x65\xb7\x1d\x5d\x4e\x47\xd3\xba\xed\x40\x9b\x3a\xf7\x4b\x9a\x6b\x0a\x97\x41\x75\xf7\x54\x9b\x02\x92\x20\x97\x4c\x35\x5f\x20\x35\x96\xa7\x8c\x23\xb1\x9e\x9c\x3b\xba\x46\x6a\x3d\x01\x52\x0d\x5c\x37\x61\x21\xf1\x92\x48\xdd\x84\x85\x72\x7a\x17\xa2\x9f\xb0\x90\x87\x13\xae\x82\x0c\xac\x62\x0c\x87\x77\x6a\x40\x7a\x38\x48\xad\xcf\x78\xfb\xae\x62\x74\x6a\x38\x6a\x83\x51\x43\x49\xc9\xe1\xa8\x0d\x67\xd4\x79\xd1\x06\x09\xe4\xe1\x78\xab\x0e\xea\x01\x7c\xe2\xbf\x92\x7a\x00\x0b\xd1\x9c\x64\x95\x3b\x3c\x7c\x57\x31\xba\xa5\xdd\x37\x8d\x87\x76\x31\x6a\x92\xc9\x69\x4f\x61\xb8\xa9\x56\x0e\xc4\xe9\xaf\xa9\xdc\x25\x7e\x88\xe7\x81\x4a\x9b\x32\x9d\x94\xe9\x9c\x92\x1c\x71\x62\x15\xcf\x03\xe9\x98\x6a\x77\x40\x7a\x90\x4b\x8d\x2d\x89\x7b\xc0\x79\x6c\xd2\xdc\x50\x0b\xf2\xe0\xb4\x9b\x9a\x51\x74\x3b\x3e\x8f\xc2\x34\x6b\xe5\x00\xd2\xf3\x9e\x6e\xc7\xa9\xdb\xf1\xe9\x41\x5c\xb7\xe3\xbc\x09\xa7\x3d\x1d\xdf\x5b\x99\x0c\x04\x31\x0f\x79\x7b\xb7\x77\xe3\x87\x78\xda\xb8\x5b\x8d\xef\x36\xcf\x08\x7a\xd6\xed\xe9\xff\xbe\xec\x3d\x6b\xfc\xf6\x8c\x0d\xe4\xf7\x6b\xb2\x2b\xa0\x9c\x07\x07\xfb\x5b\x7e\x05\xc4\xf6\x15\xf3\xd7\x14\xfa\x07\x5a\xdb\xad\xd0\x07\xa2\xda\x0e\x85\xfe\xcd\x41\xf9\x3c\x60\x88\xb7\xfc\x0a\x08\xb9\xda\xed\x41\x19\x68\x19\x7e\xf9\x55\xe0\x80\xb0\xde\xf4\x4e\xce\x3b\x9c\x19\x4e\x11\xb7\x27\x54\xa0\x35\x2b\x90\x0f\xdd\xe1\xcc\xa0\xc7\xde\x0a\x7d\x20\x8f\x6a\x31\x66\xe6\x96\xab\x1c\x1c\x13\x6e\xb9\x0a\x90\x07\xf7\x6d\xb7\x5c\xe5\x4e\x07\x84\x03\xe4\xad\x46\x09\xe4\x51\xfd\xd2\x76\x24\x93\x75\x62\x93\xbe\xe5\x34\x40\xca\xca\x6e\x6f\xa6\x80\xc4\x09\x33\x6f\x6f\xa6\x6e\x8e\x6d\xe7\xb9\x49\x7b\xa4\xa1\xeb\xb3\xe9\x6f\x8f\x6d\x37\x4e\x92\xa7\x7a\xcb\xed\x21\x1b\x88\xd3\x49\x50\x3d\x05\xa2\x58\x81\xea\xe9\xad\xda\x72\xb2\x04\x6f\xb9\x1b\x10\x87\x15\xa8\xb6\xdc\xea\x01\x64\x08\xca\x5b\x3d\x00\x48\x62\x84\xf3\x76\x9b\xde\x5c\xec\x9c\xa7\xbd\xf2\x62\x07\x88\x28\x92\x1c\x22\xb7\x2e\x59\x67\xf2\x76\xeb\x02\xe9\x19\xfb\x76\xeb\xde\x8f\xbd\x42\xee\xdd\x9e\xb8\x80\xf8\xe6\x45\x0d\x42\xbf\xf4\xf3\x44\x4c\xeb\x97\x2e\xc4\x89\xa6\xaf\x5f\xba\x90\x5f\x47\xdd\xcd\xba\xaa\x9f\xa4\xb5\x49\x5d\xd5\x53\xaf\xf1\xf3\xa4\x06\xbd\xc6\xb3\xcb\x91\x2a\xc7\xf3\x6e\x57\x81\x2c\x1c\x2f\xba\x1c\x49\x97\xe7\xf3\x62\xef\xea\xf2\x2c\x24\x01\x8c\xa9\xcb\x73\xea\x7d\x7c\x92\xd4\x23\xf5\x3e\xce\x41\xda\xa0\xf3\x82\x35\x0e\x0d\x7c\x40\xc8\x06\x87\x06\x3e\xdc\x86\xcb\xd9\xe0\x52\x43\x33\x1d\x10\x2e\xf2\xe1\x7d\x38\x90\xe5\xfb\xb2\x4b\xea\x7e\x29\x6d\x48\x53\xd9\x3d\x21\xd1\xb6\xa1\x5a\xd1\x58\x48\x43\xb5\x02\x88\x75\xc6\xfd\xa9\xe8\x1e\xee\xe2\xd1\x6c\x26\x07\x9c\xa1\x21\x0b\x68\xcd\x0e\xaa\x88\xe8\xd6\x7c\x36\xf4\x74\xdd\x9a\x73\xe0\x48\x74\x7a\xc9\x3a\xd4\x27\x80\xd8\x50\xfe\x86\xe6\xa8\xc1\x19\xed\x6c\xc8\x8d\xe1\x19\x6d\xe8\x73\x02\xf3\x1f\x6e\x95\x41\x2e\x9c\xb3\xb1\x94\x87\x4b\x19\x88\xca\x26\x18\x5e\xd9\x0e\x22\x2d\x4f\xd2\x30\xe4\x50\x58\x01\x41\x8a\x8f\x1c\xea\xc7\x03\xdb\xc5\x19\xc5\x62\xaf\x34\x3c\x4d\x91\xa3\xc3\x7d\x31\x9e\x6a\x31\x68\xae\x34\xa0\x35\x96\xc1\xd0\x4e\x00\x84\x52\x79\x28\x49\x86\x62\x23\x10\x4c\x43\xb1\x01\xb4\xb8\xfc\xd2\x8e\x72\x56\x3c\x03\x25\x74\x78\x56\x1c\x46\xc2\x73\x2a\x1e\x2a\xc3\xf8\xf8\xae\x62\x0c\x88\x66\x6f\x20\xb6\x22\xc9\x0a\x5e\x7f\x8d\x3d\x3b\x34\x27\x00\x41\x32\x81\xd4\x2d\x38\x27\x0e\x26\x27\x79\xc3\x72\xea\x60\x02\x04\x59\x90\x72\xaa\x1f\xcf\xd3\xce\xb3\x55\xa6\x9a\x2f\x10\xfb\x65\xb1\x26\x09\xaf\x96\xef\xcb\x90\xc4\x94\xea\x47\x30\xb5\xa1\x4f\x6d\xe8\x34\x77\x6a\x43\x9f\x1e\x3c\x71\xce\xce\xe9\xc1\x13\x08\x6d\xe8\xd3\x83\xe7\xc4\xb1\xe3\x0c\xf4\xac\xa9\x63\x07\x10\xc4\x4b\xe6\xd4\xb1\x63\xe2\x68\x7a\x06\x52\x63\x2a\xbe\x80\x20\x5e\x2a\x27\x8e\xa6\x42\xec\x1c\x59\xe7\x75\x4b\x72\xd8\xc2\x5f\xb3\x6d\xd8\x96\x03\x8d\x64\xaa\xa7\x4f\x65\x61\x70\x12\x9f\xca\x42\x20\x48\xf0\x91\x53\x59\xa8\x37\xf5\xa9\xa1\x50\x6f\x6a\x21\x88\x77\x4d\xbd\xa9\x53\x6f\xea\x13\x67\xf5\xd4\x9b\x5a\x88\xed\xfb\x72\x48\x62\x28\x09\x81\xcb\xa9\x01\x07\xc8\x8b\x85\x8a\xb7\xf5\x07\xab\x18\x34\xf7\x1f\x4e\xd5\x8b\xc6\xcf\xa9\x89\x4f\xc3\xcd\xd9\xba\xd3\xa3\xf3\x0c\x6b\x28\x16\xb3\x06\xc2\x0a\xc8\x3d\x90\x53\x7d\x7d\x2a\x46\x49\x1f\x95\x53\x31\x0a\x64\x41\xa5\x9c\x8a\xd1\xa9\x72\xae\x0f\xc2\x54\x39\x07\x42\x49\x32\x15\x99\xf3\xf6\xd7\xd0\x79\xa6\xc7\x6e\x20\x0b\xdb\x74\x2a\xf8\x80\xf0\x9c\x35\x15\x7c\x93\x2b\xd0\x53\x1b\xc9\xf4\x0a\x14\x48\xef\x0f\xa7\x57\xa0\x13\xff\xd8\x33\x61\xe0\x53\xde\x00\x64\x09\xeb\xb4\xa3\x37\xf1\x13\x2e\xb7\xdb\x8e\x92\x18\xe5\x24\x6d\x49\x4e\x55\x7d\x20\x70\xcd\xce\xa9\xa6\x0f\x44\x41\x17\x9d\x6a\xfa\x93\xa8\x9f\x33\x4f\x69\xdf\xaf\x21\xe1\x5d\x33\x2a\xec\x93\x1b\xd0\x33\x39\x9f\x4e\x6f\x40\xa7\x1e\x80\xae\x40\x4f\xfa\x53\x4d\x3c\x91\xfa\x53\x4d\x7c\x9a\x78\xd0\x59\x96\xb9\xcd\xe1\xf4\xb9\x89\xb4\x72\x03\xe9\x6d\xcc\x54\x39\x9f\xd3\x5e\x21\x59\xa7\x42\x0e\x48\x2f\x46\xa6\x27\xfd\x49\xe8\xc2\x99\x8e\xb8\x06\x54\xa0\x05\x1a\xda\x54\x11\x98\x8f\xd3\xe7\x12\x54\xed\x06\x42\xbb\x9a\x6e\xf4\x42\x1c\x08\x7d\xdd\xe8\x73\xbe\x7e\xe9\x2c\x6b\x3f\x9d\xda\x4f\xdd\x1d\x1e\xeb\xa7\xea\x34\x51\x87\x39\x55\xa7\xa7\x51\x7c\xb2\x23\xd5\x69\xdd\xe8\xeb\xb7\xc1\xb5\xa1\xe9\x46\x1f\x97\xc5\x5c\x0c\x5c\x24\xd6\xcd\x4d\xe4\x45\x22\x10\xde\x60\x4f\x39\xea\x5c\x5c\x74\x15\xb3\x6d\x0e\xe5\x8b\xdb\xe8\x57\xa9\x43\x89\xd0\xaf\x04\xdb\xa6\x1e\xf8\xf9\x60\x38\xa8\xda\xd0\x1e\x0d\x07\x40\x90\xa2\x20\x75\xca\x4f\x1c\xf1\x4b\xd5\x86\xf6\xc8\x2c\x81\xa8\x5f\xb1\x94\x84\x80\x85\x7d\x3e\x1e\x08\x1e\x5c\x8d\xeb\x56\xea\xcf\x45\xf7\xe3\x45\xe3\x63\x9e\x25\xce\xc4\x8f\x7a\x08\x50\x2a\xb9\x6b\xf2\x51\x11\x79\x74\x45\xe6\x22\xe9\xf1\xa2\xd1\x40\x81\xaa\x47\x85\x81\x02\x42\x78\x7c\x34\x50\x20\x9f\xea\x78\xed\xd2\xa6\x34\x24\xb7\xbd\xf1\xbe\x10\x48\x2f\x97\x1e\xaf\x0b\x1f\x58\x7a\xdd\xd0\x2a\x1e\x59\x3a\x10\x64\x34\xcb\x47\x96\x0e\xac\x62\xfc\x9a\xbe\x7a\x40\xea\xd0\xf4\x78\xab\xf8\x5c\xae\x02\x58\xc2\xe3\x59\x06\xc8\x12\x7e\xe9\x40\x63\xa8\xae\x1b\x07\x97\x47\x43\x35\xd0\x1a\xa6\xc4\x47\x43\x35\x51\x07\xa5\x6e\xa7\x0d\xf9\xda\xfb\x32\x46\x7c\xa9\x37\x09\x91\x06\xab\x18\x35\xc8\xfa\x81\x20\x72\x31\x1f\x4d\x9f\xc0\x2a\xc6\x18\x69\xfb\x04\x52\xd6\xf1\x28\x20\x80\x24\xfb\x57\x3e\x0a\x88\x07\x01\x51\x35\xa4\x3e\x0a\x08\x20\x4b\x93\x64\x0f\xf4\x00\x44\x8c\x3c\xca\x07\xa3\x1f\x2a\x5e\xee\x69\xf4\x43\x3e\xe1\x02\x85\x09\x3f\xda\x7b\x1e\xed\x3d\x8d\xa1\x54\x3f\x03\x56\x31\x7e\x4e\x05\x0d\x48\x0d\x98\x8f\xa7\xb1\x27\x9d\x3f\xc7\x4d\x61\x00\x84\x9a\xea\xa3\x30\x78\xd2\x75\x04\xd3\x79\x34\xdc\x03\x49\x24\x50\x3e\x1e\xb3\x80\x2c\x2e\x54\x8f\x59\xcf\xed\xe8\xc2\x87\x1e\x85\xc1\xe3\x29\x88\x1d\xfb\x28\x0c\x88\x99\x28\x55\xf3\xd0\xa3\x8f\x0c\x10\xa4\xda\x48\xe3\x27\x92\x98\x89\x55\x8c\xe1\xd5\x14\x04\x44\x45\x2f\x7a\x3c\x2c\x19\x2c\x51\xb5\xfb\x1a\x2c\x21\xa4\x5e\x3e\x06\x4b\xe4\xd3\x5d\x95\xf0\xab\x47\x69\x00\x44\xb5\x02\xa5\x01\x10\x3b\x8a\xe8\xa3\xdd\xe7\xe9\x8e\xae\xd3\xac\x79\x18\xc8\xf2\xfd\x98\x9d\x7f\x9d\x2b\x47\x5c\x4e\x07\xc4\x85\xfa\xf4\xe8\x1e\x61\x44\x42\xd5\xaf\xd1\x88\x84\x7c\xc9\x5b\x50\xbd\xb2\x7a\x55\xb3\x80\xa8\x4c\xf3\xab\x96\xf5\xba\xc6\x55\xb0\xdf\xeb\xa3\xbd\xd4\xb0\xc6\xed\x75\x8d\x1b\x1e\x50\x77\x69\x2e\xa4\x97\x9c\x66\x95\x70\xa9\x7c\x9d\x67\x20\x76\x8c\x63\xaf\x8e\x9e\x38\xef\x97\x4a\x66\xc0\xd4\x7b\x5f\xc8\x13\x13\xe9\xab\x6a\xf0\x3a\x81\xc4\xa5\xe7\xeb\x04\x02\x49\x64\x62\xbe\x4e\xe0\xeb\x04\xaa\x77\xbe\xf7\xf7\x29\x26\xbf\xaf\xd8\x2d\xa9\x5b\x8c\x4a\x15\xfa\x40\x92\x02\x22\x5f\x85\xfe\x3b\xbe\x5f\xe3\x53\x25\x2b\x10\x0d\x93\xdf\xab\x64\xd5\x05\xbf\x6a\x6e\xd2\x05\x5f\x48\xb2\xcd\xa5\x2e\xf8\xf9\x22\x0b\xeb\xce\x12\x79\x95\x85\x40\x9c\xfe\x9a\xb2\xf0\xc5\x43\xa7\xea\x34\xff\xea\xa1\x03\x34\x6f\x9e\x5f\xcf\x08\x2f\x07\x82\xaa\x31\xe8\x7d\xbe\x1a\x1e\x2a\xdd\x21\x39\x59\xc8\xc7\xaa\x09\xf1\x55\x3e\x02\x4d\x35\xf9\x75\xd5\xbc\x4a\x34\xaf\x4f\x5e\x25\x1a\x10\x27\xb7\xb6\xaf\x12\xcd\xf0\x80\x8a\x41\xeb\x36\x3c\xe0\xde\xb0\x98\x57\x8c\x83\xf7\xc6\x89\x40\x08\x42\xeb\xef\x0d\x8b\xf9\xbd\x71\x48\xa8\xf8\x6a\xdc\x1b\x52\x4e\xc8\xf3\xf0\xcb\x26\x29\x2c\x16\xd0\x52\x9a\x43\x6e\xb1\x5b\x92\xbd\x5f\xbb\xf2\xde\x58\xbe\x42\x23\x65\xdc\xbd\xb1\x7c\xef\x4d\x31\x86\x61\xe6\xde\xaa\x0d\x21\x9f\x06\xd7\x8b\xf7\x86\x18\xbb\x37\x22\xd4\xea\xb1\xb8\xd4\xbd\x55\x6b\xc0\xbf\x7c\xdb\x25\x75\x48\x0a\xa3\xe3\xe2\xd7\x10\x46\x42\x70\x57\x72\x6f\x08\x23\xa1\xd4\xa3\xd1\xb6\xcb\x01\x41\x18\x91\x48\xf8\xde\x2e\xdb\xd1\xfc\xb5\x56\x16\xad\xf9\x6b\x5a\xcc\xf6\xf2\x53\xd9\x7d\x6f\xcd\xca\x14\x1b\xdc\xde\xdf\x5b\xfb\x7e\x19\x86\x72\x31\x49\xcd\x1e\xba\x41\x49\x08\x73\x1b\xc3\x21\x04\xdc\xf4\xde\xc2\xfa\x65\xd7\x47\x52\x2c\x3f\x1a\x6d\xb2\x58\x5a\x29\x39\x6e\x2b\x77\xca\xf7\x96\x56\x9a\x24\xec\xfb\x48\x56\x2a\x57\x27\xd4\xea\xde\xd2\x29\x4f\x22\x95\x0a\x63\x93\x4e\xb9\x7b\x96\x5c\xc9\xf7\x76\x3b\xe5\xd8\xdf\x71\x90\xbc\xb7\xdb\x09\xe1\x52\xb5\x7e\xab\xa5\x3b\xbf\xb8\x7c\x7c\xcd\x1d\xf6\x0a\x83\x73\x3d\x9d\xf2\xe1\xca\x30\x0c\xcc\x49\x1a\x7e\x39\xad\xf4\x62\x9d\x4d\x2b\x9d\x04\x27\x07\x53\x3e\xad\x74\xfa\x6b\xcd\x62\xfe\xda\x82\xb8\x76\xba\x30\xfd\x35\x37\x23\x01\xe7\xb7\xf1\x1f\x42\x90\x08\xe9\x26\x16\xe4\x97\xdb\x20\x8e\x7a\x2e\x7e\x7d\x17\x0e\x33\x37\x3e\xbf\x74\x60\x97\xb0\xdf\xf8\x8d\x53\x66\xef\x92\xb8\x43\x5b\x9a\xcc\x6d\x92\xef\x9b\x24\xde\xfb\x09\xe5\xb5\xcc\xda\xc1\xb8\x5e\xde\x87\x3f\x84\x6b\x9b\xab\x40\xb7\x9c\xfb\x5c\xcc\x00\x1f\xb3\xbb\x4a\xa9\x4b\x42\x10\x7e\x71\x9b\xc8\xf0\xbe\x96\x68\xa9\x4b\x53\xbb\xaf\x21\x65\xb1\x88\x7a\xae\x32\xcd\x32\x24\xb3\xba\xd6\x21\xe7\x26\x79\xd4\x2f\x77\x5b\x8d\xb8\x8e\xf5\x95\x57\xcf\x37\xf7\xb6\xc9\x4d\xf9\xed\xb5\xed\x1d\x84\x73\x91\x98\xf1\xf6\x06\xf5\x8e\x35\x69\x17\x93\x10\x84\xea\xdc\xb1\xd8\x5f\xdb\x56\x19\xaf\xe4\xee\x5c\x4a\x64\x72\x65\x73\x27\xf6\xaf\x3b\x71\x53\xdb\xc8\xc0\x78\x93\x0d\xe7\x83\x45\x5b\x3f\x66\x6a\x9b\xdb\x0b\xad\x0d\x4b\xf5\xed\x85\xd6\x9d\xe6\x82\xc4\x97\xef\x4e\x57\x25\xd0\xf0\x1f\xbe\x13\x23\xe9\x9d\x6b\xca\xda\x3a\x15\xde\x9a\xdf\xef\x1b\x63\x45\xad\x4b\xc8\xdd\x37\xc6\x0a\x21\x08\x8d\xba\x6f\xd9\xd0\x2d\x1b\x5a\x5a\xe1\x7d\xcb\x86\x34\x8e\x57\x82\x55\x6e\x8d\xe3\x42\x10\x7e\x74\x6b\x1c\x17\x4a\xad\x17\xbf\x86\x5a\x28\x24\x3e\xd1\xf7\xed\xf6\xc6\x5e\xbe\x8a\x49\x6b\xd2\x0c\x09\x4e\x48\x21\x29\x2d\x76\x42\xbb\xa5\x19\x76\x6b\xa5\x5d\x12\xf9\x03\xd2\x3a\x87\xa4\xc7\x2f\x69\xae\xa3\xa6\x39\xbb\x12\xb4\x76\x6b\xce\x16\x5a\xf8\x69\xfa\x6b\x89\x60\xc5\x87\xe6\xd6\x9e\x2d\x64\x29\x16\x73\xd8\x34\xdb\xc1\x2c\xb4\x70\x0b\xeb\x4b\x2a\x4d\xc7\x8d\xd8\x59\xb9\xf7\x7d\xdb\x8e\xdb\xa1\x64\x7b\xdc\x2e\xa2\xfb\xf3\xe1\xfc\xdd\x2f\xb7\x06\x5d\x21\xb6\xe3\x82\x54\x24\x39\xb8\x4b\xff\xbd\xbb\x62\x0a\x08\xbc\x9f\x6f\x33\x94\x08\xa5\x5e\x2c\x40\x53\x94\x08\x49\x5a\xf5\xbb\x2b\xb9\xba\x59\xbd\x36\xbf\x6c\x92\x9a\x5f\x16\x68\x21\x8d\x23\x1b\x92\xcb\xdc\x26\x42\x90\xf1\xf9\x36\xb7\x89\x90\xe5\xeb\x40\x97\x34\xfc\xb1\x1d\xda\x94\xe6\xa0\xf9\x63\x0c\x9a\x86\xeb\x4a\x12\xd3\x5b\xc3\xf5\xdd\x1d\xa1\xab\x52\xce\x11\xea\x66\x2d\x58\x1d\xd0\xf8\x7c\x0f\xc5\xf1\x85\x40\x18\x76\x0a\x88\x0b\xae\x32\xec\xd4\x70\xe5\x5e\x6c\xbe\xe1\xca\x1d\xfa\x72\x14\x49\xbb\x24\xa6\x1d\xab\xee\x3d\x5c\x45\x40\x1e\x56\xca\x79\xe3\xd6\xf8\x5b\x51\x9e\x6e\x8d\xbf\xb7\xc9\x2a\x6a\x43\x2f\x30\x59\x85\x10\x64\x0d\xba\x4d\x56\x71\x93\x5f\xa2\x54\x0e\x60\xb7\x09\x26\x84\x70\xa7\x0d\xa5\x10\x10\x04\xae\xdf\x43\x29\x34\x1c\x0f\xbc\xb1\x6f\x0d\x9b\xf7\x54\xcb\x20\xc7\xdb\x3d\x9d\x18\x20\x09\x66\xbf\xa7\x13\x33\xc9\xaf\x53\xf1\xe1\xbc\x27\x87\x54\x21\x8f\xbf\xc1\x32\x7e\x4f\xce\xb0\xb7\x66\xc9\x4a\x32\xad\x5b\xb3\xa4\x90\x38\xed\xde\x9a\x25\x6f\xcd\x92\x35\xe0\x98\x9a\x25\xef\xcf\x2c\x89\xa8\xd1\x2c\x79\x4f\x05\x7e\xd8\x4e\x39\x02\x90\x98\x4c\x6f\x0d\x89\xb7\x76\xbe\x1a\xc8\x3c\xed\x7c\xf7\x24\xb3\x78\x25\x16\xed\x9e\x61\xad\xb8\x82\xe2\xfa\x78\x4f\x3c\x09\xef\xe9\xd1\x0e\x8b\xf4\x4d\x42\x86\x0f\xf2\x80\xbf\x98\x96\xe1\xc6\x42\x58\x2a\x16\xe9\x5b\x13\xa1\x90\x38\x19\xdf\x98\x0b\x7f\xb9\x35\x07\x56\xd2\xd3\xdd\x9a\x03\x85\xe4\xc5\x8e\x5b\x73\xe0\xad\x9d\xaf\x12\x0b\x7e\x6b\x2b\xb9\x3f\x23\x84\xaa\x9a\x46\x08\x21\x09\x7a\xbf\x35\x42\xdc\xd8\x03\x4a\xc5\x9e\x7b\x6b\x10\x10\x5a\x63\xd9\x6a\x0f\xb8\xbf\xc3\x2e\xc9\x6c\x6f\x0f\xbb\x42\xe0\x62\x72\x1b\xea\x7f\x7f\xe7\x5f\x02\x90\x6e\xcf\xbf\x42\x73\x89\x7a\xfe\xbd\x1f\x7b\x9f\x0c\xdc\x63\xef\x81\x20\x7b\xf0\xfd\xd8\xfb\x47\x4d\x89\xac\x33\xf7\xe3\x1a\x05\x1a\xd6\xf2\xfb\x71\x8d\x92\x24\xa0\xd4\x64\x29\x9b\x25\x40\x68\x84\x11\xdd\x1e\xda\x6e\x83\xb5\x6b\xd6\xd5\x2d\x83\xb5\x85\x20\x40\xfc\x36\x58\xfb\x7e\x35\x08\x64\xac\xb6\xbd\xb2\x79\x20\x2f\xba\xf0\xba\x41\x3d\xb4\x5d\x1b\x8c\xd9\x43\xdb\xfd\xb2\x44\x2e\xec\x4e\xf7\xeb\x12\x79\x4d\x3e\x7f\x34\x48\x87\x24\xfd\x7c\xa8\x34\x6c\x07\xae\x1b\x17\xb9\xe1\xef\xd7\x4d\x0b\x24\x29\xea\xef\x17\xd7\x0d\xa1\x91\x9a\xfa\x7e\xd3\x3a\x59\x21\x17\xd6\xa1\xfb\x75\x85\xbc\x46\x09\x32\xf3\x9e\x1d\x6f\xc2\xb7\x57\x31\xba\xa0\x68\x01\xf2\xaa\xfe\xda\x94\x64\xaf\x0e\x8b\x59\x29\x72\x04\xaf\x92\xfb\x75\x74\x0d\xe9\xbe\xb6\x25\xe0\xbb\x27\x19\x61\xd1\x12\x5a\x91\xb6\x33\x6e\x0d\xd2\x21\xe9\xa0\xd8\x5a\xf8\xdd\xd3\x8d\x90\xd7\xe9\x97\x55\x92\x0d\x59\x73\xda\x3d\x8f\x08\x49\xb8\x62\xdf\xaa\x95\x56\x7f\xad\x52\xac\xfa\x6b\x04\xca\xb6\x4a\xdb\xaa\xbf\xc6\xa5\xfe\x45\x34\x4a\xdf\x30\xab\x09\xc1\xf5\x5e\xdf\xb8\xd4\x17\xf2\x5a\x9b\xad\x73\xaa\xf9\x20\xc2\x8e\x72\xb6\x11\xd6\x8f\xd1\x2b\x0e\x37\x42\x5e\xa7\xbf\x3f\x24\x0d\x8b\xf9\xe9\x94\xc6\x95\x42\xb5\x07\x8f\x24\x3b\x5a\xe9\x7c\xb5\xa3\xb8\xf9\x5f\x8d\x5f\xbb\xec\x28\x2c\x8f\x04\xa5\xdd\x93\x92\x10\xcd\xae\x5f\x0e\x2e\x11\xb6\xd5\x81\xbc\x1c\x0d\x62\x01\x2e\x7b\x7e\x39\x1a\x97\x6b\xe1\x62\x0a\x2e\x5b\x8b\x85\x8e\x27\x2a\xfa\x76\xd9\xd8\x66\x07\x2e\xfa\xd9\x3e\x1a\x91\x46\x45\x92\x1d\xf8\x36\x42\xf0\x69\xd8\xda\x74\xbc\x83\x8e\xa6\xe3\x8d\xf9\x89\x07\x11\xfa\x96\x8e\x37\xb7\x18\x17\x0e\x7a\x7d\x4b\x07\x9c\x5b\x8c\x70\xd4\xd2\x01\x77\xb5\xa1\x42\xf4\xed\x76\x65\xa1\xf8\xb3\x88\x8c\xe7\xee\x06\x6a\x5f\x65\x6d\xa1\x6e\xa0\xb6\x10\x28\x37\xdd\x40\x6d\xa1\x5c\x64\x55\xee\x06\x6a\x0b\x41\x3e\xe6\x6e\xa0\xb6\xb0\x8a\x35\x68\xaf\x34\xbc\x35\x97\xbe\xdd\x8b\xeb\x0f\x08\x0e\xab\xdd\x70\x6e\x61\x7d\x69\xb1\x5d\x1a\x96\x1b\xe6\x98\xd8\xee\x5f\xba\xf1\xc3\x17\xef\x5f\x75\xe3\x87\xbb\x31\xba\x17\xa1\x27\xdd\x18\x5d\x21\xb9\xe3\xeb\xc6\xe8\xf6\xf2\x8d\x47\xd2\x05\xc7\xe3\x7b\xc5\x6a\x31\xb2\x6e\xec\xa3\x50\x2e\xd2\x49\xf4\xdd\x0d\x09\xe4\x59\x25\xd1\xb6\x1d\xb3\xee\x45\xfe\xb5\xbe\x63\xd6\x15\x92\x53\x60\xdf\x11\xa6\x7d\x27\xcf\xe5\xb5\x9f\x3f\xcf\x76\xda\x77\x17\x10\x10\xe8\x30\x7d\xe7\xbe\xaf\xfb\x14\xd6\x45\x12\xd9\xee\x53\x58\x42\x22\xa7\xba\x4f\x61\x75\xc3\x36\xaf\xdd\x06\x38\x38\x40\x9e\x95\x66\x86\xbd\xc1\x6d\xee\xc2\x5e\xd5\x77\xdc\x55\x84\xe4\xf6\xb7\xef\xdc\xc6\xf5\x1d\xed\xfb\x22\x9f\x54\xdf\xf3\xa3\x99\x41\x97\x2f\xd1\xbe\xfb\xee\xb0\xe2\x1e\xd5\x3d\x4e\xf6\xfd\x4b\x7a\xbb\x48\x46\x50\x76\xde\x4a\x2a\xd7\x9e\x27\xb4\x43\x1a\xb7\x54\xac\xe3\x43\x9e\x66\x68\xe4\x45\xb8\x54\x37\x34\x52\x48\x64\x68\x37\x34\xb2\x1b\xf3\x78\xe1\x32\xd5\x8d\x79\xec\x3c\xb6\x53\x2e\xdc\x5a\x3a\x4f\xee\x7c\x90\x27\x3b\xdb\x87\x77\xba\xa1\x91\x17\x6c\xbe\x1b\x1a\x29\x24\xa9\x4d\xbb\xa1\x91\xc2\x2a\x46\xad\x88\x16\x21\xae\xa4\x5b\x88\x96\x7e\xd8\x7b\x7c\x58\xba\x67\xe0\xee\x83\x30\xc4\x84\x74\xc3\xbb\xfa\x29\xc3\xc5\xa7\xbf\x1b\x44\x25\x44\x5d\x7a\x56\x37\x86\xaa\x1b\x30\x75\xe1\x85\xd3\x0d\x98\x12\x12\x6b\x5d\x37\x60\xaa\x13\xf6\xb4\x8a\x05\xb4\x47\x1a\x3b\x7b\xc9\xda\x6e\xd8\x53\xff\xc2\x9e\x90\x2c\x86\x3d\x09\xe5\xc2\x23\xb5\x9f\xa8\x85\x42\x60\x21\xec\xa7\x3c\x92\x68\xa3\x55\x8c\x4a\x5d\x5c\x40\x10\x2f\xdf\x8d\x36\xea\x67\xb3\x1d\x07\xbf\x26\x5f\x03\x92\x17\xa2\xba\xf1\x41\x9d\xc8\x9f\x72\x11\x11\xdd\x0d\xfd\x11\xf2\xac\x92\x1c\x0f\x97\xe5\xd7\x53\x27\x0b\x48\x5e\xaf\xea\xa7\xcb\x92\x87\x64\x56\x31\xda\x9b\xfe\x5a\xfa\x6b\x0c\x65\xfa\x6b\x4e\x0c\xae\x3f\x5d\x53\x44\xff\x22\x62\x96\x0a\xd8\x0d\x88\x11\xca\xc5\x53\x60\xbd\xba\xdb\x81\x16\xbb\xc5\x76\x49\xb7\xc5\x76\x68\x5d\x1a\x5e\xcc\x4b\x57\xea\x55\x2e\xc9\x4b\x20\xe5\x22\x97\x5d\xaf\x5c\x4d\x09\x41\x5e\xb2\x5e\x95\xa1\x15\xd3\xdf\xc5\x9d\x62\xaf\x8a\x47\x20\x4f\x64\x7e\x55\x3a\x02\x41\x26\xed\x5e\xeb\x57\x81\xf2\xc6\x1f\x63\xa1\xd6\x6f\x4a\xd9\x58\xd5\x29\x05\x12\x97\xf6\x5e\x9d\x52\x43\x7a\x2e\xde\x66\xe9\x86\xf4\xf4\xaa\x76\x53\xe1\xd6\x35\xad\x21\x09\xc2\x44\x72\x13\xcb\xf3\x41\xe2\xc5\xd8\x8d\xe8\xe9\xd5\xd1\xc5\xb9\xa5\x6b\xd6\xe9\xf5\xf3\x6c\x5e\xcd\x35\x34\xa4\x5f\x32\xf5\xca\x24\x5c\x32\x75\x20\x39\xc0\xf7\x4b\xa6\xce\xbb\x1b\xe5\x22\x9d\x4c\xf7\xe1\x0d\x21\x79\xd5\xa5\x1b\x54\xd2\x2f\x9c\x92\xae\xda\xfc\xb5\x94\x86\xc3\xc4\xe6\x97\xb7\x24\xe6\x0a\x9f\xe8\x7e\x39\x94\x40\x9e\x4b\xe7\xee\x97\x43\x09\x34\x59\xd9\xe5\x50\x1a\x7b\x72\x91\xaf\xa6\x1b\x7b\xd2\x7d\x77\xe3\x22\x8f\x69\xd7\x5c\xd5\xaf\xef\x8e\x75\x7d\x6a\x38\x4a\xe7\xf9\x84\x72\xa9\x8c\x35\x85\x21\x10\xf8\xbb\x74\x9f\x52\xe8\x3c\x9f\x50\xae\x0b\xe6\xd3\x94\x7c\x40\x0b\x36\x73\x73\x8c\x9a\x3d\xbd\xae\x0a\x2d\xa5\xc1\xa1\x59\x20\x3e\xa5\xd0\x1b\xaa\xf9\x75\xb1\x2a\x9b\x8a\x0b\x90\x1c\x3c\x7b\x53\x71\x01\x42\x9d\xd0\x97\x0e\x84\x68\xfe\x98\xc2\xab\x61\xe1\xb9\xf0\x0c\xeb\xad\x7d\xb4\x25\xd0\x2a\xac\xa1\x61\xe1\x11\x62\x63\xc9\xf0\x38\xc2\x02\x86\x4d\xbe\x68\x54\x8c\x10\xd7\x46\x3f\x15\x3b\x4d\x35\xbf\x39\x6c\x61\x47\x79\xd5\xe0\x1b\x22\x39\x43\x73\xc0\x1b\x3c\x50\xdb\x5f\x37\xcc\x04\x33\x4a\xd7\xd4\xd7\x43\x79\x42\x0a\xc7\x1e\xca\x13\x20\xae\xcd\x62\xa7\x24\x98\x2c\x9d\x32\x16\x45\x58\x5f\x5a\xec\x92\x46\xf2\x65\xb4\x0a\x13\xa6\xf7\x50\xe3\x69\xc7\xcf\x83\xb7\x7b\xa8\x10\x01\x49\x3a\x84\x1e\xae\x81\x70\xc2\xf1\x1f\xeb\xe1\x84\x03\xc1\xcb\x05\x3d\x9c\xf0\x90\x23\x90\x6e\xac\x87\xb3\x0b\x34\xb2\xb3\xf4\x70\x19\x03\x71\xa2\x47\x86\xcb\x38\xd4\x97\x09\xa6\xe8\xe1\x3a\x8e\x4f\x5f\x96\xf4\xb5\x83\xb5\xb8\x59\xe7\x2b\xe9\xf5\x4b\x7e\x4d\xf9\x00\xc4\x59\x68\x86\xbc\x24\x5c\x17\x1e\x0c\xc2\x75\x01\x04\x46\xc9\x1e\xae\x0b\x43\x66\x2e\x5c\xdb\xba\xb6\xd7\x1e\xdf\x8c\x07\x35\x38\xe3\x40\x14\xa7\xcd\x19\x8f\x6f\xc6\x83\xd1\x77\xc6\x0d\x93\xc0\x04\xd4\x35\xc9\x76\xd3\x99\x5f\x1c\x4e\xbb\xe9\xcc\x85\xe6\xe8\x9a\xce\xbc\xa7\xfc\x30\xa8\x21\xaf\x8f\xb6\xf8\x21\x06\xde\x9e\xf2\x43\x82\x13\xca\x45\x56\x9b\x6e\x74\x82\x10\xbc\x46\xd1\x8d\x4e\xe8\x1a\x73\x2f\xfc\x4b\xba\xc6\xdc\x9e\xf8\x04\x5e\x58\xd9\x7b\xca\x23\x81\x50\x8b\x36\xef\x77\x27\xd7\x77\xb9\xb0\x80\xf5\xbc\xfd\x94\xf3\x75\xda\x05\x7b\xaa\xd3\x35\x59\x08\xba\x46\xdf\x4e\x5a\xe7\x72\x71\x61\xd1\xcd\xeb\x2c\x04\x61\xab\xfd\x76\xb9\xdf\x9e\x09\x89\xf8\xea\xb7\xeb\x1d\x48\xf7\xd8\xed\x7a\xbf\x15\x4a\x1e\x52\x6e\x59\x29\x90\x17\x1b\x5b\x6f\xed\x6e\xe2\xe8\x8b\x1c\x25\xdd\xc4\xd1\x42\x9c\xb0\x21\x13\x47\xf7\xdb\x55\x43\x8e\x92\x7e\xbb\x6a\x80\x24\x7e\xac\xdf\x8e\xf8\x7d\xa5\xc5\x68\xef\xe5\xa7\x0b\x12\x83\x77\xbf\x2f\x46\xfc\x56\xb1\x25\x6b\x58\xd7\xd4\x2c\xc4\x5e\x25\xd9\x05\x67\x01\xa7\xa4\xae\x71\xb8\xdf\xe1\xa7\x97\x34\x3f\x0d\x7b\x2f\xc9\x4f\xc3\xde\x33\xa9\x77\xd8\x7b\xfd\x3c\x99\x3f\xdc\xb9\x3f\x58\xc5\x0a\xb4\x90\x16\xfc\x1a\x5d\x50\x1f\xc1\x83\x7b\x15\xa3\xab\x6a\x8a\x40\xe2\xc9\xda\x6f\x15\x45\xbd\xa9\xaf\x64\xd5\x68\x6b\x16\xe2\x64\x0d\x6a\x6a\x16\x82\xc8\x97\xae\xa9\x59\x28\x17\x17\x0f\x5d\x53\x73\xd7\x7b\x98\x00\xc3\xae\xad\x59\x08\x1c\x48\xba\xb6\xe6\x6e\x4e\xeb\x8b\x50\xbc\xae\xdd\x57\x68\xa4\xbc\xeb\xda\x7d\x7b\x47\xc5\x6c\x38\x25\xf5\xae\x8a\x09\xa4\x1c\xb7\x3b\xf3\x1d\x21\xda\xb0\xac\xf4\x2e\xf7\x01\xb2\xb1\x2a\xbb\xdc\xa7\x9b\x43\xb8\x4a\x9a\x92\x5e\xbf\x5c\xe3\xd1\x5d\x20\x40\x92\x1d\xa9\x77\x17\x48\x27\x12\xa0\x61\x66\xec\x5d\x41\x05\x64\xb3\x69\x0a\x2a\x20\x79\x85\xa1\x77\x05\x15\xb0\xbe\x3c\xa1\xd9\x03\x6c\x96\xfb\xf7\xa5\x3d\x60\x05\x36\x2c\x3c\xbd\xbb\x02\x81\xd8\x1d\x22\x57\x60\xc7\xbd\xb2\x61\xe1\xe9\xdd\xe3\x16\x90\x24\x56\xea\x1d\xff\x83\xae\xd1\xbb\x71\x35\xdb\x35\x7a\x77\x8d\xde\x0d\xef\x99\xae\xd1\xbb\xeb\x73\x8d\xeb\x59\xd7\xea\xdd\x07\x4a\x50\x23\xaf\x45\x1f\xf2\x7b\x20\x35\x08\xe8\x85\x2d\x34\xf7\x95\x5e\xd8\x1d\x8f\xeb\xd2\x88\xe1\xeb\xba\x5c\x0b\x81\x83\x43\xd7\xe5\xba\x0f\x38\x5e\xc3\x01\xb0\x0f\x87\x17\x48\xcc\x93\x7d\xc8\xf1\x80\x55\x8c\x4f\xb5\x7c\x00\xd9\x98\xe5\xa1\x02\x31\x9c\x18\xae\x75\xfa\x70\x62\x80\x48\xd6\xd1\x70\x62\x80\xd2\xb8\x61\xe9\xc3\x99\x01\xb2\xa1\x2a\x0d\x27\x06\x58\xc5\xfc\x34\xa5\x91\x92\xfc\xb4\x6d\xf6\x8a\x63\x72\xe3\x72\xa6\x0f\xcf\xc1\x40\x90\xcf\xa9\x0f\x27\x06\x58\xc5\x6c\xef\x2b\x0d\xf3\x02\x46\x82\xe1\x81\xd1\x0b\x84\x56\xca\xcf\x83\xc0\xba\xf7\x0b\x42\x12\x8e\xd5\xbd\x5f\x10\xd6\xaf\x30\x49\xcd\xf1\x22\x56\x54\x21\x37\x64\x57\x40\x6c\x8e\xaa\xec\x0a\xc8\x1d\xc9\xad\xa7\x7a\x1f\x68\x52\x38\x9c\xf4\xa1\xc4\x04\x42\x8d\x5f\xdf\x75\x21\x2e\x27\xb2\x39\x32\xc8\xa9\x56\x8a\xbf\xef\x84\x9b\x6a\xed\xf0\xcb\x21\x69\x5a\xcc\x61\x70\xb4\x9a\x41\x6c\x90\x5c\xb2\x03\x89\xdc\x8a\x33\xa9\x44\x06\x12\x27\x97\x3e\x94\xc8\x40\x53\x84\x0e\x59\x2b\x90\xee\xf4\x21\x6b\xd5\x85\xbe\xf1\xba\x57\xd7\x85\x5e\x88\x13\xf5\x53\x17\x7a\x61\x15\x93\x66\xdf\xcd\xc5\xe9\x70\xcb\x5a\x81\xd8\x4e\x5b\x6b\xdf\x83\x14\x8d\xae\xf5\xb0\xeb\x18\xfb\xf7\xaf\x94\x5d\x0f\x17\xc5\xee\x8f\xb9\x28\xcc\xcb\x6c\xcb\xd2\xae\x63\xce\x68\x1a\x25\x4c\x03\x2e\xc4\xe5\x97\x9a\x33\x80\xd4\x84\x32\x3c\x12\x01\x49\x4e\xa0\x6e\x08\x80\x10\xa7\xeb\x40\xfe\xee\x95\x4f\x23\x5f\x60\x1f\x72\x03\xdc\xdb\x77\x4d\x5f\xde\x02\x75\xdd\xdb\x1b\x59\x1b\xbb\xee\xed\xfd\x73\x6f\x87\x69\xe8\xde\x2e\x24\xd9\x43\xfa\x54\xb4\x03\xeb\xcb\x03\x5a\x95\xc6\x4a\x43\x2e\xea\x04\xdf\xf1\x78\x5f\xc5\xfc\xb5\x90\x46\xc2\xfd\x6a\x3b\x52\x12\x9b\x10\x29\xeb\xcd\x93\xb0\xbe\xf4\xd7\xba\x34\x4c\x81\x5f\x3b\x86\x24\xf7\xea\xe9\xa7\x53\x9a\x6f\xf6\x59\xe7\x23\xc9\x69\x39\xad\xf4\x95\xf6\x92\xa2\x63\xcd\x9e\xfe\xf3\x7d\x56\xf9\xc8\x29\xad\x49\x63\xb3\x60\xbc\x9b\x8a\x28\xa0\xb4\x62\x4f\x95\x51\x40\xb8\x3f\xa7\xdc\x71\x5e\x2e\x49\xbb\x25\xa7\x02\x52\x2b\xe2\x94\x51\x01\x21\x53\xf2\xd6\xab\x4f\xc5\x05\x69\x9f\xbb\xae\xf7\x42\xe0\x62\xd5\xa7\xe2\x02\x08\xde\x8a\xed\x53\x1b\xf0\xfc\x98\x52\xf3\xd7\xec\xe8\x65\x5e\x70\x7e\x4c\xa6\x34\x3f\xa6\xe4\x2c\xcb\x75\x74\xd0\xd7\x94\xa1\x83\x7e\x9f\xcd\x8e\x22\x2b\xa7\x6c\x01\x88\x8a\xd2\x31\x65\x0b\x40\x90\x65\xa3\xeb\x9f\x2f\x24\x39\xa9\xba\xfe\xf9\x7d\x7e\x5c\x21\x2c\xe6\xbc\xf8\xb2\xb5\xd3\x22\x57\x00\x56\x31\x9a\xe6\x69\x0d\x08\x82\x9e\xbb\xd7\x76\x9d\x3b\xb8\x55\x4c\x9a\x4d\x0b\x9c\x81\x0f\x2a\x75\xd7\x7a\x47\xd7\xf0\xf1\xe9\xde\xd1\x09\x49\x82\xa6\xee\x1d\x5d\xc7\x8b\x7f\x15\x93\x66\xdb\xb8\xbb\xc1\x7d\xa4\x9b\x61\x5d\x58\xc5\xa8\xd4\xad\x0c\xa4\xf6\x4b\x6f\xf7\x84\xb8\x30\xc3\x79\xbb\xd7\x67\xba\xb2\x9c\x3e\xcd\xc2\x40\xd4\x43\x92\x13\x4f\xea\xc6\xa6\xee\x30\x65\x02\x40\x10\x3e\xde\xa7\x4c\xc0\xbb\xc2\x46\xb8\x74\x37\x26\xa0\xe3\x6b\xbd\xf3\xa0\x5d\xf7\xfa\xb0\x3f\x1c\x4b\x1b\xcf\x88\xf4\xc7\xbd\x0c\x04\x2e\x3e\xfd\x71\x2f\xeb\x91\xdd\x70\xc6\xed\x7a\x64\x0b\xb9\xa3\xa8\xea\x91\xdd\xf1\xbe\x5e\xc5\x0e\x68\x29\x4d\x9d\xce\x2f\x6f\x49\xbc\x49\xd2\x2c\x45\x0f\x9e\x6a\x73\x91\xc5\x8f\x27\x23\x20\xbc\x6d\xd1\x0b\x5b\x48\x12\xbd\x77\xbd\xb0\x85\x20\x6f\x49\xf7\xfe\x53\x28\x4d\x8b\xa6\x17\xa0\x42\x12\xd7\xdb\x75\xc2\x16\x1a\x4f\x51\x74\x9d\xb0\x85\xa8\xd8\x86\x4d\xd6\x2e\x34\xae\xe3\xbb\xc9\xda\x85\x58\xca\xca\x4f\xc5\xb5\xa9\xdc\xbb\xce\xdd\x6d\x87\xc1\xeb\xdc\x2d\xc4\xce\x61\x53\xe7\x6e\x21\xb5\x60\xeb\xdc\x2d\x24\x4e\x98\xfd\x51\x3b\x05\x82\x4c\x22\x5d\x77\x6f\x61\xfd\xbe\xc5\x1c\x2b\xae\x77\xb9\xa1\xee\x5e\xef\x0a\xb9\x73\x3e\xd2\xdd\x5b\x08\xb2\x86\xf4\x47\xed\xe9\x51\x07\x22\x7d\x5e\x37\xa3\xbc\x90\x24\xe2\xef\x8f\xdc\x46\x0f\xf0\xb6\xb3\x97\xf4\x00\x17\x12\xbf\xf6\xae\x07\x78\xd7\x03\xbc\xed\x18\x5d\xf5\x00\x17\x42\xe1\xaf\x07\xb8\x90\x44\x6c\x77\xf3\xce\x77\xdc\xb8\xd7\x97\xfc\x9a\x7a\xc9\x63\x1c\x2c\xfc\xec\xf1\x70\x0f\xc4\xe5\x3a\x54\x55\x79\x64\x4a\xf8\x7e\xf5\x47\xa6\x04\x24\x6e\xaa\xfd\x91\x29\xe1\x00\xbe\x8a\xd1\x03\x59\x90\x1e\xe0\xa4\xc9\xef\x7a\x80\x0b\xb1\xb9\x5c\x65\x4a\x40\x7e\xcd\x90\x29\x3d\xe1\x4e\x42\xdc\x3d\xea\x25\x40\xe0\x74\xde\x1f\xf5\x92\xc7\x44\xb1\x29\xc9\xf1\x56\x2f\xd9\xbf\x62\xf6\x33\xc8\x9b\xe8\x42\x57\x2f\xd1\x73\x9c\xdc\x75\x5d\xcf\x71\x61\x7d\x49\x6b\xe5\x70\x40\x34\x3b\x20\x87\xe3\xce\x7d\x15\xa3\xef\xb2\x33\x20\xf7\xb0\x02\xfb\x29\x87\x53\x67\x7a\xe4\x70\x40\xf3\xf6\xf1\x91\xc3\x01\xb1\xb9\xb9\x64\x70\x78\xab\xaf\x2f\x29\x26\x3b\x03\xe2\x70\x45\x6a\xf6\xe6\x52\x7f\x15\x63\x88\xd2\xce\x27\x09\x21\x30\x95\xe9\xd4\x2e\xac\x62\xf4\x54\x46\xa8\x57\x3b\x29\xff\xba\x5e\xed\x42\x92\x2c\xb0\x3f\xde\x2a\x3e\xea\x4c\xea\x17\x8f\x3a\x13\x10\xdf\x62\x96\x5d\x02\xab\x98\x34\xc7\x43\xa5\x29\xec\x95\xe3\x91\xae\xdc\x6a\xdb\xec\x3c\x79\xa0\x48\x14\xd6\xf5\x41\x10\x4a\x53\xfc\x3f\x72\x5a\xbc\xc9\x77\xdb\xa1\x5f\x82\x90\xaa\x1c\xaf\x47\xe0\x57\xcd\x44\x11\xf8\xaa\x99\x00\xa9\x3d\x5b\x97\x73\x21\x89\x77\xed\xba\x9c\x0b\x49\x16\xc0\xfe\xaa\x98\x00\xb9\x23\x13\x5f\x19\xe8\xfb\xf1\x41\x56\xae\x89\xf1\x85\x74\x6c\x4d\x8c\x2f\x24\xef\x5d\x74\x13\xe3\xf7\xd7\x43\xb1\xdb\xe0\x95\xed\x00\x8d\x07\x7e\xfa\x2b\xdb\x79\x3f\xb6\x63\xd3\x64\x3b\x40\xca\xd6\x5e\xd9\xce\x2b\xdb\x41\xa0\xe8\x91\x21\xa4\x97\x70\x7a\x64\xf4\xd7\x73\xf2\x5f\xbf\x0c\x69\x3c\xa4\x7a\xd2\x34\x39\xd1\xfb\xb1\x1d\x0c\xf2\xaf\x6c\xe7\x35\x43\x52\xf5\xd7\x1c\xc7\xcb\x1e\x20\xae\xf5\xc0\x17\x1a\xa9\x84\xfa\x2b\x8f\x01\x56\x31\x7a\xa0\x4a\x03\xe4\x57\x81\xe7\x28\x20\x78\xc9\xad\xbf\x9e\xa3\xde\x8f\x3b\x71\xf3\xf7\xca\x9d\x80\xf0\x20\xfe\xca\x9d\x5e\x0f\x52\xdf\xef\xdb\xa9\x8f\x3b\xa5\xed\xb0\x57\x70\x27\xcd\x76\xaf\xdc\xe9\xf5\xe5\x2e\x14\x09\x1d\x54\x84\x6c\x9c\xad\x74\x50\x11\xe2\x9b\x62\xf9\xd5\xab\x16\x45\x6e\xc6\xfe\xca\xb0\x5e\x19\x96\xab\x4f\x86\xa5\x1b\x4b\x23\xb3\x43\xd7\x8d\x45\x08\x2f\x3b\x74\x63\x11\x42\xa3\x81\x6e\x2c\xfd\x95\xed\x1c\x58\xc6\x7c\x9a\x40\x48\x9c\xca\xfa\x2b\xdb\x01\xf2\x1b\x20\xf5\x2a\x1f\x30\x68\x5e\x16\xfb\x80\x81\x90\x5f\x33\xe4\x00\x3e\x60\xd0\x0e\x3b\x2a\x07\x00\x82\xa0\xdd\x6e\x08\x84\x10\xbc\xa2\xd8\x0d\x81\xe8\x3e\x56\xd0\x48\xa7\xd8\xf5\x76\x11\x72\x0d\xc7\x4f\xc5\xb5\x6f\x19\x74\x1d\x5f\x1a\x09\xb1\xba\x6f\x19\x74\xdc\xfa\x77\x9c\xe9\x87\xbe\x30\x42\x70\xdb\x37\x74\x85\x19\xfa\xbd\x34\xd8\xde\xd0\xef\x45\x48\x62\x57\x86\x7e\x2f\x63\xf3\xe8\x42\xc4\xc1\xd8\x50\x81\x84\x38\xc3\x2f\x87\x24\x2f\xb7\xac\x60\x4a\x9a\x18\x4a\x2a\xa4\x47\x12\x7c\x0a\x0f\xad\xa1\x13\x8d\x10\x64\x35\x1e\x3a\xd1\x08\x79\xac\xc3\xfa\xd8\xaa\xad\x25\x27\x3d\x49\x3b\xc6\x86\x86\x25\x24\x09\x3b\x07\x6e\x37\x0b\x9c\xb4\x83\x96\x55\x3b\x60\xf6\xcc\x42\x9f\x60\x23\x43\x87\x99\x46\x86\x8e\xa1\xc3\x8c\x10\x3c\x37\x32\x74\x98\x19\x38\xc7\x94\x76\x38\x6a\xd5\x1e\x60\xed\xc7\x87\x66\xe8\x1c\x23\x24\xdb\x77\xe8\x1c\x23\x24\xab\x6e\x18\x59\x30\x36\x55\x15\xd2\xa4\x8c\x0d\x06\x21\x24\xbb\x6b\x6c\xa8\x2a\x42\x69\x24\x95\x18\xf8\xc5\x7c\x90\xc8\xc4\xa1\x77\x8c\xb0\x8a\xd1\xf9\xcb\xf1\xc6\xaa\x73\x2d\x41\x3c\xb6\xcb\xd6\x6a\x6e\xbb\x24\xd9\x5a\xb9\x0d\x77\xf9\x83\xa0\x85\x0f\x1a\x59\x04\x87\xa1\x0b\xc3\x40\x84\x86\x77\xf9\x30\x10\x41\x88\x76\x5a\xcc\xc1\xc5\x1e\x13\x1f\xc9\xc1\x6d\xee\x88\x4a\xaf\x60\x2d\x42\x5c\x07\xad\x85\xb5\x08\xa5\x1d\x97\x9f\x3a\x1e\xb0\x96\x63\xb3\x4e\xc7\x43\xc5\xe7\xb0\x0b\xcd\xce\xc3\x48\x08\x9d\x1a\xba\x01\x0d\x7d\x7e\x1a\xae\x07\x43\x9f\x9f\xb1\x79\xfc\x20\x4b\xca\xd8\xd2\xa1\xc4\x06\xc1\x7d\xda\xe0\xd1\x8b\x0f\x4a\x3b\x92\xd5\x96\xfe\x5c\xba\x74\x25\x39\x94\xdf\x46\x73\x9a\x6f\x07\x89\x8d\xc6\xb5\xfa\xd0\xe9\x67\xe0\x92\xb3\x8a\xad\x3e\xe8\x93\x23\xb4\x2c\x14\x73\x39\xfb\x9e\x42\x23\xe4\x62\xf8\x9e\x82\xd0\xc8\x6a\x3f\x7c\x4f\x61\xf0\xc4\xc1\x2a\x56\xa1\xbd\xd2\x30\x6d\x33\x59\xc5\xe5\x06\x24\xa9\x27\x87\x2f\x20\x08\xa5\x9d\x3b\x5f\x22\xef\x84\xe4\xde\x7e\xf8\x02\xc2\x28\xb8\x23\xb4\x13\x26\x50\x9c\x53\x20\x9b\xcd\x75\x4e\x79\xaf\xa0\xb4\xaf\xa7\x4e\x20\x10\xcd\x0a\x9c\x3f\x5d\x88\x1a\xae\x12\x43\x17\xa2\x51\xe4\xa3\xb8\x2d\x8c\x92\xd6\x80\x26\x75\xed\x92\xac\xc1\xe1\x25\x3c\x69\xe8\x42\x34\x70\x21\xf2\x35\x97\xa1\x0b\xd1\xd8\xb9\x0c\x6e\xe4\x2b\x18\xbb\x4c\x05\x08\xf2\x9a\x8c\x5d\x9e\xb2\x6b\x69\xe5\x4a\x7e\xec\x08\x6d\x21\xaf\x8b\x62\xd8\x2f\x84\xd2\x70\x14\x19\x7a\x1a\x09\xc9\xfd\xf0\xd0\xd3\x68\xec\xf8\x9d\x35\x9e\xbc\x19\xbb\x0b\x0e\x88\x33\xa8\xa0\xd9\x0e\x7b\xcf\x7b\x31\x43\x1f\xa1\xb1\x73\x95\xd2\x70\x19\x1f\x3b\x32\x49\x08\x1c\xcb\xc7\x1e\xb6\x0d\xcf\x8b\x46\x0a\xd7\xb1\xa3\x82\x0a\xc1\x4b\x8b\x63\x4f\xbf\xd4\xd5\x94\xdd\xb6\xe7\xf7\x65\xa5\x1d\x96\xb2\x57\x89\x33\xfb\x2e\xc9\x4e\x11\x95\xd7\x88\x31\x18\x7b\xda\x2b\x94\x52\x82\x35\x06\x0e\x49\x1f\x04\x29\x84\x86\x6e\x49\xe3\x73\x4b\xb2\x4f\xee\xa1\x5d\x9d\xb4\x5e\xd2\x86\x34\x3c\x37\x2f\xdb\xef\x08\x71\x49\xd7\x2a\x5b\x12\x57\xa6\x0f\x82\xa8\x83\xa1\x43\xd3\xd8\x0d\x6b\x39\xd6\x8f\xe9\xd0\x24\x84\xfc\xee\x50\x58\xe9\xe3\xd4\x88\x61\x18\xfa\x38\x09\x51\x11\x39\xfa\x38\x8d\x43\x93\x2e\x6f\x1d\x8d\x03\x4d\x44\x88\xab\x4a\x1a\x92\x98\xa9\x6b\xe7\x53\x67\xea\x70\xa6\x2e\x76\xc2\xe1\x4c\x01\xe9\xee\x3b\x9c\xa9\x43\xa6\x42\x88\xc8\x38\x1c\x10\x20\x62\xff\x79\x88\xf6\x38\x1c\x2e\x7d\x9b\x1a\xde\x93\x43\xdf\xa6\x61\x7c\x0f\x49\x76\x87\xbe\x4d\xe3\xd4\x48\xc1\xb5\xf7\x38\x31\x52\x08\xc1\x03\x4f\xe3\xc4\x48\x31\xce\x93\x09\x71\x69\x9f\xca\x63\x20\xf1\x46\x1a\x66\xb3\x1e\x7a\x4a\x35\x67\x5c\x4f\x29\x21\xb9\xf6\x1e\x7a\x4a\x0d\x3d\xa5\x1a\xce\x9e\x43\x4f\x29\x21\x48\x96\x38\xf4\x94\x1a\xa6\x96\x6e\x57\xf3\xd7\xba\x34\x4d\x9a\x27\x24\xdb\xe1\xd5\x08\x4f\x38\x8e\x53\xa6\x03\x34\x12\x76\x0e\x13\x44\x8f\x53\xa1\x71\x05\x0d\x51\x68\x9c\x66\x8d\x62\xe9\x99\x5d\x79\x98\x4a\xb9\x71\x0d\x39\x4c\xa5\x2c\x04\x0f\x14\x0c\x53\x29\x0f\x53\x29\x37\xee\x17\x87\xae\x52\x42\x69\x44\xb4\x0d\x73\x29\x0b\xa1\x48\x36\x97\xf2\x38\xf3\x2b\xc6\xc0\xa5\xc5\x12\x37\x92\x2a\xe9\x2b\x06\x2b\x85\xe7\xe8\x29\x25\x84\xf2\x4c\x4f\xa9\x71\xba\xed\xda\x4e\x3b\xdc\x76\x40\x60\x5e\x19\xa7\xdb\xee\xf4\x2c\xd8\xd8\x03\xa7\xfb\x0e\x08\x12\x22\x8f\xd3\x65\x76\xba\xef\xda\xe1\xa7\x0e\x6f\x3a\xcd\x56\xe0\x34\xbb\xb6\x08\xde\x18\xba\x67\x0d\xdc\xb3\x7c\xe4\x67\xe8\x9e\x35\xaa\xea\x1f\xbe\x1a\xa3\xba\x7d\x80\x20\xcc\x7c\x54\xd5\x3f\xa0\xb4\xc6\x2c\x54\x6c\x67\x42\xe2\xc2\x36\x2a\x2e\x1d\x43\x2f\x2e\x5f\xb7\x19\x7a\x71\x09\xd1\x96\x52\x3d\xf4\xe2\x12\x82\xb7\xce\x46\x75\x55\x56\xef\xf0\x70\x98\x19\x55\xcd\xae\xea\x9d\x8a\x16\x57\xd5\xec\xaa\x92\xb0\xb1\x63\xaa\x92\x10\x88\xca\xf4\x55\x25\x61\x75\xb9\xe1\xa4\x33\xaa\xcb\x0d\x88\x06\x1f\xaa\x2e\x37\x20\x64\xf2\x55\xf1\x00\x04\x8f\x34\x8d\xaa\x78\x00\x82\x47\x6b\x46\x55\x3a\xd4\x6f\x65\xc1\xe8\xf4\xf5\x1a\x55\xe6\xdd\xd0\x47\xaa\x8b\x01\x68\x98\x36\x46\x75\x31\xe8\x12\xd6\x48\x3d\x34\x74\x09\x13\xb2\x15\xbf\x74\x3c\xb8\xe0\xf6\x4d\xd5\xa1\x4f\x98\x10\x5b\x48\xb2\xef\xce\x32\x2e\x1b\x43\x37\xb1\x81\x9b\xd8\xae\x9e\xa1\x9b\x98\x50\xbc\xa7\x1e\x97\xbc\x14\x48\x37\xc2\xc5\x35\xc9\xb8\x5c\x0c\x98\x3e\xc7\xe5\x62\xb8\xcc\x91\xdf\x24\x55\x49\x97\xc5\xac\xa1\x49\x43\xb5\x43\xdf\xb9\xb8\x13\x19\x97\x93\x80\x9b\xdf\xb8\x9c\x04\x20\x32\xf9\xd2\x49\xb8\x3c\xd0\xba\xaf\xae\x66\x43\x38\xd0\x6e\x76\xa1\xf9\x65\xfb\xbc\x38\xd6\x58\xea\x3a\x36\xae\xaf\xf7\x6d\xf5\x5e\xd7\xb1\x81\xeb\xd8\xc1\x6d\xe1\xd0\x75\x6c\x34\xef\x2c\x70\xe3\x18\xfa\x67\x09\xc1\x85\xf9\xd0\x3f\x6b\x34\xed\x7e\xbc\x63\x3d\xcc\x47\x2c\x04\xde\xd6\xa3\xa9\x25\x37\x8f\xd1\xbc\xbe\x3a\x9a\x8a\x11\x10\xe4\xdc\x1f\x7a\x76\x8d\xa6\x0c\x22\xd1\xff\x68\x32\x24\x20\xc9\xd9\x34\x9a\x32\x48\xd7\xae\x46\x62\x96\xa1\x6b\xd7\xd0\x41\xab\xe1\x2a\x31\x74\xd0\x1a\x38\x68\x1d\xdc\x40\x0f\x1d\xb4\x84\x12\x1b\x27\x9f\x70\x52\xc3\xf7\xca\x61\x5b\xe1\xa4\x9a\xdf\x37\x48\x6b\x32\xcc\xef\x2b\xe4\xc6\x80\x98\xdf\x77\xe0\x33\x55\x7c\x35\x7e\xe8\x34\x25\x04\x79\x2f\x46\xb8\x01\x83\xb1\x34\x78\x69\x84\x63\x09\x44\x85\x69\x87\x63\x19\x5c\xfa\xfb\xc4\xc3\x08\x4f\x21\x40\x7a\x36\x0c\x87\x37\x9a\xc5\xd0\x14\x43\xfd\x09\x08\x6e\xcc\x87\x6e\x4e\x23\x88\x5d\xfa\xc6\x37\xc2\x1a\x30\x2e\x6e\x08\xe0\xc0\xb8\x38\x22\xed\x02\x63\x19\x72\x68\x20\xc9\x34\x32\xc2\x4d\x09\x14\x9f\xc1\x18\xe1\xae\x04\xa2\xe6\xdf\x20\xbb\x43\x8d\x2b\x88\x11\xd0\xc7\x65\x84\x1c\x1c\x48\xee\x21\x46\xc8\xc0\x83\x63\x45\x10\x85\x30\xc2\xbd\x0d\x04\x3e\xf1\x23\xdc\xda\x7a\x68\xc5\xc6\x59\x5a\x0f\xad\x11\x4e\x39\x5b\x4a\x0f\xad\x91\xdf\x5c\x52\x43\x3a\x97\xe9\x5c\xc2\x9e\x74\xda\x12\x92\xb7\x91\x87\x4e\x5b\xc3\x64\xb4\xbe\xff\x3d\x4c\x46\x2b\x34\xc2\xe5\x86\xc9\x68\x85\xe2\xcb\x86\x23\x5d\xf0\x40\xe2\x98\x31\xd2\x63\x21\x39\x69\x8b\xf1\x49\x23\x5d\xf0\xa9\x9c\xae\x92\x42\x12\xcd\xe5\x1d\x8e\xa1\x6f\xd7\x20\xf1\xeb\xa2\xd1\xde\xb0\x56\x0c\xb4\x5c\xa5\x0c\xb2\xc0\x7e\x90\x2e\x64\x73\xc1\x8e\x84\x73\x06\xb7\x41\x23\xe5\x9c\x40\xba\x1a\x75\x14\x1b\xe9\x50\x12\xac\x30\x74\x01\x1b\xb8\x80\xf9\x54\xc9\xd0\x05\x6c\x10\xe3\x5b\xbe\xc5\x6d\x90\xaf\x90\xc1\xa2\x35\xc8\x77\xe8\xdb\xf5\x9d\x32\xf5\xed\x12\x12\x77\xcf\xa1\x6f\xd7\xd0\xb7\x2b\xc8\xc3\x32\xf4\xed\x12\x02\xdf\x92\xa1\x6f\xd7\xb8\xc9\xdd\x17\xfb\x46\x43\x54\x8d\x80\x24\xe8\x79\xf0\xf4\xff\x2f\x03\x77\xaf\x55\x6c\xf5\x54\x7f\x2f\x21\xb8\x07\x1c\xb7\x07\xb9\xdb\x39\xc5\x37\x77\xdc\xce\xe9\xed\x26\xdb\x25\xd9\x05\x18\x6c\xec\xec\x6c\x83\x92\x85\x74\x7b\x1a\x93\x3c\x0c\x40\xd6\x59\x6a\x18\x80\x2c\xe4\xf6\x91\x42\xd2\x6d\xb1\x0a\xad\x4b\x83\xaf\xed\x56\x60\xaf\xb8\x95\xd8\x36\x2b\xb0\x57\x6e\xf6\xfd\x2b\x66\x73\x9b\x3c\x81\x1f\x73\x81\x00\xab\x18\x9f\xaa\xa1\x01\x49\xc0\xf7\xb8\xd5\xd0\xf0\x1d\x2b\xb1\xc3\x00\x74\x1e\x13\x92\x10\xae\x71\x87\x23\x1e\x56\xca\xf6\xd0\x79\x4c\x68\x84\xae\x8c\xdb\x15\x08\xc4\x85\xc0\xb9\x5d\x81\xb7\xdc\x64\x77\x9a\xe5\x26\x40\x10\x99\x36\x6e\xb9\x89\x21\xd4\xbe\x8d\x3c\x0c\xa1\x16\x12\x0b\xe4\x30\x84\x7a\xe8\x76\xa6\x23\xd7\xd0\xed\x6c\xe0\x76\x76\x90\xe4\x61\xe8\x76\x36\x8c\x67\xf6\x39\xa7\x61\x3c\xb3\x90\x5c\x5f\x0c\xe3\x99\x85\x62\xe0\xce\x30\x9e\x59\x08\xde\x30\x1f\xc6\x33\x0b\x25\x30\xf4\x0f\x03\x9a\x85\x54\x3e\x1a\xcf\x3c\x70\x5c\x2b\xbe\x20\x3b\x0c\x55\x16\x32\xbe\x76\x0c\x49\x0e\xe5\x65\x7b\x1f\x69\x1e\xba\xad\x80\xa1\xec\xf5\xab\x94\x4f\xdd\x1e\x40\xca\xf1\x74\x89\x1b\x38\xb6\x15\xdf\x70\x1c\x7a\xb6\x09\xb1\x05\xed\xd0\xd0\x06\x14\x1f\xd1\x1f\xbd\x7e\x35\x10\x76\x81\xe9\x4a\xff\xb7\xa1\x2f\x9a\xe9\x76\x86\xbe\x68\x42\x92\xec\x6a\xe8\x8b\x36\xfa\xb7\x78\x61\x04\xbd\x7d\x34\xae\xa2\xfd\xd2\xc5\xdb\x5d\xbc\x48\xfd\xee\xe2\xd5\x3d\x2d\x34\x4a\xe9\x9e\x36\xba\x62\xe9\x70\x2c\x15\x4b\x40\x34\x27\x4b\xb1\xd4\x5d\x82\xc4\xcf\x8e\xee\x12\x04\x42\x8d\xaf\xbb\x04\xbb\xeb\x8d\xac\xcd\xa3\xbb\xde\xba\xd2\x8b\x93\x78\x77\xbd\x75\xb9\x20\x99\xe2\x47\x97\x0b\x02\xd1\x50\x0c\xbb\x5c\x10\x28\xc1\x83\x00\xa3\x2b\x64\xba\x8f\xa4\x3b\x59\xea\x8f\x7a\xd8\xc5\xe1\xcc\xb8\x2c\xf1\xb0\x3b\x48\x8e\x31\xf4\xb0\x13\x1a\x66\xfc\x31\xd4\x34\x80\x24\x81\xff\x18\x6a\x1a\x83\x73\x6a\x68\x76\x1d\x9e\x53\x81\xdc\x4e\xbf\xbc\x25\x71\xbf\x55\x25\x75\x49\x64\xf2\x84\xb9\x0d\x57\xdb\x50\xd4\x69\x75\x1d\x2e\x2d\x20\x78\xd1\x6f\x0c\x45\x9d\xd9\x50\xe3\x6f\x49\x47\x3e\x4c\x96\x2a\x24\x99\x22\x86\xc9\x52\xc7\xe0\xf6\x28\x0e\xdb\xe4\x92\x02\x52\xd5\x44\x9f\xbf\x81\x33\x5f\x31\xa3\xdd\xd0\x9b\x4f\x48\xdc\x38\x87\xce\x7c\x43\x5f\xbb\x20\xa3\xcc\xd0\xd7\x6e\x7c\xbe\x76\x61\x31\xa6\xc3\xdc\xaa\x41\xd6\xe4\xa1\x7f\x9a\x90\x9b\x9d\xf6\x60\x8b\xff\x59\x09\xd2\x21\x0f\x43\xee\x85\xe0\x7e\x6a\xe8\x8b\x26\xac\x62\xb4\xd7\x05\x3a\xbe\x95\x87\x66\x66\xc8\xbd\xd0\x02\xee\xaa\x2f\xd7\x18\x2a\x44\x27\x67\x67\x43\xee\xc7\x17\x72\xcf\xd1\xc8\x90\x7b\x61\x15\xa3\x06\x8d\x4c\x40\x6c\x08\xaa\xa1\x91\xc9\x84\xae\xbe\xbc\x30\xf4\xe6\x12\x82\xf4\xfb\x43\x6f\xae\xa1\x37\x97\xa9\xfb\x87\xde\x5c\x03\x6f\xae\x03\x37\x9c\xa1\x37\xd7\x30\xe2\xfd\x33\xeb\xe9\x4d\x33\xf4\x58\x89\x93\x75\xa0\xc7\x8a\x90\x17\x1b\x5b\x8f\x95\x81\x2b\x4a\x89\x33\x2b\xb4\x90\x86\xb5\x8b\x01\x31\x3d\xe5\xd0\xef\x24\x2a\x7d\xd0\xef\x64\xe0\x77\x72\x68\x49\xd1\xef\x64\x98\x65\x2e\x2a\xbb\xc7\x2c\x73\x42\x10\x18\x34\xcc\x32\x37\xcc\x0b\x67\xa8\xeb\x30\x2f\x9c\x10\x9a\x94\xcc\x0b\x37\x0c\x5b\x8f\x0a\x03\xf7\x3e\x5e\x28\x51\x51\xfb\x8d\x5b\x17\xe2\x62\xc8\x1f\x05\x9f\x39\xda\x74\x56\x1a\xde\xb4\x0b\x89\x33\xff\xf0\xa6\x7d\xf8\xb8\x7d\x54\xf4\x1b\xaf\x91\x85\xe0\x9a\x6d\x78\x8b\x3c\x1e\xf9\x04\x09\x3a\xc6\xe3\xd4\x3c\xbe\x26\xc4\x59\xdf\x5b\xe4\xf1\x7c\x83\x84\x7e\xe3\x95\xf1\xe0\xca\xf8\x20\x4d\xe1\xf0\xca\x78\x98\x7f\x2c\xc8\xb3\x31\xbc\x0c\x16\xd2\x93\xa1\x97\xc1\xc3\x6b\xde\x4f\xdc\x7a\xcd\x2b\x44\xc0\x73\xbd\xe6\x1d\x5c\xed\x16\x73\xf2\x8c\x57\xb1\xf1\x1a\x0a\x9d\x7e\x99\x92\xba\xc5\x76\x68\x43\x1a\x86\xc8\xf4\xd7\x58\x83\x5e\xc3\xea\x8b\x38\xbc\x86\x15\xf2\x0a\x49\x16\xc3\x29\xd5\x7c\x19\xc3\xcb\x54\xa1\x11\x65\x31\xbc\x4c\x15\x56\x31\xba\xa5\xc5\x1c\x48\x1e\xd6\x19\xde\xaf\x0e\x2e\x53\x57\x31\x3f\xb5\x0b\x8d\x07\xba\x8b\x24\xbb\xd0\x6c\x1b\xab\xc6\x7b\x52\x21\xaf\x90\xf4\xb5\x8d\x55\xa3\xbd\xd0\x4b\x51\xa1\xf8\xe6\xd1\x78\x5d\x35\x40\x34\x24\x89\xf7\xa4\xc3\x1b\xd0\x20\xde\x7a\x78\x03\x2a\x04\xb1\x1d\xc3\x1b\x50\x21\xc9\x1f\x32\xbc\x01\x1d\x04\xea\x97\xb8\x50\xbb\x4d\xef\x26\x24\xcf\x05\x8d\x57\x86\x01\xe4\xc5\x66\xf3\x9e\x74\xbc\xae\x2d\x1c\x5d\x86\x17\x95\x42\xe0\x7c\x37\x8c\xe3\x17\x56\x31\x7a\xaa\x85\x18\xc8\x0b\x89\xe6\x75\xe6\xe0\x3a\xf3\xc0\xaa\x38\xbd\xce\x9c\xdc\x36\x96\xc0\xaa\x38\xbd\x6e\x14\x5a\xae\x65\x3f\xbd\x6e\x9c\xdc\x23\x96\xa0\xb9\xd3\x8b\x44\xa1\xb5\xb5\xd7\xa6\x17\x89\x73\xfb\x56\xe5\x5a\xa9\xd3\x5b\x43\x21\x48\xeb\x3f\xbd\x35\x9c\xdb\xb7\xdc\x32\xa1\x0d\x69\x03\x8b\x67\x85\x64\x3b\x14\x29\xf8\xfc\x4f\xef\x03\x85\xe4\xa9\xe3\xe9\x7d\xe0\xdc\x64\x2b\xd8\x28\xe7\x06\x5b\x11\xa2\x16\xda\x06\x5b\x99\x86\xc6\xfb\x70\xcf\xf4\xf2\x4f\x70\xaf\x4d\xef\xfe\x84\x55\xcc\x5f\xb3\xf7\x3e\x39\x52\xe8\x15\x27\x82\x69\x04\x7d\x10\x59\x39\xbd\x3a\x13\x82\x60\xa8\x69\x04\xbd\x50\x02\x4b\xe3\xf4\x36\x6d\x7a\xff\x15\x98\x15\xa7\xf7\x5f\x93\xfb\xaf\x23\x97\x8c\x9f\xde\x7f\xcd\xe2\x58\x62\x20\x9b\xde\x62\x09\x89\x49\x75\xfa\x2a\xf8\xf4\x55\x70\x34\x97\x9f\x49\xef\xe9\xa3\xe1\x42\xe0\x25\x38\x7d\x34\x7c\xfa\xf4\x77\x60\x79\x9b\x5e\x7c\x09\xad\x5d\xb4\x89\xe3\x92\x10\x78\x2c\x4c\xef\xbd\xa6\xf7\x5e\xd1\x92\x62\xcd\x66\x7a\x97\xb9\x16\xf2\xf4\xde\x6b\x16\xc7\xcb\x31\xf4\x9d\x6d\x21\x79\x50\x75\x16\xc7\xcb\x7b\xaf\xe0\x75\xf4\xe9\xbd\xd7\x2c\x4a\x43\x6c\x65\xb3\xa4\x9f\x7e\xd2\x90\xe6\xa6\x9f\xa6\x39\x35\x12\x12\x93\xe4\x55\x98\xd1\x8d\xd3\xab\xb0\xc9\x55\xd8\xb9\x2d\xce\x3c\xbd\x0a\x13\x92\xdd\x39\x0d\xa6\x9f\xbb\x87\x08\x97\xe3\xce\x21\x42\x08\x9e\x51\x9e\x3b\x87\x88\xb9\xbb\x7b\x48\x59\x32\x77\x77\xcf\x6e\x80\x1d\x4d\xf3\x5e\x6d\xee\xae\x77\x12\x0b\xce\xdd\xf5\x0e\x34\xb4\xdc\xb9\xbb\xde\xf7\xcb\x4a\xd9\x8b\xbb\xc3\x0b\xe4\x75\x49\xb2\xd2\x2f\xed\x43\x40\xaa\x92\x9a\x5f\x52\x81\xeb\x1d\x48\xa2\x38\xe7\xce\x2d\xf9\x34\xd0\x5f\x2f\xcf\x69\x24\xbf\x10\x35\x2c\x66\x73\x2f\x27\x21\xa5\xbd\xd2\x5e\xce\xf5\x74\xbe\x39\x6c\xca\x69\xbc\x9b\xe6\x8e\x9c\x16\x1a\xa9\x7a\x26\x09\x01\x16\x9c\x16\xa3\x6d\x2e\x90\xdd\x2c\xfa\x3b\x63\xe4\x02\xd9\xbf\x99\x67\x1d\x79\xe7\x37\x09\xf8\x2f\x91\xfe\x1c\xec\x55\xd0\xca\x33\x77\xd8\xeb\xdc\xd5\xd1\x48\xac\x3d\xf7\xb0\x0f\xe8\x68\xf9\x15\xb3\x0b\x9e\x0e\x48\xac\x3d\xb9\x27\xfc\xc0\x93\xc0\xf4\xb6\x70\x72\x35\xb8\x8a\xd1\xfb\xb4\xbd\x3a\xac\x6d\x4c\x56\xda\x5e\xdc\x55\xfe\xba\x1c\xd0\xdb\x84\x24\x7c\x6a\x7a\x37\x38\xbd\xbb\xd3\x50\x3f\xbd\xbb\x13\xf2\xf4\xd7\x5c\x95\xdc\xdd\x9d\xc4\x91\x4c\xef\xee\x26\x97\x72\x25\x48\xd3\x3d\xbd\x95\x13\x92\x47\x0a\xe6\xc1\x99\x75\x1e\xb8\xd2\x07\x41\x6c\xf3\xe0\x34\x2a\x04\x6f\x2f\xce\x83\x43\x84\x50\x82\x44\x3a\xf3\xe0\x14\x21\x24\x3a\xeb\x3c\x38\x45\xcc\xc3\x05\xcd\x55\xd1\x3c\x5c\xd0\x40\x12\xef\x3f\x0f\x17\xb4\x4f\x4d\x07\x2f\xf4\x4e\x9f\x9a\x16\x12\xd5\x76\xfa\xd4\xf4\x3c\x64\x61\xa4\xf3\x9e\x87\x2c\xec\x30\x66\x9a\x29\x3d\x64\x61\x87\x4a\x0a\x56\xe3\x79\x54\xbb\xc0\x3d\x59\xf9\xbe\xb4\x0b\xdc\x93\x05\x49\x7e\xe6\x51\x6d\x6f\xf5\xe4\x99\x90\x86\x24\xbb\x50\x6d\x9b\x5d\xa8\x76\xe1\x80\x64\x17\xaa\x0b\x84\xce\x73\x28\x9e\x47\xfb\xda\x41\x4f\x9b\xed\xe0\x15\xd2\x76\xd0\xdc\x66\x3b\x9a\x43\xc9\x36\xe5\x9e\xf4\x83\x6c\x4e\x42\xb3\x69\x2a\x24\x5f\x0d\xcd\xb6\xf9\x96\xe0\x6e\x31\x9b\xe6\xba\xcf\xa0\x57\xae\x7b\x6e\x4b\x17\x8d\x2e\x84\xe3\x16\x86\x37\xd1\x90\x70\xdc\xf4\x17\x65\xeb\x92\x58\xe2\x83\x96\x27\xe3\x11\xf6\x20\x1c\x36\xc7\xc8\x1d\x73\x98\x90\xc9\x8e\x86\x4d\x0b\x87\x2d\x6d\x87\x6d\x23\xdd\xd8\xf5\x55\xe0\xb0\x69\x7b\x24\x82\x6f\x9a\x5f\x42\x88\xdc\xa9\x20\xed\x01\x97\x7f\xde\x52\xcc\x23\x5d\x0d\xe6\xcb\xac\x16\xdb\x25\xed\x16\xa3\x21\xee\x3f\x20\xd2\x31\x4a\x97\xbd\xc7\xa6\x84\x85\x1c\xee\x3f\x20\x2e\x87\xcd\xed\x77\x78\x5a\xc9\xf4\x53\x7b\xcf\x25\x21\x01\xa3\xf3\x48\xe7\xcf\xbb\xf9\xaf\x4e\xa7\x4f\x4d\x9f\x64\xe9\xd3\xbb\x68\x21\x78\x63\x7c\x7a\xd9\x3c\x79\x76\xbc\x24\xaf\x06\x4e\xdf\x1d\x17\x5a\xba\xec\x15\x3b\xc0\x2a\x46\xdb\xdc\xf3\x40\x70\xb8\x9a\x5e\x53\x4f\xae\xa9\xcf\xfd\xf8\xb9\x8b\xda\xf4\x16\x5b\x58\x3f\x7c\x40\x2b\xd2\xcc\x8c\x1a\x90\x76\x49\xa7\xc5\x4e\x68\x55\x1a\x97\x72\x4b\x89\x9e\x27\xa6\x2d\x61\x15\x93\xd6\xa4\x35\x86\xcb\x0a\x42\x52\xb7\x98\x35\x0c\x69\xa4\x78\x40\x78\x79\x27\x3e\x79\xd5\xb9\x78\x21\x32\x79\xdb\xf9\x03\x0f\x99\xd3\x17\x9e\x27\x6f\x37\x17\xef\xa5\xa6\x8f\x37\x0b\x71\x5d\x16\x3b\x25\x55\x8b\xd1\x36\xd9\x04\x10\xf5\xa0\x82\x6a\x73\xe1\x1c\x5a\x35\xa7\x37\xec\x42\x24\x92\xca\x1b\xf6\xc9\x6d\x7a\xd1\xc6\x3d\xbd\x4e\x17\x82\x94\x6f\xd3\x97\x9a\x27\x49\x46\x8a\xe6\xae\x69\x96\x11\xe1\x63\xc2\x5e\xba\x4f\xde\x56\x2e\xda\x6a\xa7\x8f\x2b\x0b\x91\xf0\xef\x53\xf9\xeb\x7b\xcb\x5e\x21\x4c\xdf\x5b\x16\x22\x3f\x92\x63\x74\xb9\x58\x60\x1d\xa7\x92\x15\x08\xee\x37\x27\xef\x31\x7f\x50\x34\x37\x4f\x9f\x65\x16\x22\x3f\x92\x6d\xc3\xd9\x4c\xfb\xed\xf4\x59\x66\x21\x48\x53\x36\xcd\x93\x22\x04\xc9\xe2\xa6\x79\x52\xa6\x4f\x30\x6b\x92\x9f\x3a\x09\x08\x9f\x68\xf1\x09\xe6\x89\x8f\x40\xd1\xbc\x32\x75\x12\x10\x3e\x75\xe1\x94\xd1\x99\x75\x45\xfb\xed\x34\xeb\x8a\xd0\xc2\x5f\x93\xd1\xe1\x36\x50\x34\x81\x4d\xfd\x06\x84\x4f\x18\x98\x88\x45\xf0\x74\x33\x4d\xc4\x22\x04\x3e\x1e\xf3\x94\x43\xfa\x52\xb3\xa6\xbe\xe9\x4b\xcd\x42\x54\x37\x8c\xfc\x90\x74\x2d\x25\xc9\x2b\x36\xcd\xd7\x22\xc4\x09\xef\x3b\x65\x91\xc0\x2a\xe6\xa7\xf6\x2a\xd0\xd9\x60\xcb\xa7\x2c\x12\xf8\x24\xdc\x29\x8b\x3c\x55\x3d\xd2\xdf\x77\x92\xe5\x90\x76\x53\x0e\xa9\x7b\x44\xf2\x7c\xc2\xd4\x3d\x42\x88\x74\x6c\xe5\x90\x40\x70\xb5\x31\x75\x8f\x10\x9a\x62\x50\xf7\x08\x21\x78\x44\x69\x9e\xaa\x2c\x40\xf1\x95\xfe\x79\xca\x33\x81\x48\x27\x45\x9e\xa9\x2b\x44\xca\xe6\x74\x85\x10\x3e\xe1\xae\x2b\xc4\x3c\xd3\xdd\x8d\x56\x7b\xca\xe6\x80\x4f\x55\x38\xe5\x72\x7a\x4c\xf8\x68\xf7\xd4\x63\x62\xe2\x31\x71\xaa\x62\xe9\x31\x31\x49\x58\xb3\x8a\x49\x3b\xa4\xc1\xf6\x59\x7e\x3a\x51\x08\x11\xe8\xe5\x3a\x51\x08\x41\x72\xb0\xa9\x0f\x85\xe0\x95\xd6\xd4\x87\x62\xd6\xd3\x29\xe6\xe8\x54\x55\x76\xaa\xef\xc1\x31\x51\xba\x55\x4c\xfc\x26\x4a\x92\x4b\x61\x56\x35\x9b\x0a\xcb\x4a\x66\xbd\xca\xb2\x80\x55\x4c\x5a\x91\xa6\x23\x4b\x85\xb4\x4b\x72\xeb\x35\x3a\x25\x1b\x03\x82\xb4\x14\xb3\xaa\xff\xd4\x8f\xb3\x71\x86\x32\xfd\x8e\x10\x78\xd9\x4f\xd3\xef\x4c\xd3\xef\xe4\xc6\x21\xdc\xf4\x3b\x42\xb4\xcb\x4a\xed\xc2\xc7\xd9\xd0\x45\xcc\xbf\x23\xe8\x1d\x31\xcd\xbf\x23\x04\xf1\xb9\xb3\xaa\xff\xe8\x06\x92\xdc\x14\x4c\xdd\x40\x84\xe0\x65\xe6\xa9\x1b\x88\x10\x97\x5f\x7a\x2e\x04\x3e\x35\xcc\xc4\x3d\x42\x54\x34\x00\x7d\x45\x84\xf5\xfb\x16\x73\x38\x70\x16\x91\x23\xea\x2c\x32\xf1\x06\x59\xc5\x18\x5c\x39\x27\x10\x3c\xe2\x3d\xab\x27\x97\x7a\x7d\xfd\x64\xd4\x3c\xbc\x57\x03\x00\x10\x11\xd5\xc3\x4c\xfd\x78\x6e\xf8\xa9\x1d\x85\xe7\x12\x94\x39\xab\x3c\xb7\x7e\xcc\x14\x69\xec\x0b\xe3\x42\x10\x18\x36\x7d\x61\x7c\xd6\xa6\x1c\x85\xb1\x55\x39\x27\xd0\xf2\x6f\xf0\x50\x9b\x55\xc6\x5a\x3f\xc6\x8a\xbe\x51\x65\xac\xf5\xf3\xf8\x64\x54\x65\xac\xf5\x63\xac\x49\x77\x64\xac\x40\x8b\x66\x31\x3b\xfd\x31\x56\x34\x95\x2a\x63\x05\x22\x39\x23\xea\x49\x23\x94\xc4\x97\x6b\xd6\x70\xde\xc2\xe7\x65\x58\x9f\xf2\x5a\xde\x46\x5f\xc5\x98\x11\x39\x2b\x10\xd5\x1d\x20\x67\x05\x56\x31\x3f\xb5\x5b\xe1\x9a\xa5\xb9\x32\x5b\x60\x15\xa3\xa7\x72\x5b\x20\xf0\x8a\x9d\x35\xec\xa9\x0c\xb8\x6c\xd2\x5c\xda\x30\x60\xed\x1f\x55\x06\x5c\x65\xc0\x64\x5e\x9b\x55\x06\x0c\x7c\x0a\x7a\x95\x01\x03\xc5\x24\xc4\xb3\xca\x81\x81\x48\xa7\x5c\x0e\x5c\xbd\x1f\x3f\x18\x0f\x39\xb0\xde\x46\xe6\x86\x9e\x7a\x1b\x09\x41\x88\xca\xd4\xdb\x48\x88\xac\x96\x72\x3c\xd2\x8e\xba\x51\x54\x34\xab\x8a\xa6\x5b\x5d\x45\x13\xd0\xb5\x66\x56\x15\x4d\x60\x7d\x49\x0f\x54\x34\x81\x20\x5d\xc7\xd4\x9b\x69\x56\xd9\x2d\xcf\x47\x4d\xfd\x94\x84\x50\xb5\xf7\x35\x7a\x61\x15\x93\xe6\x2c\xc3\x6e\xf1\x63\x9b\xba\x2e\x09\x41\x12\x92\xa9\xe7\x92\x50\xb2\xa0\x11\xe9\xba\x24\x04\x49\x48\xe6\x25\x53\xbe\x4c\x56\x44\xdf\x75\x66\x9a\x7a\x2e\x25\xd1\xf9\x53\xcf\x25\x21\x78\x67\x69\xea\xb9\x24\xac\x62\x27\xb4\x94\x96\x14\x6b\x90\x6e\x49\xcc\x7b\xf3\xc7\xba\xa4\xe1\x97\x15\xda\x94\xa6\xbb\x87\xc5\x1e\x49\x0e\xd1\xee\xaf\xbd\xd2\x18\x22\x14\xc9\x4b\xe6\x6d\x76\xaf\x24\xa2\x7e\x9a\xdd\x4b\x88\x44\x62\x98\xdd\x4b\x68\xca\x95\x4b\xde\x7d\x7d\xcf\x21\x50\xa7\xbc\xdb\x57\xe4\x93\x98\xdb\x69\xc2\x2f\xe1\x33\x65\xfa\x8a\xbc\xb0\x8a\xf9\xa9\xe3\xa1\x56\x7a\xd9\x0c\x87\x43\x16\x5f\x0e\xdb\xe1\x78\x54\x5f\x9b\x64\xd4\x64\xf1\x97\x2c\x1e\x7f\x92\x69\x5e\x30\xc1\x2b\xc7\x69\x5e\x30\x21\x78\xc4\x6a\x5e\xb2\x78\x20\xea\xd7\x34\x47\x08\x93\x6a\x16\xbf\x94\xc5\x03\x51\xed\xa8\x2c\x1e\x08\xae\xae\xe7\x25\x8b\xc7\xd5\x6c\x7d\x49\x05\x32\xef\xcb\xa4\x5d\xe8\xcb\xd7\xe5\x70\x5c\xce\x3b\x5a\xde\x25\xf3\x06\x82\x27\xef\xe7\x75\xd9\xcf\xcb\x7d\x70\x5a\xa9\x1d\xbd\xdc\x07\x4c\xa8\x2c\xfe\xba\x9c\xe4\xd3\x4f\xed\xc2\xe5\x24\xd3\x03\xf5\x65\x60\x15\xa3\x6d\x2a\xcc\x40\xf0\x9e\xf9\xd4\x25\x4e\xd0\xeb\x73\xea\x12\x27\xac\x2f\xe9\xa9\xfa\x32\xe0\x55\xde\xbc\xe4\xfa\x40\x90\x2a\x67\x5e\xb2\xf5\x4b\x7f\x35\x07\xb7\x39\xef\x72\x7a\x0f\x59\x97\x9c\x1e\xd0\xf2\x3f\x2f\x39\xfd\xd5\x9c\x50\x98\xdd\x25\x5b\x07\x82\xb4\x35\xf3\xd2\x30\xa0\xb7\x5e\x16\xb4\x02\xbd\xf5\xe6\x15\xb2\x2c\x98\xf3\xa5\x72\x0c\x44\x36\x49\xf6\xe0\xe3\xd7\xce\x9f\xfc\xfa\x92\x5f\x23\x4b\x2e\xf9\x35\xe0\xfd\xf6\xbc\x64\xd7\x40\x24\x2c\xeb\x92\x5d\x5f\x1f\x83\xad\x7e\xe9\xca\x92\xc1\xba\xc0\x65\xb0\x57\x3a\x92\x32\x01\x59\x27\x10\xc5\x89\x97\x75\x5e\xe9\xfa\x70\x23\xc8\x27\x2f\x0f\xe4\xc5\x62\xae\x8f\x8f\xb3\xc1\x14\x75\x4b\x9c\xb8\x25\x9e\xbc\x84\x3e\x75\x4b\x9c\x4d\x45\x92\x17\x45\x67\x93\x67\x35\x23\xd9\xd9\xca\x4d\x9e\xd5\x4e\x27\x26\xf6\x9f\x4b\xed\x26\xff\x02\x3e\xab\x4c\x93\x7d\x01\xe1\xc9\xa7\xc9\xbe\xc8\x98\x57\x7c\x5c\x74\x36\x39\x0e\xf0\x59\x87\xcc\x9e\x27\x14\xdf\x67\x9a\xa6\xcf\x13\xe2\x4c\xbf\xb4\xe5\x9c\x83\x35\x18\x35\x99\x50\x33\xff\x66\xf5\xc3\x2a\xc9\xc9\x45\x2b\x69\x32\x21\x20\x0e\xc4\x56\x93\x09\x99\x77\xcf\x27\xfd\xa6\x79\xf7\x84\xcf\xac\x64\xde\xbd\xd9\x3c\xcc\xee\x48\x59\xbd\x38\x85\x20\x03\xc6\x6c\xaa\x64\x40\xb4\xdd\x52\x0e\x87\x2a\x19\x59\x04\x66\x73\xbf\x02\xa1\xa9\xb0\xa9\x92\xe9\x12\x9a\xbb\xd3\xe6\x16\xd6\x25\x14\x2f\x8a\xa9\x4b\xe8\x6c\xea\x5a\x3b\x76\x81\xe6\xae\x03\xc2\x0b\x08\xbd\x44\x67\x73\x8b\xed\x48\x3c\xb3\xfd\x09\x8d\x00\xcc\x69\xb6\xbf\xa9\x4b\x68\xe2\x88\x35\x75\x09\x9d\xcd\xbd\xb3\xdb\x07\xf7\x0e\xd0\x1a\xdb\xa9\xb9\x77\x9a\xa7\x48\x9c\xa2\x66\x73\xa3\x00\xd9\x50\x3b\x9a\x1b\xa5\x61\x55\x4b\x22\xdc\x67\x53\x63\x01\x1a\x29\xe2\x66\x53\x61\x01\xe2\x74\x31\xaa\xb0\x34\xf7\x13\x3e\xd9\xb3\xb9\x9f\x80\xe0\x5d\xc5\xd9\xdc\x4f\xcd\x23\x63\x50\xa7\x0a\x4b\x4b\xc7\x88\x93\x7c\x73\x3f\x01\x41\x2e\xa7\xd9\x3c\xe5\x01\x25\x77\x98\x66\xf3\x98\x07\x44\xa2\x65\x37\x15\x16\x5d\x64\x4d\x71\x34\x75\x91\x9d\xed\xcd\x5f\x7f\x9c\xdc\x95\x4f\x5d\x64\xa7\x29\x06\xcd\xf2\x32\xcd\x21\x28\x04\x71\x5e\xd3\x1c\x82\x33\xb4\xeb\xe0\xed\x30\x75\x74\x15\x9a\xc6\xa4\x70\x3d\xc7\x37\x31\x28\x19\xba\xa6\xce\xc0\x17\xc1\x07\x06\x66\xd8\x55\xa0\xf1\xf0\xed\x0c\x0f\xc7\x40\x90\x20\x7d\xea\x99\x2a\x14\x9f\x81\x9f\xba\xa6\x0a\x4d\x4d\x52\xcf\x54\xa1\xb5\xcb\x52\x55\x12\x6a\x3c\xec\x25\x1c\x36\x3c\x4f\x4b\x1e\x4c\xbc\xae\xa7\x42\x1c\xcd\x1f\xeb\x92\x30\x0b\x32\x07\xa1\xb6\x06\x34\xef\x15\xf4\x4f\x15\xa2\x7e\xad\x70\x84\x34\x14\xb2\xf9\x42\x95\x0e\x88\x40\xd2\x84\x2a\x9d\x5e\xac\xa9\x68\xd7\x8b\x75\xe2\xc5\x7a\x72\x2f\x3c\xf5\x62\x15\x56\x31\x69\x45\x1a\x03\x84\x9a\x97\xaa\x74\x40\xe2\xbc\x32\x53\xf6\x08\xac\x2f\x2d\x76\x4a\xe3\xed\x00\x76\x50\x7a\xd0\x06\xf4\xf7\x9e\xe9\x41\x1b\x68\x5a\x7e\x53\xc5\x2f\x65\xac\x64\x79\x9a\x29\xe7\x04\x0c\x2f\x98\x29\xe7\x04\x82\xf8\xd2\x99\x72\x4e\xa0\xf1\xaa\xc1\x4c\x15\xbf\xd4\xd0\x48\x2c\xe9\x4c\x0d\x8d\x40\xca\xd8\xd2\xc5\x97\xde\x4e\xef\x56\xf9\x48\x42\xd1\xf9\x7a\xfe\x4a\x7a\xf9\x70\xcd\xb9\x2e\xbd\xc2\xfa\x7d\x69\x8e\x19\xe9\x46\xf0\x2b\x9b\x29\x63\x4e\x1f\x7d\xdc\x24\x39\x66\x0b\x12\xbf\xa0\x99\x2e\x64\x20\x48\x5d\x31\x53\xc6\x0c\xc4\xfe\xfd\xbc\x43\x06\x5f\xc6\x95\x74\xa6\x7c\xd9\x47\x7b\xdc\x3b\xa9\x6e\x08\x94\x24\x28\x68\xfa\x90\x8f\x10\xe1\xcc\xa9\x1b\xa6\x0f\x6f\x21\x60\x53\xdd\x30\xd5\x0d\x49\x31\x3d\x7d\xee\x47\x88\xf8\xda\xef\x90\x5d\xee\x13\x38\x42\x7a\x3e\x07\x92\xb7\xc3\x67\x2a\x1e\x80\x38\x51\x99\x52\xf1\x00\xb4\x86\x6e\x98\x6a\x78\xa9\xc4\x38\x9c\x3a\x25\x06\x90\x84\x6a\xce\x54\x62\xe4\xf5\x35\x8d\xe1\x50\x3c\x00\xa9\xe5\x3d\xaf\xaf\x69\x70\x43\xa2\x74\xa7\x4e\xd5\x42\x8b\xbf\x21\xa9\xe9\xd4\xe7\x5a\x28\xbe\x33\x3f\xf5\xb9\x16\x82\x6c\xc8\x53\x9f\x6b\xa1\xf8\xa8\xfc\x4c\x95\x42\x40\x0f\xb2\x99\x2a\x85\xe9\xd3\x42\xee\x2d\x75\x42\x20\xae\x8f\xe4\xd0\x68\x43\x85\x57\xa6\xd2\x29\xd5\x09\xc3\x52\x8e\x8c\x02\x8b\xe8\xdf\xa9\x4f\xb7\xd0\xb4\x19\xa6\x02\x2b\x8d\xd7\xe5\xe6\x22\xbd\x52\x4a\xd5\x44\x5e\x6b\x9d\x66\xfa\x14\x22\x1c\x53\xd5\x44\x20\x8f\xb4\x94\xe3\x87\x3d\xc0\xfb\x72\x5d\xc6\x85\x16\xae\x3a\xcd\x01\xa9\xa0\x23\xba\x78\xa6\x82\x0e\x08\xd5\xa9\x54\xd0\x25\xf7\x42\x49\xec\xef\x4c\x45\x18\x10\x81\xca\x99\x4a\x30\x20\x8f\xf4\x4b\x27\xc5\xfc\x66\x28\xcd\xba\xa4\x0b\x71\xda\x25\xd9\x7a\x6a\xf3\xc4\x42\x9b\xb2\xf5\x54\x80\x91\x7a\x7f\xa6\x02\x0c\xc8\x23\x25\xd9\x32\x4e\xdc\x81\xba\x94\x6a\x92\xe9\xf1\xfa\x70\x09\xcb\xb0\xd3\x98\x42\xe7\x49\x86\x6d\x72\xd4\x3c\x9a\xed\xb0\x4f\x70\xec\xe6\xda\x94\x63\x03\x91\x9b\x75\xda\x27\xaf\x76\x94\x08\xe6\x4b\x15\x82\x77\xf3\xa7\xce\xf2\x13\x67\xf9\x53\x4d\x40\x67\x79\x61\x7d\x29\xad\x48\xc3\xc9\x88\x85\x60\x0a\x55\x21\x89\x8d\x9e\xa6\x50\x9d\xf7\xc7\x64\xd1\x28\x6f\x99\xec\xed\xfb\x49\x9b\x3f\x96\x92\xec\x14\xab\xcf\x57\xb8\x84\xa6\x91\x46\x07\x7d\x21\x5a\x5a\x27\x9d\xf2\x79\xad\x8f\x59\xea\xca\x2e\x34\x4d\x28\xe6\x3c\x9d\x7a\xb7\x27\x81\xd0\x53\xef\x76\x21\x88\x4f\x9a\x7a\xb7\x4f\xf3\xa0\x26\x2f\xe7\x4c\x1d\xd2\x27\x39\x4f\x8b\xb9\xad\xa7\x49\x4f\x85\xe0\x2d\xcb\x69\xce\xd3\xa9\xa7\x79\xaa\x2e\xe9\x69\x2e\x64\xdb\x25\xd9\x5e\x65\x24\xa9\xc3\xa7\x8e\xe0\x13\x47\x70\x9f\x2e\x9f\x3a\x82\x4f\x93\x7c\xe6\x89\x58\xd0\xc9\x59\x08\x1e\xaf\x98\x26\xf9\x9c\xdd\x1d\x4a\x84\xf3\xec\xf6\xa1\x6b\x9f\x43\x86\x75\x77\xa8\xde\xcb\x49\xe8\xf2\xd4\x7b\x79\x76\xcd\x67\xe4\x26\x9f\x5d\xfd\xb1\x9b\xde\x95\x41\xea\xf6\xb4\xab\x2b\xe2\x9b\x3b\xbb\xba\x22\x90\x5a\x00\xbb\xba\x62\xd7\xaa\x54\x11\xa6\xdd\x35\x0e\xa4\xae\x42\xdd\x35\xae\xbf\x71\xe2\x1e\x39\xf5\x37\x9e\xf8\x1b\x9f\x1e\x9d\xf5\x37\x9e\xc3\x4b\x40\xde\x5d\x9e\x43\xa1\x0e\xa4\x5a\xbc\x4f\x5b\x4d\x7d\x84\x93\x10\xe4\xa9\x8f\xb0\x90\x84\xcf\x4f\x7d\x84\x85\x46\xd8\xe3\x1c\x8a\x4e\x20\x49\xf3\x30\xcd\x18\x2a\x94\xc4\xfd\x72\x9a\x32\x54\x88\x16\x92\x4e\x49\x36\x0d\x9e\x3b\x14\x9e\x43\xcf\xa6\x43\x92\x4d\x23\x46\xc4\x2b\x9e\xa1\xf0\x04\x92\x08\x8e\x39\x14\x9e\xb8\x22\xaf\x1f\x3b\xa0\x4d\x69\x64\xbb\x45\x2d\x1c\xda\x42\x86\x77\x7b\xe4\x65\x9f\x26\x1b\x15\x52\x7b\x80\xb9\x46\x27\xee\xc7\x25\xc9\xc5\x3d\xcd\x22\x2a\x34\xde\x69\x9a\x26\x11\x9d\x5f\x12\x51\x74\x28\x93\x88\xce\xa1\x45\x83\x07\x6c\xe7\xd0\xa2\x01\x24\xe9\xbf\xe7\x50\x04\xfa\x20\x58\x92\x6d\x6c\x9a\x17\x53\x88\xd3\xbe\xcb\xd5\x75\x45\x4e\xde\x2f\x9b\xba\x22\xcf\x21\xc3\x56\x3b\x37\x6f\xa5\xd0\x02\xee\x69\xda\xca\xf9\xa5\xad\xe4\x40\x67\xda\x4a\xa1\x25\xcc\xd3\xb4\x95\x42\x94\x2a\xc9\xd6\xba\xfb\x78\xbf\x76\xea\xea\x2c\xc4\xe5\x4c\xb9\xfb\x86\xea\x3a\xc9\xe6\xa7\x79\x2b\x05\x84\xdc\x4f\x25\xf6\x90\xed\x0f\x79\xfc\x85\xf5\x5e\xb7\x67\xe1\x13\x78\xc3\xf5\x3f\x64\xe8\xc4\x97\x4f\xb3\x5f\x0a\x71\xda\x74\x19\xfa\x90\x2d\x5f\xae\x15\xd9\x32\x90\x9a\xd2\x74\x8e\x9e\x38\x47\xd7\x8d\xe5\xa9\x73\xf4\x24\x39\x65\x49\xa2\xd0\xa7\xd9\x29\x85\x24\x03\xc6\x9c\x2a\xba\xe6\x93\xcc\x8b\x19\x37\x9f\xa4\x90\x38\xbc\x4f\xf3\x49\xce\xe9\x06\x20\x77\xd1\x9c\x6e\x00\xe0\x73\x11\x9b\x6e\x80\xe9\x5b\x5d\x68\x55\xd3\xf5\x0f\x24\x2f\x79\xcc\xe9\xfa\x07\x3e\xf9\x6c\xd2\x49\x21\x8f\xcb\x9f\x0f\x49\x61\x95\xfe\x7e\x4a\x43\x9b\xb8\x24\xdd\x92\x9c\x5c\x78\xa6\x2f\xb6\x09\xc1\xbb\x79\xd3\x27\xd9\x84\xe2\x63\x44\x73\xca\x33\xa7\x29\x58\x90\xc6\xbe\xd2\x26\xac\x62\x7c\xea\x6e\x02\xf2\x40\x0c\x4e\x77\xd3\xd4\x06\x81\x63\xed\x9c\x2a\x99\x40\xf0\x00\xd9\x9c\x2a\x99\x40\x1e\x9c\xf3\xcd\x87\x39\x49\x5b\x59\x7c\xdb\x68\x4e\x55\x45\x20\x0f\x67\x4f\x4d\xd1\xb4\x96\x9f\xeb\x9e\x69\x2d\xe7\x97\xd6\x12\x5b\xa0\x69\x2d\x85\x38\xb1\x43\x99\xd5\x72\xf2\x1a\x5c\xf9\xdc\xe3\xa6\xea\xdb\x34\xcf\x9c\x4b\x41\xf9\x06\x7c\xfa\xc4\x54\x36\xcc\xef\x71\x01\x49\x8e\x37\xde\x3f\x47\xf3\xb7\xba\xa4\xaf\x65\x74\xca\x0d\x6c\x0a\xcb\x74\x37\x99\xc2\x52\x68\x3a\xc0\x98\xc2\x52\xc8\xe3\x2b\xe5\x40\x2a\x3f\x2f\x6b\x50\xaa\x4c\xdf\x5e\x3b\xac\xc0\x0e\x60\xe3\x23\x61\xda\xf4\x7d\xba\x69\xa2\xcb\xbc\xec\x81\x1b\x7d\xea\xfd\xe3\x52\x50\xf6\x90\xd4\x72\x15\x63\xf6\xdc\xe8\x40\x1e\xe8\x6f\x86\x08\xcc\xa9\x91\x4f\xaf\x9b\xe9\xe9\x7a\x1a\xf7\x09\xbf\x99\x9e\xae\xe7\xb7\xb9\xc3\x4f\x6d\x48\xea\x99\x44\xdb\xdc\xdc\xd3\x13\x37\x2e\xca\x73\x7a\xe2\x9e\x66\xc9\x28\x7e\x69\x73\xd9\xef\xcd\x7d\xe0\x7e\x9f\x3a\xe2\xe8\x4e\x33\xd5\xd6\x80\xf4\xa6\x69\xaa\xad\xcd\x8f\x2d\xb8\xd8\x64\x0b\x53\x47\x1c\x64\xa0\xa1\x0a\x93\x50\x85\x5a\xd0\x70\x0d\x55\x10\xa2\x31\xde\x8f\xca\x1a\xf0\xe9\x8c\x8f\xca\xda\xe3\x59\x5a\xaf\x68\xb3\x66\x0a\xa1\x83\xb2\x49\x33\xe7\xa3\x02\xe7\x01\xfe\x51\x81\x03\x42\x4f\x30\x93\x66\x0a\xe1\xa5\x92\x49\x33\xe7\xa3\x74\x26\xcb\xce\x7c\x94\xce\x8f\x27\x5b\x04\xd9\xa3\x74\x7e\xbc\x49\x20\x6b\xfd\x34\xfb\xa4\x10\x1b\xc2\xe2\xf1\xb4\xf8\x78\x5a\xd4\x7d\xf8\xf1\xb4\xf8\x18\xc9\x13\xfe\xda\x94\xc4\x3e\x73\x38\xe4\x14\x8f\x97\xc5\xfa\x4e\x9b\xa4\x52\x48\xb2\x34\x4c\x93\x54\xce\x47\x19\x48\xe0\xf1\x7c\x94\x81\x80\x89\x1b\xa6\x09\x23\xa7\xd9\x21\x3f\xc9\x6e\x76\x48\xa1\x05\xba\x8f\xd9\x21\x85\xa6\xd5\xcd\xec\x90\x42\x6b\xf0\x13\x23\x43\x84\x90\x25\x1a\x19\x32\x8d\x0c\xf9\xe4\xbf\x91\x21\xd3\x6c\x85\xc9\x9b\x98\xd3\x6c\x85\x42\xf2\xba\xc2\x34\x5b\xe1\x34\xfd\x5f\xba\xd8\x0c\xdc\x98\x5f\xfa\x3f\xee\x48\x4d\xff\x27\x94\xd4\xf7\xdd\x58\x8e\x49\x2c\x47\x25\x9e\x70\x1a\xcb\x21\x44\xc0\x50\x4c\xff\x27\xac\x2f\x77\x68\xbb\x34\x92\x34\x20\x0a\x5f\x75\x7e\xb3\x04\xa6\x0b\xd0\x2c\x81\x42\x90\xc9\x7a\x1a\x18\x32\xdf\x6f\x46\xd9\xf1\xc6\x6d\x08\x41\xa4\xc5\x34\x6e\x43\x28\x49\x02\x89\xf9\xd6\xef\x53\xbd\x54\xfe\x06\xb7\xf1\xd7\x09\x07\x9a\xee\xda\xa6\x07\x14\xa2\xb2\x0d\x4d\x0f\x38\x7d\x8a\x31\xf5\x07\x37\xf1\x9f\x10\x17\x5a\xb7\x89\xff\x84\x92\xda\xbe\x5e\x99\xfe\xab\xa2\xd5\xfc\xb5\x26\xa9\x59\x8c\xe1\x52\xd3\x32\x3f\x60\x6b\x56\x90\x92\x86\xc5\x18\x07\xc5\x05\x10\x27\x27\xd2\x57\x71\xf1\x7a\xdb\xa3\x6e\x64\x14\x8a\xd0\x82\x5d\x67\x10\xca\x7c\x3d\xe8\xf0\x92\xe8\x34\xa5\x9f\x10\x9e\x6f\x0d\x42\x11\xe2\xc2\xf4\x6a\x10\x8a\xb0\xbe\xac\xd0\x6e\x69\x78\x6d\x14\xbf\xec\x92\xba\xc5\x18\x4a\x95\xc0\x2f\xa7\xdf\x61\x9d\xf6\xc0\xbb\xfe\x70\x61\xb4\xaf\x0b\xe4\x4b\xb7\x07\x2e\x6d\x20\x88\x30\x9e\x46\xaf\xcc\x57\x5b\x37\xa9\x2f\xa6\x39\xfd\x84\xdc\x1d\x70\xcf\x2a\xaf\x62\x45\xb5\xfe\x55\xac\xbc\x8a\x95\x2a\xc9\x79\x21\xf0\x25\xe3\xab\xc1\x9e\x12\xf8\x42\x32\xca\x69\xe0\xcb\xfc\x52\xff\x39\x07\x4a\x1a\x73\xea\xa5\xa6\x08\x83\x50\x26\x41\x28\x15\x83\xcf\x63\x10\xca\xb3\x79\x8d\xc2\xd2\x7a\xcc\x5c\x27\x04\x3a\xeb\x63\xc0\xc9\xe3\xb3\x8b\x89\x43\xd0\x63\x8c\x88\x10\x30\x89\xc7\xc4\x72\x8f\xf9\xe1\x32\xd6\xc4\x3c\xe6\x87\x13\x74\x6e\x7d\xcc\x0f\xf7\x18\x0f\x62\x56\xbd\xc7\x78\x90\xe7\x8b\x07\x59\xba\xd4\x63\x3c\xc8\xb3\x79\x31\x81\x25\xee\x31\x57\x9b\x10\xe1\xaf\xa1\x3b\x08\xc5\x98\x87\xc7\x5c\x6d\x42\xf0\xda\xe8\x63\xae\x36\xa1\xf8\x4e\xdc\x63\xae\x36\x21\x9a\xed\x68\xb6\x4d\x0e\xc6\x5b\xe7\x8f\x61\x23\xcf\xa6\xfa\x9f\x1b\xb5\x86\x35\xa8\xfe\x5f\x16\xb3\x06\xed\x35\xb9\x25\x34\xfb\xa0\xbd\xe6\x90\xe4\x20\x29\xf0\x49\x71\xf2\x6c\x08\x7c\xc1\x38\xef\x87\x07\xef\x3f\x68\xb0\xc8\xc7\x67\xef\x85\xf5\x25\xed\x85\x93\x0a\xba\x18\x3f\xbc\x81\xff\xc1\x2a\x46\x4f\x51\x15\x84\xc0\x33\xee\xf1\x29\xfc\xc7\xe7\x24\x13\xdf\xfd\xc7\xe7\x24\x85\x48\x47\x3c\xed\x95\x0b\x89\x47\x69\x1e\x63\x66\x1e\x62\x66\x2a\x6f\x13\x3c\xc6\xcc\x3c\x45\xee\x8a\xf3\xf0\x53\xe0\xae\x82\x0e\xcb\x4f\x81\xbb\x3e\x45\x1e\x85\x57\xf0\x53\xe0\x51\x42\x60\xb2\x79\x0a\x3c\xea\x29\x32\x1f\xfc\x1a\x9e\x02\xf3\x11\x1a\xf1\x29\x4f\x71\x6d\x15\xb9\x0a\xfe\x15\x0f\xe1\x30\x1f\x04\xaf\x4c\x3c\x06\xc5\x08\x51\x36\xea\x74\xd1\x18\xed\x92\x9c\xdb\x1f\xa3\x5d\x9e\xa2\x4d\x81\xc8\x85\xa7\x84\xbf\x86\x4b\xce\x61\x4f\xc3\x5f\xc3\x7a\xc2\x93\x9b\x4f\x09\x7f\xed\x5b\x20\x6c\x99\xe2\x02\x29\xde\x5c\x2d\xcd\xf7\x29\x2e\x90\xe2\x6e\x76\x16\x4a\xd8\x05\xa2\xfe\x89\x76\x7b\x0a\xbb\xf9\x29\xba\xdf\xb8\x65\x0a\x5a\xa2\x10\xd5\x2e\xb8\xb4\x8a\x87\x46\x1c\xbd\x9f\xe2\xda\x2a\x69\x12\x3d\x86\xd2\x45\x03\xe4\x69\x73\x5d\x33\xc5\xcb\x1b\x54\xdf\xa7\xb8\x68\x8a\x6f\xe4\x39\xe0\xae\x99\x62\xa6\xb6\xa0\x4e\xd7\x0c\x90\x27\x6c\xc0\xa4\x77\x4f\xd1\x76\x82\x87\xf8\xe3\x5b\x9a\x42\xc4\x61\x31\xfb\x99\x5f\x6b\x59\x1f\xf9\xb5\x16\x6b\xb3\x73\x80\xc4\x17\xf2\x64\x5b\x11\x43\xf4\xc1\xbe\xe1\x7a\xfd\x18\x4a\xf4\x10\x4a\x54\x79\x8d\xfb\x31\x94\x48\x58\xc5\x4e\x68\x45\x9a\x7d\xbf\x20\xed\x92\x76\x8b\x55\x68\x87\x34\x2c\x6e\x6c\x04\xc3\x8b\x1e\xc2\x87\x56\x31\x3f\x7d\xa5\xd9\xb6\x9f\x1b\xc7\x9f\x5d\x4e\x0a\xec\xdb\xe6\x2f\xcb\x4a\x81\xe4\xd1\xa4\x67\xaf\xb6\xa9\xda\xa6\x25\x33\x9e\xbd\xda\x26\x2e\x3e\x48\xb6\xfa\xec\xd5\x36\x71\xf1\x81\xbd\xf9\xd9\x39\xbb\x3e\xfb\x52\x3f\xd7\x97\x09\xed\x96\x46\x6c\x49\xf8\x65\x97\xc4\xfb\x76\x8d\xce\xa0\xab\x3c\x04\x3e\xed\x1b\xcf\xe4\x3c\xbb\xec\x7b\xf7\x91\xc8\x66\x33\xec\xf3\x52\x2d\x56\x31\x3e\xbd\x6c\xae\x29\x18\x1b\x83\x7f\xd9\x5a\x32\x23\x71\xb3\xf5\x18\x2b\xf5\x90\x97\x70\x7d\x49\xd3\xd0\x29\x84\x96\x9b\x5f\x86\x24\x2c\xf2\x4b\xdb\x7a\x8c\x95\x12\xf6\x0d\x67\xc5\x67\x57\x64\x00\xc9\x05\xc9\xb3\x5f\x76\xea\xb2\x53\x74\x40\x21\x42\x44\xd5\xfa\xd2\x5f\xb3\x53\x5e\x69\x6c\xfe\xd8\xd7\x29\xdf\xf0\xa7\x9f\xcd\x99\x5a\x02\x63\x7d\x49\x05\x4a\x0c\x20\x78\x7a\xe2\xd9\x15\x18\x64\x51\xdc\x37\x3c\x11\x1e\xb3\x28\x0a\x0d\xbf\xd5\xc7\x2c\x8a\xc2\x2a\xc6\x54\xc9\x5d\xbe\x97\x56\x1b\xbf\x16\x2e\x05\x12\x83\x70\x4f\xf2\x7f\x31\x76\x3f\x39\x13\xeb\x3a\x76\xc0\xe7\x59\xc5\xdb\x41\xca\xae\xb2\x25\x01\x99\x65\x9c\xec\xa1\xfe\x90\x40\x0f\xba\xfb\xe1\xa6\x7b\xff\x81\xcf\xcf\x77\x90\xf4\xe0\xde\xc1\x87\xf3\x81\x90\xcb\x96\x2c\x51\x14\xcd\x43\xd6\x3e\x8d\xed\x34\xb6\x2e\x34\xb6\x97\xd6\xb8\x7e\x2c\x8f\x4b\x6b\xa8\xc7\xfa\x32\x15\x68\x8d\xc0\xfe\x48\x54\x73\xa1\x67\x81\xf5\x8a\x02\xde\x29\x92\x30\xb6\xae\x66\xe9\x28\xad\x11\x58\xc9\x47\x59\x18\x5b\x40\xfa\x90\xda\x6d\x48\x21\x71\x5d\x57\xe6\xa6\x34\xc9\x2e\x85\xdc\xcc\x0d\x28\x92\x9d\x22\x99\x5a\x99\x0a\x61\xd7\xc6\xcd\x5b\x68\x5d\x60\xa5\x12\x66\xa1\x75\x55\x28\x5c\xd7\xef\x67\x84\x28\x12\xf9\x1d\x93\xa4\xb7\xe4\x77\x04\x33\x05\xed\x4a\x7e\x47\xb0\x52\x2f\xb3\xe4\x77\x04\x33\x61\xce\x25\xbd\x63\x85\x0f\xb6\x3f\x12\x48\x5d\xf8\x60\x75\xf3\xc1\xcc\x3e\xaa\x25\x7c\xb0\x23\xdf\x9b\x0a\x1f\xac\x92\xbf\xf1\xba\x92\x6c\x27\x4b\xcf\x17\xd1\x93\x28\x3d\x8f\x3e\xc6\x1a\xab\xe7\xcb\x22\x88\x3e\x0b\x5f\xec\x86\x95\xf0\x93\xc2\x1a\xab\xd0\xc1\xf6\x47\xc2\xa1\x0b\x1f\x0c\x8c\x71\x6a\xf6\x25\x32\xad\xf2\xb8\x4f\x4a\xe9\x49\x29\xc5\x84\x41\x07\x03\x57\xb3\x5c\x4a\xeb\x04\x66\x68\x58\xf5\xa4\x75\x9e\x97\x86\xb9\x9a\xe5\xd9\xa8\x98\x27\x15\x13\xd3\x04\x6b\x0c\xcc\x7c\x1f\x2b\xac\xb1\x0a\x6b\xec\xba\x72\x45\xa6\x0b\xea\xd0\x4e\xcd\x16\xd1\x27\xcd\xf2\x92\x51\xc4\xc0\x18\x46\x92\x1d\x19\x0a\xd8\xd5\x2c\x37\x3d\x75\x41\x32\xd8\xb9\x47\xa4\x07\x97\x65\x70\x35\xcb\xe3\x9e\x1e\x44\x45\xe5\x58\x0e\x4f\xfa\x24\xd5\x80\xf7\xc7\x23\x9b\xa7\x72\xc0\x60\x26\xea\xb5\x9e\x43\xe7\x47\x54\x6e\xa2\x74\xeb\x39\xbc\xbf\x7c\x7c\x0c\xd5\xb0\x9e\x8c\x89\xc0\x58\x5e\x1f\x63\xe2\x49\x53\x6c\x77\xb3\xfb\xa6\x57\xe7\x13\x0f\x5d\xa8\x6a\x00\xfb\xb8\x30\xd5\x2a\xb4\xb4\xeb\xca\x74\x7e\x18\x8f\xf0\xe4\x53\xa8\xa5\xd0\xd2\xc0\xd5\xcc\xaf\x15\x59\x3e\xb3\x47\xe5\x62\xaa\x55\xea\x15\x5f\xcd\x32\xe2\x74\x40\x60\xc6\x65\x5b\xf8\x66\x60\x7f\x24\x00\xbd\x10\xce\xc0\x3a\x62\x22\xe1\x9b\x55\xc8\x65\x57\xb3\x0c\x25\x1d\x10\x58\x89\xfa\x2a\xe4\x32\xb0\x3f\x12\x82\x5a\xc8\x65\x60\x3e\x9f\x9a\x19\xdd\x65\x74\x75\x8b\x5e\x08\xac\xc3\x0d\xe8\x85\xc0\xd5\x2c\xcf\x4b\x31\x3c\xa5\xd5\xcd\x4e\x82\x6f\x56\x21\x92\x5d\xcd\x32\x41\x68\x81\xc0\x3a\xbc\x3e\x5a\x20\xac\xb1\xab\x59\xc6\xcd\x9a\x0f\xac\xe3\x6f\xc4\x8c\x57\x18\x66\x37\x5c\xbf\xe2\x39\x8d\xbe\x94\x12\x5e\x2f\x3b\x25\xb0\x92\x4f\xa3\xf0\xcc\xc0\xfe\x48\x88\x6a\x21\x9a\x55\x88\x66\x47\xdc\x21\x85\x49\x06\xd6\x91\xce\x20\x92\x81\x75\x6c\x44\x3b\xd1\x9e\xfe\x3d\x23\x7a\x12\x65\x00\x33\xf4\x2f\xea\x25\xb0\x58\x85\xd8\x66\x15\x1a\xd9\xf5\x14\x9a\x4d\xb2\x4c\xcf\x87\xa7\x58\x44\xba\xf9\x74\xcf\x22\xcb\x17\x87\xc3\x3d\x9b\xa8\x35\xcb\xa5\xd4\x4b\x60\x26\xbd\x48\xbd\x68\x97\xc0\xfe\x48\xaa\xb4\x7a\x51\x2f\x81\x99\xaf\x5b\x85\x6d\x06\xd6\xe1\x9e\x14\xce\x8b\x2a\x49\x34\x6a\xa1\x91\x81\x99\xaa\x33\x85\x46\x06\xae\x66\x47\x64\x6f\xb2\x77\x7e\xcd\xa3\x7d\x88\x4c\x81\x97\x67\xfb\x92\xe5\x60\x19\xc3\x16\xdb\x0c\x5c\xcd\x46\x64\x3a\x1f\xa7\xcc\xb8\x7b\xa0\xf3\xe7\xdd\xab\x6b\xe9\x20\xa5\x81\x95\xd2\xa6\x85\x94\x56\xc9\xfe\xba\x3f\x12\x2d\x5a\x2f\xe7\x97\xc0\x3a\xb2\xd2\x5f\x74\x55\x78\x6a\x57\x33\x97\xea\x29\xe3\xe7\xa9\x99\x9e\xde\x8a\x29\xfb\x33\x6a\x19\x58\x87\x66\x14\x53\x60\x7f\xc4\x73\x5a\xa8\x65\x60\x1d\xba\xe0\x98\x13\x1a\xd9\xd5\x2c\x03\x32\xee\x3b\x58\x3a\xe9\x3c\xcd\x14\x90\x12\xb3\x30\xcb\xc0\x3a\x9e\x7e\xcc\x48\xd2\x55\x5e\x15\x5d\xf5\xba\x75\xd5\x99\x97\x40\x57\x29\xf1\x9d\x94\xc6\x85\x6c\x06\xf6\x47\x6a\xda\x96\xbc\xb5\x75\xe7\xad\xcd\xc6\x85\x7f\x56\x21\x9b\x5d\xcd\x72\x07\x07\x30\x6c\xb3\x97\xc1\x75\x00\x0b\xac\xd4\x57\xae\x97\x03\x58\x60\x85\xa0\x58\xf8\x67\xc0\x97\xdf\xc2\x3f\x03\x2b\x84\xcd\x52\x41\xbc\xc2\x2b\xbb\x6e\xe9\x69\x75\x2a\x15\x3b\x53\x05\xaa\x10\xcb\xc0\xd5\x2c\x83\x46\x3d\x62\x96\xdd\x33\x97\x7a\x7c\xdd\x7a\x2f\x16\x34\xce\x58\xdd\x9c\xb1\x33\x5d\xa7\xf7\x5e\x2c\x9d\x6d\xba\xd4\xb3\xc5\xd2\x39\x4c\x49\x3a\x2e\x64\xb0\xab\x59\x86\x88\x7a\x0a\xac\xa4\xe2\xae\x17\xed\xf4\xa2\x8a\x8c\x10\x55\xf4\xba\x55\x51\x36\x46\x64\xb0\x0a\x19\xec\x70\x7c\x46\x06\xab\x50\xba\xf6\xc7\x96\x63\x2b\x4e\x17\x90\x08\xa1\x70\xba\xc0\xd5\xec\x8c\x6c\x92\x79\xdc\x3d\xa2\x45\xf4\xd6\x6c\x44\xf6\x21\xcb\x2c\xca\x0a\x92\x3e\xb7\x8e\x5b\xf3\xac\x15\x59\x91\x09\x3b\x7a\x45\xd4\x44\x7a\x15\x11\xc5\x13\x58\x49\x74\x5e\xc8\x60\x60\x25\x7b\x6e\x21\x83\x55\x88\x5f\xfb\x23\xde\xb6\xc2\xfc\x02\x2b\xc4\x9a\x42\xfc\x02\x23\xd9\xf1\x0b\xf1\x0b\x5c\x57\xba\xa7\x7e\x46\x17\x25\x61\x40\x1d\x74\xd1\x41\xc9\xec\x0f\x37\xd5\xa9\x28\x99\xed\x7e\xb4\x1f\xd1\x4f\xb3\xf4\x9d\x92\x09\xcc\x84\x5b\x16\xe2\x57\x85\xe5\x75\x35\xcb\x70\x30\x75\xd0\xbc\xce\x8d\x48\xaf\xce\x2c\x8d\x7d\x4b\xaf\x9c\xb0\x02\xa2\x11\x0a\xa7\x0b\x8c\x69\x3c\xe8\x9d\x83\xde\xd9\xdd\x94\xde\x41\xf3\x4a\x71\xa6\x42\xf3\x02\xf3\xa9\x07\xce\x5c\x61\x7e\x5d\x57\xfa\x35\x1d\x4d\x1c\x59\x3e\x16\x14\xe6\x17\xb8\x9a\x91\xe9\x68\x12\x39\x26\x3a\xa3\x30\xbf\xea\xa0\xb1\x92\xc8\xb1\x50\xba\xc0\x3a\xa2\xae\x71\xb6\xc0\x3c\x9f\x7f\x1d\x2f\x5e\x07\x5f\xdf\xc1\x20\xdb\xa3\xbd\xb0\xbc\xc0\x3a\x8e\xf4\x86\xda\x0b\xcb\xeb\x6a\x96\xde\x50\x72\x81\xf5\x32\x0e\x94\xdc\x41\xc9\x1d\x1e\x49\x07\x9d\xe6\x76\xbd\xa1\xd1\x0e\x1a\x2d\x79\x1e\x0b\xcb\x0b\x0c\x8e\x10\x2c\x2f\xb0\x3f\xf2\x61\xb3\x0e\xe7\xb9\x43\xf5\xcc\x1c\xca\x10\xbf\xea\x60\xcb\x85\x23\x55\x78\x59\x60\xa5\xc8\x4e\xe1\x65\xd5\xe1\xec\xc6\x4d\x88\x70\x05\xe6\x34\xcb\x28\xa6\x83\x91\x96\x72\x5c\x75\x30\xd2\x0e\xe9\xbf\x73\x36\x39\x18\x69\xe1\x48\x5d\xcd\x32\xb7\xd9\x50\x81\x95\x44\x01\x85\x23\x05\x56\x4a\xf9\x17\x8e\x54\x85\x23\xb5\x3f\x76\xc3\xbb\xee\x9b\x66\xbd\xbe\x72\x03\x5a\xe8\xa0\x85\x76\xcb\x8e\x16\x0a\x47\xea\xe0\x6a\xc1\x91\x02\x33\x55\x24\x0a\x47\xaa\x42\x7e\xba\xae\x7c\x45\xf6\x22\xcb\x6c\xcf\xe9\x4d\x2a\xe7\x0a\xd3\xe9\x6a\xe6\xd7\x16\x59\xa8\x02\x93\xe8\x4d\xa4\x53\x44\x1f\x22\x23\x79\xff\x5a\x91\x89\xdd\x5b\x11\xa5\x53\x27\xbb\x26\x49\x23\x0b\x85\x09\xac\xe4\x12\x2b\x14\xa6\x0a\x39\xe9\x6a\x96\x3b\xd0\x2f\xc8\x49\xcf\xd8\xd8\xc8\x49\x60\x7f\x24\x02\xbb\x90\x93\x80\x18\xa0\x42\x4e\xaa\x10\x91\xae\x66\x79\x36\x86\x4d\x60\x25\xcc\xb6\x10\x91\xea\xbc\xf5\x4b\x76\x2e\xb4\x23\x20\x07\x7b\xa1\x1d\x55\x58\x41\x57\xb3\xeb\xfd\x61\x05\x81\x49\x79\x63\x05\x81\xfd\x91\x72\x67\x85\x15\x04\x56\xea\x10\x14\x56\x50\x9d\xf7\x22\xce\x81\x1c\x43\x07\xcc\x33\xa6\x30\x86\x0e\x58\x8f\x4c\x06\x0c\x9d\x3a\x59\x22\xa9\xaf\x54\xe8\x38\x40\xcc\x52\x9d\x2c\x91\xc0\x4a\xf6\xa8\x3a\x2d\xd2\xd3\xb1\x29\x85\x8d\x0a\x69\x07\xac\x23\xba\x04\x69\x07\xac\xe3\xf4\x18\x86\xe3\x5e\xb8\xde\x95\x85\x1b\x18\x1c\xcb\xa7\x75\x1b\xb8\x9a\xe5\xcd\x5b\xb8\xa7\xca\x4c\x31\xb9\xb0\x7d\xc0\xfe\x48\x02\xba\x42\xf7\x01\xc2\xa9\xea\x64\x9d\x84\xed\x73\x35\x4b\x17\xd8\x22\x37\xdd\xe7\xd0\xcc\x8b\xe7\xd5\x49\x79\x9d\xc2\xf7\x01\xe2\xa9\xea\xa4\x05\x4e\xc7\xb7\x04\x70\xd7\xe9\xf8\x76\x3a\xbe\x9d\x1e\x57\xe7\x19\x1e\x09\x89\xad\x93\xe1\x71\x3a\x70\x99\x6d\x0c\x8f\x73\x79\x36\x6b\x8d\xcb\x3f\xb0\x8e\xa9\x99\x67\x5b\x6f\xcd\xd2\x7b\x6a\xe0\xa4\x06\x62\xb2\x9c\xd4\x40\x60\xd2\xbb\xe7\xba\x9f\xa3\x5c\x99\x11\xa7\x19\x4e\x9a\xc1\xe2\xa0\x19\x02\x22\xc2\x0a\xc5\xa8\x42\x31\x3a\x93\x5d\xbc\x50\x8c\x6a\x70\xd5\xda\x93\x50\x8c\x80\x20\xb1\x42\x31\xaa\xc1\x3c\x49\xf5\xa8\xc2\x21\x02\x2b\xac\xe8\xc2\x21\x02\xeb\xc8\x52\xc6\x21\xaa\xf1\xfa\xba\x72\x44\xf6\x23\xcb\xce\x15\xdf\xc9\xa0\x05\x06\x53\x24\xde\x0e\x4c\x23\x20\x5b\x7e\x61\x1a\x81\xfd\x11\x12\x43\x61\x1a\x81\x19\x9a\x61\x61\x1a\x81\x75\x64\x39\x62\x1a\x81\xeb\x4a\xbf\x76\x90\x65\x67\xcc\x34\xc5\x34\xaa\x71\x98\x31\xf7\xaf\xe9\x54\xc2\x8d\x46\x54\xdb\x70\x2c\x1a\xfc\x24\xe1\x27\x94\x7c\xf1\x60\x1d\x1b\xd1\x20\x32\x6a\x31\x38\x51\x8d\x80\x38\xba\x42\x35\x02\x57\xb3\x19\xd9\x7d\x87\xac\x51\x9d\xa7\x2a\xc6\xb0\x36\x5e\x7f\xc3\x37\x3e\x9c\x60\x02\xeb\xc8\x8c\xc5\x3a\xaa\x61\xa5\x73\xcc\x4a\x31\x0f\xd6\xe1\xe5\x5a\xe9\xc3\xb2\x4e\x98\x44\xa1\x18\xd5\xb0\x86\x13\x78\x55\xc3\x1a\x0e\xcc\x3d\x56\x25\xd6\x11\xb8\x9a\xe5\x5d\x5a\xc3\xc3\x1a\x8e\x87\x7b\x58\xc3\xc3\x09\x63\xfa\x31\x43\xe8\x84\x11\x4f\x27\x6e\x52\x0d\xbb\x76\xc2\xb3\x6a\x58\xaf\x81\xe9\xab\x1d\x6e\x12\x58\x47\x1c\x52\xb8\x49\x35\x1c\x27\x12\xb6\x54\x58\x47\x60\x1d\xf1\x82\x61\x1d\xd5\xe0\x71\x7d\x9a\x8c\x76\xed\xc0\x3a\x62\xd9\x0f\x0b\x7d\x38\x4e\x24\x2e\xa5\x50\x8c\x6a\xf0\x8f\xc4\x52\x18\xf6\xf6\x61\x6f\x37\x6a\x16\xf5\xe0\x12\x7d\xea\x95\xb5\x19\x90\x6f\xbb\x70\x93\x2a\xe9\xfb\x4f\x7e\x2b\xdc\xa4\x9a\xf7\xda\x8c\xbf\x6f\x5a\x9b\xd3\xda\x8c\x8d\x31\xad\xcd\xa9\x18\xc7\xd2\xea\x20\x32\x3f\x33\x7d\xa6\x43\x47\x60\x52\x11\xd3\xa1\x63\xda\xdb\xc3\xd6\xa8\x69\x09\x07\x56\xe2\x0a\x6a\x5a\xc2\xd3\xa1\xe3\x79\xdf\xf4\x43\x96\x01\x7f\xb8\xe9\x97\xc8\x80\x2f\x5d\x68\xb2\x0c\x38\x91\x65\x3d\xb9\x44\x39\x3b\xf1\xa6\xc0\xf4\xa1\x77\x5a\x9c\x93\x37\xc2\xa9\x60\x5a\x76\x93\x37\x22\x56\xdd\xb4\x69\x4f\x07\x85\x24\xdc\xaa\x69\xd7\x0e\xac\x23\x1f\x2d\xa6\x83\xc2\xe4\x66\x78\x79\x5e\xe6\x7e\x40\xde\xfd\x9a\xdc\x0c\xd3\x09\x20\x29\x67\x6b\x3a\x01\x4c\x27\x80\x58\x9c\xd3\x09\x20\xb5\x09\xae\x66\xb9\x83\x8f\x1b\x81\xf5\x32\x94\x5c\xa2\x93\x9b\x21\x11\xe5\x35\xb9\x19\x26\x37\x43\xf6\xd9\x69\x91\x4e\xfb\xfd\x6b\x27\x73\x07\x46\x7b\x4c\x80\x69\xbf\x9f\x16\x6e\x02\xcf\x6b\x5a\xb8\xd3\xc2\x35\x41\x2c\xdc\x69\xe1\xbe\xb2\x22\x51\xd0\xc0\x1c\x51\xe8\xd3\x7e\x3c\xad\xe5\x57\x0e\xe0\xd3\x5a\x0e\x48\x58\x5a\xd3\x5a\x9e\x36\xda\x57\xe6\xb8\xba\x0a\x60\x3e\xb3\xfc\xd4\x55\x00\xfb\xe3\xf5\x22\x33\x91\x6c\xb4\x39\xf7\x4e\x0b\x77\xda\x68\x5f\x2f\x0f\xa2\x0b\xf9\xe8\xba\x1b\x37\x1b\xed\xf4\x3d\xdf\xa4\x61\x81\x4f\x61\xf2\x87\x47\x33\xb5\xe2\x1a\x18\xa6\x91\xb5\x3c\x19\xc3\xa9\x3e\x56\xd8\x65\x35\xad\xab\xcc\x67\xec\xb2\x0a\x13\x6b\x7f\xbc\x62\x98\x62\x62\x81\x91\x10\xa2\xc2\xc4\xaa\x65\xa2\xfa\x70\x81\x17\x05\xe6\x33\xa6\x35\x5e\x14\xd8\x1f\xbe\x05\x22\x46\x01\xdc\xe6\x42\x8c\x02\xd3\x47\x57\xc4\xa8\x5a\xf7\x14\x9f\x9a\xbd\xc9\xde\xb9\x72\x8f\xe8\x43\xf4\xd5\xcc\x73\xdc\xcf\xf6\x8b\x27\x2d\xbd\x62\x97\x06\xae\x66\x47\x64\x4d\x16\xf7\x89\x5f\xe3\xf5\x0f\xe0\x4e\xd7\x72\x14\x5e\xf7\xe2\x98\x64\x3b\xd9\x9e\x66\xaf\x88\x9e\x44\xcf\x78\x89\xfc\x98\xe1\xe0\x96\xf3\x21\x0a\xa7\x0a\xcc\xf3\x49\x64\x38\x7c\xa6\xf4\xe1\x02\xa7\x0a\xcc\x04\x2b\x17\x4e\x15\x58\xbc\x72\xcb\xd6\xb8\x1c\x8f\x7d\x7d\x40\xb3\x02\x73\x3e\x88\x0c\xc7\xbd\x84\x32\x8b\x10\x98\xc0\xf4\x45\x1b\x81\x09\xec\x0f\xbe\x5c\x0c\xa6\xba\x8b\x52\xc4\xea\x47\x60\x02\x6b\x1a\x5c\x56\x74\x60\x08\x0a\x41\x60\xaa\x65\x3d\x72\x8f\x23\x30\x81\x21\x50\x04\x81\x09\xcc\xe7\xdf\x48\x83\x56\xf8\x4d\xe0\xfa\xe1\x3c\xb9\x15\x1c\x58\x5b\xce\x8c\x08\x4e\x60\x6d\x26\xb1\x05\x1c\x40\x65\xaf\x65\x01\xaf\x79\x77\x39\x2f\xd2\x02\x46\x83\x1a\xe6\x93\x05\xbc\x7c\xd8\xa4\xcf\x97\x3d\x35\x80\xf1\x5e\xcb\x62\x5d\x0e\xc7\x8e\x0e\xa8\x51\x60\x26\xa7\x71\xa1\x46\x81\xab\x59\x2e\xb5\x36\x71\xa3\x12\x24\x5a\xb8\x51\x60\x6d\x96\x84\x9d\x37\xb0\xb8\x52\x97\x9d\x37\xb0\x92\x00\xa9\x16\x13\x3b\xb0\xf8\x65\x97\x4f\x1a\xcb\xfe\xcc\xbf\x8f\x41\x05\x70\xf1\x0b\x83\xaa\x16\xab\xdb\x57\x24\x0c\x2a\xb0\x52\x54\xbc\x30\xa8\xc0\xd5\x2c\xe3\xcd\xec\x0e\xc8\x4d\x50\x18\x54\x60\x7f\xf0\x96\xa1\x50\x81\xb9\x65\xf3\xc1\xa0\x02\x8b\xff\x16\x83\xaa\xc2\xa0\x3a\x53\x0a\xb4\x30\xa8\xc0\xdc\x62\x9b\x20\x50\xd5\xdb\x11\xdd\xe7\x88\xb7\xdd\x3e\xb0\xb8\x6f\xdf\x76\xfb\x37\xe3\xdc\xe7\x0e\x0c\x2a\xb0\x38\x83\x31\xa8\x80\x9c\x03\xf5\xb6\xb3\xbf\xd1\x54\x9f\x44\x1f\x22\xef\x2e\xbb\xd1\xdb\x96\xfd\x56\x97\x32\x1a\xee\xcd\x12\x7f\xb3\xc4\x79\x83\xdf\x2c\xf1\xc0\xe2\xe6\x7d\xb3\xc4\xdf\xcc\x6e\x8e\xea\x37\x85\x19\x18\x43\xdf\xe9\x4b\xf5\x52\xe6\x7d\xe5\x20\x9a\xae\x3c\x22\xd3\x83\x58\xe2\xdb\xe1\xd1\xf4\xe0\x5e\x2c\x51\x37\xe8\x58\x60\x0a\x31\x52\x1e\xa4\xde\x6c\x52\x36\xc1\x9b\x4d\xfa\xe6\xf5\xce\xf4\x40\xda\xaa\xf7\xbd\x5a\x86\x5f\xf3\x20\x59\x2d\xa6\xc7\xdb\x6a\x79\xdf\xcb\x20\xa7\x15\x44\x2e\x30\xb9\x05\x10\xb9\xc0\xfe\x60\xeb\xab\x19\x02\x46\xe8\x7a\xf5\xb6\x0c\x02\x33\x75\xe8\x4b\x15\x91\x7a\xaf\xc3\x95\x9a\x19\xa3\x64\x37\x4b\xb6\xe8\x7a\x3b\x56\xbe\x99\x96\xf6\xd8\xb7\xc9\x16\x18\x42\xeb\x90\xc7\x2a\xe4\xb1\x33\x34\xe9\x42\x1e\x03\xd7\x95\x2b\xb2\x8d\x2c\x5f\x70\xb3\x82\x3e\xbe\x90\xa5\x8a\xc8\xfe\x48\x06\xe9\x52\x45\x04\xcc\x91\x47\x53\x45\xa4\x3e\x26\xe0\x19\x8d\xa5\x64\x08\x98\x02\x19\x3e\x26\xe0\x47\x08\xce\x99\x2e\x7c\x4c\x90\xc0\xf4\x96\x3f\xf6\xd8\x8f\x39\x73\x6e\x64\x6e\x7a\xd8\x54\xf2\xb8\xe6\xcc\x87\x0b\x27\x44\x9d\xfa\xd8\x2a\x3f\x77\x6d\x5e\x57\x7e\x89\xb2\x94\x93\x8c\xb7\x54\x11\x01\x93\xcf\x4c\x15\x91\xfa\xf8\x40\x9e\x14\xf1\x85\x4d\x07\x26\xa7\x2e\x36\x1d\xb8\x9a\x65\x90\x6c\x95\x81\xc5\xd7\xf8\xb1\x55\x7e\xce\xfb\xa6\x79\x10\x7b\xd4\x47\x26\xe2\xa7\x2b\xdd\x94\x1d\x29\x0e\xe2\xc3\x8e\x0c\x4c\xdf\x8d\x3f\xec\xc8\xc0\xd5\x2c\x63\xe9\xdb\xfa\x47\x26\x62\x37\x60\x5a\x06\xe4\xb8\xae\x0f\xd3\xf2\xc3\x6d\x7b\x3e\x67\x64\x5e\x4c\x22\x6e\x12\xef\x5d\xc8\x7f\x60\x3e\xef\x56\x6f\xa2\xac\xab\x50\x7d\x0a\x1f\xb0\xc2\xfd\xbb\x64\x79\x0e\x2b\x26\x30\x93\x33\xb0\x3e\x4e\x71\x1f\x47\xb6\x90\x6c\xea\xc3\xf2\x0b\x8c\x14\x53\x2b\x14\xc1\xfa\x30\xd6\xce\x58\x22\x88\x7e\x15\xa2\xdf\xc9\x20\x42\xf4\xab\xaf\xa3\x4c\xca\x47\x16\x56\x1f\x98\xde\xfc\xd7\x51\xe6\xcb\x0a\x4b\x10\x76\x61\xd8\xd5\xcd\xb0\x8b\x51\x8a\x61\x57\x5f\x26\x57\xf2\x19\xd5\x97\x0a\x09\x2c\x5f\x25\xbf\xe6\xd1\xd7\xa9\x62\x3c\xfe\x86\x87\x5c\xcd\x10\xb0\x52\x12\xa1\xf0\xf4\xea\x6b\x4e\x85\xb7\x50\x6a\x86\x80\xc9\x1f\xac\x66\x48\x7d\xf9\xf6\x53\xab\xb2\x54\xfe\x00\x2b\x09\x22\xea\xcb\xb7\xff\x1d\xe9\x61\x22\xad\xeb\xcb\xa0\xf9\xde\xc5\xd9\x89\xf4\xd0\x8b\x0b\xfb\xa0\x50\xeb\xea\x4b\x9d\x84\x67\x59\xea\x72\x00\x15\xe4\x0a\x41\xad\xbe\xde\x08\x2b\x1b\xa7\xac\xc2\x29\x3b\xb9\x52\x70\xca\xea\xe7\x8d\x88\x9a\xc1\x29\x03\x4b\x94\x21\x4e\x59\xfd\x78\x62\x43\x05\x28\x6c\x2e\xb0\x52\x3d\xb0\x90\xb9\xea\xc7\xc5\x2a\x32\x15\x73\x0b\x08\xc8\x2e\xcc\xad\xfa\xf9\x84\x33\x72\x06\x45\xd3\x02\x77\x20\x34\x96\x56\xfd\x1c\xe0\xc2\xff\x2d\x94\x2c\xb0\x7c\x94\x43\xc9\x02\x57\xb3\x19\x99\x2e\xdc\x35\xea\xf2\x1c\x6c\xd4\x9f\xea\x1d\xf9\xd2\xf3\x63\xa3\xfe\xee\x97\xb5\x34\xf3\xb8\x49\xc1\x97\xb4\xb9\x85\xa5\x55\x3f\xbe\x9a\xa4\x29\xa8\x9f\xc5\x18\x58\xce\x0e\x3f\x36\xea\x8f\x41\x9a\x64\x86\x85\x93\x55\x37\x27\x2b\xaf\x19\x27\x0b\x5c\xcd\x32\x6e\xd6\xec\x0f\xa5\x3e\x2e\x84\x9f\x35\xfb\xf3\xea\x13\xd8\x5f\x48\x59\xf5\xf3\x9d\x62\x6a\x67\xc3\x09\x28\x25\x51\x3f\x1b\xce\x8f\x6f\x93\x2f\xf6\xc7\xf0\x0a\xcc\xe1\xd7\x18\x5e\xbf\x3b\x5a\x35\x2f\x86\xe1\xf5\x53\x57\x78\x77\xa1\x91\xe4\x01\xb5\x65\xe2\x47\x81\x79\xe6\x6b\x06\x7e\x14\x98\xc7\xfd\x64\x3a\x15\x8f\x4a\x52\xe5\x16\xc6\x14\x98\x21\x9a\x15\xc6\x14\xb8\x7e\x3f\x23\xc9\x62\x0b\xac\xa7\x81\x64\xb0\xfd\x44\x99\x24\x23\x6b\x61\x51\x81\xc9\xb8\xc1\xa2\x02\x57\xb3\xdc\xd4\x26\xfa\x53\x5c\x22\xd6\x13\x16\x55\x85\x45\x75\x7a\x34\x2c\x2a\xb0\x52\x47\xbd\xb0\xa8\xc0\x1c\x77\xab\x9d\x28\x31\x1a\xd9\x2f\x8b\x13\x27\x30\x42\x54\x2e\xbc\x2a\x30\x42\xc6\x2f\xbc\xaa\x2a\xbb\x6a\x52\x3d\x15\x5e\x15\x50\xe9\xa7\xf0\xaa\xc0\xdc\x73\xe6\xc5\xab\xaa\xe2\x73\x0d\xa7\xb7\xca\x69\xb6\xe4\xed\x1f\x44\x19\x8c\x62\xc3\xe1\x25\x14\x1b\x2e\x80\xc3\x57\x65\x8b\x2e\xfb\xf1\xcc\xbb\x2b\xfb\x71\x40\x15\x89\x2a\xda\x36\x70\x35\x73\xe9\x20\x4b\xd5\x99\x68\x8f\xa2\x02\xca\x7a\x4f\xd1\x82\xc2\xbf\x02\x93\x4f\x1e\xfd\xaa\xca\x7a\x9f\x39\xf1\x94\xf5\x1e\x98\x8f\x9c\x04\xca\x7a\x2f\x1e\xd6\xa4\xb1\x2b\x05\x76\xc0\x3a\xe3\xd0\x2b\xc7\xc8\xc0\x14\xaf\x53\x1c\xac\xe5\x64\xc9\xe7\x84\xb9\x05\x66\x38\x70\x55\x76\xed\xb2\xde\xa7\x37\x6a\xbd\x07\xd4\xcd\x29\xfc\xae\xaa\x7b\x21\x67\xc6\x94\x85\x1c\x98\x8e\xd0\x65\x21\x97\xd0\xd6\xa4\xbc\xac\x72\x40\x0c\x4c\x5e\xe8\x72\x02\x0c\x8c\x15\xe5\x81\xe0\x05\xd6\xe9\x9e\x6c\xda\xb2\x1d\x4f\x93\xc1\x76\x1c\x58\x36\xcb\xb2\x1d\x07\x66\xea\xe1\x94\x62\x40\x55\x76\x68\xa4\x8f\xb2\x43\x07\xe6\x88\x49\x5b\x76\xe8\xc0\x3a\xb3\xda\xcb\x01\xb0\x84\x72\xcc\x58\x9c\xc5\x5d\x13\x18\xd3\x94\x61\x0c\x17\xcb\x37\x49\xab\xaa\x58\xbe\x01\x85\x0d\xab\x28\xa2\xb0\xd2\xae\x66\xe9\x01\x15\x53\xaa\xc4\x4c\xcd\x74\xea\xd6\x27\x51\xea\x45\x9f\x04\x30\x35\xab\xe8\x93\x12\xc2\x36\xff\x06\xe7\xab\x8a\xbe\x09\x8c\x65\xb8\xe8\x9b\x5a\x77\x0f\x33\x10\x34\x49\x60\xd8\x7b\x54\x40\x02\xeb\x34\xf6\x14\x49\xd9\x3e\x31\x58\xb0\xe6\x2a\xac\xb9\x33\x25\x85\x0b\x6b\x0e\x4c\x26\x19\xd6\x1c\x58\x6c\x17\xa4\xb9\xba\x49\x73\xf9\xd2\x86\x34\x07\xae\xdf\xd7\xec\x45\x96\xd1\xca\x5b\x6b\x6a\x23\x30\x93\x8b\xa2\xda\xee\xdc\x1c\x5e\x26\x54\x73\x78\xb5\x1c\xe7\xd1\xd1\x18\x78\xd5\xf4\xc1\xca\xe9\xbe\xe9\x83\x16\x22\x9f\x13\x6e\xb3\xcf\x9b\x3e\x40\x7d\x51\x9b\x09\x2c\x11\x2d\x6a\x33\x81\xab\xd9\x88\x6c\x90\x8d\x78\x56\xd2\x77\xfa\xa0\x59\x64\x6b\x23\x7b\x93\x25\xd6\x38\x66\x42\xb3\xc8\x9a\x2d\xb5\x3c\x08\x5b\xaa\x05\xb0\x66\x63\x47\xcf\xab\xa6\x0f\x52\xb6\xa2\x10\xea\xc0\xe4\xe0\x47\xa8\x03\xfb\x23\x99\xca\xab\x29\x84\x16\xfd\x1e\xcb\xbe\x7d\x71\x69\x3a\x22\x29\xbe\x4a\x41\x28\x20\x4b\x48\xa1\xe2\x55\x5b\xfc\xc9\xa2\x5e\x08\x75\x60\x2c\xbf\x66\xf1\x87\x3d\xb7\x3f\x92\x78\xba\xb0\xe7\x80\x7c\xa9\x85\x3d\x07\xae\x66\x79\x5e\x7e\x25\x95\x9e\x52\xd9\xa8\xb0\xe7\xaa\x6d\xf6\x49\xba\x5d\xa8\x72\xd5\x9c\xba\x49\xa2\x5a\xca\x3a\x81\xb5\x79\x0b\x7c\x42\xe1\xc5\x49\xab\x5a\x68\x71\x60\x7f\x24\x47\x73\xe1\xc5\x01\x99\x50\xab\x29\x8e\xc0\xd5\x2c\xe3\xe6\x30\x1c\x18\xeb\x6e\x66\x78\x79\x93\x84\xeb\xe3\xca\x01\x55\x81\xaa\x29\x93\xa6\x4c\x92\xef\xb6\x9a\x32\x09\x2c\x41\xad\x4d\x99\xb4\x08\xd6\x24\x6b\x29\x85\xa3\xc0\xf4\xc5\xaa\x59\x1d\x81\x71\xdf\x80\x92\x08\x4c\x1e\xba\xa6\x24\x9a\xed\xe0\xdb\x74\xb3\x1d\x02\x33\x89\x72\xab\xad\xf8\x66\x3b\x08\x4a\x56\x98\x0a\x8c\x7b\x2d\x5b\xf2\x7d\x2f\xf9\x58\x27\x08\x80\x15\x02\xe0\x99\x84\x08\x8d\x00\x08\xf6\x47\x72\xcf\xf6\x23\x6b\x1e\xac\x84\xe5\xf6\x23\x6b\x1e\xcc\xf1\x70\xe5\x93\xc8\x9a\xbf\x6c\x8c\x7e\x64\xcd\x83\x91\x55\xda\x8f\xac\xf9\x7e\x08\x81\x4f\xc2\xb7\x7e\xc4\xfe\x06\x32\xd4\xf6\x23\xd6\x03\x50\x30\xb1\x1f\xb1\x1e\xc0\x58\x8f\x19\xd1\x9b\x48\xdf\x87\x2b\x8b\x2c\xde\x8d\x53\x07\x3a\xa2\xe3\xee\x54\x2e\x3d\x74\xea\xd0\xa9\x23\x22\x9d\xe2\x45\x8f\xf3\xa8\x53\x40\xeb\x86\x99\xfc\xd4\xad\x8c\x56\x3f\x6e\x6d\x31\xd3\x83\x43\x0f\xe2\x32\x3f\x3d\xee\xa1\x07\xac\x87\xa4\x99\x6b\x84\x48\x30\xfe\xbc\xd2\xb3\xdd\x6a\xc0\x1d\x4e\x97\xf2\x2e\x5f\x5a\xab\xd1\x26\xfb\x71\xaf\xef\x4b\xd7\x37\x8e\x24\x58\xdb\xae\xd9\x2f\xa2\x84\xbb\x6f\x29\x78\xd1\x8f\xa1\xa7\x23\x3d\xdd\xd2\xf9\xa1\xa7\xf9\xdc\xb3\x85\xce\xd4\x8f\xe1\xfd\xe5\x4c\xbe\xbf\x32\x20\x43\xe7\x73\x0c\x48\x04\x75\x23\x5c\x76\x98\x94\xd7\x95\x64\x1e\x37\x4e\xe8\x24\xf6\x6d\x4c\x4a\xb0\x6f\x49\x2c\xd9\xa8\x94\x60\x3e\x1f\xe9\x41\x14\x48\xa7\x76\xd7\xd5\x2c\x13\x64\xdc\x5d\xa8\xfc\x5a\x9a\x4d\x93\x92\x4b\xf9\x99\x56\x53\xa7\x12\x2e\xba\x99\x6c\x53\xa7\xa8\x8f\x67\xba\x3e\xf5\x29\x4e\xb2\x2d\x95\x97\x1b\x53\x13\xcc\x94\x9d\x6a\x4c\x4d\x30\xf3\x49\xa8\x1f\x53\x07\xa2\x17\xb6\x50\xb5\xfa\x31\x3d\xed\xe4\x7d\xfd\x6b\xff\x78\x87\xfb\x79\x41\xfb\x95\x74\x66\xe9\x4c\x38\x79\x53\x67\x96\xce\xe4\xc3\xee\xf6\xb0\xc2\x96\xde\xac\xa4\xc8\x9d\x19\xd4\xa5\x37\x39\x1b\x6f\x0f\xeb\x24\xaa\x04\x48\x49\xdc\x48\x9b\x1d\x86\xe6\xd5\x2c\x8f\xfe\x76\x87\xac\xf4\xe8\xcc\xc6\xd0\xec\xed\x70\xd3\xeb\x68\xd2\x9b\x15\x10\x98\x89\x55\xe9\x2d\x26\x35\x98\x23\xfa\x60\xb3\x26\x02\x23\xc5\x28\x5a\x39\xb4\x4e\x09\xb4\x7d\x0b\x8d\xa8\x37\x6b\x22\x30\xe3\x79\xec\xcd\x9a\x08\x5c\xcd\xdc\x73\x91\x25\x37\x77\x5e\x91\x1a\x68\x60\xc6\x9a\xeb\x2d\x9b\x6a\x6f\xe7\x7d\x83\xdc\xf4\x74\x83\xd0\xc7\x52\x96\xad\x91\x42\x3b\xd4\xce\x7d\x7b\x78\xdc\x78\x1e\xc0\x8c\x59\xdc\xdb\x70\x65\x0e\xae\x7b\xc6\x7b\x1b\xf7\x95\x61\x77\xe9\x94\x49\xbc\xdd\x93\x38\x2b\x78\x33\x89\x03\x2b\x9f\xc3\x7b\x33\x89\x03\xf3\x71\x9e\x11\x7d\x89\x7e\xae\xcc\x70\xc4\x52\x06\x2b\xe1\x31\x8d\x61\x0a\xd6\xbe\xe7\x61\xcd\xeb\xc0\x75\x65\x3a\x65\x62\x07\x66\xd8\x5d\xbd\x99\xd8\x81\xab\x59\x9e\x63\x7a\x2d\xd2\xc5\x4f\xbf\xe6\xb5\x4c\xc3\x31\xd3\xf7\x69\x38\xb2\x57\x26\x6f\x6b\xe3\xa6\x82\x7d\xa3\xe5\x90\x53\xc1\x7c\x46\x91\xe0\xa6\x02\x69\x5b\x1b\x37\xb5\x43\x13\xbd\xae\xcc\xab\x5a\x9e\x23\x27\x6f\x9a\x0a\x4f\xb4\x43\x0a\xdd\xb7\xcd\xc4\x5a\x6e\x90\x33\x75\x02\xc0\x1a\x29\xb4\x51\x3b\xb7\x64\xb7\x6f\xd4\xce\x0e\xb5\x73\xa4\x7c\x49\xa3\x76\x76\x38\x99\xfb\x96\xfc\x1c\xbd\xdb\x56\x76\x55\x75\x32\xc1\xf7\x98\x92\xe0\x6a\x36\x22\x1b\x64\xa1\x69\x6f\x9a\x4d\xa2\xb7\x66\x33\xb2\x0f\xd9\xb5\xd2\x13\x7f\xd9\xa9\x2c\xf7\x3f\x1a\x29\x73\x8b\x8d\xd1\x48\x99\x40\x82\xda\x46\xca\xec\x3f\x49\x99\x5a\x79\xb4\x18\x9c\x09\x0d\xed\xfd\xf0\x68\x71\xda\x6d\x54\x26\x06\x26\x58\x09\x4f\x69\x65\xe8\x3a\x04\xcc\x7d\xdb\x6e\x59\x93\x29\x1b\x9c\xf1\x38\x8d\x07\xa5\x9f\x9a\x65\xbd\x53\xfa\x81\x95\x23\x4c\xab\x08\x07\xf6\x2d\x9f\x85\x5a\x49\x38\x20\x77\x6e\xef\x94\x7e\x40\x52\xdc\x56\x24\x0e\x5c\x57\xe6\x39\xac\xaa\xc0\x4c\x7c\x5d\xef\x56\xd5\x3e\xf4\x2a\x4a\x60\xb7\x12\x02\xd2\xff\x36\x82\x24\x98\xaf\xfb\xca\x22\xca\xda\x88\x2a\xc2\x8f\xec\x7d\x7a\xc9\x9a\x99\xce\x81\xb9\xaf\x3c\x86\xd9\xbc\xd3\xf0\xf9\xc0\xd6\xbb\xe9\x1c\x58\x34\xfc\x6e\x36\x07\xd6\xfe\xd4\x6a\x11\x65\x36\x3f\xb5\x7a\x13\x79\xed\x79\x2b\x34\xf8\x2e\x6d\xb0\x01\x9a\x9e\x7f\x19\xee\x2c\xf8\x9d\x06\x0f\xac\x7d\x27\x32\xdc\x96\x46\xbe\x6b\x35\xe6\x23\x58\x89\x39\x6e\xcc\x47\x70\x35\xcb\x73\x50\xea\x81\x95\x80\xdd\x56\xd0\xae\x43\x60\xbc\x9a\xe5\x41\x96\x67\xbb\x8d\x41\xa2\xfb\xd9\x7e\x9a\xa5\x0b\xcb\xe0\xa2\x2b\x99\x0a\xcb\x24\xba\x17\x5a\x74\x33\xa2\x63\x87\xe8\x38\x42\xed\x69\x44\x47\x30\x6d\xc5\x4f\xb6\x60\x60\xed\x97\xd1\xdb\xa8\x8f\xfd\xbc\x97\x63\xd4\xb5\x5a\x78\x60\xa6\x2a\x7d\x3f\x2d\xc7\xf0\x1c\xaf\x66\xaf\xc8\x26\x19\x6a\x8f\x66\x8b\x68\x69\x76\x46\xf6\x26\x8b\xd2\x7d\xb9\xe9\x87\x28\xaf\xea\xe5\x9e\x5f\xa2\x76\xe5\x35\x8b\x70\x1f\xc1\xda\xf7\xbf\x3e\x67\x37\x66\x64\x87\x6a\xb8\x6f\x5b\x56\x30\xae\x21\x18\x21\xe5\xf7\xf3\xd4\xe9\x78\x4d\xb7\x64\xeb\x6e\xec\x40\xb0\xf2\xa1\xa3\xb1\x03\xc1\xbe\xed\xb7\xcc\x40\x24\x1a\x36\x39\x2b\xfa\x69\xe5\x04\x66\x82\x11\x1b\x87\x10\xac\x94\x10\x6e\x1c\x42\xb0\x92\xe2\xb1\x71\x08\x3b\x44\xc0\xeb\xf7\x23\xb3\x72\x50\xfc\x36\xda\x0b\xc5\x0f\xac\x10\x01\x1a\xc5\xaf\x43\x59\xdb\xb7\x64\x9d\x6e\x9c\x35\x30\xf3\x75\xb6\x51\xd6\x3a\x94\xb5\x41\x43\xa0\xac\xf5\xcb\x0b\xdf\xcf\x3d\xb2\x83\x2c\xa7\xea\xe3\x11\xd1\x49\xe4\x06\xd9\x9f\x91\xc5\xc0\x9a\xd9\xb6\x90\xc5\xfa\xc5\x74\xd8\x87\x66\x83\x2c\x87\xef\xac\x4d\x2c\x30\xb0\x6f\x49\xa9\xd5\x68\x60\x60\xfc\xf9\x6b\x6f\xa2\xb7\x66\xaf\xc8\x3e\x64\xa9\x14\xfd\xf2\x6b\x5f\xa2\xaf\x66\x47\x64\x3f\xb2\x9c\xe7\x4e\x57\x66\xe9\xa0\x7c\x6d\x89\x6f\x6e\x94\x2f\xb0\xe8\x25\x94\x2f\xb0\x6f\xa9\xc4\xdf\xe1\x7f\xdd\x30\xf3\xe5\xa1\xb1\xc0\x1a\x49\x6b\x4b\xaa\x96\x46\xd2\x02\x2b\x51\xe6\x8d\xa4\xd5\x2f\x6a\x34\x99\x65\x1a\xd7\x0a\xac\x24\xa9\x6a\x5c\x2b\xb0\x6f\x61\x8f\x34\xae\x15\x98\x49\x12\xdc\xb8\x56\xfd\xa2\x86\xc2\xe1\x6d\x84\x23\x30\x77\xcf\x46\x0d\x85\x6f\xb4\x6f\xc9\x76\xdd\x08\x47\x40\x06\xa6\x7e\x2d\xc3\x4b\x0d\xe5\xfb\x5b\x2b\x52\x05\x56\x4a\x2b\x35\x5a\x52\x23\x1c\x6d\xc9\xa3\xdc\x08\x47\x1d\xc2\xd1\x48\x70\x6d\x23\x1c\xf5\x61\x22\x3d\x5f\xaf\xc8\x0e\xb2\xa4\x9f\xcc\xf0\xe2\x20\x81\xab\xd9\x8a\x6c\x90\x25\x9d\x46\x7a\x8a\x83\xd4\x07\x83\xf6\x99\x39\x88\xfd\x03\xd6\xc8\x4c\x3d\x6c\xda\x81\x7d\x7b\xba\x83\x5d\x3b\xb0\x58\x92\x38\x42\x60\xa4\xdc\x64\xe3\x08\x81\x15\xb2\x72\xe3\x08\x35\x56\xcf\xf6\xf4\x1c\x26\x4d\x60\xc5\xb1\xde\x58\x3d\x8d\xd5\xb3\x25\xb1\x5e\x63\xf5\x80\x35\x72\x74\xc5\xea\x01\x72\x59\xb5\xe2\x4d\x8d\x4d\xb3\x25\xa8\xb4\xb1\x69\xc0\x1a\xb7\xe8\xbe\x41\x12\x85\x66\x77\x38\x86\xc1\x65\x15\xa4\xb4\x5c\x1f\xac\x82\xc0\x1a\x1e\x83\x55\xa0\xda\xd2\xf9\x74\xa5\x7b\x52\x2a\xcf\x1c\x53\x11\x5c\xfa\xb0\x1d\x27\xb0\xb2\x15\x23\x02\x6b\xdc\xcd\x0c\x51\x8c\xcb\x31\xce\x88\x0c\x11\x75\x94\x84\x4d\xad\x7a\x10\x58\xf9\x14\xdb\xaa\x07\x81\x7d\x4b\x45\xd5\x46\x66\x01\x33\xcc\xaa\x46\x66\x01\xd2\x6c\xb5\xea\x41\x7d\x98\xba\x2f\xcd\x4c\xdd\xc3\xd4\x8d\xc9\x8c\xcb\x02\xf6\x2d\x91\x90\x8d\xcc\x02\x56\x02\x04\x1a\x99\xa5\x0f\x6a\xf1\xb5\xe5\xd7\xa8\xc5\xc0\x4a\x46\xe2\x46\x5c\xe9\x10\x57\xc6\x2b\x5b\x02\xe2\x0a\xb8\xae\x5c\x91\x6d\x64\x19\xf0\xe8\x7a\xc5\x7d\xfa\x34\xe9\xe3\xa7\x6c\xcc\x15\xb0\xf2\x61\xb1\x4f\x93\x3e\xb0\x12\x7a\xd2\x8a\xfb\x80\xeb\x4a\xb2\x49\x96\xb4\xb4\xcb\x8f\x2d\x22\x1d\x8d\x16\x47\x70\x01\x2b\x1f\xdc\xfb\xb4\x5d\x06\x26\x13\x54\x71\x1f\x70\x5d\x79\x46\x56\x64\x06\xfc\x1a\x49\x95\x7c\xfa\xb4\x82\x12\x05\xda\x6a\xf4\x80\x15\xbf\x73\xab\xd1\xd3\xf8\x2d\xdb\x2b\xfb\x10\x7e\x0b\x58\xf9\xe6\xd9\xf8\x2d\x7d\x5a\x1b\x89\x02\x6d\x55\x6f\xc0\x1a\xf3\xaf\x79\xda\xad\x28\x0e\xd8\xb7\xc4\x6b\xf6\x69\xed\x04\xd6\x7c\xf8\x61\x8f\x19\x37\xca\xf6\xca\xa6\x87\xc4\x02\x56\x3e\x93\xf6\xc9\x8d\x12\x90\xc4\xac\x4f\x8b\xee\xb4\x9c\xc2\x3c\x6d\x95\x6d\x80\xcc\x69\xad\xb2\x4d\x9f\xec\x82\x57\x4c\x65\x65\x6c\xc0\x9a\x31\xc0\x90\x64\xc0\xd5\x2c\x03\x41\xef\x63\xc9\x24\x33\x49\x63\xc9\x80\xf9\x67\x2b\x23\x68\x71\x26\x73\x77\x23\xb1\xf4\x69\x71\x26\xa9\x4f\xe3\x9d\x80\x95\xaf\xba\xad\xf0\x4c\x9f\x8e\x79\xc9\x8f\xdd\x78\x27\x60\x8d\x1c\x1a\xd1\x4e\xc0\xbe\x25\xa1\x4b\xe3\x9d\x80\x95\x40\xc6\x3e\x79\x43\x42\x3b\xb9\x9a\xe5\x79\x2d\xe2\xc0\x0a\xfb\xac\x15\xa8\x01\x2b\x9f\x8d\x5b\x81\x9a\x3e\xb9\x3b\x92\xaa\xa5\x4f\xd6\xf2\x29\x03\x60\xf6\x3c\x84\x95\x3e\x59\xc6\x49\x7e\xd2\x27\xcb\x38\xb0\x92\x71\xae\x11\x56\xc0\x4a\x98\x52\x23\xac\x80\xe5\x94\xa7\xb2\x0d\xd8\xb7\x97\x8e\xd2\x08\x01\x29\xe2\x1a\xad\x05\x5c\xcd\x5c\x6a\x7e\xd8\xdf\x6e\x91\x7e\x32\xb3\x93\x90\xa2\x4f\x66\x76\x60\xe5\xab\x54\xa3\xba\x80\xab\x59\xe6\x11\x5d\x82\xeb\x32\xa3\x85\x70\x5d\x3a\x5c\x97\x11\x3a\x46\xe3\xba\xf4\x78\x19\xa2\x68\xc8\x41\x71\x04\x56\xbe\xac\x37\xfa\x4b\x87\xd7\x72\x35\x3b\x23\x5b\x64\xb1\x12\x37\xa2\x37\x91\x5e\x2d\x97\x7e\xc9\x62\x51\xc4\x7a\xc0\x75\x01\x23\xec\x91\x1e\x56\x7f\x78\x27\xd7\x95\x79\x0e\xdb\xe0\x10\x01\x17\x35\xa7\xc4\x0d\xd8\xb7\xe4\xca\xe8\x61\xa9\x0f\x01\x14\x39\x56\xa3\xa7\x80\xab\x59\x6e\xca\x60\x0b\xc8\xac\xd7\x83\xbd\x16\x98\x8e\x61\x83\xbd\x36\x84\xac\xe4\xd4\x3b\x98\x6b\x83\xde\x48\xb8\x68\x0f\x7a\x63\xd0\x1b\x2b\x57\x52\x0c\x83\x62\x48\xb8\x68\x0f\x8a\x21\xb0\xd8\x66\x0a\xf2\x74\x48\x2c\x57\xb3\xf4\xea\xf4\x1c\x21\xbc\x25\x27\x5f\x2b\xab\xd3\x83\x16\x38\x8c\x2e\x2d\x30\x6c\xaa\x59\x07\x83\x16\xc0\x5c\xd9\x12\x0d\xd9\x98\x2b\x60\xc5\x27\xdf\x98\x2b\x60\xdf\x42\x4a\xef\xc1\x84\x0b\xac\x91\x49\x8f\xcc\xd2\x83\x35\x95\x00\xc6\xc6\xc1\xe8\x70\x30\xc6\x99\xc7\xc5\xc1\xe8\x69\xce\x84\xd1\xd1\xd3\x9c\x09\xcc\xd0\x75\x1a\x2d\xa3\x11\x2e\xb6\xb0\x2b\x1a\xe1\x02\xac\xc4\xce\x35\xc2\x45\x23\x5c\x6c\xe1\x8b\x35\xc2\x05\x98\xf9\x52\xd4\x08\x17\x3d\x19\xf9\xa1\xbc\x35\xda\x04\x18\x29\x20\xda\x93\x91\x3f\x55\xf7\x78\x12\x79\x34\x0e\x95\xb0\xbe\x5a\x9d\x1a\xb0\xce\x87\x66\x79\x31\xf3\x7e\x7f\x59\x57\xb8\x0f\x60\x25\x86\xaf\x51\x1f\xc0\x3a\x33\x01\x51\x1f\xc0\xbe\x85\x80\xd2\xf3\xd4\xd1\x53\xad\xea\x33\x22\x1d\x1d\x86\x2d\xbb\xfb\xf4\xfe\x02\xf3\x7e\x34\x46\xd1\xe4\xf8\x4e\xce\xef\x9e\x74\xf1\x94\x9c\x3e\x8a\x72\x3a\xa3\x4d\x3e\xc3\x73\x23\x33\x46\xf1\x19\x9e\xd1\x6d\x93\xcf\x10\x43\x62\x4b\x81\xcf\xc6\x90\x00\xeb\x7c\xb8\xe9\x8f\xa8\x34\x4b\x4f\xcd\x86\xc0\x25\xcb\xf3\xf2\x1a\x06\xe4\x28\x6f\x0c\x89\x9e\x3c\x84\x89\x3c\xeb\xc9\x43\x38\x95\xea\x35\xbc\xb6\x89\xc9\x43\x98\xb2\xa2\x3d\xed\x13\xd3\x67\xf8\x6c\xf9\x88\x14\x3d\x29\xfb\x70\xd0\x1b\xf7\x01\xac\x10\x3d\x1b\xf7\x01\xac\xab\x57\x7f\xb9\x6f\xa3\x46\xf4\x64\xbc\x25\xfc\xb0\x27\x5d\x1d\x98\x3e\x31\x28\xff\xd3\x29\xec\xb3\x6f\x09\x3f\x6c\x95\x7d\xc0\x58\xa6\x3b\x1d\x3c\x29\xdc\x7c\xb1\x6e\x75\x7c\x80\x5c\xea\x8d\x55\xd1\x8b\x9d\x73\xe6\x78\xa2\x72\x0d\x98\x5b\x8e\x22\x2a\xd7\x80\x65\x68\x54\xae\x01\xcb\xd8\x2b\x5c\xd3\xcb\xc1\x34\xa9\xb5\x5b\xcd\x18\xb0\xce\x68\x0e\x6c\x09\x30\xf2\x45\xbc\xb1\x25\x1a\x5b\x62\x4b\xce\xec\xc6\x96\x00\x92\xb1\x37\xb6\x04\x58\x89\x0a\x6d\x64\x89\xc6\x52\xd8\x92\x74\xb0\xb1\x14\x80\xfc\xec\x8d\xa5\x00\xf6\x2d\x21\x32\x8d\xa6\x00\xe6\x73\xb8\xd2\xa3\x31\x8a\x12\x70\xd3\x98\x0b\x60\x25\x78\xb4\x31\x17\x3a\xc5\x60\xae\x66\xe9\xfc\x79\x3f\x48\xea\x8a\x67\xbc\x55\x7b\xe9\x75\xcf\xd9\x68\x30\x9c\x80\x5e\x0c\x94\xa4\x7f\xee\x65\xe6\x2d\xf1\x1f\x31\x50\x96\x89\x87\x01\xb0\x9d\xcb\xa5\xba\x35\x75\x4b\x33\xdd\xe2\x80\x4b\x2e\xe6\x16\xa0\x0f\x56\x62\x62\x5b\x80\x7e\x2f\xf6\x83\x8f\x94\x8b\xfd\x10\x90\x9d\xbe\xd5\x33\x01\xfb\x36\xb2\x62\x85\xe3\x83\x95\xd4\xd4\x2d\x1c\xbf\x17\x25\x3c\xb2\x62\xc5\xc1\xf7\x9b\xc6\x4d\x49\x8c\x56\x36\x04\xac\x33\x07\x7a\x65\x43\xfa\x4d\xe3\x26\xf7\x63\xbf\x69\xdc\x37\x8d\xfb\x74\xe5\x20\xfa\x68\x76\x44\xf6\x25\x4b\x52\xe8\x38\x63\x55\x12\xe9\x44\xb8\xef\xdb\x70\xa9\x39\x18\x98\xc9\x75\xd8\x22\xdc\xfb\x6d\x4b\xce\x47\xe6\x7e\xdb\x92\xdf\x77\x4c\x23\xd1\x22\xca\x4c\xcd\xd6\x22\x4e\xbd\xdf\xa6\x65\xa2\x4c\xfb\x7d\xdc\x37\xcd\xb4\xcc\x61\xe1\x6d\x5a\xbe\x39\xa7\x47\x4c\xe9\xb7\x79\x19\x58\x67\xd4\xfc\x9b\x73\xfa\x6d\x9b\x1e\x59\x58\x6f\xdb\xf4\x5b\x74\xd4\x2d\xf2\xb8\x89\x2f\xde\x46\x3c\x54\x6f\x33\x29\xb0\x4e\x3d\xb0\xd7\xbe\x99\xd7\x7c\x12\xaa\xa1\x80\x99\x84\xfd\xfd\x66\x5e\xbf\x99\xd7\xce\xfd\x6f\xe6\x75\x60\x51\xcc\x6a\xa6\x80\x45\xa9\xa8\x99\xd2\x82\xf4\x37\xdb\xb4\x20\xfd\x7e\x27\x6b\xc3\xe6\xc0\xfd\xf6\x01\x26\xb0\xec\xbf\x82\xf4\xc1\x4a\xe8\x73\x0b\xd2\xef\x37\xb5\xe9\x5c\xfe\xa6\x36\xdf\xd4\xa6\x57\x4a\x6d\x8a\xbe\xdf\x98\x98\xa2\xef\xc1\xa2\xc9\x44\xdf\x83\x45\x07\x8b\xbe\xef\xf7\x3d\xc7\x63\x61\x8a\xbe\x07\x2b\x01\xe8\x2d\xfa\x1e\xcc\x71\xff\x98\x8e\x9a\xe2\x2f\xb7\x34\x17\xee\x29\x1e\xc5\x2f\xfa\xbe\x3f\xcc\x00\x67\x5f\xc1\xf1\x60\xd1\x9e\x1f\x66\xc0\x87\xef\xc5\x59\xeb\x63\x06\x7e\xc4\xe7\x65\xc3\x14\x42\xdf\x1f\xbe\x3e\x36\xec\x87\xed\xf8\x11\x78\x17\x07\xc4\xc7\x3c\x0d\xa8\xdd\xd0\x1f\xf3\xf4\xc3\x74\x64\xd6\x7e\x8e\xfb\xa6\xd9\x57\x6f\xd1\x87\x28\x71\x60\x9b\xc7\xc8\x12\xfa\xf0\xba\xb1\x30\x3f\xe6\xc7\x87\xd7\x2d\xea\xf3\x63\x7a\x24\xd6\x7c\xdf\xa6\x9b\xda\xcc\x3f\x1c\xae\xb1\x16\x04\x9b\x83\x35\xa2\x65\x3f\xf6\xf2\x8f\xbd\x9c\x73\xf5\x33\xee\x9b\x7e\x43\x19\x73\xe5\x8f\xe8\x97\xe0\x36\xbf\x5f\x44\xe5\xca\x34\x33\xd9\x3e\xe6\xc2\x7c\xe5\x71\xcd\x85\xcf\x1d\x8f\x46\xb4\x11\xb9\x69\xe6\xe9\xc7\x41\x25\x30\x9f\xd1\xa8\x1f\x7b\xe4\x67\xb9\x43\xd4\xfd\xc7\xa9\x24\xb0\x12\x9c\xdd\x1f\x7b\xa4\x00\xf7\x6d\x8e\xff\xaf\x6c\xc8\xf8\xaf\xfb\xb6\x58\xf7\xfe\x26\xda\x63\x4b\x18\x75\x7f\x45\x7b\x04\x56\x22\x06\x5b\x9d\x9b\xfe\x9a\x3e\x09\xc3\xed\xaf\xe9\xf3\x75\x40\x19\x44\x19\xd5\xef\xfd\x76\xe3\x8e\x15\xeb\x0e\xe6\x8a\xd2\x14\xeb\xde\x5f\xb6\x60\x12\x86\xb6\x3a\x31\x60\x84\x8f\xd3\x5f\xb6\x60\x6a\xc2\x5c\xcd\x56\x64\x93\x2c\xd9\x82\x0f\x22\xcf\x61\x3f\x5b\x9b\x4b\x9b\xac\xe3\x78\xbe\x86\xeb\x4b\x0b\x7d\x99\xfc\x49\x78\xdc\x5f\x6a\xe8\xeb\xe0\x1f\x95\xf3\x65\x32\x7e\x69\xa6\x44\x7d\xf5\x97\x66\xfa\x3a\xf8\x67\x6a\x7f\xcd\xbc\x84\xc1\x5f\xcd\xd2\x2d\x6a\xe8\x1b\x57\x7f\x6a\x1c\xf5\xd7\xcc\x13\x1a\xbf\x31\xb5\x85\xc6\xf7\x97\x1a\x4a\xae\xe4\xfe\x52\x43\x81\x95\x34\xfc\xfd\xa5\x86\xbe\x8e\xef\xcb\x5d\x1d\xdf\xbf\x8e\xef\x2f\x22\x63\xe9\x95\xaf\xa8\x09\xe1\xf2\xfd\xb3\x8a\x53\x7a\xbd\x7f\x56\xf1\x4f\x48\x40\x1c\x4c\xea\xa8\xf4\x5d\x47\x65\xd3\xea\x45\xa4\x5b\xb1\xd2\x95\x48\x01\x8b\x97\x48\x50\x3d\x18\x0e\xbf\x82\xea\xc1\xbe\x89\x89\x51\x22\x05\x2c\x3b\xcb\xcf\xab\xff\xd9\x6d\x52\x37\xb3\x05\xda\x83\x65\xcb\x50\x21\xa5\x7f\x1c\xf6\xc9\x58\xdd\x02\xed\xc1\x1a\x2f\x22\x3d\x08\x19\x74\x0b\xfb\xb1\x05\xda\x83\x65\x9f\x12\x67\x0f\x56\xaa\x82\xb5\x38\x7b\x30\x7d\x9a\x13\x67\x0f\xf6\x2d\x69\x9c\xfb\x67\x6e\x05\xd6\x7c\x11\xe9\x14\x2b\x2b\x69\x9c\xfb\xc7\xca\xfa\x71\x3d\xe5\x78\xa6\xb6\x4a\xff\x6c\x84\x49\xe3\xdc\xaa\xa6\x80\x95\x4c\xf0\xad\x6a\x0a\xb8\x9a\xa5\x57\xa6\x60\x60\x85\x69\xdb\x3f\xa7\x96\x9f\x53\x4b\xd2\x2c\xb7\x10\x7d\x30\xf9\xdb\x44\xe8\xf7\x2f\x71\x38\x7b\x18\xa8\xfd\xa3\xaf\x02\x6b\xc4\xdf\xf5\xa3\xaf\x44\xed\xef\x2c\x73\x51\xfb\x9d\xea\x26\x97\x2c\x77\x60\xa0\x05\xe6\x6e\xc4\x39\x95\x52\xfd\x64\xdf\x1f\x51\xd6\xaa\x9f\x80\x99\x32\x32\xad\xfa\x49\xa7\xfa\xc9\xd5\xcc\xaf\x79\xcd\x77\xf5\xba\xf4\x9e\x42\xfc\xdd\x79\xad\xf3\xb8\x14\x62\x28\x00\xfb\x9e\xe4\xfb\x8d\x03\x00\x46\xd2\xbe\x37\x0e\x40\x27\xf8\xfe\x6a\x96\xde\x53\x92\xa2\xef\x93\x74\xa7\x05\xdf\x83\xed\x74\x28\x14\x7d\x0f\x66\xd2\x81\xb5\xe0\x7b\xb0\x3f\x18\x15\x42\xed\xc1\x8b\x0d\x2b\xd4\xbe\xeb\x1e\xb7\x58\x59\xa2\xa4\x5b\x08\xee\xfe\x58\xaf\xff\x47\xe5\x5e\xff\xff\xeb\xfb\x9f\xff\xed\x7f\xfe\xaf\xf7\x3f\xff\xf7\xfb\x5f\xeb\x1f\xdf\xff\xfc\xe3\x8f\xfa\xb7\xff\xf8\xfd\xcb\xf7\x3f\xfe\xf1\xdf\x2f\xe9\x3f\x7e\xd5\xff\xf2\x6f\xf5\x47\xfd\x9f\x7f\xff\xcf\x3f\xbe\xf5\x8f\x7f\xfe\xfb\x3f\xaf\xab\xf2\xf7\x7f\x03\x00\x00\xff\xff\x9a\x2a\xf8\x63\xc7\x3b\x01\x00"); +func _agdb ()(*asset ,error ){_ace ,_dgaa :=_dgca ();if _dgaa !=nil {return nil ,_dgaa ;};_afca :=bindataFileInfo {_ee :"Adobe-Korea1-1",_ffd :1845,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491379,0)};_egab :=&asset {_da :_ace ,_dc :_afca };return _egab ,nil ; +};func _ege ()([]byte ,error ){return _gb (_ddae ,"KSC-EUC-H")};func _gfa ()([]byte ,error ){return _gb (_agd ,"Adobe-GB1-3")};func _bfda ()([]byte ,error ){return _gb (_cbca ,"GBT-EUC-V")};var _aff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x2c\xde\x6b\x69\xfa\x0f\x4a\x17\x8e\x35\x0e\x86\x46\x36\x8e\xb3\xc8\xb7\x2f\xe7\x1e\x3b\x94\x2e\x82\xa3\x13\xe9\x4a\xf9\x1d\x8f\xe6\xe6\xee\xe1\xfe\x61\xdd\x9f\xd3\xcd\xcf\xa7\xc3\xf6\xb1\x9f\xd3\x6e\xbf\x2e\xa7\xfe\x7a\x78\x3b\x6d\x7b\x7a\xea\xcf\xfb\x75\x18\x44\xd3\xb2\xdf\x9e\xaf\x87\xf1\xb1\x7d\xd9\x1c\x87\x01\xd7\x3f\xbe\xbf\x9e\xfb\xcb\xc3\xba\x3b\x24\xe3\x79\xcb\xdb\xf1\x72\x6e\x4a\x37\xbf\xf4\xe7\xfd\xeb\xf9\xf4\x9e\x3e\x7d\x59\x0e\x4f\xfd\x87\xb4\xf4\x1d\xf2\x9f\x4e\x4b\x3f\xed\xd7\xe7\xf4\xe9\xee\xfb\xa3\x7c\xc4\x8f\x6f\xc7\xe3\x3f\xfd\xa5\xaf\xe7\x54\x22\xeb\xeb\x12\x9f\xc3\xcd\xdd\xb7\xcd\xf1\xfb\xe6\xa5\xa7\x9b\x98\xf4\x19\xd7\x7d\xe6\x49\xf1\xb7\xdf\xfb\xe9\x75\x7f\x58\x93\xfc\x98\xf3\x7f\xe2\x5f\xdf\x8f\x3d\xc9\x65\xc6\x9f\xbf\x3d\xdc\xa7\xbf\x24\x49\x4e\x5a\xca\xd4\xfe\xbe\xe4\x7f\x7c\x3b\x2c\x3d\xe5\xeb\x9d\x1e\xee\xef\x0e\x6f\xeb\x39\xc9\x94\x5b\x63\x28\xfc\x97\xb6\x87\xa5\xbf\x1e\x37\xdb\x7e\xda\xac\xcf\x7d\x48\x69\xce\x39\xe7\xdb\x34\xfb\x97\xaf\x5f\x6f\xf1\xb4\xff\x3b\x63\x18\xcb\xe5\xca\xfd\xc2\xe4\x7a\x45\xce\xbb\xdd\x6d\xca\xc3\x9c\x85\xc7\x82\x63\x2d\x75\x98\xb3\x32\x51\x24\x45\x74\x98\xb3\x31\x31\x24\x63\x6d\xc3\x9c\x9d\x89\x23\x91\xac\x3e\xcc\xb9\x30\x2a\x11\x69\xc3\xec\xca\xa8\x46\x54\x0c\xc3\x47\x46\x63\x44\xe3\x84\xe9\x8d\x51\x8b\x27\xc8\x8e\xf1\x13\xa3\x29\x22\xcb\x18\xbf\x61\xb4\xb9\x3c\x27\xc6\x3f\x31\x7a\x8a\xa8\x09\xc6\x6f\x19\x6d\x11\x59\x1e\x31\x7e\x61\xb4\x44\x64\x8a\xf1\x9d\x51\x8f\xa8\x34\x8c\xdf\x31\xda\x45\xd4\x3c\x0f\xb3\x50\x4a\x42\xca\xf3\x54\x87\x59\x88\x25\x81\xe5\x56\x74\x98\x85\x5a\x12\x5a\x5e\x73\x1b\x66\x21\x97\x04\x97\xb7\xea\xc3\x2c\xf4\x12\xbf\x98\x62\x3c\xbd\x24\xbc\x8a\x8d\x18\x4f\x2f\x09\xaf\x52\x0d\xe3\xe9\x25\xe1\x55\x5a\xc3\x78\x7a\x49\x78\x55\x71\x8c\xa7\x97\x84\x57\xf5\x8c\xf1\xf4\x92\xf0\xaa\x15\xc5\x0a\xbd\x24\xbc\xea\x84\x66\x85\x5e\x12\x5e\xa3\xa0\x5a\xa1\x97\x84\xd7\xe8\xa8\x56\xe8\x25\xfd\xd2\x3f\xc6\xd3\x4b\xc2\x6b\x9c\x50\xad\xd2\x4b\xc3\xab\x09\xaa\x55\x7a\x69\x78\x35\x47\xb5\x4a\x2f\x0d\xaf\x36\xa2\x5a\xa5\x97\x86\x57\x9b\x50\xad\xd2\x4b\xc3\x6b\x52\x54\xab\xf4\xd2\xf0\x9a\x1c\xd5\x2a\xbd\x34\xbc\xa6\x11\xd5\x2a\xbd\x34\xbc\xa6\x09\xd5\x2a\xbd\xb4\x5d\xbf\xab\x98\x4f\x30\x9d\x98\x39\xca\x55\x8a\xe9\x86\xd9\x88\x76\x95\x64\x1a\x64\x68\x1f\xb7\xa0\x99\x6e\x99\x29\xfa\x55\xa2\xe9\xc2\xac\xa0\x60\xa5\x9a\x76\x66\x23\x1a\x56\xb2\xe9\x8e\x8b\x24\xa3\x62\xa3\x9b\x65\x66\x8a\x8e\x8d\x70\x26\xcc\x0a\x4a\x36\xca\x99\x5e\x17\x58\x1e\x66\x23\x9d\x05\x9d\x58\x46\xcd\x46\x3b\xe3\xda\x34\x43\xcf\x46\x3c\xe3\xe2\xb4\x82\xa2\x8d\x7a\xc6\xd5\x69\x0d\x4d\x1b\xf9\x8c\xcb\xd3\x33\xaa\x36\xfa\x19\xfd\xdc\xd0\xb5\xd1\xcf\xe8\xe7\x05\x65\x1b\xfd\x8c\x7e\xde\xd0\xb6\xd1\xcf\xe8\x57\x04\x75\x1b\xfd\x6c\x7b\x7d\x2b\xe0\x1e\xf4\x33\xfa\x95\x8a\xc2\x8d\x7e\x46\xbf\xd2\xd0\xb8\xd1\xcf\xe8\x57\x05\x95\xfb\xe5\x1d\x48\xbf\x6a\xe8\xdc\xe9\xe7\xf4\xab\x15\x9d\x3b\xfd\x9c\x7e\xb5\xa1\x73\xa7\x9f\xd3\x6f\x14\x74\xee\xf4\x73\xfa\x8d\x8e\xce\x9d\x7e\x4e\xbf\xb1\xa2\x73\xa7\x9f\xd7\xeb\xab\x0c\xf7\xa0\x9f\xd3\xaf\x09\x3a\x77\xfa\x39\xfd\x9a\xa3\x73\xa7\x9f\xd3\xaf\x55\x74\xee\xf4\xf3\x4d\x8b\x6c\x72\x8f\x37\xfa\xf5\xcd\x8d\xdf\xb1\xef\x7d\xec\x44\xdb\xb7\xd3\xa9\xaf\xe7\xd8\xf5\x62\xb3\xc1\x5e\xb1\x5f\xfb\xc7\x0e\x7a\x3c\x1c\x71\x55\xfc\xfc\x1b\x00\x00\xff\xff\x71\x52\xeb\xb8\x6d\x07\x00\x00"); +func _fbb ()(*asset ,error ){_cead ,_dfcd :=_bcgd ();if _dfcd !=nil {return nil ,_dfcd ;};_gagd :=bindataFileInfo {_ee :"KSCms-UHC-H",_ffd :13690,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492561,0)};_cfcd :=&asset {_da :_cead ,_dc :_gagd };return _cfcd ,nil ; +};func _bbbg ()(*asset ,error ){_bbfa ,_gfge :=_gbd ();if _gfge !=nil {return nil ,_gfge ;};_ebaf :=bindataFileInfo {_ee :"Adobe-Japan1-2",_ffd :1136,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491314,0)};_edg :=&asset {_da :_bbfa ,_dc :_ebaf };return _edg ,nil ; +};func _gae ()([]byte ,error ){return _gb (_bdeee ,"NWP-V")};func _gbcf ()(*asset ,error ){_gfcd ,_ecca :=_aaba ();if _ecca !=nil {return nil ,_ecca ;};_dfae :=bindataFileInfo {_ee :"UniAKR-UTF32-H",_ffd :248243,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492666,0)}; +_bfee :=&asset {_da :_gfcd ,_dc :_dfae };return _bfee ,nil ;};func _cefb ()([]byte ,error ){return _gb (_dafd ,"UniJIS2004-UTF8-H")};var _gcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4d\x8b\x5b\x37\x14\x06\xe0\xbd\x7e\x85\x96\xe9\xa2\xb5\x74\x3e\x25\x10\x17\x9a\x0f\xd2\x59\xa4\x29\x4d\xd3\x16\x4a\x17\x1e\x5f\x79\x30\x74\x6c\x63\x7b\x16\xf9\xf7\xe5\x9c\xe3\xa4\xd0\xc5\xe0\x99\xd7\xd2\x3b\x57\x8f\xc4\xd5\xe6\xcd\xc3\xdb\x87\xe3\xe1\x96\x37\xbf\x5c\x4e\xbb\x4f\xf3\x96\xf7\x87\xe3\x7a\x99\xd7\xd3\xcb\x65\x37\xf3\xe3\x7c\x3a\x1c\x53\xaa\x90\xd7\xc3\xee\xf6\xf5\x4f\xff\xd8\x3d\x6f\xcf\x29\xd9\xfc\x4f\x5f\xae\xb7\xf9\xfc\x70\xdc\x9f\x32\xc6\xb8\xf5\xe5\x7c\x1f\x9b\xf3\xe6\xd7\xf9\x74\xb8\xde\x2e\x5f\xf2\xab\x1f\xd7\xd3\xe3\xfc\x2e\xaf\x73\x6f\xf9\xc7\xcb\x3a\x2f\x87\xe3\x53\x7e\xf5\xfe\x75\xfd\x96\x7e\x7a\x39\x9f\xff\x99\xcf\xf3\x78\xcb\xc5\xb3\x79\x5c\xfd\x33\x6d\xde\x7c\xd8\x9e\x7f\xde\x3e\xcf\xbc\x79\xff\xfa\xfb\x9f\x3c\xf4\xec\xf7\x79\xb9\x1e\x4e\xc7\xdc\x7f\x28\x45\xfe\x8b\x7f\xfb\x72\x9e\xb9\xde\xe7\x7e\x7e\x78\xfb\x71\xbf\xbf\xce\x5b\x86\x12\xbd\x9b\x3f\x3f\x3f\xbc\xcd\x7f\xd5\x5c\x4b\x06\x46\x81\xbf\xef\x43\xff\xf8\x70\x5a\xe7\xfd\x9f\xa7\x1a\xeb\xd8\x9d\xd6\x79\x3d\x6f\x77\xf3\xb2\x3d\x3e\xcd\x94\xf3\x80\x0a\x75\xc9\x43\xdf\xe9\xbb\xc5\x9e\xf1\x7f\x23\x52\x6b\xf7\x99\x87\x35\x92\xaf\x33\xa0\xea\x5c\x72\x97\x34\x00\xd0\x03\x10\x58\x72\xed\xc5\x12\xe1\x48\xe6\x92\x81\x3c\xd1\x18\xa3\xbb\x25\x03\x5b\x82\x51\x83\x56\x03\x02\x69\x00\x45\x42\x8a\x4b\x46\xb6\x66\x8e\x84\x55\x96\x4c\xd8\xd3\x00\x89\x44\xb0\x2d\x99\x81\x2d\xa1\x48\x94\x97\xcc\x64\x63\x34\xc6\xa8\x7d\x21\xc5\x9a\x95\x23\xb1\x87\x10\xb4\x59\x2d\xc6\x34\x2a\x4b\x16\x69\x96\x90\x3f\x73\x93\xed\x92\xb5\xd8\x13\x76\x20\x4b\xba\xec\x97\xac\x68\x63\xb6\x31\x6b\x6b\xcf\xdc\x2a\xa5\x01\x8f\x91\x3c\x5a\x4f\x2f\x2d\x0d\x2c\x9e\x60\x71\x1e\x5b\x3b\x06\x18\x3a\x58\x2d\x48\x69\x20\x44\x04\x1e\x55\xb0\x79\xe1\x81\xee\x51\x01\x20\x0d\x0c\x10\x24\x8f\xb0\x4a\x1a\x18\x22\xc8\x1e\x51\xb5\xfa\x20\x41\xf1\x88\x8b\xd5\x87\x00\x6a\x44\xdd\xea\x63\xc1\xd8\x3c\x92\x6e\xf5\x3d\xa2\xee\x91\x36\xab\x8f\x05\xa2\x2f\xb0\xb6\x66\xf5\xb1\x42\x7c\xf4\xa8\xab\xd5\xef\x22\xda\xf9\xd6\x15\xd3\xc3\x35\xa2\xd5\xa3\x6a\xdb\x89\x33\xa2\xe9\x11\xd8\x7e\xe2\x3e\xa2\xbd\x47\x68\xc7\x80\x82\x8b\x9c\x0b\x88\x28\x0d\x0a\x2f\x72\x2f\x60\x83\xa7\xf0\x22\x88\xc3\x82\x90\x06\x85\x17\xc5\xf9\x51\x90\x34\x28\xbc\xc8\xbd\xa0\x81\xd5\x87\x17\xb9\x17\x74\xdb\x32\x0a\x2f\x72\x2f\x2c\xb6\x67\x14\x5e\xe4\x5e\x58\xed\xc8\x50\x78\x51\x8b\xc8\xce\x39\x85\x17\xb9\x17\x82\x1d\x74\x0a\x2f\x72\x2f\xc4\x66\xf5\xe1\x45\xee\x85\xa4\x56\x1f\x5e\xe4\x5e\xc8\x6a\xf5\xe1\x45\xee\x85\x22\x56\x1f\x5e\xe4\x5e\xa8\x62\xf5\xe1\x45\xee\x85\x8d\x29\x0d\x0e\x2f\x76\x2f\xec\xd4\xd2\xe0\xf0\x62\xf7\xa2\x42\x90\x06\x87\x17\xbb\x17\x55\x94\x34\x38\xbc\xd8\xbd\x08\xb0\xa4\xc1\xe1\xc5\xee\x45\x08\x56\x1f\x5e\xec\x5e\x44\xd5\xea\xc3\x8b\xdd\x8b\xb8\x5a\x7d\x78\xb1\x6a\x5f\x32\x49\xb1\xfa\xf0\x62\xf7\x22\xe9\x9c\x06\x87\x17\xbb\x17\x69\xeb\x69\x70\x78\xb1\x7b\x51\x6b\x98\x06\x87\x17\xbb\x17\x75\xd5\x34\x38\xbc\xd8\xbd\xb8\x68\x4d\x83\xc3\x8b\xdd\x8b\xab\x58\x7d\x78\xb1\x7b\x31\xb0\xd5\x87\x17\xbb\x17\x23\x63\x1a\x12\x5e\xe2\x5e\x4c\xa4\x69\x48\x78\x89\x7b\x31\x53\x4d\x43\xc2\x4b\xdc\x8b\xfd\x0d\x21\xe1\x25\xee\xc5\x0a\x3d\x0d\x09\x2f\x71\x2f\x6e\x60\xf5\xe1\x25\xee\xc5\xbd\x5a\x7d\x78\x89\x7b\x49\xa9\x56\x1f\x5e\xe2\xe7\x4b\x6a\xb1\xfa\xf0\x92\x16\x51\xb7\xfa\xf0\x12\xf7\x12\xe8\x56\x1f\x5e\xe2\x5e\x82\xcd\xea\xc3\x4b\xdc\x4b\xa8\x59\x7d\x78\x89\x7b\x09\xab\xd5\x87\x97\xb8\x97\x88\x58\x7d\x78\x89\x7b\x89\x8a\xd5\x87\x97\xb8\x97\x34\xd6\x34\x34\xbc\xd4\xbd\xa4\x73\x4d\x43\xef\x57\x84\x7b\x69\x21\x4e\x43\xc3\x4b\xdd\x4b\xab\xbd\x99\x35\xbc\xd4\xbd\x14\x10\xd3\xd0\xf0\x52\xf7\x52\x04\xab\x0f\x2f\x75\x2f\xfb\x3e\x0d\x0d\x2f\x75\x2f\xe5\x6a\xf5\xe1\xa5\xee\xa5\x52\xba\xdf\x4c\x5f\x6f\x20\xfb\xdd\x2e\xed\x6f\xf7\xe8\xee\xe5\x72\x99\xc7\x9b\x5f\xd9\x7e\x65\xda\x9d\x77\x38\xce\x6f\xd7\xff\xf9\x74\xb6\x59\xfe\xf3\x6f\x00\x00\x00\xff\xff\xa2\x28\xe2\xe9\x2a\x08\x00\x00"); +var _agd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\xcb\x6b\xe3\x56\x18\x05\xf0\xbd\xfe\x0a\x2d\xa7\x8b\x69\xee\xf7\xb8\x0f\x81\x18\xe8\x24\xcc\x90\xc5\xb4\xa5\xe9\x0b\x4a\x17\x8e\x75\x1d\x0c\x8d\x6c\x1c\x67\x91\xff\xbe\x9c\xef\xd8\x29\x74\x11\x1c\x9d\x48\x9f\x94\xdf\xc9\xd5\xcd\xcd\xed\xfd\xdd\xfd\xba\x3f\x8f\x37\x3f\x9f\x0e\xdb\x87\x7e\x1e\x77\xfb\x75\x39\xf5\x97\xc3\xeb\x69\xdb\xc7\xc7\xfe\xb4\x5f\x87\x41\x74\x5c\xf6\xdb\xf3\xf5\x30\x3e\xb6\xcf\x9b\xe3\x30\xe0\xfa\x87\xb7\x97\x73\x7f\xbe\x5f\x77\x87\xd1\x78\xde\xf2\x7a\xbc\x9c\x3b\x8e\x37\xbf\xf4\xa7\xfd\xcb\xf9\xf4\x36\x7e\xf8\x61\x39\x3c\xf6\xef\xc6\xa5\xef\x90\xff\x74\x5a\xfa\x69\xbf\x3e\x8d\x1f\xbe\x7e\x96\xf7\xf4\xe1\xf5\x78\xfc\xa7\x3f\xf7\xf5\x8c\x61\x7d\x37\xf4\x75\x89\xcf\xe1\xe6\xf6\xdb\xe6\xf8\xe3\xe6\xb9\x8f\x37\x31\xe8\xe3\xd7\xcf\xf2\x91\xe7\xc4\x8f\x7e\xef\xa7\x97\xfd\x61\x1d\xe5\xfb\x94\xf2\x7f\xf1\xaf\x6f\xc7\x3e\xca\x65\xc4\x9f\xbf\xdd\xdf\x8d\x7f\xc9\x28\x69\xd4\xec\xb9\xfe\x7d\xc9\xff\xf8\x76\x58\xfa\x98\xae\x37\xba\xbf\xbb\x3d\xbc\xae\xe7\x51\xd5\x32\xef\x30\x08\x7f\xa1\xed\x61\xe9\x2f\xc7\xcd\xb6\x9f\x36\xeb\x53\x1f\xc6\x71\x4e\x29\xa5\x4f\xe3\x9c\xeb\x97\x2f\x9f\xf0\xb0\xff\x3b\x63\x68\xed\x72\xe5\x7e\x61\x72\xbd\x22\xa5\xdd\xee\xd3\x98\x86\x39\x09\x8f\x05\xc7\x9a\xcb\x30\x27\x65\xa2\x48\xb2\xe8\x30\x27\x63\x62\x48\x6a\x69\xc3\x9c\x9c\x89\x23\x91\xa4\x3e\xcc\x29\x33\xca\x11\x69\xc3\xec\xc2\xa8\x44\x94\x0d\xc3\x2b\xa3\x1a\x51\x9d\x30\xbd\x31\x6a\xf1\x04\xc9\x31\x7e\x62\x34\x45\x64\x09\xe3\x37\x8c\x36\x97\xe7\xc4\xf8\x47\x46\x8f\x11\x35\xc1\xf8\x2d\xa3\x2d\x22\x4b\x15\xe3\x17\x46\x4b\x44\xa6\x18\xdf\x19\xf5\x88\x72\xc3\xf8\x1d\xa3\x5d\x44\xcd\xd3\x30\x0b\xa5\x24\xa4\x3c\x4d\x65\x98\x85\x58\x12\x58\x6e\x59\x87\x59\xa8\x25\xa1\xe5\x25\xb5\x61\x16\x72\x49\x70\x79\x2b\x3e\xcc\x42\x2f\xf1\x8b\x29\xc6\xd3\x4b\xc2\x2b\x5b\xc5\x78\x7a\x49\x78\xe5\x62\x18\x4f\x2f\x09\xaf\xdc\x1a\xc6\xd3\x4b\xc2\xab\x88\x63\x3c\xbd\x24\xbc\x8a\x27\x8c\xa7\x97\x84\x57\x29\x28\x56\xe8\x25\xe1\x55\x26\x34\x2b\xf4\x92\xf0\xaa\x82\x6a\x85\x5e\x12\x5e\xd5\x51\xad\xd0\x4b\xfa\xa5\x7f\x8c\xa7\x97\x84\x57\x9d\x50\xad\xd2\x4b\xc3\xab\x09\xaa\x55\x7a\x69\x78\x35\x47\xb5\x4a\x2f\x0d\xaf\x56\x51\xad\xd2\x4b\xc3\xab\x4d\xa8\x56\xe9\xa5\xe1\x35\x29\xaa\x55\x7a\x69\x78\x4d\x8e\x6a\x95\x5e\x1a\x5e\x53\x45\xb5\x4a\x2f\x0d\xaf\x69\x42\xb5\x4a\x2f\x6d\xd7\xbf\x55\xcc\x27\x98\x4e\xcc\x1c\xe5\x2a\xc5\x74\xc3\xac\xa2\x5d\x25\x99\x06\x19\xda\xc7\x2d\x68\xa6\x5b\x66\x8a\x7e\x95\x68\xba\x30\xcb\x28\x58\xa9\xa6\x9d\x59\x45\xc3\x4a\x36\xdd\x71\x91\x24\x54\x6c\x74\xb3\xc4\x4c\xd1\xb1\x11\xce\x84\x59\x46\xc9\x46\x39\xd3\xeb\x02\x4b\xc3\x6c\xa4\xb3\xa0\x13\x4b\xa8\xd9\x68\x67\x5c\x9b\x66\xe8\xd9\x88\x67\x5c\x9c\x96\x51\xb4\x51\xcf\xb8\x3a\xad\xa1\x69\x23\x9f\x71\x79\x7a\x42\xd5\x46\x3f\xa3\x9f\x1b\xba\x36\xfa\x19\xfd\x3c\xa3\x6c\xa3\x9f\xd1\xcf\x1b\xda\x36\xfa\x19\xfd\xb2\xa0\x6e\xa3\x9f\x6d\xaf\x6f\x05\xdc\x83\x7e\x46\xbf\x5c\x50\xb8\xd1\xcf\xe8\x97\x1b\x1a\x37\xfa\x19\xfd\x8a\xa0\x72\xa7\x9f\xd3\xaf\x18\x3a\x77\xfa\x39\xfd\x4a\x41\xe7\x4e\x3f\xa7\x5f\x69\xe8\xdc\xe9\xe7\xf4\xab\x82\xce\x9d\x7e\x4e\xbf\xea\xe8\xdc\xe9\xe7\xf4\xab\x05\x9d\x3b\xfd\xbc\x5c\x5f\x65\xb8\x07\xfd\x9c\x7e\x4d\xd0\xb9\xd3\xcf\xe9\xd7\x1c\x9d\x3b\xfd\x9c\x7e\xad\xa0\x73\xa7\x9f\xd3\xaf\x4d\xe8\xdc\xe9\xe7\xf4\x9b\x14\x9d\x3b\xfd\x9c\x7e\x93\xa3\x73\xa7\x9f\xd3\x6f\xaa\xe8\xdc\xe9\xe7\xf4\x9b\x26\x74\xee\xf4\xf3\x1d\xdf\xb5\x8a\xce\xf3\x65\x0f\x49\xd7\xf7\x6f\x1a\xe6\x4c\xbf\xcc\x5d\x21\x55\x74\x9e\xe9\x97\x95\xd9\x84\xce\x33\xfd\x72\xf8\xa9\x28\x3a\xcf\xf4\xcb\xce\x2c\xa3\xf3\x4c\xbf\x9c\x99\x55\x74\x9e\xe9\x97\xc3\x4f\x35\xa1\xf3\x5c\x2f\xfb\x59\x4e\xc8\xb4\x6a\xec\x6a\xd7\xdd\x0b\xdf\x63\xe7\x7f\xdf\x8c\xb7\xaf\xa7\x53\x5f\xcf\xb1\xef\xc7\x86\x8b\xfd\x72\xbf\xf6\xf7\xff\x21\x8e\x87\x23\xae\x8a\xaf\x7f\x03\x00\x00\xff\xff\x6b\x9d\x07\x71\x6f\x08\x00\x00"); +func _dgf ()([]byte ,error ){return _gb (_dag ,"Adobe-CNS1-UCS2")};func _dgca ()([]byte ,error ){return _gb (_afbf ,"Adobe-Korea1-1")};var _adbf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x90\xbb\x6e\xeb\x30\x0c\x86\x77\x3f\x05\xc7\x9c\xe1\x54\x96\x83\xf4\x32\x16\xf6\x50\x0d\x71\x8a\xba\x49\x0b\x14\x1d\x1c\x89\x32\x04\xd4\x94\xa0\xcb\xe0\xb7\x2f\x2c\x3b\xee\x20\x10\xfa\xc0\x4f\xd4\x4f\x56\x8b\x46\x90\x89\xc0\x5e\xbd\x95\x1d\x46\xd0\x86\x94\xc7\x60\x93\x97\x08\x57\x1c\x0c\x15\x05\xaf\x40\x19\x19\x6f\xd7\x5c\xe4\xd8\xbb\xa2\x60\x75\xdb\x55\xff\x5f\x20\x05\xbc\x01\xd1\x74\x53\x88\x38\x0a\xd2\x16\xf6\x8b\xa8\x92\x5b\x65\x00\xf6\x86\x83\x09\xd1\x4f\xb0\x7b\x56\xf6\x8a\xff\x40\xa1\x9e\xf9\xc9\x2b\xf4\x86\x06\xd8\xd5\x6d\xc7\x37\xdc\x25\xe7\x7e\x70\x44\x8a\x50\x66\x86\xa4\x72\x2d\x58\x7d\xec\x5d\xdb\x8f\x08\xcb\x37\x2e\x19\x67\x7a\x41\x1f\x8c\x25\xe0\xe5\x5d\x59\xde\xff\xf1\xf7\xc9\x21\xf0\x55\x3f\x8b\xe6\xa4\x75\xc0\x08\x4f\x87\xe5\x69\xf6\x79\x16\x0d\x7c\x71\xe0\x25\x54\x87\xfd\xe3\xc3\xf7\xda\xfa\x71\xb4\x6a\x13\x91\x54\x0e\xbb\x8d\x97\xc9\x7b\xa4\x98\xa3\xe6\x31\x73\x9f\x21\xdc\xf6\xe8\xac\x9b\xad\x7c\x7e\x03\x00\x00\xff\xff\x26\x9e\x08\x33\x73\x01\x00\x00"); +func _bfc ()(*asset ,error ){_bebd ,_ccc :=_dagf ();if _ccc !=nil {return nil ,_ccc ;};_dadg :=bindataFileInfo {_ee :"Adobe-Japan1-0",_ffd :1097,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491303,0)};_bag :=&asset {_da :_bebd ,_dc :_dadg };return _bag ,nil ; +};var _gege =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\xcb\x6b\xeb\x46\x14\x06\xf0\xbd\xfe\x8a\x59\xde\x2e\x6e\x3d\xe7\x31\x0f\x81\x08\x94\x84\x0b\xa6\xdc\xb6\x34\x7d\x41\xe9\x42\x91\xc6\xc1\xd0\x48\x46\xb6\x17\xf9\xef\xcb\x39\x9f\x9d\xc2\x5d\x04\x47\x9f\xa5\x23\xe5\xf7\x65\x46\xbb\xc7\xfd\xd3\x7e\x39\x5e\xc2\xee\x97\x6d\x9d\x9e\xdb\x25\x1c\x8e\xcb\xbc\xb5\xf3\x7a\xdd\xa6\x16\x5e\xda\xeb\x71\xe9\x3a\xe2\x30\x1f\xa7\xcb\xfd\xd0\x3f\xa6\xb7\xf1\xd4\x75\x76\xfd\xf3\xfb\xf9\xd2\xde\xf6\xcb\x61\x0d\x82\xf3\xe6\xeb\xe9\x76\x6e\x08\xbb\x5f\xdb\xeb\xf1\x7c\xd9\xde\xc3\xa7\x1f\xe6\xf5\xa5\x7d\x17\xe6\x76\xb0\xfc\xe7\x6d\x6e\xdb\x71\x79\x0d\x9f\x7e\x5c\xb7\x36\xd2\xc7\x17\xcf\xd7\xd3\xe9\xdf\xf6\xd6\x96\x4b\x60\xcf\xda\x32\xfb\x67\xb7\x7b\xfc\x3a\x9e\x7e\x1a\xdf\x5a\xd8\xf9\xac\xcf\xb8\xf2\x33\x4e\xf3\x6f\xff\x68\xdb\xf9\xb8\x2e\x81\xbe\x8f\x31\xfd\x1f\xff\xf6\x7e\x6a\x81\x6e\x53\xfe\xfa\x7d\xff\x14\xfe\xa6\x40\x31\x70\x4a\x4a\xff\xdc\xf2\x3f\xbf\xae\x73\x0b\xf1\x7e\xaf\xfd\xd3\xe3\x7a\x5d\x2e\x81\xaa\x24\xdc\xa1\x23\xfc\x59\xd3\x3a\xb7\xf3\x69\x9c\xda\x36\x2e\xaf\xad\x0b\x61\x88\x31\xc6\x87\x30\x68\xf9\xf2\xe5\xc1\x9e\xf7\x9b\x33\xba\xc2\xb7\x2b\x8f\x33\x92\xfb\x15\x31\x1e\x0e\x0f\x21\x76\x43\x24\x1c\x93\x1d\x73\xca\xdd\x10\x19\x09\x5b\x92\x88\xbb\x21\x0a\x12\xb1\xa4\xe4\xda\x0d\x51\x91\xa8\x25\x14\x59\xbb\x21\x26\x44\xc9\x23\xae\x36\x3b\x23\xca\x1e\x25\xb1\xe1\x05\x51\xf1\xa8\xf4\x36\xbd\x22\xaa\xfe\x04\x51\x6d\x7c\x8f\xa8\xf7\x48\xa2\x8d\x1f\x11\x8d\xb7\xe7\xb4\xf1\x2f\x88\x5e\x3c\xaa\x64\xe3\x27\x44\x93\x45\x12\x8b\x8d\x9f\x11\xcd\x1e\x09\xdb\xf8\x86\xa8\x79\x94\xaa\x8d\x3f\x20\x3a\x78\x54\x35\x76\x03\x41\x8a\x5c\x4a\x63\x9f\xbb\x81\x80\x45\x8e\xa5\x92\xb8\x1b\x08\x5a\xe4\x5a\x9a\x63\xed\x06\x02\x17\x39\x97\xd6\xac\xdd\x40\xf0\x22\xbd\x99\xda\x78\x78\x91\x7b\x25\x29\x36\x1e\x5e\xe4\x5e\x29\x8b\x8d\x87\x17\xb9\x57\xaa\xd5\xc6\xc3\x8b\xdc\x2b\x93\xda\x78\x78\x91\x7b\x65\x8d\x36\x1e\x5e\xe4\x5e\x39\x5b\xb1\x04\x2f\x72\xaf\xdc\x5b\xb3\x04\x2f\x72\xaf\x42\x56\x2d\xc1\x8b\xdc\xab\xa8\x55\x4b\xf0\xa2\x76\xeb\xdf\xc6\xc3\x8b\xdc\xab\xf4\x56\x2d\xc3\x8b\xdd\xab\x92\x55\xcb\xf0\x62\xf7\xaa\x6a\xd5\x32\xbc\xd8\xbd\x6a\xb1\x6a\x19\x5e\xec\x5e\xb5\xb7\x6a\x19\x5e\xec\x5e\x3d\x5b\xb5\x0c\x2f\x76\xaf\x5e\xad\x5a\x86\x17\xbb\x57\x5f\xac\x5a\x86\x17\xbb\x57\xdf\x5b\xb5\x0c\x2f\xae\xf7\xff\x55\x9b\x0f\x30\xee\x91\xa9\x95\xcb\x10\xe3\x11\x59\xb1\x76\x19\x64\xec\x64\xd6\xbe\xdd\x02\x66\x3c\x21\x63\xeb\x97\x81\xc6\x33\xb2\x64\x05\x33\xd4\xb8\x21\x2b\xd6\x30\x83\x8d\x0f\x58\x24\xd1\x2a\x16\xb8\x49\x44\xc6\xd6\xb1\x00\x4e\x08\x59\xb2\x92\x05\x72\xc2\xf7\x05\x16\xbb\x41\x40\x27\x4e\x47\x12\xad\x66\x81\x9d\x60\x6d\x8a\x58\xcf\x02\x3c\xc1\xe2\x94\x64\x45\x0b\xf4\x04\xab\x53\xaa\x35\x2d\xe0\x13\x2c\x4f\x8d\x56\xb5\xc0\x4f\xe0\xa7\x62\x5d\x0b\xfc\x04\x7e\x9a\xac\x6c\x81\x9f\xc0\x4f\xab\xb5\x2d\xf0\x13\xf8\x25\xb2\xba\x05\x7e\x32\xdd\x77\x05\xbb\x07\xfc\x04\x7e\x29\x5b\xe1\x02\x3f\x81\x5f\xaa\xd6\xb8\xc0\x4f\xe0\x97\xc9\x2a\xd7\xdb\x1e\x08\xbf\x2c\xd6\xb9\xc2\x4f\xe1\x97\xb3\x75\xae\xf0\x53\xf8\xe5\x6a\x9d\x2b\xfc\x14\x7e\x85\xac\x73\x85\x9f\xc2\xaf\xa8\x75\xae\xf0\x53\xf8\x95\x6c\x9d\x2b\xfc\x34\xdf\xb7\x32\xbb\x47\xb9\xed\xc7\xa3\x65\x95\x4a\xf6\x5d\xf9\xbe\xfb\xda\xef\xf6\xfe\xfa\x78\x9f\x4c\xd7\x6d\x6b\xcb\xc5\xdf\x5e\xfe\xc2\xb0\xfd\xfe\xb8\xb4\x8f\x37\xe1\x69\x3d\xd9\x55\xfe\xf3\x5f\x00\x00\x00\xff\xff\x4c\xe9\x48\x7c\x35\x07\x00\x00"); +func _aded ()([]byte ,error ){return _gb (_eece ,"Adobe-Japan1-3")};var _edaf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x8b\x1b\x47\x18\x04\xe0\xfb\xfc\x8a\x39\x3a\x07\x67\xfb\xfd\xec\x1e\x18\x0c\xb1\x8d\xcd\x1e\x9c\x84\x38\x5f\x10\x72\xd0\x6a\x46\x8b\x20\x2b\x09\xad\xf6\xe0\x7f\x1f\xaa\x4b\x72\x88\x0f\x46\x56\x59\x7a\x47\x7e\xaa\x67\xba\xef\xde\xdd\xbf\xbf\x3f\xec\x2f\xe3\xdd\xcf\xe7\xe3\xf6\xf3\x7a\x19\x77\xfb\xc3\x72\x5e\x9f\x8f\x2f\xe7\xed\x3a\x3e\xac\x8f\xfb\xc3\x30\x88\x8e\xcb\x7e\x7b\xb9\xbd\xed\x2f\xdb\xa7\xcd\x69\x18\xf0\xfd\xcf\x5f\x9e\x2f\xeb\xd3\xfd\x61\x77\x1c\x8d\x9f\x5b\x5e\x4e\xd7\xcf\x8e\xe3\xdd\x2f\xeb\xe3\xfe\xf9\x72\xfe\x32\xbe\xfa\x61\x39\x3e\xac\xdf\x8d\xcb\xba\x43\xfe\xd3\x79\x59\xcf\xfb\xc3\xe3\xf8\xea\xe3\x5b\xf9\x9a\x7e\x7e\x39\x9d\xfe\x59\x9f\xd6\xc3\x65\xf4\x9e\xad\x87\xa5\xbf\x0e\x77\xef\x3e\x6d\x4e\x3f\x6e\x9e\xd6\xf1\xae\x0f\x7a\xfd\xf1\xad\xbc\xe6\x67\xfa\x3f\xfd\xbe\x9e\x9f\xf7\xc7\xc3\x28\xdf\x97\x92\xff\xc5\xbf\x7e\x39\xad\xa3\x5c\x47\xfc\xf9\xdb\xfd\xfb\xf1\x2f\x19\xa5\x8c\x1a\x1e\xed\xef\x6b\xfe\xc7\xa7\xe3\xb2\x8e\xe5\x76\xa1\xfb\xf7\xef\x8e\x2f\x87\xcb\xa8\x53\x49\x5e\x61\x10\xfe\x87\xb6\xc7\x65\x7d\x3e\x6d\xb6\xeb\x79\x73\x78\x5c\x87\x71\x9c\x4b\x29\xe5\xcd\x38\x57\xf9\xf0\xe1\x0d\x7e\xec\x37\x9f\x18\xa4\x94\xeb\x57\xf7\x0b\xa3\xdb\x57\x4a\xd9\xed\xde\x8c\x65\x98\x8b\xf0\xbd\xe0\xbd\x46\x0e\x73\x51\x26\x8a\x24\x44\x87\xb9\x18\x13\x43\x52\xb3\x0d\x73\x71\x26\x8e\x44\x8a\xfa\x30\x97\x60\x14\x3d\xd2\x86\xd9\xc9\x28\x7b\x14\x86\xe1\x95\x51\xed\x51\x9d\x30\xbd\x31\x6a\xfd\x17\x14\xc7\xf8\x89\xd1\xd4\x23\x2b\x18\xbf\x61\xb4\xb9\xfe\x4e\x8c\x7f\x60\xf4\xd0\xa3\x26\x18\xbf\x65\xb4\x45\x64\xa5\x62\xfc\xc2\x68\xe9\x91\x29\xc6\xaf\x8c\xd6\x1e\x45\xc3\xf8\x1d\xa3\x5d\x8f\x9a\x97\x61\x16\x4a\x49\x97\xf2\x32\xe5\x30\x0b\xb1\xa4\x63\xb9\x85\x0e\xb3\x50\x4b\xba\x96\x67\x69\xc3\x2c\xe4\x92\xce\xe5\x2d\x7d\x98\x85\x5e\xe2\x57\x53\x8c\xa7\x97\x74\xaf\xb0\x8a\xf1\xf4\x92\xee\x15\x69\x18\x4f\x2f\xe9\x5e\xd1\x1a\xc6\xd3\x4b\xba\x57\x8a\x63\x3c\xbd\xa4\x7b\xa5\x17\x8c\xa7\x97\x74\xaf\x4c\x14\x2b\xf4\x92\xee\x95\x13\x9a\x15\x7a\x49\xf7\xaa\x82\x6a\x85\x5e\xd2\xbd\xaa\xa3\x5a\xa1\x97\xac\xd7\xfe\x31\x9e\x5e\xd2\xbd\xea\x84\x6a\x95\x5e\xda\xbd\x9a\xa0\x5a\xa5\x97\x76\xaf\xe6\xa8\x56\xe9\xa5\xdd\xab\x55\x54\xab\xf4\xd2\xee\xd5\x26\x54\xab\xf4\xd2\xee\x35\x29\xaa\x55\x7a\x69\xf7\x9a\x1c\xd5\x2a\xbd\xb4\x7b\x4d\x15\xd5\x2a\xbd\xb4\x7b\x4d\x13\xaa\x55\x7a\x69\xbb\xad\x55\xcc\x27\x98\x4e\xcc\x1c\xe5\x2a\xc5\x74\xc3\xac\xa2\x5d\x25\x99\x76\x32\xb4\x8f\x4b\xd0\x4c\xb7\xcc\x14\xfd\x2a\xd1\x74\x61\x16\x28\x58\xa9\xa6\x2b\xb3\x8a\x86\x95\x6c\xba\xe3\x4d\x52\x50\xb1\xd1\xcd\x0a\x33\x45\xc7\x46\x38\x13\x66\x81\x92\x8d\x72\xa6\xb7\x1b\xac\x0c\xb3\x91\xce\x3a\x9d\x58\x41\xcd\x46\x3b\xe3\xbd\x69\x86\x9e\x8d\x78\xc6\x9b\xd3\x02\x45\x1b\xf5\x8c\x77\xa7\x35\x34\x6d\xe4\x33\xde\x9e\x5e\x50\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\x0f\x94\x6d\xf4\x33\xfa\x79\x43\xdb\x46\x3f\xa3\x5f\x08\xea\x36\xfa\xd9\xf6\xf6\x54\xc0\x35\xe8\x67\xf4\x8b\x44\xe1\x46\x3f\xa3\x5f\x34\x34\x6e\xf4\x33\xfa\xa5\xa0\x72\xa7\x9f\xd3\x2f\x0d\x9d\x3b\xfd\x9c\x7e\x99\xe8\xdc\xe9\xe7\xf4\xcb\x86\xce\x9d\x7e\x4e\xbf\x2a\xe8\xdc\xe9\xe7\xf4\xab\x8e\xce\x9d\x7e\x4e\xbf\x9a\xe8\xdc\xe9\xe7\x79\x7b\x94\xe1\x1a\xf4\x73\xfa\x35\x41\xe7\x4e\x3f\xa7\x5f\x73\x74\xee\xf4\x73\xfa\xb5\x44\xe7\x4e\x3f\xa7\x5f\x9b\xd0\xb9\xd3\xcf\xe9\x37\x29\x3a\x77\xfa\x39\xfd\x26\x47\xe7\x4e\x3f\xa7\xdf\x54\xd1\xb9\xd3\xcf\xe9\x37\x4d\xe8\xdc\xe9\xe7\x3b\x3e\x6b\x15\x9d\x07\xfd\xa2\xdc\x9e\xbf\x65\x98\x83\x7e\xc1\x5d\xa1\x54\x74\x1e\xf4\x0b\x65\x36\xa1\xf3\xa0\x5f\x74\x3f\x15\x45\xe7\x41\xbf\x70\x66\x81\xce\x83\x7e\x11\xcc\x2a\x3a\x0f\xfa\x45\xf7\x53\x2d\xe8\x3c\xe8\x17\x95\x99\xa2\xf3\xa0\x5f\x70\x7f\xd0\x40\xe7\x41\xbf\xe0\x06\xa1\x15\x9d\x07\xfd\x62\x73\xdb\x34\x70\x0d\xfa\x05\xb7\x08\x53\x74\x1e\xf4\x8b\x2d\xb3\x40\xe7\x41\xbf\x58\x98\x35\x74\x1e\xf4\x8b\xee\xa7\x5e\xd0\x79\xd0\x2f\xe8\xe7\x86\xce\x93\x7e\x49\x3f\x0f\x74\x9e\xf4\x4b\xfa\x79\x43\xe7\x49\xbf\xa4\x5f\x14\x74\x9e\xf4\x4b\xfa\x85\xb9\xf7\x6d\xfc\xb6\x5b\x0f\xe2\xdf\xee\xdf\x49\xdd\xf4\xdb\x3e\x88\x5f\x40\xdd\xa4\x6e\x34\xac\x88\xa4\x6e\x52\x37\x05\x2b\x22\xa9\x9b\xd4\x4d\xc3\x8a\x48\xea\x26\x75\x33\xb1\x22\x92\xba\x49\xdd\x6c\x58\x11\x49\xdd\xa4\x6e\x15\xac\x88\xa4\x6e\x52\xb7\x1a\x56\x44\x52\x37\xa9\x5b\x13\x2b\x22\xa9\x9b\xd4\xad\x13\x56\x44\x52\x37\xd7\xdb\xe6\x8d\x6b\x50\x37\xa9\xdb\x1c\x2b\xa2\x5e\x8f\x38\xd4\x6d\x89\x15\x51\xe5\x7a\xec\x69\x15\xd9\xa4\xed\x7f\x6a\xf8\x7b\x3f\x20\x7e\x3d\xb4\x6d\x5f\xce\xe7\xf5\x70\xe9\xe7\xc3\x7e\x30\xc3\xb9\x6a\x7f\x58\xbf\x9e\x35\x4f\xc7\x13\xbe\xd6\xff\xfc\x1b\x00\x00\xff\xff\x7b\xfe\x2b\xdd\x97\x0a\x00\x00"); +func _gafe ()(*asset ,error ){_aaac ,_fcef :=_dbe ();if _fcef !=nil {return nil ,_fcef ;};_dfg :=bindataFileInfo {_ee :"Adobe-KR-5",_ffd :1333,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491432,0)};_adc :=&asset {_da :_aaac ,_dc :_dfg };return _adc ,nil ; +};var _bac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xef\x25\x39\x72\xee\xb7\xef\x4f\xf1\x5f\x5e\x2f\xec\x39\x49\xc6\x0b\x09\x34\x0a\xf0\x95\x2e\xae\x67\x21\xc9\xb0\x24\xdb\x80\xe1\xc5\x79\xc9\x33\x68\xc0\xd3\xdd\xe8\xe9\x59\xe8\xdb\x1b\xf9\xfb\x9d\xb1\x21\xfb\x02\xa5\x45\xe1\xa9\x8a\xca\xcc\xc3\x64\x46\x04\x83\x8c\x87\xc1\x3f\xfc\xdd\x1f\xff\xfe\x8f\x3f\xff\xf4\xfb\xd7\x1f\xfe\xe7\xdf\x7e\x79\xfe\xf3\xf9\xfb\xd7\xfb\xa7\x9f\x5f\xbf\x9d\x7f\xf9\xe5\xaf\xbf\x3d\xcf\xaf\xc7\xf9\xa7\x9f\x7e\xfe\xe1\x87\x63\x7c\xbd\x7e\x7a\xfe\xfe\xb7\x7f\x02\xcf\x3f\xdf\x7f\xfd\xe1\x87\xeb\xfe\x7f\xfe\xb7\xbf\xfc\x7e\xfe\xf9\x8f\x3f\xbf\x7f\xf9\x9a\x5e\xf7\xfa\xeb\xaf\x9f\x6b\xbf\xbe\xfe\xf0\xbf\x9c\x7f\xfa\xe9\x2f\xbf\xff\xf6\x6f\x5f\xff\xe9\x7f\x7c\xfd\xf2\x38\xff\xbb\xaf\xd7\xf9\xbe\xe4\xff\xf4\xdb\xeb\xfc\xed\xa7\x9f\xff\xf4\xf5\x9f\xfe\xeb\x7f\x3e\xfe\x1f\xe9\x3f\xff\xf5\xd7\x5f\xff\xaf\xf3\xcf\xe7\xcf\xbf\x7f\x1d\xc8\xce\x9f\x5f\xe0\x0f\x7f\xf8\xbb\x7f\xb8\xff\xfa\x8f\xf7\x3f\x9f\x5f\x7f\xf8\xaf\xff\xf9\x5f\xfe\xfb\xff\x09\x29\xc2\xff\xf5\xfc\xed\x2f\x3f\xfd\xf2\xf3\xd7\x71\xfb\x1f\x6e\xb7\xfa\x7f\xe5\xff\xf2\x6f\xbf\x9e\x9f\xa7\xfc\xf0\x87\x7f\xfd\xe3\xdf\xff\xd3\xfb\xfd\x97\xf3\xf7\xaf\x5c\x37\xaf\xf9\xdf\xff\xf5\x8f\x7f\xff\xf5\x7f\x1c\x5f\xc7\xed\x6b\xe4\xec\xf1\x7f\x7e\x2e\xfd\xdf\xfe\xe1\x97\xd7\xf9\xe5\x45\x3f\x1c\xbe\xc9\xf3\x97\xd7\xf9\x97\x5f\xef\xcf\xf3\xb7\xfb\xcf\x7f\x3a\x7f\xf8\xfa\xfa\x71\x1c\xe3\xf8\xf6\xf5\x63\xff\x97\xfe\x2f\xdf\xae\x56\xfe\x7f\xae\xf8\xe1\xb8\xdd\x3e\xb7\xfe\xf4\x52\xf4\xb7\x5b\xc6\xd1\xe7\xb7\xaf\x5d\x3f\xfc\x38\xc6\x44\x30\x6a\x7c\xfb\x3a\xf6\xed\x92\x54\x2a\x39\xbf\x7d\x8d\x40\xd2\x5e\xd3\xcf\x6f\x5f\x23\x2f\xc9\xf4\x31\xf3\x7a\xcc\xa8\xf1\xc3\x8f\x23\x94\x44\xcf\x6f\x5f\x33\xaf\x27\xa7\x92\xec\xfa\xf6\x15\x73\xff\xf0\xe3\x28\x25\x35\xd7\xb7\xaf\x1c\x79\x49\x42\x49\xe7\xb7\xaf\x8c\xeb\x9a\xf6\x9a\xbe\xfe\xa3\x6e\xd7\x93\x3b\x95\x5c\x8d\xa8\x79\xdd\xb5\xbc\x66\xc5\xed\xdb\x57\xd5\xba\x24\x41\x9b\x57\xdd\xbf\x7d\xf5\xed\x6a\xe1\x1e\x71\x49\x76\xbd\xbf\x7d\xf5\xbc\xae\xb9\x7b\xd7\xfd\x6a\xf3\x3a\xe2\x87\x1f\xc7\x43\xc9\xe3\x7a\xce\xbe\xad\x1f\x7e\x9c\x37\x24\xf3\x36\xfa\xdb\xd7\xbe\xde\x7d\xde\xc6\x52\xb2\xbe\x7d\x75\x1f\x8d\x68\x2b\xda\xd7\x45\xde\x76\x57\x72\xe7\x22\x45\x0f\x45\xcf\x6f\x5f\x3b\x7d\xd2\x4b\xc9\xc9\x45\x1b\xd1\x1b\xd1\xd5\x21\x3b\xe3\x92\x4c\x9f\x7d\x41\xf7\x38\x10\xf9\xf0\xf9\xbe\x3e\x59\x5e\x92\xab\xc1\x1f\xe8\x1e\x03\x91\x0d\xcf\xf1\xed\x6b\x37\x92\x9c\x4a\x26\x17\x4d\x44\xa1\x28\xbe\x7d\xed\xcd\xb3\x33\x95\x24\x17\xd1\x82\x2c\x45\xd7\xdb\x6d\x6f\xb3\x01\xc9\xdb\x0d\x5a\x90\xbe\xdd\x05\x7b\xf3\xbe\xf9\x54\xf2\xe4\xa2\x42\xe4\x0b\xd7\xfc\xf6\x75\xdc\x6e\xf4\x41\xd9\x82\x0b\xba\x07\xbd\x59\x36\xa1\x1e\x5c\xc5\xb3\xca\x67\xd5\x8b\xab\x14\x9d\x8a\xce\xeb\x2a\x3f\x43\xd9\x79\x7c\xe1\x9e\x3c\xbe\xed\x98\x1e\x5c\x45\x17\xb7\xdd\xd0\x74\xc3\xe4\xa5\xdb\x46\x5c\x8a\x79\xdc\xec\x99\x6e\x45\xcd\x55\xf4\x5f\xfb\xe1\x2f\x38\x6e\x36\xb5\xfd\x38\xcd\xc7\x99\xde\x68\xdf\x34\xed\x1a\xd7\x2f\x6a\x62\xf3\xb8\x14\xf0\xb8\xcd\x40\x94\x8a\x8a\x1b\x15\xb5\xa2\xbe\xae\x42\xd5\x0e\x55\xed\x50\xd5\x66\x21\xda\x8a\xee\x5c\x35\x10\x3d\x14\x3d\xb8\xaa\x11\xd1\x5f\xc7\x65\xca\xc7\x2d\xae\x0f\x74\xcc\xa1\x68\x70\xd5\x42\x34\x15\xf1\x39\x92\x67\xcd\x50\xc4\xe7\x9f\xb4\x7e\x96\x22\x3a\x27\x7d\x96\x4d\x55\x27\xe3\x40\xc4\x6b\x1f\x97\x06\x1e\xb7\xe4\x46\x35\x10\xe8\x0e\xde\x31\x6c\x44\xec\xeb\xaa\xa2\xa9\xf1\xb9\x11\x5d\xb2\xa9\xe1\x0b\x05\x5d\xd8\xbc\x76\xf0\x69\x8f\x44\xc1\x03\x51\xfa\xf8\xe4\x1d\x17\xad\x4f\x1f\x9f\xbc\x23\x86\x78\xa8\xf4\x47\xd2\xf7\x8b\x46\xa8\xe2\x87\x2a\x1e\x34\x55\x15\x3f\x92\x5f\x5c\xb4\x2b\xfd\xc5\xa2\xf5\xd8\xeb\x51\x3e\x5e\xf5\xdd\xdc\xa8\xfa\x1e\xaa\x6f\x4e\x44\x3e\xbe\xae\xfe\x3a\x6e\xb4\xab\xec\xaf\xe2\x3b\x62\xd6\x47\xf9\x1d\x2f\x38\x8e\x1b\x2f\x54\xf6\x04\x2e\xab\x53\x91\x3d\x71\xe9\xfd\x71\x60\x0a\x87\x7a\x0f\x74\x27\x4d\x55\xef\x8f\x4b\xd7\x8f\xe3\xe0\x17\xdb\xce\x69\x5b\xcf\x8d\x6d\xeb\x2f\xbd\x3f\x8e\x83\x8e\x56\xef\x0f\x95\xdc\x8f\xa6\x92\x1f\x97\x67\x3f\x0e\xdc\xcd\xd1\x2f\x45\x18\x5f\xf1\x8e\x6d\x23\x50\xf2\x03\x53\x18\x2a\xf9\xb8\x14\xfb\x38\x30\xd1\x31\x4a\x11\x8f\xaf\x40\xb4\x14\x5d\xb6\x7d\x5c\xbe\x7b\x0e\x75\x15\xe8\xae\x42\xc4\x2f\x8e\x4b\x19\x8f\x03\x53\x18\x33\x15\xf1\xd1\xd0\x9c\xa1\x62\x8e\xcb\x57\x1e\x07\xdf\x71\xe8\x2c\x87\x8a\x59\x34\x42\xc5\x1c\x41\xbb\xf8\x42\x23\xbc\x31\x30\xbe\xe2\xc6\x68\x45\x74\xb4\x8d\x08\xde\x71\x24\xad\x6f\x1a\x91\xb6\x3e\xb9\x6a\xf1\xac\xfc\x5c\xc5\xe7\x58\x37\x86\xdd\xbf\x8d\xae\xff\xad\x01\x77\x0e\x15\x0b\x38\x18\x60\xe7\x28\xbc\x14\xd0\xbd\x0e\x44\x76\xe7\x05\xc7\xb1\x07\xa2\xa1\x08\xc7\xb5\x14\x85\x22\xbe\xc3\xa6\x3b\x55\x86\xa1\x13\x44\xe1\x87\x4e\x70\xe0\x04\xc7\x8d\xbe\xd3\x09\x32\x80\x77\x2f\x6e\xf4\x33\x0f\xbe\xe9\x18\x57\xbb\x1c\xd4\xe7\x1c\xd8\x13\x8f\x9f\x63\x2a\x9a\x5c\x15\x88\x42\x11\x1d\xb5\x1b\xd1\x52\xb4\xb8\x6a\x23\xda\x8a\xae\x4f\xb3\x6e\x07\xa2\xbb\xa2\xab\x3b\xc7\x54\x74\x2a\x3a\xb9\x6a\x20\xe2\x85\x26\xca\x30\x70\x82\x53\x65\x00\x7a\xdd\x26\xa2\x52\xc4\x2f\x86\x22\x7f\x71\xfa\x8b\x34\x55\x65\x98\x93\x5f\x0c\x9a\x3a\xfd\xc5\xe9\x2f\xf2\x8e\xd3\x5f\xbc\x1c\xd7\x31\xf0\x8b\x53\xc7\x05\xf4\xc2\x5c\x67\xd8\x13\x41\x4f\xa4\x22\x7b\xe2\x82\x5e\x74\xf4\x0c\x9b\x8a\xfa\x0d\x0c\x71\xaa\x7e\x40\xaf\x9b\xa2\x56\x74\x59\xdd\x28\xfa\x3e\x5e\x8a\x5e\x5c\x45\x17\xaa\x91\xc0\x31\xca\xc7\x7f\x9a\x7a\x7d\xed\x75\x70\x63\xf2\xb5\x27\x7e\x71\xa0\xdd\x53\xbf\x08\xf4\x3a\xe8\x68\xfd\xe2\x4c\xfa\x8b\xf8\x60\xa6\xfd\x95\xf4\xd7\xa1\xc8\xfe\xba\xe0\x18\xed\xb3\x1e\x8a\x1e\x5c\x45\x47\x3b\xd2\x03\xc7\x58\x3e\xde\xd6\x27\xad\x3f\xe8\x7b\x2d\x65\x12\x57\x0e\x8c\x67\x96\x8d\x40\xa3\x17\x2e\x69\xaa\xd1\xc0\x31\x16\xbf\xa8\x43\x9d\x45\x7f\x1d\x74\xb4\x0e\x15\x38\x06\xd6\x31\x4b\x95\xc3\xc7\x2e\x22\xae\xa9\x8f\x9d\x45\xeb\x37\x8d\xd0\xa1\xce\x2b\x9e\xe8\x75\xf8\x78\x9b\x8a\x0d\x8d\xed\x8d\xf6\x2a\x36\xb4\x70\x82\x53\x1b\x02\x8e\xa9\xfa\xea\x63\x81\x5e\x04\x5d\x53\x1f\x0b\x1c\x53\xc5\xd4\xd2\x80\x5e\x43\x91\xef\x78\x45\x0d\xc7\x54\xe5\x8c\x1a\x66\xd3\xab\x9a\x55\xdb\xab\xd8\xe3\xa4\xa3\x0d\xa9\x67\x60\x8f\x8b\x90\x2a\xb4\xc7\x20\xb6\x98\xbc\x76\x18\x5b\x04\xb1\xc5\x1a\x8a\x5a\xd1\xd5\x13\x93\xa6\x86\x51\x03\xd0\x8b\x60\x29\xf4\xc4\x31\xf8\x45\xbc\x7a\x68\x7c\x40\x2f\x4c\x34\x26\x3d\x11\x93\x77\xfc\x88\x6c\xc4\x44\xef\x09\x96\x42\x13\x8d\x2b\x52\x38\x26\x56\x1b\x73\x29\xe2\x0b\x11\xf3\x84\x26\x1a\x93\x5f\xc4\xd1\x87\xc6\x07\xf4\x62\x84\x08\xa3\xdb\xc0\x1e\x27\x56\x1b\xda\x63\x68\x8f\x3e\x5e\x7b\x8c\xcb\xac\x8e\xc9\x80\x1d\x9a\x15\xd0\x6b\x7a\xa3\x8d\x20\x02\x99\xe9\xe3\xef\x8a\xee\x5c\x45\x7f\x19\x81\x04\xf6\x38\x53\xd1\x4b\x11\x1a\x4d\x64\x14\xda\x23\x70\xcc\xa2\x27\xb4\xc7\xd0\x1e\x7d\x21\xed\x31\x92\xfe\x62\xf8\x0c\x8d\x2f\x92\xfe\x22\x7e\x0a\x83\x92\x48\xda\xc5\xc8\x15\x1a\x1f\xd0\x2b\xbc\xd1\x76\x5d\x70\xcc\xa6\x0b\x35\x3e\xa0\x57\x28\xb2\xa9\x45\xeb\x89\x9f\xa2\x3e\x22\x5a\x4f\x94\x15\x06\x12\xc0\x31\x89\xeb\x43\xbd\x0f\xf5\x9e\x28\x2b\xd4\xfb\x68\xbe\x23\x43\x40\x18\x22\x00\xbd\xfc\x1c\xc6\xc1\x71\x69\xf1\x11\xb8\xda\x68\x9b\xaa\x46\x13\x8b\x85\x1a\x1d\x68\x74\xe0\x1e\x9d\x12\xce\xbc\x34\xfa\x08\xfc\x57\xaa\xd1\x40\x2f\x86\xf5\x74\x84\x01\x8e\xc0\x14\x52\x25\x4f\x42\xe3\x95\xde\xb8\x15\x3d\xb8\x6a\x7d\x7f\x28\x4e\x15\x1e\xe8\x45\x5c\x96\x86\x1e\xc0\x11\x58\x4a\x3a\x26\xa5\x36\x80\xca\xa4\x36\x00\x1c\x31\x14\xf9\x26\x8e\x49\xc4\x65\xe9\x98\x04\x1c\x81\xa5\xa4\x91\x33\xd0\xab\x78\xbc\x66\x91\x97\x29\x1c\xc1\x1c\x22\x1d\xa6\x72\xd2\xae\x52\x64\xbb\x18\x47\x02\x25\x4d\xc7\x91\x74\x1c\x21\x66\x49\x15\x3e\x83\xef\x10\x5e\xf5\x50\xc4\x77\x60\xd0\xc8\xf0\xb5\x2f\x25\x3d\x82\x90\x28\x55\x52\xa0\x17\xea\x97\xc6\xd7\x89\xde\x46\x2a\xf2\xd3\x30\x83\x5c\x0c\x2d\xe9\x0c\x32\xf1\xfd\x81\x0d\xa4\xea\x97\x49\x7f\x11\x38\xa5\x01\x4e\xe2\xfb\xa3\xf9\x45\x7d\x7f\xea\xfb\x3f\x22\x9f\x55\xbc\x63\xd3\xd4\xf2\x1d\x8b\xfe\x42\xe1\x53\x47\x9f\x68\x77\x30\xda\xa4\xda\x9d\x6a\x37\x0a\x9f\x6a\x77\x36\xcf\x22\xa2\x67\xdd\xe1\x02\x9f\xa5\xc8\x67\x11\xed\xc6\x56\xe4\xb3\xda\x67\xf1\x8e\xfd\x79\xd6\xa5\xb7\x89\x57\x77\xe1\x62\x16\x61\x50\xa2\xf0\xa5\x92\xd6\x40\x01\xd6\x0d\x51\x29\x2a\xae\xda\x88\x5a\x11\x8d\x20\x88\x2b\x83\x25\xe0\x48\x46\xe7\x52\x95\xcb\x60\x69\xf9\x8b\x77\x45\x77\xae\x52\xf4\x50\xc4\xa7\x5d\x36\xe2\xa9\x88\xa6\x32\xa2\x96\x2e\xbc\x26\x9f\x96\x50\xaf\xd4\xd5\xc2\x85\x27\xa1\x5e\xe9\xc2\x81\x5e\xf4\x57\x39\x17\x2c\xd4\x37\x19\xb9\x4a\xf5\x2d\xd5\x77\x2d\x44\xb6\x1e\x17\x9e\xc3\x1b\xfd\x45\x26\x7e\x8b\x31\xbc\xf4\xd7\x45\xb0\x94\x78\xe2\x32\x58\x2a\x83\x25\xc6\xf0\x32\x58\x02\x8e\xc4\x7b\x96\x4a\x5e\x2a\x39\x5e\xaa\x54\xf2\xc2\x39\x67\x78\xe3\x4b\x11\x1f\x8d\x91\xbe\x74\xce\xc0\xc1\x4a\xd2\x2c\x9d\x73\xa9\xe4\xf8\xb2\x52\xc9\x0b\x25\x4f\x42\xbd\x52\xc9\x4b\xe7\x8c\x4e\x94\xce\x19\x38\x92\x50\xaf\x9c\x31\x02\xbd\x98\x0b\x56\xda\x2e\x42\xaa\xc4\x60\xca\x90\x0a\xe8\xcd\x82\x47\xe9\xd5\x81\x23\x31\x98\xd2\xab\x03\xbd\x6f\x8a\xfc\x8e\x97\xdd\x1c\x89\x07\x28\x67\x04\x40\x6f\x42\xe3\x72\x46\x50\xc5\x2f\x62\x8f\x65\xcc\x03\xf4\x56\x57\x9d\x57\x16\xeb\x29\x89\xde\x57\x7d\x1e\xff\xe4\x2a\xfa\x4b\x1b\x02\x8e\x54\x7d\xb5\xa1\x62\x38\xd8\xc4\x29\xe5\x70\x00\x1c\xa9\x62\x1a\x06\x01\xbd\xf1\xea\x65\x18\xc4\x22\xde\x91\xaa\x9c\xc6\x07\xb4\x4b\x6b\xe5\x12\x4b\xb1\x9e\x92\x4c\x84\xca\x71\x04\xe8\xad\xc1\x18\x19\x01\x47\xaa\x00\x0e\x2d\xc5\xe4\x65\x1f\xde\x68\xeb\x35\xd1\x7d\x7d\x21\xd7\x0d\x67\x33\x8e\x6c\xc2\xd9\xd6\x44\x1b\x7b\x2c\x3a\xba\xb5\x47\xa0\x37\x06\xd3\xda\x63\x63\x43\x75\x53\x84\xe6\x34\x36\xb4\x09\x41\x5b\x1b\x6a\x6c\xa8\x88\x70\x5b\x1b\x02\x7a\x13\x8b\xb5\x36\xd4\xd7\xa8\x70\x14\xab\x54\xed\xa8\xd0\xd3\x5f\xdc\x88\xfc\x45\x26\x2f\x45\xbc\xd9\x46\x46\x40\xef\x8f\x88\x9e\xe8\xe0\x17\xb1\xc7\x36\xe6\x69\x6c\x68\x33\x5a\xb5\x36\xd4\xc1\xb3\x88\xb2\x3a\x7c\x56\xf8\x2c\x45\x9f\x67\x3d\xb8\x8a\x46\x38\x2a\x00\xbd\x19\xd3\x5a\xb3\x6a\x6c\xa8\xc2\xc7\xdb\x13\x04\x38\x9b\x10\xb4\x1d\x3b\x80\xa3\x88\x2d\x5c\xa1\x15\x7a\x8f\xfe\xfe\x50\xdc\x4e\x51\x3a\xf9\x34\x04\x15\xad\x3d\xf5\x65\x4f\xbd\x89\x63\x5b\x7b\x6a\xe2\x9f\x62\xc0\x6e\x2d\x05\xe8\x4d\x1c\xdb\x0e\x40\xcd\x6a\x4e\xa5\x37\xda\x6c\x8d\x87\xa1\xb8\x35\x1e\xe0\x28\x4c\xac\x1d\x93\x80\xde\xf6\x9d\x63\x52\x33\x26\x15\x8b\xad\xed\x98\xd4\xcc\x34\xf6\x54\x64\xbb\x98\x69\x14\x43\x5e\x3b\xd3\x68\xc6\xa4\xcd\x80\xdd\xda\x13\x70\x54\x7b\xe3\xa7\x5d\x74\x27\x91\x60\x6b\x62\xcd\x3a\x4d\x61\xae\xed\x84\x01\xe8\xed\x77\x68\x3f\x33\x71\x59\x2d\x45\x6a\x11\x71\xd9\x26\x5e\x6c\xed\xa9\x31\x8b\x5a\xd7\xd7\x72\xa9\x7c\x2e\x6d\x00\xb7\xbb\xb4\x81\x35\xbc\x31\x10\x71\xe3\x42\xbb\x59\x3f\x9f\x4b\xed\x5e\xd3\x46\xf0\x2c\x83\xfc\x45\xe8\xd2\x98\xd8\x52\x49\x81\x76\x2d\x7c\xcd\x87\xa2\x07\x57\x29\x7a\x2a\xe2\xa3\xe1\x9c\x97\x01\x0e\x70\xf4\xf0\x17\x4f\x45\x74\x0e\x31\xde\x72\x2a\xb0\xb0\x01\xd7\xb0\x97\x36\x00\xf4\xc6\x85\x2f\x87\x16\x72\x00\x87\x8b\xca\xcb\x71\x64\x31\x15\xd8\xe9\x8d\x4b\xd1\x65\x29\x2e\x04\x2f\x2d\x65\x69\x29\x84\x7a\x4b\x4b\x59\xd8\x80\x4b\xbc\x4b\x1b\x58\xda\x00\xc3\xc1\xd2\x06\x16\xe3\x88\xeb\xa6\xcb\x71\x64\x31\x42\x6c\x02\xc2\xa5\x46\x2f\x46\x08\x57\x31\x97\x1a\xbd\x08\xf2\x37\xc3\xc1\x72\x38\x58\x2c\x33\xba\xf2\xb8\xd4\x42\xa0\x37\xba\xba\x9c\x15\x2f\x7c\x7f\x97\x57\xf9\x2c\x7d\x3f\xeb\x6d\x4b\xdf\x0f\x1c\x8d\xfa\xae\xfa\x3c\x9e\xd1\xe6\x23\xf2\x73\x30\x6d\x75\x71\x6d\x39\x6d\x05\x7a\x13\x5c\x2e\xb5\x10\x38\x1a\xf5\x5d\x6a\xe1\xd2\xab\x7f\x6e\xf4\x1d\x51\xcc\x6e\xbe\xb6\x8a\xb9\x54\x4c\x86\xa9\xa5\x62\x2e\x14\xb3\x19\x6d\xb6\x8a\xb9\x59\xff\x6e\x74\x75\xeb\x89\xb7\x8a\xd9\x5e\xb5\x15\xa1\x26\x8c\xf4\xdb\xf8\x1c\xe8\xdd\x07\x22\xbe\xd0\x26\x3e\x5f\xa8\xef\xd6\x5f\x03\x6d\x42\x64\xbb\x24\x0e\x1c\x2e\x23\x6d\x95\x7c\xeb\xc2\x5b\x51\x28\x0a\xae\x4a\x44\xa9\x28\xb9\x8a\x46\xe8\xd5\x37\x2e\xdc\xa5\x9f\xad\x0b\xdf\x9a\x42\x7b\x23\x7d\xbf\x51\x4c\x97\x58\xb6\x8a\x09\xf4\xc6\xdc\xb7\x01\xce\x26\x8a\x77\x31\x60\xc7\xe7\x46\x3e\x1a\xbd\xba\xf5\xd7\x9b\x28\x7e\xb1\xc6\xb6\xd5\x42\xa0\x77\x2b\xf2\xb5\x2f\xcd\x3b\x9c\x74\x6f\x57\x31\xb7\x7e\xd5\xbe\x57\x0b\x37\x41\xc9\xc2\xc1\x6c\xb5\x70\x1b\x94\x10\x66\x6f\x5d\x2d\x70\x38\x89\xdc\xba\x5a\xa0\xf7\xf2\x46\x3f\x07\xde\xd7\xe9\xe1\xd6\xfb\x02\xbd\x89\x1a\xb6\x33\x02\xe0\x70\x96\xb7\x0d\x70\xb6\x3e\x9a\x70\x76\xeb\xa3\x81\x63\x25\x8d\xd0\x47\x6f\x7d\x34\xb1\xc5\xd6\x3a\x36\x3e\x7a\xa5\x8f\xb7\x57\x59\x33\xda\x2a\x93\x6b\x46\x1b\x83\x59\xa9\xc8\xd7\x36\x0c\x22\xe8\xdd\x86\x41\xc0\xe1\x04\x6d\xeb\xb6\x81\x36\x4b\xb6\x75\xdb\x9b\x30\x68\x61\x69\xdb\x30\x68\x1b\x06\xe1\x57\xb7\x61\x10\x70\x38\xf5\xda\x9a\xd5\x6e\x34\x87\x68\x66\x1b\x19\x6d\x0c\x66\xa9\xbe\x1a\xcc\xd6\x60\x88\x66\xb6\x06\x03\x1c\x4e\x84\xb6\x91\x11\xd0\x7b\xfb\x78\x3f\x1a\xf3\x19\x27\x42\xdb\xc8\x08\xe8\xbd\xff\x03\xb3\xe2\xed\x74\x07\x38\x9c\x01\x99\x29\x9d\x77\x06\x0d\xe7\x36\x77\x07\x8d\xbb\x81\xd3\xf6\xaa\xa5\x08\x2d\xa2\x3b\xef\x4e\x51\x80\x65\xc6\xef\xee\x14\xe5\xce\xa0\xb1\xe8\xce\xbb\x83\x06\xb0\x6e\x37\x45\xde\x78\x79\xf2\x63\xb3\xe0\x7a\x37\xb2\x01\xd6\x8d\x00\xf8\xae\xf1\xdc\x59\xeb\xdc\x84\x57\x77\x03\x09\x60\xdd\x30\xea\xbb\x9e\xf8\x4e\x6c\x61\x88\x70\xd7\x13\xdf\x2f\x1b\x58\x37\x02\xe0\xbb\x36\x70\xc7\xed\x6e\x96\x94\xee\x2a\x16\xb0\x6e\x36\x42\xb7\x7b\x67\xe5\xd1\xf1\xed\xee\x84\x14\x58\x37\x4c\xff\x5e\x9f\x67\x5d\x43\x9e\x63\xd2\x5d\x1f\x0b\x2c\xb3\x9a\x77\x75\xed\x8e\x7e\x38\x8e\xdc\xd5\x0f\x20\x8d\x3d\xef\xba\xdd\x3b\xfa\xa1\xef\xbf\xab\x1f\xc0\xba\x11\x26\xdf\xd5\x0f\x72\xd9\xc7\x66\x02\x6f\x32\x7b\x3e\x98\xa3\xea\xa5\x1e\x06\xc0\xc0\xba\x11\x39\x3f\x5c\x48\x01\x0e\x3d\xcb\xc3\x69\x2b\xb0\x6e\x4c\x48\x1f\x7e\xed\x07\x73\x54\x7d\xc6\x43\x4f\xfc\x18\x7c\x34\x7c\xd9\xc3\xaf\xfd\xb8\xbe\xf0\xa1\x05\x3f\x5c\x4f\x79\x5c\xce\x79\xdd\x0e\x45\x6f\x45\x6f\xae\xe2\x17\x5d\x4f\x01\xd6\x8d\xf8\xfa\xa1\xbf\x7e\xe0\x9c\x37\xb3\x83\x87\xce\x19\x58\xa6\x7c\x1f\x3a\x67\xe0\xd0\x9e\x1e\x3a\xe7\xc7\x15\x5f\xaf\xdb\xe1\xe3\x97\x22\x5a\xbf\xbd\xd1\xd6\xab\x72\xc4\xd7\x0f\x55\xee\x71\x79\xcf\xa1\xae\x3e\xf4\x9e\xc0\x32\x31\xfc\x50\xbf\x80\xf1\x37\x91\xed\x4a\x7a\x15\x7f\xfd\x70\xc6\xf8\xb8\x9c\xe0\xb8\x11\x26\x3f\x74\x82\x8f\xa2\x5d\x8a\xd4\x9c\xc7\x35\x3a\x0f\xd3\xb4\x0f\x47\x67\x60\xdd\xa6\x22\x34\xe7\xd1\xb4\x0b\x57\xf9\xd0\xd9\x00\xeb\x86\xae\x3e\x74\x36\x8f\x4b\x5b\x86\x69\xda\x87\xa3\xf3\xa3\xf9\x45\x26\xdd\x0f\x35\xe7\x71\x69\xcb\xb8\x11\x6e\x3c\x74\x23\xc0\x32\xef\xfc\xd0\x8d\x3c\xa0\x77\xdc\x70\x6f\x0f\xdd\x08\xb0\x6e\xe1\x8d\xa7\x22\xde\x11\xf7\xf6\x54\xe5\x80\x71\x43\x0b\x9f\x63\x28\xc2\x1e\x19\x5a\x9e\xae\xf0\x3d\x07\x4d\x65\x58\x7f\xaa\x85\x4f\x55\x8e\xd8\xf5\xa9\xca\x01\xe3\x86\xfa\x3e\x75\x30\xcf\x4b\xf3\x96\xfd\xf5\x74\x59\x04\x18\xb7\xb6\x11\x0f\x45\x74\x61\x28\x7a\x2a\xe2\x85\x70\x69\x4f\x15\x13\x58\xb7\xb0\xa9\xbc\xd0\xf3\x52\xa0\x71\x63\xc8\x7b\x3a\xac\x3f\x27\x96\x46\xdf\x3f\xd5\x9c\xe7\xe4\x17\x71\xf4\x4f\x35\x07\x58\x26\xd2\x9f\x46\xb8\xcf\xe0\xa3\xb1\xd6\xf0\x34\x1f\x0e\xac\x1b\xc3\xd4\xd3\x65\x11\x60\x1c\x38\xbe\xa7\xe1\x2c\xb0\x6e\x4c\x71\x9e\x86\xb3\xcf\xcb\xf1\x8d\xe3\xe6\x8d\xb6\x2b\xf8\xb4\xe9\xe3\xed\x9c\x2b\x76\x1d\x07\x6e\xe8\x69\xec\x0a\xac\x5b\x2a\xb2\xa9\x17\x8c\x03\x0f\xf0\x8c\x4f\x53\xe9\x09\xa6\x4b\x4f\x17\x4f\x9e\x57\x6c\x31\x0e\x16\x9b\x9e\xc6\x16\xc0\xba\x11\x6f\x3e\xb5\x8e\xe7\xa5\xfe\xe3\xc0\x6a\x9f\x2e\x07\x3e\x93\xef\x88\x7e\x3d\x75\xb5\xc0\x38\x98\xa3\x3e\x8d\x40\x9e\x7a\x5f\xf4\xeb\xa9\xf7\x7d\x5e\x11\xc8\x38\x86\x22\x9b\x9a\xf4\x2a\x81\xea\xd3\x08\x04\x18\xe6\x9d\x9f\x46\x20\xc0\xba\x95\x8d\xb0\xf5\x18\xdf\x41\x64\xf4\xd4\xf8\x9e\x45\xdf\xab\xab\xc6\x16\xc0\x38\x08\xec\x9f\xc6\x16\x4f\xfd\xbd\x8a\xa9\xbf\x7f\x16\xad\xc7\xd2\x9e\x5a\xed\x53\x7f\x4f\x24\xf9\xd4\xdf\x03\xc3\x84\xf5\xd3\xc8\xfb\xa9\xbf\x6f\x1f\x6f\x53\xe1\x51\x1d\x11\xdf\x1f\x8a\x9f\xc6\x19\xcf\x46\x19\x18\xcf\x9f\x0e\x07\xcf\x46\x19\x08\x89\x9e\x46\x10\xcf\xe6\xa7\xd4\x5b\xcd\xf5\x89\x6d\x1e\x7c\xad\x97\xb6\x09\x8c\x83\xc8\xe6\xa5\x6d\xbe\x06\x5a\x84\x27\x7e\x69\x62\x2f\xec\xe9\x20\x56\x7f\x69\x4f\xaf\xc1\xe3\x09\xb9\x5f\x1a\xcf\x6b\xf0\xf8\x56\x44\x53\x5f\x13\x3b\x27\x66\x79\xe9\xaf\x81\x71\x30\x68\xbc\xf4\xd7\xc0\x3a\x6e\x8a\x52\x11\x7d\x47\x08\xf9\x32\x1e\x00\x96\x66\xf1\xd2\xc4\x5e\x93\x2f\x6f\x53\x9d\x31\xbe\xae\xe9\xe1\x92\x68\xf1\x72\x7a\x08\x8c\x83\xe1\xe0\xa5\xd5\xbd\xc2\x5f\x4c\x44\xfe\x62\xf0\x4d\xc9\xf8\xbd\x34\x9e\x57\xf8\x8b\xbc\xb6\x96\xf2\xba\xcc\x62\x0c\x42\x84\x97\x66\xf1\x0a\x7e\x91\x21\xef\xa5\x59\xbc\x2e\x85\x1f\xc3\x1b\x55\x78\x60\x1d\x0c\x79\x2f\x15\xfe\x75\x29\xf9\x18\x8c\x5c\x2f\xd7\x01\x81\x25\x1d\xe3\xa5\xc2\xbf\x2e\x5d\x1d\x66\xe0\x5f\x86\xc9\x2f\xf4\x56\x13\x7b\xa9\xb7\x2f\x06\x8d\x81\x0d\xbc\x1c\x34\x80\x75\x30\xe4\xbd\x1c\x34\x5e\x97\xe6\x8c\x81\xef\x7f\xa9\x39\x2f\xa2\x86\x83\x85\xa7\x97\x51\xc3\x0b\x47\x0f\x91\x6f\xbe\xd4\x1c\x60\x69\x88\x2f\x1d\x3d\x30\x06\xce\xe6\x54\x99\x4e\xbc\xfa\x31\x14\x4d\x45\xc1\x55\x0b\x51\x2a\x4a\xae\x6a\x44\xa5\xe8\xea\xfb\x81\x83\x38\x55\x39\x60\xc9\x1c\x39\x8d\x2d\x80\x31\x70\x10\xa7\x8e\x1e\x58\x1a\xf5\xa9\x62\x9e\x78\xf5\x81\xe9\x9f\x2a\x26\xb0\x0e\x42\xbd\x53\xaf\x7e\x5e\xb1\xc5\x30\x1f\x7e\x1a\x5b\x00\xeb\x60\xe6\x7f\x3a\x17\x3c\x27\xad\xc7\x5c\x4f\x15\xf3\x24\x90\x38\xc8\x6a\x9e\x06\x12\x27\xba\x6a\x3e\xfc\x54\x57\x4f\x75\x95\x01\xfb\x54\x57\xcf\xc9\x77\x44\xa3\x4f\x15\x13\x58\xba\x91\x53\xc5\x3c\x2f\xcd\x1b\x03\x8d\x3e\x5d\x7e\x00\xd6\xc1\x47\x3b\x75\xe1\x27\x3e\x76\x10\xba\x9c\xfa\x58\x60\x1d\xac\x2c\x9d\x86\x1b\xe7\xa5\x66\x63\xde\x14\xf9\xac\xf4\x59\x34\x35\x3f\xcf\xba\xfa\xcb\x8c\xf2\xa9\xf7\x04\x96\x8e\xeb\xd4\x7b\x9e\x97\xca\x8d\x89\xae\x9e\xaa\x1c\xb0\x0e\x06\xff\x53\x57\x79\x5e\xae\x72\x98\x51\x3e\x75\x95\xc0\x3a\x42\x91\x5f\xfb\x82\x31\x55\x13\xa7\x61\xc0\x3a\x18\xe9\x4f\x1d\x2a\x30\xcc\x3b\x9f\x3a\x54\x60\x1d\x2c\x49\x9d\x3a\xd4\xf3\x72\xa2\x63\xaa\x00\xf5\x69\xaa\x04\x4e\x1f\x8f\x1b\x3a\x09\x83\x26\xf3\xdd\xd3\x30\x08\x58\x07\xab\x2e\xa7\x1e\x13\x18\xd3\x17\x72\xdd\xe2\xd4\x3a\x88\x1a\x4e\xad\xe3\xbc\x22\xa3\x31\x6d\x84\x91\xd1\x89\xab\x95\x73\x74\x6a\x30\x27\xd6\x31\x09\x24\xde\x5a\xc7\x1b\x53\x30\x15\xfd\xd6\x14\xde\x9a\x02\x6e\xfb\xad\x29\xbc\x51\x72\x53\xd1\x6f\x95\xfc\xad\x92\x13\x48\xbc\x55\xf2\x37\x4a\x3e\xcb\x67\xbd\x14\xf1\xd1\x08\x24\xde\x2a\xf9\x3b\xf8\x45\x26\x09\x6f\xbd\x1c\xb0\x0e\x02\x89\xb7\x51\x03\x30\x26\x13\xb4\xb7\x6b\x0d\xc0\x3a\x6c\x84\xbe\xf0\x8d\xe3\x9b\xa4\x6f\xde\xf1\x79\x3c\x1d\xcd\x4c\xe5\xed\x22\xd8\x9b\x68\x79\xe2\xef\xdf\xc6\x03\x6f\xa6\x5e\x07\xe1\xc6\xdb\xd0\xf8\x8d\x62\x06\xfe\xfe\xad\x62\xbe\x55\x4c\x48\x67\x6f\x15\xf3\x8d\xca\x99\x18\x7e\xab\x72\x6f\x86\x62\x07\xb0\xb7\xfa\xf5\x46\x4d\x02\x2f\xf7\x56\x4d\xde\xaa\x89\xaf\x5d\x9f\x67\x5d\x1f\x2d\x86\x22\xbb\x50\xf7\x88\x37\x79\xeb\x1e\x81\x11\x23\xbf\x3f\x14\xbf\x1d\xbc\x81\x75\x10\x8d\xbc\x55\xbf\xf7\x15\x79\x8f\x40\x6f\xdf\xce\xdf\x80\x25\x8f\xec\xad\xdb\x05\x86\xf9\xdd\xb7\x1a\xf9\x56\x23\xcb\x1b\xfd\x34\x68\x64\xe0\x46\xde\x6a\x24\xb0\x0e\x82\xe9\xb7\xe1\x3b\x30\x62\x7a\xa3\x5d\x40\xf8\xee\x80\xfd\x56\x49\xdf\x68\x64\x5c\x46\x1d\xd2\x98\x85\x75\xf4\x81\x68\x28\xa2\xf5\x97\xf1\xc4\x0d\x17\x2e\xac\xe3\x8a\x6c\xe2\xc6\x8c\x31\x60\x3b\x8f\xb8\xcc\x22\x64\x3b\x0b\xeb\xb8\x5c\x65\x48\x77\x16\x06\x19\xe5\x90\xee\x2c\x2c\x42\x84\x80\xfa\x7c\x01\xed\x4a\x7f\xf1\x8d\x88\x89\xdf\xd1\x88\xa6\x4d\x9d\xb4\xab\x68\xfd\xb4\x5d\x57\x30\xbe\x8e\xa6\x11\x64\x22\x85\x11\x57\x47\x07\xa4\xe9\x1f\xe3\xe6\x48\xbf\x78\x47\x6c\x20\x6e\x44\xbb\xb1\x78\x56\xd8\x08\xa2\xdd\x63\xd3\x2e\xb4\x3b\x20\x46\x8f\xb8\x14\x3e\x24\x46\x0b\xeb\xd8\x3c\x3e\x7d\xd6\x05\x23\x3e\xa2\x52\x44\xbb\x36\xed\x4a\xdb\x45\xb4\x1b\x57\x6c\x11\xb7\xb4\x5d\x44\xbb\xc7\x47\x64\x17\xa6\xfc\x79\xda\x85\x27\x16\xd6\xb1\x6d\xc4\xa7\x5d\x6f\xae\xa2\x73\x88\x07\x84\x35\xbc\xb1\xec\x2f\xcc\x22\x6f\x3c\xbe\x7c\x3c\x66\x31\x6e\xf4\x44\xf9\x85\x30\x8b\x3c\x68\x6a\xf9\x85\x88\x50\xc7\x8d\xaf\x5d\x36\x82\x08\x95\xc4\x70\x48\xaa\x8e\x1b\x53\x4d\xc2\xa0\x80\x4d\x7d\x41\x72\x15\xed\x6a\x7b\x02\x2d\x84\x62\x18\xb7\xf6\xf1\x68\x61\x5e\x9e\x38\x24\x42\xc7\x71\xe9\xd7\xc8\x6b\xe4\x8a\x43\xfd\x82\x0f\xbd\xc6\x15\x52\x05\xa4\xe8\x0b\x78\xa1\x6b\x84\x08\x59\xcf\x71\xe0\xf1\xc6\xe1\xb3\x4e\x45\x3c\xfe\x72\xa8\x71\xa8\x4c\x07\x93\xb5\x71\x05\x38\x01\x45\xf9\x02\x3a\xba\x78\x3c\x61\x63\x1c\xf3\xf2\x65\x70\x13\xe3\x98\xde\x78\x8d\xc8\x23\x8b\x76\x31\x33\x13\x16\xdc\xc4\x38\x98\x99\xc5\xc1\x34\x2c\xb1\x8e\x23\x6c\xea\x05\x6b\x4c\x45\xad\x88\xd6\x5f\x21\x7b\x40\x77\xfe\xc0\x1a\x93\x17\x62\x58\x8f\x23\x68\x57\xd3\x88\xb0\x5d\x28\xe6\xb0\xbf\x54\x4c\x38\xcc\x83\x6c\x6b\x1c\x2a\x26\xb0\xc6\xe5\x27\x42\x3e\x73\x1c\xf8\x58\xf2\xa8\x71\xa8\x5f\x07\x53\x27\x38\x93\x71\x30\x75\x8a\xe3\xd2\xaf\x91\xe8\xea\x91\x9f\xc7\xd3\x13\x93\x46\xa4\x3d\x71\x8d\xee\xa3\xd0\x2f\x29\xce\x01\xad\x79\xb1\xfd\x23\xe0\x36\x5f\xb0\xb8\x8a\x67\xa9\x72\x87\x2a\x17\xf4\x84\x2a\x07\x8c\x3a\xe8\x42\x55\xee\x50\xe5\xfc\xb4\xaa\x1c\xec\xe4\x51\x7e\xda\xb6\xa3\x71\xa2\x03\xcf\x24\x53\x59\x18\x64\x48\xe3\x68\x5f\xbb\x6d\x17\xef\xa8\x16\x1e\xac\x6e\x90\x21\x8d\xa3\x6d\x04\xe1\x2c\x8c\xcf\x90\xbc\x2c\x8c\xe2\xd3\x4a\x5e\x16\x46\xf1\x1d\x87\xee\x11\xc2\xf2\x1a\xe9\x55\x5b\x11\x2f\x44\x4f\x0c\xbd\xdc\x60\x49\x8a\xa0\x37\x60\x2d\x5f\x70\x79\x80\xf2\x46\x3d\xd3\x50\x31\x2f\x7f\x1f\x32\x95\x63\x5c\xa1\xe2\xa8\x6b\x44\x8d\xc1\x92\x41\x8c\x49\x53\xcb\x67\x9d\x8a\x68\x6a\xf9\xac\xb7\xa2\x6b\x0e\x32\x9a\x46\x10\x5c\x0a\x83\x4c\x66\x8c\xf0\x85\x58\x6b\x18\xf8\xfb\xa1\x46\x0f\x42\x04\x32\x99\x31\x74\x8f\x90\x9f\x17\x24\xd0\x18\x61\x53\x83\x77\xfc\xdc\xe8\x3b\x32\xf3\x1f\xf8\xe8\x91\x3e\x3e\xe9\x2f\xfc\xea\x48\x1f\xcf\xe0\x0f\x09\x34\x06\x83\x7f\x8c\xe4\x17\x17\x8f\x57\x57\x47\xa2\x00\x1f\xd1\x4b\xd1\xa5\x98\xb5\xc7\x77\x87\xe2\x90\x73\x1d\xf0\xa1\xd7\x40\xe1\x21\x45\x5f\x90\x3c\x84\xbe\x53\x49\x07\xd3\xf4\xb1\x69\xb6\x4a\x0a\x8c\xc6\x97\x0d\x95\x14\x06\xf5\x1a\x9f\x1b\xed\xe1\x0b\x46\x1f\x3c\xbe\xed\xe1\x0b\x16\xbc\xce\x70\x0b\x94\x30\xc8\x7d\xc6\xd0\x2f\x0e\x34\x72\xfa\x78\x35\x12\x18\x6c\x16\x8a\xc1\xb0\x1e\x03\x57\x49\xac\x1e\x43\x57\x09\xf5\x7a\xb0\x7d\x27\xa4\x5e\x0b\x6b\x1e\x8a\x86\x22\x5a\x7f\x85\x1b\x21\x83\x5a\x58\x44\xf4\x31\xd5\xc8\x49\xbc\xc8\x9e\x91\x80\x60\xfd\x81\x35\x31\x31\x79\xd6\x31\x19\x64\xc9\x57\xc6\x74\x90\x05\xd6\xbc\x26\xa4\x31\x55\x65\xa0\x8b\x91\x5e\xea\x75\xc0\xa0\x1e\xa4\x30\x43\x06\xb5\xb0\xe6\xa1\x88\x2e\x84\x08\x3d\xd8\xca\x10\x12\xa1\x03\xa6\xf3\x62\x5a\x11\x53\x5d\x9b\x8c\xce\x24\x27\x63\x3a\x3a\x03\x6b\x32\x00\x49\x84\x16\x06\x3c\xfc\x90\x08\x2d\xac\x89\x37\x90\x08\x1d\x13\x5d\x6b\x54\x79\xaa\x6b\x93\xd1\x79\xda\xab\x8e\xce\xb0\x9e\x07\x69\xc7\x90\xf5\x2c\xac\x39\xe8\x9c\xb4\x57\x19\x77\x1b\xb7\x3b\x1d\x77\x81\xc5\x44\x26\xa6\xe3\x2e\x4c\xe5\xd1\x68\xa1\x4c\x65\x61\xcd\xc1\x6b\xab\x85\x10\x8e\x07\x14\xfa\x90\x70\x2c\xac\xe9\x77\x2c\x5f\x08\x95\x23\x13\x19\x12\x8e\x85\x35\xaf\x59\x71\x48\x38\x0e\xe8\xc3\x03\x12\x7a\x4c\x9d\xe0\x6c\xdf\x91\xef\xa8\x7e\x4d\x62\xc4\xa5\xe6\xb4\xef\xa8\xca\xe1\xf1\xa6\x2a\x07\xc9\x78\x2c\x3f\x5a\xdb\x2e\x5c\xe5\x9c\x36\xc2\x76\xa1\x98\xd0\xa5\x43\x0e\x72\xc0\x02\x1e\x8b\x2f\x14\xf3\x23\x42\x57\x19\xb9\x60\x07\x5f\x70\xd9\x23\xcc\xdb\x08\x96\x52\x85\x35\x19\xb9\xc2\x20\x2e\x18\x51\x49\x3b\x46\x38\xa2\x02\x0b\xde\x70\xc8\xe2\x0d\x98\xbb\x63\xe1\x63\xc3\x11\x15\x58\xd3\xc7\x3b\xa2\xc2\xb6\x1d\x0b\x57\x19\x7a\x29\x60\x4d\xc2\x8d\xd0\x4b\x01\x03\x06\x63\x48\xc6\x8d\x50\x4d\xa6\x22\x7f\x11\x35\x21\xd9\x16\xa1\x9a\x84\x6a\xc2\xc8\x25\x3f\x37\x82\x59\x0b\x7c\xc2\x88\xf2\xf1\x78\x26\x66\x8c\x11\x7a\xa6\x40\x4d\xd6\xe2\x85\x54\x93\x50\x4d\x18\xdf\x42\x35\x89\x6b\x7c\x1c\x50\xe6\x02\xfa\xee\x07\xd6\x0c\x6f\x7c\x29\x42\x4d\x08\x41\xe5\xe7\x46\x10\x9e\xc1\x8d\x8e\xd0\x0d\xb1\xf1\x72\x40\x27\x8b\x70\xf8\x04\xd6\x0c\x1e\xaf\xe6\x00\x03\x0a\x58\x84\xce\x0a\x62\xef\x62\xda\x1a\x12\x7b\x03\x62\xef\x80\xb6\x15\x12\x7b\x03\x32\xef\x9a\xc4\xfa\xa1\xe6\x00\x03\xaa\x55\x84\x9a\x03\x2c\x26\xb7\x21\xd7\x37\xe0\xfa\x2e\x76\x84\x86\x5c\xdf\x80\xd8\x3b\xe0\x55\x85\xc4\xde\x80\xcc\xbb\xa0\x5e\x47\xea\xe5\x60\xdb\x8e\xcd\xb0\x2e\xdb\x56\x58\xcc\x77\x23\x55\xb9\x64\x05\x07\x8a\x4f\xa4\xce\x0a\x58\xf3\x9a\xf8\x85\x9c\x5c\x61\x40\xde\x09\x39\xb9\x01\x01\x77\xcd\x52\xf4\xf9\x45\x5e\x1b\x9d\x48\x16\x75\x84\x05\x41\x3b\xd2\x01\x1b\x18\x90\x77\x42\x9a\xae\xb0\x66\x79\x23\x3d\x01\x01\x77\x40\xcb\x09\x09\xb8\xc2\x9a\xb8\xb4\xd4\xcb\xc1\xb6\x1d\xdb\xd7\x56\x31\x81\x35\x19\x8a\x65\xdb\x46\xa2\x72\xdb\xa6\xaa\x72\xa9\xca\xe1\xf8\xa4\xd6\x06\xdc\xd9\x41\xb2\x2e\x20\xd0\x7e\x60\x4d\x3c\xb9\x3c\xda\x48\xd5\x64\xf1\x2c\xd5\x24\x55\x93\xfe\xfe\x02\x75\xa4\x5a\x04\x35\x76\xb0\xef\x33\xa4\xc6\x06\x4c\xd4\x49\xa2\x33\xca\x01\x08\x56\xea\x9a\x44\x10\xb2\x52\x03\x8e\xe9\xbc\xe1\x9c\xcb\xaf\x55\x3a\x08\xec\x49\xbe\x69\xd4\xf5\x1d\xe6\x6d\xde\x10\x3d\x14\xf1\x1d\x88\x9c\xcb\xef\x50\x57\xa7\x4f\x72\x66\x51\x76\x7a\x39\x26\x2d\x6f\xfc\xfc\xe2\x9b\xab\x68\x97\x81\x13\xb0\x26\x31\x8b\xfb\x8f\x03\xbe\xea\x24\x1b\x16\x65\xdc\x0f\x51\x75\x4d\x62\x16\x89\xaa\x51\x41\xbb\xb0\xf3\x32\x4a\x82\x82\xba\xe6\x52\x64\x23\x92\x67\x61\x29\x92\x4b\x85\xc5\x0a\x4c\x94\xdf\x14\x26\xe9\x64\xe7\x64\xc8\x24\x15\xd6\x5c\x34\xd5\x49\x24\xbc\xce\x79\x43\xe1\xe5\x75\x06\xbc\xce\xc5\x3a\x4d\xc8\xeb\x0c\x88\x9b\xf3\xb6\xbc\xca\xd7\xbe\x60\xcd\xcd\x3b\xea\x33\x80\x79\xb3\x11\x0e\x2d\xa5\x1b\xd9\xbc\xa3\x6e\xa4\xd8\xbf\x7d\xf3\xf1\xea\x47\xa9\x1f\x9b\xc7\xab\x00\x70\x39\xe7\xed\x73\xa3\x4d\xd5\x8d\x30\xc3\x96\xd7\x19\x30\x36\x27\xc9\x81\x90\xb1\x29\x2c\x36\x16\x44\xe9\x33\x80\xc9\xb2\x7f\x48\xe2\x8c\xbe\x7c\xc6\x64\x8d\x3f\x5a\x9f\x01\x2c\x16\x9e\x42\x5e\xa7\x30\x59\xe3\x8f\xd6\x8d\x40\xf5\x5c\x93\xe9\x8e\x54\x4f\x61\xb2\x99\x32\xa4\x7a\x46\xeb\x6c\x98\x74\xb7\xce\x06\x98\xc7\x61\x23\x1e\x8a\xae\x8e\x8e\x4f\xbb\x9e\x8a\x5e\x5c\x35\x11\x9d\x8a\xde\x5c\x45\x53\x49\x6b\x07\x1c\xd1\x79\x10\xf3\xc8\x11\x0d\x08\xa1\x8b\x9d\x12\x21\x21\x34\x60\x7f\xce\x03\xf7\x26\xfb\x33\x60\x7c\x2e\x16\xc4\xa2\xd5\xfb\xbe\x74\x7d\xb2\x4a\x1e\xad\xb3\x69\x94\x3c\x6e\xb4\x5e\x25\x07\x26\x6b\xd6\xd1\x2a\x39\xb0\xc2\x17\x52\xc9\x81\x79\x30\x60\xb7\xb3\x03\x60\xc5\xe1\x8d\x36\x35\xe8\x55\x86\x62\xc9\xa5\xc2\x0a\x5f\xdb\x01\x1b\x98\xac\x33\x47\x3b\x60\x43\x41\x5d\x71\xf8\x78\x5f\xe8\x32\x92\xc9\xda\x70\xc8\x37\x15\x56\x1c\x3e\xde\x17\x0a\x14\x20\x14\xf9\x42\xa4\x5c\xc2\x2e\x4c\x5f\xe8\xb2\xa1\xc9\x1a\x6c\xb4\x36\xd4\x69\xbb\xe8\x1c\xd7\x66\x80\xc9\xc2\x66\x48\x28\x15\x56\x10\xba\xb4\x66\x05\x63\x74\xb2\x64\x19\xed\xec\x02\x58\x41\x70\x29\x7b\x34\xfa\x8a\xfe\x26\x0b\x88\xd1\x46\x7f\x50\x45\x17\xfb\x44\x42\xaa\x68\xc0\x05\x9d\xac\xc4\x45\x6b\xa2\x30\x3e\x17\xfb\x44\x42\xc6\x67\x74\xd3\x2e\x3c\x53\x1b\xb1\x41\xdc\x5c\x31\x15\xd9\x5f\x8d\x16\x6e\x45\x2a\x40\xa3\x85\x7e\xda\xb6\x0b\x31\x2b\xd2\x5d\xd1\x9a\x15\xb0\x58\x6d\x8c\xd6\xac\x5a\xb3\xc2\xd2\x24\x81\xc6\xd2\xac\xb0\xa1\xa5\x59\x01\x2b\xd0\x89\xa5\x59\x41\x15\x9d\x2e\x49\x49\x15\x0d\xa8\xa2\x8b\x65\xca\x90\x2a\x1a\xeb\xd2\xfb\xe9\x02\xd1\x52\xef\x81\xc5\x32\x65\x2c\x07\x6c\xd8\xa3\xd3\x75\x1e\xd9\xa3\xc2\x62\x4b\x4b\x2c\x4d\x01\x98\xe4\xc9\x62\x39\x04\x00\x8b\xaa\x11\xb1\x9c\x4e\x43\x02\x9d\xae\xf3\x48\x02\x0d\x58\x9e\xcb\x25\xcf\xa5\x16\x02\xd3\xf5\x14\x19\x9f\xc2\x8a\x50\x64\xeb\x2f\x2d\x9c\xae\x94\x2c\xb5\x10\x58\x2e\x8c\x2e\x3d\x39\x30\x07\x23\xbd\x24\x50\x61\x05\xba\x2a\x09\x34\xd6\x15\x6f\x4e\x57\x37\x96\xf1\x26\xb0\x5c\x3e\x95\x17\x1a\x90\x40\xe7\xf8\xdc\x68\x23\x08\x2e\xd9\xb6\x13\xcb\xe0\x72\xa1\x98\x23\xe7\xf7\x87\xe2\xa5\xde\x2e\xf5\x16\xb3\x58\xea\x2d\xf4\xce\xe9\xea\xc4\x32\x84\x04\x56\x10\xe3\x2d\x27\x1f\x8b\xe1\x80\xd4\x57\x2c\x87\x03\xd8\x9f\x2b\x58\xc3\x90\xfd\x19\x50\x3d\x27\xa9\xaf\x90\xea\x19\x4b\xbd\x4d\xba\x53\xbd\x05\xe6\x58\x8a\x7c\x13\x26\x1f\x41\xd8\xb7\x54\x65\x60\x8e\xa5\xe8\xa9\x08\x6f\x80\x21\x2e\x55\x19\x8e\xe8\x24\x41\x16\x72\x44\x85\xc5\x9e\xa4\xd8\xce\x8a\xa9\xee\x31\x07\xe3\xdb\xd6\xf7\x03\x2b\x18\x51\xb7\x6b\x8a\xc0\x74\x31\x60\xab\xca\x5b\x55\x66\x9d\x59\x72\x69\xec\x41\xbb\xb6\x8f\x7f\x2a\xa2\x5d\x2c\x20\x6e\xa3\x19\xc8\xa5\x73\xe2\xe8\x25\x97\x0a\x2b\x18\x9d\x25\x97\x06\x4c\xd2\x39\x71\xe1\x32\x49\x85\x15\xb8\x11\x99\xa4\xb1\x2f\xed\x9e\x93\xb5\x86\xad\x76\xc3\x1e\x5d\x41\x8c\xb7\x0d\x47\x77\xf0\x8b\x4c\xcd\xb7\x2e\x7c\xeb\xaf\x59\x52\xda\xda\x00\x30\x9d\xc9\xee\xf0\x17\xc3\x5f\xa4\x27\x74\xe1\xfb\xb2\x81\xe9\x1c\x75\x6b\x03\xc0\x0a\xc2\xd1\x1d\x9f\x5f\xbc\xfc\x8f\x33\x46\x29\xa8\xc2\x8a\x56\x64\xe7\x60\x3c\xce\x18\xb7\xc6\xb3\x35\x1e\xc2\xd1\xad\xf1\xec\xcb\x47\x4f\x27\x7e\xdb\xa9\xf9\xd6\x5f\xa3\x72\x5b\x7f\x0d\xdf\x74\x3a\xc1\x92\x6f\x2a\xac\x60\x1a\x26\xdf\x54\x98\x4e\x51\xe4\x9b\x0a\x2b\xda\xc7\xa3\xf7\x90\x4b\xe7\x4c\x1a\xa1\xbf\x06\x56\xb0\x2c\x2b\xb9\x54\x98\x4e\x51\x24\x97\x0a\x8b\x1d\x68\x21\xb9\x54\x98\x33\x15\xd9\xfa\xb2\xf5\xa8\x89\xf3\x37\x38\xa6\x73\xaa\x72\xc6\xd7\xc0\x8a\x56\x64\x47\x5f\x43\xc0\x9c\x2a\x93\xb1\x18\xb0\xcc\x50\xc8\x24\x0d\x68\xa3\xd3\xd9\x81\xb4\xd1\xd8\x04\x5e\xec\x79\x8b\x6d\xe0\x05\xcc\x69\xe7\x38\x7f\x03\x56\x10\xfd\x6d\x4d\x14\x98\xd3\xd7\x36\x3c\x83\x49\xba\x62\x79\xa3\x5f\xbb\xe9\x55\x9b\xea\xa0\x01\xac\xc0\x44\x25\x81\xc6\x7d\xa0\x5f\xdc\x78\x77\x84\x80\x17\xba\xd8\x65\x17\xf2\x42\x85\x39\x19\xb9\xe4\x85\x0a\x2b\x3e\xa2\xad\x68\x73\xd5\x40\x74\x57\x84\x7e\x61\xc8\x52\x45\xe3\xae\xa5\x61\xb5\x77\x2d\xed\xae\xa5\x31\xe4\xdd\xb5\xb4\x3b\x96\x66\x78\x76\xd7\xd2\xee\x4c\x25\x82\x10\xf4\xee\x38\x02\xc7\x74\x06\x8b\x27\x72\x4c\x85\xc5\xee\xbf\xb8\x3b\x95\x80\x63\x3a\x0d\x96\xe4\x98\x0a\xcb\x8c\xce\xdd\xa1\xe5\x7e\x19\xcc\x74\xf0\xbf\x6b\x30\xc0\x0a\xc6\xca\xbb\x06\x73\xc7\x3a\x02\x4b\xbb\x6b\x1d\x77\x16\xae\xcc\xfb\xdc\x1d\x47\xe0\xab\x4e\x07\x7f\xf9\xaa\x71\x67\x8d\x3f\x71\x30\x77\x0d\x06\xbe\xea\x0c\x86\x29\xf9\xaa\xc2\x62\x0b\x62\xdc\x1d\x34\xee\x58\x47\x30\x4c\xdd\xb5\x0e\x60\x99\x43\xba\xe7\xe7\x17\xdf\x5c\xc5\xb3\x5c\xde\x02\x56\xda\x39\x1a\x0c\x74\xd8\xe9\x98\x24\x1d\x56\x58\x89\x4b\x93\x0e\x1b\x70\x5f\x67\x60\x69\x72\x5f\xe3\x7e\x85\x3e\xcb\x7c\xd4\xdd\x65\x7f\x58\xad\x53\xb7\x2d\xab\x35\xee\xac\x95\x26\x8e\xef\xae\xfa\x02\x53\x67\x75\x57\x7d\x81\x95\x44\x0d\x72\x5f\x03\xbe\xeb\xd4\x0d\xdd\x55\x5f\x60\xb1\x35\x32\xee\xfd\xf9\x45\xfa\x1e\xeb\xb8\x3b\x9c\x00\x2b\x0f\x45\x76\x0e\x23\x8c\xe6\x2e\x69\x36\xe0\xbe\x4e\x6d\x5b\xee\xab\xb0\xf2\xf8\x7e\xae\x38\x1e\x2a\x3c\xd4\xd8\x19\x4c\xad\xa5\xc6\x0a\x2b\x89\x76\x1f\x6a\x37\x30\x4d\x3b\xca\x96\x15\x96\x59\xba\x87\xd3\x0a\x78\xb0\x53\xb3\x90\x07\x2b\xac\x24\xda\x95\x07\x2b\x4c\x55\x59\x1e\x6c\x3c\xb0\x81\x24\x4a\x7a\x68\x03\xc0\x54\xfd\xa4\xc6\x0a\x2b\x87\x8f\xdf\x8a\x4e\xae\x1a\x88\xde\x8a\xde\x5c\x85\xc8\x69\xc5\x83\xb8\x9f\xbd\xad\xf1\xd0\x2c\x80\xc5\x86\xd1\x78\x18\x71\x01\xf3\xf3\x42\x8e\x36\x0f\xe2\xfe\x64\x98\x7a\x68\x16\x0f\xc2\xab\xbf\x3d\xde\x5f\x24\xe9\x90\x4c\x77\x24\xe3\x06\xcc\xdb\x99\xd8\x93\xcc\x5b\x61\x25\xc6\xf3\x70\x2a\x00\xcc\x64\x45\x54\x32\xae\xb0\x92\xc1\xec\xe1\x68\x03\x3f\x77\xfe\x4d\xe4\x2f\x6a\x03\xc4\xd7\x0f\x6d\xe0\x81\x0d\xb0\xd3\x34\x1e\xda\xc0\x43\x1b\x20\xaa\x7c\x68\x03\xc0\x4c\xec\xe9\xe1\x70\x20\xd7\x37\x19\xf2\xe4\xfa\xc6\x83\xd9\x01\xfb\x51\xe3\xe1\xec\xe0\xa1\xa5\x10\x26\x4b\xff\x8d\x07\x13\x78\xf6\xa3\xc6\xc3\x09\x03\xf4\xdf\x65\xd2\x54\xfa\x6f\xc0\xf5\x9d\xec\x34\x0d\xb9\xbe\xf1\xc0\xf7\xb3\x75\x36\x1e\x1a\x0f\x30\x93\x70\x43\xfa\xaf\xb0\x3e\x2f\x64\xc4\x06\x8b\x77\x26\x89\x74\x59\xbc\x21\x65\xd7\x04\xac\x94\xdd\x80\x8c\x3b\x13\x7b\x92\x8c\x2b\xac\x24\x4c\x7e\xea\xd5\x61\xde\x4e\xf6\x90\x86\xcc\x5b\x61\xd9\x39\x32\x6f\x03\xb6\xed\xcc\xe5\xb3\x78\xc7\xa7\x1a\x4d\x98\xfc\x54\xa3\x21\xe0\xce\x44\xef\x9f\xaa\xaf\x64\x5c\x3b\x47\x32\x6e\x3c\x59\xfa\x61\xdf\x67\x3c\x5d\xfa\x01\x56\x12\x95\x3e\xe7\xe7\xf1\x97\xc7\xa3\x86\x5c\x3c\x55\x5f\x60\x25\x83\xbf\xfc\xdc\x80\x1a\x3b\x0b\x87\x2a\x35\x56\x58\x6c\xfc\x8d\xa7\xba\x0a\xcc\x3a\x14\xf9\x8b\x7a\x75\x42\x84\xa7\xea\x0b\xcc\xc2\x44\x25\xd0\x0a\xcb\x8f\x26\x81\x36\x9e\x97\x62\xce\x62\x42\xfa\x54\x31\x25\xd0\x26\x81\x84\x04\xda\x80\x21\x3b\x0b\xbd\x7f\xea\xe8\x81\x95\xe5\x8d\x0f\x45\xb4\x7e\x2a\xb2\xf5\xc4\x4f\x6c\x35\x0e\xd9\xb2\x01\x1d\x76\x9a\xe8\x7c\xea\xfb\x9f\xea\x7d\x29\xb2\x5d\x17\xcc\x62\xb4\x91\x2d\x2b\x2c\x36\x24\x87\x6c\xd9\x80\x2d\x3b\x0b\xc5\x94\x2d\x2b\x2c\x55\xee\xa9\x29\x40\x5b\x9d\xc5\x98\xf4\x54\x57\x9f\xfa\x7e\x22\x5c\x29\xac\xf1\xbc\x14\x73\x96\x5d\xa8\x62\x3e\xf5\xea\x2a\xa6\x5e\x1d\x98\x65\x53\x9d\x37\x40\x74\x5d\xa6\xee\x25\xba\x06\x7c\xd5\x59\xdc\x28\x5f\x55\x58\xc9\xa0\xf1\xd2\xaf\xc2\x57\x9d\x45\xcc\x23\x5f\x55\x58\x26\xf8\xe5\xab\xc6\x0b\x2d\x2c\x3c\xf9\x4b\x2d\x04\x56\x12\xbb\xbe\x74\xa2\x70\x54\x67\x2d\x9f\xf5\x54\x44\xdf\x63\x30\xf2\x55\xe3\x85\x5f\xad\xad\xe8\xad\x08\xbf\x4a\xec\x2a\x85\x35\xe0\xab\xce\xc2\x93\xcb\x57\x15\x96\x94\x82\x97\x41\x09\x30\x9b\x84\xd1\x4b\xef\xfb\xd2\xfb\xb6\x37\xda\x2e\x26\xa4\xcd\xe0\xff\x72\x42\x0a\xac\x64\x7c\x7b\xe9\x44\x81\xd9\x68\xf4\x4b\x27\xfa\x52\x0b\xed\x1c\xb5\xf0\x75\x29\xd3\x64\x7f\x66\xbc\x54\x26\x60\x25\x0b\xa3\x2f\xc3\x0d\x28\xac\xd3\x1c\xa5\x14\x56\x61\x49\x62\x78\xa9\x5f\x2f\xfc\x2a\x85\xfa\xe2\xa5\x5f\x7d\xa9\x39\x38\x85\x97\x9a\x03\xcc\xc6\x89\xbe\x5c\xc6\x7e\xe9\x57\x57\x7d\x7f\x28\x7e\xe9\x76\x5f\x4d\x17\xe0\x63\x5f\x2e\x6c\x02\x2b\x97\x22\xbb\x00\x57\x49\xe1\xb8\x78\xf5\xe7\x46\x9c\xcd\x52\xb4\x15\x5d\x1f\x90\x32\x6e\x21\x0f\x36\xe0\xbe\x4e\x76\x61\xc6\x69\x4c\x2c\xe9\x35\x51\x06\x49\xaf\xc2\x34\xd1\x79\x1a\x54\x9c\x06\x15\xb8\x37\x79\xb0\x01\xe9\x75\xb2\x0b\x33\x24\xbd\x86\x74\xd6\x24\x4c\x96\xce\x1a\x27\xcb\x2d\x8d\xfa\x9d\x2e\xb7\x48\x67\xd5\x09\x4a\x67\x15\x66\xa3\x0c\xa7\xda\x7d\xaa\xdd\xc4\xb1\xa7\xda\x7d\xb2\xa6\xd8\x7c\xe6\x53\x25\x05\x56\x6e\x45\xfe\x22\xde\xb3\x7d\x21\x95\x54\x3a\xab\x34\x11\xe9\xac\x71\xa2\xb7\x6d\x53\xd5\xdb\x93\xc8\x99\xed\xf6\x71\xaa\xa4\xc0\x6c\x1b\xa1\x92\x02\xab\x50\x65\x79\xb0\xc2\x5c\x9f\xc7\xdb\x13\xc4\xd7\x3a\xe7\xd3\xf8\xfa\xc4\x13\x53\x2b\x2c\x4e\x3d\xf1\x49\xc6\x8f\xed\x53\x71\xaa\xf0\xe7\xa5\xbe\x93\x3a\x5a\x71\xba\xe8\x07\x1d\x76\xd5\x47\xe4\xb3\xf0\x9e\x54\x8f\x8a\x53\xef\x09\xac\x22\xf6\x94\x2d\x2b\x4c\x73\x9f\xb2\x65\xe3\xbc\x14\x7e\x15\xb1\xe7\xa9\xc2\xc3\x57\x9d\x54\x7c\x8a\xd3\x61\x1d\x58\xc5\x04\xfe\x74\xa9\x1e\x98\xd4\x39\x8a\xd3\xb5\x19\x60\x39\xb4\xc8\x70\x8d\x93\xb5\x19\xf3\xa8\xa7\x83\x3f\xb0\x28\x29\x10\xa7\x1a\x0d\x4c\xea\x09\xc5\xa9\x46\x03\xcb\x01\xe8\x34\xe4\x86\xbb\x3a\xa9\x27\x14\x72\x57\x03\xee\xea\x2a\x62\x44\xb9\xab\x01\xb9\x74\x52\x13\x27\x24\x97\x0a\x4b\xf2\xcd\xdb\x01\x1b\x98\xd4\x8b\x89\xb7\x5a\x08\xac\x22\x88\x7b\x3b\x59\x7b\xa3\x85\x54\x82\x89\xb7\x5a\x08\x2c\x29\x3a\x6f\xb5\xf0\x8d\x8f\xa5\x12\x4c\xbc\xf5\xb1\x6f\x46\xfa\x22\x46\x7c\x3b\xd2\x03\x73\xb5\xbf\x78\x57\xc4\x77\x64\x60\x7c\x3b\xa5\x7b\xa3\xd1\x6c\x54\x8c\xb7\x1a\x0d\xac\xc2\x25\xbd\xd5\x68\x60\x52\x5e\x25\xde\x7a\xe2\x37\x84\x99\x22\xde\x7c\xbb\x24\x0e\xa7\x76\xb2\x9d\x31\xe4\xd4\x0a\x4b\xea\x90\x9c\x5a\x61\xb2\x9d\x31\xe4\xd4\x0a\xcb\x41\x56\x4e\x6d\xbc\xd5\x68\xa6\xad\x6f\x35\xfa\xcd\x7a\x4a\x4d\x45\x4f\x45\xb4\x7e\xfb\x8b\xb6\x9e\xd8\x82\x62\xb7\x21\xf3\x56\x98\x14\x15\x89\xb7\xb1\x05\xb0\x0a\x35\x91\x8c\x1b\x10\x70\x27\xe5\x42\xe2\xad\x57\x87\x8c\xbb\x1c\xb0\x25\xe3\x0a\x93\x52\x1a\x21\x19\x57\x58\x85\x9a\xbc\xb5\x0e\x60\x9a\xdf\x7d\x6b\x1d\x6f\xad\x83\xa5\xd4\xb7\xd6\xf1\x26\xa6\xde\x87\x22\x9b\xaa\x75\x10\x23\xbe\xb5\x0e\xb8\xbe\x93\x2d\x9b\x21\xd7\x57\x58\x45\x8c\xf8\x36\xb6\x78\xe3\xfb\x37\x96\xf6\xd6\xf7\x03\x8b\x0a\x11\xf1\xd6\xb9\x43\xff\x9d\x94\xac\x08\xe9\xbf\xc2\x2a\x3c\xb9\xf4\x5f\x61\x6e\x3f\xad\xc6\x07\xac\x22\x18\x97\xdf\x2b\x4c\x36\x89\x86\xfc\x5e\x61\x55\x2a\xf2\x85\x98\xc9\x6e\x3f\xad\x66\x05\x2c\xf9\x5e\xf2\x7b\x03\x9a\xee\xdc\x76\xb4\x63\x87\x34\xdd\x4a\x6f\xb4\x5d\xac\xba\x6c\xbb\xd0\x09\xe9\x5b\x7b\xbc\x8c\x2f\x65\xee\x26\x3c\xdc\xc9\x86\xd3\xbc\xb1\xbe\x29\xac\xba\x62\xd7\xbc\x31\xc2\x24\x0c\xdb\x49\x79\x83\xb4\xba\x70\xde\xb4\xda\x2b\x76\x4d\xd9\xb6\x09\xc3\x76\xee\x2b\x7e\x4a\x68\xb6\x17\xd8\x7a\x1e\x3f\x7d\x3c\x96\xc6\x56\xd2\xb4\xe2\x70\xde\x58\x29\x81\x87\x96\x37\x02\x9c\xbc\x61\x43\xbb\xbf\x3f\x2b\x4e\xea\x15\x7f\x60\x41\x53\x4b\xeb\x16\x27\x34\xdd\xc9\x86\xf5\xbc\x85\x6f\xe2\xa0\x51\x74\x01\xf6\x94\x37\x16\x23\xd9\xcc\x9d\x30\x7a\x3f\xb0\x20\xb3\xa5\xc4\xde\xbc\xa9\x58\x9b\x36\x96\x2f\xa7\x62\x15\x37\xa2\x58\x49\xbd\xe1\x60\x3f\x6a\x5a\x6f\x58\x58\x75\x8d\xbb\x79\x2b\x1b\x71\x69\x51\xb0\xd3\x34\x65\xcb\x0a\xab\xec\x95\xfa\xfc\xe2\xf3\xba\x6a\xf0\x42\x65\xa7\xeb\xc2\x8b\x17\x42\x8b\x12\x86\x6c\xdc\x06\x4d\x6d\x5f\x88\x25\x38\xca\x85\xa4\x65\x83\x13\xd2\x6c\xb0\x57\x33\x6f\xed\xe3\x59\x12\x87\x7d\x95\xb7\xf6\xf1\x97\x7e\x04\xd9\xe9\x94\x53\x9b\x07\x93\xb5\xba\x02\xcd\x84\x5f\xfb\x81\x20\x3b\x9d\xd2\x6c\x85\x55\x57\x08\x99\x96\x20\x4e\xd8\xb6\x71\x0b\x45\xad\x08\x13\xbb\xa2\x86\xb4\x04\x71\x52\x6f\x38\xd8\x00\x99\xd6\x1b\x16\x56\x5d\x9e\x38\xad\x37\x9c\x90\x71\x83\x4c\x77\x4a\xc6\x4d\x4a\x10\x2f\xe2\xeb\xb4\x04\x71\x52\x63\x38\xc8\x74\xe7\xa1\xae\x51\x50\x78\x41\x11\x4c\xe8\xbb\x1f\x08\xb6\xfd\xa5\x2c\x5e\x61\x11\x85\xa7\xf5\x86\x85\x60\x43\x5f\x1e\xd3\x76\x11\x72\x53\xec\x24\xe5\xfa\x26\x94\xdd\x60\x43\x5f\x4a\xd9\xcd\xc3\x70\x63\xd1\xfa\xf0\xf1\xc1\xb3\x6c\x84\xfa\x75\xa8\x5f\x28\xd3\xa1\x7e\xc1\xcf\x8d\x9b\x8d\x20\xdc\x48\x8a\x13\x2f\x6a\xa9\x24\x15\x8a\x2f\xe0\x1d\x17\xef\x98\xbe\x23\xc1\x34\x71\x7f\x1e\x69\x47\x27\xcf\xda\x34\x35\x7d\x16\x0b\x75\xf5\x11\xd9\x85\x97\xc7\x8c\xe3\xc6\x8d\xe5\xd7\x56\xa3\x37\xaf\xad\x46\x53\x63\x38\x48\x6b\x27\xc4\xdc\x0b\xe8\xaf\x4d\x23\xca\xfe\xba\xd4\x37\xd8\x6e\x96\x87\xea\x2b\x19\xb7\x6f\xbc\xa3\xea\x0b\x04\x1b\xc9\xd2\x7a\xc3\x49\x8d\xe1\xd5\x37\xde\xb1\x7d\xc7\xa6\x5d\x83\x1b\xdb\x76\x11\x94\xb4\x4d\x6d\xbf\xf6\xe5\x2a\x83\xb4\x76\xca\xe2\x15\x16\xf3\x91\x94\xc5\x9b\x30\x77\xe3\x18\xbc\xb6\xd6\x01\x8b\x77\xf5\x4d\x91\xad\x47\xef\xd9\xb0\x95\x52\x76\x85\x20\x3b\x9d\x52\x76\x85\xd5\x57\x5c\x97\x43\x53\x18\x97\xde\x07\x7b\xa5\x72\xa8\xf7\xc0\x82\xde\x99\x16\x2a\x4e\xb8\xbe\xc1\xfe\xa6\x94\xeb\x2b\xac\x3e\x14\xdd\x15\xd1\x88\x6b\x30\xcb\xa1\x92\x03\x0b\x12\x68\x0e\xc2\xa0\x1c\x97\xae\x07\x1b\x7d\x12\x76\xf0\x07\x56\x5f\x31\x62\x4a\x12\x16\x82\xec\x74\x5a\xe1\x38\xa9\x6a\xbc\x1a\xcf\x04\x87\xf8\x82\x27\x57\xd1\x7a\x35\x5a\x92\x30\x93\xb5\x94\x24\x2c\x04\x3b\x53\x52\x92\xb0\xb0\xa0\x9d\xa6\x24\xe1\x84\x05\x1c\xec\x39\xc9\x11\xb6\x2b\x6c\x17\x8f\x0f\xdb\x15\xb4\xab\x69\x7d\xd8\xae\xb0\xbf\xe8\x55\x6d\x08\x08\x76\x80\xa4\x05\x94\x85\xc5\xf4\x30\xa5\x12\x27\x75\x94\x83\xbd\x1d\x39\xc2\x76\x61\x30\x14\xb3\xcf\xa1\xc1\x40\x12\x0e\x6a\x2a\xa7\x24\x61\x61\x41\x87\xcd\x91\xfe\xe2\x15\xa7\xc4\x81\x59\x8d\xf4\x73\x10\xa7\x50\x0a\x28\x07\x71\x4a\x42\x06\x0e\xf6\x76\xa4\x15\x92\x13\x62\xf0\xa2\x9e\x7d\x4a\x0c\xce\x81\xc1\x0c\xb4\x70\x68\x30\x03\xe7\x4e\xad\xfa\x1c\x5a\x07\xc4\xe0\x18\x2a\x40\xd9\x7a\x4d\x61\xf2\x8e\x9a\x02\x10\x03\xb3\x92\x18\x2c\xac\x56\x57\x35\x85\x71\xe9\x7d\x0c\x3f\x87\x7a\x2f\x57\x98\xfa\xf2\x29\x57\x38\xe1\x07\xc7\xb0\x73\xda\x76\x31\x09\xa5\xf8\x50\x8e\x56\x31\x2f\x8b\x88\xe1\x0b\xb5\xaf\x0d\x33\xa0\xe7\xf7\x69\x5b\x39\x1c\x5a\x28\xf9\x1c\xec\x21\x4d\xc8\xc7\x1f\x58\xcc\xb6\x53\x0e\x72\xc2\x3b\x8e\xc1\xfb\x5a\xfe\x39\x61\x17\x2f\xd8\xc5\x29\xbb\x58\x08\x98\xff\x29\xbb\x58\x58\x90\x84\xd3\x2a\xce\x39\x27\x1d\xc5\x98\x34\xa7\x8f\x67\x84\xe8\x2b\xa0\xcb\xe9\x08\x01\x07\x39\xc6\x47\x14\x8a\x30\x0b\xe2\x9f\xa9\x59\x00\x41\x7d\xe6\x9c\x0e\x1a\xc0\x6a\xac\xce\xf2\xcf\x49\xc9\xe7\x18\xe9\x2f\x3e\x14\xd1\x51\x9f\x1b\xe9\x09\x98\xca\x31\x92\x5f\x54\xe1\xa7\x0a\xcf\x60\x66\xc9\x66\x21\x20\xf0\xa7\x25\x9b\x85\xd5\x3e\x5e\x85\x9f\xd7\x70\x12\xec\x34\xcd\x49\x90\x9f\xf2\x99\x1b\x3b\x97\xcf\x9c\x30\x95\x63\x30\x60\xcb\x54\x16\x16\xd5\xda\x73\xaa\xf0\x14\x4d\x0e\xaa\x25\xe7\x74\x38\x90\x83\x4c\xb5\xf6\x94\x83\x9c\xd4\x54\x0e\x2a\x1c\xa7\x35\x95\x85\xd5\x84\x6a\xd6\x54\x4e\x68\xc9\xc1\x1e\xd2\x94\x96\x2c\xac\x26\x12\xb4\xa6\x72\x52\x2d\x39\xe6\x8d\xaf\x6d\xcc\x33\x1d\x21\x88\xd8\x24\x2f\x27\x84\xe5\x98\x38\x67\xab\x25\x0b\x8b\xd5\x8d\x94\xbc\x9c\x14\x3d\x8e\x89\x27\xb6\xe8\xb1\xb0\x28\xf3\x9e\x92\x97\x13\x2a\x72\xc0\x4b\x4f\x8b\x1e\x0b\xab\xed\x68\x63\x1e\x20\xa0\x71\xa7\xb4\x64\x61\x51\xe6\x3d\xa5\x25\x27\xe5\x90\x83\xe4\x77\x86\x31\x0f\xb0\x28\xf3\x9e\x96\x46\x16\x02\x52\x75\x86\xbe\x3f\x58\xc6\x86\x5e\x9e\xa1\xef\xa7\x0e\x72\x4c\x6c\xd3\x3a\xc8\x09\xad\x79\xb1\xea\x92\x16\x3d\x4e\x8a\x1e\xc7\x44\xef\x2d\x7a\x9c\x52\x9c\x59\x75\x49\x29\xce\x42\xc0\xe2\x4d\xeb\x20\x0b\x8b\x55\x97\xb4\x0e\x72\xc6\xa4\x27\x50\xf2\x50\x31\x81\x05\x55\x3d\x43\xdf\x0f\x04\x69\xed\x0c\x7d\x7f\xe8\xe8\xd7\xf5\xb5\xad\x96\x9c\x94\x43\x0e\xd2\xda\x19\x7a\x75\x60\x41\x68\xcf\x50\xc9\x81\x60\x5b\x69\x4a\xbd\xce\x50\xa3\x17\x5d\xa8\x46\x03\x01\xcd\x36\xa5\x5e\x0b\x8b\x32\x5d\x29\xf5\x5a\x08\x08\xb4\x69\x01\xe5\xa4\x34\xf2\xea\x45\x4f\xe8\xfb\xa1\x5e\xc7\xb4\xa3\xd3\x2e\x24\x7d\xd3\x44\x59\xd4\x44\xbe\x80\xfe\x62\xd0\x80\x86\xfd\x81\xc5\xca\x52\xca\xc6\x4e\xea\x20\xc7\xb4\x73\xd2\xfe\xd2\x3a\x36\x4d\xd5\x3a\x60\x60\x07\x34\xca\x0c\x4d\x01\x58\xac\x3f\xa5\x6c\x6c\x21\xa6\x8f\xd7\x3a\x42\xeb\x20\x7e\x0a\xad\x03\x06\x76\x40\x6a\x4c\x0b\x28\x0b\x8b\x55\xaa\xb4\x80\xb2\x10\x70\x00\x53\x82\x76\x4a\xbd\xa6\xee\x7d\x4a\xbd\x4e\x78\xd6\x11\x44\x6c\xf2\xac\x85\x05\xb5\x3f\xc3\x98\x07\x52\x75\xc0\xb5\x4b\x49\xd5\xc2\xa2\xc8\x58\x4a\xaa\x4e\x49\xd5\x14\x93\x4f\x49\xd5\x49\x69\xe4\x80\xe6\x96\x96\x46\x16\x16\x65\xe2\x53\x52\xb5\x10\x6c\x5e\xcd\x34\xb0\x07\x16\x65\xe2\xd3\x0a\xc9\x49\x39\xe4\x88\xb1\x11\x9d\x8a\x68\x04\x31\x4f\x6a\x1d\x10\xb4\x03\x6a\x5a\x4a\xd0\x16\x16\x65\xe2\x53\x82\x76\x42\xd0\x0e\xb8\x63\x29\x41\x3b\x29\x81\xbc\x28\x13\x9f\xa9\x29\x40\xbd\x8e\x08\x9f\x65\xbb\xa6\xed\xe2\x1d\xb5\x0e\x20\xe0\x68\xa5\xd4\x6b\x61\xb1\x57\x21\xa5\x5e\x67\x4e\x3e\x07\xc3\x49\x6a\x1d\xc0\x5a\x76\x4e\xd8\x54\x86\x00\x28\x51\x99\x5a\x07\xb0\x28\x00\x9f\x56\x5b\x16\x82\xcd\xab\x69\xb5\x65\x61\x51\x00\x3e\x53\x83\x49\x86\x80\xc8\xef\x17\xbe\xcc\xd4\x78\xa0\x87\x2f\x56\x0b\x53\x7a\xb8\x10\xd4\x54\x4e\xe9\xe1\xc2\x5a\xc3\x5f\xf7\xe5\x2e\xe3\x09\x38\x47\x29\x3d\x5c\x58\xd4\x87\xcf\x74\x68\xa1\x3e\x73\xc0\xed\x49\xeb\x33\x67\x32\xd3\x58\x7e\x79\x87\x16\x20\x60\xa1\xa4\x25\x9b\x85\xb5\xfc\xf2\xda\x13\x10\xc1\x3c\x49\xf6\xb9\xb0\xa8\x22\x9f\xb2\xcf\x33\x8b\x2e\xc0\x8d\xa4\x93\x0f\x4a\x36\x2f\xaa\xc8\xa7\x25\x9b\x93\x32\xcd\x01\x43\x23\x53\xe3\x01\x16\xa5\xea\x32\x35\x9e\x6c\x7e\x91\x91\x2b\x8d\xa5\xa0\xad\xaf\xa5\x16\x39\xb4\x78\xae\x54\x62\x62\xe9\x1c\x02\xc8\x52\x95\x8d\xa5\xa0\xaa\x07\x4c\x88\x94\xaa\x9e\x54\x6e\x5e\xac\xae\x66\x39\x42\x40\x55\x0f\xf2\xf4\x29\x55\x3d\x29\xa0\xbc\x58\x5d\x4d\x0b\x28\x27\xd5\x92\x83\xec\x74\x5a\x2d\x59\x58\xac\xae\xa6\x84\xf6\x84\xbd\x1e\x64\x94\x53\xf6\xba\xb0\xa8\xd6\x9e\xb2\xd7\x85\xc8\xb9\x11\xbd\x14\xf1\xb5\xd1\x6e\x09\xed\x42\xe4\xa7\x11\xb6\x4b\x55\x66\x68\x91\xbd\x9e\x30\xd6\x23\x7d\xbc\xbe\x5f\xf6\x3a\x75\xd8\x53\xf6\x7a\x16\x4a\x9a\x1f\xd1\x5d\xd1\x9d\xab\x68\x84\x2e\x9c\x32\xcb\x41\x1e\x35\x2d\xb3\x2c\x2c\x8a\xae\xa7\x1c\xf7\x84\xe3\x1e\xe4\x3e\x53\x8e\xbb\xb0\x28\xda\x97\x72\xdc\x85\x20\x7b\x98\xd6\x54\x4e\x39\xee\x8b\xc1\x4c\x8e\x7b\x52\x2d\x39\xb2\x7c\x96\xed\x22\xc8\xa7\xf6\x7a\x5a\x2d\x39\x8b\xc8\x28\xd1\xe8\x52\x7d\x81\x45\x69\xbf\x2c\xd5\x17\x08\x32\x6b\x69\x01\x65\x61\x2d\x9b\xaa\xfa\x16\xab\x41\xe4\xcc\xb2\x1c\x0e\x80\xc5\x6e\xa3\x2c\x87\x03\x20\x92\x41\xb6\x1c\x0e\xa8\xbc\xbc\x16\xb1\x98\x95\x97\x93\x02\xca\x41\x06\x2b\x2d\xa0\x9c\x72\xef\xd9\x93\x94\x72\xef\x13\xa2\x7d\x90\xf7\x49\x89\xf6\xc2\x5a\x76\x4e\xdb\x85\x4c\x18\x12\xeb\x90\x68\x9f\x14\x50\x5e\x94\x1c\x4c\x0b\x28\x27\xe5\x90\x83\x8c\x4e\x96\xf1\x53\x39\x42\x10\x65\x49\xa1\x4f\xf8\xf2\x51\x37\x45\xa1\x08\x9d\x20\x32\x92\x2f\x9f\x90\xe3\xa3\x18\x21\x24\xc7\x27\x4c\xf8\xc5\xea\x7d\xca\x84\x17\x82\x0c\x45\xca\x84\x17\x16\xab\xf7\xd9\xce\x08\x80\x20\xf7\x90\x92\xe3\xb3\x1d\x0e\x08\x7a\xdb\xe1\x00\x08\x32\x01\x29\x39\x3e\x5b\x1b\x62\x65\xa9\xb5\x21\x20\x58\xe3\x4f\xf9\xf2\xc2\x62\x8d\x3f\xdb\x28\x0b\x08\x56\xef\xd3\x9a\xca\x09\x5f\x7e\x2d\x3e\x9a\x7c\xf9\x84\xaa\x1e\x94\x46\x4e\xa9\xea\xc2\x62\x77\x56\xb6\x2e\x1c\xc6\x7a\xb0\x66\x9d\x56\x4b\x16\x16\x99\x80\x6c\xad\x03\xe2\x79\xb0\xce\x9c\xad\x46\x4b\x42\xa7\x38\x7a\x4a\x42\xcf\xbe\xd4\x37\x0a\x35\xe9\xfc\xdc\xc8\x17\x5a\x8a\x50\x5f\xea\x0a\x87\x4b\x8b\xad\x7e\x01\x8b\x7c\x41\xb6\x73\x54\x20\x5c\x9c\xb3\xec\x70\xc2\x32\x5f\x94\x3d\x4f\xcb\x0e\x27\xfc\xf1\x60\x67\x6e\x4a\xf6\x4e\x28\xd2\x51\xfb\x7a\x21\x0b\xe4\x0a\x8b\x8d\x64\xe9\x81\x79\x09\x83\x3a\x9c\xb6\xca\xa0\x16\x16\xe9\x88\x94\x41\x2d\x04\xe7\x96\xa5\x0c\x6a\x61\x2d\xb4\xd0\x9a\xb9\xb9\xae\x3e\x0a\x67\x89\xcb\x31\x4d\x52\x35\xf5\xd2\x53\x52\x75\xc2\xa0\x8e\x66\x31\x53\x06\x75\xc2\xa0\x5e\x6c\x5d\x4b\x19\xd4\x42\x70\x8a\x58\xca\xa0\x16\x16\x35\xce\x73\xe9\x60\x20\x55\x87\x33\x4e\x49\xd5\xc2\xda\xb7\xff\xc0\xac\x58\xce\xb5\x10\x4e\x0f\xad\xc5\x9b\x8b\x34\x07\x25\xd0\x73\x39\x7c\x42\x97\x0e\xa7\x74\xd2\xa5\x85\x45\x09\xf4\x5c\x1a\x35\x05\x72\xa3\x59\x70\x5d\xce\xef\x61\x4d\x2f\xf6\xd2\xa5\x95\x71\x13\x8a\x73\x70\xa4\x53\x4a\x71\x4e\x08\xc7\x41\xb6\x35\x25\x1c\x0b\x8b\x24\x4d\x5a\xf3\x56\x08\x72\x9f\x69\xcd\x5b\x61\x6d\x86\xbc\xed\x5a\x14\x10\x9c\x80\x94\x32\x95\x13\x5a\xf2\x22\x95\x93\xd2\x92\x93\x0a\xb4\x61\x08\x69\x05\x5a\x61\x51\x15\x3d\xb7\x5f\x1e\xae\x6f\x70\xaa\x4c\xca\xf5\x4d\xca\xcd\x2e\x76\xef\xa5\xe5\x66\x13\xca\x6e\x38\xa2\x4a\xd9\x15\x16\xa9\x9c\x94\xb2\x9b\xf0\x73\xc3\x71\x44\x7e\xae\xb0\xa8\x77\x9e\xf2\x73\x13\x32\x6e\x90\x89\x4c\xc9\xb8\xc2\xa2\xde\x79\x4a\xc6\x15\x42\xaf\x2e\x19\x57\x58\xec\x17\x4c\x8b\xbf\xe6\x66\xf9\x53\x7f\xbd\x5d\xe0\x01\x16\x55\xd1\xd3\xe2\xaf\x09\xdb\x36\x16\x13\x99\x6d\x6c\x01\xcd\x76\x91\x62\x4a\x69\xb6\x09\x35\x36\xf4\x65\x52\x63\x13\x3a\x6c\x90\x50\xcc\xbb\x0e\x15\x96\xe5\xda\x44\x59\xb2\x2c\x13\x82\x64\x50\x41\x3b\xef\x46\x46\x92\x25\x4d\x6d\x48\x96\x4c\x68\x90\x41\xdd\xe8\x94\x06\x29\x2c\xea\xd4\xa6\x34\x48\x21\x28\x8d\x9c\x96\x00\x15\x16\x75\x35\x53\x66\x64\xc2\x79\x0c\x8a\x1e\xa7\x9c\x47\x61\x6d\xf4\x4b\xce\x63\x3e\x58\xe7\xa1\x04\x71\x3e\x9c\x43\x00\x8b\xea\x9b\x69\xed\xd0\xa4\x50\x68\xb0\xab\x30\x2d\x14\x2a\x2c\x53\x2e\x92\x25\x13\x06\x64\x50\xea\x37\x2d\x14\x9a\x16\x0a\xa5\x32\x6e\xca\x86\x4c\xaa\x6f\x86\x2f\x64\xf5\x4d\x61\x6d\x7c\xd9\xc3\xc8\x08\x48\x8a\xb4\xe6\x43\x17\x0e\xac\x8d\x2f\x7b\x18\x19\x41\x1e\x4c\x8a\xb4\xa6\xe4\x41\x61\x51\x3f\x37\x1f\x7a\x16\x20\xa9\xd1\x99\xf2\x09\x85\x45\x55\xd0\xb4\xb8\x67\x3e\x2e\x0f\x90\xd4\xe8\xcc\x87\x1e\x00\x58\xec\x70\xcc\x87\x53\xcd\xc7\xa5\xd1\x49\xf5\xcd\x7c\xa8\xd1\xc0\xa2\x1a\x6e\xca\x27\x4c\x38\x84\x79\x23\xae\x7b\xa8\xd1\xc0\xa6\xc2\x68\x3e\x8c\x96\x81\xa4\xf0\x65\x4a\x31\x14\x36\xd5\x70\x53\x8a\x61\xc2\x14\x4c\x0a\x5f\xa6\x4c\x41\x61\x53\x0d\x37\x2d\x14\x9a\x8f\xa2\x5d\xa9\xc8\x76\x5d\xb0\xa9\x86\x9b\xf2\x09\x13\x3e\x61\x52\x3a\x32\xe5\x13\x0a\xfb\xd3\xd1\xfa\x2f\x28\x86\x49\x51\xc8\x94\x62\x98\xf0\x09\xf7\xed\xe6\x8d\x4b\x11\x7d\x4f\x50\x22\x79\x30\xa9\x85\x99\x37\x56\x90\xad\x85\x29\x6c\x76\x84\xe6\xd3\xef\x08\x49\x2f\x39\x4a\x31\x25\xe9\x09\x9b\xa2\xb6\x29\x49\x2f\x21\xe6\x25\xbb\xff\xd2\x8a\x99\xc2\xa6\x82\x6d\x5a\x31\x33\xa9\x85\x99\xec\xfe\x4b\x6b\x61\x26\x85\x2f\x37\x15\x6c\xd3\xc2\x97\x09\xfd\x2e\xd9\xb1\x97\xd2\xef\x84\x6d\x2e\xf0\xa9\x02\x40\xbf\xcb\x03\x67\x25\xfd\x4e\xd8\x37\x7c\xa1\xf5\x2b\x13\x16\x5d\x9a\xb4\x90\x45\x27\x6c\x2a\xd8\xa6\x2c\xba\x84\x32\x97\x54\x86\x4b\x29\x73\xf9\xf4\xd3\xb2\x10\x2c\x65\x2e\xa9\x26\x99\xec\x9f\x4b\xab\x49\x26\x15\x24\x37\x87\x96\xe6\xd3\xaf\xfd\xe4\xa3\x99\x7b\x78\xfa\xd1\x9e\x7e\x34\x3c\xe6\xd3\x8f\x06\xb1\x2e\x29\x1f\x96\x12\xeb\x84\xcd\x3e\xdb\x7c\xea\x4d\xe0\xda\x25\x7b\xde\x52\xae\x9d\xb0\xcd\x64\x3e\x75\x1d\xf0\xeb\x92\x02\x5c\x69\x51\xc9\x84\x6b\xb7\xb5\x21\xb9\x76\xc2\xd6\x60\x2c\x2a\x29\x24\x25\xb0\xf2\xa5\x37\xa1\xce\xe4\xbe\xfd\x07\x8e\x83\x48\xcb\x50\xe6\xeb\x72\x1d\x49\x25\xaa\x7c\xb9\x60\x41\x35\xca\x7d\x9b\x8a\x50\xac\xd7\x44\x3f\x18\x64\x5f\x46\x95\xc0\xe6\xac\xd5\x94\xd6\x97\x50\xf9\xd2\x0c\x83\x35\x27\x85\xcd\x8e\xe1\x7c\x19\x55\x52\x86\x32\x8f\xe5\xb3\xfc\xc5\xe9\x2f\x2a\xf2\x17\x93\x97\xc3\x97\x49\x9f\x13\x36\xfb\x8a\x53\xfa\x5c\x52\xdb\x31\x07\xca\x60\x6d\x47\x61\xeb\x0d\x5e\xf9\x79\xd6\x65\xae\xae\xe4\x4b\x9f\x13\xb6\xf9\xdd\x97\x6e\x04\xae\x5c\xba\x54\x2f\x57\x4e\xd8\xd4\xe2\xcd\x97\x5a\x44\x51\xc8\xa4\xc4\x50\x5a\x14\x52\xd8\x14\xde\x4d\x8b\x42\xe6\x0b\x2d\x1a\x3e\x5e\x2d\x7a\xa9\x45\xf8\x1f\xf9\x71\xf9\x42\x8b\xd8\xa0\x96\x2f\xb5\xe8\xa5\xe9\x13\x84\xc9\x8f\xcb\xd7\x35\xf9\x48\x17\xe1\x5f\xfd\x79\x3c\x76\xfe\xb9\xf1\xa5\x88\x77\x44\xd7\xac\x26\x29\x6c\xca\xf3\xa6\x2c\xba\xa4\x90\x63\x0e\x46\x67\x0b\x39\x0a\x9b\xf2\xbc\x29\xf3\x2d\x21\xb0\x25\xd5\x6a\x52\x02\x9b\xb0\xcd\x4e\x5b\xb5\x31\x29\xd1\x98\xec\x53\x4b\x4b\x34\x0a\xfb\x46\xb8\x61\x89\xc6\x84\xa1\x96\x83\x64\xee\xe9\x02\x0f\xb0\x6f\x4c\x5b\x65\xab\x25\xac\xb2\x74\xe1\xfc\x74\x68\x01\xb6\x3e\xf6\x74\x68\x01\xd2\x25\xf1\x53\xcf\x02\xf7\x6c\x9b\x0f\x3f\x55\x13\x78\x68\xe9\x92\xb8\x3c\x34\x61\xeb\x89\xad\xda\x98\x14\x5f\x4c\x76\x7a\xa5\xc5\x17\x85\x7d\x63\x72\x6b\xf1\xc5\xa4\x86\x62\x52\x8d\x24\xad\xa1\x28\x6c\x4a\xfd\xa6\x35\x14\x13\xd2\x59\xb2\x87\x2b\x25\x9d\x09\x5b\xaf\x2e\xe9\x2c\xe1\x8e\x25\xbb\xb3\x52\xee\x98\xb0\xcd\xd3\xcb\x1d\x4b\xca\x1f\xa6\x8b\xdd\xa7\x5f\xfb\xf4\x6b\xe3\x20\xa4\x93\x25\x74\xb2\x9c\x74\xa1\x74\x32\x21\xa9\x16\x91\x6f\x1d\xc4\x7b\xf0\xf8\xf2\xaa\x50\x14\x5c\x55\x88\x52\x11\x26\x5a\xde\xc8\x17\x82\x3b\x96\x94\x86\x48\xb9\x63\xc2\x76\x00\x7a\xab\x00\x30\xc1\x92\x52\x07\xf9\xd6\x6a\xa1\x80\x6d\x29\x05\x52\xc0\x84\x64\x53\x7f\x4a\x01\x13\xb6\x94\x82\xb7\x03\x10\xac\xb0\x64\xcb\x53\xca\x0a\xcb\x77\xd8\x7a\x1a\xe1\x6c\x0a\x26\x57\xba\xce\x2c\x93\x4b\xd8\x12\x0f\x64\x72\x25\xb4\xad\x64\x47\x7a\x4a\xdb\x12\xb6\x63\xa5\xb4\xad\x84\xaa\x95\x6c\x66\xca\xb7\xf3\x4a\x60\x53\x6f\x38\xdf\xce\x2b\xdf\x28\x13\x9b\x99\xf2\xad\x32\xc1\xe4\xda\x37\x5f\xdb\xf9\x0c\xb4\xad\xe4\x70\xbd\x94\xb6\x25\xec\x1b\xcb\x22\xd2\xb6\x12\x8e\x56\xba\xce\x2c\x47\x4b\xd8\x94\x1d\xce\xb7\x83\x19\x90\xec\xc3\x4e\x69\x5b\xc2\xa6\xf4\x76\x4a\xdb\x4a\x2a\x35\x66\x30\x72\xbd\x0d\xc6\x81\x7d\x63\x4e\x2f\x93\x2b\x61\x6f\x25\x25\x1a\xd3\x42\x8e\xc2\xa6\x40\x77\xca\xe4\x12\x92\xed\x53\x29\x93\x4b\xd8\x37\x42\x50\x99\x5c\x09\x47\x2b\x63\xf8\x78\xbf\x63\xf1\x1d\x99\xf9\xbf\x5d\x75\x81\xa3\x95\x2e\x50\xcb\xd1\x12\xb6\xa4\x0f\x6b\x30\x26\xb4\xad\x64\x43\x72\x4a\xdb\x12\x36\x05\x15\xf2\xed\xc0\x08\x47\x2b\x59\xa0\x2e\x39\x5a\x05\x71\x2a\x59\x67\x2e\x6a\x15\x5e\x80\xc7\xbc\x34\xa7\xac\x4f\x58\x30\xa6\x92\xa5\xd8\x92\x12\x25\xec\xdb\x35\xe8\x94\x94\xa8\x82\xf3\x94\x6c\x40\xaa\x5b\x78\x63\x60\xdb\x8b\xc7\x33\xe9\x2e\xaa\x18\x66\x7c\x44\xa7\x22\xfc\xea\xf2\x46\x1f\xcf\x68\xc5\x66\xb9\xf2\x10\x78\x61\xdf\xd6\xfe\xee\x50\x5c\x96\x42\xac\x9b\xfa\xb1\x79\x6e\xd9\x46\xf5\x63\xf3\x26\x65\x17\x5c\x9d\x9e\x1c\x62\x57\x9e\xbd\x2e\xec\xdb\x56\xe4\x55\x2c\xcb\x72\x58\x5c\x79\xaa\xba\xb0\x29\x20\x51\x9e\xaa\x5e\x70\xa1\x92\xdd\x33\x25\x17\xaa\x6e\x0e\x1a\xbc\x89\xc4\xa7\x82\x99\x94\xac\x88\x96\xcc\x24\x61\x43\xab\x29\x99\x49\x42\xb2\x67\xa4\xa8\x22\xf8\x81\x7d\xbb\x0c\xb1\x2c\x26\x58\x70\x96\x92\xb5\xce\x3a\x98\x3b\x0b\xfb\xc6\x6b\xc3\x65\xba\x60\x72\x15\x37\xe2\x7f\x84\x4d\x1c\x5b\x52\x9a\x0a\x66\x52\xb2\xeb\xa2\x64\x26\x09\x9b\xaa\xd7\x05\x4b\xe9\x03\xc9\xbe\x85\x92\xac\x24\x6c\xca\x5f\x14\x45\x0a\x2f\xa0\x5d\xa8\xcc\xa1\x7e\x50\xab\x70\x13\x13\x97\xb5\x0a\x0b\x4a\x53\xb2\xd7\xa0\xa4\x34\x09\x1b\xea\x50\x59\x72\xb0\x20\x2b\x25\x6c\xfd\x92\xac\x24\x6c\x22\xe7\xf2\x54\xf5\x3a\x08\x5d\x60\xaf\x17\x55\x04\x3f\xb0\x39\xaa\xbc\x2c\x26\x58\x30\x93\xb2\x7c\x21\x15\x00\x38\xe0\x16\x96\xe7\xa5\x0b\x9b\x8a\xf4\x25\x59\xa9\x28\x20\x98\xf5\x11\xb5\xa2\x66\x5d\x9e\xa6\x32\x98\x15\x34\xa4\x84\x7a\x5d\xd2\x90\x0a\x1a\xd2\x86\xe5\x54\xd2\x90\x0a\x06\x51\xb2\x7b\xa6\x2c\x00\x28\x6c\xaa\xdb\x97\x6c\x22\x21\xa1\xff\x96\x67\x9c\x0b\x9b\x12\x1f\x75\xa8\x72\x1c\x7b\x9e\x35\x78\xed\xf6\x73\x34\x9f\xc3\x46\xb4\x8d\xc0\xf4\x59\x40\x2c\x69\x48\x05\xcf\x28\xe1\xe7\x16\x64\xa3\x0f\x6c\x66\x1a\x25\xe7\xa8\x38\x09\x3d\x39\x6e\xad\x3c\x09\x5d\xd8\x54\x09\x2f\x39\x47\xc5\x89\xe5\x09\xf3\xb6\x86\x9a\x03\x1f\x67\x43\xdb\x2a\xf9\x38\x42\x0c\x4c\x41\x3e\x4e\xc1\xb4\xd9\x54\xe3\x2e\x99\x36\x42\xd6\xe5\x04\x4b\xa6\x8d\xb0\x0f\x5b\xef\xd7\xe6\x5c\xf3\xac\xc5\xb3\xd2\x46\x30\x8e\x1c\xbe\x10\xe3\x48\x51\x6f\x2f\xa1\xb9\x95\xf5\xf6\x0a\x76\xcd\x86\x7d\x55\x50\x6c\x3e\x90\x6c\x49\x29\x99\x36\xc2\x86\x7d\x55\xc3\xaf\x0d\xe1\x26\xa1\x80\x95\x55\xf9\x0a\xf2\xcd\x3e\xec\x1c\xbc\x7a\x41\x85\x49\x38\x5a\x25\x15\x46\xd8\x54\x10\x29\xa9\x30\x42\xc2\x00\x2a\x68\x31\x17\xf0\xd1\xec\x42\x3f\x1a\x90\x7d\x8d\x10\x25\xb1\x45\xc8\xe6\x6b\x5b\x5c\x4f\xd8\x94\x7f\x2e\xb9\x2e\xc5\xf1\xe6\xc9\x8a\x68\x4d\xbf\x23\xb0\x8f\xf0\x59\xa5\xe8\xce\x55\x81\xe8\xa1\x88\x17\x0a\x1f\xcf\x0b\x41\x6c\x49\xd6\x3a\x4b\x62\x8b\xb0\x8f\x54\xe4\xe3\x83\x5f\xf4\x46\xbf\xf6\xd4\xf8\x92\x46\x68\x7c\x90\x3e\xb2\x71\xf4\x92\x3e\x84\x4d\xb1\xdd\x92\xf4\x51\x70\x37\xb2\xf1\x85\x72\x37\x84\x0d\x21\xab\x2c\x3c\x57\xf0\x35\x92\xbc\x73\x59\x65\xae\x38\xc3\x7a\x33\xa9\x2a\xcf\xb0\x2e\x2a\xcb\x25\x89\xe1\x9a\x7e\x8e\xe9\xe7\x60\x98\xb2\xca\x5c\x41\xd4\xc8\x75\xd0\x85\xfd\x79\x3c\x8a\x79\x0d\xeb\x25\x51\xa3\x20\x6a\x24\xf9\xce\x92\xa8\x51\x61\xaf\x5e\xc3\x7a\xc9\xca\x28\x0e\xac\x4e\x56\x1b\xcb\x03\xab\x85\xcd\x39\x01\xe5\x81\xd5\x05\x51\x23\xc9\x18\x96\x44\x8d\xa2\x16\xdd\x66\xb2\x57\xd6\xa2\x2b\x88\x1a\xc9\x99\xcc\x25\x51\xa3\x20\x6a\x6c\x26\x7b\x25\x51\xa3\x38\x64\x3a\xc9\xb9\x95\x87\x4c\x0b\x9b\x33\x07\xca\x43\xa6\x0b\x26\x45\xb2\xda\x58\x32\x29\x84\x0d\x35\xad\x64\x52\x14\xb4\x89\x5c\xc5\x2f\xea\x90\x43\x87\xbc\x15\xa1\xab\xf0\x1a\x72\xd5\xf7\x17\xa8\x4b\xda\x83\xb0\x0f\x46\x54\x8b\xd0\x15\x4c\x88\x5c\xf6\x9d\xfa\x01\x6c\xe6\xa8\xe5\x89\xd0\x42\x2e\x7b\x85\xa9\xa6\xb0\xa9\x1d\x53\x91\xf6\x1d\x53\x4d\x4e\x8a\x2d\xf9\x12\xc2\x86\x51\x57\xf2\x25\x2a\x88\xcb\x96\x8d\x28\x3f\x4d\xf9\x8b\xde\xe8\x2f\x36\xdd\xc9\xc0\x68\x5d\x3a\x61\x53\x2d\xb9\x42\xc5\x82\xe3\x90\x2c\xaf\x97\x1c\x07\x61\x53\x2d\xb9\xe4\x38\x14\x2c\x83\x64\xcb\x40\x79\x00\xb3\xb0\x29\x4d\x53\x32\x0e\x0a\x2e\x41\xee\x6b\x0a\x5c\x72\x09\x84\x4d\xb5\xe4\xb2\xb2\x5b\x91\xc6\x4f\x8e\x52\x2c\xd3\xf8\xc2\xa6\x5a\x72\x99\xc6\x17\x92\x93\x99\x2a\xfd\x80\xc0\xa6\x5a\x72\x99\xba\x2f\x92\xf2\x49\xcd\xb6\x32\x29\x2f\xec\x81\x13\x4c\x3d\x31\x69\xed\xe4\xfc\xa6\x32\xad\x2d\x6c\x4a\xe6\x54\x6a\x75\x40\xb2\x18\x59\x66\xba\x85\x0d\x4f\xb1\xd2\xfe\x4a\x22\xa3\xed\x6b\x1b\x19\x71\x5e\xf1\x1e\x58\xb0\xe7\x15\x0b\xc5\x1a\x59\x99\xe9\xae\xba\xdc\x5b\xb1\x20\x56\xa5\x7b\x03\xf6\x60\x44\xf5\x08\xe3\xe2\x8c\xe1\x62\x41\xac\x3c\x63\xb8\xa8\xe6\xb6\x39\xdf\xa2\xac\xe6\x26\x14\x8b\x45\x55\xc6\x4f\xc0\x1e\x9f\xc7\xf3\xda\xa4\xc8\x0b\xda\x7b\x99\x22\x2f\xd2\xe2\x9b\x1a\x40\x55\x86\xc9\xa4\xb5\x8b\x45\x9d\x32\xad\x2d\xec\x61\x23\x8c\x79\x38\xf8\xb7\x58\xca\xa8\xf2\x0b\x95\x9f\x83\x81\xd1\x1c\x76\x91\xb0\x2e\xa6\xe6\x65\xc2\x5a\xd8\x10\x2f\xcb\x84\x75\x91\x2b\x2e\xa6\xd3\x65\xae\xb8\x48\x9a\xee\x71\x5c\x3d\x61\xd2\xb4\x48\xdc\xed\x81\x27\x36\x71\x57\x14\x81\x2a\x6a\xcd\x97\x45\xa0\x8a\x23\x44\x37\x35\x5e\xca\x23\x44\x8b\x5c\x5e\x41\xa0\x2d\x73\x79\xc2\x66\xe6\x5f\xe6\xf2\x8a\xba\x50\xa5\x8f\xb5\x2e\x94\xb0\xa9\x04\x53\x9e\x04\x5a\x9c\x04\x5a\x07\x73\x08\x4f\x02\x2d\xaa\x47\xed\x49\x47\x5b\x3d\xaa\x28\xef\x54\x3a\x05\x33\x7e\x45\xb1\xa6\xd2\x3a\x96\xe1\x06\xb0\xe1\xda\x95\x85\x9b\x6a\x5d\x5f\xb8\xa8\xd9\x5d\x4b\x87\x0a\x6c\x96\x1f\x6a\xf9\xb5\xa9\xd2\x54\x7e\x5a\xab\x34\x09\x9b\x82\xaf\x65\x95\x26\xa1\xe0\xae\x96\x55\x9a\x8a\x93\x40\x37\x05\x5f\xcb\x93\x40\x8b\x73\x3d\xaf\x98\x08\x11\xaf\xcd\xb9\x9e\x9b\x82\xaf\xb5\xc2\xd6\x5f\x3e\xb6\x28\xbd\x5d\x26\x27\x85\x0d\x07\xb0\x3c\xd0\x53\x28\x0a\x37\x95\xf9\xca\x22\x13\xb9\x27\x8a\x69\x26\xb2\x48\x3b\x16\x2b\x5e\x65\xda\x51\xd8\x14\xc0\x29\x6b\x39\x09\x45\xc1\xe9\x32\x13\x29\x6c\x8a\xb4\xd6\x32\x58\x22\x13\x59\x90\x53\xcb\x4c\xa4\xb0\xe1\x13\x96\x99\xc8\x22\x63\x58\x1c\xa9\x52\x66\x0c\x85\x4d\x91\xd6\xb2\x58\x93\x50\xa3\xbc\xca\x46\x24\x0a\x30\x11\xa9\x98\xeb\x52\xb3\x2b\xfc\x42\x34\x14\xf1\x8b\x76\x8e\x3e\x1a\x28\x8e\x41\x29\x0f\x07\x15\x36\x85\x79\x6a\x19\x8b\x01\x45\x75\xe9\x5a\x2a\xe6\x52\x31\x19\x3e\x97\x8a\xc9\x79\xa1\x45\x75\xe9\xf2\xbc\x50\x61\xb3\x40\x54\x9e\x17\x2a\x14\x14\xd6\xb2\xae\x94\xb0\xa7\x9f\xc3\xd8\x02\xa8\xd1\x8a\x7c\x47\x95\x7c\xd2\x85\x2a\x39\x99\xd0\x2b\xba\x43\xa4\x62\x32\xe9\xa6\x6e\x6b\x59\x44\xaa\xa8\x18\x55\xd4\x82\x2a\x2b\x46\x15\x55\xa2\x36\x75\x5b\x6b\xe9\xf8\x80\x1a\x8c\x7c\xa6\x53\x85\xcd\x49\x1f\x65\xc5\xa8\x22\xc3\x5a\x90\x66\xcb\x0c\xab\xb0\x67\x7c\xbf\x06\x75\x99\x80\x2d\xf2\xa8\xc5\xa2\x5f\x99\x47\x2d\x4a\x3a\x6d\x2a\x18\x95\xa7\x82\x0a\xa5\xd5\x6d\x2d\x05\xd8\x14\x7f\x2d\x2b\x3e\x15\x85\x9b\x4a\x7b\xb2\x70\x93\xb0\xa1\x8d\x96\x85\x9b\x84\x52\x8b\x3c\x3b\x54\xd8\x14\x7f\x2d\x33\xb7\x45\xb6\xb6\xd4\x0f\xcb\x3b\x09\x1b\x72\x69\x59\xde\xa9\xa8\xbf\x54\x7e\x79\xeb\x2f\x09\x9b\x12\xb1\xc5\xa1\xa1\x17\xec\xeb\x2a\x1f\x9f\x9f\x1b\x31\x6a\xb4\xdb\x83\x42\x8b\x34\x6d\xb1\xe8\x57\xa6\x69\x85\xfd\x37\x91\xad\x2f\x7e\xb1\x14\xf9\x8b\xaa\x1f\xfe\xda\x9a\x49\x42\x51\xb0\xb5\xac\x99\x24\xec\x99\x8a\x6c\x04\x4a\x3a\x51\xf8\x5d\x9f\x46\xa0\xa4\x49\xaf\xaa\xa4\x40\x51\xb0\xb5\xcc\xef\x16\x99\xdb\xcd\x32\x63\x99\xb9\x2d\xb2\xb5\x9b\x32\x4a\x75\x37\xf6\x04\x0a\x42\x68\x59\xd4\xa8\xee\x7a\x4f\xe2\x58\x2b\x18\x15\xb5\x89\x8a\xda\x44\x65\x6d\x22\x61\x53\x4e\xb4\xac\x4d\x54\x94\x18\x2a\xca\x3d\x96\x25\x86\x84\xcd\xca\x63\xdd\x9d\xf9\x53\x4f\xa8\x02\xb7\x6b\x3d\x21\x61\x4f\x22\x36\xeb\x09\x15\xf5\x84\x0a\x2e\x66\x59\x4f\x48\xd8\xac\x4f\xd6\x5d\xf7\x46\x3d\xa1\x62\xa9\xab\xac\x27\x24\xec\x49\x5c\x77\xd7\x4b\x51\x3c\xa8\x58\xea\x2a\x8b\x07\xd5\x5d\xdb\x24\x26\xbe\x6b\x9b\xe4\x8a\x8b\x43\x36\xca\x5c\x71\x91\xf2\x2d\x2a\x51\x95\x29\x5f\x61\x43\x67\x2d\x0b\xe0\x14\x99\xdf\x8a\xa5\xe8\xae\xe8\xce\x55\x1b\x11\x2f\xc4\x49\x8f\x45\x69\x9b\x7a\xd8\x5f\xc0\x66\xc9\xb2\xac\x76\x53\x54\xa8\x29\x2a\x2b\x95\x15\x6a\x84\x4d\x95\xa6\x7a\x18\xd7\x51\x5c\xa6\xa8\x60\x54\x8f\xf8\x88\x1e\x5c\x35\x10\x3d\x15\x5d\x5d\x48\xed\x99\xb2\xf6\x8c\xb0\x29\x56\x59\x0f\xbb\x90\x7a\x31\x45\xa1\x99\xb2\x5e\x8c\xb0\xfd\x42\x0f\xad\xe3\x41\x17\xba\x4a\xf5\xb0\x0b\x81\x4d\x49\xcb\x32\x7d\x5c\x54\x95\x29\xd8\x7d\x65\x55\x19\x61\xb3\x94\x5a\x26\x86\x8b\xea\x2d\x45\x95\x94\xb2\x7a\x8b\xb0\x29\x69\x59\x66\x5b\x8b\x6c\x6b\xb9\x66\x64\xb6\xb5\x28\xd5\x52\xd0\xdc\xca\x52\x2d\xc2\x66\x0d\xb6\x9e\xc6\x75\x94\x6a\x29\x8a\x3e\x94\xa5\x5a\x8a\x22\x2c\x1b\x92\x70\x59\x84\xa5\x9e\x68\xb4\x4b\x3f\x4f\x35\x1a\xd8\xac\xc1\xd6\xd3\x2f\x44\xa9\x96\xa2\x24\x41\x59\xaa\xa5\x38\x37\x71\x43\x25\x2e\xcf\x4d\x2c\xd2\xbc\x45\x49\x82\xb2\x2e\x4b\x99\xdf\x55\x7d\xcd\xef\x0a\x05\x35\xad\x2c\xc2\x22\xec\xc0\x7f\x99\xf2\x2d\x8e\x3c\xac\x42\xbf\x9e\x7a\x39\x60\xab\xe4\xa6\x7c\x8b\x94\x6f\x71\x8e\x44\x99\xf2\x15\x36\xb5\x30\xcb\x82\x2e\x45\x6a\xb6\xa0\xa6\x95\x95\x4d\x84\x4d\xe1\xcb\x32\x4d\x5b\xa4\x56\x8b\x9a\x25\x65\x6a\x55\xd8\x90\x97\xeb\xd9\x9f\xab\xae\x71\x97\x9a\x25\x65\x65\x13\x61\x53\xa6\xab\x4c\xc0\x16\x49\xd7\x2b\xd2\x44\x64\x53\x99\x3b\x53\x1e\xb3\x4c\xc0\x16\xa9\xd5\x62\x6f\x6c\x99\x5a\x15\xb6\x26\x6a\x6a\xb5\xc8\xa3\x16\xfb\x46\xcb\x44\xa9\xb0\x29\x8f\x59\x2f\x3f\x2d\x05\x4e\x0a\xa2\x58\x79\x38\x5f\xbd\x98\x2e\x51\x1e\xb3\x5e\x7e\x5a\x92\xa3\xc5\x9e\xca\xb2\xd8\x89\xb0\x5d\xd9\x36\x51\x2a\x14\x95\x4d\xca\x44\xa9\xb0\x83\x61\xce\x92\x28\x42\xb1\x5b\xb2\x2c\x89\x22\x6c\x4a\x6d\xd6\x4b\xab\x05\xaa\xb6\x37\xde\x15\x61\x30\x61\x23\x1e\x8a\x68\xfd\xfe\xfe\xbe\xe2\xb2\x88\x8a\xb0\xa9\x67\x56\x16\x51\x29\xce\xfe\x2b\x8e\xaf\xaf\x97\x5a\xf4\x22\x6f\xe3\x1a\xfd\xcb\x41\x96\x83\xfe\x8a\x4d\x8b\xf5\x52\x3f\x5e\x7a\x03\x46\x41\x0f\xfd\x2b\x52\xbe\xc5\xbe\xbc\x32\xe5\x2b\x6c\xca\x63\x96\x29\xdf\xa2\x62\x4a\xb1\xff\xad\xac\x98\x22\x6c\x6a\xa3\x95\xe7\x00\x16\xf5\x4b\x8a\xdd\x68\x65\x81\x12\x61\x73\x74\x52\xbd\x1c\xf2\x5e\xd7\x68\x55\x8d\xfa\xbd\x8c\xa5\x80\x4d\xa9\xcd\x7a\x19\x4b\x91\x87\xad\xf6\x85\xd4\xa2\x57\xd3\x9d\x8c\x82\xe4\x67\x2f\xb8\xba\x93\x4d\x43\x65\xb6\xb5\x48\x81\x16\xbb\x7a\xea\x74\x4c\x02\x36\xd5\x37\xcb\x42\x20\x45\xf1\x8f\x62\x6f\x46\x9d\x76\xf4\x69\x47\x33\xdf\xb5\x10\x48\x9d\x84\x2e\x1c\xc7\x5e\xa7\xbd\x4a\x12\x70\x53\x7d\xb3\x4c\x02\xd6\x9b\x24\x33\x05\xcb\xea\xad\x3d\x91\x45\x29\xb6\xc8\xb7\x59\x94\xe6\x40\xaa\xda\x57\xaf\xb6\x07\x52\x09\x9b\x6a\x24\xed\x81\x54\xcd\xb6\xf6\xda\x57\x4f\xb4\xdb\xda\x9b\x43\x95\x36\xab\xd1\x7d\xc3\x13\xf7\x8d\xd3\xcb\xa1\x9c\x34\x87\x2d\x5d\x70\x7d\x5a\x56\x57\xdb\x03\x96\x84\xe6\x08\xe3\x26\xcd\xf1\x81\x0d\xfb\xb3\xcd\x76\x34\x07\x2c\x35\xb3\xe2\xf6\x80\x25\x61\x53\xb1\xa0\x3d\x60\xa9\xd9\x1f\xde\x90\x23\xda\xfd\xe1\xc2\xa6\x62\x41\xbb\x3f\xbc\xd9\x13\xde\xb7\xa1\xc8\x5f\x2c\x7f\x91\xa6\xb6\xbf\xc8\xb1\xfa\x94\x3d\x6f\xb7\x8c\x0b\x9b\x8a\x05\x6d\xe6\x44\xe8\x9b\x5d\xd8\xb6\x8b\xc8\x99\x8a\x05\xed\xc6\xf2\x26\x99\xd2\x50\x0a\xda\x64\x8a\xb0\xcb\x8e\x6e\xdb\xd5\xb4\x8b\xce\x31\xbf\xd2\x6c\x06\x6f\x38\x47\xed\x66\x70\x61\x53\xc4\xa0\x3d\x99\xa9\xc9\xc2\x34\x99\xee\x36\x0b\x23\xec\xfa\x88\x9e\x8a\x5e\x5c\x55\x88\x4e\x45\x27\x57\x05\x22\x7a\x82\x34\x4b\x93\x77\x6e\xb7\x8c\x0b\x9b\x52\x07\x4d\xfa\xe5\x02\x5e\xa8\x78\xfc\xf4\xf1\xd3\x17\xe2\xf1\xa8\x6f\x93\x39\x69\xd2\xa1\x6d\xe6\x44\xd8\xf8\xeb\x26\x8b\x72\x01\x5d\xd8\x8a\x7c\xa1\xb0\x0b\x17\xa2\xbb\xa2\xe7\x75\xd5\xe2\xf1\xe1\xe3\xf1\x13\x65\x53\xc3\x17\x0a\xba\x70\xdf\x10\xf9\x42\x4c\x22\xf1\xfd\x6d\x7e\xa5\x39\xa0\xa9\x49\x64\xf5\xa1\xae\x02\x9b\xaa\x56\x6d\xca\x45\x68\x4e\xfc\x6d\x53\x2e\xc2\x2e\x5f\x3b\x6d\x04\x47\xe1\x93\xbe\x69\x0f\x6b\x12\x36\xd5\x13\x9a\x83\x9b\x2e\xe0\x59\x07\x37\xaa\x98\x87\x8a\x59\xde\xf8\x79\xd6\xd5\x7a\xf6\x74\xf7\xa1\x62\x9a\x72\xa1\x7a\x42\x9b\x72\x69\xf2\x2b\xcd\xe1\xa0\x6d\x7e\x45\xd8\x54\x4f\x68\xf3\x2b\x42\x53\x84\xbc\xcd\xaf\x08\x1b\x8a\x73\xbb\xa7\xbb\x0f\x14\x93\x74\x44\x1f\x2a\x26\xf9\x95\x4d\xf5\x84\x36\xbf\xd2\x83\x99\x59\xf5\x40\x44\x47\xb3\xd1\xba\x61\x39\xf5\x98\x5e\xa5\x9a\x5c\x83\x59\xbb\xe9\xba\x39\x73\xa9\x61\x39\xb5\x67\x2e\x09\xbb\x96\x22\x1a\xc1\xae\xe8\xa6\xb2\x77\xbb\x2b\x5a\xd8\x14\x08\x68\x77\x45\x37\x1b\x9a\x9b\xe5\xf5\x1e\xaa\xc9\x50\x4d\x16\x4d\x8d\xcf\xb3\x78\xa1\x75\x43\xf4\x54\x44\xeb\xb7\x22\x5b\x8f\x9a\xb0\xa8\xd3\xe6\x6a\x84\x4d\x7e\xa5\xcd\xd5\x34\xa7\x29\x35\x0b\xd4\xed\x69\x4a\xc2\x66\xf8\x6c\x36\x4d\xff\xd8\x64\x61\xfa\xf0\xf1\x7e\x6d\x60\x53\x6c\xa0\xcd\xc2\xf4\xb8\xbe\x70\xb3\xd0\xd7\xec\x6a\xfe\xc0\x86\x12\xde\x6e\x6e\x6e\x36\x21\x37\x4b\x65\xed\x49\x45\xc2\xae\xfd\xfd\x6a\x5b\x6d\x92\xa6\xd9\x5e\xdc\x63\xd0\x6c\x3d\x8b\x19\x19\x2a\x16\xb4\x19\x19\xa1\x39\x35\xad\xcd\xc8\x34\x67\x08\x35\xfc\xa5\xf6\x0c\x21\x61\x73\xa4\x53\x4f\x2d\x98\x9c\x48\x73\x2c\x6c\xbb\x33\x57\xd8\x94\x3a\x68\x77\xe6\x0a\xcd\xd9\x57\xed\xce\x5c\x61\x13\x0f\xf4\xf4\x03\xb2\xe7\xb6\xa9\x7a\xdd\xee\xb9\x15\x36\x05\x11\xda\x03\x83\x9a\x03\x83\x7a\xa0\x32\x1e\x18\x24\x6c\x0a\x22\xb4\x07\x06\x35\x29\x97\xe6\x40\xaa\xf6\x28\xa0\x66\x83\xed\x26\x1b\xd6\x6e\xb0\xed\x79\x0d\x1a\x3d\x3f\xa2\xcf\x8d\x77\xae\x4a\x44\x0f\x45\x0f\xae\xe2\x17\x35\x57\x60\x53\x10\xa1\x4d\xe5\x34\xe9\x9b\x66\x4d\xb1\xdd\x86\x2b\xec\xf6\x46\xcd\x15\x68\x0e\x91\x6a\xb3\x3b\xc2\x6e\x94\x81\x4c\xcf\x05\x4f\xae\xa2\x57\xfd\x68\xc0\x6e\x1f\xef\x47\x03\x9a\x65\xb3\x36\x95\xd3\xa4\x6f\x9a\x35\xb2\x76\x83\xad\xb0\x49\xdc\xb5\xa9\x9c\x26\x49\xd3\xec\xa6\x6d\x93\x34\xc2\xa6\xb8\x42\x73\x9e\xd0\x05\x3c\x2b\xb8\x6a\xfa\xac\xe9\xb3\x14\xf9\xac\xe0\x85\x18\x2b\x43\x17\x0e\x6c\x8a\x2b\xb4\x79\x9b\x26\x0b\xd3\xec\x6d\x6d\xcf\x10\x12\x36\x41\x5c\xbb\xb7\xb5\xd9\xa2\xda\xac\x22\xb4\x5b\x54\x9b\x33\x84\x76\x5f\xb3\xbc\xf6\x0c\xa1\x0e\xd4\x84\xfd\xa8\x1d\xaa\x49\xa8\x26\x58\x8a\x07\x06\x75\xf8\x69\x17\x2f\xe4\xa7\x0d\x3f\xed\x41\x53\xfd\xb4\x6c\x18\x6d\xb8\x3d\xed\x86\x51\x61\x53\x5c\xa1\xdd\x30\xda\x6c\x18\x6d\xb8\x3d\xed\x86\x51\x61\x13\x5c\xb6\x67\xf5\x34\x69\x92\x66\x72\xdb\xa6\x49\x9a\x03\x74\x9a\x83\x0b\x3a\xed\xfb\x64\x6a\xde\x1f\x11\xaf\x4d\x4e\xa4\x21\xcc\xb4\x39\x91\x66\x7f\xe5\x26\x8f\xda\xee\xaf\xec\xbc\x9c\x60\x53\xfd\xb7\x53\x27\x08\xec\x1e\x89\x28\x15\x5d\x96\x46\xd8\xd8\x66\x4e\x84\x4d\x25\x85\x36\x73\xd2\xa4\x49\x9a\xed\x8c\x6d\x9a\xa4\x49\x8d\x6c\xca\x04\x76\xea\xf1\x80\x0e\x46\x88\xb4\xef\x39\x13\x67\x93\xa6\x6d\xcf\xc4\xe9\xc4\x1e\xa9\xfe\xdb\xa9\x3d\xa6\xf6\x38\x15\xf9\x42\x0c\x9f\x70\x68\x3a\x1d\x3e\x81\x4d\xbd\x85\x76\x1f\x64\x67\xd1\x5f\x7c\xb4\xd4\x55\x72\x4c\xce\xa6\xde\x42\x7b\x4c\x4e\xa7\x1f\x0d\xe7\xec\x46\x45\x61\x53\x2a\xa1\xcd\xe8\x34\xe9\x9b\xa6\xb2\x6e\x9b\xbe\x11\x36\x9b\x60\xda\xf4\x4d\x93\xbe\xe9\xc4\x03\x98\xbe\x11\x36\xf5\x09\x3b\x35\x3e\xd2\x37\x4d\x39\xe3\x36\x7d\xd3\xa4\x6f\x3a\x51\x4c\xd3\x37\xc2\x6e\xa2\x3f\xd3\x37\xcd\x16\xc6\x26\xcc\xee\x52\x01\x80\xcd\x39\x6f\x5d\x2c\xd7\x08\x4d\xc5\xdf\x2e\x75\x02\xd8\x64\xa7\xbb\x8c\xeb\x48\x05\x35\xb5\x7c\xdb\x54\x90\xb0\x99\x96\x74\x19\xd7\x91\xeb\x69\x56\x4a\xba\x34\x64\x60\x37\x86\xec\x6e\xc9\xae\x49\xeb\xf9\x42\xe5\xe8\x4c\xde\x67\x37\xf1\xa6\x79\x9f\x66\xa3\x62\x53\x4f\xb6\xdd\xa8\x28\x6c\xb6\xda\x74\xe9\xef\x81\x86\xcf\xd3\xa5\x6d\x97\xb6\x4d\xf4\x67\x76\x48\x68\xf8\x3c\x5d\x6a\xa1\x09\xa3\x46\x57\x4d\x18\x35\x19\xa1\xce\xcf\x8d\x36\x82\x08\x84\x4a\x0c\x6d\x2a\xa8\x39\xd7\x65\x93\x22\x6f\xcf\x75\x69\x76\xb3\x35\xe5\xe9\xda\xdd\x6c\xcd\x0e\xb6\xcd\x8e\xe1\x66\x1b\xdb\x07\x9a\x4d\x69\xed\x6e\x36\x61\x93\xfc\x6e\x77\xb3\x35\xfb\xd4\x9a\xba\xad\xed\x3e\x35\x61\xaf\xcf\xe3\x31\x18\x8e\x67\xe9\x9a\xeb\xdf\x0f\xc5\xeb\xf8\xff\x8d\xc4\x1e\xde\x22\x6c\x36\x0c\x77\x6b\xc0\x40\x53\xb2\xad\x3d\xcf\xa5\xd9\x11\xb7\xd9\x30\xdc\xee\x88\x6b\xb6\xbf\xb5\x93\x16\xb7\xbf\x35\x5b\xde\xf6\xf2\x45\x0c\x6c\x38\xa9\xa5\x9d\x09\x78\x52\x4b\x73\x3a\xcb\x5e\xbe\x88\x06\xcc\xe9\x2a\x6d\xc4\xed\xe9\x2a\xc2\x5e\xd8\xa1\xdb\xdf\x9a\xc4\x5a\x73\xe4\x64\x9b\x58\x13\x46\xa3\x0b\x24\xd9\x7e\xec\xc6\xc2\xa8\x73\xd5\xdd\x1f\xd1\xe0\x59\xf4\xa6\x16\x46\x9a\xac\x59\x89\xe8\xd6\x79\x02\x1b\x92\x40\xb7\xce\x93\x94\x59\x1b\x24\x99\x32\x6b\xce\x3a\xd9\x6c\x2b\x6e\xcf\x3a\x11\x8e\xc1\x6b\x9b\x45\x13\x0e\x07\x7a\xb3\x68\xc2\xc1\xa1\x8f\xbd\x58\xea\x6c\x12\x6b\x9b\x0d\xc3\x6d\x62\x4d\x38\xe2\xf3\xac\x97\xa2\xd7\x25\x22\xc4\x5b\x46\xb6\xc0\x66\x0f\x71\x2f\x87\x4a\xe0\xd0\xc2\x3c\x5d\xa5\x39\x51\x65\xb3\x87\xb8\x97\xda\x07\x1c\xd4\x71\xec\xa5\x85\x01\x87\xb3\x8a\xa5\x42\x02\x9b\x0d\xc3\xed\x19\x2c\xc2\xa1\x5b\x34\xbb\xd7\xa4\xf2\xf6\x42\x01\x4c\xe5\x09\x07\x7b\x75\x7b\x19\x4b\x9b\xdd\x63\xc3\x70\x9b\xdd\x13\x0e\x36\xf5\xf4\x72\x18\x21\xc9\xb7\xd9\x0a\xdc\xcb\x18\x0e\x18\xb0\x02\xdb\x84\x9f\xb0\xd9\xe4\xdb\xcb\x21\x1c\x18\x87\xaf\xad\x46\x03\x83\x53\xcf\xdb\x6d\x8c\x6d\x5a\x90\x7d\xbf\x6d\x5a\x50\x18\xe4\x52\xda\xb4\x60\xb3\x67\x71\xb3\xa3\xb7\xdd\xb3\x28\x0c\x96\x60\xdb\x4c\xa1\xb0\xe1\x6c\x34\xfb\x17\x2f\xe0\x90\xf0\xcf\x8d\x7e\x34\x02\x7a\x76\xf4\xb6\xf9\x44\x61\x50\xbc\xbc\xcd\x27\x0a\x7b\xd9\xf7\x0e\x6f\xc0\xd0\x23\x99\x4f\x6c\xb6\x18\x6e\xf6\xfd\xf6\x72\x94\x02\x26\xbb\x17\xda\xe4\xa1\x30\x29\x0c\xd7\x26\x0f\x85\x09\x9f\xbd\x4d\x1e\x0a\xf3\xe6\x17\x72\xd9\x02\x98\x37\x5b\xaf\x59\x99\x16\x64\xe7\x5a\x9b\x16\x14\x26\xb9\xef\x36\x2d\x28\xcc\x69\x53\x1d\x04\x97\x65\xfe\xcb\xab\xec\x42\xeb\x99\x7f\x6e\xb4\x0b\x09\x79\x56\xa3\x13\x86\x3c\xc0\xcc\x8f\xc8\x77\x64\xee\x01\x63\xa5\x4d\x0b\x0a\x93\xda\x67\x6d\x5a\x50\xd8\x30\x56\xda\x5d\x96\xc2\x6c\x15\x53\x0f\xc0\x96\xca\xbd\x98\x4c\xb9\xa5\x52\x08\xe7\x7d\xe6\x13\x85\xe0\x94\xd4\x36\x9f\xd8\xe4\x13\xf7\xd2\x90\x1d\x89\x81\x98\x9f\xc7\xdb\xf7\x96\x9e\xf1\x6b\x1b\x06\x03\x7b\x11\x0e\x98\x62\x14\xc2\xf1\xda\x14\xa3\xb0\xd9\xbe\xdb\xdb\xf1\x1a\x08\xca\xb8\xf7\x76\xbc\xe6\x9c\x9a\xcd\xf6\xdd\xf6\x9c\x1a\x21\x28\x8d\xdd\x9e\x53\x23\x6c\xf6\xea\xf6\xd6\x0d\x01\x41\x99\xdb\xf6\xe8\x1a\x21\x6a\xfe\xfb\xf3\x82\xae\xbf\xff\xf9\xfe\xeb\x0f\x7f\xf7\x0f\xf7\x5f\xff\xf1\xfe\xe7\xf3\xeb\xf9\xd7\xdf\x7e\x3b\x7f\xfe\xfd\xf5\xd3\xf3\xf7\xaf\x3f\x5c\xd2\xaf\xd7\xf9\xfe\xe9\xe7\xf3\xb7\xf3\x2f\xbf\xfc\xf5\xb7\xe7\xf9\xf5\xeb\x2f\xbf\x5e\x77\xf1\xe7\xff\x0e\x00\x00\xff\xff\x4a\x6a\xca\x5f\x91\xad\x00\x00"); +func _bad ()(*asset ,error ){_bee ,_babg :=_ca ();if _babg !=nil {return nil ,_babg ;};_feb :=bindataFileInfo {_ee :"90pv-RKSJ-V",_ffd :1381,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491056,0)};_ggac :=&asset {_da :_bee ,_dc :_feb };return _ggac ,nil ; +};func _ddfb ()(*asset ,error ){_gebcf ,_gfbe :=_agbf ();if _gfbe !=nil {return nil ,_gfbe ;};_bfb :=bindataFileInfo {_ee :"UniAKR-UTF8-H",_ffd :217759,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492671,0)};_feccb :=&asset {_da :_gebcf ,_dc :_bfb };return _feccb ,nil ; +};func _ggfgd ()([]byte ,error ){return _gb (_bac ,"GBT-H")};var _gcaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\x5f\x6b\xdb\x3c\x18\x05\xf0\x7b\x7f\x0a\x5d\xf6\xbd\xe8\x1b\x4b\xb2\xfe\x41\x29\x8c\x66\xb0\x74\x74\x1d\xcd\xda\x0d\xc6\x2e\x14\xe9\x49\x30\x2c\xb2\xb1\x1d\x58\xbe\xfd\xd0\x79\xb2\xf4\x22\x28\xf9\x59\x3a\x39\x96\xa3\xac\x1e\x36\xeb\x4d\xe9\x17\xb1\xfa\x3a\x0d\x69\x4b\x8b\xd8\xf7\x25\x4f\x34\x0f\xa7\x29\x91\xd8\xd1\xa1\x2f\x4d\x23\x95\xc8\x7d\x5a\xfe\x7d\xc4\x90\x8e\x71\x6c\x9a\xd5\xc7\x3f\xcb\xed\xcb\xe7\xed\xe3\xed\x27\x71\x9a\xe9\x82\x0f\x9b\xf5\xf6\x3c\x2f\x74\xdc\x94\xfd\x20\x34\x2f\xce\xa7\xf1\x12\x20\xc4\xea\x85\x0e\xfd\xbc\x4c\x67\x71\xf3\x21\x0f\x3b\xfa\x4f\x64\xda\x57\x7f\x9e\x32\x4d\x7d\x39\x88\x9b\xc7\x38\xc6\x22\xaf\x17\xb6\xa7\x71\xfc\x4d\x47\x2a\x8b\x50\x30\x2a\x19\x63\xb3\x7a\x78\x8a\xe3\x97\x78\x24\xf1\x5e\xe6\x0d\x97\x70\xe5\x8d\xa6\xb9\x1f\x8a\x90\xea\xff\xb6\x35\xef\xfe\xed\x3c\x92\x90\x97\x88\xd7\xcd\xfa\x79\xbf\x9f\x69\x11\x5e\xb6\x3c\xe7\xc7\xeb\x66\x2d\x7e\x4a\x21\x5b\xa1\x8c\xd6\xfa\xd7\x65\xea\xf7\xa7\x21\x5f\x17\xea\xc0\xb7\x94\xfa\x3c\xc5\x72\xa0\xe6\xce\xcb\x4e\xde\x8b\x3a\xa8\x7b\xe1\xbc\x77\x20\xcd\xa4\xef\x85\x57\xd6\x83\x3a\xa6\xae\x92\xeb\x40\x91\x29\x82\x14\x68\xc7\xb4\x03\xc9\x4a\x86\xc9\xe4\x1a\x1f\x40\xb6\x05\xd9\x0e\x84\x2c\x6b\x98\x4c\x5d\xe8\x79\x96\x65\xb2\xc8\xb2\x20\xc7\xe4\x40\x01\xe4\x99\x3c\x08\x55\x6d\x00\xb9\x88\x78\xcc\xf2\x5c\xc2\xa3\x97\x65\x4a\x4c\x09\x0b\x35\x28\x33\x65\x94\x00\x45\x9e\x15\x79\x56\xdb\xdc\x79\x15\xf6\x95\x30\xb8\x20\xeb\x37\xaa\x88\x2d\xc4\xe0\x82\x0c\x20\xcd\xa4\x2b\x29\x2c\x8c\x86\xc9\x80\x24\xc8\x31\x39\x50\xdd\x42\x95\x38\x2b\x21\x4b\xd5\x12\x8a\x98\x88\xa9\x03\x71\x3c\x71\xbc\x01\x71\x3c\x71\xbc\x05\x25\xa6\x04\xaa\x8f\x56\x77\xd8\x7b\x0c\x2e\x28\x0f\x52\x4c\x0a\x14\x40\x1d\x53\x7d\x42\x41\xb7\x20\xcb\x64\x41\x12\xe4\x99\x3c\xa8\xb6\xd7\x96\xb3\x2c\xb2\x74\x6d\xaf\x3d\xaa\x62\x70\x41\x77\x20\xc3\x84\xaa\xda\x80\x1c\x13\x76\x42\x5b\x10\x31\x11\x08\xed\x03\x2f\x0c\x5c\xa2\xb6\x77\x06\x8f\xc3\x59\xcc\xea\x6a\x55\xe7\x71\x8f\xce\x63\xbf\x8c\xad\x47\xef\xfa\x83\xaf\xef\xeb\xa1\xbf\x1e\xc2\x74\x9a\x26\x2a\x0b\x8e\x3c\x0e\x5a\x3d\x29\x7d\xa1\xeb\x7f\xca\x38\x8c\x75\x15\x5e\x7f\x03\x00\x00\xff\xff\x3b\xd9\x46\xc4\x7f\x04\x00\x00"); +func _caa ()([]byte ,error ){return _gb (_deag ,"KSC-Johab-H")};func _fg ()([]byte ,error ){return _gb (_ag ,"90ms-RKSJ-H")};var _fgbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd2\x4d\x8b\xdb\x3c\x10\x07\xf0\xbb\x3e\xc5\x1c\xf7\x39\xec\xe3\x91\xfc\x1a\x10\x81\x92\x65\x21\x2c\xdb\x96\xa4\xb4\x67\x47\x1a\x07\x43\x23\x1b\xc5\x39\xe4\xdb\x97\x99\x71\x52\xe8\x21\x28\xfa\x59\xfa\x33\x8c\xa6\xd8\xed\xdf\xf6\x69\x5c\xa0\xf8\x9e\xa7\x70\xa4\x05\x86\x31\xc5\x4c\xd7\xe9\x96\x03\xc1\x89\xce\x63\x32\xc6\x3a\x88\x63\x58\x1e\x5b\x59\xc2\xa5\x9f\x8d\xe1\xfb\xc7\xfb\x75\xa1\xcb\x3e\x0d\x13\x94\x7a\x2e\xde\xe6\xf5\x2c\x40\x71\xa0\xf3\x78\x5d\xf2\x1d\x5e\xbe\xc4\xe9\x44\xff\x41\xa4\x81\xfd\x5b\x8e\x94\xc7\x74\x86\x97\x8f\xc3\x13\x8f\xb7\x79\xfe\x4d\x17\x4a\x0b\x58\x31\x4a\x51\x56\x53\xec\x3e\xfb\xf9\x6b\x7f\x21\x28\x24\xe7\xf5\xe3\xf0\xaa\x47\xe4\xcb\x4f\xca\xd7\x71\x4a\x60\xff\x47\x74\x7f\xf9\xc7\x7d\xa6\x35\xc9\x14\xbf\x3e\xa7\x48\x80\x8f\xbc\xfd\xdb\x6e\xba\xa5\x05\xaa\xa6\x6c\xd5\xac\x56\x1d\xa6\x48\xd7\xb9\x0f\x94\xfb\x74\x26\x03\xe0\x11\x11\xb7\xe0\xad\x7b\x7f\xdf\x72\x49\xff\x9c\x30\x76\xb3\xde\x1c\xa3\xca\xe3\x06\xe2\x30\x6c\x01\x8d\x47\xab\x7b\xcb\x7b\x57\x37\xc6\xa3\x53\x71\x2c\xb5\x75\xc6\x63\xa9\x52\xb2\xb4\x4d\x67\x3c\x56\x2a\x15\x8b\x45\x57\x19\x8f\xb5\x52\x2d\xe4\x3a\xce\x6e\x94\x1a\xa1\xba\xe4\xf0\x56\xa9\x15\x6a\x37\x9c\xde\x29\x75\x52\x01\x56\x1c\xbf\x51\xda\x08\x95\xc8\xf1\xbd\x52\xbf\xd6\xc9\xf1\x27\xa5\x93\x50\x67\x39\x3e\x28\x05\xa6\x12\x5b\x8e\x8f\x4a\x51\xa8\x74\x1c\x4f\x4a\x24\x54\x77\x1c\x3f\x28\x0d\x42\x5d\x85\xc6\xdb\xb5\xb7\xd2\xa9\x0a\x37\x8d\xf1\x56\x9b\x65\xa5\x59\x55\x59\x3b\xe3\xad\x5b\x5f\xc0\x86\x2d\x54\x0d\x76\xf2\x0c\x8f\x76\xf3\x7f\x9e\xc7\xe7\x8c\x84\x5b\xce\x94\x16\x99\x46\x19\x04\x7e\xe0\x31\xd1\x73\xb2\xe7\x69\xe6\x5b\xf2\xfb\x13\x00\x00\xff\xff\x1f\x7c\xbd\x4b\x05\x03\x00\x00"); +func _dcf ()([]byte ,error ){return _gb (_ffdd ,"B5pc-H")};func _daga ()([]byte ,error ){return _gb (_dca ,"ETen-B5-H")};func (_fc bindataFileInfo )Size ()int64 {return _fc ._ffd };func _ceag ()([]byte ,error ){return _gb (_aeab ,"UniGB-UTF16-H")};func _edgc ()([]byte ,error ){return _gb (_eefd ,"NWP-H")}; +func _aegc ()(*asset ,error ){_dceg ,_caed :=_bdee ();if _caed !=nil {return nil ,_caed ;};_gagbd :=bindataFileInfo {_ee :"Hankaku",_ffd :579,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492279,0)};_acb :=&asset {_da :_dceg ,_dc :_gagbd };return _acb ,nil ; +};var _dgcg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x30\x10\x05\xe0\xbb\x7f\xc5\x1c\xb7\x87\xd6\x96\x14\xad\x2d\x28\x0b\x25\x29\xd4\x85\xed\x96\xa6\xd9\x16\x4a\x0f\x8a\x34\x0e\x86\x46\x36\xb2\x73\xc8\xbf\x2f\x7a\x93\xa6\x87\xa0\xf8\x8b\xe6\xf1\x02\xe3\x7a\xdb\xef\xfa\x34\xae\x54\x7f\xcd\x53\xd8\xf3\x4a\xc3\x98\x62\xe6\x65\xba\xe4\xc0\x74\xe4\xd3\x98\xaa\x4a\x69\x8a\x63\x58\xff\x3d\xe2\x08\x67\x3f\x57\x55\xfd\xf1\xb0\x7d\xfb\x89\x2e\x0b\xdf\x9e\xb7\xfd\x6e\x7f\x5d\x56\x3e\xf7\x69\x98\xc8\xc8\x5c\xbc\xcc\xb7\x59\xa2\xfa\x1b\x9f\xc6\x65\xcd\x57\x7a\xf8\x10\xa7\x23\xbf\xa1\xc8\x43\xf1\x97\x1c\x39\x8f\xe9\x44\x0f\x9f\xfd\xec\x93\xba\xff\xb0\xbf\xcc\xf3\x1f\x3e\x73\x5a\x49\xc1\x38\x45\x9c\x55\xbd\x7d\xf6\xf3\x17\x7f\x66\x42\x8f\x57\x28\xf0\x95\xf3\x32\x4e\x89\x94\x7e\xd7\x34\xf6\xbf\x7f\xbf\xce\x7c\x4b\xa9\xea\x43\xbf\x7b\x19\x86\x85\x57\xea\x9a\x46\xee\xfc\x3c\xf4\x3b\xfa\xa5\x48\x35\xa4\xad\x31\xcd\xef\xdb\xd5\x1f\xcf\x53\xbc\x0f\xea\x56\xfe\x4d\x18\x63\xf6\xe9\xc4\xd5\x7b\xaf\xbc\x7e\xa2\x72\x98\x27\x6a\xbb\xae\x2d\x74\x54\xa0\xa3\x06\x39\x50\x10\xe2\x42\x4e\x15\x0a\x72\x2b\x58\xd0\x06\xe4\x41\xf1\x08\xc2\x20\xcb\xad\x72\xb4\x4e\x95\xf8\x8d\x07\xe1\x68\x9d\xea\x40\x46\xc8\x80\x1c\xc8\x0a\x95\x78\xa7\x1b\x50\x2b\xd4\x82\x14\xc8\x09\x39\x90\x2e\x14\x24\x2b\x20\x4b\x9b\x42\x2c\xc4\x42\x1b\x90\xc4\xb3\xc4\x5b\x90\xc4\xb3\xc4\x3f\x82\x58\x88\x41\xa5\xbd\x95\xf6\x56\xda\xeb\x0e\x64\x84\x24\xde\x81\xac\x10\xe2\x4d\x03\x6a\x85\x10\x6f\x14\xc8\x09\xa1\xbd\x29\xed\xad\xb4\xb7\xd2\xde\x94\xf6\x56\xda\x5b\x69\x6f\x36\x20\x89\x97\xf6\xc6\x82\x24\x5e\xda\x9b\x47\x10\x0b\xa1\xbd\x41\xfb\x41\x06\x87\x47\x50\x57\x36\xf2\xbe\x0c\xe5\x7b\x79\x17\xee\xbb\x19\x2e\x39\x73\x5a\xf1\x26\x60\x09\xcb\x16\x8d\x89\xef\x6f\xd9\x3c\xcd\x65\x0a\x9f\xbf\x01\x00\x00\xff\xff\x11\x50\xcc\x91\x91\x03\x00\x00"); +func _eada ()(*asset ,error ){_daeg ,_egd :=_fec ();if _egd !=nil {return nil ,_egd ;};_acdd :=bindataFileInfo {_ee :"Adobe-GB1-5",_ffd :2811,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491284,0)};_daee :=&asset {_da :_daeg ,_dc :_acdd };return _daee ,nil ; +};var _cefa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x90\x4f\x4b\xc4\x30\x10\xc5\xef\xf9\x14\x73\x5c\x0f\x6b\x93\x4a\x15\x61\x59\xd0\x56\xb0\x87\x5d\xc5\xae\x7f\x40\x3c\x74\x93\x69\x09\xd8\x49\x48\xd2\x43\xbf\xbd\x24\xad\xdd\xc3\x30\xcc\x6f\x78\x33\x8f\x97\x95\x75\x55\x93\x0e\x90\xbd\x3a\x23\x1b\x0c\xd0\x69\x52\x0e\xbd\x19\x9d\x44\x38\x63\xaf\x89\x31\x91\x83\xd2\x32\xfc\x8f\xa9\xc9\xa1\xb5\x8c\x65\x4f\x27\xa4\xed\x63\xb1\x7d\x86\xd1\xe3\xc2\xca\xba\x6a\x26\x1f\x70\xa8\xa9\x33\x70\x33\x6b\xd5\x68\x17\x3d\x40\xf6\x86\xbd\xf6\xc1\x4d\xb0\x79\x50\xe6\x8c\x57\xa0\xb0\x8b\xfc\xc5\x29\x74\x9a\x7a\xd8\x94\xc7\x46\xac\xb8\x19\xad\xfd\xc5\x01\x29\x00\x4f\x0c\x49\xa5\xce\xb2\xf2\xd0\xda\x63\x3b\x20\x24\x27\x83\x9f\xbd\xc4\x5d\x5a\x7d\xa0\xf3\xda\x10\x08\x7e\xcd\x79\x71\xe1\xa7\xc9\x22\x88\xe5\xc6\xd7\x7b\x5d\xc1\xb7\x00\xc1\x21\x2f\x8a\xfb\xdb\x9f\x85\x7f\x1e\x8c\xc2\xe5\x23\x13\xb3\x7b\xa9\x95\x6b\xa9\x47\xb6\xcb\xf9\x1e\x76\x77\xb8\x07\x11\xed\xac\x3c\x0d\x31\x87\xd5\x99\x1c\x9d\x43\x0a\x29\x85\xf4\x3c\x1e\xd4\x84\x6b\xca\xd6\xd8\xa8\x4a\xf5\x17\x00\x00\xff\xff\x0d\x7d\x06\x62\x91\x01\x00\x00"); +var _ebff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xaf\x2d\x3b\x72\xe5\x37\x7f\x9f\xe2\x0c\xdb\x83\xb6\x32\x93\xcc\x24\x09\x3c\x5c\xc0\x92\xba\xe0\x6a\xa0\x6d\xc3\x6a\xd9\x06\x0c\x0f\x92\xfb\x8f\x5c\x80\xf5\xaa\xf0\xaa\x34\xd0\xb7\x37\xb8\xd6\x6f\xed\x57\x6d\x18\x38\x75\x27\x77\xc7\x21\x93\x0c\x92\xc1\x60\xfc\x63\xf0\xef\xfe\xe1\xf7\xff\xf8\xfb\x5f\xfe\xf0\x97\xaf\xbf\xfb\x5f\x7e\xfd\xe3\xe3\x9f\x5e\x7f\xf9\x7a\xff\xe1\x97\xe7\xaf\xaf\x3f\xff\xf1\xdf\x7e\x7d\xbc\xbe\xe6\xeb\x5f\xfe\xf0\xcb\x4f\x3f\xed\xc7\xd7\xf3\x0f\x8f\xbf\x04\xd4\x7f\x8f\x7f\xbd\xff\xf4\xd3\x4f\xeb\xfb\x7f\xfa\xf7\x3f\xff\xe5\xf5\xaf\xbf\xff\xe5\xfd\xc7\xaf\xe2\x7a\xcf\x7f\xfb\x13\x75\xbf\xbe\xfe\xee\x7f\x7d\xfd\xcb\x1f\xfe\xfc\x97\x5f\xff\xfd\xeb\x3f\xfc\x0f\xcf\x3f\xce\xd7\x7f\xf7\xf5\x7c\xbd\xd7\xdf\xff\xe7\x5f\x9f\xaf\x5f\xff\xf0\xcb\xbf\x7c\xfd\x87\xff\x7c\xff\xe9\xfe\x65\xff\x14\xfc\xd3\xbf\xfd\xe9\x4f\xff\xcf\xeb\x5f\x5f\xbf\xfc\xe5\xab\xe9\x6f\xaf\x5f\x9e\xfa\xff\xa7\xbf\xfb\x87\xff\x72\xff\xe9\x7f\xba\xff\xf5\xf5\xf5\x77\xff\xfc\xcb\x1f\xfe\xf3\xef\xff\xe9\x3f\xfe\xf3\x7f\xfd\x5d\xff\x8f\xff\xa3\x4a\x55\xf8\xbf\xbd\x7e\xfd\xf3\x1f\xfe\xf8\xcb\xd7\x5e\xfe\xfb\xed\xb8\x7e\xfb\xfb\x7f\xfd\xf7\x3f\xbd\xbe\x76\x5a\xf9\x3f\xfe\xf9\xf7\xff\xf8\xf5\x7f\xee\x5f\xfb\xf6\x75\x9c\xe5\x1c\xff\x17\x7f\xff\xdf\xff\xcb\x1f\x9f\xaf\xaf\xcd\x50\xf5\x08\x1e\x7f\x7c\xbe\xfe\xfc\xa7\xfb\xf1\xfa\xf5\xfe\xe5\x5f\x5e\x3f\x7d\x7d\xfd\xbc\x6d\x3f\xbe\xfc\xef\xe7\xf6\xbb\x1f\xeb\x2f\xff\xb0\x75\xfe\xf6\xf3\x3f\xfe\xee\xef\xfd\xb7\xff\xb4\x75\xfe\xfa\xf3\x7f\xfa\xdd\xdf\xe7\xaf\xbf\xd3\x5f\xd7\xdf\x7f\xfe\x5d\xfb\x7b\xfe\xfe\xfa\xe5\xf9\xff\xe9\xe5\xa7\xdd\x9d\xff\xf2\xc7\xbf\x3c\x5f\x6f\xff\x4d\xfd\xfe\xbc\xbf\x7f\x7c\xed\xeb\x8b\xbf\x2e\xfa\x69\xdf\x36\xb0\xfd\xc3\xf3\xf1\x7f\xdf\xbf\xfe\xf4\xf3\xf9\xf8\xf1\x35\xda\x4f\x3f\xb7\xf5\xff\xf8\xe9\xe7\xf6\xfc\xf1\x35\xea\x4f\x3f\xb7\xd7\x8f\xaf\x7d\xdb\x7e\xfa\xf9\x71\xdc\xdb\x6a\x6a\xfd\xa8\xeb\x6f\x4d\x3f\xcf\x1f\x5f\x97\xff\x78\xfd\xf8\x1a\x45\xbf\xda\x8f\xaf\x76\xf8\x93\xfe\xe3\xeb\xaa\xae\x39\x7e\x7c\xed\xe7\xa1\x9f\xf7\x8f\xaf\xbd\xba\xc2\x5c\x4d\x0d\xfd\x7c\xac\x0a\x6e\xe1\xb9\x7e\xba\xd9\xd5\xff\x59\xf5\x73\x0d\xe5\x50\xdd\xb9\xfd\xf8\x6a\xc6\x60\xee\x3f\xbe\xae\xa1\x0a\xb3\xae\xde\x4e\xfd\x3c\xd7\x67\xae\x7b\xfd\xf8\x6a\xad\xeb\x67\xfb\xf1\xb5\xef\xfe\xac\xff\xf8\xda\x8b\x3f\x5b\x98\x5d\x42\x67\x0a\x33\xff\x75\x61\x76\x08\x9d\xa9\x8e\xaf\x9f\x7e\x7e\x94\x7e\xad\xcf\x56\xbb\x65\xb4\xd5\xf1\xa9\x9f\xab\xb1\x7a\xe8\xe7\xaa\x7b\xae\xc6\xca\x9a\x91\x5d\xe8\x94\xa9\xba\x6a\x41\x1d\xd7\x85\x4e\x5d\xcb\x3a\xca\x75\xe9\xf7\xae\xdf\xbb\x7e\x1f\xab\x8d\x76\xba\xa0\x08\xb8\x86\x80\x2a\xa0\x34\x01\x1a\x63\x53\x0f\x55\x88\x9d\xed\x74\xc3\x4d\x40\x73\x6b\x5d\x40\x2f\x02\x86\x01\xb7\x76\xff\xf8\x3a\xb6\x52\x5c\x32\x05\x68\x85\x6a\x7f\xb8\x35\x57\x7b\xba\x35\x97\xbc\x8c\x8e\x9b\x7e\xbb\x64\x4d\x58\x1d\x9b\x1a\x38\x54\x6d\xec\x2e\x11\x6e\xe3\xd0\xd8\xd4\xd8\x28\xfa\xed\x2f\x2e\xf7\x6f\xa0\xb9\x7f\x21\x33\x8c\xb3\x16\xa5\x0e\xe3\xdc\x5c\x72\xaf\xef\x87\xdb\x9d\x8b\x46\x45\x06\x75\x18\xe3\xee\xb6\x8c\xf1\xf0\xe7\x2f\xf7\xe2\x4f\xde\xee\x45\xc0\x6d\x8c\x3d\x9b\xf7\xee\x12\x4d\xfa\x7d\xb8\xc4\x80\x27\xbd\xfb\x1b\x4f\xfa\xd0\xf8\x6f\x0f\x40\x54\x52\x6f\x4d\x7a\xdf\xfd\x4d\x17\x6a\x42\x60\x51\xfe\xa8\xbb\xe6\xe5\x16\xfa\x97\x7b\x9c\xfa\xed\xbf\x83\xa4\xe6\xe8\x06\x49\xd5\x9a\x20\xa9\x85\x5d\xc4\xbe\x57\xf5\x30\x8d\xe2\xa1\x01\xcf\x62\xc0\x95\xc0\xd7\xd5\xc0\x57\xbd\x4c\xe3\xab\xad\x57\x27\x13\xee\x6f\xba\x1b\x50\xff\xd3\x13\x4e\xff\xb7\x67\xdf\xdf\x98\x48\xaa\x5b\x7b\x08\xf0\x22\x4d\x4f\xb9\x07\x30\x4d\x24\xd5\x0d\x78\x34\xc7\x9a\xbe\xb3\x33\x9a\x4d\x80\x46\xb3\xeb\xe7\x22\x79\xd5\x3f\x43\xf0\x87\x00\x8f\xa5\x5d\x02\x4e\xf7\x5e\xc4\x01\xe1\x5c\xff\x3f\xbc\xec\x71\x76\x0f\xf4\x72\xdb\xde\x0d\x57\x11\x60\xca\x6a\xee\x6a\x18\x1b\x57\xf3\x6e\x38\xdc\x95\x48\xab\xf8\xf7\x62\x89\xa5\x19\xe5\xa7\xd6\x4c\x63\x59\x04\xbf\xda\xad\x02\x20\xf8\x2e\x40\xa3\x51\x7f\x8b\xde\xf7\x3a\xf4\xd3\x63\x39\xfd\xb1\xd7\xe5\x72\x7d\xd6\xc5\x2d\x79\x5d\x3c\xfe\x6c\x04\x7f\xc3\x46\x70\x6b\x5e\x17\xad\xe5\xb9\x76\xc2\x02\xdc\x1a\x5b\x41\x43\xcc\x56\x30\x32\xac\x8b\xc6\x6b\x4e\xd5\xc4\xab\x4e\x6d\x05\xd1\xf1\xa9\x8d\x70\xe8\xe3\xdb\x8c\xe8\x32\xe0\x75\xe9\xfa\x98\x3d\x21\x42\x38\xd9\x13\xa7\x4b\xd8\x13\xfe\xc6\x63\x29\xae\xe6\x3d\xa1\xa1\xb0\x27\x5c\xc9\x7b\x42\xb8\xb3\x27\x8c\x08\xe3\x70\x01\xe3\xd0\x14\xad\xdd\x32\xea\xe6\xdf\x6f\xb5\xa4\x95\x9a\xac\x88\x01\xaf\x48\xd7\xf8\xd8\x2d\xe2\x95\x27\xbb\xc5\xbd\xac\xdd\xb2\xb6\x81\xab\x99\xc2\xbc\xa4\xec\x16\x0f\x8b\xdd\xe2\x85\xd0\x6e\x39\x5c\xc9\x6b\xe2\xc5\x66\xaf\x88\x87\x9e\x93\x35\x71\x35\x18\xaa\x81\xe7\xfa\xdc\x2d\xad\x7d\xaf\x5d\x77\x89\x68\x34\x3b\x97\x88\xe6\xec\x22\xc5\xe6\xd3\xa0\x1f\xbb\x00\xd1\x9f\x66\xa1\x75\xcf\x82\x2b\xbd\xf5\xf7\x35\x55\x6d\xd1\xe5\xa8\xfb\xa6\xdf\xbb\xea\xe8\x5b\xb1\xe1\xba\x17\xfd\x2e\xfa\xbb\x7f\x57\xfd\xfd\xd4\x6f\xb6\xd8\x10\xe0\x33\xa5\xb8\x96\x27\x40\xcc\xa7\x41\x96\xe2\xdc\x6d\x78\x17\x55\x77\xee\x29\x28\x6e\x0d\x76\xd1\x04\x78\x0a\xb4\xa7\x1a\x13\xad\xf9\x68\x53\xb2\x86\x06\xd8\xd7\x3c\x8f\xaa\xcf\x87\x37\x58\x17\xf5\x0c\x8f\x64\xef\xfa\xed\x29\x51\x53\x23\x93\xe5\x5a\x1a\x8b\x08\x79\x78\x8b\x75\x51\xfb\xf0\x58\xfa\xe6\x5a\x66\xd5\x54\xeb\x06\x86\x00\xd1\xe5\xe1\x86\x6f\xfd\xf6\xdf\xcd\x0f\xfc\xf5\xc3\xbd\x6f\x02\x5e\x06\xdc\xc9\xdb\x9d\xe8\x93\xdb\xd8\x6b\x9d\xc7\xbd\xfb\x70\x50\x8f\xde\x3c\xdd\x83\xf4\xe6\xe9\xe2\xef\xe3\x36\x96\xbb\x1b\x30\x96\x22\xa0\x71\x83\x65\x13\xa0\x49\xee\xfd\xfc\x8e\x11\x0e\xf6\xd0\x70\xeb\x4f\xa3\x67\xc0\xbc\x60\xb8\x2b\x23\xae\x95\x1e\xde\x45\x7d\x57\xbf\xec\x22\x1d\xb8\x63\x7a\xde\x45\x5a\x63\x7a\xde\x37\x7f\xe3\x21\xe9\xcc\x19\x6b\x71\x47\xd5\xb1\x3a\xa6\x47\xd4\x0d\x78\x10\xda\xd1\xc3\x3b\xa7\x6f\x6e\xcc\x23\xaa\x6e\x6c\xba\xc4\xdf\x80\xb4\xb1\x01\xe9\x55\x72\x77\xe3\x29\x59\xe6\xee\x4c\xf0\x29\xc0\x78\x6e\x06\x44\xea\xe2\x54\xb7\x8f\x93\xae\xad\x7b\xfb\x28\xe8\xda\x1c\xb7\x05\xa3\xae\x13\xf4\xee\xc6\xa6\xb8\x9a\xf7\xb1\xa4\xb7\x5b\x67\x41\x2d\xae\x65\xcc\x8a\x91\x31\x1d\xec\xee\xc6\xd3\x29\xf9\xe3\x86\x8a\xb5\x4f\x6f\x1f\x13\xdd\xd8\x78\x43\x8a\x3e\x6f\x1f\x0e\x5d\xf4\x7d\x43\xb9\x62\x8f\x77\xe8\xd3\x8d\x19\xcd\xe1\x6f\x4c\x88\xc3\x8d\x19\x9b\xdd\x25\x20\xb0\xa6\xf3\x86\xf6\x74\x52\xdc\x37\x5b\x47\x93\xc6\x4a\x8b\x9d\xdc\x2c\xae\x56\xfa\x9e\xa6\x3d\x0f\x7a\xad\x87\x28\xe8\x5e\x6c\x4c\x7f\x9b\xcc\xb7\x56\x62\x4a\xf8\xd4\xd4\x4d\x0e\x5b\x31\x90\xc9\x0c\x57\x7f\x31\x22\xbe\x4f\xcd\xef\xe1\x4f\xe7\x8f\x2f\x31\xd5\x69\x99\xb3\x8b\x59\x4c\xf3\x30\x91\xc3\xcc\x9c\xa9\xfd\x70\x1e\x03\x48\xb3\x87\x80\xd5\x68\xf1\x17\xb0\x5e\xf5\xbb\x66\x49\x83\x9a\x9c\x85\xa7\xeb\x78\xc1\x74\xb6\x3d\x16\x29\x09\x8b\x87\xa8\xc5\xbf\x6a\xf0\x7d\x48\xf0\x10\x53\x78\xf4\x4f\x2f\x0f\x11\x46\x71\xdd\x85\x7b\x71\x53\xcf\xdf\xc6\xfc\x80\x10\x74\xb8\x3c\xcc\x1a\xbb\x8e\xef\x07\x6b\x27\x09\xe5\x01\x43\xd0\x11\xf8\x80\x21\x9c\x06\x5a\xd4\x94\x87\x38\x80\x58\xde\xc3\xba\x54\x37\xc6\x30\x83\xe6\x12\x37\x2b\xc1\xfd\xc1\xae\xd6\x71\xf8\x60\xad\x25\x85\x3f\xd6\x5a\xeb\x90\x7b\xb0\x71\xa5\x2a\x3c\xb4\x59\x35\xb5\x0f\x76\xa7\x84\xbb\x87\x4f\xaf\xde\x0c\x78\x80\xfa\xfc\x19\xda\x5a\x98\xbc\x2c\x75\x55\x2d\xec\xab\x4b\x3a\x34\xcb\x7c\xf5\x97\x81\x22\xe0\x6d\x40\xdf\x58\x6b\xf0\x26\x78\xdd\xb7\x4b\x0c\x4c\x03\xab\x9f\xd7\xa4\xda\xfa\xe6\xad\xed\x7d\x1d\xc7\xf1\x1d\xfb\x7b\x5b\xa6\xab\x22\xfd\xb7\x35\x9c\x2a\x7e\xfa\x06\x23\x2d\xd3\x5b\x5b\xf4\xd8\xb4\x5f\xdf\x22\xb7\x63\x1b\x2e\x39\x0d\xe8\x1b\x91\xd5\xb1\x2d\xf2\x78\x6e\xda\x00\xdb\x5a\x82\xe7\xae\x4f\xb6\xb5\x45\x5e\xdb\x7c\xeb\xa8\x39\xf6\x45\x95\xaf\x7d\x7a\xcf\x94\xb5\x51\x04\xe9\xac\x5b\x27\xc4\x6b\x9f\xcf\x29\x32\x5f\x5b\x5b\x90\x8f\xb8\x94\x89\x3b\xac\xe1\x0b\x12\x17\x5b\x13\xf8\x3a\xfa\xb6\x66\xe0\x58\xd3\x24\xa0\xfc\xf8\xba\x52\xb2\x86\x72\x2d\xd9\x51\x80\x04\x6c\x7e\xaf\x49\xfb\x00\xe5\xaf\x81\xca\xaa\x0b\x58\x0a\xfd\x45\xcb\x6b\x24\xd7\x22\x1f\x01\xdd\x5c\x40\xbf\x87\xf9\x80\x7e\x6b\x33\x6f\x00\x8b\x52\xb6\xd4\x5a\x94\x72\x04\x97\x97\x66\xc5\x80\xb8\x90\x06\xba\x00\x75\x19\x40\x5d\xd2\x80\xd4\xfc\x46\x03\x8b\x0b\x49\xe2\x10\xf0\x50\x6b\x3b\xed\x59\x8c\x02\xa1\x69\xb2\xaf\x6e\x71\x87\x5a\xfa\x01\x28\xe3\x45\x05\x18\x6e\x86\x32\xcd\xd7\x75\xf4\x1d\xf0\xfe\xf1\xd5\x3a\x63\xde\xd7\x68\x9a\x18\xde\x82\xb4\x72\xa5\x05\x52\x97\x83\x81\xcb\x94\x31\x24\xdc\xbc\x8e\x5e\x34\x0d\x97\x94\x33\x81\x6b\x22\xf6\x6d\x91\xff\xeb\xe8\x32\x02\xec\x7b\x3f\x03\x96\x1f\x5f\x6d\xdf\x00\x4e\x97\x0d\xc0\xf1\xe3\xab\x97\x2d\x35\x6f\x41\x15\xe8\x6d\xda\xf4\x48\xa4\x66\xf7\xed\xa0\xea\x5a\xc7\x76\xa5\xd5\xb5\x67\xfb\x96\x0e\xa5\xea\x82\x5b\xb5\x11\xe7\x53\x24\x5e\x7e\xee\x01\xd7\x02\xb4\x1d\xc0\x0a\x2b\xc4\x61\x35\xf3\xd8\x3a\x98\xae\xb5\xea\x65\xf3\xec\x48\x51\x1a\xd2\xc6\x05\x2d\x2a\xd7\xb1\x2f\xe8\x10\x74\x01\x59\x93\x38\xf8\x70\x4d\x6b\x2f\x9b\x49\xfb\x5a\xc3\x1f\x92\xe7\x17\xb4\x3e\x94\x30\x29\x60\xcd\x5a\x19\x00\x62\xdc\xc7\x66\x4c\xdb\xe2\x4a\xbd\x6c\x03\x68\xba\xb0\x01\x3e\x0c\xba\x9d\x66\x46\x70\x80\x9c\x24\x66\x49\xf3\x02\xea\x02\x8c\x4b\x5b\x13\xd5\xb7\x3d\x50\x13\x44\xc5\xc5\xa8\xfb\xc6\xee\x6a\x8b\x57\xf7\x0d\x42\x95\xdc\xdb\x0b\x35\xfb\x5a\xfb\x06\x99\xf4\xae\xce\x06\xc0\x1a\x10\xeb\xd0\x45\x06\xc7\xde\x53\x11\xe5\xb6\x01\xb6\xb5\xb8\x1b\x40\xff\xf1\x25\xfd\x4e\x80\x78\x78\x6d\x17\xa0\x37\xea\x48\xe9\x5a\xce\x1a\x4c\xac\xa4\xb3\xf1\xfa\x5a\xa3\x76\x41\x3e\x7d\x4d\xc3\x35\x0a\x40\xf1\x96\xe9\xdf\x30\x5f\xd5\x1d\xd8\xdb\x04\xac\xdd\x74\xa5\xc9\xb5\x99\x32\x82\xb5\x23\xda\x96\xf6\xdf\xea\x9a\x79\xb8\x35\x43\x0c\x60\x4d\xa5\x74\x5c\x01\xab\xb9\x4a\x0b\x4b\xb2\xed\xfb\xa0\xf1\x45\x9b\xed\x3a\x98\xae\x75\xc2\xb5\x2d\xc0\xb9\x8a\x68\x42\x4c\x84\xb5\xee\x53\x18\xb9\xa7\xd1\x3d\x48\xb8\xda\xb0\xa5\xed\x84\x68\x86\xc5\x9a\x93\xdd\x2e\x6d\xa4\xc1\x72\x25\xf5\x5f\xb0\x0c\x49\xfd\x0d\x66\x3a\x2c\x79\x9d\x6c\x5f\xcb\x78\xc7\xde\x3b\x20\x87\xc6\x05\xd8\x0c\x0e\xc0\x6e\xb0\x01\xbe\xcc\x6e\xa8\x2c\x4d\xe3\xd8\x3b\x2d\x2f\x7e\x2a\xe3\xcd\x02\xa6\xa6\xb3\x78\x20\xd3\x32\xcd\xc1\x1c\x3e\x24\xac\x1d\x07\x8c\xf8\x61\x72\xa7\x0c\x41\x0b\xce\xf0\xf2\xd9\x27\xa3\x86\x40\xf3\x5f\x56\xf0\x25\x79\xf3\x37\x10\x84\xea\x05\xa8\x13\x55\x06\x5d\x81\xc7\x7f\x5b\xf9\xfc\x6f\x41\x4f\x04\xbb\x42\x22\xc1\x6f\xa5\x3a\xb6\xf7\xeb\x68\x42\x63\x6c\xb2\x49\x5c\x87\x8f\x88\x51\x56\xe5\x7e\x78\xe1\x47\x11\x53\xde\x4e\x13\xd6\x10\x17\xea\x87\x91\x18\x32\x85\xf4\xc3\x7b\x7b\xc8\xe6\xd1\x0f\xf7\x39\x4e\x37\x73\xf2\xdd\x92\xa2\xfa\x71\x6e\x86\xa6\x5a\xf1\xd9\x32\xc4\x92\xfa\x51\x2b\x90\xbe\xf3\x14\x8d\x6b\xed\xaf\x7e\x78\x83\x8d\x6b\x31\x9a\x7e\x78\x67\x8e\x6b\x09\x89\xfd\xa8\x1b\x90\x70\x29\x69\x53\xfd\xf9\x3c\x1e\x97\x36\xc0\x41\x91\xe8\xe9\x48\xc9\x21\xc6\x72\x02\x69\x9e\x3e\x8d\xdc\x66\x73\xa5\x19\x9c\x3e\xd8\x0a\x95\xa7\x78\x27\xb8\x4c\xf1\x4e\x50\x99\x9e\xfd\x91\x8a\x66\x6c\x29\x7c\xac\x9a\x0c\x4f\xfb\xa5\x78\x74\xad\x7b\xc1\x47\x05\xd4\x09\x63\x96\x3b\xc4\x80\x61\xe9\xa3\x89\x5b\xf9\xa4\x1e\xcd\xd3\x47\xf3\x0d\x03\x9c\x4f\x98\x21\x4e\xdd\x8e\x02\xf0\xf0\x5a\xa6\xbf\xb5\xc3\xcd\x9e\x86\x6c\x1f\x8d\x45\x6f\x4b\x94\xee\x87\x89\x78\xb4\x45\x5b\xfd\x38\xe9\xdb\xa4\x95\x65\x6e\x6b\x61\x65\x4c\x5b\xc0\x64\xc2\xc0\xcc\xf2\x45\x56\x41\x1c\xb8\x59\x92\x19\xdd\xe3\xd9\x01\x5e\x3a\x4c\xfd\x59\x37\x55\x79\x3f\x0d\xb1\xb2\x7e\xf0\xd9\x10\xb3\xf7\x96\x1d\x43\xcc\xde\xac\x60\x88\x67\xf4\xc3\x47\xc4\x18\x3e\x9e\xcd\x35\xc7\x60\x95\x07\x50\x51\xcd\x02\x54\x55\xd6\x81\x34\xd6\xfd\x3b\xa1\x58\x55\x2f\x55\xad\x40\x5e\x64\x30\x13\x5f\x6d\xc1\x6c\x8a\x6e\xcc\x23\x87\xad\x09\xc7\xfe\x01\x17\x09\xb4\xb4\xa2\x9d\xb9\x8f\x60\xaa\xc9\x35\xa2\x61\x50\x16\x4e\xc6\x0d\xad\x9e\x29\xf5\xd4\xfb\xb4\x1b\x92\x90\x97\x90\xdd\x00\x5f\x3e\xb5\x0c\x4e\xce\x6f\xa8\xf0\xd1\xcd\x4b\x7c\xc4\x8d\xc7\x80\x1f\x6c\x80\xee\x88\x5d\xf7\xb0\x1f\xe7\x60\x37\x3d\x4d\xb4\xc8\x3e\xe3\x39\xa0\x0e\x4a\xe1\x1e\x4c\xd2\xcb\x1c\x82\xe5\x7b\xd9\xa6\x3d\x4c\x66\xf7\xa5\xba\xd7\x61\x4e\x73\x37\x9d\x0f\xc7\xe1\xcd\x71\x1b\x8b\x7d\x33\x69\xdd\xd6\xef\x0e\x58\xc8\xfd\x80\x28\x7d\x92\xdd\x56\xed\x0e\xd8\xcd\xfd\xf4\xcc\xb1\x45\x6e\xab\x5b\xc7\x61\xf9\xe1\x7e\x9a\x93\x42\x39\xf7\x6b\x9c\xbf\xe1\x78\xbf\x72\x84\xe8\xd3\x39\x6c\x2d\x39\xbd\xcc\x53\x56\x91\xbd\x22\x4c\xce\x5b\x27\x5c\xe9\x67\x4a\x9b\x2c\xf3\x9f\xd2\xa1\xca\x9f\xd2\xa9\x52\x23\x35\x65\xfa\xa8\x87\x77\xfb\xb4\xed\xa3\x22\x74\x4c\x59\x3f\xea\x55\x03\x1d\x3f\xbe\x0a\x67\xe5\xbc\xd7\x6a\x55\xc4\xb6\x29\x0b\x48\x65\x3f\x4e\x4c\x20\xc5\xc2\xca\xf4\xf1\x58\xcf\x42\x97\x1a\x5b\xe9\x67\x1a\x92\x4f\xed\xbc\x52\x79\xfc\xf8\x3a\xb7\x33\x2d\xcd\x05\xf5\x40\x8b\x9c\x5a\xb7\x34\x33\x65\x28\x29\x97\x19\xf8\x14\x9d\x16\xa8\x76\xde\x3a\x5c\x6a\xab\x7c\x69\x25\xbd\xf8\x6c\x9f\xb7\xbd\x7b\xbb\xc9\x74\xde\xd2\xce\x2b\xd2\xe9\xbc\xb5\x8c\x05\xc6\x3d\x4d\xf1\x65\x0c\xe6\x53\x14\x5f\xc7\x48\xe9\xda\x56\x63\xcf\xe0\x64\xa6\xab\x23\x93\xaf\x8d\x55\xc6\xc1\x58\x6d\x90\xdb\x36\x2a\xcb\x6a\xf3\x5b\x53\x32\xca\xd5\x3d\xa3\x95\x19\xa7\x6e\x0d\x9c\xa5\xd4\xd7\xed\x53\xd9\x56\x8b\xca\x10\xa4\xd8\x97\xac\xd5\x14\xc1\x54\x36\xf4\xb4\xc1\x67\xf8\xd0\x98\xd3\x16\x36\x54\xc8\x39\x45\x4d\xa5\x7b\xdf\x4d\x89\x19\xc7\xe5\xdd\x31\x6d\x1d\x2a\x97\x15\xb0\x69\xe3\x4f\x41\xad\x9a\x98\x7d\xaa\xf7\xce\x9c\x36\x9f\x20\xeb\xce\x69\x03\xca\x01\xc5\xc8\x14\x54\x36\x66\x75\xda\x0c\x0c\xe3\x98\xd3\x26\xde\xdf\xea\x36\x0f\x27\xa5\x7d\xe1\x74\xd1\xae\x74\xb2\xd2\x19\xba\x8d\x41\x05\x95\x71\x4e\x89\x33\xa5\x57\x50\xd4\xca\x5f\x19\xeb\x5a\xe9\x52\x58\xe8\xe9\x85\x3e\xc0\x5e\x36\x0b\x34\xe6\x39\x6f\xd9\xf9\x6b\xca\x16\xa9\x8d\x0b\x74\xb4\x6e\x97\x4f\xef\xf9\x30\x2b\x62\x4d\x1f\x3a\x3e\x39\x07\xa7\x58\x5c\xdd\xc6\x77\xb6\x5e\x55\x2d\xaa\xda\x80\xa4\xd7\x9b\x53\x4e\xd9\xb0\xea\xee\x03\x74\x3e\xd6\x9a\x94\xa3\xa5\xfb\xb6\xca\xf6\x74\xbf\x66\xea\x64\x23\x3e\xd6\xde\xaf\x87\x65\xdd\x29\xf3\x57\x39\x2c\xa5\x4e\x59\xc0\x4a\x19\x69\xf3\xb1\x6a\xee\xf9\xee\xb9\xa0\x23\xb8\x88\x47\x7c\x70\x79\x2f\x88\x89\x79\x88\x45\x20\x93\xce\x87\x96\x78\xbf\x52\xb6\x18\xc6\x80\x0b\x88\xbd\xd7\xc3\x52\xc6\x7c\xac\xf5\xae\x28\x99\xf3\x21\xff\x44\xc9\x88\xd6\x6a\x97\x16\xac\x17\x43\xa8\x05\xd6\x27\x7e\x5c\xcb\x91\x36\xa7\xa0\xd4\x7c\xac\xef\x6a\x6a\x2e\x2a\x19\x17\x23\x5a\x44\x52\xeb\x19\x68\x2d\xe7\x0e\x4b\x7c\xd8\x7f\xb6\x81\xd9\xe2\x1c\xa5\xb3\xeb\x64\xdd\x3b\x7a\x07\xcf\xc5\xfe\x8f\x9a\x99\x90\xb7\xec\x33\xbb\xeb\x24\xae\x17\x3b\x5d\x06\xbf\xe3\x62\xc7\xe9\x60\x38\xea\x99\x1e\xee\xbf\x62\xab\x8f\x45\x76\xf5\xca\x0c\x2e\x76\x52\xb3\xfb\x1e\x22\xc2\xbd\xa5\xf7\x35\x86\x96\x99\x90\x81\x70\x64\xa5\x65\x21\x1c\x3b\xdf\x89\xcf\xb4\x12\xc8\xfb\x3d\x35\xff\x9a\x71\xcb\x84\x58\x51\x3a\xe7\x63\x69\x58\x15\xa5\x67\xca\xa2\x58\x5b\x56\x73\xb1\xa3\x8a\xfa\x35\x1f\xf2\x06\x5c\xec\x5e\x1b\x1c\xeb\x99\x65\x99\x6b\x80\x0a\x5a\x10\x34\x05\xa5\xea\x63\x11\x68\xa6\x62\xb1\xad\x3a\x60\x9e\x0f\x89\x0b\xe3\xd3\xca\x3a\xa7\x8b\xc5\xcd\xa9\x03\xff\x38\xd8\x73\xcf\xb5\xcb\xce\x8d\x69\x7a\xae\x5d\x56\x4e\x48\xf9\xb9\x36\x52\x41\xd9\x99\x4f\x6d\xa4\x66\x69\x7d\x3e\xd7\x46\x2a\x98\xc8\xe6\x73\x6d\xa4\x73\xeb\x69\xa5\x69\x7b\x54\xa0\xfe\xe3\xeb\xdc\x4b\xda\x5c\x03\xec\x57\x5a\x59\x1b\xa9\xef\xa9\xb9\x0e\x84\x7e\xa6\xbf\x35\xbe\xe3\x48\x0f\xcf\x1f\x5f\x67\x81\x35\x3d\xd7\x46\x3a\xcb\x95\xef\xde\x82\xe8\x7d\x6d\xa4\x52\x4f\x7a\xd0\x46\xea\x6c\x8f\xe7\x90\x99\x07\x3e\xf5\x5c\x1b\xe9\x2c\x2d\xdf\x89\x5d\x6f\x29\x93\x28\x10\x3c\xd7\x26\x2b\x1b\x1c\xed\xb9\x36\x59\x39\x59\xea\xe7\xda\x64\xe7\x05\xd1\x3f\x75\xea\x5e\x5b\x6a\xae\xf1\x5d\x7b\x7a\x90\xa9\xbc\xa7\x87\xc5\xf2\xaf\x96\x56\xd6\x26\xeb\x3d\xfd\x69\xfd\x3e\x6d\xbe\x45\x84\xcc\xa0\x85\x21\x18\x3a\xa6\xe7\xd4\xb4\x76\x5d\x18\xed\xda\x80\xc7\x75\xe6\xbb\xba\x66\x82\x83\xec\xb9\x36\x60\xd9\x4b\xbe\x5b\xe3\xab\x2d\x65\x3a\x2f\xc3\xf8\x9f\x6b\x07\x9e\x21\xc2\xe7\xda\x81\xe5\x33\xd9\x6b\x07\x96\x7a\x7e\x17\x8b\xa0\xaa\x53\x5b\x30\xd8\x3c\xb4\xf2\xcc\xd3\xda\x9e\xa5\x7d\xfa\x7f\xad\xb2\x92\xb2\x45\xbd\x17\x92\x94\x6c\xc5\xc7\x91\x75\x71\x24\xc8\xd8\xc1\x4d\xfb\xb3\x5c\x81\x8a\xc8\x29\x1f\xae\xe1\x8f\x10\x97\x3c\xaf\x23\x93\xbf\xf6\x67\xf9\x2c\x9a\x9c\xdc\xe1\xd9\x4f\x7b\xeb\x90\x8d\x9e\x6b\x7f\x5e\xfb\xa7\x87\x35\xfa\xb1\xa5\x15\x0b\xe5\xf9\x6e\xf1\x9f\x2d\x1b\xc4\xce\xee\x0f\xf4\xfa\xf1\x75\x1d\x88\x36\x92\xb1\x8f\x1c\xd8\x2f\x39\x61\xd2\xca\x6b\x6d\xcf\x82\x29\x76\xbe\x64\xf0\x3e\xe1\xc4\xaf\xb5\x3d\x8f\x03\x5c\x5e\x92\x36\x90\xb6\xe7\xcb\xc6\x32\x6b\xba\xd3\x2e\x89\x6b\xa4\xcd\x35\x3e\xb4\xcf\xf9\xd2\x39\x17\x42\x7f\x39\x16\xe4\xd3\xdf\xd2\x45\x43\xe8\x2f\x39\xa9\xca\x91\x1e\x1e\x0a\x6a\x0b\x2e\x6b\x7c\x03\x06\x20\x47\xc7\xde\xcf\x40\x52\x13\xf2\xdd\xb0\xa5\x97\xef\xd6\xf6\xbc\xae\xe0\x29\x51\x26\x67\xc4\xcb\x41\x23\x67\xca\xaa\xb6\x04\x6d\xca\x43\x1f\x06\xf7\xd2\xf6\xdc\x47\xca\xda\x8f\xaf\x0b\x9b\xde\x7c\xad\xed\x79\xb5\x9a\x56\x86\xc5\x39\xa0\x35\xbe\x88\x64\x32\xee\x1c\xfd\xd3\xc3\x62\x3f\xfd\x48\xcd\xa7\xa4\x81\x0a\xf4\x5a\x73\x06\xbd\xc8\xec\x73\x9c\x9c\xb9\xb2\xfa\x1c\x03\x96\x66\xa3\xcf\xb9\xb3\x79\x64\xf4\x29\x3d\xcd\xe8\x80\x8c\x00\xf0\xd2\xfe\xac\x1c\xc1\xb2\x07\x95\x51\x03\x2d\xa1\x0e\x1b\xe9\x7c\xad\xfd\xf9\x91\xff\x5e\x92\xc4\x7a\x08\x46\xdb\xf3\x84\xfb\xc9\x6e\xd4\xf6\x3d\x3d\x4c\x41\x41\xd4\xca\x7d\x5a\x79\xfe\xf8\xea\xd7\x48\xd9\xda\x81\x35\xa4\x25\x99\x0d\x5b\xf5\x94\x13\x6a\xaf\x90\xf2\x6b\xed\xc0\xb6\xb7\x40\x87\x20\xbe\xd3\x06\x2c\x1c\x90\x2f\x6d\xc0\x0b\x4e\xfc\x5a\x1b\xb0\x9c\x9f\x56\xc4\x7f\xe0\xe7\x2f\x6d\xc0\x33\xf3\xa2\x30\x93\x12\x12\x99\x0e\xb3\x08\xb4\x36\x60\x84\xbb\x97\xe3\xb2\xb2\x91\x12\x98\x05\xf4\x94\xf9\x25\x90\x2c\x27\x23\xdf\xc9\x74\x02\x67\x7c\xcb\x42\x51\x18\xed\x5b\x02\x7f\xa4\x5e\x7c\x6e\x9c\xc0\x6f\x9d\x8f\x1b\xa2\xc9\x7b\x6d\xc0\x56\x3f\x35\xed\x2c\x6d\x40\x97\xac\xcc\xf9\x6e\xad\x5f\xb4\xa2\xb7\xf4\xe4\x12\xe1\xf9\xad\x03\xf2\x82\x7a\x71\xdd\x9d\xf9\x50\xc6\x6a\xe4\x9d\xf7\xda\x81\xad\xd6\x34\xb3\x58\x68\x24\x5b\x5b\x08\x47\x69\xdf\xf3\xe5\xb7\xb6\x67\x0b\xa6\x3e\x3d\x21\xe6\xf7\xda\x82\x65\xe8\xdc\x2b\xb8\xd8\x84\xcb\x02\xaa\x1c\x0a\xdd\x90\xfd\x10\x14\xc9\x0f\x21\x41\xa1\xd8\x17\x76\x5d\x29\x91\x79\xf9\xf3\x91\x9d\x61\x2d\x35\x65\xa4\x95\x06\x5d\xfa\x26\x73\x90\x05\x93\x62\x1f\xd8\xd2\xf1\x03\xca\xf1\x20\xad\xb3\xd8\x27\xb6\x1f\xfb\x06\x9a\x52\xe8\x2e\x9b\xe1\x16\xf8\x74\x2f\x6e\xf7\xc0\x48\x2b\x16\x57\xba\xc3\x79\xe1\xc5\xa5\x97\x29\x1e\xd7\x01\x84\xfa\x06\xf0\x76\xab\xae\xd8\x65\x01\xdd\x47\x03\x2a\x0b\x12\xc5\x16\xdb\xda\xbb\x42\xfa\x04\x9d\x82\x3a\xd0\x25\x28\xdf\x35\xd9\x2a\x2a\x50\x57\xd9\x01\x34\x64\x50\xdf\x80\xee\x55\x76\xa6\xcd\xa9\x9a\x03\xe8\x21\x28\xad\xc8\x0b\x50\x52\xf6\x52\xd9\x05\xf4\x16\xe4\x36\x65\x0c\xe9\x0a\xd3\x15\x64\xdb\xce\x09\x74\xa8\x66\x20\x8d\x8f\x79\x19\x38\x0f\x07\xe0\x90\xa9\x6e\x18\x35\x07\x7a\x6c\xb5\x05\x5c\x85\xfb\x15\x48\xad\x32\xa5\xb2\x7c\xf4\xfd\x3a\x80\x34\x6b\xe7\x05\x74\xba\x8f\x13\x50\xd3\x76\x05\x6a\x2e\xcc\x97\x9a\x37\x48\x45\x76\x8f\x6e\x19\x6f\x41\xb7\xaa\xf6\x01\x38\x0d\xa6\xee\xc3\x0d\x55\xc0\xa7\xfc\x52\xa9\xab\xa9\xfb\x8c\xeb\xed\x71\x51\x28\x49\x6b\xab\x29\x95\x95\x64\xab\x83\x91\xc9\xdd\x65\xeb\xfd\x82\xbc\x76\x0d\x48\x6b\x77\xa6\x1d\xad\xdd\x05\xb6\xf6\xe0\x9c\x81\x84\xc0\x95\x56\xb4\x76\x6c\xbf\xdb\xf4\x77\x7a\x06\xa6\x25\xfc\xec\x16\x29\xd2\x7d\xab\x81\xe4\x05\x85\xac\xac\x0f\xef\x0a\x94\x10\x28\xea\xec\x05\xe8\x72\x61\x03\x54\xa4\x78\x67\xaf\x48\x25\x5e\xa5\x03\x70\xb8\xb4\x02\xde\x06\xd3\xcf\x34\x98\x7e\x1e\x06\x83\xd3\x53\x6e\x3e\x0f\xe6\x61\xa7\x62\xaa\xca\x80\xb7\xb1\x7d\xa4\xdf\xf6\x0d\x72\x96\x7e\xbb\xa4\x87\x54\x95\x93\x11\x7a\x7e\xd8\xd1\xd6\xa1\x4b\x69\xaa\x7d\x63\xcb\x3c\x6c\x42\x86\x84\xa5\x9b\xf6\x8d\x0d\xeb\xc8\x93\x7d\x6c\x0c\x5b\xb6\xc9\x7d\xc0\x89\xa4\x9d\xb6\x33\x5d\x2a\xae\xff\x64\xa1\xa5\x81\xf6\x8d\x65\x90\x06\xda\xce\xf4\x2f\x0b\xd6\x3e\x76\x06\x39\xb5\x4d\xd8\xb3\x56\x25\x51\xd1\x16\xb8\xf0\x29\xc7\xb7\xfc\x7a\x55\x35\x3a\x74\xe9\x60\x7e\x2b\x7e\x0b\xec\x06\x53\x2a\xb7\x2b\xbb\x5f\xda\xe4\x2a\x64\xd4\x62\x22\x1b\xac\xc8\xd1\x2d\xfb\x38\x52\xd7\xc8\x17\x2f\xae\xad\xc4\xfb\x60\xfa\xa4\x35\x2e\xf0\x04\xd4\xdc\xd6\x40\xb2\xa4\xc3\x56\x9e\x26\x9a\xc1\x54\x4b\xff\x6b\x67\x4f\xd5\x5b\x63\x19\x40\x22\x8a\x9e\x3e\x5e\x9a\x12\x20\xf9\x62\xcf\x41\x2b\x0e\xe3\x18\xe9\xc3\x81\x1c\x83\xfd\x26\x4d\x6e\x81\x3b\xa0\xf0\x81\x3d\x5a\x65\xd8\x3b\x1c\xe9\x69\x1f\x3d\xdc\x42\x42\x7b\xbb\x3e\x90\x4e\xab\xe3\x00\xb2\x3f\x35\xdf\xbd\x35\x48\x37\x2a\xf1\x77\x35\x0a\x28\x27\xdb\xc6\xec\xbc\xa0\xe0\x06\x24\x6c\x8e\xd4\x14\x01\x33\xe9\x76\x2f\xee\xfd\xca\x87\xda\xf1\x6c\x8b\x97\x0f\x44\xce\x83\x97\x9d\xaa\x50\xec\xcb\xc4\x0d\x6e\x92\x2b\xbb\xdd\xa4\xc5\xae\xc4\xbe\x33\xab\x92\xde\xfa\x06\xb9\xbc\x4c\x93\xc7\x00\x72\x2b\xa9\xe9\xe0\x09\xb7\x62\xc9\x07\x6d\x6a\x81\x55\xdd\x07\x12\x03\x86\x8b\x4a\x4a\xe9\x5b\x09\x24\x06\x07\x57\x90\x94\xd2\xae\xdd\x88\xbe\xc5\xf2\x2d\xa2\x2d\xc8\x0c\xc4\xcb\x36\x14\xdd\xb3\x17\x7b\x91\x17\x68\x53\xb8\x47\x35\x36\x71\xaa\x66\xc7\x62\x19\x9b\x23\xc4\x86\x8c\x77\x0b\x7c\xb8\xf4\x02\x7c\xe9\x66\xca\x6e\x70\xb7\x95\x1a\xca\x1f\xbb\xcc\xd2\xed\x90\x5a\x55\xc6\xd1\x51\xf8\xdc\xf2\x21\x52\x6b\x36\xb7\x95\xe1\x2b\x35\x57\x33\x21\x8e\x43\xbb\xa6\x39\x38\xa3\x8c\xa2\x7d\xd1\x8b\x59\xe2\x28\xe2\x9f\xcd\xc6\xb9\x32\x8a\x03\xf2\x2c\x06\x96\x51\xb1\xaf\x5e\x80\xb2\xd9\x60\x7f\x2c\xc3\x81\xe6\xad\x98\x6c\x87\x82\xbd\x17\xe8\xd9\xb8\xac\x10\x14\x70\xbe\x34\xa2\x66\x63\x69\x19\x4d\x73\xd5\x1c\x97\x53\x86\xa3\x91\x5b\x31\x21\x8d\xe6\xab\x20\xdb\x45\xa9\x62\xdf\x5a\x31\x2f\xb6\x93\x6f\x6f\x75\xf3\xf0\xbb\xd5\xae\xbd\xb8\xe5\x21\x26\xdf\xaa\x99\xf3\x70\x20\x67\xab\xad\x00\x5e\x06\x1b\xe0\x30\xe8\x96\x6d\xc5\x6e\x1c\xb6\x43\xf6\x80\xbd\x9d\xe6\x46\xe3\xe9\x25\x3b\xcd\xb9\x86\x14\xf4\x05\x1a\x67\x6f\xb0\xd2\xbd\xe1\x87\xa5\xf2\x76\x06\xd4\x61\x5c\x77\xef\xdb\xf1\xf6\x6c\x9c\x8d\x52\x0f\xf0\x04\xc9\xb7\x38\x5b\x3b\x7d\x00\xde\xba\x55\xb6\xc0\x6e\x50\xc6\xc0\x30\xa1\x5b\x82\xe6\x02\x35\xcf\xf7\x4e\x65\x73\xff\x7b\x1f\xc6\xd9\x23\xba\xf7\xdb\x58\xf9\xa4\xb8\x0f\xdf\xa5\x59\xba\xd1\x77\x4c\xfd\xf6\x5d\xaf\x61\x2b\x59\xb9\xcb\xbc\x7f\xf3\xec\x94\x5b\xb7\x82\x76\x22\x51\x16\x78\x1b\x34\x8e\xa7\x51\xbe\xcc\x61\xef\x4b\x86\xd6\xcd\x11\x67\xe5\xbe\x7c\xa7\x85\xb9\xb9\x15\xb6\xbd\xc0\x66\xd0\x64\xd5\x76\x4a\xa5\xb1\x35\x5b\x46\xcb\x7d\xfb\xaa\x09\x12\xe9\x6d\x87\xc6\xb6\x9b\xaf\xdd\xd3\x91\x84\xbb\x97\xe8\xb6\xe3\xa1\xd9\xa1\xbe\x40\xe1\xec\x40\x8a\x72\x4f\x6f\x32\xdb\x47\xcb\x3d\x1d\x36\x5d\xcd\x06\x6f\x19\xc6\x57\x65\x77\x64\x5f\x61\x73\xc4\xcb\x02\x1f\x06\x8d\xf3\xc3\x46\x2e\x1b\x8f\xcb\x2d\xdb\xd1\xde\xba\x85\xe8\x5b\xd6\x9b\xbd\x35\x4b\xe6\xf7\xcb\x5b\xb0\x9b\xc3\xde\x2f\x2b\x5b\xf6\x3f\x2c\xd0\xdf\x32\x93\x52\xc1\xf7\xd6\xcd\xba\x6e\x69\xa5\xfb\x05\x53\xb9\xa5\xee\x2d\x70\x07\xf4\xb7\xde\x91\xf7\x5b\x1a\x4a\x63\x37\xdf\x6f\xdf\xae\x40\x60\x9f\x9b\x68\xff\x1a\x16\x2d\xe7\xe6\xed\x6b\x4b\x47\x99\x45\x2d\xb7\xe1\x69\x9f\xc5\x2c\x07\xd9\x60\xfa\x16\x59\xb3\x2b\x78\x81\x9a\xab\x21\x0b\x5c\x99\xba\x0c\xb5\x3a\x32\x78\x2a\x26\x00\x25\x6d\xfa\x82\x4a\x1b\x26\xd0\x79\x69\x5e\xfb\x66\xfd\x6b\x3a\x5e\x21\xa7\xcf\x74\x74\xc1\xd8\x3d\xaf\x53\x91\x5e\x7b\xb7\x7a\x5b\xa6\xf9\x42\x44\xa6\xd9\xad\x0e\x05\x8b\xe1\x1b\x4d\xa8\x72\xd3\x51\xff\xdd\xce\xc7\x05\x5e\x02\x7d\xe6\x4e\x47\xf1\x77\x2b\xea\x05\x27\x6c\xdf\xcc\xcb\x26\x61\xe7\xd5\x14\x6a\x87\xe8\xde\x37\x33\x91\xe9\xf8\xe6\xb3\x7a\xa3\xd8\x14\xbb\x77\xa8\x1b\x03\xe0\x35\xcc\x7f\x6d\xe5\xdb\xfb\xee\xa3\xd7\x86\xbd\x3d\xaa\x91\x8d\x1c\x7b\xe4\x72\x5b\x32\xf6\x8a\xb8\x8d\x1e\xde\x77\x06\xf8\xa6\x23\x33\x91\xf9\x1e\xcc\xd5\xaa\x5c\xfb\x36\x5d\x59\xda\x40\xed\xbb\x3c\xb1\xdd\x06\xa9\xda\x0f\xdf\xcd\xd0\x3d\xaa\x57\xed\xdc\x65\xac\x42\xa3\x12\xde\xd8\x6d\xab\xab\xdd\x57\xb3\xba\x3d\xe1\x0b\x7c\x0b\x14\xa7\xab\xdd\xa7\x02\x31\x3a\xb5\x5f\x62\x6d\xdd\x47\xd7\x02\x5d\x59\x36\xd6\xea\xf0\xbc\xbd\x1f\x12\xee\x17\xf8\x32\xe8\x96\x9b\xcd\xa3\x36\xd3\x57\x07\xd0\xed\xdd\xe7\xdc\x02\x5d\x79\xb8\xb2\x2f\x6b\x54\x47\x18\x54\x6b\x6e\xeb\x8c\x34\x56\xf6\x6d\xf6\xc2\x10\xcc\x09\xba\x2e\xc9\x08\x94\x69\xbb\x30\x04\x07\x2b\x74\x1b\xef\xab\x65\xe6\xbd\xfb\xac\xaa\xfd\x69\x62\x28\xcd\x23\x7a\x1b\x67\x5d\x65\x59\xa0\x36\x59\xd7\xcd\x94\x57\x1d\x9b\xe7\xca\xc4\xb0\x40\x3b\x51\x53\xea\x25\x73\xec\xf0\x02\x1f\x06\x4f\x83\xe2\x22\x5d\xf7\x33\x5e\x75\xec\x36\x36\x5a\xbd\x5f\xa0\x0e\xa7\x4d\x9a\x6a\x1d\xbb\x38\x41\xaf\x1f\xf0\x36\xa8\xe5\x1e\x87\x36\x68\xaf\x97\x9b\x3a\x3c\xb1\xeb\x9c\xfb\x86\xef\xaf\xba\x1e\xdf\xf0\x08\x8a\x89\xbd\x4a\xba\xa8\xc3\x97\x56\xfb\x79\x54\xc0\xa7\x41\x63\xe1\x4b\x98\xd5\x91\x0e\x75\xf8\xc6\x60\x3f\xbd\x26\x83\x5b\x58\x19\xee\xa5\x45\x68\x0e\x4a\xae\x43\xa7\xc2\xde\x4f\xfa\xbd\xec\x2f\xda\xa9\xac\x80\xa1\x25\x22\x77\x40\xb1\x63\x9b\x11\xeb\xe8\x26\xc9\x8b\x79\xed\xc3\x0e\x33\x53\xf7\x18\x16\x81\xec\x86\xab\x83\x8b\x3d\xba\x2b\xf2\xaa\xc3\xb7\x30\xba\xed\x41\x0b\xf4\xbd\xe6\xba\x03\xba\x65\x93\xf3\xb0\xce\xd8\xaf\xe1\x11\x3d\x7c\x6b\xd5\xae\xd5\x3a\xe4\xcf\xd8\x7b\xdb\x3d\x84\xb7\x23\x11\x0e\xe6\xca\xa7\x7c\x77\x40\x54\xbd\x37\x93\xa4\x03\xa7\x17\xf8\xb2\x49\x5a\x68\xdc\x8e\x86\x6e\xb6\xd8\x2c\x50\x8b\x62\xff\x67\xbd\x2d\xf2\x75\x7b\x27\xea\x7d\x99\xd1\x5b\x65\xae\xb7\xa2\x5e\xf7\x6e\xa5\xb3\xde\xcd\xa4\x31\x24\x3e\xd5\xbb\xab\xe5\x6e\xcd\xb2\xde\x8a\xdd\xdc\xbb\x4f\x94\x7a\x3b\xf4\xa0\x0f\xb0\xb2\xf2\x56\x9a\xb9\xc8\x2d\xfd\x6c\xef\x0e\xaf\xa9\xf7\x33\x6b\xe4\xa6\x2c\x90\x77\x07\x53\x2c\xd0\xfd\x0e\x4a\x07\xa5\xc6\xd9\x12\xd1\x59\x25\xf6\xd7\xe9\x9d\xd1\x6c\x77\xaa\x53\xa6\xb6\x7d\x38\xf6\xa9\xce\x4d\x68\x0c\x5b\x7b\xea\x2c\xdd\x86\x77\x6f\xfd\x59\x44\xec\x63\xf3\x6c\xcc\xa2\x05\x1d\xe6\xa9\x75\xfa\xce\xf5\x70\x6c\x45\x9d\xba\x2f\xb8\x0f\x9b\x9c\xeb\xec\x7f\xe5\xe0\x5f\x90\xc2\x18\x3e\x90\xe5\x6c\xcf\xc5\xec\x76\x6e\xb4\x7c\x28\x8b\xe9\x99\x32\xb9\xe6\xf7\x7c\x38\xe4\x57\x4a\x99\x5c\x16\xdb\x00\x92\xc7\xad\xa6\xa6\x99\xf6\x07\x7c\xfe\xf8\x2a\xa7\xb9\xc5\x14\xc3\x2b\x36\x75\x2c\xe8\x6d\x6c\xe8\x5f\xce\x79\x9b\xb8\x16\xa4\xf8\x23\x9d\x93\x0b\x02\x71\xda\xd1\x16\xae\x1d\x74\xc6\xa9\x0f\x0f\x20\xf9\x61\x4a\xa0\x26\x7f\x7c\x1a\x95\x1f\xd8\xdb\x66\x2a\x66\xb8\x58\xb0\x5c\xd0\x4b\x03\x4e\x4d\xc5\x16\x1d\x83\xaa\x6b\x05\xca\xc8\xf8\x6f\xbb\xb2\xe8\x42\x41\xd8\x56\x0b\x16\x34\x8c\x69\x03\xbc\x85\x1b\xc3\x70\x34\xce\xc1\xca\x75\x89\xe3\x04\xf6\x2c\xd0\xfe\x1d\x66\xce\x52\xe3\x01\x85\xf4\x75\x72\xd6\x2d\xc8\xea\x0c\xd6\x15\x60\x41\x4b\x84\xdc\xb7\x2c\xa4\x3c\xe1\xdb\x08\x64\xad\x2d\x93\x6e\x57\xdb\x15\x68\xc8\xc5\xc3\xb4\xca\xb6\x6f\x3d\x7d\x41\x72\xae\x8d\x94\xbd\x3f\x01\x1f\x75\x0e\x22\x45\x3a\x50\xf9\xf1\x55\xac\x81\x2d\xa8\x3a\xde\xab\x02\x4a\x99\xab\x03\xc8\xbb\xa2\x04\xec\x56\x2a\x2e\x40\x45\x79\x6c\xe3\x5b\xa6\x3e\x87\x08\xcb\x21\x74\x0b\xf2\xbe\xdd\x81\x14\x6a\xc5\x88\x87\x45\x3b\x87\xe6\x2d\xf0\xfc\xf1\x75\x55\x66\x59\x97\x35\x6b\xb6\x92\x6e\x6b\x1e\xa7\xb9\xdd\xd4\x75\xcd\xba\x6f\xa9\x39\x3e\x31\x2e\x0b\xba\x7f\x0b\x6a\x5b\xe0\xc3\x2b\xc0\x38\x06\xea\x0f\x90\x90\x3b\x53\x26\x47\xcf\x41\x8f\xeb\x84\xac\x57\x86\x21\x67\xf2\xbe\x35\x3e\x54\x58\xc6\xbe\xb1\xcc\x03\xd2\xaa\x4c\xec\x14\x4d\xc2\x6e\xa4\x55\x94\xa3\x83\x8f\x64\xa5\x61\x63\xf9\x02\x75\x04\x04\x59\x49\x30\xd5\xae\xb5\x3a\x7d\xb9\xf1\x82\x7d\xe8\x42\x63\xdd\xb7\x1d\xe8\xb7\x50\x9e\x05\x5d\xda\x05\x29\x93\x4f\x0c\x1e\xa5\xc0\xbd\xa3\x41\x9f\x92\x2f\xeb\xbe\x05\x9a\x8a\x4e\x0a\xf4\xf8\x04\x04\x2d\xe8\x69\x64\x1a\xe0\x4b\x1f\x02\x99\x09\xb0\x5f\x65\xd8\xde\x07\xa4\x63\x99\x75\x94\x94\xd9\x9c\x48\x17\x8e\xe1\xb3\xe3\xa4\x3a\x86\xef\xd8\x37\x08\x42\xa6\xec\xfa\x1b\x34\x04\x6d\x40\xd2\xb7\x7c\xee\x4c\x9b\xae\xf7\x03\x54\xbd\xaa\x8e\x0a\xa8\x53\xc7\x2c\xb1\x66\x0b\xd2\xbc\x41\x81\x8e\xe0\xe3\x54\x99\x37\xb6\xce\x7c\x77\x29\xf0\x07\x54\x75\x6a\x5c\x9d\xb5\x90\x8f\x7e\x6b\x20\x23\x0f\xe1\x68\xe9\xe1\xed\x51\x00\xae\x23\xb2\xee\x7b\xa0\x22\x08\xbc\xc5\x01\x1c\x32\x57\x13\x8b\x57\xe0\xd7\xf7\xbc\x3f\x41\x57\x0b\x9a\xbf\x85\x63\x56\x02\xf5\x1a\x92\xb1\x23\xf3\x8e\x02\x06\x0a\xcc\x3b\x4e\xa6\x6a\x9a\x52\x2c\x29\x10\x97\xd7\xb2\x56\x52\x63\xab\x2f\x64\x54\xc7\xe5\xd5\x7d\x4f\x59\x53\x34\x4e\x9a\xe9\xfe\x30\xed\xc8\x19\x77\xe5\xc3\xe9\x88\x44\xa0\xa7\x9a\xb9\x80\x44\x2a\xd0\xad\x0c\x1f\xe5\x64\xe7\xe8\x52\xe7\x5e\x0b\xc7\xd7\x54\xd8\xc9\x0e\x2b\x9b\xf2\x6b\x67\x39\x24\x48\x1f\xbd\xa6\x4c\xf1\x69\x47\xbe\xeb\x3a\xbd\xd2\xe8\x90\x87\x1f\x44\xad\x3f\x3b\xca\x7f\x81\xd3\xab\x53\x00\x9f\x3f\xbe\xae\x33\x8d\x0a\xd3\x23\x35\xdf\x82\xa8\x78\x83\x29\x85\xb7\x03\xf2\x18\xb0\x6e\x4c\xed\x1b\x07\xdd\x14\x7b\xe8\xec\x71\xc5\x0a\xd6\x8d\x55\x9d\xa6\xb1\x8b\x1e\xe1\x1c\x9f\xaa\xd3\xb8\x32\xac\x5b\xf3\x78\xa4\x13\x45\x24\xd6\x40\x50\x19\x0d\x59\x10\x3b\x40\xc0\x91\x5a\xbe\xcb\x50\x1d\x59\x78\xac\x93\xe5\x5b\x76\x6d\x5b\xc4\xd8\x6b\x1a\x3a\xdd\x10\x93\x60\xd1\x9f\x43\x69\x4e\xaf\x41\xaa\xae\x33\xe1\x18\xa0\x2e\x37\x5c\x69\xf9\xce\xcc\x63\x0f\x3e\x2f\xe3\xce\x7a\xc1\xe7\xd8\x14\x76\xd8\x14\xce\xf0\x87\x6f\x15\xc3\x85\xa4\x2f\xad\x2f\x3b\xa0\x3c\x05\x9f\x42\x26\x73\x00\x0e\xa1\x97\x42\x19\x54\xa1\x57\x3b\x64\x6a\xd9\xd3\x09\xc2\x50\xea\xca\x00\x85\x68\xf4\x48\x7e\x1b\x20\xd1\xef\xc5\x87\xf2\x10\x17\xce\xd7\x87\x2f\x0b\x42\x69\x0a\x54\x3c\xf6\x8d\x19\x91\x27\x67\x75\x49\x1f\xb6\x10\xa1\xbc\x12\xab\xb8\x47\xaa\xb2\xf7\x66\xec\x50\xbb\x6d\x40\x05\xe9\x44\x26\xa0\x6a\xc7\x61\x75\x44\x62\xb1\x4d\xb2\x3a\xee\x6f\x7d\xc8\x38\x6f\x9f\xb7\xec\x76\x45\xf7\x15\xe5\x11\x59\x90\x39\x13\xbb\xc6\xd1\x7d\x63\x67\x7f\xcb\x09\xb3\x10\x4a\x5d\x05\x64\xc0\xa8\x1f\x08\x32\x41\xc8\x82\x0c\x9b\xd8\x5e\x98\x76\xb0\xa9\x24\xc8\x1f\x67\x10\x92\x13\xa6\x64\x32\xc5\xe2\xf6\x91\x32\x16\x25\xa0\x62\xde\xb2\x26\x0e\x45\x86\x2e\x1d\xd3\xd7\x0e\x4e\x6e\x87\xf1\xed\x91\xba\x9e\x50\x09\x9c\xc3\xa1\x7b\x1b\x34\xac\xf0\xbc\x63\x40\x8a\x4f\xc7\xb9\x32\x7b\xf6\xcf\x5c\x68\x37\xc4\xe7\xd5\x02\x3f\x7c\xda\xb1\x71\x05\x7a\xe9\x08\xc8\x97\x72\x3a\x42\xef\x4f\x5f\x61\x86\x1d\x10\x76\x77\x06\x02\x39\x9a\x19\xe2\x15\x2c\x89\xbd\x35\xb5\xc0\xac\x09\xbc\xab\x69\x55\xd7\x16\x61\x9d\x4f\x73\x40\xc4\x0a\x05\xde\xad\x09\x49\xab\x43\x02\x7c\x0a\x75\xca\x23\xbc\x29\xf2\xae\xea\x6e\xbe\x20\x49\x44\x35\xfd\x9b\xe3\xa4\xfb\xc5\x0f\xcf\x2b\xdd\xcb\xca\xd5\xd2\x68\x18\x22\xad\x22\x12\xc1\x75\xad\x90\x36\x07\x62\x57\x07\xca\x55\xd4\x35\x07\xca\xad\x96\x98\xbb\xdb\xc1\x7f\x1c\x98\x8a\x78\x3b\xf6\xc8\x73\x0a\x79\xab\xd1\x53\x9e\xa6\x59\xa4\x09\xf9\xaf\x56\x55\x1a\x72\x8c\x0d\x9b\xe6\xe9\xa8\x9a\x10\x81\x8f\x5a\xd4\x0d\x85\xae\xad\x0f\x03\x5a\x4a\x3c\xd2\x89\x66\xa8\xa4\x1d\x31\x07\x44\x3f\x07\xa8\x61\xcd\x72\x48\xda\x6a\xa7\x00\x5a\xfd\x61\x35\x5f\x36\x6e\x21\xbf\xbd\xac\x3b\xee\x30\x77\x47\xa5\xb5\xe3\xca\xa7\xc2\x0f\xe1\x57\xa6\xd9\xba\x97\x94\x81\xed\xf7\x46\x14\x87\xa9\xc5\x64\xe4\x30\xb5\xba\xed\x69\xf5\xe1\x76\x4e\x40\x07\xa3\x07\x3d\xa6\x3d\xa0\xa6\x1d\x0d\xd4\x77\xf2\xf7\xc8\x7b\x8a\x54\xab\xd1\x73\x15\xa9\xd6\x0b\xd2\xaf\x22\xd5\x56\xd5\x80\x0a\x8d\x61\xa9\xe5\xfe\xab\xa1\x36\xdf\x47\xa9\x51\x64\x5e\x96\xe3\x51\x33\x15\x9d\xb6\xda\x49\x27\x1a\x17\xc4\x67\xe7\xe0\xd5\x53\xe6\x8d\x19\xc8\x3c\xef\x4c\x97\x5a\xb0\x1d\xee\xe4\x8b\x88\x98\x51\x08\x49\x2b\xf0\x18\xc5\x84\xd5\xf0\xf6\x97\xe3\x30\xd3\x8c\x64\xbc\x93\x13\xf5\xe5\x30\x69\x58\xf0\x6b\xb2\xec\x34\x23\xee\x78\xc2\x48\x1d\xce\x35\x38\x78\x5e\x18\x01\xd2\x0e\x74\x98\x05\xb2\xdb\xab\x70\xa4\x2a\x16\xab\x5c\x40\x18\x39\x58\x1f\x19\xe0\x8f\x8e\xac\xf2\x76\x60\x3f\xb3\xf3\x0e\x69\xa5\xea\xe5\x4e\x1a\x60\x37\xd8\x01\xc5\x91\xaf\x74\xb2\x38\x72\x19\xa9\x6a\x79\xe4\x0a\x68\xfa\x81\x3b\xc9\xe8\xdf\x0b\xdb\xf6\x6d\x31\xaf\xa6\x4f\x9f\xe9\x9c\xbe\x8a\xa4\xaa\x59\x92\xb7\xc9\x87\x09\x7a\x63\x33\x80\xaf\xbe\x31\xa7\x42\x6a\x72\x8b\xd6\xc8\x23\xb2\x3c\x1f\xbd\xa4\x1d\x11\x4c\x4d\x4d\x71\x39\xb6\xd7\xdb\x5c\xae\xa6\x51\x63\x7e\xa4\xf0\xa9\x89\x0d\x02\xe6\x30\xa0\xaa\xeb\x95\x17\x4b\xfb\x96\xdf\xea\x4c\x33\x96\xf3\x22\x21\xbe\x15\xb3\xd8\x3e\x1f\xfa\x44\xcf\x4c\x8a\x8d\x95\xa0\x63\x2e\x96\x15\x99\xde\x4e\x48\x76\x6f\x1d\xbd\xa5\x65\x58\x90\x13\xda\x85\xbc\x27\xa5\xb0\x13\xdf\xe2\x6a\x75\xa4\x21\xed\xa7\x2b\x1f\x76\x5d\x5d\x02\x59\xfb\xcd\x3e\xdf\x31\x03\x05\xd0\x12\xd9\x91\x76\xb4\x78\x10\xf0\xdb\x97\xec\x25\x94\x9e\x64\x96\xd8\x6c\x0c\x39\x1d\xeb\xb6\x28\xb8\x00\x4a\xf3\x3c\x53\x68\x7c\x3a\x50\x73\x9f\x15\x50\xaa\xa7\x64\xe6\x05\xdd\x2e\x4c\x2f\x16\x5c\x52\x68\x81\xec\xcc\x97\x6b\xbd\xcc\xd8\x17\xf4\xf2\x79\x11\x0c\xde\x3f\xbe\x4e\x1b\x92\x4e\x67\xbb\x58\x03\x03\x21\x93\x9a\x08\xf8\x74\x64\x5e\xf9\x20\x3b\xac\x0a\xe9\x08\x3f\x9d\xf4\xa2\x3a\xe6\xea\x74\xa2\x8b\x7d\x5c\x69\x95\x91\xa4\xd0\x72\x42\x07\x3d\x4b\x6b\x57\xda\x31\x1d\xa6\xcc\x42\x4d\xd9\xbe\xe3\xdd\x27\xa9\x32\xda\x91\x19\x52\x9c\xed\x6e\x01\xed\x74\x84\x60\xb7\xe3\xfa\x74\x80\xe0\x61\xc5\xe9\xec\xdb\xed\x61\xf2\xa1\x22\x20\x4a\xb0\x13\x95\x2a\xe5\xa6\xa0\xa5\x62\x8d\x93\x59\xbf\xbd\x7a\xac\x97\x7d\x24\x17\xf3\xea\xc8\x77\xa5\xc2\x13\xa8\xcd\xf6\xf9\x50\x07\xfa\xa7\xaa\x87\x9c\x2e\xa6\x6e\xe8\xa4\xcc\xd2\x6a\x90\x59\x02\xc6\x96\x29\x77\x2c\x42\xc9\xda\x65\x5b\x80\x8e\xa5\xcc\x3d\x08\xc4\xfd\x0c\xe4\xbb\x13\xf9\x92\x59\xf6\xe4\xec\x56\x21\x20\x90\xdd\x61\xab\x0d\x7a\x56\xf6\x8f\x5e\xfa\x00\x92\x42\x7e\x05\xa2\xcb\x03\x50\x12\x57\x6f\x40\x92\xb8\xda\x06\xa4\xf9\x68\x15\xc8\x79\x0d\x52\x66\xda\x2e\x41\x00\x6a\x0e\x02\x16\x5e\x5b\x4a\xc5\xe5\x77\x50\x37\xa7\x4c\x59\x48\x94\x5e\x64\x41\xdd\xa1\x8f\xdd\x87\x69\xcb\x87\x2c\x57\xbe\xf4\xc9\x92\x19\x31\x51\x36\x30\xd0\x9d\xa6\xed\xd3\xce\xdb\xe8\x51\xf5\xf6\x2a\x14\x46\x2d\xdf\xd0\xc8\xe2\xee\x37\x18\xd1\x12\xde\x11\xf0\xb3\xdf\xc1\x3c\x67\x81\xde\x35\xa5\x03\x5a\xca\x2a\xf9\x54\x84\xd1\xd2\xae\x89\xbd\xb0\x10\xd3\x2b\xc8\x97\xc8\x79\x95\xe9\x9d\x4e\x50\x92\xaa\xba\x4c\x75\x30\x18\xf1\xc7\x2d\xf3\x67\x9a\xc9\xf4\xe5\xf0\x4d\xab\x5e\xc1\x40\xca\xc9\xc2\x32\x1c\xdd\xcb\x30\x80\xe8\x7f\x07\xd4\x32\xf4\x40\x3e\x5e\x6b\x05\xb4\x24\xce\xb8\x0e\x48\xa1\x9e\x80\x3a\x79\xa0\xcc\x03\x73\xe8\x99\x6e\x7c\x68\x32\xf3\x07\x42\x17\x6c\x0f\xcf\xda\x79\x00\x49\xae\x1a\x1b\x90\x4f\xfc\x1e\x90\x75\xe8\x80\x3a\xf1\x59\xb2\x43\xba\x41\xbd\xd2\x89\x08\xe3\xf3\xe1\x74\x97\x29\x7c\xb8\x1d\xf0\x43\xb2\xba\xa8\x0c\x65\xc0\xf7\x8e\x50\x06\xe8\x12\x49\x94\x59\xba\x6d\x79\x0d\xf4\x94\x7e\x02\x46\x98\x2b\x32\x2b\x53\x06\xab\x0f\xa4\x0d\x0a\xdb\x53\x42\xdf\xea\x08\xaa\x05\x59\x0f\x05\x1f\x85\xca\xd7\x20\x8b\x68\x75\xa6\x19\xd3\x17\x6c\x19\x5f\xe3\xe6\x71\x16\xeb\x8f\xd9\xa0\xc5\x16\xb3\x9e\x42\x9b\x44\xae\x6f\xaf\xd1\xaf\xba\x56\x7b\xc0\xb6\x10\x7b\x94\x66\xad\x18\x7f\xda\xf5\xe4\x42\xd4\xc5\x86\xf2\x0f\x46\xe6\x11\x23\x85\x8b\xdb\xfb\x6e\xd8\xb9\x56\xdd\x0c\x8d\xba\x36\x3b\x8c\x1d\xc8\xf2\x37\xbb\xd9\x5e\xd4\x76\x8c\x03\xf0\xd4\x2d\xc8\x7c\x29\x0e\xc2\x2e\x53\xce\xe2\x5e\x3e\x35\x9d\x2a\x66\x4b\xa1\xae\xf7\xb0\xaf\x8a\x2d\x65\xec\xc0\x82\x88\x0d\x19\xdb\x0d\xc6\x8d\x82\x05\x5a\x68\x82\x6a\xca\xad\xf5\x4c\x2f\x3a\x8e\xf6\xd0\x50\xf1\x79\x94\x51\xc3\x4e\x6a\x0a\x75\x57\x07\xe1\xa2\xdc\xf6\xcc\x5d\xe9\xc5\xba\x7a\x4d\xbb\x52\x64\x33\x27\xba\xe3\xb8\x7f\x10\xf2\x36\xab\x80\x4e\x83\xe6\x04\x5c\x0b\xb4\x1d\x04\x96\x56\x1c\x45\xd1\xb2\xa2\x0e\x0a\x3a\x32\x65\xd3\xbb\x90\x6e\xa6\xb1\x67\xb9\xa7\xf9\x02\x47\x54\x99\x3a\x31\x47\x9a\x35\x5b\x08\xf6\x32\x9e\x5d\x99\x6b\xbc\x9b\x97\x1b\xaa\x18\xfe\x1b\x50\x31\x42\x03\x50\x92\xff\x91\xc2\xcb\x85\x1d\xd0\x0c\xef\xba\x00\xbb\x07\x5e\x01\x8d\x51\x0a\x7d\x84\xc2\xa8\x2a\x72\x14\xcc\x47\x09\x9b\x8f\x9c\xaf\x55\xa2\xd2\xc1\x66\xae\x3a\x95\x0e\x76\x61\x35\x4d\x21\x2d\x12\xad\x75\xa4\x13\x24\xf6\x02\xe4\x2d\x9a\x71\x8a\x15\x1d\xdb\x01\x04\x3e\x8c\x6c\x58\x54\xa8\x8c\x4c\x24\x57\xd9\x3b\xca\x5f\x55\x9d\x6c\x61\x41\xde\x01\x10\x8a\x12\x2c\x97\xce\xde\x76\x26\xe5\x3d\x07\x6c\xe5\x64\xe1\x84\x50\x0a\xe5\xa2\x9c\x9c\x82\xbc\xf3\x39\xd5\x95\x45\x79\xd5\xa5\xa5\x44\x3f\xa6\xb4\x09\x87\x14\x9a\x3a\x11\x74\x2a\xcc\x08\xde\xa8\x0c\xca\xd5\x2e\xe7\xd3\xa9\xb1\x6a\x76\xbe\x72\x28\x13\xc8\xb0\xa0\xf7\xe7\xae\xf5\xd9\x95\x2b\x99\xbc\x0a\x0b\x72\x5a\xba\x94\x79\x9b\x71\xee\x10\x01\x31\x02\x39\x70\x28\x1f\x9e\x32\x56\x55\x20\xdd\xe7\x64\x31\x9d\x1a\xf9\x62\x7b\x2a\x00\xe7\x68\x2c\xad\x92\x23\xef\x03\x9a\x3d\x6d\x69\x18\x81\x9c\x4a\x2f\xc8\xf8\xe2\x77\xda\x94\x26\x0d\x0d\x28\x2a\xab\x44\x30\x51\x4c\xcf\x42\x9b\x0f\x75\xe6\x1d\x2c\xba\x52\x81\xd5\x03\x21\xf7\x84\xb3\x71\x28\x9f\x26\x42\x34\x06\xe7\x09\xbb\x1a\x5b\x51\x29\x93\x17\x98\x52\xeb\xbc\xfd\x6f\x90\xc2\x95\x46\xb9\x84\x5d\x39\x75\x72\xfd\x34\x0b\xeb\x00\x85\xdb\x56\xf7\x01\xf2\xb7\xd1\x65\x46\x6e\xf3\x06\x66\x59\x77\xd8\x72\x30\x38\x25\xf2\x1e\x11\xe2\x24\x62\xf7\x4a\xa9\x66\x1d\x56\xa6\x04\xc8\x25\x6c\xd9\x29\x90\xc7\x95\x56\x25\x4e\xb3\x81\x14\x17\x5b\x0f\x18\x85\xb3\x1d\x5f\xe9\xdf\x8c\xab\x64\x29\xa7\xb5\x38\x44\xc0\x13\x5b\x19\xfd\x8b\x73\x75\xa4\x07\xc7\x2d\x34\x24\x64\x25\x3a\x2e\x36\x01\x2c\x68\x38\xec\x86\x71\x38\x4a\xe3\x43\x13\x0e\xe9\x08\x76\xb6\xfa\xe7\xec\xbe\x4c\xcb\x7b\x07\x3a\x3e\x99\x02\x16\x04\xb2\x3b\x20\xc8\x16\x40\x4d\xe5\x99\x2f\x9d\x69\x34\x55\x95\x9b\xe0\x48\x1f\xe2\xb2\x88\xae\x97\xad\x19\x65\x4b\xa1\x68\xf4\xc8\x87\x92\x0f\x3e\x65\xe0\x9a\x1e\xb5\x0b\x0f\x20\x25\x54\x3c\x38\xd5\x2f\x69\x98\x07\x3a\xae\x72\xd0\x95\x6b\xa4\x4c\xd9\x09\x8e\x40\xf6\x5a\xa7\x15\x87\x29\x6f\xf9\x70\x28\xed\xf3\x05\x24\xd3\x4a\x9a\x71\xde\x60\x18\x84\x52\x3e\xed\xd5\x96\x85\x05\x6a\xe6\x4a\x20\x66\x2e\x5f\x6a\x8f\xa0\x50\x5d\xa2\xc1\xe8\x41\x0a\x9b\xae\x07\x8a\xb2\xa2\xa6\xcb\x89\xe2\x73\xe9\x46\x72\x4e\xe5\xcb\x51\xa5\x05\x9e\xa4\xa0\x9f\x7a\x20\xa5\x2a\x59\x54\x3d\x10\xf9\x2f\xf3\x48\x54\xb6\x4b\x07\xe2\x01\x21\x29\x93\x54\xe9\xc1\x54\xfc\x72\x63\xfb\x5e\xe1\x97\x69\xe6\x36\x08\xaa\xd3\xa2\xd2\x99\x66\x95\x48\x02\x41\x4f\xf1\x5a\x4b\x94\x01\x32\x3f\x41\xf9\x6d\x70\x45\xc6\xdc\x08\x37\x84\xa3\x34\x67\x25\x81\x15\x29\x52\xbc\x1e\x35\x65\x6b\x13\xd4\x2d\xed\x80\x5f\xaa\x8a\xcc\x10\x4c\x94\xa6\x6a\x31\x9b\xd4\x9d\x62\xa8\x07\xd0\x43\x82\x53\x10\x90\xb7\xe6\x4a\x99\x35\x2f\x78\x76\x73\x38\x51\x78\x61\x1b\xe0\x4e\x9f\x76\x87\x46\x2c\x6d\xce\x75\x81\x48\xe8\xf4\xdb\x23\x0c\x45\x69\xb6\xeb\x01\x07\x51\x9e\x6d\x82\x1b\x17\x64\xf7\x38\x08\xf1\x16\x02\x7c\xa1\xa1\x0b\xb2\x49\xdb\xbd\x7d\xd2\x72\x2c\x68\xd7\x5d\x4d\xda\xb9\x2d\x19\x41\xa4\x8a\x93\x5b\xe8\x81\xbc\x38\x5c\xdd\x03\x2d\xd2\x1f\x5b\x20\xcf\x5e\x3e\x54\x02\x11\xf8\x6d\xd3\x1d\xb0\xc2\xb9\xd5\xc4\xdf\x8e\x7a\x7d\xcf\xb6\x1b\xb6\x04\xe4\xfd\x66\x22\xe5\x20\x69\x8e\x67\x3d\xe8\x63\x32\xb1\x03\x90\x3d\x13\xd0\x3e\x18\x34\x85\x66\x1a\xe6\x60\x6b\x84\x41\x83\xfa\xb4\x82\x3b\xd2\xee\xda\x43\x47\xc8\x49\xbc\xb1\x64\xcc\xd3\x86\xd5\x34\x2a\x83\x56\x56\x4b\xd6\xb7\x83\x43\x45\x81\x61\x25\x92\xa1\x63\xbf\x4e\x6a\x2a\x84\xae\x1e\x6c\x7d\x87\x21\x8f\x70\x29\x65\x21\x2b\x67\x4f\x61\xd3\x7d\xee\x0b\x48\xe1\x44\xd0\xa4\xf3\x3e\x9e\x5b\x3a\x14\xb1\x9c\xe9\x42\xc8\x30\x8d\x0e\xef\xea\x0c\x82\xf0\xae\x58\x9d\x9c\xf8\xb1\x16\xf8\x6b\xf7\x81\x8c\x82\xaa\x68\xaf\x5e\x46\xbe\xf4\x1d\x0d\x24\x02\x87\x7b\x6d\x47\x3e\xf4\xe9\x3c\x52\xf8\x14\xe9\x80\x1d\xea\x03\xe7\x5f\xf7\xcd\xf0\xa0\x2e\x8e\x76\xed\x29\xbb\x3c\x1f\x15\x50\x12\xd9\x19\x88\x1d\x72\x02\x0e\x45\xe5\x80\x9e\x0c\x58\xc7\x99\x32\xdb\x22\x33\x77\x3e\x56\x51\xa8\x74\xd9\xb5\x7c\xd0\x31\xf7\xcb\x0c\x4c\x16\x04\xec\xa6\x43\xdc\x52\x28\x62\xe1\xd8\x72\x7c\x57\xbf\xd2\xa8\x76\xc4\xa7\xcc\x6e\xd1\xb4\x62\xc9\x2a\x90\x6d\x49\x90\x9c\x43\xba\x36\xd8\xe6\x30\x79\x5c\x29\xf3\x8e\xe4\x34\x56\x48\xd7\xd1\x8f\x40\x24\xf0\xea\x80\xea\xb2\xa6\x70\xad\x40\x2b\x29\xd3\xe9\x87\x76\x37\xbc\xca\x08\x20\xce\xa8\xdf\x0a\x87\x9a\xc2\xb4\xca\xd5\x53\x88\x10\x76\x01\xb2\xcc\x29\x35\x8f\x67\xd5\x07\x2f\x03\xd0\xa7\x4d\xa1\x61\x6f\x0a\xd4\x6a\xb1\xe3\x28\x50\xab\x1e\x57\xfa\x34\xc7\x67\x4f\x3a\xdc\x7e\x64\x81\x46\x4e\x4b\xb0\x77\xcc\x38\xc6\x8f\x61\xed\x13\xab\xae\xc2\x73\x4b\x49\xb3\x28\x9f\x99\x4c\xf3\xac\xcf\x87\xa2\x97\x2b\x5d\x82\x6c\x40\xab\x6f\x99\xf7\xdb\x11\x03\x14\xca\xc6\x79\x66\x5c\x8a\x16\x8c\x79\xcf\xc9\xf4\xeb\x07\x12\x69\xa1\xc5\x28\x9d\x7e\x3d\xa0\x17\xe5\xd3\x3f\x22\x93\x0d\x4b\x68\x65\x4f\xa1\x98\x26\x5a\xcb\xb0\x06\x41\xd5\x1b\x4b\x07\x4b\xe2\xb4\xf8\xad\xc0\xa6\x49\x01\xc7\xb1\xe1\xd4\xf8\xad\x20\x4f\xde\x21\xa7\x80\x8e\x28\x4f\x43\x5d\x7d\x9e\x40\xda\x5c\xe7\xb7\x37\x38\x57\x55\xa8\x20\xed\x40\xde\xe9\xc4\x43\x31\x89\xdc\x16\xb5\x38\x83\x6f\x2b\x07\x08\x85\x37\xbc\xe8\x4a\x55\x4d\x17\xe2\xed\x8d\xac\x05\xff\xd7\x3d\xe8\x63\x8f\xd4\xaa\x58\x32\x32\x4a\x9d\xbe\x06\xdd\x0b\x9b\xcf\x37\x9d\x07\x8b\xe7\xac\x85\x51\x49\x75\xcf\xb9\x6e\x08\x57\x0e\x25\x6b\x05\xd1\xf3\xf6\x71\x18\x6d\x56\xc1\x64\xbd\x72\xca\xde\x36\x8c\x46\x61\xbd\x9d\xc8\x09\xa1\x49\x37\xa4\x4b\x0c\x55\xb7\x73\x9e\x23\xeb\xf8\xde\xf3\x99\x31\xdb\x5e\x1e\x3d\xf2\x76\xe8\xe9\x9e\x42\x85\x1d\xc1\x36\x6e\x9f\x62\x1c\xeb\x8e\x34\x8b\xba\x71\x5b\xe3\xe4\x88\x71\xb2\xc5\x8f\x5a\xe9\x64\x8b\x15\x29\x59\x71\x66\xbd\x6e\x81\xb4\x1e\x1c\x3f\x8a\x2c\x2b\x0d\x22\xf4\xfd\xa8\x3d\xba\xea\x94\xcc\xbe\x21\x5e\x4e\x9b\x4c\xa3\xd8\x29\xd0\x8c\xd0\xb6\x05\xd9\x4a\x71\xa5\xee\x90\xaf\xee\x04\xf2\xf5\xbd\x0f\xe8\xd0\x01\xc8\xc5\x81\x67\x11\x74\xa6\x55\xcb\x68\xa1\xc4\x9a\x6d\xe9\xc6\xe1\xa6\xe5\x08\xa8\x6c\x1d\x9c\xac\x04\xa2\x45\xb9\x54\x24\x5a\xc9\x94\xf8\x4a\xc7\xd5\x46\x40\x1d\x33\x9c\x2b\xbc\x46\x90\x91\xc9\xd6\xda\x5a\xca\xa6\x66\x2f\x8d\x3e\xdc\x07\xd3\xe7\x53\xaf\x06\x59\xb1\xb8\x1e\xe4\xe4\x22\x80\x08\xa6\x85\x32\x4e\x80\x49\xd0\x79\xb0\xd1\x71\x79\x95\x40\xe2\x21\x88\x8c\x13\x12\xa5\x51\x28\x14\x56\x34\xad\x0e\xf4\x7c\xd8\x9c\xcd\x0f\xa8\xbb\x2a\xe3\xb8\x1d\x9d\x34\x82\x8f\xb7\x53\x56\xfe\x66\x5c\x74\xea\x14\x29\x61\xab\x0e\x4d\x1b\xb1\x16\x39\xe9\x5d\x4e\x88\x69\x96\xc7\x4e\x9c\x93\x45\x00\x25\x93\x30\x7c\x7d\x4e\x48\x08\x1c\x60\x81\x47\xea\x4a\xda\x0a\xfa\x52\x4b\xaf\x16\x7c\x6d\x5e\xbb\x82\x9f\xe2\x7c\xe9\xe4\x01\x81\x17\x20\x45\xee\x1c\x29\x3b\x14\x10\x3b\x80\x8a\x07\xb2\x03\x4a\x12\xa9\x29\xd4\x64\x72\x24\x29\x75\xc0\x92\xb1\x53\x55\xbc\x92\x31\x3f\xec\x54\x3f\xe0\x4d\x24\xc9\x1b\xe9\xf2\xad\x84\x76\x94\x39\x2d\x1e\xc3\x70\xb4\xd9\x08\x87\x79\xd8\x3a\x12\x7d\x56\xe1\x66\xf5\xd3\xa5\x48\x36\x86\x54\x05\x9b\x95\x86\x3a\xf7\xf0\xb1\x1c\x9d\xf9\x61\xa3\xdc\xf9\x37\x88\xdc\xa4\xcd\xfb\x20\x30\xdd\x0e\x73\xe7\x94\x5e\xfd\x83\xbb\x44\x8a\x4c\x9e\xb4\x8e\x3d\x5a\xf3\xc3\x5c\x36\xfc\xd0\xa9\xf3\x72\x0c\x3d\x6e\xdb\x31\x1a\x50\x51\x9f\xa9\x59\xb5\x5c\xcc\x33\x14\x7d\x04\x54\x3e\x2e\x76\x8d\x33\x10\x8c\x30\x4b\x85\xc2\xd5\x68\xdf\x0f\x38\x29\x2c\x58\xb1\x70\x35\x4a\xb4\xd3\x13\x8c\xe3\x03\x1a\x03\x66\xcf\x11\x92\xf1\x37\x2b\xda\x8d\x28\xe9\xd3\x29\x07\x4a\x45\x9f\x73\xca\x81\x86\x40\xe1\x68\xb7\x08\x09\x0e\x76\xdb\x0f\x18\xa4\xa3\xdd\xc6\xf1\xe9\xc4\xba\xcd\x15\x70\x91\x6c\x26\x5a\xc1\x6f\x35\x7a\x86\xb2\x11\x90\xf4\xf0\x74\x32\x82\xbd\x15\x74\x6e\x45\xc2\x1d\x0d\xa2\x50\xda\xba\x1a\x61\x5e\x71\x71\x35\x4a\x90\xe2\xe2\x8e\x5a\xd3\x85\x64\xe7\x9a\xef\x9c\x3b\xf1\x00\xd2\x2c\x7f\x5a\xb1\xd5\xf6\x0a\x36\x56\xdc\xd9\x6b\x8a\xa0\xab\x11\x16\x1d\x17\x17\x1b\xae\xe3\xe2\x3a\xcc\x89\xb0\x38\x44\x45\x87\xc5\x5d\x23\x65\x4a\xa9\xd7\xf2\x5d\xd7\xd5\x08\x7a\x30\xf5\x1e\x25\x5d\x28\x27\xd2\x95\x66\x4c\xa1\x25\xe0\xe3\x93\x11\x72\x41\x2f\xe1\xc6\xc4\x89\x04\x1b\xa4\xfd\x44\x88\x44\x88\x7a\x3a\xc7\x78\xcf\x3c\xca\x07\x3a\x62\xc0\x7d\x72\xc1\x13\x0c\x6e\x33\xa6\x20\x74\xff\x96\x77\x72\x41\x9e\x9e\x0c\x25\x24\x0a\x46\xb7\x31\x4a\xb3\xca\xd5\x93\x95\x9c\xbc\x4f\x02\xc4\x53\x73\x40\x87\x36\x05\x7d\x4c\x07\x0a\x31\x66\x29\xb7\x57\xd6\x55\x66\xbf\x01\xd5\xeb\x4a\x68\x8d\x90\xe4\x5c\x6f\x71\xd6\x3e\x2d\x31\xfc\xd6\xa1\x8f\xe1\xcc\xa4\x2c\xd8\x65\x4f\xa1\x42\x35\xcb\x95\x4f\xc9\xbf\x98\x76\x7d\x59\xd6\x63\x54\xc4\x1c\x99\x37\x17\x64\x1e\x06\x11\x28\x62\xae\x74\xf4\xa7\x97\x35\x96\x9c\x50\xc4\xab\xc5\x0a\xa4\xb0\xb3\x5e\x59\x03\x12\xa4\xe5\xe8\x77\xd8\x59\x44\x33\xc5\x99\x95\x01\x6d\x39\x0b\xda\xc8\x51\xff\xb2\x56\x02\xfd\x3a\xb2\xec\xea\x5b\x0a\x75\x27\x2f\xb8\xeb\x1c\x2e\x6c\x43\x85\x92\x1d\x7b\xcc\x47\x5c\x9f\xce\xfc\x29\x85\x59\x8d\xd8\xa2\x34\x14\x84\x79\x2d\x48\x11\xb2\x30\xb8\x97\xd3\x3d\xd7\xb4\x7a\x1b\xbb\x80\xde\x5e\x08\xc4\x0a\x51\xdb\xe3\xf5\x7d\x99\x5e\x8e\xbf\x81\x73\x13\xbf\x96\xb3\x5f\x89\x30\x6a\x9c\x48\x2f\xe8\x87\x51\xfa\x06\x27\x87\xce\x8b\x04\x09\x59\x21\x3b\x60\x63\x08\x53\xac\x5b\xcd\x21\xfc\xe2\x4c\x2e\x01\x7d\xce\xc0\xd6\x5f\x93\x91\x31\x25\x9c\xd1\x29\xb4\x10\xca\x2c\xbc\x9d\x6a\x20\x7e\x68\x67\x3c\x18\x11\x38\xde\xb6\xf1\xb5\x40\x62\xcf\x47\xaa\xf6\x4f\xf6\xd6\x05\x39\xa3\xdf\x09\x24\xb3\x1d\xf6\x0a\xc5\xba\x95\x8e\x26\xef\x50\xb7\xc6\xc6\x74\x3e\xb1\x0a\x35\xf9\xa1\xa0\x38\xca\xde\x48\x99\x38\xd5\x14\xaf\x76\x24\x76\xea\x8d\x7a\x9c\x71\xe8\x0e\x43\xd6\xdd\xc1\x6c\xf1\xf6\xbf\x87\x95\x00\xb0\xe1\xde\x52\x0b\x38\x85\x40\xa0\xa7\x16\x88\x21\x72\x96\xd6\xb4\xa3\x83\x2d\xed\x58\x1b\x8e\x98\xf4\x76\xb6\x70\x8c\x3b\x0e\x67\x6b\x10\x93\xa2\xd9\x48\x6d\xbb\x20\x72\x5d\x00\x39\x03\x45\xca\xac\x1a\xb7\x14\x5a\x9b\xa9\x29\xd5\x11\x08\x85\xbc\xa5\xdb\x8c\x4c\x9d\x44\xc5\x01\x2b\x78\x3b\x97\xfc\xc8\x77\x0f\x1d\x39\x4c\x8e\x2c\x7f\x9f\xc9\x31\x69\xb3\x99\x14\x4c\xb7\xc7\x15\xe8\x60\xba\x8e\xa8\xac\x58\xba\x23\x3a\xe2\xdb\x91\x22\x30\x6a\x45\xd2\x7d\x84\x0e\x52\x61\x7c\xd6\x71\x3a\x3e\xbf\xa5\x54\x63\xfc\xb4\x2a\x09\x8e\xbd\xfd\xf6\x63\x8f\x5b\x20\x49\x41\xa6\xf2\xa1\x47\xa0\x12\x31\xe1\xbc\x2d\xc7\x8e\xc1\x6e\x6c\xf6\xdd\x7a\x18\xc3\x91\x74\x0c\xd8\xf7\xb7\x0f\x67\x7a\x5a\x90\x32\xdf\x95\x94\xdd\x4a\xb9\xda\x80\x48\x78\x0f\xa4\x6b\x5a\x5b\x3a\x94\xab\xcd\x68\x0f\x47\xca\xf9\x22\xd8\x82\x94\x6e\x3a\xa8\xe9\xea\x02\x51\x3e\xc3\xef\x42\x8d\x06\x9e\xc3\xa9\xfd\x36\xba\x18\x16\x75\x8f\x94\x5a\xde\x3f\x69\xd6\xd7\xc3\x47\x1a\xd2\xba\x55\x66\xc3\x59\xb4\x71\x57\x8d\xcd\xc9\x5b\x4f\xc6\xef\xdc\xea\x1b\x65\xf0\x4f\x6f\xc7\xb1\xc1\x3f\x2b\x23\x71\x52\xd6\xcc\x0e\xa1\x69\x2d\x0d\x59\xbd\xaf\xa0\xe0\x33\xf6\x03\x99\xcf\x1c\xf9\x54\x79\x67\xae\xf4\x22\xba\xaa\x69\xc7\x5b\xf9\x64\xd8\xa8\x2a\x07\x75\x1d\x5d\x8e\xfc\x36\x36\xf3\xba\xe0\x47\xe6\xe2\x7c\x39\xc4\xd1\x99\x69\x39\xf7\x31\xe1\x0e\x65\xe4\x8b\x0f\x7e\x28\x21\x9f\x62\x40\xbe\xe3\xd9\x63\xf3\x39\x5a\xd3\x85\xf6\x00\xaa\xe5\xd8\x2d\x04\x32\x3f\xbb\xaf\x7d\x9a\xd3\x8e\x1d\x6f\x9a\xf7\xe7\xd8\xd1\xcc\x6d\x60\x18\x8a\x71\x2b\x17\x14\xba\x3b\x64\x13\x4b\xe8\x50\x90\x5b\xf1\x75\xc9\x05\xe9\xa8\xfc\x34\xeb\x74\x8c\xf9\xf0\xe1\xc9\xca\x87\x8e\x2f\xfd\x7c\xe9\x79\x0e\x06\xcc\x33\x85\x92\x03\x33\xeb\xbb\xef\xc9\xf8\xbe\xd8\x02\xcd\xdd\xcc\x97\xc7\x6e\xee\x96\xba\xb7\xc5\xdb\xe0\x80\x39\xcf\x36\xcd\x91\x68\xb4\xc6\xa7\xb0\xa9\x13\x24\x74\xea\x66\xfd\xf6\xdb\x72\xe3\x95\x96\xa4\x3f\x96\x34\xc4\xa9\x1b\xd0\xe6\x3e\xe8\x7f\xf7\xe1\x99\xc1\x58\x75\xc8\xe4\x2a\x76\xb7\xa5\x4b\x3c\x0b\x2d\xa0\x64\x82\x4f\x33\xa2\xa7\x20\x60\x59\x2c\xcb\x60\xf9\x2a\xe3\xc2\x04\x9c\x2e\xbc\xe3\x19\xa4\xa5\xab\xce\xa6\x72\x18\x1b\xc6\xcf\x41\x18\x1b\x86\xd3\x71\x20\x6d\x5d\xa9\x5b\x85\xc0\x0e\xe4\x93\xdd\x42\xdc\x38\xac\x1d\x7c\xbe\xf4\x65\xc8\x2d\x85\x4c\xde\x05\x78\xaf\xe3\xc9\x87\xd5\x38\x14\x18\x40\x74\xdc\x38\xe4\x74\x25\xf2\x70\x1c\x50\x89\x05\x98\x71\x98\x4a\xce\x14\x7a\xa9\x29\x93\xee\x8b\x51\xc8\x59\x26\x56\x8f\x0d\x50\x52\xe4\x19\x88\xa8\xab\xd4\x35\x19\xb0\xff\x14\xd3\xd6\x39\xcb\xc7\x61\xe3\x31\x56\xd6\xe1\x0c\x98\x2d\xf4\x75\x20\xf7\x77\x5a\x92\xab\xb5\x64\x4a\xe4\x5b\xe5\xbc\x18\x87\x05\xbc\x20\x44\x4a\xaa\x33\x85\xcd\x9b\x83\x09\xf2\x09\x09\x5b\xd6\x33\xf8\xbd\xee\xe9\x12\x76\x95\x86\xb4\xf2\x99\x2f\x85\x4c\x96\x0f\xb2\xcc\x5e\xbe\x74\x56\xac\x33\xe8\xad\xe9\xc3\x54\x37\x8e\xf0\x32\x3e\xb5\x07\x0c\xe6\xef\x24\x1d\x95\x03\xe5\x40\x6c\x83\xa0\x0f\x6b\xb4\x59\x5b\xee\xa8\x76\x06\x86\x1e\x90\x99\x97\x10\x37\xf0\x29\x3b\x21\xd8\x87\x07\x1c\xe4\x1e\x65\x3d\xe5\xf3\x0a\x07\x3f\xb8\x02\x68\xb1\x69\x14\x67\xd8\xa3\x19\x25\x12\x2b\x7e\xa6\x64\x41\x5a\x04\xcb\x1e\x83\x6c\x41\xd9\x1a\x05\x1a\xce\x87\xac\x7c\xbe\xd4\x9e\x82\xdc\x4b\xf7\x22\x6c\x40\x22\xe1\x2d\x65\x3e\xe1\x3e\xed\x30\xd1\x0d\xd0\x0a\x4d\xe1\xd3\xe1\x86\xbe\x37\x76\x8f\xe2\xd0\xda\x23\x9d\xf2\x0a\xd6\x0e\xa4\x81\x05\x59\xb1\xa7\xca\xc9\xa4\xe8\xb6\x42\x20\xa1\x1f\xb5\x5a\x08\xe4\x43\xf3\xa3\x2b\xad\xea\x48\x61\x85\x1c\xfa\x16\x1a\x71\xe8\x5b\xcb\x26\x2f\x64\xf4\x67\x57\x29\xd6\xad\xec\x50\x22\xa1\x6e\xd9\xf3\x84\xb3\x61\x8b\x1f\xc5\x52\x4f\x16\xcc\x2c\x09\xf3\xc5\x28\x3e\xd5\x7a\x20\xb3\xf0\x16\xf0\x2d\x7a\x37\x7e\x8e\x5f\x23\x44\x60\x38\xff\xcf\x40\x7d\x1f\xd5\xef\xda\x31\x25\x8a\x66\x3b\x4e\x18\x82\x83\xd9\x06\xca\xfc\x50\x30\xdb\xc2\x36\x75\x6d\x31\xe9\x69\x57\xbc\x04\x3e\x53\x2d\xfa\x40\x08\x0e\x66\x0b\x7b\x50\x30\xdb\x6a\xf6\x04\x54\x12\x50\x36\x6e\x65\x1f\x97\x80\xac\x43\x03\xf4\x31\x61\xef\xdf\xa8\x9e\xf9\x41\xbb\xce\x1b\x0d\x63\x71\xd8\x59\x45\x44\xf1\xc3\xfd\x3b\xde\x93\x51\x6d\x60\x1a\x29\xb4\x5c\x3a\xc0\x5d\x72\xe9\xf8\x4c\x98\x77\xe7\x00\x21\xb9\x11\x43\xa7\x7e\x9a\x7f\x47\x16\x1e\x95\xf4\x7c\x57\x4a\xad\x62\xb5\x80\x6b\x91\x3a\x87\x91\x03\xcd\x32\x7b\x0e\x34\x6b\xe1\x3b\x0a\x26\x3b\xba\x8d\x9b\xe3\xb4\x15\xc9\x76\xac\xe1\x67\xf6\x2b\xa7\xea\x49\xce\x3f\xe8\xfd\xe4\x9c\x68\x69\xc7\x3a\xce\x48\x9f\xe2\x16\x23\x75\x41\x6f\x00\x3a\x1b\x83\x97\xcc\xef\xec\x5f\xbe\x0b\xb5\x40\x33\x37\x24\x5b\x3f\xb0\xdf\x61\x34\x84\x7e\xa1\x24\x0f\xc5\x73\x55\xa2\xa9\xc6\x69\x69\x75\x80\x90\x5e\x1d\xbc\x20\xbe\x93\x0b\x8e\xa9\xea\x0c\x76\xd8\xd9\x9c\x92\xf0\xb3\xd6\xe4\x16\x0b\x9f\x3e\xed\x88\xc6\x16\x30\x14\x16\x55\x09\x25\x19\x8a\x8a\xaa\x68\x6f\xe3\x74\x06\xbe\x1c\x23\x0a\x92\xaa\x18\x34\xc7\xe9\x60\x16\x3c\x2c\xc3\x21\x53\x38\x91\xc6\xe5\x6b\x0d\xc4\x30\x8f\x0b\x53\x1f\x44\xa4\x10\xaa\x8a\x59\x6e\x28\x82\xea\x68\x4c\x90\x42\xa6\x7a\xdd\x53\xb3\xa9\xe6\x01\x64\xef\x8b\xad\x23\x7e\xce\x6e\x1f\x2d\x85\xb7\x10\x08\xe4\x38\x97\x20\xe7\x1d\x37\xd2\xaa\x2d\x0c\x48\xa4\x17\xde\x16\x68\xd1\x2f\xdb\x0f\x6c\x01\xe3\xc2\x76\x0d\xcf\xba\xb0\xde\x20\xea\x3a\x6e\x6a\xc7\xc3\x32\x14\x38\x55\x31\x6f\x8d\xcb\x0f\xb9\x20\x6a\x3b\xa9\x1b\x21\x56\xe3\xe2\x7d\xf9\x0e\x24\x2e\x9e\xf9\xf1\xd3\x2d\x99\xbc\xe1\xc3\xf2\xdb\xa7\x1b\xce\x71\xdd\xe0\x4a\xff\x37\xb8\x82\xba\x33\x20\xb1\x53\x14\x54\x55\x73\xb4\x5f\xd2\x4b\x22\x79\xe8\x79\xbe\xa3\xb5\x94\x49\x15\x2e\x69\x54\x5b\x35\x0b\x7d\x63\x84\x4a\xa3\xc6\x1c\xc8\x17\xff\xb3\x40\x98\xaa\x39\x36\x78\xbb\x0f\x29\xc4\x19\xd1\x5a\x38\x5d\x43\x1a\x84\x5b\x34\xfc\x19\x6c\x5d\x85\x46\xd5\xba\xa7\xf0\x14\x74\x02\x41\xde\x29\x14\x01\x81\x42\x83\x11\xf7\x80\x66\x42\xb0\x12\xe7\xd5\x6b\x39\x8f\x9a\xaf\x72\x11\x98\x3a\x1a\x54\x02\x1d\x34\xc2\x4d\x58\xc0\x86\x1a\x5a\x03\x0a\x43\x94\x52\xe5\xf5\xac\x39\x55\x14\xff\xb4\xaa\xa6\x5d\x6d\xb9\x3d\x1f\x7a\xcb\x41\x4f\x0d\x0d\x03\x36\xd4\x4c\x0a\x48\x1b\x0d\x0d\x23\x93\xa4\xc5\xc7\xe5\xe2\x97\x05\x2b\x81\x2a\xa3\xdd\x0c\x3c\xa0\x8f\x44\x8e\x2b\x87\x27\x8d\x28\xcd\x0d\x79\x0c\x19\xb5\xc1\xd5\x39\x1e\x14\x57\x54\xeb\x91\x42\x9f\x74\x2c\xa3\xe2\x8a\x6a\x45\x40\x54\x24\x51\xad\xa8\x5d\x8e\x24\xaa\x47\x6a\x9a\x7d\xc0\xc1\x08\x17\x8a\x6e\xe7\x47\x63\x07\x12\x61\x87\x55\x7f\xea\xc2\x06\x2e\x40\xc5\x32\x31\x9d\x1d\xf1\x08\x1e\xd1\x9d\x2e\x21\xea\x9c\x73\xa0\xb5\x9c\x08\x9d\x65\xda\x81\x2e\x41\x29\xb3\x97\x01\x14\xfc\xa4\x29\xa7\x69\xc7\x92\x0f\x3f\xe9\x8a\x68\xab\x1c\xc4\xdd\x11\x91\x99\xeb\x8e\x01\x80\xb3\xa3\xf3\xd4\x1a\xe8\x65\x21\x52\x57\xeb\x9b\x5e\x26\xc8\x52\x57\xe7\x32\x51\x90\x43\xd9\x9b\x6a\xe5\x3c\xe8\xce\x88\x70\x64\x4a\xe4\x5f\xc7\x69\x3f\x88\xfc\x89\xfe\xe8\xd4\x4e\xf5\xd3\x8e\xcd\x15\x30\x29\x85\xfe\xd4\x5a\xd2\xa5\xed\xcf\x57\x1a\xf2\xcd\xe6\x3d\x0d\xd9\x2f\x34\x82\xae\x49\xf7\x83\x83\x5f\xd6\x83\x51\x0c\xcc\xa4\x54\x1e\x6c\x70\x4e\xb7\xe1\x87\x11\x6b\x0a\x25\xce\xe1\x20\x1c\x23\xcb\x9f\xba\xc3\x0d\xa7\x74\x1a\x3c\x00\x65\x1c\xfd\xb4\xe4\xe5\xbf\x52\x68\x12\x4c\x43\x60\xe8\x39\x1c\xd2\xe2\x2a\x82\xfd\xd0\xdb\x08\xc4\x93\x8f\x01\xd7\xff\x80\x7e\x11\xef\x02\xb2\x72\xc3\x14\x3a\xc8\xa7\x7d\x06\xee\x8d\x08\xf7\x24\x72\xa7\x7e\x7f\x5d\x7e\xd5\xf5\x9b\xb6\x69\x96\x61\x9f\x80\xe2\x29\x25\x85\xa2\xc0\x92\x32\xb1\x14\xc4\xb0\xe1\x08\xd9\xcf\x7c\xdd\x8c\x1a\x84\x94\x3c\xe3\x84\x23\x3a\x76\x67\x2f\xe9\x44\x5b\xff\xcc\xb1\x30\x1c\x43\x58\x53\x28\xe7\x1a\x92\xc3\xed\xf3\x9f\x23\xf5\xb6\x1d\x07\x47\xe4\xb8\xd9\xdd\x57\xea\x8a\x02\x91\x40\x78\xbd\x91\x03\xf5\xf6\x15\xb5\x2c\x8a\x93\x40\xe1\x6e\x1d\x4e\x02\xb5\xe3\xc2\x1c\x0e\xc8\x69\xbf\xa1\xa0\xdd\x03\x7a\x8e\xb2\x89\x05\xd3\xb9\x9d\x3e\x92\x8d\x12\x36\xb5\xeb\x4c\xa1\x84\xbd\x08\x24\xe4\x68\xca\x4c\xfb\x0d\xc6\xab\x33\x09\x44\xdd\xc4\xf8\xa0\xb0\x9b\xfa\xc1\x5e\xef\xc6\x94\x54\x95\xde\x1d\x81\xf3\x46\xf0\xba\x02\x36\x8f\xa5\x03\x32\xee\x94\x0e\x77\xca\xc0\x6f\x06\x0e\xfa\x3e\x66\x21\x72\xbf\xb1\xf8\x39\xca\xfd\xc6\x62\x8b\xf8\xe0\x37\x16\xaf\xfe\x29\xf5\xb4\xd0\x90\x79\x01\x4c\xce\xef\x2f\x8e\x58\x2e\x1c\x7b\x53\x39\x15\x6e\x6b\x4a\xb8\x64\xc7\xf4\x7a\x33\x83\x8e\xb6\xa9\x9c\x18\xce\xea\x54\xcf\xd4\x94\xb4\xc7\xf1\x31\x93\xb6\xba\x03\x8a\xdf\xc0\xf6\x27\x5b\x7b\x4f\xab\x7a\xdc\xb5\xa5\x1d\xcf\x01\x93\x3b\x31\xea\x5d\x69\x88\x45\x1b\x80\x7e\xfd\xee\x02\x62\xcd\x28\xf4\xe5\x45\xbc\xc4\x43\xd1\x36\xb5\x62\x27\x98\xc3\xe8\xd2\xac\x02\x68\xea\x99\x0f\x15\x1d\xc1\xb1\x3e\xf1\xce\x05\x3f\x99\x9e\x63\x3c\x75\x2e\x27\xa2\x06\x06\xf1\x34\x78\x97\x87\x33\xad\x7e\x64\x16\xde\x73\x1c\x81\x9c\x7e\x3b\x13\xcd\x6b\xb4\xe0\xea\x88\x9a\x68\xba\xce\xe6\x34\xa0\x30\xc7\xd0\x7c\xe4\x83\x09\x49\x65\xc2\x1c\x39\x1a\x55\x77\xe2\xd0\x45\xc8\x9b\x26\x29\xce\x08\x05\xc6\x1c\x5b\xe6\x16\x81\x80\x43\xcb\x71\x31\x7b\x50\xd0\xd1\xc3\xf5\x8c\x31\x2d\x00\x5c\x29\x73\x00\x1d\x03\xf3\x53\xb9\x67\xca\xb4\x5b\xe1\xa8\x0f\x93\x13\x7c\x5a\xf1\x2b\x85\x6b\xf3\xe3\x61\x71\x0f\xe6\xe1\xb7\x2e\x46\x14\x52\x07\xac\x54\x36\x95\xf3\x2a\xd5\x2b\x65\xec\xeb\x06\x28\x26\x79\x05\x32\xfd\xb4\x7c\x29\x59\x85\x11\x3f\x48\x9d\xea\x65\x7f\xd8\xa2\x87\x0f\x79\x28\x79\xd2\x7e\xf4\xef\xef\x5c\xfa\x85\xdf\x5a\x3f\xed\x98\x09\x21\xeb\xf9\x45\xc8\xca\x3c\x3e\xac\x3a\x40\x4c\xce\xa3\x54\x59\x1c\x5e\x76\x8c\xc2\xf9\xd7\x8f\x39\x9e\xc3\x11\x29\x3b\xbe\xf1\xe1\x90\x94\x32\xd8\x8b\x0f\x87\x28\xe3\xc5\x1e\x0f\xbf\x12\x1b\xb9\x50\x4f\x66\x54\xa2\x3a\x87\x9e\xcc\xc8\x75\xe0\xf1\x20\xb0\x8a\xe9\xb2\x04\x19\xda\x7a\x38\xae\x0a\x77\xe1\x78\x20\xc7\xf4\xe0\xa0\xa4\xae\x7b\xfa\xb4\x78\xd9\x03\xfa\x00\x0a\xbe\x22\xb5\xc1\xee\xf3\xd3\x89\x44\xa5\xf8\x09\xe4\xd5\x8b\x31\x72\x34\x49\x65\x16\xc8\xa4\x04\x91\x3c\xa3\xce\x03\xe9\x3d\xbf\x9e\xef\x1e\xee\xb1\x00\x9a\x55\x80\xc0\xd3\xac\xa2\xe5\x4b\x91\x25\x03\x21\x59\x12\x42\xcb\x13\x47\x14\xcd\x0c\xfa\xbf\x00\x6d\x2a\x0d\x64\x8e\x83\xb6\xa0\x20\x8d\x5a\x3f\x10\x5f\xd2\xac\x13\xc1\x43\x24\x8a\xd8\xe8\xa1\x59\x05\x6c\x1c\xe3\x48\x99\xcf\x0c\x04\x98\x27\x1b\x1c\x59\xdc\xf1\x1b\x95\x69\xf6\x8b\x7f\xdb\x95\x32\x6f\xfe\xcc\x08\x9b\x1f\x45\x91\xb4\x46\xe5\xd3\x8d\x39\x50\xe6\xcb\x51\x72\x91\xdc\x49\x6c\x44\xdc\xce\x70\xb2\xee\x8b\xfb\xbf\x83\xec\x45\x64\x66\x18\x4f\x3c\xe9\xe8\x28\x7e\x7a\xaf\x45\x41\x70\xfa\xa2\xab\xc3\x20\x9e\x1c\x31\x59\x52\x73\x08\x50\x26\x9d\x11\xc1\x2a\xc3\x4f\xec\x5d\x08\x59\x2f\x14\x44\x34\x39\xa7\x28\xaa\x3d\x55\x3d\x2f\x17\xd0\x74\x72\x71\x20\x48\x83\x4e\xbc\x5f\xc1\xf6\xe5\x48\x4b\x22\x49\x86\xdf\xb2\xdb\xe3\x79\x71\x86\xa0\xc1\x55\xff\x41\x4e\x20\xfc\xc0\xc3\xb1\x1a\xad\x32\x4b\xaf\x41\x3f\x20\x61\xd3\x3e\x8e\xe8\xe1\x68\x8d\x1a\xec\x6f\x46\x0a\x16\xbe\xca\xce\x1e\x7d\x79\x03\x07\x07\x0b\x97\xe8\x16\x2f\xc8\x03\xa1\xf0\x05\x79\x64\xc6\xec\x46\xe2\x4e\xf7\x78\x59\x80\x44\xb3\xd4\x23\x73\x3d\x9c\xe9\xc5\x8e\x4d\xbb\xf2\x22\x55\xd4\x2f\x05\x5d\xd4\x9a\x61\x4b\x01\xfc\xa8\x7c\x04\x47\xc4\xd9\xf7\xf6\x8e\x45\xba\x74\xf8\x43\x45\xf9\x7a\x5b\x0a\x44\xbb\xd1\x5b\x6b\x3d\x7b\xd2\x0f\x95\x84\x4b\x39\xfc\xa1\x95\x94\x59\xea\x63\xee\x1c\xf1\x70\x42\x42\xce\xed\x73\x75\xb6\x8f\x33\xf4\x54\x4e\xd6\x37\xf6\x53\xc6\xfc\x36\xff\x1d\xdf\x66\x8a\x5d\x55\x9b\xfb\x04\x59\x45\x67\x45\x14\x7a\x0f\xc6\xcc\x28\xad\x0e\x44\x34\x57\xcc\x43\x82\xda\x87\x62\x1e\xca\xc9\x06\x7e\xb3\xd2\x08\x72\x8a\x72\xa8\x27\x34\xed\x28\x87\x8b\xe8\xcf\xe4\xcd\xae\x9f\x4f\x4d\x7d\x2c\xca\x3b\x8b\xcb\xdc\xda\xfd\x12\x65\x86\x37\x0f\x22\x71\x2b\xba\xe0\x38\xa1\x0b\xc7\x0f\xc4\xd6\xaa\xf8\x81\x55\x95\x76\x15\x25\xf8\x41\xd0\xb9\xca\x7b\x9a\xf1\x66\x4e\x9f\x56\x07\x33\x6c\x6b\x83\x91\xbf\xdf\x6c\xed\x0f\xe8\x33\xc0\x3b\xdd\x6f\x7b\x94\xe6\xe5\xbe\x37\xc7\xb2\x7a\x76\xef\xcd\x9e\x40\xfc\xe0\xf7\xc6\xeb\xb6\x1f\xd0\x39\xbf\x53\x57\x97\x43\x2d\x53\xdc\x8e\x5a\x20\xe7\xda\x02\x2d\x5c\x96\x94\x9a\xfe\x3b\x90\xd2\x6b\x59\x47\xba\x37\xc7\xbd\x12\x29\x70\x6f\x68\x91\x83\x2f\xc5\x07\x48\x76\x71\x2b\xc1\x4e\xe5\xf6\xd2\xbd\x39\x8c\x0f\x6b\xc4\xed\x88\x83\x73\xcb\x87\xa6\x8c\x20\x04\x13\x38\x41\xde\x36\x5d\x68\xec\x76\xda\x1c\xe7\xdb\x5d\x50\x95\xb3\xbb\x01\x59\x95\x18\xa9\x6a\xea\xac\x29\xb5\xa1\x31\x85\xa6\xce\x93\xa1\x2d\xde\xde\x38\xf1\x6f\x9e\xeb\xeb\xe0\xa7\x6c\xc0\x57\x6a\xfa\xc6\x07\x4a\xe5\xbd\x99\x68\x76\x70\x9f\x7e\x96\x96\x09\x9a\x16\x0e\x32\x5f\xbe\x23\x94\x81\xc8\x0a\x44\xb8\xf6\xbd\x71\xa4\x33\x7b\x8a\x0d\x28\xc4\x97\xdd\xca\x86\x53\x37\xc6\x6c\x97\x7e\x43\x8f\xb8\x77\xbf\xc4\xee\x8d\x74\xef\x2c\x58\x3e\x34\x4f\x00\xf5\x3d\x0b\x96\x86\x7c\x18\xe7\x53\xc4\x7f\x6b\x24\xb7\x5c\xfc\x47\x03\xf7\x5d\xee\x5a\x62\xe4\xef\x7d\xf1\x8f\x42\x12\x80\x7b\xe7\x00\xb0\xd2\x73\x2b\xab\x4d\x81\xe0\x6f\xbd\x25\x51\x48\x67\x70\xef\x4e\x64\x92\x91\x28\xd4\x93\xfb\x0e\x37\x61\x03\x9f\x32\x90\x63\x24\x7a\x2f\xaa\x65\x20\xf2\xbb\x39\x4b\xdf\x82\xe0\x08\xb4\xc3\xb2\x67\x2a\x2d\xaf\xe1\x63\xbd\x77\x1b\x9a\x36\x70\xd5\x45\x6d\xe7\x18\x5b\x10\xf3\xc3\x98\xc5\xdf\xcf\x2d\x90\xfb\xe4\x43\x27\x8c\xeb\xf4\x31\xe9\x03\x84\x24\xed\x3b\xd7\xf5\x82\x7c\xc6\x95\x14\x2a\x14\x6d\xa4\x90\x61\x1a\xf7\xa3\x43\xec\x0d\xd0\xcf\xf5\x9b\xf5\xdd\x87\x3d\xa7\xec\x46\xa7\xb4\xc1\x70\x7e\x1f\x8e\x3e\xea\x47\xaa\x7a\xab\x9e\xdf\x73\xf1\xfb\x40\xf0\x63\x86\xf4\xdc\x47\xb9\x2a\x0d\x39\x19\x09\x8a\xdf\x2d\xcf\xfc\xc1\xc3\xd2\x0b\xd4\x05\xb5\x3d\x5f\x76\xa3\x0b\x82\x4e\x59\x64\x96\x79\x1f\x98\x0f\x4e\x46\xaa\xd4\x58\xc8\x52\xb7\x7c\xfa\xf5\x4c\x3b\x37\x9d\x54\x40\x3f\x03\xcf\x87\x18\x7c\xd8\x63\xe4\xac\xa9\x41\xc8\xf9\x00\xd9\x8e\xf2\xaf\xf3\x1a\xf9\x79\x93\xb3\x06\x2d\xec\x3e\x1c\x33\x79\xd0\x89\xc2\x3e\x4e\xb6\xbc\x3d\xe8\x67\x26\x93\xf5\x4c\xcd\x5b\x10\x4b\x34\xdd\x21\xc8\xd9\xa9\x4a\x7c\xfd\x2d\x8f\xf9\xb1\xc1\x86\xed\x14\xbf\x18\x47\x41\x4e\x67\x67\xe0\x15\x47\xf1\xbb\x0b\x96\x22\xb6\x58\xf1\x5a\x5b\xa2\xbd\xe5\x15\x3f\x06\x7c\xad\xc0\xcf\xaf\x80\xe6\x07\x81\xf4\xca\xfa\x1e\xc8\x6b\xc0\xc4\xda\x2b\x1e\x6b\xd9\xed\x1c\x35\x31\x40\xdd\xca\x51\x53\x4f\xe6\xa7\x10\x5f\x16\x14\x24\x11\x9e\x2c\x9f\x33\xd6\xc4\xcc\x75\x2b\x63\xcd\x91\x85\x2f\x21\x99\x0e\xd8\xf4\x25\x03\x1b\x9e\x68\xf0\xf3\xa1\x71\x30\x25\xd8\x9f\x3e\xed\x3c\x54\x18\x64\xcd\xbf\xaf\x80\x5a\xe9\x3d\x7d\x88\x9c\x0a\xe8\x38\x7f\x64\x0f\xb2\x48\x17\x59\x15\xbb\x0b\x6a\x66\x5a\xa2\xe3\x59\x52\xe8\x79\xa7\x59\x48\xaf\xa6\x21\xdb\x32\x98\x20\xc5\x42\x86\x80\xe4\xc3\x3f\xb8\xfd\x78\xcb\x87\x5f\xb1\x51\xdf\xca\x5e\x73\x5c\x30\x0b\x3b\xf4\x89\x77\xbc\xed\xcf\x0f\x2b\x2d\x53\x2f\x25\x87\x26\x4c\x86\x25\x65\x22\x43\x8e\xed\x2a\xdb\xd2\xc9\xa6\xa8\xbe\x80\xc5\xaa\xd7\xee\x9a\x03\x48\x37\x9a\x98\xff\x8a\xa0\x6f\x01\xe4\xae\x10\x08\x73\x23\x1f\xfc\xe7\x24\x96\x0f\xbe\x9e\x35\x90\x19\x83\xf5\xf4\x5b\x4e\xf8\xd2\x1b\x08\x0c\x5e\x33\x01\x92\xc7\x7b\x4f\xd9\x50\xb8\xed\x05\x74\x2b\x47\x38\xa8\xca\x65\x70\xd6\xb4\xa9\x47\xd6\x4b\x20\xaf\x38\x73\xea\xe7\xe7\x06\xd7\x4a\xee\x9a\x55\x65\x5c\xb2\x38\xb6\x46\x27\x8e\x93\x0d\xd7\xaf\x18\x84\x6a\xea\x6a\x91\x6b\x1a\x12\x4b\xeb\x20\xc4\xe9\xf1\x69\x68\xe8\xbc\x00\xa3\xdb\xb8\x33\x2e\x9d\x25\xa1\xcf\xea\xd4\xdf\x5b\x20\x0b\x76\x88\x38\xd5\x77\x57\x08\x73\xbb\x2b\x01\xb0\xb4\xe3\x83\xe6\x6f\xb8\x40\x7f\x57\xfb\x37\xca\xe7\x4b\x19\x2a\x1a\xb3\x6e\x1e\x96\x99\x75\x14\xd0\x1e\x9a\x40\x0e\xcd\x64\xca\x09\x75\x66\x24\x08\x23\x56\x99\xef\x13\x51\x93\xc3\xce\x89\x69\x50\xe1\xef\xb3\xf3\x66\xde\x05\xa8\x4b\x68\x9f\x2f\x65\x19\x3f\x53\x26\xaa\x3c\xd3\x8c\xba\xfc\x40\x7a\xc5\x99\xd5\x3b\x4d\x69\x9c\xf6\x8e\x15\x40\x93\xbe\x4f\xec\x0b\x6c\xb4\xd3\x97\x08\x60\x19\x4a\x30\x53\xda\x91\x0f\xb5\xb0\x90\xef\x69\xb9\x04\x36\x79\x9a\xf1\x9c\x69\x74\x98\x40\xd2\xbf\x76\xcc\x99\x2e\xbc\x63\xf2\xa1\x22\xb9\x61\x09\xa7\x85\x96\x92\xd9\xc0\x48\x69\x5b\xcc\xad\x78\x84\x7a\x66\xfc\x0e\x4d\x8b\x3c\xea\xd4\x33\x27\xa7\xae\x82\x13\x3a\x9a\xc9\xad\xd4\x33\x31\x2a\xdf\xca\x35\x53\xcf\x33\xdf\x39\xcc\x28\x35\xc5\x14\xce\x40\x0e\xd6\x4e\x9b\x96\xba\x7b\x40\x31\x50\x4e\xf2\x13\x5d\xa8\x06\x54\xb2\xdc\x9e\x3e\xa0\x00\x30\x27\xf6\x2c\xa5\x22\xbb\x68\x0c\xca\x4b\x53\xf6\x60\x67\xaa\xe3\x38\x76\xb2\x99\x81\xc3\xe3\x3e\x27\x08\xd1\xa7\xc3\x5b\x6a\x96\xd2\x37\xa8\xa0\x01\xc5\x4a\xd4\x93\xc3\xfa\xb2\xf2\x03\x02\x8a\x94\x28\x39\x18\x2e\xdf\x39\xd9\xf2\x9d\x72\x53\x8c\x7c\x67\xdf\xdc\x91\x42\x8b\x45\xd6\xd2\x6f\x65\x90\xa9\x27\xdc\x8e\x0c\x32\xb8\x24\xef\x2b\x27\xde\x05\x28\x87\x01\x4c\xec\x42\xe6\x4d\x37\xba\x44\x1f\xa6\x71\xd9\x04\x82\x3f\xe6\xbe\xb8\x51\x9a\xaa\x8b\xc5\x5d\x1c\x37\x97\x35\xa1\x8b\x91\x40\x3e\x50\xd3\x65\xc5\x37\x55\x7d\x71\x8e\x93\x49\x89\x61\x0e\x82\x93\xee\x0b\x13\x07\x52\xa5\x33\xc3\x90\x48\xe2\x26\x33\x4c\xcd\x87\x66\xa3\x23\x5f\x5a\xf9\xea\xe9\x04\xae\xca\x30\x61\x54\x68\x54\x97\x59\x13\x22\xcb\x35\xe1\xaa\x4c\xe6\x04\x07\x5a\x9a\x8e\x7f\x63\xd4\x7a\xff\xbb\x7e\x20\xbf\xe8\x90\x76\x20\x83\x80\x6b\x19\xa2\xde\x10\xf2\x10\xfd\xc6\x21\x0f\x57\x67\x33\x36\xc4\xa4\x11\xf0\x12\x7e\x81\xac\xb3\xf7\x80\x4a\xd7\xb3\xa5\x21\x84\x8b\x01\xe8\xb3\xfc\x04\x32\x77\x84\x4e\x9b\x04\xa3\x3d\x55\x49\xf9\x42\x3b\xc3\xea\x60\xd0\x55\x58\xcc\x55\xfe\x06\xb1\xdb\x0f\x14\x92\x21\xe9\x76\xbc\xc3\x79\xa5\x0f\x6f\x4e\x38\x60\x43\x43\xee\x29\xf5\x22\xc1\x1e\xfc\xdc\x19\x81\x39\xb7\x5f\xcd\x8b\x28\xdd\x50\x86\x46\xaa\x7a\x77\x32\x2e\xd9\x42\x1b\x94\xd0\x74\x7e\x61\xf9\xba\x1d\x0b\x51\x46\x66\x16\x32\xf9\x94\x9a\x3f\xa0\x29\x11\x1a\x81\x0f\xea\x26\x59\x0b\x9e\xdf\xbb\xf9\x52\x30\x9e\xdf\xdb\x81\x13\x18\xa8\x6f\xf2\xb1\xe0\x86\xbd\x09\x9c\xc0\x07\x75\x37\x9e\xc6\x07\x43\x9d\x4b\x5c\xda\xbb\xbb\xf3\x22\xe0\xe1\xbe\xbb\xdf\x74\xe6\x40\x53\x0e\x96\xe4\xe1\xe5\x19\xb3\xb8\xe5\x6e\x85\x46\x54\xee\xde\xdd\x1d\x11\x08\x46\xdc\x59\xfb\x11\xf0\xe5\x5e\x8c\x42\xb7\x50\x0c\x8f\xea\x3e\x8b\xf0\xb4\xde\x4e\xae\x72\x71\xf9\xf8\xee\x58\xc7\x20\x5d\xc5\x4a\x14\x12\x10\xdf\xdd\x47\x4c\x4b\xd5\xe9\x8b\x0a\x3b\xa0\x88\xa1\xe5\x43\x50\x48\xa7\x12\x26\x33\x50\xb9\x39\x72\x54\x76\xfc\x18\x9c\x38\xfd\x66\xe6\x03\xea\x3c\x84\xe2\x7a\x48\x83\x69\xb0\xa4\x53\x33\xbb\xb7\xef\xf0\xe7\x4b\xe7\x1a\x81\x2d\x74\x7c\xe7\x23\xa0\xe8\x11\x19\xb2\x4f\xd6\x65\x00\xea\x8e\x10\x08\x2a\xde\xa1\xe2\xbc\xbf\x87\x0d\x1b\xec\x1d\xc5\x37\x14\x0c\xe8\xf7\xc0\xff\xcd\xb9\x32\xac\xe5\x10\xf3\x76\x0f\x2f\x61\x4f\xab\x7e\x11\x01\x3a\x19\xb6\x64\xe0\x2f\xbd\x07\xfe\x25\x0e\x3e\x25\x31\x39\xc8\x67\x7c\x0f\x26\x97\xfd\xe2\x47\xa3\x4e\x16\x69\x64\x3a\x41\xd7\x57\xaa\xea\x08\xa8\xe4\x3d\xc1\xf7\xb6\xc1\xff\x48\xa1\xd6\xb7\xa7\x59\x2d\x68\x4f\x55\xef\x6e\x0e\xc9\x81\xab\x20\x0d\x39\x40\x1b\x7b\xe7\x3d\xcc\x2b\xf1\xa0\xdc\x7e\x6f\x2a\xae\xc4\x5b\xa9\x42\x0a\x79\xb5\x6f\xa7\xff\xb8\x22\x31\xdf\xce\x9e\x16\xf3\xdd\x9d\x69\x69\x80\x52\x35\x38\xff\x6f\xc7\xf3\x61\xea\xbe\x6f\x2b\x6d\x98\x9a\xef\xdb\x56\x7c\xec\xd0\xf7\x6d\xe2\x85\x61\x3b\x19\x07\x76\xf0\xfb\xe6\x51\xe1\x2d\x20\xf8\x02\x5a\xdb\x8a\xfd\xee\xf6\xad\xa0\x68\xbd\xb7\x2f\xd7\x46\x3f\xb5\x07\xbf\xc5\xce\x63\x0f\xfe\xc0\x5b\x7c\xdb\x83\x1f\xaf\xe6\x7d\xf3\xe2\x32\xf4\x7b\x87\x91\xa4\x29\x26\x95\xe1\x31\xa9\x08\x8a\x76\xe9\x47\xf8\xb9\x6d\x99\x1b\x29\x93\x9c\xda\xfb\xf7\x1c\xfd\x76\xb4\x1e\x49\x9a\x6e\x79\xff\x3f\x16\x46\x7b\xff\x4f\x18\xf1\xcc\x4a\x1d\x80\x9e\xee\x23\xa0\x89\x1d\x8d\x75\xfa\xe4\x6a\x69\x56\x3a\x52\x0f\xf4\xf0\x33\x92\x40\x6f\x7f\xe8\x51\xcb\xa3\x5f\x2f\x78\x97\x92\x60\x54\x5c\xd2\x7e\xe0\xb8\x9e\x23\x65\x9e\x1f\x8e\x94\xc9\x22\xc2\xd0\x79\x49\x09\x77\xf2\x2d\x6f\xfb\x31\xe0\x5d\x4e\x58\x71\xb2\xfc\x93\x6b\x87\x7b\x40\xf7\x09\x3e\x16\x56\x61\xad\x7e\x53\x79\x70\x7f\xfb\xf6\x63\x49\x2d\x66\x16\x9e\x47\x8a\x7d\x8b\x67\x8d\x72\xae\xf9\x59\xa3\xc1\xad\xec\xdb\x3e\xf4\x3d\x5a\xed\x03\x33\x1a\x82\xc0\xc3\x32\x44\x94\x84\x87\xe5\x82\x18\x89\xe4\x1c\xdf\x63\xca\xb3\x37\x1c\x07\xda\x2d\x6f\x78\xe5\x56\xd8\x6d\xcf\xf4\xc5\x76\x7a\x98\xbd\xc7\xb6\xe2\xf7\x7f\xe2\x2a\xbf\x1f\x0e\x67\x2c\x9f\xd2\xa7\x41\x4a\x6f\x0e\x4c\x1a\x96\xe7\xf3\xfc\x14\x9a\x5f\x5d\x29\xbc\xd5\x6b\x05\x92\x51\xed\x0a\x64\x4e\x82\x04\xfb\xb0\xdd\x9a\x93\x4c\x49\x10\xea\xc5\x46\x7c\xf0\x8c\x78\x3a\x99\x1e\x4b\xaa\x7a\xb7\x1c\x69\xe7\xa5\x42\x4f\x90\xfd\xcb\xb1\x5b\x29\x5b\xc1\x1e\xff\xfc\xad\xfc\x04\xf5\x62\xd7\x39\x3f\x01\x49\x71\xef\x27\xf7\x88\x8e\x14\x42\x54\x34\xe4\xbc\xa1\xa9\xab\x83\xf5\x82\xfe\x9e\x0e\x23\x8d\x01\xce\xc9\x04\x06\xe7\xa1\x9e\xd8\xa9\x17\xb4\xe9\x27\x76\xe2\x32\x51\xa2\x81\x83\x78\xd3\xdb\x89\x06\x7a\x4d\x2b\x7a\x9d\x68\x4f\x2b\xd6\x36\xc0\x8d\x63\xe0\xc8\x87\x8a\x5d\xcf\x04\x38\x79\x00\x13\xf9\xe4\x9a\x2d\x1f\xde\x46\xa6\x02\xc9\xee\x71\xa5\xa6\x09\x0d\x2e\x63\x47\xf4\x05\x05\xcb\xf5\x7c\xf4\x9a\x32\xfa\x67\x6e\x78\xc6\x1d\x7e\xe0\x27\x74\xae\x60\xae\xfb\x6a\xb1\x1f\x29\x59\x40\x8d\xad\x47\xe9\x01\x6a\xb4\x94\xa7\x6f\xc4\xc6\xbe\xad\xfc\x00\xf5\xca\xfc\xcb\x80\x74\x05\x39\xac\xd4\x2d\x3d\x3a\x80\x19\x63\xd3\xcb\x24\x00\x3a\x2f\x9e\xaf\x87\x3d\xf9\x09\x9d\x92\x69\x7e\x99\x22\x3e\x85\x26\xbb\x23\x0d\x49\x6d\x81\x07\xbd\x60\x7b\x25\x5f\x36\xdd\x92\x3d\x81\x74\xdb\xef\x03\x29\x5b\x3f\x67\xf8\x0b\xe9\xbd\xa5\x70\xca\x7a\xd0\x80\x14\x43\xbe\xa7\x0f\x3d\x99\xd3\xbe\x8f\x13\xbf\xc9\x4f\x10\x2d\xe5\x65\xff\x08\x6c\xee\x85\x70\x87\xdf\x07\x27\x78\xdc\x52\x72\x82\x17\xf2\x17\xdf\x2f\xa7\xce\x8b\x21\xf3\xe5\x5b\xe3\xe8\xfd\x2f\xd2\x0d\x05\xd2\x65\x6b\xb8\xcf\xcb\x1e\x91\x4f\x97\xca\x37\x52\x03\x29\x2a\x80\xd5\x7b\xf9\x3d\x14\xf4\x3f\x3b\xce\x89\x5b\xb8\xed\x1a\xbf\x90\xc7\xe4\x1a\x3f\x1a\x87\x80\x5c\xe3\x07\x11\x29\xb7\x72\x1c\x94\x9e\x59\x15\xb3\xbe\xb2\x54\x8e\x68\x8f\x6d\xf6\x65\xbd\x31\xae\x09\xfb\xc2\x09\x15\xbc\x5f\xd6\x07\x62\x94\x7f\x59\x04\x84\x29\xbc\xb8\xab\x46\xd5\x69\xf3\x11\xd3\x28\x3f\x4a\x7c\x35\x7e\xb1\xbe\x7c\x20\xab\xd1\x50\xe8\xcb\xd4\x1b\x7a\x98\x7e\x2e\x2b\x1d\x5a\x3e\xad\xa9\x6a\x79\xb0\xa6\x21\x3d\xbc\xc1\xf1\xfe\x76\xbe\x20\xac\x17\x6f\xce\x86\x1a\x50\x49\xb3\xd9\x30\x6f\x48\xf9\x02\xaa\x3a\x28\x52\x53\x09\xa6\xe8\x42\x5e\xfb\xd2\x90\x45\xe4\xb5\xaf\xd7\x91\x0e\xb5\xef\x61\x2d\xf2\xd3\x97\xd8\xa6\xdf\xbe\x33\x13\xfb\xeb\xdb\x39\xe4\x23\x53\x92\xa8\x20\x86\x4a\x3f\xc9\x73\xa5\x50\x3c\x32\x12\x8d\xdf\xe0\x89\x01\xcd\x0e\xfe\x0b\x6e\xf2\x86\x1c\xd3\x27\xe6\x09\x76\xb3\x9e\xe4\xe9\xf1\x67\x2a\x6d\xc1\x9e\x53\xc2\x3e\xfc\x18\xe9\xe4\xc2\xaf\xdc\x70\xbf\xdf\xf6\xd3\x22\x1b\x93\xb5\x80\xd4\x1a\xb7\xb3\x16\xc4\x97\xf8\xf6\x53\xac\x99\x72\x99\xd8\xaf\x60\x63\x06\x9a\xee\x4d\x82\x70\x73\x79\xf3\x4b\x7c\x80\xca\x52\x70\x12\xb4\x7c\xdb\xb5\x7f\x7e\x7a\xd0\xb1\x8d\x8f\xcd\x79\x09\xb6\xb8\x61\xde\x3c\xf6\x99\x42\x26\x95\x21\x9a\xb7\x42\xd6\x6f\x44\xce\x8c\xd1\xcc\x15\xd3\xf9\x1b\x45\xb6\x06\x54\x82\xb4\x2d\x55\x8d\x79\x5a\xed\xb2\x03\x30\x46\x91\xe7\xf1\xf9\xce\x4f\xd8\x66\xc8\xbe\xc6\x75\xa5\x19\xd1\xaa\x7b\x9c\x9b\xef\x51\x9e\x81\x94\xfc\xc1\x1d\x4e\x67\x26\x68\xa7\x31\x9f\x8a\x00\x38\x98\xab\xe9\x37\x7e\x70\xe2\x4d\x07\x00\x10\x6b\x3a\x37\x1e\x3e\x39\x81\x6c\xc4\x3e\x80\xa6\xbc\x18\xe9\xc2\xfb\xe8\x4c\x33\x4f\x35\x9a\x66\x5e\x8a\x47\xd8\x81\x94\xdd\xfd\xe4\x43\x39\x8f\x51\xa9\x67\x72\x13\x78\x75\xa6\x72\x13\x54\xd8\xd3\xdc\xec\x3b\xf2\xc3\x4a\x0b\xbc\x34\xc6\xf3\x5b\x76\x3d\x79\xe1\x07\xd5\x72\xfa\x49\x9f\x02\x83\x9e\x4e\x79\x80\x26\x3c\xfd\x12\x4f\xcd\x5c\x61\x40\x39\x40\x41\x66\xda\xab\xf2\xa1\x89\xb5\xf2\x21\x2a\x60\x0b\x28\x5b\xe3\xc1\x84\xd8\x51\x09\xfb\x9a\x7e\x6f\x87\x67\x7b\xe6\xe6\xd0\x40\x7c\x32\x93\xa4\x06\x9c\x67\xd3\x49\x0d\x12\x5f\x37\x37\x47\x0a\x12\x35\x37\x37\x2b\xd8\x1f\xc8\xe7\x52\xd6\x8f\xc0\xb3\x46\xc3\xf2\x1e\xa0\xc7\xcd\xcd\xb6\x97\xcf\x42\x38\x72\xfd\xb3\x12\x88\xcd\x07\xbd\x92\x73\x0d\xf4\xa5\x14\x9d\x19\xf8\xf4\x5b\xc2\x81\xc4\x08\x7a\xa0\x97\xde\x23\x49\x97\xca\x6d\x65\x56\x3c\xf7\x4e\x82\x75\x20\xcb\x2a\x1b\x90\x33\xbe\x17\x20\xed\x18\x96\x6f\xb7\x54\xee\x83\x70\xee\xb6\xe2\x96\xb4\x22\xf3\xc8\x91\x1e\x74\xa2\x6f\x29\x13\x53\x3a\xf3\xdd\x5b\x90\x87\xeb\x97\x79\x38\xa4\xe6\xee\xab\x4a\x9d\xfe\x4c\x85\xcc\xe9\xee\xf3\x1b\x22\xdc\x71\x07\xa4\x43\x67\xcf\x08\x2d\xed\x8b\x45\x36\xec\xc2\x53\x0f\xf3\xac\xba\xa0\x23\x41\x12\xbd\x6e\xee\x64\xcf\x60\x1f\xea\x9d\x9e\xc2\x9b\x34\x53\x31\x0d\x07\xa1\x4a\x53\x31\x0d\xed\x1a\xe0\x13\xb2\xa3\x55\x9d\xda\x8d\x15\xd7\x0b\x3e\x65\x7c\x1a\xb5\xe2\xd1\x03\x3e\x34\xae\x06\x64\xbd\xa3\xa4\xd0\x93\x95\x76\xb4\x70\x2c\xf8\x8e\xc2\xc5\xf6\xe6\x01\x1f\xe8\xd3\xa9\x0e\xfc\xc4\xda\x82\x74\xa2\x5d\x8c\x43\xba\xf5\xd5\xb3\x58\xe8\xd6\x67\x40\x0b\x96\x99\x76\x34\x35\x5a\x3a\x9c\xbc\x02\x73\xc6\xe4\x25\x1e\x1c\x51\xf3\x70\xea\x48\xbf\xcb\xb7\x40\x0d\xcd\x07\xc0\x3c\x88\x69\x63\x1a\x94\x6d\x60\x0f\xe7\x3a\xac\x4e\xd8\xae\x30\x0f\xec\x74\xf9\xd2\xa7\xe3\x95\xaa\x60\x94\xba\x34\x0b\x46\xbe\xb6\xc2\x39\x33\x9d\x5e\x20\x8c\xe3\xc0\x9a\x71\x06\xb4\x88\x08\x2f\x3d\x9c\x40\x94\xfd\xef\x84\x02\x0d\x7f\xcf\x3c\x78\x30\x80\x91\x69\x0d\xb1\xcb\x4e\xc7\x34\x5c\xbd\xa6\x4f\x7b\x0c\x2e\x20\xa5\x40\x0b\xf2\x66\x14\xf8\x86\xa6\x42\x1c\x8e\x9e\xaa\xf0\x82\xd4\xb5\x1c\x96\x71\x72\x98\x5d\xe0\x83\x7e\x0d\x69\x1c\xac\x77\x20\xc9\x33\x8d\x99\xe6\x9d\xfb\xb4\x63\xcb\x3e\x03\x99\xc6\xf5\xfb\x9b\xf5\xd3\xa9\x06\xae\x2b\x1f\x8a\x32\xad\x7e\x4c\xc7\x3b\x5c\xd6\x31\xa7\xb3\x00\x84\x6d\x14\xc7\x3f\xe1\x62\x9a\x85\x8b\x4e\x30\x0e\x1e\xda\xe9\x9c\x2e\x05\xf3\x7c\xe7\x5b\x8e\x0c\x26\xc8\xf1\x06\x57\x4b\x5d\xf6\x0a\xbd\x6a\xb3\x92\x84\x66\xf2\x42\xce\x46\x2f\x37\x8a\x15\x5f\x4a\xd1\xc3\x5f\x3a\x8b\xf5\x3c\xce\xd7\x62\xf5\x9d\xdd\xe9\x9b\xfe\x17\x1b\xb9\xc0\xd8\x6d\xa7\x98\x0a\x13\x28\x61\x5e\x0a\x13\x28\x61\x5e\xc5\x89\x48\x70\x0d\x4d\xbd\x5b\xd3\x09\xd5\x98\xba\xe8\x5f\x78\x11\x6d\x3a\x32\xe0\x62\xe7\xea\x9d\x9a\x03\x4b\xfd\xf4\x35\xff\x0b\xae\x5e\x89\x2f\x82\x5b\xf9\x29\x9a\x96\x95\xf5\xe5\x7d\xb4\xce\x59\x6d\x18\x61\x8c\x0e\x14\xb8\xc8\x25\x3c\x2b\xae\x33\x77\xe2\x87\x68\xda\x09\xdd\x55\xef\x45\x8b\xdf\xb3\xb2\x17\x21\x26\x5f\xe5\xbf\x7a\xbe\xd4\xba\xb3\x96\x89\x22\x38\x81\x44\x05\xac\xa4\x63\x0a\x78\xf4\x64\x56\x2f\xe4\x00\x39\x99\x27\xfd\x60\xe8\x82\x8c\x38\x98\x3a\x0c\x09\x1f\xd6\x54\x14\x41\x25\x22\x7e\x56\x36\x3b\xeb\x51\x2d\x09\xd8\xd2\x36\x79\xa3\x06\xc3\xc7\x4c\x10\xc1\xe7\x53\xc7\xa1\xa6\x9b\x5b\x71\xbb\x35\x75\xed\xf9\x4e\x99\xcd\xb2\xec\xbc\x8a\xc8\xc9\x5e\xab\x7e\xe6\x83\x80\xee\x69\xbf\x7d\xc3\x31\x34\xed\xb7\x1f\xc4\x5e\x4f\x3c\xf5\x68\xed\x53\x0f\xca\x74\x94\x89\x79\x92\x1a\x9a\x89\xb7\xa7\x3e\xe1\xd4\x93\x57\x63\x88\xbc\x98\x27\x26\x47\x36\x19\x17\xfd\xf1\x38\xcd\xd3\x8b\x6f\xb5\x7d\xfa\xda\x7f\x8e\x2a\x3b\xf2\xc9\xaf\x3f\xe5\xba\x2f\x03\x8a\x3a\x7d\x45\x04\x3d\x7d\xfa\x71\x18\xde\x37\x99\xb8\xee\x6b\xaa\x5a\x52\x69\x29\xf4\x11\x5c\xf2\xa5\xba\x84\xfa\xed\x49\x6f\x27\x4b\x71\xde\x90\x14\x23\xc3\xeb\xc1\xd9\x29\x0f\xf9\x81\x81\x64\x9e\x8e\x17\x3b\x33\x63\x3e\x2d\x47\x0a\xe5\xdb\x47\x10\xb4\x13\x7c\xcb\xf4\x71\x3c\x06\x3f\x6b\x06\x6c\xab\xd3\xec\x72\xd0\xa3\xd3\x3e\x11\xc6\x3e\x49\x09\x10\x0e\x95\x24\x00\x9c\x71\x7e\x46\x25\x8c\xc5\xcf\xa8\x0c\x82\xdc\xa7\x5c\xdb\x95\x88\xbf\xe9\x6b\xff\xdc\x31\x9f\x17\x67\x65\x4b\x55\x0b\x29\xec\x0f\xdf\xf4\xe7\x1d\xa4\xe9\x87\x53\x2e\x66\x44\xaf\xa1\x54\xb2\x68\xce\x0b\x16\xc9\x76\xe1\x62\xff\x62\x34\xdf\xb2\xf0\x8b\xb8\x2f\xf6\x1d\x4e\xf1\x6c\x89\x0b\x03\xe9\xa7\x57\xcb\x29\x6c\xd9\xcb\x21\xc1\xd9\x30\x76\x84\x47\xb7\xb9\x06\x53\xc6\xd8\xb0\x3f\x43\x71\x7e\x3f\x05\x8b\xc6\xbc\x08\xff\xe4\x28\xbd\xf0\xc3\x20\x72\x5e\x37\xdd\x30\x58\xad\x77\xdb\xc0\x50\xe2\x10\x59\x75\x27\xf7\xf2\xf1\xd2\x4c\x5f\xcc\x3f\x6b\xea\x62\x3f\x85\x01\xfa\x2d\x14\x82\x12\xa7\xdc\xdb\x75\xdb\xc1\x5e\x27\x5b\xdb\xd3\x8e\x47\xe6\xa1\xb4\xce\xf4\x0e\x40\xeb\xe2\x70\x4e\x3f\x52\xd2\xd0\xa9\x1a\xc1\x0b\x67\x40\xd9\xb5\xe0\xaa\xf2\x51\xd7\x86\xec\xde\x30\x5d\xb1\x88\xf2\x58\x77\x54\xdc\xc9\x1d\x7d\x2c\x17\x53\x2e\xeb\xda\x40\x56\x1e\xeb\xda\xf6\x94\x5d\x82\x4e\x20\xaf\x60\x4f\x55\x5f\x6a\x18\x01\xed\x14\x62\xf5\xfd\x80\x09\xc9\xc4\x67\x73\xf2\xe0\x2d\x90\xf3\x2f\x32\xe8\x2c\x27\xbd\x48\x0e\xae\xc1\x47\x32\x15\x2f\xde\x2f\x50\xd6\xab\x4c\xd7\xcd\x22\xd0\xac\xd3\xb8\xb6\x14\x3a\xf5\x0c\x83\xf6\x4d\x00\x16\x53\x8e\xef\x3d\x27\x3d\xf7\xfe\x71\xf8\x4c\x79\xbe\x6b\xdb\x03\x29\x68\x33\x3d\xf2\xb6\x1c\x8d\x4e\x4f\x5d\x20\xa5\x0a\x0b\xa6\x8a\x83\xc1\x5a\x35\xfd\x06\x09\xb1\xfb\xb3\xd9\x94\xd5\x53\xc6\x3c\x32\x0a\x82\x64\x4a\xea\xda\x02\x93\x56\x9f\x8a\xe8\x01\x37\x3f\xa2\x1f\x6a\x21\xa1\x1c\xeb\xd1\xf1\x7a\xc0\xcc\xba\xac\x05\xdc\x17\x98\x72\x88\x17\xc2\x05\xa7\xdf\x1d\xc1\x5f\x3a\x3b\x42\x38\x3b\xd3\x8f\x8b\xb4\x23\x1f\x8a\xea\xd8\xd3\x1d\x7b\x15\x3b\xd1\xee\xf0\x76\x04\x82\x93\x74\x40\xbf\x52\xc6\x97\x26\x1e\x9c\x91\x53\xb9\x02\x6a\x43\xe1\xb2\x37\x9c\xb8\xad\xe9\xc4\x01\x3c\x5a\x33\xf5\xb6\x48\xd9\x58\xe4\x8e\x46\x05\xd1\xd9\xfd\xbd\x87\x24\xe5\xe1\x3e\xae\xf4\xe1\xf7\x43\xb8\xda\x33\xbb\xe3\x35\xf7\x14\xae\x91\x44\xa6\xed\x7e\x8a\x06\xaf\xe5\x94\x47\xfb\xe0\xcd\x89\xe9\x8c\x03\x38\xce\x66\xc7\x0d\xc9\xd9\xae\x1c\x03\x65\xdb\x52\x78\xba\x90\x76\x64\x06\xc2\xe3\x31\x95\x0a\xa0\x44\x10\xea\x5e\x4b\x1c\x67\xd3\x9e\xf1\xe8\xcd\x7a\x24\xa4\x36\x14\x50\x3f\x12\xd2\xd0\xda\xf5\x48\x48\x89\x90\x32\x7c\x28\x70\xd6\x0c\x84\xe3\xf1\xbd\xb9\x7b\x0e\xdc\x33\x6c\x43\x39\xd1\x4b\x96\xdd\x39\x01\xb8\x5c\x34\xfd\x82\x48\xe3\x54\x1f\x7e\x91\x92\x33\x6a\x60\x5d\x4c\x33\xc3\xf8\xec\x40\xac\x7a\x01\xb4\x57\xac\x06\xb4\x7d\x09\x82\x19\x5c\x29\x3f\xd3\xcd\x5b\x2d\x51\x57\x2f\x19\x11\x3a\x36\xed\xa7\x6f\x88\x41\xf2\xd3\x97\x33\xcd\xdc\x46\x16\x7c\x42\x04\xa9\x6a\x33\x0c\x67\xfc\x20\x58\x81\x93\xdb\xcf\x79\x64\xbd\x86\x63\xc2\x3f\x65\xda\xdf\xd0\xd6\xc0\x38\x8d\x00\x3c\xec\x40\xe3\x88\x1f\xda\xd1\x67\xa6\x52\x87\x03\x99\x7c\xe6\x70\xc2\xb5\x2d\x65\x0a\x71\xed\x69\x45\x6f\xac\x9e\xa9\xf9\xd2\xce\x4b\x99\x66\x03\xaa\x53\x5e\x81\xd5\x7d\x03\xdc\x45\x84\x81\x24\x44\xc0\xee\x9d\x74\x80\x38\x8a\xa9\xb4\x02\x05\x73\xf7\x54\x1e\x81\x83\xc8\x88\xe9\x78\x81\x11\x53\xd2\xed\x33\x85\x40\x84\x79\xdb\xc2\xc7\x94\x2b\x73\x40\xd9\x60\xaf\xb7\x1f\x91\x49\x1f\x8e\xb4\x84\x2b\xdc\x3e\xf7\xb7\x34\xe3\x6c\xcd\x3d\xcd\xd8\x1a\x0e\x24\x43\x1c\xaf\xe8\xcd\xdb\x62\x5d\x38\xc6\x6d\xb1\x2e\x5b\xf4\xb6\xa3\xf9\x4a\xb3\x0a\xc6\xe0\x39\xd8\xe9\x2c\x02\x1b\x04\xe1\x24\x02\xb9\x2f\x32\x6f\x3f\x6a\x7c\x66\xb6\x78\x3a\x68\x00\x3d\xdc\x6c\x3a\x15\xf3\x81\x71\xdf\xb6\x89\x84\x9a\x6f\x02\xe0\x38\xd6\x1c\x81\x80\x41\x7c\x2a\x87\xc0\x81\xd7\x63\x92\x43\x00\x2e\xaa\xe0\x84\xd2\x7b\x6a\x0e\x77\xc9\xc0\x10\xf1\x11\x60\xfc\x46\x47\xe4\xe0\x69\x15\x0d\x97\xfe\x74\x9e\x80\x56\x53\xb8\x78\xea\xc6\xd6\x53\x9a\x80\xca\xbd\xf2\xa9\xa8\x81\xfd\x24\xb8\x71\x4e\x5b\x76\xb9\xce\x32\x67\x96\x3a\x0d\x99\xd6\x3c\x41\x8e\x22\x20\x21\xf3\xf4\x23\x1c\xa3\xa4\x5d\xf3\x7c\x22\x05\xe6\x1c\x44\xcc\x00\x49\x9a\x80\x9e\x9c\x18\xa0\x5d\xe9\x73\x80\x42\xda\x95\x3c\x93\x51\x0f\x10\x0a\x0a\x7a\x90\x27\x55\xfd\xd8\x00\x13\xad\x68\x84\xda\xd0\x93\xa7\x19\x03\xe6\x1a\xc7\x26\xc4\xca\xc2\xf3\x19\xb8\x4c\xe6\xb4\x68\x48\xb8\xc6\x9c\x16\x0d\xa1\x61\x85\x1f\x54\x32\xc7\x4e\x5d\xf5\xaf\x3c\x64\x3e\xfd\xe6\x45\x4b\xff\x4a\x1d\x41\xe8\xd6\x74\x60\x02\x9e\xb8\x39\x1d\xc0\x0f\x5b\x98\xf2\x60\x45\x5e\x50\x4e\x80\xc5\xed\x40\x55\x56\xb4\xde\xbe\xbf\x3e\x3f\xfd\x38\x46\x54\xfa\x29\x16\x52\x32\x28\x3b\x17\xae\x4c\x95\xcc\x2a\xed\x4a\x1f\xb6\xd4\x1a\x72\x94\xc4\xd5\x99\x39\xbf\x9c\x81\xd3\x6a\xea\xe5\x8c\x55\x78\x02\x6a\xc8\x57\xaa\xea\xa1\x1a\xf8\xf4\xc3\x5e\x5c\x62\x47\xa6\x33\x11\xe4\xfa\xd3\x24\xda\x82\x08\x81\xe9\x54\x04\x38\xca\xe6\xc3\x17\xd2\xb7\x7c\xa9\x73\x1f\x45\xd8\xb1\x17\xdb\x48\x99\x5e\x07\x66\x58\x0f\xdf\x5c\x21\x38\x64\x2a\x2f\xc1\x71\xe4\x43\xa9\xa0\xdc\xdc\x9c\x0f\x8b\x28\xe8\xcf\x0f\x7b\x71\x33\x2a\x85\x8b\x6f\x5b\xbe\x53\x1c\x25\x72\xa8\x83\x3d\xc8\xb2\x31\xfd\xfe\x46\x94\xbf\x87\x2f\x3a\xb1\xc8\x79\x7e\x83\x2d\xe0\x47\x35\xc6\x99\x46\x5f\x1e\x7e\xfa\x7f\x8b\x20\xc0\x7b\x91\x6e\xc7\x9f\x34\x15\x05\xb2\xe7\xf2\xd2\x7c\x60\x4d\x3c\x03\x9a\xfd\x65\x5a\xed\xb9\x85\x2d\x3c\x7c\xf3\x11\xa6\xf5\xe0\x12\x2c\xa8\xc3\xfd\x10\x21\x95\xb1\xa0\x12\x8d\x3c\x15\x40\x52\xc9\x45\x36\x1f\xb6\x47\x11\x64\x33\xfd\xe0\x46\xac\xce\x3c\xb8\xf1\x41\xcf\x6e\x07\x44\x36\x45\x97\xf4\x38\x8a\x1e\x78\xc6\x18\x97\xa3\x10\xf0\x29\xce\x87\x93\x95\xc2\xc1\xfc\xfa\x06\x39\xd5\xa6\xdf\xdb\xf8\x08\x21\x7e\x70\x23\xb7\xab\xa6\x5e\xdc\x28\x51\x2f\x1f\x84\x28\xb0\x61\x15\xb3\x72\x8c\x9a\x4e\xec\x9c\x64\xd0\x4f\x8b\xc6\x39\x91\x15\xc3\x52\xb9\x9d\x33\x9f\x9d\x99\xed\x80\x7a\x05\xaf\xa5\xaa\x9f\x52\xdd\x03\x1a\xdd\x13\x48\xc6\x84\x2d\xed\x88\x81\x60\x5b\x73\x3a\x85\xc1\x55\x9e\xe9\x74\x0a\x84\x28\xcc\xe7\x00\x9f\x1d\xd0\xf8\x0c\xa0\xc5\xf1\x79\x12\x6f\xf2\x90\x06\x3e\xfa\xf9\x44\xa0\x42\x70\x7e\x5a\x8c\xee\x81\xcc\xd1\xf6\x34\x24\x84\xae\xf4\xa9\xa5\xc6\xf0\xe5\xd7\x32\x3e\x32\x8a\x33\x31\x10\x47\x38\x95\x89\x61\xe7\x5a\xdf\x74\xf8\x4b\x23\xe0\x66\x3a\xfe\x25\x77\xbf\xa6\x9f\xd2\x28\x63\xa4\x5d\x69\x16\x3d\x75\x65\x06\x3b\x03\x39\x63\x2b\x23\xf1\x5b\x2f\x68\x2b\x0a\x87\x29\x5b\xa6\x59\x46\xee\xcf\xea\x99\x48\x33\x21\xf6\xdf\x7e\xe6\x4e\x64\x19\x7f\x82\x9f\xd5\xe0\xc6\xc9\x7c\x3a\xe7\x0f\x8f\x0d\x4e\x87\xca\xf0\x98\xea\xf4\xdb\x19\xe4\x5d\x9f\x4f\x5f\xe1\x24\x4e\x65\x3e\x1d\x5e\x80\xa2\xf5\x74\x78\x01\x97\xd6\xe6\xd3\x74\x58\x53\x15\x3a\xfc\x3e\xe6\x7b\xfa\x61\x8d\x76\xc1\xb7\x9c\xca\x21\xca\xad\x82\x6c\x92\xc8\x67\x3a\xb1\x43\x3c\xb8\x7e\x74\x83\x47\xc2\xa7\x43\x6c\x48\x20\x3d\x1d\x62\xd3\xd9\x97\x44\xd8\x5c\xa9\xa9\x41\xa2\xae\x39\x01\x04\x0f\x2e\x4f\x5e\xe7\xc8\x90\x15\x53\x53\x79\x1b\x7b\x2a\xa4\xa6\x8c\x33\x55\xe5\xe4\xe2\x58\x77\x48\xcd\x4e\x78\xcb\x74\x9c\x4c\x23\x06\x6a\xbe\x14\xd7\x45\x3c\xc1\x7c\x99\xb4\x51\x72\x5e\x8a\x39\xdd\x6b\xa0\xa2\x87\x6f\x68\xc6\x21\xa7\xc4\x9b\xcc\x97\x9f\x8c\x09\x72\xc3\x98\xa7\xaa\xa8\x7e\xa4\x8b\x87\xc7\x11\x10\xec\x98\x01\x05\x2d\x44\x47\x76\x4a\x09\x32\xdf\xcf\x97\xc3\xf0\x90\x6c\x1c\x36\xd3\x08\xd0\x9a\xaf\xd0\x79\xea\xfa\x58\xcb\xa0\x6f\x23\x44\x27\x32\xf0\xc6\xa8\xac\x1c\x12\x47\x0c\x47\x2f\xc4\x0c\x34\xbb\x17\x9e\xde\x33\xa5\xa2\xed\x91\x42\x3b\x56\x03\xbd\xdd\x25\x9d\x48\x1d\x39\x32\x4c\xa9\x23\x5b\xa8\x45\xb2\x67\x29\x59\xf6\xe9\x7d\xc7\x3c\x4f\x78\x06\xcd\x8a\xb6\xf7\x2c\x97\x8c\x55\xbc\xf9\x34\x5f\x26\x66\x50\x7f\xfb\x25\x53\x58\x98\xe3\x5f\x72\x37\x72\x3a\x00\x26\xf6\xbb\x77\xf8\x64\x40\x6f\x27\x34\xc6\x37\xa4\x86\x68\xfa\x76\x60\x72\x6c\xb2\x6f\x4c\x0c\x81\x9e\x0a\xfa\xe0\x4b\x1d\xc3\xbc\xdb\x33\xfd\xfe\x06\x59\x9f\xa6\xf2\x4d\x24\x5f\xd5\x54\xac\x4a\x25\x66\x6f\xbe\xed\xf0\x47\xb8\x52\x74\xca\x11\x8d\xc8\xc1\x29\xf5\x83\x1c\xeb\x0e\x43\x71\x78\x0a\x0f\x29\xcc\xf7\xcd\x40\x98\x91\x9b\x81\xa4\xd4\xda\x24\xfc\xc6\xaf\x63\x70\xef\x61\x3a\x0a\x65\x3f\x4b\x0a\x9f\xfe\x94\xd9\x94\x80\x19\xe1\x4b\x71\x27\xb5\x67\xde\xed\xb8\x4b\x68\x87\x1f\xc1\x68\x04\x66\x4d\xc7\x9d\x10\xdc\x32\xdf\x4e\xf2\x9c\x30\x03\x05\x9e\x54\x92\xc9\xcf\x37\x8c\x0b\xdd\x53\xa9\x29\x6a\xff\x7c\xe9\x7d\x93\xa1\x39\x0f\x15\x8c\x54\x71\x28\xd5\x09\x4c\xaf\xbe\x61\xa6\xd4\x59\xbb\x40\x37\x2b\xe6\xb4\x40\x73\xc0\x2b\xe0\xda\x71\xbe\xaf\xb7\x20\x35\x74\x50\x26\x5d\xc2\xf9\xdb\x16\x24\x76\x70\xd2\x89\x2d\xcf\xbe\xfd\xb9\x40\x1f\x7c\x57\xc0\x53\x5f\x82\xc1\x70\xec\xfd\x09\xe4\xbd\xa9\x99\x5e\xa0\x73\xdd\x5f\xe9\x65\xe8\xcb\xb4\x63\xed\xaf\xa4\x21\x4d\xc9\xfe\xed\x6d\xcb\x55\x55\x02\xe9\x9e\x3e\x15\x85\x20\x4e\xbe\x20\x1f\x4a\x95\x2e\x45\x6f\x4e\x94\xb5\x20\x2f\x6e\x20\xc8\x0d\x64\x6d\xd2\xb4\xdc\xbd\x40\x85\x48\x9c\x29\x14\xf5\xef\xf9\x52\x0e\xb9\xcc\x8f\xe4\x3a\x5f\x89\x5b\x90\x07\x09\x3a\x56\x71\x37\x26\xfd\xf6\x18\x99\x66\x07\xf2\xd9\xcf\xbf\x40\x71\xef\x8d\x51\x99\x0e\x33\x46\x7b\x8c\x4d\x5b\x0b\x3c\x3d\xaf\x7c\x29\xbb\x46\x3f\x8c\xce\xee\xeb\x38\x67\xad\x80\x6a\xe8\x28\x40\xeb\xf8\xea\x25\x50\x11\x94\x0f\x35\xc6\xa3\x03\xd9\x7c\x7f\xa5\x19\x6f\xbf\x7a\x02\xda\x54\x7a\xa6\xb2\x31\x68\x40\x53\xea\xef\x01\x64\x45\xfe\x18\x80\xe2\x0e\x81\xec\xa1\xdc\x2e\x20\xab\xf5\x35\xa0\x0c\x7c\x4c\xec\xee\xd8\x63\x3f\xc8\xb0\x40\x05\x2c\x96\x54\xd5\xac\x7f\x20\xa3\x03\x02\xbe\x28\x7a\x32\x90\xe1\x6d\x40\xcd\xdb\xdb\x60\x03\x82\x1f\xd1\x85\xf5\x80\x8d\x66\x6e\x4f\x56\xaa\x8a\x39\x65\x8c\x52\x68\x47\x50\xb3\xd8\x5f\xae\x54\xd5\xeb\x34\x2d\x55\x87\x0f\x08\x20\x63\x0a\x6e\xa6\x0f\x36\x93\x03\x48\x1c\xf9\xbb\x20\xe9\x93\x1b\x93\x61\xbb\xe8\x41\x4d\x07\x22\x35\xda\xc4\x38\x52\xc1\x46\xc4\x92\xfd\xea\xc7\x31\x7e\xfb\xd0\x7a\xc6\x09\xa6\x4e\x7b\x13\x76\x72\x98\x74\xd8\xa0\x87\xf3\x24\xf8\x86\xd3\x02\x35\x1d\x9f\xaa\x9a\x0e\x76\x9d\x32\x62\x74\xc7\x3a\x2d\xc8\x8c\xf1\x4c\xa1\x29\xe9\x2c\x80\xba\x53\xd1\xd3\xaa\x82\x18\xd8\x75\x7a\xff\xa2\xda\x41\xb7\x20\x45\xdc\xf7\x0a\x24\x3a\x2a\x29\x63\x20\x14\x42\x48\xc1\x40\x8e\x96\x0e\x59\x1d\xb0\xb7\x74\x62\xdf\xd9\x06\x02\x7e\x00\xe3\x62\x99\x8f\x01\xb2\xcc\x81\x09\xab\xa6\xae\xd1\x63\x20\xbc\x77\x76\xa5\x4f\x6b\xc6\x9f\xba\xbe\x9a\x45\x3b\x0a\x69\x08\x9f\x3e\xb0\xaf\x41\x3e\x8e\x5e\x39\xd9\xce\x07\xd2\x4f\xa6\x16\xd3\xc9\xe7\x53\x59\x39\x1a\x7d\xea\x7e\x72\xff\x74\x62\x85\xbf\xa4\x21\xa5\x4a\xda\xd3\xce\xad\xcb\x7f\x54\x35\x01\x85\x15\x91\xa0\xe3\x2a\x01\x0f\x89\xd9\x74\x22\xe1\xbd\x6f\xf9\x52\x0b\x7f\x7e\x6b\xe6\x5e\x55\x75\x70\x64\x2a\x15\x2a\x11\x42\x3c\x78\xe0\x9b\x33\xc6\x69\x3f\x3a\x64\xc9\xd3\x18\xe5\x53\xa8\x6b\xb4\x2d\x90\xe8\x20\x2b\x8d\x5c\xcf\xa6\x21\xb7\xc7\xc9\x01\xa4\x64\x1e\xab\xa1\x80\xca\x1d\xc3\x89\x58\xcc\xfe\xa0\x0a\x85\xba\x94\x83\xa9\x2c\xd8\x4e\xd8\x99\x84\xba\x84\xc5\x3a\x41\x87\x93\x1f\x2d\x48\xf3\x03\xb5\x97\x1c\x9e\x34\x3b\xbc\x33\x3a\x90\x87\x19\xc8\x66\xb9\x92\xaa\xba\x1e\xc7\xa0\xcb\xa0\x4b\x30\x90\xcd\xee\x6a\x29\x84\xf4\x82\x81\x45\xae\x40\x4a\xf0\x05\x73\x28\x66\x78\x6c\xe2\xe2\x03\x11\x4e\x51\xa0\xc3\x34\x83\xc7\x8f\xe9\x09\xe1\x81\xac\x49\xad\xe4\x4b\x6d\x93\x96\x32\x16\x81\x76\xfc\xc8\x18\x5b\xb3\xf8\x60\x6b\xb4\xea\xdc\x2f\x57\x20\xf7\x08\x72\x26\x2d\xf6\x53\x99\x6c\x4c\xfa\x40\x94\x66\x4f\x2b\x25\xc7\x51\xe0\xf8\x0e\xbc\xf9\xcc\xb9\x85\x2d\x64\x80\xe2\x90\xf4\xf3\x03\xda\x3a\xc0\x51\x5a\xe5\xfc\xc9\xa1\x57\xfd\x20\x28\x93\x55\x21\x26\x50\xaf\x66\x80\x4c\x56\x35\xf5\x5c\xa9\x6a\x72\x6e\x01\x65\x66\x86\x8f\x39\x29\x48\x76\x69\xf5\x23\xde\xe5\xd3\xa5\xd1\xe3\xb4\x70\xe2\x8f\x1d\xd2\x22\x9e\xe7\x62\xd6\x15\xcf\xd3\x6b\xfa\xb4\x5c\xc6\x54\x3a\x64\x67\x14\x66\xaf\x0e\x10\x62\x98\x90\x5a\x4d\x65\x99\x4f\x32\x30\xdf\x76\x28\x81\x2c\x9c\x9e\x01\xbd\xb6\x35\x9d\xbe\xc5\xab\xc0\xf6\x96\xb7\x1b\x3e\x56\x4d\x5c\x10\x4c\x85\xb8\x1a\xe3\x34\xfd\x40\x95\xca\xee\x51\x3b\x6c\x8c\xb7\x41\xca\x95\x42\x7b\xdf\x3f\x0d\xe9\x58\x84\x2c\x95\xc1\xa3\xd7\x2c\x1f\x47\x5f\x1a\x32\x05\x41\x4f\xd5\x21\xb8\x67\xfa\x24\x04\x37\x0b\x68\x4d\x0d\xd6\x50\x9d\x26\xf2\xcc\xc4\xf3\xfc\x6c\x4d\xa9\x50\x68\x8c\xd3\x1c\xa8\xa7\x4c\x42\x77\x86\x69\xe9\x9d\x8d\xc1\x63\x20\x17\x7c\xe3\xb4\x30\xd6\x0b\x90\x91\x4d\x19\xc8\xe6\x4b\xbb\x1b\xd8\xfe\x8a\x19\xaa\xbd\xe5\x4b\xbd\xa9\xc7\x0a\xf1\x52\xc8\x09\x76\xa7\x45\x33\x06\xa2\xf8\xa1\x23\xbb\xef\xb4\x35\xe1\xfb\x2b\x95\xab\xaa\xd9\x6c\x1a\x55\x52\x43\x98\xee\x69\x8e\x37\xe8\x62\xf8\x35\xe7\x1d\x48\xdf\x8d\x0b\xc8\x01\x39\x2c\xe5\x69\x59\x6c\xd0\x8c\x83\xbe\x2e\xb6\xf4\xe9\xcc\x31\xe9\x83\x43\x91\x11\xdf\x30\x72\xd0\xd1\xd5\x85\x3e\x52\xa8\x77\x24\xf6\x94\x89\x51\x1c\x69\x54\xbc\x60\x30\x7e\x14\xc3\x1e\x50\xd7\x13\x82\xdc\x6d\xe4\xbc\xac\x8e\x3a\x0a\x87\x3b\xcd\xc4\x06\x6b\x85\x96\x08\x9d\x39\x22\xa9\x77\x10\x37\x0d\x8e\x94\x19\xd3\x34\xa3\xe7\x6e\xf7\x40\x5a\xd4\x0e\xa6\xd8\xc1\x7a\xfa\xf7\x19\x98\x95\x43\x65\x3c\xd3\xac\xb9\x58\x0b\xa8\x81\xec\x81\x1c\x64\x0f\x4b\x71\x06\x8f\x70\x2a\x87\x32\x8d\x2d\xd0\x2d\xe8\x04\xb2\xc1\x04\x01\xfc\xf2\x53\x4e\x91\xe3\x9c\xa5\xc3\xd6\xae\xab\x3b\x94\x69\x43\x62\xd0\x93\x25\x75\x6c\x29\xab\x82\x52\x76\x09\xda\x80\x6c\xae\x38\x03\xea\x0e\x0c\xcc\xd0\x0f\x94\xf8\xfd\xd4\x05\x19\xb9\x94\xb1\x76\x1d\x90\x19\x48\x27\x96\x64\x11\x32\x2f\x8c\xac\x9d\x96\x6e\x27\x95\xa7\x25\x1c\x98\xcc\xe5\xe5\xbb\x2e\xc8\x49\x17\x46\xfb\x33\x75\x17\xe3\x8c\x12\xed\x77\x48\xf6\x73\x04\x9c\x42\x90\xe9\x12\x9f\x1a\x5b\xda\xb1\x3b\x28\x93\xa7\x80\xa7\x81\x56\xef\x08\xa7\x6c\x67\xbf\x3c\x52\xd0\x90\x2e\x6e\x84\xc2\x50\x2e\x9c\x55\xd0\x81\xe3\x9d\x46\x16\x81\x7c\xb5\x57\x3e\x95\xdf\x1a\xe5\xa2\x75\x7b\x35\xd8\x50\x8a\x7f\xaa\x63\x4f\xa1\x16\x65\x4f\x99\xbc\xb6\xe0\xa3\xf4\x1d\x75\xec\x81\x86\xa0\x1d\xc8\xfd\x6f\x40\x9a\x00\x54\x0d\x85\x49\xd5\x81\xb6\xed\x30\xa9\xc1\xae\x74\x26\x8f\x0a\x49\x34\x84\x6e\x26\xb9\x11\xc9\x0f\x17\xe7\xcd\x91\x2b\x88\xe3\x91\x1c\x01\x59\x69\x4f\x81\x63\x98\x88\x11\x59\xa0\x63\x44\x5a\x40\x0d\x1a\xd1\x9a\xa8\xa5\x02\x6f\x54\xd8\x52\x1d\xac\x6d\x73\x26\x97\x73\xa4\x90\x65\xe8\x80\x66\xb2\x23\xa0\xac\x0e\x17\xdb\x48\xd1\x49\x65\x83\x84\x14\x8f\x54\x47\x96\x01\x39\x26\xf8\x4e\x77\x9a\xaa\xda\x8d\x9f\x0f\xbb\xc8\x22\x1f\x6a\xaa\xe1\x80\x4d\x47\xd0\x38\xbe\x8d\xef\x5e\x55\x35\xf3\x47\x3a\x14\xe5\xa1\xe5\x2b\x72\xa9\x0e\xa4\x70\x05\x2e\xd5\x01\xe5\x75\xdf\xc8\xbb\xa0\xe0\xee\x80\xb9\x8b\x35\xeb\xc8\xd2\x2d\x95\xad\xf3\xc2\x4a\xbb\xfd\x89\x35\x9f\x0a\xd9\x92\x2f\x85\x4f\x49\x99\x22\xd2\x58\x03\x3d\x80\x72\x7c\xbe\x93\x8b\xbb\xf4\x40\x56\xc7\x2b\x90\x82\x56\x91\x6f\xfc\x52\xca\x28\x29\x3b\x4d\x13\x69\x54\x89\x4e\xce\x54\xbd\x25\x3a\xa7\x51\x91\x6c\x49\xd9\xc3\x63\x4c\x3b\xcf\x1f\x5f\x57\x63\xa9\x94\xfe\xa3\x8e\x12\x48\x29\xd8\x91\xe2\x08\x7f\xba\xe0\x9c\x5d\xa2\xcf\x28\x29\xb4\x0b\x17\xee\xdc\x71\xe3\x20\xf6\xf7\xdb\x17\xad\x52\xb7\xb9\x21\x7a\xc1\xcc\xf9\xa9\x2b\x1a\x28\x81\xa6\xeb\xe6\x53\xe3\xc7\x82\xc8\x9c\x74\x41\xcd\x8a\x9c\xaa\xa3\x06\x72\xe8\x00\x07\x96\x9e\x63\x39\x3e\xe8\x99\xfd\xb4\x4c\x1e\x2f\xe8\xa4\xd0\x76\x9f\x2c\x89\x9e\x67\xed\x9f\x42\xf3\x60\x04\x1a\xc7\x55\x95\x32\xd2\xa9\x82\xea\x81\x14\x65\x75\xd4\x23\x90\xe6\x0b\xf5\x73\x58\xd0\xbe\xe0\x8e\xc3\xe1\xd3\x51\x8f\x87\xbd\x84\xd7\x16\xd0\x4e\xcd\x2b\x2d\x35\xcd\x66\x3e\xed\x3f\xbe\xae\xcc\x97\x62\xb2\x4a\x45\xbe\x70\xd4\x55\x39\x02\xf9\x40\xe5\x58\x1c\xf6\xac\x7c\xfa\xd0\xcc\x22\xb6\x91\xd5\xe4\x82\xe9\x8d\x61\xa3\x11\x92\xe3\xf0\x8d\xf9\x2b\xd8\xfa\x31\x7e\x68\x6f\xf8\xb2\xf2\x05\xf7\x74\xfc\x56\xa4\x55\xc7\x6f\xd5\x13\x59\x76\xf8\xce\x3c\xfc\x47\xc9\x52\x16\x0d\xa5\x17\x91\x6d\x4d\xa1\xc9\x76\x4f\xa1\xd1\xa5\xd9\xdb\x4b\xcf\x1c\x38\x62\xfb\xca\x74\x99\x21\x66\x4a\x30\x81\x66\x12\x24\x95\x0f\xb4\x43\xde\x69\xb9\x82\x1e\x79\xca\xd2\x89\x2f\xeb\x70\x64\x0c\x11\xd8\x1e\xf4\x30\x9b\x73\xaa\xeb\xd5\x96\x12\x1b\xb1\x42\xb4\x4a\xfd\x54\xb5\xe8\xdf\x53\xd5\xfe\x89\xcc\xad\x99\x1e\xb2\xc2\xf0\x0d\xa6\x6b\x4f\x9f\x1a\xf5\x19\x48\x41\x52\x8c\xc4\x51\x5a\xd7\x11\xe8\x50\xcd\x40\x9a\x02\x76\x18\x41\x5a\x74\xe8\x87\x61\xb8\x4e\xbc\x40\x9d\x7d\x67\x0a\x6f\xc5\x99\x02\x0d\x07\x82\x31\x21\xb7\x1e\xe6\x0d\x27\xf7\x63\x2f\xb1\x0f\x3a\x64\x6b\xff\x3e\xc2\x64\x55\xd5\xf1\x00\x07\xba\x7d\x61\xb8\xa7\x19\x5d\x6d\x65\x43\xdd\xa8\x74\x41\xd5\x04\xc2\x7a\x38\xba\x2b\x66\xe8\xdb\x57\xe3\x38\xbb\x6e\xdf\x8e\x42\xd9\xba\x39\xe7\x7a\x40\xa5\x94\xa9\xa9\xfa\xf8\xf1\x75\x6e\x70\xe7\x9b\x74\xcc\x94\x39\x05\xe2\xc5\xe1\x7f\x3b\xf2\x20\xb3\xe1\x1c\x64\x35\x65\x12\x9b\xc2\x9b\x94\x03\xa6\x8e\x4c\xf9\xb4\x2f\x09\xc4\x1d\x75\x0b\x39\x38\x75\xcb\x80\x51\x4d\xdc\x60\x57\x0a\x65\x83\x45\x6d\x9d\x16\x68\x98\x8d\x69\x29\x97\xcd\xe3\x60\xad\x81\xe2\xe7\x60\xad\xd1\xd2\x8a\x38\x6c\x4b\x2b\x22\x38\xe4\x29\xbd\xe1\x52\xca\xa7\xcd\x97\x47\x51\x00\x75\x92\xb2\x3b\x26\xf2\x0d\x55\x2d\x0e\x43\x8c\x8e\xd4\xba\x5a\xca\xc4\x20\x90\x71\x27\x84\x02\x6a\xc8\x45\xac\x8d\xa2\xb8\xd6\x26\x03\x55\x05\x78\x0e\x76\xf2\x74\x28\xcc\x08\xa4\xbb\x16\x3d\xed\xb0\xab\x02\x4e\xd1\x78\x50\xf5\x18\x3b\x90\xc6\xc8\xe6\x74\xbe\x99\xab\x05\x72\xc6\x91\x40\xac\x22\xd8\x38\x65\x10\xe7\xb8\x5e\x6f\x39\xe2\x16\xf2\xe3\x2d\xe3\xd3\x8c\x66\x8a\xc3\xc7\x11\x5d\x23\xdf\x59\x95\xba\x10\x48\x14\xe0\xb5\xc7\x2e\x30\xb9\x91\x83\xc8\xaf\x4c\x34\x75\x70\x14\x4d\xbb\xdf\x32\x1b\x3c\x3a\xcf\x10\xd1\x96\xb2\x72\x84\x66\x65\xc8\x4e\x04\x7d\xa6\x1d\xaf\xa3\x47\xe5\x8c\x35\x07\xac\xe2\x01\xfd\x0d\x20\xd8\x5a\x40\xf3\x76\x0e\x14\x45\x5f\x1d\xc7\x9e\x76\x44\x72\x48\x47\xce\x74\x13\x5c\x79\x06\xe6\xbc\xf2\xa1\x4f\x75\x9c\x29\x8e\xbe\x1a\x4c\xc1\x03\x1d\x0c\xda\x7d\x60\x10\x82\x5c\x15\x62\x55\x36\xf6\xce\xc3\x76\xee\x0b\x51\xef\x81\x45\x08\xee\xf1\x20\x7e\xe5\x4a\xa9\xf4\x8a\x96\x76\x65\x6d\xdc\x59\xbf\x87\x63\xbd\x39\x54\x15\xd5\x54\x47\x0b\xd4\x65\x2d\x62\x86\x2c\x17\xc7\xd9\xf3\xc0\x92\x03\x55\x3e\x24\xb0\x6c\x23\x85\xe6\xdf\x25\x85\x6f\xd9\x14\x98\x05\x22\x46\x60\x60\x0f\xa4\x66\x48\xff\x81\xed\x06\xad\xfa\xe1\x9c\xaa\xb1\xe9\x29\x78\xa9\x6c\x3d\x2d\x2d\x8a\xae\x88\x9b\xce\xa8\x13\x86\xe2\xe8\xa4\x06\xf4\xc4\x3c\xc3\x24\x3c\x9d\x31\xe5\x62\xa0\xcf\x4e\x9f\x7f\x03\xdb\x7e\xca\x06\x13\x27\xd3\xd3\x5e\xda\x18\xe2\x9f\x44\xf7\x62\xae\x78\xda\xe2\x07\xee\x4f\x0b\xc7\xf0\xcd\xa7\xd3\x50\x5c\x2d\x85\xde\x39\xe0\x27\x95\x7b\x20\x6d\xf1\xdc\xcb\xc5\x38\x9f\x7e\xf0\xb1\x60\xa2\x78\x22\x78\x94\x54\x96\x8d\xe6\x03\x29\x38\xf2\x03\x75\x57\xcd\x97\x3e\x57\xd8\xae\x44\x36\xc5\x12\xee\x54\x3e\x8d\x3d\xe8\x10\xa4\x1a\xe3\xa5\x1f\x87\xd9\x63\xd0\x56\x0c\x52\x89\x60\xa4\x9c\x3c\xc7\xc1\x21\xe4\x94\x3c\x63\xa4\x4c\x27\xc2\xa7\xcc\x0e\xc4\xac\x52\xc8\x86\x59\x50\xa8\xdc\xc5\x29\xfc\x44\xb2\x45\x39\x7c\xa2\x58\x83\x80\xaf\x6e\xc6\x08\xfa\xe4\x8a\xc0\x48\xa9\x4e\x8c\x91\x86\xf4\xbc\xe2\x95\x76\x98\x13\x30\x12\x81\x1d\xf0\x08\x3d\x1a\x53\xca\x96\x56\xad\x83\xb7\x7c\xe9\x0d\xdb\x52\xd7\xb6\x18\xa4\x3a\xa7\xf3\x09\xd3\x76\xfe\x9e\x51\x18\xb7\x82\x8b\x8e\xc6\xfa\xbe\x38\xed\x68\xf7\x45\x70\x27\x43\x23\x47\x4f\x4d\x43\x9e\xcd\x54\x65\x13\x0e\x40\xe5\x01\x04\xf9\x97\x45\xdb\x9e\x32\x11\x18\x44\xf3\x22\x38\x8e\xfd\xe0\x98\xa1\x52\x02\x79\x77\xf4\x80\xa7\x67\x88\x86\x2c\xb7\xc0\xa9\x9d\x69\xe7\x33\x92\x50\x14\xe8\xf9\x52\x7f\x6c\xd1\xce\xb5\x53\xaf\x34\x6b\x2f\x5a\x4b\x43\xc6\x8f\x41\xcb\x8b\x36\x90\xad\x79\x96\x06\xa9\x5c\x31\x44\xc7\x60\xcb\xbd\x2c\xe6\xb2\xe3\x9c\x7a\x67\x8f\x89\xf2\xe5\xbb\x2a\xc1\x15\xa2\x45\xc8\x71\xb4\xd1\x18\xa9\x2a\x91\x6b\x4b\xd9\x90\xe3\x3f\x1f\xea\x51\xda\x33\xfd\x9b\x84\xf3\x9d\x88\xe2\x83\x8d\x29\x98\xd3\xe9\x65\x22\x45\x38\x25\x9c\xe8\x0c\xa4\x33\x2e\xe4\xa2\x2b\xc4\x2d\x13\xc7\x31\x96\xfe\x17\x67\x3b\x37\x64\x3c\x25\xd7\x39\x37\x30\x25\xb9\x4e\x0c\xcf\x0e\x27\x8a\xf3\x46\xe1\x44\xe7\x06\x77\x7f\xdb\xf0\x1c\x4b\xb3\xf2\xe9\x9c\x1b\xc4\x4d\x34\x51\x4c\xb4\x8a\x26\x3a\xb7\x2d\x55\x2d\x10\x21\xe5\x29\x67\x4e\x39\x51\x4e\x95\x32\xa7\x6c\x3d\x90\x75\x26\xf8\x9a\x32\xe8\x9c\x1b\x3a\xef\x9b\x73\x0b\xa1\xf3\xed\x94\xbe\x88\x87\x6f\x25\x66\x8a\x01\x97\x24\x39\x48\x0b\x6f\x5c\x15\x9c\xb2\x6f\xec\xc9\xac\x81\x83\x8d\xf6\xf2\x37\x18\xbb\xf5\xd0\xcd\xb9\x61\x05\x78\x3b\x12\x24\x5c\x44\x91\x47\xe7\xb6\xa5\x55\x6d\xae\x04\x09\x38\xb6\xa8\x64\x23\x2a\xe1\xcd\xc7\x46\xf9\xe6\x4c\x63\x7b\xbd\x91\x98\xd1\xaf\xde\xe4\x63\x0a\x24\x47\x21\xdb\x40\xb1\x45\xe7\x96\xb9\x54\xe0\x6e\x89\x69\x5a\xb1\x45\x05\x0b\xf3\xd8\xbc\x60\x7b\x20\x9f\x8c\x3d\xa0\xf7\x9a\x89\x74\x28\x5e\xe8\xc0\x81\x3d\x14\x20\x74\x6e\xb6\x46\x8f\x8d\xcd\x6f\xd6\x3e\x9c\x3a\x66\x20\xd1\x0e\x85\x08\x9d\x58\xb8\x86\x22\x84\x9a\xef\x89\x2d\xc8\xc8\x0e\xa0\xa6\x9a\x17\x50\x77\x33\x01\x25\xdc\xf4\x40\x3e\xed\x06\x7d\x38\x93\x91\x13\xa1\x2e\xd0\xf6\xcb\x0e\xb6\x76\x01\x38\x13\xea\x02\x2d\x20\x0c\x9a\xba\x3d\x0b\xa9\xdb\x05\xa5\x21\xf3\x9f\x11\x90\x15\x04\x5f\x45\xbc\xfa\x12\xe4\x82\x9e\x52\xd5\xd2\x8e\x03\x2c\x07\x7d\x3a\x10\x1b\xc3\xf1\xd0\x0b\x34\xa7\x23\x67\x17\xa4\xd3\xa5\x7e\x40\x23\x44\xb3\xbe\x63\x70\x30\x7d\xb6\x9b\xd4\xac\xd9\x24\xcb\x0c\x90\x03\x07\x98\xea\xdd\xef\x8a\x99\x4a\xc6\x8e\xac\x78\xa6\x50\x2c\xe0\x08\x64\xa3\xa4\x35\xe2\xa1\xe0\x9a\x86\x0e\x36\x88\xad\xa9\x7b\x0a\x4d\x8b\xb6\xc0\x0e\xc7\xda\x90\x7e\x75\x81\x7a\x3b\x66\x0b\x64\x67\xd8\x00\x07\x3c\xd3\xe6\x4a\x63\xc7\x16\x71\x06\x7c\xda\xb5\xb8\x01\x32\x1a\x9a\xb2\xc3\xd0\x32\xe8\x70\x1e\x96\xc4\x5c\x8d\xfd\x06\x27\x30\xbe\x4d\x48\xf4\xaa\x68\x06\x27\xe6\x59\x90\x4f\xd9\x1e\x50\x94\x7c\xd0\xa7\xcd\x0f\xbe\xbc\xbd\x40\x13\xce\x0e\x82\x5e\x98\x23\x85\xf2\xd4\x6e\xcc\x60\x8c\xed\x60\x20\xbd\x15\x79\x75\xec\xc4\xc4\xf7\x14\x32\x50\x7f\xea\x27\x62\x70\xf9\x8e\x03\xa6\x7a\x06\x6c\xae\x5b\x00\x45\x9e\x47\x0a\x59\x36\x0f\xd4\xe9\x54\x46\x65\x03\x1d\xbe\x42\xdc\x58\x0b\x12\xaa\xb4\xd4\xd5\xae\x34\x3b\x1c\x0a\x65\x39\xb7\x23\x35\x65\xad\xf8\x7c\x67\xc2\xb1\x0a\x32\x0e\x87\x48\x5d\x69\xc6\x09\xa5\xc0\xce\xc2\x3f\x81\x69\xe3\x60\x91\xac\xcc\x8e\x83\x45\xba\x18\xb6\x3c\x2b\xfb\x9e\xba\xc6\x00\xd4\x39\x59\x2f\xda\x75\xcc\x00\x56\xa1\x71\x98\xad\x5a\xeb\x19\x87\xdf\x70\x38\x53\xd5\x51\xcf\xac\xbd\x72\xad\x94\x72\x7c\x1f\x73\x32\x0e\x5f\xa4\x08\xb2\xda\xb0\x8d\x9d\xee\xb0\x96\xc6\x06\x75\x52\x96\x81\x45\x72\x1c\x56\x29\xd8\x2d\x8a\x40\x39\xb7\x02\xaa\x53\x66\x90\x23\xcd\xf8\x34\xb7\xa8\x38\xfc\xb8\x0c\xbc\x79\x28\x00\xe5\xdc\x2c\x01\x8f\x42\xb2\x59\x4b\x33\x43\xf1\x27\x27\x71\x72\x43\x11\x27\x27\x52\xf8\x28\xf6\xe2\xa2\xfa\x0f\x1e\x93\xf1\x5d\xd7\x05\xea\x52\x77\x4f\xa1\xe2\x3d\xac\x04\x8e\x24\x5e\x81\x26\xca\x60\xbd\x1a\xa0\x11\xa2\x1d\x9b\x1b\xd2\x89\xcd\x0d\xe8\x79\xa3\x0c\xa8\x34\x0d\x89\x4a\x0b\xc3\x5c\xe4\x74\x6e\xec\x05\x45\x8e\x94\x1d\x12\x29\x3e\x3e\x39\x56\x8a\x8d\x8a\x0d\xee\x56\xd0\x11\x46\xbe\x34\x51\x30\x07\xde\xe3\x05\x04\x2c\x35\x1d\x29\x33\x97\x3c\xd2\x8e\xf6\xb8\x25\x9a\xa1\x18\x93\x55\x48\xdd\xa5\x06\x9c\x5b\x61\xcc\x53\x63\x66\x2f\x16\xb3\xe9\x9a\x32\xef\xcc\x4c\x9e\xb9\x41\x65\x42\xfc\xf8\xf8\xc9\xd1\xaa\xb0\x92\xd3\xcf\x64\x2d\xc8\xfb\x3f\x2b\xbd\xc8\xe0\x44\x6e\x1b\x45\x3c\xfc\x0c\xae\xce\x47\xdc\xe0\xe1\xd5\xb2\x19\x87\x70\x45\x36\xb3\x55\x6b\x54\xe4\x7c\xcb\xaa\xa3\x9a\x46\xe0\xcb\x0e\x07\x69\x0d\xf6\x59\xe1\xda\xd6\x09\x06\x2f\xc1\xb4\x3d\xa0\xed\xc9\x23\x95\xb5\x7e\x1c\x15\x8e\x00\x21\x05\xf0\x02\xa7\xe7\x8f\x5e\x87\x28\xfc\x0c\xa4\xa1\x7d\x9a\x7d\xb9\x97\x06\x68\x8e\x0e\x9b\x51\x98\x47\x23\xa4\x74\x54\x53\x02\x0c\x5d\x99\x5a\xce\x8d\x93\xa1\xb2\xf2\x2d\x85\xe6\xb5\x9d\x59\xb9\x35\xd7\xc1\xe7\xd6\xfe\xe3\x24\xa8\x98\x21\xd3\xce\xcb\x08\x04\xd4\x15\xb4\x20\x3b\x99\x5c\xbe\xb4\x04\xd6\x90\x71\xaa\x57\x1b\xee\xa0\x08\x90\x73\x83\x25\xea\xd5\x96\x73\x83\x30\x79\xb5\x05\xb1\xa5\x62\xc0\x6c\x69\x46\x93\x37\x52\x75\x71\xcf\xeb\xd3\xcc\x5b\x0e\x2d\x8f\x83\x17\x5c\x50\xa6\x87\x5f\x70\x69\x0d\xbe\x76\xf2\x0c\xf9\x01\x04\xf1\x5d\x80\xc6\xa7\x02\x0d\x0f\x3a\x85\x5a\x21\xf6\xf8\x09\x3f\x48\x27\x92\xc3\x59\x9f\x13\xe7\x05\x62\x9d\x9f\x74\xc9\x11\xcb\x93\x2e\x17\x22\xd6\x09\x3d\xc1\x12\x4f\x9f\x27\x30\x8b\xd3\x52\x1e\x5c\xcf\x6f\xba\x14\x36\xee\x69\x52\xbb\x02\x49\xde\x82\x8d\x9c\x26\xa6\xb6\x7d\xcf\xbc\x15\x2d\x72\x6e\x57\x3e\xf4\xb9\x88\x4c\x72\x22\x1d\x72\x60\x28\x5a\x84\x9b\x30\x0b\xd2\x3c\x43\x4b\xa7\xae\x42\x1d\xec\xff\x93\xfb\x23\x23\x1f\x4e\x0f\x92\xd9\x12\xcf\x21\x5c\x7a\x9c\x7e\x21\x0a\x72\x39\xcd\x47\x32\xaf\xf2\x9a\xa1\x52\x8d\xd3\x0f\x0e\x42\x20\x0a\xe5\x28\x84\xb6\x8f\xd3\xa4\xd4\x98\x72\xc7\x12\xb5\x2c\x33\xc7\x07\xe2\x93\x93\xd2\x54\x1c\xcb\xe3\x82\x42\xc0\xe7\xea\x30\xcf\x01\xa8\x6e\x20\x3c\xe5\xa1\xa9\x58\xd5\xc7\xa5\x03\x24\xe7\xc7\xd5\xe9\xb4\x02\xfa\x5a\x57\x3a\xd1\x21\x99\x0f\xa5\xa9\x55\xb8\x9c\x22\x39\x4a\x84\xa5\x0b\xa9\x11\x51\xe5\xf2\x83\xa5\xf5\x48\x5d\x5d\x37\x87\xd6\x2f\xec\x48\x1c\x52\x7e\x7c\x05\x3b\xef\x50\xd2\x99\x73\x6b\x29\x5b\x32\x63\xd9\x82\x80\xa3\x19\xd9\x24\x0a\xe5\x38\xb7\x7c\x88\xa3\xb5\x07\xb4\xa3\x89\x76\x10\x46\x3a\xe8\xf9\xe4\xa9\x34\x6b\x35\x1f\x51\xfe\x82\xfb\x20\x48\x3b\xe8\x83\xf8\xfa\x71\x99\xdd\xb4\x40\x92\x68\x33\xcb\x52\xde\x47\xa6\x07\xf9\x62\xa4\x0f\x33\x1f\x90\x9b\x7e\x12\x22\x90\x79\x0f\x7c\xea\x42\xfb\xe3\x6c\xb9\x90\x4a\x39\x50\x2f\xdb\x3b\x23\xdf\x5e\x66\x4d\x1c\xe9\x0e\x09\x69\xed\x48\xc3\x4a\x6a\x75\xa5\x21\xf9\x4f\xb6\xf4\xe2\xcb\x11\x8c\xc4\xf9\x90\x6a\x49\x55\x9f\x26\xac\xa6\x5e\x78\x39\x37\x38\x03\xe1\x22\x17\x8b\xa2\x70\x91\x73\xeb\x81\xc4\xc9\xe1\x13\x4d\x17\x90\xf0\x92\x8c\x66\x05\x94\xd5\xf3\xdb\x2f\x03\xf3\xeb\x68\x4e\x8b\xd1\x8e\xd4\x95\x41\x63\x0f\x24\xbe\xce\x06\x57\x26\x9d\xf5\x65\x3a\x51\xc4\x3b\x22\x58\x43\x2a\xfe\x80\xda\x99\xec\xa1\x06\xdf\x62\x2e\x9b\xef\xb3\x5d\x2c\xa0\x73\xe9\x44\xfe\x68\x50\x29\xc7\xad\x52\xe9\x9c\x98\x29\x46\x33\x95\x42\xc1\xbc\xf6\x52\x91\x80\x1c\x5a\x12\xd9\x40\x91\x25\x7b\x89\x92\xa1\xd0\x92\x72\x64\x28\x7e\x25\x3b\x73\xe0\xc4\x48\x48\x1c\xcd\x76\xd0\x4c\x81\xec\xe7\x2d\xfd\x8b\xf2\x72\xea\x34\x09\x40\x3b\xe4\xdc\x1c\xb2\x7d\xa5\x43\x4b\x3c\x19\xd5\x64\xf1\xe8\xd1\x89\x0d\x5a\x10\xf0\xe5\x5e\x84\x88\x66\xd9\x76\x04\x7a\xb8\xaa\xe7\xa3\x3b\x47\x33\xac\xab\xdb\x40\xf9\x7d\x4e\x93\x55\x55\xf4\x32\xd2\x0c\x2b\x52\x01\x95\x20\x08\xb1\xc5\x59\x6f\x70\x40\x8e\xee\x50\xeb\x56\x52\xa8\x67\xcb\x5b\x3e\x94\x54\x30\x82\x8e\x2d\x99\x0d\xc8\x8c\x14\xde\xa8\xb8\x92\xd2\x60\x05\x5d\xd4\xb3\xa5\x19\x19\xc7\xa3\x35\x29\x76\xe4\xb8\x3e\x65\x32\xbc\xc0\x26\xba\x69\x27\x5a\x5d\xb7\x5c\x94\x2e\x7c\xc1\x31\x6a\x9c\x9f\x87\xd9\xa2\x62\x29\x40\xe4\xc0\x8e\x36\x14\x20\xb2\x1f\xf0\x82\x6e\x2f\x7c\x43\x2f\x48\x80\x08\xfb\xa9\x9b\x8d\x45\xc7\xeb\x7e\x6f\xaa\xe5\xd3\x53\x69\x04\x41\xe1\x06\xbf\xf4\xd2\x94\x10\x06\x6c\x79\x49\x26\x9d\x0c\x57\x0d\xe8\x13\xa1\xa4\x59\x07\xd9\xf6\xf4\xf9\x30\x01\x05\xa3\xa7\x66\x9a\xc9\xbc\x2d\x5f\xa4\x4f\x8d\x33\xeb\x35\xad\x7d\xf4\x80\xfb\x8f\xaf\x5e\xb2\xb6\xd3\x37\xe9\x7b\x40\x71\x11\x8e\xba\xee\x2b\x00\xd1\x3e\xfa\x04\x5d\xf0\x23\xb7\x29\xdc\x49\x81\x27\xed\x82\x1d\xf9\x69\x9b\xf1\xe9\x73\x1d\x18\x3b\x2c\xc6\x81\x26\x1f\xf1\x43\x91\x26\xe7\xce\xb8\x1c\x69\x72\x20\x13\x3b\xd0\x04\xeb\xf7\x50\x9c\xc9\xb9\xb3\xbf\x94\xeb\x67\x4d\x57\x07\xf4\xbc\xa3\x3c\x2a\xce\x64\x61\xd7\x00\x87\x3e\x4d\xb3\xb7\xeb\xa6\x25\x65\xf7\x3d\xd3\x10\x13\x9d\x4e\x2d\x5c\xd7\xb4\xab\xa1\xc0\x83\x07\xba\x7f\x61\x28\xe8\xfe\x0c\x65\x28\x7e\xb9\xa5\xcc\x01\xf9\x68\x1c\xc3\x8f\xff\xf7\xb4\x63\x65\x12\x8a\x1a\x92\xc8\xa2\xbc\x29\x78\xe4\x8c\xad\x47\xa9\x7f\xce\x3d\x93\xe7\xc3\xb7\x61\x19\x70\x2c\x09\x6f\x4e\x2c\x70\x31\xe1\x3d\x53\xe2\xc4\xb9\x7b\x26\xec\xf6\x6c\x5e\x40\xde\x64\x29\x93\xa2\xb2\x05\x52\x40\x48\x49\x1f\x26\x53\xb6\xd1\x70\xb6\xe6\xeb\x53\x57\x41\x28\x99\x10\x99\xe7\xb8\x4c\x35\x94\x51\xe8\xdc\x33\xeb\x53\xe1\x62\x90\xcf\x40\x76\x03\x1b\xeb\x80\xd1\xaa\x86\x13\xc6\x70\x9c\x0d\xe8\x70\x4f\x5d\x3d\xec\x87\x74\x4f\x7c\x4a\x43\xb4\x1c\xbe\x5b\x10\xd5\x68\xe4\xb8\xcd\xa7\x6f\x97\x7a\x28\x8e\x49\x69\x0d\x49\xe2\xb6\xf3\x91\x33\x5d\x41\x29\xe7\xce\xf2\xdd\x26\x45\x50\x50\xe6\x20\xde\x51\x5e\x50\x57\x59\x01\x12\xe5\x7d\xba\xb0\x24\xc5\x19\xa5\x3c\x42\xe7\xbe\x7f\x9b\x50\xf0\x1a\x8e\x66\x69\x78\x33\xc6\xed\x34\xe2\xc8\xc8\xb7\x43\x9c\xda\x19\x50\xa7\xdb\xa7\xaa\xde\xbe\xbc\x52\x66\xec\x18\x15\x64\x08\xae\xa6\x3b\x64\x93\xdb\xe2\x7d\xe4\xf0\xdb\x96\x41\xd8\x91\x32\x10\x95\x58\x4f\x6f\x5f\x89\x22\x00\x6b\x28\x80\xa5\xc6\xea\x75\x3b\x28\x8e\x83\xe7\x76\xd0\x52\x3b\x03\x4a\x37\x43\x42\xe5\x59\xa3\x86\x72\x7d\xfb\x2e\x0a\x5c\x84\x9c\x42\x15\xda\xba\xe5\x96\x89\xb4\xc6\x1b\x47\x2d\x6b\x20\x01\x7f\x0f\x06\x53\x6b\x80\x38\xad\xe8\x96\xb5\x06\x2c\xa5\x6c\x47\xfb\x11\x0c\xb4\x22\x47\xca\xde\x42\xc0\xcb\x3c\x9d\x59\xaa\xc2\x0a\xa6\x19\x17\x72\xc2\x34\x45\x40\xea\x4e\x46\x54\xf0\x2a\x8e\xe9\xbb\x4b\x67\x0a\xbb\x67\x6b\x07\x34\x76\x81\x4c\xb1\xa0\x4e\x4c\x4b\xc4\xce\xd9\x79\x4f\x8c\xca\x76\x22\x87\x46\xff\x5f\xc6\xce\xe4\xfa\x62\x94\x57\xe2\xa9\x7c\x21\x5c\x1b\x33\x6d\x3a\x17\xb8\x43\xfe\x21\xbc\xe3\xaa\x5f\xb9\xdf\xee\xdf\x4b\x1d\x6c\x46\x21\x09\x51\x48\x82\xa3\xd4\x23\xdf\x0a\x71\x12\x07\x8c\x10\x27\xf5\x78\xbe\x64\x0e\x0a\xa4\x62\x6d\x3d\x94\xbc\x79\xa8\xdf\x1d\x36\x30\x57\x08\x80\x52\x8f\x87\x52\x8b\xd8\x75\xdb\xa1\x04\x41\xe1\x4f\xe5\x34\xaa\x00\x11\x26\x31\x85\x62\x68\x82\x4e\x01\x21\x37\xb7\xcd\xf6\x58\x88\xdb\xa2\x02\xb5\xb9\x6d\xa8\x3f\x65\x45\x8a\x9b\x1e\xd8\x4c\xc7\x6b\x22\x04\x4a\x3d\x10\x55\xc2\x9c\xd4\x03\x1b\x47\x31\x86\xce\x1c\x4f\x15\x63\xe8\x8c\x35\xb2\x1d\xaa\x79\xa4\x6c\x4b\x47\xd2\x53\x61\xdc\xca\x53\xa7\x1c\x7d\x35\x3d\x53\x32\x63\xf6\x9d\x90\x2a\x27\x88\xc0\xf9\xb6\x9e\x43\xb1\xbd\x07\xac\x3d\x21\xcb\x3f\xff\xbb\x78\x32\x37\xdf\x3e\x45\x02\x9c\x9b\x46\xaa\x1c\xbd\xa4\x54\xa8\x63\x24\xdc\xdb\x8f\x95\x5a\x3e\xdd\x3a\x6a\xa4\xc9\x8f\x82\x2d\x0c\x28\x59\x05\x23\x94\x14\x07\x56\xc1\x1b\x89\x91\x4a\x1d\x9c\xaa\xb1\x9f\xdf\xa4\x70\xe9\x50\x42\x8e\x3d\x7f\x7a\xc9\x1b\x54\x57\xbc\x23\x7a\x63\xc7\x42\x4f\x77\x94\xfe\x2c\x66\xfe\xdb\xf7\x10\xb1\x85\xde\x0e\x5e\x78\xa4\x56\xed\xbb\x92\x16\xf5\x88\x29\x3f\xa2\xe4\x58\x01\xa7\x84\x3a\x62\xba\x3a\x27\xd4\x74\xb0\xdc\x9b\xd4\x7d\x41\x06\xe2\x3c\x8e\x19\xa5\x7c\xd8\xd1\x0d\xce\x17\x95\x53\xff\x83\x7d\x81\x52\x77\xd8\x66\x09\xe8\x43\xe7\x08\x16\x7e\xfc\x99\x88\xe1\xfe\x56\x59\x77\x8f\xd4\x43\x57\x69\x44\xce\xae\xe3\xa1\xc4\xac\x68\xc0\xb7\x05\x18\x4a\xd6\xc1\x7f\x78\x2c\x31\x09\xef\xc3\x06\x70\x74\x9f\x23\xe6\xf9\xdb\xb6\x16\xb3\xf1\xb1\x8c\xc2\x25\xa2\x8c\x54\x47\x09\xbb\x7e\x7c\x07\x12\x9b\x57\x70\x9a\x9a\x45\xff\xf0\xda\x9c\x8d\xf5\x89\xcc\xca\xb7\xf2\x65\x20\x34\x3f\x98\x4c\x47\x7e\xb5\x88\x6f\xf9\x55\x6f\x5f\xae\x34\xaa\xf7\x73\x29\xb3\xf3\x0b\x69\xa2\x60\x3f\xe7\x48\x6f\x1d\x03\x85\x3d\xf1\xe1\x08\x89\xe1\xfa\xc1\xd1\xf1\x7c\xdb\xe4\xdd\xcd\xb7\x12\x3c\xe8\x3f\x21\x62\xca\x33\x07\x5c\x7f\x71\x46\xf9\x98\xef\xae\x74\xc0\x8f\xb8\x29\xb3\xa8\xc3\x1c\x50\x1c\xa0\x93\x87\x75\x53\x71\x80\xca\xc8\x88\x9d\x76\xe0\x29\x13\x7e\x93\x93\x9f\x82\xf9\xd4\xa3\xe6\x4b\x36\x41\x48\xb9\xd0\xf1\x28\x7e\x9c\x19\x3b\xce\x48\x85\xf3\x29\x05\x7d\xf7\xb1\x48\x44\x87\x08\x56\x53\x8e\x1e\x4a\xa7\x6d\x74\xa1\x82\xf9\xd4\x57\x56\xce\xd1\x79\x7b\x4f\xa1\xee\xce\xb3\x1a\x0e\x40\x15\x7f\x9a\x30\x36\xa5\x9c\xf9\xd3\xa6\xdd\x91\x0e\x48\x51\xe2\x3a\xfe\x38\x17\x2d\x67\x66\xa1\x68\x4a\xae\xc4\xbe\x51\x94\x15\xd2\x61\x9d\x67\x4a\xad\xb4\xb0\x43\x15\x95\xa7\xe6\xbe\xe1\xeb\x20\x8c\x54\xfb\xb5\x6a\x44\xba\x28\xf0\x4e\x3d\x90\xa0\x42\xcd\x54\x22\x64\x4c\x12\x54\xc5\x12\xff\x46\x4f\xd2\xa4\x1f\x31\x70\x3e\xfa\x3a\x4e\x5f\xae\x92\xbe\x88\x42\xcc\xf6\x64\xb3\x9a\x29\x75\x44\x4f\xea\xe5\xf4\x89\x09\xe0\x48\x3c\x51\x3e\x5f\x82\x6b\x70\x7c\x72\xfe\xaa\xa3\x33\xd5\x4e\x60\x15\x21\xf6\x8d\x02\x4e\xbd\xf2\x11\xd5\x74\x57\x3e\x22\xec\x15\x07\xe6\x89\xef\x4b\xa0\x9a\x1a\x6b\xce\xa0\x9a\xac\xd0\x97\x1b\xf8\x2b\x9f\x6a\x43\xb7\x54\xe3\xb9\xa4\xaf\x4e\x4c\xca\x86\xf9\xe2\xba\x48\x8b\x9b\x09\xa2\x5a\x7c\x17\x58\x28\x0a\xb6\x53\x0f\x36\x90\xd0\x31\x35\xfb\xf9\x8b\x84\xab\xa9\xc8\x59\xab\xf2\xa9\x24\x5c\x4b\x9b\x92\x70\x2d\x6d\xa8\x77\x59\x21\x29\xe0\x6b\xa6\x41\x5b\xed\x88\x2d\xb2\x54\x61\xac\x18\x48\xc3\x23\xf1\xe9\x24\x55\x47\x67\xb3\xff\x0c\x08\xed\x9c\xab\x84\xab\x29\xed\x75\xfc\x2d\xb8\x01\xdd\xe4\x94\x63\xd0\xcd\xf1\xd4\x63\x8f\x08\x4b\xf2\x1b\x2c\x74\xfa\xa0\xe8\x5d\x3d\x94\x04\xcc\x43\x69\x4b\x23\xc4\x0c\xc1\x89\xa7\xcb\x10\x9c\x8a\xf0\xf9\x85\x2b\x27\xa4\xa0\x67\x68\x4b\x25\xb1\x3a\x4b\xda\x77\x8c\x97\x48\x63\x65\xad\x2a\xb9\xd4\xf9\xf9\x5a\x09\x50\xf0\x04\xad\xd3\x42\xf9\xb4\xc4\x31\xf4\x87\x86\xbe\xd2\x05\x1d\x07\x30\x67\x7e\x96\x94\x88\x91\x9f\x2f\x9d\xa3\x4b\x7f\x3e\x69\xb2\x85\x7e\x3e\x5a\xb2\x89\x7f\x78\x44\xe0\x26\x65\xae\xaa\x47\xfa\x6e\xae\x6c\xa1\xb4\xa7\x33\x3d\x56\xc2\xc8\x38\x25\xa7\xaa\x47\x7a\x1e\x8e\x65\x94\xd2\xd0\x81\xad\x10\x24\x28\x67\x25\xc1\x7a\x4a\xd4\x8a\x53\x55\x9d\x33\x65\x04\x66\x87\x72\x57\xc3\x69\x8e\xc7\xc7\xf3\xf7\xf9\xdb\x4c\x25\x13\x72\x2b\xe5\x1e\xff\xa7\x02\x08\x9d\xaf\xa7\x5a\x5d\x94\xf2\xa6\x72\x2a\x91\x55\x89\x24\xf8\x39\xa8\x87\x45\xca\x7a\xf9\x7e\x81\x5b\x9c\xa5\x4c\x56\x85\xab\xc8\xa5\x4c\x56\xe5\x74\x1b\x4b\x89\xac\x8e\xb3\xe6\xc7\x2a\x8f\x4b\x37\xc5\xf9\xb0\x53\x0d\xfc\x42\x35\x9c\x13\x6c\xb5\x2e\x67\x92\x02\xce\xb5\x1c\x22\xc8\x71\xc8\x6e\xca\xbc\xed\x43\xd7\x7a\x21\xc4\x2c\x82\xd7\xcb\x37\x01\xbc\x4e\x5d\x2f\xf3\xc4\x48\x2b\xf6\x5e\x0f\xba\xe0\x10\x62\x93\xfe\x19\x2c\x34\x69\xd3\x8f\xaa\x38\xe8\x2d\x07\xec\x99\x57\xfa\x67\xa6\x18\xa1\x84\xc6\x9e\x34\xa2\x9b\x80\x63\xa4\x1e\x5b\x1e\x67\x9a\xb4\x72\xcf\x9c\xf8\x11\x20\x87\xc2\xa5\x04\x50\xf5\xc8\xc8\x00\xa1\x0c\x66\x53\x6c\x81\xa5\xb6\x5e\x89\x43\x0e\x35\xe5\xab\xa4\x11\x5c\x0c\xe9\x50\xb2\xf8\x40\xc9\x8c\x7c\xaa\xb1\xf3\x68\x86\xa4\x3f\xae\x48\x71\x81\xea\xe1\xc3\xf7\x52\x58\xa0\x83\x38\x10\x4b\xa8\xa2\x83\x60\x1c\x4b\x61\x81\x0a\xd2\x71\x1d\x43\xee\xc7\x19\xca\x27\x5f\xd6\xef\xb0\xa4\x1a\xa9\x46\x58\xf0\x96\x32\x9b\xe7\x33\x2d\xda\x0d\x66\xf1\xbc\x08\x0b\xe4\x78\x70\x37\xa9\xdd\x3f\x42\x79\xa5\xe9\xb9\x99\xad\x50\x8f\xbd\x60\xf9\x6f\xea\xd0\x9e\xee\x4c\xbf\x12\x1f\x50\x82\x5b\x14\x1a\x04\xdd\x90\x81\x80\x6e\x98\x69\xc3\x0e\xb3\x9a\x5f\xcd\x13\x7f\x86\x12\xbc\x3f\xb5\xdd\xe2\x93\xe6\x02\xff\x54\xd3\xd9\x8f\xb6\x62\x28\xad\x48\x66\x4b\x97\xe3\x07\x0b\x2b\x78\x53\xb9\x1e\x8a\x55\xa7\x3b\x8b\x95\xa5\x0d\x54\x64\xe1\x63\x29\xc5\xf3\xc5\x1c\x6c\x9f\xee\x0a\xad\x58\x29\x3e\x94\xc4\xe1\x0c\xe5\xed\x96\x05\x93\xdd\x4f\xd2\xbf\x9b\xf4\x11\xba\xd1\x79\xdf\x0c\x38\x40\xdd\x4d\x7e\xd5\x28\x1d\xf4\x39\x80\x65\x50\xe0\xa0\xc2\x0b\x81\xa5\xc0\x41\xf7\x8f\x07\xa4\x87\x3d\xa1\xec\xcb\x61\x71\x05\x94\x2a\xe5\x4a\x61\xf3\x46\x4d\xa1\xd7\xc8\x42\x79\x29\x02\x50\x75\x16\xfa\x9b\xfa\x4a\x3e\x36\x28\xf7\x87\x2f\xcd\x40\xc0\xba\xd6\x69\xf7\xff\x95\x42\xa9\x0f\xf8\xe0\x74\x10\x75\x47\x9d\xbb\x49\xc3\x7f\x19\x89\xee\x83\x8e\x87\x62\x42\x42\x8a\x83\x11\x40\xa7\x1d\xa7\xf0\xbe\xe2\xfd\xd4\xf3\x45\x8b\x68\x33\x5b\x31\xcb\xe1\x7f\xb8\xae\x5f\xe4\xae\x9a\xe9\xeb\x62\x35\xf3\xab\xd2\x38\x5f\x29\x54\xef\x10\x06\x02\x54\x95\xf9\x94\xb1\xb6\x8c\x6b\xb9\x77\x69\xd2\xf6\x6b\xa3\xb3\xcb\xc1\x70\xa9\xc7\xca\xee\xc5\x1a\x48\xd7\x71\xfd\xba\xce\x70\x1e\xf5\xd8\x38\x1b\x29\x94\xed\x4f\x80\xb7\xa5\x78\x3f\xf5\xcc\x4c\xda\xf6\xcf\x28\x65\x80\x9d\x61\x09\x01\x6b\xce\x57\x2a\xdd\xae\x86\x81\x10\xee\xc7\xe3\x28\xb6\xb1\x08\x3b\xb0\x8c\xa8\x02\xe2\xb2\x8a\x85\x13\xe7\xa4\xa5\x88\x3e\xf5\xa4\xaf\x8a\xe1\x33\x08\xf7\xb1\x84\xaf\x2a\x7d\x86\x52\x07\xd0\x5f\x0e\xef\x03\x02\x67\x15\x0b\x2a\xa2\x34\xac\x62\xae\x7b\x9a\x90\xcb\x0e\xe6\x31\xf4\x8a\xec\x97\x37\xc9\x3a\xf3\xa7\xf0\xf3\x2d\x7d\x35\x76\xc7\xf1\x90\x6f\x52\x7b\x38\x8d\x08\x6a\x81\x49\xbe\x8a\x81\x3c\x11\x64\xc2\x65\x55\x07\xe4\xbc\x29\x25\xe3\x64\xb2\x88\x21\x44\xf0\x8b\xe5\x18\x42\xf3\xa9\xe7\xa7\x99\xa4\x1a\xf3\x24\xb2\x52\x91\x80\x2a\xb0\x99\x65\x04\xd7\x79\x86\x52\x83\xa9\xd3\x11\x11\x78\x0b\xb1\x8a\x9f\x81\x39\x72\xf1\x4d\x1a\x48\x84\xaa\x35\x84\xab\x83\x74\x5d\xc6\x70\x91\xc7\xf3\x26\x1d\x46\x24\xd4\x4f\x8d\x42\xc9\xaa\x02\x4c\xbe\x4a\x2c\x7d\x7a\x84\xe5\xd4\x59\x22\x5b\x4e\xa0\x36\x56\x31\x73\xfd\x87\xb7\xf1\xab\xd8\xd5\xf1\xb4\x09\xe7\xa5\x1e\xab\x7b\x76\x54\xb1\xb2\x75\xb4\xe2\xb6\x1c\x2a\x88\xcb\xe1\x25\x14\x57\x3d\xd9\x34\x17\x5c\x7a\xe6\x53\x2d\x2e\xdd\x13\xa4\xeb\x88\x19\x73\x71\x93\x84\xb6\xbd\x06\x43\x09\xe9\xd5\x3d\xa0\xbc\xa7\x7b\xda\x5c\x16\x15\xa9\x57\xfe\x26\xec\x18\x05\x12\xaa\xe7\x91\x4f\xfd\x1e\x2f\xd4\x6d\x20\x02\xd0\x5b\x02\x95\xd5\xf3\x45\x99\x7d\x24\x1c\x62\xd6\x65\xa4\x7e\xcb\xb7\xba\x68\x3f\x59\xce\x0b\x3f\x1e\x92\xf4\xe2\xb8\x8a\xdc\xbf\x2c\x3b\x09\xe6\xb6\x2e\x3f\x49\xcc\x94\xc8\x41\x7c\x96\x54\x24\x1d\x3a\xd2\xa6\x53\xe9\x43\x99\x33\x11\x80\xc2\x97\x55\xb0\xa9\xcb\xf8\xb2\xb3\x84\xf2\xae\xa1\x3d\x9d\x47\x79\x80\xb7\x2e\xe7\xac\x45\x63\x1a\x5d\x76\xa2\x14\x15\x43\xa8\x82\x0f\x5a\x57\xf2\x2d\xb2\x94\xdc\x03\x60\xb6\x28\xa4\x50\x39\x4b\xbe\xb5\x74\xbe\x58\x2d\xb9\xd8\x9c\xa9\xee\xa6\x30\x33\xf3\xad\xb8\x32\x73\x85\xb7\xe3\xa2\xb3\x42\x0f\x9e\x0f\x25\x79\xec\xa3\xf4\xaa\x8e\x00\x4f\x34\x95\x45\x64\x20\x4e\x51\x8b\xc8\x40\x04\x54\x5c\x06\x86\x35\xa2\xa4\x2c\x45\xff\x29\xb8\xc8\x57\xc5\x6d\x81\x01\xa2\xb8\x3d\xa5\xa6\x19\x4b\xa0\x2b\x65\x8a\x5e\x4c\xdf\x2b\x67\x3e\x76\xa3\x10\x5d\xf5\x7c\x28\x3f\x7c\x29\x50\x08\x00\xfa\xa3\x1b\xf3\xcc\x97\xc1\x5f\x3c\xa7\x5c\xc6\x77\x11\xb7\x68\x55\xa7\xf9\x43\x41\x54\xaf\x3a\x86\x80\x63\x01\x9d\xe8\x32\xc7\x02\xba\x72\xa2\x70\x30\xa0\x46\xdc\x95\x55\xf1\xd0\x66\x58\x9c\x07\xd9\x16\x0a\x07\x34\x72\x30\xa8\x7e\x0a\x40\x50\xc7\x55\xcd\x16\x19\x89\x6c\xff\xf3\x4a\x99\x25\x59\x49\xff\x9c\x18\x36\xf5\x68\x24\x57\x7e\xd4\xdb\xf3\xf4\x07\x95\x99\xa1\xe8\x78\x58\x32\x68\x9b\x6e\xf0\x4f\xf5\xb5\x52\x9a\x90\xad\x76\x96\x54\x63\x06\x4e\x2d\x5a\x01\xf6\x33\x90\x32\xa2\x51\xae\x8a\xe1\x36\x52\xab\xc2\xa5\x22\x91\x1d\x2a\x88\xe7\x5f\xab\xda\x8a\xbb\xf2\xa3\x8e\x8a\x3c\x0f\x59\xcd\xc1\xda\x79\xdf\xb0\x9a\x45\x1c\xa7\xa6\x66\x7c\x90\xfd\x07\xab\x39\x0a\x43\x6c\x2a\x72\xa0\xa1\x79\x9b\x91\x19\x39\xa9\x09\x6e\x76\x9c\xec\x2f\x01\xcc\xea\xd9\x42\xd9\x56\x2c\x7f\x43\x4c\x96\xc3\x0a\xe1\x79\x58\xcd\x2a\x13\x35\xd4\x30\xe3\xd2\x03\x85\x15\xaa\x98\xae\xce\x78\x16\xbe\x6f\xe6\x50\xf8\xae\x59\x2b\x76\xca\xb0\xd4\x10\x4c\x8e\x14\xd4\x08\xdb\xb3\x9a\xef\xad\x5b\x66\xc4\x6a\xb2\xe5\x5b\xef\xfe\x96\x7a\xbd\x2d\x5a\xbe\xf5\x2a\xc0\x6a\xcd\xfc\x93\xa1\xd8\x5b\xc6\x03\xed\x45\x3a\xb4\x98\xb6\x4d\x48\x1f\xa0\x45\x4b\xa8\xb2\xca\x5d\xdf\x6a\x66\xa7\x9e\x1f\xbd\x6b\x9f\x42\x82\xf4\xd1\xfb\x30\x0d\xfd\x15\x0c\xe8\xc4\x26\x6d\x18\xfb\x25\xdf\xaa\x7f\x99\x31\x19\xfb\x60\x59\x56\x1f\x74\x6f\x42\x9a\x4b\x06\x94\x04\x34\x1b\xb7\x47\x74\xe5\xd3\xfe\xcf\xff\x3a\x38\x92\xd5\xb1\xee\x39\x01\x75\x9b\x64\xcc\x81\x33\xb0\xf1\x3e\x74\x75\x47\x02\x85\xd9\xba\xc1\xf0\xcf\x7f\xee\xea\x01\xf5\xf3\x8a\xf1\xe3\xd4\xea\xa2\x91\x48\xc7\x46\x0c\xd3\xa5\x04\x6c\x35\xfe\x0e\x01\xc3\x0a\x17\x12\x4b\xb8\xb0\xc2\xdd\xc5\xea\x16\x63\xec\xa1\x6e\x31\x86\x59\x20\x58\xd8\xa8\x58\xb6\x86\x85\xf5\x91\xae\x46\x36\x85\x14\xc7\x20\x9a\xba\x55\x54\xa6\xc3\x78\x68\x22\x48\xac\xbe\x8c\xd9\x40\xcc\x77\xcb\x26\x96\x52\xc8\xb0\x7a\xb2\xbf\xc8\x94\xc6\xdb\xd5\xd5\xcd\x21\xc8\xfc\xbe\xe9\x10\x8b\x87\xc9\x8e\x70\x72\x70\xa2\x46\xac\xa7\xd5\x37\xbb\x3a\xa4\x84\x0e\x8a\x47\xb8\xb1\x02\x9e\x7c\x39\x3d\x5a\x5c\x0f\xa4\x47\x23\x80\xe7\xea\x66\x18\xec\x82\x01\x22\x87\xc3\xe2\xb0\x47\x0a\x0c\xf2\x12\xc6\xac\x9e\x98\x38\x04\x1d\x8a\x0f\x61\xc8\x7b\x7f\x8e\x50\x62\x11\xb8\x49\xd9\xd2\x4a\x46\x3d\x6c\xfe\xcc\x50\x08\x36\x7a\xc0\xc2\x23\xd8\x86\x8d\x1a\x18\x68\x98\x0d\xd2\xa2\xb5\x22\x02\x80\xc0\x42\xbc\xcd\x59\x43\x51\x15\x01\x0c\x2d\x65\x52\x2b\x51\x2d\xc3\xaf\xa4\x88\x03\xba\x14\x67\xa8\x9e\x3d\xf5\x7c\x5c\x98\x46\xc4\x41\xc8\x6b\x03\xc7\xc0\xdc\x2d\x22\x0b\xc5\xdf\x21\xe4\x58\xc9\xf1\x54\xc0\xb1\x0a\xd8\x73\x0d\x5b\x43\x99\x57\xbf\x72\x8d\xbf\x63\x60\xb6\xb3\x87\x1d\x58\x68\x64\x49\xcc\x5d\x47\x3e\xb5\x6d\xc2\x20\x2d\x9b\x38\xc4\x08\xdf\x35\x2a\xa7\xd3\xe1\x17\xd5\x60\x4f\x97\x92\xae\x9d\x57\xff\x0f\xc2\x7b\xd8\x54\xe2\xfc\x15\xec\x17\xe7\x28\xc5\x1c\xaa\x00\xe9\x96\x91\x60\x3c\x7d\x59\x06\x82\x71\xcd\xbc\x86\xd1\x15\x33\x3d\x77\xb8\x90\x33\x3f\x7e\xdd\xbb\x74\xf6\xe7\x49\x77\x9b\xc6\x77\x9d\xcc\xeb\xe4\x4e\x1c\x79\x23\x7c\xd7\xa8\xaf\x14\x6a\x9f\x22\x7d\x04\xf6\xaa\xbc\xf7\x5e\x24\x7a\x8b\xa5\x34\xfd\xd8\x1a\x34\xe3\x9a\x0e\xb0\xcf\xc1\x12\x74\x17\x77\xeb\x8b\x50\x41\x84\xe2\x5b\x0a\x0e\x74\x54\x5e\xfa\xad\xc9\x9d\x23\xfa\x84\xe8\x40\x2d\x15\xfb\xf6\x07\xf9\x2c\x7c\x57\x2d\xaf\x54\xe4\xf5\x7b\xfe\xf4\xf5\xb6\xa7\xc8\xe9\xdb\x72\x28\x9e\x30\x10\x1d\x32\x60\x9a\xb7\xb6\x4b\xb8\xac\x5a\x5e\xa1\x6c\xce\xc3\x08\x93\x73\xdf\x0c\xb9\x35\x61\x4c\x4a\x44\x10\x33\x66\x11\xc4\xea\x1a\x8a\x55\x61\xda\x69\xbb\x26\xd5\xa0\x94\x6a\x7e\xfc\xea\xd3\xfc\xa8\x5d\x8c\x6e\x16\x7e\xea\x24\x8a\xcf\x5a\x7e\x45\x13\x0f\x99\x33\xaf\x91\x37\xfb\x26\x2f\x8d\x24\x85\xf6\xac\xb7\x90\x3e\xf5\x21\x94\x05\x9a\xaa\x05\xeb\x6d\x81\x42\xe6\x53\xe9\x8f\x42\x7f\x16\x67\xa3\x74\xc8\xee\x46\xc2\xdf\x2d\x01\xa1\x2a\xf1\x96\xd7\xf2\x83\xbb\xb8\xa0\x14\x90\xa7\x82\x40\x5d\x02\x3b\xd5\x82\x59\xb1\x0c\x0e\x25\x7c\xed\x5a\x18\x1d\x47\x4a\x6f\xa1\x57\x38\x4b\x3a\x67\x5a\x1f\x19\xa7\x6e\x34\xca\x91\x6a\xed\xa2\xa3\x7b\x58\x15\xe9\xad\x5c\x37\x25\xb5\x3a\x09\xf9\x60\x51\x0c\x68\x2a\x19\x89\x4c\x03\xf0\xc2\xcb\x69\xd1\x3a\x41\x06\x97\x71\x49\x27\x82\x5f\x11\x7a\x6a\xe1\xd4\xa9\x94\x69\x35\x62\x85\x94\x69\x84\x2e\x5c\x40\x8f\xe2\x3e\xdb\xf8\xe8\x10\x7b\x0a\x99\x53\x0b\x47\x29\x05\xc9\xb9\xa2\xf0\xb7\x2f\xe7\x09\x58\xb6\x8c\x35\x2a\x67\x0a\xf1\x9c\x42\xf9\x08\xdf\x53\xe8\xbe\x63\x20\x29\xb9\x59\x2d\xb8\x47\x04\x3d\xaa\xc4\x73\x5a\x1b\x3d\xde\xa1\x2e\x51\xf4\xd5\x4f\x48\xb8\xe1\x5d\x02\x22\x15\xa2\xeb\xac\xcd\x02\xa5\x8c\x0e\x30\x23\x7e\x32\x1c\x17\x99\x41\x42\xaf\x03\x25\x21\x5c\x50\x8d\x8e\xdf\x9e\xf6\x33\x7f\x7a\xba\x8e\x7c\xca\x48\xfc\xed\xdb\x37\x91\xf1\x5c\x38\x34\xcd\x04\xc5\xbc\x14\x9a\xa6\x10\x7f\x6f\x09\xfe\x53\xc1\x97\xac\xb7\x7d\x0a\x71\xa8\xbd\xad\x53\xfb\x7f\x70\x7c\xbf\xd9\x37\x58\x16\xc2\xf8\xd4\xc2\x51\xca\xb8\x9d\xb8\x9d\xdf\x76\xb6\x03\xfc\x5d\x0e\x2f\xd3\xe2\x97\x12\x36\xe7\xc8\xd1\xc6\x89\xba\x48\x9b\x7e\x93\x5a\x95\xf4\x5d\x30\xea\xe8\x4d\xa5\xed\x3a\xcf\x87\x92\x69\x83\x9e\x78\x03\x12\x44\xc3\x39\x15\x57\x18\xf3\x6d\x64\x74\x1c\x85\x8e\x4b\x93\x40\xac\xeb\xed\x77\x87\xc4\xbc\x5b\x6f\xbf\xfa\x1e\xa8\x1c\x45\xa6\x29\x31\x91\xde\x78\x00\xb2\x0e\x76\x4c\xc5\xff\x66\x94\x4d\x41\xd8\x1a\x65\x53\xf0\x64\x28\x68\x4d\x25\x9c\xc6\x32\xe6\x86\x4b\xd5\xe5\x7c\x5b\x13\xd8\xfb\x32\x04\xa7\x73\x4a\x7b\x3b\xac\x67\x26\x9a\xf7\xe1\xf0\xe2\xc7\x5b\x0e\x93\xd6\x31\x6b\x48\x7a\x7f\x93\xee\xce\x84\x52\x07\x98\x2f\x52\x68\x8d\x91\x42\x43\x04\x06\x94\x4e\x70\xc4\x3d\x5d\xc2\xd8\x9c\xe1\xa7\x8f\x85\x22\xbd\x23\x0e\x0d\xe1\x2c\x96\xe3\xd0\xd4\x12\x4a\x72\x98\x7d\xfc\x41\xa5\x8d\x14\x3a\x4a\x08\x76\x98\x61\x35\xe5\x4a\x23\xda\x0c\x1c\x94\x3f\x93\xfe\xa4\x4d\xf1\x08\xde\x93\x8f\xb3\x1a\xf3\xc4\x6d\x09\x49\x53\x0b\x06\xaf\x90\x34\x67\x5c\x34\xca\xa8\x75\xe6\x68\xae\x84\x5a\x27\x4f\xda\x16\xf9\xb4\x88\x84\xb6\x9c\x4f\x8b\x38\xb0\xeb\xe3\x37\x1c\x33\x1d\x70\x5e\xf9\x92\x42\x25\x7c\xec\xa1\xcc\x5c\x2c\x2d\xd1\x6c\xc0\xe4\x2e\x87\xaf\x09\x68\x79\x39\xa7\x56\x1c\x09\x1f\xa4\x05\xb2\xc4\xd1\x6c\x4a\xce\xf5\x1f\xbf\x20\x42\x20\x08\x78\x73\xf1\xd6\x7a\x19\x77\xd3\x41\x9d\xae\x8f\x23\x46\x10\x59\x66\x7d\xd0\xb2\x33\xcd\x28\x1f\x6f\xc6\x22\x63\x3d\x0e\x0a\x81\x6b\x2a\x21\xd0\x97\xb1\x35\x3d\xfe\xa4\x2f\x6f\x84\xb0\xc7\xbf\xe6\xbd\x1a\x4a\x6b\x8d\x68\x73\x36\xac\x83\x90\x48\xeb\xab\xbc\xc7\xbc\xc3\x5c\x02\xde\x9c\x00\xc0\x97\xe2\xd5\x9c\xe5\x0c\x65\x3c\x6f\x5a\x94\x72\x66\x15\x84\x96\xa9\xe0\x58\x96\xd1\x32\x3c\xba\x5b\x5f\x47\x3c\x07\x5d\xb5\x84\x96\xa9\x80\xa6\x97\xf1\x30\x3d\xa7\xbb\xaf\xf5\x00\x86\xa1\x70\x2d\x35\xac\xff\x45\x54\xe0\x5b\xf9\x72\x2c\x63\x35\xbf\x06\x58\x91\x50\x65\x29\xb2\xcb\x5d\x4a\xff\x7c\x6d\x07\x14\x69\x09\x05\x53\x49\x63\xb0\xbe\x3c\x59\x46\x40\x09\x05\x53\x89\x43\xbf\x04\x82\xa9\x24\x2a\x58\xc6\xc0\x10\x22\x7e\x09\x03\x73\x44\x39\x0b\x03\x73\xce\x4c\xb3\x05\x4e\xfb\x1b\x2c\xb8\xbe\x3c\x62\x4d\xa5\x7e\xcd\xcc\xaa\x0b\x7c\x05\x70\x64\x11\x68\x06\xa4\xd1\xfa\x62\x56\x8f\xfc\xa9\x5b\x05\xe6\x47\x70\x99\xab\x62\x69\x09\xd7\x92\x18\xba\xcb\xb0\x96\xdc\xc0\x28\xf7\x54\x25\x14\xf8\x72\xea\xa9\x0b\x68\xc4\x72\xee\xa9\x38\x96\x7f\x7e\xcb\x53\x42\xfd\xbc\x31\xf9\x54\xd7\x2a\xf1\xe5\x0a\xb9\x52\x01\xd3\x2e\x21\x57\x4a\x46\xa5\x48\x32\xe3\xe9\xdb\x64\x0b\x57\xc8\x21\x1c\x4d\xaa\xd1\x0e\xc9\x2d\x9c\x90\x2b\x85\x9c\x17\xeb\x67\x71\x83\x1d\x43\x12\x2b\x1e\x70\xae\x1f\x4f\x4f\xb1\xcc\x95\x89\xaa\x12\x7b\x7b\x19\x71\x52\xd2\x88\xd9\x83\x70\xdb\xcb\x90\x13\x80\xd0\x4b\x18\x93\xbb\xda\x06\xa9\x71\xa1\xd0\x0d\x15\x99\xbc\xf6\x58\x86\x8a\x4c\xde\x77\x2c\x23\x3e\x1a\x11\x7f\xf7\xcb\xf7\xaf\xf8\x8f\xb7\x61\x1d\xd3\x99\x01\x6f\xd2\xe6\xa5\xf7\xc9\x7e\xf9\x70\xd3\xf3\x2d\x15\x9f\x90\xcc\x4a\xbe\xf5\x8b\x7c\x6f\xff\xfd\x1a\x0c\x67\x40\x4a\x94\x9d\x14\x72\x35\x36\xf8\x55\xcf\x4a\xb9\xbf\xd9\x2f\x74\x86\x15\xd3\x7e\xf1\x42\x8f\x7a\x8c\x09\xc1\x4b\xb3\x5f\x56\x04\x3d\x9f\xfa\x46\xfd\x62\x30\x3a\x01\x97\x0c\xcd\x1b\x79\xf0\x23\x41\x24\xcc\xb6\xfb\x85\xe0\xb5\x46\xd9\x64\x58\xe2\xe9\xe8\x36\x3e\x83\xe7\x4f\xfb\x85\x92\x1f\x34\x2a\xb7\x48\xc7\xa9\xb4\x5f\xdb\x37\xf7\xa1\x94\x0d\xaa\xd1\xa8\x36\xd9\xab\x3c\x9f\x5a\x17\x5c\x4c\xaf\x80\x3a\xd7\xc1\x9c\x08\xfe\xef\xec\xad\x6d\x0b\xae\x51\x5e\x34\x79\x38\x13\x45\x0f\xa5\x1b\x81\x1a\xca\x47\x4e\x33\xe0\x26\x26\x0c\x1e\x9e\x7d\x18\x1e\x4b\xc0\xee\x2d\x64\x45\xb9\x2c\x78\x37\x21\x62\x08\x53\xb2\x05\xb4\x38\xf1\xd6\xed\x84\x88\x19\x21\xe1\x1b\xea\xb5\xec\x65\xed\x8d\xa6\x70\x22\xb7\x9b\xf2\x01\x6b\xd2\xa6\xdf\x1b\xbd\x52\xcf\x76\x87\xf2\xed\x5b\xa3\xce\xa7\xca\x39\xe7\x3d\xb0\x0f\xcb\xe5\x91\x2f\xf5\x86\xef\xc5\xfc\x38\x93\x5c\xe3\x3f\x9f\x63\x59\x5b\x27\x60\xea\xc4\x02\xdd\x4a\xc0\x54\xcb\xa4\x1a\xdb\xe7\x99\x2d\xb4\xf3\xc5\x5c\x2e\x66\x8b\x61\x2d\x2f\x09\x94\x13\x99\xe4\x53\x69\x63\xfc\x29\xfb\xf0\xfe\x9c\xf9\xd2\x47\xc1\x93\x79\x05\xf7\x9a\x1e\xd8\x11\x8b\x77\x6c\x1f\xd9\xbd\xf9\x58\xb1\x81\xea\xdf\xaf\x74\x36\x21\x68\xda\xd3\xea\x47\xfb\x26\xfd\xd3\xe4\xb1\x06\x82\x64\x54\x82\x3f\xee\xd3\xc7\x34\x56\x56\x88\x8c\x42\x28\xf8\x6d\x44\x46\xff\x97\x34\xef\xcf\x90\x92\xa1\x2c\xde\xe9\xa7\x03\x38\xd2\xb6\x00\x1a\x85\x68\x27\xfb\xb4\x67\x04\xdf\xcc\x76\xfa\x26\x6e\x74\xb6\xc1\x1b\x9c\x99\xf6\x69\x13\x72\xf2\xa5\x4f\x12\x69\x71\xda\x63\x99\x32\x7a\x97\x1f\xe9\x5d\x4a\x1d\x3a\x3f\x94\xd9\x00\x66\x3f\xed\x32\x21\xbc\xf9\x3e\x25\x57\x5e\x99\x1f\x1f\x22\x47\x3e\x95\x90\xb1\x25\xba\x4f\x0e\x91\x93\x71\x21\x73\x2a\x73\x20\x87\x4a\x4f\x87\x1c\x77\x0e\x26\x75\x96\xa5\x0b\x34\xd0\x3e\x79\x11\x40\x07\x22\x90\x42\xc2\x7a\x21\xef\xe5\x23\x42\xfe\x3e\xb1\x04\x53\x91\x8c\x05\x42\xa1\xef\xd3\x00\x44\x32\xec\x6c\x47\xb2\x21\x4f\xda\x3e\x79\x58\x9e\xb1\x28\xc0\x11\x61\x03\xf7\xe9\xec\xaa\xe9\x90\x8e\x9f\x3c\x37\xde\xa7\xad\xc2\xca\x5c\xea\xf8\xc9\x81\x64\x2b\xe6\x4d\xe5\x11\xea\x56\xd2\xa5\x4a\x68\xb0\x7d\x4a\xfb\xe0\x4d\xdd\xc5\x16\x23\xdb\xbb\xa0\x8a\xce\x14\x4a\x40\x33\xaf\x0e\x87\x43\x22\xae\x2d\xf0\xc6\xd1\x88\xe0\xb7\x1d\x0f\x87\xf7\x8c\xbb\x38\xf4\xb2\x2d\x89\x2d\x84\x46\x01\xb0\xbb\x0b\x67\x15\x3a\x5e\x10\x71\x95\x46\xd0\x43\x93\x5f\x0d\xd1\xc0\x27\xb8\x0b\x22\x0f\xa6\x28\x36\x26\x50\x44\x4e\xe5\x74\xb5\x87\x54\x0c\x4d\x1b\x6c\x3b\x18\x0d\xa6\xc4\x18\x0d\x02\x2e\x6f\xa1\x32\x2a\x88\x9a\x2d\x50\xc6\xa8\xec\x2f\x25\x76\xaa\x5c\x16\xee\x62\x4c\x11\xe7\x8a\xad\xc4\x4e\x95\xe0\x72\xbb\xf8\x60\xd3\x53\xab\x18\x8f\xf8\x49\xdb\x21\x78\xf0\x16\xec\x62\x14\x11\xd2\x51\x31\x77\x0a\x6f\x83\x76\x59\x6c\x5a\xc6\x21\x03\x97\xa0\xa2\xbb\xf8\x46\x14\xfb\x76\x0b\xdd\x51\x09\x62\xb6\x0b\x2c\x7a\xa6\xc9\xaf\xfb\x93\x6f\x7f\xea\x2c\xd5\x5a\x58\xa2\xe1\x1d\x90\xa7\x64\xd6\xc3\xb0\x4c\x88\x9f\x58\xa5\xb3\xb8\xa2\x10\xac\x05\x0f\x2f\xb2\xfc\xf2\x6d\x53\x6c\x1b\xc1\x2e\x8e\x4a\x18\xb3\x2d\xa0\xc5\xa8\x48\x1c\xb2\x30\xe1\x5f\xdd\x86\x4b\x5c\x3c\xab\xde\x86\x4b\x60\x9b\x6f\xc3\x25\x78\xe1\xb8\xaf\xc1\xc8\x52\x91\x79\xc8\xe6\xf8\x06\x13\xc1\x4b\xea\x6d\x4c\x04\x81\xa3\x36\x31\x79\x46\xfb\xdb\x09\xbe\x9d\x95\x89\x77\xa7\xfb\x32\x97\x20\x48\x2e\x87\xc5\xc4\x2b\xb9\x85\x90\x28\xcf\xb0\x89\xd0\x95\x32\x4d\x3c\x7b\xec\xb2\x13\x37\x06\x9d\x40\x11\xe5\x75\xa5\xd0\xaa\xa7\x31\x30\x47\xb0\xcc\xb8\xe4\xd2\x25\xb2\xe1\x76\xcc\x9d\x2b\x6d\x64\xad\x53\xeb\xcf\x1a\x96\x6f\x65\xac\x36\x22\x1c\x6c\x85\xd9\x39\x39\x08\x6e\x21\x28\x2a\xc1\xbb\xf6\xe5\x1b\x27\x9e\x8b\x6e\x21\x28\x6a\xec\x11\x03\x28\x9e\xd5\x94\xbf\x84\x67\x1e\xdb\x21\x78\x1a\x5e\x87\x0d\x80\xa2\xe7\x47\xef\x9b\xa7\x03\xda\x37\xe1\x03\x99\x59\x25\x13\x82\x75\xec\xd3\xc4\xae\xc6\x2a\xb2\x19\x14\x91\xe7\x24\x58\xce\x36\xd4\x82\xe7\xce\x1b\x10\x04\x0f\xd4\x77\x45\x9d\xd8\xb9\xb3\x8d\x89\xe0\x3e\x7c\x0b\x13\x51\x89\x49\xb4\x2b\x26\x4f\x49\x45\x8e\xbe\x32\xa1\x98\xd9\x90\xf0\x9a\x47\x4d\x52\xa4\xa7\xb7\x24\x4a\xc6\x92\x10\x12\xa2\xf2\xe8\x72\x0b\x08\x51\xaf\x74\xde\xc8\x41\xee\x1e\x76\x75\xa6\xc0\x2b\x85\x6c\x0d\xba\x2b\xb0\x20\xd1\x42\x77\xb5\xff\xa2\xa6\x07\xd2\x7e\x19\xa6\x5f\x5c\x5f\xa9\xd4\xf6\x11\xb5\x6c\xfa\xca\xa7\x82\xca\x44\xfd\x57\x5f\x46\xa7\x37\x32\x81\xc8\xb6\xb0\x8d\x66\x20\x98\xd1\x76\x6e\xa3\xc9\x93\x8b\x0d\xd0\x20\x2a\xa4\x59\x4b\x94\x50\x5d\x1d\x68\x50\x7a\x73\x69\x57\xd8\x56\x04\x9c\xa3\xe0\x2c\xd8\x84\xc0\x21\x19\xc4\x76\x08\x9c\x4c\x73\xc3\x4a\xe6\x04\x22\x88\x42\x25\xcc\xcd\x6e\x41\x1c\xbf\x20\x2d\xbd\x5a\x4a\xbd\x06\xf4\x96\x4b\x00\x6c\x20\xa3\x12\x08\x90\xb3\x9b\x0f\xa0\x47\x7e\x64\x0d\x52\x38\xdc\x0a\x23\x53\xee\x23\x62\xa2\x6e\x41\x16\x0a\xc8\xe1\x2d\xc8\x42\x01\xe8\xb4\x95\x85\xe8\x6e\xb2\x43\x9a\xd9\xae\x94\xda\xbe\xa6\x11\x8e\x9c\x57\xbe\xd5\x8d\x4a\xc6\x29\x8b\x16\x24\xc4\x6e\x6c\xd4\x2b\x85\x9e\x77\xe6\xd6\x17\x76\xf8\xf2\x77\xf3\x4e\xcd\xd4\x62\xd0\x62\xc0\x09\x4b\x50\x88\x9a\xbe\x1d\x91\xe6\x18\x4f\x2b\xbe\xd3\x41\xb1\x0b\x4c\x50\x62\xb1\x75\xcc\x05\xec\x93\x6e\xac\x70\xf6\x63\x37\x27\x70\x80\x73\xd8\x19\x9e\x39\x6c\x41\x0b\x2a\x2f\xef\xb7\x83\xd0\x74\xee\x8a\x76\x47\x11\x20\xda\xba\x33\xac\xcf\x7c\x2b\x45\x70\xfd\x1d\xe5\x7b\x77\x0e\xbc\x35\x7d\xd7\x66\x40\x0f\x38\x42\xcd\x23\x3f\x85\x35\x38\x63\x5f\x3a\x5e\x0d\xcf\x09\x77\x37\x93\x64\x94\x13\xa0\x2c\xe3\x72\xec\xcd\x9e\x42\xed\x14\x96\xaf\x13\xc8\x61\xe6\x53\x54\x65\x1a\xb1\x33\x2a\x53\xa2\xc3\x14\x6f\xb9\xb7\x83\xd9\x74\xd2\x65\xec\xee\x5b\x66\x6e\x5f\xb6\xb3\x28\x45\xe8\x74\x3f\x81\x8d\x2e\xef\x16\x33\xf0\x45\x77\x5e\x48\x92\x12\x6c\x85\xba\xa9\x17\xbc\x68\x48\x03\x2f\x50\xb7\x21\x0d\x17\xa1\x14\x76\xb7\x6d\x81\x22\x10\xa2\xe1\x38\x9f\x32\xaf\x42\xca\xd4\xf5\x2c\x9f\xdf\x59\x10\x61\x7b\x77\xfc\x68\x99\x04\xc1\xf7\xc8\xc6\xb2\x05\x7e\x18\x3c\xa3\xdc\x02\x3f\x9c\xb1\xc3\x3a\x86\x06\xb6\xb0\xb0\x0f\xa5\x66\x90\x9c\xf1\x11\x1e\xdd\xf9\x04\xd0\x36\x4a\xcc\x34\x88\xee\xb7\x0d\x8b\x20\xc2\xd1\xee\x36\xa2\xaf\x54\xaa\x7d\x7b\xa6\x16\xed\x45\x44\x05\x38\x08\x70\x8e\x7b\x0c\xba\x33\x20\x15\xae\x8a\xd9\x71\x7a\x25\xfc\x3d\x7b\x18\x2a\x73\xa4\x1e\x79\x4f\x19\x86\x41\x11\x04\x46\xda\xc3\x49\x6e\x70\x81\x38\xee\x0d\x3e\xd8\x3d\xcc\x76\x28\xa5\x61\xed\x76\xa4\x41\x33\x1a\x46\xb4\x73\x26\x45\xc6\x0d\x43\xfc\xd0\x16\xc3\x36\x6a\xcf\x7f\xec\x89\xb4\x21\xd3\x04\x23\x66\x90\x4e\x82\x11\xca\x7e\xe5\xd1\xf1\x76\x0c\x9c\x2b\xe7\x28\x63\x19\x40\x11\xee\x61\x96\x6b\xf9\x51\x00\xda\x92\x32\x29\x36\xb6\xba\x22\xe0\x8c\x9a\x21\x92\x6c\x39\x75\xca\xa2\x41\xe9\x28\xc4\xcd\x49\xba\xeb\xad\x08\x37\x95\x27\x41\x7b\xc0\x70\xe9\xb6\x1d\x0f\x8c\xde\xe1\x01\x62\x31\x18\x02\x51\xb8\xf7\xda\x23\x7c\xc3\xa8\x2c\x18\x11\x76\x42\x32\x8c\x58\x17\xc3\x9c\x82\x06\x1a\xb8\x86\xb2\xc4\xb0\x0a\x3d\xf7\x09\x8b\x26\x15\xb5\xe6\x78\xcc\x1b\x85\xad\xa9\x00\x5f\xf6\x74\x8c\xd1\x28\x2b\xe3\x1a\x26\x08\xf5\x2d\x78\x42\x01\xf7\xbf\x95\xe5\xa8\x82\x33\xdb\xd3\x4a\xef\x29\xb3\x80\x48\x21\x36\x2f\x92\x99\xd8\x33\x44\x6b\xdc\x06\x27\xe4\x5c\x30\x39\x77\x33\x32\xc7\xa2\x21\x7e\xd1\x16\x38\xe1\x8c\x8d\x30\xed\xfd\x39\x43\x59\x37\xa0\xe6\x14\x8a\xe6\x1e\x4a\x48\xf1\x12\x47\xb5\x89\x50\xc2\x39\xe4\x70\x33\x7d\xb6\xbf\x41\xdf\x5b\x48\x86\x12\x1b\x78\x62\x12\xe3\xc9\x9a\x30\x09\x03\x83\x11\x52\x26\x57\x77\x06\x2d\x1f\x3d\xf0\xe6\x3d\xc1\x09\x73\xc4\x99\xb6\x64\x11\x43\x93\xfb\x3c\x8e\x8e\x93\x80\xcf\x1c\x16\x9d\xb9\x88\xa0\x63\xdb\x61\x62\x00\x85\x6d\xa1\x1c\x0a\x6f\xb8\xb6\x32\x17\x55\xa0\x41\xdb\x38\x86\x09\xac\x71\x2f\x59\x34\x71\x9b\x2c\x8e\xc1\x23\xa4\x26\x2f\x94\xc3\xa7\xc1\xd1\x6b\x32\x77\x13\x52\xf1\x6f\xb0\xd4\x1c\xc1\x25\x07\xff\x85\x33\x16\x6f\x8c\xf3\x0a\x91\xd7\x68\x2b\xa0\xcb\x49\xd8\xf4\xbd\xbc\x5c\x8c\x6a\xa1\x60\x70\x39\x29\xa0\xcb\xc1\x93\xa5\x2d\x88\x43\x8d\x03\x73\xe1\xbd\x43\xa2\x18\xf0\xc0\x55\xf6\x36\xe0\xa1\x70\xdb\xbf\x97\xcf\x9c\x6c\x9a\xc5\x31\xe4\xa2\x5a\x2f\x10\xdc\x44\x82\x22\x2e\x38\xf7\xc2\xbc\xe9\x29\x55\x94\x79\x56\x6f\xe9\x1a\x25\x22\x55\xf9\x8a\x0a\x17\x6d\x7b\xb1\x51\x71\x70\x38\x5f\xd1\x04\xf0\xb7\x97\x4f\x1e\x88\x38\x47\x74\xe1\x3d\xda\xde\x08\x7c\xbc\x0b\x7b\xd0\xdb\x02\xe9\xde\x36\x28\xaf\x09\x4b\xed\x78\x2f\x38\xf8\xb7\x52\x1d\x15\x90\x5d\x7b\xa3\x1b\x30\xf1\xb6\x95\x03\x57\x7f\xdb\xf1\x5e\x62\x13\x6f\x4c\x9f\x33\x15\xd9\xc7\x73\x41\x49\xe9\xce\xd4\x63\x06\x9a\xe9\x9e\x8f\x29\x67\x3a\x6f\x25\x0c\xb7\x6d\x8b\x87\xf4\xcf\x26\x31\x3b\x5e\x91\x61\x8e\xe7\x1c\x27\x0c\xc6\xf9\x74\xcf\xb9\xa8\x60\x2f\x05\x78\x39\x1e\x8f\xd0\xc6\x94\x7d\x4a\xdd\x3f\x7a\xe0\xa5\x67\xc5\xb6\xd7\x3a\x53\xa2\xa3\xc7\xf1\x4a\xd9\xbd\x9a\x60\xd6\xf6\xb6\x48\x4e\xfb\x0e\x8d\x37\x33\x3f\x9b\x16\xe9\x80\xc1\xd2\x44\xed\xd8\xdb\x62\x38\x33\xb2\xad\xdb\x3c\x5d\x6f\xc2\x0e\x14\xa8\x53\xc9\x0f\x5e\x50\x56\xed\xf4\xf5\xad\x27\x1f\xe7\xf3\x29\xeb\x35\x20\x75\x14\xab\xf9\xd4\x87\x96\x1e\xd2\xc7\xdc\x9e\x6f\x59\xa2\x74\xe1\xa7\x73\x1b\xdf\x3a\x0e\x34\x59\xeb\xb6\x72\x03\xd5\x38\x1b\x15\x81\xa5\x86\x69\x15\x80\xe5\x00\xc3\xb3\x15\x80\xe5\x04\x9e\xb9\xdf\x7e\xd4\x11\x8f\xe6\x9b\x53\x4a\x4f\x3d\xf0\x13\x63\x31\xca\x69\xa6\x5e\x41\xfa\xc9\xe3\xb9\xdf\x0e\x98\x88\xbd\x21\xb4\xc6\x45\x48\xed\xed\xb0\x2a\x7d\x8e\xbf\xc3\xc2\xee\xb7\x98\x64\x02\xce\xdb\x4a\x39\x74\x93\x69\x85\x1e\xa5\x54\x2e\xd7\xcc\x89\x82\xb0\x00\x85\xdf\x04\x61\x89\x18\x34\xce\xe3\x22\x16\xd2\x7e\xdb\xae\x04\x7c\xb6\xdf\x76\xb9\xce\x50\x66\x37\xd6\xc1\x97\x47\x84\x4d\xda\x24\x2b\x22\xf9\xda\x7e\x63\x12\x20\x87\x84\x02\x39\x89\xe9\xb0\xdf\x9b\x19\x63\xb6\xf1\x63\x8c\x90\x5f\x2d\x53\xbe\x35\xc7\xbb\xf7\x0e\xb6\x92\x5b\x83\x8f\x6f\x5a\x51\xab\x1f\xef\x4e\x5e\x81\xec\x8f\x43\xff\xc3\xd4\x1f\xc3\x0e\xc9\x81\xb4\x1d\xf8\xe4\xe0\x16\x72\x3b\xf2\x49\xbc\xa7\x1f\x54\xf9\x08\x79\xef\x9d\xb8\x2e\x9d\x1a\xa8\x91\x68\x70\x7f\xc2\x0b\x1d\x72\xab\xef\x13\x4a\x89\x82\x8e\x74\x81\x99\x0f\x89\x6c\x61\x2c\x4e\xe9\xca\xf4\x7d\xf0\x80\x20\x18\x05\xe7\xb8\x1b\x0d\x69\xb3\x91\x13\xb6\x21\x1c\x71\x85\x09\xb3\x51\x73\xde\x56\xc6\xa1\xbb\x22\xfa\x47\x58\xd7\x57\xc8\x8f\xbe\xcd\x9f\x7a\x21\x95\xee\x4a\xd4\x80\xfe\xda\x42\x65\x14\xa2\x46\x6f\xe1\x2e\x6a\x45\x88\x2b\x51\x50\x0d\x2f\x0a\x67\x51\xc3\xa8\x8e\x68\x92\xcb\x24\x12\x03\x11\x66\x6a\x2b\xc0\xc9\x3d\x2c\xf7\xc6\xb0\x0b\xd0\x67\x5b\xb0\x8b\x1a\x4e\x14\xea\xa2\xe6\x0a\xc6\x59\x82\x8e\xdc\xba\x3a\xdc\x09\x8f\x91\xb7\x60\x16\x15\x54\xe6\x76\xce\xa0\xf9\x6f\xad\x3e\xc5\xe4\x53\xfb\xd3\x70\xac\x28\xde\xc9\xdd\x9f\x54\x4b\x6f\xd3\xa8\xf8\x12\x03\xd4\x79\x82\x3a\xd9\x7e\xb6\x02\x9e\xd4\xf8\x64\x1c\xef\xe4\xe2\xf5\xf6\xfe\x86\xdb\x68\xd5\x3e\x75\xae\xf6\xf7\x77\xb2\x55\x52\xea\x5b\xc5\x14\x0e\xa5\x3d\x19\x21\xcd\x6e\x25\x9d\xf8\x78\x70\xe9\x84\xcd\x57\x64\xda\x77\x21\x0c\xa9\x58\x98\xa0\x1c\xe0\x94\x1d\xa8\xe6\xe0\x6e\xf8\x47\x8e\x8c\x5f\x04\xd3\x0c\x69\x69\x78\xe4\x5b\x2d\x30\x12\xc3\x70\x8f\x19\x96\xff\xe2\x23\x45\x5d\x7c\x7d\x85\x93\x8b\xd8\xaf\x43\xea\x64\x5a\xe4\x23\x8d\x97\x46\x98\x8e\x01\xc2\x6b\x7f\x79\x39\xcb\xb1\xfe\xeb\xbb\xff\xdc\x13\x3b\x94\x49\xce\x94\x5f\x22\x41\xd4\x14\xfa\x34\x86\xad\x22\x70\xc6\x73\xd7\xe9\x58\x26\xd9\xf7\x3f\xb8\xaa\x43\xe9\x95\x12\xbc\x4a\x78\x92\x5c\xd9\x1a\xc7\x91\x63\xcc\xcf\xa1\x9b\xe2\x5c\xf9\xf1\x28\xb1\xfe\x07\x07\x8a\xe0\x19\x35\x1c\xf8\xd3\x79\x34\x47\x9e\x9f\x45\x0d\x73\xf0\xcb\x62\xe7\x53\xc9\x16\x26\xef\x87\xf8\xb8\xf2\xad\x76\x2b\xc2\x58\x59\x80\x4e\xa0\xa3\xfb\x67\xf4\xf3\x0c\x25\xab\x2a\x6d\xf8\x20\x90\xbb\xdf\x1f\x37\x21\x28\x6d\x01\x39\x4a\x5c\x22\x06\x72\xc4\xb0\x73\xe8\x90\xdc\x7e\x0b\xc7\x71\x46\x07\x3a\x74\x48\x8b\xa3\x45\xb0\x8e\x0a\x1e\x6e\xff\x58\x76\x3a\xc0\xb2\xa7\xac\xfd\xf3\xbf\x4e\x18\x88\x6d\x88\xc7\x73\x45\xfa\xb3\x64\x29\x29\xb4\xd6\xc0\x0e\xf8\xd9\xc5\x96\x1b\xdc\x9f\x95\x88\x66\xa7\x8f\x97\x79\xc0\xd7\xe8\x37\xe9\xfe\x0c\x28\xf7\xe0\x84\xba\x7b\xe0\x70\x66\x37\xa5\x93\xb5\xe6\xfc\xa6\xc4\x76\x9a\x8e\x9b\x5a\xae\xf4\x80\xf4\xf2\x54\x28\xef\xcc\x23\x85\x5a\x1e\xad\x64\x1f\x2f\x0b\x0b\x9d\xd0\x6f\x4a\x3e\x98\x93\x16\xed\x20\xb5\x07\xf9\x26\xc5\x11\x57\x28\xcd\xc0\x45\x57\xcd\x10\x17\x4d\xc8\x25\x51\x2f\x3a\xe7\xcb\x92\x87\x52\xf3\x52\x1f\x7d\x90\x63\xc8\xc2\xf4\x26\x8b\xc7\x11\x52\x91\x2d\x27\x2d\xca\x67\x6e\x7b\xf8\xa6\x24\x3d\x33\x01\x52\x26\x2d\x93\x63\x0f\x95\xd3\xb2\xf7\xa1\x3c\x41\xb5\x5e\x8c\x51\xa6\x43\xbd\x18\xbf\x9d\x50\xbe\xcf\xbe\x49\x86\xcc\x7a\x38\x06\x4c\xcf\x28\x37\xd3\x4c\xa3\x7e\x9f\xec\xe8\x12\x37\xe9\x75\xf6\xaf\xc7\x60\x28\x15\x92\x76\x26\x64\x77\x69\x83\x34\xeb\x33\xf1\x07\x07\xcb\xa3\x40\x02\x62\xc9\xc7\xdb\xff\x76\x48\x5b\xe5\xf9\xd5\x7a\xac\xba\x8b\x87\x97\xb7\x52\x88\xb4\x67\x09\x0f\xe7\x8c\x33\xce\xf6\x26\x87\x1e\x79\xd2\xa8\x85\x72\xa5\x6c\xf1\x27\x83\x93\x54\x1e\xce\x31\x75\x93\x7a\xcc\xe2\xd4\x4b\x37\xa9\x33\x62\x0b\xc5\x2c\xe5\xdb\xaf\xbf\x4d\xc5\x3e\xd2\x7b\x82\x0f\x87\x3e\x48\x19\xaf\xa1\x2a\xdd\x95\x1c\x1e\xaf\x23\xdf\xea\xfe\xa7\x85\x52\x08\xfb\x83\x61\x13\x97\x25\x94\xe5\x13\xb3\x70\xfa\xc1\x53\x67\x68\x27\x7b\xae\x42\xd1\x48\x81\xd4\x2d\xc0\x95\x42\x25\x20\x62\xf9\x4f\xbf\xa3\x9c\xee\x80\x41\x13\xce\x98\x73\x53\x5e\xee\x33\x85\xbe\x0b\xaa\x21\xad\xc5\xce\x7c\x6c\x66\xa0\xbb\xc6\x49\xcc\xfa\x77\x9c\xd8\xfb\x5b\x89\x81\xa7\x5e\x1b\xb3\x67\x2a\xfa\xb9\x5e\xf3\xcd\xc9\x3b\xdd\x1a\x52\x2f\x46\x4a\x28\x09\xd4\xa7\x4c\xef\x78\x9e\x32\x31\x76\x9d\x50\xda\xc0\x30\xd8\x89\x95\x8e\x8c\x10\x30\xe2\x6e\xb2\x43\x9a\x89\x06\x14\x93\x92\x6f\x7d\x6e\xce\x94\xd9\x74\xab\xf9\x73\x4a\x3d\xb3\x64\xda\x78\xbe\x7e\xb9\x29\x07\xec\x74\x35\x8a\x2b\x71\x39\x1b\xd0\x4d\x79\x8b\xb2\x93\x8a\x25\x61\x3b\xa0\x04\x8d\x38\x3d\x2c\x61\x0f\xee\x4f\x29\x74\x42\xd6\x5e\x53\xaa\x99\x65\x37\x18\x17\x70\x75\x7a\x67\x5c\x40\x85\xf7\x8a\x45\x1a\xfc\x5e\x32\xcd\x7c\xea\x84\x16\x2f\x36\xbe\x2f\xe2\x2b\x2c\x5d\x48\x1d\x10\x6a\x79\x7e\xe8\xc1\x76\x23\x2e\xbc\x90\x27\x70\x14\x37\xed\xe8\x8d\x0b\x03\xe1\xec\x90\x66\x62\xf8\xeb\xc2\x41\x51\xf3\xf1\x70\xe9\x05\xe9\x81\x86\x82\x85\xf2\xad\x7b\x7f\xa6\x13\xf2\xa7\xa0\x2d\x2e\x8e\xad\xb4\xc2\x84\xa5\x6c\x29\x3d\x79\x83\x12\x77\xb5\x50\xc8\x28\x4f\xc9\x05\xac\xe2\x21\x0d\x4d\xa4\x1e\xa9\x00\x3b\x98\x6e\xca\x37\x2c\x19\x09\x07\xc8\x33\xa5\xae\x97\x85\xf0\x1d\xf9\x78\x65\x52\x6e\x4e\xed\x0d\x35\xe4\x1b\xf3\x2b\xca\x55\x17\xdf\x67\x47\x7f\x5d\x06\x88\xcd\x92\x42\x63\x6f\xdc\x68\xf5\x4b\x27\x5f\xbd\xdf\x64\xf5\x06\x48\xa9\x04\x06\xd2\xa4\xe2\xee\x69\xf9\x96\xd8\xc8\x27\xa4\x66\xa5\x17\x28\x05\x97\x65\xe7\x28\x4f\xcc\xdd\x79\xaa\x75\x9e\x98\x99\x8a\x30\xea\x61\xc0\x3a\xe1\x8d\x09\x29\x43\xae\x85\x92\xb5\xd8\x2f\x28\x2b\xb8\x12\x52\x00\x84\x19\xca\x0c\x98\xde\xdb\x39\x5c\x52\x8f\x05\x37\x93\x52\x59\x35\x36\x88\x22\x04\x54\x67\x9e\xbd\xa9\x4b\x8f\xec\xe9\xed\x72\x7f\x18\x8a\x0f\x85\x3d\x65\x4a\x3e\x30\x52\xa9\xef\xf4\x33\x2e\x87\x22\xcf\xb0\x2c\xa2\x3a\x9d\x13\x7e\xb4\x60\xf1\x54\x14\x35\x5c\xec\xa4\x2e\x9d\x35\x69\x98\x5c\x58\x07\xca\xe9\x52\x6b\x4f\xa1\x95\x4c\x4b\xa1\xad\x69\x2a\xd2\x8d\x76\xad\xfd\x05\x05\x6e\x1f\xca\x07\x58\xa4\x64\xb3\x5d\xd5\xa1\xb2\x42\x7f\x22\xc1\xef\x6f\x2f\xf9\x3e\xe9\x90\x57\x0f\x8e\xf7\x43\xfa\xf1\x82\x65\x74\x2b\x3d\xfc\x52\xf5\xa6\x58\xaf\x0e\x69\xc3\x80\xb5\x55\xe2\x96\xb3\xb0\x3d\xdb\x62\x12\xf8\x55\xe7\xf6\xf1\x4a\xe7\x75\x51\x58\x59\x86\xe6\x99\x46\xdc\x36\x0e\x4e\xc8\x1a\xbd\x7f\x2f\x05\xfb\xd5\x77\xd6\xb3\x22\xde\x94\x55\xe5\x00\x68\x74\x93\x92\x09\x83\x2e\xf8\x8d\xcd\x44\xa2\xf9\x51\xbb\x73\x1c\xde\x94\x6d\x36\xb8\xad\xdb\x57\x3b\xb1\x9a\xf5\xaa\x7d\x54\x2c\xad\xee\xd3\x11\xa6\x55\xe7\xc6\x05\xe9\xa2\xcb\xe6\x72\x8c\x7c\xea\x1e\xa4\xcc\x87\x6c\x84\x54\x67\x05\xd9\xf6\x7e\xba\xee\x6c\xa1\x7d\xe8\x02\xb9\x4c\x46\xe2\x1b\xe3\xca\xc4\x77\x07\x5e\xe9\x2d\x9f\x8a\xa3\x46\x3e\xad\xda\x53\xf9\xd4\xa7\x47\x76\xa3\xb2\x9f\xd4\x8a\xbd\xa3\xeb\xe4\x63\xbc\x32\x4a\xd6\xf3\x4a\xa9\x85\x6f\xba\xa7\xe4\xbb\x17\xfb\x4f\x37\xc6\xb5\xc2\x8b\xbe\x05\xee\xac\xb5\xf3\x9d\xc4\xa8\xf2\x2b\x77\x27\x4a\xb9\x29\xad\xed\x4c\x2d\x8e\x4b\xc3\x38\x94\x27\xbe\xc0\x3f\x7e\x9b\x3e\x73\x1a\xd0\xfd\x6c\xad\x98\x3b\x1d\x11\x99\x15\xf1\x42\xcf\xfc\x29\xad\x8b\x08\xef\xf6\xbb\xa4\x6f\x7e\x52\x7a\xe5\x4b\x6d\x1a\xe6\x6a\x38\xe0\x45\x67\xbb\x29\x4d\x49\x29\xec\xa8\x81\xc9\xcc\xe4\x28\xdd\x48\x75\x76\xae\x3e\x86\x00\xac\x95\xc5\x1a\x38\x39\xae\x14\xb2\xc5\x53\xea\x03\x3c\x7a\x7f\x64\xd2\x53\xaa\xbe\xb3\x19\xfd\x50\xfc\xea\x3d\xdf\xfe\xfc\x2b\x7d\xf0\x13\xef\x89\x55\x3c\xbc\x89\xe6\x84\x52\x16\x74\xb8\x92\x37\xdd\xbd\xe7\xcf\x7b\x4e\x1a\xd2\xcb\x97\x9f\x8d\x2d\x35\x38\xbd\x60\x30\xeb\xc5\x77\x6d\x1c\x89\x74\xfb\x59\x0d\x8c\xbf\xa9\xcb\x73\x72\x41\x2a\x37\x09\xb6\x98\xae\x42\x4b\xce\x64\xc3\x31\x0e\x7b\xcf\x9f\x70\x5e\xbe\x55\x9c\x9a\x92\x46\x24\x3e\x33\xf1\x8a\xfd\x7b\xd6\x50\x3f\x75\xc0\x94\xb2\x7b\xd4\xc6\x51\x64\x62\x59\xa3\x6b\x7c\x4f\x3a\x5e\x57\xbe\x2d\x9e\xbc\x02\x69\x9b\x05\xab\x5c\x2f\xbe\xab\x13\x4b\xdc\x94\x72\x95\x1f\xa1\xf4\x36\x04\x19\xa3\x37\xdd\xb5\xbd\x42\xe9\xd6\x8d\x51\x4e\x47\xd8\x99\x68\x1e\x5d\x93\x96\x58\xa3\x93\x5d\x8b\x06\x99\x98\xdd\x57\x4a\xef\xd5\x6b\x9c\x61\xf4\xa2\xfb\x28\xe3\x4f\x14\xe1\xfd\xe9\xf2\xb8\x18\xa6\x51\x20\x3d\x3d\xb0\xe1\x88\xb6\x99\x8e\x47\xc8\x3e\xd1\x05\xeb\xdd\xdb\x13\xf2\x27\xcb\x87\x4f\x39\x1a\x63\xbe\x38\xd9\x47\x61\x85\x74\xfb\x7a\xbd\x6a\x3e\xb5\xfe\xbf\x42\x2a\x0b\xcd\x91\x4f\x7d\x9c\x38\x53\x38\x05\xb3\x08\x65\x8b\x04\x1b\x7c\x3a\xf6\x52\x4e\x8f\xd3\x31\xc0\x32\x99\xf2\xb4\xb6\x23\x14\xbb\x88\x65\xd8\x36\x2a\x33\x14\x19\xb6\x67\xfa\x2e\x5f\xeb\xe8\xf9\xf4\xab\x7a\xf2\xa5\xad\x34\x7a\xe0\x57\xe5\x07\x47\x16\xbd\x2a\xaf\x8d\x83\x91\x6f\x5f\xdb\x91\x2f\x2d\x9e\x90\x87\xca\xca\x51\x1b\xbc\xbf\xfc\xaa\x36\x46\xf8\xc2\x7d\x4a\x0f\xfc\xa8\x7c\xbc\x18\xa6\xf2\x69\xd4\x96\x36\x11\x1e\xcc\xad\x6e\x63\x6b\x83\x85\x16\x10\x1f\xa4\xf9\xb2\x5b\x13\x4b\x5a\x97\xaa\x35\x4c\xab\x6b\xd4\xda\x8e\x7c\x69\x79\x59\x43\x4a\xb4\xa3\x6f\x9d\x25\xe3\xea\x0f\x49\xf7\xe8\x90\x8e\xc8\x17\x62\x78\x6d\xeb\xf1\x8c\x6c\x5b\x31\x32\x6c\x4b\x07\x24\x9b\xaf\x58\xaf\x3e\x42\x3a\x6a\x7a\x3e\x9d\xfa\x34\xb5\x5a\x2a\xbb\x45\xa7\xbe\x28\x85\x53\x8a\x2f\x4a\x47\xb8\x6d\x1b\x15\xc6\xfa\xf9\x8d\x79\x3b\x43\x89\x47\x98\x90\xed\x3d\xcd\x86\xcf\x3d\xe9\xc8\xa7\x76\x72\x60\x47\x6f\x4e\x1a\x18\xe4\xba\xee\xac\x8d\xce\xfa\x71\xfa\x7c\x28\x8f\x92\xce\xfa\x8a\x04\xcb\x78\x3b\x8e\x68\x2c\x48\x67\xc5\xe8\x2c\xb4\xde\xa6\x9f\x2f\x4c\x3d\x52\x5d\xc4\xf2\xdb\x5e\x3d\x58\x76\x3b\x52\x4c\x5c\x71\x4a\x6e\x71\x16\x98\x5d\x17\xa1\xe5\x7c\xca\x84\x5d\x84\x2d\x9d\xaf\x62\x3c\x8d\xa0\x44\x4b\x48\x31\x45\xc6\x2c\x25\x1a\x27\xc1\xf6\x8a\xc0\xcf\x1b\x5f\x13\x86\xe8\x0e\xdc\x36\xf5\x38\xa6\x14\xfd\xd9\x4a\xe1\x51\x53\x8f\xa5\x0a\x7f\xbe\x9d\x34\x2c\x9e\xb2\x37\x6a\x14\x23\xcc\xef\xcd\xdb\x53\xb8\xfd\x6d\x0a\x7d\xbe\xca\xb7\xd3\xf2\x1c\x95\xf6\x66\xa3\x3c\xa4\x16\xbb\x84\xf2\x40\x0b\x94\xdf\xef\x0d\x28\x29\xbf\x34\xa2\xb3\x74\xc3\x86\xf5\xeb\xf3\x59\x9f\x6a\x6e\xde\x9f\x6c\x0c\xdf\x60\xce\x9c\x3f\xdf\x0e\x0a\x70\x85\xba\xed\x93\x86\x22\x78\xf3\x40\xb8\xff\x19\xfd\xfb\xfe\xd6\xaa\x11\x23\x51\x17\x9a\xb5\x5d\x69\x53\x21\x1c\x67\xca\xb6\xfc\xd7\x13\xca\x3c\xdb\xd3\xa6\xf6\xed\x08\x25\x45\x89\x3d\xfb\xe6\xbc\x89\x8d\xf8\x36\x02\x3f\x26\xc9\x1b\xa6\xc1\x3a\x78\x5b\xd2\x62\x95\xbd\x1d\xb4\x7a\xb6\x90\xd6\xdc\x18\x49\x7e\x9b\x3e\x5e\xe8\x75\xdf\x58\xb6\x2b\x15\xf9\x2d\x88\x3b\xef\x84\x10\x57\xc7\xc0\xfd\xc8\x25\x19\x29\xe3\xf4\x10\x27\x3b\xf7\x83\xcf\x98\x49\xf8\x70\x97\x4d\xff\x3e\x30\x02\x7a\xfe\x83\x3b\x0b\xa1\xf8\xf1\xd2\x23\x4b\x3e\x78\xb3\x58\x17\xbf\xf8\x2e\x23\x94\x1f\x99\xd0\x79\xbf\xea\x9e\x71\x2a\xeb\xc2\xb0\x36\xb4\xda\xc7\x01\x55\x67\x1a\xd5\xd5\x4f\x63\xf1\xf5\xc8\xfb\xee\x11\x8d\xe2\x73\xc4\x3a\x76\x32\x85\x76\x85\xb2\x38\x83\xa9\xfc\xaa\xfb\x42\xc9\xe9\xe1\x76\x6d\x0f\x25\x9f\xfb\xf3\xa3\xfa\x53\xf3\x1f\xfd\xa9\x90\xea\x0f\x6a\x4c\x4f\xba\x6b\x63\x47\x7e\x70\x14\x63\x74\x7f\x39\xdb\xd0\xd9\x2f\xe2\x95\x39\xf9\xb2\x4a\x33\xa4\x04\x08\x3e\x47\x27\x4c\x88\xc1\xf0\xf5\x0b\xaf\x12\xca\x12\x63\x84\x94\x17\x16\x6d\x44\xc6\x84\x89\x4d\xee\x14\x09\xc7\xc4\x0c\xc8\xad\x20\xfa\xd1\xb7\x82\xe3\x85\xb0\xf9\xe2\xbd\xc4\x6a\xe1\x92\x10\x09\xcb\x3b\xef\x6c\x51\x5f\x12\x8e\xd7\xc8\xb7\xde\x21\x9c\x9b\xbe\x4e\xb4\x97\x35\xfc\xe2\x46\x66\xe3\x7d\x1d\xcf\xad\x63\x7b\xeb\xe5\xf7\x01\xb2\xfb\x26\x75\x03\xd3\x52\x93\xad\xf6\x4c\x1a\xe6\x35\x1b\xf3\x8b\x63\x28\x53\xb1\x65\x2d\xa1\xe0\x7d\xd7\xd7\x50\x6e\xce\x61\x70\x0d\x8c\x6f\xdf\xee\x5d\x03\xcb\xfc\xcb\x66\x63\xdb\x7e\x9d\xb9\x71\xbc\x52\xaf\x57\x39\x85\x6f\xff\x9a\xc2\xcf\xcd\x3b\x35\xf5\xda\xcc\x61\xef\xfd\x6c\x37\xd7\x50\x0a\x2c\x80\x0a\xf3\xa3\xed\xf1\x82\x79\x7f\x0e\x50\x3a\x59\x0c\x65\x23\xa8\x0d\x8d\xa6\x64\x04\x23\x5e\xfa\x9f\xc3\xfe\x3d\x5f\x7a\x4f\xc0\x75\x3f\x0e\xbb\x23\x7f\x2a\x21\x0f\xa2\xd4\x79\x0b\x1a\xb2\xc0\x2f\xbc\xaf\xc1\x29\x43\x2f\xbc\x47\x3c\xbe\x3f\x78\x85\x25\xe5\x51\x37\x1c\x49\xfe\x81\xf1\xca\xb7\xac\x03\xf5\x0a\x02\xdd\x32\x4e\xdd\x0c\x16\xf4\x9d\x9f\x71\x8f\xd7\x4c\xa1\x82\x14\xb1\x9d\x74\x51\x78\xe8\x6d\xce\x9f\xd2\xfc\x67\x3d\x80\x6a\x24\x1d\xc1\x64\x01\x95\x8e\xe0\x6e\x85\xee\x2e\xba\xcb\x58\x84\x5d\x19\x47\x0a\x3f\xb2\xbb\xd2\x21\xf7\x9d\xde\xca\x8d\xdb\x52\xab\x0d\xad\xc1\xa1\x88\x7b\xc4\x4c\x26\x57\x4a\x59\x79\x0b\x91\x96\x42\xf3\x17\x87\xe3\x1f\x4a\x9f\xf3\xf0\x0f\x70\x4a\x38\xc1\x90\x85\xf1\x4a\xab\x52\x95\xe9\x3b\xfe\x13\xaf\xf6\x7c\x21\x63\x3c\x9d\xf3\x85\x8c\xb1\x26\x98\x4a\x34\x70\xf8\xed\xdc\x4d\xd1\xfd\x01\xa9\x09\x7c\x0a\x9b\xa2\x5a\x87\x92\x40\xf4\xde\x99\xba\x84\x2c\xf8\x5b\xa7\x2f\x21\xaf\xe1\x83\xd9\x7c\xf9\x69\x9f\x6f\xee\x6f\xd2\x2a\xce\x42\x64\x3a\x5d\x00\x0f\x8f\x6e\xd2\xcf\x36\xf9\xd6\xb7\x4d\x2c\xc4\x7c\x79\x45\x1b\x8d\x2e\x33\x5c\x87\x1a\xfe\x94\xfe\x2d\xef\x07\xba\xb0\xf4\xd2\xaf\xa6\x0d\xdb\xee\x3d\xf5\x78\xbb\x1e\xe9\x90\x59\x75\xa6\x22\x19\xc4\x19\x9a\xed\xea\x46\x9b\x0a\x21\xea\xa0\xe4\x37\xe5\x2c\xc7\xfc\x27\x14\xbb\x11\xa2\x37\x25\x0f\xc6\x99\x2f\xcd\x6d\x19\xb3\x35\x46\x0b\x25\x73\xc1\x5a\x7d\x1e\xb8\x2c\x69\xe3\xf0\x39\xc8\x6a\x72\xe6\x6a\xd1\xc2\x6e\x1e\x2c\xdf\x11\x12\x9d\xda\x20\x2d\xd0\xce\x54\xec\x48\xbf\xe6\xea\xe9\xd7\xe9\x97\x03\xb9\xf4\x79\x00\x23\x3c\x69\xc8\x7a\xde\xf9\x2f\x6f\x92\x76\x3b\xa4\x97\x85\x66\x27\xed\x5c\x90\x32\xa2\x7a\xea\xf5\x11\x39\xf5\xe8\xa9\x41\x4b\x23\xb2\x06\x7b\xfe\xfb\xb8\x49\xfa\xa7\x13\x32\x07\xc0\xa9\x17\xe8\x95\xa3\xf5\x3c\x9c\x29\xe7\x45\x59\x54\x0b\x9d\xd3\xf5\x65\x7b\xa8\x4b\x91\x2e\x43\x35\x77\xb5\x42\xba\xab\xa1\xb4\x2a\x9d\x89\x5f\x4c\x17\x93\x49\x7c\x91\xa7\xd4\x4a\x75\xa6\x54\xdd\x6b\x74\xc8\x46\x47\x96\x61\x33\xb3\x74\x01\xb7\x29\x5c\xa3\xd7\xeb\x27\x52\x69\xea\xa2\xb3\x3a\xa4\xd1\x4d\x49\xf0\x58\xbf\xce\xd3\x2e\xb2\x01\x4b\xf9\x2e\x73\x1c\x6c\x1c\x5e\x92\xdb\x1d\x34\x4f\x5f\xf4\xf8\xdd\xe9\x4d\x6a\x6f\xb4\x7c\x2a\xdd\x65\xfd\x39\x4f\x00\x6b\x2c\xad\x03\xf6\x5f\xf8\x83\xe6\x99\xad\x4c\xa3\x61\x8b\x0a\xd9\x4d\x36\x48\xef\xc8\x42\xab\x76\x71\x1a\x0b\x7a\x93\xd6\xdb\xf3\xcf\x00\x57\xf7\xb7\xde\xa1\x85\xe1\x58\x7b\x8c\xf4\x49\x57\x51\x30\xd1\xb9\xe8\x30\x5d\x5a\x4c\x0b\x1d\xf6\xd1\x2e\x23\x77\xf8\x62\xc7\x73\xbd\xc9\xea\x6f\x27\x24\xdb\x27\xa4\x8c\xd9\x91\x66\x18\x1b\x83\x21\x18\x4d\xd6\x06\xf5\x71\x84\x34\xef\x94\x74\x42\x6e\x34\x80\x1f\xf3\x74\x38\xb8\x9a\xb5\xd2\xb1\xbe\xa6\x4f\x18\x25\x85\x4e\x58\x4b\x38\xcf\xc8\x4d\xd2\x0e\x9d\xd2\xd1\x70\x1c\x48\xcb\xd3\x29\xc7\x91\x8f\x7e\x0d\x7e\x39\x7a\x47\x9f\xc5\x89\xdd\x1c\xaf\xe3\x26\x19\x40\x48\xf1\xbe\x2d\x84\xa9\x67\xdd\x27\xef\x2e\x6e\x52\xdc\x6d\xb5\x3f\x8b\x43\x55\x64\xf7\x39\x9a\xfe\x09\xda\x61\x3a\x9a\xbe\x63\xa7\xdc\x54\x73\x07\xf3\xad\xd9\xf2\xc8\xb7\x56\x1b\x36\xfa\xa7\xde\x63\xdf\x35\x75\xc8\xb7\x9e\x4d\xe6\xdb\xaf\xbf\xa5\x4b\xb8\x63\x53\x2a\x97\xb8\x43\x88\xdc\x94\x21\xc0\x0c\xcd\xf2\xc0\x9a\x74\xfa\x8e\x76\xe2\xef\x98\xc5\xb0\xe7\x8c\xc5\x4b\x8e\x22\xf5\xf3\xec\xf3\xf5\x4a\xad\x12\x16\x33\xb5\x2e\x17\xa6\x5a\x56\x22\xd5\x8a\x61\xd9\xd5\xc5\xf0\xd6\x03\x95\x52\xac\x52\x50\x37\x05\x37\xc1\xc5\xa8\xed\xba\x45\x40\x15\x3b\x0d\x66\xca\x64\x40\x20\x73\x4a\x78\x81\xee\xf9\xa1\x03\x20\x94\xa9\x08\xfa\xe7\x09\xd8\x62\x16\x9e\xde\xb2\x85\x2e\x5f\xaa\x20\xaf\x2e\x3b\x72\x50\x2a\x0e\x99\xdf\xd8\xf1\xba\x5f\xae\x1d\xd6\x75\xc8\xfc\x13\x20\xc6\xf4\xd3\xed\xce\x44\x2b\xd2\x7d\xed\x30\x8d\x1e\x72\xd7\x8e\x78\xd2\xc3\xed\x13\xaf\xc5\xd4\xbb\xed\xbb\x1a\x3e\x15\x24\xba\xc3\x41\xd7\x74\x8b\xf4\xcd\xef\x5b\x38\x88\xcd\x8b\xd0\x41\x23\x7f\xea\xa0\xc0\xa6\xf4\xc3\x6d\x6e\x6a\xe6\xe5\x74\x80\xc8\x6f\xdd\x3c\xd7\xfe\x0a\xa5\xcc\xd9\x95\xce\xf9\x82\xec\x40\x51\x5e\x7e\xe9\x8b\xfd\x3e\x15\xf7\xfe\x28\x1c\xe1\xe6\x45\x94\x21\xba\x27\x76\x1a\x07\x4a\xf5\x72\xe4\x32\x38\xd8\x71\xf0\xfb\x43\x75\x0f\x3a\x7f\x3a\xca\x31\xe3\xd2\x11\xf7\x7c\xb1\x33\xae\x98\xa3\xe9\xa0\xf2\x6b\x96\x14\x7a\xd6\x59\x20\x3d\x04\xbe\x90\x94\xba\xea\x2e\xc7\x43\x29\x64\x2d\x7a\xda\x6f\xc3\xb3\x51\xf5\x36\xfc\x8c\x14\xf5\x2d\xf8\xc9\x41\x69\x5e\xb2\x5c\xf1\x0d\x4f\x5d\x8a\x5f\x27\x5c\xa8\xd7\xe0\xf7\xa7\x7f\x5b\xe4\xf3\xd2\xe5\xc2\x0b\x16\xf5\xc3\xf1\x92\xa9\xdb\x1e\x46\x3a\xe7\x0d\xed\xf3\xcc\xac\x83\x25\xe9\x90\x16\x32\x54\xa4\xb7\xe2\xb5\x23\x6d\x15\x87\xbf\x76\xa6\xae\x0e\xa6\x79\x42\x5a\xe4\x9c\xf9\x73\xea\xdb\x02\xb5\x44\x9d\x50\x4a\xc7\xdf\x52\xe6\xb0\x58\x29\x13\x6f\x1f\xe9\x1d\xc2\xe8\x82\x54\xaa\x4b\xf6\x16\xf7\xf7\xce\x82\x7e\x93\xba\x34\x85\x7b\x2a\x0a\xb4\x84\x54\x94\xac\x33\x7f\xba\xeb\x67\x0a\x6d\x63\xd3\xe6\x74\x5f\x1b\xd4\x16\x45\x07\x04\xf1\x9e\x3d\xff\x7d\x84\x88\x4b\x99\xdd\x6a\x35\x6d\xfc\xdc\x06\xb5\xfa\x9d\xc0\x0c\x75\xb8\x90\x6f\x25\x47\xfd\x8e\xe8\xa6\x3c\xe9\x4c\xa4\x33\x61\x56\xba\x23\x31\x1a\x13\x47\x37\xfb\xb5\x67\x05\x96\xa7\x3c\x65\x4a\x9a\x97\xce\xe9\xc9\x57\xcf\x80\x65\x97\x13\xaf\xe0\x26\x35\xe7\x4f\x4f\xad\xf5\x59\x65\x29\x4d\xce\xbb\xb3\xda\xaf\x73\x60\xb4\x38\xee\xff\x70\x42\xe2\x9b\x14\xa7\x23\x08\x1c\xf7\xbf\x3f\x54\xb5\x68\xce\xa7\x62\xa5\x33\xd5\x2a\x9b\x33\xdb\xc7\x69\x00\x7a\xe6\x06\x8b\xfe\x4a\x7f\xbc\x61\x4b\xfe\x94\xb8\x45\x6a\x36\x5f\x8e\x0d\x74\x8e\x9e\xd5\xd7\x0e\x7f\x34\x7b\xdf\xc0\xd9\xcc\x66\x06\x85\x5d\x9b\x19\x94\x79\x6d\x8e\xb3\xdd\xf3\xe3\xdb\x4d\xa6\x56\x67\x28\x0e\xf5\x13\x45\xa5\x18\x75\xe8\x18\xbf\xaa\x6f\x69\x51\x1a\xbb\xc3\x91\xc2\x20\xdc\xdd\xa1\x9e\x69\x57\x3d\x92\xa0\x99\x09\x99\x58\x3d\x86\xbf\xbf\x4d\xb5\x5a\x2f\x16\x01\x98\xc1\x81\x0d\xd4\xa4\x85\x3b\xeb\xde\xd0\xc2\x35\xa4\x44\x3e\x93\xe7\x67\xf4\x27\x07\x08\xc7\xe0\x1f\x07\x66\x8c\x63\xf0\x03\xcb\x9c\xc2\x20\x94\xab\x86\x72\x1b\x74\x9d\xa3\x79\xcd\x8f\x6e\x83\xee\x6c\x5b\xae\x58\x43\x7e\x45\xdf\x9f\x36\xa6\x44\x23\x9d\xdb\xd6\xf4\x59\x12\x8b\xad\xe7\x47\x8f\x99\x25\xf1\x7d\xe9\xc8\x8f\x3f\xb7\xe1\xde\x75\x44\x1a\x16\x8c\x70\x0d\xf7\x14\x54\x48\x31\x45\x09\xe5\x91\x74\x28\x66\xab\x41\x0a\xaa\x8b\xfc\xef\x46\x7c\x1d\xc8\x22\x3d\xbf\x3f\x2f\xcc\x3a\x87\xf2\xef\x4f\x99\x1f\xcc\xd5\xff\x20\xb9\xbb\x05\xde\xd3\x59\xe3\xab\x46\xba\xc7\xc8\x20\x75\x2b\xd3\x1f\xaa\xb8\x90\xde\x0a\x0f\x79\x72\x12\x17\x42\xe2\x7c\xc1\xc2\x9d\xfb\xf8\xa7\xd0\xf8\x8d\xd4\xa3\x9d\xf0\x54\xa3\x98\xf7\x70\xb0\xf1\x11\x33\xa7\xfd\xce\xd1\xf1\x29\x95\xae\xc7\x12\xea\xa8\x73\xac\x2f\x3d\xa9\x2f\x33\x9d\x35\x5b\xe6\x47\xbc\x0f\x28\xa1\x6e\x97\xd1\x51\xf3\xa7\x6e\x94\x66\xfe\xb4\x7e\xe0\x68\xd1\x7d\x03\x70\x3c\xbf\x5a\x9d\x21\x57\xf4\x52\xbe\x82\x77\x9c\x1d\x71\x05\xdb\xfa\x35\xfc\x4c\x45\x08\x96\xa7\x50\x2b\xc8\x46\x31\xa0\x02\xfc\xea\x04\x34\x31\xa8\x56\xe1\xfc\x2b\x48\xd3\x39\xc8\x5d\x83\x25\x3e\xec\x39\x38\x9e\x6f\xcd\x52\x2d\x1f\x33\xd2\x0a\x69\x30\x16\x92\x7f\x58\x26\x31\xd9\x03\x67\x0f\x5d\xd2\x3b\xf7\x0a\x3c\x72\x0e\x58\xac\xa5\x19\x71\x11\xeb\x3b\x60\x1b\xf8\x78\x60\x05\x22\x08\x79\x22\x7f\xa4\x19\xce\x0a\x69\x06\xf7\x62\xda\xe1\xcd\x49\x4b\xa9\x15\x72\x1a\x92\xb7\x00\x84\xdf\xd4\x83\xf6\xf3\x04\xbe\x36\xfd\xa2\xbd\xa3\x48\x06\x67\xc0\x74\x58\x8a\x8c\x0c\xf9\x37\x29\x4d\xc6\x2a\x3a\x90\xff\x38\xd2\x28\x36\x5b\x49\xa9\x1d\x2a\xe9\xbf\x97\x1c\xc7\xd1\xe0\xd4\x9f\x56\x7d\xeb\xe3\x04\xa8\x37\xe9\x2e\x85\xf2\x11\x30\xdd\x77\x32\xa3\xfa\x94\x6a\xbe\xf1\x1d\xe9\xb1\xfa\x5d\x91\xeb\x15\x28\xe3\xee\xd2\x05\x69\x46\x43\x83\x09\x95\x51\x72\xe4\x33\x28\xe3\x1a\x2d\xe4\xe5\x5f\x53\x93\x6f\x41\xe9\xbf\x31\x1a\x80\x61\xa6\x23\xef\x8f\xe3\x21\xed\xe3\xa1\x4f\x13\x47\x13\xbc\x25\x98\xc6\x91\xee\x3b\x10\xff\x95\xf9\x36\x4c\x23\x32\xda\x81\xf7\xc7\x81\xe8\xd7\xdb\xf6\x02\x2e\x63\x1a\xa5\x01\x8a\x65\x0a\xa5\x71\x77\x97\x6a\xe5\x4a\xea\xcf\x8f\xec\x3e\xc6\x0d\x2e\x97\xe3\xe1\x5c\xcc\x2f\x35\x79\x8d\x7b\xbe\x55\x45\x9c\xeb\x27\x6b\xca\x8a\x4f\x36\x79\x0f\xe9\x13\x76\x26\xdf\x2b\x9e\xe9\xc5\xed\x93\x71\xeb\xd0\xc7\x0d\xf8\x9c\xe8\xa6\xcc\xae\xcd\x0e\xac\x19\xc7\xe5\xef\x68\x11\xc5\xe5\x27\xd0\xc8\x4d\x29\xaa\xc5\x95\x4a\xdd\xd9\xbf\x91\x86\x73\xfa\xa2\x38\x4b\xe4\xf0\x97\x78\x64\x85\xbc\xa8\x5c\x82\xce\xc5\xe3\x68\x0e\xcc\x82\x5e\x8c\x2c\xdf\xb2\x62\x42\x30\x08\x88\x51\xe2\x6b\x59\x58\x32\x25\x85\x4e\x61\x52\xa0\x14\xc6\xe3\x95\x6a\x3c\xc4\xfc\x28\x96\x7e\x1a\x94\xf4\xc6\x60\x5e\xbe\xae\x62\xa2\x96\x4f\x8a\x9c\xab\x57\xd8\xa5\x42\x6a\x16\xb1\x65\x85\xd7\x18\x61\x81\x65\x40\xeb\x53\x8d\x9d\x79\x4f\x1b\xf6\xf8\xd2\x1b\x2c\x64\x8c\x81\xc5\xe1\x10\x0f\xe2\xc2\xbf\x84\x73\x6f\xd9\x25\xdd\xf3\xad\x61\x8e\xe9\x82\x93\xbe\xff\x5b\xaa\x49\x47\x02\x3b\x29\xc0\x38\xe0\xb4\x65\xe6\x61\x99\x97\x05\x02\x27\x7d\xc1\x37\xee\x6a\x19\xf6\x56\xf2\x9e\x1a\x8a\x46\x68\x93\xd4\xb3\x2e\x14\x7e\xe3\x1e\x4b\x81\xbc\x99\x90\x0b\xaf\xb9\x8d\xa5\xbc\x42\x79\x57\xf4\x90\x0a\x13\x8d\x8d\xa8\x97\xed\xc7\xc9\x36\xd8\x6c\xff\x91\x46\x96\xec\xb5\xb4\x61\x2f\xce\x95\x6f\xed\xc9\xa3\x7b\x7a\xda\x5e\xb9\x63\x9b\x1b\xb3\x02\x69\x6b\x74\x07\x77\x4f\x73\x13\xcf\x09\x26\xdd\x5a\x5d\xae\xd8\xa6\xa0\x1f\xe5\xc0\x1b\xbb\xb1\x52\x33\x6a\x39\x92\xb8\x90\x9d\x4a\x44\x50\x0b\x82\xc2\x89\x07\xb8\xa5\x9a\xdb\xb8\x2b\x38\x6f\x2f\x4b\x4f\x76\xd7\xd6\x53\x45\x6e\x88\xe6\x5e\xc6\xb7\xd2\xa2\x60\xce\x57\x49\x59\xd5\x97\xf9\x8f\xe5\x4a\x61\x57\x61\x87\xb2\x0e\x61\x77\x3b\x65\x41\xee\x5f\xfc\xea\x7e\xd6\x4c\x25\xf7\x14\x19\x96\xf8\x67\x70\x02\xdc\x3c\xbf\x40\x16\x6d\x02\x30\xcc\x94\x4a\xae\x72\xb8\xf6\xa3\xfc\x68\x85\xcd\x59\x1f\xa3\xc7\x50\x94\xfe\xfc\xc8\x54\xd2\x79\x69\x9b\x81\x08\xde\xdc\x73\xa6\x7f\x32\x77\x73\x44\x7e\x0f\x3a\xd4\x20\x0f\x19\xa2\x29\xbc\x54\x4f\x81\xa2\x07\x03\x52\x33\xf4\xd4\x33\x44\x1d\x50\x02\x82\xf7\xfc\xc8\x06\xeb\x90\xdb\x98\x63\x28\x23\xab\x2a\x94\xcf\xbd\xec\xdb\x37\xc6\x06\x7e\xa4\x37\x9e\x6b\x64\xde\x9b\xf7\xd4\x38\xbd\xfc\xb6\x7e\x1c\x23\xff\x7a\x12\xf2\xab\x4f\x3d\xec\xbf\xb7\x19\xea\x48\x45\x3f\x1d\x1d\xe8\x83\x4e\xd7\x80\x22\x67\x30\x2c\x30\xad\x30\x2c\x75\x1c\xff\x41\x78\xbf\x01\xf2\xa1\xa3\x0c\x53\xc9\xf5\x95\xde\xd2\xdf\x9d\x4d\xb5\x76\x36\xc3\xfd\x6f\x0c\x51\xc4\xcc\x1b\xc5\x93\x2e\x6d\x4b\x50\x36\x80\xdf\xcb\x5f\x83\xc5\x7f\xc3\x0b\x68\xb4\x37\xce\x9c\x7c\x6b\xb5\xce\x14\xd9\xf5\x0c\xae\x6e\x3a\x51\xc2\x04\xec\x3c\x3f\x4e\x18\x43\xf7\x3f\xc3\x4b\x81\xb1\xf9\xc1\xd2\x40\xfb\x7d\x1c\xe6\xb6\xe7\x4f\xb1\xc6\x19\xca\x86\x06\x9b\x47\x6f\xed\x6f\x92\x8a\x58\x62\xcc\xcb\x0f\x06\x24\xf2\x43\x6f\xe4\x6b\xee\xb7\xfc\x44\x3e\x97\x3b\x1f\xae\x1b\x7a\x48\x7a\x0f\x29\xaf\x48\x43\x0e\xe8\xd9\x7b\x1f\xb0\x95\x40\x2d\xe5\xe4\x6c\xf8\xe1\x58\x3b\x52\x28\xb1\x70\x86\x72\xe0\x7d\x3a\x00\xe0\x65\xe4\x4f\x31\x3d\x57\x68\x1f\x82\xd7\xb6\x34\xe9\xce\x86\xb2\x89\xcd\x9a\x39\x53\xc1\xe3\x5a\x05\xd3\x32\x32\xd7\x42\x96\x0d\x4c\x5f\xb2\x0f\xf0\x58\x74\x7e\x30\x1e\xd9\xfa\xbc\x8b\x07\x9a\x38\xf5\x2e\xbe\x8e\x33\x15\xfd\x44\xb9\xbb\x5f\xc7\x02\xe5\xb5\xe6\x04\xa9\x02\xb4\x7c\x0a\x7f\x52\x73\x85\xe4\x17\xeb\x03\x2b\xd9\x4f\xd4\x73\x45\x64\xb8\x49\xcf\x45\x03\x70\x13\x70\x54\xf3\x8b\xef\x77\xa6\xd4\xbb\x12\x97\xa9\x53\x07\xe4\xde\xc7\xaf\xce\xc7\x89\x6e\xd3\xab\xf3\x9a\xfb\x23\x83\x4f\xc6\xc9\xb8\xbf\x76\xda\x9e\xe9\xbd\x5c\x59\x80\x4b\xe7\x97\x85\x99\xf9\x75\x7a\x29\x1a\x24\x39\xb0\xf2\xab\xde\x07\x3d\x8d\x7e\x64\x5f\xa7\xcc\x1b\xb1\xa5\x22\x33\x2b\x5a\x41\x6f\xd2\x6b\x6e\xa2\xf4\x24\xfd\x24\x01\xc6\x4d\x8a\xab\x8e\x50\xb6\xab\xd2\x05\x19\x8b\xb9\x88\xca\x9b\xf4\x99\x42\xaf\x37\xcb\x64\xe9\x8d\x03\xe2\xcb\xa6\x9c\xf9\x53\x2b\x8a\xf0\xfc\xe1\x61\x65\x3f\xff\xbc\xef\xb0\x1b\x7e\x00\x36\x11\x8f\x3f\x2b\x71\x34\xfc\x6f\xfa\x7c\xcd\xb2\xfc\xd8\x85\x58\x53\x3f\xfc\x49\x2d\xa5\xae\xb7\x42\xa9\xde\xf8\xc9\x7e\xde\xa2\xa8\x5f\x47\xfe\x8f\x5d\xfe\x93\x16\x8f\x07\xeb\xb7\xe0\x3f\xba\xa0\x33\x7d\x26\x53\x00\x92\x3a\x50\x2e\xbf\x2c\x36\x4d\x2e\x27\x6d\xc8\xa7\x16\x78\xc8\x1e\x61\x44\x0a\xcf\x57\x27\xcf\xd0\x5b\xca\x96\xeb\xc9\x9f\x6f\x93\xe9\x90\x9f\x4d\xfe\x07\xcf\x8a\xe1\x24\x03\x45\xf4\x73\xa8\x02\x64\xb9\x9f\xac\x5f\x63\x84\x3c\x3c\x3f\x07\xa4\x72\xa6\x20\xa5\x02\x3d\x41\xfa\x09\x5d\x72\x9e\x80\x03\xe7\xcf\x57\x83\x27\x96\x85\xde\xa9\x57\xce\x59\x4b\x79\x09\x4e\xa0\x27\xcb\x79\x08\x86\x73\x70\xdf\x24\x73\xd2\x20\xa7\x4b\x0f\x48\x57\x14\xea\xe3\xc2\x13\xd2\x2c\xdf\x29\x9d\xe6\xea\x4e\xa9\xcd\xbb\x1a\x4a\xeb\x32\x42\x09\xe9\x68\x27\xf1\x7a\x4d\xda\xa4\x83\xd3\xca\xa5\x43\x7a\x6f\x5b\xd5\x2c\xc1\x49\x06\x66\xd0\x7a\x39\x28\xc9\x18\x54\xc4\xd1\xff\x29\x55\x34\xe6\xf4\xc0\x00\x21\x3b\xb4\xd7\xcb\xb0\xd1\x8b\x49\x60\x79\x0f\x7e\x64\x5d\x26\xa5\xb2\xae\x40\xf2\x2c\xc1\x40\xc8\x0f\x79\x53\x96\x61\x93\x39\xf0\xfe\xe4\x11\xc7\x7a\x39\xa0\x55\x65\x24\x32\xd6\x71\x4c\x2c\x83\x3b\x3a\x67\xa4\x75\x70\x20\xb7\x32\x5e\x87\x2e\xe2\x1c\x4c\xfb\xa6\xba\xfb\x97\x42\x16\x3f\xa5\x36\x51\xac\xa4\x96\x5e\x86\x8f\xfa\x54\xe4\x24\x1e\x96\x0a\xcb\xc0\x0f\x82\x28\xdf\xa4\xb7\xaf\x8d\x94\x75\xd8\xd1\xc6\xab\x93\x25\x8c\xc6\xe9\xb4\x13\x37\xc5\x72\x7b\xe4\x07\x93\xcd\x92\x1e\xc6\xe8\xa6\x4b\xdc\x9f\xcf\x14\x7a\x37\x1d\x29\x55\x88\x87\x96\xc2\xb7\xce\x8a\xf4\xde\x81\x53\xff\x25\x25\xe8\xd3\x05\xad\x44\x79\x28\x99\x54\x95\xbe\x6f\x61\x80\x32\x09\xde\x01\x8d\x61\x5a\x16\xf2\xa0\x7b\x9d\x38\x63\x0f\x28\x49\x58\x6b\xd4\xa5\x48\xfb\x05\x2c\xdd\x3a\x07\x1d\x1f\x90\xae\xf5\x84\x92\x06\x3d\xf3\xa3\x36\xba\x3d\x56\xcb\x38\x8b\x13\x64\xe5\x12\xb0\xa2\x5c\x30\xb1\x23\xed\x3b\xd3\xf6\x4d\x59\x64\x1d\xd4\xe3\xbd\x01\x67\x0a\x73\x71\x81\x26\x5c\xbc\x18\xc7\x38\x59\x8e\xa5\x8f\x4b\x67\x9d\x76\x8b\x3a\xe5\xd2\x4d\xda\x49\x36\xd3\x03\x6b\xcc\x93\xbe\x2f\x64\x4d\x83\x94\x10\x6d\x7c\x8b\x10\x85\x49\x04\x8d\x28\xbc\x07\x59\x27\xf7\xe4\x83\xde\xcb\x2d\x06\x5a\x60\x9d\x3e\xe0\xb4\x50\x66\xcc\xa7\x50\xf8\x79\xa2\x07\x2c\xbf\x2f\xc7\x63\xb2\x8c\x8b\xe8\x5c\xbf\xaf\x33\xb2\x90\xe9\xdc\xe6\xd3\x91\x8f\x8b\x4b\xf3\xb1\x36\x4b\xa3\x47\x4e\x5c\xc9\xb6\x07\x34\xe1\xf4\x28\x37\xa9\x15\xec\x29\xb4\xa8\x19\x7f\x0b\xf2\xe5\xe0\xfb\x9c\x6c\xd7\xb9\x59\x5f\xf7\xa0\xf8\xe4\x0d\x0f\x39\xc0\x3e\xe7\xa6\x55\xcc\x5f\x2d\x5f\xfa\xd6\x6f\xe4\x53\x36\xca\x05\x89\x8a\x4c\xa9\xa6\xb3\xa7\x50\xfa\xbd\xa5\xcc\x56\xac\x2d\x8c\x55\xb8\xa4\xb4\x65\xb0\x04\xdb\x28\x8e\xcb\x7b\x53\x32\xc3\xac\xed\x57\x61\xd3\xc3\xe3\x82\x74\x1c\x13\xc7\xdb\x32\xa4\x03\xc7\xc0\x2a\x76\xba\x00\x17\x5f\x42\x78\x9c\x24\x73\xb8\x49\xf7\x2f\xf5\xda\x17\xc0\xa6\x2f\x78\x56\x60\xc0\x82\xb7\x7d\xf2\x31\x77\x88\x27\xdd\xf7\xb1\x19\xf1\x21\x2c\x46\xe1\x22\x6c\x05\x7c\x91\x39\x5a\x5e\xc2\xfc\xa8\xdb\xd8\xc9\xa4\xd8\x1e\x76\x10\xb5\x9b\xb4\x8c\xca\x1c\x59\x60\xf4\x7c\xcb\x58\x68\xd3\x80\x60\x87\x93\xb9\xc9\x6d\x92\xc1\xe8\xe6\x67\x20\x27\x8b\xe4\xc9\xe0\x20\xb0\x0a\xcc\xc0\xd0\x08\x9d\x0f\x18\x63\x5d\x1c\x8d\x2f\x28\x5a\x1d\x90\x1a\xb7\x8d\xf0\xe5\x57\xf8\xb3\x3d\x7f\xfa\x92\x8f\x6a\x7d\xd3\x7c\xa2\x3f\x2e\xaf\x29\xe2\xd7\xb1\xf1\x31\xa5\x97\x9f\xe8\x47\x6a\x1a\x28\x71\x02\x23\x5c\x97\x5f\x0f\x3b\x91\xd3\x4d\xbe\xdd\xdb\x54\x24\x29\x0f\x14\x70\x5d\xf6\xad\xb6\x94\xda\x67\x02\x6a\x6f\x19\x00\x31\x78\x20\xb3\x8c\x80\xe0\x82\x62\x01\x72\x00\xb2\xb6\x2e\x8b\x06\x1f\x03\x97\x83\xde\x63\xcd\x2c\x63\x1c\x46\xa6\x48\xd6\xd5\x09\x9c\x6d\x5d\x68\x04\xcc\x83\xcb\x89\x71\x59\x09\x9e\xf7\xcf\x7c\x6b\x8c\x26\xa8\x8b\x75\xd9\x96\x3e\x5e\x21\x35\x11\x28\x85\x2b\x2b\x4c\x1f\xfc\xd2\x06\x9b\xe4\xf2\xe9\x68\x22\x1f\x15\xd9\xfe\x2c\x19\xca\x66\x52\xfc\xa7\xd0\x0b\x35\x16\x54\xcd\x23\x2a\xa8\xd3\x9f\xa6\xf0\x72\x87\x52\x5a\xdd\x4a\x87\x6c\xee\x7d\x4a\x65\xa3\x9c\xf9\x55\xb7\x34\xcc\xbc\x90\x0d\x67\x76\x4f\x45\x4d\xf9\x9c\xb5\x1c\x7e\xe0\x04\xa8\xb7\xaa\x75\xd1\x91\x56\x24\x1a\xb2\xc1\xab\xad\x36\xbc\xba\x4b\x11\x06\x6a\xf4\x76\x75\x2a\x22\x1e\xc5\x2d\xc7\x1b\x88\xad\xa3\x78\x03\x27\xb7\x3d\xab\xda\xd4\x1f\xa1\x86\x3b\x74\x41\x6a\xed\x67\x9a\xfc\xe8\x69\xc8\x84\xfa\xca\x87\x42\x5f\x75\x97\x33\x52\x66\xdb\x0f\xf3\xce\x00\x05\x1e\xb9\x2c\x41\x12\xce\x0b\x0e\xaa\xbe\xbc\x3b\x4b\xfb\x5b\x92\x2b\xf8\x40\xa9\x2c\x66\x0d\x9b\xa6\xc9\xed\x21\x33\x10\xa3\x85\xd1\xcd\x40\x0d\xce\x42\x87\x84\x18\x38\xb2\xf0\x8e\x70\xf9\xca\x52\x6f\x8f\x99\x25\x71\x92\x17\x20\x83\x8b\xd0\xfb\xed\xa9\xd7\x9b\x8e\x7d\x5f\x7d\x56\x43\xde\x29\xaa\x41\x25\xc6\xd1\x32\xba\x80\x3b\xde\xa5\x10\x07\x17\xc7\xb8\x65\x70\x01\xb7\xb8\xcb\x68\x82\xe8\x87\xe6\x6b\x9a\x49\x07\x1c\xd3\x80\xa4\x86\x37\xf9\xd1\xc3\x84\x50\x0a\xca\xc7\x3a\x0b\x5c\x50\x70\xad\xaf\x06\xbf\xb0\x1b\x9b\xf1\x80\x40\xfe\x96\xd0\x05\x03\x47\xd0\x6a\x28\x0f\x9f\x4f\x97\x43\x1c\x5c\x93\x51\x3a\x0e\xff\x35\xd3\x05\x7b\xf0\x47\x2a\xa2\x7f\xf4\x5e\x60\x83\x28\xb7\x66\xaf\xbc\x13\x99\xde\xa4\x3c\xb0\xf9\xd3\x9a\x04\x59\xdc\x6c\xad\x1c\x99\x3d\x07\x30\x3a\xb1\xae\x9a\x65\xd2\x4c\x3d\x5e\xfa\x33\x85\xb7\xc2\x8f\x2a\x69\x4e\x18\x99\x33\x8b\x70\x0a\xe5\xcc\xe4\x6e\xc5\x7d\x64\x2b\x18\x98\x10\x45\x62\x60\xc2\x38\xaf\x90\x8c\x9a\xf9\x43\x08\x65\xfe\x48\x40\x9a\x6a\xbf\x5a\x95\x7c\xfa\x93\xf3\xc9\x9d\x75\xdc\x84\x82\x45\xd9\x6d\x7f\x20\x2a\x1c\xce\x7f\x9c\xd8\xfc\x00\x0a\x78\x2d\xba\x3a\x87\x09\xd8\x84\x98\xfd\x11\x7c\x8e\xa3\xc0\x33\xa4\x45\x04\x7f\x22\x83\xad\xee\x28\xe7\x35\x14\x53\xe2\x61\x3b\xcb\xff\xd3\xa3\x69\x54\x26\xbd\xc5\xf3\x73\x84\xac\x6a\x84\x7a\x0c\x1b\x3d\x2f\x7a\xef\x04\x81\x69\x64\xd2\x83\x14\x5a\x37\x3c\x15\x59\x37\xb0\x64\x8a\x9c\x70\x72\x75\xbd\x3a\xca\x2a\x85\x72\xf0\x4f\x04\x9d\x63\xed\x9f\x47\x26\x65\x79\xcd\xf2\xa7\xc3\x9a\x84\xb2\x16\xc1\x74\x76\xd0\x05\x5c\xa1\xcb\x41\x17\xa2\x27\x0c\x1a\xe0\xe5\xc1\x52\xe0\xfd\x7b\xe2\xf3\xe3\x76\x67\xd3\xe4\x5b\x7f\xa6\x1e\x1b\xc7\xf9\x56\x7e\xbe\x0b\xd1\xe2\x58\xfb\xe7\x81\x11\xeb\x98\x0c\xe7\x81\x51\xa6\x28\x0c\x07\x77\x0c\xab\x1b\x0a\x7a\xa0\x1a\x8c\x1a\xc8\x89\x6e\xa0\x8e\xce\x90\xc5\x93\xdb\x21\x85\x67\x8c\x69\x35\x6c\xaa\x82\xa9\x5c\x82\x09\xd4\x08\x90\xe1\xdc\xde\x04\x50\x5b\x03\x0d\xc4\x99\x4a\x30\x81\x12\x4b\x10\x98\x00\xaf\x85\x97\x61\x02\x11\x03\x43\x46\x0e\x4f\x2e\xd6\xf0\xc3\x84\x79\xfc\x0d\x1b\x5f\x43\x70\x3a\x02\x6e\xac\x81\xb0\xc1\xee\x57\xf0\x87\xc2\x4b\x80\xe5\xd8\x0f\xbc\x00\x5e\x03\x0b\xa8\x86\x54\x70\xed\x11\x4a\x86\x34\x21\xda\x96\xc1\x05\xd9\x00\x0a\xac\x5f\xb3\x5b\xc7\x62\x59\x68\x64\x31\x5f\x4c\xc9\xb2\xc8\x67\xc3\x02\x18\x20\x08\x9b\xb3\xfd\x9f\xa5\x84\xf2\x56\xc2\xb6\x1b\xbe\xed\x69\x59\x43\xa1\xa0\x9e\x55\x72\xf6\x10\x76\xa8\x32\xfa\xd7\xa7\xb7\x7e\x9d\x7f\xd6\xfc\xe8\x45\x82\xa9\x9c\xd2\x7f\xc6\xa2\x30\xb6\xe0\x59\x41\xa9\xa4\xd2\x52\xad\x0f\x93\x29\x93\x28\x64\xd3\x0d\xfb\x31\xd8\x48\x06\x21\x70\x3f\xb2\x0c\x3a\xe0\x45\xeb\x72\xc4\xfc\x0c\x79\x46\x0e\x75\x48\x1b\x3f\xf0\xe2\x24\x53\xed\x05\x65\x21\x85\x03\x64\xda\xe3\x01\xe0\x6e\x4d\x0b\xa9\xe7\xcf\xb7\x2b\xca\xaf\x02\x44\xf6\xb4\xa2\xe0\x6d\x9c\x48\x67\x52\x9a\x9a\x92\x45\x0d\xa4\x6e\x4d\xfb\x2e\x41\xd3\xae\x89\x54\xc2\xfa\x56\x10\x89\x9a\x99\x9c\xb8\xac\x6a\x2a\xb2\xff\x08\x81\x31\x27\x4b\x4d\xa3\x1c\xbd\xb1\x3b\xa7\x03\x65\x96\x23\xa4\xf1\x8a\x34\x83\xac\x29\xfc\x8a\x59\xc3\x11\x5f\x31\x1d\x2a\x71\xc3\xd6\xc4\xab\x82\xd6\x9e\x7e\x86\x00\x53\xcf\xb0\x1b\xf5\xca\x01\x4d\xb4\xaf\x65\x40\x42\xbc\x4b\xd3\xd7\x42\xbc\xd3\x59\xd3\xf7\xcf\x30\xc2\x44\x5f\x3d\x7f\xba\x07\x0c\xd4\x37\x0c\x3d\x3f\x6a\x5f\xc3\xc3\x13\x9b\x26\xb3\x2b\xa6\x01\xfb\xb9\xd6\x80\xc1\x07\xa4\xa2\x85\x62\x56\x2d\xd4\x17\x3d\x10\x08\xe1\x04\x5d\xbf\x96\xe3\x2b\xda\x9f\xba\x04\x42\xb8\xa5\x66\x81\x6c\xae\x36\xa5\x92\x58\xec\xb1\x85\x88\x82\x15\x16\x46\x72\x1a\xe5\x74\x85\x1d\xba\x30\x73\xe0\x14\x45\x8e\x38\x79\x6a\xb5\x1c\x39\xa2\xcf\xfc\x69\xb6\x66\xdc\xcb\xba\x0d\x4e\x35\x4a\x81\x40\x5b\x6b\x99\x89\x38\x2e\x39\xe2\x3f\x11\xba\xd6\xe2\xe0\x85\x51\xb3\x1c\x57\x17\xa1\x6e\x58\xc2\x95\x79\x5f\x7e\xd9\x92\xa9\x5e\x66\x0b\x66\xda\xb0\x04\xd0\x16\x8b\x00\x14\x27\xf2\xd5\x21\x27\x5a\xe6\x40\x11\x27\x62\xe2\x18\x94\x30\x33\xe4\x4d\x1b\xcc\x9e\x98\x64\xb6\x87\xf4\xb8\xe8\x8f\xdf\xad\x9c\x3d\x15\x09\x22\x50\xfe\x8c\x4c\x7b\x7f\xfa\x71\xb5\x4c\x09\x07\xeb\x9e\x56\x24\x7c\xb1\x63\x36\xda\x2a\xd4\xa5\xb2\x03\x4a\xb3\x8e\x5d\xb7\xed\xd4\xce\xd4\x2a\x20\x45\xe5\xb5\xd4\xda\x70\x45\x87\xb2\xf9\xff\xfc\xb9\xf4\x69\x85\x92\xa3\x92\x2d\x45\xe4\x0a\xa0\x0f\xcb\xe0\x06\x62\x0f\x2d\x83\x1b\x3a\xc0\xde\xa5\xb0\xfd\x95\x58\x43\x4b\x51\xfb\x07\x37\x97\x4b\xc0\x87\x8b\x37\x0e\xcb\x31\xfc\xe7\x43\x79\x1c\x03\xca\x3c\x9a\x41\x5a\x51\xb5\x54\xa3\xf6\x11\xbc\xc2\x36\x74\x80\x2a\xcb\xd8\x06\xb0\xdc\x4b\x60\x86\xf3\xc2\x20\x15\x7c\xa1\xc4\x17\x2b\xf8\x42\x25\xf4\xe6\xda\xce\xea\x32\x52\x66\x6d\x82\xff\x69\x73\x52\xca\x72\x38\x60\x02\xea\x63\x3b\xca\xe4\x08\x65\x23\x04\x1b\x53\x91\x33\x2a\xd7\x30\x6b\x3b\x6e\x2f\x7c\xb6\xcd\x75\x88\xd9\x8d\xa5\x93\xb5\xc2\x78\xc6\x22\xd9\x40\x63\xa8\xd5\x0f\x15\x8e\x7c\x6a\xd3\x8b\x41\xfa\xa8\xff\x50\xcc\x63\xaa\xc1\xd6\xa2\x3f\x78\x87\x4b\xaa\xfd\xc9\x45\x6e\x86\x50\x54\x8d\x4a\x90\x98\x65\x60\x43\x1a\x11\xb0\xa1\x02\xd9\x5f\x0e\xb8\x71\x65\xaf\xbf\x7d\x5e\x47\x9e\x38\xfc\x06\x2f\x68\x97\x90\x0c\x95\x68\x08\xeb\x6d\x5e\x41\x79\x28\x7f\xc0\x79\x31\x91\x0e\xc5\xd1\x01\x5d\x2f\x27\x10\xb8\xb2\xd5\x1d\x6e\x23\x47\x57\x63\x13\xc2\x1e\xc6\x26\x9c\x80\xc7\xd6\x3b\xc9\xfa\xa1\x7c\x6c\x83\x3f\x15\x52\xe3\x24\xe4\xd7\x7a\x3b\x03\xff\x15\x8a\x61\xe5\x53\xed\x9e\x16\x0a\x96\x48\xb5\x16\xb1\xb8\xb3\xde\x1c\xa8\xd8\x86\x6f\x27\x02\xca\xc8\x62\xf0\x42\xfa\x62\x3b\x82\x9d\x30\x1a\x61\x92\xb7\x8f\x54\x68\x3a\xc1\x1a\xce\x13\xa4\xee\x12\xac\xa1\xce\xcc\xb4\x25\x53\x06\xea\xe0\x0d\xb0\xf7\x7b\x63\x81\xa7\x11\x1b\x39\x3d\xa4\x67\x0c\x1b\xd6\x30\x86\x33\xf7\x47\x1f\xfb\x75\x4e\xf6\xc6\xc7\x02\x07\xc6\x14\x8c\xa1\x64\xd1\x3e\xe1\x84\x09\x39\x74\x6b\x91\x1f\x15\xf0\x94\xad\xf9\xd1\xb1\x1c\xd8\xf3\xfa\xe8\x7e\x81\xa8\x09\xeb\x63\x01\xd3\xd3\xbe\xed\x52\xf8\x52\x68\x88\x92\x3d\xad\xb8\x1d\x95\xc0\x1c\x4b\x69\x08\xce\xe7\x47\x9d\xc4\x00\x7d\xac\x8f\x63\x63\x1d\xf0\x9e\xb2\x10\x94\x23\x1d\xc7\x86\x1e\xe3\x6f\xc9\x4d\x30\x10\xd6\xe0\x63\x61\xc4\xce\xfc\xa0\xae\x90\x5b\x1f\xee\x13\xf0\xff\x18\x28\xc1\x03\xde\xf5\xc1\x11\x3c\xf3\xad\x64\x35\x4b\xf2\xf1\x7d\x7c\x34\xc0\xc7\x9e\xe0\x5c\xa8\x7d\x7c\x82\x1a\x29\xb4\xc5\x73\xa5\x50\xbb\x61\x84\x92\x3a\xcd\xe5\x1b\xb8\x89\xa8\x84\x8f\x01\xba\x84\xf8\x5d\x4e\x35\xc0\xe3\xdf\xe5\x48\x21\xd1\xfd\x1f\x6e\xf8\xd8\xe5\x1f\x34\x5f\x66\x57\x4e\x1f\x9e\xe6\xac\x8f\x9f\x04\x10\xc5\x71\x7d\x71\xfe\x71\x42\x56\xce\x80\x12\x27\xa2\x73\x06\x10\xeb\x76\x7d\xd1\x4a\x35\xa4\xe4\x05\xf3\xf7\x35\x5f\xc0\x41\x0e\xf8\x71\x02\xb3\x5e\x5f\x0b\x13\x46\xf2\xc5\xaa\xc1\x4f\xf1\xe5\x74\x75\x85\x94\x6c\x63\xe6\x85\xce\x28\x05\x1e\x12\x38\xa3\x70\x1d\xbe\xbe\xf6\xfb\x1f\x48\x69\x62\x81\x64\x5c\xb6\x63\x1e\x4a\xc6\x08\xce\x2b\xa1\x38\x2a\xe8\xd2\xf5\xe5\xe0\x85\x1f\x47\x41\x43\x2a\x40\xdd\xf5\x35\x0b\x8d\xfc\xa8\x5b\xcc\xe7\x47\x8d\x8a\x2d\xe4\x24\x03\x93\x10\x44\xeb\x9b\x10\x03\x50\xb6\xa0\x91\xd8\x8e\x1f\x92\xad\xf8\x35\x9a\x86\x20\x44\xcb\xe1\x43\x78\x73\xb4\x8c\xd9\xb8\xa2\xd1\xbf\x1c\xc2\x10\x41\xce\x23\x50\x60\xb6\xaf\x2f\xa4\x80\xaf\xaf\xaf\x39\x66\x86\xf2\x36\x9a\xf9\xd3\x93\x87\xf0\xff\x6e\x8b\x03\xc6\x69\x54\xce\xf9\xfc\x6a\xff\x06\xf3\xae\xf0\x21\x67\x14\x9e\x12\x09\x54\x40\x7f\xeb\x67\x60\x15\xf8\xf4\xf5\x1b\x7e\x5c\xd6\xa1\xd4\x05\xa2\x77\x2e\xc5\x16\x69\xaf\x87\xf2\x85\xde\x84\xf2\xd9\x0a\xd6\x13\xfa\xe3\x8c\x28\x71\x96\x81\x41\xf8\xd5\xf5\x83\x11\xf3\xa9\xd6\x6f\xa6\x49\x73\x9e\x07\xfd\xf3\xad\x66\xe1\x98\xfa\xf3\x69\x8a\x50\x9e\xeb\xe7\x20\x02\xb1\x8f\x88\x26\x12\xb3\xc7\x49\x08\x06\x71\xd0\xd7\x0f\x2b\xa8\x85\xfc\x68\x2c\xf4\xc8\x4e\x1e\x78\x48\xf0\x8f\x92\x2b\x12\xa1\x3f\x5a\x6e\xd8\x85\xfe\x68\xaf\xf4\xc0\x20\x3b\xc2\x36\x2d\xa1\x3f\x1a\x08\xa7\x05\xfa\x83\x97\x9d\x4b\x70\x8f\x8b\x88\x65\xcb\xa8\x8d\x51\x38\xff\xfe\x8c\xf5\x0f\x94\x40\xa8\x8d\x96\xbb\x1f\xe5\x16\x68\x71\xe8\x2b\x42\x48\xcb\x4d\xcb\xcf\x48\x7f\x02\x59\xad\x1f\x2e\xe1\x2b\xa5\x36\x4a\x2c\xcd\xb6\xc2\x7c\x34\xce\xdc\xdb\x51\x3e\x3a\x6f\x11\xf6\x0b\x4e\xe8\x21\x8b\x3b\xf8\xb7\x0f\x65\xbf\x90\x49\xd6\x15\xfb\xe5\xdb\x29\xb4\xc3\x56\x14\x90\xc6\xab\xe7\xfd\xe2\x72\xd2\x42\x73\xbf\xf0\x28\x5f\x29\xb5\xc9\xd7\x53\xaa\x55\x3a\x42\xc9\xae\xe7\xcc\xbb\x5f\x8e\x3b\x43\x9c\x88\x2d\xe4\x48\x03\x16\xb6\x05\x1c\xb9\x08\x17\xb3\x15\x4e\xa4\xbd\xf2\xe3\xcd\x55\x0d\x20\xd0\x56\xde\x82\xc6\xc5\xd0\x7e\xf9\x8d\x00\xf8\xf0\xfd\x82\x6b\x2c\xb7\xb7\x92\x13\x74\x9e\x6e\x6d\x25\x27\x68\xb8\x23\xf7\x0b\x75\x55\x99\x3f\xe4\x09\x53\xb2\xdc\x01\xaa\x41\xba\x58\x79\xed\x97\x11\x45\x18\xe1\x5b\xa8\x92\x86\x2b\x75\xbf\x60\xb1\x8b\x0e\xdd\x4c\xd5\x78\xd4\xba\x15\xa4\xa4\xe1\x0b\xdc\x2f\xec\xe5\x9e\x42\x5f\x30\x5d\x34\x8a\x31\x54\x19\xe8\x36\x72\xa4\xd0\x28\xd6\x50\x67\x30\x9b\x2e\x31\x47\xe6\xb9\x93\xf9\x93\xec\x71\x2a\xc4\x9b\xd2\x1a\x9d\xa9\x47\xd9\xf1\x4a\xca\x6e\xfb\x22\x7d\x3f\xcc\x7e\x16\x2e\xfb\xc0\x8b\x78\x85\xd4\x0c\xd9\xfd\xb2\x0f\x24\x8f\x77\xc0\x3e\xe0\x28\xcb\xcd\x7d\x20\x4f\x8e\x90\x6f\xfd\x5a\xa0\xec\xb9\x19\x50\x5a\x23\x1b\xe9\xfb\x98\xee\x01\x65\x28\xb2\x4a\xf7\xcc\x16\x67\x28\xaf\xd1\xa0\xd6\xa9\x3d\xc8\x6c\x39\x7c\xc9\x28\x47\x0a\x87\xfe\x9c\x50\x96\x43\x35\x6d\xda\xdc\x18\x8c\x6c\xc2\xc4\x21\xd5\x3f\xf8\x54\x41\x4a\x1a\xb0\x95\x7d\xf8\x86\x82\x08\xad\x1b\xac\x0c\x0a\x73\x0b\x2b\xd3\xb2\x7b\x0f\x4b\xa9\x42\x87\x30\xb7\x6b\x2a\x9a\xae\x88\x1e\x2d\xcd\x57\xa1\x07\x98\xd0\x0f\x69\x0b\xb1\x32\x47\x86\xce\x14\xb8\x91\x94\x0b\x1c\x33\x36\x81\x49\x80\xcd\x6f\x05\x26\x29\xc0\x41\xb6\x12\x32\x34\x1e\x07\xed\x83\x8b\xad\x87\xd4\xbe\xe7\x3a\x7e\x1f\xf8\x9b\x47\x9a\xf1\x81\xbe\xa6\x54\x28\x76\x58\xcc\xc0\x1b\x9e\x85\xee\x93\xac\xc3\x07\x94\xb8\x08\xf6\x3b\xc3\x36\x03\xd2\x56\x17\xeb\xad\x08\x27\xa5\x3e\x85\x7a\x00\xf0\xca\x9f\x8a\xbc\xda\xd3\x22\x76\x1f\x85\xe6\x22\xab\xff\xad\xf8\x26\x05\xaf\xf0\x3e\xb9\xa3\x78\x0a\xab\x82\x12\xbf\xa0\x94\x41\xbe\x85\x92\x0a\x4f\x8b\x92\x34\x25\xe3\x30\x9c\x98\x10\x5b\xdb\xb8\x9b\x23\x14\x48\xc6\x42\xcf\x97\x04\x1f\x92\x46\xd1\x4b\x1a\x2f\x51\xf6\x09\x93\xfc\x6d\x8a\x6f\x47\x36\x21\x02\xc6\x76\x60\x93\x51\xce\x90\x7e\x22\x3a\xa1\xc4\xef\x68\x95\xd3\x42\xe8\xca\x97\x12\x07\x25\x5f\x7e\x55\xc6\x6c\x70\x3c\x4b\x35\xdb\x1d\x67\x54\xdb\x1d\x67\x71\xac\x01\xd1\x12\x0a\x69\xd2\xc0\xfe\xef\x13\x0f\x74\x4d\xad\x96\xd1\x93\x21\xfb\xc1\xc1\xcc\x2c\x5b\x3c\x5d\x69\x52\xf7\x04\x35\xd5\x5a\x83\xf8\xec\xbd\x8b\xe5\x13\xfa\xa4\x0c\xf5\x07\xa1\x5c\x86\x2d\x11\x04\x89\xc0\x39\xed\x55\xf3\x23\x8c\x35\x20\xd5\xbf\xe7\xd3\x8f\xff\x4c\xa1\xe0\x18\x57\x0a\x7d\x5a\x64\xd9\x05\xaa\x69\x20\xe2\x77\x30\x35\x6c\xb6\xe2\x57\xb1\xc7\xa4\x47\xd3\x5e\xcb\x92\xd2\xfb\x20\x90\x49\x28\x98\x46\x2d\x35\x69\xc1\xd8\xa6\x05\x01\x65\x5b\x6d\x3b\xa4\xca\x24\x58\xd9\x56\x0c\x95\x06\xd2\x7e\x17\xbc\xd0\x08\x7b\x85\x54\x29\x18\xd4\xdb\xe0\x1c\x22\xf0\xed\x62\x97\x34\x7a\xbe\x98\x0f\x61\x59\x80\x3a\xdc\x54\x6c\x01\x75\x0a\x56\xfa\x2e\x9c\xff\x27\xdd\xb3\x0b\x1a\xef\xc0\x16\x36\xa7\xbd\x32\xb7\xe6\x92\x4c\xc9\x16\x7b\xa7\xe7\xb6\x98\x0b\x42\xb0\xd8\x6c\xca\xe2\xfa\xba\x0b\xe5\xa3\x40\x28\xed\xd5\x98\x4a\xe0\x5d\xa9\xd4\xde\x4d\x37\x78\x71\xf5\x75\x41\xa9\xf9\x16\xca\x36\x52\x09\xa9\xc8\xfc\x2c\x88\xb3\x6c\xc4\xe6\xb8\x6c\x3b\x23\x25\xae\xe1\xe6\x3b\x94\xe2\x9d\xc2\x2f\x0a\x89\x52\xa2\x1f\xae\x30\x08\xa4\x11\x59\xcc\xd4\x85\x7f\xd9\x96\xf4\xbe\x1c\x28\x82\x67\x4b\xfb\xf2\x21\x1d\x3f\xd3\x56\xfe\x8d\x93\xb7\x75\x5b\x11\x53\x1a\xf8\xf0\x7d\x71\x32\x9b\x21\xbb\x80\x2a\xf9\x74\x68\x20\xa9\xc6\x98\x11\x66\x47\xbc\xd3\x32\x10\x79\x92\x80\xf4\xef\xcb\x8c\xd4\xd2\x39\x33\x12\x22\xf5\x42\x0d\x22\x27\x0d\x09\xe2\xd1\xec\x76\x52\x8f\x96\xde\x38\x77\x70\x4d\x19\xa3\xa2\x73\x8b\x9e\xa7\x1e\x2b\x5b\x58\xf2\xf2\xed\x19\x0b\x7b\x39\x9f\x64\x3a\x04\x40\x68\xa6\x50\x92\x0a\x49\xad\x08\x29\x57\x14\xf1\xe5\x9c\x06\xc8\x42\xa3\x85\x7a\x44\xec\x65\x8e\xcc\x2c\x13\x22\x85\xf6\xad\x02\xd3\x57\xb9\x91\xae\x4c\x8f\x9c\x8b\xc4\x15\xdd\x17\x86\x7b\x66\x60\x8b\xe9\xfb\xdf\xce\xef\x4d\xd8\x13\xb0\xb9\xdb\xc8\xa1\x0b\xf7\xcf\x16\x74\xe8\x2c\x6c\xc3\xea\xa0\xea\xaf\x50\x97\x26\x3d\x3f\x9a\x23\x06\x94\xf8\xf5\xa9\xc5\xf6\x0e\x12\xbf\x3a\x17\x21\x42\x4b\x40\xa1\x06\x5a\x7f\x3b\x06\x0a\xaf\x47\x76\x75\x64\xd8\xf6\xb4\xe1\x49\xee\x50\x1a\xe4\xa0\x1a\x7b\x19\x10\xea\x20\x8a\x78\x9b\xb1\x6b\x78\xb9\x42\xfa\x8e\x19\x7b\xb0\xda\x38\xc3\x48\x27\x24\x0a\x2f\x37\x76\x45\xda\x3d\xa5\xb6\x1d\xaf\xb4\xa3\xce\x8f\xd4\x6b\x18\xdb\x95\x5f\xe1\xd9\x7c\xfb\xd5\x46\xa0\x51\x31\x29\x57\x63\x5b\xb0\xa2\x03\x37\xdf\xae\x36\xf7\xd3\x3d\x9b\xfb\xbc\x1d\xd9\x0e\x7c\xd2\x32\x5f\x8b\xde\x32\xb5\x56\xad\x3d\x85\x74\x96\x45\x31\x8f\xc2\x32\x95\x23\x24\xaa\xad\x3a\x45\x61\x16\x05\xae\xe4\x47\x6b\xd3\xcc\x1e\x01\x4c\x58\x5b\x39\x16\xb2\xd9\x2a\x62\xf2\x95\x42\x59\x8e\x23\x94\x61\x14\x4f\xad\xde\x5d\xaf\x54\x2b\x4d\x8b\x09\xe7\x70\x26\x83\xac\x2e\xbb\x81\x2d\x81\xf5\x1a\xc6\x3f\xf2\xb0\x01\x63\x87\x87\x9d\x65\x65\x72\x7b\xb8\x1b\x17\x31\x4c\x4a\x73\x78\x9e\x52\xf3\xaf\x6c\x83\x91\x6f\x61\xb8\x0a\x69\x16\xa3\x55\x3f\x3b\xc1\x9d\xbe\x9b\x4f\x85\x58\xf8\xcd\x32\x90\xd7\x19\xbb\x61\xe2\xa3\x8b\x1d\xd4\x84\x17\x49\xdb\xa9\x54\x78\x47\xb4\x1b\x3c\x34\xa0\xe4\xa0\x86\x71\x9b\xf1\xd4\xd9\x80\x0d\xbb\xae\xa5\x91\xbb\x7b\x00\x21\xb7\x92\xae\x0c\x5e\x11\xed\x66\x05\x8a\x60\x6b\xe6\xa8\x99\x2f\x8d\xf1\x63\x3f\xb6\x45\x5f\xf3\xad\xb9\x06\x95\xd9\x6c\x9f\xa1\x24\x94\xad\xe5\x8c\xb4\x68\x32\xfe\x73\xa4\x68\xe6\x2f\x04\x54\xb3\xe2\x45\x94\x0a\xab\xd4\xc0\x61\x6e\x61\x95\x12\x8c\x6b\x3b\xa4\x0a\x2f\x3e\x77\x03\x57\xdd\xf2\xa3\x1e\x92\xa6\x33\x96\x88\x33\xd5\xd8\x2c\x40\x9d\x37\x07\x50\x9e\xa9\x75\xa8\xc5\xd4\x6a\xbf\x41\xcb\xa7\xd2\xa0\x23\x94\xd2\xd4\x5f\xf9\x54\x8c\x98\x79\x94\x3a\x3f\xc2\x2d\x3a\x91\xc6\x64\x21\xbe\x0a\xaf\x77\xb6\x21\x4f\x3d\x56\x67\xb7\xe3\x82\xee\x18\xc5\x44\xd8\x8f\xdd\x1d\x57\x87\x65\xed\x80\x07\xd8\xf0\xc6\x34\xf5\xff\x10\xb5\x70\x77\xc7\xaa\x27\x92\xe7\x16\xfc\xa9\xe0\x78\xdd\x82\x3f\x9d\x17\x27\x52\xe1\x9d\x1a\xd7\x78\xbb\x3b\x92\xee\x4c\x99\x39\xa0\xa5\xd0\x53\x47\xcf\xe1\xdd\x96\x5a\x97\xfc\x95\xa1\xa4\xa5\xd1\x82\x42\x46\x35\xa0\xae\x5b\xc0\xa8\x06\x02\x74\x0b\x09\x55\x9e\xe9\xd0\xa9\x83\x5b\xa3\x0d\x10\x8a\xb7\x25\x5b\x40\xa8\xa3\x94\xb4\xa1\x53\x08\x78\xd5\xdd\x1d\x2c\x9f\xc0\x9c\xbb\x63\x1a\xb6\xd4\x7b\x9f\x8a\x80\xcf\xed\xee\x30\xce\x57\xca\x96\x5b\x49\x87\x6c\x28\x8e\x94\xbe\xb5\xb4\xe9\xd1\xc7\xdf\xb2\x5e\x46\x78\x23\x08\x3a\xbe\x10\x84\x46\x97\xb0\x04\xbd\xba\x15\x5b\xe5\xca\x09\x8e\xd8\x2a\x38\xa6\x77\xdf\x74\x21\xdf\x6e\xfd\xe9\x6f\x87\x2f\x7b\xb8\x4c\xdc\x0a\xae\x72\x10\x03\x6d\x2b\x7c\x4a\x39\xd9\x15\x42\x49\x35\x90\x9c\xdb\xc1\x53\x2e\x5c\xd3\x5b\xb0\xa8\x06\x4a\x70\x0b\x15\xd5\x80\x75\x6e\x81\xa2\x1a\x70\xb9\x3d\x26\x0c\xcc\xa7\x78\x34\x46\x48\x8d\x2b\xdd\xf1\x4b\x49\x3c\xe5\x7b\x84\x65\x42\x6e\x9d\x54\xf3\xe7\xdb\x23\x99\x90\x96\x62\x2d\xa4\x6e\x0b\x66\xea\x95\x10\x63\x51\x06\x6e\x30\x76\xe6\x30\x9b\x20\x28\xc6\x72\x87\x52\x56\x44\x9d\x50\x4d\x80\xde\x50\xee\x1d\xfb\xc2\x61\x54\x7a\x4e\x87\xc3\xc1\xed\x32\x6a\xa3\x13\x0a\x0c\x35\x58\xf9\x33\xbf\x0a\x23\x35\x43\xd9\x29\x86\x61\x23\x50\x54\x03\x20\xba\x87\xf9\x00\x95\x3e\x8c\xfb\xe7\x29\xcc\x56\x88\x95\x06\x7a\x6e\x2b\x5d\xce\x5d\x4f\xfe\xec\x2a\x64\x0e\x74\x5c\x05\x59\xb7\x05\x98\x6a\x00\xba\xf6\x30\xc7\xb0\x33\x06\xa2\x2a\xff\xe9\x74\x8a\x9e\x33\x42\xea\xe4\xb1\xcd\x56\x60\x96\x42\x7c\xf3\x2d\x50\x54\x03\x9f\xb7\x03\x8a\xc2\xc6\x99\x78\xcf\x7a\xfe\x6c\xfa\xf6\x05\xe5\xa3\xe1\x0c\x29\xd6\x8b\x9f\x4b\x71\x59\xce\xfe\xb4\xb2\x7d\x76\x85\x12\xe4\x1a\x2d\xe3\xe4\x39\xe7\x99\x4f\x1d\xe2\x93\x37\x1e\x7b\x3a\x0a\x38\x03\x9b\x3a\x7b\xf0\xe8\x7e\x1b\x23\x05\xfa\x78\x0b\x22\xd5\x08\xbc\xb6\x15\xb1\xe5\x0c\x26\x7d\x4f\xcb\x23\xac\xc9\x69\x79\x94\xee\x4c\xe6\x87\x36\x6e\x4e\xeb\xc4\xbd\xdc\xd3\x8f\xfa\xb8\x96\xda\x20\xa2\x72\xfc\x9b\xcb\x33\x92\x42\x2f\x1e\xbd\x93\x13\xff\xf8\x0f\xcf\x32\xb7\xb0\x53\x0d\x70\xd2\x16\x74\xaa\x47\xac\x09\x3a\x55\x88\xac\xb4\x27\x5e\xb5\x19\x12\x2e\xa4\x3b\x7e\xb6\x84\x64\x9d\x60\x66\x1e\x92\xc5\x0c\x69\x7f\x30\x36\xd8\x34\xab\x61\x89\x4c\x33\x57\xe6\xf9\x3e\x53\x34\xd0\x47\x5b\xc0\xaa\x06\xee\x62\x4f\x63\x64\x0a\xfb\x40\xc0\xaa\x06\x60\x62\x3b\x9c\xcb\x0c\x23\x0a\x4a\x75\x46\x76\x2e\x73\x1e\xba\x56\x78\xa8\x47\x81\x2f\x79\x62\x01\x04\x6c\xf2\xe8\x70\x8b\xb7\x15\xa4\xa5\x45\x11\x2f\x5d\x3d\x87\x81\x05\x9c\x6a\xdc\xdb\xef\x85\x18\x9b\x29\xd4\xb6\xc4\x08\x5e\x93\xa5\x0c\xa9\xa5\x64\x9e\x17\x70\x70\xf8\x6e\x61\xec\x33\x59\x8e\x55\x40\x10\x5d\xa7\xf6\x6f\x71\xaa\xbd\xbd\x4b\x61\x6e\xdf\xf1\x0f\x32\x4f\x90\xe8\x7f\x14\x2c\xef\x37\xee\xc9\x87\xf4\x5c\x22\xba\x40\x00\xf0\x34\x66\x7f\x70\x12\xb0\xc1\x3e\x8e\xbf\xcd\x7d\xd7\xfe\x58\x0f\x60\x1d\x7d\x1c\x30\xfd\x29\xb3\x7b\x0a\x63\x45\xb7\xec\x8d\x1b\xb6\xfd\xb1\x35\x80\x89\xfc\xb1\xc2\xc7\xb0\x55\xa4\x82\xbb\x7f\xf4\x00\x61\xce\xbe\xf9\x4c\x7a\x0f\xe9\x8b\x0a\xae\xc2\xf6\x07\xed\x9c\xee\xfa\x7c\xcd\xa3\x90\xfd\xf1\x56\xe9\xf9\x56\xe1\x99\xd9\x38\x64\xd5\x78\xbe\xb4\xca\x18\x29\xfc\xea\x42\x90\xee\x6e\x87\x90\xa4\x8c\x67\x7a\x23\x85\xb6\x7a\x18\x8b\x42\xa4\xc7\x71\xa4\x8b\xf3\x72\xb1\x4a\x1f\xaf\x20\x62\x4e\xb7\xe8\xc1\x12\xef\x0f\xcf\x6b\xd0\xdb\x5f\xb0\x82\x30\xb1\xb2\xf2\xb7\xdc\x50\x7d\xcd\xd2\x3d\x9f\x2a\x4c\x25\x4a\xea\x6b\xe1\xc9\x3e\xd1\x05\x7b\xcb\xc5\x8d\x72\xf2\xb7\x5c\x0e\x29\xa3\x46\x01\xb1\x4f\x86\xfe\x49\xd0\x7f\x67\xe8\x6f\xb9\x9a\xd1\xe5\xfb\x3d\xab\x69\x51\x51\x7e\x9e\x36\xe0\x1f\xaa\x45\xc5\x23\x3a\x7c\xfb\x5e\xb9\x64\x74\x4a\xfe\x96\x6b\x9b\x2f\x17\xa4\x6c\x1c\x67\xe4\xef\xf1\xb0\xea\x1a\xbd\xe5\x12\x85\x64\x1b\x65\xa6\x50\xe2\x01\x96\xf9\x5a\xd2\xc2\xe0\x5f\xbf\x97\x86\x0f\x1d\x19\x61\x12\x39\xd9\xf9\xf8\x5b\xf4\x07\x71\x12\x5e\xf9\x11\xee\x61\x12\xf4\x8e\xa2\xa3\x22\x1c\x26\x01\x20\xaf\x93\xf3\xdf\x9f\xa6\x56\xb3\xcf\x4c\xa9\xfb\x13\x4a\xd2\x0a\x7e\xf9\x5a\x6b\x67\xa1\x7d\x91\x75\x96\xff\x60\x7c\xeb\x4e\xbd\xe5\x7a\xe0\x6b\x6e\x82\x61\xbf\x16\xac\xe1\x17\xdf\x4f\xf0\xe4\x63\xeb\x82\xfd\x88\x36\x71\xb6\x8e\x9a\xab\xc7\x1f\x56\x20\x86\xba\xee\xdb\x8f\x02\x3b\xfd\x90\x06\x33\xa4\xd5\x1d\x52\xf9\x67\x53\x6f\xa6\x22\x21\xf5\x30\xac\x94\x74\xe3\x6e\xe5\x82\xd4\xf9\x9a\x38\x12\xdb\x21\x14\x72\xe4\xfb\x99\x2b\x60\x83\x9f\x45\x05\x62\x58\x17\xe1\x37\x53\x74\x48\x3a\xcf\xb7\x72\xc4\xf1\x62\xd6\x09\xf8\x5b\xdc\x82\x3f\x27\x8e\x03\x2e\xb4\x7f\x5c\x18\xbc\x52\xaa\xc9\x9c\xf9\x93\x81\x31\x14\x2b\x55\x38\x48\xd9\xf9\x0f\x1e\x03\x39\x3b\xff\x5d\x0f\x7f\x3a\xb6\x39\x96\x9e\x2f\xc6\xc7\x05\xbb\xfb\x62\x3c\x3e\x3b\xe5\xc3\x68\xf1\x11\x39\x1d\x46\x8d\xc7\x55\xd1\x0c\x4a\x2c\x19\x5d\x8c\x17\xa3\xdf\x87\xd3\xea\x17\x3f\xcb\x1c\xce\xaa\x7f\xd9\x51\x7c\x53\xa7\x6f\xa6\x26\xa4\x82\xed\xcb\x42\xbc\xa9\x4b\x2d\x16\x28\x65\x50\xd4\x8a\x0c\x27\xe0\x6f\xe7\x53\xa9\xef\x04\x66\xc8\xe1\x71\xe4\xdb\x65\x32\x15\x6d\xfd\x9a\x42\x31\xdb\xd3\x1f\x8b\xeb\x99\x4f\xcd\x06\x47\x4a\x2d\x2c\x2e\x7e\x95\x15\xe6\xa7\xd3\xc3\xe9\xfa\xef\x6f\xe9\x83\xf4\xa8\xdd\x35\x37\x65\xf3\xf6\x0a\x79\xf9\x5b\x9a\x71\xd0\xcd\x23\xd5\x36\x77\x37\xdf\x76\x9d\xf7\xe9\x82\x4e\x90\x8e\x1a\x31\x06\x81\x17\xfc\x0e\x67\x38\x9d\xff\xdd\x7b\x2a\x12\x43\x9d\x2f\xe6\x76\xd1\x66\x0a\x1d\x58\x3d\x73\x2d\x57\x98\x43\x4c\x8c\x41\x74\x85\xeb\x45\xbd\x8e\x94\x72\x5e\xd4\x64\x5f\xd8\xf5\x62\x7d\x6d\xba\x37\xc6\x8d\x48\xa8\xd4\xb4\x7d\x71\x72\xd1\x61\x45\x4f\xb7\xda\x1a\x4e\xe9\x7f\x17\xa6\x5e\x7b\x1d\x26\x5d\x0a\x8b\xd1\x09\x99\x5b\x67\xa6\xd7\xd1\x8d\x5e\xe1\x31\x81\x70\x8c\x5e\x1b\x4e\xf7\x7f\xf7\x21\xe4\x4f\x7f\x9a\x3a\x90\x18\xf5\x84\x64\x9f\x0d\x48\xba\x5f\x20\xc5\x66\xcc\x99\xae\xc2\xdb\xc9\xaa\x1d\x5e\x61\x26\x50\x77\xd6\xa7\xaf\x3b\x87\x13\xf6\xb7\x93\xae\xeb\x56\xba\x9d\xf4\xf5\xf0\xb5\xce\x4c\x2d\xee\x1c\xcd\xeb\x40\x57\x5f\x0f\x79\xc8\xbd\x45\xcf\x97\x1b\x9c\x50\xf4\x94\xbe\x2d\xb8\x26\xa5\xea\xc0\xf9\x82\x32\x9f\xa4\x77\x76\xb8\x17\x1a\x91\xb3\xe9\x3e\x5a\xfc\x21\xc3\xef\x4f\xe1\x71\x1a\x91\x32\xf0\x99\xe9\xa6\x8a\x28\x3a\x6b\x4f\x54\x3a\xb0\x2d\xbe\x1e\x52\xd3\x7a\xd2\x75\x05\x33\x37\x7c\xf7\xa6\x24\x67\x4e\xba\x6a\xdb\xf0\x3a\x52\xf8\x51\x21\xf3\x6a\xfc\x43\x4b\xfb\x9a\xc9\xd3\xb3\x7c\xe2\x03\xad\x0d\x52\xb2\xe4\x1c\x50\xb7\x90\x36\xe8\xe8\xa6\xdc\x9b\x09\xa5\x18\x33\xa3\x42\xf9\x04\x30\x53\x8d\x92\x67\x8e\x03\x6a\xab\xfd\x54\xaa\x74\xa7\x23\xd5\xb0\x17\xe9\x8e\xdc\x9f\xb6\x0a\x6f\x4a\xa9\xd3\x27\xd5\xf8\xf9\xdc\xb8\xa0\xa6\x47\x9c\x42\xf1\x0e\x3b\x46\x17\xd7\xcd\xd6\xee\x4d\x79\x9b\x1e\xa9\xf5\x23\x61\x4e\x57\xa7\x65\x17\xeb\x41\xf8\x88\x4c\x80\x5d\x48\x99\x00\xdb\x11\x17\x8c\xad\xcb\xe9\x72\xd5\x7c\x6a\x41\xc1\x2a\x9f\xf6\x15\x5c\x6c\x09\xe7\xd9\xf0\x4b\xea\x9b\x5a\xba\x4b\x62\xcc\xd6\x3c\xc6\x8a\xdc\xa4\x44\x57\xc9\xa7\x5a\xc9\x92\x6a\xf4\x40\x89\xfd\x72\xe2\xf0\xa4\x1a\x69\xa5\x23\x95\x4a\xbe\x1c\xa9\xc5\xaf\xa7\x2e\x36\xe1\xb9\x79\x63\x9d\x6f\x15\x9a\xf3\x72\xfb\x45\x3b\xdd\x66\xcd\x4d\x89\x21\x90\x18\xc5\x87\xf8\xeb\x48\x61\x93\x38\x39\xa1\xac\x5e\x99\x10\xdf\x38\xf7\x17\x12\xae\x90\xe5\x36\xdf\xb2\xd3\x26\xe4\x2d\x89\xfc\x3c\xef\xa6\x6c\x26\x4f\x2a\x72\x54\x07\xbf\x32\xba\x49\xfb\x15\xd0\x85\xc4\x71\xb8\x8e\x7c\x2c\x26\xcd\x58\xa6\x36\x49\xc9\xa7\xe2\x91\x74\x01\x1e\x61\x28\x32\x35\xcf\x2b\x6d\x7c\xe5\xcb\xa1\x4e\xb0\x0d\xc8\xc9\x02\x8b\x50\xa9\x98\x22\x42\xab\x2c\xef\x98\xfc\x68\x61\x73\xe4\x53\x69\x4d\x27\xa1\xb8\x49\x8b\xdf\x96\x6a\xb5\x2f\x51\x7d\xc5\x18\xcd\x8e\x4c\x2b\xf2\x09\x45\x81\x95\xcd\x8c\x30\x12\x60\x53\x35\xa4\x9c\x7a\xe9\x91\x8f\xea\xd7\x99\x8a\x6c\xfd\x36\x26\xc8\xa0\xdf\xfe\xca\xaf\x72\x69\x1d\xe9\x83\xd9\xa4\x5d\x90\xcb\xdf\xe6\x57\x8b\x9c\x33\xbf\x8a\x6d\x6b\x5a\xf5\x85\x71\x2a\xfa\xfa\x4f\x57\x74\x19\xd5\xc7\xee\xf4\x85\xf5\xec\xe8\xf1\xcb\x0f\x9f\x60\x71\x07\x95\xc8\x42\x28\xa6\xc4\xe5\x3b\xb5\x9b\x52\x2c\x8d\xfe\x82\xd2\x52\x5f\x69\x62\x29\x78\x4b\xca\x7c\x29\xf4\x77\x2a\xfb\xfb\xdb\x8f\x87\xc5\xaf\x93\x6d\x4d\x9b\x93\xf9\x0a\x39\x5c\xda\x21\x75\xf3\xcc\x12\x5e\x66\xb0\x2b\x65\xb6\xd6\x5b\xfe\xfc\xba\x19\xbe\x35\xd8\xd3\x8f\x99\x6e\x52\x62\x10\x85\x4f\x72\x8e\x2b\xad\x20\x5a\x90\x51\x8a\x46\xd1\xce\x2b\x94\x72\x53\x4c\x64\xd4\x85\x85\x72\xa6\x26\xf1\x18\x5b\xf2\x0a\x8f\x51\xaf\xc4\xc9\xcc\xcc\x0b\x37\x55\x1e\x0a\x2e\x62\x7a\x95\x1c\x39\x32\xf3\xc2\x02\x49\x87\x38\x97\x64\xd1\xfc\x16\xe1\xca\x72\xdf\xbc\xd0\xa2\x8e\xb9\x19\x3e\x66\x48\xfb\x51\xda\x84\xd4\x66\xc6\xc8\x20\x23\xc6\xc9\x82\x3b\x34\x44\x7d\x9d\xf9\x56\xb3\xcd\x1e\xf5\x8d\x6f\x7d\x95\x7c\xab\x50\x0c\xc8\x34\xc7\x89\xa8\xc8\x08\xdd\xea\xb6\x28\xc0\x8a\xb0\xe9\xd4\x63\x7d\x84\x41\xa0\xa8\x11\x67\xac\x0e\x5d\xf8\x5e\x2f\x14\x59\x0d\x67\xa4\x50\x33\xdd\xbd\x39\x6a\x24\x08\x4d\xfa\x79\xed\xbf\xa5\x56\x65\x25\xa5\x42\x5d\x95\x14\x1a\x0a\x97\xfe\x2d\x4f\x1f\x8d\xda\x67\xd7\xb1\x66\x74\xfb\x7a\xbe\x10\xc0\xd5\x32\xe3\xa1\xbc\xcd\xb0\x10\x94\x3e\xa2\x45\x82\x28\xde\xc3\xdd\x21\x7a\x20\x30\x65\x54\x99\xee\x5b\x4b\xcd\xb4\x6f\x3b\x63\x99\x11\xf9\x95\x06\x3b\x52\x01\x1d\x5a\x58\xdc\x01\x1d\xea\x8b\x85\xd7\xf5\x6a\x0b\x87\xeb\x76\xb5\x45\x0c\x29\xda\xc3\xfd\xe9\x09\x69\x6e\x2b\xa9\xc8\x32\xab\x5f\x90\xb2\xd9\x5a\x28\x09\x75\x4e\x17\x0e\x06\x31\xfb\x91\x36\x2d\x62\x7b\x4a\xad\x3e\x3d\x5b\xce\x26\x31\x3b\x66\x81\x6f\x5e\x33\x05\x8a\xf0\xd0\xc2\x88\xb9\x87\xcd\x38\x1d\x04\xe4\x42\xcc\xeb\xe6\xb5\x54\x44\x4f\x9b\x74\x21\x15\xe9\x06\xe8\xf9\x54\x19\x19\x47\x9a\xb4\x5c\xc4\x48\xd0\x5d\x6b\xcb\xbe\x69\x5c\x5f\x75\x26\xcc\x22\x01\xbe\x54\xe2\x89\x96\xad\xd0\x7c\x3f\x35\xf3\xa3\x04\x42\x66\x0b\x2d\xd3\x29\xb4\x15\x9b\x09\xe1\x24\x8b\x82\xd4\x2d\xe9\xd9\xaf\x14\xb2\x28\x0c\x44\x77\x0d\xcf\x14\xc8\x31\xf1\x6f\xad\x5a\x84\x0c\x8b\xc7\x48\xe8\x02\x5f\x7d\xfa\x2d\xd2\x4d\x89\x81\x33\x2a\x5d\x7d\x16\x74\x55\x37\xff\x20\xb5\x9d\x59\x62\x5c\x57\x48\xf1\xcf\xf8\x33\x1d\xf2\xfd\xa9\x0f\x2b\x58\x2d\x1d\xa9\x42\x0f\x9c\x69\xa2\x94\x54\xab\x81\x8c\x01\xa5\xb9\x1b\x05\x0a\x13\x26\x85\xac\x6c\x85\xd4\xb8\xb0\x47\x3b\xac\xf6\x74\xde\x2e\x0c\x0c\xb7\x6e\x21\x83\xb5\xac\xd4\x12\xe7\xc8\xa8\x65\xc1\xcc\xa8\x3c\x82\x46\x5c\x98\x29\x1d\x7f\x19\x3b\xde\xb7\xa8\xe7\xc8\xaf\xee\x6e\xfe\xf4\x2a\xe4\x4b\xeb\x67\xc4\x1c\xe9\x23\x3a\xcc\xdf\xfd\x38\xbb\x85\xb2\x86\x61\xe5\x7d\x1b\x1a\xdb\x5e\x81\x20\xda\x89\xd3\xc0\x77\xa1\x73\xe6\x47\x07\x1e\x4a\x1b\xd6\xb3\xd8\xfd\x1d\xe5\x83\x06\xf4\xed\x67\xc9\x40\x10\x5d\xe8\xd9\xee\xd3\x31\x02\x20\xa9\x24\xe8\x80\x83\x1d\x3d\xb3\xe7\x6b\xae\x8e\xf6\x21\x66\xc4\x33\x09\x3a\x1d\x57\x63\x7a\x6f\x52\xd9\xd7\x1e\xca\xba\x08\x65\xd9\xcd\x8b\x33\x85\xf6\x5e\xa1\x75\x1d\x5f\x62\x76\xa4\xa0\x23\x4a\xd4\x17\x32\xc9\x89\x27\xc6\x85\xbe\xf1\xd5\xe9\xc9\x0e\x54\x7c\x89\x76\xce\x54\x64\xa3\xaa\x43\xcd\x7f\xfe\x57\x5f\x25\x65\xf7\x92\x15\x2c\xc2\x01\x83\x71\x12\x50\x74\x89\x33\xc7\x04\x05\x97\x68\xe5\x95\x06\x7d\xdd\x59\xa1\xec\x71\x81\x8b\x75\x03\xdb\x0a\x46\x9d\x6e\x5c\xaf\x03\xfb\x6a\xc8\x40\x2e\x18\x71\x0e\x26\xd1\xd8\x0b\xce\x55\x51\x5b\x28\xab\xa5\x9a\x4f\x6d\xfe\x61\x09\xe9\x6e\xf6\xfc\x97\x72\x00\xd9\xb4\x68\xeb\x1e\x4e\x1c\x3e\xc9\xd7\x74\xe0\xee\x6b\x49\x23\x78\xfa\x31\xc3\x87\x23\xdc\x5e\x98\x07\x03\x8f\xdd\xcc\xc7\x53\x7d\x4f\xa1\xc0\x6a\x67\xca\xb6\xca\x68\x44\xf7\xee\x31\x57\x74\xdd\xda\x0a\xac\xef\x30\x13\x35\xe7\x7a\x5d\xa9\xb6\x82\x11\x34\x22\xf4\xf2\xed\xcd\x7a\xa3\xa6\x50\xc9\x50\x91\xc1\xc3\xb6\xf3\xf3\xe3\x50\x35\xcc\x87\x4c\xe7\x7e\xa6\x8c\xa9\x0b\xe9\x7d\x81\x4a\x57\x9c\x89\x56\x30\x1c\xa6\x03\xd8\x9e\x1c\x7a\xb9\x45\xed\x67\x4a\xad\x19\x6b\x48\xd2\xfe\xbd\x20\x1d\xe2\xf1\x82\x62\xfd\x3a\xa4\x8f\x99\x57\x2a\xb6\xbc\x62\x5b\x4f\xe4\x15\x52\x67\x02\x75\xc3\xfb\x32\xd1\x7f\xa9\xd9\xd7\xf4\x57\xcb\xc7\x1a\x3a\x96\x85\x22\x48\xb4\x82\x49\x32\x25\x93\xca\x91\x2f\x3d\xf2\x76\xfd\x2d\xc4\x7d\xcd\x5a\xd0\xe4\xba\x58\x6d\x05\xa5\x3a\xb1\xa7\x38\x3a\xe9\x62\xb5\xe5\xb4\x31\x71\x09\xb7\x90\x97\x0a\xe9\xba\x8f\xe9\x88\xa4\x09\xd0\x6d\xe6\x53\x0f\x84\x75\xe1\xb8\x86\x81\xa9\xeb\xd2\xf3\x35\xd2\xa4\x02\x0c\x20\x92\x94\x24\xa3\x15\x58\x51\x39\x32\xce\x9a\x89\x26\x72\x5b\x26\x4b\xd2\x2b\x92\x62\x1a\xc9\x91\x53\xfb\x04\xbd\x86\x1b\x65\x22\xae\x5a\x3e\x16\x1b\x23\x1d\x26\xe2\x0a\x11\xbe\xd0\x79\x98\x04\x0b\xbe\x29\x21\x19\x68\x3e\x9e\x2e\x3d\x20\xed\xf9\xed\x21\x95\xb8\x0a\x56\x5e\x96\x3b\x6c\xa5\x85\xab\x17\xad\xe2\x5b\xd1\xd9\x91\xdb\xbe\x15\x2d\x18\x87\x6b\xd2\xa5\x14\x5e\x76\xa6\xd0\x25\xf3\x54\x04\xda\xf2\x25\x7b\x84\xd6\x52\xd2\xb8\x7a\xa5\x26\x09\x94\x99\x4f\xc5\x0b\xec\xa6\xe5\xa3\x53\x76\xbe\x13\x5b\xf4\x17\xe6\xe1\x72\x92\x94\x23\x85\xf7\xe4\x1f\x30\xf9\x72\x60\xe4\x57\x4b\x45\xde\xa5\xd8\x3b\xcb\x02\x05\x01\xa7\x68\x13\xad\xc0\x0b\xca\x88\x51\x62\xa2\x3b\xf4\x44\x7d\x5d\x69\x52\xb1\xf3\xb3\x10\x1c\xb2\x30\x04\x96\x5c\x83\x05\x13\x79\x61\x7f\x61\x8e\x2d\xbf\x55\xc9\x8a\x3a\x44\xc0\xd5\xf3\x6d\x77\x2b\xf9\x16\x1b\x14\x4a\x43\x41\xaf\x39\x4c\xc5\xb8\x30\xb2\xd6\xf6\x48\x52\xe8\x3d\xd8\x43\x2a\x40\xda\x48\x23\x0c\x25\xa4\x1f\x99\xc0\x80\xce\xad\x51\xd1\x1d\x3b\xc2\xc7\xad\x6c\xcc\x69\x54\xad\x22\x43\x1c\x61\xb8\x6d\xc6\x60\x6a\x15\x19\xe2\xca\x39\x4a\x09\x32\xce\xd1\x53\x8d\x3d\xe1\x2d\x3f\xde\x22\xad\x22\x5b\xb6\x65\xcb\x95\x26\x96\x57\xbe\x41\xea\xe8\xdb\x52\x8f\x16\xec\x4a\x8b\xda\x3a\x6c\xc9\x6d\x06\x62\xf9\x76\x18\x88\x1f\x75\x1d\x10\xf3\x70\xa3\x90\xb0\x1d\x15\x70\xa2\x15\xf6\xcd\x5e\x70\x34\x03\x11\xa0\x23\x6a\xc6\xe9\x33\x3a\x7c\xa8\xf8\x13\xe7\x9c\x69\xc3\x8b\x37\xd2\x08\x9c\xc7\x40\x84\x24\x8a\xcf\x6d\xdb\x29\x1d\x81\xba\xb1\x9b\x50\x98\xce\x97\x91\x53\xd5\xb6\x2e\xcb\x12\xe8\x8c\x57\xe0\xbc\x8d\xd9\x84\xda\xdb\xce\x1c\x77\x21\xcf\x14\x64\xa2\x15\x14\x89\x82\x4c\xb4\x92\xfe\x98\x7f\x50\x89\x89\x31\xd1\x5f\x7f\xcb\xf0\x1d\x76\x72\x9b\x6f\xe2\x87\x22\x67\x94\x5a\x63\x34\xe4\x81\xe2\x51\x94\x81\x72\x7f\x0f\x8f\x24\x3f\x5e\x5a\xda\x50\x06\x8d\x4d\x28\x19\x34\xec\x69\xe5\xd9\x68\xe5\x4a\x2d\xe6\xf5\x11\xd2\xa0\x08\x28\x5b\x42\xe9\x1b\xe6\x32\x1b\x41\xd9\x31\x8e\x83\x99\x7c\x1b\x6b\x76\x61\x76\xbf\x7d\x7e\x8f\x4e\x71\x42\x8c\xfe\x42\xce\xbd\xcd\x23\xa8\x1f\xe7\xbc\xc8\x05\xd7\xdb\x42\x05\xcd\xef\xb8\x11\x67\x14\x57\x02\x47\x70\x04\x25\x03\x46\xd4\x91\x32\x60\xb4\x82\x15\xf5\xe6\x72\x09\x8b\xef\x6d\x05\x84\x63\xe7\xad\x0b\x87\x82\x21\xfb\xc6\xb4\xc6\x00\x7d\x9b\x2b\xae\x50\x55\x14\x6d\xc8\x3b\x38\x7b\xca\xba\x7f\x4c\x1b\x43\x19\xee\x53\xa8\x89\xc6\xe7\xf8\x26\x23\x03\x87\x4e\xb0\x29\xd7\x48\x0f\xcc\xc2\xec\x8c\x8f\x0d\x1e\x4c\x67\xd2\x68\x44\x79\x7e\xb0\xb3\xaf\x7c\x6b\x21\x38\x53\xaa\xee\x62\x1e\x2a\x38\x45\x6f\xcc\xbb\x83\x53\xf4\x17\xc2\x54\xe1\x28\xce\xf1\x4a\x21\xf8\x63\xa8\x7b\x13\xc5\x59\xf4\xb1\xb9\x8c\x9d\xfb\xe1\x82\x92\xb9\x74\x36\x8e\xb8\xba\x3e\xbe\xa0\x8c\xe8\xf8\xf8\x2d\xf8\x85\x19\xe0\x28\x13\xf5\xf5\xd4\xcb\x8e\x63\x28\x58\x4d\x33\xa5\x43\xfd\x4b\xab\x82\xb1\xe7\xa6\x56\xd9\x39\x46\x43\x37\x2a\x3b\xc7\xd1\x7b\x46\xe6\x27\x6b\x31\x04\x3e\xde\xf4\x6c\xaa\x8f\x17\x34\x73\xb2\x1d\x7c\x81\x1e\x18\xa7\xd5\xd9\xe5\x1f\xe7\xb1\x45\xc3\x29\x8b\x46\xfb\xf7\x53\x78\x31\x85\x3f\xf5\xc7\xb5\x7e\x07\x1d\xb8\x20\x59\xc1\x0a\x69\xa9\x48\xbd\x5f\x96\x6c\x42\x59\x69\xd4\xd4\xd4\xd5\x68\x87\x12\x4f\xf5\x54\x2b\x21\xc4\xa6\x17\x3c\xe5\xfe\xb1\x40\x4a\xa0\xa3\x47\x15\xef\xe1\x2e\xe4\xcf\x69\xe1\x41\xad\xde\xe7\x2d\x65\x76\xd9\xb2\x8f\xbe\x7e\x3a\x14\x63\xc2\x70\x94\x1c\x4e\x88\xea\x70\xcd\x14\x7a\xbb\xa2\x48\xbf\x08\x85\x19\x52\xb2\xee\x0a\xa5\xdd\x8a\xd1\xa7\xb8\x0e\xad\xb0\xb1\xbf\x36\x57\x5b\x28\xdb\x41\x98\x16\xce\xdb\xd1\x5f\xec\xc1\xaf\x4d\x52\x56\xde\xf0\x94\x1a\x67\xa0\xf0\x29\xad\x60\x05\x7f\x97\xd1\xb2\x74\x00\xd9\x82\x1e\xfb\xa2\x45\xd8\x00\x8e\xf9\x30\xff\xcb\x65\xe6\x17\x86\xa2\x1e\x39\x73\x0a\xa7\x86\xaf\x6f\x90\xa3\x0f\x03\x3a\xe1\xc4\x21\xd0\xc9\x4d\x0e\x48\xc9\x28\x64\xb1\xe2\x38\x9c\x0d\x9e\x51\xe0\x86\xd1\xd8\x0c\x3f\x4e\x2e\x48\x78\x87\x6a\x68\xec\x39\x21\x50\x8e\x7e\xa5\x4c\x7c\xd0\x43\xd9\x5e\x61\x0e\x7e\x3c\xdf\x41\xc3\x38\xc3\x47\x7f\xe5\x63\x99\xa7\xd9\x37\x84\x75\xa8\xaf\x90\xbe\x7a\xa4\x4d\x9f\x70\x46\xa8\xb7\x20\x66\xa1\x3e\xfe\x31\xa4\x30\x84\x88\xd7\x9f\x17\x7e\x84\x72\x07\x50\xfb\x06\xab\x8c\xd8\x53\xc0\x53\x62\x24\x09\x9e\x52\x1a\x92\xd9\x81\x1b\x6a\xdc\x40\x3f\xeb\x91\x8c\x53\x36\x41\x96\xc8\x60\x95\x59\x42\x09\xa2\x8b\x47\xeb\x67\xcd\x80\xd6\xf8\x59\x15\xb0\xc7\x15\xd2\x61\x34\x14\xb0\x43\x3a\xc4\x07\xf4\x8b\xe4\x60\x76\xfc\x04\xa7\x3e\xdf\xaa\x37\x33\xdf\xbe\xfd\x2d\x13\x62\x8e\xf1\x98\x67\x02\x3c\xd8\xec\x98\x2f\xab\xf9\x87\xf2\xcd\xd5\x80\xf2\x83\x12\xcf\xfa\x74\xc8\x06\x0c\xd5\x29\xb0\x4a\x77\x36\xb2\x9b\x52\x07\x3c\xc8\x29\xac\x4a\xf1\xf3\x85\x9b\x72\xfb\x13\x4a\x2f\x2f\x46\x9a\x30\xc3\x36\x3e\x45\xf4\x37\xba\x63\x31\xd2\x69\x63\xb2\x5a\x15\xb2\x9b\x4c\xa9\xe5\x88\x6d\x8b\xf9\xf2\xba\x4f\x2a\xf2\x86\x9f\xb4\xa2\x85\x2d\x69\xc4\x7b\x78\x52\x8d\x8e\x19\xa0\x2c\xe6\xcb\xc1\x33\xb1\xc3\xe6\x0b\x58\x01\xd5\x68\x5f\x72\xff\x3d\x5f\x76\x3f\x4c\x66\x20\xeb\x43\x3d\x16\xed\x33\x94\xd2\xfb\x58\x8a\xcd\xc3\xce\x51\x84\xe5\x34\x92\x03\xcc\xca\x3c\x7c\x6c\xc4\x0c\x9b\x4a\xcf\x31\x1a\x33\x70\xe8\x92\xdf\x01\xca\x6f\xca\x0c\x6a\x89\x37\x1d\xf1\xe0\xc4\x68\x9c\x4a\xdd\x51\x1c\xba\xe1\xa6\x7e\xee\x1e\x85\x9c\x04\xad\x96\xa6\x02\x19\x9c\x93\xde\x1e\x13\xce\xa3\x99\xe9\xa4\x9c\x07\x94\xec\x8c\x7a\x50\xaf\x43\x0b\xbe\xe0\x83\x03\xc3\xfe\xa2\x4b\x7a\x1c\xe7\xec\xc3\x37\x75\x6a\xfa\xf2\x69\xd1\x43\xb5\x50\xd6\x60\x69\x93\x7d\x7a\xe4\x4f\x1f\x22\xe9\x82\x5d\x08\x58\x9c\x53\x61\x0d\x1a\x88\xa0\x79\xd8\x3d\xca\x81\x65\x2a\x3d\x48\xc3\x4b\x36\x9d\x1e\x04\x83\x77\x0a\x7b\xd2\x8c\x7c\xbc\xa9\xaf\xbe\x4c\xd9\x4f\x14\xd3\x45\x42\x89\xf1\xb7\x13\x65\x0a\x89\x52\xce\xcc\x25\x17\xc5\x83\xee\x6c\x86\x49\x9b\xba\xe3\x3b\xe0\xe0\xc3\xb8\x64\xbf\x0e\xbe\xc9\xae\x2e\x30\x68\x1f\x3e\xeb\x01\x9b\xc8\x16\x04\x7c\x32\x95\xaf\xa4\xd4\x30\xc2\x66\x89\xd2\x05\xf3\x85\xe5\xe3\x74\xdc\x84\x51\x6d\x19\x4e\x05\x4e\x68\x40\xba\xa6\xc1\x28\x17\xfc\x7e\x12\x11\x13\x01\xe0\xd8\x08\x17\x2b\xa6\xf0\x07\x67\xf6\xd4\xe9\x4b\x3c\x4c\xfb\xe9\xac\x24\xb3\xb3\x44\xa7\xfd\x10\x2d\x94\xf9\xff\xa2\x07\x6c\xeb\x33\x35\x4d\xa1\xca\x4e\xa8\xb7\x0e\xa3\x69\xd3\x81\x11\x07\x43\x91\xc6\xbf\x60\x12\x07\x40\xe0\x7a\x77\x12\xb9\xa0\x9e\xd4\xb3\x6c\x83\xa4\x0b\x5a\x7a\x70\x77\x53\x18\x8f\xbb\x90\x5f\x0d\x44\xe6\x52\x66\x9e\xc4\xf7\xe2\xdb\x7b\x05\x47\x83\xdb\x84\xf2\x38\x2b\x1b\xfb\x64\x51\x68\x03\x03\x7d\xa4\x50\x9c\x98\x69\xdf\xe6\xc4\x34\x61\xbf\xd7\x95\x5a\xbf\xee\x7b\x9a\xf4\x30\xfd\x6d\x41\xc5\xdb\x0e\x9b\xca\x16\xd2\x80\x04\x4c\x45\x2b\xb8\x0b\x3b\xa4\x9c\xfa\x36\x82\x66\xb1\xa0\x39\x43\x59\x96\x5c\x50\x4b\x6d\xa4\x1a\x6d\x79\xeb\xb3\x59\x0c\x44\xe4\x08\x30\x05\x24\x69\xa0\x3f\xa6\x92\x83\x34\xb0\x0e\x53\xc9\x41\x8a\x53\x0c\xdf\x54\xf1\x38\xe8\xcd\x74\xfb\x54\x33\x3d\x59\x29\x53\xfb\x27\x2d\x2a\xe7\x2a\xe6\xda\x2c\x0b\x06\x99\x90\x3a\x57\xd4\xf4\x6e\x59\xf5\xd0\x81\xe5\xc0\x33\xf9\xd4\x52\xaf\x50\xb8\x99\x3a\xba\xe7\x64\xda\xb5\x30\x68\x43\x3c\x38\xee\x4d\x07\x15\xe0\xca\x7f\x16\x0e\x66\x88\x32\x03\x33\x46\x2d\xf4\x70\xfb\x16\x81\x2d\x66\x60\x86\x53\x7c\xde\x94\xcd\xe8\x46\x9f\xbc\x9a\xcc\xc9\x65\xbb\x7e\x84\x92\xdd\x6c\x9f\xef\xbc\x50\x05\x36\x40\xe6\xc5\x05\x3b\x4a\xd6\x09\x3d\xe2\xd5\x9f\x97\x1f\xde\x64\x3f\x2a\x26\x40\x69\xb0\xa2\x62\x00\x14\xc7\x94\xbf\x29\x8d\xac\xa4\x4c\x4a\x8d\x91\x18\x4f\x01\x28\x67\x92\xde\xa3\x3e\x9f\x9a\x11\x90\x33\x17\xbb\x71\xa6\x49\x0d\x8c\xd9\xbc\xd8\x8d\x0d\xca\x73\xcb\x8a\x0a\x6c\xd1\x81\x74\x4c\x3d\xde\x2f\x98\xb0\xf3\x42\xba\xb3\x53\x79\xca\xcf\xd9\x7e\x1a\x6c\x31\x6a\xc9\xc7\x9e\x69\x7a\xa0\xd3\x7c\x8c\x99\x8b\x30\x7d\x93\x0e\x6d\xbb\x0c\xe6\xdf\x4e\x94\x79\x71\x7e\x67\x8f\x5d\xdc\x50\xc0\x63\xce\x04\x32\xd2\x8c\xe1\x3d\x1c\xa8\xa6\xb0\x17\x05\xb3\x7a\x0a\x7a\xd1\x47\x16\xc5\x4f\x42\x38\x5f\x4d\x3d\xd9\x6f\x5c\xb9\xcf\xea\x8d\xcc\xcc\xeb\x89\x7e\xb9\x18\xa6\x93\x79\x4c\x9c\x8d\x53\x0f\xef\x1b\x57\xc8\xd3\xe9\x3b\x2e\x98\x46\x18\x8d\xdc\x22\x4c\x43\x34\xb8\xd8\x9c\xd5\x71\x65\x8f\xd4\xc2\xe6\x80\x0c\x03\x51\xeb\xf4\xe6\x40\xe7\x02\xd2\xc0\xe0\x9d\x02\x69\x8c\x86\xcd\x52\xcd\x42\xe8\xee\xca\x19\xfc\x4a\x45\x72\x27\xb6\x14\xba\xeb\x69\x73\xaa\x9a\x50\xb6\xcb\xf2\x9f\x99\xad\xa7\x03\x16\x91\x35\x1d\xb0\x9b\xab\x33\x32\x39\x80\x9e\xe9\x5a\xf6\xff\x67\x12\x6e\xd9\x7f\x45\x05\x0b\xfa\x51\x8e\x4c\x97\x70\x81\xb5\xe6\xc7\xad\xfe\xd0\x03\x2b\x89\xb4\x18\x59\x42\xa1\xb5\x33\xf2\xa0\x1a\xb7\xc5\xa1\x71\x56\x44\x7f\x1a\x31\x6e\x0b\xd7\xfa\xac\xbe\x63\x00\x0e\x39\x95\xb0\xa3\x5d\xe9\x82\xef\x18\xb8\x2e\x99\xc6\x77\x5c\xe8\xd1\x86\xee\x86\x0f\x84\xe1\x28\x38\x1e\x26\xcf\xe5\x9d\xe2\xff\x26\xad\x00\x59\x86\x36\xdc\xdf\x54\xa4\x65\xa0\x07\x6d\xd0\xfb\x90\x92\xc5\x4f\x23\xdb\x85\xe9\x90\x63\x23\xf8\xe4\x31\x1b\xe6\x3c\x2a\xa6\x59\x1b\x20\x68\xf4\xd0\xbe\x5d\x19\x0a\xda\x80\xf9\x6c\x96\x42\xe9\xad\x8c\x00\x2e\x2a\x66\xc3\x02\xad\x8c\x4c\x26\x01\xa8\xbd\xe9\x77\xf6\xd7\x53\x26\x09\x80\xd0\xe6\x9d\x7d\x7d\x6a\xf5\x64\xe6\x5b\xac\xd3\x4e\xf7\x70\x22\x62\x00\x1a\xe0\xc1\x85\xfc\x6c\x7e\x2a\xc8\x31\x77\xea\xa9\xfd\xc9\x9d\xe0\x6c\xc8\x28\x4e\x58\x02\x83\xb4\x2b\x33\xad\x38\x36\x47\x4b\x3d\x4b\x57\x13\x74\xc8\x69\x1b\x66\xaa\xb9\x55\xd7\xb8\x52\x8b\xf5\x44\x56\xc1\x39\x9b\x9f\xee\xfc\xf4\x1a\x8a\x1f\x95\xb7\xa8\x71\x10\x69\x18\x95\x23\xa4\x05\x12\x87\xb8\xc6\x25\x46\x67\xe5\x7d\x77\x9f\x83\x5b\xb3\xc9\xd2\xf2\xad\x56\x1e\x95\xd2\xb0\x23\xe1\xf1\xee\xf7\x11\x76\x26\xcc\x8e\x07\x0a\xcd\x45\x22\x90\x6c\x24\x83\x3a\x2e\x34\x97\x41\x1d\xa3\xc2\x16\x06\x75\xf4\xd7\xcc\xb7\x3a\x1c\xa1\x2d\x3b\xb7\x5d\x3d\xa4\x94\x0a\x4b\xdf\xcd\x5e\xed\x6f\x1f\xca\xf4\x33\xf9\x0b\x2d\xd2\xb9\xb7\xc0\x16\xf3\x6b\xf7\x0b\x91\xed\xd7\xee\x5c\x5e\xce\x0e\xcf\xa4\x49\x78\x86\xc3\xac\x31\x1d\x23\xa6\xb6\x93\x7b\x1c\x6c\x06\x81\x38\xda\x85\xd6\xe0\x45\x7b\x24\x5f\xc7\xd7\xc0\x91\x54\x4f\xda\x4b\xac\x55\x81\x3a\x1a\xf7\xfe\x33\xf9\x3b\x60\x93\x00\x35\xd0\xb3\xdd\xd9\x3b\x79\x69\x31\x8d\xcd\x18\x35\x23\x95\xa1\x02\xfa\x70\x76\x96\x37\x9f\xaa\x15\xf6\xaa\x1e\xad\x9f\x03\x25\x4c\xaa\x0f\xdc\x4c\xd3\x38\x0d\xee\x11\x67\xe7\x52\x0a\xd1\x6c\x9c\xc6\xa8\xcc\xd8\xf0\x11\x02\x4d\x31\x6c\x65\xc2\x6e\xce\xfb\xd1\x99\x03\x63\x2f\xb8\x3f\x9d\x7e\xc3\xce\x15\xe8\xf4\x1b\xf6\x7e\x70\x54\x1b\xe8\x1f\x26\x73\xe0\x6e\x44\x0a\x0d\xf9\x09\xb8\x79\x9d\x02\x58\x54\x9c\x84\x53\x00\x8b\xca\xbd\xf5\x34\xc0\xa2\x1f\xd8\xb9\x03\xa7\x01\x2b\x36\x6c\x76\xf6\x34\x62\x51\x37\x43\xda\x0c\x87\x4d\x46\x96\x9e\x66\x7c\x9a\x85\x4f\xc7\x22\x0b\x02\x43\xc3\x64\x4d\x07\x71\x22\xf6\xfc\x6a\x8e\xa7\x19\xe7\x2e\x44\xe9\x28\x5d\x47\xbb\x32\x4e\xf6\xf2\x0c\xc9\x60\x68\x14\x9f\x03\xab\x34\x1c\x94\x20\x4e\x07\x30\x0f\x95\xe5\x1e\x1c\x03\xb3\x86\x36\x43\xe9\xd1\x64\x45\x19\x8d\x1e\x99\x1f\x6d\x60\xaa\x4f\x87\x69\xe9\xb0\xe7\xc4\x1a\xa9\x29\xd5\xf6\x41\x50\x3a\x47\xc6\xc4\x22\x73\x56\x0c\x3c\x6a\x73\x66\x11\xf9\x14\x85\xd0\x53\x2a\xf9\x3b\xf2\x67\xfd\xe7\x7f\x17\xe0\xe2\x49\x02\x8d\xca\xb4\x18\x0d\xd1\x8f\x57\xfe\x94\xb7\xf2\xa9\x56\x3e\xf6\xb8\x70\xa6\x03\xdd\xb3\x12\xd3\xd7\xda\x71\x08\x4c\x9b\xb0\x3d\x6d\x6a\x4e\x10\x9c\x7e\x3b\xde\x0f\x8c\x1c\x63\x1c\x2a\x9e\xc4\x39\xed\xb0\xc8\xc1\xd9\x8f\xc7\xf1\xf9\xcd\xe9\x50\x66\xf1\x49\xe8\x49\xf8\x39\x11\x3e\x93\x87\x6e\x19\x28\x87\xcf\xb4\xaa\x6b\x25\xae\xcf\xa6\x5f\x7d\xf7\x03\xe6\x98\x66\x87\xf8\x8a\xe6\x86\xcb\xa8\x78\xfb\x09\x48\x2a\xb2\x77\x28\x5d\x72\x62\x1f\x94\xaf\x61\x0e\xc4\xbb\x1f\x73\x21\xbd\x99\xc1\xe5\x67\x05\x11\x4e\x86\x2e\x8c\xca\xc8\x0d\x5d\x28\xcf\xb7\xd6\x5a\x74\x78\xe1\xcf\xc3\xd8\x5a\xde\xa7\x0f\xa5\x74\xa4\xa8\x0c\xd0\x08\xd7\xeb\xcf\xa8\x84\xf7\xb7\x3e\xbe\xe3\x89\x58\x16\xe7\x71\xcf\x2c\x5f\x0e\xc6\x1b\xb2\x6c\x0c\xe6\x5b\xe7\x5f\x3a\x53\xe6\x46\x51\x9d\x46\x1c\x70\x9f\x30\x97\x3d\xf6\x39\x05\x2f\xfb\x80\x90\x88\xcb\x1b\x13\xc1\xb1\x38\x3b\x32\xbb\x4e\x70\x41\xc6\xb1\x9b\x94\x0c\x44\x60\x2f\x9f\x1d\x73\x80\x5f\x6c\xe2\xf4\xd6\xa6\x63\xbc\x18\xcb\x67\x84\x9c\x8b\x37\x90\x38\xec\x9b\x8d\x01\x38\x42\xd2\x6c\x83\xd4\x0e\xc2\xec\xdd\x76\x33\xe6\xa0\xbe\x2d\x97\x31\x49\x95\xc6\x22\xd7\xe8\x73\x5b\x5d\xcf\x54\xe3\x30\x3a\xa9\x86\xa0\x1f\x50\x8a\x60\x80\xc9\xb2\x11\xd2\xac\xe8\xf6\x21\x21\x3e\x8e\xed\x0d\x3d\x43\xd9\xa5\xc7\x2e\xd8\x78\x7d\x46\x4a\x85\xca\x29\xa9\xc8\xeb\x7b\xa6\x99\x7b\x95\x70\x7d\xcf\xed\x83\x41\x5c\x0e\xc6\x19\xc4\x45\x6b\x9c\x01\xfe\xfd\x09\xce\x20\xde\x91\x6d\x98\x52\x45\x05\x0b\x4b\x50\xb2\x49\x0d\x25\x38\xe3\x1e\xd9\x68\x6f\xd6\xd0\x60\x82\x33\xce\x0b\xa5\xaf\x68\xdc\x5c\x4c\x65\xa8\x68\x5c\x47\x4c\xa1\x07\x4a\x1c\xa4\x5b\x66\x5c\x0e\x3c\x82\x12\xb4\x38\xb4\x37\xd7\xbb\x4c\x81\x74\x75\x3d\x52\xc6\xf6\x4d\xa1\xa6\x00\xb6\xdd\x12\xed\xfd\x78\x48\xef\xc1\x8c\xcb\xa9\xde\x58\x14\x21\x00\x5a\x1c\xbf\xbe\xf2\xe7\xfe\x76\xfa\xca\x1f\xa8\xc7\x7c\xfb\x16\x31\x67\x76\xdf\xf9\x13\x87\xe9\x26\x9b\xea\x49\xad\x5e\x3e\xd8\x49\x09\x2a\x5a\x9c\xdf\x46\x04\xc4\x69\xa7\x74\x15\x2d\xae\xdc\x37\x98\x38\xe6\xf5\x2d\xe5\x91\xc9\x02\x2d\x50\xd9\x64\x6f\x63\x2c\xe3\x2b\x79\x73\xb7\x04\x9b\x2a\xb9\x45\xab\x6c\x56\x25\xb7\x68\xf5\x95\x32\x0b\xeb\x99\x42\x43\xb3\x6a\x4a\x35\xef\x2d\x94\x95\x73\xc6\x29\x93\x20\xbe\xb7\xb7\xb1\xe4\xcf\xa7\x36\x4e\x33\x6a\x4c\x45\xb4\xf3\x1b\x03\x01\x69\x62\x8c\xc2\xec\x35\xa5\x30\x1f\x0b\x21\x5b\x31\x4e\xcf\x37\xee\xc9\x0c\xdc\xec\x05\xdb\x0a\x95\x70\x57\x94\x7a\x99\x15\x48\x4b\x22\x30\x1d\xf3\x6d\x2f\x56\x0c\x40\x43\x0f\xe2\x35\x16\xbc\xa0\xc5\xf5\xfb\xf6\xab\xd6\x5e\x43\x2e\x57\x44\x97\xcc\x71\x67\xaa\x65\xe4\x4c\x84\xac\x87\x78\x98\x3f\xb6\x1e\xda\xeb\xcf\x38\x85\xf7\xb7\xc5\xdf\x16\x48\xef\x3a\xbc\x46\x46\x10\x00\xab\x9f\x1f\x5e\x31\xe6\x53\xed\x32\x98\xe1\xe3\xdb\x8e\xf8\xad\x94\xd1\xa2\xc5\x11\x6b\x40\x41\x2e\xd6\xa6\x20\x04\x2d\x5e\x2c\x41\x06\x4e\xde\x0e\x4c\x41\x04\x5a\x9c\x89\x1f\x3f\x33\xc8\x7d\xcb\x47\x3e\xca\x78\xf9\x88\x98\xd1\x5b\xbe\xd5\x1c\xa0\x24\x95\xa6\xa2\x55\xe4\xc3\x07\x8d\x94\x26\x97\x3b\x90\x4f\x85\x86\x67\x0f\x7e\x74\x78\x8c\x8b\x52\xb1\x34\x5a\x45\xda\x2a\x5c\x46\x8b\x83\xf2\xc3\xc2\xa7\x1a\xee\xa6\xe0\x3e\xa7\xa1\x78\x9c\x29\x1f\x2f\x3c\x6c\xf0\x11\x8c\x96\xf7\x8e\xd3\x01\x33\x2a\xfb\xfc\x83\xf3\x92\x03\xcf\xc7\x66\x63\x9c\x20\x1f\x3f\x17\x80\xf7\x1c\x30\x83\x07\xb1\xd3\x79\x26\xfa\xc1\x16\x54\x1c\x8c\xbb\x43\xf9\x56\x66\x43\x43\x0c\x38\x12\xc6\x88\x4b\xf2\xeb\x3c\x7e\xbd\xe5\xdf\x8f\x12\xc9\x76\x28\x73\x3c\x2b\xff\xb5\x6b\x2a\x5a\xe7\x6b\xbb\xb1\x21\x29\xbf\xbe\x4e\xc8\xf9\xe3\x9b\xed\x3c\x21\xa9\xaa\x41\x6a\xd1\x70\xe2\x38\xf9\xc3\x68\xc8\x26\xa3\x04\xe2\x10\x53\x44\x8b\xfb\x4f\xfa\x64\x93\xbe\x65\xb0\xb2\x1c\xe2\xa6\xf9\xb2\x45\x5b\x7e\x55\x2b\xe9\x91\xf3\x10\xc5\x3f\xf6\x15\x78\x24\x7e\x19\xe7\x77\xa8\x39\xf6\x7c\x75\x93\x33\xd9\x75\x5f\xef\xc1\x9a\x32\xc9\xca\xa7\x9a\xaf\xfb\x93\x7a\x0c\x52\xe3\x00\xf2\xb3\xd4\x87\xc9\x1d\x7c\x62\x34\xa4\x8d\xd2\x3b\xb4\x78\x91\x9c\xcf\x21\x2e\x13\xc1\x02\x5a\x9c\x34\x04\xa6\xb8\x9e\x7a\x2c\x31\x7a\x4a\xad\xa6\xf1\x51\x28\xa1\x43\xab\x38\x1b\x1d\xa8\x62\x34\x84\x98\x80\x01\x2d\x2e\xb0\x9f\xa5\x75\x4b\x19\x2b\xd8\x20\x9b\xa7\xa4\x40\xda\x40\x62\xaa\x7f\x80\xe2\xb1\xd9\x7f\x58\x03\x19\x8c\x45\x72\x83\xd3\x0d\x06\x00\x07\x3f\x7f\xf6\x42\xc7\x51\x43\x20\x0b\x00\x11\xf3\x87\x45\x9f\xa1\xfb\x9a\xa1\x21\x52\x08\x56\x91\x73\xa4\xa2\x55\x74\xde\xa5\xcc\x9f\x5d\x37\x39\x97\xfd\xbc\xfc\x1c\x97\x7e\x2c\x7f\x26\x58\x78\x80\xca\xe1\xe9\xe7\xb3\x7d\xbc\x59\x3f\x73\x43\x6c\x9b\x9f\x9d\x35\xd7\x53\x93\xa1\xcb\x4c\x93\x8f\x7b\xd7\x53\xd3\x56\x1c\x15\xba\xab\xf3\x7b\x3c\x2e\x3f\x8c\x4a\xcf\xc3\x32\x22\xa0\x72\x7c\x5a\xc4\xb6\x00\x31\xbe\x14\xce\xa2\xd5\xbf\x23\x5f\xdd\x9f\xb2\x52\x03\x52\x90\x12\xef\xf0\xf5\xb2\x57\x11\x17\xe9\x72\xac\x8b\x7e\x3c\xa5\xcc\xe7\x84\x14\x6f\x5b\x57\xae\x97\xa5\xb9\x25\xd2\x12\x64\xa0\xd5\xd4\x83\x9f\xe0\x60\x2c\xb6\x02\x2c\x29\xd6\x0b\x0b\xb4\xd2\x21\x24\xc5\x49\x23\x0e\x6e\x81\xe5\xbd\x04\x2f\x68\x78\x31\x96\x82\x5b\x34\xdc\x28\xeb\x85\x07\xb2\x33\x27\xf0\x60\xfa\x87\x7d\x5a\x53\xaf\x25\x68\x4f\x27\xde\x6e\x86\xee\x3b\x4c\x1e\x5e\xb5\xa5\x74\x11\x7d\x1c\x7c\xbb\xdc\x7d\xea\xb5\x00\x6a\x8c\xd4\xe7\x98\x99\x32\x6d\xcc\x4e\xa5\x86\xb3\xf2\x8c\x64\xbd\x00\xce\x77\x7a\xbf\xbc\xf7\x0a\x1f\x1b\xbd\x76\x65\x3e\xb7\xdb\x64\x8e\xd0\x1b\x85\x91\xfa\xe5\x0f\x1e\xc1\xa5\xb0\x18\x0d\xb7\xc6\x7a\xd9\x44\xed\x34\xca\x1b\x8b\xce\x04\x5a\x58\x65\xc6\x50\x23\xd6\x9d\xeb\xc0\xc1\x30\xa0\xbc\x25\x5a\x0a\x35\x6c\x3a\x7f\xf8\x39\x06\xae\xbb\x75\x58\x58\xf5\x7c\x6a\x27\xb7\x7d\x06\xcb\x19\x21\xb8\x90\x5a\x24\x84\x70\x3e\xa5\x9b\x64\x59\x3a\xe4\x5b\xb0\xc2\x7c\xfb\xf9\xe7\x7f\x95\xa3\xde\x3a\x50\x38\x9d\xfe\x4d\xfa\x17\xd2\xfd\xa3\x5a\x01\x12\xf1\x20\xad\x83\xa7\x64\x3e\x0e\xaf\x03\xd9\x95\x7a\x1d\x80\x9d\x75\x38\xb0\x2e\x0a\x9d\xb7\x75\x91\xa1\x20\xd7\x7c\xca\x5e\x46\x5d\x9c\x4f\x0f\x2c\xe5\x5a\x5a\xf9\xe8\xca\x27\x5d\xd0\x6e\xc9\x30\x1d\xc9\xe7\x80\xc1\x40\x64\xe0\x2a\x5b\x8e\xdb\x81\x21\xb0\x8c\xc8\xa8\x19\xf5\x72\x18\x02\xda\x58\x6c\x16\x96\x81\x44\xe7\xf9\xd1\xba\xbd\xe4\x5b\x2f\x7d\x28\x4f\xe6\x60\xd4\xbe\x38\x71\x6e\x9a\xb1\x84\xa5\x38\x31\x53\xd6\x81\x70\xec\x29\x54\x87\x06\x53\x22\xbc\x0d\x67\xec\xe5\x60\x1c\x33\xdd\xe3\xd8\x0c\xbb\x1d\x7e\xc6\x71\x85\x4d\xac\x2a\x07\x7d\xb7\x30\x4c\x7f\xec\xcc\xb4\x98\x5f\xe7\x60\x7e\x2e\x48\xed\x8d\x91\x42\x77\xa7\x43\x69\xf9\x5e\xf9\x52\xee\x53\xe6\xee\xb4\xfc\xf2\x19\x62\x9d\x66\x18\xba\xea\x98\x1a\xa3\x50\x8b\x0d\xce\xc1\x7f\x76\x6c\x44\x9a\x9d\x66\x09\x1f\x8e\xd6\xe9\x85\xb5\x43\x67\x9d\x0e\x74\x88\xc7\x71\x9d\xd8\x2e\x17\xa5\x5e\xca\x19\x4a\x9b\x66\xfe\x8d\x57\x59\xa7\xfd\xd2\xf8\x40\xd7\x69\xd4\x9b\xe3\x78\xde\xa4\x03\xdc\x32\x12\xdb\xa3\x93\xd9\x91\x47\x84\xc3\xda\x72\x1a\x07\xce\x42\x4b\x30\x89\xc3\x61\xb1\x6f\xca\x0b\x99\x2f\xbb\x5c\x51\x29\xb3\x2c\xed\x21\x2d\x37\x2e\x66\xd2\x07\x0d\x1f\x3b\x56\xe1\xa0\x61\x73\x64\x09\xfb\x40\x26\xeb\x9b\x3a\x75\xf5\xff\x82\xd2\x25\xad\x8f\xab\xab\x38\x76\x34\x11\x1a\x96\x03\x65\x54\x47\x20\xbd\x49\x4b\x4f\xfa\x57\xb8\x26\x3d\xd2\xa8\xde\x1d\x5d\x50\x1c\x2d\x1e\x52\x2e\x4d\x47\xd5\xbc\x49\x2b\x9c\x8b\x76\xe4\x01\xe1\x68\xb6\x14\x37\xa3\x0c\x58\x5d\xc1\x30\xee\x3f\x43\x0a\xc6\x50\x52\xed\x47\x3f\x32\x32\x34\xc8\x48\x3d\x7a\x53\x9d\x39\x71\x02\xb3\x3e\x42\x0a\x66\x9a\x0e\xe0\xb6\x80\xf5\x8b\xce\x1a\xd9\x7b\x85\x77\x0d\xb0\xb7\x73\x2a\x60\xf7\x2f\x45\xb8\x38\xaf\x34\xb2\x3d\x90\x7c\x59\xa5\xe7\x99\x2e\xdc\x5b\xb0\xa9\x02\x5a\x94\x99\x61\x49\x63\x70\x10\x5b\x06\x46\x00\x9e\x59\x02\x46\x9c\xad\xa6\x52\x45\x3d\xb5\xfd\xb2\x2e\x2c\x56\x9b\x6a\xcb\x09\x17\x38\x96\x2d\x65\x58\x68\x0d\x35\x7e\x61\x84\xf8\xe8\xb5\x84\x9a\x28\xd1\x93\x4e\xb1\x80\xd1\xbe\x04\xa1\x68\xdc\x9b\xad\x8b\x23\x24\xf2\x45\x08\x8a\x23\xc3\x50\x16\x85\xd2\x7a\xca\x8a\x7e\x0c\x65\x78\x0a\xed\x7b\xad\x4e\xfa\xa6\x3d\x9b\xb9\x21\xc8\x04\xbe\xc8\x75\xe9\xd0\xcf\x71\x63\x09\xf7\x70\xcc\xce\x76\x72\x90\x89\x7a\x64\x06\xd8\x97\xac\x8e\x23\x47\xd4\x03\x53\xe6\x42\x6e\x22\x46\x00\x37\x38\x1e\xf0\x4d\x5a\x29\x21\x47\x04\x51\x68\x58\xe2\xeb\xb2\xd7\xb8\xd5\x14\x8a\x27\xd8\x44\x97\x5f\x35\x65\x67\x5c\x6c\xce\x11\x72\xeb\xdb\xfc\x29\x9f\xc0\xc1\x8e\x73\x06\x82\x9e\xad\x60\x3c\x03\xc7\x93\x55\x9d\x87\xd9\x29\x82\x6e\xd2\xf3\x79\x41\x69\x3d\x9f\x1f\xab\x3f\x4d\xa1\x3d\xb6\x33\xa5\xd6\x3c\x98\xb2\xd5\x2b\x7a\xe6\xdb\xcf\x3f\xff\xfb\x7f\x3d\xb0\xc0\x64\x16\x80\x30\xe0\xcf\x5d\x86\x29\x94\x7c\xeb\x6c\x01\xf8\x4e\x57\x45\x19\x3f\xdf\x5a\xbb\x4c\x9a\x99\x3e\xbb\x3e\x1f\x6b\xc9\x91\x75\xd5\x88\x48\x66\x57\x61\x28\x9a\xb3\xa4\xdf\x94\x57\x0d\x91\xe9\x6c\x01\x23\x3b\xa0\x3a\xb3\x53\xf6\x9c\x50\x0c\xed\xb6\x5d\xff\x94\xe1\xca\x25\xd0\xb2\x77\x84\x69\x68\x31\xfe\xaa\x13\xa7\xf6\xf4\x5d\xa0\x86\xd8\x8d\xd5\x0f\x5e\x62\x63\x0a\xe3\xd0\x62\x0a\x56\xde\xd1\xa5\xb7\xf2\x2c\x01\xe1\x59\x95\x83\xcb\xa4\x4d\x0b\x88\x92\x42\x1b\x91\x93\xc5\x97\xdb\xc9\xa9\x5b\x6f\x4a\x3c\x85\xc7\x76\x19\x1c\x51\x8f\x74\x17\x28\x73\x26\xc1\xb7\x56\x78\x5a\x97\xb1\x12\x31\xf0\x1c\x0a\xa3\x61\x54\x0a\x2a\x71\x94\x81\xa5\x23\xac\x44\x99\x88\x0c\x07\xbf\x88\x78\x15\x36\xa2\xc4\x54\x6d\x8e\xab\x05\x0f\x19\x1a\xd1\xd0\xd6\x2d\xec\x96\x36\x3c\xb5\xa1\xe4\xd2\x18\xf9\x94\xae\xa6\xd6\x9f\x32\xc6\xd0\xa2\x7d\x97\x0d\x45\xea\xc8\x17\x31\x9f\x9a\xb3\x45\x45\x15\x34\x1f\x87\x63\x6b\x11\x09\xa3\x84\x52\x67\x8f\xfc\xa9\xce\x5e\x0c\xd9\x2f\x5a\xd8\x38\x80\x1f\x1a\x62\x0a\xf0\x43\x4d\x87\x74\xf0\x88\x51\xd6\x16\x02\x83\xa1\x98\x9f\xd0\xc1\xcd\x69\x7a\x32\x23\xf2\x4d\xc6\xec\x08\xbc\x21\x94\x76\x23\xea\xd9\x99\x03\x88\xcd\xb3\x9a\x9f\x4f\x35\x0e\x21\xcd\xda\x06\x35\xea\x64\x01\xf8\x44\x16\x80\x06\x7c\xcd\xab\x45\x9a\x31\xeb\xbe\x04\xc3\xd9\xbc\x1a\xe2\x8c\x33\x80\x21\x0c\x51\xc0\x2d\xdc\x94\x8a\xc5\xfc\x57\xfe\x74\xff\x5c\xe6\x48\x18\x0d\xb3\x50\x31\xf7\x8f\x1c\x98\x3b\x07\x47\x36\x06\xe1\x23\xc6\x2b\xdf\x5a\x01\xb1\x42\xdd\xa2\x04\x8f\xfb\xea\x18\xfd\x2d\xa5\xea\x1f\xe2\x81\x08\xf9\xec\x4d\x07\x81\xa8\xe0\x81\x97\x00\x04\x27\xfe\x94\xe5\x98\x10\x91\x8a\xdd\x37\x8c\xb8\xee\x97\x63\xe0\x8f\xd6\x52\x6a\x56\x44\xd1\x39\xce\x7d\xe5\x69\xdd\xea\xbe\xac\x6a\x1c\x33\xbb\xb7\x6e\x86\x2a\x38\x41\xe7\xa9\xc5\xea\xd6\x0e\x35\x9f\xd2\x6a\x0a\x3f\xae\xa8\x43\xc2\x70\x9e\x5e\xa2\x39\xbc\x42\xe9\x15\x2e\x2e\xf8\x25\xcc\x40\xc1\xdf\xbd\x86\x77\x27\x72\x50\x98\x81\xbb\xbb\xf9\xd4\x89\x3e\x52\x28\x86\x1b\xa9\x55\x0c\x07\x8b\x2b\x42\x43\x39\x66\xfe\xf3\x41\x28\x3f\x4e\xaf\xef\x84\xb2\x7d\x81\xb0\x10\xbc\x20\x7e\xc0\x25\x74\xc1\x11\xa6\x19\x7e\xa6\x02\xc2\x74\x39\x7e\x7e\x3d\x90\x01\x0e\xee\x10\xf9\x30\x0c\xa4\x67\xe7\x1a\x7b\x70\x5b\x4d\x7f\x4a\x70\x41\x0f\x5a\x36\xc7\xb0\x49\x01\x4b\x13\x67\x9f\x9b\xa1\xe5\x68\x0e\x11\xd9\x83\x6d\x9d\xae\x2f\xc6\x45\x0f\x96\xcd\x53\x04\xcd\xc8\x1d\x04\x94\xb7\xd9\x91\x9a\x64\x9c\xb4\xfc\xe9\x5d\x86\x45\x31\x1c\x3f\x8f\x53\x92\x63\xeb\x37\x14\xeb\xb0\x5f\x9a\xbb\x8c\xa5\x60\xfa\x07\x81\xc0\x96\x62\x3d\x94\x71\xa5\xcc\xb9\x86\xa8\xc6\x21\xae\x9e\x5a\x6d\xa6\x3c\x85\x76\x26\xd1\xb9\x6d\x39\x43\xe7\x9c\xe8\x63\xa6\x09\x45\xc2\x40\x3c\x80\x73\xe0\xf2\x64\x0d\xdc\xa4\x9c\x9a\xa6\x8f\x7b\x5c\xef\xac\x69\x23\xa5\xa5\xb0\xb8\xf0\x82\xa4\x7b\x0d\xd2\xdd\x1b\x50\xf6\x7d\x3f\x15\x69\x9f\x70\x3e\x77\x1c\x88\x49\x78\xcc\x35\x7d\x85\xda\x38\xe2\x18\x22\x51\x0f\xa4\xb6\x43\xe6\x73\xa7\xb4\x1c\x06\x62\xd4\x94\x49\x4a\xb2\xc1\xe6\xa4\x7f\x74\xd7\xa9\xbc\x60\x53\x01\x26\x0a\x97\xa4\x8b\xf0\x11\xf8\xf8\x97\x01\x13\x93\xa7\x99\x6b\x22\x93\x38\xbc\x4e\x98\x2f\xdf\xbe\xfd\x6b\x1a\xfd\x78\xa0\xa9\xd8\xb0\x63\x28\x1d\x3e\xce\x0c\xdb\x8f\xad\x8e\xf4\x4f\x47\xd2\xb0\x22\x31\x22\xd8\x36\x44\xe2\xe7\xc2\x66\x4d\x5e\xe4\xd1\x83\x45\x6f\xf3\xa7\x31\x3b\xa9\x55\x97\x42\x23\x65\x12\x00\xe8\x9f\x69\xe3\x86\x9d\xea\xf0\x11\x04\x93\x58\x8e\xae\x1f\x95\x2b\x98\xc5\xf5\x4a\xdf\x0c\xf1\x47\xbc\x4f\x27\xef\x42\xba\x07\x82\x91\x99\xdc\x82\xac\xb2\x2d\x1c\x5b\x3f\x52\xc4\xd1\xf4\x67\x3c\x04\x0e\x17\x51\x79\xb6\xb2\x16\xac\x87\x9a\x58\x3e\xd2\xc0\x97\x0b\xd6\x63\x5e\x97\x2d\x62\x38\x6f\xc9\x23\x9b\x6d\xb2\x0c\xbf\xe1\xed\xc0\x32\x76\x63\xd2\x77\x61\x35\xc8\x88\x75\x53\xdb\xb5\xe6\x53\x20\xb5\x50\x1f\x3d\x54\x49\x77\xbc\x89\x59\x82\x85\xbd\xc2\x2e\x16\xac\xa3\x81\xb0\x59\xcb\x96\x74\x4d\x45\x62\xcb\x08\x61\x83\x3c\x26\x36\xc0\x9a\x74\x36\xd5\x5a\x37\xc2\x05\x82\x75\x94\xc1\xea\x2d\x3b\x59\xb9\x9c\x59\xcb\x9a\x32\x43\xf1\x3d\x4e\x0d\xe5\xde\xb2\x85\x1c\x90\x22\xb2\x7d\xd9\xb4\x81\xb9\x8d\x06\x69\xf0\x8b\xd0\x20\xc7\xac\xa1\x2c\x63\xf2\x9f\xf6\x30\xbb\x74\xa1\x61\xaf\xbf\xa3\x5f\x2d\xc7\xb1\x28\x23\xb3\xb5\x1c\x45\x88\x29\x10\x1e\x20\xf6\xdb\xc2\x35\x9b\xa9\x44\x76\xa2\xe4\x05\x32\x39\x27\x1b\xc8\xb1\x2a\x78\xc3\xba\x96\x2d\x6e\xee\x7f\xd6\xda\xcc\x2c\xdd\xc5\x0c\xe2\xa4\x2f\x54\x49\x89\xcf\x79\xd9\x3b\x56\xb3\x28\xb2\x8a\xe2\x15\x57\x00\x8a\x91\xd3\x97\xf0\x27\xe5\xc5\x6e\xdf\x66\x52\x8e\xaf\x1b\x26\xc5\xa2\x33\xdc\xa4\x8d\x7c\x6a\x89\x73\xe5\x5b\x69\xc2\x9a\xc2\xe1\xc2\x0e\x89\x7c\x1c\x90\x3e\x11\x5c\x21\x95\x83\x15\x5d\xb8\xfd\xec\x01\x81\x28\x34\x4a\x6b\x23\x3d\x50\xdc\x0f\x58\x78\x73\x33\x80\xe0\x32\x38\x65\x02\xac\x5b\xdb\x09\x5a\x33\x94\x9b\x2f\x2f\xde\x52\x2c\xc0\x28\xe1\xb5\x0d\xe7\xa5\x1e\x49\x47\xd4\x8b\xd0\x27\xe5\xc5\x0a\x6d\x5f\x09\x8f\x23\xf5\xe8\x78\x32\xf3\xa3\x5e\x70\xa3\x16\xb7\x4f\x82\x30\x85\x43\x5e\x10\x04\x74\x6d\x4b\x4a\xac\xa1\xed\x83\xdf\xcc\x7f\xba\xba\xc5\xa8\xd9\xb6\x02\xd1\x7c\x0a\x5b\xd1\x1a\xc6\xd0\x76\x42\x7a\x02\x72\x2f\xe3\x50\x46\x0d\x65\xb9\xcd\xa7\xbe\x11\xe0\x66\x71\x29\xa4\x45\x23\x48\xf9\x72\x48\x8b\xc6\x99\x7f\xfb\xf1\x03\x11\x5c\xd6\xb6\x31\xce\xfb\xac\xb5\xfd\x82\x15\x2d\xb8\x7d\xd0\x4b\x5f\x75\x7b\xc5\x2b\xa2\x65\x40\xcb\xcc\x6a\xe0\xe6\x1b\xf9\x51\x79\x21\x5e\xf9\xd1\x9b\x82\x5d\x2a\x04\x4b\x21\xfa\xec\x7a\x3b\x9d\x12\xa2\x51\x78\x96\xe3\x60\x3e\x84\x60\x29\x84\xf6\x59\x00\x58\xc2\xbd\x6f\xe4\xe6\x91\x5a\xbb\x56\x20\x7f\xfa\xea\x00\xc6\x7a\x23\x38\x61\xdf\xb7\xcd\xcc\xa7\x07\x56\xe7\x23\xcd\x7c\x85\x4e\x3f\xa1\x7e\x6e\x85\x3f\x65\x75\x12\x86\x75\xbd\x61\x49\x2c\xb9\xb7\xdd\x83\xb0\xaf\x83\x63\x10\xeb\x75\xbd\xa7\xbb\x97\x2f\x1d\xcc\x78\x40\x2d\x95\x1d\x50\x5b\x2e\xfd\x34\xc1\xc4\xe6\x53\x45\x80\x7b\xaa\xb1\x25\x59\x43\xa2\xa0\x68\x72\xb9\xaf\x4c\x97\x1d\x89\x0f\xe5\xce\x31\x03\x92\x94\x84\x71\x5c\x8e\xb0\x41\x98\xcb\xf5\x76\x1c\x30\x78\xd9\x01\x36\x46\x98\xe9\x1d\xbe\xa3\x56\x71\x1a\xd1\x50\xd7\xdb\x48\xf5\x03\x29\x65\x78\x0a\x6f\x00\xd6\xdb\xf8\xe4\xdc\x10\x0a\x8f\xd2\x08\x3a\xb9\x3e\x32\xe3\x88\xff\xb8\x08\x6f\x51\xeb\xdf\xc0\xc2\xf5\x19\xb0\x73\x83\xe4\xf4\x33\x20\x2d\xb6\x50\x2c\x42\xa7\x34\xc2\xca\x2d\xe3\x51\x88\x24\xb9\xc0\xa3\x10\xc9\x6d\x19\x8f\xd2\x9f\x6a\x7f\xa2\x3c\x27\x41\xa7\xb0\xc1\x15\xee\xe2\xee\x02\xd5\xfa\x69\x0d\xcb\xf9\xe1\xe4\x79\xa5\x50\xcb\x80\xf5\xe1\x78\x16\xb1\xbe\x04\x56\xb9\xfb\x1e\x52\x4c\x82\x58\x57\x2e\x98\xff\x63\xec\x4d\x72\x65\xd9\x95\x74\xbd\xfe\x1d\xc5\x9a\x81\xdc\x59\x13\x38\xd8\x1d\xb5\xa5\x39\x90\x11\xe1\xc2\x6b\xbc\xcc\x8b\xab\xcc\xf9\x0b\xb4\xef\xff\x63\x2b\x95\xc2\xdb\xa7\xb1\xb0\x48\x73\x06\x6b\x1a\x8d\x56\x36\xb9\x22\x5c\x6f\xac\x2a\x85\xaa\xdf\xe8\x39\xfb\xf8\xa3\xd7\x22\x27\x7c\xeb\x0d\x53\xca\xb2\xd8\xb7\xc2\xb4\xa9\x1e\xdc\x39\x99\x03\xf8\x66\x23\x24\x17\x8d\xf9\x11\x6a\x20\x10\xcc\x1c\xee\xfa\xa2\x11\x8d\x52\xb4\x99\xaa\x21\x1a\xd7\x74\x2e\x5c\x7b\x79\x54\xf1\x58\x95\x2f\xd4\xf5\x46\xf7\xdd\x27\x08\xd7\x1b\xbe\x73\xe4\x7a\x63\x78\xcc\x7a\xbb\xea\x9c\xa2\xe6\x32\x87\xe7\x27\x38\x03\xf2\xad\xb7\xde\x22\xe4\x3c\x12\x5c\x71\xa8\xd1\x70\xc5\xd1\xe4\x59\x6e\x7d\xc4\xa8\x16\x5e\x8f\x18\x32\x0a\x35\x7e\x72\xbc\xb0\xf4\xa6\xfa\x68\xb3\x69\x6a\xc3\xdb\x86\x2d\x1d\x96\xf5\x63\xa6\xb3\xcc\x9e\x2b\xd2\xee\x72\x2b\xb1\xbb\x34\x27\x8a\x14\x63\x41\xf6\x47\x86\xb9\x2a\xca\x8e\x11\x79\xf8\x91\x68\x5a\x37\xed\x47\xb4\xbd\x78\x6f\xf2\xa7\x71\x8b\x23\x12\xba\x32\xa7\xbb\xd1\x7b\xa2\xff\x27\x31\xf6\x89\xfe\x7f\x1a\x6d\xca\xc2\x27\xe3\x96\xdc\x21\x1a\x6e\x72\x4c\xb5\x2f\xf8\x04\xc2\xb5\x5b\x41\x10\x24\xf4\xde\x04\x41\x90\x77\xa5\x7d\x73\x94\x21\x43\x37\xe2\xde\x21\xa4\xb8\x43\xdc\x9b\x6f\x35\x72\x8b\x4f\x00\x69\xb0\xc3\x54\xbe\xc9\xd9\xd2\x0e\x53\xf9\x33\xb4\xa4\x2c\xef\xd7\xaa\xdc\x66\x64\x45\xd9\x98\x6b\x36\xf5\xbe\x99\xdc\xe2\x5a\x1f\x7a\xa0\xa2\xe0\x73\x48\xfa\x2d\x39\xb1\x44\xe9\xfb\xc6\xea\x79\x24\xb5\xa2\xb3\x5b\x5d\xb8\xc6\x4f\xd5\x21\x48\x0e\x21\xf8\x7d\x4f\x4d\xa7\xfa\x20\x52\xb8\xbb\xf0\xe9\x7d\xf2\x40\xe1\x46\x4b\x0c\xbf\x11\x06\xdb\xc4\x68\x23\xe1\x15\xc3\x74\x23\xe1\x95\x29\xff\xbe\xf5\xa8\xf7\x34\x10\x4e\x4f\x8c\xab\x2d\xa1\xae\x2e\x80\x8d\x25\xbd\x9c\x9f\xed\x10\xf1\x96\xdb\x0b\xc1\xd9\x2e\x9a\x94\xa5\xf5\xd5\x12\xc2\xcc\x23\x18\xd7\xc9\xc6\xba\xb8\x1e\x5c\x1b\x7b\xd8\xec\x93\xa2\x16\xb7\x96\xc5\xd9\x68\xa4\xfe\x59\x88\xb9\x6f\x6d\x29\x68\xfe\x8d\xdc\x56\xe6\xb8\x9b\x98\x0a\xb2\x47\x24\xde\x7f\x93\x29\xe5\x4e\xc1\xd0\x95\x30\x58\xd1\xff\x93\x24\xc5\x9b\xb8\x09\xde\xb6\x18\xbc\x27\x89\x63\x09\xf8\x7f\x0f\x5d\x7b\x1b\x8b\xf7\xa1\x1b\x72\x87\xc5\x7b\x93\xc5\x04\x31\xfe\x9b\x94\xb8\xb7\xe2\x28\xe8\xf2\x22\xe4\xff\xc9\xba\x2c\x17\x1d\x64\xf5\x26\x74\x82\x54\xaa\x77\x48\x84\xb3\x50\xc6\x0e\x89\xf0\x9d\xc5\x6f\xdd\x21\x11\xce\xd5\xa3\x8e\x7d\x20\xd4\xbc\x09\xab\x20\xb2\x75\x27\xc9\xf6\xdd\xbd\x60\xf0\x8a\x7f\x43\x58\xff\x3b\xbb\x0d\xd9\x29\x35\xe5\x98\x2e\x4d\x1e\x3a\x51\xd5\xbf\x8b\x57\x8f\xe7\x2e\x9e\xe2\x52\x7e\xdd\x08\x8e\xa5\xec\xb7\x89\xa9\x20\x87\xb6\x3b\xc4\xc8\xd9\x58\x06\xc1\xb1\x44\x94\x3b\x05\x4b\x48\x7a\x80\x3b\x04\xc7\x39\xbb\xd7\x81\x81\x46\x77\x2d\x9c\x98\xa1\x6e\x43\x6d\x8e\xa4\xf6\x23\x0a\x90\x14\x60\x76\xc8\x98\xf3\xfd\xfd\x46\x4f\x5d\x4f\x44\x86\xd5\xf1\xc9\x92\x29\x0c\xe5\x02\x37\x81\x67\xb7\xe4\xcd\xda\xbb\x11\xc3\x21\xcb\xc3\xe9\x0e\xc3\xfb\xe2\x75\xca\xc6\xfb\xfe\xc8\x29\x1c\xfe\x25\xc6\x84\x53\xb9\xd8\x2a\x60\xef\x9d\xf5\x50\x4a\xfe\x48\xc0\xe1\xac\x9c\x76\x6b\x57\x36\xc6\x31\xdc\xf3\x60\x7e\x68\xf9\xb3\xae\x08\x0f\x24\xac\xc3\xe5\x38\x79\x67\x11\x20\x2e\x1b\xc6\xe2\xe2\x9f\x6d\x05\x7b\x10\xed\xb2\x33\x86\x38\xa2\x7a\x76\x46\xd9\xf2\xae\xce\xc6\xf6\x68\x6e\x65\xc7\x5d\xa8\xbe\x4b\x85\xc5\x8d\x80\xb4\xbe\x1f\xc3\x5b\xfc\xa5\x36\x63\x23\xcb\x10\x7f\x13\xfc\xa1\xde\xdf\x6c\x9c\x3b\xff\x30\x5e\xf7\xd2\xd1\xdc\x11\x19\xa2\x49\xd7\x73\x47\x2c\x88\xac\x57\xe5\xce\xc8\x53\xa5\xbc\xb0\x33\x76\xe5\xc3\x95\x42\x0d\x64\x4d\x5e\x3c\x9d\xee\xef\x2f\x99\xbc\xa9\x8f\x18\x5f\xea\x44\xc8\x89\x80\x88\xc2\x2d\x27\x02\xd2\xc3\xd8\x19\x6f\x11\xc9\x1f\xd9\x07\xd9\x1f\x61\x73\x79\x39\x37\xaa\x20\xd5\x15\xa3\xae\xe4\x5c\x2c\xae\xae\x87\x2c\xc9\x6b\x75\xbd\xea\x20\x15\x21\x3b\x9f\x72\xba\xb7\x15\xed\x41\x8e\xd8\x76\xe1\xdd\xd3\x9d\x8b\x43\x24\xf4\x52\x86\x30\x93\xb3\xb1\x9c\xdd\xf5\xc4\x69\xd7\xad\x53\xd8\x6d\x30\x4b\x76\x41\xd9\x53\xd4\xe6\x2e\xd0\xbb\xbd\xfd\x19\x73\x17\x2e\x54\x21\xee\x02\x1f\x3e\x39\x17\x8b\xab\x6d\x8a\xdb\x82\x2e\xf4\x5b\xa0\x6b\x86\x86\x2c\xfe\xa6\xc8\x86\x22\xdd\x8a\xea\x7a\xb4\xba\x74\x36\x04\xab\x49\x8f\x7d\x87\x65\x97\x25\x03\x61\xd9\xed\xb5\x95\xb0\xec\xad\x0f\x7f\xd3\x6e\xf7\xc7\xf0\x92\xa1\xf5\xaa\x98\x75\xdd\x3c\x00\x36\x72\x56\xa9\x94\x10\xb2\xfd\xf4\x80\x0e\x11\x35\x40\xec\x0f\x42\xb6\x37\x29\x70\x28\x48\xbb\x94\x32\x76\xc8\x55\xb3\x04\x63\x04\x69\xb7\x3a\xe3\x0e\xb1\xea\x2d\x85\x0d\x22\xad\x9f\x71\xd0\x62\x03\x57\xe9\xc0\x37\x3d\x89\x78\x99\x6f\x39\xff\xbf\x85\x0f\xc3\x72\x3c\x7b\xab\x35\x3d\x7a\x78\x45\xef\x10\x79\xde\xf2\x1e\xaf\xc0\xea\xf5\x16\x26\x6f\xba\x13\x45\x91\x29\xb2\xba\x9e\x07\xbb\x49\x54\x22\xf4\x1d\x66\xdc\xad\x0f\x7f\xe4\xca\x9e\xce\x42\x6c\x0a\x3f\x48\x5a\x29\xd5\x19\xe2\x9e\xdb\x4f\x97\xe2\x9e\xd7\x5b\x48\x32\xcc\xaf\x93\x18\x58\xc4\x39\x3f\x15\x69\x6c\x38\x65\x93\x55\x03\xd1\xcc\x0f\xc9\xa3\x9f\x6e\x50\x9f\x88\x32\xbc\xf1\x1b\xdb\x36\xa4\xd8\x72\xc1\x47\x58\xf2\x93\x55\x27\xb8\x70\xa4\xda\xa2\x48\xe4\x52\x18\x50\x24\xf2\x24\x85\x95\xdd\xb6\x42\xb9\xf9\xa7\x71\x1b\x0a\x9f\xf4\xa1\xa1\x36\x65\x83\x76\x11\x9a\x92\x23\x7d\x69\xde\xec\x2e\x5d\x17\x5d\x41\x7d\xa8\x4b\x43\xd9\xc1\x29\x74\xc5\x78\x8a\xd7\x06\x09\xb3\xeb\x26\x29\x2a\xb1\xca\x9b\xc4\xec\x5b\x56\xd7\x77\x73\x36\xce\xaf\xf0\x49\xc7\x89\x9b\xc4\x87\xbb\xcb\x99\x8f\x08\x1f\x0b\x43\x8b\x0b\xc7\xb9\x9c\x2e\x8b\x94\x44\xe7\x52\x21\xc8\xf5\xb6\x24\x04\x79\x93\x66\xc2\xee\x3c\x51\xb5\xed\xc2\x28\xfb\x36\x35\x11\x46\xd9\x4d\xf2\x14\x82\x8e\x27\xf1\x8e\x88\x32\xde\x24\xda\x20\xc8\xf8\x19\x89\xaa\xe1\x74\x4b\xe5\x67\x77\x49\x16\x44\x31\x85\x4d\xf6\x3d\xb3\x2b\xd2\x09\xd6\x0c\x11\x8b\x4c\xe4\x54\x87\x73\x21\x4d\xa2\x1d\x32\xd4\xac\x28\x34\xc4\x0a\x3f\xd5\x3a\x1b\x91\x8d\x75\x99\x84\x65\x75\x93\x30\x63\x4b\x66\xaa\x17\xec\x0e\x99\x69\x13\x7b\x5c\xa1\xc2\xe7\xd0\xc5\x33\x70\xe1\xa0\x57\x29\x11\xc0\xb3\xbc\x81\x6e\x79\xae\x1f\x42\x0d\x03\xbf\xab\x7a\x6e\xef\x41\x5c\x5d\x1d\x2e\x64\x9f\xe2\x84\x12\x1e\xfc\x0c\x45\xd5\x22\xdf\xd4\x53\x73\x0f\xdd\xf0\xc9\x85\xa3\x83\xf7\x9f\xbd\xa6\x28\xe6\x77\xbd\x75\x49\x21\x6c\xec\x92\xbf\x12\xd8\xfb\x9e\x92\x6c\x39\xb2\xb7\x1e\xa6\x3b\xe4\x8b\x36\x38\xde\x18\x41\x8b\x53\x47\x74\xee\xf3\xcb\x5b\x59\xa2\xfa\xe9\xc6\x0d\x91\x62\x13\xbf\x4d\xe1\xb9\xc5\x9d\x54\x78\xee\xe1\x77\xa8\xec\xa5\xfd\xb8\x1c\x5b\xaf\x5f\x06\x1e\x56\xce\x4d\xdc\x53\x62\x69\x67\x19\xd7\x10\x2d\xbb\x89\x4b\x44\xb0\xec\x26\xd6\xc1\x0e\x61\x5f\x13\xfb\x86\xc8\xd9\x4d\x1c\x3e\x45\xce\xae\x77\x77\xd1\xd8\x0a\xb7\x1b\x84\x25\x22\xe2\x49\xee\xe1\xdb\xb7\x5a\x10\xa2\xc8\x9e\xc9\x12\xea\x66\x9e\x5a\x33\xcd\x6d\xc8\xfe\x9a\xdf\x4d\xb8\x83\x17\xf3\x62\x4f\x5e\x8b\xed\x9b\xe5\x2e\xac\x2e\x1b\x2a\x34\xba\xe0\x42\x9c\xd7\x4c\x8a\x23\xce\x9b\x72\xc5\xaf\x58\xda\xc3\x0f\xec\xc9\xb1\xd3\x3e\xc6\xe5\xbb\x38\x1b\x04\xcf\x3e\xbf\x74\x51\x0e\x96\x5e\xa8\x53\xcf\x45\xdd\x12\x18\x40\x0f\x3f\xb8\xa7\x14\xdd\xf4\xf4\x9d\x5e\x7c\x15\x0e\xb5\x11\x53\xd2\xe1\xe8\xdd\xbe\x81\x14\x22\x7b\x8e\xe6\x8a\x5a\x14\x55\xef\x45\x6c\xe9\xca\x9b\xc2\xde\xda\x70\x32\x96\x26\x12\xf0\x20\x80\xf6\xd9\x19\x6e\x34\x96\x4d\x27\x22\xc2\x62\x37\x53\xcb\x48\xea\x4c\xc3\x21\xa9\x33\x81\xb7\xd8\x35\xc2\x03\xf2\x00\x3f\x9a\x3f\xc6\x46\xd1\xd6\x0c\x49\x5d\x33\xc9\x86\x68\xce\xb7\x12\xb2\xb8\x39\x74\x8d\x22\x8b\x33\x31\xb3\xa4\x80\x2a\x22\x0d\x83\x6b\xd3\x41\xe1\xff\xbd\x99\xea\x58\xc2\xd4\xcd\x45\xb9\x2d\x74\x51\x2e\x76\x8d\x86\x4c\xc8\xec\xa9\x10\xa2\x7b\x79\x13\xb9\xd1\x37\x59\x57\x0c\xf5\xe7\xfe\x86\x6c\xc3\x17\xf0\xc2\xe8\xc6\x44\xcb\x12\x06\xd6\x4d\xb3\xb4\x53\x84\xae\x17\x68\x40\x5b\x21\xac\xb3\x53\xf5\xd0\x82\xe7\xf0\x9d\x14\xf1\x13\x85\xac\xe5\x10\xfe\x16\x59\xbb\xb8\xe6\xdd\x7b\xd0\x89\x6e\xa8\x30\xdd\x6e\x72\xac\xb2\x97\x98\x15\x5d\xfd\x41\x25\xa1\x7f\xcb\x86\xde\xb0\xa4\xcd\x7b\x6d\xc5\x5e\x51\xff\xf0\xeb\x63\x36\x48\x08\xd2\xda\xd0\x83\x30\x2c\xb7\xbb\xd4\x29\xf6\xc6\xe2\x41\x4a\x79\x7b\xb3\x4f\x74\x5f\x60\x9a\xed\x4b\x69\xeb\x52\xcf\xce\x06\xb2\xd1\x95\x80\xa8\x4c\xfe\xd7\xf7\x66\xd7\xe8\x0a\x40\x52\xe6\x7b\x59\x76\xdb\x97\x1b\x0c\x16\x66\xfe\xb3\x30\x73\x23\x37\xab\xb7\x28\xbe\x0d\x9f\x43\xf4\xc8\x16\x4f\x4b\xf4\x3a\xb2\x31\xe3\x74\x59\x66\x4b\x3d\x6f\x87\xfc\x2b\x2b\xe4\xd6\x0e\x19\x57\x16\x67\x7d\xe3\xd5\xdd\x28\x1d\xe7\xec\x73\xe8\xe6\x40\xac\x65\xbc\x28\x6f\xec\x92\xdc\x6f\x09\xb2\xa4\xca\xb7\x37\x4a\x8a\xd2\xfa\xdb\x7b\x6b\x9e\xd5\x79\xd1\x6c\x3a\x01\x48\xa4\xbe\x3d\x22\x6e\xcd\x2d\x0e\x02\x02\xaa\x2e\x41\xd7\xc6\xe2\x7a\x88\xd9\xb0\x41\x01\xd5\xdf\xf0\x43\xec\x36\x63\xdd\x85\xa8\xf1\xb8\x3e\xcc\x60\x7a\x41\x79\x4b\x45\x6f\x87\xc5\xf5\x2d\x3b\xa2\xfd\x62\x1b\x7c\x73\x1c\x0d\xa1\xc9\x97\xa8\x39\xad\x6e\x18\x55\x27\xa9\x61\x6c\x8c\xaa\x8d\xc5\x91\x4f\xf9\xb0\x62\x0a\x6d\x8c\xf9\x02\x23\x08\xef\x85\xc8\x29\x7b\x7a\x5e\xdc\x1b\x42\xd3\x2f\x74\x46\xa4\xf6\xb7\x43\x02\x75\xd7\x5b\xcf\xaf\x17\x16\x51\x12\xd6\xef\x17\xe8\xa2\xf9\x63\x4c\x96\x30\x4b\xc8\xa0\x9a\x11\x1d\x9e\xdc\x4d\x81\x61\x42\xdd\xef\x6f\x23\x41\x5e\xe8\x94\xbc\x10\x36\x48\x2b\x70\xbf\xd0\x4a\x1c\xdd\x5f\xe3\x98\x34\x7f\xd4\x6c\xa9\x4d\x9e\xf7\x52\xfc\xdb\x2f\x3c\xbe\x16\x7f\x5c\x87\x94\xd3\x63\xe2\x85\xb2\x9c\x99\x7e\x2f\xbd\xfd\x85\x3a\xe4\x12\xfe\xfe\xfe\x94\xed\xe6\xe5\x5c\x84\xd2\x51\x1f\x36\x73\xab\x36\xb7\xbc\x5c\x6a\xe2\x75\x1d\x75\x97\x85\x74\x17\x45\x2b\x4f\xef\xcd\x9d\x08\xad\x79\xef\x2f\x3c\xbd\xfb\x38\xbc\xc4\xcb\xea\x6e\x86\xb9\x56\x87\xd8\x7c\x5e\x95\xe0\x5e\x0d\xa1\x2b\xd9\x65\x4b\x17\x79\xbf\x85\x83\xbe\xd9\xd8\x26\xdd\x39\xb8\x04\x3a\xd8\x38\x81\x2f\xdf\x8a\x62\x9f\xe8\x8c\xbd\x41\x57\x9a\xaf\xb7\x77\xed\x54\x36\xba\xae\x55\x91\x0f\x78\x09\xf1\x36\x22\x33\xaf\x67\x88\xcc\xb2\xcc\x2c\x36\x12\x33\xcf\xd6\x1b\x86\x55\xf3\x0f\xf5\xb0\xd4\x5e\x7c\x4b\x61\x56\x38\xfc\xad\x8b\x4d\x53\x8b\x49\xb7\xa7\x4b\x26\xdd\x66\xc5\xbe\xd9\x9b\x1e\x26\xa6\x14\xda\x6f\x6f\xf4\x97\xf4\xf4\x7e\xeb\xe9\xa0\xd3\x19\x9e\xc9\xbf\xac\xf3\x0f\xd5\x88\x87\xf0\xd1\x7d\xa8\x83\xf4\xe1\x69\xdb\x5c\x34\xb6\xb8\xa6\x92\x38\xf9\x43\x04\x97\xe2\xe4\x9b\x33\xfc\xd1\x86\x1f\xce\x6a\xcb\xa8\x95\xb3\xe3\x4b\xea\x7f\x16\x6b\x12\x62\xbf\xf8\xd1\x1e\x9e\xc8\xdb\xef\x5a\x23\x88\x7e\x71\x7f\xe8\x1d\x33\xf0\x41\xff\x44\xc4\x34\x86\xcb\x52\xf7\x20\xc0\x7e\x56\x68\x02\x02\xec\x9f\x9e\xfb\x87\x31\xe7\x9a\xba\x0f\x78\x56\x0a\x39\x1b\xa3\x66\x53\xa0\x61\xd4\x9c\xaf\xef\x0f\x83\xcd\xd5\xdc\x22\x33\x27\xb4\x12\x46\xcd\x69\x8a\xe8\x55\x44\x7d\x29\x86\x28\xa2\xfe\x30\x33\xfa\x09\x4d\x00\xc5\x51\xde\x61\xe2\x9c\x7d\xc4\xf1\x7c\x6e\x66\xe3\xa3\x67\x55\x75\x76\x84\x6d\x90\x48\xb8\x47\x5b\xf6\xdb\x0a\x94\x8f\x90\xd9\xc3\xad\xda\xbf\x59\x62\x8a\xd2\xfb\x67\xaa\x83\xaa\x89\x77\x73\x75\x8e\x8b\xa0\xb9\x2c\xf2\x82\x6f\xd9\xc0\xcb\xa2\x9f\x1f\x31\x5d\xbf\x65\x03\xd9\x8b\x97\xf3\xe8\x99\xa5\x25\x0b\xa3\xe6\xe6\xfb\xf9\x11\x06\xd5\xde\x7b\xf4\x1a\xd6\xba\x84\xfb\xf3\x66\xde\xe9\x23\x3f\x04\xae\x07\x61\x50\x71\xd1\x70\x26\xd4\xdd\x66\xf4\x40\x1c\x8b\x47\x6e\xef\xd5\x75\x98\xa5\xb7\x7f\x27\xfc\xee\x1f\xc6\xf6\x12\x5b\x24\xfc\xa4\xdb\xbf\xd6\x7e\xc4\x3a\x75\x5f\x79\xc8\x89\x1b\xf0\x88\x10\x6b\x2e\xab\xa3\xa0\x6a\x43\x12\x60\x26\x49\x98\x49\x37\xa9\x96\x10\xf1\xff\xfc\x52\x1d\x0a\x87\x9c\x16\x63\x3d\xde\x60\xa7\xda\x39\xae\xd8\x52\xa0\x95\x93\x23\xa8\xf9\x54\x0e\xca\x7a\x38\x7b\x5e\xfc\xe9\x72\x51\x5e\xfc\xc3\xf5\xc4\xc4\x06\xd7\xe3\xe4\x5a\x78\xbd\xea\xca\x69\x62\x5d\xcf\x8e\xce\x16\xe5\x78\xb6\x07\x36\x9f\x44\xf9\x6f\x33\x88\xb6\x49\x90\xff\xc6\x69\x9c\xc4\xf8\xcf\xc9\xdf\x62\xaf\xcd\xae\x6f\xbc\x09\xa6\x6a\x09\x0e\xfe\xf5\xcd\x85\x52\x8c\x9b\xe7\xca\x9f\xce\xb5\x68\x2f\x2b\x17\xe1\xce\xbf\xbf\xe3\x10\x37\x0d\x23\x9c\x30\xe6\xea\xdc\x8a\x59\x75\x51\x78\x11\xc3\x1f\x43\x3d\x38\xce\xc8\x24\xf6\x7f\x9b\x97\x73\x11\xbe\x34\x6b\x1a\x83\xcd\xc7\x4b\xfa\xe4\xee\x28\xe9\x5c\xa8\xf6\x64\xf5\x6d\x45\x00\xa3\xe2\x6f\x3d\x4a\x6a\xbe\xf5\xbe\x9c\xfe\xc8\x0d\x5e\x9d\x8d\x48\xd7\x43\xf3\x86\xd1\x1b\x87\x69\x8e\xb0\x85\x96\xf3\xd6\x93\x0b\x5d\x83\xae\x45\x0d\x5e\x02\xfc\x96\x93\x63\xaa\xfc\x0d\xf6\x45\xd3\x3c\x6e\x42\xce\xa8\xaf\x71\x7d\xa3\xf9\x7e\x72\xa1\x10\x33\xfe\x68\xc7\x73\x8a\xb2\xe0\x6e\x83\x3b\xb0\x53\x6b\x48\xc6\x33\x11\x54\x4e\x2e\x85\x19\xed\x54\x0e\x6c\xd2\xfd\x91\x63\x3f\x9d\x0d\x95\x4c\x0d\x12\xb1\x79\xd7\x20\x43\x4e\xde\xe6\x5d\x95\x5b\xa1\x90\xe9\x16\xc3\x06\xb9\xb8\x0d\xe8\xa4\xe1\x6c\x38\xba\x4d\x2e\x1a\x3e\x87\xba\x9a\x88\x0d\x98\x6e\x95\x0c\x86\x21\xf1\x91\x4f\x2e\x7c\x9e\xbb\x6b\x6c\xc0\xdb\xbf\x8b\x83\x7c\x0f\xe5\xe6\xaf\x9f\x5e\xdc\x51\xed\x31\x2d\x32\x16\xd1\xbc\xe2\x4e\x0e\xb4\xdc\x93\xb2\xcc\xa3\xda\x0f\x84\x99\x75\x70\x90\x8f\x77\x21\x80\x5b\xaf\x53\x9d\x23\x4c\xa0\x87\x3b\x17\xe1\xe6\xbd\x8e\x12\x9e\xa3\x43\x70\xb2\xa1\x3b\x9a\xfd\xc3\xe8\xb9\x36\xf2\x8d\x8f\xd9\xdb\x39\x9e\x45\x1e\x48\xbc\x67\xc6\xf7\xe3\x27\x1e\x74\x9a\x80\x40\x97\xe8\x58\xcc\x71\xeb\x6d\xe3\xee\x04\xef\x63\x26\xb5\x28\x9e\xe3\xd4\x90\x83\xe7\x58\xbc\x8e\x6c\xd6\xe4\x6f\xe1\x84\x51\x27\x29\xe4\xf1\x09\xc6\xdb\xc9\xf1\x00\x9f\xfe\xb8\x62\x75\xfc\x31\x7c\xe7\xe9\x58\x63\x54\x3d\x93\x86\x11\xa4\x66\xd1\x21\x0f\x33\xea\x46\x84\x83\x93\x8b\x83\x9c\xba\x72\xf4\xbb\x2a\x97\x7f\xfd\x54\xbc\x8b\x9d\x5c\xec\xd4\xea\x5a\x40\xfa\xdd\x45\x83\xa8\x98\x2e\x8a\x7c\x6c\xba\x6c\x6c\x5c\x21\x12\xe4\xf8\x44\x88\x3f\x39\xed\x95\xa2\x2c\x48\x56\x0b\x90\xc4\x68\xeb\xee\x5e\xcc\x79\x66\x92\x13\x8a\xcf\xdd\x1f\x43\x52\x3a\xb4\x3d\x92\x04\x1a\xee\x91\xb8\xdb\xd5\x3f\xe5\x85\xa4\x5b\x20\x49\x36\xea\x4e\x48\x26\xe5\xaf\x4b\x6b\xab\x3e\x61\xb7\x81\x1c\xec\x64\xb9\x7b\xbe\x5f\xe3\x3c\x09\xf7\x26\x11\xa6\xdf\xb2\x2d\x54\x5b\x5c\x34\x36\xa2\x56\x37\xe4\xf5\x0a\x64\x76\x72\x8c\x54\xbd\xc7\x20\xab\xeb\xf2\xc3\x7e\x7b\x6a\x3f\x27\x09\x46\xa6\x9a\x24\x8c\xc1\xed\x75\x92\x4e\xe8\xf7\x6b\x20\xca\xac\x91\x89\xe9\x2a\x84\x9b\x88\x6c\xad\x0b\x47\x9e\xee\x7d\x53\xe1\xe9\xbe\xa3\x88\x30\x47\x08\xd8\xef\x5b\x1f\xb3\x90\xda\x48\xca\x6a\xb6\x9b\xb2\xd0\xf5\xc3\x3f\xd5\x3e\x9e\xca\x12\xa9\xb4\x2b\xa7\x13\xe8\x8f\xe1\x24\xbe\x31\xd4\x2c\xc2\x6c\x38\xcb\xec\x6a\x5a\xb2\x5e\xc1\xf3\x8f\x54\xf7\x29\x1b\x57\x7b\x56\x2b\x68\x62\x22\x02\x3c\x59\x24\x67\xee\xe0\x0c\xad\xeb\xec\x8f\xf0\x40\x45\x4e\x20\xf2\x1e\xba\x32\x43\xe2\xdd\x70\x17\x7a\x72\x25\x72\x1a\x99\xf6\x82\x67\x01\x2f\x0d\x55\x13\xa8\x87\xae\xf0\x47\x48\xb5\xef\xf2\xfd\x88\x24\x4c\x9b\x0a\xdf\xf8\xd3\x97\x6f\xc6\x2b\x48\x17\xb2\xcf\x2c\x78\xfa\x7e\xc5\x92\x5d\x9d\xf7\x82\xab\xe2\xcd\x3a\xf9\x97\x41\x1d\xea\x2e\x2e\x7a\x91\x4e\x67\x63\x64\xc5\x39\x9e\x14\x3a\x30\x05\xad\x09\x13\x43\x45\x54\xbb\xce\x0f\x82\xeb\xd4\x86\xb3\xbc\xc0\x34\x81\xf2\x86\xdf\x84\xb9\x42\xac\xdc\x66\x51\x4d\x7a\x3d\x6a\x22\xc2\x01\xfe\x68\xd9\x45\xd1\x00\xad\x53\xd9\xce\xc0\xfd\x53\x36\xdd\x74\x33\x81\x83\x4a\x52\x0e\xee\xe0\x70\xbd\x2f\x7e\xea\xaf\x30\x49\x75\x66\x64\x19\xde\x34\xc1\x65\x69\xb0\x2a\xac\xcb\x45\x35\x61\x8a\xd0\x3c\x6b\x10\xdc\x97\x73\x60\x33\x2d\xb2\xbc\xde\xdf\xc2\xcb\x61\x36\xde\xb0\xc6\x38\xb9\x9b\x2e\x65\x65\x99\x16\xe7\x98\x96\xe6\x2c\xd7\xdd\x74\x45\x10\x3c\x3a\x9b\x45\xa2\x14\xed\xe6\x02\xff\x3c\x5d\x6e\x87\xf3\x36\x5d\xd5\x9b\xaf\xac\x55\xc5\x8c\xa0\x69\x9d\x2b\x78\x3d\x89\xb2\x0a\x03\xef\x9c\xd4\xa9\x0a\x5e\x2f\xfe\x65\xc4\xe9\x17\xb1\x1c\xb6\xdf\x0a\xd6\x77\x72\x11\x20\xf4\x5b\x32\x14\xca\x35\x29\xb2\x04\x6f\xda\x3b\x58\x82\x67\xa1\xba\x3a\xd5\x1d\xd5\x13\xd4\x4a\xd3\xf5\x5c\xa1\x4f\x8a\xbf\xc5\x24\xf8\x60\xe2\xcc\x7e\x8a\xce\xaf\xd2\xd1\xd6\xe4\xca\x84\x7c\x7e\xb3\x9b\x51\xaa\xf0\xd2\x4a\x68\x28\x41\x86\x54\xf7\x2f\x78\x04\xb3\xf8\x9b\xce\xde\x54\x36\x90\x6d\x71\xae\xd3\x8a\xc6\x12\xc6\xb9\x53\xa7\x0d\xe7\xf6\xbe\x14\x43\x41\x41\xfe\xfd\x4f\x8e\x03\xa3\xed\x58\xd9\x0a\xc2\xef\xe8\x20\x4c\xdd\x6b\x95\xa7\xfe\x70\x1b\x41\x69\x5c\xba\xea\x43\x09\x21\x5d\x42\xe0\x35\x68\x0b\x13\xe2\x75\x6b\x46\x34\xac\xad\x19\x71\x96\x97\xb5\x76\x54\x13\x77\x4a\x3b\xaa\x81\x1a\x6a\x55\x8e\xfb\x47\x28\x1b\x57\xf7\x63\x68\xcb\x34\x14\xaa\xba\x4e\x44\xd8\x73\xcb\xa1\xea\xc9\x31\x25\xfe\xa5\xfa\xf0\x47\xd5\x94\x53\x36\xd0\xb9\x86\x86\x79\xb7\xa9\xdf\x86\xc0\x3c\x69\x9b\x60\xde\xfd\xed\x2d\xdc\x2a\xbf\x1c\x5a\x6c\xb7\xa6\x73\x85\x52\xc4\x34\x55\x29\x7b\x6e\x6d\xbe\xc6\x9b\xab\x5f\x2e\x1b\x4b\x26\xaa\xbe\x4d\xb5\xa9\x2c\xce\x04\xba\x96\xa5\x71\x4b\xe8\x76\x0c\x67\xf6\x32\x21\x3f\x39\x4d\x90\xfa\x87\xb7\xc9\x74\x27\x65\xe3\x8c\x09\xe3\x85\xfe\x44\x9b\xba\x16\x1a\x7e\xce\x3c\x12\x08\x08\x21\xce\xe6\x2b\x43\x3f\x3c\xc8\xa5\x9b\x70\x42\xb3\xa2\x26\x11\xa4\x18\x78\x8f\xe1\x8a\xe2\xad\x3f\x9b\x46\x02\xfd\xd0\x34\x97\x5c\x27\xc3\x13\x44\x88\x9d\xec\x8f\xd1\x57\x61\xb7\x86\xc2\xe8\xf4\x2a\x6c\x30\xae\x57\x1e\x5a\x63\x7a\xbe\x78\x4e\x75\x6d\x9a\x8e\x53\xeb\xa9\x49\xe8\xba\x6d\xf4\x4a\x09\x45\x8b\x5c\xb4\xc9\xd1\xb3\xb8\x35\x96\x50\xb3\x50\x70\xcf\x93\x8b\xfd\xd5\xfc\x2d\x66\xaf\xb9\x8d\xa0\x9f\x8b\x6b\x09\x5b\x8c\xe1\x16\xc2\xbf\xbf\x90\x50\xc7\xc9\x8c\xae\x0e\xfc\xdc\xfb\xc1\x26\xfd\x0b\xed\x60\x14\x2c\x66\x73\xc9\xb8\x28\x74\x83\x86\xad\x79\xbe\x75\x59\x75\x94\x88\xbb\xd6\x27\xb4\x2d\xe4\xb2\xe9\xe4\xa2\xa3\xdd\x45\x5f\x11\xe3\xc8\x4d\xbc\xe3\x19\xec\xe6\x83\x52\x29\x2e\x19\x5b\x40\x58\xa4\xf3\x62\xef\x6a\x3e\xc8\xd4\xcb\x5d\x0b\xba\xb4\x7b\xd2\x08\xb2\x38\x5c\x32\x68\xa3\xe1\xd9\x46\xc3\xae\x7b\x2d\x10\x01\x27\xcf\xf0\x46\xff\xc4\x53\x8c\x99\x48\xd2\x2b\x51\x36\xe9\xdd\x55\xe1\x4e\xc2\x6f\x4f\x94\x2f\x66\x77\xc5\x6f\xca\x6a\x9c\xa1\x7c\x31\x45\x39\xcb\x5e\xdd\xec\x16\x74\x31\xc6\xf8\x66\x43\xf5\xaa\xb8\x2c\x7d\xd0\x7b\x6f\x40\x7c\xfa\x15\x1d\x8a\x1a\xa3\x69\xd9\x07\xc4\x67\xd7\x68\x06\x66\x97\xd5\x45\xf1\xa7\xcc\xe4\x86\x9e\xc6\x30\xe3\x28\xf4\x34\xda\xd4\x94\x85\x9a\x46\x9b\xdd\xdf\xe2\xc8\x88\xa0\x1d\x42\x1b\xee\x0e\xcf\x5f\x91\x67\xe8\x61\x4c\x73\x15\x86\x0e\xbf\xde\x98\xe1\x9a\xbe\x5f\xba\x31\x22\x88\x7f\x9b\x7a\x59\x0c\x64\xa3\x49\xcf\xc8\xd0\xb4\x28\x97\x66\x56\xb1\xf8\xb5\x7f\xf1\x4c\x5f\x93\xd8\x01\x03\x2b\x59\x0f\x72\x33\x1f\xfe\xe1\x2b\xbe\xa9\x7d\x18\x72\x3d\x3b\x1b\x4b\xa2\x73\x10\xd6\xda\xa3\xa9\x73\xb8\xa1\x1f\xe3\xfe\x1b\xa4\xf8\x1c\xea\x7a\x51\x36\x78\x60\xb7\xab\x8d\xc9\xd3\x41\x9c\xba\x3d\xf4\x64\x9a\x5e\xda\xaa\x6c\xdc\xf1\xa2\x2b\xd1\xf5\x98\xc3\xb5\x2e\x3a\x34\x95\x8d\x23\x35\x9c\x63\xaf\x65\xb7\x12\xa7\xa8\xba\x91\x87\x46\x54\x2d\xe7\x5d\xd7\x66\x98\x80\xcb\xff\xcd\xc9\x81\x0e\x93\x3f\x06\xe7\x4b\x6f\xa2\xa9\x85\xcf\x2e\xcb\xb4\xab\xc9\x60\x1b\x4f\x11\x15\x72\x8b\x7f\xf9\x87\xb1\x45\xf4\x46\xc3\x8c\xbb\x26\x3d\x97\x50\xfc\x18\x23\xf9\x6b\x30\xfe\x45\xcc\xa1\xe9\x31\x45\x77\x4f\x02\xf5\x0d\x6d\x11\xec\xb8\xab\xae\xa4\x09\x15\xab\x2b\x69\xe2\xb2\x70\x24\xd7\xc3\xb9\x15\xdd\x1d\x7a\x1e\xe9\x12\xad\x32\x51\xbd\xeb\x3a\x17\x13\x5b\x57\xb3\x89\xa4\xbc\xd1\x45\x77\x4f\x08\x89\x2e\x92\x31\xac\xb0\x73\xf7\x40\x71\x4a\x31\x34\xb4\x85\x93\x22\x75\x09\xab\xeb\xac\xe5\x0c\xe5\x8d\xec\x33\x1d\x4e\xf0\x47\xd6\x4d\x23\x1f\xf8\x43\x17\xc2\x42\xb5\xae\x17\xff\xf2\xcd\xd7\xa9\xec\x87\xee\xaa\x70\xe8\x5b\x75\x3d\xf5\x64\x3c\xdd\x8b\xb3\x41\x6a\x69\x72\x17\xc7\x5a\xcf\x96\x05\xaa\x17\x05\xbe\x44\x7c\xea\x26\xc4\x76\xda\x6f\xbb\x25\xe2\x33\x3b\x1b\xec\x59\xf7\x16\x5c\x2f\xec\xbe\x42\x74\x35\xbf\x3f\x64\x7e\xb4\xfb\x15\xda\xbf\x0b\xcf\xc9\x40\x5a\xc4\xc0\x42\xc6\xda\x75\x90\x17\xcf\xcb\xa1\x1d\x8e\xf7\x7c\x6f\x45\x34\x30\xa6\x79\x70\x0a\xbb\x3f\xf4\x88\x45\xeb\x22\xfb\x38\x2c\xde\x1a\x5d\x07\x3d\x6c\x99\xdb\x14\x61\xb8\x24\xb4\x17\xc2\x58\x30\x57\x45\xb7\x4a\x23\xa3\x7f\x2b\xe2\xd0\xe9\x04\x2c\x2d\xbe\xf6\x18\xce\xf4\xc7\xd0\xb3\x0a\x67\xfa\xd3\x5c\xb2\x0d\xbf\x3f\x25\x7f\x05\x6d\x6a\xbb\x6e\xd1\x07\x42\x28\x44\xe2\x1f\x43\xb7\xa9\x74\x36\x7c\x47\x87\xce\xc6\x29\x5c\x95\x55\xaf\x9c\x8d\x97\xe0\xd0\xa5\xbd\xe1\x3f\x89\x02\xdc\x5c\x01\x22\x16\xb7\xbc\x90\xa9\xff\x98\x06\x36\xe7\xe2\xdd\xaa\x5b\x71\x43\x08\x88\xa2\xda\xc2\x0b\xd5\x95\x06\x5e\xd0\x5e\xde\x98\x7d\x26\xed\x95\x30\x4c\x1e\x96\x88\x6c\x51\x95\xa2\x06\x37\xf2\xa4\x2e\xda\x8c\xf0\xfb\xc5\xf3\xa9\xc3\x5f\x5c\x11\x5d\x70\x51\xba\xe0\x1e\xf1\x32\x99\xae\x36\x24\x82\x7f\x56\x47\x39\x45\xb9\x3e\xdd\x79\x62\xbc\x75\x37\xc2\xed\xe1\xe9\x42\x49\xb3\xeb\x99\xb0\x43\x62\x59\x45\x55\x84\x59\x73\xf2\x69\x52\x30\x7e\x33\x90\x43\x33\xe4\x6e\xc3\x1f\x67\x9c\x7d\xed\x84\xb3\xc7\xfa\x25\xaa\x2a\xf4\x42\xe4\x38\xe6\xe4\x5e\xf8\xce\x55\x2e\xb4\x6c\xc4\x3e\x7f\x0d\xf5\xa6\x2a\x1b\xba\xed\xdd\xb9\x88\xaf\x5f\x84\xa6\xc2\x38\x39\xdd\xaa\xf5\x35\x34\x77\x4d\x59\xde\xcf\xd9\x65\x9f\xe8\x8f\xca\x06\xab\xa3\x89\xc8\xc5\xc2\x78\x0c\xa1\x46\x39\xbe\x37\xcf\xf6\x05\xff\x32\xe9\xc4\xe2\x07\xbf\xdd\x2e\x1b\x94\x80\x70\x77\xd8\x18\xf7\xeb\xf2\x0f\xb5\x08\x5d\xd9\x77\x0c\xc5\x45\xe3\x6a\xeb\xae\x46\xbb\x4b\x1f\x03\xa1\x54\x4d\x50\x18\x15\x8f\x26\xea\x31\x3c\xe4\xf7\x4b\xaf\x92\x50\xfe\xe8\x97\x5e\x08\x2f\x9c\xd3\x58\x30\x16\xaa\x20\x72\x2d\x74\x72\xc1\xa4\xc9\xae\x86\x1b\x3b\xbb\x9e\xe0\x81\x79\x42\x30\x6a\x1b\x42\x68\x2f\xcc\x3e\xfa\xb7\x07\xc1\x50\xb8\x5d\xed\x2b\x64\x4c\xfe\xe5\x27\xfa\xa3\xb9\x0a\x12\xd5\x0c\xd0\xf0\xb2\x5f\x2e\xd7\xb2\x85\x2a\xd4\x75\xf4\x40\xba\x17\xf3\xdc\x65\xfd\xba\x5c\x96\xab\x4c\x58\x46\x6a\x20\x16\xdc\xbc\xb4\xd5\xfc\x71\x9f\x9c\x5e\x37\xa1\x92\xd1\x2f\x6d\x98\xb7\xc8\x14\x21\xd4\xb7\x6e\xab\x5b\x39\x8c\x1f\x9b\x3f\x2e\xf6\x9a\x2b\xda\x61\xb0\x5e\x95\x83\x41\xa7\x5f\xc2\x38\xb3\x20\xe5\xed\xed\x34\x95\x05\x45\xea\xfc\x87\x1a\x46\xbe\xaa\x3f\x72\x67\x6b\xf7\x87\xa9\x72\xbf\x44\x12\xbf\x41\x4f\xdd\x3f\x14\x7e\xf4\x2f\xa1\xa3\x84\xfe\xc3\x56\x39\x99\xe7\x13\x0a\x1b\xfd\xba\xdd\x3f\x0e\xbc\xb6\x5e\x78\xdd\xef\x97\x76\xf0\x7b\x69\x32\xf5\x4b\x51\x18\xa2\xef\xdf\x78\x36\x4d\xda\x35\x6f\xdd\x5e\x1e\x78\xbc\x48\xcc\x5d\xc4\x5a\xb9\x26\xa1\xe8\x37\x5b\xe1\x76\xa3\xbc\x56\x3c\x18\xec\x81\xdc\x0a\x42\xed\xa1\x8d\xf2\xd6\xbb\x57\x17\xd2\xdb\x5b\x63\x28\x1b\x08\x74\xba\x2c\xb7\xa0\x88\xfa\xb7\xae\x36\xd1\xff\x61\xb0\xdc\xaf\xdb\x15\x71\xa5\x88\x80\x0b\x83\xe5\x54\x75\x92\xde\xf8\x82\xb7\x6c\xe4\xa3\x97\xae\xce\x20\x6e\xfa\xc7\xd0\xa5\xfe\x11\x47\x44\xc8\x45\x66\xc8\x43\x6f\x7c\xdc\xf4\x17\x4d\x8b\xcc\x90\xbb\x08\xa6\x0f\xb6\xb1\xa3\xfe\x0d\xd1\xe6\x47\x64\x8f\xe8\xc6\xcf\x8c\xcd\x2c\xea\x40\x2e\xfc\xcd\xfe\x0e\x9b\xe5\x74\xb9\xd1\x90\x4a\x0f\x6d\x80\x8f\x6e\x36\x91\x48\x1f\xc9\xa1\xfd\x43\x1e\x7f\xc5\x65\xb9\x68\x75\x23\x7d\x44\xd6\xea\x92\xfe\x48\x3f\x5d\x87\x38\x54\x71\x86\x85\x2a\x1f\x71\x4c\x86\x3f\xe2\xc7\x39\x2b\x47\x1f\xa6\xeb\x9d\xb4\xea\xaf\x90\xa3\x22\xb0\x42\xdd\x26\x5f\xda\x75\xa1\x60\xd3\x2f\xbd\xc5\x3e\x3b\x50\xae\x28\xce\x8f\x98\xa8\xc2\xdd\x1f\x31\x37\xd4\x28\xea\x2e\x35\x89\xe4\x7c\x46\x60\x4b\x21\xf6\x87\xd7\xa9\x76\xce\x43\x70\x96\xa1\x13\x1e\x0a\x2e\xdd\xa4\xf5\x83\x5b\x76\xf3\xa1\x51\x77\xa9\xa9\xb8\xac\x3a\x3f\x94\x7d\xd1\x07\x37\xca\xfa\xeb\x16\x0f\x7d\x97\x6e\x2a\x33\xd4\x5d\xf2\xad\x75\x7a\xe0\xaa\x0e\xe1\x9c\x08\xe7\xdf\x2f\x11\x44\x72\xe9\x3f\x2e\x97\x85\x1b\x20\x74\x15\xe1\xfd\xbb\x65\x37\x0f\xb7\xcb\x70\x3d\xb0\xb7\x85\x5b\x15\xde\x3f\x39\x07\x7a\xd2\x6e\x08\xe5\x97\x7e\x65\x7f\x0c\x34\x2c\xfa\x0d\xdd\x97\x69\x99\xd5\xb3\x34\x63\x6a\x73\xd1\x5b\xcd\xbc\x8e\xb4\xa8\x0a\x69\xa6\x0c\xe1\xda\x07\x0c\x6e\x9e\x70\xe8\xa2\xc8\x0d\xcf\x54\xd4\xfe\x69\xd9\xcd\xe3\x15\x56\x33\x5b\xfe\x23\x5d\x58\x48\x27\xe6\x93\xb8\xfd\xa7\xe2\xac\xac\x4e\x71\x57\x36\xd6\x9f\x85\x21\x8c\xff\x99\x96\x5b\xd9\x1e\x1f\xab\x72\x83\x8a\x5c\x96\x1b\xb1\xb9\x19\xee\x6b\x50\xfc\xbc\x58\x53\x3a\x4c\x3c\xfe\x7e\x65\x75\x81\x43\x0b\xa6\x20\x3a\x7f\x52\x0c\xeb\x93\x0d\x3e\xdd\xe5\x1f\x06\x17\xff\x72\xd1\xb8\xd6\xb2\x7a\x87\xf3\xa6\xe1\xa2\x67\x0d\xbb\x34\x3b\xe6\xb5\xe2\xce\xcb\xea\x1c\x76\x73\xf3\xfb\x51\xbf\xd4\x1c\xec\xa0\x26\x86\x1a\xd1\x13\xa3\x3b\xcb\xf1\xfe\x66\xe1\xa2\x57\xd5\xc4\xa5\x9c\x35\xe8\x1d\x77\x95\xa7\x56\x61\x99\x34\x5d\x5c\xc9\x45\x7d\xf7\x92\x69\x46\x40\xc3\xe2\x55\xce\x0b\x8f\x5f\xd2\xd1\x98\xa1\xb1\xd1\x2f\xce\xf3\x94\x5f\x7b\xa9\x17\xcd\x9b\xeb\x9c\xe3\x3c\x43\x45\x43\xee\x70\xa6\xa3\xfe\x0f\x7f\x43\x31\xb9\xfb\x23\x67\x52\x3d\xba\x51\xd7\xae\xfa\x38\x83\xa4\x2a\xce\xe1\x7c\xaf\x29\x07\xf5\x57\xd5\x1f\x1d\x42\xc8\x8b\x79\xb3\x46\xb5\xfe\x11\x97\xcf\x50\xc5\xe8\xa8\x54\x9d\xdc\x8b\x7a\xdc\x9f\xb8\x2b\xb5\x89\x6f\xad\xf5\xad\x36\xb9\xaf\xdd\x21\xde\x1a\xe2\x02\xce\x1b\x72\x90\xc3\x31\x6f\xa1\xe7\xae\x49\x00\xe7\x8a\x1d\x47\x98\xff\x7e\x69\xd3\xde\x18\xa2\x27\x4f\x02\x06\x26\xe8\x92\x4e\x22\xfb\x9f\x9f\xaa\xbf\xd8\x9b\xa0\x1f\x3a\x89\xed\xdf\x2f\x2f\x99\x78\x8d\x5d\x65\xc5\xc5\xae\x6a\x95\x5d\xe3\x09\xdc\x71\xca\xdc\x28\xf7\x73\x55\x9b\x3b\x70\xd8\xf7\x77\x31\x27\xd5\x2d\x06\xfd\x0e\xd9\x44\x3c\xfe\x7e\x71\xdf\xce\xa4\x4d\x02\xa7\x83\x78\xfc\x27\x4b\xad\x21\x6c\xc9\xc2\xe4\xb3\x8a\xe7\xc6\xb3\x72\x5a\xda\xc2\x0d\x46\x58\xe1\xa4\x30\xd5\x93\x40\xc2\x59\x6c\x90\x19\xd2\x95\x7e\x71\x31\xce\x90\xae\xa4\xae\x33\xdf\xdc\xe6\x54\x96\x97\x6e\x77\x36\x06\x0d\xf2\x23\x8e\xf0\xd9\x8b\x49\xd9\x19\xc1\xaf\x8b\x72\xb1\x46\xcd\xdf\xc2\x5a\xf6\x76\x07\x10\xfc\x77\xb7\xf9\x84\xa6\x91\x72\xda\xd2\x55\xb9\x78\x37\x0d\xe7\x82\xb1\xa7\x89\x6d\x60\x24\x9e\x7f\xb3\x41\x72\x36\x7f\xd3\x55\xa1\x16\xd9\x7a\xcd\x39\xde\xfe\x3a\x28\x84\x02\xae\x5a\xbc\xb0\x36\xbd\x8b\x16\x08\x51\x8a\xb1\x5e\x78\xca\xf5\xb3\x6d\xca\x12\x35\x7d\x7f\xc8\xe4\xf8\x87\x71\x8b\x08\xcf\x36\x51\x09\xd5\x1d\xd8\x3c\x1c\xdd\x01\x22\xba\x75\x17\x8e\xed\xd3\xb5\x3e\xb1\x29\xb3\xf8\x7a\x13\xd1\x4a\x72\x51\x23\x36\x35\x2a\xff\xad\x5e\x2e\x28\x8c\xee\x5f\x62\xf4\x9e\xd4\x7b\xde\x17\xdd\xb9\xd8\xc0\xba\x42\x9a\x2e\x23\x6f\x11\x76\xb0\x0e\x63\x13\x81\x29\xe4\xd5\xb9\x8b\x34\xd1\xd8\xa8\x4e\xd1\xef\x8a\x0c\x2c\xa9\xf2\x94\x89\xea\x18\xfe\x25\xf7\xa3\x16\xbe\xb3\x63\xba\x7f\x89\x15\x16\x57\xff\x0c\x61\x4a\xbf\x34\xb0\x10\xa6\xf4\x4b\x93\xd0\xe5\xfa\x8d\x6b\x77\x76\x1c\xb8\xde\xba\x19\x3a\xbb\xe4\xfb\x31\x0e\xb1\x6b\x65\xcf\x7c\x4b\x8e\xb8\xb6\xd4\x1d\x61\xc8\xa4\xbe\x4f\x6e\xef\xe6\x7a\xa2\x3f\xc3\x1f\xb9\x09\x92\x06\x26\x33\x07\x8f\x53\x68\x30\x69\x64\x28\xff\x48\x88\x4b\x50\xe1\x7e\xb9\x2c\x68\x70\xa8\x0f\x38\x2c\x94\x48\x97\x10\xc3\xfd\x1a\xae\x87\xa9\x16\xf2\xc2\x9c\xb5\x9c\xc3\xf9\x47\x1c\x3e\x70\x01\xa5\x6a\xc7\xd4\x6a\x27\x65\xc1\x1d\x50\x97\x44\xbe\xed\x17\x24\x37\x81\x6f\xcf\x47\x67\xd5\x41\xfd\x94\x4d\x0f\x03\x7f\x86\x59\x67\x92\x0e\xe7\x1c\x92\xfa\xb8\x22\x4c\xfb\x24\x60\x9d\x23\xb8\x35\x12\x7d\xce\x21\xb2\x2a\xab\x83\x38\x73\x92\x18\x77\xe2\x00\x56\x9c\x15\x47\xba\x95\x9e\x1c\x91\x6e\x4f\x59\x7f\x3d\x9b\x15\xc3\xa3\x49\xa4\xdb\x34\x74\x5a\xa6\x88\x6a\xed\xce\x09\x5a\x54\x3d\x08\x0d\x6a\x75\x2e\x0e\x0b\x4c\xd4\x39\xd9\x8c\xbc\xdc\x08\x81\x9b\x4c\x26\x4d\xf8\x33\x53\x39\x44\xc3\xba\x65\x27\xcf\xa0\xe1\xa2\xe2\xcf\x08\x7f\xe0\x97\xb5\x26\x61\xb0\x60\xd9\xe7\x26\x02\x6b\xb2\xdf\xa6\x8b\xc6\xfe\x9f\x1a\x15\x97\x2e\x34\x3d\x71\x6c\x15\xad\x79\x4e\x73\xf3\xdd\xd7\x40\x75\x92\x8f\x11\xd5\x56\x4e\x31\xa6\x82\xda\x16\x11\x5f\xf0\xf6\xab\x10\x56\xb0\xf6\xbb\xb4\x4e\xe6\x0c\x06\x5e\x76\xbf\x43\x4a\x7c\x5f\x6e\x81\xdd\xa3\xfb\x04\x83\x4e\xb1\xd5\x67\x18\x70\x76\x89\x28\xe7\xc4\x8c\xba\xf8\x9b\x66\x43\x2d\x86\x96\x91\xe4\x29\xc4\xbe\xcd\x52\x5d\x21\xf4\xad\xa2\xd0\x9f\x5c\xc4\x9c\xa8\xae\x26\xd8\x09\x9e\x7f\x3d\xa3\x74\xc1\x4e\x54\x53\xc4\x12\x26\x10\x6e\x96\x08\x7b\x4e\xdd\x99\x9e\x00\xa1\x39\x6d\x96\x25\x7e\xb1\x50\xe2\x92\x38\x4a\x3b\x62\x89\x5f\x2c\xec\xb0\x50\x6c\x14\x97\x65\x86\x6c\xe1\x16\xcb\x60\x86\x0b\xd7\x3c\x9b\x7f\x19\x0a\xe2\xd3\xd5\x82\x12\x75\x14\x91\x34\x8c\xe1\xdc\xfe\xf5\xd3\x4c\xc1\x2d\xc2\x1d\x68\x4a\x90\x3a\x14\xdd\xf7\xf8\x73\x6d\xba\x5e\x10\x41\x24\xb1\xab\x67\xd8\x85\xde\xc5\x03\x09\x84\x78\x6b\x9b\xc9\x63\xeb\x6c\xfe\x65\x8f\x8f\x4d\xb9\x11\x39\x75\x1c\xa1\x43\x75\x35\x70\x71\xa6\x8b\x86\xf7\x97\xe4\x5a\x5f\xf1\x3a\xd0\xf8\xe1\x1f\x0a\x49\xc8\x99\xab\xf8\xe1\x73\xe1\x53\x38\x69\x1e\xd1\xfb\xbe\x9c\xd3\xac\xaa\x8d\x85\x6f\x5e\xa1\x43\x05\xf7\x15\x3f\x7a\x86\xf0\xa2\xdf\xa2\xcd\x97\x34\x74\x35\x2c\xdd\xc6\x22\x07\xc2\xee\x54\xa1\x9e\x4f\x8e\x57\x87\xd7\x67\x05\x57\x57\xfb\x30\x8c\x49\x15\x7a\x75\x3a\xf0\xaf\xd4\x0e\xe7\x3a\x3b\x58\x01\x11\x27\x61\x80\xfb\xed\x35\x38\x5b\xb6\xe8\xb1\x3f\x97\x36\xe9\xe5\x2c\x3e\x4f\xff\xcc\x49\x99\x0b\x7d\x72\xf7\x15\x53\x44\x69\xc9\x11\x2f\x58\x76\xba\x53\xe1\x82\x6b\xf7\xb7\x12\x5a\x7b\x4d\xb9\x1a\xae\x8d\xa6\x72\x11\x48\x4b\x04\xc7\x96\x4f\xe1\xaa\xdc\x8c\x61\x0c\xe5\xa0\x21\x44\xf2\x85\x09\x6a\xbf\x6f\x37\x88\x93\x1f\x37\x18\xfb\xf3\x76\x13\x9f\xc8\xa9\xf9\xd8\x91\xe2\x50\x12\x39\xf8\x2c\x87\xda\x60\x47\x6a\xad\x36\x91\xd9\x8a\x8b\x0e\x06\x5c\x94\x9d\xbf\x7e\x4a\xd6\xd3\x72\x4f\xcd\xaa\x7a\x1e\x7b\xb0\x25\x7f\x0c\x2c\xf5\xcd\x69\xe2\x5c\x2d\xca\x35\x9e\x01\xef\x49\xb5\x12\x22\x50\xdf\xd7\x1b\x75\x5c\x11\x55\x18\xaf\xa6\xe4\x6f\x6c\x2c\xcf\x79\x5c\x80\x52\x3c\x9b\x5b\xac\x21\x57\x0a\x81\xaa\x9b\x3e\x84\x17\xb9\xea\xf2\xd9\x52\xd5\x13\x71\xb6\xa1\xf9\x74\xd4\xc2\xeb\x6a\xb9\x3c\x92\x78\x15\x48\xd8\x44\x18\x61\xb9\xeb\x9e\x84\x11\x4e\xd6\x93\x27\x8c\x70\xbe\xb5\xb0\x08\x28\xb2\x68\xe0\x97\xe4\x5f\xdd\x59\xe1\x33\x97\x8d\x9d\x9d\x9c\xe3\xed\xaf\x35\x09\xe9\x85\x5c\x64\x4f\x62\x03\xcb\x17\xdb\x24\x34\xb0\x9c\xf2\x4e\x42\x03\x9f\x46\x8a\xb2\x61\x98\x29\x7a\xf4\xa5\xf0\x2d\xce\xc5\x7e\xd1\xbc\x22\xf4\xb8\xb5\xce\x21\xe6\x90\xdf\xc9\x49\xb4\xdf\xee\x1b\x1e\x99\xc7\x90\x82\xd5\x0c\xab\x56\xf9\x01\x9c\x04\xfb\xed\x26\x48\x5e\x53\xb3\xa3\xce\x61\x62\x20\xed\x1d\x62\xff\x7e\x9f\xae\x2f\x11\x78\xc5\xd5\x62\xf0\xa0\x9c\xec\x06\x74\x8f\x84\xf0\x42\x4e\x66\x4e\x2e\x8c\x95\x44\x70\x12\xea\x77\x4a\x83\x66\xbe\xc0\x3c\x5e\x11\x90\x8b\x6e\xce\x97\x08\x24\xed\x49\x09\x1d\xdc\x81\x1d\xc2\xc0\xe9\x6f\x0d\xc3\x05\xcd\xcf\xb9\x10\xe5\x61\x7e\x12\xe8\x57\x8e\x38\x26\x81\x7d\xe5\x7d\x74\xce\x37\x6a\x2e\x52\x83\x9a\x61\x14\x2a\xeb\xdc\x49\xb0\x5e\x39\x06\x3d\xb9\x18\x95\x2a\x7d\xb3\xe6\xc5\xd5\x74\xaa\xf1\x0f\x63\xd1\x8b\x7f\x18\xed\xeb\x2c\xbd\x85\x40\xaa\xeb\x89\xbb\x60\xfa\x87\xa2\x9b\xbb\xb2\x81\x7a\x75\xc5\xbe\x51\x8c\xd0\x61\x7a\x4b\xad\xce\xdf\x2a\xef\x29\x67\x5b\x70\x3e\x54\xeb\x54\xef\xfc\x11\x5e\x82\x28\xbb\x70\x9c\x2a\x93\xb9\x93\x83\xca\xef\xce\x6e\x7e\xea\x6c\xe0\x90\xe2\x5c\x04\xf7\x6e\xf9\xcf\x58\x1b\x49\xc5\xad\x03\x13\x96\xa6\xbd\x68\xff\xbe\x03\xbb\x88\x55\x4a\xb0\xe0\xd3\x01\x17\x65\xd6\x35\x21\x50\x61\xda\x03\x6f\x69\x7f\x0a\xd9\x44\x28\x61\x1b\x9a\x4d\x9c\xb3\x96\xe6\x6f\x60\xc6\xdb\xb5\x06\xda\xf6\x0c\x84\xe8\xde\xa8\xe7\xbd\x84\x0a\xd5\x64\xe8\xf5\x49\xf2\x35\xdf\xd2\x09\xd2\xc6\x7f\xa3\x34\x2c\x14\xf6\x96\x70\xab\xbb\x6c\xac\xbb\xe8\xfb\x90\x67\x58\xdf\x9c\xa8\xc3\x67\x0d\xb4\x24\xf1\xf8\xbc\x45\xb2\xbf\x45\xc1\x77\xff\x12\x3a\x4c\x48\xe3\x83\x5c\x75\xa8\x70\x78\x60\xb5\x59\xc0\xfc\xc8\x70\x79\x2a\x17\x17\x49\xf5\x0f\x63\xf2\x44\x09\x7e\x60\x84\x8f\xef\x0f\x99\x11\xff\xf0\x1d\xaf\x56\xfd\x70\x8a\xce\xd0\x2f\xa7\x0e\x9b\xca\xe2\xd4\x5e\x02\x95\xf9\x11\x23\xd4\x65\x21\xe7\xb4\x9d\x3e\xde\x5d\xfe\x69\x0c\x5b\xb4\x9e\xe4\x15\xb2\x22\x9a\xf2\xbf\x2a\xfd\x34\x05\x2b\x6e\x42\x5d\x1f\xf1\xba\x85\x55\x42\x98\x61\x15\xb9\xf9\x61\x97\xb8\xf7\x6c\x8b\xe6\x1f\x86\x9b\x25\x77\x0f\xe3\x77\xa9\x95\xcd\xb0\x14\xce\x2d\xf9\xa3\x0e\xa3\x3a\xbb\x75\x6c\xf4\x55\xbc\xed\xee\x2c\x5c\x4a\x21\xa4\x8f\xe8\x6c\xcf\xe7\xd6\xd0\xd4\x09\x74\x31\x25\x99\x51\x7c\xe2\x2e\xa3\xb0\x89\x6c\xe3\x16\x31\xf0\xb0\x6a\xc2\x97\x0f\x9a\x16\x43\xa3\x41\xb6\x21\x71\x80\xe2\x13\x77\x99\x08\x39\x3e\xb1\x18\xf7\xc4\x27\xfe\xf2\xc8\x11\x6d\x0c\x29\x74\x4c\x0c\x7b\xa7\x34\xea\x88\x5e\x7c\x7e\xca\x84\xca\xb2\x57\x12\x8a\x89\x65\xef\xf0\x95\xfb\x88\x27\xa5\xfe\xea\xfe\x49\x2e\xab\x0e\x77\x65\x21\x5f\x92\xb3\xdc\x87\xe2\x22\x3c\x13\x96\xc7\x74\x36\xb6\x87\x8e\xd3\xa3\x1b\xc8\xf3\x22\x8a\x45\x6c\x83\x47\x3c\x05\x6d\x08\x24\x23\x43\x72\x66\x07\x37\x1e\x9e\xc5\xe0\x2f\x99\xa3\x1c\x36\xbb\x39\x0d\x7f\x63\xdb\x89\x5d\x22\xe9\x87\x64\xb5\x84\x2f\xfe\xf2\x47\x1f\xf4\x78\xb2\xbf\x41\x9d\x0f\x7f\x8c\xc3\xa7\xfd\xf1\x40\x0c\x6b\xa3\x29\x78\xb1\x99\xf5\x48\x42\xa4\x68\x48\xb8\xe2\x1b\x37\x66\x93\x68\xc5\x19\x0f\x68\x27\x17\x81\x83\xc0\x9c\x0e\x5d\xcc\xb2\x2c\xa4\x20\x63\x7e\x3f\x72\x25\x14\xe5\x5a\x68\x85\xbb\x1a\x30\x27\xef\xaa\x85\x88\xe4\x6f\xc4\xcb\x9c\x8a\x63\x5c\xd3\x70\x9b\xb1\x44\xc3\x4d\x42\x54\x66\x77\x5d\x4b\xe4\x46\x83\x86\x61\x8b\x11\xc8\x38\x8b\x13\x46\x1c\xe3\x1b\x87\xbf\x93\x38\xc6\xb9\x78\x20\x98\x53\x56\x7f\xd3\x28\x9d\x05\x19\x81\x17\x16\x36\xbc\x78\xa7\x9c\x84\x31\xce\x52\x2c\x74\x14\x63\x09\x2f\x88\x62\x7c\xeb\xb5\x44\xd4\xe2\xf3\xd1\xfd\x51\xd7\x07\x59\xf4\xc2\x64\xf2\x43\xd8\xe2\x7e\x0f\x55\xa4\x1b\x6b\x68\x60\xdc\x58\x9e\x5a\x94\x84\x66\x76\x45\x5c\x11\xdf\x9f\xc2\xb9\x77\x0f\x17\x1e\x77\xdd\x4a\xa8\xca\x5e\xea\x91\x5e\x65\x9e\x30\xc9\x82\xba\x46\x1a\x94\x93\xe4\xf7\x0b\x69\x4f\xf2\xbe\x40\x9b\x50\x1c\xff\x15\xb6\xbb\x66\xcd\xad\x90\xf6\x98\x73\x48\x84\xe3\xbb\x88\x9b\x4a\x4c\xe3\x4c\xb4\xa0\x49\x4c\xe3\x2c\x8c\xb1\x42\xf6\xe3\xb7\xe7\xba\x70\xc9\x99\x40\x61\x44\x2d\x4e\x0a\x0f\x3b\x89\x53\x6c\x4a\x7f\xdd\x22\x96\x38\x36\x84\x2d\x4e\xf2\x64\x3b\x09\x5b\xec\xbb\x46\x51\x8b\x65\xf5\xba\x6e\x76\x90\xf6\x93\xdc\x4f\xcb\x7c\x7d\xc9\xdf\xb4\x56\x17\x69\x8f\xb8\x13\x8a\x4b\xdc\xef\x6f\x36\xd4\x31\xa6\xeb\x09\xb6\x53\xf7\x37\x50\xd2\xb7\xe8\xb9\xb6\xa5\x60\x47\x58\xe2\x2c\xa2\x9c\xc8\xc3\x45\xea\x2a\xeb\x46\x47\x67\x3a\xc7\xbe\x2c\xea\x1c\xa4\x4a\xd6\x0c\xc8\xfb\xaa\x66\xfd\x86\x1a\xd1\xfe\xb9\x31\xe7\x4e\x5a\xcb\x70\x27\xfd\xbb\xe7\xbc\xb0\x41\x90\x04\xaf\xcd\x38\xa7\x9f\xc4\xae\xed\xb2\xb0\x24\x74\xed\xe9\x80\x3f\x72\x34\xa1\x49\x09\x65\x9b\xcc\x58\x59\x61\x1a\xd9\x65\x6f\xb9\x64\x1a\x29\xe9\x00\xa1\x6d\xbb\xac\x1d\x1d\xda\x56\x4a\x9a\x2b\x81\xd7\x34\x6a\x62\xdb\x0e\x31\xbf\x57\x92\x88\xe6\x5b\x2f\xb8\xe3\x5b\x13\xe2\x42\xfd\x36\xc3\x50\x92\xb9\xc0\x0a\xf3\xc7\x2e\x93\xbb\x95\x21\xbe\xe1\x33\x2c\x79\x14\x96\x9e\x34\xe1\x6d\xbb\x8c\xd4\x56\xd6\xf6\x2a\x2e\xab\x3e\x38\xcb\xb4\x54\xd7\xcb\xb1\xd7\x79\x0c\x13\xc6\x4c\xec\xed\x49\x50\xda\xf6\xad\x37\xde\xc4\x55\x93\x42\xdc\xd9\x3c\xdc\x5b\xdd\x37\x55\x65\x83\x3c\x91\x6a\xd9\xca\x7a\x1e\x55\x67\x83\xb1\x98\x3d\x34\xb1\x6d\x74\x20\xf3\x92\xfd\x60\x55\x76\xc6\xd8\xfc\x53\xc8\xd8\xea\x4e\xec\xf8\xe8\xdc\xfb\xd7\x4f\x49\x7f\xc3\xd2\x7e\xe5\xb3\xfc\x35\x67\x77\x3e\x6c\x99\x85\xb5\xb1\x7d\x94\xe5\x0a\x81\x70\x4f\x8b\x4d\xd9\x12\xc1\x8b\x5d\x54\x5d\x77\x59\xd8\x1f\xea\x6b\xf0\x16\xa5\x51\xa2\xf8\xb6\x55\xb7\x51\x91\x34\x5f\x5b\xbe\x68\xad\xfd\x31\xcc\x2b\x6f\x7f\x83\x80\x10\xf2\x28\x48\x50\xc4\x24\x5d\xe1\xb2\xb7\xcb\xb4\x8e\x70\xb7\x59\xcc\x66\xc2\xdd\xde\xbe\x37\xb0\x89\x14\x8d\xb5\x8a\x6c\x94\x84\x58\xc2\x42\xb2\x4b\xf0\x41\xb8\xdb\x3b\x7f\xbf\x95\xf8\xa6\x06\x65\xbf\xf4\xad\x67\xc4\xc7\xa1\x1c\x48\x59\x67\x23\x8c\x1c\x7b\xe2\x51\xb8\x4a\x5c\x1a\xb2\x63\x5b\x45\x62\x04\x6d\xe1\x12\x97\x86\x4c\x92\x08\x8d\x9b\x6c\x6d\x45\x68\xdc\xd1\xb5\x0f\x0b\x16\x0c\xd5\xdf\x78\x48\xb8\xb3\xc1\x8a\x4e\xb7\x66\x32\x14\xb7\xbc\x94\x45\xa4\x4c\x53\xef\x50\xc6\x1a\x1e\xc9\xd6\xc0\xd4\x05\x94\xcc\xc5\x36\x57\x74\xdb\x9a\xb5\xd5\xaa\x9e\xcd\x10\x93\x84\xb7\xed\x32\x49\x21\x82\x6d\x17\xc7\x9b\x00\xb6\xa7\xa8\x2b\x62\x39\xa7\x2b\x82\x1d\xf0\xcd\xc6\x72\x6a\xe9\xc3\xde\xb1\x8b\x2c\x22\xd6\x6d\x97\x61\x02\xb1\x6e\x4f\x87\x8a\xb2\x10\xd8\xc2\xfe\x35\xd4\x38\xc4\x44\x5d\x55\x62\x06\xe1\xd0\x3a\xe9\x5f\x53\x2e\xce\x9b\x1b\x99\x78\x2b\x99\xfe\xa8\x59\xf0\x2f\x35\xd9\xea\x03\x26\xae\xf9\x72\x96\x1b\xfa\xfb\xf5\xe1\xab\xaa\x22\x60\xb9\x5e\x71\x0a\x6b\x9a\x61\x7c\xac\xf0\x0d\x9c\xae\x6f\x4e\xcd\x34\x65\x21\x7c\x85\x36\xc3\x0e\x4e\x31\x21\x26\x61\x4e\xcf\x47\xe6\xbe\x09\xd5\x88\x50\x09\x71\x6d\x17\x73\x8e\xb8\xa6\xe7\xa3\xea\x45\x5e\x96\x9d\x3b\xb7\x7b\x16\x1d\xd5\x50\x25\x16\x63\x77\x21\x82\xad\xf2\xd3\x40\xf4\xd2\x94\xc4\xbd\x25\x7c\x69\x92\x4d\x16\xe1\x4b\xb3\x58\xcb\x4b\x5e\x84\xc5\xa0\x25\x22\x69\x97\x2a\x2f\x01\x49\x4f\x87\x5c\xf6\x21\x4b\x45\x3d\x28\xdf\x2c\xba\xa0\x0f\x8d\xcc\xd9\xb3\x7b\xf5\x82\x5a\x98\xaf\x89\xad\xb6\x10\xc1\x4a\x7d\x78\x21\x73\x95\xee\xee\x42\xe4\x5a\xb3\x70\x44\xc7\x8f\x8c\xb6\x5f\x98\x9a\x75\xe9\x77\x2a\x08\xaa\x54\x70\x57\x47\xa3\x4b\x26\xca\x8a\x89\x3a\xf4\xde\x50\x4c\xd4\xac\xb3\xd4\xc1\x0a\x9a\x59\xb9\xfd\xd5\x8b\x82\x10\xa8\x49\x51\x32\x4f\x36\x36\xb9\x10\x63\x87\x0c\x9d\xd7\xdf\x20\xc5\x43\xe6\xda\xa5\xf7\xbb\xba\x5e\xcf\xc3\xfd\x7b\xe2\xa3\x1a\x91\xbc\x5f\x3b\x0a\x19\xab\xf4\xb0\x08\xad\x7a\xda\x54\x45\xba\xfd\x75\x1f\x45\x08\xd4\x2e\xed\x3e\x42\xa0\x9e\x8f\x2e\x1b\x9d\x17\xc6\xef\x08\x22\x65\x2d\x44\x40\xd4\x54\x34\xce\x30\x28\xeb\xd2\xdf\x23\x00\xea\x59\x86\x5b\x59\x24\xd6\xda\xe2\x03\xf2\x51\xec\xb4\x35\x40\x28\x30\x8f\x14\x10\xb5\x98\xba\x1d\x58\x21\x99\x1e\x19\x68\xf0\x89\xd7\x45\x84\xd4\x33\x70\x7f\xfd\xc4\xbd\xec\x7a\x63\x8e\x44\xac\x0c\x24\x95\xb2\xbb\x70\x88\x54\xd3\x18\x11\x22\xd5\xba\x3a\x0a\x91\x6a\x3c\x80\xcf\xe0\x9a\x85\xbd\x47\x30\x59\xa5\xc7\xb6\x86\x78\xf2\xc2\xe5\x92\x2d\x8b\xa1\x46\xfc\xd2\x7b\xf8\x1e\x92\x70\x59\x6c\xaa\x65\xdb\x35\x9d\x42\x64\xcd\x35\xbb\x13\x28\x7e\x67\x0f\x35\x54\x84\xa4\x97\xb7\x06\xa4\x81\x88\xa0\xf0\x28\x9c\x7d\x4d\x0e\x5d\x04\xda\xad\xf2\x28\x2c\xf3\x22\xc2\x92\x9e\xac\xfa\xbf\x35\x38\x7f\x3d\xaf\x07\x71\xe2\x97\xec\xde\xf2\xb7\x6c\xdc\x37\x70\xa6\x08\x36\xda\xa5\x95\x44\xac\xd1\x74\x49\x6f\x7f\x21\x6b\xf6\xe5\x3c\x21\x00\x60\x54\xad\xa9\x87\xec\xf4\xc7\x58\x7e\xd1\x1c\x93\x0b\x44\xdc\xa7\x85\x11\x5a\xcd\xdf\x2c\xcb\x9f\x5c\x98\x1d\x39\xdd\x87\x38\x31\xa2\x1d\xb0\x49\x93\x01\xb1\x22\x8f\x5e\x12\xb5\x11\x7a\xb4\x13\xe6\x68\x2a\xd6\x68\x92\xad\x0c\xc1\x46\xbb\xd4\x5e\x08\x36\x7a\xd7\xac\x0b\x2f\x4c\xd4\xba\x9f\x50\x8a\x35\xea\xbb\x27\x8c\xd2\xee\xae\x17\xd5\xe4\xec\xc3\x39\x21\xd4\xe8\x69\xc4\x1f\x63\x77\x0a\xc3\x4d\x8e\xac\x56\x77\x42\x2e\x34\x95\x04\xcb\x37\x75\x0e\x8a\x51\x34\x6c\x48\xaa\xbb\x0f\xcb\x64\x57\xc0\xd6\x21\xe2\x63\x92\x86\x12\x51\x1c\x4f\xf3\x45\x59\x30\x51\x72\xd9\x98\x3a\x61\xd1\xc5\xf3\x41\x4c\x1e\xc2\x38\x9e\x41\x2a\x1b\x8f\x51\x49\xb3\x08\xe3\x78\xca\xea\xa7\x5b\x53\xe9\xaf\x50\xeb\xd3\x59\xee\x24\xf5\x01\x1e\x9b\xf7\x8c\xe2\x38\x8a\x17\x43\x1c\xc7\x4e\xfc\xaf\x49\xe4\xc6\x94\xcc\xfd\xc0\xff\xac\xe4\x59\x6b\x9b\xc3\x36\x94\x15\xba\x99\xca\xe2\xf3\xa0\x2a\xd7\x68\x34\x29\x3b\xa8\xf7\x56\xf6\x83\xca\xad\x2b\x8e\x45\x12\x1d\x44\x08\xc6\x29\xa3\x09\x42\x30\xf6\xd4\xd3\x9f\x71\x39\x12\xc0\x29\xf3\x93\xb5\xa1\x32\x65\x1b\x42\xb8\xc6\xfb\xfb\xc2\xd9\xf0\xd4\xcc\x02\xc1\xda\x49\x3a\xab\x0b\x63\xa7\xfe\xfd\x25\x53\x96\xdd\xa3\x57\x7c\x54\xd1\xa5\xee\x3a\xcb\xca\x68\xf2\x31\x6f\x9a\xb2\x48\x21\x10\x63\x17\xe7\x96\x40\x8c\xa7\xac\x9a\x59\x5a\x28\xcd\x2f\xea\x11\xd3\xbf\x8c\x4d\xa7\xeb\x4f\x06\x4d\x7e\x0a\x13\xa6\xb1\xe8\x1a\xdd\x10\xac\xba\xc3\x42\x42\xd8\x93\xbf\xc5\x33\x54\xfc\x3e\xe2\x32\x76\x31\x0e\x09\xcb\x78\x2a\x55\xef\x40\x52\xba\xa4\xe4\xe8\x36\x27\x97\x65\x9f\x17\x57\x4b\xef\xd4\x1d\x34\x5a\xfd\x6a\x56\x28\x46\xbf\x9a\x65\xd2\xe4\x87\xf1\xcb\x28\xad\x28\x9b\x58\x25\x17\xce\x34\xeb\xaf\x31\x7f\xba\xa6\xf0\x6e\xfb\x7d\xba\xe1\xdd\xf6\xf2\x7a\x13\x7f\xf1\xf2\xc2\xbc\xb8\xc4\x64\x43\x43\x50\xc5\x7b\xca\x30\x66\xbd\xb4\x75\x74\x95\xbe\x50\x60\x90\x51\xc8\x7a\x41\x8a\xe8\x16\x7b\x4d\xb5\xe3\x9a\x02\x39\x0c\xe7\xd8\x2b\xba\x67\x09\xa5\x38\x65\x72\xa1\x50\x8a\x97\x1f\xef\x2f\xb0\x93\xee\xad\x17\x16\xb4\x59\xc8\xe2\x05\x42\x12\xd6\x7d\x29\xa6\x88\xc8\x0d\xfc\xcf\x4e\x99\x93\x10\x30\xf1\xd4\xab\x1e\xe2\xbd\xce\x57\x55\xc8\x00\x6b\xd6\x4e\x0f\x11\x60\xf7\xc3\xf9\x85\x27\x8e\xef\x3c\xa0\x32\xe5\x77\x3f\x7e\x62\xa5\x74\x4a\xfc\xc4\xbb\xb9\x4d\x04\x2c\xb2\xce\x21\x7e\xe2\x2d\x95\x02\xc5\x4f\x94\x4a\xdc\x0a\x19\x60\x97\xdd\xf0\x42\x06\x28\x5f\x6a\x44\x4f\xcc\x32\xf1\x53\xb4\xc4\xcb\xeb\xf0\x1e\x1a\xa6\x6b\x65\xdb\x57\x57\xf4\x44\x45\xcc\x50\x48\xf6\xba\x5f\x0a\xd8\x15\x75\x21\x48\x49\xf6\xbc\x9e\x21\xbc\xeb\x26\xc4\x91\xd6\x49\x39\x94\x28\x87\xa7\x0d\x67\x85\xaa\x54\x2d\xea\xc6\x7e\xc9\x23\x67\x9b\x97\xae\xee\xb7\x4e\xbb\xee\x51\x02\x1d\x7e\x5f\xbd\xef\xa5\xb1\xa9\xbf\xba\x2a\xaa\xbf\x12\x2a\x42\x1f\xcf\x22\x0d\x49\x58\x96\x04\x66\xd9\xa3\xd9\x4c\xa0\x73\x35\x8a\xaa\x1a\x04\x2c\x52\x30\x22\x62\xe1\xf9\xa5\x7a\xa4\xa3\xa8\xd9\x46\x0a\x76\x79\x17\x7d\x58\x26\x6d\x05\xa4\x60\xdf\x67\xf9\x07\x71\xbd\x74\x8a\x56\xc8\xc1\xce\x4f\xab\xb2\xec\x1b\x5d\xa6\x92\x8b\x49\xfb\x85\x28\x85\xf7\xf7\xd9\xfe\x11\x7d\xd1\xfe\xac\x27\xee\xa8\x85\x92\xa7\x13\xb5\xf0\x96\x30\x8e\xa8\x85\x8a\x97\x36\x15\xb4\xf0\x92\x61\xcc\xfa\xb0\x1f\xb4\x93\xc2\x76\x28\xd7\xee\xa2\x6c\x48\xe7\xc0\xd9\xba\x97\x3f\x7a\x5b\xe8\xea\xc5\x31\xef\xe5\x3d\xf8\xd1\x86\xf0\x2c\xc1\x8b\x96\x4d\xc8\xfa\x88\x9c\xcc\xfe\x1a\x1b\xcd\x3d\x5a\x9a\x15\x35\x1b\x08\xbe\x17\x17\x0d\x5d\x27\x5d\x82\x92\xa9\xc9\xd8\x65\x85\x4c\x2d\x7d\x87\x4d\x50\x72\xbd\xb0\xf0\xb7\x7b\x79\x0f\x86\xc3\x5d\x85\x94\x3b\x39\xf0\x5a\x72\xd9\xd8\x39\x1e\x8a\x0e\x7b\x77\xd9\x41\x59\x57\x74\x48\x20\x13\x64\x61\x49\xa4\x78\x73\x27\xc7\x41\x74\x6f\x89\x75\x29\xa5\xf2\x85\x64\xee\xf2\x31\x08\x9f\xbb\xdd\xe4\xad\x6c\x90\xa4\x6d\xb3\x90\xcc\xe5\xe4\x9c\xa6\x2f\x29\xcb\x89\x51\x1f\x10\xcd\xf9\xc0\x84\x64\xae\xe7\x6f\x23\x5a\x16\x57\x14\xa8\x41\xa4\xa6\x44\x6f\x66\x9f\x84\x74\xad\xfb\x34\x3d\xc1\x44\x90\xa4\x70\x3d\x53\x3d\xc8\xca\x32\x27\xee\x6d\x20\x07\x73\x19\x1f\x22\x37\x5f\xee\x6d\xf0\x2a\x8a\xe9\x98\x90\x9e\x75\x9f\xbc\xb0\x2b\xea\x59\xb4\x5e\xb8\xd8\xed\xc6\xf4\x18\x19\x65\xad\xd1\x83\x42\x9a\xd9\x58\x8f\x77\x94\xda\xc4\x03\x42\xf1\x2f\x09\x88\xec\xde\x22\x09\x31\x43\x04\x3f\xba\xf3\xfa\x66\x1f\xb2\xaa\x29\x08\xcc\xef\x40\x83\x30\xf8\x4e\x3c\x77\x84\x47\x8d\x6d\xaa\x05\x66\x18\x2f\x49\xbf\x63\x3d\x5b\xfd\xd3\xc8\x36\x77\xf2\xed\xaf\x6c\xf9\xee\x2c\x0f\x0d\x6d\x5d\x59\x2b\x99\x85\xfa\x68\xdf\xb0\x19\x76\x38\xd6\x1d\x72\xe8\xb2\x2f\x6e\x14\xe9\xf9\xec\x8b\x4b\x84\x4e\xec\x8b\x5d\x04\xe5\xb2\x43\x12\xd7\x33\x07\x6b\x87\xad\x52\x57\xff\xf6\xc5\xae\x29\xae\x45\x13\xe6\x1f\xbe\xa2\xe8\x50\x2e\x7c\xdd\x75\x17\x05\x75\xc2\x1e\xd9\x21\x79\x2b\xba\xe0\xf6\x85\x14\x45\x1c\xa3\x1d\xa2\xb7\x9e\x8b\xc6\x01\xb2\x61\xcc\x1b\x03\x28\x2d\xd1\x0e\x03\xa8\xae\xc5\xdd\x97\xc8\x0e\x77\x27\x5e\x36\x72\x47\xb6\x11\xae\x5d\xb2\x28\xdb\x97\x36\x9f\x67\x40\x4f\xe2\xae\x61\xb2\xf9\x8a\x46\xb2\xc0\x02\x45\xcd\x60\x16\x23\x06\xe7\x46\xd6\x96\x8b\xfa\x17\x64\x47\x2e\xae\x07\xb2\xa3\xfb\x23\x8b\xed\xa9\xc5\xa0\x66\xfe\xd9\x9d\xf8\x29\x0b\x75\xeb\xd1\x60\x49\xfb\x9d\xa3\xa0\x60\xeb\xed\x8f\x9f\xe8\x83\xfb\x17\x86\x1d\x97\xba\xc0\xb6\x2d\x9a\x22\xd4\x9b\x2e\x77\x9e\x7d\x5b\x55\xa9\x68\x9b\xa4\x7a\xf4\x08\xf7\xda\xe3\x7c\xe6\xf2\x1c\x21\xb5\x1b\xea\x41\x28\x9a\x08\x8d\x6f\x2c\xb6\x92\xfb\x2a\xf2\xb6\xbb\x0b\xd1\x59\x5e\xe8\xc4\x9e\x3d\x8d\x38\x0b\x5b\x00\xf2\x7b\x23\xd2\xbb\x84\xd6\x15\x9a\x76\xca\x04\x89\xd0\xb4\x3d\x43\xdd\x10\x9a\xb6\xe7\xea\x5f\x86\x41\x59\x72\xb5\xac\x36\xcf\x81\x1d\x16\x5b\x59\xbe\x4c\x14\x42\xb6\x7a\xfa\x10\xe9\xcd\xab\xaa\x4d\x0c\x63\x65\xf5\x49\x0c\xd9\xa2\x77\x1a\x21\x64\x4f\x59\x7f\x8c\x59\xa8\xae\x08\x62\x0c\xfc\xbb\x6f\x91\xb6\xee\xa0\xf6\x23\xef\xf0\x7d\x6b\x3f\x0e\x57\x0c\xee\xa9\x1a\x69\x30\xf5\xb3\xbb\xb4\x78\x02\x24\x55\xbc\xd4\x7f\x7f\x15\x3e\xf4\x57\xa6\x45\x3d\x14\x4d\x95\xd4\x2a\x5e\x9f\xbc\x7b\x6f\xdd\x7e\x4d\x35\xc1\x9d\x97\xa8\x7f\x87\x83\xdb\x9e\x3d\x1c\xe1\xb1\xe2\x6c\xe0\x10\x8f\x46\x81\xe7\x9b\x3f\x42\xc0\xf0\x70\xda\x21\x8b\xca\xba\x23\x08\x19\x79\xca\x0e\x65\xe9\xef\x54\x2e\x42\xa1\x5e\xfe\x61\x1c\x70\xa8\x24\x02\x48\xf6\x0c\xe5\x46\x88\xc8\x2e\x6b\x7c\x62\x42\x9e\x4a\x55\x4d\xe8\xbc\xcb\x56\x97\x08\x91\x99\xb8\x71\x27\x17\x4a\xee\xc5\xd5\x70\xc7\x0f\xb5\x21\x7c\xac\x6d\x5e\xc4\x41\xd4\x19\x40\x84\x94\x9b\x3f\xc6\xfc\x68\xb6\x42\x84\x94\x25\x47\x20\xe6\x63\xcf\x90\x7b\xc4\x7c\xec\xf2\x73\xa3\x20\x8f\x53\x96\x47\x8a\xeb\x98\xfd\x43\x64\x46\x32\x18\x22\x58\x63\xcf\x42\xaa\x05\x6c\xd8\x55\xab\xbc\x0d\x39\x07\xc9\x31\xd4\x9d\x78\x3a\xc9\xad\xdd\x2e\xdc\xa7\x6e\x71\xd1\x71\x0d\x0a\x0e\x3d\x4f\xae\x5d\x82\x95\x23\x67\xdd\x5b\x82\x9f\xef\xef\x5e\xd1\x53\xd7\x09\xc2\x1f\x2a\x2a\x32\x8b\xfb\x7c\x17\x2d\x48\x57\x23\x7a\x0f\x4f\xd5\xb4\xb1\xcc\xf2\x4f\xe9\xfa\x54\xc5\x1b\x82\x32\xbb\x6c\xe0\x8f\xee\xb2\x8c\x8b\x51\x86\x88\xa8\x67\x5d\x2b\xd5\xab\x35\x95\x05\x8d\x43\x1d\xed\xca\x8d\xa8\x89\xad\x22\xd7\xa7\xb3\x31\x25\xea\x6d\x15\x99\x55\xfd\xcb\x58\xcc\xfe\x67\x99\xe7\xae\x58\xfa\xcb\xf2\x69\x23\x22\x92\xf3\xa3\x5d\xa1\xb8\x75\x2a\x2a\x9c\x7f\xc9\x8f\x76\x48\x81\x7a\xd6\xc6\x43\xea\x23\xf7\x31\xbb\x0a\x3b\x08\x9d\x85\x94\x27\xc9\xf0\x71\x87\x9b\xcb\xdc\xbf\xdf\x98\x77\xe1\x95\x2a\x5c\x51\xfd\x35\xe6\xe0\xfb\x51\x73\xa0\x36\x51\xab\x36\x7e\xad\xc4\xa6\xf6\xb1\x8d\x48\x9c\x0a\x4a\x3b\x89\xc4\x99\x9b\x87\x19\x3c\x14\xc9\x32\x89\xbc\xa9\x58\xcb\x27\x17\x3b\x58\xdb\xb2\x8a\x54\xf2\x30\xb9\x46\xb4\xf0\x78\xab\xbc\x44\x2f\xee\x8a\xab\x41\xdf\x1c\x15\xed\x0f\x63\xdb\xa6\x9b\x03\x76\xa0\xc2\x6d\x4e\x19\x45\x6d\xb9\xab\x14\x4b\x7e\x63\x51\x99\xbf\x1f\x99\x6a\x7f\xe3\xf1\xa5\x03\xa8\xe8\x9b\xc6\xbd\x4d\x37\xc9\xf4\x4f\x83\x09\xa9\x9b\x24\xfc\x4c\xa6\x2c\x76\xee\x6e\xe2\xa0\xe9\x12\x6a\xa8\x25\x5e\x70\x3e\x76\xe3\xb2\xd0\x86\x93\x71\xe4\xa5\x39\x6b\x2c\xcc\xd4\x2f\x83\xbb\x9a\xa7\x46\x2a\x07\xd3\x97\xb3\x81\x14\x5d\x2b\x46\x8d\x92\x58\xee\x26\x57\xe7\x97\xb3\xb1\x30\xc2\x8a\x16\xb0\xe9\x6e\x68\xac\x8c\x56\x1f\x89\xda\xf5\x2d\xca\x55\xe0\xde\x82\xed\xa7\x3f\x32\x30\xf7\x36\x16\x51\x9e\x4f\x08\xcb\xd9\xb3\xe7\x6b\xab\x7b\x6e\x92\x4b\xd0\x23\x43\xe9\x54\xc6\x60\x44\xe9\x3c\x85\x8b\xb2\x71\x5c\xb4\x84\xe1\x4b\xb2\xfb\x66\xe8\xe2\x7b\x55\x7f\x64\xfa\x9a\x72\x2d\x8a\xba\x56\x1d\xe6\xa1\xac\x3a\x5f\x95\xd5\xe4\xba\xa2\x27\x7e\xca\xb0\x43\x1c\xd7\x8b\x26\xb3\x8b\x05\xaf\xab\x2a\xdc\x42\x76\x79\x2b\x24\xec\x66\x2f\x5a\x23\xcc\x18\xe7\xe5\x0e\x4d\x56\x85\x47\x27\x91\x36\xef\xea\x9b\x4c\x96\x8a\x97\x07\x2a\x9e\x89\x66\x90\xe8\x9a\x97\x9e\x30\x3b\xcc\x11\x7b\x71\x77\x97\xe4\xca\x2e\x0b\xe7\x4d\xe4\x72\xd7\x73\x47\x77\x64\x0f\xee\x7a\xb9\x5c\x56\x7d\xf2\x47\x06\xae\xb1\x11\x44\x44\xfc\xa0\xdd\xd1\x8a\xef\xfe\x98\x69\x45\xd3\x82\x46\xa2\x6f\x37\x44\x79\xe5\xd2\xc8\xe3\x3e\x1d\x5e\xe0\xb8\x05\xa4\xcf\x4e\x98\xce\x5e\x3c\x29\x5b\xfd\x61\x9c\xc8\xee\xa6\x8c\xd8\x36\xce\x20\x2d\x64\x26\x4c\xe7\xf9\x7a\x29\xfb\x26\x9b\x94\x55\x55\x4c\xc3\xc0\x26\xdf\x97\xf1\x40\x28\x7e\xfd\x0d\x17\x87\x7b\xc0\xe7\x86\x3f\xb1\x07\x14\x9d\x8c\xc1\xb6\x0c\x3a\x4d\x9e\x84\xd0\xad\x17\xf5\x3f\x0c\xeb\x7a\x51\x17\xc2\x78\xee\x96\xac\x9d\xc0\x88\x5d\x71\x04\x88\x8b\x78\xa6\xd3\x1f\x37\x8d\xf8\x97\x87\xe8\x91\x53\x9f\x3d\x35\x65\x2e\xaa\xe0\x15\x91\xc3\xed\xde\x94\x19\x19\x21\x14\xbb\x74\x31\x09\x9a\x78\x3e\x3a\xdb\x99\x83\xa9\x6c\xac\x19\x1c\x08\x82\x1f\xf6\x22\x2c\x16\xbe\xf4\x7a\xd1\x2d\x15\xae\xf4\x8a\x29\x44\xac\xda\x8a\x30\xe7\xd2\xc4\x7e\xb3\xd8\x62\xb9\x9a\xc1\x47\x67\x35\x4a\x37\x19\xe3\xd2\xc1\x5f\x62\x21\x89\x00\x08\xdb\xb5\x22\x79\xc7\x96\x79\x9a\x89\xb0\x30\x4f\xeb\x25\x39\x77\x68\xbb\xac\x6b\x69\xa1\xc4\x62\x0a\x2d\xec\xd1\x7a\x49\xce\x05\xd6\xd2\xc9\x59\xe8\xc3\x99\xee\x41\x10\x55\xb4\xdb\x96\x8e\x8a\xbb\x87\x4d\x91\x2f\xe7\x25\xc2\x47\x04\x65\x58\xab\x9d\xc2\xea\x51\x70\x94\xe4\x3f\x83\xd0\x87\x5d\x7e\x61\xf6\xe2\xa8\x24\xe7\xe2\xf0\x16\xe7\x22\x4a\xc8\xe5\x36\x76\x70\x6b\xd5\x9f\xb3\x27\x4a\xff\x36\xc8\xe6\xbf\x9d\x0d\xad\xab\xee\xe6\x23\xd4\xbe\xae\x50\x44\x52\x59\x42\x8a\xbd\xf1\x8f\xf6\xcd\x69\xf9\x9a\xb2\x5a\xb0\xae\xec\x26\x3b\x94\x7d\x85\x71\xc5\xad\x5c\x84\x9f\xd3\xad\x18\x12\x29\x45\x6b\x9f\xc4\x36\x4c\x7e\x5d\x45\x6c\xc3\x5e\xb2\x73\xdc\x9f\x1a\x57\xc8\x98\x6a\x2b\xfe\x38\x43\x43\xcb\x39\x38\x4b\xea\xeb\xa4\x79\x75\x95\xdd\x23\xb6\xc4\xe6\x1c\x66\x37\xff\x30\x3b\xea\x5b\x3c\xac\x8a\x18\x08\x08\xa3\x2e\x39\x1e\xd9\x9b\xbd\xa4\x79\xdd\x7a\xcb\x8b\x4c\x0e\x13\xb4\x5e\xbe\x45\x21\x46\x9a\x2b\x0a\xec\xe9\x09\xf0\x8e\x70\x36\xe2\xdf\x98\xac\x09\x33\xb3\xf3\x55\x43\x89\x0d\x52\xbe\x39\x66\x24\x3b\xcb\x22\x08\xa1\x63\x77\x56\x74\xe5\xec\xad\xa1\x51\xf6\x25\x8c\x29\x94\x23\xdb\x32\xd9\x02\x6e\x0b\x7f\x8a\xbf\x7e\xc2\x8b\x71\x52\x0e\xc6\x92\x66\x1e\xd9\x4f\xf5\x73\x21\x0c\xc1\x4e\x27\xfc\x15\x2a\x5b\x4f\x8b\x30\x0c\xbb\xe5\x32\x87\xd8\x87\xa7\x26\xb5\x0a\x82\xd0\xf6\x7b\x09\x41\x64\x7f\x64\x82\x45\x91\xbf\xd0\x89\xf5\xeb\x06\xbb\xb1\x7c\x7d\x2b\x86\x36\x2c\xce\x3e\x7c\xfd\x1b\x48\x1c\xf7\x78\xd2\xcd\xd9\x2f\xcc\x82\x44\x45\x86\x7b\xbc\x53\xed\x50\x96\xc7\xbf\x5e\x10\x21\x36\xea\x45\x7b\x37\xdc\xd3\x9d\x0e\xea\xa7\x9b\xa1\x8a\x5c\x7e\xe9\x7d\xac\x83\xf7\x92\x60\x41\x0f\x15\xc5\x17\x94\x0d\x27\xf1\x05\x73\xf9\x96\x0d\x17\xe4\xde\x86\x2f\x1f\x68\xf5\x29\xde\x3f\xa5\xba\x22\x06\xae\xbd\xf5\x16\x3b\x45\xf7\x43\x08\x8b\x4e\x76\x28\xdb\xa8\x69\x2a\x0b\xd6\xd7\x32\x87\x91\x58\x2f\xd5\x3f\xdd\xbf\x7e\xaa\x54\xbc\x14\x29\x50\x6e\xd2\x88\x14\x68\x37\x31\xfb\xcd\x8d\x20\x7a\xea\xcd\xfa\xdf\x7a\x65\xbd\x39\xe0\xa2\x91\x14\x35\x50\xf6\xa0\xfb\xad\x0d\xa0\xdd\xf1\xf6\x06\x70\xe1\x41\x61\x0d\x6d\x72\x2f\x6a\xf3\xbc\xe1\x9f\xc8\xe8\x72\xbf\x45\x52\x69\x3f\x84\x79\x57\x31\x86\x0e\xb1\x53\x97\xed\xf5\x7e\xeb\x1a\x18\xce\x4e\x2a\x52\x27\xb8\x07\x9a\xeb\x89\x15\x6f\xfe\xa6\x36\xfd\x51\x6d\x6a\xe4\x8b\x53\xa3\xad\xf4\xc6\x55\xbb\x4c\x24\xf7\x5b\xc4\xb6\xde\x65\x21\xb0\xea\x45\xf8\xe2\xad\x4b\xa2\x38\xcb\xb2\xe9\x96\x08\x13\xaf\x5e\x74\xfc\xde\x21\x67\x2e\xcd\xd5\x72\x2c\xaa\x3f\xbe\xc9\xd2\x4a\x48\x83\xb2\x84\x41\x3b\xc4\x3f\xe7\x23\xd5\x7e\x74\xac\x85\x43\x3f\xa8\xb2\xfb\x71\xfa\xe1\xa8\xea\x54\x7f\xb4\x52\xda\xfa\x1f\xe9\x2f\x66\xd7\x14\xb3\xd4\x9d\x7b\xff\xfa\xa9\x52\xbd\x50\x60\xc6\xeb\xfb\x4b\x10\xae\x0e\x75\xb8\x87\x4b\xd9\xfc\x33\x19\x58\xf9\xd1\x1b\x06\x56\xe7\xab\x6a\x12\xe5\xeb\xc2\x41\x67\xda\x36\x93\xa0\x86\x77\xf5\x15\xf4\x81\x55\xee\x2b\x1b\x89\x4b\x95\x8e\xc7\xb6\xc4\x45\x93\xf8\x60\xc0\xe6\x97\x19\xc1\x0a\xcb\xfd\xfd\x1a\x8c\x64\xac\xdd\xd6\xfc\xb0\x38\xd8\x9d\xae\xc5\x7e\xaf\x58\x81\x3e\x0b\xce\x57\x2d\xb1\x0f\x4f\xf6\x21\x3b\x22\x1b\x8c\x9f\x3b\xe3\x45\xf3\x59\x25\xf6\x70\xe6\x0d\xf8\xa0\xc9\x7b\xba\x51\xc8\xc2\xab\x83\xa1\x73\xb2\xa8\x6b\xc6\xeb\xe3\x59\x11\x2b\xe4\xfc\x96\xc2\xb0\x04\x32\x12\xa6\x67\xc5\x9b\xfb\x56\x30\xd6\x67\x11\xcb\xa1\xf0\x1a\x7e\xd0\xfc\xec\x43\x5d\x8e\x87\xe8\x5d\x78\x6f\x3c\x0b\xbf\x3c\x85\x07\xd1\x83\x0a\x64\xc7\xdb\xd6\x83\xea\xe2\xad\xd8\x09\x0f\x9a\x83\xb7\xfc\x54\x3f\xab\x13\xb9\x20\xf6\xe2\x23\xfd\xba\x8c\xec\xf7\x41\x0d\x6e\x40\xde\x3f\xa8\xc1\x0d\xc8\xc8\x07\x35\xb8\x8e\x07\xe4\x47\x5a\x70\x05\x39\xff\x83\x16\xdc\x28\xe3\x8f\x1e\x56\x1e\x54\xe4\x46\xd1\x48\xc2\x7d\xfb\x28\x73\x2a\x87\x69\xd2\xe5\x8f\xed\xd7\xcf\xa8\x5a\x98\x11\xc6\x19\xb5\xbb\x3b\xfb\xe4\x46\x56\xee\x15\x39\xff\xee\x7d\x72\xdf\xbe\x7d\x22\xe7\x26\xc2\x74\xd6\x43\x5c\xe1\x44\x29\x25\xe5\xc2\xae\x37\xfb\x1b\x71\x77\x9a\xb3\xc4\xc3\x51\x83\x2b\x3c\x0b\x66\xcd\x86\x5c\xfc\x16\xe5\xc2\x4d\x99\x3b\xba\xc2\xc9\xb0\xbb\xb6\x50\xb4\x71\x83\xef\x20\xbb\x58\xc6\xa1\x0d\x31\xf4\x11\xf7\x46\xd9\xed\x07\x77\x2e\xc3\x44\x78\x50\xce\x3b\x59\xff\x36\xe8\x42\xe4\x3c\x0f\xba\x7a\x77\xe6\x52\x79\xd0\xd5\xeb\xf8\x96\x7f\x50\xd5\x3b\x15\xab\xf3\xf1\xd0\x91\x86\xef\xc9\x4e\x2a\xd6\x60\xe2\xb0\xe4\xec\xfe\xc7\x53\x27\xf3\x3e\x3d\xd9\x50\x9f\xc0\x6d\xc8\xc9\x72\x58\x92\x6b\xfe\x90\x75\x2f\x1e\x7e\x4b\x43\xa1\x06\x78\xb2\x53\x59\x86\x3b\x6e\x65\x19\x6e\x2e\xca\x32\xdc\x9a\x94\x65\xb8\xbd\x2a\xcb\x70\x53\x57\xb6\x45\x74\x8e\x4b\x39\x86\x9b\xfd\x53\x86\x5b\x5c\x96\x4b\x7f\x0e\x65\xc3\xac\xe7\x5b\x96\xd1\x76\x77\x91\xa3\x54\x5c\x96\xd1\x16\x77\x82\xd1\x66\x67\x19\xed\xd4\x78\x74\x2a\xab\xaa\x9a\x8c\xb6\xfa\x2b\xa3\x4d\xfa\x2d\x86\x06\xb9\xfb\x2b\xa3\x2d\x9a\xb8\xa9\xc5\x75\x16\x2c\x53\xd5\xab\xc9\x70\xa7\x1b\x8a\x67\xac\x17\x3b\x5c\xe1\x9f\xdf\x3a\xcb\xea\x56\x57\x15\xe2\xc1\xfb\xfb\x5b\x5c\xa7\x78\x6e\xa6\xd6\x4f\x33\x87\xa5\x0b\x12\xd5\x93\x65\x44\x42\x10\xf8\xd3\xc9\x39\xf9\x2b\x23\x12\x56\x0d\x3d\xc5\x5b\xaf\xbe\x07\x45\xc5\x53\xb3\x16\x1b\xf7\x61\x45\x58\x35\xfc\xe5\x9f\xaa\x5c\x98\x05\xec\x2e\xcc\x88\xb2\x7b\x15\x0b\x28\x2c\x1a\x7a\x8d\xb7\x14\x12\x4e\x36\xdc\xb6\x26\xef\xb1\xa0\x15\x72\x13\x1a\x0d\x2d\xae\xa9\x79\xdc\x04\x9d\x40\x59\xf1\x81\xab\xd0\x51\xb5\x7f\x76\x9c\xd4\x0e\xe1\x75\x72\x81\x7e\x41\x37\x3b\x76\x79\x27\xc8\xcd\xb3\xd1\x75\xc5\xe9\xc2\xb3\x43\x31\x8c\x37\xd7\x03\xf1\x3f\x2e\x15\x7c\xc9\xb8\x57\x19\xbc\x4a\x28\x83\xb1\xb6\x32\x98\x8b\x2a\xd3\xa3\x06\xff\x28\xcc\xbc\xdc\x52\xf8\xb6\x77\x0d\xaf\x5f\x3f\xc2\x55\xfb\x45\x2c\xd5\xac\xcc\xa1\x19\xb3\xab\x7b\x7e\xfd\xb4\x3f\x5b\xed\x3f\x8a\x64\xce\x2e\x21\x90\x79\xd3\xcc\xbc\xf0\xb8\x74\x29\x73\x2a\x0c\x12\xf9\x81\xa4\x27\xfc\xd9\xa3\x60\xdd\x5d\x7d\x8d\x60\x24\xac\x3d\x94\x34\x52\xa0\x47\x51\xbc\x8b\x8b\x9d\xda\xb8\xb8\x88\xe1\x0d\x23\xef\xd9\x6f\xc2\xac\xeb\x4b\xf4\x8d\x3d\x0a\x05\x8a\xd7\xd1\x07\xfa\x13\x7f\x06\x0f\xf1\x81\x71\x9e\xff\x10\x1e\x98\x40\x1c\x0f\xc1\x81\x07\xec\xd8\x87\xd8\xc0\xe8\x88\x3c\x04\x03\x8e\xc7\xf7\x73\xcd\x87\xb0\x6d\x23\x9c\xfe\x45\x1e\x06\xd8\x15\x92\x28\x00\x81\x69\xef\xa0\x71\x0f\x00\xc3\xf6\x3b\x85\xb6\xfb\x73\xad\x8b\xb0\xb7\x77\x0e\x0f\x44\x01\x48\xd8\x6a\x87\x82\xbe\x00\x71\xf5\x07\xdb\x05\xc0\x42\x08\x71\xf6\xb4\x00\x68\x35\x95\xef\x4f\xe2\x22\x29\xa1\x9b\x14\x80\x2c\xa9\xf1\xa1\xd2\x02\x50\x51\x0d\x0d\x97\x72\x01\x80\xa2\xc8\xe3\x5b\x02\x4d\x76\xd4\x95\x03\x80\x7a\x1e\x3a\x98\x01\x80\x5a\xee\x61\xda\x19\x80\x0f\xca\xb4\xa1\x36\x18\x00\xdc\xbc\xf6\xb0\x58\x3c\x00\xbb\xec\x0c\x5d\xc1\x00\x14\x8d\x76\x4e\x03\xe2\x8e\x28\x61\xe6\x19\x80\x46\x00\x8c\x90\xce\x04\x00\x96\x2e\xaa\x62\x01\xf8\x92\x22\xc5\x00\xa4\x63\xe1\xb9\x29\x00\xa8\x96\x5e\xe1\x93\x2e\x00\xf1\x38\xba\x7b\x28\xe6\x07\x40\x5a\x39\xf1\x10\x38\x00\x19\x42\xa3\x8a\x03\x00\x3b\xfe\xc0\x67\x01\x48\x0c\x2e\xee\x9c\x00\x48\x28\x58\x93\x5a\x59\x08\x43\x50\x39\x09\x00\x02\x8f\x72\x7b\x5d\xb0\xe0\xb9\x51\x51\x09\x80\xf0\x62\x84\x44\x08\xc0\x66\x19\x02\xbb\x05\xe0\xa5\x9f\x78\xf5\x17\xee\x10\x72\xf8\xc3\x05\xc0\xf5\x1e\xca\xbc\x07\x80\xdc\xec\x46\x5e\x0b\x40\xab\x3f\x55\xc7\xc6\x0c\x04\x29\x65\x00\xe8\x07\xd2\x17\x01\x68\xd6\xcb\x00\x1f\xf1\x0e\x09\x1b\x80\x37\x7e\x25\xb3\xb6\xc3\xad\x48\x41\xf0\x53\x01\x40\x1d\x84\x91\x62\x00\xb8\xc8\xe0\xaa\x02\xc0\x6d\x46\x49\xf7\x17\xb0\x29\xd1\x05\xd8\xbc\x6a\xe2\xcd\x00\x60\xe9\x27\xc3\x80\x68\x05\x7e\x55\x00\x70\x5f\xd3\xc2\x59\x28\x00\x7c\x41\x96\xec\x4a\x89\xea\x0f\x37\x2a\x00\x8f\x00\x45\xad\xc8\x75\x6a\x8f\xb0\xae\x02\x7c\x08\x8c\xa0\x9e\xce\xae\x8e\x75\x97\x80\xec\xe8\x45\x33\x76\xe3\x04\xeb\xd0\x4a\x6a\x05\xf7\x40\x77\x2f\xd3\x3f\x79\xa3\x28\x5c\xa6\x26\x68\x11\x16\xb4\x8d\x6c\x00\x32\x94\x5e\x93\x06\x87\x15\x49\x1f\xce\x6f\x19\x34\x57\xe1\x93\x7b\x17\x7a\x5e\x85\x71\x6e\xef\x86\x08\x5f\x0f\x00\x7c\x52\x4b\x37\x00\x7d\xa7\xf0\x2c\x15\x80\x86\xd8\x33\xfc\x80\x0a\xf0\x02\x90\x0c\x60\x03\x85\x53\x40\x00\x44\xbb\xac\xd5\xfd\x40\x62\xd2\x6b\x73\x09\x08\xd8\x5e\xdb\x9f\xb4\xe0\x55\x9a\xc9\xfb\xf6\x1a\x47\x43\xbd\x76\x03\x70\xb2\xd2\xeb\x70\x9f\x50\xcc\xea\x15\x6c\xbc\x12\x91\xf5\xee\x5e\x85\x6c\x12\xf1\xa1\xee\x69\x44\x91\x86\x2a\x6d\x5f\xc0\x87\xd9\x6b\x42\x36\x69\x12\xd2\xaa\x16\xe1\xda\x34\x37\xc3\x68\x3a\xc2\x09\x53\xf0\xbb\x37\x4d\x67\x92\xc1\x75\x6f\xda\xf6\x69\x21\x90\xec\xad\xba\x04\xc6\x0d\x3d\x2e\xad\x00\xbc\x65\xa8\xa6\xbd\x93\xa4\x92\xd9\x9b\x30\x58\x92\xaa\x14\x4c\x6a\x00\x9c\x83\x88\xf4\x19\x00\x9d\xe9\xd0\x9a\x0c\xc0\x44\xdb\xec\xe6\x32\x5a\x89\x78\xf5\xe9\x0a\x77\x51\xcf\xb5\xb2\x42\xcc\xf5\xae\xbd\x92\x87\xb6\x5b\x68\xe1\x08\xc0\x32\x08\x2f\xe4\xd1\x37\x0e\xfc\x34\x1f\x79\x04\xd3\xe4\xee\x5d\xeb\x9c\xe5\x2b\xbd\xdc\xc5\xad\x3c\x38\x25\x0d\xfb\x39\x01\xf4\x93\xf2\x05\xd0\x6c\xcb\x5f\x80\xdc\x04\xfe\xae\x63\x01\x48\x5f\xc0\x03\xe0\x5b\x07\xf3\x11\x11\x2d\x00\x88\xbd\x90\xf4\x13\x5f\x46\x7d\xfc\x06\x6c\x00\xc5\x00\x22\xcc\x75\xcd\x7a\x9e\xd2\xdb\xe9\x1e\xfe\xcc\xb4\x32\x6e\xff\x84\xf0\x96\x7d\x08\xa5\x65\x5c\xf1\xde\x7d\xe8\x9a\xc8\x53\x53\x38\x2f\x97\xe0\xfd\xd5\x87\xa7\x70\xf2\x02\xeb\xe1\x81\x42\x00\x14\xcb\xa6\x4b\x08\xb7\x0c\xaf\xcb\xc4\x12\xa0\x0f\xcf\x18\x4e\xba\xee\x1e\x7e\x84\x00\xc4\xc5\x4a\xd4\xfc\x00\xa0\xe7\x4d\x54\x75\x01\xe4\xb3\xc8\x3d\x7d\x14\x9b\xae\xbb\xa7\x0f\x77\xf1\x5d\xd3\x17\xf0\x50\x42\x95\x2e\xed\xc2\xa1\x8d\x9b\xf1\x06\x71\x00\xaa\x63\x2d\x0c\x69\x87\x48\x80\xbc\x61\xbf\xf4\xa9\x7d\x9a\x37\xc1\x8f\x4b\xf2\x68\x77\xe6\x19\x19\xae\xed\x02\x40\xb8\xdc\x3e\x85\xf5\xb2\xf4\x71\x46\x9e\x2e\x51\x55\xc2\x13\xb4\xe5\xfa\x76\x16\xff\x04\x83\xc5\x3e\xbd\xd7\x11\x74\x1e\x80\x9b\x7d\x13\x84\x79\x6a\xf5\x0b\x71\xdf\xd3\x75\x6b\xe3\x96\x91\x40\xb6\xa1\x68\x10\x80\x82\x2d\xea\x75\xf9\x27\x58\x9c\x8e\x4b\xdb\xa1\x8c\x8e\xc3\x9f\xd0\x6c\x0e\x00\x52\x89\x62\xb2\xaa\x0c\x98\x64\xe3\x12\x06\x2f\x0a\x27\xe0\x6b\xa3\xcc\x41\xe8\x96\x4b\x97\x53\x91\xbb\xc7\x71\x89\x68\x28\xf2\x4d\x43\xfc\xc1\x03\x58\x74\x74\x84\x2b\xe2\x00\xf0\x74\x1d\xb7\xa6\xb4\xac\x37\x25\xee\xdb\x25\xde\x98\x6e\xdd\x22\x80\x8a\x14\x39\x87\xd1\x47\xd9\xc4\x0b\xce\x53\xd4\x5d\xd9\x43\x9a\x80\x75\x7c\x01\x31\xd8\xfb\x37\x00\xa3\xae\x5b\xd7\x68\xd9\x13\xbf\x05\xb7\xf6\x5c\xd9\x0b\x37\x0c\xb7\xbb\xbe\x1f\x89\x5e\x74\x91\x54\x62\xf1\xdf\x23\x3c\x93\x00\xc0\xa3\xc7\xad\x75\xaa\x23\x4c\xe8\x0f\xa0\x0a\x80\x8f\xe9\x71\x8b\xde\xa9\x84\x9c\x3c\x00\xff\xa4\x33\x85\xb7\xae\xe2\x4a\xac\xc0\x03\x70\x1d\xb2\x18\xbc\xb5\x6f\xab\x7c\xf0\x8f\x43\x64\xff\xf1\xfe\xaa\x33\xa1\xcb\x7d\xe9\xd4\xd7\x99\x31\xfe\x4d\xb7\xeb\x2b\x2e\xa1\x81\xe2\x35\xfb\x1e\x29\x19\x80\xdf\xd5\x62\xa2\xbd\x4e\x51\xe0\xde\x4c\x75\x12\x72\x63\x84\x89\x29\x00\x62\xd4\x26\xed\x95\x2a\x3f\x21\x4d\xd3\x5b\x31\x97\xbe\xbb\x5e\x28\x01\x80\x93\x2a\xd2\xb8\xda\xa0\x39\x69\xd7\x57\xac\xcc\xee\x3c\x93\x4b\x6c\x6c\xcb\x93\x76\x57\xc5\x60\xec\x00\x9a\x01\x18\x96\x86\x77\xb4\x00\xa0\xc3\x3f\x7c\xc6\xeb\x06\xf7\x8e\xb0\xa7\x01\x40\x1d\xf9\x72\x09\x91\x18\x57\x36\x60\xb0\x00\xd9\xa3\xdf\x0a\x09\x68\x9a\xbd\x6e\x78\x10\x23\xbb\xa7\x5b\x61\xf9\x82\x93\x10\x00\x82\x9b\x0d\x13\xf1\x75\xcb\x8d\x66\x16\x6a\xa9\xc8\x10\x0f\xc0\x95\xca\xa7\x61\xce\xae\xe3\x4d\x98\x0e\x13\xf1\x75\xcb\xd3\x55\xce\xfe\x09\x3e\xa8\x46\xce\xee\xa9\x22\x5c\x64\x61\xa3\x36\x2e\x76\x57\x16\x36\x6a\xe3\xc2\x35\x5f\x16\xaa\x6d\xe3\x56\x1d\xd5\x3f\x21\x6c\xf9\x08\xa1\x7a\x00\x06\x4f\xb8\x26\x02\xbc\x0d\x0e\x57\xb9\xf5\x1e\x6b\x03\x97\xc3\x23\x0f\xff\x64\x81\x9e\xb2\x88\x86\x36\xb0\x46\xba\xc2\xc2\xe4\x00\x14\x5e\x63\x64\xa1\xb8\x86\x2f\xe0\x7b\x14\x5d\x1b\x0d\xc7\xaf\xe7\x51\x73\x09\xc0\x0b\x65\x14\x4d\x50\x5b\x59\x00\x0f\xce\xde\x4a\x8a\x08\xcc\xb6\x2a\xdc\xb0\xf6\x1b\x00\xf6\x29\xd5\x75\xa0\x98\x55\xc2\x77\x64\x00\xba\x2a\xf5\x04\x2d\x9d\xd8\xe2\x09\x32\xe7\xab\x08\x73\xb4\xb5\x98\xe4\xa2\x4b\xb2\xd9\xc6\x34\x44\x47\x01\x40\x3c\x8b\xe3\xfc\x03\x90\x86\x77\x2f\xda\xb8\x6d\xdf\xb8\x3d\xa9\x7a\x5c\xb5\x9d\x90\x9d\xa4\x2f\x40\xa3\xad\x42\xf9\x0d\x16\xd0\xdd\x2f\x2f\x83\x77\x61\x4d\xae\x14\xb1\xce\x30\x8d\xde\x36\x16\x07\xa3\x8a\x64\xec\x0a\x34\x8f\x4f\xe3\x00\x14\x30\x58\x70\xc3\x01\x60\x80\x5f\x75\x15\x77\x91\x48\xa3\xdd\xf7\x17\xb0\x01\x5c\x06\xb0\x94\x4d\x28\xa8\x13\xe4\xe4\x1e\x4d\xc7\xa3\xcf\x9b\x98\x28\x4d\xd8\xa1\xcf\x41\x4f\x9b\x76\xf2\x01\x54\x00\xae\x43\x36\xe4\xad\xb8\x8e\xa5\x18\x2c\xdf\x56\x16\x36\xf2\x4d\x9b\xbf\xe3\xd1\xf4\x26\x9e\x29\x00\x8e\x58\xd3\xda\x76\x7c\x5a\xde\x84\xcc\x3c\x80\xa5\x48\xd7\x4d\xf4\x5f\xc7\xb9\xc4\xa1\x65\x35\x41\x8b\x66\x09\x16\x12\x80\x0f\x2b\xd7\x44\xfd\x77\x59\xf8\xe0\x3e\x25\x00\x8a\x0f\xd4\x85\x83\xfa\xbe\x88\x62\x97\x3c\x1f\x1b\xbf\x45\xd8\xb0\x05\xa0\x4a\xaf\xaa\xb9\x44\xe3\x98\x76\x1d\x8f\x0e\x1b\xf1\x00\xfc\x13\x3d\xcf\x87\x4e\xd4\x10\x83\x67\x74\xe1\xa0\x31\x12\xd8\xa1\x6b\x2c\x63\x4c\x1e\x53\x26\xa1\xc7\x90\x8f\xed\xae\x29\x1c\x04\xf1\x3b\x00\xd7\x81\xdf\x3e\x1c\x6b\x1e\xc0\x14\x86\xe9\x22\x08\x87\xc2\x9e\x8c\x5e\xfb\x9f\xef\xaf\x31\x2b\x5e\xa3\x4c\x81\x8f\xc9\x2d\x30\x4c\x2c\x0f\x5c\xea\x1e\x80\xba\x60\x07\x2f\x43\x37\xc9\xc0\x89\xcb\x01\xdc\x06\x28\xd6\xd8\xed\x9f\x84\xce\xe7\x5d\x92\xf6\xfd\x01\x28\x38\xaa\x5a\xf1\x29\x37\xb1\x3c\xd6\x70\x20\x3b\x97\x40\x52\x30\x86\xee\xc0\xb1\xa6\xe2\x14\x79\x6e\x96\x83\x82\x0a\x53\x8c\xb5\x15\xa7\x54\xdb\x6b\x2c\x39\x41\x36\x39\x3d\x7c\xa3\x8d\xe6\xb1\x3c\x0a\x83\xdc\xdd\xec\xe3\xf0\x29\xaa\x14\x3c\xd0\x9b\x88\xf8\xb1\x0b\x1b\x61\x88\xd0\x1b\xbb\xaa\x5f\xa2\x5b\xc6\xee\x0a\xa2\x33\x5c\x45\x48\xbc\xce\x74\xb4\x2f\x80\x46\xc6\x17\xa0\xa0\xe0\xa2\x6c\xc6\x76\x40\xd6\xe9\x4a\xb7\xe6\x78\xba\xd2\x8d\x2c\xa8\xbb\xc0\x4b\xf1\x81\x44\xd8\x0c\x23\x9f\x29\x5c\xa3\xe0\xa7\xf7\x98\x5a\xa6\x39\x96\xfc\x44\x68\x4f\xcf\x99\x18\xdb\x14\xcf\x65\xce\x8e\xce\xad\xa9\x6b\xfb\x8c\xcf\x43\x84\x88\xdc\x3a\xdf\x63\x56\x03\x5e\xf2\x86\xa2\x29\x9e\xf3\xad\x4a\x85\x9d\xe5\xce\xeb\x1e\x26\xc8\xe7\x9a\x52\x58\xd7\x09\x9e\xbb\xc2\x4d\xed\xee\xe9\xee\xb2\xef\x48\xaa\x43\x8a\x85\x33\xf4\x59\x00\xa0\xb9\x9e\x85\xae\xe7\x9e\x52\x36\x15\x8a\x9b\x7b\x49\x3f\x3c\xbb\xd2\x2d\xbd\xe5\xe2\x3a\xb6\xad\x48\x8a\x01\x32\x0c\xaa\xee\x18\xa6\x7c\xf3\xea\x5f\xc0\xec\xff\x6f\xc0\x1a\x97\xd4\x4f\x45\x44\xad\x71\xc9\xb4\x4d\x1b\x6a\x8d\x34\xa4\x26\x5e\x04\xc8\xd2\xe9\xd5\x7c\x2c\x85\xdb\xef\x29\xb9\x8e\x25\xe2\x59\x68\x72\x29\x6e\xdd\x34\x07\x72\x4d\x59\x0c\xdd\x3a\x93\x6b\x12\x55\x7c\xde\xe2\x62\xae\x69\xad\x4e\x51\x44\x6b\x0e\x94\x3c\xb2\x50\xdc\x9a\x04\xb1\x9d\xb7\x48\xa4\xb5\x88\xbf\x51\x6e\xa1\xa7\x8d\x53\xe4\x1b\x5f\xcf\x00\xb8\xf0\x87\xd6\xf6\x00\x40\xa4\x7a\x59\xef\x69\x55\x92\xf9\xbb\x04\x4c\x5c\xed\xd3\x3d\xdf\xe8\x1a\xa4\xf2\x05\x84\xd7\xb1\xeb\xd6\x13\xf7\x00\xe0\x84\xea\xc8\x6d\xdc\xe9\xa6\xcb\x63\xd9\xf3\x23\x9e\x88\x4e\xe9\xc6\xfb\xed\x5d\xae\x56\xbe\x00\x1e\x7d\xda\xb8\x07\x80\x87\xeb\xf4\x2d\x81\xfe\xd4\x2d\xa4\xb5\x71\x1e\x9b\xae\xbb\xb7\x2f\x20\x54\x19\xee\xef\xf0\xd1\x7c\x28\x77\x77\x1d\x44\x9f\xbb\xee\xf9\x1b\xf0\x40\x56\xb8\x63\x0f\x3a\x79\xe9\xfa\x96\x08\xf2\x26\xb7\xfa\x2d\x81\x0a\x9b\xe5\x02\x1b\xaf\x9b\xe9\x32\xfa\xd8\x72\x82\x79\xa5\xf6\x2d\x81\x5a\x81\xe9\xf2\xf7\xac\xc8\x55\x87\xc8\xac\xcf\x40\x0b\xb6\xdc\xc2\xea\x9f\x89\xc5\x41\x36\x6a\xfc\xe0\xca\xfd\x2e\x49\x47\xec\x91\xbb\xd1\x6a\xde\xf1\x23\xff\x9e\xe6\x91\x3c\xeb\x92\xe5\xba\x58\x44\x0f\xee\x38\xbb\xaf\x81\x47\xdd\xca\xb3\x7e\x7f\x21\xd2\x76\xfc\x06\x0c\x98\xde\xff\xf5\xf2\xca\xe3\xbf\xdf\x5d\x0f\xde\x33\x7f\xb3\xdd\x9f\x45\x0c\xb4\xdc\xef\xdf\x00\xb0\x93\x90\xc0\x83\x63\xca\xd3\xc5\x64\x00\x02\x5a\xf3\x64\x9e\x75\xd3\x25\xbf\xfd\x0f\x80\x35\x4d\xdf\x12\xb4\x32\xf2\xb7\x8e\xd0\x0a\xea\xdf\x51\x45\x14\xab\xde\xf3\x37\x2f\x27\x0c\x9a\xda\x03\x60\x1e\x92\xdb\x48\xd2\x75\x6b\xdf\x9f\x60\xde\xd3\x45\x3a\x3d\x2b\xa1\x25\x60\x26\xce\x83\x1f\xc6\xd3\x2d\x8f\x35\x87\x82\xbc\xb9\xe1\x0f\xae\x0d\x7f\xf3\xe7\x1e\xbc\x1b\xf6\x36\x3d\x17\xb8\x30\x2c\x96\xf3\x3c\xf8\x29\x3c\xbd\xf8\x5d\x22\xfa\xd9\xfa\xb7\x8d\xd0\xc5\x6d\xbf\x0b\x04\x4f\x23\x9b\x7e\x7b\x70\xec\x77\x67\xf3\x00\x0f\x00\x39\xd8\x75\x7f\x01\x28\xcb\x7c\x67\xaf\x68\x32\xbe\x1d\xc7\x8b\x9e\x25\x67\x0f\x7e\xf4\x4e\x15\x06\x54\x69\x05\xd4\xfe\x05\x40\x7a\x7d\x57\xa0\x6a\x67\x0c\x8f\xbd\x21\x5a\xf7\xfb\xd8\xca\x34\xe5\xfa\x76\xb4\x4b\x57\xaa\xb5\x2f\x80\x57\x79\x73\xb3\x52\xae\x4f\xff\x8b\xa0\x15\xff\x5a\xff\xf6\x7f\x7d\xfe\xf1\x57\xba\x7e\xfd\xfc\x55\xcf\xc0\xff\xf1\x57\x7d\xff\xfa\xf9\xab\x47\x18\x93\x7f\xfc\xf5\x4a\x67\x2c\xe7\xdf\x99\xa6\x33\x27\xaf\x58\xd8\xf3\x2f\x54\x99\x7a\x40\x5e\x40\x70\x5d\xf5\x8f\xbf\x5e\xf9\xbc\x34\xce\xbf\x1a\xaa\xbd\x01\xe9\x01\x81\x51\x75\x1d\xc8\xd9\x64\xe7\x1f\xc4\xef\x81\x2c\x7e\x85\xa3\x87\x1c\x10\x7e\x25\xb7\xe5\x07\xb2\xf9\x55\xe8\x64\x9d\x15\x78\x85\xcd\xc0\xf9\x37\x71\xae\x7a\xda\x8f\xf7\xf6\xf9\x17\x7d\x0c\xc2\xe6\xb5\xa9\x3d\xe2\x67\xdf\xe8\x2a\xbe\x42\x69\xf7\xfc\x8b\xdf\x86\xbf\xf9\x57\x88\xc6\xcf\x3f\x82\x78\x05\xa4\x01\x89\xa3\x7e\xfa\x1e\x3e\x4b\xce\x3f\x7e\x77\xb0\xe7\x2b\x5e\x9b\xe7\xdf\x07\x58\x0a\xd8\x13\x30\x9c\x8f\x04\xd1\xf6\x0a\x6d\xce\xf3\x6f\x53\xee\xb4\x10\xee\x20\xce\x3f\xf9\xc8\x07\x36\x80\xc5\xf5\x13\x62\xa5\x57\xb8\x5d\xf8\xeb\x45\xa0\xd4\xb0\xbe\x78\x85\xde\xdb\xf9\x77\xba\x72\x51\x6a\xbd\x00\x05\xe6\x0e\x45\xe7\x57\x78\x2e\x38\xff\xce\x1e\x09\x6d\xdc\xd7\xc3\x22\x41\x40\x86\x4e\xe0\x2b\x1c\x7b\x9f\x7f\x51\xd9\x79\xf5\xbc\x82\x6b\x7e\xfe\x05\x0a\x0f\x2d\xe5\x77\xbc\xc5\xcf\xbf\x17\xb0\x1e\xb0\x0f\x30\x1a\xad\xe3\xc0\xce\x9e\x3d\xff\x6a\x54\x37\x03\xd4\x02\x14\xdc\xfa\xd8\xbb\xef\x30\x1d\x3e\xff\xa2\x6b\x67\x95\xdf\x77\x74\xed\x1d\xde\x74\xef\x40\x97\xef\xc0\x7b\xe7\x1f\x6d\x9e\x9b\xe3\x1d\x76\xb0\xe7\x1f\x6d\x86\x92\xca\xbd\x43\xd9\x87\xc4\x83\xcb\xe6\xf9\x8f\xbf\x3e\x69\x84\x8b\x64\x12\xf7\x41\x77\x0d\x68\x6c\xe7\x48\x44\x90\xb4\x21\xe8\x34\x74\x45\x17\x02\x1a\x56\xc3\x24\x22\x1a\x39\x4e\xf6\xd3\x08\x5e\x16\x89\xf9\xeb\x67\x66\x81\xd3\x50\x83\x21\x4a\x9f\x28\x32\xa5\x51\x0f\xde\x23\x51\xa2\x74\x15\xb8\x19\xbc\x7e\xfd\x4c\x02\xf1\x9e\xdc\x36\xf8\x13\xa5\x6f\xc0\x1e\x4c\x5c\x83\x48\x9f\x22\xb7\x0c\xde\xbf\x7e\x06\x96\x5d\x69\x84\x86\x1f\x89\xf9\xeb\x67\x60\x99\x75\x72\x2e\x1d\x0e\x28\xf0\x70\x93\xa0\xde\x48\x60\x21\x29\x68\x33\xb4\x13\x2f\xaa\x08\x3e\x0c\x9f\xc0\xa9\x3c\x18\x7a\x24\xea\xaf\x9f\x91\x35\x87\xa1\xbd\x46\x02\xdd\x9a\x31\x05\xef\x86\x87\xae\xbc\xa1\xdb\x50\xee\x82\x80\x86\x50\x98\x04\x07\xe6\x0b\x6f\x86\x47\xf4\xa9\x5b\xd0\x65\xe8\x3e\x75\x64\xa0\x5e\xf7\x08\x71\x75\x27\xd4\x8c\x4f\xd6\x75\xa0\x93\x5d\x2f\xea\x8e\x97\x2e\x89\xd0\x0f\xae\x82\x16\x43\x43\xd1\x13\xb5\xd6\x04\x3f\x8b\x44\x28\xe0\x66\x41\x97\xa1\x9b\xd2\x4c\x61\x44\xc5\x21\xb1\xd9\xb1\xd4\x1e\x0a\x37\x24\x98\x2b\x6d\xac\x88\x99\x4e\x62\xfd\xfa\xc1\x3e\x24\x8d\x50\xa5\x25\xf1\x89\x11\x15\x6a\x07\x43\x44\xa2\xe0\x37\x57\xe5\x3d\xe3\x81\x3b\xc6\xad\xca\x3f\x9e\xf2\x10\x39\x8e\x5b\x7d\xfc\x78\x0b\x7d\xe0\xe9\xe3\x4b\xf0\x64\x3f\x86\x87\x5c\x07\x6f\x7a\x69\x3c\xde\xfc\x88\xdd\x1a\x3e\xf7\x12\x11\x46\x23\x11\xe7\xad\x1a\xac\x23\x44\xf0\xcd\x41\x94\xc3\x34\x7d\x84\x66\x42\xc3\x28\xb4\x2c\x4f\x6e\x08\x3c\x51\x7c\x49\x80\x03\x3d\x46\x02\xbb\x91\xd0\x15\x3c\xd9\x97\xe0\xe1\xce\x07\x7b\x8e\x93\x6b\x06\x83\x15\x43\x27\x2c\xcd\xec\x46\xf3\x00\x5e\x04\x9f\x86\x83\x6c\x71\x73\x78\xb2\x5b\xf0\xb8\x70\x2f\x3c\x2d\x9c\x6c\x35\x3c\x6e\x46\x6c\x3b\xd3\x2c\xae\x1f\x7b\xe4\xd2\xa9\xbe\x1a\x8c\x57\x59\xfc\x38\xa7\x59\xd7\x5b\xe0\xf5\x39\x87\xb4\x30\xa6\x78\xb4\x93\xc8\xa1\x1e\xc6\x84\xb5\x21\x70\x30\x2c\x06\x66\x50\x09\xe1\x1f\x89\x1a\x95\xd0\xc3\xee\x11\x21\x95\x6a\xf8\x27\x4d\x84\x38\x24\x11\x95\x6b\x91\x86\x7b\x18\xda\xba\x23\x69\x9c\x43\x98\x61\xc2\x26\x68\xf8\xf4\x4c\x84\x30\x24\xf1\x0e\x64\x74\x89\x0e\x81\xea\xf8\xff\x23\x44\x3e\x69\x86\x56\x1d\x89\xc0\x27\xd8\x32\xa6\xe9\x03\x4b\x48\xb8\xb3\x01\xe9\xeb\xdb\xab\x18\x62\xb2\x81\x9f\xb4\x84\xf3\x60\x12\x41\x84\xe0\x9a\x2e\xad\x2e\x9c\x87\x67\xd0\x03\x8f\xf9\x5c\x3e\x6b\x0b\x5d\x36\x83\xdf\x3a\x3c\x72\x3f\x95\xf0\xbd\x92\xd6\x47\xe8\x00\xbf\x4e\x07\xeb\x45\x2f\x77\xb0\x76\x49\xbc\x21\xba\x33\xf0\x75\x0b\x8e\xc6\x34\xd1\xca\x12\x16\x57\x24\xd0\x37\x0a\xf5\xb5\x84\x2d\x0c\x89\xfa\xeb\xa7\xe0\xd0\x2b\x61\x80\x42\x22\xfd\xfa\x29\x35\xd3\xea\xa3\x8d\xbf\x1f\x99\x57\x74\x81\x8b\xc1\xf5\xab\x73\x9f\xc7\xc5\x32\x9e\x44\xfa\xf5\x83\x22\xf1\xc9\x54\x43\xfb\xaf\x9f\xd0\x09\x88\xcc\x10\xf4\x34\x01\xaa\x39\x99\x62\x68\xfd\xf5\x43\x68\xfd\x93\x69\x86\xc6\x3e\x60\x2c\x27\xfb\xad\x63\x82\x6a\x27\xf0\x9d\x05\x8f\x25\x4a\x18\xf4\xe5\x71\xb3\x87\xf3\x00\x17\x14\xda\x4c\xee\x75\x3a\x7b\x15\x5f\xb0\x27\x53\x0c\x6d\xbf\x7e\x3a\x51\x04\x4f\x6e\x1a\x1c\xfe\xc7\x50\x04\x3e\xd9\x6d\xf8\xeb\xd7\x4f\x2b\x59\xd0\xb7\xa1\x9f\x33\x74\x41\x97\xba\x11\xe8\x01\x37\x93\x79\x64\x77\x23\x88\x52\xf4\xd5\x4f\xa6\x1b\xba\xe2\xb2\xcb\x02\xbf\x0d\x8e\x8a\xef\x80\xea\x7e\x3d\x09\x50\xe6\xa0\x74\xdf\x82\x43\xcb\x36\xdc\xf3\x9e\xec\x32\x9c\xf2\x85\x79\x1d\x4b\xe5\x61\x3d\x5e\xb7\x06\x39\xd6\x32\xfc\xcc\x1f\x5a\xb3\x79\x8c\xad\xf1\x84\x02\x77\x6f\x37\xe0\xd0\xf8\x25\x71\x88\x00\xcc\xba\x4e\xee\x65\x70\x20\x41\xfc\xe2\xe6\xb1\x3c\x7e\x18\x7c\x17\xf1\x8b\xb2\xef\xb6\x93\x88\xf2\xde\x6c\xcb\x9d\x5c\x10\xad\x65\x34\xc1\x8b\xe1\x23\x7a\xc3\x1c\x2c\x77\x92\xf3\x70\xe1\xa4\x36\x8f\xed\x39\xdb\x81\x4b\xaf\xa2\xf2\x2f\xef\x15\xe8\xf5\x9b\xf0\x18\x27\xfb\x11\x3c\x30\xdb\x8d\xa7\xf2\x93\x5d\x86\x47\x00\x21\x3c\x44\x9f\xec\x23\x78\x74\xf3\x26\x7c\xdd\xc9\x0e\xc3\x67\xc0\xef\x24\xb8\xeb\x0f\xf6\xe1\x3d\x35\x9b\xaf\x5d\x0c\x0f\x47\x4e\x38\x2b\x3d\xd9\x6f\xf9\xa0\x69\xa7\xd6\x36\xbc\xf7\x91\x68\xc0\xa7\xe0\xdb\xf0\x57\xc0\x35\xfd\xa1\x30\x18\x89\x49\xbb\x45\xf5\xcc\x6a\x38\xf5\x54\xb6\xeb\xc7\xa7\xfa\xc3\x05\x9a\x6f\x81\x87\xc1\x71\xf7\xcf\x24\xf0\xc7\xe0\x73\x33\x35\x4d\xc2\xc7\x7b\x21\x28\x8b\xde\x2e\x55\xe2\x25\x0c\x63\x9b\x81\xed\x6e\x1e\xc1\x51\x24\x31\x62\xea\x83\x3a\xcb\xb3\xea\x94\x4d\xdc\x90\xcb\x85\x53\x26\xd6\x16\x09\xb4\xbb\x42\x4b\x5f\x52\x7c\x12\x95\x77\x7f\x03\x0e\x4a\x3e\x89\x60\x7f\x62\x12\x7e\xb2\x8f\xe0\x08\x02\xf1\xc2\x58\x10\x7b\x91\xb8\x81\x27\xe0\x5b\xf5\x87\xb9\x75\xba\x31\x51\x2f\x58\x10\x47\xe2\x6c\x5d\xf4\x5d\x23\xb7\x0d\xc6\xd4\xa0\x07\x58\x0b\x75\x12\xaf\xa8\x45\xbd\x7c\x83\x11\x4e\x02\xa7\x5d\xed\x12\xfc\x6d\x78\xe8\x5b\xa0\x97\x5e\x76\xf8\x80\x23\x11\xee\xe8\x20\x52\xca\x7e\xdc\xfb\x78\xa7\x1d\x78\x05\xbe\xd4\xfb\xd0\x0b\x2e\x10\x75\xd5\xb8\xfd\x24\x18\x6c\x58\x22\x54\x3f\x73\x2a\x48\x37\xdd\xe0\xe0\x3a\x6e\x6e\x8e\x93\x48\x01\x0f\x33\x87\x3a\x12\xfb\xf2\x24\x4a\xc0\x0b\xf5\xa7\xa9\x7a\x92\xd4\x72\x83\x6a\x3c\xd9\x47\xf0\x45\x37\x8b\xe0\xcb\xf0\x60\x0a\x2a\x30\xc3\xc9\x2e\xc3\xa5\xcd\x4b\xbb\x79\x4c\xe0\x39\x22\x0f\xde\x06\xb3\x03\x4f\x82\xd9\xa9\x0c\xab\x0c\x75\x3f\x9c\xed\xe8\xf6\x3c\xb9\x97\xc1\xc1\xee\x0e\xb5\x8e\x93\x75\x35\x45\xd5\x84\x31\x42\x1d\x05\x52\xf8\x24\x06\xf0\x29\xb8\xcb\xe3\x23\x10\x0f\x82\x95\x47\x17\x89\xd3\x4b\x08\xa1\x3a\x1a\x87\xb0\xf2\x56\x82\x13\xf9\x91\xd6\x07\x89\x7d\xc0\x99\x4a\xda\x56\xdf\xc3\x97\x46\xc1\x4d\x7a\x1d\x7d\x6a\xe6\xd1\x77\x98\x84\x23\xaa\x68\xb1\x92\x08\x0a\x22\xd7\xfa\x67\x72\xaa\x1a\xeb\x57\xb0\xfe\xc1\x53\x4c\xc5\x64\xdf\x4a\x9f\xa4\x40\x3f\x56\xd8\xac\x24\xb0\x74\x9c\x2c\xc0\xf2\xd0\xc2\x32\x3f\xdd\x5c\x2a\x75\x2c\xcf\xd0\x22\xb6\x87\x3a\xbb\x20\xca\x4e\x22\x26\x14\x6f\xa9\x27\xbb\x0c\xdf\x28\x2d\xe7\x80\x6f\x37\x1b\x56\xca\xa8\x5c\x7d\xea\x78\x0d\x15\x7f\x11\x9c\x1e\xbb\x8c\x3a\x5e\x5e\xaf\xc0\xca\xe9\xf6\x4c\xbf\xd6\x36\xfc\x05\x9c\xee\x7c\x86\xca\x07\xde\x4b\x37\x0e\xf4\x2b\xea\xb5\x24\x82\xe7\x84\x1f\xac\x8a\x22\x20\x89\x38\x2d\xd0\xcb\x75\x5e\x1a\xed\x0c\x97\x6a\x05\x6f\x67\x75\x5e\x60\x92\x93\xa0\x1a\x46\x85\xb2\x2e\x89\x4f\x54\xc3\x24\xcf\xcc\x1b\xf8\x24\xce\x3e\x81\x5f\x50\xfd\x2e\x38\x09\xb4\xa0\x19\xed\xf4\x6e\x9e\x21\x6b\x4f\x37\x11\x40\xeb\x14\xc7\xe0\x24\xfa\xa9\x86\xa5\x42\xf3\x8f\x04\x11\x7e\x07\xad\x76\xf0\x72\x25\x88\xfa\x81\xc7\xe4\xcc\x01\xd2\x3f\x89\x20\x41\x71\x9a\x52\x51\x67\x27\x11\x3b\x07\xaf\xe4\x75\x4e\xa1\x06\xe2\x6f\x1f\x6a\x8e\x7a\xe6\x52\x79\x62\x56\xdf\xe0\xd9\x3a\xe7\x36\x3c\x76\x60\xc1\xff\x48\x9d\xde\x3a\x73\xc1\xb0\x2e\x37\xfd\xdc\x9e\x1d\x5c\x38\xdf\x10\xfa\x95\xa0\xaa\x24\x50\x68\xbe\xa9\x5f\x24\x40\x25\x40\xea\x29\x4f\xfd\x2f\xcf\x83\xc2\x86\x12\x2f\xb1\x12\xfc\x93\x44\xe0\x7d\xbc\x67\x55\x02\x76\x92\x08\xed\x78\xec\x0d\x4f\xb6\x1b\x3e\x7e\xfd\x14\x0c\xaf\x4f\xee\x6d\x70\xe0\x18\x7c\x42\xd7\xf9\x1e\xea\xbe\x74\x67\xf1\x8c\x51\x09\xcc\x48\x02\x65\xf3\xc4\xb0\xf4\x6c\xaf\x8a\x2e\x28\xbf\x08\x75\x7a\x0f\x12\xbd\xae\x94\xb8\x57\x2a\x41\xdb\x48\x04\x3f\x9d\x18\x64\x75\x25\x6d\xf1\x95\xd8\xe2\x78\xb7\x39\xd9\x65\x38\x1a\xec\x41\xdd\x9e\xec\x23\x38\xb2\x3a\x6c\xc4\xeb\x4a\xd0\x6b\x27\xc1\x6c\xb2\x67\x09\xb3\x43\x02\x95\x74\x50\xe7\xca\xdc\x5b\x95\x68\x3a\xa5\x82\xc5\x08\x91\x43\x82\x59\x08\xf3\xa5\x4a\x1c\x1b\x12\x6c\x92\x20\x13\xeb\x32\xa6\x5d\x81\x69\x4b\x68\xa0\x9c\xdc\x76\x35\x21\x52\xbb\x31\x80\xab\xab\x1a\x5e\xa5\x42\xcf\x1e\x27\x92\x05\x89\x83\x98\xb1\xd1\xac\xab\x2f\x75\x9e\x68\xfd\xa5\x70\x5b\x62\x9d\x48\xe2\x1c\xc4\xca\x12\x62\xd4\x47\xa2\xe2\x73\x86\x39\x5e\xba\xe4\xd6\x92\x0e\xf9\xc5\x5c\x6e\x61\x35\x5c\x75\x97\xca\x01\xc2\xf7\x31\x89\x03\x26\xd8\x52\x5d\x6f\x48\xc1\x8a\xc3\xe0\xbb\x60\xdf\x5c\x71\xb1\x4b\x22\xae\xd0\x92\x29\xff\x81\x04\xad\x72\x71\x7b\x17\x4d\xf1\x47\xe7\x0a\x1d\xb6\x03\x67\x6e\x1e\xcf\x41\x28\xde\xa4\x1b\x97\x0f\x75\x5f\xda\x21\xb8\xf0\x2c\x98\x43\xd5\x7d\x09\xf5\xe2\xa4\xb1\x60\xe4\x54\x71\x05\x48\x42\x4a\xf8\x14\x17\xa3\xa6\xe2\xf0\x2f\xdd\xbc\x35\xeb\xce\xea\x0d\xde\xf4\xd2\xad\x05\xc7\xfd\x58\x24\xc2\x93\xc2\x5d\x3a\xbd\xa9\x70\x58\x2b\x6e\xbc\xd2\x8d\x83\xf5\x8a\xb7\x28\x12\x87\x32\x75\xe7\xc7\x54\xb3\xc8\xcd\x0b\x86\xba\x15\xbd\x03\x12\x07\x07\xc2\x39\xab\x7b\x6a\x2e\xf7\xd4\x5c\x72\x7a\xf6\xd4\x05\xb1\x65\x80\x57\x83\xc2\xad\x58\x95\x90\x40\x9b\x9f\x25\x84\x34\x24\x71\x36\x08\xbc\xd0\xea\x57\x7b\xf5\xab\x9d\x60\xa2\x75\x6f\xa1\x22\xd4\xf9\x0a\x7c\xbf\x8a\xe3\x12\x12\x88\x36\xd8\x7e\x5b\x7c\xbf\x8a\xdc\xbe\x60\x04\x26\x4d\x3f\x12\x33\xc0\x8c\xe9\x25\xe2\x05\x3b\xb7\xbb\x54\xf0\xe2\xf6\xa5\xb7\x75\xe9\xd5\x9b\x56\xdf\xba\x1e\x70\x95\x50\xba\x26\xf8\xed\x05\x7c\xb3\x80\x15\xf4\xb7\xc5\xe0\x3b\x89\x98\xb2\x0a\x62\xd9\x8f\xa7\xf2\x99\x82\x67\xc1\x93\xe1\x28\xfc\x83\xe7\xf6\x33\x87\xe1\x33\xdc\xbc\x09\xbc\x34\x65\xe8\xa7\x74\x4c\x9d\xdb\xb8\xe9\xe5\x49\x74\xdc\x30\xf7\x80\x27\xc3\x53\xf4\x9e\x40\xdf\xcd\xf4\x61\x83\x3e\x4c\x77\x0d\x76\xee\xc9\x7e\x0c\x7f\x80\x57\xe0\x5b\xd5\xc4\x0b\xbd\x84\x08\xe6\xd3\xd0\x5a\x23\xf1\x39\xe0\xc0\x13\x6d\x08\x3b\x9d\x44\xe0\x89\xd3\x99\x3f\xd2\x58\x0d\x23\x36\x12\x07\xeb\x10\x5d\xab\x8d\xc6\x7d\x7e\x12\xcc\xdc\xc8\x82\x67\xc3\x0b\x70\xfa\xda\xdc\x7a\x83\xb6\xe6\x28\xb6\xd1\x5d\x4f\x57\x3d\xf3\x16\xfc\x63\x38\x63\x9e\xd4\xdf\xc1\xa5\x27\x81\x67\xeb\x38\x2b\x6d\x8c\xa1\x6e\x86\xed\x48\x21\x10\x45\x83\x30\x24\x71\x2e\x1a\x22\x0b\xb4\xb1\x3c\x45\x8b\xda\x71\x4d\xdf\xc6\x72\x2f\x71\xe7\x14\xb2\xf1\x93\xf3\x44\x87\x2e\xe3\x29\x3e\x04\xff\x18\x4e\x35\x89\xea\x5f\xdc\x1b\x27\x11\x06\x02\xad\x33\x09\xef\xa1\xea\xdf\xb8\x21\xa8\x9d\x5e\x7e\x96\xea\xf9\xa0\x8e\x82\xcb\xb8\x36\xc4\xe3\x6a\x36\xcd\x80\xb1\xd6\xc6\xb3\x54\xff\x83\x93\x3b\x4c\x50\xdb\x78\xb6\x26\x01\x9b\xc0\x89\x6d\x6f\x9b\x49\x6b\x38\x13\x9e\xf7\x70\x7e\xd5\x66\x52\xff\xc5\x24\x2e\x35\xf6\x73\x9b\x19\xfa\xf9\x24\xa2\x7e\x42\x56\xb4\x89\x10\x33\x12\xf7\xaf\x9f\x8a\x67\xa7\x06\xcb\x98\xc4\x22\xae\x3e\xd5\x14\xad\xc9\x2c\xec\xe7\x50\x24\x3c\x59\x4e\xe9\x49\xd4\x53\x4d\x55\xf1\xfd\x32\xf8\x4d\xf1\x18\xed\x6c\x9a\xb5\x19\x7b\xab\x5e\x9d\x41\x75\x77\xa6\xd3\x19\xf5\xbd\xbb\xf2\x0e\x0a\xc0\xee\xf8\x64\x3f\x86\xb3\x56\x93\x39\x10\x25\xd8\xa0\x04\xd3\x8d\x59\x6d\x9b\xba\x3e\x4f\xa2\x9d\xea\x27\x53\x30\xa7\xa6\x26\x78\x48\x77\x09\x2b\xa6\x93\xe5\x4a\x69\xb0\x78\x2b\xfe\xc4\x4e\xee\x65\xf0\x1b\x13\x1e\x55\xb3\x5d\x3c\x5e\xd0\x0d\x16\x4e\x9b\xcb\x33\x8f\x1a\xed\xc4\x5b\x53\x9b\x0b\x6c\x7a\x12\x2f\xbc\xbd\x33\xda\xed\xb9\x09\x0f\x56\x49\xb1\x6d\xda\x7c\x21\x2d\x6a\xc4\x7f\xaf\x77\xa6\xb8\x38\xbe\x0d\x33\x94\xca\x83\xb5\x11\x2f\x99\x44\xcc\x3c\x0e\x81\x1b\x71\x4d\x49\xc4\x83\xbb\xc5\x83\xbb\xad\x9b\x87\x6f\x5b\x37\xe8\xb4\x87\xbd\x7d\x5b\xde\x67\xd2\xa9\xe8\x83\xc9\x21\x36\x26\x89\x0d\x9c\xf2\x7a\xf9\x4a\x79\x39\xdd\x9d\xf3\xb0\x32\x54\x6c\x53\xb0\xc6\x3e\x92\xe0\xee\x4f\x56\x7f\xd8\x80\xab\x1a\x5e\xd5\x1f\x90\xd1\xea\xc2\xb3\x0b\xbb\xc1\xd2\x2a\xfd\xe9\x3a\x6f\xab\x83\xaf\xf1\x8a\xde\x96\xb1\x85\xfc\x3e\xf4\xa1\xf2\xba\x71\x9b\x1c\x0a\x14\xcc\xa8\xdb\x92\x24\xec\x24\x02\x2f\x10\x45\xbd\xad\x05\xd9\xdb\x20\xaa\xee\x82\x97\x8a\xb6\xd6\x52\xfd\xeb\xac\x83\xc2\xa0\x35\x22\xf6\x90\xb8\xa9\x26\x0b\xfe\x31\xfc\x01\x1e\x9b\x87\xa0\x38\x24\x38\xce\xaa\x7e\xf3\x8e\x6d\x44\xac\x39\xe5\x99\xe6\x0d\xf9\x72\x12\x0c\xab\x53\xcf\xcb\xdd\x7f\xa9\xfb\x60\xc1\xf5\x1a\x5a\xde\x17\xa6\x59\xc4\x29\x6d\x84\x88\x20\x31\x4f\xf7\x41\xe1\x4b\x5c\x9f\x06\xf1\x77\xba\x43\xf5\x9f\xa9\x6a\x3e\x50\x47\x23\x51\xfe\xe3\x59\xc0\xad\xcd\x3d\xc0\xd5\x84\x35\x20\xb1\x4f\xf5\xda\x54\x1f\xb7\x1a\x71\x05\x4e\x71\x7a\xf9\xe8\xa6\x59\x0f\x37\xcd\xc8\x4d\xf0\x6e\x38\x16\x5e\xdc\x10\xeb\xd1\x91\x90\x63\xfc\x4e\x08\xb8\x86\x97\x75\x12\x25\x1c\xc4\x75\xc0\x2a\x2e\x5f\xe5\x72\x6d\xda\xb6\x04\x62\x0d\xaf\xcb\x77\x41\x12\xdb\xf0\x1d\x4c\x82\xea\x19\xed\xf6\x45\xb9\x1b\x0f\x5f\x98\xa3\x6d\x4f\x2d\xa2\x54\x21\xfb\x64\xb8\x5b\xbc\x8b\x93\x08\xdc\x4b\xc8\x8d\xb6\xa7\xbb\x89\x9f\x8a\x4e\x88\x8c\x86\x47\x3e\x12\xf1\x0e\xd7\x05\x6d\xba\xac\x41\x97\xd5\xc2\x1a\x9a\x2c\x6b\x56\xa7\xac\x97\xe0\xae\x66\xab\x1a\xd0\xe6\x96\x20\xf5\x24\x42\x47\xad\xab\xfb\x8f\xbb\xaf\x59\xc6\x57\x6e\x1f\x37\x5b\xff\x24\x82\x05\x08\xc2\xeb\x23\xd3\xfd\x93\x08\xea\x23\x14\xb4\x22\x5b\x0d\x0f\x3d\x98\x7a\x53\xbe\xb2\x37\x4f\x22\x1c\xd2\xc4\x49\xef\xa3\x71\x72\x4f\x22\x74\x5f\xf1\x82\xd6\x7d\xfd\x77\xae\xff\x24\x96\x72\x1f\x83\x9b\xf8\x24\x5e\xbf\x7e\x2a\x4c\xdf\x3e\x26\x3b\xfc\xec\x8d\xf0\x4d\x55\x93\xe0\xee\x0d\x56\x2e\x05\x45\x8a\x3e\xa6\x9b\x9d\x6a\xb6\xd2\x9d\xe9\xea\xc3\x1b\x65\x12\x67\xba\x8f\xed\x7a\x74\x12\x67\xfb\x1b\xe2\xc1\x3e\x50\xe3\x89\xc4\xb9\xd2\x08\x85\xdf\xc7\x8b\x27\x5b\x47\x66\x7e\x97\x50\x07\x3f\xd9\xa9\x41\x4b\xab\x17\x2f\xe3\x1d\xd3\x6b\x12\xfd\xd7\x0f\x6a\x6a\x91\x5b\x06\xb3\xf4\x99\xea\xdf\x43\x83\x0b\xfe\x7b\x45\x70\xd4\xc7\xdb\x2b\xf9\xe6\xf8\x12\xed\xe3\x64\x5d\x5c\x73\xd1\xa9\x46\xdc\xf8\x93\x60\xee\x82\x28\xe9\xf0\xd5\x23\x11\x0f\xcb\x42\x98\xec\x3e\x2f\x76\xe2\x49\x04\xff\x6b\x04\x36\xec\xf3\xe2\x72\xe9\x53\x97\x0e\x8e\x0e\xfb\xd4\xa3\xed\x24\xe2\x40\x12\xd4\xed\x9c\x33\xda\x45\x8c\x7e\x97\x11\x7c\xb1\x3e\x13\x58\xef\x24\x22\x04\x1a\xce\x88\xfb\xd4\x25\x72\x12\x31\xc9\xaa\xa6\x80\xc5\x4e\x02\xa3\xb4\x44\xb3\x55\x4b\x3c\x2b\xce\xb8\x71\xd4\x79\xb2\x6f\xc3\x29\x9f\xa9\xa7\x69\xe3\xce\x50\xb3\xaf\x3d\x09\x0c\x65\x79\x12\x41\xfa\x11\xba\xb8\xcf\x3e\x35\x5a\x4c\xb7\xc7\x6d\xf8\x56\xf9\x70\x2a\x5b\x79\x27\x75\x53\x31\x1d\x2a\xa6\xa2\x4a\x22\x03\x11\x12\x8d\x60\x04\x55\xf0\x6d\x38\x86\x75\x8d\x39\x96\x74\xed\x24\xd2\xa9\x26\x5e\x0e\x1d\x9b\x58\x12\xe1\x95\x1c\xcf\x8c\x1d\x4b\x58\x12\x23\x8a\xd3\xaa\x98\x62\x27\x11\xb5\xf4\x22\xf0\x30\x78\x05\x38\xce\xd0\x94\xf4\xf8\x24\xde\x54\xce\x48\xd7\x54\xa3\x41\xe3\xd4\x3e\x99\x5f\xdd\x95\x27\x11\xfe\xac\x71\x02\x78\xb2\xc5\xf0\x38\x0c\xa3\xa9\x1a\x6f\x0f\x9c\x9b\x4a\xe5\xa3\xcf\xb5\xd5\x9b\x60\xcf\x56\x5c\x8c\xf6\x29\x19\xf4\x49\x84\xaf\x6f\x9d\x68\xf8\x66\x24\x0e\xd9\x17\xea\xb2\x27\xb7\x55\x7b\xf0\xc9\x2a\x04\x49\x9f\xef\xa1\x4d\xf0\x26\xb4\x25\xb1\x22\xfb\xd4\xf3\xf4\x24\x3a\xb5\x77\xc1\xb5\xda\x6f\xce\x02\x51\xe1\xbb\xf9\x67\x27\x11\x11\x85\x2e\xad\xd3\xc7\x73\xf6\xc1\x91\x2f\xaf\xa3\x6e\x82\xad\x43\xb0\xd5\x01\x76\x9c\x8f\x8e\xda\xc4\x50\x7b\x10\xe0\xac\x13\xcb\x9e\x44\x20\x65\xe2\x1e\xf7\x25\x7d\x95\x93\x88\x30\x24\x78\x67\xef\x2b\x1b\x2e\xad\x54\x7c\xf0\xf4\x95\xb5\x3f\x56\xc6\x0c\x05\xd6\x74\x5f\x12\x31\x74\x45\x47\x9e\x08\x3c\xfb\x92\x7e\x57\x57\xac\xde\x82\x87\x9e\xbe\x9a\xeb\x09\x0f\xd9\x95\xa8\xae\x1d\xab\x48\x12\x6f\x0c\x2a\x63\x43\xad\x21\x3c\x47\x6c\xcf\x8a\x98\xb2\xe3\x8d\x8b\x44\x2c\xe1\x1d\xcc\xc5\xbe\xbc\x2d\xf1\x8e\x54\x91\x52\x76\xe2\x17\x92\xa0\x33\x6c\x6e\x42\xf6\x91\x88\xce\xb0\x11\xd6\x76\x2d\x9b\x5a\x2a\x43\x32\xce\x25\x98\x5b\x25\x6e\x55\x5f\x12\x99\x9e\x04\x33\x3f\xe8\xcb\x5b\xc8\x66\x85\x15\x69\x9d\x9a\xe0\x8f\x50\x31\xd1\x91\x52\x0a\xcd\xd2\x4f\x5f\x8f\x87\xf4\x68\x48\xa0\x6e\xa2\xe1\x90\x58\xc0\x63\x9f\x6d\xa9\xf2\x75\xc2\x8e\xa4\x74\x53\x3f\x71\x3d\x48\x84\x13\x4a\x5e\xdb\x9d\x48\x1c\x24\x62\x3f\xe1\xe8\xa7\x6f\x69\x0b\x9d\x04\x16\x91\x20\xb9\x9d\x75\xad\xee\x8c\xc6\x3e\x41\xbc\x3a\x31\x1d\x48\x08\x4e\xfd\x46\xa2\x5b\x48\x94\x78\x2f\x7d\xb7\xa1\x76\x1b\x7e\x0a\x34\x0f\x78\x2b\x27\x11\x6e\xe9\xd1\x34\x39\xd9\xb7\xe1\xe1\x65\x9e\x98\x46\x7d\x77\x1e\x65\x27\x11\xd4\x02\x2f\xca\xbe\xa7\xd6\x70\x87\xab\xad\x16\x06\x6a\x9f\xbe\x45\x9f\x77\xdc\x3a\xdf\x03\x75\xc4\x8e\x5b\x67\x12\xf3\x14\x2f\x02\x8b\x46\xd9\xeb\x20\x87\x76\x6b\x72\x96\x27\x2d\xde\x5e\x8d\x60\x5a\x7d\x8b\xc8\xef\xc8\x54\x53\x42\x1e\xd3\x91\x95\x92\xf8\x44\x71\x81\x79\x43\x9c\xc4\x7d\xc0\x9a\xc9\xb7\x57\x0a\xf7\x89\x45\x18\x64\x1b\x53\xec\xc0\x14\x4d\x1b\x61\xeb\x01\x77\x12\x98\xbf\x0e\xc3\x87\xe1\x31\x22\xed\x8f\xb7\xd7\xe3\xad\xf5\x98\x0c\xe9\xd1\x9d\x89\x87\xc7\x46\x5c\xf6\x6e\x3e\x56\x17\x1f\xab\x5e\x5a\x8e\xc7\xd5\xe0\x8a\x60\xc2\x87\x18\x56\x7e\x19\x28\xbf\x34\x62\xdd\x9d\xdc\x23\x70\x50\x0e\x09\x9d\x8e\x31\x32\x42\x9a\x93\x08\xc7\xa3\x78\x25\x1d\xa3\x82\x73\x4f\xe2\xf4\x06\x69\xf2\xc9\x75\x83\x83\x4b\x8b\x3f\xd1\x31\x3a\x13\x7f\x12\xf1\xde\xe8\xf7\xdf\x60\x64\x9d\xd2\xea\x55\xdc\xb4\x0d\xa7\x8a\xc3\x8a\x29\x27\x11\x64\x02\xa2\x8e\x61\xc5\x94\x93\x08\x7d\xf1\xb8\x96\x86\x25\x95\x03\x49\x65\x43\x6e\x3f\x70\xe4\x44\x22\x04\x9b\x5d\x43\x93\x7e\xe6\x40\x3f\xb3\x21\xbe\x91\xad\x21\x89\x71\xc0\xc1\x37\x1a\xd6\x3f\x39\x89\xc0\xc7\x84\x7b\x1c\x43\xaf\xff\x93\x08\x74\x81\x27\xcc\x31\xd6\x52\xab\xf8\xfe\xee\xc4\xab\x39\xd9\x6e\x38\xd6\xb9\x9d\xf2\xaf\x21\x38\xea\xde\xa3\x68\xac\x12\x45\x0e\x44\x91\x29\xf1\x30\x1d\xe3\xe5\x05\x0b\xac\xd7\x10\xbb\x0c\x1c\xb8\x90\x78\x28\x4e\x35\xba\x0d\x07\x14\x65\x4a\x1e\xd6\x87\xbb\xf6\x24\xc2\x1a\xb2\x04\x05\x38\xa6\xe4\xf3\x27\x91\xb0\xe6\xbd\x04\x9f\x86\x2f\xe0\x51\xff\x4c\x4b\xf0\x44\x04\x44\xc2\x90\x8c\x99\x35\xac\x99\x89\x16\x0b\x0b\xfa\x64\x3f\x86\x3f\xd8\x02\xd3\x6e\x81\x69\x72\x12\x99\xf2\x1d\xb8\x86\x3b\x4b\x0c\x17\x97\xa9\x63\x16\x28\x8e\x93\xc0\xa4\x38\x53\x8d\xb8\xff\x63\xc2\xfd\x4f\xb8\x0a\x3c\xd9\xdb\x70\x86\x55\xe8\x4e\xe3\x14\x9d\x04\xd3\x16\x64\xfc\x40\x64\x49\x02\xeb\xe2\x4a\xbb\xd2\x11\x39\x89\x8a\x5d\xf2\x25\xf8\xdb\x70\xa6\x99\xad\x39\xa7\xeb\x99\xc4\xcd\x2f\x2a\x3f\xb9\xcd\x07\xf4\x5a\x52\x4c\xf0\x61\x5e\xd3\x80\x32\x6b\x28\x2b\x0f\x38\x4c\x24\xb0\x7e\x8e\xab\x6c\x98\xc0\x1a\x22\xb0\xea\x35\xba\xe0\xd3\xf0\x15\xd5\x08\xbc\xd5\xfb\xc5\x55\x86\x52\xd3\x98\xaf\xad\xea\x5f\x44\xc3\x42\xc6\x37\xe0\x48\x91\xc0\xea\x18\x64\x32\x3f\x5c\x11\x27\xd1\x28\x2f\xb8\x17\xeb\x83\x7f\xa1\x70\x6c\x73\xb2\x4b\xf5\xe3\x55\xa8\x7a\xd6\x1e\x21\x99\xf9\x10\x87\xbf\x25\xea\x79\xb8\xfa\x4e\x22\x54\x03\x99\xfc\x75\x73\x45\x9c\x04\x93\xc9\xd1\x82\xb3\x45\x22\x18\x74\x9d\x23\x84\x13\x29\x12\x61\x23\x81\x43\xeb\xb1\xb2\xba\xbf\xf2\x59\xcd\x56\x83\x92\x3a\xb9\x6d\x70\xbc\x2a\xd0\x7e\x1e\x2b\x6b\x0d\x57\x58\x90\x34\xb4\x91\x86\x19\x5f\x43\x8c\xaf\x8a\x2b\xe8\x81\x37\x34\x12\x0f\xbd\xa1\x9a\xc2\x7b\xe0\x24\x98\x34\xb6\xda\x2a\xae\x1e\x3b\x9f\xca\x23\x67\xac\x22\x34\xb5\x22\xae\x51\x6b\xea\x7c\x9b\xea\x65\x23\x86\x12\x12\xa5\x81\xb7\x5b\x12\xef\x70\xf6\x47\x6f\xbc\x61\x09\x19\x9f\x12\xc2\x9a\xb1\xa4\xe8\x3e\xf0\xcb\x7a\xe0\xcc\xb1\xd4\xd1\x4f\x22\xa8\xe4\x9a\x0c\x5f\x86\x07\x3a\xaa\x99\x59\x58\x5a\xc2\x15\xd1\x0c\x1a\xbe\x08\x07\xde\xdb\x48\xd0\x6c\xa1\x9a\xb7\xa7\x1e\xcf\x63\x95\x6b\x7e\x10\xd1\x93\x44\xfe\xf5\xd3\x3a\x1b\x70\x19\x4b\x2d\x61\xa9\x06\x6a\x5f\x1f\x61\x23\xc2\x7b\xb6\x30\x18\xff\x0c\x82\x8d\x91\x08\x92\xbd\x76\xc1\x21\x51\x06\x51\xc2\x0e\x3c\xaa\xd9\x09\x5a\xe4\x24\x18\x6c\x70\xb7\x4f\xf6\x6d\x78\x78\x16\x0f\x96\xec\xd8\x58\x22\x45\x22\x3a\xc9\x9d\xb8\xb3\xa6\x66\x67\x7c\x3b\x76\xc0\x45\x33\xbf\x43\x34\xdd\xc2\x63\xd3\x67\xec\xae\x65\x25\xe0\x49\xeb\x93\x26\x3b\x2f\xe3\x41\xf8\x92\x7b\xc2\xfe\x1c\x56\x4a\x1b\x5b\xeb\x87\x54\xe4\x64\x87\xe1\x33\x5c\x40\x0a\xac\x7b\x98\x00\x1f\x6d\x04\xcb\x7b\xec\x21\xf4\xb7\x71\x95\x31\x34\xbf\x08\x31\x49\x0c\x6a\x8f\xbd\x6a\x15\xb6\x21\x15\xb6\x39\xd8\x4d\x7b\xba\xfa\x09\x7d\x85\x50\x6d\x6c\x19\x2b\x9c\x44\x06\x4e\xef\xb7\x96\x1b\xcb\xe1\x94\xc2\x59\xd8\x67\x6c\x71\x33\x07\xde\xfb\x53\x42\x36\x3c\x70\x95\x49\xe2\x06\xce\xb0\x44\x91\x0d\x28\xb2\x94\x50\x99\x1d\xfb\xed\xfe\xbc\xd5\x9f\x4a\xbb\xef\xe5\xf2\x67\x23\xb4\xa1\x75\xfd\xb8\x7a\x7c\x79\x4f\x98\xa8\x63\x7f\xbc\x3f\x3e\x44\x15\x0c\x8f\x3a\x9f\xb1\x45\xe2\x0f\x3c\xaa\x35\x85\x44\x19\x17\x84\xdd\x49\xc4\x9d\x87\x6c\x65\x5a\xbf\xf8\x24\x18\x2d\xfe\xc9\xc7\xcd\x68\x27\x3a\x6f\x6d\x12\xfc\x62\x64\x96\xf6\x24\xb8\x4b\xf0\xcd\x3e\x84\x6f\x4e\x22\xd0\x1c\x5e\x3c\x27\x3a\xbd\x24\xe2\xea\xec\x33\xfd\x99\xc6\x9a\x38\x05\x22\x41\x8c\x77\x3c\xcd\x9b\x9b\x37\xe1\xe6\xdd\x03\x46\xf9\x44\x18\x48\xa2\x10\x4f\x8d\xe6\x1b\x0f\xd6\x09\xbf\xef\xae\x8a\x0a\x6a\x69\xe1\x44\x5a\xd8\x14\x35\x78\xe8\x19\x31\xe5\x39\x6d\xc0\xf8\x9e\x56\x37\x9b\xa8\x9b\x9d\xea\x3b\xf0\xa5\xd9\xe8\xb8\x9b\x26\xf6\xc3\xe8\xdc\x64\x27\x11\x73\xad\x58\xb8\x88\x1a\x49\x7c\xa2\x78\x02\xcc\x4a\x9e\x44\x0b\xdf\xac\x74\x66\x78\xaa\x75\x8a\x70\x2a\x3b\xc7\x98\x9a\x9b\xc1\xbe\x42\x84\x73\xb2\xcd\x70\xe6\xe6\x5b\xfe\x65\x78\x5c\x94\x9d\x58\x01\x63\xb8\xf3\x83\x10\x9b\x88\x7c\x4e\x56\x4b\x16\x2a\xa2\x07\xce\x0e\x1a\xee\xe6\xd8\x2a\xcf\xe4\x4c\xd7\x3f\x55\x3f\x61\x2c\xcc\xeb\x9c\x38\xb2\x39\x70\xfa\x29\x9a\x75\x42\xb3\x8e\x56\x0d\x76\x35\x1b\x77\x0e\xc4\x77\xb1\x0e\xf4\x49\x30\x0d\x04\x24\x18\x7a\x86\x9f\x44\x5c\xa0\x93\xf8\x08\x63\x0f\xc1\x23\x82\xca\x5d\x15\xd1\x68\x6c\x77\x73\xab\x9b\x38\xc1\x1f\x6f\xd7\x0f\xbd\xd0\x79\x21\xcd\xf1\xf1\x16\xf9\x40\x43\x73\x41\xcf\x21\xba\x60\x62\xfa\xd3\x15\x95\x79\x7c\xb6\xaa\xf9\x68\x76\x08\xec\x65\xed\xb9\x89\xf6\xdc\x81\x33\xac\xc7\xab\x15\x9a\xc0\x5d\x21\x67\xe7\x05\x16\x3f\x89\x78\x93\x4c\x26\x6d\xca\x6c\xe0\x24\x58\x5c\xe2\x1c\xcc\xc6\x23\xf1\x24\x98\x35\x62\x30\x4c\x19\x9c\x9d\xc4\x3c\xd5\x13\xcc\x67\xb6\xf9\x36\x38\x70\x0f\xfc\xa7\x39\x3b\x14\xf4\x49\x04\x92\x51\x94\xf7\x29\x43\xb4\x93\x68\x94\x1f\x82\x7f\x0c\x7f\xc2\x20\x90\xde\x0c\x21\x93\x89\x03\xc8\x01\x7f\x68\x9a\x1f\x38\xcd\x0f\x1c\xc4\x14\x98\xd3\xa3\x9a\xb0\xb7\x10\xc9\xcc\x29\x05\xf7\x89\xb3\x82\x7e\x73\x0c\xcd\x82\x3b\x89\x19\x6e\x7e\x29\x2d\x7b\x8f\x93\xa0\xf3\xac\xa0\x95\xcf\x26\xca\x67\xfd\xd6\x54\x4a\xe9\xf8\x24\xe2\xfe\xe0\x9e\x98\xf3\x23\x8c\x37\x43\xc7\xc8\x28\x67\x7e\xdc\x17\x79\xc1\x9a\x5a\xa9\x8f\xc7\x4a\x48\x6b\xb4\x64\xe7\x14\x5a\x3e\x89\x40\xcb\x30\x70\xe6\xf4\x3e\x98\xda\x07\xa3\x09\xee\xde\x3c\xea\x8d\x62\x61\x4b\x17\x79\xca\xfc\x7d\x4c\x85\x37\xbe\xb5\x41\x56\x44\x60\xbd\x21\x27\xe7\x12\xa3\xe6\x24\xc2\x9c\x37\xb1\xfd\x30\x7c\x27\x11\x0c\x1c\xc5\xdd\xb4\xe4\x75\x22\x79\xed\x37\x51\xf2\x56\xd2\xa1\x5a\x09\xbf\x76\x68\xce\x4f\xd3\x8d\x53\x74\xe3\x98\x0a\x04\x5e\xb4\x80\xab\xb0\x2d\x1d\xf5\xbd\x40\xdd\x9e\x04\xf5\x28\x2c\x7b\xd1\xfe\x5b\x25\x94\xe4\x1d\xc3\xbc\x78\xb0\x45\x71\xe6\x15\x9a\xbf\x6c\x57\xa3\xee\x28\x46\xb6\xd8\x43\x27\x41\x35\xf4\xb2\x6a\x17\xaf\x88\xfc\xe8\x30\x81\xab\x41\xe1\x9f\xc4\x08\x70\x07\x2c\x6c\xbc\xe2\x6e\x70\x30\x2c\xf3\x14\x27\x3c\xc5\xd3\x17\xda\x14\x0d\x34\x89\xc9\x90\xd2\x54\x40\x7e\x23\x75\x84\xc1\x3d\x29\x94\xb4\x68\xa3\x93\x88\xbe\x28\xc8\xba\xb4\x0a\x4e\x82\xd0\x90\x8a\x00\xdf\x3d\x22\xa2\xb4\xa5\xa9\x30\xe2\xc3\xb5\x0f\xc5\x43\x52\xb8\xfb\xa5\x6d\xb6\x96\x62\x0a\x2b\x7e\xf9\x72\x3d\x21\xf3\x4d\x97\xe2\xea\x9a\xb6\x3d\x89\xb3\x5b\x93\xc2\x61\x6f\x5e\xe0\x27\xf1\x04\x98\xda\xb7\x77\x4d\x38\x8b\xeb\x28\x85\xce\xb5\xbd\x4c\x21\xff\x4d\x49\x31\x89\x96\xe4\x4a\x13\xfb\xb0\x94\x10\x9a\x9d\xec\xdb\x70\x75\x46\xe5\x5d\xfd\x8b\xea\x09\x5e\xb7\xa4\xb0\x7c\x12\x2b\xc0\xaa\x45\xb8\x06\x96\x68\xc7\x00\x77\x2e\x69\xa2\x9e\x04\x1e\x2c\x14\xd9\xfc\xe5\xf5\x7b\x29\x22\x2a\x81\x5c\xd6\xdb\x9d\x09\xa6\x42\xcf\x84\x7f\x5b\x6f\xef\x60\x71\xd8\xe1\xcf\xce\xf5\x5e\x3a\x09\x6f\x07\xc2\x57\x35\x5e\x10\x62\xd5\x24\x8c\xa9\xe6\x92\x85\xdd\x49\xe0\x2b\x46\x91\xdf\x3f\xae\x3f\xde\x99\x38\xb1\x8e\x9c\xce\x1f\xe1\x5b\x50\xdf\x9d\xeb\xf1\x0e\xc6\x46\x2d\x7f\x43\x6d\x83\xf8\xb6\xfd\xce\x14\xc7\x64\x66\xac\xfb\x96\xd7\x9b\xfa\xff\xa1\xae\x5a\xff\xef\xc4\xd5\x36\x69\xb7\x6f\x79\xa0\xb9\x1d\xe7\xd8\xb5\x2d\x3c\xe4\x28\xbc\x8f\x34\xb4\x4f\x02\xbf\x38\x0e\xba\xab\x73\xb5\x8b\x82\x36\x7f\xc3\xe6\xbe\x0d\x57\x48\x7c\x87\xa8\xcd\x82\x43\x6a\x4e\x45\x0b\x95\xad\xf7\x49\x00\x9f\x8e\xdf\xfa\x36\x3c\x56\xcc\xb1\x50\x35\xd3\xbb\x6a\xa6\x15\xf9\x54\x92\xb1\x93\x50\xe0\x52\x87\x05\xed\x86\x13\xeb\xeb\x1b\x7b\x92\x5d\xbb\xbb\x83\x8c\xd2\x9d\x01\x83\xf5\x24\x12\x31\xfc\xaa\xe0\xcb\xf0\x1d\xc1\xfc\x14\x39\x6e\xa8\xd9\x25\x87\x9a\xd9\x11\x00\xb7\xe1\x11\xcb\xe7\x1b\x09\xf0\x63\x30\xb1\x83\x14\xd6\x69\x1b\x1e\x46\x5c\xbd\x38\x96\x99\xa8\x0d\xe4\xea\x29\x3b\x66\xef\xf6\x24\x6c\x82\x17\x15\xc7\x2f\xdb\x06\x47\xc4\x36\x07\xf3\x1a\x9a\x82\x17\x71\x08\x15\xdb\xe8\x25\x94\x86\x76\x64\xba\x1c\xf3\xe8\x25\xdc\x85\xb7\xa9\xd3\xa8\xa3\x54\x69\xa1\xe2\x21\x9c\xb2\x23\xac\x89\xc7\x3c\xf7\x9b\xd0\x5f\x0a\x87\xf9\x5e\xcd\x60\x02\x2c\x39\x0e\x92\x6a\xff\x68\x7e\x15\x7f\x4a\x46\x3c\x27\x81\x1f\x24\x85\x1a\x91\x70\xc9\x4e\x5c\x6a\x71\x08\x1e\xd6\xfb\x24\x08\xa8\xe3\x90\x31\x03\x70\xac\xd7\xa8\x8a\x06\x32\x5c\x4b\x3c\x2b\x07\x7a\xc6\x27\xb7\x0c\xde\x07\xfc\x8d\xa5\xb1\x01\x4f\xc5\xe3\x21\xda\xc0\x92\x1a\xfd\x49\x84\x25\x5d\x12\x34\x1b\x1a\xce\x0a\x88\x1a\xb2\xa5\x11\xf6\xb0\x91\x3a\x0a\x15\x0f\x7e\xc2\x48\x0c\xcc\x2e\x55\x7c\xbb\x78\xdc\x18\x43\xe1\x20\x44\x76\x3f\x68\xf1\x4a\x0b\xe5\xf1\x2b\xf8\xe1\x15\xdc\xa7\x02\x20\x88\xd2\x3a\x89\x15\xe0\x5b\xe0\x6d\xf0\xd9\x8c\xf3\x76\xe9\xb7\xc1\x9f\x28\x3d\x15\x06\x43\x3d\x09\x1d\xef\xae\x48\x4c\x7b\x8e\x6a\xf0\xb9\x73\x52\xcb\x2e\xde\x0d\xa7\x2b\x8e\x56\xc1\x42\x10\x19\xaf\x75\x45\x8c\xe0\x74\x3d\x44\xa3\xeb\xc3\xb1\x27\x96\xa1\xc1\xde\x56\x40\x89\xa5\x7e\xbc\x34\x18\x05\x93\x10\x34\x54\xc7\xc7\xed\xa8\x12\x8f\xa0\x21\x11\x95\x10\xef\xd9\x6f\xd7\x11\x8a\xe4\x8a\x39\xb3\x45\xdc\x3f\x3b\xf0\xb0\x83\x88\x3c\xda\x23\xfb\x89\x7d\x7c\x7f\x23\x47\x44\x9f\x49\x62\x45\x7a\x5d\xc5\xdf\xf6\xef\x6f\x72\xce\x71\x39\xc2\x04\xc6\xea\x4a\xc6\xef\xe4\x95\xed\x00\x7e\xd7\x89\x93\xa6\xab\xe5\xef\xef\x7e\xd7\x59\xb1\x84\xfc\xdd\x97\xf6\xbb\xce\x88\xb2\x7c\xdf\x5d\xce\x82\xd2\xc2\xee\x91\x24\xa8\xbd\xc9\x63\x59\xdb\xb0\x27\x95\xec\xb0\x87\xed\x0c\xb0\xc7\x4a\x29\x39\xf1\x1c\xf8\xf5\xe9\x17\x24\x98\x92\x38\xa7\xcb\xe5\xbf\x5e\x32\x27\xf3\x3f\xd7\x3f\xff\xf1\xbf\xff\x1f\xeb\x9f\xff\xe7\xfa\x9f\x9f\x9f\xd7\x7f\xfe\xeb\x5f\x9f\x7f\xfb\x8f\xf7\xff\x78\xfd\xc7\xcf\xff\x76\xa0\x3f\xef\xcf\xf3\x3f\xfe\xed\xf3\xaf\xcf\xff\xfd\xef\xff\xf9\xaf\xd7\xe7\xe7\x9f\xff\xfe\xcf\xf3\xab\xf8\xfb\x7f\x02\x00\x00\xff\xff\xbb\x47\xae\x74\x89\x44\x03\x00"); +var _fag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x41\x6b\xdb\x4c\x10\x86\xef\xfb\x2b\xe6\x98\xef\x90\xcf\x33\xab\xdd\xd5\x1a\x44\xa0\xc4\x04\x5c\x48\x53\x9a\xa6\x2d\x94\x1e\x64\xed\xca\x08\xea\x95\x90\xe5\x43\xfe\x7d\x99\x19\xd9\x85\x1e\x8c\xec\x47\x33\x2f\xd6\x33\x3b\xda\x3c\xee\x77\xfb\x32\x2c\xb0\xf9\x3c\x8f\xdd\x6b\x5e\xa0\x1f\x4a\x9a\xf3\x79\xbc\xcc\x5d\x86\x43\x3e\x0e\xc5\x18\xb2\x90\x86\x6e\xb9\xfe\x94\x4b\x77\x6a\x27\x63\xb8\xff\xf5\xfd\xbc\xe4\xd3\xbe\xf4\x23\x54\x5a\x97\x2e\xd3\x5a\x0b\xb0\xf9\x92\x8f\xc3\x79\x99\xdf\xe1\xee\x43\x1a\x0f\xf9\x3f\x48\xb9\x67\xfe\x32\xa7\x3c\x0f\xe5\x08\x77\x1f\xdb\xa9\x2d\x74\xbb\xf1\x7a\x99\xa6\xdf\xf9\x94\xcb\x02\x56\x58\x2e\x49\xae\x66\xf3\xf8\xdc\x4e\x9f\xda\x53\x86\x8d\x64\xdd\x6b\xe7\xbd\x96\xc9\xdd\x6f\x79\x3e\x0f\x63\x01\xa2\xff\x11\xc3\x5f\xfe\xf5\x7d\xca\x40\x6b\xcc\xdb\x7e\xf7\xd2\xf7\xe7\xbc\x00\x61\xf0\x5a\xf4\xe3\x6d\xbf\x83\x9f\x04\x84\x60\xbd\xaf\xe8\xd7\x5a\xfb\xfd\x79\x4c\x19\xf0\xfa\x07\xf6\xbb\xc7\xf1\x52\x16\x88\xb5\x5d\x19\xe9\xa3\x76\x63\xca\xe7\xa9\xed\xf2\xdc\x96\x63\x36\x00\x0d\x22\xe2\x03\x34\xd6\x3e\x3d\x3d\xf0\x33\xfc\x53\x61\x2a\xbf\x76\x0e\x49\xc9\xb5\x03\xb1\xef\x1f\x00\x00\xd0\x34\x48\x8a\x48\x90\xf5\xc1\x34\x68\x15\x59\x41\x9e\xac\x69\xb0\x52\x54\x09\xaa\x43\x34\x0d\x3a\x45\x8e\x11\xa1\x75\xa6\x41\xaf\xc8\x0b\xb2\x91\xe3\x83\xa2\x20\xc8\x57\x1c\x5f\x2b\xaa\x05\xd5\x5b\x8e\x8f\x8a\x22\x23\x8b\x8e\xe3\xb7\x8a\xb6\x82\x2a\xe4\xf8\x56\x51\x2b\xc8\x07\x8e\x3f\x28\x3a\x08\x8a\xc4\xf1\x9d\xa2\x8e\x51\x85\x35\xc7\x27\x45\x49\x50\x65\x39\x3e\x2b\xca\x82\x7c\xe4\xf8\x5e\x51\x2f\x28\x3a\x34\x0d\xa9\x2f\x12\x5f\x0e\xb7\xc1\x34\xa4\xbe\x48\x7c\xb9\xca\x5b\xd3\x90\xfa\x22\xf1\xe5\x02\x46\xd3\x90\xfa\x22\xf1\xe5\x62\x70\xa6\x21\xf5\x45\xe2\xcb\x93\xe5\x78\xf5\x45\xe2\xcb\x57\x35\xc7\xab\x2f\x12\x5f\x3e\x54\x1c\xaf\xbe\x48\x7c\xf9\x18\x39\x5e\x7d\x91\xf8\x0a\xe4\x38\x5e\x7d\x91\xf8\x0a\x0e\x39\x5e\x7d\x91\xf8\x0a\x81\x47\x4b\xea\x8b\xc4\x57\xd8\xf2\x68\x49\x7d\x91\xf8\xaa\x89\x47\x4b\xea\x8b\xc4\x57\xed\x78\xb4\xa4\xbe\x48\x7c\xd5\x81\x47\x4b\xea\x8b\xc4\x57\xbd\xe5\xd1\xda\xf5\x44\x8a\xaf\x48\x3c\x5a\xab\xbe\xac\xf8\x8a\x8e\x47\x6b\xed\x7a\x6e\x91\x51\x8d\x4e\x0e\xef\xf5\x90\xf2\x77\x5e\xfd\xdb\x2a\x76\x97\x79\xce\x65\x91\xc5\x97\x55\xe3\xb5\x18\x4a\xbe\xbd\x44\xa6\x71\xe2\x2e\xf9\xfc\x09\x00\x00\xff\xff\xdb\x85\x89\xdc\x70\x04\x00\x00"); +func _gedg ()(*asset ,error ){_ecab ,_efcd :=_bdd ();if _efcd !=nil {return nil ,_efcd ;};_dge :=bindataFileInfo {_ee :"Adobe-Japan1-6",_ffd :2225,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491338,0)};_cgeg :=&asset {_da :_ecab ,_dc :_dge };return _cgeg ,nil ; +};func _gfef ()([]byte ,error ){return _gb (_dcgd ,"GBKp-EUC-V")};func _gggg ()([]byte ,error ){return _gb (_afdf ,"Adobe-KR-0")};func _bfa ()([]byte ,error ){return _gb (_afgf ,"GBK2K-H")};func _ccgf ()(*asset ,error ){_gbc ,_adfe :=_bcb ();if _adfe !=nil {return nil ,_adfe ; +};_abdf :=bindataFileInfo {_ee :"Adobe-Japan1-UCS2",_ffd :281822,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490574,0)};_cgg :=&asset {_da :_gbc ,_dc :_abdf };return _cgg ,nil ;};func _edaa ()(*asset ,error ){_cfca ,_dfd :=_cce ();if _dfd !=nil {return nil ,_dfd ; +};_eab :=bindataFileInfo {_ee :"Add-RKSJ-V",_ffd :1493,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491099,0)};_gfg :=&asset {_da :_cfca ,_dc :_eab };return _gfg ,nil ;};func _defg ()(*asset ,error ){_abgc ,_dbac :=_daga ();if _dbac !=nil {return nil ,_dbac ; +};_cgge :=bindataFileInfo {_ee :"ETen-B5-H",_ffd :5459,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491749,0)};_cgeb :=&asset {_da :_abgc ,_dc :_cgge };return _cgeb ,nil ;};func _gdc ()([]byte ,error ){return _gb (_bf ,"90msp-RKSJ-V")};func _bccc ()(*asset ,error ){_ccdb ,_acee :=_eegf (); +if _acee !=nil {return nil ,_acee ;};_abec :=bindataFileInfo {_ee :"GBTpc-EUC-H",_ffd :44556,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492236,0)};_cabe :=&asset {_da :_ccdb ,_dc :_abec };return _cabe ,nil ;};func _fbfb ()([]byte ,error ){return _gb (_cec ,"UniGB-UTF8-V")}; +func _geba ()([]byte ,error ){return _gb (_gbff ,"GB-V")};func _fagc ()([]byte ,error ){return _gb (_bbac ,"Hiragana")};func _ef ()([]byte ,error ){return _gb (_cb ,"78-RKSJ-V")};func _beac ()(*asset ,error ){_cdef ,_afeac :=_bea ();if _afeac !=nil {return nil ,_afeac ; +};_eaca :=bindataFileInfo {_ee :"GBpc-EUC-H",_ffd :2211,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492172,0)};_aaed :=&asset {_da :_cdef ,_dc :_eaca };return _aaed ,nil ;};func _cfbbdg ()([]byte ,error ){return _gb (_fbd ,"Adobe-KR-6")};func _ecfd ()([]byte ,error ){return _gb (_cebb ,"UniGB-UTF32-H")}; +func _cbfe ()(*asset ,error ){_fbdf ,_eaea :=_faf ();if _eaea !=nil {return nil ,_eaea ;};_dbacd :=bindataFileInfo {_ee :"GBK-EUC-H",_ffd :80859,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492080,0)};_cffd :=&asset {_da :_fbdf ,_dc :_dbacd };return _cffd ,nil ; +};func _dfede ()([]byte ,error ){return _gb (_agf ,"UniCNS-UCS2-V")};var _agcb =&bintree {nil ,map[string ]*bintree {"78-EUC-H":&bintree {_df ,map[string ]*bintree {}},"78-EUC-V":&bintree {_dfe ,map[string ]*bintree {}},"78-H":&bintree {_ecf ,map[string ]*bintree {}},"78-RKSJ-H":&bintree {_eec ,map[string ]*bintree {}},"78-RKSJ-V":&bintree {_dfeg ,map[string ]*bintree {}},"78-V":&bintree {_ac ,map[string ]*bintree {}},"78ms-RKSJ-H":&bintree {_acd ,map[string ]*bintree {}},"78ms-RKSJ-V":&bintree {_cbb ,map[string ]*bintree {}},"83pv-RKSJ-H":&bintree {_cca ,map[string ]*bintree {}},"90ms-RKSJ-H":&bintree {_cda ,map[string ]*bintree {}},"90ms-RKSJ-V":&bintree {_ded ,map[string ]*bintree {}},"90msp-RKSJ-H":&bintree {_dgc ,map[string ]*bintree {}},"90msp-RKSJ-V":&bintree {_afd ,map[string ]*bintree {}},"90pv-RKSJ-H":&bintree {_cfbb ,map[string ]*bintree {}},"90pv-RKSJ-V":&bintree {_bad ,map[string ]*bintree {}},"Add-H":&bintree {_ebf ,map[string ]*bintree {}},"Add-RKSJ-H":&bintree {_ebc ,map[string ]*bintree {}},"Add-RKSJ-V":&bintree {_edaa ,map[string ]*bintree {}},"Add-V":&bintree {_gage ,map[string ]*bintree {}},"Adobe-CNS1-0":&bintree {_fd ,map[string ]*bintree {}},"Adobe-CNS1-1":&bintree {_ecfg ,map[string ]*bintree {}},"Adobe-CNS1-2":&bintree {_fa ,map[string ]*bintree {}},"Adobe-CNS1-3":&bintree {_ged ,map[string ]*bintree {}},"Adobe-CNS1-4":&bintree {_fgc ,map[string ]*bintree {}},"Adobe-CNS1-5":&bintree {_gacf ,map[string ]*bintree {}},"Adobe-CNS1-6":&bintree {_gcg ,map[string ]*bintree {}},"Adobe-CNS1-7":&bintree {_cea ,map[string ]*bintree {}},"Adobe-CNS1-UCS2":&bintree {_cag ,map[string ]*bintree {}},"Adobe-GB1-0":&bintree {_fff ,map[string ]*bintree {}},"Adobe-GB1-1":&bintree {_fca ,map[string ]*bintree {}},"Adobe-GB1-2":&bintree {_cfbd ,map[string ]*bintree {}},"Adobe-GB1-3":&bintree {_bcd ,map[string ]*bintree {}},"Adobe-GB1-4":&bintree {_ggcc ,map[string ]*bintree {}},"Adobe-GB1-5":&bintree {_eada ,map[string ]*bintree {}},"Adobe-GB1-UCS2":&bintree {_geg ,map[string ]*bintree {}},"Adobe-Japan1-0":&bintree {_bfc ,map[string ]*bintree {}},"Adobe-Japan1-1":&bintree {_gdg ,map[string ]*bintree {}},"Adobe-Japan1-2":&bintree {_bbbg ,map[string ]*bintree {}},"Adobe-Japan1-3":&bintree {_dab ,map[string ]*bintree {}},"Adobe-Japan1-4":&bintree {_fac ,map[string ]*bintree {}},"Adobe-Japan1-5":&bintree {_feg ,map[string ]*bintree {}},"Adobe-Japan1-6":&bintree {_gedg ,map[string ]*bintree {}},"Adobe-Japan1-7":&bintree {_baf ,map[string ]*bintree {}},"Adobe-Japan1-UCS2":&bintree {_ccgf ,map[string ]*bintree {}},"Adobe-KR-0":&bintree {_fda ,map[string ]*bintree {}},"Adobe-KR-1":&bintree {_gdf ,map[string ]*bintree {}},"Adobe-KR-2":&bintree {_deda ,map[string ]*bintree {}},"Adobe-KR-3":&bintree {_agc ,map[string ]*bintree {}},"Adobe-KR-4":&bintree {_aeb ,map[string ]*bintree {}},"Adobe-KR-5":&bintree {_gafe ,map[string ]*bintree {}},"Adobe-KR-6":&bintree {_bga ,map[string ]*bintree {}},"Adobe-KR-7":&bintree {_bgd ,map[string ]*bintree {}},"Adobe-KR-8":&bintree {_fcb ,map[string ]*bintree {}},"Adobe-KR-9":&bintree {_gfb ,map[string ]*bintree {}},"Adobe-KR-UCS2":&bintree {_bebg ,map[string ]*bintree {}},"Adobe-Korea1-0":&bintree {_ccea ,map[string ]*bintree {}},"Adobe-Korea1-1":&bintree {_agdb ,map[string ]*bintree {}},"Adobe-Korea1-2":&bintree {_ecdb ,map[string ]*bintree {}},"Adobe-Korea1-UCS2":&bintree {_cgfb ,map[string ]*bintree {}},"B5-H":&bintree {_afeg ,map[string ]*bintree {}},"B5-V":&bintree {_ddcg ,map[string ]*bintree {}},"B5pc-H":&bintree {_ebca ,map[string ]*bintree {}},"B5pc-V":&bintree {_cad ,map[string ]*bintree {}},"CNS-EUC-H":&bintree {_gfged ,map[string ]*bintree {}},"CNS-EUC-V":&bintree {_ccde ,map[string ]*bintree {}},"CNS1-H":&bintree {_egda ,map[string ]*bintree {}},"CNS1-V":&bintree {_cccg ,map[string ]*bintree {}},"CNS2-H":&bintree {_dadf ,map[string ]*bintree {}},"CNS2-V":&bintree {_cgfa ,map[string ]*bintree {}},"ETHK-B5-H":&bintree {_baba ,map[string ]*bintree {}},"ETHK-B5-V":&bintree {_affb ,map[string ]*bintree {}},"ETen-B5-H":&bintree {_defg ,map[string ]*bintree {}},"ETen-B5-V":&bintree {_bafb ,map[string ]*bintree {}},"ETenms-B5-H":&bintree {_dcad ,map[string ]*bintree {}},"ETenms-B5-V":&bintree {_gec ,map[string ]*bintree {}},"EUC-H":&bintree {_cceaa ,map[string ]*bintree {}},"EUC-V":&bintree {_bdfg ,map[string ]*bintree {}},"Ext-H":&bintree {_ffb ,map[string ]*bintree {}},"Ext-RKSJ-H":&bintree {_fedd ,map[string ]*bintree {}},"Ext-RKSJ-V":&bintree {_bed ,map[string ]*bintree {}},"Ext-V":&bintree {_fggb ,map[string ]*bintree {}},"GB-EUC-H":&bintree {_ccbg ,map[string ]*bintree {}},"GB-EUC-V":&bintree {_ebafc ,map[string ]*bintree {}},"GB-H":&bintree {_gagb ,map[string ]*bintree {}},"GB-V":&bintree {_cbce ,map[string ]*bintree {}},"GBK-EUC-H":&bintree {_cbfe ,map[string ]*bintree {}},"GBK-EUC-V":&bintree {_aae ,map[string ]*bintree {}},"GBK2K-H":&bintree {_cbd ,map[string ]*bintree {}},"GBK2K-V":&bintree {_fdc ,map[string ]*bintree {}},"GBKp-EUC-H":&bintree {_dbeda ,map[string ]*bintree {}},"GBKp-EUC-V":&bintree {_gef ,map[string ]*bintree {}},"GBT-EUC-H":&bintree {_cegg ,map[string ]*bintree {}},"GBT-EUC-V":&bintree {_ggcg ,map[string ]*bintree {}},"GBT-H":&bintree {_gbdg ,map[string ]*bintree {}},"GBT-V":&bintree {_bafd ,map[string ]*bintree {}},"GBTpc-EUC-H":&bintree {_bccc ,map[string ]*bintree {}},"GBTpc-EUC-V":&bintree {_eaebb ,map[string ]*bintree {}},"GBpc-EUC-H":&bintree {_beac ,map[string ]*bintree {}},"GBpc-EUC-V":&bintree {_gbba ,map[string ]*bintree {}},"H":&bintree {_cadd ,map[string ]*bintree {}},"HKdla-B5-H":&bintree {_ceee ,map[string ]*bintree {}},"HKdla-B5-V":&bintree {_fcg ,map[string ]*bintree {}},"HKdlb-B5-H":&bintree {_defa ,map[string ]*bintree {}},"HKdlb-B5-V":&bintree {_ddg ,map[string ]*bintree {}},"HKgccs-B5-H":&bintree {_eggc ,map[string ]*bintree {}},"HKgccs-B5-V":&bintree {_cbdf ,map[string ]*bintree {}},"HKm314-B5-H":&bintree {_gbef ,map[string ]*bintree {}},"HKm314-B5-V":&bintree {_fedb ,map[string ]*bintree {}},"HKm471-B5-H":&bintree {_fgea ,map[string ]*bintree {}},"HKm471-B5-V":&bintree {_ecgbg ,map[string ]*bintree {}},"HKscs-B5-H":&bintree {_eeaa ,map[string ]*bintree {}},"HKscs-B5-V":&bintree {_aeff ,map[string ]*bintree {}},"Hankaku":&bintree {_aegc ,map[string ]*bintree {}},"Hiragana":&bintree {_gfd ,map[string ]*bintree {}},"KSC-EUC-H":&bintree {_efcg ,map[string ]*bintree {}},"KSC-EUC-V":&bintree {_fae ,map[string ]*bintree {}},"KSC-H":&bintree {_eabga ,map[string ]*bintree {}},"KSC-Johab-H":&bintree {_dcgc ,map[string ]*bintree {}},"KSC-Johab-V":&bintree {_fgd ,map[string ]*bintree {}},"KSC-V":&bintree {_dbaa ,map[string ]*bintree {}},"KSCms-UHC-H":&bintree {_fbb ,map[string ]*bintree {}},"KSCms-UHC-HW-H":&bintree {_eagb ,map[string ]*bintree {}},"KSCms-UHC-HW-V":&bintree {_aebc ,map[string ]*bintree {}},"KSCms-UHC-V":&bintree {_aaede ,map[string ]*bintree {}},"KSCpc-EUC-H":&bintree {_fef ,map[string ]*bintree {}},"KSCpc-EUC-V":&bintree {_ecga ,map[string ]*bintree {}},"Katakana":&bintree {_babd ,map[string ]*bintree {}},"NWP-H":&bintree {_fega ,map[string ]*bintree {}},"NWP-V":&bintree {_ccba ,map[string ]*bintree {}},"RKSJ-H":&bintree {_dfaba ,map[string ]*bintree {}},"RKSJ-V":&bintree {_bccb ,map[string ]*bintree {}},"Roman":&bintree {_aeaf ,map[string ]*bintree {}},"UniAKR-UTF16-H":&bintree {_egag ,map[string ]*bintree {}},"UniAKR-UTF32-H":&bintree {_gbcf ,map[string ]*bintree {}},"UniAKR-UTF8-H":&bintree {_ddfb ,map[string ]*bintree {}},"UniCNS-UCS2-H":&bintree {_ebcdc ,map[string ]*bintree {}},"UniCNS-UCS2-V":&bintree {_dcac ,map[string ]*bintree {}},"UniCNS-UTF16-H":&bintree {_deb ,map[string ]*bintree {}},"UniCNS-UTF16-V":&bintree {_egcd ,map[string ]*bintree {}},"UniCNS-UTF32-H":&bintree {_fbff ,map[string ]*bintree {}},"UniCNS-UTF32-V":&bintree {_fbad ,map[string ]*bintree {}},"UniCNS-UTF8-H":&bintree {_edeg ,map[string ]*bintree {}},"UniCNS-UTF8-V":&bintree {_aacd ,map[string ]*bintree {}},"UniGB-UCS2-H":&bintree {_debb ,map[string ]*bintree {}},"UniGB-UCS2-V":&bintree {_dgcf ,map[string ]*bintree {}},"UniGB-UTF16-H":&bintree {_bgaa ,map[string ]*bintree {}},"UniGB-UTF16-V":&bintree {_ddad ,map[string ]*bintree {}},"UniGB-UTF32-H":&bintree {_cdec ,map[string ]*bintree {}},"UniGB-UTF32-V":&bintree {_dccc ,map[string ]*bintree {}},"UniGB-UTF8-H":&bintree {_gffc ,map[string ]*bintree {}},"UniGB-UTF8-V":&bintree {_gaea ,map[string ]*bintree {}},"UniJIS-UCS2-H":&bintree {_edgcd ,map[string ]*bintree {}},"UniJIS-UCS2-HW-H":&bintree {_bfaa ,map[string ]*bintree {}},"UniJIS-UCS2-HW-V":&bintree {_fege ,map[string ]*bintree {}},"UniJIS-UCS2-V":&bintree {_aacf ,map[string ]*bintree {}},"UniJIS-UTF16-H":&bintree {_aga ,map[string ]*bintree {}},"UniJIS-UTF16-V":&bintree {_dafe ,map[string ]*bintree {}},"UniJIS-UTF32-H":&bintree {_gede ,map[string ]*bintree {}},"UniJIS-UTF32-V":&bintree {_dgaf ,map[string ]*bintree {}},"UniJIS-UTF8-H":&bintree {_befab ,map[string ]*bintree {}},"UniJIS-UTF8-V":&bintree {_beba ,map[string ]*bintree {}},"UniJIS2004-UTF16-H":&bintree {_dddg ,map[string ]*bintree {}},"UniJIS2004-UTF16-V":&bintree {_bfeea ,map[string ]*bintree {}},"UniJIS2004-UTF32-H":&bintree {_bfeeg ,map[string ]*bintree {}},"UniJIS2004-UTF32-V":&bintree {_baad ,map[string ]*bintree {}},"UniJIS2004-UTF8-H":&bintree {_adde ,map[string ]*bintree {}},"UniJIS2004-UTF8-V":&bintree {_bgfc ,map[string ]*bintree {}},"UniJISPro-UCS2-HW-V":&bintree {_gebg ,map[string ]*bintree {}},"UniJISPro-UCS2-V":&bintree {_gabc ,map[string ]*bintree {}},"UniJISPro-UTF8-V":&bintree {_dfcc ,map[string ]*bintree {}},"UniJISX0213-UTF32-H":&bintree {_cggg ,map[string ]*bintree {}},"UniJISX0213-UTF32-V":&bintree {_cgfba ,map[string ]*bintree {}},"UniJISX02132004-UTF32-H":&bintree {_cegcb ,map[string ]*bintree {}},"UniJISX02132004-UTF32-V":&bintree {_affd ,map[string ]*bintree {}},"UniKS-UCS2-H":&bintree {_fegba ,map[string ]*bintree {}},"UniKS-UCS2-V":&bintree {_dgef ,map[string ]*bintree {}},"UniKS-UTF16-H":&bintree {_ffeca ,map[string ]*bintree {}},"UniKS-UTF16-V":&bintree {_gcgbb ,map[string ]*bintree {}},"UniKS-UTF32-H":&bintree {_fffbb ,map[string ]*bintree {}},"UniKS-UTF32-V":&bintree {_cgce ,map[string ]*bintree {}},"UniKS-UTF8-H":&bintree {_gead ,map[string ]*bintree {}},"UniKS-UTF8-V":&bintree {_eadea ,map[string ]*bintree {}},"V":&bintree {_aefc ,map[string ]*bintree {}},"WP-Symbol":&bintree {_dcef ,map[string ]*bintree {}}}}; +func _bedc ()([]byte ,error ){return _gb (_fabc ,"H")};func _fgd ()(*asset ,error ){_dbf ,_gbbe :=_aefb ();if _gbbe !=nil {return nil ,_gbbe ;};_afce :=bindataFileInfo {_ee :"KSC-Johab-V",_ffd :716,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492521,0)}; +_dgeg :=&asset {_da :_dbf ,_dc :_afce };return _dgeg ,nil ;};func _bgaa ()(*asset ,error ){_gabd ,_ffcd :=_ceag ();if _ffcd !=nil {return nil ,_ffcd ;};_facb :=bindataFileInfo {_ee :"UniGB-UTF16-H",_ffd :197731,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492754,0)}; +_cbaf :=&asset {_da :_gabd ,_dc :_facb };return _cbaf ,nil ;};var _ea =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x3e\x10\x05\xf0\xbb\x3f\xc5\x1c\xf7\x7f\xd8\x7f\x2c\x2b\x8a\x2d\x28\x0b\x25\x29\xd4\x85\x6d\x4b\xd3\xdd\x16\x4a\x0f\xb2\x34\x0e\x86\x46\x36\xb2\x7d\xc8\xb7\x2f\x7a\x93\x75\x0f\x61\x92\x9f\x3d\x8f\x77\x98\xec\x8e\xed\xa9\x8d\xc3\x42\xbb\xaf\x69\xf4\x67\x5e\xa8\x1f\x62\x48\x3c\x8f\x6b\xf2\x4c\x1d\x5f\x86\x58\x14\xaa\xa2\x30\xf8\xe5\xed\x27\x86\xbf\xba\xa9\x28\x76\x75\xf3\xf8\xe1\xe5\xf8\xf8\x91\xd6\x99\xef\x74\x6c\x4f\xe7\xdb\xbc\xf0\xb5\x8d\xfd\x48\x5a\x56\xc3\x3a\xdd\xd7\x89\x76\xdf\xf8\x32\xcc\x4b\xba\xd1\xc3\xfb\x30\x76\xfc\x1f\x05\xee\xb3\x7f\x49\x81\xd3\x10\x2f\xf4\xf0\xc9\x4d\x2e\xaa\xed\xc1\x79\x9d\xa6\x3f\x7c\xe5\xb8\x50\x09\xe3\x18\x30\x8b\xdd\xf1\xd9\x4d\x9f\xdd\x95\xe9\xad\xca\x2b\x1e\xc0\x5f\x39\xcd\xc3\x18\x49\x95\xff\x97\xe5\xe1\x9f\x7f\xbf\x4d\x4c\xea\x1e\xf0\xf3\xa5\x3d\xd1\x2f\x45\xaa\xa4\xca\x68\x63\x7e\xdf\xfd\xc7\xf3\x18\xb6\xb7\xaa\x5a\xda\xfb\x21\x24\x17\x2f\x5c\xbc\x73\xca\x55\x4f\x94\x87\x7e\xa2\xba\x69\xea\x4c\x9d\x02\x75\x15\xc8\x82\xbc\x10\x67\xb2\x2a\x93\x97\xb7\xbc\x01\xed\x41\x0e\x14\x3a\x10\x16\x59\xde\xca\xa3\xb6\x2a\xc7\xef\x1d\x08\xa3\xb6\xaa\x01\x69\x21\x0d\xb2\x20\x23\x94\xe3\x6d\x55\x82\x6a\xa1\x1a\xa4\x40\x56\xc8\x82\xaa\x4c\x5e\xb2\x3c\xb2\x2a\x9d\x89\x85\x58\x68\x0f\x92\x78\x96\x78\x03\x92\x78\x96\xf8\x03\x88\x85\x18\x94\xdb\x1b\x69\x6f\xa4\x7d\xd5\x80\xb4\x90\xc4\x5b\x90\x11\x42\xbc\x2e\x41\xb5\x10\xe2\xb5\x02\x59\x21\xb4\xd7\xb9\xbd\x91\xf6\x46\xda\xeb\xdc\xde\x48\x7b\x23\xed\xf5\x1e\x24\xf1\xd2\x5e\x1b\x90\xc4\x4b\x7b\x7d\x00\xb1\x10\xda\x6b\xb4\xef\x65\xb1\x3f\x80\x9a\x7c\x81\xdb\x31\xe4\xef\xf9\xf6\xb7\x5b\xf4\x6b\x4a\x1c\x17\x5c\x3e\x2e\x2e\x5f\xd1\x10\x79\xfb\x63\x4d\xe3\x94\xb7\xf0\xf9\x1b\x00\x00\xff\xff\x09\x64\x4a\x68\x84\x03\x00\x00"); +var _dda =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\x90\x82\x01\xe3\x54\xaa\x2a\xb5\xe4\x10\x54\x25\xad\x4a\x9b\x56\xaa\xf6\x40\xec\x09\xb2\xb4\x18\xcb\xc0\x21\x6f\xbf\x9a\x31\xcb\xee\x21\x9a\xf0\x19\xff\x1a\x8f\x49\xeb\xe6\xd8\x38\x3b\x43\xfa\x33\x8c\xba\xc5\x19\xee\xd6\x99\x80\xd3\xb8\x04\x8d\x70\xc3\xde\xba\x24\x11\x39\x18\xab\xe7\xd7\x47\x2e\x7a\xe8\x7c\x92\xa4\xa7\xef\x43\x21\xca\xfd\x37\xb9\x3f\xc1\x32\xe1\xaa\x75\x73\x6c\x1f\xd3\x8c\x43\xe3\xee\x23\x14\x71\xb7\x59\xfc\x9a\x00\x90\xfe\xc2\xde\x4e\x73\x78\xc0\xee\xab\x19\x6f\xf8\x01\x0c\xde\xc9\x7f\x04\x83\xc1\xba\x1e\x76\xf5\xa5\x15\x1b\xb7\x8b\xf7\xcf\x38\xa0\x9b\x41\xb0\xa1\x33\x5c\x93\xb4\x3e\x77\xfe\xd2\x0d\x08\xef\x7a\xb9\xf2\x1a\x2f\x5d\x31\x4c\x76\x74\x20\xf2\x8f\x59\x26\xdf\xfc\xf7\xc3\xe3\x9a\x95\xa4\xff\xfe\x34\x47\xf8\x2f\x40\x64\x90\x4b\x99\x1f\x9e\x56\xff\x7b\x1e\xcd\xf6\x96\xc8\x63\xfb\xda\x9a\xd0\xb9\x1e\x93\xcf\x9d\x28\x6f\x5f\x60\x2d\xa2\xa8\xca\x8a\x4c\x76\x6c\x54\x44\xa1\xca\x82\x4d\x47\xd3\xd1\x24\x9b\x89\x86\x64\x19\x49\x25\x58\xaa\x9c\xa4\x64\x91\x51\x2a\x92\x03\xcb\xa7\x28\x94\x5e\xe6\x2c\x31\xa7\xa2\x9c\xd8\x81\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\x63\xc1\x42\x85\xce\xa2\x68\xc6\xdb\x59\xe9\x3f\xdd\xed\x36\x6d\xbd\x84\x80\x6e\xe6\x9b\xe5\x81\xd2\x90\xac\xc3\xed\xdb\xf1\xa3\xa7\x5d\xfc\x7b\x09\x00\x00\xff\xff\x6c\xe3\x0f\x46\x67\x02\x00\x00"); +func _aae ()(*asset ,error ){_gcgb ,_eccbf :=_cbfag ();if _eccbf !=nil {return nil ,_eccbf ;};_abdbe :=bindataFileInfo {_ee :"GBK-EUC-V",_ffd :766,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492085,0)};_cdf :=&asset {_da :_gcgb ,_dc :_abdbe };return _cdf ,nil ; +};var _abca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x4b\xab\x6e\xdb\x95\xa5\x07\xd7\xcf\xaf\xd8\xc5\xef\x2b\xa4\x35\xc7\x1c\x77\x10\x82\x71\x85\xc0\xa4\x6d\x1c\x4e\xdb\x60\x4c\xa2\xd0\xd9\x11\x16\x38\x8e\xc4\x91\xa2\x10\xff\xde\xac\xf6\xb4\x37\x09\x8c\x39\xbb\xb4\xe8\xeb\x9d\x73\x8e\x7b\xef\xbd\xf5\xdb\xf8\xdd\xfa\x87\xfd\x0f\xbf\xfc\xf9\xef\xdf\x7e\xf7\x3f\xfd\xfa\x97\x3f\xfd\xe3\xf7\xbf\x7f\xfb\xe7\x3f\xff\xf2\xf3\xaf\xdf\xff\xf6\x97\x7f\xfb\xf5\x4f\xdf\xbf\xfd\xd3\xf7\x7f\xf9\xf3\x2f\x3f\xfd\x14\xde\x6f\x3f\xff\xf9\x4f\x7f\xff\x90\xfa\xf3\xa7\x7f\xfd\xe3\x5f\x7f\xfa\xe9\xeb\xfd\x7f\xfc\xf7\xbf\xfd\xfd\xfb\xbf\xfe\xc3\x2f\xff\xfc\x97\x6f\x91\xe7\x7e\xfe\xb7\xbf\xfa\xd9\x6f\xdf\x7e\xf7\x3f\x7f\xff\x97\x3f\xff\xed\xef\xbf\xfe\xfb\xb7\xff\xdf\xf8\xf9\x2f\xff\xf4\xfd\xff\xff\xed\xe7\xef\xff\xfc\xf5\xff\xff\xf1\xd7\x9f\xbf\xff\xfa\xe7\x5f\xfe\xc5\xff\xff\xaf\xff\xfd\x5f\x7e\xfd\xfe\xc7\xf0\x5f\xff\xcb\xfa\xc7\xf7\xbf\x3d\xf3\x8f\xff\xf6\xd7\xbf\xfe\xdf\xdf\xff\xf5\xfb\x2f\x7f\xff\xf6\xea\x7f\xdf\x7f\xf9\x59\x7f\x7f\xfa\xdd\xfa\xcf\x7f\xfc\xeb\xff\xf0\xc7\x7f\xfd\xfe\xed\x77\x7a\xfd\x3f\xf1\xfa\x7f\xfa\x7a\xfd\x3f\x3c\xf1\xbf\x7e\xff\xf5\x6f\x7f\xfe\xcb\x2f\xdf\xf2\x7f\xf7\x3c\x59\xff\xd7\xbf\xff\x97\x7f\xff\xeb\xf7\x6f\x9f\xe7\xfe\xf7\xff\xf2\x0f\xfb\xdb\xff\x11\xbe\x85\xe7\xdb\x9b\x63\xcc\xdf\xc2\x1b\xde\xff\xd3\x3f\xfe\x6f\xff\xf9\x2f\x3f\x7f\xff\xf6\x40\x05\x46\xf5\xa7\xbf\xfc\xfc\xfd\x6f\x7f\xfd\xe3\x9f\xbe\xff\xfa\xc7\x5f\xfe\xe5\xfb\x4f\xdf\xbe\xfd\xfe\x79\x9e\xe7\x0f\xdf\x7e\x7f\xef\xbd\x7f\xf8\xea\xe3\xff\xeb\x89\x9f\xc2\xf3\xf0\xea\x3f\xfd\xf3\x9f\xfe\xaf\x3f\xfe\xfa\xd3\x7f\x78\x61\xff\xe1\x8b\x2a\x5f\xd4\xfb\x8c\x0e\x15\x44\x85\x07\xea\xfd\xc3\x57\x0b\x9f\xdf\xe2\xd7\x6f\xe1\x7d\xa1\xd2\x17\xf5\x9e\x0b\xd5\xf4\xe4\xac\x50\x93\xf7\x1a\xd4\xfa\xc3\xb7\xdf\xc7\xe7\x89\x50\x97\x16\x8a\xa8\x4a\x5f\xe2\x82\x52\xeb\xaf\xa9\x46\xeb\x33\x40\x45\x51\x9b\x16\x5a\x12\x75\x4d\x65\xbd\x57\xe8\x75\x6b\xa2\xc2\x81\xea\x7c\x33\x41\x0d\xbe\xe9\x27\xb7\x46\xe4\x9e\xb5\xc3\xf8\xa6\xa8\x1e\xd4\xb3\x93\xa1\xbe\xfa\xf2\x96\xc4\xd8\x7b\x84\xe2\x2b\x9d\x99\x78\x4d\xd1\x97\xe1\xf7\xca\x17\x15\x83\xdf\xab\xfa\xed\x31\x45\x3f\x1f\xc6\xd0\xe9\x67\x61\xb4\x7d\x88\xca\x7e\xd2\xf3\xe9\x27\x97\x66\x30\xba\x9f\x1a\x43\x79\x98\xcf\x7e\xa0\xdc\xba\xe6\x3a\x2f\x9e\x1c\x0f\x14\x2b\x36\x02\x14\xb3\x34\x5e\x28\x5a\x18\x11\x8a\x6f\x0e\x8d\x2f\x0f\x7a\x36\x32\x14\xa3\x1d\x1a\x5f\x9e\xcc\xe0\xa8\x50\xf4\x7a\x34\x28\xf6\xd9\xe8\x50\xac\xed\xd0\xf8\x42\xf7\x93\x57\x3b\x24\xf0\x95\xf9\xb2\x7e\x03\x2a\xb2\x7e\x7c\x65\x32\xd7\xc1\x14\x73\x1d\x19\xed\xf4\x7c\xb2\xeb\x26\xf3\xf9\x30\xf6\x79\x58\x23\x7f\xf3\x42\xb1\xaf\xd7\xcb\x4a\xd3\x97\xc5\x2e\xdf\xa6\x12\x14\xbb\x67\xd1\xde\xc3\xd8\x57\x81\xa2\xd7\xab\xb2\xb3\xfc\xa4\xce\xc3\xbb\x19\xed\xea\xa2\x3c\xbb\x6b\xf0\x1b\xfd\x5c\x13\x8a\x11\xad\x05\x45\x3f\xd7\x86\x72\x3f\x0f\x2d\xf8\xbd\xcb\x6f\x8c\x6f\x3f\xec\x10\xd6\x68\x07\x9e\x64\xa5\x37\xf3\x19\x59\xcd\xcd\x7c\xbe\xac\xfb\xf6\x7c\xfa\x3d\x8f\xcf\xef\x15\xbe\xc9\x88\x76\xe5\xac\xd0\x97\xdd\xd8\x83\xcc\xc4\x66\x6d\x97\xbf\x32\xa0\xfc\xdb\x64\xdd\x19\xfb\x5e\x50\xee\x0b\x7b\xb7\xd0\xc2\x79\xa0\x58\xcd\x13\xa0\x78\xef\x70\xfe\x0a\x73\x7d\x18\x43\xa7\x2f\x87\xfd\xb9\x98\x97\xe3\xfd\xe9\x27\xd9\x83\xde\x67\x87\xbe\x98\x2f\x1d\xfa\xe2\x53\x75\x36\x14\x3d\x3b\x07\xca\x2d\x5c\x5a\xe7\xbd\x4b\x3f\x3d\x4b\x97\x7e\x3e\xcc\xe7\xa5\x9f\x81\x75\xbf\xf0\x89\x2f\x4e\xf4\xfd\x97\x9f\xcd\x81\xff\xbf\x58\xf2\x85\x9d\x79\x5a\x2e\x53\xdd\x99\x88\xdb\xa0\xe8\xe6\xed\x50\x74\xec\xfa\x18\xf9\xbd\x09\xe5\x6e\x2e\x3a\xcd\xc6\xba\x1e\x82\x3a\x16\x24\x02\xe2\x5b\x2f\x54\x10\x15\xfc\x9b\x86\x10\x60\xd0\x5f\xbc\xf1\xdb\xef\x63\x64\xeb\x86\x27\xfd\x07\x11\x10\x9e\xcc\x6f\xa6\x8a\x28\xb6\x75\x78\x18\xc3\xab\x2d\x11\x52\xe4\x88\xf1\xcd\x92\xa1\xb4\x44\x2f\x4f\x66\x0e\xd5\xd7\xe9\x15\xf5\x42\xb1\xb1\x9e\x05\xc5\xc6\x0a\x7e\x92\xc5\x0c\x0d\x8a\xc5\x0c\x09\x8a\xc5\x0c\x7e\x8f\xc5\x7c\x4d\xc1\x14\x5f\x9e\x0c\x30\xc5\x68\x0a\xa6\x88\x00\x7a\x03\x4c\xf1\x09\x50\x30\x45\x8e\xfb\x1b\xd8\x74\x6c\x82\x37\xb0\xe9\x82\x7f\x83\x29\x86\x09\xc5\xf8\x42\x85\x62\x7c\xaf\x9f\x64\x7c\xd1\x14\xe3\x7b\xfd\x1e\xe3\x8b\xa6\x18\x5f\x32\xc5\xf8\x10\x39\x5f\x92\x4e\x94\xfb\xe2\xf1\x31\x2f\xaf\xc7\x47\xeb\xaf\xc7\xc7\x93\x2f\xe3\x83\x99\xbe\x2f\xe3\xe3\x48\xbf\x2f\xe3\x7b\x33\x14\xe3\x8b\xfe\x26\xe3\x43\x18\xbe\xaf\xc7\x67\x8a\xf1\xc1\x50\xbe\x38\xac\xa8\x01\xe5\xf5\xeb\x50\x5e\xbf\x02\xe5\xf5\x73\x7b\x8c\x8f\x43\xf5\xc5\xab\x44\xd1\xcf\x84\x98\xf6\x5c\x27\x89\x8e\xc8\x9e\x7f\xf3\xc3\x8e\x64\x35\x33\xbf\x2d\x5a\x2f\xde\xc9\x8c\xbd\xb0\x5b\x61\x1a\x6f\xb3\x6a\x43\x5f\xa4\x32\xc4\xb8\x4d\x0d\x9e\xa4\x67\x52\x12\x62\x84\xed\xbe\x9d\x6f\xc2\xbc\x5f\x29\x02\x31\x6e\x66\xb0\x73\x3a\x36\xfd\xec\x6e\xcf\x54\x85\x62\x26\xa4\x08\xc4\x88\xb0\x78\x3b\xad\x23\x7c\xdf\x8e\xc2\xf2\xa1\x50\x04\x3e\x2d\x2c\x18\x34\xe3\x93\x22\xf0\x7c\xc6\x20\x45\xe0\x09\x91\x55\x91\x22\xf0\x04\xaf\xbb\x14\x81\x27\x24\xd6\x68\x20\x2c\x38\xb7\xaf\x14\x81\x27\xa0\x78\xbc\x03\xa5\x6b\xd2\xc2\x80\x4b\x6d\x56\x45\x8a\xc0\x13\x0a\xed\x49\x11\x78\x42\xe2\xc9\x43\xcf\x10\xfd\xaf\xd8\xe7\xf3\x20\xfa\xdf\x8b\xa8\x9a\x7c\xe5\xea\x2b\x0f\x9c\xe1\xbd\x7c\xc5\xbb\xe7\x22\x52\x2f\xa3\x15\x1f\x7c\xc2\xcb\x4e\x16\x1f\x7c\x42\xf4\x93\x03\x8a\xd9\x15\x1f\x7c\x82\x77\xab\xf8\xe0\x13\x92\xbf\xc2\x2c\x7d\xed\xdd\xdf\x64\xc9\xef\x45\xda\x5e\x7f\x84\x09\xcc\x6a\x20\x3e\x0c\x61\x5f\x28\x26\xf0\x1e\x28\x26\x10\xb9\x15\xc5\x3e\x9f\xc0\xb1\x8d\x62\x9f\x4f\x48\x5a\xf6\x98\xac\x8b\x9a\xd2\x96\x7f\x6a\x82\x3a\x50\x6a\x21\xf1\xcd\x04\x23\x4a\x3a\xa8\x4f\xca\x50\xe9\xab\x2f\x63\x3d\x7a\x2f\xe5\x57\x14\x8c\x21\xe5\x08\xe5\xdf\xa6\x28\x98\x5b\xca\x4b\x54\xf2\x93\x1b\x6a\x42\x1d\xa8\x0d\x75\x45\x65\xbe\x52\x68\x2f\x37\xa8\x00\xc5\x37\x85\x09\xc6\xaa\x7e\xb2\x42\x69\x4b\xa4\x4a\xcf\x3a\xed\x55\x7a\xd6\x79\xb2\xd2\x97\xc1\x57\x1a\x5f\x41\x9b\x48\xd2\xed\xc7\xe2\x48\xa7\x56\xa0\x68\xbd\xd1\xc2\xf2\x7b\x4d\xd4\xce\x50\x1d\xaa\x42\xd1\xc2\xf1\x57\x18\xd1\xa1\x67\x9d\x11\x1d\xbe\xd2\x69\xfd\x46\x28\x7d\x65\x23\x9c\x92\x0e\xe3\xd8\x9e\x6b\x1d\xc6\xb1\xd1\xbc\x93\x0e\xdc\xd8\x08\x84\xa4\x03\x37\x36\x1b\x39\xe9\xc0\x8d\x8d\xa8\x4a\x3a\x70\x63\x23\x9c\x92\x0e\xdc\xd8\x5e\x31\x1d\xb8\xb1\xd1\x4c\x93\x34\xe8\xb1\xa3\xdf\xa3\x2f\x5e\xbf\xa1\x11\xed\xc4\xf8\xc6\x86\xf2\x7b\xf4\x25\xfb\x9b\xf4\xc5\xeb\x37\xe9\x8b\xd7\x6f\xd2\x17\x50\x47\x9a\xf4\x05\x2d\x2b\x49\xbb\x1e\xbb\xf2\x95\x49\x0b\xde\x91\x8b\x27\x1b\x7d\x59\xf4\xda\x6b\x2b\xbd\x78\x6c\xf4\xc6\x24\xbd\x78\x6c\xf4\xbf\xb4\x98\x41\xaf\xe6\x62\x06\xbd\x9a\x8b\x5e\xc3\x30\xd3\xa2\xd7\x30\xc5\xb4\xe9\xf5\xa1\x85\x4d\xaf\xbd\x9a\xd2\x61\xc7\xbe\x7e\x52\x2d\x1c\xf4\xfe\x24\xed\x73\x1c\x44\x47\x92\xf6\x39\x4e\xf0\x7b\x6a\xe1\x20\xfa\x93\x34\xcc\x71\x22\x7b\x42\x5a\xe4\x38\x89\xbe\x48\x8b\x1c\x27\xf9\x37\xbe\xe2\xd9\x95\xde\x38\x8e\x67\x57\x7a\xe3\x38\x99\x3d\x21\xb5\x6e\x1c\x34\xda\x24\x76\x36\x0e\x2a\x58\xba\x7c\x93\xd9\xcd\xe2\x28\xe3\x30\x9f\xf9\xe1\xbd\xe5\xdf\xe8\x0b\x73\x96\x1f\xda\xdb\x7e\x92\xf6\x4e\x83\x62\x44\x47\x63\xcf\x81\x6f\x9e\x0d\xa5\x39\x3b\x97\xaf\x04\x46\x0b\x77\xcb\x52\x6d\xc6\x61\x06\xb3\xd4\x97\x71\x1f\xbf\xa7\x5e\x5f\x94\xae\x2c\x15\x65\xdc\x68\x6a\x42\xbd\x50\x0b\xca\x2d\x5c\x28\xed\x97\x2c\x05\x62\x5c\xe6\x2c\xbf\x7c\xa5\x76\x28\xbe\xd2\x9e\x1f\xb0\xe4\xfc\xd2\x40\xa3\x01\xe9\x08\xe3\x36\x86\x10\x35\xd8\x8b\xce\x9c\x63\x80\x62\x40\x51\xd3\x79\xa7\x29\xba\xe2\xc9\x8d\x1d\x8a\x29\x8b\xb4\x00\xdc\xcb\x91\x16\x3c\xd5\x49\x53\x76\x3d\x81\xd2\x68\xc7\xf5\x04\xa6\xaf\x29\x9b\xcf\xe3\xdf\x2a\x94\xdf\x6b\xa2\x3c\x81\xa9\x43\xf9\xc9\x25\xea\xf5\x57\xae\xa8\x04\x25\x5d\x66\x3e\x6c\xba\x9c\x03\x14\xdf\x14\x9b\x9f\x4f\x3a\x50\xb4\x9e\x2b\x14\xad\x67\x26\x37\xd3\x7a\x66\x31\x25\x02\xe6\xd3\xe8\x4b\xa6\x75\xcf\x67\xa6\xf5\xc6\x82\x15\x5a\xef\x01\x2a\x41\xd1\x7a\xe5\x37\x0c\x33\xb9\xf2\x1b\xb0\x34\xd7\x0c\xe5\x27\xb7\x28\xcf\x67\x3d\x50\x7e\x92\xf6\x38\xd2\xb9\xf1\x4d\xcc\x2d\x59\x4c\x7f\x06\xcf\x99\x18\xf4\x0c\x9e\x25\x19\x66\x66\x40\x9b\xcf\x62\xd0\x33\x24\x5a\x10\x83\x9e\xc1\x33\x28\x26\x3c\x03\xac\x2e\x0f\xbe\x82\xa8\xca\x83\xaf\x60\x32\xca\xd2\x6c\x66\xa8\xfe\x8d\xd6\x3d\x4b\xd2\x6c\x66\x68\x6c\xf2\x41\x7b\x8d\xfd\x32\x68\xaf\x31\xbb\x62\xbb\xd3\xf8\x2b\x0f\x5a\xf7\x9c\x4d\x5a\x07\x7a\xe6\x49\xeb\xcb\xbf\x69\x35\x03\x5a\x5d\x96\xc1\x63\xda\xe4\xf0\x85\x94\x45\xb1\x2a\x93\xd6\x8f\xdf\xa3\xf5\xeb\xf7\x26\x14\xeb\x3e\x17\x14\xfd\x14\xf3\x9e\x01\x93\xdf\x17\x32\xff\xf6\xfb\x69\x43\x49\x96\x51\x63\xbe\xe0\x93\x2c\xe6\x3d\x5f\x74\xf4\x2c\xe6\x3d\x6d\xda\xca\x32\x6a\x4c\x9b\xd2\xb2\x8c\x1a\xd3\xc6\xba\x2c\xc6\x3e\x5f\xcf\xb5\x18\xfb\x7c\x3d\xd7\x32\x6a\x4c\x9b\xe7\xb2\x98\xf7\x7c\x3d\xd7\x62\xde\xf3\x4b\xe5\x16\x45\x7b\xa8\x05\x59\xe6\x81\xf9\x02\xe5\xf3\xa1\xd7\x68\xbb\xf9\xf0\x15\x54\x86\x2c\xe6\x3d\x5f\xcc\x7a\x59\xe6\x81\xf9\x62\x8a\xc9\x87\x11\x79\xae\x0f\x2d\x78\xae\x0f\x23\xc2\xd8\x93\x0f\xbd\x46\xb7\xcf\x87\x5e\xa3\xdb\xe7\x43\x5f\x30\x12\xe5\x4b\xeb\x66\xbb\x52\x0e\xe7\x97\x8e\xf8\xd3\xef\x9f\x22\x65\x6d\x46\x78\x41\x91\x02\x38\x23\x73\x5d\x84\x67\x67\x44\xf4\x17\xb1\xf2\x19\x99\xb3\x22\x44\x39\x23\x8a\x63\x11\xa2\x9c\xb1\x74\xa8\x02\x35\xa1\x2a\xd4\x81\xd2\xcc\x47\x94\xae\x22\x96\x3c\x63\xe5\x9b\xc2\x7b\x33\x22\x56\xca\x4b\xcf\x10\xd3\xe5\xa5\x67\xcc\x75\x79\x69\x61\xf8\x3d\x5a\xf8\x9a\xdd\xdf\x64\xc9\xe5\xa5\xf1\xe5\xd7\x18\x10\x36\xc5\x22\xd8\x36\x0d\x87\x4a\xa4\x2b\xe8\x63\x25\xd2\x15\x2c\x5b\x25\xd2\x15\x26\xbe\x44\x26\x82\x89\x2f\x91\x89\x38\xfe\x0a\xdd\x44\xf2\x97\x48\x37\x59\x86\x12\xb5\x98\x11\x29\x56\xc4\xd8\x67\x0a\x7e\x6f\x40\xf9\xc9\x09\xe5\x27\xb5\xd0\xe9\xf5\x93\x17\x8a\xbe\x48\xbb\x9e\x89\x2d\x5f\xc4\xf4\x67\xca\xa6\x12\x14\xdf\x84\xe9\x27\x74\xa7\x02\xd3\x4f\x48\xfe\x02\xd3\x4f\x48\xfe\x92\xe8\x0b\xec\xa5\x24\xfa\xd2\xfc\x15\xfa\xd2\x19\xbb\x30\xc1\x4c\xc3\xed\x1d\x28\x3f\x49\x3f\x39\x00\x05\x61\xf1\xa5\xb2\x89\x0a\x50\xcc\x35\xc2\x22\x81\x33\x4a\x66\x0c\x88\xbf\x92\x19\x03\xba\x45\xc9\x19\x8a\x16\x10\x2b\xc9\xeb\x87\x58\x49\xdb\x2d\x30\x06\xaf\x4a\xa6\x9f\x80\xb8\x82\xe8\x48\x78\x06\x4a\xa1\x2f\x37\x40\xd1\x17\xc4\x66\x91\x21\x68\xda\x84\x53\x10\x2b\x36\xc5\x14\xf9\x02\xa6\x4d\x0e\xa5\xaa\xbd\x8c\xfe\x50\xea\x84\xe2\x49\x81\xf7\x99\x3d\x4b\x42\x0f\xd3\x36\xbe\x22\x4d\x7f\xda\x16\x59\x10\x24\xd9\xa3\x15\x24\x9f\x19\x71\x54\x04\xc9\x67\x86\xb5\x16\x04\x49\x09\x7e\x72\x42\xf9\x49\xad\x51\xc1\x34\x52\x04\xbb\x67\x79\xfd\x9e\xd6\xa8\x78\x0c\x08\xa0\x82\x38\x2a\x08\x20\x5b\x3b\x0b\x02\xc8\x36\xc5\x82\x00\x2a\x58\xd5\x0b\x02\xa8\x78\x44\x42\x01\xb3\x20\x6e\x0b\x02\xa8\x6c\xff\x46\x3f\xaf\xdf\xa3\x9f\xd7\xbf\xd1\x4f\xcf\x35\xe2\xa8\xe2\x19\x28\x88\x9c\xea\x5e\x4f\x8d\xbd\x62\x6a\x2a\xb2\xa3\xcf\x8a\x48\x2d\x88\x9c\xea\x31\x20\x72\x6a\xf2\x7b\x1a\x7b\x85\xb1\x17\xd9\xd8\x67\xf5\xf8\x26\xed\x79\x7c\x8b\xf6\x2a\xa7\x43\x78\x61\xd6\x4a\x5f\x10\x39\xd5\xe7\x01\x91\x53\x51\x4a\xca\xe6\x3d\x84\x68\xd9\xbc\xe7\x59\x92\x6e\x3f\x2b\x8a\x47\x91\x6e\x3f\x2b\x86\xca\x82\xe8\xa8\x18\x58\x0a\xa2\xa3\x7a\x96\x10\x1d\xd5\xb3\x74\x34\xa2\x86\xb2\x56\x10\x01\xcd\x5c\x43\xda\xfc\x6c\x18\xf2\x8a\xcc\x18\xb3\x61\x2e\x2b\xb2\xf4\xce\x86\x52\x52\x64\xe9\x9d\xcd\xf3\x29\xe3\xc4\x6c\x60\xeb\x72\x69\xc1\xf3\x79\x69\x01\xf4\x5e\x64\x9c\x98\x0d\xbb\x42\x41\x90\x34\xe6\xb3\x0a\x13\xcc\xc6\x7c\x56\x04\x49\x2b\xf7\x07\x2c\xb9\x0a\x3c\xcc\x56\x03\xaf\x65\xa8\x06\x55\xa0\x16\x94\xa6\xba\xa1\xbd\x54\x59\x5e\x67\x1b\x7e\x92\x21\x4c\x77\x85\x21\x4c\x77\x85\x21\x4c\x3f\xc9\x24\x61\xd9\xaa\x0f\x43\xc0\x5a\x56\x03\x43\x40\xf6\x56\x41\x90\xd9\x60\x28\x35\x30\x81\x6c\xe4\x1a\x18\x1e\x4c\xbf\x22\x0b\x1b\x5a\x4f\x45\x16\xb6\xc3\x88\x02\xfd\x3c\xfe\x26\xfd\xbc\xfe\x26\xd3\x89\xd6\x53\x65\x25\x9d\xed\xfa\x9b\xea\x67\x7f\xdc\x9e\xfa\xd9\x39\xd2\x55\x56\xd2\xd9\x11\x01\x15\xc9\xd8\x93\xa9\x04\xc5\x7b\x02\x32\xb3\x73\x00\x2a\x52\xb3\x27\xfa\x89\xd4\xec\x2c\x6d\x45\x34\xf6\xec\x27\x35\x67\xdd\x4b\x8b\x68\xec\xc8\xf3\xfa\xd2\x17\x2c\xf5\x15\xd1\xd8\xbd\x62\x88\xc6\xee\x15\x43\xfc\xf5\x56\xa1\x34\xbe\xee\x35\x8a\x7c\xd3\x6b\x94\x02\x14\x3d\x4b\x7c\x13\x93\x4a\x4d\x8c\xc1\xab\x82\x90\xe9\x08\xdf\x8a\x20\xe9\x9e\x6b\xc4\x43\x47\xc0\x56\xc4\x43\xf7\xcc\xcb\x48\x34\xc7\xe3\xdf\x34\x86\x81\xfd\xb6\xc2\xe6\x07\xba\x61\x95\xe5\x75\x0e\xcf\x27\x58\x62\x60\x3d\xae\x32\x12\xcd\x81\xe1\xa9\x16\xf5\x65\x20\x52\x6b\xa1\x05\xcf\x60\xd5\xd8\x07\x7a\x4e\xad\xbc\xe7\x59\x42\x20\x0c\xcf\x8b\xcc\x49\x73\xa0\xf5\xd4\xa6\x99\x18\x9e\xa5\x46\xcf\x70\x51\x56\x70\xc6\x98\xb4\xde\x68\x01\xab\x65\x6d\xb4\x80\xb0\xa8\x32\x2e\xcd\x81\x68\xac\x8d\xf6\xae\x5b\x50\x7b\xf3\x71\x0b\x1b\xca\xef\x1d\x28\x7f\xf3\x42\xb1\x2a\x88\xa3\x89\x91\xa8\x82\x6b\xa6\x77\xa4\x1c\xce\x73\xa2\xa2\x54\xd9\x99\xe7\xf4\xfe\x94\x89\x6a\x4e\x8c\x44\x55\x76\xe6\x39\x51\x58\x2a\x78\x68\x22\x36\x2b\x22\x67\x62\x24\xaa\x88\x9c\x89\x91\xa8\x0e\x5a\xc0\xc8\x57\x11\x39\x13\x91\x5a\xc1\x3c\xd3\xeb\x20\xb7\xee\x9c\x18\x89\x2a\xe2\x68\xa2\xe8\x54\xc4\xd1\x44\xb5\xa9\x88\xa3\xd9\xfc\xde\x84\xf2\x6f\xcc\x12\xda\x67\x1d\xcc\xd2\x70\x7b\xcc\x92\x79\x0f\xa2\x6a\xa2\xda\x54\x90\xd3\xf4\xbe\x06\x39\x4d\x54\x9b\x8a\x18\x9b\x88\xf7\x0a\x72\x9a\x5e\xb1\xc9\x2c\x79\xc5\x26\xe3\x33\xef\x01\x55\x4d\x4c\x4d\x15\x11\x37\xbd\x9a\x20\xa7\x85\x07\xaa\x22\xb8\x96\x57\x0c\xc1\xb5\xbc\x62\x32\x4a\xcd\xf5\xd6\x1f\xb1\x64\x20\xcf\xf2\x82\x21\xd3\xd6\xcb\xc4\xcb\xe7\x3a\x17\x1a\x43\x95\xcf\x75\x2e\x2f\x1f\x32\x6d\x79\xc1\x64\xaf\x9a\x0b\x1d\xa8\x22\xd3\x16\xc0\xbe\x02\x79\x96\x27\x1e\xc8\xb3\xda\x81\xd2\xf0\x16\x0e\xc4\x8a\x4c\x5b\x9e\x78\x59\xa1\xe6\xf2\x04\x22\xb7\x6c\x6b\xad\xc8\xad\xb5\x68\xe1\xf2\x1e\xfa\x5f\x45\x52\x2d\x74\xa7\x86\xa4\x5a\x18\x4a\x1a\x02\x68\x5d\xff\xc6\xf8\xae\x7f\x53\x7b\x9b\x98\x87\x86\x90\xd9\xf8\x94\x1b\x42\x66\x23\x7b\x1b\x42\x66\xa3\x81\x35\xb9\xf7\xe6\x7e\x4d\x6d\x28\x7f\x53\x3d\xdb\xb0\x97\x86\x90\xd9\x30\xe8\x86\x90\xb1\x25\xb4\x21\x48\x36\x12\xb5\x01\xaa\x36\x1a\x4a\x43\x90\x6c\xf4\x8e\x86\x40\xd8\x3d\x42\xf1\x4d\x8c\x4b\x0d\x81\xb0\xd1\x49\x1a\x02\xc1\xd6\xce\x86\x40\xd8\x30\x9b\x86\x40\xd8\x08\xca\x86\x40\xd8\x9e\x33\x04\x82\xed\x9b\xed\x65\x7c\x87\x99\x00\x47\xed\xeb\xaf\x30\xbe\xeb\x16\x2e\x14\x5f\x91\xd9\x6b\x1e\x58\x4f\x03\x63\x1d\x5c\x94\x0d\x41\x72\xd0\xf8\x1a\x38\xea\x78\x76\x11\x24\xb6\x84\x36\xb0\xd2\x09\x17\x4a\x7d\x39\xc9\x2d\x6c\x28\xfa\x89\x90\x39\x18\x9e\x1a\x42\xe6\x60\x78\x6a\x20\xa0\xe3\xd9\x05\x01\x1d\xcf\x2e\x08\xe8\x14\x81\xf7\x06\x22\x39\x68\x7c\x0d\x44\x72\x3c\xf3\x98\xa8\x0e\xac\xa0\x21\x64\x0e\x4a\x42\x03\x4b\x1c\x50\x47\x03\x3d\x1c\xc4\x51\x93\x43\x6f\x5e\x7c\x24\x0d\x2c\x71\x11\xda\x0d\x2c\x71\x3d\x22\x0c\x56\x37\x33\x2f\x18\xac\x6e\xf7\x93\x7c\xc5\xeb\x87\x90\xb9\xcb\x4f\x6a\xfd\xee\xf6\x6f\x13\xca\xef\x2d\x28\xfa\x82\xd9\xeb\xa2\xbe\x34\xcc\x5e\xf7\xb8\x67\x5f\xeb\xb7\x1e\x44\x63\x93\xd9\x6b\x3d\xa8\x0c\x4d\xa2\x6a\x3d\xb0\xdd\x26\x51\xb5\x9e\xec\x27\xa3\x28\x14\x88\x26\x71\xb4\x1e\xf7\x5a\xbe\x8e\xf5\x74\xbf\xb7\x44\x61\x36\x69\x12\x47\xeb\x21\x1e\xa9\x09\xc9\xac\xc7\x23\x12\x5a\x59\x0f\x8a\x40\xeb\xf4\xcc\xe3\x13\xd3\x5f\x0f\xa2\xbf\x0d\xda\xf3\x5c\x0f\xbe\x42\xf4\x55\x1b\xb4\x87\xe1\xa9\x89\xb1\xaf\xe0\x1d\x29\xc6\xbe\x02\xc2\xb0\x89\xb1\xaf\x80\xca\xd0\xc4\xd8\x97\x8d\x7c\x4d\x8c\x7d\x05\x14\x88\xb6\xf8\x8d\x98\x95\x26\xb6\xbb\x82\xe7\x4c\x31\x39\xcb\x0e\xbd\x26\xe3\xd2\xb2\x91\xaf\x2d\x5a\xcf\x3f\x32\x5c\xb4\xcd\x27\x31\xbf\xb7\xcd\x27\xd1\x2d\x9a\x58\xf2\x0a\xe8\x16\x4d\x2c\x79\x85\x46\xc7\xe4\x5e\x58\xa1\xfb\xbd\x09\xe5\xf7\xe8\x0a\xd1\x18\x6d\x33\xd8\xce\x26\x38\x0c\x88\x00\x9d\x76\x18\xac\x17\xe5\xd0\x3a\xf2\xae\x1d\x5a\xf7\x16\x3c\xb4\x8e\x4e\xd2\x64\xbd\x5a\x01\x06\xdd\x64\xbd\x5a\x01\x09\xd7\xc4\xe6\x97\x6d\x8a\xed\xd0\x4f\x6f\xcf\xc3\xb4\xf8\xe0\x1c\x16\xe5\xf8\x37\xfa\xe9\x85\x16\xac\x59\x01\xf7\x57\x93\x77\x76\x39\xe0\xa9\xc9\x3b\xbb\x5e\x2f\xa6\x84\xc5\x72\xb0\x50\x93\xb0\x58\x0e\x24\x6a\xf2\xb2\x2e\x47\x94\x74\x59\xc4\xd6\x8b\x86\xd2\x05\x64\xd6\x8b\xf8\xeb\x12\x16\xeb\x25\x76\xa1\x0b\x91\x2c\x5b\x18\xbb\x84\xc5\x7a\x39\xb6\x5d\x02\x61\xbd\xd9\xbf\x2d\x28\xff\x46\x7b\x1c\x8e\x2e\x81\xb0\x5e\x8c\x2f\x5d\x02\x61\xbd\xac\x74\x0f\xf4\x85\x95\xee\x81\xf1\xe1\xd4\xea\x81\xf1\xb5\x00\xc5\xf8\xba\xdf\x63\x7c\x1c\xb1\x1e\xe8\x4b\x67\x44\x81\xbe\x60\xb4\xe9\x42\x16\xeb\x85\x81\xf5\x97\xf1\xa1\xaf\xf4\x97\xf6\x30\xc5\xf4\x97\xf1\xb1\x2a\xfd\xa5\xd7\x98\x4d\xfa\xcb\x57\x30\x9b\x74\xb1\xf9\xf5\xde\x02\xa5\xaf\x44\x56\xa5\x8b\x41\xaf\x88\xde\xd8\xc5\xa0\x97\x2d\x8c\x5d\x06\xab\x15\x13\x33\x21\x2f\xc5\x8a\xc5\xbf\x69\xae\xa3\xe7\x45\xec\x7a\xc5\xfa\x42\xf1\x4d\x58\x72\x4f\x7c\x13\xe5\xa2\xcb\xf0\xb4\x6c\x53\xec\xc2\x0b\x2b\xa2\x40\xf4\x4c\x7b\xdb\xbf\xd1\x1e\x36\xd3\x9e\x3b\x14\xb3\x24\xdf\xc3\x8a\x88\xb1\x2e\x03\xd2\x4a\x8f\x29\xb5\x67\xd3\x5d\x17\xb2\x58\x09\xd1\xdf\x65\x5c\x5a\x09\xd1\xdf\x25\x10\x56\xc2\x1d\xd5\x85\x3a\x96\x8d\x75\x5d\xe2\x61\x25\xef\x1e\x05\xa8\xae\x54\x4c\x75\x28\x7f\x45\x7d\x49\xb8\xa3\x7a\xa1\x2f\xcd\xdf\xa4\x2f\xdd\xdf\xa4\x2f\x88\xfe\x5e\xe9\x0b\xe2\xbd\x57\xfa\x32\xfd\x1b\x7d\x41\xa0\xf7\x4a\x5f\x10\xe1\x5d\x42\x66\xd9\x08\xd6\x25\x64\x56\xba\x03\x4a\x3b\xcb\x11\x4f\x5d\x62\x65\x39\xe2\xa9\x4b\xac\x2c\xc7\x38\x75\x89\x95\xe5\x18\xa7\x8e\xe8\x70\x8c\x53\x47\x74\x38\x96\xa7\x0b\xe5\x2c\x47\x12\x75\xa1\x9c\x95\x09\xa8\xec\xc2\x0b\x2b\x23\xb4\xbb\xcc\x5e\x2b\x7b\x96\x06\x5f\xf1\x4c\xc8\x35\xbd\xb2\xf7\x84\x0c\x56\x2b\x83\xb8\x3a\xc2\x22\xe3\x3b\xea\x08\x8b\x8c\xef\xa8\x0f\x5a\xf8\x52\x9e\x7e\x93\x25\x77\xe4\x48\xf6\xe4\x22\x47\x1c\x67\xda\x91\x23\x8e\xc7\xeb\x13\x0a\x56\xd7\x65\x69\x5a\x8e\x64\xed\x8b\x4e\xc3\xf8\x3a\x92\xc3\x36\xbe\xbe\x18\x3a\x81\x67\x7d\xd1\x69\x5c\x4e\x7d\x31\xf1\xe8\x5c\x1d\xa9\x92\xbd\x60\x8a\x6f\x5c\xc5\x8b\x82\x08\x28\x5e\x14\x58\x79\xc1\x0e\xd4\x61\xde\xc5\x13\x0f\x4b\x2e\x04\x5f\x75\x58\x72\x89\x8c\x41\x96\xa6\x55\xbc\x28\xb0\xe4\x82\xbe\xd2\x61\xc9\xb6\x1b\x76\xf9\x8d\x57\x31\x73\x93\xc6\xbe\x1c\xc8\xd7\x61\xc2\xa5\x30\xf1\x30\xe1\x82\xe9\xa7\xc3\x84\x4b\xf5\x93\xb4\xe0\xc5\xbc\xb4\xc0\x91\x1e\xd2\xdf\x57\xc1\x09\x33\x1e\x46\x84\x8b\x6b\xc0\xbc\x0b\x46\xa2\xf1\x30\xbe\xee\xf7\x0a\xd4\x82\xa2\x2f\xc4\x53\x8e\x87\xbe\x0c\x7f\x93\xbe\x00\xe2\x86\x8c\x3d\xab\x60\x32\x1a\x32\xf6\xac\x82\x4e\x32\x02\xa3\x45\x0b\x19\x81\xd1\x6e\xbf\x47\xaf\xd1\x42\xc6\x4b\xaf\x59\xb1\xf1\xf2\x4d\x8c\x3d\x43\x7a\xf8\xaa\x30\x94\x21\x3d\x7c\xd5\xc7\xef\xa9\x67\x15\x87\xd7\x90\x1e\xbe\x2a\x0e\xaf\x01\x13\xae\x30\x9b\x01\x13\xae\xac\xed\x90\x3e\xbd\x2a\x41\x46\x43\x86\x99\x55\x89\x3d\x1e\xf2\x59\xac\xca\x4a\x8f\x48\x7b\x68\x28\x43\x7e\x89\x65\x7b\xea\x90\xae\xbd\x2a\x6e\xdd\x21\x5d\x7b\x55\x0c\x48\x43\x86\x99\x55\xd1\xf8\x06\xec\xda\xd6\xd5\x01\xbb\xb6\x3d\x75\xc0\xae\x2b\x06\xa4\x91\x18\x03\x0a\xcb\x80\xed\x56\xd0\xdf\x80\xed\x56\x18\xd8\x80\xd1\xd6\x4e\xeb\x85\x27\x51\x35\x46\xa1\x05\xaf\x11\xac\xae\x72\xc6\x06\xac\xae\x72\xc6\x06\xac\xae\x7a\x8d\x60\x75\x95\x33\x36\x2a\xf3\x82\x21\x6f\x54\xe6\x05\x55\x63\xc0\x06\xeb\xf1\x93\xb4\xee\xd5\xac\xea\x67\x7b\xfc\xe4\x80\xf2\x93\x13\x8a\x5e\xc3\xf8\x1a\x01\x80\x03\xbd\xb8\x61\x1a\x19\xb2\xfe\xaf\xe6\xf5\x93\x09\x67\x35\x94\x8b\x81\xce\xdc\x08\x19\x1b\xe8\xcc\x0d\xa4\x3d\x1a\xed\xa1\x61\x8e\x46\x7b\x5e\x3f\x99\x69\x56\x43\xf1\x18\x9d\xf6\xaa\x29\xda\xf3\xcc\xcb\x14\xb3\x1a\x11\x4f\xa3\xd3\x5e\xa3\x9f\x68\xd7\xcd\xeb\x30\xf8\x26\x2a\xc3\x90\x61\x66\x35\x54\xc5\x01\xdb\x6d\xa8\x8a\x03\xb6\x6b\xb3\xec\x90\x61\x66\xb5\xe5\xaf\x30\xbe\xe5\xdf\x68\xcf\x2b\x86\x8e\xde\xf0\xb7\x0d\x78\x6b\xc3\xdf\x36\xd0\xc3\xbf\xf4\xce\xdf\x66\xc9\x03\x15\xfd\x4b\x0d\x14\xa5\xae\x74\xf4\x8e\x21\xab\xc9\xea\xe8\x7f\x43\x8e\x81\xd5\xd1\xff\x86\x7c\xd1\xcb\xd6\xd5\x21\x8b\xca\xea\xc8\xa6\x21\xa7\xc1\xea\x48\xe9\x81\xa2\xdf\x3d\xb9\x2b\x40\xf1\x1e\x8a\x7e\xc7\xd2\x34\xe4\xa7\x5e\x1d\xc6\x37\x60\xe5\x1d\xed\x65\xc0\xca\xbb\x17\x45\x7e\xea\x65\x9b\xe9\x80\xb1\xf7\x66\x8a\xbe\x74\xbf\x77\xa1\x38\x46\x9b\xbe\x78\x51\x40\x08\xdd\x53\x0d\x0a\xe8\xc4\x92\x0e\x04\x42\xc7\x7e\x34\xd0\xed\x3b\x7a\xdc\x40\x20\x74\xb4\x9e\x21\xcf\xf4\xea\x3e\x00\x87\x6f\x1e\x16\x05\x11\xd0\x31\x8d\x0c\xf9\x9b\xd7\xf0\xec\xa2\x87\x0f\x64\xfd\x90\x7b\x61\x0d\xcf\xa7\xc2\x8a\xd6\xc0\x9c\x34\x10\x0f\x23\xfb\xbd\x06\xe5\xf7\x74\x54\x86\x99\x06\x4c\x7f\x54\x8d\x6f\xc2\xf4\x07\xf2\x7c\xc2\xf4\x07\x8c\x7d\xa2\x95\x0f\xb4\xba\x09\xd3\xb7\x25\x74\xa2\x95\x0f\xe2\x68\x27\x4c\x7f\xec\x00\x35\xa0\x22\x94\x56\x7a\x1c\x7f\x85\xbe\x70\xdc\xe7\x43\x5f\x10\xb0\x53\x7e\x82\x35\x39\xee\x13\x8d\x7d\x22\x60\x27\x1a\xfb\x0c\x7e\x32\x42\xf9\x49\xad\xca\x24\x92\x75\xa2\xb1\x4f\x4c\x15\x13\x8d\x7d\x66\x7f\x65\x43\x31\x76\xf9\x02\xd6\x44\xeb\x99\x2f\xed\x21\xc6\xe6\x4b\x7b\x68\x75\x13\xb1\x32\xb7\x9f\xd4\xbc\xcc\x63\x2a\x43\x55\x28\xfa\x82\xc6\x37\x15\xf9\xbc\x96\xc7\x80\xc8\x59\x1e\x03\x82\x64\x71\x1e\x26\x82\x64\x91\x90\x31\x11\x24\x0b\x05\x62\xa2\xdb\x2f\x14\x81\x89\x6e\xbf\x3c\xbe\xc4\x93\x88\x87\x89\xe8\x58\x1e\x11\xa2\x63\x11\x9b\x3b\x11\x1d\x8b\x5d\x30\x11\x1d\xab\xfa\x3d\xfa\x89\x2b\x6e\xca\xfd\xbc\x96\x67\x02\x14\xb0\x50\xc1\x66\xa6\x05\xcf\x0b\x42\x66\xa1\xed\x4e\x84\xcc\xc2\xf9\x36\x33\xa3\xc5\xf9\x36\x65\xd0\x59\x6b\xfb\x2b\xb4\xe0\xf9\x44\x1c\x39\x2c\x73\xa2\xf7\x3b\x10\x73\xa2\xf7\x2f\xc4\xfb\x44\xef\xdf\x98\x77\xa6\x3c\x0a\x6b\x23\xd0\xa7\x3c\x0a\xcb\x86\xc3\x89\x18\xdb\x38\xed\x26\x7a\xff\xc6\x69\x37\xd1\xfb\x6d\x46\x9c\x65\x40\x31\x22\x25\xad\x2d\x1b\x15\x27\x98\x60\xa3\xac\x4d\x30\xc1\xce\xfe\x4d\xfd\xdc\x9e\x79\x04\xa5\x8d\x8a\x13\x61\xb8\x51\xc8\x26\xc2\x70\xa3\x90\x4d\x84\xe1\x46\x58\x4c\x84\xe1\x6e\xa6\xe8\xe7\xd7\xf9\xfb\x4d\x96\x3c\x91\x93\xb6\x3e\x4e\x00\xc2\x46\xe7\x9a\x00\x84\x8d\xce\x35\x91\x93\xb6\x45\x4e\xec\x4e\x8e\xbc\x9c\xd8\x9d\x36\xb2\x62\x02\x1e\xb6\x97\x08\xf0\xb0\x91\xd2\x13\xf9\xba\xbd\x28\xc8\x57\x5b\x26\x27\xf2\x75\xe3\x6e\x9b\xc8\xd7\x8d\x06\x36\x91\xaf\xe7\x71\x7b\x03\xca\xdf\x9c\x50\xfe\xa6\xc6\x60\x5b\xe4\xc4\x5e\x75\xd0\xc7\x26\xb2\xf7\x78\xc1\xe4\x22\x59\xc7\x0b\x86\xec\x3d\xe8\x63\x13\xd9\x7b\xd0\xc7\x26\xb2\xf7\x78\xc1\xb0\x73\x1d\xb4\xa5\x89\x24\x3e\xb8\xdb\x26\xd2\xf6\x78\x51\x90\xb6\x07\xd1\x31\x91\xb6\x07\x90\x33\x91\xb6\x07\x2d\x79\x0e\x46\x84\x3c\x9f\x48\xdb\x63\xf6\x89\xa0\x3c\xb8\xdb\xe6\xe4\x2b\x9e\x4f\x04\xde\xf5\xbc\x20\xf0\xae\xe7\x05\x81\x77\xd1\x6c\x26\x02\xef\x62\x11\x9b\x08\xbc\x0b\xdc\x9b\x08\xbc\x8b\xd6\x33\x11\x78\xd7\xb3\xa4\x38\xda\x75\xd1\x6c\xe6\xa6\x85\x6c\xea\x85\xe2\x2b\x18\xba\x2e\x21\x47\x13\x11\x77\x09\x39\x9a\x88\xb8\x8b\x48\x9d\x60\x9e\xeb\x59\xc2\xec\x75\xc1\x12\x13\xb3\xd7\xc5\x40\x36\xe5\x79\x5f\xb7\xb9\x05\xfa\x82\x2e\x33\x31\x89\x5d\x74\x99\x89\xd8\xb4\xad\x75\x22\x36\xaf\xf7\x27\x26\xb1\x6b\xc6\x00\xaa\xba\x9e\x41\xcc\x5e\x17\x13\xd5\x04\x63\x5d\x54\x94\x09\xc6\xba\x88\xd4\x29\x01\xbb\x9f\xc7\x2d\x2c\x28\x7f\x73\x8b\x42\x61\x99\xc2\x5f\xfb\xb1\x58\x11\xfe\xda\x0f\x26\xaa\x29\x51\xbc\x1f\xcf\xa7\x44\xf1\xb6\xfd\x76\xca\x24\xb6\x1f\x1c\x6c\x53\xa2\x78\x3f\xf8\x6b\xa6\x44\xf1\x7e\x2c\x80\x84\xd4\xf6\x83\x60\x9e\x42\x6a\xdb\x96\xde\x79\xe9\xa7\x19\xca\xa5\x2f\x66\xd0\x97\xbe\xb0\x0e\xeb\xa1\x2f\x98\xa8\x96\x04\xf3\x76\x9e\xed\x7a\xe8\x0b\x66\xc4\xf5\xd0\x1e\x86\xa7\xf5\xd0\x1e\x86\xa7\xf5\x30\x76\xe6\x7a\x05\x7a\x8d\x98\x5e\x81\x5e\x1f\xff\x46\x5f\x30\x55\x2c\xe1\xaf\x1d\x70\x66\x2e\x09\xca\x1d\x50\xe4\x96\x04\xe5\x76\xd2\xc5\x92\xa0\xdc\x81\x68\xea\x25\xef\xc6\x0e\xcc\xc4\x92\x77\x63\x07\x66\x62\xc9\xb4\xb5\x43\xbe\x50\x41\x14\xae\xc6\x15\x69\x01\xc1\xb5\x22\x2d\xa0\x00\xae\x48\x0b\xd5\x94\x66\x22\x34\x7f\xb3\x40\xf9\x3d\xcd\x44\x18\xfe\x6d\x40\xf9\x37\xfa\x42\xfe\xea\x92\x80\xdd\x81\x28\xaa\x15\x19\xed\x1c\x3f\x60\xc9\x2b\x31\x04\x64\xe1\x4a\x0c\x01\xdd\x69\x25\x86\x00\x38\x5a\x89\x21\xa0\xf5\xac\xc4\x10\x3c\xb9\x92\xe0\xdb\xe9\xc0\x4b\x12\x7c\xbf\xb8\xc6\x96\x24\xf8\x7e\x83\xbf\xa9\x21\xbc\xd1\xd4\x84\xf2\x37\x0f\x14\xd3\x29\x5b\xdd\x7e\xd1\x8f\x96\x6c\x75\xdb\xf6\xd4\xa5\x20\xb1\xed\x18\xcd\x25\x97\xcc\x7e\x91\x62\x2b\xd3\x17\x4f\x67\xa6\x2f\x9e\x4e\xc9\xfa\xfd\xe2\x0c\x5b\x99\xbe\x74\x7f\x85\xbe\xa0\x31\x2c\xc9\xfa\xfd\x7a\xe2\x25\xeb\xb7\x23\x36\x57\xa6\x9f\x04\x35\xad\x42\x5f\x3c\x83\x92\xe7\xfb\x25\xaf\x70\x15\xc6\x4e\x84\xf6\x92\x3c\xdf\x2f\xfa\xc3\x2a\xf4\xc5\xb3\x5b\xe8\xcb\xf6\x57\x18\xbb\xe7\xba\x32\x76\xcf\xb5\xe4\xf2\x8e\x38\xca\x96\xe4\xf2\x8e\x38\xca\x96\x24\xf1\x8e\x9e\x6b\x89\xdb\x1d\x83\xbf\x32\xa0\xa4\x57\x2d\x09\xd1\x1d\x09\x04\x5b\x8d\x6f\xa2\x3f\xac\xc6\x37\xbd\x46\x8a\x02\xd8\xb1\x99\xba\x50\x7c\x53\x81\x67\x3b\x7a\x06\x3b\xad\x7b\x06\xe5\xae\xd9\x71\x30\x76\x05\x9e\xed\x38\x38\x7e\x0a\x3c\xdb\x71\xfa\x2b\xb4\x80\x76\xb6\x3a\x2d\x78\x3e\x07\x7d\x41\xbc\x2f\x79\xfa\xb7\xf3\x34\x97\x44\xdc\x8e\x38\xa7\xd6\xa0\x2f\x18\xc8\xd6\x60\xb4\xd7\xef\xd1\x17\xcf\xe7\xa0\x3d\x62\x5e\x97\x00\xe5\x76\x82\xd2\x12\x6a\xdc\xb6\xe6\x2e\x39\x76\x76\x42\x03\x5b\xf2\xd8\xef\x04\xb4\x5e\x12\x94\x3b\x61\x1a\x59\xf2\xd8\xef\xe4\x1d\x29\x8f\xfd\x4e\xc5\x4f\x16\x28\x3f\x59\xa1\xfc\xcd\x06\x45\x5f\x84\x3d\x77\x32\x63\x90\xa9\x70\x27\xa2\xb7\xd7\xa2\x2f\x98\xb6\xd6\xa2\x2f\x98\xb6\xd6\xa2\x2f\x08\xf4\xb5\xe8\x0b\xaa\xd4\x5a\xf4\x05\x75\x69\x2d\xfa\xe2\xf9\x5c\xf4\xc5\x3b\x72\xd1\x17\xef\x41\xc5\x48\xef\x84\x23\x70\x29\x46\x7a\x27\xc4\xd8\x5a\xf4\xf3\xf8\x49\xad\x6d\xf2\x5c\xcb\x8d\xb5\x6d\x21\x5e\x8b\x31\x5c\xf7\x9a\xb9\x46\xcd\x5a\xc2\xac\x3b\x23\xd4\x96\x84\xfd\xce\x9e\x79\x09\xfb\x6d\x5b\xf2\x92\xb0\xdf\xce\x43\x5d\x4a\xe0\xde\xd9\xeb\x20\x61\xbf\xb3\xd7\x41\x02\x7d\x67\x8c\x52\x4b\x02\x7d\x67\x5c\x94\xeb\xd0\x9e\xd7\xe8\xd0\x9e\xd7\xe8\xd0\x1e\x7e\x97\x75\x68\x0f\xa5\x6b\xc9\x8f\xb5\xb3\x57\xec\xd0\x1e\xea\xc4\x92\xd0\xde\xd9\x2b\x76\x69\x01\x84\xbe\x2e\x2d\xe0\x29\x5b\x42\xbe\x5b\x86\xdf\xdf\x66\xc9\x97\xc6\xbd\x44\x48\xe9\x4c\x98\xf7\x42\x12\x67\x02\x9e\x16\x92\x38\x63\xaf\x5a\x97\xc1\x7a\x89\x90\xc4\x8e\x09\x5d\x48\x62\xdb\x84\xf7\x43\x37\xd1\x3b\xf6\x43\x37\xf1\x88\x6e\xa4\x74\xc6\x23\xba\x91\xd2\xe5\xf1\x7b\x05\xaa\x41\x69\xaa\x9d\x2f\xbe\x91\xcb\x05\xad\x6e\x0b\x30\xef\xf2\xfa\xbd\x0b\xa5\x7e\x6e\x81\xe2\x5d\xd0\x42\xb6\x40\xf1\x76\x3d\x8a\x2d\x7b\xea\x2e\x38\x7d\x36\xd2\xbd\x10\x60\xb5\x91\xee\x25\xf9\x2b\x9a\x89\xc2\xd2\xee\x40\x5f\xd0\x49\x76\xa0\x2f\xd9\x2d\xd0\x17\x34\xc5\x8d\x1e\x50\xd0\x14\x37\x7a\x40\x41\x43\xd9\xe8\x01\x05\xab\xd7\x46\x0f\x28\xe8\x86\xfb\xa5\x2f\x2c\xed\x7e\xe9\x4b\xf7\x7b\xf4\x05\xe3\xcb\x16\x60\xde\x05\x8b\xd8\x96\x8d\x76\x17\xb4\xc8\x8d\x36\x51\x90\xe0\x1b\x6d\xa2\x20\x56\xf6\x4b\x3f\xa7\x5b\xa0\x9f\x68\x3d\x1b\x4d\xa3\x10\xec\xb5\xd1\x26\x0a\xb6\xb3\x8d\x36\x51\x38\xe0\x1b\x6d\xa2\x60\xd4\xd8\x68\x13\xb6\x41\xef\xc8\x18\xb0\xab\xed\xc8\x18\xb6\x5b\x60\x0c\x68\x52\x1b\x4d\xa3\x1c\xbf\xc7\x18\x8e\xdb\x63\x0c\xd7\x4f\x32\x06\xef\x25\xd4\x89\x8a\xd6\xba\x51\x27\xaa\x77\x0f\xea\x44\x45\x6b\xdd\xa8\x0c\xd5\xbb\x07\x95\xa1\x7a\xf7\x08\xd8\xef\x8a\xd3\x75\xa3\x32\x54\xef\x1e\x01\xfb\x5d\xd1\xd5\x36\x2a\x43\xf5\x5e\x42\x65\xb0\xb5\x7a\xa3\x32\x54\xf4\xdb\x8d\xca\x50\xd1\x6f\xb7\x82\x03\x77\xcd\x7e\x52\xe3\xab\x18\xeb\x36\xa2\xbf\xc2\x0a\x36\xa2\xbf\x7a\xbf\x20\xfa\x2b\x7a\xdc\xce\xb4\x87\xb6\xbb\x0b\xed\x79\x2f\x09\xe6\xef\x8a\xb6\xbb\x0b\xe3\x03\x59\x6c\xd4\x82\xea\xbd\x84\xe8\xaf\x18\xf2\x76\xa1\x2f\xde\x4b\x82\xf2\xe9\x46\x53\x5b\x14\x91\xc8\x5b\x50\x3e\x5b\x7f\xdf\x52\x19\xb2\x23\x19\xb6\x54\x86\x6c\x65\x66\xcb\xe6\x9d\x23\xee\xd9\x2d\x98\x9f\x13\x66\x93\x2d\x75\x22\xa7\x63\xea\x6b\x5e\x72\x79\xfc\x95\xaf\x35\xca\x03\x2c\xb8\x65\xf3\xce\x93\x42\x0f\x5b\xae\xbf\x52\xc0\x97\x5b\xca\x45\xa9\x9f\x16\xbe\xc6\x50\x6c\xcc\xda\xc2\xf9\xd5\xa5\x16\xb6\x70\x7e\xcd\x1f\xea\x6b\x0c\xd5\xc1\x96\x5b\x38\xbf\x39\x89\x65\x4b\x45\x69\x4e\x46\xd9\xc2\xf9\xad\x11\xaf\xb3\x85\xf3\x5b\x43\xad\xdb\x52\x5f\xda\x20\xe2\x62\x4b\x7d\x69\xce\xb3\xdd\x72\x20\xb6\x8d\xc9\x6f\xcb\x81\xd8\xce\x75\x0b\x5f\x63\x68\x2a\xed\xf0\x9b\x2c\x79\xcb\x3c\xd0\x3b\x01\x64\x5b\xe6\x81\xfc\x46\x7f\x64\x68\x72\xbd\xec\x32\x0f\xe4\xf4\xe9\xf4\xd7\xd0\xcb\x43\xe8\xd0\x96\x79\xa0\x84\xe2\xdf\x8e\x26\x09\x3d\x67\x4b\xaf\xaa\xce\xf0\xdf\x32\x1d\xb4\x40\xed\x81\x2d\xd3\x41\xeb\xd3\x94\x86\xde\x11\x08\x5b\x26\xfd\xee\x92\x21\x5b\x66\x85\x74\xcd\xc0\x64\x56\xc8\xef\xe3\xf7\xb4\x7c\x8d\xdc\xf5\x2d\xcd\x2d\x3b\x52\x77\x4b\x73\xcb\x9d\x24\x88\x2d\xbf\x6a\x3e\xd5\x2d\x0c\x28\xb6\x84\xb4\xba\x12\xb0\x96\x6d\x69\x75\xc5\x1e\xf4\x2d\xad\xae\xd4\xe4\xaf\x1c\xb6\x04\xe3\x93\x56\x57\x1a\xd1\x0a\x5b\x2e\x84\x72\x09\xeb\xdb\x72\x21\xd4\x42\x60\xd6\x96\x51\xa3\x56\x92\x60\xb7\x8c\x1a\xd5\x56\xfc\x2d\x6d\xb0\x3a\x6e\x77\x4b\x1b\xac\xe3\xfa\x9b\x5f\xe3\xab\x8b\xaa\x1d\x5b\xda\x60\x7b\x7c\x8c\xe4\x5e\x68\x6f\x71\x0b\x5d\x54\xf5\x93\x43\x9b\xe7\xb8\xbd\xa9\xf9\x24\x78\x6e\xcb\xf5\x90\x6c\x7c\xd9\x72\xeb\xe6\xfc\xf9\xa6\xc6\x57\x2c\x36\xa5\x45\x16\x27\xe4\x6e\x69\x91\xb5\x79\x55\xa4\x45\xd6\x41\xf4\xc0\x96\x16\xd9\x52\xe6\x9b\xd2\x22\x5b\x47\x63\xdf\xd2\x22\x5b\xf5\x4c\x48\x8b\xec\xd5\xc2\x42\x5a\x64\x36\x5e\xd8\xd2\x22\xf3\x7f\x7b\x52\xeb\xd7\x28\x11\xb4\xe5\xdd\xc8\x0e\x23\xdc\xf2\x6e\x94\x40\x80\xdc\x9e\xac\x9f\x77\x81\xbc\x1b\xe5\xf5\x9c\xc9\xbb\x51\x72\x61\xdd\x27\xeb\x67\x41\x22\x47\x75\x19\x66\xad\x32\x04\x95\x83\x9d\x72\x4b\x33\xad\x4e\x85\xd9\xd2\x4c\xab\xcb\x2a\x6d\x69\xa6\xb5\x1c\x53\x5a\x3f\x3b\xed\xb6\x34\xd3\xba\x01\xda\x5b\x9a\x69\x7f\x06\xfd\x94\xf6\xd9\x9d\x13\xbb\x17\x67\xec\xf5\x57\x74\xc6\x9c\x72\xbf\xa5\x7d\xd6\x4c\x22\xef\x96\xf6\xd9\x1e\xb3\x10\x69\x9f\xfd\xb5\x72\x21\xed\xb3\x67\x0c\x5d\x7b\xc3\x22\xbd\x0e\xd2\x3e\xb3\x9d\x76\x5b\xda\x67\xee\x68\xc2\x5b\xde\x94\xbc\x2c\xc2\x15\x6f\x95\x37\xba\xe8\x96\x66\x9a\xcf\x34\xa5\x35\xba\x1e\x91\x32\x02\xf3\x4d\xa6\x9a\x66\xbe\xfa\xc9\xaf\xf1\x95\x85\xe9\x60\xcb\x44\x55\x73\xf5\x93\x53\x54\xe3\x1c\x49\xa3\xad\xcb\x82\x59\x1a\x6d\xdd\x16\x01\x32\x51\xd5\x3d\xdd\x33\xf1\x10\x9b\xaf\xf6\x81\x87\x58\xc4\x49\xdb\x6d\x9f\x95\x96\xb6\xdb\x1c\xe5\xb0\x0f\x7b\x30\x99\xd2\x1e\x9c\x5e\x5b\x69\xc2\xfd\xbd\xfe\xa6\xd6\xe8\xa3\x82\x29\xa2\xab\x2f\x0b\x20\x99\xb6\xd2\x59\x7e\xaf\x8b\xf2\xe9\x90\x96\x9c\x1f\x9f\x69\x99\xb6\x72\xb8\x6e\x6f\x69\xe6\xd1\xd8\xf7\x81\x47\xc6\x1f\xc5\x25\x6f\x59\xbd\x4a\x88\x6c\x64\x59\xbd\x8a\xad\x2d\x5b\x6a\x78\xc9\x18\xc0\xb7\xd4\xf0\xd2\xa9\x98\xb0\x65\x11\x2b\xd7\x5a\x88\x2c\x62\xd5\x2a\xfa\x96\x8a\x5e\x8b\x27\x5e\x7a\x78\x2d\xdb\x94\xd8\xcb\xb4\xbc\x93\xb5\xac\xbd\x9f\xf7\xc4\x5e\x92\x87\x2e\x1d\xbd\xc7\xe1\x27\x87\x36\x5d\xf3\x6f\x1a\xba\xc3\x52\xb6\x32\x68\xf2\x1c\x6c\x5d\xe9\xef\xb9\x5a\xa3\x95\xfe\x5e\x97\x8f\xd1\x65\x69\xd1\x06\x8f\xf4\xf7\x6e\x5b\xcf\x91\xfe\x9e\x9d\x88\x7d\xa4\xbf\xe7\x88\xa6\x78\x1e\xb6\x6e\xf2\x93\x6c\xdd\xe3\x27\xb3\x0e\x3f\x82\xe4\x48\xb7\x2f\x4e\xcc\x3c\x0a\x66\x2b\x89\x5a\x5e\x47\x6e\xb3\x92\x70\x16\x1d\x59\xe7\xca\x41\x57\x3b\xb2\xce\x55\x5b\xee\x8e\x02\xdd\x6a\xcf\x6e\x7d\x49\xf6\x82\x4f\x8e\x10\x42\x3b\xc1\x2d\xe8\x68\x3e\xd5\xbf\x5d\x0e\x2a\xfd\x94\x4b\xad\xdb\xe0\x71\xe4\x52\x4b\xa7\xf2\x9e\xd0\x43\x3a\x84\x93\x1d\xa1\x87\xfc\x14\xbf\xc7\xf8\xae\x9f\xe4\x68\x12\x9c\x74\xe4\x6e\x2b\xe1\xf1\x7b\x1a\x5f\x47\x9b\x38\x42\x16\x2d\x20\x10\x8e\x90\x45\x2b\x1c\x9c\x23\x57\x5c\x3b\xc9\x4f\x4a\x3c\xc4\xea\xf6\xbe\xc6\xd7\x07\x7a\xea\x11\xea\x48\x27\xbb\x75\xb4\xb3\xee\x6f\x6a\x7f\x5a\x53\x3c\x8a\xfe\x28\xf6\xd1\x1f\xb9\xf0\xb2\xab\x93\x1d\x21\x92\xfc\x02\xec\x8f\x10\x49\x7e\xa9\x01\x76\x84\x48\xca\x18\xa6\x32\xcc\x94\x99\x97\x0b\xaf\xdb\xcc\x76\x84\x56\xba\x63\x8f\x8f\xd0\x4a\x7e\x31\xc5\x1c\xa1\x95\xf2\x10\x59\x70\x84\x56\xda\xbd\xfe\xe6\x44\xa7\x64\xe6\x85\x56\x4a\x18\xee\x99\x8e\xa6\x83\xe0\x8e\xd0\x4a\x49\x38\x95\xcf\x8b\x78\x47\x8f\x3b\x42\x2b\xc5\xee\xd9\x23\xbb\x68\x71\xd1\x82\x23\xbb\x68\xb3\x7d\xf3\x44\x58\x0f\xac\xf5\x08\xc9\x74\xa3\xaa\x23\x24\x93\x1b\xa6\xad\x23\x24\x53\x5f\xef\x17\x21\x99\x6a\x83\xdc\x11\x92\xa9\x36\x24\x1c\x21\x99\xba\x51\x58\x8e\x90\x4c\xb5\xc7\xe4\x08\xc9\x34\x57\x85\x3c\x42\x32\xad\x73\x36\x8f\x90\x4c\x9b\xd5\x5f\x61\x7f\x82\x09\x8e\xec\xa9\x7d\x73\x36\x8f\x50\x4e\x71\xe2\xf7\x11\xca\x29\xae\x15\x73\x12\xfc\xc5\xbb\x47\x46\xd3\xea\x18\xfe\x23\xa3\x69\xb5\x78\x38\x42\x40\x6d\x20\xd4\x8e\x10\x50\xb6\x4d\xf8\xc8\x68\x5a\x5c\x92\xe8\xc8\xed\x59\x27\x8a\xc7\x11\x3a\x6a\x33\xb8\x75\xf1\x97\xd7\x3b\x39\xb1\x3f\x9b\xbf\x82\xfa\xe2\x59\x4a\xa0\x87\xed\xf6\xd8\x9f\x3e\x8d\x09\xf4\x80\x5a\x70\x84\x9c\xf2\xe7\xac\x08\x39\xe5\xf7\x0b\x05\xfc\x26\x4b\x3e\x99\xad\x4b\xd2\xc5\x51\x3c\x65\x8e\x68\x7c\x47\x80\x2b\x7f\x0e\x40\x66\x69\xd1\x53\x8f\x6c\xb4\xf9\x10\xd8\x73\x32\x52\xd3\x07\x27\x5b\x6a\xba\x2b\x9d\x0d\xc9\x80\x64\xbf\x2d\x69\xb9\xd3\x13\xed\xc5\xbf\x69\xeb\x3a\xb8\xec\x08\xc4\x15\xc3\xe7\x93\xad\xb9\xb1\x44\x99\xad\x8b\x2e\x7a\x04\xe2\xca\x6e\xa6\xa4\xd9\x3c\x98\x00\x8e\x62\x34\xeb\x83\xdc\x3a\x02\x78\x35\x01\xf3\x8f\xec\xbe\x35\x0d\x3f\xa9\xa3\xf9\x39\x1c\x02\x7f\x35\x03\xb4\x8f\xc0\x5f\x6d\xee\xa7\x6c\xc2\xd5\x19\x81\x47\x36\xe1\x3a\xb6\xbf\x39\xd0\x6f\x19\xbb\x80\x61\xdd\x66\x91\x02\x86\xd5\x49\x1e\xa7\xa0\xf5\x04\xff\x76\x44\x45\x7f\xe5\x82\x25\x18\x7b\x05\x54\x11\xe7\x7d\x04\x0c\xdb\x2c\xa6\x74\x34\xed\xb4\x3b\x02\x86\xfd\xf3\x4d\x01\xc3\x6e\x5b\xeb\x11\x30\xec\x0d\x1b\xf4\x11\x30\xec\x0e\x47\x3a\x02\x86\x7d\x64\xc6\x2e\x8b\x74\x9f\x16\x39\xb2\x48\xa7\x0b\xf8\x3b\x02\x8d\x39\x67\x7f\x45\xac\xa7\xf9\x70\x08\x34\x66\xe7\x23\x1e\x81\xc6\xec\xbc\xad\x23\xd0\x98\x57\x72\xaf\xb5\x7e\xae\xe1\x71\x1a\x47\x93\x8a\x6e\x47\xa0\xb1\xb4\x64\x4a\x47\xd3\x79\xa1\x47\xa0\xb1\x34\xf7\x4c\xa0\xb1\x1c\x2a\x34\x1c\x81\xc6\x9a\xd1\xa0\x8f\x40\x63\x2d\xd5\x4f\xb2\x7e\xde\x75\x42\x86\x75\x00\xd0\x8f\x90\x61\x5d\xc0\xcb\xd3\xcc\x7a\x4c\x69\xfd\xec\x9e\x3d\x42\x86\xcd\x48\xe6\x08\x19\xb6\x61\x36\x28\x64\xd8\x96\xd7\x4f\xc8\xb0\x17\x42\xe2\x8e\x90\x61\xb7\x2b\xfc\x74\x03\x7b\x53\x88\x7e\xa2\x38\x4e\x07\xd8\x9b\x85\x08\x19\xe6\x64\x11\x07\x32\x2c\x16\x8d\x20\xc3\xbe\xfd\x5b\x65\xae\xfd\x4d\x89\x8e\x05\xd6\x3d\x46\x86\x16\x24\x42\x86\xe5\x45\xc7\x3b\x20\x43\x57\xeb\x3b\x20\xc3\xec\xdd\x0a\x32\xcc\x20\xca\x03\x32\x74\xc2\xf8\x01\x19\x56\xf4\xfe\x03\x32\x74\xb6\xe7\x19\xb0\x56\x32\x08\x0e\xc8\x30\xa3\x8b\x1e\x90\xa1\x0d\x72\x07\x64\x58\xad\x24\x18\x19\x7a\x06\x41\x86\x4e\x93\x39\x46\x86\xde\xbb\x20\x43\x17\x1f\x3d\x20\xc3\xd0\xfc\x9e\x44\xe3\x0b\x2a\x3e\x42\x86\xed\xbd\xee\x8b\xd6\xcf\xfe\x85\x23\x64\xd8\xf2\xa7\xd7\x5a\x3f\x07\xeb\x1d\x21\xc3\xe6\xfc\xe3\x23\x64\xd8\x86\xf9\x84\x90\x61\x73\xad\x9f\x23\x64\xd8\x23\xd1\x34\x47\xc8\xb0\x17\x90\xf6\x11\x32\xec\xad\x98\xd2\xf9\x1b\xfb\x47\x11\x17\x47\xa0\xb1\xdb\x2b\x7f\x00\x8d\xc9\x12\x5c\xa0\xb1\x64\xec\x4e\x47\xa0\xb1\x14\xeb\x01\x80\xc6\xe6\x89\x10\x68\xac\x4e\x82\x3d\x02\x8d\x6d\x79\xa1\x05\x1a\xbb\x03\x4a\x8e\x40\x63\xb6\x6d\xf0\x08\x34\x66\x67\xd5\x1f\x81\xc6\xec\xba\x62\x47\xa0\xb1\xb8\xf6\xef\x59\x3e\x9a\xfe\x8d\xa3\x69\x41\xb2\x38\x9a\xd6\xea\x00\x8d\xc9\xda\xae\x40\x63\x6b\xdd\xbf\x55\x98\x8d\xdb\xd3\xf8\x1c\x3a\x74\x00\x94\x63\x98\x1a\x62\x44\x1e\x3b\x80\xd2\xde\xd9\x23\x40\x99\x3f\xda\xa0\x00\x65\x7e\xcd\xe6\x05\x28\xb3\x53\x4d\x8f\x00\x65\xde\xd8\xce\x8e\x00\x65\xb1\xcf\xfc\x08\x50\x96\xc7\x7a\x87\x00\x65\x71\x4a\xc4\x11\xa0\x2c\x46\x08\x47\x80\xb2\x38\xc4\xfd\x08\x50\x56\x57\x17\x39\x02\x94\x75\x58\xb7\x10\xa0\x6c\x05\xb3\xc2\x11\xa0\x6c\xcb\xda\xa0\x00\x65\xaf\x5e\x31\x01\xca\x74\xa2\x7f\xd3\xf8\xa6\x99\xf7\x06\xf4\x9b\xf5\x6c\x8c\x36\xde\x82\x00\x4a\xbb\x80\x0e\x80\xf2\xc3\x18\x00\x94\x2e\x0a\x79\x00\x94\x4e\x5b\x3e\x00\x4a\xa7\x26\x1f\x00\xe5\x07\x67\x08\x50\x76\x17\x7c\x3a\x00\xca\x88\x4d\xff\x00\x28\x9b\x59\xb9\x00\x65\x3e\x9f\x16\x1a\xb8\xcd\x5f\xd1\xd1\xcc\x18\x7b\x8e\x00\x65\x7f\xbc\x93\x0d\x28\xcd\x50\x00\x94\xb3\xfb\x3d\x44\x87\x05\xac\x51\xa3\x05\x09\xa8\xb1\x99\x0d\x82\x1a\x27\x88\xf2\x5c\x44\xbf\x45\x80\x50\x63\x4d\xd6\x99\x41\x8d\x09\x53\xcc\x01\x35\x4e\xb3\x10\x50\xa3\xab\x85\x1d\xa1\xc6\xe6\x02\x9c\x07\xd4\xd8\xad\x09\x5f\xaf\x1f\x33\x01\x6a\xcc\x9e\x79\x50\x63\xf7\x2e\x07\x35\xba\xee\xf1\xb9\x18\x15\x09\x07\x3c\x42\x8d\xe5\xf5\xf8\x2e\x5a\x2b\x09\xc0\x47\xa8\x31\xdd\xa6\xf1\xdd\x07\xad\x0e\x0b\xf8\x05\x35\x46\x0c\x02\x17\xd4\xe8\x18\xdb\x0b\x6a\x3c\x18\x6d\xae\x50\x63\xb1\x67\xe0\x82\x1a\x5d\xd7\xef\x0a\x35\xd6\xa7\xbb\x05\xb4\x72\xc4\xfb\x15\x6a\xac\x2e\x45\x7a\x85\x1a\xab\x43\x1a\xaf\x50\x63\xb3\x2a\x75\x85\x1a\xbb\x4d\x62\x57\xa8\x31\xc7\xe2\xf7\x40\x1d\xdd\xbf\x69\x7f\xde\x62\xea\x82\xb8\x78\x52\xa8\x31\xbb\x40\xd8\x0d\x18\x74\x10\x7f\x37\x78\x7c\x07\x2a\x82\x80\xfc\x9b\xc6\xe7\xe2\x9c\x37\x18\x15\xfb\x2b\x42\x8d\xfd\x43\xc1\x5f\x30\x94\x5c\xa1\xc6\x3c\x39\x71\x37\x80\x3a\xc2\x8f\x58\xf2\x05\x50\xba\x02\xd9\x15\xa0\x6c\x37\xfb\x23\x56\xd8\x13\x94\xb6\xee\xb3\xfd\xa4\x58\x8f\x8b\xe6\x5c\x01\xca\x9c\x4d\x09\x50\xe6\xf9\x98\xd2\xd0\x37\xc7\xe1\x02\x28\x37\xe0\xfd\x0a\x50\x96\xec\xa1\x03\x28\x33\x47\xf3\x0a\x50\x96\xe6\x2d\x21\x40\x59\x5c\xdd\xe0\xbe\x2c\xed\xf1\x6f\x0d\x43\x89\xdf\xd3\xd0\x6d\xfc\xbf\x02\x94\x75\x67\xff\x26\xd1\x71\x71\x4b\x5c\x01\xca\x16\x3e\x3d\x43\x6a\x7e\x5a\x97\xd4\x2c\xdb\x5f\x91\xd4\xbc\x48\xe9\x2b\x40\xd9\xae\x9f\x14\xa0\xec\x0f\xda\xf5\x15\xa0\xec\xfd\xf3\x64\x44\xfb\xcc\x50\x62\x3d\x93\x23\x76\x05\x28\xd3\xc1\x4e\x79\x05\x28\xd3\x49\x7e\xb2\xb2\x95\x36\x94\x6d\x59\xcc\x59\x44\x6b\xf5\x66\x15\xa0\xcc\xb6\xe3\xdd\xc8\xd1\xbc\xee\x19\x5b\x17\x41\x79\x05\x28\xb3\x23\x12\xae\x00\x65\x8e\xc7\xed\x69\xfd\x92\x67\x50\x80\x32\xbb\x64\xcf\x15\xa0\xcc\x2e\x31\x73\x05\x28\x73\x85\xcd\x5f\x01\xca\x3c\xdd\xb3\x84\xc1\xa3\x99\xc2\xe0\xe1\xcd\x9a\x30\x78\xa0\x2d\x5d\x00\xa5\xad\xc7\x37\x21\xfa\xd1\xae\xaf\x00\x65\x71\x31\x9a\x9b\xec\xca\x61\xc5\x04\x28\x4b\xc7\xb4\x75\x05\x28\xcb\xe7\x10\x0b\x50\x96\x49\x7d\xdf\x9b\xf0\x67\x1c\xb7\x27\xd6\xba\xd0\xbc\x6f\xc6\x5e\x0c\x80\xbd\x19\xd6\x8a\x3e\x7d\x85\x1a\xeb\x8b\x53\xf2\x0a\x35\x56\xe3\x93\x9b\x41\x55\x5e\xdb\x6c\x83\x07\x3b\x44\xa8\xb1\x7e\xfa\x29\xd4\x58\x47\xf5\x7b\x0d\x13\x80\x9f\xec\x68\x7c\x7e\x52\xe7\xef\x33\x2f\x19\xad\x0e\x23\xc3\x15\x6a\x6c\xf6\x98\x5c\xa1\xc6\xf6\x7a\x47\x66\xb4\xba\xe2\x11\x69\x7f\x4e\x02\x38\xaf\x50\x63\x73\xa1\x80\x2b\xd4\xd8\x5c\x02\xf3\x0a\x35\x76\x07\xeb\xdd\x02\xaa\xf2\xe9\x17\x6a\xec\x8e\x5c\xba\x05\x5b\x2b\x0e\xb6\x2b\xd4\xd8\xed\xe7\xb9\x05\x54\xe5\xdd\x2a\xd4\xd8\x97\xc7\x2e\xd4\xd8\xb7\x67\x50\xa8\xb1\x5b\xa7\xbc\x42\x8d\xd9\xde\x94\x2b\xd4\x98\x5d\x38\xf7\x82\x1a\x5d\x63\xfa\x0a\x35\x76\x17\x28\xba\x42\x8d\xbd\xfa\xe4\x08\x35\xf6\x83\x0e\x7b\x71\x27\xa6\xe0\xdf\xb4\x7e\x8e\xbe\xbf\x42\x8d\xf5\x9a\x83\x09\x35\xb6\x8f\x58\x11\x6a\x6c\x07\xb5\xee\x82\x1a\x1f\x73\x14\xa1\xc6\xdc\x70\x1c\xdf\x0a\xea\x48\xfe\x66\x47\x04\x98\x02\x15\xa3\x90\x5d\x50\xe3\x1c\x9c\x23\x50\xa3\xd5\xdd\x8b\xab\x71\xd4\xfe\x23\x96\x6c\x2f\xe4\xe7\x23\x78\x21\x7d\x34\xf1\x42\xda\x86\x72\x9b\x6d\xad\x2c\x51\xc3\xe0\x61\x59\xd8\xb0\xd5\x5d\x53\x09\xf3\x07\x8b\x22\x40\x99\x9d\xd3\x75\x05\x28\xcb\x4b\x14\xe8\x15\xa0\x2c\x4e\x5f\xbd\x02\x94\x65\x7a\x0b\x0a\x50\x96\xbd\xfc\xa4\x86\xee\x4c\xad\x8b\xab\x31\x02\x25\x6e\xc3\xcb\x9a\xfd\x1b\xac\xb5\xb8\x3d\x6d\xdd\xe3\xc3\x01\xa0\xcc\x38\x33\xaf\x00\x65\xa9\xc0\xee\x2b\x40\x59\x86\xdb\xeb\xd8\xb2\x30\xda\xdc\x8e\x97\x15\x8d\xf6\x0a\x50\xb6\x43\xd4\xc1\x15\xa0\xec\xdd\xc2\x42\x80\xb2\x14\x8f\x5d\x80\xb2\x4c\x1f\xf7\x8e\xd6\xe3\xad\x24\x40\xd9\x67\xf4\x57\x70\xf3\x1c\x7f\x85\xad\xfb\xba\x3d\x0c\x02\x16\x01\x00\x4a\x17\x1a\xbf\x00\xca\x7e\xfd\x1e\xae\x54\xec\xfd\x77\xe0\x8a\xf3\xc1\xc1\xd5\x38\xa6\x7f\x63\xeb\x2e\xff\x16\x01\xef\xb4\x20\x40\xd9\xec\x25\xbf\x02\x94\xad\x5b\xd6\x0b\x50\x36\x3b\x61\xae\x00\x65\x7f\xa2\x9f\x6c\x38\x64\x19\xed\xc0\x55\xec\x9e\x09\x50\x66\x47\x24\xdc\x81\x9b\xe7\x43\x69\xfd\x26\x38\xea\x0e\x1f\x4d\xe6\x65\xe0\xc6\x0a\xee\x19\xae\x38\x62\x5d\xee\xb4\x56\x47\x0b\x13\x5b\xdd\x87\xb2\x2d\x99\x16\x04\x28\xcb\x8b\x23\xf0\x0a\x50\x96\x66\x81\x20\x40\x59\xba\x47\x0b\x6a\x2c\x5c\xd4\x70\x41\x8d\xae\xbb\x70\xa7\x6d\xc9\xac\x1f\xae\xc6\xf7\x98\xc2\xd5\xe8\xdd\x83\xab\x31\x7f\x9e\x5c\x58\x88\xfd\xcd\xcd\x8a\xb9\x2f\xa0\x0e\xc0\xfb\x15\x6a\xac\xd3\x63\x10\x6a\x6c\x4e\x3b\xbf\x42\x8d\xed\xb3\x43\x16\xae\x70\x50\xc7\x15\x6a\x6c\xd3\x2d\x08\x35\xb6\x6b\xe5\x69\x79\x7f\xfa\x37\x44\xbf\x19\xdf\xc2\x15\x8e\x01\xf0\x82\x1a\x93\xd9\xee\x02\x15\x9b\x79\x0b\x35\x96\x61\xce\x20\xd4\x58\x9d\xb2\x7d\x71\x43\xf6\xe6\x27\xc5\x7a\x3a\x86\x8b\x2b\xd4\xd8\x5e\xac\xce\x77\xe3\xce\xb7\xca\xb7\x0d\xfa\xd9\xc9\x42\x86\xe9\x9a\x5d\xe3\x6a\xfc\x30\x68\x21\xc3\xf2\x10\xb2\x79\x37\x3c\x04\x94\x7a\x85\x0c\xcb\x32\x0f\xd9\x88\xbf\xe0\xf7\xd0\x4c\xad\x4f\x1b\x19\x9a\x99\x6e\x23\x5f\xbf\xa7\x31\x54\x30\xc8\xdd\x18\x15\x87\xfb\x79\xe8\x99\xdb\x03\x59\x70\xc9\xc1\x3d\xec\x41\xf3\x97\x83\x3f\xc3\x7a\xb8\x90\x61\x36\xae\xb9\x42\x86\x59\x95\x03\x7f\x9b\x25\x1f\xec\xc5\x80\xe2\x7b\x60\x9f\x00\xb5\x2b\xd0\x98\xab\xa5\x2d\xa0\xb1\x5b\x77\x3a\x44\x32\xf8\x50\x09\x34\xe6\x8e\x95\xf4\xe2\x85\x74\x8d\xa5\x0b\x68\x74\x51\xf7\x0b\x68\xdc\x9f\x01\x6d\x1c\x49\x0c\x56\xa0\x31\xdb\x01\x75\x05\x1a\xf3\xf5\xd1\xbc\x76\x05\xf0\x15\x5c\x8d\xd9\x92\x18\x57\xa3\x53\xb6\xaf\x80\x61\xa9\xd6\x8b\x05\x0c\x4b\xb3\x5e\x25\x60\x58\x9c\x1a\x79\x05\x0c\xcb\xf0\x06\x11\x30\x2c\xd3\x0c\x5a\xc0\xb0\xac\xd7\xdf\x9c\x2c\x3b\xdb\x0c\x60\xb8\x88\x17\xbd\x00\xc3\x6d\x4d\x11\x77\xe2\x47\x86\xe2\x4e\x4c\xda\x74\x81\x4b\xb5\x6a\x12\x26\x08\x8f\x80\x61\x25\xea\x34\x3c\x0f\xc0\x57\x26\x87\xf0\x3c\xb8\x4b\xc5\xca\xc3\x23\x60\x58\xb3\xb4\xac\xf0\x08\x18\xd6\xa6\x03\x10\x1e\x80\x61\x3b\xfe\x4d\xda\x19\x1e\xe6\xf0\xe0\x32\xec\xd5\xed\x4d\x9c\x1b\x19\x0a\xbb\xb6\xf4\x80\xf0\x3c\x78\xbb\xa7\x9f\x04\xfc\x35\xb7\x7e\xd1\xea\x18\x83\xc0\x5f\x23\xed\x21\x3c\x02\x7f\xed\x91\x1b\x24\x3c\x01\xe3\x44\xe0\xbd\x00\x9b\x48\xf4\x2c\x10\x2c\x94\xfc\x1b\xc1\x42\x12\x5c\xe1\x11\xf8\xeb\x40\xe4\xf0\x00\xfe\xa2\x42\x1a\xc3\x23\xf0\xd7\xdb\x61\x96\x04\xfe\x3a\xd6\xea\xf0\xd8\x2d\x58\x18\x91\x50\x5c\x3f\xdd\x4f\xe2\xb1\x5f\x8c\x28\x70\x8c\x2a\x63\x00\xc5\x25\xe9\xa9\xe1\x11\x8a\x2b\xef\x39\x50\x18\xc8\x32\xad\x0b\xc5\xf5\xb0\x69\x4f\x28\x2e\x67\xe9\x6a\xe1\x11\x8a\xcb\xa4\x2f\x84\x47\x28\x2e\x8f\xc0\x4c\xbc\xb8\x95\x8e\xdb\xd3\x3e\x7b\x17\x33\x81\x5b\x90\x4a\xc0\xe1\x79\x31\xb0\x78\xdd\x85\xe2\xda\xb8\xee\x0b\xbe\x95\xee\xaf\x68\x8d\x42\x36\x25\x51\x45\xbc\x47\x78\x70\x0b\x46\xcf\x35\x6e\xc1\xe8\x75\x8f\x18\x20\x32\x73\x2d\x14\x57\x30\x5f\x85\x47\x28\xae\x50\x71\x30\x3c\x11\x03\x60\xe5\x9b\x11\xdb\x7c\xf4\x7b\x85\xfd\xc2\xba\x0b\xc5\xb5\x56\x99\x6b\xa1\xb8\x5c\x3c\xd7\x42\x71\xf9\xb3\x0b\x22\x6c\x30\xf9\x9b\x66\x83\xfe\xa6\x55\x0d\x3f\x89\x81\xec\xba\x2f\xf8\x56\x82\x29\xf1\x82\xee\x9e\x81\xe2\x4e\x65\x8d\x70\x0b\xa6\x4e\xeb\x42\x71\xb5\xbb\x2f\xa0\x38\x12\x7f\xc2\x23\x14\x57\x9e\xc2\x1a\x25\x0c\x10\x8b\xd6\x41\x71\xb1\xb2\xb6\x09\xdb\xfc\xa1\x9f\x09\x03\xc4\x36\x85\x28\x1e\x6e\x61\xd0\x33\xf7\x45\xe3\xbb\x2f\x3b\x0b\x14\xf7\x04\x66\x49\x28\xae\xa6\xfc\x03\x2d\x39\x3c\x02\x78\xbd\x7b\xd3\x01\xf0\xee\x62\xe8\x99\x60\x93\xc9\xf2\x65\xcc\xda\x93\x06\x04\xf0\x0a\xb6\x9e\xf0\x08\xe0\x35\xae\x5e\x09\x0f\x6e\x41\x5c\x1d\xe1\xc1\x2d\x38\x0e\xdd\x14\xc0\x6b\xe3\x65\x92\x04\xf0\x4a\xf5\x44\x18\xe0\x79\x19\x0c\xf0\x2e\x9b\x40\x00\x2f\x73\x57\x48\x78\x70\x0b\xae\xe3\xaf\x00\xd0\x3f\xed\x69\x69\x8f\xd9\x8b\x00\x5e\xee\xc1\x94\xd8\x4b\x8c\xf4\x53\x00\x2f\x9d\x48\xcf\x0a\x11\x09\xd3\xbf\x29\x22\xe1\x26\x53\x91\xc3\xc8\x51\x29\x88\x31\x6f\xba\x82\xdb\x73\xb1\x60\x85\x60\x21\x1f\x1c\x01\xbc\xc2\x5d\x63\x81\x3b\x09\x4b\xf6\x41\x15\xc0\x2b\xa3\x31\x5a\x01\xbc\x32\x27\x23\x12\xc0\x2b\x27\x31\x76\xdc\x82\xf5\x98\x02\x00\x99\x09\x17\x22\x4a\x82\x7b\x26\x11\xb0\x37\x14\x6e\xc1\xb2\x98\x5d\xdc\x82\xcd\x2c\x4b\x00\xaf\x73\x1d\x4f\x78\x70\x0b\xc6\xec\x27\xb5\x75\xd3\x34\xa5\xad\x7b\xa7\xbf\xa9\xa3\xf9\x39\xee\x02\x78\x35\x4f\x66\x02\xb7\xe0\x63\x76\x26\x80\x97\xb3\x67\xa2\x5a\x4b\x66\x0c\xd5\x01\x6b\xfe\xca\x42\x3b\xf3\x7b\xb8\x75\x3d\x9f\x42\x71\x65\x1f\xf6\x19\x6e\xc1\xe3\x7e\xe2\x16\xbc\x85\x6f\xe2\x16\x24\x9a\x26\x70\x57\x63\xcd\x3e\xe0\xc4\x92\x3e\x66\x0c\xc4\x92\x52\xc2\x2a\x70\x57\x63\xcb\x16\x63\xc4\x92\xf6\xe6\x27\xc5\x7a\x86\xfb\x22\x14\xd7\x66\xa6\xd7\x8d\x88\xa0\xc0\x3a\x34\x44\x78\xf7\x7b\xa0\x80\x6c\x0a\x14\xe0\x79\x01\xc5\x9d\xc7\xef\x61\xdb\xcd\xee\x0b\x06\x40\x9f\x00\xa1\xb8\xdc\x1e\xd6\x08\xb7\x60\xcb\xcc\x35\x6e\xc1\x53\xfc\x1b\x28\xe0\xa1\x9f\x9d\xf5\xeb\xac\x58\xc7\x00\x78\xfc\x4d\xdc\xd6\x16\x4e\x42\x71\x75\x6d\x53\x1a\x5f\x9d\xf4\x1a\x14\x47\x96\x68\xe0\xfe\xc7\x74\x2c\x02\x8c\xe2\x2c\xb4\x41\x71\xb5\xb8\x3d\xa9\x59\xfd\x75\x5f\x70\xeb\x9a\x95\x0b\xc5\xe5\x35\x99\xeb\x01\x6b\xf5\x69\x14\x8a\xcb\x64\x6d\x06\xee\x7f\x2c\x24\x91\x05\xee\x7f\x2c\xc9\xbb\x00\xb7\x60\x74\x3f\x41\x71\xe1\xb2\x2a\xa0\xb8\xd6\xd8\x21\xb8\x05\x97\xf7\x27\x28\xae\x34\x3f\xc9\xf8\xb6\x9f\x44\x8d\xfc\xb4\x0e\x6b\xf5\xb9\x1d\xb0\xd6\x4f\x7b\x18\x70\xcd\x68\x85\xe2\xf2\x6b\xd5\x46\x28\x2e\x93\x08\x17\x1e\x50\x5c\x0d\x8c\x0f\x14\xd7\xe2\x0f\xca\x0e\x05\xae\x9b\xcc\xcd\x32\x74\x12\xec\xf5\x30\xb9\x13\xd6\x6a\x19\x2a\x80\x97\xd7\x75\x03\x05\xbb\x21\x03\x02\xe0\x9d\xe1\xdf\x24\x55\xae\x0f\x3f\x6e\x41\xee\xc4\x08\x0f\x00\x2f\x06\x26\x17\x80\x17\x1b\xc7\x08\x80\x97\x82\xfb\xa2\xa3\xd9\x7c\x8c\x88\x25\x6d\xd7\x4f\x02\x60\x17\x2d\x10\x4b\x4a\x69\xc9\xf0\xe0\x16\x3c\xd6\xb9\x70\x0b\x1e\x1f\x77\xdc\x82\x24\xd6\x06\xae\xb7\xac\xc1\x3a\xc9\x72\xb0\x1e\xfd\x5c\xd8\x06\x2b\xed\x2d\xb4\x4f\x6f\xa5\x65\x8f\x3d\x63\x17\xc0\x6b\xc4\x6b\x07\xae\xb7\x6c\x7d\xf8\x3d\x69\x3d\xcb\xcc\x74\x11\xcc\x76\x19\x11\x71\xa6\xc7\x3a\xc2\xb2\xdb\xc5\xbf\x5d\x2c\x7e\x7c\x53\x6e\xc1\xfe\xf8\x80\x6f\x6c\xd7\x16\x55\x06\x7f\x66\x75\x1b\x8f\xaf\x0f\x9c\xc0\x5f\xaf\x1e\x11\xe0\x6f\x6e\xe6\x0c\xb7\xe0\x47\xf7\xdd\xd8\xe6\x7d\xdc\x01\x7f\xef\xf0\x93\x02\x7f\xb1\xf8\x37\x0c\x48\xc5\x7d\x21\x58\xcf\x42\x1b\xf0\x37\x3d\xbb\xc4\x99\x9e\xce\x2c\x09\xfc\xb5\x69\x01\x24\xf0\x97\x9b\x67\xe9\xe0\xf6\x34\xe3\x3b\x20\x20\x8b\xf7\x03\x02\xf2\x68\x05\xfe\x4a\xb1\x78\x10\xc2\x2b\xcb\x3a\xba\x10\x5e\x0d\x16\x4e\x42\x78\x35\x2c\xb7\xc0\xd1\x34\x33\x3d\x68\xde\x81\x31\x38\xce\xd4\x8c\xfd\x60\x1b\x34\x06\x11\xc2\x4b\x67\xfb\x37\xdc\xba\xc3\xed\xe9\x68\x86\xe5\xdf\x38\x9a\x9b\x23\x0d\xc2\x4b\x0f\x4f\x82\xf0\xc2\x60\x7c\x20\xbc\x5a\x69\xe1\x5a\x2b\x67\x5e\x2e\x6e\xeb\xcd\x7c\xca\x2d\x58\xb6\x47\x04\xfa\xbb\xd5\xdf\x84\xb5\xfa\x54\x09\xfd\xd5\x0f\x33\xbd\xec\x4f\x2b\x2c\xd7\xaa\x0d\xab\x22\xf4\xd7\x92\xd7\x4f\xe8\xaf\xbf\x66\x44\x04\x93\x72\x47\x4c\x78\x40\x7f\xb9\xbb\xd7\xc4\x72\x7f\x7e\x23\xe2\x02\x01\xc4\x7d\x9a\x95\x32\x63\x81\xfb\x34\xab\xc5\x18\xf7\x69\xb6\x58\xfd\x64\x04\x2b\x15\x28\xdc\xba\xc1\x4f\x12\x11\x04\xfe\xe2\x3e\xcd\xbc\x14\x7d\x15\xb8\x4f\xb3\x91\x55\x1c\xc2\x43\x2c\x3e\x7a\x71\x90\x5b\xb0\x3f\x88\xd4\xf0\x80\x3a\x3e\xef\x31\xbe\xc7\xdf\xc4\xb6\xdb\xdd\x1e\x08\xbd\xfb\xb7\x03\x62\xee\x50\x97\xdd\xc3\x88\x84\x0c\x6b\x41\x71\x0c\x42\x86\x95\x3a\xd2\x21\x80\x0c\x33\x7b\x3e\x18\x19\x3e\xa6\x34\x3e\xdc\x82\x21\x04\x22\x2e\xe2\x0f\x2e\x7a\x0a\x41\xa0\x31\x53\x5c\x2e\x04\xe2\x4c\x03\x6c\x37\x04\xdc\x66\xc5\x8d\x77\xe0\x6c\x86\xd2\xd2\x16\x34\xd3\x80\x5b\xb0\xa2\xf5\x04\x01\xca\xd6\xae\x07\x24\x40\xc9\x65\x47\x21\x04\xb4\x9e\xe0\xe1\x69\xe8\xcf\xa6\x05\x01\xca\x1a\xd1\xf1\x82\x00\x65\xe5\xbe\xb4\x10\x5e\xd2\x10\x22\x13\x68\x40\x59\x68\x4f\x80\xb2\xf7\xeb\x27\x71\x9b\x61\x10\x08\x00\x4a\x22\x60\x43\x00\x50\x7e\xa6\x0c\x40\x39\x83\x9f\xd4\xf8\x9e\xe8\xd6\x75\x34\x5f\xf7\x13\x40\x59\xbc\x5d\x04\x28\x3b\x91\xc1\x21\xbc\x44\x5c\xc8\xf3\x1e\x02\x6e\xc1\x0b\x10\x0d\x2f\x11\x17\x1c\xb8\x00\xa0\x24\x77\x29\x04\xe2\x4c\x29\x23\x18\x02\x80\x72\x22\x51\x43\xb4\xe8\xa0\x75\x01\xca\xba\x10\x4e\x01\x40\x79\xba\xdf\x2b\x84\xf2\xd0\x33\x00\x65\x2f\x8c\x4f\x80\xb2\x61\xd5\x0b\x21\x02\x98\x61\x52\x21\xe2\x56\xf2\x31\x22\xce\xb4\xa1\xf1\x05\x00\x25\xf6\xc6\x10\x0c\x28\x7d\x70\x22\xeb\xe7\x99\x17\xa0\xac\x84\xdb\x87\x90\x30\xcc\x3c\x8c\x2f\x61\x98\xf1\xe1\x10\xa0\x6c\xd5\xab\x92\x70\x2b\x79\xa5\x93\xd3\x80\x18\x3b\x6e\x41\x43\xe4\x40\x9c\xe9\x1d\xcc\xa0\x00\x65\x4b\x0f\xad\x03\x28\x03\xba\x4c\xc0\x2d\x18\x3f\x4f\x92\xa2\x50\xdc\x17\x58\xeb\x70\x7b\x1a\x9f\xc5\x51\x48\xb0\x56\xef\x72\xe2\x4c\xcd\xca\x03\xa8\xd1\x46\xa2\x80\x5b\x70\x04\x53\x1a\xdf\xf2\x37\x71\x0b\x5a\xff\x0b\xb8\x05\x17\xc0\x37\x08\x35\xb6\xd7\x33\x91\x89\xa3\x45\x34\x06\x50\xe3\xf5\x3e\x13\x6a\xec\x61\xf9\x49\xb9\x75\x2f\xb8\x2d\x08\x35\xe6\x10\xfd\xcd\x81\xa5\x9e\xf1\x65\xd2\xb8\x92\xbf\xc9\xfa\x1d\x56\x25\x3b\x8d\xcb\xfd\x3c\x68\x9f\xa6\x34\xbe\xbc\xf8\x0a\xc1\xa4\x63\x33\xbb\x05\xd4\x81\xc2\x12\x08\x26\xed\xaf\x7f\x13\xeb\xc1\x4a\x1a\x42\xc1\x6d\xf6\xb2\x3f\x71\x0b\xe6\xc1\xfa\xe1\x16\x1c\x68\xf3\xc1\x6e\x41\xef\x1e\xdc\x82\xc7\x2c\x12\xb7\xe0\x59\x6e\x8f\xf1\x21\xd0\x03\xa8\xb1\x2c\x66\xa2\xe0\xd6\xad\x7e\x4f\xa2\xff\x09\x6e\xef\xd0\x4f\xbf\x87\x5b\xde\xad\xe3\x16\xac\x9e\x25\xa1\xc6\x42\x79\xe1\x10\x2a\x5a\xf9\x63\xca\x61\x07\x8c\x08\xd4\x78\x3f\x14\xa2\xdf\x2c\x19\xd4\x98\x9a\x29\x89\x46\xea\x87\x87\x50\x09\xd6\xf3\xba\x57\x54\xb7\xf3\x83\x1b\xaa\x43\xa8\x84\xb8\x63\xed\x0c\x02\x94\xfd\xf9\x34\xbe\xd0\xc0\x98\x40\xe2\x4c\x0d\xf7\x02\x71\xa6\xaf\x0f\x6a\x45\x61\x37\x23\x02\x50\x52\xc5\x29\x84\x86\x47\xdb\x12\xc7\xc9\x89\xe8\xb7\x01\xb7\xe0\xf1\x01\x20\xce\x34\xfb\xd8\x36\xb4\x3a\x6f\x79\xdc\x82\xf7\xf3\x1e\x80\xcb\x1b\x8b\x38\xd3\x0f\xdb\x6d\x68\x3d\x96\x5b\x8d\x60\x36\xc0\x51\xc0\x2d\x58\xae\xdb\xc3\xe3\x6b\x41\xd2\x90\x9a\x1f\xea\x60\x07\xf2\x18\x70\x9b\x61\xb4\x09\x02\x94\x75\x9a\x41\x0b\x50\xd6\x6b\x99\x2d\x40\x59\xaf\x37\x56\x37\x60\xa6\xf5\x6e\xad\xc0\xbf\xe1\xd1\x06\x9a\x85\x8e\x5b\xc9\xc2\x50\x80\xb2\x73\x39\x4f\x08\xdd\x5a\x9d\x29\xb2\xbf\x2c\xaa\x00\x94\x17\xb4\x12\x88\x33\xbd\xe8\x63\xa1\xe3\x76\xf1\x0c\x0a\x50\xf6\x30\xdd\x1e\xb6\x48\xb3\x33\x00\xe5\x6b\x16\x49\x9c\x29\x57\x57\x85\x40\x9c\x29\x57\x49\x85\x00\xa0\xa4\x12\x5c\x08\x00\xca\x9b\xfd\x5e\xe2\x70\xf8\xbd\x8c\x50\x63\x93\x13\x67\x5a\xcc\xa4\x3e\x71\xa6\x8c\x81\x38\xd3\x62\x16\x39\x9c\x62\xc2\xcc\x13\x67\xba\x31\xd3\x04\xe2\x4c\xaf\x99\xbe\x00\x65\xaf\x18\x5f\x82\x00\x65\x9f\x3e\x00\xb8\x05\x37\x70\x36\x08\x50\xf6\xe3\x1d\xe2\x0c\x44\xb4\xeb\x40\x06\x62\xc7\x52\x1f\x84\x1a\xeb\x36\x63\x27\x03\x31\x7a\x7f\x12\x67\x1a\x2d\xd0\x89\x33\x3d\x9f\xf7\x0a\xec\x85\x79\x99\x18\x3c\x30\x08\x04\x67\x20\x6e\x3f\x29\xd6\x7a\x3f\x5f\x21\xa2\xc4\x9a\x14\xc1\xa4\xcf\x87\xd2\xfa\x25\x33\x68\xa1\xc6\x6a\xcc\x1a\x26\xb6\xd6\xca\xcc\x13\x4c\xca\xad\xec\x21\x08\x35\x56\x92\x9e\x42\x20\x03\xf1\x35\x5b\x22\x03\xb1\x59\xdc\xe2\x16\x5c\x3e\x55\xb8\x05\x97\x59\xb2\x50\x63\x5b\x66\x2f\xcb\xfb\x93\x9e\x2d\x22\x82\x2c\x44\x85\x1a\xf3\xf3\x79\xaf\x63\x87\xa5\x67\x64\x27\x1e\xcf\xc4\xc2\xed\xd9\x99\x4f\xdc\x82\xc1\x67\x05\xb7\x60\x31\xc3\x14\x6a\xac\xd5\x8c\x7d\xe1\xcf\x30\x27\x12\x6a\x6c\xc9\x8a\x80\x51\x63\x35\x25\xd4\x38\x3d\x83\xa0\xc6\xdb\xf8\x0a\x2e\xc3\x66\x35\x84\xec\xc4\x61\xed\x7a\x5b\x2b\xa7\x75\x5c\x86\x03\x1c\x15\xc8\x4e\xdc\x1e\x1f\xd9\x89\x17\xc3\x53\x00\x35\x52\xee\x37\x04\x50\xe3\x7e\xfd\x9b\xc6\x77\x2c\x44\x71\x19\xe6\xf0\x43\x96\x0c\xa0\xec\xd1\xdd\xbc\x24\x17\xb0\x0c\x02\x94\x9d\xaa\x0f\x21\xe0\x4d\x7c\x2d\x0f\x0c\x28\x2d\xeb\x01\x94\x15\x48\x1e\x00\x94\xdd\x87\xff\x10\xa7\xe8\xa1\x0b\x50\x96\x8f\x8e\x27\x40\x59\x1f\x0f\x4f\x80\xb2\xda\xed\x12\x04\x28\x6b\xf2\x16\x04\x50\x66\x03\x0b\x01\xca\x4a\x55\x8b\x10\x04\x28\x6b\x2b\xee\x27\xd9\x43\xd6\x3e\x05\x28\x7b\x33\xd3\x00\x50\x06\x40\x6a\xb0\xcb\xf0\xe5\x37\x01\xca\x4e\x72\x41\x08\x17\x5b\x32\xae\x95\x70\xc9\x6e\xb3\xec\xbd\x4e\x3c\xa5\x2f\x00\xca\x7d\x58\x30\x00\x25\xb7\x75\x84\x40\x9c\xe9\xb5\x6e\x71\x31\xe8\x98\x7d\xe2\x4e\xe4\xd2\xd1\x10\x70\x27\x36\x8b\x38\x00\x65\xf1\x96\x07\x50\xbe\x9e\xeb\x8b\x37\xf8\xf3\x15\xb4\x3a\xeb\x2b\x97\xf1\xc9\x25\x1a\xde\x87\x10\x7e\xc6\xfe\x1a\x50\x06\xff\x06\xeb\x99\xfe\x0d\xd6\x03\xce\x78\x01\x94\x05\x06\xf6\x0a\x50\xa6\xcb\x86\x7c\x01\x94\x2f\x0e\x8c\x57\x80\x32\xe3\xcc\x0c\xaf\x00\x65\x4e\xac\xe6\xfb\x60\x4b\x7e\xdc\x02\xbe\x80\xe2\x6f\xea\x68\x3e\x88\x8e\x57\x80\xb2\x90\x42\x1d\x5e\xe2\x4c\xa9\x55\x1b\xde\xc7\x5a\xb9\x7b\x8d\x56\x8e\xd6\xfa\x02\x28\x89\xf3\x09\x2f\x80\x32\xc1\xd8\xdf\x80\xbb\x14\x9b\xf0\x1b\x70\x97\xe2\x24\x7c\x03\xa8\xc3\xdf\x0c\xc4\x09\x63\xa2\x7a\x03\x29\x0a\xd3\xdf\xd4\xfa\xd9\xb0\xf6\x92\x9d\xd8\x60\x91\x2f\xd9\x89\x5c\x28\x16\x5e\xa1\xc6\xfe\x99\x79\xb2\x13\xb9\x8c\x35\xbc\xb8\x21\xcb\xa7\x75\x44\xc7\xf2\x37\x09\x26\x45\xc7\x7b\xc9\x4e\xbc\x30\xda\x17\xd4\xf8\xf9\x0a\xa8\x31\x79\xae\x41\x8d\x19\x91\xf3\x0a\x35\x36\x92\x66\xc2\x0b\x6a\x24\x3a\x3d\xbc\x42\x8d\x7d\x61\x9a\x7c\x5f\x8b\x0e\xc6\x00\x6a\xac\xdd\xbf\xc1\x7a\xf0\x3d\xbc\xa0\xc6\x14\xfd\x15\x50\xd5\x71\xeb\x1a\x9f\xad\xa4\xef\xcb\xf9\xe3\xc4\xbd\xb8\x21\xc7\xe7\x2b\x07\xf5\xc5\x63\xd0\xfa\x2d\x4c\x9a\xaf\x51\x23\xf8\xe4\x8d\x46\x55\x8c\x21\xda\x17\xe0\x27\x29\x3e\x80\x99\xe6\x05\x35\x36\xf7\x25\x12\x51\x32\xfc\x9b\xc6\x67\xbb\xfd\x1b\xc9\xbe\xc4\x2b\xf2\x46\xbb\xe9\x98\x5d\xdc\x90\x27\xb3\x23\x85\x1a\xcb\x75\x3f\x41\x8d\x5c\xbb\x1b\x5e\xb2\x13\x29\xa0\x15\xde\x68\xd4\xef\xd6\x15\x8d\x71\xb0\xe2\xbf\xb8\x21\x6d\x46\x7c\x71\x43\x0e\x9f\x15\x82\x49\xf7\xd7\x29\xfe\x4d\x96\xfc\x12\x67\x7a\x7d\x1c\x04\x28\x0b\x81\x21\xe1\xc5\x43\x19\xa3\x1b\x10\xeb\xb1\x19\xe3\xc5\x43\x59\x90\x54\x2f\x71\xa6\x07\x2f\xf2\x4b\x9c\xe9\x85\x81\xbd\x09\x83\x00\xd6\xab\x17\x40\x59\xbb\xdb\xd3\xd0\x93\x17\x53\x80\xb2\xe5\xe0\x27\xc5\x7a\x5a\xf4\x57\x30\x08\x7c\x7e\xbb\x04\xf6\x30\x9d\x02\x94\x7d\xf9\x49\x12\x17\xb3\x59\x0f\x6e\x48\x02\x89\xc2\x9b\x11\x1d\xee\x59\xc6\x16\xe9\xa9\x06\x50\xc6\xc7\x4f\xe2\xe6\xf1\x06\x01\x50\xd6\x6a\x8a\x38\xe1\xc1\x61\x04\x50\xf6\xc6\x26\x20\x03\xb1\x06\x7f\xd3\x91\x0c\xcc\x67\x26\x92\xc1\xdb\x05\x57\xe3\xeb\xed\x49\x2c\x69\x74\xcf\x88\x25\x8d\x20\x92\xb7\x38\x43\x8f\x39\x73\x2c\x29\x9a\xc6\x6b\x57\xa3\x0f\x00\xae\xc6\xee\xd1\xe2\x6a\x1c\x9f\x16\xf0\x22\xfb\x80\xe3\x6a\x2c\x68\x13\x2f\xae\x46\x8a\xac\x87\xb7\x38\x0d\x88\xd9\x05\x34\x4e\x33\x22\x5c\x8d\x54\x33\x09\x2f\xa0\xf1\x9a\x79\x93\x81\xb8\xa6\xbf\x79\xb1\xa3\xb3\x62\x80\xc6\xc7\xcc\x54\xa0\xb1\x4f\xaf\x1f\x19\x88\x5c\xb2\x13\xde\x8a\xe6\x86\x13\xe6\x25\x03\xb1\x60\x16\x7a\xc9\x40\x24\x25\x29\xbc\xc4\x92\x9e\xe1\xaf\x30\xbe\x4c\x3f\x2b\x69\x40\xde\x2f\x15\x7b\xb8\x57\x85\x58\xd2\xe2\xe3\x5e\x11\xef\xdb\xef\x2d\x4c\x23\x6e\x0f\x64\x68\x56\x57\x51\x5f\xba\xbf\x89\xf8\xf3\xf1\x6b\x04\x43\x11\xcf\xf2\x36\x27\xcf\xb2\x0e\xce\x40\xfc\x50\x11\x47\x20\x33\xd8\xc8\x60\x7b\x4c\x11\xeb\x6c\xc6\xd0\x2c\xde\xe9\x19\xc8\x90\xb2\xb6\xe1\xa5\x36\x4d\xf5\x49\xc5\xd5\x78\xa6\x5b\xd7\xfa\x9d\x65\x6a\x72\xaa\x98\xf9\x66\x7b\xb8\x7f\xdb\x08\x51\x8f\x01\xf1\x50\x4d\x49\x3c\x14\x8b\x54\x02\x46\x29\x76\x15\x5e\x02\x46\xed\xc2\x7b\x09\x18\xfd\xb0\xf9\x4e\x86\x9e\x7b\xdd\x19\x5f\xa7\xf5\xce\x19\x0b\x7e\x4f\x67\x2c\xa1\xa3\xbf\x42\x86\xad\x7e\xbe\xd2\x30\x4d\x32\x67\x20\xc3\xd7\xe2\x48\xc8\xb0\x5b\x7f\x7f\x3b\x46\xb7\xe6\xaf\x50\x3a\x69\xb8\xd7\xac\x9f\x4f\x40\xb7\xbd\xdf\x2d\x10\xc5\x81\x31\xe4\xfd\xb8\x1a\x19\x1f\xc8\x30\x98\x5d\x0f\x52\x61\xfc\xcd\x41\x44\x97\xcf\xd1\x20\x5f\x02\x7c\xf2\x0e\x0c\xa3\xcb\x5f\xc1\x30\x8a\x03\xf1\x15\xfa\xab\x5f\xc7\xfe\x07\x2c\x79\x60\x33\x2d\xfe\x24\xf1\x86\xc9\x14\x9e\x7e\x34\xe8\x57\xc0\xb0\xd6\x4f\x03\x0e\x52\x61\x72\x49\x40\x7c\x2d\xc5\xa6\xab\x2a\x31\x20\x12\x10\xb9\xfe\x31\xbc\x94\xa6\x99\x80\xaa\x77\xfa\xf8\xf9\xbd\x04\xc3\xf4\x6f\x99\xad\xeb\xf7\xc8\xcd\x27\x7c\xe6\x15\x30\xac\x05\x70\xf4\x0a\x18\xd6\x8a\x43\xe8\x9d\x24\x38\x27\x53\x5a\x3e\x6a\x3e\x87\x17\x77\xe2\x04\x6c\xbe\xb8\x13\x3f\x32\x7b\xda\x53\x6c\x0a\x77\xc6\xeb\xaf\x68\x7c\xc9\x6c\x90\x2c\xc3\x08\x44\x7e\x17\x9e\x54\x1f\xd4\x45\x59\x97\xcf\x93\x18\x66\xbc\x09\xc8\x32\x8c\x66\x6e\x0b\x11\x87\xe1\xe2\x15\x30\x2c\xdc\x00\x1c\xde\x85\x88\x23\xc0\xea\xc5\x9d\xf8\x61\xd7\xcb\x09\xdc\xcc\x04\xee\xc4\xf7\x43\x91\x9b\xef\x19\x5c\xd6\xae\xdd\x17\x0c\x33\xc7\x5f\x21\x4b\xcd\xdb\x6c\x51\xdb\xc4\x8c\x9d\x2c\x43\x52\x14\xc2\x4b\x96\xe1\x8b\xbb\xe6\x25\xcb\x30\x59\x8c\x91\x65\x98\xf1\xe6\xbf\x64\x19\x76\x90\xcc\x6b\x77\xa2\x57\x85\x58\xd2\xf9\x69\x41\xeb\x67\xa0\xfd\xe2\x4e\x8c\xd7\x2d\x74\xf0\x10\xdb\x1a\x60\x78\xbc\x9a\x9b\x54\x0a\x0b\xa7\x8d\xf6\x42\x44\xc2\x6b\x60\x68\x21\x0a\xfa\x1b\xd6\x14\x37\xe2\xc1\x6c\x02\xf4\x67\x63\xc1\x2b\xf4\xd7\xed\xb3\x78\x89\x25\xfd\xe8\xe8\x42\x7f\xfd\x6c\x53\x09\x5f\xbb\x9f\x74\xe9\x2b\xfa\x42\xc0\x68\xb2\x5a\x40\xc0\x28\x25\x22\xc3\x4b\x96\xa1\xfd\x35\xef\xa1\x2c\x0f\x2e\xd8\x57\x08\xaf\x3d\x46\x32\x20\x3c\xc7\x04\xbc\x20\x3c\x2a\xb9\x84\xf7\x90\xa4\x8d\x09\xe7\xbd\x94\x16\xb2\x12\x84\xcb\x70\x59\x20\x90\x49\xf8\x9a\x9d\x81\xf0\x92\x77\x16\x08\x6f\x58\xf8\x5e\x5c\xf6\x18\x00\xdf\x8b\xcb\x1e\x54\xfc\x5e\x97\x16\xe2\x6c\x1a\xe1\x79\xbf\x80\xf0\xea\xeb\xaf\x20\xc2\xb1\x79\xbf\x04\x8c\x76\xab\x60\x04\x8c\x9e\xe8\xaf\x10\x0d\x05\x32\x7c\x09\x18\xad\x56\x82\x08\x18\x5d\xf4\x33\xe2\x32\xbc\x8a\x83\x0e\x51\x08\xaf\x79\x06\x23\x2e\xc3\xf9\xf8\x37\xf1\x90\x7b\xfd\x1b\x2e\x6d\x56\x33\xe2\x32\x3c\x30\xef\x68\x97\xe1\xf4\x93\x3a\x63\x0f\xbd\x8e\xd4\x9f\xa1\x76\x73\x88\x8f\x8b\x40\x4c\x28\x8d\xcf\xab\x19\x41\x71\x5c\x72\x1a\x22\x28\x6e\x1d\xff\x86\x81\x13\xb1\x12\x41\x71\x36\x7b\x45\x50\x9c\x62\x87\x7e\x93\x25\x47\x01\xbc\x9e\x91\xd9\x31\x38\x1b\x8b\x6e\x12\x4b\x4a\x49\xc3\x10\x89\x25\xe5\x26\x88\x10\x71\x0b\xbe\x1c\x9c\x18\x00\xb0\x78\xb4\x63\x70\x1c\xa6\x7f\xd3\xf0\x0c\x67\x63\xa0\xc6\x05\x7a\x63\x14\xc0\x2b\x35\xba\x75\x2d\xdf\x40\x04\xc4\xc0\xd0\x97\xbf\x49\xbc\xef\x72\xeb\xc4\xfb\xa2\x6b\x47\x00\xde\xf4\x18\x00\x78\xde\x9e\x51\x00\xaf\x52\xd9\x2b\x44\x00\x5e\x60\xcb\xc7\x17\xb7\x0b\x76\xe6\xf8\x12\x0c\xd5\xfc\x15\xdc\x2e\xc7\xef\x55\x2c\x69\x4c\xee\x4b\xf5\xbc\xc5\xa2\xbc\x64\xd3\x79\x0c\x2f\x29\x1f\xc9\x2d\x90\xd2\xe2\x99\x78\x09\xd6\xdb\xfe\x26\x89\xae\x40\xdd\xe8\xf2\x33\xaf\x29\xdc\x2e\x88\xb1\x08\xc0\xa3\xba\x55\x88\xb8\x05\x3b\x81\x8a\x11\xb7\xe0\x42\x38\x45\xbb\x05\x89\x9c\x88\x00\x3c\x0a\xdc\x84\xe8\x38\x53\x74\xf4\x48\x9c\x69\x41\x00\xc5\x68\x11\xe7\xdf\x70\xeb\x82\x80\x22\xe5\x67\xb8\x29\x3c\x44\xca\xcf\x70\xab\x77\x88\x91\x88\x0b\xf7\x3a\x12\xeb\x0c\xfb\x8c\x94\x9f\x79\x3f\xbf\x89\x45\xd6\xe3\xaf\xe0\x76\x21\x0e\x26\x0a\xe0\xf5\x86\x9b\x35\x0a\xe0\x75\x47\x5a\xc7\xe4\x1a\x2c\x8c\x16\x14\xf7\x7e\xde\x23\xd8\x0b\x8d\x2f\x82\xe2\xb8\x9e\x20\x44\x50\xdc\x25\x82\x39\x26\xc6\x87\xbd\x31\x0a\xc5\x35\x03\xf4\x28\x14\xd7\xc3\xf4\x93\x94\x9f\x29\xee\x8b\x44\xdc\xf0\xec\x0a\xc5\xf5\x99\xdc\x17\x82\xa1\x5e\x53\x94\x9f\xc1\x6a\x19\x29\x3f\x53\xbd\x0b\x28\x3f\xd3\x61\xf3\x11\x14\xb7\x5e\x53\x04\xb3\x25\xd8\x04\x35\x66\x6e\x35\x95\x70\xc5\x31\x13\x42\x71\x25\xc3\x3e\xa3\x50\x5c\xc9\xe0\xa1\x48\x30\x69\xf6\x8e\xa4\xc6\x0c\x45\x2f\x43\xa4\xc6\x4c\xc5\xd0\x15\xa9\x31\xd3\x81\xe4\x91\x60\xd2\x83\x9e\x1a\x33\x06\x08\xb4\xeb\x68\x84\xf7\xfa\x9b\xa8\x60\xc3\x23\xa2\x06\x0b\xc2\x22\x82\xf0\xb8\x53\x32\x44\x10\xde\x4b\xf4\x47\x04\xe1\x25\x10\x65\xc4\x2d\x58\x50\xc1\x22\x6e\xc1\x01\x63\x8f\xc5\xfc\x85\xb1\x17\x57\xcf\x63\x2f\xe1\x16\x2c\x78\x0d\x22\x6e\xc1\xdb\xdd\x7a\xc7\x59\xcb\xcc\x17\x7c\x2b\xd7\xad\x13\xac\xe7\x73\x5b\x1c\x71\xc1\xcc\x17\xce\xdf\x76\x5f\x74\xfe\x62\x77\x0b\x44\x94\xa0\x74\xc5\x4a\xb6\xa7\xd7\x5d\x08\xaf\x06\xcc\x96\x91\x6c\xc1\xe2\xfd\x09\xc2\x7b\x7c\xa6\xc9\x16\xb4\x8d\x3d\x56\x5c\xef\xe1\x47\x71\xc9\x11\xaf\xe0\xf2\x51\xc1\x2b\xe8\x50\xe7\x58\xb1\x8f\x01\xcd\x22\xae\xbf\x52\xdc\x00\x00\xe1\x75\xa7\x5d\x5b\xd5\x5f\x21\xe5\xc3\x6c\x90\x58\xd2\x8a\x6e\x18\x71\xfd\x35\xb3\x02\x81\xb8\x3e\x91\x9a\x91\xac\xbf\x63\x09\x87\x7b\x6f\xa0\xab\x45\x40\x9c\x81\x4c\x04\xc4\x05\x1f\x4d\xdc\x7b\xd6\x8f\x22\x65\x64\x4e\xf2\x57\xa4\x45\x66\x4f\xa7\x41\xdc\xf1\x57\x74\xc4\x9a\x17\xa5\x31\x06\x8b\x9c\x86\x0d\xcc\x92\x11\xf7\xde\x67\x7c\x94\x91\xc9\x66\x05\xc4\x8b\x06\x6c\x8a\xd1\xf1\xa2\x58\x34\x23\xf1\xa2\x6d\xfa\x49\x0c\x25\x3e\x54\xc4\x8b\xae\x64\x4a\x47\x6c\x99\x5d\x77\x57\xe8\xa2\xf5\x4e\x05\x2b\x1c\x6c\x51\x20\xae\x51\xc2\x3e\x44\xca\xc8\x70\x3b\x77\x88\xdd\x59\x55\xcc\x04\xf1\xa2\x8f\xd9\x27\x20\x8e\x62\xfe\x21\x02\xe2\x9a\x0f\x31\x65\x64\xa8\xc9\x10\x22\xee\xbd\x81\x85\x31\x92\xf5\x97\x86\x29\xb6\x20\xd1\xc6\xd1\x05\x46\x3f\xbf\x69\x0b\x16\x1f\xaa\x81\xe7\x1d\x0b\x6a\x14\xc0\xeb\x95\x18\xf0\x38\x2c\xc2\x19\xfb\x40\x03\xc3\xd9\x17\x71\xef\x4d\x8b\x4d\xdc\x7b\xd7\xec\xcc\xee\x3d\xcf\x0b\xee\xbd\xe7\xf3\x24\xe3\x23\xe2\x3d\x0e\xbb\x87\x4c\x49\xc3\xe4\x3e\xf5\x10\x85\xe2\x3a\x77\xaf\x84\x38\x89\x47\xf7\x11\x23\x28\x94\x1a\x10\x21\x12\x14\x1a\x30\xcc\x44\x07\x85\x12\x15\x1d\x09\x0a\x3d\x66\x9f\x13\x43\x1e\xfa\x7b\x9c\xd4\xf7\xf5\x3a\x50\x2b\xa6\x7a\xfd\x08\x0a\xfd\x30\xbe\x49\x05\x40\x33\x30\xdc\x7b\xd9\x33\x81\x7b\x2f\x7f\x9e\x24\x2b\xce\x3a\x17\x59\x7f\x83\xf0\xbc\x08\x8a\xbb\xe8\xfd\x51\x28\xae\x77\xcc\x1f\x51\x28\xae\x0f\x8f\x76\xe1\x23\xf1\x7b\xa0\xb8\x66\xb6\xbb\x70\x7f\x45\x53\x1a\xdf\xc4\xe1\x1c\x41\x71\x85\xb8\x8d\x08\x8a\x9b\x78\x06\x22\x59\x7f\xdb\x7a\x23\x59\x7f\x07\x23\x5f\x24\xeb\xef\x56\xb7\x37\x51\x12\x98\x09\x17\x1f\x35\x2b\x27\x28\x34\xfa\x6c\x92\xf5\xf7\x39\x9b\xb8\xf7\x3a\x66\xa8\x88\x7b\x6f\xe2\x00\x8e\x64\x04\x5e\x02\x46\xe3\x66\x7c\x56\x00\x29\x3e\xfa\xf8\x74\x38\x23\xd0\x27\x1c\xf7\x5e\xfc\x7c\x85\xfa\xcc\xdd\x2d\x80\x10\xc0\xd6\x11\xf7\x5e\x35\xd3\x07\xc5\x91\xcd\x1a\xe2\xc6\xc6\x5e\xfd\xe4\xc4\xfc\xe8\xdf\x6c\x88\x75\xcf\x34\xbe\xfe\xfc\xa0\x38\x67\x88\x76\xef\xe1\x48\x8a\x00\xbc\xeb\x83\x43\x19\x99\x0b\x18\x8b\x00\xbc\xee\x4d\x2e\x80\xd7\x97\x35\x1b\xbb\xf7\xac\x11\x09\xe0\x25\x92\x98\x43\x3c\xb8\x87\x70\xc2\x44\x00\x5e\xf7\xe1\x00\xe0\x2d\x6f\xc1\x43\xcc\x32\xc6\x89\x28\x17\x5e\x69\xdb\x2d\x68\xf9\x1c\x8d\x1b\x0f\x99\x4c\xc3\xbf\x91\x94\xea\xa5\x15\xc0\xab\xc7\xd4\xc5\x3b\x8b\x05\x2e\x0a\xe0\xb5\xea\x03\x77\xc9\xf7\xb7\x78\x10\xc0\xeb\x76\xa2\x45\x01\xbc\xbe\x2c\x6d\x2f\x81\x75\x5e\x94\x4b\x52\xaa\x19\x98\x00\x5e\xba\xd6\xea\x00\x78\xd4\xa1\x0b\xf1\x92\xe9\x63\x06\x76\x09\xec\xb1\xec\xa5\x54\x8c\x33\xfb\x22\x2e\xbc\x64\xc9\xef\x02\xa3\x16\x94\xb8\xf0\xfa\x67\x44\xd2\xc0\x06\x06\x81\x44\xa9\x18\xa7\x2f\x24\x4a\xc5\x4c\x58\x48\xa2\x54\xcc\x44\x66\x27\x97\x8a\xe9\xa6\xd0\xc0\xaa\xbf\x82\x06\x06\x7b\x49\x14\x18\xcd\xc3\x54\xc5\xc1\x76\xa0\xb4\x3d\x6d\xbf\x4d\x94\x8a\x31\xce\x48\x64\x0b\xce\xd7\x94\x8e\x9f\x13\x86\x12\xd9\x82\xf7\xf3\x24\x5a\x16\xf0\x39\x91\x11\x48\xed\xdf\x90\xc8\x08\x7c\x31\xfd\x24\xe2\x3e\xe3\x30\x45\x62\x3b\xe2\x28\x39\x23\x70\xf8\x3d\x22\x04\x48\xc4\x49\x42\x71\x8d\xfa\x6e\x21\xe1\xa6\xdb\xe4\x58\x25\xdc\x74\x8e\xad\x49\x64\x04\x72\x05\x7d\x48\x76\xd3\xc1\x0a\x12\x6e\x3a\x2e\x4e\x08\xc9\x6e\xba\xe4\xaf\xc8\xcd\xd3\xb7\x7b\x26\x23\x83\xc3\xde\x12\x35\x5f\x6c\x33\x4d\x64\x0b\xbe\x88\xe9\x44\xcd\x97\x84\xda\x93\xa8\xf9\x52\xdc\x33\x8a\x88\x36\x18\x74\x22\x5b\x90\x5b\x2b\x43\x22\x5b\xb0\x7b\x1d\x08\xee\xbc\x18\x2e\x92\xb3\x05\x87\x9f\x04\xa5\x7e\x9e\x74\x62\x34\xb3\xf4\x22\xc2\xab\x7f\x9b\x68\x7c\xcc\x04\x6e\x3a\x87\x9a\x25\xdc\x74\xab\xb9\x9f\xa4\x24\x6d\xbf\x47\x4a\x12\x4a\x57\xa2\xe6\x0b\x25\x3e\x43\x12\x8a\x6b\x0b\x61\x9f\xa8\xf9\x42\x99\xb1\x90\x22\x49\xd3\xd9\xef\x69\x7c\xd7\xb3\x44\x11\xd1\x8b\x51\x31\x45\x92\xa6\xd1\xdf\x93\x50\x5c\xde\x9e\xb3\x68\x16\xe9\xaf\x20\xe2\xd0\x45\x93\x51\x5c\x75\x5f\xa8\xe4\x87\x42\x96\x84\xe2\xba\x5d\xc5\x29\x52\x04\x36\xb0\x93\xa3\x8b\xc0\xba\x05\xaf\x1f\xbf\xe1\xa6\x8b\x68\xf3\x29\x39\x1b\x92\xf1\x81\xe2\x9c\x5a\x94\xc8\x16\x74\xc8\x5f\xa2\xe6\x0b\x17\xbb\x85\x04\x8a\x7b\xe6\x8f\xdc\x7b\xc9\xe5\x60\x9a\x9b\xa3\x1c\x0c\x0c\x33\xe1\xa6\x7b\xab\xa9\x0e\x7c\x66\x72\x5d\x0e\xe6\xd3\x1c\xf6\x23\x1f\x62\x97\x83\x41\x87\x4d\x44\x73\x3a\x83\x26\x11\xcd\x99\x22\x83\xcd\xf6\xab\xd2\x3a\xd1\x9c\x06\xb0\x89\x22\x2f\x0d\xb8\x9e\x28\xf2\x42\xa9\xfd\x90\x28\xf2\xd2\xb7\xbf\x49\x48\x9c\xa7\xc5\x39\x80\xc0\xd2\x94\x89\xa6\x3e\xfe\x0a\x45\x96\xcc\x50\x28\xf2\x42\xad\xe8\x90\x28\xf2\x12\xbc\x09\x28\xf2\x12\xaf\x29\x60\xb7\xb7\x2e\xb0\xcd\x1e\xdf\x04\x6c\x1b\x40\xc8\x54\x5c\x3a\x93\x65\x07\xb6\x2d\x3c\xbe\x09\xc7\x9c\x21\x4f\xa2\xc8\x0b\x89\xdf\x21\x11\xcd\xd9\xb6\x9f\xa4\x3e\x5f\x34\xa5\x0d\x59\xbc\xe5\x0b\x7e\x63\x6f\x10\x60\xdb\xfd\xb4\x87\xd5\xab\x99\xd2\xaa\x0c\x1f\x70\x47\x73\xa2\x61\x26\x60\x1b\xd7\x3f\x86\x04\x6c\xa3\x94\x51\x48\xe4\x00\x3e\xde\x90\x95\xb8\x06\x4c\x54\x09\xd8\xc6\x85\x4d\x21\xe1\x98\x5b\x5e\x77\x3b\xe6\x08\x90\x4b\x38\xe6\xec\x9e\x4d\xe4\x00\x06\xaf\x66\x05\x13\x44\xbf\x47\x48\x1c\xe6\x96\x44\x0e\xe0\x78\xfc\x24\x21\x8d\xc9\xed\x91\x43\xd6\xfc\x4d\xa2\x8d\xbb\x29\x8a\x64\x79\x87\x18\xb7\xa1\xa7\xa6\x4a\x95\x02\x2c\x9a\xa9\x3a\xbd\x9a\x99\x10\x6e\x4b\x77\x9b\xa2\x92\x8b\x59\x1d\x95\x5c\x3e\xbb\x80\x90\x4d\x2e\xf8\x0f\x09\x4c\x97\xcd\x68\xa9\xe4\x42\x52\x7f\x48\xc2\x74\xb9\x78\x35\x1b\x45\x6c\x8e\x29\x4a\x11\xf8\xd8\x36\xa7\x1f\x33\x5a\x2e\x8d\x98\x9f\x27\x29\x62\xe3\xd3\xe1\x90\x4d\x1c\x81\xc9\x21\x9b\xd7\xed\x81\x4b\x5f\xbf\x47\x29\x02\xb3\x17\x1c\x73\x8e\xdb\x4d\x38\xe6\x9c\xf8\x93\x70\xcc\x65\x8b\x69\x30\x5d\xf6\x0e\x01\xd3\x55\xb4\xe4\x04\xa6\xab\x16\x71\x60\xba\xe6\x5d\xf0\xa9\xe4\xe2\xdf\x70\xac\x7e\x5a\xc7\x72\x8e\xaf\x23\x81\xe9\x0e\xc6\x9e\x04\xa6\xa3\x00\x53\x48\x84\x6c\x46\x5c\xbe\x49\x98\xae\x3a\x73\x31\x75\xa2\x8d\x7d\x52\xa9\xe4\xd2\x2d\xc2\xa9\xe4\xe2\xa4\xf0\x04\xa6\xb3\x51\x31\x81\xe9\xb8\xc0\x36\x24\x30\xdd\xb6\x08\x20\x64\x73\x93\x14\x9e\xc8\x01\x7c\x50\x4d\x13\x39\x80\x4e\x31\x49\xc3\x71\x37\xb4\x4e\xc8\x66\xda\x6e\x81\x90\xcd\xe5\x6f\x0e\x74\x7b\x66\x10\x4c\xc7\x35\xc6\x21\x51\x1a\x74\xe4\x1f\x05\xc1\x25\x8a\xbc\x4c\x2f\x18\x4e\xbb\x65\x1d\x01\xa7\xdd\xb6\x3e\x86\xd3\xee\x7a\x19\x26\xd1\x80\xd8\x96\x12\x55\x43\x1b\xd6\xc7\x44\xd5\xd0\xee\x8e\x11\xcd\x49\xdd\xad\x90\x80\x7b\x6f\xf2\x7b\x38\xb5\x50\xed\x93\x8b\xbc\x60\xeb\x49\x2e\xf2\x62\xd6\x43\x34\xe7\x22\xe7\x29\x11\xcd\x99\x71\x21\x24\x9c\x76\x0b\xff\x68\x9a\xbe\xea\xc5\xef\x71\xd5\x8b\x37\x01\x70\x2f\x7f\xfa\x42\x91\x17\x00\x7a\xa2\xc8\x4b\xf2\xf6\x04\xee\x05\x42\xe2\x92\xe0\x5e\xaf\x24\x4a\x26\xc1\xbd\x64\xc8\x9a\x96\xd3\x57\x59\x5a\x9c\x76\xd3\x1a\x18\x39\x80\xc1\x6c\x57\x70\xaf\x65\x6b\x7c\x8b\xb8\x0d\x6f\x48\xe0\x5e\xb5\x30\x04\xee\xb5\xe3\xf7\xb0\xf8\x79\x2b\x91\x03\x48\x31\xd0\x90\x96\xa3\x1d\xdd\x4f\xd7\x07\xe3\x70\xe0\xb4\xb3\xdb\x2c\xe1\xb4\xbb\xc4\x3c\x24\xa2\x39\x5f\x8b\x3f\xa2\x39\x9b\x0f\x23\x05\x60\x0e\x26\xa3\x04\xdc\xe3\x22\xcc\x90\x80\x7b\xcf\xf2\x93\x14\x0c\x0f\xa6\xec\xd4\x62\xbf\x08\xee\xe5\xec\x1d\x22\xb8\x97\x6d\xd4\x48\x1b\xd6\xe3\x43\x45\x01\x98\x65\x51\xb5\x61\x3d\xc7\xbf\x6d\x3c\xe1\x8c\x6f\xc3\x7a\xac\x40\x90\x03\x78\xac\x25\x53\x00\xc6\x76\xd1\x44\x0e\xe0\x63\x96\x75\x9c\x23\xc7\xd8\xc1\x74\xa3\x98\xa2\xb2\x83\x05\x02\x39\x80\x2f\x9e\xf7\x44\x0e\xe0\x47\x7f\x3f\x2e\x2d\x69\xca\x16\x77\xbf\x07\x9c\x05\xca\x27\x42\x36\xe7\x74\x0b\xd4\x1f\xb4\x8a\x72\x9c\x48\xe5\x9e\x01\x67\xaf\x7f\xc3\x29\x59\xfd\x1b\x4e\x49\xf7\x13\xbc\xf7\xd1\x53\x09\xd9\xb4\x9f\x27\x5d\xe7\xe0\xfa\x37\x4a\x83\x12\xaf\x93\x2e\x58\xe2\x9a\x42\x74\x98\x85\x10\xb2\xf9\x99\x09\x72\x00\x37\xa8\x31\x51\x1a\xf4\x35\xcb\xba\xe0\xa1\x0f\x45\x48\xaa\xd7\xfd\x62\x6e\xc1\x64\x94\x2e\x39\x9c\x5e\x4d\xf0\x9e\xa3\x77\x12\x78\xcf\x9e\x88\x04\xde\xdb\x04\x05\x64\xf0\xde\xc1\x20\x90\xc1\x7b\x2e\x6f\x90\xc1\x7b\xb6\x1e\xe7\x87\xd2\x99\x9c\xf7\x6c\xbc\xc7\xf9\xcb\xe0\x3d\x2a\xbe\x87\x6c\xbc\x87\x40\xcf\xe0\xbd\x82\x5a\x90\xc1\x7b\x5c\x3d\x16\xf2\xe3\xd2\xc3\x0d\xca\x21\xa9\x6e\x1d\xbc\x7e\xdd\x82\xc6\x47\xb5\x9d\x90\x1f\x57\xae\x38\x50\x98\x3b\x8b\x29\xb0\x84\x29\x9c\x7d\x7b\xff\xe0\xa2\xa7\x90\xf1\x03\x5e\xa6\x3a\x03\x13\x1f\xf2\xcb\x32\x30\xd1\xc7\x36\x03\x13\x2d\x43\x33\x30\xd1\x01\xf6\x19\x98\x38\xb0\xc4\x64\x0a\xc7\x58\x2e\x67\x0a\xc7\x50\x31\x2b\xe4\xe0\x1c\x1d\xff\x46\xe9\x3e\xac\x5e\x59\x30\x31\xf7\xe0\xd6\x29\x4a\x52\xfc\x24\x47\xf3\x35\x45\x22\x07\xa2\x23\x13\xcd\x49\x31\xc9\x90\xb9\x6b\xa2\xb0\xad\x33\x45\x65\xaa\x17\x93\xa2\x32\x2b\x9b\xd2\xd2\x6e\x6c\x75\x99\xd2\xa0\x14\x26\x0d\xd9\x77\x4d\x5c\x7f\x85\xe2\x3e\x30\xd3\xfc\x92\x43\x06\xc0\xcb\x38\xfb\x1c\xad\x90\x5f\x2a\x1f\xbc\xa6\xd0\xea\xbc\xec\xbe\x6b\x02\x61\x91\x71\xf6\x05\xd2\x41\x32\x39\x80\x76\x2e\xe6\x97\xaa\xcb\x8f\xbf\xa2\xad\x3b\x89\x1e\xc8\x38\xfb\x5e\x1c\x42\xd9\x39\x80\x00\xd1\x8c\xb3\x2f\xbb\x2f\x38\xfb\xa8\x89\x1c\x32\xce\xbe\x80\x55\x2f\xe3\xec\xe3\x12\xd0\x90\x71\xf6\x71\xb5\x67\xc8\x38\xfb\x52\x73\x0b\x44\x8b\x13\xad\x90\x71\xf6\x15\xb4\xf2\x0c\x4c\xec\xb0\xdd\x0c\x4c\x74\x48\x7d\xc6\xd9\xe7\xb8\xcf\x1c\x09\x97\xc3\x26\x9c\x71\xf6\x85\xea\x27\x31\x63\xa0\xcd\xe7\x04\x0c\xc6\x78\x96\x05\x13\x5b\x01\x9f\x64\xe7\x00\x62\x86\xca\x09\x33\x06\x66\x9a\x2c\x98\xd8\xf6\xf1\x57\x32\x09\x04\xb4\x97\xb8\x2b\xc4\x87\x51\x58\xb0\xa7\xd7\xef\xe1\xac\xf5\xb1\xc5\xd9\xe7\x04\xa5\x4c\x51\x19\xeb\x94\x99\xa2\x32\x2b\xfb\x2b\x42\x1d\x36\x2b\xe4\x64\x67\xb4\x29\xa2\xa9\x5f\x8f\x81\xca\x1c\xde\x13\x54\x8e\x79\x09\xb3\xcb\x54\x8e\xa1\x26\x79\xc8\x99\xfa\x6e\xd1\x14\xe3\xf3\x9e\x27\x07\x70\x78\xae\x85\x1a\x7b\x39\xa6\x40\x55\x98\xfc\x32\x17\x4a\x38\x8a\x2a\xdb\xd9\x07\x8a\xcb\x38\xfb\x26\xee\xf5\x9c\x89\x67\x21\xfa\x3e\x83\x1a\x2b\xf9\x7a\x19\xd4\xe8\x2c\xca\x2c\xd4\xd8\x33\x48\x34\x67\x12\x8d\xb2\x7f\xc3\x19\xed\xf3\xfe\xb9\x50\x82\xf6\xb8\x50\x22\xa0\x5c\xe4\x42\x69\xd7\x65\x4a\xa8\xa3\x83\xaa\x32\xe1\x9c\x13\x2c\x98\x8b\x6b\xbf\x31\x22\xa1\xc6\xf2\x80\x17\x32\x95\x63\x9c\x84\x94\x1d\xce\x89\x78\xc8\x84\x73\x16\x9f\x62\x2e\x94\x88\x5e\x07\x2e\x94\x88\xd7\x14\x66\x1a\x90\x4c\x26\x9c\xb3\xfa\x3c\x14\xb3\x56\xf7\x85\x44\x15\xcc\x8f\x99\xca\x31\x8f\x39\x26\x95\x63\x02\xa2\x38\x83\x1a\x07\x4a\x42\xa6\x72\x8c\x43\xf0\x72\xc5\x9c\x1b\x7e\xc8\x92\xb9\x84\xf0\x3d\x7e\x8d\x50\xa5\x4f\x73\x58\x11\xd1\x6c\x72\x25\x73\xfe\x71\xe3\x14\x9c\xf6\xc1\x21\xd2\x73\x47\x77\x85\xca\x0e\xd3\x14\x71\x06\x3e\x46\x44\x7a\x16\x0c\xe0\x19\x47\xa0\xb5\x97\x4c\xa4\xa7\x4b\xef\x64\x22\x3d\x17\x86\xfa\x0c\xa0\x74\xe8\x49\x6e\xae\xba\x4c\x3f\x89\xf4\xb4\x2e\x93\xc9\x01\x8c\xde\x3c\x38\x09\x93\xd9\x35\x39\x80\x4e\x8c\xce\x94\x06\xb5\xe5\x2e\x53\x1a\x74\x59\x66\xbb\x34\x28\xce\xb0\xec\x48\x4f\x8b\x23\x8a\xca\x3c\xde\x04\x14\x95\x79\x86\x5b\xc0\xca\xbd\xdd\x33\xb4\x72\xac\xab\x19\x27\x61\xb6\x1e\x40\x0e\x60\x06\x0e\x65\x72\x00\x0b\xba\x45\x26\x07\x70\x7a\xb4\x44\x7a\x4e\xf4\xc6\x4c\xa4\xe7\xf2\x01\xef\xdc\xf2\x66\xa1\x46\x51\x99\xed\x55\x21\xd2\xd3\x29\xdb\x99\xa2\x32\xd9\x22\x0e\x27\x61\x21\xc4\x3d\x77\x6e\xe9\x23\x6a\x24\x77\x72\x38\x7d\x18\x3b\x4e\x34\x1f\x70\x72\x00\x1f\xaf\x11\x39\x80\xef\xf4\x57\xa8\x6a\x0b\xd4\xcd\x02\x94\x7d\x60\x9c\xc8\x02\x94\xe9\x6e\x53\x5a\x3f\x27\x6b\x64\x72\x00\xab\x8f\x11\x51\xa0\xdb\xec\x93\x1c\xc0\xd5\xfd\x9b\xc6\x77\x9a\xdf\xab\x20\x3c\xb7\x87\x85\xf8\x43\x61\x21\xf6\x1a\xb9\xa8\x0c\xe8\x21\x53\x54\x66\xa3\x37\x66\x8a\xca\x38\x36\x37\x83\x1a\x13\x9a\x70\x1e\x2e\x0a\xe4\xf6\x2e\xb1\x20\xf4\x8c\x1c\xc0\x68\xc1\x45\x51\x99\x89\x49\x25\x4f\x8a\x72\x61\x2b\xcf\x94\x06\xad\x16\x9b\x84\x7a\xba\x34\x54\x9e\xa4\x57\xbb\x9f\x13\xd5\x86\x38\x83\x3c\x51\x6d\xcc\x26\x26\x39\x9c\x66\xe5\x2e\x0d\xea\xd9\xb5\x93\xd0\xe7\x08\x27\x61\xf3\xce\x9a\xe4\xe0\x9a\xed\x4e\xa2\xfd\x71\x54\x67\xa1\xc6\x1e\xbc\x2a\x13\x83\x8e\xd9\xa7\x43\x3d\xfd\x1b\xa1\x9e\xae\x35\x92\x09\xf5\x2c\x16\xbe\x38\x09\x9d\x2c\x9f\xed\x24\xfc\x3c\x49\x8e\xdc\xf2\x6f\x38\xd1\x7c\xaa\x28\x0d\xea\xbc\x80\x4c\x0e\xe0\xf2\xcc\x93\x03\x78\x2c\x36\x41\x8d\xc1\x33\x01\x6a\xb4\x59\x21\x2f\x2e\x5c\x48\xfe\x0a\xa5\x6b\x3f\x2d\x10\xc7\x04\x96\xc8\xa0\xc6\x8c\x3f\x23\x83\x1a\x5d\x6d\x31\x13\xea\x39\x7c\x72\x08\xf5\xb4\x8b\x39\x13\xea\xb9\x7c\x3a\xb6\x2b\x8f\xf8\x49\x2a\x8f\xe0\x12\xcd\x54\x8e\x09\x78\x14\xb2\x2b\xc7\x1c\x3f\xe9\x1c\xe3\x1f\x14\xe7\x0c\x19\xff\x61\xf2\xd1\x24\x0a\xd4\x21\x6a\x79\x3b\x47\xce\x43\x20\x4a\xd9\x47\x73\xdb\xff\xcb\x04\x72\xd7\xc4\xc8\xfe\x8a\x58\xcf\xb0\x04\x17\xa0\xac\xcb\x52\xfa\x10\x9d\x67\xb6\x74\x9c\xbe\xca\x94\x09\x50\x56\x47\x5c\xe4\xc3\x0d\x5b\x04\xba\xe5\x43\xbd\x27\xcb\xbb\xc3\x5d\x0c\x9e\x08\x8a\xca\xd8\x35\x96\x8f\x6d\x3d\x6e\x9d\xbb\x26\x3e\x7d\xc1\xd6\xe3\xed\x79\xb0\xf5\x58\x74\x00\x28\xe7\xe7\x2b\x1b\xd7\x26\x0b\x46\x84\xe8\x43\xb2\x67\x26\x42\xf4\x31\xd3\xbf\xdc\xe0\x67\xf6\x02\xa0\x7c\xdd\x02\x0e\x44\x27\xaa\x64\x1c\x88\xc5\xc7\xf6\x92\xa2\xba\xfd\x24\xc9\x28\x84\xbd\xe5\xeb\xe3\x47\xeb\xdc\x27\xd1\x3f\xdf\x14\xb2\x70\x4a\x73\x26\xcf\x6f\x5a\x8b\xbc\x0e\xb3\x63\xf3\x18\x34\x9a\x15\xd8\x49\xe8\xad\x04\x68\x9c\x1c\xcd\x62\x27\x21\x9a\x70\x11\x68\x2c\x1b\x6b\x59\x79\x7c\x0b\xda\x80\xd2\x1a\x85\xee\x27\x29\xea\xfe\xfa\x49\x34\x6f\x46\x5b\x04\x1a\x9b\x1d\x9d\x85\xc2\x31\x91\x83\x5a\xc8\xf3\x73\x7d\xb7\x42\x9e\xdf\x85\xb9\x15\xf2\xfc\xee\x70\x7b\xe4\xf9\x31\xf3\x85\x3c\x3f\x6e\x42\x0f\xc5\x79\x7e\xc1\xbf\x51\x39\xba\xb8\x67\xae\xac\xac\x59\x2a\x81\xfb\x40\xd0\xdc\x4a\x60\x7c\xf8\x33\x8a\x90\x61\xb1\x55\xb6\x90\xe7\x47\xa1\xff\x50\xc8\xf3\x2b\xe8\x8d\x85\x3c\xbf\xca\x6e\x2d\xe4\xf9\x4d\xb4\xeb\x12\x00\xfd\x88\xfe\xe2\x5b\x08\x5f\x7f\xa5\x83\x36\xfd\x9e\xf6\x20\x17\x0b\x84\x42\x75\x98\x74\xfd\x1e\x3e\xfa\xe2\xf7\xb8\x4a\x0a\xab\x73\x09\x18\x35\x96\x9f\xd4\x1e\x0c\x9e\x33\x21\xc3\x1e\x89\xf7\x28\x2f\x61\x84\x58\xb9\xcb\xcb\xa5\x0a\xe4\xd2\x96\xd7\x35\xe3\xe8\x0b\x61\xa0\xcd\xb3\x44\x18\xe8\xc5\x15\x57\x7c\x0b\x21\xfa\x5f\x79\x71\xb0\x3d\x6e\x8f\xf5\x7b\x4d\x69\xfd\x36\xd1\x50\x85\xea\x30\x09\x01\x5b\x5e\xe7\xc1\x31\x4b\x5c\x1a\x51\x41\x1d\x85\x30\xd0\xbb\xdd\x02\xd5\x37\x3c\xd7\x38\x10\x2f\xaa\x4d\xc1\x81\xd8\x61\xa6\x05\x07\x62\xaf\xfe\x8d\x5b\x24\x3d\x76\x1c\x88\x36\x43\x15\x1c\x88\x0f\x2c\xb2\xe0\x40\x7c\x89\x36\x29\x91\xea\x37\xc9\xbf\xa1\x79\x83\xfa\x4b\x74\x18\xa1\x7f\x23\x86\xcb\xe3\xa3\x3a\x0c\x77\x19\x86\x12\x71\x00\x67\xb7\x4e\x1c\x5a\x73\x0b\x5c\x1a\x11\xfc\x1e\xf7\x29\xc5\x1f\x69\xc9\xc5\x95\x48\x81\xba\xc5\x29\x80\x68\x7c\x05\xdf\xe2\x82\x2d\x15\x7c\x8b\x0e\xda\x2a\xf8\x16\x97\x37\xa4\x7d\x8b\x18\xe3\x0b\x85\x63\xb8\x2a\x35\x14\x1c\x88\x2e\x8c\x58\x92\xcb\x55\xfa\x3d\xe7\x90\x31\x11\x38\x10\x9d\xe5\x5e\xec\x40\x9c\x6e\x8f\x08\x66\x6f\xdd\x84\xbd\xd8\x9b\x9c\x4a\xa4\xf5\xf8\x3d\xbb\x02\x38\xd2\x89\xa5\xc5\x38\x51\xb2\xed\xc5\x7c\x05\xd0\x98\x30\xa2\x14\x83\x46\x18\x5f\x31\x68\x2c\xa6\x00\x8d\x5e\x14\x17\x8e\x31\x43\x21\xcf\xcf\x96\xec\x92\xa9\x39\x06\x24\x2f\x02\x8d\xf9\xd3\x6b\xf2\xfc\xec\xf6\x2c\x14\x8e\x71\xb8\x4e\x21\x42\xd4\x25\x4a\x0a\x39\x80\xef\x71\xcf\x28\x7a\xfe\x98\xe2\xbe\x8c\x4f\x3f\x5d\xae\x92\x99\x28\xa4\xe0\x62\xfe\x28\x80\x46\xd7\x7e\x2b\xb8\x1a\xab\xfb\x49\x84\xe8\xf4\xd6\x25\x42\xf4\xf8\x38\x7c\x5c\x8d\xf4\x05\x57\x63\xfb\xfc\x46\x7c\x89\xf7\x44\xa1\x30\x0e\xf6\xe9\x52\x88\xd0\xf6\xbc\x50\x38\x26\xe1\xf4\x29\x44\x88\x0e\xb4\xf9\x42\x84\xe8\x9c\xfe\x0a\x85\x71\xa2\xc7\x70\xd8\x21\x7e\x12\xa3\x94\x0f\x31\xae\x46\xee\xe0\x08\x05\x57\x63\x26\xe5\xb7\x10\x21\xea\xf4\xf1\xc2\x7d\x12\xfb\xf3\x1b\xe5\x38\xbd\x77\xb9\x4f\x22\x98\xed\x56\xc4\x7b\x77\x0b\xb6\xf7\xb3\x7e\x84\x88\xe6\xe5\xf7\x3a\xf1\x3a\x7e\x0f\x64\xf1\xf8\x49\xb1\x1e\x6e\xb8\x0b\x85\x1c\x40\xae\x09\x0b\xa5\x22\xde\xbd\x07\x41\x86\x1d\x75\xa2\x18\x19\xfa\xc4\x81\x0c\x27\x51\x23\x85\x72\xa3\x8f\x05\x09\xc8\xd0\xae\xaa\xd2\x5c\xb3\x91\x16\x70\x35\xba\xa8\x6e\x01\x19\x2e\xaf\x0a\xc8\x90\x9a\xe4\xa1\x34\x97\x30\xf0\x7b\x84\x8f\x22\xd0\x4b\x43\x74\x80\x05\x0b\xe1\xa3\xdc\x22\x19\x4a\xc3\x95\x8a\x0a\x56\x9a\xef\xab\xf1\x37\x37\xca\x85\x7b\x46\xf2\x84\xf7\x75\xe3\xaa\x25\x14\xab\xd2\x71\xa5\x5a\xac\x38\x7c\x34\xb3\x3f\x09\x1f\xcd\x5e\x3f\x6e\x21\x74\x11\xdf\xc2\x2d\x84\x0b\x87\x7a\xc1\xd5\xf8\x9a\xbf\x80\x0c\x5f\x12\x94\x0a\xc8\xf0\x35\x7f\x01\x19\x46\xaf\xa6\x91\xa1\x77\x32\xc8\xb0\x7d\xde\x43\x3d\x0b\x7e\x8f\xd8\x1a\xa2\x85\x0a\xc8\xb0\x78\xfd\x40\x86\x0e\xc8\x2b\x20\xc3\x8d\x47\xa8\x80\x0c\x37\x06\x9d\x42\xb9\xd1\xe6\x1d\x62\x64\xf8\x85\xc9\x7f\x9b\x25\x0b\x34\xe6\xed\x21\x0c\x58\x2b\x36\xc5\x42\xea\xe0\xe3\x23\x46\xea\x60\xc0\xd2\x5b\x48\x1d\x8c\x9f\xdf\x28\x06\x6f\x96\x3c\x88\x4c\xf4\x74\x0e\xc2\x8a\x3e\xbf\x91\x5f\x96\xdd\x02\x91\xc1\x3e\x2a\x14\x8e\x59\xd8\x88\x0a\xa0\xd1\x61\xf3\x85\x4a\xa4\x1f\x3d\x87\x4a\xa4\x8e\xe2\x28\x13\x2f\xb2\xa7\x05\xd0\x58\x88\x28\x2e\x80\xc6\x96\xfc\x24\xe9\x9d\x3e\xfc\x14\x8e\x29\x78\x67\x0b\x85\x63\xaa\x25\x1c\xa0\xd1\xa5\xcc\x0b\xa0\x71\x5a\x37\x24\xb2\x34\x0f\xbf\xa7\xa5\x9d\x8f\x29\x8e\xa6\x45\x1c\xa0\xd1\x25\x14\x0b\xf9\x81\xd9\xda\x19\xb7\x10\xae\xe1\x5e\xe3\xea\x40\x67\x2e\x80\x46\x27\xc8\x16\xdf\x42\x88\x1b\xb2\x50\x38\xc6\x29\xc6\x65\xb9\x3a\x05\xfd\x14\x68\xec\x76\xde\x14\x40\x63\x43\x9f\x2e\x44\x96\x3a\xc3\xb2\x2c\xbb\xaa\x98\x79\x81\xc6\xbe\x49\x5f\x28\x8b\x28\x07\x6b\x4b\x14\x8e\xe9\xaf\x9f\x44\x74\xf8\xc0\x01\x1a\x5d\x74\xa5\x00\x1a\x67\x73\x7b\x88\x46\x6b\x28\x94\x1b\xdd\x20\xae\xc2\xb5\xf6\x11\xdf\x43\xe1\x5a\x7b\x1b\x0b\xca\xb6\xbd\xd1\xbf\xb1\x3f\x83\xdf\xe3\x16\x34\x82\xaf\x0a\xa0\xd1\x38\xa3\x90\x1f\xb8\xcd\x50\x00\x8d\xcd\xab\xb9\xed\xaa\x62\x0c\xdc\x42\x58\xcc\x84\x85\x0c\x7b\xf5\x9e\xc7\xd5\x18\x2d\xd4\x7c\x0b\x21\x21\x55\x65\xfb\x96\x37\xb7\x87\xbd\x18\x44\x59\x40\x86\x76\x89\x16\x5f\x6b\x0f\x98\x2e\x84\x8f\x36\xab\x2f\xb8\x1a\xc7\xf5\x6f\x5c\x45\xe4\xd5\xe4\x16\xc2\xcf\x18\xb8\x85\xf0\x98\x61\x1e\x42\x2f\xad\x7d\x12\x3e\xfa\x78\xe6\x8f\x6b\xe2\xd1\x33\x5f\x28\x61\x85\x85\xd0\xd2\x07\x0b\x6a\x21\xb4\x34\x9a\xd1\x1e\xec\xe1\x18\x1c\x0b\xa1\xa5\xaf\x95\x19\x5c\x8d\x8f\x35\x53\x90\xa1\x4b\x04\x15\x72\x07\x0d\xd7\x0b\xb7\x10\x6e\x62\x41\x8a\x90\x61\x7b\xf1\x47\x15\x21\xc3\xe6\x7a\x80\x05\x57\xa3\x2b\x71\x97\x4b\x72\xd6\xe7\x49\x89\xc6\xe3\x15\x73\x68\xe9\xe7\x3d\x0a\x37\x1d\xb7\x80\x6a\x63\x25\x8f\xdc\xc1\xc7\xac\x95\xdc\xc1\x08\x46\x2e\xe4\x0e\xda\xf9\x5d\x5c\x6e\xb4\xb8\x85\xc3\xa9\xf2\x6f\x12\xfd\x9d\xb0\x83\x4a\x75\x18\x6e\xbd\x0e\xd5\xa8\x11\x31\x56\xa9\x0e\x63\x73\x52\x35\x6a\x04\x23\x57\x5f\x36\x81\x12\x54\x41\x8d\x05\x55\xaa\x72\xd9\x44\xff\x21\x4b\xae\x8f\x6f\x09\x7b\x78\x4d\x52\x93\xeb\x11\x43\x15\xa0\x6c\x9d\xcd\x5a\xb9\xa0\xd0\xc1\xd4\x95\x4a\xa4\xae\x60\x5a\x1f\xa4\x4a\x75\xe3\x44\x6c\x3e\xfe\x8a\x58\x8f\xb3\xf8\xeb\x43\x80\x0e\xec\xac\x02\x28\xcd\xb2\x2a\x80\xd2\x29\x03\x95\xc2\x31\x05\x28\x5f\x01\x94\x1d\x2b\x5b\xc5\xd5\x38\x90\xbd\x35\xb8\xf0\x08\xad\x07\x17\x1e\xa1\x75\x5c\x8d\x0e\x12\xab\x5c\x50\x18\xdc\x17\xf2\x0a\xbd\x91\x2b\x79\x85\x76\x01\x55\xf2\x0a\x47\xf3\x37\x1d\x20\xe7\x27\xc9\xdb\x62\x4b\x54\x0a\xc7\xb4\xe8\x7e\x32\x3e\xb4\xeb\xea\xc2\x31\x08\x8b\x2a\x40\xd9\x86\x47\x44\xe1\x98\x81\xcb\xa2\x12\x91\x3a\x39\xfc\xf5\x75\xd2\x85\xbf\xe2\xc8\x6e\x3f\x49\x94\x43\xf4\x93\x04\xc8\x01\x4b\xeb\xeb\xbb\x5e\x4c\xb9\x5c\xa5\x5b\x1f\x68\x4b\xa6\xb0\xa7\x0e\x7f\x93\xa3\xc9\x66\xad\xb8\x1a\x43\x73\xeb\x14\x56\xc1\x3a\x57\x5f\xec\x8d\x1c\x80\x1a\xc9\x4b\xc3\x8a\x58\x71\x35\xba\xca\x44\x75\x5e\x21\x1a\x43\x8d\x8e\x02\xc8\x50\xda\xba\xdd\xe3\x13\xa0\x6c\x2e\xc0\x5e\x29\x37\xfa\x26\x3f\x89\xc1\x23\xba\xbd\x86\x39\xc9\x2d\x90\xd8\xf4\x69\x61\xa0\xbd\xd0\xcf\xe8\x72\x9c\x6e\x81\x22\xeb\xdb\xef\x69\x7c\x2e\x34\x54\x29\x37\x5a\xd0\x7a\x2a\xe5\x46\x7d\x73\x48\xa5\xdc\xe8\xf1\x93\xc9\x01\x8e\x7c\x25\x11\xd5\x8e\x79\xa0\x26\xdf\xb2\xe8\xf7\xa4\xda\x14\x82\x2d\x2b\xa8\xb1\x01\xf3\x2b\xe5\x46\x3b\xbe\xfd\xca\xfd\x15\xb6\x25\x57\xdf\x5f\xe1\xd5\xe4\xfe\x8a\x73\xdd\x02\x51\xfb\xb8\xa6\x2b\xa8\x31\x46\xb7\x67\xd6\xca\x4c\xd8\xd5\xd8\xdc\x1e\x5a\xeb\x74\x0b\x17\x1f\x09\x27\x87\x00\xd5\xed\x33\x9d\x61\x3d\x14\xfc\xac\x54\x87\x71\x0a\x46\x25\x40\xf5\xf1\x0c\x12\xa0\x1a\x60\xd7\x95\x00\xd5\xe0\x3d\x91\x5d\xa9\xda\xdf\x74\x52\x97\xbf\x29\xfe\xd2\x92\xbf\x42\x5e\xa8\xe7\x13\x57\xa3\x63\xea\x6b\xc6\x55\x7c\xfc\x15\x5c\xc5\xaf\x9f\xc4\x1e\x8e\x88\xab\x04\xa8\x9e\x4f\xcf\x24\x3a\x5e\xaf\x43\xa1\xfa\x8d\x67\xb0\x18\x75\xd0\x42\xc1\x60\xf5\xa1\x60\xad\xc4\xc8\x54\x02\x54\xf3\x87\x22\xa9\xc4\xfc\x05\x57\x63\x45\xd1\xa9\xdc\x5d\xff\x78\x3e\xb9\xbb\x3e\x98\x17\x14\x17\x6e\x32\x45\xe9\x83\xfa\x23\xc3\x45\x2d\x54\x0d\x30\x5f\x2f\xd6\xea\x3c\x20\xb1\x56\x97\xc2\xae\x5c\x50\x78\xcc\x76\x0d\x28\x81\x20\xd5\x80\x12\x7d\xb3\xe2\x85\x4c\x04\x74\xd5\x4a\x80\x0e\x1a\x43\xad\xd6\xca\xd9\x90\x15\xc0\x55\xfd\x1e\x5a\x0f\xe0\xb6\xe2\x6a\x2c\x1e\x2c\xae\xc6\xee\xc3\x41\x51\x19\x97\x9d\xac\x5c\x50\x68\x03\x4b\xad\x04\xc3\x63\x1b\xac\xdc\x5f\xe1\x9b\x0b\x2a\xf7\x57\xdc\xe4\xf6\x6c\xcb\x82\x2d\x71\x0b\xe1\x13\xdc\x4f\x62\x73\xbd\x09\x1a\xe3\xf3\x71\xa0\xdc\x68\xf0\x26\xe0\xfe\x8a\x68\xa1\xd6\x60\x3d\xde\x12\x14\x95\xf1\x7d\x19\x95\xa2\x32\x85\x32\xa5\x95\x7c\xc4\x01\x42\xa8\x00\x4a\x17\x77\xac\xdc\x5f\xc1\x7d\xd5\xa1\x02\x28\x47\x71\x0b\xe4\xb3\x2d\xbf\x07\xea\x48\xfe\x26\xe5\x2a\xb1\x5e\x55\xf2\x11\x0f\x86\xa0\x4a\xec\x2a\xb7\xee\x86\x4a\xec\x2a\xb7\x50\x87\xca\xfd\x15\xc6\x3c\x95\xd8\xd5\xe2\x19\x24\x76\x75\x99\x5d\x13\xbb\x7a\x89\x1a\xa9\xb8\x1a\xa3\x85\x2f\xae\xc6\x8a\x3d\xae\x76\x07\x58\xd1\xba\x01\xa5\x57\xcc\xae\xc6\xed\x6f\xda\xd5\xe8\x27\x1d\xdb\xc9\x9c\x19\x50\x16\xf7\x05\x7b\xbf\xf7\xa0\x00\x65\x5b\x38\xed\xea\xc7\xd5\xe8\x27\x71\x35\x9a\xd1\x0e\xa7\x6c\x33\x83\xb8\x1a\x0f\xe6\xab\x3a\x9c\xef\xc5\x37\x07\xc9\x0c\xe4\xc8\xd5\xe1\x00\x40\x7a\x36\x38\x9a\x9e\xeb\xe1\xaa\x16\x8c\x88\x7c\x44\xd7\x4d\xab\xe4\x23\x66\xef\x2c\x6e\x21\x6c\x9e\x09\x5c\x8d\x6d\xfa\x37\xa2\x8c\x88\x95\xa8\x42\x8d\x79\x78\x0f\x92\x8f\xe8\x2b\x01\xea\x20\xca\x08\xa4\x56\x87\xab\x92\xf0\x95\x89\x6a\x43\x4c\x40\x05\x35\x72\x57\x77\xa8\x46\x8d\x14\x8a\xaa\x46\x8d\x44\x92\x57\x5c\x8d\x2e\xed\x5f\xa7\xef\x8f\x61\x0c\x54\x95\x71\xb8\x63\xa5\xaa\x8c\xcb\xf7\x57\xaa\xca\x44\x4c\x0e\x95\xaa\x32\x9f\x55\x01\x35\x56\xef\x2c\x50\xa3\x4d\xa1\x15\xd4\xb8\xa2\xdf\xdb\x64\x51\xba\x2f\xa0\x46\xf3\x09\x2e\xa9\x70\xae\x41\xa5\xdc\x68\xb4\xaa\x41\xb9\x51\xd7\xe7\xab\x04\xa8\x5a\xb7\xaf\x5c\x52\x61\x03\x52\xe5\x92\x8a\x84\x3d\xbc\xfa\x92\x0a\x8b\xbf\xe5\xfd\xe9\xaf\x70\xfe\x82\x9f\x74\xb9\x58\x7f\x93\x4a\xd5\x58\xff\x2b\xa8\xd1\xd9\x97\x15\xd4\x98\xcc\xf9\xc8\x47\x4c\x38\x48\x2b\xe5\x46\xf3\xe7\x9b\xe2\x2f\xa5\xfe\xa8\x84\x7d\x5d\xb6\xb5\xf2\x49\xdf\x5f\x41\x7d\x88\x4a\xec\x6a\xc1\xd6\x5a\x89\x5d\x75\xd0\x4f\xc5\x0b\x79\x00\xa2\x75\x33\xf4\x63\x8a\x3b\x00\xcc\xca\x01\x8d\xb6\x34\xd5\x8d\x3d\x0e\x3f\x67\x25\x1d\xf1\xb3\x05\x01\x8d\xc3\xac\x9c\xf8\xd4\x89\x77\xbd\x12\x9f\x3a\xbb\x9f\xe4\x8e\x11\xeb\xda\x1b\xd0\x61\xed\x93\x3b\x2a\xb6\x0f\xf1\x71\x6a\x03\xdf\xc4\x9d\x98\x7c\x50\x01\x8d\xae\x2b\x51\x8f\x53\x53\xd8\x20\xc4\xa7\xee\xe3\xf7\x28\xd9\x48\x08\x7f\xc5\x9d\x18\xac\x8f\xe1\x4e\x74\xd5\xa8\x8a\x3b\x31\x5a\x7f\xc7\x9d\xb8\x92\x5b\xc0\x15\xf0\xfa\x37\x8c\x36\x58\xc4\xea\xe1\x7a\xa3\xeb\x31\x1c\x1c\x5e\xa6\xf0\x14\x5b\x4b\xa6\xa4\x68\xf5\x86\x74\xc1\x99\xe2\xdf\x10\x0f\x38\x10\xeb\xa7\xa4\x28\xeb\xe7\x82\x33\x58\x42\xeb\x75\x51\x20\xbf\xc7\x1d\x2a\xde\x4a\x14\x9c\xf9\xe8\xb0\x80\x46\xe7\x3c\x55\x40\xe3\xf6\x9e\xb8\x0e\x32\x62\xec\x8e\x4f\xb5\x0e\x84\xab\xd1\x01\x95\x15\x57\x63\xb0\x8e\xee\xf8\x54\x0b\x3c\x5c\x8d\x9d\x7e\x36\x5c\x8d\xb6\xe9\x37\xe2\x53\x3b\xcc\xad\x39\x1f\x91\x6f\x36\xf2\x11\x37\x39\x9c\xcd\xf1\xa9\x44\x08\xb4\xc7\x91\x36\xfe\x8a\xc4\x7b\x42\xe0\x35\xe2\x53\x13\x36\xc5\xf6\x89\x4f\x5d\x50\x5c\xbf\x05\xdb\x6d\xe4\x23\x06\x98\x5b\x23\x1f\x31\xc1\xdc\x1a\xf1\xa9\xa3\xf9\x49\x4a\x52\x0e\x3f\xa9\xe3\xe7\xca\x15\x8d\xf8\xd4\x83\x95\xb4\xf9\xf6\x42\x76\x6b\x23\x57\x31\x54\x53\x0e\xf2\xe3\x2b\x04\xa1\x72\xcd\x68\x68\x20\x43\x97\xb9\x6c\x20\x43\xc3\xf5\x06\x32\xe4\x3a\xfc\xd0\x40\x86\x1d\x86\xd9\xa8\x38\x13\xaa\x5b\xf7\x0d\x93\xfe\x0d\xe4\x44\xee\x60\x0b\xe4\xba\x05\xb7\x2e\xf1\xd7\x59\xdb\x86\xab\xf1\x4e\xf7\x85\xd4\x9b\x6d\x4a\xeb\xf7\xa0\x45\xb6\xd7\x35\xf1\x18\xfb\xeb\x9a\x78\xa6\x6c\x94\x32\x45\xae\x22\x3b\xb9\x91\xab\x38\xa7\x29\xd2\xd5\x51\xdd\x1a\xf7\xd3\x07\x94\x8b\x46\xae\x62\x87\x4b\x35\x97\x14\x85\x4f\x34\x90\xe1\x29\x6e\x81\x48\x29\x70\x70\x73\xae\x22\xa2\xb8\x91\xab\x98\x8a\xbf\xe9\xfc\x05\xb7\xe7\x48\x29\x7f\x93\x20\x38\xc2\x6a\x1b\xae\xc6\x88\x02\xd8\xa2\xfd\x51\xf4\x5a\xc8\xb0\xd9\x7c\xd5\xb8\x9f\x3e\xba\x3d\xee\xa7\xd7\x05\x1d\xbf\xc9\x92\x9b\xaf\xae\x47\x17\x6d\x5c\x5d\xef\x62\x2d\x8d\x34\xc6\x87\xa4\xdb\x46\xb5\xd1\xf0\xba\x39\x1d\xcd\xb8\xdc\x31\xe2\x37\xb1\xa0\x36\x2e\x3d\x8c\xd7\x43\x30\x6b\x65\x92\x00\x8d\x73\xfb\x37\x24\xe3\xeb\x4e\x23\xf9\xb1\x9d\xb5\xc4\xf5\x38\x80\xe2\x96\x2c\xf9\x79\x92\x4b\x0f\x0d\x4f\x5a\xc2\x4b\xee\x4d\x90\x10\x0f\xc8\xb4\x96\xac\x99\xfa\x2b\xd8\x73\xb2\x7f\xe3\xfa\x26\x4c\x15\x4d\xa0\xb1\xba\xb0\x65\xa3\xa4\xe8\x06\x96\x36\x4a\x8a\x5e\x2c\xee\x8d\x92\xa2\x6f\x73\xeb\x78\xc9\x81\x66\x8d\x92\xa2\xf6\xc0\x36\x97\x14\xfd\xb4\x4e\xa4\x86\x0f\x2a\x25\x45\x1f\x60\x62\xcb\xa4\xa6\x10\x19\xd2\x32\x69\xa8\xcd\xbf\xd9\x53\x4c\x5f\x32\xa9\xb4\xde\x74\x2e\x38\x83\x23\xb0\x39\x06\x15\x1b\x5f\x23\x06\xd5\x8c\xaf\x01\x0c\x7d\x8d\x4f\x03\x18\x8e\xe8\x6f\x12\xe8\xb6\xfc\xde\xc6\x63\xef\xbe\x60\xb8\xf0\x2c\x65\x47\x32\x30\x22\x62\x50\x27\x02\xa8\xf9\x1e\x0a\x62\x56\x1a\xf7\x50\x04\x1f\x38\xdc\x89\x2e\x6f\xdf\x70\x27\xbe\x3e\x70\x14\x9c\xf1\x4d\x75\xcd\x05\x67\xd0\x96\x9a\x0b\xce\xf8\xf8\x51\x70\xc6\x65\x35\x1b\xf7\x50\x38\xa3\xac\x01\x0c\xed\xaa\x6a\x85\x48\x14\xcf\x44\x21\xb3\xef\xd3\x33\x02\x15\x9b\x9f\x24\xc6\x16\xbc\xd7\x8a\x4b\x6e\xd2\x97\x6a\x9b\x37\x33\xe8\xeb\xe9\xc1\x12\x0d\xf4\x67\x3d\xbc\x81\xfe\x2a\xd1\x1f\x0d\xf4\x57\x87\x7f\x23\x10\x0c\x75\xa2\x55\x4a\xa6\xba\x3d\x97\x14\x5d\x7e\x52\xeb\xe7\xe2\xf3\x0d\xf4\x17\xa2\x5b\xc7\x70\xe1\x13\x00\xfa\x5b\xde\x21\xa0\x3f\x07\x3f\x36\xd0\xdf\xa9\xee\x8b\xd4\x97\xcf\xd8\x41\x7f\xbe\x1d\xae\x81\xfe\x7c\x6b\x65\x03\xfd\x25\xe2\xa6\x1a\x97\x4d\xbc\x66\xbb\xdc\x5e\xe8\xfb\x55\x1a\xb7\x17\x5e\x8c\x4b\xad\x21\x1e\x8a\xbf\x49\x24\x91\x59\x5d\xb3\x4f\x86\x11\x51\x52\xd4\x89\xd8\x8d\x40\x53\xeb\xd3\x0d\xf4\xb7\xbd\x2a\xa0\xbf\xd7\xe7\xa8\x11\xc9\x80\xa9\xa2\x35\x1b\x0e\x19\xad\xd1\xdf\xf6\x93\xa4\x42\x83\xbb\x1b\xe8\xcf\xd5\x29\x5a\xb7\x78\x67\x06\x71\x27\x3a\x4b\xb4\x75\xbb\x4b\xf9\x26\x99\x8b\x1f\x41\x89\x3b\xb1\x78\x06\xc9\x5c\x74\x86\x44\x73\x35\x1a\x8b\x38\xaa\xd1\x24\xef\xdd\x0e\x0f\xb1\x80\x05\xfd\x3d\xeb\x47\xb6\xe4\x06\x30\x4c\x14\xba\x6b\x00\xc3\x84\x25\xb4\x01\x0c\xb3\x17\xac\x93\x54\x9c\x4d\x91\x54\x6c\xa6\x38\x08\x52\xf1\x81\x1b\x2e\xc7\x49\x37\x07\x36\x37\xb4\xc8\x26\x60\xd8\x5d\xdf\xb7\x09\x18\x76\x17\xf7\x69\x03\xf1\x60\x69\x34\x10\x0f\x66\x05\x00\xc3\xe0\x2d\x0f\x30\xf4\x45\x4f\x0d\x60\x98\xcd\x7a\x00\x86\xce\x91\x6b\x00\xc3\x59\xfd\x24\xe2\x61\xb8\x2f\x64\x7f\x11\xd3\xd1\x00\x7f\x0f\x61\xde\x0d\xf0\x67\xdb\x59\x9b\x2e\xab\xc9\x62\x4e\xd7\xe4\x62\xb4\xce\x40\xf4\x62\x52\x70\xa6\x7a\xd9\x5d\x70\xc6\x3a\x9e\xb3\x0c\xcd\xf4\x29\x0d\xea\x40\xa2\xc6\x4d\x83\xe7\xf3\x4d\x12\x9c\x7d\xf8\x97\x8f\x0a\xcc\x14\xf7\x5e\x36\xb3\x59\x54\xa7\x35\x8b\x04\xa8\x6d\xeb\x2b\xcb\x17\x45\x32\xbe\x45\x75\x5a\xb7\x40\x26\x61\xb3\x20\x01\xa8\x8d\xee\xdf\x30\x94\x10\x44\xdf\x28\xff\x39\xcc\xf4\xb9\x4d\xf0\xf8\x48\x93\x49\x68\xd3\x48\x5b\xc4\x2c\xe3\x22\x69\xbe\x4d\x30\xba\x75\xc4\x91\xd7\x01\x34\xe6\xcb\x72\x1a\x68\xcc\x97\x2b\x35\xdf\x26\x48\xce\x53\xc3\xbd\xd7\x3c\xbb\xb8\xf7\x3e\x02\x7d\x3b\x09\xd6\xbf\x11\x74\x87\x91\xa1\x91\x49\x18\x30\x51\xb5\xed\x24\x66\x46\x44\x26\xe1\x32\x03\xdb\x14\xc6\xb1\xee\x4b\xe0\x67\x04\xd8\x37\x0a\xc7\x3c\xc7\xbf\xe9\x3c\x38\x10\xac\x6d\x0c\x25\xc1\xd4\x25\x95\x82\xfd\x72\x9c\x4e\x60\x8a\xf2\xa6\x3e\x63\x20\x35\xdf\x57\xd3\x40\x6a\x9b\x88\x92\x76\xa8\xbd\x88\x07\xa3\xf9\xbe\x78\xef\x48\x2e\x7f\x78\x00\xda\xed\x50\xd5\xc2\xe2\x9d\xf2\x9f\x73\x9a\x62\xfd\xbc\xaf\x0f\xb5\xed\xac\x41\x1b\xa9\x59\xdb\x3d\x88\x2a\xeb\xda\xdc\x26\x98\xac\x25\x1f\xdc\x97\x20\xc3\x46\x26\x61\x36\x23\x22\xf0\xb3\x98\x65\x39\x93\xd0\x2a\x18\x81\x9f\xce\x3c\x6d\xdc\x26\x18\xad\x4e\x70\x9b\xa0\x6b\x68\xb7\x0b\x2b\xf7\x09\xa7\x34\x68\xd8\x6e\x81\xf1\x79\x4f\x90\x49\xe8\xeb\x73\x1b\x41\xa1\xf6\x8a\xb4\x4b\xed\xb7\xee\xf7\x48\xc7\xb2\x60\xf6\x6d\x82\x46\x24\xd7\x48\x9b\x99\xc7\xbd\x17\x70\x54\x37\xdc\x7b\xc6\x43\xfd\xf1\x95\x6c\x0b\x8a\xda\x8b\x84\xbd\x75\x82\x42\xe7\x32\xc5\xe5\x08\x8c\xa1\xe3\xde\xab\x8c\xaf\xe3\xde\x73\xf1\xa2\x4e\x50\xe8\xfb\xb5\xcf\x7e\x93\x25\x77\xe2\x45\xbd\x95\x3a\x17\x0d\x5a\xef\xe8\xb8\xf7\x5a\x71\x03\x1c\xcd\xe9\x6e\x4e\xac\x7a\x0f\x94\xb4\x2c\xd7\x17\xed\x0f\x36\xcc\xe6\x27\xd1\xb2\x8e\x87\x80\x7b\x08\x0d\xac\x07\x40\x2a\x01\xef\x3d\x20\xc5\x08\x75\xe9\x81\x74\x10\x34\xa2\x4e\xd9\x50\xdf\x51\xd6\x03\x36\xe8\x6c\xca\x99\x3e\x4c\x0b\xf1\xa2\xbe\x5d\xac\x13\x2f\x1a\xdd\x3a\xb7\x09\x66\xf7\x9a\xdb\x04\x7d\x6f\x5d\x0f\x64\xa2\x79\xec\xc4\x8b\x3e\xc4\x6f\x76\x40\xdc\x83\xa5\xb0\x07\xdf\xeb\x91\xa0\x0e\x1e\x66\xb7\xae\xad\xeb\xa2\x24\xfd\x25\x09\x16\xed\xba\xe3\xde\x5b\xd8\xea\x3a\xf1\xa2\x0f\xe8\xa1\x73\x9b\x60\x43\x07\xea\xbe\x4d\xd0\xad\x93\x49\xf8\x78\x96\xc8\x24\xf4\x15\xed\x5d\x20\xae\xde\x0f\x85\x7b\x76\xf9\x3d\xea\x7b\x5c\x53\xb8\x67\x83\x9f\xc4\xfd\x35\x4d\x71\x34\x97\x7b\x4d\x4d\xb5\xc7\xfd\x3c\xe8\x1d\xcc\x19\x99\x84\x4e\xd6\xed\xb8\xf7\x0a\x49\x2c\x9d\xeb\xe9\x3f\x33\x18\x5d\xf4\x88\x99\x8f\x5e\x3f\x53\x0e\xda\xf2\x57\x28\xab\x09\x13\xee\xbe\x9e\x1e\x71\xdb\x3f\xee\x3d\xbf\x87\x11\x0c\x03\x44\xc7\xbd\x67\x17\x6c\xc7\xbd\x57\x8b\x29\xee\xbd\x20\x5e\xa7\x13\x2f\x7a\x1e\xf7\x93\xfa\x17\xd9\x2d\x00\xc2\xab\x5b\xd7\xf8\x7c\xed\x6e\x07\xa9\x39\x26\xa0\x83\xd4\x0e\x86\x92\x6e\xf7\x1e\x22\xae\xe3\xde\x8b\x84\xee\xf5\xc4\xfa\x4d\x7f\x05\x55\xc3\xf3\x82\x7b\xaf\xf9\xb8\xe3\xde\xeb\xe8\x86\x1d\xf7\x9e\x4b\x19\x75\x82\x42\x7d\xd1\x67\x07\xa9\x0d\xdc\x6d\x1d\xa4\x16\x51\x66\x3a\x48\x6d\xa1\x6b\xf7\xcf\x6d\x82\xee\x35\xeb\x97\xfc\x1e\x41\x69\x9e\x79\xca\x86\xba\xb2\x72\xa7\x6c\xe8\x44\x79\xea\x04\x85\xbe\xb8\x05\x7b\x26\xde\x17\x55\xa3\x73\x07\xbd\xed\xb7\x1d\x14\x97\xc8\xcc\xec\xa0\x38\x57\xac\xeb\x64\x12\x76\xb3\x3a\x82\x42\x27\x28\xb5\x3b\x28\x14\xad\xbc\x13\x14\xea\xfa\x6e\xfd\x13\x14\xca\x88\x08\x0a\x75\xa6\x6b\xf7\x1d\xf4\xa8\x75\x9d\x8b\x21\x5c\x30\xa8\x0b\xc5\x55\xdf\x34\xd8\x8b\xd3\x79\x0a\x14\xaa\x0d\x05\x06\x3a\x28\x2e\xe3\x70\xee\xb8\xf7\x5c\x19\xb1\x17\x54\x1b\xd2\xb1\x3a\x28\xee\x31\x4b\x16\x8a\x6b\xc6\xb3\xbd\xb0\x3f\xc1\x35\xbd\xe0\x23\x09\x6e\x81\x9c\x08\xcf\x44\xb1\x6a\xf3\x23\xc3\x45\xc7\xbd\xb7\x96\x3f\x42\xe4\x84\x8f\x74\xf1\xd6\x35\x45\x4d\xfe\xeb\xae\x68\xeb\x16\x33\x68\x2a\x8a\xda\x4f\xdd\xb9\x68\xb0\xb8\x9b\xc4\x8b\xfa\x6e\xac\x4e\xbc\xe8\x33\xfd\x5b\x82\x7d\x32\x58\x2e\x1a\x74\x40\x5e\x27\x5e\xf4\xf5\x81\x13\xc0\xeb\x21\xf9\x2b\x00\x58\xe2\x3d\x7a\x45\x6a\x02\xd4\x3a\xd7\xd3\x4f\xa0\x4b\x07\xe0\x35\x42\xb1\x3a\x00\x6f\x76\xb7\x8e\x7b\x0f\xcd\xad\xe3\xde\x2b\x00\xa0\x4e\xbc\xe8\xb2\xf4\xa3\xa4\x68\xf1\xf8\x7c\x3d\xbd\x05\x02\xee\x3d\x7b\xc9\x3b\xee\xbd\x85\x79\xa7\x03\xf0\x1a\xe6\x81\x0e\xc0\xb3\xd5\xb2\x37\x82\x9a\x80\x6d\xbd\x71\x9b\x19\x96\xd0\x4e\x69\x9a\x88\xdd\xb0\x53\x9a\xa6\x45\xb7\x60\xf7\x90\x5b\x9f\x1c\x70\xb6\x7c\x73\x12\xba\x5b\xd8\x80\x31\x7f\x93\xfa\x10\x16\x2b\x00\xbc\x63\xb1\xd2\x1d\xd4\xc4\x3a\xb8\x34\x8d\x45\x2a\xee\xbd\x82\xf6\xd9\xbb\x33\xed\x18\x11\x00\xcf\xf1\x02\x1d\x80\xe7\xb2\xf1\x1d\x80\x37\x2d\x56\x28\x4d\xe3\x58\x89\x0e\xc0\x7b\x93\xbf\xc2\x9d\x1f\x3e\xa8\x9d\x54\x03\xcc\x42\x9d\xd2\x34\xc3\x4c\x9f\xd2\x34\x2e\x73\xd4\x41\x71\xae\x43\xd2\x41\x71\x76\xba\x76\x50\x9c\xf3\xa8\x3a\x28\x2e\x9a\xf1\x81\xe2\x92\x67\x69\x70\x65\x12\x01\x4f\x5d\x28\xae\xb9\x7e\x78\xa7\xdc\x68\xc6\xc5\xd5\x29\x4d\xd3\xd0\xe3\x3a\xa5\x69\x76\xf0\x7b\xec\xcf\xe1\x6f\x6a\x7f\xba\xb2\x5e\x1f\x0e\xba\xf3\x6f\x5a\xbf\xe0\x7d\x0d\x8a\xb3\x2d\xb2\x83\xe2\x7c\x89\x43\xb7\x7b\xcf\x6c\x1e\xf7\xde\x9b\xfc\x1e\x25\x6f\x3d\x67\x20\xbc\x46\xc4\x45\x07\xe1\xf9\x52\x85\x8e\x7b\xef\x7c\x7e\xc3\x07\xb4\xfd\x1b\xb7\x25\x56\xff\x96\x89\x6b\x60\xcf\x93\x49\xf8\x61\x52\xdc\x26\xb8\x86\x29\x22\x5f\xc0\x2e\x7d\x72\x1b\x24\x70\xbd\x73\x69\x84\xef\x29\xea\x64\x12\xbe\xaf\x5b\xa0\xfe\x85\x15\x40\x32\x09\x87\xc5\x03\x99\x84\xd1\x2a\x83\x33\x09\x41\x01\x7d\x11\xcf\xec\x6f\x92\x49\x18\x30\x16\x74\x32\x09\x13\x28\xa0\x2f\x27\x69\x9b\x22\xa8\x17\xb3\x57\xa7\xfe\xcc\x6b\x26\xfc\xb9\x34\xc2\x14\xf6\x69\xb3\x72\xca\x8d\x0e\xb3\x56\xea\xcf\xf8\xe2\xdb\x4e\x26\xa1\x43\x13\x3b\xe5\x46\x7d\x4d\x44\xc7\xbd\xe7\x9a\x71\xdd\xee\x3d\xf3\x33\xdc\x7b\x8a\xc5\xff\x6d\x96\x8c\x7b\xcf\x99\x4c\x9d\x4a\xa4\xaf\x37\x32\x95\x48\x9d\x13\xde\x37\xc5\xa8\x2d\xd3\x36\x5b\xd7\x12\x67\x13\x94\x66\x26\x05\xa0\x5c\xb8\x3a\xfa\x76\xbc\xa1\x9f\x74\xfd\x0b\x7f\x53\x5b\xf7\xc3\xa0\x1d\x2f\x4a\x2c\x41\x27\x5e\xd4\x35\x27\x3a\xae\xbf\xd7\x90\x00\xd7\x9f\x6f\x2a\xee\xb8\xfe\x9c\xba\xd1\x29\x4d\x33\xb1\xdf\x76\x5c\x7f\x09\x5b\x56\x3f\x4e\xa2\x64\xb4\x00\x4a\xdf\x39\xd0\x01\x94\xef\x32\x85\x41\xc0\x2c\x0b\xd7\xdf\xf0\x71\xc0\xf5\x37\xad\xb1\xe3\xfa\x5b\x9f\xdf\xf0\xdc\x5a\x47\xa7\x34\x8d\xab\x8c\x75\xbb\xfe\xaa\xdf\x43\x6b\xb5\x24\x3e\x16\x8d\x8c\x88\x4c\xc2\x5d\xdc\x3a\x80\xd9\xe3\x23\x5e\xd4\xf1\xa9\x1d\x40\x79\x2d\xb3\x29\x4d\x73\xbd\x62\x00\x4a\x43\xdd\x0e\xa0\x8c\xd8\x06\xfb\x25\xb2\x00\x9b\x69\x17\xa0\x4c\x1f\xe1\x44\x69\x1a\xd7\xf0\xed\x06\x94\x40\xeb\x8e\xeb\xef\xc3\x06\x71\xfd\x7d\xd8\x84\x4b\x91\x5a\xbf\xa5\x14\x69\x2b\x6e\x0f\xd1\x61\xc1\x7c\x2d\x3a\x38\x38\xd7\xa2\xc3\xdf\xc4\xbf\x60\x5d\x0d\xd7\xdf\xc1\x88\x32\x00\x94\x4f\x37\x85\x41\x00\x23\xca\x00\x50\x36\x58\xe4\xa0\x34\x8d\xf3\x11\x07\xae\x3f\xb7\x30\x1e\x47\x16\x04\x28\x82\xb6\x38\xee\x83\xa0\xd0\xf4\xfa\x9b\xa0\xaa\x4f\x0b\xa0\xaa\xe8\xaf\xf8\x36\x48\x7f\x85\x4c\x57\xd4\x82\x81\xeb\x6f\xa2\x40\x0c\x5c\x7f\x4e\xb6\x1e\x2e\x4d\x83\x71\x69\xe0\xfa\xf3\xa5\x11\x83\xd2\x34\x2e\xbd\x33\x70\xfd\x0d\xd8\xc4\xc0\xf5\x77\xa3\x29\xee\xd2\xc0\xf4\x33\xb8\x9e\xde\xc5\xee\x07\xae\xbf\x17\x96\x3c\x70\xfd\x45\x8a\x09\x8d\xe0\xfa\x1e\xf4\x25\xd8\x36\x6f\xea\xff\x61\xec\xcf\x95\x2b\xd8\x7d\xa8\x5f\x2c\xbf\x4f\xc3\xb9\xc9\xaa\x9b\x10\x1c\xde\xc3\x81\xcb\x99\x03\xbf\x7f\xe0\x12\x7e\x6b\x9f\x96\x74\xae\xfe\xe7\x0b\x14\x6c\xaa\x07\x36\x07\x10\xc3\xc2\xc2\xc0\xef\x3b\xf9\xe5\xfb\x4f\x14\x56\x13\x9a\xd2\x11\xf5\x76\xea\xd5\x70\xd8\x4f\x8a\x4d\x88\x20\x6c\xc2\x3f\xa3\xa2\x4c\x13\xfe\x99\x8d\x6b\x64\x02\x0a\x15\xfa\x63\x52\x6c\x62\xb2\xe6\x27\xc5\x26\x0c\x35\x6b\x26\x1c\x3a\xc4\xb1\x26\xa1\xbf\xdc\xf4\x3f\x6a\xa1\xe0\x98\x99\x80\x42\x55\xe7\x7a\x26\x1d\xfd\xbc\x1d\xab\x31\x98\xde\xee\xf3\xb7\xd4\xb3\x84\x55\x45\x78\x7d\x52\x4d\xd0\xba\x9e\xe9\xaa\xe9\xd9\xfa\x05\x1e\x1d\x77\xe7\x54\xb1\x89\x47\xbd\xbe\xc0\x15\xe8\xa7\x5b\x8d\xe5\xe0\x9f\x9e\x59\xc8\x1e\xee\x53\x96\xe1\xd7\xbc\xff\x4f\x91\x3c\x31\x28\x95\xc5\x3f\x95\x80\xf8\xe8\x21\x18\x24\x98\x0b\x33\xcb\x20\x61\xa2\x09\xfd\x19\x59\xfc\x93\xd0\xdf\x21\xa4\x36\x55\x68\x50\x8b\x8e\xd0\xdf\x41\x78\x4f\x42\x7f\xca\xf7\x9a\x6e\x50\xb6\xb0\xf4\x3e\x3e\x3d\xeb\x99\x64\x71\x69\x99\x11\xfa\xab\xc4\x86\xa7\x0c\x4a\xb4\xf9\x89\x41\xd9\x34\x2c\x05\xad\x0e\xa1\x31\xa9\x43\x21\x2a\x95\x49\x1d\x8a\xd1\xf4\x3f\xb4\x3a\x7c\x91\x93\x2c\x43\xc3\x54\x9a\x64\x19\x2e\x7d\x11\x59\x86\x5b\xcb\x05\x83\x72\x1f\x3d\x45\xa7\x26\xfd\x04\x2f\xaa\xe8\xfa\x24\xcb\x50\x35\xa9\x27\x59\x86\x01\x4d\x63\x92\x65\x28\xca\xbf\x49\x96\xa1\x12\x8e\x67\x85\xff\x42\x23\x01\xa1\xe9\xc3\x81\x37\x21\x34\xed\x1c\x71\x13\xbc\xe8\xd0\x53\xc0\x8b\xce\xa0\x2b\xfd\xe8\x98\x8f\x9e\xc9\xd1\xa1\x85\x0c\x5e\x74\x7f\xee\x03\x74\x57\xf4\x4c\x1c\x02\xc4\x02\x66\x95\xc1\xa5\xbe\x70\x74\x0c\xdd\x87\xc3\x2a\xe9\x0d\x1b\x4b\x46\x57\x8a\x3f\x81\x51\x12\x5e\x94\x28\xc5\x04\x2f\xaa\x8a\x2a\xd3\x0d\xca\x21\x9b\x60\x36\x58\xf7\x82\xae\x24\xf6\x50\xf5\x4b\x84\xa6\xba\x8f\x2c\x43\xf5\x53\x84\xa6\x78\x6c\x27\x84\xa6\x62\x72\x9e\x10\x9a\x0a\x73\x3e\x21\x34\xad\x8f\x9e\xc2\xd1\x41\x88\x79\x92\x65\x78\xc8\xe2\x9a\xaa\x43\xa1\xb9\x25\xcb\x30\x74\xdd\x47\x1d\x8a\xad\x5e\xfb\xfa\x14\x97\xde\xc4\x6a\xd4\x51\x3c\xc9\x32\x14\xea\x7b\x62\x35\xaa\x5c\xef\x84\xd0\x34\x2e\xfd\x0f\xad\x1c\x77\xd2\x24\xcb\x50\x6c\x11\x13\xab\x71\x82\x67\x9e\x64\x19\x2a\xa9\x6b\x62\x35\x4a\xf3\x9e\x58\x8d\x1f\xc1\x47\x21\x8a\xa6\x63\x8c\x42\x14\x4f\xd6\x95\x4a\xd5\x52\x5f\x00\xa5\x69\xfe\x44\x68\x8a\x82\x34\x3f\x95\x06\x19\x4f\x55\x1a\xc4\x75\x30\x55\x69\x10\x9f\xe9\x24\xcb\x50\x15\x40\x66\x97\xc3\x8a\xbe\x28\xcb\x50\x62\x9e\x2c\x43\xe5\xd6\x4d\xb2\x0c\x95\x4b\x3b\xbb\xc2\xd6\x7a\x26\x61\x6b\x5c\x38\xb3\x8b\xb5\x4d\xf7\x4d\x7e\xe9\x4a\xb2\x7c\x35\x7f\x6e\x35\xb6\x3e\xf4\x8b\x04\x7c\x2c\xd1\x49\x96\xe1\xd0\xe8\x52\x69\x50\x8e\xb5\x09\xa1\xe9\xd5\x61\x08\xff\x4c\x24\xa0\x3e\xe1\x9f\x11\x9e\x6c\xc2\x3f\xf3\x39\x8e\x00\x85\x16\x7d\x91\x40\xa1\xda\xc5\x43\xd0\x82\xff\xc2\x25\x4f\x22\x86\x43\x27\x23\x06\xa5\x68\x35\x27\x06\xa5\x92\x60\x27\x06\xe5\x94\xcc\xc7\xa0\x5c\x3a\x9b\x64\x50\x7e\xee\xa3\x44\x8c\x96\x0b\x5c\xa7\xe7\xd1\x53\x00\x94\x48\xa0\x60\x50\x56\x9d\xd2\x18\x94\x0d\x0c\xe3\xc4\xa0\x9c\x55\xbf\x48\x70\x96\xd6\x83\x41\xb9\xf1\x1f\x4d\x0c\xca\x23\x31\x4f\xfd\x8a\xa0\x5e\x63\x50\x06\x6d\x07\x0c\x4a\xa5\xd2\x4e\x19\x94\x59\x6f\x67\xe9\x12\xf0\x9a\x64\x19\x2e\x0d\x3c\xd4\x34\x32\x60\x27\x55\x08\xe5\x10\x98\x10\x9a\x6e\xd3\x33\x5d\xf4\x64\x1d\x5c\x26\x82\x79\xb6\x11\xd4\x34\x0b\xdd\x7e\x52\xbf\x42\xd8\xce\x69\x2a\x61\xc4\x17\x61\x50\x66\x2d\x2c\x08\x4d\xc5\x8a\x35\x4d\xf5\x0f\xf4\x8b\xfa\x07\x12\x91\x84\x13\x03\xa6\xee\x24\xcb\x30\x6a\x03\x40\x68\xaa\x80\xde\x24\xd4\xb8\x3f\xef\x03\x10\x94\xf4\x14\x00\x5d\x9f\x5f\x87\xd9\x54\x3f\xb1\xaa\x30\xc2\x27\x78\xd1\x43\xa8\x71\x2e\xb1\x62\xf1\xbe\x05\x20\x48\x8b\x95\x2c\xc3\x83\x35\x36\xc9\x32\xcc\xf8\x6f\xa7\x1b\x94\xa3\x10\x1c\x9e\x4b\xa8\x1f\xbe\x01\x6a\x9a\xe7\xf3\x4b\xdc\x18\x08\x06\x51\xd3\xe0\xc6\x98\x18\x94\xe2\xe0\x9b\x18\x94\xb7\xe9\xed\xf8\x92\x35\xd3\x0b\x87\x1c\x7e\xd8\xb9\x10\x3d\xd2\x4c\x17\x80\x2e\xed\x07\xb2\x0c\x07\xae\x8a\x89\xd5\x18\xb0\xa3\x26\x59\x86\xaa\xa8\x3c\x09\x43\x16\x1d\xf6\x10\x9a\x56\x29\x02\x10\x9a\x0e\xbd\xef\x53\xbf\x82\x91\x27\x0c\x29\x12\xa2\x49\x18\xf2\x6c\x3d\x53\xac\x66\x7a\x3b\x04\x03\x1a\xeb\x2d\x82\x01\xfd\x42\xf4\x68\xac\xc9\x32\x54\xfa\xf1\x54\x96\xa1\x44\x24\x56\xe3\x91\xd8\x3d\x22\x6c\xe5\x0d\x00\x46\x45\xc3\x3a\xb1\x1a\x33\x2e\xa3\x89\xd5\xa8\xea\x77\x13\xab\x51\xe0\xce\x29\xc0\xa8\x8e\x46\xac\xc6\xad\x23\x07\xab\x51\x40\xc5\x09\x60\x34\xe9\x88\xc3\x6a\x14\x17\xdb\x3c\xa2\xbe\xd2\x2f\xf0\xcc\x20\x4a\xa6\xac\x46\xc9\x10\xac\x46\x51\xb4\x4e\xac\xc6\x8b\x43\x6e\x8a\x7f\x46\xa3\x24\xfe\x19\x59\x40\x58\x8d\x4a\xe0\x9e\x58\x8d\x62\x3f\x9c\x57\x84\xc2\xbc\xe1\xa2\xda\x48\xcc\x5f\xa8\xaf\xa4\x25\x53\xc0\x42\xd1\x9b\x29\xab\x51\x7a\x31\x56\xa3\x52\xca\x26\x56\xe3\x03\x2a\x6d\x5e\x71\x61\xff\x57\x39\xd4\x89\x41\xa9\xea\x0b\x93\x04\xc4\x26\x33\x83\x04\xc4\xa9\x13\x95\x08\xe5\xd6\x62\x25\x42\x29\x5a\x3f\xc3\xa0\xbc\x84\x2c\x8c\xf2\xf4\x31\xe8\x17\x6e\x74\x72\x74\x8c\x08\xe5\x44\x28\x5a\xc0\xd7\x8a\x51\x65\x14\x2f\x54\x98\xce\x02\xa2\x15\x8d\xdd\x02\x60\x28\xce\x65\x0b\x10\x2a\x5e\x3d\x53\xa5\x8f\x74\x1f\x84\x98\x68\x6e\x16\x08\x63\x5d\xbd\x01\xae\xda\xa2\x5e\xa3\xd5\x2d\x5d\xa9\x30\x96\x7e\x01\xf6\x62\xb9\x18\x59\x86\x8a\xd8\x1b\x59\x86\x8b\x33\xdb\x30\x28\x65\xc8\x18\x61\xc8\x8e\x88\xb4\x08\x98\xa6\xeb\x17\x60\x9a\xab\x5f\x24\x38\xe3\x05\x36\xc2\x90\x81\xcd\x6f\x0a\x43\x46\xbd\x41\x61\xc8\x87\x5f\x10\x2a\xb2\xb0\x4c\xb4\x35\xb8\x7e\x8c\x30\xa4\x61\xce\x5a\x14\x42\x40\xff\x23\xcc\x5a\xf4\x0d\x80\x85\xd0\x7d\x0d\x2c\xa9\x8a\x9c\x1a\x58\x52\xb1\x43\x9b\xb0\xa4\x45\xbf\xd0\x7a\xd0\x34\x0c\x42\xd3\xcf\xc8\x27\xb4\x9e\xa0\xff\xa1\xf5\x68\xde\x31\x28\x85\x8a\x31\xb0\xa4\x15\xa1\x61\xaa\x7b\xa1\x11\x04\x4b\xfa\xa0\xd9\x58\x42\xf4\x70\xe0\x19\x59\x86\x06\xc0\xca\x30\x28\x57\x53\xcf\xc8\x52\x1b\x7a\x0a\x5a\x0f\x82\xc1\xdc\xa0\x7c\x1e\x0e\x58\xa3\x3c\x7d\x4f\xfa\x05\x37\x86\xc6\x8c\x2c\xc3\x81\x7b\xce\xc8\x32\x14\xeb\x97\x91\x65\x18\x10\x2f\x46\x96\xa1\x88\x02\x8c\x30\x64\x04\x75\x60\x84\x21\x93\xbe\x81\x30\xa4\xf8\xf2\x0c\xda\x9a\x87\x03\xc8\xb2\x44\x8f\xfa\x29\x42\xcc\xc2\x2f\xe6\x0f\xbb\xc6\x32\x08\x96\x47\xef\xf3\xa3\xb1\xe1\x74\x33\xb2\x0c\xa7\xfa\x59\x70\x08\x10\x0e\x36\x00\xa3\xa7\xea\x4a\xc0\x88\x8f\xfe\x27\x1a\x7e\xfd\x82\x4b\x79\xeb\x4a\xc2\x90\xda\x7f\x58\x8d\x2a\x61\x64\x58\x8d\x45\xfb\xf6\xc3\x4d\xa3\xb7\xa3\xb5\x6a\x9d\x61\x35\x76\x54\x22\x53\x96\xe1\xd0\xff\x94\x80\xaf\xf7\x89\xd0\x54\xef\x43\xbe\xe0\x5c\x32\xac\x46\xd5\xb0\x34\x95\xc1\xe0\xf8\x33\xac\x46\x55\xf7\x33\xac\xc6\x8a\x45\x69\x58\x8d\xaa\x50\x68\x58\x8d\xed\xe8\x4a\xb0\xf8\x58\xb0\x86\xd5\xa8\x0a\x85\x46\x96\xe1\xe0\xe8\x37\xb2\x0c\xc5\x6c\x6e\x22\x34\x8d\xea\x0b\xb4\x4a\x57\xf7\x01\x88\xd5\x28\x29\xcb\x10\xe5\xc9\xc8\x32\x9c\x5f\x3a\xf3\xff\x14\xc9\x46\x85\x8c\x85\x87\xd1\xa8\x90\x71\x00\xbe\x18\x15\x32\x2e\x3a\x97\x35\x45\x98\x99\x06\x0c\x4a\x25\x19\x1a\x06\x65\xc3\xe8\x37\x0c\x4a\x31\x16\x1b\x06\xe5\xa3\x69\x17\x6d\x8d\xa6\x01\x83\x32\x5f\xbd\x9d\xdc\x7c\x89\x09\x0c\xca\x49\xe0\xc3\x3e\x06\xa5\x7e\xa1\x15\x70\xfa\x19\x38\x53\xf1\x17\x1b\x5c\xa7\x55\x0b\x99\x0a\x19\x03\x03\xc8\xc8\x32\x54\x19\x7d\x13\xd7\x29\xe1\x28\x83\xeb\xb4\x01\xf6\x32\x55\xc8\x50\x5f\x30\x28\x37\x86\xb6\x61\x50\xde\xcf\x95\xd0\x64\x83\x5d\x35\xb2\x0c\x1f\x0c\x20\x7b\x44\x3b\xc4\xb7\x83\x33\xbd\xda\xee\x22\x34\x95\x10\x86\xb6\x46\xb5\x0c\x0d\x83\x52\x4c\x04\xf6\x88\xf6\x44\xbf\x48\x23\x31\xbd\x41\xe0\x1d\xbe\xa8\x4b\xeb\x61\x74\xbb\xaa\xca\xe9\x17\x59\x6a\x78\xd2\x0c\x83\x52\xe4\x95\x86\x41\xa9\x5a\xba\xa6\x0a\x19\x5b\xff\xf3\xad\xb9\x25\x5a\xa9\x90\xb1\x81\x38\x19\x06\xa5\xe9\x10\xc5\xa0\xb4\xa6\xf7\x51\x72\x47\x87\x28\x84\xa6\x72\x74\x59\x17\x78\x4e\xef\x43\xeb\x59\xfa\x1f\xa2\xa7\xe9\x0d\xd0\xf0\xeb\x4a\x0c\x4a\x65\xcc\x19\x06\xe5\xe7\xb0\xc0\xa0\x9c\xfa\xf6\xc1\xfa\xd4\x78\xba\x41\x39\xca\xa3\x5f\xbe\x3e\xa5\x41\x1b\x61\xc8\xa2\x55\xae\x30\xe4\xd4\x95\x24\xc8\x6a\x6b\x62\x35\x0a\x59\x60\x0a\x43\x6e\x3d\x85\x30\xe4\xd2\xdb\xb1\x1a\x81\x6c\x1a\x56\xe3\xe9\xfa\x45\xc9\x24\xd3\x2f\xd2\x48\x34\x2b\x58\x8d\x9f\x51\xc2\x6a\xdc\x41\xbf\xd0\xea\xa4\x32\x00\x26\x1d\xe4\x23\x1a\x60\xd2\x81\xd6\x6a\x64\x19\x8a\x71\xda\xc8\x32\x34\xcd\x26\xdc\x34\x4a\xea\x32\xb8\x69\x1e\xa9\x2f\x94\xb5\xdf\x58\x47\x46\x18\x32\x68\x95\x13\x86\x94\xf5\x67\x84\x21\xfb\xa3\x37\x68\x0d\xd2\x4f\x65\x12\x12\xe8\x34\xe3\x78\xc0\x1a\x33\xd5\xa7\xd7\xfe\xa3\x3e\xbd\x08\xb4\x8c\xca\x86\xaa\x31\x62\x1f\xcb\x90\x95\x85\x65\x98\x74\x3c\x60\x19\x0a\x06\x6a\x94\xba\x98\x59\xef\xc3\x72\x42\xb7\x37\x83\xda\xeb\xd1\x2f\x3f\x1e\x22\x61\x72\x03\x84\x2a\x9a\x23\x03\x84\xda\xa4\x46\x02\x42\x6d\x59\x3d\x23\x53\x59\x47\xf1\x42\x3d\xd3\xf1\x00\xff\xcc\xd1\xbc\x2f\x92\xd0\x25\x23\x01\xa8\x66\xd2\x95\x0c\x80\x6a\x4b\xff\x55\xa1\xda\x48\x32\x14\xf9\xbc\x81\x5d\x8d\x9a\x4c\xb0\xab\xe2\x58\x32\xb0\xab\x42\x18\x1a\xd8\xd5\x02\xe2\xc2\x48\x32\x14\x8b\xae\xb9\xd1\x58\x1f\x32\xd1\x8c\xd2\xf5\x72\xdb\xdb\x52\x92\x28\x4b\x70\x21\x5e\x9a\xde\xc0\xf6\xd3\x79\xe7\x46\xe3\xd3\xc9\x0f\xb4\x0d\xb5\x89\xde\x40\xa8\x31\x83\x5d\x30\x85\x1a\x35\x7d\x6e\x34\x8e\x28\x9d\xd2\x8d\xc6\x11\xaf\xee\x23\x54\x85\xc9\x63\x1b\xf1\xf9\xf9\x9f\x6f\x3f\xab\x7a\xdf\x20\x44\xa9\x37\x10\x25\xd7\xc0\x13\x6a\x1c\x60\x1e\x0c\xa3\x31\x10\x57\xb5\xad\x54\x11\x3d\x13\x18\x7b\xd4\x53\x48\x62\x96\xbe\x42\x15\x8c\x85\xa7\xc9\x08\x35\x8a\x60\xde\xa0\xa6\x49\x51\xff\x93\x53\x83\x39\xa2\x0a\x46\x91\x10\x3e\x60\xa4\x31\xaa\x0c\xec\xea\xd1\xd1\x81\xd1\xa8\x04\x75\x53\x96\xa1\x36\x38\x46\xe3\x91\x86\x09\x76\x55\xc4\xdf\xf6\xc1\xae\xf2\x7d\xc2\xae\x6a\x4b\x83\x5d\xcd\x45\x7d\xf1\xef\xab\x12\x28\x47\x59\x78\xcc\x26\xd4\x34\x9f\x23\x87\x2c\xc3\x42\xd4\xc0\x2e\x49\xda\x3a\x02\xc0\xae\x6e\x6d\x69\x8c\x46\xe5\x3c\xd9\x95\x3f\x9c\xb7\x43\x4d\x93\x08\xac\xda\x15\x6b\x1b\x33\x06\x76\x75\x1d\xdd\xc7\xf7\x49\x64\x41\x68\xfa\xd1\x0d\x21\x34\x15\x1a\xc3\x2e\x24\x02\xd2\x9d\x2e\xc7\x9f\xd6\x92\x5b\x86\xe3\xd1\x61\x48\xa8\x31\xe2\xcd\x5d\x64\x19\x6a\x1e\x16\x59\x86\x15\xb8\xd5\x52\x15\x0c\xb4\xb3\x45\xa8\xb1\xe0\x90\x5b\x84\x1a\x6f\xd7\x53\x84\x32\xd2\xff\xfc\xfb\xe4\xbb\x5e\x00\x54\x95\x20\xb1\xb0\x0c\x55\x22\x6d\x41\x68\x1a\x96\xde\xe0\xeb\x73\x45\xbd\x5d\xf8\xf7\xc3\x2f\xf0\xef\xe8\x71\x2b\x28\xc9\x57\xbf\xfc\x78\x78\x4c\xbf\xfc\x78\x58\x58\xc5\x8b\x50\xe3\xe2\x80\x5d\x0a\x35\x22\x84\x17\x96\xa1\x58\x90\x97\x2c\x43\xf4\xcd\x05\x40\x75\xe8\xed\x91\x2c\x3c\xf5\x0c\xcb\x30\x33\x0f\x0b\xcb\x30\x55\x3d\x05\xcb\x90\xbd\xb9\xb0\x0c\x1f\xec\xd2\x05\xa1\xe9\x64\xbf\xaf\x28\x3e\x76\xfd\x82\x75\x2f\xea\x29\x94\xba\xc0\x5a\x59\x84\x1a\x55\xd9\x70\x29\xd4\xa8\xf9\x4b\xc2\x8e\xf3\xb5\x00\x54\x33\xf8\x92\x25\xfe\x19\xd4\x89\x95\x14\xcf\xd0\xff\xc8\xa5\x40\x0e\xae\xa4\x2a\x49\xbc\x0f\xcb\xb0\x61\xbd\x2f\x2c\xc3\x8d\xab\x77\x61\x19\x9e\xff\x74\x5c\xac\xa4\x0c\x93\xc0\x6d\x0a\xe5\xe8\x75\x50\x99\x73\x6a\x2e\xa2\x90\xa1\xea\x17\xfc\x17\x18\x39\x0b\xec\x6a\x8a\xfa\x3c\x44\x0f\xdb\x68\x81\x5d\x2d\x08\xe1\x05\x35\x8d\x92\x1a\x17\xd4\x34\xa9\xeb\x97\x44\x0f\x03\xe1\x46\x63\xeb\x9c\x4d\x0b\xec\xea\xd0\xc0\x53\x2c\x51\x1e\xf0\x05\xd7\xe9\xd4\x62\xa5\x0a\x46\x18\xba\xd2\xbf\x2f\x22\xd8\x97\x8a\x25\xe2\x9d\x5b\x2a\x79\x8f\xd9\xbd\xa8\x82\x31\x08\x0f\x2d\xaa\x60\x8c\xad\xa7\xc0\x07\x1d\x74\x1f\xfe\x70\x4e\xf7\xa5\x2a\x18\x84\x13\x17\xd4\x34\x09\x8f\xed\xa2\x0a\x86\x74\xbc\x85\xd1\x58\x3f\xbf\x28\xc0\x83\xee\xb4\xdc\x68\xec\x22\x41\x59\x54\xc1\x88\x4d\xff\x03\x60\x85\x51\xb5\xa8\x82\x11\x81\xe4\xac\x02\x21\x26\xda\xcb\xa2\x0a\x46\xc3\xe6\x59\x85\x04\x52\xf4\x9c\x45\xa8\xf1\xc1\xe5\xb0\xc8\x32\x14\x3f\xf3\x22\xcb\x50\x54\x38\x8b\x92\xf7\xa6\x5f\x60\x57\xaf\x96\x20\xd4\x34\x9f\xe5\x49\x96\x61\x98\xba\x92\xda\x74\x90\xa4\x2e\xb0\xab\x8a\xdf\x2f\xb0\xab\xc6\xf1\xb7\x28\x79\x2f\xda\xff\x45\x06\x62\xec\x7a\x26\x46\x31\x87\xc5\x92\xd1\x28\x31\xa1\xda\x89\x8f\xfe\x67\x1c\xc5\x7a\xe6\x22\x25\x82\x91\x00\xbb\x5a\x34\x4a\x95\xa3\x91\x03\x76\x55\x58\xf7\xb0\x1e\x16\x19\x88\x9f\x91\x68\x10\x2a\xe2\x2b\x5f\x50\xd3\x88\xea\x71\x35\xd2\x1e\xf4\xb5\x8d\x50\xb1\xd6\x0b\x55\x30\x86\x56\x01\xd4\x34\x53\x42\x8a\x2a\x18\x47\xe2\x05\x6a\x9a\x46\x08\x6f\x41\x4d\x23\x72\xdc\x25\x6a\x1a\x89\x48\x00\xaa\x2a\x9c\xba\x1a\xb5\xdb\x88\x67\xac\x86\x53\xe3\xd3\x17\xfc\xa9\x57\xfd\x84\xb5\x4d\x7b\xe5\x91\x3f\x95\x67\x3e\xf8\x53\xf5\x7d\x0f\x28\x1c\x0e\xae\x45\x15\x8c\x8c\x4b\x65\x51\x3b\x31\xa3\xb1\xaf\x47\x00\x4e\x3d\xc5\xd7\xa7\x72\x3f\x17\x00\xd5\xa5\xdd\xf1\x50\xc0\x0c\xa7\xdb\xa2\xd4\x45\xad\x7a\x1f\xd8\x7f\xed\xbf\x07\xcb\xe2\xea\x0d\xa0\x54\xb4\xb2\x1e\x50\x2a\x3a\x72\x00\xa8\x1e\x49\x22\xb7\x0c\x7b\x41\x41\x5a\x1d\xcb\x1e\xc5\x71\xb9\x65\xd8\x8f\x84\x30\x19\x88\x47\x2b\x99\x7a\xf8\x41\x5f\x4b\xa9\x8b\xa6\xd5\x43\xa8\x71\x00\x26\x58\x5d\x55\x76\x58\x4b\x58\x86\xb2\x02\x56\x97\x65\x41\x5f\x3a\x55\x92\x74\x58\x00\x50\x8d\x45\xcf\x04\xca\x20\xd9\x4a\xa8\x71\x8d\xff\x0a\xef\x2d\x8c\xc6\x47\x67\x7d\xa7\x76\x9b\x86\xac\x93\xa1\xa7\x33\x4d\x65\x15\x75\x9e\x0f\x8c\x7e\xb4\xd6\x35\xf0\xa7\x92\x5c\xb0\xdc\x68\xec\x3b\xe8\x7f\x18\xc5\xda\xd2\x03\x14\x07\x7a\xf8\x1a\x94\x8d\xcc\x7a\x26\xac\x58\x9a\xe8\x41\x95\x01\xcc\x93\x85\xd1\xa8\x02\xf1\x0b\xa3\xf1\xf3\xb1\x64\x20\x2a\x24\xb3\xc8\x40\x8c\x41\x4f\x01\xbb\x2a\xb1\x04\x76\x75\x4f\xf5\x53\x34\xe0\xf4\x45\x55\x30\xd0\x14\x97\x1b\x8d\x43\x89\x2a\x0b\xae\xd3\xa0\x89\x86\x9a\x46\xc6\xca\x82\x9a\x26\x93\x63\xb5\x44\x68\x2a\x9d\x64\x2a\xf9\x92\x09\x23\x03\xf1\xa3\x77\x4c\x71\x0d\xb3\x5c\xc8\x40\x0c\x49\xff\x23\x03\xf1\xe8\x17\xfe\xfe\xad\x7e\xba\xd5\x71\x3e\xfd\x04\x05\x40\x5a\xc0\x02\xbb\xda\x75\xe0\x61\x50\xaa\x18\xeb\xc2\xa0\xdc\xea\x35\x06\x65\x94\x2e\x63\xf8\xfb\x75\xc0\x1a\xfe\xb8\xab\x5f\x18\x5c\x80\xd9\x16\xd8\xd5\x89\xfe\xbe\x4c\xd4\x49\xf4\x0c\x6a\x9a\x8d\x7d\xb2\xa0\xa6\xf9\x68\x67\x50\xd3\x28\x86\xbd\xa0\xa6\x89\x9f\x37\x18\x61\x5d\x3d\x45\x5a\x0f\x63\x66\x72\xda\xe8\x7f\x70\xd5\xe2\x59\x5e\x6e\x50\x8e\x2b\x2d\x0b\x42\x53\xa1\x46\xd6\x12\xb7\x02\xe3\xb2\x94\x51\xc6\x2a\x20\xd4\xa8\xf2\x54\x6b\x51\x80\x47\x6b\x17\xec\xea\xa3\xa3\x18\xec\xea\xd5\x5a\x5a\x38\xdd\xb4\xe6\x09\x35\x9a\x0e\x20\xd5\x4e\x94\x46\x44\xa8\x71\x69\x6e\xa1\xa6\xd9\x12\xd7\xa2\xa6\x91\x9e\x0a\x76\x55\x2c\x71\x6b\x09\xa5\xa2\x7e\x12\x2a\x06\x19\xb2\x00\xa8\x3e\x9a\x3f\xac\xc6\xa1\x15\xb2\x71\xda\x68\xaf\x10\x6a\x14\x23\xcb\xda\x7c\x9f\xf6\xdf\x56\x5a\x87\xee\x6b\xb8\x00\x98\x15\x42\x8d\x5d\xc7\x98\x32\x1e\xb1\xbf\x16\xa1\xc6\x80\xe5\xbb\x08\x35\x26\x52\xe0\x17\xa1\xc6\xf4\x79\xc3\x22\x0c\xa9\x5f\x70\x7d\x57\x3d\x85\xb4\x2a\x29\x4f\x64\x3c\x36\x1c\x4f\xcb\xad\xc6\x31\xf0\x1e\x2f\xd5\xc3\xd7\x48\x1c\xf6\x9f\xf6\xd1\xe1\xe8\xd7\xdb\x0f\xfe\x70\xc2\x74\x4b\x19\x8f\x1a\x33\xac\xc6\x44\x78\x7d\x1d\x39\x6d\x98\x31\x32\x1e\x9b\x0e\xca\xc3\xfc\x7d\xde\x47\x46\xa7\x74\x66\x08\x4d\x55\x83\x7e\x1d\x85\xc2\xf5\x14\x9c\xa6\x59\x6f\xc0\x5f\x0c\x9e\x79\x11\x6a\xfc\xfc\x0f\xab\xb1\xd4\xff\x72\x5c\x2c\x37\x28\x6b\xd3\xa2\xa3\xac\xe2\xd3\xf4\x8b\xa9\x2d\x7a\x24\xa1\x2a\x9d\x9a\xa2\xad\xc1\x9b\xbb\xa0\xad\x51\x8d\xe1\x45\x59\x45\xd1\x90\xac\xcb\xd6\x94\x60\xc0\xa0\x14\x6e\x63\x11\x85\x1c\x4d\xcf\xc4\x55\x9e\x74\xe5\x42\x27\xe1\xd3\xaf\x6a\x63\xe9\x0d\xe2\x72\xd5\x1b\xf0\x87\xb3\xc5\x36\x06\xa5\x98\x8e\x37\xd8\xd5\x82\xb7\x6c\x83\x5d\x95\xcb\x61\x43\x5b\x63\xf4\x65\x07\x60\xe5\x9c\xee\x3b\x28\xa3\xec\xf2\xcb\x0d\xca\x8a\x83\x65\x07\x25\xeb\x2e\x7e\xc9\x1f\x1e\xf8\x85\x3f\x3c\xa9\x2f\x70\xb9\x26\xfd\x0f\x5f\x56\xd1\xdb\x09\x55\x61\xea\x6e\x2a\x64\xac\x47\x57\x12\xaa\xfa\x3c\x13\xec\x2a\x3a\xd7\x16\x6d\xcd\xd2\x2f\x69\xe5\x7c\x2d\x06\xe5\xc6\xd0\xde\x11\xad\x00\x2f\xe9\x06\xbb\xda\x59\xf2\x9b\x50\x63\x41\x7c\x6e\x0c\xca\x3b\xf5\x14\x96\xee\xd0\x95\x84\xe2\x82\xfe\x27\x56\x2c\xbd\x1d\x9a\xfa\xa8\x37\xe0\xb0\xc2\xec\xde\x18\x94\x33\xe8\x4a\x68\xea\xab\xfe\xc7\xd1\xf1\xa8\x9f\x10\x62\xa2\x81\x6d\xb0\xab\x86\xa0\xdd\x60\x57\x37\x89\x3f\x5b\x19\x8f\x1c\x08\x5b\xb4\x35\xac\xdd\x4d\xa8\x71\xe0\xb4\xd9\x54\xc8\x88\x58\x6a\xdb\x0d\xca\xfe\x99\x95\xa4\x02\x4a\xf4\x9a\xda\x89\x1d\x25\x61\x53\x21\x43\x35\xfb\x76\x62\x7d\xe2\xfd\xdf\x10\x9a\x8e\xa9\x37\xc0\xa5\xac\xd5\x83\xd5\x28\x1e\xe9\xed\x56\xe3\xb0\xcf\xfb\xf0\xb5\xa2\xe8\x6c\x42\x8d\xaa\xfb\xbe\xdd\x6a\x1c\x15\x71\xb6\xb3\xf6\x1f\x5f\x0b\x40\x75\x16\xfd\xcf\xd7\xe7\xe6\x18\xdb\x58\x8d\x09\x15\x65\x63\x35\x96\xa9\x37\x88\x56\x49\xff\x43\xab\x43\xb1\xda\x94\xd8\x5f\x88\xa5\x9d\xa1\x1d\x42\x24\xef\xac\xb4\x0e\xbe\x0f\xab\xb1\x64\xbd\x9d\xa3\x23\xeb\xed\xae\xb5\xde\xcf\x33\x7d\xff\x25\xbd\x1d\xab\x71\x6b\x36\x0b\x5c\xd1\x08\xa9\x4d\x19\x8c\x84\xe2\xb1\x29\x83\xf1\x80\xe5\xd9\x00\x54\xc5\x23\xb8\xe1\xa6\x49\xc8\x9e\x0d\x37\x4d\x01\x14\xb0\x8b\xd2\x56\x18\xc1\x42\xda\x0a\xee\xab\x4d\xed\x44\xd1\xdb\xef\x82\x43\x4e\xf3\x40\xed\x44\x21\x82\x76\x51\x01\x3a\xf5\x1a\x00\xae\xf6\x74\x01\x85\xa3\xfd\x8e\xd5\xf8\xd9\x01\x55\xd8\x78\xde\x87\xd5\x58\xb5\x42\x20\x34\x5d\x84\x2f\x77\xc5\x21\xa7\x2f\x22\xd4\x98\xbe\xde\xf0\x3f\x45\xf2\x26\x0a\x99\x30\x79\x36\x51\x48\x49\xf9\x4d\x85\x8c\xd1\xf5\x0b\x5f\xdd\xd0\x95\x14\xe7\x69\xfa\xc5\xa9\x02\xb2\x60\x43\x69\x23\xd2\xec\xad\x62\xfc\x98\x58\x1b\x83\x32\x6a\xa3\x42\x69\x73\x4d\x9d\x06\x80\x04\x58\x68\x63\x50\x26\x70\x0d\x9b\x64\x48\xe9\x40\xbb\x09\x56\xae\x5f\xc0\xca\x71\x8d\x6c\x92\x21\x2f\x01\xbd\x4d\xa8\x31\xe0\x8f\xdb\x0a\x35\x6a\xf1\x40\x69\xa3\x38\xf5\x26\x19\x72\xc1\x1a\xb5\x09\x35\x3e\x1c\x16\x9b\x50\xa3\xd8\x37\x76\x13\x0a\x80\x2d\x8d\x41\xa9\xda\x6d\x1b\x83\x72\xa2\x15\x6c\x32\x1e\x95\x78\xb0\xc9\x78\x54\xad\xb8\x0d\xa5\xcd\x21\x24\xba\xa1\xb4\x39\xda\x2a\x50\xda\x28\xed\x7c\xbb\x41\xd9\x54\x8a\x72\x13\x6a\x0c\xa6\xff\x41\xd9\xc3\xe1\xb4\x31\x28\x2b\x7a\xff\xc6\xa0\x6c\x44\x9f\x37\x06\xa5\x0e\xd8\xfd\x40\x1b\x85\x25\xb3\xc9\x78\xcc\xfa\x86\x87\x50\x8e\xc4\x0b\xb5\x13\x8b\x8e\x0e\x6a\x27\x7e\xb6\xfb\x23\x2e\x6c\xf5\x8c\xb4\x0e\xfd\x22\xd4\x18\xf4\xb5\x64\x3c\x26\x2d\xd6\x2e\x87\x00\x73\x4b\xed\xc4\xac\x31\xeb\xe2\x41\xd0\xff\x5c\xf4\xa8\x4a\xfa\xc6\xa0\xac\x9f\xfb\xa0\xa9\x27\x98\xb2\x21\x34\x15\xfd\xcc\x86\xd0\x34\x12\xde\xdb\x50\xda\xa4\xcf\xff\x70\x08\x48\xf0\x11\x6a\x54\x71\xb3\x8d\xd5\x28\xea\xfb\x8d\xd5\x28\x77\xd9\xee\x00\xac\x40\x7d\xef\x01\xb6\x9a\x00\xf0\x1e\x88\x1e\xed\x23\xb7\x1a\x87\xe9\x50\x83\xd2\xe6\x60\xce\x6e\x32\x1e\xc5\x70\xbd\x45\x69\xb3\x75\x1f\xaa\x8d\x04\x8a\x28\x6d\x74\xe4\x0c\xe6\xef\xea\x29\xa4\xe5\x3c\xba\x8f\x30\x96\x56\xeb\xe0\xe8\x47\x8b\xdc\x03\xad\xf5\xf3\x0b\x14\x95\xd6\xfc\x80\x4b\x05\xd4\xc8\x26\xd4\x28\x2d\x72\x7f\x8a\xf1\xb3\x5e\x08\x35\xf6\xcf\x2f\x3f\xfa\x97\x8e\x15\x42\x8d\x5d\xbb\x91\x50\x63\x47\x9b\xdf\x6e\x35\x8e\x89\x0b\x60\x8b\xd0\x14\xed\x73\x4f\xb8\xda\x75\x84\x13\x6a\x1c\xea\x27\xc5\xf8\xe7\xd5\x33\xc5\xa8\xc8\xf7\x01\x50\xed\x92\x28\x94\xc1\x10\x51\xef\x9e\xe2\xc2\x46\xb4\x2a\xe3\x11\x24\xd1\x9e\x1c\xfd\x9a\x69\x6a\x27\x36\xdd\x67\x7c\x9f\xae\xa4\xe2\xbe\x38\x4a\x36\x15\xf7\x55\xed\x68\x13\x86\x14\x83\xf7\x26\x0c\x79\x09\x2e\x6e\xc2\x90\xaa\x1f\xb3\xe1\xbb\x59\x52\x12\x44\x68\xba\xfe\x53\x24\x63\x50\xd6\xa6\xd7\x91\x91\xd4\xd5\x31\xa2\xe4\x3a\xa5\x31\x28\x55\x1b\x6b\x63\x50\x0e\x09\x68\x13\xc0\x4a\x9f\x20\x6c\x20\x5d\x59\xca\x68\xe1\x99\x6e\x50\x96\xab\xed\x47\x32\x64\xd6\x09\xa7\x64\x48\x89\x02\x25\x43\x82\xea\xdb\x18\x94\x0d\x60\xd6\xc6\xa0\x14\x5b\xc4\x86\xeb\xb4\x7c\x9e\x49\x18\x52\x27\x38\x61\x48\xe9\xfd\x1b\x0a\x1d\x95\x5c\xdc\x0b\x5f\x79\xd5\x2f\x71\x0d\xf3\x7d\x4b\x15\x4e\xf4\x4c\xc8\x24\xf1\xd1\xee\xa5\xba\x75\xf4\x0c\x83\xb2\xe9\x29\x60\x57\x0d\x3f\xe5\x86\x42\x47\xc1\x9b\x8d\x41\xa9\xc2\x4b\x1b\x0a\x9d\xa0\x45\x4e\x85\x8c\x20\x51\x40\x85\x8c\x0a\x12\x65\x13\x86\x5c\x3a\x89\xdd\xa0\x6c\x37\xe9\x29\xa0\x38\x70\xc5\x6c\x6a\x27\x7e\xb4\x48\x28\x74\x3e\x63\x4d\xed\x44\x55\x56\xdb\x32\x1a\xd5\x6b\x8c\x46\xd1\x72\xef\x83\xd1\x0f\xdc\x6a\x1f\xb2\xc6\x30\x0c\x37\x46\x63\x94\xe8\xc1\x68\x54\x2e\xd8\xc6\x68\x14\x20\x6f\x1f\x8c\x62\x1d\x39\x54\xc1\x50\xf0\x66\x63\x34\x4e\x59\x2b\x18\x8d\x0a\xdd\xee\x23\x24\x8a\x9e\x02\xeb\x9e\xe6\x0f\x42\xd3\x84\x27\x74\x1f\x9c\x1a\x9a\xe9\x23\x3e\x6f\xb6\x0a\xa1\xc6\x82\x55\xb5\x65\x34\x6a\x2d\x51\x05\xa3\x69\x1e\xae\x90\x36\x7c\x1f\xf8\xd4\x2a\x7b\xe1\x42\x65\x2e\x1b\x04\x9a\x9c\x86\x5f\x74\x83\x4f\x15\xe3\xc5\x56\x15\x0c\xf0\x02\x1b\x7c\xea\x00\x97\xb2\xc1\xa7\x2a\x42\xb3\xb1\x0c\xb7\x84\x0d\x55\x30\x82\x6c\x82\x2b\xcd\x5b\xff\x73\xf1\x29\xd6\x8e\x0d\x08\xb5\x4b\x45\xb9\xe2\x13\xf6\x67\x1e\x40\xa8\xa2\x78\x3f\x80\x50\x95\xc1\x76\xdc\x32\xec\xca\x78\x3c\x6e\x19\x76\xa5\x36\x9c\x80\xf8\xe4\x60\x3e\x01\x2e\x8e\xa9\x5f\x3e\x7f\xa2\x0b\x3b\x58\x86\x85\x1d\x77\xb0\x0c\x9f\xa1\x5f\x58\x86\x55\xcf\x04\x7f\x8b\x86\x79\x02\xb4\x5f\x9f\xfb\xe0\xaa\x58\xea\x19\x4e\x0d\xe6\xef\x60\x19\xee\xcf\x2f\xf1\x95\x73\x1f\x96\xe1\x83\x92\x77\xb0\x0c\xc7\xd1\xff\x08\xc5\xb1\x5a\x0f\x59\x8d\x93\xd0\xed\xc1\x32\x0c\x5d\xff\xa3\xd4\x05\x7a\xf1\x21\xab\x71\xb2\x5a\x4f\x24\xb5\x08\x47\xde\xc1\x32\xec\x1a\x41\x2c\x43\x29\x17\x27\x4a\x3d\xd3\xff\x50\xcf\x90\x7c\x07\xcb\x50\xf5\xfc\x4e\x14\xd5\xfe\xe2\x17\x32\xf2\x4b\xe8\xff\x4f\x91\x7c\xc0\xa7\x16\xce\xe5\x03\x3e\x55\x27\xc7\xc1\x68\xcc\x2c\xa5\x83\xd1\xa8\x42\x4f\x47\x51\x48\x62\x8b\xe7\x43\x93\xc3\x90\x25\x3e\x1d\x11\x72\x28\xab\x38\x86\xfe\x47\x15\x0c\xce\xc2\x43\x15\x8c\x3e\xf4\x14\xa0\xe3\x68\x75\x47\xa1\xc6\xac\x9e\x71\xf2\x73\xc2\x1d\x8c\x46\xd5\x05\x3b\x70\x9d\x2a\x51\xf9\x24\x55\x19\xd0\x95\x17\x07\x0b\x7d\xc9\x30\x58\xe1\xe2\x38\x18\x8d\x2a\xe2\x7a\x30\x1a\xe5\xf5\x3a\xe0\x53\x13\xc6\xed\xc9\x80\xe0\x30\x79\x8e\x1b\x8d\xe3\xd1\xa2\x13\xa1\x29\xdb\xf6\x90\xd5\xb8\xae\x7e\xf9\xf7\x5d\x82\x8b\x07\xa3\x51\x11\xfb\x83\xd1\xf8\xf9\xda\x4c\x94\xfc\xe8\x17\x59\x7f\x53\xbf\xf8\xbe\xae\x67\x92\xf5\x67\x7a\xbb\xb2\xfe\x98\x31\xf0\xa9\x0f\x01\xa1\x53\x04\x12\x63\x09\x82\x4f\xdd\xe8\x2b\xa7\x88\x81\x8c\x51\x82\xd0\xf4\x68\x03\x10\x6a\x54\xf5\xe3\x53\xe0\x3a\xa8\xba\x12\xa3\xf1\xe8\x97\x1b\xfd\xa9\xe8\x7d\x24\xe4\xe2\xec\x39\x45\x34\x32\xcc\x1f\xa1\xc6\x89\x37\xfe\x14\xe1\xc3\x19\xdd\x22\x32\x50\x5d\xe9\xc7\xdf\x44\xb7\x38\xd0\xe4\x28\x6a\x70\x08\x35\xaa\x4c\xd8\x81\x26\x67\x60\x76\x9f\x4a\x6d\x33\x0e\x8b\x83\xd1\x98\x3f\xff\x2b\x6c\x77\xfa\xf9\xb1\x0c\xf5\x4b\xf8\x62\xe6\x1d\xcb\x30\x02\xd9\x3c\x55\xb5\xdb\xf8\xda\x8a\x51\x4c\x80\xed\x54\x12\x8e\xb3\x7a\xa6\x2a\x26\xcc\x6d\x85\x81\xac\xa8\x9f\xd0\x38\x69\x8f\x11\x6a\x14\x02\xf6\x54\x55\xa1\xe1\x0d\x58\x86\x6b\xe9\x97\x00\x56\x7c\x43\x53\x81\x21\xfa\x89\x65\x28\x75\xe2\x60\x19\x06\xa0\x7b\xa7\x51\xe5\x63\xe8\x29\x8d\x5d\xcc\xd7\x52\x05\xa3\x68\xed\x62\x19\x66\xb4\xcf\x03\x4d\xce\xa3\xaf\x25\xd4\xa8\x84\xf8\x03\xd9\x69\xe0\x88\x3b\x70\xe1\x84\xcf\x95\x1b\x40\x2c\xab\x07\xb2\xd3\xa1\x91\x10\xd9\x29\x31\x84\x83\x65\x28\x18\xe8\x81\x0b\x27\x68\x6e\xdd\x32\x6c\xca\x91\x3b\x58\x86\x4d\xa2\x5c\x59\x8d\x84\xf0\x0e\x96\xa1\xd2\x5d\x0e\x96\x61\xd4\xb7\x63\x19\x7e\x46\x57\xa1\xc6\xa2\xb7\x53\xc0\x4c\xe3\xf2\xa8\x36\x24\xeb\x0c\xcb\x50\x89\x54\x07\xcb\xb0\x5f\xbd\xc1\xe7\x6f\x60\x91\x1c\x2c\xc3\x65\xba\x92\xf9\x23\x16\x70\xb0\x0c\x95\x33\x7a\x64\x19\x62\x97\x1e\x2c\x43\xa7\xc5\xff\xdf\x22\x19\xa3\xb1\x69\x20\x30\x1a\x4d\x82\xe1\x63\x34\x32\x10\x2a\xab\xa8\x05\x49\xc2\xe3\xa9\x7a\x39\x00\x0f\x09\x1b\xf0\xa9\x97\x20\xd3\x21\xe1\xf1\xb3\xa9\xba\x5c\xe5\x7a\x26\xa2\x07\x2f\xdb\xa1\xe0\x7e\xda\xba\xf2\xe0\x46\xe7\xd3\x29\xb8\x5f\x74\x12\x53\x70\xbf\xe8\x99\x2a\xb8\xaf\x33\x1b\x7c\xea\x40\x97\x39\x24\x3c\x8a\x3b\xe2\x90\xf0\xa8\x6a\xb6\x67\x00\xfd\xc7\x44\x3e\x03\x80\x15\x1a\xfb\xa1\x0a\x46\x91\x10\xa6\x0a\x46\xc1\xc1\x72\x54\x05\x43\x13\x0d\x0f\xaa\x00\x64\x87\x50\xe3\x23\xd1\xf3\xa9\x82\xc1\xe8\x7e\xaa\x60\xa8\x2f\xd0\xac\x4c\xf5\xf3\x22\x96\xf8\x22\x55\xc1\x20\x68\x77\xa6\x88\x42\xe9\xe7\x14\x40\x8e\x7e\x62\x34\x46\xbd\x81\x50\xe3\xd4\x28\x11\x6a\x6c\x58\x1d\x87\x50\xa3\xb4\xb3\x03\x3e\x55\x5c\x1c\x67\xc2\xf3\x9a\x75\xa5\x8b\x1e\xc3\x50\x3b\x84\x1a\x15\xcd\x3f\x13\xad\x6e\xeb\x0d\x44\xc9\x3f\x6f\xc0\xa9\x81\xc9\x7a\x26\x00\x47\xe2\xf7\x47\xa1\x46\xf0\x3a\x87\x50\xe3\x42\x2b\x3f\xd0\xe4\x6c\x69\x6e\x84\x1a\x03\x5a\xf2\x21\xd4\xa8\x50\xf1\x31\x0a\x60\x49\xb4\xaa\xe0\x3e\x58\xd2\x43\xed\xc4\x4d\xf6\xd7\x01\xbb\x2a\x4c\xe8\x01\xbb\x5a\xba\xae\x84\x81\xec\xf3\x4c\x5f\x9f\x33\xeb\xed\x38\xdd\x34\xef\x64\x35\x8a\x13\xe5\x90\xd5\x38\xb0\x64\x0e\x59\x8d\x02\x7b\x1d\xc3\x9f\x8a\x4b\xe5\x2c\x68\x8e\x08\x08\x9d\x25\x00\x99\xfe\x07\x36\xb7\xe8\x17\xf8\x77\x09\x30\xb2\x1a\x3f\xab\x07\xcb\x50\xd5\xab\x0f\x96\x61\xc5\x22\x39\x8b\xcc\x5a\xf5\x73\x91\x1e\x25\xad\x0e\x10\x6a\x25\xea\x73\x00\xa1\x8a\x23\xfc\x08\x84\xaa\x55\x8e\xf5\x77\xa4\xcc\x00\x42\x0d\x12\xad\x14\xd5\xcf\xf8\x84\x0f\x45\xf5\x4d\x02\x7a\xab\x52\x09\xe3\x42\x39\x0b\xd5\xb9\x3e\x58\x7f\xca\x20\x38\x9b\xe3\xe1\x73\x25\x3e\x61\x5c\x7e\x87\xfa\x88\x4a\x65\x3a\xe2\xbb\x91\xe2\x01\xdf\x8d\x6a\x7e\x1c\xf8\x6e\x96\x64\x01\xe1\xc4\xcf\x4c\x13\x4e\x3c\xda\x1d\x54\xce\xff\x1c\xc5\x84\x13\x95\xd4\x75\x44\xa0\x2a\x59\x00\x08\x35\x62\x35\x1e\x2c\xc3\x23\x8d\x96\x70\xe2\xd5\xac\x00\x42\x95\xf3\xf3\x00\x42\x0d\x52\x07\x01\xa1\xaa\xb4\xd3\x39\xa2\xda\xd7\x53\x5c\x0e\x2a\x40\x7a\x08\x19\xae\xf5\x5f\xe1\xbd\x73\xc4\xc9\xc0\xe2\xa1\x3c\xe2\x21\xbe\x7d\xa8\x74\xf1\x39\xc1\xdd\x30\x7c\xfe\x79\x1d\x22\x12\x13\xf2\x5c\xfc\x32\x78\x9d\x0f\x86\xa1\xe1\x31\x3a\x54\xba\x58\x3a\x47\x28\x8f\xa8\x34\xe2\x43\x79\xc4\x47\xa7\xa6\xf8\x53\xa5\x57\xa9\xa8\xbe\x36\x00\x45\xf5\x0f\x60\xaf\x73\xc5\x94\x46\xaf\x31\x0c\xc5\xe1\x76\xae\x38\x35\x98\xb0\x2b\x4e\x0d\xa6\x01\xc3\x30\xe8\x8b\x30\x0c\x83\x8e\x0e\xf1\xa7\x4a\x64\x61\x18\x36\x0c\xe6\x1b\x04\x94\xca\xfc\xf2\xe5\x39\xf9\xf6\x4b\xc8\x50\xc9\x13\x17\x0c\xea\x9d\xfa\x25\xa6\xad\xc0\x2f\x5f\x9e\x19\x91\x7c\xa1\xbb\x39\x9f\x5f\x68\x67\xa6\xfb\xd0\x5e\x08\xa6\xdc\xa0\xc4\x53\xfd\xc2\x7a\x60\xb9\xdc\x20\xba\x22\xfd\x0f\x3a\x98\xae\x7e\xca\x7a\x48\xfc\x82\x8e\x69\xe8\x8b\xc8\x4e\x64\x4b\x5f\x37\x0c\x47\x21\x80\x71\xa3\xa8\xda\xe9\x0b\x24\xa9\x0d\x13\xf9\x82\x41\x35\x0e\xd1\x4b\x76\x62\x45\x0f\xb8\x84\x0c\x2b\x40\xbe\x4b\xc8\x50\x58\x89\x4b\xc8\x50\xf6\xd0\x8d\xaa\x04\xa1\xa7\xe0\xb8\x58\x7a\x83\x3b\x2e\x52\x56\xcf\x40\xd3\x98\x7a\x06\xa7\xc6\xa3\x37\x00\xc4\x2c\x7a\x0a\x71\x89\xa9\x37\x10\x97\x40\x30\xdc\x24\x2a\x7a\xc6\x9a\xec\x44\x71\x84\x5f\xb2\x13\x0b\x6e\xb6\x4b\xc8\x50\xde\xf8\x0b\xdd\x4d\xc5\x37\x78\x55\xe9\x82\x83\xeb\x42\x77\x73\xbb\xee\x03\xe3\x8e\x4f\xff\x42\x77\x13\xb5\x7a\x00\x9a\xe6\xad\xff\x81\x91\x0e\x7a\x26\x74\x5a\x08\xbe\x9b\x98\x3f\x50\xb5\x17\x92\xd4\x0e\x42\xe7\x02\x34\xed\x4b\xbd\x86\x84\x52\x33\x46\xc8\x30\x92\x14\x7e\xc9\x4e\x54\x46\xd9\xa5\xd2\x85\x2a\x7e\xdf\x8c\x61\x0f\x39\xd3\x05\x68\xda\x40\x86\x5c\xb2\x13\xab\x56\x16\x9c\x36\x95\x74\xf5\x4b\xc8\x50\x34\x5c\x17\xa0\xa9\xd8\x4c\x2e\xd9\x89\x05\x7b\xf6\xaa\x9c\x05\x96\xd3\xcd\x3a\x1e\xf4\x8b\x90\xf6\xd2\x95\xf8\x7d\xab\xfe\xa7\x14\x28\x46\x09\x4e\x9b\xac\x35\x08\xa7\x4d\xd3\xac\x60\xfd\x89\x2b\xfa\x02\x34\x9d\x38\xf9\x2e\x40\xd3\x0b\x1c\xf7\x42\x92\x2a\x46\xf4\x0b\x49\xaa\x2a\xe7\x5f\x38\x6d\x0a\x47\xf1\xa5\x9c\x45\x00\x8c\x78\x29\x67\x51\x35\x7f\x85\xfd\xd7\xf4\x3e\x42\xf6\x9a\x15\x48\x52\x05\x73\xb8\x6e\xfd\x0d\x21\x9f\xaf\x48\x52\x3f\xfd\x3c\x1c\x01\xff\x05\x82\xbb\x44\x13\x33\x27\xd5\x55\x79\x44\x14\xef\x4b\x51\xfd\xa0\x17\x80\x41\xd5\x69\x74\x31\x0c\x1b\x6e\x8c\x8b\x61\x68\x18\xbe\x17\xc3\x30\x0c\xdd\x47\x48\x66\xeb\x4a\x7c\x52\x12\x6e\xf0\xa7\x2a\x4c\x70\xab\x2a\x79\xf0\x09\xa2\xbb\x89\xea\x8b\xf1\x06\x16\x16\xfc\xa9\xa6\x0d\x40\xc8\x50\x3e\xef\x8b\x61\x28\xe8\xc9\xa5\x0a\xc6\x47\x28\x36\x7d\x1f\xf7\x11\x32\xbc\xea\x19\x45\xf5\x55\x8d\xee\x36\xb2\xdb\x88\x84\x5f\x37\x0c\x6b\x44\xe8\x5f\xca\x23\x56\x89\xe4\x06\x90\x4f\xc2\x0d\xba\x1b\x15\xc7\xba\x4d\x3e\x45\x5d\x29\xed\x8c\xaf\x55\xc8\x30\xe8\x7f\x38\x66\xb4\x74\xc9\x4e\x8c\x1a\x41\xe8\x6e\x92\x96\x3c\x74\x37\xaa\x5b\x72\x55\x03\x11\xe7\xd2\x55\x0d\x44\x3d\x05\x22\xd4\xa4\x4d\x05\x11\xea\xf8\xfc\x02\xcc\x86\x56\x7e\x1f\x0a\x59\xe1\x16\xba\x50\xda\xa8\x44\xee\x75\x03\x2f\x05\x34\x94\xeb\x06\x5e\x10\x9a\xe6\xba\x81\x97\x82\x56\x81\x1b\x78\x29\x7d\xae\xfc\xea\xe7\xbd\xea\xa7\x5b\x47\x39\x48\x14\xb8\x75\x74\x55\xf8\xf6\xba\x05\x74\xaf\x46\xc2\x2d\xa0\x2b\xfa\xa0\xeb\xd6\xca\xbd\x12\xd0\x6e\xad\xdc\xab\xf9\x73\x6b\xe5\x8a\xf0\xf3\x5e\xfa\x82\x7e\x74\xfd\xb8\x0d\xe1\xd1\xaf\xe3\xbf\xb0\x9c\xae\x1f\xb7\x29\x3b\xcc\x2e\x05\x3f\x6e\x53\xf6\x20\x53\x0a\x7e\x54\x85\x90\x7a\xa0\xb6\x47\x0a\x7e\x5c\x85\x90\xc6\xd7\x1f\x2d\xf1\x5f\xd7\xa4\x7f\x5d\xc3\x73\xdc\x2d\x95\x42\xe2\x19\x7e\x90\xa5\xe0\x62\x3f\x35\xef\x69\x0a\x2e\xf6\x53\xcb\xfa\x5f\x65\xb4\x23\xbf\xda\x8f\x5f\x3e\x13\x90\xe6\xa7\xe0\x02\x3b\x05\xf5\xdb\x05\x76\xa2\x72\x64\x0a\x99\x1e\x6e\xae\x74\xa1\x9c\x52\xe4\x7d\x2e\x86\x43\x30\x9e\xe9\x62\x38\x25\x9f\x97\x14\x5c\x0c\x87\xa0\x9e\xb9\xa8\x4d\xc9\x11\xe2\x29\xb8\x38\x0d\xe1\xd1\x1b\x34\xbe\xf4\xba\xf0\x06\xf7\xd9\xa6\xe0\x62\x31\xb1\x93\x52\x70\xb1\x18\x70\x6b\xa4\xe0\x62\x31\x7c\xbe\xa8\xec\x17\x80\x98\x82\xdc\x52\x85\xff\xb9\x84\x09\x30\xbb\xa4\x50\xe9\x99\x5b\x52\x29\xb8\xdc\xf8\x67\x24\x5c\x6e\xbc\xff\x9b\xbe\x2a\x2e\x3d\xab\xfb\xf7\x5c\xd5\xf3\x7b\xae\xea\xbf\xe6\xbc\xfd\x6b\xce\x1b\xef\xc8\x31\x11\x40\x4e\xc1\xf7\x6f\x08\x39\xbd\x2d\xec\x8d\x9c\xdf\x16\xc6\x2c\x97\xb7\x85\xfe\xe4\xfa\xb6\xd0\x9f\xdc\xde\x16\xfa\x93\x9f\x7f\x5a\x1e\xfa\x93\x3b\x2d\xff\x4b\xa4\xa7\xf0\x30\xf9\x79\xbc\xb7\x27\x2d\xc6\xaf\x0f\x08\x21\x87\x7f\x96\xe2\x93\x7f\xfe\x27\xbe\xff\x29\x3f\xff\x93\xde\xff\xd4\x9f\xff\xc9\xef\x7f\xda\xcf\xff\x94\xf7\x3f\xcf\xcf\xff\xd4\xf7\x3f\xfd\xe7\x7f\xda\xfb\x9f\xf1\xf3\x3f\xcf\xfb\x9f\xf9\xf3\x3f\xfd\xfd\x8f\xfd\xfc\xcf\x78\xff\xb3\xde\xff\xa4\x9f\x63\xc0\x94\x38\xae\x23\x05\xf7\x3d\x25\x78\x2e\x52\x70\xdf\x53\xc2\x87\x9b\x42\x4f\xbf\x17\x41\xcf\xbf\x17\x41\x2f\xbf\x17\x41\xaf\xbf\x17\x41\x6f\xbf\x17\x41\x7f\x7e\x2f\x82\xde\x7f\x2f\x82\x3e\x7e\x2c\x82\xaf\x96\xf9\x7b\xa6\xbb\xfd\x35\xd3\x7d\xfd\x35\xd3\x7d\xff\x35\xd3\xfd\xfc\x35\xd3\xfd\xfe\x35\xd3\x23\xfc\x35\xd3\x23\xfe\x35\xd3\x23\xfd\x35\xd3\x23\xff\x35\xd3\xa3\xfc\x35\xd3\xa3\xfe\x35\xd3\x73\xfe\xb3\xd1\x4b\xfc\x67\x6b\x4f\x7b\x5b\xd3\xdb\xba\xde\xd6\xfc\xb6\xbe\xe2\xa4\x94\xb7\xf5\xbc\xad\xf5\x6d\x7d\xc5\x4a\x69\xff\xb4\x5a\x78\x5b\x9f\xb7\xf5\x3d\x52\x4a\x7f\x5b\xd3\xdb\xfa\x8a\x22\xcb\x6f\xeb\x7c\x5b\xcb\xdb\x6a\x6f\x6b\x7d\x5b\xd7\xdb\xda\xde\xd6\xfd\xb6\x3e\x6f\xeb\x79\x5b\xfb\xdb\x7a\xdf\xd6\xf1\x4f\x6b\x0d\x6f\xeb\x3b\xbe\xf5\x1d\x5f\x7b\xc7\xb7\xbe\xe3\x6b\xef\xf8\xd6\x77\x7c\xed\x1d\xdf\xfa\x8e\xaf\xbd\xe3\x5b\xdf\xf1\xb5\x77\x7c\xeb\x3b\xbe\xeb\x1d\xdf\xfa\x8e\xef\x7a\xc7\xb7\xbe\xe3\xbb\xde\xf1\xad\xef\xf8\xae\x77\x7c\xeb\x3b\xbe\xfb\xfc\xde\xfb\xfb\xfe\xde\xfb\x27\xfc\xde\xfb\x27\xfe\xde\xfb\x27\xfd\xde\xfb\x27\xff\xde\xfb\xa7\xfc\xde\xfb\xa7\xfe\xde\xfb\xa7\xfd\xde\xfb\xe7\xf9\x6b\xef\x9f\xfe\xd7\xde\x3f\xe3\xaf\xbd\x7f\xe6\x5f\x7b\xff\xd8\x5f\x7b\xff\xac\xbf\xf6\xfe\xd9\x7f\xed\xfd\x73\xfe\xda\xfb\xe7\xfe\xb5\xf7\x6f\xf8\x6b\xef\xdf\xf8\xd7\xde\xbf\xff\x92\xdd\xf7\x5f\xb2\xfb\xfe\x4b\x76\xdf\x7f\xc9\xee\xfb\x2f\xd9\x7d\xff\x25\xbb\xef\xbf\x64\xf7\xfd\x97\xec\xbe\xff\x92\xdd\xf7\x4f\xd9\x7d\xff\x94\xdd\xf7\x4f\xd9\x7d\xff\x94\xdd\xf7\x2f\xd9\x1d\xc3\x5f\xb2\x3b\x86\xbf\x64\x77\x0c\x7f\xc9\xee\x18\xfe\x92\xdd\x31\xfc\x3f\xcb\xee\xff\xa9\xd6\xc4\xf0\x97\x58\x8f\xee\xb6\x49\x04\x14\x53\x74\xd7\x4c\x4a\xee\xba\x48\x11\x0d\x1a\x64\x72\x8a\x09\xbd\xd1\xc3\x5a\x29\x26\xee\x73\xeb\x33\x45\x69\xc9\x68\xa6\x31\xa3\xc3\x3a\x24\x2f\x45\xd7\x99\x13\x09\xc1\x29\x4a\x67\x76\x47\x54\x8a\xee\xac\x48\xc9\xd1\x27\x29\x66\xde\x30\x79\x43\xd6\x24\x87\xcf\x24\xc7\x6c\xbf\x96\x61\x94\x5e\xfd\x2e\xc3\x28\xdd\xfa\x5d\x86\x31\x9f\x5f\xcb\x30\xe6\xfb\x6b\x19\xc6\x12\x7e\x2d\xc3\x58\xe2\xaf\x65\x18\x4b\xfa\xb5\x0c\x63\xc9\xbf\x96\x61\x2c\xbc\xeb\x3d\x20\x63\xe1\x5d\xef\xe1\x18\x2b\xef\x7a\x0f\xc6\x58\x79\xd7\x7b\x28\xc6\xca\xbb\xde\x03\x31\x4a\xa3\x7f\x0f\xc3\x58\x59\x08\xef\x41\x18\x2b\xb3\xfc\x1e\x82\x51\x9a\xff\x7b\x00\xc6\xca\x86\x7b\x0f\xbf\x58\xd9\x70\xef\xc1\x17\x65\x13\xbc\x87\x5e\xac\xcc\xc5\x7b\xe0\xc5\xca\x5c\xbc\x87\x5d\xac\xcc\xc5\x7b\xd0\x45\xd9\x0f\xef\x21\x17\x65\x3f\xbc\x07\x5c\x94\xfd\xf0\x1e\x6e\x51\xf6\xc3\x7b\xb0\xc5\xa6\x0d\xf4\x8e\x4f\xd3\xc6\x79\xc7\xa7\x69\xc3\xbc\xe3\xd3\xb4\x51\xde\xf1\x69\xda\x05\xef\xf8\x34\x29\xdd\xef\xf8\x34\x1d\x04\xef\xf8\x34\xc6\xa7\xbd\x7d\x96\x3d\xd3\xbe\xf5\x99\xf1\x69\xdf\xfa\xcc\xf8\xb4\x6f\x7d\x66\x7c\xda\xb7\x3e\x33\x3e\xed\x5b\x9f\x19\x9f\xf6\xad\xcf\x8c\x4f\x7b\xfb\x2c\x7b\xa6\xbd\x7d\x96\xd1\xd2\xde\x3e\xcb\x68\x69\xef\x9c\xca\x58\x69\xef\x9c\xca\x48\x69\xef\x9c\xca\x38\x69\xef\x9c\xca\x28\x69\xef\x9c\xca\x18\x79\xde\x39\x95\x11\xf2\xbc\xe3\x23\xe3\xe3\x79\xc7\x47\x46\xc7\xf3\x8e\x8f\x8c\x8d\xe7\x1d\x1f\x19\x19\xcf\x3b\x3e\x32\x2e\x9e\x77\x7c\x1e\xc6\xe7\x79\xc7\xe7\x61\x7c\x9e\x77\x7c\x3a\xe3\xf3\xbc\xe3\xd3\x19\x9f\xe7\x1d\x1f\x19\x23\x92\x57\x32\x44\xdc\xf1\x9a\xa2\x8c\x10\x6c\xe7\x28\x03\xc4\xd1\x87\x29\x76\x7c\x0a\x19\x79\xd5\x5f\xa5\xcf\xa5\xea\xdb\xab\xde\x7f\xfe\xe7\x5b\xef\xc6\xcf\xff\x7c\xeb\xe5\xab\x00\x7e\x1d\x38\xf9\x1d\xe1\x8e\xb7\x22\xa9\x7f\x47\xbf\xde\x96\x2b\x4f\xc7\xc7\xdb\x11\xdd\x90\xf8\x5c\xf3\xcf\x75\x32\x22\x26\x5f\x26\xc3\x21\x21\x97\x65\x2c\xe0\x07\x88\x32\x10\x3e\xbf\x5c\x4a\x87\xc2\x18\x8c\xfe\xe3\x7f\xf6\xe3\x7f\xeb\xc7\xff\xd4\x2f\xfe\xe7\xd1\xeb\x54\x67\x48\x14\xb7\x4c\xd1\x23\xd8\xa9\xae\xe7\x6d\xc9\x5c\x13\xdf\x16\x3f\x13\x5a\xfc\x0f\x60\x6f\x8a\x1e\x9e\x4e\x0d\x47\x4d\x74\x0b\x44\x8f\x56\xcb\x79\x1f\xad\x96\xcb\x35\xaf\xd0\x77\x3b\x20\x55\xfb\x3a\x3c\x38\x1e\xdd\x06\x48\xd5\xd2\xdb\xe2\x4b\xe0\x89\x7c\xa2\xeb\xfd\xe9\x71\x47\x6b\x8a\xae\xd9\xa7\x8a\xfd\x1b\x4d\xcf\x77\x57\x59\xdc\x38\xa7\x26\x53\xba\xf9\xac\xc4\x95\x1e\xc8\x7c\x7f\xd9\x8f\x5f\xd7\x9d\x7f\x9a\xc2\x5b\x7f\x2e\x9f\x77\xd3\xdd\xf6\xf3\x3f\xef\xe6\xbb\xbf\x96\xe9\xbb\x09\xef\xaf\x65\xfa\x6e\xc6\xfb\x6b\x99\xbe\x9b\xf2\xce\x9f\xff\x79\x37\xe7\xa5\xdf\x5a\x0a\xb8\x14\x93\xbe\xd7\x75\xad\x1c\x32\xe3\x74\x99\x8b\xc5\x41\x8f\x4b\xb1\x7a\xd8\x3f\xa5\xa0\x65\x12\xf9\xe5\x4b\x24\x3b\x86\x3e\xa5\xa0\xe5\xb1\xf9\x55\x7e\xfc\xea\x9a\x71\x7e\xa1\x9e\x38\xba\x3f\xa5\x40\x5f\x1c\xa8\xf1\x35\x93\x38\x2d\x7d\xce\x53\x44\x75\xa9\xbc\x3d\xa2\xba\x54\xde\x1e\xdb\x37\x07\x5f\x8a\x7c\xf9\x7d\x3e\x6b\x21\xa1\x3c\x65\x07\x3f\xbb\x8f\xd0\x5d\x7e\xf4\x35\xf1\x1d\xb8\x0a\x53\x92\x82\xa4\xff\xe9\x2d\x81\x5f\x6c\x36\x87\x36\xb8\x07\xf8\xeb\x99\x1e\xb1\x49\x49\x2a\x18\x0e\xc0\x94\xa4\x2e\xd5\x40\xad\xf4\x94\xa4\x86\x79\x24\x2f\xa5\xc4\x77\x76\xfa\x83\x93\x33\xb9\xcb\x3c\x25\x9c\x9c\xc9\x1d\xc5\x29\x79\x54\x2a\x41\xe2\x90\x52\x46\x64\xb2\x8a\x53\xc6\x6f\x53\xe9\x01\xaa\x5d\xd6\x48\x66\x89\x09\xde\xe0\x4e\xce\x9c\x06\x23\x99\x11\x05\x99\x37\x48\x35\xfb\x52\x8c\x33\xe3\xfe\x51\xc4\xee\xdb\x42\x2f\x16\x4f\x2b\xe1\xfb\x0c\x96\xf8\xe3\x7f\x49\x7b\x95\x5f\x5a\x07\xf4\xbe\x94\xef\x2b\xa6\xd4\x1f\xff\x6b\x12\x3a\xfc\x7a\xd8\x9f\x7a\x4a\xff\xb6\x0a\x53\x19\x3f\xfe\x37\xf9\x1f\xfd\xf4\xd8\x51\xa2\x52\x50\x4a\x65\x49\x4a\xf0\x6b\xf3\x4b\xbd\xd6\xca\x56\x5f\xfc\xfb\x9e\xc4\x33\x6b\xf8\xfe\xcc\x1a\xbf\xf7\xac\xf2\x45\x8b\x31\x77\xd5\x2e\x13\xb4\x48\xc9\xd5\xba\x0c\xa1\x5c\x4a\xae\xd2\xe5\xac\x5e\xbb\x3a\x97\x4a\xa7\x2f\x75\xfd\x21\x1d\xd2\x37\x57\xee\x4f\xe9\x90\xea\xf9\x43\x3a\xa4\x6f\xae\xdd\x9f\xd2\x21\xb5\xf0\x87\x74\x48\x2d\xfe\x21\x1d\x52\x4b\x7f\x1c\x96\xa9\xe5\x3f\x0e\xcb\xd4\xca\x1f\x87\x65\x6a\xf5\x8f\xc3\x32\xb9\x4a\x97\x40\x1e\xa6\xe4\xaa\x9a\x9f\x6e\xfe\xcb\x67\x27\x6e\xc6\xdc\x55\xab\x14\x35\x1f\xae\x56\x25\x18\x82\x53\x72\x95\x2a\xc5\xfd\x1f\x35\x53\xdd\x00\xfa\x9a\xe2\xc1\x32\x75\x6d\x21\x3d\x83\x2d\xe0\xe7\x6d\x7a\x8c\x49\x1d\x74\x6c\x33\xa9\x9c\xa9\x51\x42\x6f\xe8\x29\x6c\x24\x47\x84\xfd\xf3\x8b\x73\x13\xca\x8c\x94\x38\x33\xa3\xc4\x0a\xe7\x65\x34\xde\xee\x38\xaf\x14\xd1\x63\x92\xe3\xbc\x52\xd4\x32\x35\x9e\xa2\xe5\x6d\x3c\xe5\x20\x44\xdc\x55\x96\xa0\xff\x4a\xc9\x78\xe6\x61\x38\x4d\xcf\xe4\x8b\x38\x0e\xe3\xe2\x0d\xee\xb2\x7a\x7f\xd9\xf7\x2b\xe5\x1e\x72\x4b\x88\xef\x90\x6b\xc8\x2d\x21\xb5\x94\xd7\x12\x52\x4b\x7d\x2d\x21\xb5\xb4\xd7\x12\x52\xcb\xf3\x5a\x42\x6a\xe9\xaf\x25\xa4\x96\xf1\x5a\x42\x6a\x99\xaf\x25\xa4\x16\x7b\x2d\x21\xb5\xac\xd7\x12\x52\xcb\x7e\x2d\x21\xb5\x9c\xd7\x12\x52\xcb\x7d\x2d\x21\x5a\x76\x78\x2d\x21\xb5\xc4\xd7\x12\x52\x4b\x7a\x2d\x21\xb5\xe4\xd7\x12\x52\x4b\x79\x2d\x21\xb5\xd4\xd7\x12\x52\x4b\x7b\x2d\x21\xb5\x3c\xaf\x25\xa4\x96\xfe\x5a\x42\x6a\x19\xaf\x25\xa4\x96\xf9\x5a\x42\x6a\xb1\xd7\x12\x52\xcb\x7a\x2d\x21\xb5\xec\xd7\x12\x52\xcb\x79\x2d\x21\xb5\xdc\xd7\x12\xa2\x45\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xf6\x59\xae\xbe\xf6\xce\xa9\x5c\x7d\xed\x9d\x53\xb9\xf8\xda\x3b\xa7\x72\xed\xb5\x77\x4e\xe5\xd2\x6b\xef\x9c\xca\x95\xf7\xbc\x73\x2a\x17\xde\xf3\x8e\x8f\x5c\x77\xcf\x3b\x3e\x72\xd9\x3d\xef\xf8\xc8\x55\xf7\xbc\xe3\x23\x17\xdd\xf3\x8e\x8f\x5c\x73\xcf\x3b\x3e\x72\xc9\x3d\xef\xf8\xc8\x25\xf7\xbc\xe3\x23\x97\xdc\xf3\x8e\x8f\xd4\xc7\xe7\x1d\x1f\x57\x1b\x57\xb3\x7f\xbc\x23\xc9\xd5\x45\x4b\xb7\xbe\x2d\x5f\xe3\xb3\xfa\x5d\x6f\xcb\xd7\xf8\xd8\xec\xdf\xae\xf9\x1a\x1f\xfb\xfa\xaa\x7f\x5a\xbe\xc6\x67\xb7\xf8\xed\x9a\xaf\xf1\xb1\xdd\xbf\x5d\xb3\xfd\xc9\xe1\xdb\xdb\x8f\xb7\xc4\xf8\xb6\x7c\x8d\xcf\xfa\xb2\xd9\xd4\x92\x5d\x45\xb4\xbc\xc7\xdb\xf2\x35\x3e\x76\x4a\x79\x5b\xbe\xc6\xc7\xd6\xf7\xbb\xbe\xc6\x67\x3d\x23\xbc\x2d\x5f\xe3\xb3\xc3\xfa\xd6\xf2\x35\x3e\x73\xc5\x6f\x2d\x3e\x3e\xf5\xd9\x6f\xcb\xe3\xcf\x79\xbe\x3d\xf9\x6b\x7c\xec\xc9\xf6\xb6\x90\x00\xfc\x7c\x7b\xce\xa7\x0a\xc1\xdb\x62\x3e\xf2\xe1\xdb\x73\x40\x2e\xc4\xfb\xb6\x00\x4c\x99\xdf\x9e\x43\x2d\xb4\xfa\xed\x4b\x2f\x35\xb5\xff\xf1\x78\x65\x40\x62\x3d\xbd\x7d\x06\x28\x96\x76\xfd\x3f\x88\x81\x66\x70\x64\x25\x7c\xbb\x9d\xd2\x7e\xe7\xbc\x2d\xa2\x2c\xfe\x76\x8d\xaa\x6f\xae\xb7\x85\x0a\x8e\xe9\x5b\x0b\x49\x47\xed\xfd\xc0\x48\x61\x8a\xfe\xad\x65\x40\xe8\xf7\xed\x73\x44\x23\x1b\xdf\x16\x83\x03\xe9\x1d\xcc\x08\x1e\xf2\xdb\xe4\xc2\x7b\x68\xf5\x5b\x0b\x04\x80\xe5\x5b\x9f\x55\x4a\xee\xbd\x26\x01\x6f\x9d\xf5\x6d\xf9\xd4\x05\x7a\x5b\x1c\x47\x98\xc3\xf3\xb6\x64\x71\xe5\xbc\x2d\x64\x7b\xe4\x77\xc4\xc0\xa4\xdd\x96\xde\x16\x5f\x5a\xfd\xdb\x22\x71\xfd\xde\xec\x75\x31\x66\x77\xba\x7e\xdf\x8c\xd9\x31\x6a\xdf\x37\x63\x76\x68\xc3\x8f\xe5\x97\xec\xf7\x62\x73\xcb\x60\xee\x6f\xa3\xe1\xd6\xc1\xaa\xe7\x1d\x0d\xb7\x10\xd6\x53\xbe\x3d\xf9\xb2\x19\xdf\xb7\xbb\xa5\xb0\xeb\xf3\x2e\x3f\xb7\x16\x7e\x2c\x63\xb7\x18\x56\xf7\x6b\x36\x2d\xd9\x7b\xf8\xac\xb7\xe5\x6b\x7c\x6c\xac\xfe\xb6\x54\x36\xec\xb7\xbb\x7c\x7c\xc2\xfc\x76\x97\x6f\xbd\x5a\xbe\x5d\xd3\xdf\x4d\xad\x16\x1f\x9f\x95\xbe\x3d\xf9\x6b\x7c\xd6\xf9\xde\x1f\x7b\x37\xbe\x5a\xbe\xc6\x67\xe7\xf0\xed\x5d\x5f\xe3\x63\x71\xa4\xb7\xe5\x6b\x7c\x2c\xcc\xf3\xb6\xdc\x57\x0c\xd2\x52\xc2\x2b\x06\xd5\x12\x5f\x31\xa8\x96\xf4\x8a\x41\xb5\xe4\x57\x0c\xaa\xa5\xbc\x62\x50\x2d\xf5\x15\x83\x6a\x69\xaf\x18\x54\xcb\xf3\x8a\x41\xb5\x74\x17\x68\xfd\xfd\x2e\xb7\x73\x24\x18\xd5\xe2\xe3\x13\xfb\x7e\x5b\xec\x15\x71\x6a\x71\xd1\xbd\xee\xb7\x96\xfd\x0a\x46\xb5\x1c\x7a\xf8\xad\x3f\xbe\x7e\x9e\xf4\x7e\xa9\xdb\x40\x73\x7f\x1b\x1f\x32\xa8\x10\x71\x6a\x79\xfe\xb0\x62\x72\xed\x7f\x58\x31\xb9\x8e\x3f\xac\x98\x5c\xe7\x1f\x56\x4c\xae\xf6\x87\x15\x93\x7f\xdb\x51\xed\xfd\xcf\x7e\xf7\xac\x7a\x7b\xfc\x8b\xda\x3b\x0e\x6e\x37\xe9\x10\xa1\xa5\x85\xf7\x38\x50\x8b\x32\xfe\xf3\xdb\x92\x90\x96\xf6\xb6\x64\x7f\xce\xf7\xbb\xca\x2b\x0d\xd4\xc2\xae\xf9\xb6\x92\x1b\xbb\x66\xbd\x2b\xc7\x5d\xda\x2b\xe6\x77\x0d\xb8\x4b\x7b\xa5\xf3\xed\xae\x81\x34\xf8\x76\xcd\x7c\xf7\xb5\x5a\x38\xb0\xf6\xb7\xbb\x16\xbb\xef\xdb\xbb\x7c\x7c\xc6\xb7\xf9\x75\x9b\x6b\x07\x7b\x57\x85\xdb\x5d\xab\x7d\x5b\x5d\x6e\x7b\xed\x56\xdf\xb7\xbb\xfd\x35\xd7\xb7\x1d\xe1\x2e\xed\xb9\xbe\xad\x2e\x77\x69\xaf\x74\xbe\x5d\x53\xde\x03\x54\x2d\x00\xf1\xbf\x8d\xf3\xd3\xde\xe3\x52\x2d\xcf\x7b\x38\xaa\xa5\xe3\xd7\x28\xfc\x1a\xef\x59\xa7\xff\xcf\xf7\x1c\xfb\xaf\xd8\x5b\xa6\xb6\x40\x3c\xf3\xbd\x7d\xbd\x07\x91\x5a\xc8\xec\xbe\xef\xe4\x3f\xe7\x3d\x88\xd4\x72\xdf\x83\x88\x16\x52\xbd\xd6\x79\x07\x92\x22\x76\x79\xbd\x1f\xd7\xd3\x7b\x08\xab\x05\xc2\x13\x7b\xa7\xa8\x17\x25\x70\xbe\x2d\xdf\x0e\x2b\xb5\x40\x7e\x32\xbe\x3d\x99\x0a\x5a\xe1\xed\x73\x67\xd8\x3c\xb3\x21\xe5\x3e\xde\x43\x51\xff\xf7\x83\xea\xb4\x6f\x6f\xf6\x25\x95\xf6\xb7\xde\xb1\xa4\xbe\x89\x54\xf7\x7e\xaf\xe7\xdb\xf2\xed\xdf\x0e\x2a\xb5\xf8\x92\x1a\xdf\x16\xbd\x7b\xc0\x77\xf9\xb6\xa4\x86\x96\xd4\xfb\x76\xf7\x80\x5b\x18\xef\xf8\xb9\x17\xdc\xbe\x2f\x29\xf7\x84\xef\x5a\xbf\x5d\x53\x7f\x1f\x5d\x6e\xd9\xff\x38\xba\xdc\xba\xff\x71\x74\xb9\xd7\xfc\xc7\xd1\xe5\x36\xff\x8f\xa3\xcb\x73\xc6\x7e\x1c\x5d\xee\x5d\xff\x71\x74\xb9\x87\xfd\xc7\xd1\xe5\xde\x82\x1f\x47\x97\xe7\x90\xfd\xec\xf3\xfd\x7d\x30\xb8\x57\xe1\x87\x28\x99\xf1\xf7\xec\xcc\xf4\x5b\xe8\x4f\x8d\xcf\xb7\x96\xf2\x5b\xb8\xcc\xfa\x7b\x4e\x67\xfb\x2d\x5c\x3c\xcf\xec\x87\x70\x99\xfd\xf7\x2c\xcf\xf1\x7b\x96\x1d\x82\xf4\x63\x6d\x38\xfc\x68\xf5\xf8\xed\x9a\xf5\x5b\xf9\x98\xff\x12\x49\x1e\x0a\xf8\xb1\x36\x3c\x14\x20\xb5\x86\x16\x63\x7c\xbe\xcd\x8e\xfb\x4c\x7e\x28\x04\x96\x7e\x2b\x04\xee\x3b\xf9\x71\xb8\xba\xff\xe4\xc7\xaa\x73\x1f\xca\x8f\x55\xe7\x21\x85\x1f\xab\xce\xc3\x0a\x3f\x14\x26\x87\x12\xfd\x10\x9a\x36\xfe\x70\xa8\x65\x9b\x7f\x38\xd4\xb2\xd9\x1f\x0e\xb5\xfc\x0d\x52\xf4\xd3\xa1\x96\x09\x4e\xc8\xc3\x95\xdd\xea\x4d\x0f\xce\xd6\x7c\xce\x37\xaf\x52\x3e\xf7\x9b\x57\x29\xdf\xf0\xcd\xab\x94\x6f\xfc\xe6\x55\x2a\x6e\x55\xa5\xe6\xe0\xff\x54\xdc\xa2\x4a\x0d\x34\x6e\x71\x4b\xe9\xfb\x1a\x2b\x58\x4a\x2b\x7f\x6b\x59\xa8\x2c\xeb\x6d\x61\x96\x5f\x85\xa9\x04\xa4\xc4\xf3\xed\x1a\xd4\x91\x77\x96\x8b\x5b\x4a\xfb\xc9\xdf\x5a\x14\xf7\xff\xc7\xd8\x28\xc2\x27\xbf\x18\x83\x12\x15\xf7\xcf\x6f\x8b\xc0\x2f\xe5\x6d\x11\xf8\xa5\xbe\x2d\x02\xbf\xb4\xb7\x45\xe0\x97\xe7\x6d\x11\xf8\xa5\xbf\x2d\x02\xbf\x8c\xb7\xe5\x17\xb8\xe8\x1f\x2c\x47\x89\xbf\x40\x30\xf1\xfd\xcf\x2f\x10\x4c\x7a\xff\xf3\x0b\x04\x93\xdf\xff\xfc\x02\xc1\x94\xf7\x3f\xbf\x40\x30\xff\x40\x5d\x4a\xfa\x05\x82\x69\xef\x7f\x7e\x81\x60\x9e\xf7\x3f\xbf\x40\x30\xfd\xfd\xcf\x2f\x10\xcc\xff\x09\xd4\xa5\xa4\x6f\xf8\x98\x1f\x50\x97\x92\xa0\xfb\x78\x5d\x14\x25\xa1\x0b\xf4\xf5\xb6\x3c\x5c\xf3\x0e\x37\xfc\x10\x6d\xdb\xdb\xa2\x1c\xee\x77\xb2\x21\x17\x8c\x6d\xbf\x2d\x26\x70\xf6\xdb\x42\x3e\x7e\xfb\xf6\x1c\x00\xdc\xf5\xdb\x5d\x47\x20\xee\xb7\xe5\x33\xd4\x5f\xad\x5f\x7d\xff\xe7\x6b\x72\xf8\xf1\x9f\xbe\xde\xff\xc4\x9f\xf7\x8c\xf7\x3f\xe9\xdb\x7f\xbe\xbe\xe9\xfd\x4f\xfe\x71\xcf\x78\x27\x3b\x97\xef\xf7\xc4\xb6\xdf\xff\xd4\x9f\xef\x79\x97\x4e\x6e\x3f\xef\xf9\xf6\x9e\xe7\xc7\x3d\xf5\xdb\xd3\x3e\x38\xbb\xaf\x6f\xf9\xfa\xef\xfb\x9f\xf1\x7b\xde\xf2\xfc\x3d\x6f\xd9\x7e\xcf\x9b\x5b\x74\x3f\xe6\x2d\xef\xdf\xf3\x46\x26\xd3\xf7\x79\xcb\xf7\xf7\xbc\x95\xf0\x7b\xde\x4a\xfc\x3d\x6f\x90\x21\x7e\x9f\xb7\x92\xff\x9a\xb7\x52\xfe\x9a\xb7\x52\xff\x9a\xb7\xd2\xfe\x9a\xb7\xf2\xfc\x35\x6f\xa5\xff\x35\x6f\x65\xfc\x35\x6f\x65\xfe\x35\x6f\xc5\xfe\x9a\xb7\xb2\xfe\x9a\x37\x88\x18\xeb\x79\x45\x20\x75\xdf\x9e\xd7\x57\x50\xa8\x18\x1e\xbe\x8d\x2e\x69\x54\xeb\x9b\x28\x15\x9d\x7f\x7a\xef\x22\x9d\x2a\xee\x77\xbc\xa1\xf5\x7f\x5e\xd7\x59\x51\x0c\x6d\x04\x7e\xd9\xef\xbe\x90\x06\xf5\xbd\x2f\x75\xff\xab\x2f\xe7\x5f\x7d\xb9\xbf\xfb\x42\x15\xf0\xef\x7d\x81\x9e\xff\x7b\x5f\x14\x93\xe2\x60\x2c\x8a\x49\xe9\x28\x14\x74\x88\xc8\x70\x69\x4a\xf5\xe1\x28\x74\xfb\x2a\x07\x1d\x93\x0d\x18\x08\x31\xf4\xf2\x81\x0a\xf1\x7d\x0d\x94\x80\x27\x05\xa5\x22\x40\x50\xd2\xaf\x04\x82\x40\xbf\x14\x6d\x5b\xfc\x2a\xdc\xc7\xdb\xdd\xe8\x98\x2b\xd2\x4f\x57\xce\xe7\xc2\x51\x5c\x26\xea\x73\xe1\xbe\x85\xa3\x14\xf8\x5f\x59\x5c\x49\x0a\x4b\xd9\xfc\x22\x7c\x55\x0e\x76\x1b\xf1\xd8\xe2\x2e\xf2\xb9\x08\x89\x55\x77\xe4\xce\xe5\x89\x62\xa9\xfa\x11\x3e\x17\xe3\x52\x03\x7d\x71\xd2\x89\x54\x23\x6f\x77\x5e\xf5\x54\x23\xcf\xf4\x14\xf8\x54\xfd\x08\x9b\x90\x01\xa4\xea\x87\xc6\xdc\x9e\x02\x95\xaa\x9f\x06\x73\x3b\xad\x6d\xaa\x85\x2b\x0b\xef\x2b\x58\xee\x40\x11\x2b\xd6\x36\x6c\x34\xa9\x3e\xdc\xf7\xf0\x14\xb7\x22\xe7\xee\x3c\xc5\x95\xb3\xb9\x37\x57\x7a\x58\x62\x9e\xc0\x17\x79\x48\x62\x92\x98\x96\x9a\xab\x32\xf3\x10\xb9\x6d\xae\x6c\xcc\x03\x3e\xa2\xf1\x45\xd4\x3e\x4f\xcd\xd5\x85\x49\xc5\xce\xd4\x5c\x55\x98\xd0\xcb\xa5\x16\x79\x8a\xb3\x02\xa5\x96\x78\x8a\xa7\x86\xa5\xe6\x12\x7d\x9e\xe7\x3f\x18\x3d\x52\xf3\xe5\x32\x0f\x10\x88\xe6\x26\xed\x84\xd6\x25\x35\xb7\x9e\xe6\x39\x74\xda\x63\x67\xf3\x12\x7c\x6e\x1e\x37\x9b\x54\xc1\x4d\xcd\xa3\x56\xf3\x92\xe3\xd4\x3c\x62\x35\xaf\x53\xe8\xa4\xc7\x05\xdb\xa4\x7e\x6d\x7a\x5c\x98\xcd\x0b\xf8\xe5\x71\xad\xdc\x82\xa7\x9a\xa6\xc7\x35\x72\x0b\x7c\xec\x33\x71\xab\x79\x72\x70\x7a\xd0\xa0\x83\x33\x88\xa4\xc7\xb5\x67\x83\x8d\x3a\x3d\x07\x7d\xdb\x89\x50\xd3\x73\xb8\x92\x0d\xfe\x78\x7c\xc6\x60\xfd\x4a\xcf\x95\x66\x4e\x5f\x2e\x57\x12\x17\x7d\x2e\xcf\xf4\x7c\xbd\x2f\x75\xd7\x7f\x79\xba\x7a\xea\xc4\x11\x02\x30\x83\xee\xc7\x8c\x51\x20\x2a\x75\xdc\x7f\xd1\x93\x52\x53\x77\x01\x6f\x11\x18\x50\xf7\x10\xbd\x45\xb6\x66\xef\x5c\xd9\xb9\xd2\x2d\x48\xa3\xc4\x56\xea\x58\x8f\xd1\x93\x91\x53\xf7\xad\x62\xe4\x46\xa6\x7e\xb1\x30\x2e\x57\xf2\x0d\xf1\xfa\x95\x23\xe0\xfa\x01\xa2\x31\x3c\x4e\x61\x89\x8d\x3a\x1e\x9c\xc4\x4e\x85\x93\x86\xcf\xad\x09\x53\x3b\xdc\xb3\x60\xc2\xd4\x0e\xb7\x1e\x2d\x11\x83\x1e\xd8\x77\xc9\x59\x3b\xd2\x90\x6d\xb7\x79\xdf\xe4\x99\xce\x39\x96\xc6\xe4\x99\xe8\xf2\xc3\xad\x25\x4b\x97\xbe\x38\xcc\xc9\x72\xe4\xed\x1e\xd1\xb1\xec\x44\x01\x69\x2a\x52\xc3\x81\x30\xe9\x75\xf6\x64\xdd\x34\x03\xee\x4b\xe7\x03\x4c\xd3\x6d\x00\x23\xe5\x3e\x4d\x6c\x80\xec\x34\x4e\x69\x46\xfe\x87\x78\x99\x2e\xea\x8d\x02\xa1\x69\xba\x98\xb7\x4c\x10\x7f\xba\x83\xd0\x28\x1a\x91\xa6\x3b\x05\x2d\x03\xac\x99\x95\x67\xf2\xb5\xd3\x0f\x04\xa3\x60\x5a\xa2\x96\xbc\x15\x70\x6b\x54\xee\xb6\x82\x28\xa0\x72\xb7\x15\x4f\x23\x4e\x94\xeb\xb5\x42\xc2\x13\xe5\x7a\x0d\x06\xc0\x44\x81\x57\x2b\x5e\x7a\x36\x51\x9a\xd5\x48\xce\x4f\x94\x66\xb5\xe2\xbc\x12\x89\xba\x98\x56\x01\x86\x50\x29\xd2\x2a\x82\x81\xda\x89\x46\x65\xbc\x44\x49\x36\xab\xc0\xa8\x28\xad\x66\x90\x6c\x26\x8a\x8d\x59\x65\x17\xc3\x9d\x6e\xcd\x29\xa5\x12\x3c\xd2\x46\xd9\xfe\x04\x89\xaf\x3d\x4e\x30\x90\x20\xf1\x35\xf8\x44\x12\x44\xb6\xf6\xb0\xab\xa0\x7d\xb5\x87\x9d\x03\x85\xa9\x51\x69\x3a\xc1\x11\x69\xcf\xe5\x4a\x8f\xeb\x5a\x67\x07\xc0\xa8\x68\x9d\xbc\x50\x58\x05\xad\xb3\x1f\xe0\xcb\x33\xe8\xbb\x12\xbc\x70\xd6\x9d\x8e\x29\x41\xfe\x66\xdd\xf3\x65\x13\xd4\x50\xd6\x17\x57\xba\x9b\xd2\x20\x3b\x4d\x50\x20\x59\x67\xaf\x40\x81\x64\xfd\x70\x9f\xfb\x76\x0c\xb2\xa4\x04\xd7\x8f\x75\x76\x0e\x4c\x20\x06\xd3\x49\x82\x0e\xc3\xe0\xa9\x4f\xd0\x61\xd8\x68\x7e\x25\x94\x10\x36\x9c\x40\x21\x41\x09\x61\xc3\x53\xee\x13\x89\xfb\x06\xaf\x4b\x22\x71\xdf\x06\xc8\x07\x12\xe9\x8d\x9a\x84\x89\x14\x78\x1b\xfb\xbf\x44\x32\xd9\xf1\x36\x58\x82\x64\xc0\xdb\x70\x56\xb3\x44\xfa\xb8\x0d\xb6\x18\x69\xbd\x36\x49\xee\xbc\xb8\x9b\x26\x08\x31\x92\x7c\x6d\x72\x2e\x5f\xb6\xed\x64\x8b\x5d\xcf\xfd\xb1\xa9\x0f\xda\xfc\x62\x6a\x2f\xc2\x74\x02\x24\xb9\x87\xfb\x4c\xff\x23\xbc\xeb\x50\x8e\x4c\x0a\xac\x99\x9f\xa8\x39\x10\xcb\x31\x3f\x51\x73\x70\x2d\xd3\xa0\x47\xcf\x81\x5e\x9b\x67\xfc\x65\x52\x4b\x8d\xd4\xf2\x4c\x6a\xa9\x99\x9f\xb6\x99\x44\x52\x23\x1b\x3f\x93\xd8\x69\xd4\x7a\xce\x64\x80\xd8\x72\x5d\x26\x93\x8b\x61\x2b\xf0\x06\x16\xf9\xa2\x2f\xe4\x5c\xd8\xa2\x2f\x91\x65\xb6\x7c\x53\xe5\x88\x08\x59\x9e\x94\x9a\x63\x24\x7e\xe1\x5b\x2c\x03\x67\xb7\xe5\xac\x16\x19\xc0\xb9\x79\xd1\x9b\xaf\x5f\x91\x5f\xdc\xf7\xe0\x02\x33\xee\xeb\x38\xfa\x16\x6f\x9f\xfc\x72\x1e\x92\x1c\x71\x0f\xed\xc0\x53\x70\x0d\x41\x62\x93\xc1\xf4\xd9\x76\x4c\x52\x06\xd3\x67\xdb\x1d\x2a\x39\x11\xbd\xdb\x7e\x70\x65\x00\x44\x76\x02\xff\x73\xa7\xa1\x41\x4c\x95\x81\xd4\xd8\xf1\x83\x32\x03\x7a\x31\xa8\xb6\x32\x80\x17\x3b\x95\xf7\xf9\xc1\x6c\xc7\x69\x72\x32\x60\x0f\x3b\x0f\x6f\x77\x07\x8e\x1d\xdf\xee\x99\xa8\x83\x5d\xdf\xc4\x5f\x16\xbe\xff\xf2\x0d\x97\x71\x61\x18\x14\x5d\xb9\xf8\x1b\x16\x7c\x6b\xb9\xb8\x5a\xb0\x28\x8e\x95\x8b\xc3\x5b\x56\x70\x2e\x95\x5c\x36\x57\x1a\xbf\xfc\x7d\x0b\x6a\xa8\x5c\x08\xef\x43\x93\x93\x0b\xa1\x7d\x48\x12\x72\x75\x51\xb0\xa2\xa7\xc0\x67\x34\xb7\x15\x5d\xfb\xcc\x95\xa8\x67\x64\x65\x55\x22\x83\xb0\x5a\xe4\x5a\xf8\x9f\xaf\xf9\x5c\x89\x6d\xc0\xb0\x91\x2b\x11\x8a\x38\x78\xa6\xcf\xe6\x8a\x83\x67\x12\x3f\x88\x8e\xc0\xcb\xd5\xf8\xe5\x1a\x66\xae\x8b\x08\x09\xeb\xac\xf2\xed\x89\x75\x56\x37\x4e\x6b\xd6\x7c\x75\xf1\xb2\xa0\xda\xcf\xd5\x01\x31\x2b\xa9\xd7\x9b\x88\x58\xd6\x7d\x00\x19\x5c\x95\xca\x55\xb0\x06\xe7\xd4\xc8\x2d\xf2\x14\xd7\x37\x73\x8b\x3c\xc5\xf5\xcd\xdc\x32\x71\x0e\x07\x95\xe5\xa6\x38\xa0\x1f\x40\xb9\xb9\x65\xb8\x92\x1f\x40\xb9\x7d\x22\x22\x3c\xc5\x75\xd8\x95\x2e\x4f\x79\xf8\x06\x56\x6b\xf3\x08\xc6\x4a\x2e\x30\x73\xe3\x1b\xb2\x53\x51\xe5\xc7\x15\x9d\x95\x9d\x00\x2d\x77\xb7\xf2\x57\xf1\x63\x25\x77\x46\xb7\xfa\xb1\x92\xbb\xa2\x46\x8e\xf8\xcc\x9d\xd1\xad\xae\xd6\xe5\xfe\x10\xab\x65\x7d\x76\x0f\x82\xac\xea\xec\x45\xb9\x77\x9e\xc2\x8a\xec\xb8\xbd\x2b\x2b\xb2\xe3\xf2\xae\xae\xd6\xe5\xee\x8e\xeb\x55\xd9\x9b\xdd\xb8\xd2\x78\xbb\x67\x2b\x2e\xf0\x9b\xb9\x7b\x96\xe2\xaa\x2e\x84\x73\x5f\xf4\x65\xf1\xbe\xc5\x53\xbe\x64\xeb\xff\x12\xc9\xb9\x6f\x1e\xe9\xdc\xb8\xb9\x6f\x3e\xe1\xf0\x10\xa6\xbd\x3a\x45\x78\xee\x7e\x72\xac\xc6\xc6\xe9\xe0\x58\x80\x6c\xe7\x11\xf8\x9f\x9f\x7e\x79\x04\x02\xe4\x0e\xd8\xcd\xc3\x71\x29\xab\x31\x80\xc3\x3d\x89\xab\xf9\xc9\x98\x07\x8b\xbc\xf9\x59\x98\x87\x3b\x30\x56\xeb\x5c\x99\x79\x83\xeb\x8d\x79\x54\xde\x30\x79\x43\xe5\x0d\x93\x37\x34\xde\xb0\x78\x66\xe3\x0d\x6c\xe9\xc1\x70\x02\x57\xcf\xc3\x63\x00\x8b\xf2\xf4\x79\xb0\x01\x9e\xcc\x7d\xae\x79\xaf\x27\x73\x9f\xfb\xac\xd7\xa3\x2f\x5a\xfc\x8f\x89\x1e\x8b\xff\x21\xca\x87\xe3\xf5\xd6\x53\xf9\x86\x03\x56\xa6\x73\x1f\xa2\xe0\x61\x6b\x8e\x83\x7f\x96\xad\x39\x0e\x3d\x73\xf6\x8d\x3c\x2e\xcf\x44\xd8\x4c\x21\x6e\x10\x28\x33\xd2\x6b\x26\x7a\xba\x19\xb5\x1e\x26\x7a\xfa\x91\xba\xba\x43\x9e\xf3\x74\xe7\xc8\xea\x91\xa7\x14\x50\x4c\x0e\xd6\xce\x68\x83\xab\xb3\x51\xd1\x06\x17\x44\x9a\x79\x12\xbd\xa1\xbe\x72\x9e\x83\x90\x6f\xe7\x29\x03\x7c\x52\xe7\x29\x1e\x25\x58\x1d\x81\x32\x8d\xb7\x23\x50\x26\x9b\xbf\xbb\x2e\x9a\x27\x9b\xbf\xbb\x2e\x9a\xcd\x11\x43\x8b\xba\x7c\xd9\xfc\xe0\x5a\x54\x93\xce\x94\xbc\x5f\x83\xc3\x90\x7a\xe3\x6b\x38\x21\x52\xa6\xde\xf8\x1a\x88\x02\x6a\x4b\xaf\xe1\xc4\x4d\x99\xaa\xd0\x8b\x6a\x90\xd9\x14\xf5\x70\x2a\xaa\x4c\x55\xe8\x35\x9c\xbc\x28\x53\xf9\x79\x0d\x36\x38\x95\x9f\x17\xec\xc2\x99\x2a\xcd\x0b\x26\xe7\x4c\x39\xe2\x35\x39\x7c\x29\x56\xba\xa6\x6b\xa6\x99\xaa\x79\x6b\x2e\xfd\xf2\xf1\x9c\x0e\xad\xcd\x54\xcd\x5b\x93\xbe\x50\x46\x61\x51\xe2\x38\x43\x22\xbf\x96\xd7\xf1\xc9\x90\xc8\xaf\xc5\xce\x81\xe2\x7d\x51\x02\x38\xc3\x6c\xbe\x16\x22\x04\x6e\xf1\xb5\x9c\x33\x2e\xc3\x2d\xbe\x96\x53\xfd\x64\xf8\xa0\xd7\x1a\xfa\xc5\x1b\x5c\xd1\xc9\x10\x0a\xaf\xe5\x36\x5d\x86\x50\x78\x2d\xd7\x68\x33\xc4\xa4\x6b\xb3\x8b\xd1\x3e\xd7\x76\x1d\x36\xc3\x4d\xb8\xb6\xeb\xa9\x19\x6e\xc2\xb5\xd9\x9b\xf0\xc9\xad\xcd\xfe\x83\x4f\x6e\x51\xe7\x30\x43\x48\xb6\x36\xeb\x13\xf2\xa9\x45\x29\xdf\x0c\xf9\xd4\xda\xae\x99\x66\x94\xbc\x75\xd8\x71\x70\x04\xad\xc3\x8e\xbb\xcc\x34\xa4\x63\xf9\x7a\xa4\x77\x9d\xc6\x7d\x6e\x21\xac\xc3\xae\xba\x6e\x5f\xae\xe3\x7a\x6a\xbe\x44\xd6\x60\xe9\xce\x97\x3d\x76\xfc\xb8\x2d\xb0\xb5\xac\xeb\xbc\x8c\x25\x20\x97\x28\x13\x5b\x02\x72\xe9\xfa\xee\x28\x81\x99\xbe\xbe\x3b\x0a\x2c\x24\xeb\x36\x9e\xc2\x01\x74\xdd\x6e\x2b\x24\x9d\xaf\x7b\x79\x8a\x2b\x9c\xeb\xba\x63\xa6\x90\xc4\xba\x83\x2b\x80\x25\x0a\x6d\xe7\x0a\x60\x41\xe9\xda\x4e\x1c\xf1\x4d\x24\xb7\xfe\x53\x22\x17\xd4\xb1\x1d\x8c\xbb\x1e\x9e\xe8\xeb\xaa\xa0\x8e\xed\xe0\x6b\xb5\x44\x5f\x2d\x9b\x52\xdd\x25\xfa\xca\xdd\xb1\x70\xa5\xe3\x4b\x77\xac\x5c\xe9\xaa\xef\x8e\xee\x3a\x2b\x29\x71\x9f\xab\x78\x25\xb9\x0c\xde\x20\xaa\x0b\x49\x13\x3b\x7a\x9a\x44\x49\xbe\x8e\x37\xdc\x2c\x05\xec\xf5\x4e\xee\x0b\x29\x60\xaf\x77\x72\x5f\x48\x01\x81\xb7\x93\xa7\x01\x14\x80\x70\x3b\xb9\x67\xa4\x00\xff\xd9\xa4\xb4\x14\xa0\x3f\x3b\xbb\xc2\x57\x80\xe2\x6c\x8a\x83\x14\x00\x35\x3b\x3b\x43\x50\xc9\x6e\xe9\x6e\xd2\x56\x0a\x30\x8f\x9d\x33\xcf\x24\x7e\x99\x3b\xff\x5b\xbc\x61\xf2\xbf\xc5\x1b\x9c\x51\xb4\x10\xb1\xdb\xd4\x3f\x2d\x85\x19\x82\xba\xb9\x14\x66\xa8\x38\xaf\x51\xc1\x4d\xb9\x4b\xe3\x7f\x0e\x9b\xd8\xc5\x7d\x1a\xa5\x38\x82\x61\x17\x3f\x9b\x4a\x71\xcb\x6c\xc3\xa3\x59\xca\x21\xf2\x7e\xf9\x75\x89\x9f\xfb\x89\x53\xaa\x2b\xc2\xbb\xfa\x59\x51\xaa\xef\x8d\x5d\xfd\xac\x28\xd5\x03\x00\xbb\xfa\x8a\x2f\xd5\x9d\xfe\xbb\xfa\x8a\x2f\xd5\x9d\xcc\x9b\x62\xd2\xa5\x76\xe2\xdb\xee\xc5\x28\x55\x11\xfa\xcd\x7d\x83\x37\x6c\xee\x9b\x3c\x93\xf5\x5f\x27\xcf\x74\x75\xb3\x54\x8f\x78\xee\xc6\xfa\xaf\x8e\x13\xde\xad\xf0\x14\x3f\xb7\x76\x2b\x3c\xe5\x72\x25\x2b\xbe\xf9\x99\xbd\x21\x58\x2b\x2d\x71\xa5\x9f\x00\xa5\xb1\x96\x9a\x9f\x00\xa5\xf9\x99\xbd\xa9\xa2\x5a\x5a\xe5\xbe\xcd\x53\xe8\xf5\x93\xf8\x1f\xbd\x7e\x5c\x89\x2c\xcd\xe3\xdc\xfb\x61\xa7\x34\x97\xd6\xfb\x71\xf7\x5f\x69\xc6\xff\xfc\x74\x28\xcd\xa5\xf5\x7e\x1a\x7d\x39\x5c\x39\x78\xe6\xe1\x0d\x7e\x56\x94\x87\x84\x16\xd2\xcf\xca\x43\x42\x0b\x55\x46\xcb\x23\x17\xfe\xe7\x7f\xee\x66\x8e\xee\x90\x2e\x0f\x09\x2d\x50\xba\x14\x3c\x77\xe2\x89\x2a\x8f\xa8\x3b\x1e\xfd\x52\xa8\xea\xcf\x4c\xbd\xff\xdf\xff\xeb\xff\xfb\xff\xf9\x7f\xff\x5f\xff\x77\x08\x9f\x84\x78\xe5\x97\x7c\x75\x22\x04\x65\x74\xb8\x0c\xce\x54\xf4\x0a\x1f\xe6\xa0\xf6\x8d\x46\x2b\x7c\x68\x80\x9a\x58\x9b\xb2\x37\x2a\xe3\xd5\x05\x44\x0a\xae\xd2\x84\x0f\x0f\xcf\x43\xea\x9d\xcb\xf5\xf0\x21\xda\x79\x78\x91\x0b\xbc\xf0\x61\xd2\x71\x4f\x4c\x86\x62\x3a\x7c\xa8\x66\x3a\x59\x57\x8d\x2b\xc5\x12\xd3\xc5\x98\x95\x68\xe4\x53\x44\xbf\x75\xe8\xbc\xb8\x51\x48\x45\x8c\x43\x8d\x74\x9e\x6c\x44\xf2\x52\xc2\x87\xd7\x84\xac\x8c\xe4\x3b\x20\x7c\x88\x46\xc8\x30\x4c\x4e\xf0\x1a\x3e\x2c\x21\xa6\xb4\xaf\x46\x23\xf3\x67\xe4\x7b\x75\xba\x24\x2e\x8f\xc5\x33\x3d\x9b\x35\x04\xa1\xf3\x5d\x19\x49\xad\xd1\x25\x41\xe4\x0f\xc9\x51\x5b\x8d\x8c\xfc\x21\x0f\x6a\xf2\xed\x82\x8f\x5f\x31\x6b\x71\xa5\x68\x14\xc8\xe9\x6b\x6e\x73\x86\xe8\x0a\x4e\x20\x67\x5e\x5c\x65\x21\x12\xfa\x22\x31\x5b\x44\x64\x41\x29\xd8\x64\x95\xe6\x98\xb9\xd2\xb1\x31\x21\xba\x20\xcb\xd0\xc4\x86\x48\x02\x49\x5c\x8c\xa7\x9f\xc4\x21\x92\xa1\x11\x37\x11\x16\xbe\x28\x92\x02\x11\x41\xfa\xe7\xc1\x33\x41\xf9\x47\x00\xf8\x50\x6a\x85\x08\xf8\x9e\x14\xc4\x90\xdd\x19\x12\x48\x41\x0c\xc9\x1d\x94\x21\xbb\x6b\x38\x90\x31\x17\x48\x95\x4b\xd5\xa5\x70\x20\x55\x2e\x28\x47\xae\x26\x6e\x27\x96\x9a\xe0\x3d\xc0\xc7\x17\x12\xc1\xd2\x94\xc9\x47\x73\x68\x45\x48\x44\x43\x13\xbc\x07\xd5\x35\xa2\x40\x52\x5d\x48\x99\x91\xcf\x7a\xa6\xd1\x48\xea\x99\x17\xc2\x0c\x09\xae\x03\xf2\xea\x52\xcd\x7a\x26\xfd\x54\x32\x1d\x83\x4c\x32\x5d\xf8\x64\xd1\xf9\x21\x15\xc8\xa2\x0b\x9f\x54\xb7\xc2\x67\x12\xe8\x23\xab\x2d\xe7\xc1\x8b\x20\x28\x50\x5a\x9a\x86\x8e\xb4\xb4\x40\xfe\x58\xce\x83\xb7\x93\x19\x46\xb2\x57\xce\x9d\xb7\x93\xc6\x45\xce\x56\xce\xae\xa8\x84\x44\xa2\x7d\x72\x83\x32\x67\xcf\x49\x0e\xa4\x6b\x85\x44\xc4\x2a\x1b\xfd\x24\x62\x95\xd8\xb0\xb9\xab\xb1\xd3\x48\x3f\x5d\xc4\x86\x44\x7a\x78\xea\xdc\xce\x8e\x4b\xe4\x73\xe3\x59\xc9\x79\xa9\xb1\xd1\xc8\xdb\x3b\xb7\xb3\xb5\x53\xe7\x99\x93\xce\xb3\xb5\xd3\xe0\x99\x93\xcf\x9c\x74\x9e\xf5\x09\xc9\x5b\x50\x82\x13\x59\x32\xa9\xb0\x8f\x94\x21\x83\xd7\x25\x15\x5d\x79\xd4\x88\x10\xa8\x8c\x27\x39\x1e\x24\x6d\x38\xbf\xc2\xff\xf5\x7f\x07\x12\x12\x02\xb0\xf4\x4c\x29\x88\x00\x24\x3d\x80\x6b\x4e\x30\xfb\x06\x30\xcd\x01\x78\xaf\xc7\xf5\xbe\x1a\x8b\x1a\x25\x20\x12\x8d\x2c\x76\xd7\x37\x9d\xa5\xeb\xab\x11\x7e\x09\xc0\x5b\x39\x14\x1a\x27\x3b\xe0\x12\x94\x9c\x34\x42\xa8\x92\xd9\x32\x14\x8c\x0c\x78\x8e\x42\x41\xb2\x17\x84\x2a\xda\x45\x10\xc0\xa3\xb8\x0a\x10\x84\xcf\x20\x18\x1f\xa8\x49\x18\x08\xc4\x07\xa2\xef\x73\xf1\x99\xc4\xd9\x03\x01\xf3\xb9\x9c\xd9\x32\x28\x48\x4e\xd4\x79\x2e\xbd\xbd\xf0\xb0\x1a\x05\x11\xf5\x46\xf8\x31\x4a\x25\x52\xe9\x47\x6b\x28\x10\x62\x94\x0a\x2c\xda\xad\x8e\x50\x00\x0f\x17\x37\x09\xe7\x72\x43\x3d\x14\xf2\x15\xcb\x3f\x20\x5c\x1a\x79\xbb\xcb\xac\xb9\x1e\xba\x04\x41\x04\xfa\xd2\x5c\x5d\x57\x4e\x1a\x89\x69\x7a\x7e\x66\x50\xcc\xb6\x08\xdc\xda\xe9\x27\x87\x54\x21\xc6\xb8\x98\x4d\xd4\xad\x50\x1e\xfa\x39\xe8\x27\xbc\x0a\xe5\x21\xbe\x3a\xe9\x27\x24\x09\x9f\xd0\xed\xd4\x95\x4c\x4e\x27\xbe\x6a\x5c\x09\x0d\x42\xe9\x7c\x91\xeb\xb4\xa1\xc0\x3a\xf0\x89\xf5\x72\x72\x15\x58\xcd\x4a\x57\x08\x96\xcf\x84\x3d\xa0\x0c\x6e\x3f\xbc\x08\xbe\xb0\x32\x18\x10\xf7\x8d\x84\xe2\xf6\x73\x28\x83\xce\x5f\xbe\x08\x6a\x80\x32\x14\xac\xa5\x71\xf2\xed\x93\xf8\xaa\xe6\x88\x55\x57\x26\x61\xd6\xfc\x49\xc1\x44\x7d\xf8\x7f\x52\x28\x0a\xdc\x64\xc5\x0f\xdc\xb9\x0b\xab\x0f\xaa\xaf\x02\x00\x6f\x37\x9e\xcd\xa1\x5a\x1c\x3b\x37\xf7\xc3\xb4\x70\xa8\x16\x23\x47\xe2\x61\x60\xe0\xcd\x2a\x1e\xdd\x9a\x9b\x5d\x52\x38\x54\x8b\x1f\xaa\x73\x23\xc9\x0a\x69\x8c\x0a\x89\x6f\x4d\x20\x39\x89\x78\x4d\xe7\x46\xea\x14\x12\x0c\xcb\x62\x0c\x90\x10\x85\x4c\xc0\x42\x30\x15\x46\xda\x50\x48\xf4\x2b\x9b\x31\xb8\x0c\x36\x79\x7c\xf8\x57\xe7\x09\xba\x92\xb9\xda\xc4\x77\x33\xcf\x24\xc3\xae\x1c\x62\xcc\x99\x09\x24\x81\xae\x28\x44\x5d\x74\x25\x03\xe2\x47\xe5\xa4\x8a\x5e\x28\x1c\xfe\xb8\x6e\x27\xec\xe7\xa1\x70\x54\x96\xab\xf8\x33\x8d\x08\xad\x72\x09\x82\x57\xfa\x89\x9a\x50\x2e\x51\xec\x46\x3f\x61\x14\x28\x97\x60\xf6\xa3\x46\xa3\x71\xd3\xc8\xc8\xc3\xbe\x84\x73\x78\x1e\xd7\xb3\x43\x45\xb2\xd4\xc0\x8b\x3c\x32\x11\x2a\x27\x74\x0d\x74\x7e\xa9\xb1\xd3\xc8\x8b\xdc\x31\x14\xaa\x43\x08\x43\x75\xdc\xe0\x3c\xae\x83\x87\x0a\x6a\xaf\x12\x7b\xbf\x08\x98\x0a\x04\xaf\x46\xa2\xe0\x2c\x49\x20\x06\xa1\x7a\xe8\x6a\x52\x8f\x2e\x54\xc0\x6e\x35\x11\x13\x47\x64\x02\x3f\x08\xc2\x1d\x50\x0f\x32\x60\xe8\x84\xea\xb6\xc2\xbc\x55\xb7\xf3\xa2\xc4\x8b\xd0\x2e\xab\x1b\x9c\xa1\xba\xb2\x31\x2f\x27\x58\x05\xb6\x55\x33\xe1\x76\x76\x33\x3e\xf0\x80\xd5\x34\xef\xa2\xf3\x70\x26\x55\x3f\x0b\xe6\x75\x17\x44\xa8\x08\xd7\x8a\x70\xbd\x87\xdb\x61\x3c\xaa\x2e\x63\x27\x45\xd2\x42\x45\x41\xab\x05\x84\x6a\x50\x23\xcf\xf4\xa3\xc4\xa4\x44\x83\xa4\x08\x40\x28\x2c\xb0\xe3\x2a\x67\x48\x25\x18\x1e\x38\xd6\x2a\xc2\xb5\x12\x72\x09\x0f\xb7\x93\x8e\x5e\x89\x02\x85\x4e\x23\xb9\xe3\x00\x31\x0c\x06\xe4\x50\x91\xb8\x78\xf5\x2d\x20\x08\x2b\x6a\x42\x6d\x3c\x73\xea\x4a\xa6\x98\xd0\x2a\x75\x8b\x42\x05\x09\x83\xab\xdf\x82\xd1\x25\x84\x6b\x25\xf0\x19\x16\x9d\x47\xa1\xa8\x0f\xcf\xd4\x78\xc2\x52\x53\x1f\xe0\x0b\x6c\xd8\x8a\x1c\xad\x9d\xf8\x3c\xdb\xb0\xc2\x21\x53\x3b\xc1\xfe\xc0\xdb\xd1\x32\x2a\x31\xd5\xe8\x96\x66\xa8\x70\xc3\x54\x87\xc7\x5b\x8c\xba\x9d\x41\x76\xab\xc2\x62\xd4\xed\x8c\x92\x6b\x20\x16\x13\x9d\x87\xb6\xa5\x12\x25\x8e\x99\xce\xc3\xd7\x52\x89\x0c\x12\x25\x09\x15\x31\x5c\x09\x22\x45\xf6\x7b\x1d\x7c\x11\x40\x80\x58\xd5\xc8\x8b\x88\xf6\xc6\xca\x33\x27\x2f\x02\x16\x10\xd9\xb0\x15\xc5\x07\xbb\xda\x62\x57\x23\xcf\x9c\x9f\x8c\x29\x6f\x84\x53\xb1\x82\x76\x8e\x9b\x29\x86\x26\xb1\x1a\xb7\x6b\x29\x22\x69\x2b\x38\x82\x14\x78\x3b\xa4\x83\x95\x98\x57\xd2\x78\xa2\x61\xd5\x25\x2c\x84\xae\xa4\xf3\x04\xed\x13\xd2\xa6\x92\x94\x5d\x37\x28\x6e\xb4\xa1\x8a\xa4\xad\x44\xc7\x92\x04\x0b\x92\xb6\x6e\x30\xd8\xda\x71\x48\xda\xba\x81\x22\x6b\x29\x92\x10\x4d\xc0\xc7\xd2\xd4\x95\x74\x9e\x60\x38\xa9\x0f\x01\x14\x50\xa8\x07\x94\xc6\xe2\x76\x84\x6a\x05\xa8\x92\x24\x82\xb0\x46\x2a\x71\xe8\x74\xe8\x12\xb9\xbd\xf5\x0a\x16\xce\xb7\xc3\xe2\x52\xc9\xbc\x85\x78\x3e\x54\xc8\x58\x2a\x31\x52\x62\x3b\xa1\xa1\x8b\x35\xb0\x2c\x99\x5d\xdc\xa0\x8d\x6b\x82\x60\x44\x35\x36\x1a\x41\x4d\x60\x49\x03\x5a\x0a\xcd\x45\xa5\x51\xe7\x2a\x34\x47\x63\x85\x16\xc0\x7a\xa0\x9c\x02\x68\x0a\x20\x99\x2c\xbb\x73\x2d\x34\xe0\xd2\x78\x49\x2c\x23\xd6\x1a\x42\xb5\x01\x97\xc8\x28\x53\xc4\xbc\x02\xc1\x2e\x93\x5e\xdf\x40\x1d\x83\x72\xb2\x8c\xde\xd4\xd0\x19\x1b\x61\xd4\xcc\xc8\xe3\x6b\x09\x2d\xf1\x4c\x76\x71\x73\xdc\x6d\x68\x89\xce\x2f\xfa\x89\xe9\xd6\xb2\xd2\x86\xff\x5b\xa1\xc0\x73\x13\x5a\x16\x2c\xc4\xe7\xaa\xa1\x8f\x36\x21\x39\xd8\x3a\x84\xe3\x02\x71\x38\x93\x7e\xdf\xc8\x53\x6b\x04\xc0\x0b\x6b\xbf\x91\x6e\xd6\x1c\x77\x68\x14\xc0\x0e\x0d\xf6\x8d\x56\xc1\x98\x1c\xae\x84\x10\xa3\x01\xd3\xa8\x2c\xf3\x86\x9d\xdc\x40\x48\x54\x24\x44\x43\xf5\x6c\x2e\x0f\xad\x26\x5d\xc9\x04\x12\x54\xaf\x58\xfe\xe0\xbf\x42\x13\xf0\x04\x35\xa1\xe1\x34\x21\x6c\x68\x32\x0b\x09\x1b\x86\xe6\x42\xd2\x64\x16\x36\x68\xbf\x08\x22\x1a\x21\xbe\xd0\x60\xec\x6a\x00\x33\x2a\xc7\x5a\xc3\x06\x6b\xae\x7a\x1a\x01\xbf\xd0\x10\x99\x0d\x91\x59\x35\x81\x50\x6b\x35\x82\xea\xd5\xbd\x95\xa1\xc1\xa9\xd5\x5c\x48\x1a\xb5\x10\x42\x83\x34\xab\xb9\x92\x6a\x10\xaf\x84\x06\x29\x6f\x03\x6c\x55\x51\x67\x1b\x4a\x6a\x03\x01\x02\xf5\x52\x68\x70\x5b\xe1\x64\x33\x62\x82\xa1\x41\x63\xd5\xdc\xd3\x60\x4d\x1b\x02\x99\xd7\x90\x79\x0d\x55\xae\xa1\x8f\x36\x17\x7d\xd6\x38\x58\x1a\x7e\x9c\x06\x78\xed\xd1\x26\xc3\x8f\xd3\x80\x02\x3c\x5a\x36\xe8\xa1\x0d\x28\xdb\x83\xc9\xd1\xe0\x96\x6d\x26\x94\x8e\xae\x64\x85\xb8\x1e\x6a\x8f\x76\x1e\x2a\x67\x5b\x3c\x53\x5b\x07\x95\xb3\xb9\xca\x69\x0f\x87\x6a\x43\xe5\x04\xbf\x67\x4f\x57\x23\x8b\x41\xd0\x9d\xce\xdb\x21\xb1\x68\x9b\x67\x7a\x70\x35\x34\xd8\x26\xda\xe6\x99\x1c\xaa\x0d\x7a\x89\xb6\xc9\x70\xd7\xb7\xc3\x1e\xd1\x90\x8e\x8f\xd1\xcf\xad\x67\xfa\x02\x7b\xb4\x92\x61\x71\xc0\x31\x69\xcf\x55\x23\x2f\x3a\x7c\x3b\xba\x6d\xc3\x57\xd3\x40\x9e\x74\x74\xb1\x06\xa1\x42\x3b\x20\x7f\x38\x2a\x1b\xec\x08\x0d\xb0\x5c\xd7\x9a\x87\xea\xa0\xb9\xe6\x69\xd4\xb6\x0f\x0d\x4a\xac\x06\x9e\xa4\x73\x2a\x36\xdc\x55\x0d\x91\xd9\x59\xb4\x0f\xda\xe5\x03\x69\x40\x6f\x6a\x5c\x34\xf2\x76\x54\xf8\x87\x2c\x8e\x07\x48\x5a\xe7\x04\x7b\x48\xc9\x78\x3c\xff\xc2\x3a\x2a\xfc\x83\x95\xfe\xb8\x7a\x68\x03\x9d\xf1\x41\x68\x3d\x08\xad\x51\x75\x25\x2f\xf2\x7c\x00\xa3\x26\x74\x78\xc0\xf7\x3f\x42\x1a\x71\x82\x3d\x80\xf1\x1f\x72\xa5\x47\x57\xe3\x43\x63\xa7\x71\xd0\x38\x68\x04\x9a\x84\x23\xe6\xc1\x47\xf0\x64\x10\x51\x93\x2e\xe1\x30\x7a\x04\x5b\x42\xb3\x7e\xf0\x0d\x3d\xe5\x93\xa6\x4d\x23\xdf\x5e\x04\x77\x3a\x34\xf2\x4c\x12\x84\xc7\xd6\x95\x87\x46\xc0\x56\x9b\xb7\xe3\x45\x7a\xc0\xef\x11\x6f\x0c\x0f\x06\xf9\xe3\x39\xbf\x36\x2e\x5f\x84\xfc\x7c\xc0\xe8\x0d\x8e\xb5\x87\xa4\xdc\xc7\x55\x47\xa3\xf8\x42\x78\xf0\x37\x3d\x80\x76\x26\xfb\xe8\x41\x67\x7c\x9a\x70\x52\x6a\xe4\x99\x88\x4a\x4a\xd1\x84\x07\x51\xf9\x38\x4a\xc4\x26\x1a\xeb\x03\xe5\xe2\xf3\x00\xba\xe2\x04\x7b\x50\x24\x1f\x44\xe5\x6c\x74\x09\x51\xf9\xb8\xe9\x6e\xd4\x7c\x08\x0f\x8a\xe4\x83\x22\x39\x39\xc1\x1e\xac\xf4\xe7\x11\x04\x8b\x2e\x61\xa5\x3f\x88\xca\xc9\xe6\x7a\x50\x24\x1f\x14\x49\xaa\xb5\x86\x07\x01\xf8\x90\x40\x39\x35\xc8\x83\xa1\x43\xbf\x33\xd6\xfc\x33\xf8\xa2\x01\xa2\x2a\xf3\xcc\xc1\x74\x90\x05\x68\x68\xeb\xcf\xe4\x45\x6e\x82\x9b\x39\xd6\x38\x3c\x28\x68\x0f\x0a\x9a\x69\x25\x63\x1f\x3f\x2e\x9e\xcc\xae\xae\xe4\x8b\x4c\xf0\x2c\x5d\xc9\x17\x21\xac\x16\x5a\xdb\x83\xb0\x7a\x00\x2c\x2d\x8e\xb3\x07\x86\x9e\x07\xb9\xb4\xa2\xae\xa4\x9f\x20\x2e\x17\x5b\xfb\x81\x17\xe7\x71\xf1\x64\x8b\x93\xeb\xc1\xc3\xfb\x20\x97\x56\x51\x23\xcf\x04\x54\xbb\x38\xb9\x1e\xec\xe3\x07\xf0\x1b\xf0\xf5\xf0\xc0\x37\x23\x40\xf1\xd2\x3e\x42\x2e\x3d\x68\x6d\xab\xd3\x25\xe4\xd2\x03\x3e\x6e\x0d\x5d\xc9\x80\x00\xa5\x5a\x63\xfc\xa7\x42\xf1\x20\xc9\x1e\x24\xd9\xe2\x00\x7c\xb0\xa8\x1f\x94\xbf\x85\x0b\xf4\xc1\xa2\x16\x82\x79\x71\x00\x82\x60\x0e\x0f\xe2\x8d\x32\xe0\xe1\x41\xbc\x3d\xf0\xb5\x2c\x6d\x5c\x2c\xea\x07\x18\xee\xe2\xac\x03\xd6\x1c\x3a\xf8\x46\x60\xf3\xa1\xa3\xfc\x75\x80\xb7\x3b\xa8\xd1\xbb\xd4\x5d\xb3\x33\xa0\xf1\xa1\x93\xef\xd6\xdd\x5c\xb6\x5d\xd5\xf8\xd0\xe8\x03\x03\x34\x3e\x74\x04\x61\x47\xa5\xdb\x5e\x65\x2c\x74\x54\xba\x0e\xd2\x73\xa3\x61\x77\x9c\x82\xdd\xcd\x65\xdb\x78\x8f\x3b\xd2\xb1\x23\x1d\xf7\xa6\x4b\xb8\xd3\x3b\x8c\x11\x20\xeb\x43\x47\xe6\xf5\x2c\x80\x9c\x1a\x79\x3b\x30\x5c\x90\xf5\xa1\x23\xde\x3a\xe2\xed\x70\xa8\x76\xb8\x7c\x3b\xe2\xed\x54\xde\x8e\x2a\xd7\x51\xe5\x0e\xaa\x5c\xc7\xfa\xed\x58\xbf\xe7\x51\xe3\xa2\xf1\xd0\x98\x69\xe4\x45\x60\x20\xe5\xcb\xe8\x38\x21\x85\x0f\x3f\x9c\xc9\x1d\x99\xd7\x01\x2b\x1f\xce\xe4\x8e\x9d\xdc\xb1\x93\x0f\x26\x47\x47\xe6\x75\x64\xde\xc1\xfe\xec\xc4\xcd\x3a\xb0\xc5\xb3\x19\x64\xdc\x95\x1d\x9d\xf1\x20\x5c\x3b\x3e\x76\x40\x5b\x76\xd9\xa3\x80\xb6\x42\xc7\x78\xa6\x10\x63\xe8\x18\xcf\x1d\x9d\xf1\xb2\x1d\x3b\x3a\x63\x47\x67\x04\xe6\x1f\x40\x79\x85\x8e\x20\xbc\x55\x8d\x4c\x1c\xea\x21\xa0\xff\xd0\x71\xbc\x77\x57\xf3\x16\x75\xdf\x43\xc7\x24\xee\x9d\x04\x69\x2d\x06\xac\xdf\x4e\x36\x78\x98\x6a\xe4\xed\xa4\x76\x07\x0e\xab\x4e\x85\x84\x3e\x04\x38\x64\xe8\x30\x89\x81\xd6\x2f\x19\xf9\x1d\xe9\xd8\x95\x89\x6d\xba\x9d\x7e\x82\x38\x0b\xa6\xdb\x19\x64\x70\x3e\x81\xb3\xae\x4f\x5e\x34\x79\xd1\x56\x23\x2f\x22\xe7\x39\x6c\x46\x69\xb2\x6c\x00\xe3\x04\x4c\xb8\x3e\x19\x64\x32\x96\x83\x76\x1c\x25\x09\x3a\x20\x97\xa8\x45\x8b\xc4\xed\xe4\xf7\xca\xc8\xef\xe4\xf6\x0a\xef\x16\x09\x21\x75\xd4\xc3\x6e\x40\x1a\x93\x6e\xdf\x34\x0a\x3b\xc9\x17\x61\x3c\x0b\x04\x17\x39\x15\x3b\xdc\x6a\x7d\x09\x3b\xa9\x46\xde\x0e\xc0\x31\xa2\xd7\x77\x74\xc6\xee\x59\x3d\x4b\xee\x80\x8e\x6c\x16\x94\x2e\x72\x2a\x82\x97\x0b\x1d\x68\x0e\x75\x73\x03\xb0\xb9\xd0\x81\x81\x46\xad\x79\xc4\x70\x07\x2a\x13\xd1\xac\x3b\xea\x61\x3f\x02\x62\xd2\x25\x78\xb5\xfa\xe1\x33\xb5\xbc\x51\xfa\xc8\x90\x58\x54\x67\x0c\x1d\xa9\xd8\x2f\x48\x51\xb4\xcb\x8e\x9d\xdc\xaf\x00\x9c\x6a\xe4\x99\x17\x94\xa5\xd6\x3c\x7e\xc6\xfe\xe1\x97\xf2\xa1\x03\xbb\x17\x04\xda\x4b\xa8\xf0\xa4\x5b\x84\x01\x17\x14\xb4\x8c\x61\x38\x6a\x2b\x8c\x00\x92\x92\x8d\x30\x90\x9f\x03\x8c\x5a\x42\x91\x04\xe5\x17\x46\x04\x8f\xf9\xa8\xf1\xa1\x91\x7e\xe2\x49\x19\xf8\x19\x47\x04\x37\x4a\xd4\x75\xe0\x67\x1c\x20\x97\x12\x1b\x61\x20\x3f\x47\x02\xf1\x69\xba\xb2\xd1\xe8\x6b\x9e\x4c\x8e\x00\xaa\x30\x8c\x44\x3f\x91\x0c\x03\x3b\x79\x40\x02\x24\x17\xc3\x20\x9a\x39\xe0\xef\x49\x1c\xfe\x03\xf1\x3b\xb2\xc0\xa4\xba\x92\x17\xc1\xc7\x43\x01\xb4\x30\xc8\xe0\x1c\x10\xf0\x64\x46\x7e\x20\x93\x05\x66\x94\x8b\x61\x20\x93\x87\xcb\xe4\x95\x39\xe7\x07\xe6\xf5\x70\xd1\xbc\xb2\x46\x1e\x8f\xe4\x00\x73\x44\xae\x48\x18\x24\x30\x0e\x78\x6b\xf2\xa3\x46\xbe\xa8\x08\xca\xca\xdb\x51\x39\x07\xd0\x2a\x12\x41\xc2\x40\x26\x8f\xca\x33\x37\xf3\x0e\xe9\xcc\x70\x99\xbc\xf2\xd1\x95\x74\x1e\x74\x60\x66\x17\x83\xa8\x0c\xc3\x25\xed\xa2\x1a\x61\x18\x58\xe7\x03\x04\x19\xb9\x22\x61\xa0\x5d\x0e\x78\x53\x14\x92\x1b\x44\x33\x07\xe0\x5c\xf2\x41\x02\x19\x3c\x61\x00\xa2\x2b\x5f\x1a\xd6\x7f\x28\x14\x03\xdd\x71\x00\x0c\xab\x1a\x2d\x74\xc7\xe1\x82\x77\xd5\xac\x46\xbe\xac\x7f\x08\x28\x68\x64\x08\x91\xb8\x94\x85\x0c\x03\x8b\x7a\x40\xaf\x51\x51\x95\x06\xf1\xcf\x81\xc4\xad\xa8\xc8\x03\x89\x3b\x80\x9e\x55\x4f\xf6\x09\x83\x58\xd0\x18\xb0\x3d\x78\xce\x4f\x18\x38\x21\x87\xe8\x2f\x38\x54\x07\x4e\x48\xb2\x91\x56\x7d\xd4\xc8\xda\x17\xe2\x97\x43\x15\x88\x6a\x18\x88\xe1\xaa\x59\x45\xe2\x0e\xd1\x4a\x74\x35\x32\xd8\x53\xf0\x61\xba\x04\x26\x65\x00\xde\xab\xda\x25\xd4\x8b\x19\x06\x44\x18\x0d\x1b\xf4\x6b\x18\xc8\x66\x79\x13\x06\xb2\x79\x80\x71\xab\xb8\x98\x06\x06\xf9\x10\xde\x98\x33\x19\x48\x6c\x10\x16\xb6\x1e\x35\x32\xab\x60\xe5\x2b\x26\xf1\xc0\x5d\x39\x40\x56\x82\x4c\x0a\x03\x77\xe5\xd8\x8c\x27\x92\x6c\xe0\x99\x1c\x1b\xe6\x07\x4f\x6f\x0c\x03\x27\xe4\x00\xb1\xdd\x90\x64\x03\xe1\x3a\x10\xae\x8d\xd3\x7b\xc0\xbb\x38\x0e\x50\x61\x6d\x32\x24\xee\x70\x55\x77\x35\xce\x90\x41\x0c\x68\x1c\x5e\x94\x19\x79\x34\xd6\x71\xc0\x1d\x73\xf8\x0f\xc4\xf0\x40\x0c\x37\xc9\x3c\xdc\x95\x03\x31\xdc\xb4\x42\x88\x01\x0d\xd1\x0b\x62\x66\x0f\xc4\xf0\x40\x0c\x37\x36\xee\x24\x4a\x3c\x03\xb7\xa3\x61\x03\xf9\x0d\x13\x9c\x6c\x9b\x6a\x34\x1a\xb9\x1d\xd5\x78\xe2\x99\x14\x2a\xb8\x31\x9b\xa0\x82\xc3\x8c\x82\x42\x73\x25\x94\x0c\x13\x6c\x63\x43\x49\x99\xf0\x2b\xcc\x08\xdb\xd1\x56\x23\x2f\x02\x94\xdf\x8e\x6e\xdf\x34\x32\xc8\x48\x88\x89\x91\x3f\x13\x2f\xba\x6a\x2c\x34\x02\x62\x46\xb3\x9e\xe8\xb6\x13\x8c\xf7\x13\xd5\xb8\x68\x84\xe2\x06\x40\xcd\xc4\xf2\x9f\x10\xab\x3d\x59\x8d\x74\x9e\xcc\x87\x07\xa9\x33\x11\xae\x33\x83\xab\x2e\x6a\xa4\x9f\x80\x36\x1f\x67\xb2\x0e\x13\x91\x39\x11\x99\x64\x7e\x85\x89\x1a\x3b\xcb\x87\x28\x83\x46\x5f\x36\x13\x6c\xea\x83\xf9\x3a\xa9\x47\x31\x11\x99\x0f\x7a\xfd\x44\x64\x92\x73\xb7\x1e\x54\x39\x70\xd5\x61\x56\x31\x43\x35\x1a\x99\xa3\x0a\xc6\x1b\xfd\x6e\x62\xba\x4f\x00\xea\x0f\xa0\x92\x09\x54\x64\x36\xe1\xbf\xe9\x12\xa6\xfb\x24\xdb\xe0\x31\x35\xf2\x22\x51\x50\xa1\xca\x4d\xa0\x61\xb3\xf1\x45\xa8\x72\x13\xdf\xe5\x7c\xc0\x7f\xe3\x38\x98\xf8\x2e\xe7\x03\xb8\x3b\xaa\x91\x6f\x47\xa8\x76\xc7\x5d\x86\x89\xef\x72\x76\x58\xed\xd0\xda\x26\xbe\xcb\xd9\xa1\xf0\x4b\x6a\xe4\x99\x10\x16\x75\x84\xea\x44\x8d\x9d\xa8\xb1\x5d\x73\x84\x9b\x72\x0e\x31\xe5\xf1\x76\x34\xd6\x0f\xfa\xbc\xab\x91\x89\x23\x2b\xa2\x77\xba\x84\xc6\xfa\x0f\x16\xdd\xf7\xfb\x24\x96\x3e\xa1\xdf\xe9\x1a\x25\xf4\xd0\x89\x1e\xda\xb1\xa8\x26\xbe\xcb\x09\xf4\xba\x6b\x79\x23\x15\x27\x52\x91\xdc\xb9\x30\x09\xe2\x4c\xa4\xe2\xd0\x4a\x46\x2a\x4e\x13\x86\x5d\x57\xf2\x99\xe8\xa1\x24\xdb\x85\x09\x09\xf0\x5c\xe0\xcd\x9b\x1a\xe9\x12\x52\x91\xf4\xba\x30\x91\x8a\x64\x5e\xae\x81\xf5\x33\x61\xcd\x9d\x68\x97\x43\xbb\x18\x37\xe5\x74\xe1\xb8\x06\x71\xba\x89\xca\x39\x11\x95\x63\xeb\x4a\x56\x08\x79\x1b\x63\x33\x74\x70\xd8\xce\x2d\x78\xfc\xa0\x91\xce\x83\xd1\x1f\x12\x02\xb8\x03\xe6\xe1\x45\x47\x8d\xcc\x11\xa2\x72\x00\x82\x98\x44\x76\xe6\xe1\x8b\x24\x04\xc0\xf8\xcc\x23\x04\xbd\x1a\x59\x60\xc8\xcf\x89\x7f\x64\x22\x2a\x27\xa2\x72\x6a\x85\x10\x2e\x9f\x17\x58\x7d\x55\x23\x72\x89\x6c\x93\x89\x6f\xdd\x28\x22\x64\xd0\x9b\x92\xb3\x17\x0c\xe3\xde\xc8\x9c\x98\x6b\xfd\xa7\x42\x61\x08\x57\x43\xb8\xca\xc5\x64\x44\xc8\x2d\x02\xe0\x47\x3e\x19\x9a\x2b\x99\xb0\x8b\x84\xbe\x60\x88\x4c\x43\x64\x5a\x55\xa3\x7f\xae\x81\xc0\x37\xe4\xbd\x25\x6e\x4f\x80\xfb\x59\x3e\x86\x3e\x6a\x2e\x0f\xd7\x8a\x6a\xdc\x34\x2a\x45\x20\xd2\xc8\x33\x91\x8e\x14\x2b\x0f\x86\x74\xb4\xac\xf4\x01\x5e\x84\x8f\xc0\xa0\x7f\x5c\xb8\xc2\xc8\xd1\x0d\x86\x3e\xba\xd0\x86\x0c\x7d\xd4\xd0\x47\x17\x06\x0f\xf9\xbb\xc1\xe0\x66\x5c\xe8\x38\x86\x3b\xc0\x20\x48\x24\x49\x30\x18\xde\x4e\x83\xed\x50\xb8\x1c\xa3\xcc\x8f\xa1\x7a\x42\x7f\x10\x8c\x08\xb9\xb9\x06\xba\x16\xfa\x88\x21\x47\x0d\x39\x4a\x81\xf0\x60\x04\xc3\x8d\x64\x1e\xf2\x08\x83\xe1\xd8\xb4\x4f\xd6\x02\x8d\xd4\x83\x31\x77\x50\x2e\xe1\x5c\x8c\x10\xb7\x91\x84\x45\xaa\x61\x30\xaa\xb0\x18\xc9\x19\x9b\x43\xd5\x90\x64\xd6\x95\xa7\xc0\x33\x11\x5a\x86\xd0\x3a\x9a\x77\x94\x3e\x53\xf6\x41\x56\x23\x2f\x42\x68\x1d\xcd\x3b\x42\xcb\xc4\x5e\xa6\x75\x8a\xd0\x32\xcc\x6c\xa1\x42\x0c\xfd\xce\xd0\xef\x0e\xe7\x92\x21\xc9\x0c\x49\x26\x00\x88\x79\xc8\x39\x18\xac\x60\x87\xd3\x86\x9c\x97\xa0\x64\x97\x33\xd5\x48\xe7\x51\xfa\x0e\x07\x8b\x21\xde\x0c\xf1\x76\x38\x58\x48\x7d\x09\x46\x76\xd3\xc1\x74\x37\xc4\x9b\x21\xde\x0e\xa6\x91\x61\x90\x1b\x06\xf9\xb9\xba\x92\xb5\x84\x7a\x78\x70\x53\x9b\xe9\xed\x3e\x74\x97\xd3\xc6\x10\x84\x86\x20\xbc\x51\x8d\x3c\x13\x41\x28\xa4\x89\xc1\x4a\x6e\x8b\xb4\x0a\xec\x79\x43\x3d\x34\xb2\xd3\xae\xd6\x27\x7e\x51\xdb\x4a\xce\x50\x23\x9d\x47\x10\x5e\x0e\x16\x43\xe9\x33\xcc\x6c\xa1\x93\x0d\x49\x66\x64\x68\x09\x00\x62\xe8\x77\x76\x49\xba\xc0\xa5\x6c\xc4\x56\xcc\xc5\xd4\x16\xd6\xc3\x40\x01\x9a\x8b\xa2\x1d\x58\x75\x0b\xe3\x79\x05\x6e\x7f\xd4\x98\x69\x24\xfd\x83\x55\xb7\xd0\xef\x96\xeb\x77\x9b\xa2\xf1\x61\x21\x82\x56\xf8\x50\xdc\xd1\x78\x68\xbc\x34\xfa\xb2\x59\x44\x9e\x57\xe4\x45\xc8\xfb\x45\xe4\x79\x45\x5e\xe4\xcc\xfa\x61\xa1\xf4\x91\xba\xb4\x03\xa2\x7d\xa1\xf4\x2d\x57\xfa\x76\x38\x6a\xe4\xed\x91\x2f\x42\xb4\x2f\x6c\xef\x95\xc8\x1f\x61\xcd\xaf\xc4\x33\x49\x5f\x10\xb0\x62\x21\xd6\x96\xf2\x47\x70\x3e\x2f\x37\xba\xc3\x72\xe9\xb6\x23\xa2\x7d\x81\xf1\x59\x2e\xc8\x76\x44\xb4\x2f\x84\xd5\x22\x09\x82\x9c\xd4\xb0\x10\x56\x0b\x72\x5a\x78\xfd\xc3\x82\xd8\x67\xb9\x46\xb7\xc9\x3b\x0d\x0b\x55\x6e\x39\x2c\x67\x27\xd4\xc3\x85\xb4\x59\x24\x8e\x90\x4d\x1a\x16\xd2\x66\xb9\xb4\xd9\xc2\x3b\x2c\x5c\x8a\x8b\xa4\x1c\xb2\x49\xc3\xc2\xa5\xb8\x1a\x79\x2e\x68\x58\x0b\x11\xb4\x9a\x52\x5a\x74\x25\xfd\x74\x5d\x6c\x0b\xc5\xb0\xd0\xc5\x16\xfc\x9f\x64\xa1\x86\x45\x18\x65\x3d\xca\x81\x51\x23\xcf\x74\x61\xb5\xe5\x38\x20\x85\x2c\x2c\x32\x4d\xa8\x37\x1d\x16\x61\x94\xf5\x90\xee\x82\xcb\x66\xa1\xa0\xad\xce\x33\x31\x85\x17\x62\x6d\x75\xa5\xc9\xa8\x91\x6f\x77\xe3\x77\x67\x4e\x84\x85\xf3\x71\xb9\x29\xbc\x33\xcb\x7b\xa1\xca\xad\x0e\xb7\xa2\x56\x32\xce\xc7\xe5\xca\xdb\xce\x5d\x8d\x8c\x12\xf9\x1c\x19\x67\xee\xc2\x14\x5e\x83\xb7\x73\x4c\x2c\xa4\xe2\x1a\xe4\xf8\x70\x4c\x2c\x04\xe0\x9a\x3c\x13\xe1\xbf\xf0\x33\x2e\x32\x8c\xb2\x06\x19\x01\xb8\x48\x62\xc9\x5a\xb4\x08\xc0\x35\xe9\x27\x5a\xdb\x42\x58\x2d\x52\x45\x0a\xc7\xee\x22\x49\x60\x19\xb9\x3a\x0f\xfd\x24\x5e\xb3\x16\x29\x3b\xe8\x62\x0b\xc1\xb2\xb6\x32\x77\xe8\x12\x81\xe0\xe5\xf2\x65\x7b\xc6\xef\x7f\x28\x14\x0b\xf5\x6b\xb9\xfa\xb5\xe5\x4d\x58\x68\x5a\x6b\x5f\x31\x54\x7a\x23\xc0\xc4\x45\xc2\x4a\x6d\x6a\x64\xae\x4e\x17\x33\x23\x8d\x2c\x8a\xa3\x74\x20\x35\xb2\x28\x0e\xcf\xc4\x38\x59\x18\xa5\xcb\x5d\x84\xbb\x6a\x08\xf1\x0d\xae\xcb\x33\xb7\x1a\x79\x26\x49\x3e\xa4\xfe\x86\x8d\xd0\xda\x08\xad\xc6\x3a\xdd\x08\xad\x8d\xd0\x12\x64\x60\xe3\x06\xdc\x41\x6c\xf7\xbe\xef\x37\xf2\x69\x23\x9f\x48\xfd\x0d\x1b\x51\xb4\xa3\x32\x8d\xd4\x38\x69\xe4\x76\x44\xfb\x46\xea\x6c\xa4\x0e\xf9\xc0\x61\x23\x75\x36\x52\x87\x44\xe0\xb0\x71\xd9\x6d\x77\xd9\x6d\xb2\x7c\xc3\x06\xf0\xb7\x5d\xab\xd9\x8d\x45\xb1\x89\xe8\xee\x42\x56\x10\xba\xc3\x86\x3e\x6c\xbb\x48\xd9\x02\x2c\x6c\x3c\x69\x9b\x9c\x2b\x32\x80\xc3\xc6\x02\xdc\x55\xc9\x48\x74\x89\x14\x80\x8d\x2c\x79\x3c\x4f\x33\x6c\x02\x19\xbb\x2a\x51\x89\x2b\x51\x67\xb6\x8b\x94\x2d\x53\x13\x1e\x92\xb0\x1b\xc9\x4f\xac\xbe\x8d\xb1\xb7\xc9\x3e\x7b\xd8\x3a\x1b\xff\xd8\xf6\xf8\x42\x7b\x8c\x17\xe1\xbb\x26\x4b\x74\x14\x0c\xdd\xcb\x51\x79\xfd\xa8\xec\xdd\x53\x93\xc2\xc5\x51\x7c\xfd\x20\x6b\x8f\xe7\x6e\xc4\xe0\xd3\x18\x83\xcf\xdf\x33\x8a\x97\xf6\x0f\x3e\x1d\x31\xf8\x74\x8c\x49\x1d\xfd\xe4\x9f\x12\x93\xbb\x01\xeb\xf5\x65\x13\x93\xef\xd1\x48\x16\x60\x63\x93\x45\xaa\x44\x44\xd0\xfe\xcf\xf6\xb4\xd9\x08\xd1\x7f\x14\xbb\x7f\x75\x0f\x6a\x84\x98\x38\xc2\x46\xdc\xbb\x2b\x14\x11\xfa\xde\x08\x67\xef\xd3\xbc\x3e\x7c\xcc\xbe\x03\x62\x76\x23\xa3\x82\xbb\x8e\xd0\x5d\x46\x38\x2e\x3b\x30\xbe\x08\x0c\x3e\xc2\xa9\xd6\xcc\x13\x8f\x63\xf5\x8f\x8e\xd5\x4f\xef\xd1\x3c\xc8\x18\x1f\xb7\x9e\xe2\xe3\x9b\xfa\x99\x9e\xd4\x10\xbb\xcf\x6d\x24\x64\x35\x70\x70\xc4\xee\x92\x25\x76\xd7\xa9\xea\xf1\x89\x8b\x04\x32\x62\x77\x9f\x59\x03\x01\x19\x89\x59\x44\x62\x16\x6d\xb4\x48\xe3\xf5\x46\x17\x30\x4f\x76\xb4\x7f\x44\x5d\x8b\xe8\x69\x2d\xba\x10\x88\xdb\x2d\xb2\xb8\x5d\x40\x8c\xea\x39\x3b\xf1\xf8\x14\xc7\xe3\x53\xfc\x74\xcf\xf2\x88\xe7\xd0\xe8\xe3\xd2\x9a\x9f\xb4\xf1\xfa\xc1\x12\xaf\x1f\x2c\x4f\xb4\x41\x63\xa7\x71\xbc\xe4\x68\x91\xcc\xda\x48\x4a\xad\xf2\xbf\xe2\x65\xe4\xaf\x9f\x05\xca\xff\x8a\xd7\xa5\x7f\xbc\xae\x0c\xdf\xab\xc6\xc1\x95\x2e\xda\x2f\xc4\x19\xf1\xba\x4c\x8f\xd7\x75\xdb\x7b\x1d\x1e\x17\xaf\x9b\xe7\xf1\xaa\x34\x2d\x05\xdc\x42\x20\x17\xcd\xed\xb3\x1c\x60\x29\x0b\x10\xa0\xb2\x22\x73\x80\x6f\x8a\x85\x99\x42\xf8\xd6\xa5\x14\xa8\x6b\x16\xc2\x87\xad\xd5\x1b\xa3\xf2\xdb\xda\x8f\x46\x6e\x8f\xdc\x0e\x6f\x14\xeb\x3a\x05\xf7\x61\xfd\xd3\x48\x55\xb1\x40\x7d\xd7\x4f\x3f\x29\x10\x16\xf0\x45\x25\x08\x95\x02\xe5\x5a\x83\xa8\x1a\x29\xf4\x15\x48\x43\x09\xaa\xfe\xe5\x8b\x36\x05\xd2\x8f\x82\x8a\x78\xa9\x0c\x34\xe5\xb7\x42\x19\xdf\xf8\xe8\x82\x2f\xb7\x14\x28\x72\xc5\x74\xa4\x50\x79\x58\x5d\xdf\x58\xed\x82\xcb\x90\x14\xfe\x29\x24\x45\x23\x09\x7f\xad\x7c\xff\xa2\xc6\x80\x34\x06\x19\xf2\xb7\x40\xfd\xa5\x40\x51\xc2\x07\x3a\xae\xb0\x78\xbb\x2f\xbe\x24\x56\x27\xc8\x62\x52\x8c\xe4\xd3\xa9\x18\x6e\x84\xdc\x96\xb2\x6e\x28\x53\x29\x26\x58\x6d\xdd\xe1\xe7\x25\xa4\xbc\x11\x7e\x3f\xd7\xfd\x52\x7a\x78\x26\xa5\xd9\xa2\x6a\xb2\x41\x42\x15\xa9\x55\x16\xc9\xb8\x04\x3c\x98\xa2\xaa\x38\xcd\xe7\xdb\xbc\x93\xc0\x9c\x22\xe9\x78\xcf\xa3\xb2\x76\xde\xa5\x14\xe9\x52\xa2\x40\x54\xa4\x2f\xac\x89\x04\x11\x50\x8a\x24\x11\xb2\x26\xd2\x50\xb5\x38\x7e\xa9\x9f\xf0\x31\x25\x97\xe5\x09\x59\x97\x8a\xca\x5a\x35\x65\x40\xf6\x37\x93\xd1\xd3\x14\xbd\x91\x74\xd1\xc1\x8b\x16\x7d\x21\xeb\x30\xc2\xdc\xa4\x4c\xa3\xec\x61\xef\x4f\xad\xb2\xec\xf6\x47\x42\xac\xa5\xf8\x65\x94\xfc\x6f\x85\x22\x91\xc9\x93\x48\xd3\xc9\xaa\x4a\x4c\x9a\x4e\x22\x31\x27\x07\x78\xf7\x0a\xfd\x2d\xea\x2f\xec\xc4\x24\xd8\x24\x32\x6b\xe6\xfa\x30\x1e\x72\xa5\xf2\x6c\xa0\x10\x24\xcf\x26\x91\x59\x33\x41\xb1\x24\x52\x6a\xd2\x27\xa5\x86\xe2\x81\xa4\xd4\xa4\x4f\x4a\x8d\x18\x16\x3d\xfc\x92\xc8\xac\x99\x8b\x69\x29\xe4\x8b\x16\x91\x90\x67\xde\x3e\xe8\xbc\x52\x6a\xe0\xea\x2a\x83\xdb\x95\x52\x93\xe1\x7e\xa4\x5c\x58\x99\xbc\x1d\x22\xa8\x32\xb9\x9d\x44\x99\x55\xc4\xd3\xd8\x69\xe4\xed\x90\x06\x92\x19\x93\xca\xe4\x8b\x2a\xac\x8d\xe4\xa0\x92\xd3\x32\x97\x48\x3b\x99\xb9\xb2\x60\x58\x84\x30\xac\xb8\xdd\x9a\x48\x74\x99\x5f\xea\xba\x37\x32\x9d\x10\x04\xae\x87\x51\x22\x39\x53\x19\x2e\xcb\x75\xb1\x54\xd6\xf9\x64\xc4\x79\x23\x2f\xda\xbc\x88\xb4\x97\x35\xf8\xa2\xcd\xb7\x6f\x9e\xc9\x3a\x2d\x4a\xa8\x23\x99\x65\xc1\x72\x47\x32\x4b\x52\x32\xcb\xa2\x06\x64\x39\x4c\x31\x79\x2b\x0b\x6a\xab\x72\xd8\x5d\x87\xdc\x32\x08\xbc\xc8\x62\x49\xa4\xaf\xcc\x05\xdf\x58\xb9\x8c\xe7\xe5\x99\x8b\xb7\x5f\x9e\x79\x19\xe4\xc5\xd0\x5d\x06\x99\x14\x95\x05\xf1\x17\x29\x2a\x89\xfc\x93\xb9\x60\x9d\xab\x48\x71\x65\xa3\x2c\xd8\xbd\xc8\x46\x49\xca\x46\x59\xf0\xc5\x55\x76\x73\x85\x25\xf2\x4b\xa9\x75\x6e\xcb\x4c\x23\x6f\x77\x17\x43\x22\x45\x25\x29\x45\x65\x41\xc7\x56\x23\x69\x9c\x91\x24\x26\x44\x26\x09\x2b\x49\x29\x2a\x3b\x70\x3b\x15\x26\xab\xef\xfb\xb9\xe1\xed\xab\x14\x92\xac\x89\xd4\xa4\x08\x07\x67\x52\x66\x29\x45\x3b\xa0\x21\xad\x94\x87\x54\xe2\xc9\x66\xcd\x93\xae\x9f\xc8\x3f\x99\x1b\x1e\x3d\xd2\x50\x12\xa9\x26\x73\xc3\x23\x4a\xc6\x49\xaa\x85\x2e\x65\x51\x71\xf2\x99\x90\x46\x6e\xf8\x32\xab\x6a\x37\x92\xea\xb7\xd9\x08\x95\x92\x8a\xb5\x92\xd5\x05\x07\x1a\x19\x27\xa9\x56\xb2\xa5\x28\xde\x59\x91\x64\x24\x9e\xcc\xcd\x46\xa8\xc8\xb5\xda\x78\x3b\x1b\xa1\x36\x32\x75\x1b\xe9\x63\x10\xfd\xc1\x1c\x95\x2a\x09\x7c\xb0\x80\xa4\x4a\xce\x39\x39\x26\x73\x3f\xbc\x88\xca\x81\xe4\x98\xcc\xfd\x30\xc8\x0f\x9d\x7f\x78\x3b\x32\x8f\x74\x92\x44\x3a\xc9\xdc\x48\xb0\xea\x62\x26\xd5\x47\x89\x66\x7c\x66\xe7\x99\xc8\x90\xcd\xee\xa8\x9d\xdb\x07\xe3\x09\xbf\x6a\xa5\xc8\x20\xd9\x1a\x73\x53\x7b\xa1\x7e\xea\xe8\x72\x3b\xf4\x84\xa4\x69\xa4\x3a\x79\x3b\x6b\x9e\xa4\x8d\x54\x27\x6f\x67\xcd\x57\x8a\x05\x56\x77\xfb\xcf\xcd\x9a\x27\x69\x23\x55\x25\xc4\x6d\x46\x09\x79\x4f\x9a\xc6\xdc\x70\xa8\x93\xa6\x91\xaa\x12\xe2\x0e\x9d\x47\x5c\x90\x59\x31\xb7\xd6\xfc\x66\xd9\xb0\xdf\x21\x49\x49\xe4\x59\x24\xf2\x2c\xe6\xbe\x3c\x93\x13\xba\xc2\x26\x7b\x82\xb8\x57\x99\xf7\x43\xaa\x97\x28\x5f\x49\xb5\xad\x4a\x1f\x8b\xb0\xa6\x52\x55\x96\xf4\x87\x79\x58\x9f\x4d\x2c\xf4\x4a\x1f\x43\x26\x93\x0c\x91\x5a\x20\xc9\x2e\xeb\x76\xa3\x91\x67\x66\xb1\xb4\xba\xb8\x68\x51\xf9\x74\x0f\x8d\xe2\xb2\xe7\x76\x96\x62\x43\xed\x6a\x91\xdb\xe1\xc6\x6c\xe8\x0e\x0d\xbe\xda\x03\xd9\x24\x99\x0e\x89\x4c\x87\x79\x38\xbd\x1b\x45\x60\xa1\x9a\x98\x50\xc2\x24\xd2\x1f\x52\x63\x17\x9f\xb6\x69\xe4\x45\x99\xbc\x3f\xd6\x27\xfc\x61\xa9\xb1\x61\xcf\x23\xe2\xd8\x41\x23\x69\x83\x30\x04\xb6\x2c\x5e\x00\xd2\xf1\x58\x8a\xa4\x0c\xa4\x46\xd2\xea\xa1\xb2\x29\x99\x03\xa9\x71\x6e\x1e\x96\x0d\xa4\x62\xa9\xb1\x92\x0f\xfc\xb8\x24\x02\x24\x32\x00\xe6\x41\xf1\x21\x11\x20\x01\xe1\x9f\x87\x65\xd3\x28\x73\x0d\xa0\x7f\x1e\x68\x80\x1b\x95\xac\xc1\xee\xcf\x03\x99\x66\x43\x95\x03\xc2\x3f\xcf\xe5\xed\xd4\xd0\x6c\x83\xa4\xc5\xfb\x9f\xa0\xcc\xd4\xdc\x23\x9d\x1a\xd9\xa7\x87\x85\x06\xda\x3f\xb5\x49\x5a\x1e\xc5\x73\x61\xe4\x48\x8d\x04\xd3\xcb\x42\x6b\x10\x3b\x34\x5f\xd8\xf3\x46\xf1\xe5\x32\xff\x8b\xb4\x3c\x64\x5e\x5b\x4c\xcb\x26\xd9\x4e\x6b\x8a\xb3\xae\x91\xe2\x79\xc5\x03\xac\xba\xd0\xbe\xda\xe7\x45\xbc\x01\xad\x4f\xed\xf0\x4c\xad\x29\x14\xa7\x76\x48\x49\x14\x1d\x30\x15\x18\x1a\x6b\x1f\xc2\x9e\xf4\xb0\xf6\xc1\xb8\xcf\x8b\x7c\x02\xea\x9e\x1e\xd6\xfe\x7d\x20\xca\x65\xed\x3f\x1c\x56\x17\xfe\xda\x87\xb5\x0f\x0c\x7e\x5e\x2a\x0d\x3f\x6e\x78\xa6\x87\xb5\x7f\x3b\xbc\xbe\xe8\x9c\x60\xe3\xe7\xa5\x02\xeb\xc3\x61\xf5\x40\xd2\x7c\x51\x13\x1f\xce\xa5\x47\xc9\x8b\x03\xea\x5f\x96\x24\x90\xf5\x79\xa1\xa2\x04\xb2\x9e\x9e\xcc\xed\xa6\x2b\xb9\xbd\x90\x10\xc9\x92\x04\x9d\x9e\x40\xa7\xcf\x0b\x21\xac\x88\x4e\x80\x9e\xcf\xbb\xe9\x3c\xfa\x28\x80\xf2\x79\x59\x7d\xe0\xca\xd3\xc3\xc9\x70\x0f\x6f\xc7\xba\x78\x1a\x9f\x09\xfb\x34\xf0\xf2\xf4\x34\x3e\x93\xd5\x07\xbc\x3c\x3d\xd0\x2c\x5f\x48\x58\x41\x92\x27\x21\xc9\x45\xb2\x0d\x92\x3c\x3d\xca\x3e\x44\xe5\x04\x34\x9e\x04\x1a\x0f\x81\x2e\x71\x5c\x80\x1d\xb7\xc0\x02\x03\x42\x9e\x84\x0f\x0f\x88\xb7\x47\x75\x67\xc9\x85\x09\x28\xa7\x0f\x65\xe1\x1f\xb8\x7b\x55\xcd\xe3\x61\x25\x3f\x93\x6c\x4e\x98\xb0\xa1\x6e\x49\x8f\xea\x99\x40\x3b\xfd\x50\xeb\x15\x44\xb8\x05\xaa\x41\x03\x0c\x4f\xf8\x0f\x2c\xb0\xea\x70\x23\x24\x30\xd9\x06\x1d\x4c\x02\x9a\x9d\x1e\x92\x44\x82\xd6\x12\xa2\x1d\xf8\xb5\x05\xad\x25\xd7\xe1\xd2\x43\xea\x47\xd0\xb2\x51\x9d\x91\x43\xe6\xa5\x56\x08\xaa\x1c\x10\x69\x0b\x14\xc5\x06\x14\x9d\x40\x43\x5b\xc0\x84\x03\x14\x9d\x1e\xb2\xe5\x82\xf1\xed\x97\x6f\x87\x43\x34\xb0\x96\x3a\x1b\x41\x30\xe8\x00\x7b\x75\x67\x23\x74\x18\x45\xa1\x9b\x4a\xdd\xb7\x45\xea\x41\xc9\xa0\x95\x46\xef\x12\x10\x69\x0b\x1e\x4f\x4e\x20\xa5\x13\x10\x69\x0b\x1c\x80\x20\xa5\x53\xcf\x3c\xf3\x88\x62\xda\x68\x24\x75\x92\x79\x07\xb2\x9c\x00\x29\x5b\xc4\x24\x06\xab\x9c\x3a\x84\xab\x91\x29\xee\xb0\x3d\x00\x52\x36\x70\xa2\x09\xac\x72\xea\x85\x67\x32\xef\x60\x95\x13\xce\x1d\x8b\x89\x17\x61\x91\x75\xf2\x2c\x62\x16\x97\xf5\xa2\x91\xdb\x21\x25\xee\x95\xdb\xc1\x1c\xc7\xc2\xb7\x63\x90\x83\x32\xb6\x08\xb9\x37\x60\xe3\x04\xca\xd8\x22\x9c\xbf\x80\x8d\x13\x28\x63\x8b\x90\x7b\x77\x34\x2c\x50\xc6\x16\xab\x6e\xe7\xdb\x7d\x93\x58\xc4\x28\x01\x73\x9c\xa0\x8d\xb4\xd8\x18\xcf\xce\xb7\x93\x13\x11\x91\x60\x40\x88\x53\xef\x74\x1e\x67\x04\x10\xe2\xd4\x95\x32\x8b\x2e\x06\x3e\x38\x75\xf2\xbf\x22\xec\xc7\x00\x83\x53\x57\x76\x2c\xf6\x07\xc0\xe0\x04\x15\xa5\xc5\x41\x3f\xa9\xca\x0c\xc0\xd7\x22\xeb\xb3\xa3\x61\x75\x92\x1a\x22\x9c\xcd\x00\x67\x13\x50\x59\x53\x7d\xe9\x8e\xf5\xd3\x49\x45\x55\x4d\xe8\xce\x89\xd0\xd9\x32\x51\x0b\x0c\xeb\x07\x8c\xac\x45\xf8\x8e\x3b\x5b\xa6\x93\xaa\x10\x11\x56\x1d\x8b\xba\x1f\x25\xd7\xf2\x22\x8e\x09\xf0\xb3\x16\x2f\x2f\x72\x7f\x68\x02\x23\x6b\xf1\x8a\x7d\x5c\x57\x92\x9f\x4a\xbd\x77\x80\xb3\x09\xe0\xac\xa9\x94\x3c\x6c\x97\x09\xe0\xac\x25\x16\x2d\xc0\xd9\x34\xc8\x31\x80\x2a\x35\x81\x98\x4d\xc3\x8f\x10\x4b\x50\x45\x0f\xaa\xf1\x03\x72\xb5\x84\x01\x31\x70\xaf\x0c\x52\x3c\x13\x47\x24\x78\xd6\x04\x4e\xd4\x12\x16\x00\x38\xd1\x34\x20\x60\x87\x3f\x35\x81\x13\x4d\x03\xec\x7e\xaa\xba\xf2\xa1\xd1\xa7\x23\xb1\x6c\x06\x1b\x01\xbc\xa7\xc1\xb5\x94\x80\x7d\xa6\xc1\x9a\x97\xcb\x66\xb0\xe6\x87\x8a\xee\x3d\xfb\x3f\x15\x8a\xc1\xc9\x00\x0a\xd4\x60\x67\x4a\x83\x0d\x31\x80\xd6\xcb\x6d\x31\x9a\x9e\xcd\x10\x0e\x31\xb7\x33\x84\x70\x0e\xcb\x4b\x03\x5e\x34\x0d\x8e\x8b\x04\xbf\x3d\x40\xd1\x34\x1e\xa5\x22\x43\xcb\xce\xc9\x00\x24\xd4\x12\x26\xf1\xc0\x43\x01\x32\xd4\x12\x26\x31\x00\xd1\x04\x52\xd3\x12\x95\xc5\x41\x6a\x26\x90\x9a\x06\x59\x5d\x1a\x28\x55\x00\x36\x2d\xb1\x78\x41\x6a\x26\x40\x99\x96\xb6\x28\xe2\x79\x26\x59\x92\x09\x96\x6e\x40\x99\x09\x50\xa6\x25\x54\xba\x81\xde\x34\xa6\x92\x96\x59\x29\x98\x1c\x80\x32\x2d\x89\xf4\x9e\x52\xe4\x70\x91\x1a\x8c\x79\x09\x2e\xd2\x04\x36\xd3\x32\xe7\xe7\xe0\x5c\x1a\x64\x23\x65\xd6\x29\x48\xcd\x04\x28\xd3\xb2\xa8\xf3\xb1\x43\xc0\x20\x5a\xc6\xa6\x1d\x90\x57\x8d\xab\xf4\x66\xbf\x7d\x62\xcf\x03\x4c\xb4\x8c\x77\x0e\x44\x62\x9a\x9c\x0c\x19\xe2\x70\x80\x89\x69\x2a\x65\x1a\xa7\xc9\xe4\x64\x98\x4a\x99\xc6\x69\x02\x4c\x31\x81\x41\xb4\x4c\xf9\x8c\xc9\xc9\x30\x3f\x89\xd0\x90\xd7\xa3\x22\xcd\x4f\x22\x34\x6c\xf7\xd8\x0c\x93\xac\x19\x88\xad\x12\x70\xc3\x34\x13\xdf\xce\xb2\x99\xf8\x6f\x27\x59\x33\x19\xa7\x09\x20\xc2\x34\x33\x43\x87\x7c\x9a\xb0\x4f\x81\x02\x34\x58\x8f\x12\x28\xc0\x34\x2b\x6f\x5f\xe2\xd3\xe7\xed\xae\x3e\x59\xc6\x2c\x04\x13\x98\x00\x03\x5a\x46\x92\x01\xff\x4b\x93\xfd\x94\x59\x0c\xa0\x00\x13\xb8\x3f\x83\x5e\x38\x4d\xce\x10\x50\x80\x96\x31\x0b\x41\x01\xa6\x49\x0a\x72\x66\xd9\x00\xe3\x4b\x13\xde\x84\x8c\xb6\x3e\x5d\xfa\xa7\x09\x41\x7a\x41\x45\x02\x5d\x97\x26\xf2\xbe\xe0\xcb\x98\xb8\xd5\x00\xd9\x59\x61\xde\xc1\xda\x25\x28\x5e\xad\x24\xdd\xce\xb7\x43\xef\x5d\x28\x94\x32\x27\x57\x92\xd9\x56\x90\x4f\xe0\xdb\x12\xf8\x36\x2b\x55\xf5\x02\x78\xd1\xe2\xf6\xaa\x2b\x75\x3b\x2f\xd2\x02\xdb\x2c\x06\x94\xa9\xa2\xb2\x08\x28\x53\x20\xcc\xac\x60\xd7\x81\x30\x4b\xc0\xc7\x0c\x12\xc6\x34\xf1\x61\xcd\xab\x46\x2a\x04\x20\x86\x41\x83\x59\x19\x6a\x2c\x34\x92\x8f\x8e\xe3\xc0\x50\x67\x00\x7c\x59\xc1\x71\x60\x2c\x5a\x63\xd1\x16\x55\x1d\x60\xd1\x82\xfb\xb2\xc2\x0a\x31\xfc\x4d\x40\xbc\xac\xa0\xad\x83\xf4\x4a\x46\xce\x6b\x41\x31\x37\x5f\xad\xc9\x10\xed\x05\x5b\xd1\x10\xed\x00\xbe\xac\xb0\x96\x00\x7c\x25\x23\x51\xbf\xb0\x96\x40\x7a\x25\xb0\x5d\x56\x88\x44\x80\xed\x4a\x46\xfe\x57\x61\x81\x19\x06\x04\x80\x2f\x2b\x47\xb7\xfb\x52\x04\xdb\x65\x85\x0a\x16\x80\xba\x92\xa1\x4c\x15\xf4\x7a\x43\x99\x32\x96\x22\x84\xd7\xc9\x58\x8a\x20\xaf\x0c\x1a\xcb\x04\x00\x2b\xd9\x27\x17\x5f\x57\x76\x1a\xc9\x47\x67\x81\x01\xce\x4a\xf6\x90\xca\xef\x24\x7e\xc9\xf0\x44\x9b\x32\xec\xf1\x3b\x00\xd5\x4a\xa6\x0c\x7b\x16\x18\x88\xad\x64\x4a\xa6\xc7\x2f\x66\x18\xcf\xa6\xbc\xf9\xa2\x1a\x12\xdc\xae\xbc\x79\x7c\xc1\x86\x8a\x64\xca\x9b\xc7\x70\x34\x3c\xd1\xa6\x14\x79\xd6\xa7\xb1\x3b\x8c\x8c\xf0\x8a\x33\xc2\x36\x2f\x42\x49\xa9\x53\x8d\xba\x52\x59\xfb\xdc\x8e\xb2\x6f\x64\x5e\x56\x47\x57\x25\xc3\x65\x63\x28\xfb\x55\x15\x33\x0e\xcf\x44\x9d\xa9\x78\x63\x0d\x75\x06\x48\x92\x55\x2d\x1b\xf8\x08\x8d\x94\xc9\xaa\x65\x83\x81\x0b\x24\xc9\x2a\x8a\x39\xc8\xa4\x64\x6c\x84\x8a\x0e\x0e\x16\x29\x01\x34\x32\xc2\xfa\x09\xbc\x51\x02\x96\x63\x15\x15\x09\x74\x4e\x5a\x2c\x45\xf8\x40\xd3\x62\x29\x02\xd2\xb1\x86\x99\xb5\x20\xff\x03\x96\x63\x8d\x79\x07\x9d\x93\x16\xd5\x1c\x1a\x3a\xf8\x82\x69\x0f\xac\x8e\x35\xd4\x6d\x20\x3b\x69\xa1\x6e\xb7\xaf\x29\xfe\x0f\x85\x62\x21\x47\x17\x2b\xa5\xa1\x61\x83\x93\x49\xf0\x2f\x5b\x6b\x74\x8d\x95\x02\x1e\xc4\x60\x61\x4c\xc0\x42\xd2\xe2\xa4\x85\xa3\x34\x2d\x8c\xbd\x05\x49\x41\xa3\x90\xe3\x32\xfa\x6b\xe2\x38\xe0\x99\x1c\xaa\x8b\xbc\xdf\xc6\xbe\x07\x47\x92\x96\x4f\xae\x35\x2a\x91\x00\xeb\x48\x00\x2b\xac\xa1\xb9\x2e\x14\x4a\xf0\x15\xd6\x50\x3d\x81\x59\xa4\x45\xfa\x7d\xc3\x78\xde\xcc\xd5\x86\x9c\xa4\xe1\x06\xdc\xe8\x8e\x5b\xc5\xf5\x39\xfc\x41\x5b\xa4\xad\x92\xe7\x28\xa9\x9b\x09\xdc\x4c\x20\x94\xaa\x69\x33\x81\x9b\x53\xf1\x61\x06\x36\xa7\xe2\x26\x7f\xfe\xa1\xc4\xd1\x46\x96\x80\x9a\x30\xa0\xf5\x09\xf0\x44\xda\xcc\xea\x83\xc1\xb3\x99\x55\x30\x14\xf6\x30\x1d\x9b\x20\x1e\xa8\x09\x7b\x28\x63\x04\x78\x22\x01\x90\x30\x90\x11\x69\x63\x6e\x01\x97\xb0\x07\x7d\x14\xb8\x44\xda\x2c\x8a\x87\xd9\xdc\xcc\x3b\x70\x09\x7b\x98\x4d\x70\x12\x69\x93\xb8\xa9\x18\xe0\x6e\x7c\x3b\x19\xec\x0f\xb6\xf7\x26\x26\xb7\xd1\x2e\x1f\x8e\x8b\x8d\x28\xda\xac\xa5\x07\xdb\x1b\x60\x45\xda\xf8\x1d\x1e\xa7\x23\x4d\x1b\xbf\xc3\x46\xbb\x84\x4e\x36\x6d\xdc\xd4\xfb\xe1\x99\x18\x3c\x1b\xe7\xde\x46\x14\xa9\x28\xe8\xee\x3c\x13\x1b\xec\x99\xaa\x2b\x73\x68\xe4\x76\x84\xc1\xc6\xb9\xb7\x39\x7e\x1f\xac\xf4\xcd\xf1\xbb\x5d\x79\xb3\x07\x3d\x74\x13\x96\xda\xd0\x01\x3d\xb8\x01\x37\x7e\xe6\x2d\x16\x0c\x16\xd8\x46\xbf\xdb\x8b\xce\x6b\x81\x61\x83\x41\x21\x6e\x5d\x6b\x69\x73\x3b\x89\xe5\x9d\xa8\xfb\xde\x0c\x32\xbe\x8c\x8e\x6d\xb3\x11\x6f\x60\x13\xac\xa3\x65\x6c\x42\xb2\x1b\xa1\xd5\x31\xc8\x37\x42\x6b\x73\x7a\x77\x84\xc1\xe6\xf4\xde\xa4\x8b\x77\x0c\xf2\x7d\x98\x62\xf2\xbc\xbb\xd6\x27\xe4\x8f\x1b\xb7\x45\x57\xf1\x1e\xdc\x16\x1b\x8d\xb5\x13\xfb\xdb\xd8\x60\x1b\x99\xd7\x59\x9f\xd0\xa0\xa7\xc3\x96\x21\x01\x21\x1d\xce\xf9\x03\x4b\x4f\xaf\x14\xd3\xc1\x77\x7d\x70\x5b\xf4\xaa\x5a\x3c\x85\x46\xbe\x88\xf5\x79\x70\x68\x1f\x94\xd3\xce\xfa\x84\x53\x3d\x1d\x8e\xf4\x8e\xc2\x7b\x38\xd2\x4f\xe2\xed\xe8\xb6\x87\x20\xf3\xc9\x6a\xf4\xcf\x3c\x1c\xd4\x07\x45\xb2\x63\x7b\x1f\x87\x9f\xa4\x03\x69\x4e\x47\xf5\x38\x95\xce\x43\x9a\xd3\x31\x5f\x0e\xae\xba\x03\x69\x4e\xc7\x7c\x39\x8d\x2e\x41\xfa\xd0\x59\x4b\x87\x52\x7b\x87\x33\xb9\xa3\xc6\x1e\x5c\x0c\x07\x17\x43\xc7\xa6\x39\xb8\x18\x0e\x07\x75\x47\xf5\x38\x1c\xd4\x87\x8d\xd0\x11\x6b\x87\x40\xf0\xc1\x01\xd7\x89\xe8\x1d\x1c\x70\x87\x8d\xd0\x31\xc8\x0f\x67\xf2\x41\x63\xed\x9c\x36\x07\x8d\xf5\xa0\xb1\x76\x16\xed\x19\x7c\x3b\xb6\x57\xc7\x20\x3f\xd8\x5e\x07\xe3\x69\x60\xe8\x1c\x8c\xa7\x83\x9d\x34\x38\x82\x0e\x76\xd2\x41\xbb\x1c\xa8\xb1\x87\x35\x7f\x20\x53\x18\x94\x6c\x3b\xa8\x9c\x87\x8d\x30\x58\x4b\x87\x8d\x70\xa8\x13\x33\xb4\x96\x28\xfb\x7b\x38\xd2\x07\x62\x0d\xde\xfb\x74\xe0\x4d\x18\x2a\xe8\x44\x28\xf6\x1c\xb8\x42\x70\x14\x1e\x42\x33\x60\x75\x6c\x60\x90\x03\xd9\x49\x87\xba\x55\x43\x0b\x8c\xca\xc0\x07\xff\xdd\x50\x59\x28\xfc\x77\x87\x03\x65\x20\xeb\x0e\x07\xca\xe1\x40\x19\x5a\x60\x1c\x28\xb0\xee\xdb\x60\x81\x5d\x36\xc2\x85\xcf\x65\x20\x00\x2f\xd0\x9b\x4b\xdd\xb1\xe1\x59\x33\xe9\x02\xbd\xb9\x58\x54\xc3\xe1\x9b\xe9\x62\x51\x5d\x96\xf7\x40\x82\xc1\xe4\x9f\x2e\xcb\x7b\xa8\x6e\x12\xcb\xfb\xa2\x26\x0c\x96\xe2\x85\x0e\xf8\x62\x66\x0d\x02\x6d\x17\x33\xeb\xe2\xfe\x1b\x88\xb5\x8b\xfb\xef\x66\xf1\xa4\xb8\xf8\xbd\x9c\x32\x17\x07\xc7\xd8\x74\x89\x53\xe6\xe2\xe0\x18\x78\x0f\x2f\x0e\x8e\x5b\x78\xe6\xf9\xef\x90\xc7\x85\xec\xf7\x62\xd7\x0d\x96\x24\x95\x07\xd2\xad\x3c\xfb\x32\x30\x95\x67\xb3\xf3\x66\x50\x59\x2a\x9f\xff\x0b\xa1\xc0\xc4\xcc\xbe\x6c\xb2\x2b\x72\x12\x54\xe4\x8b\x23\xee\x42\x68\x37\x91\x64\x00\xaa\xd2\xe5\x10\x98\xf8\x73\x00\x54\xa5\x0b\x3b\xd3\x2c\x8c\xc1\x60\xb4\xf0\x3b\x4c\x3c\xd2\x97\x78\x0d\x28\x2b\x9b\x55\xb5\xb1\x7c\x99\x5f\xea\x99\x4f\x2c\xab\x3b\x79\x26\xce\x88\xc9\xea\xbb\x93\x7e\xa2\x0d\x4d\x3c\x3f\x17\x6d\xe8\x52\xee\x7b\x22\xc9\x2e\x44\xdc\x97\x5a\x84\x13\xd3\xfd\x1a\x8b\xc2\x78\x3b\xab\xef\x1a\xb7\x73\x2e\x4d\xd5\x0a\xe3\x5c\xba\xa8\x48\x13\xd3\xfd\xc2\xb9\x7d\xd1\x86\x27\xca\xd4\x65\xeb\x5c\x76\xc9\x34\xbe\x1d\x90\xcf\xc5\xd8\x9b\xaa\x38\x86\xb1\x77\x39\x2e\x26\xda\x30\xb8\xc6\x74\x59\xfb\x93\x3a\x20\x54\x79\xc8\x90\xac\xdb\xa4\xfc\x08\xe5\x1d\x72\x60\x99\x4f\x8a\x31\x85\x04\x68\x8a\x7a\x54\xd3\x2d\xea\x0c\x1a\x2c\x07\x38\x38\x4c\x45\xb8\x12\x28\x32\xc8\x88\xcc\x45\x51\x0e\x99\xdb\x59\xd1\x46\x95\x15\xd0\x60\x39\x40\x31\x64\x91\x2e\xb9\x7b\x3b\x07\x96\xb9\x45\x5e\x54\xe8\xa7\xaf\x61\xb3\xc4\x8b\x84\x0d\x63\x7d\x1a\x45\x95\x42\xa5\xf3\x10\x07\x59\xe6\x99\x90\x51\x87\x2a\xf6\x9b\x4b\xa3\xd1\x08\xfb\x4d\x51\x55\xb2\xeb\x8d\x70\x04\x59\xe5\x45\x30\x54\x83\x1b\x33\xab\x7c\x91\x50\x44\x28\x53\x46\x69\x26\x78\xe6\x33\x24\xf2\x66\x8e\x0e\xc8\x90\xc8\x67\x08\xdf\xcd\x1a\x5f\xe4\x2b\x39\x07\xfc\x0e\xd6\xb9\x7d\xd0\x4f\xfc\x0e\xd6\x75\x25\x83\x4c\x68\xc6\x06\x5d\x9a\x0c\x1d\x2a\xbc\x4d\xba\x34\x19\x3a\x4a\x2e\xda\xe4\x99\xc6\xd0\xc1\x1e\x66\x93\x67\x1a\xcf\x14\x75\x8f\x71\xbb\x31\x9e\x28\x53\x46\x99\x28\x38\xe1\x73\xc0\x6d\x61\x8b\xb7\x2f\xfa\x89\xdb\xc2\x16\xb7\x2f\x9e\xc9\xc1\x62\x5a\x60\x8b\x01\xe1\x60\xb1\xcd\xed\x9b\x2e\x51\xf8\xcf\x28\x3b\x13\x2e\xcf\x84\xb6\xc6\xae\x4a\xb8\x31\x74\xd0\xd6\x98\x56\xdd\xa5\x9f\xa2\xad\x09\x5e\x8b\x26\xfa\x12\xce\x11\x29\xbe\x58\x60\x14\x15\xc9\x54\x13\x31\xb8\x9e\x73\x74\xd1\x9e\x61\x9d\xb7\xe5\x10\xc6\x1c\xdd\x2b\x97\x23\xfc\x5d\x8b\x72\x5d\xd1\x03\x97\x39\x06\x51\x0c\x51\xc9\xcd\x1d\x1c\x39\xa2\x22\x01\xce\xca\xd1\x55\xa4\x1c\xa3\x78\x87\x2a\x8d\xbc\x08\xa6\xaf\xc5\x52\x04\x28\x98\x41\x08\xda\xa2\xde\x1d\x40\xc1\x0c\x42\xd0\x16\x4b\x31\x26\x9e\xc9\x36\x04\xb1\x95\x41\x0f\xe6\xc8\x19\xb2\x58\x9f\x31\x73\x3b\x06\xc4\xa2\xe4\x4e\x74\x09\x9d\x23\xbe\xb6\x45\xfd\x97\xe8\x3b\x20\x47\xf4\x26\x48\xa5\x73\x64\x23\x44\x54\xa4\x45\xc5\xa5\xc8\x9a\x87\x71\xdf\x16\x15\xe7\x22\x05\x17\x22\x22\x1d\x74\x55\x8e\x2e\xd2\x73\xc4\xd4\x58\x2c\xc5\x48\x6d\xe2\x88\xde\xb4\x58\x8a\x54\x64\xc9\x91\x12\xa4\x8b\xaa\x64\x11\xc0\x6d\xc4\xaa\x00\x72\x95\xe3\xa3\xdb\xc5\x4c\xc4\x67\x3e\x4c\x07\x65\xef\x80\x5c\xe5\xd8\xe9\x12\x7a\xd3\xda\xaa\xbd\x37\x69\x64\xe4\x11\x6b\xd1\x8f\x97\x1c\x89\x7b\xae\x4d\x97\xfc\x78\xc9\x71\xf2\xcc\x4d\x91\x3f\xe0\x94\x91\x1d\xb7\xa8\x66\x16\xd9\x71\x11\xe1\xbf\x58\x8a\xd1\xf8\x22\xf6\x11\x18\xee\x1c\xd9\x47\x11\x53\x78\x47\x3a\x6f\xbc\xdd\x11\x70\xb6\x23\x9d\x5f\x7c\x26\x9e\x94\x4d\x31\xbb\xb8\x19\x79\x54\xa4\x4d\xe9\xa3\x78\x58\x4b\x98\x05\xbb\xf0\xcc\xc3\x33\xf1\x7a\x6c\x2d\x9b\xc3\x28\x5d\xb1\x32\x71\xfb\x65\x77\xb0\x8f\xb6\x96\xcd\x65\x31\x70\x22\x6c\xd7\xc5\x32\xf5\x0c\x72\xe2\x44\xa0\xc2\x71\x4e\x9c\x08\x89\x7d\xb4\xa9\xaa\x94\xd8\x47\x89\xe5\xbd\xdb\x7f\x2a\x14\x39\x39\xde\x2c\xa7\x0f\xe3\x13\xcf\x06\x5f\x9c\xc4\xf8\xd4\x79\xb6\x38\xec\x13\x2f\xec\xd4\x3b\xe4\xb4\x49\x62\x7c\xa2\xcc\x5b\x72\x7b\x3e\x53\x5c\xc1\xf6\xa0\xde\x61\xa6\xbf\x1c\x2c\xe0\x9c\x32\x15\x10\x32\x95\x0c\x6c\xbb\x4e\x96\x93\x9b\xe7\x99\xc2\x04\xb6\x8d\x22\x88\x1c\x02\xd4\x27\xb0\xcd\xf2\x49\x7e\x24\xe4\x84\xc7\x6f\xb3\x7c\xa8\x56\x90\x13\xc6\x33\x90\xa6\x9c\x1e\x3a\xcf\x21\xb0\x0f\xe3\xca\x21\x40\x29\x02\xdb\x97\xb7\xb3\xf6\xd3\xc3\x10\x52\x2d\x2e\x3d\x8c\x12\xfc\x97\x9b\xd5\x97\x3c\x26\x93\xa9\x4f\x60\x87\x93\x96\xc2\x04\x99\x52\x04\x76\xa8\x26\x99\xba\x6e\x87\x06\x8a\xaa\x61\xa9\x33\xc8\x1c\x41\x87\x25\x99\x38\x82\x12\x45\x41\x01\x3f\xe5\x34\xe8\x12\xbc\x92\x64\x73\xe6\x64\x0c\x1d\x11\x93\x83\xd0\x4a\xc6\x28\xe1\xe5\x3e\x85\x7e\x2e\xfa\xb9\x78\xa6\xeb\x62\x39\x2d\x50\xb8\x9c\x0c\xb0\x81\xe7\xc4\xc9\x90\x38\x19\x8e\x16\x1a\x27\x43\xc2\xe4\x38\x5a\x68\x9b\x41\x86\xbf\xed\x34\x16\xc3\xe6\x99\x5b\xb4\x5a\x74\x69\xd3\x25\xea\xcb\x82\x5e\xca\xe9\xf0\x99\x78\x11\x4f\xe7\xdb\x0f\xcf\x84\x60\xf7\x68\xd5\xb1\x9f\x28\xae\x60\x47\x15\x38\x2f\x6b\x89\x5d\x72\xa8\xad\x96\xd9\x25\x19\x6d\xe8\x20\xde\x32\xeb\x33\xa3\xf4\x03\x69\xca\xd9\x57\x6b\xce\x38\xa1\x8e\x9b\x85\x39\xb3\x68\x33\x8b\xf6\xb0\x96\x32\x8b\x36\x53\x33\xf5\x50\x70\x2d\xa3\x37\x65\xf4\xa6\xe3\xaa\x7c\xa6\x98\x43\xce\xc4\x2a\x8f\x2b\xe6\x99\x02\x50\x99\xda\x0c\x76\x03\x6f\x57\x15\x0e\xd4\x99\x8b\x7c\xca\xbe\x84\x73\x66\x2d\x5d\x0a\x86\x66\x95\xbc\xc0\x28\xbd\xd4\x3e\xcd\x08\xd7\x8c\x70\xbd\x85\xce\x23\x5c\x33\x6b\xe9\x32\xef\x99\xb5\x94\x87\x98\xbe\xb8\x1d\x75\x26\x23\xde\x2e\xa5\xd9\x32\xe2\x2d\x03\xd6\xb8\x54\xf4\xcb\x2e\xc2\x32\x75\x22\xec\xb2\x37\x29\x10\x91\x0b\x36\xd8\xa5\x26\x5b\x71\x1b\x2c\x17\x4e\xef\x4b\x41\xb9\xe2\x9e\xbe\x5c\x08\x1d\xdf\xad\xdb\x7d\x36\x8b\x1f\xcd\x06\x9c\x27\x17\x77\x62\xe4\xc2\x41\x0d\x9c\x27\x17\x77\x62\xe4\x22\xee\xb2\x43\xd5\x52\x76\x31\x70\xed\x15\x32\x57\xfa\x98\xe5\xe2\x03\xb2\x02\x9f\x09\x78\x3b\x83\xda\x5e\x01\x4d\x90\xb2\x08\xb9\x88\x91\xac\x72\xfb\xe0\x99\xb0\xde\x84\x46\x3f\xd1\xef\xa8\x28\xb0\x02\x45\xdc\x0a\x3b\x8e\xc2\x02\x0b\x9c\x4b\xa6\xbe\x40\x06\x76\xbd\x02\x43\x07\xfa\x3a\x53\x43\x60\x05\x6a\x22\x52\x64\x3f\x83\xa2\x5e\x81\xd2\x73\x14\x0f\xc8\xa0\xa8\x57\xd0\x20\xb3\xb9\x28\x17\xb0\xbe\xf4\x42\x6f\xe4\x8b\x20\x8e\x09\x54\x87\xa4\x78\x40\xa6\x78\xc0\x0a\x9a\x0e\x76\x1c\x35\x04\x16\x88\x98\x0c\xfa\x3a\x03\xbb\x5e\x81\xe2\x76\xa0\xaf\x73\x81\xf8\x20\x68\x8e\xd8\x71\x40\xab\x57\xd8\xcc\x26\x3b\x8e\x3a\x01\x0b\xf0\x4b\x06\x68\x9d\xa9\x13\xb0\xc2\xe1\x33\x2f\x43\x07\xc7\x41\x60\x23\x54\xf6\x66\x0d\x30\xbc\xa1\x48\xc2\xfe\x9f\xc1\x5b\xaf\x88\xfc\x04\x6f\x9d\x41\x58\xaf\x88\xa5\x02\xd0\x3a\x57\xe8\x60\x22\xd5\x21\x81\x56\xe7\x1a\xc5\xc6\xc6\xed\xee\xed\xca\xa0\xa8\x57\xa4\x4e\x26\xec\xff\x19\x30\xf5\x8a\x58\x2a\xb0\xff\x67\xf8\xfe\x57\xa4\xcc\x30\xd0\xea\x0c\xb5\xff\x8a\x28\x92\x00\xad\x33\x08\xeb\x05\xca\x26\xd7\x44\x97\xe0\x36\x88\x2c\x45\x68\xff\x73\xa5\xe4\x6a\x44\x23\xa8\x99\x2e\xc1\x58\x10\xd1\x19\x2b\x07\x1f\xd4\xfe\x0b\x40\x4d\x86\xe1\x3f\x83\xb0\x5e\x00\x6a\x32\x40\xeb\x5c\xa9\x7e\x09\xa0\x26\xc3\xe9\x9f\x01\x53\xaf\xc8\xfa\xac\x95\x2f\x82\xb1\x20\x52\x0c\x16\x4e\xff\x0c\xc2\x7a\xc5\x87\xf1\x44\x0f\x85\xb0\x7f\x45\xea\x64\x82\xa9\xce\x15\x0a\xac\xd8\x55\x8d\x97\xe9\x80\x02\x2b\x7e\x19\x3a\xff\xa1\x50\x00\xb8\xce\x10\xf7\xaf\x48\x45\xc7\xea\x6e\xb9\x0c\xa8\x7a\x45\x94\x54\xf8\xfb\x33\xc4\xfd\x2b\xb2\x21\x2a\xc7\x2f\xb8\xeb\x15\x29\x01\x09\xee\x3a\x83\xb4\x5e\x11\x7b\xe9\xff\x4f\xd8\x1d\xec\xde\x8e\xdb\x76\x1c\xdf\xf7\x29\xe6\x0d\x7a\x8e\x49\xc9\xf6\xd2\xa6\xec\x5d\xfb\x0e\xc1\xe4\x16\xc8\x22\x93\xc1\x34\x79\xff\x62\xf4\xd1\x00\x45\x36\xb3\xb8\x9b\x8b\xbf\x8e\x65\x9b\xa2\x48\xfa\xab\x1f\x9b\xd0\x93\x0e\x7f\x7d\x2d\x1d\xc0\x75\x90\xdc\xaf\xaf\xc8\x15\x70\x1d\x94\xf7\xeb\x2b\x48\x25\xc0\x1f\xfa\xcd\xd5\x57\x6a\x44\x80\x3f\xa8\xeb\x17\xd6\x27\xa8\xeb\x07\x75\xfd\x82\xf5\x44\x3b\xbd\x2b\x1a\x07\x5f\xdb\x45\xbb\x0c\xbf\xdc\x91\xed\x42\xd7\xba\x40\x6f\xd7\xf7\x31\xfc\x62\x3e\xe4\x0c\xbe\x96\x0e\xc9\xfd\x68\x5a\x78\x7e\xe7\x99\xc2\xd0\xe6\x2e\x1a\x91\x02\xac\x4f\x90\xdc\x0f\xf4\x76\x6d\x6b\xe9\x48\x0b\x5b\x51\x8f\x5b\x4b\xc7\x3e\x4f\x4f\xbf\x36\x39\x18\x59\xfd\x68\xda\x3e\xc3\x7a\x82\xba\x7e\x50\xd7\xaf\x4d\x92\xdf\xb8\x22\x80\x77\x6d\x6b\xe9\x3c\x86\xbf\x74\xe6\x64\x56\xed\xf5\x3c\x67\x22\x58\x9b\x2d\x88\xbe\x7d\xb4\x59\xf1\xab\x8d\x6f\xd6\x8e\x2f\x88\xde\xd7\x26\x75\x07\x78\x07\xc0\xbb\x36\x81\x2f\xc0\x3b\xb0\xdc\x05\x00\x0a\xfa\xf6\x81\xe5\x2e\x07\xa4\x82\x94\x7d\x90\xb2\x2f\x67\xa1\x02\xe0\x1d\xfd\x0f\xdd\x3e\xc3\x65\x80\x90\xee\xda\x2c\x08\xaa\xf5\xd1\x97\x1a\x9f\x28\x18\xcb\x1d\x04\xea\x0b\xf8\x13\x78\xed\xa0\x45\x5f\x9b\xcc\x1f\xaf\x1d\x7d\x09\xef\xf1\xf7\x5d\x98\x00\xd4\xae\x4d\x8b\xd9\x1e\x6b\xb8\xab\xb3\xf9\x3e\x5d\x43\x60\xb9\x6b\xbb\xd6\xf0\x69\x60\x9d\x0c\xd4\xa6\x35\x77\x9f\xc5\x96\x20\x1b\x5f\x9b\x3e\xca\xd4\xe3\x83\x6c\x7c\x21\x77\xa2\x4b\xf6\x3a\x79\xa5\x8d\x29\x02\xc3\x03\xfc\x5d\x1b\x53\xec\xbb\x07\x62\x19\x6e\xfa\x67\x77\x2b\x8e\x34\x7c\x6d\x32\x2b\xd2\xf0\xd1\xc9\xd3\x05\xab\xa3\x02\x1f\x54\xe0\x2b\x84\x33\x54\xe0\x83\xe0\x7b\x85\x80\x17\x2d\x1e\x30\xf1\x82\xf3\x04\x5a\x3c\x60\xe2\x15\xca\x01\x54\xe0\xa3\x13\x25\xc1\xf8\x04\x5a\x3c\x60\xe2\x15\xba\xc4\xf7\xd3\xf3\xd4\x03\x37\xd4\x08\x88\xb3\x07\xed\xf3\x0a\xa1\x31\x4e\x3b\x00\xda\x15\x7d\x35\xce\xf6\xe8\x48\x0c\x85\x32\x10\x78\x3b\xfa\xdc\x31\x2b\xa6\x90\x5d\x50\x42\x0f\x4a\xe8\x15\xbb\xe1\xf6\x4f\x28\x77\xc5\x6a\xfe\xfd\x98\x12\xfd\xcb\x10\xc6\x92\x40\x0f\x7c\x77\x85\x24\x9f\x12\x7a\xa0\xbd\x0b\x22\x14\x68\xef\x20\x3b\x5e\x21\x79\xda\xa7\x61\xc6\xbe\xa4\x19\x6b\xf5\xf9\xbe\xfc\xa7\xc9\xab\x09\xd2\x06\x0f\xbc\x75\x85\x60\x8a\x44\x78\xe0\xad\x2b\x74\x0a\xa6\x0d\x1e\xb0\xeb\x0a\x29\xd1\xce\xc0\xf6\xa5\xc2\xa8\x8b\xb0\x8e\x92\x41\x14\xbc\x42\xef\x77\xda\xe0\x01\xbb\xae\x90\x12\xed\x9a\xc9\xed\x4b\x5b\xd1\x46\x8d\xb7\x0e\xc0\x74\x61\x7c\x02\x30\x1d\x68\xe8\x4a\x69\x36\x41\xed\xd8\x27\xf3\x56\x29\xcd\xde\x75\x83\x03\x4c\x57\x86\xe1\xac\x6e\x67\x60\x70\x9e\xd8\x19\xd8\xce\xa5\x67\x98\x3c\x97\xbe\x53\x93\x49\x7e\x69\x9f\x05\xe2\x00\x4c\x17\x72\x27\x76\x85\x03\xdc\x74\x65\x5f\x7f\xb9\x86\x97\xff\x34\x25\x91\x20\xb5\xec\x4a\x89\xce\x5e\x5e\x1c\x09\xc1\x64\x21\x7b\x19\xce\xea\x80\x3f\x41\xe7\x3a\x76\x72\x55\x29\x66\xdc\x39\x55\x8c\x73\xe5\x7a\xef\x3a\xb7\x51\x83\xae\x94\x0a\xef\xaf\x87\xcc\x6c\xf2\xd6\x30\x9d\xd9\x90\x5e\xae\xbc\xb5\x3c\xe7\xac\x8e\xcd\x5f\x7a\xc5\x87\xca\xd4\x41\x80\x09\x3b\x13\x87\x44\x87\x48\x73\xe5\xea\x91\x3e\x91\x9d\x40\x3c\x57\xbe\xfa\xb4\xb3\xba\x83\x2d\x35\x39\x0d\xb8\x39\x48\x2f\x57\xfb\x98\x12\x5b\xc2\x38\x57\xf3\xde\xa1\xce\x71\x68\x80\xde\xbe\x7f\xca\x50\x04\x41\xe6\x00\x39\x17\x2e\x27\x40\xce\x01\x72\xae\x66\xdd\x83\x9c\x03\xe4\x5c\xda\x31\x06\xc8\x39\x40\xce\xa5\x1d\x63\xe0\x99\x03\xac\x5c\x8d\xa5\x1c\xb2\x0b\xe8\x72\xe1\x72\x82\x4e\x72\x1c\x22\x97\x26\x79\x26\x97\x1c\x87\x20\xa5\xd9\xac\x0e\x35\x82\x83\xcb\x84\xe0\xc4\xc1\x65\x1e\x4b\xe6\x53\xf2\x7c\xe8\x52\xba\x34\x94\x1b\x43\x83\x43\xc7\xb1\xc4\x3b\xd9\x14\xf2\x39\xa8\x26\x57\xdb\x57\x87\x7d\xc3\xe9\x38\x35\x36\x75\xc8\xeb\x96\x86\x72\xe3\x75\x30\xd2\x81\x91\xae\xa6\xc3\x34\x38\x3a\x0e\xe1\x4c\x93\xc6\xc0\xa1\x83\x40\x72\x35\x3b\xd8\x71\xb9\x77\x31\x4e\x63\x92\x74\x92\x83\xae\x40\xb5\xcb\xd5\x2f\xb7\x79\xbb\x23\x51\x1b\x49\xe4\xa0\x2b\x50\xf8\xa1\x20\x82\x1c\x4b\xef\xb8\x2d\x3b\x55\xa1\x38\xf4\xa5\x47\x05\x05\xbd\xe3\xa0\x70\x5c\x4d\xd8\x75\x94\xdf\x5c\xea\x9b\xc2\x2e\x30\x76\x1c\xfc\x7d\x93\x9c\x1c\xc3\x5f\x8a\x5c\x9a\xe2\x0e\x18\x3b\x0e\x2b\x4f\x23\xe1\x38\xac\x3c\x62\xc6\xd5\x97\x45\x3f\xa6\x44\x3d\xae\xf3\x64\x08\xed\x38\x96\xd0\xe6\x32\xf3\xc7\x8b\xe3\xda\xfb\x32\x73\xc5\x3d\x62\xc6\xd5\x97\xd1\x2a\xee\x01\xb5\x0b\x69\x14\x78\xed\x58\xd2\xc6\x7d\x73\x21\x4b\x7c\x49\x1b\x77\x46\x0b\xcd\x8e\xa5\x62\xdc\x27\xe7\x12\xa7\xdc\xfb\x5c\x42\x9b\x6a\x04\xa4\x8d\x03\xb6\x5d\x5d\x8d\x00\xb6\x1d\xe7\xd2\xd4\xe4\x08\x69\x1a\xc7\xf9\x35\x25\x79\xc8\x49\x73\xe0\x14\x22\x75\xb5\xeb\x53\xa1\x10\xd2\x5d\x5d\x2c\x46\xa9\x38\x4e\xf9\x52\xe7\x1d\x29\x15\xc7\xc9\xeb\xf4\xdd\x94\x78\x1d\x12\xc5\xd5\x79\x47\x4a\xc5\xb1\xb4\x89\xe9\x65\xc4\x39\xb3\xa7\x38\x6d\x6b\x9d\x79\x9f\x33\x36\x0a\xd0\x78\xf5\xc3\x94\x78\x9d\x25\x2e\xdc\x15\x1f\x21\xe4\x71\xca\x97\x3a\x4b\xa6\x38\x1c\xa7\x7c\xa9\xb3\x64\xaa\xc2\x81\x24\xaf\xce\x68\x91\xe4\x71\x36\x0f\xe4\x36\x79\x47\xd6\xcf\xb6\x84\x4b\x3d\xcf\xe9\x7b\xe2\x94\x44\xf5\xa9\x38\x1b\x60\xf3\x38\x49\x5d\x76\x09\x39\x1d\xe1\x58\x3a\xc2\x5d\x7d\xe4\xec\x9e\x27\xa9\xcb\x2e\xf7\xc6\x93\xc7\xa9\xe1\x3e\x0e\x2b\x4e\x65\x4a\x04\x79\x75\xf1\x1d\xc5\xe1\x38\x79\x9b\xae\x3e\x82\x20\x0f\xda\xc2\xd5\xf9\x7b\x3c\x79\x9c\xf4\x2f\xbb\x84\x1c\x4f\x1e\x64\x84\x0b\xdb\x15\xa7\xe4\x89\x8c\x70\xc1\xb8\xe2\x54\x34\xa1\x18\x5c\x5d\xfe\x71\x4a\x9e\x96\x7e\x30\x8c\x2b\xe8\x07\x07\x0e\xbd\x76\x4b\x06\x8e\x1e\x27\x6f\xb3\x5b\x32\xc8\xf3\x58\x02\xc0\xbb\xfc\x03\x79\x1e\xa7\xe4\x69\xdf\xdc\x91\xe4\x69\xa9\x02\xef\xc2\x04\x00\x7a\x2c\x01\xe0\xdd\x92\xa1\xfc\x1b\x27\x6f\xa3\x23\x4f\x9c\xb7\x3b\x92\x51\xed\xfc\xfc\x79\xaf\xe1\xa6\x24\x4b\x3f\xd5\x71\x4e\x0a\x6f\xfb\x5a\x32\x3e\x9f\x9d\xd4\xd5\x77\x09\x39\x39\xe0\x38\x8b\x70\xa9\x84\x9c\x2a\x70\x9c\x92\xa7\x7d\xad\x0e\xc9\x13\x1d\xe0\x42\x81\xc5\x39\xcc\x93\x80\xe5\xde\xad\xe2\xe1\xc5\xf1\x4b\xd0\xb0\xa0\xfc\x1b\x24\x7f\x6b\x97\xa5\x9f\xfc\x12\xc9\xdf\xda\xa7\x0c\x54\x50\xfe\x8d\x53\x1d\x67\x57\x9a\x27\x00\x1c\x4b\x00\x78\xe7\xe7\x09\x00\xc7\xd2\xfa\xdd\x7d\x42\x22\xf2\x1b\xa7\xd0\x63\x9f\xa7\x11\x82\xd6\x6f\x2c\xad\x5f\x14\x58\x9c\xaf\xdb\xe4\x97\x76\x39\xf7\x25\xf4\xb8\xf8\xa5\xdd\xea\xc0\xd9\x07\x88\xbe\x76\xe5\x2a\x5a\xbf\x01\xa9\x2f\x68\x58\x10\xf9\x0d\x10\x7d\xed\x16\x02\x59\xdf\x58\x0a\xbe\x3b\x3f\x0f\xb0\x8f\x25\xd6\xbb\x5b\x08\x58\xfa\xf8\x43\xac\xf7\xf9\xf3\x80\xe2\x9a\x2e\x2c\x08\xfa\xd6\x2e\xf7\xa6\xeb\x1b\x7f\x48\xf1\x5a\x25\x97\x60\x9a\x22\x6f\xc1\xce\xe2\xe2\x8a\x2e\x62\x93\x87\x34\xfb\x52\xa5\xb9\x04\x40\xc7\x94\x9c\x08\xa2\xbd\x71\xa5\xe1\xdf\xdd\x7f\xae\xe1\xaf\xff\x74\x13\x4a\x37\xc8\xfc\x3a\xa4\xd9\x97\xd2\xcd\xc5\x15\x1d\x6c\x1f\x99\x1f\xb0\xfb\x3a\x54\xa8\x2e\xa5\x1b\xd8\x7d\x1d\xbe\x6a\xd2\xe0\x8d\x4b\xe0\x73\xa8\x50\x91\xe2\x8d\x25\xb0\x8b\x45\x8b\x8b\xd7\xb9\x76\x77\xe4\x9b\xd5\x35\xc3\xa0\xc0\xf0\xd7\xa1\x6c\x85\xe1\x0f\x80\x7e\x1d\x52\x77\x2a\xb8\x01\xd7\x2f\x30\x59\xc0\xf5\x03\xae\x5f\xc7\xbe\xfe\xd2\xd5\x95\x57\x8e\xdd\x53\x52\x49\xb9\x48\x48\x1e\x82\x94\xeb\xf2\x9b\x97\xc9\xf3\xf7\xd7\x65\xf8\xe5\xd1\x89\x9b\x09\xde\x06\x51\xdb\x3a\x94\x96\x68\xdb\xc6\xd2\xa8\xc5\xa2\xc5\xa5\x00\x8b\xda\xaf\x43\x6d\x88\x46\x6d\x5c\x16\xee\xa1\x36\x44\xa3\x36\xa0\xfc\x75\xa8\x0d\xd1\xa8\x8d\xa5\x3c\x0b\x3b\x8b\xcb\x1a\x5d\x22\xb3\x87\x1c\x8c\xc8\x6c\x5c\xa4\x19\x11\x66\xe1\x40\x40\x5c\xef\xfa\x4f\x17\x7a\xd7\x7f\xfa\x4d\x99\xd5\x65\xf3\x77\x2e\xa0\xc0\x64\xe1\x5c\x40\x10\x8b\xad\x53\xee\xed\x94\x40\x2c\x95\xd8\x73\xca\x43\x84\x73\x01\xe1\x08\x40\x9d\x2a\x3e\x8e\x00\x04\xb0\xbf\x60\x67\x01\xec\x8f\x5b\xce\x70\x8a\x97\x6f\xbb\xf7\xad\xee\x70\xca\xac\xee\xb9\xc5\xc6\xcd\xbc\x71\x63\x71\x8b\xef\x61\xf7\x75\xb6\xf5\x97\x86\x8b\xef\x4f\x2e\x93\x88\x6a\xdc\x2c\xf9\x84\x60\xdc\x6d\xfd\x65\xf9\x4f\x57\xb7\xa9\xde\x94\xa6\x4f\x25\x9b\xbb\x9b\x3c\xd9\xd4\x93\x2d\x81\xf7\x63\xc9\xa6\xe2\xc6\xe2\xd6\x78\xfc\xde\x09\x16\x2b\xd9\x80\xf7\x03\xae\x5f\x5a\x69\x05\x5c\x3f\x6e\xfb\xe7\xa9\x8e\x83\xd3\x8f\xa5\x66\x7a\x2a\xd9\xdc\x4c\xf1\xbe\xfc\x26\x4f\x46\xe2\x34\x96\xc4\xe9\xc9\x6c\x6e\x3b\xd8\x6d\xb3\x3a\x67\xf3\xc2\xa0\x92\x15\x37\xa3\x3d\x87\x77\x24\xff\x5c\x6a\xa6\x27\x4f\x46\xc6\x34\xee\x25\xd6\xcc\x42\xa8\x99\xc6\x12\x2e\x3d\xa7\xa8\x57\xdc\x76\xb0\xdb\x47\x87\x53\x0a\x47\xa3\x34\x96\x46\xe9\x69\xf7\xbe\x51\x21\xb7\xa6\x21\xa7\x3a\xce\x6d\x5b\x5b\x1a\xa5\xd7\xb2\xa5\x59\x21\x8c\x25\x47\x4a\x39\x2d\xee\x61\x4a\xd3\xf4\xeb\xf2\x39\xd2\x61\x81\x58\xca\xa3\xd7\xb2\x25\xe6\x8d\xe1\xaf\x4b\x42\x86\xe1\x8f\x52\xbf\xbb\x04\xa7\xc5\x3e\x89\x85\xd6\xc5\xb1\xd0\x0c\x0d\x62\xa1\x75\xf9\x18\x4e\x33\x34\x48\x80\xd6\xc5\xc0\x4a\x85\xbf\xec\x0c\x97\x34\x8b\xe8\x67\xe0\xfb\xeb\xb2\xd3\x96\xaa\x5c\x11\x15\xbe\x24\x4f\x74\x3a\x03\xca\x5f\x97\x3c\xa9\x18\x2d\xfd\xcb\xba\xc4\x8c\xf4\x2f\x83\xfe\x65\xc1\xb8\xa2\xb8\x4a\x32\x98\x75\x29\xc4\x50\xc3\x8c\x52\x41\xc3\x76\x05\xe1\xcb\x20\x75\x59\x17\xa0\xa6\x18\x18\x71\xcb\x5a\x18\x17\x8d\xcb\xa0\x4e\x59\x97\x52\x1d\x91\xca\x28\xc1\xd4\x65\x3f\x2a\xfe\xb3\xa8\x81\x5f\xb2\xf4\x9a\xe6\x16\xce\x03\xd4\x2d\xec\x72\x1e\x20\x4a\x5d\xec\x96\x94\x14\x03\x73\x48\xa0\x6e\x6f\xd3\x21\x81\x28\xd1\xd0\x02\xbe\xe8\x4a\x86\x43\x02\x75\x8b\xc5\x1c\x12\x08\x6a\x8f\x75\xaf\xb7\xa9\x04\x56\x1c\xe0\x22\xb6\x8a\x03\xa4\xfd\x58\x37\xde\xa1\xe4\x49\x64\x1e\x6b\x61\x5c\x25\x1e\xa1\xf6\x58\xb7\x4c\x9a\xe8\x63\x38\x8d\x50\xb7\xfc\xc3\x69\x84\x28\x06\x76\xcb\xa4\x1d\x3c\x08\xe2\x8d\x75\x0b\xa6\x06\x5b\x72\x80\xa0\x6e\xa9\x86\x73\x04\x41\x29\xb1\x6e\x19\xc0\xb0\x41\x0f\x12\xf6\xb7\xf2\x0a\x55\xc3\x18\x8a\xa4\xbf\xaf\x80\x3f\x0b\x28\x86\x1a\xc1\xd0\x12\xe4\xb6\x70\x71\xfa\x31\xbc\xc0\x5b\x2c\x3e\xbc\xc0\x21\x21\x2f\x8b\x6c\xa8\x61\x0e\xbb\x62\x79\x57\x98\xfa\x18\xbc\x4e\x79\x57\x83\xd7\x19\xe2\x66\x1a\x56\x31\x78\x9d\xc1\x28\x6a\x36\x20\x8a\xc1\x28\xc6\xe5\x37\x2d\xc7\x31\x7d\x50\x0c\x05\xae\x92\x55\x0e\x0e\x66\x08\x91\x0b\x87\x37\x38\x98\xe1\xa3\xc3\x22\xa2\x86\x8f\x0e\xc0\xfe\x2a\x09\x24\xb0\x3f\x68\x39\x56\x79\xd5\xa3\x3c\x57\x59\x7a\x79\xab\x83\x83\x19\x3e\x3a\x94\x10\x19\xbc\x1f\x43\x96\x5e\x16\xee\x18\x26\xef\xab\x66\xed\xeb\x2f\x0d\xf7\xfe\x4b\x88\xfc\xf8\x1c\xfd\xd8\x15\x0b\x08\xf0\xd8\x15\x1f\x9f\x12\xca\xab\x7e\x7c\x4a\x78\xc8\xa3\x97\xb2\xc5\x23\x1e\x45\xd1\x57\x89\x71\x51\xf4\xf1\xf0\x3a\x8b\x88\xc2\xd4\xc7\x23\x48\x2d\x96\xf2\x08\x52\x9f\xaf\x29\x29\xc4\x3d\x10\xb1\x47\x0f\x9f\x12\xe3\x62\xea\xe3\xd1\xc3\xa7\xc4\xb8\x0f\xe2\x00\x4c\x5f\x25\xd9\x7b\x94\xd7\x9e\x25\x65\xce\x96\x9e\x74\x9b\x4b\xca\x9c\x33\x78\x64\xbf\xb0\xfb\x2a\x29\xdc\xd3\xd6\x7f\xce\xdf\x1c\x22\x56\x10\x7e\x3c\x2a\x68\x8b\x88\x82\xe4\xc7\x33\x6b\x66\x35\x24\x66\x90\xfc\x78\xb4\x6f\x58\x98\xd4\x23\x66\x7c\xa6\x3f\xac\xc1\xea\x20\xf9\xf1\x88\x19\x17\x26\x05\xc9\x8f\xc7\xf6\x3b\x24\x66\x90\xfc\x80\xdd\xd7\x62\xa7\x1e\x8e\xf0\xb1\xd3\x0e\xdf\x54\x1f\x3b\xed\xa3\x3d\xd7\x90\x59\x3d\x73\x8b\x8d\x47\x24\x38\x98\xcd\x23\x12\x7c\x74\x40\x58\xf0\xd3\x63\x53\x7d\xec\x9f\x43\x1c\xfa\x30\xef\x47\x55\x76\x48\xa2\x1e\x55\x59\x30\x7d\x0d\xd5\xf8\x47\x24\x08\xad\xaf\x85\x32\x41\xeb\xe3\x91\xc2\x69\x73\x17\xcf\x58\xc3\xcb\x7f\x9a\x27\xfb\x44\xd1\xd7\x50\x4d\x40\xd1\x07\x1a\xbe\x16\xdf\x04\x8a\x8f\xc7\xf7\x2f\x92\x4d\x81\x78\x8f\x57\xdf\xaa\xa1\x46\x80\x7f\x8f\x97\xd5\x0d\x66\xf3\xb2\xba\x57\x75\x66\x48\x5f\x5e\xd5\x99\xd7\x27\xee\xc1\x42\xde\x69\x98\x01\x83\xaf\xc5\x37\xe1\xdf\xe3\xe5\x1d\x87\xe8\xf2\xe5\x1d\x5f\xfb\xe7\x23\xa7\x79\xed\x9f\xef\x84\x5f\xea\xb1\xb1\xbc\xbe\x6a\xbd\x44\xf9\x1f\x66\x03\x83\x8f\xd7\x07\xac\x45\x2d\x81\xe2\xe3\x15\x48\x3e\x92\x7c\x18\x7c\xc0\xe0\xeb\xb1\xb1\xc0\xe0\x03\x06\x5f\x0f\x5b\x42\xba\x07\xd2\xbd\x1e\xb6\xf4\x4a\x89\x5e\x9e\xf6\x99\xe2\x63\xf1\xfa\x80\xf5\x8a\xef\x1e\xde\xe6\x15\xdf\x51\x10\xad\x87\x2d\x2d\x21\xd1\xd7\x47\x87\xc5\x37\x91\x0e\x8d\xd7\x07\xac\xc7\xa7\xc3\xd7\x07\xac\x57\xd3\xa5\x85\x32\xbd\x4a\xb4\xd0\xf8\x7a\xd8\x12\x42\x3e\x5e\xf5\x91\x47\x1c\x0a\x86\x0f\xb2\xa2\xf5\x88\x43\xc1\xf0\x81\x82\xaf\x85\x32\x81\xe1\xe3\xd5\x35\xe9\x91\xd3\x80\xe1\xe3\xe5\xe7\x1f\x56\xf7\xb2\xf9\xf7\x0f\xad\x7c\x53\x12\x5d\xbe\x7c\xf2\xc3\x83\xbd\x7c\xf2\xab\x70\xf0\x88\x58\xa1\xea\xf1\xb2\xcf\x45\x2d\xbd\xec\xf3\x55\x4d\x78\x96\x2d\x3d\xee\x5d\xe1\x60\xa1\x4c\x68\xf6\x20\xc1\x5b\x8f\xe8\xf2\x7d\x0d\x07\x80\x2c\xbe\xe9\x05\x80\xbc\xaa\x9c\xef\xb2\x25\x55\x4e\xa4\x7b\x51\x65\xca\xcf\x74\xd4\x49\x36\xb5\xde\xf9\x41\x30\xc9\xa6\x26\xa1\xd4\x7a\x67\xe5\x34\xe9\xa5\xe6\x47\x78\xf8\xce\xfc\x38\x3f\x33\x3c\x4c\xea\xa9\xf5\x4e\xb3\xc9\xcf\x0c\x0f\xf3\x23\x3c\x7c\x67\x7e\x9c\x9f\x19\x1e\x26\xf9\xd3\x7a\xc3\xd5\xe7\x81\x8e\x84\xbf\x17\x12\x2a\xe1\xef\x09\x7f\xaf\xb7\xad\xbf\x34\x9c\xfb\x7d\x9b\x29\x4d\x13\xce\x8f\x4e\x12\xef\xfc\x9e\x98\x9f\x34\x4f\x19\xff\xbb\xbb\xfa\xcc\xf8\x13\x13\x5f\xbf\x5b\xeb\x9f\x04\x14\xf9\x99\x9f\x3c\xf2\xa3\x32\xf9\xee\x66\xd1\xcc\x97\x17\x27\xee\x94\x14\x56\x13\x1b\x5f\xef\xe1\x26\x66\x39\x20\x11\xef\xf5\x1e\xe6\xbb\x9b\xaf\xe6\x11\xef\x65\x6a\xbb\xe1\x6a\x83\xef\xe5\x42\x87\xd7\xe2\x53\x02\xf0\x2b\xf1\xef\x89\x5c\xaf\xb7\x3c\xec\xdb\x3c\xa5\x31\x20\xad\xfc\xdc\x86\x8b\x32\xde\x67\xfd\xe5\x1a\xee\xb9\x3e\x2e\x74\x7b\x81\xca\xfe\xef\x6b\xf2\xd3\x53\x27\x72\xbd\xde\xd7\xe4\xcb\xbd\xcf\x7c\x7e\xd0\x93\xcd\xcf\xcc\xe7\xf3\x33\xbd\xf1\x20\xc4\x94\x9f\xe1\xfd\x4f\xdf\x3c\x3e\x5f\x53\x1a\x5e\xe0\x0c\x36\xc7\xe7\xeb\xea\xaf\xc9\xbf\x86\x4f\x92\x3c\x51\xed\xf9\xa1\x30\xfe\x09\x53\x7a\x99\xe4\xac\x88\x8d\xcf\x32\x9f\xd7\xa3\x9b\x16\x3d\xb0\x68\xf9\x9d\x5e\x3c\x11\xef\xe3\x33\xcb\x2b\x09\x6e\xcf\xef\xc7\xe4\x67\x88\x9c\xe0\xf6\x04\xb7\x8f\x4f\x5b\x7f\x39\x2d\x05\xce\x3e\x3e\x33\xe1\x49\x54\x7b\x7e\xa7\x61\x0f\x28\x5b\x7e\xe7\x96\x90\x78\xf4\x81\x5a\x4b\x58\x7a\xe2\xd1\xc7\x67\x7a\xb2\xfc\x6e\xae\xbe\x19\xbe\xaf\xbf\x5c\xc3\x1f\xff\xe9\x42\xb3\x60\x9f\xdf\xe9\xf6\x07\x19\xa8\xfc\xce\x12\x7d\x7e\xe9\x86\x7f\x26\x19\x91\xdf\x19\x65\x24\xb8\x7d\x40\xd9\x12\xdc\x9e\x70\xf6\xf1\x61\x4b\xa8\xf6\xc4\xb1\x8f\xcf\xe5\x29\xb1\x4f\xe4\xfa\xf8\xdc\x1e\x48\x37\x25\xba\xe1\xf8\xb6\x04\xb0\xe7\x57\x63\x82\x0f\xab\xfb\xce\x40\x24\xbf\x7a\x10\xe0\xdb\xf2\xbb\x9b\xd2\x6e\xf8\x30\xa5\xdd\xf0\xdd\x8b\x1b\xee\x88\xcd\x23\xd7\x07\x71\xa7\xfc\xee\xee\xfd\x70\x47\x8c\x16\xc7\x9e\x20\xf5\xf1\x79\x4d\xe9\x70\xf5\xcb\x3b\x7a\xdd\xe6\xe5\x1d\xcd\x14\x7c\x7c\x3f\x2e\x54\x5e\xc7\x34\xef\x01\x26\xcb\x2f\xf3\xfe\x4e\xf3\x1e\xdf\x70\xa1\xf2\x94\x66\x42\x3e\xbe\x53\x9e\x30\xbf\x65\x4a\x64\xfc\xbf\xe9\x8e\x86\xe1\x6c\x1e\x4c\x96\x5f\x36\xff\x9d\x9f\x95\xc7\x77\xd9\xd2\x70\xef\xb3\x40\x35\xbe\xcb\x96\x1e\x53\x22\xca\xff\xed\xa6\xf4\xb8\xfa\xe4\xd8\xc7\xb7\xbb\xa3\xc7\x53\x9a\x7e\x7b\x7c\xbb\x17\xf7\x32\x5a\x36\x4f\x9d\x29\xd1\xe9\x89\x4e\x1f\x5f\x16\x82\x4e\x4f\x74\xfa\xf8\xce\x34\x3b\xd1\xe9\x89\x4e\x1f\xdf\x19\x76\x25\x00\x3d\x01\xe8\x03\x1a\x96\x00\xf4\x84\x9c\x8f\xef\x65\xf8\x3c\x8a\x91\x90\xf3\x41\x9d\x29\xa9\x1f\xe7\xb6\x19\x3e\xa3\xf5\xdc\x58\x32\x00\x7d\x7c\x6f\xf3\x64\xc9\x1b\xad\xfc\xef\x4c\xdd\x73\x9b\x31\x47\x22\xc8\x07\x8c\x2b\x11\xe4\xb9\xe9\x91\xf1\x7d\x5d\x7d\x5a\x6b\x6e\xbb\x3b\xf2\xde\x11\xe4\x09\x16\x1f\xdb\x8c\xac\x13\x2c\x9e\x9b\xe6\x11\xdb\xd7\x85\x4e\xc3\x67\x02\x38\x36\xde\x06\xd8\x9d\xdb\x69\x78\xac\xbf\x34\x7c\x06\xc3\x03\x5d\x95\xdb\xe5\xd1\xcd\x24\x6f\x6c\xe9\x29\xcd\x24\x2f\x91\xe0\x03\x72\x95\x80\xf0\xdc\x58\x1d\x25\xa5\xdc\x58\x1d\x16\x7b\x6c\xdd\x6f\x3e\x5e\xdc\xe4\x5c\xc6\xb6\x5e\xdc\xe3\x29\xe9\xe5\xb0\xad\x17\xf7\x18\xce\x42\xb6\xf5\xe2\x58\xc8\x36\xcf\x36\x0c\x12\x48\xb9\x3d\x9e\xfc\x6b\xf8\xe9\x75\xbc\x86\x4f\xdf\x3a\xb6\xd3\x94\xa6\x8b\xcd\x8d\x81\x6d\x97\x7b\x67\x60\xc0\xee\xb1\x79\xef\xc0\xee\x0c\x06\xb6\xcd\xc8\x3a\x83\x81\xc5\x34\xa9\x41\x2c\x29\x63\x26\x79\x49\xb0\x7f\x6c\xf3\xe3\x5d\xd2\xed\xcf\xe0\x69\x31\x53\x19\x3c\x6d\xe8\x4a\xb3\xb1\x90\xe0\x69\xe3\xeb\x37\x2b\xfc\xe7\xee\x3f\xdd\xe6\xec\x3a\x98\x31\x23\xeb\x0c\x0d\x1e\xb6\x61\x9e\x9b\x29\x71\xbf\x1b\x5b\x0a\xee\x17\x5d\x3e\xb6\xe1\x42\x9b\x29\x85\x0b\xcd\x58\x2c\x23\x4c\x3e\x3c\x25\xde\x26\x04\x29\xe8\xf2\xb1\x31\xc5\x98\xe1\x76\x46\xba\xfa\x9f\x2b\x65\x66\xcc\x20\x3c\x43\xcf\x99\xf8\xb8\x60\xae\x9f\x99\x0f\x26\xd8\x69\xa4\x3b\xe3\xef\x63\x7e\xb3\xc8\x68\x6e\x62\xc6\x23\x23\x36\x53\x13\x8f\x44\xf3\x9b\x9b\xdf\x9c\xa9\x66\xc6\x0c\x52\x06\x1e\x2b\x43\x90\x12\x33\xd5\x1c\xb1\x79\x06\xcd\x85\x34\x8f\x08\xb6\x1f\x16\x59\xf0\xf7\x31\xbf\xd7\x65\xf0\xf7\x61\x41\xc0\xb9\x32\x66\x61\x24\x63\xe6\x8a\x03\x7a\x95\x61\x95\xc4\x65\x9e\x42\xa4\xb8\xcc\xf3\x72\x75\x16\x1d\x37\x9b\xba\x5d\x9d\xf1\x86\x20\x25\x6e\xc3\x4f\x93\xbf\x0d\xd7\x8c\x05\x8f\x95\x71\x7b\x74\x33\xd0\x1e\xc1\x78\xa3\x3c\xe4\xf2\x40\x2e\x53\x2a\x0f\xa4\xdc\xd1\xed\xea\xe5\x8e\xa6\x87\x1f\x71\xb3\x94\x61\x4a\x5c\x7b\x2c\x93\xe4\xda\x63\x96\x5c\x07\x1d\xa7\x8c\xe9\xe8\x33\x86\x3b\xb2\x01\xc6\xf0\x3c\x1f\x77\x34\x4c\xe9\x71\x47\x8f\x57\xbc\x4c\xd2\x1a\x0d\x81\x4f\x4c\x65\x95\x0c\x81\x4f\x08\x7c\x80\x5f\x19\x02\x9f\x10\xf8\xc4\xeb\x37\x05\x3e\xce\x05\x8c\x60\x92\x69\x8d\xa6\xc0\x07\x0d\x96\xc9\xdf\xa7\xc0\x27\x67\x7a\x90\x0e\x04\x64\x5a\x4f\x10\xb1\x4c\xeb\x29\x67\xd5\x63\xe4\x2c\x31\x64\x4e\xfb\xce\x9c\x61\xf7\x48\xc1\x54\xb2\x64\x22\xf2\x23\xd3\xd5\x9b\xdf\x9c\x1f\x0f\x46\xf2\x79\x39\xcd\x2d\x53\x4f\xa4\x14\x22\x65\xf7\x9b\x33\xd8\x18\xc9\x11\xa6\x28\x23\x67\xf5\x62\xe4\xec\x02\x90\x39\xc3\x8b\xcc\xdd\xd5\x67\x15\x31\x53\x94\x41\x8a\x7e\xa4\x0d\x90\x06\x7d\xa6\x4d\x80\x3c\x7e\xe6\xee\xea\x87\xe1\x87\x3b\x3a\x0c\x9f\x7b\xc1\x00\x7e\x65\xce\x2d\x21\x73\x7e\xb8\x1e\xc9\xbd\xe5\x6d\x4a\x33\x5e\x1e\x59\x2e\x34\x1d\x7d\x3a\x72\x30\xc8\x2b\x25\xf9\xf7\xa4\xe6\x3e\x92\x2b\xca\x32\xa5\x72\x9b\xbc\x4e\x8a\x32\x1c\x40\x18\xf9\xb8\xcd\xe1\x81\x0c\xf3\x14\x98\x3b\x80\x90\xc9\x14\xf3\x31\x9c\x29\x3a\x72\x30\x92\x31\x38\x79\x90\x8e\x1c\x8c\x5c\xef\xfd\xf1\x9b\x8f\xe1\xaf\x7b\x7f\x0c\x9f\xc1\xc6\x68\xa2\x75\x27\x0f\x32\x57\x3f\xa0\x65\x0c\x8f\xdb\x5c\xad\x7f\x3e\xae\x6e\x0f\xa1\xd8\x3e\xda\x6c\x7f\x93\x8e\x15\x24\x3d\xf5\xd1\x66\xe9\x33\xc9\xaa\x27\x3d\xf5\x81\xed\xca\x36\x63\x8e\x74\x12\x60\x34\xb6\xe4\x40\x40\x36\x0e\xbb\xb1\xa5\x36\xc3\x8b\xc4\xf7\x8f\x36\x3f\x75\x25\x59\xf5\x44\xfb\x0f\xc0\x57\xa2\xfd\x93\x9e\xfa\xd0\x2f\x39\x9b\x28\xc3\x11\x80\xd1\x58\x5d\xe3\xda\x9d\x04\x18\x6d\xe2\x86\x49\x6b\x3d\x41\xff\xa3\x89\xd6\x69\xad\xa7\x23\x00\x03\x05\x96\x8e\x00\x64\xd3\xfa\xa7\x49\x07\x69\xad\x67\x9b\x4e\x7c\x34\xa6\xd8\xd2\x3c\xe7\xf7\xb6\xd1\x0e\xf3\x9c\xbe\x3c\x9b\x70\x46\x67\x96\x84\xf9\x67\x3b\x3c\x3a\x21\x3c\x96\x3e\x41\xf4\xa3\x71\x2c\x54\xcb\xb3\x69\xa5\xd5\x98\x22\xc0\x3e\x41\xf4\xa3\x0d\x4f\x5e\x8e\xd8\x84\x33\x4d\xb8\x8d\xa5\x4f\x10\xfd\x00\x67\x25\x96\x3e\x9b\x20\xba\xb1\xba\x26\x88\x6e\xbc\x37\x71\xa7\x24\x81\x9e\xf4\xcd\x47\x7b\x4d\x89\xf7\x6e\x33\xfd\x1c\x88\xad\xc4\xd2\x27\x88\x7e\x68\xb7\x9c\xed\xf6\x94\xa6\xbf\x1e\x30\xae\xc4\xd2\x27\xd1\xf3\xd1\xd5\x1d\x88\x9e\x27\xd1\xf3\x81\xd8\x4a\xa2\xe7\xd9\xac\xa3\xae\xee\xd0\xac\x23\x10\xfd\xe8\xea\x0e\x58\xfa\x04\xca\x8f\x2e\xbe\xa3\x84\x9e\x94\xd0\x47\x0f\x93\x97\x8c\x36\x4b\xa6\x4b\x1c\x21\xf5\xd9\x66\x7c\x3e\xfa\xb2\xcf\x19\x84\x25\x95\xf4\xd1\x6d\x7c\x6d\xc6\xee\x49\x33\x7d\x74\x19\x00\xcd\xf4\x6c\xd6\x51\x5f\x46\x6b\x1d\x35\x01\x1a\xb6\x2b\x1b\xe7\xdf\x74\x08\xec\xb2\x49\x24\x7f\xc2\xf4\x47\x6f\xff\xa6\x94\xd9\xe2\xdf\xe3\x89\xf6\xfa\x69\xab\xb1\x2b\x7e\x40\xf8\xb3\xdb\x03\xc0\x60\xd9\xd5\x78\xfa\x6a\xc4\xa5\x22\x82\xf2\x4f\x7c\xfe\xe8\xd2\x4f\x98\x7e\x52\x5e\x1f\x5d\x29\xa3\xcf\x55\x9c\x7d\xb5\xd7\xe2\x46\xbb\x94\x01\xb4\x3f\x3a\x83\x26\xce\x9e\x7d\xb5\xd7\xe2\x5b\xb1\xfb\xd9\xad\xdb\x2e\xb9\xe8\xd6\x2d\x68\x7f\x74\x79\x04\x76\x3f\x41\xfb\x83\x56\x56\xf6\x30\x4f\xfd\xfb\xba\x4a\x08\x4c\x3f\x7b\x7a\x2b\xb3\x5f\x6b\x76\xd5\x20\x7c\xfe\xc0\x7d\x65\x9f\xa9\x46\xf6\xf4\xaa\xca\x85\x44\x5d\x3d\x4d\xc9\x72\xea\xa2\xae\xde\x98\xd4\x30\x4f\x55\xa0\x6e\x31\x83\xc1\xb2\x4b\xbd\xbb\xa8\xab\x0f\x4f\x5e\xd4\xd5\x9b\x79\x4a\x69\xfb\xdc\x0d\xb3\x4b\xbd\xbb\x94\xb6\x77\xef\x88\x2f\xe8\x16\x5e\xe7\x0b\x1c\x20\x18\x60\xb0\x74\x80\x20\xfb\x6e\x4a\x8a\x33\x44\xe4\xd3\x01\x82\x01\x06\xcb\xbe\x7b\xc5\x36\xc5\x5d\x71\xa6\xcb\x8c\xc8\xc6\x8f\xdd\x6a\x24\x1b\x9f\x4e\x07\x8c\x5d\x71\xa6\x1f\x9e\x92\xa6\x7e\x60\xb0\xec\x87\x3b\x92\x7a\xef\x56\xa3\x93\x03\xd9\x39\x9d\xdd\x6a\xa4\x25\x9f\x64\xe3\xc7\x6e\xe1\x51\x86\xcf\xce\xe9\xec\xca\x38\x9d\xd3\xe9\x9c\xce\xae\x8c\xd3\x39\x9d\xce\xe9\xec\x56\x63\x17\x32\xd2\x90\x1f\x60\xb0\x24\x1e\x9f\xfd\x36\x5c\x19\xa7\xab\x80\xf5\xe9\x7b\xc6\x6e\xe1\x39\x8d\x90\xdd\x8e\xbe\xb7\xf5\x97\xa6\x34\xd3\xb3\xb1\xdb\x03\xba\x0a\x58\xd7\xbf\x6f\x5f\xeb\xa8\xfc\x66\xb9\xcd\xb5\x8e\x04\x97\xc4\xea\xc7\xae\x8c\x43\xac\x3e\xbb\xba\xc1\xbe\xd6\x51\xb9\x4d\xee\x89\xa2\x58\x92\xae\x4f\x47\x22\xc6\x2e\xd7\x73\x24\x22\x1d\x89\x18\x3a\x2a\xa5\x23\x11\xe9\x48\xc4\xd8\x15\x0f\xfb\x30\xf9\xc7\x6d\xae\x15\x27\x2b\x74\xde\x61\xec\xa7\x0b\xf1\x44\xce\x34\xac\xa6\x59\xe9\x4c\x43\xee\x9a\x98\x7f\xa4\xb4\x0e\x10\xe4\xae\x03\xe2\xfc\xcb\xff\xef\x74\x7e\xfc\xf2\xd7\x9f\xff\xfe\x97\x5f\xff\xa3\xfe\xeb\x2f\xbf\xfe\xf7\x5f\xfe\xfe\xe3\xa7\x9f\xff\xf5\xdb\x6f\x3f\x7e\xf9\xe7\x5f\xff\xf6\xf3\x3f\x7f\xfa\xcf\xdf\xff\xf7\xa7\xbf\xfe\xf8\x9f\xbf\xfd\xf2\xe3\xb7\x1f\xff\xfb\x8f\x7f\xfd\xf6\xf3\x8f\x9f\x7e\xfd\xc7\xaf\xbf\x8f\x9a\xff\xfe\x2f\x00\x00\xff\xff\x0a\x55\x10\x23\xa2\x34\x02\x00"); +func _gbef ()(*asset ,error ){_aeaa ,_cfde :=_agcde ();if _cfde !=nil {return nil ,_cfde ;};_cgfe :=bindataFileInfo {_ee :"HKm314-B5-H",_ffd :11290,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492384,0)};_eega :=&asset {_da :_aeaa ,_dc :_cgfe };return _eega ,nil ; +};func _gaae ()([]byte ,error ){return _gb (_bccg ,"ETen-B5-V")};func _cdae ()([]byte ,error ){return _gb (_bdbbd ,"UniJIS-UCS2-HW-H")};var _gfcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\xcb\xee\x6f\xbb\x91\x98\x37\x3f\x4f\xb1\x87\xce\xc0\xe9\x75\x21\xab\x8a\x80\x20\xc0\xb1\x22\xc4\x30\x9c\x04\xdd\x76\x32\x5e\xd7\x8e\x80\xf4\x91\xa0\x56\x0f\xfa\xed\x83\xf5\x7d\x94\xda\x08\x82\xec\x33\x39\xff\xda\xeb\x47\xb2\x78\xa9\x7b\x15\xf9\x77\xff\xf1\x3f\xfd\xee\x3f\xfd\xfa\x87\xbf\xfc\xf8\xbb\xff\xfd\xcf\x7f\xbc\xfe\xe1\xf9\xcb\x8f\xf7\x0f\xbf\xde\x7f\x7e\xfe\xf9\x8f\xff\xf2\xe7\xeb\xf9\x71\x3e\xff\xf8\x87\x5f\x7f\xf9\x65\xdd\x7e\xdc\x7f\xb8\xfe\xf2\x57\x90\xff\x5d\xff\x74\xfc\xe9\x97\x5f\xbe\xf6\xff\xf0\xaf\xff\xfc\x97\xe7\x9f\xfe\xd3\xaf\xef\x1f\x7f\xec\xfe\xee\xfe\x97\x3f\xcd\xdf\xfe\xf8\xf1\x77\x7f\xff\xfc\xe3\x1f\xfe\xf9\x2f\x7f\xfe\xd7\x1f\xff\xee\x3f\xdc\x7f\x3c\x9f\xff\xe1\xc7\xfd\xbc\xdf\xbf\xff\x6f\x7f\xbe\x9f\x3f\xff\xe1\xd7\x7f\xfc\xf1\xef\xfe\xf3\xdf\xff\xed\x1f\xff\xe1\x5f\xfe\xf4\xa7\xff\xfb\xf9\xa7\xe7\xd7\xbf\xfc\x18\xfc\xdb\xf3\xeb\xcd\xff\x7f\xf9\xbb\xff\xf8\x5f\x8e\x3f\xfd\xaf\xc7\x3f\x3d\x3f\xfe\xee\xbf\xfd\xfa\x87\xff\xf0\x9f\xff\xfe\xdf\xff\xb7\xff\xfa\xfb\x35\xfe\xfd\xff\xc2\x67\xbe\xfe\x1f\xcf\x9f\xff\xf9\x0f\x7f\xfc\xf5\xc7\xfa\x3f\x2e\xcb\xf6\x6f\xff\xfc\x5f\xff\xf5\x4f\xcf\x8f\x75\xf6\xf2\x7f\xfe\x97\x3f\xde\xcf\x8f\x45\x68\x17\xcb\xeb\x8f\xf7\xf3\xcf\x7f\x3a\xae\xe7\xcf\xc7\xaf\xff\xf8\xfc\xf2\xe3\xc7\x6f\x96\x65\x59\x7e\xfb\xe3\xfb\xef\x37\xbf\xcb\xdf\xff\xfe\xb7\xdf\xbf\xfd\xae\x96\xe5\x77\xff\xf1\xfb\xf7\xdf\xfc\xee\x7f\xfa\xfd\xef\x7f\xf7\xfb\xf9\xef\xff\xf3\xbf\xfd\xf6\xf7\xfc\xdb\xf3\xeb\xfd\xff\xea\xf1\x97\xd5\x81\x7e\xfd\xe3\x5f\xee\xe7\xf5\xdf\xe6\x18\xbf\x59\x96\xf5\xfd\xed\x8f\xf5\x6b\xf5\xdf\x7f\xfe\x65\x5d\x96\x89\xdd\x1f\xee\xeb\xff\x3a\xfe\xfc\x35\x38\x96\xef\x97\xdf\x1f\xeb\x6f\x7f\x6c\x5b\xab\x05\x60\xfc\xf6\xc7\xba\xf8\xe7\xe1\xbf\x37\x80\xfb\xb7\x3f\x56\xff\x7a\xbe\x5f\xd8\xf2\xf5\x17\xfd\x03\xce\x12\x28\x80\xaf\x9b\xb5\x6a\x03\x98\x1d\x8d\x0f\xb8\xf3\x6b\x1e\xdf\x9f\x2f\x7f\xe6\x2f\xbf\x59\xd6\x15\x1c\x7a\xdf\x3f\x60\x2f\x81\xef\xf7\xdb\x95\xf6\xf4\xfd\x6c\xbb\x17\x81\x6f\x8c\xb6\xd0\x26\xb6\x0f\xab\xd6\x05\xbe\x31\xb6\x65\x5d\x44\x76\x5b\xbe\x7e\xe7\x5f\x41\xd3\xd1\x3f\x60\xb7\x9f\x11\x00\xe7\x6f\x7f\xac\xfb\xc6\x9f\x97\xff\x9e\x00\x8f\x40\x7d\x40\x6b\x02\xf4\x9f\x34\x1f\xcb\xfe\x01\xac\xd8\xee\x9f\x5f\xf3\xfd\x1b\x6e\x5d\xf6\xef\xcf\xce\x9f\xfc\xe0\x1b\x6a\x5d\x77\x1a\x6e\x2b\x40\x08\x7c\x23\xaf\xdb\x2a\xb0\x03\x6c\x5f\x8b\xe4\xcf\xf9\x23\x3a\xdd\x4e\x01\xba\xbd\x37\x80\x4e\xf3\xbb\x09\x7c\xcd\xb7\x45\xf4\x7a\x03\xb0\xcd\xb7\x98\xdb\xb6\xbc\x00\xb1\x7c\xc0\xea\x90\xb1\x02\x7c\xbd\xb5\xe2\xcf\xc3\x7f\xff\x3a\xde\x36\xfb\x8a\x0e\xd0\x05\x02\x80\xe5\x19\xc9\x90\x5d\x64\x92\x51\x82\xe5\xf7\x4f\xc7\x28\x06\x1c\x43\x80\x2f\x87\x7d\x0d\xbe\x3c\xe2\x35\x3e\x54\xf6\xd5\xbe\xc6\x37\x7e\x7b\xf9\x12\xdf\x89\xdc\xfa\xf8\xbe\x6c\x0b\x18\x77\xce\xef\xb6\x80\x66\xff\xce\xf0\xca\x52\xf4\xeb\x9b\x30\x0b\xd1\x9f\x6f\xf1\x58\x86\x58\x2f\x7e\xcd\x70\xb1\x3e\x02\x5f\x3f\xd1\xec\x87\xe1\xa2\x39\xc2\xf8\x9a\x67\xfb\xda\xf4\x6f\xe6\x2f\x4b\xda\xb6\xbd\x00\x1a\x40\x08\x04\xc0\x77\xd2\xb7\x77\xa9\x0f\xd8\x39\x18\x2f\xfb\x3e\xd6\x35\x00\xbe\x45\x6d\x9d\x79\xbc\xec\x49\xeb\x8b\x5d\x5f\xfc\x6c\x13\x78\x01\x1a\x6d\x3c\xbc\x7d\x02\x6c\x50\x07\xb3\x77\x05\x83\xe0\xd0\xbe\x9c\xa3\xb1\x8e\x06\x90\x7c\x69\x02\xa0\x13\x1d\x44\x59\x81\x16\x22\xba\x42\xce\x31\x7b\x7b\xd9\x7b\x76\xec\xdd\xdc\xbc\x0e\xa2\xdb\x2e\xe0\x17\x06\xf5\x28\xbc\x1c\x85\x36\x1c\x94\x43\xda\x97\xb4\xcd\x37\x68\x5f\x67\x07\x03\x80\x1d\x7b\x39\xbe\x7d\x75\xdd\xb6\x1b\x60\xf8\xe5\x65\xfb\xc4\x00\xe2\xec\x9b\x0b\xbf\xbb\xb1\x76\xb0\x6f\x00\xe5\xcf\xbe\x99\x8e\x74\x0d\x76\x06\xdd\x9b\x3f\x63\xdf\xda\x02\x1f\xfc\x2b\xc7\xfb\xff\xe0\x81\xdb\xbb\x83\x44\x9f\xbd\x3f\x00\x09\x7a\x3b\x18\xf5\x62\xed\x39\x22\x3d\x39\x5f\x2f\x47\xa4\x67\xb1\x74\x6d\x17\x48\x80\x06\xe0\xa2\xb6\x6f\x81\x7a\x2d\x74\xdd\x58\xa0\x5a\x05\x52\xc0\x9f\x81\xf8\x58\x59\xad\xc6\x6a\xc9\x04\xde\x76\x00\xec\x62\xf0\x2d\x5d\xac\xae\x3d\xe7\x32\x56\x88\xed\x6d\xcf\x6f\x7f\x6c\xcb\xe6\x46\xb4\x0f\xeb\xd8\x16\xbe\xf4\x05\x00\xf6\xf7\x7e\xfc\xf1\x03\x98\x1c\xd4\x1a\x1b\x9c\xe7\xed\x4d\x80\x71\xfa\x87\x75\xf4\xdd\x36\x1f\xd6\x11\x3b\x58\xf7\x14\x60\xa6\xbd\x04\x1c\xe7\x00\xf0\xc8\xf5\x1b\x20\x04\xbe\x15\x8d\xf4\x9c\xf7\x57\x00\x0c\x60\x11\x51\x30\xc2\x17\x26\x11\x25\x05\x04\xb8\x95\xdb\x1a\xbb\x80\x5f\x9a\x00\x83\x06\x88\x56\xf3\x67\x20\x5a\xb0\xa2\x37\xbe\x45\x8c\xb1\xf9\x33\x70\x1b\x62\x1d\xa7\x80\x5f\x58\xc4\xe1\x29\x0b\xb0\x1e\x43\xe0\x11\xb0\xcd\x87\x75\x2e\x0b\xf3\x81\xef\xe7\xe2\xd1\xce\x0d\xa0\xfc\xf2\x21\x9a\x4a\x91\x37\x1b\x80\x5d\x67\x07\x08\x7a\xcb\x0f\xd1\xdc\x9c\x4f\xe6\x6f\x7f\x6c\xeb\xd2\xed\xe0\x5b\xd1\xdc\xa5\xce\x3c\x00\x10\x36\x6f\x7e\x58\x67\xf3\xec\xe4\x05\xe0\xe4\xf2\x06\x70\xb3\xf2\x3b\x07\xeb\x5a\xfe\x0c\xac\x5b\x03\xd1\x02\xeb\x26\x17\xa8\x15\x20\x58\xaa\x62\x0a\xbd\x81\x4e\xed\x02\x74\x5d\x4c\xa1\x77\x7a\xab\x2e\xe0\xcf\x98\xc2\x24\x99\x4a\x01\x30\xa8\x12\x60\xa6\x35\x00\x9c\x4f\x1d\x02\x76\x70\x0a\xf8\xb3\xfb\xc3\xba\x6d\xe2\xf6\x2d\x7c\x56\x17\xb7\x57\x80\x36\x83\x29\x94\xc7\x1f\x29\x90\xca\xcd\x77\x80\xf5\x40\xfe\xbe\xa3\x09\xd0\xf5\xf8\xb0\xae\xc5\x99\x8e\x10\xe0\x90\x8f\x04\x90\x5d\x8d\x4f\xd9\x58\x43\xce\x81\x84\xaa\xa5\xfc\xf2\x61\x5d\xca\xf3\x77\x9c\x02\x76\x7d\x01\xc8\x98\xc7\x0d\x20\x3f\x18\x8f\x80\x5f\xbe\x29\xd4\xb6\xd1\x06\x71\x55\x9b\xbd\x1d\xdf\x14\x6a\x77\x0a\xc7\x0e\xe0\xa9\x3a\xda\x87\x4e\xed\x02\x4c\x61\x77\x4f\x8f\x10\xa0\x6b\x94\x8e\xea\xab\x1d\x7c\xfa\xd5\x3a\x79\xf1\x71\x0a\xf8\x33\x10\xed\x72\x0a\x54\xb8\x8a\xc5\x2f\x8f\x00\x5f\xce\x15\x60\xeb\x3f\x65\x98\xe7\xf6\xa9\x59\xf3\xcc\x9e\xbb\xcd\xd8\xbc\xb3\x01\xb8\x11\x27\x88\x4f\x2e\x70\x86\x80\x43\xb1\xf6\x91\x4c\xe9\x64\x85\x27\x7f\x38\x59\xe1\xf4\x30\x9e\x97\x80\x6d\xbe\x43\xb2\xad\xc5\x38\x17\xb8\x66\x67\x16\x17\xeb\x98\x8e\x73\x81\x4e\x7a\xca\x2e\xd0\x99\x4c\xf6\xea\x02\xb6\x01\x9d\x72\xed\xd1\x2e\x6b\xb2\x9e\x0b\x74\xe6\xda\x5f\xd7\x37\xe8\xee\x89\x41\xd7\xaa\x6a\xec\xe4\xcd\x38\xe5\x1a\xdc\x8e\xd3\xfd\xd2\x69\xf3\xd1\xed\x8e\x42\xbe\x7e\xf4\x0d\xb0\x0b\xc4\x07\xac\x13\xc8\x5f\x7e\xb3\xef\xf4\xf6\xa9\x56\x00\x21\x10\x00\x25\xf0\xfd\xac\x79\x18\xeb\x23\xe2\xbd\xdd\x62\xfd\x89\xe5\xbd\xaf\x4e\xee\xd3\xe9\xf6\x8e\x1a\x59\xf5\x51\xe7\xde\xd1\x9d\xaa\x3e\x0d\x69\x8f\x98\xc0\xfe\x01\x8f\x6b\xf0\x91\xea\x9e\x9b\xf3\xf9\xc4\xf2\x9e\xdb\xfc\xd9\xd7\x75\xee\x0e\xfa\x11\xca\x9e\x6e\x49\x7d\x3b\xb7\xd7\x32\x81\xaf\xeb\x42\xcd\x28\xd8\xef\x5e\x65\x6f\xd9\x3e\xe0\x9c\x1d\x7c\x93\xab\x47\xac\xf3\x9b\x5c\xbd\xb7\xc0\x87\xc1\x40\x1a\x54\x7d\x92\x77\x1f\xe1\x7c\xbe\x33\xbb\x8f\xd9\xdb\x47\x90\xfb\x18\xfe\xec\x23\x87\x7d\x48\x1b\x58\x18\xfb\xf0\x88\xd5\x47\x83\xfb\xb1\x0f\x81\x0f\x83\xe3\x70\x7f\xbe\x43\xb1\x1f\xb7\x58\x7f\x24\xb4\x1f\xef\x6c\xf3\x61\x70\x2e\x73\x9c\x0f\x83\x73\x2e\xc8\xa7\x66\xec\x67\xda\xdb\xa7\x38\xee\xe7\xeb\x97\x4f\x69\xd9\xaf\xd5\xae\x3f\xc5\x71\xbf\xb6\x09\xec\x00\x4e\xee\x23\xc8\xfd\x7a\x1d\xf4\x13\x27\xfb\xbd\xba\x06\x9f\x4d\xb1\xdf\xdd\xb5\xe6\xb8\xdc\x2e\xef\xf8\x14\xc4\xfd\xf6\x5c\x8f\x4f\x79\xd8\x1f\x8f\xf2\x58\xbe\x71\x1e\x2c\xa0\xc2\xf4\xd8\x9f\xe7\x16\xf8\xc6\x79\xde\x09\x7c\x33\x55\x45\xad\xf1\x9d\xb7\xb6\xb8\xa7\xe3\x3b\x6f\x6d\xd9\xe7\x97\xfa\x80\x98\xe3\x8c\x0f\x90\xa7\xa0\x8a\xb4\xe5\x9a\xc0\xfa\xcb\x6f\xda\x8a\xaa\x55\xe3\xe3\x36\x6d\x95\xa7\x8c\x8f\xb2\xda\xd6\xe7\xcf\xda\x2f\xbf\x69\xbb\x14\x3c\xd6\xfe\x01\xd7\x6c\xf3\x61\xb0\x3f\x13\x48\x80\x43\xe0\xc3\xa0\x75\xe7\xb3\x7e\x18\xf4\x55\x74\xb6\x0f\x83\xfe\x4e\xe0\xc3\x20\x3c\x62\xf0\xfc\x16\xf2\x10\xd4\xa4\x16\xe7\x23\xf0\x61\x10\x52\x23\x06\x52\x8b\x7b\xb6\x09\x00\x57\xe7\x23\xa6\x96\xdb\x04\x3e\x0c\x32\x9c\xcf\x27\x52\x5b\xa6\x5f\x3e\x16\xd0\x52\xfe\x3d\x3e\xfd\xa7\x15\xaa\x48\x8d\x4f\xc2\xb7\x79\xc8\x3f\xa9\xf3\xff\xcf\x30\x5b\x29\x78\xc6\xc7\xf6\x5b\x1d\x13\xf8\xd0\x1b\x68\xd0\x85\x7e\xd7\x86\x72\x03\xc9\xd5\xe6\xd1\x1e\x9f\xb1\xd1\xc6\xe5\xa2\x7e\x4a\x4b\x3b\xe6\x02\x7d\x72\xbd\x1d\x73\x16\x9f\xe4\x6a\xc7\xe9\x64\x3f\x7d\xa8\x1d\xb7\x88\xb7\x6f\x81\x8e\x67\x7e\xf9\x30\x38\x5e\x7b\xfb\x98\x6c\x3b\xbb\xb3\xf8\xc4\x58\x3b\x73\x15\xf8\x30\xb8\x57\x7f\xf6\x89\xa4\xf6\x40\x1b\x6d\x6b\x02\x4e\xe1\x53\x0c\xda\xb3\xdc\x7e\xf9\x3a\x78\xb4\x56\x36\x3a\x78\xb0\xb0\xda\xf6\x89\xf2\xf6\xac\xa2\xf3\xa9\xcf\xed\xd9\x66\x07\x7c\xd9\xe6\x38\x0d\xc0\xde\x04\x50\xf5\x1b\x46\x40\x7b\xe6\xf9\xeb\x74\x8d\xb9\xde\xb6\x8f\x13\xb6\xa7\x89\xf5\x04\xba\x76\x19\xb8\x35\x4f\xd9\xc7\x23\xdb\xd3\x6c\x13\x60\xd0\xb5\xd8\x02\xac\xbb\x18\x04\x93\x0b\xc7\x09\x70\x0b\xdb\x24\x6d\xe6\x21\x09\x70\x0b\x11\x4d\x7e\x96\x6e\x49\x80\x5b\xba\x54\xc9\xcf\xd2\x35\x48\xbe\x94\xf3\x49\x10\x2d\x31\x48\x70\x2b\x07\x75\x1c\x74\xa8\xb6\x15\xe8\x94\x1d\x14\xe3\x94\x8b\xe8\xa0\x63\xfe\x8c\x0e\x54\x5a\x86\x83\x0e\xb1\x1e\x74\xa0\x9e\x32\x92\x45\x1c\xf6\x36\x58\x9d\x79\xb4\x93\x35\x38\xec\x6d\x80\xe8\xe1\xba\x89\xf5\x29\x75\x8a\x35\x4c\xb6\xed\x0b\x88\x9e\x0e\x5a\xf4\x06\x9b\xd7\xec\x6d\xcf\xe9\xb1\x2c\x7e\x06\xef\x6a\x3b\x7c\xe8\x51\xf2\x0e\xe7\x03\x7f\x68\x3b\x4c\xe9\xb9\x58\xd1\x1d\xd6\xf3\x28\x6c\x47\x31\x9f\x7b\x7e\xe1\x67\xb7\x54\x52\xcc\x87\x43\xde\x76\xd8\xc8\xf3\x78\x0e\x8a\x71\x9e\xf9\x33\xda\xbc\xd8\xb3\xa8\x5a\xed\x81\xa7\xb4\x1d\xce\xf1\xc8\xcc\x47\xd1\xc1\x2b\xcd\xb9\xa2\x50\x49\xdb\xe1\x1c\x7f\xe5\xab\xae\xa8\x22\x15\x47\x45\xd3\x29\x50\x38\x2a\xda\xbb\xac\xb6\xf9\x06\x7d\x57\x17\xf1\x93\x06\x4d\xe3\xb6\xed\x10\xba\xc6\x6d\xa1\xab\xb5\x77\x77\x75\xa0\xfa\x77\x77\x79\xa1\x7a\xed\xd9\xb6\x43\xf5\xef\xee\xf2\x42\x80\x5a\xa9\x85\xa9\xd2\xb4\x45\x0b\x65\xaf\x69\x8b\xb6\x1d\xaa\xd7\x94\x2c\x8c\x98\xa6\xf5\x58\x63\xd0\x35\x26\x5e\xdb\xa1\x46\x8d\xa5\xb6\x43\x59\x1a\x4b\x63\x61\xb3\xb4\x68\xda\x0e\x61\x68\xd1\x8c\x85\xcd\xd2\x88\x69\x3b\x64\xa6\xa9\xd2\x76\x28\x4b\x4b\x63\x2c\x88\x06\x2d\x8d\xb6\x07\x88\xd6\x6c\x53\x3f\x63\x98\x5a\x11\x6d\x0f\x66\x8e\x15\x31\x16\xc4\x0b\xb6\xc2\xda\xf6\x74\xa8\xc7\x2f\xf6\xee\x0a\x43\x1b\xda\x0a\x63\x41\xf0\xbc\x43\x24\xa0\x0d\x0d\x87\xb1\x70\x96\xb4\x15\xc6\xc2\xf1\xd1\x3c\x68\x3b\x84\xa2\x79\x30\x16\x44\xd2\x2b\xa5\xed\x69\x6f\x2e\x10\xf2\x49\x8b\xa0\xed\x69\x6f\x97\x5f\x58\x93\x31\x11\xa5\xeb\xc3\x71\x38\x7f\xa8\xcf\x1f\x00\xa2\xa7\x93\x43\x72\xa9\xfd\x8e\x05\xc9\xf5\x9e\xce\x07\x42\x51\xe1\x1d\x0b\x87\x51\x4d\x76\x2c\x9e\xb2\xeb\xf1\x67\x20\x7a\x3b\x53\x8e\xa9\xfa\xea\x58\x10\x56\xef\x2d\xa5\x79\x18\x6f\xf7\xcb\xf3\x77\x3b\x28\xf2\xe8\x9d\x94\xe6\xc1\xba\x5d\x5e\xcf\xec\xb3\x0b\x30\xe8\xeb\xf2\x7a\x4c\x5f\x06\x6d\x0b\xd3\x86\x9e\x5a\x83\x3f\xbc\xaf\xd3\xf6\x00\x43\x5c\xad\xc1\x1f\x5e\xf4\xae\xb1\x78\x9a\xdf\xf2\x0b\xe8\xbc\x87\x00\x18\xbc\x62\xf0\x49\xb7\xae\x2e\x3d\x96\x4f\xba\xf5\x65\xd9\xfc\x59\x00\xb8\x20\xdf\xa1\xef\x8b\xbe\xb8\xf6\x1d\xd3\xbe\x2c\x6e\xe3\x27\xf7\xfa\x82\x2f\xae\xb5\x4f\xeb\xe9\x8b\xee\xb7\xf6\x69\x3d\x7d\x51\x86\xb5\x8f\xf5\xf4\x45\xf7\xdb\xf2\x89\xc7\xae\xc7\xb8\xb5\x95\xae\x51\x40\xc6\xd2\xe8\x40\x57\x5a\x5b\xc1\x60\x73\x0d\x56\x7a\xdb\x5c\xf8\x26\x20\x6e\x9d\xae\x37\x77\xbb\x33\x9f\xcd\xc9\x75\xe6\xb3\x3b\xb9\xce\x38\x4a\x37\x0c\xfc\xbe\x48\xd1\x6d\xa7\x83\xe6\x8a\x76\xe6\xd3\x3c\x89\x1d\x44\xdb\xec\x0d\x74\x70\x01\x35\x9c\x02\x7d\xe9\xee\x5c\x67\x41\x24\xfc\xb6\xd3\xa6\xbb\x0b\x9d\xf9\x74\x17\x7e\xa7\x83\xee\xe4\x76\xda\x84\xb8\x05\x58\x87\x93\x0b\xb0\x8e\xd9\x1b\x1d\x84\xbd\x05\x53\x98\x6c\x24\xc0\x20\x67\x07\x0c\x9a\xb3\x03\xc6\x49\xb7\xde\x3d\x85\x73\xb4\xe6\x36\x96\x58\x07\x18\x94\xe3\xb8\x8d\xe5\x81\x0d\x06\x95\x1f\x34\x37\x4b\x42\x6f\x8d\xae\x27\xa1\x07\x8b\x38\x09\x3d\x59\xc4\x21\xa2\xc9\x7c\x0e\x7f\x96\xb4\x39\x5c\xc4\x64\xd0\x73\xb6\x61\x9c\x53\x0c\xdc\x1f\x74\xcf\xd6\xdc\x05\x44\xdd\x58\x92\x71\x50\x44\x5b\x73\x4b\x4e\x0f\x52\x31\xe8\xe5\x38\xc5\xa0\x97\x5d\x17\xd3\xbe\x66\xd7\x60\x70\xb9\x73\x9d\xde\x24\xe7\x16\xcb\x4f\x18\x66\x5f\xee\xd9\x21\xe8\x49\xde\xcd\x8d\x98\xe4\x5d\xe0\x7a\x8b\x9e\xbb\xf2\x4c\x8c\xc0\xf5\x11\x09\xb7\xe8\x71\x81\x0a\x8c\x1e\x27\xeb\x7e\x3d\x1e\xe0\x62\x81\x1e\xf9\x5d\xb1\x40\x8f\x1b\xe1\x7e\x3d\xae\x63\x31\x8b\x57\x0a\x18\x2c\xc3\x2b\x0d\xba\x79\x8a\xd8\xe6\x16\x4d\x5a\x1f\x2c\xd0\xeb\x32\xb0\x5f\xab\xae\xf6\xf6\x71\xf6\xbe\x4e\xf2\xfe\x98\x79\x5f\x27\x79\x0f\x01\xbb\xfe\xf8\x77\x5f\x17\xa7\x3d\x00\x56\xcf\xdf\x27\x21\xfb\xaa\x0f\xbd\xa5\xc0\x1c\xe7\xc3\x7a\x9d\x44\xcc\x86\x1b\x7e\x19\x58\xee\x7d\xdd\x52\xc0\x2f\x2e\x2f\x1b\x6e\x34\x66\xac\xb0\x91\x15\x3f\xf5\x58\x61\x23\xab\xca\x2b\x11\xb5\xbe\xee\xbb\x5f\x56\x80\x2e\xb0\x01\xb8\xbc\xe5\x17\xbb\x2e\xbf\xd8\xf5\x0a\x06\xbb\x04\xc9\x06\xaf\xfb\xfb\xb7\xa0\x42\x5f\x31\x9e\xc6\xba\x32\x85\xee\xa0\x43\xe0\x30\xa8\x40\x6f\x93\xa2\x07\x53\x88\xf9\x33\xb0\x96\x88\x89\x4a\xf4\x35\xec\x7a\x63\x9c\x34\xf6\xe0\xe4\x72\xf6\xc6\x5a\xe3\x82\x6c\x7d\x05\x90\x6e\xbb\x88\xd6\xf6\xb7\x48\x46\x5f\x95\xf8\x5d\x44\x95\xe3\xeb\x26\x60\x28\x44\xac\x6b\x46\x3f\x04\x6e\xbf\x80\x68\x4d\x74\x00\x86\xcb\x0b\x5b\x5c\x87\xa1\x90\x55\xc0\xe5\x85\x47\xae\xc3\xf9\x6c\x02\x29\xc0\xf2\x22\xc7\xc7\xba\x0b\x3c\x02\xac\xce\xe1\x14\x5c\xaa\x63\x76\xc0\x1a\x1c\x22\xea\xb4\x0f\xa7\xed\xe4\x4e\x11\x15\xb7\x73\xf6\x06\x3a\x2a\xbc\x5d\x44\x95\xd6\x6b\x03\x9d\xcb\x05\x11\x51\xcc\xeb\xd6\x45\xe7\x72\x79\x11\x75\x86\xf5\xc6\x0a\x5b\x34\xac\x37\x56\xd8\xe2\x7a\x1b\xe7\x81\x13\xae\xd2\xf6\x0a\xf3\x5b\x9f\xe5\x6f\x51\xa3\xbe\x3e\xee\x1c\x8c\x79\x95\x68\xd7\xc6\xf2\x42\xa7\x83\x28\x5f\x5f\x5f\xd1\x71\xd0\xd7\xf9\xd0\x9b\xe1\x43\xc3\x4e\x7d\x5b\x5c\x78\xc4\xd6\xa6\x25\xd8\xe9\x6d\x9b\x11\xad\xf9\xe5\x11\xf8\xb0\xde\x66\xdc\x0a\x86\xb9\xad\xee\xcf\xfc\xe2\x14\xe6\x17\xf7\x07\x56\xba\x19\x90\xc2\xc7\xdc\x0d\x2d\xb6\xfe\xe9\x9e\x7d\xdb\x45\x07\x11\xb4\x29\x11\x3b\x3c\x64\x53\x22\xae\x30\xcc\xad\xd9\xf5\xcf\x19\xe6\xd6\x1c\x37\x6c\xe6\x02\xd9\x7b\x77\xf3\x60\x30\x5b\x77\xf3\x90\x76\x9b\x36\x63\x87\xc1\x6c\x5d\x96\x00\x93\xdd\x26\xa5\x85\x6d\x0c\xec\xc1\x60\xb6\xee\x94\x60\x30\x06\x42\x1b\xc1\xa5\xbe\x41\x69\xad\x43\xf8\x5b\x7a\x9a\x21\xfc\x4d\x45\x9b\x68\x41\xdf\xd2\xc3\x08\xe1\x6f\x39\x07\xa5\x83\x49\x90\x4e\x21\x1d\x07\x36\xbf\xe5\xec\x1a\x44\x27\x41\xc2\x4a\xb7\x72\xe9\xe0\xec\xdb\xa4\x34\x18\xf3\x36\x49\x08\xa1\xb8\xa9\xd6\x12\x67\xec\xdb\xe1\xa0\x2e\x88\xfa\xea\xea\x14\x94\x76\xb1\xd0\x06\x15\xb5\xc5\xc2\x14\x70\xc3\xb6\x58\xe8\x40\x01\x17\x0b\x1d\x68\xf2\x05\x7c\x75\x93\x02\xf0\x46\xf7\xed\x92\x0b\xc0\x57\x37\x8d\xc1\x40\x8b\xdb\x20\x87\x16\xb0\xdf\x8d\x43\xdf\x02\x8d\x6c\x53\x52\xad\xae\xdb\x3c\xda\x2e\xd5\xeb\xb4\x5d\x10\xb5\xd2\x80\x25\x6c\x2a\xa2\x01\x4b\xd8\xd4\x3d\x03\xc2\xdf\x97\xf9\x25\x01\xe6\x97\x02\x70\xad\x11\x68\xfb\x0c\xd6\xb2\x6e\xbb\xaa\x63\x40\xeb\xfb\xea\x7c\xd0\xae\x76\xe3\xa6\x01\x0d\xee\x53\x82\x20\xdd\x76\x25\x08\x91\xb3\xbe\x6b\x19\x06\xfc\x61\x9f\x12\x64\x80\xce\x3e\x63\xba\x3b\x40\xfd\x2d\xc0\xdb\xf7\xdd\x71\xa0\xdb\xbd\x79\x46\xe1\xf9\x7b\x13\x1d\x08\x72\xef\xae\x35\x9a\xc5\xae\x7e\x17\xa8\x81\xbb\xd2\x80\xa0\x70\xdf\xbb\xdb\x08\x09\xed\xc6\xed\x03\xb2\xdb\x63\xa2\xc3\xcf\xd0\xef\x5a\x40\x25\x7b\xb8\x3a\x10\xc6\xae\xb2\xb7\x0e\x3b\x60\x75\xb6\xc5\x0e\x1e\x01\xda\xa4\xe8\x70\x7a\x77\x0f\x2c\x01\x81\xbe\xe7\xfc\x99\x5f\x5c\x10\x0e\xec\x8e\x01\x39\x08\x66\xf6\xbd\x8c\x78\x73\x46\x77\x8d\xbf\x0d\x61\xbb\x2b\x1a\x36\xe4\xeb\x3e\x5c\xf8\x04\x37\x95\xbd\x6d\x15\x10\x6b\x34\x89\x7d\xb8\x20\x9c\xeb\x1d\x73\x6d\x6c\x9c\xaa\x1d\x9e\x3f\x08\x9a\xf6\xdd\xa4\x97\xe0\x58\xee\xc7\x1c\x94\x0d\x96\x16\x08\xa7\x76\xfd\x9e\x2d\x10\xf7\xfb\xe9\x1a\x20\x9c\xf6\x49\x0b\x10\xfa\xae\x34\xd8\x38\x89\xbb\x27\x7e\xdb\xfc\xe2\x38\x90\xe6\x7e\x3b\x53\xf4\xac\xfd\x76\x1c\xcf\xe8\x3c\xfe\x1e\x3e\xdc\x1f\x63\x43\x52\xed\xd2\xc2\x86\xa4\xda\x71\xf8\x0d\x22\x0a\x7d\x57\x1d\x23\xa2\xd0\x77\x4f\x7c\x42\x73\x4d\xce\xbe\xed\x3f\x8b\x92\xf7\xa6\x42\xb5\x21\x2e\x1b\xae\xc1\x96\xcc\xbc\xc9\xb5\x93\xc9\x36\x3c\x7b\x2d\xc1\xb5\x61\xee\xb4\x04\xbd\xb6\xd9\x06\xf4\xda\xe6\xcc\x77\xbf\x88\x1e\xd6\x4a\xdb\x27\x46\x1d\x60\xb7\x8d\x80\xf3\xc3\x40\x69\xbb\xfb\x85\x81\xd2\x70\x87\xb4\x44\xaa\x36\xe2\xf4\x83\x2c\x8d\xde\xf0\x8d\xb4\x44\xc4\xb6\x36\x3b\x00\xd1\xe6\x32\x38\x1f\x2c\xa9\x96\xa2\xa3\x25\x85\xab\xb3\x93\x52\xf4\x7d\x01\xb7\xee\xa0\x90\x5d\xeb\xae\x3d\x32\xba\x69\x15\x6d\xc8\xe8\x46\x8c\x7a\x6c\xc8\xe8\xa6\x55\xb4\x21\x55\x5b\xcc\x41\x05\xe6\xa0\xcc\x27\x5c\x5e\xe4\x6d\xd3\x5e\xc2\x8b\xda\x5b\x4e\x0c\x04\x5c\x10\x27\xa7\x68\x48\xe7\x93\x73\x1c\xbf\x4c\xdc\xf8\xa2\x7a\x96\xe2\x56\xe2\x86\x39\xda\x54\xcf\x52\x44\x71\x41\x8e\x0d\xce\xd1\xb4\xb1\x36\x04\x76\x43\x3d\x6b\xe9\x14\xca\x35\xe8\xf6\xe6\xc2\x8b\xb5\xba\x1a\xae\xdb\xde\xc6\x1c\x14\xac\x27\x0d\x22\xd7\xdb\xe1\xe4\x60\x4a\x4d\xeb\x6b\x83\x29\x35\xbc\x24\x2d\x9d\xc2\x21\xa1\x74\x01\xd7\xcd\xf9\x1c\x73\x1c\x00\x9d\x29\x1b\xec\xaa\x9d\xae\x8e\x58\x9f\xb6\x11\x51\x75\xb5\x14\x37\xed\xb2\x0d\xd1\xdd\xd4\xd5\x52\x0c\x54\xa8\x48\xea\xe9\x4d\x1d\x2a\xed\x5a\xfb\x28\x61\x7e\x6d\x52\x1a\xbc\xab\x3d\x8e\x03\x27\x6c\xaa\x5a\x1b\xbc\xab\xbd\x1e\x65\xd8\x55\xd3\xeb\x98\x18\x58\x4d\x27\x47\x62\x53\xb5\xd7\x15\x85\x5d\x99\xea\x34\x70\x2b\xf7\xae\xe1\x93\x28\x02\x7d\x99\x5d\x37\x00\x17\x9e\x71\xfa\x32\xdb\x7c\x5d\x77\xd3\xde\x92\x41\xfb\xea\x6e\xa3\x8a\x74\x1d\x16\xc9\x38\x7d\x9d\x6d\xe8\x5a\x23\x06\xbf\x74\xef\x93\x1a\xe1\x77\x5d\xe1\x94\xa2\xb3\xbb\x20\x62\xa0\x45\x83\x93\xba\xf7\xdd\xd5\x11\x83\x5d\x44\xe1\x77\x7d\x97\xd0\x11\xd0\x7d\xd2\xa9\xe8\x4c\x3a\x45\x5a\xf7\xe6\x36\x22\xad\x7b\x73\xda\xe2\xd6\x3c\xa3\xe2\xa6\xc7\x63\x43\xb1\xe9\x6d\xe2\x06\xa2\xdd\xad\x17\x1d\x15\xb5\x14\x03\x15\xb5\x0d\xbe\xda\xfb\x44\x87\xae\x95\x7b\x29\x6e\x31\x3b\x00\x9d\x74\x41\xb0\x6c\xbb\xb6\x4e\x8a\xdb\x24\xa6\xfa\x59\x94\xbc\x77\x85\x55\x3a\xee\xa4\x27\xcc\xd1\x3e\x85\x15\xe6\x68\x47\xbb\x6a\x39\x01\xb8\x36\x3e\xf4\xde\x91\x35\x8d\xe4\xa1\xde\x71\xc2\x8f\x1d\x1d\xaa\x9f\xf3\x67\xf4\x86\x78\x19\x78\xd7\x7b\x57\xd5\x2a\x94\xb0\xae\xaa\x55\xf6\x86\xaa\x35\x70\xb5\xf7\x8e\x63\x61\xec\xc8\xdb\xae\xac\x29\xbb\xd6\x77\x50\x76\x2d\x39\xec\x08\xdf\x4e\xdc\xb4\x95\xe3\xe8\x77\x2f\x7b\xd3\xf2\xc0\x71\xdf\xbb\x5e\x85\x1d\x49\xdc\xd5\xc8\x76\x84\x6f\x27\xd3\x73\xec\x88\x58\xc3\xd2\x63\x47\xc4\x06\xe7\x7c\xec\x48\xd5\xd0\xc0\x2f\xda\xc4\xe2\x4c\x31\x20\x43\x03\x9f\x70\x7e\x8f\xd5\x71\x10\x34\x61\x2a\x5c\xd9\x9b\xf6\x05\xfe\xfd\x1e\xda\x17\x65\xd7\xba\xdf\x76\x44\x50\x28\x82\xf6\xcd\x2f\xce\xc7\x71\xb4\xdc\x0b\xdb\x34\xf6\xd9\x75\x01\x4c\xdc\x06\x80\xab\xb3\x09\x38\x1f\x44\x50\x68\x4f\xec\x88\x93\x68\xfe\x0c\x09\x12\x1e\xd3\x42\xfc\x87\xc6\x05\xce\xfe\x1e\x8a\x06\x92\xa1\x7a\x18\x76\x2a\x27\xa7\x49\xbe\xc3\x7e\x43\xef\xd9\x0e\xc7\x8d\x14\x37\x67\xaa\x00\xd8\xe1\xb8\x91\xae\x1b\xac\x34\x34\x14\x76\xb8\x67\xe8\x9e\x27\xd1\xa4\x87\xd2\x60\x87\xe7\x87\xd2\xa0\x5c\x1d\xa5\x01\x01\x82\x1e\x72\xf6\x1d\x56\x1a\x5a\xc7\xe5\xba\x1d\xf3\x67\xa0\xa3\x75\x5c\x9b\x80\xa7\x17\x5d\x3a\x4e\xcf\x68\x17\x98\x58\x83\xdb\x29\xd6\x5d\x60\x76\x00\xa2\x97\x27\xd1\x15\x55\x39\x2a\xe4\x78\xe8\x16\x23\x3b\xac\xc7\xed\x22\xc2\x57\x43\xff\x16\xa9\x62\x3d\x54\x8e\x48\xde\xe8\xc1\x19\x6d\xb5\x0b\xb8\x25\xf0\xef\x50\x39\xda\x61\xa5\xf1\xce\x9f\x81\xe8\x3c\xb0\xb0\xd2\x90\x4b\x13\x78\xe8\x31\x4f\x2f\x6c\x31\x97\xf9\xb3\x00\x70\x1b\xd1\x0a\x52\x1f\x73\x35\x7f\xe6\x14\x10\xb6\xa9\x5b\x99\x5c\x92\x9e\xeb\x6c\x53\x00\x1e\x4b\xb8\x5a\xfe\x77\x49\x99\x3d\xf5\x24\xef\xb0\xb8\xdc\x6c\xd3\x05\x6c\x03\xef\x32\xae\xdd\x8a\x3d\x4d\x99\xf9\x0e\xef\x4a\x8d\xe8\x62\x4f\x53\x1f\x33\x79\x56\x3d\xf7\xf9\xb3\x6f\xdd\xb2\xcd\x9f\xd1\xa6\xc9\x29\xe0\x62\xa9\x36\x45\x3a\x56\x4f\x2d\xe8\xea\x7e\x71\xb3\xd8\x60\x53\x66\xc7\x5e\x02\x2e\x55\xfd\x2c\xe8\xd3\x53\xeb\x98\x4c\x95\x9e\xe1\x21\x41\x46\xa7\x96\x47\x61\x5e\xa7\x6a\x13\x69\x60\x3d\xc3\x0d\x67\x8f\x73\x12\x0a\xc6\x53\xa6\xb3\x40\x76\x66\x3a\x0b\x2c\xa9\x4c\x0f\x23\x96\x54\xaa\x43\x91\xf7\xd2\x53\xb6\xbf\x0f\xdb\x78\x18\x39\x24\x69\xe4\x96\x24\x98\x9e\x46\xa7\x48\x82\xe9\x59\xae\x23\xe7\x22\x75\x64\xed\xd8\x4b\xa9\x19\x52\x1e\x92\xe1\xe6\x61\x22\xa5\xae\xa7\x86\x89\x94\xba\x9e\xc8\x95\xe9\x69\xa0\x88\x58\x4a\x4f\xd9\x3c\xb1\x94\x9e\xba\x99\x09\x9f\xf4\xbc\x66\xd7\x20\x8a\x4f\x69\x10\x3e\xe9\x29\x9b\x27\x7c\xd2\xf3\x12\x37\x4f\x8c\x81\x22\x12\x67\x7a\xe2\x66\x1e\x86\x4f\x12\xce\x3e\x0c\x85\xe4\x23\x06\x30\xf3\x54\x9d\x21\xed\xb0\xe7\xa4\x0d\xcf\x12\x16\xf5\x68\xab\x80\x9b\xe5\xf1\x31\xb4\xd3\x56\x01\x0f\x89\xc7\x07\x77\xef\x30\x62\x92\xaf\xcb\x8b\x45\x9d\x12\x57\x83\xe3\x96\xae\x27\x92\x6d\x7a\x19\xe7\x21\xd9\xa6\x97\x36\x48\x83\x7b\x16\x9c\x7d\x34\x18\x66\xad\x22\x0a\xc3\xac\xd5\xde\x60\x8b\x65\x12\x02\x99\x37\xbd\xc8\x6b\x1e\x0d\x16\x57\xba\x7b\x49\xc3\xe9\xb5\x39\x1f\xb8\x5a\x99\xe4\x4c\x4e\x4e\xaf\xcd\xf9\xc0\xd5\x0a\x33\xbe\x91\xa0\xd3\x4b\x33\x9e\x04\x9d\x5e\xdb\x1c\x94\x71\xf6\xf9\x05\xa0\xcd\x41\x19\xa7\x4d\x44\xe9\x5a\x0d\x86\x64\x9b\x5e\xfa\x71\x1b\x5c\xad\x34\x3b\xc8\xbc\xe9\x85\x53\x77\x34\xc4\x49\xe9\x9e\x22\x0d\xa7\x57\xb7\x37\x64\x4b\x69\xe0\x93\x79\xd3\x4b\xdd\x86\xcc\x9b\x5e\x31\xdb\x30\x68\xcc\x36\xfc\xcc\xe3\x3f\x5c\x51\xb2\x9c\xda\x70\x45\x3d\xfe\xc3\x15\x4d\x27\x07\xf7\x2c\x53\x1a\x86\xcb\xab\x43\x69\xb8\xa2\x35\x7b\xa3\xeb\x9a\xbd\xd1\x06\x77\xef\x68\x98\x2a\x65\x70\xd6\xa0\x4f\x8d\xd9\x01\x4b\x35\xe6\xa0\x2c\x95\x26\xb9\xe1\xa0\x22\xb7\x7f\x18\x01\xaa\xc3\xcd\x42\x22\xd6\xe1\xa1\x40\x22\x96\x52\x67\xb8\x54\x9a\x03\xc3\xd5\x39\xe7\x17\xc6\xd1\x57\x45\x72\x4d\xaf\x6b\xf6\x06\x6e\x2a\x50\x43\x44\x55\xa0\xc8\xb4\xe9\x25\xfd\x90\x69\xd3\x4b\x11\x34\x9c\xc2\xed\x38\x22\xaa\xb7\xb6\xc1\x98\xeb\xb6\x37\xb1\xbe\x5d\x03\x18\x73\x3d\xce\x07\x26\x5b\x8f\xfb\x23\x06\x8f\x87\xa2\x6f\x3f\x63\x98\xa6\xcf\xb5\x01\x07\x1e\x8b\xc7\x14\x0e\x3c\x54\x9b\xc8\xf6\xed\x63\x99\x1d\xf2\xc5\x50\x88\xf1\xa5\xb1\xba\x74\x58\x38\x43\xf3\x80\xbc\x97\x3e\x56\x39\x14\xe6\xce\x20\x14\xd2\xc8\x7b\xe9\x63\x52\x00\xec\x77\x28\x78\xda\xfc\x22\x4f\xf1\x8b\xb6\xc2\x80\x47\x8e\xdd\x03\x0c\x97\x1e\x06\x3c\x48\x75\xe9\x43\xaf\x96\x51\xa3\xb1\x4f\x74\xc0\x5a\x03\xdf\xd8\xd0\xd0\x70\x20\xef\xa5\x0f\xcd\x03\x52\x5d\xfa\x50\xd6\x18\x28\x1a\x46\x3a\x9b\x83\xea\xfc\x22\x83\xa4\x8f\xee\x38\x0e\x3a\x09\x05\x76\x35\xfa\xec\x80\xae\x67\xd1\x0a\xec\x6a\x18\x24\x21\x83\xa4\x8f\x98\xbd\x81\xdb\x24\x21\x31\x50\x23\x33\xec\x34\x54\xc2\x0c\x2e\x0d\x83\x9b\x24\x66\xf4\xa1\xbf\x8b\x5c\x8c\x3e\x20\x87\xbe\xc0\x39\x06\x14\xd0\x17\xd8\xfc\x20\x8f\xa7\x2f\xf0\xef\x31\x29\x00\x96\x6d\x42\x58\x27\x31\xa3\x0f\xf5\xae\xe6\xe4\xb0\x1a\x3a\x89\x19\x7d\xa0\x84\xf5\x05\xd5\x7e\x68\x2a\x37\x67\xaa\xa9\xdc\x9c\xdc\x94\x2d\xb0\xdf\x71\xce\x41\x05\x28\xd0\x58\x60\x4a\x03\xaa\xe9\x0b\x7c\x68\x68\x37\x37\x18\xf3\x30\x23\xa1\xc1\x98\xc7\xe5\x14\x60\x4a\xe3\xb2\x10\x04\x35\x7d\x5c\x8e\x33\xfc\xe2\x38\x08\x8d\x61\xc0\xa3\x0d\x7f\x36\x07\x05\xd1\xcb\x69\x23\xa0\x87\xa1\x90\x86\xe5\x34\xcc\x48\x68\xae\xa8\x85\x3d\xa4\x4e\xf4\xf1\xb8\x06\xb0\x9e\xf1\xb8\xbc\x9b\x3f\xe3\x54\x75\xd7\xfa\x71\x75\xe0\x36\xe3\x71\x72\x70\x9b\x61\x4a\x43\x77\x17\x74\x1e\x77\x84\xed\x50\x0d\xec\xc8\xd7\xf1\xce\x71\x58\xaa\x57\xac\x51\x51\x07\x02\x6d\x74\x77\x01\x05\xb1\x2f\xe8\xab\x07\x4e\xb6\x4e\x22\x46\x3f\x16\x97\x0a\x0e\x75\xa0\x13\x8e\xce\x5a\x1f\xeb\xfc\x59\x03\xd8\xfd\x42\x07\xab\x83\xc2\xb2\x8f\x6d\x7e\xe1\x67\x9b\x87\x02\x0e\x75\xe8\x63\x36\x0e\x77\x58\x74\x63\xea\xc4\xa1\x81\x6f\x1c\xce\x94\xc1\x61\xe8\xed\x30\x16\x69\xb4\xed\xd8\x5d\x51\xb8\xda\x61\x01\x8d\x49\x15\x47\x13\x37\x18\xd9\xd1\xe6\xcf\x18\xa7\x39\x28\x42\xe3\x68\x73\x50\xc6\xe9\xee\x02\x3a\xee\x61\x0e\x41\x67\x4b\x0e\x28\xab\x9b\x47\x71\x84\xf3\xd9\xfc\xd9\xec\x7a\x00\xcc\xae\xfd\x99\x58\xbb\xa2\xd2\x5c\x77\x45\x0d\x8a\xf4\x9f\xe6\x61\xf6\x43\xb7\x58\x77\x85\xb5\x7d\xba\x8b\x5a\xb3\x77\xd0\x53\x3e\x75\x44\xc5\x31\xc4\x15\x7e\x7e\x18\x24\x31\xac\x76\xa8\xd2\x75\x44\xc5\xa1\x23\xab\xbb\x74\x68\x71\xdd\x64\x8e\x43\x52\xed\xae\xa3\x9e\xe5\xee\x3a\x6a\x15\x19\x70\x3b\x4e\x7b\x73\xe9\xae\xd9\x81\x00\x24\x64\x24\xed\x98\x24\x04\x33\x3f\x2e\xb7\x15\x21\x72\x5c\xee\x17\x3c\xff\xb8\x9d\x0f\xfc\xfb\xd0\x3e\xef\x28\xd6\xc7\xe3\x4e\x22\x00\x8e\x49\x42\x08\x80\xe3\xb1\xeb\xd9\xc6\xae\x61\xcc\x66\x49\x8f\x0e\x5f\x3d\xd4\xd5\x8c\x8f\x9d\xe6\xe4\x18\x12\x3b\x17\x0f\x23\xe3\x9c\x8a\x20\xa3\x60\xe7\x32\xbb\xfe\xa6\x70\xae\x73\x50\xbe\xa8\xb8\x19\x1f\x3b\x95\x47\xc6\xc7\x4e\xcd\x1d\xca\x16\xfa\xb9\xd9\x1b\x9a\xec\xb9\x79\xb0\xc0\xed\x9c\xa7\x19\x1e\x79\x9a\x45\x63\x18\xed\x54\xea\x18\x39\x3b\x77\x77\x1b\x86\x79\x5a\xca\x65\x06\xc9\x69\xf5\x96\x79\x22\xa7\xb1\x14\xea\x52\xfa\xa9\x6c\xe9\xf0\xfc\xd3\x5c\x99\x0e\xc3\x3c\xe7\xd1\x76\x72\x5d\xac\x61\x8b\x67\x97\xf0\xc5\xda\xf0\x49\x87\x47\x9e\xe1\x1a\x88\x5b\xc8\x39\xc4\x2d\x5d\x37\x18\xf3\xa9\x04\xe9\x30\xbf\x33\x25\x7c\xd1\x49\x07\x15\x9d\x74\xb7\x45\x67\x9e\x6b\x78\xe4\x59\xf6\x26\x3a\xea\x5d\x1d\x1d\xf7\x2c\x71\x83\x7b\x9e\x53\xea\x20\x8f\x4e\x05\x4d\x47\xe1\x3d\x49\x0b\x1d\x54\x5b\xf6\x53\x71\x62\xe2\xc2\x89\x76\xd5\x4d\x5c\x38\xf1\x48\xf5\x15\x36\x7f\x7a\xf8\x8c\xd3\x9f\xb7\x5f\xe0\x91\xa7\x01\x6b\x63\x84\x27\x59\x68\x9d\x42\xd9\x7e\x92\x9a\x3d\x0c\x18\x9e\xba\x9a\x0c\x18\x9e\xba\x8d\x0c\x18\x9e\x32\x66\x03\x86\xe7\xfb\x6f\x75\x85\xfd\xc4\x8b\xda\x0d\x4b\x9f\xef\xc4\xfa\x9b\xdc\x25\xc7\x35\xde\x7c\xe1\x5d\xea\xc6\x9b\x2f\x63\x77\x94\xbc\xf4\x4b\x8e\x6b\x74\xd7\x4c\xfe\x11\xf0\xe2\xcb\x33\x6a\x74\xf7\x5a\x67\xfd\xe2\x87\x8e\x39\xfe\x9d\x22\xbc\x7e\xcd\x32\x47\x8e\xf2\x25\x93\x35\x30\x79\xed\xb3\xeb\x04\x70\x3e\xb0\xec\x4b\x8b\x3a\xe0\xd2\x97\xdc\x33\x60\xcc\x97\x65\x80\xc6\x56\xaf\x66\x9d\x24\x07\xe9\xd2\x36\x08\x58\xf6\xd5\xed\x9a\x83\x74\xe1\x43\xea\xc6\x3c\xaf\x6e\x1b\x0e\xf9\x15\xee\x02\xb2\xff\x92\xe3\x52\x92\xd4\xaf\x70\xe1\xd7\x9f\x9a\xe4\x57\xb8\xad\x9c\xb2\x0b\xf3\xba\x1b\xf6\xbc\x72\xfd\x5b\xe5\x66\xbf\xb4\xa8\x03\xfb\xe2\x4a\x57\x0b\x89\x7f\xe9\x7a\x32\xf0\x7a\x95\xe3\x22\x2a\xae\x9a\x5f\xf8\x99\x76\x73\x60\x52\x5c\x7a\x9b\x28\xe9\xee\x97\x59\x5c\x81\x5c\xbf\xcc\xe2\x0a\x84\xc8\xe5\x99\x35\x58\x7b\x1d\x13\x1d\x7e\xa6\x79\x60\xe4\xf6\x3a\x26\x3a\xb4\x91\xfd\x52\x9f\xd4\xaf\xc3\x0e\x90\x06\xd7\x39\x3b\x60\x0a\x30\xe6\x6e\x08\xf3\x82\x31\x77\x43\x98\x17\x49\xce\x7d\x5b\x6c\xf3\x08\x30\xe8\x65\xc1\xaa\xe7\x4f\xc6\x6c\x1c\xf8\x52\x83\x09\x64\xcb\x45\x2c\xaf\x6f\x68\x09\xd7\x33\xdb\x80\xa8\x1a\x8c\x91\xce\x4b\xc3\x9b\x42\xcb\x7e\x4d\x72\x40\xea\x5c\x06\x15\x8c\x1d\x5f\x18\xde\xdd\xe0\xe6\x05\x97\xee\x86\x30\x2f\x55\x13\x43\x98\x17\x2c\xbb\x1b\xb5\xbc\x35\x14\x8c\x37\xdf\xf8\xae\xfa\xc6\xf9\xbb\xb5\x0d\x8c\x2a\xdf\xd2\x86\x21\xcc\x7b\x75\x1c\xb6\xf1\xa6\xd6\x68\x04\xa2\xee\x36\x25\x32\x90\x6e\xb7\x84\x62\x38\xd2\xf2\x81\x41\x45\x68\xbf\x0d\x37\x04\xa2\xee\x36\xb5\x2a\x10\x75\xf7\xe6\x9e\xa2\x25\xdc\xdb\xc4\xad\x00\xc4\x8d\x73\x70\x6f\xb3\x6b\x3a\xd8\x67\x1b\x70\x9b\xc4\x05\x4b\xb8\xcd\x06\x09\x68\xfd\x36\x90\x17\x88\xc7\xbb\xbb\xd6\x1c\x8a\x3b\x66\x6f\x74\xe0\x21\xdf\xd0\xe2\x6e\x0f\xf9\x86\x9a\x71\xeb\x36\x32\x64\x7e\xab\x2f\x18\x18\xbf\x4b\x44\x91\x95\x77\x89\x28\xda\xc8\x5d\x2e\x3c\x47\xec\x9e\xa7\x17\x06\x73\x0f\xf7\x14\xce\x71\x0f\xb7\x84\xc3\x77\x1f\xe2\xc6\x71\xb9\x0f\xeb\x9b\x39\x2e\xb7\xca\x43\x84\x80\x87\x8f\x43\x71\x6b\xf6\x46\x08\x38\x53\x04\xda\x6d\xa8\xc0\xc8\xfa\x7d\xda\x01\xf6\xd1\x7d\x7a\xc4\x76\x7f\x36\x7b\xf3\x67\x76\x80\x84\xbf\xf5\x21\x19\x3f\xbf\xe7\x51\xc6\x3e\xba\x2f\xb1\x76\xeb\x0d\x22\x18\x3f\xbf\x6f\xb1\xf6\x1c\xdc\x12\x20\x5a\xc1\x7d\x7b\x2c\x3d\x07\xda\xc0\x81\xe0\xbc\xd5\x4b\x02\xd9\x7f\x3f\xf3\x0b\xb8\x3d\x2e\xa2\xdb\xa8\x9a\x6e\x5c\xf1\x36\x99\xd0\x60\xfa\xfd\xba\xf0\xe8\x32\xb7\xfa\x77\xc0\xfc\xac\x50\xe9\x5b\x08\x38\x1f\x38\xe1\xb3\xb8\xdb\xec\xc2\x33\x0f\x39\xcb\xfb\xcc\x73\x5d\x02\xb3\x83\x04\xf0\xb8\xfc\x34\x71\xbd\x3f\xab\xb3\x28\x9b\x39\x0b\x36\xe2\x59\x5d\x3a\x36\xe2\xd1\x0f\x15\x88\xf2\x47\x1d\xde\x30\xe1\xa3\xa2\xc3\x15\x16\xdd\xca\x98\x6e\x64\xd0\xca\x98\x6e\x64\xf0\xd9\xe5\x50\xac\xfd\xa3\xda\x6e\xfc\xcf\x32\x99\x61\x7e\xc0\x63\x45\xbc\xf1\xbf\x67\x9f\x1d\x80\x5b\x73\x8b\xe0\xdf\x8f\xc5\xe8\x06\xe9\x1e\x2f\x3c\x30\x2e\xf7\x4c\x12\x82\x99\x3f\x5d\x0a\xc0\x62\x7b\x14\x3c\x46\xec\x1e\xcd\xeb\x18\x02\xb3\x0d\xe8\xa8\x0f\x19\xb1\x7b\xa6\xe0\x81\x17\x3f\x2a\x3a\x89\xf8\x7f\x94\x13\x89\xf8\x7f\x4c\xfd\x35\x43\xe1\x29\x59\x0f\x8c\xd9\x32\x99\xbe\xc3\x98\x1f\x8d\xe8\x1d\xc6\xfc\x18\x60\x4b\xf8\xaa\x65\x32\x7d\xb7\x6b\xd4\xf4\x6e\x4c\xed\x19\x73\x50\x16\x7e\xcc\xde\xc0\x7a\xcc\xde\x40\x14\x3f\x54\x37\xa6\xf6\x48\x9d\x46\xce\x1e\xc3\xd2\x09\x97\xb6\x66\x66\x24\x2a\xc3\x73\x78\xe5\xc4\x04\x6e\x01\x70\x53\xcf\xcf\x09\xdc\x02\xe0\xa6\x04\x31\xbc\xf5\x68\x51\x27\xfc\xfb\x21\x5d\xb8\x53\xf2\xd2\x1f\x69\x30\x61\xe6\x8f\xae\xdb\x84\x99\x5b\x09\xd8\x77\x44\xea\x73\xcf\x0e\xe8\x0d\x1a\xec\xc6\xc7\x1e\x83\x24\x69\x6f\x12\xa4\xf1\xb1\xc7\xdc\x12\x33\x39\x2c\xa0\x19\x69\x6f\x9a\xca\x46\xb4\x9e\x77\x7e\xa1\x83\xd7\xae\xe1\x91\x16\xc3\x8c\x84\xaf\x5a\xff\xd2\xa9\x72\xe9\xef\xe2\xb4\x61\xb2\xd6\x22\x76\xaa\x5c\xba\xf7\x60\x74\x03\x5f\xde\x83\xe1\x15\x0e\xdd\xab\x2f\x3a\x25\x2f\xdd\xab\x2f\x3a\x25\x2f\xdd\xab\x2f\x86\x29\x1a\xaf\x94\x65\x14\xcc\x9b\x2b\xba\x81\xaf\x77\x9b\x3f\x6b\x00\x4e\x1b\xbe\x3a\x6f\xa1\x30\xf0\xe5\xc5\x13\xc3\xdc\x8b\x79\xbd\x84\x51\x30\xcb\x71\x86\xe9\x16\xef\xee\xd9\x41\x8f\xfc\xdb\x5d\x13\x60\xbd\x3b\x05\x38\xd4\xbc\x6b\x62\x87\x43\x79\x4f\xc4\x30\x2b\xc3\x3b\x1f\x46\x3a\x05\xf5\xbb\x9d\xf0\xc9\xbc\xd9\xc1\xc8\x99\x97\x39\x74\xe3\x63\x5c\xe6\xf0\x01\x8c\x23\xcd\x25\x32\xd9\x1b\x17\x46\xc2\x7e\xdf\xee\x7c\xc2\x2f\x2e\x48\xf8\xc5\xc9\xc1\x8b\xbd\x4a\xa1\xef\x68\xb2\xdc\x36\xb0\x76\xe3\x56\xaf\x8a\x1a\x65\x31\xdd\x3b\x05\x3a\xc5\x2f\xdd\x2b\x01\x86\x69\x1d\x16\xfe\x77\x03\x52\xef\x24\x40\xec\xb0\x59\xef\x62\x56\x86\x45\xef\x9d\xd2\x93\x6e\x35\xfb\xc8\xfe\xd3\x3c\xcc\x57\x01\x97\xae\xfd\x31\xfb\x60\x5c\x7d\x57\xa6\x6c\xbc\x93\x84\x5c\x3a\x35\x32\xc3\x34\xd6\x92\x77\x43\x2e\x56\xd3\x74\xa3\x2c\x96\x8f\x8f\x74\x85\x21\xbb\x6e\xc8\xc5\x22\xf1\x6e\x94\xc5\x6a\x9a\x6e\x94\xc5\x6a\x9a\x91\x48\x94\xf7\x76\x27\x91\xf8\xef\x24\x21\xd7\x51\xc5\xcd\x88\xc9\x3b\xa9\x06\x51\xf1\x1a\x3e\x49\x24\xf1\x6b\x12\x56\x86\x3f\x63\x8b\x0c\xac\xbc\x93\x9e\xdc\x88\x57\x0c\xe0\x0f\x16\xc3\x0c\x93\x2c\x5e\x15\xb7\x06\xb3\x78\xf5\x29\x51\x8a\x12\x8b\x09\x89\xe4\x48\x84\xe5\x2b\x83\x1c\x89\xb0\x7c\xa5\x13\x99\x89\x05\xaa\xe9\x04\x63\xc2\x5a\x96\x4e\xfc\x25\x16\xc3\x27\xe4\x48\xc4\xa2\x15\x4e\x26\x44\x2c\x2a\x6e\x64\x42\x84\xe5\x2b\x9d\x28\x4b\x2c\xaa\x67\x64\x42\xc4\xac\x65\xa1\xd2\x3e\x16\x4d\x72\x02\x2b\x61\xa9\x71\x27\x96\x12\xb3\xb0\x85\x34\x88\x58\x4c\x1a\xe1\xa6\x94\xf0\x6a\xa5\x91\x05\xd6\x66\x76\xe4\x00\x83\xe6\xb4\x3f\xce\x11\x8b\x8a\x1b\xf5\x2f\xb1\x74\xe7\xb3\x83\x8e\x22\x88\x88\x49\x2c\x92\x03\x41\x92\xb0\x96\x65\x70\x09\x4b\x2c\xdd\xde\x76\x70\x33\xcf\x8a\x74\x8b\x58\xd2\x3d\x1d\xa0\x63\xa6\x61\x0e\xd0\xf1\xd0\x13\x54\x88\x45\x65\x8f\x44\x8c\x58\xca\x71\x9a\x6d\x5e\xbf\xd0\xb5\xca\x1e\xa9\x13\x61\xc1\x49\x27\x0c\x10\x8b\x9e\x22\x52\x27\xc2\xea\x93\x4e\x18\x20\x16\xcb\xcc\xc8\xa3\x88\x59\x8a\x52\x0b\x18\x40\x18\x1d\x17\x7e\x2c\xda\xda\x78\xed\x63\xc1\x54\x19\xb5\x08\xd8\xf5\xca\x38\xa7\x5d\x07\xd3\x56\xd9\xc3\x37\x1f\x8b\x95\x65\xdc\x3d\x13\x16\xa9\x0c\x32\x2c\x62\x96\xa2\x94\xa7\x6a\xd2\x42\x80\x8e\x71\xc5\xf2\x20\x5d\xa2\x13\xa0\xa3\x82\x58\x9e\xaa\x6b\x76\xcd\xe4\x14\x4e\xa4\x4e\x84\xe5\x2b\x1d\x17\x7e\x2c\xea\x84\xe4\x51\xc4\x72\x4f\xac\xfd\xe2\xd9\x49\xa6\xa0\x1f\x80\x94\x86\x58\x6e\xef\xf0\x49\xb0\x36\xb1\x84\xec\x82\x58\xde\x09\x30\x8e\xf2\xa8\x49\x0b\xd6\x9c\x91\x5d\x10\x8b\x26\x51\x93\x30\x54\x10\xc9\x21\x88\x55\xc7\x15\x39\x04\xb1\x2a\xb6\x28\xbb\x08\x2f\xed\x1a\xc5\x41\xb2\xda\xa4\x53\x76\x11\xab\x1e\x82\xe2\x20\xad\xab\x4b\xf5\x29\x6a\xe1\x2d\x5e\x83\xbc\x83\x58\xd7\x39\x4e\x00\xb8\xd6\x9f\x38\x09\xab\x4d\x3a\xce\xf0\x98\x05\x26\xf5\x89\x93\xb0\xc0\xa4\xb7\xf1\x33\x1f\x66\xac\x2a\x88\x5c\x80\x13\xab\xb7\x24\xe1\x29\x8f\x75\xf7\xc8\x0d\x90\xd8\x67\x87\x20\x31\xef\x42\xe2\x9c\xaf\x5e\x5d\x44\xb9\x47\xac\xde\x56\x84\x73\x3c\x56\x85\x15\xe9\x0a\xb1\x42\x83\x83\x74\x85\x58\x0d\xe2\x57\xa3\x6b\xc3\x91\x05\x6d\xac\x84\x5c\x3a\x5e\xef\x58\x15\x56\x64\x35\xc4\x2a\x75\x76\x4e\xf3\x2c\x45\x21\xc5\x21\x2c\x45\x19\x64\x35\xc4\x2a\x75\xe2\xe8\x8e\x55\x6d\x91\x1b\x4d\x62\x35\xab\x98\x74\x85\x58\x75\x98\xe1\xa7\x8e\x35\xbc\xa4\x89\xe3\xb3\x12\xe8\xef\x94\x7b\x84\x15\x2b\x83\xac\x86\x98\x15\x2b\x24\x25\x84\x15\x2b\x83\xbb\x33\x62\x55\xc3\xe4\xee\x8c\xb0\x14\xa5\xe3\x80\x0e\xab\x4f\x06\x17\x69\xc4\x5a\x8e\xc3\x59\x5a\xa5\xe8\xee\xf1\x51\x8f\x24\x3d\x21\xd6\x63\x7e\x61\x75\xa4\xdb\xee\xee\xab\x20\x92\xb8\x10\xab\x9e\x88\xee\x51\x50\xd4\xf5\xc6\x38\x8a\x3a\x52\x1a\x62\x3d\xdd\x9f\xc6\x38\x52\x34\x6e\xe5\x58\xcf\xd9\x1b\x5d\x6b\xbe\x75\x37\xeb\x9c\xbd\x31\x8e\xd2\xad\xbb\x59\x93\x88\x21\xae\xd5\x7c\x63\x12\x17\x62\x9d\xa4\x9a\x74\x3d\x09\x32\xe9\xed\x96\x29\x25\xbd\x59\xf7\x49\xaa\x41\xac\xfa\x8b\x29\xf7\x88\xf5\x15\x51\xf7\x47\x5f\x5c\xef\xe0\xf6\x7a\x67\x9a\x0b\xaf\xd8\xea\x2c\xbc\x65\x25\x9d\x5b\xfd\xc2\xe2\x91\x8e\x5f\x3a\xac\x0a\xe9\x14\x64\x84\xb7\xcf\xf5\x0e\xd6\xdb\x24\xa1\xf2\x67\xf6\xc6\x14\x36\x22\xf8\xbd\x33\x85\x6d\xd2\x13\xa4\xba\x19\x0a\x21\x57\x21\x36\x25\x15\xe9\x09\xb1\x6d\xb3\x6b\x7f\xe6\x6e\x23\x9c\x2c\x38\xe9\x38\xb6\x63\x93\x98\xf0\x4b\xc7\x66\x90\x84\x5c\x85\xd8\xb4\xb6\x70\x52\xc7\x66\xae\x23\xb9\x0a\x61\x5d\xca\x20\x57\x21\x36\x05\x1a\x17\x83\xc4\xa6\x33\xaf\x3b\x8e\xd2\x0d\x1f\x73\x6c\x1a\x58\x5c\x19\x12\xdb\x24\x26\x24\xe2\x2c\x30\xe1\x7a\xc2\xd8\xd0\xfc\x7a\x17\x83\x3e\xdb\x00\x18\x3e\x21\x23\x21\x36\x0d\x2c\x32\x12\x62\x9b\x54\x22\x6e\xfa\xeb\xba\xb8\xe5\x6c\x03\x6e\xe9\x7c\x44\x54\x9d\xb0\x8b\x8e\xf4\xc3\x35\x23\xb1\xa9\x20\xe2\x97\x8e\xcd\x7c\x7d\xee\x1c\x09\x6b\x4a\x06\x77\x8e\xc4\xa6\xb9\xd6\x61\x35\x9b\x82\x93\x0b\x48\x62\x53\x56\x92\x13\x11\x9b\x9e\x3c\x2e\x20\x89\x4d\x0b\x2d\x44\x67\xcc\x36\x4c\x8e\x3a\x94\x1e\x76\x7d\xf8\x05\x51\xb7\x49\x59\x63\xfd\x59\xe2\x7a\x6c\xc7\xec\x03\x24\x70\x67\x0f\xb2\x27\x62\xd3\x6b\xc2\x25\x26\xb1\xe9\x00\x0c\xd1\x33\x54\xca\x8d\x26\xb1\x9d\x13\x3d\x70\x55\xc3\x0c\xd1\xd3\x48\x0b\x7b\xd3\xfa\x22\x95\x22\x36\xe9\x89\x54\x8a\xd8\x5e\xbb\x46\xa2\x58\x8a\xd2\xf1\x3a\xc6\xa6\x03\x03\x3f\x61\x6c\x06\x56\x48\xa5\x88\x7d\x99\x6d\x0a\x40\x74\x50\xa8\xf6\x65\xb6\x19\x00\xa2\x03\x1b\x99\x75\x29\x64\x5c\xc4\xae\x33\x8f\xbc\x8a\xd8\xb5\xa4\xf0\xec\x85\x57\x2b\x0e\x92\x2c\x62\x57\x9c\x70\xf1\x49\x58\x97\x32\xb8\xf8\x24\x76\x9d\x0f\xb8\xf9\xc2\x22\x95\x8e\x9b\x2f\xac\x3e\x19\x5c\x89\x12\xbb\x42\x83\xeb\x4c\x62\x6f\x13\x1d\xba\xd6\xa8\xc1\x4b\x17\xbb\xa1\xf9\xe1\x7c\x14\x0d\x01\xe7\xb0\x48\x65\x0c\xe7\xa3\x9c\x18\xce\xc7\x30\xfb\x10\x6b\x15\xb7\x21\x3a\x1e\xed\xe8\x0c\x2a\xcf\x1f\xe2\x96\x6e\x09\x7c\x68\xd7\xc5\x40\xfa\x45\x58\x7d\xd2\x71\xe6\x85\x35\x26\x1d\x67\x5e\xec\xa6\x44\x72\x1f\x4a\xec\xe5\xfe\x04\x83\xea\xf3\xe3\x72\x94\xd8\x4d\x89\xe4\x72\x94\xd8\x6b\x22\xca\x7c\xca\x99\xc2\xe6\x77\x03\x86\xb8\xf9\xc2\xea\x93\x8e\xff\x2e\xac\x3e\xe9\xb8\xec\x62\x9f\x47\x1b\x85\x6a\xd7\x92\xe2\x42\x95\xd8\x8d\xbf\x0c\x57\xc7\xa8\x3f\xbe\xb8\xd8\xe7\xe9\x45\xba\xed\x6a\x71\x5c\x9b\x12\xbb\xde\x67\x5c\x69\x61\xc1\xc9\x18\xae\x8e\xa1\x44\xfc\x6a\xb1\x1b\x9a\xa7\x96\x25\x76\xb5\xb8\xe1\x52\xe9\xa4\x1e\xae\x8e\x1e\x02\x6e\x89\x8c\xdd\x80\x21\xde\xb3\xd8\x95\x06\xc3\x75\xd3\x49\x3d\x5c\x2a\x03\x86\x5c\x18\x1a\xbb\xea\x19\xb9\x24\xb1\xeb\xa4\xc6\xd9\x15\xbb\xfe\x3b\x72\x49\xa2\xe9\x8a\x26\x97\x24\xda\x32\x7b\x0b\x00\x78\x24\xee\xa9\x68\x5a\x34\x38\xa1\xa2\xcd\xd3\xcb\x22\x36\xfd\xd2\x78\xa4\xa2\xe9\x8a\x1e\xac\x68\x5b\xdd\x12\xb8\x67\xd3\xdd\x36\x90\x2d\x6d\x73\x7f\xe0\x50\x6d\x1e\x7f\x96\xb7\x69\xfa\x73\xeb\x49\xcc\x6a\x13\x6e\x3d\x89\xa6\xb5\x9f\x30\x59\xab\x4d\x7a\xc2\x64\x9b\x8c\x19\x2f\x56\x34\x23\x81\x5c\x80\x1a\x4d\x2e\xcd\xad\xa7\xd1\x0c\xc6\xe0\xdf\x8a\x66\x5c\x9b\x6b\x53\xa2\xe9\x8a\x4e\x58\x69\x33\xc8\xcd\xb5\x29\xd1\x74\x45\x73\x31\x5a\xb4\xc9\xb2\x91\x6e\xcd\x3c\x45\x52\x5b\xa2\xe5\x6c\xc3\xcf\xca\xe5\x45\xd0\xb4\x9a\xb8\x81\x8e\x41\xed\x51\xf9\x33\x86\xd9\xc6\xec\x83\x99\xeb\xb4\xe6\x4a\x94\xf0\xfe\xb1\x8e\x87\x2a\xda\x10\x09\xc4\x4b\x33\x18\x33\xdc\x2f\x5d\x01\xb8\xab\xa2\xcd\xd3\xec\xe6\x1d\xf6\xe6\x7e\xc9\x98\x71\x4a\x45\xd3\xc2\x49\xb8\xa7\x45\x1d\x1d\x3f\x54\x34\xf3\x51\xa8\x28\x8a\xa6\x4d\xcf\xcd\x29\xd1\x70\x98\x75\xca\x8b\xa2\x69\xa0\x24\xcc\xaf\xcd\xa3\xed\x1e\x5f\x62\x0d\x27\x6c\xda\xf4\xdc\x82\x12\x4d\xa7\x35\x75\x43\xd1\x6e\x2f\xee\x84\xab\xb5\xc9\xbf\x11\xb1\xdc\xb4\xb6\x2d\x8b\xbb\x7f\xbb\xa8\x18\x0e\x4d\xd3\x05\xa7\x54\xb4\x67\xf1\x67\x74\xf0\x11\xca\x07\xf0\x33\x5d\x69\xb8\x84\xa2\x3d\xb7\x5f\x6c\xf3\x0a\x30\x9f\x4f\x4e\x7c\x00\x3b\xa9\x76\x85\xe7\x28\x9a\x24\x84\x17\x28\x2c\x1e\xe9\x78\x81\xa2\xbd\xae\x35\xcc\xaf\xab\x5d\x51\xcf\x13\xfd\x13\x1a\x5f\x6f\x01\x30\x3b\xe8\x00\x73\x3e\x09\x70\x08\x14\xc0\x44\xe7\x43\x94\xe2\x91\x6d\x21\x11\x28\xba\x29\x28\xb8\x84\xa2\xaf\xc3\x2f\x2b\xc0\xed\x17\x7a\xdb\x1c\x14\x89\xd8\x37\xef\x45\x85\x47\xf6\x6d\xf6\x06\xa2\x8a\x13\x0a\x75\xa2\xef\xb3\x0d\x58\xef\xee\x36\x7c\xa8\xef\x2e\x15\x76\x66\x6f\xae\x28\x76\x66\xf7\x62\x55\x5c\x33\xd1\xf5\xab\x51\x9b\x13\xbd\x4d\xdc\xe8\xc0\x50\x29\x45\x37\xd1\xfb\x1c\x07\x74\xba\x5d\x73\x76\x2c\x04\xe9\x38\x6d\xa2\x9b\x82\x42\x01\x4d\x74\xc5\x09\xde\x98\xe8\xe9\xcf\x20\xef\x5e\x6e\x16\xd2\xba\xeb\x2e\xd0\x7f\xd2\xf5\x91\xe9\x3f\xe9\x8a\x06\x5d\x26\x7d\xcc\x2f\xe0\x66\xa6\x97\xee\x8f\x3e\x26\x3a\x20\x3a\x5c\x1d\x88\x69\x5e\x6a\xac\x63\xc4\x62\x91\x9e\x98\x78\x5d\xcf\x57\x71\x2c\xbb\x7a\x89\x3e\x8a\x2e\x61\xe8\x96\xb0\x24\xa4\xeb\x96\xe8\x9f\x00\xd8\x16\xb2\x8f\xa2\x5f\x6e\xfd\xee\xcf\x5e\x7f\x06\x3a\x12\x86\x2e\x86\xce\x85\x86\x0b\xd9\x47\xd1\xef\x79\x6f\x2d\x83\xea\x06\xd3\xab\xd0\x11\x0d\x5d\xaf\x42\x57\xe5\xd1\xc0\xe7\x12\xb7\xaf\x03\x76\xce\xa3\x4c\x05\x44\x58\x05\xd2\xa9\x25\x88\x58\xa4\x1f\xec\xa3\x30\x4c\x43\xf6\x7f\xc4\xe2\xea\x40\x0b\xb1\xb9\xf0\x9c\xf8\xd0\x3d\x55\x10\x46\x7c\x1a\xcb\xf7\x25\x00\x6e\xbf\x7c\x93\xb3\x88\xa3\x6b\x7e\xc6\xee\x7c\x38\xb0\x56\x74\x74\x6d\xd1\xd8\x25\x0c\x7f\xf6\x9d\xaa\x0f\x18\x3f\x63\x98\x96\x7b\x74\x32\xe1\xc3\x72\x8f\xae\xd1\x19\x9f\x0a\xb4\x2d\x24\x0f\x45\x78\x49\x2f\x97\xbf\x44\x34\x67\x8e\x55\x14\xdd\x71\x11\xe5\xd1\x67\x6f\x60\xd4\xdd\x22\x44\x79\xe8\xe4\xd5\x36\xb5\x44\xa4\x6b\xd8\x45\xba\x74\x50\x40\xa4\x14\x80\x24\xb6\xf6\xa3\x73\xab\x62\x44\xba\x40\x88\xe5\x48\x17\x15\x49\x1c\x29\xe1\x43\x28\x56\x85\x74\x2e\x5f\x8c\xd0\x06\xd6\xac\x8a\x21\x3a\x10\x4a\x18\xc2\xd4\x2a\x8a\xe1\xe4\x10\xb1\x61\xc4\x44\xab\x28\x8c\x67\x6a\x15\xc5\x21\x11\x8b\xb5\x02\x40\x13\x89\xe2\x91\xef\x8b\x3f\x73\x50\xe4\x44\x9c\x6e\x38\x32\x3a\x4e\x37\x2f\xfd\xe2\x16\x41\x9d\x31\x29\x00\x9e\x1f\xa7\x88\x26\xf3\x39\xe7\x38\x60\x7d\xce\xae\x41\x54\xe5\x48\xe3\x29\xae\xd9\xb5\x5f\xec\xba\xfc\xe2\x95\xcc\xb0\xec\x50\x39\xd2\xf6\xe1\x7a\xc1\xef\x67\x7e\x99\x3f\x63\xd0\xdb\x05\x41\x12\x5b\x7d\xd2\x35\x77\x62\x8a\x06\xb8\x80\x97\x70\x76\xcd\x9d\x78\x5c\x03\x97\xea\xb5\x0d\x94\x16\x5a\xd4\x5c\x97\x18\x29\x9b\xd7\xb8\x48\xf3\x09\xc9\xd3\x8e\x9c\xcc\x1c\xad\xc7\xea\x93\xae\xd5\x90\xcb\xec\x3a\x01\x6e\xbf\xf0\x33\x1c\xc1\x5d\x0b\x20\x0d\xac\x68\x01\xe4\xe6\xa9\x62\xdd\x72\xe3\x54\x71\xe7\x7f\x50\x49\xf2\x01\x0c\x6a\xf8\x44\xcd\x3c\xf7\xdd\x2f\x3b\x80\xcb\xdb\x04\x9c\x29\x04\xe9\xa5\xa2\x5d\x95\x3b\x0d\x4c\xaa\x65\x53\x8a\xf2\x75\xc0\xcf\x5a\x17\xe0\x67\x6d\x76\xc0\x14\xe6\x2d\xd9\x90\x6a\x6a\x37\xab\x17\x67\xf7\x67\x10\x53\x76\xd7\x0d\xfa\x49\x79\x3e\xb7\xb8\x44\xc6\x9c\x02\xd3\x0e\xc7\x61\xad\x29\x30\xf9\x00\x66\x1a\x97\x00\x93\x0b\x11\xed\x76\x20\xa2\x08\xb4\xcc\x4d\x80\x41\x53\x74\x20\x40\x0b\x4c\xba\xaa\x70\x6a\x83\xa8\xfd\x5a\x6d\xd2\xd5\x7e\xa9\x36\xf9\x3a\x00\x28\x17\x11\x51\x97\x35\xdb\x30\xa8\xde\x67\x35\x59\x4b\x4f\xfa\x80\x98\x28\x3d\xf9\xda\xb0\x3a\x63\xa2\x43\x1b\x33\xbd\x48\x9e\x0e\xeb\x50\x3a\xc9\xd3\x91\xca\x23\xae\x06\x8c\x54\xb9\xe3\x36\xc0\xc8\xd3\x0e\x3c\x62\xa6\xc3\xa8\xaf\xa6\xf4\xa3\xba\x99\xd7\xea\xcf\x98\xe9\x24\xa6\x8a\x9f\x31\xcc\x94\xd2\xb8\x64\x26\x52\x29\xc4\xbd\x32\x91\x2a\x54\x2a\x88\x79\xbb\xdc\x28\x7b\xf9\x88\x11\xea\x99\x75\x29\x9d\xfb\xef\x22\xd5\xae\x86\x87\xfe\xf5\x98\xa2\x9e\x59\x70\x12\x6a\x57\x89\xa6\x14\x6a\x57\xf9\xbe\xfe\xec\x1b\xa7\x14\x2f\xbc\xce\x10\xb5\x7a\x2e\x90\x42\x56\x78\x84\xea\x4c\x6d\x6e\x38\x52\xa8\xd0\x60\x42\x75\xa6\xf6\xe6\x17\x81\x53\xe0\x1b\xb4\xda\xfc\xd2\x01\x42\x80\x71\x50\x5a\x82\x2b\xe1\xa2\x54\x5a\xb8\xa1\x25\xaa\x89\x28\xab\x53\x5e\x4a\x4e\x8e\x72\x54\x88\x35\x87\xbe\x72\x76\x3d\x00\xc2\x9f\x09\x20\x4e\x48\x92\x0b\xaa\x35\x3e\x60\x05\x10\x6b\xc8\xbb\x08\x78\x04\x39\xca\x51\xf3\xc8\xa1\x91\x59\xc7\x11\x24\x2c\x47\x95\x58\x43\x5c\x55\xb3\x03\x00\x8e\x4f\x28\xd7\x6b\x38\x6d\xc8\xce\xd2\x8d\x50\x94\xd7\x98\x6d\xc0\xfa\x70\x79\x21\xc8\x3a\xe6\xa0\x74\x70\xd8\xc6\x45\xe4\xc8\x85\x32\xba\x60\xbf\xb1\x88\xdb\x3c\x2e\xdd\x2f\x6e\xb0\xb8\x5d\x52\x00\xd4\x59\x97\xbd\x89\xce\x3d\x07\x65\x75\xd0\x6d\x42\x91\x6a\x81\x46\x2c\x62\x70\x3b\x53\xe4\xab\xd5\x1a\xb1\xd8\x46\x96\xcd\x05\x31\x51\x72\x69\xb2\x06\xa3\x1e\x37\x0b\x8a\xae\xd7\xae\xa1\xe8\x01\x97\x0e\x65\xe5\x58\x24\x14\x8c\xdb\xb1\xb8\x73\x98\xb0\x63\x11\x03\x28\x9a\x22\x8e\xef\x8b\x6d\x5c\xd1\xf9\xc5\xad\x87\xd6\xc7\x6a\x6f\xc8\xca\xb1\x3a\x28\xe2\x71\xa8\x99\xaf\x02\x9b\xfb\x03\xe1\x8f\x5d\x74\x20\xfc\x31\x0f\xec\xfc\xe2\xa0\xf3\x8b\xeb\x06\x4b\x18\xbb\x3b\x07\x4b\x18\x4d\x02\xc4\x3a\x1e\xcd\xd5\x99\xc0\xc4\x0d\xac\x7d\x22\x80\x7b\xce\x62\x4c\x8e\x8b\x48\x1d\x3e\x04\xc0\x4d\x64\x31\x26\xc7\x45\xbe\x8e\x90\x16\xd0\x24\xc6\x64\xbf\x76\xe0\x6d\xfd\x24\xb3\xc6\x98\xbc\x18\x2d\x7b\xa4\x5b\x82\xe4\x1d\xe9\x22\xc2\x29\x86\x5a\xce\xea\x38\xe5\xf1\x47\xd8\x8e\xe1\xba\xa1\x72\x8f\xe1\x1a\x38\xe8\x98\x1d\xf8\x05\xa1\xbe\x3a\xe8\x70\x72\xc8\xe4\x71\xd8\x06\x8d\xc5\x82\x8c\x50\x22\x8e\xc3\x45\x84\x71\x59\x9d\x11\x8a\xc7\x71\xb8\x06\xe2\x86\x62\x13\x8a\xc7\x41\x21\x6c\x7c\xa2\xee\x27\x0c\x73\x9c\x52\xb4\xe8\xa9\xdb\x90\xaa\x18\x56\x6b\x84\x12\x72\x9c\x2c\x10\x79\x8b\x61\x81\x46\x70\xdb\x78\x58\xa0\x11\xdc\x36\x1e\xe3\x4a\x7f\x06\x46\xd2\xd3\x66\x07\x58\xc7\xa1\xe8\x1b\xf7\xee\x17\x06\x95\x36\xc8\x4e\x8c\x21\x2f\xe6\xea\x95\xb0\xf2\x22\x94\x90\xe3\x19\x7e\xa1\x6b\x52\xba\x42\x09\x39\x34\x7b\xc9\x41\x8c\xf1\xce\x0e\xc0\xed\x9d\x6d\xc0\x4d\x96\xad\x20\x1d\x78\x44\x63\x9d\x6d\x5e\x81\xaf\xcd\xa1\xad\xc0\xd5\x2b\x71\xe0\x1e\x0d\x45\xdf\xb1\x74\xbf\x0c\x80\x89\x81\x3f\xe3\x5c\x90\xc4\x18\x16\x5b\xc4\xea\xcf\x56\xd1\x41\xda\x59\x79\x11\xeb\xfc\x59\xf3\xcb\x06\xe0\xb6\xce\x9f\x0d\x01\xbf\xcc\xae\xbf\x99\x1e\x9b\x5d\xa3\x77\x59\xad\x11\x5c\x7a\x16\x87\x3a\x14\x19\x8d\x71\x6c\xb3\x0d\x3f\xdb\x3d\x4b\xf8\x28\x8e\x7d\x7e\xa1\x8d\x04\xa9\xdc\x3b\xb4\x81\x37\x7f\xd6\x3c\x3e\x70\xe9\x43\x4d\x89\xf4\xc6\xa0\x26\xe3\x03\x98\x9c\x82\x46\x51\x77\xcc\x27\x44\x30\xf9\x8e\xee\x22\x4e\xc0\x73\x80\x95\x77\xf8\x4c\x07\xb7\x99\xc5\xe1\xcb\x1c\xca\x3d\x4a\x37\xbe\x9f\x81\x5b\xb8\x3a\xb0\x79\x4a\x37\x3e\x00\x0c\xa4\x5b\x6e\x33\x8b\x23\x67\x1b\x7a\x93\x3a\x49\x21\x8c\x43\x1b\x84\xac\xc1\x38\xb4\x41\x48\x14\x8c\xa3\x3c\x89\xfe\x4c\xe1\xc4\x1d\x2a\x61\xdd\x46\x28\x6c\x8f\x72\x17\x6c\x33\x9c\x0f\xf2\xf5\x90\xbc\xb9\x43\x25\x0e\x25\xd5\x3a\x01\x5f\x4e\x41\x8a\x1e\x63\x62\x00\x70\xf8\x8c\x0a\xb2\xd2\xea\x8c\x58\x27\xe0\xe4\x10\x41\xc7\xa4\xb9\x09\x48\x73\x88\xa0\xe3\x74\x0a\x48\x9d\xe3\x9e\x1d\x80\xf5\x53\x7e\x61\x0d\x1e\xd7\x1a\x41\x73\x28\x4e\xb8\xb0\x3a\x0e\x5d\x40\xdc\x51\x1d\x96\x5d\x84\x02\xed\x78\xdd\x53\xf4\xc8\x63\x52\x89\xbd\xbd\xb3\x83\x6f\xd0\x73\x71\x75\xe8\xfa\x9c\xc7\x9f\xae\xcf\xc5\x69\xd3\xf5\xb9\xce\x71\x12\x40\xfa\xa1\xeb\x73\xf5\x20\x21\x82\x2c\xd5\x88\xd5\xae\x57\x57\x07\x79\x74\xce\x73\x6d\x07\x9b\x18\x20\x9c\x2c\xbb\x08\x65\xd8\xb9\x4f\x0c\x68\x33\xcf\x35\x82\xe6\xdc\x5d\x2a\x04\xcd\x39\xcf\x35\x82\xe6\xfc\xeb\xcb\x36\xfc\x4c\x65\x68\xf5\x67\x3e\x66\xb3\xe6\x4f\x35\xcc\xb3\xbb\xfb\x08\x9e\x73\x9e\x66\x84\xd5\xa9\xde\x4f\x7a\x63\x9c\xe1\xa2\x22\x2a\x28\xd0\xf8\x00\x86\xf2\xcd\x18\x85\xc8\x99\x4e\xc9\x2f\xe9\xda\x23\x44\xac\xbc\x08\x85\xc8\x59\xb3\x6b\x66\x51\x1e\x7a\x04\xcf\x59\xae\x23\x72\xe3\x2c\x8f\x9c\x1d\x28\x92\x36\x3b\x18\xf3\x67\x8c\x33\xa4\x5b\xd4\xda\x73\xb8\x0c\x98\x6f\xe7\x61\xd7\xc8\xa7\x53\x91\xc4\x8d\xde\x71\x1e\xae\xb0\xe3\x28\x78\x36\x44\xd2\x79\xfa\xda\x0f\xa2\xe1\x3c\x5d\x6e\x44\xd2\x49\x78\x2b\xc8\x6f\x8f\x13\x9f\x52\x6c\x48\xae\x93\x10\x73\x6c\x8b\x1d\x5c\x02\xb6\x99\x5d\x83\xe8\x39\xdf\x1b\x02\xb8\x5c\x03\xb1\x56\x04\x91\x13\x1f\xe7\x35\x11\x65\x0a\x2a\x6e\x8a\x93\x53\x5d\x4d\x71\x72\x5e\xf6\x86\x08\x3a\x6f\x09\x05\xb9\x67\x89\x88\xaf\x17\xc5\xa9\xe3\x94\xb4\xd0\xe0\x45\x86\x6d\xd9\x9d\xdc\x5b\x02\x74\xa0\x9e\x4f\x26\x68\x5c\x8a\x06\x32\x41\xe3\xa2\x3e\x29\xe4\xf9\xd7\xe2\xa0\x30\xf3\x4b\x0b\x80\xb4\xd0\xb0\x44\x24\xe4\xec\x97\xa2\x41\xfe\x7d\xc9\xf3\x49\x18\x8d\x6b\x9b\x5f\x04\x9a\x5f\xbe\x69\x5f\xfb\xc4\x2d\x01\xfe\xed\x99\xa5\xb8\xd4\xbb\xb8\x84\x25\x2e\x82\x0a\x21\xcb\xbe\xf6\x89\x35\x80\xb4\x41\x5e\x69\x50\x15\xf2\x01\x60\x2d\x6d\x90\x6a\x1e\x97\x4a\x18\x57\xad\xc4\x35\x5f\x7d\x82\xb3\x5b\x22\x12\x72\xf6\x4b\xf5\x4c\xfe\x7d\xf5\x61\x1b\x01\x77\x1b\x66\x7e\xc9\xcc\x77\xc4\xa3\xf5\x22\x21\xcb\xbe\xa4\x92\x1d\xf1\x78\x49\x25\xf2\xef\x4b\x53\x45\xfe\x7d\xa5\x18\xc0\xb2\x2f\xe9\x47\xc6\x7c\x69\xb7\xec\x2e\xbc\x76\x8b\x5c\xda\x62\x91\x90\x17\x5f\x35\x7f\xc6\xa0\x35\x07\x65\x9c\xf2\x24\x76\x7f\x76\xfb\x85\x41\x87\x83\xc2\x16\x2f\xb5\xb8\xdd\x2d\x39\x3c\x3b\x30\xa5\x4b\x57\xd3\xee\x2e\xa8\x91\xc9\xd5\x2c\xfc\x08\x19\xd9\x25\xcf\xdf\xdd\x92\xcb\x9d\x43\x5f\xbd\x2e\x31\x80\x87\x5c\xb2\x79\x79\xc8\x75\x8b\xb5\x0b\xaf\x71\x21\x43\xb9\x6e\x17\x1e\xe6\x70\xcd\xa3\x0c\x73\xb8\x8c\x1b\x90\xf3\x1a\xd7\x63\x1b\xc8\xd9\x92\x90\x90\x9c\xaf\xc7\x36\x90\xf3\xa5\x9c\x20\x35\x36\xae\x57\x0c\xa0\xac\x6b\x9e\x78\x24\xef\xad\xa5\xb1\xb7\x9f\xd5\x92\xc7\x6d\x4c\x80\x7b\xe3\xe3\xd6\x8d\xb4\xb3\x93\x16\x82\x84\xc4\x75\xab\x29\x71\x17\x4d\xdc\xeb\xec\x3d\x00\xd2\x9f\x31\xae\xca\x91\x64\x67\x21\x48\x48\x76\x37\xc9\x1c\x21\x71\x51\x15\xf2\x75\xf0\x21\x7e\x6f\x9e\x73\x76\xff\xc6\xaf\x1b\x12\x97\x85\x20\x21\x3d\xdd\x9b\xdb\x8a\xd9\x7b\x6b\x92\x93\x9f\x1b\xb7\x82\x47\xaa\xb9\x77\xa7\x80\x58\xbe\x77\x31\x40\xa9\xbc\x77\x77\x1f\x19\x7d\x37\x27\x87\xea\x78\xb7\xf9\x85\x41\xf1\x1c\x85\xe7\xfc\x0e\x97\x1b\x33\xf1\xf6\x3d\x32\x0f\xf0\xed\xab\x63\x1e\xd3\x5b\x71\xb2\x73\xfe\x2c\x2b\x09\xcf\xdf\xed\x73\x62\x1e\xb9\x5b\x33\x9e\x5b\xf5\xe3\x56\x39\x22\x8d\x37\x6e\x2e\xf4\x09\xde\x0f\x88\x5b\xd9\x42\x9a\x75\xdc\x35\x7f\xc6\x38\xda\xe7\xfb\x2e\x30\x7b\x63\xa6\xc3\xf9\x70\x96\xee\x21\xa2\x1c\x92\x5b\x7d\x68\x47\x94\xdf\x9a\x3b\xf3\x90\x1c\x8e\x03\x79\xdf\xca\x89\x79\x0e\x4e\xdb\x40\x0e\xf7\x39\xdb\xd0\x81\x5a\x0f\x89\xc4\x71\xab\xf5\x90\x48\x1c\x37\x91\xe8\x98\x27\x44\x2f\x2a\x59\xc5\x61\x25\x49\x90\x66\x1d\xf7\x35\x3b\x60\x41\xe4\xf9\x73\x1b\x35\xd6\xb9\x52\x3f\xac\x31\x89\xb9\x8d\xb7\x6b\x80\x9d\x79\x6b\x90\x90\x96\x1c\xf7\x2d\x17\x80\x3a\xef\xdb\xb5\xc6\x43\x70\x4f\xe2\xc2\x9a\xbc\x9f\xd9\x1b\x1d\x48\x5c\x73\xb3\x54\xc2\xb8\xb2\x26\x2c\x38\x89\xb9\xd6\xaf\x6d\x5c\x5e\x29\x6d\x2e\xe2\xeb\x82\x60\xed\xdf\xaf\xe8\x20\xd4\xef\x77\xf6\xf6\x75\xfd\x4c\xa9\x83\xb4\x7e\x16\x17\x04\xf2\x7e\x26\x99\x41\xde\xcf\xa4\x1f\x6c\x7a\x8a\x45\xbe\x2f\xdf\xa0\x8f\x31\x35\xee\xab\x89\x67\x1e\x7f\x24\xef\xa3\x13\x8a\x6b\x7b\xe2\x99\xc7\x1f\x06\xf3\x28\x68\x9c\x8f\xf5\x21\x21\x6e\x8f\x31\x0e\x72\xac\xc3\xfa\x90\x98\x88\xaa\xab\x4d\x44\x9b\xeb\x06\x4f\x79\xda\x9c\x02\x1d\xb4\xf9\x33\x3a\x20\x97\x29\xfe\xfa\x33\xa9\x11\x99\xfc\xf0\x16\xeb\x42\xc2\x75\xf8\xda\x4a\xcc\x0e\x7c\x37\x70\xfe\x2c\x76\x7f\xc6\xe4\x08\x8c\xc7\x5f\x81\x53\x80\xc9\x65\xf7\x67\x02\x60\x40\x26\x75\x3c\x1e\x7f\x6e\xb2\x89\x47\x01\x40\x26\x75\x50\xf8\xf1\x7d\x01\x37\x55\x2b\x32\xa9\xe3\x51\x34\xf0\x10\x40\xf8\x0a\x4a\x98\x22\xfd\x10\xac\x88\xb6\xfe\x54\xc3\xb4\x10\x24\xb8\xb2\x26\x1e\x49\x88\x8b\x69\xe2\x21\x93\x28\x4c\x99\x7e\x74\xa4\x4e\x8c\x0c\x5e\x4c\x24\x4e\x31\xda\x04\xd2\x2f\x6c\xb8\x7a\x17\xf7\xd7\xc4\xa3\xaa\x65\x3a\xb7\x55\x21\x61\x9a\xf5\x73\xb9\x74\x22\x2e\xa5\x99\xdb\xfd\xe8\x30\xe3\x2e\x9a\x78\x48\x69\x0f\xf3\xa7\x2d\x11\x09\xf3\xa7\x9f\x7b\xa2\xc3\xcf\xee\x21\xc0\x9a\x3c\xce\x07\x31\xf6\x68\xac\xcf\xf9\x10\xbe\x0b\x6e\x8f\x09\xde\x4b\xf9\xbe\x30\x05\x0d\x94\x89\x35\x59\xec\xc1\x85\x31\xf1\x48\x0e\x62\xfd\x2a\x92\x4c\x0e\xf7\xdd\xd4\x68\xf0\x21\x9e\x4a\xfd\xbe\x04\xc0\x6c\x93\x00\xa2\x03\x87\xb2\x2a\x24\xb8\x16\x26\xde\xd5\x35\xc0\xec\xf5\xd5\xd2\x30\x69\xfb\x55\x09\x73\xa6\xef\x76\x08\x30\xe8\xe6\x8a\x82\xdb\x6b\x24\x83\x87\x0e\xe2\x55\x57\xe3\x39\x83\xf0\xf5\x95\xe0\xc6\xff\x78\x15\x1a\xdc\x5f\x13\xaf\x21\x0a\x1e\x56\x0c\xdf\x08\x0d\x2e\x72\x89\x57\x71\xc2\xf5\xff\xf1\xaa\x91\xcd\xc9\xf5\xf9\x85\x41\x8d\x44\xcf\xf9\xf8\xf4\x26\x17\xb7\xc4\xab\x46\x36\x27\xa7\xd4\x99\xf3\xf1\x49\x4c\xd3\xb9\xdf\x49\x35\x08\xce\xf9\x24\x26\xf7\xae\xc4\xab\xe2\xd6\x90\xa2\x6f\x4c\x0c\xc0\x5a\x8d\xcc\x0c\xee\x37\xed\x1a\x17\xf1\xab\x46\x66\x46\x3a\x6f\x50\x7e\x00\xb8\x4d\x4a\x43\x39\xf2\x2d\x97\xe0\xa6\x94\x78\x95\x47\x73\x75\x34\xc9\xb9\x0f\x25\x7c\xbb\x25\xb8\x0f\x25\x5e\x15\xb7\x39\xed\x49\x9d\xf0\xef\x77\xcc\x0e\xe8\x7a\xcc\x0e\x04\xe4\x02\x30\xf3\x77\x92\x2a\xbc\xf8\xd5\x17\x67\x7e\xfb\x7b\x38\x05\x17\xe4\xf0\x24\xba\x06\xc7\xec\xc0\x9f\xcd\x0e\xc0\xe0\xf0\x1c\x60\xb5\xbe\x93\x4e\x61\x98\x16\x98\x44\x2b\xbf\xb8\x88\x2e\xd5\x29\x31\x95\x80\xc4\x04\xc3\x7c\x2f\x27\x07\xcb\xf6\xdd\xc0\x30\x15\xfb\x55\x0d\xe4\xba\x99\xb0\x72\x24\xcc\xcb\x7e\x0d\x18\xce\x45\xbc\x67\x1b\x30\xb8\x4f\xbf\xd8\x81\x47\xcc\x45\xa4\xa6\x24\xcc\xd8\x7e\x09\x7d\x84\x19\xdb\xef\x33\x7f\x06\x6e\x12\x2d\xf7\x94\x84\x05\x26\xc1\xeb\xc2\xf1\x2a\x9c\xb8\x47\x26\x78\x60\xe5\x03\xc0\xcd\xa0\x48\xff\xb8\x67\x2e\xcb\x6c\x93\x00\x92\xf3\xb7\x88\xe9\xcb\x29\xc1\x3d\x25\xe9\xcb\x29\x41\xc6\x76\x5a\x6d\x12\x7d\xfd\x99\x86\x99\xbe\xc2\x1d\x7d\xa5\xc3\xd5\x27\x66\x3f\xae\x96\x3e\xab\x12\xdc\x5b\x92\x8b\x96\x14\x37\xf1\x27\x05\x27\x1f\x12\xa0\xa7\xb4\xe3\xf2\xfd\x5c\x26\xdd\x16\xb8\x9a\x41\xc2\x16\xe5\x42\xe6\x7b\x70\xd3\x48\x2e\xbb\xcb\xfd\xed\x57\x2e\x93\x88\x07\xb3\xd0\xe0\x22\xeb\x3b\x17\xc3\x34\x5c\x66\x93\x8b\x61\x1a\xb2\xf4\x73\xd1\x19\x41\x0a\x78\x2e\x0a\x38\xae\xac\x49\x9e\x55\xf9\x00\xa6\xa0\x4c\x23\x39\x3c\x2d\x38\x09\x6e\x27\xc9\xa5\xcf\x36\x60\xad\xea\xd8\x77\x3a\x98\xa4\x3a\x40\x54\xb3\x8a\x14\xfd\xb4\x48\xc5\x07\x78\x73\x99\x44\x3c\xc0\x40\x22\x26\xd5\x3c\x7d\x3c\x25\x48\x35\xcf\x25\xe7\x38\xcc\xd4\xe4\x14\x4e\x4c\x5a\xcb\x12\xdc\x53\x92\x8b\xd1\x1c\x8e\x4f\x2e\x24\x31\x06\x49\xe8\xb9\x94\x0b\xd2\xf8\x42\x12\x63\x90\x77\x9e\x8b\x82\x94\xab\x71\x72\x31\xce\xc3\xd5\x38\xc9\xab\xf1\xdf\xcf\xc0\xe0\xf0\x98\x36\xa6\x70\xcc\x71\x98\x82\x7e\x35\x0e\x63\x2e\xca\x4a\x72\xc8\x93\xc2\x96\xef\x0b\x1d\x48\x83\x24\x94\xa7\xef\xc5\x2f\xf3\x30\x5e\xce\xb4\xf3\xb3\x6b\x7e\x61\x41\x54\x2a\x49\x35\x4f\xab\x4f\x82\x54\xf3\xa4\x78\x64\x5b\xe6\x31\xbd\xdd\x92\x10\xf0\x67\xc1\x38\x3a\x12\x28\x39\xc8\x65\x52\x4d\x30\xb9\xd7\x43\x1f\x4c\x41\xaa\x99\xa7\xf7\x9d\xbd\x7d\xf3\xa1\x5e\xe4\xfb\xd2\x00\x5c\x83\x8f\xdb\xe4\x6a\x34\xc7\x73\xbd\x4e\x12\xfa\x58\x4f\xae\xfa\xe2\x78\xc1\x20\xa9\x17\xf9\x7e\x46\x1b\xed\x23\xf2\xdb\x73\x35\x00\xcf\x4d\x3d\xe9\xeb\x24\x41\xb2\x7b\xfa\x22\x7c\x90\xc5\x9e\x56\x81\x04\x89\xeb\xc9\x1b\x24\xdb\xc2\x7d\x3c\xb9\xee\xf3\x67\x60\xa0\x23\x41\xca\x5a\x3d\xe4\xbc\x71\x91\x6b\x93\x64\x12\x0c\xe6\x89\xff\x78\x71\xae\xba\x18\xb8\x77\x25\x7d\x69\x24\xb8\x6a\x25\x29\xef\xf8\x3a\xa0\x8d\xfa\x1d\xf7\xae\xe4\x6a\x36\x8b\x94\xb5\x76\xa7\x0d\x1b\xb1\xf0\x23\xb8\x84\x25\x57\x63\x43\x52\xd6\xda\xe7\x38\x20\xaa\x8f\x99\xe7\x33\x72\x0d\x28\x98\x17\x33\x72\xf5\x59\x67\x52\xda\x73\xd5\xc0\x22\xa5\x3d\x2d\x09\x09\xb2\xd8\x73\x4d\xf7\x07\x3a\x5d\xf5\xca\x49\x9a\xab\x92\x8a\x2c\xf6\x5c\xcb\x29\x40\xa7\xbe\x34\x12\x24\xae\xe7\x3a\x8f\x3f\x34\x67\xe1\x47\x70\x39\x4a\xae\x64\x6d\x05\x97\xa3\xe4\x3a\x69\x01\x6a\x5c\xd5\x23\xb9\xe8\x24\x57\xf5\x48\x52\xda\x73\xd5\x45\xc7\xad\x41\xe9\x13\x22\x11\xcb\xcf\x2a\x7d\x92\xaa\x90\x6d\x91\x20\x57\x85\x15\x57\xa2\xe4\xaa\x52\x29\x75\x5a\xfb\x11\x24\xae\xe7\x7a\xcd\x9f\x31\x94\x41\x1f\x72\xd5\x73\xbd\xc4\xb5\xb1\x26\xea\x84\x24\xae\x27\x85\x20\xdf\x17\xba\x36\x02\xc4\x25\x26\xe9\x33\x24\x11\x1e\x6d\x0d\x2e\xca\x4a\x72\x55\x5b\x94\xf0\xd7\x7b\x76\x0d\x06\x12\x57\x78\x66\xb5\xbe\x7a\x03\x1d\x6d\x2c\xde\x96\xce\xd5\xa0\x4f\xef\xac\xe3\xeb\x51\x80\x25\x58\x22\x12\xdc\xeb\x91\x9b\x71\x53\x59\xc2\xa6\xb6\xc8\xbd\x1e\xb9\x29\x9f\xb8\x15\x29\xb7\x75\xb6\x19\x00\x2e\x37\x2c\x81\xf7\x45\x3e\x80\x36\xab\x44\xdc\xfd\x19\x9c\x23\x38\x58\x9b\x9e\x08\x1e\x1b\xc9\x6d\xf3\x5c\xc0\x2c\x36\x0d\x2e\x99\x85\xc5\x23\x3e\x86\x9e\xbe\x49\x12\x64\xf2\xe7\xa6\xf5\x45\x26\x7f\x6e\xea\x91\xb2\x91\xad\xf9\x33\x36\x6b\x33\x88\x2a\x7f\xd8\x74\xe6\xc9\x12\x36\xc9\x8e\x4b\x31\x72\xf3\x6d\x76\x2e\xc5\x48\x9e\x1d\xd9\x16\x8a\x61\x72\x33\x4c\x23\x7f\xf0\xa5\x91\xe0\xea\x8b\xdc\xe6\xa3\xeb\x2e\xa2\x2e\xef\x70\xdd\xd4\x16\xe5\x1c\x9b\x36\x16\xa9\xf3\xb9\x49\x4f\x64\xcb\xe7\xa6\xa0\x91\xa7\xf8\x20\x49\x84\x8b\xa8\x82\x28\x83\xd9\x54\x10\xe5\x29\xd6\x8b\x44\xb8\xbc\x39\x31\x60\x79\x55\x10\xe5\x29\x5b\xb9\x0b\x49\x6f\xba\xec\x28\xa0\xc9\x6d\xcc\x9f\xd1\x66\x38\x53\xb8\xcd\x36\x3c\x2e\x70\x9b\x6d\xd2\x93\xbb\xa0\x7e\x17\x2e\xef\xa4\x27\xb8\xf4\xa6\x6c\x21\xf7\x3e\x37\x3d\x11\xe1\x5a\x5f\xb3\x03\x30\xd0\x99\x47\xee\x7d\x6e\x6a\x71\xb2\x9e\x6d\x12\x46\x80\xce\xa4\x05\x17\x5e\xe7\x03\x25\x3c\xb9\xe9\xcc\x0b\x77\xe1\x76\x0d\x5c\x5e\x5d\x0c\xe1\x22\x3e\xb3\x0d\x83\x3e\x9e\x2a\x94\x94\xcd\x70\x10\xf5\x3c\xb9\x3d\xb3\x03\xa6\xf0\xba\xd6\xb0\xb8\x4d\x9b\x4a\x16\xb7\x6b\x1f\xc9\xbb\x7c\x90\x24\xc8\xe4\xcf\x5d\x2b\x88\xfb\x9f\x72\x37\x66\xc3\x43\x14\xb9\x4f\x09\x02\xef\xda\x75\x24\xc8\xbb\x76\x3d\x6c\x5c\x97\x91\xbb\x42\x83\xdb\x97\x72\x37\x39\x40\x56\xb3\x2b\x34\xa8\xc0\xc9\x5d\xfd\x87\x52\x9a\xdc\x95\x06\x21\x3a\xf3\xc0\x8a\x81\x3e\x66\x72\xef\x73\xef\x65\x9b\x04\xb8\x04\xbe\x35\xd8\x8d\xc4\xc8\x9e\x76\x43\x89\xdc\xbe\x94\x3e\x2e\x12\xa4\xe8\xe7\xae\x66\x14\x3f\xad\xf4\x49\x9f\x21\x89\x18\xf6\xfe\xda\x0c\xf4\x72\xe2\xca\x50\x1e\xed\x74\x19\xcc\x1c\x20\x99\x3f\x77\x13\x67\xb8\x9a\x29\x77\xb5\x2b\x32\xfb\x73\x37\x3d\x8b\x7b\x9a\x72\x57\xbb\x92\xc5\x59\x22\x12\xe9\x02\x95\x93\x5d\xc1\xc0\xd8\x64\x3a\x59\x72\xb5\x22\x9d\xac\xaa\x56\x3a\x59\x29\x80\xcb\x93\x72\x57\xd6\x70\x55\x44\xee\xea\x5d\x5c\x9e\x94\xbb\x09\x96\x5c\x9e\x94\x96\x88\x44\x8a\xa8\x29\x35\xdc\xa4\x94\xbb\x7a\x17\x37\x29\xe5\x2e\xa1\xa4\x58\x1f\xa2\x23\xd6\x26\xdb\xa4\x88\xea\xe6\xe3\x5a\xa5\xdc\xf5\x44\xc8\x7e\x7d\xe1\x24\xd2\x41\x75\xf3\xc9\xfc\x2c\x38\x89\x74\x50\x89\x2b\x1d\xd4\x14\xe3\xd8\xfd\xe2\x82\xec\x7e\x11\x6b\xf8\xf7\x2e\x3d\xc9\x3d\x2d\x38\x09\xae\x8a\x48\x9f\x3b\x09\xb2\xf2\x73\x7f\x1c\xc7\x0e\x9e\xd9\x06\xdc\x9e\x53\x80\xde\x1e\xe7\xd3\x6c\xe3\x52\xa1\xf0\xee\xfa\x28\xc2\x2f\xaf\x0b\x82\x48\xdd\x0d\x14\xc5\x04\x1c\x14\x2e\xed\xab\x28\x41\xb6\x7c\x36\x12\x2c\x83\xcc\xf7\x6c\x7a\x2f\x62\xfe\xcc\x36\xb0\xdf\x66\x6c\x88\x8b\x0c\xd2\xf7\x51\x82\xfc\xf6\x6c\x3a\xf3\xc2\xde\x14\x34\xb2\xf9\xb6\xcd\xde\x12\xc0\xf3\x06\x2b\x6d\x3a\x1f\xb8\x39\x20\xad\x3e\x09\x1e\x7b\xc8\xa6\x04\x91\xe7\x37\xc3\xf9\x3c\xa8\x90\x4d\xf7\xb5\x9c\xbd\x4d\x52\x85\xb3\x37\x23\x40\x5c\x16\x90\x4d\xea\xe4\xb2\x80\x6c\x2a\x61\xb2\x79\x1f\x31\x09\x4a\xf5\xb3\x29\x34\xe4\xec\x96\xa2\x04\x49\xe8\xd9\x0c\xda\xcb\x64\x5b\x7a\x94\x51\xb5\x9a\xaa\x96\x1c\xd7\xf7\x44\x82\x4a\xfb\x6c\x93\x16\xa0\xe8\x56\xc8\x30\xf9\x6a\x9b\x84\x01\xd1\x36\x93\x18\xe5\xab\xcd\x70\xbe\x7c\xb5\x19\x0d\x4d\x28\xb8\x19\xc1\x27\xf3\x3d\x9b\x11\x7c\x39\x6e\xd3\x20\xe1\xc9\x83\x6c\xdc\x42\x11\xa4\xc1\xa7\xef\x89\x04\x69\xf0\xd9\xb8\x49\x29\x48\x76\xcf\x66\xd0\x54\xf6\x6b\x1d\x4a\x90\xf9\x9e\xcd\xcc\x63\xee\x31\x4a\x8b\x52\x82\xcc\xf7\x6c\x3a\xc3\xc9\x7c\xcf\xa6\xbb\x20\xdc\x05\x73\x92\xc3\xb5\x96\x7e\xc8\x89\xcf\x76\xce\xc9\x31\x28\xf7\x51\x04\x65\xf7\xe9\x83\x24\x41\xa5\x7d\xb6\x6b\x4e\x1b\x0c\x28\xd8\x0a\x2a\xed\xd3\x42\x96\xa0\xd2\x3e\xdb\xe5\xb4\x61\xf3\xed\x9a\x1d\x30\xa8\x0e\xf4\xa8\x9f\x32\xcc\x66\x86\x0f\x75\x5e\x69\xfd\x4b\x50\xa0\x9f\x56\xb9\x04\xf9\xfb\x69\x95\x4b\x90\xb2\x9f\x4d\x65\x2f\x50\xe8\xdb\xed\x46\xc0\x1f\x9a\xa4\xca\xa3\x05\xe9\x13\x29\x41\x66\x7f\x36\xb3\x82\x94\x35\x4d\xef\x3a\x75\xfc\xd9\x24\x48\xea\xf8\xb3\x4b\x76\x94\xee\x67\x5f\x26\x6e\x7e\x11\x37\xf8\x43\xd7\x91\x40\x69\x40\x76\x45\x1f\x85\x62\xd9\xf5\x2a\x50\xe1\x9f\x56\xac\x04\x15\xfe\xd9\xb5\xb1\x28\x21\xcb\x6e\x22\x03\x55\x63\xe9\x43\x28\x41\xe9\x7e\xce\xf2\x15\x65\x9a\xe5\x2b\x41\x1d\x7f\xce\xf2\x15\x05\x5c\xdf\x66\xd7\xa0\x23\x75\x52\x5b\x90\xdd\x14\x07\x45\x5f\x37\x8c\xab\x18\x9b\xe5\x2b\x0a\xa7\xae\xc1\x45\xd5\x41\x76\x35\x3f\xae\xf2\xcf\x2e\xdd\x2a\x8f\x7c\xe1\x24\xb8\xca\x3f\xad\x65\x09\xca\xe1\xb3\x6b\x56\x71\x13\x7f\x76\x75\x42\x25\x55\x57\xaa\x52\x69\x96\x5d\x8a\xa6\x96\x20\xbb\x22\x96\x4a\xb3\xec\x86\xaa\x14\x5b\x5d\xc1\xc9\xcd\xfb\xd9\xe3\xf4\x0b\x53\x50\x08\x72\x8b\x7e\xf6\x9c\x3f\x63\x0a\x46\xa7\xb8\x1e\x3f\xbb\x72\x8f\xdb\x97\xd2\xe7\x4d\xa2\x20\x87\x3e\xe6\xa0\xb4\x31\x2d\x94\x5a\xf2\xec\x26\x7f\x2a\xea\xfa\xa4\x4e\x68\xa3\x1f\xc3\x2f\xa0\x63\xe4\x96\x62\x84\xec\x4a\x2a\x0a\xd0\xb2\x4f\x1a\xe4\x24\x76\xa9\x86\x9a\xb3\xec\xca\x23\x2a\x13\xb2\x5f\x73\x1c\x66\x7a\xd9\x06\xed\xca\xf7\x51\xa2\x3c\x3b\x7a\x15\x94\x95\xdd\x8c\x84\xf2\xb8\x5c\x6e\x09\xc4\x65\x65\x4c\x94\x67\xe7\x9e\x5d\x83\xb5\x31\xdd\x72\x83\xef\xd9\x06\x0c\x9e\xd9\x46\xc0\x85\x87\x4a\x3a\x39\xfe\x41\xfd\x41\x76\xb3\x47\x87\x5b\x6f\x4a\x83\x22\xd5\x9a\x99\x18\x6e\xb0\x96\x13\xef\x68\x65\xa7\x16\x2c\x86\xbb\x4d\x91\x40\x0c\x37\xd8\x38\x30\x4f\x67\x65\x2c\x73\x1c\x81\xd5\x2f\x01\xe0\x6e\x43\x4c\xd4\xd9\x7c\x3f\xe3\x8b\x69\x10\xd4\xc3\x65\x98\x15\x44\xd5\x5b\x86\xd1\x5d\x2a\xb9\x33\x36\x71\x63\xb3\x42\xb7\x04\x15\xd5\x19\x9b\x33\x45\x74\xfb\x58\x4a\x50\x51\x9d\xd1\x9c\x29\x5b\x12\x12\x06\xc5\x71\x19\xd2\x02\xd7\xd6\x67\xe8\x7c\x18\x2c\x7c\xf4\xd9\xa6\x00\x44\x07\x93\x35\xfa\x1c\x94\x0e\x54\x37\x15\xdd\xa1\xba\xa9\xe8\x0e\xd3\xd8\xa8\xcf\xce\xd0\xc5\x40\xd1\x5a\x86\x0e\xf4\xb1\xfd\x94\x61\x46\xcc\x71\x41\x42\xe3\x89\xca\x8b\x0c\x9d\x11\x5c\x8a\x9f\xa1\xba\x49\x25\x77\x86\xae\x76\xee\x31\x4a\x9f\x6f\x89\xe1\xae\x48\x5c\xc3\x8d\x30\xc7\x8d\xc2\xb7\xb4\x02\x27\x86\x6b\x5f\x6e\x11\x92\xd8\x72\x9c\xe0\x4e\xfb\x0c\x1d\xea\xd4\x5e\x67\xa8\x47\x72\x75\x51\x86\xa1\xdf\x01\xef\x9a\xb5\x39\x54\xc1\x65\xe8\x8c\xe0\xe9\xa9\x9c\x45\x37\x5c\x5d\x94\x16\xdd\x04\x37\xe4\x67\x4c\x4a\x83\xd6\x43\x01\xa7\x36\x32\x8b\x6e\xd4\x46\xc2\x50\x15\x65\xdd\x19\x8a\xb1\xe1\x4e\x2a\xb9\xa8\x0a\xc9\xd0\x7f\x47\x21\x48\xfa\xb0\x4b\x0c\x37\x4f\x7a\x1a\xee\xd7\x3d\xdb\x80\x9b\x2e\x06\x75\x9b\xd0\xac\xa2\x40\x3a\x43\x4b\x4a\x75\x26\x78\x9e\x38\x86\xcb\x6b\x62\x9d\xba\xcd\xac\xa6\xa1\x5c\x2f\x7d\xe5\x25\x28\x04\xc9\x30\x7b\x82\xc7\xa2\x32\x26\xd9\xa1\x29\xc5\xa4\x34\x77\xc1\x20\xd6\x70\xe1\x27\xd9\x61\x8e\xc6\xeb\x96\x20\x38\x63\x92\x9d\x0b\xaf\x43\x9d\x02\xe9\x8c\x49\x83\x70\xa8\x34\x65\x95\x4a\xc0\x4c\x45\x1d\xa5\xd3\x99\x56\x6a\x72\x93\x52\xa6\xa2\x8e\xe2\x91\x4c\x9d\x1c\x6a\x64\xb3\xb8\x87\xea\xc1\xb4\xb8\x27\x28\x1e\xc9\x59\xdc\x43\x29\x61\xe6\xa4\x5b\x98\x5f\xae\x13\x1d\x3a\x50\xf7\x54\x8b\x4b\x83\x65\xd4\x51\x67\xea\xe4\xa0\xae\x30\xa9\xf4\xf9\xbe\xd0\x9b\xc6\xa0\x5a\x5c\xee\xae\x01\x02\xcd\x12\x9e\xe0\x86\xff\x4c\xe5\x9e\x5a\x5c\xee\x2e\x08\x8a\xdb\xac\xe7\x51\x71\xf3\x69\x99\xa0\x14\x25\x53\xc2\x57\x8b\x4b\x03\xc9\xd4\xa5\x64\x1a\x1f\x53\x8b\x4b\xa5\x9b\x5a\x5c\xea\xf1\xa0\x62\x25\x73\x52\x34\x27\x24\x63\xb6\x01\x37\xfd\xec\x54\x72\xe7\x2c\xee\x51\xd9\xf3\x29\x99\xa0\xac\x3b\x53\xdf\xa2\xca\x5e\xc6\xec\x5a\x80\x15\x55\xd9\x4b\xcd\x42\x95\xbd\xd4\xe3\x41\x59\x77\xa6\xaa\xb0\xfa\x9d\xe5\x38\x31\xdc\x6d\x85\xe0\x70\xb7\xf5\x6b\xa8\xc5\xe5\x18\x02\x60\x6d\x5e\xdf\x70\xeb\x35\xe4\xd4\xe2\xd2\x24\x3f\xd5\xb1\x54\x3c\x0e\xcf\x81\x41\x2c\x75\xb3\xd4\xb5\xae\x6e\x96\x2a\xaf\xc3\xad\xd7\x9b\x4e\x7d\x76\xe6\xe9\xa0\x28\x6a\x69\x48\x59\x45\x2d\x27\xd1\x22\xd0\xd2\xcc\x70\x6e\x5f\xca\xbc\x66\x1b\xa6\x70\xcd\x36\x20\xaa\xfb\x63\x8c\x9f\x25\xae\x67\xde\x13\x3d\x66\xf1\xac\x02\xa0\x67\xa2\xd3\xf0\x5c\x28\x14\x55\xe9\x2c\xee\xc9\xc5\x73\xf1\xba\x26\x70\x42\x1f\x9d\xc9\xc5\xa3\xa0\xf9\xa6\x7e\xe7\x33\x31\x49\x71\x4f\xd6\x32\x7b\x4b\x00\x77\x12\x0e\x55\x56\x51\xa8\xb8\x95\x39\xb0\x85\x65\x58\xeb\xec\xe0\x5b\xe1\x52\x0d\xa4\xaa\x34\x8b\x37\x2e\x92\x32\xe8\x2c\x63\xc7\x3c\xef\x94\x65\x0c\x8a\xfb\x92\xb2\x76\x3b\xe0\x90\x50\x10\xf4\x01\xfc\x6c\x9e\x73\xf8\x5d\x51\xb8\x9c\xd4\x0d\xa5\xef\xbf\x24\x95\xcf\x59\xf8\xef\x92\x62\xe7\xac\x98\x5d\x33\x05\x2b\x22\x54\x10\xcb\xb2\x33\x75\x42\x0a\x82\xbe\x36\x4c\xce\x8a\x08\x15\x44\x9f\x6f\xc9\x85\x43\x62\xa5\x4f\x2e\x1c\x92\x32\xb1\x8e\x2b\x92\xb2\x30\xd2\x72\xe1\x5c\x94\xa9\x14\x3c\xfc\x94\x35\x66\x1b\xd0\x19\xb3\x6b\x81\xd9\x86\xa5\x1a\xb3\x0d\xc0\xe1\xfe\xa0\xcd\xd7\x31\xc7\x11\x98\x6d\x40\xd4\x90\x2c\xb5\xaf\x59\x87\xbb\xcd\xa1\xe0\x91\x96\x6d\x29\xd8\xa2\x8f\xb4\x24\xb5\x46\xe9\xbb\x2c\x49\xad\x72\x96\x5e\x05\xf5\x55\xdf\x65\xc9\xc5\xdd\xd6\x97\xcd\xbd\x4c\x49\xd9\xcf\xf7\x85\x71\x6e\x77\x1b\x3f\x61\x59\xd1\xaf\x5a\x5b\x26\x99\xaa\xd6\x96\x1e\x6b\xd5\xda\x9a\xc7\x12\x51\x57\xe4\x0b\xe5\xe2\xd9\x51\xd0\x70\x93\x52\x52\x10\xb4\xe6\xe2\x41\x7a\xdc\x12\xcf\x8e\xce\x3c\xee\x58\xca\x7a\x9d\x82\x67\xe7\x9d\x5d\x83\xe8\x3b\x7b\x03\x37\x72\xbb\x93\x3a\xa8\xa4\x6e\xe8\x03\x1a\x80\x47\x19\xae\x36\x16\xa7\x8d\xe0\x9c\xd5\x41\xaa\xcf\x03\x07\x60\x52\x06\x9d\xb3\x20\x88\x57\x9f\x72\xa8\x91\x71\x93\x52\x8e\x79\x94\x61\x57\x43\x07\x20\xf7\x25\xe5\x80\xb3\x27\x55\xcb\x39\x0c\x9a\x72\x79\x52\xfa\x0e\x4b\x52\xc2\x9c\xd4\x00\x7d\x5f\xbe\x05\x19\xdd\xb5\x66\xb7\x87\x4a\x98\x4a\xf2\xe8\xe2\x86\x4d\xe5\x03\x2b\x49\x85\x54\x8e\xc9\xb2\x87\x80\xab\x83\xa4\x1a\x5a\x27\xdc\x7d\x94\x56\x07\x25\xd7\xfd\xe7\x08\xa9\x84\xcd\x1a\x56\x3a\x53\xf2\x9b\x23\xc5\x9a\x9d\x1b\xfa\xeb\x54\xc6\x47\xba\x25\x6c\xe3\xd0\x47\xa1\x32\x3e\x26\x61\xb0\x8d\x63\x9e\x78\x64\xcb\xac\x0e\x52\xe5\x1e\xc6\x79\xd4\xb2\x87\xfe\x06\xb5\xec\xe1\x51\x56\xb1\x1e\x87\x18\xb8\x0b\xc7\x6c\xc3\x14\x0e\xd7\x2d\x7f\x56\x4b\x9e\xc3\x80\xa8\xba\xf5\x38\xc5\x08\x59\x33\x4e\x89\xcb\x9d\x3c\x27\x7a\x0c\x75\x4a\x42\x6e\xab\x69\xd6\xea\xe3\x43\x5f\x9c\xfa\xf8\xb8\x5d\x61\x77\xe5\x76\x51\xdd\x15\xb9\xb4\xca\xf9\xb8\x5d\x2d\x77\xe5\x91\x91\xb9\x11\x93\x31\xbb\x74\xfa\xd5\x54\xa7\x87\xbc\x98\x8a\xe4\xb4\x84\x27\x57\xf8\x37\x85\x3a\x1f\xb0\x02\x74\x81\x0d\xa0\x04\x76\x80\xc3\x0e\x1a\xc0\xec\x40\xe0\xf2\x4b\x07\xb8\xfd\x02\xc0\xe5\x2f\x49\x81\x53\x5a\x9b\x93\x14\x38\x25\xef\xa5\x7c\x6d\xfc\x02\x75\x52\xdb\x9b\x87\xa6\x3f\xb7\x22\xe5\x21\x9b\xe7\x22\xa4\x3c\x34\xf0\x29\x83\xce\x43\x42\xa1\x0c\x3a\x0f\xee\x05\x4b\xca\x98\xf2\x90\xe7\xab\x99\x1f\x54\x3e\x27\xc5\x4a\x79\x18\xf4\x19\xc8\xa3\x43\x4d\x89\x77\xa8\xf2\xd0\x65\xa7\xce\x3e\x0b\x75\xd4\xd9\x7d\x49\x25\x29\x22\x4a\x1f\x4f\x49\xaa\x62\xf3\xd0\x99\xa7\x02\x7f\xf4\xd9\x01\x58\x77\x67\xea\xe4\x62\xa2\xc3\x14\x4c\x28\x50\xff\x3e\x62\xf6\x26\xe0\x8a\x3a\x9f\x74\x4b\x9c\x42\xba\x88\x62\x6d\x96\x1d\xb7\x2f\xe5\x91\xe2\xe6\x14\xd2\x85\x17\x1d\x53\x0d\xb8\x97\x29\x7d\x53\x25\x57\x71\x93\xb8\x54\xfa\x0f\x89\x6b\x15\xb7\x9a\xe3\x80\x4e\xb9\xf5\x8e\xa3\x37\x90\xb2\xee\xf4\x4d\x95\xa4\xb8\x27\x8f\x31\x7f\xc6\xba\xa9\x36\x0d\x98\xd2\x31\x09\x12\x3e\x74\x0c\x31\x80\x13\x1e\xea\x50\x5c\x9e\x94\x87\x2e\x06\xea\xc2\xf3\xd0\xd6\xd1\x50\x38\xce\xf9\x85\x36\x9a\x37\x5a\x00\xc7\x39\xc7\x01\x1d\xcc\x9b\x5c\x1d\xf4\x9c\x83\x32\x9f\xcb\x5d\xb0\x6b\xe5\x91\xda\xfc\x71\xcf\x2f\xf4\x76\xbb\x0b\xf6\x66\x46\x82\xaa\xbd\x2f\xb4\xe4\x6a\x6f\x3a\xb6\x29\x12\xcf\x83\x8b\x34\x72\xb5\xb7\xc7\x05\xb1\xcd\x23\xa2\xc8\x30\x8a\x88\xbe\x2f\xb6\xb1\xb7\xf9\xc5\x05\x81\xc9\x1e\x8a\xa0\x31\x01\xf7\x14\x26\x7b\x4c\xa2\x9d\x80\x5c\x0d\x26\x7b\xbc\xb3\x83\x6f\xb3\xce\x65\x0e\x5a\x00\xb3\x8d\x5f\xdc\x39\xf8\xea\x39\xe9\x14\x56\x7a\x2e\x9e\x10\xe4\xde\xb9\xd8\x9b\x3f\x5b\x3d\x14\xfe\xcc\x6c\x72\xcd\x81\x73\x12\x2d\x42\xd0\x67\x61\x72\xcd\x9f\xa6\x15\xf9\x66\x4c\xae\xb3\x0f\x49\xd5\x3e\x36\xcf\x39\xfc\xfc\x34\xa6\x3b\x26\xe0\x32\x60\x38\x9c\xdb\xeb\x17\xe6\x37\x89\x18\x23\xe0\xf4\xa2\x10\x55\xfd\x73\x9f\x18\xf1\x65\x12\x31\xbc\xf8\x9c\x44\xec\xcf\xbc\x35\x84\x1b\x9c\xf2\x9c\x14\xed\xcf\xcc\x17\xd2\x3c\xa0\x3e\xe9\xfb\x42\x6f\xdd\x0e\xd0\xd4\x4f\xc5\xa5\x86\xc3\xa9\xb8\xa4\xf8\x34\x67\x7d\x12\xf7\x32\xe5\x19\x72\x35\x6c\xb9\x33\x9c\x36\x9c\xfd\xd4\xdf\xa0\x11\x70\xaa\x13\x6a\x04\xf8\xce\x4c\x52\x89\x9a\xe7\xa4\x68\xd8\xfc\xa9\x1a\x48\xad\x51\x9e\xe5\x8a\x22\x55\x7d\x33\x26\xa9\x3c\xcd\x53\x17\x83\xb6\xc2\xa9\x1a\x48\xdd\x50\x9e\x93\x3a\xed\x9a\x9b\x04\x92\x22\xa2\x3c\x0d\xe3\x0e\xc7\xc1\x01\x98\x54\x14\xe5\x39\x49\xd5\x41\x71\xdc\x27\xe5\x45\x49\xe5\xd2\x07\xd0\xe6\x9c\x5f\xf8\x19\x25\xb3\xc9\xf3\x19\x79\x72\x1f\x66\x52\xa0\x9a\xa7\xaa\xe3\x10\xeb\xcb\x9f\xa1\x8c\x9f\x64\xc3\x26\x35\xa9\x79\xe2\x6f\x48\xca\x50\xf3\x24\x4d\x6f\x5d\x9c\x02\xfe\x86\x75\x11\x6b\xbc\xdc\xeb\x22\xa2\x64\x97\xaf\x9a\x1d\x27\x5e\xee\xa4\x74\x35\x4f\x2c\x9a\x55\xb3\xe3\x7c\xe6\xa0\x60\x00\xa9\xae\xda\x13\xe7\x33\x31\x00\x51\x54\xc7\x75\x71\x0a\xb8\xf9\xd6\xc5\x29\xa0\x13\xae\xdc\xbe\x94\xe7\xfb\x00\x20\xb6\x2e\x7c\x07\xab\xc6\xc5\xb5\xb8\xf0\xa8\xf6\xd7\x22\xd6\x88\xfb\x6b\x11\x6b\x24\x15\x35\x4d\x1f\xf0\x61\x7d\x69\xde\x50\xfb\x9a\x97\x54\x42\xe9\x53\x5e\x9b\xcb\x8b\x08\xba\x36\xbb\x46\x04\x51\x78\xf4\x01\x8c\xd3\x27\x06\x02\x1b\x80\xbd\x75\x17\xd1\xde\xba\x83\x22\xc7\x7d\x81\x26\x79\x17\x23\xaf\x70\x75\x10\x27\x17\x26\xf9\xaa\x71\x71\x85\xd3\x46\xa0\x59\x5e\xb4\x6a\x42\xf8\xfc\x4c\x52\xc6\x94\x14\x11\x7d\x5f\x0a\x40\xdc\x90\xa2\x57\xba\x54\x22\x5a\x6e\x09\xa2\xee\xaa\xf9\x33\xba\x2e\x77\x01\x49\x65\xdd\xd0\xca\xe5\x07\xe9\x23\x33\x49\xe9\x6a\x5e\x8a\x20\xaa\x55\xf3\x52\xb6\x50\xfa\x94\xd7\x21\x06\xce\xe7\x70\xda\xce\xe7\xb0\x4d\x13\x70\xeb\xc5\x5a\xc3\x87\xa2\xa8\xbc\xd0\x16\xd7\x45\xac\xd5\x09\xa9\x90\xca\x4b\x15\x8e\x07\xfb\xd3\x77\x65\x92\x37\xfa\xf3\xba\x24\x26\x44\x1d\x15\x45\xdb\xaa\xa5\x71\xe1\x2d\x4b\x6a\x52\x93\xf2\xa2\xef\xcb\x4f\x7d\x98\xd7\xe3\x2c\x30\x0f\x28\x37\xfa\x00\xd6\xe4\x11\xd7\xee\x17\x77\x12\x57\xe7\xf5\x8a\x38\xb2\xf3\x7a\x3d\xc0\xc8\x4e\xdf\x99\x49\x1e\xf0\xcf\xeb\x9d\x88\x7f\x6d\x6e\x35\x3f\x8a\xb1\xf2\xd6\x3e\xa7\xe2\x35\xef\xc5\x43\xcf\x38\xb7\x2a\x1d\x95\x59\xe9\x0b\x34\x49\x31\x56\xde\xeb\xfc\x59\x02\x78\x7c\x10\x22\xbc\x40\xf3\x7d\xb1\xcd\x25\x40\x9b\xdd\x0d\x87\x7b\xde\xbb\xbb\x82\xe9\x72\xef\x4e\x01\x41\x4a\xd9\xcf\x07\xec\x00\x1e\x39\x64\xe7\xdd\x3c\x17\x88\x4b\xdf\x8c\x49\x4a\xae\xf2\xee\xb3\x0d\x58\xf7\xd9\x86\x41\xbb\xd3\x86\xf9\x51\x1d\xb4\xad\x5c\xc7\x90\x56\x07\x25\x95\x59\x79\x6b\xc7\x50\xcc\x98\xf7\x3c\xe7\x88\xad\x3b\xdc\x63\x14\x6b\x4b\x85\x92\x7a\xab\xbc\x53\xb2\x43\xa0\xdd\xe9\xb4\x91\x61\xb7\xea\x19\x85\x54\x79\xe3\x94\x4a\xca\xa5\xf2\x4e\xf7\x07\xe9\x66\x11\x51\x52\x3b\x95\x77\x4d\xdc\x40\xa7\x3c\xa6\xc8\x3d\x4b\x85\x92\xda\xa9\xbc\x87\x4b\x95\x02\xd0\x20\xe5\x87\xe9\x43\x35\x49\xf9\x61\xfa\x50\x4d\x52\x71\x98\xf7\x61\xd7\xe5\xcf\x9c\x9c\xbb\x70\xc8\x94\xdc\x85\x43\x52\xc5\x91\xc5\x43\x35\x1f\x00\x3a\x32\x73\x2a\x0e\xf3\xbe\x24\x2e\x44\xdd\xad\xaa\x45\x21\x55\x52\x2a\xb4\xad\x5c\x91\x94\x3e\x2d\x93\x3b\x2c\xe1\x9e\x14\x80\x44\xbc\x35\x6f\xa8\xdd\x4b\x1f\x9d\x49\x5e\xb2\xc8\xfb\xf6\xb8\xb8\xa7\xaa\x5a\x3b\x04\x79\x4f\x96\xed\x36\x6a\xd3\xf3\x44\x45\xde\x2a\x54\x54\x55\xe5\x8d\x8b\x38\xa9\xaa\x4a\xcb\x7e\x56\x8d\xa5\xfb\x75\xda\x08\xb4\x5b\xc2\xa0\xc4\x2a\x9f\x79\xe2\x39\x07\x8f\x5c\x5a\xfb\xc8\x47\x67\x92\xaa\xaa\xf4\xc1\x98\xa4\x76\x2a\x79\x23\xe6\xfb\x99\xc0\xea\x97\x01\xb0\xf9\x25\x00\x9c\x02\xcc\xc2\x07\x63\x92\x12\xab\x7c\xb4\x4e\x28\x74\xcb\x07\x5d\x66\xe5\xba\xa3\xf4\x8d\x98\xa4\xd0\x2d\x1f\x4c\x95\x55\xfb\xe8\xd9\xc5\x8d\x0d\x7e\xda\xec\xa0\x00\xe6\x38\x74\x80\x96\xb3\x6a\xf8\x3c\x8a\x06\x6e\x69\xc8\xa7\x7b\x28\x20\x33\x5f\x82\x49\x2a\xa4\xf2\x09\x7b\x83\x7e\x9e\x70\x0a\x48\x90\x47\x9b\x9e\x32\xb3\x7c\xc8\xdb\x59\xb9\x64\x21\x1f\x4d\x15\x8a\xa2\x92\x07\x63\xbe\x2f\x74\x3d\x4f\x7c\x0a\xb8\x59\x10\xd3\xa3\x00\xe0\xfa\x85\x7c\x4a\x74\xa0\x1f\x1e\x8c\xf9\xbe\x30\x9f\x9a\x6d\xfa\xcf\x18\xe6\xa3\xa8\xd0\x92\xf2\x69\x99\xa4\x6e\x2d\x9f\x49\x35\xd0\xd3\x83\xc7\x60\xd5\xc6\xb2\xdc\x28\x29\x55\xcb\x47\x3b\x86\x52\xb5\x7c\x77\xbf\xa0\x20\xf2\xa4\xc8\xd7\x66\x05\xf0\x67\x28\x88\xbe\x2f\x92\x3c\xdc\x9e\x6f\x9b\x3f\x4b\x00\xb7\x88\x93\xe9\xc3\x21\x49\x05\x58\xbe\xb2\x2b\x2a\xc0\xf2\xed\xae\x16\xe7\x8f\x87\x43\x3e\x80\x41\xbb\xf3\x41\x58\x59\x49\xb2\x72\x33\x42\x5a\x3c\xb2\x72\x33\x42\xbe\x31\xdb\x80\xf5\x64\x4a\x90\xdd\x3b\x77\x05\x4a\x7b\xd3\x15\x86\x9e\x5e\x35\x4c\x4a\xd5\xd2\xc7\x46\x92\x52\xb5\xb4\xac\x64\xd5\x92\x7a\xe7\xe6\x41\x28\x56\x92\xac\x5c\x1c\x94\x3e\x36\x92\xd4\x93\xa5\x95\x24\x49\xd5\x58\xbe\xe5\x82\xc0\x23\x5f\x37\x8f\xe2\xb2\x7c\x09\x89\x25\xaf\x79\xa4\x95\x24\xc9\x6b\x1e\xf9\xaa\x88\xf2\x66\x7a\xbe\xc3\x69\x23\x82\x7c\xad\x24\xa9\x34\x4b\x2b\x49\x56\x0d\xae\xf7\x98\x1d\x80\xb5\xbc\x4b\xeb\x8b\x07\x49\x3e\x80\xde\xc8\x06\x49\x4a\xc8\xd2\x7a\x91\x55\xeb\xcb\x97\x46\x92\x8a\xaf\x7c\xcf\xd9\x86\xde\x74\x68\x52\xfe\x95\x3e\x3b\x92\x54\x7c\xa5\xc5\x23\x49\x91\x57\xbe\x97\x93\x5b\x6d\x23\xa2\xa8\x9b\xaf\xca\x2b\x05\x5b\xf9\xde\x73\x50\xbf\x4c\x44\xf9\x22\x23\xd3\xe0\xb2\x5e\x24\x29\xcb\x4a\xdf\x20\x49\x2a\xb1\xf2\x25\x3e\xb6\x6a\x8a\x59\x49\xb2\x72\x71\x50\xbe\x84\xa5\x93\x1a\xad\x7c\x55\x51\x35\xb0\xde\x77\xf6\xc6\xa0\xaf\x88\xa2\xab\xbd\xef\xec\x20\x7e\xf9\x4d\x2d\xe4\x4c\x25\x35\x67\xb5\x2c\x12\xc6\x47\x25\x65\x25\x49\xf2\x4c\x47\x2d\x8b\x1d\x7c\x9a\x52\x2d\xca\x7e\x6a\xb4\x6a\x59\x6d\xf3\x51\x49\x59\x2c\x92\x14\x6c\x15\x8f\x98\x7c\x5f\xe8\x60\x95\x77\x95\x1d\x88\x41\xd1\xc1\xe6\x9e\x16\x6d\xb6\xd9\x06\x0c\x36\x4f\xe2\x27\x5b\x6a\xd9\x5c\x83\xcf\x58\xaa\x65\x73\xe7\x76\x80\x5d\xae\x36\x98\x82\x6a\x05\x15\x5f\xb5\x48\xc1\xd4\x75\xd5\xb2\xdb\xa6\x81\x28\xb5\x60\x49\xf5\x56\x2d\x6d\xb6\x01\xb7\x36\xdb\x80\xdb\xe4\x9e\x83\x0e\x9a\x5b\xdf\x40\x54\xc5\x1a\xab\xae\x78\xde\xe4\x03\xe8\xad\xcf\x0e\x98\x02\xd5\x26\x49\x91\x57\xf9\xd6\x49\x52\xe4\x55\x8b\x1c\x97\xba\xae\x5a\xc2\x35\x18\x60\x90\x13\x00\x03\x49\x93\x3a\xb5\xf2\x45\x93\xa4\xaa\xaa\x96\xe1\x6e\x0f\xba\x96\x8b\x51\x3b\x55\xcb\x98\x58\xff\xcc\x87\x59\x0b\xb7\x44\xae\xdc\x35\x51\xd4\x8b\x7c\x7d\x80\xb8\xf6\x1f\x85\x55\xb5\xa8\x34\x53\x3e\x55\xd6\x8b\xac\x58\x93\xb5\x48\x76\x18\x90\xb5\x70\x8d\xc5\x8a\xcd\x58\x16\x8f\x24\x45\x52\xb5\x68\x0c\x36\x0f\x16\xb5\x95\x2b\x06\x64\x2d\xfa\x6d\xa8\x8b\x2a\xde\x31\xf9\xbe\x30\xd9\x6b\xe2\xc6\x94\x26\xa5\x15\x83\x4e\x4a\xf3\xc8\x69\x0c\x72\x3f\x45\x59\x49\xb2\x72\x3f\x45\x2d\xf7\xfc\x19\xbd\x11\x2d\x58\xb1\x33\x6b\x79\x24\x6f\x8f\x9c\xea\x33\x2f\x33\x96\x65\x25\xd9\x3c\x65\xea\x0f\xcd\x83\xa5\xc9\xc7\x9b\x8d\xb5\xbc\x6e\xab\xe7\xe2\x75\xa9\x3c\x0a\x12\x17\x26\x6c\xad\xea\xd2\x54\x21\xd5\xaa\xfd\x87\x3d\x5b\xeb\xe2\xb4\xd9\xbc\x75\x9d\xbd\x7d\x83\xae\x6a\x09\x94\xf0\xd4\x8a\xab\x73\xc5\x1c\x2d\x5e\x1e\xf9\x00\x7f\x36\xfc\x19\x5d\xab\x4c\x50\xc2\x53\x2b\xc5\x57\x49\x09\x4f\xad\xd2\x06\xd6\x64\xad\xfb\x6c\x13\x00\x2e\xef\x27\xbd\x6b\x35\x5a\x40\x09\x4f\xad\xaa\xdc\xd8\x99\x65\xf5\xc9\x8a\x9d\x59\x6b\x9b\x6d\x18\xa7\xcd\x41\xc1\xad\xcd\x0e\xc0\x2d\xe6\xa0\xf4\x16\x4e\x61\xe3\x67\x7a\x37\x29\xa0\xa9\x35\x3c\x2e\x1b\x6d\xd2\x9f\xc1\x87\x56\x15\x5e\x8c\xc1\x5a\x95\x2d\xdd\x41\x95\x2d\x54\x96\xd5\x5a\x1e\xbe\x9d\x71\x14\xf7\x54\xb9\xd4\x3a\xe6\xcf\xf8\x32\xdc\x92\x1d\x0c\xd4\x8b\xbb\xe3\x18\x05\xa3\xe0\xa4\x7c\x01\x24\xa9\x31\xa9\x55\xbd\x18\xd3\xb2\x56\xb5\xdf\x0d\x9e\xb2\x9e\xb3\x0d\x0b\x72\x8a\x35\x0c\x66\x25\xcb\x29\xa9\x05\x2b\x1f\xfd\x48\x0a\x4e\x6a\x25\xcb\x29\xbb\x1d\x90\x6e\x91\xdd\x36\xf3\x90\xc3\x7a\x56\x72\x99\x92\x62\x91\xb2\xd6\x63\xc5\xe8\xac\xf5\x76\x4b\x60\x3d\xab\x1a\x33\xf5\x21\xb5\xea\xf1\xc0\x1c\x2d\x2b\x3a\xb2\xdb\xdb\x3c\xf1\x30\x18\xdf\x06\xc9\x6e\x6f\x7a\x2a\xbb\xbd\xe9\x9c\xec\x76\xa0\xa0\xc1\x84\xad\x55\x4f\x65\xb7\x03\xd5\x67\x4c\xd8\x5a\xb5\x1e\x29\xf2\xaa\xcd\x50\x01\x45\x1c\xe5\x43\x21\x49\x75\x46\x51\xeb\xf1\xb5\xe1\x67\xfa\x35\xa8\xb4\xa8\x6d\x9d\xbd\xd1\x06\x77\xe2\x8a\x2d\x5a\x3e\x14\x92\xd4\x5b\x95\xd5\x19\x2b\x86\x69\x6d\x9a\x85\x9b\x5d\xcf\xa3\xfc\x19\x58\xb5\xed\xae\xc1\xa7\x15\x94\x45\x1c\x49\x35\x43\x6d\xc6\x70\xa9\x66\xa8\x8d\x54\xbe\xa4\x9a\xa1\xb6\x36\xdb\x7c\xf3\xd9\x34\x18\xb7\xf8\x59\xa5\x4f\x6d\x7d\x22\xd1\x00\x26\x12\xa0\xd7\xdd\xc9\x00\x23\x9d\x2b\xbc\x56\x59\x9b\xfe\x14\x6a\x25\x6a\xd3\xce\xa4\x56\xa2\xb6\x98\xbd\x81\xde\xa4\x80\xe4\x67\x39\x7f\x46\x07\x29\xe1\xc3\x7e\x29\xea\xf8\xbe\xd8\xc6\x8d\x40\x42\x6e\xda\x8c\xbc\x41\x59\x9b\x1a\x34\x6f\x50\xd6\xa6\x9f\x90\x1a\x86\xda\x86\xbb\x02\x63\xde\xf4\xa7\x50\x8c\x55\xdb\x98\x18\x30\x05\x85\xc8\xe6\x3a\x2a\x0d\x28\x5b\xa8\x4d\x4f\x4b\x1f\x7c\x31\x28\x4c\xd9\x42\x6d\x93\x50\x10\xf2\x3e\xd3\x91\x14\x27\xd4\x26\xd5\x50\x9c\x50\xdb\x29\x41\x96\x00\xbd\x51\xe0\x54\xdb\xa5\x68\x70\xda\xb7\xf3\x71\xa6\xfa\xea\xc9\xe4\xaf\x8d\x04\xbe\x24\x79\xbf\xb6\xc9\xf3\x5d\x83\x79\xe8\x9d\xa9\x6c\x9e\x44\xfc\xda\x1e\x7b\x83\x99\x53\xc7\xf1\x01\x7e\x91\x8d\xb8\x06\xef\x6c\x03\x6e\xaf\xdb\x08\x97\xde\xf5\xec\x61\xfa\xd7\x8e\x77\x7d\xc5\xf4\x2f\x9f\xf6\x48\x52\xe7\x6b\x37\xbc\x45\xb6\x7c\xf9\x66\x47\x52\x6b\x54\xbc\xd9\xf1\xb5\x49\x00\xa7\x00\x8b\xf3\xcd\x8e\x24\x5b\xbe\x76\x8d\x41\xb2\xe5\x6b\x27\xa6\xbb\x62\xd3\xd7\xee\xd1\xe6\x9d\xde\xb2\xdc\x63\xc5\xc0\xaf\xdd\xa3\x4d\xe2\x7a\xed\xe6\x2a\xf0\xb4\x47\xed\x9a\x7c\x98\xfe\xb5\xc7\x6c\x03\xa2\x3a\xe6\xa8\x42\x2a\x9f\xdc\x48\xaa\x90\x6a\xd7\x2d\xc1\x25\x2c\xb5\xa7\x88\x76\xda\x68\x01\xec\xc8\xb0\x9d\xa2\xbc\x95\x3b\x89\xca\x42\x89\x24\x8b\xbd\x7c\x4b\x23\xc9\x55\x2f\xdf\xd2\x48\xd2\xd3\x6b\x57\xb5\xe7\x46\x96\xda\xc7\x6c\xc3\x8a\xea\xa3\xe0\x9d\x8f\xda\x75\xbf\x71\x57\x50\xed\x44\x73\x56\xbc\x0a\xb5\xab\xb3\x53\x44\x54\xbb\x6a\x3a\xf9\xed\x45\x69\xc3\xf7\x33\x7a\x53\x67\x27\xbf\xbd\x76\x95\x07\x4a\x85\x6a\x97\x95\xe2\x62\xa8\xfd\x76\x0d\x52\xa0\xf9\x05\xdc\x74\x58\x90\xdf\x5e\xfb\x2d\x3a\x88\x86\xfd\xb6\x37\xc8\xcc\x87\x35\x92\x94\xf6\xf2\x61\x8d\x24\x3d\xbd\x7c\x4b\x23\x49\x0e\xaf\x5d\xee\xb9\xbb\xdb\x6a\xe6\xe4\x83\xd7\xfe\x3a\x39\xb7\x5e\x4d\x82\x27\x73\xab\xc9\x4a\x49\xc5\xae\xa6\x27\x02\x57\x46\xb5\x6d\x76\x50\x00\xa2\xc3\x89\x6f\xf3\xec\x70\xc8\x9b\x8e\x04\xfc\x1a\x65\x99\x42\x92\x7d\x5d\x4d\x47\x02\xf7\xc8\x54\x9b\x47\x0c\x71\xd2\x54\x92\xc9\xbe\xae\xa6\xec\xc7\xe3\x51\xcd\x08\x09\xa9\xd8\xd5\x54\x04\xf6\xf6\x33\x93\xbc\x9a\xac\x95\x9b\x87\xca\x82\x86\x24\x69\xbb\x5a\x9f\x7d\x24\x80\x4b\x07\x83\x69\x31\x67\x41\x9b\x70\x8b\x06\x3f\x93\x7b\x92\x9a\x5d\x4d\xfd\x01\x7f\x4a\x59\xf7\x90\x64\x63\x17\x4f\x70\x7c\x5f\xc0\x55\x4b\x97\x9c\xeb\x6a\xb2\x52\x3c\x2d\xd5\xcc\x43\x20\x01\xbb\xda\x3c\xda\x28\xda\xd6\x3d\xac\xdc\x22\x54\xbe\xc7\x91\x64\x63\x57\x1b\xce\x87\xa3\xdd\x34\x61\x49\xcd\x2e\xdf\xdf\x48\xb2\xb1\xcb\xba\x87\x24\xcd\xba\x78\x58\xe3\x6b\x03\xd6\x86\x4f\x48\xb3\xae\x36\xcf\x39\x14\xd0\x54\x9f\xb9\x6c\xa8\x9a\x26\x2c\x97\x0d\x95\x05\x0d\x49\x49\x52\x35\x75\x0e\xfc\x36\xd5\xf4\xc5\x51\x9f\x54\x54\x2a\x7c\x5f\x40\xe7\x12\x51\x28\xa0\xa9\x80\x90\x59\x5d\xcd\x90\x0b\xf9\xd3\x65\xd9\x42\x92\x32\x5d\x3e\xc6\x91\x64\x49\x57\x53\x35\xd9\xc3\x2f\xa7\x5f\xc0\x40\x3d\x85\x17\x40\xaa\xdd\xce\x07\x8a\xb6\x4c\x61\xc5\x3f\x54\x4d\xb3\x17\x97\x50\x59\x99\x90\x24\x53\x97\xaf\x6c\x24\x29\xd3\xe5\x2b\x1b\x2b\xfe\xa1\xb2\xe4\x20\x49\x99\x2e\x9f\xdc\x58\x71\x16\x95\x4f\x6e\xac\xf8\x87\xca\x57\x36\x92\x94\xe9\x6a\x7a\xb9\xb9\xba\xa8\xda\x3b\xbb\x66\x72\xef\xec\xfa\x03\xba\xfc\x1b\x17\x50\xf5\x65\xe2\x56\x00\x8f\xc0\x37\x39\x6b\x16\x92\x37\x48\xaa\xeb\xbe\xe6\xb6\xa2\xea\xab\x53\x80\x0b\x74\x23\x33\xa4\x4c\x17\x95\x09\xdf\xcf\xbe\x99\x76\x35\x18\xde\xb5\x2d\x2b\x13\x92\x77\x6d\xab\x6f\x9e\x44\xb8\x40\xd7\xd2\xc5\xbb\x54\x7d\x8a\x06\x4c\x65\x9f\xdc\x48\xd2\xac\xab\xab\xc0\xe3\x5d\xaa\x2e\x75\x52\x3b\x55\x5d\x13\x96\x0a\xa9\xea\x3a\x00\x29\x8a\xaa\xae\x3d\xcb\x4b\x23\xd5\x27\x11\x23\x6c\xbb\x44\x4c\x36\x76\x75\x75\x76\x12\xb0\xab\xf7\xd9\x06\xdc\xfa\xfc\x19\x6b\xd0\x5d\x1d\x58\x42\xd7\x50\xc5\x87\x54\x3d\x66\x1b\x16\x51\x3d\x1f\x87\x52\x59\x99\xb0\xe2\x50\xaa\xae\xd3\x90\x12\xab\xea\x7a\x97\x70\x28\x55\x9f\x82\x06\xda\xee\x39\xc7\xa1\xb7\x72\xda\x08\xdb\x6e\x46\x42\x42\xce\x5d\xdb\x00\x87\x52\xf9\x80\x47\x92\xb1\x5d\x3c\xe0\xf1\x7d\xf1\x67\xae\x0e\xe4\x6c\x9d\x43\xf2\xbe\x6c\xf5\x49\xb4\x50\x30\xef\x7c\x7c\x6d\xe8\x80\xd0\xe8\x8a\x43\xa9\xba\xd6\x30\xb9\xdc\xe5\xa3\x1f\x2b\x57\x17\x55\x3f\x24\x19\x88\xb6\x6b\x00\xf3\xbe\x6c\x75\x95\x7e\xd2\xb7\xcb\xa7\x3d\x92\xf4\xed\xa2\x80\x61\x5b\xdb\xfa\xb3\x67\x76\xab\x4f\x1a\x84\xec\x3a\x05\x42\x2b\x1e\xaa\xea\x66\x05\xf1\xdc\x49\xf5\xd7\x99\x7b\x80\x75\x67\xe3\xae\xaa\xee\xa1\xc7\x5d\x55\x3e\xdb\x91\xe4\x42\x97\xcf\x76\xac\xf8\xae\x2a\xb4\x4d\x49\x8c\xae\xd0\xf1\x83\x23\xab\x42\xc1\x43\x92\x73\x59\x75\xb0\xe2\xd5\xaa\x50\x53\xc7\xab\x55\x31\xc9\x01\x29\x14\x52\x00\x77\x12\x55\xe8\xf5\x6e\x30\x0b\x6b\x0b\x56\x2e\x5c\x2a\x9f\xfa\x48\x32\x9e\x2b\x36\xdb\xc0\x05\x42\x29\x84\xbf\xab\x62\x1e\x6d\xc4\x58\x68\x8e\xe2\xe2\xaa\x68\x22\x0a\x79\xc7\x3c\xc0\xc8\xb4\xd0\xa5\x4a\xca\x74\x05\x11\xfc\x15\x7f\x57\x45\xb8\x54\x9c\xa5\xd0\x69\xad\xbf\xcb\x84\xff\x95\x9b\x87\x2a\x3c\x99\xbc\x51\x5b\xa1\xdf\x93\x8c\xe7\x0a\x8d\x4e\x5e\x6c\x29\x73\xfc\x57\x9d\x5f\xa1\x77\xb3\x90\x2d\xa1\xf7\x59\xe7\x97\x69\xfd\x49\x62\x74\x05\xe5\xa1\x2b\x57\x17\x55\x1c\x73\x1c\x96\xea\x98\xe3\xd0\x86\x74\xe1\x55\xaf\x96\x69\xfd\xab\x1e\xaa\xb8\xdc\x39\xe8\x36\x8c\xb2\x90\x3f\x5d\x3c\x78\xf1\x7d\x11\x38\xfd\x42\xd7\x54\x89\x25\x29\xd3\xe5\x83\x17\x49\x96\x74\x85\xea\x33\x59\xd2\xe5\xeb\x17\xab\x1e\xaa\xd0\x80\x24\x4b\xba\x7c\xfd\x62\xd5\x5d\x15\x86\xcc\xa9\x82\xab\x50\x7d\xd6\x77\x65\xf2\xfe\xca\x9d\x44\x15\xda\x8c\xe5\x11\x53\xb7\xe1\xc2\xa5\x32\xdd\x3e\xc9\xac\x2e\xdf\xc5\x48\x32\xab\x2b\xe5\xc5\xba\xb8\xd2\x5c\x33\x52\xa6\x2b\x57\xf7\xa7\x0b\xf8\x85\x83\x94\x1e\x3e\xb2\xa4\x2b\xcd\x1b\x23\x4b\xba\x72\x75\x17\x90\xa2\xa9\x6f\xb1\x21\x45\x73\x73\x17\x10\x9c\xa9\x3f\x5f\x67\x57\x36\xa7\x80\x08\x4a\x4f\x15\x99\xd5\x95\xd4\x63\x26\x99\xd5\x95\xaa\x2f\x64\x56\x57\x1a\x57\xe4\x7a\xa0\xca\xee\xba\x71\x2c\x7d\xaf\x62\xd5\xf3\x65\x16\x7b\x52\x36\x57\x19\x73\x0a\x05\xe0\xc2\x23\x8f\xd2\xe4\x2e\x12\xae\x2b\x35\xfe\xc8\xb1\xae\xd4\xde\x23\xad\xba\xd2\x20\x09\x99\xd4\xe5\xdb\x13\xab\xae\xb3\x9c\xcc\x0f\x19\x96\xe5\x2e\x20\x9c\x52\x43\x8e\x4b\x9a\x2a\xf5\x85\xe8\x47\x4b\x0d\x39\x5e\xc9\xad\x3c\x66\xd7\x4c\xce\x18\xa1\x1e\xb6\xd4\xe1\xc7\xfd\x42\x95\x2a\x29\x0d\x79\x64\xe2\x7a\x52\x77\x57\x39\x0f\x2c\x6c\x23\xe5\x84\x24\x76\x57\xaa\xc0\xeb\x6e\x33\xa5\x7d\xe5\x3a\xa0\xca\x79\xae\xe1\x21\xbe\x4a\x91\xe4\x7f\x57\x4e\x86\x59\x3f\xf5\x61\xe6\x2d\xb7\x81\xf0\xd3\x9c\x0f\xd2\xc6\x2b\xe7\x01\x46\x0a\xf9\xf6\x44\x92\x43\x5e\x69\x98\x90\xb4\xf1\xca\xd7\x99\x23\x3b\x53\x37\x1f\x57\xfd\x54\xaa\xa9\x93\x36\x5e\x3e\x51\x91\x24\x87\x57\xce\xd3\x8c\xec\x2c\x3d\x20\x3c\xb3\x5b\x3e\x51\xb1\x72\x3d\x50\xd5\x3c\xc0\xc8\xb4\x52\x99\xd0\xcd\x57\xeb\xc4\x80\x9f\x79\x4c\xb9\x04\xa8\x4a\x1d\x9e\x1c\xf2\x22\x57\xfd\xfb\xb2\x02\x78\x2e\xba\xc0\xf0\xcb\x06\x20\x6e\x88\xd8\xd2\x4c\x24\x6d\xbc\x7c\xd6\x62\xd5\x4f\x58\x6d\x76\xd0\x00\x0e\xbf\x08\x3c\x02\xcc\x67\x9e\x73\xc8\xae\xd4\x05\x78\xca\xa8\x4a\x35\x9d\xac\xef\x9a\x69\xf0\xe4\x76\x57\xf5\xd9\x01\x6b\x30\xcf\x79\x08\xcc\x36\xcc\x34\xe6\xcf\x00\x8c\x4e\x91\xce\x5d\x65\x74\x8a\x74\xee\x2a\xcd\x51\xd2\xb9\xab\x28\xdd\x58\x75\x34\x96\xde\xc0\x42\xd9\x2b\xfd\x1a\xd4\x2f\x56\xcd\x43\x0f\x3d\x95\x7e\x0d\xd2\xac\xcb\x07\x2f\x56\x9d\x93\xa5\x28\xe7\x82\xac\x2a\x2d\x50\x72\xae\xab\x4c\x1a\xe1\x1a\xa2\x2a\x79\x31\x97\x0d\x55\x1d\x8e\x03\x39\x94\xbe\x6c\xb2\xb1\xab\x3c\xc0\x5c\x36\x54\xa5\xf7\x82\xfb\x85\xca\xd7\x2f\x56\xae\x14\x2a\xde\xb8\xf8\x00\x10\xbd\xdc\x7a\xc8\xa1\xee\x39\x28\x58\x6b\x67\xf2\x74\x72\xd5\x64\xd9\xc8\xca\x9a\x8c\x99\x43\x5e\xfa\x35\x48\xda\xae\x99\xec\x4e\xd2\x76\x95\x1a\x33\xcf\x2d\x57\xa9\x31\xf3\xdc\x72\xd5\x3b\x7f\x46\xd7\xea\x0b\xdc\x3c\x54\xa5\xd1\x59\x1e\x4b\xdd\xd7\xdc\x3c\x54\xbe\x7e\xb1\x72\xf3\x50\x0d\x73\x99\x28\x80\xac\xb1\x38\x39\xd8\xa2\xc9\xee\xab\x3e\xd9\x61\x6c\x88\xd2\xc8\xf2\xf5\x8b\x55\x9f\xec\xf0\xf8\xeb\x93\x1d\xeb\xec\xe0\x43\x67\xa8\x17\x93\x80\x5d\x66\xbe\xaf\x5c\x29\x54\x83\x5b\x5c\x92\x1c\xeb\x1a\x9b\xdb\x08\x5b\x1c\xd2\x02\x69\xd5\x35\x34\x6e\x79\x9a\xa9\x86\x8e\x6d\x1d\xb4\x43\xc2\xe0\x69\xa6\x1a\x2a\xc9\x83\x0d\x1e\xdc\xc9\x9f\x64\x5f\xd7\xd0\x1b\xa8\xeb\x76\x18\xda\xd1\x75\x3b\x0c\xce\x72\x73\x57\x99\x2d\xbf\xf2\x2e\x74\x8d\xee\xb4\x61\x57\x63\x1e\x7f\xf8\xce\x50\x1a\x90\xcb\x5d\x43\x69\xa0\xef\x77\xc4\x1c\x94\x71\xf4\xfe\xe9\x08\x1e\x26\x96\x50\x68\x59\x43\xcb\x56\x47\xf0\x50\x63\xd1\xdd\x3b\xa4\x12\xaa\x2e\x6b\xe8\x31\xd4\xdd\x3b\x53\xe7\xc7\xfa\xb3\x57\x23\x6b\xa6\xd2\x53\x9f\x59\xc3\xbc\x2b\x4a\x32\x6b\x48\x4f\xc3\xdd\x57\x83\x1e\xee\xbe\xea\xcc\x70\xc3\x75\xef\x0c\x37\xfc\x98\xf3\xa3\x03\x8d\xdb\xe1\x86\xab\xe8\xe8\x3f\x1e\x87\xab\x05\xef\x1a\x1a\xb7\xdc\x15\x54\x43\xe3\x76\xb8\xe1\xca\x8d\xe1\x1e\xeb\xeb\x21\x83\xbb\xc6\x39\xdb\x30\xe8\xe5\x29\x43\x0e\x0e\x63\xad\xc3\x0d\xd7\x89\xa3\x6b\x7a\xdc\x1e\x05\x18\xd9\xd0\x05\x3e\xdc\x63\xb3\xa9\xb8\x2b\xa8\x86\x71\x53\x2e\x09\xab\xa1\x69\x39\xdc\x7d\xa9\x86\xdc\xee\x9a\x09\xf2\xe4\x76\xd7\xb1\x78\x4c\xc3\x2f\xfe\x8c\x3d\x3e\x8c\xf3\x70\x57\x50\xf9\xac\x45\x92\x80\x5d\x87\x41\x54\x72\xae\xeb\xb0\x2a\x84\x42\xcb\xf2\x25\x8b\xa4\xd0\xb2\x0e\x73\x4b\x78\x30\xab\x8e\xd5\x35\x60\x79\x0f\x85\x06\x99\xd5\x65\x4e\xfc\xca\x5d\x41\xe5\xe3\x15\x49\x9a\x75\x1d\x93\x9e\xba\x5f\xc4\x00\x69\x70\xa8\x7f\x93\x59\x5d\x33\x27\x9e\xcc\xea\x3a\xac\x83\x22\xb3\xba\x8e\x49\x5c\x98\x48\x87\x9a\x39\x97\x0d\xd5\xb1\x7b\xce\xd1\x6d\x0e\x35\x73\x9d\xf0\x87\x76\xa6\x7e\xf7\xc3\xcc\x07\xfd\xee\x87\x9a\x39\x85\x96\x75\xf4\xd9\x86\xc9\x29\x4e\x48\xa6\xae\xc3\x80\x28\x29\xd3\x75\xc4\x6c\x43\xd7\x1a\x9d\xdc\x59\x56\x87\x0a\x15\x49\xce\x35\x53\xe7\x49\x72\xae\x43\x47\xcf\x10\x03\x15\xf8\x21\x06\xe9\x14\x50\x4d\x7c\xbc\x62\xd5\xb5\x7e\xe8\xf5\xd1\x9b\x4e\xe6\xfb\x07\xd0\x75\xcd\xde\x04\x9c\x1c\xbc\xf8\xd0\xe8\x24\xf3\xb8\x0e\xfd\x41\x5c\x02\x54\xc7\xa4\x12\x11\x35\x3b\x91\x2c\xe2\x9a\x09\xf2\xe4\x0a\xd7\x61\xd4\x95\xbb\x82\xea\x50\x04\x0d\x71\x9b\x22\x08\x36\x7f\x1c\x1e\x31\xd8\xfc\x61\x74\x6a\xcc\x2f\xee\xa9\x5f\x4e\x97\x0a\x01\x70\x4c\x62\x42\xe5\x39\x4c\x55\x24\x6d\xb7\x78\xfd\xe2\x03\x98\x29\xfe\xa0\xa2\x70\xaf\x0e\xf4\xae\x22\xb7\xb6\xcc\x96\x2f\x72\x6b\xeb\xd0\xb8\xe8\x76\x8d\x71\x51\x24\xda\xd6\x81\x0b\xa8\x48\xb4\xad\x03\x81\x56\xe4\xd6\xd6\x71\xcf\xae\x19\x14\x2f\x6a\x91\x41\x5b\x07\x62\xab\xc8\x93\xad\xe3\x71\xad\x91\x3a\x07\xa5\x83\x6b\x88\xce\x3b\x7f\x46\x1b\xaa\xe6\x8b\x94\xd5\xf2\xf9\x8c\xd5\x88\xc2\x81\x06\x56\xbc\xca\x55\xbe\xa5\x51\x24\xa6\xd6\x29\x69\x1a\x6b\x30\xd9\x7d\xe5\x22\xa4\x22\xd9\xfd\xfb\xd9\xd7\xf5\x89\xa4\xaa\x65\xab\x9f\x31\x4c\x9f\xe0\x58\xb9\x18\xa9\xce\x75\x0e\x35\x00\x66\xef\x05\xe0\x9a\xc0\x39\x4c\x69\x2f\x5e\xdc\x2a\x9e\xe0\xf8\x7e\x46\x1b\x1d\x3f\xdc\x9f\x54\x27\x01\x82\xa2\x24\xae\x48\x69\x5f\x8b\x9c\xd1\x3a\x35\x50\x02\x61\x65\x4a\x7b\x51\xaa\x56\xa7\x04\x69\xc4\xe4\x94\x20\xb9\x05\xae\xce\xe6\xd2\xc1\x60\x7c\xa9\x63\xe5\x5a\xa5\x3a\xdb\x1c\x14\xdc\xda\xec\xcd\x36\xb3\x37\x10\xed\xf3\x67\x20\xda\xc5\xad\xf9\x85\xa3\xc0\x0d\x47\x75\x76\x77\x05\xe5\xf5\xe4\xaa\xc0\x22\xfd\xb4\xce\x70\xc3\x61\x57\xa7\x5e\x20\x6e\x38\x2a\xd3\xe0\x8b\x52\xb5\x32\xf3\x7d\x0d\xc4\xc9\x99\xae\x28\x1c\xea\x4c\xcf\x5f\xf7\x8b\x2b\x0a\x87\x3a\xa5\x5b\x23\x33\x3c\xe0\xf1\x7d\x01\x37\x0d\xa1\x70\xf7\x6b\x22\x0a\x6e\x25\xa2\x5d\xc0\x99\xa2\x73\x9c\xe5\xba\xb9\x8d\x63\xf6\xc6\x97\xe1\x14\xd0\x71\x4d\x90\x2f\x72\x51\xcb\x04\xf9\x95\x7b\xe8\xea\xd4\x92\xe2\x8e\xa5\xba\x76\xb1\x86\x91\xf1\x26\xc4\x07\x7c\x53\xb8\xe6\x96\xc0\xc8\xae\x36\xbb\x0e\x00\x37\x18\x19\x76\x35\xd7\x1a\xa1\x71\x99\xe6\x6a\x3c\xe9\x6a\x13\x83\x02\x70\x11\xe1\x77\x57\x9b\x18\x30\x8e\x71\x1e\x23\x4d\xbe\x23\x51\x94\xd1\xd5\x35\xf7\x94\x93\x78\xcd\x9d\xc3\x87\x74\x85\xb8\x21\x41\x2e\xf3\xfc\x8c\x41\x5d\xaa\x26\xc6\xa0\xc8\xed\xfe\x00\x06\xd5\xb5\xce\x25\x4d\x75\xe9\x32\xe1\x5e\xa6\xba\x4a\xc2\x87\xe3\x5e\x73\x4b\x38\x89\xd7\xdc\x05\x58\xa9\x6f\x42\x14\x29\xab\x35\x73\xbb\x79\xac\xbe\x7c\x06\x62\xe5\xc2\xa5\xba\xf4\x99\x73\xe1\x52\x5d\xa7\xb8\x71\xc4\x2e\x93\x44\x8c\x5b\x99\x73\x5d\x24\x4b\xd6\x85\x2b\xba\xc8\x8f\x2c\x1f\x7b\x28\xf2\x23\xeb\x32\x49\xc4\xf0\xd6\x75\xdb\x66\x15\xf0\x8c\x72\xf8\x2e\x42\x3b\x45\xfd\x58\x5d\xa4\x8f\x14\x99\x93\xc5\xcb\x0f\x1f\xc0\xf2\x5a\x4b\x10\xdd\x2f\x5d\xc0\x2f\xe1\xcf\x40\xe7\x71\x1c\x48\xe6\xd2\x4b\x62\x7c\xec\xc2\x4b\x52\x64\x4e\xd6\xa5\xf6\x61\x14\xec\x42\xfb\x28\x32\x27\x8b\xc7\x1d\xd6\x22\x4f\xb1\x6e\x1d\x71\xc6\xc7\x4c\xc5\x2e\xb2\x11\x8b\xec\xeb\x0f\xa0\x8d\xe9\x58\xdc\xb8\x57\xf7\x2a\x3a\xbb\xc0\xec\xe0\xc3\xfa\x0e\xc7\xd9\x05\xe6\xcf\x3a\x80\xc7\x32\x04\x4e\xbf\x7c\x58\x93\xe1\xfc\x01\x3f\xd5\x30\x6f\xf3\x3f\xb9\xb5\xaf\x6e\x29\x9a\x12\xb2\xba\x4d\xf9\x34\x14\xe7\xe3\x08\x45\xe2\x63\xdd\x1e\x12\x12\x1f\xeb\x9e\xd4\xc9\x01\xbe\x0d\x58\x1b\x8a\xbb\x89\xb2\x14\x29\x91\x75\x1f\xf3\x0b\x6d\x0e\x97\x01\x1d\xea\x46\x5c\x16\x95\x66\x35\xf3\x9a\x0d\xd2\xdd\xf3\x2c\xa1\xc1\xdc\xe7\x6c\xc3\xfc\xce\x89\x41\x02\xb8\xfb\x1c\xb9\xfb\x9a\x6d\xe8\xed\x72\xb5\x60\x71\xf7\x35\x11\xa5\x03\xe5\x20\xaf\x4d\xd5\x7d\xbb\x74\x1c\x2c\x5e\x3d\xf8\x00\x06\xbd\x3d\xda\x38\x64\x7c\xe8\xa0\x78\x7a\xaa\x4c\x72\x2e\x0a\xd2\xca\x57\x0f\x8a\x82\xb4\x32\xaf\xb9\xa8\x41\xab\x5b\xc3\x8e\x77\xfe\xcb\x87\x0e\x8a\x07\xa6\xea\x9e\x12\x12\xdd\xe6\xd1\xaf\xc6\xbd\x4c\xf5\xcc\xb3\xc4\xf1\x79\xe6\x21\x19\x02\xd2\x20\xda\xc8\xb3\x3a\x6d\x8e\xcf\xa3\x53\xd7\x60\xe0\xb3\xcd\x0e\xbe\x29\x3c\xbb\x47\x81\x43\xc2\x0b\x06\xdf\xcf\x68\xb3\xbb\xa7\xb0\x38\x9e\x33\xf8\xbe\xd8\xe6\x10\xb0\xcd\x1c\x94\x9f\x35\xb7\x11\xd5\xe4\xe1\xc6\x99\x22\x3f\xb2\x9e\xe6\x31\xe5\x20\x3d\x53\x52\x0d\x81\x89\xdb\x37\xed\xc7\xfc\x3b\xee\x09\xac\xa7\x7b\x42\xd8\xed\x47\x23\xcd\xb0\xe0\x63\x5d\x8a\x81\xbc\x47\xa9\x63\x16\x24\x09\xcb\x1f\xc0\xa0\xbc\x7b\xb6\x1a\xd5\x23\x47\xf9\xfb\xc2\xa0\x35\xc7\xa1\x4d\x79\xae\x61\x64\x8f\x52\xc7\x78\xdf\x33\x8f\x32\x1b\xfc\xd4\xec\xcd\x0e\x3c\x07\xf8\x1b\x1e\xc3\x0d\x5c\x91\x54\x8f\xe2\x84\x5b\x91\xea\x31\xcd\xd5\x70\xdd\x73\xcc\x9f\x31\xe8\x39\xbf\x30\x0e\xa5\x91\xab\xe1\xba\xe7\x9c\x1d\x80\xce\xe5\xfe\x70\x42\x1e\x19\xa6\xe1\xba\x47\xf5\xcc\x64\xc9\x47\xdf\xaf\xb1\xbb\xe7\xf6\x88\x79\x0e\xb8\xf5\x72\x35\x5c\xf7\x3c\x1e\x65\xcf\xc1\xeb\xb1\x74\xb7\xdf\xf9\x05\xac\x3d\x7c\x06\xe5\x1e\xd5\x33\x93\x18\xdf\xc5\x33\xca\x6e\xbf\x8b\x27\x84\xdd\xe6\x25\x81\x0f\xf8\xa6\xf0\x6e\x73\x50\x81\x5b\x60\x00\x80\x9b\x39\x7a\x3e\x04\xb0\x72\x11\x52\xbd\xea\x4c\xa6\xe5\xbd\x58\xfb\x45\xc5\x57\xbd\x6d\xfe\x6c\x05\x70\xeb\xe1\x91\xaf\xca\x90\xb1\xbb\x57\x65\xc8\x3c\x38\xaf\xfb\x5f\x8d\xdd\xbd\x96\x4b\x19\xbb\x23\x15\xfb\xfb\x99\x5f\x5c\x37\xc4\xe3\xdb\xc5\x8d\x69\xfb\x10\xc0\x6a\xec\xce\x87\x00\x6a\xdb\x7e\xf6\x44\x45\x79\x5d\xfe\x6a\xf8\xee\xd5\x08\x30\x7c\xf7\xca\xd5\x4c\x92\x7b\x89\x3c\x95\x49\x72\xaf\x2c\x6e\x73\x7e\x87\xe8\x39\x3f\x4b\x37\x8c\xf2\xbd\x3a\x5f\x8d\xf2\xbd\xea\xfd\x66\xcc\x99\xd7\x5c\xe6\xc5\xbd\x7a\xa8\xb8\x21\xb1\x4c\x65\x2e\xb3\xdf\x5e\xa5\xaa\xd9\x6f\xaf\x01\x5e\xee\x4e\x2c\xee\xce\xff\xbe\x08\x48\x1b\x30\xbf\xd7\xca\x25\x23\x76\xaf\x42\x71\x73\x72\xf3\x60\xc1\xe2\x66\x5e\xb3\xa1\xb8\x57\xa1\x68\xc2\x9b\x79\xcd\x65\xc2\xdb\xfb\x8a\x35\x8c\xf9\x7d\xdd\x15\x38\xe1\x4b\x14\xac\x78\x87\xaa\xde\x77\x76\x0d\xd6\xaf\xdb\xda\x04\x60\x3d\x09\xf3\x7b\xe7\x31\x45\xbf\x7b\x5f\x07\x75\xda\xa6\xfb\xe4\xa7\xec\x0d\x6f\xd5\x5f\xf3\xe3\x84\x63\x59\x5c\xeb\x0f\xd1\xe1\xad\xfa\x45\xbe\xda\x58\x96\xd9\x5b\x03\x98\xbd\x0d\x00\x77\xe1\xe3\x91\x63\xe6\x42\x13\x0c\x1c\xcb\x2a\xd6\x7e\xd9\x5c\xeb\x04\x90\x95\x12\xfc\x1b\x8b\xac\x74\x4b\xc6\xd9\x67\x07\x02\xa2\x93\x8c\xc3\x1d\x3e\xc5\x7b\x57\xc3\xbb\xf2\x6b\xfb\x18\xcc\x58\x9a\xe3\x14\xb8\xa9\x54\x72\x33\xd4\x58\xe4\x9e\xdc\x0c\x35\x66\x2a\x33\x71\xc5\xb1\xe8\xe2\xca\x64\x0d\x64\xa5\x94\x4b\x8d\xa5\x7b\x90\x92\x05\x21\xf4\x5b\xe4\x3f\x8d\xc5\xd0\x6f\x26\x3f\x8b\xd9\x01\xf3\xc1\x3e\x2f\x9e\x9a\x1a\x8b\x7a\x24\xd7\x44\x8d\x05\x47\x56\x51\x07\x35\x16\x2c\xf7\xa2\xf4\x69\x2c\x2a\x0f\xdc\x19\x35\x16\x52\x34\x8a\x6a\xa7\xe1\xc5\xf9\x6b\xba\x20\x93\x17\xbb\x06\x72\x5c\x9e\x80\x1a\x0b\x8e\xab\x22\xc7\x68\x2c\x2a\x0f\x84\x39\xc7\x42\x1c\xb8\x78\x02\x6a\x70\x57\xfe\x07\x30\x1f\xd5\x0a\x12\x8e\xc6\x72\xcc\x36\xe0\x26\xcd\xf1\xd0\xd3\x58\xa4\x39\xca\x98\xc6\x72\xcc\x41\xc1\x60\xf2\xe2\x62\x0a\xa7\x5d\xef\x74\x7d\xda\x66\xa7\xeb\x4b\x0c\x76\xba\x56\x79\x25\x2b\x68\x2c\x6a\x12\xc4\x2f\x87\xa9\xcb\x45\x56\xd0\x30\x5b\xb9\x28\x70\x1a\xcb\xa4\xac\x41\x07\xcf\xec\x1a\x0c\xa4\x1f\x52\x84\xc6\x4c\x6a\xe6\x96\xa7\xb1\xbc\xa2\xd3\x58\x90\x77\xfe\xec\x1b\xc7\x04\xe5\x22\xf7\x67\xac\xeb\x04\x1a\xc0\x6c\xd3\x01\x5c\x9d\x8f\x1a\xc7\x6a\xf2\x3e\x91\xcd\x41\x4e\xf2\xf7\x25\x01\x66\xd7\xdf\xa0\xeb\x3e\x7b\x1b\x00\xcd\x36\x7e\xb9\x05\xf8\x62\x86\x3d\x81\xc9\xb1\x76\xdb\xf4\x9f\x31\xcc\xb1\xc6\xfc\x25\xe3\x6a\x5a\x92\x38\x33\x56\x85\x3c\xa1\xc5\x31\xb3\x8a\xb9\xa7\x69\xac\xf3\x94\x7d\x84\x3f\x56\x4f\x19\x97\x36\x8d\x95\xdb\x49\x56\x82\x8e\x63\xd5\x74\x21\xce\x38\x56\x85\x3c\xcf\x48\x8d\xb5\x5c\x06\xe8\x96\xe4\xe3\x0f\x60\x1c\xe5\x3a\xb9\x32\x63\xf5\xc8\x11\x9b\x1c\xde\x4f\x5f\x3b\x74\xbb\x8e\x89\x28\xe3\x28\xf1\x89\x5a\x8e\x55\x9e\x4f\xd0\x71\xac\xc6\x1e\x08\x3a\x0e\xaf\x93\x2f\xf2\x5e\x86\xd7\xc9\xaf\x44\x20\xc7\xca\x2d\xa5\x2b\x41\xc7\xb1\x2a\xf1\xc9\x6e\x19\xab\xb9\x3f\x04\x1d\x07\x77\xcb\x7f\x00\x18\xe8\xde\x21\xef\x65\xac\x97\xf3\x81\x84\xcc\x10\x2e\xea\x86\xc6\xfa\xf8\x33\x0e\xe3\x6a\xb4\x97\x30\xe1\x30\x5d\xb8\x48\x00\x19\xab\xa9\x3b\xc4\x0c\xc7\x3a\x4f\x19\xcc\x62\x95\x95\x12\x19\x1c\x5e\x00\xbf\x12\x0c\x1c\x9b\x3c\x92\xd4\x90\xb1\xad\x73\x9c\x01\xe0\x7c\x38\xc0\x9b\x8a\x28\x69\x1e\xc3\x3b\xdf\x57\xc2\x75\x63\xd3\x7f\x42\xb8\x6e\x6c\xbb\x33\xe5\x00\x6f\xf8\x30\x8b\xf2\xa2\xb1\x99\xfd\x46\xb8\x6e\x6c\xd4\x68\x15\xb5\x46\x63\x6b\xb3\x0d\xe8\x18\x1f\xe3\x4e\xd0\x61\xba\x70\x91\x00\x32\x36\x15\x03\x72\x3e\x86\x17\xc0\xaf\x5c\x03\x3a\x36\xe2\x63\xc5\x73\x55\xc3\x9b\xdd\x8b\xf2\xa2\xb1\xf5\x89\x35\x3f\xf3\x8c\xf2\xf8\xd5\xd8\x74\x41\x72\x93\xd2\xd8\x64\x64\x04\xd8\xc6\xa6\x2b\x83\xac\x8c\x41\x0e\xef\x07\x80\x81\xf6\x11\xb9\x17\x63\x53\x8f\x24\x0e\x37\x36\x19\x19\x89\x18\x63\x1b\xb3\x0d\x5d\x9b\x6a\x40\x84\x6e\x6c\xba\x32\x48\xc4\x18\x24\xf4\x7e\xcb\x66\x07\x97\x00\x3f\xd3\x0a\xe2\x71\xa8\xb1\x19\xc6\x2d\x0e\xf9\x76\xba\x06\x9c\xb7\x4d\x3d\x92\xa8\xde\xd8\xae\xd9\x81\xc0\x2b\x00\x3a\x26\x58\x12\xef\x1b\x9b\xea\x26\xaf\x3e\x8d\xed\x9e\xb8\x09\xfc\x3f\x84\xbd\x49\x0e\xec\x3c\xb2\x66\x39\x8f\x55\xc4\x12\x9c\x3d\x09\x5c\xc4\x5e\xd8\x48\x35\xab\x41\xed\x7f\x50\xe0\x39\xfa\x03\x2f\x91\x99\xb8\x23\xc9\xe9\x14\x7b\x23\x8d\xd6\x7c\xe6\xa2\x80\x16\xa2\x57\x22\xf4\x7d\x23\x3e\x4e\x23\xfb\xaa\x58\xec\x01\xf8\xa6\x11\x5d\x7c\x18\x6f\x8c\xf8\x4a\x0b\x9c\x54\x51\xae\x14\x4b\x8e\x11\x5f\xdb\x76\x99\xa1\xf1\x99\xed\xa2\x16\x1c\x49\x39\x21\x3e\x4d\x23\x79\x3f\x42\x47\x38\xd2\xef\x6b\xc1\xad\x34\x29\x1a\xc4\xdb\x69\x24\xf5\x56\x9d\xf3\x35\x85\xaf\x9e\xc2\x0f\x09\x83\xc3\x36\x85\xaf\x6d\x77\x40\x92\x02\x3f\x14\x86\x23\x45\x2b\xcd\xfe\x70\x4a\x58\xb0\x49\x5d\x17\xaa\xc4\xa1\xad\x70\xc7\xc6\x63\x7c\xb6\xc2\xa0\x3c\x0d\x6d\x85\x3b\x2e\x49\x23\xe9\x07\x05\xca\xd3\x48\xf9\xfb\xe6\x6f\x32\xcc\x91\xf2\xd7\x56\x9a\x07\x84\x5f\xc7\x64\x63\x24\x25\xf2\xbd\x33\x40\xc5\xb6\x16\xda\x5a\xbe\xe6\x31\x40\xdf\x3a\x2f\xb4\xb5\xba\xce\x0b\xcd\xd3\xf3\x19\x70\xa8\x21\x4a\x7b\xc7\x98\x63\x80\xc5\x7e\x7f\x50\x69\xfb\xbe\xa1\x1e\x0d\x2c\x81\x8d\x1a\xa9\x7f\xd9\xa8\x67\x7c\x2d\x60\x22\xbe\x05\xcc\xa2\x4f\xda\x6a\x81\x21\x35\x92\x82\x39\x2c\x3b\x46\x52\xc1\x8b\x72\x73\x24\x39\x66\xcc\x3c\x46\xd2\xf7\x1f\x70\xa8\x21\xc8\x7a\xc7\x7d\x6a\xa4\xe5\x1c\xb3\x9a\x3f\x13\x63\x60\xa3\x46\xda\x5f\x01\xd4\x23\xf7\x8b\x1f\xd4\x48\x1e\xcb\x04\xd9\x1a\xc9\x35\x8b\x2e\x6f\x24\xcf\xe8\xcc\x02\x16\xfc\x3c\xa0\xcb\x1b\xe9\x5b\xcd\x2c\xe0\xa4\xbf\x1f\xea\xbb\x91\x64\x85\x01\x4d\x1d\x58\x08\xdf\x6c\x34\x54\xc3\x19\x10\x9b\x46\xd6\x23\x19\xc4\xa6\x91\xbf\x05\x0c\x13\x96\xbf\xc5\xc8\xd1\x90\x5d\x8c\xa8\xde\x46\x8e\xce\x02\x4c\x58\x76\x2d\x81\xa4\x34\xf2\xb7\x96\x60\xc2\x72\xfa\xb2\xf1\x8f\x1c\x26\x18\x4b\x43\x73\xe1\x8e\x6d\xc9\xc8\xe9\x2b\xe0\x76\x5b\x54\xf3\x80\x86\x6e\xe4\xfc\x35\xc7\x7f\xcc\x06\x0d\x0a\x71\x1e\xd0\xd0\x8d\xec\xfd\x1c\x0d\xdd\xc8\xdf\x42\xea\xfe\xf3\xf8\x0f\x5d\x50\x55\x8a\xea\x6d\x64\x5d\xe8\xd1\x8f\x8d\xcf\x6c\x17\xfd\xd8\xc8\x6e\xa5\x00\x91\x8e\xac\x88\x18\xe3\x94\x91\xdd\x57\x41\x25\x1d\xb9\xb9\x29\x41\x42\x45\x21\x14\xc6\x29\xa3\x7c\x3b\x2e\xb4\x50\xbe\x1d\x97\xe5\x2f\x3a\x72\x00\xe1\x68\x14\x8f\x7b\x8c\x53\x46\x71\xc1\xa2\x94\x1b\xa5\x7f\x5d\x18\xfc\xf8\x2a\xf5\x87\x95\xde\xeb\xf5\x28\xdf\x8e\x0b\x61\x14\x85\xc7\xe8\xee\x46\x99\xdf\x3f\x7c\xe3\xdd\x0d\xeb\x8f\x51\x3c\xee\x31\xf8\x18\x45\x6f\x55\xf4\x70\xa3\x2c\x27\x18\x2a\x11\x2a\x39\x80\x63\x34\x44\x47\xee\x58\x72\x8c\xb2\xed\x02\xcb\xbf\xc8\x61\x62\xd6\x31\x8a\x1e\x45\xa0\x08\x0d\x01\x91\x03\x28\x42\xa3\xa8\x27\x45\xa7\x36\x8a\x42\x50\xac\x25\x86\xe8\xc8\x01\x05\xdb\x28\x3a\x57\x80\x22\x34\x8a\x1b\x33\x28\x42\xa3\x06\xbf\xb9\xf7\xf3\x51\xa3\x5d\xb8\x57\xf2\x51\xf5\x60\x03\x5f\x68\x54\x65\x48\x18\x48\x8c\xea\x05\x1f\x75\xdd\xa8\xde\x82\xb0\x96\x18\x9f\x61\x20\xba\xbb\x51\xe5\x23\x31\x9d\x18\x62\x13\x77\xac\x25\x86\xd8\xc4\x1d\xfb\x86\x51\x5d\x89\x98\x34\x0c\x6d\x01\x3b\x16\x09\xa3\x2a\xff\x46\x91\x37\x04\x1d\x0e\xe3\xaf\xf0\x6e\xa3\x7a\x93\x07\x52\x68\xd4\x6a\xc3\x59\xa6\xd5\x7b\x0c\x90\x42\x43\x00\xe1\x8e\xb1\xc0\xa8\xf2\x9e\xe8\xff\x46\xc5\xbf\xa2\x63\x39\x30\xaa\x8c\x28\xca\xc0\x51\x65\x37\x51\x06\x8e\xfa\xad\xe6\x6e\x01\x2e\x05\x18\x9d\xda\xbf\x6f\x28\x60\x7c\xcd\xa1\xe7\xee\x84\xe0\x0b\x8d\xea\x7e\x57\xd8\x8b\xeb\xb7\xdf\xb1\x32\xab\x92\x23\x20\x85\x46\xf5\xb6\x82\x9b\xd6\xa8\x3a\xea\x0c\x98\xbd\xfa\x2d\x39\x16\x56\xfd\x96\x1c\x5c\x5c\x5d\x2e\x2c\xf6\xe2\xba\x1c\x7b\xf6\xe2\x2a\xef\x89\x36\x71\x54\xf9\x48\x34\xde\x43\x4b\xc3\x8e\x86\x78\xd4\x6f\x61\xb1\x31\x0b\xdf\xdb\x8b\xdd\xf6\x7e\x5e\xec\x0f\xf7\xf3\x88\x06\x72\x54\x65\x4a\x68\x61\x87\x86\x82\x1d\xc5\xeb\xc0\x1c\xf0\x72\x4d\x91\x1f\x76\x1b\x46\xb4\x21\xd0\x8c\xa8\x16\x47\x53\xea\x8d\xd6\x72\x34\xaf\x2e\x78\x2e\x8d\xf6\x2d\x53\x4e\x1d\x01\x77\x3b\x61\xa4\x46\xe3\xc0\x8e\xc0\xf6\x8c\x06\x87\x19\x41\xea\x19\xcd\x1b\x0e\x01\xa6\x46\x8b\x36\x94\xa5\xdd\x14\x82\xa2\xc2\x1c\xcd\x65\x8a\x0a\x73\x34\x5c\xd5\x22\x80\x3e\xa3\xa9\xbb\x23\xda\xd4\x68\x58\x70\x77\xa2\x4d\x8d\x96\xbf\x6f\x28\xcd\x05\x8c\x72\x73\xb4\xfc\xb5\x80\x56\x7b\xc8\xa3\xcf\x1c\x8d\x73\x3c\xfe\x20\x07\xed\x16\x23\xaa\xd2\xd1\x40\x9d\xef\x68\x3a\x87\xb8\xbc\x11\xb8\xd1\x81\x11\xe3\xfd\x41\x43\x71\x4f\xee\x28\x33\x47\x53\x77\x87\xfe\x72\x34\xd0\x06\x22\x88\x40\xa3\xc9\xc9\xa2\xb2\x1c\x5a\x34\x46\x40\x80\x06\x16\x8d\xf7\x07\xf5\x54\x7b\xca\xd9\xd2\xbc\xed\x57\xc7\xad\xda\x53\x87\xaa\x39\xbc\x9c\x2d\xda\x3a\xf6\xea\xe8\x34\xdb\xc6\xd9\xd2\xdc\xa5\xab\xdd\xf6\xea\x5f\xed\x69\xb3\xa7\x9c\x3a\xc2\xf7\xf6\x6a\xb7\xfb\x57\x0f\x45\xbb\xfd\x56\x7b\x3a\x6c\x1b\xa4\x09\x62\x6f\xe8\xe8\x2f\x87\xe6\x8d\x11\xe5\xec\xd0\xbc\x31\xa2\x82\x1d\xcd\x8d\x19\x97\xb1\xd1\xa6\xf5\xc0\x17\xb7\xf9\xb5\x80\x7a\xdc\xb2\xd1\x6c\x0e\x0d\x1f\x23\xca\xd9\xd1\xb8\x7a\x45\x60\x40\x47\xdb\xd6\xc3\x49\xd5\xd4\x1b\x54\x87\x77\x7f\x45\xf3\xcf\x71\x78\x39\x5b\x9a\x7a\xab\xea\xf0\x1e\x67\x9b\xb3\xa5\xb9\x31\x57\xc7\xfa\xfd\xb2\xf1\xcd\xeb\x20\x16\x7f\x7c\xf5\xf0\xcd\x47\x59\xc5\x1f\x56\xea\x20\x62\xe9\x15\x7f\xd5\x1f\x8e\x1b\x47\x77\x57\xd8\x85\xf2\x6f\x74\xf5\x06\x35\xfd\x75\xc3\x04\xbe\x37\x74\x34\x83\xa3\x07\x07\x95\x7b\x73\x0f\x5f\x55\xb7\xb3\xda\x3a\x46\x74\xa0\xa3\x7f\x94\xc6\xf1\xd2\xb1\xef\x8a\x68\x2d\x47\x57\x96\x80\xfe\x6f\xf4\x68\x01\x9c\x35\x5d\xb2\x43\x19\x38\xb4\x8f\x8c\xa8\x30\x47\x47\x65\x1e\x41\xea\x19\x9a\x44\x76\xd4\x84\xa3\x27\x27\x8f\x4d\xa9\x13\xec\x21\x02\xce\x33\x7a\xfe\x0a\xa0\x39\xea\x67\x51\x13\x8e\x9e\xbf\xe6\xd0\x36\xf9\x62\xd4\x77\xa3\x7f\xf4\xc4\x36\xdf\xd5\x92\xe3\xeb\x36\x30\x96\xbc\xff\xd0\x02\x75\xad\x38\xbe\x8d\x5e\x6c\x01\x9b\x5f\xff\x88\x8b\x59\xe9\xc0\xa9\x76\x14\x7b\xa3\x7f\xc4\xc5\x69\xd0\xab\xe4\xc0\x21\xaf\x19\x65\x27\xae\xd6\x10\x4d\xb8\xa3\xe5\x1b\xfd\x5b\xb3\x8e\xf5\x94\x88\xd9\xf3\xfb\xfc\xb2\x51\x9a\xdb\x7c\x75\xe0\x97\xdd\xe6\x00\xe8\xcb\x4a\xd9\x57\xfb\x72\xc5\xb0\xaf\xf6\x65\xab\xd9\x4a\xfb\x72\xdc\xd8\x4a\xfb\xfe\x0a\xa0\x34\x2d\x48\x08\xd9\x35\xfa\xfe\x4a\xf3\xc7\xd7\x05\xc6\x60\x3b\x3a\xc3\x1f\x0e\x2f\xbb\xa7\xe6\x8d\xbd\x3a\xc1\xa8\xb7\x22\xa0\xa2\xa3\xab\x10\x25\x48\xcb\x00\x70\xf7\xfe\x73\x5b\x30\x54\x2a\xe0\x2c\x37\xc6\xb7\xf8\x18\x5e\x6d\x10\x3b\xfa\xb1\x31\x40\x2e\x8c\x40\xf0\x8c\x11\xbe\x6f\xfc\xe1\xb8\x71\x04\x69\x90\x18\x51\x24\x8f\xe1\xd1\x80\x83\xdd\x18\xf1\x2b\x8d\x7f\xbc\xa4\xa1\x39\x1b\xc3\xd3\x00\x45\xf2\x18\xdc\xcb\x22\xba\xe3\x31\x5c\xb0\xe8\x8e\xc7\xc0\x8b\x39\x06\xb6\xab\x81\xd9\x6e\x0c\x6c\x57\xc3\xc5\x87\x1e\x78\x0c\x85\x0f\xe8\xe1\xc6\x40\x2c\x16\xd1\x03\x8f\xa1\x24\x02\x3d\xdc\x00\xbe\xf7\xfe\x43\x3d\xdf\xb2\x64\x44\x87\xcb\x32\xb0\xc1\x0c\x65\x14\xe8\xc7\x86\xa6\x8a\x11\xa0\x9d\xa1\xa9\x62\x04\x95\x74\x68\xca\xd7\xd1\x9c\x8d\xa1\x10\x14\x65\xd9\x18\xe3\xfb\x86\x02\xf0\xff\xed\xf8\xd0\x8d\x81\xb2\x22\xa2\x96\x1e\x58\xfc\xdd\x1f\x7c\xe3\xbe\x8a\x26\x7a\x0c\x40\x23\x3a\xde\x75\x63\x60\xcb\x14\xd1\x44\x8f\xe1\x82\x45\x0f\x37\x80\xe2\xbd\xff\xf0\x63\xd9\x39\xb6\x6c\x31\x75\x3b\x9a\xb3\x31\x5c\xa3\x68\xa2\x87\x30\xba\x9d\x80\x24\x63\x28\x52\x6d\xce\x02\x70\x54\x11\xfc\x9d\x31\xb6\x0d\x65\x47\x12\x53\xb7\xa3\x46\x1b\x60\xea\xde\x7f\x28\xe0\x7c\xa5\xf1\x8d\x9a\xda\xe6\xfc\x1c\x87\x8a\xcd\x5c\xb4\xdd\x8e\x82\x6d\x8c\xc7\x99\x63\x67\x1f\xcf\x57\x1a\x45\x3f\xf6\x27\xff\x4d\x4b\x3e\x86\x02\x5b\xf4\x72\x63\x3c\x5f\x55\xd4\xab\x09\x54\x73\x5d\xbc\x5f\xe9\xd4\x8b\x73\x4f\x44\xc5\x3c\x86\xbb\x36\x4a\xba\x31\x7f\xdf\x37\x89\x1f\x8e\x30\x4b\x01\x90\xde\xfb\x4d\xe3\xc7\x57\xc0\xad\x67\x06\x27\x8f\x7d\x68\xba\x65\xa3\x21\x1e\xe2\xf2\x46\x80\x76\xc6\x94\x87\xc2\x25\x6e\x60\x9d\x78\xff\xa1\x52\x6f\x93\x68\xec\x06\xc6\x85\xf7\x1f\x5a\xe0\x2e\x8d\xfa\x6e\xcc\xe4\xca\x64\x87\x9a\xe9\x2b\xba\xf0\xc3\x6e\xb3\x29\xcd\xec\x37\x2c\x9f\x89\x13\x5b\x47\x49\x37\x66\x76\x5a\x39\x27\xa6\x84\x82\x92\x6e\xcc\xec\x70\x73\x68\x08\xc5\x1b\xc1\xc9\x19\x53\x21\x07\xea\xbb\x21\x2e\x6f\x04\x6e\x74\xcc\xf2\x15\x40\xa5\x12\x4a\x63\xc5\xcc\x62\xdb\x9a\xdf\x38\xbc\x2c\x9f\xa9\x30\x0f\x6f\xbb\x31\xab\xcd\xe1\xd0\x98\xee\xdf\xe8\xee\xc6\xfc\x96\x36\xeb\x62\x7e\x4b\x9b\xbd\x6b\x7e\x4b\x9b\x6b\xc8\x5c\x5f\x36\x0a\x58\x6e\x09\x1c\x34\xd3\x1d\x17\xdd\xf1\x98\x6e\xa5\x20\xe8\x8c\xf9\xad\x66\xb6\xb8\x79\x9c\x39\xb6\xb8\x79\xbe\xd2\x28\xe0\x7c\xd9\xa8\xe7\xf9\xb2\xf1\xcf\x23\x75\xb2\x77\x89\x56\xdb\xd1\xf7\x0d\xd1\x6a\x23\xaa\xdf\x31\x1f\x27\x98\xdd\x06\xb4\xda\xfb\x83\x16\xe0\x9c\xd9\x51\xfe\x0d\x6d\xf6\x22\xaa\xdf\x31\x5f\x87\x97\xa3\x41\x1c\xdb\x88\xb6\x77\x88\x56\x1b\x41\x98\x19\x8b\xf0\x19\x11\xe8\x98\xb1\x7e\xdf\x3f\x37\x1b\xc6\x78\xf7\x47\xe3\xc7\x97\xad\xf3\xa3\xfa\x63\xf0\x63\xda\x82\xc8\x0f\x7a\x8a\x52\x78\x2c\xd9\x74\x34\x8e\x63\xc5\x2f\xdb\x6d\xdb\x4a\x12\x06\x12\xa9\x25\xbf\x00\x86\xca\x58\xc8\x35\x22\xe0\x28\x63\xa9\x46\x43\x31\x39\xc4\x86\x8d\x28\x85\xc7\x92\x11\x00\x0f\x65\xac\xec\xa2\x60\xf9\x2f\x44\x67\x11\xd5\xef\x10\x28\xb6\xab\x30\x5c\xe5\x2b\x80\xd2\x64\x04\xd4\x11\x2e\x4f\x78\xc0\x51\xc6\xaa\x5f\x69\x14\xc0\x1d\x31\x82\x94\x32\x30\x70\xbb\x3f\x68\x28\x2a\x89\x88\xde\x77\x60\xb9\x76\xbf\xa1\xe8\x61\x36\xb6\xdf\xa5\x54\x58\xed\x21\xa0\xaf\xf7\x1f\x2a\x1d\x5f\x3d\x14\xed\xb2\x44\x09\x3c\x96\x3c\xae\x6a\xc1\x25\xf3\x80\x46\x78\xac\x69\x3d\x50\xd6\x72\x8d\xa2\x11\x1e\x4b\x1e\x17\x8d\xf0\x58\xae\x51\x94\xc0\x43\x00\xd7\xae\x2a\x71\x6d\xeb\x81\x30\x04\x70\x8d\xe0\x6e\x8e\xa5\x59\xa8\x4a\x46\x01\x5c\x63\xcc\x7f\x0b\x51\x31\x96\x9b\x2e\x1a\xe2\x21\x86\x6b\x57\x1d\xb9\x54\x84\xa9\x81\x14\x9c\x35\xa2\x3b\x1e\xfb\xe7\x44\xc0\x47\xee\xdf\xd7\xa2\xce\x8f\xed\x8f\xc1\x0f\x37\x0b\x08\x7f\xcb\x3f\xa8\xa8\x14\x8f\xb5\xab\x8e\xdc\xc1\x89\x80\x6a\xb6\x2a\x32\xd5\x91\x3b\xda\x3f\x68\x63\xc7\xef\x1f\x8a\x4e\x8e\x16\xeb\x6f\x7b\x4d\x24\x9e\xcd\xd8\x6e\x8b\xe0\xa3\x8c\x2d\xbf\x8a\xa7\xe6\xd8\x6e\x8b\x2a\x92\xb7\x6a\x5c\x55\x98\x5b\x5e\x80\x40\x35\x63\x67\x29\x80\x2d\x7b\x7f\x1b\x19\xfb\xc3\xf6\xc6\x16\x59\x8c\xbb\xda\xea\xea\x3f\x8e\x0e\x4b\x4e\x03\xbe\x08\x4e\xc9\xd8\xcd\x89\x60\xf9\xec\x6f\x7f\x60\x83\xd9\xee\x0f\x20\x7f\x0e\xb1\x47\xbb\x9a\xce\xfd\x7c\xcd\xe1\x1b\x6f\x1e\xb8\x6d\x0e\xa1\x43\x23\x00\xa1\xe3\x68\xe6\x81\xa7\xe6\x38\xdf\xc0\x33\x73\xe7\xa3\x75\x66\x4e\xb4\xd0\xa8\x2e\x1c\x7b\xb5\xfb\x4d\xe4\x87\x3d\x65\xac\x8f\x97\x75\xd5\xdf\x27\xfa\x0d\x23\x7a\xe2\xd7\x02\x8a\x96\x57\x6b\xec\x50\x27\xd9\x05\xc6\xed\x7c\x63\xcd\x76\x75\x3c\x5b\xc0\x1c\x19\xc7\x4b\x34\x41\x74\xc6\xd1\xe6\x83\x20\x3a\xe3\xc8\x36\x81\x2c\x32\xce\x47\xc4\xf6\xb4\x4a\x1b\x76\x4e\x5d\x24\x8e\xa3\xe3\xa8\xe4\xc6\x71\x74\x60\x07\x77\xb3\xd1\x9c\x6f\xac\x6d\x41\xb3\x68\x2b\xed\x36\xc7\x4a\x09\x47\x13\x55\xb3\x1f\xcc\xc6\xa3\xca\xf4\x23\xdf\x95\xe0\xc8\x0e\x52\x9f\x98\x60\xb5\x80\xf4\xbc\x95\xfa\xcf\xf6\x1f\x2a\xf5\x3a\xa0\xe6\xf6\xe0\xc6\xd4\xbb\xff\x00\xc9\x15\xd5\xc6\x1f\x84\xe1\x31\xb1\xfd\x1e\x99\x7e\x15\xf0\x67\x7f\xdf\x90\x0d\x0f\xbd\x08\xb2\xc8\x38\x88\x13\x23\xc8\x22\x03\xb0\xcf\xfb\x83\xa2\x01\x6e\xe9\x78\xb8\x8e\xe3\x7d\x16\xfc\x90\x21\x8a\x67\x04\x3f\x64\x9c\xf7\x1b\x2a\xba\xfd\x5a\x1a\x3b\xee\xf1\x04\x51\x4f\x7f\x5e\x9b\x03\x63\xf3\xfc\x6c\x01\xdb\xef\xf3\xfb\xfe\xb9\xa5\x3d\x2e\x24\x95\xf6\x8f\x87\x06\xee\xae\xe3\x33\x70\xc3\xc3\x75\x3c\x2a\x2b\x70\x6a\x1d\x8f\xf3\x03\x30\xc8\x10\xb4\xb2\xe3\xc7\x3a\x1e\xa5\x72\xb8\xae\x8e\x47\xb1\xb2\xfa\xe5\xc7\x5d\x5a\x45\x3f\x08\x96\xf7\x07\xdf\x38\x8d\x2a\xfa\x81\xa2\xbc\x3f\xee\x88\x3e\xc3\x99\x63\x2b\x7d\x86\xa3\x13\xfc\x01\x35\xaa\xc1\x7f\x64\xb9\x55\x43\x6b\x1d\x16\xd5\xe0\x3f\x6e\xe6\xfd\xaf\x41\xd0\xc6\xf3\xad\x0b\x76\xe0\x47\x7e\x5c\x7d\xf3\x33\x6d\x11\x5b\xe9\xa3\x64\x4f\xad\xf2\xb3\x1c\x6e\x76\xcf\x47\x2b\x48\x55\xcc\xcf\xb7\x14\xd8\x4a\x1f\x95\x24\xaa\x98\x9f\xed\x70\xb3\xaf\x3e\xdb\x25\xc7\xbe\xfa\xa8\x3e\xe9\x0e\xaa\xf6\x42\xb8\xb2\x8e\xe7\x5b\x24\x1c\xe5\x8f\x1c\x0c\x7e\xad\xe3\x39\xae\x73\x8e\xf2\xe7\xd8\x1c\x8e\xf2\x47\xfd\x8b\xfa\xe6\xe7\x71\xec\x8b\x3f\x6c\x01\x5b\xe9\xf3\x7c\xa5\xf1\x43\xd6\x04\x88\x8d\xf1\xbc\x5f\x0b\x68\xf5\xb7\x96\xd8\xef\xde\x9f\xa5\xb1\xc5\xbd\xf2\x29\xea\xe9\xdf\x9f\x83\xc8\x39\xf8\xea\x41\xa0\x8e\xfa\x95\x69\x01\x9f\x62\xbc\x5e\x2d\xd5\x51\xbf\xe1\xfb\x26\xf3\xc3\x85\xc5\xae\xf6\x06\x29\x80\xb3\xe5\xf5\x6a\xa9\x2a\xfb\x8d\x56\xca\x41\x83\xc1\xdb\x3d\x88\xa9\x27\x59\x1a\x47\xc3\x67\xe3\xa6\xc6\xfb\xf5\x9c\x00\x1d\x62\xbc\xf9\x6b\x1b\x45\x6b\x4a\xa1\x92\xfb\x2d\xb6\xa0\xfb\xc3\xe5\xc3\x64\xbd\x9e\x13\xa9\xfb\xc3\xc9\x62\xe6\x44\x18\x8d\xa9\xfb\xc3\x65\xca\xb9\xf7\xba\xdf\xa5\xe1\x0f\x89\x8b\x73\xef\xad\xee\x1c\xc3\x1f\xee\x84\x4c\x30\xd8\xa3\xf7\x1f\x7f\x58\x34\xbb\xb4\xd8\xa3\x1d\x6f\xd5\xf1\x2a\xcc\xc3\x41\x75\x80\x16\x7a\xb3\xf1\x43\x13\x7d\xe2\x1a\x0d\xa0\x43\xef\x3f\xf4\x47\x3b\x1e\xe2\x1a\x8d\x77\x7c\x95\xfa\x8f\x6b\x87\xdb\xf1\x3b\xed\x29\x17\x62\x4d\xec\xa2\xd6\x05\xef\x2c\xfe\x08\xff\xfa\x33\xf7\x37\xdb\xbc\xee\xff\xfc\x3b\xe1\x07\x30\xf7\xbd\x0f\x65\xcc\xd9\xe7\x06\xee\xf7\x7b\x0d\x24\x17\xde\x23\xd9\x4d\x7f\x6e\x7a\xa1\x98\x64\xba\xef\x8d\xf4\xca\xfb\xa5\x93\x42\xf6\xf4\x92\x85\x64\xcc\x16\xfd\x32\x07\x92\x1b\xef\xf3\x7e\xf9\x65\xb9\xc3\x7c\xc7\x68\xe2\x10\x90\x10\x8c\xcd\x8d\x13\x63\xa1\x2d\x98\x2e\x5a\x0d\x9c\x68\xa1\x0c\xc4\x00\xf7\xe6\x37\xc1\x78\x4f\x88\xcd\xa6\x10\xef\x97\x3e\x26\xc8\xed\x19\xab\xdc\x89\xa5\x7f\x42\x98\x36\x37\xac\xa9\x5d\xbb\x7b\x66\x42\x92\x36\xf7\x9d\xc8\x8c\xdd\xee\xdc\x77\xc7\x4c\x08\xd5\xe6\x06\xd7\xa3\xf2\xda\x1b\xc9\x94\xd8\xef\x20\x22\x10\x98\x1b\xc6\xb5\xd1\x96\x61\x45\x94\xc2\xcc\x36\xda\x72\xf7\xbc\x8c\x0d\xec\x04\xb5\x3d\xfd\xcc\x3e\x2b\xe9\x7f\x13\x48\x4e\x00\xdd\xd3\xcf\xc2\x2e\x9b\x9b\xb9\x6a\xcf\xcd\x99\xd8\x29\x6b\x31\xc2\x9d\xe4\xc5\x90\x74\x86\x72\x4d\xb2\xd3\xa4\xbb\x07\x26\x84\x7d\x73\xb3\x05\xda\xdf\xfd\x23\x0b\xc5\xc0\x10\x0f\x5f\x99\xed\x4e\x1f\xef\x1e\x99\xb9\x02\xcf\x8d\x60\x62\xf8\x4a\x67\x3a\x23\xb8\xfb\x7d\xa7\xfe\xbd\x48\xa6\xbf\x9b\x69\xa5\x29\xc7\x66\x31\x80\x87\x2f\x69\xc9\x61\x14\xb2\x59\x18\xfa\x4e\xb3\x1e\x27\x96\x57\x93\x69\xd6\x33\xff\xf3\x6f\x50\xc4\xe6\x7e\xac\x87\xa6\x3c\xb7\x9e\x40\x21\xf7\xa6\x97\x9b\xeb\xf1\xa1\xcb\x83\xec\x77\xff\xcc\xcd\x05\x79\xcf\xe5\xe4\x8c\xdc\x9d\x34\x37\x17\xe1\xcb\x40\x0f\x8a\x79\x99\x63\x57\xe1\x7b\x1b\x10\x6e\xfd\x40\xcc\x63\x91\x37\x61\x0c\x13\x22\xc5\x79\x2e\xb5\x71\xcc\xcf\xf3\x2b\xf7\xc3\xcb\xca\xce\xf3\xab\x37\x39\xf1\xca\x2a\x60\xdd\x9f\x4b\x84\x9c\xcf\xf3\x04\xfa\x76\xd9\xa7\x09\xac\x3c\xa8\x5d\x13\x36\x31\x21\x94\x9c\xe7\x92\x29\x90\x5d\xf3\x40\xa6\xf0\xf3\xf3\x40\xa6\x89\xb2\x23\x83\xcf\x74\x9e\x78\x0b\x4c\x34\x2a\x32\xf9\xdd\x2f\x19\x2c\xa6\x16\x5c\x7a\x8e\xed\x09\x03\x99\x90\x5d\xce\x73\xe9\x98\x33\x7b\x9e\xc4\x18\x0e\x0a\xbf\x5b\x73\x02\x3a\x7c\x9e\xcc\x64\x99\xfd\x72\xf3\x18\xdc\xcd\x73\x6f\x99\x89\x80\x4b\x13\x68\x7b\x4c\xef\x26\x58\xf6\x9c\xcc\x13\x76\x34\x11\x85\x69\x9e\x4b\xd3\x1c\xcb\xf3\xdc\xfd\x3c\x11\x8f\x69\x9e\x4b\xdf\x9c\xc9\xf3\xd4\x3b\x55\x18\xbb\x4d\xc0\xed\x81\xc6\x9a\xf8\x7a\xe4\xee\x3c\x5c\x5a\x07\x74\x7c\xe2\xce\xc1\xb9\x3a\x61\x4d\x33\xe0\x13\xf3\x34\x1b\x65\xfa\x1d\xfc\xee\x18\x5e\xbe\x07\xd0\xa9\x79\x2e\xd7\x93\xbb\x63\xd8\x2b\xd9\x69\x6d\xa7\x98\x44\x13\xfb\x1d\x95\x4a\x9d\x97\xfb\x49\x08\x60\x27\xbe\x1c\x9c\xab\x13\x76\x36\x73\x0c\xcd\x33\x16\x59\x48\xbf\x4c\x0b\x68\x50\xf3\x40\xf6\xf8\xf3\x4c\x3c\x3a\x12\xee\x3c\xf3\xac\x3b\x9e\xdd\x45\xb1\x58\x64\x81\xf7\xcd\xa7\xf4\x7f\x33\x44\x8e\x05\x44\xc6\xe6\x71\xee\x05\x35\xf7\x2f\x0b\x34\xe1\xb8\x1c\x86\x0e\xb2\x85\x97\xe5\xb0\x9d\x07\xe2\xc3\x9d\x67\x1e\x88\xcf\x55\x71\x6e\xe7\xbe\xcc\xe7\xe6\x60\x63\x39\x97\x23\xe1\x2c\x9e\x07\x32\xec\x7f\x83\x47\x9b\x38\x79\xa4\x20\x61\x5c\xaa\xcb\xc3\xe5\xf0\x30\x66\x52\xc6\xfb\x23\xdd\x77\x16\x84\xa4\xf1\xde\x56\x40\xa4\xf0\xc8\x79\x38\x38\x2f\x0b\x2f\xd2\x8c\xcb\xe2\x70\x1c\x4f\x1c\x40\x32\xd6\x2a\x13\x5c\x7b\x8e\xc5\xf9\xdc\x43\x2e\x63\xaa\x32\x9f\x7b\x09\xe6\x80\x9c\xcf\xcf\x42\x1a\xef\xef\x7f\xfe\xcd\x51\x39\x9f\x40\x53\x18\xec\x27\x5c\xa2\xa2\xb5\xcf\xbd\xc4\x25\xd0\xda\x27\xac\x77\x42\x6c\x3c\x1f\x4e\x4d\x96\xd2\x03\x91\x22\x33\x9e\xe0\xe5\x27\x44\xc6\xf3\xb9\x37\xb6\x3c\xfc\x34\x32\x67\x10\xe1\x73\x69\x33\x0f\x8b\xb9\xb4\x89\x51\xde\xc4\xd7\x04\x5b\xbb\x09\x1a\x7e\x42\x54\x3c\xf1\x2d\x01\x25\x69\x82\x8b\x9f\x71\xc5\x9e\x4f\xb2\x52\x9a\x9b\x23\xe9\x14\x9e\xad\x88\xde\x65\x2a\x82\xdc\x9e\x6c\x91\x14\xcf\x81\x1b\x7c\x65\x75\x42\xf9\xf8\x9d\x64\x2c\x4c\x26\x70\xfa\x58\xcd\xcd\xa7\xb0\x33\x5a\xeb\x25\x54\x50\x8d\x26\x8e\x29\x19\xd3\x90\xf9\x94\xdb\x53\xa6\x05\xb4\xfd\x8c\xe3\xf5\x7c\xa0\x4e\xfc\xae\xe7\x73\xa9\x33\x3b\x46\x95\xc5\xc9\x3e\xf1\x54\xba\xc4\x09\xfd\x5c\xae\x0a\xfb\xb5\xf9\x34\xeb\xa4\xc4\x06\x19\xda\x0b\xa8\x19\x33\x8f\xf9\x34\x66\x1d\x16\x02\x57\x96\x14\x6c\x3a\xa4\x4a\x38\xa7\xf9\x74\xd6\x60\x36\x0f\x5d\x85\x28\xb9\x9b\xa4\x60\xe3\x07\xa3\xc4\xe1\x84\xdf\x4a\x02\x1f\x7e\x3e\x97\xab\xca\x16\x79\xe9\x36\x5b\xca\x62\x0d\xb0\xcd\x70\x6b\x28\xa8\xa8\x27\x6e\x29\xd9\xe4\x7b\x64\x96\x9f\xe3\x7b\xc9\x16\x93\xb3\xf9\xec\xe7\x26\x47\x0a\x3c\xac\x2a\x76\xa8\xe7\xd2\x24\x06\x62\x93\x5b\x44\xf9\xb9\x34\x2f\x4d\x66\x07\xe6\x30\x60\x8e\xe9\x59\x37\x8b\x03\x79\x69\x15\x63\xb0\xc9\xbd\x00\xeb\xaf\xf9\x3c\xf6\x81\x02\xef\xd9\x58\x7e\xce\xdd\x3d\x1c\x73\xa5\x4a\xcf\x46\x0b\xe7\x70\x84\xa1\x79\xa4\x40\xce\x29\xae\x13\xd9\x81\x7e\xe9\x32\xcc\x22\x2e\x32\xd9\x31\x7f\x19\x4f\xab\x7f\x69\xc9\xad\xf2\xbd\x07\x5c\xc1\x2d\x75\xbe\x3f\x0e\x8d\x9b\x83\x0b\x05\xb6\x5d\x93\x4b\x43\x42\x48\x3e\xdf\x68\xd9\xb7\x1e\x9c\x5f\xb0\xde\x9a\x6f\xb2\x25\x14\x92\xca\x2d\x90\xcd\x80\xb8\x05\x29\x58\xd1\x65\x38\x8b\x47\x33\x51\x0b\x12\x32\xf4\xc9\x2d\x22\x21\x35\x9f\x5c\x22\xca\xef\xaf\x21\x62\xe7\x7b\xd9\x54\xec\xb6\x26\xce\x35\xc5\xf3\xf7\xcd\x4c\x08\x87\xee\x9b\x0b\x3b\x33\xaf\xf4\x91\xd3\xf5\x95\xe0\x60\x53\x09\x84\x80\xe9\xd4\x7c\x33\xbb\x9c\x7d\x2f\xee\x72\xbc\xde\x09\xf1\x34\x78\x8b\x0d\xa5\xa2\xca\x22\xe4\x95\x23\x88\x1d\xec\x75\x59\xc3\xc3\xbd\x1d\x62\xe2\x43\x18\x4f\x3c\xad\x26\xe1\x09\xb0\xaf\x9a\xef\x88\xb7\x6c\x56\x2c\x37\x07\x90\x71\x26\xf7\x06\x0c\xa8\x26\x17\x85\x84\x98\x7d\x12\x3b\x20\x05\x1b\xbb\xc8\x42\x77\x16\xed\xb6\xb1\x9b\x91\xa0\x25\x9b\x96\x38\xd8\x9b\x3e\x70\x46\xbc\x97\xb3\xc3\x36\x6a\x12\x31\xa0\x7c\x85\xb3\x90\xd9\x4b\x71\x9e\x49\x88\xdc\xe7\x7b\xef\xc2\x58\x38\x4d\x62\x05\x24\x84\xef\xf3\x3d\x7e\x79\x5f\x9f\x3b\xb2\xd1\xfe\x3c\x74\xd3\xc1\xbf\xcb\x11\xb4\x96\x89\x63\x4c\x0a\x0e\xfe\x5d\x8e\x40\xb5\xac\xdf\xbd\xd8\x16\xe0\xc4\x17\xc8\xff\x09\xcf\xab\x05\xf0\x3f\xc8\x2c\xeb\xf7\xb3\x29\x83\xf7\x5b\x67\x34\xc7\x3d\x1b\xa8\x73\x81\xff\x0f\x40\xcb\xfa\xdd\x5b\x6f\x42\xa0\xbf\x88\x04\x00\x3a\xcb\x02\xe0\xbf\x80\xdf\xbd\x7e\xf0\x64\x20\xc4\xaf\x5f\xe4\xcb\x44\x45\x97\x29\x4b\x80\xc5\x2f\x90\xfe\x41\x6c\x59\xe0\xfc\x27\xc0\xe1\x17\xc8\xfe\x18\x5d\x2d\xbc\x5c\xb0\xb2\x5a\x80\xf2\x03\xbb\xb2\x70\x6a\x29\xc8\x25\x17\xf0\xfc\x00\xb0\xac\x1f\x1b\x36\xca\x84\xf5\xbb\xcb\x0d\xf4\x95\xf5\xcb\xf6\xc1\xdc\xb7\x85\x99\x76\x17\x86\xb3\x51\xfb\xe5\xac\x40\xc9\x5e\x78\xc2\x14\x04\x93\x0b\x47\x18\xf0\xb2\x17\x20\xfe\x05\x11\xe5\xc2\x25\x26\xa1\x9a\x58\xbf\xc2\x58\x35\xf3\x9c\x9b\x9d\xea\x0b\x23\xd1\x7c\x67\x24\x02\x6d\xb9\x17\xef\x92\x69\x4a\x65\x20\x02\x6d\xb9\xa7\x01\x58\x2a\xeb\x57\x29\x3c\x50\x3f\x5b\x3d\xd0\xf1\xeb\xd7\x98\xab\x41\x76\x2e\x63\xf8\xbb\xad\xdf\x25\x09\x20\x55\xd6\xaf\x9b\x9d\x4a\x2f\x49\x94\x42\xe7\xba\x25\x52\xe9\xbd\x5c\x97\xe4\x58\x0c\x4b\xa1\x56\x38\x31\x54\x22\xeb\x07\x51\x54\x4a\x9c\xe9\x66\xb7\xa2\x29\xd3\x4e\x03\xe6\xe4\x9d\x3c\x0b\x1e\x3f\x52\xd5\xbd\x58\x15\xc7\x0e\x1a\x8a\xae\xbf\x75\xc7\xb4\x51\xe9\xae\x4c\x39\xa5\xdc\x5d\x3f\xa1\x46\x59\xbf\xfd\x92\x4e\x4d\x50\x48\x27\xfb\x13\x59\x0a\x7f\x33\x74\x5e\xbf\xe7\xb6\x74\xd0\x88\x87\x05\xe9\x68\x3e\x97\xd6\x07\x8d\x78\xb8\x5d\x44\x6a\xe0\x1c\x88\xae\xfc\xbb\xe1\x63\x28\xb6\xc2\x8f\x85\xc7\x92\x08\x3f\xa6\x07\x2a\x00\xb6\x3f\xa1\x94\x59\x81\x1d\x1a\x9d\xcc\x0a\x81\xb5\xd7\xf9\x36\xd0\x19\x3a\x16\x02\x9d\xb9\xfb\xe1\x0a\x77\x8d\x63\xf4\xb4\x42\xa2\xef\x90\x1e\xd0\xfb\x98\x18\xad\x80\x18\x40\xaa\x09\x97\x5d\x29\xb0\x57\x2b\x64\xa6\x13\xaa\x09\x77\xb3\xc5\x6c\x68\x05\x57\x39\x84\x80\xe7\x4c\xc1\xd5\x60\x85\x62\x76\x1a\x79\x17\x31\x10\x03\x2b\xdc\x05\x0a\xa6\xc0\x0a\x05\x42\xc8\xbc\xdf\x85\x08\x86\xc0\x0a\x15\x9a\x88\xbe\xd3\x16\x16\x68\x68\xac\x55\x2b\x6d\xe1\x66\xf7\x95\x02\xcd\xc1\x82\xb7\x9e\x3e\x79\x27\xfd\xae\x38\xf0\xaa\x57\xe8\xd0\xa1\xad\xea\xe7\x26\x53\x48\x67\xb4\x58\x9f\x40\xf8\x17\x42\x77\x2c\x9c\x68\x12\x42\x8e\x15\x5c\x9f\x85\xfc\x97\x11\xa9\xc5\x2c\xf4\xbf\x30\x5c\x77\xa9\x62\xeb\xb3\x82\xcb\xb3\x30\x5a\xf7\x02\x81\x39\xcf\x0a\xb3\x42\xd9\xbe\x33\x75\x85\x26\x4e\x0a\xa4\xfe\xc9\x62\x28\x34\xf1\x2e\xe6\x6a\xf5\x08\x06\x50\xb2\xac\x70\x17\x70\x02\x69\x7e\x85\xcb\xb6\x54\x5b\x75\xc8\x4d\x79\xdc\x1e\x90\x95\xac\x70\xc8\x41\x79\x87\xb1\x65\x01\x02\xd3\x5f\xcd\xc1\x95\x01\x35\xcd\x0a\xcf\x1d\xda\xef\x95\x25\x5a\xc9\xfd\xb0\x25\xb1\x21\x83\xcf\x8f\x10\x68\x05\x6e\x08\x08\x59\x56\xb8\x37\x04\xac\x6f\x56\x78\xef\xe8\x83\x61\xb6\xc2\x65\x3e\xf0\xa1\x5f\xe1\xf2\x1e\x85\x33\x68\x85\x7b\x59\xc0\xd4\x66\xc5\xdf\xed\x3c\x64\x0a\x58\x7f\x42\x13\xb4\xa2\xbb\x3a\x05\x02\xd5\x5f\x3c\x1b\x70\xd7\xc1\x6f\x7d\x01\xda\x5f\x3c\x1b\xe2\xbd\x8c\x63\x87\xb3\x22\x84\xe0\xd9\x10\x03\xf3\x53\xcd\x42\xfd\xc9\x4f\x6f\xfd\x97\x8d\x58\x51\x5a\xa9\x66\x7f\xc9\x42\x31\xf7\x9c\xa8\xf7\xf0\x5c\xd1\x63\x82\x5e\xc4\xc8\x4c\xd8\xf4\x74\x57\x3c\xa8\x58\x8b\x38\x01\xc9\xbd\x17\x27\x20\xec\x80\x16\x2e\x40\xc9\xbd\x37\xde\xf3\x03\x8b\xa0\x45\xb8\x80\x84\xec\x69\x11\x2d\x20\x21\x70\x5a\x91\x23\xa1\x30\xb7\xe0\xfc\x63\x26\xb4\x40\xf9\x4f\xa0\xd0\xaf\x08\x0d\x7d\xaf\x8c\x3f\x9b\x53\x84\x86\xbe\x57\x06\xe0\xaf\xf6\xc5\x2b\xba\xbd\x77\x6a\xae\x8c\x8e\x03\x5b\x69\xdd\xf0\x9d\x16\x39\xb2\x12\x24\xdb\x3e\x31\x00\x12\x80\xf5\x2b\x76\xe6\x67\xd0\x26\x78\x1e\x82\xe0\xad\x08\xcf\x83\xd9\xea\x8a\xfd\x4e\x90\x59\x46\xfe\xcf\xbf\x31\xf7\x59\xf1\xd2\x4f\xc1\x10\x74\xe1\x0f\x94\xd0\x40\xad\x38\xef\xc8\x02\x3c\xb3\xe2\xdd\xf7\x9b\x59\x2e\x5d\x15\x8c\x3b\x57\x9c\x36\x92\xf4\x4b\x29\xf8\xad\x2f\x1c\x89\x52\xb4\xce\x4b\x35\x48\xef\x56\xbc\x9c\x13\x86\x37\x2b\x2e\x3f\xa4\xd7\xeb\xe1\x78\x31\xfd\xbd\x59\x28\x6f\x23\xb7\xb1\x89\x97\xa3\xc2\x16\x67\xe1\x70\x84\x45\xcc\xc2\xc3\x28\x21\x1e\x5b\x38\x18\x61\xe7\xb2\xe2\xbd\x01\x14\xec\x0f\x17\x11\x02\x9a\x8b\x16\xc6\x09\x8c\x92\x85\x9f\x51\x41\x8c\xbb\x08\x15\xd0\x5c\x91\x97\xf2\x4a\x75\x2d\xdd\x83\xa6\xb9\x0a\xef\x51\x92\xd0\x9d\xad\x08\x15\xba\x95\xc5\x7b\x8f\xc0\xae\x64\xc5\xd7\xc6\xfa\x6e\x29\x54\xfa\x22\x65\xfa\xd1\xb7\xb7\xf2\x6e\x3a\xb2\x2a\x8e\xdd\x78\xe9\x10\xa3\x8d\x15\xb9\xb3\xa3\x64\x5b\x04\x1d\xc0\x2e\x63\xe1\xae\x84\xe8\x6d\xa5\x5f\x43\xc8\x65\xf2\xad\x9f\xbd\x29\x05\xe6\x8a\x2d\x06\x77\xa4\x84\x34\x6f\xa5\x4b\x6f\xb8\x38\xaf\x74\xc9\x2d\xa1\xa6\x5b\xe9\xd2\x15\xb6\x0b\x0b\xaf\xa4\x84\xc2\x6e\xe1\x87\x94\xd0\xd7\xad\x14\x99\x15\xf8\x1b\xe2\x12\xa4\xc4\xb4\x24\x78\x31\x80\x2e\x16\x21\x0a\x30\x74\x58\x49\xa1\x18\x53\x44\xb0\x82\x44\x5c\xc0\x85\x8b\x51\xc2\x21\x77\xe1\x47\x54\xb0\xe3\x5a\xe9\x12\x16\x16\x0a\x2b\x41\x58\x08\x05\x57\x82\xab\x02\xe0\x7c\x25\xb8\xa7\x66\x57\x2b\x63\xc7\xf1\x98\x6a\xfb\xcf\xbf\x51\xf1\xaf\x54\xa9\x15\x56\x23\xd5\x71\x93\x69\x2f\x97\x66\x94\x83\x2b\x5d\xfa\x6a\x36\x17\xf2\x72\x2d\xa6\x6a\xbb\x78\xbf\x9c\x14\x0a\xf7\x45\xfc\x83\x84\xf2\x70\xa5\x4b\x5d\x88\xff\x16\xf1\x0e\x8a\xeb\x28\x75\x9b\xe2\xbb\x15\xd1\xa3\x7b\xc6\x15\x57\x0c\x9e\x4c\x20\x22\xaf\xd4\xad\x88\x1e\xc1\x6c\x61\xd7\xb4\x12\xd2\x30\xa4\x98\x2b\xdd\x43\x0e\x30\xe4\x95\x10\x82\xcb\x0e\xe1\x02\x85\x16\x7d\x11\x3c\x21\x25\xbf\x1c\x94\x92\xcd\x62\x29\x74\xe3\x9e\x60\x08\x1d\x57\xe2\x04\x93\x79\x4a\xf3\xb6\x85\x03\x07\x5f\xa7\x84\x37\xf1\x4a\x8b\x91\xe6\x34\xc3\xed\x29\xa5\xfc\x37\x50\xea\x95\xb8\xfb\x7c\xeb\x09\x12\x4e\x36\x63\x53\x35\xe5\x6e\x66\x8d\x7d\x3a\x5d\x7e\x0e\x15\xf8\x4a\x9b\x86\x42\x37\xe9\x9e\x92\x28\xc3\x17\x81\x17\x12\x42\xce\x45\xa8\x85\x82\x21\xc7\x4a\xa7\xdd\x2c\xe6\x86\x57\x74\xbe\xcf\xb8\xc9\xe6\x66\xe8\xe1\xc5\xd3\xa5\x72\x34\xcb\x8b\xa8\x0c\x09\x39\xe8\x4a\xe7\xdc\x64\x5e\x1f\xaa\x64\x42\x1e\x76\x0d\x09\xeb\x72\x86\xdd\xd5\x76\x89\xb9\xbb\xd8\x5e\x66\x9b\xed\x3d\x5d\x42\x45\x65\xbc\x32\xb2\x6b\x54\x8b\x2b\xff\xee\x1c\x58\x25\xee\x57\x68\x88\x57\x96\xf4\x18\x9f\x1c\xf8\xb2\xf0\x4a\xe7\xa1\xb7\x7c\x49\x0f\xad\xf1\xca\x92\x1e\xf4\x83\x73\x56\xc1\xd5\x77\xe5\x7b\x74\xa1\x9f\x5d\x78\x66\x25\xdc\x8e\x57\x96\xc4\x38\xe9\x09\xc9\x50\x50\x18\xae\xcc\xa5\x1a\xbd\xe4\xca\xdc\x89\x50\x0a\x2e\x22\x35\x24\x60\xf7\x57\xe6\x86\x8d\x34\x75\xe5\x42\xf1\x14\x23\xe9\x31\xe4\xc4\x61\xc0\x3b\x78\xe1\x9a\x95\xd0\x5a\xae\x5c\xef\x60\xa0\x48\x5b\xc4\x60\x40\x6d\xbb\x32\x17\x14\xdc\x58\x57\xae\xe5\x26\x53\xb6\x94\x07\x15\xe6\x4b\x79\xa5\xdb\xbd\x4b\x7a\x48\x8a\x57\x96\xf2\xa0\xc8\x8c\xec\x19\x49\xed\xc2\x69\xab\x74\x3f\x45\xc8\x8c\x90\x75\xe5\x7b\x9f\xc1\xe9\x78\x65\xae\xf8\x08\x5c\x57\xbe\xe7\x1a\x1a\xe0\x95\x3b\xbd\xe8\x66\x61\xfe\x39\xe0\xb3\x44\x03\x19\x12\x95\x01\x91\xf4\xca\x83\xa1\x86\x50\xf2\xb8\x4b\x04\x82\xc8\xf7\x5c\x03\x74\x78\x65\xe4\xcd\xc8\x4b\x17\xa1\x19\xc0\x11\x5e\x79\x32\x2c\x1c\xb7\xf9\x52\x15\xea\xdf\x45\x20\x86\x94\x2c\x6f\xdd\xa1\x80\x26\xf2\xba\x53\x34\x5c\x3a\xf7\x2c\x03\x24\x78\x11\x8f\x21\xa1\xcc\x5c\x44\x60\x40\x4f\xbb\xf2\xa5\x20\xb4\xb4\x2b\x43\x1e\x70\xdc\xd9\x13\x8e\xbb\x48\xbe\x27\x5c\xc1\xdf\x6e\x65\xc9\x86\x63\x3a\x73\x39\x1a\xce\xca\xa1\x7a\x1a\xcb\x8a\x87\xcd\xcd\x8f\x0a\x0b\x0a\x7f\x1e\xee\x3f\x94\x78\x59\x47\x1c\x89\x57\xbe\xe7\x57\x19\x36\xe5\x9e\x5f\xdd\x35\xfc\xde\x56\xb9\x6e\x51\xe2\x78\x57\x21\xb8\xc2\x37\xb1\x48\x96\x11\x16\x2f\x22\x2b\x74\xd6\x6a\xb9\x17\xa4\x32\xbe\xf7\x85\x62\x24\xf2\xce\xdd\x8a\x35\x5c\x10\x25\x00\xd3\xbf\x0a\x34\xc4\x71\x40\x40\x84\x82\x87\xd4\x2a\x91\xec\xcc\x6c\x89\x66\xff\x9b\x78\x6a\x95\x7b\x72\x21\xda\x5f\x84\x50\x48\x88\x8c\x57\x49\x5c\x08\xbb\xef\x77\xe0\xd9\xf1\x09\x9f\x90\xf0\xd4\x5e\x85\xcb\x16\xde\x50\x8b\xa8\x08\xc9\x9b\x54\xb9\xd4\x53\x70\x72\x5a\xa5\xdc\x4e\xb2\x06\x88\x95\x90\x10\x37\xaf\x02\x51\xb1\x06\x08\x94\x50\xc1\x3a\x5c\xa5\xa2\x14\x62\x17\x28\x2c\x76\xbc\xb8\x57\x69\x74\x86\x13\x95\xb0\x06\xdd\x11\xbc\x8b\x1a\x68\xdd\x45\x78\x02\x94\x00\x8b\x78\x04\xc3\xf1\x9b\xa4\x52\x1c\x97\x17\x24\xd3\x0b\x3f\x42\x70\x73\x57\xb9\x5b\x7f\xfd\x39\xf2\x93\xbe\x71\x10\x97\x7b\xfd\xae\xc0\xc7\xad\x72\x97\xe3\xb0\xf2\x4d\x1f\x38\x9f\xcb\x5d\x8e\xc3\x02\x37\x7d\x70\xb0\xee\x06\x0c\xe2\xeb\x2a\x68\x18\xf1\x16\x5f\xf8\x07\x26\xc4\xde\xab\x1c\x2a\xe2\x1c\x2e\xcf\xbc\xf7\x5b\xf6\xee\x82\x8e\x11\xe7\xf0\x55\xee\x9d\x05\xac\xd8\x55\x1e\x7a\xcf\x11\x5a\x5e\xd4\x59\xec\x3b\xe5\x45\x87\xc5\x59\x59\x91\x3f\x21\x04\x5f\xf5\x47\xb5\x2c\xf1\x8a\x8e\xc1\x2b\x66\xbd\xf7\x93\x8a\xe8\x7f\xd5\x70\x1b\x4f\x31\x35\xa8\x5a\x4b\xbc\xd3\x78\x4a\x64\x17\xc6\x31\x7b\x11\x9a\xa0\x02\x32\xb6\x6a\x4c\xff\xf9\xf7\xb0\xc0\xbb\x23\x57\xa4\xed\xab\xc6\x72\x93\x79\xbd\x3c\xcf\xf0\xc3\xbb\x72\x80\x7e\x5d\x04\x24\x48\xf9\x7b\xb7\x85\x54\x8f\x2e\xde\x1b\x6e\x2d\x0c\x06\x8b\xb9\xb2\xab\xe2\xd7\xbd\xea\xbd\x40\xa0\x9c\x58\xf5\xee\xa4\x00\xc3\xae\x8a\x56\x0e\xff\xee\x55\x2f\x6b\x33\x6c\x60\xab\xf7\xae\xcf\x02\xa8\xf3\x36\xc5\x1c\x93\xa9\x2b\xbe\x53\x08\x2d\xe4\xae\xeb\xb5\xbf\xde\xcb\x6e\xc2\xef\x7a\xd5\xbb\x5e\xf0\x68\x5d\x15\xb6\x1d\x0f\xec\x55\x27\x72\x07\xbb\x7c\xd7\x0b\x9e\xa9\x0b\xcf\xc0\x1a\x6d\xec\x0a\x37\x99\x16\x22\xd1\x47\x00\xbf\xea\xbd\x03\x03\x2e\xbb\x70\x03\x4c\x08\xe0\x57\x45\x28\x8a\xab\xf6\x22\xf6\x00\x90\xb3\xab\x1e\xe6\x96\x4d\xa3\xde\xdd\x06\xf0\xd9\x55\x5f\x72\xd0\x07\x64\x95\xb8\x4e\xaf\xfa\x52\xf6\x6d\x77\xfb\xdd\xa9\x92\xb5\x6e\xc8\x2a\xf1\xa1\x5e\xed\x6e\x25\x38\xbe\xae\xe6\x4e\xc2\xe9\x86\x0b\x60\x42\x78\xbe\xf0\xf3\x4b\xf8\x45\x2f\x42\x00\x24\x3c\xa1\x57\x8b\x7c\x4a\x72\x42\x8e\xc1\x68\xe1\xbb\x97\x10\xaa\xaf\x76\x77\x0b\xf4\x25\x8b\x10\x01\x09\xe7\xe8\xd5\xd2\x44\x4a\x42\xe9\x69\xfd\xe7\xdf\x38\xc1\xae\xc6\xad\x52\xee\xa6\x65\x86\xa8\xfd\x55\x42\x85\x3f\xdf\xb0\x41\x77\xc9\x0c\x2b\xe6\x48\xc6\x93\x7a\x35\x96\x06\xdb\x54\xab\x34\x82\xab\x21\xce\x76\x38\x97\xae\xd6\x18\x1c\xb3\xb4\xdb\x64\x48\x16\xd7\xba\x9a\xbe\x2c\x77\x1d\x73\x85\x6d\x8d\x15\x68\xee\x7b\xac\xe2\x1f\xba\x1a\x8a\x9f\x6c\xee\xcb\xa2\x56\xb7\xf9\x86\x11\x0d\x10\xb0\xab\xcd\xdb\x71\xb7\xc3\x86\xcb\xfc\xef\x7b\x67\x58\x2d\x1e\xd0\x59\x7c\x27\x17\x21\x01\x2a\xc1\x47\x56\xc3\xca\x1d\x2f\xc8\x05\xb8\x7f\xca\xd6\x0b\xf0\x14\xce\x8d\x0b\xaf\xb8\xaa\x6c\x09\xcc\xff\x80\x6b\xe3\x6a\xf7\x5c\xac\xee\x20\x0d\xab\x62\x54\x48\x0b\x5f\xb9\x80\xde\x68\x35\xec\xc9\x70\x6b\x5c\x60\xfd\x27\xf4\x07\xab\x01\x1e\x05\x32\xec\x6a\xf7\x50\xab\xae\x4a\x5c\xde\x12\x41\x3b\x97\x1e\x6f\x38\x24\xae\xfe\x63\xfe\xd9\xdb\xfb\x8f\xf6\x57\xd3\x69\x33\x9b\x3b\x18\xff\x15\xcf\xff\xd5\x31\x4f\x50\x96\xa3\xd7\xdb\x2f\xf9\x0e\x05\x70\x6a\x77\x6c\x88\xf1\x3d\x5c\x3d\x30\x86\x0c\x7f\xc7\x28\x15\xe8\xd5\x85\x27\x5b\x52\xb2\x03\xb6\x7f\xfd\xbe\xe5\x1e\x85\xbe\x62\xf5\x84\xa8\x8c\x79\xe9\x98\x14\xe0\x1a\xbe\x70\x62\xab\xdf\xb7\xf8\x4d\xfc\x20\xd4\xce\xe6\x44\x54\x80\x05\xf6\x7f\xf8\x41\xa9\x1d\xa3\x02\x1c\xc1\x57\xc7\xc8\x15\xbc\xd5\xd5\x4b\x44\x70\xc6\xb7\xc4\x00\x02\x7a\x75\xe1\xf0\x56\x15\x18\xe1\xef\x96\x80\xf6\x5f\xbd\x5a\x57\xe3\xbd\x93\xee\xfb\xe2\x9d\x76\xd6\x07\xa9\x9b\xef\x8c\x33\xac\x04\x78\xff\x55\xe1\x50\x6f\xb4\x81\x6d\xa1\xdf\x55\x9b\x70\x38\x5f\xbd\x21\xb1\x4b\xe6\x67\x6c\x11\x49\xf5\x4e\xfb\x6d\xcf\xbd\x7d\x55\xa5\xf4\xa2\xfe\x63\x23\xb5\x3a\xd0\x11\x1e\x75\x1d\x1e\x10\x35\xca\xea\x9c\x98\xf8\x89\x2f\x9d\xe5\x7e\xce\xa3\xeb\x19\x4a\xc6\x3b\x2e\xe1\x3e\xbe\x44\xf8\xc7\xa8\x6a\x75\x36\x3e\xf0\xf0\x17\x7e\x72\x15\x84\xeb\xd5\x97\x65\xd2\x7e\xd7\x39\xdb\x10\x7e\x71\x15\x1f\xe7\xd5\xb1\x91\xc4\x24\x6a\xe1\x22\x97\xd4\xc2\x74\xd7\xbf\xe5\x80\xa3\x82\xf1\xd3\x22\x4a\x40\xc2\x6b\x7d\x75\xd7\x39\x42\xaa\x0e\xd7\x07\x8a\xfe\xea\xae\x79\xb6\x89\xce\x49\xac\x68\xae\xe3\xb7\x84\x25\xd3\xea\xe7\x8e\x7f\x75\x0d\xe0\xb5\xf4\x73\xed\x3d\x88\x09\x61\xbc\x8c\x21\x80\x55\xd3\xea\x84\xc6\xf0\xd0\x27\x82\x40\x2a\x7f\x05\x45\x5e\x5d\x22\x63\x03\xe8\xaf\x0d\xa4\x51\xef\x44\xb8\x49\x43\x70\x38\xc5\xd4\x68\xf5\x17\xd1\xa5\x03\x0c\x06\x15\xda\xca\x35\xb8\x5d\x29\x19\x1c\x3f\x24\xa0\x0c\xd2\x80\x28\x15\x07\xe2\xea\x57\x95\x7a\x13\x94\x20\xa0\xd1\x5c\x03\x5e\xc1\xc5\x32\x70\x79\xc2\x87\x71\x8d\x50\x91\xa4\x36\xde\x99\xa8\xef\xdd\x3c\x89\xf7\x41\xfa\x1d\x60\x5d\xfc\x30\x49\x5a\x83\xf3\x42\x3d\xd2\x88\xd6\x45\xbd\x18\x0b\xa9\x48\x1a\xf7\xc0\xa8\x98\xf1\xad\x21\xf1\x41\xa0\x03\x41\xbd\x7a\x22\xe3\x0b\x60\x22\xb4\x06\xb0\xbd\xd8\x02\x2d\x42\x0d\x24\x95\x43\x23\x33\x51\x9c\x53\x03\xc7\x12\x8c\x81\xd6\x90\x58\xb9\x0a\x0c\x88\x15\x13\xa0\x85\x1f\x5f\xc0\xd8\x66\x11\x64\x20\xa9\x2a\x22\xc6\x40\xc0\xc2\x66\x11\x48\xa0\x56\xc7\x01\x9f\x51\x14\xa9\x6b\x54\xc6\xdf\xbe\xe3\x9b\x8d\x5d\xcd\x1a\xc4\x97\xc1\x6d\x71\x0d\xce\x09\x00\xfb\xd7\x80\xf8\xf0\x60\x5c\x03\xae\x15\xec\xfe\x35\x24\x44\x36\x95\xd1\x2b\x02\x66\xca\x07\x29\x0b\x83\x9b\x35\x3a\x62\x65\xcb\xef\x96\x49\xf9\xf7\x92\x56\x71\xdb\x5b\x63\x30\xce\x6c\x36\x03\xc2\x0d\xce\xbb\x84\x0b\x67\x30\x06\x1b\x9e\xe3\x3c\xee\x86\x87\xaf\xdb\x1a\x33\xf2\x4e\x99\x70\x43\x40\x14\xac\x71\xb9\xa1\xaa\x34\x10\xf7\xc3\x04\x5a\xc1\xc2\xad\x30\x60\xcd\xb2\x06\x32\x4a\xa5\xbc\x63\x59\x2f\xe3\x8c\x99\x9f\xda\xae\x21\xb1\xb2\x39\x8d\x4b\xac\x15\x2c\xc5\x35\x70\xe1\xc6\x40\x65\x8d\x7b\x58\x55\x1c\xbd\xd6\xc0\x92\xa8\x54\xd3\x11\xba\xbb\x06\x20\xee\xe0\xda\xdb\x48\xdd\x9d\xf7\x4b\xd0\xb5\x39\xbf\x10\xb4\xac\x27\xf1\x0a\x6a\x73\x6c\xd1\x0c\x10\x93\x60\x8d\x87\x71\x76\x0c\x51\xf8\x12\x77\x60\xe1\x78\x18\x82\xe3\x03\x6f\x0d\x06\xc3\x1a\x2f\xf9\xed\x0b\x74\xa7\xb0\x0e\xef\x41\xe3\xd0\xaf\xf1\xda\x5f\xda\xf0\x32\xb6\xb4\x7f\x42\x5f\x58\x09\x2c\xdd\x08\xb1\x12\x58\x93\x03\x0d\x15\xfe\xc2\x6f\x30\x15\xf3\x04\xe6\x82\x0d\x8c\x30\x06\xa9\x7c\xf9\x99\x0b\x36\xb0\x89\xa7\x0c\x7a\xfe\x85\x67\x61\x2a\x5f\x39\x6c\x60\xa6\xc3\x61\x29\x71\x99\x58\x27\x10\x71\x60\x11\x7e\x20\x60\x00\xb0\x26\x77\x36\xd5\x8a\x3a\x0b\xe2\x82\xb7\xa6\x87\x9e\x79\x00\x55\x08\xb6\x27\x5b\xe6\x5f\x85\xf1\x33\x5b\x30\x85\xe1\xd0\x4d\x04\xfa\x45\x18\x82\x54\x2c\xac\x56\x74\x12\x34\x0a\x71\x87\x8a\xcc\x29\x91\xb1\x49\x4c\x88\x4c\xa1\xc5\x44\xde\x41\x70\xe0\x35\x81\x3c\x50\xd7\x4e\x64\x82\xaa\xac\x60\x36\xca\x61\xd7\x26\x14\x41\x55\x14\x40\xbc\x81\xaa\x2c\xc0\x70\x03\x2a\xc4\x27\x84\xe5\x45\x7f\x22\xfd\x28\x5c\x31\x26\x08\x4a\xc4\x4d\x5f\x13\xc1\xa3\x27\xd0\xc4\x6a\x1a\x17\xbb\x45\xa0\x81\xea\xed\x7d\x22\x3e\x04\x55\x63\xcd\x89\xf2\xc2\xc9\x9f\x0c\x24\x1b\x33\xb1\x08\x2a\x38\x60\x6b\x4a\x64\x6c\xba\x13\x22\xc3\xf8\x6e\x11\xa2\xa0\x7a\x7f\xc7\xdb\xb1\x02\xee\xb5\x26\x5c\x60\x77\x92\x11\x93\xa8\x7a\x9d\x8b\x3c\x4e\x14\x5e\x07\x2a\xa9\xf1\x7a\xac\xdd\xf1\x27\xea\x87\x5a\xea\xb9\x68\xb3\xe3\xcf\xfd\x42\xfd\xec\xdc\xb6\x87\xfc\x38\xa5\xa8\xbd\x9e\x98\xd6\xaa\x0c\x99\x97\x83\x34\xf2\xf9\x22\x0e\x41\xf5\xf6\x3e\xcf\x25\x20\x4f\xc7\x09\xac\xb7\x2a\x6b\x22\x12\x24\x4f\xc7\x89\xe4\xa4\x3a\xe6\x18\xfc\x54\xc7\x16\xff\x01\x75\xd9\x44\x23\x08\x2a\xad\xf1\x72\x4c\x40\x6f\xac\xf5\xb3\x4c\xdf\x13\xe9\x8d\x77\xbf\xf5\xfd\xf6\xcb\x4b\xe6\xba\x5c\xa3\x81\xcf\x17\x6e\x90\x15\x34\xa4\x45\xd4\x81\xa0\x1e\x79\x71\x70\x81\xee\xba\x16\x07\x17\x90\x1d\x8b\xf8\x03\x21\x5a\x0e\xd7\x5c\x00\x3b\x96\xd1\x07\xa2\xe5\x70\x70\x11\x6e\x60\x2d\x22\xc7\x46\xb8\x52\x9c\x24\xab\xf7\xb8\x85\x1f\xaf\x9a\xe7\x75\x2f\x49\xd5\xcb\xdb\x42\xf6\xa2\x2a\x88\x80\x04\x95\x28\x1e\x6b\x01\x0f\x85\x03\xe0\x22\x36\x41\xf5\x42\x86\x47\x65\x52\x47\xb4\xe0\x50\xc1\x21\x5a\x0b\x35\x1b\x58\x20\x8b\x50\x04\x15\xf3\xb4\xb5\x70\x6d\xc3\x39\x6f\xe1\x73\x59\xbd\x7a\x19\xa1\x40\xed\xf3\x82\x88\xc1\x26\x5a\xb8\x62\x26\x95\xe8\x04\x2e\xa8\x20\x13\xad\x85\xaf\x2f\xae\x7c\x6b\x71\xa8\x7a\x3f\xc3\x41\x33\x81\x27\xb2\xf4\xcf\x8c\xf6\x17\x03\x5a\xa0\x45\x96\x61\x0e\xd4\x40\xaf\x6a\x3b\x69\x03\xde\x10\x6a\xa0\x57\xbd\xb4\xe0\xd5\xcb\x40\x06\x2a\x8f\x57\x75\x7c\x78\x6f\x7e\x4b\x1b\xe0\x68\x65\x82\x56\x7b\xd0\xb8\x31\x3e\xdd\xba\xc8\x03\xfd\xaa\xfe\x32\x4e\x81\x2a\xe6\x75\x0f\xcc\xf6\x73\x7e\xa5\x6b\xc7\x56\x5a\xae\xf1\x6f\x9b\xd9\xe2\x04\xad\x2e\x34\x5c\xfa\xd5\x2f\x13\xcb\xa0\x79\x5d\x5a\x44\xb7\x54\xc1\xbc\x26\x03\x03\xa1\x2f\x4e\xcd\xea\x62\x84\x55\x56\x23\x8c\x9b\x68\xaa\x2e\xc6\x69\xa3\x28\x7f\xf9\x2d\x8d\x5d\x7e\xcb\x20\x5d\x56\xb9\x81\xa9\xb2\x16\x28\x42\x2a\x79\xd7\x65\x95\x1b\x20\x2a\x0b\x9f\x52\xe3\x9d\xaf\x75\xd9\xe6\x06\x50\xca\x5a\x10\xb7\x96\x0a\x4b\xe2\x6e\xbe\x33\x69\x2e\x6a\x89\xbb\xf9\xce\x40\xba\xa8\x31\x9c\xaf\x2e\x64\x54\x0f\x72\x81\x0b\x35\xa1\x57\xa1\x05\xc2\x8a\x6a\x61\xdc\x52\x9b\x57\xa1\x05\x42\x80\x7a\xe1\x75\x2c\xd3\x77\xfa\xcb\x46\xbe\x30\xf7\x25\x14\xc2\x5a\x6e\x1e\x6c\xde\xcb\xcd\x43\x82\xc0\x70\x50\x85\xe3\xc2\xc7\x1f\x38\xde\xb5\x1e\x16\x42\xf3\x9d\xb6\x21\xe6\x59\x97\x93\x6e\x5e\x1f\x16\x9e\xff\xd1\x85\x86\x0e\x51\xad\xe4\x72\xb3\x81\x45\x5f\x5c\x5d\xf1\x57\x5c\xdb\xcd\x86\xc3\x6a\x63\xa8\xa2\x8a\x72\x03\xec\xaa\x76\x7a\xff\xd0\xe1\x52\x26\xee\x2d\x49\xd3\x0b\xbc\x61\xdb\xef\x2b\xe7\x21\xdd\x77\xca\x67\xc3\xc6\x15\x36\xa9\xd3\xdc\x6e\x48\x6c\xc0\xf8\xc0\x24\x30\x58\xd6\x8e\xcc\x35\x9c\xe5\x8e\x94\xe9\xb7\x6c\x2a\x2a\x1e\x77\x74\x4c\x06\xef\x87\x74\xf3\x33\x26\x5f\x99\x8c\x09\xdc\xe7\x4e\xb4\x99\x0d\x7e\x03\xeb\xa9\x16\x72\xdf\xd3\xbd\xc9\xe9\x12\x4d\x23\x69\xf4\xa1\x5b\xac\x6a\x3d\x42\x61\x04\x95\x73\x38\xc2\x24\x2d\x40\x76\xb9\x75\x61\x3b\xbd\x36\x4e\x50\xaa\xdb\xf0\x95\x6d\x72\x9f\x86\xc4\x50\xdf\xb6\x25\x68\x38\xd1\x8d\x7e\x50\x8e\x7f\xc3\x0d\x03\xf8\xb2\x76\xb7\x0d\xd4\x75\x0f\xea\x86\xbd\xea\xc2\xd5\x25\xa8\x9f\x23\xc8\x45\x52\x47\xbb\x71\xde\xc6\x11\x70\xed\x8e\xce\xdb\x72\xb4\x8b\x67\x03\xd8\xa3\xa2\x2e\xa7\x6d\x97\x4e\x1b\xf6\xa3\x6b\xa3\xa3\xaf\x5f\x3a\x63\xe8\x3c\x0e\xfa\x05\x8d\xef\xc9\x9a\x31\x3f\xba\x7b\x40\x17\xd6\x86\xc6\x35\x85\x22\x9a\x46\x03\x0a\x61\xe1\xc5\x62\xfc\xe9\xb5\xa5\x3b\xf6\x01\xdc\x55\x0c\x45\xbd\xf4\x51\xd1\xea\x64\x6f\xea\x82\x71\xd8\xc7\xba\x68\x3f\x34\x95\xcc\x83\xd1\x3c\x90\x2f\x0b\x8f\x15\x63\x48\xaf\x8d\x93\x5f\xfa\xd2\xa1\xaf\xfa\x57\xce\xcc\x90\x1c\x78\x0c\x2c\x82\x70\x24\x0d\x5a\x70\x68\x69\x72\x45\x7a\xb4\x10\xde\x61\xe1\xd1\xd2\xe4\x84\x70\x69\x49\x5e\xaf\xf4\x51\x51\xad\x8d\x8f\x8a\x61\xa5\x17\xae\x26\x4d\x6e\xe3\x10\xe2\x4e\xa1\xda\x41\xc7\x2e\x57\xa1\xf7\xb2\x52\x35\x9c\x97\x9b\x5c\x05\x51\x38\x52\x6d\x7e\xfb\x90\xee\xb7\x2c\x64\x36\x8c\x03\xdb\xac\xea\xea\xc0\x36\x6b\x3f\x43\x9c\x0e\xc3\x3a\x2f\x5c\x52\x9a\xa7\xf8\x21\x9c\xbb\xba\xab\x83\x7c\x48\xa3\x95\x93\x2d\x87\x32\x33\xa7\xac\x79\x32\x86\x0e\x4c\xfe\xe1\x9a\xa9\x9e\xea\xc0\xd1\x56\xf3\x4b\x10\x10\xe8\x29\x8c\x9b\x7d\x47\x30\x0d\x96\xcd\x3a\xc5\x6f\x2b\xef\xf4\x0b\x6e\xcf\x40\x21\xea\x90\x74\x1e\xf1\x6a\x79\x08\xf1\xa8\xbc\x10\x9f\xe7\xe4\xd5\xf2\x34\xf3\x53\x6f\x33\x3f\x7d\x6c\x8c\xb3\xdf\x4a\x4c\x10\x3d\xee\x26\x2d\x7e\xdf\xb2\x28\x6c\x43\x67\x71\x59\x6f\x4f\x58\x6a\xd0\x4e\x62\x41\xab\x54\x3a\xdd\xf6\xd3\x06\xec\xc8\xaa\xf5\x42\x58\x4a\x8e\xcf\xc0\x9c\x83\x0d\x43\x2f\x13\xfc\xcf\x16\xa1\x43\x0c\x6b\xbc\x88\x1c\x92\x80\xa3\x59\x78\x9f\x18\xe1\x78\xe1\x3c\x9d\x9a\xe5\x80\xf8\xa5\xd6\xe5\xcc\x07\x13\x11\xdf\x5f\xf2\x50\xce\xb2\x4c\xda\x80\x3c\x49\xcb\x19\x5d\xad\xd5\xb5\x1c\x64\x45\x6a\x52\x74\x5d\xd1\x2e\xe2\x2c\xeb\xe2\x5b\x10\x6d\xd4\xb0\xe0\xa4\xd2\x70\x4c\x5a\xe7\xf8\x2d\xed\xc1\x34\x58\x8b\x19\xdc\x51\x8c\x89\xbc\x74\x3c\xd1\x64\xe6\xe0\xc3\xaf\xba\x05\x67\xeb\x86\xb7\xed\x3a\x5c\x21\x9b\xed\xfc\x6c\x59\x18\x13\x9c\xf9\x55\xc9\xe0\x74\x12\x54\xc9\xe8\x74\xd2\x6c\x3f\x1c\xb0\xea\x99\x03\x4d\x69\x93\x73\xa0\x29\x55\x35\xcf\x8f\x31\x6f\xbe\x27\xd2\x33\xef\x99\xf4\xc8\x3b\x6d\x63\x83\xc4\xab\xc4\x80\xc8\xeb\xe1\x0a\xe9\x35\xff\x09\xb4\x19\xda\x79\x30\x26\x23\xb6\xc4\xc2\x87\xbb\x69\x55\x49\x8c\x12\xa3\x24\x2f\xfc\x4a\x1a\x5e\xae\xeb\x01\x84\x52\xa5\xcb\x03\x7d\x49\x53\x4f\xb4\x7c\xbe\x8d\xb4\x07\x1a\x79\xb0\xb1\xd7\xd2\x03\x9f\x94\x86\x67\xcd\xd2\x27\x05\x37\xbf\xf5\x70\x88\xe1\xcf\xb7\x8c\x80\x82\xbb\xc3\xc2\xfb\xa4\xe5\x5f\xfa\xdb\x66\x86\x6f\x4a\xd2\x0e\x04\xdf\x94\x86\x73\xcc\x22\x1a\x8a\x21\x98\x17\xfe\x28\x46\x53\x5e\x4f\xc6\x42\x08\xf6\xf5\xc1\xbb\x17\xc4\xdd\x85\x2b\x49\x73\x11\xe1\x4b\xd2\x5c\x2c\x0f\x32\x21\x2d\x93\x9e\xcb\xb2\x26\x30\x6e\xd6\x53\x13\x79\x18\x24\x08\x1a\x17\x87\x45\x40\x94\xf6\x4d\x1a\x1e\x24\xc0\xe0\x2c\xbc\xdf\x53\x73\x42\x1a\x9d\x73\x02\xdb\xcb\x3b\xe5\x03\xa2\x0a\x40\xec\x7a\xb0\x37\x26\xe8\xc5\x7a\x24\xd0\xe6\x3b\x6d\xe3\x94\x7a\x50\x2a\x64\x27\x07\xce\x32\x3b\x21\x5c\x0f\x01\xd9\x59\x0f\xd6\x95\x5a\xb8\xe8\x2c\xae\xb0\x1e\x57\x6f\xe3\xf8\xae\x07\x33\x0e\xd0\x76\xd6\x83\xad\x96\x42\xe1\x07\x93\xc9\xe6\x42\x40\xa0\xa9\x70\x1c\xd7\x8d\xa4\xfc\xe6\x61\x51\x2b\x58\x27\x40\x49\x53\x66\x89\x27\x78\xd2\x14\x0b\x47\xf0\xa6\x3c\xf2\x05\x53\x49\x81\xfb\x8b\xa0\x1f\x17\x81\xf5\x86\x89\x01\x56\xe7\x9d\x72\xfc\x96\x2b\x98\xf2\x1b\x7c\xbb\x9b\xb2\xb4\x17\x99\xa2\xf2\x9b\x17\xe3\x0f\xad\xb7\xf0\x9c\x30\xc6\xec\xd2\x45\x82\xb0\x16\xeb\x65\x0d\x00\xa0\xba\x70\xe4\x6e\x1a\x41\xbf\x08\xe8\x71\x19\x58\x44\x27\x69\x5e\xe1\x5f\x00\x8d\x14\x76\xbf\xe8\x91\x08\x82\xb1\x70\xa4\x68\x1a\x43\xe3\xe9\x9d\x94\x09\xbd\x38\x07\x2a\x13\x7a\xb1\x25\x54\xf6\xf3\x62\x7e\x01\x1a\xcd\xc2\xc7\xda\x50\xb4\xeb\x75\x23\xe4\xe4\x36\x6a\x88\x82\xf2\x17\x21\xb5\x42\x6d\x22\x83\x24\x90\x5f\xd6\x7b\xee\x98\x80\x16\xb6\x5e\x04\xd0\x8e\xf3\x8b\xc9\x9d\x1b\xf0\x8b\x00\xfa\x1b\xe7\x07\xe2\x63\x63\x20\x40\x48\xd2\x1a\xe8\x85\x4b\xc6\x04\x68\xe3\xa2\x90\xb0\xf3\xda\xb8\x11\x04\x64\xc3\x5b\x37\x02\x0c\xbd\xb6\xa1\x30\x90\x07\xef\x5f\xb1\xfc\xc4\x3b\xe3\x99\x28\xc7\xf1\xb9\xeb\x73\x63\xb3\x6f\xa0\xd7\xad\x71\x3e\xc0\x2c\x1b\xe3\x7c\x63\xbe\xee\x5f\x9d\x58\x83\x51\x0e\x4a\x0e\x2c\xc6\x36\xd1\x2c\x0c\x0c\xbe\x7f\xc8\x53\x91\x19\x6f\xcc\xf3\x13\xe6\x63\xfb\xe7\x18\x66\xdf\x99\xdf\x4e\x39\x00\x03\x63\xbb\xba\x7f\x97\x63\x33\xec\xf1\xc6\xca\x3e\x20\x3f\xde\x5a\xd9\x83\xe6\xb2\x7f\x40\x37\x20\x33\xde\xbf\x69\x1b\x7c\x7f\x78\xef\xf7\xfd\x1e\x26\xc6\x45\xde\xbf\xf5\xf0\x4e\x39\xdc\x9a\x00\x34\xd9\x04\x9c\x30\x42\xf2\xfe\xe1\x6e\x8c\xed\xd6\xfe\x21\xa7\x44\xd6\xb8\x7f\x87\x3c\xfd\x6f\xf0\x65\x1b\x43\xfb\x44\x84\x89\x6d\x20\x8a\x62\xe5\x8f\x05\xd3\x21\x08\xb1\xd8\x90\xb7\x62\xd5\x46\x87\x88\xdb\x52\x9c\x04\x94\xff\x58\x8b\xed\x1f\xa8\xb0\xc5\x49\x78\x27\xf9\x29\x13\x37\x2a\x4c\xc7\xf6\x8f\xc8\x42\xc5\x49\x80\x70\x81\x3a\xd9\x01\xf9\x0a\x72\xaf\x1d\x10\x5c\x12\xef\x73\x07\x4e\x17\xc2\x7d\x6e\xa3\x5a\x00\x3a\xbb\x03\x3b\x3e\x60\x28\x1b\xdb\xfc\x84\xdd\xd9\x0e\x71\x60\x4e\x47\x99\xf7\x3a\x93\x30\x3c\xdb\xe1\x5e\x67\x8c\x32\xbb\x03\xd7\x16\xe4\x34\x9b\xd8\x16\x09\x93\xb0\x1d\x52\x21\x9d\xf2\x09\xa2\x5a\x6d\x5b\x6a\xa4\x77\xde\x37\xe9\x94\x99\xe9\xe3\xdd\x24\x76\xc0\xf0\x04\xb3\xb5\x1d\x58\xbc\xc8\x4b\x36\xa6\xfd\x09\x1b\xb6\x8d\x69\xbf\xb1\x5c\x77\xe0\x10\x40\x9b\xbe\x03\xf2\x0c\x0c\xda\x36\x26\xff\xc6\x73\xdc\x01\x0e\x0f\xeb\xb6\x8d\xfd\x7f\x40\xb6\xb1\x43\xe5\xdb\x4a\xdb\x38\x04\x90\xa3\xec\xd0\x74\x7d\xa5\x7c\x38\x39\x94\x2e\x3b\xa0\x24\x40\x56\xb1\x43\x27\x3f\x73\x14\x88\x50\x00\xd4\xe8\xc6\x7a\xbf\x0d\xc7\x16\x59\x45\x75\xac\xb0\xde\xef\xb6\x07\xb8\x41\xae\xe7\x9b\xf8\x17\xc6\x30\xdd\x01\x48\x13\xae\xd5\x3b\x5c\xce\xcc\x70\xa6\x3b\x10\x4f\x98\x6b\xf5\x26\x44\x86\x91\x4d\x77\x98\xb6\xd3\xfc\x58\x4b\xb2\xc0\xb1\xf7\x37\x1e\xe1\xc6\xe0\x3f\x81\x9f\xb2\x31\xf8\x37\xf6\xe9\x0e\x88\x2f\xb8\x26\x6f\xac\xfc\x03\xd7\xe1\x1d\xd6\xc4\x3a\x91\xfc\xc8\x20\xb9\x0e\x6f\xcc\xfc\x0d\x44\xb8\xc3\xd6\x07\x98\xfc\x88\x20\xb8\x02\xef\x00\x31\x75\xc7\x67\x5b\x3e\x6d\xe3\x10\xab\xce\xef\xe7\x3f\x4c\x39\xa7\xde\xba\x22\xdf\x72\x15\xea\xbe\x73\xd0\x55\xe7\x97\x83\xae\x3b\xb6\x8f\xe5\xd0\x66\xb8\x37\x10\x55\x76\x80\xee\xb8\xa2\xee\xf0\x46\x4c\x27\x6f\x1b\x22\x62\x01\x7c\x09\x76\x44\x06\x89\xf5\xde\x8e\xd0\x08\x48\xa1\x3b\xfe\x30\xd2\xfc\xde\x19\xff\x7b\x4d\xdb\x38\x02\x18\xb0\x72\x47\xae\xfc\x5c\xe5\x36\x8e\x00\x46\xee\xdb\x38\x02\x18\x5f\x72\x63\xda\x6f\x0c\xbe\xad\xb1\x3e\x26\x81\x5b\x63\x7d\xe4\xe5\x3b\x46\xdb\x4c\x5d\x91\x71\x86\xf6\x23\x22\x02\xc0\x3d\x77\xbc\xdc\x55\x47\x83\xb9\x23\x22\x02\x6e\x56\x3b\x46\xe8\x82\x4d\x3a\x12\x07\xac\xfa\x6d\xd2\xb4\x93\x7e\x25\xfb\x48\xdf\x11\x17\xe0\x5f\xb0\xf5\x00\xe8\x7f\x8d\x58\xb8\x23\x36\x96\x58\x01\xee\x98\x99\x1c\x16\x66\xe4\x54\xc6\xae\x72\x47\x4e\x65\xbc\x12\x36\xc1\x41\x12\xc1\x45\x76\x2c\x56\x48\xe5\x12\x22\x0b\x2a\x4a\x88\x10\x04\x1e\x02\x81\x2b\xdb\x8e\xf8\x7b\x75\x27\xea\x72\x69\x06\xa9\xdc\x11\x20\x41\xae\x6c\x3b\x02\x2b\xce\x55\x6b\x47\x89\x32\x9b\x4e\x5d\xb6\xad\xdd\x09\xc4\xd3\x7a\x47\x50\x89\xb8\x3a\x6d\x02\x8a\x18\x35\x72\x47\xc2\xd7\x71\x8d\xda\x78\x0a\x24\x30\x5c\x36\x9e\x02\x46\x7c\xdc\x11\x21\x23\x3e\x01\x3b\x62\x9d\x0c\x9a\xcb\x8e\x10\x31\x68\xa0\xdb\xe0\x21\x9c\xe8\x3b\xe2\xff\x8b\x89\xe1\x8e\x63\x62\x03\x4b\xf9\xc8\x14\x39\xdd\x37\xfe\x04\x46\x4f\xdc\x11\x59\x05\xd7\xab\x1d\x0d\x63\xcc\x26\x17\xef\x15\xc9\xc0\x85\x3b\x1a\xb7\xd8\x71\x40\x43\x07\x9e\xcb\x8e\xab\x62\x35\x4b\xdb\x90\x23\xe2\x69\xb0\xe3\xc2\xf6\xb6\x9a\x9f\x30\xc7\x81\xbe\xa0\xc5\xeb\x5f\x99\x2f\x79\xc8\x8f\x46\xaf\x5b\x0e\xf2\x8c\xee\xb7\x87\xf1\x77\x01\xea\xf7\x6f\xfe\x4b\xb8\x46\xfd\xdb\x51\xc2\x95\x20\x0e\xe5\x57\xda\x76\x28\x9f\x43\x06\x67\x02\x43\xec\x6d\xbc\x09\x7a\x70\x3d\x3c\x6c\xde\x12\x16\x1c\x6a\x97\x98\x1e\xc6\xdf\xb5\xf1\xd8\x1e\xda\xfc\x30\xa7\x83\x72\x20\x68\xdc\x49\x77\x04\xee\xb9\x39\xa7\x58\xce\x75\x89\xef\x2d\xe4\x61\x2e\x80\x5f\x6b\x12\xfa\x4b\xf9\xae\x93\x97\x39\x62\x43\xc5\xb9\x20\x70\x2b\xd8\xc9\x78\xe6\x1c\x56\xe9\x87\x11\x30\xf3\x9b\xb0\xdb\xec\x97\x03\xdb\x09\xb9\x60\x87\x03\x4b\x88\x2f\xe4\x30\xf0\x3b\xe8\x88\x59\xb6\x31\x51\xd0\x84\xee\x14\xfc\x96\xf2\xd9\x18\xd0\x84\x6e\xc2\x9e\x74\x94\x3d\x5b\x6f\x03\xb9\x10\x3d\x0c\x08\xc1\xb2\x93\x07\x29\xc4\x9d\x32\xe5\xb3\x61\x24\xb4\xea\x84\x42\xd9\x29\x63\xc3\xcc\xba\x4d\xe0\x80\xc2\x55\xef\x84\xed\x1d\x41\x51\x76\x42\x7b\x4e\xa4\x93\x4d\x3c\x93\x44\x6c\x93\x9d\x8a\x79\xa8\x4b\x1a\x84\xd6\xf4\x1a\xe8\x8c\x39\x5e\x03\x46\x66\xdb\xb8\x0d\x18\xa9\x6e\x27\xbc\x6f\x3a\x73\x41\xbc\x13\x83\xd6\xed\xd4\x02\xf9\x29\xd3\xd8\xfc\xc5\x77\xc6\xd3\x71\x43\xab\x8e\xf2\x69\xe3\x50\x60\x50\xb9\x9d\xee\xad\xc9\x20\x6e\x3b\x21\x2f\x04\xe6\x64\xe3\x50\x90\xb0\x29\xdd\x86\x46\xc1\x5f\x62\x1b\x19\xe5\x72\xe1\x7f\xd9\xcc\x92\x27\x2e\x13\x4e\x04\x95\x1e\x6d\xf8\x25\xc4\x44\x94\x94\x9d\x90\x7f\x00\xfb\xb8\x13\x5a\x3f\x2c\x51\x37\x01\x53\x0c\x0c\xb7\xd3\x25\xca\x8e\xb3\xca\x4e\x84\x34\x83\xbd\xdf\xc9\x50\xe2\xec\xf8\x7a\x03\x60\x82\xba\x93\x51\xf9\x5d\x38\xb8\x00\x20\x84\xdd\x9a\xe9\x27\x27\xed\xf8\x2d\x1d\x82\x50\x10\x86\x6e\x62\xa6\x04\xd9\xef\xf4\x4c\x2c\xbf\x69\x3f\xdc\xe4\x08\xd4\xf5\x60\x4c\xee\x42\x43\xb0\x2e\x3b\x9d\x90\x4f\x8c\xe0\x3b\x03\xe9\xe4\xbf\x7e\x4b\x39\x08\xd0\x65\x9b\xf3\xaf\x62\x13\x1e\x79\x6f\xe4\x31\xdd\x6f\x3b\xef\x83\x74\xdf\x69\x0f\x93\x96\x09\xfe\x87\xcf\xc6\xce\xc1\xc8\xeb\x3f\xde\x6d\x83\xe9\x77\xd1\x11\xbd\x65\x67\xe4\x0d\x83\xeb\x03\x76\xff\x01\x10\xc4\x9d\xa3\xe1\xd8\x69\x03\x5a\x36\x2c\x6d\x77\x4e\x96\x49\xfe\xe4\xb7\x85\x77\xbf\x35\xcf\x83\x0d\x3a\xe5\xa3\x12\x27\xea\xcb\xce\xd9\x6f\xe9\x0b\x2a\x71\x62\xbe\x6c\x9c\x03\x8c\x05\xb7\x75\x0e\xc0\x5e\x76\x13\xa3\x25\x61\x24\xbb\xf5\x02\xc8\xf6\x17\xae\x51\xee\x36\x17\xec\xdd\xed\x17\x78\x88\x72\xf6\xb9\x1a\xb0\x9a\xf6\x57\xf3\xd3\xce\x2f\xcc\x37\xed\x6f\x77\x9c\x31\x94\xdd\x44\x70\x49\xd8\xd2\xee\xdc\xb0\x79\x67\xde\xb3\x40\x7b\x3f\xd3\x1f\xf2\x98\xff\x6e\xae\xc8\x75\x76\xfe\x82\x7d\x93\x8e\x2b\x80\x9c\x74\xee\x8c\x33\x5c\x63\xfe\x42\x78\x93\x8e\x69\x09\x36\xb4\x3b\x8f\x88\x05\x3e\x6d\xc3\xc7\x66\x58\xa6\x61\x86\x7e\x7e\x5b\x48\xa7\xbf\x02\x88\xc1\x05\xe2\x24\x90\x30\xba\xdd\x79\x7e\x01\xa0\x79\x37\x0f\xe5\x4f\xf3\x50\xef\x64\x5e\x58\xff\x59\x84\xdf\xe0\x3b\x63\xce\x81\x99\x97\xdf\x52\xd7\x66\xcc\x5d\x0f\x70\x90\x44\x7a\xd9\x79\x33\xe6\xae\x0d\x6c\xc2\x08\xfa\xb2\xb5\xfe\x07\x07\x64\x67\xb1\xf4\x38\xf4\xb0\xfe\x4f\x68\x66\x77\xc6\xdc\x16\x6d\xec\xce\xf7\xc0\x31\x90\xcb\xce\x70\x8d\x68\x5d\x37\x7e\x01\xbd\xd8\x47\x01\x3c\xe1\xce\xf3\x17\x7c\x9a\xfc\xaf\xf9\x69\x8f\xc1\xb5\x5c\xcf\xf7\x86\x66\x98\x95\x9d\x0d\xce\xff\xbd\x7f\x51\x50\xff\xf5\x67\x97\x5f\x24\x4f\xe5\xdd\xf8\xa5\x85\xf7\x4c\x7a\xe3\xdd\x36\xff\x75\x33\x2b\x22\xbb\x7f\x85\x31\x18\x6c\x5a\x45\x90\x56\x0b\x33\x26\x3f\x8b\xba\x18\xe3\x23\x9a\x87\xfc\x6c\x66\x25\xdc\xc9\xf1\x6e\x5d\x90\xd3\x10\xba\x66\x17\xfc\x72\xbc\x5b\x17\xd8\x57\x62\xd5\xec\x02\x9b\x8a\x7d\xd2\xd6\x9d\x00\xb4\x94\x5d\x04\xb6\x86\x38\x4a\x32\xbf\xef\xe4\xaf\xe6\xa1\xae\x6a\xba\x11\x81\x68\x03\x6a\x70\x4c\x7f\x77\xe1\x54\xc3\xf6\x77\x17\xae\x78\xc4\xbb\xd9\xe5\x5e\xeb\x12\xd1\x6a\x76\x41\x26\x81\x21\xf0\x2e\x46\xec\x66\xd3\x2a\x18\x05\xa3\x8e\xde\xa5\x7e\xd1\x1a\xee\x7b\x63\xe0\x4d\xbf\xa7\x4e\xf7\xda\x5b\x24\x2c\x4e\xc7\x02\x61\x79\x05\xfe\x02\x21\x39\x0e\xc8\xf0\x86\xf9\xbb\xd8\xba\x94\xd3\x3f\x7c\x6c\xde\xe9\x17\x5c\x66\x19\xb4\xd9\x72\x2e\x61\x19\x49\x65\xe3\xbf\x90\x08\x4d\xb3\x8b\xd0\x7c\x9c\x70\x85\x83\x08\x7f\xd4\x8d\x63\x43\xc2\x08\x79\x97\x0f\xb1\x8f\xba\x30\x4b\x21\x5e\xcd\x2e\x12\x1c\x1b\x3c\x6e\x0e\x09\xff\x8c\x5d\x3e\x78\x53\xc6\x76\x4e\x3c\x56\xcc\x0f\x01\x41\x34\xc4\x4d\x4a\x5e\x2d\xcb\xe5\x1a\x8d\x15\xb2\xcb\xb2\x7c\xbe\xbd\x04\x67\x6c\x8f\x5d\xb8\xb2\x11\xfd\x6b\x97\x4b\x70\x46\xf6\xd8\x05\x22\x1b\x6c\x2a\x05\xb3\x11\xaf\x9f\x78\x46\x84\x01\x61\x95\x7b\x70\x75\xb4\xcf\x1b\xb7\x87\xee\x35\xb6\xe8\x64\xe3\xbc\x23\x77\xf4\x30\x29\x1e\x56\x8e\x03\x1c\x9e\xd7\xd5\x82\x0d\xe5\x60\x73\xc5\x37\x22\x78\x98\x14\x38\x3c\x34\xc5\x1b\x3f\x89\xfc\x63\xe3\xaf\x3f\x90\x90\xe0\xce\xf1\x93\xc8\x18\x6c\xef\x0a\xbd\x28\xbe\xa8\x81\xf1\x61\xc3\xa8\x77\x9d\xe7\x1f\x7d\xac\x91\x31\x81\xcb\xa9\x18\x24\xbb\x29\xd6\x38\x48\xaf\xbc\x4f\xf2\xdf\xb1\xaa\x09\xcf\x20\x36\x03\xe2\x31\xe5\x1f\x9c\x5f\x4d\x95\xf4\xce\xfb\x5d\x27\x8a\x26\x6a\xc2\xab\x07\x3a\xad\x84\xbf\x51\x4c\x51\x93\x65\x52\x3e\x38\x96\x78\x00\xec\x9a\xf0\x2b\x82\x4e\x6b\x62\xdc\x58\x93\x06\x75\x72\xf3\xab\xf7\x26\x96\x7f\x8c\x79\xe5\x40\x73\x23\xac\xc8\xc5\xdd\xfc\x6a\xe6\x5b\xe8\xa5\x16\xc6\x96\x75\x45\xd4\x27\x03\x5f\xed\x5a\x18\x2b\xd6\x4c\xe5\x56\xe6\x7e\x52\xeb\x5d\xdb\x28\x93\x36\x31\x99\x8c\x3f\xb5\x6b\x03\xfd\x8a\x8d\xbc\x42\x2f\xd2\x66\xbd\x07\x51\x6f\xb6\xa7\x33\x26\xe1\x6f\x2e\x4a\xbb\xf6\x3b\x21\x5e\x55\xea\xf0\x23\xdf\x2f\x01\x79\x7d\xa8\x5c\xb5\x24\xc4\x7a\xaf\x54\x19\x8b\xf8\x5d\x21\x14\x09\xae\xde\x93\x29\x63\x11\xbf\xf1\xf5\xe8\xb2\xfd\xf8\x7a\x18\xf0\x69\x57\x1c\xd8\x9a\x0b\x01\xa2\x91\x80\xea\x3d\xbd\x32\x16\xf4\xbb\xa2\x99\x92\x20\x88\xef\x24\x8c\xfd\xc6\xaf\x23\x63\x2a\xb2\x2b\xce\x6a\xb2\xf1\x15\xa0\xd7\x6f\x11\xed\x7a\xf3\xd8\x66\xb0\x80\xbf\xc5\x82\x47\x1b\x86\x8e\x9b\xc8\x50\xf9\xc7\x09\x51\x89\x72\x83\x7b\xd4\xae\x87\xc1\xe3\x44\xc4\x57\x24\x62\xef\xb2\x71\x16\xc9\x44\x20\xda\xf5\xe0\xce\xe5\x24\x13\x28\xfa\x1b\x87\x87\x09\x61\xe3\xc7\xa1\x24\x7e\xe3\xc0\x35\x47\x01\x31\x31\xa4\xe2\xd7\x36\x60\x97\x94\xb5\x54\xb0\x84\x6d\x0f\xa1\xa5\x44\xef\xde\xed\x07\x96\x19\x87\x46\x03\x31\xdc\x36\xb4\x1f\xe3\xcf\xb5\x0b\xbf\x13\x63\x20\x6d\x1c\x4f\x04\xc7\xde\x0d\x84\xc2\x1f\xe3\x4f\x50\xaa\xfc\x63\xcc\x09\x43\x25\x18\xf6\x6e\xa0\x83\xff\x90\x85\x10\x50\x2a\xe3\x19\xb0\x1b\x11\xcf\xf1\x1e\xd8\x78\xa1\x88\x93\xbc\xf1\x42\x31\x24\xd1\x6e\xfa\xac\xfd\x7c\x67\xfc\xe1\x7e\x5a\x62\xfc\x93\xf9\x19\x7f\x36\x9e\x06\x01\xc9\xc1\x34\xc0\x44\xf1\x36\xd8\x2d\x93\x87\x79\x6c\x44\x4d\xf8\x31\x47\x2d\x2f\xf2\xd3\x1e\x9c\xdc\xe4\x06\x9a\x84\xc2\xe6\x44\x9c\x28\x63\x05\xed\x56\x18\x7f\xd6\x89\x81\xa1\x80\x48\xdd\xc4\x85\xca\x5f\x5d\xf7\x80\x12\x36\x78\xb7\x7b\xbd\x12\x28\x78\x37\xf0\xc6\xb1\xbe\xdf\x8d\x83\x48\x91\x0b\x4e\x29\x99\xa0\x49\xbb\x41\x58\xdd\xbe\x48\x58\x70\x60\xad\x5b\x3e\x65\x76\xe6\xc5\xf6\x77\xdb\x43\x39\x70\x7b\x1e\xb6\x6d\x30\x17\x88\x4d\x1a\xb0\xa2\x98\xba\xec\x76\x0f\x25\x71\x7a\x77\x1b\x22\xcb\x99\x9f\x31\x71\xbe\xa6\xe5\x50\xfe\x64\xbe\x10\x89\x10\x1e\x4a\xe8\xdc\x8d\x37\x8c\xf1\x6b\x36\xde\x30\x82\xe0\x6e\xc3\x41\x61\xec\xbd\xdb\x7a\x48\x27\xcf\xa6\x2f\x70\x78\x0d\x8c\xe4\xc0\x9a\x6f\x1c\x38\x8a\x08\x9a\x41\xa0\x7f\xe6\xa7\x5f\x6c\x7e\x46\x88\x0a\xce\x29\xb1\x4b\x14\x19\x11\x1f\x2a\xff\x2c\xff\x30\xce\xac\xff\x76\x18\x1f\xe7\xeb\xde\xb8\xba\x57\xf2\x06\x9a\x32\x01\x6b\x76\x7b\x68\x27\x1b\x5b\x33\x14\x25\x5c\x69\x7b\xfc\xf6\x6f\xe8\xd2\xbb\x19\xbd\xdd\x85\x03\x12\x1a\x6e\x1e\xdb\x68\x54\xc1\x45\xf4\x5e\x22\x20\x34\xe8\x6e\x2f\x03\x09\xa7\xd2\x70\x30\x25\xfc\xe7\x6e\x2f\x9d\x80\x5b\xc2\xfd\xa6\x7b\x12\xe3\x7e\x13\x81\x56\xdc\xb8\xdf\x74\x95\x07\xb8\xdf\x64\x05\x94\x1d\x39\x84\x27\x71\x0f\x96\x53\x79\xbf\x83\xe1\xb5\xb1\x07\x3b\x74\x07\xb8\x83\xdd\x8b\x05\xf7\xee\x91\x05\xc2\xe9\xd5\x0d\x53\x08\x51\x12\x6d\xaa\x7b\x1d\xeb\x86\x22\x64\x91\xe2\xae\x93\x5d\xbc\xdd\xb8\xc3\xc9\x77\x26\x96\xd3\xab\x4b\x94\x9c\x5e\x84\xa3\xea\x5e\xb5\x0c\x40\x85\xdf\xe1\xc6\x75\x27\x63\xef\xb5\x71\xdd\x89\x58\x7f\x6f\x5c\x77\x32\x80\xbb\xdb\xb0\x54\x60\xfb\xed\x9e\x69\x67\xf3\x9d\x31\x64\x92\x7b\xa6\x8f\x6c\x00\x3d\xb3\x09\x31\xc9\xb8\xf7\x64\x5c\x4a\x36\xee\x3d\xdd\x2b\x12\xee\x3d\x19\x97\x92\x8d\x7b\x4f\x04\xc3\x6f\xe3\xde\x93\x15\xc8\x12\xcd\x2a\x2b\x84\x25\x64\x55\x56\xc0\x4a\x5c\xaa\xee\x15\x86\xb0\x54\x19\xfc\xda\x8d\x0b\x50\xf7\xd4\xef\x95\xf1\x67\x53\xec\xc6\x3b\x34\xbd\x99\x9f\xb6\xb1\x01\x60\x23\xb5\xfb\xbd\xfa\xf5\xe1\xbc\x83\x18\x0c\x7a\xdf\xee\x9d\x36\x3b\x9e\x06\xe3\x86\x08\xba\xfe\xb2\x8e\xad\x31\xb6\x5d\x03\xf7\xba\xd7\x3d\xad\x71\x01\x32\x9c\xcc\xee\x83\x7e\xc1\x65\xf6\x41\x5f\x20\xee\x0e\x2c\x74\x70\x3d\x0c\xe6\xda\xbe\x10\xd7\x28\xb8\x1e\xc0\x35\xc4\xcb\x64\x77\xa0\xf6\x83\xf3\x3e\x0d\x4e\x4f\x39\x93\xf9\xb5\xfc\x69\xd4\x7b\xf3\x33\x0e\x70\xa2\x7d\x1a\xf3\x9e\xf7\xc5\xd8\x42\x0b\x7d\xb1\x26\x59\xff\x7d\x7f\x11\xf3\x79\x37\xdd\x77\xbf\xa5\x3d\xa7\xe2\x0a\x4c\xbd\x5f\xe4\x64\xea\xf2\xc0\x1c\xe6\x31\xc4\x2f\x75\x49\xdc\xce\xc5\xe5\x32\x87\x87\x06\x9e\x3a\x39\x48\x5f\xb8\x60\x7a\x68\xf4\xf7\x0b\xcd\xcc\xfb\x22\xcf\x1d\x93\xf1\x45\x4f\x1e\xbc\xfb\x6d\xe1\xbd\xdd\x6f\xb3\xe9\x9d\xf4\xca\xfb\x83\x9f\x72\xe2\xdd\x30\x9e\xe4\xbf\xb7\xb5\x81\x6b\xd9\x1e\xc1\x50\x96\xe4\x0f\x8d\x6f\x1b\xef\x5f\x6c\x4e\xde\x07\xe9\x9d\xf7\xcd\x3b\x75\x5d\xae\x74\x48\x5f\x23\xd2\x4e\x36\x2d\xa3\x6f\x61\x60\xbf\x47\x3c\xa4\x53\xaf\x81\xe7\xc7\xdf\xec\xcc\xf6\xb8\x27\x6b\x76\xd3\x1a\x89\x0e\xc1\x55\x8c\xcc\xc0\x3b\x00\xc5\x40\x7f\x91\x77\x1a\x0e\x37\x30\xca\x17\x68\xf0\xbe\xd7\x3b\xd8\x5f\x87\x8c\xbb\xe1\xc0\xe0\xd2\xf9\x75\x08\x98\x4f\x02\x70\xed\xd1\x8c\xfd\x47\xf9\x06\x80\x61\x97\x1f\xed\x0b\x27\xc6\x3b\x1d\xe2\x04\x1d\xf7\x2a\x37\xfe\x79\x7f\x49\xa7\x4c\xdc\x3a\xff\x79\x37\xea\x0f\xed\xec\x96\x43\x3b\xbb\xf9\xa9\xcb\xc0\x31\xf6\xf7\x12\x50\x56\x61\x30\xc6\x17\x28\x89\xf7\x74\xcb\x4c\xe6\xcf\xe4\xa1\x3d\xf7\xa4\x1c\x6e\x5a\x63\x18\xc8\xc2\x6f\x37\xe9\x4c\x88\xd8\xeb\xd1\xfc\x0f\xdf\xd2\x9e\xf9\x05\xb9\xe1\x9d\x71\x80\x2b\x22\x26\x58\x76\x63\x1e\x70\xa8\x6e\xc6\xc4\xfd\x1a\x18\x40\xee\xb1\x18\x73\x16\xf2\xc0\x09\x19\xa3\xc7\x4d\x38\xb0\xfc\xb5\x73\x7f\x71\x58\x78\x1f\xb8\xbb\x53\xe6\x17\x8c\x86\x6f\x39\x59\x01\x6b\xdd\x03\xe0\x5f\x02\x81\x6d\xa2\x82\x0d\xe2\x30\xed\xc1\x09\xea\x86\x4d\x18\xb0\xfc\xf5\xf7\xbc\xf8\xca\xf3\xad\x11\x08\x2c\xe7\x09\xa4\x53\xce\x03\xdc\xbe\xe3\x00\xe6\xe8\x37\x26\x0f\x73\x07\x07\x3f\x38\x0c\x01\x6c\xdd\xb8\xe8\xc4\x28\xd1\xbc\xb6\xed\xce\xcb\x34\x26\x01\x44\x33\x7f\x77\xcc\x5d\x63\xd3\xe8\x02\x9c\xee\xb8\xd6\x64\x15\x30\x5f\xd0\x2e\xb8\x31\x62\x76\x0d\xd7\xc0\x0c\x40\xd9\xc2\xb5\x10\xbe\x6b\xc4\x60\x39\x8c\x33\x44\x3c\x8d\x5f\xc3\x38\xcf\x48\x99\x1c\x0e\x33\xde\xf1\x77\x1e\x27\x9c\x2b\xb0\xae\x7b\x46\xfc\xeb\xa3\xf9\x09\x08\xc0\x5c\x4c\x89\x8f\x83\x82\x18\x60\x86\x9d\xd9\x13\xe0\x5e\x0f\x84\x69\x08\x3b\x36\xe0\xc9\xa1\xe4\x81\x30\xa5\x2f\x36\xe0\x59\x18\xff\x62\x9e\x3b\x6e\x5f\xdb\xaa\x6d\x20\x8f\xc1\x47\x99\xdf\xc9\xe1\xa3\x32\x09\x2f\x9c\xac\xd2\x68\x56\xc6\xd3\x31\x91\xd6\x38\x3c\xf1\xbc\x19\x0a\xdf\x67\x63\xad\x72\x78\xce\x0e\x2d\x54\xdf\x69\x0f\x1b\xf3\xec\x8c\x89\x6d\x06\xc7\xde\x83\x62\x0e\xc6\x87\xcd\x6c\x0e\xda\xc6\x01\x3e\x8d\xe5\xd1\xcc\x43\xdb\x6c\x27\x28\xb9\x6e\xf6\xd3\x35\x6f\x9e\x75\xf7\x0d\xb0\xd5\x37\xde\x33\xd9\xb5\x84\xf7\xcc\x00\x78\x71\xcf\x45\x1b\xfa\xdf\x3c\x00\x36\x6e\x33\x19\xf4\x81\x8d\xdb\xcc\x00\x2a\x69\xcf\xcd\x00\x58\xf0\x06\xe6\x80\x4d\x88\x38\x63\x19\x54\xd2\x3d\x2f\x0b\x3a\xb0\x80\xde\x5f\xc8\x31\x4e\x85\x79\xc0\x42\x80\x58\x71\xa1\xc9\x9e\x2e\xf3\xb0\x78\x39\xed\x88\x3d\x96\x3d\x45\xa6\xc4\x81\x0c\x66\x3e\x77\xb0\x93\x0b\x10\xf6\xd2\x13\x65\x3e\x7e\x4b\xbd\x40\xec\xaa\xf9\xfa\x22\x88\x71\x72\xcc\x97\x4e\x73\x12\x4f\xe4\x1f\x6a\xbb\x96\x81\x9d\x18\xf8\x2f\x7a\x18\x27\x07\x6e\x33\xd9\x53\x67\x49\x28\x9c\x0a\xcb\x93\xe6\xcb\xef\xb7\xb7\x0d\x2b\x32\xf0\xc8\xab\x16\x8b\x1d\x83\xc0\x4d\x40\x31\xe3\xeb\xec\x05\xe7\x07\xf8\xe9\x26\x9c\xd8\x48\x96\x43\x34\x31\x0c\x4d\xf7\x02\x38\x20\xd9\x06\x16\x3b\xa8\xa8\x7b\xa5\x07\xc4\x07\xf3\xbc\xa4\xdf\xfe\xe2\x12\x33\x32\x87\xc3\xba\x9c\x5f\x4c\xdf\xfb\x24\x0f\xf9\xef\xd5\x6c\xe0\x4c\xbf\x71\x77\x31\x0e\xcf\x26\x08\x59\xf6\x60\x59\x10\x13\xc0\x60\x1b\x77\x97\x81\x51\xeb\x5e\x97\xf3\xcb\x60\xa0\x6e\x02\x90\x0d\x6c\x04\xf7\xba\x84\x65\xa0\x9e\xbd\x44\xa3\x88\xbe\x1f\xd2\x69\x1b\xf1\xed\x5c\x8c\x8b\xc3\x0a\xd0\xd4\xbd\x00\xe0\xf5\xb0\x5a\xed\x8e\x55\x66\xe3\x5c\x70\x78\xd1\x6f\xbb\xed\x21\x3f\xc4\xe4\xe1\xb3\x80\xe6\xf5\xc0\x59\xf7\x90\x19\xc0\x46\xec\x75\x0f\x99\x08\x68\xd8\x5e\xc4\x9c\x04\x34\x6c\x2f\x44\x1c\xd1\xb6\x4d\x81\xb6\x29\x7f\x32\x9e\x10\xd0\x9a\x8c\x03\x07\xda\x5a\x8c\x27\xc4\xb4\x16\xf5\x72\xa0\xe1\x71\x12\x41\x19\xdb\x78\x9c\x64\x5c\xaa\xf6\x42\xc4\x81\x4b\xd5\x5e\xe0\x52\x63\x80\xbd\x89\x5a\x36\xb2\xf3\x08\x37\x86\x5b\xd4\xc6\xb3\x64\x64\xd7\xd2\x66\xac\x1c\x4f\x38\x30\xc0\x39\x37\x5e\x20\xc6\x23\xda\xeb\x61\xdc\x38\x1c\xd6\x53\x01\xd2\xa0\x1c\x0e\x07\xe9\x8e\xb0\x65\x03\xbb\xbd\xbd\x9e\x41\xba\xef\xac\x01\xc7\x96\x9b\x95\x87\xc9\x62\xfd\x13\xff\x6c\xe3\xe1\x31\xb4\x5d\xc3\xc3\x23\xe3\x2e\xb5\xf1\xf0\x18\xda\xae\xe1\xbd\x61\x44\xa3\xbd\xc3\x03\xe0\x46\xe2\xfd\x25\x9d\x6f\x23\x98\x1c\x6c\xc0\x78\x69\x18\x2e\x68\xe3\xa5\x31\xf0\x9f\xdd\x78\x69\x44\xd0\x2f\x36\x5e\x1a\x99\x38\x67\x7b\xb3\xc1\xab\xa8\x23\xcc\x59\xc6\xbd\x6a\xef\x34\xf9\xf6\xf6\x05\x8f\x8d\xec\xe1\xb6\xef\x4d\x66\xe0\x1f\xba\x37\x21\xf6\x52\xf9\xab\xcc\x8c\x68\x27\xd9\x53\x70\x4b\x04\x5c\x13\x76\x61\x50\x61\x77\x37\x0b\x1c\x5f\xc8\xbd\x8b\xf9\xcd\xf3\xf0\xce\x60\x14\x40\x4e\xd8\x9c\x0c\x8f\x06\x5e\xd7\xc6\xe5\x23\x83\x17\xba\xb7\x0b\x9f\x93\x86\xb0\x28\x03\x03\xcb\xbd\x09\x86\xa3\x06\x90\x00\x6a\x03\x1f\xc9\xbd\x39\x81\x80\xe9\xda\xb8\x8b\x44\x60\xba\xf6\x6e\x96\xc9\x84\x34\x26\x6a\xf8\xce\x44\xb1\xf0\x89\xa9\x32\x88\x1e\xbe\x09\xaa\x12\x71\x9f\xd8\x04\x4f\xc9\x9e\xee\x84\x64\x1b\xf8\x21\xee\xdd\x58\xb0\xb6\x19\x8e\xcd\x13\x71\x4b\x34\x5c\x4f\xf6\x60\x72\x6c\x27\x01\x6f\x92\x83\x8d\x0c\xc3\x93\x78\xcf\x09\x08\x0a\xe5\x4c\xc6\xc7\x36\x2f\x26\xca\x36\x2c\x50\x50\x5c\x68\x12\x10\x84\xb5\xb9\xb6\x78\x72\x6f\x22\x55\x26\x4e\x50\x23\x9d\x78\x72\xef\x7b\x98\x8c\xea\x98\x23\x17\x4c\xce\xd1\x66\xf1\xda\x4e\xe4\x19\xa0\x75\xed\x7d\xe8\x8b\xed\x44\x16\x98\x9c\xa3\x07\xa2\xe4\x34\xdd\xc4\xb1\xc4\xb2\x7b\xef\x27\x82\xd0\x62\x3a\xf5\x72\xb2\xe2\xf9\x61\x54\xa2\x6d\x30\x13\x4f\xfa\x8d\x8c\x10\x50\xaf\x6d\xd4\x12\x4f\xfa\xfd\x5e\x82\xd0\xc4\x66\xc3\x75\xc9\x0d\x10\xaa\x64\x68\x62\x73\x7e\xd4\x4b\x1e\xc3\xd6\x81\xc9\xb5\xf1\xf0\xc8\xb8\x7e\xed\x23\x91\x71\x20\x9c\xcb\x69\x0d\xcd\x58\x88\x5f\x67\xbc\xa1\x4d\x88\x92\x41\x88\xda\x7d\xc2\xdd\x3c\xd4\xde\x12\x81\x24\x62\x04\xbe\x09\x35\x92\x3d\x9c\xf1\x02\x89\x1e\x1a\xc7\xc3\x84\x31\x3c\xc8\xff\x3c\x34\x88\x68\x37\xb0\x46\xdf\x87\xb8\x42\x04\xb7\xdb\x84\x29\x19\x9a\x8a\x1c\xa2\x0d\x67\x0e\x01\x3c\x48\x22\xb1\x13\x36\x31\xef\x72\xe4\xc0\xc7\xf3\x23\x02\x84\xb5\xf1\xfc\xc8\xb8\x93\xed\x03\x8d\x80\xfc\xb2\x89\x26\x92\x71\x27\xdb\x78\x84\xc4\x6c\x1f\xeb\x1d\x43\x2d\x01\xce\xe5\xb4\x62\xe6\x10\x20\xb6\x48\x06\xdc\x74\x9f\x4b\x0b\x11\x23\xf6\x8d\xb7\x47\xf4\x80\xc2\xdb\x23\x03\x74\xba\x8f\x6b\x9b\x39\x32\xba\x88\x0c\xc5\xe9\xe6\xa7\x3d\xdd\xfc\xf4\xb1\x33\xce\x5f\x7e\xc6\x0d\x26\x82\xa8\x23\xa3\x7d\xdf\xd2\x17\xe7\x0b\x6e\x0c\x0f\x8c\x8d\x17\x48\x96\x71\x38\xd0\x0e\x86\xf4\xfb\xdc\xab\xfd\x50\x6e\x7a\x08\x57\x0c\x12\xf2\x26\xf0\xc8\x50\xf3\x4b\x6c\xbd\x88\x07\xc6\xc6\xdb\x23\xe2\x75\xb1\x8f\x07\xce\xf8\xab\x9d\x19\xae\x20\x59\x8e\xe4\xec\x08\x9c\x0f\x83\x04\x01\x11\xc0\x6f\x13\xc5\x24\xe2\xb6\xb1\xcf\x36\x22\x04\x0d\x81\x68\xb2\x13\x0b\xa1\x60\xb9\xbf\xcf\xbd\x9e\x0c\x85\x92\xb8\x73\x44\x50\xb2\x36\xee\x1c\x59\xce\xe0\x40\x1c\x40\x63\x6d\x62\x8b\xe4\x64\x87\x5e\xcb\xa4\xfc\x77\x02\x18\x44\x87\x10\xa0\xab\xba\x27\xce\xc8\x50\x40\x69\x30\x3e\x55\xf7\x0f\x1c\x98\x1c\x00\x61\x44\x62\xe6\xe4\x78\xe0\xba\x54\xdd\x13\x0d\x24\xe3\x03\xb8\x71\xe7\x18\xda\xe5\x3c\x70\x63\x72\x21\x44\x09\x19\xda\xe8\x3c\x84\x47\xc3\x6d\x63\xe3\x9e\x11\x71\xb1\xd8\xb8\x61\x64\xb9\x13\xdc\x30\xb2\xdc\xc9\x73\x39\xb0\xa1\xbc\xf0\x41\x68\x0e\xc2\xf3\x26\x4e\xc8\x50\x5e\xf8\x48\x34\xc5\x3c\xb4\xb3\x98\x7e\x28\x87\xf6\x5c\xe2\xc8\xf8\x18\xee\x07\xe2\x90\x83\xc1\xeb\x62\x68\xbe\x61\xe8\x0f\x39\x09\x42\x7f\x0c\x65\x84\x0f\xf2\x36\xb9\x81\x47\x62\xe2\x30\x21\x84\xc7\x00\xec\x6b\x3f\x97\x38\xc6\x70\xac\x38\x28\x80\x18\xda\xcf\x25\x8e\xa1\xa9\x02\xde\x18\x59\x4e\x9d\xd8\x1e\x43\xad\xdc\x23\xd1\x20\xf3\x78\xfa\x1d\x43\xb5\x66\xc4\xf0\x88\xc0\x56\x6d\x62\x78\xe4\x64\x7b\x3a\x63\x08\x87\x44\xe4\xc1\xa1\xa6\xec\x41\x36\x06\x94\xd4\x26\xb6\x47\x96\xdb\x30\xec\x20\xf0\x44\xfb\x99\x8c\xa7\x75\x4d\xd3\xc9\x33\x17\xe9\x94\xef\xc2\x87\x70\xf1\xde\xc8\x72\x18\x04\x0b\x1c\x2a\xa8\x88\xfa\x91\xbd\x2d\x10\xf5\x63\xa8\x11\x26\xec\x47\xd4\xe4\xe1\x71\x9d\x43\xac\x0f\x87\x03\x6e\x4e\x9b\x00\x82\x59\xee\xe4\x71\x3d\x43\xc4\x0f\xf6\x6d\x3f\x35\x2d\x0f\xb6\x07\x3f\x55\x2d\x44\xd9\xc8\xc0\x9e\x6e\xa2\x6c\xdc\x3f\xa8\x9a\xe5\x5a\x5c\x1e\x77\xbf\xcf\x80\xa0\xee\x47\xf4\x27\x15\x2f\x06\xf8\x03\xde\x68\xbf\x3f\xc6\x85\xf5\xfd\xb2\xbe\x81\x37\xda\x2f\x51\x60\x7f\x6a\x1f\x70\xff\xc8\x60\x87\xed\x97\x28\xa5\x3f\x25\x61\x6f\x20\xc0\x1a\x2b\xf3\x0d\xac\x2e\x66\x1f\x5f\x90\x28\xff\xf7\x22\x75\x06\x3e\x75\xe3\x0b\x12\xe5\xff\xde\xcb\x63\x85\x9f\xba\x14\x42\x75\x44\xd0\x85\xf6\x9b\x20\x63\x96\xc8\x9b\x18\x1a\x96\xc5\xeb\x92\x85\x54\xde\xec\x68\x30\xb7\xaf\x11\xdf\xd8\x98\x88\xe2\x17\x7e\x0a\x08\x89\xe2\x17\x75\x9b\x20\x96\xc6\xfd\x83\x76\x13\xd1\x4f\xbf\x09\x02\xfa\x65\x60\x52\xf7\x5b\x19\xb2\xf2\x57\x55\xc0\x2b\xca\x93\x72\xc5\x17\x31\x96\x9c\x29\xde\x25\x51\x6e\x94\x98\x1d\x11\x24\x9e\x4d\xd0\x8e\x8c\x3b\xda\x7e\xfb\x07\x1f\x66\xa6\x44\x26\xda\xdb\xc5\xf7\x72\x7c\x3a\x51\xea\x1c\x74\x84\x5a\xc5\xb1\x65\x9b\xc7\x81\x6d\x13\x24\x30\x13\xd3\x6a\xbf\x83\xf1\x54\x8a\xf4\xc2\x17\xe1\xe6\xba\x89\xef\x71\xff\xa0\x3a\x64\xbb\xc5\xd9\x60\xbd\xeb\xad\xf1\x22\xc3\xc5\xff\x75\xe3\xfd\x92\x65\x16\x5f\xd6\xbe\x9e\x1b\xef\x9a\xc2\x98\x51\x03\x9c\x91\x9c\x20\x91\x42\xee\x1f\xd4\xb0\x68\x1f\x2c\xd6\xcb\x8a\x2f\x4e\x99\x3b\x3b\xbb\xed\xbb\xad\xd9\x3c\xd6\x46\x9f\x89\x93\xfc\x03\xfc\x64\xbf\x5c\xba\xe5\xe7\x88\x11\x72\xff\xe0\x6b\x94\x40\xb8\xdb\xed\xf7\xb1\x06\x86\xef\xf1\x03\xfa\xf3\x58\x03\x03\xf0\x3a\xde\x9c\x98\x2f\xa1\x56\x8b\x13\xf1\x7e\x78\x6a\x54\x87\x44\xd8\xfb\xc2\xfb\xb2\x26\x9a\xef\x2c\x78\x2e\xc3\xe7\x87\x84\x0a\x80\x9e\x43\x3c\x91\x0c\x78\xec\xf9\x49\x52\x77\x1b\x3c\x04\x11\x89\xe5\xf2\xc2\x87\x28\x22\x19\x98\xd8\x43\x14\x91\x0c\x1e\xec\xf9\x21\x12\x06\xc4\xe7\xfc\xb8\x9c\x73\xf1\x38\xbf\x60\xd7\x28\x47\xe2\xba\xd3\x70\x7e\x12\xd4\xe5\x7f\xcf\x8f\x60\xdf\x3f\x6e\x72\xe7\x47\x0c\x7a\xac\x70\xce\x4f\x22\xaa\x54\x40\x54\x28\x18\xd1\xf3\x33\xf0\x62\xa5\xd0\xcc\x08\x13\xd0\xf9\xfc\xd0\x90\x72\x3d\x39\x04\x19\xb9\x7f\x50\x5d\x86\x3e\x1a\xef\xdc\xb7\xc1\xac\x39\x3f\x77\xfe\x4e\x6d\x86\x5c\x6c\xbe\x1b\x73\x91\xa1\xa8\xe6\xa7\xcb\xd5\xfc\xa6\x33\x0b\xd1\xda\xe0\xaf\xe0\x87\x0f\x21\x40\xee\x1f\xd4\x66\x44\xa8\x4e\x1f\xb8\x7d\xc3\x04\x9f\x5f\xb3\x54\x06\x55\x28\x35\xb8\xd7\xf3\x23\xd0\x66\xf9\xde\x93\x18\x77\x54\x21\x55\x7e\xef\xc5\x3f\xa8\x82\x20\x8e\x08\x40\xce\xaf\x3d\xfe\x61\x1d\x10\x4d\xa7\xa8\x2e\xa4\x9e\xb9\x90\x2f\x17\xbb\xdd\x2d\x96\x2e\xc1\xad\x15\x7b\x01\xb7\x06\x37\x7e\x7e\x9d\x25\x3d\xa8\x4d\x12\x1d\x0c\xdf\x60\xe6\x90\x7b\x1c\x02\x8f\x64\xd8\xeb\xf3\x13\x80\x10\xc8\xf4\xf3\x43\x10\x00\x7f\x7d\x7e\x92\xa8\xad\x98\x7e\x40\x9e\x69\x64\x4b\x9a\xba\x98\x52\x6e\xe1\x07\x4f\xa8\x8c\x9b\xf2\xf9\x2d\x36\x29\x0e\xab\xf3\x93\x14\xfd\x7a\xb3\xbc\xff\xaa\x24\x38\xc4\x26\xc9\xd9\xa5\x7f\xa2\xa5\x51\xe7\x99\xfc\x41\x0f\xcf\x12\x11\x90\x21\x41\x0a\x06\x58\xcb\xf9\x09\xb9\x06\x46\xf5\x21\x36\x49\x04\xad\xe5\x10\x9b\x24\x73\x0b\x38\x3f\x62\xec\xff\xd8\xc3\x0e\x2e\x53\x99\x6b\xc0\xd1\x65\xea\x97\xa4\x91\xf7\x8e\x03\xb8\x26\x07\x9f\xa9\x9c\x1d\x44\x6c\x1d\xe0\xf7\x0f\x31\x4c\x32\xfc\xfe\x21\x6e\x49\xf8\xb1\x17\x9c\x80\x51\x03\x0c\xfc\x09\x1f\x7c\x21\xcb\x36\x10\x91\x1f\xcf\xa1\x13\x60\xe2\x30\x9b\x3a\x81\x30\x6e\x39\xf0\x71\x00\x8b\xd1\x35\x4f\xd8\x93\x8c\x7c\xea\xe0\x06\x15\x81\x3c\x39\xb8\x3b\x65\xae\x02\x27\x40\x85\xe0\xbe\x9d\xc0\x51\xc6\x55\xe0\x10\xe0\x24\xfc\xbe\x8f\x21\x2a\xe0\x45\x0e\x3e\x4e\x39\xdb\x0a\x88\x0a\x48\x91\x13\xca\x23\x72\xa2\x99\x5e\xfe\xa0\xa4\x4a\x47\x6d\xea\xa5\xb0\x88\x83\xd1\xc1\xc9\x29\x82\xff\x71\x02\x01\x6c\x7f\xf9\xfb\x83\x26\x25\x46\xa6\xda\x24\xdf\x37\xe9\x83\x77\xa6\x3a\xf0\x0e\xb1\x61\xca\x75\x42\x63\x24\xf1\xd5\x3d\x84\x3d\xc9\xc8\xd5\x4e\x80\x10\x40\xeb\x38\xb8\x45\x65\xe4\x6a\x27\x40\x14\xb8\x1b\x1d\x62\xa0\x64\xae\x15\x27\xa0\x50\xe1\x2a\x71\x02\xdc\x18\x57\x89\x43\x80\x93\xf0\x03\x69\xf2\x04\x24\xc7\x5c\x05\x0e\x7e\x4e\x11\x3f\xa4\x13\x44\xdc\x84\x37\x3b\xe1\x5e\xd6\x23\x18\x17\x27\x08\x5d\x88\x6b\xed\x09\x44\xf5\xc6\x9b\xe8\x04\xa9\x02\x00\xce\x83\xab\x53\xc4\x9d\xe8\x04\x60\x98\x7e\xb0\x73\x27\x70\xa7\xc7\x9f\xe8\xe0\x03\x95\xbf\xe1\x46\x70\xcc\x9d\xfe\xe0\x0f\x95\xb3\x73\xb2\x99\x13\x18\xac\x13\xa4\x0e\xe7\x44\xf8\x42\xdc\x65\x4f\xe0\x86\xff\x8d\x3d\xd6\x0b\x80\x67\x9c\x80\x98\x17\xf0\x8c\x13\x10\xf3\x66\xc7\xde\xd5\x5d\x7c\xbf\x17\x11\x80\x31\x4e\x70\x75\x33\x0f\xf1\x57\xc5\xaa\x6c\xfc\x68\x64\x0a\xbc\xb3\x58\x99\x87\xf8\x1b\xa4\xdf\xa6\xe2\xd6\x14\x71\x89\x3a\xb8\x35\x65\x6e\x19\x27\x06\xba\x73\xcf\xde\x13\x5d\xe8\x97\xc9\x3b\x31\x32\xc4\x1e\x1f\x11\xa6\x2d\xdf\xe3\xf3\x44\x41\x01\x3d\x3f\x22\xd1\xe7\x71\xa8\x3a\x38\x24\xc5\x6a\x7a\xe2\x03\x8e\x95\x28\x65\x5c\x7e\xff\xe0\x90\x14\x7e\x6e\xdc\x91\x98\xf4\x98\xc9\x9d\x98\x1c\xc9\x6e\x49\xac\x6e\xa8\x35\x7e\xe0\x9e\xec\xaa\x11\x41\x31\xb2\x8f\x83\x3b\x52\x04\xdd\xe2\xe0\x8e\x94\x71\x1a\x3f\x91\xf8\x6a\x5c\x83\x0e\xae\x49\x19\xeb\xe7\x13\x0b\x2b\xb7\xfe\xfe\xa6\x3e\x38\x11\x09\x1a\x60\xbf\x87\x88\x27\x11\xdc\x8c\x13\x91\x0e\x20\xb6\x3d\x11\x29\x00\xe1\x20\x0e\x8e\x4b\x19\x8c\xd5\x13\x39\xa4\xb2\x53\xd1\xaa\xd8\x9f\xfc\x41\x78\x75\x5c\xbd\x4e\x94\x56\x38\x8b\xf0\x44\xca\xd9\xd1\x91\x56\x38\x96\xe2\x88\x02\x84\xf2\x07\xb6\x3c\xd2\x44\xfc\x50\x3e\x93\x3f\x18\x7f\x47\x8d\xcb\x7c\x75\xa0\x38\x34\xc0\x14\x3e\x11\x41\x18\xfe\x59\x27\x4a\x44\xd0\x4d\x9c\xe6\xa7\x82\x69\x7e\x6a\x9e\x4c\x85\xeb\x32\x22\x62\xce\x4e\x85\x78\xa1\x2e\x4c\xbc\x97\x22\xde\x5a\x27\xca\x09\x56\xd7\x0a\x9c\x60\x76\x8e\xa4\x27\x4e\x3b\x62\x99\xe4\xec\x7c\xdd\xab\x7f\x04\x01\xe3\x44\x51\x42\xbf\x65\x20\x71\x39\xdc\xdb\x52\x2d\x69\x43\x07\x1c\x64\x51\xcc\xd0\x6f\xea\x91\x45\x03\x7c\x71\x08\x8c\x12\xf1\xe4\x3a\x78\x30\x45\xbc\xb7\x0e\x1e\x4c\x39\x3b\x59\x10\x20\x9e\x5c\x87\xd0\x28\x11\x8f\xad\x83\x07\x53\xce\xce\xcf\xe3\xc4\x71\x62\xe3\xaa\x94\xb3\x2b\xf6\xf9\xd0\x53\xf9\x1a\xf9\x02\x9e\xfe\x07\x9f\xa4\x08\x94\xc5\xc1\xf7\x28\x67\x67\xf7\xb5\xb6\x9b\x27\x81\x49\xf4\x03\x16\xf2\xa4\xcb\x2d\x46\x24\x62\x27\xfd\x3e\xbc\xd5\xc0\x8f\xc2\x1f\x89\x77\x16\x53\x37\x7d\x98\x29\xf3\x83\x83\xa7\xfb\xf5\xf2\x8f\xc2\x8f\xd7\x1f\xb7\xab\x29\x7c\x15\x36\x7e\x08\xba\xca\x4e\x9f\xc2\xa5\x3c\x90\x2b\x4e\x0a\x8f\xe8\xad\x14\x2c\xd5\x83\x33\x71\x92\x54\xcf\x51\x87\x03\x53\xce\xdd\x4c\xcd\x4c\x54\x82\xa8\x0e\xf3\xcb\x93\x12\x33\x06\x70\xc2\x49\x98\xf3\x64\x96\x63\xca\x76\x84\x0f\xa4\x4f\x96\x60\x2a\x55\x84\x58\xfe\xc0\xa4\xc0\x8d\x98\x30\x29\xf7\x0f\x73\x31\xd0\xcc\x06\xc1\x51\x22\x10\x09\x27\x79\xf0\x31\x19\x89\xcb\x15\x30\x07\x07\xc7\xa2\x0c\x6e\xf1\x49\x90\x1a\xce\x59\x87\x30\x24\x19\xdc\xe2\x83\x8f\x50\xe6\x62\x7d\xf0\x11\x8a\x8d\xdd\x23\x8d\x26\x8e\xac\x99\xe8\x5b\xf1\x1d\x42\x80\x0d\xc3\x79\x28\x12\xe4\xf9\xa4\x39\x05\x98\xf5\x8f\xc5\x1f\xf4\x9f\x6b\x13\x8a\x94\x93\x26\xad\x86\x70\xf0\x2a\xca\x28\x52\x4e\x5a\x49\x14\x5a\xaa\x46\xd0\x0c\x42\xc1\x49\xcb\x2e\xfb\x81\x35\x38\x41\x50\x17\x10\x0e\x07\x3f\xa4\x88\x33\xd5\x49\x40\x73\xfe\x70\x3d\x3d\x69\x37\x32\xfd\xed\xde\x7a\x88\x48\x12\x01\x36\x38\x89\x53\x0a\xe4\xe4\x93\x24\x1e\x48\x92\x90\x24\xd9\x23\x2e\x49\x3c\x6c\x2b\x84\x16\xc9\x9e\x70\x78\x32\x45\xbc\xa3\x8e\x9e\x4c\x3f\xfc\x2c\x4f\x7a\x58\xe6\x6c\x1f\x04\x1d\xb9\x7f\x98\x8b\xc8\xa5\xb0\x76\x89\xc0\xbf\x08\x20\x4e\x7a\xc4\xeb\x75\x08\x91\xce\x61\xd2\x7a\x12\x96\x3b\x48\x23\x4e\x92\xda\xa0\xe7\x84\x3b\xfc\xaf\xdb\x87\xf7\xe5\x8f\xdb\x6e\xc2\x96\xdc\x3f\xfc\x41\x03\xa1\xc9\x8c\xe5\x38\x50\xcd\x27\x4b\x6d\x50\x18\x6e\x51\x19\x77\x91\x83\x5b\x54\xf8\xe1\x02\x70\x32\x31\x82\xf1\x17\x39\xf8\x3c\x65\xf0\xa2\x4f\x0e\x4e\x0c\x4b\x3c\x63\x65\x57\x20\x4f\x42\xa0\xdc\x3f\x2a\x3f\x98\x7b\x28\x07\x0f\xa8\x8c\x80\xe4\xe0\xad\x14\x9b\x1f\x43\x2b\x08\x48\x4e\xce\x74\xce\x6f\xa1\x1b\x04\x24\x27\x97\x28\x78\x2f\x4d\x82\x49\x04\xd2\xf9\x10\xd7\xe4\xfe\x91\xf8\xc1\xb8\xb2\xa0\xf0\x5d\x8a\xf8\x7c\x1d\x7c\x97\x32\x38\xce\x27\x57\x6b\x66\x00\xaa\x05\xf1\x6d\xb5\x66\x06\x00\x1b\x02\xa0\x2d\x0e\x91\x4b\x22\x96\xbc\x27\xd7\x47\x48\x60\x2a\x40\xe4\x8d\x18\xfa\x10\xd2\xe4\xfe\x41\x0d\xe8\x7f\x40\x72\x3e\x19\x4b\x1e\x3c\xb7\x0e\xde\x4b\xe1\x37\x58\xb2\xb9\x47\xfe\xa0\x79\x00\x00\xfe\x86\x93\xd5\x2f\x15\x81\x88\x70\x88\x6b\x12\x7e\x58\xc3\x9d\xdc\x0f\x7f\x50\x1f\xd2\x3c\x1c\xb0\x0e\x0e\x4c\x19\x89\xcf\x21\xf8\x49\xc6\xc9\xe6\xe4\x59\xc5\x26\xa6\xa7\xc8\xae\xf1\xcc\x3a\x84\x2e\xc9\x88\x65\x0e\x9e\x4a\x19\xb1\xcc\xc9\x3b\x0a\x54\xec\x0f\x86\x06\x76\x8b\x88\x25\xf7\x0f\x4a\x42\x74\x81\xd0\xe4\xe0\xab\x14\xdd\x2e\xf0\x55\xca\x08\x50\x0e\xc1\x4c\x22\xc8\x09\x07\x5f\xa5\x88\x65\xf3\xc9\xc7\xfc\x54\x70\xcc\x4f\x8b\xce\x23\xcc\xb1\x7f\xbc\x64\xa2\xb2\x47\x6c\xe3\xe8\x0f\xc6\x95\x5d\x0e\x2f\xa6\xd8\x5d\xae\x1c\x45\x08\x50\x4e\x46\xd4\xdd\x5d\xad\x88\xba\x71\xfa\x39\x84\x3a\x89\xdd\x95\xcb\xb1\x84\x07\xd7\xc1\xa3\x29\xcb\x48\xea\xd1\x14\x7e\xdf\x07\x4c\x03\x27\x11\x91\x4f\xee\x1f\xe6\x62\x1a\x58\xea\xf8\x34\x45\xac\xa7\x0f\x3e\x4d\x19\xe1\xcb\x29\x3f\x6b\xa8\xbc\x43\x1a\x70\x8f\xb8\x33\x45\x62\xb4\x9f\x22\x2d\xb1\x51\x14\xbc\xeb\x03\x56\xb0\xa7\x84\xcb\x2b\xe1\x70\x75\x88\x90\x72\xff\xa0\x06\xc4\xe3\x6e\x97\x38\x2e\xc5\x1e\xff\xca\xce\xe1\xd5\x94\x41\x6f\x3e\x45\x02\x64\x91\x16\x42\x6c\x23\xe1\x39\x25\x39\xf1\x50\x29\x11\x53\xb2\x52\x1d\x22\xa6\x04\xc1\xc1\x4f\x41\x92\x0e\x16\xca\xc1\x97\x29\x62\xe2\x7d\xf0\x65\xca\x8a\x7b\x0a\xe4\x8b\xb9\xf7\x21\x96\x4a\x08\x88\x05\x4f\x29\x02\x44\x33\xf5\x05\xd2\xc4\xa9\xff\xe0\xe5\x94\x15\xf8\x14\x48\x13\x47\xfe\x53\x90\x96\x28\xf0\x29\x48\x4b\x02\x96\xcb\xa7\x48\xb3\xd5\xf7\xea\x1f\x54\x81\x71\x90\xd2\x9f\x52\xa7\x7f\xd0\xa3\xca\x54\x66\x8b\x82\xb2\x1d\x68\x28\x9b\x70\x4a\xa7\x20\xec\x2c\x8e\x33\xf2\xcc\x10\x9c\x56\xae\x7f\x60\x00\x9c\x22\x61\xc3\xe8\xe1\x6d\x75\x33\xf9\x83\xf9\x66\x7d\x94\x6e\x9b\x58\xb2\xa5\xdb\x8e\xc8\xec\x4b\xd9\x1c\x9c\xa5\x0b\xb0\x8d\x38\xa2\x20\xc5\xf4\x4e\x81\x97\xd5\xfd\x83\xd6\x0e\x2b\xa4\x28\x49\xbe\xf8\xce\xe4\xb1\x5f\x94\x69\x43\x20\x8b\x32\x13\x99\xfc\x23\xfb\x07\xf5\x4d\x26\xcf\x61\x46\x76\xa2\x10\xab\xc0\x06\x77\x87\x99\x7b\x5e\x77\x64\xa5\x6c\xc7\x83\xab\x9d\xc2\xad\x22\x65\x3b\x04\x9e\x99\x30\xa2\xe5\x44\xd2\xe9\x82\x71\xb9\x39\xb8\xca\x71\x34\xba\x1f\x3b\x1a\xae\xb3\xc3\x68\x70\x6a\x12\x55\x26\x83\x14\x73\x0a\x56\xea\x9e\x3d\xb8\x57\x65\x10\x98\x4f\x91\xe2\xe1\x44\x71\xb5\xca\xe5\x7b\xa7\xa5\x9c\x7a\xe5\xb5\x36\xd8\x8b\x82\xc8\xbf\x7c\x7f\xb0\xa7\xb0\x8e\xab\x44\xcb\xb6\x58\x91\xf8\x2b\x17\xab\x12\x2d\x07\x00\xf1\x66\x42\xc0\xa8\xe5\x54\x64\x8f\x98\xb1\x9f\x8a\x60\x1f\xfc\x99\x53\xa5\x41\x98\x22\x62\xc8\xc4\xce\x76\x5e\x51\x51\x61\x9b\x70\x2a\x22\x49\xbc\xae\x4f\x45\xc8\x2f\x60\xef\xc1\x1b\x2a\x88\xa2\x7b\x70\x87\xca\x58\x27\x1c\xdc\xa1\x22\x31\x80\x4e\x4d\xd6\x46\xa9\xc9\xaf\xb3\x7f\x30\x25\xf6\x01\x5a\x24\x52\xd0\xa9\x1e\xa5\xf6\x01\x4d\x16\xa6\x0a\xa7\xe6\x42\x1e\x6a\x46\xea\x19\x30\x2a\x39\x3a\x56\x81\xed\x7c\x6a\xfe\x9a\x44\x47\xf3\xe2\x0b\x9a\x24\x82\x7d\xcc\xfe\x38\xfc\x41\x9b\x4a\xe0\x9d\x66\x20\xf6\x24\xf2\xd5\x21\xe8\x4d\x2e\xf0\xa6\x04\xbd\x89\x18\xe3\x1f\x5c\xae\x32\x90\x54\x87\x08\x38\x19\x64\xe8\x43\x08\x9c\x88\x0f\xf7\xa9\x78\x92\x14\x47\x1b\xb1\xe5\xf8\x2b\x84\xf7\xc1\x07\x2b\x08\xd3\x7a\x2a\x5a\x04\x3c\xb0\x4f\xc5\xf0\xa8\xfe\x7c\xa7\x16\xf6\xcf\x8a\x05\x2c\x2a\xbc\x83\xff\x55\xae\x8e\x38\x54\x86\xd7\xf5\xc1\xe7\x2a\x57\x07\x16\x8b\x56\x3c\xad\x4f\x1d\xce\x84\x93\x8d\xdd\x38\xae\xd6\x87\x30\x3d\xf7\x0f\xc6\x03\xe5\x02\x0e\x00\x07\x6f\xac\x88\xaf\xf5\xc1\x1b\x2b\x57\xa7\x02\xea\x23\xba\xd7\x21\x0c\x4f\xc6\xda\xe3\x10\x87\x27\x12\xdd\xeb\x10\x70\x27\x83\x18\x74\xea\x65\x8c\xa3\x4c\x50\x85\x31\x0e\x68\x30\x0f\xee\x5b\x51\x26\x08\xf7\xad\x20\x64\xea\xa9\x8b\x76\x27\x4a\x45\xd1\x80\x87\xf5\xa9\x18\x37\x55\xa7\x77\x3f\xbc\x9b\xce\xde\x97\x6c\x36\xe6\xb1\xca\x2f\xab\x84\x9c\xec\x03\x46\xe8\xc3\x85\x82\x36\x22\x28\x58\xad\x58\xa1\x0f\x17\x0a\xd2\x4f\x62\x0f\x9d\xca\xd1\x5d\x5d\x1c\x08\x3f\x71\x9a\x3e\x15\xa2\x1e\x1c\x8e\xba\x73\x01\x87\x74\xea\x6b\x7e\x3a\x8a\xc6\x22\x28\x39\xad\x28\x26\x64\xc0\xf0\xe1\x8a\x38\x17\x1e\x62\x04\x65\x65\xa2\x0d\x02\x47\x4d\x7a\xf0\xcf\x0a\x01\x0d\xcc\x69\x28\x1a\x08\x30\x74\x88\x12\x14\xd1\x8d\x9e\x16\x18\x7a\x16\x4c\x83\xa8\xf1\x28\x3c\x2d\x3a\xc4\x6c\x5e\x2d\x32\xc4\xd5\x77\x87\x98\x8d\xac\x41\xe2\x78\x32\x9c\x86\xbc\x13\xc7\xe9\xd3\xf0\x7d\x14\x79\xf3\x34\xa9\x9a\x9d\xbc\x71\x60\xe2\x64\x7a\x1a\x07\xa6\x9c\x1f\x31\x84\x32\x01\x30\x4e\x93\x48\x95\x36\xeb\xbc\x25\x17\x48\xfc\xa0\xfb\x07\x23\x80\x6a\x02\x85\xed\x69\x97\x2e\x33\x88\x4d\xa7\x21\x39\x45\x61\x7b\x5a\xb1\x54\x3a\xcd\xfd\x71\x40\x25\x0d\x89\x6a\x50\xb0\xab\x5b\x17\xa8\xd1\xa7\x79\xda\x2a\x9b\x6d\x58\xb1\xe3\x6c\x7c\x08\x4c\x74\xff\xa0\x58\x49\xd6\xa1\x41\xec\x53\x59\x33\x0d\x6d\xe2\x70\x64\x10\xa9\xe2\x79\x7c\x5a\xa5\x79\x2c\xe9\xc6\x99\x8a\x93\xe3\x21\x7e\x51\x56\xc8\xdb\x24\x77\xb6\xbb\xd6\x6c\x9e\x85\xa2\x8c\x00\x51\xea\xe0\x2d\x16\x04\xa7\x3c\xb8\x8b\x45\x5c\x1e\x4f\x43\x2f\x38\x1c\xee\xee\x07\xb4\x42\x52\x1f\xbe\x37\xd2\x69\x11\x0a\x88\xa0\xc0\xaf\x61\x64\xa8\xe8\xb8\x81\x2f\x85\xa3\xed\xe9\x69\x1f\x6c\x82\x82\x18\x36\xa7\xe7\xdf\xd9\x47\x13\x6f\x76\x86\x9b\xa0\xc5\x4e\x24\xaa\xdd\xe9\x39\x9c\xa3\xc1\x79\xfe\x3e\x89\xe7\x68\x4d\xac\x34\xbf\xe7\x7c\xce\x9d\x96\xa8\x35\x0f\x09\x0f\xec\xbd\xe6\x3a\xa7\xe7\x72\xce\xf8\x3e\xe9\x5f\xc2\x1b\xbf\x6a\xff\xba\x1d\xf6\xdc\xce\x5b\x6c\x13\xac\x70\xcf\xe3\xec\xa5\xc1\x3a\x44\x48\xc2\x63\x8d\xc1\x6e\xcc\x03\x6c\xec\x4d\xb0\x1b\xeb\xec\xfa\x25\xe4\x2f\xe1\xf9\x8c\xde\x83\xdd\xd8\x67\xbf\x5f\x19\xf5\x4b\x78\x73\x32\xc1\x6e\x9c\x03\xec\xe5\x4d\xb0\x1b\xcf\x79\xd8\x23\xa2\xd2\xf5\x5e\x7e\xe7\x79\xf1\x58\xc0\x40\x87\x84\x57\xf7\x01\x2c\x73\x4e\x2f\xf1\x68\xc5\x15\x95\xb5\xdf\x84\xe7\xf7\x7d\x92\xfe\x49\x08\xd1\x04\x5a\x5a\xf2\xd9\xdf\xf8\x42\x0f\x37\xe1\xbd\xe7\x67\xd4\x64\xc7\x84\xf5\xe5\x68\xff\x24\xbc\x5f\x0e\x5a\x5a\xea\xd9\xe9\x2b\x74\xfc\x37\xc1\x69\x4d\xbf\x7f\x12\x74\xda\x50\x4e\x7e\x13\xb4\x71\xd2\x06\x87\x84\x77\x38\x69\xc9\x96\xb6\x83\x81\x49\xd4\xea\xe6\xf4\xd2\xcf\x2e\x5f\x0e\x5b\x3a\xce\x99\x5f\x8e\xfa\x25\xa0\xf0\x8d\x1a\xe4\x9c\x5e\xf6\x39\xff\x94\x61\x4b\xcf\x39\xaf\x13\x95\xc6\x97\x00\xa2\x69\x8c\x8a\xcb\x7b\x79\x0e\x76\x2a\x51\x83\x1d\x12\xde\x9f\x9d\xcb\xb6\xf4\x3d\xfb\xb1\x8c\x9c\xbe\x84\x47\xcb\x78\x25\xe5\x37\x01\x73\x87\x9b\x40\x4b\xeb\xef\xbc\x97\xdf\xba\x09\xb4\xb4\x86\xb3\xb5\x07\xc7\x6c\xe7\xf4\x9a\x0e\xb6\x5a\x37\xa1\xff\x93\x30\xbf\x76\xd0\xd2\x9a\xcf\x39\xb6\x94\x7d\x9f\x84\xc7\x15\xc4\x1e\xdf\x6b\x39\xfb\x38\x2f\xdc\x5b\x6e\x02\x90\xcc\x51\xa3\x9e\xd3\xeb\x9d\x17\x1b\xc6\x51\xd0\x6b\x3f\xcf\xb4\xe9\xc5\x96\x8e\xa3\xcd\x61\x24\x28\x1e\x09\x20\xa1\x46\x8d\x75\x4e\x6f\xbf\x73\xc2\xd7\x0e\x5a\xda\xc2\x01\xd3\xf2\x26\xd0\xd2\x36\xce\xa9\x56\x7b\xcf\x86\x17\xdf\xa8\xd0\x71\x2c\x7c\x87\x50\xa1\x30\x30\x2f\xb1\x8b\x82\x10\x50\xef\x10\x01\x03\xd7\x9f\xd7\xe8\x45\x95\xd5\xf2\x0e\x31\x70\x31\x55\x7d\x07\x0a\x8d\x8c\x4c\xf8\xc5\xbd\x2a\x74\xa2\xaf\xbe\x46\x36\xfa\xef\x0f\x30\x7a\xc1\x84\x78\x07\x6a\xbd\x9e\xbe\x7a\x96\x80\xac\xd6\x23\x02\x6a\xf3\x1f\xe0\x29\xb9\xe9\xbd\x78\x68\x85\x3a\x2e\x21\xbd\xb8\x68\x85\x86\x12\xf5\x1d\xc2\xd9\x20\xe7\x78\x71\xd2\x0a\x8d\x10\xa9\xef\x08\x82\xf3\x0c\x8a\x0e\xf4\x07\x3b\xa8\x77\x80\xbc\x51\x31\xd1\x78\x07\x22\xd6\x8a\x15\xdb\x3b\x84\x8b\x2b\x0e\xd5\xbd\xd0\x86\x8a\x33\xfa\x6b\x14\xa6\x86\x10\xf9\xc5\xd1\x2b\x74\xd4\x9a\xef\x40\xa0\xd4\xdb\x57\xf4\x12\xbd\xd8\x4a\xe9\x4f\x75\xac\xc3\x11\xe1\xd0\xa2\x1f\xa1\xee\xfc\x41\x7f\x10\xe1\xbc\x46\x75\xea\xdc\xf2\x5f\xc2\x3a\x85\x82\x03\xd0\x3b\x90\xf2\x56\x64\x7d\xef\x88\x40\x6b\x21\x04\x7c\xc7\x3f\x10\x3d\x99\x1f\xa0\x45\xc2\x52\xbc\x23\x82\xae\x85\xb4\xe2\x1d\x48\x80\x1b\xd7\xbd\x97\xc8\x50\xa1\x60\xb6\xfe\x0e\x22\x6c\x14\x18\xbd\x17\x6f\xb5\x50\x31\xcb\x7a\x87\x58\x77\x68\x40\xde\xcf\x5f\xad\x39\x06\xa0\xdd\xe5\xf4\xb5\x40\x9c\xdf\x68\x36\xd0\x8d\xbf\x16\x80\x3c\x52\x5a\xfc\x9b\xc9\xf4\x3b\x92\xf0\x91\x2e\x2c\xae\xf6\xb5\xda\xa2\x7b\xb5\x0f\x15\x8e\xe9\x1d\x62\x0a\xe5\xef\x1f\x01\x9e\x3a\xfd\x03\xbb\xb2\x81\x1a\xfa\x0e\x90\x1d\x3a\x3e\x37\x2f\xbe\x71\xa1\xc3\x4e\xbf\x03\xfe\xa6\x03\x18\xfb\x0e\xae\x33\x3a\x9e\xbf\x23\x89\x05\xe7\x2a\x4b\x02\xcc\x35\xff\x39\xa2\x94\x31\xc7\xdc\x68\xda\x37\xad\x1f\x52\x4a\xa2\x05\xf9\x9b\x3c\x5a\x70\xef\x34\xa1\x23\x96\x7a\x07\x8a\xe3\x0c\xf7\xf8\x12\x71\x2b\x94\xe4\x32\x05\x2e\xa2\x45\x57\x99\xe8\x60\x59\xaa\xc9\x62\x17\xda\x6d\x82\x8e\x34\x3c\xf0\xdf\x91\xc5\xe9\xf9\xf9\x0f\xfd\x29\xd2\x13\x77\xa1\x0c\x8b\xfb\x8e\x7b\x17\x0a\xe5\xa3\xe8\x2c\x92\xa6\x13\x4e\xe8\x91\x4a\x78\xe8\x97\x80\x5e\xa1\xb2\xa3\xbe\x46\xf4\x6a\x58\xee\xbe\x84\xf4\x0a\x2d\x39\x25\xc0\x7b\xf6\xe2\xe8\x20\xd7\x94\xc7\x7e\x07\x08\xbf\x0d\x78\xe6\x17\x7f\xc3\x90\x8b\x0d\x05\xe3\x37\x17\x47\x07\xbd\x41\x0b\x8e\x35\x82\x95\x86\xe1\xe0\x8b\x2f\x62\x68\xdf\x2a\x2b\xf6\xc7\xd1\x41\xff\xd7\x7f\x36\xb4\x2c\x97\xb6\x95\xee\xff\x41\xc4\x80\x3c\xf5\x6f\xe6\xe0\x10\x35\x8e\x7f\x89\x38\x16\x0a\xbe\x72\xaf\x21\xc7\x4a\x76\x65\x12\x35\xa1\x36\xe7\x07\xe6\xd1\x80\x42\x2f\x2e\x90\x41\x36\xec\xc5\x07\xf2\x32\x51\x34\xb4\x0a\x00\xee\x7a\x43\x8a\x53\x88\x8e\xfc\x0e\x74\xf5\x99\xbb\xe6\x3b\xaa\xc8\xa3\x5f\x36\x88\xab\xb9\x25\x20\xe0\x69\xdf\xfe\x40\x10\xa6\x5c\xdd\x16\xab\x9b\x9f\x6b\x07\x6c\x5e\xe3\xd3\xbc\xa3\xba\xde\x86\xa5\xbd\xc2\x59\xf1\x43\xc0\xc5\xe8\xde\x85\x45\x8d\xf0\x73\xef\x40\xcc\x53\xbf\x31\xc0\xa4\xa6\xc0\x25\xbe\xf8\x6b\x86\x56\x1d\xaa\xe6\x66\x51\x21\x26\x34\x9f\xb5\xbb\x43\xb5\x26\x64\x3a\x2d\x68\xc2\x7b\x7f\xf5\x0c\xe7\xd4\x7f\xd8\x2c\x7e\xdf\x0f\xe8\x27\x3a\x59\x4d\x20\x3a\xc7\xa0\x39\x3f\x3f\xff\x79\x3c\x00\x6c\xa8\x9b\x85\xbb\xe7\x07\xcf\x6d\x69\x88\x9d\xf3\x70\x78\xb9\x28\x97\xe4\x86\xd9\x93\x80\xbb\x4c\x63\xff\xd0\x4a\x29\x1a\x68\xd7\xf6\x73\x8b\x43\xa2\xd5\x8b\x54\xff\x21\x02\x65\x4b\xf3\x70\x0a\x74\xbb\x8b\xcd\xe3\x86\x82\xe0\xcb\xab\xfe\x4b\x14\xb8\x50\x86\x63\xd0\x5d\x6f\x12\x13\x01\x1c\x3b\xf1\x92\xde\x81\xe8\xab\x60\x08\xfe\xe2\xae\x1a\x4a\xb1\x34\xf0\xbd\x4a\xf1\x9c\x18\x6c\xe6\xcd\xc3\x16\x45\x71\xcd\xee\x07\x83\xfd\xad\xb8\xfc\xd1\x14\xd7\xf6\x57\xb3\xec\x77\x0c\x3b\xeb\xb9\x31\xc4\x51\xcc\x74\x16\x7d\x58\x83\x15\x79\x89\x4d\x17\x7a\x94\x54\x09\xad\xd3\x9a\x9b\xfb\x10\x0a\xab\xf9\x63\xb1\x91\x65\x4b\x63\x31\x16\xb7\x1e\xa0\x30\x73\x71\x5f\x45\x88\x90\xdb\xf7\xcf\x2b\x92\x2b\xff\x08\xce\x87\xb0\xea\x1d\x60\xe0\xfe\xb3\x4c\xa7\x93\xe7\x70\x7f\x70\xd1\x6e\xa5\xc8\xfa\x4a\x75\x80\xc4\xc1\x0d\x1e\xd8\x68\x01\x5a\xf4\x44\x99\x9e\xc4\x4e\x84\x38\xec\xdf\xc9\x05\x46\x4c\x06\x90\xe3\x1d\x68\xf5\xfe\xa1\xf5\xc9\xe4\x11\x5a\xf8\xc5\x39\xf7\x56\x6a\x69\xe2\xb4\x7e\xcd\x79\x1c\x6e\x4b\x83\xb8\xb2\xeb\x1c\xc5\xb9\x40\xf0\xef\x58\x41\x40\x2c\x8a\xc6\x90\xa5\x17\x7b\x8a\x36\xb0\x57\x17\xe3\x12\xef\xca\x5d\x60\xb9\x59\x34\xbf\xa9\x1e\x27\x54\x0a\x28\x68\xc7\xa4\xf0\xc5\x29\x38\x86\x21\x0f\x05\x2c\x68\xc9\x4e\x09\xa2\x12\x3d\x3c\xde\x81\xc9\x4b\x26\x26\xf1\x3b\x90\x95\x94\xf0\xd5\x73\x04\x52\xf7\x1b\x16\xe3\xc7\x50\x61\x3c\xf6\xcf\x1e\xb9\x85\xd7\x95\xb3\xd8\x42\xac\xba\x13\xa2\x40\x69\xcd\xd5\xbc\xe5\x94\xdc\xa5\xd1\xa0\xf4\xee\x6c\x0b\xa2\xde\xdd\xae\xb6\xc4\xf5\x15\xc0\x66\x51\x5c\x89\x40\x0c\x1b\x36\xfd\xc5\x9b\x39\xd4\x9f\x34\xb8\xe5\x2c\xbe\xe6\x2c\x51\x8f\xe9\x8f\xf0\xc3\xad\x98\x8d\xf9\xe9\x9e\x3a\x18\xeb\xb4\x9f\xdb\xe2\xf6\x70\x72\xbb\xc2\x5a\xa7\x7f\x6b\xe7\x04\x77\x28\x8a\xc6\xca\xad\x14\x07\x84\x20\x2f\xbd\x48\x18\xe2\xf3\x67\x7b\x7a\x04\x85\xf7\x08\x3a\x1f\xc8\xb3\xd9\x9a\x18\x71\xf4\xf4\xc8\x29\x79\x22\x1e\xe6\xa7\xb8\x0e\x8e\x9b\xdf\xcf\x16\xac\xff\x71\x9c\x00\x18\xd9\x3f\xbe\xeb\x48\x3f\xb2\x22\x47\xfa\x71\xdc\x84\x99\x0f\x4e\xd6\x23\xe4\xb7\x07\xa7\x40\xf3\x43\x6a\x44\x39\x5b\x7f\x1e\xd0\x4f\x12\xbd\x9a\x16\x08\xb1\xdc\xdc\x46\x9e\x0f\x8a\xd7\x6f\xdc\x0f\x24\xda\x47\xce\xcf\xbd\xeb\x11\x30\x52\xd2\x14\x49\x2f\x39\xa7\x0f\xfb\xc1\xb7\x0f\x3d\x1e\x4e\x5f\xa5\xc2\x43\x3b\x54\xa0\x58\xe6\x8f\x7e\x1e\x39\x59\xa7\xf1\xf9\x90\x8e\xf9\xe7\x95\x33\x77\xf5\xbe\x32\x0f\x2e\x24\x24\x63\xbd\x79\x00\x00\x12\xdb\xbb\x07\x00\xc6\xbc\x65\x48\x18\xaf\x9c\xb9\xbb\xd8\xfb\x71\xb2\xf4\xf4\x15\x54\xd7\x15\x22\x78\x66\x68\xe5\x7f\xd9\x30\x63\xfd\xdf\xf6\x4b\x70\xda\x5b\x74\xaf\x40\x69\x56\xb1\x7e\x79\x07\xe6\xc1\xb5\x78\x38\xbc\x82\x41\x4a\x5b\xaf\x5c\xae\x9c\xd6\xeb\x41\xec\xfe\x82\x35\xbe\x5a\x95\x17\xa7\xf7\xa0\xb6\xec\x9d\xbf\x2f\x48\x40\xe7\x07\x6b\xd1\xf3\x6d\x72\xab\x6a\xf8\x1b\xbe\xc6\xac\x2c\xc0\x7b\xbc\xf3\xf7\xdd\x42\x32\x3f\x60\x2c\x90\xd0\xbf\xf3\xf7\xad\x45\x7f\x38\x77\x74\x7c\xfe\x64\x94\xa2\xdf\x4c\xa1\x39\x2d\x7a\xc9\xdc\xf3\x23\x7a\xdc\xc2\x4f\x4d\x78\xf3\xee\x89\xf4\x2a\x4a\x23\x04\xc6\xab\x85\x79\xc4\x56\xe2\x7d\x59\x64\x01\x3d\xca\x4b\xa0\x83\x10\x65\x2c\x5e\xd6\x55\xe8\xb5\xfe\x5f\x8f\xa7\xff\x6f\xfe\xbf\xff\xcf\xf3\xaf\x3f\x3f\xec\x9d\xff\xfc\x34\xcf\xbd\xbf\xef\x31\x70\x1f\xe5\x3f\xff\xbe\xb5\xfc\x7e\x77\x8f\xbf\x0f\xc5\x04\xdd\x4c\xcb\xb4\x6d\x3c\xcb\x7e\xd3\x96\x05\x2d\x4d\x86\x49\xb1\xa8\x65\x33\xfb\x8f\xb4\x6c\x9a\xf7\xe1\x4e\x0d\xcb\x1a\x96\x86\x94\xa4\x58\x3e\xdb\xa4\x48\x7d\x3f\x6c\x6c\xff\xfc\x7e\x47\xa9\xc0\xa0\xb4\x4b\xf5\x7f\x7e\x3f\x25\x05\x58\x08\xfc\x30\x60\xbd\x8f\x57\x84\x83\xf2\xaf\x3f\xbf\x10\xa9\x21\x28\xe3\x62\x7d\xff\xc2\xbd\xc9\xdc\x47\x32\xad\x92\x46\x1d\x18\x90\x46\x0d\xc5\x7f\xe1\x72\xee\xf7\xb1\x4c\xe3\xdb\xcb\x8c\xdf\x87\x75\xdc\x3b\xc6\x0f\x30\xfd\xfb\xb0\xbc\xbb\xfb\xfd\xb0\x13\xbd\x0f\xeb\xbd\x67\xcc\x0f\x53\xd0\xfb\x38\xa6\xdd\xbe\x45\xfb\x11\xd9\x83\x02\x5a\xa2\x5f\x1a\xb4\x2f\x29\xd2\x40\xe1\xf5\x4b\xf7\x58\xbe\x0f\x64\x05\xa8\x40\x7e\x69\x99\x6f\x7f\x69\xf7\x5b\x4c\x29\xfe\xfc\xb2\xed\x43\x6c\x1b\x30\xda\xfd\x13\x82\x21\xde\x90\xfd\xc6\xdf\x5d\xf7\xf7\xa1\x49\x06\x29\xc3\x14\xc5\x97\x37\x25\x98\xc7\x40\xab\x95\x94\x6e\x0a\x41\xf6\x28\xe7\xde\xa1\xef\x83\x90\x74\xf1\xa6\xb0\xac\xe2\x8f\x1b\x70\xa4\x9c\x7b\xe5\xbd\x8f\x4a\xf8\xb8\x9b\x92\x2c\x99\x8b\x63\xa2\x9c\x7b\x7f\xba\x0f\x84\xdb\xc3\x36\x5e\x56\xf8\x3e\xbe\x34\xca\xba\xfc\xe8\x9f\x88\x25\x78\x08\xe3\x9e\x82\x91\x81\xbf\x0f\xe3\xa1\xde\xc3\x23\x12\xa4\xe0\x3e\x1e\xd3\x6e\xad\xd8\xf4\xde\x87\xdf\xde\x1b\x5d\xc4\x0c\xf7\x3e\x4c\xcb\xa4\x0d\xd3\x86\x11\xba\xfe\xf5\x27\x46\x47\x0b\xd4\xfb\x20\xbe\x60\xc4\x3e\xf4\x3e\xba\x69\xed\xa6\xdd\x61\xb8\x0f\x6b\xbd\xbc\x40\x04\xa6\xfe\x3e\xb6\x69\xe4\x4b\xf4\x0c\x5b\xcd\x10\x10\xa8\xc7\x98\xb6\x69\xc7\x34\xf2\x55\xf3\x71\xad\xb9\x87\x6f\x8c\xac\xab\x18\xb9\xce\x04\x24\x36\x31\xde\x4b\xcb\x7d\x18\x33\xb6\x53\x6b\xb7\xc5\xdd\x16\x77\x5a\xdc\xfd\xb6\x7f\xdf\xde\x1a\x52\x64\xd6\x13\x42\x85\x7b\x02\xc6\xec\x28\x89\xdb\x6a\xcc\xa0\x58\x58\x41\xb1\x7c\xfd\xbf\x47\x53\xc4\xe8\xe0\x4f\x2c\xd9\x5a\xc7\x2d\x0d\x3d\xf1\x7d\xb8\x3e\xe8\x7f\x61\x2f\x88\x85\xbd\x20\x72\x5f\x8f\x60\x69\xde\x87\x51\x68\x5b\x24\xcd\xf2\x8c\xd4\x0a\x32\x55\x44\x75\x7c\x1f\xc1\xb4\x4a\x9a\xdf\x6e\xeb\xb8\x3b\x50\x2c\x97\x0b\xf9\x13\xd1\x1c\x87\x48\x54\xc2\x58\x7f\xac\xba\xca\x66\x2d\x4c\x5b\xac\xbf\xc7\xb4\xd7\xb4\xfb\x6d\xb5\xbf\xd5\xc8\x9c\x44\x19\x8c\xb5\x26\xd3\x8a\x69\x7c\x5b\x9b\x69\xd3\xb4\x41\xda\x36\xcd\xe8\xb2\x97\x2f\x8d\xad\xd1\x3e\x74\x0b\x21\xa0\xfe\x8b\x04\x73\xba\x0f\x2f\xc8\xff\xfa\x13\xdf\x44\x0d\x2f\xd2\x92\x81\xb5\x64\x7c\x5d\xb3\xaf\x37\x67\x82\x3d\xc4\x77\x52\x2b\x6e\x44\xa1\x63\xf8\x17\xdf\x09\x0d\xe0\x36\x14\x3a\xda\xaf\xf8\xae\x6e\x9a\xc2\x13\xe8\xe7\x5d\xe6\x13\xa0\x83\x70\x74\x11\xaf\xa0\xfb\xf8\x2e\x55\x8d\x34\x56\xed\xcb\xe8\x09\x74\x97\x7e\xf7\x90\xbc\x0f\x03\x1f\xdf\x1b\x5f\xfa\xdd\xa5\xfe\x27\xe1\x57\xc3\x5a\x49\xbf\x90\x4d\x91\xb3\x21\xa5\x9a\x62\x80\xe5\x94\x6e\xda\x3d\xe1\xee\xe3\xf5\x9c\x2a\x37\x2d\x5b\x3e\x56\x82\x91\x70\x71\x09\xa7\x8c\xfb\x78\x44\x48\xa9\x37\x6d\x9a\xef\xfd\xd2\x6e\x1d\xee\xdf\x29\x20\x06\xb8\xeb\x29\x05\xe8\x24\x05\x6e\x7a\x42\xe0\x25\xc2\x55\xfc\x49\x1f\x2d\x32\x4a\x29\x16\xbe\x8c\xdf\xdc\x5c\x6a\x4f\xd8\xdc\xde\x87\x69\x77\x07\x4e\x18\x3e\xde\x87\x51\x80\x2f\x0d\x24\xd0\xd4\xff\xa4\x04\x93\x1c\x99\xc5\x94\x2e\xc3\xfb\x27\x61\xf1\x17\x22\x9c\x6a\x02\x98\xfc\x3e\xdc\x11\xef\xce\x93\xea\x65\xda\xef\x03\xe8\x5a\xa4\x18\x69\x2f\x7a\xbb\x39\xe9\x44\xb3\xcb\xfb\x32\x9c\x7f\x32\x5e\xea\xa1\x8f\xfc\x0f\x90\xb1\x47\xf6\xff\xe9\x14\xcf\x0f\xdd\xcc\x68\x2e\x42\x86\x79\xca\x0f\x5b\x53\x7e\x14\xde\xa2\xda\xcf\x38\xd0\xde\x47\x35\x8d\x7c\x6c\xe7\x19\xff\xd8\x20\xfc\x42\x26\x06\xd9\x7d\xb0\x18\xd8\xea\xf2\x93\xcc\x97\xbe\x7c\xf5\xa6\xdd\x93\xf2\x3e\x92\x69\x83\xb4\x63\xda\x6b\xe8\xb8\x74\xd3\x8a\xdf\x16\xbf\xbd\xdb\x5f\x7e\x8a\xf9\xca\x97\x8f\x6f\xab\xed\x83\xe4\x3a\x92\x95\xfc\xd4\xc7\xb4\xd7\x34\xda\x02\x79\xe5\x47\xf9\x07\xde\xf8\x99\x70\x62\xf7\x71\xcc\x47\xdf\xfa\x22\xad\x1b\xc6\xae\x53\xde\xb0\x6f\x5c\xee\xf5\x54\xcf\x38\xb0\xde\x87\x62\xf3\x4e\xfb\x58\x74\x19\xbf\xd5\xa0\xd7\x78\x7e\xa6\xf9\xa6\xe3\x37\xf8\x76\x5a\xc7\x54\xa0\x35\xa8\xf7\xee\x73\xf7\xc1\xcd\x0c\x9d\x68\xc6\x59\xf5\x3e\xc2\x7f\x99\xd5\xfc\x6c\xdb\xcc\x35\x2b\xc3\x8c\x66\xc2\x93\xdd\xc7\x30\xec\x1d\x6d\x7e\x2c\xcf\xb0\x7b\xdc\xd1\x33\x4e\xab\xf7\xa1\x0c\xe8\x1e\xb2\xf9\xe5\xf8\xce\xaf\x73\x8e\xa2\x3d\xbf\x3f\xc6\xf9\x0d\xd6\x7b\x89\x38\xe3\xed\x79\x1f\x32\xce\xac\x8d\x37\x53\x9e\x11\xc2\xf4\xfe\xcc\xaf\x73\xf9\x16\xbf\xcd\x77\x5c\x08\x15\x76\x1f\xf6\xed\x6e\x81\xf9\x2d\x7e\x8b\xbc\x70\x00\x1d\x9c\x09\x17\x76\x1f\xdb\x70\x7c\x89\xb4\xaf\xbc\xd7\x7c\xa4\x55\x96\xfb\xdb\x0c\xd5\x57\x68\x73\xeb\xa6\x0d\xf3\x99\xb6\x4c\x3b\xa4\xdd\x43\x3f\xbf\xed\x31\xed\x55\xcc\x4d\x79\xdd\xf6\x19\x2d\x0e\x37\xc8\xfc\xf6\x69\x9a\xe3\xd2\xf8\x76\xfa\xed\xf4\x5b\xe6\x08\xb5\xdd\x7d\x54\x25\x88\xf4\x63\xb3\xc6\xf1\xb0\x0c\xba\xd8\x65\x76\xce\xfb\x98\xa6\x31\x2e\xdb\x31\xdd\xb6\xcf\xb1\xdf\xf6\x8d\xad\x61\x80\xf6\x9a\x51\xfd\xdc\x87\xe5\x0d\xea\x38\xf6\xf7\xd8\xdf\x44\x3f\xdc\x06\x8c\x66\xa6\x97\x5a\x7e\x1f\xdb\xfc\xd8\xe6\x3b\xf6\x85\x9d\xf8\x3e\x58\xa7\x88\x6c\xca\x2f\x24\xd3\x44\x99\xbe\xb7\xa4\x02\xbf\x76\x1f\xd3\x7c\x99\xb4\xc7\x34\x43\x1d\xde\x3b\x7f\x81\x67\xbb\x8f\xef\x16\xfe\x23\xad\x9a\xd6\x4d\x8b\xa4\x4d\xd3\x8c\x30\x78\x99\xcc\x22\x03\x57\x64\xe0\xf4\xf0\x29\xb8\x2c\xde\x87\x7d\x2b\xb4\x19\xa6\xae\xe0\x20\x18\xf4\xcd\x29\x84\x2e\xbb\x0f\xbf\xcd\xb4\x65\x58\x07\x62\xaf\x01\x8b\x50\x3c\x20\x0a\x07\xc4\x4d\xa3\x1f\xf7\x26\x72\x1f\xb6\x25\x53\x1e\x2c\x47\xf1\xfa\xa1\x07\x4b\xf9\x6d\xc7\xc0\x79\x43\x82\x5f\x7e\xa7\x90\x76\x6c\xcb\xdd\x73\x8a\xcc\x72\x09\xee\xa7\x38\x6f\x94\x00\xfb\x57\x02\xec\xcf\x00\x84\xb1\x04\xc7\xd9\xe0\x5f\x03\x70\xc5\x12\x42\x33\x0d\xb0\x65\xd0\x5a\x0b\xee\x6c\xf7\xb1\x4d\xe3\xdb\xc8\x18\x10\x2c\xec\xa6\xdd\x39\xc2\xa5\xed\x3e\x18\x2b\x4c\x0f\x4b\xc8\xb6\x25\xdb\x96\xbb\xfe\x4a\xc8\xd6\xfb\x8d\x73\xe7\xdb\xcb\x83\xdd\x07\xfb\x10\x36\xfa\x05\x6e\xf8\x3e\x9a\xe5\xf5\x9b\x56\x6d\x5f\x55\x1b\xf4\xa3\x6f\x8d\x31\x08\x9f\x08\x39\xd0\xe6\x69\x7f\xa7\x88\xe1\x89\xf2\x96\x6d\x41\xb6\x36\x70\x74\x2e\xf8\x7f\xdd\x87\xe2\xa5\x48\xda\xb6\x2d\x5b\xa1\x4a\xa2\xbf\x87\x39\x0a\xca\x56\x50\x3d\x94\xf0\x5a\xde\xab\x60\x88\x75\x10\x5e\xfb\xf6\x21\x95\x67\xd3\x1c\x97\x57\xc1\xef\x3d\xb2\x0b\x7e\x5a\xf7\x61\x9b\xef\x59\x56\xa2\x63\x8a\xef\x54\xd0\xce\xb4\x44\xd7\x2e\x1c\x78\x18\xe0\xc1\x95\x08\xc3\x5b\x08\x18\xf5\x09\x7d\x4a\x84\xa1\x28\xf8\x57\xdd\x7c\x7c\x9b\xfc\x16\x96\x4d\xbb\xd0\x12\x33\x73\x19\xb3\x7d\xbb\x7b\x49\x89\x05\x3a\x8a\xee\x6b\x80\x87\x96\x58\xad\xa3\x5a\xc7\xdd\x5f\x0a\x5c\xf7\x7d\x28\x9d\xbf\xfb\x46\x89\xc3\x7a\x3d\x8f\xca\x08\x7f\x3d\xee\x4b\x1c\x16\x23\x9e\x37\x18\xa0\x25\x8e\x97\x34\xa3\xcf\x62\xfa\x56\x22\x9c\x78\x89\x46\x9e\x45\x36\x5c\xe2\xb4\x59\xd3\x2e\x0d\xba\x2e\xf9\xe8\x9e\x34\x70\x0a\x2f\x51\xb2\x88\x92\x05\xee\xa4\xc5\x7b\x6a\x89\x1e\x4d\x70\x53\x85\x4b\xeb\x7d\x7c\xfa\x44\xea\x7d\x98\x56\xc2\x15\x05\x21\x0d\x0b\xf1\x8a\xee\xc3\x20\xa1\x6c\x35\xc4\x0f\xba\x0f\xa5\x58\x97\x73\x2a\xf1\x75\x28\xdf\x4f\xe5\x70\xdb\x92\x24\xc7\x24\xe9\x81\x0e\x57\xf0\xc7\xf9\x53\x92\x11\x5e\x51\xd2\x16\x3c\x71\xee\xa3\x99\x76\xc7\x25\x45\xbf\x35\x6a\x2b\xea\x95\x92\x12\x6d\x4e\xc9\xfe\x0e\xca\x4b\x96\x27\x99\xc1\x15\x96\x24\x99\x11\x1a\xe8\xa6\x91\xcf\x2d\x2e\xa9\xc3\xc3\x69\xb2\x24\x38\xca\x92\xd4\xaa\xe1\x2f\x59\x88\xeb\xf3\xa7\x10\xc6\x27\x64\xbc\x03\x0b\x71\x7c\xee\x83\x7e\x00\xf7\x59\x92\x5b\x61\x42\xc9\x93\x11\x75\x95\xc4\xf1\x57\x08\xef\x73\xf3\xdd\x31\x4d\xce\xaf\xd1\x75\x32\x6e\x73\x25\x4d\xfb\x2b\x3b\x82\x66\xae\x24\xb7\x3d\xfd\x5f\x06\x12\xa9\x92\xb6\xe5\xed\x4f\x95\x45\xbd\x87\xa5\x8d\x0f\xca\x4d\xbb\xeb\x00\x67\x93\xfb\xb0\x2d\xf7\x68\x2a\xe9\x19\xa6\x1d\xd3\x28\xef\xb1\x2d\x48\x05\x33\x12\xff\x82\xe7\xc8\x7d\x40\x66\xa8\x04\x4a\xfe\x31\x7e\xb8\x85\xdc\x7c\xa6\x75\xd3\xa6\x69\x83\x34\xd6\x5f\x96\x45\xc1\x75\xab\xe4\x40\x1d\x39\xaa\x6d\xe2\x18\xca\x6e\x8f\x59\x16\x14\x51\x78\xc9\x69\x99\xb6\x4d\xbb\xfd\xc8\xcd\xb4\xa6\x0c\x34\xf3\xed\x34\x6d\x9a\xaf\x90\xb6\x4c\x43\x50\x3f\x00\xc0\x2a\x19\x36\xad\x64\xd9\x34\x3c\x91\x0a\xce\x0b\xf7\xe1\x98\x5e\xce\xbd\x64\x6e\xa0\x25\x6f\xfb\xcb\xbc\x65\xc7\x39\x6f\xdb\xc7\xb6\x92\x1f\xd6\x5a\x7e\x14\x29\xb3\x0e\x8a\x5b\x57\x41\xee\x92\xb1\x0f\x28\xa5\x91\x8f\x20\x1a\x61\x00\x70\x54\x4a\x67\x3e\x08\xa0\x11\x06\x2c\x68\xc1\x04\xfc\x3e\xfc\x96\x2d\xa4\xf4\x61\x9a\x63\xea\xb7\x83\xb1\xc7\xb2\xfb\x7e\x4b\x3e\x8f\xd8\x32\xcc\xc7\xfc\x12\x25\xe3\x3e\x1c\x2b\xf6\x8d\x32\x1e\xd3\x6c\x0b\x6c\x86\xb7\xfa\xa2\xe1\xf7\x40\xe5\x58\x8a\x7b\x49\xf9\xc6\xd4\x3a\x1e\xf3\x49\xe7\x78\x5a\x94\xf2\xda\x37\x44\xb3\x19\x3d\x7e\xa9\xce\x79\x85\x7e\x07\xea\x86\x42\xa4\x87\xfb\x18\x06\x9a\xb8\x63\x8a\xd5\xf1\x7d\x70\xe4\xc0\xbe\x16\xcc\x84\xef\xe3\x35\xed\xce\x11\x26\xbf\xf7\x51\x4c\x1b\xa4\x0d\xd3\x26\x69\x99\x6f\xab\xf5\x72\x5b\x1f\x00\x9e\x94\x3a\xcc\x37\xcc\xc7\x11\x51\x5d\x07\xd5\x39\xc7\x8a\xa4\x54\xe7\x97\xd8\x03\x61\xc0\x6e\x96\x7a\xd8\xc3\x2a\x9a\x85\x4c\x50\xc2\x52\x1f\xe6\xa8\x22\xd1\x1f\x20\x6e\x94\xfa\x5a\x87\x47\x18\xba\xb0\x42\x70\x80\xfb\xb0\x6f\xb0\x32\x4d\x9a\x69\xd2\x0c\xf7\xf0\xd2\x60\xeb\x4b\xfb\xd9\x3e\xe8\xbc\x21\x97\x2b\xc4\x05\xb8\xf9\xee\x18\x34\x8f\x35\x4d\x4b\x07\xec\x6b\x69\x8e\x55\x93\x2d\xc0\xc4\xbf\x00\xc6\x7f\x1f\xac\x71\x74\xc9\xa5\xc9\x16\x60\x62\x19\x44\xaa\x2c\xad\x99\x06\x5b\x30\x40\x50\x28\x4d\xb6\x00\x3b\xc6\x90\x01\x85\x2f\x6d\x9b\x6f\x1b\x7c\xb9\x51\xc7\xb1\x6f\xa8\x79\x06\x96\x87\xa5\xc1\xd2\x96\x66\xd0\x65\x22\xb3\x94\x26\x7d\x34\xe8\x63\x60\x2f\x58\x9a\x63\xd5\xbe\xb1\x62\x8d\x77\xc7\x05\xe8\xf6\x9b\xaf\x93\x56\x4c\x63\xff\x23\x0e\x5a\xe9\xee\x2f\xdd\xfd\x85\x50\x65\x05\xac\xf5\x3f\x05\x68\xf5\x90\xb1\x66\x2f\x1d\xe9\x5b\xe9\x18\xa7\x64\x82\xc1\x96\xee\xd1\xde\x91\x66\x65\x4c\xcf\x4b\xcf\xdb\xb4\x63\x30\x93\x3b\x56\xbd\xd0\x5f\x20\xcd\x43\xc6\x32\xab\xf4\x4a\x7f\x7b\xd5\x86\x84\xf5\xdc\x91\x20\x94\x8e\x92\x7c\x60\x62\x57\x7a\xb7\xbc\x6e\x79\xf9\xf7\xf7\xe3\xbe\x4b\x8e\xa0\x88\x87\x8c\x01\x50\x01\x16\xfc\x3e\x34\xda\x82\x2c\xba\xdc\x59\x5f\x56\xc7\xd1\xd4\x97\x5d\x52\x31\x49\x24\xad\xd2\x3d\xc6\xbb\xc7\x38\x66\x28\xa5\xcb\x9d\xf5\x63\xb3\x38\xc2\xfa\xb1\x5e\x8f\xf6\x61\x79\x0f\x5b\x66\xff\xe2\x60\xb3\x8d\x76\xa7\xb0\x7f\x53\xc8\x96\xd9\x9d\xc2\xee\xd1\x0e\x8c\x7b\xc1\xa4\xeb\x3e\xaa\x69\x9d\xb4\x61\x9a\x26\x31\x6c\xc1\x43\x2e\x4e\x23\xa9\x91\xe1\xba\x86\x4b\x5b\x53\xa7\x4c\xc0\x95\x82\x75\xd3\x7d\x3c\xa6\xdd\x71\x19\x1e\xcf\xda\xdb\x64\x74\x54\x05\xdb\x99\x3f\x45\xdb\x98\x4c\x90\x95\x32\xe4\x8c\x3f\xdb\x17\x6c\x90\x0b\x76\x1f\xf7\x61\x79\x90\x00\x66\x19\xf7\x61\xcc\x70\x96\x13\x76\x0e\xf7\xf1\xa5\x51\x9e\xd3\x3a\xbe\x69\x85\x44\x87\x9c\x9d\x66\x04\x03\x77\xe6\x82\x09\xc0\x7d\x34\xe3\x85\x33\x2e\x6e\xad\xea\xd9\x47\xb6\x2d\xdc\x44\x8b\x1a\xe9\x81\x4f\x6f\x41\x99\x7a\x1f\x5f\xec\x70\xc6\xe0\xf8\xed\x51\x4f\x05\x59\xa0\xff\xbc\x0f\xc4\xb9\x40\xbb\x97\xe1\xfc\xaa\xe6\x2c\xd8\xe0\x94\x21\x4b\xa6\x4a\x52\x60\xd2\x32\x9c\x37\x35\x6f\x03\x2f\xd2\x32\xdd\x7e\xd4\x5e\x0d\xdc\x3b\xcb\x74\xde\x00\x80\x0e\x83\x40\xe3\x05\x04\xe8\xfb\x30\x9e\x39\xac\xd6\xf4\x18\x9f\xc6\xd5\x06\x2a\xbe\x4c\x59\xad\x89\x21\xd6\x28\xe1\x8e\xcb\xf4\xf6\x32\x31\x80\x1a\xd8\x2f\x95\xe9\x36\x35\x99\xb7\x81\x0a\xad\x4c\xb7\xf4\xe9\x96\x8e\x05\x47\x99\xde\x12\x27\xb7\xc4\x42\x3c\x8d\x32\xa5\x99\xe9\x11\x86\x62\xb9\x4c\x69\x01\xdc\xe2\x9b\x76\xfb\x3b\x37\x73\x34\xd1\xae\x17\x60\xe4\xcb\x94\xf5\x05\x8b\x38\x8c\xc2\x7a\x9e\x8e\xe9\x3c\x5f\x6c\x21\xfa\xe1\xf8\x4d\xc7\x0f\xe7\xb0\x32\xa5\x85\xf9\x58\x07\x47\xfb\x94\xcd\x9d\xaf\xdf\xc2\xae\xaf\x1f\xfd\x5d\x5f\xec\x77\x58\x0a\x00\x7d\xef\xc3\x6f\x61\x73\x97\x63\xb0\x8c\x39\x8e\xe0\xbc\x2c\xd7\xee\x32\x36\xbb\xb7\xe2\xe5\x96\xb4\x8c\x47\xee\xad\x18\x10\xde\xfb\x70\xce\x59\x93\x0b\xa1\x76\x01\x87\x37\x14\x60\xbd\x0a\x40\xbc\xf7\x51\x8d\x7d\x44\x79\xcd\x7a\x9b\xf5\x72\xeb\x5c\xb2\x23\x0b\x33\x9f\xe1\x75\x62\x79\xa3\x59\xdc\x68\x0a\x61\x0d\xca\xea\xf6\xad\xdb\x37\x68\x66\x0d\xeb\x18\x5f\xda\x1d\x97\xe5\x51\xb2\x60\x5f\x8b\x37\xe0\xb5\x6c\xdf\x32\x8d\xeb\x04\x40\xbb\xf7\x31\x4c\xe3\x5b\xc4\xda\x05\x7c\xdd\x50\x50\x43\x95\x25\x9b\xb6\x60\xc9\x0a\x8a\xa8\xb2\x8e\x69\xd2\x07\x6a\xa6\xb2\xdc\xd7\xd6\xa7\xd8\x4f\xd4\x21\xeb\xbb\xd0\xe2\x17\x6f\xb6\x80\xee\xde\x87\xf5\xb2\x76\x97\xfb\xdf\x7a\x3e\xdb\x0e\xbf\xb5\xbc\xe7\xfd\xaf\xbd\x47\x59\xaf\xfd\x7d\xed\x07\xb7\xd3\xed\x71\xb5\x39\xae\x06\x3e\x31\x65\x23\xa5\x2d\x5b\x65\xb0\xb7\xd3\x8d\xc4\xae\xec\x9f\xe5\xc1\x7a\x6c\xe9\x08\x4c\xdd\x30\xbc\x7a\x6d\xd9\xe1\x6d\x6c\x7a\x44\xef\x65\xbb\x86\x76\x76\x5c\xda\x5d\x93\x3b\x5b\x6f\xb6\x2d\xad\x92\x66\x1d\xb0\x05\xc5\x2b\xda\x96\x85\xda\x2a\x9a\x40\x93\x2f\x1b\x69\x69\xd9\xda\x45\x11\xf6\xb5\x6c\xaf\x1d\x7b\x1a\xfb\x0a\x1a\xdc\xb2\xd7\x5b\x1b\x1e\x42\x2d\x94\xbd\xec\x1b\x01\x0b\x8b\xd7\x9d\xed\xd5\x01\xa3\xfb\x50\x88\x48\x50\x8e\xfd\x3d\x3f\x4d\xb4\x38\x3a\x0f\x2a\x84\x72\xb8\xca\x15\x50\xe2\xcb\x91\x15\x3c\xb2\x82\xb5\x98\xb6\x4c\xdb\xe6\xbb\x7d\x3b\x48\x28\xcb\xe1\x3a\x36\xc0\x9c\x29\xc7\xb5\x7b\xfa\xf7\xed\x1d\x2b\x9c\x20\xee\xa3\x18\xc3\xeb\xf6\xed\xa0\x80\x2a\x47\x73\x1d\x3c\xe8\xca\xf1\x8a\x0b\x1a\xe6\x4d\xa3\x3c\xd7\xcb\x71\xbd\x44\xf6\x92\xf3\x14\xd3\xec\x2f\x92\x0b\xe0\x31\xef\x83\x73\xa1\xb6\xf1\xf7\xe3\xfe\xbc\x16\xad\x99\x45\xb4\xf9\x0a\x40\x0e\xd6\x11\xc3\x1b\xdc\x91\xab\x3e\x46\xad\x07\xd6\xb7\x3c\x0a\xa9\x1e\x6e\xca\x05\x18\xdf\xf2\xb8\xdd\x3e\x2e\x09\xac\x1a\x0b\x8e\x02\xf7\xa1\x75\x0d\xd3\xff\xc8\xc1\x3c\xd5\x6f\x11\x2a\x3d\x1e\x89\x0f\x76\x8f\x83\x68\xcf\xe5\x71\x6b\x00\x60\x32\x0c\xb4\x4c\xe5\xf1\x66\xfb\x34\xdb\xcc\xd1\xf9\xc8\x3d\x3e\x08\x71\x8b\xb7\x97\xc7\x9b\xd9\xd3\x3e\x6b\xbc\x42\x9a\xed\xfb\x42\xa0\x71\xdb\x45\xc2\x7e\x1f\xed\xbf\x56\x1a\xe5\xf1\x48\x7c\x5c\x4e\x20\x7f\x96\x47\x8e\x1c\x39\xfa\x4d\x23\x9f\x1c\xf9\x73\x3e\xfb\x0a\xca\x73\x0a\x1f\xa6\x70\x60\x15\x53\x1e\xb9\xd1\x47\x93\x1e\x6f\x1b\x8f\x5b\x3a\xf2\xf6\x9b\x46\x79\x6e\x03\x0a\xdf\x47\x63\x5b\x79\x1e\xfb\xc6\xd6\x30\x9a\x75\xbc\xb6\xf9\xb5\xcd\x48\x1f\x1e\xb7\x7e\x60\x24\x6f\xda\xcd\xf7\xff\x33\xf6\x26\x37\xb8\xeb\x38\xdb\xed\xbc\xa2\xa8\x10\x2c\xdb\xea\x80\x8d\xca\x45\x94\xed\xfc\x43\xb8\xe0\x5a\xef\x77\xfe\xd1\xc5\x3e\x23\x01\x82\xad\x5e\x14\xdb\x87\x9f\x57\x1e\x10\xc8\x22\x9c\x6e\xfd\x54\x24\x7e\x28\x12\xab\x92\xca\xa7\x22\xf1\x2b\xce\x17\x52\xf3\xa9\xcc\x22\x5a\x27\xeb\x72\x7c\x2a\xdf\xab\xca\xf7\xaa\xa4\xf2\x79\x95\x3f\xa5\xa1\xee\xbf\xcd\xef\x9a\xdf\x35\xeb\xa6\x75\x8f\x75\xb9\x06\x9f\xfb\xfb\x49\xfa\xf1\x8c\xab\x9f\x7b\x04\xb8\x62\xd6\xf1\x1d\xb6\xb0\xfa\x0d\xd7\x80\x2b\xa0\xa2\xbd\x7e\x92\x7e\x25\x90\x4f\x12\xf2\x4d\x1d\x0c\x79\x4a\x3e\x35\x58\x1f\xca\xde\x8a\x02\xbd\xe2\xdc\x92\x85\x7d\xf0\x94\x7c\xb2\xb9\x9f\x4e\x83\x84\xbb\xd5\x4f\x6d\xd5\x87\xb2\x77\x92\xea\xad\x6a\xd1\xac\x5a\x34\x27\xe0\x26\x55\x85\x7c\x55\x21\x5f\xf1\x17\xac\x9f\xcf\x01\x3a\xf8\x32\x3b\xec\xe6\xa7\x26\x44\xe5\x7b\x25\x8a\xaa\x7e\x9e\x17\x74\xf0\xf9\x1d\x63\xf6\x69\x57\xf9\x3e\x81\xea\xa8\x60\x16\x66\xf1\x4b\xeb\x57\xff\xf3\xa7\x69\x0f\x6d\xda\x43\x27\xae\x55\x4d\x0f\x89\xa6\x87\x84\x2e\x8e\x4d\x1f\x89\x76\x18\x3f\x40\xc8\x52\x3b\xf0\x13\x68\x2a\xda\x2b\x8a\xf6\xa6\x95\xb4\x1d\x3a\xa4\xe3\x16\xd7\x40\x17\xcc\xc2\x33\x34\xf8\xb7\x7e\xd4\x99\x7a\x10\x49\xbe\x81\x05\x98\x05\xe7\x8a\x30\xa0\x06\xda\x5f\x16\xcb\x3a\xfe\x6d\x8e\xcf\x73\x80\x97\x79\x3b\x9a\xed\x75\xfd\xb1\x6f\xda\xc3\xb8\xd2\xc0\xe6\xcb\x3e\xf8\x97\x3d\x6f\x07\xc6\x95\x09\x6e\x44\x03\x98\x2f\x8b\x5f\x7b\x23\xeb\xa6\xdf\xc9\xa6\x21\x62\xb4\x63\xda\xc7\xb2\x8f\x4a\x1f\xcb\x3e\x74\x3b\x25\xaa\xa6\xa9\xcc\x6f\xb8\x0f\x95\x4a\x94\x4c\x3b\xc2\x3e\x24\xd5\x77\x63\x6e\x8f\xeb\xa7\x21\x05\x9c\x83\x76\xb0\x97\xed\xf0\xee\x03\xf6\xd2\x8e\xc7\x7e\xf5\xe0\x03\x84\xa9\x1d\x9f\xfb\xf1\xfd\xea\x68\xef\xb3\xbd\xcf\xcc\x89\x27\xf3\x85\x45\x6e\x87\x77\x1a\xb6\xbe\x15\xa4\xce\x56\x0e\xcf\x50\x9e\xf1\x06\xe8\x5d\x16\x9f\x75\x39\x0f\x0d\x01\xad\x14\xff\x9d\x39\xbe\x92\x32\x4d\x16\x9c\x67\x24\xfe\x56\x78\xc6\x1b\x0e\x49\xf9\x5d\xae\x5f\x41\xb4\x69\x85\x3d\xaf\x84\x98\xb4\x72\xdb\x9e\xcf\x1f\x90\x31\xad\x54\xc7\x52\x7f\x5e\x90\x8c\x0f\xff\x86\x06\x88\x5d\x99\x20\xc8\xb4\xe2\xd9\x28\xb2\x82\x35\xa5\xd8\xa6\x71\xa0\x81\x63\x97\x75\x8c\x19\x11\xa8\x61\x23\xc8\x7f\xe9\x03\x03\x6c\x2b\x18\x60\x2b\xa0\x28\x0d\xcc\xba\x2c\x5e\xeb\x68\x8f\x67\xb7\x15\x3d\xc3\x81\x2d\x69\x7a\xd6\xb4\x22\x4b\x01\x0b\xdf\xca\x74\x2c\x38\x59\x4f\x20\x03\x1a\x78\x75\x59\x70\x4e\x31\x22\xb4\xb2\x5c\x2b\xd9\x0c\xc0\x5c\x1b\x38\x73\x59\xb8\x7e\x2d\xef\x56\xd9\xce\x03\x8d\x67\x05\xa6\xa3\x61\x79\xc8\x82\xfb\x8b\xe6\xa2\x95\xcf\x79\x7c\xce\xb7\x32\xe6\xcf\x79\x7c\x9e\x97\x7c\x2f\x9b\x7e\x3e\x4d\x63\x43\xc5\x33\xac\x9d\x68\xb0\xda\x29\xdb\x02\xfb\xdf\xc0\x82\xcb\xc2\xf9\xfe\xe3\x80\xf7\xff\xff\xdc\xb7\x53\x72\x71\x4a\x2e\x70\x93\x6b\x00\xbe\x65\xe1\x12\x31\xd4\x13\x77\xa9\xf6\xb3\x4f\xa0\x14\x69\xa7\xc7\x04\xf0\xb6\xfc\x2e\x97\xf2\xf4\x98\x00\xdc\x56\x2a\xae\xfd\x4d\x97\x87\x76\x12\x10\x32\x51\x8a\x34\xb0\xd8\xb2\x30\xf9\xe7\xa4\x3d\xc8\x7c\x3b\x87\x2e\xf1\x93\x7e\x51\x2e\xb6\x73\xb8\x0d\x1c\x45\x6d\x16\x4d\x9b\x45\x25\x64\xa7\x69\x94\x68\x1a\x25\x2a\x31\xe8\xed\xf4\x8a\x9e\x5e\x51\xd2\xe9\x36\x80\xc8\xb2\x80\x0b\xc6\xb9\xb9\x9d\x6e\xd7\x09\xf9\xae\xf8\xa9\x36\x40\xca\xb2\x08\xbf\xa3\xdf\x6d\x7b\xfb\xd7\x5e\xa3\xce\x31\x63\x63\x35\xee\xa4\x9d\x8f\x6b\x25\xd7\x4f\xf0\x75\xc3\x92\x91\x85\x7d\x70\x3c\xcf\xc7\x35\xc0\x13\xb8\x12\xa2\xdc\xce\xd7\x3e\xe4\xe6\xe1\x6e\xdb\x09\x37\xdf\xce\xcf\x31\x43\x96\x35\x54\x34\x0d\x15\xc6\x6d\x34\x60\xba\xb2\xd0\xc5\x07\x92\xa9\xb1\xa1\x69\x6c\xa8\x78\x9d\xb7\x0b\xbf\x89\xa6\x61\x61\xe2\x84\xd6\xae\xdb\xef\xcc\x3a\x3b\x6d\xef\x66\x6e\x57\x75\x6e\x5c\xdb\xcb\x2b\x7a\x79\x45\xc1\x60\x6c\x57\xb7\xdf\x6e\xbf\xc9\xdd\x36\x5d\x55\xda\xa5\x64\x06\x54\x61\x03\xa7\x2b\x0b\xae\x00\x8e\xcb\x0d\x8b\x42\x16\xee\x65\xb3\xce\x3e\x7c\x76\xc1\x89\x6b\xba\xb9\xb4\xeb\xb7\xce\x9c\xd3\xeb\xb1\x5f\x59\xad\xc6\x59\xbb\x24\xad\x80\x58\x95\x39\x1d\xcb\xeb\xdc\x5e\xd7\x00\x52\x78\x79\xf5\x34\x18\x54\x5c\x6e\xda\x0d\xd7\xdf\x6e\xb9\xfe\xc6\x39\x05\xd9\x29\x0b\xee\x07\x81\xea\xed\xc6\xf6\xdc\xee\xd3\xb3\xc1\xf8\xc8\x7b\x9f\x85\x67\x83\x73\x7a\xa3\xf8\x6b\xa6\xbe\x9f\x68\x83\x1a\x39\xe2\xb3\x60\x6e\x3d\xa5\xce\x76\x7b\x9e\x49\xe3\x5e\x2a\x38\x72\xed\x5e\xf6\x4b\xc0\x43\xc5\x17\xbc\x91\x93\x3d\x0b\xfd\xf7\x39\x6b\x77\xb0\xa6\xb7\x5a\x05\x22\x04\xda\xed\x19\xbf\x75\xc6\x87\x3d\x6c\x60\x18\x65\xe1\xbf\x27\xff\xbe\xf6\xab\x14\xd1\x2f\xbe\x43\x8a\x68\xa4\x55\xcf\xba\x1c\x5f\x75\xbe\x15\xf7\xc1\xda\xd9\xb7\x8a\x6d\xb2\xd5\xcb\xc8\x25\xce\x41\x95\x1e\x98\x19\xbc\x62\x80\x68\xd5\x73\x55\x6f\xeb\x38\x07\x15\x0d\x42\xab\xd5\xa4\xbb\xb0\x1e\xa4\x07\xcf\xc2\x7e\x1b\xfd\xfa\x94\xd4\x7c\x4a\xce\x83\xec\xb6\xad\xfa\x6c\x54\xc5\x04\x90\xcc\x5a\x95\x7d\xa8\xb2\x0f\x80\x92\xb5\xda\xed\xc3\xe8\x25\x59\xa3\x8a\x48\xd0\x80\xb4\xc9\xba\xbc\x6f\x75\xd8\x9e\xf1\x42\x00\x89\xb5\xea\x13\x51\x7f\xd1\x38\x83\x7f\x67\x58\xe7\x1a\x70\x5e\xaa\x7b\x54\x7f\x7b\x34\x59\x03\x9f\x08\x8d\x12\x95\x40\xc3\x56\x71\x96\x6b\x35\x8c\x73\xe4\x6c\x54\x5c\xbe\x1a\x9e\x89\x39\x37\xbe\x93\x5e\xe9\x7e\x58\x65\x65\x48\xed\xfd\xa7\x09\x60\x73\xe0\xd7\xd1\xea\x76\xcc\xdb\x04\xc3\x17\x63\xde\xf6\x4b\x94\x44\x05\x93\xaa\x55\xf7\xb2\xbe\xfa\x8a\x43\xd7\xc0\x9a\xc9\x62\x5a\xc7\xdc\xa4\x39\xf5\xb5\x5f\xd8\xc3\xfa\xb9\xe7\x9f\x75\xac\x7d\x43\xbc\x6b\x0d\x88\xc3\x03\x6d\x5a\xc3\xb7\x31\x8b\xee\x77\x8d\xba\x69\x9d\x0e\x9d\xa7\xdf\x71\x36\xda\xcf\x71\xef\xa2\x3d\xc4\x8e\xd6\x14\x3b\x88\x6a\x68\x0d\x2d\x5e\x13\x98\xe6\x20\x4b\x6f\x6b\xc5\x7f\xcf\x5f\xf4\x03\xed\x9d\xfe\x6b\x02\x62\x32\xec\xb6\x26\xfb\x6a\xe6\xef\x0a\xfa\x51\x6b\xde\xc1\xe6\x5b\x86\xa1\xa2\x35\xe9\xa4\x99\xba\xab\xec\x88\x86\x9e\x66\x66\xee\x3a\x60\x0f\x1b\xda\xaf\x26\x14\xcc\x71\xfc\xea\x1e\xeb\x38\xcf\xb2\x0a\xba\x6f\xb6\xd6\xdc\x4b\x58\x46\x0d\x42\xad\x19\xd9\x87\xbb\x5d\xd3\xf8\xd3\x30\xfe\xe4\x77\x93\x3a\xe7\xd6\x6c\xaf\xd3\x9e\x2c\x4f\x53\x9c\x25\x45\x7d\x6b\xb2\x3c\xcd\xb3\x2b\xfb\xd0\x86\xf3\x95\xc6\xe6\xdb\xfd\xd7\xe7\xbe\x0d\x97\x77\xb8\xbc\x5c\xb3\xe6\x71\x6f\x1e\x77\x32\xd0\xb7\x36\xed\xce\xe7\x94\xa8\x90\xd6\xe4\x82\xcd\xad\x5d\x7d\xc6\x9b\xc7\xb3\x6d\x97\xa8\xf3\xdd\xf6\x5f\x15\x61\x84\xc6\xb5\xf6\x38\xa5\xff\xcb\x89\x6d\x9d\xdb\x00\x5a\xd2\x71\xd8\xef\xe3\x12\xa9\x28\x06\xa3\xa7\x35\x8f\x6c\x7b\x97\xdf\xb1\xfd\xaf\xcb\x46\x60\xff\x81\x3b\x4c\x03\x4d\x25\x0b\x03\x44\x0a\x7d\xc8\x41\x6b\xf7\xaa\x84\x3f\xb7\xe6\xd3\xd9\x7c\x3a\xc9\x46\xdf\x30\x78\x65\x21\x49\x62\x6e\x5d\xae\xba\x1f\xbf\xc8\xe7\xdc\x86\x2e\xbb\xd4\x3d\xb2\x60\xe3\xb4\x8e\xc7\x75\x03\x6a\xa5\x54\x8c\x21\xad\x9f\x8c\xa5\x9f\x5e\x15\x24\x95\x8e\xf4\xdc\xba\xc7\x13\xe0\x9a\xd6\x25\xad\x1d\x23\x42\x05\xc0\xa6\x91\xb8\x3a\x0b\x73\x83\xb3\x06\x18\xd0\xfe\x34\x6d\x66\xc6\xfc\x34\x60\x4e\xb2\xb0\x5f\x8e\x5d\x57\x6a\xea\x4a\xcf\x60\xc0\x34\xf0\x46\xb2\xf0\x3b\xf6\x1c\x14\x91\x3f\xad\x1b\x7d\x08\xcc\x4a\xeb\x72\xbc\xe4\x8e\x3e\x8f\xe2\xba\x60\x9f\x6d\x7d\xba\x1f\x90\xcc\x2e\x39\xeb\xf1\xfb\x97\xef\xc2\xb9\xa9\x1d\xc1\xa0\xd1\xba\x4f\x76\x97\x0d\xc2\xd7\xbb\x75\xd9\x20\xf2\x3b\x9f\x07\x69\x46\x5b\x97\x33\xc6\x3c\x97\x75\xb4\xf7\xfa\xaf\xd2\x10\x9e\xdd\xad\xe3\x9a\xd3\x48\xbd\xfc\x8b\x17\x6b\xda\xe5\x9a\x29\x95\x0f\x94\xa9\x8d\xdc\xc9\x59\x5c\x7e\xd7\xa8\x6b\xd6\x75\xeb\x06\x75\x8f\x75\xaf\xff\x52\x77\x42\x06\x86\x81\xf4\xb8\xf9\x35\x0c\x77\x59\x70\xbd\x09\x1d\x6c\x03\xe5\x67\x1b\x97\xb1\x6b\x9c\x2b\x72\x21\x67\xf1\x58\x47\xbf\xb8\x4f\x35\x52\x1d\x67\x1d\x7d\x48\x56\x48\x67\x5c\x1a\x09\xd9\x1b\x39\x8c\xb3\xb8\xad\xe3\xdf\x69\x9d\xd1\x9e\x87\x73\x5b\x8e\x65\x39\x3e\xa4\xe7\x21\xbb\x84\x4d\xae\x34\x49\xe6\x70\x8f\x34\xc6\x35\xc9\xe3\x40\x83\xd5\x46\xb8\x7e\x48\xc5\x43\x56\x61\xc0\x2a\x34\x12\x86\xb7\xa1\x14\x8b\x9d\x2e\xeb\x3a\x75\xb6\x07\x5b\xd5\x48\xc0\xdd\xc6\xeb\x77\xaf\xdf\xf1\xb4\x6b\x78\x6b\xc3\xd0\x29\xe9\x0b\x56\xb8\x2c\x1e\x73\xdd\xe7\x3d\x9a\x4a\xa7\x3f\xd0\x06\x0c\x0b\x8d\xa8\xfb\x2c\x96\xb9\xef\xf3\x6c\x4c\xd7\x45\x43\x59\xc3\xd3\xbe\x11\xfd\x9d\x85\x7d\x70\xd6\xa6\x24\xd8\xb0\xec\x06\xaa\x5f\x23\x42\x3a\x0b\x22\xce\x30\x0e\xb4\x29\x0b\x60\x80\x72\x23\x67\x71\x9b\xd2\x44\x33\xca\x1e\xc5\x7f\x7d\xee\x0d\x72\x6d\xde\x5f\xa2\x3d\xb3\xf0\x1c\xf8\xaf\xec\xd7\xf4\x79\x26\x33\x62\x9b\x3e\xc5\xbf\x18\x45\x3c\xc1\x1b\x31\x8a\x59\x7c\x7e\x97\xeb\x32\x7d\x9e\xcd\xaa\x7a\x10\x49\xd8\x96\x4f\x1d\x76\xab\xd2\x0a\x34\x67\x79\xd6\x16\x38\x04\x8d\xe8\x95\xb6\x88\x0b\x6a\xcb\x7c\xf7\x64\x04\x6c\x58\xaf\xb2\x78\xac\xcb\x75\x59\xc4\x05\x35\xb2\x91\x96\x46\xd2\x90\xb6\x64\xab\x16\x12\x7a\x2b\xd0\x9c\x25\xbb\xb4\xc8\xd7\x76\xa0\x78\x6e\x6b\xb0\x7e\x0b\x8f\xf6\x06\xd8\x5e\x5b\x6a\x4c\xd6\x72\xbe\xd0\xa1\xb5\xec\x63\xd9\x87\x75\xb2\x28\x6b\x5b\x07\x7b\xb8\xa4\xf7\x1a\xb1\x1a\x2e\x6e\x6d\x49\xef\x97\x77\x1f\x6d\x73\x0b\xd9\x8c\x90\xcd\x20\x89\x5b\x0b\xb5\x55\x71\x0a\x00\x61\x1d\xfe\x1a\x2d\xc8\x05\x66\x5e\x89\x16\x8a\x3b\xd8\xb2\x4a\xc3\x33\xbf\x85\xda\xaa\x00\x1e\xa1\xe1\xaf\xd6\xc2\xf5\x8b\xdf\xfa\x41\xd7\xc2\x73\x65\x22\x49\xb3\x4b\xb4\x40\x2b\xdd\x34\x4e\x35\x52\x9a\xb6\xf0\x0c\x05\x4f\xb1\xd1\xde\x2d\xd4\x4c\x85\x91\xe6\x64\xfb\x6c\xa1\xe8\x1a\xc3\x7d\x83\x3d\x24\xcb\x63\x16\xdf\x3f\x71\xcc\x2d\x36\xe7\x20\x10\x49\x1b\x99\x2d\x9b\x86\xa3\xa6\xe1\xa8\x91\xee\xb6\x85\xb4\x33\xbc\x97\x67\xa9\x7f\x7f\xee\xb5\x17\x35\xed\x45\xed\x84\xa4\x6f\x97\x0d\xf3\x4d\x69\xb8\x4a\xb5\x2d\x99\x22\xa7\x61\x69\x1e\xa7\xed\xd1\xd9\x00\x6e\x1d\xa4\xb4\x6a\x5b\xa9\x7d\x03\xc0\x74\xe0\x36\xd3\xb6\x1c\x11\xa9\x07\xf3\xdf\x9c\xd2\x56\x19\xb3\x51\xc6\x34\x8f\xc9\x56\x19\xb3\x87\xc1\xa9\xb5\x50\x57\xad\x73\x2c\x28\x77\xb6\xca\x98\x3d\x5d\x0e\x48\xcd\xc6\x45\xa6\x6d\x94\x77\xcd\x23\xb1\xbd\x8e\x1b\xbc\xf2\xe3\x72\x1e\xd8\xea\xda\xc6\x56\xd7\x3c\x12\x5b\x05\xcd\x36\xd0\x99\xbc\x7b\x6d\x6f\xc7\xb2\x9d\x2f\xdb\xba\xdd\x06\xd2\xfc\x9d\x66\xd3\x68\x7b\xdb\xaf\x51\xc9\x78\xf0\x37\xf0\x76\xb2\xb0\x5f\xae\xd9\x7e\xfc\xee\x59\xd6\x31\x3e\x8f\xf6\x06\xf4\xf1\x20\xb6\xb2\x6d\x25\xae\xfd\x0b\xd0\x85\x95\xd9\xb2\x32\xda\xa4\x1a\x5e\xfd\xed\xc1\x3e\xdb\x48\xcd\x97\x75\xf9\xdd\x83\x0f\x42\x7b\x7e\xd8\x2b\x1c\x93\x47\xe5\x9d\x20\x5d\x07\xc9\x8d\x1a\xb9\xf4\xb2\x30\x5a\xb9\x58\x37\xac\x9b\xd6\x9d\xd4\x3d\xd6\xbd\xd6\xe5\x98\x1f\xaf\xc0\x53\x7f\x51\xd8\xf4\x2b\x27\xfb\x80\x8a\x76\x5c\x3c\x07\xe0\x05\x65\xf1\xc3\x81\xc9\x35\x7d\xbc\x16\x8f\xa4\x15\xe3\x45\x7b\xe4\x50\x49\x71\x57\x1a\x69\xb3\xda\xa3\x72\xf6\x91\xac\x90\xdc\xaa\x3d\xb2\x9b\x0f\x88\x52\x07\x90\x76\xed\x59\x90\x8b\x67\x39\x37\x14\x6b\x4f\xd8\x1e\xf1\xf0\x07\xc6\x81\x46\x8a\xb9\x2c\xb8\xde\x17\x1a\x8e\xe7\x71\xbe\x46\x5f\xe3\x52\xd5\x30\x96\x65\xe1\xfe\xf2\x6c\x3c\xaf\x7d\x10\xc8\x6c\x64\x77\x7b\x64\x19\x9f\xef\x57\x97\xed\x11\x9e\x92\x85\x75\x90\x90\x17\x9b\x68\x7b\x25\x49\x04\xea\xb7\x57\xa9\xe4\x3d\x5d\x7b\xce\xd5\xeb\x1e\xbd\xa7\x78\x2a\xf4\xfb\xca\x2a\xbc\xbf\xb5\xe7\x69\x22\x8c\x25\x8b\xdb\xba\x1c\xf3\xeb\xf3\xf7\x2a\x29\x03\x2d\xd0\x5e\xef\xe0\x6b\x88\x16\xa1\x94\xed\x95\x15\x34\x9a\xa5\x81\xde\xd6\x8c\x5c\x69\x46\xae\x34\xd0\xd8\x9a\x86\xb2\x46\x16\xb6\xac\x63\x7c\xb2\x78\x2f\x2c\x9e\xc1\xf6\xed\x95\xa5\x30\x53\xda\x41\x0e\xc5\xf6\xba\x1f\x04\x9c\xe4\x77\xfc\x2b\xfb\xf0\xca\x3e\xe0\x85\xdf\x5e\x9f\xbf\x77\xff\xe2\xc1\xf9\x4e\xf6\xff\x7d\x7e\x28\x51\x8c\x4f\xa9\xf3\x05\xaa\xed\xd0\x00\xf1\xca\x9a\x9b\xc6\xac\xe1\xb2\xd4\x3e\xdc\xd4\x1a\xa0\x5e\x59\x97\xdf\x7d\xb2\xe1\x1a\xac\x9a\xc6\x81\xcf\x3d\x22\x89\xd9\x79\x00\xfe\xd3\x3e\xd9\x70\x72\x93\xe5\x77\xb4\x27\x1b\xfe\x9d\xce\x8d\xb1\x7c\xee\xd1\x77\x3a\x66\xe8\xd5\x27\xdb\xf7\x09\x33\x84\x07\x7f\xc3\xca\x95\xc5\xb0\x6e\x50\xb7\xac\x73\x5d\x38\x43\x84\x9d\x64\xe1\xdc\x1c\x9f\x7b\xf4\xfd\xf6\x08\x76\xe9\x93\x45\x21\x1f\x59\xd6\xe5\x1e\x7d\xdd\x7f\xa5\x9d\xa4\x7a\x68\xdf\x70\xcc\x64\xc6\x3b\x34\x54\x7c\xb2\x2d\xe6\x0c\x3b\x88\x26\x68\x9f\x4f\xf6\x37\x7e\xff\xd2\x1e\xbe\x0f\xed\x23\xcc\xed\xf8\x8d\x4f\x23\xc7\xb7\xdc\x0f\xe8\x9a\x11\x29\xcd\x88\x94\xa6\x11\x81\xb8\xbd\x2c\x5c\x3f\x9e\xb5\x4f\xf1\xee\xdb\x8e\x05\x0d\x8c\xd1\x22\xcd\x68\x91\x86\x2f\x4f\xfb\x64\x6f\x3e\xef\xdb\x6f\x2c\xbe\x47\x9f\xef\x91\x46\x84\x4f\xb6\x9e\x24\x5d\xf9\xdd\xfc\xcf\x9f\x7e\xe0\xab\xd0\x8f\x43\xac\xad\x3c\xa7\xdd\x50\xe0\x4e\x70\xc9\x79\x30\xbe\x4e\x38\x49\x16\x82\x8c\x24\xcb\xdd\x35\x62\x75\x8d\x58\x0d\x43\x40\x27\xb9\x55\x16\xc5\x3a\xfa\x60\x9d\xfb\x81\x9b\x6e\x03\x4b\xa8\x1b\x05\xd2\x4d\xe0\xd4\xc0\x66\xe8\x86\x9b\x77\xa3\x3b\x1a\x9e\xfe\x9d\x68\xf1\x2c\xa0\x6b\x28\xee\xfb\xc1\x19\xef\x87\x22\x2e\x86\x8f\x6e\x88\x78\xd7\x20\xd4\x08\xa9\xef\x64\x1a\xca\xc2\x3e\x1a\x75\xf8\x92\xf5\x72\xc2\x06\xd5\xbc\x5b\xdd\xd0\xef\x8e\x8d\x45\xe4\x97\xbf\x3d\xf7\xdd\x28\xf0\x6e\x14\xf8\x81\xcb\x52\x37\x2e\xb1\x9b\x28\xa8\x01\x01\xd5\x0b\x64\xb9\x9b\xc2\xe7\x00\x7a\xa9\x97\x61\x77\x72\x2b\x28\xdf\x7b\x41\x39\xdb\x0b\x51\xe0\x07\xb0\xea\xbd\x60\x13\xed\x85\x28\xf0\x83\xa0\x89\x5e\xc2\x7f\x43\xc0\x84\x83\x7f\xb7\xdf\x89\xee\x81\xf2\xbd\x97\xc7\xb1\x80\xaa\xd1\x40\xff\xea\x85\x63\xd2\x0b\x0a\xc7\xd6\x9c\xfa\xeb\x72\xfc\x80\x23\xce\x92\x75\x48\x11\x9d\x5c\x39\x59\xc7\x98\x21\x17\xdd\xa8\xf2\x86\xb7\x7e\x3f\x79\x3a\xfb\x49\xce\xa7\x83\x68\xfb\x4e\xe0\x73\x16\x6c\x21\x9e\xf9\x9d\x8c\x35\x59\x88\xa0\xc5\xdc\x4e\x9e\xc9\x7e\xca\x51\x12\x6d\xdf\x4f\x94\x45\xdd\x20\x8c\x46\xda\x96\x4e\x80\x74\x16\x8e\x2f\xb9\xe5\x7e\xc2\x65\x76\xb2\xd7\x64\x5d\x8e\xef\x84\x7c\xf7\x53\x16\x0a\x77\xac\x7e\x56\xfb\x90\xfb\x6e\x1c\xa7\x13\x2e\xb3\x9f\x22\x4c\xa1\x54\xef\x58\x41\xb2\xe0\xc8\x92\x28\xa8\x9f\x61\x7b\xe0\x17\x1c\xc0\x30\x77\x32\x91\x64\x61\x7b\x9d\x35\xf8\x1c\x33\x40\xef\x07\x2e\x55\xfd\xfc\x5c\x83\xcf\x35\x48\x8e\xb7\x13\xaa\x90\x85\xf3\x9d\x8d\xba\xb0\xce\xef\x92\x34\xf4\xcb\x2b\x75\x49\x32\x89\x27\xee\x46\x6d\xf7\xeb\x87\xfe\x96\x52\x53\xbf\x50\x0a\xf7\xeb\x72\x2f\x93\xbd\xe9\x58\x1e\xb2\x70\x8f\x92\x84\x74\x2c\x0f\x59\x78\x0e\x18\xdf\xd5\xec\x17\x60\xd5\x03\x08\x9a\xae\x61\xa1\x6b\x58\x68\x44\x28\xf7\x6b\xd8\xc7\xf8\xe1\xfd\x30\xe6\x69\x1d\xda\xaa\xd6\xfd\x77\xf9\x2f\x99\x3b\x0e\xa0\x67\xbb\xd1\x09\xdd\xe8\x04\xd1\x7d\x3a\x89\x37\xb2\x78\xfc\x8e\x31\x6f\xe7\x26\xdb\xd7\xfd\x17\xe3\x4f\xbf\x94\xea\xf0\xfe\xef\x84\x2f\x64\xe1\xba\x5c\xac\x01\xf6\xde\x7e\x3d\x82\x06\x5d\xac\x15\x5e\xe9\xfd\x42\x11\xdb\x50\xb4\x77\x23\x1b\xfa\xf5\xda\x07\xe7\xea\xfa\xfc\xf7\xf3\x5f\xce\xd0\x2d\x29\x34\x71\x45\xc3\xcf\xa1\xdf\xee\xdb\x5d\xec\xd7\xef\x90\x90\xfa\xad\xe6\x02\x85\x7c\xc7\x6a\x91\x85\xfd\xa6\xc4\xd5\x35\x5e\xf4\xfb\xfc\xc1\xe9\x4c\xea\xd8\x23\x0d\x15\x0d\x25\x7d\xbf\x79\xfe\xfa\xad\xd6\xc3\x73\x7a\x13\x31\xde\x6f\xef\x0c\xf0\x78\xfd\xc6\xbf\xa7\x93\xe9\xa2\x34\x52\x85\xf4\xfb\xf6\x3b\x59\x99\xde\x6f\xea\x1c\xcb\xcd\x73\x80\xfb\x54\x27\x0d\x46\x16\xd3\x3a\xc6\x0c\x0b\xda\x6f\xd9\x1b\xfc\x17\xfa\x5d\x1d\x9f\x22\x06\x50\x7e\xfd\x96\xae\xdd\xf8\x16\x34\x22\x11\xfa\xdd\x6c\x4f\xb6\x14\x25\x7d\x27\xc9\x45\x16\xaf\x7d\x50\xd7\x5d\xab\x0e\x9d\x24\xbf\x56\x27\x6b\x45\x16\x9e\x8d\xc9\x98\x87\x7d\x0c\xc7\xdc\xe8\x63\x3a\x16\x71\xad\xc8\x59\xd1\xef\xe5\x7e\xa8\x81\x41\xf9\xde\xb1\xaa\x64\x41\x7b\xe4\x16\xe8\xf7\x67\xdd\x67\xbf\xdc\x19\x31\x0c\x7a\x3d\x1c\x1f\x77\xa6\xfa\xac\x55\xd9\x4d\xbc\xfa\x7b\x75\x2f\xab\x7b\x09\x7e\x65\xaf\xb0\x2d\x5d\xc3\x4c\xc3\x76\xdf\x2b\xc6\xdb\x5e\x05\x44\x44\x09\xde\x2b\x22\x5f\xaf\x8a\x7c\x23\x59\xe4\x5e\x6f\xfb\xb8\xbd\x1f\x33\xd7\xa5\x4a\xaf\xaa\x5a\xa8\xc1\x7e\xd4\x6a\x1f\xf5\x87\xb8\xc4\xbf\xcd\xb1\xb4\xff\x87\x06\xd7\x49\x2d\xf0\xa7\x57\xf1\xe6\x46\xe3\xdf\xee\x77\xff\x87\x1a\xc7\x7c\xbd\xbf\x46\x90\xb4\xd1\xf9\x77\x38\x96\xe1\x7c\x3b\x63\xc6\x58\xd8\xeb\x70\x9d\x39\x43\x15\x31\xb0\x13\x41\x72\x1e\x44\xef\x74\x0d\x29\x5d\x6c\x87\x86\x01\xbb\x57\xc4\xc0\x5e\x7d\x9e\xd1\x68\x77\x8d\x2b\xbd\x12\xeb\xde\xd0\x68\xf7\xea\x7b\x54\x9f\x1f\x2a\x12\xdf\xf9\x64\x57\x9f\x6c\x00\x76\xba\x51\x25\x9d\xa8\x92\xf3\x20\x1a\xa8\x63\xf1\xc8\x62\x5a\x97\xfb\xd1\x10\x09\x7a\xf3\x0e\xe2\xc1\xdf\x35\x40\x74\x0c\x10\xe7\xe1\xdd\x6f\xde\xa3\x76\xd9\x1e\x7b\xd9\x7c\x3f\x9a\x77\xa1\xff\x0b\xcf\xfc\x2e\x1c\x44\x6f\xa4\xfd\x3b\xb0\xcb\xf5\xe6\x71\xc7\x9e\x70\x1e\xe4\x3e\xea\x0d\xb7\xb7\xde\xfa\x0f\x21\x95\xee\x7c\x5e\xda\x70\x58\xb5\x52\xe7\x10\xdc\x1a\xec\xc2\x5d\x43\x40\x6f\x4a\x66\x9d\xad\x26\x52\x25\x8b\x6d\x1d\xdf\xa1\xf0\xe9\x06\xac\x34\x92\x43\xf7\x26\xc9\x04\x84\xfd\x3c\x24\x0d\x1a\x02\xfa\xcf\x10\x20\x69\xc0\x02\x90\xc5\xf6\x5f\xc6\x87\x52\xb8\x37\xdc\x25\xda\x74\x6e\x6e\x43\x13\xd1\x8a\x8c\x34\x5d\x25\x7d\x57\x49\xdf\x80\x3b\xe9\xdd\xeb\xd3\xc1\xf4\x3d\xc0\x6d\xeb\xdd\xeb\x83\x0e\x3e\xeb\xf8\xce\x6b\xd1\xbd\x16\x78\xf0\xf7\xee\x36\x88\x4b\x7e\x78\xbd\xd1\xb0\xff\xe9\x9d\x1c\x1e\x07\x98\x82\x5d\xa5\x7a\x57\xa9\xde\x00\x41\xe9\x1d\xee\xbb\xf7\xc1\x7c\xb1\xb7\xf5\x8e\xbb\x58\xef\x72\x8f\x28\xc1\x7b\xf7\xc9\xe9\xe1\x7c\x27\xff\xa2\x41\xe8\x5d\x0d\x02\x76\xb4\xde\x5d\x97\xfe\x5b\x17\x58\xb2\x2e\x59\xe9\x92\x15\x14\xe3\xdd\x20\x96\x8e\xce\xbc\xf4\xc3\x31\xcb\x02\x74\x95\xae\x92\x90\xe1\x1a\x0c\x41\x5e\x41\x1d\xed\xc3\xeb\x3d\xd4\xe8\x60\x1f\xeb\xc3\x73\x35\x3c\x57\x24\x60\xef\xc3\xe7\x79\xb4\xfd\x0f\xd6\x5a\x37\x98\xa4\x8f\xf1\xfe\x83\x89\xda\x87\xf3\x1d\xcb\x7e\x21\xb7\x46\x81\xf4\x11\xfe\x7b\xe5\x7e\x8c\x6d\xdd\x8e\x7f\x30\x4b\xfb\xf0\x3a\x0e\x60\x93\x0f\xc9\xc5\x90\x6d\xf9\x29\x8f\xb1\x7b\x75\x30\x7c\xb3\x38\xad\xcb\x3e\xa6\xcf\x1a\xf8\xb3\x3f\x74\xc7\x0e\xd6\x6a\x16\x00\x0d\x62\xbf\xeb\x53\xd6\x63\xfa\x0c\x49\x06\x8c\xda\xe8\x46\x6d\x74\xbc\xf0\xbb\x8a\xe7\x3e\x95\xbc\x07\x67\x08\x74\xd2\x2c\x5c\xbf\x94\xfe\x3a\x5a\xe8\x2c\x5c\x03\xee\xc7\x94\x9c\xa1\x57\x3e\x0f\x80\x84\xfa\xf4\x6c\x88\xfd\xd8\xf1\x9a\xef\x00\x18\x66\x61\x7b\x9d\xb1\xb8\x56\xa0\xf7\xe5\xbf\xcc\x2d\xfc\x77\x3b\x0f\x9e\xbf\x29\x8b\x32\x7f\xeb\xc7\xb3\x41\x68\x46\x16\x60\xf5\xa1\xf0\xee\x46\x59\x74\x20\xe1\xce\x03\x7f\x97\x0e\xf0\x5b\x16\xf6\xcb\x19\x02\xd8\x2d\x0b\xfb\x2d\x59\x07\x4a\x59\x16\xac\x33\x7e\x27\xdd\xc8\x8b\x6e\xe4\x45\x47\xb9\xdd\x8d\xb2\xe8\x46\x59\xf4\x52\xb2\xdf\x25\x2b\xb8\x2e\x61\xd8\xe8\x77\x11\x2c\xd9\x97\x48\xb9\xc5\x3e\x64\x1f\x8c\xc6\xe8\x78\xd2\x77\x34\xd8\x59\xbc\xd6\xe5\x7e\x2c\x59\xe4\x05\x8b\xdc\x0b\x34\x6c\x75\xc7\xd2\x1d\x0b\xa4\x75\xf9\x8c\xaf\xe1\x7c\x61\x8d\x16\x5a\xc6\xbe\x7c\xc6\x89\x38\xea\x6b\xfa\x1d\x3e\x17\x1d\xa3\x4e\x5f\xd2\xba\x25\xad\x03\x88\xb7\xaf\x65\x1f\xcb\x3e\x78\x3a\x17\x92\x72\x5f\x42\x41\x16\xbf\x0b\xeb\x02\xba\x8b\xe1\xad\x2f\xb4\x23\x7d\xa1\x1d\xe9\x40\xb8\xf4\xe5\xb9\x5f\xee\x1b\x1e\xf7\x1d\xed\xf7\x9f\xbe\x5e\xd7\xc0\x7f\x3f\xfb\xfd\xec\x17\xd6\x23\x64\xc3\x43\x36\x1c\x0c\xec\x1e\x8a\x36\x71\xba\xa6\xb0\xf5\x81\x01\xb1\xc7\x6d\x1d\x62\x42\xe0\xcb\xd3\xa3\xba\x7e\xb0\x1e\x46\x5e\xf4\x68\xce\xd7\x3a\xcf\x69\x48\xc3\xa4\x4d\x81\xa7\x7a\x0f\xc1\x44\x0b\xac\x02\xa1\x0f\x59\x70\x26\xcf\xc3\xba\x66\x1d\x7b\x8e\xd2\xba\x87\xf3\x8d\xed\xb9\x9a\xb9\x56\x46\x13\x74\xa2\x09\xce\x72\x70\x36\xb6\xf7\x77\x9f\xe2\xc3\xb2\xe7\x6a\xaa\x3b\x9a\xea\xfc\xae\x53\xf7\x58\x27\xcc\x23\x74\x72\x63\xf8\xe8\xdb\xf9\xa2\xbd\xee\x6a\xaa\xbb\x9a\xea\x22\x6d\xda\xd3\xf6\x10\x13\x3a\x46\x8e\xbe\x65\x1f\x76\x08\xbb\xc7\xfe\x6e\x59\x05\xd0\x71\xce\x42\x24\x51\x57\x3b\xdc\xd5\x0e\x17\x7c\x1f\xba\x5a\xdf\xae\xd6\xb7\x80\xbd\xd8\xd5\xfa\x76\xb5\xbe\x05\xc3\x5b\xdf\xbe\x65\x42\xea\xa4\x50\x98\x75\x9f\xfd\x26\x47\x98\xdf\xfd\xdd\x33\xbf\x6f\x62\x9c\xfb\xfe\x1c\x02\xc7\xe9\xc1\x6e\xdd\x1f\x41\xff\x88\x21\xee\xcf\xb1\xac\x73\x29\x5b\x0e\xff\x51\x62\x78\x8a\x75\x3c\xc5\x8f\x12\xc3\x03\xb7\xd2\x4f\x8e\x93\x0a\xe5\xfe\x48\x46\x81\x15\xed\x8f\xd2\xc1\x73\x39\x7c\x9e\xba\x47\xe9\xe0\xb9\x1c\x3e\x64\x0f\xed\x72\x16\xe2\x17\x43\x5a\x89\x96\xc8\x42\xa8\x56\xc8\x14\xf9\x21\xb2\x70\x1e\x1c\xed\xc7\xed\x7a\x7e\xdb\x05\x57\xf8\x78\xe5\x1f\xaf\x3c\xde\xfa\xfd\xe9\xd6\xa1\xc0\xec\xc4\x01\xf7\x47\x4e\xf1\x91\xb4\xa2\x18\xef\xcf\xb2\x8f\x24\xad\x67\x39\x1c\xb3\x4f\xd3\xb3\x7e\x40\xdd\xb9\x0d\x8f\xdb\xff\x00\x29\xd1\x51\x82\xf7\x27\x5c\x53\xb0\x59\x3b\x46\x8e\xfe\x48\x96\x1f\x02\x19\x3b\xc0\xb2\xfd\x91\x2c\x3f\x61\xbf\x1c\xb1\xc7\xe3\xfe\xec\xdf\x77\xac\x81\x6c\xd0\xb3\x3d\x12\x48\x25\x06\x75\x74\x83\x3a\x3a\x71\xc5\xfd\x79\xdd\x0f\x94\x68\x1d\x65\x79\x27\x9a\x23\x8b\x69\x5d\xb6\x27\xb4\x52\x7f\x0f\xaf\x05\x57\xea\xc5\xe5\xa6\xbf\x42\x3c\x5e\x1c\xc5\x17\x6f\xd0\xfe\x92\x1a\xa6\x14\xd6\xea\xf5\x1c\x80\xba\x74\x9a\xc0\xac\xbf\xd8\xc1\xfb\x2b\xc6\x3c\x0a\xf4\xfe\xba\xe7\xef\x69\x1d\x4f\xe7\x8b\x0b\x68\x7f\xc1\x2c\x34\xdf\x59\x7f\xbd\x8e\x2a\xb2\x3b\x60\xe1\xdd\xe8\x8e\x4e\x74\xc7\x69\x6a\xb3\xfe\xca\x56\xbd\x42\x94\xa3\x68\xef\x6f\xf5\xbb\xea\x3a\xc3\xba\xbd\x3e\xb1\x2f\x89\x23\x4c\x41\xd6\x5f\x25\xc2\xb7\x2e\xeb\x98\x6f\xb3\xae\xb9\xce\x9c\x21\xb0\x97\xb2\x78\xf9\x0e\x89\xeb\x55\xd3\xf5\x0e\xe7\xcb\x7e\xbc\xd8\x76\x3b\x7a\xef\xd2\x2f\x24\x86\x4f\x2d\xc5\x47\x82\xe2\x52\x60\x7d\x3f\xa5\xd8\xef\x37\x0f\x9e\x17\x21\x89\xfa\x77\xdb\x07\xda\xaf\xcf\x79\x7c\xbf\x79\xc0\xe2\x7d\xb2\x8c\x5f\x73\xed\x21\x03\x1f\xd1\x2c\xfd\xfb\x8d\x99\x73\xa0\xb2\xb7\x7f\xbf\x31\x73\xa7\x55\xf6\x76\x95\xbd\x05\x04\xd3\xfe\xf9\x34\x7d\xd3\x79\x54\xfa\x50\x13\xf7\x11\x84\xdb\x51\xf0\x77\x31\xd8\xba\x18\x6c\x1d\xc5\x7d\xff\x64\xab\xbe\x47\xe0\x78\xd6\x4f\x85\x6d\x57\x61\xdb\x81\xd9\xe9\x9f\xec\xf5\x87\x94\x53\x08\xe8\xea\x9f\x6c\x24\x81\x06\x67\x01\x3f\x78\x1c\xe0\x61\x0c\xe0\xd9\xf2\xdf\x41\x5d\xb5\x8e\x7b\x0e\xf4\xce\x00\xd8\x31\x0b\xc7\xdc\xf9\x0e\xd6\x6d\xa0\xcb\x3d\x0b\x81\x5f\xe3\x28\x7e\x67\xfa\x04\x94\xfe\x43\xef\xff\xa1\xf7\xbf\x28\xd5\xe3\xc0\x78\x31\xcc\xfe\xdf\x49\x91\x31\xc8\xf8\x9f\x05\xb4\xa4\xa4\xb4\x36\xd0\xe8\x66\x21\x52\x73\xa5\x0e\x49\x7e\x1c\xe3\x87\x7a\x3d\xa9\x0b\xeb\xf6\x3f\xd0\xf4\x43\xac\xb7\x01\x0e\x69\xd6\xf1\x1d\x2c\xc0\x38\x64\x01\xf0\xd6\x1f\x00\x8d\x66\xe1\x77\xc9\x96\x8e\x03\x43\xd4\x20\x03\x7f\xd6\xf1\xef\xe3\xf8\xc0\x0d\x2d\xd8\x76\x07\x49\xf5\xb3\xe0\x1c\x90\x86\x77\x90\x36\x3f\x0b\xf7\x28\xcf\xd0\x28\xae\x69\x91\xb6\x93\xde\x76\x14\xfc\x58\x06\x28\x3f\x67\x01\x5f\x63\xe8\xd5\x3f\xf4\xea\xef\x60\x99\x0f\x12\xcf\x67\xc1\x1e\x01\xa9\x33\xd4\x0e\x0f\xb5\xc3\xe5\x3c\x2b\x75\xb7\x75\xd5\xef\x72\x6e\xa5\xd9\x6f\x13\x4e\xb7\xd0\x6f\xb7\xbd\xfe\x6b\x8f\xf1\x75\xc7\xd2\x1d\x0b\x7b\x0e\x86\x4f\x16\xcb\xef\x26\x75\xec\x65\xc1\xad\xbb\x13\x5c\x3b\x70\xc9\xcf\xe2\xf6\xdf\x5c\x83\x82\x21\x6a\x14\x0c\x51\xbd\x72\xae\x4a\xd8\x1e\xd9\xc1\xca\x79\xf3\x2f\x74\x77\x90\xbb\xbd\x74\xb4\xd2\xa3\xf0\x14\x8f\xe2\x53\x4c\x40\xdc\x40\xa5\x9c\xc5\x10\x16\x98\x3a\x8c\x0d\x43\x78\x9f\x4e\xee\xc8\x01\xae\x4f\x16\xa2\xd1\x73\xae\x4e\x58\xdf\x01\xda\xe6\x59\xce\x5f\x5d\xb7\xce\xf6\x92\xfd\x1f\x7a\xe1\x0f\xb4\xcd\xa5\x93\xd3\x71\x9c\x68\x50\xc7\x59\x6c\x8f\x73\x05\x04\x60\x16\x9f\x75\x7f\xf7\xcc\x1f\xc0\x03\x65\xf1\x6b\x26\x97\x52\xa5\xf5\x38\xe5\xaa\x89\xe5\x1d\x42\x6f\x0e\xa0\x37\xcf\x72\x36\x86\xd5\xec\xce\x4c\x00\x28\x8a\xc7\xd9\x9d\x12\xb0\xff\x9d\x84\xec\xe3\x84\xdb\x1b\xa7\x12\x1c\x09\xf5\xc6\x89\x92\x65\x9c\xd3\x2d\x9c\x4c\xdd\x6b\x01\xa2\xcf\x59\x70\x97\x18\xe7\x72\x2c\xa2\xb0\xd7\x69\x9d\x4b\x84\xdd\xb0\xe0\x42\x31\xce\xe5\xf8\x96\xe3\x73\x2c\xcb\x65\x93\x83\xc6\x83\x7f\x9c\xe1\xbf\x92\x2e\xf2\xb7\x0d\x72\x8e\x67\xf1\x58\xc7\x1a\x3c\x8e\x45\x29\x07\x6f\xfd\x81\xab\x7d\x16\xd5\xba\x4a\x9d\x6b\xf0\xd8\x07\x47\xf1\x7c\x1d\xb3\x92\x0f\x09\x0e\xc6\xe9\x91\x30\xd3\x77\x39\x9d\xef\xe7\x1a\x48\xf6\x60\x3d\x06\x9a\xf3\x2c\x44\x78\xce\xa7\x64\x5c\x1e\x13\x72\x7b\x67\x5d\xae\xbd\x0a\xf4\x81\x02\xfd\x2c\xb0\x28\x83\x8c\xdb\x59\x54\xeb\x72\xed\x2f\x9e\xd3\x71\xf9\x9c\x12\x64\x38\x2e\x60\x21\xc6\x65\x9a\x12\x52\xc1\x8f\x0b\xa3\xc4\xb8\x2e\xd7\x85\x2b\x70\x61\x1b\x1a\xc2\x00\x75\xbc\xfa\x87\x30\x40\xe3\x92\xc3\x07\xba\x73\xe0\x7e\x9f\x85\xdf\x55\xfa\x9d\xf6\x3b\xed\x97\xab\x7c\xa1\xd1\x19\xd7\x0c\xeb\xf8\x17\x57\x9f\x61\x4e\xec\x02\x7b\x33\x2e\x49\x21\x4a\xf5\xd2\x51\x9c\x8e\x0b\xc9\x67\x5c\xfb\xf7\x1d\x63\xd9\x7e\xb7\xed\xb7\xd1\xc7\x63\x7b\xa4\x94\x2e\xb0\x37\x43\x28\x9f\x71\x7d\x8e\x19\x32\x2a\x6c\xcf\x10\xb6\xa7\x13\x6c\x3a\x48\xe1\x9c\x45\xf7\xdf\x41\xdd\xb6\xce\xfd\x18\xfc\x0b\x5b\x30\x50\x00\x9f\x85\x00\xc5\x71\xa3\xb9\x18\xb7\x9a\x0b\x14\x9d\x43\x05\xf0\x20\x9d\xf1\x59\x80\x0f\x1f\x77\xf8\x6f\xf8\x6f\xb2\x23\x43\x88\x9e\x21\x44\x4f\x27\x91\xfb\xc0\xd5\xfe\xcf\xb8\x25\x3f\xe4\x6a\x18\xf7\xb6\xee\x71\x0d\xb8\x83\x15\xef\xe6\x51\x41\xc1\xeb\x78\xdc\x8f\xea\x53\x67\xee\xdb\x4e\xf0\xe5\x40\x7b\x9b\xc5\x63\x5d\xae\x95\xca\xd9\xa1\x72\xb6\x90\x07\x69\xe0\x2e\x9f\xc5\xb0\x8e\xf6\x50\x78\x0f\x73\xc2\x76\x34\x80\x43\x38\x9e\x81\x4e\xf5\x34\x9b\xde\xd0\x53\x7d\x98\x2a\xb5\x00\x87\x32\xea\xf2\x5f\x9f\x35\x34\x7b\x43\x4f\xf5\xa1\xa7\x7a\x07\x2e\x68\x54\x22\x07\x46\x15\x58\xbf\x3b\xb7\xc7\x31\x3f\x8e\x19\x3a\x54\x7d\xc2\xaa\x4f\x18\x9a\xbd\x81\x9b\x79\x16\xf6\xd1\x99\x87\xe4\xb6\xe2\x5f\x21\xf6\xfb\xd0\x8b\x7c\xe8\x45\x6e\xae\x9e\xd1\x7c\xea\x5a\xf9\xd5\xe5\xbf\x0d\xa3\xd3\x68\xa7\x73\x3b\x73\x6e\xcd\x27\xac\xf9\x84\xa1\xd9\x1b\x64\xe9\xcc\xc2\x7d\xe3\xfe\x36\x8c\x08\x43\xcf\xed\x0e\x5c\xd0\x68\x9e\x0d\x1c\xb3\x4f\x33\xf2\x8d\x86\xd1\x69\xa0\x34\x3d\x0b\x59\x7b\x46\xc3\x5e\x3e\x1a\xf6\xf2\x4e\x56\xe8\xd1\x5c\xab\x86\xff\x51\x21\x1d\xd9\x00\x5d\x35\x8b\x66\x1d\xfd\x62\xa0\x1b\x20\xf0\x9c\x85\xc0\xc3\x01\xe6\x4e\x16\xb0\x32\x78\xdc\x0f\x61\x76\x46\x3f\xec\x17\xb6\x05\x5f\xe1\x2c\xfc\x97\xfd\xe8\xd2\x88\x7e\xb9\x97\xad\x52\xb7\xac\xf3\x5f\xf6\xa8\xa3\x59\x19\x9d\x1c\xaa\x05\x3f\x82\x41\x9e\xc3\x2c\xfc\x97\xfb\xd6\xb7\xff\x6e\xff\xe5\x0d\xe8\xb2\x28\x28\x20\xb3\x2e\xfb\xc5\x27\x36\x0b\xc7\xcc\xdd\x12\x9e\x66\x08\x4f\x23\xe6\xfc\x18\xb2\x19\xc3\x8c\x3f\x64\xf7\x1a\xc2\xd3\x8c\x21\x5c\x2e\xc6\x81\x31\xd0\xa0\x8e\x21\x9b\x86\xe7\xfb\x00\xab\x26\x0b\xf3\x72\x75\xbe\x83\xf5\x1d\xc3\x84\x25\x68\xfb\xc6\xd8\x7e\x67\x56\x0a\x14\xfc\x43\xed\xe1\x18\xbe\x01\x44\xa8\x0d\x71\x65\x86\xb8\x32\x1d\x2d\xde\x18\xd2\xfb\xf1\xf9\x1d\x67\x03\x55\x62\x16\x8c\x0f\x88\x9e\x41\x3a\xaf\x2c\xa6\x75\xd9\x07\x79\xab\xfe\x0c\x32\x56\x9d\x85\xfc\x36\x83\x1c\x32\x59\x30\x3e\x72\xb3\x0e\xb2\xc7\x64\xc1\xbe\xd5\xfb\xef\xae\x7a\x03\x4c\x96\x2c\x86\xbf\xe4\xf0\xa7\xe4\xd6\xa4\x25\x1d\xc5\xfd\x00\x93\x25\x0b\x48\xa1\xdc\x0a\x99\x29\xb2\xf8\xd5\xf1\x9d\x53\x9f\x2a\x22\x88\x19\x1c\xe4\x5b\xc8\xa2\x58\x97\xff\x2e\x8f\xe2\x2f\xef\xc0\x84\xb4\x2e\x24\xc7\xb1\xca\xef\x3b\xeb\x6e\xeb\x38\x3a\x00\x0f\x8e\xe5\x15\x5d\x92\x33\x14\x6b\x63\x79\x14\x97\x89\xb2\x08\xc0\x1a\xcb\x2b\xba\xbc\xa2\xc0\xec\x8c\x55\xfd\x57\x72\x46\xf0\xe0\x40\xbb\x97\x85\x63\x69\x8d\xba\xb0\x8e\x2b\x4a\x40\xe1\x58\x18\x39\xc6\x32\xeb\xd1\x74\x2c\x92\xf4\xa5\x74\x30\x21\x49\x0b\x05\xf5\xc0\x91\xb5\xf4\x09\x3b\x82\xeb\x6a\x16\x66\x9f\x81\xac\x2c\xaf\xf7\x92\x95\x21\xad\xfc\x50\xa1\x37\x84\x6b\xe9\x28\xae\x06\xae\xab\x59\x98\xfe\xe1\xb0\xce\xb1\xbc\x1e\x09\x8e\xd3\x7a\x9d\x1b\x6c\x46\xca\x3c\xd4\xb9\x2e\xb8\x9a\x8d\x83\x67\x43\xb8\x96\xb1\xf0\x73\x18\x28\xc2\xc6\xfa\x5c\x03\xd9\x11\x6c\xed\x63\x7d\xb6\x47\x9c\xe8\xc0\x8b\x7c\x84\x52\x58\x98\x92\xef\x48\x69\x77\x84\xfb\x11\xc5\x7e\x79\x5e\x02\x85\xed\x88\x62\xbf\x29\xd9\x8e\x40\xcb\x33\xd0\x1d\x66\x1d\xed\x11\x61\x30\xd0\x13\x96\x81\xe2\x6a\x04\x4a\xf0\x01\xe2\xcb\x59\x40\x4d\x1c\x21\x19\x8d\x8a\xa4\x8c\x6f\xc6\x08\xa5\x35\x50\x5b\xca\x40\x33\x35\x42\x36\x23\x50\xb0\x0e\x82\x5d\xc6\x96\x55\xdd\xcd\xb1\x70\xbd\x37\x4a\xdc\xb1\xbb\x59\xbc\x20\x49\x1b\xcf\xf7\xb1\xa7\xfd\x32\x96\x0d\xf0\xea\xd8\xd3\xb5\x62\x2f\xb7\x7b\xb9\x97\x6b\x00\xab\xb0\x65\x41\x85\x02\x19\x78\x82\x8f\x2d\xa9\xde\xa2\x95\xa3\x18\x1f\x68\xfc\xb2\xb8\xad\x63\x2c\xde\x2d\x21\x43\x06\xde\xe1\x63\xcb\x16\x6c\xd9\x02\xd9\x2a\x5d\x4a\x07\x0a\xc2\xfc\x6e\x50\x67\x1f\xa6\xc3\x41\xdb\x32\xf6\x76\x2c\xfb\x97\x8b\x2d\xd7\x6f\xa3\x90\x1f\xfb\xf5\x3b\x24\xb8\xed\xbd\xdc\xde\xcb\xc6\xfd\xdd\x9f\x7d\xe0\xaf\x31\xd0\x66\x0c\xb5\x7d\xe3\x81\xdd\x1c\x68\x33\xc6\xa3\x54\xa2\x06\x70\xe0\x1d\x3e\x1e\xd0\x29\xc7\x53\x38\x93\xb2\x69\x8f\x77\xe6\xc1\x0e\x5e\x40\x7a\x1c\xa8\xd1\xb2\x70\x2c\x9c\x03\x54\x57\x59\x6c\x93\xe3\xe5\x3a\x3f\x4a\xb1\x8f\xf4\x05\xdf\x91\xa1\xeb\xe4\x00\x5a\xe4\x2c\xf8\x89\x0c\x54\x52\x59\x4c\xeb\x06\x75\x8c\x05\x65\x54\x19\x85\xb1\xa0\x06\xca\x62\x59\x97\x6b\x8a\xef\xe2\x9f\xf1\x36\xbf\x83\x7d\x00\x0c\x24\x0b\xce\x41\x87\x2c\x0b\xa0\x3d\xde\x59\xac\xe3\x5f\xcf\xcb\xeb\x79\x91\x4d\xd3\x5d\x71\xbc\x9e\x03\x94\xe0\x43\xc0\xeb\xf1\xee\xe7\x9f\x34\x96\xe3\x95\xd5\x07\x2a\xe3\x2c\x9d\x75\x16\x23\x63\x7c\x6a\x2e\xf0\xf5\x18\x9f\x4f\x84\x2e\x87\x03\x25\xf8\xf8\x64\xf5\x3f\xa4\xba\x41\x8e\xb5\xa1\x7b\xe1\x10\x23\xc3\x94\x5a\xe3\x93\x6d\xf9\x4e\x93\x69\x21\x8d\x7f\xb2\xf5\x9f\xa9\x06\x49\xc7\x3e\xd4\x42\x8d\xcf\x84\x81\x40\xd1\x8c\x0f\x6d\xda\x40\x0b\x95\x75\xf4\x8b\x16\x6a\xa0\x85\x2a\xe3\x84\x35\xd7\x35\x71\x7c\xd2\x53\x02\x37\xc7\xe7\xfa\x7d\xbf\xf5\x83\x45\xf9\xa6\x63\x46\xfb\x35\x70\xff\x1e\xa2\xf9\x8f\xcf\xa4\x55\x4a\xe3\x22\xf7\x0f\x91\xfb\x4b\x47\xc4\xf8\xd4\x70\x00\x46\x9d\x75\xcc\x4d\xb6\x0f\x6f\xbf\xb3\x90\xf4\x6b\x7c\x9e\x8d\x4f\x5a\x77\xde\xd7\x7f\xfe\x4c\xb5\x46\xf3\x30\x6b\x28\xee\xdf\x53\xad\xd1\x54\x6b\x34\xf0\xfe\x9f\x07\xe7\x65\x8a\xf0\x3f\x70\xff\x9e\x62\x5a\x4c\x31\x2d\x06\xa0\xee\x53\x40\xe9\x29\xa0\xf4\x40\xcb\x3d\x01\xb8\xf8\x33\xcd\xfb\x31\x10\x85\xe7\x81\xa6\x7a\x92\xee\xa3\x0c\xb4\xdc\x53\x4c\x8b\x79\xdc\xd6\xe5\xd9\x98\x07\x2c\xf7\x3c\x6e\xc7\x3c\x18\xcb\x6d\x7b\xbf\x75\x4e\x96\x62\xea\x4a\x38\x75\x25\x1c\x60\xcd\xcc\x03\x3a\x39\x8f\xea\xf8\xfe\x05\x88\xee\x3c\xf0\x10\x9d\x47\xb5\xe9\x49\x77\xcd\xa6\x9b\x4d\x4f\x86\xdf\x1c\x82\xf8\xf3\xd7\xc1\x50\xf1\xb4\x9e\x07\x01\x08\x03\x85\xf7\xd4\x9b\x71\xea\xcd\x68\x6a\xae\x69\xa2\x92\x29\x5c\xc6\xc0\xeb\x7b\xa2\x01\xcb\xc2\x7f\x0b\x7d\x0c\xff\x25\x4d\x73\x21\x06\x76\x1e\xd3\xef\x64\x47\xe0\xc8\xa7\xd9\x79\x26\x08\x19\x25\x85\x59\xea\xec\xc3\xe4\x67\x78\xcd\x4f\x30\x31\xb2\x78\xfd\x97\xf1\x6d\x97\x68\x7b\x4c\x5c\xb6\xc7\x7e\x65\x51\xe0\xdc\xe7\xf1\xba\x0d\x6f\x58\xc7\x76\x7d\xfe\xeb\x93\x08\xec\xc7\x54\x11\x36\x7f\x8a\x30\xec\xf4\xb3\xc0\xa1\xce\x42\xd0\x5d\x81\x4b\x9f\x05\x77\x98\x49\xbe\x86\xac\xcb\xf6\xf4\xac\x9c\x62\x55\x0f\xbc\xe6\x67\xa9\xb6\xa7\xe2\x79\x14\xda\xe3\xfa\xcc\x22\xb7\x8c\x3d\x7f\x92\xb9\x25\x0b\x33\xd4\x26\x7b\x33\x8b\xfb\x51\x7e\xfb\xd1\x72\x9d\x85\x8a\x98\x42\x45\x0c\x30\xdf\x67\xc1\x6e\x38\xcb\x72\x2f\x3b\xdf\x61\x6c\x98\x05\x63\x83\xe9\xde\x66\x41\x8a\x98\x45\x29\x02\xd8\x8f\x29\xa6\xf5\x2c\x26\xc8\x40\x69\x3d\xcb\x63\xbf\x8f\xfd\xb2\xce\xe2\x5c\xcf\xf2\x78\x0e\x58\xe7\xf2\xda\xc7\x6b\x7b\xc9\xb5\x4e\xa1\x22\xa6\x50\x11\x03\x7c\xf7\x29\x16\xc4\x3c\x65\xf1\x88\xb3\x9d\xa8\x9a\xb2\xe0\x1c\xe0\x1f\x30\x4f\x24\x8b\x79\x9a\xca\x14\x68\x9b\x79\x7a\x55\xc0\x78\x38\x0b\x31\xb5\xd3\xd4\x31\x93\x7c\x31\x65\x80\x0d\x3f\x4f\xd7\xea\xec\xb6\x57\xe9\x17\x8d\xd3\x3c\xd5\x3e\x0c\xd6\xef\xe4\x29\x9e\xa7\x69\xf0\xc8\x2a\x36\xd5\xca\xcc\x53\x52\x8d\x74\x30\xd5\xca\x4c\xb4\x32\x59\x97\xe3\xbb\x50\xb6\xcd\x0b\xc3\xd6\x40\xa1\x3c\xaf\xf3\x57\x67\x2e\xd6\x24\x67\xf3\xf2\xca\x5f\xf7\xff\x4b\x6b\x38\x2f\xef\xe5\x85\xe7\xb6\xc9\x90\xe6\xe5\x3c\xae\xdf\x39\x48\xf6\x61\xea\xae\x38\x75\x57\x2c\x64\x4a\x9b\x6a\x4c\xa6\x49\x93\x0a\x49\xd6\xe6\xb5\x6c\x0f\xa3\xd3\x40\xc9\x3c\x2f\xd8\x82\x09\x2e\xf2\x69\x52\xa1\x89\xaa\x24\x8b\x6d\x1d\xe3\x83\xad\x9f\xba\x17\x16\x7c\x01\xe6\xe5\xfe\x5e\xde\x99\xc9\x9d\xbe\x90\x30\xe7\xa5\x84\x09\x56\xc5\xbc\x25\xa3\xb7\x2c\x00\xb6\xfb\x79\xa3\x91\x98\x77\xb9\xad\xcb\x7e\x6f\xb4\x46\xf3\xae\xae\x15\xe7\xea\x86\x0d\x9f\x37\x09\xf2\x0b\x58\x10\x13\x95\x4a\x16\x61\x1d\x7d\xc0\x72\xcf\xbb\xb3\xe7\xf8\xfc\x4c\x82\xe6\xb3\x80\xe6\xdc\xac\x55\x75\x5d\xaa\x9a\xa4\x09\xe9\x17\xd0\x77\x1a\x3b\x3f\x48\x29\x36\x05\xf4\x9d\xc4\xce\xe7\x77\xb9\xa6\x15\x56\x6b\xe2\xbd\x95\xc7\xea\xa4\xee\xb1\xee\xf5\xbb\x5c\x17\xe3\xdf\x67\xd5\xc8\x86\x1f\xd0\xd4\xbd\x6b\xd6\xe7\x97\xe4\x93\x3e\x5e\xc7\xf7\x9a\x9f\x11\x3a\x69\xdc\xf8\x6c\x4a\xd9\xe0\x39\xcc\xe6\x19\x6f\x9e\x71\x3c\xb2\x67\xc3\xae\x3e\xc1\xff\xfd\x65\xb9\x9d\x6a\x1a\xa6\x5a\x85\x01\xfe\xfc\x6c\xae\x1f\x21\xe0\x65\x20\x25\xce\x86\xa1\x62\x1a\xbf\x6d\xe6\xda\xd9\x86\x75\xbf\x24\xa4\x37\xed\xe1\x3b\x32\x89\xd3\xce\xba\x9b\xba\xc7\xba\xd7\x3a\xfa\xc0\x26\x3f\x1b\x36\xf9\x81\x57\xfa\x24\x5a\x3b\x0b\x93\xbe\x71\x07\xdb\x74\x7c\x3e\xf7\xb5\xd2\xc7\x72\xbe\x26\xf4\x01\x61\x72\x36\xd8\xe1\x49\x70\xf7\x59\xe6\xe4\xbb\xb0\x3d\x95\xef\xf8\x1f\x4d\x81\x89\x27\x01\xdf\x79\x7d\x99\xdb\x76\x2c\xd8\xfd\x07\x62\xe5\x6c\xee\x07\xbe\x5f\x59\xc7\xf8\x1e\xe7\xfb\xdb\x0f\xe8\x9f\xbe\x5f\xb3\xfd\xb2\x21\x72\x7f\x89\xfe\xce\xc2\xfd\xe5\x1e\xb5\xd7\x35\x7d\x4d\xd5\xd8\x59\xbf\xd7\xf1\xfd\x5f\x4e\x42\xbf\x73\xdf\x3e\xf7\x8d\xa7\xbd\x21\x3e\x4d\x62\xc1\x7f\x39\x39\xa7\x01\xdf\xd3\x80\xef\xf3\xe0\x5c\x75\xb4\x50\xb3\x9b\x4e\x0f\x6d\xf8\xd4\xbf\x6c\x76\xf3\xb2\x1f\xdc\xd5\x8e\xe6\x71\xf6\xe3\xb3\xee\xef\xca\xfc\xd9\xab\xcd\x10\x5b\x78\x02\x8a\x3a\x3b\x4a\x91\xd9\xb1\x6f\x0f\x3c\xe4\x67\xc7\x2d\x6f\x76\xdc\xf2\x4e\x72\xe6\xce\x3e\x1c\xea\x70\xa8\xc9\x9d\x4d\x82\xaf\xb3\xf8\x7d\x37\xa9\xb3\x8f\x70\xa8\x1c\xa7\xbe\x1d\x2a\xd7\xe2\x24\x15\xc7\xec\x2e\x6f\x37\xf7\x3c\x31\xbf\x13\x50\xe4\x2c\x6c\x8f\x63\xa2\x5b\xd9\x04\x1b\x39\xeb\x98\xfa\xe7\x98\x71\x5b\x38\x81\x3a\x98\x43\xce\x6e\xc8\xd9\xe1\x5d\x3f\xc5\x46\x9e\x62\x23\x0f\xbc\xeb\xe7\x20\xe6\x77\x8e\xdf\xb2\x71\x74\x86\xcf\x90\xb1\xda\x83\xb4\x89\x93\x20\xed\x2c\xcc\xc8\xcd\x93\x83\xd6\x29\x8b\xdb\x7f\x73\xfb\x8d\xc1\x9e\xc6\x60\x0f\x24\xb3\x39\x6e\xff\xbd\xc9\x17\x08\xe8\xe8\x54\x49\x35\x87\xcf\x3d\x5e\xc6\x53\x25\xd5\x1c\xe6\xcb\x43\x9a\x9c\x43\x72\x36\xba\x6b\x30\x18\x73\xb7\xdf\x6e\xbf\x29\xd1\xcc\xe1\x91\x1d\x1e\x59\x20\x6b\xe6\x90\xac\x0c\xc9\x4a\xe3\x68\x0f\xb4\x00\x93\x30\xe9\xf3\x24\x15\xc7\x1c\xb2\x37\xe0\x18\x67\x9d\xdf\xb9\x2e\xb8\xef\x8d\x96\x92\xcf\xd4\xed\x6d\x8e\xcf\x31\xf7\xec\x97\x14\xf9\x59\x70\xdc\x51\x8c\x4f\x41\x8d\xe7\x34\xc3\x3f\x12\xe6\x24\xa3\x7b\x16\xf6\xcb\xb9\x9a\xb2\x41\x24\x50\xcf\xba\x4a\xdd\xb6\xee\xb1\x2e\xe7\x31\x25\x71\x26\xff\x1e\xe4\x93\x9e\xd3\x27\xc2\x7c\xde\x03\x0c\xfe\xa9\xb6\x6a\xaa\xad\x3a\x71\xc7\x9a\xd3\xa7\xce\x74\xb9\xa3\x1f\xf4\x21\x59\xf9\x25\xbd\x45\x5a\x9b\x64\x7f\xcd\x82\x73\x8a\xd4\x39\x05\x17\x9e\xba\xae\x0d\x94\xea\x73\xba\xce\x28\xb2\xce\xb3\x70\x9e\x41\x06\xce\xc2\xf5\xe3\xec\xaa\xc1\x9a\xcb\xab\x4c\xac\xf1\x5c\xc0\x8d\xcc\x05\xfa\xd9\xe8\xb0\xaa\xba\xa4\x4d\x5d\xd2\x06\xca\xf7\xb9\x94\x04\x96\x39\x17\x71\xb3\x9a\xf8\x9d\x65\xc1\x39\x25\x5e\x78\x2e\xdc\xfc\xe6\x22\xc8\x6b\xe0\xad\x3f\x05\x03\x9e\x82\x01\x0f\xbc\xf5\x27\xea\xa2\x3f\x73\x99\xef\xac\xa4\x54\x3c\x17\x2e\xaf\x73\x3d\xae\xc1\x4d\x1f\x3e\xed\x80\xfc\xe6\x77\xb9\xa6\xba\x7c\xcd\xf5\x9b\xdb\xcc\xef\xc2\x7b\x14\x07\x39\xca\x00\x31\x9d\x81\x7f\xcf\x04\xc3\x37\xeb\xf2\xbc\x04\xca\xca\x89\xb2\xe7\x3c\x91\x30\x67\xc8\x0e\x07\xec\x70\x2e\x34\x75\x7e\x77\xfe\xbe\xab\xd4\xbd\xd6\x7d\xd6\xd1\xaf\xeb\x12\x4a\x9d\x20\x1a\xce\x90\xc5\x43\x51\x74\x9a\x69\x6c\xaa\xe5\x99\x68\x79\xb2\x8a\xf1\xf9\xbc\x84\x39\x3b\xc9\xb5\x36\x37\x01\x4e\x73\xff\xfa\x80\xbe\x6c\xfc\x85\xe6\x26\xde\xff\x24\x0f\xf9\x34\xe8\x78\x6e\xef\x25\xfe\x4c\x73\xcb\xfe\xe3\xfe\x54\x06\x69\x8b\xe7\x23\xa9\x46\xeb\x71\x9e\x27\xec\xf5\xe3\x1a\x3c\xbf\x35\x40\xd2\x7b\x50\xd8\x4e\x7c\x97\xce\x13\xdf\xa5\x29\x90\xeb\x7c\xdc\x73\x52\x70\x4d\x41\x5b\x27\xa0\xad\x59\x97\x63\x79\x14\xc7\x1e\xc5\x31\x60\x7b\xe6\xd3\x6c\xaf\xdb\x1e\xcf\x24\xd1\xad\x59\x38\x0f\xbf\x93\x16\x3f\xd2\xe2\x0b\xd6\xe3\xd9\xf6\xbb\xe9\x57\x11\x0d\xc7\x9e\x2c\xc2\x3a\xfa\xfd\xec\x17\x6d\xd0\x89\xaf\xd1\x14\x81\x75\x3e\xb8\x03\x0e\xf2\x1a\x4c\xa2\x51\xb3\xd8\x7e\x47\x1d\xc6\x8b\x09\xd0\xe9\x79\xe2\x57\x34\x4d\x43\x36\x49\x43\x96\x75\x39\x96\xd7\x7d\x7b\xd5\xce\x61\x80\x98\xaf\xec\x17\x8a\x93\xf3\x24\x37\xc1\x7c\x15\x4f\x5e\xc5\x13\xa2\x18\x26\xea\x93\x2c\xcc\x1a\x67\xbf\x18\xc0\xe6\x8b\x01\xec\x54\xa4\x7a\xbd\xbf\xaf\x74\x12\x17\xe4\xf9\x12\xec\x3c\x5f\x70\x5b\x4e\x82\x89\xe7\x0b\xbc\xd9\x04\xb9\xf4\x3c\xf1\x0d\x9a\x22\x97\xce\x17\xb7\xdf\x13\x63\xdc\x54\x2b\x33\x45\x2e\x1d\x8a\x27\xa6\x1c\x9b\xdf\xe1\x98\x7b\xce\xd7\x60\xce\x49\x30\x67\xd6\xf1\x9d\x6f\x05\xda\x96\xf3\x24\x08\x77\x7e\xb2\xff\x9f\xec\xff\x80\xd5\xd2\x97\x67\xe2\xcb\x93\xdf\xe5\xd9\xfd\x64\x69\x41\x10\x3d\xcf\x6b\xfe\x5d\x99\xbf\x84\xa3\x58\x26\xb8\x3f\x5b\x3e\x93\x6b\xf3\x4c\xae\x7d\x48\x82\xa9\x39\xad\xb9\xfe\xf7\xdf\x0b\x0d\xe9\x12\xa4\x79\x01\xd2\x7c\xb7\xe4\x12\x97\x18\xcd\x6b\x7b\xdd\x6f\x6a\x1e\x6b\x3e\x3e\xe2\xbf\x62\xe3\x88\xc3\xa7\x35\xd3\x9a\x5c\x41\x1b\x42\x2c\x5a\x78\x5f\xde\x04\x0d\xad\xcd\xb3\xba\x36\xcf\xea\xaf\xc6\x01\xe4\x1a\xde\x18\x96\xd7\xc6\x40\xb9\xb8\xc2\xc0\x0f\x2f\xae\xf1\x9f\xb5\x79\x4d\x6e\xda\xbe\x6c\xe8\xba\xf3\xb7\xca\x28\x2f\x5b\x4a\xaa\x7b\x01\x31\xbe\x84\x8c\x5e\x5c\xfc\x33\xcf\xc8\xe2\xf2\x67\x41\x77\xd5\xa6\x9c\xdd\xf5\x52\xc5\x5c\x6e\x17\xea\x66\x55\x1a\x6b\x77\xbb\x2a\x29\xca\x5f\x47\xb2\x97\x0b\x34\xe9\x3f\x0b\xda\x71\x63\x73\x5e\xbb\x3a\x86\x94\xea\x6f\x80\xe4\xd6\xae\xae\x4b\xa5\xc7\xce\x04\xab\x3d\x36\x7e\xec\xf4\x08\x5a\xed\xda\x8d\xb5\x1a\x7c\xd5\x5d\x62\xd8\x83\xc6\xe0\xbb\x63\x40\x96\x6d\x34\x4e\xa4\xc5\xda\x9d\xdf\x26\xa3\x1a\xfe\x86\xf3\x71\xa3\xa1\xe1\x08\x50\xb7\x38\xa6\xe1\xc8\x47\xfe\x06\x04\xf1\x02\xf2\x3a\x8b\x93\x2a\xfe\x9b\x4e\x26\x39\xfa\xbb\x1f\x34\x3e\xdd\x9a\x99\x4d\x0d\xc6\x34\xdd\x1a\x64\xd0\x3c\xe6\x0b\xed\x78\x16\xb9\x35\xbd\xd0\xd2\x72\x1f\xb8\xe9\x83\x1d\x5d\x2e\x41\xbe\xdd\x77\xf7\x74\x2e\x5b\x4a\x4e\x13\x35\xd7\xda\x61\x4b\xf9\xa6\xdf\x68\x4a\xd7\x0e\xc7\x94\xd2\xfa\xcd\x33\xbb\xc4\xdd\x5e\xe8\xcd\x49\x41\xbe\x54\x97\x2f\xfd\x69\x27\xb3\xdb\x2e\x6f\x4a\x0c\x37\x2f\xf1\x12\x6a\x61\x01\xb5\x70\xf7\x8b\x91\x6f\x07\xf5\xd0\xdf\xc5\x8f\x8f\x8d\xa7\x48\x7c\x1d\x8c\xe0\xf1\x04\x3d\xac\xdd\xcd\x7f\xaf\x4b\x9e\x3c\xd9\x75\x30\xa6\xd7\x91\xbf\xb4\x74\xb3\x74\xaf\x23\x7f\x19\xb9\x87\xf1\xb5\xf1\x97\xc6\xfd\xc8\x35\x48\x52\x8c\xfe\x6c\xed\xcf\xdf\x52\xa4\xb8\x5c\xcc\xcf\x01\xe4\xb3\x7d\x81\x44\xb5\xf6\xe7\xb6\x24\xf5\xc2\x99\x62\xed\xcf\x1d\xfe\x18\x25\xf4\xe0\xc1\x77\x64\x3d\x07\x3b\x5c\x07\x55\xdd\x2a\x76\x98\x73\x0e\x04\x44\x16\xd9\x14\xb7\x5f\xe5\xfe\x7a\xca\x99\x35\xb4\x84\x5c\xbf\xf0\xf1\xbd\x3b\x07\xff\xc1\x27\x6c\xe1\xef\x7b\x63\x9f\x5f\x0f\xca\xd1\xf5\x14\xb6\xb8\xd3\x94\xd7\xff\x39\xf9\xb1\xf3\xa3\x97\xfd\xc9\xcb\x0e\x8e\xc5\xd2\xfd\x77\x3d\x17\x6b\x37\x72\xcd\x1f\x4c\xd0\x0b\xa4\x09\x80\x2d\x16\x68\x13\x59\xd0\x12\xa7\x45\x77\xe0\x85\x3b\xb0\xd9\x7e\xd6\x73\x39\xf4\x9b\xa6\x38\x09\xcf\x6d\x53\xc9\x68\x00\x3c\xbd\x9e\xdb\xa1\x27\xfb\x75\x8f\xe4\x9a\xd7\x03\x57\xb0\x78\xa4\x6f\x74\x78\x4b\x27\xe2\x85\x13\xb1\x79\x7e\x96\xe0\x15\xeb\xa9\xfc\x58\xf8\x51\x3a\xcc\x13\x8e\x37\xc8\x7a\xbc\xd8\x4f\x0b\x3e\x62\xa0\xcd\x29\xb7\x9c\x72\x65\xa9\x9a\x53\xe6\xf6\x0f\x4e\xb5\x8e\xc7\xeb\xe9\x27\x55\xcc\xb9\xbb\x7a\x3d\x8f\x42\xf5\x23\x47\x90\x8f\xf0\x3d\x38\xd6\x8f\x14\xe1\xe9\x34\x4e\x77\xc3\x96\x46\x52\x7d\xa8\xc6\x33\x5c\x83\x14\xf0\xee\xc1\x39\x7f\x30\x20\x2f\x58\x0b\x20\x28\x16\xec\x45\x16\x0c\xdc\x45\x1f\xee\x68\x52\x8f\x7b\xf0\x0e\x3c\x92\x0d\x80\x34\xee\xe1\x7a\x4e\x9b\x9a\xd9\x14\x12\xc2\x7a\x24\x1b\x4f\x92\x0d\x54\x93\xeb\x99\xce\x78\xb1\xc2\x37\x4d\x2d\x57\x6a\xd1\x94\xf3\x5b\xce\x6f\x31\x3f\xa8\xf5\xb3\x9c\x5f\xf2\xfe\x17\xbe\xbe\xeb\x91\x96\x3c\x90\x89\xe1\x9c\xc3\x19\x26\xb5\xb8\x48\xab\xb0\x84\xf2\x58\x30\x4a\x17\x54\x50\x1f\xeb\x85\x3f\xf5\x3d\xda\xdf\xe3\xdd\xd7\xb3\xdd\xde\x64\xac\x50\x9d\x2e\x98\xab\x2c\xe8\xdb\x66\xb7\x27\x65\x73\x52\x7e\x5f\x39\xe8\x4d\x4f\x9d\x73\xf1\xd8\xd4\x43\x53\x8c\xf9\x71\xfe\x0f\x0b\x3e\x18\xf3\xe3\x2a\x41\x6b\xf0\x26\x58\x22\xf1\xaf\x07\xca\x42\x0e\xa0\x25\x10\xff\x7a\x5e\x16\x6e\xd2\xe1\xeb\xc2\xbd\xb4\xc5\xbb\x20\x34\xff\xc2\x7e\x86\x83\xcf\x7a\x3e\xc7\x9e\x7c\xd0\x3d\x21\x6e\xb2\x7d\x0b\xe0\x7d\x3c\x7e\xd6\x23\xb5\x01\x9d\xe4\x46\x25\xb8\x4c\xbf\xbb\x00\xdf\xbf\x18\x01\x00\xfc\x59\xdc\x90\xad\x4a\x55\xb5\x2a\x57\x01\xb5\xe1\xd2\x8f\x7c\x61\xad\x23\xbb\xd2\x7a\x25\x24\xe4\xe9\x05\x44\x64\x91\xab\x37\x0b\xc6\x94\x6c\xe2\x12\x0b\x65\xc1\x7d\xde\xa0\xe7\x2d\x3d\xc8\x17\x1e\xe4\x37\xba\xc6\x05\x2c\x4a\x16\x17\x55\xb4\x0e\x94\xea\x7a\x4f\x0e\xc1\xe5\x57\xcb\x2a\x7e\xe4\xc2\x98\xfc\x77\x91\xfc\x17\x9f\xe6\xa5\xdf\xf9\xc2\xef\xfc\x46\x1b\xb9\x5e\x79\x8b\xf7\x62\x36\xc9\x09\xae\xf7\x72\x36\xc9\x62\xdc\xae\x8b\x8c\x04\x09\x08\xee\xc9\x5d\x20\x0b\x41\x16\xd9\xb8\x8b\x70\x3b\x65\x58\x0b\x0e\xe6\x8b\xba\x60\xbd\xc9\x4d\xdc\x4e\xaf\x3a\x97\xa4\x42\x26\x22\x5a\x38\xa8\x67\xc1\x22\xf0\x7a\x00\xc8\x92\xc5\xf3\xbf\xff\xde\x4e\x18\x93\xe6\x22\xb3\xc1\x0d\xc9\x78\x9b\x53\x49\x4e\xe3\x2a\x0e\x49\x82\xf4\x36\x56\xb8\xfa\xd5\xb0\x6a\xfe\xef\xbf\xb8\x52\xaf\xb7\x39\x95\xa4\x4b\xf7\x84\xf9\x00\xd7\xe5\xcf\x22\x1d\xc2\x0d\xcd\x78\x25\x51\x60\xbc\xdc\xb3\x31\xbb\xee\x92\xf7\x4a\x95\x5f\xd9\x78\xa7\x71\x16\x53\x12\x85\xfb\xfc\xed\x5a\xe2\x9a\xb3\xc8\x89\x70\x93\xcb\x78\xbd\xc3\x91\x0f\x36\xa1\x33\x28\xc9\xd6\x9b\x9c\xcd\xed\x5c\xe4\x6c\xde\x24\x55\x37\x29\xe5\x17\x52\x47\x16\xd9\xf8\x6d\x8d\x8d\x4f\xf6\x0e\x06\xec\x9d\x1e\x83\xc9\x4e\x71\x19\xcc\x7f\xbc\x5e\x08\xd2\xf4\x54\x2f\x37\x3d\x69\xc9\x3d\x3d\xb0\xe1\xe2\x25\x83\x51\xf1\xb3\x58\x6f\xd8\x61\xe4\x52\x41\xf2\x5f\x69\xc2\xbb\x59\x74\x08\xfc\x2b\x4d\x00\xaa\xa6\x1e\x6e\xf2\xf6\xbf\xe4\x39\xf0\x2d\x5f\xca\x34\xeb\x4d\x92\x40\x5a\xa9\xf5\x4a\x12\xde\x64\x42\x2a\x58\xac\xeb\x7d\x5c\xce\x27\x97\xd3\x8d\x79\xdc\xab\xa4\x15\xf5\x70\xfb\x1e\x5b\x4a\xbe\xe4\x02\xf8\x6c\xbd\xd2\x0d\x32\x39\x54\x74\x7a\x4b\xd9\x68\xbd\x29\xfe\xd5\xc3\x05\x95\x24\xbc\x29\x01\xd7\xc3\xe5\xfb\x1c\xc3\xc7\x8f\x30\xe8\x9a\xb0\x17\x32\x53\x3d\x9c\xf3\xe7\x20\x92\xdf\xa8\xa8\xf8\xd6\x27\x99\xf8\x0e\xda\x62\x86\x1f\x4a\xd0\xf5\x1d\xdc\xc8\x66\x55\xb7\x8a\xf9\x4c\x6a\x96\x35\x9b\xff\x06\x55\xaf\x55\xb4\x0e\x9f\x42\x82\xe7\x2c\x1a\x55\x34\x85\x3c\xbe\xbe\xbc\xf6\xf5\xb0\x2d\x54\x53\x0b\x09\xad\xe2\xaf\xb1\x3e\x19\x8e\x2f\x19\x8e\x9b\x23\xf3\xc9\x70\x7c\x27\xad\x43\xf5\x3e\x49\x00\xa9\xea\xc9\x6e\xb5\x3e\xb9\x8b\xef\x62\xce\x9c\x0f\xd3\x4a\x2f\xd2\x4a\x63\xc8\x58\xdf\xed\xa0\xe0\x37\xe0\x5c\xc8\x2f\x9d\xc5\x84\xf2\x53\xe3\xf4\x6e\x86\x04\x69\xd6\xbc\xbe\x30\xaf\x57\xf4\x76\xeb\x93\x04\x60\x64\xaf\xa8\xed\x16\x96\xf6\x2c\x78\x57\x79\x6a\x84\xfd\x59\xc0\xfe\x60\xfa\x58\x82\xfe\x2c\x0c\xf1\x15\x55\xdc\x32\x39\xc6\x22\x39\x06\x9e\x75\xcb\xd4\x18\x8b\xd4\x18\x15\x8f\x90\x65\x66\x8c\x45\xc8\x88\x39\x87\x16\x71\x23\x59\xf0\xd2\x76\xbf\x72\xa0\x9d\xd6\x4f\x5a\xf7\xc6\x7f\x9d\x2d\xe5\x69\xfb\xba\xcd\x77\x9a\x87\x0e\x99\xe1\x7a\x91\xe1\xfa\x9e\x7f\xd7\x5f\xaf\xaf\xbb\x4a\x29\xd8\x54\x20\x3a\xd7\x27\x45\x20\xe1\x75\x05\x59\x70\x7d\x18\x34\x16\x01\x2c\x15\x60\xc1\xf5\x49\x12\xbe\xc1\x8f\xf0\x28\x66\xe4\x58\x88\xd5\x24\x00\x5e\x1f\xfe\x1b\xeb\x9b\xbc\x57\x1e\x8b\xe9\xa0\x53\xd8\xa9\x05\x9a\xfb\x4d\x67\x3b\x69\xca\x03\x2c\x95\xf8\x52\xc4\xa9\x5e\x2c\xa1\x8d\x16\xd0\x46\x17\x71\x8e\xeb\x93\x70\x7c\x8b\xb6\x3c\xc1\xcb\x9d\x5a\x70\xe8\x1e\x84\xe5\x56\x45\x0e\x0b\x84\xc1\xf5\x85\x6d\x05\x2b\xe7\x09\x0e\x57\x2e\xa5\x1b\xf2\x93\xad\x4f\xb6\xe5\x83\x06\x15\x4f\x70\x38\xd2\xe0\x00\xb9\x55\x12\xa1\x6f\xb3\x34\xee\xcb\xf6\xaa\x6d\x9a\xa2\x71\x05\x1e\xf2\x76\x93\x11\x61\x7d\xb2\x25\x64\x0c\xa9\xbf\xd9\x48\x84\x3e\x88\x50\x81\xd5\x26\x79\x48\x16\x9c\x16\x0f\x9e\x54\x88\x98\x1e\x13\x27\x2d\x3d\x35\x16\x9e\x1a\x57\x81\xfb\xfe\x5e\x67\x93\xec\x09\xc1\x1a\x4b\xd7\x8d\x45\x9a\x91\x7a\xba\x3b\x9f\x63\x48\x21\x88\x5c\x0b\xeb\x93\x2c\x81\xdc\x54\x09\x6a\x59\x9f\x72\xd1\x97\xd4\xa9\x9e\xce\x46\xb2\xf4\x41\x83\x80\xb7\x0c\x9d\x40\x82\xd0\x21\xd2\x31\x04\xbe\x1f\x59\x04\x1f\x4d\xaa\x5e\xab\xf8\xcf\xaf\xa0\x2e\x41\xd8\x50\xc5\x67\x25\x70\x06\xc9\x82\x1f\x4f\x7e\x24\xcd\x49\xe0\x05\x82\xd5\x2d\x0e\x54\xa0\x01\x24\x54\x05\x9a\x30\x0e\x7c\x71\xe2\x80\x04\x9d\x49\x52\x83\x24\xe2\x59\xd0\xe1\x4d\xeb\x97\x1d\x5e\xfc\x98\xf4\x33\x0e\x94\x17\x71\x24\xe1\xb9\xce\x83\x61\xa1\xbd\x88\xe3\xa2\xad\xea\x8f\xb6\x75\xb3\x34\x95\x61\x21\xe2\xc4\x91\x22\x0e\xd1\x2a\x61\xfe\x94\x20\x5f\x79\x45\x29\x10\x07\xf1\xb9\x71\x54\x66\xd8\xf8\x0f\x9d\x64\xe0\x55\x82\x71\x30\xcc\xa7\x12\x07\xd4\x04\xd4\xc2\x20\xb7\x4a\x16\xac\xfb\x60\xa0\x84\xef\x07\x89\x56\x2e\xa2\x70\xe3\x68\x4e\x1a\x72\x82\x5a\x20\xcc\xb9\x12\x04\x55\x55\x94\xa0\x41\x14\x55\x16\x4c\x67\xf2\x55\xff\x7d\x95\x4b\xea\x32\x74\x77\x07\x4a\x80\xb2\x33\x8e\xe1\x62\x25\x41\xa8\xd7\xc1\x57\xc3\x61\x25\x27\x50\xf1\x5a\x09\xbd\x4c\x02\x2f\x13\x60\x99\xe2\x18\xce\x19\x42\x50\x59\x85\xe9\x04\x93\x10\xd4\xeb\x60\x15\xa6\x83\x4a\x89\xc6\xb4\x4b\x21\x4a\x57\x80\xd2\x55\x5d\xe2\xe9\xaa\xa7\x14\x53\xaf\x42\xe3\xd3\xc6\x21\x0d\xf9\x1e\xc5\xb1\x1c\xd3\xb2\x25\x76\x6b\xd9\x52\xca\x35\xb5\x59\x13\xd6\xe4\xf4\xdc\x86\x70\x1b\x52\x76\xc1\x3e\x19\x47\x38\x24\xc8\x02\xfa\xd9\x00\x09\x2c\x0b\xe6\x7b\x32\xca\xb0\xa5\xe4\x47\xb0\x4d\x86\x7e\x31\x81\x2b\x8c\x99\xa1\x82\x60\xb1\x2c\xb2\xf1\xc1\x91\xdd\xee\x1e\x54\x61\x30\xee\xed\x29\xdb\x1c\xeb\x8b\xb6\x1f\xef\x51\xb2\x26\x40\x7a\xc5\xf1\xb8\x72\x10\x0a\x64\xf2\x30\xf6\x2c\x88\x3d\xab\xa4\xa4\x0d\x13\xd4\x04\xb0\x64\x75\x58\xe3\xc0\x93\x43\x31\xf3\x53\x1c\xaf\x8d\x27\x87\x52\xa7\x35\xfe\x96\xd4\xa2\x5e\x1e\x83\xd7\x41\xa5\x44\x53\x91\x9a\xe3\x78\x9d\x1e\xf7\x1d\xcc\xc5\x30\x6b\x7d\x94\x83\x95\xea\x56\x0d\xab\x72\x7e\xb3\x51\x13\xd6\xe4\x42\x71\xa0\xcc\x5d\x13\xe5\x60\x3b\x39\xd4\xe4\xb1\xf9\x13\xa4\xbc\x27\x5e\x28\x0a\xa6\xaf\xc0\x11\xa8\xa2\xd1\x0d\xb2\xde\x67\x31\xf3\xa3\x4a\x8d\x6d\x27\x49\x20\xe5\x5d\x14\xa2\x9e\xa3\xa4\x7c\x72\x61\xb0\x08\xfd\x86\x82\x5c\xf8\x98\x61\xa3\xc0\xa7\x44\x81\x6e\xe0\x58\x13\x45\xba\x51\x4e\x76\x98\xb5\x33\x75\x4e\x94\xe4\x60\x88\x39\x0a\x71\xdc\xa2\x5c\xec\x02\x6b\x57\x2e\x87\x79\xd1\xf8\xdf\x85\xda\x28\x08\x32\x41\x16\x7e\xa2\x96\xa2\x48\x66\x0a\x64\xe6\x9a\x56\x6d\xab\x50\x0b\x5d\x2c\xec\xed\xc4\x92\xe7\x01\x1e\x2d\x0a\x90\x4b\x51\x92\xda\x54\xe4\xb9\x30\x8b\x4f\x90\xc5\x87\x10\xa6\xd0\x19\x2a\x80\x99\xab\xf7\x61\x4b\x36\x9e\x24\xa9\x22\x83\x85\xf1\x84\x41\x3c\x21\x61\x4e\x61\xe4\x60\x10\x39\x48\xfe\xf3\xd0\x85\x2a\x70\xa1\xaa\x78\xfb\x04\x59\x80\xb2\x08\xb4\x57\x7e\xf5\x5a\x45\xe3\x85\x71\x62\x08\x0f\x32\x02\xd5\xdb\x85\xc4\xf5\x2a\x00\xaf\xbb\xa4\xd2\x86\x25\x46\x49\x36\xc8\x1c\x56\x51\xa4\x61\xa5\xa9\x1c\x63\xa0\xdd\xbd\x84\xd9\xb9\x9d\x61\xf7\x54\x24\xb3\x83\x25\x3a\x08\x4f\xcc\xc2\x61\xb1\xa0\x92\x35\x62\x15\x2f\xbc\x13\x83\x80\xc5\x2c\xce\xfc\x8f\x8f\x86\xa3\x1a\x34\x7e\x31\xf6\x61\xe3\xc9\xe6\x10\x9b\x15\x64\x16\xca\xe2\xce\x1a\xba\x93\x84\x15\x48\x18\x92\x52\x94\xe9\xc2\x40\xc2\xee\x9b\x96\xa4\x61\x25\xf9\x97\x4a\xe8\x48\x94\xe5\x38\x21\x46\x08\x25\x51\xc2\xd6\x83\xaf\x20\x7e\xf8\x8e\x65\x41\xf3\x8d\x31\x48\x8e\x0a\x94\x86\x10\x91\xd0\xa9\x2c\xf0\x23\xab\xa0\x31\x46\xd9\x2e\x5f\x12\x16\x6c\x14\x51\xb6\xab\x00\x03\x02\xc7\x1c\x78\x9c\x65\xc1\xe6\x0c\x9a\x92\xb0\x94\x87\xa6\xbc\x1d\x8f\x4d\x25\xd7\x01\x56\x5d\x94\xd7\x8d\x78\x79\xbd\x26\xff\xbd\xae\x55\x72\x1b\xad\xb1\xa7\x52\x91\x02\x15\xa9\x5e\x6b\xa9\x08\xd8\x7f\xa6\x99\x8a\xf2\x39\x04\x44\x9e\xea\x11\xfd\x6c\xea\xa3\x29\xce\xe3\xe7\xd0\xa1\x3e\x30\x4f\x71\xca\x6d\x10\xc4\x59\x2b\xe7\xea\x44\xe2\x89\x33\x25\x1e\xac\xf4\x71\xca\x80\x10\xdc\x59\xe1\x81\xe2\xc4\xa8\x14\xe7\xc1\xfb\x92\x1c\x4f\x88\x2a\x18\xc4\x79\x12\xa6\x16\xa7\x5c\xca\x09\x97\x02\xca\x64\x9c\x72\x29\xf8\xd4\x99\x6d\x2a\x74\xa9\x0b\x5c\xea\xb0\xe2\xc7\x29\xb1\x39\x4f\x06\x05\xfd\x39\xb1\xb9\xc4\x99\x44\xa7\x56\x2e\xf3\x89\x4b\x52\x9c\x27\x6f\xb8\x03\x95\x00\x9d\x70\x29\xf2\x11\x26\x6a\x0a\x12\x35\x5d\x27\xe4\x15\x3c\xc3\x2c\x58\xd1\xdb\x2a\x47\x7a\xf1\x23\xd4\x9b\x94\x4d\x59\x30\x52\xa8\xf7\x89\x22\x24\xce\x9b\x1b\x37\xfc\xca\x71\x21\x1a\xf9\x64\x9f\x92\x06\xbc\xfd\x2e\x19\x89\x53\xce\x85\x24\x4f\x97\x8c\x04\x5e\x80\x59\xb0\xa6\x9c\xc8\x13\x03\x7a\x90\xf6\xa9\xe2\x0e\x14\x27\x66\x97\x38\x2b\x3b\xdd\xe9\x51\x4a\x70\x22\x09\x55\xa7\x8d\x32\x24\xce\xe4\x60\x48\xd3\x13\x67\x77\xd6\x48\x3d\xd5\x31\x74\x97\x39\xa5\x9e\x06\xd9\x3d\xe5\x65\x70\x37\xac\x3e\x91\x67\x77\x01\x3b\xdb\x3a\x18\x42\x77\x5b\x93\xcb\xc1\xd9\x21\xce\xee\xa0\x90\x6a\x70\x01\x8a\x73\xd8\xf8\xa0\x71\x76\x75\x38\x99\x01\xfd\x98\x4c\x59\xee\xe6\x44\xce\xa9\xd0\xe8\x73\x3a\xce\xa4\x07\xd8\x82\xe2\x94\xbd\x39\x53\xdc\x31\x47\x55\x9c\xd3\x35\x4e\x12\x51\x7d\xb3\x4c\x65\x15\x04\xe0\xf6\x83\xc9\x48\x1a\x4e\x24\x9f\x76\xd0\xd4\xb2\xf1\x14\x80\xba\xbf\xc9\xde\x10\x82\xdb\x7f\xdf\xb8\x74\x72\x37\x5e\x09\x29\x0a\xf1\xb7\xf8\xc9\xc7\xb9\x3c\x1d\x32\x3c\x5e\x12\x69\xcc\x19\xb0\x4e\x50\xda\x53\x1a\x43\x3c\x6e\xf5\x55\x3a\xb7\x93\x49\x7e\xc5\xe4\x55\x71\x6e\x3b\x4c\xde\xa5\xff\x3e\xb2\x3f\xa8\x4e\x83\x62\x92\x3e\x2b\x8b\x97\x2a\x3a\xdc\x1e\xa1\xe4\x6a\xc8\x70\x19\xe7\xe3\x69\x7c\xf2\x34\xca\x3f\x9e\x52\x9d\x13\xb9\x07\xd3\x68\x9c\x8f\xfd\x25\x0f\xd3\xbd\x6f\x8f\x8d\x3f\x6f\xd6\x8c\xbf\xbf\xb6\xe7\xeb\xe6\xbe\xed\x7f\xff\xed\xde\xc6\xd7\x63\x92\xa4\xa9\xe2\x7d\x14\xe7\xeb\x31\x49\xa1\xa8\x7b\xf3\x3e\xc7\x97\x52\x4f\x87\xa2\x9f\x9f\xbb\xf6\x45\xd6\xe4\x91\xb8\x24\x3f\xc4\x08\x03\xc4\x16\x97\xec\xd0\x05\x41\x02\x52\x31\x08\x1d\xce\x82\xfd\xe7\x72\x5e\x92\x9f\x0b\xca\xd2\xb8\x9c\x57\xb1\xa9\x42\x53\x95\x9a\xcb\x9a\x1c\x37\x92\x87\x60\x9e\x71\x25\x0f\x54\xa5\xc1\x17\x56\xa0\x20\x22\xd9\x1c\x5c\xa1\x6f\x6c\x5c\x85\xc6\x21\xc2\x17\xaa\xda\x20\x46\xb9\x12\x18\x12\x97\x14\xe9\x82\x22\xe1\xe1\x14\x80\x7f\x66\x41\x5b\x9d\xe9\xa0\xba\x89\x4b\x5b\x11\x47\xc7\xa0\xe6\x00\x01\xb4\x12\x28\x12\x04\x2e\x67\xc1\x8f\xbc\x29\x26\x25\x8b\x2b\x89\x89\xf9\xb8\x82\xc4\x63\x7f\xe2\x4a\x99\xa7\x12\xe9\x11\x97\x1c\xc6\x95\x6c\x45\x77\xa4\x38\x5b\x06\x3e\xba\x04\xa2\xc6\x55\x7f\xbf\xe5\xce\x40\x42\xae\xe6\x52\x21\x23\x79\xc4\xf5\xdf\x0d\xfc\x77\xb1\x85\xc5\xd5\xfc\xad\xe7\x7a\x3a\x4a\xf9\x86\xab\xfb\x1b\x43\xea\x2e\x42\x52\x12\xb3\x6d\xc5\x25\x09\xb9\x10\x7e\xc0\x01\x8c\x4b\x2e\xe1\x4a\x19\xa8\x3b\x3b\xb9\x84\x2b\xe9\x05\xc9\xa3\x02\xb0\xd2\x2c\x26\xbf\xd1\x92\x5c\x02\xc1\xd8\xb5\x73\x31\x2e\x49\xc1\x05\x9b\xd0\xb9\x18\x97\x6c\x02\x71\xd9\x15\xaf\xa3\xb8\xa6\x8b\x8e\xed\xe6\xf2\x47\x69\x01\x7e\xc7\x18\xda\x82\x74\x6a\x59\xd0\x14\x6c\x89\x78\xa8\x41\xe8\x76\xed\x9e\xbd\xe5\x36\x70\xf5\xbb\x67\xcf\xab\x7f\xc1\x4b\x00\x22\x1a\x57\xb8\xf1\xc9\x52\x5c\x97\x63\x08\x97\x0f\xf6\xa2\x7b\xae\x14\x64\xae\xe4\x32\x88\xb7\x8d\x0b\x1b\x6f\xe0\xec\x7c\x5d\x8e\x61\x3b\x9d\x24\x0a\xf5\xb7\x81\xdb\x2d\x4d\x56\x04\x17\x9b\xb8\x64\x38\x2e\x18\x8e\xee\x41\x7b\x6c\x3c\x29\xc0\xf0\x6c\x3c\x8e\x20\xc5\x96\xeb\x72\x36\x32\x1c\x60\xad\x9a\xf0\x2b\xae\xd7\x15\x45\xc9\xfa\xdb\x67\x6f\x37\x81\xe7\xa6\xfb\x8a\xeb\x73\xf9\x30\xf2\x5e\x5e\x54\xaf\xf7\xf5\x61\xe0\x74\x19\x3e\xa7\xf3\xb1\x7e\xbc\x1e\xc2\xb5\xc6\x05\xcb\x81\x39\x33\x6e\x8c\xba\x71\x1f\x0c\x7e\x76\xaa\x2e\xab\x20\x65\xd5\xaa\x6a\x15\x6d\xf1\x58\x18\xcd\x1e\xf7\xa1\xdd\xd5\x2a\xa8\x22\x2e\xdc\x03\xc1\xf7\x96\xc1\x00\xfe\xb5\x0e\xc4\x99\xdb\x2b\x7e\x73\xc5\x07\x92\xef\x8d\x35\x26\xee\xbc\xe9\x75\x70\x94\x6f\xaf\xf8\xcd\x15\x1f\x1c\x65\xb1\x61\xe3\x46\xc4\x21\xbf\x57\xdc\x5e\xf1\x3b\x19\x0d\x5c\x82\xe2\x56\xc2\x21\xab\x1d\xc6\xd2\x10\x2a\x36\x40\x82\xad\x98\x46\xe3\x96\xe5\xb8\xb9\xf3\x44\x17\xc4\xed\x9d\xbf\xd1\xce\xe2\xf9\x13\xf7\x65\x53\x29\xb8\x5c\x98\x34\xe3\x96\x0c\x80\x16\x6b\xfa\xaf\xb8\xd5\x95\x00\x16\x7b\x11\x47\x1f\xf7\xed\x0c\xd1\xc6\xe2\xa5\x13\xb7\xd2\x08\xbe\xeb\xf8\x24\xc5\x2d\xc7\x71\x43\x3e\xb0\x5f\xc6\x5d\x9d\x60\x92\x8f\x3a\xd8\xd6\x1b\xab\x4d\xdc\x75\xe4\x7f\x0c\xa1\xba\xec\x48\x23\x00\x9e\xc6\x2d\x01\xb9\x1b\x8d\xd3\x52\x73\x82\x0d\x91\xdc\xbd\x91\x80\xdc\x8d\xff\x20\x4e\x80\x09\x64\x71\x52\x45\xeb\xdd\xad\xef\x6c\x3d\xec\xdf\x2d\x51\xb9\xd1\xb1\x0c\x27\xa8\x8e\xe5\xc6\x44\xac\xb4\x2b\x18\x6d\xdc\x08\x1a\x03\x66\xfd\x96\xe7\xb8\x07\x3f\xc2\xf5\xdc\xc3\xf5\x1b\xac\x0c\x9c\xd7\xad\x4a\xe5\x4e\xd6\xe3\xc2\xac\x18\x66\x17\x8c\x1b\xb2\x32\x7e\x55\xee\xc5\x64\x2f\x60\xaa\x84\xb5\x8d\x1b\xe9\x63\x78\x96\x97\xd3\x86\x88\x80\x62\x18\xf7\x72\x5f\x93\x96\x54\xc2\xa4\xc3\xa4\x84\x71\x23\x90\xcc\xe3\xfe\xfb\x93\x7b\x87\xbb\x90\x04\x05\x7c\xda\x00\x73\x21\x8b\x0f\x8d\x03\x55\x72\x17\x37\x24\x66\x7a\x62\x95\x60\x6e\x18\x0e\xe2\xac\xe3\x96\xa0\x00\xbf\x60\x86\xae\xb8\x1f\x47\x8d\x70\x02\x86\x69\xdc\x0a\x27\x77\xf2\x06\x44\xa6\xc4\x2d\xf9\xb8\xd1\x7a\x60\x3f\x0c\x93\x21\x06\xb0\xbd\x95\x58\x86\x00\xbb\x37\x8b\x9e\xff\xd1\xb8\xd4\xe3\x46\x5e\x99\x8e\xfd\xb5\xf1\x97\xc6\x69\xe9\x73\xe8\x88\x2b\x98\x0b\xe3\xfe\x9c\x20\xc4\x63\xda\x94\xc4\xe3\x4e\xb1\xa5\x4e\xde\xf4\x2a\xf1\xa8\x88\x22\x98\x02\xa3\xaa\x2d\xa9\xd8\x68\xc9\xf5\x10\x55\xc1\x03\x78\x09\xb3\x79\x45\x55\xca\xa8\x29\x65\x00\x9b\x19\x15\xbb\x6d\x80\x37\x51\x09\x86\x8e\x8a\xdd\x36\xc0\x16\xae\x18\xe7\xa2\xaa\x1d\xa9\x65\xe7\x7f\x83\x1a\x46\x55\x21\x14\x18\xe7\xa2\x9e\x36\x9e\xf4\x02\xb8\xde\xa8\x0a\x27\xa0\x0f\x0f\xdb\x56\x10\xa9\xf9\xfa\x63\x4f\x8f\x8a\x85\x36\x48\x13\x59\x31\xe9\x85\x28\xc4\x01\x0a\xb1\x07\xb8\x4a\x26\x6a\x92\x86\x4b\x45\x43\x55\xb1\x41\x2a\xc9\x4a\x24\x76\x54\x15\x1b\x35\x65\x16\x4f\x79\x55\x56\xa9\x49\x25\x3c\xd1\x55\x8d\x2a\xb8\x19\x15\x73\x61\x00\x9e\x91\x45\x6e\x0c\x67\xbc\x56\xd7\x17\x1d\x2b\x11\xdd\x21\xa8\x46\x00\x72\x6c\x4a\xb1\xa8\x92\x04\x00\x8f\xbd\x08\x15\x3b\x6e\x54\x28\x02\x2a\x2b\xb3\x50\x06\x00\xc8\x66\x13\x8b\xaa\xd6\xb5\x36\x76\x8a\x33\x0c\x2c\x47\x16\x34\x0e\xff\x4d\x8e\xca\x2c\x3e\xaa\xd8\x2a\xe9\x46\x45\x06\x21\xb6\x3b\xaa\xca\x08\x92\x52\x36\xc2\xb8\xa3\xaa\x50\x05\x36\xb9\x01\x49\x18\x02\x7d\x44\x9d\x7e\xc5\x0c\x65\x21\xea\x1c\x28\xc0\xf8\x71\x3a\x88\x49\x8f\x08\x71\x55\x7e\xa1\x26\xbf\x80\x9f\x41\x54\xf9\x05\x82\x72\xcc\xee\x15\x55\x71\xa2\x2e\xa6\xc8\x1b\x5f\x65\x21\x48\x71\x39\x79\x7d\x08\xd5\xc9\xe2\xe5\x23\xa6\x13\x36\x1e\x34\xce\xa0\x54\xa0\xd6\x14\x21\xc8\xca\x17\x55\x05\x6a\xcd\x6b\xdf\xb0\x0c\x86\x71\x3e\x41\x68\x0f\x69\xfa\xa2\xca\x64\x90\x00\xb3\x1d\x9e\xd7\xed\x52\x25\x6d\x68\x87\xa7\x53\xa2\x40\xf8\x8f\xf9\xc1\xa2\xaa\xd6\x20\x14\x08\xff\x84\xa8\xca\x17\x35\x39\x8b\xc9\x53\x57\x55\x97\xd6\x87\xe5\xf4\x08\x3d\xce\xee\xa1\x25\x8f\x90\xd2\x44\x7d\x98\x9e\x67\x41\xe5\x68\x7d\xf9\xd1\xc3\xa0\x5a\x03\xac\x93\xeb\x3e\xfd\xca\xb1\x27\x1b\xd1\x0a\xe2\x59\xfd\x1c\x68\x52\x85\x56\x5c\x86\xcf\x0d\x4c\xfe\xa1\xe1\x15\x13\x4d\x99\xa1\x25\xb3\xd0\x0a\x43\x15\x1b\x25\x5a\x52\x82\x46\xcc\x77\x90\x59\x33\x0b\x7e\xe4\x8d\x6a\x4a\x08\xe4\xd7\x9c\x7e\xa4\x81\x04\x18\x95\x56\x2e\xab\xa6\x55\x2b\x47\x8a\xa2\xc1\x7c\x9b\x41\x8a\xcd\x86\x2f\x7e\x34\x35\xa4\x2d\x79\x06\x7c\x32\xa2\xa9\x0e\x6d\x79\xe1\x1b\x60\x76\xd1\xe4\xfd\x5b\x72\x06\xd3\x96\xe4\x0c\xc0\xbb\x6e\x78\xe6\x47\xd3\x8a\x02\xdc\x75\xc3\xf2\x1e\x4d\xba\x40\x5c\x55\x03\xdb\x2e\x1a\xde\x9d\x01\x00\x76\xc3\x05\x3f\x9a\x6a\xca\x76\x8f\x6c\x9d\x41\xc9\x05\x10\x82\x65\x0e\xaf\x20\x0e\x2b\x0b\x86\xce\x01\x69\xea\x22\x48\xdc\x79\x01\xc9\x12\xcd\x4b\xdf\x2a\xeb\xce\x99\x69\x58\x6e\xa3\x61\xb9\x25\xdb\x7c\x98\xd6\x33\x5a\x63\xa4\x10\x99\xe6\xab\x0f\xc8\x76\xc3\xa8\x16\x4d\x33\x4a\xcb\x7b\x6d\x42\xaf\x10\x41\x26\x40\x90\xb9\x08\x2b\x0c\x21\xb8\x83\x2c\x9e\x8d\x34\x71\xd1\xd4\x4f\x10\x04\x76\xe1\x95\x10\xad\x3b\xc5\xce\x20\x5c\x2e\xd5\x92\x2d\xa5\x8b\x46\x34\x79\x08\xd3\x1d\xc0\x74\x5f\x6a\x00\x9b\xbc\x01\x81\x5d\xed\x3c\xfe\x0e\x1c\x1a\x4d\x91\xa1\xa5\xc8\x00\x22\x6e\x34\x5f\xfb\x06\x51\xc0\x43\x3f\xda\x72\x9d\x92\x12\x34\x1c\x86\xa3\xa9\x3f\x68\x79\xed\x9b\xda\xdb\xa6\x79\xa4\xe5\xbd\x9f\xce\x23\x1c\x4e\xdc\x7c\x44\x53\x5e\xef\x96\xef\x7c\x3b\x7f\x5f\xb9\x72\xc1\xa0\x9d\xad\xd6\x90\x96\xd7\xbc\x9d\x4e\x6d\x3b\xdb\x4d\x87\x1e\x0e\xe5\x03\xa0\xc4\xaf\xbb\xb1\x0b\x2a\x10\x40\x12\x6f\x5a\xcf\x8c\x2c\x8b\xc6\x75\xc6\xa7\x36\x9a\x86\x0d\x92\x8c\xb6\xd3\x7d\x7f\x6c\xeb\xb1\x2d\x36\xd9\x1b\x4e\x58\x99\x79\xc0\xa2\xa9\x11\x68\x98\x49\x6f\x9b\x7f\x9d\x10\x97\x1e\x87\xd9\x30\xf6\x2c\x9a\x97\xbe\xf9\xa3\xdb\xf7\xb2\xa8\xa8\x45\x9b\x9a\xcb\x06\x1d\x38\x3d\x30\xd2\x01\x62\xd2\xda\x09\x01\x69\xd2\x01\x12\x92\x9a\xec\x2b\xba\x74\xa0\x27\x47\x20\x27\x60\xc0\x5a\x10\xb0\x46\xc8\x63\x18\xae\x16\x00\x06\x35\x42\x0c\xa2\xcb\x1b\x74\xac\x24\x1a\xcb\xba\x64\x00\x30\x74\x33\x7a\x85\x09\x4b\xa3\xe7\x3d\x6f\x84\x71\x87\xf9\x4a\xa3\xe7\xcb\xde\x2e\x28\x8a\xd8\x43\x01\xf6\x10\xde\x44\x61\xb2\xd2\xe8\x90\x01\x9c\x43\xa3\x9f\xbf\xa6\x5e\xaa\x18\x28\xce\xe1\xd1\x93\x25\x98\x3c\x09\x22\x16\x45\x4f\x5e\xa0\x5d\x9c\xa3\xae\x31\xb5\x5f\x34\xce\xa0\x14\x06\x7a\x3e\xfc\xf8\x17\x85\x00\x46\xd1\x6f\xf4\xef\x9c\xac\xee\xc3\xdf\x53\x4a\x20\x4e\x33\xc4\x6b\x0f\xf0\xda\xdb\x05\xe3\xdf\xb5\x68\x90\x46\xb5\x29\xcf\x75\x49\x45\xaf\xac\x0b\x8f\x60\x57\xbb\xd0\x93\x01\x20\xaf\x69\x74\xed\x17\x84\xea\xb5\x8b\xa3\xd6\xd5\x5a\x02\x00\xdf\x2e\x4e\x4c\x57\x3c\x20\x78\x8f\xdc\xa7\xd1\x65\x06\x3a\xb4\x03\x77\xca\xe8\xda\x2a\x3a\xfc\x01\x81\xde\xd1\xa5\x1d\x24\x68\x6d\x9a\xc2\xba\x8a\x4c\x92\xb5\x4e\x54\x07\x5d\xad\x65\x4f\x42\xd0\xae\x5f\xd5\xb6\x2a\x2f\x2f\x87\x4a\xe8\xf9\x00\x7a\xbe\xe1\x15\x18\x5d\x0b\x6c\xff\x99\x2a\x18\x82\x5a\x08\x82\x07\xe7\xaf\xc6\x41\xc1\x42\xe0\x28\x18\x5d\x16\xa2\x0f\x96\x0a\x52\xd5\x55\x64\x82\x65\x3f\x7f\x1f\xb9\x0f\xf3\xcc\x1a\x06\x3e\x6d\x7b\x72\x45\x1c\xa6\x36\x0e\x92\xc7\xca\x5a\x75\x19\x8f\x3e\x6d\x9b\x95\x52\x8f\xd9\x93\xfa\x34\x90\xc9\xa2\x6b\xa6\xed\xc9\x92\x94\x03\x9a\xd7\xa5\x44\x3d\xe5\x8e\x76\xff\xaa\x3c\x2e\x40\x9d\x1e\xbc\xa7\x5d\x4a\x24\xb0\x3e\x58\xf6\xd1\x55\x65\x92\x9f\xb6\x69\x80\xea\xe1\x2e\x13\xbf\x72\x78\x21\xa4\x4e\x1d\xea\x84\xcb\x5f\x74\xa9\x53\x87\x1f\xb9\x91\x98\xc5\xe8\x0f\x30\xfa\x2f\x6d\x1c\x5d\x82\xd5\x53\x24\x31\xff\x59\x88\x9d\x15\x64\xba\x6d\xb8\xf8\x45\x57\x7d\xd1\xa1\x4e\xda\x88\xba\xd4\x09\xe8\xfe\x86\xcf\x5d\x74\x89\x4c\x4f\x41\xa2\x49\xfd\xbb\x82\x04\x51\x97\x85\x08\xd1\xe8\xb2\x11\x00\xfb\x9b\x6d\x2c\xba\xc2\x45\x27\x18\x0a\xd4\x9f\xe8\x52\x94\xfe\xd1\x96\xe7\xf6\xb3\xad\xcf\xb6\xb2\x47\xa3\x34\x63\x80\xda\x7a\x70\xc3\x07\xbe\x5e\x31\xc8\x9d\x80\xa7\x5a\x0c\x39\x8b\x01\x4d\x01\x33\x2c\x0c\xdb\x8c\x71\xb0\x69\x9c\xe5\xa1\x1e\x82\x40\xcd\x86\xd3\x56\x0c\x4d\xaf\xa3\xd8\x16\x3d\xca\x5a\x90\x66\x57\xc4\xec\x18\x6a\x1f\x07\x94\xe7\x46\x06\x30\xe3\x6e\x10\xe0\x79\x11\x07\x1e\x43\x89\x83\x74\x05\x05\x47\xb8\x18\x72\x20\xa4\x2e\x68\x5a\xa1\x86\xf6\x90\x71\xb2\x69\xec\xd0\x50\x5d\x31\xc0\x35\xc2\x5d\x2e\x86\x04\x6a\xc0\x95\xdc\x88\x01\xe6\xf3\x8d\x01\x57\x72\x73\xc4\x87\x14\x6a\x5c\xf6\xc8\x20\x94\x56\x8c\x2e\xc5\xa9\x2e\x86\x76\xd8\x71\xb1\x38\xff\xc2\x6d\x2a\x86\xac\x0d\xe9\x7f\x9b\xf6\xad\xa1\x51\x65\xc0\xed\x68\xdf\x32\x68\x35\x08\x5a\xbd\x2a\x07\x7e\x48\xc3\x46\xf2\x33\x4d\x93\xd7\x90\x3c\x91\xb0\xa1\x69\xe0\x1a\x8a\x2a\x83\xdc\x2c\x07\xef\xe5\x50\x21\x3a\xa0\x58\x9a\xb3\x04\x5f\x8b\x91\x64\xaa\x69\xce\x1a\x9a\x57\x07\x11\xea\xf8\xf4\xc5\x90\x64\x91\xfb\xc1\xac\x69\x31\x24\x59\x03\x76\xa7\x7a\x8a\xb4\xb8\x0e\x52\xed\x2b\x28\x0c\x35\xa7\x44\xca\xb6\x7a\x59\xe5\x50\x93\xc5\xb9\x88\xb1\x8f\xa1\x11\x76\x90\x1d\x92\x68\xa0\x18\xb2\x3b\xa3\x33\x21\x6e\xca\xd0\xfa\x02\x26\x5c\xab\xbc\x30\x42\xc2\xc5\x80\x6a\x55\x4f\x91\x36\xd7\x81\x73\xfc\x6f\x25\x86\x3b\x9f\xc4\xeb\xd2\xd4\x47\x5a\x8a\x3f\x41\x16\xe5\x56\xdd\x53\xc5\x23\xa0\xe4\x9a\x66\xaf\xa1\x86\x75\x4c\xe6\xe8\x12\xaa\x1d\x19\xd3\xb6\xe8\x51\xc2\x35\x10\x86\xc0\x57\x8b\xa1\x2a\x84\x44\xcb\x4d\xdf\x91\x21\x2b\x34\x82\x1e\xbd\x16\x52\x96\x81\x10\x43\xd4\x7a\x0c\x99\x1c\x20\xec\x0a\x18\x58\x31\x54\x95\x92\x0c\xa3\x55\x4f\xb7\x96\xd8\x01\x65\xd1\x0b\x63\x48\x59\xc6\xc3\x3e\xc2\x4c\x0c\x29\x0b\x11\xc9\xe6\x6c\x8b\xa1\x1a\x94\xa8\xe3\xd6\x3c\x39\xf2\x2a\x03\x10\x71\xd2\x47\x84\x71\xc8\x41\x1c\xb2\xc9\xd9\xc2\x30\xe4\x18\x49\x73\x1a\xf9\xb7\x62\xc8\xbe\x8c\xa4\x39\xad\x41\x2a\xc7\xe7\x4d\x41\x8c\x69\x90\xca\xa1\x2d\x96\xd4\xcf\xe5\xf0\x22\x6a\x8c\x1d\x70\x34\xc0\xac\xc6\x94\x5b\x99\x07\x3f\x72\x98\x0c\x68\x0e\x02\x9a\x9b\x5e\x05\x53\x3b\xeb\x3c\x58\x7b\xce\x84\xa9\xa2\x03\x6c\xbe\xa6\xa7\x81\x51\xcf\x41\xd4\xf3\xe5\x31\x99\xea\x41\x67\xa1\x47\x8e\xc9\x94\xa7\x99\x27\x3f\x42\x0d\xa6\x4a\x4f\x42\xa3\x9b\xc6\xf9\x29\x19\x01\xd9\xaf\x11\x44\x1e\x06\x4b\x07\xc1\xd2\x57\x85\xfe\x4c\xe2\xdb\x62\x12\xf1\x42\x5e\xc0\x98\xaa\x3d\x27\xd4\x80\xd0\xb5\x30\xa2\x3a\x88\xa8\x2e\x0a\x87\x53\xe3\xeb\xbc\x68\x1e\x3f\xa4\xa9\xf1\x75\xc2\xd7\x34\x38\xa4\x29\x51\x20\xfa\xba\x11\xba\x16\x53\x8d\x26\xc9\x46\x4c\xeb\x16\x53\xb9\x85\xfc\xd7\x62\xb7\x87\xe9\x47\x62\x42\x14\x00\xe1\x8a\xa9\x28\x43\x46\x92\xa6\xbd\x65\x4a\x01\x26\x77\x1b\xa4\xd4\x98\x9a\x55\x67\xb3\x2d\x7a\x54\xa7\x39\xb9\xc8\x8d\x87\x7e\x2a\xb7\xcc\x94\x5b\x8a\x42\xeb\xf4\x6e\x93\x48\xbb\x75\x48\xda\xd4\x2a\x32\xe1\x5a\xb4\xdd\xcc\xfe\x6b\xeb\xa3\x8a\xb6\xbc\xc8\x13\xa5\x06\x11\x6d\x31\xb5\xac\xce\x61\xf3\x8c\x4b\x8e\x84\x14\x2a\x62\xbd\x87\xa9\x53\x62\x92\xab\x1e\x2f\xd7\x98\x1a\x52\x27\x77\x9b\x7c\x6f\x31\xbd\xdb\x04\xa6\xb7\xce\x59\x9d\xde\xed\x39\x31\xda\xa3\xd0\x9e\xaa\x3e\xe6\x62\x6b\xdd\x34\xd5\x9c\x33\xf9\x89\xa6\x15\xd1\x48\xf6\x98\xf0\x16\xe5\x57\xe5\x84\xb8\xee\x64\x75\x8b\xa9\xad\x84\x7c\xe0\x4d\x13\xce\xd4\x4c\x3a\x11\x73\x34\xe1\x90\xc9\x25\x0b\xdb\xe2\x7c\x11\x24\x1e\xe6\x73\x29\xb6\xa5\xba\x73\xc2\x5b\x68\xb0\x31\x4c\x3e\x08\x93\x2f\xc5\xb6\x24\x0a\x46\xc9\x2b\xac\x4f\x29\x00\xd0\x8f\xad\x7b\x7c\xb5\x8a\x4e\x32\x58\x29\xad\x1b\x4a\x1f\x13\x2c\xe4\xe2\xb9\x57\xdf\x49\x12\x72\x81\xe7\x63\xaa\xdd\x24\x15\x4c\x03\xc9\x2b\xa6\x96\x4f\xd2\xc2\x08\x3b\x1f\x53\xa6\x64\x22\xd3\x10\xca\x16\x53\xa2\x30\x3f\xdb\x62\x10\x9a\x43\x09\xd4\x2f\xa0\xbe\xc5\x92\x03\x21\xab\x4c\x51\xce\x37\x74\x3f\x00\x9f\x34\x9f\x5c\x2c\x6d\x23\x0b\x3a\xd1\x7f\x5f\x4d\xab\x58\x7b\x98\x12\x91\x27\x63\xc1\x81\xf4\xfe\x2f\x84\x60\x13\xd7\xc4\x42\x0e\xea\xdc\x94\xa5\x1c\x04\x20\x40\xeb\x08\xfd\xe6\x5a\x8f\xc5\xab\x8f\x53\x77\xac\xeb\xf7\x55\xde\x27\xed\x30\x4b\x31\x64\x21\x74\x68\x74\x59\xb7\x3f\xde\xfe\x38\xa8\x0a\xab\xde\xac\x42\xaf\xbf\x34\x5c\x90\x95\xbd\x8d\xd3\x2a\xdb\x02\x3b\x4c\xcd\x83\xd0\x98\xb1\xb8\xfa\xda\x37\x96\x8e\x54\xc0\x10\x34\xcd\x2e\x4b\x63\xe8\x02\xe3\xb6\x20\x06\x2c\xaf\xfe\xe2\xf1\x27\x48\x2d\xcc\x9b\x13\x40\x6a\x36\x42\xd2\x62\x69\x0e\x5d\x64\xce\x23\x55\x79\x2c\x95\x97\x4b\x6a\x00\x4b\xb4\xa4\x06\x0b\x79\x45\xe3\x8c\x10\x9b\xb1\x00\x81\x07\x6b\x3f\x96\x8f\x3f\xa8\x9b\x26\xa5\x8b\xa5\x85\x63\x25\x9d\x68\x44\xa5\xc5\x52\xd7\xb1\x00\xbf\x01\x3a\x2f\x96\x9e\x17\x0b\x02\xa1\x15\x60\xa9\xeb\x58\xe8\x3a\x74\x86\x5c\x0a\x31\x24\xf0\x29\x78\x23\xc7\xd2\x0e\xb2\x10\x59\xd4\xe6\x2f\x5f\xfa\x35\x68\x8b\x67\x7d\x69\xf4\x20\xcb\x4f\x1b\x1c\xe5\xa5\xd0\xb2\x70\x32\xf7\x91\x5d\xd2\x8c\x35\x6d\x8b\x09\xa9\x2b\x59\x98\x57\x2b\x8f\xd9\x52\x13\x0a\x3a\xe8\x55\x5d\x1c\xe5\x11\x92\x03\x89\xea\x1f\x4b\x79\x64\x01\xf8\x85\x03\x74\x2c\x4d\x23\xa4\x0b\x6a\xa3\x59\xc5\xd5\x5f\x20\xed\xe9\x13\xbd\xa4\x19\x0b\x79\x44\x75\xfa\xd2\xe4\xba\x80\x42\x07\xa4\x21\x96\x5c\x03\x79\xf5\x9b\x2a\xf6\x25\xd7\xb0\x36\x3f\xba\x5e\xda\x43\x48\x32\xd4\x06\xb4\x7f\xa9\x40\x59\x28\x50\x74\xaf\x5c\x2a\x50\xc0\xa5\x68\xc3\x95\xd0\xc2\xba\x92\x9a\x5c\xfa\x57\x2e\xc9\xc8\x82\x8c\x10\xb0\x1e\x66\xf0\x0f\xf2\x15\x35\x30\xaf\x62\x49\x46\x16\x0a\x94\xe1\xd6\x6a\x75\x05\xfd\xb4\x69\x24\x5a\x52\x96\xf5\x1d\x54\xd1\xa3\x82\xcc\x82\x8c\x4c\x98\xb8\xa5\x20\x03\x00\x46\x9b\x4e\x5b\x46\x62\xc1\x48\x10\x59\x16\xa1\x95\x04\xe0\xd3\x06\x88\x55\x88\x92\x11\x20\x62\x34\xb5\x9f\xa1\x3d\x35\x00\xe6\x3f\xe1\x2d\x02\x04\xc7\x00\x1d\xb5\x4d\x4e\x74\xc8\x35\x00\x8e\xda\x08\x11\x8b\x90\x28\x04\x0a\x51\xb5\x65\xa1\x88\x42\xfa\xa5\x06\xca\x6d\x88\x99\x11\x81\x0c\x31\x39\x5f\xa1\x0c\x11\x60\xb7\xab\x40\x0b\x6d\x9e\x41\x76\x94\xd3\xe6\x7d\xfc\x03\x89\x00\x98\xaa\x08\x6d\x9e\x62\x6d\xa8\x41\x33\x5b\x53\x44\x92\x8b\xa2\xba\x2c\xe4\x07\x80\x64\x6d\x2a\x48\x42\xe3\x45\x24\xb9\x68\xaa\x43\x42\x3a\x01\x3a\x6b\x9b\x70\x0d\x21\xaf\x4f\xb2\xa7\xa2\x52\x2d\x54\x6d\x06\x86\x09\x35\x0f\xe1\x75\x07\xc9\xb5\x4d\xe4\xa4\xd0\x30\x11\xdc\x6d\x32\x41\x45\x78\xb7\x03\x96\x5d\x5d\x40\xa8\x9f\x08\xac\x97\xc0\xc1\x46\x74\x47\xcf\x45\xd6\x15\x35\x54\x5a\xc6\xc0\x39\x89\x33\x61\xa6\xa9\x88\xbc\xb5\xfd\xe0\xc2\x84\xb7\x36\x26\x5f\x41\x6a\xc3\xfb\x18\xd3\xe6\xd9\x47\x95\x97\xb1\xae\xfc\x0a\x22\x1a\xbe\xe1\xa1\xef\x93\x07\x40\xfe\x3c\x16\x5e\x54\xfe\xe8\x7d\x8c\xe0\x47\x68\x61\x68\x79\x8c\x60\x10\x10\x2b\x33\x5b\x85\x99\xad\x4e\x17\x5a\x23\x03\xf9\xad\xba\xe2\xa1\x79\xad\x22\xf2\x76\x75\xc5\xc3\xf0\x5a\x45\x3e\xd2\x5d\xe3\x4b\xe8\xa7\x1d\x8f\x6d\xb1\xf6\xda\x27\x23\x6f\x97\xb9\xe6\x22\xbc\x56\xf1\xd0\x16\x8f\x6c\x68\xa0\x8c\x87\x71\xf1\xa2\x86\x37\x2d\x5e\x46\xcf\x8b\x1a\xde\xb4\x78\xf9\x11\xa1\x2a\xf4\x5c\x88\x8f\x95\xf0\x4c\xc8\x9f\x07\xfc\xf9\xe9\x6e\x6b\x8f\x0c\x9c\x95\xb4\x9a\x84\xf6\xc8\xf8\x18\x3d\xaf\x95\x60\x14\x01\x00\x85\x69\xe7\x62\x6b\x8f\xdc\x87\x6d\x4d\xaa\xc2\x2a\x6e\xda\xbf\xc0\xbe\x8c\xed\x45\xdc\x85\x99\x40\x63\xb7\x1c\xfd\x06\xf3\x49\xad\xa8\x00\x16\xb1\x0b\x1b\x68\x57\x6a\x14\x40\xb0\x30\xb3\x42\x6c\xef\xe6\x4e\x5e\xdf\x94\x77\x21\xa8\x45\x80\x64\x51\xd4\x8b\x6e\x2d\x96\x3b\x79\xfd\x62\x5c\xc1\x96\xc9\xdf\xe0\x82\x1a\x32\x20\x62\x45\x80\x58\x61\x5a\xbc\x30\x05\x59\x00\x5c\x51\xd4\x9e\x0a\x5b\x13\x64\x20\xeb\x07\x14\x6f\x6b\xa1\xdc\x24\x1a\x34\x20\x60\xcb\x22\x6c\x2e\xb5\x01\x01\x42\x56\xc4\x4e\x4e\xa1\xcb\x72\x6f\xad\x1a\x3b\x39\x85\x5e\x1c\x97\x1e\x96\x26\x33\x23\xbe\x3f\x04\xb6\x88\x9d\x44\xc1\xf4\x7a\xb1\xb5\x6a\x80\x75\xd1\x0b\xd4\x53\xac\x8b\x00\xd8\xa2\x13\x45\x16\x5b\xfd\x00\xf8\x16\x45\xad\xee\x56\x59\x09\xbe\x45\x97\xb5\xdd\x3e\xfe\x9b\x78\x11\xe0\xb1\x62\x2b\xf9\x03\x7f\xd1\x0b\x37\x65\x4b\x0d\x76\xe7\x47\xc8\xdb\x56\xa6\xdf\x1d\x67\x42\x48\xe5\x96\xef\xdf\x83\x71\x71\x2d\xb6\x4c\xfe\xe6\x0d\xd7\x61\x49\x04\x8c\xd8\xf9\x94\x77\x8d\x40\x5b\x01\x7e\x93\x8c\x07\x8c\x9a\x10\x02\x23\x00\x83\xee\x84\x6d\x05\x88\xd0\x59\xd8\x16\x13\xd2\x5b\x72\x93\xae\xc4\x00\x06\x31\x30\x02\x0c\x8c\x42\x3e\xab\xd8\xbe\xe1\x7b\x31\x7a\x18\x4d\x81\xa2\x03\x2c\x8c\x62\x50\xc3\x96\x66\x80\x7c\x61\xce\xbd\xd8\x9a\x33\x49\x13\x57\x8c\x73\x10\x39\x3a\x80\xbe\x28\x2a\x93\x05\x8e\x0e\xa0\x2f\x7a\xe1\x9e\x6f\xdf\x70\x60\x30\x2e\x05\xbf\x2d\xb1\x01\x0e\xc3\x54\x7d\x61\xaa\xb9\x10\x49\x5a\xe7\xa0\xad\xdd\x13\x3c\xe9\x5e\xd0\x30\x6f\xed\x9e\x3b\x1f\xff\x0e\xa8\x54\x98\x8f\x2e\x40\xd0\xe8\xc5\xbb\xe9\xe3\xbf\x21\x49\x40\x4a\xc5\xd6\x14\x0a\x90\x46\x51\xa5\xbd\xb5\x85\x6e\x48\xd2\xe5\xb8\x24\x49\x60\x6b\x74\x19\x42\x51\x35\x62\x43\x92\x64\x08\xb7\xa6\x12\x80\x36\x3a\xe1\x63\xb1\x25\x49\xe0\x66\xf4\xe2\x85\x51\xd7\xb0\xb1\x8b\xe8\x26\xb8\x15\x18\x80\x71\xea\xa7\xf7\x51\x81\x01\x14\x8d\xa2\xca\x7c\x6b\x04\x01\x4d\xc3\xdc\x81\x21\x04\x76\x00\x9a\x51\x54\x99\x3f\xca\x10\xcf\x41\x5b\xc5\xaa\xdb\x2a\xb6\x83\xf5\x32\x03\x5e\x80\xa3\x71\x81\xf1\x12\x8f\x34\x07\xa8\x8c\x0e\x62\x72\x3c\x5a\x46\x1e\x5c\x28\x41\xd6\x09\xd3\xe4\x05\x48\x52\x97\xe2\xf4\x23\x19\x7a\x92\xe6\x98\x6f\x30\x4c\x9c\x17\x0f\x21\x24\x4a\xd8\x22\x69\xc4\x23\xcd\x81\xa5\x7a\x54\x59\x92\x51\xaf\x1b\xa2\xf1\xa8\x8c\x04\x94\xca\xfc\x83\x61\x22\xbd\x20\x91\x5e\x07\x82\x27\x1e\x75\x0d\x80\x6c\x5c\x7a\x47\x3e\x52\x26\xf0\x33\xba\x2c\x82\x28\x56\xf1\x24\x51\xe9\x27\xbc\xeb\xa3\x0c\xf2\x20\x83\x68\x05\x78\x34\x7c\x3c\x37\xfe\xb0\xbc\x10\x8f\xa4\xe3\xa9\xfc\x88\x7d\xeb\x51\xb1\x00\x80\x46\xb9\xa6\x5f\xb1\x69\x4f\x63\xbd\x5c\x7b\xb9\x86\xa7\xf1\x23\x2f\xc4\x23\x9d\x00\x4d\xa3\xeb\x0e\x2e\xce\x78\x00\x8e\xd1\xb5\x95\x3d\x2a\xfa\x9e\xce\xe8\x6d\x5e\x5e\x1f\x2c\x8c\xa2\x5f\xcb\xa3\x79\xe2\x19\x78\xe2\x42\xdc\x1f\xfd\x26\x81\xbe\x28\x5a\x02\x1e\xcd\x13\x40\x5f\xf4\xcb\x2a\xfd\xac\x81\xbe\x30\xb7\x49\x3c\xf2\xfa\x0f\x74\x02\x34\x80\x78\x34\x50\x80\x86\x71\xa9\xb7\x78\xd4\x0f\x3c\x90\x0e\x5d\x36\x44\xc6\x08\x90\x31\x8a\xc6\x01\xa1\x31\xe2\x99\x38\xff\xda\xbc\x16\x8a\x67\x9d\x54\xd1\xbc\x04\x06\x38\x8c\x7e\x41\xa3\x1f\xd5\x81\xe0\x60\x74\x60\x60\xe2\x91\xd7\x07\xfb\xa2\x5f\xa7\x5f\xb9\x38\x10\x05\x83\xc2\x4c\x2c\x18\x4f\x12\x02\x73\x08\xc6\xa3\xca\x00\xc0\x8b\xab\xa3\xaf\x13\xea\x22\x9e\x6d\x5b\x83\x2a\xf7\x31\x09\xc1\xd5\xcb\xf9\xf7\xa7\x58\x24\x8c\x20\x37\xe1\xa5\xd6\xe4\x51\xc9\xf0\x3c\x0c\x1b\x36\xf9\x51\x3a\x00\x06\xbe\x80\xc5\x1b\xa2\x63\x04\x90\xf0\x5d\xb2\xfb\x68\x71\x7d\x92\x74\xf4\xcb\xa3\x2c\xcd\x00\x1d\xa3\x6b\xc2\x13\x37\x3e\x1e\x7d\xa9\xa1\x9e\x02\x5f\xc4\x03\x81\x00\xff\x2b\x1e\x45\x81\xe7\xe3\x30\x60\x7d\x7c\x24\x10\xcf\xa7\x13\x76\xfe\x28\xf2\x45\xbc\x68\x14\x6e\x7c\xbd\x5e\xd5\x8c\xef\xc1\x72\xc2\xff\xbc\x8a\x02\x2f\x0c\x8a\xe6\x97\x57\x3b\x29\xd8\xf4\x5d\x9a\xf1\x6a\xd3\x78\x0b\x7b\xca\xd5\x7f\x65\x4a\x5e\x60\xc7\xef\xcb\xaf\xba\x55\x9c\x22\x56\x42\x3c\x8c\x78\xe1\x53\x2e\x04\xf8\xd7\x40\x54\x60\x31\x8a\x01\x3f\xaf\xd6\xd4\x17\x0e\xc4\xe8\x1e\xc1\x2f\xe2\x85\x40\x18\x2c\xf6\x4a\x20\xc0\xc3\xe8\x17\x02\xd6\x2b\x81\x00\xde\xa2\x83\xd3\x1c\xaf\x4a\x8a\x97\x48\x54\xd0\x93\xe2\x55\xcd\x08\x9a\x45\xbf\x11\xb0\x4c\xc3\x18\xa4\x61\x2c\x80\x1b\x87\x59\x18\x03\xf8\xfd\xae\x81\xec\xd5\xd0\x00\x14\x7f\x37\x1c\xeb\x55\x6f\x01\x0e\x86\xf9\x6a\xe2\x55\x1e\x79\x61\x37\x34\x90\x99\xbd\x31\xcc\xde\x08\x3c\x42\x08\x8a\x11\x80\x62\x94\x9b\xc7\x4c\x50\x8c\x00\x14\xe3\x52\x47\xf6\x6a\x40\x05\x15\xa3\x18\xae\xf4\x6a\x7b\x00\x0a\xa3\xeb\x41\xf3\xca\x94\xbc\x80\x2b\x1a\xc1\xf4\xea\x6a\x01\xf0\x45\x37\xb4\xeb\x55\x23\x01\xf2\x45\x01\xae\x20\x5e\x7d\x2e\x81\xbc\x28\x37\x0f\xd0\xab\xfa\x01\xe4\x8b\xfe\x3b\x26\xaa\x1f\x00\xba\x28\x5a\xb0\x5e\xf5\x93\x00\x5d\xf4\xdf\x31\x91\x24\x01\xa0\xd7\x81\xc6\x08\xf1\x2c\x02\x3c\x8b\x02\xca\x40\xbc\xda\x47\x5f\xe9\x0f\x44\x50\x78\xbd\x78\x11\x64\xf4\x0a\x79\x0d\x5a\x7d\x01\xe7\xd5\x82\x25\xec\x45\x90\x8f\xb2\xff\x16\x5a\x43\xc3\x8b\x20\x73\x73\x3b\x84\xe5\x8b\x17\x32\xf2\x5b\x09\xc9\xc8\x0b\x19\x31\x96\xeb\xd5\xd0\x00\x66\x85\xb9\x07\xe3\x55\xf8\x00\xbf\xa2\x68\xfa\x7a\x75\x7b\x7a\xb9\xdb\x1a\x9f\x5e\x15\x88\x40\x5b\x74\x2d\x4d\xaf\x51\xa2\x60\x5a\x14\x0d\x64\xaf\xfc\x00\x40\x16\x1d\x24\xe5\x78\xf5\x8e\x7c\x51\x20\x6a\xb8\x7b\x8d\x13\x7d\x91\x47\x34\xcc\x08\x6a\x11\x00\xfe\x75\x8d\x29\xaf\x56\x05\xb0\x2d\x7a\x85\x5b\x7e\x95\x5a\xde\x64\x0b\xae\xee\xed\x90\x02\xbc\x88\x28\x60\x2d\xc7\xab\x55\x13\x6c\x8b\x0b\x1c\xcd\xf8\x54\x20\x82\x5a\xd1\x8d\xf9\xfe\x14\x51\x40\xb0\x28\xce\x51\x08\x8b\xf8\x20\x0a\x60\x2f\xc7\xa7\x55\x01\x24\x8b\x5e\xb9\xdb\x9f\xfe\xd6\x5f\x81\xc6\xc2\x10\x8a\x6a\x11\x5f\xa1\x79\x2e\xb2\xa8\x16\xf1\x15\x9b\xaf\x54\x85\x55\x0f\x55\x34\xaf\xed\xe1\x3b\x59\x68\xb4\xab\x9f\xb6\x87\x0f\xe9\x82\xbc\x3d\xf1\x29\x5d\x7c\x5e\x64\xee\xd0\xa7\x8d\x91\x14\x10\xbd\x72\x7c\x3f\xa5\x0b\xc0\x2c\x8a\xd6\xb4\x4f\xbb\x22\xc0\x16\x5d\xb3\xd2\xa7\x09\xe1\xbb\x0d\x08\x61\x42\xde\xed\x0f\xb9\x41\x85\xda\xa7\x02\x12\x38\x8b\x42\x6a\xc7\xf8\xd4\x36\x02\x67\x61\x0a\xc0\xf8\x54\x2d\x02\x67\x71\x91\x19\x2c\x3e\x55\x8b\xe4\x35\xed\x95\x37\xfc\x53\xb5\xf8\x35\xf6\x11\xee\x4f\x6c\x8b\x00\x6a\xa2\x1b\x05\xf5\x69\x1c\x20\xc3\xa9\x59\xf8\xe2\xf3\xf1\x07\xf5\xa1\x37\x64\x90\x4f\x4d\x1c\xe0\x0d\xdd\xa0\x1b\x10\x1c\xb2\xa8\x0c\xa2\x51\xe5\x50\x79\x64\x0d\x71\xf9\x94\xe9\xc9\x60\xd1\x0d\x5e\xf9\x64\xd9\x01\x72\x28\x9a\x40\x3f\x9f\x62\x72\x5a\x74\xe3\x59\x3e\xc5\xfc\x4f\xec\xa8\x5f\x95\x5f\xed\x9b\xf0\x12\x76\x48\x1d\xdb\x07\x4f\x2d\x2f\xf6\xc9\x53\x83\xd5\x50\x3c\x98\x9f\x4f\x26\xb8\x0d\xbd\x71\x61\x3e\x8d\x75\x5f\x5e\xb8\xde\xe6\xbf\x70\x8b\x36\x4d\x6b\x98\xa6\xd5\xe8\x41\xa1\x1e\xe2\x83\x0b\x07\x78\x37\x3e\x7d\x99\x81\x77\x28\x15\x15\xef\xa7\xc5\x0f\x78\x87\xae\xad\xe5\xd3\x61\xe9\x83\x31\xef\x9e\x48\x55\x70\x5f\xde\xc7\x0e\x10\x6f\x08\xec\x10\x00\x34\xf4\x5e\xea\x7f\xfe\x6c\x01\x1a\x36\x59\x3a\x3a\x66\x8e\x6d\x92\x8e\x7d\xc0\x00\x63\xd3\xd8\xc2\x2a\x6c\x70\x0f\x3a\xf1\x1f\x5b\xdc\x83\x4d\x4a\x8d\x4e\x78\xc4\x06\x03\x21\x0b\x2e\x75\x1e\xd2\x0d\x06\xc2\x9f\x4d\x0e\x8d\x4e\xc4\xc4\x06\xf1\x20\x8b\x1c\x2a\xd8\x6e\xfb\xc0\xa8\xb5\x0f\x24\x59\x34\xee\xfb\xa8\x36\x9f\x5c\x69\x47\xe3\xbe\x49\x93\x91\x05\x3f\x16\x7e\xc4\xa8\xb5\x41\x3b\x28\xdc\xf3\x7d\xa0\xd7\xda\x24\x8d\xed\x28\xce\xb7\x39\x63\x37\xe8\x03\x7d\x38\xc7\xe9\xb4\x21\xe1\x35\x19\xf3\x2d\x14\xc1\x3e\x38\xa4\x38\x76\xef\x63\xfa\x63\x72\x92\x7d\x34\xbf\x9a\x56\xd1\x96\x2b\xb1\x6c\x6b\xd9\x16\x43\xe5\xdc\x6e\x90\x07\x2e\x42\x82\xb6\xc8\x03\x9b\xa4\xb2\x1d\xb7\xea\x7d\x60\x75\xda\x07\x56\x27\x10\xdd\xb7\xd9\x35\xf6\x41\xe2\x22\x42\x37\xb7\x99\x67\x37\x99\x67\xcd\x90\xb6\x45\x28\xd8\xc0\x12\x14\xcc\xda\x1b\x6c\x82\x2c\xe0\x53\x92\xf6\x6f\xb0\x09\xb2\x08\x10\xce\x98\x76\xd8\x23\xd2\x27\x08\x0c\xfb\x08\x7b\x44\xfb\x55\x9d\xf6\x76\x25\x36\xfb\x38\xe9\x71\xbb\x12\x9b\x1e\x1b\x6d\x6d\x27\x84\xb9\x0a\xc0\x85\x0d\x62\x41\x16\x6c\x5a\xb7\x2d\x9b\x7f\x98\x50\xa3\xc7\xc7\x09\xc1\x49\x8e\xc1\x1c\x1f\xdb\x7a\x6c\x8b\x1f\xb1\x60\xed\xc3\x73\xef\x7a\x3d\x6e\xed\xcb\x4a\x78\xe4\x70\xab\xd9\xa6\xd1\xad\x2e\xce\xeb\xda\x73\x15\x86\xa3\x7f\xdd\xb4\x97\xb5\x9f\x6c\xc7\xeb\x50\x61\x41\xc7\xe4\xe4\x7c\xb6\xf5\xd9\x96\x55\xae\x57\x3e\x40\x9d\x1c\x0d\xbb\x78\x61\x0a\x2c\x28\xc1\xa8\x5b\xd0\x83\x5d\xb8\x43\xf3\x18\x54\x55\xab\x3a\x11\x5a\x07\x55\xd3\xaa\x8f\xaa\x1c\x57\xe1\xb5\xd9\x00\x1b\x98\x48\x6e\x9b\xe6\x64\x03\x63\xd0\x51\x76\xef\x02\x73\xb9\xc1\x31\x28\x84\xb1\x6e\xc0\x0c\xb2\xc8\x95\xc0\x65\x77\x93\x04\x25\x8b\x3b\xbf\x62\xda\x82\x1a\x6c\x40\x0d\x4c\x54\xb6\x81\x2e\xc8\x82\x55\x65\xda\x05\xf7\xbd\x4d\xc2\x94\x02\x09\xdf\xe5\x72\x42\x17\x13\x82\x02\x14\x58\xd0\x0d\x48\x41\x21\x92\x75\x8b\x52\xb0\x41\x29\xe8\xf3\xf2\xc7\xc7\xaa\x3c\x00\xa8\xd7\x77\xb9\x6c\x9e\xbc\x0a\xcd\x25\xbc\x1d\x3d\x5c\x29\x1a\xf7\x0d\x3e\x41\x16\x36\xcf\x1c\xe1\x4a\x77\x41\x2f\xd6\x5c\xc2\xdb\xb6\xa0\x26\xa4\x95\xd8\xa2\x12\x6c\xf3\x19\xe3\xb1\xb0\xc5\x20\xd8\x25\x89\x4a\x27\xd0\x62\x17\xa9\x09\x50\x04\x1d\xf7\xca\x0d\x1e\xc1\x9f\x5d\x92\x39\xbd\x48\xff\xb2\x85\x25\xd8\x40\x11\x74\x5c\x2e\x37\x78\x04\x59\xd8\x3c\xe3\x82\x51\xdd\xe4\x85\x29\xcd\x4d\x6b\xae\x04\x8c\x2a\x3a\xfe\x6d\xfe\xe4\x6d\xfe\x64\x54\xe2\xbb\x48\x86\x40\x2a\x30\x87\xdd\x06\xa2\x20\x0b\x7e\xe4\xf8\x0a\x42\xb0\xcb\xf0\x47\x86\x3a\xdc\xda\x71\x33\x54\xe6\x38\xdc\x5a\x18\xd5\x39\x18\xfd\x70\x6b\x49\x1a\xd1\x3c\x13\xd3\x09\x4d\x8e\x89\x27\x67\xda\x16\xe9\x3a\xda\x45\x5b\xd3\x09\x21\x28\x13\x06\xb6\x45\x2b\xd8\x05\x46\x15\x67\xc2\x6d\xb2\xe6\x6d\xb2\x66\xa2\x71\x77\x91\xa4\x15\x8c\x62\x60\x21\x6c\x01\x0c\x36\xc9\x70\xcc\xa1\xb7\xcb\x72\xed\x93\xb2\x0d\x22\x2e\xb6\x98\x06\x1b\x00\x83\x71\x78\x98\xc2\xb6\xd0\x9e\x11\x9d\xb6\x4b\x78\x00\xf0\xc8\x1b\x2e\x21\xaa\xb2\x0d\xcc\x81\x69\xf6\x36\x49\x73\xb2\xa0\x2d\x47\xbf\x1d\xfd\x5e\x54\xfd\xdd\x56\xbc\x8b\x84\xab\x3c\xb4\x6b\xef\x8f\xab\x42\xae\x9d\xe6\x59\x7b\x9c\xdc\xc3\x4c\x4e\xce\xc7\xeb\x4d\x79\xf9\xd1\x9b\xf2\xba\xcd\x49\x86\xc6\xe1\x42\x49\x7f\xca\xcb\x8f\xde\x94\xcf\x6d\xfe\xd8\x66\x28\xb1\xa9\xaa\x77\x81\xfe\x34\x28\x71\xf9\x9c\x5c\xf2\xc4\xe3\xb8\x69\x4b\x92\x54\xf0\xf4\x03\x1a\x79\x8b\x84\xb0\x41\x42\x18\x00\xbd\x6d\xd3\x59\xef\x33\x29\xd3\xc0\x51\x6c\x9f\x92\x24\x80\x0d\x06\x46\x87\x6d\x32\xeb\x6d\x32\x6b\x1c\x53\x36\x58\x06\x59\x10\x79\x09\xbd\x3e\x61\x80\xf7\x09\x03\xdc\x38\xb7\x27\x66\xb4\x4d\xe2\xeb\x71\x24\xd3\xba\x4f\xcc\x68\x9b\xbc\xd7\x66\xfa\xdb\x24\xbf\xfe\xb3\x4f\x08\x57\xb3\x4a\x46\x02\x30\x04\x73\xff\x6d\xc1\x10\x36\x60\x08\x83\x04\x0e\x1b\x14\x84\x2c\xec\x91\xaf\x2e\x27\x84\xf6\xbe\xf1\x68\x88\x7c\xb0\x49\x58\x64\x2e\xc0\x7d\xa2\xaa\xdf\xe7\xc5\xce\xa7\x68\xbe\x01\x46\xc8\x82\x53\xc4\xda\x9f\x52\x29\x00\x10\x06\xb1\x20\x1b\x14\x84\x2c\x92\xf7\x04\x46\x75\x9f\xb7\x73\xbc\x59\x55\x58\x97\x13\x66\x7a\x83\x7c\x50\x9a\xcd\xcb\xcd\x9c\x29\x28\x0f\xa0\xe3\xf6\x59\x9d\x50\xb2\xd9\x03\xe8\xb8\x7d\x4a\x92\xce\xa4\x39\xa3\x1c\xfc\x88\x95\x6e\x93\x32\xe9\x1a\x6c\x2d\x79\x93\xb2\xc8\x55\x05\x5a\x75\x9f\xcd\x1d\xc2\xfd\xae\x71\x11\x4d\xf5\xbd\x49\xf5\x3d\x70\x98\xd9\x66\xfa\xde\x64\xfa\x1e\x38\xcc\xec\x53\x62\x03\xde\xc1\x28\x27\x6d\x75\xdb\xea\xb6\xc5\x20\x86\xa3\x4f\xb1\x77\xe0\x98\xb2\xcf\xe1\xda\x0f\xd6\x9e\x1b\x2c\xfa\xc1\x06\xfd\x60\x10\x58\xb2\xcd\x23\xbe\xc9\x23\x6e\x1e\xc1\x7d\x4a\x6c\x00\x33\x18\x05\x96\xea\x9c\x0e\x75\xb1\x38\x37\x6b\xbf\x5c\x68\xd2\x00\x81\x63\xb0\x4f\x99\x25\x70\x0c\x46\xf1\xac\x2e\xd7\x2b\xa9\xc9\x28\x9e\xd5\xe5\x3e\xc2\x2c\x01\x77\xb0\x45\x32\xd8\x67\x40\xc2\x3d\xf7\x61\xf3\xa8\xea\xbb\x4b\x28\x1b\x04\x92\xc1\x35\x6c\x4b\x36\x88\x2c\xe3\xa3\xc0\xc4\x9d\xdb\xad\x85\x0d\x22\x1c\x7c\x8b\x77\xb0\x4f\x88\x4d\xf1\x76\xc8\x06\x01\x81\x30\xb0\x17\xec\x53\x62\x03\xa2\xc1\x28\xde\x8e\xc7\xb6\x80\x96\x95\x47\x3c\x1f\xe7\xf8\xb0\x84\x9d\x95\x78\x1c\x84\xa9\x6a\xdd\xc7\xd7\x33\x61\x46\x65\xc8\x90\xe0\x04\x1b\x70\x82\x81\xd3\xc7\x16\x9c\x60\x9f\xf8\x0d\x77\x58\x04\x80\x0a\xfe\xec\x13\x6a\xd2\x79\x34\xce\xcf\x7d\xc4\x08\x08\xd0\xc1\x06\xaa\x20\x0b\x92\x24\x43\xfb\xcd\xa6\xb5\xc9\xa6\x35\x08\x5d\xd9\xa6\x38\xdf\x40\x17\x5c\x64\xe9\xdd\xe0\x17\x64\xc1\xb4\xe1\x1a\x2e\x84\xee\x0d\x74\x41\x21\x50\x7d\x5f\x52\x93\xcb\xd4\xf8\x1c\x00\x20\x0d\xfe\x6c\xd0\x0c\x4c\x97\xb8\xc5\x31\xd8\x17\x3a\x36\x1c\x9f\xf6\x25\xcf\x03\x9e\xc1\xc0\x5e\xb0\x2f\x74\x6c\x1b\x3c\x03\x73\x2a\xee\x4b\x02\x03\x6a\x81\x29\x15\xf7\x85\xdf\xf0\x06\xbc\xa0\xa0\x1f\xd8\xa2\x16\xec\x0b\xd2\x81\x7b\xd4\xbe\x50\xbb\x6d\x12\x82\x8d\x93\x85\xbe\xb0\x05\xee\x0b\x9e\x07\xa8\x86\x2d\x90\xc1\x26\x3b\xfb\x20\xd7\xc5\xbe\x50\xc2\x6f\x92\xb3\x0f\x70\xe9\x36\x38\x07\x59\xf0\x56\x42\x86\x84\x3b\xd8\x57\xf2\x39\xa6\x57\xdc\xd7\x6d\xf3\x37\x07\x00\xca\x74\xdd\xce\x31\x99\x9a\x71\x72\x87\xae\xdb\x09\x41\x60\x4e\x57\xa2\xba\xf6\x50\x13\xd4\xfe\xfb\x92\x9a\x80\x84\x30\x88\xad\xd9\x97\xdc\x0c\xc0\x07\x26\x51\xdc\x57\x73\xf4\x8d\x25\x84\x75\xb9\x94\x8d\x2e\xf8\x14\x9c\xbb\xf6\xd5\x7e\x3f\xb2\x12\x10\x77\xf0\x0f\xb2\xe0\xc7\xc6\x8f\xdd\x1f\xbb\x3f\x5a\xe5\xd6\x76\xd3\xf2\xb3\x5e\x18\xfe\x36\x30\x08\x03\x4b\xf7\xbe\x86\xdb\x31\x4c\x8e\x4f\x8f\xf2\x29\xe0\x21\x8c\x73\x1c\x7f\x7f\x8a\xcd\x60\xbf\xc9\x60\x6f\xa6\xc6\x7d\x49\x6c\x48\x60\x3f\x00\x9c\xd9\x97\x3c\x0b\x70\x09\x97\x1c\xbd\x29\xed\x37\x70\x09\x03\x30\xbb\x7d\x49\x7f\x48\xd3\x66\xca\xc5\x2d\x50\xc2\xbe\x20\x49\xa7\x47\x79\xb9\xc2\x8b\x6d\x86\x01\x06\x47\x21\x8b\xdc\x66\x22\xa1\xb7\x99\xf0\x37\xd8\x09\x03\x6b\xc5\xbe\xc2\x6d\x4e\x6e\xe6\xc2\xef\x65\x5f\x4a\x66\x57\x92\xa1\x8b\x44\x6f\xfb\x0a\x97\x20\xe9\xcf\xc0\x76\xb0\x85\x53\xd8\x57\xd0\x16\x72\xf8\xb5\xdd\xf9\xcd\x57\xb0\x31\x40\x24\x64\xf1\xd0\x96\x55\xde\xa7\xc7\x1e\x69\xeb\x71\x42\xc9\xae\x0c\x4c\xbe\xfb\x52\x9a\xba\x9e\x5f\x92\x78\xaa\x5c\xc2\x94\xa0\xc6\xe5\xf1\x7b\x6c\xeb\x35\xf5\x3b\x07\x4b\xfa\x03\x7c\xc2\xc0\xda\xba\xaf\xd7\xb6\x70\x25\xc6\x8b\x6e\x5f\xaf\xa3\x4f\x0e\x66\x60\x6d\xdd\xe4\xf3\xcf\xe2\xa2\x8a\x1f\x95\xa6\xae\x5f\xd6\x6d\x06\x21\x37\x73\x7d\x34\xef\xad\xfb\x5c\xd5\x6f\x51\xc5\xad\x93\x24\x01\xb2\x30\x80\x59\xdf\xb7\x32\x17\xc0\x0a\xa6\x60\xdc\xa0\x2b\x64\x91\x0f\x36\xae\x43\x5b\x44\x85\x0d\x8a\xc2\xc0\x5e\xb0\x6f\xb9\x19\xf2\xe0\x0d\xd0\x05\xf6\x8d\x11\x70\xdf\x49\x73\x4c\xd3\xb8\x81\x57\xc8\x82\xdd\x86\xec\xde\xd2\x9f\x3b\xd9\x15\x13\x37\x6e\xf1\x13\x36\x08\x09\x03\xf8\xb9\x2d\x36\xc2\xbe\x4f\x7a\x44\xe8\xbe\xe5\x53\x6e\x02\xa3\xd1\xf1\xef\x5b\x32\x02\x1e\xc2\x40\xc7\xbf\x01\x45\xc8\xc2\x3c\xd5\x8c\xfe\x76\xa8\x29\x14\x0d\x42\x65\xb6\x40\x08\xfb\x86\x66\x60\xe7\xda\xb7\x34\x03\x6c\x84\x81\x9d\x6b\xdf\x0a\x45\x40\x24\x5c\xca\x82\xe6\xf8\xdb\xa0\x1f\x98\x86\x71\x03\x81\x90\x05\xd8\xdf\x3c\x07\x77\x75\xf4\xc9\x88\x8c\x1b\xae\xe1\x56\xdc\xb9\x11\x77\x80\xe2\xdf\x62\x21\xec\x1b\xca\x82\x12\x7e\x83\x8b\x90\xc5\xa2\x8a\x55\x95\xb2\x80\x7f\x30\x6e\x07\xd1\x6d\xab\xdb\x16\xdb\xd1\x9d\x50\x92\x91\x81\x7d\x65\x0b\x7c\xb0\xef\xc1\x8f\x28\x4f\xee\xe1\x7a\x25\xe9\x30\x71\xe3\x06\x17\x21\x0b\x76\x88\xa7\xe5\x96\x4e\x80\x7f\x30\x88\xb0\xdc\xf7\x74\xa8\x93\xf5\x82\xa7\x16\xe5\x60\xdf\x50\x00\x6c\x0f\xfb\x5e\x2e\x4e\x12\x02\xf3\x33\x6e\x40\x10\xb2\xe0\xd6\xda\xa3\x44\xe1\x5e\xb4\xd5\xac\x72\xa1\xbd\xee\x1c\xf2\x3b\x1c\x3d\x82\x0c\x56\x85\x2d\xb4\xc1\xbe\xb9\xee\xd8\x0b\xf6\x1d\x2e\x4e\xb0\x69\x9e\x1c\xb5\x2e\x37\xe6\x3d\xf0\x01\xf6\x2d\x05\x00\xed\x60\xdc\x5c\x98\x5b\x15\x0b\xa0\x07\x97\x92\xec\xbd\x9d\xd0\xc3\xe8\x3d\x4c\xf2\x16\x37\x14\xe0\x86\x63\xbb\x1f\x17\x27\x29\xc0\xa8\xee\xa3\xfa\x14\xa0\x11\xae\xe9\x4a\x48\x14\x40\x3d\x30\xd3\xe2\xbe\xd5\xa7\xdc\xc4\x42\x4e\x17\xe7\x75\x42\x08\x2f\xd5\xc3\xa4\xf0\x72\xc3\x6e\x28\x31\x8a\x81\xb0\x6f\x28\x40\xfd\x55\xb9\x84\x79\xeb\x07\x6a\xd9\x7d\xcb\x81\x80\x81\x60\x3e\xc5\x5d\xbd\xdb\x40\x21\x14\xa5\xbc\x8a\x49\x6f\x57\x24\x95\xca\xf9\x12\x03\x61\x57\xee\x36\x88\x69\xbb\xaa\x3c\x01\x16\x61\x00\x8f\xb6\xab\x77\x1b\x94\x83\x81\x8e\x7f\x57\x05\x0e\x10\x0c\xcc\x9a\xb8\xab\x2c\x42\x85\x45\xc0\x43\x76\x83\x6c\x90\x85\xc9\x5b\x19\x17\x96\xb9\x5d\xe1\x1a\x88\x13\xd9\x55\x16\x01\x58\x83\x81\x2f\xf9\xae\xaa\x45\xaa\x29\xe9\x2e\xbf\xb2\xad\xcb\x84\xac\x7c\xa5\xc2\xa3\xe6\x15\x1f\x15\x4e\xb2\x2a\x70\x54\xf3\x6d\x21\x70\x08\x69\xb0\x2b\x14\x80\x00\x93\x5d\x55\x8b\x54\x73\xb4\xa3\x29\xa9\xca\x20\x40\x1b\x0c\x00\x4b\x77\xc5\xa3\x78\x57\xb3\x11\x43\x57\x2b\x96\xb9\x5d\xab\x99\x21\x59\x2f\x95\xac\x20\x1f\x5c\xf3\x5f\x78\x50\x6f\x81\x11\x76\x35\x65\xb1\xf3\x6d\xf6\x6e\x8a\x2c\x34\xa2\x42\x23\xec\x0a\x19\xc1\x80\xb1\x6b\x73\x1f\x1a\x3b\x8f\xe0\x57\xa5\x19\xe0\x20\x98\xf5\x71\x57\x55\x24\xc0\x21\x14\x20\x55\x76\x95\x1b\xa9\xd2\x0c\x6e\x5d\xed\xae\x4a\x32\x25\x03\x7c\xd4\x5d\xd5\x9a\xd4\xa4\x26\xd7\xfc\x55\x39\xd4\xfe\x4b\x63\x97\x55\xc3\x45\x1f\x2c\x3a\x9c\xb3\x98\x0a\xbb\x42\x59\xb0\x7c\xec\xaa\xb8\x53\x91\x6d\xf0\xf5\xdd\x55\x45\x4a\xc5\xe2\x37\xb8\xd4\x15\x8b\xdf\x26\xd7\x69\x01\x9e\x65\x57\x39\x10\x90\x17\x8a\x9c\xa0\xc8\x0b\xbb\x4e\xdb\x62\x10\xd3\x53\x94\x64\x68\x90\xdb\x7f\x57\xe9\x4f\x45\xdc\x51\x93\x26\xaa\xc2\xae\xe6\x8c\x45\x5d\x5c\x95\x6d\x80\x52\x18\x8d\x5b\x57\x95\x6d\xea\x2f\x35\x17\xdb\xa1\xd6\x04\xe4\x04\x73\xd7\xee\xaa\x20\x53\xb7\x3f\x32\xed\xed\x8f\x9b\x5c\x62\x93\xd1\x4b\x46\x00\x48\x30\x21\xed\x16\x21\x61\x57\x74\x20\xed\xb4\xca\xf5\x4a\x02\x33\x08\xe1\xd9\x55\xca\x52\xd1\x81\x34\xef\xe6\x6b\x8f\x2f\x6d\xc1\x98\x57\x19\x89\x8a\x20\x03\xbe\xcb\xae\xaa\x65\xc1\x4e\x30\x3f\xe4\xae\xca\x36\xf5\x65\x1f\x1d\xd7\xeb\x4a\x24\x8b\x51\x7c\xd6\xab\x5c\x03\x38\x0a\x45\x25\xa9\x38\x0a\xbb\xa2\x16\x69\x5e\x0b\xd5\x22\x40\x2b\x98\xfd\x76\x0b\xad\xb0\x1b\x94\x05\x27\xe1\xdd\xd4\xd4\x36\x18\x09\xc2\x81\x76\x53\x2d\x02\xda\x42\x99\x4c\x48\xb4\x85\xdd\x0e\x9b\xb7\xea\xb1\x8a\x7d\x44\x2f\xdf\x94\x6d\xc0\x61\x28\xf3\xca\x41\x34\x49\x52\x43\x90\x01\xc8\x6d\x37\x95\x27\x00\x31\x14\x55\xa9\x22\x30\xec\x86\xf5\x70\x42\x20\x40\x63\xc8\x82\x55\xe5\x5a\x35\x55\xbc\x0d\x71\x07\x28\xb7\xdd\x14\x77\x00\x67\x30\xfb\xee\x6e\x12\xae\x76\x31\x08\x9e\x4f\xc0\x17\xb2\x60\xed\x1d\xaa\x0a\x8f\x46\x86\x2d\x42\x67\x77\x53\x44\x69\xd8\x18\x27\x6f\xa5\xb0\x0c\xbb\xa1\x16\x01\x2b\x73\x37\xcd\x37\x20\x35\x98\xa8\x72\x37\x6c\x8c\x1b\x2c\x86\x81\xab\xd5\x6e\x92\x24\x80\x17\xca\x44\x3a\x68\x92\xa4\x06\x49\x52\x23\xda\x30\x3b\x6e\x70\x19\x06\xc6\xb6\xdd\x24\x49\xa4\xd4\x1d\x84\x29\xed\x26\xcd\x01\x9e\xa1\x4c\x88\x60\x93\x4f\x21\xe3\xee\x68\x9c\xfb\xa6\xa6\x96\xbc\xbb\x03\x90\xc8\xdd\xd4\xa7\x90\x83\xf7\x56\x35\xd8\x24\x43\x20\x36\x0c\x50\x22\x77\x53\x9f\x02\x62\x43\x51\x07\xdb\x9a\xfb\x08\x19\x9a\x4e\xbb\xbb\x12\x08\x45\x8d\x8b\xdc\x14\x8a\x40\x6f\x28\xf8\x59\x6f\xd1\x1b\x76\x43\xc5\xa2\x2a\xa3\x75\x17\x3a\x65\xa3\xd1\x5d\x68\x95\xb7\x0d\x09\x08\x47\x9e\xdd\xa4\x39\x6d\xd8\x16\xcd\x0f\xf7\x11\x9a\xa3\x3e\x97\xec\xbf\x7f\x76\x4b\x9a\x33\xd4\x48\x98\x03\x78\x9b\x03\x78\xc2\x22\x34\x79\x9e\x86\xd6\x45\x95\x41\x53\x79\xdb\x92\x1a\x0d\x5c\x56\xb6\xf0\x0f\xbb\x21\xf5\x10\xf2\xb4\x9b\x8a\x98\xb6\x6c\x8b\x43\xae\xf2\x16\xc8\x87\xd1\x3d\xd1\x2a\x6f\x1b\x52\x8f\xb6\xc0\xa6\xd4\xd3\xb0\xb6\x12\x30\xbe\x85\x84\xd8\xa4\x14\x36\x57\xe6\x6e\xe1\xda\xa7\xf0\x33\x54\x06\x34\x4d\x54\x2d\x19\x24\x93\x0b\x6f\x21\x21\x76\x43\x10\x22\xa1\xe6\x16\x12\x62\xb7\xa4\x5f\xa6\x02\xde\xc0\x43\x64\xc1\xb8\xbc\x8f\xca\x46\x20\x43\x9c\x87\x6b\x2f\x49\x6b\x28\x62\xba\xe7\x5e\x92\x06\x70\xc4\x7d\x48\x14\x24\x69\x00\x47\x0c\xf0\xee\xb6\xc0\x11\x1b\xb0\x88\xd1\xbd\x0a\xea\x66\x00\x8b\x38\x71\x55\xdf\x4d\x71\xa9\x91\x30\xf7\x77\xbe\x54\xfe\x82\x25\x31\xba\xb7\x56\xfe\x09\x2c\x89\xfb\x70\xa1\x25\x7c\x60\x49\x0c\x6d\xa7\x62\x49\x6c\xb0\x24\xce\xa3\xfc\xdd\x56\xbc\x85\x9a\xd8\xed\x65\x8c\xbc\x95\x4d\x0b\x56\x7b\x39\x6b\xbc\x95\xa2\x4f\x6c\xf2\x1e\x0f\xe0\xf6\x76\x53\x0d\x04\xe2\xc4\x09\xd8\xd0\x6e\xaa\x8b\x41\x9f\x18\x9d\x1b\xdc\xa5\x8b\x1d\xba\xd8\x39\x91\xc2\x4f\x6c\xf3\x25\xbb\x76\xe2\x4f\x6c\xd2\x25\x0f\x65\xc1\xae\x51\xab\x1f\x9c\x35\x2e\x75\x97\x2e\xf6\x22\x34\x14\xcd\x17\xdb\x2a\xb6\x65\x55\xb7\x8a\x71\x41\x76\xbb\x4a\x65\x80\x2b\x86\xf6\xca\xae\xe9\x0b\xfc\x8a\x9b\xa4\x29\xbb\x4b\x2a\x3b\xa4\x52\xe3\x24\xb8\x16\x59\xb0\x35\x68\x31\x85\xb7\xd8\x1d\xea\xa9\x80\xd5\x95\xdf\x3a\x7a\x66\x90\xfa\x36\x50\x17\x59\xd8\x16\xd3\x56\x33\xd4\x2f\xdb\xe2\x47\x79\x3c\xa0\x2b\x6e\x15\xfa\x5d\xd3\x57\x47\xa4\x23\x19\xd9\xee\x8a\x74\xc0\x59\x9c\x07\x07\xbe\xcb\xf6\x81\x67\x31\x34\x31\x89\x67\xb1\xc1\xb3\x38\x09\x58\xdf\x5d\x1a\x0b\xae\xc5\xad\x71\xa0\xcb\xf6\x81\x6b\x31\x06\xa6\xc2\x7e\xdb\x3c\x39\x6a\x09\x3f\xd8\x5d\x29\x0f\xf8\x0a\x33\x38\x6f\xe1\x2b\x36\x59\xa7\x4d\xf2\xb9\xbb\xca\xa2\x9e\x44\x74\x00\xe9\xb7\xcd\x43\xbd\xc1\xac\x18\xda\x5a\xba\xca\x22\x30\x2b\x4e\xc0\x9f\x76\xc7\xfb\x6a\xf7\xc6\x1d\xe0\xc8\x75\x55\xcf\x1d\x29\x6f\xb8\x69\x4a\x79\xbd\xb3\xb5\xd0\x6b\x31\x2d\x76\x87\x7a\x92\xdd\x6c\x77\x39\x36\x60\x2e\xc6\xe0\xf1\xef\xdd\xe6\x3b\xeb\x05\x25\x16\xc1\x62\x9b\xf7\x1a\x00\xa8\xdd\x15\xfc\x3a\xa9\x56\x35\x0e\x88\x57\xb1\xfb\xe0\x47\x4f\xa1\xd6\xfc\x3e\xd9\x34\xe8\xa2\xf0\x14\xbb\x93\xaf\x98\x90\x83\x0d\x30\x45\x16\x1f\xb0\x62\xcc\x51\xd3\x3d\x00\x14\xe7\xe1\x91\x53\x16\xec\xab\x51\xc5\xda\xab\xfa\x01\x80\xe2\xfe\x2d\xb4\x1c\x1b\x60\x14\xe7\xe1\x61\x92\x63\x03\x8c\x62\x80\x48\xb8\xbb\x74\xb1\x93\x18\x4d\x2b\x4c\x97\x2e\x82\x36\x31\x86\x6d\xa9\x8d\x06\x6d\xe2\x2c\xf0\x88\x5d\xf1\xb0\xa7\x48\x78\x12\xf8\xbb\x41\xa1\xc8\x82\x55\x85\xd8\x74\xc5\xc3\x4e\x5e\xe5\x82\xde\x54\x7c\x8a\xdd\x21\x95\x20\xc3\x6d\xf1\x29\x76\x7f\xfc\x91\x4d\xd3\x90\xde\x21\x5c\xc3\x55\xd5\x6a\xd5\xa1\x52\xc3\x8b\x2c\x7b\xd6\x51\x3d\x0f\x2f\xb2\x34\xa7\x23\xe5\x69\x81\xef\x9f\x3d\x42\x4d\x34\xa4\x8b\x3c\xb1\x47\x12\x95\xb3\x14\xab\xba\x55\x91\x55\x1c\xb9\xa1\xba\x86\xec\xe0\x83\x10\xb1\x6d\x72\xf0\x0d\xda\xc4\x09\xf2\xd5\x1e\xaa\x8b\x47\x69\x54\x0d\xaa\x6c\x2b\x39\xab\x21\xbf\x39\xa4\x13\x20\x4f\x9c\x64\x1a\xdb\x22\x4f\xec\x01\x9d\xd0\xdc\x2e\xf2\xc4\x1e\x28\x75\x64\x2e\x87\x44\x01\x1c\x89\x31\x1d\xaa\x26\x72\x70\x24\x4e\xad\x1d\x43\x96\x0a\xb4\x88\x41\x6e\xb3\x6d\x2e\xf2\x0d\x5a\xc4\xa9\xb5\x43\xb4\x88\x0d\x5a\xc4\x98\x68\xe2\x86\x8c\xd7\x48\xa2\x30\x26\x94\x69\x28\xf8\x01\x07\x31\x64\x1b\x87\xd7\x1d\x08\x88\xb3\xa0\xf5\x1d\x1a\xbf\xc7\xcd\x20\xd0\x6c\x0f\xf5\x3c\x23\x99\xad\x21\xdb\x28\x42\xc4\x1e\xb0\x54\x32\x84\x43\x4b\x13\xa0\x11\x03\xc0\xc2\x3d\xa4\x00\x40\x40\x8c\x69\xf3\xea\x79\x80\x80\xb8\x35\x9d\x0d\x6d\xd8\x03\x01\x8d\x00\xb7\x6d\x7e\xf4\x6d\x7e\x74\x22\x86\xb7\xd8\x0f\x1b\xec\x87\x41\x5e\xb2\x3d\xb4\x34\x01\x01\x31\x54\x2c\x0c\xef\x36\xa8\x0e\x03\x48\xa0\x3d\x34\x6b\x03\xee\x70\x92\xb8\x67\x0f\xa5\x31\x80\x1e\x4e\x82\x88\xb7\x40\x0f\x7b\xa0\xfc\x95\x17\x13\xe8\x61\x0f\x92\xa7\x6a\xab\x11\xe8\x61\x0f\x54\x3f\xf2\x62\x43\xe7\x1d\xb0\x1f\x6e\xaf\xfb\x90\x02\x00\xee\x30\x26\xfa\xcd\xa1\xf2\x77\x2c\xf6\x11\x7e\x73\xc8\xf3\x0c\x78\x9e\x39\xff\x85\x82\x7a\xc8\x12\x8d\xc5\x9e\xc2\xff\x0c\x35\x43\x23\x39\xa3\x5b\x9a\x31\x34\x71\x0f\x34\x43\x04\xce\x6d\xa1\x21\xf6\x48\xfe\x67\x1e\xdc\xf3\xe1\xd5\x1f\x5e\xfd\xee\x8f\x4e\x2e\xaf\xfb\xd4\x36\x3e\x94\xdf\xc6\xae\x7c\xc5\xb0\xb5\x7a\x8f\xa4\x06\x53\x06\x65\x68\x88\x1a\x9b\xe6\x79\x6d\x86\x66\xed\xf1\xd0\x96\x77\xe0\xb1\xad\xc7\xb6\xf8\x51\xb3\xf6\x48\x06\x67\x6a\xfc\x1e\x8a\x74\x24\xb9\x3f\x09\x36\xd9\xc2\x4c\xec\xf1\xd2\x16\x66\x8e\x21\xcd\x20\xed\xfd\xd4\x1e\x0e\x0a\x45\x16\x26\xe5\xb3\xca\x71\xbd\x34\xef\x1d\x50\x7f\x04\xda\xc4\x2d\xc5\x1b\x4a\x79\xe3\x63\xf4\x1e\x65\x45\xba\x41\x4a\xe8\xe2\x9e\xca\xba\x00\x33\x31\x0f\x8e\xf2\xd4\x5c\x35\x93\xd8\x4c\x4d\xe4\x53\xd6\x05\x00\x8a\x93\xf0\x96\x2d\xf2\xc4\x06\x6d\x62\x12\xaa\xb7\xa7\xf4\x07\xb4\x89\x13\x6c\xb7\x3d\x55\x17\xcf\xc2\x84\xa0\xd7\xc2\x4c\xec\x59\xf8\x91\x03\x3f\x35\x44\xcd\x24\x30\xd3\xb7\x72\x6a\xe9\x9e\xc9\x88\xdc\x64\xfd\xda\x53\x62\x03\xf2\xc4\xf4\xf9\x9c\x2a\x9e\x00\xa0\xb8\xb5\xef\x4e\x35\xc8\xa0\x4d\xcc\x83\x03\x2f\xcc\xc4\x9e\x17\x3f\x72\x6e\xa7\x26\xa6\x79\xb1\x38\xe8\x1a\xa6\x5a\x26\x00\x28\x6e\xad\xc0\x53\x62\x33\x6f\xda\xe2\x52\x4f\x89\x0d\x68\x13\xb7\x86\xe1\x49\x50\xda\x9e\x24\x44\xd3\x30\x3c\xd5\x33\xcf\x9b\x55\x75\xbd\x14\xe9\x66\x25\x77\xf5\x61\x95\x8b\x53\x69\x1e\x69\x7d\x6a\x9b\x9a\x95\xf5\x42\xf3\x38\xa5\x3f\x33\x85\xb5\xa9\x3d\xdc\xdc\xd8\x1b\x4c\x0a\xb3\xd7\xef\xa9\x52\x79\x26\x8b\x31\x09\x83\xdb\x53\xc9\x6c\xc2\x6e\x10\x61\xbd\xc5\xa7\xd8\xb3\xd1\x16\xf4\x7a\x6a\xe9\x06\xb2\x62\xfa\xb4\x4c\xe9\xcf\xec\xb4\xe5\x1c\x55\x2a\xcf\xa4\x2c\x13\x08\x86\x3d\xa5\x2c\xa0\x4d\x98\x1a\x7f\x4f\xcd\xda\x73\xf0\x23\xac\x9e\xc8\x13\x7b\x26\x81\x99\xc4\xbc\x6d\x61\x26\x36\x30\x13\x53\x42\x3f\xa7\x6d\x4d\xdb\x62\xda\xd3\x03\xb0\x18\x97\x07\x53\xb3\xf6\x5c\xfc\xe8\x91\x93\x91\x00\x79\x62\x02\x8f\xb8\xa7\xd4\x64\x06\x3f\x7a\xe4\xd4\xf3\x00\x2d\x71\xfb\x00\x4d\x95\xca\xe0\x48\xcc\xe2\x61\x52\x4e\x02\x53\xc2\xdc\xfc\x5b\x4c\x89\x0d\xa6\xc4\xd4\x14\x3d\x35\x58\xcf\x24\x17\xb3\x78\xbe\xb6\x07\x60\x9b\x49\x9f\xe6\xb7\x87\x69\x33\x6d\x08\xcc\xd4\x86\x3d\x1f\x9b\x67\x09\x81\xe8\xdf\x20\x4f\x9c\x27\x17\x79\x2a\x3a\xcd\xc7\x6c\xec\xb4\xa5\xe8\x34\x1f\x13\xb9\xb3\x38\x92\x8e\xf9\x92\x6b\x1f\x5d\xe7\x94\x74\x4c\x48\x47\xf1\xac\x4a\x27\x00\xa0\x98\xe0\x22\xec\xa9\x36\x68\xbe\xb4\xe5\xaa\x6a\xe9\x9e\x1f\xb9\xd9\xbd\xee\xfa\xcd\xcc\xcf\xb6\xe8\x51\xa9\x67\x22\xf5\x90\xdc\x65\x4f\xf9\x14\xf0\x29\x26\x01\x6e\x7b\x6a\x69\x9a\x1f\xd3\x86\x46\x2f\xa9\x09\x60\x14\x13\xc4\x83\xbd\xb4\x74\x83\x49\x71\x6a\x6d\x5d\x44\xc0\xee\x05\xe9\x20\x0d\xd8\x5e\x2a\xa8\x57\xb2\x2b\xd3\x43\x2e\x64\xc5\x06\xb2\x62\x6a\xb0\x16\x80\x62\xaf\x93\xaf\xf0\xe4\x5a\x5a\xa7\x57\x72\x1d\xd3\x7d\x5c\x12\x85\x95\x62\xc9\x74\x87\x96\x66\xa5\x05\x9d\x20\xba\x7d\x2f\xcd\x4a\x80\x4e\x4c\xb7\x63\x29\x24\x2c\xb8\x86\x93\x77\x17\x30\x8a\x2c\x68\x8b\x67\x7d\x29\x37\x80\x49\x31\x09\x24\xdb\xcb\x8b\x0c\x0e\xc5\x3c\x31\xb0\x2d\x35\xc8\x2b\xa5\x8b\xdb\x83\x29\x26\xc5\x06\x93\x62\x92\x11\x7d\x2f\xd5\x35\xe0\x50\x9c\x9a\x8f\x97\x8e\x75\xcb\xeb\x8e\x3e\x78\xa9\x22\x5e\x8d\xe6\xd1\x06\x2d\xd9\x8d\x05\x05\x38\xe1\x4a\x97\x36\x24\x70\x28\xe6\xd9\xff\xc5\x53\xbc\xa4\x06\xa0\x4d\x4c\x92\xa6\xec\xa5\x9e\x66\x91\xe8\x50\x76\x41\xe4\x89\xbd\x3a\xa4\x92\xcb\xb3\x34\x5e\x03\x40\x31\x89\x6c\xdb\x4b\x9a\x01\x00\xc5\x24\x68\x7a\x2f\x8d\xd7\x0b\x32\x42\x64\xdb\x5e\x5a\x9d\xc0\xa4\x98\x40\x3e\xee\x25\x83\xb2\x86\xcd\xb3\x04\x92\x11\x00\x28\x26\x41\xd3\x7b\xa9\xba\x01\x80\xe2\x2e\xae\x8a\xea\xe2\x35\xd9\x1a\x38\xe7\xa5\x3c\xb2\x16\x0f\x23\x17\x71\xc9\xb3\x2c\x28\x0b\xf1\x6f\x5b\x7c\x8a\xbd\xa0\x2c\xe4\x3b\xdf\x4b\xca\x02\xda\xc4\x24\x95\xf9\x5e\xea\x69\x56\xd8\x16\x83\xd0\x14\xbd\x52\xf8\x98\x1a\x99\x97\x1c\xc8\x82\x03\x39\xfd\x4a\x43\x14\xc8\x13\x93\x00\xb5\xbd\x14\x3e\xd6\xe6\x06\x73\x5d\x97\x64\x04\xb4\x89\x79\xc1\x0f\x2c\x95\x32\xa0\x4d\x9c\xda\xe9\x97\xc2\x07\xc8\x13\xe7\x6f\xbd\xe4\x40\xd6\x93\x87\xe1\xba\xfc\xca\x4d\x7b\xb8\x62\x3c\x40\x22\x4f\xec\xf5\xd0\xfc\xe5\x8f\xae\x6a\x0a\x2f\x53\xeb\xb4\x60\x14\x1b\xe4\x89\x49\x50\xda\x5e\xea\x56\x00\xa0\xb8\xe5\x1a\x96\x06\x6b\x90\x27\xa6\xd6\xe9\x25\xbb\xb1\x3e\x7e\xf4\x74\xab\x54\x5e\x70\x20\x97\x97\x5a\x73\xd5\xfa\xd8\x5a\x58\x84\x25\xcd\x00\x9f\x62\x02\xdb\xbf\x43\x71\x27\xa0\x19\x84\xae\xed\x90\xdd\x88\x83\xaf\xa0\xc4\x82\x51\xec\x80\x40\x5c\xc8\x5c\xa1\xb9\x2a\x60\x37\x08\x4a\xdb\xa1\xdd\x39\x0a\x3f\x22\xdc\x86\xda\x0d\x30\x29\x4e\x92\xed\xed\xd0\xd7\x37\x4e\x0e\x13\x27\x27\xe4\x2d\xe2\x64\xbd\xa6\x5f\x6d\xab\x1e\x7e\xbc\xa8\x7a\xad\xa2\x79\x28\x5e\x48\x46\x40\xae\x98\x17\x6f\x78\xa8\xca\x08\xf2\xaa\x9e\xd8\x05\x43\xdd\x70\x24\xf3\x30\x35\x45\x87\x52\x4b\x20\xb5\x5c\xbf\xaa\xc7\xaa\xdc\x21\x82\x29\x77\xa8\x08\x8e\xca\x8f\x1c\xb9\xd0\x14\x0d\x72\xc5\x49\xe4\xe4\x0e\x55\xbc\x20\x57\x4c\xe2\xc1\xb6\x90\x15\x3b\x1a\x3f\x62\xa5\x0b\x6d\x48\x91\xa4\x63\x12\xd6\xb5\x43\x25\x45\x24\xf3\x70\x4b\x63\x43\x32\x02\x8a\xc5\x04\xf3\x78\x87\x4a\x0a\xc0\x2c\x6e\x42\x8d\x77\x48\x27\xa2\x3b\x88\x46\xd5\xb2\x2a\x17\x07\x94\xe0\x2d\x8a\xc5\x0e\x88\x82\x46\xe6\x50\x6a\x89\xa4\x0d\x13\x20\xc7\x1d\x2a\x29\x22\x59\x8c\xfb\x74\x8e\xd2\x09\xb0\x2e\x26\x91\x5e\x3b\x54\x52\x00\x79\x71\x93\xf8\x72\x87\x44\x21\x20\x0a\x20\xae\xec\x50\x6a\x89\x94\x5a\x26\xf9\x85\xb7\xf0\x17\x3b\xa0\x13\x9a\xa2\x43\x1b\x52\x24\x6d\x98\x80\xd1\xee\x50\x6f\x11\xeb\xa6\xad\x4a\x95\x43\x85\xdd\xb8\x3d\x85\xea\x2d\x00\xc6\xb8\x75\x56\x0a\x95\x14\x11\x2c\xb4\xa7\x50\x76\x23\xa0\x13\x84\xae\xfd\x7f\x8c\x9d\xcb\xce\x26\xa7\x76\x40\xe7\x79\x8a\x7e\x83\x14\x14\x97\x42\xb2\x3c\xc9\x38\x79\x87\xaf\xd8\x20\x79\x60\xbb\xd5\xb1\xdf\x3f\x62\xad\xdf\x83\x9c\x33\xb0\x07\xad\xaf\x7f\x54\xc5\xad\x60\xb3\x2f\xb0\x98\xaf\x9e\x5a\xb8\x19\x03\xf8\xe2\x7c\x95\x13\x2f\x36\x48\x71\xc8\xe9\x91\x78\x8f\x29\x52\xb2\x7d\xaf\x5b\xf6\xc5\x06\x29\x58\x04\xaf\x12\xe0\xc5\x06\xb9\x59\xf2\x84\x64\xcc\xf7\xe8\x16\x83\x43\x56\xf3\x55\xb7\x80\x95\x31\xaa\xe3\xcb\x18\xf6\x1b\x7c\x6d\x74\x8b\x57\xa1\x00\x24\x63\x70\xa9\xea\x7c\xdd\x1f\xf7\x62\x70\x70\x02\x6d\xbe\x1a\x1c\x2f\x06\x87\x5b\xad\x5e\x03\xd6\xe0\x33\x46\xb5\x12\x06\xac\x41\x69\x8c\x6a\x17\x2a\x14\x5e\xa6\xbb\xa1\xe8\xe9\x74\x9f\x97\x79\x35\x92\xaa\x49\x8d\xa4\x41\x52\x37\xe9\x74\xa1\x27\x53\xa6\x06\x07\xdc\x8c\x7c\x7f\xe5\xb5\x4c\x22\x7b\xea\x35\x8d\x21\x81\xcc\x18\x9e\x26\x99\xfa\x40\x40\x66\xe4\x9b\x95\x7e\x2a\x3a\xe0\x63\x8c\x6a\x25\xf4\x81\x4c\x7c\x20\x60\x17\xa6\xac\x8c\x09\x2b\x23\xbb\xeb\x47\x56\xc6\x84\x95\x31\x0c\x6b\x4f\x8f\x09\xc0\xca\xc8\xdc\xf7\x32\xa7\x4a\xc9\x44\x9a\xd4\xfa\xf7\xd7\x2a\xcd\x69\x6c\x1c\x7c\xc6\xf0\x80\xc8\xd4\x45\x02\x3e\x23\x73\x16\x78\x4e\xad\x16\x50\x1a\xf9\x46\x7b\x13\xa5\x31\x41\x69\x0c\x8f\x7e\x4c\xad\x16\x50\x1a\x19\x04\xc3\x9c\xc6\xc6\x21\x6a\x0c\x83\xcc\xd3\x40\x14\x44\x8d\x61\x90\x79\x2a\x7f\x80\x64\x0c\x83\xcc\xd3\xf3\x01\xb0\x32\xf2\x8d\xb2\x33\xd5\x6c\xa6\xf2\x07\x65\x47\x6e\xc6\x84\x9b\x31\x2a\x2b\x97\xdc\x8c\x39\x11\x49\x70\xa1\xa6\x90\x8c\x09\x24\x63\x80\x68\x9c\x53\x5f\xe7\xec\x60\x8d\x11\xce\xd3\x18\xd0\x1c\xe0\x90\x19\xca\x53\xef\x04\xe4\x8a\xc1\xf9\xb7\x39\xb5\x21\x26\x36\xc4\x8d\xdf\x74\xaa\x0f\x4c\xa6\x7e\xf3\x33\x8f\xaf\xbc\x16\x49\xb4\xd1\xa9\x0f\xd8\x62\x70\x9b\xd6\x9c\xee\xc3\x07\x66\x91\x6f\x3b\xc7\xdd\xb2\x13\xff\xe4\x6d\xe7\xe8\xa4\x00\x6c\x31\xdc\xad\x3f\xb5\x34\x00\x5b\xe4\x9b\x48\x80\x60\x8b\x09\xd8\x62\x18\x21\x9d\xfa\x2d\x80\x59\x0c\xc3\xa1\x53\x69\x00\x9f\x62\x18\x0e\x9d\x3a\x29\xc0\x54\x64\x2e\x35\x99\xf2\x29\xe6\x9c\x1f\x92\xa8\x84\x96\x06\x4c\x8a\x01\x43\x71\x4e\x83\x34\x13\x01\x61\xa0\x73\x1a\xa4\x01\x53\x31\xb8\xb3\x6a\x4e\xb7\xe3\xcf\x40\xc6\xda\x46\x05\x04\x7c\x8a\xc1\x49\xc0\x39\x0d\xbf\xcc\x65\x25\xa8\xaa\xe1\x97\x89\x59\x61\x08\x53\x3e\xc5\x9c\x08\x08\xf7\x92\x4f\x23\x27\x20\x2b\x46\x43\xc1\x99\x4a\x03\x98\x14\xc3\xe0\xe4\xd4\x23\x31\x37\xd2\x93\x35\x3c\x8c\x9c\x04\x8b\xbf\x9b\xaa\x43\x83\x21\x30\x18\xdc\xef\x25\x9f\x62\xc2\xa7\x18\xb0\x08\x66\x18\x51\x8e\x0b\xfc\x35\x8b\x6c\x38\xf5\x61\x52\x0c\xce\xf5\xcd\x30\x7c\x0c\x93\x22\xdf\xac\xf4\xa1\x63\x33\xce\xa4\x1e\x1d\x4b\x56\x18\xc5\x04\x46\x91\xdd\x3b\x26\x8c\x62\x06\xee\x07\x77\x17\x87\xd1\x8e\x38\x73\x7b\x70\x97\xd5\x94\x4f\x31\x01\x50\x0c\x2e\x62\x9b\xa1\x17\x13\xf2\xc4\xf0\x40\xa0\xe4\x89\x19\x38\x16\x3a\xb2\x2c\x0c\x5a\x04\x36\x84\xe1\xbd\x70\xa5\x8f\xca\x02\x44\x7f\x45\xfd\x7a\x8a\x66\x63\x7c\x88\x99\x98\x81\x7f\xc0\x9d\xa4\x61\x38\x22\x1a\x79\x61\x1d\x84\x91\x5b\x30\x13\x03\x4c\xe0\x0c\xfd\x03\xd0\x26\x32\xec\x86\x19\x3a\x23\x03\xf5\xbf\x33\xc8\x25\x4f\xcc\xc0\x19\x60\x20\x2b\x9c\x8f\xc0\x28\x86\x51\xab\x70\x6b\x08\xb4\x89\xe1\xde\xc4\xd0\xa7\x08\x47\x62\x18\x56\x0a\x57\x67\x98\x12\xb9\xd8\x85\xae\xce\xc1\x44\x36\x60\x24\x53\x62\xc2\x94\x18\x8f\x7d\xef\xac\x0d\x54\xf6\x07\xc5\x2b\x8c\xb6\x02\x8d\xc8\xc5\x8e\xd6\xf3\x18\xa8\xec\x1e\x7a\x14\x20\x31\x01\x48\x8c\xc7\x12\x8d\x17\xc4\x99\x96\xe3\xf1\xa3\x19\x47\x8d\x97\xa9\x60\x25\x9c\xa2\x40\x23\xc6\x63\xf6\xfa\x07\xe2\x2c\xd2\xc5\xfd\xaa\xa1\xd3\x10\x04\xc4\x70\xe3\x53\xa8\xb2\x83\x83\xc8\x6e\xe5\x13\x07\x31\x83\x29\x6a\xac\x26\xd4\xe2\x21\x44\x8c\x87\x15\x22\x9c\xa2\x81\x7e\xee\xfe\xa5\xd0\xf2\x07\x01\x51\x34\x4b\xc2\xa0\x69\x2c\x2b\xc1\xc8\xd1\x19\x10\xa8\xec\x86\x49\x24\x44\xcc\x60\x8a\x3e\xac\x49\x61\xa0\x21\xce\x4c\x1d\x6e\x3d\x0a\xa7\x68\xb0\x3a\x73\x29\xd3\x0c\xcd\x7c\x40\x11\xb9\x20\x0b\x43\x0f\x21\xd0\x88\x61\xb4\x43\x68\xc4\x5c\x17\xb5\x47\x0d\x5a\x7a\x08\x17\xc1\x4d\x37\x22\xca\x91\x98\x8b\x89\xec\xae\x9f\xa5\x16\x0f\x5a\x62\xb8\xeb\x67\x39\x6b\x57\x32\x2f\x5e\xd4\x43\xb8\x50\xd9\x8d\x89\x2c\x55\xf6\x85\xca\x0e\xfb\x61\x2e\x03\x92\x0b\xcb\x9f\x5b\x66\xe6\x32\xf6\xb0\x32\x9f\x16\x5f\x83\xd0\x88\x09\x34\x22\xab\x6f\x0a\x8d\x98\x40\x23\xc6\x33\xfe\xc1\x52\x2c\x53\x62\xc2\x94\x18\x6e\x5e\x5e\x46\x35\x41\x4b\x64\x95\xd6\xa5\x9b\x71\xa1\xf7\x1b\x7e\x91\x29\x31\x17\x53\x9f\x8b\x5b\xe6\x72\xea\x83\x99\x18\x46\x51\x96\x53\x1f\x68\xc4\x18\x68\xce\x4b\xbf\xc3\x2a\x7c\x79\x54\xdb\xa5\xb7\x10\x42\xc4\x30\x64\xb2\xd4\xfb\x17\xeb\x2e\x00\x89\xb9\x8c\x57\x02\x90\x18\xc6\x47\x96\xd1\x8a\x75\xe4\xc4\x30\x3e\xb2\xf4\x28\xac\x23\x20\x32\x54\xf4\xb9\xdc\xed\x01\x34\x62\xb8\xad\x66\x19\xc2\x5c\x84\x30\xdd\xea\x29\x40\x62\xae\xb6\x48\xa2\xd3\x35\x05\xa0\x45\x64\x00\x12\x73\xb9\x86\x03\x8d\x18\xee\xa1\x59\xc6\x2b\xd7\x91\x26\xc3\x0d\xa1\x02\x24\xe6\xea\xf3\xbc\x88\xaf\x61\x29\x59\x16\xd6\xc1\xf0\x6b\xb9\x05\x1e\x8e\x44\x76\x43\xe8\xd2\xcd\x08\x47\x62\xb8\xd3\x66\x3d\x5f\x2f\xae\xd3\x5f\x76\x8e\xd6\x01\x4c\x89\x5c\xf0\xfa\xca\x94\x98\x0b\x91\x64\xac\x65\xe9\x8c\x5c\x47\x0c\x0d\x63\x2d\x4b\xf9\xb3\xb0\x0e\xdc\xb1\xb9\xf4\x22\x2c\xa2\x9a\xee\x37\x5d\x5a\x07\x4b\xf9\xf3\xf8\x94\xcd\xc6\x8b\x60\xac\x45\xf2\xc4\x5c\x47\x32\x15\x35\xd4\xa5\xc1\xb0\x50\x24\x8a\xa3\xdb\x40\xe7\x42\x70\x19\x7e\x59\x46\x3b\x40\x56\x0c\x2e\x57\x98\x22\x2b\xe6\xc2\x86\x18\x2c\xb2\x4b\x5f\xc3\x7a\x19\x26\x7e\x6d\x5d\x96\x0b\x97\x25\x14\xc2\xb9\x74\x59\x2e\xcc\x0a\x28\x84\x73\xa9\x48\x2c\x04\x97\xc1\x94\x65\x68\x03\x26\xc5\x18\x2c\x8c\xcb\xc5\x1f\x3e\x45\x76\x6b\xec\x72\xf1\x07\x53\x91\x2e\xd0\x81\x73\xe9\x67\x5c\x47\xe8\x9c\x34\x1a\xae\xc9\xb0\x16\x1f\xd7\xa9\xa8\x04\x02\x54\x71\x1e\xa3\x50\xf7\xb4\x43\xaa\xc8\xee\xb4\x5d\x60\x6f\xe7\x42\x04\xb9\xd3\x76\x2b\x6f\xf6\x31\x10\x32\x80\x8d\x29\xb5\x62\xee\xcb\xcc\x18\xaf\x5b\xa3\x61\x1f\xb9\x73\xd2\x3a\x69\xc3\xb4\x6d\xda\xe9\x8f\x6d\x50\x14\x32\x45\xae\xb8\x76\xb6\x06\xc1\x66\x3f\x05\x80\x88\xb9\x75\x36\x02\xae\x48\x97\x71\x10\xc9\x15\x13\x72\x45\x86\xce\x31\xb7\xca\xc3\x4e\x16\x80\x24\xd8\x5a\x09\x10\x2c\x4e\x5a\x26\xcd\xca\x1d\xa9\x73\xd2\x68\x84\xfe\x84\x8d\x3f\x41\xbb\x6a\x7b\x76\x78\x23\x57\x20\x7b\xcc\xad\x21\x00\xe9\x22\x5d\x86\x47\x64\x5c\xcc\x7d\x9b\x1b\x52\x79\x1b\xad\x80\x7b\x91\x2e\x37\x00\x6c\xa5\xcd\x2e\xbe\xcb\x8a\xbe\x75\x33\x80\xb6\x28\x5a\x11\xdb\xe0\xe8\x56\xdc\xd8\x54\xdd\x9c\xbb\xda\xc1\xac\xf2\x5b\xd5\x7f\xa3\xfa\x57\x3e\xa0\xe8\x8b\xb9\xab\x05\xa0\xd5\x6f\xbd\x9a\xbb\x3a\x1e\x18\x83\xf2\x30\x26\x3c\x8c\x0c\x74\x61\xca\xc3\x98\xbb\x59\x02\xe3\x52\xfa\xc5\xdc\xcd\x12\x78\x53\x91\xb3\xe5\xe5\x1b\x00\xd9\xc6\x51\x37\x71\x54\x18\xe7\x73\xab\xba\xec\x7e\xfb\x18\x95\x33\x90\x01\x4b\xe3\xa4\x35\xd2\xac\x5c\xdf\xa6\x51\x84\x6e\xc9\xfd\xd0\x9b\xc6\x7e\xb6\xea\xcb\x7e\x7c\xce\xc6\x7a\x20\x6f\x8f\x6c\x1a\xf9\x79\xfc\x77\x1f\xd5\xa6\xe8\xf7\x92\xc4\x31\xf7\x30\x3b\x66\xfd\xf6\xb0\xef\x1e\xf4\x30\xcb\xef\xd6\x0f\xb9\x3f\xd6\xce\xe1\xaa\x0a\x03\x9e\x23\x5d\x00\x01\xa7\x7c\x8e\x09\x9f\xe3\xa4\x51\x84\xe2\x61\xbf\xbe\x8b\xa4\xdc\x6e\x5d\xdd\x2f\xdf\xd5\x61\x62\xe8\x73\x4f\x3b\xc5\x62\xd5\x59\xf6\xf4\x55\xb4\xc3\xad\x38\x80\xd1\x71\xd2\x28\x42\x79\xb0\xc3\x77\x1d\x62\xfa\x19\x00\x6c\x94\xfb\x2b\xc9\x1a\x87\xb5\x43\x52\x6d\x83\x9d\x9b\x60\xa7\xb6\xb4\x84\x8d\xb9\x97\xb9\x61\xba\x6c\x43\x16\x90\x36\x4e\x1a\xa5\x2a\x4b\xf6\x32\x3b\xc7\x93\xbe\x86\xbd\xc9\xae\xfe\x03\x37\xf6\xd6\x19\xb9\xe5\xe9\x1b\x75\xd8\x9a\x1a\x9b\xe0\x67\x75\xfe\xa9\xda\x40\xef\x48\x17\x70\xe4\xb8\x88\x57\xc4\x75\x65\xd3\x6e\xd2\xaa\x69\xaf\x69\x95\xb4\x65\x9a\xef\x1e\x6d\x33\x2e\x3c\x92\x71\x29\x32\x88\x46\xc4\x85\x32\x13\x57\xf2\xdd\x33\xa3\xe3\x22\x68\x11\x97\x32\x03\x94\x5e\x5c\xd9\x72\xb3\xef\x66\xca\x40\x79\x89\x8b\xf0\x26\x97\x5f\xc6\xc5\xf6\xd4\xb8\x8e\xe4\x28\x18\x85\x71\x65\x6b\x72\xdf\xde\x67\x42\x8d\x21\xe9\xc6\x75\x33\x8f\x1a\x15\x41\x3d\x89\x4b\x31\x92\x8f\x24\x8c\x8b\x30\x68\x5c\x37\x33\x95\x40\x52\x88\x21\x09\xd0\x23\x27\x8d\xec\x8a\xd9\x15\xb3\xa3\x22\xc5\x76\x15\xdb\x50\x69\x43\xb5\xfd\xca\x0c\xa2\x1e\x71\x55\xfb\x4e\x01\x41\x8c\x23\xae\x6a\xb1\xd5\x77\x1b\x45\x34\xab\xd7\x7c\xae\x93\x5f\xf3\xb9\x66\xdf\x75\x9a\x81\xd5\x12\x17\x56\x4b\x3d\x2a\x64\x08\x28\x89\xab\x99\xdd\x19\x82\x71\x01\xac\x8a\xab\xfb\xea\x43\x76\xdd\x57\x3b\xaf\x3e\x34\xf6\xb1\xc6\x8f\x35\x7e\xe8\x94\xc7\x1a\x3f\xd6\x64\xf8\x9c\xad\x55\x42\x00\xe0\x8b\xeb\xb1\xa3\x94\x10\x10\x57\x03\xfc\xc9\xf9\xf9\x7a\x97\xfc\x86\x5f\x71\xf0\x15\x07\x8d\x1d\xd6\xf8\x43\xb1\x44\x17\xe2\xfa\xd8\xc7\x28\x14\x5c\xb7\x1e\x42\x4f\xe2\x52\x42\xdc\x8e\xa7\x8f\x7d\xf2\xf9\x98\xe6\x73\xd6\xe4\x35\xbb\x44\x76\xaf\xd9\xe1\x89\x60\x67\x7e\x48\x34\x89\xeb\x65\xf5\x1a\x74\xc9\x6b\xbb\x5e\x2f\x98\xc9\xe4\x86\x9d\x13\xf0\x4b\x32\x90\x8b\x90\x5f\x12\x97\x72\x04\x45\x23\x04\x98\x84\x00\x93\xeb\x76\xd8\x4d\x4b\x98\x96\x40\x3d\xa6\x03\xf6\xd8\x40\xe7\x31\xb2\x0b\x4b\x20\x14\xda\x9c\x76\x84\x42\xe3\xc2\x83\xd9\x9c\x75\x61\xeb\xc3\xfb\x70\x0a\x4d\x08\x3f\x21\xb1\x50\xd8\x17\x21\xc3\x24\x2e\x05\x10\xeb\x59\x00\x34\x39\x3f\xf7\xcf\xdf\x4a\xb9\x68\xe9\x32\xb7\xf5\xfa\x18\x75\x5b\xe6\x46\x34\x14\x20\x46\x5c\x44\x43\xe3\x42\xd6\x34\x67\xf5\x36\x33\xce\xdd\x5d\x88\xf8\xb8\xb6\xfd\xb6\xcd\xcd\x51\xbd\xfd\x0a\x4a\x13\x04\x70\x24\xa5\x09\xd4\x92\x93\x56\x49\x7b\x4c\x1b\x54\x6e\x90\x44\x1b\x52\xb2\x7f\x19\xe8\x09\x87\x64\x24\x85\x89\x53\x1d\x88\xc9\x4f\x01\x60\xe4\xa4\xf1\x1c\x96\x48\x40\x1b\xc9\x1c\x4f\x08\x69\x23\x91\x94\x08\xb0\xec\x22\xdd\x66\x07\x5b\xfb\x22\xe0\x10\xf2\x46\x02\xde\x48\xe6\x8e\x91\x48\x44\x2a\x22\xa9\x44\x7c\xd5\xae\x58\x42\xa1\x84\x4c\xa1\xec\xba\x8c\x84\x40\xe0\x1c\x43\x24\x1c\x8a\x01\x64\x24\x5d\xc4\x2a\x22\x15\x73\x23\x7c\xda\xb2\x99\xd9\x54\xe5\x06\x87\xe4\x22\x55\x7b\xa9\x66\xd3\xa8\x88\x72\x23\x55\xb3\xb3\xd4\x6a\x76\xc4\x46\x71\xde\x45\x6a\x36\xb5\x79\xed\xd0\xcd\xab\xcd\x66\x29\x36\xca\x4d\x53\x89\x61\x44\x6a\xcb\x34\xaa\xd2\x2d\x56\xf5\x00\xc8\x60\xa4\xee\xc7\x21\xda\xf9\x55\xbb\x6e\xa7\x63\xa7\xb4\xaf\xa7\x6c\x84\x62\x03\x32\x60\x08\x10\x89\xa4\xd8\xc0\x1a\x8b\x44\xd0\x22\x92\x62\x03\x9e\x5f\x24\xc5\x06\xd8\x90\x74\x11\x90\x88\x34\x6c\xec\xf0\xe3\x34\x9e\x1b\xb6\x62\xd8\x51\x9d\xe7\x3e\x7e\x09\xec\x10\x18\x5f\x91\x3e\x76\x80\xa2\x04\x92\x5d\xa4\x8f\xd9\x7d\xcc\x8e\x85\x23\x71\x00\x37\x20\x8c\x64\x7c\x8e\x91\x14\x25\x49\xc5\xa2\x38\xc2\x5e\x4b\x78\x29\xa1\x9a\xe4\x9b\xaf\x5d\xc2\x9b\xaf\xed\x7f\x7d\x13\x11\x99\xa6\xbd\xa9\x8c\xc0\x5a\x88\xa4\x8c\x48\xea\x15\x98\x01\x91\xa6\x1f\xf1\xa8\x17\xa5\xdc\xf7\xdf\xae\xe6\x91\xc2\x26\x06\x3d\x5b\x1d\xce\x61\xdd\x9d\xce\x1c\xa2\x8b\xe4\x74\x4e\xcb\x9c\xe9\xc4\x65\x45\xb5\x39\xb8\x5a\x29\x44\x80\x44\xda\x66\x77\x53\xa9\x6d\x76\xfb\x63\x1a\x8d\x74\x3e\x27\xe7\x33\x48\xab\xc8\x58\x22\x91\x35\x3b\xb8\xc5\x26\x32\xae\x8f\x80\x06\x52\x1c\x45\x19\xef\x64\xe4\xeb\xeb\xd5\x93\x9d\x1c\x90\xc8\xce\x71\x14\x90\xc8\xce\xf1\xec\x1c\x07\x1f\x15\x50\x41\xce\x8f\xef\xd6\x33\xb6\x00\x7e\x9c\x9f\x44\x11\x9d\xa4\x66\x92\x1d\xc0\x9a\x9c\xb1\x27\x22\x63\x4f\x40\x1f\x89\xac\x72\x90\x95\x18\xdc\xa8\x14\x92\x3f\x42\xf2\xc7\xe5\x1a\x0a\xf3\xe3\xfc\x98\x5d\xa7\x54\x65\x01\x70\x8f\x0c\xa6\x24\x72\xb1\x11\xda\x13\xae\x52\x62\x3d\x22\x3b\xf1\x5d\x57\x32\x71\x83\xc8\x5c\xdc\x71\x01\xbb\x0b\xb8\x1f\x3f\x05\xc8\x8f\xc2\x45\x9c\x91\x9d\xf8\x59\x85\xa1\x32\x3e\x84\x7d\x44\x56\x61\xe0\xd0\x57\x64\x1c\x1d\x01\xf4\xa3\x14\xbb\xa9\xda\x30\xad\x07\x57\x0c\x71\x1f\x91\xd5\x21\x1a\xc2\x2b\xab\x43\x64\x28\x98\x17\xe7\xbe\x02\x1e\xc8\xf9\x39\x4a\x14\x8e\x8d\xc8\xca\x87\xac\xf9\xd0\x12\xd9\x75\x3f\x2c\x41\x4e\x9c\x1d\x91\x15\x0f\x59\xf1\xd0\xa8\x48\xb7\xf9\x1a\x14\xe0\xfb\x23\x3f\x7e\x2f\xf6\x66\x36\xe6\x9f\x60\x90\xc8\x8a\x0c\x30\x44\x91\xd5\x34\xf2\xd3\x4c\xa3\xbe\x8a\x8c\xac\x56\x41\xd0\x22\xf2\x30\x3b\x5c\x19\xf8\xd2\x23\x0f\x9b\xaa\x8d\xd1\x1c\x9c\x6a\x15\x59\x89\x41\xa8\x21\xf2\xc7\x1e\x56\x3c\x38\xef\xb3\xe2\x21\x6b\x64\x40\xe2\x89\xfc\x5a\x3d\x0d\x0a\x0e\x4c\x45\x7e\x6d\x2c\xfa\x02\xa8\x94\x00\xf0\x71\x7e\x96\x8f\xd1\x8a\xd7\xef\x7a\xd4\x86\xdc\x98\xf7\x52\x3d\x22\x6b\x63\x7c\x0d\x9d\x69\x6e\xd3\xdc\xa8\xdc\xb4\xc2\xa0\xcc\x2e\xb0\x34\x91\x9d\xec\x59\xb3\xe3\xab\xef\xd4\x04\xb2\x02\x80\xf8\x42\x64\x05\x00\xfc\x8f\x93\x46\xa7\x84\xb5\x53\x15\x20\xc2\x10\x79\xd9\x01\x1a\x1e\xed\x21\xbf\xe5\x87\xc5\xaf\x41\x58\x20\xc0\x81\x9c\x1f\x5f\xb5\x15\xdb\x6e\x47\x17\xe0\xba\xa5\xc8\xea\x02\x59\x79\xd2\x1c\x9c\xdb\xc6\x42\xe2\xbe\x3a\xea\x4c\x56\x9e\x64\x65\x47\x67\x74\xde\xca\x0e\x68\x20\x99\x73\x4b\x71\xe3\x22\x8d\x5b\xf5\x00\xba\x4a\x08\xfd\x88\xfb\xa8\x04\x19\x9e\x70\x40\xfb\x38\x3f\xbe\xd9\x49\xba\x4d\x2a\x24\x0d\x92\xba\x49\xaf\x99\x99\x66\x66\x84\x30\x09\x47\xc4\xcd\xce\xca\xb8\x71\xa5\x02\x3b\x09\xa9\x1f\x01\xf5\x23\x03\x3b\x09\xa9\x1f\x01\xf5\x23\x77\x46\xa6\xd4\x8f\xb8\x95\x38\x7f\x3d\x16\xa6\x2d\xd3\x7c\xce\x02\x8e\x5e\x92\xe1\xa4\xc4\xad\xc4\xb9\xb5\x3d\x88\x81\x04\xc4\x8f\xf3\x43\x09\x37\xf5\x20\x98\x19\x37\x02\xa7\x23\x98\x6f\x3c\xa8\x01\xff\xe3\xbc\x49\x01\x0a\xa1\x5b\x0b\x05\xe2\x49\xdc\x5a\x28\x37\x0a\xc9\x5f\x8f\xd9\xb9\xca\xaa\x5e\x28\x81\x10\x67\xdc\xca\xaa\xce\x14\x91\x1a\x12\x77\xfd\xca\x8e\x77\xab\xd9\x55\xa6\x3e\x83\xe6\xae\x36\x9f\xcb\x82\xae\x5e\x4d\xb3\x76\x1a\x32\x04\x5f\xe2\x6e\xb6\x55\xcb\x83\xe8\x4b\x48\xfb\x08\x68\x1f\xf9\xab\xc2\xaa\x10\xb7\x62\xa3\x33\xbb\x40\x7f\x9c\x9f\x6c\x1a\xcf\x29\x23\x6e\x55\x08\x80\x8f\x71\x3f\x66\xf7\x98\x1d\x8d\x78\xec\x74\x44\x04\x27\xba\xe2\x1e\x76\x13\x60\xb2\x8b\x40\x4a\xdc\xda\x22\x50\x3e\x72\xc7\x68\x93\xf2\x11\xb7\x92\xe4\x61\x75\xbd\x87\x5d\x32\x96\x69\x7c\x6a\x25\xc9\xad\x31\xf2\x20\x5c\xc1\x79\x9c\x1f\xb3\xfb\xfb\xeb\x1c\xe3\xfe\xd8\x6c\xce\xba\x5d\x8f\x63\x59\x53\xe5\xc6\x54\xe1\xd4\x57\x88\xf8\x88\x5b\x71\xf4\x38\x70\x95\x3d\xb7\x0a\x06\x20\xca\xb8\xa7\xaf\x4e\x5f\xa5\x73\x94\x33\x37\x72\x86\x53\x5c\x71\x4f\x9b\x38\xe9\xeb\x07\xc5\x51\xca\x47\xdc\xca\x99\xc7\x11\x13\xf6\x75\x30\x93\x89\xc1\xc4\xad\x9c\xb9\x95\x29\x9c\x18\x8f\x5b\x5b\xe2\x56\xf9\x78\xec\x46\x95\x8f\x1b\x5b\x82\xd0\x59\xdc\xdb\x1e\xdb\xd9\xc7\x28\x42\x61\x71\x6b\x38\x3c\x8e\x98\xed\xab\xdb\x57\x4f\x97\x14\xdc\x9b\x51\xd4\x33\x08\xb1\x44\xd1\x6e\x28\x44\x41\x3b\x02\xaf\xa8\x67\x14\x1d\x13\xa0\x2c\xa3\x10\x50\x89\xa2\xee\xf1\x20\x54\x0b\x71\xd0\x28\xea\x19\x70\x24\x03\x38\xc7\xf9\x39\x4b\x59\x45\xf4\x14\x7c\x99\x51\xb2\xa5\x3e\xd4\x04\xbf\x65\x14\x0d\x02\xe8\x8f\x21\x59\x23\x8a\x13\x90\x13\xc4\x51\x8a\xcf\x39\xdb\x38\x2f\x1c\xc5\xd9\x56\xd4\xf5\x89\x59\x04\x54\x8d\xf3\x93\x28\x96\x9a\xe0\x43\x8c\xa2\xaa\xcf\x55\xe8\x21\x4a\x23\x8a\x33\x8b\x93\x18\x51\x9c\x59\xa5\x65\xd3\x28\xa2\x59\xac\xba\x3e\xb1\x86\x28\xdd\xea\xa9\xd7\xc3\x82\x88\xe2\xc2\x5d\xd8\x9d\xe4\xcc\x92\x9d\x11\xc5\x89\x0a\x9d\x30\x00\x69\x9c\x1f\x06\x3e\x27\x6f\xa3\x70\x17\x4f\x94\x07\x79\x86\x3d\x0c\x5c\xe3\xfc\x58\x02\xe3\x0e\x94\xc6\xf9\xb1\x04\x1a\xf6\xd8\x08\x55\x7d\x6e\x1c\x0a\x91\x1a\x51\xf4\x10\x0c\xbf\xf6\xb0\x9f\xa0\xe8\x5f\x9c\x5f\x0d\x98\x1b\xe7\xe7\xe8\x28\xec\x93\x89\xe2\xac\x2c\xae\xe5\x9c\x69\x8d\xa2\xd7\x00\xb8\x46\x51\xbf\x2d\x6a\xfa\xe5\xcc\xcd\x52\x91\xbf\xe5\x63\x53\xd5\xf4\x89\x0a\x44\x51\xd3\x07\xbe\x51\xaa\x9d\xae\x12\x50\xf4\x23\x0c\x9b\xfa\xda\xc1\xce\x44\xe2\x02\x51\x5e\xeb\x8b\xfa\x9f\x20\x10\x46\xd1\x6b\x00\x73\xa3\xa8\x40\x97\x69\x53\xd1\xfe\x13\x67\x2a\x42\xda\x46\x94\xe9\xab\x89\x22\xc2\xef\xca\x54\x4c\x10\x07\xa3\x38\x15\x61\x6c\x24\xef\xf2\x8d\xa2\x55\x5f\x88\x3d\x78\x01\x6f\xc8\xd2\x88\xb2\x7c\x0e\xf7\x42\x59\xf6\x13\x47\xde\x13\x71\x80\x28\xce\xc5\xb2\x7d\x97\xe9\x0e\x34\xe3\xfc\x58\x17\x84\xa6\xf0\x8c\xa8\x97\x75\xc1\x00\x92\x9e\x11\xf5\xf2\x5d\x34\xf7\x4a\x5c\x21\xea\xf5\x31\xad\x91\x16\xa6\x99\x1f\x2b\x84\x4c\x8d\x80\xa9\x91\x12\x77\x0e\x45\xe5\xf0\x66\xc0\xd6\xc8\x04\xa5\xa3\xea\x25\xac\xc9\x57\x91\x5a\x82\x36\xa2\x66\x5f\xc5\x23\x56\x9d\x8d\xc0\x37\x4e\x1a\x55\xc9\x56\x25\xfb\x2e\x23\xaa\xea\x14\xa8\x37\x5f\xc3\x1a\xeb\xff\x03\xa6\x91\x12\x90\xbe\xa8\x6a\xf8\x90\x35\xf2\x93\x7d\x6c\x99\x64\x6e\xcc\x14\x69\x1b\x01\x6d\xe3\xa4\xf1\x9c\xf3\xbd\x16\xb3\x43\x9f\xab\x9a\xfb\xb5\x98\x1d\x0d\x53\xe9\x07\xae\x91\x89\x90\x47\xd5\x4b\x58\xcf\x12\x9b\x12\x9e\xfa\xa8\x2a\xfd\xf5\x48\x82\x52\xed\x39\x75\x7e\x80\x1b\x59\x99\x2d\x70\x23\x00\x6e\x9c\x37\x7d\xcc\x4e\x07\xa9\x91\x38\x29\x12\xb5\xd9\xc1\x44\x11\x00\x86\x44\x6d\xe6\xd6\xcc\xed\x7c\x7e\xd1\x18\x01\x1a\x23\x3f\x48\x0e\xd1\x18\x51\x91\x1c\x89\xd3\x10\x21\x1b\x23\x60\x63\x9c\x34\x5f\x7d\x4d\x9b\xbc\x4a\x3d\x94\x1c\x15\xfd\x3e\x71\x20\x2f\xea\x63\x3d\x88\x5d\x3e\x8e\x25\x76\x36\x46\x45\x4a\xb8\x72\x88\xc2\x88\x7a\x94\xfc\xfc\x38\x92\x5c\xba\xeb\x30\x33\xe6\x70\xd5\x47\x00\x25\xe3\xa4\x51\x5f\x05\x47\x45\xe3\x4f\xc9\x96\xea\x23\x00\x8a\x51\xc0\xfc\x46\xd5\x8f\x58\x3f\x36\x01\x85\xa1\xea\x33\xac\xce\x61\xce\xa2\x45\xd5\x84\xaf\xd3\x22\xfe\xc1\x86\xf1\xa8\xae\xb6\x95\xd5\xf6\x41\xd9\xa9\xae\xb6\xd5\x69\x9f\x1c\x8f\xd3\xd2\xa6\x5f\x09\x09\x57\x75\xf9\xd5\x70\x1c\x20\xce\x6a\xd8\x3d\x61\x76\x74\xac\xfe\xbd\xea\xc5\x9b\x44\x09\x42\x40\x46\x00\xc8\xc8\x2e\x7b\x02\x32\x02\x40\x46\x76\xd5\x13\x90\x11\x55\x79\x41\x2c\x21\x24\x64\x04\x84\x8c\x93\x46\x45\x94\x17\x75\xdb\xdb\x78\x33\xea\xf6\xd3\x11\x98\x04\x46\x12\xf0\x32\xce\x0f\x75\x63\xfd\xad\xba\x01\x2b\xe8\x50\xaf\x65\x0c\x21\x19\x01\x24\x23\x73\xc8\x33\x84\x64\x44\x53\xa8\x18\x53\x90\x92\x11\x8d\x60\x65\x32\xa6\xd0\x14\x2a\x4d\x01\xc2\x91\x9d\x68\xea\xfe\x80\x30\xf2\x83\x9a\xd8\xd4\xfd\x9b\xf2\x83\x19\xda\x08\x56\x06\x20\x8c\xe4\x7d\x87\x21\x02\x23\x9a\x32\x85\xcd\xb0\x21\x03\x23\x9a\x32\x85\xc3\x11\xd1\x94\x29\x80\x2f\x4e\x1a\x35\x56\x87\x6f\xca\x8f\x87\xc7\x74\x2a\x36\x74\xf8\xc4\x56\xd4\x68\xea\xf0\x0d\x1d\xfe\xb1\xf9\xea\x06\x30\x2f\x52\x62\x67\x68\xb4\xe2\x63\x6c\x6c\x86\x8d\x12\x4d\x37\x20\xa0\x8b\xf3\x18\x4d\x55\x30\x40\xba\x48\xde\xd9\x17\x4d\x45\x1c\xec\x45\x86\xcf\x16\x62\x2f\x02\xec\xc5\x79\x8c\x12\x8c\x28\x80\xbf\x38\x69\x14\xa1\x64\x80\x72\x71\xd2\x68\x97\x2a\x04\x68\x8b\x93\x46\x7e\xe0\x87\xa3\x21\x1a\x06\x06\x57\xd3\x83\x08\xc8\x22\xa5\x8c\x87\xa0\x75\x3f\x04\x31\x47\x0e\xb6\x86\x54\x8b\x68\xdd\xdc\x18\xae\xad\xdb\x9b\xdd\xef\xca\xfc\x6b\x06\x23\x20\x5e\x14\xbd\x1c\x4d\xa9\xd2\xba\x25\x20\xdc\x9b\x5e\x83\xf6\xd0\xe9\x68\x10\x4d\xa7\x22\x30\x8b\x94\x38\x57\x11\x4d\xed\x1f\xb2\x45\x56\xd1\x92\x6c\x11\xed\x31\x37\x07\x9d\xa1\x88\x46\xb0\x32\x65\x6c\x98\xa6\x0c\x69\xc3\xec\x1c\x4d\x3a\x10\xdb\xc7\xee\xf4\x23\xaa\x2f\xc0\xad\x48\xe9\x76\x70\x2a\x30\xda\x67\x99\x46\x07\xbc\x96\x81\x72\xe0\xad\x70\xd1\xf4\x0d\x8a\x9b\xf0\xc2\xb7\x68\xaa\xe9\x0d\x35\x9d\xcd\x25\xd1\x54\x0e\x9a\xb2\x86\x43\x11\xd1\xa6\x9d\x02\x56\xc7\x9b\xdb\x42\x2e\x45\xc8\xa5\x18\xe8\x15\xcd\xf0\x41\x23\x7c\xa0\x6a\xd8\x94\x25\xb0\x28\xb2\x9a\x61\x0b\xdb\xa0\x06\x61\xcc\x42\x0a\x45\x40\xa1\x28\xfa\x87\x9a\xe2\xa5\x29\x5e\x0c\x63\x88\xa1\x08\x30\x14\x27\x8d\xfa\x2e\xbb\x4e\x61\xc2\xf9\x89\x68\x0a\x93\xb6\x7c\xd7\x9a\x6c\x6b\x72\xe4\x47\xd1\x8f\xd4\x74\x38\x36\x2f\xf2\x35\xf4\xd0\xd4\xf9\x1b\x3a\xff\x70\x0c\xab\x8e\x34\xd5\x11\xee\xf5\x89\x6e\xfc\x00\x9a\xc4\x49\x6b\xa4\x55\xd3\xcc\x8e\xc5\xb2\xeb\x34\xe8\x17\x0d\x4b\x3e\xc6\x14\xee\x47\x7e\x14\xe3\x02\x5d\x17\x24\xa4\x88\x94\x6e\xb4\x8c\xae\x19\x20\x36\x02\x90\x77\x88\x8d\x88\xae\x30\x81\xd5\x17\xdd\x90\x25\xac\x88\xe4\x4d\x62\xd1\x15\x26\x5d\x65\x84\xdd\xae\xd1\xf5\x1b\xc0\x81\xc8\xea\xcf\x5d\x17\x64\xbf\xed\x4d\x04\x78\x37\x3e\xd9\x89\x4f\x72\x9e\x39\xba\xfa\x49\x57\xbe\x00\xfa\x0b\xa9\x10\x01\x15\xa2\xe8\x5a\xeb\x86\x27\xbb\xba\x08\x27\x2e\xa2\xeb\x81\x84\xe8\x90\x92\xf1\x9e\xae\x80\x01\xef\x70\xd2\x28\x42\xdb\x03\xcc\x43\x1e\xb6\x4b\x99\xd3\x95\x39\x86\x45\xba\x02\xa6\xa3\x79\xb0\x1d\x27\xc4\x40\x44\xaf\x5f\x25\x9c\x91\xd3\x9b\xb9\x71\x2c\x8b\xfd\x38\xd1\x75\x40\x76\x1c\x90\xa9\x20\x86\xbb\xb2\x04\xf8\x43\xd1\xc7\x27\xf5\x21\xba\xe2\x85\x33\x1c\xd1\x0d\x46\xf4\x9e\x4d\xe3\x39\x65\x09\x60\x87\x94\x8a\xed\xd7\x95\xd0\x71\x25\x40\x99\x89\xae\x6b\x11\xb2\x43\x4a\x9c\xec\x88\xae\x35\xd2\xd1\x33\xc6\xbf\x5e\x29\x99\xf3\xbf\x2d\xe4\xdd\x08\x67\x57\xd2\x70\x79\x4f\x74\x43\x15\x80\x21\x4e\x1a\x85\x29\x56\xa0\x41\xa4\x54\x18\xf3\x5d\xaf\x42\x1f\x16\x46\xab\x35\x5f\xfa\xa0\x9a\x58\x0d\x5d\xf7\x64\x57\x59\xd1\x8b\xdd\x75\x2a\xf4\x8f\xad\xc6\xf7\xd2\x35\x4c\x3a\x81\xc5\xac\x17\xaf\x1b\x45\xec\x4c\xa1\x0c\xac\x38\x9e\x7b\x46\xb8\x3a\xf2\xdf\xec\xbd\xd1\xe7\x4b\x6f\x4f\x10\xed\xf7\x2a\x3f\x7f\xbb\x39\x19\xbe\x17\x8f\x6e\xee\x9a\x4a\xd2\x74\xb7\xbb\xf8\xf6\x72\x68\x82\xb8\xd9\x8b\x40\xd9\xe6\xee\xa7\x24\xe6\x75\x73\xdd\xd3\xf9\xe1\xf6\x65\xee\xcf\xde\xec\x46\xfa\x69\xb3\x8b\xe5\xa4\xe5\x93\xf6\x31\x0d\xf7\xa8\x4f\x11\x39\xdd\xec\xb6\xe0\xd4\xef\xde\xa8\x47\x9b\x9b\x4e\x40\xf3\x6e\x6e\x38\x39\x3f\x1c\xdb\x27\x9f\xf0\x99\x23\xae\x38\x0e\xbb\xdd\x52\xb1\xd9\x46\x91\x38\x2b\xfa\xff\x3e\xe8\xf9\xe3\xd7\xcf\xf7\xff\xf8\xaf\xff\xfe\x7c\xff\x9f\xcf\xaf\xeb\xdb\xfc\xf3\xc7\x8f\xf5\xdb\x1f\xf1\xcb\xfc\xe3\xdb\x7f\x9e\xd4\x6f\xb1\xf6\x2f\xbf\xad\x1f\xeb\x7f\x7f\xff\xf3\xc7\x5c\xdf\xbe\xff\xfe\xfd\xbc\xc5\xbf\xff\x0b\x00\x00\xff\xff\x96\xe6\x36\x40\xee\xcf\x02\x00"); +func _bafb ()(*asset ,error ){_bfg ,_aaaf :=_gaae ();if _aaaf !=nil {return nil ,_aaaf ;};_aeca :=bindataFileInfo {_ee :"ETen-B5-V",_ffd :650,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491761,0)};_cgfg :=&asset {_da :_bfg ,_dc :_aeca };return _cgfg ,nil ; +};func _gcga ()([]byte ,error ){return _gb (_gaaec ,"GB-EUC-H")};var _ada =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x96\x5d\x6b\x1c\x37\x1b\x86\xcf\xf5\x2b\x74\x98\xf7\xe0\xad\xf5\x2d\x0d\x0c\x0b\x26\x76\xa8\x0b\x69\x4a\xd3\xb4\x85\xd2\x83\xd1\x97\x59\xa8\x67\x97\xf5\xfa\x20\xff\xbe\x3c\xf7\xed\xa4\x9f\x50\x14\x5f\x2b\xdd\xf3\xec\xb5\x7a\xa4\xb9\x79\xfb\x70\xf7\xb0\x1f\xaf\xfa\xe6\x87\xcb\xa9\x7d\x1c\x57\x3d\x8f\x7b\xbf\x8c\xe7\xd3\xcb\xa5\x0d\x5d\xc7\xe3\x71\x57\xca\x3a\xdd\x8f\xed\xfa\xe5\x4f\x0c\xed\x69\x3b\x2b\x25\xeb\x3f\x7e\x7e\xbe\x8e\xa7\x87\x7d\x9e\xb4\xe7\xbc\xfe\x72\x7e\x9d\xab\xf5\xcd\x8f\xe3\xf1\xf8\x7c\xbd\x7c\xd6\x6f\x6e\xfb\xa9\x8e\xff\xe9\x3e\xa6\xf0\x0f\x97\x3e\x2e\xc7\xfd\x51\xbf\xf9\x6e\x3b\x6f\xbb\xfd\xfa\xc1\xc7\x97\xf3\xf9\x8f\xf1\x34\xf6\xab\xb6\x60\x63\xef\x18\xd5\xcd\xdb\xf7\xdb\xf9\xfb\xed\x69\xe8\x9b\xfb\x4f\x6f\xff\xff\x2d\x28\xe0\xcf\xe3\xf2\x7c\x3c\xed\xda\x9a\x6f\x8c\x49\x7f\xf1\x9f\x3e\x9f\xc7\x6b\x8a\xba\xf9\xf4\x70\xf7\x61\xce\xe7\x71\xd5\xa9\x18\xce\xf9\xf5\xd3\xc3\x9d\xfe\xcd\x6a\x6b\xb4\x8b\xde\x2d\xbf\xbf\x4e\xfd\xe5\xfd\xa9\x0f\xcd\x49\xca\xf3\xcb\xb4\x53\x1f\xcf\xe7\xad\x8d\xcb\xb6\x3f\x0e\xa5\xf5\x6a\xcc\x41\xcb\x7f\x6b\x31\x07\xf9\xbb\xdc\xdf\x82\xac\xe5\xfe\xee\x1d\xc8\xad\xbd\xb5\x20\xef\xee\xdf\xdd\x1f\xe4\x9b\xfc\x2b\x45\x59\x86\xef\xa7\x6b\x1f\x93\x0c\xb9\xab\x9d\x07\xed\xbc\x95\x35\x7f\xff\x50\x59\x63\x5e\xeb\x39\xf6\xd7\xf9\x4e\xe6\xe7\xc1\x62\xb0\x68\x2d\x63\x13\x58\x46\x9f\x07\xad\xbd\x4b\x6a\xdd\xec\x66\x0f\x7a\xdd\xec\x94\x99\xc9\x7b\xb5\x6e\x8e\xc8\x6d\x82\xb2\xcb\x82\xea\x06\xd4\xa4\xf0\x1c\xac\xa0\x46\xd4\x0d\xd0\x22\xa8\x37\xa0\xb1\x09\x8a\x12\xef\xa6\x03\x9a\x8b\xa0\x8c\x85\xf2\xa8\xd7\x41\xe7\x2c\x0b\x7d\x95\xba\x36\x5f\x31\xab\x18\x41\x0d\x45\xf8\x8e\xac\x05\x68\x10\x4d\x41\xc5\x4a\x7c\x60\xa9\x61\x7a\x41\xc1\xa9\x75\x8b\x44\x71\xa6\x83\xd6\x8b\x8b\x6a\xdd\x12\x51\xaa\xe5\xa0\xad\xb1\x52\x44\x62\x7c\xea\x40\x5e\x66\x65\xce\xca\xf2\x89\x35\x51\xea\xca\x9d\x68\x02\x2d\x12\x5f\x38\x0b\x43\x0e\xa8\xbe\x6c\x8e\xc8\x09\x2a\x16\xc8\x13\x79\x41\x0b\x51\x20\x0a\x40\x11\x28\x12\xc5\x83\xce\xd1\x78\xa0\x44\x94\x30\x8b\xf1\x99\x28\x63\x56\x06\x2a\x44\x45\x90\xe3\xc2\x85\x68\x11\x64\x19\xbf\x11\x6d\x82\x3c\x8b\xa8\x44\x15\x88\xf1\x8d\xa8\xa1\x7a\x03\xd4\x89\x3a\x10\xbf\xf6\x20\x1a\xa8\x2b\x00\x4d\xa2\x09\x54\x04\xf1\x77\xc4\x90\xa3\x49\x40\xf4\x25\x43\x8e\x06\x59\x95\xbe\x64\xc8\xd1\x22\xab\xd2\x97\x0c\x39\x7a\x14\x51\xe9\x4b\x86\x1c\x1d\x17\xd2\x57\x85\x2f\xcf\x27\xd2\x97\x0c\x39\x46\x66\xd1\x57\x85\x2f\xfc\xda\xa5\xd2\x57\xa5\x2f\xd6\x45\x5f\x95\xbe\x60\x82\x9b\x1c\x43\x8e\x9e\x59\xf4\x55\xe1\x2b\xb0\x08\xfa\x92\x21\x47\xc3\x22\xe8\x4b\x86\x1c\xd1\x30\xa5\xd2\x97\x0c\x39\x5a\x3e\x91\xbe\x64\xc8\x11\x5b\xae\x34\xfa\x6a\xf0\x15\xa2\x5a\xab\xc1\xfe\xaa\x46\xba\xc3\x5a\xd9\xbe\x95\x2d\x5a\xd1\xa2\xd6\x49\xa9\x95\x2d\x5a\xd1\x43\xd6\x5b\xaf\xd6\xea\x89\x3c\x50\x90\x6d\x52\xd9\x1d\x35\x00\x45\x63\xd5\x5a\xd9\x1d\x35\x12\xc9\x2e\xac\xec\x8e\x9a\x80\x52\x91\x78\xb6\x42\xcd\x40\xb9\x48\x3c\xf7\x7d\x2d\x40\x25\x4b\xfc\x42\xb4\x00\x2d\xd2\xdb\x75\x23\xda\x04\x39\x93\x24\xbe\x12\x55\x20\x2b\x6d\x55\x1b\x51\x03\x72\x51\xe2\x3b\x51\x07\xf2\x41\xe2\x07\xd1\x00\x0a\x72\xe6\xd4\x49\x34\x81\xa0\xb0\xd1\x57\x83\x2f\x97\xdc\xa2\xd6\x46\x5f\x0d\xbe\x5c\x96\xee\x68\xf4\xd5\xe0\xcb\x15\x9b\xd5\xda\xe8\xab\xc1\x97\x5b\x64\x9b\x34\xfa\x6a\xf0\xe5\x8d\x91\x78\xfa\x6a\x91\x48\xfa\xb1\xd1\x57\x83\x2f\x6f\x17\x89\xa7\xaf\x06\x5f\xde\x15\x89\xa7\xaf\x06\x5f\xde\xcb\xa1\xd0\xe8\xab\xc1\x97\x0f\x59\xe2\xe9\xab\xc1\x97\x8f\x49\xe2\xe9\xab\xc1\x97\x4f\x49\xe2\xe9\xab\xc1\x97\xcf\x51\xe2\xe9\xab\xc1\x97\x2f\x51\xe2\xe9\xab\xc1\x97\x5f\x64\x33\x35\xfa\x6a\xb3\xfb\x83\x0e\x46\xda\xbd\xd3\x57\x87\xaf\x60\xe4\x5c\xed\xf4\xd5\xe1\x2b\xd8\x12\xd4\xda\xe9\xab\xc3\x57\x70\xb9\xa8\xb5\xd3\x57\x87\xaf\xe0\xb3\x53\x6b\xa7\xaf\x0e\x5f\x21\xa4\xa4\xd6\x4e\x5f\x1d\xbe\x42\x4c\x12\x4f\x5f\x1d\xbe\x42\x92\x16\xed\xf4\xd5\xe1\x2b\xe4\x20\xf1\xf4\xd5\xe1\x2b\xe0\x24\xef\xf4\xd5\xe1\x2b\x2c\x5e\xe2\xe9\xab\xc3\x57\x34\x72\x4e\x74\xfa\xea\xf0\x15\xad\x93\x78\xfa\xea\xf0\x15\x9d\x95\x78\xfa\xea\xf0\x15\xbd\x95\x78\xfa\xea\xf0\x15\x83\x1c\x56\x9d\xbe\x3a\xf6\x57\x8c\xc6\xa8\x75\xd0\xd7\x30\x44\x72\xf0\x0d\xfa\x1a\xf0\x15\x53\x29\xb8\xc1\xbf\xdc\xbb\xca\xfd\xe7\x26\x1e\xb4\x39\x60\x33\x66\x39\x4f\x07\x6d\x0e\xd8\x8c\x25\x27\xb5\x0e\xda\x1c\xb0\x19\x97\x2c\x0f\xa7\xcd\x01\x9b\xc9\x24\x79\x38\x6d\x0e\xd8\x4c\x36\x16\xb5\x0e\xda\x1c\xb0\x99\x5c\x94\x78\xda\x1c\xb0\x99\x7c\x90\x78\xda\x1c\xb0\x99\x42\x90\x78\xda\x1c\xb0\x99\x70\xe0\x0d\xda\x1c\xb0\x99\x92\x93\x78\xda\x1c\xb0\x99\xb2\x1c\xc4\x83\x36\x07\x6c\x26\xdc\xc4\x83\x36\x07\x6c\xa6\xc5\x4a\x3c\x6d\x0e\xd8\xcc\xc6\x04\xb5\x4e\xda\x9c\x86\x48\xee\x8c\x49\x9b\x13\x36\xb3\x95\x3b\x76\xd2\xd7\x84\xaf\xec\x4a\x52\xeb\xa4\xaf\x09\x5f\xd9\xcb\x2d\x35\xe9\x6b\x06\x5e\xa8\x39\x00\x45\xa2\x74\xd0\xc5\x95\xf0\x8f\x5f\x46\xfe\x2d\xef\xa7\x5f\xdf\x17\xdb\xcb\xe5\x32\xf6\x2b\xde\x4e\xf1\x62\x28\x6f\x76\xc7\x7d\x7c\x7d\xd3\x3d\x9f\xce\xb2\x0a\xff\xff\x19\x00\x00\xff\xff\x10\x32\xb8\x89\x15\x0b\x00\x00"); +func _ecfg ()(*asset ,error ){_fcd ,_gcf :=_ggc ();if _gcf !=nil {return nil ,_gcf ;};_fcdd :=bindataFileInfo {_ee :"Adobe-CNS1-1",_ffd :1761,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491172,0)};_dafa :=&asset {_da :_fcd ,_dc :_fcdd };return _dafa ,nil ; +};var _cfae =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\xc1\x8a\xdb\x3c\x14\x85\xf7\x7a\x0a\x2d\xe7\x5f\xcc\x1f\xdd\x6b\x59\x96\xc1\x0c\x94\x19\x06\xc2\x30\x6d\x99\x29\xed\xda\xb1\xe4\x60\x68\x6c\xe3\x38\x8b\xbc\x7d\xb9\xf7\x38\x29\x74\x11\x1c\x7d\x91\x4e\xc4\x77\x2c\xed\x9e\xf7\x2f\xfb\x71\x58\xed\xee\xfb\x32\x75\x9f\x79\xb5\xfd\x30\xa6\x25\x9f\xa7\xcb\xd2\x65\x7b\xc8\xc7\x61\x34\x86\xd8\xa6\xa1\x5b\x6f\x43\x7d\x74\xa7\x76\x36\x46\xd6\x7f\x5e\xcf\x6b\x3e\xed\xc7\x7e\xb2\x05\xe6\xa5\xcb\xbc\xcd\xb5\x76\xf7\x91\x8f\xc3\x79\x5d\xae\xf6\xe1\x4b\x9a\x0e\xf9\x3f\x9b\x72\x2f\xfc\xdb\x92\xf2\x32\x8c\x47\xfb\xf0\xf6\x71\x87\x9f\x97\x79\xfe\x9d\x4f\x79\x5c\x25\x2b\xf7\x26\x8f\x49\x9f\x66\xf7\xfc\xde\xce\x5f\xdb\x53\xb6\x3b\xcd\x79\x7c\xfb\x78\xc4\x14\xfd\xe5\x67\x5e\xce\xc3\x34\x5a\xfa\xdf\x39\xfe\x8b\x7f\x5c\xe7\x6c\x69\x4b\xf8\xf5\x3e\xa5\x6c\xdd\x2d\x6f\xff\xf2\x3c\x5d\xc6\xd5\x12\x55\xc5\x36\x85\xb0\xed\x6e\x4a\xf9\x3c\xb7\x5d\x5e\xda\xf1\x98\x8d\xb5\x8d\x73\xce\x3d\xd9\x86\x5f\x5e\x5f\x9f\x64\x4f\xff\xcc\x30\x3e\x6c\x2b\x87\x04\x72\x5b\xe1\x5c\xdf\x3f\x59\x67\x1a\x47\x18\x93\x8c\xb9\x0c\xa6\x71\x0c\xc2\x42\x4a\x62\xd3\xb8\x02\xa4\x10\x52\x85\x68\x1a\xe7\x41\xbc\x10\x72\xec\x4d\xe3\x4a\xa0\x52\x11\x47\xc9\x0e\x40\x41\x51\x59\x48\x78\x05\x54\x29\xaa\x6a\x49\x8f\x40\x51\x77\xe0\xbc\xc4\xd7\x40\xb5\xa2\xc2\x49\x7c\x0b\xd4\x6e\xfb\x94\xf8\x03\xd0\x41\x51\x24\x89\xef\x80\x3a\x41\x85\xab\x24\x3e\x01\x25\x45\x05\x4b\x7c\x06\xca\x8a\xca\x28\xf1\x3d\x50\xaf\x28\x7a\x67\x1a\x82\x29\x52\x53\xde\xd5\xc1\x34\x04\x59\xa4\xb2\x7c\x51\xb2\x69\x08\xb6\x48\x6d\xf9\xe0\xa2\x69\x08\xba\x48\x75\xf9\x18\xbc\x69\x08\xbe\xc8\x6f\x4e\x25\x1e\xbe\x48\x7d\x95\x45\x25\xf1\xf0\x45\xea\xab\x0c\x85\xc4\xc3\x17\xa9\xaf\x32\x46\x89\x87\x2f\x52\x5f\x81\xbc\xc4\xc3\x17\xa9\xaf\xe0\x9d\xc4\xc3\x17\xa9\xaf\x10\xa4\x58\x82\x2f\x52\x5f\xa1\x96\x66\x09\xbe\x48\x7d\x55\x24\xd5\x12\x7c\x91\xfa\xaa\xbc\x54\x4b\xf0\x45\x79\xeb\x5f\xe2\xe1\x8b\xd4\x57\x55\x4b\xb5\xbc\xbd\x8b\xea\x2b\x92\x54\xcb\xf0\xc5\xea\x2b\x7a\xa9\x96\xe1\x8b\xd5\x57\xac\xa4\x5a\x86\x2f\x56\x5f\xb1\x96\x6a\x19\xbe\x58\x7d\xd5\x2c\xd5\x32\x7c\xb1\xfa\xaa\xbd\x54\xcb\xf0\xc5\xea\xab\xae\xa4\x5a\x86\x2f\x56\x5f\x75\x2d\xd5\x32\x7c\x71\xbc\xbd\xab\x92\x0f\x61\x5c\x83\x79\x29\x97\x61\x8c\x5b\xb0\x4a\xda\x65\x28\x63\x55\x26\xed\xcb\x5f\xc0\x19\x77\x60\x2c\xfd\x32\xa4\x71\x4a\x2c\xac\x64\xa7\xa7\xf1\x76\xea\xe4\xbb\xdc\x4b\xf7\xbb\xa2\xbb\x2c\x4b\x1e\x57\xbd\x95\xf4\x42\x90\x73\x3e\x8c\xf9\x7e\xc3\xcd\xd3\x2c\xab\xf4\xf3\x27\x00\x00\xff\xff\x1b\x63\xd0\x73\x0d\x05\x00\x00"); +func _baba ()(*asset ,error ){_ebcd ,_gddf :=_bbfc ();if _gddf !=nil {return nil ,_gddf ;};_gbed :=bindataFileInfo {_ee :"ETHK-B5-H",_ffd :20959,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491821,0)};_fbab :=&asset {_da :_ebcd ,_dc :_gbed };return _fbab ,nil ; +};func _fga ()([]byte ,error ){return _gb (_dgab ,"HKgccs-B5-V")};func _fae ()(*asset ,error ){_eaaa ,_ecbgd :=_daccg ();if _ecbgd !=nil {return nil ,_ecbgd ;};_gfgdb :=bindataFileInfo {_ee :"KSC-EUC-V",_ffd :711,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492499,0)}; +_fbdac :=&asset {_da :_eaaa ,_dc :_gfgdb };return _fbdac ,nil ;};func _ecga ()(*asset ,error ){_cac ,_baeb :=_aggb ();if _baeb !=nil {return nil ,_baeb ;};_bfe :=bindataFileInfo {_ee :"KSCpc-EUC-V",_ffd :715,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493255,0)}; +_gafc :=&asset {_da :_cac ,_dc :_bfe };return _gafc ,nil ;};func _fbdaf ()([]byte ,error ){return _gb (_deeg ,"UniJISX0213-UTF32-V")};var _abac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\xc1\x8a\xdb\x30\x10\x06\xe0\xbb\x9f\x62\x8e\xdb\xc3\xd6\x92\x5d\x3b\x32\x2c\x81\xe2\x14\x6a\x96\xed\x96\xa6\xd9\x16\x4a\x0f\xb2\x35\x0a\x82\x46\x16\xb2\x7c\xc8\xdb\x17\xcd\xb8\xee\x21\x4c\xfc\x49\xff\x58\x96\x54\xf6\xc3\x69\xf0\x2e\x41\xf9\x35\xce\xd3\x19\x13\x58\xe7\x4d\xc4\x65\x5e\xe3\x84\x30\xe2\xd5\xf9\xa2\x90\x15\x18\x37\xa5\x7f\x8f\x54\xa6\x9b\x0e\x45\x51\x3e\x9f\xfb\xc7\x4f\x97\xfe\xf1\x33\xac\x0b\x6e\xd6\x0f\xa7\xf3\x7d\x49\x78\x1b\xbc\x9d\xa1\xe6\xac\x59\xc3\x96\x07\x28\xbf\xe1\xd5\x2d\x29\xde\xe1\xe1\xa3\x99\x47\x7c\x07\x06\x6d\xf6\xd7\x68\x30\x3a\x7f\x85\x87\xe7\x39\xa2\x96\xfb\xc0\x79\x0d\xe1\x0f\xde\xd0\x27\x10\x64\xe8\x0d\xd5\xa2\xec\x5f\x74\xf8\xa2\x6f\x08\xfb\x5a\xde\x68\x84\x06\xde\x30\x2e\x6e\xf6\xd0\xbd\x17\xa2\xfd\xcf\xdf\xef\x01\x41\x6e\x0d\x2e\xc3\xe9\xd5\xda\x05\x13\xd4\x92\x9b\x97\x3f\x2f\xc3\x09\x7e\x49\x90\x02\xaa\xe6\x83\x90\xbf\xb7\xa9\x3f\x5e\x66\xb3\x07\x65\xcb\x1f\x34\x39\x13\xb5\xbf\x62\xf1\xa4\xa5\xae\x8e\x90\x4b\x7d\x04\x25\x9a\x96\xa8\x61\x6a\x88\x14\x51\xcb\xd4\x1e\x41\xd5\x95\x20\xea\x98\x46\x9a\xd5\x11\x19\x26\x93\xa9\xad\x32\x8d\xdc\x7e\x64\xaa\x33\xe1\x48\x84\x14\x3c\x34\xc5\x93\xae\xb5\xcc\x44\x45\x89\x43\x4b\xa4\x98\x3a\xa2\x03\xd1\xc4\x34\x11\x75\x44\xc8\x84\x99\x54\x5e\x57\x3d\x6a\xa2\xd1\x12\xc9\x4c\x86\xde\x48\x45\x09\x45\xbd\x8c\x61\xa2\x75\x29\x45\x64\x99\x38\x48\xed\x2d\x07\x2d\xb5\xef\x44\x3e\xc3\x7d\xef\xf2\xff\x7c\x7b\xf6\xd3\x9c\xd6\x18\xd1\x27\xba\x3b\x74\x66\x79\xd3\x9d\xc7\xfd\x6e\x86\x39\xe4\x14\xfd\xfe\x06\x00\x00\xff\xff\xb3\x7c\xc9\x5d\xc7\x02\x00\x00"); +func _db ()([]byte ,error ){return _gb (_efc ,"78ms-RKSJ-H")};func _gbdg ()(*asset ,error ){_bbdg ,_ebfc :=_ggfgd ();if _ebfc !=nil {return nil ,_ebfc ;};_cbbd :=bindataFileInfo {_ee :"GBT-H",_ffd :44433,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492211,0)}; +_cccc :=&asset {_da :_bbdg ,_dc :_cbbd };return _cccc ,nil ;};var _gefbg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x30\x10\x05\xe0\xbb\x7f\xc5\x1c\xb7\x97\xda\x92\x2c\xcb\x82\xb2\x50\x92\x43\x5d\xd8\x6e\x69\xba\x69\xa1\xf4\xe0\xd8\xe3\x60\x68\x64\x23\xdb\x87\xfc\xfb\xa2\x37\xa9\x7b\x08\x72\xbe\x68\x1e\x2f\x30\xce\x0f\xcd\xb1\x09\xe3\x4a\xf9\xd7\x38\x75\x27\x5e\x69\x18\x43\x1f\x79\x99\xb6\xd8\x31\x5d\xf8\x3a\x86\x2c\x53\x9a\xfa\xb1\x5b\xff\x7d\xc5\xd1\xdd\xda\x39\xcb\xf2\x4f\xb4\x2d\xfc\x78\x3e\x34\xc7\xd3\x7d\x59\xf9\xd6\x84\x61\x22\x23\x33\xfd\x36\x3f\xe6\x88\xf2\x6f\x7c\x1d\x97\x35\xde\xe9\xe9\x63\x3f\x5d\xf8\x1d\xf5\x3c\x24\x7f\x8d\x3d\xc7\x31\x5c\xe9\xe9\x73\x3b\xb7\x41\xed\x3f\x9c\xb6\x79\xfe\xc3\x37\x0e\x2b\x29\x18\x87\x1e\x67\x96\x1f\x5e\xda\xf9\x4b\x7b\x63\xca\xcf\x10\xc0\x99\xe3\x32\x4e\x81\x94\x7e\x5f\x14\xf6\xbf\x7f\xbf\xcf\xfc\x48\xc8\xf2\xb7\xe6\xf8\x3a\x0c\x0b\xaf\x54\xdb\x42\xee\xfc\x7c\x6b\x8e\xf4\x4b\x91\x2a\x48\x5b\x53\x16\xbf\x1f\x57\x7f\xbc\x4c\xfd\x3e\xa8\x9d\xfc\x93\x6e\xec\x63\x1b\xae\x9c\x7d\xd0\x4a\xeb\x67\x4a\x87\x79\x26\x57\xd7\x2e\x91\x51\x20\xa3\x41\x1e\xd4\x09\x71\x22\xaf\x12\x95\x72\xab\xb4\xa0\x12\xd4\x82\xec\x05\x84\xc1\x4a\x6e\xa5\xc3\x79\x95\xe2\x4b\x0d\xc2\xe1\xbc\xaa\x41\x46\xc8\x80\x3c\xc8\x0a\xa5\x78\xaf\x0b\x90\x13\x72\x20\x05\xf2\x42\x1e\xa4\x13\x95\x92\x55\x22\x4b\x9b\x44\x95\x50\x25\x54\x82\x24\xbe\x92\x78\x0b\x92\xf8\x4a\xe2\x2b\x10\x0b\x31\x28\xb5\xb7\xd2\xde\x4a\x7b\x5d\x83\x8c\x90\xc4\x7b\x90\x15\x42\xbc\x29\x40\x4e\x08\xf1\x46\x81\xbc\x10\xda\x9b\xd4\xde\x4a\x7b\x2b\xed\x4d\x6a\x6f\xa5\xbd\x95\xf6\xa6\x04\x49\xbc\xb4\x37\x16\x24\xf1\xd2\xde\x54\x20\x16\x42\x7b\x83\xf6\x4e\x06\x5d\x05\xaa\xd3\x36\xee\xcb\x90\x9e\xd3\x7b\xb0\xef\x65\xb7\xc5\xc8\x61\xc5\x5b\x80\x25\x4c\x5b\x34\x06\xde\xdf\xae\x79\x9a\xd3\x14\x3e\x7f\x03\x00\x00\xff\xff\xad\x4b\x3b\x79\x89\x03\x00\x00"); +var _fdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xcf\x35\xb9\x91\xa6\xb7\xaf\x5f\xf1\x2c\xc7\x8b\xb1\x4e\xf2\x9b\x40\xe1\x05\x7a\xa4\xd1\x58\x8b\x9e\x31\xdc\xd3\xb6\x01\xc3\x8b\x93\x0c\x52\x28\xc0\xaa\x2a\x94\x4a\x8b\xfe\xf7\x46\x5e\xd7\x91\x3d\x18\x1b\x28\x2d\x0a\x77\xbd\xf1\x64\xe6\x61\x32\x23\x82\x41\xc6\xcd\xe0\xef\x7e\xff\xa7\x3f\xfc\xe9\xc7\x1f\x7e\xfd\xfa\xdd\xff\xfc\xcb\x4f\xeb\x5f\xf6\xaf\x5f\xe7\x87\x1f\xe3\x97\xfd\xd7\x9f\xfe\xf6\xcb\xda\x5f\xf7\xfe\xf3\x0f\x3f\x7e\xf7\xdd\x95\xbe\xe2\x87\xf5\xeb\xdf\xff\x09\xac\xbf\xbc\x7f\xfe\xee\xbb\xe7\xfe\x7f\xf9\xb7\xbf\xfe\xba\xff\xf2\xa7\x1f\xcf\x4f\x5f\xd9\xeb\xe2\x6f\x3f\x7f\xae\xfd\xfa\xfa\xdd\xff\xb2\xff\xfc\xc3\x5f\x7f\xfd\xe5\xdf\xbe\xfe\xdd\x3f\xc5\x4f\xf7\xfe\x1f\xbe\x62\x9f\x47\xfe\x5f\x7e\x89\xfd\xcb\x0f\x3f\xfe\xf9\xeb\xdf\xfd\xa7\xff\x70\xfd\x3f\xd2\x7f\xf9\xdb\xcf\x3f\xff\x5f\xfb\x2f\xfb\xc7\x5f\xbf\x2e\x64\xfb\xc7\x00\xbf\xfb\xdd\xef\xff\xf9\xfd\xf3\x7f\x7e\xff\x65\x7f\xfd\xee\x3f\xfd\x87\xff\xfa\xf3\xfa\xf7\xff\xf1\x5f\x7f\xff\xef\xff\x27\xfe\xc6\x9f\xfe\xd7\xfd\xcb\x5f\x7f\xf8\xe9\xc7\xaf\xeb\xf5\x3f\xbe\x5e\xed\xff\x95\xff\xd7\x7f\xfb\x79\x7f\x9e\xf5\xdd\xef\xfe\xf5\x4f\x7f\xf8\x2f\xe7\xfc\x75\xff\xfa\x95\xc7\xcb\x6b\xfe\xf7\x7f\xfd\xd3\x1f\xbe\xfe\x8f\xeb\xeb\x7a\x7d\xa5\x9a\x7b\xf9\x3f\x3f\x97\xfe\x6f\xff\xfc\x53\xec\x2f\x2f\xfa\x2e\xfb\x3e\xeb\xa7\xd8\x7f\xfd\xf9\xbd\xf6\x2f\xef\x1f\xff\xbc\xbf\xfb\xfa\xfa\xfe\xf5\xfa\xf6\xf5\xf5\xf5\xfd\x78\x7d\x7b\xfe\xf5\x4f\xd7\x3f\x5d\xdf\xbe\xbe\xff\xe3\xef\xff\xf8\x1f\xf9\xf7\x1f\xff\xc0\x5f\xff\xf8\xc7\x6f\xcf\x7b\xfc\x77\x77\x7f\x77\xf9\xd0\x1f\x7f\xfa\x35\xf6\x51\xc6\xf3\xbe\xbf\xce\xb7\xaf\xeb\xb9\xe3\xbf\xfd\xd3\x77\xd7\xeb\xf5\x69\xc5\x0f\xf1\xb9\x3a\x3d\x57\xf7\xfd\x5c\xfd\x34\x81\x76\x7c\xf5\x7e\xa5\xef\xbe\x7f\x5f\xef\xa7\x29\xef\xeb\xec\x6f\x5f\xb3\x7d\xf7\xfd\x3b\xdd\x08\xd2\x4e\xdf\xbe\xae\xf9\x7a\x24\xbb\x2a\xd9\xdf\xbe\x52\x41\x72\xbc\xe6\xac\x6f\x5f\xa9\x3e\x92\xec\x63\xf2\xf3\x98\xd4\x9e\x07\x17\x25\xe5\xe4\x6f\x5f\xb9\x3e\x4f\xae\x4a\xea\x69\xdf\xbe\x4a\x9e\xdf\x7d\xff\x6e\x4a\xda\x3d\xbe\x7d\xd5\x54\x1f\xc9\x52\x72\xea\xb7\xaf\x5a\x9e\x6b\xba\xd7\xf4\xe7\x0f\xed\xf5\x3c\xb9\x87\x92\xa7\x11\x2d\x3f\x77\x0d\xaf\x19\xeb\xf5\xed\xab\xb5\xf1\x48\x16\x6d\x1e\xfb\xfd\xed\xab\xbf\x9e\x16\xce\x77\x79\x24\x73\x9f\x6f\x5f\x3d\x3f\xd7\xbc\xbd\xeb\xfd\xb4\x79\x5c\xe5\xbb\xef\xdf\xb7\x92\xfb\x79\xce\x7c\x8d\xef\xbe\xbf\x5f\x48\xee\xd7\xbb\x7f\xfb\x9a\xcf\xbb\xdf\xaf\xf7\x50\x32\xe8\xc3\x8e\x68\x2a\x9a\xcf\x45\xde\xf6\x56\xf2\xe6\x22\x45\xb7\xa2\xf5\xed\x6b\x56\x9f\x14\x4a\x36\x17\x4d\x44\x07\xd1\xd3\x21\xb3\x96\x47\x72\xfb\xec\x07\x7a\x4f\x17\x22\x1f\x7e\x9f\xe7\x93\xd5\x47\xf2\x34\xf8\x03\xbd\xa7\x84\xc8\x86\x47\xfa\xf6\x35\x3b\x92\xc8\x4a\x32\x17\x65\x44\x45\x51\xf9\xf6\x35\x27\xcf\x8e\xaa\xa4\x72\x11\x2d\x88\xa6\xe8\x79\xbb\xe9\x6d\x36\x20\x78\xbb\x44\x0b\xc2\xb7\x7b\x60\x4e\xde\x37\x96\x92\xc5\x45\x0d\x91\x2f\xbc\xf3\xb7\xaf\xeb\xf5\xa2\x0f\xb6\x2d\x78\xa0\xf7\x44\x6f\x6e\x9b\xb0\x6f\xae\xe2\x59\xdb\x67\xed\xe0\x2a\x45\x5b\xd1\xa3\xd6\x2f\x3f\xc3\xb6\xf3\xf8\xc2\x3d\xf3\xf8\x63\xc7\x9c\xc4\x55\x74\xf1\xb1\x1b\x0e\xdd\x90\x79\xe9\x63\x23\x1e\xc5\xbc\x5e\xf6\xcc\xe9\x8a\x3a\x57\xd1\x7f\xc7\x0f\xff\xc0\xf5\xb2\xa9\xc7\x8f\x73\xf8\x38\xd9\x1b\xed\x9b\x43\xbb\xd2\xf3\x8b\x9a\xd8\x7d\x3d\x0a\x78\xbd\x72\x41\x54\x15\x35\x6e\x54\xd4\x15\xf5\xe7\x2a\x54\xed\x52\xd5\x2e\x55\x2d\x37\x44\x53\xd1\x9b\xab\x12\xa2\x5b\xd1\xcd\x55\x1d\x11\xfd\x75\x3d\xa6\x7c\xbd\xca\xf3\x81\xae\x3b\x29\x4a\x5c\x35\x10\x65\x45\x7c\x8e\xca\xb3\xee\xa2\x88\xcf\x9f\x69\xfd\xdd\x14\xd1\x39\xd5\x67\xd9\x54\x75\xb2\x5c\x88\x78\xed\xeb\xd1\xc0\xeb\x55\xb9\x51\x0d\x04\x7a\x2f\xbc\xe3\xb2\x11\x6b\x3e\x57\x35\x9a\xba\x3e\x37\xa2\x4b\x36\x75\xf9\x42\x8b\x2e\xec\xbc\xf6\xe2\xd3\x5e\x81\x82\x17\x44\xe1\xe3\x83\x77\x1c\xb4\x3e\x7c\x7c\xf0\x8e\x18\xe2\xa5\xd2\x5f\x41\xdf\x0f\x1a\xa1\x8a\x5f\xaa\x78\xa1\xa9\xaa\xf8\x15\xfc\xe2\xa0\x5d\xe1\x2f\x6e\x5a\x8f\xbd\x5e\xdb\xc7\xab\xbe\x93\x1b\x55\xdf\x4b\xf5\xad\x19\x91\x8f\xdf\x4f\x7f\x5d\x2f\xda\xb5\xed\xaf\xcd\x77\xc4\xac\xaf\xed\x77\x7c\xe0\xba\x5e\xbc\xd0\xb6\x27\x70\x59\xbd\x2a\xb2\x27\x1e\xbd\xbf\x2e\x4c\xe1\x52\xef\x81\xde\x2b\x4d\x55\xef\xaf\x47\xd7\xaf\xeb\xe2\x17\x8f\x9d\x73\x6c\x3d\x37\x1e\x5b\xff\xe8\xfd\x75\x5d\x74\xb4\x7a\x7f\xa9\xe4\x7e\x34\x95\xfc\x7a\x3c\xfb\x75\xe1\x6e\xae\x13\x8a\x30\xbe\xc6\x3b\x1e\x1b\x81\x92\x5f\x98\x42\x52\xc9\xd3\xa3\xd8\xd7\x85\x89\xa6\x77\x53\xc4\xe3\x5b\x41\x34\x14\x3d\xb6\x7d\x3d\xbe\xfb\x4e\xea\x2a\xd0\x7b\x6b\x88\xf8\xc5\xf4\x28\xe3\x75\x61\x0a\xe9\xae\x8a\xf8\x68\x68\x4e\x52\x31\xd3\xe3\x2b\xaf\x8b\xef\x98\x74\x96\x49\xc5\x6c\x34\x42\xc5\x4c\x8b\x76\xf1\x85\xd2\xf2\xc6\x85\xf1\x35\x6e\x5c\x5d\x11\x1d\x6d\x23\x16\xef\x98\x82\xd6\xf7\x17\x43\xf3\xdf\x87\xd4\xff\xbf\x51\xf6\x4e\xe1\xcb\x05\x0f\x19\xfc\x54\x7c\x1e\xc2\xd7\x1a\xbc\x89\x8a\x05\x5c\x0c\xb0\x77\xda\x78\x29\xa0\xf7\x71\x21\xb2\x3b\x1f\xb8\xae\x99\x10\x25\x45\x38\xae\xa1\xa8\x28\xe2\x3b\x4c\xba\x53\x65\x48\x3a\x41\x14\x3e\xe9\x04\x13\x4e\x30\xbd\xe8\x3b\x9d\x20\x03\x78\xef\x83\x1b\xfd\xcc\x89\x6f\x9a\xd2\xd3\x2e\x07\xf5\x3b\xbf\xb1\x27\x1e\x9f\xdf\x59\x51\xe6\xaa\x82\xa8\x28\xa2\xa3\x66\x47\x34\x14\x0d\xae\x9a\x88\xa6\xa2\xe7\xd3\x8c\xd7\x85\xe8\xad\xe8\xe9\xaf\x94\x15\x6d\x45\x9b\xab\x12\x22\x5e\x28\xa3\x0c\x09\x27\x98\x55\x06\xa0\x8f\x57\x46\xd4\x14\xf1\x8b\x45\x91\xbf\x78\xfb\x8b\x34\x55\x65\xc8\x37\xbf\x58\x68\xea\xed\x2f\xde\xfe\x22\xef\x78\xfb\x8b\x8f\xe3\xba\x12\x7e\x31\xeb\xb8\x80\x3e\x30\xd7\xbc\xec\x89\x45\x4f\x54\x45\xf6\xc4\x03\x7d\xd0\xd1\x79\xd9\x54\xd4\x2f\x61\x88\x59\xf5\x03\xfa\x78\x29\xea\x8a\x1e\xab\x4b\x8d\xbe\x5f\xa1\x28\xb8\x8a\x2e\x54\x23\x81\x2b\x35\x1f\xff\x69\xea\xf3\xb5\xc7\xc5\x8d\xc1\xd7\xce\xf8\xc5\x84\x76\x67\xfd\x22\xd0\xc7\x45\x47\xeb\x17\x73\xd0\x5f\xc4\x07\x39\xec\xaf\xa0\xbf\x2e\x45\xf6\xd7\x03\x57\xea\x3e\xeb\x56\x74\x73\x15\x1d\xed\x48\x0f\x5c\x69\xf8\x78\x5b\x1f\xb4\xfe\xa2\xef\x35\x85\x4c\x5c\x99\xb0\x8e\xbc\x6d\x04\x1a\x3d\x70\x49\x59\x8d\x06\xae\x34\xf8\x45\x1d\x6a\xde\xf4\xd7\x45\x47\xeb\x50\x81\x2b\x61\x1d\x79\xab\x72\xf8\xd8\x41\xc4\x95\xf5\xb1\x79\xd3\xfa\x49\x23\x74\xa8\xf9\x89\x27\xfa\xb8\x7c\xbc\x4d\xc5\x86\xd2\xf4\x46\x7b\x15\x1b\x1a\x38\xc1\xac\x0d\x01\x57\x56\x7d\xf5\xb1\x40\x1f\x04\x5d\x59\x1f\x0b\x5c\x59\xc5\xd4\xd2\x80\x3e\x92\x22\xdf\xf1\x89\x1a\xae\xac\xca\x19\x35\xe4\x43\xaf\x6a\x56\xc7\x5e\xc5\x1e\x33\x1d\x6d\x48\x7d\x17\xec\x71\x10\x52\x15\xed\xb1\x10\x5b\x64\x5e\xbb\x18\x5b\x14\x62\x8b\x91\x14\x75\x45\x4f\x4f\x64\x9a\x5a\x8c\x1a\x80\x3e\x08\x96\x8a\x9e\xb8\xbc\xf9\x45\xbc\x7a\xd1\xf8\x80\x3e\x30\xd1\x72\xd3\x13\xe5\xe6\x1d\x3f\x22\x1b\x71\xa3\xf7\x04\x4b\x45\x13\x2d\x4f\xa4\x70\x65\xac\xb6\xdc\x43\x11\x5f\x88\x98\xa7\x68\xa2\xe5\xe6\x17\x71\xf4\x45\xe3\x03\xfa\x60\x84\x28\x46\xb7\x05\x7b\xcc\x58\x6d\xd1\x1e\x8b\xf6\xe8\xe3\xb5\xc7\xf2\x98\xd5\x95\x19\xb0\x8b\x66\x05\xf4\x91\xbd\xd1\x46\x10\x81\xe4\xea\xe3\xdf\x8a\xde\x5c\x45\x7f\x19\x81\x14\xec\x31\x57\x45\xa1\x08\x8d\x26\x32\x2a\xda\x23\x70\xe5\x46\x4f\x68\x8f\x45\x7b\xf4\x85\xb4\xc7\x12\xf4\x17\xc3\x67\xd1\xf8\x4a\xd0\x5f\xc4\x4f\xc5\xa0\xa4\x04\xed\x62\xe4\x2a\x1a\x1f\xd0\x47\xf1\x46\xdb\xf5\xc0\x95\x3b\x5d\xa8\xf1\x01\x7d\x14\x45\x36\x75\xd3\x7a\xe2\xa7\xb2\x3f\x22\x5a\x4f\x94\x55\x0c\x24\x80\x2b\x13\xd7\x17\xf5\xbe\xa8\xf7\x44\x59\x45\xbd\x2f\x87\xef\xc8\x10\x50\x0c\x11\x80\x3e\xfc\x1c\xc6\xc1\xe5\xd1\xe2\xab\xe0\x6a\xcb\xb1\xa9\x6a\x34\xb1\x58\x51\xa3\x0b\x1a\x5d\x70\x8f\x4e\x09\xef\xfa\x68\xf4\x55\xf0\x5f\x55\x8d\x06\xfa\x60\x58\xaf\x8e\x30\xc0\x55\xae\xfc\xdb\x43\x71\xd5\x06\x2a\x91\xf3\xa8\x3e\x77\x2a\xba\x79\xc8\x40\xb4\x14\xd1\x77\xc4\x65\xd5\xd0\x03\xb8\x0a\x96\x52\x1d\x93\xaa\x36\x80\xca\x54\x6d\x00\xb8\x4a\x52\xe4\x9b\x38\x26\x11\x97\x55\xc7\x24\xe0\x2a\x58\x4a\x35\x72\x06\xfa\x68\x3c\x5e\xb3\xa8\x8f\x29\x5c\x85\x39\x44\x75\x98\xaa\x37\xed\x6a\x8a\x6c\x17\xe3\x48\x41\x49\xab\xe3\x48\x75\x1c\x21\x66\xa9\x2a\x7c\x5d\x7c\x87\xe2\x55\xb7\x22\xbe\x03\x83\x46\x5d\xbe\xf6\xa3\xa4\x57\x21\x24\xaa\x2a\x29\xd0\x07\xea\x57\x8d\xaf\x2b\x7a\x5b\xaa\x22\x3f\x0d\x33\xc8\xc1\xd0\x52\x9d\x41\x56\x7c\x7f\xc1\x06\xaa\xea\x57\x83\xfe\xea\xf4\xbd\x01\x4e\xc5\xf7\x97\xce\x2f\xea\xfb\xab\xbe\xff\x23\xf2\x59\x9b\x77\xec\x34\x75\xfb\x8e\x9b\xfe\x42\xe1\xab\x8e\xbe\xa2\xdd\x85\xd1\xa6\xaa\xdd\x55\xed\x46\xe1\xab\xda\x5d\x0f\xcf\x22\xa2\x67\xdd\xe1\x01\x9f\xa5\xc8\x67\x11\xed\x96\xa9\xc8\x67\x1d\x9f\xc5\x3b\x9e\xcf\xb3\x1e\xbd\xad\x78\x75\x17\x2e\xee\x46\x18\x54\x51\xf8\xa6\x92\xb6\x37\x0a\x40\xa8\xd7\x0c\x80\x81\xab\x32\x86\x37\x3d\x31\xd0\x07\x41\x5c\x33\x58\x02\xae\xca\xe8\xdc\xd4\xd5\x66\xb0\x34\xfc\xc5\xb7\xa2\x37\x57\x29\xba\x15\xf1\x69\x87\x8d\x58\x8a\x68\x2a\x23\x6a\xd3\x85\xb7\x9b\x4f\x4b\xa8\xd7\xd4\xd5\x86\x0b\xaf\x84\x7a\x4d\x17\x0e\xf4\x41\x7f\x35\xe7\x82\x0d\xf5\xad\x8c\x5c\x4d\xf5\x6d\xaa\xef\x18\x88\x6c\x3d\x2e\xbc\x26\x6f\xf4\x17\x99\xf8\x0d\xc6\xf0\xa6\xbf\x6e\x04\x4b\x15\x4f\xdc\x0c\x96\x9a\xc1\x12\x63\x78\x33\x58\x02\xae\x8a\xf7\x6c\x2a\x79\x53\xc9\xf1\x52\x4d\x25\x6f\x38\xe7\x5a\xbc\x31\x14\xf1\xd1\x18\xe9\x9b\xce\x19\xb8\x58\x49\xba\x9b\xce\xb9\xa9\xe4\xf8\xb2\xa6\x92\x37\x94\xbc\x12\xea\x35\x95\xbc\xe9\x9c\xd1\x89\xa6\x73\x06\xae\x4a\xa8\xd7\x9c\x31\x02\x7d\x30\x17\x6c\x61\xbb\x08\xa9\x2a\x06\xd3\x0c\xa9\x80\x3e\x59\xf0\x68\x7a\x75\xe0\xaa\x18\x4c\xd3\xab\x03\x7d\xbe\x14\xf9\x1d\x1f\xbb\xb9\x2a\x1e\xa0\x39\x23\x00\xfa\x24\x34\x6e\xce\x08\xda\xe6\x17\xb1\xc7\x66\xcc\x03\xf4\xa9\xae\x3a\xaf\x6c\xac\xa7\x54\xf4\xbe\xed\xcf\xe3\x17\x57\xd1\x5f\xda\x10\x70\x55\xd5\x57\x1b\x6a\x0c\x07\x93\x38\xa5\x39\x1c\x00\x57\x55\x31\x0d\x83\x80\x3e\xf1\xea\xcd\x30\x88\x45\xbc\xab\xaa\x72\x1a\x1f\xd0\x5d\x5a\x6b\x2e\xb1\x34\xd6\x53\x2a\x13\xa1\xe6\x38\x02\xf4\xa9\xc1\x18\x19\x01\x57\x55\x01\x1c\x5a\x1a\x93\x97\x79\x79\xa3\xad\xd7\x44\xe7\xf3\x85\x5c\x37\xbc\x3b\xe3\xc8\x24\x9c\xed\x9a\x68\xc7\x1e\x1b\x1d\xdd\xb5\x47\xa0\x4f\x0c\xa6\x6b\x8f\x1d\x1b\x6a\x2f\x45\x68\x4e\xc7\x86\x26\x21\x68\xd7\x86\x3a\x36\xd4\x88\x70\xbb\x36\x04\xf4\xc9\x08\xd3\xb5\xa1\xfe\x8c\x0a\x57\x63\x95\xaa\x3b\x2a\xf4\xdb\x5f\x9c\x88\xfc\x45\x26\x2f\x8d\x78\xb3\x1b\x19\x01\x7d\x7e\x44\xf4\x44\x5f\xfc\x22\xf6\xd8\x8d\x79\x3a\x36\x34\x19\xad\xba\x36\xd4\x17\xcf\x22\xca\xea\xcb\x67\x2d\x9f\xa5\xe8\xf3\xac\x9b\xab\x68\x84\xa3\x02\xd0\x27\x63\x5a\xd7\xac\x3a\x36\xd4\x8a\x8f\xb7\x27\x08\x70\x66\x6a\xbf\x3d\x14\x77\x87\x16\xe0\x6a\x84\x1e\x2e\xe0\x0a\x7d\xe2\x33\xba\x53\x94\x1e\x7c\x9a\xa2\xc8\x4f\xf3\xd8\x53\x9f\xc4\xb1\x5d\x7b\xea\xc4\x3f\x8d\x01\xbb\x6b\x29\x40\x9f\xc4\xb1\xdd\x01\xa8\xb3\x9a\xd3\xaa\x37\xda\x6c\x8d\x87\xa1\xb8\x6b\x3c\xc0\xd5\x30\xb1\xee\x98\x04\xf4\x69\xdf\x39\x26\x75\xc6\xa4\xc6\x62\x6b\x77\x4c\xea\xcc\x34\x66\x56\x64\xbb\x98\x69\x34\x86\xbc\xee\x4c\xa3\x33\x26\x4d\x06\xec\xae\x3d\x01\x57\xeb\xde\xf8\x69\x17\xdd\x49\x24\xd8\x35\xb1\xce\x3a\x4d\xc3\x5c\xbb\x13\x06\xa0\x4f\xbf\xc3\xf1\x33\x13\x97\xb5\xa1\x48\x2d\x22\x2e\x9b\xc4\x8b\x5d\x7b\xea\x98\x45\x1b\x8f\xde\xba\x54\x7e\x0f\x6d\x00\xb7\x3b\xb4\x81\xf1\xf6\xc6\x82\x88\x1b\x07\xda\xcd\xfa\xf9\x3d\xd4\xee\x71\xdb\x08\x9e\x65\x90\x3f\x08\x5d\x48\x27\xdc\x43\x25\x05\xba\x6b\xe1\xe3\xbe\x15\xdd\x5c\xa5\x68\x29\xe2\xa3\xe1\x9c\x87\x01\x0e\x70\xf5\xe4\x2f\x6e\x45\x74\x0e\x41\xdc\x70\x2a\x30\xb0\x01\xd7\xb0\x87\x36\x00\xf4\x89\x0b\x1f\x0e\x2d\xe4\x00\x2e\x17\x95\x87\xe3\xc8\x60\x2a\x30\xab\x37\x0e\x45\x8f\xa5\xb8\x10\x3c\xb4\x94\xa1\xa5\x10\xea\x0d\x2d\x65\x60\x03\x2e\xf1\x0e\x6d\x60\x68\x03\x0c\x07\x43\x25\x1f\x8c\x23\xae\x9b\x0e\xc7\x91\xc1\x08\x31\x09\x08\x87\x1a\x3d\x18\x21\x5c\xc5\x1c\x6a\xf4\x20\xc8\x9f\x0c\x07\xc3\xe1\x60\xb0\xcc\xe8\xca\xe3\x50\x0b\x81\x3e\xd1\xd5\xe1\xac\x78\xe0\xfb\x7b\xf3\x2a\x9f\xa5\xef\x67\xbd\x6d\xe8\xfb\x81\xab\xa3\xbe\x63\x7f\x1e\xcf\x68\xf3\x11\xf9\x39\x98\xb6\xba\xb8\x36\x9c\xb6\x02\x7d\x12\x5c\x0e\xb5\x10\xb8\x3a\xea\x3b\xd4\xc2\xa1\x57\xff\xdc\xe8\x3b\xa2\x98\xbd\xf3\xb5\x55\xcc\xa1\x62\x32\x4c\x0d\x15\x73\xa0\x98\xae\x8b\x4d\x15\x73\xb2\xfe\xdd\xd1\xd5\xa9\x27\x9e\x2a\x66\xf7\xaa\xa9\x08\x35\x61\xa4\x9f\xc6\xe7\x40\x9f\xfd\x42\xc4\x17\x9a\xc4\xe7\x03\xf5\x9d\xfa\x6b\xa0\x9b\x10\x99\x2e\x89\x03\x97\xcb\x48\x53\x25\x9f\xba\xf0\xae\xa8\x28\x2a\x5c\x55\x11\x55\x45\x95\xab\x68\x84\x5e\x7d\xe2\xc2\x5d\xfa\x99\xba\xf0\xa9\x29\x74\x6f\xa4\xef\x27\x8a\xe9\x12\xcb\x54\x31\x81\x3e\x31\xf7\x69\x80\x33\x89\xe2\x5d\x0c\x98\xeb\x73\x23\x1f\x8d\x5e\x9d\xfa\xeb\x49\x14\x3f\x58\x63\x9b\x6a\x21\xd0\x67\x57\xe4\x6b\x3f\x9a\x77\x39\xe9\x9e\x2e\x53\x4e\xfd\xaa\x7d\xaf\x16\x4e\x82\x92\x81\x83\x99\x6a\xe1\x34\x28\x21\xcc\x9e\xba\x5a\xe0\x72\x12\x39\x75\xb5\x40\x9f\xc3\x1b\xfd\x1c\x78\x5f\xa7\x87\x53\xef\x0b\xf4\x49\xd4\x30\x9d\x11\x00\x97\xb3\xbc\x69\x80\x33\xf5\xd1\x84\xb3\x53\x1f\x0d\x5c\xa3\xd2\x08\x7d\xf4\xd4\x47\x13\x5b\x4c\xad\x63\xe2\xa3\x47\xf5\xf1\xf6\x2a\x6b\x46\x53\x65\x72\xcd\x68\x62\x30\xa3\x2a\xf2\xb5\x0d\x83\x08\x7a\xa7\x61\x10\x70\x39\x41\x9b\xba\x6d\xa0\x9b\x25\x9b\xba\xed\x49\x18\x34\xb0\xb4\x69\x18\x34\x0d\x83\xf0\xab\xd3\x30\x08\xb8\x9c\x7a\x4d\xcd\x6a\x1e\x34\x87\x68\x66\x1a\x19\x4d\x0c\x66\xa8\xbe\x1a\xcc\xd4\x60\x88\x66\xa6\x06\x03\x5c\x4e\x84\xa6\x91\x11\xd0\xe7\xec\xbf\x3d\x14\x4f\x03\xa7\xc9\x74\xc7\x79\xd2\x34\x70\x02\xba\x89\xbb\xe9\x74\x07\xb8\x9c\x01\x99\x29\xbd\xdf\x0c\x1a\xce\x6d\xde\x0e\x1a\x6f\x03\xa7\xe9\x55\x43\x11\x5a\x44\x77\xbe\x9d\xa2\x00\xc3\x8c\xdf\xdb\x29\xca\x9b\x41\x63\xd0\x9d\x6f\x07\x0d\x60\xbc\x5e\x8a\xbc\xf1\xf1\xe4\xd7\x64\xc1\xf5\x6d\x64\x03\x8c\x17\x01\xf0\x5b\xe3\x79\xb3\xd6\x39\x09\xaf\xde\x06\x12\xc0\x78\x61\xd4\x6f\x3d\xf1\x9b\xd8\xc2\x10\xe1\xad\x27\x7e\x3f\x36\x30\x5e\x04\xc0\x6f\x6d\xe0\x8d\xdb\x9d\x2c\x29\xbd\x55\x2c\x60\xbc\x6c\x84\x6e\xf7\xcd\xca\xa3\xe3\xdb\xdb\x09\x29\x30\x5e\x98\xfe\x7b\x7f\x9e\xf5\x0c\x79\x8e\x49\x6f\x7d\x2c\x30\xcc\x6a\xbe\xd5\xb5\x37\xfa\xe1\x38\xf2\x56\x3f\x80\x6a\xec\xf9\xd6\xed\xbe\xd1\x0f\x7d\xff\x5b\xfd\x00\xc6\x8b\x30\xf9\xad\x7e\x90\xcb\xbe\x26\x13\x78\x93\xd9\xf7\xcd\x1c\x55\x2f\x75\x1b\x00\x03\xe3\x45\xe4\x7c\xbb\x52\x02\x5c\x7a\x96\xdb\x69\x2b\x30\x5e\x4c\x48\x6f\xbf\xf6\xcd\x1c\x55\x9f\x71\xeb\x89\xef\x37\x1f\x0d\x5f\x76\xfb\xb5\xef\xe7\x0b\x5f\x5a\xf0\xed\x7a\xca\xfd\x38\xe7\xf1\xba\x14\x1d\x45\x87\xab\xf8\x45\xd7\x53\x80\xf1\x22\xbe\xbe\xf5\xd7\x37\xce\x79\x32\x3b\xb8\x75\xce\xc0\x30\xe5\x7b\xeb\x9c\x81\x4b\x7b\xba\x75\xce\xf7\x13\x5f\x8f\xd7\xe5\xe3\x87\x22\x5a\x3f\xbd\xd1\xd6\xab\x72\xc4\xd7\xb7\x2a\x77\x3f\xde\x33\xa9\xab\xb7\xde\x13\x18\x26\x86\x6f\xf5\x0b\x48\x7f\x17\xd9\xae\xa0\x57\xf1\xd7\xb7\x33\xc6\xfb\x71\x82\xe9\xc5\x4a\xed\xad\x13\xbc\x37\xed\x52\xa4\xe6\xdc\xcf\xe8\x9c\x4c\xd3\xde\x8e\xce\xc0\x78\x65\x45\x68\xce\x7d\x68\x17\xae\xf2\xd6\xd9\x00\xe3\x85\xae\xde\x3a\x9b\xfb\xd1\x96\x64\x9a\xf6\x76\x74\xbe\x0f\xbf\xc8\xa4\xfb\x56\x73\xee\x47\x5b\xd2\x8b\x70\xe3\xd6\x8d\x00\xc3\xbc\xf3\xad\x9f\xb8\xa1\x77\xbc\x70\x6f\xb7\x7e\x02\x18\xaf\xe2\x8d\x5b\x11\xef\x88\x7b\x5b\xaa\x1c\x90\x5e\x68\xe1\x7a\x27\x45\xd8\x23\x43\xcb\x72\x85\x6f\xbd\x69\x2a\xc3\xfa\x52\x0b\x97\x2a\x47\xec\xba\x54\x39\x20\xbd\x50\xdf\xa5\x83\x59\x8f\xe6\x0d\xfb\x6b\xb9\x2c\x02\xa4\x57\xb7\x11\xb7\x22\xba\xb0\x28\x5a\x8a\x78\x21\x5c\xda\x52\x31\x81\xf1\x2a\x36\x95\x17\x5a\x8f\x02\xa5\x17\x43\xde\x72\x58\x5f\x37\x96\x46\xdf\x2f\x35\x67\xdd\xfc\x22\x8e\x7e\xa9\x39\xc0\x30\x91\xbe\x8c\x70\xd7\xe2\xa3\xb1\xd6\xb0\xcc\x87\x03\xe3\xc5\x30\xb5\x5c\x16\x01\xd2\x85\xe3\x5b\x86\xb3\xc0\x78\x31\xc5\x59\x86\xb3\xeb\x71\x7c\xe9\x7a\x79\xa3\xed\x5a\x7c\xda\xea\xe3\xed\x9c\x27\x76\x4d\x17\x6e\x68\x19\xbb\x02\xe3\x55\x15\xd9\xd4\x07\xd2\x85\x07\x58\xeb\xd3\x54\x7a\x82\xe9\xd2\x72\xf1\x64\x3d\xb1\x45\xba\x58\x6c\x5a\xc6\x16\xc0\x78\x11\x6f\x2e\xad\x63\x3d\xea\x9f\x2e\xac\x76\xb9\x1c\xb8\x82\xef\x88\x7e\x2d\x5d\x2d\x90\x2e\xe6\xa8\xcb\x08\x64\xe9\x7d\xd1\xaf\xa5\xf7\x5d\x4f\x04\x92\xae\xa4\xc8\xa6\x06\xbd\x4a\xa0\xba\x8c\x40\x80\x64\xde\x79\x19\x81\x00\xe3\xd5\x6c\x84\xad\xc7\xf8\x2e\x22\xa3\xa5\xf1\xad\x4d\xdf\xab\xab\xc6\x16\x40\xba\x08\xec\x97\xb1\xc5\xd2\xdf\xab\x98\xfa\xfb\xb5\x69\x3d\x96\xb6\xb4\xda\xa5\xbf\x27\x92\x5c\xfa\x7b\x20\x5d\xe5\x1f\xc8\x15\x2f\x03\xf3\xe5\x70\xd0\xfd\x75\xdf\x04\x9a\xd5\xc5\x34\x6c\x19\x67\xac\x83\x32\x30\x60\x2f\x87\x83\x75\x50\x06\x42\xa2\x65\x04\xb1\x0e\xcf\x52\x6f\x35\xd7\x85\x6d\x5e\x7c\xad\xd0\x36\x81\x74\x11\xd9\x84\xb6\x19\x6f\xb4\x08\x4f\x1c\x9a\x58\x60\x4f\x17\xb1\x7a\x68\x4f\xf1\xe6\xf1\x84\xdc\xa1\xf1\xc4\x9b\xc7\x77\x45\x34\x35\x6e\xec\x9c\x98\x25\xf4\xd7\x40\xba\x18\x34\x42\x7f\x0d\x8c\xeb\xa5\xa8\x2a\xa2\xef\x08\x21\xc3\x78\x00\x18\x9a\x45\x68\x62\x71\xf3\xe5\x6d\xaa\x33\xc6\x78\xa6\x87\x43\xa2\x45\x38\x3d\x04\xd2\xc5\x70\x10\x5a\x5d\x2c\x7f\xb1\x22\xf2\x17\x17\xdf\x94\x98\x27\x34\x9e\x58\xfe\x22\xaf\xad\xa5\xc4\x63\x16\x29\x11\x22\x84\x66\x11\x8b\x5f\x64\xc8\x0b\xcd\x22\x1e\x85\x4f\xc9\x1b\x55\x78\x60\x5c\x0c\x79\xa1\xc2\xc7\xa3\xe4\x29\x31\x72\x85\xeb\x80\xc0\x90\x8e\x11\x2a\x7c\x3c\xba\x9a\xcc\xc0\x87\x61\x72\xa0\xb7\x9a\x58\xa8\xb7\xc1\xa0\x91\xb0\x81\x70\xd0\x00\xc6\xc5\x90\x17\x0e\x1a\xf1\x68\x4e\x4a\xf8\xfe\x50\x73\x82\xa8\xe1\x62\xe1\x29\x8c\x1a\x02\x47\x0f\x91\xef\x0e\x35\x07\x18\x1a\x62\xe8\xe8\x81\x94\x70\x36\x5b\x65\xda\x78\xf5\x2b\x29\xca\x8a\x0a\x57\x0d\x44\x55\x51\xe5\xaa\x8e\xa8\x29\x7a\xfa\x3e\xe1\x20\xb6\x2a\x07\x0c\x99\x23\xdb\xd8\x02\x48\x09\x07\xb1\x75\xf4\xc0\xd0\xa8\xb7\x8a\xb9\xf1\xea\x09\xd3\xdf\x2a\x26\x30\x2e\x42\xbd\xad\x57\xdf\x4f\x6c\x91\xcc\x87\x6f\x63\x0b\x60\x5c\xcc\xfc\xb7\x73\xc1\x7d\xd3\x7a\xec\x71\xab\x98\x9b\x40\xe2\x22\xab\xb9\x0d\x24\x36\xba\x6a\x3e\x7c\xab\xab\x5b\x5d\x65\xc0\xde\xea\xea\xbe\xf9\x8e\x68\xf4\x56\x31\x81\xa1\x1b\xd9\x2a\xe6\x7e\x34\x2f\x25\x34\x7a\xbb\xfc\x00\x8c\x8b\x8f\xb6\x75\xe1\x1b\x1f\x9b\x08\x5d\xb6\x3e\x16\x18\x17\x2b\x4b\xdb\x70\x63\x3f\x6a\x96\xf2\x4b\x91\xcf\x0a\x9f\x45\x53\xe3\xf3\xac\xa7\xbf\xcc\x28\x6f\xbd\x27\x30\x64\xda\x6c\xbd\xe7\x7e\x54\x2e\x65\x74\x75\xab\x72\xc0\xb8\x18\xfc\xb7\xae\x72\x3f\xae\x32\x99\x51\xde\xba\x4a\x60\x5c\x45\x91\x5f\xfb\x81\x94\x55\x13\xa7\x61\xc0\xb8\x18\xe9\xb7\x0e\x15\x48\xe6\x9d\xb7\x0e\x15\x18\xfa\xc2\xad\xc7\xdc\x8f\x97\x4c\x59\x05\xd8\x9f\xa6\x4a\xe0\xf4\xf1\xb8\xa1\x4d\x18\x94\x99\xef\x6e\xc3\x20\x60\x5c\xac\xba\x6c\x3d\x26\x90\xb2\x2f\xe4\xba\xc5\xd6\x3a\x88\x1a\xb6\xd6\xb1\x9f\xc8\x28\x65\x1b\x61\x64\xb4\x71\xb5\x72\x8e\xb6\x06\xb3\xb1\x8e\x4c\x20\x71\xb4\x8e\x83\x29\x98\x8a\x3e\x9a\xc2\xd1\x14\x70\xdb\x47\x53\x38\x28\xb9\xa9\xe8\xa3\x92\x1f\x95\x9c\x40\xe2\xa8\xe4\x07\x25\xcf\xcd\x67\x85\x22\x3e\x1a\x81\xc4\x51\xc9\xcf\xe2\x17\x99\x24\x1c\xbd\x1c\x30\x2e\x02\x89\x63\xd4\x00\xa4\xcc\x04\xed\xb8\xd6\x00\x8c\xcb\x46\xe8\x0b\x0f\x8e\x2f\x93\xbe\x39\xeb\xf3\x78\x3a\x9a\x99\xca\x71\x11\xec\x10\x2d\x67\xfc\xfd\x31\x1e\x38\x4c\xbd\x2e\xc2\x8d\x63\x68\x7c\x50\xcc\x82\xbf\x3f\x2a\xe6\x51\x31\x21\x9d\x1d\x15\xf3\xa0\x72\x26\x86\x8f\x2a\x77\x18\x8a\x1d\xc0\x8e\xfa\x75\x50\x13\x13\xb8\x47\x35\x39\xaa\x89\xaf\xbd\x3f\xcf\x7a\x3e\x5a\x49\xff\x40\xae\xf8\xe8\x3d\x8f\xde\x13\x67\x73\xf4\x9e\x40\x32\xbf\x7b\x1c\x9d\x81\x71\x35\x45\xf6\xca\x13\x79\xa7\x82\xde\x1e\xe7\x6f\xc0\x90\x47\x76\x74\xbb\x40\x32\xbf\x7b\xd4\xc8\xa3\x46\x36\x6f\xf4\xd3\xa0\x91\x05\x37\x72\xd4\x48\x60\x5c\x04\xd3\xc7\xf0\x1d\x48\x25\x7b\xa3\x5d\x40\xf8\xee\x80\x7d\x54\xd2\x83\x46\x96\xc7\xa8\x97\x34\x66\x61\x5c\xfd\x42\x94\x14\xd1\xfa\xc7\x78\xd6\x0b\x17\x2e\x8c\xeb\x89\x6c\xd6\x8b\x19\xe3\x82\xed\x9c\xca\x63\x16\x4b\xb6\xb3\x30\xae\xc7\x55\x2e\xe9\xce\x42\x22\xa3\xbc\xa4\x3b\x0b\x83\x10\x61\x41\x7d\x7e\x80\x76\x55\x7f\xf1\x20\x62\xe2\x77\x75\x44\xb7\x4d\xbd\x69\x57\xa3\xf5\xb7\xed\x7a\x82\xf1\x71\x75\x1a\x41\x26\x52\x48\xe5\xe9\xe8\x05\x69\xfa\xfb\xf5\x72\xa4\x1f\xbc\x23\x36\xb0\x5e\x44\xbb\x65\xf0\xac\x65\x23\x88\x76\xaf\x49\xbb\xd0\xee\x05\x31\x3a\x95\x47\xe1\x97\xc4\x68\x61\x5c\x93\xc7\x87\xcf\x7a\x20\x95\x8f\xa8\x29\xa2\x5d\x93\x76\x85\xed\x22\xda\x2d\x4f\x6c\xb1\x5e\x61\xbb\x88\x76\xaf\x8f\xc8\x2e\x0c\xf9\xf3\xb4\x0b\x4f\x2c\x8c\x6b\xda\x88\x4f\xbb\x0e\x57\xd1\x39\xc4\x03\xc2\x48\xde\xb8\xed\x2f\xcc\xa2\xbe\x78\xfc\xf6\xf1\x98\x45\x7a\xd1\x13\xdb\x2f\x84\x59\xd4\x8b\xa6\x6e\xbf\x10\x21\x68\x7a\xf1\xb5\xb7\x8d\x20\x04\x25\x31\xbc\x24\x55\xaf\x17\x53\x4d\xc2\xa0\x05\x9b\xfa\x81\xca\x55\xb4\xeb\xd8\x13\x68\x21\x14\xc3\xf5\x3a\x3e\x1e\x2d\xac\x8f\x27\x5e\x12\xa1\xd7\xf5\xe8\x57\xaa\xcf\xc8\xb5\x2e\xf5\x0b\x3e\xf4\x48\x4f\x48\xb5\x20\x45\x3f\xc0\x0b\x3d\x23\xc4\x92\xf5\xbc\x2e\x3c\x5e\xba\x7c\xd6\x56\xc4\xe3\x1f\x87\xba\x2e\x95\xe9\x62\xb2\x96\x9e\x00\x67\x41\x51\x7e\x80\x8e\x6e\x3c\x9e\xb0\x71\x5d\xf7\xe3\xcb\xe0\x26\xae\xeb\xf6\xc6\x67\x44\x4e\xb5\xd1\x2e\x66\x66\xc2\x80\x9b\xb8\x2e\x66\x66\xeb\x62\x1a\x56\xb1\x8e\x6b\xd9\xd4\x07\x46\xca\x8a\xba\x22\x5a\xff\x84\xec\x0b\xba\xf3\x07\x46\xca\xbc\x10\xc3\xfa\xba\x16\xed\xea\x34\x62\xd9\x2e\x14\x33\xd9\x5f\x2a\x26\x1c\xe6\x44\xb6\x75\x5d\x2a\x26\x30\xd2\xe3\x27\x96\x7c\xe6\x75\xe1\x63\xc9\xa3\xae\x4b\xfd\xba\x98\x3a\xc1\x99\x5c\x17\x53\xa7\x75\x3d\xfa\x95\x2a\xba\x7a\xc5\xe7\xf1\xf4\x44\xa6\x11\x61\x4f\x3c\xa3\x7b\x6a\xe8\x97\x14\xe7\x05\xad\x79\xb0\xfd\x63\xc1\x6d\x7e\x60\x70\x15\xcf\x52\xe5\x2e\x55\xae\xd0\x13\xaa\x1c\x90\xda\x45\x17\xaa\x72\x97\x2a\xe7\xa7\x55\xe5\x60\x27\xa7\xe6\xa7\x3d\x76\x34\x4e\x34\xe1\x99\x64\x2a\x0b\x89\x0c\xe9\xba\x8e\xaf\x7d\x6c\x17\xef\xa8\x16\x5e\xac\x6e\x90\x21\x5d\xd7\xb1\x11\x84\xb3\x30\x3e\x97\xe4\x65\x21\x35\x3e\xad\xe4\x65\x21\x35\xbe\x63\xd2\x3d\x42\x58\x1e\xa9\x7a\xd5\x54\xc4\x0b\xd1\x13\x49\x2f\x97\x58\x92\x22\xe8\x5d\xb0\x96\x1f\x78\x3c\x40\xf3\x46\x3d\x53\x52\x31\x1f\x7f\xbf\x64\x2a\xaf\xf4\x84\x8a\xa9\x3d\x23\xea\x4a\x2c\x19\xac\x74\xd3\xd4\xe6\xb3\xb6\x22\x9a\xda\x7c\xd6\x51\xf4\xcc\x41\x52\xa7\x11\x04\x97\x42\x22\x93\xb9\xd2\xf2\x85\x58\x6b\x48\xf8\xfb\xa4\x46\x27\x42\x04\x32\x99\x2b\xe9\x1e\x21\x3f\x0f\x48\xa0\x2b\x2d\x9b\xba\x78\xc7\xcf\x8d\xbe\x23\x33\xff\x84\x8f\x4e\xe1\xe3\x83\xfe\xc2\xaf\xa6\xf0\xf1\x0c\xfe\x90\x40\x57\x62\xf0\x5f\x29\xf8\xc5\x91\x7e\x73\x28\x5e\x49\x55\x4e\x81\x7e\x0c\x1a\xa4\x5f\x04\x12\xf9\xca\x25\xa9\x7a\xc1\x87\x1e\x09\x85\x87\x14\xfd\x40\xe5\x2a\xfa\x4e\x25\x4d\x4c\xd3\xd3\xa4\xd9\x2a\x29\x90\x3a\xbe\x2c\xa9\xa4\x30\xa8\x47\xfa\xdc\x68\x0f\x3f\x90\xfa\xc5\xe3\x8f\x3d\xfc\xc0\x80\xd7\xb9\xdc\x02\x25\x24\x72\x9f\x2b\xe9\x17\x13\x1a\x99\x7d\xbc\x1a\x09\x24\x36\x0b\xad\xc4\xb0\xbe\x12\xae\x92\x58\x7d\x25\x5d\x25\xd4\xeb\xc4\xf6\x9d\x25\xf5\x5a\x18\xf9\x52\x94\x14\xd1\xfa\x27\xdc\x58\x32\xa8\x85\x41\x44\xbf\xb2\x1a\x99\x89\x17\xd9\x33\xb2\x20\x58\x7f\x60\x64\x4c\x4c\x9e\xf5\xca\x0c\xb2\xe4\x2b\x57\x76\x90\x05\x46\x7e\x26\xa4\x2b\xab\xca\x40\x6f\x8c\xf4\x52\xaf\x17\x0c\xea\x44\x0a\x73\xc9\xa0\x16\x46\xbe\x14\xd1\x85\x10\xa1\x13\x5b\x19\x96\x44\xe8\x05\xd3\x79\x30\xad\x58\x59\x5d\xcb\x8c\xce\x24\x27\x57\x76\x74\x06\x46\x66\x00\x92\x08\x2d\xa4\xde\x15\xf9\x8b\x84\xa3\x19\x6f\x20\x11\x7a\x65\x74\xad\xa3\xca\x59\x65\xca\x8c\xce\xd9\x5e\x75\x74\x86\xf5\x9c\x48\x3b\x2e\x59\xcf\xc2\xc8\x89\xce\x09\x7b\x95\x71\xb7\xe3\x76\xb3\xe3\x2e\x30\x98\xc8\xac\xec\xb8\x0b\x53\x39\x75\xb4\x50\xa6\xb2\x30\x72\xe2\xb5\xd5\x42\x08\xc7\x09\x0a\xfd\x92\x70\x2c\x8c\xec\x77\xdc\xbe\x10\x2a\x47\x26\x72\x49\x38\x16\x46\x7e\x66\xc5\x4b\xc2\xf1\x82\x3e\x9c\x20\xa1\xaf\xac\x13\xcc\xc7\x77\xe4\x3b\xaa\x5f\x99\x18\x71\xa8\x39\xc7\x77\x54\xe5\xf0\x78\x59\x95\x83\x64\x9c\x86\x1f\xed\xd8\x2e\x5c\x65\xce\x36\xc2\x76\xa1\x98\xd0\xa5\x97\x1c\xe4\x05\x0b\x38\x0d\xbe\x50\xb9\x3f\x22\x74\x95\x91\x0b\x76\xf0\x03\x8f\x3d\xc2\xbc\x5d\x85\xa5\x54\x61\x64\x46\xae\x62\x10\x57\x18\x51\x49\x3b\xae\xe2\x88\x0a\x0c\x78\xc3\x4b\x16\xef\x82\xb9\x9b\x06\x3e\xb6\x38\xa2\x02\x23\xfb\x78\x47\x54\xd8\xb6\x69\xe0\x2a\x8b\x5e\x0a\x18\x99\x70\xa3\xe8\xa5\x80\x04\x83\x71\x49\xc6\x5d\x45\x35\xc9\x8a\xfc\x45\xd4\x84\x64\xdb\x2a\xaa\x49\x51\x4d\x18\xb9\xe4\xe7\xae\xc2\xac\x05\x3e\xe1\x2a\xdb\xc7\xe3\x99\x98\x31\xae\xa2\x67\x2a\xa8\xc9\x18\xbc\x90\x6a\x52\x54\x13\xc6\xb7\xa2\x9a\x94\x67\x7c\x4c\x50\xe6\x16\xf4\xdd\x0f\x8c\x5c\xbc\x31\x14\xa1\x26\x84\xa0\xf2\x73\x57\x21\x3c\x83\x1b\xbd\x8a\x6e\x88\x8d\x97\x09\x3a\xd9\x2a\x0e\x9f\xc0\xc8\x85\xc7\xab\x39\x40\x82\x02\xb6\x8a\xce\x0a\x62\xef\x60\xda\xba\x24\xf6\x2e\x88\xbd\x09\xda\xd6\x92\xd8\xbb\x20\xf3\x8e\x4c\xac\x5f\xd4\x1c\x20\x41\xb5\x5a\x45\xcd\x01\x06\x93\xdb\x25\xd7\x77\xc1\xf5\x1d\xec\x08\x5d\x72\x7d\x17\xc4\xde\x04\xaf\x6a\xc9\xdc\x5d\xb0\x75\x07\xd4\xeb\x55\xf5\x72\xb0\x6d\xd3\x64\x58\x97\x6d\x2b\x0c\xe6\xbb\xab\xaa\x72\x95\x15\x1c\x28\x3e\xab\xea\xac\x80\x91\x9f\x99\xdd\x92\x93\x2b\x24\xc8\x3b\x4b\x4e\xee\x82\x80\x3b\x72\x53\xf4\xf9\x45\x5e\x1b\x9d\xa8\x2c\xea\x08\x03\x82\xf6\xaa\x0e\xd8\x40\x82\xbc\xb3\xa4\xe9\x0a\x23\x37\x6f\xa4\x27\x20\xe0\x26\x68\x39\x4b\x02\xae\x30\x32\x2e\xad\xea\xe5\x60\xdb\xa6\xe9\x6b\xab\x98\xc0\xc8\x0c\xc5\xb2\x6d\x57\x45\xe5\xa6\x4d\x55\xe5\xaa\x2a\x87\xe3\x93\x5a\xbb\xe0\xce\x26\x92\x75\x0b\x02\xed\x07\x46\xee\xbf\x3d\x2b\x5e\xd2\x6c\x57\x55\x8b\x06\x3f\xa5\x16\x55\xb5\x08\xb3\xa8\x6a\x11\xd4\xd8\x44\xfa\x78\x49\x8d\x5d\x30\x51\x33\x89\xce\xd5\x1c\x80\x60\xa5\x8e\x4c\x04\x21\x2b\x75\xc1\x31\xcd\x2f\x9c\x73\xf3\x6b\x35\x1d\x04\xf6\x24\xdf\x74\xb5\xe7\x3b\xe4\x57\x7e\x21\xba\x15\xf1\x1d\x88\x9c\x9b\xdf\xa1\x3d\x9d\x9e\xc9\x99\xad\x66\xa7\x37\xc7\xa4\xe1\x8d\x9f\x5f\x3c\x5c\x45\xbb\x0c\x9c\x80\x91\x89\x59\xdc\x7f\xbc\xe0\xab\x66\xb2\x61\xab\x19\xf7\x43\x54\x1d\x99\xa0\x44\xa2\xea\x6a\x8b\x76\x61\xe7\xcd\x28\x09\x0a\xea\xc8\x43\x91\x8d\x08\x9e\x85\xa5\x48\x2e\x15\x06\x2b\x30\xab\xf9\x4d\x61\x92\x66\x76\x4e\x2e\x99\xa4\xc2\xc8\x83\xa6\x3a\x89\x84\xd7\x99\x5f\x28\xbc\xbc\xce\x05\xaf\x73\xb0\x4e\xb3\xe4\x75\x2e\x88\x9b\xf9\x35\xbc\xca\xd7\x7e\x60\xe4\xc9\x3b\xea\x33\x80\xfc\xb2\x11\x0e\x2d\x4d\x37\x42\x94\x25\x89\x73\x35\xf6\x6f\xbf\x7c\xbc\x0a\xd0\x54\x80\xc9\xe3\x55\x00\xb8\x9c\xf9\xf5\xb9\xd1\xa6\xea\x46\x98\x61\xcb\xeb\x5c\x30\x36\x33\xc9\x81\x25\x63\x53\x18\x6c\x2c\x58\x4d\x9f\x01\x64\x96\xfd\x97\x24\xce\xd5\x1f\x9f\x91\x59\xe3\x5f\x5d\x9f\x01\x0c\x16\x9e\x96\xbc\x4e\x21\xb3\xc6\xbf\xba\x6e\x04\xaa\xe7\xc8\x4c\x77\xa4\x7a\x0a\x99\xcd\x94\x4b\xaa\xe7\xea\x3a\x1b\x26\xdd\x5d\x67\x03\xe4\xeb\xb2\x11\xb7\xa2\xa7\xa3\xcb\xa7\x5d\x4b\x51\x70\x55\x46\xb4\x15\x1d\xae\xa2\xa9\xa4\xb5\x17\x1c\xd1\x7c\x11\xf3\xc8\x11\x5d\x10\x42\x07\x3b\x25\x96\x84\xd0\x05\xfb\x33\x5f\xb8\x37\xd9\x9f\x0b\xc6\xe7\x60\x41\x6c\x75\xf5\xbe\x3f\xba\x9e\x59\x25\x5f\x5d\x67\xd3\x51\xf2\xf2\xa2\xf5\x2a\x39\x90\x59\xb3\x5e\x5d\x25\x07\x46\xf1\x85\x54\x72\x20\x5f\x0c\xd8\xdd\xd9\x01\x30\xca\xe5\x8d\x36\x75\xd1\xab\x0c\xc5\x92\x4b\x85\x51\x7c\x6d\x07\x6c\x20\xb3\xce\xbc\xba\x03\x36\x14\xd4\x51\x2e\x1f\xef\x0b\x3d\x46\x92\x59\x1b\x5e\xf2\x4d\x85\x51\x2e\x1f\xef\x0b\x2d\x14\xa0\x28\xf2\x85\x48\xb9\x14\xbb\x30\x7c\xa1\xc7\x86\x32\x6b\xb0\xab\x6b\x43\x3d\x6c\x17\x9d\xe3\xda\x0c\x90\x59\xd8\x5c\x12\x4a\x85\x51\x08\x5d\xba\x66\x05\x63\x34\xb3\x64\xb9\xba\xb3\x0b\x60\x14\x82\x4b\xd9\xa3\xab\x3f\xd1\x5f\x66\x85\x70\x75\xa3\x3f\xa8\xa2\x83\x7d\x22\x4b\xaa\xe8\x82\x0b\x9a\x59\x89\x5b\x5d\x13\x85\xf1\x39\x58\x47\x5c\x32\x3e\x57\x3f\xb4\x0b\xcf\xd4\x8d\xd8\x20\x6e\x8e\x92\x15\xd9\x5f\x07\x2d\x9c\x8a\x54\x80\x83\x16\xfa\x69\x8f\x5d\x88\x59\x91\xee\x5a\x5d\xb3\x02\x06\xab\x8d\xab\x6b\x56\x5d\xb3\xc2\xd2\x24\x81\xae\xa1\x59\x61\x43\x43\xb3\x02\x46\x41\x27\x86\x66\x05\x55\x34\xbb\x24\x25\x55\x74\x41\x15\x1d\x2c\x53\x2e\xa9\xa2\x6b\x3c\x7a\x9f\x5d\x20\x1a\xea\x3d\x30\x58\xa6\x5c\xc3\x01\x1b\xf6\x68\x76\x9d\x47\xf6\xa8\x30\xd8\xd2\xb2\x86\xa6\x00\x64\xf2\x64\x6b\x38\x04\x00\x83\xaa\x11\x6b\x38\x9d\x86\x04\x9a\x5d\xe7\x91\x04\xba\x60\x79\x0e\x97\x3c\x87\x5a\x08\x64\xd7\x53\x64\x7c\x0a\xa3\x14\x45\xb6\xfe\xd1\xc2\xec\x4a\xc9\x50\x0b\x81\xe1\xc2\xe8\xd0\x93\x03\x39\x31\xd2\x4b\x02\x15\x46\x41\x57\x25\x81\xae\xf1\xc4\x9b\xd9\xd5\x8d\x61\xbc\x09\x0c\x97\x4f\xe5\x85\x2e\x48\xa0\x39\x95\xdf\x66\x50\x2f\x39\xa2\xc2\x60\x57\xcf\x1a\xc6\x9e\x03\xbd\x4d\xd5\x9f\xb2\x8d\xea\x2d\x66\x31\xd4\x5b\xe8\x9d\xd9\xd5\x89\x61\x08\x09\x8c\x42\x8c\x37\x9c\x7c\x0c\x86\x03\x52\x5f\x6b\x38\x1c\xc0\xfe\x1c\x85\x35\x0c\xd9\x9f\x0b\xaa\x67\x26\xf5\xb5\xa4\x7a\xae\xa1\xde\x56\xba\x53\xbd\x05\x72\x1a\x8a\x6c\x2a\x93\x8f\x42\xd8\x37\x54\x65\x20\xa7\xa1\x68\x29\xc2\x1b\x60\x88\x43\x55\x86\x23\x9a\x49\x90\x2d\x39\xa2\xc2\x60\x4f\xd2\x9a\xce\x8a\xa9\xee\x91\x13\xe3\xdb\xd4\xf7\x03\xa3\x30\xa2\x4e\xd7\x14\x81\xec\x62\xc0\x54\x95\xa7\xaa\xcc\x3a\xb3\xe4\xd2\x35\xdf\xb4\x6b\xfa\xf8\xa5\x88\x76\xb1\x80\x38\x8d\x66\x20\x97\xe6\x8c\xa3\x97\x5c\x2a\x8c\xc2\xe8\x2c\xb9\x74\xc1\x24\xcd\x19\x17\x2e\x93\x54\x18\x05\x37\x22\x93\x74\xcd\x47\xbb\x73\x66\xad\x61\xaa\xdd\xb0\x47\x47\x21\xc6\x9b\x86\xa3\x73\xf1\x8b\x4c\xcd\xa7\x2e\x7c\xea\xaf\x59\x52\x9a\xda\x00\x90\x9d\xc9\xce\xe5\x2f\x2e\x7f\x91\x9e\xd0\x85\xcf\xc7\x06\xb2\x73\xd4\xa9\x0d\x00\xa3\x10\x8e\xce\xf5\xf9\xc5\xc7\xff\x38\x63\x94\x82\x2a\x8c\xd2\x15\xd9\x39\x18\x8f\x33\xc6\xa9\xf1\x4c\x8d\x87\x70\x74\x6a\x3c\xf3\xf1\xd1\xd9\x89\xdf\x74\x6a\x3e\xf5\xd7\xa8\xdc\xd4\x5f\xc3\x37\xcd\x4e\xb0\xe4\x9b\x0a\xa3\x10\x6f\xca\x37\x15\xb2\x53\x14\xf9\xa6\xc2\x28\xdd\xc7\xa3\xf7\x90\x4b\x73\xae\x34\x42\x7f\x0d\x8c\xc2\xb2\xac\xe4\x52\x21\x3b\x45\x91\x5c\x2a\x0c\x76\xa0\x2d\xc9\xa5\x42\xce\x55\x91\xad\xdf\xb6\x1e\x35\x71\xfe\x06\xc7\x34\x67\x55\xce\x00\x1a\x18\xa5\x2b\xb2\xa3\x9f\x21\x20\x67\x95\xc9\x58\x0c\x18\x66\x28\x64\x92\x2e\x68\xa3\xd9\xd9\x81\xb4\xd1\x35\x09\xbc\xd8\xf3\xb6\xa6\x81\x17\x90\x0d\xc6\x65\x92\x0a\xa3\x10\xfd\x4d\x4d\x14\xc8\xd9\xd7\x36\x3c\x83\x49\x3a\xca\xf0\x46\xbf\xf6\xa1\x57\x6d\xaa\x83\x06\x30\x0a\x26\x2a\x09\x74\xbd\xdf\xe8\x17\x37\xbe\x1d\x21\xe0\x85\x0e\x76\xd9\x2d\x79\xa1\x42\xce\x8c\x5c\xf2\x42\x85\x51\x3e\xa2\xa9\x68\x72\x55\x42\xf4\x56\x84\x7e\x61\xc8\x52\x45\xd7\x5b\x4b\xc3\x6a\xdf\x5a\xda\x5b\x4b\x63\xc8\x7b\x6b\x69\x6f\x2c\xcd\xf0\xec\xad\xa5\xbd\x99\x4a\x14\x42\xd0\xb7\xe3\x08\x1c\xd3\x5c\x58\x3c\x91\x63\x2a\x0c\x76\xff\xad\xb7\x53\x09\x38\xa6\xd9\x60\x49\x8e\xa9\x30\xcc\xe8\xbc\x1d\x5a\xde\x8f\xc1\x64\x07\xff\xb7\x06\x03\x8c\xc2\x58\xf9\xd6\x60\xde\x58\x47\xc1\xd2\xde\x5a\xc7\x9b\x85\x2b\xf3\x3e\x6f\xc7\x11\xf8\xaa\xd9\xc1\x5f\xbe\xea\x7a\xb3\xc6\x5f\x71\x30\x6f\x0d\x06\xbe\x6a\x2e\x0c\x53\xf2\x55\x85\xc1\x16\xc4\xf5\x76\x54\x78\x63\x1d\x85\x61\xea\xad\x75\x00\xc3\x1c\xd2\x3b\x3e\xbf\x78\xb8\x8a\x67\xb9\xbc\x05\x8c\x6a\xe7\x68\x30\xd0\x61\xb3\x83\x8e\x74\x58\x61\x54\x5c\x9a\x74\xd8\x05\xf7\x35\x17\x2c\x4d\xee\xeb\x7a\x3f\xa1\xcf\x30\x1f\xf5\x76\xd9\x1f\x56\x6b\xd6\x6d\xcb\x6a\x5d\x6f\xd6\x4a\x2b\x8e\xef\xad\xfa\x02\x59\x67\xf5\x56\x7d\x81\x51\x89\x1a\xe4\xbe\x2e\xf8\xae\x59\x37\xf4\x56\x7d\x81\xc1\xd6\xc8\xf5\x3e\x9f\x5f\xa4\xef\xb1\x8e\xb7\xc3\x09\x30\xea\xa5\xc8\xce\x61\x84\x79\xcc\xfd\x37\x87\x62\x39\xb5\x0b\x6a\x6c\xd6\xf4\xa5\xc6\x0a\x83\x2d\x97\xeb\x56\xe1\xa1\xc6\xe6\x32\x14\xdd\x8a\x6e\xae\x6a\x88\x96\x22\xda\xc8\x04\x4b\xb6\xac\x30\xcc\xd2\xdd\x4e\x2b\xe0\xc1\x66\xcd\x42\x1e\xac\x30\x2a\xd1\xae\x3c\x58\x21\xab\xca\xf2\x60\xd7\x8d\x0d\x54\xa2\xa4\x5b\x1b\x00\xb2\xea\x27\x35\x56\x18\x35\xf9\xf8\xa9\x68\x73\x55\x42\x74\x14\x1d\xae\x42\xe4\xb4\xe2\x26\xee\x67\x6f\xeb\xba\x35\x0b\x60\xb0\x61\x74\xdd\x46\x5c\x40\xfe\xbc\x90\xa3\xcd\x4d\xdc\x5f\x19\xa6\x6e\xcd\xe2\x26\xbc\xfa\xfb\xe3\xfd\x45\x92\x0e\x95\xe9\x8e\x64\xdc\x05\xf3\x36\x57\xec\x49\xe6\xad\x30\x2a\xc6\x73\x3b\x15\x00\x72\x65\x45\x54\x32\xae\x30\x2a\x83\xd9\xed\x68\x03\x3f\x37\xff\x5d\xe4\x2f\x6a\x03\xc4\xd7\xb7\x36\x70\x63\x03\xec\x34\x5d\xb7\x36\x70\x6b\x03\x44\x95\xb7\x36\x00\xe4\x8a\x3d\xdd\x0e\x07\x72\x7d\x2b\x43\x9e\x5c\xdf\x75\x33\x3b\x60\x3f\xea\xba\x9d\x1d\xdc\x5a\x0a\x61\xb2\xf4\xdf\x75\x33\x81\x67\x3f\xea\xba\x9d\x30\x40\xff\x1d\x26\x4d\xa5\xff\x2e\xb8\xbe\x99\x9d\xa6\x4b\xae\xef\xba\xf1\xfd\x6c\x9d\x5d\xb7\xc6\x03\xe4\x4a\xb8\x21\xfd\x57\x18\x9f\x17\x32\x62\x83\xc5\x9b\x2b\x89\x74\x59\xbc\x4b\xca\xae\x09\x58\x29\xbb\x0b\x32\x6e\xae\xd8\x93\x64\x5c\x61\x54\xc2\xe4\xa5\x57\x87\x79\x9b\xd9\x43\xba\x64\xde\x0a\xc3\xce\x91\x79\xbb\x60\xdb\xe6\x3a\x7c\x16\xef\xb8\xd4\x68\xc2\xe4\xa5\x46\x43\xc0\xcd\x15\xbd\x5f\xaa\xaf\x64\x5c\x3b\x47\x32\xee\x5a\x2c\xfd\xb0\xef\x73\x2d\x97\x7e\x80\x51\x89\x4a\xd7\xfd\x79\xfc\xe3\xf1\xa8\x21\xb7\x96\xea\x0b\x8c\xca\xe0\x2f\x3f\x77\x41\x8d\xcd\x0d\x87\x2a\x35\x56\x18\x6c\xfc\x5d\x4b\x5d\x05\x72\xbb\x14\xf9\x8b\x7a\x75\x42\x84\xa5\xfa\x02\xb9\x61\xa2\x12\x68\x85\xe1\x47\x93\x40\xbb\xd6\xa3\x98\xb9\x31\x21\x5d\x2a\xa6\x04\xda\x4a\x20\x21\x81\x76\xc1\x90\xcd\x0d\xbd\x5f\x3a\x7a\x60\xd4\xe6\x8d\xb7\x22\x5a\x9f\x15\xd9\x7a\xe2\x27\xb6\x1a\x2f\xd9\xb2\x0b\x3a\x6c\x36\xd1\xb9\xf4\xfd\x4b\xbd\x6f\x8a\x6c\xd7\x03\xb9\x31\xda\xc8\x96\x15\x06\x1b\x92\x97\x6c\xd9\x05\x5b\x36\x37\x14\x53\xb6\xac\x30\x54\xb9\xa5\x29\x40\x5b\xcd\x8d\x31\x69\xa9\xab\x4b\xdf\x4f\x84\x2b\x85\x75\xad\x47\x31\x73\xb3\x0b\x55\xcc\xa5\x57\x57\x31\xf5\xea\x40\x6e\x36\xd5\x79\x03\x44\xd7\x61\xea\x5e\xa2\xeb\x82\xaf\x9a\x1b\x37\xca\x57\x15\x46\x65\xd0\x08\xfd\x2a\x7c\xd5\xdc\x88\x79\xe4\xab\x0a\xc3\x04\xbf\x7c\xd5\x15\x68\x61\xc3\x93\x87\x5a\x08\x8c\x4a\xec\x1a\x3a\x51\x38\xaa\xb9\x0d\x9f\xb5\x14\xd1\xf7\x18\x8c\x7c\xd5\x15\xf8\xd5\x36\x15\x1d\x45\xf8\x55\x62\x57\x29\xac\x0b\xbe\x6a\x6e\x78\x72\xf9\xaa\xc2\x90\x52\x10\x06\x25\x40\xee\x24\x8c\x42\xef\x1b\x7a\xdf\xee\x8d\xb6\x8b\x09\x69\x67\xf0\x0f\x27\xa4\xc0\xa8\x0c\x60\xa1\x13\x05\x72\x47\xa3\x43\x27\x1a\x6a\xa1\x9d\xa3\x16\xc6\xa3\x4c\x99\xfd\x99\x2b\x54\x26\x60\x54\x16\x46\xc3\x70\x03\x0a\x6b\x36\x47\x29\x85\x55\x18\x92\x18\x42\xfd\x0a\xfc\x2a\x85\xfa\x56\xe8\x57\x43\xcd\x19\xe5\xb7\x87\xe2\x50\xb1\x80\xdc\xf1\xb1\xe1\x2a\x77\xe8\x76\x09\x5a\x43\xb7\x1b\x87\x2e\xc0\xc7\x86\x0b\x9b\xc0\xa8\x43\x91\x5d\x80\xab\xa4\x70\xdc\x8a\xf3\xb9\x11\x67\x33\x14\x4d\x45\xcf\x07\xa4\x8c\xdb\x92\x07\xbb\xe0\xbe\x66\x76\x61\xae\x6d\x4c\x2c\xe9\xb5\xa2\x0c\x92\x5e\x85\x6c\xa2\x73\x1b\x35\x6c\xa3\x06\xdc\x9b\x3c\xd8\x05\xe9\x35\xb3\x0b\x73\x49\x7a\x5d\xd2\x59\x2b\x61\xb2\x74\xd6\xb5\x59\x6e\xe9\xa8\xdf\x76\xb9\x45\x3a\xab\x4e\x50\x3a\xab\x90\x3b\xca\xb0\xd5\xee\xad\x76\x13\xc7\x6e\xb5\x7b\xb3\xa6\xd8\xf9\xcc\x5b\x25\x05\x46\x9d\x8a\xfc\x45\xbc\x67\xf7\x85\x54\x52\xe9\xac\xd2\x44\xa4\xb3\xae\x8d\xde\x76\x9b\xaa\xde\x6e\x22\x67\xb6\xdb\xaf\xad\x92\x02\xb9\xdb\x08\x95\x14\x18\x0d\x55\x96\x07\x2b\xe4\xf1\x79\xbc\x3d\x41\x7c\xad\x73\xde\xc6\xd7\x1b\x4f\x4c\xad\xb0\xb5\xf5\xc4\x9b\x8c\x1f\xdb\xa7\xd6\x56\xe1\xf7\xa3\xbe\x99\x3a\x5a\x6b\xbb\xe8\x07\x1d\x76\xb4\x8f\xc8\x67\xe1\x3d\xa9\x1e\xb5\xb6\xde\x13\x18\x8d\xd8\x53\xb6\xac\x90\xcd\x7d\xca\x96\x5d\xfb\x51\xf8\xd1\x88\x3d\xb7\x0a\x0f\x5f\x35\x53\xf1\x69\x6d\x87\x75\x60\x34\x62\xc4\xed\x52\x3d\x90\xa9\x73\xb4\xb6\x6b\x33\xc0\x70\x68\x91\xe1\xba\x36\x6b\x33\xe6\x51\xb7\x83\x3f\x30\x28\x29\xb0\xb6\x1a\x0d\x64\xea\x09\xad\xad\x46\x03\xc3\x01\x68\x1b\x72\xc3\x5d\xcd\xd4\x13\x5a\x72\x57\x17\xdc\xd5\xd1\x88\x11\xe5\xae\x2e\xc8\xa5\x99\x9a\x38\x4b\x72\xa9\x30\x24\xdf\x1c\x07\x6c\x20\x53\x2f\x66\x1d\xb5\x10\x18\x8d\x20\xee\x38\x59\x3b\x68\x21\x95\x60\xd6\x51\x0b\x81\x21\x45\xe7\xa8\x85\x07\x1f\x4b\x25\x98\x75\xf4\xb1\x87\x91\xbe\x11\x23\x1e\x47\x7a\x20\x8f\xee\x2f\xbe\x15\xf1\x1d\x19\x18\x8f\x53\xba\x83\x46\xb3\x51\x71\x1d\x35\x1a\x18\x0d\x97\x74\xd4\x68\x20\x53\x5e\x65\x1d\x3d\xf1\x81\x30\xd3\x88\x37\x8f\x4b\xe2\x70\x6a\x33\xdb\x19\x97\x9c\x5a\x61\x48\x1d\x92\x53\x2b\x64\xb6\x33\x2e\x39\xb5\xc2\x70\x90\x95\x53\xbb\x8e\x1a\xcd\xb4\xf5\xa8\xd1\x87\xf5\x94\x96\x15\x2d\x45\xb4\x7e\xfa\x8b\xb6\x9e\xd8\x82\x62\xb7\x4b\xe6\xad\x90\x29\x2a\xb2\x8e\xb1\x05\x30\x1a\x6a\x22\x19\x77\x41\xc0\xcd\x94\x0b\x59\x47\xaf\x0e\x19\x77\x38\x60\x4b\xc6\x15\x32\xa5\x34\x96\x64\x5c\x61\x34\xd4\xe4\x68\x1d\x40\x36\xbf\x7b\xb4\x8e\xa3\x75\xb0\x94\x7a\xb4\x8e\x43\x4c\x3d\x2f\x45\x36\x55\xeb\x20\x46\x3c\x5a\x07\x5c\xdf\xcc\x96\xcd\x25\xd7\x57\x18\x8d\x18\xf1\x18\x5b\x1c\x9c\xfb\xc4\xd2\x8e\xce\x1d\x18\x54\x88\x58\x47\xe7\x0e\xfd\x37\x53\xb2\x62\x49\xff\x15\x46\xc3\x93\xcb\xef\x15\xf2\xf4\xd3\x6a\x7c\xc0\x68\x04\xe3\xf2\x7b\x85\xcc\x26\xd1\x25\xbf\x57\x18\xad\x2a\xf2\x85\x98\xc9\x4e\x3f\xad\x66\x05\x0c\xf9\x5e\xf2\x7b\x17\x34\xdd\x3c\xed\x68\xc7\x0e\x69\xba\xad\x7a\xa3\xed\x62\xd5\x65\xda\x85\x4e\x48\x8f\xf6\xf8\x18\x5f\xc8\xdc\x0d\x78\xb8\x99\x0d\xa7\xf1\x62\x7d\x53\x18\xed\x89\x5d\xe3\xc5\x08\x13\x30\x6c\x33\xe5\x0d\xc2\xea\xc2\xf1\xd2\x6a\x9f\xd8\x35\x64\xdb\x06\x0c\xdb\x3c\x9f\xf8\x29\xa0\xd9\x3e\x60\xeb\x79\xfc\xed\xe3\xb1\xb4\xd9\xc6\x6f\x0e\xc5\x61\x41\xe2\x78\xb1\x90\x02\x4d\x2d\x5e\xc4\x3f\xf1\xc2\xc4\xd8\xfc\x1e\xd4\x2b\xfe\xc0\x80\xa6\x16\xd6\x2d\x0e\x68\xba\x99\x0d\xeb\xf1\x5a\xbe\x89\x83\x46\xa3\x0b\xb0\xa7\x78\xb1\x18\xc9\x66\xee\x80\xd1\xfb\x81\x01\x99\x2d\x24\xf6\xc6\x4b\xc5\x9a\x34\x62\xfb\x72\x2a\x56\xe3\x46\x14\x2b\xa8\x37\x5c\xd8\x8f\x1a\xd6\x1b\x16\x46\x7b\xc6\xdd\x78\x6d\x1b\xf1\x68\x51\x61\xa7\x69\xc8\x96\x15\x06\x35\xa6\xc3\xaa\xc4\x42\x61\x2b\x68\x48\xa0\x15\x46\x6b\xbc\x10\x5a\x14\x30\x64\xcb\x2b\xd1\xd4\xe3\x0b\xb1\x04\x47\xb9\x90\xb0\x6c\x70\x40\x9a\x2d\xec\xd5\x8c\xd7\xf1\xf1\x2c\x89\xc3\xbe\x8a\xd7\xf1\xf1\x8f\x7e\x14\xb2\xd3\x21\xa7\x36\x2e\x26\x6b\xed\x09\x34\x03\x7e\xed\x07\x0a\xd9\xe9\x90\x66\x2b\x8c\xf6\x84\x90\x61\x09\xe2\x80\x6d\x5b\x5e\x45\x51\x57\x84\x89\x3d\x51\x43\x58\x82\x38\xa8\x37\x5c\xd8\x00\x19\xd6\x1b\x16\x46\x7b\x3c\x71\x58\x6f\x38\x20\xe3\x16\x32\xdd\x21\x19\x37\x28\x41\x3c\x88\xaf\xc3\x12\xc4\x41\x8d\xe1\x42\xa6\x3b\x2e\x75\x8d\x82\xc2\x83\x32\x26\x01\x7d\xf7\x03\x85\x6d\x7f\x21\x8b\x57\x18\x44\xe1\x61\xbd\x61\xa1\xb0\xa1\x2f\xae\xdb\x76\x11\x72\x53\xec\x24\xe4\xfa\x06\x94\xdd\xc2\x86\xbe\x90\xb2\x1b\x97\xe1\xc6\xa0\xf5\xcb\xc7\x2f\x9e\x65\x23\xd4\xaf\x4b\xfd\x42\x99\x2e\xf5\x0b\x7e\x6e\x79\xd9\x08\xc2\x8d\xa0\x38\xf1\x80\x9b\x18\x54\x28\x7e\x80\x77\x1c\xbc\x63\xf8\x8e\x04\xd3\xc4\xfd\x71\x85\x1d\x1d\x3c\x6b\xd2\xd4\xf0\x59\x2c\xd4\xb5\x8f\xc8\x2e\x7c\x3c\x66\xb9\x5e\xdc\xb8\xfd\xda\x6a\xf4\xe4\xb5\xd5\x68\x6a\x0c\x17\xd2\xda\x01\x31\xf7\x01\xfa\x6b\xd2\x88\x6d\x7f\x3d\xea\x5b\xd8\x6e\x16\x97\xea\x2b\x19\xb7\xbf\x78\x47\xd5\x17\x28\x6c\x24\x0b\xeb\x0d\x07\x35\x86\x47\x7f\xf1\x8e\xc7\x77\x3c\xb4\x2b\x71\xe3\xb1\x5d\x04\x25\xdd\xa6\x1e\xbf\xf6\xe3\x2a\x0b\x69\xed\x90\xc5\x2b\x0c\xe6\x23\x21\x8b\x37\x60\xee\x96\x2b\xf1\xda\x5a\x07\x2c\xde\xd1\x5f\x8a\x6c\x3d\x7a\xcf\x86\xad\x90\xb2\x2b\x14\xb2\xd3\x21\x65\x57\x18\xfd\x89\xeb\x22\x69\x0a\xe9\xd1\xfb\xc2\x5e\xa9\x48\xea\x3d\x30\xa0\x77\x86\x85\x8a\x03\xae\x6f\x61\x7f\x53\xc8\xf5\x15\x46\xbf\x14\xbd\x15\xd1\x88\x67\x30\x8b\xa4\x92\x03\x03\x12\x68\x24\xc2\xa0\x48\x8f\xae\x17\x36\xfa\x04\xec\xe0\x0f\x8c\xfe\xc4\x88\x21\x49\x58\x28\x64\xa7\xc3\x0a\xc7\x41\x55\xe3\xd1\xf1\x4c\x70\x88\x1f\x58\x5c\x45\xeb\xd5\x68\x49\xc2\x4c\xd6\x42\x92\xb0\x50\xd8\x99\x12\x92\x84\x85\x01\xed\x34\x24\x09\x07\x2c\xe0\xc2\x9e\x93\x48\xcb\x76\x2d\xdb\xc5\xe3\x97\xed\x5a\xb4\xab\xd3\xfa\x65\xbb\x96\xfd\x45\xaf\x6a\x43\x40\x61\x07\x48\x58\x40\x59\x18\x4c\x0f\x43\x2a\x71\x50\x47\xb9\xb0\xb7\x23\xd2\xb2\x5d\x18\x0c\xc5\xec\x23\x69\x30\x90\x84\x0b\x45\x93\x43\x16\xb0\x30\xa0\xc3\x46\x0a\x7f\xf1\x89\x53\xca\x85\x59\xa5\xf0\x73\x10\xa7\x50\x0a\x28\x12\x71\x4a\x40\x06\x2e\xec\xed\x08\x2b\x24\x07\xc4\xe0\x41\x3d\xfb\x90\x18\x1c\x09\x83\x49\x68\x61\xd2\x60\x12\xce\x9d\x5a\xf5\x91\xb4\x0e\x88\xc1\x25\xa9\x00\xdb\xd6\x6b\x0a\x99\x77\xd4\x14\x80\x92\x30\x2b\x89\xc1\xc2\xe8\xea\xaa\xa6\x90\x1e\xbd\x2f\xc9\xcf\xa1\xde\xcb\x15\xa6\xbe\x7c\xc8\x15\x0e\xf8\xc1\x25\xd9\x39\xc7\x76\x31\x09\xed\xf9\xb7\x69\x5b\x91\x8e\x7a\xfb\x18\x4c\x49\xbe\xef\xb1\x57\x20\x0e\x50\x6b\x3e\x92\x43\x0b\x25\x9f\x0b\x7b\x48\x03\xf2\xf1\x07\x06\xd3\xe9\x90\x83\x1c\xf0\x8e\x4b\xe2\x7d\x2d\xff\x1c\xb0\x8b\x07\xec\xe2\x90\x5d\x2c\x14\x98\xff\x21\xbb\x58\x18\x90\x84\xc3\x2a\xce\x91\x6f\x3a\x8a\x31\x29\xdf\x3e\x9e\x11\xa2\x3f\x01\x5d\x64\x47\x08\x38\xc8\x25\x7d\x44\x45\x11\x66\x41\xfc\x93\x35\x0b\xa0\x50\x9f\x39\xb2\x83\x06\x30\x3a\x56\x67\xf9\xe7\xa0\xe4\x73\x49\xd5\x5f\xbc\x15\xd1\x13\x9f\x1b\xe9\x09\x98\xca\x25\x55\x7e\x51\x85\xcf\x2a\x3c\x83\x99\x25\x9b\x85\x02\x81\x3f\x2c\xd9\x2c\x8c\xee\xe3\x55\xf8\xfc\x0c\x27\x85\x9d\xa6\x91\x09\xf2\x43\x3e\x73\xc7\xce\xe5\x33\x07\x4c\xe5\x92\x18\xb0\x65\x2a\x0b\x83\x6a\xed\x91\x55\x78\x8a\x26\x17\xaa\x25\x47\x76\x38\x90\x83\x4c\xb5\xf6\x90\x83\x1c\xd4\x54\x2e\x54\x38\x0e\x6b\x2a\x0b\xa3\x13\x8b\x59\x53\x39\xa0\x25\x17\xf6\x90\x86\xb4\x64\x61\x74\x22\x41\x6b\x2a\x07\xd5\x92\x4b\x7e\xf1\xb5\x8d\x79\xb2\x23\x04\x11\x9b\xe4\xe5\x80\xb0\x5c\x32\xce\xd9\x6a\xc9\xc2\x60\x75\x23\x24\x2f\x07\x45\x8f\x4b\xc6\x13\x5b\xf4\x58\x18\x94\x79\x0f\xc9\xcb\x01\x15\xb9\xc0\x4b\x0f\x8b\x1e\x0b\xa3\xdb\xd1\xc6\x3c\x40\x81\xc6\x1d\xd2\x92\x85\x41\x99\xf7\x90\x96\x1c\x94\x43\x2e\x24\xbf\xa3\x18\xf3\x00\x83\x32\xef\x61\x69\x64\xa1\x40\xaa\x8e\xa2\xef\x2f\x2c\x63\x43\x2f\x8f\xa2\xef\xa7\x0e\x72\xc9\xd8\xa6\x75\x90\x03\x5a\xf3\x60\xd5\x25\x2c\x7a\x1c\x14\x3d\x2e\x19\xbd\xb7\xe8\x71\x48\x71\x66\xd5\x25\xa4\x38\x0b\x05\x16\x6f\x58\x07\x59\x18\xac\xba\x84\x75\x90\xa3\xdc\xf4\x04\x4a\x5e\x54\x4c\x60\x40\x55\x8f\xa2\xef\x07\x0a\x69\xed\x28\xfa\xfe\xa2\xa3\x1f\xcf\xd7\xb6\x5a\x72\x50\x0e\xb9\x90\xd6\x8e\xa2\x57\x07\x06\x84\xf6\x28\x2a\x39\x50\xd8\x56\x1a\x52\xaf\xa3\xa8\xd1\x83\x2e\x54\xa3\x81\x02\xcd\x36\xa4\x5e\x0b\x83\x32\x5d\x21\xf5\x5a\x28\x10\x68\xc3\x02\xca\x41\x69\xe4\xd1\x07\x3d\xa1\xef\x87\x7a\x5d\xb2\x1d\x1d\x76\x21\xe9\x9b\x4e\x94\x45\x4d\xe4\x07\xe8\x2f\x06\x0d\x68\xd8\x1f\x18\xac\x2c\x85\x6c\xec\xa0\x0e\x72\xc9\x76\x4e\xd8\x5f\x5a\xc7\xa4\xa9\x5a\x07\x0c\xec\x02\x8d\x32\x8a\xa6\x00\x0c\xd6\x9f\x42\x36\xb6\x50\xb2\x8f\xd7\x3a\x8a\xd6\x41\xfc\x54\xb4\x0e\x18\xd8\x05\x52\x63\x58\x40\x59\x18\xac\x52\x85\x05\x94\x85\x02\x07\x30\x24\x68\x87\xd4\x6b\xea\xde\x87\xd4\xeb\x80\x67\x5d\x0a\x11\x9b\x3c\x6b\x61\x40\xed\x8f\x62\xcc\x03\xa9\xba\xc0\xb5\x0b\x49\xd5\xc2\xa0\xc8\x58\x48\xaa\x0e\x49\xd5\x14\x93\x0f\x49\xd5\x41\xed\xe3\x02\xcd\x2d\xac\x7d\x2c\x0c\xca\xc4\x87\xa4\x6a\xa1\xb0\x79\x35\xaa\x81\x3d\x30\x28\x13\x1f\x56\x48\x0e\xca\x21\x97\x92\x26\xa2\xad\x88\x46\x10\xf3\x54\xad\x03\x82\x76\x81\x9a\x16\x12\xb4\x85\x41\x99\xf8\x90\xa0\x1d\x10\xb4\x0b\xdc\xb1\x90\xa0\x1d\x94\x40\x1e\x94\x89\x8f\xaa\x29\x40\xbd\x2e\xa5\xf8\x2c\xdb\x75\xdb\x2e\xde\x51\xeb\x00\x0a\x1c\xad\x90\x7a\x2d\x0c\xf6\x2a\x84\xd4\xeb\xa8\x37\x9f\x83\xe1\xa4\x6a\x1d\xc0\x18\x76\xce\xb2\xa9\x0c\x01\x50\xa2\xa2\x6a\x1d\xc0\xa0\x00\x7c\x58\x6d\x59\x28\xa5\xd6\xdf\x1e\x8a\x2d\xc6\x2c\x0c\xea\xc3\x47\xd5\x9e\x2a\x23\x04\x2c\xa7\xa8\x1a\x0f\xf4\xf0\xc1\x6a\x61\x48\x0f\x17\x0a\x35\x95\x43\x7a\xb8\x30\x06\x93\xc8\xea\xe4\x03\x7a\x78\x81\x73\x14\xd2\xc3\x85\x41\x7d\xf8\xa8\x0e\x2d\xd4\x67\x2e\x70\x7b\xc2\xfa\xcc\x51\x99\x69\x0c\xbf\xbc\x43\x0b\x50\x60\xa1\x84\x25\x9b\x85\x31\xfc\xf2\xda\x13\x50\x0a\xf3\x24\xd9\xe7\xc2\xa0\x8a\x7c\xc8\x3e\x8f\xba\x79\x47\xdc\x48\x75\xf2\x41\xc9\xe6\x41\x15\xf9\xb0\x64\x73\x50\xa6\xb9\xc0\xd0\x88\xaa\xf1\x00\x83\x52\x75\x51\x35\x9e\x7a\xf8\x45\x46\xae\x6a\x2c\x05\x2f\x7d\x0c\xb5\xc8\xa1\xc5\x73\xa5\x2a\x26\x56\x9d\x43\x00\xb5\xa9\xca\xc6\x52\x50\xd5\x0b\x4c\x88\x90\xaa\x1e\x54\x6e\x1e\xac\xae\x46\x73\x84\x80\xaa\x5e\xc8\xd3\x87\x54\xf5\xa0\x80\xf2\x60\x75\x35\x2c\xa0\x1c\x54\x4b\x2e\x64\xa7\xc3\x6a\xc9\xc2\x60\x75\x35\x24\xb4\x07\xec\xf5\x42\x46\x39\x64\xaf\x0b\x83\x6a\xed\x21\x7b\x5d\x28\x35\x4f\x44\xa1\x88\xaf\x8d\x76\x4b\x68\x17\x4a\xfd\x34\xc2\x76\xa9\xca\x0c\x2d\xb2\xd7\x03\xc6\x7a\xa9\x3e\x5e\xdf\x2f\x7b\x9d\x3a\xec\x21\x7b\x3d\x1a\x5a\x58\x3f\xa2\xb7\xa2\x37\x57\xd1\x08\x5d\x38\x65\x96\x0b\x79\xd4\xb0\xcc\xb2\x30\xa8\xaa\x1e\x72\xdc\x03\x8e\x7b\x21\xf7\x19\x72\xdc\x85\x41\xd1\xbe\x90\xe3\x2e\x14\xb2\x87\x61\x4d\xe5\x90\xe3\x3e\x18\xcc\xe4\xb8\x07\xd5\x92\x4b\x6d\x3e\xcb\x76\x11\xe4\x53\x7b\x3d\xac\x96\x1c\x8d\xc8\xa8\xa2\xd1\x4d\xf5\x05\x06\xa5\xfd\xa2\xa9\xbe\x40\x21\xb3\x16\x16\x50\x16\xc6\xb0\xa9\xaa\x6f\x63\x35\x88\x9c\x59\x34\x87\x03\x60\xb0\xdb\x28\x9a\xc3\x01\x50\x2a\x83\x6c\x73\x38\xa0\xf2\xf2\x18\xc4\x62\x56\x5e\x0e\x0a\x28\x17\xd2\xda\x61\x01\xe5\x90\x7b\xcf\x9e\xa4\x90\x7b\x1f\x10\xed\x0b\x79\x9f\x90\x68\x2f\x8c\x61\xe7\x1c\xbb\x90\x09\x43\xc5\x3a\x24\xda\x07\x05\x94\x07\x25\x07\xc3\x02\xca\x41\x39\xe4\x42\x46\x27\x9a\xf1\x53\x73\x84\x20\xca\x92\x42\x1f\xf0\xe5\x4b\x7b\x29\x2a\x8a\xd0\x09\x22\x23\xf9\xf2\x01\x39\xbe\x34\x46\x08\xc9\xf1\x01\x13\x7e\xb0\x7a\x1f\x32\xe1\x85\x42\x86\x22\x64\xc2\x0b\x83\xd5\xfb\xe8\xce\x08\x80\x42\xee\x21\x24\xc7\x47\x77\x38\x20\xe8\xed\x0e\x07\x40\x21\x13\x10\x92\xe3\xa3\x6b\x43\xac\x2c\x75\x6d\x08\x28\xac\xf1\x87\x7c\x79\x61\xb0\xc6\x1f\xdd\x28\x0b\x28\xac\xde\x87\x35\x95\x03\xbe\xfc\x18\x7c\x34\xf9\xf2\x01\x55\xbd\x50\x1a\x39\xa4\xaa\x0b\x83\xdd\x59\xd1\xf5\xd1\x30\xd6\x0b\x6b\xd6\x61\xb5\x64\x61\x90\x09\x88\xae\x75\x40\x3c\x2f\xac\x33\x47\x57\xa3\x25\xa1\x53\x1c\x3d\x24\xa1\x47\x7f\xd4\xb7\x34\xd4\xa4\xc7\xe7\x46\xbe\xd0\x50\x84\xfa\x52\x57\xb8\xb8\xb4\xd8\xd5\x2f\x60\x90\x2f\x88\xee\x1c\x15\x28\x2e\xce\x59\x76\x38\x60\x99\x0f\xca\x9e\x87\x65\x87\x03\xfe\x78\x61\x67\x6e\x48\xf6\x0e\x28\xd2\xa5\xcd\xe7\x85\x2c\x90\x2b\x0c\x36\x92\x85\x07\xe6\x05\x0c\xea\xe2\xb4\x55\x06\xb5\x30\x48\x47\x84\x0c\x6a\xa1\x38\x97\x94\x41\x2d\x8c\x81\x16\x5a\x33\x37\xc6\xd3\x47\xc5\x59\xe2\x70\x4c\x93\x54\x4d\xbd\xf4\x90\x54\x1d\x30\xa8\x4b\x67\x31\x53\x06\x75\xc0\xa0\x1e\x6c\x5d\x0b\x19\xd4\x42\xe1\x14\xb1\x90\x41\x2d\x8c\xf9\xfa\x07\x66\xc5\x43\xff\x03\xe7\xba\x38\x21\x95\x54\x2d\x0c\xf6\xbf\x85\xa4\x6a\xa1\x38\x3d\xb4\x16\x6f\x0c\xd2\x1c\x94\x40\x8f\xe1\xf0\x09\x5d\xba\x38\xa5\x93\x2e\x2d\x0c\x4a\xa0\xc7\xd0\xa8\x29\x90\x5b\x3a\x0b\xae\xc3\xf9\x3d\xac\xe9\xc1\x5e\xba\xb0\x32\x6e\x40\x71\x2e\x1c\xe9\x14\x52\x9c\x03\xc2\x71\x21\xdb\x1a\x12\x8e\x85\x41\x92\x26\xac\x79\x2b\x14\x72\x9f\x61\xcd\x5b\x61\x4c\x86\xbc\xe9\x5a\x14\x50\x38\x01\x29\x64\x2a\x07\xb4\xe4\x41\x2a\x27\xa4\x25\x07\x15\x68\x8b\x21\xa4\x15\x68\x85\x41\x55\xf4\x98\x7e\x79\xb8\xbe\x85\x53\x65\x42\xae\x6f\x50\x6e\x76\xb0\x7b\x2f\x2c\x37\x1b\x50\x76\x8b\x23\xaa\x94\x5d\x61\x90\xca\x09\x29\xbb\x01\x3f\xb7\x38\x8e\xc8\xcf\x15\x06\xf5\xce\x43\x7e\x6e\x40\xc6\x2d\x64\x22\x43\x32\xae\x30\xa8\x77\x1e\x92\x71\x85\xa2\x57\x97\x8c\x2b\x0c\xf6\x0b\x86\xc5\x5f\x63\xb2\xfc\xa9\xbf\x9e\x2e\xf0\x00\x83\xaa\xe8\x61\xf1\xd7\x80\x6d\x5b\x06\x13\x99\x69\x6c\x01\xcd\x76\x90\x62\x0a\x69\xb6\x01\x35\xb6\xe8\xcb\xa4\xc6\x06\x74\xd8\x42\x42\x31\xde\x3a\x54\x58\x96\x83\x1a\xe7\x21\xcb\x32\x20\x48\x16\x2a\x68\xc7\xdb\xc8\x48\xb2\xa4\xa9\x0d\xc9\x92\x01\x0d\xb2\x50\x37\x3a\xa4\x41\x0a\x83\x3a\xb5\x21\x0d\x52\x28\x94\x46\x0e\x4b\x80\x0a\x83\xba\x9a\x21\x33\x32\xe0\x3c\x16\x8a\x1e\x87\x9c\x47\x61\x4c\xf4\x4b\x52\x63\xdc\xac\xf3\x50\x82\x38\x6e\xe7\x10\xc0\xa0\xfa\x66\x58\x3b\x34\x28\x14\x5a\xd8\x55\x18\x16\x0a\x15\x86\x29\x17\xd9\x90\x01\x03\xb2\x50\xea\x37\x2c\x14\x1a\x16\x0a\xa5\x32\x6e\xc8\x86\x0c\xaa\x6f\x16\x5f\xc8\xea\x9b\xc2\x98\xf8\xb2\xdb\xc8\x08\xa8\x14\x69\x8d\x5b\x17\x0e\x8c\x89\x2f\xbb\x8d\x8c\x20\x0f\x56\x8a\xb4\x86\xe4\x41\x61\x50\x3f\x37\x6e\x3d\x0b\x50\xa9\xd1\x19\xf2\x09\x85\x41\x55\xd0\xb0\xb8\x67\xdc\x8f\x07\xa8\xd4\xe8\x8c\x5b\x0f\x00\x0c\x76\x38\xc6\xed\x54\xf3\x7e\x34\xba\x52\x7d\x33\x6e\x35\x1a\x18\x54\xc3\x0d\xf9\x84\x01\x87\xb0\xbe\x88\xeb\x6e\x35\x1a\x98\x54\x18\x8d\xdb\x68\x19\xa8\x14\xbe\x0c\x29\x86\xc2\xa4\x1a\x6e\x48\x31\x0c\x98\x82\x95\xc2\x97\x21\x53\x50\x98\x54\xc3\x0d\x0b\x85\xc6\xbd\x69\x57\x55\x64\xbb\x1e\x98\x54\xc3\x0d\xf9\x84\x01\x9f\xb0\x52\x3a\x32\xe4\x13\x0a\xf3\xd3\xd1\xfa\x2f\x28\x86\x95\xa2\x90\x21\xc5\x30\xe0\x13\xce\xd7\xcb\x1b\x87\x22\xfa\x9e\xa0\x44\xf2\x60\x50\x0b\xb3\xbe\x58\x41\xb6\x16\xa6\x30\xd9\x11\x1a\xcb\xef\x08\x49\xaf\x72\x94\x62\x48\xd2\x13\x26\x45\x6d\x43\x92\x5e\x40\xcc\xab\xec\xfe\x0b\x2b\x66\x0a\x93\x0a\xb6\x61\xc5\xcc\xa0\x16\x66\x65\xf7\x5f\x58\x0b\x33\x28\x7c\x39\xa9\x60\x1b\x16\xbe\x0c\xe8\x77\x95\x1d\x7b\x21\xfd\x4e\x98\xe6\x02\x97\x0a\x00\xfd\xae\x5e\x38\x2b\xe9\x77\xc2\x7c\xe1\x0b\xad\x5f\x19\xb0\xe8\xaa\x49\x0b\x59\x74\xc2\xa4\x82\x6d\xc8\xa2\x0b\x28\x73\x95\xca\x70\x21\x65\x2e\x96\x9f\x96\x85\x60\x29\x73\x41\x35\xc9\xca\xfe\xb9\xb0\x9a\x64\x50\x22\x72\x72\x68\x69\x2c\xbf\xf6\xe2\xa3\x99\x7b\x58\x7e\xb4\xe5\x47\xc3\x63\x2e\x3f\x1a\xc4\xba\x4a\xf9\xb0\x90\x58\x27\x4c\xf6\xd9\xc6\xd2\x9b\xc0\xb5\xab\xec\x79\x0b\xb9\x76\xc2\x34\x93\xb9\x74\x1d\xf0\xeb\x2a\x05\xb8\xc2\xa2\x92\x01\xd7\x6e\x6a\x43\x72\xed\x84\xf9\xfa\x07\x8e\x83\x08\x6b\x4e\x0a\x95\x0a\x59\x11\x3a\x1b\xca\x50\x4e\x0e\x56\x0d\xcb\x50\x46\x3c\xae\xa3\x52\x89\x2a\xc2\x05\x0b\xaa\x51\xce\x57\x56\x84\x62\xc5\x8d\x7e\x30\xc8\x86\x51\x25\x30\x39\x6b\x35\xa4\xf5\x05\x54\xbe\x6a\x86\xc1\x9a\x93\xc2\x64\xc7\x70\x84\x51\x25\x65\x28\xeb\x35\x7c\x96\xbf\x78\xfb\x8b\x8a\xfc\xc5\xa0\xf5\xf8\x32\xe9\x73\xc2\x64\x5f\x71\x48\x9f\x0b\x6a\x3b\xd6\x84\x32\x58\xdb\x51\x98\x7a\x83\x88\xcf\xb3\x1e\x73\x75\xa9\x5e\xfa\x9c\x30\xcd\xef\x86\x6e\x04\xae\x5c\x75\xa9\x5e\xae\x9c\x30\xa9\xc5\x1b\xa1\x16\x51\x14\xb2\x52\x62\x28\x2c\x0a\x29\x4c\x0a\xef\x86\x45\x21\x23\xd0\xa2\xe4\xe3\xd5\xa2\x50\x8b\xf0\x3f\xf2\xe3\x22\xd0\x22\x0a\xeb\x44\xa8\x45\xa1\xe9\x13\x84\xc9\x8f\x8b\x78\x26\x1f\xd5\x45\xf8\x38\x9f\xc7\x63\xe7\x9f\x1b\x43\x11\xef\x88\xae\x59\x4d\x52\x98\x94\xe7\x0d\x59\x74\x41\x21\xc7\x9a\x18\x9d\x2d\xe4\x28\x4c\xca\xf3\x86\xcc\xb7\x80\xc0\x56\xa9\x56\x13\x12\xd8\x84\x69\x76\xda\xaa\x8d\x41\x89\xc6\xca\x3e\xb5\xb0\x44\xa3\x30\x5f\x84\x1b\x96\x68\x0c\x18\x6a\x35\x91\xcc\xdd\x2e\xf0\x00\xf3\xc5\xb4\x55\xb6\x5a\xc0\x2a\xab\x2e\x9c\x6f\x87\x16\x60\xea\x63\xb7\x43\x0b\x50\x5d\x12\xdf\x7a\x16\xb8\x67\xd3\x7c\xf8\x56\x4d\xe0\xa1\x55\x97\xc4\xe5\xa1\x09\x53\x4f\x6c\xd5\xc6\xa0\xf8\x62\x65\xa7\x57\x58\x7c\x51\x98\x2f\x26\xb7\x16\x5f\x0c\x6a\x28\x56\xaa\x91\x84\x35\x14\x85\x49\xa9\xdf\xb0\x86\x62\x40\x3a\xab\xec\xe1\x0a\x49\x67\xc2\xd4\xab\x4b\x3a\x0b\xb8\x63\x95\xdd\x59\x21\x77\x4c\x98\xe6\xe9\xe5\x8e\x05\xe5\x0f\xab\x8b\xdd\xdb\xaf\xbd\xfd\xda\x38\x08\xe9\x64\x01\x9d\xac\x66\xba\x50\x3a\x99\x50\xa9\x16\x11\x47\x0f\x70\xde\x3c\xbe\x79\x55\x51\x54\xb8\xaa\x21\xaa\x8a\x30\xd1\xe6\x8d\x7c\x21\xb8\x63\x95\xd2\x10\x21\x77\x4c\x98\x0e\x40\x47\x05\x80\x09\x56\x33\x13\xd2\xa3\xd5\x42\x01\x9b\x52\x0a\xa4\x80\x09\x95\x4d\xfd\x21\x05\x4c\x98\x52\x0a\x8e\x03\x10\xac\xb0\xca\x96\xa7\x90\x15\x16\x67\xd9\x7a\x1a\xe1\x6c\x0a\x26\x57\x75\x9d\x59\x26\x97\x30\x25\x1e\xc8\xe4\x0a\x68\x5b\x95\x1d\xe9\x21\x6d\x4b\x98\x8e\x95\xd2\xb6\x02\xaa\x56\x65\x33\x53\x1c\xe7\x95\xc0\xa4\xde\x70\x1c\xe7\x95\x07\x65\x62\x33\x53\x1c\x95\x09\x26\xd7\x7c\xf9\xda\xce\x67\xa0\x6d\x55\x0e\xd7\x0b\x69\x5b\xc2\x7c\xb1\x2c\x22\x6d\x2b\xe0\x68\x55\xd7\x99\xe5\x68\x09\x93\xb2\xc3\x71\x1c\xcc\x80\xca\x3e\xec\x90\xb6\x25\x4c\x4a\x6f\x87\xb4\xad\xa0\x52\x63\x2d\x8c\x5c\xc7\x60\x1c\x98\x2f\xe6\xf4\x32\xb9\x02\xf6\x56\x2d\xc9\x5f\x9c\x8a\x6c\xbd\x37\xda\x7a\x5c\x1a\xdb\xa7\x42\x26\x97\x30\x5f\x84\xa0\x32\xb9\x02\x8e\x56\x2d\xc9\xc7\xfb\x1d\x37\xdf\x91\x99\xff\x71\xd5\x05\x8e\x56\x75\x81\x5a\x8e\x96\x30\x25\x7d\x58\x83\x31\xa0\x6d\x55\x36\x24\x87\xb4\x2d\x61\x52\x50\x21\x8e\x03\x23\x1c\xad\xca\x02\xf5\x96\xa3\xb5\x21\x4e\x55\xd6\x99\x37\xb5\x0a\x1f\xc0\x63\x3e\x9a\xb3\xad\x4f\xb8\xa1\x44\x55\x96\x62\xb7\x94\x28\x61\xbe\x9e\x41\x67\x4b\x89\xda\x70\x9e\x2a\x3b\x8c\xf6\x6b\x79\xe3\xc2\xb6\x07\x8f\x67\xd2\xbd\xa9\x62\x58\xcb\x47\xb4\x15\xe1\x57\xc7\x6f\xd3\xb6\xf6\x6b\xf9\xeb\x0c\x66\xec\xa5\xdb\x9e\x11\x2f\x4c\xe8\x2b\xdb\x52\x88\xfb\xa5\x7e\x4c\x1a\xb4\x6d\xa3\xfa\x31\x79\x93\x6d\x17\x3c\x9d\x5e\x39\xc4\x6e\x7b\xf6\xba\x30\x5f\x53\x91\x57\xb1\x2c\xcb\x61\x71\xdb\x53\xd5\x85\x49\x01\x89\xed\xa9\xea\x1b\x2e\x54\x65\xf7\xcc\x96\x0b\xb5\x5f\x0e\x1a\x34\x55\xe2\xd3\x86\x99\x54\x59\x11\xdd\x32\x93\x84\x09\xad\x66\xcb\x4c\x12\x2a\x7b\x46\x36\x55\x04\x3f\x30\x5f\x8f\x21\x6e\x8b\x09\x6e\x38\x4b\x95\xb5\xce\x7d\x31\x77\x16\xe6\x8b\xd7\x86\xcb\xf4\x40\xe6\x2a\x6e\xc4\xff\x08\x93\x38\x76\x4b\x69\xda\x30\x93\x2a\xbb\x2e\xb6\xcc\x24\x61\x52\xf5\x7a\xc3\x52\xfa\x40\x65\xdf\xc2\x96\xac\x24\x4c\xca\x5f\x6c\x8a\x14\x3e\x40\xbb\x50\x99\x4b\xfd\xa0\x56\xe1\x24\x26\xde\xd6\x2a\xdc\x50\x9a\x2a\x7b\x0d\xb6\x94\x26\x61\x42\x1d\xda\x96\x1c\xdc\x90\x95\x2a\x6c\xfd\x2d\x59\x49\x98\x44\xce\xdb\x53\xd5\xf7\x45\xe8\x02\x7b\x7d\x53\x45\xf0\x03\x93\xa3\xca\xb7\xc5\x04\x37\xcc\xa4\xda\x7c\x21\x15\x00\xb8\xe0\x16\x6e\xcf\x4b\x17\x26\x15\xe9\xb7\x64\xa5\x4d\x01\xc1\xda\x3e\xa2\xae\xa8\xb3\x2e\x4f\x53\x19\xcc\x36\x34\xa4\x0a\xf5\x7a\x4b\x43\xda\xd0\x90\x26\x2c\xa7\x2d\x0d\x69\xc3\x20\xaa\xec\x9e\xd9\x16\x00\x14\x26\xd5\xed\xb7\x6c\x22\xa1\x42\xff\xdd\x9e\x71\x2e\x4c\x4a\x7c\xec\x4b\x95\xe3\xd8\xf3\xda\x12\xaf\x7d\xfc\x1c\x87\xcf\x61\x23\x8e\x8d\xc0\xf4\x59\x40\xdc\xd2\x90\x36\x3c\xa3\x0a\x3f\x77\x43\x36\xfa\xc0\x64\xa6\xb1\xe5\x1c\x6d\x4e\x42\xaf\x1c\xb7\xb6\x3d\x09\x5d\x98\x54\x09\xdf\x72\x8e\x36\x27\x96\x57\x98\xb7\x3b\xa9\x39\xf0\x71\x26\xb4\xad\x2d\x1f\x47\x28\x09\x53\x90\x8f\xb3\x61\xda\x4c\xaa\x71\x6f\x99\x36\x42\x6d\x8f\x13\xdc\x32\x6d\x84\x79\xd9\x7a\xbf\x36\x07\x97\xd7\x36\x78\x56\xd8\x08\xc6\x91\xcb\x17\x62\x1c\xd9\xd4\xdb\xab\xd0\xdc\xb6\xf5\xf6\x36\xec\x9a\x09\xfb\x6a\x43\xb1\xf9\x40\x65\x4b\xca\x96\x69\x23\x4c\xd8\x57\x3b\xf9\xb5\x21\xdc\x54\x28\x60\xdb\xaa\x7c\x1b\xf2\xcd\xbc\xec\x1c\xbc\xfa\x86\x0a\x53\xe1\x68\x6d\xa9\x30\xc2\xa4\x82\xc8\x96\xeb\x22\x54\x18\x40\x1b\xde\xcb\x03\x7c\x34\xbb\xd0\x8f\x06\xd4\xfe\x8c\x10\x5b\x62\x8b\x50\x3b\x5f\xdb\xe2\x7a\xc2\xa4\xfc\xf3\x96\xeb\xb2\x39\xde\xbc\xb2\x22\xba\xb3\xdf\x11\x98\x57\xf1\x59\x4d\xd1\x9b\xab\x0a\xa2\x5b\x11\x2f\x54\x7c\x3c\x2f\x04\xb1\xa5\xb2\xd6\xb9\x25\xb6\x08\xf3\xaa\x8a\x7c\xfc\xe2\x17\xbd\xd1\xaf\x9d\x35\xbe\x4a\x23\x34\x3e\x48\x1f\xb5\x0f\x1a\xe1\xe7\x00\x26\xc5\x76\xb7\xa4\x8f\x0d\x77\xa3\x76\x7c\xa1\xdc\x0d\x61\x42\xc8\xda\x16\x9e\xdb\xf0\x35\x2a\x79\xe7\x6d\x95\xb9\xcd\x19\xd6\x93\x49\xd5\xf6\x0c\xeb\x4d\x65\xb9\x4a\x62\x78\x67\x3f\x47\xf6\x73\x30\x4c\x59\x65\x6e\x43\xd4\xa8\xe3\xa2\x0b\xcf\xe7\xf1\x28\xe6\x33\xac\x6f\x89\x1a\x1b\xa2\x46\x25\xdf\xb9\x25\x6a\xec\x62\xaf\x3e\xc3\xfa\x96\x95\xb1\x39\xb0\xba\xb2\xda\xb8\x3d\xb0\x5a\x98\x9c\x13\xb0\x3d\xb0\x7a\x43\xd4\xa8\x64\x0c\xb7\x44\x8d\x4d\x2d\xba\xc9\x64\x6f\x5b\x8b\x6e\x43\xd4\xa8\x9c\xc9\xbc\x25\x6a\x6c\x88\x1a\x93\xc9\xde\x96\xa8\xb1\x39\x64\xba\x92\x73\xdb\x1e\x32\x2d\x4c\xce\x1c\xd8\x1e\x32\xbd\x61\x52\x54\x56\x1b\xb7\x4c\x0a\x61\x42\x4d\xdb\x32\x29\x36\xb4\x89\x3a\xda\x6f\x1f\x07\xb1\x65\x55\x08\x93\x7a\x2f\x5b\x56\xc5\x86\xf6\x50\x49\xf8\x6c\x69\x0f\xc2\xbc\x18\x51\x2d\x42\xb7\x61\x42\xd4\x61\xdf\xa9\x1f\xc0\x64\x8e\xba\x3d\x11\x5a\xa8\xc3\x5e\x61\xaa\x29\x4c\x6a\xc7\xec\x12\xf6\x1d\x53\x4d\x4e\x8a\xdd\xf2\x25\x84\x09\xa3\x6e\xcb\x97\xd8\x85\xb8\x6c\xd8\x88\xed\xa7\xd9\xfe\xa2\x37\xfa\x8b\x87\xee\x64\x60\xb4\x2e\x9d\x30\xa9\x96\xbc\x8b\x8a\x05\xc7\xa1\xb2\xbc\xbe\xe5\x38\x08\x93\x6a\xc9\x5b\x8e\xc3\x86\x65\x50\xd9\x32\xb0\x3d\x80\x59\x98\x94\xa6\xd9\x32\x0e\x36\x5c\x82\x3a\x9f\x29\xf0\x96\x4b\x20\x4c\xaa\x25\x6f\x2b\xbb\x6d\xd2\xf8\x95\xa3\x14\xb7\x79\x7a\x61\x52\x2d\x79\x9b\xa7\x17\x2a\x27\x33\xed\xea\x17\x02\x26\xd5\x92\xb7\xa9\xfb\x4d\x52\xbe\x52\xb3\x6d\x9b\x94\x17\x66\xc2\x09\x56\x3d\x31\x69\xed\xca\xf9\x4d\xdb\xb4\xb6\x30\x29\x99\xb3\xab\x56\x07\x54\x16\x23\xb7\x99\x6e\x61\xc2\x53\xdc\xd5\xfe\xaa\x44\x46\xd3\xd7\x36\x32\xe2\xbc\xe2\x99\xb0\x60\xcf\x2b\x16\x1a\x6b\x64\xdb\x4c\xf7\x6e\x8f\x7b\x6b\x2c\x88\xed\xa6\x7b\x03\x66\x62\x44\xf5\x08\xe3\xcd\x19\xc3\x8d\x05\xb1\xed\x19\xc3\x9b\x6a\x6e\x93\xf3\x2d\xb6\xd5\xdc\x84\xc6\x62\xd1\x6e\xc6\x4f\xc0\x4c\x9f\xc7\xf3\xda\xa4\xc8\x1b\xb4\xf7\x6d\x8a\x7c\x93\x16\x9f\xd4\x00\xda\xcd\x30\x99\xb4\x76\x63\x51\x67\x9b\xd6\x16\x66\xb2\x11\xc6\x3c\x1c\xfc\xdb\x58\xca\xd8\xcd\x2f\xd4\xfc\x1c\x0c\x8c\xe6\xb0\x37\x09\xeb\xc6\xd4\x7c\x9b\xb0\x16\x26\xc4\xcb\x6d\xc2\x7a\x93\x2b\x6e\x4c\xa7\xb7\xb9\xe2\x4d\xd2\x74\xa6\xeb\xe9\x09\x93\xa6\x9b\xc4\xdd\x4c\x78\x62\x13\x77\x9b\x22\x50\x8d\x5a\xf3\xdb\x22\x50\x9b\x23\x44\x27\x35\x5e\xb6\x47\x88\x6e\x72\x79\x0d\x02\xed\x36\x97\x27\x4c\x66\xfe\xdb\x5c\xde\xa6\x2e\x54\xd3\xc7\x5a\x17\x4a\x98\x54\x82\xd9\x9e\x04\xba\x39\x09\xb4\x5d\xcc\x21\x3c\x09\x74\x53\x3d\x6a\x66\x3a\xda\xea\x51\x9b\xf2\x4e\x4d\xa7\x60\xc6\x6f\x53\xac\xa9\x69\x1d\xc3\x70\x03\x98\x70\xed\xb6\x85\x9b\xf6\x78\xbe\x70\xa3\x66\xf7\x1e\x3a\x54\x60\xb2\xfc\xb0\x87\x5f\x9b\x2a\x4d\xcd\x4f\x6b\x95\x26\x61\x52\xf0\x75\x5b\xa5\x49\x68\x70\x57\xb7\x55\x9a\x36\x27\x81\x4e\x0a\xbe\x6e\x4f\x02\xdd\x9c\xeb\xd9\x12\x3a\x31\xfc\xda\x9c\xeb\x39\x29\xf8\xba\xc7\xb2\xf5\x8f\x8f\x6d\x94\xde\xde\x26\x27\x85\x09\x07\x70\x7b\xa0\xa7\xd0\x28\xdc\xb4\xcd\x57\x6e\x32\x91\x33\xa3\x98\x66\x22\x37\x69\xc7\xc6\x8a\xd7\x36\xed\x28\x4c\x0a\xe0\x6c\x6b\x39\x09\x8d\x82\xd3\xdb\x4c\xa4\x30\x29\xd2\xba\x87\xc1\x12\x99\xc8\x06\x39\x75\x9b\x89\x14\x26\x7c\xc2\x6d\xaa\x71\x93\x31\x6c\x1c\xa9\xb2\xcd\x18\x0a\x93\x22\xad\xdb\x62\x4d\x42\x4b\xcd\xab\x6c\x44\xa0\x00\x19\x91\x8a\x39\x1e\x35\x6b\x89\x98\x7a\x18\x53\x73\x38\xe8\xcc\x76\x8e\x3e\x1a\x68\x1c\x83\xb2\x3d\x1c\x54\x98\x14\xe6\xd9\xc3\x58\x0c\x68\x54\x97\xde\x43\xc5\x1c\x2a\x26\xc3\xe7\x50\x31\x39\x2f\xb4\x51\x5d\x7a\x7b\x5e\xa8\x30\x59\x20\xda\x9e\x17\x2a\x34\x28\xac\xdb\xba\x52\xc2\xcc\x7e\x0e\x63\x0b\xa0\xa5\xae\xc8\x77\x54\xc9\x33\x5d\xa8\x92\x93\x09\x6d\x89\x40\xc2\x22\x52\xc2\xa4\x6e\xeb\xb6\x88\xd4\xa6\x62\x54\xa3\x16\xd4\xb6\x62\xd4\xa6\x4a\xd4\xa4\x6e\xeb\x1e\x3a\x3e\xa0\x25\x46\x3e\xd3\xa9\xc2\xcc\xe5\xfa\xed\xa1\xd8\x82\x52\x9b\x04\x6c\x83\x53\xbb\x4d\xc0\x0a\x93\xd5\xaf\x6d\x02\x76\x93\x47\x6d\x2c\xfa\x6d\xf3\xa8\x9b\x92\x4e\x93\x0a\x46\xdb\x53\x41\x85\xa6\xd5\x4d\x2d\x05\x98\x14\x7f\xdd\x56\x7c\xda\x14\x6e\x6a\xda\x93\x85\x9b\x84\x09\x6d\x74\x5b\xb8\x49\x68\x6a\x91\x67\x87\x0a\x93\xe2\xaf\xdb\xcc\xed\x26\x5b\xdb\xd4\x0f\xcb\x3b\x09\x13\x72\xe9\xb6\xbc\xd3\xa6\xfe\x52\xf3\xcb\x5b\x7f\x49\x98\x94\x88\xdd\x1c\x1a\xfa\xc0\x7c\xae\xf2\xf1\xf1\xb9\x11\xa3\x46\xbb\x3d\x28\x74\x93\xa6\x6d\x2c\xfa\x6d\xd3\xb4\xc2\xfc\xbb\xc8\xd6\x6f\x7e\xb1\x29\xf2\x17\x55\x3f\xfc\xb5\x35\x93\x84\x46\xc1\xd6\x6d\xcd\x24\x61\xe6\xaa\xc8\x46\xa0\xa4\x19\x85\x9f\xfb\xd3\x08\x94\xb4\xd2\xab\x2a\x29\xd0\x28\xd8\xba\xcd\xef\x6e\x32\xb7\x93\x65\xc6\x6d\xe6\x76\x93\xad\x9d\x94\x51\xda\x6f\x63\x4f\xa0\x41\x08\xdd\x16\x35\xda\x6f\xbd\x27\x71\xac\x15\x8c\x36\xb5\x89\x1a\xb5\x89\xb6\xb5\x89\x84\x49\x39\xd1\x6d\x6d\xa2\x4d\x89\xa1\x46\xb9\xc7\x6d\x89\x21\x61\xb2\xf2\xb8\xdf\xce\xfc\xa9\x27\xd4\x0a\x6e\xd7\x7a\x42\xc2\xcc\x44\x6c\xd6\x13\xda\xd4\x13\x6a\x70\x31\xb7\xf5\x84\x84\xc9\xfa\xe4\x7e\xeb\xde\xa8\x27\xd4\x58\xea\xda\xd6\x13\x12\x66\x26\xae\x7b\xeb\xa5\x28\x1e\xd4\x58\xea\xda\x16\x0f\xda\x6f\x6d\x93\x98\xf8\xad\x6d\x92\x2b\x6e\x1c\xb2\xb1\xcd\x15\x6f\x52\xbe\x8d\x4a\x54\xdb\x94\xaf\x30\xa1\xb3\x6e\x0b\xe0\x6c\x32\xbf\xad\x0c\x45\x6f\x45\x6f\xae\x9a\x88\x78\x21\x4e\x7a\x6c\x94\xb6\xd9\xb7\xfd\x05\x4c\x96\x2c\xb7\xd5\x6e\x36\x15\x6a\x1a\x95\x95\xb6\x15\x6a\x84\x49\x95\xa6\x7d\x1b\xd7\x51\x5c\xa6\x51\xc1\x68\xdf\xeb\x23\xba\xb9\x2a\x21\x5a\x8a\x9e\x2e\xa4\xf6\xcc\xb6\xf6\x8c\x30\x29\x56\xb9\x6f\xbb\x90\x7a\x31\x8d\x42\x33\xdb\x7a\x31\xc2\xf4\x0b\xdd\x5a\xc7\x4d\x17\xba\x4a\x75\xdb\x85\xc0\xa4\xa4\xe5\x36\x7d\xbc\xa9\x2a\xd3\x60\xf7\x6d\xab\xca\x08\x93\xa5\xd4\x6d\x62\x78\x53\xbd\xa5\x51\x25\x65\x5b\xbd\x45\x98\x94\xb4\xdc\x66\x5b\x37\xd9\xd6\xe6\x9a\x91\xd9\xd6\x4d\xa9\x96\x06\xcd\x6d\x5b\xaa\x45\x98\xac\xc1\xee\x65\x5c\x47\xa9\x96\x46\xd1\x87\x6d\xa9\x96\x4d\x11\x96\x09\x49\x78\x5b\x84\x65\x2f\x34\xda\xa5\x9f\xa5\x46\x03\x93\x35\xd8\xbd\xfc\x42\x94\x6a\x69\x94\x24\xd8\x96\x6a\xd9\x9c\x9b\x38\xa1\x12\x6f\xcf\x4d\xdc\xa4\x79\x1b\x25\x09\xb6\x75\x59\xb6\xf9\x5d\xd5\xd7\xfc\xae\xd0\xa0\xa6\x6d\x8b\xb0\x08\xb3\xe0\xbf\x4c\xf9\x6e\x8e\x3c\x6c\x0d\xfd\x5a\x7a\x39\x60\xaa\xe4\xa6\x7c\x37\x29\xdf\xc6\x39\x12\xdb\x94\xaf\x30\xa9\x85\xb9\x2d\xe8\xb2\x49\xcd\x36\xa8\x69\xdb\xca\x26\xc2\xa4\xf0\xe5\x36\x4d\xbb\x49\xad\x36\x6a\x96\x6c\x53\xab\xc2\x84\xbc\xbc\xd7\xf9\x5c\xf5\x8c\xbb\xd4\x2c\xd9\x56\x36\x11\x26\x65\xba\xb6\x09\xd8\x4d\xd2\xb5\x35\x46\xfa\xe5\x77\x04\x26\xe5\x31\xb7\x09\xd8\x4d\x6a\xb5\xb1\x37\x76\x9b\x5a\x15\xa6\x26\x6a\xee\x74\x93\x28\x6d\xec\x1b\xdd\x26\x4a\x85\x49\x79\xcc\x1d\x7e\x5a\x0a\x9c\x34\x88\x62\xdb\xc3\xf9\x76\x30\x5d\xa2\x3c\xe6\x0e\x3f\x2d\xc9\xd1\xc6\x9e\xca\x6d\xb1\x13\x61\xba\xb2\x6d\xa2\x54\x68\x54\x36\xd9\x26\x4a\x85\x59\x18\xe6\x2c\x89\x22\x34\x76\x4b\x6e\x4b\xa2\x08\x93\x52\x9b\x3b\xb4\x5a\xa0\xb5\xf9\xdb\xb4\xad\x6d\x02\x56\x98\xb0\xbc\xb7\xe7\x00\x6e\x8a\xa8\x34\xc8\x6c\xdb\x22\x2a\xc2\xa4\x9e\xd9\xb6\x88\xca\xe6\xec\xbf\xc6\xf1\xf5\x3b\xd4\xa2\x20\x6f\xe3\x1a\x7d\x38\xc8\x72\xd0\x5f\x63\xd3\xe2\x0e\xf5\x23\xf4\x06\x8c\x82\x1e\xfa\xb7\x49\xf9\x36\xf6\xe5\x6d\x53\xbe\xc2\xa4\x3c\xe6\x36\xe5\xbb\xa9\x98\xd2\xd8\xff\xb6\xad\x98\x22\x4c\x6a\xa3\x6d\xcf\x01\xdc\x14\x28\x69\xec\x46\xdb\x16\x28\x11\x26\x47\x27\xed\x70\xc8\x8b\x67\xb4\x6a\x1d\xf5\x0b\x63\x29\x60\x52\x6a\x73\x87\xb1\x14\x79\xd8\xd6\x7d\x21\xb5\x28\x0e\xfd\xc5\x28\x48\x7e\xf6\x81\xa7\xbf\xd8\x34\xb4\xcd\xb6\x6e\x52\xa0\x8d\x5d\x3d\x7b\x3b\x26\x01\x13\x5e\xfa\xb6\x10\xc8\xa6\xf8\x47\x63\x6f\xc6\xde\x76\xf4\xb6\xa3\x99\xef\x5a\x08\x64\x6f\x42\x17\x8e\x63\xdf\xdb\x5e\x25\x09\x38\xa9\xbe\xb9\x4d\x02\xee\x43\x92\x99\x82\x65\xfb\x68\x4f\x64\x51\x1a\x5b\xe4\x8f\x59\x94\xc3\x81\x54\x6d\x3e\xbd\x7a\x3c\x90\x4a\x98\x54\x23\x39\x1e\x48\x75\xd8\xd6\xde\xe6\xd3\x13\xc7\x6d\xed\x87\x43\x95\x26\xab\xd1\xe7\x85\x27\x3e\x2f\x4e\x2f\x87\x72\x72\x38\x6c\xe9\x81\xe7\xd3\xb2\xba\x7a\x3c\x60\x49\xe8\x1c\x61\x7c\x48\x73\x7c\x60\xc2\xfe\x3c\x66\x3b\x0e\x07\x2c\x75\x66\xc5\xc7\x03\x96\x84\x49\xc5\x82\xe3\x01\x4b\x87\xfd\xe1\x1d\x72\xc4\x71\x7f\xb8\x30\xa9\x58\x70\xdc\x1f\x7e\xd8\x13\xde\xa1\x3a\x1c\x0f\x58\x12\x26\x4c\xd2\x63\xe6\xe4\xb0\x65\xbc\x53\xf6\xfc\xb8\x65\x5c\x98\x54\x2c\x38\x66\x4e\x84\xfe\xb2\x0b\x8f\xed\x22\x72\xa6\x62\xc1\x71\x63\xf9\x21\x99\xd2\xa1\x14\x1c\x93\x29\xc2\x6c\x76\xf4\xb1\x5d\x87\x76\xd1\x39\xe6\x57\x0e\x9b\xc1\x3b\x9c\xa3\xe3\x66\x70\x61\x52\xc4\xe0\x78\x32\xd3\x21\x0b\xd3\xc9\x74\x1f\xb3\x30\xc2\x6c\x1f\xd1\x52\x14\x5c\xd5\x10\x6d\x45\x9b\xab\x0a\x22\x7a\x82\x34\x4b\x27\xef\x7c\xdc\x32\x2e\x4c\x4a\x1d\x1c\xd2\x2f\x0f\xf0\x42\x8d\xc7\xdf\x3e\xfe\xf6\x85\x78\x3c\xea\x7b\xc8\x9c\x74\xd2\xa1\xc7\xcc\x89\x30\xf1\xd7\x87\x2c\xca\x03\x74\x61\x57\xe4\x0b\x2d\xbb\x70\x20\x7a\x2b\x5a\xcf\x55\x83\xc7\x2f\x1f\x8f\x9f\x68\x36\x75\xf9\x42\x8b\x2e\x9c\x2f\x44\xbe\x10\x93\x48\x7c\xff\x31\xbf\x72\x38\xa0\xa9\x93\xc8\x3a\x97\xba\x0a\x4c\xaa\x5a\x1d\x53\x2e\x42\xe7\xc4\xdf\x63\xca\x45\x98\xcd\xd7\x0e\x1b\xc1\x51\xf8\xa4\x6f\x8e\x87\x35\x09\x93\xea\x09\x87\x83\x9b\x1e\xe0\x59\x17\x37\xaa\x98\x97\x8a\xd9\xbc\xf1\xf3\xac\xa7\xf5\xec\xe9\x3e\x97\x8a\x69\xca\x85\xea\x09\xc7\x94\xcb\x21\xbf\xd2\x39\x1c\xf4\x98\x5f\x11\x26\xd5\x13\x8e\xf9\x15\xa1\x53\x84\xfc\x98\x5f\x11\x26\x14\xe7\xe3\x9e\xee\x73\xa1\x98\xa4\x23\xce\xa5\x62\x92\x5f\x99\x54\x4f\x38\xe6\x57\x4e\x62\xea\xd5\x7a\x42\x44\x47\xb3\xd1\xba\xc3\x72\x3a\xe9\xf6\x2a\xd5\xe4\x19\xcc\x8e\x9b\xae\x0f\x67\x2e\x75\x58\x4e\xc7\x33\x97\x84\xd9\x86\x22\x1a\xc1\xae\xe8\x4e\x65\xef\xe3\xae\x68\x61\x52\x20\xe0\xb8\x2b\xfa\xb0\xa1\xb9\xb3\xbc\x7e\x92\x6a\x92\x54\x93\x41\x53\xd7\xe7\x59\xbc\xd0\x78\x21\x5a\x8a\x68\xfd\x54\x64\xeb\x51\x13\x16\x75\x8e\xb9\x1a\x61\x92\x5f\x39\xe6\x6a\x0e\xa7\x29\x75\x16\xa8\x8f\xa7\x29\x09\xb3\xa1\x39\x6c\x9a\xfe\xfe\x90\x85\xe9\x97\x8f\xf7\x6b\x03\x93\x62\x03\xc7\x2c\xcc\x49\xcf\x17\xee\x2c\xf4\x1d\x76\x35\x7f\x60\x3e\xa3\xe8\x6f\x0d\xc5\xc7\xbd\xcf\x87\x3d\xca\x9d\x95\xb4\xe3\x41\x46\xc2\xa4\x62\xc1\x31\x49\x73\xd8\x5e\xdc\x53\x52\x14\x8a\xec\x02\x6f\xf4\xd7\x71\x36\x9c\x9a\x76\xcc\xc8\x1c\xce\x10\xea\xf0\x97\x8e\x67\x08\x09\x93\x23\x9d\x4e\xd6\x82\xc9\x89\x74\x8e\x85\x3d\xee\xcc\x15\x26\xa5\x0e\x8e\x3b\x73\x85\xce\xd9\x57\xc7\x9d\xb9\xc2\x24\x1e\x38\xd9\x0f\xc8\x9e\xdb\x4e\xd5\xeb\xe3\x9e\x5b\x61\x52\x10\xe1\x78\x60\xd0\xe1\xc0\xa0\x9e\x50\x19\x0f\x0c\x12\x26\x05\x11\x8e\x07\x06\x1d\x52\x2e\x9d\x03\xa9\x8e\x47\x01\x1d\x36\xd8\x4e\xb2\x61\xc7\x0d\xb6\x27\x3f\x83\x46\xcf\x1f\xd1\xe7\xc6\x37\x57\x55\x44\xb7\xa2\x9b\xab\xf8\x45\xcd\x15\x98\x14\x44\x38\xa6\x72\x0e\xe9\x9b\xce\x9a\xe2\x71\x1b\xae\x30\xbb\x37\x6a\xae\x40\xe7\x10\xa9\x63\x76\x47\x98\x1d\x65\x20\xd3\xf3\xc0\xe2\x2a\x7a\xd5\x8f\x06\xcc\xee\xe3\xfd\x68\x40\x67\xd9\xec\x98\xca\x39\xa4\x6f\x3a\x6b\x64\xc7\x0d\xb6\xc2\x24\x71\x77\x4c\xe5\x1c\x92\x34\x9d\xdd\xb4\xc7\x24\x8d\x30\x29\xae\x70\x38\x4f\xe8\x01\x9e\x55\xb8\xea\xf6\x59\xb7\xcf\x52\xe4\xb3\x16\x2f\xc4\x58\x59\x74\xe1\xc0\xa4\xb8\xc2\x31\x6f\x73\xc8\xc2\x74\xf6\xb6\x1e\xcf\x10\x12\x26\x41\xdc\x71\x6f\xeb\x61\x8b\x6a\x67\x15\xe1\xb8\x45\xf5\x70\x86\xd0\xec\xcf\x2c\xef\x78\x86\xd0\x29\xa8\x09\xfb\x51\x4f\x51\x4d\x8a\x6a\x82\x29\x78\x60\xd0\x29\x7e\xda\xc1\x0b\xf9\x69\x8b\x9f\xf6\xa2\xa9\x7e\x5a\x36\x8c\x76\xb8\x3d\xc7\x0d\xa3\xc2\xa4\xb8\xc2\x71\xc3\xe8\x61\xc3\x68\x87\xdb\x73\xdc\x30\x2a\x4c\x82\xcb\xe3\x59\x3d\x87\x34\x49\x67\x72\x7b\x4c\x93\x1c\x0e\xd0\xe9\x1c\x5c\x70\xaa\x7d\x5f\x99\x9a\xf7\x8f\x88\xd7\x26\x27\xd2\x21\xcc\x1c\x73\x22\x87\xfd\x95\x93\x3c\xea\x71\x7f\xe5\xa9\x8f\x13\xec\x54\xff\x3d\x55\x27\x08\xcc\x9e\x2a\xa2\xaa\xe8\xb1\x34\xc2\xc6\x63\xe6\x44\x98\x54\x52\x38\x66\x4e\x0e\x69\x92\xce\x76\xc6\x63\x9a\xe4\x90\x1a\x99\x94\x09\x3c\x55\x8f\x07\xf4\xc2\x08\x51\xed\x7b\xce\xc4\x99\xa4\x69\x8f\x67\xe2\x9c\x8a\x3d\x52\xfd\xf7\x54\xed\xb1\x6a\x8f\x59\x91\x2f\xc4\xf0\x09\x87\xe6\x54\x87\x4f\x60\x52\x6f\xe1\xb8\x0f\xf2\xd4\x4d\x7f\xf1\xd1\xaa\xae\x92\x63\x72\x66\xc7\x0d\x79\x0e\xce\xa9\x7e\x34\x9c\xb3\x1b\x15\x85\x49\xa9\x84\x63\x46\xe7\x90\xbe\xe9\x54\xd6\x3d\xa6\x6f\x84\xc9\x26\x98\x63\xfa\xe6\x90\xbe\xe9\x15\x0f\x60\xfa\x46\x98\xd4\x27\x3c\x55\xe3\x23\x7d\xd3\x29\x67\x7c\x4c\xdf\x1c\xd2\x37\x9d\x1a\xc3\xc7\xf4\x8d\x30\x3b\xd1\x9f\xe9\x9b\xc3\x16\xc6\x4e\x98\x7d\x9a\x0a\x00\x4c\xce\x79\x3b\x8d\xe5\x1a\xa1\x53\xf1\xf7\x34\x75\x02\x98\x64\xa7\x4f\x33\xae\x23\x15\xd4\xa9\xe5\x7b\x4c\x05\x09\x93\x69\xc9\x69\xc6\x75\xe4\x7a\x3a\x2b\x25\xa7\x69\xc8\xc0\xec\x18\xb2\xbb\x25\x4f\xbb\x69\x3d\x5f\xa8\x39\x3a\x93\xf7\x99\x9d\x78\xd3\xbc\xcf\x61\xa3\x62\xa7\x9e\xec\x71\xa3\xa2\x30\xd9\x6a\x73\x9a\xfe\x1e\xe8\xf0\x79\x4e\xd3\xb6\x9b\xb6\x4d\xf4\x67\x76\x48\xe8\xf0\x79\x4e\x53\x0b\x4d\x18\x75\x74\xd5\x84\xd1\x21\x23\xd4\xeb\xe7\x46\x1b\x41\x04\x42\x25\x86\x63\x2a\xe8\x70\xae\xcb\x24\x45\x7e\x3c\xd7\xe5\xb0\x9b\xad\x53\x9e\xee\xb8\x9b\xed\xb0\x83\x6d\xb2\x63\xf8\xb0\x8d\xed\x03\x9d\x4d\x69\xc7\xdd\x6c\xc2\x24\xf9\x7d\xdc\xcd\x76\xd8\xa7\xd6\x5b\xfe\xef\x72\xc5\xa3\xfc\x7f\x46\x62\x77\xb1\x09\x73\x7c\x7e\x1c\x73\xe2\xf0\x96\x4e\x61\xb7\xe3\xe1\x2d\xc2\x64\xc3\xf0\xe9\x1a\x30\xd0\x29\xd9\x76\x3c\xcf\xe5\xb0\x23\x6e\xb2\x61\xf8\xb8\x23\xee\xb0\xfd\xad\x3b\x69\x71\xfb\xdb\x61\xcb\xdb\x1c\xbe\x88\x81\x0d\x27\xb5\x74\x67\x02\x9e\xd4\x72\x38\x9d\x65\xb2\x15\xf8\x74\x0d\x98\xd3\x55\xba\x11\xb7\xa7\xab\x08\x73\x60\x87\x6e\x7f\x3b\x24\xd6\x3a\x47\x4e\x1e\x13\x6b\x42\xea\xe8\x02\x49\xb6\xef\x4f\xc7\xc2\xa8\x73\x75\xfa\xf9\x88\x12\xcf\xa2\x37\xb5\x30\xd2\x64\x9d\x95\x88\xd3\x75\x9e\xc0\x84\x24\x70\xba\xce\x93\x94\x59\x37\x48\x32\x65\x76\x38\xeb\x64\xb2\xad\xf8\x78\xd6\x89\x70\x25\x5e\xdb\x2c\x9a\x70\x39\xd0\x9b\x45\x13\x2e\x0e\x7d\x3c\x83\xa5\xce\x43\x62\x6d\xb2\x61\xf8\x98\x58\x13\xae\xf2\x79\x56\x28\x8a\x47\x44\x88\x37\x8c\x6c\x81\xc9\x1e\xe2\x33\x1c\x2a\x81\x4b\x0b\xf3\x74\x95\xc3\x89\x2a\x93\x3d\xc4\x67\xa8\x7d\xc0\x45\x1d\xc7\x33\xb4\x30\xe0\x72\x56\x31\x54\x48\x60\xb2\x61\xf8\x78\x06\x8b\x70\xe9\x16\xcd\xee\x1d\x52\x79\x73\xa0\x00\xa6\xf2\x84\x8b\xbd\xba\x67\x18\x4b\x9b\xdd\x63\xc3\xf0\x31\xbb\x27\x5c\x6c\xea\x39\xc3\x61\x84\x24\xdf\x64\x2b\xf0\x19\xc6\x70\x40\x82\x15\x78\x4c\xf8\x09\x93\x4d\xbe\x67\x38\x84\x03\xe9\xf2\xb5\xd5\x68\x20\x71\xea\xf9\x71\x1b\xe3\x31\x2d\xc8\xbe\xdf\x63\x5a\x50\x48\xe4\x52\x8e\x69\xc1\xc3\x9e\xc5\xc9\x8e\xde\xe3\x9e\x45\x21\xb1\x04\x7b\xcc\x14\x0a\x73\x10\x34\xb0\x7f\xf1\x01\x4e\x01\xff\xdc\xe8\x47\x23\xa0\x67\x47\xef\x31\x9f\x28\x24\x8a\x97\x1f\xf3\x89\xc2\x1c\xf6\xbd\xc3\x1b\x90\xf4\x48\xe6\x13\x0f\x5b\x0c\x27\xfb\x7e\xcf\x70\x94\x02\x32\xbb\x17\x8e\xc9\x43\x21\x53\x18\xee\x98\x3c\x14\x32\x7c\xf6\x63\xf2\x50\xc8\x2f\xbf\x90\xcb\x16\x40\x7e\xd9\x7a\xcd\xca\xb4\x20\x3b\xd7\x8e\x69\x41\x21\x93\xfb\x3e\xa6\x05\x85\x9c\x6d\xaa\x83\xe0\xb0\xcc\x7f\xf3\x2a\xbb\xd0\x7a\xe6\x9f\x1b\xed\x42\x42\x9e\xd1\xd1\x09\x43\x1e\x20\xd7\x8f\xc8\x77\x64\xee\x01\x63\xe5\x98\x16\x14\xb2\x33\x09\xd3\x82\xc2\x84\xb1\x72\xdc\x65\x29\xe4\xae\x62\xea\x01\xd8\x52\x39\x07\x93\x29\xb7\x54\x0a\xc5\x79\x9f\xf9\x44\xa1\x70\x4a\xea\x31\x9f\x78\xc8\x27\xce\xa1\x21\x3b\x12\x03\x25\x7f\x1e\x6f\xdf\x5b\x7a\xc6\xaf\x6d\x18\x0c\xcc\x41\x38\x60\x8a\x51\x28\x8e\xd7\xe6\x10\x85\xc9\xf6\xdd\x33\x1d\xaf\x81\x42\x19\xf7\x33\x1d\xaf\x39\xa7\x66\xb2\x7d\xf7\x78\x4e\x8d\x50\x28\x8d\x7d\x3c\xa7\x46\x98\xec\xd5\x3d\x53\x37\x04\x14\xca\xdc\x1e\x8f\xae\x11\x0a\xd5\x44\x6d\xfb\x33\x30\x3f\x51\xf1\x7f\x3b\xaa\x3c\xff\xff\x97\xf7\xcf\xdf\xfd\xfe\x9f\xdf\x3f\xff\xe7\xf7\x5f\xf6\xd7\xfa\xdb\x2f\xbf\xec\x1f\x7f\x8d\x1f\xd6\xaf\x5f\xbf\x7b\xa4\x5f\xb1\xcf\x0f\x3f\xee\x5f\xf6\x5f\x7f\xfa\xdb\x2f\x6b\x7f\xfd\xfc\xd3\xcf\xcf\x5d\xfc\xf7\x7f\x07\x00\x00\xff\xff\x22\x98\x3d\x9c\x0c\xae\x00\x00"); +func _aaae ()([]byte ,error ){return _gb (_adbf ,"CNS2-V")};var _bb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x5d\xab\x65\x37\x72\xfe\xef\xcf\xa7\xd8\x97\xf3\xbf\x98\xbf\x97\x5e\x4b\x82\xc3\x01\x33\x63\x13\x07\x26\x09\x71\x26\x09\x84\x5c\xac\x25\xd5\x32\x0d\xf1\xe9\xa6\xdd\xbe\xf0\xb7\x0f\xf5\x7b\xf6\x38\x99\x21\xe0\x0b\xf3\xb8\x9f\x2e\x69\x95\x4a\xa5\x7a\x91\x76\x7f\xf5\x87\xef\xfe\xf8\xdd\xfb\x87\x2f\x8f\xaf\xfe\xe9\xf3\xc7\xf5\xbd\x7f\x79\xdc\x1f\xde\xf7\x67\xff\xe9\xe3\xcf\x9f\x97\x3f\x2e\xff\xe1\xc3\xfb\xcb\x4b\xca\x8f\xfd\x61\x7d\xf9\xcb\x1f\x81\xf5\xe3\xf9\xe9\xe5\x25\xc6\x7f\xff\xcb\x4f\x5f\xfc\xc7\xef\xde\xef\x8f\x8f\x22\xb9\xfd\xf3\xa7\xa7\xec\xe3\xf1\xd5\x3f\xfb\x0f\x1f\x7e\xfa\xf2\xf9\x97\xc7\xef\xbe\xde\x1f\x2f\xff\x7f\x8f\xed\x77\xf0\xff\xf8\x79\xfb\xe7\x0f\xef\x3f\x3c\x7e\xf7\xf7\xe7\xa7\xf3\x3d\xfd\xfa\x17\xdf\xff\xfc\xe9\xd3\x7f\xf9\x8f\xfe\xfe\xe5\x71\xc0\xf9\xfb\x06\x5f\xbe\xfa\xc3\x9f\xce\x4f\xff\x70\xfe\xe8\x8f\xaf\x6c\xfc\xfe\x9b\x3f\xff\xe1\xf7\x7f\xc7\x5f\xc0\xff\xab\x7f\xfe\xe9\xc3\xc7\xf7\x47\x3a\xfe\xff\x71\xf4\xff\xe1\xff\xe5\x97\x4f\xfe\x48\xcf\x09\xfe\xfd\xcf\xdf\xfd\xf1\xf1\x1f\xe9\x91\x8e\x47\x6e\xa5\xda\x7f\x3e\xf9\x7f\xfb\xd3\xc7\xed\xcf\xcf\xbd\x14\x29\xbf\x3e\x6e\xff\xe9\xd3\xb9\xfc\xf3\xf9\xfe\x83\xbf\x3c\x1e\xaf\xc7\xf1\xf6\x78\x3c\x5e\xc7\xf1\x16\x7f\x1a\xdf\x7c\x7d\xbc\x05\xfc\xf1\x5b\xfe\xfc\x75\xfa\x3a\xbd\x3d\x5e\xbf\xfd\xe6\xdb\x6f\xde\x42\xe7\xbf\x19\xff\x92\x34\xed\xfb\xc7\x2f\xdb\x6f\x71\xcc\xf8\x9a\xee\xb7\x47\x2e\x29\xc6\xfc\xef\xbf\x7c\x49\xc7\xf1\xd4\xe4\xc3\x7e\xca\xe7\x90\x37\x97\xfc\xeb\xf0\x13\x0d\x7c\xdf\x6f\x8f\x92\xfb\xcb\xeb\x99\xce\xd0\xe1\x4c\xb7\xbf\x3d\x7a\x29\x2f\xaf\x67\x16\x93\x4f\x7f\x7b\x58\xb6\x97\xd7\xb3\x5c\x31\xea\x2c\xd7\x7c\x7b\xd8\x38\x82\x59\xc8\x94\x7d\xbe\x3d\x6c\xc2\xb8\x98\xfb\x7c\x7b\x8c\x14\x33\x57\xcd\x53\xef\xf2\xf6\x18\x35\xbf\xbc\x9e\x4d\x4c\xbb\xfb\xdb\x63\xe6\xf6\xf2\x7a\x76\x31\xfd\x1a\x6f\x8f\x74\xa4\x14\x94\xa6\xee\x1b\xaa\x84\x94\x49\xca\xe2\x6f\xd2\xd1\x66\x50\x5b\xd4\x0d\x35\xf3\xcb\xeb\x75\x20\x25\x48\x29\xa6\xbf\x8e\x33\x8b\xca\x6f\x0f\x63\x75\xd7\x71\x16\x51\x03\x29\x83\x9a\xa2\xe6\xdb\x63\xe4\xde\xa1\x4e\xa8\x8b\xb9\x4a\x0d\xea\xd2\x5c\x01\x36\x7b\x82\xd2\x5c\x01\x56\xca\x01\x55\x45\x9d\x31\xb0\x6a\xe0\x25\xea\x42\x09\x51\x0b\xca\x77\x48\x35\xb4\x77\x17\xe5\x48\xa1\xbd\xdf\x50\x77\x7e\x7b\xa4\x7c\xa0\xfd\xad\x2f\x06\x58\x2f\xa8\x7a\xeb\x8b\xf7\x85\xd4\x80\xd2\xf4\x01\xd6\x0b\x6b\xbc\xb7\x28\x0f\xa9\x14\x94\x76\xfe\x4a\xb1\xec\x94\xd3\x84\x3a\x45\x9d\x0c\x1c\x50\x68\x9f\x62\x5d\x29\x67\xa4\xae\x26\xaa\x21\x25\xaa\x8b\x0a\xab\xe6\x7a\x40\x4d\x51\xe1\x34\xfd\x49\x69\xfa\x58\x7d\xca\x18\x27\x5d\x5b\xd4\x46\x2a\x43\x61\x89\xc4\x6e\xe7\x8a\x12\x2b\x8b\x62\x1f\x6b\x81\xc2\x12\xc9\xc3\xd0\xb9\x41\xb9\x54\x75\x0c\xad\xe9\x1d\x4b\x24\x2d\x7b\x06\x25\xf7\xbe\xf2\x69\x6f\x8f\x54\x52\x81\x1a\xa2\x06\x03\x1b\xd4\x14\x15\xda\x97\x3e\xa1\x4e\x51\x18\xa7\x76\x28\xbe\x98\xe3\x38\xa5\x92\x99\xcb\x0f\xa8\x00\xeb\xd5\xa0\xf4\xc5\x3b\x0c\x5d\x0c\xea\xd6\x5c\xb7\xe6\x1a\x50\x9a\x2b\x36\x2d\x55\x76\x3b\x6b\xd3\x00\xeb\x15\x25\x6e\x17\xe5\x48\x85\x12\x45\x0b\x02\x52\x3d\x0c\x2a\x8b\xc2\x5e\xed\x80\xc2\x5e\x1c\xdc\x54\x8f\x98\xab\xc8\xaa\x40\xaf\x93\x81\xeb\x29\x15\xfb\x58\x6b\x82\x9a\xa2\xe6\xdb\xa3\x1d\xac\xb1\x2c\xb4\x2f\x5e\x91\x0a\xed\x8b\x37\x51\xf8\x44\x63\xa0\x77\x51\xb1\x43\xd5\x50\x55\x3b\x54\xb4\x43\xf8\x7d\xd1\x0e\x15\x9c\xbc\x0e\x28\x39\x79\x91\x93\xb3\xb5\x45\x4e\x5e\xee\x16\x52\x93\x05\xdd\x9a\x3e\xa0\x4d\x9c\xbc\xdc\x26\x6a\x22\xa5\x81\x52\x55\x86\x6e\x15\x4a\x4a\xc8\x84\x2c\x5b\xa1\xea\xaa\x18\xa7\x1d\xa1\x7d\x95\x71\xaa\x5c\xae\x35\xa8\x22\xaa\xbc\x3d\x9a\x94\xa8\xab\x8a\x8a\x4d\x6b\x9c\xc7\xba\xb6\x28\x36\xad\x89\x62\xd3\xea\x66\x7a\x3c\xa7\x6e\x4d\x1f\xd0\xfb\x18\x50\x9a\x1e\xab\x36\x4c\x58\x65\xd5\xfa\xb4\x2a\xaa\xca\xaa\x15\xed\x9b\x85\x12\x0a\xab\x57\x0b\xc7\x4c\x6d\x36\xa8\x4b\x94\x0c\x3d\xa0\x30\x74\xbb\xc2\x57\x3b\x9e\xd3\x16\xbe\x0a\x58\x8f\xb8\x7a\xb5\xa5\xb9\x98\xbe\x13\x1e\x15\xa3\x05\xa9\x8f\x09\x95\x45\x61\x9c\x7e\x40\x15\x51\x61\xfb\x3e\x13\xd4\x29\x0a\xdb\x77\x51\xe8\xd5\x57\x43\x8a\xb9\x56\x17\xd5\xdf\x1e\x56\xad\x42\x99\xa8\x50\xc2\xa4\xc4\xba\x45\xdd\xcc\x15\x6e\xd2\x37\xda\xf7\x70\xa0\x64\xd8\xbe\xfb\x16\x85\xed\x7b\x81\xc2\xf6\x3d\x9c\x29\x19\xc1\xbd\xcb\x99\x00\xeb\x9d\x2f\xde\x4d\x54\x98\xd0\x8c\x81\x72\x13\xc0\x7a\x6f\x50\x4b\x14\x5f\x1c\x07\x49\xfb\x2f\xa9\xf6\xff\xca\xbe\x57\xd7\x09\xee\x3a\xc1\xcf\xaf\x3f\x15\x62\x71\x38\xbc\xf2\xdb\x65\x27\x3a\x8e\x02\x55\x45\x49\x47\x83\x42\x47\x8b\x50\x9b\x6c\x40\x5d\x26\xca\x90\x1a\x50\xc4\x32\x0b\xc7\x4c\x83\x6d\xb6\xa5\x81\x0b\x2f\x22\x96\x99\x8c\x6e\xe1\xa4\x69\xe4\x03\xca\x45\x91\x80\x4c\x14\x46\x27\xd7\xa6\x41\xec\x37\xf9\x2d\x60\xdd\x12\x54\x11\xc5\x17\x49\xb2\xb6\xf5\xc5\xcd\x17\x8d\x35\x6e\x7d\x31\x2a\x86\x34\xd8\x2d\xdb\x97\xa8\xb0\x70\x1a\x9a\x0b\x0b\x9b\x87\x25\x28\x1a\x2e\x73\x59\xc2\xb1\x04\x5b\x63\x3a\x16\x76\x1f\x21\xc5\x49\xa1\x10\x78\x82\x75\xbc\xc8\x6e\xa9\x7a\x47\x2c\x1b\x5d\xd4\x14\x45\x4e\xb2\x06\x75\x8a\xc2\x12\x52\x55\x3b\x04\x58\x27\x70\x0d\xed\xd0\xb8\xd0\x8b\x10\x3e\x94\xe9\x01\xeb\x4f\x0a\xbd\xc6\x42\x2f\x22\xcb\xd0\x79\x02\xac\xdb\x80\x42\xaf\x81\x03\xcc\x14\x86\x9e\x9a\x7e\x72\x82\x27\x56\x9d\x3a\x29\x53\x27\xd8\x26\x14\xc6\x99\x38\xc0\xc4\x73\xa6\x1c\x60\xca\x01\x06\x73\xc9\x01\x26\xb1\x6c\x92\xf2\xa6\xbe\x38\x15\xcb\x30\xf4\x54\x2c\x9b\x61\xfb\x7c\x1c\x61\x89\x29\xdb\x03\x6d\x10\x76\xe7\xc6\x7d\x67\x1c\xb1\x7c\x14\x06\xfa\x93\xc2\xa3\xa5\x84\x8e\xd8\x8c\x23\x96\x0f\xd2\xc1\xd4\x11\x9b\x3a\x62\x78\xf4\xd4\x11\x9b\xb1\x1d\xf9\x20\xa0\x4e\x6d\xc7\xd4\x76\x0c\x54\xd5\x76\xcc\x30\x4e\x3e\x88\x2c\xa7\x8c\x73\x86\xcb\xe5\x83\x83\x78\xca\xe5\x00\xeb\x43\x14\x5f\x3c\x23\x3c\xe6\x14\x05\xe8\x75\xba\x89\x92\x71\x44\x61\x9c\x13\x55\x13\x5e\x78\x4a\xd5\xf3\xa9\xaa\x41\x35\x51\xa1\x44\x22\xef\x5e\x52\xe2\x3a\x99\xbe\x89\x32\x51\x9a\x7e\x40\x0d\x51\x33\xa4\x38\xee\x97\x82\xe0\xa5\x20\x38\x34\xf0\x12\x75\x21\x25\x6a\x89\xa2\x62\x23\xb5\x5c\x27\x86\xbe\x62\x3b\x73\xc2\x27\x2e\x95\x54\x97\x4a\xaa\x29\x4a\xd3\x4b\x55\x4c\xb8\xa4\xea\x8a\x20\x9a\x55\x19\xad\x35\x44\x51\xe0\x4c\x51\x53\xd4\x8c\xe4\x4f\xa6\x5f\x4a\xeb\x2b\x4e\x6a\x56\xb1\xb4\xb6\x89\x62\x8d\x4f\x4a\x73\x85\x9b\xe4\x42\xbd\xb9\xe4\x26\x6b\x73\x60\x48\x40\x6b\x13\x3a\xd6\xad\xd6\x23\xa8\x2d\xbd\x76\x58\x22\x17\x2a\xa3\x2d\x4b\x6c\x39\xf9\x14\x85\x25\x76\x1c\xa5\x5c\xc8\x5c\x5b\xc5\x25\x60\x7d\x8a\x42\xaf\x1d\x85\x44\x56\x79\xb6\x55\x48\x6c\x39\xe6\x14\x85\x63\xee\x08\x0a\xb9\xe6\xd0\x7e\x2b\x28\x6c\x6a\x0b\x23\xd3\x6f\x39\xc0\x46\xd5\x4a\x15\xef\x52\xd5\x23\xfa\x66\x19\xc7\x15\x7d\x01\x33\xca\x33\x3f\xd1\xcb\xa3\x23\xc8\x95\xb4\xee\xea\x08\x00\xb3\xa3\x42\x55\x51\x4c\x8f\x47\xfb\x75\x8b\xba\x91\x0a\xe3\xb8\x52\xb1\x6f\xbe\x48\x18\x72\x05\x51\xc0\x8c\x48\xee\x0a\xa2\xbe\x99\x8b\xed\x70\x19\x1a\x30\xa3\xfa\x73\x95\xa0\x1e\x41\x34\x37\x29\xa1\x20\x0a\x98\xb1\x69\xae\x20\xea\x2c\xbb\x51\x10\xde\x5a\xf6\x8d\xfb\x36\x7a\x90\x5b\xee\x0b\x98\x3d\xa5\xd8\xb4\x3b\xfc\x20\x37\xaa\xe5\x7b\x4f\x51\xe1\x98\x46\x48\xbb\xb7\x06\x86\x5e\xb9\xd1\xa0\xdd\xd2\x0b\x30\x8b\x66\xef\xba\x55\x1a\xdf\xce\x5c\x6c\xda\xed\x9a\xcb\x35\x97\x06\x6a\x2e\x54\xed\xa1\xfd\x52\xb3\x27\xc8\x3d\xcf\xdf\x4c\xc5\x4b\xbd\xa0\xc0\x2c\xea\xfe\xa5\x5e\x70\x1d\x8b\x49\x22\xbc\xad\x63\x49\x6a\x49\xaa\x42\x49\x2a\xec\x95\x29\x2a\xd6\x41\x11\x26\x30\x0b\xef\x5e\x07\xc1\x66\x1d\x91\x93\x32\xee\xb7\x8e\x5b\x3a\xde\x9a\xab\x43\x69\x2e\x82\x20\x26\x58\x07\x41\x70\x1d\x54\xa8\x96\x58\x1c\xa5\xc7\xa2\x59\xcb\x16\x9d\xd9\x52\xb3\xb6\x12\xf1\xc7\xa2\x0a\x5f\x89\xf8\x23\x30\x8b\x1c\xbe\x12\xf1\x47\xd0\x29\x76\x16\xed\xdd\xeb\xa2\x33\xcb\xc6\x1a\xd5\x99\x09\xcc\xb2\xa8\x13\x6a\xc5\x79\xb2\x08\xe1\x2b\x45\x4d\xfb\x04\xb3\x9c\xa1\xb6\x28\xf4\x8a\xa2\x64\x25\x4a\x04\x81\x3d\xf5\xa2\x2e\x5b\x09\x27\x35\x43\xaf\x2d\x29\x39\x69\x1c\xc4\x95\x5c\x52\xec\xbc\x0d\x54\x75\xe9\xa5\x9d\x8f\x06\x7e\xd1\xde\xbd\xae\x24\x4b\xcc\x90\x52\xff\xb6\x72\x34\x91\x79\x44\x27\xbb\x32\x4d\xa4\xc0\x2c\x23\x45\x13\xb9\xf2\x42\xaa\x42\x49\x7b\xc0\xa8\x2a\x57\x5e\x92\x22\x0b\x8e\xa8\x2a\x57\x26\x0b\x0a\xcc\xf2\x80\xd2\x40\x8f\x73\x4e\xf2\x5f\xd9\x8b\x28\xce\x79\x54\x46\x2b\x73\xc4\x56\x8e\x98\x93\x47\x44\xe2\x95\x69\xe0\x05\x66\x11\x59\x56\xbe\x59\x76\x8e\x98\x93\x87\x16\x44\xb6\x59\xf9\xc6\x99\xd8\xa1\x4c\x23\xb3\xe8\x05\xf3\x8c\x60\xb3\xd4\x0b\x0a\xcc\x8a\x28\x69\x8f\x71\x28\x24\x96\x7a\xc1\x55\x70\x93\x89\x7f\x15\xb9\x49\x91\x9b\x94\x0a\x35\x44\x0d\xa4\x06\xd4\x14\x85\x17\xc6\xd1\x5f\x85\x73\xbe\xca\x89\x12\x59\x73\x6d\x51\x8e\x94\x41\xb1\xc6\x72\x49\x8a\x81\xda\x8e\xa2\xed\x28\x13\x0a\x55\x4b\x58\x22\xcf\x8a\xaa\xb2\x04\x60\xf6\xa4\xa4\x3d\xc6\x99\x93\x2f\xca\x38\x80\x59\x15\xd5\x45\x5d\x48\x75\xa8\x25\x8a\x4d\x8b\xb2\x71\x15\xd9\x8b\x2e\xaf\x1c\x98\x50\x5d\xde\xaa\xa1\x6a\xa1\xe6\x59\x55\xaa\x56\xa9\x5a\x91\x92\xaa\x35\xd2\x67\x39\xb0\x57\x25\x7d\x0a\xcc\xaa\xa8\x29\x6a\x86\x54\x65\x2e\xd2\xa7\xc0\xec\x49\x5d\xa2\xf8\x62\xa4\xbc\xa5\xf6\x50\x60\x86\x63\xaa\x3d\x14\x94\x23\xba\xf5\x55\x75\xac\xaa\x8e\x95\x06\xea\x58\xd1\x25\x96\x23\x7a\xe7\x55\xa9\x79\x04\x23\x77\x49\x35\x51\x27\x52\xa2\xa4\x44\x40\x6d\x78\x4e\x95\x93\x57\x19\x27\x4a\xe3\xa5\x26\x52\x50\x0e\xe2\x57\x53\xc4\x6c\x8a\x98\x04\x85\xa6\x88\xd9\xc2\xbf\x4a\x8a\xf4\xb9\x9a\xfc\xab\xc9\xbf\xaa\x06\x0e\x51\x1b\xa9\x0e\xe5\xa2\xf0\x1c\xd6\xd8\xe4\x39\x2d\x32\x7d\x49\x04\xe4\x46\xa6\x17\x98\x35\xa6\xbf\x34\x7d\xec\x4a\x49\x59\xd4\x73\x20\xc6\xc1\x12\xea\x64\x57\x63\xd3\x12\x27\xad\x69\xd3\x9a\x36\xad\x31\xbd\x36\xad\xc5\x0e\x95\x84\x63\x36\xed\x10\x60\xd6\xb0\x84\x02\x5f\x0b\x7b\x97\x84\x33\xb5\x2d\xe3\xd0\xf5\x58\xd4\xae\xab\x6d\x59\x62\x63\x09\x2d\x7b\x4b\xd5\x80\x36\x9e\x52\x52\x22\xe2\x44\x49\x9a\x5e\x71\xa2\x29\x15\xb3\x43\x8d\x54\xbc\x9a\x63\xaf\x2e\x4a\xf6\x0a\x68\xf9\x60\x41\x8a\x26\x2d\xd2\x49\x49\x84\xa1\xa6\x74\x02\xb4\xaa\x65\xdf\x9a\xfe\xc6\x12\x03\xed\x6f\x29\x71\xcb\x12\xec\xa3\x92\x0e\x6d\x7e\x49\x51\xf4\x2e\xb5\xf9\xab\x5f\x28\x11\x35\xe2\xea\x3a\x0a\x80\x59\x14\xbd\xab\xcb\xf6\x5c\xd2\x96\x4c\xbc\xef\x4a\x99\x5d\x29\xb3\xff\x76\x57\xbc\xba\x32\x6a\xc7\x95\x33\x91\xb8\xcb\x95\xbb\x8a\x9d\x9e\xa0\xba\xa8\xd8\xad\xcc\x49\xe9\x72\xe5\xae\xe0\x4c\x2a\xee\x0a\xce\x3d\xd2\x49\xa1\xda\x5d\xdd\xb5\x92\x00\xb3\x68\x18\x56\x77\xe9\x18\x86\x2e\x19\x13\x74\xe5\xf0\x4e\x77\xa0\x5c\xd9\xe9\x0e\x56\x8f\x04\x54\x32\xc7\xa2\x2b\x01\x01\x66\x5d\x03\xa5\xc4\xcd\x5c\xec\x56\x57\x48\x02\xfa\x90\xed\x14\xc2\x69\xf3\x4b\x8e\xfe\x6d\xa9\xcd\x5f\x16\xa7\xa3\x64\x8c\x6e\x0a\xbb\x80\x59\x97\x14\x5f\xa4\x8f\x2f\x99\xf0\x66\x4a\xd8\xa6\x84\x4d\x46\x35\x25\x6c\xba\xea\x52\xa2\x4a\x5a\x26\xf7\x03\xcc\xa2\x61\x58\x26\xf7\x33\x47\x0a\x57\x36\xd5\x29\xa6\x65\x9b\xa8\xa7\x54\x54\x0d\x8d\xa8\x6e\x4a\xc5\xa6\x54\x1c\x4d\xf7\x32\x59\xc2\xa2\xcc\x2e\xa5\xa3\x04\xbd\xa0\xc0\x2c\x9a\xee\x65\xf2\x5b\x7a\xe7\x52\x30\xa1\x7a\xe7\x35\x22\x74\x94\x12\xdd\xe7\x1a\xdc\x6e\x08\xcc\xa2\x0f\x5f\x83\xfa\x7a\x0d\x62\x46\x19\xa2\x5c\x14\xee\x17\x7d\xf8\x1a\x8a\x19\x40\x29\x13\x29\x1e\x27\x04\x66\x1c\x8b\x71\xe9\x8b\xf8\x57\x99\x50\xf2\x2f\xc0\x2c\xfa\xf0\x35\x14\x2a\x47\xb8\x49\xa9\xc4\xc5\x21\x37\x01\xcc\xd8\xb4\xa1\x4c\x3f\xe2\x58\x95\x4a\x24\x1e\xca\x49\x43\x39\x29\x9a\xee\x35\xe4\x00\xf4\xf4\xa5\xe2\x4c\xea\xe9\x05\xa5\xb2\xc6\xa9\x80\x3a\x4f\xaa\x06\x2c\x31\x65\x89\x79\x32\x10\xbd\xa6\xd6\x08\x18\xb7\x41\x6b\x6a\x8d\x40\x4b\xe8\x35\xb5\x46\xa0\x54\x72\xe5\xbc\x34\x3d\x2f\x14\x46\x05\x32\xe9\x47\xd6\xbc\xd0\x7e\x6a\xae\x26\x4a\xda\xa3\x97\xc2\xee\x8c\xb3\x5d\x2a\x2e\x37\x15\x50\x01\x53\x79\xc6\x8d\x42\x40\xec\x50\x8b\x4e\x63\x4d\x65\x2e\xc0\xb8\x92\x5a\x53\x99\x6b\x12\x3d\x1b\xf1\x7a\x2a\x7a\x02\x66\x83\x35\x6e\xa9\x8a\xbd\x1a\x05\xa1\xda\xfc\x75\x46\x18\x29\x8d\xa3\x70\x2a\x4e\x00\x66\x43\x54\x15\x15\x5e\xd8\x0f\x06\x2a\xa3\x9e\xca\xa8\xd1\x3b\xaf\x53\x7a\x9d\xd1\x8f\x94\x4e\x15\x7f\xd2\x8f\x08\xcc\xb0\xd7\xa9\x68\x72\x46\x5c\x2c\xdc\x75\xae\x53\x71\x11\x30\x8b\xae\x65\x9d\xb7\x06\xa2\x2a\x57\xa9\x4b\x97\x01\x82\xa2\x8e\xe0\xd2\xd6\x5e\xca\x95\x53\x54\x11\xc5\xf4\x84\xa1\x4b\xc7\xfd\xd2\x71\x8f\xfe\x6d\xe9\x7e\x60\x5d\xe4\x24\xae\xca\xd6\xa5\x9c\x74\x29\x27\xe1\xe4\x97\x72\xd2\x45\x64\xa2\x17\x5c\x97\xce\x23\x60\xf2\xaf\x4b\x91\xe9\x8a\x44\x51\x54\x9e\x5d\xaa\xb2\x2e\x55\x59\x6c\xed\xa5\x2a\xeb\x22\x43\xa8\xe6\xb9\x94\x21\x00\x9b\x78\xf4\x25\x4b\x00\x35\x3d\xa5\xf4\x45\x2c\xa1\xbc\xab\xbb\x86\xb5\xd8\x0e\x25\xb3\xa5\xed\x58\xcf\xed\x10\xc5\x76\x70\x73\x50\xc6\xc1\x40\x3a\x46\x81\x59\xf4\xf4\x6b\x69\x87\xb8\x45\x28\x83\x4d\xd3\x2d\x82\xc0\x8c\xa2\x64\xa9\x6f\x58\x9c\x5a\x6e\x2e\xd7\xd2\xa9\x05\x6c\x1c\xa2\xb0\xfd\x62\x6b\x07\x69\x6a\x69\x41\x40\xaf\x4d\x94\xbe\x48\xeb\x35\xa8\x66\x96\x5a\x2f\xa0\x0c\x8e\xfb\x52\x71\x09\xd8\x53\x7b\x15\x97\x40\x19\x24\xff\xa5\x62\x1c\xb0\x41\xbd\xa9\x0b\x8f\xb5\x39\xa2\x5c\x53\xae\xad\x23\x0a\xd8\xc0\x7d\xb7\x8e\xe8\x8e\x73\x53\x06\x7e\xbf\x55\xea\x01\x36\x28\x54\xb7\xce\xd0\x26\xa4\x8d\x29\xa9\x2a\xaa\x22\xd5\xa1\x9a\xa8\x70\x93\xe8\x1b\x7e\x33\x15\x6f\x19\x1d\x30\x1e\x69\xd6\xd6\xb1\xd8\x91\x0e\xca\x3c\xf8\x94\xd2\x01\x60\x83\xa3\xbf\xe5\x7e\xdc\x9a\x94\xc9\x09\xd6\xad\xc9\x72\x5c\x79\x52\x00\xbb\x5c\x19\xb0\x41\xe7\xee\x72\x65\xbf\xd1\x91\x68\xe0\xda\x07\xbf\x25\x35\xa1\x9e\x52\xfe\xf6\xa8\x47\x09\xbd\x74\x3b\x21\xb0\x41\x6f\x73\xeb\xd4\xdd\x11\x17\xeb\x41\x0f\x71\x2b\x2e\x02\x36\x48\x8c\xf7\xf5\x94\x6a\x21\xd5\x98\x4b\x11\x0f\xe8\x07\x0b\xba\x55\x68\xde\x91\x77\xeb\x41\x05\x72\x2b\xef\xde\x7a\xf7\xa6\x42\xbd\x95\x77\xef\xd8\x87\x4a\xe5\xbc\x75\x15\xb1\x8f\xcd\xf4\x11\x7f\xf6\x41\xe9\x22\x28\xd4\xb1\xfb\x20\x3b\x6f\x7a\xfa\xca\xc3\xf0\x56\x4f\xbf\x79\x0e\xad\xdc\xdd\x6d\x3d\x87\x0a\x8c\x33\xb0\xf5\x1c\xba\xd3\xea\x6f\x8f\x9a\x43\x89\x9d\x78\x1f\x11\xd8\x48\x0d\x6a\x88\x3a\x43\x2a\x4b\xea\x12\x85\x55\x53\x87\x5a\xa2\x16\x52\x06\xa5\x2f\x2e\x7d\x51\x94\xbe\x88\xaa\x3c\xf9\x6e\x35\xdd\x3b\x8b\x8a\x34\xb5\xd5\x6a\x6e\xfa\xbf\x5a\x22\x70\x6d\xfd\x4e\x40\x60\x23\x21\x75\x49\x2a\x4c\x58\xcb\x10\x75\x8a\xe2\xd4\xa5\x09\x85\xaa\x25\x6a\xb9\x5a\x26\x52\xdb\x45\x71\x9e\x22\x8f\xec\x42\x34\xd8\x3c\x28\xd6\x1a\x9d\xd9\xd6\x83\xa2\xc0\x46\x46\x09\xee\x01\x37\x8d\x5f\x25\x61\x6f\x35\x7e\x9b\x87\xbb\x4a\x76\xde\x7a\xb8\x13\x18\x01\x62\x57\x9e\x49\x76\x8d\xd0\x51\x5b\x9c\xf3\xcd\x5b\xdc\x13\xca\xd1\x91\x72\x49\x31\x7d\x43\x09\xb5\x4e\xbb\xb1\x8f\x2d\x2a\xa3\xdd\xb4\x8f\x4d\xfb\x98\x91\xd2\x3e\xb6\x88\x52\xb5\x45\x32\xdb\xb4\x05\x4f\xb0\x11\xbd\xf3\x56\x77\xb0\x29\xcc\x2b\x39\x69\xab\x30\x17\x54\x9e\x30\xb7\xde\xdf\x04\x36\x72\x87\x62\xae\xae\x81\xe1\xe4\x5b\xf5\xe6\xa6\x16\xab\xf4\x6f\x5b\xb5\xd8\xa6\x16\xab\xbc\xaf\x6c\xd5\x62\x02\x1b\x59\x52\xac\x91\x6a\xa6\x72\x79\xb2\x55\xcd\xec\x19\x5b\x50\x67\x81\x22\x12\x0b\x8c\xd7\xa1\x3d\x5d\x52\xb1\x1d\xed\x88\x48\xbc\xa7\xb6\x03\xb0\x51\x44\x61\x9c\x19\x09\xa8\x1d\x71\x44\x37\xaf\x02\x4f\x48\xda\x34\x3d\x0e\x6c\x4a\x84\x76\x60\x42\x95\x08\xfb\x8c\x23\xda\x0e\xe6\x3a\x39\xa2\x02\x1b\x25\x41\xe1\x5f\x94\x08\x8d\x87\x86\xad\x12\x41\x60\xa3\x64\x28\xb6\xe3\xd4\xf4\x91\x3e\xb7\xd2\xfa\xbe\xc2\x27\x5a\xe2\x8b\x97\x7c\x02\x30\xde\xb6\xf6\xc5\xd3\xd9\xbe\x78\x0f\x4f\x11\x27\x36\xc9\xfb\x09\x36\x8a\x06\xe2\x98\x17\xbd\x20\x2f\x01\xfb\xa2\x18\x17\x14\x9e\x8f\xf7\x45\x16\xdc\xe4\xf0\x96\x06\x94\x3c\xfa\x92\x47\x17\xf4\x92\x09\x81\x96\x22\xf6\xef\x4b\x26\xbc\xd4\x31\x1a\xd3\x53\x79\xef\x8b\x5e\x30\x1f\xe8\x45\x2f\x28\x30\xde\xdc\xf6\x75\x6b\x41\xb7\xfa\xca\xd8\x6d\xe5\xf0\xbd\x44\x71\x6a\x95\xb9\x36\xc1\xbd\xd1\x5d\x6c\x05\xf7\xed\xd8\x9e\x1f\x1e\x6c\x97\xed\x81\xc2\xfb\xdd\x76\xd9\xde\x23\x99\xb5\xca\x76\x38\xc9\x4c\x60\x23\x8a\x92\xed\x5b\x73\x85\x5e\xad\xe2\xd1\x2e\xbd\x80\xc4\xd5\xf3\x76\x6a\xea\x4d\x0a\x68\x54\xb8\x5b\x29\x60\x73\x11\xdc\x5a\xf8\x97\x2b\xfa\xfa\x11\x2e\xdb\x5a\x94\x54\x7e\x70\x2f\x2f\xb0\x11\x6d\xbe\x1f\x5c\x52\xf8\x11\xd1\xa4\x75\x0d\x24\x9a\x08\x6c\x54\x28\x3c\xda\x8f\x50\xa2\xf1\xdc\xee\xc7\xad\xb9\x6e\xbd\x4e\x8b\xd2\x5c\x28\xc1\x9b\x9b\x2b\x92\x3b\xbf\x9b\x69\x3c\x05\xb9\x7e\x37\x23\xb0\x51\xd3\x6f\xa6\x62\x4f\xbc\x7c\x78\x8a\x80\xda\xb8\x41\xf6\x44\x40\xf5\xa4\x64\x16\xc7\xd5\x13\xc9\xcc\x09\xce\x8d\xb7\x03\x57\x70\x76\x7e\x98\xd2\x78\x51\x76\xfd\x30\x45\x60\x23\xb2\x8d\x67\x4d\x9f\xa3\xf1\x6b\x54\xa8\x9e\x69\xfc\x04\x99\xf3\xe4\x99\x4c\x2f\x68\xa3\x31\x90\x4c\x2f\x28\xa9\x69\xa0\xa6\xe7\x76\x62\x44\xb0\x71\xdd\x75\x0a\x6c\x54\xf4\xa2\xf6\x74\x92\x46\x1b\x71\x52\x5c\x49\xc3\xf5\x63\x92\x11\x7e\xeb\xfa\x31\x89\xc0\x08\x36\x5e\x38\x3c\x5e\x22\xc9\x36\xee\x27\xbd\x50\xec\x08\x8c\xba\xcc\x0b\xc5\x8e\x93\x34\xda\xcc\x92\x72\x51\xfa\x69\x47\x86\x42\x2f\xd2\x41\x9b\x25\xa4\x94\x0e\xbc\xe2\xca\x33\xda\x69\xaf\xb8\xb2\xc0\x46\x45\x0a\x57\x76\xb2\x42\x9b\x51\x85\x7b\xe5\xe8\x0b\x2a\x8f\x93\xce\x35\xe1\xab\x93\x34\xfa\x71\x30\x90\x10\x2e\x30\x8a\x43\x57\xd2\xf0\x1a\xc7\xb5\x1f\x52\x82\xe3\x2a\xb0\xd1\x98\x4b\x26\x24\xb5\x74\xde\x51\x5d\xa9\xc5\x5b\xa8\xda\x29\x37\xbc\x49\xd5\x26\x55\xa3\xb6\xf0\x26\x55\x81\x7e\x44\x6a\xf1\x46\x46\x15\xd8\x88\x5a\xdd\xc9\x4f\xaf\xde\x62\x41\xfd\x98\x0c\xd4\x82\x00\xe3\xc9\xd7\x9b\x16\x44\x02\xea\x29\xb2\xa0\x2b\x01\x39\x3f\xda\xe8\x29\x3a\x20\xd7\x8f\x36\x04\x26\x37\xd1\x8f\x36\xbc\x6b\x60\x74\x1a\xae\x04\xe4\xbc\xe6\xf7\x8c\x12\x7a\xcd\x17\x18\x77\x64\xae\xd7\x7c\xd7\xf5\x43\x89\x8a\xde\x75\xfd\x20\x30\xf9\x97\xae\x1f\x9c\x07\xfe\x5e\x32\x03\x79\xcb\x13\xd8\xe0\xb8\x1a\x17\x62\x6e\xcf\x5f\x33\x86\x5e\x4a\x79\xce\xd3\x7d\x2f\xf8\x97\x9e\xee\x05\x36\x58\x90\x9e\xee\x7d\x60\xc2\xd2\x25\x75\x89\x92\x09\x27\x14\x26\x1c\x37\x73\x59\xd8\x8b\x8b\x81\x27\xd8\xc0\x27\x74\x3f\xe0\xa4\xcf\xce\xad\x9c\x2b\x7d\x0a\x7a\xad\xa2\xb2\xa8\xcc\x6b\x6b\x81\x2a\xa2\x36\x52\x19\xca\x45\xd1\x14\x71\xac\x74\x3f\xe0\x73\xab\x91\x89\x35\x4e\xaa\x78\x41\x7a\x4e\x4f\x15\xef\x53\x4a\x44\x49\xe5\x4a\x9f\x7e\xc6\x57\x3a\xa5\x8b\x9f\x24\x7f\x41\xe1\xb5\xd5\x4f\x92\xbf\x9f\x11\x3d\x7b\x2b\xa2\x4c\x14\xf5\x66\xcf\x50\x84\x8e\x33\x0c\xd2\x5b\x0d\x67\x3a\xa9\x79\x04\x36\xa2\x58\xf2\x93\x9a\xc7\xcf\x70\xf2\xde\x44\xc9\xc9\x4f\xc5\x09\x3c\xfa\x54\x9c\x20\x15\xf7\x1e\x15\xae\x2b\x15\xfb\x15\x81\xaf\x77\xce\xf6\xa5\xc0\x77\xa9\x75\x8a\x76\xda\x2f\x5a\x27\xbf\x76\x28\xc1\x2f\xf2\xfc\xe2\x3a\x50\x90\x1a\xc7\xea\x52\x50\xb8\xc2\xcd\x3a\x2f\xf0\x7e\x71\xf7\x27\xb0\xc1\x6e\x5f\xdc\x8b\x39\xf9\xb1\xf3\xc8\xec\x97\x62\x3f\x60\xa3\x1b\xd4\x53\x2a\x54\xe5\x79\xd0\x95\x3e\x9d\x16\xb8\xf3\x4e\xe6\x6a\x81\x05\x99\x77\x1f\x57\x0b\xec\xcb\xf5\x32\x17\x73\x2d\x39\xf9\x92\x93\xf7\x01\xc5\x3e\x2e\xfc\x8b\xce\xdf\x97\xfc\x6b\x3d\xfd\x6b\x42\x35\x51\xa1\x04\x8d\x9f\x2b\x61\xfb\x8e\x2f\x76\x6a\x7d\xdf\xfa\x22\x60\x83\x28\x47\x8f\xf9\xea\xbc\x9a\x77\xed\xa3\x5e\xcd\x05\x36\x2c\x41\x6d\x51\xcc\x35\x25\xa5\xb9\x14\xac\x4c\x94\xe6\x92\x12\xe4\x5d\x95\x08\xee\xbc\x3e\xf2\x1e\xe5\xce\x85\x87\xc0\x06\x07\xc6\xb9\xf0\x70\xc7\x73\x66\x94\xff\xee\xf2\x1c\x97\xe7\x18\x73\xc9\x73\x78\xf0\xee\x93\x1c\xee\x74\x50\x02\x1b\x51\xb1\xb9\x53\x52\x39\x25\x42\x9f\xf8\x84\x4a\x04\xa7\x44\xb0\x23\x3a\xec\x5b\x25\xc2\x7d\x50\xeb\x1f\x73\xfc\x75\x2a\xce\xed\x6f\x33\xf1\x7d\x50\xf5\x09\x6c\x44\xb7\x73\x1f\x04\xbc\xfb\xa0\x8a\x49\x51\x9f\xdc\xc7\xd6\xb4\x5c\x6b\x0d\x9b\x50\x59\x54\x78\x4c\x8a\x2c\x75\xab\xef\x13\xd8\x88\x6a\xe1\x3e\xd0\xfa\xd6\x8f\x78\x49\xa8\xb7\x7e\xc4\x2b\x48\x51\x2d\xc4\xff\x4b\x09\x6e\x19\xc7\x10\x25\x25\x58\x5b\x1a\x31\x50\x95\xc7\x9d\x44\xc5\x66\xdd\x2a\x07\x6e\xf2\xbd\xe5\xd1\xa1\xb6\x28\x0c\x3c\x24\xe5\x50\x44\xb7\x1c\xd5\xc6\xcd\x93\xea\x13\x6c\x30\xbd\x5e\x56\x6f\x9e\x51\xad\x84\xbf\xdf\x7a\x46\x15\x24\x2e\x86\x6e\x3d\xa3\x0a\x8c\xa7\xcf\x3b\xe3\x6a\x77\xbe\xf5\xd3\x68\xbe\xa8\x35\x02\xa9\x44\x47\x77\xeb\xe9\xf3\xa6\x42\xb0\x12\x3e\x7a\xab\x42\xb8\x0b\x86\x2e\xd8\xab\xec\x27\x85\xa1\x47\x83\xc2\xd0\x7a\xf0\xab\xd1\x7b\xdc\x7a\xf0\x13\xd8\x60\xd9\x24\xfd\x27\x58\xb5\xbf\xbe\x0e\x89\xff\xff\xf1\xfc\xf4\xf2\xeb\x3f\x11\x58\x3f\x7f\xfe\xec\xef\x5f\xf8\x07\x09\xfc\x43\x80\xc7\xf6\xfb\xc3\xbb\xff\xfa\x8f\x1b\x3e\x7d\xfc\x14\xa3\xf8\xef\xbf\x03\x00\x00\xff\xff\xd2\xfa\x91\xdf\x08\x31\x00\x00"); +func _dfeg ()(*asset ,error ){_ed ,_cde :=_ef ();if _cde !=nil {return nil ,_cde ;};_dff :=bindataFileInfo {_ee :"78-RKSJ-V",_ffd :902,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490945,0)};_eda :=&asset {_da :_ed ,_dc :_dff };return _eda ,nil ;};func _faf ()([]byte ,error ){return _gb (_abe ,"GBK-EUC-H")}; +func _cbce ()(*asset ,error ){_gecb ,_adcd :=_geba ();if _adcd !=nil {return nil ,_adcd ;};_bbfe :=bindataFileInfo {_ee :"GB-V",_ffd :774,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492258,0)};_dacf :=&asset {_da :_gecb ,_dc :_bbfe };return _dacf ,nil ; +};func _aeff ()(*asset ,error ){_bebgg ,_dgac :=_gggc ();if _dgac !=nil {return nil ,_dgac ;};_cdca :=bindataFileInfo {_ee :"HKscs-B5-V",_ffd :633,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492464,0)};_ccga :=&asset {_da :_bebgg ,_dc :_cdca };return _ccga ,nil ; +};func _gagb ()(*asset ,error ){_bae ,_egaa :=_cee ();if _egaa !=nil {return nil ,_egaa ;};_babe :=bindataFileInfo {_ee :"GB-H",_ffd :2090,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492002,0)};_cbc :=&asset {_da :_bae ,_dc :_babe };return _cbc ,nil ;}; +func _ddc ()([]byte ,error ){return _gb (_edaf ,"Adobe-GB1-4")};func _gede ()(*asset ,error ){_fabb ,_effb :=_edcb ();if _effb !=nil {return nil ,_effb ;};_fbfdg :=bindataFileInfo {_ee :"UniJIS-UTF32-H",_ffd :243137,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492947,0)}; +_ddaab :=&asset {_da :_fabb ,_dc :_fbfdg };return _ddaab ,nil ;};func _ebcdc ()(*asset ,error ){_cbfca ,_afbb :=_fgbee ();if _afbb !=nil {return nil ,_afbb ;};_febf :=bindataFileInfo {_ee :"UniCNS-UCS2-H",_ffd :324097,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492685,0)}; +_cddbd :=&asset {_da :_cbfca ,_dc :_febf };return _cddbd ,nil ;};var _cafc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x39\x6e\x0f\x5b\x3c\x10\x43\x90\x22\xa4\x6e\xa2\x6e\x39\x6c\x5b\x35\x9b\x6d\xa5\xaa\x07\x82\xc7\xa9\xa5\xc6\x20\x03\x87\xfc\xfb\x6a\xc6\x84\xaa\x07\xe4\xcf\xcf\xcf\xe3\x37\xd8\xe9\xbe\x39\x34\xde\x4d\x90\x7e\x0d\x7d\x77\xa4\x09\xac\xf3\x26\xd0\xd8\xcf\xa1\x23\x38\xd3\xc5\xf9\x24\xc1\x0c\x8c\xeb\xa6\xfb\x54\x86\xee\xda\x0e\x49\x92\x9e\xbc\x7b\x7e\x7a\x3c\xbd\x7e\xc4\xe2\xf1\x13\xcc\x23\x2d\xfa\xbe\x39\x1c\x6f\xe3\x44\xd7\xc6\xdb\x1e\xf2\xb8\xdf\xcc\xc3\x52\x03\x20\xfd\x46\x17\x37\x4e\xe1\x06\x0f\x1f\x4c\x7f\xa6\x77\x60\xc8\xb2\xfe\x25\x18\x0a\xce\x5f\xe0\xe1\xf9\x09\x57\xf5\x38\x0f\xc3\x1f\xba\x92\x9f\x40\x8b\x46\xde\xc8\x98\xa4\xfb\x97\x76\xf8\xdc\x5e\x09\xfe\x0b\xf3\x26\xab\xb2\xf8\x46\x61\x74\xbd\x07\x7c\xaf\x54\xf9\x4f\x7e\xbd\x0d\x04\xb8\x14\xf9\x71\x6a\x0e\xf0\x13\x01\x15\x64\xba\x50\xd9\xaf\x45\xff\xfe\xd2\x9b\xd5\x85\x65\x8c\xdf\x39\xd3\xfd\x6e\x43\xb2\xcb\x14\x6e\x6a\xd0\xd5\x96\x31\x2b\x18\xab\x64\x97\x2b\x85\x35\xe8\x52\x0b\x66\x8c\x1b\x46\xcc\x6b\x28\x4b\x55\x24\x3b\x6b\xa3\x63\x2b\xd8\x31\xe6\x82\x24\x8e\x92\x19\x8d\xb0\x58\xd0\xb2\xa5\x62\xcc\xcf\x22\x47\x16\x0b\x2a\x61\x5b\x43\xa1\x04\xf5\x99\x83\xc8\x31\xda\x30\x4a\x3d\x1d\x6b\x6f\x98\x49\x92\x20\xf2\x5f\xbc\x37\x93\x14\x6b\x73\xa1\xf5\x17\x92\xf0\xdb\x1a\x78\xe0\xe3\xb7\xb1\x07\x25\x0a\x72\xfc\x2a\x2a\x9b\xa8\x68\xf6\x64\xa2\x14\x51\x29\xd9\x93\x49\x5f\x5c\xc7\x5a\x55\xb1\x47\x32\x62\x2b\x0a\x72\xd4\xb2\x58\x72\xc4\x73\x65\xc2\xaf\x68\xbd\xd8\x6e\x0e\x81\xfc\x24\x6f\x48\xae\x8e\xaf\xc3\x79\x5a\xdf\xe9\xd0\x0f\xbc\x4b\xbe\xbf\x01\x00\x00\xff\xff\x18\xd8\x4a\x05\xd3\x02\x00\x00"); +var _aaccg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\xcf\x8e\x9b\x30\x10\x06\xf0\x3b\x4f\x31\xc7\xed\xa1\xc5\x7f\x8a\x31\xd2\x2a\x52\x95\x1c\x8a\x56\xdb\xad\x9a\xee\xb6\x52\xd5\x03\xc1\x43\x64\xa9\x31\xc8\xc0\x21\x6f\x5f\xf9\x33\xa5\x87\x68\xe2\x1f\xfe\x06\x63\xbb\x3c\xb6\xa7\x36\xf8\x85\xca\xaf\x71\xec\xcf\xbc\xd0\xe0\x83\x8b\x3c\x8f\x6b\xec\x99\x2e\x7c\xf5\xa1\x28\xa4\x22\xe7\xfb\xe5\xdf\x10\xa5\xbf\x75\x53\x51\x94\x4f\xe7\xe3\xfb\xcf\xb4\xce\xbc\x8d\x8f\xed\xe9\x7c\x9f\x17\xbe\xb5\x61\x18\x49\xe7\x9c\x5b\xa7\x2d\x4b\x54\x7e\xe3\xab\x9f\x97\x78\xa7\x87\x4f\x6e\xbc\xf0\x3b\x72\x3c\x24\x7f\x89\x8e\xa3\x0f\x57\x7a\x78\x1a\x23\x77\x72\x7f\x70\x5e\xa7\xe9\x0f\xdf\x38\x2c\x24\x60\x1c\x1c\x6a\x51\x1e\x9f\xbb\xe9\x4b\x77\x63\xc2\x3a\xde\xa0\xc0\x37\x8e\xb3\x1f\x03\x35\x1f\x84\x30\xff\xf9\xfb\x7d\x62\x92\x5b\xf8\xb5\x3d\xbd\x0c\xc3\xcc\x0b\x69\x95\x1b\x97\x3f\x5f\xdb\x13\xfd\x92\x24\x05\xa9\xea\xa3\xd0\xbf\xb7\xa9\x3f\x9e\x47\xb7\x07\xa5\xc9\x1f\xd3\x7b\x17\xbb\x70\xe5\xe2\x51\x49\xa5\x0e\x94\x8a\x3e\x90\x15\x95\x01\x55\x99\x2a\x90\x05\x99\x4c\xe6\x40\x56\x2b\x01\x6a\x32\x5d\x30\xab\x01\xb9\x4c\x2e\x91\x51\x89\x74\x6e\xaf\x33\xe9\x44\xe6\x02\x32\x08\xd6\x55\xf1\xa8\xb4\x92\x89\x50\xac\xa8\x0d\xc8\x66\x6a\x40\x35\xa8\xcf\xd4\x83\x1a\x10\x67\xe2\x44\x36\xad\x4b\xeb\x0e\xa4\x07\x90\x4c\x54\xe1\x8d\x28\x56\x58\xf4\xaa\x5c\x26\xac\xcb\x5a\xd0\x90\x29\x07\xd1\xbe\xce\xc1\x1a\xed\x1b\x91\xce\x6f\xdf\xbb\xf4\x3f\xdd\x9c\xfd\x24\xfb\x35\x46\x0e\x0b\xee\x0d\xce\x2c\x6d\xba\x0f\xbc\xdf\xc9\x69\x9c\x52\x0a\xbf\xbf\x01\x00\x00\xff\xff\x7c\xa3\xad\x1b\xbf\x02\x00\x00"); +func (_gd bindataFileInfo )ModTime ()_c .Time {return _gd ._ae };func _egfc ()([]byte ,error ){return _gb (_dbbc ,"HKm471-B5-V")};func _eagf ()([]byte ,error ){return _gb (_aefdd ,"UniKS-UTF32-V")};func _cgfb ()(*asset ,error ){_facg ,_fcae :=_afbd (); +if _fcae !=nil {return nil ,_fcae ;};_ceb :=bindataFileInfo {_ee :"Adobe-Korea1-UCS2",_ffd :144546,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490590,0)};_bgde :=&asset {_da :_facg ,_dc :_ceb };return _bgde ,nil ;};func _cgff ()([]byte ,error ){return _gb (_beeb ,"UniKS-UTF8-H")}; +func _ceee ()(*asset ,error ){_edcd ,_acce :=_aefd ();if _acce !=nil {return nil ,_acce ;};_cbbg :=bindataFileInfo {_ee :"HKdla-B5-H",_ffd :21023,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492309,0)};_gfed :=&asset {_da :_edcd ,_dc :_cbbg };return _gfed ,nil ; +};func _dcgc ()(*asset ,error ){_ffdfc ,_bfac :=_caa ();if _bfac !=nil {return nil ,_bfac ;};_adcdd :=bindataFileInfo {_ee :"KSC-Johab-H",_ffd :82000,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492512,0)};_fdfg :=&asset {_da :_ffdfc ,_dc :_adcdd };return _fdfg ,nil ; +};func _bgcc ()([]byte ,error ){return _gb (_bdfa ,"Adobe-GB1-UCS2")};func _acd ()(*asset ,error ){_eag ,_af :=_db ();if _af !=nil {return nil ,_af ;};_bdb :=bindataFileInfo {_ee :"78ms-RKSJ-H",_ffd :14250,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490899,0)}; +_ge :=&asset {_da :_eag ,_dc :_bdb };return _ge ,nil ;};func _agcde ()([]byte ,error ){return _gb (_ggecd ,"HKm314-B5-H")};func _abdd ()([]byte ,error ){return _gb (_ffdf ,"GBT-EUC-H")};func _deb ()(*asset ,error ){_dfegg ,_abf :=_cfcff ();if _abf !=nil {return nil ,_abf ; +};_fdg :=bindataFileInfo {_ee :"UniCNS-UTF16-H",_ffd :251000,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492695,0)};_ggbg :=&asset {_da :_dfegg ,_dc :_fdg };return _ggbg ,nil ;};func _afd ()(*asset ,error ){_bc ,_ce :=_gdc ();if _ce !=nil {return nil ,_ce ; +};_agb :=bindataFileInfo {_ee :"90msp-RKSJ-V",_ffd :1874,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491002,0)};_fcf :=&asset {_da :_bc ,_dc :_agb };return _fcf ,nil ;};func _fggb ()(*asset ,error ){_eaf ,_gbgc :=_dfaf ();if _gbgc !=nil {return nil ,_gbgc ; +};_dgaab :=bindataFileInfo {_ee :"Ext-V",_ffd :1141,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491941,0)};_agda :=&asset {_da :_eaf ,_dc :_dgaab };return _agda ,nil ;};func _aeb ()(*asset ,error ){_ggfb ,_badb :=_adg ();if _badb !=nil {return nil ,_badb ; +};_eecc :=bindataFileInfo {_ee :"Adobe-KR-4",_ffd :1313,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491427,0)};_ffcb :=&asset {_da :_ggfb ,_dc :_eecc };return _ffcb ,nil ;};var _cebb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\xcb\x8e\x36\x31\x92\x1d\xb6\xef\xa7\xa8\xa5\xbc\x90\x27\x79\x0b\x92\x80\x51\x80\x25\x61\xe4\x59\xc8\x36\x2c\xc9\x36\x60\x78\x91\xd7\x71\x03\x9e\xee\x46\x4f\x6b\xa1\xb7\x37\x78\x4e\x7d\xe7\xe4\x18\x30\x5c\xff\xa6\x7e\x7e\x99\xc9\x4b\x30\x18\x11\x8c\xeb\xdf\xfd\xdb\x7f\xf8\x77\xff\xf0\xa7\x3f\xfe\xed\xeb\xef\xfe\xe7\xbf\xfe\xf9\xfc\x8f\xf7\xdf\xbe\x9e\x3f\xfe\xe9\xfa\xeb\xfd\xcf\x7f\xfe\x2f\x7f\x3d\xef\xaf\xe3\xfe\xc7\x3f\xfe\xe9\x0f\x7f\x48\xf9\xeb\xfa\xe3\xf9\xb7\x4f\x13\x7f\xce\x7f\xda\xff\xf2\x87\x3f\xac\xef\xff\xe3\x7f\xfd\xe7\xbf\xdd\xff\xf4\x0f\x7f\x7a\xfe\xfc\x55\xf8\xde\xf5\x5f\xfe\xf2\xf3\xee\xd7\xd7\xdf\xfd\x2f\xf7\x3f\xfe\xf1\x9f\xff\xf6\xd7\xff\xfa\xf5\xaf\xfe\xfb\xeb\xcf\xc7\xfd\xdf\x7c\x5d\xf7\xb3\x7e\xff\x9f\xfe\x7a\xdd\x7f\xfd\xe3\x9f\xfe\xf1\xeb\x5f\xfd\xfb\x7f\x93\xf4\xeb\x7f\xfc\x2f\x7f\xf9\xcb\xff\x7d\xff\xd3\xfd\xa7\xbf\x7d\x35\xfc\x76\xff\xe9\xc2\xdf\x3f\xfc\xdd\xbf\xfd\x0f\xfb\x5f\xfe\xc7\xfd\x9f\xee\xaf\xbf\xfb\xcf\x7f\xfa\xe3\xbf\xff\x37\xff\xfa\x3f\xff\xa7\xbf\x2f\xf9\x5f\xff\x0f\x78\x8a\x87\xff\xeb\xfd\xd7\x7f\xfe\xe3\x9f\xff\xf4\x95\xfe\xdb\x2d\x85\x7f\xfe\x4f\xff\xf5\x2f\xf7\x57\xfa\xe9\xe4\x7f\xff\xcf\xff\xf0\xef\xbe\xfe\x8f\xf4\x95\xb6\xaf\xdc\x62\x2b\xff\xe7\xcf\xef\xff\xdb\x7f\xf8\xf3\x75\x7f\x6d\x6c\x25\xce\xfe\xfc\xf3\x75\xff\xf3\x5f\xf6\xf3\xfe\xeb\xfe\xa7\x7f\xbc\xff\xf0\xf5\xf5\xdf\x6d\x3f\xff\xbe\xd7\x7f\xd3\xf6\xf7\x7f\xff\xf7\x7f\xff\xbd\x66\xf8\xff\x7a\xf3\xd3\xc1\x9f\xfe\xfc\xb7\xeb\x7e\xf8\xdb\xbf\xfc\x76\xfd\x4b\xcf\xf7\x57\x5a\x5f\xbf\x5f\xfb\x43\xda\xb6\x9f\xd1\xff\x78\x9d\xff\xd7\xfe\xd7\xcf\x87\xfb\xb6\xde\xfe\x34\xea\xf7\x57\x8a\xae\x66\xfb\xfe\xca\xb9\xb4\xaa\x1f\xfa\xf7\x57\xea\x7e\x7d\x7c\x7f\xa5\x2d\xab\x39\xbf\xbf\x7a\x4f\xe5\xd3\x3e\x56\xd7\xa1\xc7\x47\xfa\xfe\x4a\x59\x9d\x1f\xfd\xfb\x6b\xce\x4f\xeb\x5a\x3d\xe7\xf1\x69\xde\xdb\xf7\x57\x78\xa0\x3b\x7d\x7f\x45\xe8\xe5\x7b\xac\xa7\x4d\xcd\xb9\x9a\x1a\xf6\xde\xbf\xbf\x62\xba\x79\xae\xa7\xfe\xf6\x5a\x4d\xcd\xe2\xc9\xdf\x5f\x31\xf4\xf2\x53\x56\x53\xe3\x3e\x98\x95\xbe\x7d\xd6\x40\xc3\xdf\xae\x81\x86\xa6\xf1\xac\x81\xe6\x67\xb9\x69\xc3\x9c\x3f\x2b\x4a\x69\xf5\xdc\xf5\x34\x1d\xab\xf9\x01\x6c\xca\x68\xc6\xa7\x59\xeb\xea\xca\xcd\xb5\xde\xd9\xd5\x5c\x4b\x18\xdb\xa7\x19\xeb\xdb\xa1\xae\xce\x7b\x75\xa5\xa7\x17\x20\xa9\x69\x5c\x58\xaf\xa6\x71\xad\x81\x86\x06\xba\x62\x35\xfd\xf2\x1a\x77\x4c\x35\x01\x58\xf7\x8c\xf5\x7e\x60\x95\x00\x9c\xf9\xf9\x36\xb7\xb5\xfc\xf9\x99\x55\x0e\x34\x3f\x5d\xe5\x73\x01\x76\x4b\x6a\xce\xd5\xfc\xf4\x9c\xaf\xb9\x50\x63\xfb\xbc\x5d\x01\xca\xed\xd3\x75\x45\xd7\xf5\xe7\xe3\x74\x97\x67\x75\xfd\xb3\x0d\x79\xdb\x32\xb0\x30\x3e\xed\xb4\xa1\xef\x34\xf4\x43\x59\xbd\xa7\x4d\xed\x85\xf4\x9b\xbe\x4f\x0d\x8f\x93\xda\xb1\x1e\xf7\x4f\x33\x67\xa3\x6d\xde\x32\x5f\xce\x6a\xe3\x65\x0d\x55\xd6\xd8\x5d\x23\x15\xbe\x5d\xd4\x3e\xbe\xbf\xd2\x67\xe7\xf2\xd6\xae\xef\xaf\xe6\xbe\xf7\x93\xa7\xef\xf3\x7a\xda\xca\x3a\x4f\x4d\x4d\xf6\x56\xd5\x06\xd4\x92\x9e\x63\xe2\x1f\x8c\xcb\x29\x27\xc2\x21\xf4\x03\x01\xa5\xef\x67\x5e\xb3\xd1\xe7\x73\x8d\xf6\xc1\x85\x9c\xb7\x75\xd6\x4b\x57\x73\x11\x99\xf2\xf9\x36\xa7\xd5\x79\x29\x6a\x62\x6a\x79\x53\x7b\x5f\x8f\xa7\x9a\xd7\xf7\x57\x6a\x49\xcd\x7b\x35\xd5\xf5\xa2\x5f\x73\x66\x3d\xce\x0b\x88\x35\xab\x89\xed\xcb\x6e\xb7\xf5\xd8\x6f\x2f\x54\x2a\xa1\x26\x46\x6e\x6a\x2e\x88\x57\x37\xd7\xc8\x55\x2f\x97\x85\x09\x4d\xd3\x5c\xdb\x95\x9a\x20\x50\x16\x3c\x8b\xd6\x54\x16\x0a\x17\x3f\xc5\x9a\xf4\x74\x1d\xd9\x54\xd5\x55\x3d\x57\x53\x2f\x37\x20\x51\x16\xbc\x62\x2d\xb1\x69\x49\xeb\xb0\xa4\x2a\x80\x4c\x40\xd3\x5b\x31\xd7\x12\xab\x60\xbf\x03\x00\x1a\xf9\x20\xf8\xb4\xa8\xfb\x21\x4a\x2e\x76\xf2\x43\xfa\xff\x3f\x98\x41\x2e\x69\xa1\x40\xfd\x4c\xab\x81\x37\x7c\xa8\x61\x6e\xfb\x9a\xd6\x87\xee\xe4\x76\x00\x5f\xf4\xf2\x01\x7c\xf9\xac\xa1\x9d\xc0\xbe\xa9\x26\x38\xc7\x50\x73\xed\xc3\x87\x82\xe7\xb6\x68\x56\xfa\x10\xe5\xdc\xce\x35\xe5\x0f\x35\xcc\xb1\x10\x3d\x7d\x68\x65\x8e\x0d\x3d\x17\x35\x81\xf6\x1f\xaa\x9c\xa3\x82\xeb\x24\x35\xd7\x2c\xe3\x33\xe9\x7b\x6c\xeb\x50\xd5\x0f\xa7\xc9\xf7\x48\xeb\x87\x4d\xd0\xbe\x47\xc5\x0f\x42\xcf\x7b\x0c\xfe\x50\xf5\xc3\xc1\x1f\x9a\x7e\xc0\x49\xdd\x3c\xca\xec\xfc\x41\x7d\xec\xfc\x41\x8b\xb8\xf7\x9d\x3f\x68\xd8\xfd\xc6\x0f\x02\xef\xbd\xe0\xb9\x7e\xc8\xfa\x81\xc3\x0a\x0f\xee\x93\x7d\x7c\x68\x6e\x7e\x96\x10\x50\xc5\x71\xf3\xb3\xe8\x66\xed\xa2\x5d\xcf\x22\x8d\xb5\x67\x3f\x2f\x78\x3e\xd5\xae\xeb\x7b\x91\x80\x07\x80\xdf\x52\x49\xfa\x21\x70\x40\xdc\x61\xff\xfe\xaa\x23\xdc\x1e\xdf\x5f\x25\x17\x4f\x68\xe2\x7d\x0f\xb8\xaf\xe7\x22\x88\xcf\x76\x7c\x7f\xcd\xe1\xc7\xe7\x9a\x4f\x78\xfc\x6b\x75\x2f\x02\xf9\x6c\xf7\x6a\x77\xcf\xf7\xf9\xfe\xca\xdb\xd4\xf4\x16\xa9\x6f\x5b\xd2\x74\x40\x95\xaa\xa7\xbf\xd0\x3b\x37\xe1\xf7\xb3\x38\x41\x1d\xda\xb6\x67\x71\x82\xda\x93\xdb\x6d\xb5\xab\xdb\x64\x05\x42\xe3\x27\xf5\xef\xaf\x52\x0c\x8f\xb4\x4e\xbd\xa9\xc0\x93\xe6\xf7\x57\x9d\x22\x30\x0f\xe8\x60\xce\xfe\xfe\x58\x13\xce\x7e\x7f\x01\x20\x0f\x4f\xf0\xfa\xfe\xca\xd5\x1b\xb8\x28\x65\x6b\xd9\xcf\x9f\xef\xaf\x12\x46\x80\x45\x2a\x4b\x15\x49\x7f\x16\xcd\x6f\xe1\x05\x2e\x92\x9f\x52\x33\x84\x17\x31\x2d\x43\x24\xef\xc9\x15\x84\xda\x1d\x2e\x09\x70\x66\x4d\x60\xf1\xb7\x1a\x4d\x0b\xca\x7d\xb1\xac\xe2\x01\xc1\x25\x86\x9f\xcf\xef\xaf\x32\xab\xfb\xdb\xbf\xbf\x5a\xd9\xb4\xe3\x8b\x1e\x97\x32\x3d\x9f\x25\x53\x6c\x9b\xfb\xbb\xd6\xf3\xe4\xef\x97\x70\x93\x5e\xf3\x07\xa5\x18\x9a\xff\x62\xb8\x79\x9b\x02\x50\xc1\xe9\x36\x42\x96\x0c\xda\xa1\xf1\x4b\x41\x7f\x7e\xbf\x82\x07\xfa\x79\x03\x46\x69\x3d\x8b\x07\xb4\xfc\xea\x7f\xad\xbf\x84\x9f\x0f\x50\x3d\x8f\x37\x17\x7c\x0c\x8f\xb2\xd6\x1f\xde\xa0\x25\x01\xb4\xd8\xb4\x41\xe5\x5c\xf0\x32\x02\x80\xab\xbc\x4e\x44\xb9\x21\x90\x1a\xa3\x96\xf0\x53\xaa\xf8\xf2\xb3\xa8\x5f\x6d\x06\x58\x85\xac\xe4\x23\xbe\xc8\x61\xe9\x06\x78\x2d\xe0\x3c\xea\xaf\x82\xfa\x19\xe5\x6b\x83\x0c\xef\xe7\xb1\x10\x46\xcc\xf9\xa9\xeb\x04\xe4\xfa\x2b\xf6\xf2\x2c\xa6\x58\x8b\x8f\x47\x9d\x68\x7b\xf2\x8b\xa0\x8d\xea\xc9\x2e\xec\x48\x59\xd0\x5a\x5c\xb4\xb6\xe2\xc9\x5c\xe0\x7c\xee\x6f\x61\x47\x33\x36\xd4\x07\x93\xd5\xfb\x0d\xa2\xa0\x58\xc7\xb3\x04\xc9\xdc\xdd\xdf\x62\xcb\xa5\x8a\xc5\x3f\x6d\x9d\x8e\xcd\xc0\x6a\x75\x3d\x37\xbd\x69\xeb\x74\x6c\xcd\xfd\xe1\x74\x24\x3f\xe7\x75\xc9\xdf\x0f\xd0\x17\xbf\xbf\xb0\xe3\x85\xbd\x6d\x91\xc7\x2d\xb9\x7d\x7c\x7f\xd5\xf7\x7c\x17\x9f\x99\xc6\xc6\x25\x30\x96\xec\xcd\x6d\x8b\x3e\x6e\xd5\xe3\x3f\x0b\xbe\xa6\x67\x10\x33\x86\xb1\x7f\xc9\x19\xa5\x9b\x1c\x05\x4f\x87\xc6\x8b\xb5\xfe\x62\x7a\x1b\x8b\x3e\xe6\xd0\x7e\x44\x5b\xe4\xc7\xfb\x19\xf1\xfd\xd5\xd3\x6b\xbc\xfe\xfd\xd5\xb7\xcd\xfd\x0f\xf0\x62\x1f\xb7\x00\xef\x76\x7f\x5c\xbf\xe6\xbf\x6e\x36\x79\xbc\xbe\x5f\xeb\x1f\xaf\xf1\x2e\xec\x9f\xf0\x27\xee\xb5\x3f\x26\x97\xf1\x80\xba\xe8\xfb\x4e\xf2\xa8\xe1\x7b\x82\x40\x2d\xd9\xe1\xe9\x0b\x00\x96\xcb\x9e\x5e\x00\x50\x01\xa0\xaf\xd3\xd1\x8a\xdb\x8b\x41\xbc\xf8\x5b\x8f\x35\x21\xf1\xf0\xa7\x2f\x00\x94\xe9\xf7\xc7\xf7\x57\xcf\x66\xd0\x7d\x91\xc7\x6e\x04\xea\xfb\x62\xc0\xaf\xf1\x17\x02\x14\x6f\x70\x5f\x00\xa8\xd3\xfd\x43\xe8\x34\x42\xf6\x1b\x1b\x20\x84\xeb\x0f\x9e\xab\xbf\x25\xfd\x44\x98\x1c\x2d\xe1\xa7\x64\x89\x29\xcf\x58\xeb\xcf\x5e\xef\x28\x20\xf7\x82\xcf\x92\x8d\x6a\x93\xe8\xf9\x0c\x28\x08\xcc\xff\xc6\xa2\x0e\xbe\xb1\x3c\x63\x91\xc7\x17\xbb\x58\xa2\x54\x6d\xe6\xff\x63\x2e\xf8\x48\xa2\x79\xc6\x42\x80\xe2\x03\x3d\x20\x26\xbe\x4e\xf0\x92\xb4\xba\x25\xe5\x67\x5c\xa0\x87\x5e\x00\x4e\x40\x73\x7b\x61\xc0\xf4\x09\x9e\x94\x90\xb4\xc0\x09\x91\x76\x1a\xc5\xd6\x25\x68\x6c\x86\xd0\xa4\x14\xa6\x19\xcd\x05\x81\x17\x83\x59\xb2\x79\x1a\xd9\x03\x40\x42\xf2\x91\x5a\x92\x60\xaf\xd5\xcf\x17\x06\x34\x33\xb8\x09\x9d\x89\x31\x6a\x42\x42\xb0\x08\x36\x17\x06\x48\x8d\x90\x9f\xb9\x48\xa0\xf4\x08\xf9\x99\x60\x90\x66\x40\x73\x61\xc0\xd8\x3c\x3f\x00\xc0\x18\x09\x91\x3e\xfb\x08\x41\xa6\x9f\xdd\x32\xd2\xbe\x64\xc4\x64\x88\xee\x0b\x05\xb2\x84\xf1\x07\x2a\xa2\x39\x8d\xf3\x50\x12\x35\x0b\x95\x7b\x80\x83\xb8\x83\x05\x81\x6e\x1c\xd9\xc7\xf7\xd7\x28\x16\xd2\xf6\x09\x22\x29\x88\x40\x32\x6e\xd5\xfd\x1d\x0b\x62\xb5\xfd\x8a\xc3\xac\x3b\x73\x2d\x5e\xfe\xbe\x28\xc4\xf6\xee\x7d\x31\xd0\x30\xc9\xdf\x97\x08\xf9\xe2\x87\xd0\x59\x75\x63\xe8\x91\xbe\xbf\xc6\x8b\xa5\xac\x4b\x4f\xce\xaf\x36\xc0\x63\x92\x7d\xd4\xef\xaf\xf1\x22\xf1\x47\xfb\xfe\xea\xd3\xe3\x1d\x8b\x44\x4e\xb3\xb4\xa3\x83\x64\x69\xb5\xc7\x00\x0b\xd2\x7e\x1f\x10\xa0\x2c\x21\x1e\xfb\x82\xde\x26\xe8\x1e\x50\x21\xbc\xfa\x3b\x71\xb1\x72\xfb\xfa\xfe\xea\x2f\x09\xf0\x00\x7e\xf8\xc4\xad\xdb\x62\x7b\xb1\x9c\x73\xc3\x95\x40\xdf\x9f\x38\x20\xa6\x58\xe7\x3a\x1f\xdd\x14\xe3\x2c\x6b\x3e\x16\xf0\xce\xba\x24\x7a\xb3\x88\x73\x61\xc7\x8b\x02\xac\x6b\xe1\x28\xd2\xb6\x3c\xeb\x5e\x98\xdf\xe3\xad\xcb\x56\x1a\xe6\x09\xe7\x02\x40\xb5\x04\xb4\x2e\x3d\x69\x9a\xe6\x9f\x54\xa4\x79\x42\xe7\xf7\xd7\xec\xa6\x10\x27\xef\xe5\x5e\xe0\x0d\x80\xf9\x7d\x08\x50\x3e\x40\x17\x65\x04\x7d\x7f\x2d\x04\x28\x26\xb9\x57\x5e\x00\x34\x42\x5d\x0b\x00\x59\xd7\xc7\xe7\xaa\x6b\x83\x0d\xe0\x6b\xb1\x88\xf1\xa1\x48\x65\x83\x12\xe7\x83\xa0\x65\xe3\x15\xab\xaa\x89\x1b\xc6\x96\xfd\x03\x4e\x8f\xdf\x4f\xd0\x1c\x7c\xf0\xaf\x40\x99\x95\xdc\x84\x7c\xb8\x6d\xcd\x3f\x3c\x54\x22\xf5\xcf\x0f\x13\x02\x5e\xf9\xdc\xbd\x97\x78\x83\x1f\x3e\x5b\x5c\xb6\x19\xfc\x41\x73\x78\x70\x79\x15\x0c\xca\xf6\x0c\xfe\xa0\x4f\x9e\xc9\x1f\xb4\xca\x67\xe7\x0f\x9a\xf7\x73\x58\x6d\x56\xa0\x2a\x4d\x9b\xd0\xae\xa4\x0c\x46\xf9\x99\x64\x2e\x3f\xba\x2a\xfd\xb0\x03\x6a\xdb\x07\xef\x4b\xd9\xf9\xc6\x87\xd7\x97\x72\x56\xfe\x30\xf4\x03\x41\xf1\xd9\xf9\x52\xae\xc6\x4e\x3f\xb3\xae\x95\x97\xf2\x0f\xbb\x2a\xb5\x93\xd8\x7f\x90\xa7\xb4\xc9\x4b\xb9\xa0\x17\xdb\xcf\x0f\x9f\x4e\x23\xf1\x0e\xfe\xd1\x12\x95\x99\xa8\x2d\xf8\xc8\x38\x65\x06\x3f\x11\x7c\xe7\xf9\xf0\x87\xcf\x0e\xcc\x6b\xe3\x0f\xea\xe3\xfa\x79\xe3\x07\x29\xcb\xfe\x33\xb1\xcf\x45\xbb\x1c\x95\x9d\x7e\x34\xe4\xe5\xfc\x19\xe5\x83\xb7\xe5\xbc\xd9\xe9\x47\x78\xac\x5b\x0b\xfe\xf0\x33\x4a\x4d\x8d\xa3\x7c\xc4\xbb\x5a\x0a\xe1\xf1\x51\xf8\xd4\x42\x0d\xe4\xf6\x91\x8f\x6a\x39\xa8\x2c\xf9\xb0\xc7\x5a\xae\x8b\x3f\x7c\xfa\xa8\x17\x47\xf9\xe0\x4a\x8d\xca\x3e\x3e\xb8\x52\x23\xd8\xc7\x07\x57\x6a\xcf\x5c\xdc\xe7\xc8\xd7\x9e\x27\x7f\x68\x9f\x1f\xfa\x4f\x1f\x9f\x61\xfb\xe0\xb0\x1f\xa6\x52\xe7\xcf\x56\x7e\x30\xac\xce\x8e\x7d\x91\x4e\xb9\xce\x7e\xf1\x87\xcf\xb0\x13\x7a\x9e\xb1\x7d\x48\x51\x9d\xf3\xe0\x1b\xea\x74\x3e\xfc\xe1\x33\xec\x3c\x82\x3f\xcc\x5f\xf0\xa2\x3a\x8f\xce\xb7\x3f\x00\x3f\x3b\x7f\xf8\xc8\xef\xf5\xdc\x33\x7f\xe8\xfa\xa1\xf0\x87\x0f\xb0\x2e\x6a\x85\xd2\x47\xbe\xa8\xf7\xbf\x54\xf1\xd4\x7b\x4b\x20\x6f\x55\xed\x0c\x24\xef\x7e\x01\x77\x98\x0f\x43\xab\xf7\x22\x28\xa5\x7f\xe8\x55\xbd\xb7\x25\x92\xd5\x0f\xfe\xd6\x7b\x5b\xf4\x36\x0f\xb7\x21\x92\x7d\x18\x58\xbd\xb7\x75\x27\x1b\xc3\xdf\x43\x20\x99\x7e\x7e\x41\xc5\xe0\x09\xdd\xe0\xc8\x6e\x3f\x9c\xa0\x3e\x48\x1b\x3a\xd0\x80\x54\x25\xfb\x83\xf4\xb3\x22\x8d\x08\xad\x4d\x7c\x58\x6c\xbd\xd3\xba\x95\x49\x9d\x5c\x6f\x6a\x6d\x36\xb7\x03\x52\xbf\x40\x98\x3a\x3b\xf4\x88\x8b\xe7\x4a\xcf\x59\xef\xb4\x24\x12\x5d\x3b\xeb\x9d\x20\x95\x37\xcf\xf8\x80\x8a\xd9\x13\x3a\xa1\xce\xf6\xfb\x4b\x26\x6b\x9b\xfb\xbf\x31\x21\x4d\x18\x5a\x98\xe6\x05\x64\x12\xb7\xa1\x3d\xcb\xb8\x66\x84\x06\xcc\x6b\x45\x9b\xf7\x84\x56\x86\x6d\xb8\x07\xdc\xc2\x75\x82\xee\x3c\xde\x8a\xbf\x7a\x67\xda\x57\x86\x5f\xd8\x21\xe6\xf8\x05\xde\x34\x05\x82\x7c\xe2\x66\xea\x11\xaf\x25\xb8\x7f\xc8\x5e\xbd\x61\xd8\x08\xa3\xe1\x0f\xc1\x36\x5a\x40\xd1\x52\xb2\x3f\xf8\x59\xa3\x7a\x2c\x58\xa3\xa7\x5c\x48\x9d\x87\xbf\x88\xb7\xb2\xb2\xde\x85\xdb\x26\xca\x72\x97\xb5\x6d\x62\x1a\xf5\x2e\x50\x8b\x1b\xac\x65\x61\x6e\x0f\x77\x78\xe0\xb2\xe6\x19\x90\x09\x89\x10\xdd\xe5\x82\x24\xeb\x0f\xd6\xe1\x2b\xc9\x33\x78\xde\xea\xd2\x7a\xd7\x75\x5a\x87\x81\x50\xc9\x82\x44\xb7\xee\xca\xeb\x91\x66\x5c\xb9\x6f\x3e\x2c\x8b\x6c\xd5\x9e\x34\x83\xba\x98\x47\xaf\xee\x60\x2e\xe9\xd2\x67\xa1\xee\xec\x40\x6b\xae\x58\x93\xc9\xc3\xa2\xb6\x65\x24\x3f\x5f\xfb\x56\x8d\xca\x8b\x6f\xa4\x19\x6e\x3f\xb8\x91\x0b\x66\x6d\xc3\x05\x53\xdf\x37\xee\xab\x81\x06\x15\xc9\x56\xb4\xe6\xb6\x60\x30\xc3\x1d\xe0\x30\x56\x2d\xb9\x71\x5b\x45\x98\xef\xc5\x86\xd2\xf0\xae\x35\x5a\x02\x37\x7f\x31\xd6\x0d\xc5\x53\x6c\xf3\xad\x94\xae\x77\x83\x92\xd8\x4b\x6e\x20\xec\xd3\x33\xba\xd7\x0c\x8d\x47\x50\x82\xa4\xa6\x19\xc6\xb6\x40\x64\xb4\x80\x12\x64\x1a\x44\x01\x72\xe1\xd3\x1e\x13\xe3\xa9\xdd\x17\x88\xba\xd1\xac\x2f\x7e\x16\xa6\x1e\xd0\x21\x6c\xc9\xf4\x66\x31\xef\x92\x43\x20\x5c\x97\xf4\x92\xdc\xc1\xba\x74\x8f\xec\x0e\xd6\x25\x3a\xb7\x21\x80\x0c\x42\xa8\xe4\xdf\x70\x1d\x58\x2b\x6a\x31\xf5\x5b\x57\xec\xda\xc4\xc3\xee\xb1\xb3\x37\x0f\x7f\x80\x3c\x6a\x43\xc6\xf9\xd6\xf1\xd7\x7b\xf1\xda\x1a\x46\x6a\x5c\xb1\xb3\x4f\xfa\xba\x62\xe7\x6a\x06\x31\x37\x0e\x20\x80\xae\x3b\x76\x2d\xa1\x19\xc1\xce\x38\x4d\x7e\x27\xac\x10\x59\x1d\x2e\x09\xb5\x8c\xec\xe7\x38\x45\xde\xb0\x49\xe2\xa6\x0d\x87\x39\x6c\x4b\x46\xa9\x75\x87\xae\x9b\x01\xb8\x18\x7b\x99\xde\xd1\x25\xd5\x8d\x30\x86\x4c\x9c\xeb\x2c\x88\xac\x3b\xb2\xad\x1a\xf5\xde\xa1\x26\x33\x83\x01\xdb\x96\x04\x5d\x6f\x0a\xa7\x2f\xa4\x5f\x77\xe4\x9c\x4c\xeb\x60\xa1\x1b\xa6\xbe\xeb\x8a\x5c\x93\xcf\x04\xdc\x2a\xb2\xb7\x00\x7e\x15\xb3\x7a\x42\x13\x7a\x51\x4f\x80\x7b\xf8\xfa\x01\x2b\x2c\x9e\x00\x04\x26\x9f\xa1\x75\x0d\x2e\x61\x10\x42\xac\x68\x16\x0a\xd6\xad\xb6\xbc\x38\xdc\x41\xc3\x88\xde\x3f\x2a\x07\xd4\x92\x0f\xdc\x6a\x2c\x65\x1c\xfb\xdb\xf0\x53\x61\xab\xaa\xdd\x20\x3c\x70\x08\xa7\x56\x74\x42\x13\x67\x2c\x3d\xa1\x88\xf2\x16\x9e\xb0\x54\x79\x82\x27\x70\xc4\x67\xe8\x84\xa5\xc6\x64\x08\xd7\xcc\x6c\xa9\x66\x5d\x33\x8b\x04\xf9\x7a\xc3\xfc\xf8\x3a\x15\x27\x3c\x57\x5e\x54\xe1\xc4\x29\xf7\x8a\x69\x5b\xab\xee\x00\xc2\xa1\x91\xfa\x3c\xd9\x81\x7f\x80\x2e\xf6\x35\x83\x1b\x42\x82\x40\x7a\x91\x4c\xe8\xf9\x45\x32\xd1\xfc\xc3\xc2\xa2\x97\x14\xb2\x2e\x92\x35\x3c\xc3\x75\x7d\x29\xd5\x74\x68\x49\xda\xa5\x19\x24\xd7\xe2\x25\xd5\xc7\xec\x82\x29\xc2\x64\xe6\x5a\x82\xdd\x30\xc3\xbd\x60\x5c\xab\xee\x0f\x52\x4a\xf7\xf3\x07\x64\x4a\xfd\xdd\x3c\xd7\x1e\xe0\x86\x75\xd1\x38\x70\x73\x45\xe6\x87\x77\x81\x7a\x5e\x48\x73\xaf\x63\x11\x26\x8c\x77\x03\x65\x17\x04\x6e\x1c\x6c\x0b\x21\x37\x0f\x76\xf8\x03\x08\x62\x9e\xe2\x0d\x2c\xd3\x15\xe7\xbe\x17\xda\x77\xa3\xfd\x03\x61\xd9\x94\xe5\x49\xec\x50\xbb\xfc\x2c\x34\x7b\xc1\xf0\x01\x9a\x59\x36\x7d\x88\xf7\xc6\xc3\x07\xb2\x65\x77\x07\x8b\x56\xbf\x60\x82\xab\x72\xf2\x26\xad\x6b\x6f\xc9\x3e\xa8\xbc\xf8\xbe\x96\xf0\x5c\x54\x41\xab\x7d\xf3\x05\xad\xf9\x01\x87\xfe\xe8\xe7\x2a\x6c\xbc\xeb\x85\xd0\x0f\x09\x46\x8a\x4d\x6d\x60\xb2\x84\x49\xd8\x5c\x6b\xd2\x1a\x61\x54\x2d\x32\x02\x54\x18\x55\x6d\x44\xae\x30\xaa\xa6\x45\x1d\x7f\xc1\x6d\x60\x71\x4d\x21\x5a\x0c\x8b\x6b\xd5\x25\xbc\xc2\x40\x5a\x9b\x00\x0e\x03\x69\xcd\x3a\x15\x30\x90\xfa\xc2\x5d\x61\x20\xcd\x5b\xf1\xf7\xdc\xe1\xa6\xf6\x0d\x41\x57\x8b\x85\x01\xf4\xf5\x1c\xbe\x22\x45\xf0\x7f\xe8\xf4\x62\xc2\x03\x0b\x68\xb5\xe0\xfb\x50\xf6\x4e\x3a\x16\xb0\x80\x96\x62\xf0\x40\xf6\x96\x4a\xbf\xc2\x02\x9a\xa5\x42\xaf\xb0\x80\xd6\xae\x63\x0b\x0b\x67\x31\x0a\xc1\xc2\x59\xfb\xf0\x04\x16\x78\x4d\xba\x61\xb1\x4c\x96\xd8\x1e\x4a\xd2\xd2\x38\x57\x98\x2c\x6b\x9f\xfe\xa0\xf0\x05\xff\x40\x24\xd5\x8c\x29\x49\x67\x6f\x4a\xc1\x94\x37\x0f\xd1\xf9\x82\xe6\x04\x49\xba\xe8\x9c\xc1\x6a\xb9\x5e\x10\x50\x20\x4a\xfb\x86\x03\xb3\xe5\x7a\xc1\x5f\x9c\x78\xc1\xed\x0b\x93\xd6\x14\x60\x66\xac\x86\x12\x24\xe1\x9a\xb5\xc8\x25\xa7\x96\x6e\xa8\x42\x4e\xad\xa2\xae\xb0\xe4\xd5\x90\x14\x03\x4b\x5e\x35\x0b\x87\x25\xaf\x66\xef\x52\x03\x2d\x92\x5e\xb6\xd2\x94\x17\xd5\x2f\x00\x68\xd9\x33\x80\xa0\x3a\x25\x56\xc2\x96\xb7\x5e\xd0\x94\x1b\x36\xda\xa8\x07\x63\xde\xa8\x42\x55\xc8\xa9\xd9\x98\xd6\x76\x6c\xbc\xa0\xde\x0e\xf8\x56\xba\xcd\x8b\xb3\x40\xd4\x00\xb2\xe1\xfe\x40\x8f\x25\x34\xd0\x98\xd7\xbd\xe4\x25\xc7\xe6\x61\x90\x05\x34\xd1\x92\x52\x68\xac\x93\xaf\x42\x85\xb1\xae\xca\xb8\x5a\x61\xac\x5b\x0b\xd4\x00\x41\x4c\x16\x04\x82\xde\x9d\x06\xc9\x92\x84\xf3\x34\x65\x09\x5a\xa3\x3c\x22\x98\xbc\x21\xb6\x24\xe5\x69\xc2\x02\x25\x96\xb5\x1f\x30\xa6\xd5\xee\x93\xd7\x89\xb7\x3e\x7a\x1d\x37\x40\x43\x14\xd6\xb0\xe1\x93\xd1\x4f\xb4\xfd\xfe\xc5\x0e\x04\xe2\x0e\x10\x4a\xce\x82\x39\xac\x54\x53\x27\x98\xb7\x64\x9a\xa8\x3f\xe6\x2d\x89\xc6\x30\x6f\xa5\xcd\xe4\x1b\xf6\xad\x91\x0c\x53\x8a\xe6\x16\x13\x60\xe0\x4a\xd9\xa7\x1d\xd2\x77\xd7\x85\xef\xa1\xf4\x9d\xab\x5f\x38\x60\x51\xf4\x0b\x27\x5f\x10\x54\x96\xf8\x5d\x6a\xf6\x1c\x6f\xbe\xa0\x5d\x19\xc0\x0b\x83\x99\xf2\x77\x16\x63\x87\x8d\xab\xca\xc4\x51\x69\xc2\x1a\x3e\xdc\xf3\x67\x95\x02\xd3\x0c\x5c\x48\xfc\x41\x87\x4d\x4b\x70\x9f\xb0\xca\x79\xe3\x26\xe7\x2c\x51\x05\x46\xa9\x2a\x3f\xe2\x0a\xa3\x53\x19\xee\x10\x6a\xae\x30\xbd\xd9\x79\x18\xdb\x6f\xbc\x08\x2a\x0d\x4e\xc9\xbb\x06\x69\xba\x1a\x4d\x20\x4d\x27\xa3\xe5\x0e\xf5\x8e\x37\x11\xd2\xb4\xef\xc4\x30\x38\xd5\x61\x7a\xba\x93\xb8\x49\xd9\x41\xa3\xd2\x30\xb9\xdc\x89\x67\x21\x80\x2c\x71\xba\x0c\xe3\xcd\xbe\x68\xfc\x94\x68\x07\x23\x50\x49\x4d\xeb\x3d\xc0\x03\x8c\xc8\x4b\xda\x9d\xbe\x1f\xc0\xa8\x92\x8a\x24\x2b\x18\x55\x92\x6f\x84\x30\xaa\xd4\x61\x3c\x86\xb0\x2a\xbf\x8a\x0a\x1b\x47\x1d\xaf\x36\x44\x39\xc9\xa6\xb0\x71\xe4\xe6\x73\xb2\x64\xd3\x3a\xcc\x41\x96\x28\x59\x9a\x0f\x22\x44\xc9\x30\xe9\xbb\xc8\x1f\x4c\x8b\x2e\x82\xd0\x6d\x82\xf0\xf5\x05\x40\x28\x61\xf2\xb9\x00\x42\xa3\x3d\x84\x4f\x2b\xb0\x9e\x25\x7c\xd6\x21\xe1\xf5\x59\xc2\xe7\x08\xa9\x66\x9e\x1b\x97\x76\x43\x8c\xb2\x67\xf6\xa6\xdf\xb8\xc1\x24\x4d\xe0\x0e\xcc\x50\x5b\x70\xf3\xe4\x7a\x44\x08\x9f\xc3\x1c\x66\x09\x9f\xb9\xf9\x14\xdd\x5c\xa2\x60\x76\x5f\x0b\x0b\x0d\xe3\x1b\x96\x67\x83\x00\x6e\x97\xdd\x7b\xfc\xf0\x58\x1a\x6d\x97\x30\x9a\x8b\xf4\x5b\xcf\xf3\xb3\x04\xed\xea\xc3\x25\xf8\x03\xcc\xd0\x4c\xf8\xc1\x2e\x14\xe3\xe5\xb3\x7f\x7f\xcd\xe6\xef\x81\x05\xaf\x01\x1e\xbe\xff\xd3\x61\x43\xcc\x80\x6d\xdf\x0d\xc6\xa7\x91\x3f\x03\xb4\x6d\x83\x6d\xba\xfb\x39\x88\x57\xf9\x70\xf9\xb6\x6d\xc7\xf7\x57\x9f\xe1\x17\xb0\xcb\xd9\x1d\x60\x97\x9b\xdf\xbf\xd9\x41\xe8\x07\x6e\xf3\xfc\xb4\xe9\xab\x2d\xe3\x70\xdb\x12\xac\x6f\xaf\x17\xe8\xa0\xaa\x11\x12\xad\x69\x49\x53\x48\xeb\x8e\x51\x8a\xdb\xeb\xf0\xcb\x25\xa7\x6d\xd0\xed\xce\x70\x1b\xd2\xf1\x87\x60\xb7\x0d\xba\xdd\x4d\xdb\xd2\xb6\xc4\x35\xf9\x05\x1a\xd4\xd4\xce\x9c\x72\xd6\x22\x21\x72\x8a\x8b\x35\xb8\x88\xd7\xf1\x7a\x1e\x98\xe1\xa6\x76\x67\x07\x5a\x23\x94\xb7\xf2\x79\x68\x5b\x9e\x00\x92\x3b\x80\x97\xd4\xf0\x00\x07\xc8\xb5\x60\x92\x79\xd6\x04\x02\xe8\x6e\x65\xf1\x6c\x5b\x26\x5e\x68\x02\x4b\xb8\xab\xf2\x92\x6c\xf4\x4a\xdf\x4a\xf5\x0f\x74\xbb\xd2\x80\x85\x87\xb7\xfa\x07\x68\xb4\x8c\x07\x15\x98\x9b\xdd\xe6\xad\x48\x33\x84\x1f\xd8\x30\x08\xea\xfc\xfe\x1a\x6d\x6a\xc5\x95\x2b\x70\x9b\x03\x36\x0d\x58\xb1\x04\x4f\x19\x8e\x5e\x9b\x97\xdc\x08\x73\x81\x14\xb2\x98\x62\x15\xda\xd6\xb8\xc4\xf8\x8d\x4a\xad\x6d\x4b\x52\x2b\xe1\xe5\x05\x18\x50\x68\x36\x81\xe9\x1a\x3e\x4b\xb0\xe9\xba\x12\xb4\x6d\x09\x36\x63\x18\x65\xe0\x25\x34\x0d\xdf\xbe\xc8\xad\xae\x14\x6d\xa3\x9c\xf3\x7a\x9f\x1b\xa6\x43\x01\xaf\x9e\x6c\x04\x81\x4f\x73\xad\x7a\x1f\x62\x4b\x4f\x9a\x0f\x1c\x98\x5b\x11\x02\x0d\xf2\x2f\xf5\x07\x7e\xaf\x70\x8b\xb6\x81\xdf\x6f\xd5\x84\x62\x8e\xef\xaf\x21\x1b\x51\xdb\xe8\xb4\xe2\xfd\xdf\xc1\xbf\x7c\xce\x77\x5e\xfc\xb5\x40\xf2\xf7\xea\x0d\xdd\xb1\x3f\x3e\xc6\x7b\xf0\x05\x8d\xb8\xc3\xb1\xd8\x53\x86\x46\xec\x45\x17\x76\x9c\x89\xe2\x0e\x4f\x70\x4c\xcd\x70\xb1\xe8\xd1\x9b\x30\xec\x58\x33\xec\x9a\xf0\x51\xbe\xbf\xfa\x0b\x01\xe1\xb5\x31\xbd\xe0\x03\x3b\x66\x08\x1e\x9c\x9f\x31\xf8\xe8\x0b\x22\x5d\x2b\x3c\xc0\x1d\x8a\x3b\x80\x5f\x6b\xf2\x00\xf7\x7a\xdf\xdf\xc3\x8d\x62\x1a\x20\x8b\xa3\x8f\xe4\x33\x7a\xae\x13\x31\x7d\x46\xc1\xc1\xa7\x01\x46\x2f\x85\xea\x2d\x80\x9b\x42\x35\x91\xb8\x56\x87\xc5\x38\x75\x81\xff\x99\x2e\x5e\xf0\xb2\xe9\xee\xf0\xc6\x11\xd4\x02\x6e\x4c\xc8\xbc\x81\xfc\xd3\xe3\xdd\xf0\x7c\xde\x84\x73\x8b\x7d\x8e\xe9\xf1\x6f\x9c\x09\xe3\xf8\x4d\x6d\x93\x16\x04\x76\x39\x8c\xb3\x8b\xd9\x95\xe6\x0d\xa5\xe6\x45\x7e\x1f\x6d\x7b\x70\xe8\xba\x3a\x58\xdc\x6f\x6c\xaf\xe7\x3b\x3f\x10\x16\x43\xf5\xb2\x89\x9b\x25\x70\xbb\x2e\x90\x22\x3e\x2b\x6d\xb5\xfb\x05\xee\x49\x52\xbb\xf0\x85\xa6\x1f\xe0\xdb\x23\x56\x90\x7e\x7c\x37\x3e\x77\xfd\x96\x36\x02\x79\xaa\x0d\x2c\xae\x1e\x61\x01\x29\x85\xdb\x58\xc3\xf0\x94\xb8\x86\xcf\x1d\xb1\xa5\x0d\x94\xa0\x6a\x06\x09\x1c\x5b\x74\x2e\x25\xae\x41\xbc\x20\x2d\xfe\x58\xb2\x47\x20\x7f\xac\xe2\x6f\x29\x01\xd3\x93\x3f\x68\x68\x6b\x0a\x8b\x5f\xce\xd1\x34\x83\xc5\xee\xba\x6e\x17\x2d\x91\xdd\xd5\xa9\x0e\x16\xbb\xcb\x4d\x88\x90\x16\x77\x1a\x72\x69\x6c\xa9\xc0\x5f\x46\xc4\x26\x95\x8e\x01\x35\xc3\xc5\x7d\xc6\x14\x87\x4f\x8b\xfb\x8c\x99\xfc\xfe\x89\xb6\xfb\x7b\xde\x21\x05\x2d\x55\x9a\x8f\xf5\x7e\xa5\xb5\x41\x20\x43\xfc\xc7\xd6\x74\xd4\x12\x98\x53\x11\x75\x45\xac\x5d\x95\x67\x49\x4b\xf0\x78\x96\x6c\xdb\x52\xc5\xf5\xa2\x7b\xc0\xce\x0e\x3d\xe2\x80\x62\xd5\x1d\x4e\xf8\x90\xbb\xc3\x9d\x1f\xfc\xe6\x76\xd3\x52\x5d\x17\xc2\xf2\x5a\xdf\xc9\xaf\x3d\x1f\x38\xbd\x8a\x97\x25\x98\xe8\x9a\x01\xde\x16\xc0\x4d\xcd\x53\x03\x0a\x34\xa3\x2d\x4c\x74\x92\x4c\x5b\x22\xb3\x0c\x01\x08\x5e\xcc\x43\xec\x2e\x2d\xe6\x99\x14\x31\xd3\x12\x99\x67\xf3\x96\x36\x58\x8c\x44\xdc\x52\xc0\xad\xa1\x69\x06\x70\x13\x56\xd4\x47\x4b\x81\x28\x91\x4d\x03\xc6\x3a\x06\x39\xfb\x7d\x02\x4c\xd4\x14\x11\x8e\xd3\x48\x1e\xf0\x71\x9b\xfe\x7e\x41\x44\x3e\xea\x2d\x05\xaf\x3f\x9e\xcf\xc3\xfe\xb4\x02\x98\xf0\x4c\xbd\x53\x67\x60\x93\x20\x44\x13\x5e\xf3\x41\xee\xf0\xb2\xaa\xfe\xa0\xc2\xad\x54\x2b\x82\xea\xc2\xe4\x3b\x75\x98\x1f\x4c\x39\xe0\xf9\x61\x29\x35\x75\x44\x87\xf9\x9c\xf7\xc5\xce\xc2\xe7\xbc\x13\x02\xd5\x03\x1c\x50\xad\x78\x42\xe7\xa2\x86\x86\x50\x87\x96\xc0\x1d\x0c\xc6\x41\x08\x24\x03\x37\x3c\x71\xf0\x34\xf2\x3b\xd2\xa6\x25\x38\xf2\x0e\x4f\x08\x7a\x8c\x2e\xf2\x9c\x06\xbc\x42\xbc\xc5\x50\x53\x24\x63\x29\x8c\x84\xc5\x94\x6c\x66\x18\xb2\x05\x10\xd8\xf0\xba\x01\x36\xe3\x1d\xd9\xd3\xd2\x84\x03\x83\xe7\x37\x07\x6f\x0e\x9a\xe0\x84\x1f\x64\x68\x82\x93\x10\x6a\x5a\x21\xbc\x77\x4a\xf5\x0b\xf0\x95\x97\x1c\x9f\x18\xcb\xe6\x15\xd1\x81\xac\x85\xa6\x04\xc7\x57\x29\x29\x5a\xa2\x55\xaf\xe9\xaa\x90\x96\x14\x53\xa5\x19\x6e\x89\x42\x8c\x58\x6c\xda\x8f\x77\x74\x52\x4b\x3b\xdd\x42\xdc\x21\x14\xeb\x26\x24\x70\x35\x4d\x9e\xe1\x81\x3d\x32\x0c\x11\x5f\x97\x0d\x33\x04\x84\x59\x2c\x4f\x34\xca\x49\xb9\xde\xd2\x92\x5a\x72\x95\xd0\x94\x0e\x98\x19\x9b\x07\x58\x58\xd8\xcc\xe0\xe0\x3b\xda\x5e\x13\x00\xcf\xf6\x39\x3b\x18\x7e\xa5\xf7\x4f\xb8\x94\xf9\xf9\x59\x81\xe5\x7e\x0e\x7e\xd8\x24\x85\xa5\x13\xf1\x10\x26\xb5\x27\xf8\xa1\x99\x11\xad\x70\xcd\x20\x3b\x71\xe9\x0e\x8f\xc0\x5d\x36\x4c\x10\x37\x58\x4d\xfc\xce\x13\xaa\x6d\x77\x70\xc1\xbd\x55\x58\x40\x27\xc0\xf6\x5a\xc3\x83\x6b\xbb\x46\xa0\x20\xd5\xbc\xa8\x0b\xee\x47\xa6\x7e\x17\x14\x74\x66\x80\x17\xe9\xb1\x51\x1f\x2e\x70\x2f\x8e\x7a\x6f\xef\xa0\xb4\x96\x6e\x04\x19\x18\x0d\x6e\xc6\xd8\x0b\x6d\x60\xc4\x1a\x66\xd9\x37\x06\x08\x53\xa3\x25\x3a\x95\xcd\x67\xfd\xbe\xf9\x82\xbf\x58\x6b\x2a\x86\xda\x83\x19\xa4\xf8\x15\xbf\x79\x96\xe0\x98\xcc\x3e\xa8\x86\x88\x4d\xf3\x7d\x20\xcc\x9b\x9d\x51\x32\x0b\x93\xef\xa7\xbd\xa3\xee\x5a\x7a\x02\x0c\xd5\xd3\xe9\xfc\xc0\x2f\xe0\x4e\x6e\xc4\x5e\xa2\xdc\xeb\x68\x43\x92\x2b\xaf\xd7\xd7\x0e\x6c\x3e\xa8\xcf\x89\xf1\xb4\x23\x30\xa1\xc9\xb0\xd9\xd2\xf3\x03\x1f\xbf\x80\x30\x18\xed\x48\x86\x09\xcd\x17\xde\x0c\x49\xd0\x22\x4d\x66\x98\xe4\x47\xb3\xdf\x32\x5c\xe8\xa4\xb3\x6d\x19\x4e\xba\xd1\xfc\x7d\x87\x7a\x6d\xaa\x0d\x3b\xe6\xab\x0d\x45\x8d\x95\x10\x79\x83\xbe\x4e\x5b\x9e\xb7\x6b\xad\x68\xf3\x00\xd0\x5b\xeb\xf6\x82\xe8\xea\x32\xbd\x00\x68\x41\x14\xf2\xda\x72\x8a\xef\xaf\x68\xc9\xef\xe3\xa0\x8b\x94\x65\xf8\xa4\x86\x0e\x7a\x46\x58\xa2\x0c\xb3\x8d\xe1\xd9\x5d\x72\x6a\xa6\x83\x5b\xf1\x73\xa2\xa4\x64\x10\x06\x70\x17\xa1\x00\x42\xb4\x8b\xd5\x34\x19\x0e\x6c\xd6\xb2\xe4\xbc\x26\x30\x25\x01\x20\x48\x3b\x37\x5d\x67\x18\xa5\xbd\x85\x64\x0c\xc6\x69\xcb\x47\xa6\xe5\xcc\x19\x64\x8f\x00\x6b\x89\xf7\x00\x91\xdc\xd6\x08\x64\x98\xd9\xb6\xd0\x15\x2f\x17\x6e\xba\x46\x28\xd0\xfd\x8b\x10\x20\xba\xbb\x36\x6f\x5a\x81\x63\x7e\x77\x1b\x42\x8b\x61\x5c\x26\x2e\x40\xda\x83\xc2\x40\x73\xbf\x4f\x39\x4e\x2b\xa0\xb7\x59\x18\xa8\xd0\xa2\xc8\xc7\xa2\x65\xba\x6e\x2b\x34\xa1\xe5\x0a\xc1\x4e\xf7\x93\xbc\x24\x59\x7b\xb4\xb6\x5c\x69\xd2\x52\x87\x95\x97\x58\xbf\xbf\x24\x6d\x4b\x35\x79\xc9\xa1\x65\x56\x7f\x0f\xa9\xca\x33\x86\xd6\xa5\x37\xf7\x77\xc1\x01\x40\x2b\x6c\x8c\x1e\x53\x7f\x88\x9e\xf3\x6d\x26\x43\xae\x8c\xd7\x73\xb0\x83\xd7\x04\x1b\xa4\x22\x83\xb8\x41\x7d\xe8\x09\xd0\xb3\x4b\x42\x40\x6e\xd0\x53\x84\xcf\x01\x4d\x62\xe2\xf9\x88\x93\xaf\x5d\x97\x95\x1c\x18\xd1\x33\xa0\x89\x2b\x5e\x1f\x40\x0e\xcb\x6e\x0f\xbe\xe0\x1e\xb0\xab\xc3\x2f\xec\x60\x17\x42\xab\x25\x5a\xf6\x69\xac\x08\x6a\x79\x35\x65\x48\x8e\xdd\x9b\x0a\xc1\x71\x8b\xd0\x94\x3a\x37\x49\x03\x2c\xc9\xb1\xbf\x80\xda\x81\xd7\x22\x76\xb9\x13\x2b\xc4\x64\x73\xa7\xd7\xb6\xa0\x3e\x36\xbe\x20\x44\x86\xa8\xd7\xc3\x6d\x8a\x7a\xea\x60\x94\x75\xe9\x14\x3f\xca\x63\xa1\x49\x32\x75\x5b\xa2\x5f\xd9\x4c\x1c\x06\xa4\xf3\xaa\x19\x8f\x7d\x81\x60\x7a\x02\x07\x27\xf0\x2b\x76\x93\x07\xae\x73\xaf\xde\x2f\x5c\x81\x05\x30\x04\x68\x75\xc3\x6b\x2e\xf6\x24\x17\xfd\x96\x27\xd9\x93\x77\x80\xde\x63\xc6\x42\xc8\x81\xcd\xcb\xa1\x71\x2a\x4c\x2c\x11\x31\x95\x4d\x8c\x27\x3d\x2e\x34\xa3\x89\x2d\x35\xb1\x5d\x82\x63\x4e\x62\x37\x19\xde\x60\xd6\x64\xe4\x25\x37\xb6\x17\xbc\x60\xdc\x6a\xc3\xef\x0f\x88\x81\x6e\x43\xd6\xdf\xdc\xff\x0e\x41\xd5\xdf\xd3\x0d\x5d\xef\xc3\xe7\xbe\x99\xb2\x31\x02\xc9\x28\x0b\xb1\xb0\x7a\xbc\xe3\xc6\x7c\xdc\x86\xd1\x53\x77\x93\x7c\x32\xc0\xc5\x13\x3e\x21\x01\xf8\x50\x9c\x99\x2f\xf8\x07\x78\x26\x49\x00\x41\xf2\x96\x9a\xbd\x47\x14\xe3\xba\x69\x23\xc4\xb8\x6e\x86\x4a\x31\xae\x1b\xe6\x27\xdc\x8d\x4d\x7c\x2f\x06\xee\xab\x03\x08\x61\x9b\x92\xb8\xb4\x7c\x65\x98\x9a\xdd\xc6\xb1\x31\x87\xbb\x02\x1d\x68\x00\xa4\x13\xda\xba\x39\xd2\x35\xc0\x72\xdd\xc1\xc2\xea\x30\x71\xbb\x38\xc5\xec\x29\x1c\xeb\x05\xc9\xb2\x99\x72\x5f\x37\x1c\x97\xdc\x37\xaa\xf1\x0a\x1a\xb4\x34\x3d\xa5\x07\x4e\x7b\x7a\x7e\xe7\xf5\xbe\x04\xc9\x0c\xef\xa8\xad\xeb\x4e\x95\x6f\xfa\xb1\x6b\xca\x0f\x81\x22\x20\x41\x52\x9b\x1e\x60\xc9\x5d\x43\xd1\xbf\x2d\x3f\xd0\xd2\x7a\x9b\x9e\xf9\xce\x6e\xd0\xf2\x03\x4f\x7e\x73\x79\xc8\x49\xc3\x78\xf0\x20\x5a\x5a\x97\xde\x82\x50\x83\xa2\x6d\x2e\x54\x77\x09\x11\x0b\xc4\x20\x6b\x5a\xca\x46\x98\x4b\x6e\x2a\x90\x83\x14\xcc\xdf\x0a\xd3\x39\x84\x3b\xc0\xc9\xb3\xae\xa8\x6c\x0f\xb2\x03\xe8\x85\x44\x47\x4c\x3d\xa7\x67\xbf\xd0\xa4\x20\x1f\x83\x62\xad\x5a\xa1\x67\x7f\xf3\x73\x22\x66\xf3\x0b\x13\x29\xa8\x42\xed\xfd\x9d\xe0\xa1\x95\x84\x6b\xac\x68\x69\xc9\x38\xfb\xba\x7e\x14\x28\xbb\xac\x0a\x29\x99\x47\xc5\x33\x64\x3e\x85\xd7\x07\x70\x61\xa8\xee\x70\xa1\x59\x78\xc0\x25\xc6\x8c\xe9\x15\xc3\x36\xe3\x7b\x77\x59\x62\xcc\xd8\x24\xc5\x94\xc2\xc3\x2b\x76\x50\x0a\x90\x42\xc2\x76\x81\x58\x62\xa4\x29\xf0\xdc\x51\x80\x58\x2b\x70\x82\x37\xd3\x2e\x85\x03\xba\x0d\xac\x15\x56\x97\xba\x01\xa9\x34\xde\x12\x4a\x9c\xf1\xa2\x15\xaa\xd7\x6c\xec\x28\x90\x4a\xac\x38\x2e\x74\x8a\x97\x3f\x5a\x2b\x95\xe1\x19\x5a\x12\x9d\xe2\xe5\x21\xd5\x0a\x52\x0a\x94\xd7\x07\xd0\xaf\x19\x06\x15\x3e\x63\xa5\xfc\x86\xdf\x94\xfa\xe3\x2a\xab\x36\x1c\xe0\x5f\x83\x41\xb1\xae\x43\x52\x7e\x52\x04\x18\x00\xf4\x80\x97\xd0\x52\x5a\x46\x00\xae\x3a\x68\x88\x46\x91\xd4\x56\x96\x14\x34\x2c\x72\x94\xc6\xf4\x44\x9a\x00\xc2\xb0\x94\x13\xa0\x95\xd6\x11\x44\xe0\xf7\x77\x10\x5b\xb7\xc1\x5e\xad\x3a\x29\xd0\xb6\x25\x23\x39\xa5\x24\x33\xac\xb2\xa4\xa4\x94\x8c\x12\x0d\xa7\x4a\xc2\x77\x89\x75\xaa\xac\x2b\x2a\x08\xc8\x52\x84\x60\x2b\x50\xdf\x85\x71\x10\x8e\x45\x8a\x18\x6a\x25\xe0\xc6\xe9\x63\x4e\xa9\xcb\xe4\xbe\x04\x91\x5e\x4b\x58\x52\x57\x91\xf1\xbf\x15\x4a\x5d\x72\xec\x69\x25\xfe\x45\x9a\x94\x56\xa8\x00\x94\x87\x49\x2b\x71\x20\x6b\x85\x7b\x00\xd6\x1a\xa8\x81\x28\x5e\x93\xae\xbe\x96\x98\x8d\x32\x1d\x1e\xdc\x92\x89\x0a\x15\x7c\xdd\x68\x0c\xdf\xa4\xcd\xbb\x0e\x05\x5f\xf6\x2e\x75\x84\xb1\xfa\x5c\x77\x22\xad\xa8\x79\xa1\x86\xaf\x78\x84\x01\xbc\xf2\x8c\x26\x3f\xf0\x0f\x3b\xd6\xec\x11\xe1\xa3\xe1\x0f\x18\x8a\x6f\x52\x33\xc0\x2e\xe4\xa0\xd0\xca\xa0\x53\x88\xa6\x38\x90\x8c\xc1\xa4\x88\x61\x04\xc5\x6d\xde\xb9\xb4\x04\xba\x22\xc9\x69\xa3\x95\x01\xa6\x6c\x4c\x5c\xa2\x5a\x4d\xaf\x01\x21\x9a\xba\x43\xf8\x0d\xbd\x48\xcb\x84\x99\xd1\xa4\x67\x2e\x16\x3b\x0c\x63\xa8\xec\x5e\x47\x6d\xb2\x3f\x6d\x22\x05\x31\x1b\xaa\x0b\xfc\xf2\x8b\x8f\xc2\x92\xc4\x7a\xf7\x26\x50\x85\x27\x0f\x87\x56\x96\x28\x56\x6c\x1e\x29\x88\x5d\xef\xba\x72\x15\xda\x21\x6d\xcc\x2f\x50\xe1\xf5\xd7\x08\xc8\x6e\x62\x86\x02\x57\xa2\xcd\x1e\x0d\x85\x76\x48\xc3\x0c\xbe\x44\xd9\x88\x0a\xbb\xa3\xad\x11\x65\x07\xa2\x8a\x27\x97\x03\xb1\x1e\xa6\x8e\x07\x77\xd5\xf4\x15\x96\xc8\x61\xbc\x3a\x1a\x5f\xd0\x1a\x8f\x78\xa7\x0c\x6a\x05\x96\xc6\x6c\x72\x0a\x71\xcf\xea\xff\x42\x71\xcf\xf2\x6a\xa1\xab\xbd\xb7\x0d\xe2\x5e\x32\x41\x5b\xd2\x5e\xef\x26\x17\xe7\x78\xe7\x24\x6a\x05\xb9\xfa\x92\x97\x08\xe7\xa3\xed\xf5\xfc\x40\xc2\x00\xad\xe0\x3c\x97\xfc\x69\x98\x22\x20\xdb\x92\x57\x81\xac\xd7\x7c\x30\x2e\x24\x59\x91\x6c\xf8\x13\xb6\x3b\x4c\xf0\xe0\xf8\x9e\x24\x0b\x16\x78\x2b\xd9\xfc\x5d\xe0\xad\x94\xcc\x53\x97\xa8\x57\x6d\xee\x2e\x14\xf5\x6c\xa0\x29\x50\xf1\x4d\x53\x87\x8b\x31\xf1\xea\x10\x9e\xef\x6d\xfb\x1d\xc3\xb9\x89\x94\xba\x46\x97\x1b\x06\x30\x8b\x00\x77\x79\xe7\x74\x6a\x05\xfa\xc0\x17\x12\xdf\x0d\x77\x54\x8f\x0e\xef\x5d\xd3\x3a\x7a\x2e\x0d\x73\x98\x7b\x80\xbe\xfb\x85\x89\xb6\x3b\xd8\xe1\xbe\xa1\x0d\xb8\x99\x47\x4c\x00\x87\xa9\xb6\xbe\xbe\xbf\xbe\xbf\x7c\xc5\x2d\x50\x37\x36\x93\x01\x6a\x1b\xcd\x8f\x96\x98\x5a\xac\xc3\x2d\x4b\x4c\x5d\x14\x57\x6d\x24\xd5\xf1\xf7\x0f\x13\x4a\xf8\x7d\x1e\x4a\xf3\x1f\xfa\xd8\x57\x77\x40\x35\xb6\x9f\x2f\x00\xd8\x76\x5e\xa0\x4e\x6c\x06\xe8\x92\x7b\x8b\x2f\x58\xe5\xf9\xd9\x6f\x01\xe0\x39\x30\x43\xed\xd0\xc3\xe4\x7c\x9e\xd1\x85\xe7\x9f\x1d\xa9\x74\xb9\xb7\xe0\x8a\x7c\x94\xb5\x68\x4b\x2a\x83\x6e\x15\x09\xd8\x2a\x4c\xc7\x59\x5b\x50\xb7\x8a\x70\xcb\xa1\x36\x71\x3a\xfc\x42\x60\x48\xbf\xc0\x4d\x0e\x0f\x81\x90\x20\x5d\xd2\xea\x06\x21\x48\x06\x9b\x0a\xd3\x71\x9d\x7e\xff\x60\x07\x4d\x3f\xc0\x89\xe5\xf5\xc1\xb5\xe4\x8e\xe4\x0e\x19\x19\xe8\x25\x3c\x08\x86\xd4\xfb\x4b\x16\x2f\xca\xe0\xd9\x2a\x75\x92\xa2\xad\x35\x65\xac\x40\xfd\x25\x48\xc2\x42\x93\xca\x2c\x9b\x16\x74\x6a\x02\x4b\x35\x08\x12\x41\xe0\x01\x91\x19\x42\x52\x43\x4d\x34\xf0\x08\x44\x54\x4a\x8e\xee\x11\x60\x06\xdc\xdc\xbe\x61\xe7\xf4\x8c\x17\x3b\xc9\x3a\x68\x15\xa6\xec\xa8\x6e\x03\x71\xc5\x50\x2b\x85\xfb\x21\x4c\xae\x4b\xb8\x6f\xca\x56\xd3\x2a\xc2\x70\x7d\x45\xac\xb9\x7f\x7f\x29\xd5\x4a\xab\xc8\x85\xd6\x84\xb7\x15\x41\xb8\x21\x49\xb2\x52\xe9\x39\x74\xf0\x2a\x94\x9e\x63\x7a\x3c\xfa\x1d\xf9\x39\xb3\xc1\xf9\x39\xd2\x1d\x79\xcf\x33\xbc\xa0\xfc\x3d\x2f\x0b\x43\x88\x5e\xd7\x65\xa1\xda\x94\x5c\x0b\xf6\x6c\xb8\x4d\x6e\xe4\x4d\x2c\x0c\xc5\x73\x07\xb0\x8d\x8b\x97\x54\x28\x45\x4d\x49\x2b\x02\x07\xcc\xb1\x6b\xf9\x59\xa2\x47\xa0\x20\x27\x90\x41\x2b\x6a\x15\x60\xa5\x6b\x99\x2f\x50\x15\xae\x65\x66\xc0\xb5\x30\x9b\xa5\xee\x1b\x15\xf6\xff\xcd\x58\x50\xb9\x49\xfa\x00\xd7\x8b\x62\xbc\xa5\xf9\xde\x66\xbb\x5a\x19\x6f\x2a\x3c\x84\xf9\x7e\xf3\x15\xa8\xe2\x0a\x61\x05\x5a\xad\x24\x1f\xea\x11\x31\xb3\xa6\xc7\x95\x37\x86\x21\x79\xb8\x22\x4d\x98\x15\xaf\xb5\x01\xd3\xc5\x31\x6b\x43\x12\x39\xcf\x08\x91\x05\xa5\x6e\xbf\xe1\x37\x15\x39\xc4\x8a\x67\xdb\x08\xf2\xe9\xde\x99\x44\xcd\x2f\x30\x44\x58\x7b\x0a\x71\xff\x85\x24\x41\x24\x30\xc4\x96\xbc\xdf\x8a\xd1\x8c\xf2\xfe\xf4\x41\x0b\xac\xe7\xf5\x41\xe7\x0b\x82\x58\x30\xed\x93\xda\x1d\x27\xcd\x53\x5c\xe2\xf8\xa2\x30\x6a\x17\x44\x83\xf8\x7d\xd0\x8e\xf9\x7a\x01\xc1\x1a\x12\xf4\x6a\xe7\x0c\xdc\x06\x44\xbd\x03\x9d\xf6\x07\xad\xb1\xc3\x3d\xcb\x27\xab\x03\x0d\x8d\x03\x9d\xc4\x51\x30\x83\x39\xdd\xee\x5c\x75\x24\x4e\x48\x1d\x0e\x9c\x24\x53\x3b\x4a\xeb\x66\x52\x75\x10\x88\xee\x91\x40\x7c\x0d\x01\xa7\x40\xc9\xff\x15\xd2\x78\x95\x18\x50\x61\x71\x9f\x3e\x08\x74\xe2\xb3\x81\xbb\x0e\xa4\x8a\xf0\x2e\x20\x2e\xc0\x26\xf5\x8a\xb8\x00\x7b\x2f\xd5\xc9\x35\xbc\x7e\x40\x30\x9c\xf1\x7a\x72\x0d\x1e\x72\x72\x0d\xda\x16\xe6\xbe\x32\x10\x90\x38\xa6\xf8\x20\xac\x0b\x40\xb6\xcd\xa6\x52\x15\x3b\x8d\x8a\xeb\x06\xd0\xaa\x11\x69\xc9\xeb\x8b\xb3\xa8\xbd\x06\xb4\xea\xb2\xee\x04\x9a\xae\x20\x75\xc9\xeb\xcd\xb2\x54\x5d\xf2\x7a\xb3\xac\x51\x97\xb8\x5e\xa3\xba\x7d\x20\xc3\xb2\x3b\xc4\x15\xc7\x2c\x60\xe7\x84\xdc\xbe\x39\xa0\x40\x80\x74\x51\xc5\x40\x85\x0d\x7f\x7b\xb1\x41\x18\xf1\xad\xbc\xa8\x30\xe2\x6f\xd3\x24\x91\x56\x7c\xd3\xdc\x03\x6b\x94\x92\xac\x1e\xf4\x26\xd2\x92\x96\x7c\xdf\x94\xd5\xa0\xd5\xe3\xfc\xfe\x9a\x9b\xf1\x04\x46\x7a\x8b\xdf\xf5\xe0\x94\xbd\x26\x64\x78\xb2\x02\xa2\xae\x0b\x81\xef\xda\x15\xd7\x01\x6b\x98\xea\x89\xb3\x28\xab\x51\x3d\x89\x05\xd5\x3f\x20\x01\x98\xf9\x30\xad\xfe\xb3\x7a\x00\xa4\x40\x33\xa3\x3f\x91\x71\xc4\x68\x04\x75\xf1\x8b\x27\x20\xf4\xf6\x25\x39\xac\x0b\x43\xb3\x2b\x63\x45\x64\xed\x34\x1a\x9d\xf7\x5a\x80\xbb\xc3\xfa\x8c\xc6\xd0\x25\xbf\xb8\x24\x82\x1b\x36\x0f\x77\x71\x81\xea\x7e\xdd\x2f\x96\xf8\xa2\x76\x70\x3d\xda\x01\xe8\x92\xed\x7e\x54\x71\xbf\xd8\x5e\x10\x60\xb4\xc3\x34\x67\xbf\xb8\x02\xbf\x00\xb4\xf2\x51\xbd\x6e\xb4\xb5\x04\x44\x3b\x64\x7f\xcf\x50\xdb\xa9\x2b\x4f\x5d\x97\x8a\xd1\x4d\xbf\x6e\x78\xf8\x5a\x58\xc3\x1d\xe1\x85\x85\x37\xce\x81\xa5\xc5\x1b\x01\x7e\x5e\xd2\x4f\x70\x83\xdf\x87\x4b\x79\xfb\x4d\x8e\xb5\x56\x11\xf9\xf0\x3a\xa5\xeb\x82\x50\xec\xce\x5c\x11\x54\x6b\xe7\xa6\xfa\xe0\x54\x1b\xc3\x20\x8f\xdb\xa6\x56\x1f\x82\xcf\xa2\x2a\xe4\xf1\x17\x06\x3f\x04\x9f\xc0\x49\x03\xff\x34\x86\x3d\xb8\xb0\x49\xd2\x6b\x14\xd8\xed\x52\xd0\x20\xb0\xa7\xd7\x0b\x15\x87\x68\xa8\x4d\x1c\x96\x14\xd1\x36\x06\x57\x27\xb5\x11\x3f\x2e\xa4\x6b\x1b\x71\xa0\xfb\x85\xb9\x90\xb2\xa9\x09\xa4\x14\xa1\x6a\x94\x9e\x3d\x81\x25\x3d\x37\xc7\x31\xb4\x44\x4a\xe7\xe7\x38\xf5\x12\xbc\x5a\x06\x52\x8b\x72\x36\xc6\xb5\x2a\x0f\x58\x6b\xb0\xb8\xdb\xe9\xa2\x21\x31\xaf\x7d\x81\x1a\x12\xef\x2a\x4b\x43\x6b\x99\x40\x17\x57\x6f\xb0\xb0\xcf\xee\x17\xc8\x5f\xa6\x7b\x80\xb4\x59\x3d\x02\x42\x6f\x0d\xe3\x82\x29\x4a\x99\xdf\x0a\xe3\x20\x04\xa1\x42\x4a\xa8\x7b\x7b\x2b\xc0\x0b\x5d\xf4\x1b\x72\xe9\xd6\xea\x0e\x71\x8a\xaa\xdf\xbf\x18\x35\xa5\x29\x43\x36\x54\x86\x98\xd6\x0a\x80\xee\x4d\x42\x26\xf0\x64\xd3\x5c\xab\x80\xba\x97\x00\xe5\x75\xda\xc4\x2f\x1a\x32\xba\x98\x4b\x37\xf8\x86\xaa\xd4\x40\x6b\xf0\x0d\x4d\xca\x3a\xd6\x1a\xd2\xe1\xda\x99\xb4\x2d\xe1\x71\xc9\xa4\x6a\xef\x0b\x2d\xdc\x7c\xbe\xbf\x86\x3d\x77\x5a\x03\xcc\x8c\x36\x0d\xd9\xf4\x24\x18\x35\x44\xa9\x26\xe5\x1f\x6e\xad\x81\x58\x55\xbf\x00\x06\x28\x52\xd4\x1a\x60\xd6\x3c\x00\x61\x66\x18\x35\xe6\xbe\xd0\x07\x48\x35\x1f\x52\x50\xb5\x80\x4f\xd7\xe6\xe7\x0d\x9e\x1d\x82\xc0\x92\xf5\x72\xf5\xc1\x08\xe2\x99\xbf\x87\x35\xd3\x13\x8c\x83\x13\x10\xa2\x22\x58\xa2\x8b\x1a\xb4\xc0\xe1\x36\x88\x91\xc8\xcc\x06\xe2\x46\x45\xaa\xb1\xa4\xe3\x64\xe8\xec\xb7\x8e\x4b\x92\x54\xbf\xad\x73\xc5\x52\x77\xb4\x0e\x62\x2b\xd9\xae\x75\x06\xdf\xf9\x0b\x0a\x77\x52\xd8\xb4\x01\x2c\xf1\x12\x07\x52\x26\xeb\x46\xd1\x06\xf1\x56\x4b\x1e\x88\x18\xf7\xd9\x1c\xeb\xe2\xfa\x7e\x3e\xd0\x9f\x56\x3c\x10\x82\x24\x31\xa9\x41\x11\x3b\x7c\xd0\x06\x56\xf8\x9a\x0f\x69\x89\x16\x34\x89\xd6\xc6\x9a\xc9\x09\xbb\x0d\x62\x62\x62\x06\x67\xca\x92\xdd\x01\x90\xd4\xb4\x6b\xe2\x46\xf0\x6a\x5f\x90\xae\x05\xa0\x49\x83\x82\x8f\xf6\xc4\x8c\xc4\x7e\x1a\xa2\x35\xec\xa1\xd6\xf6\x1d\xf1\x22\xea\x60\x27\x12\x78\x0f\x96\xdc\x35\x96\x4c\xf2\x0b\x7e\xd3\x76\xee\xa8\xa4\xf5\xb6\x23\x87\xa5\xb8\x63\x3b\xb0\x7e\x09\x65\x28\x4c\x30\x6c\x87\x44\x65\x82\x6a\x09\xa8\x1d\x3c\x55\x26\x5d\x07\x4e\x95\x31\x02\xe1\x1e\xe9\xc5\x1f\xe0\x39\x39\x8d\x02\x07\x55\x8c\xe1\x2f\x00\x52\xaf\xf8\x00\x8f\xf3\xb5\xb4\x21\x21\x8a\x23\xdf\x1a\xf2\x74\x26\x3b\x4f\xb6\x13\x9b\x26\x29\xa3\x21\xc6\xd3\x86\x3c\xd4\x53\x18\xd5\x07\xf3\x84\x77\x8f\xa9\xe9\xc9\x29\x89\xed\xb6\x93\xbb\xac\x39\x2f\xb1\x69\x38\x62\xa3\x5d\x80\x9a\x09\x3e\xe5\x22\xa3\xe5\x05\xaf\x37\xd3\xa2\x8b\x58\xa5\x25\x5e\xa4\x85\x9e\x31\x6c\xf0\xd5\xdb\x74\xed\x20\x76\xfe\x80\x58\x30\x3c\x02\x34\xc3\xd9\x23\x80\x14\xe8\xda\xd7\x2e\xe2\x9d\xee\xb6\xed\x22\xde\xa9\x7d\xf3\x24\x98\x9a\x21\x2c\x74\x98\x0b\xde\x24\xf0\x66\x93\x37\xc2\x4c\x0c\xd5\x1b\x8b\xd2\x85\xa0\xdd\xc0\x04\x6f\xf4\x8d\x35\x49\x1d\xd1\xa0\x7c\x4d\xca\xb6\xd1\x1a\x94\xaf\xf5\x35\xc0\x92\x03\x36\xaf\xe1\x06\xdf\xed\x1e\x10\x4b\x90\xb8\xde\x1e\xe2\xa2\x4f\x3f\xbc\x29\xab\x07\x78\x62\x75\xe8\x6d\x7c\x40\x70\xbb\x3b\x40\xb2\x39\xd3\xd7\x07\xe4\x6e\xba\x0d\x72\x67\x75\x78\x2c\xe1\x68\x89\x48\x6a\x03\x0f\x84\x48\x28\xaf\x31\x9a\x58\x48\x40\xf4\x49\xb6\x03\xc5\x86\x25\x4f\xbf\x30\xe1\x20\x53\xd4\x06\x0f\xd2\x8a\x62\xbb\x00\x12\xbf\x8f\x62\x1f\xd9\xcf\x11\xc0\x2e\x41\x21\x10\xa2\x62\x0f\xdc\x48\x40\xb4\xd7\x00\x09\x20\x11\xe2\x45\x62\x86\x61\x4d\x10\x49\x46\xb6\xec\x0e\x0f\x68\x12\xb5\xe2\x84\x2b\x94\x30\x39\xe0\xcd\x98\x94\x99\xa0\x45\x22\x0c\x3d\x20\x36\x4d\xe2\x77\x40\x11\x68\x57\x8e\xc8\xc4\xa2\xae\x76\x07\x88\x35\x01\x68\x02\x5f\xae\xde\x91\x11\xf8\x93\xdc\x3e\xf1\x81\x26\xb0\x84\xaf\xd6\x36\x3f\xbf\xb1\x62\xad\x00\x6e\x01\x21\x16\x11\x4b\xf6\x9a\xa6\x90\x41\x45\x9f\x27\x04\xd9\x4b\x89\x11\x5a\x40\xd1\x97\x92\xf7\xa0\x40\xd0\x11\xda\x06\x2a\x15\x29\x79\x68\x8b\x02\x79\x78\xf3\x00\x44\x0a\xdd\x30\xa2\x0c\xcc\xc0\x1d\x4e\xac\xc0\x1f\xec\xfc\xc0\x53\x40\x1e\x49\x11\xf1\x80\x62\xcf\xf7\x64\x96\x71\x49\xc9\x68\xb1\x84\xb7\xe9\x60\x2a\x24\x16\x6d\xf6\x66\x8f\x4a\x98\x69\x00\xc4\x88\xaa\xe6\x4e\x8b\x25\x4b\xb5\x75\xf4\x7f\xc1\x73\xa2\x71\x07\xb5\x9c\x36\xd0\x16\x3c\x1a\x97\x27\x14\x6a\x9c\x8c\x56\xd3\x80\xf3\xa2\xee\x11\xd8\x20\x91\x01\x24\x41\x4d\xc9\x6e\xd7\x11\x19\x1d\x6a\xb6\xc1\x1d\xf2\x31\x0c\x4e\xdf\x6d\xee\x90\x3f\x20\x9d\xd0\x8c\x83\x3b\x64\x1c\x41\xd4\xcd\xe6\x63\xcb\xbc\x76\xc6\xb9\x25\xb9\x55\xeb\xd0\x62\x49\x6e\xcd\x71\x53\x11\xa4\xd6\xfe\xfe\x01\x4e\x0a\xde\x9d\x1b\x26\x36\x1c\xd0\xf2\x39\xfe\x21\x7a\xc6\x0c\xd5\x61\xff\x59\xa2\x80\x08\xdf\x48\x1b\xae\x82\x51\x35\x2a\xde\xd3\xa2\xb3\xa2\x95\xa6\xd0\xb9\x46\x89\x6a\x81\xfc\xfa\x56\x5d\x46\x9f\xc0\x19\x81\xbd\x13\x0b\x25\xb9\xc4\xe0\xbe\x68\x84\xd1\x30\x67\x75\x30\x02\x6d\x4d\x09\xce\x92\x61\xa4\x1c\x24\x25\x02\xc2\x20\x29\x11\xb9\x0e\xa4\xeb\xb0\xe6\x32\x90\x90\xde\x46\x87\x98\x05\x15\x5d\xf4\x7c\x56\x76\x20\x28\xa2\xf8\x93\x19\x4e\xc0\xaa\x5e\x7c\x6e\xf6\x82\xdb\xb7\x3a\xdc\x81\x07\xe2\x91\xc1\x6c\x18\xc9\xc4\x0c\xf9\xd7\xad\x6c\x88\x25\x4d\x4d\xab\xbb\x63\x7f\x30\x23\x2d\x71\x49\x4f\x73\x93\x59\x24\x60\xa1\x0e\xf7\x77\x30\xf6\xc9\xc4\xea\x20\x79\xd6\x00\x48\x71\xee\xf0\xae\x38\x10\xbb\xe4\x0e\xa0\x90\xb2\x06\x2b\xce\x84\xb6\xf0\x04\xb1\xb2\xa1\x1b\x40\x20\x56\xd6\x7a\xcb\x38\x49\x7a\xfc\x3e\x36\xdd\xa4\x08\x06\x6a\x3b\x5a\x07\x62\x48\x92\xf3\x1c\x04\x52\x86\x5b\x21\x15\x88\xa5\x7d\x75\x00\xc9\xc7\x71\x32\x71\xf5\x77\x15\x9e\x16\x17\x7d\xac\xfc\xfe\x01\x21\xc3\xcf\x4f\x06\xfa\xf8\x05\x90\x2a\xe3\xf1\x85\x14\x5c\x86\x10\xf4\x41\xf6\x7e\x8c\x1b\xee\x2c\xd2\x15\xc7\x8d\x93\xe5\xfe\x6e\xdc\x50\xbc\x03\x70\x2d\x7c\x45\x88\x07\x6c\xcc\x56\x67\xc4\x8d\xb3\x6d\x62\x7c\x73\x86\xba\xc7\x06\xc2\x75\x8b\x24\xe2\x40\x48\x49\x35\xd6\x3d\x8c\x92\xd1\x0a\x1e\xc4\x14\x7a\x0f\x20\xc5\x34\x4f\xe0\x01\xbd\xd4\x15\x24\xa0\x03\x72\x80\x7e\x30\x86\xc3\xd4\x6b\x49\x31\xe5\x85\x64\x0f\x91\xf2\xf3\x7e\x67\x56\xe3\xe6\x36\xb6\x48\xb7\xca\xbe\x11\x29\xa5\x3c\xe8\x08\xcd\x75\xf0\x54\x5f\x52\xcd\xb4\xad\xac\xb3\x72\xd5\xe6\x36\x26\x2c\xb7\x8b\xbe\xed\x68\xfb\x39\x7c\xd7\xc5\x61\xfb\x46\x08\x56\xff\x70\x21\xa0\x3a\xfd\x86\xdd\xf4\x84\x1b\x8b\xa8\x46\x4f\x05\x6d\xcd\x3e\x41\x26\x7b\x3d\xc7\xa1\xce\xcd\x3f\x0c\xbc\xe0\x0f\xc0\x8f\xb4\x9f\xfd\x5f\x16\x8a\x6a\xc8\xb9\x5d\x6c\xca\xec\xc8\x39\x51\xc4\xff\x91\x82\xbb\xd9\xd7\xb3\x43\x7d\x64\xcf\xfa\xce\xf8\x8c\x2c\x32\xd3\x21\xc1\x6c\x86\x17\xd4\x47\x36\x8a\x75\x86\x5f\xe8\x4c\x75\x28\x7f\x36\x29\xc0\x7a\xe1\x80\x7e\xce\x4a\x59\xea\x0f\x85\x92\x7c\x69\xef\xc8\xcd\xab\x02\x6b\xad\x43\x7c\x48\x59\x94\xb8\xb3\x10\x92\x07\x40\x34\x45\xb2\x5f\x4a\xaf\xf0\xdb\x96\x6e\xa6\x23\x49\x85\x55\x7c\x1d\x66\xbf\xc8\x6e\x73\xc9\x3a\xe6\x1d\x02\xc8\xf6\x7a\x01\x92\xf8\xeb\x39\xd2\x07\x1b\x44\xc8\xb5\x6b\x8d\x5b\x67\x0e\x33\xe1\x78\x47\x3c\x85\xad\x21\x1d\x9e\x81\xd6\x1a\xf7\x86\x58\x04\x83\x18\x86\xbd\x36\xfd\x3e\xb7\x40\x0b\x84\x0c\xf2\x7a\xcc\x24\x45\x1e\x1e\xe1\x88\x92\x40\x3a\xdc\x02\x1d\x30\xd3\x91\x17\x77\xf3\x89\x81\xdb\x9f\xd5\x73\x3d\x78\xc4\x24\xe7\x77\x24\xce\x75\x16\x8f\x4e\x09\x24\xbf\x7e\x18\x80\xb8\x7b\xc0\x9e\xbf\x46\x40\xf9\x1f\x23\x19\x24\x90\xad\xba\xcd\x33\xe6\x43\x07\xdd\xd1\x26\x11\xaf\xc7\xcd\x17\xfc\x03\x2c\xe2\x06\x69\x07\xd6\x35\xb7\xe1\x4c\x25\x5e\xd8\xe9\xc5\xe7\x63\xd0\x39\x03\xad\xa0\x03\xc4\xd2\xbc\x74\x38\xe9\x15\xe3\xd0\x80\x6f\x4f\xf3\x73\xb8\x4a\x7a\x45\x10\x2f\x36\x31\xeb\x3e\x38\xbe\xf6\x04\xb9\x78\x55\x5b\xa5\xf5\x81\xf1\xbc\x47\x08\xab\xb5\x54\xdd\x27\xd7\xa3\xf5\x22\x33\x97\x23\x42\xfb\x0e\x17\x72\x93\xc9\x3d\x01\x65\xb5\x9e\x1d\x25\x1c\x37\x3f\x67\x6c\xbc\xfa\x87\x01\xce\x7e\xfa\x1d\x06\xb8\x64\x37\xc7\x8e\x62\x2f\x16\x1a\x3b\x0c\x70\x9b\x8f\x3d\xfc\xe5\x92\x15\xa4\x7d\xc7\x9e\x8b\x75\xf5\x9d\xee\xae\xaf\x21\x11\xe1\xd9\x3d\xa5\x93\x2f\xf8\x0b\x6c\xba\xcc\x07\x1d\xb9\x6c\x6d\x6c\xe9\x07\xce\xb5\x49\xe3\xc1\xe8\x05\x93\x8e\x83\x8b\x12\x16\x1d\x40\x4b\x93\x26\x38\xc4\x29\x17\x61\xeb\xe7\x12\x80\xbc\x67\x27\x6f\x93\x6e\xa3\x24\x9b\x84\xd4\x0e\x7b\x94\x93\x1e\x75\xe8\x55\x7c\x37\xeb\xcc\xf3\x6a\xbf\xfa\x0e\x87\xb7\xd7\x7c\x60\x90\x72\xbc\x63\xbf\x38\x3f\x2d\xf8\x02\x08\x5f\xdf\x83\x36\xff\x2e\x97\x4d\x87\xe8\x61\x81\xb7\x53\xc7\xe2\xdb\x76\xbf\x58\x33\x4c\xa3\x51\xc7\x62\x14\xbc\x21\x9d\x49\xd6\xe8\xd0\xa0\x58\x13\xd6\x6f\x0e\xa0\xe5\xde\x1c\xc0\x1b\x0a\x0d\x88\x05\xd4\xfe\xb0\x03\x81\xfb\x81\x62\xcb\xa7\xfe\xe1\xf2\x35\x41\xd4\x1a\x99\x26\xf4\x28\x35\xa2\xf2\x1a\xad\x3f\x9c\xc0\xe7\xfb\x01\x7d\x87\x2f\x46\x03\xd1\x9e\xc9\xb6\xfa\xb1\x65\xd8\x66\x42\xed\x86\xcc\x22\x53\x6d\xd8\x33\x75\x08\xc6\x12\x1d\x9a\xfd\x0f\xc7\x86\x0c\x16\xa2\x4a\x63\x03\xd1\xd0\xdd\x6f\x50\x34\x50\x91\xc3\x36\x18\xee\xa9\xcb\xe0\x80\x2b\x95\xb5\x03\x03\x0a\x0f\x33\xf3\x41\x7d\x87\x4e\xfd\x48\x40\x00\x41\x60\x24\x5c\x36\xbd\x00\xa8\x2f\xb6\xd7\xf7\x4c\x39\xaa\xab\xf1\xc8\x04\x89\x56\x48\x6b\x52\xf1\xf3\x8a\x90\x5f\x81\x30\x33\x5e\x55\x0b\x80\xfa\xc1\x9e\x55\xa3\x20\xcf\xae\x27\x58\x12\x8a\x5a\x69\x02\x05\x09\x91\x0c\x00\x16\xd6\xf5\x78\x15\x28\x20\xd6\x3c\x16\xeb\x1d\xaa\xca\xd8\x06\x22\x15\x1d\x61\x3c\x90\xe5\xbe\x85\xdb\xd7\xf7\x57\xb4\xd7\xfb\xc0\x39\x9b\x61\x46\xc5\x5d\x55\xd7\xf7\x01\x2f\xff\x64\xab\xc3\x58\xbc\xb7\xbc\x66\x84\x02\xbd\xb6\x1c\x0d\x24\xd1\x48\x36\x1d\x0d\x04\x3b\xda\xa5\x65\x2c\x66\x3d\x9a\xb1\xac\x21\xc6\xd9\x20\x01\xf7\xcd\x22\x2a\x23\x70\xa9\xd1\xe5\x78\xf0\xbe\xff\x82\x79\xc0\x44\xe9\x3d\x0b\x50\x05\xa9\x80\x06\x5c\xe2\xed\x4d\x36\x02\xac\x42\xac\x6b\x30\xb0\xd0\x2b\x58\x57\xe1\x61\xd7\x88\x01\xb3\x88\xbd\x62\x07\xcd\x22\xd6\x17\x8f\x01\x24\x91\x38\x33\x60\x16\xb1\xd6\x6d\x80\xf7\x25\x6b\xc5\x06\x98\x5f\x7e\x75\x50\xf9\x82\x86\x84\x87\xfa\x7b\x04\xe0\xb1\x2e\x7e\x03\x91\x85\xf6\x87\x1b\x8b\xdb\x95\x22\x21\x74\xa0\x16\x9b\x35\x40\x03\x39\x21\x54\x91\xb9\x8d\x09\x42\x38\xfc\x1c\x12\x9b\x03\xbb\xc7\x3c\x17\x69\xf1\x12\x60\xe8\x48\x56\xf4\x8d\x79\x23\x30\x5a\x40\x85\x07\xfa\x0b\xf1\x16\x3b\xcb\x0e\x45\x19\xa8\x5d\xe6\x24\x14\x03\x96\x89\x69\x3c\x43\x9e\x29\xbb\x2e\x8c\xe3\xc0\x26\xb8\x4d\x11\x52\x88\x7f\xb0\x78\x8a\x07\x44\xde\x28\xfb\xbe\x8e\xf3\xc7\xf1\x48\x6d\x60\x85\x07\x80\xef\x45\xf2\xdd\x74\xc0\x4c\xd0\xc4\x2d\x07\xb4\xfe\x76\xf7\x18\x17\x2b\xc2\x8a\x41\x0f\xd4\xb3\x0a\x6f\xfb\x55\xf9\x82\xa0\x0a\xbd\xff\xfc\x55\x0d\x9c\x36\x2e\x64\x3c\x92\x42\x66\x20\xec\x4e\x39\x61\xdb\x58\xbc\x6b\x3a\xf9\xce\x40\x10\x9d\x63\xfb\xc7\xe2\x46\x23\x7b\xfa\x37\x74\x05\x12\xe8\x06\xbc\xad\x93\x13\xa5\x0c\x44\xd9\x4d\x0f\xc8\xab\x70\xf3\x49\x47\x94\x5d\x36\xde\xdf\xc8\x65\x66\x80\xdd\xf4\x4e\x90\xcc\x37\xee\xe3\x5d\x53\xb7\x8d\x75\x57\x2e\xd9\xc4\xed\xfe\x29\x78\xe3\x1e\x17\x12\xf9\xe2\x30\x16\xc3\x1b\xc3\xd4\x0d\x0e\xd3\xe5\xd5\xa6\x47\x90\xdb\x88\x6a\x33\x75\x43\x1c\xdf\x8b\x1a\x2e\x86\x37\xec\xed\x30\x1e\xdc\x34\x45\x6a\xe6\xe2\x67\x2e\xfa\xdb\xe6\x46\x10\xbc\x7e\x40\x91\x5f\x69\x78\x26\x9d\x8d\x85\x64\x13\x69\x1b\xed\x79\x3b\xa1\xb0\x4f\x4a\x93\xde\xe6\x86\x48\x41\x69\x78\x26\xea\x26\x3b\x92\x7c\x2e\x06\x56\xde\xed\x40\xa5\x16\x75\x98\x18\x99\xd8\xd4\xde\x21\xb6\x6a\x02\xc8\x3f\x90\x4c\x4d\x27\x92\x30\x5a\x11\x38\xc1\xd1\x9c\x9f\x6d\xe6\xb5\xeb\xaf\x15\x65\x2e\x59\xd4\x72\x42\x43\x1f\x9e\x51\x6e\x68\x6b\xc4\xcc\x73\x33\xdc\x43\x7f\x17\x42\x6e\x93\x2a\x7c\xe7\x09\x99\xa8\x6c\x1c\xd5\x3d\x20\x45\xf6\xeb\x39\xd3\x3d\x7b\x44\x86\x6d\x89\xda\x4d\x66\x30\x78\xad\x01\xfa\x6a\x29\x7d\x26\x32\x18\x38\x52\x7c\x16\x0a\x62\x22\x6f\xb3\x30\x14\x4f\x6b\x84\xb3\xae\x4d\xfb\xb3\x74\x64\xcb\xd7\x92\xca\x80\xa0\xac\x19\x17\xda\x6d\x04\xe4\xc2\x5d\xf0\xf7\xdc\x05\x6f\x33\x1c\x32\x7c\xe1\x9b\x74\xc8\x68\xaf\x19\xe0\xf4\x7a\x9b\xe0\x6f\xe1\x0b\xe0\xe4\x95\xdb\x98\x5a\xb9\x4d\xa2\xbf\x93\xb9\xb8\x0c\x75\x84\x02\x5a\xd2\x99\xa8\x8f\xf3\x42\x1c\xf8\xea\x86\xf1\xa4\xf2\xf0\xbe\x46\xc4\x2e\x78\x9f\x71\x27\x37\xdf\x9f\xcc\x2b\x2e\x59\x6f\x52\x30\x70\x34\xca\x6c\xcc\xae\xaf\x5d\x62\xde\x70\x09\xe3\x13\x0e\x19\xbe\x71\x4e\x84\xf7\x59\x7d\x3b\x1b\x72\x3b\xea\xc6\x35\x61\x48\x50\x85\xd3\x36\x1b\xa2\x69\x94\x41\xbf\xcd\x75\xcb\x6f\x76\xe3\x9c\xa8\xd9\x5b\x45\x8f\x27\x2d\x07\xce\x6e\x32\x03\x5c\x52\x77\xda\x09\xc3\x80\xc4\xdf\x89\x12\xbb\xbe\x2e\xcd\x40\xf8\xbe\xc7\xa3\x83\x86\xe3\x4b\xe6\x12\x24\xc6\x6b\x0f\xe2\xe2\x0b\x9e\x01\x98\x9c\x58\xc8\x44\xec\x9c\xbd\x3a\x27\x8a\xe4\xda\x6d\x74\x52\x8d\x1f\xd9\x1f\x04\x76\x51\x53\xa4\x1a\x3f\x7c\x7c\xe1\xae\xab\x7a\x2a\x6d\xa2\x4c\x6e\xeb\xbf\x72\x88\x46\xa1\xb7\xe4\x04\x73\x73\xc9\x2d\x61\x51\x6e\x0e\xa6\xc8\xd3\x8e\x2c\xb1\x25\x2c\x3d\xa3\x2e\x5c\x71\xcc\xf0\x1c\x3f\xd3\xf7\x0f\xc8\x6a\x24\x71\x7d\x22\x09\xb8\x03\xc3\x27\xd2\x6d\xaa\xdc\x57\x9b\x83\x5b\x2c\x26\x3d\x51\xe5\x56\x29\xbe\xdb\x1c\x17\x66\x20\x00\x22\xc7\x81\xbd\xf3\xe6\x64\xe2\x74\x81\x03\xc9\xb3\x54\x60\xa7\xcd\xd9\xd7\xf7\xa6\xd7\xf0\xf7\x48\x21\x4d\xd0\x84\x23\xae\x33\x81\xcc\x25\xf7\x0c\x67\xfb\x9a\x4b\xec\x09\x07\xc9\xce\x1d\x20\xf1\x80\x7b\x45\x5b\x13\xda\x1b\x1c\xaf\xfc\x1c\xf9\xa1\x8d\x11\xeb\x0e\x1f\x0e\xa0\x9a\xb8\xa2\xdb\xa9\x7f\xee\x0f\x9e\x6b\x7e\xeb\xca\x1e\x16\xb3\xe6\x81\xfc\x01\xa6\x23\xf4\xa6\x08\xef\x09\x82\xde\x7c\x45\x9b\x07\x16\xe0\x09\x9d\xc0\x30\x49\xeb\xf3\xdc\x31\x80\xdb\xe4\xe9\x82\x18\x2b\x30\x7a\x8b\x11\x93\xe6\x14\xb9\xf3\xe2\x04\x85\x23\x17\xea\x42\xfb\x14\xe3\x0a\x6f\xfd\xed\xbc\xb8\x23\x9a\xdf\x12\x83\xc2\x7a\x97\x79\x11\x25\xbc\x03\x48\xa0\x9d\x4c\x97\xe8\x2b\xe1\xd8\x92\x79\xc1\x68\x62\x62\x7e\x01\x67\x24\xb6\xcc\x1b\x5b\x26\xbd\xca\x84\xc6\x3f\x85\xb9\x05\xc2\xca\x2c\x0b\x4f\xe4\xbb\x4e\xe6\x4f\xa8\x9d\xe2\x7b\xfb\x5c\x52\x47\xf8\x7e\x30\xe9\xb5\x69\x23\xc3\x7c\x10\xe7\x67\xb4\x47\x96\x25\x87\x05\xef\x70\xc2\x4c\x36\x30\xee\x1b\xcb\x28\x4d\xb5\x19\x78\x28\xbc\xdf\xa1\xd4\x57\x21\xa8\xb6\x6f\xd4\x9e\xb9\x8d\x34\xc2\x5a\xc2\xbe\x11\xaa\x55\x6d\x4e\xd9\x03\x9c\x68\x6b\x46\x09\x94\x40\xca\xab\x3d\x71\x02\xc2\xfb\x3d\x01\x88\xc5\x6d\xb0\x9b\xe9\x0e\x58\x7f\x5c\x03\x20\x17\xb4\x33\x37\xef\x4c\x83\x24\x0e\xba\x67\xf6\x57\xd4\xc6\xa6\xa8\x96\x58\xdb\x33\x2e\xc2\xc3\x2f\x30\x71\x86\xda\xb0\xe3\x17\xc1\x7c\x2f\xc0\x43\x1d\xb4\x9d\x76\x7c\xc7\x97\xee\x05\x27\x55\x92\xd6\x8e\x9b\x76\xea\x22\x05\x7b\x61\xf0\xa4\x3f\x00\x8c\xa4\x1c\xdb\xeb\x86\x76\x53\x3b\x41\x00\x77\x9b\x39\x7c\x04\xa2\x8a\x0a\xe6\x92\x96\xf7\x8a\x93\xe6\x09\x2d\xfe\x18\x56\x4a\xef\x50\x62\x5b\xa3\xba\x07\x56\x24\x52\xbf\xa3\x84\xbc\x3d\x9f\xf7\xc0\x49\x2a\x7e\x7f\x87\xff\xa1\xdb\xd7\xf7\xd7\x74\x30\xe3\x8e\xa2\x12\x36\x64\xed\x1d\xe3\xeb\x60\xed\xc8\xcc\x68\x1b\xf3\xde\xd1\xbf\x68\xed\xde\x31\xff\xfa\xab\x64\x36\x7b\xc7\xf5\xd0\x83\x31\xeb\xa1\x54\x8f\xfb\xba\x90\x66\x47\x0e\xed\x13\x74\xd1\xc0\xdb\xfb\x9a\xbc\xc8\xd2\xbe\x73\x70\xf5\x47\xba\xa8\x3b\xfe\x7e\x20\xa6\x4e\xca\xbb\x9d\x8e\x6c\xce\xea\xbb\x1f\x0d\x8a\x10\x0d\x70\xe0\x84\x48\x75\xb5\xaf\xfb\xe5\xb0\x02\x7d\x27\xdd\x94\x10\xbb\x9f\x48\xe9\x64\x84\x3e\xc1\x2b\x7d\x00\x90\xd8\xc5\xfe\x56\x3b\x62\x7b\x9d\x72\x6a\x27\x9d\xf4\xee\xfd\xd4\xb4\x0a\xff\x00\xfc\x94\x34\xb2\xd3\x89\xcc\xa1\x95\xfb\x15\x78\x41\xfb\x7b\x01\x44\xa6\x11\xa4\xa4\xe2\x04\xfb\x05\xfc\xf5\x91\xbc\x81\xbf\x52\xa3\xec\xb8\x20\xda\x55\x71\xa7\x47\x98\xb3\x9b\xee\x24\x9c\xde\xb3\x9b\x13\xd0\x80\x70\x95\xf7\xed\x6d\xe7\xfd\x70\x18\x83\x6e\x6e\xaa\x5e\x78\x40\x65\x7c\x62\x9e\x86\x15\x68\x45\xa8\x84\x9c\xc5\x1c\x8f\x45\x27\xa7\x43\xc2\x8f\x45\xd5\xa6\x13\x8d\x1d\xa4\x6a\xe1\x36\x27\x30\xfd\x01\x3b\xac\x6a\x9f\x48\xdd\xac\x36\xb2\xc3\x59\x41\x7a\x24\xa0\xbc\x40\x7e\x20\x4b\x4a\x72\x1d\x80\x63\x5d\xcf\xa6\xcd\xcd\x47\x4e\x68\x37\xb5\x77\xb4\x3f\x2b\x3a\x0a\x32\x2b\xeb\xcc\x1f\xf0\xfc\x4e\x56\x7b\x1c\x24\x5b\x12\xf8\x0e\x92\x2d\x8b\x90\x07\xdc\x8f\x1c\x77\x78\x14\x4e\x51\x4b\x28\x48\x6d\xa3\xcb\xd5\x41\x2a\xa5\x7b\xc0\x51\x4f\xcc\x48\x4b\xa2\x69\x4d\x58\x74\x34\xec\x49\xf7\x73\x60\xc1\xd4\xae\x1f\x0d\x58\x20\x95\xec\xd1\x60\xec\x32\x0c\x91\x23\xb7\xbc\x3a\x08\x76\xa0\x19\xa0\x3a\x90\x2f\x98\x07\xaa\x58\x3a\x98\xf4\x68\x10\x61\x5f\x33\xc2\x51\x17\x1a\x1e\x0d\x65\xa2\x0c\x32\x56\x07\x6a\x1e\x10\x41\x30\xd5\xcf\x6f\x4e\xc0\x1d\x22\x05\x86\x57\x40\xc2\x2a\x34\x3d\x02\x19\x2e\x74\xf4\x8f\x40\xd8\xb9\x44\x94\x23\x40\x28\xc3\x6d\x64\x71\x14\x5a\x1f\x81\xac\xc6\xba\x20\x1f\x20\xc4\x16\x50\x8e\x75\x8f\x18\x8e\x32\x3f\xe8\xe7\x2d\xb1\xfb\xe8\xa8\xf8\xa7\x83\x7b\xc0\x3b\xc8\xd6\xd0\xa3\x73\x4b\xbc\xe7\x9d\x5b\x22\x1c\x41\x10\x60\x72\x98\xc8\x81\x7b\x45\x18\x29\xd6\xad\x61\x58\xa6\x3a\x3a\x13\x15\x18\xc6\x1d\x72\xf7\xab\x03\x64\xee\xf4\x26\x77\xc2\xd4\xbb\xdc\xa1\x7d\x92\x8c\x74\x40\x25\xea\x68\xb0\x63\x5d\x2d\xb2\x73\x53\x1f\x54\x89\x3a\xcf\xfc\x31\xe0\x6e\x6a\xa0\x22\x0a\xd0\x71\x3a\xc7\xba\x5b\xd4\x9a\x7f\xa5\x4b\x3b\x06\x71\xce\x5b\xba\x2e\x1e\xd5\x29\x08\x0f\x64\x6e\xb3\x1b\xf3\xb1\x2e\x1e\xaa\x42\xd3\x0e\xf8\x99\xa7\xd9\x3d\x7d\x18\x90\xb3\xfb\x3b\xa1\xa6\xf1\xf7\x2c\x63\xa3\xe7\xb0\x36\x4e\x9f\x73\xfa\x2a\x39\xe2\xf9\x98\x0d\x2f\x08\x27\x27\x67\x6c\xa4\x99\x38\x25\x26\x04\xb8\xa9\x58\x4e\x3f\x26\x8a\x95\xbe\xde\x87\x4a\xc2\xe7\x1a\x95\x3c\x55\x1f\xb7\x1d\x13\x7a\x21\x23\xe1\x64\xa1\x08\xad\x60\x22\x66\xc5\x3b\x8c\xdc\x6e\xaf\x58\xae\x03\x59\x81\xed\xe4\x7c\x20\xb9\x9b\x43\xff\x0f\x96\xfa\x34\x96\xc2\x40\x6a\x71\xe6\xd8\x91\xac\xa2\xf8\x7b\x42\xc0\xcf\x03\x61\x39\x02\xd9\x8e\x1c\x8c\xc6\x98\x9d\xa5\x94\xf4\xfc\x40\xce\x2d\x2f\x08\xc6\x4b\xe7\x39\x3b\x16\xc7\xaf\xaa\x0f\xde\x0e\x54\x16\x72\xdc\xd1\x81\x0a\xe5\xce\xd9\x78\x1c\xac\x85\x34\xfd\xc1\xc0\x04\x05\xa1\x03\x89\x9d\x4d\x46\x0e\x04\x77\x65\xb7\x6f\xba\x8f\xa9\xfd\xc0\x50\xa2\xf6\xc9\xa4\x94\x02\x10\x73\xc5\x59\xc3\x7b\x9c\xa8\x85\xaa\xbb\xe7\x01\xbf\x76\xfb\x42\x1d\xb8\xaa\x75\xaf\xf0\x84\xd7\xc3\xe6\x01\x90\xec\x5b\x77\xc5\x03\x57\x35\xdf\x22\x0e\x5c\xd5\xb2\xef\xef\x07\x34\xda\x8e\x7f\x3e\x70\x57\x73\x7d\x96\xe3\x42\x5a\x4b\xe3\x20\x9c\xaf\xec\x17\x71\x5c\xa8\xae\xe1\x09\xc3\x00\x9a\x7d\xf9\x3b\x20\x52\xbc\x3e\x60\x62\x37\x5d\x84\x0e\xa8\x9c\xb3\xaf\xb3\x07\x4c\xa4\x8e\x89\x39\x70\x15\x6b\x26\x54\x37\x5c\xfb\xa5\x57\x3b\xee\x0e\x17\x3f\xb7\x51\xa2\x5d\xf7\x96\xe3\x86\x29\xc7\xa7\x04\x22\x49\xf6\x7d\xfa\xb8\x91\xbb\xce\x22\xc3\x0d\x89\xc0\x84\x0f\x2a\xeb\xec\xfb\xe9\x71\xdf\x98\xa1\x97\x44\x18\xe8\x02\x7c\x20\x17\x9d\xa3\x46\x8f\x07\xd6\x25\x8f\xf8\x04\x2c\x7e\x1a\x01\x39\x3a\xb2\xef\xa3\xc7\x43\x7e\xe8\x0e\x68\x39\xf1\x73\x56\x18\xd4\x9a\x1e\x66\x08\x14\x8c\x98\xa3\xc3\xb4\x07\xc9\xea\x6c\xe1\x3b\x37\xee\x92\x2e\x7b\x27\xcc\xbc\x26\x35\xe7\x86\x28\x1d\x75\x78\xc2\x43\x2c\xfb\xaa\x74\x6e\xd4\xdc\x65\xb5\x3b\xf4\x60\x55\xed\x01\xa5\x89\x47\xc4\xcd\x47\xda\xd1\x13\x75\x36\x6d\x38\x39\x37\x6c\xc2\xf0\xfb\x27\x07\xf4\x00\xc8\x55\x3d\x3d\x63\x84\xb5\x84\x3b\x40\x26\x1f\x71\xe0\x33\x71\x89\x22\x36\x27\xec\xc6\x45\x9b\x72\x22\xc5\x46\xf3\x8c\x13\x59\xba\x9f\x63\x85\xbf\x4b\x9c\x76\x26\xee\x60\xf1\xd7\xc8\x93\x20\x89\xe4\x64\x2e\x3d\x5f\xf5\xce\x84\xfc\x82\xaf\xf6\xc1\x17\xbc\x00\xc8\xea\xe1\x17\x80\x86\xe2\x3f\x67\x46\x10\xbd\x6e\xbb\x67\xe6\x41\xaa\x7e\x01\x97\x3b\xb1\xd3\x13\x5a\x7c\x87\xb4\x9c\xd0\xe2\x67\x5f\xb0\x4e\x14\xe7\x74\xe6\xca\x13\x5e\x6a\x45\xd4\xea\x2c\x48\x7d\x26\x3d\xce\x59\x10\xe1\x2e\xa1\xe5\x2c\xf0\x12\xd4\xfd\xe9\x64\xa1\xcc\xe9\xe7\xa8\xf9\x28\x8d\xc5\x49\xaf\xb5\xe1\xfe\x19\x6f\xee\xfe\xa1\x40\x78\x3d\x47\xed\x72\x51\xdf\x93\x11\x8d\xdd\xfd\x3d\x90\x50\x04\xf3\x8a\x50\x35\x11\xc7\x13\xd9\xf8\xac\x98\x3b\x19\xd0\x68\x0c\x40\x01\x7a\xe7\x69\x3e\x91\x4a\xcf\xae\xb7\x67\xa5\x11\xc3\xcf\x51\xf5\xd8\xf0\xaa\x70\xd2\x17\x19\x38\x2b\xf9\xa9\xc7\x87\x7f\x95\x4f\x21\xe2\x19\xcd\x6d\x4e\x68\xcf\x9d\x77\xe1\x84\x18\x6d\x2b\xfa\x09\x37\xfa\xe9\xf9\xc0\x4a\xee\x00\x9f\xb3\x91\x0e\x49\xe4\x39\x83\x59\x68\xf4\x02\x72\xd7\xb9\x34\xd3\x09\xb3\x7a\xf6\x21\x0e\x88\x2c\xde\xb0\x60\x69\x26\xf7\xc7\x24\x34\xee\x2f\xf0\xbe\x00\x12\x3c\x05\x92\x99\xce\xc0\xed\xcc\x18\x04\x6d\xb9\x1d\xff\xcf\x20\x69\xed\x9e\x11\xae\xd8\xaf\x0f\x10\x36\xeb\x0f\x3a\x4f\xb5\x84\xcc\x13\xb9\xea\x5c\x2b\xe2\x44\x6d\x08\x6b\xbd\xce\x0e\x4f\x54\x93\x05\x28\x21\x5e\x38\x3b\xd8\xa1\x6c\xc4\xe7\x80\x6f\x83\x0f\x2e\x14\xe0\xbe\xc4\x9f\x88\x4f\xb4\x7f\xcb\x09\xa7\x33\xdb\x33\xcf\x01\x6f\x65\x5d\x3d\xce\x89\x00\x22\x5d\xf2\x4f\x84\x1f\x9a\x94\x9f\x10\x0b\x5f\x20\x42\x9a\x88\x97\x8c\x70\x4e\x38\xd5\x7b\x42\xa8\x37\xd5\x5f\x03\x60\x85\x3e\x15\xb0\xe3\x3b\x96\xf9\x9c\x98\xa0\x49\xf9\x12\xda\xba\x0a\xdf\xb5\x13\x19\x79\x9b\x44\x84\x13\x69\x25\xac\x15\x39\x91\x81\xf7\x05\x20\xf8\xa0\xe5\x94\xfc\x02\xdc\xa3\x75\x63\x3e\x77\x0c\x18\xfe\x00\x99\x86\x24\x85\x9d\x08\x40\xb4\xff\xc9\xc9\xca\x0d\xce\x19\x7c\x22\x02\xd1\x1c\xfd\x84\xe2\x26\x5b\xac\x3a\x11\x81\xd8\xbc\x04\x44\x20\xe6\xe4\x93\x77\xc0\xe7\xdc\xb4\x7c\xc9\x71\x4e\xb0\x7e\x1e\xd8\xa3\xf0\xeb\x37\xbf\xf7\x88\xac\xd2\xaf\x01\x90\x16\xce\x95\xaa\xdb\x79\x72\x0d\xfa\x00\xf1\x88\xb6\xc9\x9e\x27\x60\x62\xf6\x07\xb7\x36\x5b\x0b\x4f\x64\x59\x7b\xa1\x25\x43\xf1\xc6\xaf\x42\x3c\xcf\x9b\x83\x09\x1c\x08\xc3\xb3\x77\xcd\xc9\x1c\x68\xd2\x0f\x9c\x37\x0b\xe6\x1b\x45\x6e\xe4\x5a\xf2\xa9\x43\xe9\xf0\x6c\xc7\x89\x13\x49\xd0\x5c\x40\xec\x44\x51\x85\x64\xca\x87\xf2\x8c\x61\xf8\x3e\x70\xbf\x31\xa1\x79\x88\xc4\x86\x0f\x24\x1e\x1b\xb1\xce\x87\xe9\xa9\xb4\x04\x08\x2c\xaf\x82\x55\x27\xcc\xf4\x36\x23\x5d\x48\xf9\xe5\x74\x2b\x17\xac\xf0\x59\xe7\xfc\x42\xd8\x9c\x05\xe7\x6b\x89\x07\xc5\x0e\x40\x17\xb8\xbd\xf3\x65\x5d\x89\x33\x1c\xfe\x01\x37\x78\x11\xdf\x0b\x61\x72\xce\xf0\x75\x21\xc7\x40\x7b\x75\x78\x63\x42\x9a\x20\x6c\xe6\x16\x53\xaf\xcc\x01\xa6\x5f\xe0\x0a\x34\x00\xc3\xde\x44\x2b\x2f\xd8\xcc\xb3\xbd\x3f\xae\xcc\x42\x08\xfe\x00\xd1\x33\xaf\xe7\x17\xd8\x43\x52\x9b\x33\xfa\x6c\xca\x05\xf6\x6c\x75\xf9\x55\x80\xf5\x62\xa7\x57\xc1\xfb\xba\xdd\x5d\xb5\x7f\x7f\x85\xa5\xd6\xab\x82\xb0\xe8\xe0\x5f\xc8\xe4\x64\xfb\xf5\x05\xbf\xb2\x24\x81\xe4\x6a\xf0\x36\xf1\x82\x19\x05\x26\xc1\xfb\x6a\x84\xa0\xfa\x47\x6a\xd6\x17\xff\xbc\x1a\x27\xa8\x0e\xe0\xf1\xec\xda\x21\x57\xd0\xcb\x5d\x58\x73\x31\xe8\x6a\xb8\x0d\xca\x23\xa1\xf2\x0a\xc4\x41\x78\x8f\x3b\x20\x22\x06\x7a\x2d\x5a\x3f\x93\x98\xc1\x85\xbc\x44\x16\x09\x2f\xe4\x25\xca\x59\xc7\xf6\x1a\xc8\x37\xa9\x73\x71\x0d\xc6\x45\x68\x49\x8b\x36\x4f\x27\x93\xbd\x70\x63\xcf\x76\x64\xbb\x26\x97\xa4\x11\x91\xd3\xc7\x16\xf8\x6b\xdd\xb0\xa7\xc3\x4f\xaf\x9d\x1d\x0a\xe6\x24\x6c\x86\x31\x08\x9b\x99\xc5\x75\x4c\xa6\x91\xd0\x12\x8f\x1d\xf1\x4b\x6e\x1f\x7c\xc1\x5f\x2c\x96\xec\x8c\xf0\x17\x7c\xa4\x6c\xd2\xbf\x16\x25\x1b\xce\xb4\x7a\xe1\x86\x99\x1d\x1f\x7f\x21\xe1\x8c\xcd\x8f\xd7\x45\xa1\x42\x30\x82\x56\x3b\xdb\xa9\xf9\xba\x2a\xe6\xac\x35\x5f\xc7\xf7\x57\x98\x56\x5c\x17\x47\xa8\xee\x11\xf5\x33\x8c\x68\x28\x7f\xdb\x24\xb6\x5c\x37\x72\xd6\x88\x83\x5d\x37\xe3\x37\xdd\x46\xfe\x17\xa3\x09\xaa\xf3\xd9\xf5\xe3\xba\x59\x91\xc4\xfd\x21\xfb\xb9\x77\x19\xe4\xd1\xc9\x68\x2f\xde\x20\x8b\xf4\x08\x17\x9c\x9e\x86\x61\x0a\x2f\xde\x6c\xbc\xa2\x13\xaf\x17\xf0\xa0\x30\x9d\x77\x1d\xc5\x6d\x37\xe3\x25\x72\xc2\x24\x9f\x54\x96\xfb\xf3\x84\x40\x6e\x5f\x8f\x3b\x92\x0b\x6a\xfe\x0f\x32\x87\x8b\x7f\x5e\x0f\x72\x5d\x89\x9b\x5d\x08\x72\x46\x0e\x87\x5f\x70\x9b\x9b\x77\x45\x27\xaa\xba\x59\x0a\x50\x74\xe5\x86\x47\xb0\x93\x5e\xdf\x3f\x1e\x54\x4d\xed\xca\x0e\xba\x7e\x80\x67\xa3\xe6\x7f\xb3\x42\x8c\x34\xea\x37\x69\xbb\xf3\x46\xdd\x08\x37\x72\x16\xa8\x1b\xd9\x19\xc7\x6b\x46\x38\xe7\xd2\x31\xdc\xc8\x84\xee\xfc\x02\x37\xf2\xc7\xd8\x5f\xf5\x4e\x8c\x7f\xd2\xf7\x89\x29\xe7\xdc\x0e\xa4\x12\xcc\x6a\x73\x42\xe1\x17\x90\xbc\xb7\x79\x40\xc6\x3f\x69\xc9\xc8\x94\x6e\xe6\x70\xd3\x45\xab\xba\x43\xd4\x88\xad\x9e\xd0\x05\xbb\x8b\xde\x5f\xcc\x63\x38\x18\xf4\xc6\x55\xcd\x69\xa6\x6e\xdc\xd4\x1c\x98\x7f\xa3\xa8\xad\xe3\xea\xef\xcc\x23\xa4\x43\x78\x2f\x5e\x51\xc6\x6b\x00\x96\x71\x50\xbb\x10\x42\x6e\xf3\x08\x89\xdd\xdd\xa5\x2c\xca\x27\x14\xbe\x0b\x18\xba\x57\x80\x74\x34\x76\x1c\xbc\x0b\x29\x9f\x20\x84\xbb\x9b\x53\xbb\xdf\xc8\x94\xee\x12\xa0\x77\x65\xfe\x9b\xe1\x1f\x60\x1d\x14\xe5\xbc\x2b\x02\x2b\xa7\x3b\xc0\x1e\xbe\x3a\xa4\x7e\xdb\xef\xc3\x42\x2f\x91\xf0\x66\x40\xb3\x08\xe1\x8d\x34\x83\xc3\x7b\x0e\x1b\xc5\x2b\x5f\xe4\xdd\x48\xdb\xb5\x07\x0d\x81\x93\x62\x0e\x37\xd9\x59\x75\x1b\xec\xb4\xfa\x7d\x38\x32\x4a\xc4\xbb\xe1\x9a\x94\xed\x53\x7c\x07\x60\xee\x19\x04\xc2\x63\x74\x8c\xef\x40\x6a\xe1\x57\x07\x07\xb4\x46\x5a\x51\x50\x1e\xd0\x8a\x58\x4d\xc5\xdf\x23\x2f\xa0\x55\x12\x37\x3c\x8d\xc6\xeb\x7d\xa6\xa7\x94\x58\x7d\x23\x60\xd8\xf6\xcc\x1b\x9e\x46\xb9\x1a\x86\xcc\x2e\x23\x31\xef\x5e\x97\xad\x6e\xb3\xce\x0d\x73\xb0\x95\x85\x77\x47\x2d\x2a\x1f\xec\x7e\x22\x39\xb2\x40\x86\xf2\x2d\x36\x31\xdc\x1d\x1e\x71\xba\xea\xdc\xf0\xb2\x1e\xba\x6b\xdd\xb0\x28\x38\xee\xfe\x1e\x88\xc3\xf7\xfc\x06\x57\x64\xac\x1b\xb0\xdf\xfb\x18\x0c\xa6\xb3\xf4\x73\x94\x21\x12\x6b\xba\x91\x4c\x26\x4c\xda\x90\x15\xd0\x3e\x12\xf7\xba\xcc\x65\xd7\xe8\xb9\x71\x99\xb3\x51\xe5\x86\x2f\x52\x76\xf6\xae\x1b\xce\x48\xce\xce\x76\x4f\x1a\xdc\xdd\x46\xbe\x7b\x71\xdf\x1b\x97\x3d\xfb\xa1\xdc\xb8\xec\x39\x01\xc6\x4d\x81\xe2\x45\x6c\x7f\x9c\x95\x3c\x03\xa4\xdf\x7c\x75\x70\xf0\x03\xbf\x00\x0d\xf1\xe6\x19\x5c\x7c\xc1\x43\x20\xa5\xd0\x6b\x4a\x88\x7c\x33\x9e\xef\xdc\x04\xa1\x15\x94\xf8\xd6\xe4\xdd\xa8\x4e\xfc\x3a\x68\x48\x77\x13\xf3\x57\x57\x9b\x7b\xa7\xb4\x21\xf8\x21\x9e\xe9\xe5\x82\x78\xaf\xcb\x64\x09\xdd\x13\xee\x75\x57\x6c\xae\x8e\x76\xf3\xae\xe8\xc0\xbb\xfb\xe0\xf4\x84\x83\xeb\xae\x58\xec\x87\x7f\x23\x59\x4d\x79\x75\x88\x04\xde\x26\xed\xc8\x55\xe3\x82\x38\x37\x0a\xc6\x84\x49\x2d\x8b\xf0\x19\x67\x11\x3f\xfd\xda\x31\xb8\x90\x3b\x6e\xf1\xc6\x4d\x30\x4c\xc7\x2e\x06\xc1\xf9\x39\x12\xd1\xbf\xbe\x07\x4a\x9a\xec\xc0\xc7\xdb\xf9\x93\xee\x7b\x43\xe4\x82\xe6\x8f\x88\x23\xbb\xbb\xdd\x48\xa8\xed\x54\xc8\xf7\x0d\x27\x7b\x6f\x17\x52\xb2\x84\xc9\x1c\xef\x82\xd6\x97\xdf\xc8\xc9\x12\xd3\x1d\x10\xa3\x8c\xf4\xd0\x97\x67\xdd\xae\xef\x25\xad\x0c\xdf\x75\x6f\x86\x2c\xc9\x22\x70\xf3\x72\xf8\xe2\x56\x2c\x81\x67\x90\x40\x9e\xb1\x9a\xe9\x46\xcc\x92\x45\xd0\x1b\x49\x5b\x6c\x86\xba\xe9\x4b\x25\xf9\xec\xd9\x98\xa2\xca\x6d\xc6\xf1\x25\xb5\x33\x02\xc4\xdd\x06\xa1\x14\x59\x7b\x36\xba\x64\x16\xb5\x07\xc6\xab\x6a\x13\x44\x92\xc2\x1f\x56\x22\x1e\x6e\x23\xe7\xad\xc4\x85\x07\xba\x69\x27\x4d\x7c\xa8\x9b\x76\xc6\x92\x07\x02\x4a\xd1\x0a\x1f\xf8\x5a\xbd\xea\x04\x3f\xa8\x4c\xec\x4c\xc0\x0f\xae\xb3\xaf\xd8\xc6\x27\xd1\x50\xe4\x17\x82\x2f\x34\xfd\xb0\x28\x89\xb7\xf1\x81\x82\xda\x36\xfd\x87\xfa\xe7\xee\x29\x3c\xa0\x4c\x6a\x67\xca\x54\x7a\x3f\xa3\x46\xa9\xdf\x5f\x22\x4a\x71\x30\xc7\x03\x97\x70\x9b\x4f\x9f\xfc\xa3\x10\xd7\x84\x32\xb5\x99\xee\x60\x47\x5b\x2b\xc8\xf4\xf3\xdc\xd4\xbe\xd9\x81\x5f\x80\x6e\x50\x84\xeb\x29\x84\xaa\xf8\xd9\x53\x98\xbb\x5f\x3d\x50\xa8\x71\xfa\x88\x67\x09\x35\xd3\x72\xfa\x53\x08\x55\x63\x4a\x41\x65\xf3\x57\x7b\xa2\xb8\xaf\x16\xc5\x7a\x31\x22\xae\x0f\x9c\xc0\xb3\x73\x0d\x3c\x74\x18\xf3\x46\xc3\x15\xc3\x77\xe8\xa7\xc6\x92\xe4\x25\x77\x3d\xc8\xb7\xfc\xaa\xf5\xf7\x54\xe4\xe8\x90\xa8\xfb\x2c\xb1\x66\xf8\x2e\xf4\xa0\xd8\x7f\x6e\xaf\x1e\x50\x9a\x7c\xb8\x83\x87\x2f\x08\x2a\xd4\x3a\x8b\x7e\x3f\x48\xc0\x9c\x1d\x14\xf2\xc0\xdd\xc3\x09\xe0\x1f\x44\x73\xd9\xc8\xf9\x34\x42\x49\x34\xf9\x81\x28\x65\x6f\x8e\x07\x69\xf6\x5c\x68\xe8\x41\x7a\x18\x17\x60\x7c\xa0\x18\x70\x36\xc6\xa7\x21\x05\x85\xd8\xfc\xd3\x2e\x5c\x7f\x34\x21\x08\x4a\xf6\xb9\x7e\xe0\xc3\x6d\x3d\xf8\x83\x68\xb0\x6c\x6d\xda\x83\xb4\x7c\xd1\x7f\xe5\x28\xf0\x20\x32\x3b\x5b\x63\xfb\xc0\x97\xc3\x0e\xc4\x4f\xd0\xfd\xd4\xcf\x99\xad\xcc\xa3\x71\xd3\x3d\x7f\x46\x5e\x1b\xd3\x51\x71\xd9\x76\x8d\xa7\xf3\x28\xe9\xfd\x9e\x90\xd0\x54\xef\x77\xe2\x69\xf3\x0f\x60\x72\x3e\x0a\x48\xd8\xec\x9c\xfd\x4f\xe7\xd9\xf2\x0e\xfc\x68\xc1\x05\x31\x64\x72\xc9\xd6\x78\x3e\x9d\x44\x5c\x7b\xda\x59\xaf\x4b\xed\x25\x69\x15\xfb\xe6\x3d\x28\x93\xf7\x22\x37\xd0\x94\xd8\x0f\xff\xa1\xa6\xc4\x5a\xe3\x07\xb1\xdc\xd6\x02\x3c\x10\xcd\x9c\x90\xed\x19\xa4\x4f\x92\xfd\x9e\xc1\x35\x69\x53\x51\x53\xd9\xa6\xf7\x07\xe1\x6f\xf1\x9a\x01\xea\xa3\x48\x3b\xf5\x2c\xd1\x2d\xbb\xb0\xdf\x03\xbd\xbc\x0b\xb3\x3e\x28\x95\xe7\x3b\xf8\x83\x52\x79\xc9\xd4\x03\xe1\x73\xe6\xb3\x0f\xbc\x33\x1c\xe7\xfa\x4c\x4e\x58\x5a\xd6\x87\xa2\x59\xf5\x07\xc8\x9a\xed\x5d\x9d\x9c\xb0\x20\x30\x39\x21\x41\x80\x82\x97\x15\x80\xcf\x84\x45\xd3\xc7\x6a\xf2\xe4\x4a\x54\x79\x7e\x94\x43\xea\x71\x67\x61\x05\xf5\xb8\x83\x95\xcb\xde\xf4\xec\x10\xcf\xab\xdf\xdf\xa1\x27\xd1\x80\x88\x0d\x0f\x23\xfa\x0e\x7b\x9a\x18\xf9\x43\xd1\xc9\x7c\x92\x6a\xf6\x17\xf5\x3a\x08\x02\xc1\xf0\x20\x1e\x7a\x53\x96\xf0\xd4\x87\x37\x0d\x11\x7c\x36\x05\x3c\xf0\x9f\xb0\xa7\xf7\x73\x22\x3d\x8f\x84\x9f\x07\x6a\x75\x27\xe2\x78\x98\x3d\xd9\x94\x03\x25\x93\xed\x7d\xf0\x20\x8b\xdf\x4b\x12\x40\xc1\xe3\xd7\x51\x85\xae\xca\x9a\xa1\xe7\x13\x8d\xee\x0e\x9e\xef\xaf\xd6\x7d\xb2\xae\x45\xaf\x6d\x31\x7b\x96\x34\x17\x16\x4d\x1e\x48\x73\xe5\xd5\x0e\x7c\x2f\x08\x5d\xb8\xa8\x7b\x4f\xaf\x81\x73\xe5\xf7\xe1\xc2\x5c\xfc\x7c\x6d\x89\x2b\xa4\x3d\xc8\x65\x63\x5b\xca\x83\x5c\x36\x96\xde\x1f\x98\x02\xec\x35\xfe\xdc\x2c\x36\xa8\xf9\x42\x78\xb3\xfd\xec\x41\x35\x13\x67\xca\x7d\x90\xca\x26\x87\x71\x08\x01\xe9\x8e\x66\x7b\xe0\xeb\xe0\xf0\x8c\xe7\x21\xb7\x70\x1b\xd7\x68\xcb\x4e\x88\x3f\x77\x9c\xd6\xf3\x20\x47\xc3\x70\x9b\x03\x5a\x50\x41\x2e\x1b\xfb\xa9\x3d\x0f\x07\x74\x87\x4c\xbc\xf1\xb3\x65\x4b\x20\xc0\xb9\xcf\x6a\xc3\x5e\xf7\x41\x99\xc5\x6b\xe1\xa6\xb5\xa9\x5d\xd0\x9f\xdf\x27\xc4\xaa\xda\x80\xd0\x87\xc5\xc7\xb6\x11\x00\x43\x6d\x06\xb9\xba\x0d\x0c\xf9\xe8\xe2\x62\x5b\xa2\x5a\x5e\xf2\xf5\xff\x3f\xaf\x89\x0d\x62\x5c\x56\xfd\xb3\xd8\x10\x0b\xa8\x34\x6c\xb1\xfd\x68\xa2\xdc\x66\xa4\x9d\x56\x0f\x45\x53\x4f\x5a\x2d\x62\x01\xb3\x12\xba\xc6\x06\x33\x85\x92\x21\xc5\x06\x27\x7c\xf1\xa6\xd8\x12\xd2\xae\x7c\x10\x28\x36\x94\xf5\x50\x31\x81\xd8\x50\xd6\x43\x01\x9e\xb1\x41\xcc\xd3\x8d\x39\x36\x58\x31\x54\x90\x2d\xb6\x0c\xdd\xe3\xd4\xf8\x4c\x8d\x53\x05\xae\xcc\x09\xfb\x39\x52\x19\x79\xbe\x19\xf3\xf5\x76\x41\xa8\x4b\x9e\xef\x92\xc0\x9a\x82\x0e\x62\x43\x45\xbe\x08\x8d\x0f\x01\x4b\x21\x69\xb1\x21\xab\xb1\xb2\x1c\xc7\x86\xc4\x78\x59\xde\x3d\xb1\x55\x9c\xe0\xae\x05\x22\xca\xae\x67\x4d\x18\x15\xf9\x74\x5f\x8e\xad\xa2\x42\x6a\xf3\x73\x22\x70\xf8\x07\xd2\x30\x21\x10\x0a\x5c\x48\x57\x17\x1b\xe5\x2b\xd5\xa4\x8d\x0d\xf2\x95\xb4\x8d\xb1\x35\x06\x7a\xab\xc3\x25\x0e\x45\x74\x2d\x19\xce\xaf\xef\xef\x2f\xb4\xb5\x22\x94\xa4\x50\xec\x49\x6c\x4b\x1c\x0a\x85\xf9\xc5\x16\x08\x13\x2c\xfa\x1e\x41\x02\xe2\x94\xb1\xa1\xc0\x9c\x32\x92\xc7\x06\x79\x47\x54\x3e\xb6\xe0\x09\x11\x88\x83\x85\xf0\xfd\x3e\x72\x0a\x7b\xcb\x60\xd4\xef\x3e\xa1\x41\x22\x3b\x3c\x21\x04\xc4\x36\xb5\xe1\xec\x9a\x7c\x44\x3b\xf3\x4a\x6b\x40\xe8\xa5\x9a\x71\x90\x7a\xa9\xf0\x0c\x3b\x67\x28\x08\x74\x22\x95\x20\xdc\xe1\x48\xe2\x15\x77\x9c\xf1\xe2\xef\x39\xc3\xa9\x25\xc1\x4b\x20\x87\x3e\x40\x12\x63\x39\x6c\xc5\x86\xa8\x37\x79\xca\xc4\xb6\x84\x93\xa2\xa2\x4c\xb1\x41\xf8\xe8\xaf\xe7\x20\x72\x5e\xe1\x04\xd2\x99\x0c\x4c\x56\x40\xf2\xb1\x9c\x48\x50\xee\x3d\xa3\x57\x80\x08\x7d\x6c\x50\x14\xf5\xd7\x0b\x00\x81\xd1\x76\x02\x04\x45\x48\x05\xb5\x8f\xd3\x7a\xc6\x36\x09\x03\x01\x15\x69\x8b\x5d\x41\x28\xb6\x89\x5d\x32\x5a\xec\x48\xab\x16\x5a\x13\x2a\xf7\x2a\x18\x3d\xb6\x1d\x39\xc3\x7c\x50\x90\x4a\x2f\xbf\x48\x11\xd2\x01\xa8\xd6\x5a\x6c\x88\x7b\x93\x99\x3a\x36\x94\x97\xd8\x4c\x1a\x76\xce\x50\x07\x69\xff\x99\xa1\x5f\x40\xf5\x4d\x2f\x09\xe5\x25\xf2\x8b\x98\xc0\xd3\xa0\x7b\x09\x2c\x2f\x61\xe2\x74\x10\xec\x46\x65\x24\xbb\xe9\x3e\x9a\x4b\x02\x9a\x0a\xad\x8c\x6d\x49\x40\xa3\x98\x39\x1c\x5c\xa3\xc9\xcd\x81\x58\x4c\x03\x05\xf5\x28\xfa\xab\x03\x38\xe6\xb9\xbd\x04\x9a\x92\x7c\xd6\x4f\x6c\x6b\x75\x1b\x2e\x46\x26\x77\x27\x5d\x7a\x7f\xa3\x4c\x8b\xed\x82\x59\xa9\x69\x35\x17\x6a\x1e\x56\x01\x14\xa9\x72\xfa\xab\xcd\x7a\xaf\x5e\x3e\x72\xe5\xc8\x81\x38\xb6\x8b\x3a\x02\xb3\x27\xe4\x24\x1e\x26\xae\x14\x5f\xaa\xc0\x71\x71\xcb\x0c\xf1\x8b\x69\xf0\xd5\x5e\xf2\x4d\xde\x8c\x85\x37\x9c\x53\xcc\x0f\x6f\x18\x3e\x7c\xf4\x6f\x96\x24\x77\x1b\xd1\x18\xdd\xef\x4f\x52\x67\xb5\xc1\x1f\x55\x34\x37\x36\x68\xaf\x36\x63\xe9\xcd\x93\x2a\x9c\x62\x7e\x02\x23\x25\x4c\x79\xd5\x18\x02\x5f\xcf\xe1\x05\xc1\x13\xa2\x99\xd8\xa2\xec\x70\x31\xca\x3d\x19\x18\xa4\x09\xc2\x94\x37\xcd\x6e\xa0\x1c\x53\x65\xfe\xd8\xa8\x1c\xd3\xcd\x2b\xb6\x07\x3e\xd1\x96\x37\x50\xaf\x2d\x1b\x62\x70\x05\xd5\x65\x3a\x36\x04\xcc\x24\xed\x59\x42\x42\x1f\x55\xee\x8f\x04\xeb\x9d\x22\xa6\x23\x6d\x81\x53\xd8\xd5\x26\x4a\x87\x3b\x00\x47\x4f\xfe\x00\x5e\x7c\xd3\x1f\x90\x1d\x0d\xb5\x21\xc0\x09\xe2\x09\x09\x8b\x95\x2b\x30\x52\x02\x47\xaf\xea\x0f\xb6\xb2\x3c\xfd\x1c\x66\x0e\x1d\xe2\x84\xfc\xc3\xe9\xf5\x3e\x2a\x8e\x6b\xc7\x12\xd2\xf3\x18\x27\x13\xd2\x0d\xf7\xa6\xef\x11\x46\x68\x01\x20\xd1\x31\x43\x25\x76\x23\x51\xa4\xd1\x96\xa6\x0c\x9f\x6a\x43\x90\x22\x8a\x76\x24\x15\xd8\xaf\xb5\xc5\x09\x6e\x8f\x72\x8e\x89\x54\x6e\x68\x60\x35\xc1\x02\x97\x33\x4f\x10\x25\xb4\xe4\xde\x14\x09\x61\xf9\x2f\x3a\x96\xe0\x78\xd1\x5f\x2f\x20\x58\xc4\x03\xd0\xb4\xf5\x7a\xff\x62\x07\x9a\x11\x1c\x0f\x55\x23\x26\x12\x1c\x0b\x4d\x9a\xd3\x8f\xed\xcb\xed\x81\x22\x96\x5a\x61\xfb\x99\x91\x96\xb0\x44\x90\xde\x25\x34\xa5\x1f\x11\xc4\xcf\x71\xce\x55\x96\x31\x52\x7b\x00\x13\x7d\x00\x19\x45\xb9\x68\x23\x05\xb5\xd0\x7e\xbe\x60\x5a\x0d\xb3\x25\xa3\xd8\xfb\x37\x52\xb0\x20\xb9\xdf\xe7\x0c\xc5\xf2\xd3\x12\x52\x66\x12\xbf\x4b\x0c\xb0\x91\x08\x90\x96\x10\x32\xb2\x97\x18\xb8\x5c\x2b\x39\x4d\x24\x08\x21\x2a\x1c\x1c\x69\x09\x21\x33\x19\x46\x08\xa8\xc9\x43\xec\x28\x75\xe0\xb1\xa8\x6b\xea\xf0\x4b\xf7\x8c\x98\x1d\x4f\x62\x5b\x1a\xc8\x5a\x69\x34\x42\xfe\x1e\x53\xdf\x34\x0e\xe6\x7c\x56\x1b\x17\x0f\xef\xf2\xe0\x8c\x7d\xb0\xe6\xb6\x96\xe4\x4d\x82\x46\x43\x26\xdb\x48\x13\xa4\xc7\x07\x81\x42\xc6\xf0\x0c\x26\x69\x8f\x96\x38\x91\x51\xe8\xf5\x1c\xbb\x3c\x7e\x93\x94\x33\xd2\x5e\x91\xe7\x40\xcb\x45\x6e\x3b\x45\x1e\x44\x42\xd4\xbb\x8a\xc5\x46\xda\x21\xe5\x7a\xb6\x74\x2b\x94\xc7\x78\x24\x98\x82\x14\x2e\x1c\x09\x6e\x85\xba\x3a\x47\xda\x89\xf5\x06\xf0\xce\x73\xa7\x17\x50\xd8\x40\x86\xab\x48\x60\xde\x2f\x1c\x84\x2f\x4d\x37\x61\x80\x17\xe0\x34\xa1\x42\x66\x3b\x79\x5d\x44\x42\x72\xa0\x64\x70\x9d\xb0\x86\x7a\xfc\x73\x22\xb0\x4f\x13\x5e\xbc\x7b\x1a\xe3\x4e\x88\x3b\x26\x3b\x27\xe9\x9a\xda\x54\x2d\xf8\x48\xb0\x88\xbf\x0f\x31\xfd\x68\x54\xf9\x22\x12\x12\xed\x4a\x5d\x13\xe9\x42\x6a\x62\xf1\xd6\xb4\x78\xed\xac\x3e\x12\x37\x32\xf3\x49\xf6\x48\x3f\x65\x90\x34\x01\xba\x09\x4e\x63\xdc\x0d\xe7\x22\x03\xf0\x41\x6d\x56\x09\x70\x09\x69\x6b\x55\x57\x29\xd2\x62\x55\x23\xf9\x08\x21\x37\x9d\x59\x57\x7a\x18\x72\xa6\x15\x22\xaa\x21\x4f\x53\x8d\x87\x87\x58\x4b\x46\xad\x23\x5b\x62\x22\x3d\x08\xcd\x30\xcc\xa0\x3c\x70\xf6\x8c\x48\xcf\x3a\xe6\xbe\x4b\x25\xd6\x3a\x12\xd6\xe5\x0d\x67\xe6\xa3\xff\x88\x4c\xee\x27\xf9\x22\x23\xd1\xad\xcc\x8d\x91\x51\xb9\xc8\xcc\x30\xd3\xf4\xa3\x58\xcc\xc8\xdb\x8e\x3c\xa1\x7e\x61\xed\xb2\x6a\xd2\x44\xde\x20\xd4\x26\x4f\xe0\xc2\x65\x2f\xab\x8d\x4c\x67\xe2\x6e\x99\xc9\x82\xb4\xeb\x99\xa6\x22\xc1\x38\x27\xd6\x6c\xd0\xfb\x50\x3f\x28\x5d\x74\x64\x6a\x18\x7c\x0e\x73\x5a\x94\x55\x09\x05\x23\x93\xfd\x6a\x93\x32\xc2\x1c\x14\x80\x1b\x19\xf1\xae\x8a\xe1\x8a\x8c\xf2\x00\xaa\x2b\x14\x39\xfd\x40\xc0\x33\x42\x1e\x52\xa1\x5d\x4e\x84\x80\x3b\x7c\xd0\x56\x07\xf9\x27\x88\xcc\x3f\x24\xbc\xa0\x0e\x72\x46\xbb\xab\xfd\xb3\x24\xff\x50\xbf\xbf\x42\xa9\x5f\x23\x2f\x8e\x1e\xbe\x2f\x66\x06\x36\x28\xae\x2c\x32\x4a\x8d\x9a\x32\x66\x64\xe8\x53\xc8\x6e\xe4\x4c\x3c\xf3\xb6\xe7\x13\x23\xb8\x4d\x3c\x13\xe2\xe5\x7c\xc3\x13\xde\x2f\x3c\x7c\x41\xfb\x8e\x28\x5f\x73\xd0\xcc\xfa\x4e\x0a\x1a\x8a\x5c\x40\x9d\xb2\xdb\x05\xc9\x51\x35\x67\xd8\xa2\x54\x5c\x2f\x72\x61\x5d\x35\xad\xa1\x80\x38\xbf\xfa\xbb\xd1\xf6\x04\xa0\x37\x93\xa0\x99\x2b\x0a\x0f\x4b\x32\xce\x95\xb9\xd1\x34\x41\x04\x43\x58\x7f\x1d\xb9\x42\x8d\x20\x31\x28\x23\xbb\x90\xe9\x71\x46\xf6\xa0\xac\x98\xda\xc8\x08\x7f\xa8\xde\xa6\xca\xf0\x11\x3f\x67\x6a\x1c\xcd\xb8\x92\xc1\x69\xc6\x4c\x1e\xd4\x7e\x93\xb7\x26\x32\x52\x0e\xea\x9c\x67\xd8\xa8\x5e\x38\x83\x84\x83\xd9\x58\x8b\x04\x83\xfd\x35\x16\xfc\x8f\x45\x8a\x72\xb0\xcc\xb4\xfa\x43\x76\x5e\x79\x86\x46\x0e\xe8\x71\x7d\xaa\xa0\x33\xc9\xf3\xd5\xc1\x84\x19\x5f\xd0\x83\xd2\x44\xd1\xa6\x91\x91\x80\xd0\x52\x73\x46\xc0\xaf\x3c\xd6\x23\xd3\x46\x64\x94\x0c\x3a\x68\xf9\xf9\x43\x37\x8d\x4f\x1b\xe2\x4a\xf6\x29\x44\x79\x80\xcd\x13\x86\xce\xc4\xdc\x24\x23\x29\x90\x72\x3a\x46\x86\xc1\x47\xce\xb8\x91\x3b\x31\x7c\xb8\x43\xec\x8e\xae\xfb\x19\xbe\x38\x8a\x26\x8a\x8c\x3a\x50\x9b\x8f\xf9\xa0\x97\x9f\x76\x17\x05\xf4\x8b\x4f\xf9\x12\x77\xa6\x09\xf1\x44\x8d\x39\x5d\x5b\x32\xcc\x2f\x4a\x99\x1e\x79\x09\x2b\x35\xbc\x7e\x86\x49\x4c\x93\x91\x89\xcb\xec\xd0\xfc\x60\x9f\x69\xa6\xec\x93\xe2\x97\xe6\x33\x41\xc7\x4c\x58\x27\xe9\x98\x77\x04\x9e\x33\x61\x32\x34\x59\xe7\xdc\xed\x07\x3b\xaa\xf6\x4e\x3d\x9f\x3a\xdc\x11\x5c\x63\x56\x82\xf2\xfa\x32\x30\x45\xde\x81\xa2\x56\x98\x64\xd4\xd7\x57\x6a\xd6\xc8\xac\xd7\x69\x22\x44\x7d\x89\x57\xb8\x23\x8d\xcf\xe6\x01\x90\xd7\xd3\x67\xe0\xc0\x89\x16\x7f\xcf\x07\x7d\x8b\x34\x01\xe4\x09\xb2\xc8\x9c\x91\x27\xa8\xc8\x31\x23\x32\x94\x15\xc5\xbc\xe5\x00\xef\x32\x0a\x1c\x3f\x54\x50\xed\x9b\x1d\xf8\x05\x28\x64\x8c\xf4\x90\xa0\x5e\x20\x39\x09\x02\x63\xfd\x09\xf5\xb7\x91\x08\xf6\x1d\x39\x4a\x44\x3e\x19\xa2\xe6\x0e\x3b\xa2\x4f\x35\xc3\x93\x29\x67\xfc\x3e\x4f\xa1\x56\x74\xe2\x14\x1a\x8b\x50\xcc\xa0\x58\x59\x9b\xe1\xcd\xac\x64\x50\x91\x4f\x1c\x43\xb3\xe3\x13\x74\xde\x7b\x76\x3e\xec\x40\x23\x5e\x1b\xf4\xd9\xda\x04\x04\xd8\x16\xd9\x19\x23\x43\x8c\x2b\x52\x98\xe7\x8b\x69\x7b\xd4\x23\xbc\xa1\x87\x1f\x37\x7e\x2f\x98\xa1\x7e\x7f\x37\x48\x50\x4e\xa1\xbc\xda\xb8\x19\xf9\x60\x23\xb2\x24\x2c\x90\x5c\x04\x81\xc7\x43\xa5\x5c\x4b\x34\xf0\xb6\xde\xcc\x4c\x2f\xec\xa1\x27\x74\x67\xa4\x15\xd2\x7c\x50\x90\xdf\x0a\x8d\x8c\xd4\x49\x65\x33\x5f\xb8\xe1\x89\xe2\x93\x7c\xb3\x06\x9e\x20\x04\x15\x8e\x32\x8e\x45\xbe\x7f\x92\x5e\xab\x3d\x61\x70\xf1\xf3\x13\x7b\xaa\x05\x20\x16\xa5\x5a\xa2\x82\x85\xaa\x98\xb4\xdf\x0f\x4c\x2a\x9a\x0f\x34\x34\xc5\x77\xc9\x0c\x13\xd6\xd8\x7e\x75\xad\xc9\x4f\xe6\xd7\xea\x1e\x0a\x9c\x6c\x32\x80\x5a\x0e\xd5\x84\xf4\xe1\x06\x1a\x60\x0f\xaa\x2d\x1b\x01\x1e\x12\x26\x77\xb0\x8e\xb1\xd5\xf7\x19\xde\xdb\xe1\x0d\x46\x71\x87\x97\x74\xf3\x60\x83\x74\x4b\x2b\xdb\xcf\xfa\xa6\x7e\x48\x54\x21\xa9\x0d\x7f\x8e\xe2\x36\x79\x99\xdb\x63\x09\x3b\x9a\x50\x41\x71\xce\xe6\xee\x98\x31\x5c\x6d\x48\xa0\xaa\xa6\x14\x85\xe9\x2a\x85\xf0\x85\xbe\xcf\x12\x95\x4a\xa2\x61\xbe\xab\x7d\x62\xbe\xcd\x3f\xc0\x37\x79\x73\x87\x37\xe8\x9a\x3b\x44\x64\xaf\x64\xad\x92\x51\x41\x5c\x17\xc5\x82\x7c\xcc\xbe\x78\x17\x06\xc6\x0a\xc1\xca\x92\x1f\xab\x9c\xad\xa2\xb0\xf8\xe7\xf4\xf7\x30\x71\x65\xbf\x3f\x70\x6f\x52\x13\x55\xda\x95\x52\x26\x0a\xa4\x47\x4b\xd8\x05\xd2\xa3\x0a\x3d\x47\x59\xb2\x60\x95\x77\x58\x14\xe4\x73\x51\x8e\xf6\x28\x28\xde\xa0\xe2\x76\x51\xe0\x44\x64\xfb\x4e\x29\x08\xa8\xa8\x6e\xa3\x08\xa5\xe1\xb5\x24\xb5\xa2\x6a\x20\x51\x58\xc3\x5d\x07\xa2\x54\x9e\x48\x43\xbc\x92\x55\x0a\x00\x15\x27\xb2\xba\x03\x92\x0c\x01\xa0\x92\x31\x48\xd6\x2c\xac\xe1\x9e\xdc\xe1\xba\xba\xbe\xfa\x47\xf5\x8a\xe9\xfe\x80\xb1\xd5\x9f\x33\x2e\x57\xe3\xc3\x42\x56\xbc\x61\xad\x31\xb1\xb0\xda\xc0\xb8\xe1\xe7\xc8\xa2\x60\x00\x04\x31\x5e\x97\xac\x82\xb8\x56\xeb\x6a\x0a\x2d\x62\xa2\x69\x05\x0e\x42\xb6\xe9\x15\x68\x97\xa6\x77\x28\x90\x30\x47\xb2\x41\x41\xe0\x91\x42\x5c\xa2\x04\x01\x32\x3d\x03\xa4\xd8\x6e\x9e\x00\x71\xfa\xd5\xe3\x85\x1e\x84\xd3\xa8\xd3\xf9\xda\x73\xd6\x74\x17\x17\x28\xa8\xf6\x24\x9f\xab\x28\x10\xdf\x4a\x71\xbb\xe3\x9a\xa7\x15\xc0\xe2\x55\x5e\xed\x03\x8c\x50\xfd\xc3\x7f\x67\x18\x27\x51\x82\xbd\xc8\xa9\x29\x0a\x92\xaf\x54\x1f\xb2\x51\x16\x08\x7c\xc8\x10\xe9\x94\x8d\x33\xf0\x9c\x96\xbb\x4e\x14\x66\x4f\x31\x92\x22\x6d\x63\xf5\x96\x0c\x4e\x50\x10\x83\x76\xab\xa8\x2c\x5d\x94\x71\xc2\x09\xca\x1d\x5e\x7c\x41\x58\x38\x40\xd7\x4d\x57\x58\x0b\xca\x20\x9c\xb4\x1a\x6a\x06\xf3\x67\x89\xea\x11\xf9\xc5\x94\x1c\x6d\x5d\x41\x97\xc8\xe9\x11\xe1\xc0\x53\x92\x29\x1b\x3c\x78\x14\x92\x1f\x05\x12\xde\xeb\xdc\xec\x1c\xc1\x8b\xda\x99\x0b\x5f\x23\x40\xc4\x93\x23\x57\x14\x48\x78\x25\xe5\xf1\x1b\x56\x53\x96\xfc\x97\x95\xdf\x2c\x0a\x1c\xa9\x4b\xf2\x41\xdf\x99\xec\xc3\xdd\xe3\x52\x23\xd6\x5f\x7e\x22\x75\xfd\x3e\xd0\xd6\x84\x6e\xe7\x1e\x14\xff\x80\x1b\x9a\x94\xa4\x05\x16\x37\xab\xfa\xcb\xce\x2d\x70\xfb\x61\x07\x82\xf9\xb1\x2d\xd2\x66\x42\x81\x72\xed\x4a\xf3\x1b\x05\xf6\x34\x9b\x6b\xca\x41\x77\x18\xcd\x18\x0e\x43\xd5\x7b\x8a\xf0\xb5\x62\x0d\x50\x39\x7e\x82\x8d\xd5\xfe\x59\x82\x47\xc0\x12\xbc\xa4\x83\x68\xe4\x93\x03\x7f\xed\x17\x31\x3a\x7e\xd6\xa0\x45\x9d\xeb\xa6\xfe\xa2\x96\xf0\x39\x2a\x66\x8f\x90\x49\x8b\x75\xd9\x05\x36\xba\xf2\xea\x80\x49\x61\xdc\x06\x03\x37\x7f\x3a\x31\x03\x4f\xf9\x44\xee\x29\x13\x93\x0b\x51\xfa\x5e\x33\x45\xc8\x17\x3d\xbc\x7e\x92\x3d\xa9\x0d\x44\xf6\x59\x44\xe9\xd0\x17\x1e\x5c\x1c\xd0\xef\x73\xc9\x9e\xe1\xbd\xe1\x05\x7d\xc0\xe8\x63\x63\x1e\x02\xe8\x4a\x32\xcb\x43\x92\x96\x17\xb9\x41\x9a\xb7\xf2\x7a\x0e\x85\x8a\x84\xc6\x82\xa2\xe7\xaf\x6d\xbb\x11\xd8\x61\x3c\x78\xc0\xa2\x8d\x47\x0f\xfa\x4f\xe6\x81\x4b\xaa\xaa\x2f\x98\x51\xaa\x52\xbe\x91\x28\x94\xaa\x74\x93\x28\x0f\x0f\xb3\x09\x1a\x1c\x91\x8a\x69\xfe\x83\x54\x3d\xdd\x53\xb8\xf9\x81\x10\x05\xaa\x42\x95\x56\x89\xca\xb8\x37\x51\xcc\x0a\xb1\x4a\x81\x92\x51\x37\x0a\xc6\x43\xed\x86\x7c\x9b\x7e\x0e\xa6\x29\xb4\xa9\x28\xf4\xa9\xfc\x23\x51\x59\xf2\x4a\x68\x54\x37\x4e\x68\xf8\x05\xa4\x5f\xf2\x00\x50\x05\xfa\x74\x56\xa8\xfa\x14\x15\x17\x35\x41\xe7\xa1\xcb\x54\x45\x04\xf3\x90\xea\xb0\x26\x4e\x48\x13\x4c\xb8\x3f\xea\xf4\xd7\xc4\xa3\xe3\x15\x24\x94\x1e\x6d\x9e\x00\xf1\xc8\x23\xc0\xf4\xa6\x38\xc8\xa8\x70\x1e\xb2\x0e\xab\xc2\xb2\x66\xcb\x57\x45\xd6\x6f\xf9\x64\x46\xa5\xe4\x24\xff\xbd\xa8\x99\x97\x11\xcd\x00\x7a\x37\x6b\x53\x6b\x61\x6e\x20\x2d\x09\x09\x3b\xcb\x6b\x93\x0a\x8c\x30\x42\xbc\x0a\xd9\x6a\x1a\x06\x85\x09\x27\xdc\xbe\xd9\x81\x80\x50\x1e\x50\x34\x75\x00\xff\xa1\x62\x5d\x61\xad\x5c\xa3\x7a\xa8\xcc\x94\xa3\x0e\x2a\xb2\xac\x54\x77\x10\xdf\x5f\xd6\x32\xd4\xca\x1c\x2b\x7e\x7d\xb0\x1e\xa0\xda\x93\x27\xcd\x3f\x30\x53\xba\x3e\x68\xa8\x28\xe3\xf1\x1a\x8f\x92\x60\xde\x7e\x8e\x6a\xff\x0d\xcf\xa9\x8d\xb7\x17\xcd\xb6\x41\x4b\x22\x0e\x57\x1b\x62\xcc\x9a\xdb\x3f\xa1\xb8\xda\xa1\x46\xf2\x2a\x24\x6c\x2c\x41\xa0\xe9\x21\x25\x88\x4d\x91\x35\x58\x5d\xdb\xf0\x0b\x6a\x25\x84\x13\x94\x9c\x74\xdd\xab\xc1\x1d\xf2\xb9\x09\xc6\xd5\xa9\xdd\x0b\xcc\x32\x9a\x41\x47\xfd\x17\xdd\x8f\x2a\xbc\x85\x4a\x96\x6a\xae\x52\x76\x92\xf0\x56\x3b\x0c\xce\x86\xf0\x40\xd9\x28\xc3\x64\x10\xa2\x1e\x01\x79\xe9\x94\x43\x3c\xea\x40\xde\x18\xc3\x04\xbe\xcd\x45\x45\x8e\xa2\x0e\x24\x66\xf7\x1a\x07\xeb\x3c\xe8\x83\x49\xa7\x4a\xed\x21\x94\x61\xd9\x33\x98\x28\x74\x6f\x52\x31\x59\x92\x20\xfc\x43\x83\x57\x9f\x96\x04\xef\xa0\xe2\x25\xc3\x17\xf9\x85\xa4\x93\x45\x17\xfc\x3e\x2a\xbe\x48\x34\xaa\x4b\x90\xe9\xc3\xdf\xef\x3f\x51\x55\x6a\xb7\x05\x32\xd3\xc2\x1d\x41\x50\xdd\xef\xef\xac\xa1\xee\x1f\x50\x00\xf0\xd5\x01\x72\x07\xbc\xda\xd0\x0d\x17\xbf\x8f\x5d\x97\xba\xb0\x52\xf2\xc8\xd2\x67\x56\xa4\x7e\xb3\x34\x58\xa1\xfc\x2a\x8a\x2d\x8c\x0a\xeb\x5f\x79\xb5\x11\x3f\x6a\x18\x1f\x84\xa1\x78\x56\x3d\xe8\xc9\xea\x36\x77\xd1\x78\x41\xe1\x24\xeb\x5e\x52\x0f\x22\x92\xdb\xb4\xd3\x7b\xc8\x13\xf7\x22\x0f\xc9\xc3\xe3\x55\xa1\x5e\xc9\x8b\x1e\x2e\xd9\x64\x28\x1b\x4e\xd4\x13\xf4\xd5\x73\x3e\x13\x4a\xb5\x6b\xdb\x4f\x16\x38\xd3\xf7\xd4\xaf\x65\xb3\x84\x13\x52\xbc\x54\x80\x15\xee\x46\x96\xc7\xea\xc9\x35\x4a\x44\xac\xac\x93\x6e\xfa\x78\xa2\x7a\x86\x31\xef\x3c\x80\x18\x9e\xd1\xc9\x0e\x3c\x02\x36\xd2\x60\x5f\xc2\xcf\x8b\xb1\x57\x2a\xd0\xac\x44\xac\x17\xd7\xa8\x11\x28\xfd\xbc\xd8\xd8\x05\x3d\xaa\x6e\x26\xf5\xe2\x22\x25\x0e\xd5\xab\xc2\x6f\xde\x3d\x40\x43\xe6\xd3\x87\x24\xb8\xd5\xb8\x78\x71\x1f\xa7\x3f\x40\x01\xa5\xea\x0f\xa0\x80\xd0\xf5\xaf\x52\x7e\xb2\x8e\xad\xde\x10\x19\x4d\x00\x90\xe3\xae\x14\xf3\xad\x9b\x6e\xe1\x1a\x92\xf2\x53\xf1\x4e\xc1\x6f\xbb\x78\x51\x48\x51\x50\x6c\x2c\xa9\x70\x7c\xb2\x04\x56\x11\x64\xf7\x62\xde\xf7\x83\x13\xa8\x11\x90\x52\xe0\x75\xc2\x1f\x38\x52\xf9\x84\x2e\x89\x6b\x0c\xb3\x62\x4a\x5c\xd6\x92\xd4\x25\x71\x0d\xcb\x4f\xf5\x41\xf8\xb3\x67\xf8\xc0\x5d\xc1\x34\xec\x61\x06\x53\x4d\xf0\x01\xa7\xf8\x55\x5d\xb5\xa8\xb0\xdb\x96\x97\x2c\x43\xbb\xad\xb9\xc2\x43\x90\x8b\x0d\x36\xc4\xf4\x29\xd4\x38\xda\x86\x8c\x33\x42\x9b\xb6\x11\x80\x42\xed\x86\xc2\xec\x16\xb7\x1a\x4a\x94\xda\x83\xa4\x6d\x64\x54\x9f\x11\x5b\xca\xa8\xe9\xa9\xe7\x94\xae\x4c\xd5\x1b\x0a\xad\xa7\xe1\x0f\x38\xa2\x2e\x0a\x8d\x85\xc7\xb4\x65\x0d\x11\x77\xc5\x72\x78\x4b\xa8\x9a\x2a\xbc\x6a\x09\xc5\x74\x86\x3b\xf8\x89\x46\xee\xfa\x01\x6a\x06\xcf\x99\xaa\x33\x33\xfb\xb6\x44\xb6\x51\x75\x77\x69\xa8\xec\xa2\x8c\xe8\xd1\x72\x81\xd7\x8b\xde\xcf\x15\x14\xca\xef\x43\x58\x11\x96\xb4\x8c\x93\x20\x34\x6d\x19\x66\x32\x2f\x31\xc3\xfe\x3e\xdc\x1f\xf7\xf1\xd5\x21\xc4\x81\xf0\x07\x50\xc6\x4a\x37\xd5\x0a\x4d\xb7\xda\xb6\x82\x14\xdc\xa2\x37\x0d\x09\xd7\xab\x41\x56\x08\x43\x6f\x53\x59\x02\x8a\x99\x75\x43\x44\x9e\x5d\x7f\x5b\x21\x0c\xc5\xdd\x5b\x61\xce\x50\xed\x0a\x24\x3e\x2b\xbb\x5a\xe1\x0c\x3f\x78\xde\x90\x47\xc0\x56\x92\x86\x24\x70\x8a\x93\x8c\xb6\x04\xb4\x6e\xb7\x9e\x06\x7f\xf0\xda\xfc\x3e\x6d\x20\x5a\x21\x6a\xa4\x14\x85\x88\x44\x43\xe1\x52\xd3\xb7\xd6\x08\x02\x4d\xb8\x2d\x34\x92\xba\xbc\x35\x94\xeb\x97\x94\xde\x98\x2a\xf9\x35\x81\xb6\x78\x6f\xf6\x9e\x35\x42\x40\xcc\xb8\x35\x7a\xb0\xfb\x05\x62\x51\xf7\x88\xc8\x03\x3b\x3c\x43\x78\x73\xe9\xda\xdf\x90\x98\xc0\x0a\xc9\x16\x50\x81\x4f\xb7\x59\xf2\xcf\xef\x1f\x58\x91\x40\x16\x27\x62\xc1\x34\x01\x26\x37\x96\x4c\xd8\x3a\xc9\xa7\x37\xb5\xd3\x74\xe6\x36\xcf\xa2\x67\xd8\x19\x36\x21\x20\xb1\x7c\x9b\x81\xf6\x51\x9f\xf9\x07\x44\xbf\x4a\x51\xd1\x90\xfd\x58\xf5\xe1\xa3\xc1\x39\xcb\xfa\xb5\x36\x98\x7b\x41\x03\x42\x82\xeb\xde\xb4\x01\x2b\x8a\x8f\xf2\x60\xc8\x9f\x66\x3c\x19\xe7\x29\x10\x43\xc2\xdb\x8c\xe7\xf3\xa7\x14\xaa\x06\x58\x22\x5e\xd8\x12\xd6\x28\xe2\xd9\x22\xdd\x50\xd9\xfc\x35\x22\xec\x9d\xe5\x75\x94\xa0\xce\xf2\x75\xae\x21\x55\x40\xb1\x03\x59\x43\xaa\x00\xbb\xd1\x37\x18\x3c\x5d\xd7\x23\xda\x5c\xcc\xbd\xbd\x3e\x40\xbe\x7a\x53\x07\xd4\x77\xb3\xa9\xa3\x21\x1d\xb0\x8b\x7d\x45\xdb\xa9\x47\x50\x07\x3b\x82\x00\xab\xdb\x8d\x2e\x5b\x6a\x73\x0d\xc9\x3f\x20\xb7\x9d\xc1\xb4\xff\xac\x41\xab\x86\x8a\xcb\x7e\x82\x6d\xff\x59\xc3\x6f\x42\x3d\xa3\xd1\xe3\x7c\x7a\x38\x54\xb8\x93\xc6\xb0\x41\x0a\x55\xae\xbe\x68\x94\x42\xab\xb9\xd0\x0e\x4d\xb4\xe7\xb7\xa4\xd0\xa2\x8c\xcd\xd1\x0e\x5c\xb9\xbd\x8b\x07\xe7\x6f\x6a\x02\x19\x32\xbc\x49\x4b\x44\x0c\xe5\x7f\x8a\xb6\x44\xc4\x52\x64\xd0\x6c\x28\x31\x30\x4d\x4f\x4f\xe2\x8d\x54\x37\xed\x24\xde\x08\x20\x4b\xe2\x0b\x25\x88\x8a\x76\x32\x65\xa3\x06\x58\x12\xdf\xc2\x15\xb5\x91\x39\xd6\x5b\x74\x22\x9e\x66\x73\xfb\xe2\x80\xee\x10\x7e\x26\x52\xbb\xb6\x13\xc1\xf7\xd2\xab\x34\x14\x35\x08\x83\x08\x25\x0a\xc2\xe4\xed\xc2\x5d\xc8\x7c\xf6\x86\xa6\x5a\x9a\xf0\x46\x59\xca\x9e\x14\xed\x66\xce\x64\xcd\x78\x89\x4a\x25\x4b\xc9\xd0\xe8\x22\x6e\x14\x81\x7d\xd1\xe2\x61\x43\x3e\x60\xeb\x59\x1a\xec\x8b\x76\x70\x6a\x37\xac\xdc\x26\x8f\x28\xe6\xbe\xf9\xa0\xc1\x5c\x38\x0d\x91\x07\x2c\xea\xd5\x86\x56\xd6\x0c\x05\x0e\xd9\xf6\xde\x8d\x0d\x3a\x52\xcd\x2f\x36\x2e\x30\xfc\x43\x5e\x04\xdf\xef\x17\xbc\x1f\x6a\xd3\x5a\xe3\xd7\x77\x3c\x2f\x6a\x43\x89\x62\xcd\x56\x30\x75\xae\x90\x36\x36\x6e\x61\xf7\x08\xc8\xe1\x2c\x75\x5f\x2c\x51\x28\xab\xaa\x47\xc4\x12\x7d\xaa\xfd\xf8\x02\x8a\x25\xd5\x98\x8d\x40\xa6\x5c\x9f\xda\x58\x72\x4c\x98\x0c\xc4\x92\x4a\xc2\x3e\xf3\x91\x78\x8c\x86\x07\x80\x45\x4f\x84\x24\x90\x5b\xc0\x5b\x1a\x70\xd1\xb6\x0e\x25\x32\xe9\x84\x67\x04\x17\x6d\x6b\xa6\x02\x51\x67\x76\x06\x09\xa6\xc6\x0b\x0f\xc0\x19\xe8\x60\x06\xc2\xcc\x54\x2d\x3c\xa2\x90\x94\x09\x6b\xa2\x24\xac\x41\x6b\xa6\xe0\xf2\xfa\x00\x30\x90\x38\x1c\x4b\x70\x09\x65\x06\x88\x28\xc8\xf0\x34\xfc\x3e\x36\xc1\x4c\x31\x90\xbc\x76\x8a\x6d\x47\xe5\x80\x53\x6d\xe4\xc9\x16\x07\x89\x8a\x70\x9b\xe4\xe7\x07\x92\xe1\x0a\x46\x4b\x0e\x79\x49\xa3\x51\xa1\xc8\x92\x7c\x1e\x0d\x85\xcf\xbc\x49\x0d\x81\x08\xe2\x70\xd1\xb8\x40\x81\x94\x35\x1c\xa4\x62\x88\x86\x05\x4a\x65\x1b\x4b\x2e\x09\x13\xa2\x68\x40\x7b\x49\xf0\xd1\x50\x35\xab\xf9\x7b\x6c\x41\x33\x04\x1b\x26\x28\xd2\x18\xb4\xea\x35\x83\x3c\x00\x11\xe9\x04\x02\x51\xfd\x4a\x19\x15\x81\xc0\xfd\x97\x02\x33\x02\xae\x8c\x06\x01\x75\x4f\xed\x35\x04\xe3\x93\xdd\x23\x92\x44\x4a\x62\x8f\x78\x20\xa8\x68\x8d\x10\x54\x7c\xb3\x8c\x8e\xb0\xaf\xfe\xab\x3b\x4e\x74\x4e\x4f\x52\x4c\xa0\x90\x9b\x5d\x39\xa3\x13\x82\xda\x91\x0e\xc3\xb9\xb8\x4f\xf4\x75\x4c\x9b\x77\x60\xf0\x86\xa2\xf7\xa9\x97\x6a\x3e\xb7\x03\x5b\xe8\xf5\x43\x68\x19\x22\xb5\x01\xb5\x93\x45\xe1\x40\xc5\x83\x77\x87\xf0\x7a\xf4\x84\x97\xd0\x52\x6c\x13\x8c\x09\x87\x61\xa3\x08\xb2\x1d\x1a\x7a\x70\x17\x37\xa7\x88\x9d\xee\xc2\xfa\x7c\xe7\x7a\xb5\x1b\x8b\xb9\x77\xeb\xaf\x03\x0e\xdf\x5d\x84\x39\x58\x07\xcd\xcb\x83\xc6\x66\x33\x86\x21\x33\xcf\x94\x5d\x3d\x50\x9e\xc7\xb2\x41\x9c\xf0\x7c\xf5\xf2\x69\xc8\xb1\x50\x16\x27\x92\x6f\x78\x43\x4e\xba\x89\xba\xcd\x40\x0d\xcf\x08\x1e\xde\xa1\xbb\x40\x2c\xde\x36\x8b\xe9\xda\x35\x01\x30\x75\x70\x41\x3a\x51\x44\x7e\x04\xb2\xe9\xfb\x42\x17\x50\x24\x24\xdd\x0d\x02\xe5\x74\x7c\x0d\x8e\x1b\x94\xd5\x94\x17\x5a\x80\x17\x5d\x7b\x50\x00\xc1\x28\x03\x5e\x55\xec\x55\x1a\x0f\x24\x69\x89\xea\xf1\x80\xb4\x9b\x70\xae\x5b\x7f\xea\x86\xd1\x83\x3d\x32\xef\x80\xcb\xb6\x05\xed\x80\xcb\x76\x32\xa1\x5d\xb7\xfe\x6c\xe7\x8f\xe0\xc5\x3e\x4c\xc6\x1e\x3a\x79\x7a\x02\xb0\xe2\x8a\xb4\xf7\x0d\x7a\x3c\x4d\xa0\x2f\xee\x37\xcc\x7d\x3b\xa3\x8f\x74\xbd\xea\x8c\x3e\xea\x6e\x2f\x6e\xa8\xac\x32\xd1\x37\x78\xed\x89\x8e\x77\x30\xc3\x97\x75\xad\x83\x1b\x3a\xd4\xb3\x27\x48\xea\xa2\x32\x1d\xcc\xae\x89\xbd\x77\x30\x3b\xbb\xb3\x74\x44\x64\x97\x78\xfd\x00\xfe\x2f\x24\xe8\x09\x21\x7a\xd2\xc4\x74\x5e\xda\x95\x36\x3c\x3a\x13\xb9\x7b\x46\x64\x8f\xb6\x9a\x76\xb0\x47\x25\x7e\x8d\x9e\x21\xb3\xe9\x42\xd7\xe1\xce\x6c\x2f\xb9\x9e\xe1\x05\x27\x32\xd5\xe9\xb1\x62\x3c\xed\xb0\xbb\x28\x57\x4f\x74\x5c\xeb\x87\x81\x4c\xb3\x8b\xd0\xb2\x93\x7d\x4a\x04\xe9\x64\x9f\xf6\xf9\xe9\x64\x9f\x12\x61\x3a\xd9\x67\x78\xd1\x28\xc5\xa6\xcc\xab\xd1\x0b\xab\xf6\xfb\x03\x16\x6d\xd7\x2e\x14\x96\xa5\xd7\x0c\x0a\x84\x30\xa1\x4d\x87\xf7\xb2\xd5\x63\xbd\x12\xd1\x75\x72\x7a\x05\x71\x94\x10\xd4\x2b\xdd\xb4\xd4\x61\x0d\x44\x8d\xf9\x39\x78\x83\xad\xb4\x7d\xdd\xf3\xc3\xca\x99\x8e\x64\xef\xf6\x79\xe9\x8b\xbf\x86\x23\x07\x7a\x25\xa6\x77\x8f\x00\x72\x9d\x3d\x65\x08\x39\x92\xc4\x3b\x8b\xa5\x7a\x89\x88\x0b\x37\xf5\xed\x08\x0b\x2f\x96\xa4\x3b\xaa\x2c\xe5\xdf\x65\x16\xe8\x8b\x3d\x57\xab\x21\x3a\x2e\xf9\x4a\xea\x13\x9d\x86\x1b\x3b\x33\xf4\xc5\x8f\x43\xc9\xf8\xa3\xc3\xc9\xa6\x7a\x47\xc0\x8e\x1d\x98\xd8\x83\x6e\x5f\xda\x01\xe4\x82\xb7\x77\x69\x0f\x54\x48\x94\x7c\xd2\x63\xa2\x7f\xb7\xd7\x41\xb5\xc3\x72\x0f\x86\x44\x6b\x7c\xda\x79\x1c\xd4\xdd\xe1\xf1\xbc\xf9\xd8\x74\x56\x9d\xd4\x84\x7a\x5a\xec\xc5\xf0\xeb\x70\xb3\x32\x25\x40\x45\x24\xd5\xb6\x8b\x8e\x00\xae\xf2\x3a\xf9\x28\x76\xf7\x3a\x87\x54\x1a\x28\x35\x5b\x74\x30\xe8\x6c\x5a\xd5\x81\x02\x3e\xf9\x9d\x30\xd5\x65\xaa\x77\x28\x8e\x25\xea\x77\xf8\x4c\x2b\xff\x61\xf4\xc1\x63\x62\x9c\x40\x49\x24\x2b\xfc\xfb\x60\x99\x29\xc1\x60\x60\x06\x12\xba\x3a\x92\xe2\xbc\x5c\x3e\x3a\x02\xcf\x1d\xdd\xd9\x99\xd0\xd0\xe9\x2d\xfa\x38\x30\x67\xf5\x38\x29\xd2\x08\x4a\x13\x35\x06\xc4\xe2\x3a\xd5\x0a\xf6\x94\xef\xf0\xa3\x6e\x86\xda\xc4\x39\xf1\x41\x82\x1f\x75\x71\x86\x86\xce\x32\x7e\xa6\x66\xc8\x40\x58\x9c\x32\xa2\x23\x14\xdd\x21\x2e\x7d\xc9\x0d\xd5\x71\x56\x1d\xf5\x55\x95\xae\x36\x3a\xbc\x6c\xaa\x3b\x44\x55\x21\x1b\x85\x3b\xbd\x6c\x1c\x17\xde\x77\x6e\xac\xd6\x4c\x35\x83\x43\x4a\xfb\x4e\xb0\x6a\x46\x3b\xd7\xe4\x11\xb8\x26\xe3\x1a\x0a\x11\x29\xfd\x7b\x74\x78\xd2\x84\x34\x23\x1d\x69\x0a\x8b\xe3\xc0\xfb\x7e\xa1\x47\x4f\xe9\xe6\x0b\x9e\x34\x32\xcc\x7b\xa7\xe1\x49\xe3\x2b\x50\x3f\x80\xbd\x52\x63\x76\x9a\xab\xac\x07\xec\x28\x5e\x68\xf9\xbf\xb3\x96\x91\xcf\x33\xf2\x1a\xda\x9d\xaa\xa3\xb8\x61\x36\x81\x38\x97\x74\x6d\x1b\x65\xa7\x66\xc1\x39\x0e\xfa\xc9\x19\x68\xc0\x13\xf5\xab\xbc\x82\x75\xf1\x57\xad\x88\xe8\xa8\x34\x64\x47\xe8\x0e\x3b\xce\xab\x3b\x98\x71\x36\x93\x4b\xf8\x41\xbf\xe8\x29\x8a\xc2\xbe\xe6\x03\xab\x8d\x7d\xa9\xfa\x05\x7a\xd2\xfc\x1c\xf4\xc4\x98\x7f\x11\xcd\xcc\x05\xe1\xd8\x3c\x24\x2b\x75\xd4\x80\xcd\x66\x8a\xc8\x22\xfd\xa2\x37\xb4\xf2\x38\x70\xb8\x23\x36\xdd\xe1\x70\x9d\x9a\x89\x17\x49\xbc\x33\x7a\xd4\x92\x6f\x16\xc9\xf1\x07\x98\xb2\x11\x17\x9e\xcc\x36\x7a\xf6\x1b\x05\x51\x2d\xfb\x3c\xc4\x01\xb7\x17\x13\xb5\x2e\xa6\xd3\x17\xd9\x11\x7f\x1d\xb5\xf0\xc3\x30\x7c\x58\x4b\x42\x13\x7a\xb0\xe4\xd7\xfb\xc4\x42\x33\x3d\xd6\x05\x12\xa3\x1f\xd0\x55\xe4\x5f\x25\x86\x8e\xb1\xb1\x1c\x5b\x52\x9b\xc7\x4c\x7a\x86\x81\x50\x72\x6b\x6e\xc6\xc6\x50\xb2\xaa\x36\xe1\xe3\x36\xb6\xb4\x7a\x36\x48\x34\xa2\x73\x3d\x36\xd2\x5f\xb7\x2f\x0e\xe8\x0f\x40\x39\x9a\x5f\xc0\x21\x93\x90\x30\xe8\x41\xa3\x8a\x31\x31\xe0\xcb\x5c\x05\x8f\x91\x08\x61\x11\xe4\x91\x90\x0d\x46\xc2\xdd\x80\xb3\xf3\xf6\xea\x11\xd4\x31\xfb\x7d\x40\x5c\x5c\x74\x64\x94\x74\x11\x4e\x8d\x8c\x25\x0f\xb7\x71\xe7\x73\xff\xac\x42\x2f\xd2\x35\x90\x46\xd9\x11\x92\x83\xe6\x0e\x7f\x5f\x90\xcd\xb5\xfb\xf9\x05\x31\xc8\xfd\x01\x22\x5e\x30\xa2\xc2\xca\x10\x8a\x0c\x24\x24\xcc\x06\x21\xd4\x10\x8e\x93\x1e\x08\x0b\x53\x99\xa5\x18\x90\xab\xc2\x9b\x5e\x2b\x50\xcc\xfd\xa1\xd8\xf5\xeb\x7d\x68\xaf\x8a\xdf\xef\x9c\x80\xf6\xa8\xa2\x34\x47\x51\x13\x00\xea\x7e\x0c\x9c\xf0\x86\xa0\x44\xfd\x4b\xc7\x3c\x2a\x4a\x3f\x8a\x76\x0f\xca\x65\x0e\x86\x1f\x15\x20\x08\xaf\x90\x20\x90\xf8\x3c\x1a\xfc\xef\xbc\x64\xc4\xa1\xa9\xb4\x44\x0c\x0a\x66\x43\x2c\x71\xc0\xc5\xc6\x3e\x3d\x03\xe5\x2f\xad\x70\x1b\xb0\xe8\x64\x6f\x0a\x8a\x4b\x3a\x73\xca\xf8\x71\x47\xd6\xfb\x41\x18\x6a\xcd\x81\xa4\x20\x22\xa5\x23\x02\xfd\x69\x7c\x24\xf0\xb1\x3d\x65\x20\x38\xde\x49\x30\x46\xc0\x9f\xdb\xe7\x86\xee\xcb\x43\xb7\xc2\x01\x03\x8d\x3d\x1b\x46\xc7\x04\x44\x88\x06\x55\x17\x8e\x75\x1f\xa8\x03\xac\xc4\xcb\x31\x28\x19\x49\xf6\x1a\x90\x63\x9a\x77\x71\x10\x64\xd5\x3f\x80\x99\xf8\xa0\x41\xd0\x29\xc3\x67\x1f\x3e\x34\x4e\xc2\x30\xe0\x43\x63\x75\xd7\x18\x0f\x46\x14\x4c\x61\x2f\xb1\xf7\xc6\x60\x55\x1c\x19\x7c\xc6\x12\x53\xa6\x3d\x16\x07\x8a\xb8\xdb\x7f\x79\x4c\x3a\x98\x78\xca\x70\x81\xb1\xc7\xf6\x80\xd4\x61\x9f\x9b\x81\xda\x84\xdd\x27\x7b\x87\x72\x45\xec\x70\x20\x5a\xab\x19\x49\x90\xa8\x58\x19\x17\x63\xfc\x78\xb4\x78\x17\x61\x4b\x08\x09\xc4\x83\xb6\x04\x9f\x24\x94\x2f\xb6\xde\x77\x50\x02\xb0\xdc\x34\x28\x01\x78\x53\xce\x0d\xec\x45\x03\x9c\xbc\x60\xe8\x12\x36\x4e\xe0\xe1\xab\x8d\xe4\x73\xaf\x36\xf1\x44\xc2\xe0\x40\xb6\x99\xcd\x23\xd2\xdb\xc3\xf6\x8d\x01\xeb\x80\x13\x2b\x0d\x78\xaa\x3a\xf8\x69\x5c\x0d\xd9\xba\x34\x45\x2a\x4c\x5e\xcf\x3b\x54\x3e\xbf\xb2\xde\x0c\x44\x3a\x6d\x26\x0d\xf4\xe3\x70\x5c\xc1\xb8\x10\x98\xe1\x83\xbb\x38\x7a\x1f\x46\x73\x98\x1a\xc2\xfc\x08\xc5\x8c\x55\xaf\x39\x06\x2a\x09\xaa\x4c\x5f\x8c\x1b\x71\x0c\xee\x1f\xb9\x5f\xca\xf4\x0b\x64\xd8\x86\x17\xea\x38\x38\xf4\x68\x20\x39\x9e\xaf\x78\x03\x55\xe2\x5f\x94\x05\x55\xe2\x87\x84\xf3\xf1\x30\x92\xc4\x48\xf8\x80\xe3\x49\x45\x36\x19\xeb\xa3\x5a\xc1\x31\x37\x90\x6b\xa9\x3b\x26\x78\x72\x12\x4e\x4c\x84\xa3\xdb\xd8\x3c\xa9\x0e\x71\x68\xf4\xdc\x20\x7c\xbf\x3a\xa4\x67\x98\x3b\xc4\xb1\x10\xfd\x9e\x89\x4b\xd6\xfb\x29\xb1\x43\xff\x00\x73\x8d\xd6\x3c\x11\xac\x6d\x07\xa1\x89\x4a\x04\x16\xd6\x67\xd9\x50\xcb\xbf\xab\xbd\xde\x77\xc8\xde\x5c\x1c\x2f\x8a\xb4\x88\x93\x8a\x74\x81\x68\xd2\x83\x53\x55\xd3\x62\x92\xc5\xe9\x96\x36\x2b\xc2\xc9\x75\x65\x9a\x95\xde\xd2\x7a\xde\x90\x8a\x44\x17\x9a\x09\x97\x48\x7b\x9a\x4c\x28\xba\x1d\xb9\x3b\x69\x5f\x4f\x7e\x7e\xa1\x7f\x7f\x0f\x3d\x80\x17\xd0\x88\x35\x06\xd9\xba\x59\x87\xd1\x6a\x22\x5f\x9b\x35\x0d\x13\xe4\xde\xb1\x22\x13\x6a\xec\x6a\xaf\xd8\x89\xaa\x6a\x76\xdf\x9e\x20\xe7\x56\x8e\x4c\x44\xa3\x54\xd5\x51\x8d\xb9\xee\xda\xc3\x57\xb4\x89\x2a\x6b\xf6\x43\x9b\x1d\x11\xf8\x12\x34\xe7\xa2\xff\x63\xf3\x9e\x74\x96\x9f\x10\x71\x9b\xcc\x6d\xa2\x73\x3d\xfb\x40\x07\x5a\x62\xc7\xa6\x25\x0f\x70\xc2\x57\x5a\x33\x1c\x04\x81\x06\x40\x78\x4a\x35\xb9\x9f\x60\x20\xce\xca\x37\xa1\xeb\xae\x8e\x1c\x9d\xd0\x75\xdb\xa1\x6a\xfe\xe4\x97\x95\x60\x32\x07\x52\x83\xfa\xe8\x0c\x4e\xc9\x1f\x60\xdb\x8c\xd8\xc8\xb8\x66\x4f\xd8\x39\x91\x54\xc0\x07\x63\x72\x89\x9a\x11\xaa\xd3\xdb\x83\x69\xe2\x56\xfb\x9a\x20\xee\x98\xe5\xd5\xa6\x67\xad\x76\x1d\x77\xcc\x6a\xab\xdb\x5c\x77\xcc\xf9\xfe\x00\x03\xbc\x3e\xe0\xae\x4a\x3c\x9e\xb8\x63\x9a\x98\xce\x9d\x3e\x54\x9a\xe1\x81\x5d\xf5\x49\x59\x0c\xc4\xa9\x3e\x63\xae\x1b\xe2\xcb\xb3\x79\x1e\x1c\x50\x10\x38\x78\xf4\x85\x35\x28\x82\xe6\x3a\x3b\x31\x4f\x0e\xa0\x09\x2d\xfe\x11\x8e\xf9\x99\x70\x16\x7c\x9d\x4c\xd8\x96\x1d\x8a\x3a\x4f\x78\x2f\x19\x0b\x60\x5a\xb6\x89\x6a\xc2\x57\xb0\x3a\xb5\xc4\xbc\x98\xfb\x53\x20\x42\x7d\x7c\xfb\x7c\xcd\x75\x07\xcc\xa9\xb9\x8d\xd4\x13\xc6\x22\x94\xbb\x2f\xe5\x57\x19\x06\xe6\x0d\x6b\x80\x88\xf3\xbc\x89\x30\xea\xfc\x01\x5d\x31\x25\x45\xda\x7b\xc7\x88\xcd\x87\x9e\x90\x82\x0e\x2e\x5f\xd5\xce\x55\xf3\xc1\xec\x24\x00\xec\xdb\x4f\x2a\xce\xd0\x0f\x09\x35\x54\xab\xda\x19\x6e\xc3\x5d\xed\x06\x8c\xf1\x73\x44\xb0\x0b\xbe\x7b\x82\xf7\x97\xc0\xb1\xd3\xdf\x4c\x37\xfa\x3d\x21\x55\xb8\xc7\x4b\xf0\xef\xd0\x65\x65\xff\xc9\x0d\x2a\xf8\xed\xeb\x36\xf3\xca\xf2\xb4\xe7\xcc\x17\xa6\x7e\x28\xa0\xad\xfe\x00\x87\xa6\xba\x0d\xa4\x57\x75\x82\xd8\x91\x0e\xd4\x7e\xc1\x7b\x26\x4c\x3e\x38\xbd\x17\x4e\x41\xec\x65\x87\x62\xd9\x6a\xc4\x1d\x76\x58\xfb\x45\xee\xa8\x7d\x6f\x4f\xa1\x7d\xb1\x8f\xa1\x4a\x39\xb1\x17\x9c\x32\xa9\x25\x76\xa4\xd1\xb0\x03\xdb\x8e\x0b\x93\x77\x7d\xc7\xfd\xc6\x62\xe0\x8e\x2c\x18\xaf\x05\x54\xd2\x62\xf5\x8f\x5c\x5d\xb6\xce\xef\x0d\x28\x27\x6e\xb4\x37\x42\x44\xfd\x31\xd5\x96\x28\xe9\x0e\xee\x52\x6d\x12\xda\x1b\x4e\x65\x75\x87\xf0\x11\xf6\x04\x83\x10\x92\x60\xba\x43\x51\x3b\x0d\x42\x14\xf9\xb4\x3b\xfb\x8e\xd2\xf5\x76\x32\xdc\xe9\x7d\xe5\x3d\x23\xed\x16\x99\xd9\xa1\xf5\xb4\x8d\x69\x47\x68\xa1\x15\x82\x3b\x72\x61\x5a\xcf\xb2\xd3\xaa\x58\xfc\x3e\x21\x2a\x88\x23\x8f\x55\xb5\x96\x62\x87\xaf\x94\x5d\xfc\xf6\x09\xb2\x22\x35\xcb\x3e\xe1\xdf\x6b\x10\x4d\x50\x56\xa3\xf5\xa2\xbc\xd3\x6e\x96\xfb\x4e\x90\xeb\xfd\x9d\xf1\xc1\xa2\xac\xfb\x12\xed\x87\x4a\xfd\xc5\xbe\x17\x9c\x74\x4d\x08\xa9\xa9\xec\x42\xb8\xc3\xc9\xa8\xe6\xec\x11\xb0\x27\xcd\x1d\xc0\x0a\xe6\x3d\x5b\xa2\xfd\x1c\x06\xf9\xc1\x01\xf4\xfd\x01\x24\xf5\x00\x70\x1c\xdf\x74\xb9\xd9\x4f\x88\x24\x92\x13\xf7\x8b\xdf\x0b\x69\x2e\x20\xb1\x91\x7e\xd1\xbd\x69\x42\xbc\x43\xf5\x55\x7d\xe7\xdd\xaf\x0b\x20\x72\x07\xf7\x6a\x7b\x4f\x2f\x5e\x7e\xf4\xfc\x87\xf6\x69\x41\x37\x6f\x53\x82\xd0\xcd\x3a\x08\x26\x4d\x37\x99\x97\x56\x8c\x34\x8b\xd5\x77\xd4\xfd\xc6\x26\x19\x8d\x1f\x2c\x49\xbc\x62\x7f\x30\x82\xb1\x04\xee\xc5\xce\x90\x7a\x6c\xf4\xbe\x4d\x6a\x2f\x29\xae\xbe\x9e\x63\x05\xda\xf4\x63\x89\xa1\xd3\x58\x7e\xc0\x39\xd7\xe7\xf0\x48\x80\x80\xa8\xf7\xc1\x72\x17\x96\xc2\x8e\x8c\xf0\x52\x11\xd7\x23\xd3\xe2\xa4\x01\x40\xfb\xac\xff\x3c\x32\xfc\x29\x74\x3b\x39\x20\xf7\xb6\xfe\xab\x30\x9c\x03\xfe\x2c\x4e\x89\x74\x14\x58\xb3\x84\xb1\x47\xe9\xe8\x4c\xb3\x85\x5a\xa8\x9a\x19\x1d\x90\x92\x9b\x47\x2f\x4c\xca\xe4\x0e\xc1\x6a\x93\x9f\x23\xc4\x5a\xe0\x3f\x90\xec\x47\xd5\x2d\xe3\xa8\x30\x39\x1a\xdc\x20\x7b\xb3\xf9\x7d\x4e\x40\xfb\x79\xc0\x5c\xa6\x0a\xaa\x71\xc0\x2d\x56\x89\xcc\xe3\x68\xf0\x4f\xd7\xfd\xfb\x40\x92\x63\xfb\xc7\x1c\x48\x18\xf8\x9a\x20\xc9\x9a\x5d\xe8\x8f\x45\xd6\xc6\xf6\x7a\x21\xc3\xad\x4b\x2b\x0c\x44\xf9\x4b\xec\x3e\x02\xd7\x65\x29\x67\x0f\x78\x8b\xa8\x06\x6a\x1c\xc8\xf0\x63\x3f\xdf\x23\xe0\x97\x66\x10\x07\x6c\xa6\x22\x63\x47\x07\x19\x35\x42\x2d\x11\x78\x38\xc4\xf1\x58\x22\x70\x77\xb6\x96\xa3\x53\xbe\xf3\xf7\x3b\x4b\xb2\x6b\x02\xfd\x80\xa1\x59\x0b\x82\x8c\x6c\xd5\xdf\x31\x60\xaa\x97\xc0\x7a\x50\xe2\x35\x02\x52\xe2\x2d\xde\xa3\x41\x29\x5d\x38\x01\xe3\x91\xe3\x20\x8e\xc1\x3d\x33\xcc\x07\xe2\x85\x5f\x2f\xec\xd0\x38\x68\x46\xcc\x48\xd8\x3d\x03\x56\x95\x97\x9e\xe8\xa0\x0c\x2d\x33\xc8\x81\x08\x6b\xc7\x04\x1c\x2c\x91\xe0\x08\xe4\x63\x32\xd1\xa4\x66\x00\xe3\x51\x75\xee\x84\x63\x92\x30\xe9\x85\x1d\xbc\x40\x94\xf5\xd8\xe1\xd3\x21\xde\x70\xec\x10\x39\x25\x21\x1e\x3b\x28\xa1\x78\xc3\xb1\xb3\x3f\xcd\x18\x94\xd9\x94\xfb\x40\x94\x90\xf5\xb9\xc7\xc1\x73\x20\x10\x40\x66\xf6\x75\xf9\x40\x4e\x9d\x66\x10\x21\x48\xa8\x5a\x86\x3d\x10\xe1\x9c\x93\x3f\x00\x9d\xf2\x39\x00\xa9\x4f\xaf\x09\x80\xee\x18\x6d\x28\x64\x5b\x80\x38\xe0\x01\xba\x19\xa6\x50\xe2\x98\xfd\x1e\x27\xd2\xad\xe8\x36\x79\x9c\x88\x7b\xf0\x8a\x4e\x16\x25\x17\xda\x9d\xcc\x40\x6c\xda\x82\x94\x37\x56\xd5\x1d\xa8\x89\xf0\xd2\xeb\x1f\x8c\x57\xf6\xc9\x81\x92\xa7\x49\xc0\x38\x16\x77\xaa\xbe\xd1\x1f\x17\xfc\x74\xba\x9f\xb3\x68\x83\x06\xbc\xa0\xda\x33\x1a\xd2\x23\xd4\x20\xbc\x06\x27\xa0\x4d\x84\xa2\x67\x33\xa2\xc3\xad\xa6\xda\xf9\xee\x80\xdc\xff\x62\x16\x28\x08\x6a\xcf\xaa\xe3\x86\xcb\xe4\x70\x7b\x21\xf6\x94\x50\x78\xdc\x70\xeb\x95\x60\x7d\x3c\x70\xc1\x94\x72\xf1\x80\x5d\xa5\x3a\x25\xec\xf1\xc0\xfb\xcf\xbb\x06\xc5\x4e\xd5\x85\xfa\x80\xe1\xc5\x9e\xd2\x07\x65\x7f\x3b\xb5\x1e\x0f\xc8\x9d\x64\xa0\x73\x63\x87\x53\x6d\x38\x02\x69\x97\xcf\x0d\x7e\x39\x3a\x48\xe7\x36\xa0\xaa\x2a\x6a\x9f\xe8\xef\x57\x8a\xb4\x13\x19\x7b\xab\xc4\x8b\x73\xe3\xec\xc2\xa3\xc1\x2c\x24\x9c\x3b\x51\x4f\xd3\x16\xdc\x33\xe1\x1e\xa0\x8b\xc3\x09\xb3\x49\xb5\xe3\xd3\xb9\x6e\x1e\xb9\xbf\x3a\x80\xfb\xc7\x74\x07\x58\xae\x94\x42\x27\x92\x10\x5a\xc4\x3b\x13\x0b\x8b\x84\x5f\x80\xc1\xb5\xb9\x43\x64\xb7\xd3\x06\x9c\xbc\xaa\xd8\xd4\x73\x22\xa9\x60\x9d\x6e\x33\x8a\xcc\x6d\x84\x54\x4a\x75\x77\x32\xa7\xa0\x94\x34\x27\x5c\x50\xab\x5d\x5c\x4e\xf8\xa0\xda\x99\xee\x44\x09\x4e\x9b\x84\x4f\x64\x8d\x69\x6e\x02\x23\xa6\x3f\x87\x9f\x92\xd8\xc1\xc9\x8a\x9d\xd9\xdd\x61\x03\x93\x9f\x5f\x1c\xdf\x13\xe2\xf5\xd1\xed\x07\x69\x75\x04\xb2\x02\x79\x45\xa7\xee\x44\xc2\xc1\x6a\xdb\xd6\x89\x34\x34\x6d\xf3\x07\x85\x2f\xf8\x07\xc4\x02\x1b\xe7\x58\x7a\xe1\xd5\x46\x65\x3c\x6f\x12\x6c\x4d\x0e\x29\x3b\xe1\xa3\x63\x57\xf3\xb3\xc2\x07\x48\xc7\xf8\x44\xde\x1a\x6b\x06\xcf\x25\x63\x54\x07\x99\x9e\x15\x39\x7f\x75\xb3\x39\x29\x63\x54\x83\x1c\xb1\xd1\x76\x99\x3d\x99\x27\xd9\x7b\x08\x43\xce\x08\xb7\x91\x20\xd5\x78\xde\x18\xfd\xa8\x3d\x69\x24\xde\xaf\x17\x90\x63\x71\x73\x07\x70\x8e\xf7\x8a\x1b\x52\xd0\x1a\x6d\x1b\xca\xc9\x78\x8f\xe0\xe3\x3a\xbc\xc9\x4b\xa8\xc9\xce\xee\x7e\xb2\x04\xa8\x0c\x35\x67\x30\x5e\x42\x13\x62\xdd\x2a\xa9\x2a\x4f\xca\x20\xe2\x36\x27\xfc\x51\x1d\xc1\x71\xe2\xea\x56\x7d\x83\x3f\x3b\x12\xdf\x0c\xb7\x0b\x5f\xd0\x88\xa8\x80\xed\xf8\xce\x13\x96\x9e\x57\x24\xcd\xd9\x03\x2f\x68\x0a\xa8\x24\xe5\xbc\x82\x67\x87\x07\xa3\xf1\x1a\xa5\x13\xec\x19\x76\x8e\x84\x73\xa6\x29\xc2\x69\xd5\xb6\xa9\x73\x49\x35\x2f\x5b\xda\x09\x43\x50\x6d\xd2\x76\x9e\x83\x58\xe7\x36\x27\xe4\x0e\x3b\x3f\x70\x8f\x28\x0e\x6c\x34\x46\x26\x1a\x6b\x3d\x4e\xd6\x62\xf0\xc9\x46\x1e\x99\xcd\x9b\x32\x91\x3f\xdc\x94\x02\x96\xa5\x17\x69\x61\x96\x64\xaf\x78\xc2\x31\xcc\x10\x43\x18\x4d\xb5\x0d\xf8\x64\xe2\x40\xa3\x2d\xea\x38\xbd\xa8\x25\xc2\x66\xaa\x5d\x0e\x4f\x64\x0e\xb4\x13\xcf\xb9\x67\xbe\xa0\x1e\x76\xa4\x34\x37\xf9\x44\x5c\x8d\xd3\x20\x9c\xc8\x1c\xa3\x2a\x43\x71\xc2\x56\xa5\x9a\x97\x71\x22\xac\xc6\xa1\x8b\x27\xc2\x6a\xaa\xaa\xcc\xc5\xb9\x6e\xbc\xcd\x29\xb8\x4e\xdc\x78\x7d\x99\x39\x77\x38\x0c\xbe\x66\xcc\xa0\xb7\xf2\x2b\x47\x81\x13\x69\x65\x6c\x73\x3e\x77\x26\x43\xd2\xf2\x50\xa6\xc1\xb9\x52\xcf\x25\x94\xb5\x17\x8e\xa0\x4c\x83\x73\xee\x9e\x88\xaa\x71\x66\xd2\xf3\xa0\x4f\xa8\x56\x73\x70\x47\x0c\x9f\x25\x74\x55\x27\x90\x3a\x91\xd8\xf0\x45\xdb\x11\x98\xfd\x3a\x87\x07\x9c\x56\x8b\xdf\x47\x19\x58\xa3\xc8\x09\x13\x81\xc4\xd8\x93\x55\x1c\x8c\x32\xcc\x08\x63\x70\xc2\xb0\x66\x1b\xc7\x89\x34\x84\x2f\x57\xef\x13\x75\xaa\xec\x86\x7b\x22\x28\xfa\x85\x32\x4b\xc4\x6a\x43\x32\xdb\x79\xf1\x18\xab\x43\x88\x58\x0e\x24\x3f\x51\x86\xca\x81\x4d\x27\x42\xa2\x6d\xf2\x3e\xe1\x2c\xe3\xf8\xff\xf3\x42\xcd\xd7\xd7\xfb\x90\x4a\x9b\x29\x1f\x32\xc6\xa8\xc2\x79\x9c\x37\xe2\x92\x0c\x72\x64\x8c\x49\x52\xab\x9d\x37\x4b\x6a\x6a\x4b\x6f\x1e\x73\x4b\x08\x37\xa2\xed\xbd\x62\x44\xe9\xd8\x36\x77\x52\xc3\x60\x83\xed\x89\x14\x33\x2f\x42\xb5\x64\xb8\x36\x4c\x06\x90\x06\xf0\xb5\x87\xa8\xb9\xee\xb8\xa2\xf3\x21\xed\x14\x08\x1f\x22\x9d\x9f\xf3\xd0\x19\x29\xe0\x2a\x6d\x67\x92\xf3\xf9\x59\x82\x7f\x80\x5c\xfb\xfa\x80\xb9\xa4\xdd\xe6\x12\xcc\x81\x9f\x1d\x43\x6a\x57\x59\x1b\xcb\x2c\x9b\x99\x00\x8d\xb6\xc8\x04\xe8\x0c\xa3\x27\x4a\x63\x59\xfd\x7a\x3e\xdc\x25\x91\xbe\x8b\x1a\x64\x7b\x0a\x5f\x1b\x62\x4d\x25\x28\x5f\x28\x7e\xe5\xd4\x71\xd7\x06\xbc\x10\xe9\xba\xb6\x03\x42\x4d\x55\xfb\xc4\x73\x7f\x0f\xa9\xc4\x50\xbc\x50\xec\x61\xc8\x8a\x72\x25\x66\xae\xd0\x04\x12\xac\xe4\x5a\xe2\x95\x48\x79\x04\xa4\x0b\x05\xad\x9c\x86\xff\x4a\x80\x91\x44\xf9\x0b\xd9\x03\x55\x50\x2d\x2e\x38\x4b\x3b\x48\xe4\x42\xf2\x3e\xfb\x4c\x5d\xac\x94\x6e\x59\xfe\xca\x5c\xa2\x96\x44\x8d\xb3\x88\xed\x85\xea\x0e\x26\x6d\x57\xe6\x8a\xf4\x3e\xe4\x28\x47\xe8\x5d\x50\xcd\x38\x3b\xe1\x55\x70\x34\x25\xb5\x5c\xcc\xdb\xac\x42\x85\x71\x41\x8c\x72\xfa\xc5\x0b\xe9\xff\xec\x38\x70\x21\x62\xb9\xaa\x30\x60\x5c\x05\x55\xb3\x75\xc7\xbd\xca\x89\x04\x8b\x9e\xc1\x85\xc4\x67\xee\x00\x87\x57\x0c\xef\xaa\x48\x44\xeb\x15\xc3\x85\xa7\xda\x2e\x70\x55\x52\x13\x75\x58\x39\x65\x91\x87\x0b\x4e\x3c\x4e\x4a\x73\xc1\x89\xc7\xb2\xe5\x05\x49\xcd\x01\x62\xd7\x92\xd4\x9a\x75\x29\x17\x04\xb5\x1a\xc9\x1f\xec\xeb\x74\x57\x4f\x09\x9a\x85\xe9\xe7\x27\x3f\xf0\x0b\x60\x19\xc5\x2f\xdc\x08\x02\xfc\x55\xe4\xcd\x55\x71\xf4\x45\xbe\x2f\x78\x5e\xd7\x10\x79\xbb\x10\x82\xed\x3a\x40\x17\x72\xe8\xd8\x77\xf1\x6a\x05\x81\x2e\x02\x18\x04\x49\xa7\x9d\xbd\x1a\xa2\x50\x25\x87\x5d\x6d\x47\xc1\x61\xc1\xaf\x81\xbe\x87\x01\x08\xc1\x71\xbc\x06\x64\xbd\xff\xd7\x08\xc0\xba\xea\x19\xb2\xfa\xae\xce\xfa\x15\x20\xc0\x12\x05\xaf\xc0\x1e\x1a\x49\x82\x8e\x69\x6e\x43\x56\x16\x79\xbc\x82\x65\xa9\xb5\xe7\x70\xb7\xb6\xaf\xf3\x15\x80\x99\x68\xcf\x85\x08\x6b\xdb\x96\x2e\x04\x50\x0f\x1f\xec\x3e\x10\x7e\xa6\x09\x2f\x39\x71\x26\x13\x86\x8e\x15\x8b\xc3\x5d\x83\xe5\x35\x35\x3e\xfc\x7d\xa6\x91\x9e\xca\x2b\x07\x41\x5c\x03\x55\x55\x24\x82\x5c\x10\xf3\x6c\x29\xba\xe0\xf9\xec\xbc\x21\x17\xf2\x09\xda\x7f\xf4\x1a\x04\xf1\x6b\x06\x0c\xb8\xd3\x0a\x50\xbb\xdd\xf5\xad\xae\xc9\x63\x22\x5d\xd1\xc5\x0c\xd3\x1e\x71\xc9\x75\x25\x0c\xd2\x49\xa4\xf5\x14\x26\x52\x8c\x49\x4c\xbb\x26\x37\xd5\x1d\x3e\x08\xc4\x57\x7b\xe7\x9e\x6a\x00\x86\x4f\x8b\x07\x5e\x94\x03\x5d\xba\xe6\xfa\x29\xb9\x25\x20\xee\x3f\xb4\x46\x6d\x66\x7c\x36\x16\x2c\x41\xb0\xd8\x7b\xee\x42\x06\xc1\x14\x6e\xc3\x28\xdd\xdc\x21\x65\x5b\x7f\xcf\x9c\xd8\x9e\x31\x88\x65\x78\xc6\x58\x61\xf8\x7b\x08\x4a\x92\xf6\xaf\x03\xd2\xbf\xe7\x03\xf5\x99\xf3\x35\x5f\x07\x8b\xbc\xfa\x39\xb0\x50\x82\xda\x45\x6d\x98\xb1\x16\xf9\xa2\x5f\x7b\x7a\x82\xb6\x9a\xf4\x9d\x28\x42\x5d\xfd\x3e\x88\xbf\x21\x7e\x22\x15\x82\x99\xc3\x89\xd2\x75\xa6\x53\x17\xfc\x41\xdd\x1f\x8a\xb1\xdb\x02\x7b\x5d\x9d\x45\xb1\x35\x01\xd4\xf3\xb4\x20\x75\x5d\x20\xee\x12\x73\x2e\x14\xc4\xb2\x62\xe3\x42\x6a\x3e\x97\xbe\xbb\xae\x9f\x2a\xdb\x1a\x81\x82\x96\xd4\xd6\xd7\xfd\x63\xbc\x52\xbb\xc2\xad\x41\x2b\xbc\xb9\xe5\x5e\xd2\x0d\xd1\xcf\x38\xb1\xe4\xa6\xf1\xfe\xe0\x40\xa1\x70\x0f\x48\x9f\x2e\x0f\x80\x73\xd3\x8d\x03\xa8\x80\x35\x8d\x03\x0f\x8a\x09\x49\x93\x72\x51\x70\x72\xc8\xc1\xc5\xd4\x32\xa6\x65\x14\x9c\x5c\xdc\xee\x5a\x82\xd3\xb0\x16\xf8\x5a\x82\xd3\xb4\xa5\xfc\x7a\xa8\x08\xd0\xb9\x7a\x06\x3b\xf0\x0b\xb8\x94\xbe\x3e\x80\x92\xf5\x35\x03\x9c\x54\x93\x5b\xb8\x51\xa9\x66\x7f\xdc\x1b\xab\xae\x6d\x6a\xef\xc8\x36\x98\xd4\x06\xfd\xee\xbf\xcb\x2a\x70\x53\x48\x92\xa4\x7a\xc3\xa5\x2a\xb4\x85\x37\x65\x24\x1d\xb2\x1b\x79\xfd\xaa\xc3\x11\xee\x04\xc7\x3d\x9d\xa2\x1b\xd5\xe0\x1d\x3a\x7b\xa3\x48\xa8\x7d\xae\x6e\x64\x9e\xa9\x0e\x26\xb8\x13\xf7\xdc\x6d\x94\x6a\xd0\x31\xbc\x29\x54\x89\x3f\xdd\xe9\x42\x87\x9a\x21\x6d\x5d\x22\x5c\x37\x6c\x5d\x4e\x64\x75\xe7\x9f\x64\xb1\x9a\x31\x52\x2a\x3b\xd6\xe6\x46\x8d\x2d\x97\xc0\xba\x91\x57\x66\x78\x02\x4b\x2a\x1b\x96\xee\xef\x8c\xb0\x15\xe1\xd4\x0d\xa1\xac\xba\xd6\xdf\x4d\xa9\x2c\xfc\xc1\x89\x54\x39\x5a\x01\xbd\xc8\x86\x9f\xdf\xec\xc0\x53\x46\x95\x30\x51\x8a\xbb\x80\xc5\xcb\xfa\x72\x53\xfb\xe5\x12\x8d\xf7\x92\xdb\xb2\x2d\x11\x37\xb5\x5d\x32\x7e\xdc\x2c\xfd\xee\x2c\x28\x37\x42\xd6\x1c\xde\x7a\x23\x4d\xb3\xa3\x8f\x6f\x04\x6c\x4f\xd1\x9e\xbb\x42\x88\xf8\x7f\x18\x3b\x93\xb3\x69\x79\x5e\x09\xa7\x72\x42\xc0\xb3\xbd\xf9\x73\x81\x06\xf2\x0f\xe1\x5c\xbe\xf5\x7c\x55\x2c\xdf\xa5\xbb\xc1\x78\x94\x64\x59\xaa\x92\x2c\x7e\x2a\x5d\xf0\xfb\x35\x64\xa9\x66\xb9\xc5\x2c\x4b\x76\x3c\xb8\xab\x7c\x5c\x78\xf0\x56\x55\x63\x40\x3d\x90\x5c\x98\x2d\xe7\xc1\x7d\xe5\x80\xa0\xa7\x41\x90\x34\x5d\x21\xd2\x56\xfb\xf0\xe9\x0c\xba\xb7\x45\x8f\x16\xe9\x7d\x90\xf7\x0c\x24\xf3\x90\xee\xf4\x19\xf3\xf1\x02\x5e\xa1\xef\x4f\x48\x35\xbc\x2a\xc2\xd7\x63\x57\xcb\x83\x11\x60\xa7\xec\x13\xbe\x1e\xf7\x10\x57\x8e\x49\x2e\x9f\x49\x83\xfd\x01\x38\xbd\x7d\x09\xf9\xac\xbd\xcc\x8c\x5d\xff\xc4\xfd\x93\x83\xc5\x9f\x85\xa1\xea\x11\x58\xc4\xa5\xe9\x44\xf6\x6c\x0d\x3e\x7c\xac\x7d\x88\x12\xae\x3e\xf7\x3e\x2b\x5a\xa0\x2f\x6c\x15\x5d\xb3\x24\xd3\x73\xb2\xf0\xdd\x82\x33\xf8\x0b\xe5\xdb\x78\xa0\xc5\x72\x4c\xea\x43\x66\xd1\x67\xeb\x06\xc2\x88\x4c\xd1\xe7\x0a\x0d\x28\x63\xfd\x09\x67\x89\x0c\xad\x27\x9c\x25\x3a\x03\x3e\x38\x4b\xaa\x8d\xf1\x07\x0c\x5e\x43\x41\x3f\x41\x0b\xe1\x43\xdf\x73\x61\x24\x78\x5a\xaf\x68\xa2\x9a\x7c\xb1\xd0\x97\xbf\xc8\x32\x99\x7e\x1f\x3b\xc8\x87\xc0\xe7\x42\xe9\x79\x73\x46\x20\xb2\xb4\xec\xf3\xa3\xc9\xd2\x79\xcf\x2f\x9a\xec\xad\xb3\xd5\xfc\x70\xbe\xea\xb3\xd5\xfc\xb4\xe3\xf6\xf9\xc5\xa8\xea\x94\xf8\xfc\x62\x2b\xb8\x46\x58\x82\xab\x2b\xf8\x11\x42\xe2\x32\x4a\xce\xa7\xb6\xe7\xb7\xb7\x86\x11\x1a\x9f\x5f\xcc\xb3\xb6\xc6\x1d\xd3\xe0\xdd\x4f\x7a\x93\x79\x1b\x1e\x2e\xc5\xaa\x0d\xe8\x87\x5b\x31\x3b\x46\x1f\xf2\x9b\x1c\x7d\xf7\xdc\xe4\x15\x7b\x73\xdd\x7f\x4c\x97\xe5\x9f\x74\x4e\x38\x74\x3c\x27\x5c\x89\x7d\x56\x01\xc9\x4d\xcd\x3a\xe7\x8e\xad\xae\x01\x08\x33\xc3\xf2\x14\x7f\x8e\x13\xde\x1e\x00\xec\x9c\x5c\xf9\x3c\x31\x45\x1e\xd1\x87\x60\x42\x8f\x38\xfe\x9c\xfa\xf9\x00\x2e\xc8\x4f\x39\xb6\xa2\x05\x72\xd0\x3e\x78\x3c\x9e\x85\x7f\xc6\x2f\xfc\xb8\xef\x77\x8b\x80\xfd\xf4\xfb\x00\xda\xf9\x0c\xf6\xbc\xd1\x42\xd9\x8e\xcf\x9f\xbf\x46\x13\x00\x1b\x59\xee\x7e\x01\x76\xb3\x4f\x05\xc0\x09\x58\x1e\xbf\x2f\x5c\xaf\xff\x95\xdf\xe3\xcf\x16\x6d\xfa\x01\x34\x46\x89\xdf\x17\xe6\x71\x53\x83\xbc\x07\x47\xb2\xe1\x72\x7c\x60\xa8\xcc\x0d\x8e\xd6\xe0\xcb\xa5\x99\xd3\x9d\x5e\xd4\xbe\x69\x91\x5f\x98\xbb\x0c\x44\xf3\x6e\xad\x3e\x8d\xd0\xf1\x06\x2f\x82\x74\xe8\x1b\xbc\x08\xde\xa8\x2f\xe8\x70\x26\xa0\x79\x03\x1d\x4e\x76\xc8\x9b\x43\x52\xb8\xc2\x68\xb0\xdf\x3f\x29\x77\x95\xf1\xcd\x68\xd3\xbc\xa0\xc3\x7d\xbf\x17\x72\xc0\x0d\x0a\x69\xba\xfc\xc3\x4b\x85\xea\x61\x44\xfb\x59\x32\xbc\x25\xf2\xb3\x34\x64\x90\x66\xd9\x03\xf6\x16\xec\x10\xe9\xd8\xb7\x74\x2a\x74\x39\x56\xdd\x72\x05\x93\x20\x4d\x0d\xc1\x56\xda\xd5\x80\xe6\x6f\x21\xba\x4e\xf2\xfd\x05\xfe\xb7\x7e\x6a\xac\xe9\x7f\xff\xb7\xbc\xee\x5f\xa8\x11\x7c\x65\xf4\x86\x27\x63\x79\xd9\x84\x9a\x97\x52\x7d\x5b\xb0\x34\xaa\x0b\x8d\xc0\x26\xa9\xa0\xb7\xc1\xfa\xd3\x5c\xe6\x60\x2d\x3b\xe4\x6d\x20\xa7\x6a\xdf\xbc\xe1\x4a\x70\x8a\xd8\x4b\xfc\xb9\xe9\x22\xde\x1e\xd2\x56\x15\x46\xf6\xd1\xca\xfe\x61\xb7\xe0\x33\x88\x44\xca\xd4\x95\x5d\x43\x07\xdd\x55\xeb\xa2\x93\xda\xe2\x69\x0c\x82\x6f\xe9\xac\xb7\x43\xfe\x29\xd9\xf8\x0e\x50\x2e\xbc\x11\xe2\xda\xca\x21\xf7\xef\xd8\x4d\x5c\x52\x10\x6f\x5c\x5b\xad\xe2\x1a\xc0\x7d\x3e\x5c\xc6\x39\xe0\x75\x32\x26\x15\xf8\x0b\x7f\x6c\x04\x6a\x12\x98\xbf\x76\x70\xbf\xe3\x8a\x07\xd4\x27\xfc\x15\x66\xa5\x79\x47\xf4\x41\x63\x30\x0f\xe2\x38\xf4\x85\xa0\xbb\xea\xfe\x3f\x06\x4d\xa7\x9e\x77\x42\x86\xe8\xb5\x3d\x61\x8f\xf4\x34\x10\x8d\xe3\xe4\xd0\x77\xc6\x66\x53\x83\x66\x34\x48\xeb\x68\xde\x94\xb5\x8e\x26\x5e\x3f\xc9\xcb\x77\x41\xb6\xe8\x49\xc1\xb4\x31\xd1\xe0\x7b\x1e\x74\x48\xcf\x9f\x89\x2c\xea\x7f\xba\xc1\x79\xcf\x0a\x2c\xac\x46\x07\x2b\xc6\x89\x30\x6f\x5c\x28\x2d\x0f\xc7\xb9\xe0\x51\xf4\xd7\xc3\xf4\x54\xf9\x22\x79\x5f\xe6\xf8\x0b\x33\x77\xb5\xe5\xf5\x12\x32\xe9\x55\x7f\xb1\xb1\x2d\xaa\x02\xfb\xc5\xb2\x92\xdc\xa7\x43\xfa\xef\x05\x29\xd7\x66\xd6\x8b\xc9\x61\x8f\xde\xfb\xe3\xfa\xbf\xbb\x1c\xf5\xa9\xfd\x5b\xbd\xb7\xe5\x5d\x19\x10\xfc\x9f\xff\x1b\xe8\x4c\x7a\xff\x8e\x88\x4e\xff\x7f\x01\x2d\xe3\xf2\xc3\xf7\xd5\xbd\x1b\x39\x23\x47\xc3\x8b\x3e\x76\xe2\xcf\xfb\xf0\x7d\x6f\xea\x07\xe0\x4e\xd7\xff\x10\x46\xe4\xd9\x7e\xa2\x7e\x97\x91\xac\xde\xe3\xc0\xc3\x7e\xb6\x2c\xf0\xb0\xe6\x3e\x7d\x39\x41\x1f\xb2\x77\x5e\x32\x91\x9a\x33\xb9\x5e\xe0\x5d\x8d\x96\xff\x12\xdd\xde\x0c\xe9\xff\xbe\x41\xb0\xab\x1e\x70\x39\xd1\x64\x52\x8d\x83\x68\x75\x35\x79\x1c\x47\x9c\xfa\xa7\xca\x80\xeb\xfc\x37\x25\xe3\x20\x9a\xbd\x89\x79\x69\x1c\x07\xcc\xd6\xff\xd9\x3c\xe3\x38\x62\x8b\xea\x7f\xb2\x7b\xdb\xf1\xdf\x91\x6e\x1c\x64\xf7\x1e\xff\x69\xfc\x71\x24\x50\xab\xff\x3b\x57\x8f\x23\x61\x01\x0c\x3f\xbf\xa8\xa0\xba\x46\xa4\x46\xf6\x03\x08\xfb\xec\x0a\x7e\xf1\x82\xbf\x70\x13\x14\x98\x55\x7e\xe2\x01\x0d\x42\xa2\xcd\xff\x49\x81\x71\x64\x76\xe5\xd2\xff\x90\x57\x0b\x62\x69\x1c\x39\xbc\xa0\x7e\x9e\x26\x2f\xfd\xbf\x35\xe6\xd2\x91\x6d\x1c\x71\x5b\x21\xa0\x95\x71\x14\x48\x80\x97\xba\xc0\x6d\x84\x3c\x6e\xe3\xe0\x36\x42\x77\xab\xe3\xe0\x14\x2b\x5f\xcc\x38\x2a\x34\xc8\x43\x3d\xac\x90\x5f\x2f\xf5\x10\x7d\x27\xbb\x70\x1c\xf8\xde\xc5\x0e\x3a\x8e\x16\x93\x32\xf5\x41\xf4\x9f\x5c\x6c\xe3\xd8\xc7\xdc\x29\xa0\x96\x71\x34\x10\x87\x9a\x1a\xb4\xf5\xdb\x4a\x4b\x1f\xc0\x53\xbe\xbc\x2a\xb6\x3a\x9b\xca\xa0\x1e\x47\x0f\xe2\x1a\xbd\xdf\x43\x55\xe8\xfb\x3d\x6e\x57\xfc\x3e\xbe\xa1\xa2\xfa\x21\x62\xd4\x55\xf8\x38\x50\x6e\x2d\x1d\xae\xf0\x8d\xb8\x99\xff\xca\xe0\x92\x68\xa7\x8c\x63\x80\xb8\x98\xf4\xfc\x00\x99\xe5\x50\x03\xf0\xa4\xb7\xe4\x2f\x84\x2b\xdd\x2d\x1c\x64\x34\x7b\x15\x02\x33\xd2\xd2\xa1\x26\x42\xcd\x58\xbc\x6e\x81\x19\xd1\xde\x1c\x07\xd9\x55\xba\x81\x1a\xc7\x0c\xbc\x3e\xbd\x0f\x35\xa3\x00\x89\xc6\x31\xff\x10\x63\x55\x7e\xb8\xee\xd6\xff\x78\xc6\x85\x83\x32\x0e\x88\xa4\x5b\x72\x97\x17\xd8\x0d\xc9\x65\xf2\x1e\xbd\x6a\x57\x60\x40\xfe\x0b\x92\xcd\x38\xd6\xe2\xe8\xa2\xd6\xaf\x40\xa4\xd4\x70\x05\x2b\xf5\xa1\xd6\x06\xa8\x67\x52\xeb\x08\xc6\x2f\x96\x3b\x24\xe2\x0a\x90\x72\x1c\x44\x1f\x88\xb6\x79\x1c\x20\x71\x64\x8b\x11\x4e\xdc\x2d\xb9\xbb\xe4\x51\x75\x6f\xea\x2b\x78\xa1\xab\x7f\x28\x20\x63\xa8\x45\xfb\x00\xdd\x3f\x2b\xe0\x8a\xd4\x2f\xb5\xe8\x0a\x57\x92\x86\x87\x78\x85\x96\x3c\x21\x64\x62\xe9\x46\x70\x1c\xfb\x84\x9d\x9b\x05\x57\x10\x31\x5a\x74\xfe\x62\xc2\xf5\xff\xd6\x7e\xa5\x79\xc9\xfd\x82\x4a\xda\xcf\x93\xc4\xdf\xd5\x20\x68\x14\x85\xd6\x34\x8e\x1f\x82\x30\x79\x93\x90\xd9\xa5\xeb\xb9\x71\xec\xe3\xf1\xfc\x8c\x39\x21\x9b\xcb\x52\xe0\x86\x87\x71\xe9\xf9\x3b\x7a\xd8\xd5\x43\x58\x08\x9b\x95\xc1\xcd\xc5\x81\x77\x31\xc7\x4b\xb1\x16\x8f\x03\x37\x77\xfb\xc8\x21\x50\x3f\xe5\xb9\x19\xc7\x83\xcb\xd3\x73\xb2\x8f\x97\xbd\x7b\x49\xc2\x58\x73\x78\x9b\x3f\xd1\xa2\xe1\x2f\xc6\xed\x8e\xcb\x80\x16\x7b\x19\x42\x3b\x28\xcc\x98\x71\x3c\x21\x17\x3c\x8b\x04\x91\xca\xf5\x3f\x0e\x00\xd5\x9b\x45\xf3\x0b\x84\x70\xd1\x24\xe0\xd5\x6e\x1f\xfd\xb5\x0f\xa0\x79\x79\x56\x51\xb1\x42\xa8\x1a\xe9\x08\xaf\x77\x56\x99\x9b\x6c\x49\xce\x44\x6a\xae\x7b\x90\x12\x81\x4c\x1a\xa2\xb4\xcf\x93\xa9\x29\x2c\x65\xa4\x04\xf1\xdd\xa7\xcc\x36\xfd\xcf\xc8\x19\x29\x05\xa2\xf0\xe1\x1a\x18\xd4\xaa\x16\xa1\x30\x95\x10\x38\x12\x00\xe6\xc2\x1d\x1b\x69\x9f\x40\xa7\x27\x21\x65\xee\x91\xa5\x5c\x12\xd9\x5e\xf2\x89\x8c\x14\xb9\xc0\x5a\x56\xa9\xc4\xce\x53\xfd\xa0\x83\x0b\xa5\x79\xa4\xba\x05\x9b\x6e\x5f\x46\xaa\x8b\x03\xad\xea\x07\x3c\x42\xf8\x28\x23\x71\xed\xdc\x84\x30\x32\xd2\xd6\x5e\xf9\x70\x03\x00\x8f\x68\xb2\xca\x47\x8a\x7b\xe7\xa2\x17\xa0\x1d\x56\x64\xec\x48\x0d\xe1\x94\xd5\xe2\x16\x15\x74\x3f\x40\x0e\xb9\x84\x47\xda\xa7\xb1\xf5\xf9\x22\xa7\xb1\x26\xb7\xc4\x48\x5b\x7f\x65\x81\xcc\x8c\xc4\x69\xac\x65\x6d\xd6\x44\x7a\xb0\x10\xf4\x46\x82\x9a\xb8\x7a\x99\x74\x26\xc9\x83\xd4\xd7\xff\xfe\x6f\xac\xcf\x17\x89\x34\x95\x11\x93\xfa\x5f\x93\xfd\x00\xbe\x23\x6d\xde\x04\xb0\x96\xe2\x09\x46\x02\x58\x4b\x97\xdb\x23\x8d\xf8\xa0\xc6\x88\xc3\x57\x13\xa6\xc8\x48\x23\xa6\x41\x83\x4a\x0c\x61\x71\x05\x7f\x19\x64\xea\xd1\xd6\x47\x4e\x5f\x1e\x69\x22\x1c\x24\x8d\xd2\x02\xe5\x5e\x56\x57\x0a\x7d\xa4\x2c\xf8\x91\x42\x1f\xb5\xfa\x2f\xfa\x26\x81\x62\x29\x84\x92\x91\x56\x74\x47\xc3\x41\xbc\xdf\xfc\x7c\x8d\xe0\x68\x2f\x7a\xd2\xcd\x84\xe3\x30\x12\x60\x52\xdd\xf5\x6d\x7d\xb4\xba\x1e\xbf\xb0\x7f\x5c\x5d\x68\x93\xe2\xf9\xb9\x62\x78\xfd\x42\x8d\x07\xfc\x03\xab\xde\x6b\x70\xab\x93\x2e\x40\xc2\x91\xae\x67\x9f\xad\x2c\x07\xb6\x36\x58\xd5\x0d\xfc\xc5\x17\xfd\x85\x5f\x40\x31\x69\x7c\xb7\x3a\x18\xba\xd5\x1d\x09\x12\xdc\xe6\xf9\xbc\x71\xbd\x0d\x3d\x0f\x23\x87\x39\x91\x46\x22\x2f\x57\x18\xfb\x23\x01\x03\x61\x8b\x27\xdd\x24\x65\x36\x57\xc8\x92\x2c\xae\xf0\x65\x82\x55\x7e\x62\x88\x5d\x06\x79\x48\x2a\x3d\x6d\x65\x30\x04\x3c\x34\xd2\x83\x02\x2e\x2e\x83\x45\xdb\xfd\xfe\xb6\x21\x0f\xa9\xb3\x84\xa8\x3e\x3c\x20\x84\xf3\x77\xef\xfa\x17\xda\x03\xef\x80\x38\xfc\x14\xef\xb9\x7d\xf8\x59\xd5\x1d\x8e\xc3\x8f\x82\x52\x47\x06\x1b\xc9\xe7\x80\x1c\xe4\x5f\x92\x1b\xd0\xfc\x4f\x61\xc3\x0e\x48\xf4\xa7\xcd\xec\x1c\x27\x0d\xb1\xe8\x8f\x0c\xd0\x90\x60\x6f\x46\xce\xb1\xea\xa6\xca\x2b\xf0\xff\xfc\x00\x21\x38\x92\xad\xc1\x79\xdf\x94\x82\x30\xe0\xbc\xcf\xcb\x4d\x2c\x00\x63\xfa\xff\x2d\x8c\x75\x9d\x35\x82\xbf\xbe\xb9\x85\x25\x48\x90\x96\xca\x00\x2e\x26\x57\x47\xbc\xbc\xec\xfa\x5c\xf6\x49\x66\xb9\xba\xf0\xd8\xf8\x6b\xa0\x34\x24\x57\x7f\x91\x82\xe0\xe7\x03\xdf\x50\x73\x08\x1f\x7e\x51\x06\xc5\x80\x0f\x7f\xc8\x5f\x32\xe0\xc3\x6f\xc3\xff\x93\xd1\xa6\x7c\xb2\x91\x89\x36\x3f\x0e\x97\x19\x0e\xc9\x61\xd8\xeb\xbb\xb8\x76\x06\x04\xf4\x5d\xa1\xd7\x23\x83\x8f\xdc\x3c\xde\xdc\xce\x35\x6f\x3b\x28\xe8\x57\xf5\x04\x10\x44\xa4\x34\x99\x91\xc9\xfc\x6d\xde\x05\xc1\x51\x2f\x1f\xc4\xc8\x7f\x90\x8e\x5a\x65\x19\xe4\x09\x85\xb1\x8e\x4c\xf8\x79\x13\x00\xf0\xc8\xc4\x9f\x4f\x2f\x12\xe2\xcf\x9b\xb2\x26\x47\x86\x38\x55\xd7\x20\x23\x43\x9c\xfa\x19\x44\x74\x8d\x92\x10\x06\x34\xf8\x59\x17\xc9\x23\x68\xf0\x5b\xfd\x54\x80\xb0\xf4\x32\x04\x69\x42\x80\xb5\x03\x1a\xfb\x6e\x65\x95\x61\x7a\x50\x0e\xdb\xc8\x83\x9b\x79\x1d\x5d\x82\xb6\xde\xaa\x23\x0f\xae\xcb\xbc\x0a\xb7\x2a\x99\x9f\x6d\x11\xbc\xa7\x52\x96\x39\x80\x89\xbc\x4a\x02\x22\xd9\x83\xce\xd1\xa7\x79\x48\x81\x4b\xd4\x45\xd2\xc8\x33\xc6\x5c\xba\x29\x93\xf2\x26\x2c\xf5\x91\x67\x8c\xf9\x3f\xf1\xde\x8c\x3c\xa3\xfb\x6a\xee\x0a\x6a\x60\x75\x6f\x41\x21\x23\x41\x03\xe7\x7c\x57\x56\xcb\xc8\x01\xa9\xec\xf9\x39\xc7\x36\xb0\xa4\x49\x83\x12\x3e\x7b\x11\x13\x79\x6d\x93\x30\x9f\xd1\x5a\x59\x60\x19\x5e\x2d\xdb\x2f\x79\x1f\x7e\x9a\x6d\xc6\xcc\xe5\xa1\x4d\xc2\xfc\x5f\xfe\x9b\xbe\x78\x75\xf0\x62\xf4\x85\xbf\x58\x6c\x0d\x30\xec\x9a\xba\x78\x1a\x79\x2b\xa3\xf6\xf9\x60\x1c\x4d\xa4\xcc\xa0\x88\x6f\x9f\x1e\xfd\xe2\x16\xc7\xef\xb3\x4d\xa5\x3a\x20\x6c\x6f\x36\x01\x21\x6c\x6f\xb6\x7e\x82\xb0\xbd\x35\xaf\xa8\xc0\x90\xb0\x64\xe6\x22\xaf\x7d\x36\xf6\xd6\x6e\xcd\xe6\x0e\x84\xeb\x69\x5a\x0e\x72\xd6\x69\xcd\x92\x85\xc3\x4e\xf9\x7c\x21\x82\xa9\xfd\x85\x68\x82\x67\xe1\xa1\x09\xde\x34\x5c\xbe\xd9\xc5\x01\x23\x7a\xfb\x8c\xe9\x3e\xbb\xb4\xcf\x26\x78\x42\x19\xf8\x7f\x08\xb4\x3d\xa9\x81\x5b\x24\x87\x02\x8c\xe8\xcd\x06\x1a\x8c\xe8\xf5\xd3\x63\x70\x06\x8b\xe7\xe4\x8d\x11\x50\x8f\x5f\xe6\xc4\x92\xec\x65\x51\x48\x5d\xc2\x68\xde\x6c\x90\xe4\x37\xa0\xb0\xd4\xde\x17\xcf\xde\xe7\x7f\x5c\xd3\xd3\xf5\xdd\x90\xad\xfc\xf7\xfd\x60\x34\x6f\xca\xa8\x18\x30\x9a\x37\x9b\x54\xc1\x68\xde\x84\x5a\x34\xca\x11\x2d\x2c\x2a\x9f\x94\xfd\x3f\x16\x8c\xf6\x4d\x49\xf1\xfc\x50\x19\x1b\x4b\xc4\xb4\xa3\x70\xd7\x66\x9b\x0a\x92\xf3\x24\xf0\xd9\x51\x52\x74\xb9\xab\xcc\x55\x98\xe4\x5a\x90\x9c\x2b\xf0\x6d\xc0\x71\xde\x6c\xb4\xc3\x71\xde\x7c\x92\x82\xc3\xbc\x59\x7d\x07\x87\xb9\x7d\x40\x70\x94\x37\xa5\x3c\x0c\x48\xc9\x8b\xcf\x8a\xe5\x0f\x47\xd0\xe5\xc8\x88\xf4\xfb\x3f\xde\x57\x7b\x73\x30\x9d\xe8\xa8\x56\x72\x44\x47\xaa\x82\x42\x83\xaa\xcb\x95\xb0\x69\x97\x5b\x54\xa0\x21\x85\x79\x73\x34\x0d\x69\x09\x94\x06\x7d\xb1\xb0\xa8\xab\xff\x67\x51\xcb\x0e\x86\x05\x3d\x35\x01\xa6\x8d\x52\x70\xf7\x6a\x1b\x41\x83\x9e\xd6\xf4\x0b\x2f\xc1\x1f\x9a\xa2\x1a\xab\x46\x56\x5e\xe1\xaa\xce\x6e\x33\x78\xd1\xa7\x50\x1a\x06\xb4\xe8\xd3\xa2\x0c\x1a\xf3\xa6\xe0\xc2\x01\x4d\x79\x53\x10\xc1\x28\x2d\x24\x85\x64\x7f\xc1\x04\x28\xee\x72\x63\x51\xc8\x64\x80\xa7\xbc\x75\x69\x4b\x68\xc6\xc7\xf4\x07\x89\xd1\x6d\x22\xfd\x19\xf0\x8c\x2f\x91\x74\x8f\xa0\x19\x4f\xc9\x15\x30\x8b\xed\x5f\x42\x04\x46\x89\x5b\xba\xe1\x97\x9f\xf8\x9a\x66\x84\x90\x5f\x9f\xd6\xcb\x08\x0a\x39\x97\xa3\xbf\xf2\x1d\x43\x52\x3e\x0f\x2f\x7a\x60\xa2\xec\x12\x09\xd2\xf2\x26\xc0\xd2\x51\xe2\x9a\xce\x8b\x2a\x58\x97\x0e\xbf\xb0\xe2\x05\x8d\xd8\x56\xef\xf3\xb3\x0d\xc7\x36\x83\x3f\xdb\x66\x70\x0b\x91\xdc\xc4\x3b\x2a\x50\x27\x07\xfb\xaa\xf9\x0b\x6f\x3c\xa0\x1a\x27\x0e\xf7\xe4\x72\x85\xff\x46\x5f\x98\x83\xb8\x05\xff\x3f\xa3\x02\xad\x02\x92\xe6\x8b\xe7\x28\x2c\x88\xfe\xf9\x21\xf0\xdf\x5d\xde\x26\x90\x62\x6e\x07\x3c\xe5\x3d\xc9\xa6\x82\x96\x3c\xdb\x99\x57\x56\x64\x3c\xa8\x0b\xd8\x00\xc9\xf3\xb8\x6d\x80\x2e\xbc\x97\x01\xeb\xb7\x71\x7b\x47\xb0\x7e\x37\x9f\xbe\xa0\xfd\xce\xc3\x7b\xff\xa4\x41\x96\x55\xd8\x00\xcb\xeb\x22\x80\x08\x65\xc9\x16\xa8\x35\xbf\xd2\xf2\x82\xf9\xd8\x83\xce\x89\xd5\xf7\x28\xb0\x7c\x77\x7b\xc6\x20\xf1\xee\xbe\xe9\x09\x12\x6f\x21\x1d\x0c\x18\xb8\xbb\xfd\xd7\xe5\x17\x1f\xb4\xac\xf8\x45\x97\xd5\xa3\x6d\x04\x74\x05\x9b\x0f\x18\xb8\xbb\x62\xc5\x47\xf9\x9d\x38\x5d\x34\x24\x30\x72\x2b\x9f\x7b\xc0\xc8\x9d\xbe\xcb\xe4\x17\x63\xac\x59\xc7\x48\xe8\x32\xee\xa1\xe4\xee\x76\x16\x16\xc0\x88\x75\x9d\x39\x60\xdc\xee\xba\x2d\x1e\xc1\xb8\xdd\xba\x65\xcd\x83\xca\xb5\xf0\xda\x27\xd8\xae\x50\xbc\x51\x9e\xd8\x3a\x9e\x65\x8e\xb0\x76\x95\x95\x27\xd6\xa1\x9b\xf8\x44\x13\xd4\x24\xe2\x76\x0f\x2f\x74\xe0\xa9\x92\x55\x1e\xf7\x73\x1f\x8d\x13\x47\x54\x65\x00\x8c\xba\x75\x68\xb1\x3b\xb2\x1e\x35\x1e\xe8\xfa\x81\x10\x1f\x8d\x7a\x85\x98\xa8\x65\x97\xb9\x56\x90\xda\xaf\x47\x4c\x7b\x55\x99\x41\x96\xf8\x83\xcf\xba\x58\x5e\xd7\x04\xd4\xeb\xe1\xff\x2f\x9e\xff\xaf\x07\x75\xeb\xc4\x6a\x1d\x59\x33\x63\x28\x3f\x15\x6c\xd3\xdd\x17\x8c\x35\x73\x02\x1b\x6e\x20\x67\x64\x5f\xb6\xd5\x38\x23\x2b\xea\x69\xc0\x4f\xdd\x7d\x57\x14\xfc\xd4\x4d\xb0\xde\x03\x7e\xea\xee\xeb\xb7\xe0\xa7\x6e\x8a\xc4\x1d\x35\xb3\x10\x24\x32\x2b\x61\xa8\x6d\xc8\x9a\xac\x9c\xaa\x7d\x01\x58\x0b\x41\x3f\x1e\x14\x92\xb0\x45\xd0\x31\x60\xb8\x2e\x0a\xf9\x1f\x10\x5c\xe7\x55\xfd\x3f\xe1\x20\xc3\x65\x00\x2e\xa4\x32\x82\xbf\xba\x29\x48\x73\xd4\x00\xf8\x95\xc8\xad\x15\xc4\x0c\xc9\xe8\x1a\xe0\xb5\xb2\x66\x2b\x51\xa7\x6d\xfc\x9b\xd2\xa9\x01\x96\xa8\x55\x08\x9f\xf4\x7e\xdb\xd5\x01\x81\x29\xe9\x56\x39\xf5\x2e\x1d\x10\x6b\x8b\x49\x57\xfb\x71\xb0\x0a\xde\x62\x04\x01\x75\x13\xbd\xd6\x80\x80\xba\xe8\xde\x79\x40\x40\x6d\x72\xd7\x51\xe3\x7e\x50\x02\x1e\xbe\xe9\x39\x3e\x65\xe2\xe3\x3d\xa5\x1d\x04\x67\x49\xbf\xba\xb5\x62\x9a\xee\x00\xd7\x79\xca\x74\x1c\x35\xa0\x70\x3d\x41\x03\x6c\x45\x8f\x67\x68\x20\x05\x33\x0e\xe8\xa5\x53\x1b\xde\x47\x84\xc9\x2a\xda\x7a\xd4\x00\xfd\x97\x8a\xaa\xa1\x82\x86\x37\x52\x20\x6c\x7d\x1e\x38\xe3\x01\xb5\x29\x40\xff\x93\x5f\xa0\x4d\xc9\x5f\x8c\x36\x49\x22\x57\x20\xb8\x84\x5a\x32\xea\x8a\x51\x57\x9b\x17\xa3\x3e\xbd\x37\x03\xa3\x5f\x12\xb6\x06\x84\x96\x47\xed\x04\x6e\xc9\x2d\x08\xc4\x7d\x79\x5b\xa0\x6f\x9e\x87\xb7\x26\x2a\xc2\xf6\x35\x54\xc9\x4b\xc1\x77\x23\x78\x88\xc5\x4e\x35\xa0\x11\x5e\xc5\x0d\x84\x75\x2e\xbb\xbe\x70\x49\x2a\x1c\x73\x40\x12\xbc\xac\x12\x6a\x40\x68\xe9\xa0\x5b\xc9\x88\x75\x8a\xd6\xa8\x01\x1f\x5f\x5c\x41\x0c\x41\xf5\x27\xf7\x10\x88\x5a\x7e\x04\x4b\xb0\x53\x9e\x06\x2c\xc1\x7d\x59\xbe\x91\xca\xe1\x9c\xad\x01\x4b\x70\xf1\xcd\x71\xb0\x04\x1f\x9e\xd7\x07\x37\xb6\xce\x6d\x41\x12\xec\x38\xfe\x01\x49\x70\x19\x1e\x15\x0e\x7e\xd3\x7b\xf7\xc1\x7d\xe0\xdd\xf8\x06\xfb\xaa\xfe\x7f\xa3\xc2\xee\x1f\x08\x59\xb4\x88\x7d\x83\x41\x4b\x2d\x78\xa3\xc2\xff\x46\x11\x16\xde\x2a\xdc\x93\xd1\x80\x21\xb1\x3b\xa7\x1d\xdb\xa4\x16\x8b\xc1\x68\x20\x8d\x38\x24\x70\xc0\xc2\xdb\x95\xe2\x3a\x5a\xc4\x70\x28\xf0\x74\xb4\x04\x8e\x87\x16\x16\x34\xbd\xc9\x11\xd6\x03\x9e\xde\x6e\x37\x26\x24\xbb\xc9\x27\x1f\x48\x76\x9b\x10\x82\x06\x24\xbb\x45\x44\x31\x03\x8e\xdd\xe4\x50\xda\x01\xc9\x6e\xb1\x15\xdf\x60\xe3\xf1\x55\x24\x9c\xba\x43\xa8\x12\x03\x4e\xdd\xe4\x00\xbb\x01\xa9\x6e\x29\xda\xdf\x2d\x07\x6e\x86\xbe\xc8\xd9\xad\x7a\x0c\x48\x7e\x70\xdc\xe5\x80\x75\x37\x29\xa5\x67\xc0\xba\xdb\xd7\xa7\x02\x54\x7d\xf7\xff\x8c\xaa\x22\x43\x47\x8b\xb8\x4a\xe9\xfa\x06\x36\x88\x4f\x36\x2d\x40\x14\x87\xcb\x60\xf6\x4a\xcd\xb5\xad\x94\x8a\xb8\x92\x07\xac\xbd\xc9\xb1\xb1\x03\xda\xde\x64\x53\x00\xda\xde\xe4\x48\xce\x01\x6f\x6f\x9e\x6e\x62\x00\x96\x4d\xff\xbf\xe2\x05\x7f\x62\x0b\x00\x41\xf9\x8f\xa0\xed\x5d\xf3\x9f\x42\x06\xe0\xf4\xed\xbe\x5d\x86\xd3\x37\x39\x52\x75\x34\x50\xee\x85\xfb\x3f\x82\xe4\x57\x0c\x21\x03\x92\xdf\x6e\x91\xdc\xb6\x52\xec\x96\xd9\x90\xfc\x66\xa1\x4e\x8e\x16\xf7\x84\x8a\x27\x1c\x0d\x90\x79\xf1\x06\x0c\x58\x80\xcb\x70\x7f\x81\x88\x17\x57\xda\x08\xd2\x5e\xbb\xc1\x20\xed\x6d\x87\x67\x00\x35\x38\xbc\x91\x1a\x24\x95\x6e\x30\xec\x7a\x82\xb1\x1c\x50\xf4\x0e\xdb\xf8\x0d\x76\x9e\xee\x35\x16\xe9\xa1\xee\x10\x90\xf0\x3e\xd5\x40\xd9\x3b\x7d\x23\x02\x03\x6f\xff\xb4\x9f\x88\xcc\xa6\x78\xc9\x01\x03\x6f\xf2\x95\x1b\x0c\xbc\xe9\xbb\xe6\xb6\x9e\x1c\x0a\xc7\x1e\xc1\xc0\xdb\x96\x14\x2f\x14\xbc\xd9\xd1\x59\x0d\xdc\xc9\xe1\x26\x0f\xcc\x45\xff\x0f\x84\xbc\xb5\x60\x9b\x91\x94\xac\x21\x98\x70\xaf\x4a\xc5\x40\xd1\x3b\x7c\x98\x6e\x33\xee\xed\xf4\xfc\x42\xd4\xd8\xa5\x01\x47\x6f\xf5\xb1\x05\x8e\xde\x71\x58\xb2\xc4\x35\xe3\x92\xcb\x03\x8e\xde\xe1\x2b\x03\x28\x7a\x53\xfb\xcc\xf2\x3e\xda\x8d\xc3\x4d\x08\x2e\x1d\x37\x19\x8a\xde\xb6\xe4\x26\x82\xa2\x37\x0d\x0b\x2b\xb8\x74\x8a\xf7\x1d\xf9\x29\x87\xac\xbb\xb6\x62\xe7\x7b\x90\x48\x31\x75\x38\x17\x14\xbd\x43\x51\xf4\x03\x86\xde\xfa\xd9\xe9\xa4\x98\x36\xb1\x8f\x8e\xb6\x15\xf9\xf8\x2c\x04\x00\xd7\x3c\x29\x20\x8d\xf8\xc8\x0f\xa3\x6e\xb5\x41\x0c\xa3\xee\xb0\x0a\xfb\x63\xd4\xb5\xbb\xf5\x8f\x52\xf7\xd3\x40\x1c\xd0\x3a\x0d\xc3\xa8\x3b\x6c\x18\x34\x02\x45\x7d\x4d\xd3\x2e\x74\xa6\x87\xf4\x0a\x52\x3f\x97\x27\xcf\x6b\xd9\xe1\x8f\x56\x4e\xee\x80\x70\xb7\xd8\x17\x09\xe1\x6e\x2e\xd6\x68\xd7\x03\x82\x8e\xca\x3f\x16\x81\x07\x0c\x68\xce\xc3\x1b\x97\x54\x15\xdf\xe7\xc3\xb7\x9b\x04\x99\x3b\xe0\xdb\x4d\x66\x29\x1c\xed\x37\xc0\x29\xd4\x08\xfd\xd0\x0e\x56\x91\x80\xf2\x67\x4b\x12\xce\xb2\xb6\x47\x21\xe4\x1d\xbe\x22\x80\x6f\xb7\x7e\x3e\x18\x96\x8f\xc8\x55\x47\xbb\xe1\xca\xf6\xba\x07\x2b\x44\xa1\xd1\x03\x82\xde\x61\x2b\x04\x82\xde\x5d\x81\xbe\x18\x0e\x6f\x0f\x19\xb7\xb7\x82\xc0\x1d\x2d\x82\x7b\xec\x8c\x6c\x37\xa1\x34\x1e\xc3\x1b\x9a\x4d\x77\x19\x46\xdf\xe6\x16\x3c\x31\xa6\x7a\xfe\x61\x4c\xdd\xa5\xb0\x7b\x96\x4e\x7a\x50\xfe\x8e\x43\x0e\x71\x28\x7f\xc7\x47\x3a\x3e\x2c\x02\x19\x4e\x50\xfe\xee\x0a\xfc\x05\xe8\xe6\xac\x7d\x9e\x8b\x17\xfe\x25\xdf\x73\xb4\x40\x12\xb1\x01\x40\x2c\xed\x61\xe5\x10\x2c\x3c\xb6\x30\xde\x80\xaf\xd3\xc7\x5f\xf6\x88\x2d\x94\x6d\x54\x8d\x43\xe3\x09\x61\xf0\xb0\x9b\xed\x8f\x30\x58\xca\xe9\x8f\x2f\xb8\xfa\x7f\x86\x4f\xde\xf1\xce\xc1\xbd\x7b\x8f\xf4\x7d\x70\x1f\x8e\x8b\x85\x41\x78\x08\x68\x6b\xc0\x20\x3c\xd6\xe7\xff\x68\xe0\x54\x19\xf8\x78\x99\x8d\x3d\x45\x03\x9b\xca\xd4\x2f\xaf\x5d\xc7\x59\xde\xbd\x49\x7a\x8a\xf9\x59\x2a\x33\x3f\x32\xce\x21\x10\x1e\x0e\xa3\xed\x11\x47\xe4\x5d\xd7\x13\xf3\x53\xfd\xc5\x07\xca\x64\xf5\x00\x1b\xcd\x36\x19\x84\xc2\x43\x00\x0f\xa3\x67\xc2\xcd\x3d\x44\x99\x5d\x2d\x07\x53\xdf\x36\xdd\xfe\xa0\x3e\x90\x49\x6f\xd2\xa6\x80\x91\x78\xd8\x4d\x08\x23\x71\x71\x14\x07\x84\xc4\xd3\x16\x13\x84\xc4\xbb\x42\x4d\x52\x70\x32\x2e\x97\x81\x04\x4a\xae\x00\x34\xd0\xe9\x16\xff\xa2\x02\x37\x91\x7d\xef\x2e\x17\xba\x28\x33\xb5\x17\x56\x81\x4c\x75\x08\x8b\x8d\xa0\x37\x20\x2c\x1e\x0e\xa2\xe9\xdb\x22\x2b\x3e\x23\x76\xdc\xed\xfd\x53\x1f\x8b\xc0\xab\x0c\xde\x85\xfe\x59\x96\x5c\xb0\x8b\x37\x7b\xf4\xc2\x32\xd6\xe1\xa4\xd7\x98\x03\x4d\x3a\x94\x8d\xfd\xb3\x0c\x61\x38\xb6\x51\x05\xc3\xf1\x50\x4c\xfc\xe8\x35\xc6\xd0\xeb\xb4\x2e\x16\xbe\x6b\x24\x6c\x44\x43\x56\x63\x84\x54\x7f\x43\x8c\x48\x5d\xc3\x68\xbc\xeb\xf3\x0f\x88\x11\x69\x5f\x28\x8d\x53\xff\x8c\x31\x57\xf6\xbe\xa3\xe8\x8d\x31\xe9\xfe\x3f\xc6\xc4\x4d\x6e\x31\x26\x6a\x52\x7b\x89\x38\x57\x19\x2c\x6e\x25\xb2\x8f\x0e\x68\xed\x67\xe7\xf4\xca\x07\x5d\x6e\xff\xfb\xbf\xe9\xeb\x74\x18\x8e\xf7\x07\xd5\x47\xa2\x9b\x7d\x2f\x14\x0c\xc7\xfd\xd3\x82\xce\x98\xb9\x85\x7f\x86\x9f\x47\xa5\xb3\xb5\x74\x8c\xed\xfd\xf7\xbf\xff\x9b\x7d\xb8\x46\xa6\xd5\xeb\x88\x5b\x02\xc7\xa7\xf5\x91\xf0\xaf\xa8\xbe\x11\x6c\xe6\x7a\x7f\x9b\x79\xc9\x47\xcc\x1e\x99\x37\x9e\xb5\xf1\x23\x4e\xc3\xf5\xef\x93\xff\xf2\xe3\x7b\xa7\x7b\xdb\x00\x27\x27\x54\xdd\x11\x1c\xc8\xfd\x18\xfe\x21\xa0\x3a\xf5\xf9\x19\x93\x2e\x03\xa4\x63\x36\xda\xbb\x02\x49\x72\x3e\x92\x5f\xd8\x47\x81\xe5\x11\x06\x04\x77\x78\xdf\xe0\x4b\xb1\xd5\x08\x49\xf2\xb2\x24\x21\x56\xba\x0b\x47\x78\x74\xe0\xe4\x6c\x34\x42\xa2\x5c\xc6\x3f\xa5\x79\x8e\xbe\xed\xc1\x6e\x83\xb2\x6f\x7b\x70\x0c\x59\x37\x7d\x5b\x67\xdd\xf6\x23\x94\xc9\xc5\xe6\x5e\xbf\x82\x86\x55\xef\x6f\xeb\x69\xf8\x42\xa9\x13\xb9\xdc\x85\x25\x34\xe0\x58\x1e\xbe\x1e\xe9\x17\x3b\xc0\xb3\x47\xe8\x72\x17\xa7\xdb\xe8\xe0\xdb\x4e\x0f\xc7\x45\xc8\x89\x8c\xe6\xfe\x23\x41\xda\x72\x0d\xb8\x5a\xdf\xf2\xc1\xc1\x9c\x95\x47\x3b\xe0\x60\x4e\x5d\xf9\x70\xa3\x87\x7d\xe4\x3d\xf8\x8b\x16\x78\x0c\xb6\x81\x54\xed\x51\xec\xdb\x40\xea\x02\xcb\x1b\x9d\xd4\xde\xee\xfa\x20\x39\xf0\x96\xba\x0f\xa2\x6a\x55\xdd\xcd\x65\xbc\x55\x05\x99\x3f\xce\x01\xe9\x77\x0c\x99\x2c\xd4\x7e\x43\x1c\x62\xb1\x16\x58\x6c\xc9\xda\xef\x0e\xea\x59\xbf\x10\xe0\xa6\x9a\x84\x3b\x32\xfe\x5c\xc1\x85\xff\x40\x1d\xd8\xe6\xd3\x9c\x96\xd4\x37\x78\xbc\x3a\x24\x40\x22\xbd\x3f\xa8\x2e\x3e\x89\x70\x35\x55\x00\x38\x5b\x77\x80\x7a\x7f\xa0\xaa\xf8\xd4\x50\xb7\xf6\xf2\x26\xe2\x76\x62\x78\xd7\xfd\x05\x5b\x67\xbf\x40\x2e\xad\x17\xf5\x03\x55\xb7\x05\xe7\x13\xc9\x3f\x6a\xc1\x1b\x4d\xb4\xc9\xb0\x6d\xa6\xee\x10\x4e\x78\xaa\xf3\xd0\x85\x3e\x3c\xd5\xfb\x05\x35\xe1\xc5\x8a\x75\x0b\x5e\xb0\x0e\xbc\x0a\x08\xd9\x1b\xde\x87\x6f\x84\x6f\xb9\x42\x44\xb5\x83\xf6\x21\xa6\x4e\xbe\x7d\x80\x98\x7a\x3f\xf0\xdf\x0f\x30\x53\xef\x1f\xaa\x7e\x00\xf8\x64\xba\x5c\xf9\x64\x53\x19\x3a\xad\xe6\x0a\x82\x8e\x43\xa2\x31\xb8\xa9\x95\xb0\x3b\x82\x9b\xba\x3b\x26\x0e\x6e\xea\xee\x53\xfc\x48\x74\x4a\x2a\x75\x70\x43\xe2\xab\xc5\x11\x84\x1d\x5a\xbb\x83\x0c\x60\xbb\x75\x07\x19\xc0\x1f\xc7\xc8\xc8\x1c\xeb\x25\xbc\x83\x59\xda\xde\x79\x98\xa5\xd3\xe7\x6e\x10\x6a\x69\x83\x45\x0f\xa8\xa5\xab\x2d\x35\x98\xa2\xfb\xa7\xcf\xb8\xa2\x3e\x57\x75\x30\x45\xe7\xa1\x6b\x2b\x88\x9f\xbb\xdd\xf7\xa3\x04\x3f\xa0\xff\x87\x59\x48\xdb\x6f\x14\x3c\x33\x32\x6b\x46\x89\xed\x2f\x91\x06\x73\x74\x11\xda\xca\x18\x38\x8e\x3e\x57\x6b\x63\x1b\x32\xd5\xf9\x3b\x50\x49\x57\x87\x76\x8c\x80\xa9\x95\x08\x84\x49\x3a\x7d\x6e\xd6\xa0\x92\xee\xca\x95\x1b\x50\x47\x77\xa7\x91\x41\xf4\xbc\xa6\xff\x6f\xcc\x92\x84\xf2\x20\x8e\x2f\x7f\xca\x04\x8b\x7a\x08\x40\x81\x15\x0a\xed\x18\xd0\x05\x0a\x3a\x7f\x8c\x08\x11\x2f\xfe\x1f\xfb\xde\x57\x0c\x50\x31\xf7\x21\x21\x3d\xc8\xd7\xb5\x9f\x79\x40\x20\x85\x3b\xff\x1f\x74\x0e\x44\xce\x5d\x69\xed\x63\x90\x30\xe5\xe8\xe0\xd1\x23\xb4\x45\x33\x12\x97\xf8\x12\xa8\xb0\x22\x77\x87\x59\x40\x8a\x6c\xb4\x9b\x01\x29\x72\x17\x43\xe4\x80\x14\xb9\x5b\x9c\xc1\x81\x9c\x85\xb7\x3a\x06\x1a\xbc\x78\x7e\xe6\x8f\xe7\x35\xfc\x33\xbe\xa7\xf6\x80\xf3\x25\x9c\x95\x31\xb8\x6f\x77\x68\xce\x58\x88\x9a\xe4\xff\x89\xcb\xf4\x1e\x58\x5b\xdc\xfa\x42\x6c\x40\x1f\x62\x6a\xde\x01\x1f\x71\xcb\x6e\xc0\xc9\x15\x9d\xc4\x6f\xd0\x0d\x9b\x9a\x77\x40\x37\x5c\xc4\x61\x33\xa0\x1b\x4e\xe6\xae\x1d\xf0\x0d\x57\x47\x66\x8c\x20\x1c\xf1\x3e\x0f\xba\x61\x3b\x09\xe0\x1b\x2e\xf6\x6a\x40\x37\xbc\x1c\xe0\x1c\x6c\xc2\x9f\x5d\x07\x97\x60\x97\x6b\x2b\xd8\x84\x4d\x5d\x3b\x82\x4d\x78\x78\xdb\x82\x98\xfa\xd9\x96\x17\xa6\xb6\xb7\xe1\xc5\xa0\xcb\x4a\x1c\x17\xfb\xde\x4e\xee\xb1\xed\x80\xe1\x34\xbe\xb1\xf5\xfa\x9a\x1e\x34\xe2\xf6\x6c\x76\x0d\x94\xa2\xa3\xe0\xa1\xf7\x9d\x36\x1b\xc7\x1f\xc4\xbb\x56\xd5\xfd\xc3\x50\xd1\xff\xdc\xa5\xf8\x9e\x60\x3c\xb0\x27\xc8\x0b\x32\x9e\xe8\xb1\x6e\x87\x21\xeb\xad\x8e\xc0\x1e\xa1\xe3\x44\xe6\x37\x06\x37\xf0\xf6\x93\x8c\x27\x66\xcd\x83\x4e\x4a\x91\xef\xa8\x06\x29\x45\x26\xe3\x1b\xe3\x81\x8e\xea\x53\xc6\x8f\xef\x75\xc0\x95\x7d\xab\x6e\xf3\x16\x0c\x1e\x32\x10\x2f\x6c\x6a\xc1\xf6\x5b\x8a\x37\x46\xe0\x8d\xea\xe2\x62\x70\x59\x63\x62\xb9\x31\x5e\x62\xc2\x75\x9d\x0d\x1d\x70\xf1\x15\x57\xd0\x01\x3b\xb1\x0d\x36\xe0\xec\x88\xe5\x60\x03\x76\x84\xc0\x04\x4d\xd4\xa7\x97\x09\xe0\x85\x7d\x67\xc1\xe7\x2b\xb4\xb8\x01\x5f\x6f\x39\x3e\x65\x7c\x6d\xda\xe9\xb0\xef\x76\x07\x18\xc0\xbe\x5b\x84\x4f\x31\x20\xdf\x4d\xa6\x91\x1b\x13\x44\x8c\x43\x31\x0d\x13\x20\x2c\x93\xb0\x0d\xe8\x79\x0d\x23\x39\x26\x09\x4a\x66\x61\x1b\x73\x6b\xd0\xea\x31\x9d\x81\x2b\xef\xd8\xc7\x49\xc6\xae\x69\xd7\xc6\x4c\x88\x2b\x39\x3f\x66\x46\x1b\x48\x3c\x4c\xae\x7f\xcc\x82\x36\x26\x61\x09\x9f\x51\x0a\x1d\xeb\x36\x01\x1c\xef\x18\xeb\x19\xae\x02\x51\xe1\x8c\xe0\x08\x1e\x87\x1f\x40\xe0\xb9\xcd\xe8\x5c\x91\xc8\x8f\x59\xe0\xa9\xd6\x52\x9f\x84\x10\xd8\x59\x02\xa7\x70\x11\x93\xca\x80\x53\xb8\x16\x09\x07\x38\x84\xbb\x03\x8e\x66\x9c\xf4\x9d\x0f\x0a\x89\x70\xb6\x02\x0a\x12\x61\x53\x9f\x0d\x48\x84\x93\x2f\x53\x21\x09\x5e\x73\xfd\xd3\xe5\x0d\x0c\xc2\xc9\x7c\x4d\x03\x0a\xe1\xe4\x9b\x03\x28\x84\x93\x39\xb4\xc6\x0c\x05\xfc\xf9\x1c\x1d\x48\x7e\x21\x3a\x50\xfd\x03\xb7\x33\x72\x88\x05\x05\xb0\x79\xc9\x06\x14\xc0\xdd\xc9\x0a\x50\x00\x27\xd3\x74\x0d\x38\x80\xcb\x74\x8d\x40\xc9\x8b\x2e\x60\x4c\x90\xe0\x2d\x2c\xa0\xf4\x5d\xd5\xef\x43\xd9\xe8\x63\x29\x14\xbd\xa9\x17\x69\x2d\x38\x7a\xbb\xb5\x12\x14\xbd\xd9\xa9\x6f\xb3\x03\x6f\xe9\x06\x10\xa6\x30\x24\x7c\x66\x27\x0c\xe2\xf3\x3e\x19\x9a\x5e\x24\x30\x36\x3a\xc5\x74\xc2\x36\xe3\xfc\x8b\x49\xd0\x81\x23\x5d\xe6\x8c\x55\x29\x5b\x72\x82\xc5\x55\x3f\x65\xa0\xb3\x9a\x5f\xd8\x2a\xe8\x53\xdc\xed\xb1\xfc\x9f\x5b\x0b\x27\x7b\xdc\x66\x9c\x93\x8b\x1b\xc0\x39\xd9\x66\x02\x84\xbe\x65\x54\x97\x03\x04\x50\x23\xb8\x62\x04\x97\x6b\x64\x04\xbd\x93\x21\x68\x1c\x1e\x41\x62\x1a\x1c\xaa\x03\xe1\x6f\xfa\x4c\x21\xb0\xec\xdd\xbe\x85\x09\xf7\x8c\x43\x77\x60\x04\xde\x0f\xe8\x0b\x67\x34\x59\x4d\x02\x8e\xb3\x3b\x2f\x69\x9e\x88\x02\x1d\x5a\x66\x58\x06\xbe\x90\x87\x44\x38\x09\x2f\x73\xcc\xb0\x0c\x7c\x43\x3f\x4f\x32\xa5\x3c\x2a\x28\x7a\xfb\x1d\x21\x0d\xce\xcb\x9d\xb8\x38\xbd\x7a\x9d\x5d\xd8\x92\x16\x4e\x18\x02\xed\xf3\x7c\x30\xc6\xab\x4b\x57\xac\x53\x3f\x8f\x2c\xb2\x6c\x0a\x3a\x9b\xe2\xf7\x91\x9f\xa2\xab\x19\x73\x1b\x0a\x33\x7f\x3e\x70\xc7\x03\x6e\x31\x47\x45\xa9\xd9\x3f\x96\x62\x2f\x1c\x2e\x50\x7c\xbf\x01\x49\x71\x17\x06\xdc\x80\xa4\x38\x3b\xb7\x19\x8e\xe2\x24\xc2\xbf\x31\x6f\x46\x44\x96\xcd\x24\x17\xcd\x27\x4b\x28\x89\xb3\x4f\xd7\xb0\x08\x77\x9f\xce\x67\x18\x1e\xf2\x17\x41\x12\xbc\xaa\xdb\x07\x35\x5a\x6d\xfe\x7f\xc2\x89\xa8\xf6\xa2\xe4\x87\x85\xe5\x03\xd3\x8b\x8e\x95\x93\xb8\x3c\xc7\x27\xcc\x38\xe9\x7e\x2a\x24\x48\xc3\xf1\x9c\x13\x34\x4c\x5f\x37\x40\x1a\x9c\x7d\x07\x38\x5f\x96\x84\x76\x5a\x70\x04\x77\xa1\xc2\x0e\x38\x82\xb3\xcf\x33\x70\x04\x77\x47\x84\x41\xf9\x3b\x84\x30\x37\x16\x11\x15\x62\xd3\x19\x2b\x68\x23\xb5\x91\x56\x42\x9a\x4a\xd6\x05\xc3\xaf\x4d\xb3\x05\x75\x8a\xc9\x6a\xc6\x02\xfd\xd1\x27\x86\x95\x4f\x86\xc4\x2f\x5c\xa0\x66\xf8\xf9\x70\x09\xea\x79\x32\xcf\xec\x32\x0c\x8a\xe0\xa1\x45\xb8\x38\x02\xee\x35\xf8\x0f\xea\x66\x15\x72\xeb\x3f\x95\x91\x5b\xaf\xf9\x0b\x7e\xe1\x4f\xa2\x17\x04\xc3\xa5\x78\x38\x43\xfb\x39\xf3\x6b\x11\x5c\x60\xb7\xf4\xaa\xc0\x8e\x78\xbc\xe1\x52\xf3\x65\xc5\x82\x02\xbf\x37\xc9\xee\x55\x27\x2f\xa8\x09\x70\xe0\xdb\x15\x0f\x43\x71\xb7\x0f\x77\x35\xac\x1c\x89\xc2\x60\x28\x16\xe2\xd3\x80\xa1\xb8\xdb\x05\x0b\x43\xb1\x01\xc6\xc7\x8a\x9c\x64\x9d\x88\x60\x28\x2e\xbe\x21\x0c\x82\x62\x1f\xa9\x57\x47\x1b\xb6\xec\x07\xc8\x08\xd6\x69\x60\x41\x58\xbf\xbc\x82\xc2\x4d\x6d\x6f\x0d\x14\xc6\xbd\x7b\x0c\x3b\x3d\xf6\xa0\x03\xba\x21\xba\x80\xb1\x02\x9d\x5a\x0c\x18\x63\x91\x37\x26\xa8\xe5\x01\x01\x71\x72\x22\xdb\x8a\x60\x82\xcf\xff\x2b\x32\xd1\x35\x86\x91\x83\xac\x43\x38\x0c\xc4\x75\x7a\x0c\x49\x14\xf3\x91\x0c\x7e\xe1\xfc\x19\x03\x30\x34\x7a\xf7\xff\x51\x9f\x1a\xb8\xd5\xdf\xf4\x9d\xd9\x9a\x91\x11\xaa\x06\x12\x72\x27\x9c\xdf\xb1\x56\xbc\xaf\x32\x01\x73\x8e\x42\x0a\xfa\x60\x43\x34\x04\x3b\xb0\xbd\x8c\x41\xf6\xeb\xb0\xc3\x15\xf7\xe8\x62\xec\x1b\x6b\x6b\x86\xe5\x5c\xc0\x15\x88\x4b\xfe\x20\x79\xc7\x66\xe0\x1b\x2b\xf2\x8e\xbd\x4b\xb9\x39\x2f\xfe\xc2\x16\xfd\xd5\x86\x2f\x74\xc1\xb9\x25\x97\x7f\x51\xa1\x7f\x00\xa7\xde\x43\xc6\x19\x51\x18\x45\x03\x7e\xe1\x64\xb2\xb5\x01\xc1\x70\x75\xec\xc1\xfa\x83\xb1\x50\x0b\x7e\xd1\x64\x0f\x52\xe0\x58\xe8\x80\xb3\xb8\x6c\xb7\xcd\xb0\xf0\x15\xdb\x11\x0a\x41\xf1\xae\xc0\x3f\x5c\xc4\x3c\xfb\x85\xe8\xc3\xf2\x27\xa1\x47\xf7\x34\xe0\x1d\xb6\xb6\x59\x77\xc6\xdd\xad\x0a\x40\x75\x74\x90\xcb\xc2\xb7\xeb\x38\x1e\x18\x89\xab\x58\x9b\xc6\x82\x82\x7e\x49\x3b\xac\x27\xee\x8e\x35\x66\x5c\x7d\x7f\x70\x2c\x16\x21\x7f\xc9\x7b\xfd\x21\xad\xd6\xb3\x10\xa7\x54\x1f\x81\xd6\x13\x70\x2a\xfe\xe2\x19\x0f\xa8\x4b\xfb\x94\xda\x05\xac\x3e\x16\xd9\x65\x1f\xdc\x88\x20\x3e\x16\xdb\xcc\x58\x20\x5f\x7c\x70\x22\xd6\x56\x71\xf9\xf0\xca\xc1\xdb\x6b\xef\xf0\x22\x1f\xcc\x57\x8d\xeb\x25\x68\x44\x07\x90\xf5\xc6\x17\x65\x65\x40\x9d\x9c\x7d\x53\x08\x33\x72\x71\x0c\x2e\xc4\xc8\xe9\x93\x02\x0f\x33\x72\xf7\x55\xe0\x79\xc4\xb0\xba\x82\x4e\xb9\xa9\x7c\x81\xde\xe6\x72\xb4\xe0\xf3\x45\x20\x0a\x34\x8f\xe7\xd6\x91\x45\x84\x65\xe3\x4c\x5c\xbc\xb4\x7f\x61\x92\x1e\x27\x38\x1a\x3e\xd7\x9e\x1c\x42\x9b\x64\x0d\x3c\xcc\xdd\xe8\x29\x67\x90\x9b\x59\x63\x04\x11\xb3\x63\x94\xa1\x59\x1e\x4d\x2e\xb6\x33\x73\x43\x20\xf7\x10\x24\xc9\xc3\x97\x30\x67\x61\xe3\x58\x9a\x9c\x04\xf8\x89\x13\x69\x9c\x24\x6b\xd9\x7a\x87\x45\x79\xbf\xe0\x07\xb8\x88\xd2\x2a\x82\x46\x39\x75\x83\x93\x9c\xb8\x5d\x6d\x18\x9e\xa8\x55\x6f\x3d\x78\x96\xf3\xf1\x69\x41\x2c\xa2\xe1\x1a\x01\x6c\x96\x8a\x38\x2b\xc8\x56\x9e\xc2\x1a\x4e\x4d\xf5\x91\xcb\x5f\x3b\x3d\xcf\x8a\x00\xf6\x8c\xed\x33\xdf\xf4\x85\xc0\xb9\x8f\x74\xdd\xf9\xeb\xe7\x56\x9a\xe5\x33\x09\x9d\xf4\x76\x0f\x09\x57\xb5\xbe\x7f\x3f\x89\x1b\x77\x22\xd1\x19\x17\xa9\x76\x0c\x9c\x24\x6b\x7d\x1a\x38\x08\xff\x95\x92\x3c\x47\x64\x1a\xe9\x03\x44\xcc\x75\xa7\xb8\x9f\x23\x12\x81\xfc\x02\x6e\xc3\xe1\x17\xa0\x70\x38\xfc\xfc\x1e\x31\x51\x34\x0c\x88\x99\x87\x6f\x75\x4e\xa8\xb8\xec\xbe\x39\x09\x3c\xff\x9c\x93\x4f\xb8\xb8\x8c\xf2\x03\x93\x73\x75\x2e\xee\x39\xff\x5a\xe8\x1a\xe3\xc2\x5c\x2d\x82\x8b\xeb\x73\xc6\x3a\x27\x81\x1d\x5e\x15\x13\x15\xe0\x7d\x19\x21\x76\x5e\x25\x0b\x32\x95\xe6\xff\x09\x52\xf0\xa2\x88\xdc\x28\x59\x86\x50\x3f\x27\xdf\x0e\x9c\x0b\xc9\x22\xcb\x09\x2a\xe8\x54\xa4\xd5\xcf\x85\xc7\xcb\x1b\x81\x78\xb9\x8f\x75\x7e\x12\x2f\x57\x3d\x07\x11\x2f\x27\xd1\x74\x12\xef\xf6\x59\xd6\x27\x23\x30\xfc\x7c\x8c\x80\x05\xc7\x19\x23\xa0\x16\x9c\xb1\x6c\xd4\x82\x93\x0c\xb7\xe9\x0a\xae\xa8\xc0\x0f\x10\x63\x20\x4f\xec\x79\x12\xd5\x20\xd7\xed\x19\x2c\xff\x3a\xcf\xc0\x2d\x3d\x7c\x84\x3c\xaf\xce\xfd\xbb\xcb\x27\xe0\x9b\x1a\x42\x2e\x68\x9d\x4b\x7b\x12\xc0\x66\x78\x93\x13\xac\xe5\xea\x45\x82\x4e\xfd\xdc\xc0\x9c\x78\x72\xfb\xa7\x0c\x15\xa5\x54\xe0\x19\x17\xb4\xce\x04\x3d\x23\x76\xdf\xab\x28\x48\x18\x3c\xa6\x37\xb1\x34\x1e\xf3\x9b\x90\x3d\xef\x5c\xf2\xa9\xb3\x74\x28\x64\xd5\xd9\x08\x6f\x27\xb9\x55\x3e\x40\x9d\x5b\xa7\xe6\xf2\x29\x73\x2c\x77\x6c\xf1\xf9\x40\xec\xf1\xa9\x20\x96\xb5\xe6\x0c\xca\x04\x87\xe8\x9d\x5b\x01\xe6\xec\x8d\x16\x0a\xd0\xd1\xb1\x67\x5c\x77\xea\xd4\x7c\xbe\x1c\x78\x64\x7b\x9d\x6f\xf8\xf7\xf5\xfc\x3e\xc2\x8d\x6c\xf9\x4d\x02\xb4\x11\x78\xce\x70\xcc\x0e\xab\x1b\x2e\x27\xf7\x91\xec\x1f\xd4\xcd\x75\xc4\xb6\x95\x67\xe4\x02\x69\x51\xe3\x77\x1d\xb1\x66\xa5\x4e\xae\x63\xf2\xf9\xa5\x72\xcc\xe0\xf2\x0f\xb4\x57\x33\x74\x1d\x04\x2b\x35\x57\xf0\xf2\xff\x7f\xfd\xbd\x88\xe2\xef\x62\x11\x1c\x17\x48\x8c\x16\xbe\x57\x0a\x8a\x58\xbf\xd0\xa8\x20\xab\xbc\x28\xab\x01\x11\x10\x36\x0f\xff\x10\x0c\x6a\x6a\xc1\x56\xa1\x23\xcb\x2e\xbb\xfe\xf8\x41\xb5\xb1\xa1\xf3\x1e\x22\xa6\x1a\xd0\x73\x0f\x4b\x8e\x8b\x00\x2f\xa3\xc0\x5d\xf0\x48\x89\xcc\x6b\x5c\x71\x33\x2a\xf2\xae\x71\xe1\xb6\x75\xf8\xf2\x45\x80\x57\x17\x21\xd9\xb8\x72\x0c\x9a\x6b\xb8\x28\xfb\x85\xa0\x8f\xf1\xf3\x77\x54\xe0\x17\xa2\x4f\xff\x2d\xd3\x0b\xad\xee\x7d\x70\x85\x56\x17\xc5\xd9\xb8\x08\x01\xcb\x3a\x78\xc2\x12\x3e\x44\x37\x39\xae\xb8\x3b\xf5\x49\x1f\x96\xf0\xec\x48\xce\x2b\xee\x4e\x85\x1d\x3f\x2e\xb4\xb8\xed\xac\x2b\x0e\xc7\xc2\x8e\x1f\xf0\x88\x0f\xeb\xac\xab\x32\x8c\xb2\xd0\xe1\x11\x1f\xbe\x23\x87\x47\x7c\x18\x1a\x2a\x78\xc4\xbb\xa0\xdf\xc7\x15\xd4\x51\xd2\x92\x57\x8d\x99\x2f\x7e\x83\xeb\xc8\xe2\x07\x7e\x7c\x51\x13\x1b\xbe\x5d\x19\x5b\x10\x8f\x67\xcb\xcb\x6b\xdb\x01\xd5\x70\x82\x17\x9e\x5d\x47\xca\x5f\xad\xc4\x07\xfd\x02\x44\xe2\xcb\x2f\xb0\xbd\x0c\x9a\x72\x91\x21\xe7\xbc\xc6\x2b\xc2\xc8\x84\x15\x3f\xae\xc6\x3c\x78\x2d\xb5\x98\x07\x59\xd4\x57\x63\xa9\x4c\x7f\x92\x08\x90\xe4\x36\xfd\xe2\x05\xff\x80\xc0\x90\x7c\x80\x2d\x7d\xf8\xee\xea\x8a\x13\xfb\x94\x44\x82\x2d\x7d\x64\x8b\x04\xe2\xc6\x44\xab\x36\xae\xce\x3c\xba\x93\x83\xb5\x66\x09\x30\xe2\x7d\x75\x61\xc4\x3c\xab\x8b\x23\xb6\x4b\xf7\x0f\x83\x61\x57\x0b\x47\x4c\xb4\x4e\x83\xc1\x8f\x5e\xdc\x82\x11\x13\xdd\xfd\x06\xfb\x45\x47\xb1\x0b\xb6\x09\xc7\xf3\x5f\x23\xb6\xb8\x8e\x1d\xd7\x84\x46\xc5\x4b\x67\x9b\x2f\xc3\x39\x69\xd0\x99\x4f\x1b\x27\x41\x67\xde\xa7\x17\xe3\x0c\x1a\x48\x95\xd7\x41\x05\x7a\x61\x05\xcb\x89\xcb\xe0\xe7\x79\x07\xaf\x3f\x99\xa1\x3e\xe2\xc3\x76\x66\xdf\xb5\xcd\x93\xe1\xac\xb5\x8b\x70\x7e\x5f\xa0\xc1\x76\x9e\xa6\x77\x0b\x70\x2f\xce\x35\xbf\x30\x2e\x7c\x24\xbf\x4e\xb2\x48\x3c\x44\xdb\xb8\x18\xbe\xba\x86\x0d\x7d\xf8\x86\xf2\x3a\xe3\xfb\x6a\xcf\xb6\x2d\x72\x92\xcd\x7d\x5d\x88\x69\x0b\x14\xa2\xc1\x4a\xfa\x27\x6c\x9b\xeb\x8a\xc6\x69\xfe\x40\x7e\x11\x7f\xfd\x80\xc8\x7c\x38\x25\xf0\xc2\xf0\x10\x84\xf3\x80\xc8\x3c\x75\x23\x36\xc1\x64\x5e\x8d\x0e\x78\xfd\x02\xb1\x49\xc3\x0d\x14\x4c\x37\xd0\xca\xb5\x2d\x8f\x29\xbe\x92\x71\xc5\x71\x7f\x59\x09\x6c\xcb\x63\xd9\x64\x87\x0b\x7d\x38\x29\xf0\xba\xa3\x89\xea\x02\xb1\x5f\xdd\x51\x46\x50\x9d\x67\xe3\x8a\x04\x33\xb9\x03\x74\x60\x26\x1f\xe5\xf3\x3c\x13\xec\x15\x45\x0a\xa0\x93\xcf\xae\x87\x78\x4f\x6f\xb3\x7d\x58\x9f\x55\x96\x08\xc4\xe5\xc3\xd7\x97\x17\x71\x56\xc6\x63\xba\xde\x80\x37\x52\xfd\x6f\x34\x58\xe6\x28\x4c\xe6\x6b\xe8\xcc\x70\xe1\x4c\x76\x78\xe5\x45\x2c\x7a\xf1\x36\x8d\x30\x29\x9f\x94\x61\x2e\x1f\xbe\x0e\xbd\xde\x3f\x3f\xd6\x7f\x9f\xfc\xed\xb3\xf9\x1a\x9a\x76\x98\xca\x93\x91\xcf\x7e\x04\x97\xfb\x7a\x14\xa6\xf2\xe1\x0b\x57\xc8\xc8\x67\x96\xb5\x18\x64\xe4\x9f\x73\x13\x64\xe4\xc3\xc7\x1c\xb8\xc2\x87\xf1\x5d\x7f\xc4\x82\xfb\xbe\x15\x6a\xf0\xe1\xeb\xd4\xa0\x06\xef\x4b\xfb\x1e\x6a\xf0\xe9\x5c\x28\xa8\xc1\xf7\x03\x6a\x52\x8e\x41\x9b\x2a\xc7\x17\xfd\x42\x84\x8c\xaa\x45\x39\x66\xc9\xcf\xc7\x32\x53\x0b\xd0\xc3\xce\x79\x81\x38\x7b\xfa\xa2\xe9\x07\xe6\xb2\x93\x5f\x7f\x1c\x85\xed\xe3\x81\x58\x7b\x14\x1d\x5a\x20\xd6\x1e\x3e\x05\xfd\x22\x62\x69\x2d\x3f\x50\x00\x71\xd6\x9c\xa0\x23\x6d\x28\xfc\x2a\x87\x71\x59\x12\xf0\x5a\x2f\xdf\x00\xc3\x5b\xbd\x7c\x5f\x0a\x6f\xf5\xcc\xcd\x65\x92\x82\x64\xbe\xfd\x08\x32\x16\x95\xd1\x80\xb7\x7a\xf9\x06\xfb\xd7\x89\xa1\xb5\xbf\xf7\x47\x90\x71\xfe\xbc\x70\xc7\x03\xae\x91\x21\x91\x82\x83\xd8\x7a\x89\xc4\x66\x40\x6c\x9d\x9d\xb0\x07\xaf\x75\xf5\xe1\xfb\x37\x38\x63\x78\x0a\x88\x32\xb6\xcb\x1b\x1a\xeb\x6a\x97\x7a\x90\x46\xfb\x50\xf3\x5b\x0c\xb1\x0c\xd2\x1f\x41\x43\x4d\xa2\xff\x07\x37\xa0\x13\x0c\x7e\x88\xfe\x4f\x34\xfc\x2f\x4e\xaa\xda\xa9\xbf\x45\x20\x5d\xf1\x07\xa2\x41\x6a\x40\xa8\x02\x99\xd8\xbf\xc5\xbe\xf3\x10\xaf\xe0\x05\x52\x39\x54\x83\x74\x17\x14\xd1\xe9\x13\xcc\x0e\x47\x74\x75\xea\x2e\x1c\xd1\xd5\xb9\x67\x41\xf1\xdc\x3f\xcf\x73\xc9\xef\x32\x37\x89\x4d\xf6\x2d\xa4\xcc\xc3\xa0\xd3\x90\x32\x67\x9f\x61\x20\x61\x4e\x4e\xfd\x85\x43\x39\x67\x69\xe7\x5f\x88\x7f\xcf\xd8\x0f\xed\x2c\x63\xf5\x17\xbe\xdb\x63\xfe\xd3\x2d\xce\x6f\xeb\x82\xf1\xf9\x1a\x90\x95\x8e\xcd\x84\x81\x79\xd7\xe6\x1f\x82\xd1\x5a\x13\xfa\x8b\x25\xe9\xef\x13\xb6\xeb\x53\x2b\x14\xca\xc5\xb0\x2e\x50\x28\x8f\x22\x4b\xf7\x47\x56\xd4\x70\x74\xcb\x0f\x5d\x90\x3e\x15\xc2\xe9\xec\x19\xda\xba\x60\xd9\xfb\x02\xe7\xf2\x30\x52\x3a\x9c\xcb\xb5\xc8\x8c\x84\x72\x39\x7f\x96\x60\xc4\xdc\x5a\xca\x3c\xd1\x65\xd5\xf7\x44\xea\x9f\xda\xf3\xe2\x40\xb3\x10\xd8\xba\x22\x0d\xa3\xf1\xc0\x78\xbc\x1c\xf4\x00\xe1\xf1\x7e\x40\x6b\x16\x58\x4c\x9b\x03\x41\x78\xfc\x49\xa9\x84\xf1\x78\x39\x10\xe3\x47\x04\xd2\x30\x66\xd3\xef\xa5\x8d\xcb\x35\x6e\x41\x21\xb6\xde\x01\x23\x72\xfa\x04\xa4\x07\x25\xf2\xf4\xb6\x00\xb5\xc4\x61\xc0\x41\x79\x3c\x6c\x55\x40\x79\x3c\x7d\xf1\x03\xe3\xf1\x7e\xa0\xeb\x87\xcc\x27\xfd\x42\xf4\x52\xf3\x00\x27\xf2\xb4\x28\xb9\xf7\xf1\x79\x3a\xed\xf3\xe6\xf4\xec\x00\xf4\x1b\x9e\x02\xbb\x27\xee\x03\x48\xc2\xc3\xef\x83\x59\x24\x95\x0b\x87\xf2\xfe\xa0\x2b\x8c\xdc\x5d\x55\x90\x02\x77\x49\x5d\x48\x5b\xfd\x38\x7c\xf0\x4e\x78\x68\xb4\xf5\xef\x7d\x58\x5e\x96\xc6\x77\x0a\xa4\x4d\x29\x71\x48\x97\x67\xd5\xd6\x0d\xd2\xe5\x61\xfc\x52\x48\x97\xa7\xed\x4c\x48\x97\xa7\x5d\x93\x90\x2e\x0f\xb3\x10\xdc\xe9\xc7\x10\xe8\x7f\xf8\x02\x7d\x3b\x77\x93\x5e\xe5\x9b\x9d\x7b\x6b\xd4\x62\xd9\x01\x07\x73\xfe\xcc\x41\x86\x9e\x4b\x66\xd3\x4d\x90\x70\xf3\x90\x95\x03\x58\x43\x3d\xcf\x05\xb0\xb1\xb8\xe1\x60\x5e\x0e\x87\x84\x83\x79\x3a\x1d\x1d\x8a\xe5\x69\x14\x47\x28\x96\x97\x2f\xf7\x60\x58\x4e\xc3\xb1\xde\x50\x2c\xaf\x2c\x61\x79\x83\xa2\xe2\xf0\xc8\x1b\x67\xb4\x8d\x14\x28\x96\x77\x05\x7a\x81\x5c\x26\x23\x33\x40\xb1\xbc\x1f\xf0\x1b\x30\xa8\xc8\xf0\x82\x62\x79\x3f\xe0\x4f\x70\x52\x96\x91\x01\xe3\xf1\x32\x90\x34\xa4\xc6\x69\x24\xb7\xb1\x85\x7d\xad\x2f\x40\x94\xe0\x5b\x17\x28\x85\xa7\xf7\xe2\xbd\xcf\x84\xd3\xe7\xa9\x1b\x07\xb7\x63\x42\x61\x10\x1e\x06\x2a\xbe\x7b\x6c\x66\x8f\x62\x9f\x2c\x7c\x3f\x00\x4d\x80\x04\xd8\x1d\x99\x40\xc3\x65\x10\x62\xb3\xcb\xac\x6b\x69\x98\x7b\xe0\x25\xf3\x08\xec\x23\xe3\xb0\x59\x04\xc5\x70\x1a\x06\x10\x82\x63\x78\x3a\xb8\xe5\x9e\x90\x98\xc8\x0e\x82\x63\x38\x0d\x83\xc7\xdc\x33\xbe\xa8\x69\x9e\x6c\xe5\xee\xff\xa3\x8b\xff\x44\x82\x33\x60\x20\x5e\x0e\x71\x85\x81\x78\x1a\xe3\xe9\x9e\xd0\x23\x4a\x56\xdd\x0b\x2b\x4c\x66\x1f\x7c\xc1\xd3\xe0\x9d\xd0\x05\xa7\x61\xb6\x10\xf8\x82\x97\x61\x19\xee\x40\xfb\xf4\x00\x02\xb2\x62\x37\x1c\xec\xbe\xc3\xf1\x48\xb0\xf3\x4e\x27\x83\xdd\x20\x4f\xe7\xe1\xff\x01\x1d\xf6\x1a\xdc\x2a\x7f\xf8\x42\x01\xf6\xde\x34\x8c\xaf\x7e\x73\x87\x6c\x97\xd5\xcd\x1d\xb2\xd3\x8d\xa0\xf7\x9d\xbe\xf1\xbd\xf1\x45\x3b\xab\xe3\xbe\x58\xf4\x52\x41\xd0\xfd\x4e\x7b\xe9\xee\x0b\x75\xe0\x15\x73\xb1\x4f\x65\x33\xdc\xd7\x05\xdd\x97\x06\x84\x2b\xe6\x61\x44\x94\xfb\xba\x11\x8d\x2e\xc7\xa6\xd1\x08\x5c\x70\xb8\x59\x90\xec\x33\xe7\xb2\xa7\x13\x7e\xe0\x65\xc7\xe5\x8d\xab\x3a\x25\xff\x7f\xf1\xbc\x1a\x7c\xb3\x87\xbc\x67\xee\xd8\x43\x6a\x20\xc9\x41\x23\x57\xff\x10\x1f\xd4\x08\xdd\xf1\x41\x57\x08\x1f\x99\xa7\xf4\x8e\x11\xf1\x07\xe2\x56\xcb\x65\x62\x75\xbc\x89\xef\x98\x32\x3f\xb0\xad\x86\xe1\xf0\x25\xf8\x83\x97\x7d\x82\x37\xb9\x40\xc3\x81\x84\x37\xb9\x40\x86\xc6\x80\x3f\x78\xd9\xcb\x78\x43\xdc\x37\x3e\xea\x06\xbb\xc3\x39\x24\x37\x67\x56\xe7\xea\x42\x28\x3c\x7d\xe0\xbb\x09\x63\x6e\x72\x1d\xdd\xdc\x0e\x0f\xf1\x4d\x0e\x08\x85\x97\x5d\xaf\x10\x0a\x2f\x3b\x7f\x83\x4f\x78\x7c\xa4\x33\x76\x49\xd6\x09\xef\x0e\xbb\xe4\x23\x9e\xdf\xe8\x83\x9a\x14\x66\xc7\x70\x13\x30\x3b\x3e\xc2\xf5\xe5\xee\x4e\x3b\xe3\x39\xf6\x56\x77\x34\xc7\x73\x50\x81\x8c\x3f\x08\x83\x97\xdd\x5f\x10\x06\x2f\x7b\x93\x61\xf4\x5d\xee\x22\x8c\xbe\xcb\x4e\xca\x27\x14\xac\xc6\xf0\x49\xb1\xb0\xfd\x81\x84\x30\xd7\x4e\x79\x38\xe4\xda\x43\xf8\xc0\x23\x64\x97\x22\x84\xbc\xd3\x49\x2d\x0f\xf9\xc8\xf6\xd0\xc3\xa7\x3b\x1c\x7a\x0e\x9f\x6e\xfa\x78\xd7\x20\xd4\x5d\x76\xdc\x42\xa8\x3b\x7d\xe0\x79\x0a\x84\x5a\xee\x71\xa8\x60\xbf\x5f\x62\x92\x64\xea\xc1\xa7\xbb\xec\x5c\x7b\x0a\x56\x8b\x3c\x8c\x4f\x09\xdb\x51\x2d\x2c\x98\xb7\xda\x09\xf0\xef\xa6\x8f\xf7\x0d\x02\xde\x65\x1f\x27\xfc\xbb\xfb\x01\x37\x69\xf7\xd1\x61\x51\x0f\x10\xe1\xc3\xf1\xf0\x0f\xe7\x6e\xc7\xd8\xfc\x31\xf6\x4a\x5e\x3e\x91\xa1\xac\x73\xfd\x53\xa3\xc9\x6a\x62\x65\x59\xc9\x89\xfa\xd4\x50\x58\x6a\x32\xe4\x10\x9f\x06\xe1\x4a\x1e\x8e\x5f\x7f\xe0\xfa\x9b\x35\xfd\x8b\xba\x81\xff\x77\x1a\x2a\xfb\x69\x20\x56\x79\x3c\xd0\xef\x0e\x2c\x7c\x60\x96\xf0\x75\xc1\xc3\x85\xb5\xa1\x9e\x1f\x80\xce\x0c\x3b\xf0\xc4\x7d\xb5\x24\xc3\xd3\x63\xb8\x8a\x7f\x40\xf6\x48\xfa\x43\x07\xbc\x3e\xc3\xd9\x03\x83\x4b\xcf\x8f\x83\xb2\x9e\x1f\xe8\x3f\x9d\x16\x1e\xd4\xb7\x23\x2d\x9f\x01\xc3\xa7\xd7\xe8\x88\x25\xa8\x06\x8e\xf8\x9e\xca\xe4\xfe\xfa\xda\xee\x09\x7d\xec\x15\xf7\xc7\x16\xdc\xfc\x02\xbb\x54\x06\xc6\x13\xa9\xbc\x46\x38\x7d\x66\xe4\x3a\x6b\xc2\x66\xa4\xd1\xb8\xfc\xc4\x0b\xea\xe2\x24\x9f\xdb\x2b\x08\x15\xef\x80\xa3\x67\xb1\xe8\x3f\xe5\x16\x15\xa8\x8d\x30\x14\x1b\x9b\x33\x18\x8a\x87\xa3\x0b\x61\x28\x5e\x76\xf1\x3e\xeb\x62\x8d\xf9\x05\xa8\x08\xbc\x0f\x41\x07\x75\xe4\xdc\x73\x1e\x5c\x8e\x6a\x8d\x12\xc4\xec\xec\x37\x08\x8b\xd3\x72\x8f\x88\x61\x4e\x5e\xb3\x27\x5c\x1c\xde\xd7\x84\x30\x27\x4f\xfa\xb6\x39\xaa\x2f\x57\xe1\x33\xce\x4e\xc9\x80\xcf\x38\xfb\x40\xf7\x6c\x9b\xa4\xd8\xf4\x7f\xc8\x5c\x32\x50\xd2\xb3\x6d\x92\x6e\x6a\x88\xe7\x8c\x21\xef\xfe\x81\x28\x07\x29\x38\x08\x91\x7b\xf2\x00\xe1\xb3\xb6\x4f\x1d\x3e\xe4\x34\x3c\xe9\xf8\x29\x9c\x9d\x07\x1d\xf2\xfe\x80\x2b\x68\x7b\x59\x7d\xca\x30\xd7\xba\x47\x57\x84\x6b\xaa\x47\xb0\x39\x7d\x24\xe3\x15\x5c\xe6\x1a\x71\xd8\x9c\x8c\x45\x0d\x1b\x72\xb6\x9f\xfb\xb9\x00\xab\x3a\xfc\xfc\x4b\x26\xab\xbe\xff\x03\x0e\xd0\x0d\xde\x36\x4b\xed\x1e\xb1\x1f\xf0\x62\xb2\x61\x20\x43\x2e\xe2\x5a\x1f\x4f\x00\xcc\x64\xd7\x47\x7b\x65\xb6\x3e\x01\x96\xaa\x73\xc1\x83\x67\xe4\xf8\x7c\x3f\x42\x9f\x5c\xff\x36\xf3\x1d\xbd\x05\x35\x72\xb6\x49\x03\x35\x72\x77\x26\x56\x30\x23\xdb\x1e\x80\x19\xb9\x58\x39\x43\x8c\x9c\x6d\xc3\x41\x8c\xdc\x7d\xa2\x87\x18\xb9\x64\x8f\xdf\x5f\xfa\xb4\x3b\x7c\x03\x8d\xea\x06\x13\x63\x67\x10\x85\x27\x9c\xf2\xc3\xcf\x43\x27\xe3\x25\x78\x03\x31\x99\xdc\x20\x1c\x35\x5e\xe2\x37\x69\x4a\x9f\xfa\xf0\x64\x59\x0e\x6d\x9b\xab\x74\x2b\x7b\xe0\x6c\x8a\x1b\x4c\xea\xd9\x67\x40\x9f\x58\x71\x96\xe4\xc4\x1f\x34\x2f\xd1\x27\x5c\x4d\x6a\xf0\x43\xae\x86\x67\x08\x2e\x2b\x67\x9c\x3f\xc1\x65\x65\x45\xf7\xd0\x41\x0b\x15\x22\xfa\x52\xfe\x37\x35\xf3\x84\xd8\xb7\x10\x7c\x6e\x6a\x53\xed\xd8\x6b\x9f\xf5\x10\x69\x68\x32\xd7\xe0\x59\x2e\xc3\xef\x6f\x6b\x2c\x9b\x68\xe3\x21\x4d\xcd\xc9\xe7\xf0\x30\x27\x47\x0b\xc2\xc3\x9c\x3e\x6a\xe5\x0d\x31\x3e\xfc\x03\x7c\x78\x5e\xc0\x2f\x68\xbe\x9f\x06\xb1\xa1\xac\x57\x48\x63\xb3\x1d\x00\x71\x73\x75\xc4\xcb\x7b\x54\xee\x09\x5d\xa6\xc1\x32\x2c\xe0\x6d\xce\x26\x65\x80\xb7\x39\x3b\x02\xe7\x3d\xc2\xf0\x90\xa9\xf2\x92\xb6\xed\xfc\xfb\x37\x50\x0e\x9b\x3f\x00\x92\x99\xac\xc9\x97\xf0\x88\x8f\xf3\x17\xe6\xe7\xe4\x2c\x0e\x98\x9f\x53\xd5\x90\xc2\xfc\x9c\x1d\x8d\xf7\xe2\xf1\x39\x24\x72\xde\xc4\x8e\x70\x8f\x12\x19\x5e\xd5\xf5\xb3\xe5\x65\x1d\xc2\x1c\x9d\x9c\xec\xf3\x06\xd2\xee\xe7\x79\x60\x6e\xb5\x03\xde\x14\x4c\x64\x2e\x87\x90\xf6\x10\x93\x24\xe7\x93\xf9\x1b\x01\x8b\xc9\x65\x40\x1c\x74\x4e\x83\x59\xba\x34\x1d\xc4\x61\x86\x2e\xbe\x21\x79\xb7\xf1\x98\x8d\xfa\xfa\x92\x35\xee\x50\x62\x78\x9e\x47\xfe\x94\x43\x8d\x7a\x8e\xc2\x7a\xac\x2e\xff\x2d\x2a\x0d\x19\x39\x03\x3e\x7b\xbf\x95\x0b\x6e\xb9\x0a\xde\x70\xe0\xd8\x3f\x0d\xb1\xf3\x72\x42\x15\xbc\xce\x69\x94\xe5\x1a\x1e\xec\x29\x97\x23\x66\x47\xf6\xcc\x0b\x15\xa6\x23\x1a\x61\x82\x2e\xce\x9d\x87\x09\xba\x3a\x91\xf9\x25\xd0\xc0\xaa\xf8\x6d\x21\x08\x3f\x3f\x80\x55\xfe\xf9\x40\xa0\x18\xaa\xc9\x2d\x3a\xed\x75\xd2\x02\xfc\x45\xc3\xdc\xc8\x6d\x94\xb1\xf0\xc2\x0f\xf3\xf1\x08\xbc\x9d\x14\x28\xd9\x90\x70\x49\xfb\x9e\xe9\x8d\x54\x71\x6d\xf5\xb7\x13\xb9\xe5\x75\xdb\xe1\x1c\x92\xa4\x7c\x83\x59\xcc\xb3\x02\x95\xe6\x30\x27\x0e\x4c\xd1\x43\x2c\xcc\x03\xa6\xe8\x3e\x96\xff\x27\xcb\xd7\xb3\x04\x2c\xe1\x70\xfc\x1e\x44\xd1\xdd\x06\x1a\x44\xd1\xc3\x39\x5c\x6f\xf8\x94\xaa\x57\x66\xa0\x0e\xba\x4b\xc0\xf7\x7e\x84\xc1\x8c\x16\xe8\x8b\x13\xcc\x7b\x7f\x00\x97\x52\x95\x76\x7b\xc3\xa5\x64\xb2\x47\x78\x9e\x97\x23\x95\xde\xb0\x52\xab\xa5\x05\x6c\x67\xf6\xde\xbe\x61\xa5\xd6\xec\x2a\x81\x78\x96\x67\x10\x26\xe8\xfd\x80\xab\x7c\x00\x9e\xd0\x0b\xc4\x29\x38\x62\xef\x05\x45\xd0\x31\x88\x6f\xdc\x35\x49\xa0\xbe\x0b\x47\x9e\x0c\xf5\x77\x71\x83\x2a\x13\x0c\xea\xe8\x34\xaa\xe5\xcb\x49\x9c\x80\x47\xfd\x0c\xa0\xda\x7f\x52\x38\xef\xb6\x28\x97\xf3\x61\xdf\x33\x82\xf6\x2d\x7d\x4e\x6e\x5a\xbc\x0f\xce\x98\x33\x4b\x17\x62\x2a\x9d\x77\x07\x99\x74\x1a\x8e\x00\x7c\xe3\xae\xca\xf2\x12\x93\xcd\x90\x00\xb0\x47\xa7\xcf\x46\xb9\xe0\xda\xf6\x3e\xd9\x26\x5b\xb5\x4d\xf9\x92\xb9\x30\xcc\x42\xf3\x92\xdd\xee\xbb\x1a\xe8\xa7\xb7\xb8\xf1\x0f\x89\x4b\x01\x4d\x2a\xc1\x0d\x3e\xdf\xbf\x3f\x20\xd8\x3c\x05\x71\x1d\x65\x2e\xa7\xf7\x47\xbe\x67\x72\x05\x31\xe9\xee\xd3\x8f\x0b\x42\x6f\x8d\x70\x45\x59\xa6\x87\x2b\xca\x61\x95\xef\xb6\xb3\xca\xf2\xa8\xdd\x5c\xc0\x79\xe5\x6f\x33\xaa\x7c\x64\x38\xae\x25\x33\x1f\x41\x51\x9d\xac\xf7\xa1\xa8\x1e\xc5\x3b\xe5\x89\xfa\xfc\x3f\xb7\xe6\x3a\xf0\xbf\xdb\x6a\xf9\x4a\xaf\x27\x3a\xa0\x41\x7f\x42\x18\xb8\x47\x18\x1e\xd3\x0f\xe0\x27\x92\x15\xf5\xbe\x61\xe8\xbb\x03\xdb\x30\x19\xce\x8f\x7f\xa1\x9d\xa9\xb2\xc3\xde\xf0\xfa\xd4\xcf\x03\x01\x15\xe2\x1a\x63\xcc\xff\x2a\x9c\x07\x86\x83\x9c\xfc\xf3\x20\x91\x4e\x79\x6d\xf3\x80\x86\x66\xe8\xde\x62\x1e\x07\x91\xa7\xff\x29\x99\x79\x80\x10\x23\xa4\xdf\x09\x05\x76\xd5\x3d\xc5\x84\x02\xbb\x4b\x14\x4c\x18\xae\x87\x4c\xa5\x79\x70\x75\xd4\xfe\x1b\x91\x79\x1c\xc1\x71\xa6\xf7\xb7\x21\x91\x95\xd3\x33\x21\xbc\xde\x0d\x5a\xfa\x21\xf0\x9e\x9a\xca\x2c\x0a\x71\x17\xcd\x23\x05\xde\x93\x5a\x40\x46\xbd\x22\x5b\xe7\x41\xb0\x85\x6c\xe5\x79\x90\xca\xb0\x3e\x15\x62\x69\x74\xd7\xb7\x70\xa4\xa9\x18\x28\x0d\xf3\xbf\x32\x51\x98\xf2\xaf\xce\x23\x47\x83\xfd\x7d\x80\xf9\x64\xea\x4e\xf8\xae\x87\xd2\x08\xe6\xb1\x0d\x07\xdf\x64\xcd\x23\x9f\xe0\xea\xfa\xfd\x40\xeb\xfa\x7c\x01\xb5\xfd\x79\xe0\x8e\x88\x1d\x7f\x21\xe0\xa1\xf4\x05\xa2\x2c\x93\xe7\xa4\xc4\x24\x67\x4d\x62\xf9\x83\xc2\x55\x39\xa4\xad\xdb\x04\xd2\x9e\xc0\x92\xe6\x51\x40\x8c\xaf\x6a\xd2\x36\x56\x9a\xdc\x48\xf3\x00\x89\xef\xd3\x64\x6e\xa7\xe4\x81\x9d\x47\xf8\xb1\x9a\x97\x05\x51\x98\xd2\x9a\x13\xce\xee\xfd\x80\xbf\xc8\x56\x9a\x7a\x61\x1b\x37\x59\x60\xcb\x13\x52\xef\x21\x8d\x32\x0f\xee\x9e\x64\x41\xcf\xa3\x92\x63\x3b\xfc\x3c\xc9\xe8\xae\x7f\xdb\x42\xf5\xd3\x20\x90\xf7\x84\x99\x35\x8f\xc6\x2c\x16\xad\xa2\x70\x84\xe9\xcc\x3c\x0f\xe0\x90\x85\x7c\x31\x21\x01\xdf\x0f\xb8\x86\x8e\xf3\x4a\x5f\x24\xa6\x72\xb4\xea\x2a\xc9\x20\x2c\xff\xa2\x72\xe6\x11\x86\x90\x78\x65\xe6\xd1\xc0\xd5\x4d\x9a\x32\x7c\x69\x0a\x1a\x9d\x07\x9c\xa9\xa9\xe8\x79\x92\x3d\x04\xa1\x30\xe1\x00\x9f\xd9\xdb\x00\xbb\x65\xba\x7f\x84\x4f\x2a\xb0\x76\x1e\x5c\x85\x89\x80\x64\x1e\xb8\xc6\x9a\x97\xf5\xf8\xd3\xd8\x6a\xc0\x68\xac\x4a\xf5\x9f\xbb\xb2\xe2\x35\xb4\xed\x9a\x39\x3d\x1c\x61\xd7\x34\xb7\x70\x80\xfb\xd7\x35\xc2\x10\xe5\xb5\xee\x0a\x08\xb0\xa9\xfe\x00\x09\x96\x53\xcb\x3e\x38\xc4\xdd\x62\x72\x45\x3e\x13\x44\xae\x48\xf2\x22\xc6\x2e\x6a\x1e\xb1\x6d\x17\x95\x8f\xa0\x99\xc1\x52\xeb\xff\xff\x1a\xac\x06\x6c\xbb\xa8\x64\x8f\x00\xa4\x06\xe3\xd3\xe2\x19\x21\x3d\x6e\x21\xdc\xbd\xae\x00\x00\x01\x45\xed\x4f\x48\xc7\x8b\x7c\xec\xf3\x08\x57\x5b\x1b\x7e\x01\xc7\x88\xa5\x75\x80\x2f\xb7\xa1\x2f\xae\x60\x64\xd4\x98\xae\x50\xd2\x7e\xe1\xc7\x17\xfd\x7f\x1c\x09\xfc\x7f\xec\x4b\xcb\x6b\x9c\x75\xcd\x1b\x17\xc3\x2a\x7b\x1f\x45\xfc\xa7\x65\xcf\x49\x7a\x4c\xd6\x07\x22\xc8\xa7\x59\x34\x04\xe2\xc0\xa7\x1c\x80\x28\xea\x01\x01\xa2\x3a\x79\xce\x23\x82\x7e\x3e\x1f\xbc\x68\x90\xff\x0f\x51\xe3\x69\xc7\x3d\xf7\x91\x4d\x27\xd2\x52\xeb\x1a\xee\x74\xe9\xf4\x19\xdc\xe9\xa3\x79\x19\xc1\x9d\xde\xac\x3f\xb6\x65\x56\x8b\x7b\x74\xfd\xf5\xc8\x0f\x6c\x95\xf9\x11\xcf\x70\x09\x09\xa6\x67\x06\x57\x7a\xf7\x4e\xbe\x42\xe0\x2f\xd7\x18\x93\xa2\x26\x5e\xd1\x03\xb7\x28\x92\x9f\xd5\xc3\x6d\xca\xd5\x66\x05\x41\x12\x6a\xf5\x46\xc2\x92\x5b\xd6\x0f\x70\x11\x7d\x64\x1f\x39\xa8\xc3\x3a\xfe\x17\x1d\xd0\x90\xfe\x42\xb4\x59\x5f\x10\xe8\x54\x3d\x24\xe4\x9c\x0a\x37\x75\x1e\xe0\x17\x36\x0b\xe3\x1f\x48\x1a\x43\x0d\xbc\x41\x4c\xf4\xce\xc6\x1d\xd6\x2c\x7c\x23\x30\xa9\x7b\xa3\x80\x70\xd0\x2c\xed\x6f\x74\xe6\xa7\x42\x16\x81\x57\xdd\xfd\xc3\xc1\xe3\x0f\x44\x83\xd4\x81\x7b\x2f\xeb\xc3\x0d\x24\xa8\x75\x79\xa3\x3e\x9c\x63\xdd\x41\x0c\xc3\xe4\x55\x0f\xd2\xd2\xe8\x9f\x1f\x68\x80\xa5\x25\x10\x0a\x87\xf7\xdd\x13\x0d\x70\x85\x4f\x54\xe0\x07\xc8\xe2\xf2\x22\x81\xe0\x30\x79\x8e\x41\x1b\x54\xf0\xdc\x3c\xc0\x60\xf8\xa8\xa3\xb8\x61\xf4\x90\x02\xc1\xa0\x9b\xfc\x79\xc4\x05\x63\xff\x27\x84\x81\x79\xbc\xc1\x72\xee\xda\x46\xbc\xad\xfe\xbd\x13\x7e\x6b\x0d\x68\x78\xbc\xba\xd5\xc9\xb6\x54\x97\x97\x20\x76\xea\xe8\x5e\xc3\x2f\x6b\xdc\xc2\x98\x7c\x59\x91\x6c\xce\x74\x84\xdc\x28\x2a\x6f\xe1\xac\x64\xf6\x99\x60\x23\x2e\x9f\xe7\x41\x2e\xd4\x8c\xc1\x2c\x9f\x0f\xed\xa9\x74\x10\x9a\xa6\x1e\xc1\x34\x5f\x14\x3f\x3a\x53\x82\x46\x76\xb8\x1c\xe3\xab\xef\x6f\xb3\x33\x2f\x6d\x6a\x98\xe8\xeb\x1c\xfe\x3f\xc6\x37\xfb\x03\xa4\x54\xfc\x77\x24\x9c\xc1\x44\x3f\x6c\x81\x04\x13\xbd\x5c\xa8\x33\x98\xe8\x87\x38\x29\x27\x54\xf4\x59\xc0\xf4\x33\xa5\x0b\xf6\xdd\xa6\xf2\x43\x05\xff\x0d\x69\xca\x31\xa4\x6a\x01\xc4\x4d\x0a\x6b\x9e\x50\xd3\xa7\xd1\xfd\x40\xc1\x7b\xa3\x49\x4d\x25\xfa\xac\x06\x14\xf8\x80\xab\x3e\x18\x2e\x2a\xa1\x3a\xcc\x54\x60\xc9\x6c\x6a\x01\x41\x4b\x33\xfb\x05\xb0\x5c\x65\xcb\xa7\x8a\x97\xb8\xe9\x83\x35\x2a\xec\x6a\x22\x24\x16\x82\xdc\x99\xb0\xe1\xef\x07\xfc\x06\x09\xa4\xcd\x35\x92\x87\xfd\x29\x33\x06\x6e\x61\xb8\xb8\x6c\x1b\xc3\x86\x3f\x7d\x9e\x49\xe1\xe2\xb2\x75\x9d\x70\x71\x29\x16\x7b\x26\x70\x94\x14\x70\x3f\xa1\xcf\xdf\x2f\x68\x14\x81\xb6\x50\x16\xee\x4c\x0d\xfa\x2b\xcf\x33\x38\x4b\xc3\xf3\xdc\x70\xb7\x48\xc9\x27\xa0\x2a\x5a\x53\x7d\x64\xf1\x5a\xb8\xa6\x40\xa6\xf0\xca\xed\x61\x47\x69\x8c\x00\xa6\xb0\xd9\x04\x79\xfe\x96\x04\xfa\x60\x47\x78\x7a\xeb\x60\x09\x8e\xee\xbd\x03\x73\xc6\xf4\xb4\xc4\x35\xaa\xae\x29\x27\xfc\xfa\xdd\xa6\x5d\x0a\xa4\xa6\xe9\x17\x62\x10\xbd\x9b\x06\xd2\x4b\xf2\x36\xe1\x04\xfb\x2c\x14\x7c\x5c\xad\xf9\x7f\x02\x32\x96\x5a\x44\x66\x8d\xa2\x32\x27\xf4\xfb\x45\x79\x15\x33\x11\x1b\x3d\x65\x5b\x27\x12\x6b\x3e\x5b\x67\x00\xa6\x7e\x68\xd6\xb7\x29\x98\x84\xe6\x3e\xd3\x4c\xd1\x60\x0d\xea\x64\xe9\x7b\x15\x00\xa1\xdc\xbc\x6c\xc2\xe5\x25\x47\xe5\x84\xe0\x3f\x25\xef\x0d\xc0\x31\x04\x0a\x3a\xd3\x8a\xcd\xe6\xdd\x0b\x86\x63\xf3\xb2\x01\x0c\x2a\x79\x6f\x84\xe9\xf6\x69\x33\x40\xc9\xc2\x2c\x98\x69\x41\x49\x70\xb8\xc2\x1f\xa8\x3d\x6a\x51\x24\x0a\x7b\x9a\x4f\x82\xeb\x74\x20\x48\x5c\x93\xda\x18\x4d\x27\xbb\x5b\x3a\x34\x91\x07\x3c\x94\xcc\x3d\xd3\x09\xa8\xef\x52\x83\xf0\x59\x15\x77\x79\x5b\x62\xbd\x0d\x4d\x0a\xc0\x4c\x8a\x9a\x99\xe9\x82\xc1\x76\x8d\x7f\xd1\x38\xe9\x42\x81\x0e\x2d\xa9\x88\x93\x1a\x96\xa7\x11\x27\xe5\x25\x43\x9c\x54\xf5\x12\x89\x38\x29\x1d\xe3\xd3\x36\x82\x8a\xd0\xc5\x66\xfa\x31\xfe\x52\xa8\x09\x24\x8e\x8f\x82\xd8\x46\x50\xcd\xde\xc6\xa4\xee\x24\xf7\x9e\xcc\x9c\xec\xe1\xfe\x45\xef\x5d\x46\xc3\x29\x2f\x7b\xa6\x1f\xa2\xc8\x1a\xe5\x47\xcc\xac\x1c\x0b\x09\x06\xc7\x31\xbc\x49\x20\x04\x53\x92\xf1\x4c\x04\x56\x25\x4f\xd0\xdf\xa5\xa0\x57\x04\x04\x60\xd5\xf2\xfb\xde\x43\xa0\x6b\xdc\x99\x9e\x83\xe0\x67\x55\x00\x39\x57\xb6\x7c\x07\x1e\x52\xae\xf2\x99\x1e\x62\xdb\x8a\x9f\x8f\x0f\x7a\x4c\xb8\xa5\xeb\x16\x55\x4f\xf4\xd9\x93\xf2\x90\x12\x50\xfc\xc0\xcd\xc5\x98\x06\xf1\x0d\x72\x54\x97\xc1\xe8\x94\x3b\x2a\x01\x79\x6c\xbf\x42\x22\x97\x67\x0c\xcb\xff\xc8\xe5\xf1\x98\x45\x30\xb5\xa0\x58\x67\xfe\x73\x78\x15\x95\x4b\x3c\xd0\xf5\x03\x09\x61\xc5\x65\xe8\x60\xb4\x4f\xf3\x36\x2c\xaa\xe2\x9c\x66\x3e\x06\x94\xbb\xae\x70\x12\x32\xe9\x0f\x06\x95\xc8\x52\x99\xf8\x3b\x0d\x41\x3e\x62\x8c\xb4\xf1\x33\xd4\x13\xd9\x0d\x0a\x8f\x97\xd0\x5d\x67\x06\x43\xb2\x6a\x50\x73\x78\xbc\x74\x3d\x39\xf3\xb6\x3d\x4a\xff\x3c\x70\xc1\x18\xeb\x1a\x03\x5a\xd5\x5f\x8c\x51\x94\x46\xc8\x09\x7c\xd9\xe2\x0a\x39\x40\xb8\x05\xdc\x7d\x0d\xdd\x3f\xcf\x8c\x0f\x4b\xb7\x71\x33\xe7\x58\x19\xd3\x3f\x90\x9b\x20\xe1\x94\x09\xd6\xb2\xac\xc8\x04\x6b\x89\x03\x72\x66\xa8\x20\x84\x87\x38\x73\x8e\xcd\x30\xfd\x02\xee\x69\xcf\x23\x08\x91\xc9\xd3\xb0\x6d\x97\x24\xd8\x9b\x99\xc3\xc7\xa5\x7b\x9e\x99\x83\xdd\x79\xf8\x85\xb0\xc7\x5c\x1e\x50\xc4\xba\x82\xe8\xa2\xdf\x27\x19\x44\xf2\x27\x47\xac\x96\x3d\x52\xb9\x44\x17\x5d\x66\x69\xca\x76\xc9\x95\x85\x26\x53\x24\x6f\x63\xa7\x88\x1e\x75\x66\xf2\x86\x87\xb7\x6b\xae\x78\x97\x9b\x1f\x88\x2f\x7a\x69\x56\xbe\xe8\x79\xaf\x8c\x91\xf4\x76\xc6\xa1\xe4\x73\x5d\x6e\xa0\x9e\x0d\x97\x49\xf2\x92\x8e\xca\x2d\xde\x57\x97\xc9\x89\xb2\xc8\xcc\x3d\x3c\xa9\x92\x48\x19\xd3\xe3\x98\x2e\x8f\x78\x40\xeb\x04\x7a\x68\xd1\x49\xcf\x4c\x80\x96\x55\x4a\x26\x47\xb7\x7c\x2a\x20\x6a\xde\x9b\x69\x30\xcb\xde\x4c\x23\xf2\xdc\xf4\xfe\x08\xb8\x56\x8d\xf1\x00\x22\x57\x26\x6e\xc6\xae\x38\x8e\x7f\x72\xa9\x65\x1c\x50\x4a\x3d\x9d\x39\x1c\x50\xf6\x5d\xe4\x6d\x85\x34\x05\x06\xcd\x3c\xb8\xe6\x72\xeb\x07\x00\xc0\xcb\xad\x01\xfc\x56\xc3\xb7\x8d\x90\x76\xc8\xf5\x9d\xb7\x8d\x91\xb3\x07\x0b\xe2\x87\xf1\xd9\x86\xb3\xf2\x82\x46\x63\x1b\x21\x55\xd8\x8b\x33\x87\x11\xa2\x34\x8a\x99\x27\x94\x6b\x32\x4a\xf2\xbc\x20\x76\xd6\x70\x91\x1e\xec\xe0\xe2\x99\x67\x04\xc6\xf8\x85\x87\x0a\xfc\x7f\x34\x59\x15\x84\x15\x33\x2d\xcd\xb6\x15\xd3\x0e\xaf\xd9\x40\xa2\xf6\x92\x5b\x83\xff\xd5\xe4\x6d\xe5\x34\x45\x0a\xcd\xbc\x18\x52\x19\x7a\x79\x1b\x31\x45\xf1\xe1\x33\x2f\xc0\xaa\xa4\xd5\x73\xf8\x9f\xa6\x25\xcf\xda\x2d\xb4\x37\x3f\xc7\xc5\xde\xb4\xa4\x39\x13\x0f\xb8\xbc\x07\xd5\xee\xf8\xfc\x47\xff\xa5\x41\x3f\x89\x95\xb2\x24\x0a\x33\x48\x10\xc3\x33\x6f\x33\xa8\x1d\x4b\x2d\xd8\x66\x50\x13\xbf\xc4\xcc\xdb\x0c\x6a\xbe\x7f\xc8\xe7\x45\x97\xfd\x41\x72\xb4\x2d\x27\xc0\xbf\x1c\x7e\xfc\xe1\x71\x8d\xc8\x49\x2c\x95\x37\xed\x75\xf0\xbf\x3e\xc7\x4d\xa1\xa0\x30\x66\x8e\x60\x31\x91\x7a\xce\x1c\x84\x18\x3a\x84\xe5\x8b\x01\x90\x95\x90\xaf\x41\x85\xea\xdf\x15\x53\xe4\x0a\x17\x98\x67\x6a\x3f\xee\xaa\x31\x2d\x97\x08\x69\x5f\x1e\x90\x30\xd5\x6c\x9a\x65\xee\x1e\x3f\xbb\xf6\x8a\x2e\xaa\xfc\x8b\x29\x72\x39\x5a\xa8\x16\x91\x25\x3d\xfc\xfe\x2f\x5a\xa8\x0f\x46\x66\xdc\x74\x13\x7f\x4c\x81\xcc\x8c\xcc\x4d\x63\xb2\xfa\xfa\xd1\x00\xef\xbc\x5f\x64\x22\xea\xfd\x3b\x16\x91\x0e\x38\xf9\x4e\x44\x9f\x68\x92\xee\xcc\x22\x52\x05\x77\xd9\x65\x99\x21\x99\x8b\x49\xfb\x61\xf3\xdd\xf6\xff\xd5\x1f\xe8\xf1\x01\x75\xe9\x1e\x04\xec\xf8\x03\x74\xf1\xd3\x22\x78\x16\xa6\x9f\xff\xd1\x00\x7f\xe0\x8e\x0a\xd5\xe5\xf0\x68\x7d\x5a\xb8\x0d\xa3\xe9\x8d\xf7\xb0\x8c\x2c\x59\x1f\xe6\x40\x27\xa2\x1c\x41\xf5\xd3\x66\xc9\x43\x17\xad\xb1\x9f\xd8\x47\x9a\x04\x22\xc0\xb2\xc7\xf8\x21\xe4\xc8\xdb\x02\x90\xd1\xc3\xcb\xee\x09\x40\x08\xd7\xf7\x12\x43\xa5\x1e\x46\x4c\xbd\x3d\x2a\xf9\x85\xe1\xd3\x1b\xf5\x8d\x06\x68\x95\xbc\xac\xe3\xec\xe7\x43\x7c\xdb\xca\x79\x17\xf7\x2b\x6a\x41\x5c\x9e\xda\xc7\x94\x5f\x76\xaa\x2c\xf6\x72\x44\x13\x64\xd5\x94\x03\xa0\x0d\x0d\x5a\x39\x90\x76\x9a\xd6\x72\x04\xc5\xc7\xbf\x90\x12\xcc\x72\x04\x2d\xb6\x5f\x26\x66\xab\xf8\x63\x9d\xd6\x74\x95\xa3\x7f\x2e\xb3\x44\x24\xe8\xca\x81\x1c\xca\x6e\x3d\x4b\x44\xe3\x55\x8e\x58\x22\x32\x58\xca\x11\xe9\xac\x6e\x00\xa2\x54\x82\xa2\xa4\xbf\xee\x4f\xfd\xc0\x1a\x71\x0b\x23\x4b\x4f\x11\xf4\xb3\x24\x9a\xd8\xfc\x02\xfb\xb0\xb8\x46\x06\x58\x6b\xaa\x24\x9a\x28\xa7\x5f\xc9\x81\xe8\xac\x2e\x00\x48\x63\x93\xa9\x64\x10\xf3\x35\xe5\x05\x2b\xd2\x1e\xb1\xb2\xad\xc8\x66\x51\x55\xc2\x8a\x14\x69\xea\x2c\xb0\xc8\x26\x89\xae\x12\x2e\xb0\xa5\x6d\x51\x0a\x5d\x94\xf0\x2c\x61\x46\xda\x90\x2d\x85\x6d\xd0\x5d\x03\xab\xb0\xfa\xff\xc6\x85\xbb\xba\x1c\x66\xe6\x72\x85\x23\x2a\xf4\x0f\x90\x96\x79\x19\x94\xb8\x34\xf2\x07\x18\x43\x89\xa2\x12\x89\x7e\xf6\x7d\x94\x12\x83\xa8\x2e\x54\x76\x76\x73\x99\x16\xcb\xca\x2b\xa0\xce\x65\x4f\x52\x8d\x49\xd3\xac\x86\x1d\xba\x92\x1f\x88\x2c\x60\x97\x63\x10\xff\xdb\x68\x05\x38\x9a\x6f\x39\xc6\x50\x3d\x68\x19\x66\x42\xf5\x38\xae\x4e\x97\x44\x47\x89\xab\x53\xaf\xec\x16\x01\xd7\x7e\x81\x95\x2b\x0a\xd0\x59\x1a\xf2\xdb\xeb\xa2\x45\x8b\x54\x41\x8f\x21\x50\x05\x60\xc7\x08\x30\x67\x96\x1e\xb3\xea\xbd\xd1\x0b\x93\xa0\x26\x6f\xcb\x37\x8b\x13\x66\x96\x8e\xfc\xee\x2e\xb3\x37\x75\xfa\x28\xdb\xf0\xad\xd9\x82\xa0\xb3\x37\x25\x8d\x4b\x67\x6f\xea\xcc\x57\x7a\x4c\xaa\x1b\x74\xb1\x6a\xdc\x01\xe6\x54\x17\x81\x65\xdb\xc5\xd5\xce\xe3\x02\x56\xac\xbd\xcf\x65\xf0\x3d\xc9\xca\x32\xd8\x68\x3a\xfc\x94\x41\x7d\x32\x12\x0a\x96\x6a\xb2\x60\x9b\xf4\x4f\xa7\xa7\xc2\x55\xe7\xe1\x29\xdd\x96\x66\xf6\xe5\x6e\x99\x81\x28\xed\x32\x37\x50\xd2\xc8\x65\xa1\x1f\xa5\x2f\xcb\x62\x0d\x4a\x14\x17\x72\x06\xac\xbe\x4a\x5c\x64\x2e\x2f\xca\xb0\x13\x2d\xab\x16\x1d\xf2\x2e\x59\x74\x48\xa2\xbb\xc4\x3d\xe5\xf2\x36\x59\x2c\x11\x2f\x5a\xa0\xd1\x87\x6f\x20\xca\xc9\x1a\x91\xdd\x55\xb8\xa8\x1c\xcb\x73\x7a\x82\x96\xe8\x1a\xcf\x50\x60\x2e\x47\x13\xd5\x84\xb0\x03\xa7\xdf\x67\x8e\x65\x03\x94\x13\x1f\xa5\x17\x61\x18\x72\xb2\x6a\x0a\xe8\x04\xbe\xa5\x2b\x57\xe0\x33\xa8\x07\xd0\xc2\x8e\xf5\x79\x81\x45\x38\xff\x05\xca\x66\x96\x8b\xa4\x06\xef\xf2\xb0\xf2\x74\xbe\x2e\x40\xe3\x66\x19\xf6\x05\x67\x9d\x10\xa0\x66\x89\x4b\xc9\xe5\x25\x46\x80\x59\xb2\xec\x27\x27\xc0\xee\xae\xf2\xdb\xdd\x53\x8c\xfd\x2c\x61\xe4\x2d\xff\xdf\xf8\x5f\xf5\x05\x58\xc2\xf2\x94\x42\x9b\x36\x3f\x15\x04\x71\xb0\xc6\x23\x1c\x6c\x6b\xba\xc6\x1f\x41\xee\xea\xd2\xb6\xea\x92\x72\xfd\x67\xd9\x46\x59\xcb\x56\x06\x01\x8f\xe0\xd0\x9e\xb2\xad\xb2\x26\x08\x8f\x59\xee\x58\x95\x1e\x84\xb0\xca\x74\x20\x2b\x10\xea\x0b\x88\x70\x96\x9b\x6d\x65\x61\x7f\x87\xfe\x91\x69\x5c\xb6\x15\xd6\xb2\xd5\x0d\x01\x68\x1f\x1d\x8d\x15\x96\x93\xff\x67\x5f\xfa\xfd\x07\x13\xc6\xb2\xfc\x39\x79\x5e\x43\x40\x62\xe2\xe1\x41\x7d\x63\x12\xd4\x65\xc0\x75\x84\xf8\x39\x4b\x80\xeb\x58\x41\xbf\x90\xdb\xeb\xac\x52\xb1\x80\xa6\x38\x6d\x66\x3d\x62\x16\x8b\xca\x39\x1e\xe8\xfa\xa1\x50\xc3\x52\x19\xdf\x54\x76\x8d\x2d\x5e\x18\xfa\x21\x06\xdd\x5f\x88\x6d\x96\x55\x0e\xb0\x47\x3f\x8f\x24\x90\xce\xaf\x07\xa9\x0e\xdd\xef\xdf\x58\x79\x2e\x3f\x1c\x1e\xdc\xe2\x98\x02\xbd\x9f\xa2\x8b\x6e\x21\x56\x4e\x96\x2c\xab\x29\x26\x5d\x0d\xc0\x68\x51\x20\xf7\xac\xe9\x26\x64\xf9\xbf\x39\xac\x99\x0e\x79\xc8\x32\x8e\x25\xed\xac\x9a\x51\xf8\x92\x13\x75\x1b\x31\xd3\xe1\x02\x15\x13\x24\xcb\xca\xaa\x64\x19\x2a\xc9\x6d\xd6\x6d\x30\x34\xe5\x6e\xcc\x8a\xfe\x17\x88\xc6\xac\x25\xda\xa3\x19\xa8\xb4\x27\xbb\x4c\xa8\xa9\xdb\xd7\x62\xcd\xe9\x7f\x52\xfe\x7c\x17\x5e\x1b\xc9\x37\xae\xaf\xcd\x38\x49\x68\x00\xda\xe2\x03\x1a\x00\x88\xdf\xb3\x07\xb4\x85\xc7\xd3\xff\xd3\x60\xd9\x17\x15\xb2\x30\x8b\xa6\xda\x63\x4d\x79\xca\x83\x2d\xcc\x6b\x0c\xbf\x94\xd8\x81\x67\xed\xb1\xa6\x86\x6b\xec\xe4\xe7\xaa\x8b\xa8\xdf\xec\x2e\x71\xe3\x35\x7d\xdb\x5b\x41\xf3\x59\xdd\x15\xfc\xb8\x1d\x76\x99\x7d\xe1\x45\x05\x98\xfb\x3c\x24\x7b\x2a\x89\x83\x4a\x84\x9f\x75\xc4\xaa\xf2\x2c\x0f\x60\xb2\xba\xcb\xd1\x49\xa9\xe0\x3a\xd8\x38\x32\xdf\x2b\xf1\x53\x53\x68\x2e\xb3\x0e\x70\x5b\x65\x63\xd4\xc1\xbc\x7a\x14\x70\x5f\xf9\x78\x53\xb1\x09\x1c\x89\x53\xb9\x43\x9b\x87\x8c\x82\x3a\x62\x9e\xf4\x01\xb0\x06\xaa\xac\xf3\x3a\x63\x5e\x5d\x8e\x51\x5b\xf3\x5f\x14\x4e\x25\xb6\xc9\xfa\xb5\x4e\x66\x5d\xfa\xa1\x06\x32\x9d\x5d\x3f\x15\xdf\x53\xf6\x3a\xdf\x36\xc3\x3a\xbc\x6f\x56\xcc\xba\x2a\xc0\xb5\xe4\xdb\x8b\xca\x05\xda\xf4\x09\xb5\x2e\x42\x00\xdc\x1f\x7c\x4b\xbe\xc2\xaf\x78\x86\x94\x67\x3e\xeb\xb9\x8d\x2c\x91\xe0\xcd\x1a\xbc\xec\xb2\x2a\x2b\x8e\x94\xe9\x13\x67\xc5\x93\xe2\x80\xb3\x1a\x69\x74\xd2\x1f\xf5\x62\x00\x65\x99\x57\x74\xaa\x60\x57\x66\x45\xa7\x4e\x1f\x38\xeb\xd6\xa9\x63\x78\xcc\x2e\x96\x9d\xa7\x9c\xa0\xed\x69\x3f\x43\xbd\x10\x66\xee\xd2\x56\xba\xcb\xa7\xfe\xfa\x0b\x59\xa2\x0a\x49\xbc\x3b\x3c\xe5\x3f\x0e\x1b\x32\xa4\xeb\x2f\x5a\xa8\x06\xfd\x22\xa9\x5b\x2d\x26\xb0\x67\xda\x91\x51\x7f\xb1\x31\xd4\xc5\x1b\x85\xa3\xe8\xac\x7a\x83\x77\xef\x31\x05\x7e\x6e\xda\xed\x5e\xf1\x9c\x64\x1d\x01\x2b\x9e\x91\xcf\x56\x26\x73\xad\x5a\xbc\xdf\x31\x04\x32\xd5\x2b\xd0\xb9\x76\xc7\x55\x1c\x1b\xca\xce\x9c\x15\xbf\xc5\xa7\x8b\xa4\xae\x4d\x9f\x87\x2a\x3a\xd6\x07\xb0\xfa\xc4\xbe\x52\x93\x9f\xa0\x15\x72\x05\x7f\x90\x8a\xfe\x81\xb8\x43\x8b\x27\xe8\x51\xac\x84\x6b\x28\x61\x7f\xf0\x65\x27\xc8\xd0\xab\xb0\x9d\x7c\x14\xd0\x1b\x5d\xb4\xca\x7a\x99\x65\x7d\xb0\x71\xb2\xf7\x69\xa5\x45\xac\x8a\x34\x56\x4b\x31\xc8\xb2\x5b\x1a\xc1\x2a\x4a\x8e\x9a\x2d\x91\xd3\xab\x2e\xb6\x14\xfc\x5d\xfe\xff\x24\x00\xcc\xef\x3f\xbb\x85\x9a\xa4\x96\x68\x90\x8e\x98\x8d\xfb\xa1\x69\xa5\xdc\x08\x82\x4e\x12\xf9\x2d\xff\xb5\x48\x5f\x24\xb9\xdf\x8e\xe6\xb6\x95\xe6\xb2\x19\xd1\x38\xe9\xdb\xb3\xd0\x32\x57\x58\xd5\xff\xc3\xdf\x2e\xe1\xd7\x4a\xf0\x11\xba\x8c\xf0\xd3\xc2\x6d\x85\xad\xa8\xbd\xdc\x38\x55\xfb\x10\xdc\xf6\xa9\xba\xd9\x17\xd2\x40\xcf\x91\x6c\x69\x84\x27\x0b\x5f\x6f\xb6\x9a\x98\x32\x55\x07\x5c\xdd\xb4\x4e\x6b\x1c\xba\x85\x7b\x32\x1b\x79\xf6\x87\x47\x9c\x48\x17\x03\xe4\xcd\x56\x69\xb0\x4e\x98\xad\x12\xe6\x28\xfd\xd1\x2a\xc9\x5d\xc3\xff\x33\x25\x7e\x3f\xb4\xb6\x64\x53\x6b\x48\x4f\xd9\x61\x0d\xc8\x57\x63\x6d\xcd\xd6\xc2\xac\x68\x2a\xb3\xec\x9b\x5f\xf8\x6b\xa1\x7f\x00\x40\x22\xb9\xcc\x90\x4a\xa3\x35\x0e\xe5\x02\x16\x99\x8d\xc4\x2a\x51\x9d\xcf\x86\x16\x9f\x96\x15\xad\x23\x3e\x25\x9f\x5b\x8f\x21\x50\x8b\x88\x58\x9e\xfd\x5f\x08\x09\x66\x03\x0a\xc0\x01\x69\x8d\x4c\x7f\x87\x26\xb5\x01\xc3\xa5\x57\xe4\x88\xd6\x48\x38\x37\xe0\xf6\x8a\x9b\x3f\xb0\x43\x25\x47\x5a\x90\x7e\x5b\x4e\x34\x6e\x83\x84\x7b\x32\x5b\xa8\x53\xd9\x10\x8d\x33\xb8\x90\x60\x66\x1b\xa0\xd1\xc9\xb6\x6e\xd0\x7a\x5b\x5f\x37\xce\xe0\xd9\x9b\x6e\x9f\xc1\xf7\x07\x55\xe1\x44\xe1\xe9\xd0\xdd\x48\xc3\x3a\xbc\xab\xb9\x0e\x9a\x9f\x29\xe4\x94\xee\x30\xcc\x46\x1a\xd6\xfc\xac\xf2\xad\x93\x97\x70\xc1\x66\xe3\xba\x47\x50\x2d\xb3\x71\xdd\x33\x3f\x73\x0c\x33\xf8\xf4\x36\xda\x3a\x79\x9b\xd0\x2a\x5f\xe4\x25\x6b\x4c\x38\xa6\xdb\x29\xdc\x16\xa2\xd1\x7d\xe6\x32\x46\x08\x19\xb3\x11\xec\x3b\x05\x6b\x32\xdb\x19\x37\x8c\x9a\xb6\x33\x56\xa5\x6b\xe4\x14\xfe\xd9\x17\x04\xa5\x88\x89\x76\xb6\x93\x48\x21\x77\x89\xeb\x95\xef\x07\x5e\xd2\xef\xd4\x03\x4e\xe5\xb6\xce\x1b\xb7\x23\xd9\xa2\xf1\x8a\x65\x20\x4b\xaf\x85\x92\x77\x0b\x01\xfc\x39\xe4\x86\x6e\xa1\x82\x65\xc6\xb5\xad\x72\xb3\x6d\xd1\x46\x18\x88\x5d\x2f\xed\x17\x1b\x5b\x43\xc8\x29\xf6\x23\x08\x20\x03\x73\x68\x54\x0b\x05\x2a\x3b\xb2\xdd\x6c\x74\x9f\x93\x1b\xec\x60\xcb\xa2\x87\xab\x03\xe5\x6d\xcd\x06\x1e\xcf\x47\x39\x3c\x71\x62\xd3\xfb\x5b\x3f\x4e\xdf\x02\x37\xa2\x40\xba\xce\xb0\xed\xa1\xc3\x96\x95\x6f\x80\xcf\xe9\x7d\x22\x4d\xa7\x63\x34\xda\x1b\xb2\x5e\x3d\x7e\x83\x8c\xcb\x2f\x44\x85\xfa\x00\x41\x21\xca\xea\x9a\x2d\xd4\xa1\x0e\x4c\xfd\xc0\x30\x94\x19\xd6\x8f\xd8\x48\x4b\xe5\x0e\xd4\xa7\xff\x07\x48\x46\xba\xa2\x83\x6e\xe7\xd0\xd1\x1e\xea\x54\xa2\xb5\x27\x24\xe3\x72\x99\xf6\x49\x10\xf4\x3f\xed\xf8\xdf\x80\xf6\x8c\xe0\xd3\x01\xab\xe7\x58\x42\xfa\x3e\x5e\xed\x29\xd2\xd0\xd9\x33\x4b\x48\xea\xba\xe7\x58\x12\xaa\x00\x76\x4b\xc1\xa2\xcc\x4e\x28\xc2\xf4\x6d\x50\x2f\x31\x62\x7e\xe0\x8a\x07\xfc\x03\x73\xbe\xfc\x02\xc9\x1e\x1e\xa2\xc8\x76\x91\xa4\xe8\x15\x5e\x23\x89\x9a\x5e\xc9\x3f\xd7\x1c\x77\x5c\xbe\x2b\xbb\x8c\x5f\x41\xea\xae\x37\x72\xb0\xe4\x3f\xec\x5b\xd9\x8c\xf9\x79\x9e\xf4\xfe\xec\xe7\x69\x70\x95\x17\xa0\x37\xd0\x54\xbb\xcb\x77\x3c\xa0\x41\x6e\x40\x38\x78\xcc\x1a\x9e\x0f\x9d\xca\x3b\x7c\x5e\x4e\x1b\xeb\x7d\x40\xd8\xa6\x31\xe7\xc4\xf7\x99\xd4\x4e\x5a\x57\xab\xff\xa2\x6c\x7a\x8f\xd6\xc8\x5c\xe9\xc4\x31\xd8\xa6\xec\x03\x04\x0f\x99\x37\x9d\xb3\xd7\xf2\x92\xd9\xba\x62\xd8\x47\xdf\x01\x06\xb7\xc3\xba\x8f\x68\x8d\x5a\x3b\x6e\x8e\x2e\xae\x3f\x08\xa1\xfd\xfc\xcb\xf3\xfa\xde\x3c\xa0\x0e\xd6\xf8\x4f\x48\x4a\xbc\x60\x08\x3d\x10\x9c\xef\xec\x13\x83\x4f\x46\x74\x9f\xb4\xa7\xfb\x79\xc2\x75\x74\x6e\xe8\x93\xf5\x22\x8b\xb4\x2f\xb2\xaf\x3c\xba\xa4\xeb\xce\x5a\xfc\x43\xc3\x20\xd4\x07\xb6\x62\xa8\xc7\xa7\x1c\x15\xaa\x7c\x46\x85\xea\x50\x40\xbf\x7a\x40\x49\xa8\xb5\x83\xbd\x03\x23\xee\x9b\x9f\x7e\x92\xed\x24\x07\x7b\x07\x46\xdc\x0e\xf8\x7e\xc6\x82\xf3\x8a\x07\x47\xdc\x1e\xfd\x7e\x32\xa2\xd2\xee\xfd\x22\xcd\xcf\x0d\x06\x37\xce\xc7\xdb\x0e\xae\xb8\xc5\x78\xbf\xc8\x10\x90\xf6\xef\x17\xf9\x68\xde\x21\x17\x0d\xf2\x0e\x23\x47\xa3\x7b\xfd\x02\x25\x6e\x0b\xba\x93\x73\x31\xab\x87\x18\x8c\x14\xdb\xf8\x9d\x4b\x72\x47\x0b\x75\xa0\xc4\x67\xf5\x10\xfc\x18\x92\xe1\x0a\xce\xb0\xc7\x54\x86\x7f\xc2\x73\x4c\x36\xae\x4f\x21\xfd\x17\x23\xa2\xfa\x6e\x46\x44\x7a\xa4\x83\x34\x6e\x07\x6f\xbf\xb9\x43\x91\x1e\xe9\x37\x53\xe4\x1d\x77\x03\x32\xe3\xef\xdd\x67\x60\x09\x68\xc8\xef\x2d\xf7\xdb\xe7\x03\x34\xc8\x72\xf4\xa6\x41\x1e\x81\x00\x25\x71\x83\xc9\xce\xf5\xa5\x47\x7f\x58\x63\xd2\x94\x1d\xe4\xf1\x61\x21\xc4\x0d\xf4\xac\x6e\x21\x39\x17\xd5\x23\x46\x36\xee\x47\x2e\xbf\x31\xe7\x1a\x91\x37\x7a\xe8\xff\xf1\xa9\x7b\x97\x47\x0e\x84\x1b\xcc\x41\xcf\x51\x02\xfd\xfd\x6b\xc0\x7f\x1f\x1c\x90\x84\x09\xf5\x74\x8e\x23\xc0\xf4\xa5\xfc\xc7\x11\x2c\x58\x4d\x65\x5a\x28\xf7\xec\x00\xe8\xd5\x61\xcd\xe3\x60\xdb\x2c\x57\x18\x2d\xee\x2a\x33\x64\x9f\xfa\x59\xa5\xcb\xef\x33\x84\x6e\xe0\x3e\x69\x56\x47\x3c\x8d\x14\x23\xa4\xe7\x41\xfd\x98\xed\xf0\x0b\x04\xbf\x4b\x8c\x0f\xae\x90\xa7\xe5\xf4\xd8\x47\xd1\x32\x3f\x0f\xe0\x53\xc9\xfe\x02\xba\xcf\x59\x78\x23\x41\x34\x21\xcd\x31\xa0\x51\x99\xce\x48\x1b\x09\x07\xb1\xa6\x7d\x10\xfd\x38\x9d\xe3\x36\x82\x68\x45\x5b\x6f\x64\x2e\x62\x24\x7c\x07\x09\xbc\xbe\xc9\x18\x50\x95\xd9\x49\x3e\x72\x74\x52\x0a\x7f\x04\xf1\x8a\xa4\xef\x20\xc3\x37\xbb\xc9\xc1\x82\x72\xfc\x93\xae\x19\x41\x91\xe2\x01\x2a\xb0\xbc\x78\x44\x0b\xf4\x23\xee\x2e\x61\x88\xbe\xc4\x18\x41\x67\xe2\x01\x2d\x10\xdb\xb8\xf7\x35\xae\x2e\xf5\x7c\x85\xd9\x43\xaa\x61\x70\xfb\xfb\x7d\x1e\x72\x12\x4f\x48\x8d\xe1\x94\xf1\x31\xb6\xed\x50\x7c\x95\x37\x1a\xc3\x25\x39\x33\xe2\x24\xea\x8b\xad\x11\xa8\x70\x5e\x94\x2d\xd6\x84\xac\x8d\xd1\x02\x9c\xde\x35\x20\xda\x9c\x16\x32\x08\x6c\xb4\xab\x73\x04\x77\x88\x2c\xca\xd1\xa3\x09\xfa\x42\x67\x0c\x75\x7c\x1f\x9d\x09\xcb\x7e\x1e\x48\xb3\xcf\xff\x8c\xa1\x2c\xc2\x41\x7e\xc3\x74\x7a\xc0\x18\xf1\x41\xb5\x18\xe7\xad\x12\xfb\xe7\x18\x7f\xfc\xdf\xfe\x61\xf7\xd1\x87\xc1\xc1\x85\xee\x74\x74\xf8\x18\x84\x15\x7b\xda\x82\x3a\x44\xd7\x26\x63\xc4\x34\x68\xcd\xcd\x58\xa4\x1a\xa3\x49\x97\xa5\x80\xc7\x0c\x5a\x06\x4d\x23\x4c\x22\xf6\x68\x0f\x68\xce\x7c\xeb\x30\xb0\x00\xec\x8e\x1e\x58\x00\xd3\x79\x9a\x83\xd0\x41\x01\x16\xcf\xb1\x62\x8c\x35\x04\x8b\x75\xa9\xd3\xfe\x58\xcf\xb6\xb2\xdd\x63\x68\xca\xa6\x1b\xcc\x75\xab\x83\xd9\xc7\x19\x0d\xd2\xf7\x20\xfe\xb0\x5b\x6e\xa0\xb0\x3f\xeb\x16\x52\x31\xbb\x3a\x07\xa8\x6b\xb3\x5b\x30\xa0\xd1\x7d\xf0\x1a\x20\xbb\xda\x77\x3a\x40\x51\x9b\xdd\x3b\x0d\x15\x6e\x67\xe8\xb8\xc0\x1c\xf1\x10\x5e\x17\x43\xaa\x2f\x12\xf7\xf6\xf1\x41\x0c\x52\x14\xec\x60\x1e\x3f\x56\x89\x17\xfe\x0f\xec\x44\x2f\xdb\xd0\xf1\xbe\x2c\x1b\x3f\x30\x81\x74\x72\x1a\x71\x25\xda\xbd\x10\xb7\x92\x5f\xdd\x5b\x87\x48\x38\x43\x66\xcc\x01\x28\x87\x9d\xe4\x03\x87\xae\x5d\xd0\x83\xd3\x66\xb7\x80\x47\x89\xdb\x2b\x32\x6e\x96\x95\x3c\xd4\xe3\x8e\x41\xd3\xa0\xde\xd4\xe7\x9d\x08\x56\xab\x5d\x93\x03\xaa\x69\xe7\x5c\x8f\xf0\xbe\xf6\xea\x17\x62\x90\x5d\xa6\xc1\xf2\xdb\x0c\x52\x0a\x8c\x00\x3c\x07\x29\x05\x0e\xbb\x1e\xe1\x8e\xed\x1e\x65\x40\x38\x3e\x0b\x13\x77\xac\xef\xe7\xc6\x0b\x04\xb1\x77\xd2\x1b\x3a\x52\x43\x44\x98\xd8\x67\xef\x12\x26\x36\x9d\xa5\x36\xf6\x79\x74\x0e\x4f\xc2\x1b\x1f\x54\x03\x42\x8d\x3b\x2d\x62\x6e\xad\x5c\x05\x67\x37\xe7\x11\x83\x20\xf3\x79\x92\xcc\x28\x4a\xa9\x39\xff\xd4\x76\x57\x39\x06\x45\x15\x80\xc5\xea\xe4\xa3\x09\x16\x6b\x97\xe1\x31\xc3\x01\xec\xf3\xd8\x44\x2f\xe7\xf6\x2f\xa0\xd0\x73\x86\xd2\x16\x86\xe4\x9c\x28\x6d\x7b\x81\x26\x08\x1a\x76\xae\xce\x14\x8b\x60\xaa\xfc\x72\x65\xab\xe6\x84\x7b\xd8\x09\x66\x13\x70\x75\x3b\xaa\x26\xee\x61\x87\xce\xcf\x1c\xab\x46\x15\xa2\x03\x1d\x03\x3b\x49\x4c\x74\xa4\xfc\x04\x3b\xcb\x37\x8c\xb3\xa0\x0f\x74\x1a\x98\x25\xa6\x70\xb9\x42\x8e\xfc\xc9\x0f\x20\x4c\x3c\x21\x15\xda\xde\xe6\x72\x24\x89\xe8\xfd\x1a\x39\x78\xea\x61\xed\x64\xcc\xb9\x7c\x82\x14\x9b\x55\x66\x15\x8b\x7f\x65\xce\xad\x45\x8b\x73\xa9\xe6\xd6\xa2\xd5\x41\xb7\xb3\x81\xa6\x90\x5c\x0e\x0c\x4b\x8d\x18\x2a\xd1\x97\xcc\x33\x54\xa2\x33\xe4\xe6\x56\x89\x55\x08\x6f\x73\x82\x93\x35\x9d\x10\x3b\x5b\x60\xfa\x6b\x08\x20\xe4\x9a\x76\xc3\x4c\x08\xb9\xa6\x6b\x24\x88\x6a\x79\x91\xee\x13\x76\x13\x8d\xef\x9c\x9d\xd8\x7b\x9d\x37\x26\x4a\xd6\x37\x39\x93\x5b\x5a\xfb\x18\x26\x79\x89\xc9\x73\x80\xbb\xd7\x3e\xf6\x19\x97\xb4\x02\xba\x9a\xb3\x13\x31\xaa\x7d\x37\x49\x4b\xfc\xec\x8a\x38\x95\xfb\x44\x31\xc1\xe6\x9a\xde\x05\xa1\xb6\x87\xf4\xfa\x1c\xd8\xd7\x3a\x16\x4f\x2e\x69\xa7\xc3\xd7\x27\x1c\x61\x87\x4e\x75\x73\x70\x17\xee\x9d\x10\x4e\x61\x47\xbd\xcc\x11\x34\x04\x6a\xf3\x80\xea\x52\x5a\x73\x8e\x48\x0a\xd1\xa0\x70\x70\xf7\x3d\xf2\x24\x31\x71\x8a\xa9\x7e\x4e\x4e\xee\x42\xb0\x9d\x73\x46\x8b\xd4\x02\x92\x06\xa6\x11\x1a\xe6\x8c\xa4\x0d\x15\x81\x30\xf2\x56\x43\xcf\x3b\x2d\x6e\xe2\x13\xae\x87\x5f\x8f\x65\x50\xdd\x22\xb0\x3e\xbd\x94\x17\x44\x08\xde\x4a\xab\x83\xb4\xa5\x06\x72\xcb\x2a\xd0\xff\x39\xcf\x68\xb0\x46\xe4\x8c\x06\xbb\x05\x67\x64\x4e\xab\xc5\x1c\xcd\x8f\xcf\xff\xd1\x22\x9d\xdd\xe7\x49\x62\xa3\xcb\x44\xc0\x7f\xa4\xdf\x35\xf8\xa2\x86\x90\x5b\xd5\x43\x1a\x63\xfe\xb8\x9c\x92\x73\x63\xfe\x08\xb4\xf2\xf3\x3f\xd0\x53\xbd\xce\xd0\xc2\xbe\x88\x9f\x1c\xa4\x9d\xf5\x32\x7f\x50\x03\x79\x23\x70\x70\xf6\xa1\x68\xfe\x70\xb6\xe9\x7a\x6e\x6e\x9d\x5a\x45\x08\x32\xe7\x1d\x23\x62\x71\xbe\x4f\xce\xd5\x07\x8c\x79\x37\x10\x26\xd4\xc0\x3b\xe6\x50\x0d\xe4\x24\x6d\x93\x7c\xde\xa8\x48\xb9\x0a\x26\x1e\xde\x69\x59\x10\x77\xa8\x4e\x24\x9a\x77\xa0\xa3\x69\x44\x9e\x98\x33\xcd\xe1\x03\x21\xab\x54\xe8\xdc\x5a\x3c\xdb\xfd\x35\x51\xe2\x4e\x13\x99\xe0\xa9\x1f\xeb\x5f\xb8\x3d\xe7\x7c\xe1\xa7\x75\x63\xde\x44\x59\xa3\x41\x8c\xd2\xd6\x79\xfa\x81\xbc\x52\x0b\xe3\x7d\x0c\xcf\xcb\x82\x06\x6e\xee\x8f\xb0\x07\x8b\xe0\xa3\x7e\x21\x08\x73\x5a\xcd\xe4\xfe\x75\x7e\xca\x31\x7f\x7e\xfe\x8d\x06\xfc\xd7\xdd\x15\x41\x4f\xc5\xe5\x01\x44\xb2\xcb\x9c\x9a\x75\xfe\x5b\x84\x18\x89\xc6\x66\x2e\x32\xfc\xe6\x94\x29\xba\xd0\xd7\x0e\x6d\x58\x71\x8c\x96\x36\x58\x70\x87\x3a\x85\x64\x71\xe6\xf5\x9d\xf7\x42\x01\x3b\xa1\x62\xe5\x18\xc2\xa5\x72\xc4\xe6\xab\xbe\x8c\xbb\x4f\x9b\x7e\xe5\x78\xff\xbf\x11\x58\xe5\xf8\xdf\xff\x35\x8b\xfa\x55\xa2\xc1\x92\xdd\x6b\x2b\xe0\xcf\x15\xf8\x2a\x28\x6c\x49\x99\xc5\x21\xd5\x19\x1a\x8b\xe4\x3b\xd3\x79\xcf\x85\xc6\x76\xac\xc6\x22\x2c\xfa\x93\x73\xbe\x0a\x96\x6d\xf7\x17\x49\x32\x91\x6c\x5f\x10\x86\x39\x91\x68\xd5\x80\x82\xd3\xf3\x15\x4a\x5f\xb7\xb0\x05\x17\x89\xfe\x87\x5a\xa4\x4b\xca\xac\x86\x60\x96\x64\x5f\x0d\x48\x60\x09\xf2\xd5\x31\xb9\x24\xb8\x17\x31\x48\x46\x2a\x58\x11\x83\xe4\x08\xa0\xd5\xa3\x87\x7e\x21\x58\x92\xfd\x02\x26\xc1\x5c\xfe\xe1\xc7\xa5\xbc\x7a\xb8\xb5\xd5\x70\xc6\xc6\x1a\x81\x86\xa7\x1e\x85\xcf\x58\xc7\x95\x45\x8e\xfb\x67\x15\x86\x2a\x71\xa4\xf9\x0a\x27\xb0\x67\x95\x78\x9f\xe9\x48\xf2\xc5\x99\xd1\xe1\xfa\x6b\x06\x7f\x95\x2b\x80\x6d\x72\xfa\x0b\xbb\x85\xcb\x65\xa0\xc3\x45\x6b\x37\x17\x51\xbe\xc6\x92\x5b\x44\xf9\x7e\x27\x11\x64\xf0\xea\x75\x7d\x02\x75\xe0\x17\x4e\xa0\x11\xbc\x8c\x60\x9a\xae\xd9\xcf\x33\x86\x4b\x87\xc0\x05\x3d\x48\xf5\xc6\x39\x49\xa1\xf6\xc2\xbe\x32\x65\xb5\x78\xab\x8a\x65\xed\xb7\x82\x59\xda\x63\x78\xc5\x4d\x8c\x46\x20\x02\x70\x1c\x10\xb3\xae\xf8\x80\x26\x91\x23\x9e\xb3\xb1\xd6\xd6\x35\xd9\x8e\xfc\x45\x96\xb9\xed\x83\xf5\x2b\x51\xa1\x5a\xf8\x0b\xef\x88\xcb\x01\x3d\xac\x21\xc1\xed\x5b\x8b\x2b\x20\x67\xfb\xf3\x81\x09\xd2\xaf\xdf\x5f\x04\xc5\x6a\xc8\x48\x85\x9a\xe2\x22\x9c\xeb\x26\x0b\xd1\x73\x70\xef\x75\x6b\xcb\x73\xc1\xff\x68\x0c\xaa\x75\xc7\x98\x7b\xe5\xa3\x6d\x8c\x4e\xb4\xee\xf8\x42\xf7\x0f\x0f\x0f\xa8\x0b\x4f\xa0\x65\x6b\xd0\xe3\x4c\x68\xb4\x9d\x85\x3a\xb1\x3f\x6d\x81\xae\x53\x3c\xed\xfb\x4c\xf8\x41\xd8\x5b\xfb\x84\x37\x5a\xfa\x27\x60\x81\xf5\x02\x7b\x20\x5d\xb5\x5e\xec\x25\xd9\x4f\x2b\xae\x2b\x97\x6c\xbe\x15\x8c\x60\x52\x37\xeb\x8d\x55\xec\x39\xc6\xed\x2b\x02\xe1\x79\x92\x72\x6e\x05\x76\x1e\x09\xd1\x35\x54\xe6\x00\x3a\xfd\x7f\x01\xd8\x61\xa9\xbc\x8d\x4c\xe7\x86\x9d\x64\x98\x3b\xe8\xf7\x84\xcb\x7a\x0a\xb3\x76\x9e\x84\xc8\xf6\x4f\x85\x31\x45\x9f\x16\xfc\x68\x81\xbf\x10\x53\x24\x05\x72\x1e\x50\x63\x34\x3f\xf0\xc6\x03\xfa\x66\x0a\xe8\x00\xf5\x31\x41\xce\xa1\x65\x79\xc6\x99\x71\x2d\x3f\xb0\x8f\xb4\x4e\xd9\x38\x13\x28\x25\x9f\x0a\x63\x14\xa5\xa3\xce\x14\xbd\xec\x2a\x13\x7a\x76\xb8\xfc\x23\xa3\xfc\xf0\x27\x89\xf0\x58\xfe\xc2\x13\x0f\xa8\xd7\x1c\x43\x0d\x5b\x75\x12\x73\xe4\x44\x99\x13\xbf\xed\x3a\x0e\xff\x10\x6d\x56\x05\x90\x60\x5a\xa7\x9c\xdc\xcb\x56\x9d\x50\x4e\x08\x44\x84\x61\x3d\xcf\xad\xf5\x66\x93\x1a\x3f\xd1\x7a\x9f\x90\x99\x73\x6b\xbd\xad\x0c\x55\x26\x8d\x42\x9b\xf9\x2c\xb1\x53\xd4\xe2\xca\xca\xf1\xff\x35\xde\xd7\x98\x10\x45\xf4\x89\x89\x3c\x6b\xa0\x17\xbb\x82\x87\x17\xfc\xff\x1b\x2f\xe8\x01\x18\xb7\x6c\x5b\x9d\xa0\xdb\x7c\x02\x95\xce\x96\xa9\xc1\x65\x70\xbd\x1d\xd6\x73\x42\x00\xe2\xf0\xe6\x13\x6f\xae\x68\x0c\xe7\xb9\x4f\xa6\x5b\x9d\xab\x0c\xb8\x8c\xd7\x26\x8a\x77\xfa\x7f\x38\xbd\x7c\x55\x7a\xfe\x71\x7a\xa9\x01\x1d\x7e\x0a\x19\xc3\x67\xc4\xfa\x7a\xd6\x83\x23\xc4\x9b\xa3\x07\x12\x41\xf3\x03\x17\x0e\x24\x0d\x2a\xc4\x9d\x62\x7f\x9d\xe7\x3e\x46\x0e\xc7\xfb\x9d\xf0\x76\x2e\x2f\x9b\x1e\x63\x28\x1d\x70\x0e\xf6\x86\x1c\x89\x67\x24\xa9\x4b\x3c\x9d\x1c\x22\x97\x8c\xa7\x73\x04\xb1\x8d\x7a\x1c\xce\xe2\xcf\x06\x1f\xac\xc3\xea\x32\x18\xd4\x5e\x36\x23\x5a\xec\x06\xbc\x94\xf5\x81\xc9\x94\x48\x2b\x9e\x00\x19\x7e\x04\xca\x64\x19\x79\x0a\x67\xdc\x8d\xfb\xff\x49\x83\x74\xc2\x3a\xe7\xe2\x00\xa2\x1e\x72\x5d\x2c\xf8\xf9\x79\x4e\x36\x86\x87\x70\x1b\x02\xa5\x7a\xdd\xaf\xe8\xa1\xae\xe6\xce\x45\x3c\x80\x7b\xbc\x0d\x81\x39\xa4\xc5\x4e\xc0\x6f\x96\xdd\x17\xe7\x3a\x59\x15\xfa\x22\xde\x64\x47\xfd\x9f\x2b\x26\x45\x52\xfb\x3c\x81\xaf\xf4\xc2\xde\xa6\xc5\x74\x4e\xf1\x19\xa4\x21\x3e\x99\x9f\x27\xb3\x22\x2d\x75\xee\x63\xe9\xec\x9f\x17\x98\x14\xcf\x22\x91\x49\x2d\xff\x53\xae\xe7\x79\xc6\x46\xb5\xbc\x3c\x91\x76\xde\x98\x27\x49\x00\x1e\xb1\xeb\xa0\xac\x19\x88\x2c\x6f\x1f\xc9\x4e\x78\xca\x7c\xe3\x7f\x5e\xcc\xa9\xec\xdd\xf3\x5a\xc8\x2e\x0d\xd0\x3e\x04\x4f\xa7\x4e\x9e\xc0\x3d\x3b\x39\xf6\xfc\xb1\xcf\x65\x0f\x9f\x18\x26\xcb\x67\x90\x33\x9c\xd5\xde\x36\xbf\xa0\x63\xd2\x94\x72\xdf\xbc\x6c\xf3\x9f\x00\xe4\x2c\xb9\x67\xce\xa0\x2b\xf5\x29\xe3\xfc\x5d\x58\x73\xea\x02\xc1\xc5\xcb\x87\x82\x93\xd0\xa8\xe5\x8d\x02\x42\xce\xb2\xd1\x7f\x72\xb2\xb6\xf1\x74\x92\xb7\xbd\x6c\x74\x9f\x77\x08\x13\xd5\x08\xa2\xb4\x2f\x15\xce\x9b\xd0\x20\xcb\xcb\x7b\xf0\xbc\x46\xf9\xe6\xd4\xe1\x75\x89\xad\xe3\xb8\x8b\x13\x5b\x67\x19\x5d\xe0\xbc\x11\x16\xf2\x96\x9c\x0f\xc3\x6a\xdd\xfe\xc4\xb0\x7a\xa2\x1f\xf6\xaa\x6e\x92\xce\x07\x9d\x61\x7c\x82\xf3\x61\x62\x87\xcb\xa0\x54\xb8\x89\x0f\x4d\x94\x39\x76\x3e\x31\x8a\xb2\xc2\xcf\x87\x51\xf4\x66\x7e\xa2\x89\x1a\x83\x17\x71\xe5\x31\xe1\xbc\xbd\x9c\x9c\x77\x6e\x8b\xe9\x63\x9e\x9d\x6f\x2c\x35\xf5\x71\x1b\x44\xe3\x23\x4e\xb6\x3d\x34\x9d\x3c\x7f\x72\xfe\x5e\x4e\x66\x3f\x41\xfd\x71\x86\xca\x09\x18\xe0\x4a\x9f\x26\x20\xe0\xe4\xc0\x38\xdf\x18\x66\x6f\x17\x38\x54\x05\xf7\x3e\x4f\x8e\xe8\xcb\x81\xf1\x17\x1c\xaa\x45\x9a\xf3\x0a\x1b\x4c\xf2\xe2\x3a\xa0\xf9\x53\x13\xae\x23\xe6\xe5\xf3\x02\xba\x5c\x9d\xb8\x70\xd1\x3b\xf2\xf1\x02\x6f\x70\xf9\xb0\x74\x91\x9e\xed\xc5\x7a\x61\x94\x39\x0e\xf0\xc2\xc4\x32\x4c\xe8\x75\x44\x93\x25\xa5\xaf\x30\xb1\xe4\xa6\xb8\x52\xac\x0c\xb5\x28\xc5\xca\x90\x5a\xb8\x52\xac\x0c\x97\x21\x06\xf0\x18\xa4\xd8\x91\x12\xcb\x17\x1c\xa9\x3e\x1d\x5d\x70\xa4\x3a\x36\xf2\x4a\x9c\xef\x3c\x28\x61\x72\xd9\x62\xba\xc2\xe4\xd2\xcc\x5f\xd0\x8e\x8b\x54\x7b\x5e\x39\xce\x0e\xaa\x20\xff\x41\x6b\xab\x89\x19\x63\x40\x7a\xe0\xca\x2c\x5e\x49\xa1\x8b\x5c\x28\x87\x0a\x5e\x58\x5c\xce\x09\xbc\x60\x45\x75\xde\xee\x05\xc0\xa0\x73\xde\x2f\xe8\xcf\x0c\x78\x72\xd5\x70\xc7\xaa\x81\x61\x0f\x4d\xff\x4f\xd4\x98\x54\xf7\x05\x46\xb3\x6d\xff\xab\x45\x07\x64\x4d\x5c\x58\x33\x55\x77\x7e\x57\x43\xc8\x49\x8b\x5c\x8d\x53\x7e\xf3\xf3\xb1\xb4\x97\xbf\x40\x0f\x25\x71\xae\x4e\x36\xb6\xb6\xf7\x05\xf6\xde\x92\x98\xbd\xb6\x75\x52\x6c\x4c\x5c\xc0\x34\x8f\x7f\x53\x3b\x17\x96\x89\xdd\xd9\xd7\x20\x5c\x57\x12\xf8\x8a\x94\x21\xcf\x1f\x88\xca\x76\x1c\x5e\x13\x25\x2a\x53\xe8\xda\x7a\xff\x03\xef\x75\x4d\x78\xea\x3d\xbd\x2b\x63\x5a\x69\xba\x70\x08\x38\x65\xe9\x0a\x3b\xc0\x97\xb4\xd7\xb6\x03\xa6\xe3\x45\xae\x15\xe3\xef\x0a\x11\x04\x72\x95\x5e\xa4\xf9\x2e\xdf\xc9\x5e\x2b\x26\x54\x2d\x0a\x3b\xc0\xb7\xba\xd7\xb6\x03\xaa\x41\x0f\xae\x93\x03\xb9\x87\x00\x3b\xc0\x87\xd3\x2b\xf0\x88\xbd\x84\x83\x07\xc2\x1f\x04\x2e\xc6\xc9\x6f\xd7\x56\xe4\xc5\xe8\x2a\xd7\x89\x2f\x56\xb2\xee\x3a\xcf\xfd\xfd\xe5\xf2\xf5\xbf\xff\x2b\x76\xe5\x5d\x78\xb7\xcd\xc5\x3c\xaf\x13\xb0\x14\xef\xb1\x93\x40\x47\xa9\xb4\x8b\x2c\xa5\x43\xf2\xfe\xba\xc8\xbe\x97\xd2\xbc\xc2\x52\xf0\x15\xed\x45\x1e\xb1\xe3\xb6\x2e\xd8\xc3\x9c\xcc\x71\x5d\x38\xf0\xbd\x84\x2f\x8e\x9f\x5e\xb1\x64\x35\x89\xe8\x7e\x5e\x30\x4d\x34\xef\xa1\xbf\x6b\x71\xf5\x88\xac\xa6\xe5\x6b\xef\xeb\x22\xef\xea\x53\x41\x50\xef\xb8\x4c\xf2\xb8\x45\xed\x36\x4d\x52\x97\xb0\xbf\x7e\xb0\x86\x7b\x0a\x7e\x09\x4c\x20\x75\x70\x5b\x26\xc5\x47\x96\x2b\xfc\xf7\x16\x6b\xe1\x32\xf1\x94\xff\x22\x79\xde\x62\x0d\x3a\x31\x1b\x22\x17\x59\x51\xc6\xd2\xbd\xb6\xe5\x52\x3f\x9b\x7e\x1b\x2e\x75\x7e\xca\x60\xc7\xbb\x43\xf8\x58\x8c\x7a\x75\x41\x37\x36\x75\x36\xbe\xb6\xd9\x52\xc5\x02\x31\xaf\x30\x5b\x1c\x18\x70\x01\x37\xe3\x80\xa1\x0b\xfe\x30\x1f\x00\xae\x6d\xb6\xd4\xa5\xa3\xf0\x75\x13\xfb\xa7\xe3\xfc\x45\x28\x9d\x53\x11\xae\x88\xa4\xf3\x14\x6d\x33\xa6\x2e\x8f\x48\x98\x31\xde\xb7\x5c\x10\x54\xeb\x2e\xe0\x90\xa7\xd7\xdc\x43\xd8\x97\x95\x21\xf4\x60\x8e\x19\xba\x80\x4b\x36\x68\xc6\xf5\x04\x9b\xa9\x9f\x07\xc7\xdc\x72\x09\x42\x56\xc7\x28\x5d\xcf\x19\x03\xa2\x06\x6d\x23\x27\x7f\xe4\xc6\x03\x4c\x94\x77\xe9\x13\xec\x26\xfe\xe0\x1e\xf1\x25\x27\xd6\xf5\x84\x6f\x54\x03\x46\x64\xdf\xf2\xae\x0f\x6c\x19\xaf\xe9\x17\xc8\x8a\xcf\xf3\x85\xe7\x35\x00\x10\x84\x39\x50\xef\x7a\xa1\x3f\xb3\x14\x78\x99\x20\xf9\xc4\xae\x97\xf4\x24\x2f\x49\xe0\x92\x9b\x07\x9c\x48\x41\x73\x50\x5c\x2f\x78\xd6\xb6\x46\xb0\x90\x8c\xde\x7c\x41\xeb\xb1\xac\x15\x30\x90\xba\xf7\xf4\xb6\x8f\xb2\xbd\x2d\xd7\xb6\x8f\xea\xd2\x71\xe2\x77\x44\xff\xa7\xca\x89\xfe\x1c\x2a\x67\xfe\xff\x27\x2d\xf3\xc3\x76\xf2\xf6\xf8\x1d\xcc\x7e\x76\x65\x0d\xea\x85\xa4\x72\x07\x45\x27\xab\x3c\x78\xde\xff\x03\x5b\xa7\xc6\xff\xf0\x77\x99\x1d\x7e\xfe\xb6\x69\x55\x1d\x12\xf7\x3b\x48\x16\x2b\x6e\x00\xa3\x93\xfd\x81\x9b\x60\x2b\x97\x1f\x22\x53\x5d\x66\x74\xb4\xdc\x7f\x60\x41\xdb\x26\xff\xa5\xc0\x43\xd7\x68\xe1\xbb\x72\x40\xe0\x8f\x18\x45\x5b\x25\xbf\xc4\x6c\xca\xdd\xf6\x4b\xe0\xc4\x25\xd7\x7f\xf1\xbc\xfa\x13\x11\x8a\xc3\xf5\xdf\xfc\xaf\xf6\x85\x67\xcb\x41\x31\x3f\xc8\xe8\xad\x16\x7f\x99\xab\x77\x09\xac\x1f\x9e\x2d\x87\xde\xfe\x72\xa3\x42\x75\x28\x13\x3b\xac\xe5\xff\xcb\xcc\x80\x7c\x38\xbf\x6d\xa6\x65\xcb\xa3\x5f\x26\x93\x36\xfb\x7d\xa0\x66\xbd\x7c\x32\xe1\xe9\x92\x3f\x3f\xc0\x19\xcd\x8c\xf0\x03\x58\xda\x3a\xed\x57\x02\x12\x59\xfd\x89\xdb\x1f\x6d\x9f\x5f\x4d\x80\x55\xa8\x3f\x95\x68\x39\xf7\x27\x58\x6a\x3d\x01\x75\xe2\x5c\x54\xfd\x20\x27\x1a\x19\xfb\x47\xb4\x85\x6f\xe9\x7f\x0d\x2f\xbd\xcc\xcc\x1f\xe9\x09\x62\x63\x9a\xbf\x06\x96\xab\x74\xf2\x8f\x0c\xf5\xcf\xf8\xf5\x40\xb4\xf1\xff\x71\xb4\x55\x7f\x80\x73\x29\x6e\x2f\xb9\xdd\x4d\x02\xff\x07\xbc\x71\xf3\xfb\xa4\x07\xd8\x0c\xfd\x0d\xe4\xb7\x17\x38\x97\xfe\x4d\xf2\xfa\xc7\xa5\x7e\x93\xbc\xfd\xcd\xd8\x21\xfa\x1e\x76\x9a\x79\x25\x7e\x5c\xf2\x2f\x93\x83\xfc\x20\x9a\x18\xfe\xe0\x36\xcc\x3e\x24\x3b\xbf\x15\x0d\x54\x85\x84\xe7\x8f\xe2\xff\x1f\x1c\x97\xea\x70\x98\x5d\xc5\x4b\x1e\xf7\x8b\x4f\x43\xbf\x13\x5e\xfb\xee\xff\xf1\x89\xc9\x8c\xfa\x9d\x83\x1c\x1c\x3f\x1f\xfe\x11\xf5\xf0\x0c\x77\x86\x56\xc4\x19\xc0\xb1\x7e\x1e\x6f\xb1\xcc\xe6\x1f\xfe\x94\xa9\xa3\xce\x6f\x5b\x4d\xd3\x68\x66\x3f\x68\xe0\x0d\xff\xfe\x0b\xab\xc9\x30\xb0\x3f\x6e\x8a\xc4\x45\x35\x7f\x44\x0b\x5a\x63\xfc\x88\xf7\xb7\x8b\xfd\x07\x3a\xcb\x32\xd4\xed\x8f\x80\x7f\x63\xe5\xfe\x2e\x7a\xe8\x39\xbf\xb8\x35\x70\x0f\x30\xab\x96\xaf\xb5\x7f\x24\x92\xf9\xa4\xf0\xbb\xe8\x62\xf6\x07\x70\x19\x7d\xba\x74\xf3\xbc\x86\x98\xbb\xaa\x55\x3c\x69\x81\x88\xec\x5d\xb1\xed\xaa\x79\x78\x55\x6d\xbb\x6a\x15\x5d\xe7\xfd\x70\x09\x39\xa1\xf3\xf7\x2b\x38\x4f\x54\x1f\x1e\x21\x27\xc1\xfe\xb6\xdd\xb5\x3e\xbb\x10\x44\x97\xe5\xbb\xa7\x1f\x2e\x23\xdb\xe2\xbf\x1f\x93\xdc\xff\x89\x82\xe0\xf7\x8b\xf1\x91\x8e\xfb\x41\x6c\x3f\xdd\xfc\x9b\xe6\x5b\x08\xe1\xeb\xf1\x4d\xd8\x8f\xd0\xc5\x21\x33\xf3\x47\xa2\xdc\x2a\x9e\x81\x3b\xda\xaf\xfe\x00\xa7\x6c\x25\xfa\xbb\x63\x17\xe9\xf8\xf3\x0b\x6f\x90\x07\x24\xcc\x28\x03\xb0\xfe\xf0\x06\x55\xaf\xf2\x3b\xb6\x89\x0e\x4c\x3f\x10\x99\x8b\x1f\x80\xda\xde\x4e\x85\x1f\xee\xa3\xfe\x29\x73\xc3\xea\x8d\x8d\xf7\xc8\xa1\x29\xbf\xf0\x1e\x19\xc2\xf5\x07\x63\x99\x9d\xdb\x3f\x50\xf8\x44\x28\x36\x7f\x0f\x83\x28\x43\xeb\xb7\x0d\xad\x55\x2c\xa9\x60\xbe\x9f\xb2\xdd\x7f\xe4\x50\x4c\xcf\x31\xc9\x7e\x3e\x5c\xfc\xde\x00\x86\xd2\x10\xbd\x51\x9f\xff\xff\xb1\xef\xd5\x9e\x17\xcf\xb1\x4c\xe5\x1f\x8e\x1d\xd3\x3a\xfd\xc2\xb1\x23\xa2\xd9\x79\x93\xec\x27\x9a\xba\x79\x87\x5f\x46\xa7\x97\x9b\xcb\x32\xe7\x0f\xdc\x61\x3c\x98\xc0\xec\xc6\x2f\x33\x34\xab\x37\xd9\x7f\xc6\xfd\xbd\x21\x28\x5b\x16\x45\xf7\x41\x13\x25\xba\xee\x23\xf6\xd5\xf0\x0f\x1c\xc9\x35\xc6\x37\xd1\x99\x62\x8d\x9b\x77\x8a\x1b\x0a\x3d\xff\xc7\x94\xaf\x16\x25\x5c\xb3\xcb\xef\x93\x6c\xde\xfc\xfe\xc3\xf1\x43\x5d\x4c\x40\x59\xc9\x98\xbb\x73\x84\x97\x68\xe7\xdf\x64\xdf\x4f\xd9\x3b\x37\xe1\x95\x4e\x96\xba\x31\x17\x7c\x69\x7d\xe7\x08\x2e\x54\x8f\xb7\xb9\xe0\x9b\xb9\x7b\x5b\x0b\xd5\x29\xb2\x77\x0e\x28\x29\x3f\x8e\x31\xeb\xf6\x02\x06\xed\x28\xe6\x9b\x68\x13\x03\xdc\xdc\x79\x1f\x81\x0d\x52\x71\x07\x16\xf4\xe7\xf3\x01\xb0\xa0\xfe\xe6\x87\xd4\x28\xd7\x1f\xd1\xf7\xaa\x1f\x10\x3f\x47\xa4\xdd\x25\xee\xdc\xf5\x3d\xac\x0d\x87\x7a\xdc\x11\x8c\xd2\xfd\x3c\x94\x75\x9e\x3f\xac\x11\x07\x09\xdc\xb0\x5a\x0c\x59\x03\x37\xe9\x97\xfd\xf3\xfc\x19\x9b\x4e\xe5\x8b\xfa\xfc\xfd\x1f\xc3\xed\xf2\xcd\xff\xfe\xfe\x36\x47\x6d\x0d\xdd\x05\x44\x0b\xa9\xa2\xbb\x1e\x3c\xaf\xf1\xc2\x3a\xb2\xef\xf2\x86\x0a\xad\x4b\xa8\xdc\xb5\x00\x5e\xe3\xf7\x61\xdb\x76\x7b\x6a\x84\x0c\xa8\x3f\x40\x0b\x18\x65\xf1\x26\x58\xd5\x5e\xbd\xbb\x42\xd9\x57\xfc\x3d\xda\xff\xf9\xde\x03\x3e\xb9\xeb\x7f\x89\xcf\x52\xfd\x30\x68\x38\xe4\xf0\x6e\x05\x1e\x00\x7d\xaf\x45\xfc\x96\xea\xdf\xd6\x58\xaf\x92\x61\x77\x03\x49\xb4\xbb\x3e\xce\xef\x56\x34\x77\x9b\x04\xec\xb9\x82\x45\x05\x6a\x10\xd9\xa6\xfd\xdf\xe2\x03\xee\x06\xbb\xbb\x57\x6b\xdb\xb3\xe7\xd8\xec\xbb\x6d\xe3\xdc\xa6\xd0\x4d\x22\xaa\x48\x75\xe7\xdd\x42\x62\x79\xfb\x77\xb2\xc8\x64\x39\xdc\x18\x93\x45\xc6\xee\xbd\x8d\xc9\x6a\x8f\xd5\xdd\x83\xe5\xd2\xcf\x57\xb8\xf3\xfc\x7c\xc8\x78\x29\xba\xbb\x77\xe6\xcf\x0f\x84\x75\xec\x0a\x42\x6f\xb9\x1c\x12\xce\x1b\x86\x1b\x4f\x43\xb5\xde\xb0\x75\x98\xa9\xed\xde\xe6\xeb\xf8\x2c\xe0\xa0\x76\xfb\x94\xe1\x80\xb4\x84\x1c\xc1\xea\xeb\xf7\x07\xdc\x3a\x7a\x1e\xb6\x0d\x07\xcc\xdf\xb3\x52\xbf\x9e\x9f\x30\x8b\xca\x3c\xbf\xa1\x93\x75\x6a\xe3\x3d\xf1\xa1\xc9\x32\xba\x57\xa2\xfd\x5a\x60\x2b\xea\x53\x7b\xb8\x6d\xf4\x2d\xd0\xbd\x82\x96\xc6\x65\xd8\xcf\x65\x1d\xdf\x67\x21\xb5\x52\xef\x63\x8c\x56\x9d\xd7\xee\x2b\xbe\xa7\x05\x8c\xad\xe8\x44\xc2\x7b\xdb\x8a\xd5\xc8\xee\xf7\xc5\x02\xb7\x00\x21\xb1\xc4\xb9\xa7\x37\xa6\xe0\x47\x60\x84\x29\x58\x2d\xe1\x48\x16\xfd\xec\xb8\x70\xb1\x55\x6f\x59\x42\x5c\x3f\x5b\x1a\x17\xdb\xfa\x7e\x02\x9a\xe2\xe2\x4f\xbc\xbc\xa0\x21\x86\xed\xa2\x7c\xca\x0c\xa1\x87\x8c\xd4\x94\xf5\xfd\x61\x1b\x16\x9f\x4d\xf9\xdb\x8a\xde\x32\x87\xbb\x3c\x53\x0e\xdc\xbf\x68\x90\xac\xaf\x3b\x7c\x5e\x86\x3b\xbc\xb7\xf9\x96\x7d\x35\x70\xdf\xd1\x67\x4d\x02\x99\x26\xe2\x49\x9e\x37\xd8\x7b\xeb\xb3\xea\x82\xe3\x3e\xb9\xfc\xf0\x82\x06\xf1\x0e\x06\x49\xb5\x80\xa0\x56\x27\xd4\xde\x0f\x5d\x1e\xfe\x9f\x48\x2a\xcf\xea\x13\xb3\x22\xdb\xe5\x7e\x22\xab\x40\x7d\x24\x2c\xe9\x23\xd7\xc9\x54\x31\x74\xd1\x0d\xa5\x97\xf3\x48\x6e\xe2\x58\x7d\x93\x77\xbf\x18\xa4\x0e\x47\xbf\xa1\x9d\xf7\x1d\xef\xfd\xf6\x78\x40\x63\x00\x72\xc2\x67\x08\x48\x55\x69\x5e\x78\x2f\x2d\xb2\xf1\xf4\xc6\x98\x4d\x37\x81\x9d\xaf\x41\x7f\x8e\x38\x08\x2f\x95\xf9\x80\x2a\x7c\xc2\xf3\xa2\x16\x3d\x47\x2c\x44\x59\x53\x0f\xd6\x93\x09\x3b\x9e\x03\x64\x6d\x19\xe1\x0f\x97\x5c\x8e\x06\x7f\x52\x0c\xba\xcb\xd1\x20\x3f\x8f\x23\x4b\x93\xf0\x24\xd6\xad\xe6\xe0\xc1\x13\xd2\xa5\x6b\x1e\x72\x33\x1d\xa2\xf3\x60\x8b\x38\xef\xfb\xc9\xa8\x02\xad\xba\x07\x72\xd5\xe5\x58\xb2\x27\x33\x69\xc3\x2f\xdc\xf1\x80\x7f\x60\x59\xc9\x3c\x7c\x20\xa6\x30\x81\xed\x83\x35\xb2\x5a\xfa\x27\x94\xb4\x87\xcc\x96\xaa\x7d\xf3\x10\x42\xe4\x53\xe3\x03\xf1\xaa\x27\xec\x21\xb3\xc5\x2b\xe0\x29\xec\x12\x2d\xea\xa7\x30\x7e\x52\x16\xcf\xb6\x1d\x86\x97\xd4\x03\x07\xfc\xb2\x2b\xe5\x21\x6e\xb6\x17\x97\xe3\x1a\x53\xdd\x05\x0d\xb8\x4a\x16\x3f\xe1\x5a\x99\xfe\x9f\x06\x2c\x7f\xe0\x62\xc2\xd5\x60\x38\xe6\x9d\x93\xf1\x00\x3b\xe4\x38\x84\x87\xd4\x4d\x8b\xba\x67\x6b\xbf\x65\x14\xec\xa7\x83\x07\xa6\x25\xfe\xf4\x78\x5e\x1d\x46\x99\xd9\x78\x7b\x48\x02\x71\x0e\xf6\x03\x52\xdf\x6a\xcd\x3f\x30\x5f\xb2\xb6\x1f\x52\x37\xab\xd4\xf5\x43\x0e\xc8\x32\x37\xd5\x03\x52\x9f\xe9\xb2\x9e\x11\x43\x28\xf3\xe2\x19\xac\x61\xaf\x79\x92\x3d\xd7\xf7\x0d\x64\xa5\x14\xf6\x33\x48\x18\xc8\x7e\x21\x16\xa1\x57\x25\xc9\x9d\x9f\x5d\x35\x5e\xc8\xed\xd4\xc6\x19\x6b\x4c\xa2\xe5\x89\x2c\x11\x37\x01\x07\x91\xfd\xd3\x0f\x91\xbc\xcb\x64\x4f\x0f\x9c\xee\x4e\x80\x7a\x22\xe4\xc7\x09\xaa\xcf\x5c\xb4\x51\x6d\xc6\xa5\x34\xbd\x11\x27\x4c\x1e\xc5\xe5\x5f\x54\xa0\x89\x21\x26\xc8\xe2\xf6\x99\x31\x11\x96\x25\x33\x26\x42\x4d\x5a\x07\x3e\x27\xbd\x00\xd6\x90\x9d\x76\xcf\x0a\x2d\xab\x79\x59\xb1\x52\xfc\x7c\xf8\xb0\xd4\xa2\x15\xa3\xec\xfa\x63\x94\xbd\x73\x17\x81\xab\x87\x3f\x10\x5b\xdd\xc2\x63\x11\x8e\xa7\x83\xc7\x73\x46\x8b\x5c\x26\x8a\xa9\xba\x1c\x91\xa2\x6a\xe1\x49\x0b\x74\x30\x78\xb8\xfb\x13\x0b\xfc\x7c\x82\x9a\xd4\xd3\x0c\x16\x91\x2f\x9b\x1f\xa8\x1c\x3e\x73\x72\x11\x76\x25\xc3\xee\xc1\x81\x53\x3d\x42\x24\x7b\x4e\xb7\x97\x00\x1b\x47\x90\x3f\x3f\x0e\xdf\x3a\x3b\x3f\x01\x3d\xe4\xbd\xf7\x7b\xfe\xf7\x7f\xdd\x76\xf5\x13\xfc\xeb\x9e\x31\x12\x55\x96\x49\x1b\x9f\x9b\xc3\xb8\xb7\xca\xcd\x69\xdf\x3b\x03\x02\xaa\xcf\xe6\x7e\x78\x5e\x46\xc3\x13\xde\x06\xe9\xf4\xe7\xc5\xe9\xe6\x8d\x13\x91\x24\xae\x6f\xeb\xbb\xe5\x9b\xc2\x07\x40\x85\xcf\x80\x86\xb7\x41\x1a\xf5\xd9\xfa\x6e\x39\xaf\xe5\x89\x38\x12\x1f\x85\x9e\xf7\xe1\x01\x97\xdf\x78\xe0\xbf\x16\xbc\x07\x31\xa3\x32\x8d\x5f\x52\x37\x57\x97\x80\x7e\x0f\x9c\x46\x9a\xa3\x37\xe2\x42\x4c\xc6\xf4\x92\x1c\x22\xe2\xfe\xf9\x1e\x33\x1e\xa8\xfa\x01\x3c\xd6\xe5\x1a\xa3\x53\x6a\x42\x62\x50\xb4\xb1\xde\x14\xb3\xa0\x5e\xbd\xe8\xd0\x55\xff\x29\xb9\xf3\x25\x2e\xb7\x66\xbf\x7c\xe1\xd4\x53\xfb\x13\x43\x26\x05\xfc\x12\xf2\x61\xe4\x97\x17\x6c\x03\x07\x06\xbf\x00\xf7\xd9\x83\xf5\x82\x75\x60\xdb\xff\xdd\x0a\x77\x1a\x4f\xeb\xcd\x11\x71\xa1\xff\xc9\x1c\x29\x52\xe8\xef\x3e\x6c\x4f\xbb\xb6\x5f\xe0\x0c\x1c\x5c\xf9\x12\xe1\xe1\x5c\x9c\x17\x24\x23\x83\x76\xbe\x95\x08\x7f\x49\x89\x37\x14\x9e\xb3\xb6\xdf\x4a\x5c\x9f\x84\xef\x5b\xc9\xbd\x95\x6c\x7d\x6b\x74\xc8\xff\x73\x58\x70\x07\x2b\xc9\x54\x52\x60\x2f\x21\x25\xbe\x4b\x79\x1b\x6b\x5c\x52\xe6\xfd\x03\x26\x52\x83\x3a\xb2\xdb\xe9\x62\x2f\xfc\x8e\x4e\x27\x7b\xc1\xcd\x2b\x92\xed\x2f\xe7\xc1\x65\x5a\xce\xb7\xc7\x2e\xd2\x94\xc5\x81\xd0\x88\xbe\x2f\x3a\xd3\x31\x0b\x2f\xe8\xf4\x66\x90\x7c\xc9\xbc\x74\x80\xd6\xdb\xc9\x15\x2d\x6e\xe2\x19\x15\xfa\x87\x6b\x0b\x06\xaf\x61\xe0\x71\xfb\xe7\x83\xf7\xfe\xdf\x9b\x60\x2b\xdd\xec\xac\xef\x77\xeb\xdc\x62\x28\xbc\x77\x84\xf1\xaf\x06\x81\xbd\x67\xea\xc1\x77\x1f\x18\xfb\x67\x0e\xc6\xa4\xec\xff\x39\x00\x76\x97\x7f\xfb\x7f\xd9\x60\xef\xe0\x3a\x58\x82\xfc\x1d\x08\x36\xe9\xa2\x77\x90\xdc\xe3\x45\x36\xff\xe6\xc4\x3f\x90\xa2\xa0\x13\xe9\xbb\x4f\xa8\xbd\xc8\x0c\x7b\x39\xa1\x3a\x82\xed\xdd\xfa\x35\x9b\xcc\xf1\x9d\x74\xc0\x03\x80\x7a\x75\x3e\xf1\x0b\x9e\xfe\x67\x57\x05\xb4\xae\x07\x70\x32\xe0\x32\x0b\xdf\xd0\xae\x4e\xce\x7d\x41\xe6\xfb\x8c\xf0\xe2\xc6\xcc\x23\xb0\x72\xbc\xa0\x16\x46\x48\xae\x5b\xb0\xb5\x65\xb3\xdd\xf6\x2e\x72\x0c\xbd\x6f\xa1\x1a\x9f\xd3\xff\xb3\x86\xaa\x3f\xc0\x94\x2c\x97\x89\x51\xf6\x90\x6f\xed\xdb\x7d\x7f\xf2\xc2\x56\xb9\x3e\x0d\x0c\x24\x59\xed\x82\x50\xbe\x3e\x44\xbf\x30\x3d\xd9\x97\xfe\x72\xc5\xe4\xac\xca\x77\x1f\xd2\xb3\x8f\x77\xef\x19\x09\x5e\xea\x40\x84\xdc\xda\x5e\x78\xcf\x58\xd5\xde\xf9\x64\x0f\x39\x14\xe8\x8d\x50\x9c\x6f\x15\x38\xbb\x8b\x5f\x78\xb8\xd2\xf1\x0b\x2f\x65\x35\x11\xaa\x70\xdf\x53\xbf\x57\x22\x6f\x5e\xef\x13\xb3\x6b\x75\xf4\x02\xe0\xef\xe0\xd0\x97\x73\xbf\x41\x51\x5f\x20\xf5\x6d\xb0\xbc\xdc\xe8\xd8\xf1\xf3\xc2\xe3\xed\x0c\xb0\xf7\x87\x27\xc9\x8b\x22\x62\x78\xed\xab\x7a\x23\x52\xc6\x1f\x20\x52\xe6\xb0\xa8\x89\x1b\x1b\x13\xda\xbc\x01\x38\xe1\x16\x90\x5d\xb4\x05\xc3\xbf\xa8\x1a\xc2\x5e\x3e\x62\x28\xf0\xf8\xed\x28\x7f\xef\x03\xc8\x4d\x97\x13\xcc\x24\x5a\x13\x77\x2c\x62\xcb\x09\xb0\x0e\x9d\x1b\xf0\x72\x85\xe3\x18\xed\x17\x9a\x25\x47\x89\xbf\xf0\x86\x3b\x29\xe5\xbd\x59\xa4\x56\x46\x77\x2c\x89\x4f\x85\xc4\x99\x78\x46\x08\x94\x31\xa5\xc0\x7b\xdf\xff\xfb\xbf\x62\xfa\xc9\xf7\x06\xd3\xf3\xf3\xfc\xee\xa2\xd1\x25\xdf\x87\xe3\xa9\x0c\x98\x37\xc2\x7f\x1d\x41\xf7\xc2\xa2\xe4\x7c\xb2\xf7\x89\x1e\x68\xcc\x00\x23\xb6\xeb\xea\x7d\x62\x55\x7f\x5e\x98\x3c\xe0\x2f\x2e\xca\x6a\x31\x4e\x8a\xfa\xa9\x00\xe7\xbb\x87\x34\xc2\x85\x3f\x8b\xfa\x89\x60\x09\x8d\xe1\xf3\x50\xa1\x5b\x1c\xb3\xe8\x1a\xdf\x00\xa9\xd2\x18\xbc\x31\x49\xfa\x02\x09\x56\xd3\x93\xf2\x42\x75\x65\xe1\x0e\x4f\xd3\x61\xd9\xf7\x22\x1b\x3f\xe5\x1b\xef\xee\x5f\x0f\xd7\x01\x28\x96\xa0\x14\xd6\x41\xec\x4a\xfb\xcf\xa2\x59\xc7\x01\x5d\xe6\x7f\xb2\x75\x1d\x07\x6e\x96\xcf\xff\x0c\xf9\x7f\x82\x63\x1d\x47\x0c\xf9\x52\xb9\xc3\x25\xec\x32\xda\xb1\xfa\x7d\xb0\x0b\xff\x5b\x03\xeb\x80\x90\x40\x91\xf7\xeb\x88\x0b\x24\x45\x51\xae\xe3\xb8\x79\xc0\x2f\x04\xb8\x62\xf7\x17\xf0\x3f\xfa\x8b\xe9\x20\x5c\x4b\x35\xc2\x48\xa0\x10\xef\x75\x90\x2e\x2c\xb7\xce\x3a\xc2\x22\x1c\x9f\x1f\x38\xd4\x2f\x0d\xc1\x36\xfa\x96\x10\xae\xd6\x01\xa2\xa5\xa2\xa1\xd7\x41\x40\x8b\xe8\xf4\xd7\x11\x91\xc3\x02\xd4\x58\x07\x91\xc3\x4a\x58\x5e\x07\x00\xd1\x7d\xb8\x45\x01\xba\xe5\x72\x8c\xc1\xf0\x17\x6f\x26\xc5\x15\x3c\x6c\x14\x97\x83\x81\x4d\x63\x94\x11\x0d\x4b\x2d\xca\x31\x04\x5d\x65\x80\xcf\xdc\x40\x72\xbb\x04\x8f\xb4\x8e\x1c\x3d\xd4\xf7\x73\xcc\x81\xeb\x23\xc2\xed\x70\xf9\xdd\xff\xbb\x3d\x91\xe0\x9c\xd5\xa1\x12\xfb\x6e\x6a\xc8\xc0\xe4\x14\x72\xda\x3a\xb6\x9d\x9a\x85\xc4\xb3\x8e\xc2\xa5\x96\x1b\x58\x42\xbf\x4d\xad\x8a\x12\x00\x96\xaa\xb0\xa6\x3d\x07\x5e\x25\x15\x9c\x05\x0f\x69\x18\xb2\xc3\xab\xa2\xb2\x8e\xfd\x05\x80\xbc\x74\xbd\xbf\x8e\x0a\x4c\xcd\xd4\x90\xd4\x98\x93\xe5\x1f\x70\x95\x1c\xea\xc2\xb6\x64\x87\xa4\xe5\x3a\x48\x16\x6b\xae\xa0\x91\x15\x3e\xd4\x42\x52\xc1\x6a\x55\x03\x00\xfd\x54\x02\xf2\x3a\xc8\x04\x53\xd4\xe1\x3a\x5a\x68\x17\x7f\x00\x66\x89\xe4\x45\xd2\x90\x65\xc3\x15\xb0\xb3\xc6\xbf\x78\xd2\xd6\x41\x60\x75\x9f\x6e\x5d\xc4\x34\x1e\x6e\x1e\x89\x66\x9e\xe2\xb8\xa8\x99\xde\x15\x9d\x68\xe9\xa1\xe6\x05\xe0\x89\xce\xd3\xeb\x00\xf1\x44\x11\xfa\xeb\x80\x35\x4a\xb9\x1c\xeb\xe0\xa6\x66\x09\x88\x7d\x1d\xdb\x32\xaf\xa9\xb8\xc6\xe8\xa0\xa6\xe8\x2f\x57\xcd\x15\x60\xb7\x5a\x10\x00\x60\x52\xfd\xfc\x08\xe8\x22\xb5\x38\x5c\x51\xb2\xa2\xd6\x31\x58\x13\x53\x7d\xe4\x66\x46\x40\x42\xeb\xe0\x66\x66\x89\x54\x67\x1d\x44\x80\x7f\xf6\x59\xc0\x8e\x79\x8e\x03\xb8\x74\x7a\x55\x0d\xae\xcf\xdd\xe7\xf0\x5d\xe9\x40\xb6\x0e\x92\xd3\x74\x79\xb3\x0e\xa8\xa6\x14\x21\xbf\x8e\xf1\xc4\x0b\x1a\xc5\x11\x86\x9d\x5e\x98\xc1\x15\xaf\x4e\xce\x44\xcc\x83\x9e\x9f\xcc\xc2\xf4\xff\xe8\x1b\x4f\xfc\x8c\xb0\x14\x7d\x70\xdb\xe2\x2b\x7b\x1d\x4c\x26\x61\xfa\x7b\xd1\x45\xcb\xa6\xbf\x28\x77\x97\x59\x86\xde\xfa\x13\x3c\x0f\x6f\xc4\x6d\x8b\xaf\xec\x65\xb2\xc8\xb3\xff\xfc\x9f\xe3\x03\x6a\xe1\x62\xe3\x34\xf5\x20\xc2\xe2\xa7\x55\xd6\x36\xc6\xbb\xbc\xd6\xeb\x58\x31\x6d\x59\x83\x8c\x35\xbe\x3e\x0f\xcc\x78\xc0\x3f\x10\x82\xe8\xc5\xbe\xce\x78\x40\x4b\x11\xa4\xee\x65\x25\x85\x3d\xbe\xa6\x75\x00\xcc\xab\x1f\x89\x79\x26\x6a\x54\xa3\x4f\x62\x10\x2d\xf0\xb0\xc7\x45\x37\xbf\x8e\x13\xc7\xad\xa7\x39\x80\xb8\xad\xc4\xce\x58\x38\xde\x1c\x27\x51\x9b\x96\x67\x67\x6c\xe0\xe2\x16\x20\x31\x3f\x0f\x04\x2e\x87\xfe\xbf\x08\x6a\xf5\xfe\xc5\xfc\x4e\x5e\x28\x57\xcc\x43\xd5\xa0\x70\x4f\xf7\x11\x68\x17\x81\xab\xd6\x6a\x57\x83\x1d\xd7\x15\x12\xd5\xeb\xed\x78\x8d\xa8\x50\x2d\x22\x54\xfe\x23\x20\x20\xd5\xea\x9e\xa6\xeb\xe4\x7f\x4d\xe3\x75\x71\x93\xef\x0a\x09\x5b\xf6\x5e\x21\xd2\xbd\x78\x7b\x43\xdf\xf1\x59\xba\xd8\xef\x9f\xed\x1e\xf6\xfb\x74\x8b\x7f\xac\x13\xef\x0d\x38\xb4\x92\x87\x6c\x9b\xe8\xb9\x7e\xfe\x27\x12\x76\xe8\x7f\x2c\xf4\xcf\x5e\xbb\x23\xf4\x5e\xcf\x87\x85\x2e\xd8\x8e\x75\xdc\x0c\xa9\xf7\xca\x1d\x0d\x70\x85\x2c\x3b\xeb\x84\x88\x44\xb7\x56\xfc\x4b\xa8\x53\x0f\xef\x90\x16\xb6\xae\x70\x29\x7e\x2a\x80\x41\x6b\x4d\x6b\xfa\x67\x1f\x22\x8a\xf5\x26\xb1\xea\xcb\x5a\xec\x61\x12\x2d\x12\x1f\xd4\xe6\xe7\x7d\x60\xa9\xda\xbf\x29\x9d\x27\xba\xa3\xd6\x85\x35\x3d\xbd\xad\x02\x9d\xce\x4b\xec\xf9\xeb\x8f\x06\xe4\x61\xc4\x97\x3e\xcf\x25\x60\xf6\x0c\xbe\xb8\xa7\x9a\x06\x14\x6b\xb9\x5a\x1e\xe3\xd2\x14\x98\xf9\x3a\x5e\x96\x90\xa5\x69\x78\x34\xa7\xd6\x48\x02\xbc\xa6\x69\xc4\x53\x64\xbe\x09\x8e\x60\xa5\x08\xdf\xd6\xc6\x4e\x30\x76\x2d\x65\x7e\xae\x04\x9e\xba\x9b\x9c\x70\x60\xca\xa9\xba\xd2\x36\x4f\xe7\xf4\xff\x61\x9e\x0a\x60\x67\xa5\xc8\x6c\x73\x13\x22\xb3\x4d\x09\x15\x2b\x11\x31\x65\x63\x2b\x01\xfa\x2a\xb4\xe8\x95\x52\x74\x52\xcf\x67\xe6\xd8\x1f\x20\xc0\x69\xc9\xd2\x49\x79\xc0\x24\xe1\x32\x3e\x3c\x49\x96\x84\x35\xb8\x14\xaf\xbf\x52\x8e\x59\xd1\x03\xe5\x40\xa9\xa9\x82\x82\x30\x94\x25\x93\x0a\x8a\xf9\xbf\x33\xce\x4a\xa5\x44\x85\x6a\x51\x89\x2e\xbb\xc2\x16\x0f\xa8\x0b\x01\x0d\xb0\x5c\x03\xc4\xd8\x87\xa6\x0d\xa8\x00\x2f\xe3\x04\xc1\xc8\x21\xad\x96\x60\xf9\x12\x3a\xc2\x4a\x01\x0d\xa0\x20\xf4\x95\x88\x91\xf6\xc2\x48\x15\x70\x62\xc9\xa2\x14\x17\x79\x6e\x50\x8d\x20\x0b\x97\xf1\xf9\x49\x78\xa6\x0a\x2e\x98\x64\x55\x22\xa6\x5a\x4e\xc6\x95\x02\x49\x40\x51\xee\x2b\x41\x03\x9a\xdd\x00\xac\x3f\x85\x8f\xae\x04\x42\x9d\x5c\xef\x2b\x11\x68\x23\x3f\xf8\x4a\xdb\x7e\x2b\xcd\x1f\xec\x5c\x9d\xea\x5c\x97\xb6\x75\x36\x6a\xf6\xff\x40\xab\x78\xc4\xc0\xa3\xf3\x11\x24\x75\x72\x36\x8a\x9f\xe7\x66\x51\x5a\x3a\xf5\x2d\x2b\xab\xdb\x1b\x61\x34\x0a\xe3\x58\x29\xf0\xe7\xbc\xea\xb8\x7a\x5c\xca\xdb\x5f\x69\x9b\x6f\xa5\x0f\x97\xb9\xf1\x92\x9a\x4f\x71\xf5\xa8\x43\x46\x1a\x04\xae\xb9\x87\x23\x7a\xa4\x11\x08\x73\x4f\xd1\x9c\x2b\xc5\xcd\xa3\xe7\x18\x8a\x30\xe5\xd1\xac\xb4\xcd\xbd\x3c\xaa\xff\x1f\xe0\x76\xa9\x07\x83\x4c\x0b\x1d\x6d\xd3\x60\x08\x3c\x65\xf8\x49\xa7\xb7\x41\x5c\x2b\xca\x34\x4b\x71\xad\x28\x6f\xc3\x4a\x71\xad\x58\xd5\xa3\xb8\x56\x94\xff\x62\x25\x90\x04\x84\x1b\xb2\x12\x8e\xcf\x25\x6f\xc1\x4a\x84\xaa\xcb\x95\xbc\xd2\xe4\x2a\xd4\xb3\x04\xf2\xbc\xf0\x6f\x56\xe2\xd6\x50\xf7\xd3\x2b\x45\x2c\x50\x51\x8b\x56\x98\x29\x6a\xc0\x0a\xd1\xa2\x2e\x6d\xc3\x28\x0f\x8b\x16\xfc\x94\x02\x6b\x5b\x89\x4b\xc2\xe9\x39\x02\x48\x5e\xc0\xf6\x2b\x9d\x9c\xb2\xbc\x6d\x08\x3c\x4f\xde\xb7\xc4\x89\x57\x8f\x48\xc4\xfe\x78\xc8\x23\xb4\xa7\xfe\x0b\x16\xf4\x4a\x5c\xf8\x15\x4b\xda\x5f\x00\x90\xa8\xb1\xa0\x0b\x2d\x6b\xc7\xf4\xe3\x8e\xd4\x7b\x04\x74\xa1\xf5\x11\x33\xbf\xb8\x8e\x77\x39\x66\xd4\xc2\x1b\x0f\x60\xf2\x2e\x8c\x34\xff\x8f\x1c\xf9\x21\x47\xbc\x68\xb7\x89\x51\x3e\x8b\x96\x4b\xc8\xe6\x01\x81\xa5\xb3\x7d\x9a\x04\xc3\xbf\x65\x33\x5e\xc3\x64\x51\xba\x4d\x92\xdc\xdc\x80\x08\x1c\xfa\xe8\xa7\xf0\x1a\xca\x08\x4b\x84\x71\x57\x0f\xca\xfd\xd7\x25\x2d\x89\x1b\xd0\x27\x59\xa2\x09\x38\xbd\x8f\x86\xbc\x17\xff\xab\x85\x44\x1a\x0d\x8b\xda\x80\xd3\xf3\x2e\x20\x90\x48\xf8\x72\x2b\x71\xcb\x59\xdd\xa3\x27\xbe\xa7\x25\x42\x60\xd1\xa1\xc0\xfb\x95\x00\xaa\x5f\x16\x9d\x6f\xf4\x40\x6b\xf4\xed\xbc\xf0\x79\x20\x6a\x54\x05\x6f\xd4\x98\x34\x48\x5c\x94\xda\x43\x94\x08\xcb\x56\x7c\xc0\xca\xc7\x3e\xb2\x28\x68\x65\x9f\x8e\x78\xbe\xab\x4c\x17\x64\x4a\xe7\x03\xa0\x2e\x99\xde\x19\x95\xaf\x6c\x89\x95\xc1\x85\x5f\x87\xff\xc7\x95\x20\x4b\x3a\x1f\x84\xb4\x0a\xef\x62\x65\x62\xa4\x7d\xb2\xcd\x29\x1a\x50\x55\xc6\x97\x70\xf8\x79\x50\x65\x74\xba\xc8\x89\x5b\x37\x49\xb6\x4c\xdc\x8f\xbc\x94\x2b\xe7\x1a\x19\x3a\xea\x31\x31\xcd\xba\x9f\x58\x99\x7b\x4b\x45\x36\xad\x9c\x19\xd2\xe1\xe7\x1f\x08\xc0\x5c\x8e\x1e\xc8\xd2\xcd\x85\x1e\x68\x1f\x64\x2e\x32\x6d\x4a\x67\x34\xbe\x97\x65\x2e\x7c\x60\xfa\x79\x86\x54\xea\x29\x17\xa6\x4c\x26\x45\x86\xd3\x45\x91\x3d\x2b\x97\x9b\xb2\x86\x9c\x8b\x50\xb9\x61\x57\x2e\x20\x91\x69\x67\xe7\x4a\xa4\x95\xb6\x41\xae\x31\x00\xfa\x7e\xe5\xfb\xda\x15\xb9\xc6\xf7\xfd\x3c\xdf\x93\xe0\xcc\x2d\x32\x78\x5c\xa6\x3e\xd9\x68\xb9\xc5\x22\xf5\x1a\xda\xfa\x7d\x2a\xca\x7c\x65\x52\xe3\x95\x83\xb4\x32\x40\x40\xc5\x1d\x6e\x8c\xb8\xac\xc2\x8c\x3e\x17\xc4\xcb\xca\x9d\x19\x93\xea\xc8\x5b\xf9\x65\x61\x0b\xac\x8c\xeb\xc2\xee\xac\x3c\xf0\x23\x27\x2f\x4a\xc2\x6e\x9a\xd7\x14\x00\x7a\x3e\x44\xe7\xad\xed\x1c\xe9\xb5\xf2\xc4\x1f\x24\xd5\x92\xe7\x9e\x61\x4b\xae\x3c\x6b\x7c\xc0\x2f\xe0\xf0\xf2\x2e\x99\xc4\x8f\xe8\x9c\x9f\x17\xe2\x5a\xba\x24\x2f\xd2\xc8\x04\x4a\xb3\x32\x21\x2d\x0a\x46\x5b\x79\x2b\xab\xa5\xe4\xf4\x95\x57\x00\xe1\x4b\x5c\x67\x70\x73\x8a\xb7\xd5\x8a\x3e\xbb\x8d\x04\xc1\x08\x91\x61\xe5\xad\xde\xf6\x03\xff\x92\x73\xb3\x32\xe9\xf7\xdd\xdb\xfc\x3c\x18\x41\x7d\xfe\x8c\x11\xd1\x14\x9c\x31\x22\x32\x48\xf2\x19\xdc\x51\x1a\xa1\x33\x3a\x24\xb9\x73\xfe\x21\xfb\xfb\x87\x49\x8d\x5a\x24\xe7\xe2\x05\x97\x63\x0e\x35\x84\x5b\xfd\xae\xe6\x01\x01\x00\xd0\xda\x26\x9f\x77\x7c\xc0\x0f\xc4\x9c\xa8\x82\x2b\xf1\x82\x5a\x7c\x05\xbc\x8a\xff\x9f\x51\x81\x1f\xe0\xb4\xe3\x7d\x40\xfa\xfb\xa1\xe4\xcb\x95\x2f\x14\x9e\xd4\x47\xbe\x68\x92\x2c\x96\x8c\xd2\xb6\x1b\x23\xff\x62\x15\xc8\x6c\xcc\x28\xed\xe6\x2f\xfe\x62\x54\x65\xf6\xe5\xad\xb4\xa7\xb0\x27\x57\xfe\xf5\x78\x40\xc3\xfc\x03\x09\xc4\x4d\xfa\x91\xce\x67\xd9\xf5\xa3\x49\xc9\x15\xb0\xf2\xa5\x90\x32\xa8\xef\xca\x68\x58\x79\x6b\xbc\xd5\x3e\x65\x12\x68\x93\xf7\xe6\x4d\x05\xfe\x20\xb0\xef\xcd\x3b\x83\xd8\x5a\x7b\xc0\xf2\xd3\xa8\xd0\xcf\xb3\x2e\x2c\x2c\x9f\x58\x17\x52\x81\xf9\x61\x5d\x78\x2f\x3e\xb1\xd0\x87\x6b\x40\xba\x58\x1c\x3d\x91\x58\xe4\x1a\x1f\x5a\xe4\x16\xd0\x62\xef\x9c\x97\xa5\xed\x75\xf2\xb2\x2e\x64\xc6\x64\x50\x00\x9b\xb7\xc2\x1b\x2d\xb4\xc2\x20\x56\x29\xb9\x0b\x91\xe9\xa4\x6b\xa6\xb2\x55\x6e\x3e\x44\x3f\xb3\x0a\x3a\xb7\x69\xd2\xca\x11\x63\xf0\x5f\x17\x0b\xa1\xb2\x36\x4b\x0a\xb4\x64\x87\xaf\x1c\x0a\x81\x41\xb6\xde\x0b\xb7\x3c\xca\x89\x5c\x25\x61\xd7\x68\xe1\x95\xc4\x5e\x6a\x2e\xb3\x97\xb2\x3f\xc0\x5e\xd2\x3a\x2c\x89\x21\xd2\x56\x28\x19\x34\x10\x09\xe0\x02\x4f\xca\x61\x5b\xb9\x64\x32\xee\x0e\x3f\x10\x2c\xff\xfa\x40\x24\x0e\x29\xac\x62\x15\xe0\x60\xec\xdf\x2a\xc0\xc1\x74\x49\xab\x82\x12\xd6\xf5\xea\x2a\xc4\xda\x4e\xb7\xb0\x44\x86\xa2\xea\x2b\x01\x40\xaa\x0f\xee\x43\xf5\xd2\x05\xfe\x2a\x25\x1a\x90\xfc\x43\x88\x1b\x97\x43\x3a\xf8\x03\x6f\x64\x8a\xab\x85\x95\x65\xa2\xad\x58\x40\xe8\x53\x2e\xfb\x2a\xe4\xe2\x1c\xa2\x1a\x59\xa5\xb2\x13\xe4\x4c\x2e\x84\x17\x55\x37\x19\x9c\x5a\x45\x9b\xae\x52\x51\x4a\x9e\xe4\x7d\xec\xce\x87\x02\xb4\x56\xa9\x91\x81\xa7\x16\x11\x6f\xa4\x60\xd3\x55\x5a\x24\xc0\xb9\x7c\xf1\xbc\x1a\xd4\xe3\x79\x8d\x69\x67\xd5\xb8\xcb\x9d\x55\x52\xfd\x3c\xb9\xc4\x6e\x60\xbf\x22\x74\x45\x0d\x00\x3f\x4f\xe9\x26\xab\x0c\x86\x48\x1e\xbb\x02\x9a\xdd\x31\xff\x25\xfb\x66\x95\xc1\x26\xd0\x71\xb0\x70\xdd\x60\xaf\x74\x19\xac\x08\x19\x0d\x65\x12\x52\x21\x8d\x59\x08\xdc\x39\x7c\xb1\x58\x80\x43\xb7\x34\x2e\xdc\x06\x28\x6b\x76\x95\x70\xf6\x7b\x02\x89\x4a\xfd\x0c\x67\x60\xd8\x7a\x93\x85\x0a\x56\x90\xc5\x2a\x60\xd8\xfa\x7c\x52\xe0\x31\xe9\x52\x71\x05\x1d\x79\x78\x3c\x43\x05\x4a\xfc\x97\x93\x06\x25\x97\x51\x38\x0a\xa1\x5f\xe5\x4f\x05\xfa\x03\x6c\x5b\x0b\x96\x33\x26\xc4\x63\x72\x86\xe4\xd1\x04\x85\x0e\xcc\x3a\xc6\x97\x33\xb2\xb7\xd5\x85\x33\x12\xce\xa4\x35\x0b\xd9\xd1\x0a\xd5\x5d\xe5\x62\x5f\x35\x97\x6b\xbc\xa0\x4f\x5c\x2c\xa2\xe1\x72\x0c\x8a\xbe\x08\x4c\x6e\xf3\xac\x84\x8a\xb3\x6c\xfb\x31\x08\x32\x76\x0b\x99\xc1\x9f\x5d\x04\x8a\xed\x51\x3c\x08\xbf\x58\x95\x1a\xa4\xdf\x15\x0f\xe8\x8b\xa1\xe2\xba\x1f\x40\x85\xe9\x44\x53\xc8\x16\x6e\x16\x66\xc0\xde\x76\xb7\x80\x43\xa2\xaf\xc4\xcb\x1d\x3d\x52\x8b\x6e\x16\xe2\xf0\xff\xc4\x02\xc9\xfc\x2e\x0f\xe2\xbe\x78\xdf\x3e\x00\x10\x7a\xa1\x3d\x48\x6f\x9d\x80\x0a\xa8\xb8\x47\x29\xae\x21\x56\xae\xc6\x14\x15\x38\xdc\x65\x4e\x89\x82\xc1\x59\x25\x4e\x89\xf6\x0e\x94\x37\x06\xd5\x0f\xcc\x78\x40\x63\xc0\x29\xd1\x71\x06\xf5\x08\xad\xdd\x55\x0e\xe3\xea\xbf\x16\xd4\x14\x5e\xd0\xaa\x72\x8a\x44\xc5\xa5\x1f\xe8\x93\x5c\x7a\x35\xc5\x34\x0f\x95\xe9\xd2\x74\x85\x11\xdf\xab\x06\x84\x86\x92\xf3\xa1\x26\x26\x4d\x2a\xb3\x66\xd6\xa5\x9c\x37\x35\xc7\xa4\x34\x95\x83\x89\xfb\xbf\x0e\xd6\x42\x7b\x24\xfb\x2a\xfa\x41\xf4\x65\xab\x96\x58\xc7\x1e\x81\x82\x05\xaf\x55\x53\xe3\x90\xa6\x9d\x53\x4b\xac\xc3\x4f\x8d\x61\x8f\xba\xc6\x50\x20\x7e\x81\x85\xaf\x53\x56\x25\xfa\xd4\x9e\xe8\x0a\x51\x48\x93\x34\xaf\x95\x75\xac\x5c\xbb\x55\xc9\x9f\x50\x3e\xc5\xaa\xe0\xb1\x1e\x1e\xc2\xf6\x87\xe6\xe4\x1f\x18\x63\x29\x90\xda\xe3\x9c\xaa\x31\x25\xc1\x42\x58\x14\xab\xf6\x1a\x50\x37\xfe\x81\x75\x35\x5d\x01\x68\xcb\x92\x37\xb5\xa3\x91\xec\x72\xab\x3d\x66\x49\x63\x10\xa8\x63\xda\x5a\x15\xb7\xe6\x51\x65\x3b\xd5\x40\x32\xaf\x2e\x73\x09\xed\x65\x30\x58\xa8\x8e\x2c\xa8\x23\xd6\x85\x9a\x10\x77\xcc\xee\x13\xb8\x65\xbe\x60\xa8\x23\x70\xc9\xfe\x25\x4c\x6d\x55\xd0\x53\x1d\x95\x50\x27\x68\x50\xae\x9c\xfb\x61\xdb\xb2\x75\x6b\x8c\x6e\xd7\x44\x25\x56\xd3\x71\x06\x75\x9f\xfa\x8a\xcf\xa1\x35\x42\x33\x95\x54\xb5\xe7\x82\xa8\x35\x8d\x5f\x5c\x07\xbb\xf5\xab\x52\xa1\x3e\xc8\x6d\xf0\x3c\xfc\x3e\x1b\x5d\x61\xf5\xab\x6e\x9d\xd4\xad\xf2\xeb\x8a\xf1\xf3\x80\x02\xa7\xaa\x54\x88\x55\x09\xb6\xb4\x52\xac\xc4\x5a\x8a\x0c\x6c\xd5\xf5\xe2\x93\xd3\xff\xfb\xdc\x97\x15\x87\xbf\xea\x99\x08\x67\xd5\xa2\x04\x44\x4d\x39\xb2\xab\x9e\x04\x93\x7e\xfe\x07\x6f\xe6\x53\x1e\x20\x7a\x69\x88\x00\x51\x73\x0c\x41\x3d\x41\xb8\x3e\xfc\x3c\x43\xfe\xf9\x9f\x21\x4f\xfe\xde\x8f\xb2\x06\x60\x6b\xbc\xee\x10\x83\xba\x15\x5e\x5e\xfe\x3f\x6e\x86\xfd\xfe\x95\xf7\xf3\x3a\x45\xd6\x2b\x02\x3b\xf4\xbd\x8b\x19\xd1\xa9\xba\x02\xf6\x91\x2c\x08\xf7\x91\xaf\x0a\xa3\x78\xd5\x2b\x32\xba\x35\xc3\x5b\xfd\x75\x87\x4f\x55\xc8\x3e\x15\x0f\xbd\x2a\x81\x9c\x22\x2b\x58\x15\x3f\xae\xcf\x9c\x75\xab\xcb\xdc\xbd\xa4\x7e\xb4\xa7\xf8\xf9\xc6\x92\x53\x7f\x39\x10\x2a\x08\x7f\xd5\xdf\x88\x05\xe1\x0f\xbe\xf1\x83\x5a\xb8\xd5\x5b\x77\xec\x4e\xbd\x17\x65\x8d\xd0\x7d\xc6\x0b\x7e\x80\x29\x90\xb2\xa9\xf7\x8f\xbb\x0e\x7d\x92\x6c\x4c\xbb\xa6\xeb\x56\x7f\xb5\x7a\x0a\x1e\x86\xdc\x4b\x74\xab\xbf\x32\x3d\x24\xcf\xdf\x22\xd7\x07\x1e\x5a\xf4\x29\xb3\x26\xdc\xa0\x87\x06\x35\x7f\x00\xaf\xed\xf0\xff\x37\x98\x45\xea\xd1\x0b\x6e\x9e\x77\x1d\x10\x60\x8a\x29\x5f\x15\x18\xd4\xec\x35\x00\xa4\x97\x4f\x02\xf5\x65\xd3\xb9\x83\x40\x7a\x75\xaf\xd9\x97\xf6\x5a\x37\xbd\xe7\xff\xfe\xaf\x1c\xee\xf0\x1b\x92\xde\x0d\x06\xb3\xcb\x26\x4d\x7d\x59\x34\x32\x2c\x1b\x71\x8f\xca\x84\x58\x2d\xe2\x1e\xf5\x81\x76\x30\xa2\xb2\xb1\xda\xd6\xe6\xdd\x37\xcd\x8d\xd4\x95\x22\x43\xb3\x71\xaf\x2b\xa8\x8e\xad\xc4\x20\xf2\x71\xf9\x82\x5b\x74\xa8\x0c\x65\x95\x66\xb8\x81\x92\xe5\x0b\xc4\x96\x58\xc4\x12\x22\x2d\x11\x31\x2e\x8b\xaa\x25\x96\x98\x34\x57\xe3\x52\x57\xd9\x46\xab\x25\x6e\x62\x3e\xef\x33\xa1\x52\xfe\x2d\x85\xde\x91\x6e\x6d\x19\x13\x4b\x21\xe0\xab\xed\x03\x69\x11\x4b\xc9\x6a\x99\x11\x91\x62\x6a\x99\x6d\xa4\x29\x6f\xc0\x64\x09\x20\x67\xb5\x1c\xc4\x3f\xea\x71\x06\x9b\x53\x9b\xa2\xc5\xf9\x55\x49\xcc\xab\x65\xe4\xd6\xca\xff\xa2\x67\x5a\x66\x41\x2c\xbf\x8c\xd0\x72\xff\xc9\x34\xb5\x6f\xac\x65\x84\xc8\xa7\xbb\x2f\xa9\xb0\x7a\x1f\x90\x2d\x47\x91\xb6\x12\x96\x80\xa4\x76\x2b\x48\x09\x77\x77\x1b\x37\x5d\xd8\x2a\xab\x6d\x63\xa6\x24\x0f\xf8\xb6\x65\xba\x50\xc0\x56\x83\x45\xdc\xfe\x84\x56\xa2\xc1\xfe\xe0\x1d\x1f\x54\x85\x15\x20\x0e\xa9\xed\x06\x50\x85\x63\x17\xda\x3e\x1c\x77\xc1\x16\xae\x56\xff\x5a\xac\x29\x26\x84\xd1\xe6\x56\xab\xa1\xc8\xbc\xc6\xeb\xa2\x06\x35\xb1\x82\x93\x27\xc1\xd8\xfe\xcc\xa7\xee\x1f\x7e\xbc\xa0\x3e\xc4\xad\xb5\x2b\x00\x9b\x62\x78\x90\xb9\xb5\xf6\xa5\x74\x6b\x2d\x2a\xf4\x0b\x21\x08\xbd\x2d\xf7\xf9\xba\x5b\xb7\xb4\xf6\x03\xd0\xd5\x35\x6c\x5d\xb4\x3c\x6d\xfd\x6f\xd5\xea\x93\xdb\x20\xcb\x3e\x89\xb4\x6d\x4e\xe5\xcf\x20\x90\x4c\x73\xf8\x32\xa7\xf5\x97\x79\xd2\xb0\x6f\x7b\x2b\xdb\xc5\xd0\x06\xe8\x8a\x3a\x0a\xb5\x81\x37\x50\x16\x5f\x23\xe0\x4e\xd4\xa1\xfb\x18\xc6\x19\x5a\xff\xcf\x30\x58\x74\x3a\x6b\xfb\x90\xbd\x7c\x25\xd7\x26\xb0\xae\x1e\x93\xd9\xf9\x5f\x3d\x98\xe4\x80\xc9\xe0\x69\x33\xc6\x6c\xfa\x8b\x17\x89\x87\x7e\xe1\x47\x05\x1a\xb3\x19\x2b\x6b\xfa\x87\x87\x07\xb4\x50\x66\x24\x16\xaa\x82\x15\x83\xaa\x93\x46\x0b\x57\xbb\xd7\x72\xb8\xda\x7d\xbb\xd0\x80\xa6\x75\x7c\x6e\xdb\x46\x97\x91\x8a\x57\x5b\xe1\x46\x51\x1f\xc0\x8f\x3f\xbc\x79\xce\x1c\x10\x75\x1a\x24\x18\xcb\x1d\xa1\xdc\x4e\xc2\xde\x3d\x08\x24\x8b\x3a\x22\xa4\xc1\x6f\xea\x88\x90\x76\xc6\x95\x9a\xeb\x3b\xe3\x03\xfe\xe2\x45\x0b\xfd\x02\x83\x66\x61\xb4\x8d\x9e\x25\xaa\x99\xd5\xc8\x36\x19\x96\xb7\x17\xb3\xe4\xdd\x1a\x8e\xec\xff\x67\xec\x5d\x92\xad\x07\x75\x26\xd1\xa9\x9c\x21\x98\x97\x04\x9d\x33\x17\x3f\x6f\xef\x36\x6a\xfe\x8d\x0a\x67\x2e\x67\xee\x8a\xa8\xfa\xe3\xeb\x79\x6d\x6d\x30\x60\x10\x7a\xa6\xcc\x8f\x68\xc8\xb6\x55\x78\xc0\x90\xfd\x87\x5d\x1e\x7c\xa1\xd6\x14\x80\x63\xbe\x31\xc7\x81\x8f\x64\xfe\x03\xa5\xdf\x46\xe2\x01\xa5\xdf\xae\xe4\x71\xd2\x3a\xa7\xf6\x94\x52\xec\xac\x18\xa8\x6e\x5a\x24\xa4\x0c\x5a\x01\x6c\xb1\x1c\x80\x00\x53\x51\xf6\x35\x00\x42\x61\xab\xf1\x38\xe1\x8c\xf7\x15\x72\xbd\xba\x50\xf1\x47\x47\xfe\xaa\x8d\xc8\x03\xae\x63\x07\x24\x0f\x18\x05\xec\xe9\x1d\x00\xfc\x72\xbc\xdd\x80\x90\xb3\x8d\x3f\xff\x80\x25\xf0\x9d\x7a\xc3\x69\xb6\xfc\xbb\xa2\x2e\xa4\x7f\xe3\x85\xba\xf3\x07\x5c\xc3\xe9\x25\x44\x36\x87\x7d\x60\xe3\x06\x54\x4f\xfd\xb7\x0b\xe7\x95\x88\x86\x3d\x76\xe3\x3e\x39\x5a\x2d\x0f\x82\xd3\x36\x9f\xb2\xfb\x46\xed\x6d\x2d\x0f\x52\x3d\x04\xe4\xb3\xc6\xc3\x1b\x5f\xa3\x7d\x45\xa6\x91\xde\x10\x0f\x62\x2d\xdc\x1e\x99\x20\x4e\x84\x18\x28\xd4\xf6\xe7\xc2\x61\x26\x88\x77\x24\x44\xa8\xee\xef\x8f\x4c\x90\x3f\xab\xf5\xab\xc4\xaa\xe5\x7f\x45\xa8\x26\xe0\xac\x35\x9e\xf3\x7d\x9f\x3f\xef\x43\x91\xcf\xbf\x6f\xd0\xb5\xba\x0f\xa4\x60\xbb\x2d\x62\x43\x56\x9d\x64\xb8\x40\xbd\x75\x07\x87\x04\x62\xe7\x1c\x53\x15\x1b\xf5\x1c\xff\x0e\xbc\x60\xe8\x37\x77\xb4\x6e\xc4\x78\x65\xac\x61\xa1\x34\x98\x5b\x32\xfd\x82\x1b\xa5\x83\xdc\xc1\xf3\xfe\xbf\x64\xa8\x40\x25\x39\x1b\x38\x02\x16\x18\x5f\x0d\x51\x2a\xfe\xbf\xea\x77\xe3\x00\xfc\x07\x54\xee\x13\x23\x8d\x32\xf9\x0f\x4d\x7f\x38\xf8\x07\xff\x07\xe4\xe8\xe2\xdf\x88\x0b\xee\x1e\xc2\xcd\x06\x1a\x33\xe0\xc9\xec\x66\x08\x8a\x69\xb6\x99\x47\x45\xf0\x9c\xee\xab\x60\xf4\x9e\x38\x65\x00\xa3\x43\x39\x50\x2b\x5e\x41\xa8\x55\x6d\x83\x60\xf0\x9d\xae\xa3\x68\xd0\xa7\xfd\x55\x1a\xd0\x50\x75\xbf\x45\x43\x39\x45\x71\x8d\x78\xe5\xa0\x6e\xce\x1d\x0d\x62\x9e\x24\xfd\x68\xd4\xe6\x52\xbf\x11\xa3\xea\x09\x35\xac\xc0\xf0\x78\xb8\x02\xe1\x3f\xc0\x15\xaf\xf1\x75\x24\x2c\xb9\xff\x1f\xba\xa9\xc4\x9e\xe8\x58\x00\xdd\x3d\x41\xb9\xc8\xa2\x7d\x74\x00\x2e\x79\x06\x1d\xc0\x30\xba\x9c\xa2\x07\x94\x2d\xd3\xdf\x7d\x67\x51\x3c\x00\xe2\x51\xff\xbc\x00\xd1\xe1\xc3\x23\x22\xeb\x0f\xff\x01\xd9\x2c\x7f\xa6\x00\xc0\xd7\x3f\x1d\x5e\x88\x54\xd3\x27\x1a\xd0\x4d\x74\xb9\xc5\x40\x0c\xa9\xf8\x5a\x0c\x44\x52\x4b\x79\x0a\x16\x05\x12\xe7\x09\xc0\xe4\xab\xa0\xe1\x8a\x41\x56\xe5\x83\x32\x08\xc2\xa7\x5d\x37\xb8\xe6\xfe\x48\x03\x11\x9b\xba\xfd\x82\x62\x96\x0d\xbe\x81\x6c\x0e\xbb\x7a\x02\xb0\x5b\xcd\xbb\x0e\x75\x85\x7c\x1b\x45\x50\x5d\xd2\x90\x90\x44\xed\x34\xb1\x88\x89\xf0\x44\xd3\x51\x36\x7a\x73\x7b\x88\xa6\xba\x2b\x82\x7e\x13\xdb\xb8\x03\x49\xd4\x76\x10\x06\xcd\x66\xba\x4b\x82\x66\x33\xdb\x6f\x23\xb1\x4d\x74\xe1\x07\x60\xb9\xa6\xdf\x88\x2c\x6a\xe7\x3c\x05\xa2\x01\xa3\xf8\xff\x03\x89\x70\x1a\x31\x60\xb9\x1c\xf4\x1a\x08\xa0\xa8\xba\x3d\x83\xd5\x00\xb6\x7f\xc1\x15\x58\x31\xc1\x0a\x7d\xa8\x90\x11\x6d\xc7\x58\x4c\xb2\x42\x49\xa1\x01\x33\x9b\xbd\x14\xc1\x94\x68\xbb\x76\x82\x88\x23\x7f\x1a\x00\x59\xc6\x6c\x64\x72\x8f\x48\x50\x8e\xc9\x8c\x05\xcd\x67\x32\x33\xdf\xbf\x91\x63\x26\x93\x45\x2c\x58\x61\xcc\x37\x90\x86\xf1\x87\x7b\xa3\x38\x41\x7a\x93\xd2\xee\x26\x20\xc2\x15\xbf\x2c\x0c\x37\x80\x39\x5a\xef\x5b\x0b\x26\x0d\x93\x77\xb6\xf7\x3f\xa0\xde\x86\x4f\xc9\x02\x50\xa0\x27\xb0\x27\x52\xc0\xfc\x1b\xd8\x08\x3e\x85\x3b\x96\x2c\x7c\xec\x80\x8a\x1b\xba\xe0\x83\x19\x11\x3e\xd6\x07\xea\x75\xb8\x03\x94\x06\xd8\x54\x53\x72\xc5\xc1\x1b\x5b\x6f\x3c\x10\xc4\x64\x56\x77\x0c\x36\xd0\x67\x3d\x90\xf8\xee\xfb\xe5\x48\xfe\x83\x5b\x60\x53\x15\xff\x7e\x75\x83\x3f\xb7\x05\xa5\xce\x3f\xbb\x12\x55\xf5\xed\xdf\x0c\xd8\xd2\x6c\x06\x89\xe3\x61\x03\xf5\x70\x42\x2a\x91\xd4\x10\x48\x9a\x50\x0d\xa0\x15\x48\x9a\xd8\x7c\x4c\x98\xf4\x6c\xc6\xc0\xe8\x09\xf3\x32\xe6\x3c\x4b\x10\x0f\xe4\x3c\x6f\x4e\x40\x8d\x13\x4a\xa8\xa5\x06\x60\x9d\x39\xe3\x20\x10\xd1\xf8\x87\xdb\xa2\x1e\xb0\xf5\xe8\x40\x1e\xb4\x8a\x94\xac\x40\xb4\x85\xbd\xdc\xf1\x4a\xa1\x45\x60\xec\x2b\x50\xa4\xc8\x01\x24\x71\x2d\xd4\x86\xd2\x84\x68\x9b\xb3\xb2\x13\x80\x4a\x73\x3a\x51\x5c\x04\x18\xd5\x57\x46\x91\xfe\xe1\x0b\x14\x29\x13\xdb\x1f\x76\x0f\xd8\x59\xe7\x8b\x06\x61\x67\x65\x4f\x8c\x1b\xbc\xcf\x07\x01\x01\x8c\x8e\xc2\x89\x1b\x29\xb2\xbe\xe1\x59\xa0\xd1\x9b\xe2\xa1\x6a\xa2\x19\xbd\x82\x62\x3a\xb2\x2a\xe0\xca\xfa\x73\x50\x20\x28\x3a\x36\x2e\xe8\xc9\x0a\x9f\x0c\x94\x18\xda\xbc\xb1\x1f\x2e\x89\xbf\x01\x90\xd0\xfe\x9c\xc5\x07\xa2\xae\xb9\x3d\x45\x41\xd5\x77\x5d\xc9\x22\x8e\xda\x55\xf9\x8a\x82\xe9\x50\xa7\xdc\x50\x6f\xb6\x99\xce\x93\x21\xee\x9c\x1b\x6a\xe1\x68\x5f\xe7\x46\xdb\x46\xea\x37\x62\x72\x64\x69\xc8\x0d\x18\xeb\x5a\xb3\xdc\xa8\x5b\xf8\xff\xb1\x8b\xaa\x07\xc8\x35\x15\x1d\xa2\x9e\x80\x70\x57\x16\x9c\x4c\x9d\xa3\x7c\xe5\xb8\x66\x0d\x39\x0b\xfa\x77\x74\x7a\x16\x2c\x89\x3b\xa8\x88\x84\xd2\x36\x4b\x54\x43\xb4\x47\x34\xeb\xf5\xfe\xd6\x39\xc9\x86\x5d\x25\xa3\x74\x36\xee\xaa\xe5\x7f\x20\x4e\xa9\x46\x04\xe7\xda\xf2\xff\xbf\xec\x72\xdb\xfe\x49\xb7\x49\x44\x43\x66\x77\x63\xac\x8e\xae\x9b\x04\x0c\x8c\x23\xa0\x92\x22\x55\x6e\xfe\x07\x94\xfd\xec\xfe\x0d\x3e\xe5\xdf\xa3\x02\x62\x44\xab\x33\xb8\x45\xd5\xe1\x60\xdd\x1e\xad\xc6\x58\xf8\xad\xc9\x0d\x62\x3f\x99\x8e\x3a\xeb\xe2\x3a\xf9\x0a\x30\xc5\xa1\x75\x89\x7a\xc3\x9b\x23\xb1\x13\x02\x8c\x30\x4d\x56\x06\x8c\x69\xfe\x5c\xc0\xa0\x17\x78\xd4\x4a\xe4\x9a\xda\xe6\x9f\x01\x03\x86\x6e\xc7\x0c\xf8\x80\xa4\x2a\x64\x02\xe2\xc4\xfb\x0d\xd2\xc3\xa6\xeb\x35\x93\x85\x6e\x74\xa6\x12\xa1\x19\xde\x3f\xc0\x28\x33\xdf\x4e\xe4\x06\x98\x2d\x27\xae\x6b\xcb\x4b\xc9\xeb\x5a\xc8\x05\x2b\x27\xdc\x86\xfe\xff\x9b\x74\xff\x01\xd5\x85\xa5\xcd\x25\x6d\x3c\x8e\x78\xcd\xc5\x6f\xea\x23\x02\x04\x30\x33\xea\x7c\xef\xe3\x56\xa4\xdb\x24\xdc\x58\xcd\x7b\x00\x26\x9b\xf0\x8e\xdd\x39\x43\xf5\x07\x50\xf9\xf0\x0e\xdf\x39\x05\x49\xa5\x89\x14\x45\xab\x6b\xb9\x73\x0e\x7f\x7a\x78\x30\x22\x2d\xc2\x7b\xe1\xa6\xa5\xa2\x64\x2d\x9e\xf4\x57\x46\xba\x40\xc8\xb6\x97\xb0\xb1\xd8\xf3\x94\xb0\xa1\xd8\x53\x95\xb4\xa1\x48\x43\xcd\xf7\x6e\x5a\x4e\x57\x48\x24\xfc\x6d\xf6\x6e\x26\xc3\xf1\x65\x76\x4a\x98\x48\x54\xfa\x60\xe5\x05\xbb\x98\xe4\xb8\x44\x30\xbc\x8d\x83\x79\x01\x1f\xca\x7c\x91\x26\x10\xe7\x24\x27\x4c\x20\x8e\xd4\x48\xd4\x7a\xb1\x92\x9f\x77\xa2\xa0\x92\x5e\xc0\x68\x78\xa7\xdf\xe6\xcd\xf2\xb6\xfe\xfd\xbe\xa1\x7a\xc4\xa8\xc5\xe2\xfb\x3e\x61\x55\xd8\x9c\x1c\x9b\x0f\x44\x51\xef\xf4\x07\xf8\xb8\x9e\xe2\xcb\xeb\x67\xe8\xbe\x9d\x8c\xcc\xb3\x76\x33\x37\x96\x35\x6b\xfa\xcd\x82\xbd\x45\xbf\x61\xff\xac\xfe\x7f\x8e\x40\x87\x79\x02\x94\x3c\x74\xb6\x26\x32\xe6\x1c\xc2\x33\x37\x16\x27\xf7\x08\x90\x75\x1d\xa6\x2f\x76\x98\xfa\x03\x30\xc1\x8a\x3b\x3c\xf8\x0f\x6e\x81\x62\x00\xd5\x0d\xf8\x59\xc4\x7f\x26\x62\x37\xec\x2d\x98\xa5\x60\x1f\x68\xc8\x05\xd1\xd6\xee\x00\x25\xe8\x05\x8b\xbe\x66\x81\x8f\x5e\xd6\xc4\x59\xc8\x2f\xbb\x7e\xbf\xfb\xc2\x88\x10\xf3\x55\xf2\x97\xb0\xe3\xd6\xac\x00\xb6\xf4\x12\x54\xb0\x17\x3b\x6b\x26\x02\xf2\x7d\x1d\x4d\xe4\xe8\x39\xa4\x68\x36\xc6\xb3\xeb\xff\x11\x4f\xaf\x2a\x4f\x6b\x02\x38\xcc\x81\xbe\x13\x05\xe3\x85\x21\xb5\x66\xc3\xe1\xb5\x3f\x6c\x36\xbe\xe0\x9f\xe2\xd2\x26\x2a\xef\xda\x00\x3d\x3b\x8b\x2f\x68\x74\x9d\x09\x10\x1a\x7d\xbf\x31\x3a\xbd\x7d\xa0\x40\xbe\xd8\xff\x44\xd5\x5c\xc3\x45\x4c\x28\xc4\xa9\xeb\x64\xbe\xd7\xc9\x72\x38\xd2\xa4\xdb\xc1\xa7\x62\x32\xac\xcf\xeb\x3b\x10\xfa\xe2\xef\x05\x14\xb1\x98\xfe\x3d\xf0\x5b\xff\x1f\x94\x7a\xc5\x18\x26\x50\xa3\xed\xde\x9b\x2c\x93\xeb\x11\xa2\x3c\x7d\x78\x03\xa0\x10\x5d\x78\x07\x22\xec\xcf\xf8\x0b\x13\x55\x70\xab\xd4\xdb\x99\xd0\x35\xd6\xe6\x7f\xe0\x92\x68\xca\x2c\x4e\xe7\x53\x08\xec\x82\x3f\x4b\x0e\xec\x02\x87\xda\xcc\x64\x4d\x25\xff\xff\x44\xf5\x7a\x6d\x88\x84\x42\xee\x0d\x91\x48\x4c\x5a\xa6\x1f\xc8\x3f\xd4\x8a\x00\x44\xac\x78\x82\x09\xac\x9f\x3f\xfd\xa1\xf6\x7b\xf5\xfb\x61\xe7\xf2\x04\x51\x2c\xaf\xf8\xcc\x02\xe5\x5a\xd5\xa5\xd7\x9c\x00\xf4\x10\xeb\x9e\xbf\x6a\xfb\xea\x6f\x76\x14\x8d\xf1\xff\x43\x7d\xf7\x09\xa3\x46\x6d\xae\x34\x81\xaa\xdd\xfd\x1b\x45\x7b\xbc\x23\xe0\x85\x71\x10\xc1\x84\x17\xc6\xd1\xb8\x73\x1e\xfc\x20\x5a\x40\xde\xc0\x36\x61\x4c\xdc\xc0\x45\x32\xd1\x84\xc2\x6c\x73\xf9\x5c\x28\xeb\xe3\x15\x59\xbf\x4f\xac\x29\x00\x74\x2c\xfd\xc9\x71\x41\xfb\x42\x9e\x6b\xb0\x81\x7b\x80\x93\x5d\x42\xc8\x44\xb4\x65\x33\x97\xc2\x8d\x6e\x4d\x67\x32\xdf\x61\xc9\x12\x36\xa1\x42\xdb\x90\x34\x19\xe9\xe2\x73\xf4\x8a\x00\xc5\x69\x3f\x13\xa8\x05\xdb\x32\x67\xdd\x91\x7f\xad\xdb\x65\x42\x07\xb7\x2a\x34\xe9\xb6\xf1\xae\x40\xf9\xbd\xcd\x89\xbc\x13\x09\x05\x0e\xdb\x9e\xd4\xb1\x9d\xdd\x35\x0f\x5c\xe1\x52\x07\x27\xfc\x32\xce\x63\x9d\x70\xb3\x38\x2b\x74\xa2\xcc\x4a\x33\xa3\x3b\xb9\x68\x12\x22\xe6\xc9\x0e\x34\x67\xfa\x51\xec\x20\x9c\xf0\xa3\xfc\xb9\xaf\x50\x47\xf7\xcf\x75\x73\xe1\xfe\xb2\xc5\x72\xbe\x1a\x68\xfc\xb9\x1c\xae\x89\x0f\x6d\x3a\x4b\xd1\xe8\x8d\x17\x85\x59\x77\xf8\xa0\xe2\x9e\x46\x78\xc3\xef\x22\x3b\xc5\xa4\xc2\xe9\x44\xd6\x49\xbf\x88\xcf\xfa\x2b\x24\x0c\x6b\x63\xf3\x15\x12\xd2\xea\xdc\x7c\x65\x84\x55\xbc\xa6\x74\x6d\xd8\x26\x3c\x6f\xf8\xa6\x3c\xe2\x9b\x7b\xdb\xd7\x0d\x54\x52\xbb\x65\x27\x55\x52\x29\xd9\xf3\xe1\xc6\xf0\x2b\x01\x63\xe5\xcc\x9a\xf9\xf0\xc6\xd5\x22\x3f\x2c\x91\xe4\x0e\x50\x52\x7f\xf3\x0b\x20\xe0\xaf\x7f\xaa\x76\xb3\x16\x71\x47\xb5\xaf\x17\x45\x0c\x27\x2b\x2d\x20\x75\x5b\xac\x5a\x1b\x56\xa4\xfa\x37\x70\x5a\x36\xff\x3f\x4f\xbb\xc4\xe9\xb5\xc1\x97\x55\xfc\xfb\xc2\x12\x7f\x9f\x64\xc1\xd5\x60\x5f\xd8\x42\x86\x9e\xca\x0a\xaf\x85\x2c\x7f\xa7\xfa\xae\x9f\xc0\x30\xf5\x1b\x37\x9a\xd8\xe3\x42\x76\x81\xad\xf2\x0b\x19\x7c\xc2\xf3\x5b\x0b\xb5\x64\xc3\xfd\x55\xfa\x47\xf5\x7e\xe0\x6e\x0b\x4a\x6d\x2d\xe4\xdb\x39\x46\x6b\x41\x1e\x28\xd5\xbf\xe1\xad\x94\xc0\xb1\x10\xad\x50\x6c\x07\x5a\x48\xa0\x53\x9d\xcc\xb5\x60\xb5\x57\xd9\xe3\xb5\x10\xb9\x5f\xc4\xdd\x56\x87\xf7\x4a\xd5\x52\xd7\x02\x72\x68\xf3\x37\x02\xe0\x92\xbd\x8b\x0b\xa1\x9b\x8e\xf8\x5d\x03\x2e\xe4\xee\xdf\x48\x97\xd0\xa9\x5b\x08\xe5\xfc\x03\x99\xb2\x00\xa8\x24\x80\xf8\xb5\x50\xa6\xcc\xa7\x62\x41\x07\x2d\x4e\xfb\x5c\x23\xe1\x51\xd5\x08\xc7\x89\xdf\x7e\x03\xd7\xc0\xbb\x04\x98\x48\x06\xa5\x5a\x90\x1a\x54\x46\x79\xad\x40\xa9\x0e\x19\x35\x56\x70\x0d\xbc\x48\x41\xb3\x87\x86\x18\x1c\x92\x57\x0d\x49\xf1\x36\x18\x2e\x40\x1a\x55\x7f\xa6\x57\x8c\xa8\xd6\xb3\x57\x02\x4d\x4e\x1a\xd3\x02\x1c\xf7\x26\xd6\xb2\x12\xb7\xa8\x3f\x7b\x72\xd1\xfe\x34\xe8\x18\xb2\x1b\x0c\x54\x87\xf1\x0b\x02\x05\x5a\x35\xa5\x04\xab\xf1\x0c\x5e\x31\xa1\x1a\x2e\x68\xbd\x62\x42\x2d\x4e\x5d\x5d\xaf\x9c\x50\xfe\x6c\x34\x00\x1c\x85\x6e\xc5\x95\x37\x1b\x68\x11\x29\x28\x48\x81\x59\xaf\xa0\x30\x8c\x5d\xb6\x10\x6f\x31\xc5\xe0\xd7\xc4\x0c\x7c\xf2\x5e\x41\xa0\xfd\x39\xa9\xc8\xba\x77\xac\xde\x9a\x98\x81\x24\xe5\x05\x41\xa0\x4b\x70\x58\xb0\xac\x17\xe1\xbb\xae\xf5\x4a\x02\xc3\x20\x4f\x0b\x39\xf7\xb6\xd1\x2e\xa8\xea\x45\xd5\xd7\xd6\x9a\x9c\xa2\xd6\x70\xfe\xa6\xa8\x45\x9e\x28\x6d\x20\xd9\x62\x41\x12\x30\x4a\xd4\x02\x9a\xa8\xb3\xe6\x17\x2c\xe7\xd6\x06\xd6\x7b\xaf\x77\x07\xf7\x2d\x98\xce\x97\xfb\xdb\x11\xba\x24\x66\xbc\xde\x5b\x78\xd8\x73\xbd\x90\x75\xdf\xfc\xd1\x76\xb8\x2e\xfc\x4d\x90\xf5\xb7\xfc\x7e\x18\xc2\x1d\xbd\xbf\x58\x23\xd7\xd6\xb6\x85\x72\x6f\x06\xd6\x5a\x30\x84\x5b\x1e\x5f\x27\xb3\x61\xf5\xff\x17\x92\xb5\xbc\x8b\x90\x5e\xe0\x68\xc1\x05\x28\x6d\x0b\x7b\xeb\xe2\xb6\x95\xb8\xbc\x10\x8a\x60\xcf\xee\xba\x90\x35\x23\xd3\xfd\x42\xfe\x81\x33\x22\x16\xf4\x72\x3b\x35\x17\x8c\xc0\x45\x45\x56\xd6\x42\xe9\xfa\xbe\xfe\x49\xbd\x59\x17\xbf\xb8\x19\x01\x72\xdc\x9d\xa0\xb1\x2e\x7e\x71\x6f\x62\x64\xfc\x59\x4e\x5a\x37\xcb\x10\x9b\x9f\xdf\x84\xed\xd2\x2e\xc6\x15\x5f\xcd\x39\x50\x49\xcc\x10\x2b\x0b\x65\xe8\x8d\xa6\xb1\xa0\xa5\x3b\xe8\x68\x87\x96\x5e\x7c\xe7\xef\xb0\xc8\xda\xbb\xbf\x03\x89\xdb\x07\x7b\x7f\x2f\xb4\xe5\xc4\xa9\x9d\x05\xd8\x97\xe9\x98\x81\x18\xc7\x5e\x02\xff\xdf\xf5\x1b\x01\x39\xda\xf4\x7b\x3d\x00\xf3\xa5\xfe\x50\x04\xb3\x38\x3c\x65\xaf\x7c\xa1\x7f\xdf\xf8\x1d\xfa\xfd\xb0\x81\xde\x00\x95\xd6\x1a\xc4\x8e\x74\xb5\x2a\x99\x64\x6f\xc8\xa0\xfe\x43\xc7\x1e\xd0\xb1\xdc\x79\x83\x2d\xf7\xc7\x17\x88\x99\xee\xc8\x56\xf3\x8d\xb3\x77\xec\xca\x66\x3a\xbe\x49\x33\x1d\xe0\xe0\x9e\x01\xb2\x13\xcc\xac\x77\xe4\x84\x3b\x72\x6c\xef\xd8\x15\x16\x12\xf6\x8e\x35\x95\x71\x67\x07\x04\x60\x91\xa3\x60\xe7\x8d\x55\xa4\x65\xee\x48\x12\x4f\x2f\x2a\x92\xc4\x9d\x40\xbc\x0f\x2c\xba\xae\x8f\x7d\xb0\x8e\xa3\xfe\x3f\xe0\xa9\x48\xff\xc6\xb9\x32\x6c\xcd\x8e\x74\x37\xdb\x75\x77\xe8\xc1\x4e\xcb\xdf\x83\x53\xd4\x80\xe0\xa6\x2d\x46\x6f\xdb\x91\xee\x60\xb8\xd1\x9d\x18\x7d\x1e\x21\x40\x5e\x9c\xe2\xbc\x07\xea\x73\xeb\x92\xde\x81\x75\x5d\x75\x92\xf6\x44\xec\xb9\x3f\x1a\xf4\xe2\x22\xd4\xff\xb5\x03\xe5\xa5\x74\x77\xd0\xe1\xdc\x37\xfd\xe5\x85\x06\x43\xda\x71\xa1\xa9\xfa\xd1\xda\x91\xf7\x6e\xbc\xbc\xfd\xbd\xd0\x62\x4b\xff\x46\x78\x83\xc4\x96\x3d\x51\x1c\xb5\xf8\x7d\x17\xfe\xdf\x74\x06\xb3\x9b\xfe\x80\xae\xdf\x13\xbc\xde\xfd\x4d\x7e\x02\x79\x1e\x76\xe4\xc9\xff\x59\xd1\x89\x09\x48\xb2\xdb\xa1\xd8\x1a\x5f\x63\x07\x88\xcc\xf4\x27\x7c\xef\xb3\x70\xca\xcb\xce\xfb\xec\xcf\x12\x22\x23\xc3\xbc\x74\xe7\x7d\x96\xee\xf0\x44\xfd\x5d\xd3\x11\x49\xeb\x73\xf8\xea\xb5\xa1\x2a\x8a\x6b\xa7\x5e\xeb\x01\xbc\xb7\x57\x98\x39\xee\x0b\x9a\xb7\x78\xef\xbe\x38\x40\xad\xc0\xfa\x0d\xd0\x7f\xd8\x5f\x99\x63\xb9\x43\x60\xea\x7a\x13\xa2\x28\x7d\xc8\x37\xb4\xef\xc0\x43\xf7\x8c\x71\xfd\x6d\x7f\xe8\x41\x55\x5e\x23\x78\xb5\xd4\x50\x09\xbd\xb5\xef\x40\x78\xd7\x6d\xb1\x13\xa9\xda\x9c\xe5\xd5\x5a\xd3\x01\x22\x3b\x2a\x5a\x85\x79\x1f\x8a\x97\x5a\xa1\xdb\x8f\xc4\x6f\x4d\xe0\x40\xff\xde\xd4\xc7\x62\x09\xbb\xf2\x2f\xb7\xcd\x0e\xcc\x1b\xbb\xa9\x77\xc0\xe0\x95\x2a\x1b\xf2\x8e\x72\x56\xc6\x9a\xda\x4f\x0c\xd7\x87\x18\xb7\xaf\xfd\x95\xfb\x09\xb3\xba\x24\x9e\xfd\x84\xa0\x2c\x5d\x62\x47\x7e\xbb\x1d\xa2\xfb\x85\xbb\xe4\x0f\x23\xbb\xd8\xa1\x16\xf8\x82\x3e\xea\x33\xf9\x5e\xd7\xcd\x2e\xda\xfd\xbd\xad\xa7\x23\x78\x76\x04\x0e\x1a\x7e\x71\xbf\x60\x96\x37\xe3\xbc\x92\x2f\xf4\x1f\x26\xe2\x8e\xdd\x01\x1c\x05\xe6\x6b\xbc\x4e\xff\x5c\x26\x88\x24\xb4\x24\xbe\xa3\xb0\xe7\x1f\xae\x80\xe2\x53\xce\xb7\xd8\xa1\x11\x97\x3f\x8c\x0f\xf7\xad\x71\x0b\x76\x24\xc4\x3b\xc3\x63\xbf\x39\x02\xbd\x10\xb5\xa5\x1c\xfe\xbf\x3f\x34\x1f\x49\x83\xde\x1f\xbe\xf1\xeb\xe0\xd8\x50\xf5\x4c\x53\x38\x68\xf4\xd6\x1e\x3c\x36\xae\x81\x86\x7c\xc0\x03\x6a\x49\xfd\xc0\x85\xad\xba\x8e\xeb\xd8\xc8\x78\x34\x84\x63\xe3\x10\xbf\xaf\x70\x40\xe5\xb4\xe4\x7d\x20\xa1\xdd\xf1\xfe\x07\x8a\x45\x59\xd0\x3e\x2a\xbe\xaa\xae\xbb\xa3\xb2\xbd\x7f\x77\x72\xba\xa6\x3f\xa0\xc0\x8b\x3b\xac\x3c\x77\xe2\x34\x07\x7c\xa4\xad\xbb\x87\xc9\x7f\xd0\xa2\x54\xa8\xe5\xe1\x06\x8c\x91\xd5\x90\x81\x3b\x6c\x37\xf3\xd1\xf8\xdd\x25\x46\x1d\x0d\xbe\x08\x7d\xb6\xa3\xd5\x57\x72\x96\x49\xed\x40\xb1\x49\xc7\x25\x1f\xc0\x1d\x36\x1c\xe2\x81\x60\x33\xe3\x4d\x1d\x4c\x50\xd7\x4e\x3f\x3a\xd6\x40\x3b\xfb\x40\x3d\x28\xbb\x01\x8f\xce\xa3\xa4\x25\x40\xa8\x59\xb1\xef\xff\x40\x2d\x6e\xfb\x3a\x8e\x4e\x53\x8d\x5f\x88\x7d\x24\x39\xee\xe8\xb4\x33\xb8\x3d\xf6\x61\xf5\x00\x1e\x14\x5b\xd7\x0a\x8e\x8d\x2f\xd4\x88\x01\x44\x63\xdf\xff\x81\xf2\x91\x3e\x6b\xc7\x98\xe8\x50\x23\x86\x67\xb6\x18\x65\xe0\x80\x8c\xa1\x42\xc0\xeb\x80\x25\xbb\x7a\x89\x13\xae\x61\xa9\xdd\xc7\xab\x21\xae\xd4\x8d\x7e\x4c\x94\x01\xf2\x37\xc4\x05\x58\x1c\x4a\x76\x00\x28\xe6\xcf\x0b\x10\xbd\xee\xa8\xde\x03\xf7\x8f\x2b\x62\xae\x03\x08\xb2\xd6\x26\x0e\x80\x98\x65\xf3\x6f\x78\xb3\x7d\xd4\x58\xda\xc8\x07\x61\xc1\x1b\x2e\x91\xe0\x58\x78\xa1\x37\x3e\x0b\x11\xf9\xa0\x20\x94\x5c\x35\x4f\xd6\x01\xc7\x66\x51\x81\x8c\x75\x20\x96\xdc\x91\xbb\x07\x32\xc6\xed\x96\x3c\x4e\x0c\x58\x57\xf8\x81\xd2\xd1\x76\x8c\x1e\xc8\xe7\x76\x80\xc7\x81\x18\x9a\xd2\xbd\x6d\xcf\x05\x77\x85\x66\x74\x62\x84\x3e\x79\x50\x87\x9c\xb3\x70\x5c\x88\x78\x34\x74\xdd\x01\x0e\x9b\xf3\x9f\x52\x3c\x0f\xd4\x25\xb2\xaf\xfc\xa0\xba\xe3\x48\xe3\x03\x00\x27\xaa\xc1\xb3\x0e\xd4\x61\x36\x4a\xdc\x01\xe5\xc5\x71\xdc\x07\x92\xb5\x8b\x8d\xb4\xc7\xcd\xf1\x6a\x85\x81\xf9\xe5\x90\x9b\xe3\x86\x77\xca\x9b\x12\xf8\x25\xa5\x7b\xd7\x02\x7f\xc4\xee\x96\xe3\x61\x87\xa6\x63\x84\x3e\x16\xc8\x16\x2b\x7f\x0e\xf6\x83\x3b\x4e\x2b\x7c\x02\xb2\x2b\x25\x83\x9c\x30\x10\x1a\xcc\xfa\x24\xb7\x95\xd4\x75\x02\x91\x6b\x4a\xa4\x38\x11\x5a\xec\xca\x01\xeb\x44\x72\xb7\xf3\x5e\xcf\x02\x2f\xa8\xe9\x95\x1d\x0c\xfd\xc6\x29\x90\x8c\x70\x92\xbb\x1a\x44\xec\x04\x24\x97\x53\x2c\x4e\x64\x73\x3b\x8d\xf5\x04\xef\x9c\xc5\x1d\x70\xc4\xdf\x9e\x38\x1b\x37\x9d\xfe\xbf\x71\x80\x1a\x10\x2c\x84\x56\x10\xcf\xc6\x01\x78\x44\x0d\x03\x90\x59\xfa\x44\x20\x70\x71\xca\xda\xd9\xb8\x8d\xfd\x9b\xdb\x58\xfb\xfe\x04\x68\x97\xdd\x76\x67\xdb\xf9\x0f\x5a\xe5\x86\x68\x36\x6d\xdb\xb3\x81\xdb\x49\xd2\x39\x3b\x87\xa0\x31\x03\x95\xcb\x76\x87\x13\xdc\xd3\x21\x0e\xe7\xc0\x1c\xb5\x71\x4f\xda\x0c\x0d\x6a\x75\x22\xfd\xdb\xa9\xb0\xe7\x60\x0d\x49\x7f\xf7\x01\xd1\xa4\xb8\xc7\x44\x52\xbf\x1b\x60\xdf\x48\xed\x3d\x07\x8f\x86\xe9\x4c\x4b\xf3\x67\x7a\x55\xb2\xe5\x1b\xea\x0c\x18\x21\x25\x1d\x9f\x41\xe6\xa4\x11\x26\x5e\x20\x41\xe3\x84\xbe\xf2\x07\xc2\xf6\x64\x79\x3c\x29\x2c\x27\x2d\x70\x0e\xee\x39\x5f\x8d\xa5\x5b\x9c\x3e\x13\xa1\x50\xe2\xb7\xe7\xdc\xd8\x40\x73\x80\x85\xcd\x77\xd4\x39\x11\x71\x27\x86\x7c\x4e\xa6\xb8\x6b\x4a\x34\x80\x39\x31\xe0\x9c\x08\xf4\x90\x80\x79\x12\xd9\x4b\x0c\xf8\x24\x47\x77\xa0\xff\xb9\xf8\x5d\x74\x3c\xcf\x75\x22\x55\x50\x43\x5a\x17\xff\x41\xb3\x04\x76\x96\xfd\x09\x27\xf2\x7f\xfe\xa4\xdf\x9d\x88\x46\x71\x9a\xfd\xb9\xff\x06\xa9\x41\xec\x1c\x84\xa7\x09\xec\xaa\xea\x95\xa6\x94\xee\xc0\x3f\x54\xf4\x6f\x96\x56\x4e\x40\x25\x16\x9f\x18\x96\x37\xf1\x42\x53\x4a\x95\x36\x8e\xf2\xf4\xe9\x60\x4f\x94\x9f\x9f\x06\x98\x38\xe1\xa6\x09\xf3\x14\x54\x93\xb7\xdf\xe8\x44\xdc\x9f\xf5\x20\x56\x93\x37\x04\xc6\xf9\x2b\x80\xea\x23\x0e\x14\xa6\x10\xd3\xba\x36\xfe\x6e\xfa\x8d\xa0\x00\x9d\x06\x54\x83\xaf\xc5\x08\x10\x17\xb1\x8a\xa5\xda\x5d\x85\x90\x6d\x53\xbf\x01\xe7\x29\x1e\x85\xda\xec\xb5\x38\x88\x1a\xc5\xd9\x57\x6c\xff\x64\x56\x43\xe5\xf6\xb7\xb5\xc6\x03\x48\xa5\xd0\xd9\x41\x25\xf6\xe5\x40\x47\x94\x5a\x9f\x56\x85\x59\x6a\xdd\x15\x6e\x16\x6a\xad\xcf\x90\x95\x0f\xb5\xd0\x97\xd1\x66\x50\x0b\x7d\xfd\x79\x21\xa2\x20\xec\x84\x46\x6d\xf1\x74\xc8\x32\x6a\x87\x2f\x3b\x95\x2f\xf8\x28\x8a\x36\xfa\x35\x48\xd7\xfb\x19\xc7\x20\x96\x89\xea\xd8\xcb\x86\x5f\x54\xc7\x4e\x3b\xf9\x51\xfc\x7a\x85\xb8\x0d\x8a\x5f\x2f\x07\x1c\x5f\x30\xbf\x78\x07\x5d\x34\xbf\x58\x26\x47\xb1\xea\xd9\xd2\x1d\x62\xc2\xda\x42\x17\xb0\x24\x6c\x59\xbe\x26\x77\x80\x06\x08\x63\x78\xb1\x6e\x7d\xa1\xb0\xa5\xe3\xd4\x2e\x60\xee\x79\x4f\x5f\x08\xe2\x0e\x5d\xcc\x17\x95\xf9\xf4\x0e\x58\x1c\xb2\x3a\xdc\x11\x59\x21\x01\xf6\x02\x5e\x8f\xa3\xc6\xae\xf7\x58\x2e\x5b\xdf\x51\x0d\x7a\x6e\x5e\x22\x06\x3c\x7b\x46\xf0\xff\x3a\x46\xec\x82\xac\xe5\xa8\xb6\xeb\xc4\xc5\x9c\xd2\x6e\xaf\x13\xdf\x48\xa7\x06\xb5\x9c\xdf\x7f\x50\x8f\xf0\x20\x9b\x7b\x5d\x17\xa6\xdc\xfc\x1b\x5a\x8c\x38\xf8\x75\x61\xcd\x2c\xb0\x5e\x30\x36\xff\x39\x04\x17\x96\x40\xfc\xf5\x42\x1a\x9b\x4d\x4a\x17\xe0\xdc\xec\xa6\x47\xe5\xe3\x65\xf3\xc1\xf5\x70\xc4\x9a\xd2\xc3\x5d\xa5\xf6\x0f\xbe\x41\xf3\x6f\x94\x48\xfc\xf3\xff\x78\xbf\xf8\x06\xaa\x0e\x2f\xdb\x0b\xee\xc2\xf1\x84\x7e\x73\xbc\x4d\xbf\x0f\xfc\x7f\xd5\xef\x93\xc0\xcb\x6e\x80\x53\xfe\xe7\x37\xc2\x79\x74\x8d\xa3\x0c\x71\x75\x74\xd4\xfd\xca\x3e\xe1\x63\x75\x13\x1a\x4d\x02\x36\xca\x14\x87\x03\xf1\x51\xa6\xb8\x5a\x2c\xb8\x29\x1b\xf9\x56\xbe\x11\x1e\xe5\x5c\xec\xfb\x65\x0c\x7d\xd3\x0d\x75\x93\x31\xf8\x9e\x47\x9d\xe2\x6e\x47\xdc\xcd\xec\x71\x4b\x0a\xa8\x53\xdc\x6d\x3e\xbf\xa9\x69\xfa\x9e\x46\x29\xe2\x30\x66\xeb\xdd\x30\x66\x9d\xc4\x1b\x69\x55\x4e\x50\xbd\x29\x4e\x39\x16\x11\xb5\x8a\x9b\xca\x10\xae\xfb\x15\xa7\xc2\xe5\x15\xee\x57\x9a\x0a\x57\x3f\xb8\x5f\x69\x2a\x5c\x4e\x01\xb5\x8b\x8b\x05\x89\xfb\x95\x95\xc2\xc5\x08\xee\xf6\xb0\xb2\xf2\xf7\xbb\xff\x66\xa0\x17\x20\xc8\xb7\xe9\xa4\xa0\xb6\x71\xd8\x85\x7c\x77\xb8\x02\xdd\x61\x87\x59\xce\x5f\xf9\xcb\x6a\xd2\x88\x3a\x46\x30\xdd\x00\x9f\x5d\xbc\xe4\x1e\xbf\x11\xa8\x87\x81\x35\x94\x1a\x80\x6a\xc7\xe1\x18\xe7\x9b\xf6\x6f\x7b\x68\xef\x81\x35\x91\xe2\x71\x0f\x68\xcf\xfe\xee\x54\x5e\x67\xfb\x27\xc3\xda\x4d\xff\xae\x2d\x1c\xf7\xc0\x04\x74\x81\xa3\xba\x72\xfc\x99\x00\x2b\xd6\x88\x13\xdc\x70\xe7\x16\x07\x1e\xa2\x9c\x72\xda\x69\x8e\x6a\xc9\xdd\x4e\x12\x54\x4b\x4e\x43\x19\xdf\xb4\x66\xbb\xc6\x06\xaa\x25\xa7\x2f\xa0\x9b\xa8\xad\xae\x99\x81\x6a\xc9\xcb\x38\x1a\x37\xb0\x7e\x6c\xfd\xfd\x8a\x25\x6b\x5b\x52\x1a\xb4\xe1\x0a\xc5\x92\xa7\x71\x67\x6f\xa4\x2d\x85\x97\x34\x51\xb0\xbb\x9b\xce\x32\xec\xfa\x0d\x61\xd0\x81\x84\xa8\x6c\x9c\x8e\x4b\x43\xdd\xe1\x74\x24\x1d\xea\x0e\x57\x1b\x34\xee\x05\x01\xda\x33\x5c\x30\x70\x78\xd7\x2d\x9e\x44\x9f\xdd\x05\x29\x4a\x3a\x02\xca\x08\xcf\xe6\x35\x84\x75\xd7\x19\x97\x37\x2e\x14\x3b\x53\x51\x26\x78\xa9\x28\xdf\xba\x09\x31\xee\x6f\x04\x30\xb6\x29\x19\xe6\x7e\xc5\xc0\xec\xee\x1f\xe6\x56\x9b\x90\xee\x83\xdc\xcf\xdb\xfc\x07\x38\xaa\x0e\x00\xf1\x6d\xa8\x15\xd4\x11\x9e\x4b\x57\x26\xea\x08\x37\xa3\x34\xa0\x8e\x70\x35\x32\xd9\x7d\x02\xb0\x40\x16\x9b\x9b\xe6\x57\x27\x0a\xdf\x17\x6a\x05\x78\xd7\xbd\xda\x7f\xb3\xc1\xfe\xc6\x85\xe4\x38\x86\xfb\x62\x29\x27\xad\x20\xe5\x52\x89\xc6\x37\x12\x5c\x2c\x25\xdd\x88\x37\x2a\x0e\x13\xbb\x29\xb8\x7a\xc6\x37\xac\x5c\xde\x33\x40\x9f\x29\xab\xf8\x0f\xb0\x72\xf9\x20\x23\x20\x69\x0e\x77\x00\x2b\x97\x0f\xfe\x0d\x13\xb7\x0c\x06\x37\xad\xab\x92\x43\x59\xe9\xd8\xd8\x9c\x37\xc2\x8d\x8a\x41\x1b\x6e\x56\xcd\x33\x33\x7c\x18\xda\xa1\x0e\x91\x02\x53\xfe\x7c\x04\xe0\xcd\x38\x23\xe2\xa6\xbd\x76\xf9\xe0\xd0\x82\x30\xdc\x80\x69\x49\xfe\x0d\x3d\x4e\x86\x39\xd4\x25\x76\xa5\xc1\x85\xba\xc4\xb5\x38\xac\xec\xd9\xa0\x90\x74\xff\x3e\xf9\x0f\x6e\x81\x0c\x91\xee\xdf\x37\x22\x38\x97\x7e\x3f\x6c\xf0\x6d\x94\x07\x85\xef\x54\x74\x7c\xb1\xd4\xb1\x6f\x18\x54\x3a\x7e\x1b\x4c\xfd\x01\x5b\xdd\x43\x28\xfc\x6e\x92\x1c\x1e\x80\xd0\xe4\x9f\x1e\xb8\x6c\xe2\x4f\x4f\x41\x9d\x0d\x6d\x95\xa7\xb2\x9a\x61\xe8\x37\xb7\x4e\xf7\x3f\x60\xeb\x48\x91\x7b\x2a\x7c\x15\xcb\x0d\xf8\xa5\xf5\xff\x8d\x3b\x47\x23\xa2\x0d\xc1\xb2\xc0\xd3\xb8\x75\x34\x27\xda\x10\x1c\xea\x85\x12\xc8\x65\xd3\x45\xfc\x34\xae\xb3\x18\x0a\x4a\x1a\xa7\x73\x5b\x9e\x4e\xb4\x77\xcd\x11\x81\x49\x36\x84\x3c\xf0\xd2\x1a\xf1\xed\x41\xf6\xae\x1d\x72\x0f\x6e\xb1\x57\x69\xfa\x7b\xe7\xe4\xff\xf5\xca\x79\x06\x4b\x92\xe9\x93\xd1\x20\xb1\xfe\x74\xc6\x44\x1b\x7d\x22\x44\x36\x1b\x2b\xec\x81\x06\x91\x5e\x5f\x9a\x13\xbc\x69\xa0\x41\xa8\x68\xe8\x42\xb9\xe4\x69\x17\x33\xca\x25\xd7\xe2\x3b\x16\xf5\x92\xff\x14\x65\x42\x35\xe4\x95\x52\x4a\x51\xdd\xd8\x35\x3f\xd7\x43\x95\xc3\x97\x22\xaa\x1b\x2f\xc3\x97\x3c\x3f\x15\x43\x23\xfa\xd9\x83\xf5\x02\xe2\xa9\x78\xc6\x93\x89\x50\x9a\x31\x02\x7d\x9d\xbf\x87\x62\xc2\xd5\x2a\x0a\x8a\xfd\x36\xa3\x12\xa2\xd8\x6f\xda\x96\xf0\xa0\x92\x7e\xf5\x0a\x2d\xe0\xb5\x88\xbf\xa3\x94\x6f\xba\xd6\x17\x4a\xf9\x2e\x63\x7b\xa1\x34\x6f\xb5\xc2\x82\xd2\xbc\xc5\xc6\x4c\x94\xe6\x0d\xe7\x4a\xa1\x34\x6f\xba\x3c\x0f\x2b\xef\x9a\xd7\x3d\xfb\x86\xeb\x40\xef\x07\x1a\x68\xdd\x74\x3f\x3c\xc7\xaf\x0c\x89\x66\x4c\x43\x84\xef\x68\x54\xba\xad\xd5\x45\xdf\x1e\xa4\x81\xd6\x22\x45\xf6\xc1\x25\x55\x15\x66\x75\x27\xfc\xf0\x2e\xec\x74\xe7\x42\x89\xc7\xf5\xfd\x3c\x21\x49\x0d\xfd\x84\x70\xf9\x9b\xc3\xb3\x10\xac\x51\xb7\xef\x0a\x79\x16\xac\x4e\x32\x01\x3d\x6b\xa1\xa2\xb3\xe2\xc4\x9e\x75\xf3\x5a\xef\xdf\xef\x87\xe9\x6c\xdf\x29\x7a\xf6\x0d\x05\x71\xbe\x6d\xf3\xec\x30\x98\x56\x25\x21\x3e\x7b\xe1\xac\x3f\x6e\xf5\xdc\x2f\x7b\x53\x46\xc3\x73\xa3\xac\xe7\x27\xfe\x3e\x37\xb1\x1b\xba\x7e\xae\x3f\xd3\x7b\x20\xae\x97\x4d\xf0\x5c\x0f\xc4\x75\x65\x4b\x3f\x2c\x4c\xff\x31\x95\xe7\x41\x7a\xd9\xa6\x9f\xef\x7d\xf7\xb6\xee\xfa\x03\x1c\x9a\x43\x3f\x3b\xe9\xfe\x03\x82\xcf\xf9\xb3\x6e\xa8\xa1\x57\xeb\x57\xb6\xfd\xfd\x03\x3f\xe0\xef\x90\xd4\x6d\x3b\xb9\xc0\xbf\x63\xf5\x3e\xfc\x1f\x9f\xb8\x6e\x0b\x16\x2f\x7d\xe2\x5a\xc6\xc5\x4e\x7f\x2b\x50\x2b\xa3\xc8\xea\xe7\x88\xaf\xbd\xc0\xc8\x5d\xcb\xff\xe0\x56\xfe\x5f\xfb\xff\xff\xff\xdd\x1c\xf4\x86\xa2\xa1\xbf\x47\x04\xeb\xff\xfe\x5e\xcf\xfd\xfb\x7b\x05\x42\x8c\x22\xd4\xb7\xb6\xca\x47\x6a\xfb\xbb\xa0\x9f\xec\xbf\x01\xb7\xf7\x7b\x7c\x3f\xc5\x77\x51\x6e\xed\x70\x9b\x57\x17\x97\x05\x6e\x03\xac\xed\xf7\xb8\x10\x56\xf8\xa3\x00\x3a\xf5\x7b\x84\x33\xbf\x8a\x12\xa2\x34\xba\xf9\x3f\x4a\x33\xe5\xe5\xd8\xd2\x57\x2b\xea\xb3\x7e\x8f\xac\x19\x2d\xca\x69\x0a\xca\x7b\x96\x8f\xf2\xaa\x73\xdf\x63\x43\xb8\xf6\x8f\x52\xe2\x1b\x5b\x45\x8d\x23\xe5\x04\x56\x14\x28\xfa\x1e\x21\x96\x7f\xbb\xbd\xa2\xee\xce\xf7\x58\xe0\x72\x14\x25\x4c\x59\xc8\xf0\xfc\x48\x28\xb2\xf1\x3d\x4e\x24\x41\x7f\x94\x57\x11\xf9\x1e\xa1\xa5\x0d\x51\xc2\x94\x97\xf1\xca\x7c\x58\x6b\xdc\x26\x21\xc6\xf2\x9b\x52\xab\xeb\xa3\xb4\xba\xa3\x9e\xdb\x8f\xd2\x3d\xd9\x1e\x0c\x94\xf9\x28\xa9\x21\x74\x6c\xf7\x22\xca\xd4\x72\xf7\x85\x22\x50\x1f\x05\x98\x7c\xbf\x47\x00\x77\x7f\x67\xbd\x02\x58\xec\xf7\x88\x44\x97\xf5\xf1\xdf\x0a\x7c\xad\xef\xf1\xbd\xec\x04\x82\x50\x81\x4a\xf5\x3d\xbe\x5c\x5c\xf9\x38\x15\xe8\x4b\xdf\xe3\x2b\xc9\xa9\xf4\x56\x05\xaa\xd0\xf7\x88\x56\x9f\x6e\x51\xa1\xdc\x7c\x8f\x48\xf8\x54\x68\x6d\xbd\xe7\x30\x0d\x47\x51\x65\x96\xea\x3d\x97\x69\x3b\x69\x5d\xb4\x4b\xb4\x45\x84\xbc\xcf\xb2\x53\xef\x35\x4d\x03\x03\x90\xe2\x55\xef\x77\xed\x7e\x8f\x3b\xdb\x7d\x97\x72\xbd\x77\xb7\xdb\xd9\xee\xf3\x8e\xd6\x7b\xff\xd3\xee\x22\xad\x8a\xf6\x88\x86\x18\xce\x2a\x35\xa4\x42\x2f\xfa\x1e\x07\x69\x9a\xfb\x11\xa6\x91\x0d\x79\xcd\x0e\x8f\x85\xd7\x92\x7c\x56\xf5\xf6\x57\x80\x56\xf4\xd2\xb4\x2e\xa7\xc7\xf9\x70\xad\xbf\x3b\xb4\xa2\x48\xf6\xf7\x08\x71\x6e\xfb\xe6\xd7\x36\x6d\xa2\x86\xda\xd5\x9f\x28\xd9\xb6\x6d\x9a\xf0\xfc\xd9\xc5\x6d\x2b\x6e\xf2\xde\x22\x0a\xab\x6f\x28\xfd\xfc\x3d\x12\xa5\x54\x94\x30\x25\x81\xf7\x2a\xca\x65\xca\xfd\xee\x9f\xa5\xb1\xd5\x22\x12\xdc\x71\x32\x55\x34\x70\x91\xef\x11\xcb\xdb\x96\x46\xd1\x3c\x72\x88\xb3\x55\x75\x5e\x1a\x0a\x1d\xff\x1e\x91\x1f\x34\x34\x5f\x6d\x90\xc6\x72\xa4\x9b\x62\xac\x1a\xca\x91\x7e\x8f\x37\x69\x7a\xdb\xee\x1e\x81\xd2\xf9\x89\xff\x0d\xd5\x11\xbf\xc7\x5f\xab\x6f\xfc\xa8\x6b\xf8\x7b\xac\x01\x23\xc5\x47\xa9\xd3\x94\x57\x38\xff\xae\xf4\x56\xea\x6e\x0a\x2e\xbc\xfe\x29\xb1\xad\xec\xfa\x26\x85\x5b\x4a\xee\xee\x56\x75\x33\xb5\xfa\xf6\x28\xf1\xb5\xb5\xf9\xf1\xb0\x06\xe8\xf9\xb2\xa9\x86\x5f\x6b\xeb\x14\xed\x37\x67\xf5\x08\xfc\xf2\xef\xf1\x77\xb9\x7f\x7d\x76\x6f\xa8\x8e\x70\x8d\xaa\xac\xfd\xd6\xbb\xe6\x06\x18\xe6\x5a\xe5\x9e\x69\xe6\x80\x0d\xe0\xa3\x2f\x57\xfe\xf6\x88\x39\x5d\x1b\xbc\xc8\xe5\xac\x6f\x63\x3d\xa2\xb1\x9d\x5c\x3a\x2d\xdc\x2e\x90\x93\xda\x24\x0f\x35\xa0\x5b\xfd\x1e\x0b\x79\xf1\xa7\x9d\x36\xe0\x50\xfd\x1e\xd1\x67\xdb\x3e\x2e\xd9\xd2\x7d\x26\x69\x82\x82\x6e\xd3\x34\x66\xdc\x34\x79\xd0\xda\x32\x6d\x15\x26\x96\x69\x3d\x57\x59\xa2\x01\x80\xb1\x29\x82\xa4\x21\x47\xe1\xf7\x08\xd3\x46\x53\x81\xd2\xb6\xfc\x1d\x18\x23\xdd\xb7\xef\x32\x6e\x88\x89\xfe\x3d\x62\x2c\x5d\x99\x17\x6d\xf7\x58\x18\x01\xda\xb7\xef\xca\x6b\xbb\xbf\xc3\xce\x76\xca\xb9\x6b\x87\xdb\x21\x92\xe6\xe5\xd9\xa2\x75\x8d\xf3\x60\xbb\xf6\x31\xa0\x76\xba\xdd\x49\x80\x49\xc1\x4b\xb5\xd3\xf3\x83\x87\xaf\x76\x85\xfa\xb7\xf3\xd6\xfc\x4e\xf6\xa9\x6c\x91\x76\xb9\xcf\x8b\x34\x99\x9b\xdb\x6d\x1a\x0c\x0b\x75\x6c\xea\xf3\x31\xed\x21\x4d\x2e\xbf\x6e\x66\xd8\x51\x3f\xbc\x0e\xc1\xc7\x77\xd4\x0b\xff\x3d\xb2\x9d\x92\x1e\x7a\x71\x3b\x14\x8a\xac\x63\x7e\xe2\x52\xb7\x80\xd3\x0b\xdb\xc9\xd4\xd4\xab\xdb\x55\xd0\x1c\x66\xd9\x9b\x69\xa8\x24\x52\x43\xda\x47\x6f\xe2\x70\x9d\x05\x18\xa2\x7f\x5e\xbd\x8e\x82\x0b\xbf\x47\xa4\x07\xc6\xa8\x9f\x2e\x4d\x79\xf5\xff\x25\xc2\xf6\x76\x54\x35\x45\x90\x4a\x08\xf1\xa3\xa3\xe4\xc0\xef\x91\x43\x55\x15\x89\xee\x23\xdf\x3b\x42\x65\x42\xfa\x65\xef\x97\x96\x8d\xc7\x3a\xf4\x99\xba\x8f\x75\x1f\x3f\xda\x77\x2f\x75\x1f\xdd\x4e\x3c\xb0\x54\xb6\x55\x07\x00\xd8\xef\x11\x40\x15\xa9\x00\xe6\x0e\x64\xad\xdf\x23\xfa\x4c\x45\x76\x76\x1f\xdd\x9e\x15\x71\xc3\xca\xd3\xef\x59\xbb\x69\xc0\x41\x94\xcd\xb2\xa7\x18\x6f\x4f\x18\x80\x53\x01\xcf\x3d\x53\x63\x21\xc8\x44\x0a\xbc\xbd\xa7\xd8\x6b\x27\xab\x48\x05\x2e\x74\xb3\x8a\x4e\x56\x61\xcf\x76\x37\xab\xe8\x0b\x2c\x34\x65\x6f\xed\x4b\x2c\xb4\x53\x8b\x4c\x61\xd7\x75\x64\x0b\x7d\x8f\x18\x8b\x32\x1c\x3a\x12\x83\x7e\x8f\x4c\xf9\x51\xf9\xd6\xbe\x24\xa7\xf5\x45\x39\xad\x6c\x1a\x8b\xe4\xb4\x8e\xd4\x9f\x97\xd6\x45\xd3\xb7\x5d\x80\x97\x9a\xb2\xd5\xf7\xa5\xeb\xa3\x2f\xd8\xa0\xa7\x70\x6d\xfb\xda\x3d\x3f\xc8\x46\x53\x19\x54\x7d\x1d\x9e\x1f\xd6\x65\x0a\xb5\xba\x9b\x6d\x75\xb2\xa6\x29\x31\xa2\x9b\x35\x75\xb2\x9f\xd9\x3e\x23\x7a\x37\xfb\xe9\x27\x8a\x92\x4e\x79\x0f\x3b\x02\x42\x7e\x8f\x1c\xa7\x8c\x8e\xfd\xd4\xd5\xd2\x4f\x04\x49\x57\x09\x34\x1d\x11\x13\xbf\x47\xbe\x4f\x36\x8d\x6e\xd6\xd4\xaf\x57\xaf\xae\x73\x7e\x51\x0e\xfd\x2a\xcd\xb4\xc5\x3e\xa7\x68\xda\x67\x17\x64\xcd\x29\x5f\x76\xbf\x24\x6b\xf6\x0b\x6b\xb6\x74\x5d\xf5\x7b\xd3\x58\xee\x2d\x98\xf7\xfd\x8d\x05\xce\xc2\xdf\x63\xfd\xe5\x84\x7f\xeb\x02\x37\xdd\xf7\xc8\xeb\x5f\xe3\x84\x7f\xeb\x7b\xe4\x15\xaf\x7d\x7d\x0f\x8d\xf3\x26\x76\x9e\xea\xdc\xf5\xdb\xe7\x0f\xfe\x9c\x97\xa6\xb1\x44\x9a\x36\x49\x4b\xd1\xdc\x27\xd4\xa9\x4d\x7a\x65\xbf\xd3\xf3\x4b\xc4\xc2\x98\x17\xc0\xa1\xf2\x7b\x64\xce\xbb\xac\x36\x1d\x4a\xc7\xf7\xc8\xb1\x68\x9f\xdd\x52\x14\x3b\x7c\x28\x65\x13\x34\x68\xbf\xbd\x77\xe1\x4f\x79\x69\xdf\x37\xb2\xcc\xdf\xef\x83\xef\x13\xab\xb7\x5c\xdf\xef\x63\x91\xa6\xb1\x1c\xee\xf3\x80\x38\x55\x3e\x4d\xb7\xc3\x45\xf1\x7b\x44\x81\xd1\x4d\x1a\x68\xbf\x2f\xaf\x0b\x4a\x81\x6e\x02\xd9\xed\x70\x14\x7c\x8f\x9c\x43\x68\xad\xef\xcb\x34\xae\x67\x68\x2c\x8f\xf6\x3c\x0c\xf5\x65\x2b\xe2\xe5\xcf\xa6\xef\xf7\x6c\xfc\x46\x5f\x2c\x54\x87\xcd\xfd\x7b\xe4\x58\xbe\x20\xcb\xfe\x14\xb7\x2b\x2c\xbe\xff\x29\xe5\xfd\x91\x5d\xa0\x3f\x85\xeb\xb9\xf4\x3e\x89\xbb\xfd\xa9\x5c\xb3\x4f\x90\xef\xb0\x6e\x7f\x8f\x5c\x33\x5d\x8f\x4f\xd3\xde\x7d\xb8\x3f\x55\x79\xb8\xc3\x24\xfd\x3d\xe2\xbb\xd7\xa2\xf7\xf5\x34\xed\x24\xed\x5b\x33\x58\x77\xbf\x47\xf6\x29\x9e\xfc\x78\x7f\xc2\x66\xfb\xd2\xf4\xbe\xb8\x4c\xbb\x49\xfb\xbe\xd1\x93\xee\x33\xd9\xe7\xa7\xf4\x77\xd8\x72\xbf\xc7\x9d\x34\x8d\x65\xea\xfc\x3d\xf3\xd7\x4e\x7d\x2e\xaf\x35\xca\x77\x6c\xb2\xcf\xf6\x67\x79\x3d\x17\xfb\xd4\x3e\x7b\x96\xd7\x0c\x66\xd5\xad\x8a\xd7\x3d\xbb\xc7\xb9\xf3\x7d\x43\xf3\x3b\x3c\x96\xa3\x13\xa2\x5c\xeb\xe9\x3d\xff\x70\x5f\x2b\x96\xb9\x3f\xa7\xdb\x9d\x84\x36\x4f\x7d\xdb\xd3\xed\xce\x45\x9a\xe6\x70\x7a\x9f\x9d\xd8\x2f\xaa\xf0\xdb\x9f\xcb\x73\x47\xc0\xd8\x56\xbd\x07\x6f\x7f\xf7\x9b\xdf\x5d\x3c\xeb\xb9\xdd\xe7\xcd\xef\xee\x7d\xf6\xb8\xdd\x93\xa4\x2d\xd1\xdc\x0e\xd5\xee\x5f\x1d\x92\xb4\xb1\x6d\xdf\x9a\x8d\x0d\xf5\x0c\xb6\xf6\xdd\xef\x63\xdb\xd2\x34\x9c\x23\xc5\x80\x0f\xe8\xc6\xdf\x63\x92\xb6\x44\xbb\x4c\xc3\x7a\x0a\xb8\x74\x6c\xb5\x8a\x86\xea\x01\x5b\xfb\xf6\xe0\xd8\xea\x23\x5a\x23\x1e\xdd\xb7\xcf\xc6\xd6\x4c\xe3\x59\x51\xe6\xfc\xd8\x74\x56\xc6\xd6\x83\xb4\x14\x6d\x37\xed\x20\xc6\x9d\xfa\x94\x89\x69\x6c\x83\x63\x19\xea\x73\x84\x69\x3f\x6c\x3c\xad\xcb\xf0\xfc\x82\xed\x42\xed\xc2\xed\x78\xc6\xe4\x67\x18\x5b\xb8\x1d\x72\xd4\x36\xa1\xeb\x8c\x4d\x77\xf8\xd8\x78\x8e\xda\xd4\x37\xca\xd3\x34\x7e\x3f\x15\x83\xfb\x9f\xc5\xe1\xb1\x4d\x7f\xde\xc9\xa1\x4e\x7d\xa6\xe9\xa1\x4e\x7e\xc2\xa5\x69\xc8\x7c\x35\xb6\x79\x92\x36\x44\xbb\x45\x5b\xdc\x32\x4b\x7d\x2e\x2f\x37\x6b\xdc\x74\x6f\xa7\xfd\x0f\x0d\x4b\xa3\x6a\x26\x63\xdb\xdd\x27\xaf\x24\xd5\x99\x1f\xdb\xe1\xa5\xe1\x95\x24\x24\x8e\xb1\x1d\x5e\x9a\x83\x21\xa6\x55\x4b\x7a\x78\xcb\x9c\xbf\x3e\x35\x4e\x19\x9a\xc7\x86\x92\xde\x9b\x8a\xb2\x8f\xed\xf4\xba\xa0\x58\xf7\x26\xd3\xdd\xd8\x4e\xcf\x01\x20\x20\x5b\x6f\x7a\xdf\xe5\xad\x7d\xb1\x4f\x6f\xd1\xcb\x47\xe9\xe2\x1c\xba\xb6\xfd\x75\x98\xf6\x0b\x93\xd5\x38\x2f\xcf\x81\x2e\x06\x61\xf6\x8f\xed\xf6\x37\xba\xb9\x9e\xde\xa2\xb7\xdb\xa1\x0e\x8b\x8b\x6e\x0c\x98\x78\xbe\x47\xce\x2f\x34\x96\xc7\xeb\xf9\x80\xbd\x0a\x1b\x7b\x94\x4d\xb4\xb2\xfd\x68\xdf\xfb\x8a\x6c\x63\xa3\x90\x1d\xa8\x90\xf3\x28\xb2\x0c\x8c\x42\x76\xa0\xba\x04\xa3\x98\x1d\x14\x5e\x9d\x2a\x08\x3d\x4a\xd5\xba\x94\xc6\x7a\x49\x9f\x88\x36\x8a\x6c\x67\xa3\xb4\x20\x4d\x63\x91\x66\x39\x0a\xd9\x88\x0a\x00\x8f\xd2\x2e\xd3\x6e\xd2\x34\xce\xae\x3d\x58\x50\xd5\xc2\x40\xf9\xa3\x48\x73\x1e\x85\xec\x40\x79\x59\xa3\x98\x1d\x94\xe0\x38\xab\xc6\x12\x1e\x27\x59\x85\xdc\x9a\xa3\x98\x55\x94\x48\xd2\xbe\x7d\x5d\xd2\x63\x81\x77\xd4\x18\xe8\xa3\x4c\xf7\xc9\x33\xad\x10\x82\x51\x7c\xa6\x0b\xcf\xb4\x90\x62\x47\x99\xbb\x69\x07\x69\x29\x9a\xdf\xb7\x7e\xb5\xa9\xbe\x3d\x58\x96\xdf\xb7\xf8\x3e\xb1\xc9\xb2\x3c\x77\x5e\xc7\xaa\xbf\x33\xca\xee\xb1\xec\x60\x69\xf2\x16\x8e\xb2\xbb\xdd\xce\xef\x10\x6a\xe7\xf3\x8e\xe2\xfe\x65\x1b\xde\x83\x87\xc7\x79\xf0\x7d\xa9\xb1\x9c\xe2\x75\x28\xdb\xff\xd2\x34\x77\x9f\xcd\x72\xb1\xcf\xa9\x76\x97\xfb\xbc\xd8\xa7\xf7\xe0\xed\x76\x37\xfb\x14\x1f\x2c\xf7\x30\x8d\x7d\x7e\xa2\xdd\xa8\x52\x67\x46\xe5\xb5\x2a\xb7\xd4\xa8\x12\x41\x47\xa5\x08\xaa\x70\xe3\x51\x65\xd1\x1b\xa8\xf0\xfe\xd2\xbe\x7d\x56\xa5\x76\x0d\x54\x73\x7f\x69\x21\xda\x6d\x1a\xe6\xa0\x90\xe2\x51\x65\x82\x1e\xa8\xf2\x5e\x0c\x3f\x3c\x50\xd5\xfd\x7b\x4c\xd2\xbe\xf9\xd5\xe6\x76\x40\x88\xdf\x14\x22\x3b\x50\x9c\xfd\x7b\xe4\x58\xb4\xaf\xab\xaf\x6a\xd4\x50\xef\x0a\x89\x19\xa8\xa1\xfe\x3d\x06\x9b\x69\xc9\x64\x15\x18\x28\xa5\xfe\xd2\xb4\x64\x3e\x9a\xb5\x73\x7a\x3a\x0e\x75\xe8\x13\xd5\xc1\xe9\xe9\x38\x54\x1f\x5b\x54\x4f\x7f\x69\x5a\xb2\xe1\x61\x06\x97\x7a\xa8\xcf\x70\x9f\x3c\xb6\xe1\x39\x84\x3f\x1f\xb0\x59\x0c\x7a\x3b\xaa\xfc\x7d\xa3\x12\x77\x45\x09\xa7\xa3\x66\x98\xc6\xcf\x1e\xfa\xb4\xd3\xcb\x39\xb9\x2e\xda\xd6\xd5\x47\xb3\xd2\xc0\x2d\x54\xbc\x51\x97\xdb\x51\x52\x56\x98\xdd\xa8\xbb\x69\x3b\x3f\xed\xd4\x38\xf7\xd3\xb4\xeb\xbf\xff\x19\x32\x7a\x8c\xea\x9b\xb8\x1e\x5c\x96\xa5\xdd\x72\xb8\x4b\xde\xb6\x8a\x17\x18\x28\xb2\xfd\x3d\x62\x0a\xc2\x4e\x1a\x28\x97\xfd\x3d\x62\x0a\xe9\x1d\x7f\x79\x57\xf3\xd6\x14\x14\xc0\xa8\xb7\x97\xf3\xc6\x72\xa6\x77\xae\x4f\x5f\xa5\x72\x98\xde\xb9\x8f\x3f\xdf\xc3\x3e\x9b\xe6\xe7\xdb\xaf\x52\x50\x4e\x6f\xb3\xc7\x9f\x96\x82\xb2\xc2\xc1\x46\xb3\xa0\xdc\x36\xf6\xf9\x85\xd8\x8c\xb6\x2d\xd3\x4e\xd2\xbe\x3e\x51\x75\xfa\x7b\x64\xbb\xa1\x76\xb2\xd1\x8f\x56\xd8\x6e\xb8\xdd\x6d\x1a\xe7\xa7\xad\xd4\x64\xe8\x1b\xad\x0e\xd2\xd4\xa7\x5c\xc4\xa3\xf1\x46\x55\x40\xf0\x68\xbe\x51\x5b\xe5\xfb\x42\xef\x93\x7b\x7b\xc0\x34\x5b\x36\x65\x1c\x8d\xd6\x4e\xd3\xb8\x2e\xa9\x76\xdd\x7d\x76\xd2\x74\xf3\xa3\x94\xf2\xf7\xc8\xb1\x68\x0b\xa2\xea\xf1\xf7\xc8\x76\xda\x4b\x2d\xdd\x27\xe2\x10\x36\xa5\xd5\x8d\x26\xa5\x72\x34\x1a\x4b\xe6\xf6\x6f\xb6\xe1\xd1\xa6\x97\x66\x4e\x36\x4d\xd1\xbc\xdc\xbc\xe4\x94\x37\x37\x9a\xec\x2c\xa3\xd1\xce\xa2\x38\xf3\xd1\x96\x87\x4a\x97\x9b\x6c\xc3\xa3\x59\xe0\x45\x49\xe1\xb2\x29\x32\x7a\x34\xd9\x60\x46\xa3\xc0\x2b\x77\xc9\x68\x87\xc7\xc9\x0b\x50\x61\x8b\xa3\x59\xe0\x6d\xd4\x55\x15\x6b\x3c\x9a\x8f\x20\xea\x01\x97\x6d\x7a\xfb\x9e\x9e\x1f\xed\x33\x0a\x00\x1e\xcd\x97\x63\xbb\x1a\x69\x1a\xcb\xe5\xf7\x5d\x7c\x9f\x04\xd0\xf6\xb8\x4f\x0a\x8b\x8a\x71\x1a\x5d\x11\x16\xa3\x17\xce\x41\x17\x7c\xf7\xf6\xed\xdc\xbe\x82\xe1\x1c\x8e\xd9\x18\xbd\x71\x0e\xe2\x76\x5d\x8e\xcf\xd1\xa9\x03\xaa\x96\xfa\xe8\xd6\x01\x3b\xed\x25\x2a\x7c\x37\x50\x02\xf6\x7b\xe4\x38\xb5\x0d\xbb\x6f\x0f\x14\x7e\x1d\x02\x8c\x1e\xdd\x72\x5d\xa7\x5c\xa7\x22\xe0\x03\xa1\x0f\xbf\x47\xe0\x93\x6c\xaa\xca\x36\x50\x6c\xf5\x7b\xc4\xd4\x05\x3d\x35\xba\xe5\xba\x4e\xb9\x4e\x9e\xb0\xd1\xbd\x3d\x51\x22\xf5\xa5\x69\x98\xcb\xb4\x85\xad\xbb\xb4\x95\xba\x75\x2e\x44\x57\x0c\xab\x6a\x7d\xf9\x75\xb4\x88\x2c\xed\x32\xd4\x08\xfd\x1e\xf7\xff\xfe\x67\x28\x9b\x77\xa0\x3c\xe7\xf7\x88\x8f\x20\x7f\xcf\xe8\x87\x9b\x71\x73\x2a\x16\x74\x74\x6b\x47\xfd\xfc\x15\x24\xd1\x50\xcc\xe7\xfb\xcb\xe7\x87\x15\x43\xd4\xca\xfc\x1e\x39\x92\x8f\x63\x75\xcb\x5f\x9d\xfa\x8f\xd2\x17\x46\x97\x39\x64\xb0\x56\xe5\xa6\x08\xe9\xd1\xad\xff\xa0\x2e\xe5\x4b\x53\x9f\x8f\xb7\x0a\x61\xef\x05\xb2\x3d\x86\x4c\x87\x03\xe5\x1f\xcb\xa6\x28\xd1\x31\xb6\xdd\x34\x1c\x05\xe5\x76\x8c\x51\xdc\xae\xb0\x9d\xb6\xed\xb0\xa9\x64\xf0\x28\x28\x25\x63\x0c\x99\x15\xc7\x20\x97\x5f\x9f\xf9\x7a\x0c\xeb\x46\x28\xbc\x38\x14\x5d\x32\x86\xc5\x36\xd4\x58\x2c\x9b\x22\x0e\xc6\x90\x35\x72\x0c\x5e\x00\x0a\x39\x18\xc3\x62\xdb\x68\xbf\x76\x1a\xa6\xd5\x26\x16\x2e\x2c\x02\xb1\x1e\x43\x16\xc7\x81\x92\x82\x2f\x4d\xcb\xe2\x0b\x60\xbc\x62\x5a\x31\xc2\xdf\x40\x35\xc0\xef\xb1\x92\xd6\x45\x73\x9f\x83\xef\x13\x57\x1d\x96\xcd\x50\xee\xaf\x18\x72\x6f\x0c\xcb\x66\xa8\xfc\xf7\xd2\xb4\x64\xe1\x39\x00\xae\xdd\x48\x7b\x63\x84\xfb\xcc\x0e\x9a\xac\x4b\x23\xbd\x9e\x80\xb3\xb3\x06\x3e\x7c\x9a\x07\x4e\xb3\x71\xe0\xc6\x98\x6e\x06\xb1\xad\x6c\x3a\x0b\x28\xc9\xf7\x3d\x72\x59\xba\x3e\xc3\xf2\x14\x16\xa7\x20\xb1\x14\x61\x4b\xdf\x63\x92\xa6\xa5\xf6\x49\x1f\x8b\x4b\xa6\xd3\x30\xe4\x90\x1a\x63\xe7\x58\x74\x1a\xc6\xee\x65\xd9\xb9\x2c\xe1\x76\x5e\x96\x83\x4b\x1d\x5a\xce\xe3\x32\xed\x7e\x97\xc5\x87\xc1\xc6\x15\x94\xa5\x2b\x8e\xaf\x1e\xc3\x6c\x00\x05\xe5\x5e\x9a\xda\x59\x14\x1c\xe7\x2b\x79\xaa\xa0\xc2\x18\xa7\xbb\xbc\x38\x12\xf1\xe2\x61\xfb\xc9\xb8\x38\x03\xe9\x6f\xc3\x7c\x00\x15\xda\x46\xf7\xd1\xbb\x3d\x81\x9b\x1f\x61\x69\xe2\x8f\x17\x0c\x2c\xa2\x28\x9a\x76\x0c\x0b\x90\xac\xc1\xd6\x7d\x2a\x1f\xaf\xe5\x73\xb2\xd9\xf7\xed\xc2\xdc\x03\x95\xcd\x4a\x91\x13\x72\x84\xb9\x47\xa0\x30\x6c\x91\xe3\x68\x84\xa2\x91\x06\x0a\x8e\xbd\xb4\x25\xda\x32\x6d\x67\x76\xf1\xf7\x5d\xa3\xba\x5d\xad\xa4\xa9\x4f\xb3\x88\xa8\xcc\x4a\x96\x46\x18\xd5\x63\xa9\x1c\x8b\x8e\x57\x58\xd6\x43\x5d\xae\x97\xf6\x7d\x3c\xd4\xd9\xfa\x1e\xd9\x4e\x56\xb3\x50\xec\xc4\x88\xc1\x39\x68\xbf\xa3\x7a\xd5\xf7\xc8\xb1\xc8\xf2\x10\xc3\x63\x21\x1b\x28\x3a\x7b\x28\x52\xf5\x3d\x22\x7e\x4b\x70\x76\x23\x6c\x4c\x8d\xe0\x38\xc5\xe1\xc3\xf2\x63\xbc\xaa\xd6\x18\x5e\x96\x74\xb3\x64\x97\xb2\xdd\x86\x8d\xa5\x01\xc3\x4a\x91\xbf\x69\x84\x42\x18\x07\xea\x28\xbd\x2b\xad\xe5\x5c\xfe\x0c\x8b\x9f\x41\x86\x87\xb0\xec\x88\xea\x46\x2f\x4d\xd3\xf3\x71\x8e\x9d\xed\x24\xcf\x84\xb5\xb7\xd8\xb9\x95\xb4\x73\xc3\x37\x77\xec\x8c\x51\x5d\xff\x28\x02\xc7\xe1\xa1\x1e\x7c\xa5\x6c\xb7\x61\xbb\x0b\x6a\x08\xbd\x1b\x46\x4b\x63\x4e\x80\xfa\x41\x2f\x4d\x4b\x6a\x5b\x2a\x4a\x05\x95\xa2\xc8\xcf\x11\xb6\xa5\xb2\x2c\x90\x41\xaa\x06\xca\xfc\xfc\x1e\x79\xde\x6b\xd1\xb2\x59\x24\x0d\x88\xa4\x46\x94\x1e\x28\xef\xf3\x3d\x62\x37\x09\xf1\x6f\xc4\xe5\x39\x90\x4f\x54\xef\x6c\x6b\x8c\xa8\xaf\xf3\xd2\x34\x87\xdb\x3b\xed\xe6\xfc\x64\xf3\x0d\x33\x03\xd4\xd9\x79\x69\xda\x16\xd6\x26\x51\x53\xe7\xa5\xe9\xb4\x58\x9b\x0c\x72\x0a\xa1\xe6\x0d\x87\x71\x8c\x44\x4d\xc4\x52\x65\xb4\x40\xa1\x9a\xdf\x23\x62\x13\x4b\xd5\x0d\x90\x8a\x4e\x1c\xc9\xe8\x44\xe1\x49\x8d\x34\xa7\xc8\xc2\xef\xf7\xb9\x60\x47\xda\x25\x83\x32\x35\x2f\x4d\x7d\x9a\x8b\x24\xb9\x88\x40\xe7\x87\x43\x4a\x06\xca\xd9\xbc\x34\x8d\xb3\x7a\x9c\x44\x61\xd2\xb2\xa4\x4d\x47\x28\x5a\xf3\x36\xd3\xeb\x2c\x83\xa0\x80\x4d\x29\x42\x1f\x1c\x69\xe6\x83\x02\x35\x2f\x4d\x53\xe8\xda\x66\xd9\xf9\xd9\x75\x92\xd2\xb6\xa3\xec\xfc\xec\xba\x1e\xd2\x12\x7e\x92\xf9\x54\x99\x9f\xd3\x0a\x2a\xea\xcf\x94\x52\x75\xca\xd2\x72\x46\x52\xce\xa8\xba\x1f\xd2\x76\x9e\x4c\xce\x4f\xc7\x28\xd3\xf3\x4b\x06\x90\xea\x12\x48\x7b\x79\x92\xc2\x84\x3d\x71\x8e\xc2\x19\x09\xc5\xd6\x90\x4d\x23\xad\x1a\xe4\x64\x3b\x1d\xa3\x9c\x6e\xb7\xd8\x4e\xe2\x73\xda\x3e\x94\x8b\xed\x74\x54\x72\x79\xad\x61\xba\x2d\x4a\xfc\x1d\x69\xa1\x20\x0f\xf6\xe9\x6f\x6b\xe5\x20\xa1\x1c\x94\x26\xa1\x27\xad\x1c\xe4\xc9\x76\xde\xd6\xd6\x4e\x51\x54\xa5\x94\xe6\xad\x6b\xa9\x20\xe1\x2d\x2d\xaa\x09\x3a\xf2\xf2\x5a\x5f\xec\x53\xc2\x4b\x5e\x61\x1a\xc7\x22\x43\x48\xda\xad\x82\x9a\x2b\x2f\x4d\x73\xb0\x5a\x91\x30\xeb\x96\x26\x43\x48\x9a\x4d\xe4\xcd\x76\xf2\xe0\xa5\x65\x86\x24\x2b\xb0\xba\x88\xaa\x29\xdf\x63\x90\xa6\xb1\x98\x15\x24\x59\x41\xf3\x1e\xb4\x16\x8d\x08\xab\x97\xf6\x7d\x07\x14\x4a\xf9\x1e\xc1\x5a\x05\xbf\x3a\xa6\x82\x9b\x07\xca\x9d\xbc\xb4\x26\x9a\xfa\x9c\x84\x21\x6f\x12\x52\xa6\x55\x95\x59\x7e\x7d\x2e\xd1\xd2\x34\x9c\x4d\x61\xd0\x8f\xa9\xc8\x9e\x81\x5a\x25\xc5\x68\x54\x63\x5a\x55\x99\x95\xe8\x9b\xd2\x0f\xa6\x05\x91\x09\x7d\xa4\x28\xf2\x6c\x4c\x1b\xa4\x26\xa2\x23\x4a\xd7\x15\x30\x6d\x90\x9a\x8d\x7d\xea\x0a\x98\xb6\x12\xcc\x4e\x9a\xf6\xf5\xb4\x8d\x79\x92\x17\xa8\x24\xc6\x98\x16\x44\x26\x79\x81\x5d\x74\xa8\x18\xf2\x3d\x5e\xa4\xb9\x9d\xce\xc3\x84\x29\xa0\x74\x79\x91\xa7\xdd\x38\x33\x76\xd2\xb4\x2e\x16\x52\x26\x75\x0e\x55\xdf\x1f\xd3\xf6\x60\x54\xde\x28\x45\x05\xc1\x07\x4a\x6d\x7c\x8f\x1c\x8b\x78\xe4\xb4\x8b\x07\x15\x2b\x5e\x9a\xda\x4d\xaf\x27\x79\x81\xc0\x9a\xc6\x34\x2f\x98\x94\x44\x2c\x7a\x4f\x2b\x0f\xa8\xd7\xf0\xca\x60\x9a\x83\xad\x58\x93\xd2\xc6\xf0\x9e\x30\x9f\x98\x14\x27\x86\x0c\xc9\xd3\xc6\xe2\x79\x30\x85\xc4\xdf\xdd\xda\xc3\x3c\x37\xd2\xb4\x5f\x4e\x7f\x77\x8a\x13\x76\xc3\xa1\x10\xc3\xef\x91\x22\x83\xdd\x70\xd3\xbc\x60\x92\x17\xd8\x9d\x36\xcd\x0b\xe6\xc5\x39\xc8\xa0\x31\x7d\xde\x51\x25\xa1\x18\x74\x68\xcc\x47\xf7\x18\xea\x1b\x14\xc3\x09\x8d\x69\x33\xc2\x7c\xc0\xe7\x87\xf7\xc4\xe3\x73\x44\xb1\x60\x0c\xf7\xe9\xb1\x90\x17\x0c\xef\x17\xf3\x82\x49\x5e\x30\x24\xd4\x3a\xa2\x72\x2c\x94\x55\x2e\x43\x57\xf8\x52\x28\xfe\x58\x88\x9e\x2b\x02\x73\x1a\xcb\x7c\x02\x25\x0b\x5e\xda\xb7\xe7\x97\x15\x8f\x45\xc5\x43\x90\x4c\x63\x99\x17\x2c\xf2\x02\xbb\xda\x96\xc5\x89\x45\x71\x42\x95\x66\xc7\xb2\x38\x81\x92\x04\xc5\xf0\x43\x63\xf9\x4c\x2f\x9e\x69\x55\x67\x1d\xab\x79\x0e\x8d\x73\xd0\xfe\x5c\x76\x29\xad\xce\xef\x2e\x3e\xb8\x7c\xde\x17\xe5\x82\xf1\xaf\xd2\xf0\xb2\x61\x70\x75\x6e\x0b\x99\x43\x96\xc5\x86\x45\x7d\x46\x71\xfe\x63\x8d\xc3\xb4\x87\x34\x2d\x8d\x3d\xbe\x00\xfb\x7f\x69\x5a\x52\xb3\x8a\x85\xe0\x41\xe3\x22\x0d\xc7\xc8\x8f\x45\x91\xc2\xde\xbd\x65\x76\xf0\x03\xcf\xb7\x07\xcf\x41\xb1\x03\xb8\xf8\x2f\x4d\x4b\x6a\x76\x00\x48\xfa\x57\xd7\xd1\x1c\x6c\xf0\x5e\x64\x15\x42\xcc\x19\xcb\xac\x82\x69\x9d\xae\xb3\x37\x96\x95\x16\xc4\xc7\xbe\x34\xcd\x6f\x79\x0e\x54\x68\x94\x72\x37\x96\xbd\xc1\x8b\x2c\xc6\xae\xb8\x65\x85\x66\xed\x80\x22\xd6\xed\xb1\xec\xa9\x5a\xe4\x3e\x82\xd2\x1c\xcb\xca\xcc\xa2\x94\x22\x84\xb2\x01\xfc\xf9\xef\x91\x4b\xad\x13\xb8\x6c\x43\x5f\x07\xfb\x14\x57\x5e\xe6\x4c\xeb\xe4\xd4\x7d\x92\x4e\x9f\x08\xc4\x7b\xb9\x04\xcc\x58\x96\x60\xd6\xc9\x2d\x21\xa9\x61\x59\x61\x59\x54\x58\x94\x1e\x30\x96\x9d\xcf\x00\x78\x7f\x69\x1a\xcb\xed\x25\xbb\xb9\x64\x3e\x2d\x0e\xfe\x58\x08\xfe\x28\xe1\xd3\x62\xab\xc7\x22\xf7\x11\xae\xc2\x58\x0e\xf0\x58\x48\xe8\x29\xa9\xad\xbb\x9b\x8b\xec\x1b\x10\x9b\x75\xa9\xee\xb6\x5e\xec\xb4\x5e\x08\xd0\x7b\x00\x27\xfe\xf7\xf8\xab\x79\x22\x46\xbf\x5b\x5f\xd9\x11\x17\x52\x04\x6f\x33\x76\xeb\x2b\x3b\xf5\x15\x41\x74\x8c\xbd\xfc\xe9\x93\xc3\xd4\x8e\xdf\xed\xcf\xde\xa9\xaf\x08\xf0\x60\xec\x35\x4c\x9b\xa4\xa5\x68\x9e\x43\xe3\x38\x75\x1a\x80\x14\xff\x3d\x72\x2c\xda\xd5\xbb\x63\x46\x00\x10\x5f\x8c\x0c\x35\x76\x5b\x44\x80\xfd\xfe\xd2\xf4\x3e\x1b\x4d\x77\x1a\x4d\x95\xf2\x3e\x76\x1b\x4d\x77\x84\x9e\x15\x3b\xc9\x77\x87\x9e\xed\x54\x4a\x84\xf5\x37\x76\x73\x9e\x9d\x82\x88\x40\x4f\xc7\x6e\xce\x03\x90\xf6\xe2\xc2\xfb\x63\xb7\x61\x74\xa7\x61\x54\xf0\x80\x63\x8f\x3f\x7d\x9e\xa4\x69\xee\xca\x10\x1d\x3f\x58\x75\x81\x39\x8e\xdd\xca\x0c\x20\xd3\x5f\x9a\xfa\xb4\x05\x06\xf0\xe7\x2f\x4d\x7d\xda\x83\xb7\x93\xf3\x28\xec\x7c\xec\x8e\x35\x01\x08\x78\x29\x42\x5d\x18\xbb\x15\x96\x9d\x16\x4e\xa1\x37\x8d\xdd\x16\xce\x9d\x16\x4e\x01\xe2\x8e\x7d\xf7\x58\xc8\x26\x04\x84\x32\xf6\xc3\x6b\x4d\x65\x66\xfa\xbb\x5b\x99\x01\x9e\x76\x31\xe8\xce\xd8\xcd\x26\x76\x0a\x30\x76\xa7\xed\xb6\x87\xec\x88\x1f\x2b\xd3\x7b\xc2\xa6\xd1\x9d\xa6\xd1\xe9\xef\x6e\x7b\xc8\x4e\x45\x67\x4a\x7f\xdf\xed\x22\xd9\x2f\xb6\x53\x2c\xcd\x7e\xfd\x69\xf7\x90\xa6\x76\xb7\xcf\x1f\xc2\x49\x8b\x4a\x6c\x8c\xfd\xf6\xfe\xa4\xe0\x23\xc8\x9b\x01\xf4\xeb\xdf\xe3\xc3\xf9\x79\x2f\xd9\x1e\xb2\xc3\xbb\x5e\xa6\xf7\x8b\xed\x21\xc0\xbb\x2e\xc5\x2e\xba\xfd\xf9\xd3\x27\xc7\xa9\xfd\x72\xd8\xbb\x0e\x98\xeb\x52\xa6\x2e\xf8\xc3\xfc\xe5\xa0\xcd\x43\x45\x59\xc7\x61\xa5\xe4\xa8\x18\xa7\x30\x6a\xc6\x61\xa5\xe4\xa0\xe2\xa1\x44\xea\x71\x58\xf1\x00\x82\x74\x29\xca\x8a\x1e\x87\x05\x91\x83\x82\x88\x6a\xe0\x8d\xa3\x2d\xd3\xd8\x4e\xae\xd9\xc3\xee\xc9\x83\xd6\x51\x7b\xc6\x8e\xee\x39\x74\xb6\x13\x2f\x38\x94\x5d\x35\x0e\x9e\x69\xd5\xfd\x1f\x87\xd2\x0d\xc6\x41\x89\xc1\xbe\xaa\xc3\xca\x05\x10\x98\x4b\x51\x69\xfb\x71\x58\xb9\x00\xfa\x72\x31\x5e\xca\x38\x7c\x36\x0f\x4a\x13\x4b\x7b\xe2\xb0\x31\xe1\xa0\xd7\x42\xf0\x62\xe3\xb0\x99\xf3\xa0\x99\xd3\x3e\xae\x63\xf7\x38\x79\xfe\x94\x42\x3d\x0e\x5f\xe1\xc7\xce\x71\x4a\xf9\x3d\x0e\xaf\x19\x15\x08\x3b\xb2\x8e\xc3\xdf\x96\xe7\x6f\x89\x4f\x1c\xa7\xc7\x42\x43\x83\x30\xba\xc6\x61\x25\xe1\xe0\x19\x5b\xde\x2f\x3e\x63\x07\xae\xe9\x2a\xe4\xef\x01\xc8\xe4\xef\xf1\x24\x4d\xf3\xb3\x22\x00\x60\xe1\x52\x7d\x37\x1e\x8f\xfb\xc4\x95\x5a\x95\x26\x34\x4e\x7b\x04\x4e\xf8\x13\xab\xd2\x84\xc6\x69\x45\x1c\x50\xc0\xa5\x6e\xb2\x39\x9e\x8e\xfe\x38\x21\x44\xd7\x4d\x7c\xe9\xb4\x83\xef\x84\xf5\xbe\x6e\xe2\x3d\x80\xf8\xfd\x3d\xe2\x8e\x03\xc2\xc4\x3f\x09\xc3\xa7\x65\x73\x00\xff\x96\xba\x89\x35\x9d\x3e\x12\xc0\xf8\x7d\x69\x7a\xa5\xed\x72\x67\xe7\xd2\x68\xfb\x9e\x3d\x4c\x4b\xd2\x34\x0d\x0b\xdf\x27\x84\xef\x6a\xa7\xd4\x69\xe1\x1b\x78\xbc\x2f\x4d\x63\xf1\xf5\x08\xa8\xdd\x97\xa6\xe5\xb6\x33\x01\xb0\xbb\xc5\x95\xb5\xc6\x69\x97\xfd\x19\x5c\x36\x6d\xed\x33\xfd\xbe\x64\x9f\xd2\x9b\x4f\x1f\x97\x33\xf9\x79\xc5\xb6\x4e\x87\x62\x9e\x93\xf3\x93\xaf\xf5\x74\x08\xf5\xc9\x7a\x1a\x4a\x8c\x1c\xa7\x85\x6f\x20\xdf\x96\x5a\xa4\x5c\x9c\x76\x0e\x02\x04\xb7\x38\x93\x6d\x9c\xcb\x9f\xfe\xbd\x1e\x87\x23\x31\x4f\x47\x62\x9e\xa8\xd1\x58\xcb\xa6\xe9\xd9\x99\x70\xa2\xb0\x45\xb5\x7f\xe9\x74\xbc\xd7\x79\xb0\x9d\x24\xb4\xd3\x37\xe0\x89\x13\x58\x55\x10\x70\x9c\x56\xd3\x81\x82\xfb\xd2\x34\xbd\xd3\xdb\x05\xa6\xbe\x5a\xbc\xeb\x2d\x28\x9f\xb8\xe5\xaa\x92\x96\xc6\xe9\x18\x81\xf3\xe2\x38\x75\xe3\x9e\x97\x3f\xed\xcd\x71\xea\x56\x3d\x6d\xce\x3b\x6f\x8e\x45\x2a\xf5\x69\xef\x20\xd0\x73\x5f\xda\x14\xcd\x73\xbf\xf9\x19\x64\xf9\x3e\x7d\xe2\x81\xb2\xfb\xd2\xf4\x19\xac\xde\x9f\x0f\xe7\xe7\x2d\x68\x15\x1e\x49\x75\xa5\x16\xdd\xaa\x4e\xaa\x1b\xd7\xc6\xb9\x4b\xa5\xbe\xcc\x29\xae\x97\x53\x8c\x21\x7f\xea\xe5\x60\xd2\x0b\x6e\xc5\x6a\xff\xd2\x65\xed\xfe\xda\x38\x3d\x31\xe5\xcb\xc1\xa4\x17\x19\x8c\xfd\x4b\x97\xe3\x73\x90\xb2\xf7\xd2\xa6\x68\xa7\x69\x17\xab\x79\x6a\x0a\xc5\x7d\x56\xf6\x29\xa6\x7c\x59\xc0\xbe\xc8\x98\x54\x60\x65\x5c\xce\xed\xb8\xc8\x5d\x54\x12\x74\x5c\xe6\x2e\x17\xaa\x2f\x54\x3b\x97\x2e\x6b\xfe\x17\xb4\xfb\x6a\x27\xd1\x65\xab\xff\x05\x4b\x5f\xb5\xb3\xe7\xf2\x85\x7b\xe1\xc2\xad\x2a\x56\x32\x2e\x47\x25\x5c\x23\x49\xd3\xdc\x6d\x05\xbc\x10\x31\x5a\x55\xed\x69\x5c\x76\x47\x5e\xb8\x8c\xab\x9d\x3d\x97\x2f\xe3\x0b\xee\x48\x57\x86\x1f\x97\xbd\x05\x57\x72\xee\xd2\x45\x2f\x47\x1e\x5c\x50\xdf\xab\x72\x96\xc6\x35\xff\xd0\x38\x77\x71\xb3\xcb\xfe\xc8\x6b\x91\xe6\x6d\x66\x15\xfd\x5a\x5c\x4f\x71\xac\xcb\x11\x41\xd7\xe2\xba\xe8\xc2\xbd\x76\xaf\xcb\xce\x3e\xc5\xcd\x2e\x0b\xd8\xd7\xf1\xa3\x69\xee\x76\x0e\x02\x29\xb7\xd4\xe6\x6f\x64\x07\xe0\x45\x56\xe0\x5c\xa0\xcb\x31\x69\x17\x59\x81\xaa\x42\x8d\xcb\x3a\x33\xc0\x72\x4b\x6d\xba\x1c\x2f\x27\x45\x5c\x64\x05\x4d\x6c\xe2\xba\x9b\x69\x1c\x8b\x2c\xbc\x97\x85\xda\xeb\xbe\x48\xd3\x5a\xdb\x7a\x7f\xc1\x7a\x5f\x85\xc2\x3d\x2e\xbb\xfc\x2f\x58\xec\xaa\x73\x88\x6e\x87\x7e\xde\x50\x8c\xab\x3d\x17\xb7\x05\xd7\x1b\x01\x43\xb5\x89\x85\xdc\xbe\xfc\x6f\x9e\x4d\x7b\x2e\x6e\x5f\xfe\xc0\xb5\x7d\x69\xdf\xf7\xbb\x7d\xf9\xdf\x95\xeb\x22\xc1\xfc\xf6\x19\x23\xda\x55\x6d\xb2\xbc\xdd\xf6\xba\x01\x66\xb6\x54\x15\xab\x18\xb7\x85\xda\xbb\xb1\x4f\x09\x6f\x77\x3b\x4c\x83\x2b\x5d\x72\xc8\xdd\x3c\x4c\xc8\xc2\xb5\xc9\x3c\x71\xfb\xe2\xbf\x3b\x97\x45\xec\xe5\xf6\xd1\xbc\x07\xa7\x2e\x63\xf3\xed\xe3\x77\xf3\xf8\xd9\x01\x71\x8f\xd3\xb4\x8b\x34\xb5\x0b\x4f\x2f\x7e\xed\xb4\x64\x3e\x9a\x40\x5b\x2d\x55\x55\x30\xc6\x6d\x97\x3f\x32\x6d\x4b\xb5\x23\xe1\xf6\x11\x03\x9a\xcf\x4b\xd3\xfc\x1c\xdd\x73\x43\x4e\xae\xce\x3b\xba\x7d\x8c\x6e\x16\x43\x76\xfe\x90\x61\x7a\xc6\xbd\x73\x9c\x62\x21\xb7\x6f\x62\x40\xf1\x14\x57\x9d\x19\xb7\x65\xe1\xfb\xe0\xdc\xb5\x3d\x6f\xeb\xa2\x37\xf4\xcd\xea\x1c\x21\x43\xea\x0c\xa6\xe5\x1a\xfa\x67\xdc\x96\x77\xef\x6b\x90\xa6\x3e\x1d\x6f\x73\xf3\xf8\xd9\x01\x71\x3b\x24\x14\x38\xa2\xc5\x10\x3e\xe3\xb6\xbe\xc9\x74\xde\x6a\xe7\x84\xd3\x79\x07\xd0\x3b\x4b\xed\xde\x66\x3e\x62\xc0\xe1\x2c\xb5\x8b\x2d\xdd\x36\x98\x03\x82\xf3\xa5\x7d\x73\x78\x6c\xb2\x7a\x36\xbe\x4f\xc1\x8f\x8f\xf3\x95\x08\x9c\x59\xfb\xfa\x47\x59\xf8\xb1\x69\xea\xe1\xed\x68\xbf\x86\x33\x81\xc7\x03\xd3\x54\x75\xea\xd1\x63\xd3\xd4\xc3\x93\x3b\x64\xbe\x78\xac\x72\x22\x29\xf8\xa5\xa9\x4f\xfb\xb3\x00\x6f\x59\xea\x90\xb9\xeb\xb1\xf9\xe9\xe1\x31\x1b\x52\x2f\x1e\xab\x9c\xcc\x12\x36\x50\xcd\x78\xba\xe7\xc0\x23\x68\x7f\xc8\x63\x39\x19\xf0\x91\xa5\xda\xe7\xf1\xf8\x96\x03\x74\xe4\x4b\x53\x3b\xab\xa3\x0f\x6f\x40\xfb\x3c\x9e\xf8\xd3\x8e\xe3\x94\x70\xfa\xd8\x27\xfe\xa0\x0a\x7d\xb5\x5f\xe3\xb1\xdf\xfb\x07\x04\x69\xdf\xc5\x63\x75\xf4\x99\x3f\x9a\xda\xd9\x54\x04\x00\xc7\x97\xa6\xb9\xfb\x06\x04\x38\x63\xa9\x96\xa6\x90\x1a\xfc\x3d\x26\x69\xea\xd3\xa6\xa2\x67\xe7\xba\x4c\xb7\xd3\x31\x63\x06\x71\x1d\xf2\xef\x3e\x3e\x9e\xc0\x5d\x2c\x75\x78\x8b\x3a\x65\xe9\x39\x2b\x69\x6a\x67\x8b\xf2\xc3\xa3\x2b\xc0\xc2\xf1\xd8\x54\x84\x64\xe2\x52\x55\xb6\x61\x3c\x16\x94\x1f\x1e\x5d\x95\x40\x18\x8f\x05\xe5\x87\x6a\x6c\x88\x15\x3e\xb6\x36\x3f\x30\x15\x55\x55\x3e\x18\x8f\x85\xe8\x87\x42\xb4\xd3\x92\x1e\xfb\xc8\x9e\x3b\x48\xd3\xfb\xee\x69\xda\x22\x4d\xeb\xe9\x30\x5c\x00\x78\xbd\x34\xcd\xcf\x66\xa4\x87\x2a\xb5\xaa\x1a\x8c\xc7\x66\x24\x66\x33\x57\x15\x2c\x18\xcf\xe3\x7d\x4d\xe1\x5b\xb5\x06\x62\x13\x3b\x88\x6d\x8b\xff\xfe\x67\xc8\x4a\x1d\x4e\x66\x8e\x6d\xe3\x30\xbf\xa3\x12\x9b\x32\xb2\x62\xa3\x10\x2d\x5f\x48\x18\x29\x2c\x7e\x48\x61\xc2\xfd\x8f\xad\xb8\x4f\xb8\xc8\xaa\xd2\x99\x62\xd3\x25\x1e\x5b\xe1\x52\x7f\xd6\xa0\x70\x12\x74\x30\x09\xba\xca\x4f\x12\x9b\x00\x03\x62\x83\x4b\xbc\xc6\x77\xfc\x62\x6b\x1e\x4b\xfb\xb5\xd3\xfc\xc4\x42\x62\xe3\x25\xae\x94\xa5\xd8\xc4\x42\x62\x6b\xec\x73\xa8\x9d\x02\xe7\x03\xb9\xd2\xa5\xca\xe1\x11\x5b\xf7\x1c\x28\x44\xab\x76\x5c\x6c\xa3\x89\x46\x15\x5d\x35\x27\xc2\xc9\xd3\xb1\x51\x45\x57\xad\xe4\xd8\x86\xd7\x9a\xac\x47\xe9\x4c\xb1\x0d\xbf\x2f\xb8\xd6\xa9\xf7\x85\x3f\x6d\x70\x0b\x4e\xcd\x4f\x00\x05\xb1\xc1\x77\x56\x55\xa0\x24\xb6\xf4\xfc\x92\x47\x65\x6a\xee\xb2\x60\xc7\x96\xaf\x3a\x2d\x47\x42\x6c\xd3\x4b\x3d\xd9\xe5\xd2\xf4\xa6\x87\x32\x39\xbd\xa5\x4f\xa4\x24\xcb\xd8\xa8\xf5\x0b\xb9\x38\x9c\x38\x1d\x1b\x0c\xdf\xae\xd9\x19\xdb\xf2\x56\x82\xe1\xbb\x2a\x7d\x2a\x0c\xcf\x16\x1b\xdc\x6a\x55\xe9\x53\xb1\xed\x9e\x1e\xe2\x04\x8d\x7b\x1e\x9b\xdc\x6a\xb1\x51\xd8\x50\x6a\x55\x6c\x87\x69\x07\x69\x55\xcb\x79\x78\xbb\x50\x9e\x57\x6a\x55\x6c\xa7\xc7\x79\x72\x9c\x4d\xed\x4e\x6f\x5d\x0a\x1b\x4a\xbb\x0a\x27\x47\x07\x93\xa3\xab\x52\xab\x62\xbb\xbc\x5d\xe0\xb9\xaf\x72\xb0\xc4\x76\xbb\xdd\xcd\xf9\x75\xad\xe7\xe3\xb1\xc0\xcf\x55\x73\x68\x9c\x8f\xc7\x42\x35\x5c\x35\xa0\xa2\x48\xd5\x8e\x42\x7d\x5a\xa9\x55\x51\xe4\xe8\x8a\x42\x56\xa0\xf4\xa9\x28\x66\x05\xa5\x70\x0e\x3a\x0e\x4e\x80\x0e\xe4\x3b\x97\x2a\xe7\x4b\x14\x39\xb3\x82\x09\xd0\x55\x35\xb7\xa2\x48\x62\x08\xe4\x42\x97\xaa\x82\x5f\x61\x18\xbd\x28\x94\xf5\x05\x19\x17\xc5\x6c\xa2\x50\x9f\x4e\x6d\xf9\x22\x7d\x3a\x98\x1c\x5d\x55\x16\x2d\x9c\x1c\x1d\xc8\x85\x7e\x69\x6a\xd7\x3d\x3f\x5a\xeb\x54\xac\x2c\x8a\xc2\x7b\x83\xc9\xd1\x55\x35\xb8\xa2\x0c\xaf\x27\x59\x81\xe0\xac\xa3\x98\x15\x14\xea\xda\xca\x9d\x8a\x62\x56\x50\xc8\x0a\x54\x4c\x23\x0c\x39\x16\x4c\xaa\xae\x53\xfb\xb3\x98\x15\x14\xb2\x02\xe5\x55\x45\x09\xaf\x0b\xd2\xca\xaa\xf2\xaa\xa2\x98\x4d\x14\xb2\x09\x39\x82\xa2\x98\x15\x94\xc9\xf7\x89\xcd\x3b\xe1\x3a\x0a\x15\x81\xd9\x4d\xf3\xfb\x26\xdf\x37\xd4\xe7\xf2\x38\x79\xa6\xe5\xd0\x89\xb2\x3c\x77\xea\xe8\xc2\x0d\x8b\x22\x1d\x3d\xca\xde\x48\xd3\x5a\xef\xee\x93\x3a\xba\xea\x22\x44\xd9\xfd\x8d\x0e\xce\x41\x2c\xb9\x1c\x9e\xc3\x31\x48\x1b\xff\x24\x0c\x87\xf3\xb1\xa3\x50\xf7\x98\xde\xbe\x87\x5f\x79\xf2\x95\x53\x4b\x73\xfa\x95\x27\x87\x3a\xf5\xe9\x4f\x1f\x09\xb2\x0a\xf9\x7b\xa2\x5c\x9e\xe2\xc5\xf7\x79\x8b\xde\xde\x16\x70\x97\xd7\xb5\x69\x49\xa5\x7b\x44\x21\xab\x58\xba\xfd\x8b\xdc\xe5\x51\x10\xec\x5f\x95\x93\x15\xe5\xf1\x38\x29\x88\xa8\x6e\x7e\x54\xf9\xa5\x82\x79\xdc\x55\x79\x57\x51\xa5\x08\x44\xe5\xb1\x96\x2f\x28\xaa\x8f\x2e\xf0\x2a\x5f\xda\xc7\x2a\xaa\x8f\x67\xe5\xf1\x54\x96\x54\x54\x1f\xcf\x4a\x53\x98\x80\xf3\xa3\xfa\xa6\x66\xf2\x74\x5d\xba\xe1\x9d\x3c\x1d\x48\x9e\x0e\x05\x57\x44\xf5\xc9\xad\x3c\xb9\x72\x2f\x45\x1d\x1e\x0a\x4f\xa7\xdc\x4b\x51\xa5\x8a\x07\x73\xa7\xeb\xd2\x2e\xac\xc3\x53\x0f\x7e\x86\xcf\x7a\x11\x46\x22\x0e\x22\x11\xd7\xf5\x59\xa6\xa2\xfa\x04\x56\x9e\x40\x55\xb7\x89\xea\x8b\xba\xe6\xaf\x9d\xe6\x20\x94\xa1\xa8\xb4\xcf\x0b\xd7\x37\xaa\x82\x63\xa2\x26\x6e\xdc\x25\x0e\x5a\xa7\xdf\x47\xf5\x5e\x6e\xa9\xa8\xbe\xc5\x2b\x6f\x71\xb9\xa5\xa2\x2a\x70\x26\xea\xe2\x9a\x2d\xf5\xb9\x3c\xf7\xc5\xcf\xbe\x34\x16\x05\xb9\x04\x73\xae\x9b\xc0\x48\xa3\xfa\x36\xae\xb8\x8d\x9b\xc0\x48\xa3\x0a\x0e\x21\x98\x74\xdd\x94\x90\x1d\x55\x88\x86\x81\xfc\xeb\xd2\x94\x5f\x15\xf5\xf0\xfb\x10\xe5\xd2\x84\x6f\x1e\x55\x2e\xb2\xa8\x38\x9a\x6d\x2b\x1a\xe7\xe5\xf7\x41\x85\x6f\x9b\xb7\xb5\x8f\x18\x93\xae\x9b\x72\xa8\xa2\xde\x5e\x6b\x44\x9d\x34\xe5\x50\x45\x7d\xbc\x05\x9f\x1f\xed\xeb\xb3\x29\x8e\x35\x1a\xe2\xd3\x9a\x12\xa5\xa2\xf9\xc6\x6d\xdb\x45\x5a\x17\x4d\x7b\xb7\x15\xae\x8b\x04\xde\x26\x0b\x5a\x34\xb8\x85\xdb\x87\x9d\xfe\xfe\x21\x4d\x5b\xa4\xa9\x4f\x85\x88\x04\x72\xa5\x5f\x9a\xfa\xf4\xad\xda\x2a\xd7\x45\x92\x41\xb3\xf0\xdd\x1a\xd7\x45\x7b\xbe\x35\xcf\xaf\xf1\x3b\x48\x6a\x68\xb2\xa0\x05\xf2\xa8\x4b\x53\xa6\x54\xb4\xe6\xf9\x75\xf6\xa9\xf3\xd0\xba\xe7\xd0\xd9\xa7\xf6\x7c\x93\x05\x3b\xda\xe0\x9e\x98\x1a\xa7\x6f\xdc\x36\xb8\x9e\x53\xdf\xc1\x67\xb3\x05\xbf\x83\x24\x83\x16\x1e\x4b\x72\xad\x25\xb9\xb6\xf4\xfc\x70\x36\x9b\xd0\xf2\xa2\xf9\xe6\x6c\x08\x03\x69\x42\x57\x8c\x96\x5e\x4f\xe8\xf6\x4d\x90\xfa\xd1\x7c\xfe\x1a\xac\xdb\x4d\x58\xeb\xd1\x96\xdf\xb7\xf8\xbe\xa2\x76\x6b\x99\xc6\x3e\xc5\xae\x8d\x2c\x1f\x00\x02\x2d\x4d\x09\x4a\xd1\x0e\xbf\xef\xe0\xfb\x74\xc3\xb7\xd3\xed\xe0\xcc\x6a\xc5\xfb\xd3\x12\x6f\x3b\x89\xb9\xee\xfd\x79\x7a\xef\x9e\x27\x69\x1a\xe7\xe5\x39\x5c\x9c\x83\xf7\xe7\xe5\x3e\x2f\xae\x99\x58\x79\xbb\xbc\x5f\x70\xfd\x35\x25\x36\x45\xf3\x15\xd7\x6e\x8e\xc5\xfb\xf3\x76\xbb\x9b\x63\xf1\x1e\xbc\xfd\x6d\x71\xfd\xb5\x22\xa9\xa1\x3d\x5e\xcf\x87\xed\xb4\x07\xbb\xcf\x6d\x47\xfc\x79\x53\xf6\x52\xf4\x2d\x4c\x03\x3f\x2b\xda\x83\x5d\xa0\x07\xd1\x0b\xbf\x83\xae\xfe\xae\x74\xd8\x00\x74\xff\x4b\x53\x9f\xf2\x4a\x05\xb3\xc6\x9b\x3c\x4f\xd1\xad\x34\x33\x6b\xbc\x15\x89\x05\x5d\xa0\x07\xd1\x71\xdd\x36\x79\x9e\xa2\x2b\x4d\x25\x3a\x24\xe5\xa6\x9a\x14\xd1\x9b\xdb\x35\xb6\xd3\x1e\xec\x3e\xb7\x9d\xe7\xb6\x4a\xaa\xed\xdd\x63\xe9\xec\x53\xbc\xb5\x77\xb7\xc3\x7d\xdb\x94\x9e\x14\xdd\xf7\x6d\xc7\x7d\xdb\xe4\x79\x8a\xee\xfb\xb6\x23\x11\xae\x55\x49\xa7\x06\xdd\x8f\xce\x73\x2b\xaf\x54\x74\xa1\xfa\x45\x0f\x8e\xf3\xf3\x78\x44\x4f\xb7\xc3\x7d\xdb\x84\xb2\x17\x06\xab\x8e\xce\x33\x2d\x8f\x55\x74\x9f\x69\x64\xb3\x57\x81\x1a\x44\xf7\x91\xee\x10\x94\x5b\xd5\xd6\xed\xd3\x53\x58\x9c\xba\xb6\xa7\x33\xd8\x83\x19\xec\x4d\x69\x3f\xe1\x0c\xf6\xe8\x00\xab\x6c\x55\x2c\xb2\xef\x9e\xc2\xce\x29\x48\x2c\xe8\xbe\x6e\xfb\xfe\xeb\x53\xe3\x3c\xfc\xbe\xf7\x6a\x1c\x4d\x37\x40\x3f\x3d\xbb\x93\x5f\x7d\x95\x7f\x93\x85\xbb\x65\xd3\x7e\xf1\x43\x2c\x2d\xa8\x0f\x6e\xe7\xc1\x6d\xde\x84\xb7\x47\xc3\x8b\x53\xc9\x3d\xd1\x65\x17\x8f\x8e\x24\xd5\xa6\xe4\x9e\xe8\x8f\xdf\x07\xb7\x54\x93\x6b\x2d\xba\x2f\x5c\xe6\xb1\xb7\x26\xd5\x6a\x58\x6e\x65\x1e\x7b\x53\xe2\x4f\x0c\x5b\xc2\x06\x60\xfd\x5a\xd3\xe5\xef\x1c\xf7\x60\x8e\x7b\x6b\xba\xfc\x87\xd5\xdf\x01\x4b\x58\x6b\x62\xae\xc3\xd6\xae\x51\x7f\xb4\xef\x4b\x0c\x5f\xb8\x4c\x48\x6f\x72\xc9\xc5\xf0\xa5\x3a\x78\x38\xe5\x76\x8b\xa1\x64\xb0\x18\x8d\xeb\xa9\x4f\x38\xac\xaa\x0e\x04\x9d\x34\xa1\xe0\xc7\xe8\x7e\x1f\xd4\xd8\xa6\x84\xa1\x18\xdd\xf3\xeb\xfc\x0e\xa1\xb1\xc8\x2f\x15\x4c\x64\x6f\x2d\xb4\x2e\x56\x71\x07\x2f\xdc\x26\x06\xea\x64\xf5\x18\xc1\xb9\x8b\x81\x0e\x5f\xb8\x03\xc2\x70\x13\xe4\x5f\x8c\xf0\x77\x80\xcf\xaa\x09\xee\x37\x46\x78\x2c\x30\xa6\x37\xb9\xe4\xc2\x19\xe9\x31\x78\x02\x85\xe9\x17\x63\xfa\x7d\xbc\x54\x55\x37\x20\x86\xfc\x59\x31\x90\x44\xd6\x84\xbd\x1f\x63\xfa\x7d\x30\xb4\x37\xf9\xd6\x62\x2c\xd3\x20\xf0\xb6\xae\xfd\x39\x76\xaf\x0b\x54\xd5\xa6\x04\x9e\x18\xbe\x8c\x07\x2f\xdc\xee\x3d\x78\xf8\x3b\xc0\x60\xde\xba\x18\xe1\x38\xbc\x97\x10\x5b\xd9\xba\x84\xcc\xe1\xcb\x18\x59\xe6\x2f\x4d\xe3\xbc\xbc\x27\xe0\x4e\x6e\xdd\x7b\xd0\x97\xf1\xe0\x65\xdc\x65\x7e\x1a\x97\xd7\xe5\xe2\xdc\x75\xc1\x8f\xdb\xed\xe0\x4e\x6e\x2a\x0b\x15\xc3\xc2\xf0\xe0\x99\xee\x52\xef\xc7\xed\x39\x3c\xdb\x7f\xff\x13\xca\x79\x0a\xe7\x96\xc7\x78\x38\x14\xe9\x63\x4e\x2e\x8f\xc1\x23\xdd\xbd\x75\xe5\x06\x0b\x20\x8d\xbf\xb4\x6f\x28\xa1\x08\x91\x60\xe2\x79\x53\xa5\x8e\x08\x1f\xf7\xd8\xd8\xa7\xf4\x31\x27\x9e\x47\xf0\x9e\xee\x62\xae\x61\x8b\x56\xc0\xb8\xdd\xba\xb6\x67\x28\xec\x32\x02\xb9\x60\x4d\x25\xdd\x23\x6c\xd1\x8a\xca\x25\x93\x5e\x15\x2a\x2b\x13\x51\xd9\x4e\xf7\x7b\x28\xfe\x2c\x82\xac\xa0\x8b\xb5\x86\xef\xe9\x68\x5c\x6a\xc9\xa6\x61\x19\x3a\x90\x1b\xd2\x86\x4c\x02\x61\x95\x39\x60\xdc\x6e\x43\x6c\xd7\x08\xec\x11\x3c\xee\x82\x02\x8c\x18\x5e\x97\x51\x48\xd3\x1c\x94\x33\x1a\x81\xf0\xec\xa6\xdc\xa5\x08\x5b\xb4\x02\x16\xad\xa6\xdc\xa5\x30\xaa\x7b\x04\xf2\x49\x9b\x72\x97\x22\xc2\xeb\x02\xab\x55\x13\x84\x60\x84\x75\xe6\x48\xb6\x93\x99\x21\x7c\x4f\x07\x65\x6f\xe5\x35\x85\x93\xe0\x03\x49\xef\x2f\x4d\x6b\x96\x5e\x33\xb2\x10\xf9\xff\x22\x2c\x97\x07\x59\xc8\x90\x4c\x1b\xb6\x6e\x33\x0b\xde\xc5\x21\x22\xcc\x42\x82\x97\xbf\x7c\x83\x11\xcb\x73\xa7\x3c\xaf\x9c\xa7\x88\xe5\x39\x2c\xae\x99\xf4\xb1\xb0\x25\x2c\x76\x8e\xd3\x7b\x5e\xf5\xa5\x22\x76\x8e\x33\x34\x77\xeb\xda\x41\x5d\x7b\x78\xcf\x2b\x1c\x35\x98\x3d\xdf\x94\xd7\x14\x61\x0b\x5a\x1c\x5c\xeb\xd4\x5e\xb2\xfe\x10\xd4\xb5\x87\xec\x0c\x61\x76\x86\x4c\xf9\x97\xa6\xf9\xd9\x44\x16\xd4\x2d\x54\x82\x3e\xc2\xfa\x43\x90\x2d\x09\x5e\x30\xc2\x3a\x02\xb2\xda\x4b\x0b\xef\x5d\x8b\x1a\x71\x9d\x2f\x7b\x91\xba\x12\x97\x97\x8c\xdc\x4c\x2e\xbe\x88\xdb\x5b\x09\x16\xb2\x26\x17\x5f\x84\x25\x94\xa0\x6a\xa1\xa2\xe3\x11\xe6\x74\x41\x4e\x27\x37\x5e\x84\xa5\x17\x66\xce\x37\xb9\xf1\x22\x2c\xbd\x04\xa5\x17\xe5\x26\x45\x3c\xee\x93\xe6\x02\x15\xd8\x8b\xb4\xf4\xc2\xec\xf8\xa6\xbc\xa5\x48\xb3\xba\x84\xc7\xbf\xd9\x57\xe7\xcc\xf9\xc8\x8d\x63\xd1\x71\x48\xab\x24\x89\x80\x9b\xa6\xbc\xa5\x48\xab\x1d\x49\xb5\x43\x10\x82\xe1\xec\xf8\x48\xaa\x1d\xf6\xb9\xa5\x59\x56\x92\x65\x85\x58\x79\xda\x1f\x97\x54\x2d\x94\x64\x14\x69\xd5\x22\xa9\x5a\x84\xb6\x75\x36\xcf\xa1\x71\x0e\x92\x42\xd2\xec\x2c\x3b\xc7\x22\x29\x24\x2d\xd9\x24\x25\x1b\x25\x20\x45\x0e\xb7\x1b\x6c\xa7\x6d\x9d\x82\xe1\x89\x1c\xbf\x76\xff\x06\x2e\x1c\xce\x90\x8f\x44\xaa\x5b\xb3\x4b\x2e\xc3\xd3\x0f\x7e\x26\xdd\x02\x19\x9e\x3e\x35\x16\xbb\xe4\x9c\x21\x1f\xa8\x53\x51\x9a\x6a\xc0\x46\x4e\xbf\x6f\x72\xb9\x75\x0b\xa4\xb9\x56\x92\x6b\xd9\xb7\x96\xb6\xd1\x27\x85\x9b\xd4\x0d\x91\xcb\xdb\x02\x51\x04\x2d\x37\xf5\xa9\x74\xb6\x48\x72\x9f\xd4\x2d\x90\x16\x6e\x92\x96\x06\xfb\x0e\x9d\x05\x1f\x49\x01\x26\xbd\xb5\x4f\x8f\x13\x00\xc2\xcd\x3e\xb2\xb4\x72\xc1\x6c\xf6\xa6\xaa\x9d\x91\x16\x44\x92\x82\x88\x0a\xd1\x46\xde\x5e\x6b\x1e\x5d\x41\x0c\x46\xfa\xe8\x26\x8f\xae\xfd\x60\xe9\xa3\x9b\x54\x3c\xd2\x5b\xd4\x47\x97\x19\xeb\x4d\xd5\xec\x63\xfa\x78\x32\x2b\xbd\xa5\xb6\xda\x54\xc2\x57\x4c\x5a\xe5\x94\x4c\x14\xd3\xc7\x8c\x19\xe4\x4d\xc9\x44\x31\xad\x40\xcc\xca\x35\xd3\x7e\x71\x76\x79\x4c\x56\xbd\x53\x32\x51\x38\x83\x3c\x26\xad\x72\xf6\x67\x39\x83\x3c\x90\x41\x1e\xd5\x53\x68\x1e\x26\x6c\xf0\x6d\x7e\x79\x00\x31\xdb\x6e\xda\x41\x9a\xba\xb4\x71\x0d\x39\xe1\xa5\xd9\xd5\x35\xad\xa4\x23\x49\x3c\x6a\x98\xa4\x1d\x38\x79\x87\xdb\x63\x35\xbd\xe3\x27\x22\x40\x9b\x3d\x4f\x53\xb8\x0f\x31\x11\x66\xd6\x94\x66\x14\x73\xf9\x75\x48\xc7\x68\x4a\x25\x0a\xe7\x7a\xc7\x5c\x9c\x9e\xd4\xa3\x69\xfb\xd9\xe4\x7d\x2b\xd4\xbe\x70\x1e\x78\x4c\xee\xf8\xe9\x39\xf8\xbe\x9d\xf0\x34\x37\x15\x57\x8e\xe9\xfb\x76\xee\xec\x53\xf2\xe7\xf4\x49\x61\x8e\x78\x53\x2a\x51\x4c\xdb\xaf\x91\x12\xfe\xd2\xbe\xdd\x39\xed\x3e\x9a\xb4\xbb\x09\xb5\x2f\xe6\xe9\xdd\x42\x51\xdf\x2e\xa2\x69\x51\x7f\xc2\xd3\xdc\x96\xd4\x70\xe7\x81\xc7\xa4\xdd\x7b\xf9\xb3\xfb\x72\x9c\x70\x2d\x35\x55\xb9\x8c\x69\xbb\xdb\x44\xfc\x4b\x53\x9a\x51\xcc\xdb\xdf\x0f\x51\xa5\x4d\x55\xaf\x63\x5a\xd6\x47\xba\xf8\x4b\x53\xbb\xc7\x73\x87\xf7\xba\xa9\x16\x75\x4c\xa5\x94\x04\xf3\xc0\xdb\x52\x8c\xcb\xb2\xf7\x7a\xf1\xf4\x2d\x5d\x8e\xcb\x36\xb9\x45\x9b\x9c\x5d\x52\x4b\xf0\xc1\xc1\x9c\xed\xa6\xf4\xa4\x58\x8a\xea\x0e\xa4\x6f\x87\x82\x82\x63\x59\x9c\x5f\x08\xf8\x6e\x4b\x8c\x67\x09\xda\x21\x16\xc5\xf9\x25\x0d\x68\xd9\xec\xb6\x2a\xa7\xa0\x3b\x6e\x35\xf7\xc9\x7b\x73\xe9\x8e\x73\x1a\x78\x2c\x9a\xd2\x85\xc0\x17\xcb\x27\x73\xf1\xde\x14\x02\x5f\x2c\x5b\x04\x16\x4d\xe9\x76\x1f\xad\xee\xa9\x23\x50\xbc\xd9\x7d\xb4\x6c\xae\x43\xca\x77\x69\x42\xe0\x8b\x65\x73\xdd\x1a\xfc\xec\xba\x8c\x96\xd5\x80\x45\x35\x60\x2d\xb7\xfb\xd3\x27\xc7\x29\x55\x66\x85\xe7\x0e\xd7\x59\x17\xcc\x5e\x2c\x5b\x0b\x16\xac\x05\xdd\xee\xa3\x65\x15\x61\xc1\x5a\xd0\x37\x5d\x62\xce\x1d\x8f\x05\xd3\x7d\x57\x02\x75\xac\xf4\x76\x01\x04\x45\xb7\xfb\xc8\x79\xe5\x81\xba\x4b\x2f\xad\x8b\x76\x99\xf6\x90\xa6\xf5\x34\x5b\x5a\x73\xfe\xf7\x3f\x61\x83\xd5\xb2\x86\xc0\x94\xf3\xae\x82\x81\xe1\x94\xf3\x58\xc8\x6c\xe9\xf6\x3a\xad\xe5\x9d\x0b\xd8\xbb\xae\x52\xc3\xb1\xcc\xb1\x90\x7d\xfe\xd2\xf4\x19\x6c\x9c\x40\x86\xf9\x4b\x53\x9f\x96\xe6\x91\x2a\x5e\xfa\x26\xeb\xe7\xb2\x57\x0d\xa9\xe2\x2f\x6d\x89\xe6\xcf\x7e\xb0\x4f\xf9\xf4\x5d\xdb\x29\xd6\xc1\xb1\x88\xeb\x3a\xaf\x3c\x16\xb0\x59\xbb\x4a\x3a\xc7\x3a\xfd\x3e\xd8\x1c\xbb\xea\x57\x86\x4b\xe0\xc5\xba\x38\x16\x71\x4f\xe7\x8e\xc7\xba\xf8\x3e\x6f\xf9\xcb\xef\xbb\xf8\x3e\x6f\x6b\x73\x33\xa4\x91\x97\x6e\x0f\xd1\x32\xc7\x5a\x37\xbf\x91\xac\xf3\xcb\x86\x0b\x14\x6c\x2e\x5d\x19\x4d\xb1\x1e\x6f\xcf\x87\xed\xc4\x75\x77\x7b\x0a\x76\x70\xa5\x2e\x78\xbb\xd8\xcd\x95\x76\x58\x20\xba\xd2\x8f\x62\x77\xe8\xdd\x0e\x0b\x44\x57\x7d\xaa\x70\xf2\x78\xec\xf0\x14\x74\xa5\x1f\xc5\x6e\x0f\x1f\xca\x44\x47\xd3\x67\xdf\x6d\x9c\x40\x1a\xf9\xdb\xec\xdb\xd5\x7b\x75\x97\x70\xfe\xf5\x22\xe6\xb9\x5b\x94\xd8\xe1\xfc\xeb\xa5\xfd\x63\x88\xc4\x6e\x49\x63\x6f\x9c\xbd\x78\xeb\x6e\x45\x00\x59\xe6\x2f\x4d\x33\xb4\x22\xb0\x83\xa1\xf5\xa2\xfb\x7d\xb7\x5d\x63\x87\x8f\xa1\x2b\xe1\x29\x76\x61\x5e\xc4\xde\xb9\x32\x62\xca\xbb\xe2\x7e\x63\x87\xcd\xa3\x2b\x19\x2a\xf6\x7e\x9a\xf6\x90\xa6\x2f\x68\x9f\xe2\x3e\x38\x4e\xed\xd0\xdd\xfe\xfe\x7d\x70\x69\xc4\x94\x9d\x76\x1e\x7b\x70\xee\xda\xa1\xbb\xb5\x80\x9d\x8c\xc9\xbe\xa5\xdd\x8c\x09\x99\xe4\xa5\x17\x31\xde\xdd\x8c\x69\x27\x63\x52\x75\xbc\xd8\xcd\x98\x76\x32\xa6\x22\x1f\xe6\x6e\x7f\xff\x3e\xb9\x66\x62\xbc\xbb\x35\x84\x1d\xfe\xfe\x6e\x1f\xd1\x6e\xae\xb5\x23\x8a\xa7\xdb\x47\xb4\xdb\x76\xb1\x93\x6b\x55\xef\x5e\x47\xf8\xec\x90\xb3\xba\xfd\x47\xbb\xed\x1a\x3b\x62\x90\x7b\xf5\xce\x36\xd7\xda\xe1\xc3\xec\x55\xca\xf6\xee\x88\x3e\x64\xb5\x97\x6e\xff\xd1\xee\x38\x81\x1d\x65\x13\xba\x20\xec\x62\x17\x1a\x46\xec\x90\xb3\x7a\x55\x80\xeb\x7e\xb8\x4f\xa4\xb9\xf7\x2a\xa5\xd9\x69\xee\xb1\x93\xa3\x09\xde\x2e\x76\x73\xb4\xfd\x64\x9f\x4d\xdf\xfd\x74\x9f\x17\x69\xde\xbb\xd7\x1f\x1a\x4e\x7c\xf5\x5e\x72\x7c\xc1\x4e\xce\x54\x65\xb7\xd9\xad\x91\x20\xcb\xbc\x74\x3b\x7b\x76\x73\x9f\xfd\xe1\x1c\x64\x73\xdc\xed\xc3\x64\xda\x79\x17\xc6\x5b\x38\xed\x3c\x98\x76\xde\xab\xe4\x48\x57\xdc\x8b\x63\xe3\xb7\xd5\x3e\x3b\x1c\x4b\x7c\x90\x6b\x55\x71\xbb\xc3\x5c\xeb\x80\x9b\xa4\x37\x69\x9b\x87\x6d\xaa\x07\xdc\x24\xbd\xe9\xa2\x3e\x2c\x83\x31\x95\xbd\xdb\x0d\x74\x98\xa3\x1d\x64\x5b\x2a\x4c\x1a\x87\x05\xad\x03\x60\x9e\xbd\xc9\xe6\x78\x38\xd4\xe8\x68\x7c\x9f\x6c\x8e\x87\xe3\x12\x98\xca\xde\x55\x51\x29\x0e\xf3\x9e\x83\xbc\xc7\x2c\xf4\x30\xef\x39\x80\xb4\xdd\x9b\x0c\x29\x87\x8d\x10\x47\xe7\x1c\x64\x4a\x3f\x6c\x84\x60\x0a\x7c\x6f\x32\xa5\x3b\x05\x3e\x98\x02\xdf\x95\x7d\x15\x87\x79\xcf\x81\x80\xe1\xde\x74\x1b\x1f\xc3\x7d\x92\xf7\x34\x69\xb0\x47\x78\xee\x80\xb5\xe8\x76\xe7\x1c\xb6\x32\x1c\xc9\x75\x91\x90\x79\x38\x9e\x01\x99\xf2\xa5\x37\xf1\xac\xc3\xfc\xe5\x80\x3e\xd6\xed\xb2\x39\xcc\x5f\x8e\x59\xdf\x5b\x47\xa6\xca\xc3\xc2\xcd\xb1\xf8\x3a\x99\x00\x0f\xb3\x90\xe3\x65\x21\xa1\x3c\xb0\x38\xac\xa9\x1d\x8b\xab\xe9\xdd\x69\xb7\xe8\xf1\x72\x90\xf8\x33\x01\x07\x21\x1d\x8b\x9b\xc5\x1b\xd7\x66\x8b\x63\xe7\x04\xc4\x20\x0f\xfb\x6b\x0e\xf8\x6b\x7a\xf3\xa6\x76\x68\x21\x73\xf8\xbb\x7d\x47\xce\xe1\x8f\x03\x46\xd3\xde\xa5\x38\x1d\x66\x3c\x48\xe7\x7f\x69\x1a\xa7\xc5\xa5\x03\xb5\x9b\xba\x80\xe1\xe2\x30\x73\x39\x28\x2e\xd9\x49\x72\x58\xf9\x3b\x10\x82\xdc\x95\xb3\x15\x87\x7d\x40\x07\x7c\x40\x5d\x78\xe1\x71\xd8\x07\x74\x5c\x1c\x8b\xc4\xcf\xc3\xe2\xd2\x81\xb4\xc1\xde\xa5\x54\x1d\x0e\x33\x3e\x6e\x8e\x53\xe2\xe7\x71\xff\x69\xc7\x71\xca\x72\x78\x3c\x7e\x1f\x19\x96\x72\xb6\xe2\xb0\x82\x77\x40\xc1\xeb\xdd\x1b\xde\xd6\xcf\x83\xa2\x94\x10\xa7\xc3\xa5\x3e\xe3\xa4\x28\x65\x9f\xd3\xa9\x74\xc3\x38\x91\x6e\xd8\x55\xf3\x29\x4e\x9b\x57\xce\x57\x04\x0a\x61\xb8\xc5\xe9\x50\x45\x20\x0b\x94\xde\xa5\xd7\x9f\x96\x4f\x4e\xca\x27\x5d\x67\xe1\x6c\x7e\x1d\x79\x84\x52\xbd\xe2\xb4\xa1\xf2\x84\xa1\xb2\xab\x1c\x54\x18\x13\x20\x4e\xf2\x08\xe1\xd0\xc5\x69\x85\xeb\x24\x1f\x50\xa9\xa8\x38\xcd\x07\x4e\xa4\x06\xf6\x2e\x4b\xcf\x69\x85\x0b\x69\xfe\xa5\xab\x54\x54\x9c\xb6\x44\x9e\xc1\x76\xda\xd6\xa7\xa3\x85\xcf\xe0\xfc\xb4\xad\x4f\xf3\x0f\xc0\x03\x0c\xd5\x99\x88\xd3\xec\x03\xe5\x9d\x4b\x57\xf5\xa9\x38\x1d\x8e\x48\xb8\x80\x3e\x24\x12\x9c\x16\x5d\x4e\xa0\x6b\x74\xa5\x80\xc5\x69\xb7\xcb\x49\xd6\x62\x97\xd3\x69\x11\x84\x70\x01\xdd\x6e\xa5\xd3\xae\x15\x20\x07\x94\x6e\xb7\xd2\x69\x03\x26\x90\x03\x5e\x9a\x3e\x9f\xc5\x13\x20\x07\xbc\x34\xbd\xcf\x1c\x04\x45\x63\x5f\x9a\xe6\x60\xc5\x89\x98\x00\x7d\xb4\xf8\x37\x49\xf8\xb4\xa4\x71\x52\xd2\x18\x92\x18\x4e\x47\x24\x12\x32\xa0\xab\x70\x55\x9c\xa7\x77\xe1\xc9\xa1\x4a\xda\x3d\x1d\x2c\x7c\x9e\xfc\x14\xd2\xc7\x4e\xeb\x4e\x27\xa5\x10\x7b\x96\x4e\x3b\x76\x4f\xea\x4e\xca\x3a\x8b\xd3\xcc\xe0\x44\xb0\x46\x1f\xb2\x82\x9d\xb6\xa7\x9e\x37\xe7\xa0\x5b\xe5\x34\x33\x38\x6f\xb6\x93\x15\xcc\xb0\x00\x71\xbe\x07\x7e\x4c\xed\x0a\x67\xf7\xc7\x45\x41\xc3\x4e\xa7\xcb\x82\xc6\x85\xe0\xc8\x6e\xa7\x93\xd3\xfb\xe3\xda\x38\x05\x5d\x46\x4e\xef\x8f\x8b\x82\xc6\x90\x8a\xe7\x12\xbd\x71\x51\x75\xb2\x43\xca\xe9\xfd\xc1\xf4\xfe\x3e\x74\xc8\x9c\xde\x1f\x17\x9c\xb7\x5d\x40\x7b\x71\x59\xd0\xb8\x10\xc7\xd1\x87\x0e\xd2\xe5\xc0\xc9\xab\xa2\x4f\xa1\xe5\x85\x53\xff\xe3\x42\x5a\x72\x0f\x59\x35\x2e\x33\x9f\x0b\xd6\x9e\xae\xb2\xdb\xe1\xd4\xff\xb8\xfa\xaf\x9d\xc6\x69\xcb\xcc\x45\x81\x41\x49\x67\x71\xd9\xc2\x72\xd1\xc2\x12\x4a\x1d\xb8\x6c\x61\xb9\x68\x61\xb1\x47\xea\x72\x3c\x06\xd3\xfb\xbb\x3d\x52\x97\xb9\x01\x32\xfd\x5f\x9a\xc6\xe2\x20\x2b\xa6\xf7\x77\x7b\xa4\x9c\xde\x1f\x17\x05\x0d\x21\xe9\xc5\x65\x4e\x71\x51\xc9\x09\x1d\x95\xcb\x42\xc8\x05\x07\x6d\x77\xf6\xd8\xe5\x74\x84\x0b\x30\xe5\xdd\x19\x62\x97\xb9\xc8\x45\x2e\x62\x6f\xd5\x35\xbd\x9e\x8b\xeb\xa9\x63\x74\x39\xe0\xf2\x7a\x25\x92\x31\x75\x55\x5d\xb6\xcc\x5c\xb4\xbe\x84\x4e\xd8\x65\xb1\xe0\xa2\x58\x10\x92\x6c\x2e\x8b\x05\x17\xc5\x02\xd5\xbb\x8a\xcb\xd9\x08\xd7\xc1\x29\xe8\x14\x5d\xb6\x09\x5f\xe4\x20\x76\x72\x5d\xd6\x55\x2e\x8a\x0c\xa1\x20\xb2\xcb\x31\x9c\x17\xb9\x4b\x48\x77\xb8\x1c\xf1\x45\x14\x82\xee\xc4\xb2\xcb\xdc\xe5\xba\xb8\x2c\xd2\x2b\x2e\x67\x2d\x01\x90\xe0\xa5\xa9\xcf\xcb\x4b\x8d\x3c\xcb\x1e\x3e\x2a\x16\x27\x00\x48\xf0\xd2\xf4\x89\xec\x68\xbd\x28\x6a\x84\x8f\x91\xe3\x34\x2f\xe4\x4b\xf6\xf4\x51\xb1\x4d\xf8\xa2\x1e\xe3\x0c\xb1\xdb\x22\xc3\x4d\x91\x41\x10\x7c\x71\xdb\xfa\x72\x53\x8f\x11\x04\x5f\x18\x85\x20\x88\x42\xd0\x53\xba\xe6\x6d\x71\xe2\x2e\x6c\xa7\xcb\xe3\x56\xe1\xaa\xb8\xe1\xc9\xe9\x29\x51\xca\xe8\x05\x81\xc2\xdd\x2f\xed\x9b\xdf\xed\x38\x4d\x00\x19\x94\x9e\x12\xb3\x6e\x87\x82\xdd\xd4\x63\x52\xfa\xc8\x6d\xa3\xf0\x4d\x19\x25\x75\x54\x8c\x50\x10\x37\xc2\xc4\x7a\x4a\x04\xbb\xcd\x42\x58\x01\xbc\xa7\x8e\xca\x6d\x1b\xca\xdd\x39\x07\x89\x60\xb7\x73\x26\xee\xc1\x76\xd2\x39\x6e\x27\x3e\xde\xa8\x18\x64\x77\x86\xd1\x0b\x82\xe8\x05\x5d\xc8\x7d\x61\xf4\x82\x20\x7a\x41\x4f\x49\xf3\xb7\x3d\x47\x44\x2f\xe8\x42\xf5\x8b\xdb\xae\xa3\x9b\x9c\xc7\xc9\x63\xb7\x39\x0f\x8b\x8a\x77\x27\x8f\xdd\x4e\x60\xbc\x27\xa7\x20\x71\xf0\xb6\xfd\xf6\xa6\x29\x24\xb5\x05\x6f\x73\x10\x22\x1b\x74\xcb\x44\xb7\x65\x8d\x9b\xca\xca\x14\xb7\xbe\x6d\xa4\xbd\x69\xee\x10\x72\x5f\xdc\x76\x2b\x01\x1c\xe1\xa5\xa9\x9d\xdd\x4a\x44\x4b\xe8\x4e\x10\x33\x5a\x42\xdc\xd4\x48\x9c\x20\x76\xef\xfe\xec\x34\x85\x4c\xc9\x3d\xb7\xb5\x0e\x16\x31\xef\x42\x03\x8c\xdb\xd1\x65\x37\x9c\xb3\x7d\x8a\x5b\xdf\x66\x13\x37\xd9\x84\x8a\x6b\xc5\x6d\x61\xe2\xa6\x49\xc3\x49\x60\xb7\xdd\x4a\x37\x85\x09\xb3\xcf\xdb\x0e\xd8\xfb\xe6\xba\x88\xeb\x1a\x11\x21\x6e\x6a\x16\x76\xe1\xdd\xd6\x2c\x6e\x1a\x62\x9d\x3c\x76\xdb\x39\x7b\x23\xae\xa2\x4f\x69\x01\xb7\x35\x8b\xfb\x61\x9f\x32\xbd\x3c\x36\xd2\x02\x38\xe1\xa5\x85\x68\x69\xda\x24\x6d\x89\xb6\x9b\xc6\x3e\xe5\xf0\x7d\x6c\xee\x78\x68\xc0\x9d\x62\xbb\x8f\x43\xc8\x1e\xb2\x10\x21\x05\xc6\x63\x16\xf2\x90\x4d\x4c\x05\x0f\x3c\x36\x77\x3c\x64\x13\x53\x12\xca\x63\xcf\xed\xd3\x38\x07\xb1\xd6\xc7\xea\xca\x43\x56\x30\xb5\xaf\x1f\x87\x6c\x13\x2a\xa1\x2f\x99\xf8\x1e\x47\x8c\xa2\xb6\xfa\x98\xb2\x1a\x3e\x4e\xac\x7a\x68\x4d\x5d\xdb\xfc\x37\x51\xf8\x71\xf6\xf4\x83\x40\xf0\x6e\xc7\xe0\xe3\x78\xd2\x87\x8a\xce\xd2\x89\x78\x2c\xdb\x3c\x34\xc4\x2e\x9d\x08\x03\x37\xc4\x83\x68\x8d\xee\x5c\xb5\xc7\x71\xa8\xa8\x02\xff\xd2\xb4\xa2\x96\x6d\x1e\x84\x5c\x74\x15\x02\x8b\xc7\x32\x0a\xc1\x19\xfa\x92\x8c\x62\x70\x86\x78\x00\x7e\xd6\xed\x34\x7c\x6c\x0c\x79\x68\x6c\x5d\x62\xbc\x8f\xb9\xc8\x43\x39\x64\xe9\x44\x3c\x96\x43\x1e\x1a\x4d\x97\x64\x14\x97\x7e\x0f\x02\x37\x74\xd5\xed\x8a\xc7\x46\x53\x96\x7e\xef\xcb\x3b\xdb\x76\x8d\x87\x76\x0d\x7b\x1b\x1f\xdb\x35\x1e\xba\x88\xec\x6d\x7c\x76\x8f\x93\x02\x8c\xbd\x8d\x06\x7c\x88\x87\x5a\x90\xbd\x8d\x8f\xd5\x9c\xe7\xe0\x6e\x92\xcc\xfe\x38\xf2\xfc\x41\xa0\x58\x17\x4e\x62\x18\x28\x22\x9e\x83\x73\xf0\x89\xb0\x41\x95\x60\x10\xdd\x9e\x48\x83\x41\xc4\x43\x21\xc5\x09\x69\x06\x83\x88\x07\x0e\xef\x6e\x6f\xe3\xe3\xd4\xea\xe7\xe2\x5e\x52\xc8\xcc\x73\xf9\xb4\x40\x3d\x1a\x9b\x34\xdc\xc7\xea\xd1\x03\x8e\x36\x84\x93\x18\x06\x8a\x08\x02\x45\x0c\x7b\x22\x0d\x14\x11\xcf\xfd\xeb\x53\x63\xb1\xea\xf4\xdc\xec\x53\x06\x71\x83\x41\x04\xf0\x1d\x5e\xda\xaf\xcf\xdc\x24\xdc\xe4\x06\xe1\x66\x08\x5f\x31\x8d\xea\x90\x2c\x51\x3f\xe4\x36\xcc\x4d\xf8\x2f\xb9\x81\x6b\x0d\xe1\x2b\xe6\x26\xc1\x27\xb7\xc2\x3e\x3f\x81\x22\x37\x71\xad\x64\x69\xfb\xb1\x75\xf5\x29\x6f\x78\x02\xc4\xe1\xa5\x69\x2c\xf2\x2d\xe5\x06\x23\xed\x50\xb2\x5a\x6e\x0a\x7c\x4d\x54\xb9\x2f\x43\x2e\xc5\xdc\x64\xa4\x4d\xa2\x3a\x0c\x81\x24\xa6\x51\x1d\x72\x6b\x9c\x5f\xb8\xdd\x6e\x1a\xd7\x33\x34\x3f\x09\x3e\xc9\x72\xf9\x63\x0b\x8d\x45\x82\x4f\xb2\x24\xfe\x90\x4b\x31\x37\x19\x69\x13\xe0\x0f\x2f\x4d\x63\x19\x5e\xb3\xc1\x71\x4e\xb5\x1b\x1e\xe7\xe0\x9a\x4d\x7d\xbf\xe1\xb9\xc3\x1b\x3e\xe4\x6e\xcc\x6d\x78\x9c\xc1\x71\x2e\xcd\x2f\x3c\xce\xe0\x7a\x2e\xf5\x29\xc3\x4d\x6e\xc1\x7d\xb6\xd4\x67\xfa\x1b\xc1\xe3\x3d\x94\xac\x96\x5b\x7a\x2c\xd0\xb9\x86\x12\xd2\xd2\xb5\xf2\x93\xb5\xf2\x47\xf9\x84\xe8\x74\xad\xfc\x24\xe4\xc3\x50\x15\xae\xdc\x94\x2c\x9a\x1b\x9c\x47\x43\x55\xb8\x72\x9b\x9e\x1f\xac\xc2\x43\xc9\x6a\x69\xc8\x87\xdc\x16\xfb\xac\xea\x73\xf9\xdb\x2e\x8e\xd3\x7b\x5e\x41\xb1\x49\x58\x87\xa1\x0a\x5d\xb9\x1d\xde\x83\x70\x5d\x0f\x39\x1b\x73\x3b\xdc\x0e\xbc\x67\xc8\xa1\x98\xdb\xe9\x76\xa8\xd3\x34\x54\x85\x2b\xb7\xd3\xf3\x43\xc8\xda\x90\x43\x31\xb7\xcb\x67\xf3\x62\xbb\xa1\xb1\x5c\x3e\x7f\x17\xdb\x85\xde\x77\xbb\x1d\x79\x88\xca\x69\xe5\xf6\x98\xf6\xfc\x68\x6a\xf7\x78\x4f\x3c\x9c\xdf\xd4\xb7\x7d\xbc\x66\xb0\xa9\x8e\x32\x35\xce\xc7\x73\x7f\x38\x77\xed\xc1\x62\xfe\x52\xc8\x43\x94\x90\x96\x45\x8e\x9e\x64\xcd\xfb\x51\x3e\x89\x22\x8b\x22\x4a\xb3\x40\xf2\x19\xaa\x97\x95\xa5\xb8\x1d\xc2\xd9\x86\x20\x0d\xd3\x35\xef\xb3\x20\xa2\x74\xc8\x31\x98\x45\x0a\x52\x16\xf8\xa0\x87\x1c\x83\x59\x9a\xdb\x35\xb6\xfb\x6c\x17\x59\x9a\xdb\x21\x1f\x66\xc8\xf9\x97\x45\xd2\x4d\x16\x24\x92\x0e\x25\x88\xa5\x61\x1d\xb2\x20\xd0\x7d\xa8\xd6\x54\x16\x29\x3a\x09\xa4\x86\x32\xaa\x78\x56\xf1\xb9\x25\x3c\xc3\x50\xa6\x57\x16\x25\xa4\x65\x09\xb6\xfb\xa4\xcc\x2c\xe1\x76\xf9\x6b\xa7\x71\x2a\x21\x2d\x0b\x30\x8b\x87\xb2\xc0\xb2\xa4\xd7\x13\x56\xd5\x51\xb5\x27\x5c\x2b\x3f\x81\xd4\xf0\xd2\xd4\xa7\x9c\xbe\x49\xe8\x86\x51\xc5\x97\x8a\xcf\x2d\xca\xdf\x97\xa1\xa8\xa7\x2c\xcb\x7b\x82\xe7\xb6\x7e\xda\x53\x1a\xd6\x21\x0b\xe4\x97\xa1\x1c\xb0\x2c\x3e\xb7\x40\x71\x78\x69\x1a\xcb\xee\xfd\x82\xe4\xf0\xa1\xe2\x4f\x59\x14\x40\x97\x65\xc7\x9a\xb5\xa2\xf5\x94\xd3\x37\x0b\xe4\x90\xd1\xc4\x7b\xca\xe1\x6f\x0b\x59\x63\xc8\xf9\x97\xe5\xf0\x58\x10\x94\x3e\x04\xbd\x98\xc6\x6d\xc8\x72\xb2\xcf\xaa\x39\x98\x17\x14\xf2\x02\x39\x0d\xb3\x9c\x1e\xe7\xc9\x3e\xdb\xbf\x15\xdb\xc8\x72\xfa\x95\x70\xcd\x0c\xa5\x88\x65\xb9\x3c\x8d\x8b\xd3\xf0\x16\xbd\x3c\x8d\x8b\x4b\xa3\x2b\xb7\x5c\x5e\x1a\xb2\x98\xe6\xed\x7b\x7b\xb9\x11\x31\x3b\x84\xda\x98\x45\x11\x30\x59\x10\x01\xe3\xec\xc0\x2c\xb7\xc7\x49\xf6\x23\x44\xc7\x2c\x66\x3f\xe5\xe1\x38\x75\xe5\x16\xb3\x9f\xf2\x70\x9c\xba\x72\xab\x59\x0c\x61\x24\x86\xfc\x8d\x59\x2d\xc2\xd4\x8d\x63\x49\xb7\xbb\x4d\x03\xfb\x91\x53\x31\xab\xd9\x4f\x45\xd0\xfa\x50\x4d\xa9\xac\xc5\xed\x2a\x3f\xa1\xb6\x68\x15\x44\x74\x56\x8a\x22\xfd\x33\xab\x66\xb5\x28\x52\x29\x8a\x28\xd5\x2b\x6b\xf7\x1c\x10\x73\x32\x94\xea\x95\x55\x31\x27\x59\x29\x52\xc8\xed\x96\xae\xdd\x9f\x95\x2c\x46\x30\x8a\x59\xcd\x62\x00\x45\xf1\xd2\x34\x96\x30\x2d\x48\x6b\x9a\x83\x59\x0c\x6b\xf0\x0f\xa5\x73\xa5\x6b\xf0\x27\x6b\xf0\x0f\xd5\x71\xca\x9a\xee\x93\xa2\x41\xd7\x15\xe8\xfa\xfc\x49\x8c\x09\x17\x81\xcd\x6a\xf6\xc3\xda\xfd\x43\x10\x8b\x59\xcd\x7e\x6a\x3e\xff\xfd\x4f\x28\xbd\x2a\xab\x02\xd6\x93\xf0\x13\x43\xa5\xa1\xd2\xf0\x13\x59\xc9\x99\xfa\xd0\xe7\x33\xf7\xa9\xe4\x3e\x4a\xf5\xca\xba\x3c\x85\xc5\x65\x09\x4d\xcf\x12\x05\xa1\x29\x5c\xb0\x35\xeb\xee\x3e\x77\xf6\x99\x7a\xdf\xee\x3e\x77\x7e\x5a\x6f\x41\xd9\x60\xb2\x92\x33\x29\xd5\x2b\xeb\xe1\x2d\x78\x70\x7e\xba\x55\xeb\xe1\xb1\x20\xff\x36\x8a\xba\x34\x63\xaa\x14\x44\x94\x05\x96\xf5\xf4\xb2\x90\xf9\x74\xef\x5c\x33\x9f\x8a\x6c\xfb\x31\x3e\xd3\x54\xd6\xcb\x53\x40\x62\xee\x10\x62\x63\x56\x73\x90\x4a\x65\x46\x2e\xb9\xac\xb7\x3f\x11\x7c\x3d\x43\x99\x5e\x69\xb4\x8b\x24\xda\xc5\x18\xde\xd5\xe6\x04\x95\x82\x88\x5c\x6b\x59\xcd\x09\x80\x84\x31\x84\x18\x97\xd5\x72\x48\xa5\x1c\x22\x30\xc7\x6c\xca\x6c\xc9\x06\x43\xed\x18\xe2\xbb\xcd\x72\x08\x41\x32\xc6\x68\x6e\x27\x86\xd5\x28\x87\x28\xd1\x2b\x9b\x8c\xb8\xd9\xc8\x24\xc6\x67\xb5\xca\x56\xdc\x8e\x32\x8a\x5c\x6e\xd9\x6a\x33\xad\x93\xa6\x3e\x95\xcf\x9b\x0d\xd6\x99\x21\x77\x5c\xb6\xea\x3e\x1b\xfb\xfc\xac\x56\xd9\x2c\xbf\x00\x2f\xe3\xa5\xe9\x7d\xca\xf5\xcd\x46\x5d\x46\x20\x90\xd9\xba\xdb\x75\xb6\x13\xd3\x6d\x96\x6d\x5a\xe7\x96\x90\xac\xd1\xcc\x78\x5a\xe7\x5a\x7f\x3e\xb7\x6c\x66\x3c\xc0\xcb\x78\x69\x6a\x37\xbc\x66\x83\xed\xa6\xbe\x83\x7c\x4b\xd9\x82\xdb\xe5\x0b\xd7\x48\x83\x64\x64\x23\x73\x91\x7f\x2c\x9b\x75\x8b\x46\x4e\x20\xc0\xc6\x34\x10\x46\x12\x08\x63\x28\xd1\x2b\xdb\xf4\xba\x50\xb7\x50\xc5\xa8\x6c\xd6\x2d\x1a\xfc\x39\x23\x24\x47\xb6\xe5\x35\x23\x97\x08\x31\xeb\x66\x2e\xd1\xe0\xd0\x19\xca\xe6\xca\xb6\xfc\x3e\x72\x10\xf9\xce\xb2\x99\x83\x34\x72\x90\xf0\xde\x35\x07\x69\x08\x5a\x1b\x21\x9d\xa4\xed\xee\x73\xe7\x1c\x9a\xc6\x62\x7d\x85\xa0\x1c\x43\x3e\xb0\x6c\x87\xbf\x03\xac\xb8\x23\xc4\xe4\xdb\xe1\x3e\xc9\x42\x94\xb1\x95\xed\xf4\x58\xc8\x42\xe4\x03\xcb\x66\x5d\x86\x80\x1d\x43\x28\x89\xd9\x2e\xaf\x19\x85\x90\x10\x47\x6e\x66\x21\x04\xe5\x18\xca\xd8\xca\x66\x41\xa3\x51\xd0\x90\xc3\x2a\x9b\x59\x08\x41\x39\x86\x90\x10\xb3\xdd\xde\x9f\x0f\xd7\x53\x32\x6d\x7b\x3c\x87\x87\xef\x93\x9e\xd3\x2d\x4c\x74\x64\xc7\x0d\xa5\x48\x65\xb7\x30\xd1\xa9\xcb\x84\xd8\x67\x37\x0f\xe9\xb4\x87\x28\x7d\x2a\x0d\xd8\x91\x1d\x96\xda\xa1\xb2\x50\xd9\xe5\x2f\xce\x8e\xdc\xfe\x21\xf8\xc1\xec\xe6\x13\x9d\x7c\x22\xc5\xe6\x7b\x73\x9f\x28\x02\x3b\x04\x23\x98\x06\xde\x48\xe0\x6c\xbc\x34\x8d\x53\x68\x95\xd9\x81\x56\x39\xb2\xe9\x7d\xe6\x05\x1d\xe6\xd8\x21\x27\x51\xf6\xee\x71\xd2\x3e\x21\x18\xc1\x34\x80\x46\x76\xda\x19\x52\xdf\xb6\xcb\x27\x9c\x1d\x7e\xdf\xa1\x34\xa8\xec\xe1\x35\x83\xdd\x74\x64\xb8\xcf\xdb\xb4\x87\xb4\x7f\x8b\x92\xc8\x6e\x13\x05\xb1\x37\x46\x6a\xcb\x18\x7b\x23\x3b\x9c\x3a\x23\xc5\xb6\xfa\xf4\x34\x26\x52\x8c\xc4\x0d\xfa\xf4\x2c\xc8\x45\xd2\x3b\xc6\x5c\xa4\x93\x8b\x28\xb9\x2a\xfb\xf2\x50\x68\x69\x50\x72\x55\x76\x45\x92\x25\xb1\x37\xc6\x94\x25\xa5\xef\x7e\x1f\xd2\x81\x86\x7c\x41\xd9\x2d\x33\xf4\x57\xb1\x89\xaa\x3b\xb5\xcb\xe0\x9a\x1d\xc5\x60\xc6\x14\xb3\xeb\x16\x27\x3a\x0f\xfc\x14\x43\xeb\x87\x3f\x04\x4a\x51\x0c\xb9\x7b\xb2\xdb\xb0\x41\x3c\x8f\x31\x75\x17\x77\x1f\xf8\x4e\xe3\xc5\xd4\xc5\xd9\x6d\xbc\xe8\xd4\x48\xe6\x67\xdc\x4e\x03\x7d\x64\xbf\xd8\xa7\x18\x8c\xc1\x3c\xb2\xd3\x90\x29\xb7\x4d\x76\x1b\x2f\x3a\xb5\x07\xb9\x5f\xd2\x80\x1d\xd9\x1f\x8e\x45\xa2\xdb\xf0\xa1\x26\x60\xc7\x10\x76\x5f\x0e\x05\x88\xe4\x40\xd0\xd7\x90\x8b\x25\x87\x62\xe4\x73\xd0\x58\x39\xa7\x69\x97\x69\x7c\x9f\xe4\xac\x51\xfd\x3e\x1a\x32\xa7\x98\x88\x01\x3b\x72\x50\x7b\x90\x3f\x24\x0d\xca\x91\x04\xe5\x18\x72\xa3\xe4\x10\x1a\x75\x12\x94\x63\x28\x83\x2a\x0d\xca\x91\x04\xe5\x18\x02\xe0\xcb\x61\xed\x61\xf0\x50\x2f\x7d\xf7\x31\x3c\x4e\x38\x4a\x86\x8a\x38\xe5\x18\x5e\x17\x04\x81\x0c\x39\x43\x72\x08\x4a\x36\x09\xca\x31\x54\xe0\x29\x87\x35\x0b\xe0\x73\xbc\xb4\x29\x5a\x9a\x86\xef\xae\xec\xaa\x1c\xe1\xb9\x53\xb3\x50\x76\x55\x0e\x05\x73\xe4\x80\xa3\x64\xc8\x19\x92\xc3\xa7\x76\xc0\x15\x3b\x04\xea\x97\x06\xec\xc8\x31\x71\x8c\x96\xb4\x54\x03\x76\x24\x01\x3b\x86\x52\xaf\x72\xf8\x48\x0f\x1a\x2f\x94\x7a\x95\x43\xd8\x92\x39\x90\xe1\x37\x84\xdc\x97\x63\xf7\x77\xa0\xf1\x50\x85\xa1\x72\x1c\x5e\x97\xf7\x5e\x4e\xdb\xe0\x87\xed\x0c\xe3\xe0\xe7\xf3\xf6\xb4\x38\x4f\x2c\x8f\x21\x50\xbf\x1c\xb6\x33\x8c\x93\x4b\xe6\xad\xeb\xa3\x39\x78\x17\x0b\xb8\x2f\xc7\xe9\xcf\xc7\xa3\xb9\xa4\x75\x0c\xdb\x15\x07\xef\xe2\x25\x8e\x35\x2e\xbf\xef\x66\x3b\x6f\xf9\xdb\xed\x90\xa9\x3e\x54\x33\x2a\x0d\xca\x91\x03\xc7\x36\x94\x95\x95\xc3\xa2\x3e\xf0\x39\x5e\x9a\xc6\x62\x51\x1f\xf8\x1c\x2f\xcd\x7d\xfa\xf8\xe1\xb8\xbb\xac\x65\x86\x82\x32\x92\xa0\x1c\xb1\xe9\x38\x84\x95\xfe\x80\xd2\x1f\xfe\x0e\xe1\x7b\x3a\xe0\xb7\x88\x4d\xf6\xc1\xf0\x3d\x1d\x88\xeb\x8a\x4d\xb2\x5b\x54\xf7\x59\xd9\xa7\xb6\x7c\xf8\x9e\x06\x06\x47\x09\x81\xfa\x65\xd8\xff\x00\x0c\x8e\x97\x56\x45\x5b\xa6\xed\xa4\x7d\xdf\xdd\xc0\x1b\x19\xf0\xb6\x86\xfd\x2b\x61\x56\x10\x2f\x2b\x58\xa1\xd3\x10\x8a\x1f\xcf\xe8\x5c\x4e\x89\x7c\x61\x71\x3e\x06\x3f\x91\x38\x72\xd8\xc5\x00\x08\x8e\x12\x76\xaf\x84\xaf\xfe\x00\x27\x08\xd5\xae\xca\x10\xcc\x4e\xc6\x7b\x9b\x2f\x15\x09\xcd\xb0\x34\x1f\xc9\x99\x8b\x91\x87\xbd\x08\x91\x9c\xb9\x18\xb9\xa1\x35\x92\xd0\x1a\xb1\xc9\xea\x1d\xd3\xed\x26\xdb\xe9\x14\x85\x0f\x34\x90\x34\x5e\x9a\x56\xd3\x92\x3e\xa1\x35\x62\xd3\x29\x8a\xe5\x95\x5e\x5c\x69\x59\x3f\xc3\x92\x3e\x50\x36\x4a\x28\x09\x2c\xc3\x4c\x02\x48\x1a\x2f\x4d\xcb\x29\x8f\x69\x12\x22\x23\x94\x04\x96\x86\xc8\xc8\x80\x35\x32\xec\x5d\x31\x44\x46\x06\xb8\x44\x08\x0a\x30\xc3\x17\x78\x20\x74\x2b\x8a\x4f\xc3\xe9\x4f\x04\x2e\x11\x45\x12\x66\x58\x9a\x0f\x44\x82\x87\x3d\x2f\x61\x0e\x12\xe0\x20\x51\x24\x7d\xc6\xe5\xb5\x86\x77\x33\x8a\x04\x86\x30\x07\x09\x70\x90\xb0\xe7\x25\x6c\x1a\x04\xb4\xc5\x4b\xd3\x7a\x9a\x13\xc4\xc3\xf9\xc9\x24\x65\x3c\x8b\x24\x9e\x45\x28\x05\x2c\x53\xd1\x9f\x99\xb8\xdc\x43\x69\x5e\x99\xbe\xdc\x13\xd1\x9f\x61\xaf\x4c\x5a\x9a\xcf\x57\x9a\x8f\x94\x22\x63\xa8\x8b\x04\x7a\x45\x89\xa2\x1d\x9f\x76\x3e\x64\xe1\x52\x8b\xff\xa7\x05\x76\xc2\x59\x84\x9d\x32\xa9\xfa\x4d\x99\x95\xcb\x29\x53\x56\x2a\x3a\x2b\xb3\xf1\x33\xa4\xa6\x60\x81\x9d\x90\x15\x51\x66\xfd\x37\x41\xd8\x88\x16\x99\x9d\xb3\x97\xf8\x92\x0a\xbd\xc8\xec\x9c\x86\xf8\x7c\x5a\x2c\xc8\xf1\x0a\xc2\x8a\xcf\xca\xb4\x9b\x32\x91\x98\x1b\xc2\x09\xcc\x54\x10\x56\x26\x82\xb0\x42\x79\x5e\x99\x76\x69\x24\xea\x5e\x44\x15\x2b\x4f\x25\xdf\x66\xc2\xdd\x18\x55\xae\xc1\x34\x0f\x01\x78\xc5\x4b\xd3\x6a\x5b\x2a\x48\xd8\x0d\xa3\x6a\xa3\xa5\x4d\x02\x44\xb3\x08\xe5\x72\x65\xda\xdd\x98\x08\x9f\x88\x2a\x96\x9c\x66\x06\x49\x66\xa0\x7c\xad\x4c\x1b\x07\x13\x59\xb4\xa1\x7c\xad\xcc\xe5\x39\x2c\xce\x5d\xfc\xd3\x48\x17\x99\xaf\x96\x1f\xe9\x0f\x6f\xcd\x3e\x11\x9f\x15\x55\x96\xa0\xdc\xbd\x09\x21\xcc\x47\x95\x7d\xd3\x00\x19\x49\x80\x8c\x50\x61\xab\x4c\x4b\x13\x79\x70\x39\xa5\x71\xa5\x79\x41\x02\x35\x3a\xaa\x78\x6b\x9e\xde\x11\x3c\xef\xf6\x10\xa5\x25\x86\xbc\xd8\x4e\xda\x74\x5e\x6e\x07\x61\x3e\xaa\x77\x99\x5d\x08\x09\x89\x21\x94\x1e\x96\x69\x61\x3e\x1f\xce\x41\x82\x70\x3e\xde\xb9\x80\xf1\x0a\xa1\xfd\x65\x3e\x5e\x6a\x78\x22\xa3\x49\x9b\x9e\x8a\xc1\xca\x09\x0d\x3d\x94\x02\x96\x53\x71\x56\x39\x21\xe8\x47\x2b\x6e\xa7\xf9\x4d\x40\xe1\x86\x90\x00\x73\x2a\x75\x2c\x81\xb1\x11\x21\x67\xd5\xb4\x50\x30\x5f\xa1\x20\xac\xf3\x4f\xab\x00\x40\xd8\x28\x61\xff\xd0\x34\x2b\x00\xc2\xc6\x4b\x9b\xa2\x79\x24\x94\x25\xec\x1f\x9a\x96\x25\x00\xb9\xf1\xd2\xaa\x68\xc3\xb4\x20\x4d\x33\xb0\x2c\x01\xcc\x8d\x10\x7a\x4b\x4e\x6b\x15\xb3\x73\x98\x32\x6f\x4e\xb3\x88\x49\x79\xc1\x7e\xa3\x69\x13\xdf\x84\x39\x20\xec\xff\x31\x8c\x47\xce\x91\xef\xeb\x74\x64\xa7\xad\x7f\x73\xf0\xdb\x0d\xd3\x3c\xf3\xe0\xec\xc4\x76\xa6\xa3\x15\x26\x2c\x83\xa1\x54\xb4\x9c\x76\x49\xcc\xe4\xcc\xc5\x74\x0d\xff\x91\x33\x39\x05\xdd\xfb\x53\xd1\x57\x39\x27\xdb\xc9\x2e\x3f\xa7\xbf\x10\x59\x84\x50\x00\x73\x9a\x45\x4c\xb2\x88\x26\x29\xd8\xd0\x20\x49\x68\x90\x68\xde\x2c\xcb\xef\x83\xf5\x2f\x94\x01\x96\xd3\x8a\x3b\x21\x3e\x42\x59\x5e\x39\xcd\x07\x26\xf9\x80\xb2\xbc\x72\x5a\x26\x98\x94\x09\x94\xe5\x95\xd3\xda\xc1\x84\x17\x32\xec\x52\x9a\x4a\x98\xcf\xc9\x7b\xbf\x4b\xd2\x9d\xa7\x3f\x1f\x22\xa5\xa2\x4b\xf1\x9b\xa7\x37\xfc\xc9\xb1\x78\x57\x5f\xde\x4a\x48\xb4\x0f\x55\xed\xca\x69\x17\xe4\xbc\xd8\xa7\x77\xb5\xe2\x3b\x93\xd0\x20\xd1\xa5\xf8\x19\x1a\x24\x09\x0d\x12\x76\x45\xcd\xdb\xbb\x1a\x0e\x84\x10\xb2\x60\xce\xdb\x6b\x8d\xd8\xcf\xb0\x2b\x6a\x9a\xef\x4c\x58\x06\xc3\xae\xa8\x69\x19\x04\x08\x22\x25\xec\x8a\x9a\x36\x30\x4c\x44\x51\x85\xfd\x4d\xf3\xf1\x1c\xc8\x93\xec\x6f\x9a\xf6\x4a\x10\x6e\x24\x94\x55\x96\x86\x1b\x49\xc2\x8d\x84\x20\x09\xd3\x70\x23\xb9\xe0\x95\x08\xa5\x95\xe5\xb2\x57\x62\x15\xae\x99\x78\xf5\xb2\xd1\x62\x51\x78\xb1\x2f\x6a\x29\x7b\x3f\x17\xb5\x98\x2e\x99\xd5\x30\x25\x49\x2c\x92\xe8\xf2\xe6\x2f\x47\x4e\xac\xca\xb9\x6b\xcf\x2f\xbb\x3c\x57\xe3\x3e\xd3\x9e\x5f\xf6\x4a\x10\x8b\x24\x94\x1e\x96\xc6\x22\xc9\x05\x0c\xaf\xb0\xc3\x69\xd9\x12\xb9\xa8\xe1\x08\x5a\x30\x97\xd5\x18\x62\x8a\xc4\x10\x7f\x59\xc3\x73\x1f\x6c\x57\x35\x4e\xf3\x1e\x62\x8a\xc4\xd0\xde\x35\xa6\x48\x02\x53\x24\xac\xaa\x2c\xdb\x33\x80\x20\xf2\x36\xd3\x72\x5a\x72\x59\x30\x60\x86\xd2\xbc\x72\x99\x2d\x2d\xb2\xa5\x21\x05\x6e\xd9\xe3\x49\xf8\x8f\x10\x42\x60\x2e\xbb\x35\x17\x25\x17\x3b\x8e\x96\x25\x97\x35\x39\x05\x6d\xdd\xe5\x80\x0b\x62\x83\x84\x2a\x84\xe5\xb2\xcb\x13\x70\x1f\x2f\x4d\x9f\xd6\xaa\xca\xda\xb9\x64\x12\x09\x96\x4d\x8d\x6b\x67\x3b\x6f\xa5\xfd\x4f\xbb\x8b\x34\x7d\x5a\x3b\x1e\x00\xe9\x51\x62\x48\xfd\x59\x0e\x80\x58\x27\xdf\xe7\xad\x74\x7a\x9b\x91\xf5\x8c\xe5\x76\x3a\x46\x0b\x41\x9a\x31\xd6\xbf\x41\xa9\xe5\xb2\xfb\x72\x21\x86\x33\xc2\x3b\xcd\x9c\x69\x21\xc6\x2a\x94\x3f\x95\xcb\x5a\x0e\x21\x40\xc2\x7e\xa5\xe5\x18\xab\x45\xae\x25\x24\xc0\x5c\xaa\x6e\x9b\x8b\x9a\x8c\xdd\xb3\xcb\xd2\xcb\x42\x32\x7d\x28\x47\x2a\x97\x39\xc5\x22\xa7\xb0\x9f\x67\xb7\xff\x72\x47\x90\x43\x84\x62\x31\x77\x6b\x32\xfb\xc6\x3e\xc5\x41\x77\x73\x8a\x1d\x49\x28\x61\x1f\xd0\x2e\xb0\xf0\x24\x04\x48\xd8\xcf\xb3\xdb\xb7\xb9\xc3\x67\x11\xca\x83\xca\xdd\x2a\x10\x31\x40\xc2\x46\x86\xdd\x31\x9c\x3b\xe5\x1e\xe5\x41\xa5\xf1\x41\x72\xaf\x6c\xa7\x2d\xba\xdb\xb7\xb9\x93\x8b\xd8\x07\xb4\x37\xb7\xa3\x6c\xa3\x84\xa6\xdc\x2d\xc0\xec\xe4\x14\xaa\x94\x95\x7b\xf7\xba\x50\x80\xb1\x0f\x68\x77\x6c\xd6\x3e\xf8\x3e\xd9\xc0\x76\x2b\x39\xfb\xe0\xfb\x14\x18\xb2\x9b\x8b\xec\xf1\x6b\xf7\x1d\x41\x83\x75\xe4\x0e\x5f\x47\x28\xf9\x28\x77\x9b\x37\x77\xf8\x33\x42\x30\x79\xb9\xdb\x61\xb1\x23\xc7\x2d\x04\x93\x97\xbb\x25\x98\x3d\xd7\x7f\xff\x93\x9b\xa7\x6e\x2e\xb2\xc3\x2a\x1a\x29\x81\x76\xb7\x31\x64\x27\x37\x48\x5d\xe2\xbb\x92\xe9\x73\xa7\x00\xa3\xdc\xa3\xdc\xad\xe3\xec\x40\xec\x0b\xbb\x8e\x76\xeb\x38\xc4\xdc\x88\x14\xb7\xdb\x1d\x7e\xb5\x53\x91\x49\x6f\x41\x1b\x35\x88\x9d\x11\x29\x19\xd3\xd8\x19\xb9\x23\xd4\x3b\xd2\x5b\xd0\x41\x0e\x80\xd1\x78\x69\x5a\x32\x1b\x3c\x76\x1a\x3c\xac\xbd\xef\x56\x72\xf6\x93\xcb\x29\x6e\xbe\x5b\x80\xd9\x2f\xbe\x4f\x97\xf1\x7e\xf9\x7d\x14\x52\xec\x37\xda\xed\xa2\xdc\x69\xd4\x48\x85\x54\xee\x76\x51\xee\x64\x05\xaa\x4e\x95\xbb\xbd\x19\xfb\xcd\x39\x78\x0b\xde\x9e\xc3\xcd\x6f\x24\x13\xed\x6e\x21\x65\xa7\x02\xa4\xea\x54\xb9\x3f\xee\x93\x26\x53\x3b\x95\x76\x0b\x22\x3b\x05\x91\x14\x77\x35\x1e\x47\x1e\x1b\xc7\xa9\x8b\xfa\xb0\xe2\x74\xbc\x9c\x26\x85\x1f\x9f\x87\x23\xbd\x09\xc7\x11\xca\x59\xca\xc3\x91\xde\x07\xb9\xcb\x14\x87\x3c\x1c\xe9\x7d\x50\x0e\x11\xd2\x5f\x1e\x56\x9c\x08\xc7\x11\x53\xdc\xf3\x30\x07\x39\x28\x87\xd8\x51\x75\x98\x4b\x1c\xe4\x12\xc2\xce\xcf\xc3\x5c\xe2\xa0\x35\xd5\x4e\x2c\x43\x6e\x24\x10\x36\x5e\x9a\xda\x39\x2a\xfb\xa0\x25\x44\x79\x49\x79\x58\x27\x39\x10\xad\x10\xca\x4b\xca\xc3\xa7\xfd\x40\x04\x75\x4c\x71\x41\x43\x67\xe4\x11\x9c\x9f\xb8\xe0\xe1\x28\xcd\x23\x39\x07\xe9\x39\x86\xce\xc8\x23\x39\x4e\xe9\xee\x47\x7a\xcd\x92\x7d\x4a\x1e\x34\x74\x46\x1e\x93\xed\xa4\x03\x1d\x16\x1a\x0e\xda\x45\x95\x5f\x94\xc6\xd5\xc8\x63\x72\x7e\xda\x9e\x87\x7d\x97\xc0\xd5\x78\x69\x1a\xcb\xf2\xfc\xc8\x0a\x94\x5f\x94\x87\x23\xa8\x89\x90\x11\xaa\x4c\x95\x87\xed\x1d\x07\x85\x8d\xa9\xa8\xd0\xc3\xce\x93\x63\xcf\xff\xfe\x27\x85\xfa\x92\x87\x55\xa0\x83\x66\x51\xfb\xd3\x8e\xc3\x5b\xf0\xe0\x30\x65\x91\x3a\xac\x1e\x1d\x54\x8f\x94\xb2\x94\x87\xb2\x5d\xf3\x40\x90\x43\x2c\xbf\xcf\xea\xd1\x41\x0e\xa2\x62\x57\x79\x9c\xde\x2e\x94\x43\xec\x4f\x3b\x2e\x6f\x41\x72\x90\xa5\x8b\xff\xb0\x9a\x03\xac\x8c\x12\x4a\x20\xca\xe3\xf2\xfc\x6e\xf6\x29\xa1\xc0\xe0\x19\x79\xdc\x1c\x8b\x84\x82\xe3\xf6\xfc\x5e\xf5\x28\x9b\x5f\x67\xc6\x73\xdc\x1c\x8a\x34\xae\xc3\x8c\xe7\xa0\x15\x76\xc9\x8e\x70\x38\x40\x13\xf0\x1b\x2f\x4d\x43\xb1\x55\xe6\xa0\x76\xb4\x24\x4b\x1c\xd6\x8e\x0e\x5a\x68\x97\x34\xb5\x53\x90\xa6\x79\xd2\x0a\x6b\x17\xdd\xa9\x1c\xfc\x3c\x29\xbb\xa8\xee\x56\x9e\xca\x7e\xcb\x13\x80\x3e\xa1\xe2\x5a\x79\xda\x2a\x73\x92\x83\x28\x27\x29\x4f\xcb\x19\x27\xcd\xb0\xf6\xa7\x9d\xd5\xef\xa3\x26\x63\x7f\xda\xa9\x3c\xfb\x24\x58\x47\xd8\x9f\x66\xb0\x8e\x24\x58\x47\x2c\x59\xb2\x4e\xdb\x59\x4f\xca\x19\x42\x32\xcc\xd3\x8e\x95\x13\xce\x93\x54\x1e\x50\x9e\xe3\x32\xed\x06\x4d\x1a\xfa\xe9\x58\x28\x82\x6e\xa4\x7d\x51\x06\xdd\x48\x60\x6c\x94\xdc\xea\xf6\x6f\xa2\xf0\x69\xe6\x73\xc2\xcb\x9a\x4e\xf7\x39\xd3\xdd\xc2\xf1\x92\x9b\x98\xe4\xe9\x38\xcc\x73\xf2\x95\xda\x16\x06\xd7\xc8\x13\xf2\x44\x3a\x6d\xe7\xb4\x3c\x71\x42\x9e\xc8\xcd\x9f\xd7\xf2\xc4\xb9\xb8\x34\x52\x9a\x4f\x87\x43\x9d\x3b\xc7\x29\x46\x78\x9a\x51\x9c\xd0\x4a\x72\x93\x05\xfe\xb4\x56\x72\x42\x2b\xf9\x23\x2f\x19\x78\x23\x09\xbc\x91\x42\x02\x4c\x23\x6b\xe4\x79\x70\x7e\x62\x92\xa7\x5d\xb0\xe7\xc1\x71\x7a\x5b\x38\x54\xea\x3c\xae\xf7\x04\x4a\x09\x3a\x6d\x7f\x01\x36\xc7\xdb\x4c\x34\x33\x98\xf3\xe4\xb2\xe8\xea\x3f\x2d\xa2\x00\x9b\x23\x9b\x04\xd3\xd3\x3a\xd0\x79\xfd\x9a\x69\x24\x96\x50\xce\x8b\xa3\xd4\xed\x7e\x5a\x42\x01\xfc\xc6\x4b\x53\x3b\x9b\x51\x4e\x98\x4a\xb2\x48\x01\x3a\x1f\x0f\x05\x81\x52\x29\xfc\xc0\xbc\xac\x74\x00\x47\x63\x55\x7d\xf4\xcb\xd6\x54\xc0\x68\xbc\xcd\xbe\x85\xbe\xec\x63\xbd\x60\xb9\x48\xc1\x0e\xe6\xe5\x90\x0a\x40\x65\xbc\xb4\x6f\x93\x5d\x76\xad\x5c\xc8\xff\x4a\xe7\xe5\x18\x3b\x23\x2f\x94\xf2\x4c\x15\xa6\x4a\x63\x67\xe4\x55\x39\x3d\x6d\xdc\xcb\x12\x03\xf1\x31\xb2\x88\x9f\x5d\x76\xbb\x5c\x8d\xed\x74\xf3\x5f\xd6\x2b\xae\xce\x65\x91\x1a\x7e\x0d\xcf\x0f\x16\xce\x2c\xe2\x59\x97\x9d\x20\x17\x74\x87\x2c\xda\x80\x97\xa5\x09\x62\x67\x64\xd1\x06\xbc\x6c\x66\x20\x3e\x46\xda\x3d\x74\xf9\x40\x03\x2a\xa3\x64\xd1\x4e\xba\x9c\xf3\x01\xa8\x8c\x97\xa6\x75\xb1\xf3\xe4\x9a\xbf\x76\xea\xd3\x61\x13\xd7\x64\x3b\xf1\x33\x63\x60\xe4\x35\xb9\x2e\xda\x4a\x97\xcd\x0c\x17\xd0\x72\xb2\x8a\xd7\x5d\xb6\x8c\x5e\x3c\xec\x76\x0e\x5d\x76\x90\x5c\x3c\xec\xce\xd9\xb9\x1c\x09\x75\x41\x62\x48\x87\x3b\x5d\xbb\xbf\x03\xc2\x2d\x52\x85\xa2\xf2\xf2\xd5\x4f\xa0\x8b\xac\xba\x6e\x2f\x2b\x08\x04\xb3\x48\x3b\x87\x2e\x87\x48\x5f\xf0\x90\xa4\x0a\x45\xa5\x81\x2e\xf2\x42\x28\x54\xd6\xe6\x3e\xbd\xcf\x20\x16\x64\xf5\x3e\x73\xb8\xd3\x75\xb1\x4f\xdd\x8d\x06\xba\x48\x02\x5d\xa4\x1d\x47\x97\xad\x9f\xd7\xcd\xb9\x4b\xc9\xb9\x1c\xfb\x78\xdd\x5c\x4f\x49\x98\x97\xad\x9f\x17\x8f\xb4\xaa\x48\xe5\x65\xe5\xe1\x82\xf2\x90\x55\x0a\xd0\xe5\xe3\x4e\x10\x8c\x74\xde\x91\x41\x30\xf2\xde\xb8\x9e\x32\x13\xdd\xd6\x10\x6e\x9e\xf7\xaa\xa0\x3a\x83\x60\xe4\x5d\xf8\x8d\x24\x61\xde\xf6\x91\xdc\x95\xfb\x65\x9a\xd6\x4d\xe3\x9a\x49\x52\xbc\x7d\xde\x6f\x9e\xf7\xaa\xfd\x79\x5b\x43\x00\xe6\xc5\x4b\x53\x9f\xd6\x02\x6e\x60\xde\xa4\x3d\x47\xb7\x2d\x8e\x37\x34\x84\x14\xb0\x60\xde\x76\x84\xdc\x48\xb2\xc8\x26\x71\xf0\xb6\xb3\x03\x00\x15\x25\x9b\x78\xdd\x6d\xab\x22\x51\x29\xd2\x3e\xa0\xdb\xbc\xe0\x0e\xf6\xa9\x8b\xf8\x36\x2f\xb8\x79\xbf\x37\x5d\xc4\xb7\x6d\x05\x37\x8a\x8e\x65\x93\x83\xf2\xf6\x79\xbf\x93\xed\xc4\xcf\x6e\x9f\xf7\x1b\x9e\x90\xb4\x33\xe7\x76\x54\xc5\x3d\x39\x16\x29\xda\xf7\xf4\x58\x66\x92\xa6\x3e\x7d\xde\x6f\x9e\x77\xd5\x89\x4a\x23\x56\xe4\x8d\x38\xe8\x6c\xde\x4b\xf6\x84\xdc\xf0\x84\xa4\xbd\x39\x46\xa5\x48\xa0\x52\x44\xf1\x27\xb2\xce\x7f\x23\x4a\x31\xed\xe8\xb9\x7d\xa4\xef\xf7\x6e\xfd\x13\xff\x70\x3b\x8e\xe1\x7e\x0f\xe9\x9f\xf0\x87\xdb\x46\xbc\xfb\xbd\x22\xff\x44\x38\xdc\x8e\x1f\xbe\x5f\x91\xf8\x4f\x80\xc3\x6d\xf3\xde\xfd\xe0\x5d\x32\x9f\x18\x1f\x22\xef\x57\x0a\x0e\x5f\x52\x8f\x85\x60\x20\x45\x44\x11\x5f\x31\x3a\x44\x02\x1d\x22\x54\x3b\x31\x1f\x87\x15\x3f\x1b\x06\xaf\xaf\xfd\xf8\x26\x05\x36\x44\x14\x59\x55\x1e\xab\xd0\x4f\xcd\x97\xa4\xbb\xf9\xb1\xef\xf1\xa9\xd7\x4b\x12\x6b\x78\x7c\x74\x1e\x20\xfa\xfb\xe6\x7a\x9a\x87\xd1\xb9\x43\x24\xcb\x3c\x96\x7e\x81\xfd\x90\x42\xe6\x4f\x43\x3f\xe4\xd3\xb9\xe9\x24\xaf\x18\xa4\x21\x09\xd2\x90\x76\x95\x3d\x3e\x38\x0f\x05\x63\xbb\xca\x1e\x1f\x0e\xe0\x2e\x94\xec\x5b\xfb\x37\xe1\xf7\x71\xbc\xf1\xc3\x7b\xd4\x9e\x34\xe3\x34\x24\x71\x1a\xb2\xeb\x0e\x7a\x7c\x76\x00\xd9\xf0\xd2\x34\x0d\x9f\x9d\x87\xf7\xa8\xbd\x65\x8f\x4d\xf9\x0f\xb4\xf2\x74\xe2\x96\x71\x1a\xf2\x81\x76\x9d\x4e\xce\x7a\x9c\x03\xf9\xc0\x5c\x9f\xdd\x1b\xc2\xe6\xfa\x07\xe1\x87\xd9\xfd\xd9\x77\xbf\x6f\x67\x9f\x72\x2b\x18\x8b\x21\x1f\x20\xba\x64\xf7\x9e\xb0\x60\x0c\x2c\x86\x3f\xe7\xea\x71\xd4\xe2\xc3\x6b\xd4\x0e\x31\xc3\x2d\xe4\x43\xb9\xb8\x7b\xc3\x58\xc0\x7d\x28\xe0\xda\xb1\xf5\xd8\xc1\xf8\xf0\x1a\xb5\x63\xeb\x71\x1e\xe3\x83\xd0\xc4\xec\x32\x44\x19\x6e\x21\x09\xb7\x90\xc2\x4b\x4c\xc3\x2d\xe4\x73\x71\x7a\x92\xd1\x0d\xa9\x90\xcf\xcd\xb1\x48\x0c\x7a\xac\x26\x3f\x50\x93\xd3\x4e\xaf\xc7\x57\x2c\x21\x15\xd2\x09\x58\x8f\x55\xe1\x87\xd7\xa8\xf0\x12\xf3\x71\x68\xe2\xc3\x6b\x54\xf5\xb4\xa6\x21\x15\xe6\x06\x75\x37\xc7\xc7\xdf\xe6\x26\xb1\x79\x6e\xbc\x46\xe5\xf4\x9a\x9b\x1c\x77\x73\x2b\x58\x6b\x65\x59\xcd\x4d\x62\xf3\xdc\x28\x36\x8f\xa2\x3e\x25\x36\x4f\x20\x28\xbc\x34\xf5\x29\x20\x98\xb9\xbd\x5c\xc2\x92\xf8\xdc\xc4\x0a\xe6\xc6\x5b\x74\x98\x26\x4d\x78\x02\x24\xe1\xa5\x8d\x8f\xa6\x34\xc6\xb9\x91\x4f\xc8\x21\x36\x37\xf1\x89\x09\x90\x84\x92\xa3\xa9\xcf\xee\x65\x41\x0d\x81\x54\x19\xae\xb9\x75\x2f\x0b\x6f\x5f\x65\x67\xcd\x4d\x8c\x62\x6e\xbc\x61\x95\x81\x35\x8d\x7e\x30\x37\xde\xa2\x72\xa4\xcd\x2d\xdc\x2e\xb0\x5d\x94\x2d\x35\xb7\xf4\x52\x23\xac\x28\x05\x50\x38\x8d\x62\x30\x37\x04\x1b\xa7\x32\xa2\xe6\x36\xfd\x19\x78\x1b\x8e\x6f\xeb\xce\x6d\x79\xee\x8b\x73\x4f\xb5\x93\x3a\x3b\xb7\x9d\xe3\xfc\xb6\xe7\xdc\x0e\x7f\x22\x64\xf0\xa4\x32\xa2\xe6\xa6\x0c\x9e\xb9\x1d\x5c\xb3\xa5\xf7\x9d\x5e\xcf\x93\xdb\x65\x69\x5d\x4e\xaf\xcb\xc5\xb1\x78\x7b\x5e\xa6\xc1\x10\x95\xe1\x2d\xa8\x63\x34\x89\x2a\x90\x42\x0c\x9c\xdb\xed\xf7\xbd\xa7\x26\x94\xcb\x37\x0d\x0e\x30\x09\x0e\x90\x2a\x7d\x35\x0d\x0e\x30\xcb\x56\x48\x5b\xa2\x35\xd3\xb0\x73\x55\xfa\x6a\x16\x9f\x22\x82\x0a\xa4\x12\xa9\xa6\x41\x05\x66\x41\xc6\x6f\xca\xc1\x36\xcb\x76\x99\x76\xbf\xc3\xfc\xe4\xa3\x59\x64\x91\x9e\x05\xf6\xa4\x54\x55\xac\x59\xe4\x19\x9f\x05\xf1\x3a\x29\x0c\xc2\x59\xaa\xbb\xa4\x7e\x29\x3f\xd9\x2c\xcd\x53\x00\xa6\x40\x2a\x57\x6a\x16\xe1\x8b\xcc\xd2\xf8\xbe\xa1\x3e\x9b\xdf\xc7\x93\xa2\x5c\xa9\x59\x86\xa7\x3e\x38\xf5\x50\x9f\x0a\xd4\x9d\x65\xe0\x2b\x7c\x01\x0a\xb3\xf8\xa0\x00\x5d\xa0\xa4\xb0\xfd\x66\x11\xbe\xeb\x2c\xc1\x95\x4e\x4d\x21\x4d\x4b\x7e\x74\x6d\xce\xa2\x2b\x73\x12\x52\x20\xe5\x26\x9b\x25\xbd\x9c\xef\x95\x19\x02\x00\x9d\x65\x7a\x55\xe6\xaf\x99\x66\x30\x3d\x4c\x6a\x97\x0a\xb6\x9a\x65\x79\x28\x8b\xed\xb4\x6f\x8b\x6c\xce\xb3\x00\xbd\x28\x73\xd3\x8a\xc9\x35\x35\x0b\xf2\x6c\x32\x37\xbd\x4f\xda\xe5\x2c\xd4\x2e\x05\xed\x37\xcb\xee\xb1\x1c\x6c\x27\xb6\x5a\x0e\xb7\xe3\xd9\x4b\x6f\xce\xd3\xb4\x93\x7d\x56\xbd\xcf\xe7\xb2\xc0\xc1\x9d\xe9\x5d\x76\xf9\x30\xf0\x7a\xcb\xa6\xb9\x5f\x1e\x0b\xaf\x37\xb9\xc9\xa6\x53\xf1\x67\xb9\x39\x4e\xf1\xb9\x72\x7b\x2c\x34\xfc\x08\x86\x6f\x96\xdb\x6b\xf6\xb0\x9d\xb7\xcb\xe3\x6f\xf4\xde\x74\xdd\x6c\xd5\x59\xfa\xb3\x3c\x9c\xba\x3e\x6d\x95\x8c\x3b\xeb\x56\x5f\x41\x42\x33\xa8\xd2\x11\x67\x7d\x4f\x61\x6b\x9f\xdc\x39\x9d\x87\x3f\x99\x87\x9f\xf2\xbb\xcd\x2a\x17\xf5\x64\x1e\x7e\xe6\x67\xca\x9d\xb5\xfa\x6d\xef\x35\x97\x0a\x5d\x9b\x55\xda\xe3\x64\x8a\x7e\xca\xb5\x36\x9d\x86\x3f\x91\x86\x6f\x85\x66\xd6\xe6\x41\xf2\x50\xe6\x34\x4d\x87\xb2\x22\x51\x36\x53\xec\xb6\x76\x8f\xb2\x73\x99\x3f\x30\x9d\x59\xbb\xfb\xec\xfc\x74\xda\xb6\x55\x81\xb6\xb3\x02\xd8\x27\xe7\xa6\xd9\xf9\xc4\x56\xca\xc0\x72\x91\xcd\x1a\x6e\x47\xe3\xf0\x2c\xff\x06\x14\x31\xab\x6c\x49\x13\x79\xfe\x25\x85\xfa\x37\x6b\x78\xa8\x94\x8f\xe5\x41\x9b\xd5\x87\xbd\x52\x3e\x56\x1a\xd8\x74\x02\xff\x64\x02\x7f\xce\xcf\x9e\x32\xeb\xf4\x50\xa9\x5b\xca\xf3\x36\x9d\xa5\x3f\x2b\x39\x81\xd0\x02\xa7\x33\xf1\x67\x5d\x7c\x9f\x78\x75\x15\x0e\xc8\xac\xb4\x25\xcd\xae\x76\x92\x81\x67\xa5\x0c\x2c\xb4\xc0\x59\x7d\x9b\x56\xde\xa6\x73\x68\xee\x87\x3f\x2f\xad\xb5\x53\xa7\xa1\x9e\xee\x93\xf6\x22\x15\xfc\x9a\x4e\xa9\x9f\xf5\xfc\xf5\xa9\x71\x9e\x5e\x97\x57\xf3\x34\xe4\xd1\xac\x97\x3f\xc3\xc5\xcf\x20\x21\xa3\x2a\x48\x7e\x22\x49\xfe\xa5\x69\x39\x6f\x7f\x22\x9a\x76\xa6\xf8\x78\x7d\x3c\xcc\x87\xc3\x4c\x4d\xc1\xa7\x96\x19\xf5\xa9\x2c\xb7\x59\x1f\xf7\xc9\x1b\x7a\xea\xb0\x34\x05\xcd\x4e\x64\xc9\xbf\xb4\x6f\x67\x37\x99\x76\x66\x2b\x7c\xdf\xe7\x87\x9e\x4d\x41\x68\xb3\xbd\x47\x78\x28\x96\x7f\x3a\x6b\x7e\x36\x44\x96\xe4\xfc\xf2\x1f\x66\xb3\x28\xdb\x68\xf5\x99\xe2\xff\x4d\x28\x5f\xb3\xd1\xea\xa3\xe4\xb8\xd9\x9a\xdb\x21\x48\x3e\x95\x00\x37\x9b\x22\x44\x26\x92\xdd\x5f\x9a\xda\x59\x26\x6d\xbc\x69\x95\x00\x37\x5b\xf7\xd4\x79\x70\x55\x5e\x6c\x36\x25\xc7\xcd\x46\xab\x8f\x1c\x76\xb3\xf9\xe0\xb6\x81\xaf\x2e\x56\xdd\xc2\xc3\x7c\xc5\x4e\xe3\x32\xcd\xa6\x70\xb1\xd9\x78\xbe\xe4\x93\x9b\x2d\x3d\x73\x3a\x66\x96\x38\x5d\x93\x63\x66\x36\xea\x98\xf2\xbb\xcd\x26\x24\xd2\xd9\xe8\xb4\x11\x16\xe0\x6c\xbe\x69\x99\xfb\x9e\x4a\x8d\x9b\xce\x7d\x9f\x0d\x08\x19\x29\x9f\xdc\x6c\x96\x64\x99\xfb\x9e\xc2\x10\x9c\x6d\x79\x9c\xb4\xf9\x2c\x5d\x0d\xce\x61\x9f\x6d\xe7\xfc\x42\x5f\x41\x39\xec\xb3\xed\xfc\x7a\xba\x00\xda\xe1\x76\xef\xa5\x3b\x54\xe3\x66\xb6\xc3\x53\x3f\xd8\xcc\x34\x1f\xd9\x46\xfd\x53\xae\xbc\xd9\x4e\x6f\x40\xea\x9f\xcb\xfb\xfd\xf4\x17\x3a\xf9\xd1\xa7\xa6\xee\x0b\xba\x21\xc0\x35\x97\xcf\x82\xcf\x73\xa3\xf7\x45\xa9\x71\xb3\x59\x70\x66\x0a\x7b\xaa\x98\xd9\x6c\x42\x43\x9f\x8d\xfa\xe7\x5a\x9a\xfa\xed\x4f\x84\xb3\x3e\xe5\x3a\x9c\x4e\x61\x9f\x0d\x21\x66\x53\x30\x81\xb3\x3d\x9e\xdf\x7b\x43\x0f\xa5\x53\xcc\xf6\x78\x4f\x23\x3c\x64\x6e\x7f\x68\x5e\x4e\xb0\x81\x29\x04\xc1\xd9\xe5\xa5\x9d\x1d\x19\x75\x73\xfb\x2c\x65\xb3\x9b\x0d\xf4\xc2\xa1\x48\x16\x42\xba\xfb\xf7\x78\x90\x96\xa2\xe9\x7d\x48\x74\x2f\x53\x99\x71\xb3\xfb\xfe\xee\xaf\x96\xea\xca\x38\xb3\x9b\x0d\xf4\xca\x2e\xa5\x0e\x76\x0b\xe3\x1d\x6a\xeb\xab\xac\x7e\xb4\xe6\x61\x22\xc7\x66\x2a\xc3\x6d\x76\x25\xe2\x4d\xe4\xce\xbf\x34\xf5\x69\x75\x97\xc9\xf4\x53\xc0\x83\xb3\x37\x4f\x01\xec\x63\x2a\x33\x6e\x76\xab\xb4\x1d\xc0\x60\x53\x1e\xcc\xd9\xcd\x5a\xfa\xe0\x38\x43\xed\x14\x59\x3f\x3b\x82\xcf\xa6\xc0\x05\x67\x1f\x9e\x5f\xb0\x5d\x6a\x0e\xe1\xf7\x05\xdf\x97\x7a\x9f\x2f\x68\x64\xb6\x97\x29\x90\xc0\xd9\x2d\x8e\x33\xb5\x7d\xca\x6f\x38\xbb\x19\x48\x7f\x19\xc8\x90\x0f\x65\x76\xf3\x88\x0e\x6d\xf7\x55\xe6\x3e\x9a\xec\x57\xb3\xe3\xee\x9e\xca\x54\x9b\xdd\x77\x37\x33\xe2\xa7\x4a\x99\xcd\xbe\x3c\x3d\x44\x8e\x4c\x95\x32\x9b\xdd\xf7\x7a\x87\xfd\x6a\x16\xef\x4e\x81\xa1\x4f\x64\xb9\x97\x29\x3c\xbf\xd9\x7d\xe7\x77\x18\xb0\xe6\xff\x66\xec\xcd\x71\xf7\xc9\x95\x24\x41\x7d\x4e\x91\x37\x98\x20\x83\x8b\x9b\xf2\x94\x91\xa7\xef\xc0\xe0\x02\x94\x50\x55\x0f\xaf\xab\xee\xdf\xa0\x7b\x7e\x66\xd9\x8d\x16\x52\x48\xe0\x97\x7f\x47\xf0\xe3\xea\x34\xdf\x8c\xac\x38\xb3\x22\x25\x51\xfc\x5e\x37\x3a\x5e\xad\xe8\x5e\x2f\x8e\xd4\x2d\x69\x9b\x4d\x2d\xbb\x67\xc1\x5b\xa2\xce\x2d\x4b\x3b\xd7\xad\x6b\x63\xdc\xd0\xca\xd2\x74\x7a\xac\xc7\x92\xb6\x99\x50\x7c\xd9\x31\x9f\xd4\xb9\x2a\x89\xb7\xb2\x63\xce\xa8\x73\xcb\xd1\x77\x27\x64\xbf\x60\xb8\xa9\xec\xdd\xa2\xb4\xdd\xa4\x3c\xab\x4c\xe1\x9a\x62\xae\x7f\xae\x59\xab\x02\xdd\x35\xc5\xfa\x51\x99\x55\xdd\xde\xd5\x6f\x6f\x63\x6c\xd0\x2a\xf3\x42\xcd\xab\xe3\xaf\xec\xa7\x94\xaa\x4e\x74\xf5\x9c\x0c\xe3\x03\x61\x56\x99\x5d\x6e\xd5\x6f\xf6\x6b\x3d\x50\xc6\xb9\xae\x9e\xfb\x69\x2c\x1c\xb3\xaa\xe3\x57\x3d\x9e\x73\xcd\x85\xbf\x07\x83\xab\x2e\xfe\x1a\x27\x37\xf3\x72\xaf\x45\xc3\xf0\xf0\xae\x65\xc2\xe0\xca\xb4\x51\xab\xee\x8c\x32\xd2\x04\x5a\x25\x7d\xb0\xd5\x1a\xdf\x51\xa1\x55\x39\xa3\xa2\x62\xfe\xda\x1e\x3f\x59\xd3\x74\xbb\x47\xdb\xa4\xed\xaa\x1c\x55\x5e\x20\x9f\x8c\xa1\x43\xab\x4d\xc3\xef\xd1\x26\x35\x5a\x15\x5c\xaf\x3d\xa6\x8d\x5a\xab\xca\x36\xaf\x3d\xfa\x49\xad\x55\xbb\xfa\xe9\xd9\xe7\xc6\xd0\xa1\x55\x39\xb8\xa2\x2a\xde\x18\x1e\xb4\x2a\xe3\xbc\x22\xbe\xe3\xf5\x5e\xa5\x0e\x2a\x62\x79\xe9\x34\xab\x3a\xf2\x15\xd1\x26\xed\xbb\x3a\xb4\x7d\x47\xb4\xa9\xed\x2b\xe3\xbc\x8e\x18\x03\xef\xf0\xca\xe2\x38\xf3\xca\xfa\x2b\xe3\x18\x3e\x7d\x37\x63\xcb\xd0\x8a\xab\x52\x07\x35\x8e\x3c\xdf\x24\xb3\x3a\xb5\xb6\x5e\x1c\x67\x0c\x1d\x5a\x5d\xfa\x3d\x7f\x25\xc5\x5e\x6d\x51\xfa\xac\xad\x3a\x2e\xb0\x97\x2a\xad\x2e\xad\x9f\x3b\xd4\x8c\x45\x67\x56\x85\x0b\xaa\xe3\x02\x7b\x79\xa9\x56\xe1\x82\x28\xa7\xb7\x97\xa6\x58\x3d\x3a\x4a\x27\xbe\xd3\x3e\x13\xce\x8f\x92\x79\x63\xe8\xd0\x9a\x54\x45\x7b\xa2\x4d\xde\x9c\x4d\x97\x7f\x73\x9f\xb5\x31\x74\x68\x4d\x66\x7d\x0b\x35\x42\xfe\x40\x6b\x02\x06\xcd\xd3\xb7\xec\xe5\x3e\x6b\x4c\xdf\xb2\x16\x6a\xe4\xfd\x55\x24\x58\x93\x1a\x89\x52\x7b\xe3\x43\x60\xd6\xe4\x8a\x6b\x4e\x97\x63\x0c\x2b\x5a\x93\xaf\xbb\xb9\xf1\x60\xe4\x0f\xb4\xc6\xb0\x97\xb5\x1c\xeb\xd7\x38\x3e\xa9\x98\x28\xc3\x37\xf2\x07\x5a\x93\x61\xd1\xde\x98\x33\xfa\xb8\x9a\x9c\xdd\xad\x44\x9b\x54\xa1\xad\x6a\xec\x35\xe6\x93\x56\x7f\x63\xc8\xd8\xbc\xb4\x3e\x59\x21\xae\x53\x3d\xbd\x45\x3d\xbd\x15\x5e\x8f\xad\x69\x7c\x9e\x70\x6a\xe4\x16\xb4\xd6\xb4\x46\x6e\xd6\x1b\xc3\x57\xd6\x9a\xe6\xcc\x53\x44\x8c\xc5\x5e\xd6\xe4\xdf\x6b\x1e\x32\xbe\x90\xed\x27\x13\x32\xf0\xda\xfa\x64\x7c\xd2\xcb\x9a\x69\xce\xe2\xfa\x67\xd1\x96\x35\x68\x7c\x71\xc5\x17\xed\x25\x39\xea\xda\x88\xef\xe8\x2e\x55\x61\xbc\xb5\x11\xe3\xa3\x49\xd2\x86\xd6\x21\xae\x7f\x3e\xdb\x65\xed\xd3\x18\x3c\x03\xd4\x8a\xf6\xd2\xa7\x7d\xf6\xc5\x18\xe8\xe8\x57\xd1\xbc\x35\xb7\x1f\x2e\xa8\xfa\xc9\xf8\xde\x89\xb5\x80\x06\x24\x02\xb4\x36\xb5\xe7\x9d\xa6\xd3\x18\xa3\xb2\xb6\xd4\x97\x15\xdf\x69\x2f\x2d\x8d\xcf\x1d\x7c\xc6\xf8\x95\xa9\x68\xde\xa2\x68\xde\x48\x12\x68\x6d\x6b\x4f\x84\x9e\xe0\x7b\x5f\xd6\xb6\xda\x0c\x3d\x51\xb4\x3f\xb7\xf6\xbc\xe7\x97\x5f\x10\xf7\x93\x09\x36\xb4\x93\xff\xf1\x87\x32\x83\x4c\x75\xf8\x16\x75\xf8\x17\xe0\x51\xa6\x29\x3b\xd1\x4d\xde\xf0\x9d\x15\x2a\xe6\x65\xf7\xc9\x58\xcf\x65\x5d\x4e\xf9\xee\x4e\x79\xab\xbc\xe1\x55\x6c\x6f\xdd\x5f\x5a\xb2\x4a\xb4\xd8\x75\xdc\xbb\xb3\xe8\x99\x42\x5b\x9d\x44\x3a\xd6\x9d\x29\xcf\x48\x2e\x68\x2a\xb6\xb7\xee\x95\x26\x17\xac\x50\xa6\x36\xc3\x48\x60\x1d\x98\x75\x19\x09\xdd\xeb\xd5\x4c\xb1\xad\xce\x7a\x35\xeb\x81\x44\x2a\x6d\x99\xfe\x9a\x64\x23\x64\xfc\x3d\x39\x15\xbd\x96\x3f\x59\xa5\x65\xdf\xa5\x42\xa2\x42\xdf\x58\x24\x66\x5d\x46\x42\xf7\xe0\xb9\x55\x5e\xfd\x5d\x30\xc4\x2b\xf2\xaf\x8c\xdf\x09\x86\x78\xd5\x7d\x32\x32\x08\x5a\x67\x56\xa9\xf5\x16\xdf\xf1\x38\x74\x19\x10\x5e\x75\x7f\x65\x1c\x43\xd7\x77\x3d\xe6\x85\x2e\xa9\x2e\xef\x84\x57\xe4\x27\xab\xdc\xf2\x9d\x35\xb6\xd6\xfb\xfe\xc7\x1f\x3d\xf3\x86\xeb\x42\x1a\x3d\x6c\x92\xca\xd3\xa0\x0a\x7d\xeb\xee\x18\x34\x3e\xcc\x65\xdd\xf4\x73\xf6\xe7\xcf\xb1\x9b\xd2\x4a\x3d\xb4\x92\x42\x69\x5d\x8e\x8b\x1e\x46\x49\xa5\x0d\xd4\xa1\xe5\x43\x0c\x9d\xa8\xa0\x0b\x85\xf4\x11\xfd\x24\x2a\x50\xf9\xbe\xf5\x11\xfd\xa4\xf5\xde\x87\xfa\xe9\xc9\x69\xf7\x62\xfd\xc9\x64\xb0\x44\xf9\xbe\x35\x22\x06\x95\xef\x5b\x0f\x8d\xc5\xc2\x32\xeb\xf2\x78\xf4\xd0\x58\x4d\xf3\x29\x8d\xd5\x43\x63\xb5\xf4\xf7\xea\xe3\xac\x4b\xa1\xf5\x50\x68\x0a\xa7\x75\x45\x0b\xbb\xe7\xb5\x99\xc2\x69\x5d\xb6\x4e\x5f\x31\x44\x9d\x08\x29\xb4\xbe\xa2\xab\xda\xd9\xb2\x75\x7a\xd8\x3a\xac\x49\xb3\x2e\xe0\xd3\x77\x0c\x5f\xbb\xfe\x68\xda\xbc\x72\xd7\x58\x77\x66\x5d\x0e\x91\x60\x0c\xb0\xc6\x48\x47\x17\x28\xea\x01\x8a\x14\x6b\xeb\x02\x45\x3d\x34\x5a\xe3\xe5\x61\x02\x45\xf6\x44\x3f\x09\x44\x4c\x21\x48\x0b\x8f\x08\x1f\xe7\x32\x93\xb6\xb3\x27\xc6\xce\xcb\x43\x6c\x02\x66\x29\xe6\x8c\xa7\x45\x74\x02\x66\x4e\x2d\x62\x7c\x64\xcb\x4c\xf6\x93\x85\xd6\x6a\xbc\x04\x4c\x11\x0d\xa7\x01\x48\x46\xce\x42\xb3\x57\xbf\xf7\xc6\xd8\xb9\x7d\x4d\xe0\xc6\xde\xe8\x27\x41\x8a\x88\x01\xcc\x3c\xdc\x61\x7c\x2c\xcb\x4c\xae\x0d\xf3\x68\xbd\xb1\x96\xcd\x4c\xd1\x7a\x0b\xcd\xc4\x5a\x36\x33\x79\x4d\x2d\x5c\x1b\x9d\x9e\x58\x55\xff\x9b\x85\x6b\xa3\x53\x63\x1b\x1f\xba\xb6\xa8\xfe\xb7\x4e\x83\xcc\xba\xc6\x1e\x86\x8e\xa2\x6d\xa6\x48\xbe\x79\x5c\xc2\x58\x94\x66\x26\x15\x63\xa1\x62\xf8\xe8\x95\x99\x54\x8c\x85\x8a\xe9\x85\x73\x2d\x15\x63\xee\x1b\x35\x45\xe2\x4c\x31\x0b\x73\xdf\xa8\x29\x12\x67\xd0\x9c\x05\x28\xea\x04\x37\x62\x06\x30\x0b\x15\xd3\xb5\x07\x05\x8a\x2c\xd4\x48\x27\xe0\x15\x33\x80\xd9\x17\x73\x46\x57\x91\x09\x14\x59\x18\x41\x64\x1d\x31\x53\xe6\x80\x7d\xd1\x17\xed\xb3\x4f\x7d\x09\x03\x49\x91\x33\x9b\x1a\x9f\x3b\x55\xad\x13\x6c\x98\x22\x9b\xc1\x1a\x60\x64\x41\x34\x53\x1c\xc4\x42\xbf\x28\xac\x66\x72\xaa\x3a\x81\x40\x32\x16\xac\x99\x58\x03\xcc\x02\x30\xb1\x60\xcd\x6c\x69\x6d\xc3\xb0\xea\xda\xd7\x02\x4c\xb6\xff\x6c\x93\x7b\x49\xfa\xc5\x9c\x92\xd8\xc8\xba\x68\x62\x14\x30\x73\x0e\x33\x33\xaa\x6c\x31\x03\x98\x05\x2a\xe2\x0b\x5c\x66\xf2\xaa\x5a\xf8\x60\x8c\xfb\x1a\xd2\x21\xf0\x14\x07\xe3\x0b\x5c\x06\xa5\x38\x78\xb1\xff\x95\x81\x32\x93\xcc\xcf\x98\x51\x27\x43\xfa\x05\xa1\x5f\x8c\x3a\x59\xd5\xff\x16\xd5\xff\x66\xcc\xb2\x81\xf4\x0b\x02\x4d\x91\xae\xd1\xc0\x77\x13\x0c\x9e\x28\x74\x35\x00\x65\x4d\xb2\xe8\x0b\xd1\x06\xf2\x5f\xda\x8c\xbe\xd0\xd1\x00\xb9\x4e\x11\xa8\x88\xaf\x6c\x19\x84\x8a\x10\xbe\x1b\x56\xc1\x99\xaa\xff\x0d\xa1\x7b\x8c\xba\x15\x0a\xb5\x22\x10\x13\xab\xe0\x0c\x45\x73\xe6\xd5\xff\xc6\x17\xb8\x0c\xca\x9b\xf0\x0a\xff\x64\x0a\x72\x41\xa8\xc8\xab\xfd\xaf\x8c\xdf\x09\x15\x79\xb5\x7f\x32\x56\xac\x19\x14\xce\x81\x67\x11\x99\xa2\x55\x2a\xff\x37\x84\x73\x86\x65\x69\x06\xe9\x2c\x04\x62\x62\x59\x9a\x41\xce\x19\x78\x51\xef\xdd\x1a\x3f\x99\x69\x6d\x3d\x2f\xdf\x14\xe5\x82\x5c\xb5\x08\x9d\xc5\xb2\x34\x83\xa9\xcd\x70\xdc\x40\x7b\x10\xea\x67\x40\x26\xd2\x3c\x1a\x04\x99\x10\xfa\x0c\xda\x83\x8a\xf5\x20\x7c\xb5\xa0\x71\x08\xf9\x6a\x83\x52\xc0\xc0\xbb\x1f\x43\xfd\xf4\xe2\x1d\x63\x0d\x99\x41\x46\x1e\xc2\xc8\x23\xcd\xa3\x41\x90\x09\xe1\xe3\x85\xf6\xa0\x62\x44\x08\x5d\xc7\xf7\xb0\x0c\xd2\x75\x08\x38\xa5\x38\x17\x64\x00\xc2\x13\x8a\x8d\x14\x90\x06\x39\x7c\xe0\x59\xc3\x85\x60\x58\x4c\x04\x86\xab\xb2\x5a\xd1\xee\x5c\xea\x49\x78\x7f\xa1\x5d\x2d\xef\xaf\x13\x0b\x24\xe3\x0b\x5b\x06\xe5\x5d\x05\x9b\x80\xf1\x15\x2d\x83\xbc\xbf\xd8\xb1\xb2\x34\x37\xa1\x70\x30\x22\x44\xa4\x10\x18\x84\x96\x70\xa2\x4d\x82\x68\xb1\x10\x58\x30\x0d\x18\x19\x20\x4d\x4c\x03\x36\x42\x2b\x91\x01\xd2\x06\x73\x8e\x6d\xa4\x68\x93\xbb\x7a\x28\xd6\x33\x1c\xd9\x80\x2c\x8f\x36\x98\xe9\x6f\xc1\x0a\x80\x87\x36\xde\x90\x76\x19\xae\x5d\x40\x26\x47\x1b\xf9\x93\x6c\xba\x2c\xb1\x9f\x72\xdb\x04\x63\x00\x1e\x6a\xdd\x21\x3b\x6e\xb8\x1d\x87\xe7\xef\x82\xe1\x21\xc0\x34\xde\xe8\x0e\x0f\xc4\x78\xd5\x1d\x37\xe5\x40\x12\x48\x1b\xca\x0f\x19\x25\xba\xc3\x03\x31\xa4\xd0\x82\xa4\x00\x24\x88\xb4\x51\x34\x6d\x25\xda\x24\x48\x19\xf2\x14\x0d\xcf\x0f\x01\x19\x1b\x6d\x28\xd9\x6b\xd4\x98\xee\xa2\xef\xa6\x64\xd1\x26\xbd\x2c\x43\x9e\xe8\x20\x30\xc0\x43\x90\x32\x9a\x96\xbe\x45\x3f\x09\xa2\x87\x14\x61\x90\x1b\x40\xb1\xae\xd1\xd5\xcf\xfe\xa7\x8c\x63\x17\x08\x73\xc2\x82\x2b\x63\x9b\x32\x0f\x83\xc1\x00\x8a\x83\x0d\x25\x8e\x0c\x8b\x25\x64\x86\xc4\x50\xf0\x3a\xd8\x0d\xa0\x18\x99\xd8\x0d\x2c\xd8\x0d\xf0\xf0\xb8\x0c\x68\xfb\x5e\x65\x67\x8a\x6b\x0f\x39\xad\x06\x62\xaa\x79\x92\x06\xf4\x73\x88\xe9\xe4\x49\x1a\x32\xf3\xc6\x88\xe1\xd1\xd9\x3c\xa4\xcf\x9c\x03\xe1\xca\x38\x2d\xd2\x59\x41\x7c\x80\x87\xf7\x8a\x88\x0f\x6c\x7c\x31\x9d\xc4\xf3\xe3\xd3\x74\x7e\xf1\x7b\xf4\xc0\x0c\x61\xb7\x20\x45\x00\xdf\xed\x32\x91\x22\xd8\x70\x16\x48\x3c\xc4\x44\x43\xb1\xae\xe1\x39\x2c\x60\x09\xa0\x0d\x69\xb4\x20\x4c\x80\x62\x72\x83\xcc\x6f\xe6\xfc\x08\x09\x49\xa7\x53\x1a\xcd\xf9\x11\xae\x8c\x63\x57\x82\xcb\xd8\xf1\x1d\x9d\xdb\x63\xeb\x3b\xaf\x3f\x06\x6b\x00\x6d\x1c\x6d\xcf\x13\x7d\xe1\x31\xfa\x84\x97\x3e\xc7\x4b\x50\xbc\xee\x13\x5e\xfa\x9c\x49\x09\xac\xf3\xb3\x4f\x1a\x2d\x18\x0c\x90\x78\xe7\x7c\x8a\x50\x7f\x39\xfa\x42\x6c\xf3\x09\x2f\x7d\x39\xfa\xc2\xe3\xf0\x29\x44\xfd\xe5\x18\x1f\x8f\xc3\x27\xad\xf5\x39\x1f\x2c\xf8\xa6\x97\x89\xc1\xc0\x3e\xb7\xd5\x90\xb8\xe5\x3f\xe5\x8b\x7e\xa1\x7a\x52\xd3\x77\x9c\xb3\xaf\xc4\x77\xb4\x29\x3f\x79\x91\xbe\x50\x2f\xf2\xf4\x7d\x4a\x3f\xfb\x6a\x8c\x81\xfb\xf3\x53\xa8\xf9\x0b\x55\x90\x88\x6d\x3e\xa9\x82\xcf\x9d\xcd\xe0\xdb\x5c\xf6\xb5\xbf\x7c\xb7\x43\xf6\xdb\x83\x9f\xbc\x48\x4e\x74\x70\x65\xa0\xac\x4a\xe6\x7b\x90\x44\x8f\xf6\x75\xad\xad\xdb\x71\xc8\xd4\xf4\x9f\xf2\x5f\x3e\xa7\x52\x82\x02\x79\x62\x45\xb0\xcf\x1d\xd8\xc8\xdc\x67\x9f\x54\xc8\xe7\xf9\x2f\x50\xb0\xee\x53\x6c\xdb\x49\x10\xae\x8c\xe3\x93\x1d\x17\xcc\x07\xc8\xcc\x6c\x12\x83\x81\x39\x83\x41\x31\x9a\x39\x9f\x12\x46\x9d\x94\xa0\x90\x2c\xdc\x44\x36\x60\x4e\x36\x50\x04\x22\x3f\x79\x93\x9d\x5a\xa0\x18\xcf\xec\xa7\xb3\xf7\x5d\x34\x51\xa0\x25\xd0\xd1\x73\x36\x81\x22\x04\xf9\xe9\xe4\x7d\x3b\xbe\xfa\x35\x38\x75\x10\xe6\xbd\xda\x0b\x29\xbd\x6d\xca\xa6\x98\xa9\xb9\xa8\x51\xc4\xdf\x9a\x39\x5d\x11\x67\x6a\xca\x07\x3b\xef\x35\x5e\x04\xf4\xa6\x0e\xc1\xbc\x46\x83\xde\x3d\xb5\xa9\x9b\x7b\xde\x9b\x5b\xcf\x9e\xda\x94\x03\x76\xbe\xde\x0d\x22\xc0\x29\xff\xeb\x8c\xcb\x37\x13\xc9\x4d\x5d\xbe\x33\x2e\x5f\x85\x2d\xa7\x4e\x47\x54\xee\x83\x55\x8d\x36\xc9\x0b\x62\xb3\xc4\xce\xa2\xcf\x73\x56\x4d\x96\xd3\x1f\x82\x7c\x29\x36\x75\x69\xcf\x1a\xbb\x8e\x37\xc9\x54\x6e\xd8\x8c\xcb\x37\xd3\xcd\x3f\x15\xde\x99\x2d\xbe\xa3\x75\x3d\x95\x99\x39\xbd\xea\x0f\x99\xfb\x67\x76\xad\x8e\xa7\x61\x23\xd3\x9a\x98\x4a\xfc\x98\xee\x64\xc5\x4b\xcd\x3e\x15\xde\x99\x9e\x39\x06\x85\x26\xa7\xbc\x23\x51\xee\x0f\xbe\x98\x66\x53\x61\x60\xaf\xee\xbf\x32\xce\x99\x42\xbd\x33\x6e\xd1\x97\x9e\x1a\x95\xfb\xdb\xf4\xca\x25\xbc\xd4\xec\x53\x8e\x54\xaf\xee\x4f\x20\xeb\xa5\x4d\xdd\xa2\xd3\xad\x02\x28\xa4\x39\xe5\x59\x98\xee\x9d\xc4\xab\xed\x22\xef\xc1\x74\xbc\x8d\x97\x60\x66\xea\x1c\x78\xfd\x7b\x02\xb9\x26\x6d\x2a\x2f\x7a\x9e\x18\x1f\x01\xcb\x94\x17\x60\x9e\xf8\x8e\xfb\x65\xc9\xd2\x5f\x4f\x7c\x47\x8f\xcb\x22\x97\x9f\x79\xdd\xfc\x95\xf1\x3b\x1d\xbc\xe5\x61\x52\xbc\xb4\x4c\x97\xbc\x85\x2b\x30\xf5\xcb\x94\xb3\xa5\x93\xb2\xbc\x5c\x8f\xf4\x87\xb6\x64\x24\xaf\x6b\x24\xb7\x52\xff\x1e\x3f\x84\x2d\x99\xd0\xeb\x02\x53\xf1\x1f\x9a\x2a\xdb\x6d\xb9\x67\x0f\x2f\x11\xcb\x52\xf8\x71\xc5\x8d\xf0\x12\x95\x2c\xa5\x29\x78\xb1\xfa\x95\xfd\xe6\x73\xe9\x46\x58\xb1\xaf\x15\x0a\x5d\xd2\xfa\x51\xa1\x8e\x42\x15\xb7\x4c\x63\x0f\x70\xc8\xa7\xd4\x6c\x69\xef\xae\xd0\xfa\x85\xb7\xc5\x92\x25\xbc\x02\x1c\x16\xe6\xb1\x2d\xa5\x30\xac\xd8\xd7\xe4\xb6\xb4\x25\x74\xb8\x9c\xeb\x1b\x7c\x66\xcd\x96\x32\x9a\x96\xa7\x30\xa0\x10\x95\x2c\x05\x0f\xd6\x88\xf1\x51\x3f\xaa\xb2\xdd\xbc\x90\xfd\xca\x1a\x65\x3c\x2b\xeb\x8b\x7e\x52\x43\x2e\x05\x08\xa2\xb2\x1d\x85\xa8\x44\x95\xed\xb6\x66\xfc\x1e\x11\xee\x92\x87\x6e\xf9\xfb\xeb\x50\x28\x74\xc9\xa4\x5d\xf3\xfc\xe3\x0f\x55\xeb\xd9\xd2\x1d\xb4\x02\x00\xf2\xb9\x34\x5b\x3a\x62\xeb\x5a\xb7\xfd\x2f\x2d\xea\x7e\x5a\x71\xfa\x0a\xb5\xe7\x92\x7f\x6e\xed\xe8\x25\xb5\xe7\x52\x40\x73\xed\x18\x1d\x53\xdc\x54\xd7\x6e\x51\xd7\x8e\x42\x1c\xbe\x64\xed\xae\xf3\x67\x9b\xdc\x65\xf2\xff\x7b\xcd\x7b\x2f\x74\x0b\x2d\x25\x3d\x46\xc9\x3b\x58\xff\x67\x2a\x79\xb7\xed\x15\x48\x60\xfd\x9f\x6d\x1d\xe8\xfd\xc4\x86\x60\x90\x74\x2b\xb5\x6a\x3f\xd1\x4d\x1a\xc9\x5b\x87\x7d\x07\xdc\x24\x21\xa6\x6d\xa5\x5d\xed\xe4\x0a\xb2\xf2\x30\xa8\x54\xde\xb6\xe7\x3d\xa0\x52\x59\xab\x54\xde\xbc\x32\x3e\x41\xb5\x81\x5b\x4a\x62\x87\x21\xac\x40\xe8\x56\xd6\xe3\x0e\xb8\xa9\x22\xbf\x2d\x4b\x77\xbf\xd1\x17\xc2\x81\xad\xb4\x2b\xaf\xa8\xbf\x32\x8e\x4f\x61\x03\xaf\xa8\xef\x0a\x39\x6f\x29\xa5\xed\x9e\x3b\x28\x46\xba\x75\xd7\x6e\x4f\x88\x84\x6a\x03\xb7\xf4\xce\xae\xde\x24\xd5\xce\x56\xae\xe4\x8e\x6b\xb8\xbe\x5c\x3d\x5d\xc3\xbb\xc6\xe8\x08\xd4\xb6\x42\xa4\xdb\xc3\xa0\xa8\x3c\x5e\x5b\x36\xf0\x0e\xe0\x4b\x8e\x4d\xdb\x02\xbe\x51\x98\x0f\x85\x56\x77\xfb\x4b\x9b\x5f\xc8\x7e\x1b\x77\x77\x7d\xd7\x11\x32\xb6\x29\x1b\x78\x87\x0d\xac\x72\xc3\x2d\x35\xb7\xe3\x8a\x56\xb9\xe1\xd6\x55\xeb\xb5\xf6\x09\x7c\x80\xcd\x36\x09\x35\x6c\x8f\x98\x4e\x5e\x29\x5b\xce\xb9\x3d\xa2\x4d\x1a\x04\x5b\xce\x39\x2f\xbe\xbf\x32\xce\xa7\xae\xe1\x1d\xd7\xb0\x4a\x11\xb7\x9c\x73\xfb\x8b\xdd\xa9\x35\x92\xa1\xbb\xbf\x68\x53\x27\x45\x0e\xb8\xfd\xc5\x4e\xe2\xd5\xb0\x15\xcf\xdc\x9e\xa5\x0d\x92\x6f\xda\x56\x50\x72\x7b\xd0\x00\x7c\x9c\xcd\xb6\xb2\x2c\x76\x18\xa5\xaa\x37\xdc\x0a\x4a\x6e\x2f\xa3\x82\x02\x9d\xe2\x02\xb0\xed\x59\x16\x68\xda\xd5\x52\x4a\x3b\x0c\x56\x15\x07\x6e\xb9\xe0\x9c\x18\xe0\xca\xf8\x9d\x82\x92\xdb\x83\x06\x68\x84\x27\x47\xda\xe5\x78\x70\x11\x0a\x58\xaa\xea\xdf\xbc\xca\x3f\x41\x41\xc9\x43\x5a\x3d\x3b\x01\x09\x48\x94\x69\x47\x06\xeb\xb9\xc0\x1c\x2f\xb7\xc4\x91\x02\x39\xee\xdf\x87\xea\x06\x8f\xf2\x2f\x4f\x28\x90\xf6\x97\xef\xd4\x95\x1c\x53\x46\xe4\x72\x5e\xb5\x19\xb6\x6c\xa3\xce\x3d\xb2\x65\xcf\x1b\x43\xe7\x36\x3b\x8a\x0b\x9c\x37\x86\x40\xbb\xf3\x28\x2e\x70\xc2\xce\x55\x75\xe0\x51\xb6\x44\xb0\x10\xa0\x71\x9b\x1d\xc5\x24\x4f\xd8\xc0\x8a\x81\x1e\xa1\xfc\xe3\x89\x5a\x68\x44\x27\x47\x99\x14\x41\x43\x00\x72\x76\xda\x51\xbc\x32\x68\x08\xc0\x77\xdb\xec\x08\xb9\x9c\x6b\xcb\x36\x81\x3d\x51\x09\x98\x53\x09\x88\x73\xdc\x8e\x72\x25\x9c\x54\x40\x94\xe3\x76\x64\xac\x3a\x6f\x40\x7b\x35\x5f\x42\xdc\x4e\x1b\xd0\x5e\xde\x43\x47\x00\xe3\x04\xc0\x50\x21\xe2\x11\xc0\x38\xee\x86\x07\x79\x3e\xed\x90\x66\xc3\x8e\x9f\xf4\xa4\x91\xe9\xc0\x9e\xef\xcf\xcf\xb8\xaa\xf2\x4c\x9d\xf0\x4c\xf1\xf5\x38\x13\x1d\x80\x1d\xf7\xa6\x43\xf5\x8b\x47\xd5\x55\xc7\xa3\x8a\xe8\x54\xc6\x67\x6a\x4e\x3c\x3a\x88\x4e\x27\xa7\x4a\xfe\x2d\x4a\xfe\x41\x9a\x4f\x3b\x3a\xb0\x27\x3c\x4c\x9d\xca\xf8\x28\xbd\xe9\x04\x1a\xe8\xf5\x6f\xfa\x7f\x8f\x20\xfe\xf1\x4a\x29\xa8\xbe\xf1\x28\xd0\x77\x4e\x0c\xb1\xe9\x27\x75\xf6\x02\x49\xf0\x31\x3b\xa8\xea\x1f\x4f\xa0\x85\xfe\xd3\xe3\x78\x78\x7b\xe3\x09\x47\x12\x5f\xa4\xc3\x93\xf5\x5d\xb8\xbf\xfb\xef\xf0\xe1\xe1\xe1\xc3\xf3\xc6\xf0\x7f\x54\xde\x78\x98\x10\x80\xc7\x6b\x1d\x40\xf6\x50\x3c\xb4\xa2\xf1\x5c\x00\x50\xf1\xc3\x65\x50\x65\x3f\xa2\xb2\x1f\x8c\xe1\xe2\xa1\x8f\x09\x4f\x58\xd8\x24\x1d\xc5\x53\xd4\x64\xdc\xec\xfd\xa7\xe2\xf1\xd0\xa0\xc0\x53\xa2\x4d\x70\x5a\x78\xb3\xe3\xb9\x37\xbb\x9e\xbd\xc2\x53\xd5\x95\xfa\xe7\x67\xfc\x39\xa6\x03\xe0\xf1\x74\x00\xf0\x71\x3c\x3c\xbc\x85\xf1\x78\xbe\x34\xf8\x02\x1e\x9e\xa6\x21\x78\x48\x0e\xac\xa8\xc4\x63\x1a\x82\x57\x41\xc0\x7e\x86\x01\x1e\x1a\x0d\x78\x3c\x7c\x06\xcb\x9c\x69\xe6\x33\xe2\x89\x9b\xd6\x5e\xb6\x39\xb4\xb2\x71\xfe\xec\xe5\x2a\x0c\xad\x6c\xdc\xb4\xf6\x72\x0c\x9f\x7e\xcf\x9f\x16\x07\xcb\x1b\xf1\x7c\x1a\x43\x1c\x24\x86\x62\xf1\xd0\x91\x84\xc7\x33\x80\xc0\xd2\x47\x3c\x53\xcb\x10\xb7\xa9\x15\xce\x27\x8d\x68\x3c\x71\x00\x49\x56\x8a\x67\x69\x0c\x2b\xe6\xa5\xb2\x9f\x4b\x6d\xc6\x4d\xcb\xd2\x47\x38\x43\xc0\xef\xcf\x18\x7b\xe3\xd8\xb7\xd6\x36\x6e\x53\xd3\x69\x38\xda\xd5\x61\x7c\xb3\xbe\x11\xcf\xd1\xba\xc7\x6d\xca\xfa\x46\x3c\x47\x6d\xc6\xc9\x64\x7d\x23\xc4\x32\x80\x60\x19\x80\xf1\xa4\x88\x49\x00\xc1\x24\x00\xd6\x37\x22\xb1\xf6\x11\x29\xfd\xf9\xdd\x6f\x2f\xa5\xa4\xef\x52\x7c\x07\xc9\xfe\xf2\x5d\xcc\x27\xf7\xae\xa8\x04\x90\x02\xc7\xd3\x6f\x87\x24\x4d\x90\x3c\x7f\x19\x74\xdc\x21\x91\xf2\x0a\x29\x34\x01\x3d\x77\x48\xaf\xfa\x12\x38\x9e\xe1\x5d\x24\xe2\x78\x24\x2f\x7e\x04\x8b\x18\x91\x8a\x7e\x2f\x1c\x63\xc8\xfc\x8e\x69\x3c\x48\xc5\x0d\x42\x1e\x87\x44\xd0\x8d\x54\xa3\x9b\x2f\xa7\xb3\xaa\x9b\xe1\xfb\x22\x7b\x28\x44\x41\x80\x54\x63\x08\x2f\x7f\xae\x6a\x5a\xc2\x2f\xc6\x0a\x47\x24\x1d\xf7\x14\xa0\x9b\x15\x8e\x48\x5d\x53\x1d\x9e\x61\x32\x8b\x22\x11\x58\x23\x79\xee\x21\xb3\x97\x91\x4c\x3b\x22\x70\x35\x83\xc2\x48\xa6\x91\x3b\x25\x2e\xc0\x5d\x9d\xa0\xa1\x23\x66\xac\xf1\x3b\x68\x15\x02\x8f\x93\x90\x14\x09\xea\xca\x88\x55\xe7\x8e\x4f\xc4\xe3\x48\xe3\xbd\xdd\x7c\x25\xd2\x02\x85\x92\x40\xe7\xc8\xc7\x5f\x9a\xf4\x05\xd2\x84\x7d\x1a\x9d\xe7\x43\x83\x81\x5f\xa4\x4f\x93\x19\x68\x1c\x3a\x0b\x9f\x16\x28\xd0\x38\x74\x16\x96\x7a\x79\x55\x02\x18\x0e\x47\x5a\x5a\x03\xcf\xc4\x01\x63\xc2\x48\x4b\x93\x19\x96\x3e\xcb\x1b\x91\x08\xaa\xe1\xdc\x04\xf9\x79\x74\x14\xb6\xda\x3c\x25\x64\x6c\xf3\xa8\x9b\xf7\xa2\xcd\xcf\xc3\x2d\x9d\xf9\x9e\x06\xf2\xf3\xba\xec\x07\x79\x90\xf9\x16\x18\xf2\x3d\xf5\x57\xd6\x28\x1b\x92\xcd\x90\xb1\xcd\xa4\x36\x53\xb4\x49\x35\x9e\x09\xc6\x91\xef\x51\xbf\xb2\x4a\x19\xf7\x74\xce\xd9\x65\x85\xdf\xe9\x38\xe7\x1c\xdf\xfd\x70\x0d\x32\x5f\xf9\x41\x7e\xe3\x3b\xaa\xdc\xac\xcb\x3b\xbf\x31\x67\x3f\x8f\x0b\xb2\x8e\xba\xf3\x18\x5c\x19\xc7\x50\xd4\x66\x89\xf9\xfc\x01\x17\xe4\xa2\x31\x94\x98\x97\xc6\xdf\x2b\x9a\x97\x12\x6d\x12\x2d\x64\xa9\x08\xe7\x31\xc8\x0f\x03\xad\xc8\x55\x73\x56\xe3\xf7\x08\x6a\xb2\x74\x44\xbe\x3a\xe2\xca\xd8\x26\x03\xd7\xc8\x35\xe6\xa5\x73\x0c\xd2\x11\xb9\x25\x97\x71\xeb\x66\xfa\xce\x91\xaf\xd1\x7e\x65\x5c\x77\x1a\xed\xc8\xd7\x30\xbf\x32\xfe\x5e\xd3\xef\xb5\x75\xb7\x35\x41\x4d\x6e\x1a\x5e\x8f\x65\x27\xa8\x11\x19\x02\x72\x8f\x29\xe3\xb6\xce\x5d\x4d\x5e\xb5\x93\x1f\x06\x53\x91\x4d\xcb\x60\x39\x64\x9c\x6a\xd3\x32\xd8\x0a\x19\xdb\x34\x0d\x1d\x3e\xd5\x0c\xa6\x22\x33\x49\x07\x19\x35\x64\x1c\x83\xf4\x4e\x86\x1f\x95\x94\xff\x1e\x4f\x04\xf2\x50\x57\x47\x74\x95\x97\x43\x1e\xea\xce\x17\xdd\x79\x39\xc4\x4f\x2b\xff\xb5\x90\x71\x25\x3e\x75\x67\xc6\x77\xd4\xe4\x99\x56\x00\x9c\x36\xe1\xca\x38\xfc\xf9\x97\xef\x62\x4a\x09\x50\x32\xf3\x07\x91\x57\x0a\x19\x77\xda\xd2\xae\x58\x33\x64\x9c\xee\xad\xef\x76\x8c\x8f\x2a\x39\x6f\x9d\xa4\x1d\xdf\x51\xef\x8a\x64\x01\xce\xa9\x70\x65\xfc\x3d\x81\x90\x7c\x62\x0c\x9d\x63\x38\x1a\x43\x68\xad\xc4\xdd\xfb\x4a\x6b\xbd\x4f\xb4\x49\xc5\xfb\x0a\xa0\xbc\x4e\xb3\x4b\x8f\x13\xde\x07\x12\xfd\xd9\xe4\x6f\xe5\x9d\x90\xe1\xf7\xa7\x1f\xc0\x44\x7c\xf2\x4a\x69\xbd\xa9\x87\x4c\xdf\x4d\xc9\x7c\xaa\x49\xe1\x8a\x37\xab\xcd\x5c\x43\xc6\x6e\x66\xf5\x25\x8f\x90\xb1\xcd\xac\x36\x43\xd9\xf1\x61\x6d\xbc\xb2\x62\xde\x37\x85\xec\xa5\xac\x48\x16\xbf\x97\xf8\x7b\x32\x55\x9c\xfb\xe1\xca\x7e\x53\x2d\x52\x07\x38\xa9\x43\x7e\x58\xa3\x89\x57\xe6\x88\xf3\x3b\x5c\x19\xe7\x45\x0a\xed\xad\x7e\xe2\x49\xfd\x0a\x11\x3e\xe0\xad\x3d\x64\xfc\x4e\xb6\xca\x5b\xa3\xcd\x9f\x37\x11\xaf\x14\xda\xdb\xa2\x4d\x62\xf9\x57\xc0\xe6\xbd\xc0\x26\x3f\x99\x28\x44\x4c\x11\x78\xdb\x09\xd9\xef\x18\xbd\x74\x3d\xe0\xed\x25\x64\xec\x4b\xd7\x76\xe9\xae\x5c\x19\xec\xc4\xcb\x60\x20\xde\x1e\x73\xd6\xd4\x26\x8f\xf4\x6b\xb1\x0e\x54\xf4\xaf\x6c\xa3\xd7\xfc\x48\x67\x1e\x87\xd7\x34\x9f\x16\xbf\xc7\xe3\x20\x8a\x09\xbc\x16\x7b\x89\xd6\xeb\x0b\xad\x7b\x68\xad\x4c\x45\x2f\x1a\x09\xbc\x23\xfa\x42\x33\xf4\x15\x24\x7a\x47\x7c\x07\xb6\xf9\x69\x5e\x3e\x3f\xd2\xaf\xf6\xae\x70\xcf\xfb\xf5\x90\x71\xec\x9f\x7e\xef\xdb\x21\xe3\xef\x4d\xf5\x73\x46\x9b\x89\xeb\x37\xd5\x97\xd9\x42\xc6\xbe\x4c\xed\xa5\xe5\xaa\xee\xcd\x5c\x5b\x61\xa9\x77\xd5\x90\x71\xce\x96\xfa\xb2\xbe\x90\x71\x1d\x96\xf6\xd2\xba\x97\x15\x39\xe4\xf0\x0a\x4b\xbd\x3b\x86\x47\x8d\xfc\xca\xdc\x7a\x03\x4b\xf1\x65\x40\x88\x0f\x02\x6f\x68\x25\xc6\x48\x51\x64\x36\x95\x27\x86\x4e\xed\x59\x98\x23\x88\xf2\x8c\x90\x19\x65\x53\xb2\x68\x93\x78\xa2\x30\xc4\x81\x12\xaa\xe7\x25\x66\x28\x32\x9b\x4a\x9a\x21\x7b\x29\xdb\x92\x45\x9b\x1c\x7b\x21\x0d\x14\x4a\xa8\x25\x3a\xd5\x50\x98\x5b\x88\x92\xfb\x9d\x32\x9e\x5a\xf1\x48\xa0\x84\x56\x7a\xe9\x23\x29\x2c\x11\x43\x09\xad\xf4\x1a\x9b\x7c\xd5\xe4\x1b\x43\x20\x2e\x28\x82\x60\x25\xb4\x12\xc3\xa0\x28\x45\xd3\x59\xde\x90\xb1\x4d\x39\x50\x4a\xf1\x53\x54\x88\x19\x0a\x43\x23\x28\x35\x85\x8c\xdf\x49\x2b\x95\xea\xd3\xc2\x50\x27\x4a\xd3\xb4\x34\x5f\x3e\x86\x2c\x51\xa4\x79\x4a\x1b\x21\x63\x9b\xc2\x3d\x25\x34\x0f\xc9\x47\x51\x98\xb8\x8c\xd2\x5b\xc8\x38\x9f\x32\xc5\x9c\x6e\x22\x3f\x24\x1f\x45\x91\xbd\x55\xac\x84\x8c\x6d\x4a\xbb\x38\xdd\x44\xeb\x9a\x16\x39\x5e\xca\x85\x44\x8d\xe9\xf8\x10\xfd\x04\xca\x55\x25\x4d\x2e\x20\x31\x4c\xa0\x60\x5e\x11\xbd\x3c\x65\xa8\xff\x57\x91\xe8\x65\x19\x14\x61\x1a\xa7\x93\xd0\xc3\x32\x28\xd2\x1d\xe5\x1b\x57\xc4\xe3\x5a\xe4\xaa\x29\x9f\xf7\x50\xf3\x28\x8f\x8b\xf3\x45\x34\x72\x5b\xa1\x08\xb3\x94\xab\x0b\x9a\xd1\x76\x2b\x82\x2c\xce\x24\x91\x1f\x3e\x32\x88\xb2\x34\x53\xeb\xce\x94\xdc\x42\x45\x76\x56\xd9\xde\x7b\x82\xa7\xb2\x75\x54\xaf\x96\x68\x56\xf9\x15\x33\x8b\x51\xb6\xb9\x88\xbf\xb5\xff\xd2\xe0\x71\x11\xbb\x78\xd4\xc5\xe3\x0d\xf2\x86\x29\x47\xd3\x71\x7c\x3a\x88\xa9\x2a\x03\xa6\xa8\x8f\x77\x9e\x77\x48\x15\x8e\xa9\x8f\xcf\x2f\xcf\xbd\x58\x2a\x50\x1f\xef\x06\x6f\x90\x2a\xb3\xcc\x49\x2a\x9a\xf1\xd4\xd7\xa4\xaf\x92\x7f\x65\x7f\x8f\x16\x02\x95\x39\x4b\xa8\xf9\xf3\x2f\x7f\xc3\xae\x32\xcb\xea\xeb\x8b\x06\xf6\x52\x2a\xa1\xbe\x3e\x8f\x34\x80\x45\x51\x81\xfa\xde\xae\xe0\x97\x13\x0d\x51\x50\xa0\x7a\x92\x06\xe9\xac\x50\x85\x44\x9c\x70\xa2\xc9\xd9\x53\x65\x59\xd5\x6b\x59\x35\x96\x00\xa0\x56\x75\xe3\x42\x92\x46\x9e\x2b\xd4\xaa\x06\xab\x37\xc8\xdd\x5d\xa5\x27\xea\xd5\x13\x0d\xbf\x8c\x1d\xd4\xa6\x1e\x5e\x43\xa9\x31\x25\x0c\x55\x18\xa4\x7a\xf8\x83\x19\xfe\xa8\x5d\x5f\x75\xd7\xc7\x45\x4b\xcd\x9c\x0e\xd4\x30\x8e\x8a\xd6\xda\xf4\x9d\xc5\x77\x44\xc8\x95\xd5\x0d\xa8\x66\x21\xe3\x77\x0c\x84\xa2\xa2\x87\x8c\x83\x13\x94\x70\x36\x89\xfc\x30\x4c\x8f\x3a\x34\x5d\xc3\xbf\x63\xb8\x1d\x75\x68\xbe\xbe\x14\x32\x8e\x8f\xf1\x11\xd4\xaf\x86\x8c\x3b\xef\x53\x3f\x3f\xef\x67\xd5\xf2\x08\x4a\xd4\x80\x12\x55\xeb\x23\x28\x51\x67\xb4\x49\x17\x5e\x95\xf5\x53\xa7\x2b\x64\x86\xe9\x21\xea\x09\xd4\xf5\x86\x8c\x6d\x2e\xf5\x25\xa0\x04\xeb\x95\x51\x99\x22\x88\xba\x7d\x5e\xc8\xb7\x8b\x2a\xd7\x6d\xdd\x25\x64\x3c\x74\x5b\x73\x16\x38\x43\x17\x6a\x3d\x5a\x87\xd3\xfe\xf1\x47\xed\x3f\x86\x05\x34\x16\x3a\xa1\x5d\xe4\x50\x15\xe2\x68\xf2\xbc\xb4\x7b\xd8\x2b\xdf\x47\x43\x13\x58\x70\xba\x88\xaa\x20\x46\x63\xad\x01\xda\x85\x0d\x55\x81\x0a\xb1\x40\xa0\x65\xbf\x4b\x49\xfb\x8b\xc6\x60\x26\x5a\xdc\xf9\x64\x48\x45\xd3\x9d\xdf\xde\x98\x12\xa2\xea\x26\x0f\x6b\x7b\x47\xc8\x38\x36\x9d\xd5\x56\x62\x79\x88\x9c\x9b\x02\x1c\x2d\x2c\x8a\xaa\x39\xd1\x69\x6d\x61\x51\xb0\x6c\x1a\x4d\x16\x45\x0b\x8b\x82\xb5\xd1\x68\x4d\xb3\xd2\x5a\xc8\xd8\xa6\xac\x86\x16\x77\x37\x63\xfb\x68\x5d\x6d\xf6\x19\x32\xce\x59\xd7\x18\xe2\x7e\x66\xfc\x1e\x0d\x1a\x03\x7c\x0c\x7c\x3c\x13\x4d\xfe\x05\x67\x6c\xb8\xb2\xdf\x56\x69\x43\x73\x3d\xbc\x2f\x8d\x3e\x8b\xa6\x6b\xb3\xf9\xab\x39\x95\x81\x8a\xa6\x20\x86\x13\x2f\xe4\x87\x61\x78\xb4\xa9\xbd\x12\x3e\x82\x46\x2f\x5d\xd3\x9d\xda\xc2\x0f\xc0\xf7\x31\xd1\x74\xa9\xb6\xb8\x54\xf9\x3e\x26\x9a\x4e\x49\x5b\x16\x32\x0e\x61\x69\x78\x2b\x86\xf0\x4b\x61\x45\xd3\xb5\xda\xe2\x24\x30\xb4\x8f\x26\xff\x41\xdb\x3b\x64\x1c\x83\x02\x1c\xce\xc1\x90\x9f\x46\xa3\xaf\x1d\xb5\x19\xbe\x05\xd6\x29\xa3\xe9\x6a\x75\xe6\x85\x2b\xfb\xb5\xd9\xe5\x3f\xe8\xe1\xf5\x6c\xdc\x9e\x5d\xe7\xab\x87\x67\x93\x75\xca\xe8\x7c\x5f\x0b\x3d\xe5\x90\x55\xca\x8a\x64\xd1\x97\x5f\xbe\x00\xba\x82\x1f\x3d\xc5\x3a\x10\xc5\x8b\xb1\x01\x4e\xd0\x70\x65\xec\xa7\xbc\x9e\x3d\x8e\x26\x09\x83\xd1\x75\x34\x7b\x8e\x7e\x9a\xbe\xdb\x92\xc5\x3a\x10\x8e\x77\x85\x3a\x7b\xc0\xf1\xf6\xcb\x8c\x45\x7f\x35\xf6\xf0\x88\xb2\xf6\x19\x5d\xf1\xcc\x5e\x62\x1d\xe8\x04\xe9\x82\xe3\x3d\x3c\xa2\x8c\xfb\xa3\xb3\x5c\x07\x3d\xe0\x38\x99\x86\xd1\xab\xe6\xac\xfa\x9c\x75\x1a\x84\xbd\x6a\xce\xaa\x85\xac\x53\x36\x25\x5b\x21\x63\x5f\xe4\xd9\xec\xcd\xf7\x2e\x6b\x9f\xd1\x05\xe3\x9d\xbc\xe1\xca\x38\x9f\x0a\x84\xf6\x9e\x43\xc6\x7e\xca\x49\xd0\x03\xaa\xf7\x57\x32\xee\xf9\x1e\xaa\x80\xd1\x78\x88\x96\x01\x4e\xbd\x70\x65\xec\xa7\xd4\x84\x53\x2f\x74\x1d\xdb\xae\x0b\xba\xc7\x05\xcd\x37\x37\xd1\x75\x41\xf7\xf0\x50\x32\xa2\x8e\x2e\x17\x64\x0f\x17\x64\xd7\x16\x94\x1f\xa0\x87\x1f\xa0\x6b\x0b\x2a\xb6\xea\xcc\x0b\x57\xc6\x29\x53\x6c\xa4\xc7\xc5\xde\x09\x1b\xfb\xa7\x7e\x7e\xbe\x5d\x14\x51\x17\xf3\x02\x7a\x5c\xde\x0a\x7f\x77\x5d\xde\x3d\x2e\x6f\x85\xb8\xfb\x54\x5f\x66\x2c\xbb\xb6\xa0\x2e\xf6\xbe\xa2\x4d\x6d\x41\xc5\x5d\x7b\xa8\x25\x19\x38\x5d\x01\x97\x1e\x17\xbb\x2c\x9c\xae\x8b\xbd\xef\x1a\xb2\xbf\xf7\x3a\x06\xba\x62\x2e\x7d\x5f\xb4\x97\xb5\xd1\x64\x0d\xf4\xe3\x3d\x55\x04\x5c\xe4\x0a\xe8\x67\x87\xec\xb7\xb1\x8d\xd4\x2e\x70\x22\x04\x48\x4f\x98\xf4\x8b\x25\xd7\x13\x56\x24\x83\x64\x31\x40\x46\x4e\x4c\xd8\xde\xf2\x13\xb2\xdf\x84\x1a\x6b\x72\x60\xd9\xf5\x20\xf9\x7d\x61\x4a\xa5\xb0\xd0\x2f\x46\x3f\xb1\x49\xbf\x58\xe8\x17\x59\x3b\x26\xd8\x6f\x11\x71\x91\xb9\x63\x72\x42\x5a\xc0\x02\x12\xf5\xc2\x04\xfc\x2d\x9c\x90\x0a\x64\x8b\x3f\x01\x56\x62\x7c\xdc\x84\xc6\x7c\x24\x38\x7f\x42\x7e\xf8\xb2\x26\xc4\x9f\x00\x0b\xc8\xa0\x80\xb4\x49\x87\x58\xe8\x10\x56\x98\xc0\x14\x39\xb1\x88\x9c\xc8\x76\x31\xe9\x17\x0b\xfd\x22\xe3\xc5\x98\xd5\x0d\x0b\x37\x81\x02\xd9\x26\xa8\x61\xcd\x97\x1d\x74\x59\x98\xec\x76\xbb\x76\x7b\x4f\x5a\x5a\x19\xe7\x4e\x83\xa0\x57\xd5\x60\x4a\xa5\xb0\xab\x0a\x7a\xd2\xc2\x4a\x13\xd8\x70\xb6\x22\x9a\xb7\xe2\x47\x80\x5d\x08\xd2\x93\x96\x7c\x68\x79\x86\x4f\x89\x6c\x25\x51\x27\xc0\x2e\x3a\x01\x5f\x6d\x81\x7d\xda\x99\x81\xef\xf9\x88\x27\x4c\xf8\xde\x99\x13\xf2\x83\xbf\x7c\xa7\x19\x09\xe4\x42\x4e\x60\x98\xa2\x1b\xce\x80\x90\x1f\xd9\x4b\x36\xb5\x3a\xe1\x2a\x54\xec\xdb\x84\xef\xed\x82\x18\xbd\xa3\x0e\x91\x23\xc0\xc9\x11\xf2\xc3\x4a\x19\x98\xbc\x88\xce\x93\xd0\xaa\xf6\x89\x9c\x88\xb6\xa2\x27\x5a\x01\x21\x7f\x8b\x88\xac\xa2\xe9\x26\xed\x60\x17\xde\x40\x51\x26\x13\xa4\xb1\x80\x34\xd0\xd1\x92\x51\x60\x11\x12\x21\x5d\x30\x44\x8d\x00\x84\x83\x91\x94\xc0\x80\xdc\x05\xce\x84\x70\x65\x46\xd9\x96\xcc\x8f\xab\xf2\x86\x44\x7f\x00\x84\x83\x91\x05\xd1\x80\xd4\x0a\xd2\x08\x19\xdb\x54\xdc\x03\x11\xc8\x25\x27\x30\x20\x48\x83\x50\x39\x2c\x96\x86\x68\x13\x80\x1c\xbf\x47\x48\x03\x79\x18\x11\xd6\x06\x88\xaa\x21\x6b\x03\x11\xe4\x25\x27\x30\xa0\xb8\x07\x42\xe5\x80\xc7\x0e\x2c\x74\x02\xde\x3b\x9f\xe9\xe1\xb1\x83\x3c\x8c\xce\xa0\x70\x65\x9d\x32\xcd\xa7\x43\x9a\xf4\xf0\x2c\x88\x36\x01\x28\xe3\x2e\x2d\x51\x35\xe4\x7c\x84\xc7\x78\x13\x39\x81\x01\xc5\x71\x51\xa3\x2b\xdc\x12\x90\xc6\x71\x72\x85\x9c\x14\x87\x17\xa3\x02\xd0\xe6\x3f\xfe\xa8\x02\xa4\x90\x7b\x00\x1e\xbd\x48\xa4\x04\x06\x4c\x33\x6d\x6f\xc8\xd8\xa4\xa2\x09\xb8\x38\xa4\x0a\x73\x42\x29\x1b\xce\x61\x50\x9b\xd6\x5c\xba\x08\x17\x4e\xdc\x16\x39\x00\x39\x07\x9c\xb1\x20\xa7\x87\x7a\x05\xd2\x2b\x18\x31\x70\xc2\x74\xc8\x8d\xe8\x8c\x05\x57\xc6\x75\x15\xbe\xc0\xfc\x53\xc6\xbe\xc8\xec\x81\x1b\xf9\x49\xc1\x74\xe8\xa4\x3b\x87\x40\x4e\x0f\xc3\x83\xd0\x91\x75\x2e\x80\x9c\x1e\xaa\x7d\xe8\xd6\x76\x2e\x80\x9c\x12\x1d\x1c\x50\x18\x13\x7e\x6b\x27\x52\xf4\x62\xc8\x9c\x70\x2e\x80\x9c\xf8\x2c\x1a\x86\xce\xe5\x70\x73\x22\xb1\x74\x17\x43\xe6\xc4\x70\x93\x21\xb1\x3c\x17\x43\x26\xc3\x48\xe6\x32\xae\xde\x90\xe3\x7f\x78\xec\x30\xb1\x74\x17\x43\xd7\xef\x78\xa3\x4d\xce\xe7\xd0\xf5\xeb\xd5\xf8\x39\x25\x66\xe3\x8c\xc2\x79\x19\xa5\xfc\xe3\x0f\x90\x52\x15\x43\x47\xc1\x6b\xef\xef\x67\xfc\x39\x52\xbf\x62\x94\x18\x1e\x97\x61\x54\x0d\xaf\xc6\xb4\xd0\x8b\x31\x74\x16\xbc\x2e\xff\xca\x40\xd9\x94\x2c\xa6\x9a\xb0\x72\x34\xb5\x19\xe7\x24\x51\x7d\x0c\xa1\xfb\xd1\xa2\x4d\x6a\xf1\x21\x04\xef\x05\xf7\xed\xa1\x5f\x54\x75\xf3\x18\x96\xae\x88\x8a\x6c\x30\x8f\x18\x5e\x25\x9f\x13\xf9\x79\x31\xa0\x45\xbf\x47\xa6\xb1\x54\x1d\x43\x19\x06\x03\xb1\x06\x8c\x25\xab\x34\x1e\x5e\x1a\xdf\x58\xc5\x8e\xc1\x22\x04\x8c\xf1\xb8\x88\xd3\xa5\x9c\xa7\x31\xfc\xc7\xd4\x0f\x1d\xae\x31\xbc\x8f\x0a\x40\x0f\xe5\x16\x78\xcd\xfc\x95\xb1\x23\xba\x7d\xc7\xe7\x07\x28\xff\x5d\xe0\x3b\xa6\xf6\xca\x2c\xf1\x29\xc7\x3e\xb5\x08\x73\x84\x8c\x1b\x49\x79\x93\x63\xce\x6b\xf2\x14\x8e\x42\xd0\x7e\xcc\x18\x05\x63\x06\x43\x97\xf3\x58\x7f\xca\x38\x8a\xad\x11\xee\x18\xa1\x8e\x89\xbc\xf5\x5e\x35\x7f\x65\xec\x8a\xae\xe0\x71\xfc\x78\x91\x0a\x18\x43\x9e\x83\x71\x62\x66\x78\x3d\x7f\xba\x82\x3f\xbf\x82\x93\x42\xc9\x9f\x62\x7c\xdf\x13\x7d\xe1\xf1\xfa\xe4\xb2\xff\x42\x0d\x64\x26\xbb\x7d\x52\x03\x5f\x8a\x36\x79\x75\x7f\xba\x9e\xbf\xe4\x7b\x5a\xa1\xe4\x8f\xb4\xaf\xf0\xc2\xfb\x2b\x63\x5f\xb2\xda\xcc\x7e\x4e\x32\xcf\xd0\x27\x9f\xfd\xe7\xd7\x6c\x52\xb8\xf8\x93\x77\xc0\x0b\xe8\x73\x62\xdd\x2c\x3e\xb2\x9f\xe1\x2b\x4f\xc8\x7e\x67\x56\x55\xf3\xf8\x42\x0f\x28\x5c\xfc\xc9\x03\xff\xb9\x53\x2f\xf1\x35\x50\x7c\x42\xe8\x9f\x23\xf4\xf4\xd2\x34\xfb\x94\xff\xe8\x95\xf1\x57\xc6\x36\xbb\xc6\xd7\xa3\xcd\x57\x32\xb5\xe9\x41\xb7\xc4\x57\x3d\xa1\xca\x78\x7c\xe6\x63\x78\x09\xb5\x3f\xf9\xd3\xbd\xc2\x3d\xa7\x97\x57\xd8\xa7\x5b\xf1\x83\xaf\x03\x69\x74\xf1\xe9\x48\x7f\x88\xb1\x6b\xfd\x74\xa6\xbf\x11\xdf\x51\x3f\x7e\xba\xfa\xbe\x38\x81\xac\x60\x80\x6a\xdc\xf1\xcd\x18\x83\xe6\x5a\xc7\xe8\x73\x1f\x76\x2a\x34\x75\x3f\x79\xe7\xbe\xe5\xeb\x57\x92\x64\xbc\xde\xbc\xcc\x3d\x27\x61\x78\x3d\x8c\x0f\x7f\x18\xff\xca\x38\x9f\x42\xb2\xfe\x10\x3e\x3a\xd5\xea\xc7\x5a\x1e\xf8\x3b\xf8\xf7\x33\xca\x58\x52\x80\xef\x44\x37\xe9\x60\xfc\x84\x72\xbf\x33\x43\xf6\xfb\xb9\xa9\x23\x36\x3d\xed\x30\x15\x1e\xcd\x29\xe7\xdc\x8c\x63\x54\x98\xdd\x33\x85\x72\xe7\x13\x7d\xa1\xaf\x5a\x05\xf9\xf0\x02\xfc\x2b\xfb\xf5\x73\x2a\x1c\x3e\x3d\xed\x30\x15\xfa\x9c\xa7\xc2\xe1\x33\x47\x5f\x88\x9c\x55\xae\x0f\x7f\x07\xff\xca\xf8\x7b\x32\x90\xe7\x1b\x53\xcd\xa3\x39\x59\xb0\x83\x19\xb7\x30\x19\x68\x31\xe5\x64\xf3\x37\xf2\xaf\xec\x77\x34\xa7\xae\xe1\x19\x88\x54\xa1\x19\x95\xe5\xc3\x2b\xed\xaf\x8c\x6d\xca\x37\x3e\xab\xf7\x53\xa1\x99\xa9\xeb\x74\xba\x6f\x3c\xb1\x4a\x12\x53\xc6\xac\x57\xd3\xe7\x44\xba\x58\x4c\xc5\xbc\xbd\x84\x3e\x27\x85\x58\xa6\x1c\x62\xfe\x08\x7e\x4e\x0a\x95\xa8\x84\x1e\x5e\x42\x7f\x65\x6c\x53\x71\x6d\x2f\xa1\xd7\x2b\x82\x98\xa6\x21\xb8\x1f\x2d\xf1\x1d\x3a\x4c\x41\xd9\xe9\x7e\x34\x3e\x22\x88\xa9\x7b\xd8\xeb\xec\x3b\x0b\xfe\x30\xa1\xc9\x8c\xf3\x5c\xb5\xc9\x04\x73\xfd\x99\xfd\x5e\x89\x15\xa6\x4c\x6e\xaf\xc0\xef\x55\xcb\x2a\xbb\xda\x1f\xd9\xef\xb2\x3c\x55\x90\x0f\x2f\xc8\xef\x95\xae\xb0\x29\xf7\xda\xbc\xa6\x72\xaf\x54\xb7\x7a\x45\x1f\xf1\x52\x3e\x4b\xfd\x30\xe5\x5c\xf3\x87\xf1\x73\xaa\x04\xd4\x53\xce\xb5\x39\x6f\x8b\x64\x51\xc5\x54\x84\x7d\xce\x18\xb4\x4e\x81\x42\x05\x4e\x0c\xa0\x77\x0c\x31\x65\x53\xcf\xf5\xe7\xaf\xb1\x27\x8a\x14\xcc\x75\xa7\xb8\x51\x45\x4f\xa9\x22\xa7\x13\xd0\x33\x86\xd0\xd3\xfb\xf0\xa7\xf7\x73\xaa\xd4\xa6\x53\xf6\xf6\xbc\xf6\x76\x6f\x54\x52\x53\x29\x88\xfe\x40\xff\xfd\x8c\x63\x13\xae\x9f\x3b\x76\x16\x5d\xf3\x53\x41\x38\xe7\x31\xb8\x32\x76\x45\xca\x6d\xee\xe8\x8a\xf6\xcf\xd6\xba\x9d\x18\xb8\x4e\xbf\xbc\x78\x33\x40\x82\xa2\x4a\x22\x36\xc0\x0a\x20\xc0\xca\x4f\x2c\x69\xb0\x95\xa2\x9f\x84\x72\x4b\x79\x86\x4e\x5e\x90\x13\x59\x6e\xb1\x74\xa1\xaf\xd0\x52\xac\xe0\xc4\x52\x1d\xc4\xf2\x84\x9e\xa4\xc8\xd1\x92\x4d\xbd\xf2\x0e\x19\xfb\x29\x5b\x61\xc5\x65\x4f\xaa\x5a\x2c\x69\x29\x7f\xce\x3f\x27\x85\x79\x96\xec\xe6\xe5\xa1\x80\xa4\x30\xcf\x92\x1d\xb1\xc2\x00\x6e\xbc\x60\x97\xdc\xfd\x2b\x0c\xe0\x46\x0d\xbd\x14\x70\xf7\x57\xff\x73\x92\x95\xbb\xf8\xde\x22\x56\x00\xfb\x46\xbf\xc7\x92\x5b\x6d\x05\x48\x60\x29\x26\x96\x40\x82\xf3\x26\x5c\x19\xc7\xa0\xcc\x1c\xe7\x3f\xb8\xb2\xbf\x57\xf0\x06\xbd\xe8\x0f\xa7\x40\xc8\x89\x15\x90\xd0\xab\xfd\x58\xee\xba\x4f\x9d\xe7\x68\x09\x27\xac\x30\x9f\x3b\x53\xe3\x96\xcc\xe7\x35\x7c\x8b\x2a\x6a\xb1\x86\x7e\x2f\x10\x7e\xd7\x32\x49\x7f\xac\xcf\x2f\x59\xbe\x8f\x08\xbd\xe8\x8f\xf5\x8d\x90\x71\xda\x84\xfe\x57\x60\x8f\xae\x65\x9a\xfa\x2e\xce\x7b\x27\x4e\x5f\x72\xb3\x3b\x97\x41\x4e\x2c\xf6\xc3\x5a\x1a\x5f\x1c\xc1\xce\xe3\xb9\x84\xc5\x9d\x89\x20\x27\x45\xb4\xc5\x44\x80\xe5\xee\xb0\xa4\x30\xc2\x52\x84\xcf\x49\x09\xae\x4c\xdf\xe9\xf7\xe2\x08\x0a\x98\x88\x8a\x00\xfb\xf1\xad\xa6\x0a\x3b\xd1\x0d\x60\xc7\x11\x34\x5e\x88\x5b\x47\x70\x07\xde\x36\xae\x91\x5e\xd1\xc7\xce\x9e\xdd\x41\x2d\xb2\x65\x59\xef\x7b\x92\x9a\x0a\x48\x44\x0c\x00\x27\x06\xc8\x89\x6f\x04\x42\xc5\xff\xf0\xe2\xff\x26\x1f\xda\xd6\x6d\xbf\x9d\x57\x84\xcf\x6a\x61\xcb\xe6\xde\xc5\xfb\xa1\x61\x0b\x6a\xef\x30\xb9\x15\x5b\x50\x0d\x3f\x76\xf5\xcf\x68\x5e\xea\x6d\x7d\x78\x79\x7f\x4e\x2a\xbc\xdb\xb2\xaa\x77\xe4\xb4\x70\xb3\x6f\xa1\x80\xed\xd1\xf3\xc4\x27\x07\xb1\xbb\x3e\xeb\xbe\xa1\x95\x7c\xb5\x65\x71\xfb\xf3\xf9\x57\xd6\x28\x7b\x25\x6b\x21\x63\x9b\x4a\x6a\xd9\x8e\x10\x9a\x66\x59\x08\x61\x07\x42\x50\xd6\xd6\x96\x77\x7d\x23\x7e\x8e\x6a\x67\xeb\xbc\x6e\xc4\xcf\xd1\x66\xdb\xd0\x7a\x07\xae\x57\x49\xde\x1e\x1a\x42\x9c\x65\x23\x68\x14\x29\x00\x76\x9c\x65\x95\xdd\x6d\x9d\xe5\x1d\x67\x59\x65\x77\x22\x05\xc0\x8e\xb3\xac\xb2\xbb\xad\x94\xba\xed\xe9\xb8\x49\x65\x77\x5b\xe9\xb8\x3b\xce\xb9\xa2\x1c\x5b\xe7\x7c\x5f\xd0\xd0\xa5\x1d\xb7\x2a\x23\xf7\x8c\x9f\xa3\x2b\x62\x4b\x05\xec\x19\x43\xe0\x2d\xb5\x85\x14\xb6\x27\x15\x24\x05\x39\xb6\x32\x75\x77\x98\x26\x0a\x72\x88\x67\x00\x3b\xbc\x72\xca\xdf\xda\x32\xf1\x77\x98\x2d\xa0\xda\xdc\x52\x2b\x3b\x00\x01\xe1\xf2\xd6\xa5\xbf\x43\xe3\x80\xd6\xe3\x56\x4e\xc1\x0e\x8d\x43\x7e\x57\x6c\x69\x9c\x1d\x1a\x47\x05\x80\x5b\xa6\xc9\x3e\xbe\x23\x14\xb1\xd8\xd2\x38\xfb\x9a\x2d\xad\x73\x4f\x8b\x9d\x00\xc7\xfd\xef\x49\xb9\x5f\x87\x1c\x26\x38\x61\xe0\x83\xa8\xf7\xc8\x97\x77\xc2\x32\x51\xb1\xde\x51\x66\x8e\xb3\x0a\x5c\x99\x51\xb6\x24\x8b\xe1\x11\xcb\x89\x66\x00\xe7\x8d\x21\x50\x49\x1f\x19\xf1\xe7\xde\xeb\xbd\x33\x39\xe5\xc8\xf8\x38\x25\x16\x8f\x7b\xfa\x28\xc2\x7f\xc2\x07\xa8\x30\xc1\xe1\x83\xad\x38\x25\xba\x42\x28\x24\x46\x00\x9c\x1a\xd3\x42\x3d\x76\xa4\x90\x4e\xc0\x01\x29\xb2\x53\xd5\xcd\xf0\x01\x92\x53\x15\x47\x59\x76\xc7\x6b\x97\x12\xa8\xdb\x8f\x7c\xe5\x27\xa0\x02\x68\x08\x1d\x41\x85\x13\x70\x40\xaa\xec\x08\x0e\x38\x05\x41\xce\xaa\xad\x3b\xf2\x19\x1c\x37\x68\xb2\xc2\x04\x22\x21\x80\x93\x10\xe4\x4c\x4e\x55\x1c\x19\x34\xe7\xea\xa4\xae\xb4\xb0\xa3\x9a\x49\x27\x28\xb8\x9f\x71\x47\x28\x31\xe0\x78\xfe\x50\xe6\xd3\x81\x38\x32\x5b\xce\xd5\x4e\x39\xf3\xe9\x40\x1c\xe5\x16\x1d\x44\x37\xb5\x03\x15\x0f\x74\x66\x83\x2b\xe3\xef\x49\xb5\x38\x5b\x41\xce\xcf\x6f\xd9\xc7\xc3\x5d\x3d\xfc\x2d\xf2\x8c\xe7\x87\xbc\x86\xaa\x84\x47\x94\x15\x82\x19\xfb\x23\x4b\x16\xc5\x3b\x4a\xbd\x1f\xaf\x64\x91\x42\x0f\x26\xfa\x0e\xa5\xd0\x0f\xcf\x65\x7e\x9f\xe7\x87\x9c\x47\x81\x64\xb3\x5d\x59\xfe\x85\x5d\x76\xa7\xa3\x76\xf7\x3b\x67\x34\xf4\xb6\x5e\xb1\xd8\x9e\x56\x41\x2e\x95\xdd\x09\x49\xb6\xbf\x85\x90\x54\xfe\xb7\x8d\x99\x74\x3b\x82\xbc\x99\x9c\xaf\x67\x10\x3e\x9c\xf1\xc4\xda\xfd\xfa\x7f\x06\xab\x88\xce\x48\xf1\xdd\xef\xa4\x9f\xc1\xa8\xd8\x19\xee\x92\xcb\x8c\x9e\x9c\x91\xf5\x5d\xfe\xf3\xf7\xd8\x26\x03\xf1\xc7\xe9\x7e\xaf\xec\xcf\x35\x38\x5b\xbf\xe7\xc8\x85\xb3\x7c\x36\xe3\x07\x67\x27\xfb\xcb\xb8\xcf\x7e\xf5\xcd\x5b\xfe\xf1\x47\x7b\xfe\x4f\xaa\xb3\xf2\x7f\x83\xbd\x67\xb3\x94\xf2\x38\x11\x12\x19\x72\xce\x7e\xf5\x5b\xaf\xff\x16\x7b\x41\x5c\x74\x1c\x17\x31\xbb\xee\x08\x16\x1d\x87\x45\x7c\x6e\xff\x6c\x6a\xa8\xe3\xc4\x49\xcc\xba\x3b\x9b\x0a\xea\xec\x6b\x82\x54\xe3\x37\x04\x52\x67\x97\x72\x25\x46\x89\x7a\xe0\x24\x6c\x0f\x1f\xd4\x3c\x9b\xf6\xc8\xd9\xce\x16\xfc\x3c\xaf\x64\xfa\xce\xdf\x8e\x7a\xc8\x24\x7c\x36\x3d\x23\x27\x98\x8b\x54\x70\x7a\x0e\x5f\xf4\x3e\xc7\x53\xcb\x7e\x56\xcc\x39\x2c\xa7\x3d\xae\xdd\xf8\xa6\xdb\x11\x31\xc7\x09\x62\x8e\x66\xff\xfb\x8a\xdc\xff\xf9\xf7\xf1\xcf\xff\xe7\xff\xfb\xff\xc7\x3f\xff\xc7\xf8\xf7\xfd\xc7\xfc\xef\x7f\xfd\x6b\xff\xc7\x7f\xad\x7f\x9b\xff\xf5\xc7\xff\x7b\xff\xf5\x8f\xb5\xcf\xbf\xfd\xc7\xfe\xd7\xfe\x9f\xff\xf9\xdf\xff\x9a\xfb\x8f\x7f\xfe\xe7\x3f\xef\x57\xfe\xdf\xff\x0a\x00\x00\xff\xff\x6a\xcb\x90\xcd\xbb\x0d\x04\x00"); +func _acgc ()([]byte ,error ){return _gb (_dacd ,"RKSJ-V")};func _aga ()(*asset ,error ){_adba ,_cgag :=_cggc ();if _cgag !=nil {return nil ,_cgag ;};_cbag :=bindataFileInfo {_ee :"UniJIS-UTF16-H",_ffd :185917,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492927,0)}; +_cceab :=&asset {_da :_adba ,_dc :_cbag };return _cceab ,nil ;};var _cgf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x4f\x6b\xdb\x4c\x10\x87\xef\xfb\x29\xe6\x98\xf7\x90\xd7\x33\xfb\x4f\x2b\x10\x86\x92\x10\x70\x21\x4d\x69\x9a\xb6\x50\x7a\x90\xa5\x95\x11\xd4\x2b\x21\xcb\x87\x7c\xfb\x32\x33\xb6\x0b\x3d\x18\xd9\xcf\xce\xfc\xf0\x3e\xb3\xab\xcd\xc3\xee\x71\x57\xc6\x15\x36\x9f\x97\xa9\x7b\xcd\x2b\x0c\x63\xe9\x97\x7c\x9a\xce\x4b\x97\x61\x9f\x0f\x63\x31\x86\x2c\xf4\x63\xb7\x5e\x7f\xca\xa3\x3b\xb6\xb3\x31\xdc\xff\xfa\x7e\x5a\xf3\x71\x57\x86\x09\x9c\xd6\xf5\xe7\xf9\x52\x0b\xb0\xf9\x92\x0f\xe3\x69\x5d\xde\xe1\xee\x43\x3f\xed\xf3\x7f\xd0\xe7\x81\xf9\xcb\xd2\xe7\x65\x2c\x07\xb8\xfb\xd8\xce\x6d\xa1\xdb\xc2\xeb\x79\x9e\x7f\xe7\x63\x2e\x2b\xa0\xb0\x5c\x7a\x79\x9a\xcd\xc3\x73\x3b\x7f\x6a\x8f\x19\x36\x92\x75\xaf\x9d\xf7\x5a\x26\xab\xdf\xf2\x72\x1a\xa7\x02\x84\xff\x23\xc6\xbf\xfc\xeb\xfb\x9c\x81\x2e\x31\x6f\xbb\xc7\x97\x61\x38\xe5\x15\x7c\xba\xf4\xfe\x78\xdb\x3d\xc2\x4f\x02\x42\xb0\xc1\x85\xf4\xeb\x52\xfa\xfd\x79\xea\xf3\xe5\x7f\xc8\x6e\x1f\xa6\x73\x59\x21\xd9\xe4\x95\x91\xee\xb4\x9b\xfa\x7c\x9a\xdb\x2e\x2f\x6d\x39\x64\x03\xd0\x20\x22\x6e\xa1\xb1\xf8\xf4\xb4\xe5\x2d\xfc\x53\x61\x9c\xbb\x74\x8e\xbd\x92\x6b\x07\xe2\x30\x6c\x01\x00\xd0\x34\x48\x8a\x48\x90\x0d\xd1\x34\x68\x15\x59\x41\x81\xac\x69\xd0\x29\x72\x82\xaa\x98\x4c\x83\x5e\x91\x67\x44\x68\xbd\x69\x30\x28\x0a\x82\x6c\xe2\xf8\xa8\x28\x0a\x0a\x8e\xe3\x2b\x45\x95\xa0\xaa\xe6\xf8\xa4\x28\x31\xb2\xe8\x39\xbe\x56\x54\x0b\x72\xc8\xf1\xad\xa2\x56\x50\x88\x1c\xbf\x57\xb4\x17\x94\x88\xe3\x3b\x45\x1d\x23\x87\x15\xc7\xf7\x8a\x7a\x41\xce\x72\x7c\x56\x94\x05\x85\xc4\xf1\x83\xa2\x41\x50\xf2\x68\x1a\x52\x5f\x24\xbe\x3c\xd6\xd1\x34\xa4\xbe\x48\x7c\x79\x17\xac\x69\x48\x7d\x91\xf8\xf2\x11\x93\x69\x48\x7d\x91\xf8\xf2\x29\x7a\xd3\x90\xfa\x22\xf1\x15\xc8\x72\xbc\xfa\x22\xf1\x15\x5c\xc5\xf1\xea\x8b\xc4\x57\x88\x8e\xe3\xd5\x17\x89\xaf\x90\x12\xc7\xab\x2f\x12\x5f\x91\x3c\xc7\xab\x2f\x12\x5f\xd1\x23\xc7\xab\x2f\x12\x5f\x31\xf2\x68\x49\x7d\x91\xf8\x8a\x35\x8f\x96\xd4\x17\x89\xaf\x8a\x78\xb4\xa4\xbe\x48\x7c\x55\x9e\x47\x4b\xea\x8b\xc4\x57\x15\x79\xb4\xa4\xbe\x48\x7c\x55\x35\x8f\xd6\x5e\x4f\x64\xd8\x6f\x21\x51\x6d\xe5\x58\x5e\x8f\x1f\x7f\xe7\x3b\x7d\xbb\x63\xdd\x79\x59\x72\x59\xe5\x46\xcb\x1d\xe2\x03\x3f\x96\x7c\x7b\x3b\xcc\xd3\xcc\x5d\xf2\xf9\x13\x00\x00\xff\xff\x43\x08\xad\xb1\x49\x04\x00\x00"); +var _dbbc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\x90\x82\x01\xe3\x56\xaa\x2a\xb5\xe4\x10\x54\x25\xad\x4a\x9b\x5d\x69\xb5\x07\x62\x4f\x90\xa5\xc5\x58\x06\x0e\x79\xfb\xd5\x8c\x59\x76\x0f\xd1\x84\xcf\xf8\xd7\x78\x4c\x5a\x37\x87\xc6\xd9\x19\xd2\x3f\x61\xd4\x2d\xce\x70\xb3\xce\x04\x9c\xc6\x25\x68\x84\x2b\xf6\xd6\x25\x89\xc8\xc1\x58\x3d\xbf\x3d\x72\xd1\x43\xe7\x93\x24\x3d\xfe\x1a\x4a\x25\xf6\x3f\xe5\xfe\x08\xcb\x84\xab\xd6\xcd\xa1\xbd\x4f\x33\x0e\x8d\xbb\x8d\x50\xc4\xdd\x66\xf1\x6b\x02\x40\xfa\x17\x7b\x3b\xcd\xe1\x0e\xbb\x1f\x66\xbc\xe2\x27\x30\x78\x23\xff\x1d\x0c\x06\xeb\x7a\xd8\xd5\xe7\x56\x6c\xdc\x2e\xde\xbf\xe0\x80\x6e\x06\xc1\x86\xce\x70\x4d\xd2\xfa\xd4\xf9\x73\x37\x20\x7c\xe8\xe5\xc2\x6b\xbc\x74\xc1\x30\xd9\xd1\x81\xc8\x3f\x67\x99\x7c\xf7\x7f\x77\x8f\x6b\x56\x92\x3e\xfe\x6f\x0e\xf0\x24\x40\x64\x90\x4b\x99\x57\xcf\xab\x3f\x9c\x46\xb3\xbd\x25\xf2\xd8\xbe\xb6\x26\x74\xae\xc7\xe4\x5b\x27\xca\xeb\x77\x58\x8b\x28\xaa\xb2\x22\x93\x1d\x1b\x15\x51\xa8\xb2\x60\xd3\xd1\x74\x34\xc9\x66\xa2\x21\x59\x46\x52\x09\x96\x2a\x27\x29\x59\x64\x94\x8a\xe4\x0b\xcb\xd7\x28\x94\x5e\xe6\x2c\x31\xa7\xa2\x9c\xd8\x81\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\x63\xc1\x42\x85\xce\xa2\x68\xc6\xdb\x59\xe9\x3f\xdd\xed\x36\x6d\xbd\x84\x80\x6e\xe6\x9b\xe5\x81\xd2\x90\xac\xc3\xed\xdb\xf1\xa3\xa7\x5d\xfc\x7b\x0d\x00\x00\xff\xff\xd6\x6a\x50\x18\x67\x02\x00\x00"); +var _bccg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xc1\x6e\x9c\x30\x10\x86\xef\x3c\xc5\x1c\xd3\x43\x0a\x06\x6c\x77\xa5\x28\x52\xbb\x5b\xa9\x1c\x92\x54\xdd\x64\x5b\xa9\xea\x81\xb5\x07\x64\xa9\x18\xcb\x98\xc3\xbe\x7d\x35\x63\x4a\x0e\xe8\x87\xcf\xcc\x27\x8f\xc7\xe5\xb1\x3b\x75\xde\x25\x28\xbf\xc7\xd9\x9c\x31\xc1\xe0\xbc\x8d\xb8\xcc\x6b\x34\x08\x57\x1c\x9d\x2f\x0a\x51\x83\x75\x26\xfd\xff\xe4\x30\x53\x1f\x8a\xa2\xfc\xfa\x8a\xfe\xfe\x8b\xbc\xff\x06\xeb\x82\x1b\x3b\x76\xa7\xf3\x6d\x49\x38\x75\x7e\x98\xa1\xc9\xb5\x76\x0d\x5b\x3d\x40\xf9\x03\x47\xb7\xa4\x78\x83\xbb\xcf\x76\xbe\xe2\x07\xb0\x38\x10\x7f\x89\x16\xa3\xf3\x23\xdc\x1d\x9f\xcf\x62\xc7\xe7\x35\x84\xbf\x38\xa1\x4f\x50\x31\x43\x6f\x39\x8b\xf2\xf8\xd4\x87\xe7\x7e\x42\xd8\x77\x72\xe1\x15\x5e\xb8\x60\x5c\xdc\xec\x41\x54\x1f\xab\x4a\xbd\xf3\xd7\x5b\x40\x10\x9b\xe1\xad\x3b\xbd\x0c\xc3\x82\x09\x0e\x75\xb6\x97\xbf\xde\xba\x13\xfc\x16\x20\x2a\xa8\x65\x73\x10\x7f\xb6\x5f\x7f\x3e\xcd\x76\x2f\x14\x4d\xee\xc7\x38\x1b\x7b\x3f\x62\xf1\xd0\x8b\xf6\xfa\x08\x5b\x88\x46\xb5\x8a\x98\xec\x99\x51\x88\x46\xb7\x0d\x33\x93\x99\xc9\x4c\x32\xb3\x99\x21\xb1\x8a\x88\x12\x4c\x54\x4d\xa4\x65\x22\x33\x51\x44\x3e\x31\x39\x64\x42\xf6\xb6\x66\x92\x3d\x8a\x3c\x79\x07\x3a\x7b\x34\x79\x24\x9b\x75\xf6\x68\xf2\x48\x36\xeb\xec\xd1\xe4\x91\x6c\xc6\x86\x09\x05\xf5\xa2\x8b\x07\xa3\xb0\x7d\x04\x0a\x49\xee\xea\xa0\x69\x10\x7b\xff\xf4\x4e\x17\x60\x1f\x89\x59\x63\x44\x9f\x78\xfc\x7c\xee\x74\x70\xce\xe3\x7e\xbd\xc2\x1c\xa8\x8a\x9f\x7f\x01\x00\x00\xff\xff\x8d\xf3\x1a\xd0\x8a\x02\x00\x00"); +var _ega =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4b\xab\x2e\x4b\x92\xa6\x37\x3f\xbf\x62\x0f\xa5\x41\x2b\xc3\x3d\xfc\x0a\x4d\x81\xa8\xa6\xa0\x04\x2d\x09\x95\x5a\x12\x08\xd1\xc4\xc5\x3d\x95\xa0\x3c\x79\x38\x99\x35\xa8\x7f\x2f\x96\x3d\xcf\x97\xec\x12\x62\xef\xd1\xc2\x57\x7c\x11\xee\xe6\x17\x33\x7b\xed\xe6\x7f\xf8\xc7\x7f\xfe\x4f\xff\xfc\xeb\x9f\xfe\xf6\xed\x0f\xff\xf3\xef\x7f\x79\xfe\x65\xfd\xed\xdb\xfe\xd3\xaf\xef\xef\xeb\xaf\x7f\xf9\xd7\xdf\x9f\xf5\xed\x5e\x7f\xfc\xd3\xaf\xbf\xfc\x92\xf2\xb7\xf7\x4f\xcf\xdf\x3e\xcd\xf8\xf3\xfc\xf9\xfa\xed\x97\x5f\xbe\xde\xff\x97\x7f\xfb\xeb\xdf\xd6\x9f\xff\xf9\xd7\xfd\x97\x6f\x27\xbf\x7b\xff\xf5\x37\x7f\xfb\xed\xdb\x1f\xfe\x97\xf5\xc7\x3f\xfd\xf5\x6f\xbf\xff\xdb\xb7\xff\xe6\xbf\x7f\xff\x72\xaf\xff\xf6\xdb\xbb\xf6\xd7\xff\xff\xa7\xdf\xdf\xf5\xfb\x9f\x7e\xfd\xa3\xff\xff\xaf\xff\xc3\xf5\xdb\xf5\x6b\xfa\xaf\xff\xe5\x1f\xff\x25\xff\xfd\x37\xff\xf2\xaf\xbf\xfd\xf6\xff\xac\x3f\xaf\x5f\xff\xf6\xad\xc7\xff\xd6\xaf\x6f\xfc\xfd\xe5\x0f\xff\xf8\x9f\xaf\xdf\xfe\xc7\xeb\xcf\xeb\xdb\x1f\xe2\xf5\xff\xc0\xeb\xff\xe1\xeb\xf5\xf8\x45\xfc\xe0\x7f\x5b\xbf\xff\xf5\x4f\x7f\xf9\xf5\xdb\xfc\xef\x8e\xe3\xbb\x7f\xff\xaf\xff\xf6\xdb\xfa\x96\xfd\xd0\xff\xf1\x5f\xfe\xf9\x3f\x7d\xfb\x3f\xd3\xb7\x74\x7c\xcb\xf5\x3c\xeb\xb7\x94\x53\xfe\xbf\x7c\xf8\xbf\xff\xe7\xbf\xbc\xeb\xdb\x41\x2b\x41\xd4\xf3\x97\x77\xfd\xf5\xb7\xeb\x59\xbf\x5f\xbf\xfe\x71\xfd\xf2\xed\xdb\x7f\x3c\x8e\xe3\xf8\x87\x6f\xff\xf1\x9f\xfe\xe9\x9f\xfe\xe9\x1f\xbe\x86\xf8\xff\xf9\xc5\x2f\xe9\x38\x78\xf5\xde\xcf\xff\x7d\xfd\xfe\xcb\xe7\x85\xbd\xf7\xfb\x0f\x5f\xad\xf3\xfd\x87\xaf\xaf\x5c\x35\x5a\xd5\x56\xa3\xb5\xa2\xd5\xf9\x65\xdd\x5f\xad\xf3\x38\xa3\xd5\xbe\xbe\x92\x8f\x34\x69\xa5\xf8\x65\x7d\x68\x65\x9e\x0d\x5a\x27\x5f\xf1\x59\xa1\xb5\x68\x8d\xf8\x65\x29\xb4\xe6\xd7\xb3\x34\x33\xad\x8b\xb1\x74\x5a\x37\x2d\x7f\xf9\xd0\x83\xdf\x74\xd4\x77\xb4\xba\xbd\xf3\x95\x5e\xe3\xd9\xcd\x57\x7a\xa3\x05\x7d\xbd\xc7\x2f\xb3\xbf\x64\x2c\xe9\xa2\x35\x69\x31\xce\x7e\xd1\x62\x26\x3a\x63\xb9\xed\x8f\xb1\x64\xbf\xf9\x46\xeb\x3c\x68\x31\x83\xf7\x8e\xd6\x60\x96\x2e\x5b\x95\xf9\xa4\xbf\xe1\xc8\x98\xb3\xd1\x79\x46\x0f\x63\x44\x2b\xfb\x6c\xf2\x0c\xda\x47\xcc\xd2\x79\xd2\xfb\x60\x64\x8f\xad\x87\xfe\xec\x21\x66\x29\x95\x44\x8b\x91\xbd\x7e\x33\xd6\x36\x55\x66\x62\x1e\x8c\x85\xf7\x26\xa3\x5e\x7c\x73\xe6\xf8\xe5\xc9\x57\xe6\xc9\x37\x7d\x8f\xb5\xdd\x7c\x73\x56\xbe\xc9\x7e\x99\xd0\xf7\x42\xfb\x0c\xfa\x8e\xcc\x7c\xce\xc1\x38\xd9\x4b\x73\xd2\x82\xbe\xe9\x2e\x60\x1d\xe6\x66\x64\xec\xd6\xcb\x71\xf2\xde\x0b\x0d\x8d\x99\x5f\xf1\x2c\x75\xc6\xb2\x12\x2d\xfa\x5b\x99\x19\xe4\x2b\x0b\x1a\x1a\x14\xad\x2f\x1a\x72\x72\x4f\x2c\x68\x70\xb7\x2e\x68\x60\x6d\x53\x3e\xbf\x3b\x39\xa9\x54\xd6\x3d\x7e\x99\x62\x35\xf7\x2e\xfc\x32\x56\xec\x3c\x96\xcf\xae\x68\xb1\x5b\x53\xac\xd8\x79\xdc\x89\xd6\x13\xad\x5d\x68\xbd\xfc\xf2\xa1\xb5\x68\xf9\x95\xcd\x7b\xf4\x10\x2b\x76\x1e\x77\xa6\x95\x68\xf1\x95\x58\xb1\xd3\x3d\x9f\x62\xc5\x4e\xf7\x59\x8a\x15\x3b\x5d\xe9\x14\x2b\x76\x1e\x37\xfd\xc5\x8a\x9d\xc7\x4d\x7f\xb1\x62\xe7\xf1\xd8\xdf\xa0\x65\x7f\xd0\xf7\x30\x13\x13\xfa\x9e\x4e\x0b\xfa\x9e\x58\xa3\x74\x31\x2f\xac\x51\xda\xce\x19\x5f\xd9\xcc\xee\xc5\xc8\x36\x67\x93\x7d\x9d\x36\x3b\xa4\x32\x67\x9b\x1d\x52\x63\x35\xf3\xf1\xfd\x79\xcf\xc7\xf9\x5d\x0f\xf9\x80\xbe\xe9\x33\xe8\xe3\x04\xe4\x03\xfa\xca\x49\x0b\xfa\x4a\xa5\x05\x7d\xa5\xd3\x82\xbe\x32\x69\x41\xdf\xf0\x3d\xe8\x1b\xbe\xc7\xfa\x0d\xdf\x63\xfd\xda\x19\xac\x59\x0e\xfc\xff\xc3\x92\xf3\xc1\xd2\x16\x87\xc9\xd2\xc2\x14\x73\x62\x69\x4b\xa3\xc5\xd2\x96\x41\x0b\xf2\x0a\x13\x91\x24\x6f\xd3\x82\xbc\x0a\xb1\x09\xf2\x38\x8c\x39\x41\x5e\x65\xd0\x09\xf2\x2a\x83\x4e\x90\x57\x21\x36\x41\x1e\x13\x9f\x13\xe4\x39\xf1\x09\xf2\xaa\xfd\x41\x43\xb3\x3f\x68\x68\xd0\x90\xa1\xa1\x41\x43\x86\x86\x06\x0d\x99\xb1\x74\x68\xcf\x8c\xa5\x33\xb2\xcc\x58\xba\xbf\x64\x2c\x9d\xb1\x9c\x7c\x65\xd0\xc3\xc9\x26\x1f\xf4\x70\xf2\x95\xc1\xc8\x4e\xbe\x32\xa1\xfd\x64\xd4\x63\xd1\x72\xe6\x1f\x5a\xce\x3c\xcf\x0a\xa3\xae\x6c\xa5\x42\x7f\xb0\xc8\x5c\xe8\xaf\xd2\x7b\xe1\x50\x55\x7a\x2f\xac\x4a\x65\xd4\x85\x55\xa9\x17\x2d\x57\x85\xfe\x8a\xab\x62\x7f\xcc\x84\x5b\xb7\x40\x43\xb3\x3f\x68\x68\xcc\x4b\x61\x26\x1a\x2b\x56\x58\x95\xc6\x8a\x55\x58\xeb\xc3\xc8\x2a\x07\x67\xfb\x8c\x83\xb3\x6c\xc1\x5a\x17\xab\x59\xef\xef\x18\x74\xae\x88\x8e\x45\x0f\xaa\x05\x8f\x2d\x45\x07\x2b\x8d\x5a\x70\x6c\x5a\x21\xfa\x8f\x63\x33\xd7\x8a\xfe\x0d\xed\x8a\xfe\xcb\x5f\xd6\xef\x44\x63\x6e\x8a\x3f\xc6\xd2\xa0\xe1\x65\x3e\x1b\x34\xbc\xcc\x59\x93\x06\xe8\x53\x49\x58\xec\x09\x95\x84\xe5\x37\xa1\x61\xfb\x95\xf7\xdf\x7d\x05\x1a\x16\xb3\xdb\xa0\x61\x31\xce\x8e\x58\x81\x5d\xe7\x8e\xf8\x83\x25\xe7\x2e\x7d\x7c\xa5\x43\xdf\x62\xc5\x7a\xf9\x7e\x76\x43\xf1\xc8\x15\x96\x9c\x55\x3c\x16\xb4\xf7\xfe\x9d\x12\x94\xfb\xf8\x4e\xac\xe4\x50\x27\xf6\x3e\xec\xe1\xa5\xe5\x2f\xd9\xad\x1b\x6a\x43\x9d\xd8\x3b\x41\xed\xc8\xfc\x92\x1e\x86\xb3\xcb\xa8\xff\x9d\x38\xca\x28\x17\x32\xda\x1c\xca\xc5\xde\x08\xae\x3c\xe6\x77\x62\x2c\x87\xa8\xda\xfb\xb4\x07\x4e\x07\x0a\x60\x0e\x91\x53\xd6\xcb\x8a\x29\x48\x9c\x97\x09\x63\x4f\xec\xd6\x10\x24\xf9\x48\xf4\x1e\x82\x64\xef\x83\x6f\x4e\x7b\xf7\xbd\x19\x2d\xcf\xc3\x54\xe9\x62\xfd\x42\x90\xec\xed\xc9\x99\xdf\x2b\x5d\x79\xa2\x74\x65\xfa\x53\xc8\x9c\xcc\xd2\x45\x7f\x27\xe3\xbc\xe8\xef\x8b\x9f\xfd\x98\x25\x5f\x0e\x85\xd7\xee\xc2\xa0\xf9\xe4\x5d\x69\xf9\xcc\xad\xcb\xc4\xdf\x6e\x5d\x8e\xca\xed\xf1\xb3\xc5\x37\x93\xef\x05\x79\xd9\xe3\x7e\x43\x1e\x1a\x6d\xbe\xd9\x04\x68\x9f\xf9\xde\xf1\x4b\x5b\x4f\x68\xde\xf9\x64\x69\x9f\xaf\x4d\x90\x9b\xa2\xe3\xc9\xb4\xf8\xe6\xc3\xf6\xbc\x6d\xc5\x32\x24\x97\xef\x61\x5a\x16\x53\xf6\x30\x2d\x87\xdf\x64\x2c\x87\xcf\xdc\x90\xbe\xe7\x86\x64\xe2\x9f\x45\x8b\x83\xf3\xec\x68\x65\xfa\x7b\x8f\xef\xf4\xf7\xfc\x32\x4e\xdf\x7b\x19\xa7\x3d\xbc\x67\x1c\x95\x87\xd9\x7d\x0b\x2d\x36\xc8\xcb\x31\x7a\xa0\xfd\x6d\xb4\xfc\x66\xa7\xe5\x37\x43\x7f\xaf\xb2\x97\x77\xd2\x72\x2c\x17\x87\x11\x1a\xde\xfb\xfb\xa3\xf9\x3e\xb4\x58\x95\xf7\xa5\xc5\x3a\xbc\x8b\xe3\xe0\xc8\x38\x00\x6a\x1a\xa1\x61\x66\xd1\x4a\x0e\x2d\x32\x27\x85\xcc\xe2\x38\x24\x5b\x41\xc3\x97\x52\x11\xad\x46\x8b\x6f\xae\x18\xcb\x97\xa4\x8b\xd6\x43\x0b\x16\xb2\xf6\x77\x9a\x70\xde\xf4\xf7\xd2\xdf\x4e\xb4\x58\xb1\x9d\xf9\x26\xd4\xee\x93\x16\xbd\xef\xc2\x37\x7d\xc6\x58\xd0\x5a\x73\xe8\x5c\xf9\x94\x22\x74\xae\x2f\x85\x2a\x5a\x83\x16\x73\x1d\x3a\x57\xce\x8a\xf7\xcd\xde\x55\x18\xee\x97\xfd\x09\x0d\x7b\xb1\x3f\x99\xcf\xed\xde\x8d\xd6\x79\xb8\x77\x2b\x2d\xe6\x2c\xdf\xb4\xca\x77\xc8\xe9\x0c\x5d\x2d\xb7\xb6\x69\x35\x5a\x7e\xa5\xd3\xba\x68\x5d\xdf\x61\xba\xf3\x60\x6d\x11\x01\x25\xd4\x89\xa3\xc0\x14\x4b\x08\xd1\xa3\xa0\x12\x95\x10\x40\x65\xcd\x87\xd6\x57\x0f\xb5\xc2\x6c\x4a\x08\xa0\x7a\x31\x83\x25\x04\xd0\x6c\xb0\xc1\x12\x02\xa8\x16\x34\xe1\x12\x02\xa8\xa5\x74\xd3\xfa\xea\xbd\x89\xd4\x4a\x08\xa0\x3a\xb7\xdf\xfc\x9a\xa5\x29\xda\x2c\x21\x80\x46\x41\xd1\x29\x21\x80\xc6\xc9\xe9\x2f\x21\x80\xfa\x85\xe2\x51\x42\x00\x35\x51\x5c\x09\x01\xd4\x4e\x04\x49\x09\x01\xd4\x16\x8c\xaf\x84\x00\x6a\x15\x81\x5e\x42\x00\x8d\x82\xd2\x55\x42\x00\x8d\x7c\xd9\xfa\xa2\x6f\xde\xdb\xf7\xbe\xe8\x6b\x83\xbd\x5b\x02\xf9\xd6\x9e\x3b\xad\xa0\xcf\x53\x55\x02\xf9\xb6\x2f\x99\x18\xad\xa0\xef\x9e\xd0\x1e\xa2\xaa\xce\xd7\x51\x07\x7d\xad\xfb\xec\x8b\xbe\x39\x10\xa2\x65\x04\x7d\x2f\xaa\x4d\x09\x31\xd6\xdf\x2f\x9c\xf1\x43\x96\x5c\x42\xc2\xcd\x1b\xcd\xad\x8c\x20\x3d\xbb\x60\xe3\x8b\xf4\xfe\x4c\x96\x28\xa4\xdf\x18\x80\xfe\x12\xd2\xaf\xde\x63\xd2\x8a\xa5\x5d\x40\xc8\x12\xd2\xaf\x9d\x87\xcf\xbe\x48\x6f\x6d\xfa\x5e\x90\x3e\xd0\xb5\x4b\x00\xb5\x29\xeb\x29\x01\xd4\x66\x1f\x4c\x75\x00\xb5\xd6\x8b\xbd\xaf\xd8\x58\xcb\x1e\xbe\x48\x2f\xb2\xc8\x82\xd4\xdc\x68\xec\x25\x80\x5a\xd9\xd3\xd6\x17\x7d\x55\x98\x51\x02\xa8\xd5\xb6\x99\xa4\x90\xaf\x75\x9e\xf4\x1e\xf2\xb5\x4e\x0e\x7f\x09\xf9\x5a\x2f\x37\x79\xc8\xd7\xfa\x48\x51\xc8\xd7\xa6\x56\x57\x42\xbe\xb6\x74\xd8\x62\xeb\x76\x16\x2c\xe4\x6b\x6b\xb0\xac\x12\xf2\xb5\x4d\x18\x74\x09\xf9\xda\x85\x89\x65\x7e\xd1\xd7\xab\xd4\x06\x24\xef\xd5\xaf\x04\x24\xef\x13\x0d\xa5\x5c\x2c\xed\x05\x7d\x57\x8e\x96\x47\xf3\xfa\xa2\x6f\x1c\x0f\xfd\x5d\x25\x36\x2b\x7a\x4e\xb9\x58\xbf\xe6\xb3\xd8\xba\x37\x6c\xa9\x84\x3c\x9f\x62\x97\x12\xf2\x7c\x1e\x9d\x91\x85\xd0\xae\xe7\x69\xef\x17\x07\xdc\x5f\xde\xd1\xba\x6c\xc5\xd6\xed\xce\xcb\xf5\xc6\x58\x6e\x7b\x58\xf1\xcd\x87\xf9\xbc\x82\xbe\xe1\xa8\x6f\xb4\x1e\x18\x6d\xb9\xbf\xe8\xab\x03\xdd\xb7\xdc\x71\x34\xd7\xc5\x57\xee\x33\xbe\x72\xb2\x7b\x42\x81\xe8\xd7\xe9\xb3\xa0\xef\xc3\x26\x6e\x8e\xe6\x60\xd4\xa1\x40\xcc\x27\xdb\xdf\x17\x7d\x55\xa3\x4d\xb9\xa1\xcf\xb9\x0e\x05\xa2\x16\x04\x57\x09\x05\xa2\x16\x19\x43\x28\x10\xb5\x2d\x7f\xc9\xd1\x74\x55\xee\x2f\xfa\xea\x46\x3b\x2b\xb7\x47\x93\x91\x85\x72\xd1\x5e\xf4\xe9\x12\xca\xc5\x50\xd7\x2e\xa1\x5c\x8c\x8a\xd1\xa6\x84\x72\x31\x9b\x87\xf8\x29\xd1\x72\x64\x4f\x8d\xd6\x65\xab\xc5\x59\xb1\xf7\x50\x3c\x6a\x39\x6c\x05\x7d\x27\x78\xa1\x3c\x93\x93\xca\x2e\x7f\xae\xd8\x75\x28\x02\x25\x94\x92\xbe\xa5\x36\x94\x92\xb1\x1f\x7b\x0f\xd6\xda\x16\xf3\x19\x4a\x49\x3d\x9b\xef\x05\x7d\x2f\x7a\x63\x79\x61\xad\xee\xe4\x50\x4a\xca\x4a\xcc\x59\x28\x25\xfd\xc3\x06\x43\x29\x19\x69\xfb\x5e\x81\xd1\xc2\x6d\x42\x29\xa9\x0d\x03\x67\x79\x11\x1d\x28\x4f\x25\x94\x92\x76\x23\xf0\x4a\x28\x25\xa3\x26\xfb\x9b\xb1\xb6\xee\xcf\x50\x4a\xea\x94\x4f\x84\x52\x52\x4f\x8c\x60\x25\x94\x92\xf6\xca\xbc\x43\x29\xe9\xe5\x75\x2c\xb1\x3f\x2b\xe8\xb6\x84\x52\x52\x55\x00\xcb\x62\x7f\x4e\x28\x0a\xb3\xd7\x3c\x0a\xfd\x85\xd9\x6b\x7e\x38\x4a\x28\x2c\xe3\xf4\x14\x87\xc2\x32\x27\xa8\xa3\x84\xc2\x52\x43\xc8\xfc\x98\x25\x2f\x48\x47\xf6\x96\x15\x4b\x7b\x23\xc1\xcb\x8a\xa5\xdd\xca\x8a\x05\x6b\xcd\x3e\x0b\xd6\xd3\x5c\xf6\xd0\x81\xda\x70\x02\x43\x07\x6a\x8f\x07\x67\x05\x6b\x7d\x3e\xbf\x5c\x31\x2d\xe8\x47\x25\xf4\xa3\x5e\x30\x4e\x94\xd0\x8f\x7a\x7b\x78\x2f\xf4\xa3\x7e\x01\xe5\x4b\xe8\x47\x73\xa0\x33\x97\xd0\x8f\x46\xf6\xd8\x86\x7e\x34\xc6\xe7\x2b\x71\x34\x2f\xb4\xf2\x12\xfa\xd1\xcc\x4a\xd4\xd0\x8f\xda\x2b\x9b\x08\xfd\xa8\xd7\xcb\xf7\x26\xbd\xb3\xd0\xa1\x1f\xcd\x89\x45\xac\xec\x1b\x09\xce\x2c\xed\x07\x76\x66\xef\xc1\x7a\xde\xe1\x7b\x2c\xed\xa7\x87\x1d\x4c\x18\x81\x57\x43\x77\xaa\x27\xcc\xb4\x1e\xc1\x7a\x12\x06\x8f\x1a\x36\xb0\xda\xd1\xe3\x6a\xe8\x55\x75\xb0\x0e\xf5\x40\x74\x60\x4e\xaa\xa1\x57\xd5\xfb\xb6\x15\xeb\xb7\xb6\x5f\x09\xfa\x0e\xd8\x52\x3d\x10\x8d\x6c\xc8\x1a\x36\xb0\x76\x6e\xdf\x8b\xf5\x7b\x00\xef\x35\x74\xae\xb6\x93\xcf\x9e\x38\xb6\x9f\x51\xc7\xd6\x4d\x9f\x67\x21\x3a\x52\xf5\x9b\xb1\x7e\xe9\x8d\x59\xaa\x61\xe8\xea\x27\x5a\x56\x0d\x43\x57\x5f\xcc\x52\x4d\xc1\x7a\xbe\x50\x74\xb4\x58\xbf\xd7\x67\xb1\x7e\x15\xa1\x5d\xc3\x08\x36\x35\xa2\xd4\xc4\xfa\xb1\xb6\x35\x8c\x60\xf3\x4d\xb6\x62\x7f\x0e\xcc\x26\x35\x8c\x60\x4d\xbd\xbf\x26\xe8\xc3\x68\x53\xc3\x08\xd6\x6b\x76\x9c\xc1\x5a\xd3\xf6\x3d\x58\x6b\x86\xda\x30\x82\xd5\xd9\xfc\x65\x1c\xcd\x3d\x18\x4b\x18\xc1\xea\xe6\x10\xd7\x30\x82\xb5\x6c\x7f\x39\x44\x47\xc5\x50\x52\xc3\xb2\xdc\xae\x6c\x2b\x58\xcf\x8d\x3e\xf6\x35\x88\xaf\x96\xeb\x97\x5b\xcc\x19\xa2\xa3\xe6\x1e\x2c\x12\xc1\x55\xc3\xb0\x36\x26\x46\xa9\x1a\x9a\xf0\x7c\xb3\xfd\xc5\xfe\x7c\x11\xb7\x35\x0c\x6b\x73\x3d\x7e\x33\xe8\x7b\x2e\xbf\xc2\xf9\x9b\x7e\x25\xb4\xba\xb3\xdb\x5f\xd0\x97\x38\xb7\xf5\x0c\xfa\x1e\x98\x4d\x0d\xf3\x5c\x4b\x70\x86\x1a\xe6\xb9\x91\x1e\x5b\x41\xdf\x70\x35\xcf\x10\x8d\x22\x8b\x7a\xa2\x95\xbb\x43\xce\x16\x0a\x92\xf3\x72\x76\xc4\x1f\xfb\xf3\x44\xb5\x71\xfd\xc2\xe4\xd7\x56\xb6\x75\x71\xfa\xd9\x4b\xe7\x8d\x00\x3a\x69\x3d\x88\x70\xc7\x19\xeb\x77\x26\xc7\xa2\xea\xc6\xbc\x9c\xa8\x6e\xa8\x1a\xb5\xa0\xba\x81\x6b\x6a\x41\x75\x73\x96\xc2\x1c\x58\x76\xa7\x87\x30\x07\xd6\x8c\xf8\xab\x61\x0e\xac\x27\x0a\x44\x2d\x88\x0e\xd4\xb3\x1a\xe6\xc0\x3a\x0f\x9f\x81\x3a\x5c\xbf\x30\x07\xd6\xdb\x19\x2c\x88\xc6\x9f\xb2\xe4\x1a\x20\xa7\x4f\x0f\x47\x41\xab\x43\xa2\xd6\xb0\x14\xb6\x0e\xe4\xa9\x05\xad\xf5\xd3\x41\xb0\xd6\xbb\xf8\x6c\x73\xc0\x21\xa8\xc6\xd1\x3c\x1a\x53\x56\xe3\x68\x9e\xc8\xde\x5a\x43\x6a\x4e\x34\xe1\x5a\xcf\x68\xe1\x34\xa8\x55\xad\x87\x6f\xd6\x2f\xd2\xbb\xd2\xbd\x56\xb4\x1e\xcc\x26\x35\xac\x96\xe3\x0b\x99\x47\x2b\xb6\xee\xe9\xc6\x0a\xab\xe5\x38\xbb\xef\x5d\xd1\x72\x3a\xc3\x6a\x39\xce\xd7\x71\x06\x6b\xed\x48\xcd\x1a\x56\xcb\x71\xdd\x8e\x33\x8e\x66\x73\x83\x84\xd5\x72\x3c\xd8\xc0\x6a\x38\x33\xc7\xc6\xc5\x55\x9b\x52\x13\x1a\xc2\xa2\x39\x7b\xb2\x15\xac\xa7\xc1\xae\x6b\x58\x34\xcb\xf6\xe0\x04\xa0\xac\xcf\xf2\x9b\x0d\x7c\x02\x7d\x01\x28\x7b\x76\x5b\x37\x44\x07\x7a\x40\x0d\x40\x39\x12\x7a\x40\x0d\x40\x39\x32\x7a\x4e\x0d\x40\x39\xda\xb6\xf7\xa0\xef\x01\x7a\x56\x00\x65\x7b\x7c\x2f\x44\xc7\x44\x7f\xaf\x01\x28\xe7\x94\xb5\x76\xb4\x02\x0c\x2c\xb5\xb3\x75\xd1\x49\x6a\x00\xca\x31\x17\xef\x75\x50\xc7\x4b\x7f\x01\x28\xeb\x28\xfe\x32\xe8\x1b\x8f\x2d\x45\x87\xdf\x8c\xad\xbb\x97\x2d\x8e\xa6\x0c\x2c\x00\x65\x3b\x26\xb3\x04\xa0\xd4\xae\x5d\x01\x94\x09\xd0\x58\x03\x50\xb6\xac\x18\x0b\x40\xd9\xf2\xe7\x59\xec\xcf\xaf\x73\x1e\xad\xa0\xef\x46\x2f\xae\x01\x28\x5b\x73\xdd\x03\x50\xb6\x81\xd9\xab\x06\x6a\x6c\xaf\xbb\x27\x50\x63\x3f\xba\xcf\x0a\x48\x86\xfd\x19\xa8\xb1\x37\x45\x6a\xa0\xc6\xfe\x02\xd0\xeb\x60\x7f\x5e\xb6\x62\x7f\x76\x45\x40\xa0\xc6\x59\x65\xc2\x81\x1a\x67\x53\xfc\x05\x6a\x1c\x0f\x08\xaf\x0e\x45\x87\xa3\x0e\xd6\x93\x3d\x2b\x03\xd1\x21\x23\x0a\xd4\x58\x8b\xe7\x2f\x50\x63\xbd\x3f\xad\x10\xfd\xaf\xbf\x0c\xd4\xd8\x12\xde\x94\x1a\xa8\xb1\xcd\xc1\x0c\x06\x6a\x6c\x2f\x0e\xe7\x1a\xa8\xb1\x0f\x4f\x6a\xa0\xc6\x51\xdc\x13\x81\x1a\xc7\xc0\x07\x54\x03\x35\x8e\xab\xfb\x95\xa0\xef\xbc\x7c\x16\xf4\x5d\xb7\xfd\xdd\xe8\xa9\xcc\x60\xa0\xc6\x39\x3d\x55\x81\x1a\x47\x7b\x99\xa5\x40\x8d\xb5\x5f\xd2\x10\xfc\xa5\x6f\x46\x16\xa8\x71\x34\x8c\x7c\x35\x50\xe3\xcc\x0a\xa7\x40\x8d\x35\xe3\x6e\xab\x17\xfb\x53\x1e\x12\xa8\xb1\x16\xf9\x44\xa0\xc6\xba\xe4\x05\x17\xe7\x0f\x3c\x54\x03\x35\xb6\x82\xab\xb8\x5e\x18\x3c\xe4\x4b\x81\x1a\xdb\x40\xe1\xac\x81\x1a\xdb\x8d\x73\xbf\x06\x6a\xec\xa7\x33\x11\xa8\xb1\x0f\xd0\x43\x0d\xd4\xd8\xaf\xf6\x33\x5b\x72\x0d\x40\x39\xe6\xf4\xb5\x60\x3d\x13\x3b\x5e\x0d\x40\x39\x5e\x59\x6b\x00\xca\xa1\xad\xb5\x06\xa0\x9c\x3a\x68\x2a\x80\xb2\x3a\x81\x37\x80\xcb\x43\x15\x80\x72\x76\x65\xe1\x8d\xc1\xc3\xe3\x70\x63\x10\x70\xf3\x04\xa0\x6c\xb3\xfb\x4d\xec\x55\xd3\xde\x83\xbc\x1b\x1d\xbd\x06\x68\x6c\x57\xf6\x59\x1c\xbf\xab\xb3\x60\x01\x1a\xdb\x50\x74\x04\x68\x9c\x0f\xf6\xf0\x1a\xa0\xb1\x6d\xdc\x82\xf5\x61\xf9\x9c\xc0\x00\x8d\xb5\x7a\x1c\x02\x34\xb6\xcf\x61\x0c\xd0\xd8\xf2\x62\x51\x02\x34\xb6\x57\x16\x19\xa0\xb1\x2d\x6c\x91\x35\x40\x63\x5b\x8a\xb8\x00\x8d\x43\x14\x50\x03\x34\x8e\x99\xfc\x66\x1c\xbf\xad\xee\xfb\x20\xf9\xd5\x45\x01\x8d\x8f\x0c\x45\xd0\xa8\x26\xfc\xa0\x79\xab\x29\x06\x68\x6c\xd7\xc9\xfa\x05\x68\x9c\x1d\xc7\x63\x0d\xd0\xd8\x86\xac\x2e\x40\x63\x4d\x80\xcd\xfa\x22\xfe\x30\x71\xd4\x17\x7b\x9c\xe2\x28\x40\xe3\x4c\x6a\x83\x01\x1a\xe7\x39\x6c\x85\xe4\x6f\x52\xf4\xaa\xb9\xb1\x3d\x5f\x8c\x52\xd9\xaf\x20\xfe\x30\xd3\xd4\x00\x8d\xa3\x10\x9b\x51\x01\x8d\x8f\x2c\x2b\x40\x63\xd5\x06\x5d\x03\x34\x8e\xac\xe8\x08\xd0\xd8\x8b\xe2\x6f\x01\x8a\x71\x4e\xd5\x85\x66\xe3\xf1\x5b\xd0\xa7\x66\x13\xa0\xb1\xde\xee\x64\x40\x63\xc6\xd0\x55\x41\x86\x99\xf8\x92\x0a\x32\xcc\xb8\x13\x2b\xc8\xf0\x55\x74\x04\x32\xac\xd5\xd3\x11\xc8\xb0\x7e\xe6\x33\x90\x61\x9d\x9f\x91\x61\x6f\x74\x96\x02\x19\xd6\x7b\xda\xc3\x62\x2c\x7e\x33\xd8\xe7\x72\xd7\x05\x32\xac\xab\xb3\xd2\x5b\x7b\x2a\x14\x6d\xd8\x27\x4e\xb4\x1a\xc8\xb0\xa5\xe6\xb3\x82\x0e\xcb\x4c\x04\x32\x6c\xa7\x3d\x04\x32\x6c\x55\x31\x06\x32\xec\xee\xc8\x0d\x7b\xa9\x7e\x05\xf6\xa2\x0e\xbb\x61\x2f\xa7\xdf\x8c\xf3\x77\x7f\x7e\x09\xf2\x95\x09\x07\x32\x6c\xdb\x95\x0e\x64\xd8\xb6\x28\x07\x64\xb8\x89\x56\x68\x07\xeb\x87\xc0\x6b\x81\x0c\x7b\xc5\x38\xd1\x02\x19\xf6\x86\x78\x6f\x81\x0c\x7b\x47\xf7\x6d\x07\xfb\x13\x26\xdc\x0e\xd4\x33\x34\xda\x16\xc8\xb0\x3f\xd9\x56\xc7\x74\x37\x69\x85\xfa\xb2\x89\xcd\x68\x81\x0c\xfb\xde\xf6\x1e\xe7\xef\xe0\x84\xb7\x40\x86\x23\x37\x7f\x19\xfb\xf3\x9c\x8b\x56\x88\x87\x79\x3b\xb2\xe0\x91\xd7\xf3\xd0\x52\x3d\x63\x9c\x81\x0c\xa7\xae\xfe\x16\xc8\x70\x6a\xc5\x6f\x81\x0c\x67\xc5\x68\xd3\x12\x3c\x72\xfe\x4c\x4b\x6e\x01\x1a\x67\xc5\x56\xd7\x00\x8d\x0d\xd8\xd6\x00\x8d\xfd\xf5\x93\x71\x34\x27\xc7\xaf\x05\x68\x1c\xd9\xc9\x0d\xd0\x58\xd6\x69\x0b\x7b\x5c\x76\xd0\x37\x6c\xd7\x67\xb1\x75\x5f\xc9\x0b\xd0\xd8\x85\xd6\x2d\x40\x63\x6f\xc5\x67\x01\x8a\x3b\xb2\xa9\x01\x1a\x1f\x7f\x19\xa0\xb1\xab\x65\xb5\x00\x8d\xe3\x75\x31\x33\xf6\x38\xc0\x43\x0b\xd0\x38\x47\xb2\x15\xf4\x0d\xa2\x15\x5a\x80\xc6\x39\x88\x4f\x68\x01\x1a\x8b\x7e\xe3\x16\xa0\xb1\xe8\x6f\x6e\x59\x7b\xa3\xcf\x2e\x0e\xaa\x23\x0b\xfa\x5a\xf3\x2b\xd8\x53\xd9\xe4\x2d\x03\x8a\x09\x9f\x69\x99\xa3\x79\x48\x43\x1c\xcd\x1b\x9d\xb9\x09\x1a\x27\x9b\x27\x40\x63\x5d\x58\xa1\x5a\x80\xc6\x2a\x23\x6a\x01\x1a\xeb\x76\x06\x03\x34\xb6\x73\xf9\x2c\x8e\x66\x87\x41\xb7\x93\xa3\x89\x0b\xb6\x05\x68\x6c\x15\x4f\x7f\x03\x34\x76\x8e\x7b\x03\x34\x0e\x74\xa0\x76\xc2\x5a\x3f\x23\x8b\xa3\x79\x55\x7f\x19\xf4\xad\xd3\x71\xc6\xd1\xbc\x61\x9f\x2d\x40\x63\x7b\x92\xfd\x81\x9c\x10\xb0\x2d\x40\x63\xaf\x88\xcd\x16\xa0\xb1\x4f\x3c\x0a\x2d\x40\x63\xbd\x61\x36\x2d\x40\x63\xbf\xb0\x2c\xb7\x00\x8d\xfd\xfd\xb4\x82\xb5\x6a\xfb\x6c\x01\x1a\xc7\x1c\x7e\x33\x34\xb7\xcb\x1d\x19\xa0\x71\x3c\x98\x07\x5a\x80\xc6\xa1\xee\xdb\x02\x19\x8e\xe5\x0c\x16\x44\x63\xf2\x9b\xa1\xb9\x0d\x67\x29\x90\xe1\xbc\xdc\x05\x81\x0c\xe7\xed\x8e\x0c\x64\x58\x16\x46\x8d\x16\xc8\xb0\x1a\x22\xda\x2a\x46\x29\x47\x1d\xc8\xb0\x4e\x8f\x66\x20\xc3\x7a\xbb\x7b\x02\x19\xb6\x8c\x95\xbb\x55\x44\xff\xe7\x9b\xb1\x7e\x65\xf9\x4b\xec\xa9\xae\x6d\x20\xc3\x2e\xb4\x6e\x81\x0c\x7b\xc5\xda\xd9\x2a\xc8\xd7\x5d\x57\xb1\x17\x7b\x72\x44\x86\x88\x9c\xf6\x41\x86\xf6\x10\xac\xe7\xee\x7e\x73\x63\xf6\xe2\x19\xc8\xf0\x04\xf3\x34\x90\x61\xb7\xf7\x40\x86\xb5\xb8\xaf\x03\x19\xd6\x82\xea\xd6\x02\x19\x56\x8d\x83\x2d\x90\x61\xfb\x9c\x3f\x90\xe1\xe5\xf9\x6b\xac\x9f\xbd\x83\x0c\x07\xc6\x9e\x16\xc8\xb0\x75\x30\x48\x0b\x64\x38\xd7\xc3\x5c\x37\xec\xc5\xdd\x6f\x22\x1a\xe5\x67\x81\x0c\x47\x4a\x8e\x1a\x57\x5c\xb5\x87\x40\x4e\x07\x8e\xf8\x26\x32\x74\xf7\x80\x0c\x97\x62\x25\x90\x61\x59\x78\xbc\x5a\x20\xc3\xb2\xe5\x28\x20\xc3\xcf\xbc\x80\x0c\x8b\x7c\x10\x64\x78\x13\xa8\xd8\x44\x86\xe9\x67\x41\x70\xed\x03\x1a\xed\x1c\x7b\x9c\x5c\x1e\xd0\xd8\xb1\xbd\x34\x40\xe3\x83\xc9\xbb\x01\x1a\x9f\x6e\x0b\x7b\x95\xf2\x2e\x40\x63\x37\x80\xac\x75\xec\xc5\x2e\x11\x5e\xc8\x0b\x2b\x54\xc3\x0b\x79\x39\xe8\x00\x8d\xfd\x46\x5b\x6a\x80\xc6\xd7\xe9\xd4\xd5\xb8\xfd\x65\xc5\x97\xe9\x57\x60\x3d\xe8\x39\x6d\x08\xfa\xd9\x04\x03\x57\xc7\x6d\x6b\x62\x2d\x83\xda\x00\x8d\xf5\x5d\xf6\x87\x97\x15\xbd\xaa\x0d\x40\x31\xae\x9c\x86\xab\xf1\x24\xee\xba\x05\x68\x6c\x2b\xfb\x6c\xb3\xd0\x8c\x33\x40\xe3\xb8\xd0\x06\x5b\x80\xc6\xf1\x12\xae\xd3\x02\x34\xce\x4c\xa4\x6e\x03\x34\x7e\x44\x40\x80\xc6\x3e\xb1\x56\xb7\x00\x8d\xf3\xfe\x7c\xb3\xe1\x44\xf3\xbd\x89\xfb\x12\x8a\x02\x18\x96\xed\xe1\x08\x60\x58\x0d\x12\x6b\x13\xe0\xeb\xd1\xc4\x9d\x78\x6d\x7b\x08\xf1\x90\x14\x32\x13\x9b\xa2\xcf\x2e\x6c\xde\x1e\x9c\x00\x86\xf5\x54\x27\x01\x18\x9e\xb2\x56\x80\xe1\xa9\x68\xbc\x3c\x7e\x1c\x62\x80\xe1\x40\x87\x6d\x01\x0c\xeb\xb3\xfc\x0a\xdb\x13\xc7\x6a\xbb\xf0\x59\x60\xf0\x68\x00\xc3\x43\x26\x05\x30\x34\x1c\xb0\x5d\xd8\xf4\x89\x48\x68\x01\x0c\xdb\xa9\x58\x09\x60\xd8\x2a\xc6\x9e\x76\x81\x9c\x8a\x23\x43\x3c\x28\xa6\x03\xfd\xf5\x8c\x29\xad\x05\xfa\xeb\x7a\x1b\x5a\xa0\xbf\xde\x31\x74\xb5\x1b\x77\xa9\x2b\x16\xe8\x6f\x24\xf4\xfe\x86\x3b\x51\xdd\xbe\xe1\x4e\xac\x98\xaf\x1a\xee\x44\x23\x90\x5a\xa0\xbf\x69\xf4\x40\x0b\x77\xe2\x14\x84\xb7\x1b\x9f\x45\xf5\x97\x61\x33\xbd\x5c\xf7\x1b\xe4\xa4\x8e\x87\x3b\x31\xb9\x97\x70\x27\x3e\xd9\xd6\xc6\xe0\x48\x0f\xb8\x13\xa7\xb3\x14\xc8\xb0\x3e\x44\x27\xb5\x40\x86\x4d\x77\x54\x7b\x30\x5c\xc8\xea\x02\x19\xf6\x13\x97\x7d\x7b\x64\x9f\xbe\x87\x66\xfa\xe9\x21\xd6\xcf\xd8\xe3\x86\x3b\x31\xe3\xb0\x6c\xb8\x13\xbb\xbb\xee\xe1\x8c\x79\x6e\x03\x19\xce\x13\x87\x5e\x0b\x64\xd8\xea\xe5\x7b\x88\xf7\xcc\x7e\x79\x30\x8c\xca\x7b\x1e\x78\x08\x9e\xa4\x86\x3b\x71\x3a\x96\x17\xf1\xae\x98\xc6\x9d\x78\xbb\xee\x2f\x3c\x44\x86\x19\xc8\x70\x64\xcc\x11\x0d\x64\x78\x2a\x98\x03\x19\x8e\xe1\xbe\x0e\x64\x38\xa6\x6a\x08\xee\xc4\xfb\xf4\xbd\x10\xef\xdb\x33\x16\xc8\x70\xa6\x4f\x0b\x77\xb0\x3b\x32\x90\xe1\xfc\x08\xd8\x40\x86\x65\xd5\xf7\x67\x2c\x19\xd0\x68\x10\x76\xc3\xd3\x78\x62\xa7\x6c\x8b\xa3\xa9\x5c\x5e\x6c\x5d\x75\xae\x00\x8d\xfd\xc4\x69\xd0\x16\xa0\x43\xf0\xb0\x20\x7d\xf9\x2c\x48\x5f\x58\xa8\x5a\x80\xc6\x39\x1f\x9f\xa1\x79\xe3\xd0\x6b\x01\x1a\xa7\x66\x93\x06\x68\x4c\x6a\x36\xcb\x20\x1c\xc7\x82\xcd\x94\x28\xc2\x06\x68\xac\x82\xa3\x05\xeb\xe9\xfe\x12\xfa\x14\x01\x80\xc6\x5b\xbd\x7f\x03\x3a\xdc\x3c\x01\x1a\x67\x23\xcc\xbb\x6d\x24\x23\xde\xfc\x06\x68\xbc\x00\x86\x2d\x40\xe3\x4c\x8a\x80\x8d\x4d\x58\x31\xb6\x61\x3d\xea\x7f\x80\xc6\x73\xda\x0a\xc9\x7f\x11\xc1\xd2\x00\x8d\x8f\xba\x13\xee\xc4\xae\xac\xdf\x68\x6e\xcd\x6f\x3e\x08\x2e\x28\xda\xb8\xdb\x86\xad\xc5\xa8\xed\x61\x73\x70\x62\xd4\x3d\x40\x63\x1b\x68\xad\x1d\xd0\xb8\xd0\x42\xfa\x81\x51\x83\x51\xf7\x00\x8d\xf3\xc4\xc6\xd7\x71\x27\xe6\xed\x57\x90\xfc\x18\x4a\xfa\x01\xeb\xb9\x6c\xa9\x99\x9e\xb4\x00\x8d\x1c\xb1\x1e\xa0\x71\xa8\xcb\xf4\x00\x8d\xd3\xe8\xd8\x7e\xa0\xd9\x20\x52\x3b\xa0\x71\x40\x43\xc7\x9d\x38\x8b\xbf\x5c\xd8\xdf\x1d\x4b\xac\x9f\x09\x0b\x3d\x40\x63\xd5\xfe\xde\x13\x9a\x29\x86\xa0\x1e\xa0\xb1\x56\x60\x77\x0f\xd0\x58\x3b\x0c\xac\x27\x58\x0f\xb1\xc0\x3d\x90\x61\xed\xd8\x76\x7b\xc2\x5d\xe3\xbc\x24\x44\x07\x26\x80\x8e\x3b\x71\x0f\x7b\x40\x74\xc0\xce\x7a\x32\xd2\x06\x8a\x12\x36\x6f\xa2\xb7\x7b\x20\xc3\x96\xd0\x53\x7b\x42\xbc\xdf\x7e\x33\x58\x4f\x39\x1d\xcb\xc6\xe4\xc0\x3a\x64\x6d\xde\x9b\x16\x36\x6f\x54\xa2\x8e\x3b\x71\x39\xf3\x81\x0c\x7b\x75\x3e\xb3\x3e\x19\xa8\x0d\x64\xd8\x1f\xf4\xe2\x8e\x3b\xf1\x2d\xf6\x00\xe8\x9f\x8c\x2c\x90\x61\x5f\xc5\x5f\x02\xfa\x9b\x2d\x7c\x32\xe0\x85\x9e\x31\x4a\x21\x44\x7b\x20\xc3\xd1\x5c\xe9\x8c\xe6\x8d\xa8\xea\xb8\x13\xaf\xe6\x38\x43\x7d\xd1\x6c\xd9\x03\x19\x8e\x45\x9a\x5a\x0f\x64\x38\x07\x27\xbc\x07\x32\x9c\x2f\x08\xa8\x9f\xb8\x83\x41\xda\x3d\x90\xe1\xd8\xd8\x92\xfb\x89\xfa\xb2\x7c\x86\x51\x0a\xeb\x71\x07\x19\xe6\xe4\x57\x42\xfd\x2c\x28\x09\x1d\x64\xb8\xf1\xb4\xf4\x13\x9b\xbe\x33\x01\x32\x1c\xee\x41\x90\xe1\x31\x6d\x29\x3a\x7c\x0f\x64\xd8\x1d\x35\x46\x1b\x94\x99\x5e\x54\x3f\x6d\x11\x29\xf5\x25\xe2\x7e\xc8\x92\x7b\x80\xc6\x31\x90\xa1\x3d\x40\xe3\xb8\x90\x54\x3d\x40\x63\xeb\x4e\x6e\xc1\x93\x8a\x26\xd5\xf1\x34\x1e\x48\x8e\x8e\xa7\xd1\xf0\xe9\x8e\xa7\xd1\xe4\x82\x5e\x64\xad\x6c\x82\x00\x8d\x35\x9f\x7e\x33\x8e\x66\x76\xc1\x0a\xac\x15\xc7\x40\x0f\xd0\x58\x3b\xbe\xcc\x1e\xa0\xb1\x8e\xc3\x6f\xc6\xd1\xd4\xba\xd3\x01\x8d\x0b\x63\x41\xaf\x7a\x8a\xd9\xba\x15\x7b\x1c\x7a\x4e\xaf\x04\xf9\xe1\xb9\xed\x80\x46\x8d\xf1\x1d\xd0\x38\x93\xdf\x04\x54\xe1\xde\xeb\x15\xcd\x1b\x58\xda\x3f\xa0\xd1\x5f\xc6\xd6\x3d\xf1\xd8\x77\x40\xe3\xc0\x26\xdc\x01\x8d\xc3\x43\x15\xa0\xb1\xbf\xdd\x6f\xbe\xd8\xce\xfc\x4a\x6c\x5d\x73\xd6\x3a\xee\xc4\x29\x9b\x00\x34\xde\xe8\xe8\x3d\x40\xe3\x78\x80\xd6\x3d\x40\xe3\x58\xaf\x2d\x82\xc4\x9c\xcf\x00\x8d\xf3\x94\x69\x34\x8c\x52\x6e\x9e\xa6\xd1\xc6\x67\x21\x1a\x3f\xac\x95\xf8\xd4\x05\xca\xe9\xc4\xa7\xa6\xe2\xb3\x58\xbf\x13\xb1\xd2\x05\x8d\xb7\xcf\x30\x6a\x74\x47\x1d\xeb\xb7\xdd\x13\x0d\x64\x21\x63\x0f\xd0\xd8\x16\x66\x9a\x4e\x7c\xea\x29\xab\xeb\xb8\x83\xd1\xab\x7a\x27\xc8\xcf\xde\x3b\x47\x13\xed\xba\x07\x68\x1c\x9a\x38\x3a\xf1\xa9\x97\xbb\x20\x40\xe3\x14\xa4\xf6\x00\x8d\x65\x15\xbf\xc9\xfe\xc4\xd0\xd5\x89\x4f\x3d\x97\xbd\x63\x74\x73\xb7\x76\x8c\x52\x9f\x6f\x12\x7f\x8b\x46\xd4\x89\x4f\xbd\x9b\xef\x2d\xb4\x41\x9f\x61\x2f\x56\x70\x0d\x22\x35\x00\xe1\x1d\x77\xe2\xe7\x04\xe0\x4e\xac\xe0\xb6\x4e\x10\x6a\x47\x7d\xe9\x83\x20\x31\x22\x2e\x3a\xc8\x50\xf7\x65\xc7\x9d\xf8\xa0\xff\x75\xdc\x89\x03\x33\x4d\xc7\x9d\x68\x62\x4c\x0f\x64\x38\x3e\xc2\x70\xc0\x5a\xb7\x5f\x41\xb5\x71\x5e\x02\x19\x8e\x4b\x76\x36\x88\x24\x92\xd5\x05\x32\x9c\x9f\x99\x0f\x64\x38\x1b\x50\xbe\x07\x32\x9c\x43\x01\x14\xc8\x70\x6e\xf7\xd2\x44\xb5\xc1\xaf\xd4\x03\x19\x96\x45\x8c\x7b\x9f\xb8\xbb\xf1\xf3\x74\x82\x50\x4f\x94\x99\x4e\x10\x6a\x21\x78\xb5\x13\x84\x5a\xb0\x72\xf7\x70\x27\xd6\x0b\x1c\xd5\x03\x35\xd6\x8d\x15\xbf\x07\x6a\xac\xc6\x51\x74\xdc\x89\x87\xbb\x95\x20\xd4\x21\x7f\x99\xf8\xa3\x86\xdf\x5c\xc4\x7e\x31\x9f\x04\xa1\x0e\xf4\xf0\x8e\x3b\xf1\xc2\xce\xdc\x03\x35\x8e\x4b\xc5\x23\x50\xe3\xb8\x51\x1c\x7b\xa0\xc6\x99\xdc\xd7\x81\x1a\xcb\xaa\xbe\x87\xe8\x78\xe6\xcf\x58\xf2\x25\x28\xb6\x03\xec\xa9\x6e\xc8\x0b\x7b\xaa\x1b\x84\xf8\x54\x93\xa6\x7b\x00\xca\x6a\x7e\x4b\x0f\x40\x59\x93\x13\x48\x7c\x6a\x52\xd6\x5f\x78\x8a\x9d\x96\x0b\x57\xce\xed\x2f\x37\xfa\x18\x83\xbe\xd1\xca\x71\xa6\x74\xe2\x53\x4f\x8c\x21\xfd\xc6\x5e\xa5\x46\x74\x6b\xaf\xf2\x3d\x00\x33\x80\xab\xdf\x68\x3d\xea\x39\xb8\x13\x3b\xb6\xa5\x8e\x3b\x51\x07\x62\x27\x3e\xf5\x56\xa6\x11\x9f\x7a\x57\x9f\x05\x7d\xb7\x52\x9a\xf8\xd4\x17\xf4\xd0\x89\x4f\x7d\xd1\x92\x3b\x80\xf2\xdd\xb6\x16\x6c\x89\x8d\x75\x73\x34\x95\xcb\x0f\xa2\x43\xfa\x00\x94\x8b\x38\xef\x8e\xab\x71\x63\xcb\xea\x00\x4a\xf3\xf5\x3a\xae\xc6\xa4\x66\xa3\xab\x71\xfa\x1e\x9e\xe2\xd7\xf7\xd0\xca\xdd\x74\xb8\x1a\x8d\xd4\xe8\x0f\x41\x8c\x87\xdf\x24\x88\x51\x56\xf7\x10\x69\x43\x80\x5c\x07\x50\x76\x80\x6f\x07\x50\x0e\x0c\x17\x1d\x40\x39\x3e\xbd\xe3\x6a\xc4\x06\xdd\x71\x35\x3e\xc0\xbd\x1e\x80\xb2\xbd\x38\xc3\x3a\xae\xc6\x17\x27\x6f\x7f\x0d\xfd\xf7\x97\xb0\x1e\xdc\x2e\x3d\x00\x65\xaf\xe0\x93\x1e\x80\xb2\xeb\x33\xef\x01\x28\xfb\x70\x67\xbd\xa0\x8e\xd3\xaf\x84\x68\x7c\x30\x35\xf5\x00\x94\xfd\x55\x84\x07\xa0\xec\xaf\xb3\xfb\x22\x1a\x3d\x2a\xb8\x1a\x5f\x62\x79\xfa\x8b\x68\x4c\xbe\x17\xa2\xd1\xac\xb1\x1e\xa8\x71\x98\x02\xdf\x17\xf1\xc5\xbe\xb7\x08\x12\x73\x2f\x11\x9f\x9a\xdc\x3d\xa2\x46\x67\x02\xd4\x78\xba\xb6\x0b\xc0\xec\xda\x2e\x58\x6b\xf3\x9b\x00\x66\xc5\x58\xa0\xc6\xf1\xb8\x93\x03\x35\x8e\x67\xfb\xde\x4d\xd4\xb7\x3d\x04\x60\x4e\x8a\xe2\x40\x8d\xd3\xb4\x87\x1e\xa8\xb1\x0f\xe7\x2c\x50\xe3\xcc\x7e\x05\xd4\xa8\x21\xa1\x8b\x1a\x89\xf6\xef\x06\xa1\x3a\x9f\x81\x1a\xe7\x54\xa7\x04\x35\x5e\xee\xc1\x40\x8d\x53\xe7\x77\x07\x35\x6a\x46\xec\x1b\x57\xaa\xa2\x6a\x1b\x3f\xcd\xda\x6e\x52\x53\x54\x00\x37\xae\xd4\xd7\xfe\x30\x2a\x7e\x7e\x19\xfb\x73\xbb\xd2\x04\xa1\x3e\x24\xd4\xf4\x40\x8d\x43\x07\x7e\x0f\xd4\x38\x17\xdc\x66\x10\x84\x9a\x40\x01\x83\x20\xd4\x7c\xda\x82\xbf\xa0\xf7\x8f\xc3\xfc\x85\x97\x16\xa8\x03\xb5\x75\x04\x6a\x9c\xa2\xf7\x11\xa8\x71\xbe\xcd\x67\xa1\xda\xa8\x20\x0d\x50\xe3\x09\x6e\x1b\x04\xa1\xee\xe3\x67\x2c\x79\xe0\x85\x34\xb5\x61\x1c\xc4\x6f\xc2\xf8\x46\x00\xca\xba\x3f\x03\x8b\xa3\x79\xbc\x0e\x3a\xa4\xe6\x85\x7d\x73\x10\x9f\x6a\x50\xda\x48\x04\x89\xe1\x34\x18\x01\x28\x9b\xda\xc4\x48\x2e\xed\x49\x0b\xa9\xc9\x56\x1a\x01\x28\x6b\x43\x82\x0f\x01\xe5\xe7\xbd\x58\xda\x01\x64\x1d\x00\x4a\x6d\x6e\x23\x19\xdf\xc8\x58\x00\x94\x09\x09\x3e\x00\x94\x0d\x5d\x7b\x00\x28\xcd\xad\x1b\x00\xca\x81\xa6\x3f\x00\x94\x83\x23\x36\x00\x94\x32\xda\x81\xab\xb1\xb2\x41\x46\x26\x2b\x07\xb0\x39\x02\x50\x8e\xdc\x18\x59\x26\xf5\x06\x78\x39\xb2\x5a\x01\xf3\x92\xd1\x0a\xd0\xdc\x46\x46\x2b\x20\xdf\x7f\x64\x43\xe3\x19\x59\x00\xca\xfa\xa2\x5d\x8f\x4c\x14\xc0\xf2\xd9\xa4\x65\x7f\xd8\xfb\xb7\x3d\x60\xef\x9f\x7e\x33\x58\x4f\x21\xd6\x72\x04\xa0\xec\xe3\x70\x64\x00\xca\xcf\x58\x62\xeb\x6a\x86\x1a\x00\xca\x41\xca\xc7\xc0\xd5\xd8\xfd\xa5\xae\x46\x98\xfe\x20\x3e\xf5\xc4\x91\x3b\x02\x50\x56\x6b\x4e\x8c\x00\x94\xd5\x9c\xbc\x01\xa0\x4c\x84\x54\x0d\x00\x65\x3f\xfc\x66\xd0\x57\x9c\x89\x00\x94\x75\xc0\x30\xc7\x49\xe8\xff\x6d\x0f\x21\x1a\xef\xdb\xf7\xd8\x9f\xcd\xf7\x08\x82\x2b\xf6\xb0\x10\x4e\xac\x26\x80\x72\x00\xe5\x47\x00\xca\x76\x3b\x2f\x01\x28\xdb\x82\x15\x8c\x40\x8d\x5d\x37\xdd\x28\x68\x3d\xee\x25\x5c\x8d\xda\x06\x47\x21\x48\x0c\xe6\x3d\x02\x35\xf6\x01\x26\x18\x81\x1a\xbb\xd6\xdc\x51\x10\x8d\xe8\x63\x23\x50\x63\x7f\x4f\xbf\x82\xd6\x4a\x74\xcb\xc0\xd5\x38\xb0\x79\x8f\x42\xea\x06\x6e\xb3\x81\xab\xb1\xb9\x97\x40\x8d\xd9\xd3\x01\x6a\xec\xb8\xde\x47\xa0\xc6\xf6\x59\x31\x82\x50\x37\x2c\x6b\x04\x6a\x1c\xc6\x2c\x0f\x5c\x8d\x09\xed\x7a\x04\x6a\xac\xdd\xbd\x5b\x41\x55\xd9\xf7\x38\x7f\xee\x79\x5c\x8d\x73\xd8\x42\x2b\xff\x7c\x05\xd6\x7a\xfb\x15\x6c\xc9\x28\x4f\x23\x50\x63\xed\x88\x80\x01\x6a\x1c\xa4\x1d\x8d\x40\x8d\xf3\xdd\x7e\x13\x83\x55\xf5\x97\xa8\x6e\x32\xcc\x40\x8d\xb5\x80\x21\x47\xa0\xc6\xa6\x06\x3d\x1a\xb6\x72\x67\xa2\x81\x3a\xc0\xac\xa3\x81\xfa\xc9\xe5\x1b\x81\x1a\xfb\x35\x7c\x16\xeb\x77\x83\x48\x06\x41\xa8\x2f\x11\x25\x03\xd4\x78\xa2\x40\x0c\x5c\x8d\xc3\x91\xe1\x6a\xbc\xc9\x35\x18\x81\x1a\xbb\x56\xe7\x01\x6a\xd4\x03\x35\x40\x8d\x61\x70\xfc\x31\x4b\x6e\x2c\x2d\x80\x64\x34\x6d\xad\x74\x1e\x80\xb2\x65\x4c\x15\x83\x84\xc7\x82\x2b\x6e\x90\xf0\x68\x70\xd2\x20\xe1\x51\x5b\xdd\x20\xe1\xf1\x26\x1e\x6f\x00\x28\x2b\x90\x7c\x08\x28\x01\x7f\x23\x00\x65\x6f\x28\xfa\x23\x00\xe5\xbc\x5f\xbf\x49\x6a\x03\xfa\xc3\x08\x40\x39\x4f\x59\x56\x00\xca\x79\x23\x6d\x47\x00\xca\xde\x6e\x47\x1d\x47\xb3\xa1\x85\x8c\x4e\xe8\xb8\xdb\x1a\x40\x79\x60\xdb\x1d\x00\x4a\x23\xa6\xc7\xc0\x0d\x82\x36\x31\x00\x94\xc7\xf2\x97\x41\x5f\x99\xfe\x92\x84\x4e\xcc\x03\x63\xe8\x06\xa1\x77\x00\x65\x72\x5e\x70\x35\xea\x8f\x1d\x83\xf8\xe2\xec\x7b\x71\x34\x6f\xf4\xcd\x11\x80\xb2\xaf\x61\x0f\x00\x4a\x37\x2b\x80\xf2\x1e\xbe\x87\x56\xa0\xf8\x03\x50\x5a\x50\x67\x00\x28\x0d\xb3\x1b\x01\x28\x9b\xee\xb6\x11\x80\xb2\x35\xe7\x8c\xf8\xd4\xdb\x6d\x2d\xa0\x54\xe4\x00\x28\x17\x79\x8c\x23\x00\x65\xd9\x1e\x46\x5c\x8d\x1b\x37\xc8\x00\x50\xe6\xcf\x33\xb5\x1e\xc6\x02\xa0\x3c\xb1\x48\x0f\x00\x65\x05\xf3\x0c\xdc\x90\x4d\x1a\x70\x43\x8e\x65\x8b\x28\x95\xc7\x16\xf1\xb7\xb2\x6b\xdc\x90\x13\xd7\xd8\xc0\x0d\x79\xcb\x7a\x2e\xdd\x58\xec\x41\xdc\x90\x4b\x01\x84\x1b\x72\x29\x3a\x70\x43\x6e\xbc\x22\x23\x00\x65\xb3\x88\xd4\x20\x3e\xf5\x3c\x7c\x46\x94\x8a\x87\xf1\x12\x55\x31\x9f\xb8\x21\xeb\xe5\x33\x12\x72\x6f\xbf\x72\xe3\x70\x66\x26\x2e\xe3\xfb\x7d\x86\x2d\xb2\x39\x32\xdc\x58\xdd\x91\xe1\x86\x54\x81\xc0\x0d\x79\x62\xd4\x18\xb7\x51\x2a\xcc\x04\x6e\xc8\x29\xf3\x0e\xd4\xd8\x1f\x67\x9e\xac\xc6\x57\x56\x70\xe3\x0a\x97\x76\xdc\x90\x07\xba\xf6\x08\xd4\x38\x92\xb3\x14\xa8\x71\x24\xcc\x7a\x23\x50\xe3\x98\x8a\xe9\x40\x8d\xe3\x52\x50\x06\x6a\x1c\x97\xc2\xf0\xc6\xe0\xd1\xfc\x25\xb6\x64\x0c\x09\xe3\x46\xf4\xab\x40\xdc\x04\x90\x29\xe2\x02\x35\x8e\x47\x71\xf4\xa0\x95\x3f\xb6\x50\xdd\x64\xde\xa0\xc6\x5b\x15\xe5\x61\x7f\xba\x77\x1f\xf7\xa7\xbf\x64\x7f\x2a\xfa\x71\x43\x26\x77\xc8\xe3\xfa\xd9\x3b\xa8\x58\x11\x00\x6a\x4c\x98\x4d\x06\xa8\xf1\xc4\xf5\x3e\x40\x8d\xe6\xf2\x8d\x8f\x1b\xd2\x67\x18\xe4\xdc\xad\x8f\xf9\x19\xb4\x70\x43\x66\x85\x05\x6e\xc8\xc8\x0b\xfd\x31\x4b\xc6\x43\x59\x3d\x7e\x78\x28\x3f\x52\x9a\xd8\xd5\xe9\x81\xc3\x43\x79\x60\xfb\x1c\x78\x28\x8f\x93\xe5\xc3\x43\x99\x96\xbf\x8c\xa5\x2d\xd3\x6f\xe2\xa1\x9c\x0e\xcc\xac\x2a\x26\xe9\x25\xeb\xc8\x03\xfe\xa2\xf5\xb8\x21\x03\x50\x8e\x9b\x10\x99\x41\xc2\xe3\x67\x63\x05\xa0\xec\xda\x0d\xc7\xd2\x4d\xc0\x2f\x03\x50\xd6\xdb\x45\x31\xe1\xd1\xe3\xbe\x60\x3d\xea\xe8\xc4\xae\x9e\xd8\xff\x06\xb1\xab\x5d\xbd\x98\xd8\xd5\x79\xfa\xcc\xac\x1c\xb6\x20\xb1\xab\x37\x00\x6f\x90\xd5\x78\x0c\x9f\x05\x7d\x1f\x8a\xc8\x6a\xb4\x52\xc6\x08\x40\xd9\xab\x9a\xfe\x82\xb5\x3a\x67\xc6\xae\x4e\xdf\x8b\xad\x5b\xd5\x22\xc9\x6a\xbc\x97\xad\xa0\xcf\x62\x49\x83\xd8\xd5\x8e\xc9\x61\x98\xd5\xe8\xe1\x0f\x40\x59\x1f\x60\xf0\x20\xab\xb1\xaa\x69\x04\xa0\xec\x8b\x94\x96\xb1\x49\x6d\x50\x97\x01\x50\x26\x75\x6d\x00\xe5\x73\xd8\x43\xd0\x77\x8a\x48\x70\x43\x1a\xf9\x32\x00\x94\x06\x07\x0e\xdd\x90\xa2\x87\x00\x94\x7d\xba\x3d\x71\x43\xbe\x38\x1e\xe7\x81\x41\x00\x50\x3c\x03\x50\x0e\x93\x67\xe7\x81\xad\x1c\xa1\x36\x0f\x6d\xe5\x8b\x56\xc1\xad\xe4\x57\xc8\xfa\xbb\xfc\x25\xbe\x0e\x1c\x3b\xf3\x40\x74\x6c\x9f\x05\x7d\xcf\x69\x8b\x00\x2b\x1c\x81\xf3\x20\xe1\x18\xd3\xdd\x04\x35\x5a\xab\x62\x1e\x18\x04\x8a\xcf\x5e\x34\xe8\x41\x6b\xa1\x49\xdd\xb4\x88\xad\xc6\xd0\x35\x71\x43\xde\x88\xfe\x89\x1b\x72\xb3\xb3\x66\x42\xf4\x93\x46\x32\x45\x8d\x80\xe9\x09\x6a\x3c\x51\x51\x26\xa8\xf1\xc6\x09\x3a\x13\x06\xab\xe2\x2f\x41\x1d\x9f\x6f\x0e\xc4\x2d\xf4\x05\x6a\xec\x79\xd9\xc3\x85\x6b\xf3\xa0\x15\xf4\x5d\xf8\x41\x66\xa0\xc6\x91\x9a\xdf\xc4\x96\x4c\x8c\xf4\x4c\x88\xfe\x2a\x0d\x88\x7e\xd8\xf5\x24\x40\x35\x91\xb2\x33\x33\x06\x47\x04\xde\xcc\x18\x04\xd0\xd1\x67\x26\x00\x10\x91\x3a\xc9\x6a\x3c\xa5\x88\xac\xc6\x0b\x0d\x73\xea\x86\x44\x9d\x98\x81\x1a\xa7\xa8\x6a\x82\x1a\xdb\xeb\x37\x11\xfd\x38\xfb\x26\x01\xaa\xa5\xf9\x4d\x50\xd5\x74\x2c\x64\x35\x3a\x4b\x04\xa8\xbe\xaf\xef\xa1\x95\x2f\x5b\xc1\x5a\x13\x2c\x79\x9e\xaa\xa6\x3c\x23\xab\xf1\xc5\xb0\x36\x4f\x45\x23\x23\x3b\x49\x7d\x83\x41\x4f\xb2\x1a\xdf\xe2\x2f\x2b\xce\xd3\x9f\xb1\xe4\x19\x80\xb2\xef\xd7\xd7\x64\xad\x1c\x87\xd3\xd8\x63\x26\xf0\x24\xed\x61\xda\xf9\x85\x0d\x8c\x45\x09\x40\x39\x66\xf7\x2b\x68\x75\x9f\x5f\xc6\xd2\x2e\xfc\x8e\xf3\xc4\xd6\x93\xfd\x26\xb1\x81\x4e\x52\x00\xca\xa9\xad\x67\x06\xa0\x9c\x5a\xa4\x67\x81\xb5\x12\xa9\x31\x05\x94\xd3\x67\x48\x4d\xa7\x05\x37\xe4\x26\x15\x73\xe2\x86\x4c\x68\x1a\x13\x37\xe4\x59\xec\x0f\x0f\x3a\x31\x0f\x33\x00\x65\x93\x2d\xcd\x82\x41\x00\x51\x35\x8b\x01\x80\xbe\xf7\x00\x75\x1d\x27\xb1\xd5\xcd\xaf\x04\xeb\x31\x6f\x7f\x06\xa0\x9c\x09\x5f\xf4\x0c\x40\x39\xcd\x2c\x9a\xd5\xad\x4b\x0f\xc6\xae\xa2\xd9\x4c\x63\x57\xd1\xfb\x27\x6e\xc8\x17\x64\x31\xc9\x6a\x9c\xd5\x6f\xc2\x5a\x3d\x54\xb8\x21\x1f\xc0\xed\xac\x24\x1c\x77\x9f\xc5\xd1\x4c\xd3\x6f\xc6\xd6\x4d\x32\x29\xb2\x1a\x4d\x20\x98\xc4\xae\x1a\x60\x3f\x03\x50\x96\x2d\x53\x24\xab\x51\xff\xfd\x24\x76\xb5\x11\x42\x39\x03\x50\xf6\xee\x31\x6a\x04\x38\xa2\x17\x4f\xdc\x90\x39\xf9\x0c\x5b\xa4\x47\x93\xd8\x55\x93\x75\x27\x59\x8d\x5b\xd6\xda\x0c\x70\xf4\x3d\x00\x73\xf3\x3d\x59\x0f\x73\x06\xa0\x7c\xb7\xfd\x21\x1a\x65\x1a\x94\xc9\xd9\xc0\xfc\xd9\x40\x55\x1e\xb1\x86\x2d\x39\xf9\x0c\x37\x1d\xce\xb0\x69\xec\x2a\x56\xd9\xd9\xd9\x9f\xd8\xb5\x67\x27\x42\x00\x71\x3b\x03\x35\x56\xd1\xd1\x24\xab\xd1\x22\x44\x13\xd4\x98\xb1\x45\xce\x40\x8d\xad\xe1\xbf\x9f\x81\x1a\x9b\x39\x6b\xb3\x93\x76\x44\xd4\xc1\xc4\x0d\xb9\x6e\xbf\x89\xc1\xc3\x93\x1a\xa8\xb1\x6f\x4f\x5c\xd7\x17\x00\x23\x0a\xd4\x38\xd4\xdf\x67\xa0\xc6\x51\xb7\xa3\x46\x6b\xfd\xfc\x12\x83\x00\x08\x76\x8a\x1a\x1d\x0b\xa8\x71\x62\xde\x99\x03\xd4\x81\x75\x7c\x0e\x62\xe3\x3d\xe1\xa0\x46\x2b\xa4\xcc\x40\x8d\xd3\x90\xb8\x39\x40\xc5\xce\x3c\xb5\x70\x2c\x8e\x3b\x09\x50\x35\x15\x66\x12\xa0\x9a\x09\xf2\x9b\x04\xa8\x9e\xd9\x1e\x70\x23\x17\xdf\xc3\x20\xe0\x9e\x20\xab\xb1\x80\x48\x26\x59\x8d\x55\xbe\x44\x56\x63\x95\xbf\x90\xd5\xd8\x54\x04\xc8\x6a\x9c\x32\x6f\x6a\xe1\x98\x47\x3c\xa9\x85\x63\x1e\xf1\xa4\x16\xce\x8d\x41\x6e\xe2\x86\x7c\x5c\x77\xdc\x90\xe2\x9a\x69\x2d\x9c\x64\x7f\x88\x7e\x57\x13\xd4\xb8\x46\xf9\x19\x4b\x06\x50\x2e\x25\x2a\x80\x72\x29\x43\x01\x94\xbb\xdb\xc2\x56\xd7\xed\x3c\x14\xf6\x8c\x25\x66\x92\xf0\xa8\x2d\x79\x06\xa0\x6c\xe6\x7b\xcd\x00\x94\xcd\x04\xe7\x79\x61\xeb\x39\x6c\x9d\xb4\xfc\x65\xe1\x80\xb3\x28\x00\xca\x46\x58\xd1\x04\x50\x76\xd9\x0b\x80\x72\x00\xbf\x26\x09\x8f\x97\x4b\x0b\xa0\xbc\xd4\x6c\x2e\x6b\x39\xd8\x03\x09\x9d\xca\xe5\x4b\xd6\xca\x16\x04\x50\xae\xea\x33\x6a\x39\xb8\x28\x94\xc9\x49\x32\x5a\x00\xa5\x21\x4e\x13\x40\x69\xe9\xa4\x69\x5c\xab\xf2\x15\x40\x39\x64\x9f\x00\xca\xf9\x79\x06\x6b\x25\x2e\x65\x06\xa0\xec\x53\x36\x18\x80\xb2\x5f\xae\x43\x00\xca\x7e\xbb\xd0\x37\x6e\xac\xcb\xfe\x70\x63\xa9\x5b\x00\x28\x0f\x19\x11\x80\xf2\xa3\x65\x01\x28\xb5\xc0\x4d\x00\x65\x2d\xbe\xb7\x61\xc9\x8c\x13\x40\x39\x64\x6e\x94\xc9\xf9\xcc\x2e\x65\x72\x3e\x9b\xf5\x21\x42\x07\xa7\xd6\x7c\x88\x80\xf0\x10\x07\xa0\x1c\xea\xe8\x33\x00\xe5\x78\xd4\x49\x02\x50\xce\x74\xf9\x5e\x18\xac\xcc\xa3\x9a\x0f\x09\xb9\xae\x74\x00\xca\x59\x70\xcc\x4d\xe2\x5a\x9b\xa2\xf8\xa1\x4c\xd5\xf4\x19\x71\x9f\x64\xe8\xcd\x47\x83\x95\xcf\x48\xeb\x00\x13\xcc\x97\xb4\x00\x00\xec\x7c\x09\x9e\x53\x93\x7a\xcd\xe8\x64\xe6\xc9\x78\xec\x6a\x60\x2f\x09\xe3\x44\xc7\xce\xd7\x84\x71\xc6\x42\x99\x9c\x1b\xeb\xe3\x7c\x29\xc3\x45\x54\xc5\x7c\xf1\x75\x10\xc5\x3b\x03\x35\xb6\xa2\x40\x00\x35\x76\x67\x29\x50\x63\xeb\x58\x34\xa7\x65\x72\x8a\xfd\x85\xe8\xc8\x32\xe8\x97\x32\x55\xce\xb5\xa8\x51\xb5\x00\xd4\x58\x08\x19\x9b\xb8\x21\x6f\x99\x37\xa8\x31\x7d\x9e\x11\xfc\x28\xe3\x03\x35\x36\x19\xd8\x07\x35\xd2\x3b\xc1\xab\xc3\x51\x2f\x82\xcb\x54\xdd\x16\x59\xb7\x87\xad\xa0\xef\x76\x0f\x06\x6a\xec\x1f\x25\x2f\x50\x63\x5f\xee\x97\x40\x8d\xe3\x90\x33\x80\x1a\xf3\x67\x9c\x64\x15\x2b\xe2\x70\x43\xea\xdd\x98\x81\x1a\x47\x57\x04\x6c\xb2\x8a\xf1\x01\xcd\x40\x8d\xd5\x22\x44\x73\x93\xd6\xe1\x3a\x6c\x7c\x39\x8a\xdb\x8d\xea\x26\xa3\xdd\xfa\x72\x18\x0b\x6e\xc8\xcb\x79\x01\x35\xde\x0a\x8b\x6d\xad\x0a\x4e\x0e\x6e\xc8\x4d\x16\xec\xc4\x0d\x99\x88\x60\x99\xa0\x46\x6d\xd0\x93\x8c\xc7\x08\xd5\xfd\x31\x4b\x26\x19\xb2\xa9\x99\x92\x0c\x39\x50\xdf\x2f\xe2\x5a\x27\x3a\xd7\x75\xa0\xb0\x63\xb5\xbc\x88\x6b\x35\xe8\xe7\x22\x19\xb2\x62\xc6\xb8\xf0\x50\x56\xfc\x9c\x17\xc9\x90\xe6\x89\x5d\x24\x43\xce\x6a\x0f\xb8\x41\x98\xf8\x0b\x0f\xe5\xfb\xf9\x8a\xb5\x1c\x6c\x51\xcb\xe1\xf2\x2b\x37\x7a\xc0\x45\x2b\x96\x76\x7e\x5a\xd8\xb2\x4e\x5b\xb1\xb4\x86\x23\x5d\x00\x4a\xd3\x2c\x2e\x93\x21\x81\x20\x17\xc9\x90\x86\xe2\x5f\xb8\x21\x3b\x4b\x74\x09\x28\xb1\x8e\x5f\x49\xad\x1c\xda\x93\xc9\xba\x8c\x53\x37\x24\x7a\xd5\x85\x1b\x72\x20\xcf\x2f\xe2\x5a\x9f\xc3\xde\xc9\xb8\x4a\x7e\xf3\x62\x2b\xd9\x7b\xd0\xe7\xd2\x5e\x00\xca\xeb\xf0\x97\x2f\x51\x99\xf6\x40\x5c\x72\xb3\xf7\xd8\xba\xc6\x4a\x5c\xb8\x21\x6f\x74\xd8\x0b\x37\xe4\x45\x0d\xb0\x2b\xeb\x66\x65\x35\xc9\x78\x4c\xd8\x37\xaf\xac\x9b\x95\x6f\xea\x86\xbc\xfc\x65\x1c\xcd\x03\x4d\xe3\xca\x06\x27\xb1\xd2\x00\xca\x3e\xfc\x0a\x5a\xc1\xa7\x77\x0c\x1e\x9f\xaf\x80\x3a\x60\x6e\x57\xb6\xcc\x11\xf4\xe1\x86\x94\x49\x5d\x01\x28\xfb\x83\x20\xb9\x02\x50\x76\x7d\xed\x97\x6e\xc8\x6e\xcb\x5a\x23\xf4\x4e\x5c\xab\x11\x10\xd7\x09\xeb\x49\xfe\x92\xe0\x40\xd8\xfc\x45\x5c\x6b\x43\xff\xbb\x40\x8d\xc5\xfd\x79\x12\x1c\xf8\xf8\x15\xdc\xac\xee\x09\xdc\x90\xc6\x90\x5c\x64\x3c\xd6\xcf\x58\x60\xad\x97\x63\x79\x30\x01\xd8\x1f\x6e\x3a\xd4\x97\x4b\x37\x64\xb3\x3f\x6a\x39\x20\x28\x2f\xdc\x90\x22\xa7\x2b\x50\xe3\x38\x5d\x77\x50\xa3\x31\xe7\x57\x31\x63\x95\xde\x0b\x65\xb8\x60\x9f\x57\xa0\xc6\x66\x34\xf5\x55\xc8\x08\x24\x14\xf2\x02\x35\xde\xe8\xcc\x57\xa0\xc6\xb2\x88\xa2\xba\x70\x43\x1e\x94\x39\xba\xa8\x85\x53\x11\xda\x97\xb5\x70\x60\x36\x17\xc1\xab\xc9\x59\x22\x78\x35\x9f\x7e\x05\x5f\x15\x21\x9b\x17\x6e\xc8\x49\x5e\xc0\x45\xf0\xea\x26\xd4\xec\x22\x78\xf5\x20\x54\xf0\x22\x78\x35\xbb\x62\x04\xaf\x56\xe2\x44\x2e\x50\x63\x05\x77\x5f\x04\xaf\x36\xf9\x0b\xc1\xab\xed\xf3\x0c\xd5\x0d\x7f\xc6\x55\x49\x26\x97\xbe\x8a\xe8\xf0\xe4\x54\x50\x15\xc6\xb3\x8b\xe0\x55\xc5\xc3\x85\x1b\xb2\x7e\x7a\x88\xfd\xf9\x59\xbf\xca\xfe\x44\xbb\xbe\x08\x5e\xb5\x7a\xf9\x85\x1b\x72\xa0\x66\x5d\x04\xaf\x8e\xfd\x33\xc3\xc5\x05\xa0\x9c\xe8\xbe\x17\x65\x72\xae\xcb\x8f\xa0\xf5\x00\xec\xaf\x46\xdc\x27\x76\x92\xab\x79\x34\x59\x22\xe2\x5a\xad\xa9\x7b\xe1\xa1\xec\xd5\x16\xd9\x4a\x64\x55\x5d\x00\x4a\x03\xd6\x2e\x3c\x94\x26\xac\x5e\x94\xc9\x49\x87\x04\xb1\x75\x6f\xfb\x23\xb8\x2c\xdb\x5f\x6c\x5d\x8b\x82\x5f\xba\x21\x65\x6e\xb8\x21\x2b\xf5\x13\x2e\xdc\x90\x0d\x58\x7a\xe9\x86\x04\x70\x5d\x01\x28\xbb\xf5\xa5\xae\x8e\x07\x16\xf7\xd0\xd5\x89\xfb\xfc\xb4\x42\x74\x2c\x2c\xa1\x57\xc7\x0d\x22\x8b\xec\x06\x27\x39\x96\x0b\xeb\xaa\xfd\x61\x6b\x45\x2e\x5f\x00\xca\x85\x23\xf0\xea\x44\x40\x00\x1a\xaf\x6e\x9d\x07\x36\x64\x17\x75\xf0\x8c\x32\x39\xa7\x14\x11\xd7\x5a\x64\x3d\xb8\x21\x33\x9a\xe2\x35\x8c\x2b\x67\xd4\x64\x3c\x5e\x18\x4a\x2e\xe2\x5a\x6f\x8f\x6d\x00\xca\x71\x39\xea\x00\x94\xb3\x61\xd7\xbe\x70\x43\xbe\xe0\x93\x8b\xb8\xd6\x7c\xf8\xcb\xa0\xef\xc3\x34\x06\xc5\x39\x3f\xe3\x34\x5b\xd0\xb1\x50\xa1\xab\xd8\xbb\xc5\x1d\xed\x1d\x37\x32\x76\xca\x0b\x40\xf9\xe0\x64\xba\x00\x94\x8f\x07\x07\x40\x69\xfe\xe3\x45\xc6\x63\xce\x3e\xd3\x20\xc0\x9c\x05\xa0\x6c\x56\x53\xb8\x02\x50\xb6\x91\xec\x81\xa3\xa9\x08\xa0\xb8\xea\x83\x67\xe0\xa2\xb8\xea\x8b\x69\xeb\xa2\xb8\xaa\x56\xee\x8b\xb8\x56\x4b\x0a\x5c\xc4\xb5\x1a\x05\x70\x91\x0d\xf9\x11\x9b\xc4\xb5\x7a\x53\xc9\x05\x6a\xb4\x32\xf6\x75\x99\x32\xc0\xba\x53\x5c\x55\x1f\xfd\x65\x71\x55\xec\xa2\x57\xa0\xc6\xbe\x8a\xad\x58\xbf\x2d\x2b\xa7\xb8\x6a\x92\x99\x52\x5c\x35\x27\x7b\xc0\x17\xa0\x68\xbc\x28\x5e\x49\x26\xe8\x15\xa8\x71\x5c\x32\xfd\x8b\xe0\xb9\xc7\x16\xfb\x93\x18\x84\x2b\x50\xe3\x34\xeb\xf6\xba\xa8\x7b\x8c\x0e\x7b\x51\x5c\x35\x7f\x46\x4d\xf0\x1c\xc6\x97\xeb\x26\x78\xce\x7d\x16\xa8\x71\x9a\x46\x7c\x11\xbc\x6a\x1c\xcc\x45\xf0\x6a\x55\x3c\x04\x6a\x6c\xea\xb0\x17\xa8\x31\xc9\xca\x09\x5e\xb5\x3c\xd2\x05\x6a\x9c\xa4\x71\x5d\xa0\xc6\x55\x6d\xa1\xba\xdd\xf6\x1e\xa2\xe3\x43\x1f\xc1\xab\x96\x68\xb8\x08\x5e\x35\x3d\xea\x22\x78\xd5\x52\x62\xd7\x6d\x84\x0e\xb3\x6b\x36\xa4\x42\x8d\x6c\x48\x43\xe2\x2e\xea\xe4\x4c\xa2\xbd\xae\x40\x8d\xfd\x73\x52\x1f\x54\x53\xc5\x3b\xd9\x90\x46\xda\x5c\x0f\xa8\xf8\xf8\x59\xbd\xe4\xeb\x51\x6b\x65\x22\x1e\x48\x7f\xfd\xe4\xc0\x32\xc9\xa2\x3c\xd8\xb2\x50\xe6\x2f\xea\xae\x0a\xaa\x2e\x4a\xe8\x68\x8e\xb8\xa8\xbb\x7a\x79\x00\xac\xbb\x0a\x94\xb8\x1e\xea\xe6\xaa\x03\x51\x77\xd5\x62\xf0\xd7\x4b\x9d\x00\xe2\x7d\x2f\x00\x65\x56\xdf\x04\x50\x9a\xfe\x78\xbd\x26\xf2\x72\x88\x01\x94\x07\x06\x88\x0b\x40\xf9\xd1\xa0\x01\x94\x1f\xbd\x1f\x40\x39\xb1\x33\x5f\xc4\xb5\x5a\x84\xfc\x7a\xad\x2b\xcb\x38\xa9\xbb\xfa\xc8\x5a\xad\xbb\xaa\x00\x02\x50\x1e\xea\xef\x2f\xc1\x81\x32\xf6\x97\xa5\xf5\xd8\xbe\xd4\x09\x70\xb3\x2e\x58\xab\xb2\x7e\x61\xd0\x51\xe4\x2c\x22\x58\xb0\x3a\x5f\x0b\xad\x00\x70\x74\x2d\x0c\x3a\xdb\x56\xc5\xda\xe9\x37\x83\xf5\xcc\xcf\x7b\xd8\x5a\xdd\x3c\x00\x4a\x6b\xf8\x5e\x0b\x5b\xf2\xb2\x45\xdd\x63\x45\x23\x80\xf2\xef\xfd\x69\x6b\x65\xb3\x9a\x0d\xa9\x60\x26\xae\xf5\x71\x87\x50\x5c\xf5\x55\xf3\xc6\x0d\xf9\x62\x56\xb8\x00\x94\x9f\x95\x0e\x40\x39\x4e\x59\x39\x6e\xc8\x13\x23\xd1\x45\x71\xd5\xd2\x7c\xcf\x12\x48\xb6\xc8\x16\xc4\x76\x7d\xe1\x86\x1c\x6a\x8a\x01\x28\xc7\xab\x66\x1a\x80\x72\x1e\x87\xfd\x91\x2d\x28\x5e\xd8\x24\xf2\xba\x93\x37\x06\x8f\x64\x0f\xd4\xb1\xc0\x39\x75\x6d\xb2\x3d\x3f\x14\x85\xe8\x30\x0a\xfb\x06\x35\x26\x8e\xd8\x8d\x1b\x32\xc1\xae\x6f\xdc\x90\x15\x73\xd9\x1d\xa8\x71\xbc\x60\x90\x3b\x50\xe3\x3c\xd8\xe5\xf7\x01\x60\x7e\x7c\x0f\x37\x24\x5a\xdd\xad\x1b\xb2\xd8\x1f\x11\x2c\xdd\x5f\xe2\x46\xc6\x8e\x7e\x53\x5c\xd5\xf9\xbc\x0f\x0d\x1e\x3e\xc3\x20\x87\x7e\x7b\x83\x1a\xdf\xdb\xaf\x70\xfe\x92\xbf\xa4\x78\x25\xae\xb8\x1b\x37\xe4\x03\x42\xb8\x13\x29\x49\xf8\x10\x6e\xdc\x90\x5e\xb8\x70\x27\x12\x95\xa7\xcf\x70\x43\xa2\x82\xdd\x89\xba\xdc\x18\x2e\x6e\x50\xa3\x59\x8d\x37\x6e\xc8\x53\xda\x93\x11\x10\xcc\x52\xe2\xfc\xe1\x5c\xbc\x45\x8d\x87\x3d\x04\x7d\x05\xd3\xc8\x4d\xf0\xaa\x99\x07\x77\x42\x74\x70\xe2\xee\x84\xc1\xea\xb5\x3f\xb4\x72\x94\xb5\x1b\x37\xe4\xcc\xb6\xe2\xfc\x3d\xec\x9e\x9b\x3a\x39\x97\xdf\xc4\x0d\x59\x51\xc1\x6e\x50\xa3\xe1\x8e\x37\xa8\x71\x5e\xb6\x1a\xa7\xdf\xaf\x60\xd0\xc1\x27\x73\x67\xea\xc8\x3c\x7e\x13\xd5\xe6\x6b\x87\xfc\x90\x25\xdf\x00\xca\x59\xed\x00\x5b\x5d\xb1\x03\x8a\xe7\x01\x48\xee\xcc\xd6\x25\xe2\xef\xd6\x43\xf9\xe9\x9c\xad\x8b\x7e\x7b\x53\x42\xe7\x46\xc6\xdc\x27\x47\x13\x08\x72\x13\xd7\xfa\x60\xf9\xb9\x4f\x83\x93\x58\x68\xe2\x5a\x37\xb2\xf0\xa6\x84\xce\x67\x23\x53\x42\x47\xd7\xdf\x6d\xa2\x24\x4c\xff\x26\x51\xb2\x6d\xbf\x42\xa2\xb2\x93\x04\xa0\x5c\xaf\x63\xc1\xd6\xfa\xd8\x42\x2b\xef\xbe\x87\x2d\xeb\xf5\x9b\x61\xf0\x18\xc3\xfe\x08\xde\xc1\x02\x77\xe3\x86\x3c\xf0\xff\xde\xb8\x21\x0f\x1c\x6c\xb7\x6e\x48\x40\xf8\x0d\xa0\x5c\x80\x9c\x3b\x00\xe5\xbc\x3f\x2d\xb2\x21\x61\xad\x37\x6e\x48\xb3\xaa\x6e\x00\xe5\x04\xc4\xdd\x05\x5b\xb2\x47\x2c\x00\xe5\x34\xc2\xf7\x0e\x40\x39\x4d\x35\xb8\x03\x50\xce\x17\xe6\x7d\xeb\x86\x7c\xfd\x25\x25\xf3\x3f\xdf\x44\x6b\x75\xfd\x00\x94\x15\x01\x7b\x03\x28\x6f\xd7\x01\x40\x99\x3d\x38\x02\x4a\xe2\x67\x6e\xb3\x21\x65\x4b\x00\x4a\x93\x19\x6e\x00\xe5\xa6\x5a\xc4\x8d\x1b\xb2\x64\x9f\x99\x88\xcd\x58\x02\x50\x4e\x8b\xb5\xdc\xd5\x44\x57\x76\x08\xc5\x55\x2f\xf7\x92\xc5\x55\x3f\xbf\x44\x2b\x5f\x7e\x85\xe2\x8e\xdb\x67\xd0\x87\xde\x7f\x57\x0b\x05\x30\x2f\xcd\x2b\x0f\xd8\xad\x16\x57\xc5\xc4\x71\x83\x1a\x37\xba\xf6\x4d\x09\x9d\x49\xbc\xc0\x0d\x6a\xf4\xa6\xc1\x1b\x37\xe4\x8b\xf8\xbb\x89\x6b\xbd\xec\x8f\x12\x3a\x1b\xf7\xec\x8d\x1b\x72\xbc\x3e\x03\x55\x11\x76\x7a\x07\x6a\xec\xd6\x3d\xb9\x03\x35\x4e\xd3\xf1\xef\x40\x8d\xcd\xc4\xe8\xbb\x59\x22\xc8\x91\xc1\x7a\x4e\x29\x82\x3e\xd7\xa8\xe3\xc6\xf2\x34\x76\xe2\xca\x9b\x2d\xd6\x0f\xa1\x76\x83\x1a\x4f\x57\xec\x73\x5b\x87\xbf\xa4\xae\x33\x28\xe0\xc6\x0d\x29\xde\xbb\x75\x43\x92\x00\x72\x07\x6a\xec\x07\x1a\xf4\x8d\x1b\xb2\x2f\x5b\xd4\x3d\x76\x17\x74\xe2\x76\x51\x97\x6e\x82\x57\xdf\xdb\xaf\x70\xe5\x81\xd4\xe2\x86\xf4\xde\xc8\xbb\x53\x47\x06\xd4\x71\x0f\xb3\xe9\xa0\x21\x50\xe3\x3c\x1d\x0b\x6e\x48\xab\xcb\xdd\xb8\x21\x07\x7e\x9e\x7b\xc0\x5f\x64\xb4\x04\xaf\x56\x47\x4d\x9d\x9c\xa6\x20\x09\xd4\xd8\x2e\x22\xd0\x6f\xae\xe4\xd0\xbd\x77\x13\xbc\x5a\x5d\x3f\x50\xe3\xf5\xe9\x81\x1a\x33\x99\xbd\x14\xa8\xb1\xf7\xe5\x7b\x64\x23\x9f\x3f\xb3\x25\xdf\xc3\xdb\x10\x24\x08\x83\x00\x2e\xa7\x9b\xb8\x56\x53\x70\x6f\xe2\x5a\x1f\xa0\xe7\x3d\x09\x9e\xc3\xf8\x7f\x4f\xaa\x77\x29\x8d\x28\xa1\xb3\x81\x4a\xf7\x04\x70\x7d\x7e\x19\x5a\x4f\xc7\x8e\x77\x4f\xca\xb3\x14\xfb\xa3\xc6\x85\xf2\x7c\x12\xb7\x0b\xbc\xbc\xa7\xb6\x2c\x58\xcf\xc4\xe0\x21\xeb\x99\x14\xee\x54\xc2\x51\x77\xb5\x28\x48\xa6\x5a\x81\xa3\xde\xd8\xae\x79\x4f\x40\x89\xb9\xe5\x26\x51\xd2\xab\x44\x6f\xe2\x5a\x2f\xb7\x20\x80\xb2\x2b\xaa\x4c\x94\xc4\x3c\x70\x5f\x26\x9a\xfb\x15\xdc\x3c\xd3\x1e\xac\x0b\xec\x7b\xb1\xb4\xd6\x36\xbe\x71\x43\x36\x1c\x65\xf7\x65\xca\x87\xfd\x61\x6b\xc5\x8b\x7c\x5f\xd4\x10\x50\x7f\xe0\xb6\x8e\x01\xa0\xbc\x29\xae\x7a\x9d\x3e\x23\xc2\xc3\x63\x04\xa0\x34\x7d\xfc\x06\x50\x7a\x41\xcd\xcd\x6d\x1d\x1f\xa6\x88\x1b\xd2\x84\xf8\x1b\x37\xe4\xa9\x36\x61\x79\x1d\x19\x1f\x71\xad\xa5\xda\xea\x18\x6d\x38\x70\x37\xb6\x48\xf4\xd4\xfb\x36\x11\xdb\x6f\x12\xe1\xe1\xa1\x02\x50\x5a\x33\xf8\x06\x50\x7a\x1d\xcf\x0d\xa0\xd4\xa2\x79\x9b\x0d\x79\x4a\x83\xd9\x90\xf4\x40\x36\xa4\x85\xf7\xef\xc7\xe0\x32\xbe\x62\x36\xa4\x73\x46\xe1\xd5\x7d\xfb\x4b\xb2\x21\x5d\x31\xb2\x21\xcf\xe4\x37\x39\x9a\x32\x29\xb2\x21\x3b\xe8\xe8\x26\x1b\xf2\xb3\xaf\x41\x8d\x5e\x02\x75\x83\x1a\x2b\x1e\x8c\x9b\xdb\x3a\xfa\xa7\xa5\x1b\xcb\xde\xa9\x4e\x26\x33\x0d\xd4\x38\x8c\x2b\xbf\x03\x35\x8e\xae\x4e\xf9\xc2\x7a\x64\xec\x2f\xbe\x00\x8c\x75\xf7\x4b\xf5\x43\xc5\x26\xb7\x75\x18\x6d\x72\x07\x6a\x9c\x59\x1d\x36\x50\xe3\xac\xee\x17\x0a\xaf\x9a\x30\x74\x53\x78\xf5\x91\x69\x50\x78\xf5\xc3\xae\x71\x43\x9e\xae\x34\xd9\x90\xe6\x77\xde\xba\x21\xd5\x1b\x41\x8d\x0f\x4e\xf3\x1b\x37\xe4\x09\x6e\xbb\xc9\x86\x7c\xd4\x8b\x5f\x52\x92\x30\x6a\xdc\x81\x1a\x67\x13\x05\x2c\xb3\x3d\xf9\x66\xa0\xc6\x3a\x40\x5c\x37\xa8\x71\x1e\xbe\x57\x40\x86\x3e\xab\xc4\x07\xd1\x1f\x6e\x48\x33\x80\xef\x40\x8d\xbd\xaa\x04\x51\x43\xc7\x2b\x8e\xef\x65\x4a\x92\x2d\xaa\x1f\x3a\x2f\x04\xaf\x9e\xee\x17\xae\xe4\xf0\xfe\x98\x7b\x11\x81\x54\x1c\x35\x85\x49\x55\x97\x16\xbe\x00\xf2\x18\xef\x6d\xca\x1c\xef\x81\x1a\xeb\xd7\x19\xfb\x31\x4b\xde\xd8\xb2\xec\x9c\x44\x49\x6b\x80\xdd\xd4\x64\x9d\x00\xed\x9b\x9a\xac\xc6\x5f\xdc\x78\x28\xbb\xfa\x03\x1e\xca\x41\xa0\xcd\xad\x87\xd2\x61\x6e\x0d\x1e\xb6\xd0\x0a\x3c\xee\x9b\xca\x49\xc2\x13\x00\xa5\x0e\xbd\x1b\x40\xf9\xf7\x91\xa1\x15\x28\xd3\x36\x80\x0b\xd6\xf3\x90\x28\x29\x74\x79\x0e\xe3\x76\x2b\x2d\x6d\x59\x27\xad\xd8\xba\xcf\xf4\x3d\x4a\x5a\xa3\x93\x3c\x94\xd7\x19\x48\xb8\xe7\x90\xb5\x5e\xb4\xf0\xa0\x73\x34\x1f\x00\xa5\x97\x1d\x3d\x07\x6e\xac\xcb\x67\x44\xb0\x30\x13\x0f\xe5\x75\xbc\x36\xf2\x01\x50\x1e\xc3\x71\x12\xc1\x72\xfb\x15\x0c\x1e\xa7\xfd\x61\xf0\x80\x7d\x3e\x89\xf2\x41\x30\xbe\x87\x6c\x48\x2b\x7b\x3d\x89\x8b\x74\x08\xcc\x7a\x00\x94\xde\x62\xf2\x50\x5e\xe7\xc2\x9d\xf8\x24\x52\x06\x96\xef\x61\x8b\x2c\xbe\x87\xd6\xca\x86\x7c\x28\xbc\x7a\xa1\x2d\x3d\x89\xf2\x41\x68\xd0\x4f\xc2\x20\x80\x8d\xf6\x49\x24\xf2\x82\x1e\x9e\xc4\xfa\x21\xaa\x1e\x00\x65\x7a\x7d\x16\xa2\xd1\x62\xa7\x0f\xe5\x75\x64\x05\x0f\xe5\x75\x0a\x3a\xde\x03\xa0\x2c\x18\xa5\x1e\x6f\xeb\x70\x35\xb9\xad\x63\xc1\x18\x1e\xca\xeb\xb4\x61\x0b\x5b\x39\xca\xc5\xa3\x1b\x12\xe7\xdb\x43\x5c\xeb\x49\x18\xe1\x03\xa0\xd4\x59\xfb\xe0\x86\x2c\xdb\xfe\xf0\xa0\xdf\xbe\x07\x60\xbe\xec\x81\xe0\x40\xec\xa2\x0f\xe5\x75\xf6\xb2\x85\xad\xd5\x59\xf2\xb6\x0e\x18\xed\x03\x6a\x1c\x88\x87\x87\x6c\xc8\x49\xf5\x94\x47\xd4\x08\x4a\x7d\x44\x8d\x18\x4a\x1e\x0a\xaf\x5a\xbb\xf9\x31\xae\x15\x3b\xe5\x83\x1b\xb2\x62\x7c\x79\x08\x5e\x35\xae\xe8\x21\x78\x75\x39\x83\x81\x1a\xa7\x77\xee\x3c\xdc\xd6\xe1\x3d\xde\x4f\xa0\xc6\x62\x61\xd2\x27\x50\x63\x33\xf4\xf2\x21\x1b\xd2\x48\x86\xe7\x24\xc2\x83\x9c\xc3\x87\xe0\xd5\xe6\xc8\x8a\x89\xca\xac\x6d\xa0\xc6\x5a\x50\x82\x1e\x0a\xaf\x0e\x04\xe5\xc3\x6d\x1d\x96\xbe\x7f\xb8\xad\x63\xe2\xcf\x78\x28\xbc\xaa\xca\xf7\x80\x1a\x37\xea\xd2\x53\x48\xd9\x71\x5e\xc8\x86\xec\x9e\xf7\xe2\x6d\x24\x8c\x13\x37\xa4\x77\xe1\x3d\xc5\x2b\x2b\xa0\x88\x6c\xc8\xc7\x15\x23\x1b\xf2\x40\xa0\x3f\x14\x5e\x3d\xb6\xcf\x10\x1d\xae\x34\x57\x72\x0c\x84\xc5\x43\x36\xa4\x79\x8c\x0f\xc1\xab\xf9\xb2\xc5\xfa\x61\xc5\x7f\xcc\x86\xf4\xf4\x57\x0c\x1e\xfd\x67\x41\x70\x0f\x1e\x4a\xaf\xbe\x7c\x2a\x71\x83\x9f\x16\x71\x83\xd5\xee\xd0\x7a\x9c\x40\xe3\x5a\x1f\x07\x4d\xf9\x20\xa0\xfc\x03\xa0\xac\x2e\x4a\x00\xca\x6a\x8d\xd4\x07\x40\x69\x8d\xe2\x07\x40\x69\x69\xc2\x07\x0f\xe5\x2d\xab\x6b\xb8\x79\xc8\x1d\x7c\xa8\xc9\xfa\xa2\x57\x3d\x24\x4a\x7a\xa1\xf9\x43\xa2\x64\xfe\xbc\x87\x9b\x47\xc6\xd0\x0c\x9e\x63\xc1\x88\x6b\x1d\x32\x68\x01\xe5\xe7\x2b\x24\x4a\xba\x7c\x00\xca\xf6\x3a\x32\x82\xe7\x64\x2f\x00\xca\xd5\xfc\x65\x6c\xdd\x77\x3a\x32\x0a\x93\x7e\x9e\x11\x3c\x47\x3a\xc1\x03\xa0\xd4\xd8\xf3\x50\x5e\xa7\xfa\x4d\xca\xeb\x4c\x74\x99\x27\x00\x65\xbf\xb1\x14\x3e\xb8\x21\xad\xc5\xf1\xe0\x86\xbc\xd1\xce\x1e\xdd\x90\xd8\xce\x1e\xdc\x90\xaf\xd4\x12\xd7\x9a\x3d\x46\xb8\x21\x4b\xb3\xf7\x00\x5c\x55\x96\x85\x1b\xb2\x2e\x7b\x30\xc2\x83\x23\x06\xa0\xbc\x0f\x9f\xa1\xf5\x14\xfb\x0b\xad\x6e\x11\x95\xf9\x0c\x0d\x3a\xf4\x00\xa0\x3c\x3e\xcf\x32\xc1\x6c\xf4\x37\x88\x10\x40\x1b\x7c\x06\x35\xad\x5d\x31\xe2\x5a\x2f\x47\x4d\x5c\xeb\x67\x96\x8c\x6b\x75\xd7\x11\xd7\x9a\xc9\x39\x7c\x86\x35\x12\x58\x4d\xe2\x5a\xd5\x7a\x1e\x00\xe5\x23\x45\xc3\xca\x6c\xcc\x35\x85\x57\x8b\x62\x9a\xc2\xab\x6f\xb2\x45\xcd\x6e\x70\xdb\x33\x41\x55\x0a\x12\x0a\xaf\x7a\x7f\xf4\x13\xa8\x71\x78\x63\xc5\x33\x49\x69\x71\xa5\x27\x5a\xeb\xf0\x3d\x6f\x93\x81\xbe\x49\x8d\x04\xbc\x30\x0f\x71\xad\x7a\x1b\x9e\x69\xdc\xbc\xcf\x28\xaf\xf3\x19\x0b\x6e\x48\xb4\xc8\x67\x1a\x21\xc0\xec\x82\x1a\xbb\x2b\x8d\x1b\x72\xca\x68\x71\x43\xde\xae\x34\x6e\x48\x0b\xfd\x3f\xa0\x46\x2f\x6a\x78\x3e\xe5\x75\x98\x6b\x82\x57\x2d\x84\xf0\x10\xbc\x7a\xe1\x27\x78\xc8\x86\xb4\xb4\xd7\x73\x99\xa8\xec\x33\x7c\x1d\x98\x18\x1f\x50\xe3\x83\xfb\xf2\xe1\x8e\xc7\xcf\x09\xc7\x0d\x99\x49\xea\x7a\xa8\xa1\x63\x25\xee\x27\x50\xe3\xb4\x86\xce\xc3\x6d\x1d\x87\x6b\x44\x0d\x9d\xa6\xf8\xa3\x86\xce\xe3\xf9\x23\x1b\xd2\xfb\xcd\x9f\x9b\x6c\x56\x4c\x38\xcf\x8d\x6a\xa3\x82\x74\x93\x68\x2e\xaf\xf3\x8e\x47\xf2\x10\x9e\xdb\x9a\xeb\xd0\x4e\x0d\x1d\xcb\xd4\x3f\x37\xa8\xea\xd3\x43\x88\xfe\x8c\xcd\xfb\xa1\x86\x8e\x55\xc1\x1f\x8a\xb2\xc6\xf5\x04\x3f\x66\xc9\x02\x4a\xb7\xcb\x8d\x07\x5d\xe9\x70\x6b\xab\x73\x98\x84\x9c\x03\xc9\x1f\xe2\x5a\x6f\x37\x79\x00\xca\xee\x65\xf5\x0f\x1e\xca\x13\x83\xc7\x43\xa2\xe4\x89\x15\xf8\xa1\x5e\xeb\x24\xdc\xea\xe1\xfa\xc7\x89\x26\xfc\xe0\xa1\x5c\x6e\x6b\x3c\x94\x02\xae\xe7\xc1\xd6\x2a\xf3\x7e\x4c\x19\x60\x5b\x3f\x68\x05\x32\x53\xe2\x5a\xb5\x26\x3d\x8f\xd9\x82\x50\xf4\x40\x9f\xcb\xf0\x98\xcd\x63\x8b\xca\x65\x0a\x12\x00\xe5\xc6\xc4\xf1\x3c\xd8\xea\x3c\xe0\xaf\x89\xa0\x2c\x0a\x80\xd2\xec\xbd\x07\x40\xd9\x3c\x1c\xb8\x21\x17\x56\xee\xe7\xd5\x56\xc7\x5c\xbf\x18\x3c\x80\x6d\xcf\xab\x87\xd9\x67\xd8\x92\x87\xfd\x99\x6d\xe6\x57\x88\x60\xc1\x61\xf9\xbc\xb8\xe9\xd4\x57\x70\x43\x5a\x7b\xe0\x31\x1b\x52\x06\xf6\x9a\xe8\x6a\x0b\xc0\xb5\xa4\x01\x83\x0e\x76\xca\x87\x9b\x3c\x3e\x6b\x64\x36\x24\x86\x8b\x87\xf2\x3a\x45\xa6\x4f\x51\x56\x73\xd6\x9e\x00\x94\x3d\xa9\x57\xe1\x86\x34\x45\xe8\x21\x1b\x72\x63\x9c\x78\x70\x43\x7a\x03\xdc\x83\x1b\xb2\x88\x48\x74\x43\x02\x75\x1f\xe2\x5a\x1f\x22\x4a\x9e\xe5\xfe\xf4\x19\x95\xe7\x48\xba\x7d\x00\x94\x96\x96\x7c\xc8\x86\xec\xaf\xcf\x62\xfd\x34\x47\x3c\x01\x28\x9b\x55\xf7\x1e\x6e\xf2\xd0\xdd\xf6\x88\x1a\x3d\x54\xdb\x7a\xc9\xb6\xb4\x25\xfb\x4b\x0c\x72\xb2\x3a\xdc\x90\xfb\xb6\x07\xea\xed\xca\x4c\x71\x43\x36\x75\x6d\xe2\x5a\x5f\x59\x39\xd9\x90\xd9\x15\xdb\x6a\xe5\xf6\x47\x70\xa7\x08\x88\xb8\xd6\xee\x79\x20\x78\xd5\x7a\x80\x0f\xc1\xab\x2f\x56\xd2\xd7\x9b\x3c\x30\xc1\xbd\x87\x5a\x5d\xa1\x85\x41\xae\xf8\x2c\xd6\x6f\x83\x41\x5e\xb2\x21\x8d\xaa\x78\xc9\x86\x54\x87\x7d\x0f\xef\xd0\x3b\x69\x81\x1a\x1f\x5b\x18\xe4\x5e\xdf\xc3\xe0\x81\x7e\xfb\xe2\x86\xac\x9c\xdb\x57\x37\x24\x0c\xf3\xe5\x8e\xc7\xf6\xf9\x0a\x71\xd7\xc5\xfe\xb4\x25\xdb\x22\xb8\x0c\x5c\xf3\x5a\x43\x07\x9c\xf1\x1a\xbc\x0a\xcf\x7a\x29\xca\x7a\x1c\xb6\x88\x2b\xdf\xfe\x32\x44\x87\x86\xca\x37\x51\x08\x01\xce\xf7\x92\x0d\x69\x62\xcc\x1b\xa8\xb1\x27\x9c\xfb\x6f\x22\x0c\x60\xfb\x4d\x7c\x01\xa4\xbb\xbc\xb8\x21\x0d\xb3\x7b\x09\x5e\x55\xdc\xbe\xa0\x46\x6f\x18\x7f\x75\x43\xa6\x9f\x95\x1d\x7a\x03\x50\x8e\x8e\x8b\xeb\x4d\xda\x5a\x19\x0a\x71\xad\x9d\xc3\xf8\x12\xd7\x5a\x9c\x88\xcc\x25\x3b\x38\xe6\x5e\x3c\x94\x19\x86\xf2\x66\x3d\xb0\x0c\x85\x44\xc9\x0c\x63\x78\xf1\x50\xf6\xc7\xf7\xe2\x68\xea\xd5\x7d\xa9\xd7\xda\xba\xbf\xb4\x06\x84\x63\xf1\x68\xda\x03\x97\xb4\xb8\xe9\x00\x94\x86\xd6\xbc\x1f\x40\x79\xd3\x22\xee\xda\xed\x42\xa2\xa4\x11\x1e\xef\x89\x56\x80\x1b\xe4\x3d\xa9\x27\x0c\xf0\x7d\xb9\xfe\xf1\xbc\x6c\x21\x3a\x70\x39\xbd\xc4\xb5\x0a\x4f\x5e\xca\xeb\x24\x17\x0c\x40\x79\xdf\xfe\x92\xca\x65\xc4\x37\xbe\x27\x6e\x3a\x60\xfe\x4b\x36\xe4\xc1\x81\x7b\x01\x94\x77\xf1\x19\x37\x79\x2c\x5b\xb0\x9e\xe6\x37\x71\x83\x20\x56\x5e\x01\x65\xf5\x19\xe5\x91\x10\x55\xaf\x80\x12\xc0\xfc\xe2\x86\xcc\x30\xda\xb7\x50\x6f\xd7\xaf\x70\x93\x87\x5e\x83\x17\x37\xa4\xc9\x13\x6f\x41\x6b\x5d\x3e\xe3\x68\x26\x7b\xe8\x1c\x69\x5b\x1c\xcd\xe9\x37\x59\x3f\xa2\x5b\x5e\xdc\x90\x86\x26\xbe\xb8\x21\x1f\x04\xde\x4b\x5c\xeb\xdf\x7b\x17\x55\xf9\x8c\x9b\x20\xdc\x91\x00\xca\x06\xae\x79\x2b\x6e\x3a\x99\x0d\xd9\x90\x39\xdb\x22\x42\x07\x7d\xec\x05\x50\x6a\xdf\x7c\xab\x89\xca\xcc\x0b\x80\x72\xb9\x0b\xbc\xc9\x23\xdb\x83\x80\x99\xd9\x25\xae\xf5\x73\x56\x70\x43\x3e\xb2\x41\xe2\x5a\x9f\x62\x0b\xad\xd5\xd5\x24\xae\xd5\x98\xfa\x97\xb8\xd6\x73\x39\x16\xd7\xcf\x51\x6f\x82\xe0\xe8\x8f\xa2\xac\xd9\xb1\x10\xd7\x6a\x54\xcc\xdb\x2c\x1f\x64\x0b\x54\x85\xff\xe4\xa5\x28\xab\xd9\x90\x2f\xe5\x75\x52\xf3\x97\xd8\x92\xc1\xc1\x2f\xc1\xab\xde\x14\xfe\x82\x1a\x4f\x1c\x6c\x2f\xa8\xb1\x7d\xde\xc3\x56\x2e\x7b\x21\x78\xf5\xb3\x2a\x64\x43\x0e\xcc\x6c\x2f\x6e\xc8\x8a\xd8\x7c\xbd\xc9\x03\x05\xe2\xd5\x0d\x89\xd9\xf2\xed\x5e\x95\x00\xb5\xb8\x21\x0b\xfe\x8c\x97\x6c\xc8\x49\xac\xd2\x4b\x36\xe4\xf2\xac\x70\x93\x87\xf5\x2a\x5f\xdc\x90\xde\x84\xfe\x76\x13\xcd\x19\x35\x6e\x48\xd1\xc3\xcb\x75\x1d\xd6\xa1\x7b\xbd\xae\x83\x80\xd8\x97\xeb\x3a\x6e\x9c\xfb\xaf\xd7\x75\x28\x10\xba\x85\x10\xec\x81\xb8\x64\xec\xe1\x2f\xd7\x75\x0c\x77\x08\xd7\x75\x4c\x30\xdd\xcb\x75\x1d\x2f\xfe\x93\x97\xeb\x3a\xf6\x97\x48\xfd\x31\x4b\x0e\x40\x39\x0e\x8f\x0a\x71\xad\xc3\x41\x0f\xe2\x92\xb1\x3b\xbd\x83\x6c\xac\xdb\x67\xd8\xea\xdc\x9e\xc4\xb5\x76\xc2\x67\xde\x00\x94\x73\xb8\xe5\x07\xd9\x74\x87\x2d\x58\xeb\xe9\xa0\xf1\x50\x4e\x7b\x50\x6b\xf5\x2b\x68\xad\x92\x0e\xa0\xec\x2e\xca\x10\x70\xf1\x95\xa9\x56\x00\x0d\x01\x28\x7b\x27\x24\xee\xc5\x0d\xb9\xb1\xae\xbe\x00\xca\x8d\x33\xec\x25\xae\xb5\x2b\x10\xb8\xfe\x51\x87\xd7\x4b\xa2\xe4\x79\xfa\x15\xdc\x04\xc3\xf7\x06\x4c\x8a\xad\x2b\xa0\x04\x0e\xbd\x93\xca\x7a\xd3\x67\xd8\xb2\x70\xda\xbd\x13\x37\xcf\x74\xd4\xd0\x87\x8e\xfe\x52\x5e\xc7\x04\x90\x77\xca\x5a\xd9\x04\x00\xca\x5b\xcd\x86\xeb\x1f\x0f\xdf\x13\x50\x92\x49\xf8\x52\x5e\x67\x2a\x8e\x2e\xb5\x02\x5b\xd8\x92\x65\xa6\x17\x45\x2f\xc9\x91\x7b\x89\x6b\xd5\xfa\xff\x5a\x94\x15\x8d\xf6\xbd\xa4\x8f\x59\xc2\x0d\x79\x61\x80\x78\x75\x43\x9e\xf6\x4e\xdc\xee\xe1\xa8\x63\xeb\x6a\x13\x7e\xc9\x86\x34\x7d\xf5\xe5\x8e\xc7\x61\x8b\x3b\x1e\x2f\xec\xa9\x2f\x77\x3c\x3e\x1e\x23\xe2\x5a\x45\x40\xef\x4d\x84\x80\x02\x1d\x37\x64\x75\xce\xcc\x86\x04\x84\xbf\xb8\x21\xbd\x70\xe1\x05\x50\x9e\xd9\xfe\xc8\x16\x54\xb3\xb9\x2d\x14\x00\xed\x94\xd7\x69\xae\x2d\xb7\x7c\x78\x77\xc7\x0b\x6a\x2c\x0a\x66\xdc\x90\xbb\xf9\x5e\xec\xcf\xaa\x88\x23\xae\xd5\x4b\xf5\xdf\x40\x8d\xdd\x82\x9f\x2f\xd9\x90\x66\x5f\xbe\x64\x43\x3e\xc4\xac\xbc\xa0\xc6\xe1\xfe\xc4\x0d\x59\x15\x6a\xa0\xc6\x02\xcc\x7f\x29\xaf\xb3\xd4\x06\x1f\xea\x41\x7b\x1e\x28\xaf\xd3\xd5\xd5\x28\xaf\x33\xb3\xdf\x0c\xad\xce\x12\x41\xef\x43\x0d\x08\x59\x0f\xa8\x31\x5d\x7e\x05\x37\xeb\xe1\xc8\x70\xb3\x3a\x4b\x94\xd7\xb1\x34\xef\x4b\x51\x56\x6f\x1f\x7f\x29\xca\x2a\xba\x7d\x29\xca\x6a\x0d\xf4\x97\xa2\xac\x0d\x07\xe9\x0b\x6a\x7c\x3f\x2d\xea\x41\xab\x66\x51\x94\xf5\x96\x41\x5b\x43\x87\xca\x38\x2f\x35\x74\x12\xa8\xea\xa5\x86\x4e\x96\x87\x04\x6a\x1c\x96\x86\x7a\xb9\xff\xf1\xb9\x7c\x4f\x5b\xb2\xdf\x24\x38\x10\x14\xf7\x52\x43\xa7\x25\xdf\x43\xf4\xe3\x19\x78\x17\xa2\x5f\x4e\xb4\x2c\xbf\xc6\x7c\x12\xbc\x6a\x51\xfe\x97\xa2\xac\x39\xf9\x4b\x83\x3b\xd9\x2f\xb8\x21\x43\xa8\xfd\x98\x25\xe3\xa1\xb4\xe2\xd9\x4b\x79\x9d\xe7\xf0\x23\x24\x4a\x62\x11\x7b\x17\x6e\x02\x17\x8c\x7a\xad\x66\x01\xbd\xdc\xf2\xf1\x81\x27\x01\x28\x8b\xe5\x83\x5e\xae\x86\xcc\x82\x15\x00\xa5\x37\x81\xbd\x5e\x0d\x49\xc4\xc5\x0b\xa0\xec\x6e\xb3\x4d\xe5\x2b\xdc\x19\x2f\x71\xad\xc9\x83\x0a\xa0\x9c\x58\xe0\x5e\x00\xe5\xe4\xae\xe0\x17\x37\xa4\xe1\xef\x2f\x6e\xc8\x2d\xa3\xdd\xc6\x0d\xfa\x8c\x94\x01\xb5\xd6\xcd\xfd\x81\x1e\x77\xdd\x90\xea\x08\xc4\xb5\xde\x42\x9e\x00\x94\xf5\xa3\x5d\x6f\x72\xec\x3d\x46\xc4\xb5\x9a\x3d\xf4\x1a\xd7\x8a\xfd\x6f\x19\xd7\x0a\x80\x5d\x64\x43\x5a\xd4\x73\x71\x35\xa4\xb7\xa6\xac\xc3\xe0\x2b\x9f\x71\xc9\x15\xa6\x91\x45\x36\xa4\xa9\xc9\x8b\x6c\x48\xaf\xd1\x5f\xd4\x6b\xb5\xbc\xe9\x3a\x2c\x0a\xd9\x69\xa1\x95\x57\xdf\xc3\xe0\x91\xfc\x26\x6e\x1e\x00\xec\xa2\x28\x6b\xfa\xb4\xd0\x5a\x8b\xdf\xe4\x68\x36\x29\x62\xfd\x80\x7b\x8b\xb8\xd6\x8d\xb3\x76\xe1\x86\xec\x68\x6e\x2b\x51\xca\x9c\x23\xb6\x02\x50\x8e\x8a\x3e\xb6\xbc\xff\x51\xfa\xbc\xff\x11\x77\xd4\x4a\xd8\xca\x3f\x3d\xa0\xd5\xb1\x3f\x17\x71\xad\xc7\xf6\x97\x78\xd0\x1f\x9f\xe1\x0b\xa8\xf6\xc7\x55\x02\x30\x86\xc5\xfd\x8f\x19\x77\xcd\xe2\xfe\xc7\x7e\xd9\x22\xd1\x3c\xf9\x95\x10\x8d\x37\x3b\x6b\x11\xd7\x7a\xc0\x22\x17\xe5\x75\x26\xa2\x7f\x65\x52\x06\x70\x97\xae\xac\xd6\x6a\x8b\xf2\x33\x9c\xb1\x95\x89\x10\x00\x84\xaf\x8c\xc1\x03\xed\x6c\x65\x23\x90\x98\x17\xef\x7f\xbc\xed\x8f\x1a\x10\x8f\xfd\xc1\x5a\xb3\x2d\xdc\xc8\xce\x0b\xc1\xab\xfd\xf2\x2b\x44\x08\xbc\xb6\x16\x4c\xc3\x91\x91\xf2\x01\x02\x5a\xb8\x21\x3b\x4c\x78\x51\x5e\xe7\xe4\xac\xac\x53\xd6\x43\x7f\x94\xd7\xa9\xb0\xf9\xc5\x2d\x1f\x03\x23\xd1\x3a\xa1\x0f\xb7\xd9\x02\x35\x5e\x24\x36\xad\x93\xb8\x6b\x04\xec\x22\x1b\x72\x4c\xfb\xa3\xa8\xee\xa7\x3f\x0c\x3a\xee\x25\x50\xa3\x9a\xe9\xd2\x0d\x09\xe6\x59\x81\x1a\xbb\x66\xbd\x45\xf0\xaa\xe1\x8e\xeb\xa4\xf2\x23\xb5\x17\x57\x81\xb5\x62\xf3\x5e\xb8\x21\xbd\xae\x77\x15\xeb\x25\xb3\xd2\xba\x21\x09\x77\x5c\xba\x21\xd1\xbc\x17\x6e\xc8\x1b\xa5\x6b\xe1\x86\x34\xe4\x76\x11\xbc\xfa\x80\x3a\x16\x35\x74\x5e\xd7\x88\xab\x3c\xa2\xea\xca\x0f\x59\xf2\xa2\xbc\x8e\x97\xf1\x2f\x12\x25\x4f\x74\xae\x45\x5c\xab\x01\xd3\xab\x98\xa3\x6d\x07\x68\xad\xe8\xbe\xab\xe0\x41\xc7\xd1\xb2\xa8\xd7\xea\x3d\x6b\x0b\x0f\xa5\xb5\xae\x56\x25\x42\x80\x24\xe6\x55\xc9\x56\x72\x69\x03\x50\x8e\x43\x66\x53\x09\xbe\x92\x9d\x55\x82\xaf\x70\xde\x2c\xe2\x5a\xbd\x28\x72\x51\xaf\xb5\x1f\x7e\x93\xa2\x82\xc9\x16\x71\x83\x40\xa5\x45\x5c\xab\xee\x85\x55\xc9\x56\xc2\x00\xb1\xa8\xd7\xea\xdd\x7b\x2b\x00\xe5\x1c\x98\x23\x56\x00\xca\xf9\x60\x49\x5b\x01\x28\xa7\x57\x9f\xaf\xe6\xd5\x89\x2c\x43\x83\xf5\x50\x8f\x76\x11\xd7\x7a\x60\xbf\x5d\x94\xd7\xc9\xb2\x09\xe2\x5a\xbb\x63\x69\x54\x9e\x43\xe0\xad\x66\x8d\x04\xdf\x63\x8d\xdc\x74\xb8\x1a\x1b\xf6\xf7\x85\xab\xb1\xcb\x92\x71\x35\x76\x20\xe4\xe2\x26\x8f\x21\x45\x80\x46\x33\x2c\x17\x37\x79\xbc\xf8\xa9\x57\xc7\x1e\x8e\xdf\x78\x75\xc4\x9f\x63\xe1\x26\x8f\x1b\xd7\xed\xe2\x26\x0f\x9d\x22\xab\x8b\x9c\x18\x19\x85\x57\x33\x9a\xf7\xea\x88\x07\x57\x1a\x57\x63\xc9\x7e\x05\xf1\x9e\xfd\x0a\x25\x66\x64\x13\xdd\xfb\x03\xd9\x4b\xdc\xe4\x61\xea\xcd\xe2\x26\x8f\xf1\x19\x19\x97\x24\xdd\xf6\x40\x00\x12\x66\x8c\x05\x68\xcc\xee\x64\x40\xa3\xb1\xb9\x8b\x3b\x1e\xb5\xa7\x2e\x5c\x8d\x16\x0c\x5a\xc4\xae\x66\xec\x9b\x8b\xd8\x55\xab\x0b\x2f\x62\x57\x3f\x0c\x1a\x57\xe3\x70\x5e\x70\x35\x2e\x2c\xa1\x0b\x57\xe3\xac\x8e\x85\x00\x47\xa9\x0d\x64\xd8\xb7\x82\xc4\x8c\x47\xcf\xca\x00\x14\x3f\xf6\x00\x7d\xb2\x41\x5c\x8d\x43\xc6\xce\x4d\x1e\xba\x7c\x17\x37\x79\x2c\x10\xec\x22\xe3\xb1\x3f\xb6\x10\xef\x9e\xdb\x69\x1d\x19\xe6\x85\x8c\xc7\x8e\xbe\xb9\xc8\x78\xbc\x89\xda\x5f\xde\xe4\x21\x73\x23\xe3\x71\xbe\xb6\x60\x2f\xb2\xcf\x0f\x32\x84\x3e\x33\x1e\xa7\xcf\x1e\x72\xf9\xec\x81\xfd\xb9\xed\x21\xce\xd8\x83\xa3\x7a\xe1\x6a\xb4\xce\xca\xba\xa8\x43\xe2\xd9\x0c\x64\x58\x36\xfe\xa1\xe5\xfd\x8f\x38\xcd\x17\xae\x46\x2f\xc5\x58\xd4\xc9\xe9\x72\x94\xcb\xf5\xb3\x85\xf8\x53\x49\xf0\xba\x0e\x05\xd7\x45\x46\x60\xb3\x35\x99\x4f\xf6\xf5\x85\xfa\x82\x02\xb8\x2e\x2f\xf1\x62\xd4\xd6\xc9\x21\x82\x79\x51\x27\x67\x7f\x7a\x57\xbc\x3b\xea\x38\x7f\x51\xbd\xfc\xc7\x2c\x19\x2f\x64\x97\x65\x99\x0c\x89\xd6\xba\x00\x8d\x46\x3b\x2e\x62\x57\x8d\x87\x58\xdc\xe4\x61\x1a\xf1\xc2\x0b\x79\xbb\x95\x6e\x63\x8f\x7d\x46\x58\xb9\xac\x87\x9a\xac\x05\xd7\xd8\xa2\x84\xce\xa5\x44\x05\x34\x26\x72\x9e\x16\xb1\xab\xde\x5c\xb0\x02\x34\xf6\x47\xe6\x16\xa0\xb1\x59\x71\x69\x05\x68\xec\xdd\xe3\x4e\xec\xaa\x29\x8e\xeb\x31\x63\x87\x09\x0c\xd0\xd8\x93\x8c\xc8\x64\x48\x72\x9e\x16\xc9\x90\x1d\x73\xcb\x0a\xd0\x38\xbb\x5b\xf7\xe1\xa6\x84\xe6\x7b\xb8\x02\x14\x47\xd4\x64\x35\x5d\x76\x01\x1a\xbd\x27\x79\x3d\x46\xa9\x30\x67\x80\x46\x73\x90\x16\xa0\xb1\x74\x5b\xd4\x64\xc5\x5d\xba\x1e\xf3\xe8\xfd\x26\xae\xc6\xed\x58\x4c\x66\xa5\x87\x00\x8d\xf3\xc1\x59\xb4\xc8\x78\x9c\x6a\x3d\xaf\xf4\xd1\x83\x37\x79\x00\xf3\x17\x19\x8f\x3a\x45\xd6\x8b\xab\x43\x0d\x0c\xd0\xf8\xba\x21\xb9\xc9\xe3\x55\xfc\xbd\x24\xcb\xbb\x21\x5f\xb7\xae\xfd\x05\xeb\x29\xdd\x91\x61\x0f\x77\xae\x01\x8d\x3a\x48\xd7\x4b\x4d\xe4\xe1\xa8\x29\x4c\xea\x3a\xbc\x1a\xa5\x98\x5d\x5c\x8d\xa7\x22\x87\xfb\x1f\xbd\xcc\x73\x2d\x03\x38\x6d\xe1\x8a\x93\xb1\x0b\x1a\xdd\x3d\xb8\x1a\x93\xe2\x81\x8c\x47\x0b\xbe\xaf\xe5\x4d\x10\xfe\x12\x7f\x06\xb6\xcf\x45\x09\x9d\x0f\xb5\x8b\x4b\xca\x70\xd6\x2e\x6e\xf2\x98\x6a\x59\xb8\x1a\x1f\x2c\xd9\x6b\x11\xe0\x78\x3a\x6a\x32\x1e\x15\x55\xcb\xb4\x23\x76\x6b\x20\xc3\xaa\x71\x62\xe1\x6a\x3c\x28\x2d\xb4\x3e\xae\x46\xbe\x42\x80\x6a\xf5\xf0\x53\x78\xd5\x8a\xbe\x8b\x12\x3a\xa6\xea\x2f\x90\x61\xfa\x7c\x05\x57\xb1\xa7\x71\x9b\xb1\xca\x8a\x6d\x90\xd3\xe9\x2f\x2f\x6c\xd0\x8c\x93\x00\xd5\x2d\x96\xd8\xa6\x3d\x30\x13\x20\x43\xaf\xe6\x5a\x20\xc3\x0d\x82\x5d\x16\x5e\xc5\x49\xbf\x29\xbc\x6a\xcd\xee\x4d\xc6\xe3\x85\x83\x74\x5b\x78\x95\x33\xbd\x29\xbc\x6a\xc9\xa5\x7d\x58\x6e\xde\x5f\x5a\x73\x7d\xd1\x0a\xd1\x5f\xaa\xcf\x82\xbf\x24\xd0\xca\x06\x19\xca\x43\x36\xae\xc6\xe7\xf6\x99\xc8\x29\xd3\xa2\xe6\xf3\xb2\x77\x02\x1c\x4f\xdf\x0b\xfa\xac\x93\xbd\xbd\xff\x11\x9b\xf7\x06\x19\x26\x38\xe6\xf6\xfe\x47\xf0\xd0\xa6\xf0\xea\x89\x30\xdc\xb8\x1a\x6f\x4e\xff\xc6\xd5\xf8\xa5\x55\xfc\x98\x25\xef\x44\x61\x3d\xac\x2d\x1b\x2f\x64\xc2\xd3\xbf\xf1\x42\x5a\x49\x6c\x5b\x93\x55\xd2\xa9\xc9\xda\x5f\x07\x46\x6c\x60\x73\x60\x04\xe8\xa0\x49\x6d\x80\xa1\x05\xf2\x76\xc2\xa6\x58\xed\x0f\x9b\x22\x1a\xd1\xce\x66\xe5\x30\x2d\xd9\x32\x32\xf4\x40\x99\x1c\xaf\x24\xdc\x94\xc9\x39\xb6\xef\x05\xfb\x6c\x48\xbf\x0d\x30\xec\x2e\x34\xb7\x75\xcc\xe4\x2f\xb1\xb9\x0d\x7b\x00\x18\xe2\x48\xda\x19\xc3\x05\x4c\x71\x73\xfd\xe3\x35\x7c\x76\xb3\x60\x2c\x11\xc0\x70\x60\x95\xdd\xd4\x5d\x35\x77\x69\x67\x2f\x7a\x82\x76\xe2\x53\xad\x2b\xbb\xcd\x6a\x74\x83\x9c\x5e\xf4\xc4\x58\x00\x86\xa7\xf3\xe9\x6d\x1d\xdb\x56\xac\x91\x36\xcc\x4d\x56\x63\x03\x26\x6e\xb2\x1a\xa7\xb3\x44\x56\xa3\xee\x85\x4d\x56\xa3\x47\x7a\x03\x0c\x2d\xf5\xb8\x71\x27\x26\x9c\xa7\xfb\x24\xa1\x3a\xfb\x5e\x1c\xbf\x0b\x77\xd4\x06\x18\xee\x61\x0f\x78\xc2\xd1\x0d\x37\x59\x8d\xde\x90\xb6\x0b\x15\xc8\x1e\x5b\x09\x73\x12\xa3\xe6\x8e\x47\x0b\x7f\x6f\xee\x78\xb4\x6a\xdb\xc6\x9d\x68\x82\xd2\x2e\xde\x11\xc8\x7c\x06\x30\x9c\xf3\xf3\x4b\x8e\x1f\xcc\x6d\x7f\xdc\x89\x7e\x93\x32\x32\xb0\xdd\x0d\xfa\x7b\x70\x0f\x6d\xd0\x9f\x76\xc3\x1d\xe8\xaf\x6f\x2c\xa8\x9b\xac\xc6\xbd\x6d\x11\x04\x47\x25\x90\x5d\x28\x73\x84\x57\x7e\x57\x2a\x90\x21\x80\x76\xb5\x8c\x0c\x73\x46\x56\x63\x97\x86\x4a\xc2\x38\xd8\x73\x57\x82\xa8\xb0\xfe\x6f\x6f\xeb\x40\xc0\x6e\xdc\x89\x1a\x9e\x36\xc5\x55\x15\xfd\x1b\xf4\x57\xc0\x4a\xbb\x92\xb5\xd9\xec\x1d\xcd\xad\xfb\x4b\x12\xfe\xbb\xbd\x73\x11\x99\x67\xac\x52\x72\x5d\x16\x59\x8d\xb4\xb1\x3f\xea\x72\x63\x02\xd8\xb8\x13\xad\xc4\xb8\x71\x27\x4e\x8c\x3d\x9b\x20\xd4\x0c\x08\xdf\xcd\x8b\xd6\xd8\x21\xcd\xba\xdc\xf4\x4e\x10\x6a\xc7\xd1\xb9\x09\x42\x15\xd7\x6c\x6e\xeb\x28\x98\xfc\x76\xb8\x13\xbb\xd7\x93\xee\x46\x56\x1c\x4c\x7f\x37\x8a\xff\x3e\xf6\x40\xf1\x58\xb0\xc4\x6e\xc4\xbf\xbb\x7e\xd6\xc2\xf9\xbc\x87\x4d\xb8\xdb\x5f\x9c\xbf\x8d\x0f\x68\x7f\xee\x78\x84\x22\x82\x50\xad\xd9\xb3\x41\x86\xc5\x51\x7f\xb2\x1a\x99\x41\x82\x50\xab\xf4\x75\xca\x8c\xc9\x19\xcc\x6a\xc4\x21\xbb\xcd\x6a\x04\x2f\x6c\xb2\x1a\x8b\x1c\x93\xac\xc6\xb8\x41\xfd\xc7\x2c\x99\x84\x47\xc3\xd8\x37\x09\x8f\x0f\xe0\x76\x77\x82\x38\x00\x6a\x1b\x4f\xa3\xd9\x43\xbb\x13\xfa\x2f\xe3\xeb\xa4\x6e\x78\xdc\x29\x93\x63\xf1\xf2\x4d\x99\x1c\x9d\x30\x1b\x77\x62\x03\x88\xee\x41\x85\x35\x7b\x18\x64\xc5\x29\x0b\x07\x17\x05\xc9\xa4\x06\xee\x0c\x8f\x34\xa0\xf1\xb3\x28\x80\xc6\x7b\xf9\x9e\x9e\x54\x26\x02\xd0\xe8\xc5\x86\x7b\x70\x34\x6f\xdf\x7b\xd0\xc0\x58\x76\x41\x23\x56\xaf\x3d\xd0\xbc\x65\xb4\x80\xc6\x0b\x4d\x63\xe3\x4e\x7c\x88\x44\xd9\xd3\x8b\x9e\xf8\x0a\xf1\xa9\x17\xc6\x82\x6d\x7c\xaa\x0c\x7a\xea\x09\xf7\x97\xb2\x1e\xe6\x65\xea\x09\x67\x2b\x79\x5b\x07\x8e\xb9\x3d\x29\x03\x04\xb2\xd8\x80\xc6\x23\xfb\x0c\xd0\xaf\x18\xfb\x80\x46\x47\x46\x71\x47\x37\x9d\x65\x72\x30\x6a\x6c\xaf\x7f\x54\x5f\x09\xd0\x38\x12\xa0\x78\x5f\x06\x19\x31\xf3\xb8\x13\x1b\x25\x82\x76\x80\xc6\xf9\xe0\x35\xd8\x5c\xff\xb8\xa8\xc1\xbc\x29\x93\x53\x88\xf7\xd8\x17\xa9\x37\x6e\x56\xe2\x53\xbd\x0b\x79\x5f\x5e\xa4\xe3\x7b\xb8\x83\xb1\x72\xef\x0b\xd1\x88\x37\x7f\x03\x1a\x37\x7a\xdc\xbe\xb0\x79\x7b\xc4\xbc\xe3\xf1\x76\x2c\xf8\x2c\x64\x83\xc4\xa7\xbe\xb2\x4f\xe3\x53\x5d\x3f\x6f\xeb\x40\xbb\xde\xde\xd6\x21\xc3\x24\x3e\xd5\x14\xf1\x4d\x7c\xaa\x89\xfb\x9b\xf8\xd4\x66\x7f\xb7\xac\x95\x91\x05\x32\x9c\x5d\xd1\x81\x3b\xd1\x94\x8f\x8d\x3b\xd1\x7b\xae\xf7\x4d\x24\xc3\xe5\x7b\x78\xfa\x15\x16\x20\x43\x2d\xbd\x1b\x77\x62\x76\xe6\x6f\x12\xe2\x81\xeb\x9b\x20\xd4\xf1\xf8\x4d\x6c\xfa\x0a\x43\x82\x50\x0f\xc2\x01\x37\x65\x72\xbc\xa2\x73\x13\x84\xba\xb1\xae\x6e\x90\xa1\xf1\xbe\x9b\x20\x54\xdd\xeb\x1b\x77\xa2\xc1\x7a\x9b\xe2\xaa\xc6\xdb\xef\x47\xc3\xa1\xbf\x24\x2b\xee\xf3\x4d\x8a\xab\x62\xa6\xd9\x22\x43\x4f\x15\xc5\x55\xef\xcf\x57\x48\x18\x77\xae\x41\x86\x06\x93\xee\xc7\xac\x3f\xdf\x8b\xfd\xf9\x62\xa3\xdd\x20\xc3\xae\xf0\xb5\x16\x0e\x86\xbc\xfd\x1a\xe4\xc7\x2e\x30\x08\x15\x07\xfe\x06\x19\x6e\x85\x13\xc8\xb0\x3b\xd7\xaf\x41\x70\x8c\xfa\x45\xb5\x51\x61\xa1\xb8\xea\xab\x30\x7c\xbd\x43\xcf\xb1\xe8\x73\x72\x2c\x44\xda\x28\xde\xb9\xe3\xf1\x56\x0f\xc7\x9d\x18\x35\x58\x7e\xcc\x92\xbd\xfe\x51\xbd\x83\xeb\x1f\xbb\x8b\x49\xc2\xa3\x15\x21\x36\xf1\xa9\x09\x6b\xcb\xa6\xee\xea\xc2\x34\xbf\x97\x59\x63\x90\x00\x68\x3c\x3c\x38\x01\x1a\xe7\xe9\x04\x72\xfd\xe3\xa5\xe6\x8d\x3b\xf1\x50\x2e\x73\x5b\x47\x51\xbb\xe6\xfa\xc7\x4b\x3d\x80\x84\xc7\xdb\x69\xc1\x9d\xf8\xa8\x17\x2f\x2b\xc8\x31\xb9\xcb\x3b\x02\x7d\x0f\x9b\xb7\xf2\x8e\xba\xab\x2f\xc0\x77\x6f\xec\x55\xb2\x89\x8d\x4d\x58\xe6\xc6\xf5\x8f\x8f\x9a\x30\xee\xc4\x4b\xc1\x85\x3b\xb1\xaa\xb5\x7a\x5b\x47\xf3\x3d\x8d\x1a\xbe\x87\xd4\x74\x76\x01\x8d\x16\xb1\xd9\x80\x46\xdd\x19\xdb\xba\xab\xd8\xca\xf7\x26\xfe\xf6\xd3\xfb\x43\xcb\x5f\x12\x7f\x2b\xc3\x34\xab\x51\x0c\x42\x56\xe3\x0a\x06\x96\x8e\x03\xfa\x82\xd9\xa4\xe3\x80\xbe\xd0\xf4\xd3\x71\x60\xf3\x8e\xa3\x92\x8e\x03\xd1\x58\x7d\x0f\xd1\x18\x51\xe6\xe9\xa0\x4c\x0e\x57\x50\xa5\x83\xf8\xd4\x15\x7a\x63\x3a\x0e\xb2\xc6\x62\x5e\xd2\x71\x90\x50\x1d\xfa\x74\x3a\x70\x27\xe6\xe4\x7b\xd2\xf7\xd2\x32\x3e\x7c\xd1\x62\xd4\x17\xbf\x4c\x8c\x3a\x80\x7d\x3a\x12\xa3\x0e\x8f\x42\x3a\x74\x12\xde\x8c\xf3\x73\x73\x23\x5f\xf9\x94\x4c\xa5\x87\xc4\xa8\x63\x87\xa4\x23\x31\xea\xc7\xf7\xc0\x4a\x8f\xfd\x31\xea\x88\xcd\x48\x47\x42\x20\xbc\x7e\x13\x5d\x74\xf9\x4d\xeb\xde\x31\x83\x89\x55\xd9\xbe\x87\x13\x2d\x34\xa2\x74\x24\xa1\x2e\x33\x91\x50\x58\x4e\x28\xca\x38\x99\x2a\x73\x96\xb1\x92\x56\x7a\x30\xb4\xb4\xf2\x4d\x6e\x6e\xdc\xc5\x16\xd5\x7e\x3b\x34\x64\x8a\x17\x0d\xd6\x28\x7b\xbd\x11\x23\x03\x0b\xee\xe9\x33\xb0\x60\xb7\xbf\xa0\x8f\xfb\x0a\xd3\x91\x11\x78\xdd\x91\x21\xf0\x02\x75\xa4\x23\xe3\xa4\x6f\x7e\x13\xfa\x86\xbd\x43\xdf\xb4\x05\x94\x4f\xf4\x77\x42\xdf\xcb\xcc\x9f\xd0\xe7\x9c\x9d\xd0\xe7\x8a\x9d\xd0\xf7\xfa\x1e\xf4\xbd\x8c\xf3\x84\xbe\x97\xb1\x9c\xd0\xf7\x32\x9f\x27\xf4\xbd\x8c\x9a\xdb\x19\x49\x93\x4e\xc7\x69\x95\x09\xbf\xf9\xf0\xcc\xb1\x80\x67\xb3\xbf\xa4\xc0\x54\x66\x27\xeb\x08\x3c\x68\xe9\x08\x4c\x9c\x9c\x02\x0d\x1b\x6a\x71\x04\x1e\x99\x91\xe1\x08\x3c\x32\xf3\x89\x23\x90\x82\xa6\xe9\xf0\x32\x8d\x0d\xb5\x86\x8f\x7e\x89\x95\x1f\xb1\xe4\x74\x78\xdd\x7f\xb2\x03\x7c\xd8\x87\x9d\xa3\x8f\x15\x8e\x03\xd7\xfd\x1f\x6e\x10\xa0\x20\xde\xd9\x74\x10\x59\xca\xbd\x02\xe9\x20\xb2\xf4\xa8\x4c\x19\x05\x6e\x8e\xc2\x24\x51\xe0\xe6\x70\xb3\x56\x53\xa1\xe9\x8f\xc8\xd2\xa3\x41\x10\x91\xa5\x94\x0a\x4c\x47\xd5\x51\xc6\x37\x89\x2c\x3d\xa6\x5f\x41\x9f\x96\x4d\x70\x71\x23\x97\x33\xa6\xc3\x7c\xc4\x9b\xe3\x47\xce\xe1\xe1\x01\x07\xee\x1d\x1e\x4d\xe0\xde\xf1\x3a\x16\x68\xf0\x68\x92\x73\x78\x2c\x7b\x80\x06\x0f\x6a\xb3\x7e\x1d\xdf\x24\xe7\xf0\x58\xbc\x07\xdc\xc3\xb5\x99\x0e\x9d\x7d\x9b\xaf\x78\x97\x86\x87\x18\x87\x5e\x4a\xf4\xde\xbc\x6f\xc1\x5f\x62\x91\x76\x63\x71\x6d\x7f\x72\x0b\x72\x6d\x7f\x72\x83\x70\x01\x63\x3a\x7d\xc6\x05\x8c\x27\x2b\x46\x79\xd3\x24\x83\xd6\xd9\x77\x72\x00\xbc\x13\xa3\x32\x13\x44\x81\x72\xa1\x51\x3a\x88\x02\xa5\xf2\x70\x3a\x80\x6d\x38\x37\xd2\x41\xee\x20\x77\x54\xa4\x83\xeb\xf7\x41\x47\xe9\xe8\x26\x21\xb1\x62\x38\xed\x92\x8c\x1d\xa7\x5d\xf3\x30\x76\x2f\x8a\xb4\x3f\xc6\x39\x98\x17\xee\xbd\x48\x32\x1b\xee\xbd\x48\x32\x8d\x61\xf1\x79\x66\x1e\xc7\x1c\xf1\x2c\xe9\x00\x63\xa5\x8b\xf9\x1c\x58\x57\x65\xfa\x64\xf6\x25\x77\x01\xc1\x96\x49\x11\x40\xcd\x97\x74\x33\xf3\x14\x11\x4d\x37\x2b\x4d\x11\xd1\xf4\xf0\x8c\x22\xa2\xe9\x61\x9c\xb8\xd4\x92\x0c\x05\x97\x5a\x5a\x7c\x73\x72\x21\x95\xa7\x83\xec\xbd\xb4\x7c\x8f\x91\xb9\x97\x40\x47\x69\xfb\x1e\xbb\xc0\xfd\x02\x3a\x4a\x1e\x70\xd0\x51\x3e\xa0\x76\x9a\x3d\x6b\xef\x68\xd7\xee\x17\x82\x2d\xb9\x2d\x27\x1d\x04\x5b\xe6\xcc\x9e\xe0\x2e\xc3\x2c\x93\xe2\x2e\xc3\x9c\xf9\x25\x77\x19\xe6\x93\x59\xc2\xa5\x46\xf9\xcf\x74\x10\x6c\x99\x0b\xab\x42\xb0\x25\xc9\xe4\xe9\x20\x43\x2f\x57\xbf\x42\x86\xa5\xbb\x87\x80\xca\xdc\xec\x0f\x1a\xba\xcf\xa0\x41\x61\x01\x02\xca\xdd\xde\xa1\xa1\xdb\x1f\x34\x74\xe6\xcc\x5b\xee\x07\x2d\x6e\xb9\xcf\x93\x6f\x72\xcb\x7d\x9e\xac\xbb\x85\x42\x3b\xbb\x87\x42\xa1\x59\xa1\x86\x6f\x2c\xbb\xb3\xa8\xeb\x42\x59\xd4\x74\xe0\x1b\xdb\x17\x73\x46\xed\x96\x7c\xb3\x5b\x49\xb5\xcb\xee\x17\x51\xce\xe3\x57\xa0\x41\x25\x81\xa0\xc9\x08\xcb\xfc\x31\x4b\xa6\xac\x4b\x96\xf5\xe8\x1a\x93\xbd\xe0\x1a\xcb\x8b\x6d\x4d\x16\xde\x70\xf3\x50\xd6\x25\xbb\xe9\x28\xeb\x42\x81\x9b\x74\x3c\x90\xe7\x56\xc2\xfd\x75\xca\xe6\x71\x7f\x9d\x07\xc4\x3e\x56\x55\xb2\x05\x08\x57\x93\x7a\x2c\x88\x69\x0f\x78\xde\x0f\x16\x85\x98\xc9\x53\x96\x45\xcc\xe4\x29\x93\x32\xd3\x2e\x33\x16\x0a\x7e\x52\xd9\x3f\x1d\x80\x9c\xf3\x64\xca\x2c\xf8\xe9\xa6\xb3\xe0\xa7\x63\x01\xe4\x9c\x85\xde\x29\xf8\x79\x16\x68\x20\xd3\x8e\x6b\x2a\xd3\xf1\xa2\x73\x25\x16\x8c\x4c\x3b\x8a\x26\xa6\x83\x82\x9f\xe4\xca\xa7\x83\x82\x9f\x49\xa6\x6f\xc1\x4f\xb7\x2e\x99\x76\xa7\x1b\x12\xf7\xd7\x29\x73\xc3\xfd\x35\xd5\x42\x5e\xe8\x53\xeb\x59\xd0\xd7\xe9\x1d\x24\x73\xca\xf8\x28\xdd\x72\xaa\xcb\x2c\xe8\xbb\xa0\xc8\x7b\x07\x65\x59\xcb\x32\xf5\x50\x44\xa6\x1d\xc5\x61\xd2\x01\x92\x39\x65\x59\x20\x99\x53\x3d\x75\x79\xef\x19\x33\x68\xa6\x9d\x7a\x31\xee\x2f\xae\x30\x4a\x07\xee\xaf\x53\x6d\x09\x24\xd3\x36\xdb\x1a\xf7\x57\x52\x8c\x2d\xab\xb6\xd1\xc2\xfd\x75\x2e\x68\xe7\xde\xc1\xd3\x3d\xc8\x0d\x12\x58\xdc\xd3\xb1\xb5\x6f\xb2\xb6\xb8\xbf\xb0\xc3\xa6\x63\x93\x04\xeb\x6a\x52\x83\xa5\x28\x9c\xbc\xac\x5e\x46\x04\x5a\x29\xe2\x0c\x6b\xb0\xa8\x03\x11\xfc\x58\x92\xdf\x24\xf8\xb1\xf8\x5e\xac\x51\x51\x74\x6c\xbd\xeb\x31\x9f\x89\x1a\x2c\x05\x4c\x90\xa8\xc1\x52\xc2\x15\x97\x92\x97\xd5\xc3\x26\x12\xc1\x8f\x85\xd5\x4c\xd6\x60\x41\x87\x4d\xd4\x60\xe1\x4a\xde\x94\xa8\xc1\x52\xd8\x05\x89\x6c\xba\x32\xfc\x25\xf4\xa1\x4f\x27\x6a\xb0\x94\x40\xb0\x29\x81\x56\xb8\xae\x2d\x25\x6a\xb0\x94\xe1\x2f\x8d\xbb\xb6\x77\xe8\xbb\xec\x0f\xfa\xc2\xf3\x91\x12\x2e\xae\xc2\x7e\x49\xb8\xb8\x4a\xb8\xf0\x52\xc2\xc5\x45\xd9\xaf\x94\x70\x71\x95\x87\xf7\x70\x71\x95\xcb\x16\xf4\x5d\xd0\xc0\x55\x10\x05\x05\x29\x51\xd4\x93\xea\x22\x29\x71\x15\x44\xb9\x99\x41\x82\x1f\x29\xdf\x9a\x12\xc1\x8f\xe5\xf5\x9b\x14\x73\x80\x4f\xa4\x84\x9b\x2e\xf9\x15\x68\x88\x28\xaa\x94\x28\xdc\x89\xf1\x25\x25\x02\x1c\x0b\x3b\x2b\x11\xe0\x58\xd8\x59\xc9\xfb\x03\x17\x23\xfb\x14\xee\x9c\xb4\x82\x86\xca\xce\x4a\x14\xee\xe4\xa2\xe4\x94\xbc\x75\x1e\xd5\x26\x71\xdd\x43\xcd\x3f\xa9\x97\x9c\x12\x37\x41\x50\x61\x2d\x25\x62\x1f\x2b\xcc\x26\x71\x7d\xa0\x0c\x33\xe1\xc6\xe2\xe6\x90\x94\x70\x63\x71\xcb\x40\x4a\x40\x17\xec\xb7\x29\xe1\xc6\xaa\x6e\x10\xdc\x58\xe5\x62\x92\x28\xb3\x52\x01\xb7\x89\x32\x2b\x75\xfa\x0c\xf2\xdc\x66\x64\xc5\xd5\xce\x94\x71\xe9\x7c\x05\x8c\x25\xe2\x1b\xeb\xf4\x19\x34\x5c\xb6\xa0\xa1\x43\x11\xb0\x86\xf2\xda\x29\x01\x6b\xb8\x2d\x3b\x25\x60\x0d\x71\xbb\x29\x01\x6b\xaa\xdb\x05\x58\x53\x5f\xc7\x09\x7d\xe8\x47\x89\xac\xb8\x0a\x7b\x49\xc4\x37\x56\xb7\x20\xb0\xa6\xbe\xf4\x0e\xac\xa1\x76\x44\x4a\xc0\x1a\xae\x9e\x4d\x89\xf8\xc6\xe6\x76\x21\xbe\x91\x1b\xd2\x52\x02\xbb\x34\x74\xe6\x04\x76\xa9\xe8\x47\x09\xec\x52\xdd\x58\x60\x97\x96\x98\xb3\x02\x7d\x68\xe5\xc9\xac\xb8\xe2\x7b\xd4\x02\x00\xbb\x24\xee\x08\x4c\x1f\x1a\x48\x38\x3e\x19\x0b\xd8\xa5\xc1\x96\x12\xd8\x85\x60\xb6\x94\xc0\x2e\xcd\x3d\x01\x76\xa1\x46\x5d\x4a\x60\x17\xee\x59\x4b\x09\xec\xc2\xcd\x13\x29\x81\x5d\x1a\x08\x28\x81\x5d\x48\x35\x4d\x89\x5a\x2a\x4d\xc6\x40\x2d\x95\xe6\xee\x01\xd7\x34\xf7\x0b\xb8\xa6\x5d\x3e\x83\xbe\x69\x7f\xd0\x37\xec\x8f\xf8\x70\x99\x46\x35\xa1\x9a\x99\x00\xd7\x34\xc4\x4a\x02\xd7\x10\x54\x98\x12\xb8\xa6\xc9\x18\xc0\x35\xcd\xc3\x0f\xae\x69\xe8\x40\x89\x20\x46\xd2\x81\x53\x22\x88\x91\x7b\x3d\x52\x02\xf3\x34\x19\x11\x98\xa7\x3d\xf6\x0e\x7d\xaf\x5f\x81\xbe\xd7\xaf\x40\x1f\x46\x94\x04\xe6\x69\x32\x0d\x30\x4f\x73\x6d\xc1\x3c\x5c\x10\x9a\x12\x98\x87\xf2\xb4\x29\x75\xe3\x8b\xa1\xc8\xe2\x9c\xa0\xb1\x04\x1e\xea\xa8\x44\x09\x3c\x44\x28\x6b\x4a\xe0\x21\xf2\x02\x52\x02\x0f\xf5\xc4\xc8\x3a\x65\xc6\x92\xef\x75\x5a\xcc\x20\x01\x8e\x55\x56\x0e\x56\x22\xde\x2a\x25\xb0\x52\xcf\xfe\x92\x02\x95\xee\x48\xf0\x50\x3f\xed\x7d\xf3\x0c\x8a\xc0\x43\x1d\x3d\x3c\x0d\x0b\x8c\x42\xc3\x30\xc8\xcf\x5f\x42\x03\xda\x6e\x02\x2b\x71\x27\x4d\x4a\x60\x25\xf2\x2d\x53\x02\x2b\xf5\xe1\x57\xa0\x01\x8c\x95\xf0\x47\x75\x77\x16\x41\x8c\xd4\x36\x49\x09\x54\xd5\x15\x0f\xa4\xb7\xf5\x8b\x1d\x49\x10\x63\xbf\x7d\x0f\xfa\xdc\x13\x20\xae\x8e\xb9\x2c\x81\xb8\xe2\x36\xcf\x1f\xb3\x64\x00\xd7\x38\xe8\x00\xc0\xd5\xd1\xe3\x12\xd7\x00\x76\x74\xe6\x04\xe0\x1a\x2e\x1f\x80\x6b\x24\xc8\x03\x70\x0d\xf4\x87\x34\xbd\x86\x93\x6d\x0d\xe0\x1a\x40\xeb\x04\xe0\x1a\xcd\x67\x41\xde\x28\x7e\x93\xaa\xff\x6a\x05\xc4\x30\xde\x4e\xfc\xb4\x5c\x91\xef\x91\x82\x81\x0e\x94\x00\x5c\xa3\x33\x16\x00\x17\xb9\xeb\x29\x01\xb8\xc6\xed\x33\x42\xc0\x15\x01\x00\xae\xa1\x94\xd6\x1d\x75\x33\x13\x14\xd9\x1c\xa0\x87\x04\x18\x1b\xb7\xbf\x84\x3e\x35\x06\xc0\xd8\xf0\xb8\x03\xc6\x86\xcc\x1b\x30\x36\x3c\x70\x80\xb1\xe1\x61\x04\x8c\x0d\x8f\x1f\x60\x6c\xbc\x8e\x13\xfa\x94\xfc\x80\xb1\x81\xd9\x24\x01\xc6\x86\x4c\x1f\x30\x36\x64\xfa\x80\xb1\x21\xa3\x05\x8c\x91\x2e\x9b\x12\x81\x8a\x43\xc9\xcf\xad\x0d\xc3\x03\x0e\xfc\x9a\x07\xb3\x6b\xf8\xa1\x7b\x02\xf8\x35\x41\x2b\x09\xf8\x35\x15\x01\xe4\xac\x0d\x74\xed\x04\xc6\x9a\x58\xe7\x12\x38\x6a\xca\xca\xc1\x51\x53\x56\x0e\x8e\xe2\xbe\xea\x94\x70\x24\xe1\x12\x4d\x89\x6a\x26\x54\xf0\x4e\x09\x8c\x35\x15\x24\x8f\x85\x5c\x7c\xcf\xe8\x5f\xc6\x09\xc6\x9a\xd5\x1e\xa0\xc1\x7d\x06\xc6\xa2\x26\x4a\x4a\x60\xac\xd9\x98\x79\x30\xd6\x54\x58\x80\xb1\xa6\x87\x1f\x8c\x35\x31\x9e\x25\x43\x0c\x07\xeb\x07\xc6\x9a\x93\x3d\xf8\x62\x17\x05\xf3\xa4\x17\xbb\xa8\x3b\xeb\xb5\xe8\x39\xbb\x00\x8c\x35\x31\xa5\x25\xab\x99\x78\x6c\xc1\x58\x73\xd9\x1f\xf4\xb9\xd2\x60\xac\x39\xec\x2f\x68\xb8\x9c\x6b\x70\x14\xf7\x23\xa6\x04\x8e\xba\x30\x46\x26\x70\xd4\x25\x8b\x04\x47\x5d\x32\x68\x70\x14\x45\x75\x53\x02\x47\x5d\x32\x45\x70\xd4\xe5\xbc\x80\xa3\xae\xe2\x7b\x84\x7a\x3a\xbb\x60\xa5\x4b\x01\x4b\xa8\xe0\x35\x6d\xc5\x3a\x5c\x0a\x35\xb0\xd2\xa5\xb6\x4b\x12\x19\x31\x0f\x29\x91\x44\x76\x29\x0c\xc1\x4a\x17\x26\xa3\x04\x56\xba\xe4\x44\x60\xa5\xcb\x93\xb3\x2d\xa3\xcb\x0c\x82\x95\x2e\xcc\x42\x09\xac\x74\xc9\xcf\x08\x07\xbc\x0f\xc6\x62\xbd\x4a\xf9\x99\x37\xea\x29\x64\xc0\x4a\xb7\x7b\x17\xac\x74\x61\xbb\x4e\x60\xa5\x1b\x63\x4f\x02\x2b\xdd\xaa\x2f\x60\xa5\xdb\x7d\x0d\x56\xba\x31\xfc\x66\xb0\x52\x04\x18\xff\x90\x25\x67\x60\xd4\xcd\x32\x64\x60\x14\x95\x87\x53\x06\x46\xdd\x1c\x8e\x6c\xb9\xca\x66\x0b\xf2\xd8\xba\x19\xa8\x74\x77\xbf\x02\x79\xdd\xa1\x40\x5e\xf7\x3d\x52\x38\xd9\xe4\x99\x72\x95\x75\xd8\x82\xbc\xc8\x08\x4c\x19\xa8\x74\x0f\xbf\x09\x79\x68\xbb\xd9\x6b\xd8\x61\x05\x19\xa8\x44\xed\x88\x94\x8d\x06\x7c\xfc\x25\x34\x20\xc1\x33\x50\x89\x1a\xcc\x29\x7b\x0d\x3b\x5a\x6b\x06\x2a\xdd\x4c\x7c\x06\x2a\x51\x31\x2b\x65\xef\x3f\x58\xf6\xe7\x85\x88\x99\x16\xf4\xc1\xbc\x73\x82\x3e\xd8\x67\x06\x46\xdd\x11\x72\x94\x32\x30\xea\xde\xf6\x00\x7d\xdb\x6f\x42\x1f\xa6\x9f\x9c\xbd\xfa\x88\xaf\x00\x95\x1e\xb4\x97\x0c\x54\x7a\x92\xbf\xa4\xae\x58\xe6\x9b\x40\xa5\x27\x33\x32\xa0\xd2\x83\xab\x23\x93\xef\xc5\x2d\xdb\x29\x93\xef\x45\x45\xb7\x94\xbd\x4e\x1d\x56\x97\xc1\x43\x4f\xb5\x07\x6a\x6b\x55\x7b\xd8\xfc\x32\x0e\x7f\x36\xac\x0f\xd8\x9d\xc1\x43\x0f\x87\x38\x5b\x76\x12\xe3\x4b\xc6\x95\xb3\x38\xc4\x19\x3c\xf4\x00\xad\x33\x78\x88\x14\xea\x94\xc1\x43\x24\xa3\xa4\x0c\x1e\x7a\xa6\x3d\x50\x80\x09\xbd\x38\x83\x87\xb8\x1b\x32\x65\xf0\x10\x69\x01\x29\x83\x87\x48\xff\x4f\x19\x3c\xf4\xdc\xf6\x07\x7d\xb7\x3d\x40\xdf\xcd\x0e\x01\x0f\x3d\x88\xd4\x0c\x1e\xe2\x66\xb5\x94\xc1\x43\x8f\x7b\x09\x3c\xf4\x20\x44\x33\x78\x88\xaa\x1d\x29\x83\x87\x1e\x90\x4c\xb6\xec\x24\xc2\x30\x9b\xef\xb5\x7c\x16\xf4\xbd\x52\x0b\x1e\x7a\x96\xbf\xa4\x40\x11\x4c\x23\x83\x87\xde\xe4\xc8\x6e\x5a\x8e\xc5\xb0\x37\xbf\xf2\xf2\x8c\x35\xc2\x97\x43\x98\x5d\xca\xe0\xa1\x17\x76\x9d\xc1\x43\xdc\xce\x9d\x32\x78\xe8\x75\xf7\x80\x87\x5e\xd8\x75\x06\x0f\xbd\xa8\x60\x19\x3c\xf4\xa2\x33\x67\xf0\xd0\x0b\x40\xcf\xe0\xa1\xb7\xfa\x15\xe8\x73\x67\x81\x87\x5e\x54\xb0\x5c\xbd\xbd\xd0\xf7\xa0\x4f\xae\x01\x1e\x7a\xdd\x21\x86\xf5\x81\x67\x33\x78\xe8\x1d\x8e\x1a\xfa\x86\xfd\x41\x1f\xe6\x96\x0c\x1e\x7a\x11\x9b\x19\x3c\xf4\x62\x60\xc9\xd6\x96\x44\x95\xca\xe0\xa1\xf7\xf6\x97\xd0\x87\x79\x27\x7b\x59\x81\x3b\x04\x3c\xf4\xba\x7b\xc0\x43\xaf\x1c\x05\x3c\xf4\x3e\x7e\x05\xfa\x50\xc8\x32\x78\x28\x6e\x18\xff\x31\x4b\x06\x2a\xbd\xc8\x91\x0c\x54\x7a\x71\x52\x64\xa0\xd2\x2b\x43\xf1\x3a\xf5\x2d\xb1\x90\x8e\xbd\x38\x03\x95\x96\x9b\x07\xa8\xb4\x5c\x4c\xa0\xd2\x72\x31\x2d\x20\xe2\x96\x00\x2a\x2d\xb7\x0b\x70\x88\xca\xbc\x29\x7b\x65\xba\x32\x06\x38\xb4\x14\x1d\xc0\xa1\xe5\x42\xe3\x3a\xe2\xc6\xe1\x94\x71\x1d\x71\x0b\x6e\xca\x40\x25\x82\xe8\x53\xee\xa6\x03\x43\x03\x50\x69\x01\xb4\x33\x50\x69\xe1\xbe\xcc\xc3\xc0\x6e\x68\xa0\x7c\xe4\x72\x19\x86\x35\xce\xf8\x26\x70\x68\x01\x79\x32\x90\x67\x01\x59\x33\x90\x67\xc9\xe6\x81\x3c\xa4\x6c\xa7\x0c\xe4\x59\xce\x3c\x90\x87\x3b\x46\x52\x06\xf2\x70\x1f\x48\xca\x38\x92\x96\x22\x00\x5c\xb3\x16\x33\x08\x76\x59\x8b\x91\x81\x5d\xd6\xf6\x19\xf3\x29\x9b\x07\xbb\x2c\x05\x82\xf9\x57\x1b\xda\xbd\xa7\x1c\x37\x5d\xf6\x9e\x72\x0c\x25\xd9\x7b\xca\x0f\xbf\x42\x65\x07\xb4\xac\x6c\x65\x8e\xea\x38\x89\x02\x95\x31\x5c\xa6\x57\xb3\xb6\x60\x97\xed\xba\x83\x5d\x36\x3a\x49\x06\xbb\x50\xd9\x2b\x65\xb0\xcb\xce\x7c\x13\xec\x42\x08\x7f\xca\x60\x97\xad\x58\xf1\x82\x80\xe2\x33\x4a\x59\xca\x18\xac\xcc\xe1\x0e\x01\xbb\x50\x24\x2b\x65\xb0\xcb\x56\xf1\xb8\xa4\xc1\xde\xa1\x01\xe0\x9b\xc1\x27\xbb\x31\x16\xf0\xc9\x96\x69\x80\x4f\x36\x76\xdf\x0c\x3e\xd9\xaa\x0c\xb7\xf7\xe3\xb0\x62\xe0\x93\xed\x7e\x01\x9f\x10\xe7\x9d\xf2\x0d\x0d\x2a\x25\xb7\xe5\x38\xed\x1d\x1a\x64\x44\x20\x99\x8d\xb1\x2e\x83\x64\x36\xa6\xc2\x0c\x92\x31\xc6\x22\x5b\x7d\xc3\x1d\x79\x5b\xc2\xc0\x67\xd0\x77\x41\x91\x97\x00\xb8\xaf\xbd\x04\xc0\x1d\xe9\x25\x00\x9b\xf5\xf3\x12\x00\x55\x14\x50\xce\x76\xbf\x3c\xd0\xe7\xae\x03\xe5\x6c\xf7\x2e\x35\x1b\x75\xa8\x67\x50\xce\xc6\xc0\x92\x1f\xae\xae\xca\xbe\x17\x31\x55\x07\x48\x26\x07\xca\x69\x87\x5c\x83\x70\x39\x2e\xa2\x48\xf9\x21\xa6\xca\xfd\x12\x28\xa7\x1d\xb8\x2f\xb3\xd5\x37\xf0\x16\x65\xaa\x6f\x1c\xf2\x17\xaa\x6f\x1c\x0a\x35\xaa\x6f\x10\x4c\x9a\x32\x89\x54\x5c\xe2\x90\x32\xd5\x37\x28\x2c\x9b\x32\xe1\x72\x07\x4e\xf3\x4c\xb8\x9c\x01\x0a\x99\x70\xb9\xc3\x1d\xe9\x5d\xe4\xcd\x67\xd0\xe7\x0e\x21\x91\xea\xa8\x3f\x8b\xb8\xc8\xe4\x58\x91\x90\x91\xb2\xb7\xca\xa9\x3b\x79\xab\x1c\xce\xa9\x4c\x39\xc7\x03\xd3\x75\x26\xc7\xca\x68\x8c\xcc\xad\x72\x87\xcc\x8d\xc2\x1c\xdc\x15\x9c\x32\x85\x39\x8c\xa3\xc8\xdc\x0f\x70\x60\x7d\xcc\xdc\x0f\x70\x78\x1c\x16\xa4\x03\x0c\x33\x39\x56\x24\x23\xa7\x4c\x39\x47\xee\xe5\x4b\x99\xea\x1b\x87\x07\x80\x1c\x2b\xe3\x2f\x32\xe1\x72\x87\x32\x94\xfb\x01\x0e\x35\x29\x42\xe2\x8e\xe9\xc8\xa0\x01\x4f\x6a\xb6\x64\xe3\xe0\x97\xe6\x51\xc9\xf8\x36\x34\xa8\x87\x6f\x68\xc0\xb5\x99\x29\xf4\x7f\x28\x0b\xb7\x75\xa9\xe8\xdd\x0a\x1b\xb2\xc1\xed\xf6\x84\x22\x2a\x6c\x70\x95\x4d\xca\x1b\x1a\xf0\xdc\x66\x4a\x36\x1e\xaf\xfd\x91\xc2\xe9\x3a\x70\x15\xb9\xd1\x18\x99\x92\x8d\x5c\x21\x9b\x4e\xab\x68\x60\x61\x3c\xa9\xa2\x41\x45\xdf\x74\x72\xa7\xf8\x81\xae\x76\x06\x02\x6a\x09\x46\x7b\x92\x2b\x65\xdc\xc6\x79\x40\x03\x87\xf1\x3c\xbc\x5d\xcc\x67\x54\x22\x40\x70\x9d\x94\x5e\x4c\x00\xb5\x93\xd2\x8b\x09\xad\xfc\x04\x01\xa5\xec\x2f\x19\x67\xb1\xf7\xc5\x7b\x9b\xd6\xa6\x15\x3b\xe4\xa4\x60\x7f\xca\xb6\x88\xaa\xc5\xca\x7d\x72\x03\x5c\xc2\x60\x75\x26\x68\x60\x9f\x9d\x24\x3d\xa5\xe2\x2f\x49\x7a\x82\x7d\x9e\x24\x3d\x25\x0e\xc7\x49\x2a\x13\x15\xf2\xd2\xc9\xbd\x6e\xa9\xfb\x1e\xa3\x26\xf4\xeb\x4c\x8c\x1a\x64\x78\x26\x46\x0d\x26\x38\x29\xc3\x9f\x10\xf6\x27\x65\xf8\x13\xc2\xe9\xa4\x0c\x7f\x02\x67\x9c\x94\xe1\xa7\x66\x48\x3a\x29\xc3\x9f\x60\xa6\x67\x66\xd4\xb8\x60\xcf\x6c\xaa\x16\xe3\xa4\x6a\x22\x15\xca\xd3\x49\xd5\x44\x92\x7b\xd2\x49\x19\x7e\x4a\xef\xa4\x33\xb3\x2a\xc3\x16\xf4\xc1\xd8\x4f\xca\xf0\x27\xd0\xc3\x99\xad\x15\xcd\x8a\x65\xe8\x7b\xec\x01\xfa\x1e\xbf\x02\x7d\xe8\x7f\xe7\x09\x7d\xf8\x3a\x4e\xea\x5f\x50\x07\x3c\x9d\xa4\x39\x51\x4e\x35\x9d\xa4\x39\x51\x87\x2e\x9d\xa4\x39\x25\xcc\x81\x27\x69\x4e\xdc\x2d\x93\x4e\xea\x5f\x90\xf5\x97\x4e\xd2\x9c\xa8\xc0\x9e\x4e\xd2\x9c\x48\x73\x4f\xa7\xf5\x2f\x96\x3d\x40\xdf\xf6\x19\xf4\xb9\xaf\xa9\x7f\x91\xdc\xf3\x94\xe1\x4f\x88\x80\x93\xdb\xc0\xa9\xd9\x98\x4e\x6e\x03\x4f\xb8\x98\xcf\x22\x7d\xcc\x4b\xa1\xfe\x8c\xe7\xa8\x50\x8f\x1d\x94\x7a\x72\xe3\x37\xd7\x03\xa7\x93\x1b\xbf\x8d\x6e\x39\x49\x65\xe2\x92\xda\x74\x9a\xca\x94\xfc\x66\xd0\x90\xf3\x4f\xe2\x92\xd3\x69\x8d\x0b\x2c\x23\x27\xa1\x6d\x86\xc1\x9c\xd4\xb8\xa0\x04\x7a\x3a\xa9\x63\x91\x91\x07\x27\x75\x2c\x32\x5a\xc8\xf9\xb9\x9f\xcd\x16\xf7\x7b\xc1\xbc\x4f\xef\x67\x23\x0e\xf3\xe4\x7e\xb6\x8c\x2c\x3c\xb9\x9f\x2d\x37\x96\x96\x4c\xa6\x8c\x63\xee\xa4\x30\x62\x46\xd3\x38\x29\x8c\x48\xce\x4c\x3a\x29\x8c\x48\x35\x85\x74\x56\xc6\xe9\xb6\x26\x5b\x89\x3b\xf4\xd2\x49\xb6\x52\x1e\x8e\x05\x1a\xdc\xd6\x0d\x1a\xb0\x49\x9d\x0d\x1a\xb0\xf4\x9e\x0d\x1a\x00\xbe\x27\x25\xf3\x33\xfa\xed\x69\xc9\x7c\x17\xba\x59\x7c\x94\xde\xc9\x56\x2a\xf6\x4e\xc9\xfc\xec\xd6\x6d\xd6\x95\x85\x3e\x8a\x1f\x66\x8f\x83\x75\x2c\x3c\x0e\xd4\xb1\xc8\xd8\xd5\x4e\xea\x58\x90\xb4\x99\x4e\xea\x58\x90\x46\x92\x4e\xea\x58\x64\x0f\x0e\x37\x77\x9f\x6e\x17\x6f\xee\xc6\x3d\x74\x72\x73\x77\x96\xb5\x72\x07\xdb\x29\xc3\x34\x5b\x09\x5b\xf2\xc9\x1d\x6c\x46\xc5\x9c\x14\x3f\xcc\x58\xa4\x4f\x8b\x1f\x82\x8e\x4e\xb2\x95\x4e\x8c\x1a\x67\xb7\xb8\xa3\xfd\x51\x37\x17\x41\x72\x52\xfc\xb0\x24\x47\x46\x2d\x95\xe2\x37\x83\x3e\x23\x43\xce\xc0\x35\xed\x1c\x7e\x85\xdb\x56\x86\x3d\x40\x9f\xec\xc5\x9b\xbb\x01\xb7\x27\x29\x49\x27\x16\xdb\x93\x9b\xbb\x4f\x9c\x7d\xe7\x80\x3e\x77\xcf\x80\xbe\xe9\x33\x2e\x7a\x42\x18\x9e\xd4\xb1\x38\x65\xd7\xdc\xc1\x66\x1c\xcc\xc9\x1d\x6c\x27\x66\x8c\x93\x94\x24\x0a\xdc\xa4\x93\x94\xa4\x13\xcf\xc7\x49\x4a\xd2\xe9\x9e\xa0\x64\xfe\x29\x43\xa1\x64\xfe\xe9\x8a\x51\xc7\xe2\xc4\x8e\x7e\x52\xe1\xf0\x94\xd9\x70\xd1\xda\x89\xe3\xf8\xe4\xa2\xb5\x92\x7c\x16\xf4\x15\x45\x15\x37\x77\x17\x05\x33\x75\x2c\x0a\xa6\xad\xd3\x9b\xbb\xb3\xcf\xd8\x9f\xa7\x2d\x8a\x8f\xe2\x03\x3a\xa9\x63\x51\x30\x86\x9c\xdc\xdc\x5d\x14\xb0\x94\xcc\x27\x5f\x2f\x9d\xa4\x24\x95\xe6\x2f\x1f\x5a\x3e\xe3\x4a\x00\x57\x65\x52\xa7\x43\x3e\xe1\xcd\xdd\x72\x9b\x8b\xdb\x64\x26\x33\x7f\x41\x1f\xee\xb6\x93\x0a\x87\xc6\x74\x9c\xd4\xb1\x28\xb8\xe5\x4f\xea\x58\x14\x90\xc5\x49\x1d\x0b\xe3\x2f\xce\xcb\xf3\x67\x0f\x9d\x16\xb3\xcb\x45\x6b\xe5\xf1\x9b\xd0\xe7\xa9\xa2\xc2\x61\xf1\xbc\x53\xc7\xc2\x28\x8e\x93\x3a\x16\xc6\x82\x9c\xd4\xb1\x28\x9e\xa3\x0b\xfa\x96\x5f\x89\xbc\x8e\x0c\x86\x3c\xb9\x4c\x2d\x2b\x52\xa9\x62\x58\xd6\x4f\x6a\x5c\xa4\x93\x8b\xbb\x8b\x07\xee\xe6\x8a\x40\x35\x14\x2a\xe6\x17\x37\x08\xb5\x2a\x8a\xf2\xe7\x86\x3c\xcc\x18\x27\x19\x49\x06\x8d\x9c\x64\x24\x55\x65\xcc\x0d\x79\xca\xa6\x1b\xeb\x31\x56\xa8\x93\x5a\x15\xd5\x83\x6a\x81\x43\x2c\xa8\xe7\xed\xf2\xd1\x1f\x19\x49\x95\xd0\xb6\x93\x8c\x24\x2a\x51\xa5\xd3\x22\x86\xc4\xdf\x9e\xdc\xa5\x56\xdd\x74\xd4\xa3\x30\x6a\xe4\xe4\x06\xee\x5a\x7c\x8f\x4a\x69\xc5\x67\x64\xfd\x55\xdf\xb3\xf4\x36\x63\x01\x46\x55\xd9\x0b\x30\xaa\x56\xdf\x83\x06\xc5\x11\x30\xca\x48\x94\x13\x18\x55\x71\x74\x9e\xc0\xa8\x8a\x1d\xfd\xe4\xbe\xb4\x5b\xcd\xc6\xf2\xf6\x32\x5a\xa0\x92\x91\x28\x27\x50\xa9\xca\x88\x80\x4a\x15\xcb\xd6\x09\x54\xaa\x6a\x28\x40\xa5\x2a\x2b\x00\x2a\x91\xd2\x92\x4e\xf0\x90\x91\x21\x27\x78\xa8\x2a\x10\xc0\x43\xd5\xad\x0b\x1e\xe2\xc6\xb2\x74\x82\x87\x2a\x36\xd3\x13\xcc\x53\xdd\x90\x60\x9e\x2e\x7d\xde\xa4\x8d\x5b\xf0\x04\xf3\x34\xf5\x70\x30\x4f\x55\xf3\x06\xf3\x74\x75\x58\x70\x8d\xf1\x1e\x27\xb8\xa6\xb9\x27\xb8\xf7\xac\xc9\xbc\x0d\x9e\x53\x13\x06\xf3\xb4\xe2\xc8\x36\x2d\x46\x06\xe6\x69\xae\x0a\x98\xa7\xb9\x2a\x60\x1e\x23\x43\x4e\x70\x4d\x53\xdb\x25\xd5\xa7\x61\xda\x3a\xc1\x35\x0d\x1f\xc9\x09\xae\x69\x8a\x77\x70\x4d\x93\x31\x80\x6b\x9a\x82\x04\x5c\xd3\x14\x01\xe0\x1a\x2e\xa4\x4a\x27\xb8\xa6\x4d\xdf\x83\x86\xe9\xc8\xa0\x81\x15\x2b\x60\x9e\x86\x6b\xba\x80\x79\xda\x63\x0b\x1a\x10\x0f\x05\xcc\x63\x64\x48\x01\xf3\x50\x60\x20\x15\x30\x4f\x03\xe1\x15\x30\x4f\xc3\x38\x51\xa8\x0f\xd1\x60\x60\x85\xfa\x10\x0d\xf4\x57\x0e\xef\x86\xdc\xb4\xa0\x6f\xf9\x1e\xf4\x2d\xc7\x02\x7d\xdb\xf7\x0c\x70\xac\xb4\xa0\x0f\xed\xba\x80\x87\x3a\x8c\xbd\x80\x87\x8c\xdb\x28\x56\x0e\x44\xa7\x2c\x54\x07\xec\x9c\xdb\x02\xe6\xe9\xd9\x67\xd4\x28\x71\x64\x16\x7a\x38\xfd\x0a\x85\x1e\xd8\x05\x85\x42\x0f\x7f\xff\x0a\xe5\x9f\xe0\x13\x05\x74\xd4\x8b\xef\x51\xbe\xab\xda\x03\xe5\x91\x50\x1c\x0b\xe8\xa8\x83\xe5\x0b\x08\xc8\xb8\x8d\x02\x02\xea\xec\x90\x02\x02\xea\x97\xcf\xa8\xd3\x81\x8a\x59\x40\x40\xfd\x67\xc5\x39\x53\xb1\xa4\xfc\xf0\x35\xc8\x03\xbc\x17\x2f\xbd\xc6\x89\x56\x00\x47\xfd\x82\x58\xc0\x51\x27\xae\xa1\x00\x8e\x3a\x6c\xa2\x00\x8e\x3a\x6c\xbe\x00\x8e\x3a\x50\xbe\x00\x8e\xfa\xb2\x3f\x96\x08\x4b\x53\x01\x1c\x75\x17\x1a\x70\xd4\xdd\x4a\x80\xa3\x8e\x2d\xab\x00\x8e\x3a\x2e\xb5\x02\x38\xea\x58\xaf\x0a\xe0\x88\x02\x29\xa9\x50\x03\x82\x3b\x38\x52\x01\x1c\x75\x37\x39\xe0\xa8\x3f\x3e\x83\x3e\xd8\x59\x01\x1c\x51\xbe\x3f\x15\x4b\xca\x4f\x46\x0d\x38\x1a\x6e\x1e\xc0\xd1\x70\x69\x01\x47\x23\xdb\x03\xd5\xad\xb0\x80\x17\xc0\xd1\x80\xb1\x17\xc0\x11\x35\xf1\x52\xa1\xa4\xfc\x40\x9b\x28\xe1\x2c\x6a\xc3\x79\x01\x38\x0d\x04\x50\x01\x38\x0d\x37\x08\xc0\x69\x34\x7f\xc9\x45\x56\x00\xf4\x02\x70\x1a\xd8\x30\x0b\xc0\xc9\x68\x93\x52\x4c\x34\xb7\x15\xf4\x8d\xcb\x91\x41\x1f\x58\xa2\x50\x01\x70\x4c\x9f\x41\xdf\x74\x2c\xd0\x07\x93\x2a\x20\xa7\x0b\x50\x5c\x40\x4e\xc6\xba\x14\x90\xd3\xc0\x3c\x50\xaa\xf4\xb1\x7b\x40\x4e\x03\xdb\x67\x01\x39\x19\xf9\x52\xaa\xd9\x90\x8c\x13\xe4\x34\x30\x66\x95\x2a\x7d\xf6\x37\xf9\x25\xfb\x93\x92\xf2\xe3\xf1\x2b\x37\xcf\xd8\x4b\xa0\x2a\xe3\x59\x0a\xa8\x8a\xc2\x54\xa9\x80\xaa\x26\x3a\x65\x01\x55\x51\x5b\x21\x15\x50\xd5\x04\x83\x14\x50\xd5\x00\x68\x17\x50\xd5\x00\x1d\x15\x50\xd5\x70\xf7\x80\xaa\xa8\xe4\x92\x0a\xa8\x6a\xca\x42\x40\x55\xd4\x2d\x4c\x05\x54\x35\x0f\xbf\x02\x7d\xaf\x5f\x61\xfd\xd0\xb5\x0b\xa8\xca\xe8\x96\x02\xaa\x32\x7e\xa6\x80\xaa\x86\xac\x15\x54\x65\xdc\x4d\x69\xd2\x07\xed\xa0\x2a\xae\xd1\x4f\x05\x54\xc5\x15\xfb\xa9\x80\xaa\x26\x4a\x50\x01\x55\x4d\x4c\x5b\x05\x54\x35\x3c\x2b\xa0\xaa\x89\x01\xa2\x80\xaa\xa6\x7b\x10\x54\x35\xf1\x2f\x14\x50\x95\x11\x2c\x05\x54\x35\x41\x24\x05\x54\x45\xf5\xbc\x54\x40\x55\xd3\xb5\x05\x55\x51\xac\x36\x15\x50\xd5\x3c\xed\x8f\xf5\x73\x67\x81\xaa\x26\xa6\xad\x02\xaa\x9a\x9e\x15\x50\xd5\x04\xf5\x17\x50\xd5\xc4\x6b\x50\x40\x55\x53\x96\x0c\xaa\x9a\x88\xf0\x02\xaa\x32\xd2\xa6\x80\xaa\xb8\xb5\x3c\x15\x50\x95\xf1\x33\x05\x54\x35\x3d\x01\xc3\xea\x79\xf6\x07\x7d\xf7\xcf\x6c\xc9\x05\xc0\x35\x95\xcb\x00\xae\x89\x5d\xb4\x00\xb8\xa6\x92\x18\xc0\x35\x65\x60\x38\xa0\x6e\xc2\x75\x0a\x80\x6b\x7a\x00\x00\x5c\x53\x16\x09\xe0\x9a\x40\x82\x02\xe0\x9a\x68\x75\x05\xc0\x45\x69\x93\x54\x00\x5c\x97\xb2\x10\xc0\x35\xb1\x88\x15\x00\xd7\xf4\xd8\x4e\x73\xd0\x59\x68\x0b\x07\x02\x80\xca\x94\x74\x96\x08\xc0\x35\x65\xde\x00\x2e\x83\x8c\x0a\x80\x8b\x4b\x40\x53\x01\x70\x5d\xc9\x71\xb2\xb4\x18\x27\x8a\x77\x94\xa1\xff\x15\x00\xd7\xf4\x00\x00\xb8\x26\x78\xa1\x00\xb8\xa6\x87\xd1\x3b\xca\xd0\xfb\x0b\x80\x6b\xde\x50\x04\xe0\xba\x64\xec\xde\x51\x86\x1f\xbe\x00\xb8\xa8\x90\x97\x0a\x80\x8b\xc2\xf4\xa9\x5c\x5e\x09\xe0\x58\x2c\x29\x6f\xef\x88\x0e\x57\x13\xc0\x75\x79\xa8\x2e\xe9\xb3\x15\xf4\x5d\xc5\x1e\x36\xdf\x64\x3e\xa9\x0e\x78\xa1\xfb\x16\xee\x28\xbb\x64\x21\xde\x6c\xed\xa1\x02\x8c\x5d\x58\x96\x0b\x88\xcb\xd0\xa8\x02\xe2\xba\x3c\x0e\x20\x2e\x4a\xa7\xa7\x02\xe2\xba\x8a\x5f\x19\xf4\x60\x0b\xfa\x64\x91\x20\xae\x0b\xdf\x77\x01\x71\x5d\xb2\x64\x10\xd7\xe5\x9e\x00\x71\x5d\xe8\xa2\x05\x54\x75\x4d\x46\x46\xd9\xf8\x96\x6c\x41\x83\x3b\xf2\x81\x06\x77\x24\x88\xcb\x50\xac\x02\xe2\xba\x54\x0b\x40\x5c\x97\x82\x12\xc7\xd5\x05\x2c\x2d\x20\xae\xcb\x7d\x06\xe2\xba\x30\x82\x15\x10\xd7\x45\x68\x62\x01\x71\x5d\xc4\xb5\x96\x4f\x9d\x07\x5b\xd0\xb0\x6c\xb1\x46\xdb\x71\xba\x07\xd9\x4b\x5c\x36\x66\xe4\x7a\xc1\x71\x75\x81\x52\x0b\x8e\xab\xdb\x3d\x81\xe3\xea\xfe\xfc\x32\xb4\xcf\x1b\xf7\x57\x01\x8d\xdd\xc4\x66\x14\xd0\xd8\xed\x3a\x80\xc6\x6e\x75\xca\x97\x0a\x79\x18\xdd\xca\x6b\x89\x27\xd6\x36\xd0\xd8\x1c\xaa\x3d\xa0\xb1\xdb\x3d\x01\x1a\x33\x10\xac\x80\xc6\xb8\x53\x32\x15\xd0\xd8\x8d\xd9\xab\x58\x01\xd0\xfd\x82\x77\xea\x96\x41\xe3\x9d\xba\x31\x7e\x16\xcb\xc6\x83\x6b\x0a\x48\xed\x96\xb5\xe2\x65\xba\xdd\x05\x78\x99\x8c\xd3\x2a\x16\x65\x70\xf7\x80\xc6\x6e\xd0\x4a\x01\x8d\xdd\xf2\x10\xd0\xd8\x8d\x2b\xb5\x80\xc6\x6e\xe2\x92\x0b\x88\xeb\x26\xcf\xa2\x80\xb8\x6e\x59\x32\x5e\xa6\xdb\x13\x8e\x97\xe9\x76\xbf\x80\xc6\xee\xfb\x67\xd9\x7b\x05\xa0\x76\x0b\x79\x00\x6a\xb7\xd2\x0f\xa0\x76\x63\x8c\x2f\x00\xb5\x5b\x76\xbd\xbd\x18\xc5\x81\x41\x9e\xba\x2f\x40\xcd\xd0\xaf\x02\x50\x33\xbc\xab\x00\xd4\x6e\x65\x76\x00\xb5\xb9\x60\xfa\x15\xa0\xf6\xa0\xcb\x54\xc0\xd8\x03\x8b\xac\x80\x31\x8a\x1f\xa6\x0a\x18\x7b\x60\x36\x15\x30\xf6\x54\xbf\xc2\xe5\x51\x98\x1c\x2a\x60\xec\x81\x4d\x54\x8b\xf5\x21\xe1\xea\x61\xb5\x30\x9f\x71\x43\x06\x0b\x56\x01\x63\xcf\xf4\x97\x14\x03\x45\x4e\x56\xc0\xd8\x33\x1d\x19\xb5\xa2\x91\xe7\x15\x30\xf6\x60\x1d\xaf\xde\x26\x0d\x40\xaf\x38\xa7\x28\xea\x94\x2a\xce\xa9\x07\x66\x53\x71\x4e\x51\xb5\x23\x55\x80\xda\x83\x79\xa0\x02\xd4\xb8\x79\x22\x55\x80\xda\x83\x93\xb0\x02\xd4\x1e\x34\xa9\x0a\x50\x33\x84\xab\x02\xd4\x9e\xd7\x5f\x42\xdf\xe5\x38\xa1\xef\xb6\x07\xe8\x73\x1d\x00\x6a\x0f\x7a\x6a\xf5\x36\x69\xcc\x18\x35\x5b\x0b\x7b\xd3\x82\x3e\x8c\x1a\x15\x10\x67\x08\x57\x05\xc4\x19\x8a\x55\x33\x65\xce\x41\x08\x15\x10\xf7\xc2\xe6\x2b\x48\xed\xcd\xf6\xd0\x79\xe6\x2f\x29\xf9\x02\x9b\xa8\x20\x35\x43\xb1\x2a\x48\xed\x3d\xa1\x16\xa4\xf6\x92\xca\x54\x41\x6a\x2f\x6c\xa9\x82\xd4\x5e\x44\x4e\x05\xa9\xbd\xcd\x5f\x72\x03\x08\x36\xcc\x0a\x52\x7b\x31\x6a\x54\x90\xda\x8b\x77\xbd\x82\xd4\x5e\xb4\xc1\x0a\x52\x7b\xab\x2d\x6e\xc8\xc0\x70\x51\x41\x6a\x2f\x07\xbc\x82\xd4\x8c\x56\xa8\x20\x35\xae\xfb\x4f\xd5\x6a\x7d\xdb\xaf\x50\xad\x2f\xf9\x2c\xe8\xa3\x5e\x5e\xaa\xa7\x25\xb3\x7c\x66\x49\x29\xd6\x1d\xa4\xf6\x62\x56\xa8\x20\xb5\x17\x41\x52\x41\x6a\x2f\x67\xba\x82\xd4\x28\xb5\x9a\x2a\x48\xed\x45\x90\x54\x90\xda\xfb\xf8\x0c\xfa\x50\x5f\x2a\x48\xed\xc5\xb4\x55\x41\x6a\xaf\xfb\x0c\xa4\xf6\x22\x10\x2a\x48\xed\x75\x4f\x80\xd4\x5e\x69\x07\xa9\xbd\xaf\xef\xb1\x7e\xee\x17\xab\xf5\x2d\xc7\x42\x1d\x62\xe2\x6e\x2a\x48\x6d\x35\x9f\x2d\x9e\xd9\xda\xcc\x19\xfd\x81\xd4\x16\xea\x44\x05\xa9\x19\x6f\x55\x41\x6a\x0b\x5f\x47\x05\xa9\x2d\x79\x08\x48\x6d\xa1\xb1\x57\x90\xda\x72\x47\x82\xd4\x16\xd6\xf1\x5a\x2d\x36\xcc\xc8\x40\x6a\xcb\x5d\x0e\x52\x33\x4a\xac\x82\xd4\x16\x91\x1a\x15\xa4\x16\x51\x62\x3f\x64\xc9\xb5\x4a\x3a\x53\x06\x88\xe3\xfa\xce\x54\x01\x71\x5c\x95\x9f\x2a\x20\x6e\x79\x38\x00\x71\x16\xa3\xa9\x80\xb8\x85\xe4\xaf\x80\x38\x0a\xf8\xa4\xda\xac\xd3\xcb\x94\x01\xe2\x16\x26\x8e\x0a\x88\x5b\x32\x1b\x40\xdc\x92\xd9\x00\xe2\x16\xd2\xa8\x02\xe2\x2c\x23\x53\x9b\x85\x26\xed\xdd\x32\xd2\xfe\x12\x1a\x70\x0c\x54\x80\x9a\x25\x66\x2a\x40\x8d\xca\x65\xa9\x02\xd4\x0c\xa9\xaa\x00\x35\xc3\xb4\x2a\x37\x46\x1f\x84\x54\x55\x80\x9a\xa1\x66\x15\xa0\x66\xc8\x58\x05\xa8\x19\x32\x56\x01\x6a\x94\xf1\x4c\xd5\x62\x7d\x68\xd0\x15\xa0\xb6\x4f\x7b\x80\x06\x99\x1b\x40\x6d\x9f\xfe\x92\xe5\xf3\x70\x00\xd4\xb6\x5b\x09\xa0\xb6\xd1\x76\x2b\x40\xcd\xe2\x37\x15\xa0\x66\x71\x98\x0a\x50\xdb\x04\xf2\x55\x80\xda\x46\xbf\xad\x00\xb5\xad\x90\x01\xa8\x6d\x9c\x68\x15\xa0\x66\xc1\x99\x0a\x50\xb3\x4c\x4e\x05\xa8\x71\x2d\x66\xaa\x00\x35\x83\xc4\x2a\x40\xcd\xd0\xaf\x0a\x50\xe3\x86\xb4\x54\x41\x63\xbb\xda\xfb\xcd\x2f\xa1\x08\x34\x66\xe8\x57\x05\x8d\x6d\x57\x0c\xf7\x17\xd7\x68\xa5\x0a\x1a\xe3\x96\xe6\x54\x41\x63\xfb\xb2\x05\x7d\x18\xd6\x2a\x68\x6c\xa3\xd9\x54\xd0\xd8\xc6\x88\x52\x41\x63\x5b\x26\x05\x1a\xdb\xee\x5d\xd0\x98\x65\x72\x2a\x68\x6c\xcb\x42\x40\x63\xdb\x5d\x00\x1a\xb3\xbc\x4e\x05\x8d\x59\x42\xa7\x82\xc6\x0c\x0b\xab\xa0\xb1\x2d\xb3\x01\x8d\x59\x5e\xa7\x52\x91\xef\x38\x1c\xd9\xa6\xc5\x33\xd0\xd8\x96\xd5\x5d\x5c\x05\xe1\xfe\xbc\xd8\x9f\x87\xad\x93\x16\xa3\x06\x8d\x59\xee\xa6\x72\xc1\x97\x81\x60\x95\x0b\xbe\x2c\xd2\x53\x41\x63\x1b\xd0\x5f\x29\xe3\x7e\x78\xde\x03\x8d\xf5\x03\xaf\x4f\x0d\x34\xd6\x0f\x59\x4f\xa0\xb1\x7e\x60\x02\xa8\xde\x18\xed\xfe\xe4\x82\xaf\xc3\x9d\xcc\x05\x5f\x47\x75\x9c\xd0\xa7\x30\xa4\x22\x1f\xd7\xbc\xa5\x4a\x45\x3e\xa3\xa1\xea\x0d\x7d\x9e\x7e\x6a\xb5\x1b\xf5\x53\xb9\xe0\xeb\x00\x9f\x54\x2e\xf8\x32\x1a\xaa\xde\xd0\xe7\x0e\x09\x34\xd6\x0f\xd5\x90\x1b\xfa\x5c\x5b\x6a\xb5\x1f\x28\x9c\xf5\x86\x3e\xd5\x97\x1b\xfa\x14\x2b\xd4\x6a\xb7\x1a\x4d\xb5\x22\xdf\xf6\x97\x64\xc1\x26\xc7\xb2\x69\xf1\x4b\x2e\xf8\x32\x5e\xa7\x5a\xab\xbd\xfe\x2c\x55\xa4\x52\xc6\x3d\xe1\xa4\xa8\x16\xeb\xf3\x00\x50\xac\xcf\x12\x33\x95\x1c\x2b\x8b\xd1\xd4\x00\x71\x3d\x55\x7f\xd9\xf9\xa5\xcf\x06\xdf\x84\x74\xea\x58\x24\xe0\x57\x7d\xa8\xd3\x0b\xb0\xa8\x01\xe2\x7a\x52\x9b\x78\x20\xfd\x72\x2c\x14\x93\x74\xe2\x1f\x13\x80\x61\x3d\x0f\xa4\x7b\xc4\x5e\x48\x57\xc7\x7b\x21\x5d\x79\x4e\x19\x77\x43\x79\xea\x0b\x7d\x1e\xa3\x17\xfa\x1e\xdf\x83\x3e\x2c\x70\x95\x32\xee\xc9\xe3\x47\x19\xf7\x84\x39\xa2\x02\xe2\x2c\x07\x53\x5f\xe9\xf3\x97\xd0\xa7\xd6\x43\xb1\x3e\x83\x70\x2a\xc5\xfa\x0c\xa6\xa9\x01\xe2\x7a\x4e\xf6\xb7\x68\x31\x4b\xdc\x18\x9d\xb1\xf8\x55\xca\xb8\x67\x35\x06\xca\xb8\x73\x49\x66\xaa\x94\x71\x37\x2a\xa6\x52\x91\x2f\x7b\x1c\x28\xc7\x9e\xff\x5f\xc2\xce\x2c\x69\x76\x96\x57\xd6\x53\xf9\x87\x60\x83\xe9\x22\x4e\xec\xb9\xd0\xce\x7f\x08\x27\x96\x9e\xf4\x5b\x14\xdf\x6a\x2e\xea\x02\xbb\x6c\x23\x1b\x50\xa6\x24\x24\xac\xdc\x81\xca\xcf\x0e\xd7\x66\x20\x1f\x85\xd3\x12\x39\x49\x2a\xa8\xa9\x39\xe9\xa7\x70\xff\xa4\x9f\x5a\x68\xc9\x47\xe1\xb4\x94\x4f\xfa\x49\xd0\x56\x58\xf4\x53\x93\x8a\x42\x5d\x8a\x83\x09\xa4\x63\x77\x55\xe7\xe8\x67\xd5\x75\xf6\x1d\x9c\xbe\xe6\xa2\x06\x9b\xd4\xad\xb1\xb8\x44\x95\x8f\x3b\x18\x8b\x4b\x8a\x6e\x09\x4a\xc7\x2e\x35\xbd\x90\x4f\x5f\x53\x85\xba\x34\x0a\x16\xf2\x4d\xb5\x90\x41\xdf\x88\x94\xeb\x0e\xa5\x16\xd9\x63\xa5\xc5\x2d\x52\xdd\x99\x7a\x27\x77\xa4\x18\x97\x07\xb5\x46\xaa\x3b\x7b\x26\x63\xa4\x18\x97\xc7\x3c\x10\x29\xc6\xe5\x59\xdc\x22\xc5\xb8\x3c\xee\xcb\x68\x2c\x2e\x29\xeb\x4a\x34\x16\x97\x3c\xbe\x87\x68\x2c\x2e\x79\x2c\xc4\x91\x94\xeb\x8a\x60\x89\xc6\xd4\x0a\xf5\xf5\xee\x68\x4c\x2d\x51\xb1\xfd\x8e\xc6\xd4\x92\x87\xfd\xc5\x9b\xe4\xa3\x30\xb5\x78\x23\x03\x0e\xa8\x78\x23\x43\xd2\x39\x64\x20\x3c\x2f\xde\xc8\x40\x42\x83\x78\x23\x43\xd2\x3d\x91\xa1\xeb\x3a\x64\x60\xe1\x8b\x54\x70\xf6\xbc\xf9\x78\x23\x43\xd3\x5d\x90\xa1\xeb\xe9\xf6\x1d\xfc\xd4\xf3\x48\x8e\x3b\x75\x9d\x8d\x33\x3f\xd4\x22\x79\x2c\xe3\x25\x52\x70\xeb\xc1\x68\x13\x29\xd3\xac\x08\x8f\x68\x4c\x2d\x3d\x7a\x67\x14\xdc\xf2\xc0\xa5\x48\xc1\xad\x87\xf9\x10\x29\xb8\xf5\x80\x5a\xa3\xa3\x96\x61\xd0\x75\x91\x73\xba\x27\x79\x9d\x83\x5a\xe4\x3d\x86\x0f\x45\xca\x34\x3f\x00\xb9\x48\x99\xe6\x07\x5b\x79\x34\xa6\x96\xa8\x03\x73\x47\x63\x6a\x49\x39\x4a\xa2\x31\xb5\xf4\xc4\x7f\x45\x5c\x44\x87\xe8\xfa\x98\x0e\xd1\x81\xe8\x91\x0a\xce\x0f\x53\x33\x52\xc1\xf9\xc1\xf5\x17\x8d\xc4\xa5\xa7\xe8\x1c\xa2\x33\xc5\xa2\x47\x74\x2c\xcb\xd1\x23\x3a\x01\x64\x91\x58\x44\x05\x89\x45\x2a\x38\x53\x2e\xf4\x8e\x54\x70\x7e\x58\x14\xa3\x47\x74\xdc\x19\x91\x94\xeb\x0a\x36\x89\xa4\x5c\xa7\x08\xcd\x1d\x49\xb9\xae\x04\x22\x91\x94\xeb\x8a\x05\x89\x0f\x32\xe8\x13\x3d\xc8\xa0\xe9\x67\x44\x2d\x05\x9c\x29\x91\x2a\xcd\x81\x08\x81\xf8\x90\xb6\x5a\x83\xc0\x88\x5a\x0a\x10\xdf\x68\x44\x2d\x05\x82\xd3\x23\x55\x9a\x03\x0b\x6d\x34\xa2\x96\xc2\xad\xeb\x48\xab\x74\xeb\x9e\x95\x96\xae\x53\xda\x78\xde\x35\x69\xd5\x15\xeb\x12\x1f\xa5\xfd\x57\xcb\xbe\x51\x78\xd4\xcf\x45\x8b\xe7\x19\x51\x4b\x81\x78\xdf\x48\x51\xad\x80\xad\x2e\x52\x54\x2b\x80\x6f\x23\x45\xb5\x02\x0b\x74\x0c\xc8\x17\x74\x1d\xf2\x69\x28\x05\xe4\x83\xbc\x47\xd2\xaa\x07\x02\x9e\x62\x40\xbe\xa8\x7b\x22\x5f\x54\x5f\x90\x4f\xd3\x9d\x2a\xcd\x41\x63\x49\x95\x98\x93\xee\x89\x0c\x44\x9b\xc4\x88\x0c\xf8\xb0\x63\x44\x06\x54\x40\x8c\xc8\x80\xab\x31\x52\x89\x39\x14\x5d\x87\x0c\x38\x1e\x23\x95\x98\xa9\x81\x7d\xc7\x88\x0c\x20\xe8\x48\xea\xf4\xd0\x75\x4f\x64\xd0\x82\xa2\xd4\xe9\x5d\x2d\x64\x68\xba\x0b\x32\x34\x3d\x81\x6f\x04\x1e\x8b\x91\x6f\x84\xc9\x2f\x46\xe4\xc3\x10\x14\x23\xf2\xe1\xfa\x8b\xa4\x4e\x0f\x9a\x0f\xa4\x4e\x57\x74\x4b\x84\x8d\x29\x9e\x25\x26\xe4\xd3\x98\x57\xea\x74\x2d\x52\x09\x19\x50\xfd\x91\xf4\xe8\x11\x94\x1c\x95\x1e\x9d\x98\x87\x48\x0e\xf4\xb0\xf4\x3c\xf2\x80\x83\xbc\x23\x15\x95\xa3\x46\x2b\x15\x95\x23\xf8\x2f\x52\x1c\x2b\x82\x84\x23\xc5\xb1\x28\x09\x75\x47\xe3\x4a\x29\xc2\xa6\xa3\x71\xa5\xa4\x18\x99\x68\x5c\x29\x45\x60\x41\xcc\xf4\x8c\xcc\x15\x91\xb2\x56\x51\xa3\x8e\x0c\xe5\x51\x0b\x98\x32\x94\x03\x0b\xa2\x31\x99\x14\x35\xce\x8c\xc9\x24\xe5\x44\x89\x94\x2a\x56\xe4\x4b\x2c\x3c\x1d\xe3\x44\xa4\x54\x71\xd4\x38\x23\xb7\x78\xd4\x18\x34\x26\x93\x62\xd2\x5d\xa8\x2a\x92\x75\x17\x7a\x86\x9d\x39\x16\x7a\x96\x75\x1d\x3d\xd3\x5a\x07\x93\x51\x34\x4d\x84\xc9\x44\xa0\x46\xa4\x54\x71\xc4\xec\x15\x61\x2b\x91\x8c\x17\x91\xfc\xe1\xca\x9e\x12\xe1\x20\x96\x3d\xe5\xef\x4b\x32\xf4\x24\x6a\xf0\x40\x4f\x14\x22\x13\xa1\x27\x51\x83\x07\x7a\x12\x35\x40\xa0\x27\x11\x5f\x74\x84\x9e\x44\x69\x3f\xe8\x49\xd4\xf2\x09\x3d\x89\x58\x8c\x22\xf5\x87\x95\x8c\x26\x42\x4f\x22\x08\x3a\x42\x4f\x94\x12\x25\x42\x4f\xd2\xa5\xbb\x04\x5a\x88\x07\x3d\x49\xc2\x16\xd0\x93\xa4\xe1\x02\x3d\x51\x30\x4d\x84\x82\x50\x9b\xee\x8e\x2a\x09\xf5\xe8\x9e\xd6\xcf\xa4\x65\x09\x9a\x91\x84\x2d\xba\xaa\xb5\x71\x1d\x5c\x22\x69\x71\x53\x49\x28\x08\x49\x84\x4b\x28\xb5\x49\x84\x4b\x24\xa9\x31\xb8\x44\xc2\xfa\x18\xe1\x12\x49\x9f\x16\x2e\xa1\xe8\x96\x08\x97\x48\x90\xf7\x08\x97\x50\x12\x94\x08\x97\x48\x52\x7f\x70\x09\x25\x3a\x89\x70\x89\xc4\x56\xe1\x08\x97\x50\x44\x49\x84\x4b\xa4\x46\xcf\xe0\x0b\x49\xe8\x05\xbe\x90\xb0\x45\x46\xf8\x42\xd2\x28\x80\x2f\xa4\xa1\x73\xc8\x80\x03\x2a\xc2\x17\x12\x6e\x9e\x08\x5f\x50\x16\x94\x08\x5f\x50\x74\x4b\x84\x2f\x24\x2d\x21\xf0\x85\x2c\xa5\x06\x5f\xa0\x74\xfd\x1d\xe1\x0b\x8a\x72\x88\xf0\x85\xcc\x16\xf1\x08\x5f\x50\x4c\x40\x84\x2f\x64\xd2\x62\x45\xf8\x42\xd6\xfb\x84\x2f\x28\xa6\x23\xc2\x17\x32\x26\x9c\x68\xe1\x79\x29\x6b\x6a\x5a\x78\x5e\xca\x5a\xd8\x2d\x3c\x2f\xe5\xac\x73\x26\x5f\xd6\x52\x0e\xcf\x50\x64\x48\x84\x67\xe4\xaa\xeb\x28\xfe\x00\xb5\x8e\xf0\x0c\xe5\x2f\x89\xf0\x0c\x45\x24\x44\x78\x46\x86\x22\x47\x78\x86\x62\x33\x22\x3c\x23\xc3\xf0\x22\x3c\x23\x6b\x99\x87\x67\x28\x5f\x4a\x84\x67\x28\x86\x24\xc2\x33\xf2\xd4\x3f\x91\x4f\x33\x0e\x9e\x91\xf5\xc5\xe0\x19\x54\x91\xbc\x23\x3c\x23\x13\xca\x1a\xe1\x19\x45\x73\x0c\x9e\xa1\xe8\x8f\x08\xcf\x28\x18\x4a\x22\x3c\xa3\x40\xc9\x23\x65\x9f\x8a\x00\xc4\xd2\xf7\x43\x3e\x38\x48\x21\xca\x28\xc2\x41\x94\x5d\x24\x19\x07\x49\x05\x6c\x9f\xe0\x20\x05\x2c\x9a\xe0\x20\xca\x58\x92\xe0\x20\xca\x74\x92\xe0\x20\x14\x66\xbe\x13\x1c\xa4\x24\xfd\x33\xd2\xd2\x5d\x4c\xbe\x92\x75\x0e\xf9\x50\xda\x09\x0e\xa2\x60\x82\x64\x1c\xa4\x2c\x58\x63\xba\x90\xaf\xea\x3a\xe4\xc3\xe0\x91\x2e\xe4\x43\x85\x27\x38\x48\x81\x77\x27\x38\x48\xc1\xb4\x95\xe0\x20\x72\xee\x27\x38\x48\xe1\x1b\x25\x38\x48\x99\xff\xda\x2a\x92\xa0\x27\x65\xea\x71\xe4\xbf\x65\x51\x4c\xd0\x93\x8a\x46\x4d\x50\x90\xca\x54\x49\x50\x10\x25\x3a\x49\x50\x90\x92\x75\x8e\xfa\x23\xd8\x4c\x13\x14\xa4\xa2\x35\x13\x14\xa4\x42\xc6\x12\x14\xa4\xe2\xd5\x4d\x50\x90\x8a\x71\x3c\x41\x41\xaa\x3e\x1f\x14\x44\x69\x4f\x12\x34\xa3\x46\xb5\xac\x86\xc3\xd2\x8b\x87\x66\x54\x34\x6a\x82\x66\xd4\xa4\x7f\x22\x43\xd2\x3f\x91\x01\xcd\x98\xa0\x19\xf2\xd1\x27\x68\x46\xc5\xa4\x92\xe0\x12\x94\xa0\xba\x13\x5c\xa2\xa2\x27\x13\x5c\xa2\x12\x8b\x98\xbc\xca\xc7\xf0\x4f\xb8\x44\x65\xf9\x4c\x70\x89\xda\x74\xdd\xc3\x3f\x79\x02\x5c\xa2\x42\xc2\x93\xea\xfa\xb2\x98\x26\xe3\x12\x45\x7b\x15\x13\x5c\xa2\xb2\x98\x26\xb8\x44\x65\xa2\x26\xb8\x44\x65\x69\x4d\x70\x89\xda\x75\x17\xe4\xd3\xe0\xf1\xaa\x11\xc3\x3d\xe1\x12\x15\x4b\x5a\x82\x2f\x28\x91\x4b\x82\x2f\x50\xa3\xec\x4e\xf0\x85\x0a\x1e\x4b\xf0\x85\x46\xcc\x4a\x82\x2f\x34\x48\x7f\x82\x2f\x28\x4a\x25\xc1\x17\xda\xa5\x7b\x5a\x3f\x9b\xd7\xd3\xad\x2f\x0d\x25\x9a\xe0\x04\x0d\xa7\x5d\x82\x13\x34\x4c\x38\x09\x4e\xa0\x24\x2f\x09\x4e\x20\x8f\x7d\x82\x13\x28\x43\x4a\x82\x13\x50\xde\xe8\x4e\x70\x82\x06\xb3\x48\x70\x02\x25\x9c\x49\x70\x82\x86\x41\x2e\xc1\x09\xa8\x3e\x79\x27\x38\x81\xf2\xb3\x24\x38\x81\xb2\xbc\x24\x38\x01\xf5\x40\xee\x04\x27\x68\x60\xbc\x04\x27\x68\x51\xf7\x44\x06\x9c\x53\x09\x4e\xd0\x34\x5a\xe1\x04\xf2\xfb\x27\x38\x41\xc3\xd7\x91\xe0\x04\x8a\x10\x48\x70\x82\x46\x94\x51\x82\x13\x34\xd4\x4a\x82\x13\x34\xd4\x7b\x82\x13\x50\x4f\xfd\x4e\x70\x82\x96\x75\x4f\x64\x08\xba\x27\x32\x60\xcd\x4d\x70\x02\xb9\xf3\x13\x9c\xa0\x11\xbd\x93\xe0\x04\xad\xeb\xe9\xc8\xa7\x91\x05\x27\x68\xa0\xc1\x04\x27\x50\x88\x40\x82\x13\x34\x8d\x2c\x38\x41\x83\xdd\x26\x38\x01\x15\x34\xef\x04\x27\xe8\xb7\xee\x82\x7c\x1a\x83\xe4\xe5\x56\xe6\x98\x04\x5f\xe8\x5a\xe6\xe1\x0b\xfd\x52\xab\xd0\xe2\x3b\x24\xa5\x8b\x65\x9c\x51\x33\x49\x81\x06\x29\x21\xdf\xd2\x3f\x07\xff\x54\x6b\x72\x17\xf5\x1a\xf9\xd8\x9f\x91\xe0\x12\x0a\x2d\x48\x70\x89\x0e\x97\x48\x14\xda\xed\x00\x88\x94\x25\x1f\x6f\x29\xab\x66\xcb\xbf\x22\x2e\x12\x84\xa4\xa3\xe1\x12\x84\xa4\xe3\xed\x4e\x10\x92\xae\xc1\x0a\x21\xe9\x5a\x30\x33\xa2\x13\xa4\x92\x32\xa2\x3f\x7a\x38\xe5\xa2\xd0\x93\x09\xb2\xa2\xb4\x35\x09\xb2\xd2\x21\x2b\x89\x72\x4a\x5d\x7a\x92\x72\x4a\x1d\xc2\x9c\x54\x4e\x09\x6b\x75\x2a\x88\xae\xe9\x50\x10\x5d\x43\x1e\xca\xd3\x35\x71\xa0\x3c\x5d\x0b\x18\x94\x47\x71\x0d\x09\xca\xd3\xab\x9e\x80\x7c\x44\xe3\x26\x28\x4f\xc7\x7a\x95\xa0\x3c\x4a\x62\x93\xa0\x3c\x54\x2a\xbe\x13\x94\xa7\x63\xf3\x4e\x50\x9e\x2e\x1d\x0a\xe5\xe9\x4d\x77\x41\xbe\xa6\xeb\x90\x4f\xba\x17\xca\x43\xa9\xc6\x3b\xe1\xbc\x51\x1c\x45\xc2\x79\xd3\xb1\xc0\x25\xe8\x90\xe2\x28\x12\x74\x88\x12\x38\x77\xc2\x79\xd3\xb1\x30\x26\x9c\x37\x7d\xe8\x1c\xf2\x81\x68\x13\xc4\xa9\x4f\x9d\x2b\x04\x43\x21\x1f\xec\x48\x71\x14\x09\x76\xd4\x97\xfe\x89\x7c\xe0\xaa\x04\x3b\xea\x1a\x9e\xb0\x23\x25\xd4\x49\xb0\xa3\xa1\x65\x17\x76\x34\xb4\x5c\xe3\xbc\x19\x58\x5e\x13\xec\x48\x29\x74\x12\xec\x68\x68\xf1\x86\x1d\x0d\x2d\x8a\xb0\x23\x25\xaa\x49\xb0\xa3\x81\xaf\x3d\xc1\x8e\x86\xd7\x13\x28\x87\x85\x35\x30\xe1\xbc\x51\x34\x46\xc2\x79\x33\x1e\xf5\xcc\xe4\x53\x82\x9b\x84\xf3\x66\x68\x9c\xe1\xbc\x51\x9a\x9c\x04\xab\x1a\x49\x4f\x40\x3e\x78\x54\x82\x55\x0d\x2d\xb4\xb0\xaa\xa1\x19\x00\xab\x52\x4c\x47\x82\x55\x29\xa6\x23\xc1\xaa\x06\x66\x9a\xa4\x72\x4a\xf0\xaf\x04\xab\x1a\x5a\x3e\x61\x55\x43\x00\x02\x56\x35\x8a\xfe\x89\x7c\x44\xc5\x24\x58\x95\x52\xe8\x24\x58\xd5\xa8\x7a\x1e\xf2\x81\xf4\x13\xac\x4a\x91\x1a\x09\x56\xa5\x64\x3b\x09\x56\x35\x34\xe6\xf1\xd0\x4c\xad\x05\x78\x68\x94\xce\x27\xc1\xb8\x06\x0c\x21\xc1\xb8\x86\xc6\x19\x8c\x4b\xf1\x1e\x09\xc6\x35\xa4\x64\xde\x42\xbb\x8c\x6b\x15\xda\xd5\xd8\x1d\x2a\x67\xa6\xe7\x21\x1f\x91\x1a\x09\xc6\xa5\xc8\x90\x04\xe3\x1a\x4b\xfd\x44\x3e\x8d\x56\x18\xd7\x80\xbd\x27\x18\xd7\xc4\xfc\x98\x60\x5c\x8a\x60\x49\x30\x2e\x45\x5c\x24\x18\x17\x85\xe4\xee\x04\xe3\x9a\xf0\x85\x04\xe3\x9a\x82\x98\x30\x2e\xc5\x58\x24\x18\xd7\xc4\xf4\x93\x60\x5c\xca\xf5\x93\x60\x5c\xd3\xe9\x2e\x26\xdf\xfc\x35\x06\xff\xbe\x24\x43\xc6\x26\x0e\xbd\x04\x19\x9b\x9a\xa8\x90\xb1\xa9\x61\x0d\x19\x9b\x5e\x0f\x1f\x3c\x40\x02\x21\xba\xd0\x2e\x64\x6c\x6a\xaa\x2c\x7d\x5a\x5e\x04\x64\x6c\x0a\x4d\x40\xc6\xa6\x74\x36\x64\x4c\xe5\x86\x12\x64\x6c\x12\xda\x96\x20\x5c\x53\x68\x17\xc2\x35\xa3\xee\x29\x19\x74\x0e\x19\x20\xa9\x09\xc2\x35\x71\x59\x24\x08\xd7\xd4\x72\x0d\xe1\x52\x48\x4e\x82\x70\x4d\x4d\x00\x23\x5c\x79\x31\xc8\x33\x84\x4b\x89\x86\x32\xa4\x6a\x42\x75\x33\xa4\x6a\x82\x49\x32\xa4\x6a\xa2\x02\x32\xc4\x69\x82\xa7\x33\xc4\x49\xe5\x8d\x32\xe4\x48\x09\x75\x32\xe4\x68\xf1\x96\x32\xce\x9b\xc5\xb2\x94\xa1\x3c\x2b\xa8\x15\x68\x3d\xb4\xc8\x13\x80\x8a\xcb\x70\x97\xc5\xdb\xcd\x70\x17\xc5\x58\x64\xb8\x8b\xe2\x21\x32\xdc\x45\xb1\x19\x19\xee\xa2\xa4\x39\x19\xee\xa2\x54\x38\x19\xee\xa2\xe4\x37\x19\xee\xb2\x24\x3b\xdc\x65\x61\xe9\xcd\xb8\x4f\x94\x18\x27\xe3\x3e\x11\x77\xc9\xf0\x9a\x05\xaa\xcb\xb8\x4f\x14\x2b\x91\xe1\x35\x8b\x09\x9e\xe1\x35\x0b\xa5\x96\xe1\x35\x8a\x95\xc8\xf0\x9a\xf7\xab\xc0\x6b\xa8\xf8\x78\x67\x78\xcd\x6a\xea\xb5\x15\x30\x53\x8e\xba\x0c\x77\x59\x70\x89\x0c\x77\x51\x1c\x45\x86\xbb\x28\x72\x22\xc3\x5d\xd6\xd4\x75\xc8\x00\x56\xcb\xca\xc9\x00\xc6\xcb\xf8\x41\x14\x7b\x92\xe1\x2e\x6b\xe9\x9c\x29\x3c\x25\x50\xcd\xc6\x5d\xb2\x6a\xf5\x64\xe3\x2e\xf9\xba\xf4\xbc\x4e\xab\xd1\xa2\x3e\x1b\x4b\x41\xa6\xbc\x2c\x15\x03\xef\x4c\x79\x59\x25\xe9\xc9\x94\x97\x55\x41\xa3\x4c\x79\xd9\x0b\x75\x94\x1f\x0a\xad\x31\x8b\xb3\xf1\x9a\xac\x2c\x36\xf9\xa1\x86\x1e\xca\x29\x1b\xaf\xc9\x57\xd0\xf3\x32\x2d\xdd\xb3\xd0\xd2\x75\xc8\x10\xf4\x04\x64\x88\xba\x0e\x19\xa2\xae\x43\x06\x14\x5e\x7e\x54\x48\x4e\xff\x5c\xb4\x98\x1d\x94\x97\xbd\xb0\x02\x67\xca\xcb\x5e\xcc\xf0\x1c\x90\x8f\xd9\x98\x29\x2f\x7b\x69\xfe\x05\x15\x92\xe3\x0d\x06\xe4\xd3\x48\x0e\xc8\x47\x88\x61\x0e\xc8\x87\x1a\xcb\x94\x97\xbd\x50\x8d\x39\x20\x9f\x46\x64\x40\xbe\xaa\xe7\x51\x03\x47\xb3\x38\x20\x1f\x81\x06\x39\x20\xdf\xd0\x3d\x91\x6f\xea\x79\xc8\x87\x67\x20\x53\x5e\x56\x51\x1c\x99\xf2\xb2\x57\xff\x57\xbe\xe4\x1c\x11\x1d\xbb\x53\x8e\x88\x8e\x2d\x39\x1b\x55\xca\x0a\xfe\xc8\x11\xd1\x41\x52\x39\x22\x3a\x8e\xb9\x6c\x54\x29\xdf\x58\x6c\xb3\x51\xa5\x7c\x3b\x5d\x47\x8d\x39\xb4\x51\xa6\xf2\xec\xed\x74\x17\xfb\xb4\xf7\xa3\xeb\x3a\xe5\x57\xd5\x1a\x9c\x53\x5f\x4c\x74\x25\xb8\xc9\x46\x95\xb2\xd2\xba\x64\xa3\x4a\xf9\x26\xd0\x26\x27\x44\xc7\x86\x99\xa9\x3c\xab\x54\x31\xd9\xa8\x52\x56\x29\xa2\x6c\x74\x28\x2b\xe1\x4c\x4e\xc8\xa0\x65\x29\x21\x83\x96\xa5\x84\x0c\x58\xa8\x72\x42\x06\xcc\x34\x39\x21\x83\x96\xba\x44\x1d\xc0\xaa\x73\xc8\x80\xf9\x23\x27\x64\xa8\x7a\x1e\x32\x68\x59\xca\x92\x81\xf7\x62\x74\x28\xab\x84\x51\xa6\x84\xec\x8d\x69\x24\x67\x64\x00\x69\xe4\xcc\x37\x02\x03\x65\xe3\x3c\x59\xb1\x27\x39\x23\x9f\x16\xa9\x8c\x7c\x20\xa2\x9c\x91\xaf\xeb\x2e\xc8\x07\xf2\xce\x19\xf9\x40\x60\x39\x23\x5f\xd7\xd3\x91\xaf\xeb\x2e\xc8\x87\x05\x35\x67\xe4\xd3\x80\xcc\xc8\x07\x06\xca\x05\xf9\xba\x5a\xc8\xa7\x51\x47\x21\x24\xc5\xb3\xe4\x42\x3f\x09\xe1\xca\xc6\x4f\xb2\x03\xe7\x64\xe3\x27\xd9\x5d\xfa\x67\xa7\xa5\xbb\x0c\x5a\xf4\xcc\xf8\x49\x56\x3c\x4b\xa6\xdc\xab\x23\x1e\x22\x53\xee\xd5\x69\x7c\x1a\x3f\xc9\x0e\x9e\x98\x2b\xe5\x50\xa5\x28\x8d\x9f\x64\x15\x3b\xca\xc6\x4f\xb2\x83\xfd\x65\xe3\x27\xd9\x05\xdd\x25\xd2\xd2\x75\x89\x16\x7d\x31\x7e\x92\x9d\x16\xb7\x4a\x4d\x42\x7d\xe9\x8a\x7c\x30\xc3\x5c\x91\x4f\x4b\x5d\x45\x3e\x2d\x75\xca\x9f\x00\x43\xc8\x0d\x19\x34\xae\x1b\xfd\x4c\x3a\x47\x3f\x31\x78\x64\x8a\x16\x29\x0e\x26\x53\xb4\xc8\x81\x84\x73\xa3\x9f\x60\xd8\xdc\xe8\x67\xd3\x39\xfa\xa9\x85\xa8\xd1\x4f\xa9\xaa\x46\x3f\x31\x77\xe6\x46\x3f\x87\xee\xc2\x77\x18\x7a\x1e\xdf\x01\x8e\x95\x1b\x32\x48\x8d\x75\x64\x80\x63\x65\xb6\xf3\x78\x8d\x79\xe3\x19\xd9\x5f\x6a\x21\x1f\xb8\x38\x77\xe4\x93\xfa\xeb\xc8\x07\x82\xce\x94\x6d\x55\x0d\xa3\x4c\xd9\x56\x65\x95\xc9\xc6\x33\xb2\xd7\x7a\xd6\x91\x4f\xa3\xd5\x78\x46\xf6\xc0\xcf\x6c\x3c\x23\x2b\x46\x26\x1b\xcf\xc8\x8a\xa6\xc9\xc6\x33\x32\xb5\x44\xef\x4c\xd9\x56\xd5\x29\xca\x94\x6d\x55\x2d\xa2\xcc\x76\x1e\x0f\x88\xcd\x03\xf9\xc2\xf5\xaf\x25\x79\x20\xba\xf0\x18\x79\x17\x14\xa0\x93\x8d\x82\x64\xaf\xc1\x6a\x34\x23\x7b\xe9\x9f\x81\x78\xd2\x31\x46\x33\xb2\xaf\x6a\x21\x9e\x3e\xf4\x40\x3c\x28\x4f\x1e\x88\x27\xdc\x48\xd5\x56\x15\x65\xca\x94\x66\x55\xc2\x99\x4c\x69\x56\x2f\x74\x36\x11\x4f\x8b\xe2\x44\x3c\x90\x70\x9e\xc8\xa0\x65\x69\x22\x83\xb4\x34\xa5\x59\x15\xe6\x93\x8d\x66\x64\x15\x3b\xca\x94\x66\x55\x32\x9a\x3c\x91\x0f\x73\x44\x9e\xc8\xa7\xa1\x44\x69\x56\x25\x72\xc9\x13\xf9\xd8\x0a\x93\x29\xcd\xaa\x10\xa0\x4c\x69\x56\x8f\x33\x25\x1b\x97\xc8\x8f\x06\xd6\x44\x3e\x2d\x52\xc6\x25\xf2\x23\x7c\xb4\x90\x0f\xcb\x5d\x5e\xc8\x87\x9d\x2b\x1b\x97\xc8\x8f\x16\x22\x4a\xb3\x7a\xe2\x52\x32\xa5\x59\x3d\xb4\x2d\x53\x9a\xf5\xd1\xb2\x64\x8e\x9d\xfc\x38\x9d\x4b\xb4\x74\x1d\xf2\x69\x81\xa6\x34\xeb\xa3\x85\xc8\x78\x46\x0e\x1a\xd6\x0b\xf9\x34\x1d\x8c\x67\xe4\x27\xea\x3a\xe4\xc3\x76\x96\x8d\x67\x64\x15\x50\xca\xf0\x0c\xc5\x74\x14\xe3\x19\x59\xe5\x86\x8a\x39\x76\xb2\x0a\x1a\x95\x0b\xf9\x70\xa5\x16\xe3\x20\xf9\x01\xaf\x14\xe3\x20\xf9\x41\x89\x96\x0b\xf9\x50\x7f\xe5\x42\x3e\xd8\x51\xa1\x34\xeb\x83\x0a\x2f\xc6\x4f\xf2\x83\x03\xaa\x50\x9a\x55\x61\x53\xc5\x1c\x3b\xf9\x49\xba\xae\xd1\xeb\x40\x0b\xf9\xba\x7a\x8d\x7c\x51\xcf\x43\xbe\xa6\xeb\xf8\x7e\xd8\xfb\xcb\x8d\x7c\x45\x2d\xe4\x63\xba\x97\x1b\xf9\x50\x63\xe5\x46\x3e\x16\xbe\x72\x23\x1f\xca\xa9\xdc\xc8\xc7\x16\xdc\x72\x23\x1f\x63\xa2\xdc\xc8\x87\x8d\xb6\xdc\xc8\x37\xd4\x42\xbe\xaa\x7f\xf2\xfd\x9c\x5a\xc8\xb7\xd4\x33\xe4\x63\x5c\x97\x9b\x6f\xa4\xb7\x64\xec\x28\x07\x28\x79\x31\x76\x94\x15\x3b\x54\x8c\x1d\x65\x95\x4c\x2a\x0e\x19\x96\xae\x33\x19\x54\xec\xa8\x18\x3b\xca\x2a\x76\x54\x8c\x1d\x65\xe5\x83\x29\xc6\x8e\xb2\xb2\xca\x14\x63\x47\x39\x10\x4e\x56\x8c\x1d\xe5\x88\xa1\xab\x38\x64\x00\xac\x15\x63\x47\x59\x19\x67\x8a\xb1\xa3\xac\xaa\x45\xc5\xd8\x51\x0e\x55\x3d\x9b\x9c\xd3\x13\x90\x0f\xa7\x79\xf1\xc8\xc7\x1a\x52\x3c\xf2\x31\xdf\x8b\x47\x3e\xc6\x75\x31\xe6\x94\x15\xe7\x53\x3c\xf2\x81\xb5\x8b\x47\xbe\xa9\xbb\x20\x1f\xab\x54\xf1\xc8\x87\xbd\xbf\x78\xe4\xd3\x28\x37\xe6\x94\xad\x4a\xd2\x5f\x97\xe4\x02\xa9\x0a\x40\xf4\x02\xa9\x0a\x20\xa2\x02\xa9\x0a\x4d\x0f\x47\x74\x4c\xfa\xc5\x23\xba\x86\xa7\x47\x74\x0d\x25\x08\x57\x80\x18\x16\x08\x57\x00\xbe\x17\x08\x57\x98\x3a\x87\xe8\x68\xb1\x02\xe1\x52\x99\xa2\x02\xe1\x52\x12\x9b\x02\xe1\x8a\x2c\x8a\x05\xc2\xa5\xc0\x9e\x02\xe1\x52\x21\xa4\x02\xe1\x52\x08\x50\x81\x70\x45\x96\x97\x02\xe1\x8a\x2c\x52\x05\xc2\x15\x6f\xfd\xd3\xe4\x53\x28\x4f\x81\x70\x29\xe9\x4a\x81\x70\x45\xdc\x43\xc5\x08\xd7\x33\x35\x40\x20\x5c\x11\x43\x42\x81\x70\x29\x89\x4d\x81\x70\x29\xb0\xa7\x40\xb8\x22\xc8\xa6\x40\xb8\x14\x3e\x53\x20\x5c\x94\xe6\xbf\x4b\xa0\x9f\x50\xf2\x02\x71\x8a\x55\xf7\xa4\x9f\x5d\xcf\xa3\x9f\x9a\xa8\x10\x27\x05\xe1\x14\x88\x93\x12\xd5\x14\x88\x53\x46\xfd\x15\xd8\x51\x04\x2d\x15\xd8\x51\x84\xbc\x17\xd8\x91\x62\x6b\x0a\xec\x48\x29\x66\x0a\xec\x28\xe2\x45\x2e\xb0\xa3\x08\x3e\x2a\xb0\xa3\x38\x74\x4f\xa6\xd8\xd4\x39\xfb\x0e\x09\x4a\x5e\x60\x47\x49\x5f\xc5\xd8\x51\x56\xa4\x4d\x81\x1d\xa9\x84\x51\x81\x1d\xa9\xec\x6e\x81\x1d\x29\x42\xa7\xc0\x8e\x12\xee\xa1\x02\x3b\x52\x41\xa3\x02\x3b\x52\xd1\xa2\x02\x3b\x52\x91\xa4\x62\x8e\xa4\x9c\x34\xb2\xcc\x91\x94\x13\x88\xa8\xc0\x9c\x94\xd2\xa6\xc0\x9c\x94\xa8\xa6\xc0\x9c\x54\x98\xa8\xc0\x9c\x12\xf1\xb0\x05\xe6\xa4\x18\xa0\x02\x73\x4a\x1a\x59\x30\x27\x25\xb1\x29\x30\xa7\xa4\x11\x02\x73\x4a\x18\x97\x0a\xcc\x29\xe1\xbd\x29\x30\x27\x95\x45\x2a\x30\xa7\x04\xa7\x2b\x30\xa7\x84\xf3\xbb\xc0\x9c\x14\x2d\x54\x60\x4e\x49\x6a\x0c\xe6\xa4\xa4\x39\x05\xe6\x94\xe0\x97\x05\xe6\x94\xb4\x7c\xc2\x9c\x12\xe6\xc0\x02\x73\xca\xf0\x93\x02\x73\x4a\x00\xab\x02\x73\x4a\x52\x40\x30\xa7\x24\x45\x09\x73\x4a\x1a\xad\x30\xa7\x84\xcb\xb0\xc0\x9c\x12\x40\xa0\xc0\x9c\x54\xb0\xa9\xc0\x9c\x92\xd6\x10\xf3\x16\x15\xc5\x7e\x95\x82\x7c\x1a\xad\xb0\xaa\xa4\x19\x50\x90\x0f\x5f\x4e\x29\xc8\x87\xad\xbc\xc0\xb8\x94\xb7\xa6\x14\xe4\x93\x32\x2c\x7c\x3f\x8d\x4f\xd8\x58\x02\xda\x14\xd8\x58\x9a\xea\x4b\xe7\x4d\xe8\x9f\x83\x96\x64\x40\x3e\xad\x3d\x30\xae\x7c\xa9\xc5\x37\x82\x2f\x14\x18\x57\xbe\xff\x15\x71\x51\x20\x63\x19\x50\x5e\x20\x63\x59\x9a\x11\x32\x96\xb5\x80\x41\xc6\x54\xb0\xa9\x40\xc6\xb2\x57\x8b\xcf\xe7\x75\x97\x4a\x8b\x41\x00\x19\xcb\xf8\x24\x0b\x64\x2c\x6b\x58\x57\xc4\x23\xe2\xb6\x98\xb3\x28\xe7\x47\xcf\xb3\xcf\xa7\xd2\x4e\x05\xa2\xa6\x64\x3b\x85\x50\xba\x8c\x9d\xb9\x98\xb3\x28\xab\x78\x54\x81\xc4\x65\x61\x2e\x48\x5c\x66\x6b\x43\x81\xc4\x29\x51\x4d\x81\xc4\xe5\xa2\x16\xf2\x81\xa7\x0b\x24\x2e\x63\xcb\x2a\x90\x38\x05\x43\x15\x48\x9c\x0a\x59\x15\x48\x5c\xd6\x80\x84\xc4\x65\xe2\x36\x0a\x24\x2e\x17\x9d\x43\xbe\xaa\xe7\x21\x1f\xde\xee\x02\x89\xcb\x1a\xf2\x90\x38\xa5\xd7\x29\x90\xb8\x2c\x1c\x00\x89\xcb\x5a\x76\x21\x71\x59\x58\x0d\x12\x97\x71\x27\x16\x88\x9a\xc2\xad\x0a\x64\x2c\x4b\x35\x42\xc6\x94\xa8\xa6\x40\xc6\x54\xe8\xa9\x40\xc6\xb2\x30\x10\x64\x4c\x61\x53\x05\x32\x96\xd9\x66\x5b\x20\x63\x59\x03\x19\xc6\xa5\xa4\x39\x05\xc6\xa5\x24\x3d\x05\xc6\xa5\xe2\x51\xc5\x9c\x3e\xb9\x48\xc1\x9a\xd3\x27\x97\x47\xad\xc4\x39\xde\x12\x6c\x4c\xe9\x75\x0a\x8c\xab\x08\x57\xc1\xb8\x8a\x46\x0f\x8c\xab\x68\x64\xc1\xb8\x94\xdc\xa7\xc0\xb8\x54\x66\xaa\xc0\xb8\x8a\x16\x3e\x18\x57\x61\x5b\x47\x81\x71\x29\x68\xab\xc0\xb8\x94\x8c\xa6\xc0\xb8\x0a\x7e\x97\x02\xe3\x2a\x98\x1c\x0a\x8c\xab\x08\x65\xc1\xb8\x94\x9a\xa6\xc0\xb8\x8a\x30\x3a\x8c\x4b\x69\x72\x0a\x8c\x4b\x49\x7a\x0a\x8c\x4b\xc9\x76\x0a\x8c\xab\x60\x4a\x2b\x30\xae\x22\xfc\x07\xe3\x52\xb0\x57\x81\x71\x15\xa9\x77\x18\x57\x21\x8a\xa3\xc0\xb8\x8a\x10\x34\x8c\xab\x60\x04\x2b\x30\xae\x42\x62\xb1\x02\xe3\x2a\x98\x2a\x0a\x8c\xab\x68\x69\x85\x71\x29\xbd\x4e\x81\x71\x15\x81\x35\x18\x57\xd1\x42\x0b\xab\x2a\xc2\xfd\x30\x27\x85\x85\x15\x98\x53\x61\x2c\x55\x98\x53\x61\xcf\x40\x85\x39\x55\x94\x6f\x85\x39\x55\xd6\xa5\x0a\x73\xaa\x98\xa1\x2a\xcc\x49\x19\x59\x2a\xcc\x49\xb9\x69\x2a\xcc\xa9\xf2\x35\x2b\xcc\x49\xe5\xb0\x2a\xcc\x49\xd9\x5a\x2a\xcc\xa9\x32\x96\x2a\xcc\xa9\x06\xdd\xa5\xd1\x72\xb4\x3a\xff\xd4\x75\x83\x96\x7a\x6d\xf2\xd5\xa4\xbe\x98\x7c\x95\x51\x50\x61\x4e\x2a\x95\x55\x61\x4e\x96\x01\xe6\xaf\x4b\x72\x85\x54\x55\xcc\x11\x15\x52\x55\x59\x5e\x2a\xa4\x4a\x89\x5c\x2a\xa4\xaa\x02\xf4\x2b\xa4\xaa\xf2\xa1\x2b\xa4\xaa\x16\xb5\x10\x0f\xa3\x46\x85\x38\x55\xf0\x5f\x85\x38\x29\xd8\xab\xde\x88\xd7\x25\x02\xe2\x75\x3d\x1d\xf1\xf8\xb4\x15\x52\x55\x31\x16\x54\x48\x55\xc5\x26\x55\x21\x55\x95\xcf\x5e\x21\x55\x15\x5f\x6d\x85\x54\x55\x6c\xde\x15\x52\xd5\x6e\x9d\x43\x06\x74\x61\x85\x54\x55\x22\x12\x2a\xa4\xaa\x2e\xdd\x93\xcf\x07\x6e\xac\x90\xaa\x3a\xd4\x17\x93\x4f\x15\xbd\x2a\xa4\xaa\x5d\xba\x6e\xf0\x3c\xc9\x80\x7c\x53\x7d\x59\x9c\xe3\x43\x43\xaa\x9a\x06\x1d\xa4\xaa\x11\x92\x53\x21\x55\xcd\xe9\x1c\x49\x3d\xb1\x6f\x56\x4f\x12\x43\xf0\x43\x85\x54\x35\xa7\x7b\x46\x5a\x3a\x97\xb8\x0e\x19\x20\x55\x0a\x2e\xab\x90\xaa\xa6\xe1\x09\x73\x52\x58\x58\x85\x39\x35\x62\x09\x2a\xcc\xa9\x3d\xba\x0b\xf2\x11\x9a\x58\x61\x4e\x2d\xe8\xe9\xc8\xa7\x41\x0e\x73\x6a\x98\x31\x2a\xcc\xa9\x45\x9d\x43\x3e\x70\x63\x85\x39\x29\x80\xac\xc2\x9c\x5a\xd4\x39\xe4\x63\x39\xab\x30\xa7\x86\xda\xac\x30\x27\x15\x06\xab\x30\xa7\x96\x75\x17\xe4\xc3\x24\x56\x61\x47\x0d\xe3\x59\x85\x01\x75\x1c\xab\x15\x97\x93\xca\x61\x55\x18\x50\x07\x33\x57\x18\x50\xd7\x64\x84\x01\x29\x1e\xa9\xc2\x80\x54\x2a\xab\xc2\x80\x14\x65\x54\x61\x40\xca\xba\x52\x71\x39\x29\xeb\x4a\xc5\xe5\xa4\xd8\xa1\x8a\xcb\xa9\x27\x3d\xa1\xd2\x52\xcf\xec\x3b\x28\x23\x4b\x85\x39\x75\x8c\x6e\x15\xe6\xd4\x35\x8b\x61\x4e\x9d\xe5\xba\xc2\x8e\x54\x1c\xab\xc2\x8e\xba\x96\x10\xd8\x51\x67\xf1\xae\xca\x03\xae\xe5\x0c\x76\xa4\x78\xa4\x0a\x3b\xea\x55\xf7\x44\x86\xa6\x73\xf4\x13\xa8\x51\x61\x40\x2a\xaa\x55\x61\x40\xbd\xeb\x09\xf4\x13\x53\x4c\x85\x01\x75\xcd\x54\x18\x50\xc7\x3e\x5d\x61\x40\x5d\xb3\x1f\x06\xa4\xc2\x59\x15\x26\xa3\x08\x9d\x0a\x93\x19\x9a\x71\x30\x99\x01\xa2\xad\x30\x99\x71\xe9\x3a\xeb\xe7\xd0\x1c\x33\x26\x53\x54\x77\xa6\xc2\x64\xc6\xad\xa7\xab\x9f\xba\x6e\x72\x8e\x7e\xc2\x64\x86\xe6\x2d\x4c\x66\xc0\x83\x2b\x4c\x66\x68\x49\x86\xc9\x0c\x58\x71\x85\xc9\x58\x9c\xcf\xdf\x97\x64\x48\xce\xc8\xba\xcc\x3e\xc3\x00\xb9\x55\x48\xce\xd0\x12\x09\xc9\x19\xb8\x8e\x2a\x24\x47\x41\x38\x15\x92\x33\x30\x6a\x54\x48\xce\xd0\xeb\x84\xe4\xa8\x94\x54\x85\xe4\x28\xb5\x49\x85\xe4\xa8\xb0\x54\x85\xe4\x0c\x48\x4e\x85\xc8\x0c\x48\x71\x2d\x88\xa7\x0f\x06\x91\x19\xe0\xb8\x0a\x59\x19\x4b\xff\xb4\xbe\x4c\xbd\x78\x08\x89\x42\x56\x2a\x84\x64\x82\xc3\x2b\x84\x44\x11\x25\x15\x42\x32\xbd\xae\x9b\xb4\xf8\x0c\xb8\x87\x26\x5e\xeb\x8a\x7b\x48\x25\xa1\x2a\x64\x65\x6a\x59\x82\xac\x4c\x4d\x54\xc8\xca\xd4\xd4\x84\x91\x4c\x4d\x69\x18\xc9\x0c\xba\xce\x64\x50\xd1\xa9\x0a\x23\x99\x51\xd7\xd9\xbb\x9e\x4e\x4f\x47\x3e\xc8\x66\x85\x91\xc8\x88\x52\x61\x24\x4a\x90\x52\x61\x24\x4a\xc1\x52\x61\x24\x8a\x44\xa9\x30\x92\xa9\xef\x0e\x23\x99\x58\xc4\x2a\x8c\x64\x6a\x82\xc3\x48\xa6\x14\x33\x8c\x64\xe2\x82\xad\x30\x92\xa9\xc9\x0f\x23\x99\x60\xb5\x0a\x23\x99\x52\xd3\x30\x92\xa9\x85\x01\x46\x32\x35\xce\x60\x24\xca\x90\x52\x61\x24\x53\xca\x1e\x46\x32\x41\x6e\x15\x46\x32\x61\x08\x15\x46\x32\xa1\xa5\x15\x46\x32\x9b\xae\x43\x3e\x8d\x56\x18\xc9\x24\x8c\xb0\xc2\x48\x54\x8c\xab\xc2\x48\xa6\x46\x1d\x8c\x64\x6a\x44\xc2\x48\x54\x7e\xab\xc2\x48\xa6\x46\x1d\x8c\x64\x2e\xfd\x13\xf9\x04\x19\x70\x2b\x29\xef\x49\x85\xad\x2c\x2d\x21\xb8\x95\xd6\xa5\xbe\x98\x7c\xeb\x56\xab\xd1\xe2\x8b\xc1\x64\x16\xdb\x33\x2a\x4c\x46\xb9\x4d\x2a\x4c\x66\xdd\xea\x0b\xf1\x41\x1a\xe5\x30\x99\x25\xdc\x08\x93\x59\x82\x0c\x30\x99\x25\xa5\x0d\x93\x59\x52\xef\x30\x99\xe5\x75\x5d\xa0\xc5\xd3\x61\x32\x8a\x01\xaa\x30\x99\xa5\x79\x04\x93\x51\x0e\x96\x8a\x5f\x49\x05\xb7\x2a\x7e\xa5\xa5\xd9\x01\xcb\x59\xc2\x9b\xb0\x9c\x77\x51\x84\xe5\x2c\x4c\x31\x15\x96\xa3\xa2\x61\x15\xee\xb2\x8a\x5a\xf4\x1a\xb3\x49\x85\xbb\x28\x7a\xa7\xc2\x5d\x54\xc8\xaa\xc2\x5d\x14\xcb\x53\xe1\x2e\x8b\xfc\x3a\x15\xee\xb2\xb4\x4a\xc1\x5d\x16\x06\xd5\x0a\x77\x59\x82\x67\x70\x97\x35\xf5\x4f\x7a\x3d\x75\xcf\xc1\x9e\x01\xdd\x93\x5e\x8b\x05\x18\x77\x29\x97\xbe\xb4\xf1\x93\x72\xfd\xd3\x70\x51\x8d\xba\x14\xd5\xa3\xaa\x46\x5d\x8a\x02\x6d\xaa\x51\x97\x72\x49\xc7\x18\x75\x29\x17\x84\xb2\x2e\xb6\x2f\x48\x57\x18\x75\x29\x0a\xe5\xa9\xe6\x2c\x2a\x17\xa6\x8a\x6a\xce\xa2\x72\x89\x2e\x18\xad\x29\x97\x96\x41\x73\x16\x95\x4b\x9f\x1d\x67\x91\x2a\x7a\xb5\x0b\x11\xb0\xcb\xb4\x8b\x7e\xf2\x69\xdb\x45\x3f\xbd\xce\xd1\x4f\xd0\x59\xbb\xe8\x67\xd0\x5d\xe8\x67\xd0\x3f\xe9\x67\xd4\x39\xfa\x09\x02\x6b\xec\xe6\x51\x48\x4e\x33\xea\x52\x62\xd5\x3f\xe9\x27\x8b\x5b\xbb\xf4\x19\xd4\x9a\x9c\x1b\xb4\xf8\x0c\x2c\x75\xcd\xa8\x4b\xb9\x40\x6e\xcd\xa8\x4b\xb9\x58\xc0\xda\x8d\x7c\xe0\x9c\x76\x23\x1f\x11\xa9\x8d\x04\xde\x97\x9e\x7e\x23\x5f\xd5\x39\xe4\x6b\x7a\x02\xf2\x61\x52\x69\x37\xf2\x31\x94\xda\x8d\x7c\xa0\x90\x46\x5e\x38\xf7\xe8\x9e\x7c\x07\x96\x9e\x66\xdc\xa5\xdc\x97\xae\x33\xf9\xee\x5b\xad\x49\x4b\xfd\x34\xf9\x6e\xfc\xcd\xcd\xb8\x4b\xb9\x51\x63\xcd\xb8\x4b\x51\x31\xa7\x66\xdc\xa5\x28\x0b\x4a\x33\xee\x52\x6e\x7d\x15\xe3\x2e\xe5\x46\xad\x34\xe3\x2e\x45\xe9\x59\x9a\x71\x97\x72\xe3\xb4\x6b\x6c\x03\x52\xc1\xa6\x66\xdc\xa5\xdc\xfa\x0e\xc6\x5d\xca\x8d\x7a\x68\xc6\x5d\xca\xad\xf7\x69\xdc\xa5\x28\x0e\xa6\x39\xe4\xab\x6a\x21\x5f\xd5\x75\xc8\xa7\xb7\xeb\x90\x0f\xf5\xd0\x3c\xf2\xe9\xed\x7a\xe4\x63\x4b\x44\xf3\xc8\xd7\xf4\x4f\x64\xc0\x6e\xdf\x3c\x32\xb0\xcc\x37\xb6\xfa\xdc\x58\x49\x9b\x47\x06\x20\x4a\x23\x5c\xee\x06\x78\x34\x8f\x0c\xf0\xa8\xe6\x91\x41\xdf\xc8\x23\x03\x0a\xa1\x19\x07\x29\x2a\x22\xd4\x1e\xfa\x09\x28\x69\xc6\x41\x8a\x8a\x0f\x35\xe3\x20\x45\x39\x51\x9a\x71\x90\xe2\x98\xef\xcd\x38\x48\x71\x58\xe3\x9b\x71\x90\xa2\xda\x40\xcd\x38\x48\x71\x2c\x91\xcd\x38\x48\x71\x8f\xae\xcb\xb4\x90\xd6\x38\x48\x51\xd4\x48\x33\xef\x4d\x79\xc7\x99\x79\x6f\x8a\x2b\xba\xce\x64\x70\x5e\xfd\x1c\xfc\x13\xf9\xcc\x7b\x53\x1c\xf0\xa5\x3d\xc8\xc7\x22\xdc\x8c\xbb\x14\xe5\x4b\x69\x01\xf9\x50\xfd\x2d\x20\x1f\xce\xb7\x16\x90\x0f\x36\xd6\x02\xf2\x01\x15\x5b\x40\x3e\xfc\x5f\x2d\x20\x1f\x0b\x74\x0b\xc8\x37\x75\xce\xe4\xf3\x97\xae\x43\xbe\xa5\x7b\x9a\x7c\x1e\x73\x59\x33\xee\x52\x3c\x71\x30\xcd\xb8\x4b\xf1\x9a\x2b\xc6\x5d\x8a\xc7\xf0\xdb\x8c\xbb\x14\x7f\xff\x2b\x85\x7d\x33\x87\x50\x51\xcc\x43\x33\x87\x50\xf1\x90\xb8\x66\x94\xa7\x28\x30\xa4\x19\xe5\x29\x1e\x1d\xda\x8c\xf2\x14\x8f\x16\x6b\x46\x79\x8a\x07\xd5\x35\xa3\x3c\x45\xf1\x10\xcd\x28\x4f\xf1\x38\x1b\x9a\x51\x9e\xe2\x35\x51\x23\xa2\x37\x5d\x87\x78\x20\xa9\x46\x48\x9c\xd7\x0b\x8c\xf4\x13\x1b\x66\x4b\xf4\x13\x9d\xd6\x12\xfd\x1c\x3a\x47\x3f\xc9\x59\xd0\x12\xfd\xc4\x82\xda\x12\xfd\xd4\xe4\x48\xf4\xb3\xeb\x3a\xfa\xa9\x05\xcc\xe8\x50\x79\x30\x39\x34\xa3\x43\xe5\xd1\x20\x37\x3a\x54\x14\x7f\xd1\x8c\x0e\x15\x45\x55\x34\xe8\x90\xa2\x23\x9a\xd1\xa1\xf2\xdc\x7a\x9e\x7d\x22\x15\xd9\x69\x46\x87\xca\x83\x59\xa1\x19\x1d\x2a\xf2\xfb\x37\xa3\x43\xe5\x41\x35\x36\xa3\x43\x45\xe9\x52\x9a\xd1\xa1\xa2\xb4\x27\xcd\xe8\x50\x79\xb0\x7a\x35\xca\xb6\x3e\x1a\x2e\xc6\x79\xca\x83\xe9\xa0\x19\xe7\x29\x8f\xbe\x51\x46\xbe\xa8\xeb\x90\x4f\x93\x31\x23\x5f\xd4\xf3\x98\x62\x38\xae\x5a\x46\xbe\xa4\xbb\x20\x5f\x52\xaf\x91\x0f\xbb\x68\xcb\xc8\x27\x55\x95\x91\x4f\x53\xa5\x20\x9f\x46\x48\x41\x3e\x2c\xa8\x0d\xc7\xce\x23\xa5\x56\x90\x8f\x88\xd4\x66\x8e\x9d\xa2\xfc\x17\xcd\x1c\x3b\x45\xde\xee\x66\x5c\xa9\xc8\x9f\xde\xcc\xb1\x53\xe4\x33\x6f\xe6\xd8\x29\x41\x53\xda\xb8\x52\x09\xc4\xdd\x34\xe3\x4a\x45\x9e\xf7\x66\x5c\xa9\x84\xaa\x7b\x4e\x5a\xc8\x60\x5c\xa9\x28\xab\x45\x33\xae\x54\x02\xce\xa2\x66\x5c\xa9\xc8\xdd\xdd\x8c\x2b\x95\x00\x46\x6f\xc6\x95\x8a\x72\x5c\xb4\x37\x4f\x1b\x7d\xa9\xc8\xa0\xd1\x5a\x91\x01\xc2\xdc\x2a\x32\x74\x3d\x0f\x19\x70\x9a\x37\xb6\xfa\x04\xfc\x04\xcd\xb8\x52\x09\x5a\xe6\x2b\xf2\x0d\x5d\x87\x7c\x5a\xe6\x2b\xf2\x69\xe6\x54\xe4\x93\x0a\x37\xae\x54\xa2\x46\x9d\x71\xa5\x12\x31\x6d\x35\xe3\x43\x25\x82\x8b\x9b\xf1\xa1\x12\x41\xc2\xcd\xf8\x50\x51\xe5\x97\x66\x7c\xa8\x44\x2d\xb4\xc6\x87\x4a\xd4\x98\x30\x3e\x54\x94\xe3\xa2\x19\x1f\x2a\xaa\xfc\xd2\x8c\x0f\x15\x55\x7e\x69\x0d\x48\x14\x74\x4f\xc2\x63\xb1\xe2\x37\xe3\x43\x45\x39\x2e\x9a\xf1\xa1\xa2\x6c\x18\xad\x21\x03\x5e\x98\xd6\x91\x01\xc3\x4c\x33\x3e\x54\xa2\xd4\x43\xc7\x81\x88\xd7\xa7\x75\xe4\x93\x2a\xee\xc8\xa7\x51\xd0\x91\x41\xab\x54\x47\x06\x29\xe6\x8e\x0c\x98\x69\x5a\xa7\x9f\x44\x5f\xb5\x4e\x3f\xa5\x98\x3b\xfd\xfc\xa5\xb4\xff\xbe\x24\x77\x44\xd0\x20\x18\x72\x7c\xa8\x85\x08\xfa\xb4\x46\x79\x8a\x7c\xd8\x6d\x20\x82\x06\x08\x89\xb1\xe5\xd1\x6e\x46\x79\x8a\xf2\x51\x34\xa3\x3c\x45\xde\xf5\x66\x94\xa7\xc8\xbb\xde\x8c\xf2\x94\xa4\xc5\xcd\x28\x4f\x49\xc2\xc5\x24\xc6\x96\x3f\xbd\x19\xe5\x29\x2a\x11\xd3\x8c\xf2\x14\x95\x88\x69\x46\x79\x4a\x92\x6e\x32\xca\x53\x94\xf1\xa2\x99\x63\xa7\x24\x48\x7f\x33\xc7\x4e\x49\x42\x75\xe6\xd8\x29\x09\x8c\xde\x26\x56\x59\x2d\x67\x13\x19\xa0\x58\x6d\x22\x83\x34\xff\x44\x06\x0d\xcf\x89\x0c\x42\x0c\x13\x19\x34\xe8\x26\x32\x68\x19\x9c\xc8\x20\x34\x31\x91\x41\xc3\x0c\x02\x24\x9f\x79\x33\x02\x14\x14\xdb\xd9\x20\x40\xca\xb7\xd1\x16\x32\x60\xa1\x6a\x0b\x19\x08\xe8\x6a\x90\x23\xd5\x7a\x69\x30\x20\x15\x9a\x69\x30\xa0\xa4\xa5\x0e\x06\x94\xb0\x53\x36\x18\x50\x22\xdc\xbe\xc1\x80\x94\x7d\xa3\xc1\x72\x92\xf0\x0a\x2c\x27\x69\x01\x83\xe5\xa8\xee\x4c\x5b\xc8\x00\x85\xec\x17\xfd\xec\x6a\xd1\x4f\x8c\x0c\x1d\x06\x94\x50\x86\x1d\x06\x24\xaf\x7c\x87\x01\x29\x8b\x46\x87\x01\x25\xb6\x73\x77\x18\xd0\x62\xf2\x77\x18\x90\xbc\xe4\x9d\x6d\x39\x4a\x14\xdf\x61\x40\x69\xe9\x79\xc8\x40\xee\xbe\x0e\x03\x92\x07\xbd\xc3\x80\x94\x7d\xa3\xc3\x80\xb2\x57\xcf\x6c\x2c\x65\xc6\x52\x87\x01\xc9\xc1\xdd\x61\x40\x99\x68\x8c\x0e\x03\xca\xec\x75\xeb\x30\x20\x55\x9a\xe9\x30\xa0\xac\x5e\xc3\x80\x32\x4b\x56\x87\x01\xc9\x19\xdd\xe1\x35\xca\xd3\xd1\x6f\x52\xc3\xc3\x10\x3a\xbc\x46\x19\x36\x3a\xbc\x46\x19\x36\x3a\xbc\x46\x6e\xdd\x0e\xaf\xc9\x4d\x4f\xa7\xd7\x78\x6f\x3a\xbc\x26\xeb\xab\xc0\x6b\x94\x8b\xa3\xc3\x6b\x32\x48\xb1\xc3\x6b\x32\xa6\x98\x0e\xaf\x29\x97\xae\x0b\xb4\xf4\x4f\xfb\x2a\xca\x8d\xd1\xe1\x35\xe5\xd6\xf3\x32\x2d\xde\x27\xbc\x46\xb5\x49\x3a\xdc\xa5\xe8\xed\xc2\x5d\x0a\x1e\x93\x0e\x77\x51\x16\x8d\x0e\x77\x29\x60\xd1\x0e\x3f\x29\xcc\xbf\x6e\xbe\x95\x52\x98\x7f\x1d\xdf\x4a\x01\xcd\x77\xb8\x4b\x01\x79\x77\xb8\x4b\xd1\x9b\x87\x9f\xc8\xc9\xdb\xe1\x27\xca\xa9\xd1\x3d\x7d\x21\x85\x55\x87\x83\x14\x54\x71\x87\x83\x14\x8d\x33\x38\x48\x81\xc9\x74\x38\x88\x8a\x77\x74\x38\x48\x01\x2a\x76\x38\x48\x19\xff\x32\x5c\x74\x68\x46\x59\xba\x65\xa3\xa5\x9b\xd8\x2b\xab\x64\x9b\xea\xd0\x8c\xaa\x81\x0c\xcd\x50\xbd\x8c\x0e\xcd\x28\x68\xdb\x0e\xcd\xa8\x2c\x91\x1d\x9a\x51\x41\x83\x1d\x9a\xa1\xac\x16\x1d\x9a\x51\xf5\x02\xa1\x19\x55\xaf\x1a\x9a\x51\x89\x76\xec\xd0\x0c\xe5\xbf\xe8\xd0\x0c\x65\xca\xe8\xd0\x8c\xaa\xd7\x09\xcd\xa8\xa8\x95\x0e\xcd\x90\x27\xb5\x43\x33\x94\x37\xa3\x43\x33\x2a\x9a\xb8\x43\x33\x54\x13\xa3\x43\x33\x6a\xd4\x3d\x17\x2d\x06\x0f\x5c\x42\x19\x36\x3a\x5c\xa2\x6a\x52\xc1\x25\x2a\x08\xb3\xc3\x25\x2a\x28\xab\xc3\x25\x94\xf1\xa2\xc3\x25\xaa\x3e\x34\x5c\xa2\x76\x9d\x43\x3e\x08\x57\x87\x4b\xa8\x46\x45\x87\x2f\x28\x03\x45\x87\x2f\x54\x2c\x5b\x1d\xbe\x20\x27\x68\x87\x2f\x54\xd2\x00\x75\xf8\x42\xc5\xce\xd5\xe1\x0b\x72\x7b\x76\xf8\x82\x9c\x99\x1d\xbe\xa0\x6a\x16\x1d\xbe\xa0\xec\x14\x1d\xbe\xd0\x34\xc5\xe0\x0b\x72\x5f\x76\xf8\x82\x6a\x54\x74\x38\x41\xc3\xdb\xdd\xb3\xaa\x59\xf0\x76\xc1\xef\x0d\xf5\xd7\xc1\xef\xaa\x3c\xd1\xc1\xef\x72\x27\x76\x30\x7a\x63\x1b\x50\x07\xa3\x37\xcc\x1f\x1d\x8c\x2e\x67\x5f\x07\xa3\xb7\xa2\xbb\xd8\xf7\x53\x3d\x89\x0e\x46\x6f\xd8\xb5\x3b\x58\xbb\xa1\x56\x3a\x58\x5b\x19\x1a\x3a\x58\xbb\xe9\x3b\x80\xb5\x1b\xf8\xb6\x83\xb5\x1b\x48\xb8\x17\x64\xd7\x72\x56\xe8\xa7\xbe\x18\x58\xbb\x61\x83\xee\x60\xed\xa6\xd9\x01\xd6\x6e\xb0\xb1\x0e\xd6\x6e\x43\xad\x9b\x73\xf4\x13\xac\x2d\xc7\x63\x07\x6b\x37\x29\xa0\x8a\x0c\xfa\x7e\x60\xed\x46\xe6\x91\x0e\xd6\xee\x18\x27\x3a\x58\x5b\xb9\x23\x3a\x58\xbb\x6b\x31\x05\x6b\x2b\x07\x44\x07\x6b\x77\x29\x27\xb0\x76\xd7\x77\x07\x6b\xab\xbc\x44\x07\x6b\x77\x2d\xc2\x60\xed\x7e\xa9\x9f\x8b\x16\xcf\x03\x6b\x77\x2d\xa6\xe6\x97\x28\x2a\x4b\xd1\x1b\xf2\x69\x84\x80\xc3\x55\xa4\xa2\x83\xc3\xbb\x16\x6f\x70\x78\x07\x4a\x75\x70\x78\xc7\x97\xd3\xc1\xe1\x5d\x23\x0b\x1c\xde\xa5\x0c\xc1\xe1\x5d\xeb\x04\x38\xbc\xc3\xd4\x3a\x38\x5c\x99\x32\x3a\x38\xbc\x47\xdd\x13\xf9\x92\xee\x82\x7c\x38\x5d\x3b\x38\xbc\x13\x4c\xd0\xc1\xe1\x9d\xa0\xd0\x0e\x0e\xef\xfa\x0e\xe0\xf0\xa1\x77\x0d\x0e\x1f\xbf\xde\xe0\xdf\x97\x64\x20\x7a\xd7\x24\x36\x97\x45\x19\xd2\x85\xe6\xb2\x28\xca\x59\xd0\x81\xef\x03\xbc\xd9\x81\xef\xc3\xe9\x9c\x89\xae\x3d\xef\xdd\x5c\x16\x65\x38\xdd\xc5\x44\x57\x75\x89\x0e\xb4\x1f\x9a\x8c\x40\x7b\xe5\x3a\xe8\x40\x7b\x55\x82\xe8\xe0\xf7\x01\x41\xef\x86\xdf\x8b\x32\x18\x74\xf0\xfb\xd0\xab\x06\xbf\x2b\x83\x41\x07\xbf\x0f\x10\x6d\x07\xa3\xab\x4a\x44\x07\xa3\x0f\x4d\x70\x30\xfa\x90\x0e\x05\xa3\xab\x4a\x44\x07\xa3\x2b\xbb\x41\x07\xa3\x2b\x2f\x41\x07\xa3\x0f\x08\x73\x07\xa3\x2b\x33\x40\x07\xa3\x8f\xa8\x7e\x22\x03\x58\xb4\x83\xd1\x47\x51\x0b\x19\x08\x6d\xeb\x13\x19\x08\x4e\xea\x13\x19\x08\x39\xea\xe0\xf7\x21\x9c\x03\x7e\x1f\x78\xad\x3b\xf8\x7d\x40\x9f\x3b\xf8\x5d\xf9\x05\x3a\xf8\x5d\x2e\xd8\x0e\x7e\x57\x75\x89\x0e\x7e\x97\x43\xb6\x83\xdf\xe5\xc8\xed\xe0\x77\xd5\x85\xe8\xe0\xf7\x41\x82\xa2\x3e\x91\x4f\x4a\x1b\xfc\xae\x6a\x16\x1d\xfc\x3e\x84\x68\xc1\xef\x43\xca\x02\xfc\x3e\x96\xce\x99\x0c\x13\x4b\x68\x07\xa3\x4f\xcc\x1f\x1d\x8c\xae\xad\xf3\x1d\x2f\x85\xb6\xb9\x77\xbc\x14\x72\x4a\x76\xf0\xfb\x24\x2c\xac\x83\xd1\xb5\xb1\xbd\x5b\xf0\x55\x99\x45\xf7\xa4\x7a\x0d\x4b\xf2\x00\xbf\x4f\xb6\x7a\x0f\xf0\xbb\x4a\x1e\x0c\xf0\xfb\xe4\x3b\x0c\xf0\xfb\xe4\x7d\x0e\xf0\xbb\xdc\x90\x03\xfc\x3e\xab\xee\x02\xcf\x88\x7a\x02\x32\x60\x72\x18\xa0\xf2\xc9\xb2\x3b\x40\xe5\x73\xe8\x9c\xb2\x20\x4f\x5a\xf4\x7a\xe8\x9e\xf4\x9a\x88\xa0\x01\x2a\x9f\x98\x1c\x06\xa8\x7c\x62\xc8\x1b\xa0\x72\x95\x43\x18\xa0\xf2\x89\xf2\x1d\xf8\x1e\x26\x0c\x76\xb0\xc9\x3e\x62\x41\x1d\xa0\x6b\x39\x17\x07\xe8\x7a\xb1\x0c\x0e\xd0\xf5\x02\xa7\x0e\xd0\xb5\x5c\x78\x03\x74\xbd\xf0\x1a\x0c\xd0\xf5\xc2\x78\x36\x40\xd7\xda\xf0\x3f\x40\xd7\x0b\xaf\xc1\xc0\xde\xbf\xa2\xee\x49\xcc\x43\xd4\x5d\xec\xbd\x2c\x4c\x1c\x03\xcc\xbc\x92\xee\x49\xcf\x58\x22\x07\x98\x79\xf1\x6d\x07\xf6\x7e\xb9\xfe\x06\xf6\xfe\x85\x51\x6a\x18\x9e\x0e\x99\xad\x6f\x83\x3a\x30\x85\x98\xe5\x01\x9e\xbe\x98\xef\x43\x29\x84\x59\x27\x86\xe1\x69\x27\x33\xcd\x30\x45\xe9\x3d\x38\x7c\x98\xa2\xf4\x1e\x15\x37\x4c\x51\x7a\xd9\x8b\x87\x29\x4a\xaf\xaa\xec\xc3\x14\xa5\xf7\xc0\x97\x61\x8a\xd2\x5b\x4d\xf8\xbf\x2e\xc9\xc3\x74\xa8\xd7\xc6\xc5\x61\x3a\xd4\x7b\xac\x9d\xc3\x74\xa8\xf7\x2c\x60\xc3\x74\xa8\x57\xd2\xec\x61\x3a\xd4\xfb\x4b\x0f\xef\x3c\x4e\xd7\x0d\x5a\xba\xe7\xa4\xd5\x68\x2d\x3a\xcd\x67\x30\x1d\xea\x65\x9f\x1e\x8d\x4e\xb3\xf4\x8c\x46\xcf\xf0\xbc\x0f\xd3\x7e\x5e\x15\x0f\x86\x69\x3f\xaf\x1a\x07\xc3\xb4\x9f\xbb\x31\x63\x8c\x46\xcf\xba\xfe\xd9\xed\x9c\x86\x99\x29\x20\xef\x30\x55\x8c\xce\x2b\xc3\x86\x39\x3a\x4f\x67\xf2\x8f\xce\xd3\x21\xfd\xc3\x14\x90\xd3\x66\xd6\x61\x0a\xc8\xc9\x29\x32\x4c\x01\x39\x07\x52\x1c\xa6\x80\x9c\xd3\x04\x37\x05\xe4\x1c\x64\x6c\x98\x02\x72\x4e\xbd\x36\x05\xe4\x1c\x11\xc5\xc3\x94\x4c\x50\x9d\xeb\x81\x92\x51\x2c\xf0\xa0\x7a\xda\xc4\x39\x35\x86\xf0\x83\xae\xa3\xe4\x0e\x2a\x75\xc8\x2f\xde\xf5\x4f\xca\x76\xe9\x9d\x99\x02\x0a\x5e\x8b\x8d\x29\xa0\x91\xa3\x1f\x2a\x04\x35\x4c\x09\x85\x77\x18\xa2\x84\x14\x55\x3c\x48\xed\x22\x37\xde\x50\x04\x30\xfe\x80\x21\x25\x44\x2a\xcf\x41\x04\xb0\xb2\x42\x0c\x2a\xa8\x29\x17\xc2\xa0\x82\x9a\xc3\x92\x3f\xa8\xa0\x26\xfb\xe0\x30\x25\xb4\x14\x33\x3a\xf0\xa2\xcb\x0a\x3e\x64\x44\x22\xe6\x63\x98\x12\x0a\x91\x68\x8d\x61\x4a\xc8\x2b\x4d\xd0\x98\xca\x34\xa1\x27\x90\x2d\x43\xef\xc6\x94\x50\x58\x04\x6e\x0d\xf2\xb7\x14\x90\xd6\x30\x25\xf4\x2c\x2d\x7e\xa6\x84\x82\xc7\x7e\x3d\x30\x22\x5d\x44\x6b\x8c\xa9\xd8\x0d\xfe\x69\x4a\x28\x84\xa6\xd6\x6d\xef\x34\xcd\xd1\x51\x4b\xc3\x14\x51\xe8\x9a\x41\xaf\x21\x09\x39\xc8\xe1\xa2\x18\xeb\x41\x65\xb6\x1b\x94\x36\x4c\x49\x8d\x1c\xe2\xe8\xef\xbf\xc9\xf1\x02\x17\x1b\xda\x7b\x09\x08\x19\xeb\xe7\x5b\xce\xa5\x23\x26\xeb\xa5\xf9\x68\xc6\xa6\x50\xa5\x20\x28\xc3\xe6\xb5\xd8\x49\x91\x69\x9c\x13\x45\xac\x1a\x7e\xc3\x14\x59\x18\x70\xa7\xa9\x7a\xd9\xcc\xd5\x49\xbd\x6c\xa9\xb5\x29\x45\x06\xd3\x98\x28\xb2\x01\xfe\x9c\xe4\x80\x09\xcc\x96\x79\xc9\x0d\xaa\x7b\x5a\x0d\x17\x45\x57\x4f\x4a\xb4\x69\x73\xca\x24\x8a\x38\x30\x5e\x27\x86\xa8\x86\xb5\x7c\x62\x88\xd2\xb6\xe9\x49\x62\x4d\xdf\x75\x97\x6e\x5f\x6f\xe9\x79\xf6\x2d\x15\x72\x38\xe5\x8a\xc7\xaf\x35\x4d\xe5\xf1\xbd\x50\x90\x93\xc4\x9b\x57\x52\x4b\xf9\x78\xb8\x13\x6a\x4f\xc9\x1f\x26\x65\xda\x22\xb0\x65\x9a\x31\x6a\x29\x72\x79\x12\x2e\x1c\x00\xa8\x93\x70\xe1\xa0\xb7\x68\xee\xf8\xf0\xa0\x4a\xa7\xb9\xe3\x83\x29\xdd\xbf\x2e\xd3\x93\x0a\x6e\xda\xb6\x30\xdf\xed\x99\x9e\x16\x5e\xe0\xaa\x4e\x63\x4b\x2c\x7a\x80\xf6\x25\xf1\x4a\xd1\xb9\x89\x18\xbd\x89\xce\xbd\x88\xb4\x9d\x4a\x6c\xc3\x14\x98\x54\x70\x7b\xc0\x92\xd3\x29\x58\x84\xeb\x88\x32\x56\x45\xeb\x49\x19\xee\xa7\xe9\x3a\x1b\xc6\x19\xda\x35\x49\x6c\x73\x33\x39\x27\x89\x6d\xee\xa4\xbb\x10\x65\xac\x4f\x61\x16\xad\x20\xe7\xc4\x44\x73\x5f\x7a\xf1\xa6\xb9\x83\x03\xb1\x4d\x2a\xb8\xc9\xad\x37\x49\x6c\x13\xb0\xb5\x4d\x34\xf7\x15\x74\x17\xcc\x09\x20\x85\x49\x94\xf1\xcd\xa4\x9e\x68\x6e\x05\x56\x4d\x34\xb7\x12\xd2\x4f\x34\xb7\x42\x6a\xa6\xd7\xa7\xe5\x4d\x10\x65\x1c\x41\xa4\xd3\xc7\x9f\x01\x94\x75\xad\x82\x7a\x74\xad\x95\x21\x52\x96\xdc\x89\xa5\x4c\x31\xb4\x93\x2a\x6e\x15\x4b\xe7\x24\x69\x67\x07\xa3\x4e\x22\x8d\x95\x3c\x75\x92\xb4\x53\x93\x79\x5a\xa4\x71\x50\xe4\xc0\xa4\x8a\x9b\x94\xf2\xa4\x8a\x5b\x61\xa2\x4f\x2c\x6c\xda\x60\x3f\xcd\xc2\xb6\x14\xda\x3f\xa9\xe2\xf6\xb0\x30\x4d\x2c\x6c\x37\x35\x52\x26\x55\xdc\x1e\x48\xfd\x34\x2f\xff\x52\x86\xd9\x69\x5e\xfe\x90\xf5\x65\xf0\xf2\xe7\xa0\x27\xd8\x37\xcc\xb8\x43\xa7\x99\xdf\x78\x37\x49\xbd\x63\x1b\x38\x16\xbf\x49\x24\xb2\x16\xca\x69\x26\xb8\x90\x31\x7f\x4c\x92\x81\xaa\x48\xed\xc4\x04\xa7\x28\xd7\x49\x32\x50\x25\x0c\x9a\x41\xa5\x96\x78\x6f\x66\x82\x0b\x4a\x96\x3e\x83\x22\x82\xb8\x0b\x26\xb8\x77\x64\x06\x45\xcc\xa8\x45\x34\xf5\xa5\xbb\x50\x8a\x48\x7d\xa1\x92\x5b\xd1\x02\x42\x32\xd0\xa2\xd1\x1e\x50\x99\x5a\x78\x48\x06\xea\x34\x86\x31\xc1\x5d\x98\x0a\x67\x20\xbf\x2f\xa6\x91\x19\xf0\x4b\xe0\x36\x9b\x4a\x14\x0a\xee\x9f\x94\x6b\x5b\xfa\x32\x51\x11\x25\x6a\x99\xca\xf4\x1a\x33\x94\x6b\x53\x8c\xc5\x24\x82\xb9\x12\x61\x35\x29\xd7\x96\xd4\x33\x12\x85\x56\xcd\x74\x4c\x70\x17\x9b\xec\xa7\x99\xe0\x42\x2d\xba\x8e\x68\x71\xa7\x73\x26\xdf\xd4\x17\x23\x51\xa8\x22\xc1\xa6\xb9\xfa\x97\xcc\x81\x93\xe8\xe6\xf0\xf6\x8c\x1c\xe1\x55\xff\x34\x35\x52\x71\x46\x4f\x33\xeb\x05\xa5\xfd\x9a\x94\x72\xeb\x98\x85\x26\xfb\x3b\x1f\x8d\x35\xcc\x7a\x19\xd0\x31\x31\xeb\x75\xcd\x66\xcc\x7a\x93\xb8\x9b\x69\x66\xbd\xa0\x98\xa3\x89\x59\xaf\x48\x8d\x28\x51\x28\x20\x6f\x2a\x0c\x80\x9d\x92\x93\x52\x6e\x37\xa6\x9f\x49\xa2\xd0\xf8\x3e\x81\xfa\x2a\xff\x4c\xdc\x39\xc9\x21\x7a\xe3\xb5\x9e\x04\x4c\x5f\x97\x3a\xad\x0c\x0d\xbc\x24\x8b\x10\x58\xaa\x3b\x3d\x2d\x0a\x60\x15\x70\xcc\x54\xc9\x6d\xdd\x25\x6b\x7f\x20\x2f\x3e\x7f\x96\x99\x4b\x47\x6c\x1a\x2a\x94\x69\x5a\x24\x80\xf4\x98\xee\x5d\x7e\x8e\x40\x08\xa6\x59\x1b\x43\xf0\xba\xa2\xd1\xd2\xbf\x4d\x63\x06\x0d\x4e\xb3\x36\x86\xa8\x97\x49\x8d\xed\xa8\x4f\x69\xd6\xc6\x90\x35\xc8\x2c\x22\x20\x54\x3c\xe6\xb3\x80\x7e\x9e\x38\x26\x58\x78\x16\xa1\x1f\xfd\xdb\xdb\x87\x87\xf4\x4c\x2a\xbb\x5d\x78\x72\x27\x95\xdd\x3c\x76\xe7\x49\x65\xb7\x47\x53\x9c\xca\x6e\x01\xd2\x33\xa9\xec\x16\xb0\x7e\x4e\x2a\xbb\xc9\x71\x36\xa9\xec\x96\x96\x9e\x6e\x95\xdd\x54\xb8\x7f\x52\xd9\x4d\x89\xdc\x27\x95\xdd\x54\x38\x72\x9a\x15\x73\xe4\x70\x8d\x05\x36\x9d\xe5\x07\x19\x0c\xb0\xfb\x24\x49\xa8\x72\x74\x4c\x92\x84\xaa\xd2\xca\xac\xaa\xbb\xc2\xe0\x27\x49\xa8\xb2\x1e\x4c\xd5\x4c\xc0\x76\x3b\x49\x12\xaa\x24\xf1\x93\x24\xa1\xca\x98\x3d\xeb\x9e\xcf\x7a\x92\x24\x54\x39\x7a\x27\x25\x14\x94\x3c\x75\x2a\x49\x68\x55\x5f\x48\xc2\x28\x39\x49\x12\x3a\xde\x73\x63\x4b\xfa\x38\x49\x12\xaa\x6c\x6e\xf3\x2b\x41\xcf\x54\x82\x1e\x7c\xf0\x93\x28\x6b\x39\x4e\x27\x51\xd6\xe2\x73\xb3\x29\x3b\x0a\xf2\x11\x65\x1d\xb4\xb4\x10\x65\x1d\xbc\xee\xc9\xb6\xdd\xac\xbb\xb0\x6d\xf7\xbd\x27\x7b\xd9\x34\x33\x88\xb2\xd6\x1e\xb8\xd9\xb4\xc9\x48\x77\xd1\x26\x1c\xde\x12\x51\xd6\x8a\xe6\x9f\x8a\xb2\xc6\x0e\x39\xdb\xdc\x62\x92\x67\x5b\x5b\x9c\xec\xec\x0a\xb4\xa4\x9f\x58\x33\xdf\x25\x9e\x5a\xdc\x0a\x48\x9b\x58\x33\x6f\x4c\x5e\x13\x93\xa5\x22\x46\xa6\x4a\x2f\x48\x19\x60\xb2\x94\x8b\x7c\x62\xb2\x94\x93\x7a\x62\xb2\x94\x7b\x79\x62\xb2\xcc\xef\x3f\xb1\xa8\xeb\xcd\x63\xb2\x6c\x9a\x09\x98\x2c\x65\x0b\x9f\x98\x2c\x65\x04\x9a\x98\x2c\x65\x7c\x98\xc6\x18\x9d\x42\x5c\xa7\x31\xc6\xa5\x6a\x96\xd3\x18\xa3\x57\x52\xb1\x69\x8c\xd1\xbd\x0b\xb7\x31\x46\x77\x09\x08\x18\x63\xf4\xca\xa3\x37\x8d\x31\x3a\x05\xed\x4e\x63\x8c\x4b\x51\xcf\xd3\x18\xa3\x7b\x61\x88\xb1\x45\x77\x61\xe1\x9e\xc6\xec\x96\x2a\x4f\xce\x49\x5f\xa4\xde\x8c\x4d\xad\x25\xf0\x68\x6c\xca\xbf\x4a\xd9\xd8\x94\xbf\xf0\x8f\x4c\x63\x53\xfe\xc2\x67\x36\x8d\x4d\xf9\x0b\x86\x36\x8d\x49\x79\x85\xf7\xce\x85\x7c\x51\xd7\x19\xab\xb7\x4c\xe9\x7f\x5f\xaa\x8d\x64\x79\x25\xc0\x9b\x0b\xd1\x35\x24\x8c\x60\xf9\x4b\x0b\xc4\xc2\xdc\x80\xf1\x61\x2e\xcc\x0d\x42\x0b\x46\xae\xfc\xa5\x25\xd1\xc8\x95\xbf\xaa\xee\xd2\x69\xa9\x9b\x66\x08\xb9\xb4\xe0\x2f\x44\x9f\x6a\x21\x3a\x16\xb6\x75\x21\x3a\xa6\xf7\x75\x21\x3a\xee\xad\x75\x3d\x9b\x45\x68\x5d\x61\xb3\x08\xad\x2b\x6e\x16\xa1\x75\xa5\xcd\x22\xb4\xae\xbc\x59\x84\xd6\x55\x7e\x2c\x42\xbf\x5a\x75\x33\xfb\xac\xab\x6d\x66\x9f\x75\xf5\xcd\xec\xb3\xae\xb1\x99\x7d\xd6\x35\x37\xb3\xcf\xba\xd6\x66\xf6\x59\xf7\xb5\x99\x7d\xd6\x7d\x6f\x66\x9f\x75\xbb\xcd\xec\xb3\x6e\xbf\x99\x7d\xd6\xad\xcc\x5d\xba\x0b\xa9\x91\x08\x61\x5a\xc6\x6d\x42\x0c\xba\x67\xdf\x4c\x18\x8b\xa4\x9d\xca\x68\xb6\x54\x9d\x1a\x5a\xbb\x48\xda\xd9\xd0\xec\x0b\x7b\xa2\x6a\x42\x2c\xb8\x8d\xb2\x7a\x2d\xb8\x4d\x61\x3a\x2c\xec\x89\x62\x48\x8b\xa4\x9d\x62\x2c\x8b\xa4\x9d\x15\x06\xb1\xe0\x36\xad\xea\x9c\x29\x29\x05\x30\x2e\xb8\x8d\x90\xee\x22\x69\xa7\x10\xe4\x32\x6e\x13\x3c\xcc\x63\x39\x25\x5f\x57\xcf\x08\xe6\xc7\x00\xb6\xe0\x36\x72\xf1\x2c\x27\x33\x04\x6f\xd0\xb8\x4d\xf0\x4c\xe9\xe5\x31\x43\xe8\xbd\x18\xb7\x09\x11\x15\xb0\x64\x95\xbc\x75\xce\x94\x70\xc1\x4d\xb5\x8c\xdb\x84\xae\x77\x6d\xdc\x26\x4c\x54\xe0\x32\x6e\x13\x26\x36\xfb\x45\x75\x6a\xc7\xb4\x5d\xf0\x9a\xd8\xd5\x32\x25\x2c\x07\xda\x52\x75\x6a\x8d\x02\xaa\x53\xab\x1c\xef\xf2\x7b\xb1\x85\x05\xaf\x51\x92\xf8\xe5\xe7\x96\x40\x74\xb1\x83\x52\x89\xa7\x16\x3b\x28\x95\xed\x62\x3d\x7b\x3e\x86\xf5\xec\xf9\x18\x16\x91\x03\x72\xd0\xaf\xe7\xd9\xac\xe6\xcb\x78\xcd\x52\xbd\xed\x05\xaf\x59\xb0\x8a\x65\xbc\x66\xad\x4b\x77\xf9\x25\xdf\xad\x5a\x9a\xcb\x78\x8d\x0b\x92\xd6\x78\x8d\x0b\x4d\xd7\x99\xb9\xef\x56\xaf\x1f\x8c\x8d\x9a\xc5\xc6\x69\xdc\x8d\x29\x6c\x19\xa7\x71\xf7\xd4\x3d\x97\xdd\x05\x3e\xbf\x8c\xd3\x38\x65\x94\x59\xc6\x69\x5c\x84\x63\x2d\xe3\x34\x2e\x02\x9b\x96\x71\x1a\x17\x35\x96\x02\x2b\x03\xf6\xe7\x15\x58\x19\xde\x7b\x32\xfb\xf5\xae\x8d\xb7\xb8\x1b\xd5\xb8\x02\xb3\x1f\x1b\xc1\x0a\xcc\xfe\xa6\x73\xcc\xfe\xa6\xbb\x30\xfb\x9b\xfa\xc2\xec\x87\xfd\xac\xc8\x9c\x86\x89\xae\xc8\x9c\x2e\x3a\x47\xcf\xc6\xbf\x12\x7a\xae\x48\xa7\xa1\x03\x2b\x7e\x2d\x67\x91\xe5\xec\xd6\xb9\xaf\xe5\x2c\xb2\x9c\x69\x02\xc4\xaf\xe5\x2c\xb6\x7d\x21\x8a\x7d\x5f\xc0\x22\x02\x3d\x7a\x02\x02\x81\x8a\x57\x5c\xfb\xb2\x94\x58\xce\x40\xf2\x2b\xb1\x9c\x81\xd5\x56\xd2\x72\xc6\x3d\x13\xa2\x43\x42\x57\x42\x74\x5c\x97\x2b\x85\xcd\x1a\xbd\x92\x6c\xcc\x4c\x2a\x23\x2a\xaf\x6d\x7a\x19\x51\x71\x51\xc3\x3a\xa1\x72\xb4\x24\x27\x54\x8e\x53\x5f\x7e\xc9\x77\x49\xc9\x2c\x23\x2a\x97\x2a\xe7\x2e\x63\x23\xd7\xe5\xaf\xeb\x02\x5f\x2c\xc3\xc1\xde\x69\x39\x37\xec\xe1\x1d\x1a\x77\x75\xce\x41\xdb\x96\x61\x0f\xaf\xe0\xfb\x65\xd8\xc3\x3b\xf6\x1c\x2e\xc3\x1e\x5e\x89\x26\x97\xb9\x4b\xbd\x12\x4d\x2e\x73\x97\x7a\x07\xa1\x5c\x86\x4b\xbc\xd3\x1b\x36\x5c\xe2\x9d\x16\x31\x70\x89\x93\x54\x43\xd6\x78\xbe\xa1\xe1\x12\xef\xf4\xf6\xc1\x25\x4a\x5e\xb9\x0c\x97\x78\x47\xbc\xc0\x32\x5c\xe2\x9d\x86\xa1\xe1\x12\xef\x34\xc9\x07\xf2\xe9\xdd\x0c\xe4\x03\x57\xae\x81\x7c\x70\xac\x35\x90\xaf\xea\x9e\xc8\xa7\x29\x31\x90\x0f\x37\xeb\x9a\xc8\x87\xb3\x6f\x4d\xe4\xc3\xbd\xb7\x26\xf2\x81\xef\xd7\x44\x3e\x4c\x71\x6b\x22\x9f\xbe\xcc\x44\x3e\x8d\x74\xb3\x62\xbb\x57\x95\x99\x15\xdb\x29\x73\xe0\x32\x2b\xb6\xf3\x40\x8a\x65\x56\xec\xa5\x6a\xee\xcb\xac\xd8\xce\x4b\x5a\xb3\x62\x3b\xff\x3e\xaf\xd3\x52\xaf\xc7\x7e\x9d\xa1\xa9\x4f\x2b\x7c\xb5\xe4\x77\xe1\x2e\x4b\x1e\x21\xbe\x8a\x01\xa1\xeb\xc2\x6a\xbe\x0c\x08\x5d\x57\xd3\x3f\xb5\x8c\xf0\x76\x01\x42\x1e\x90\xb4\x00\x42\x5e\x4a\x7d\x31\x2a\x93\xbf\xae\x18\x2e\xe1\xb6\x65\x80\xe8\xba\xe2\xb8\xae\x58\x2e\x59\x65\x17\xc0\xc8\x59\xb6\x18\x77\x5d\x5a\x64\x32\x2d\x8f\x3f\x65\xd0\x7a\xb0\xd3\x5f\xb4\x34\x7e\xd4\xd2\x58\x4e\xb4\xf8\xd6\xa6\xbe\xdc\x65\x20\xc6\xa5\x4a\xcb\xa0\x89\x23\x3d\x9a\xbb\x6e\x2d\xb0\xdc\xc5\xec\xba\x2e\x5a\xac\x94\x01\x68\x6b\x79\x5a\xb8\xed\xcc\x7f\xe1\x2e\x03\x2a\x2e\xde\xf4\xda\xc0\x88\xa3\xf2\xa0\xbb\x6e\x49\xc4\x13\x0c\x8c\xb8\xc7\x78\x89\xbb\x0c\x70\xac\x75\xf3\x3c\x03\x1c\x9f\x16\x70\xf5\x52\xcb\xee\x19\x32\xf7\x74\x28\x90\xcc\xf3\x0c\x00\xb8\x90\x79\x2f\x06\x00\x5c\xb0\x04\x00\xee\xf2\xc8\x67\x61\xa8\xee\x32\x00\xe0\x88\xb8\x77\x97\x01\x00\x67\x95\x2a\xff\xb6\x4c\xbb\xcb\xa3\x03\xf5\xaa\x3d\x3a\x30\xd2\x15\xd3\xf1\x2e\x04\x9d\xeb\xb4\xd4\xb1\xc1\x3f\xf5\x38\x44\x88\xbc\xf8\x87\x6e\x4e\x5e\xee\x43\x37\x4d\x3b\xbb\xeb\xa1\x9b\x9d\x27\x98\x1e\xbf\x40\x26\xee\x22\xb0\xef\x32\x25\xe1\x2e\xac\x8a\xab\x21\x9e\x69\xe0\xc5\xf6\x52\x77\x3d\x0c\xbb\xa6\xeb\xc0\xdf\x37\x9f\xef\x01\x7f\x17\xfe\x19\xc0\xdf\x85\xbb\x04\x51\x2b\x9e\x10\xa0\x33\x17\x12\x05\x51\x24\x5d\x97\x69\xe9\x1c\x14\xe9\x66\xb0\x06\x28\xd2\x8d\xec\xa6\x65\xed\xfd\x5b\xcb\x90\xec\x3d\x74\x17\x99\x90\x18\x20\xa6\xf6\xae\x2b\xe4\xeb\x7a\xca\xfb\xe3\x4c\xfe\x3a\x13\x18\x7a\xb1\xfc\x1c\x7d\x8f\xa0\x12\x52\xd6\xc4\xb2\x1f\x67\xc6\xd7\x99\xa4\xff\xcf\x9f\xa3\xef\x11\x1b\x5e\x58\xcb\xdd\x65\xaa\xd0\xdd\x17\x92\x98\x2a\x74\xe4\xd9\x76\x97\xa9\xc2\xeb\x0a\xcf\x75\x3d\xbc\x2f\x53\x87\xee\xf6\xbc\x4b\xd4\x21\x29\xdd\xdd\x65\xea\xd0\xdd\x9d\xa7\xa0\xf2\xee\xe2\xdd\x5d\x18\x13\xa6\xbe\x42\x71\x4c\x5b\x33\xa6\x05\x8c\x5e\xee\x4a\x9a\x46\x0c\x72\x33\xa6\x45\x16\x49\x77\xd9\x76\x9b\x98\xae\x52\x62\xb8\x9e\x75\xd7\x54\x3c\xdf\x84\x4c\x04\xbd\xde\x21\x4e\x1f\xfb\x08\xcf\x6c\xc8\x91\x51\xdb\x89\x7e\xe6\xe7\xa3\x9a\xdd\x95\xc3\x1f\xef\x17\xff\x78\x3f\x16\x4e\x7d\xe1\x0c\x5c\x79\x74\x55\xf9\x00\x1b\x77\xe5\xfa\x01\x36\xee\xca\xed\xb3\xe0\xba\x2b\xf7\xaf\xd6\xf8\x6a\xcd\xaf\x27\xac\xfd\x09\xe5\xfa\x6a\xdd\x5f\x2d\xf7\x81\x47\xee\x2a\xfe\x03\xa4\xdc\x55\x9e\x0f\x90\x72\x57\x09\x1f\x40\xe4\xae\x12\xbf\x5a\xe9\xab\x95\x3f\xb0\xca\x5d\xa5\x7c\x60\x95\xbb\x4a\xfd\x6a\xb5\xaf\x56\xff\x80\x33\x77\x95\xf1\x81\x5c\xee\x2a\xf3\x03\xb9\xdc\x55\xd6\x07\x56\xb9\xab\x5e\x5f\xad\xfb\xab\xe5\x3e\x90\xcb\x5d\x6f\x94\x84\x5a\xcf\x57\x2b\x7c\x80\x9b\xbb\x14\x25\xe1\x19\x7b\x54\xe9\x99\x5a\x1a\x49\x73\x50\x34\xcf\x09\x27\xf4\x0f\xef\x8c\x70\x42\x97\xd5\x22\x3d\xaa\xe6\x72\xc5\x95\x2c\x75\x82\x01\xee\xd2\xea\x64\x06\xb8\x18\xdf\xe7\x99\xef\x26\x4b\xb5\x11\x4e\x48\x96\x68\x77\x99\x01\x2e\x92\x13\xd1\x5d\x66\x80\x0b\x6c\x77\x77\x97\x19\xe0\x9e\xe9\x74\xdd\x63\xad\xc9\x3d\xcd\x00\xf7\x90\x14\xc0\x5d\x66\x80\x7b\x96\xde\xa7\x19\xe0\x9e\xa5\x51\x60\x06\xb8\xc7\x36\xd4\xff\x7d\xe9\x37\xdb\xdc\xb3\xb4\xb4\x98\x6d\xee\x59\x85\x8f\x69\xb6\xb9\x67\xe9\x95\x35\x44\x2f\x6a\x0d\x5a\x4c\x7c\xb3\xcd\x3d\xab\x33\x79\xcd\x36\x17\xae\x87\x8e\x99\x6d\x2e\xbc\x0b\xba\xd9\xe6\x9e\xb5\x98\x88\x66\x9b\x0b\xef\x02\x6b\xb6\xb9\x40\x85\x06\x77\x99\x6d\x2e\x5c\x52\x4a\x66\x9b\x0b\xef\x22\x64\xb6\xb9\x70\xe9\xe9\x66\x9b\x0b\xd7\x52\xcb\x5c\x1e\xd7\xe0\x05\x9a\x6d\x2e\xb0\x29\xd9\x5d\x86\x8f\xc3\x1d\xf5\x4f\xd5\x3a\xa0\xd7\x9d\x45\xbb\xa9\x2f\xb6\x54\xdd\x93\x57\xdd\x71\xe9\x68\x1a\x19\x3e\x0e\x4e\xca\xc5\xf0\x71\xc0\xc0\xe1\x2e\x22\x3d\x5c\xa7\xd7\x86\x8f\x83\x1b\x7c\x68\xc3\xc7\xe1\x9d\x00\x03\x7c\x73\x31\x58\x0d\x1f\x07\xef\xe8\x99\xe1\xe3\x80\x17\xdf\x5d\x86\x8f\x03\xc9\xc8\xdd\xa5\x48\x8f\xa6\x73\x05\x83\x03\x32\x18\x3e\x5e\x55\xca\xcc\xf0\x71\x78\xde\x7e\x9a\x7c\x8f\xbe\xa6\xe1\xe3\xf0\x54\x06\xa4\xe1\xe3\xf0\xe8\xab\x18\x3e\x0e\x21\x23\x91\xe1\xe3\x00\x3d\x77\x97\xe1\xe3\x90\x84\x99\x0c\x1f\x87\x54\x79\x82\xe1\xe3\x90\x34\xe4\x0d\x1f\x07\xd2\x3a\xba\xcb\xf0\xf1\xaa\x5a\xec\x89\xf2\xc0\xb5\xe8\xae\x89\xdb\x51\x98\xd0\xf0\x71\xc8\x92\xcf\xf0\x71\x28\x17\x6f\x90\x28\x0f\xca\x78\xba\xcb\xf0\x71\x28\x41\xe7\x3a\x2d\xde\x04\x51\x1e\x45\x68\x8e\x28\x8f\x52\x79\xbb\x66\x97\x0c\x45\x0b\x3b\x51\x1e\x4d\x33\xc0\x90\x74\x68\xfa\x7e\x54\xe9\x09\x8e\x5e\x9b\x5d\x32\x34\x8d\x2c\xb3\x4b\x86\xa6\x6f\x6b\x98\x3b\x74\x8d\x64\xc3\xdc\xa1\x6b\x4c\x18\xe6\x0e\xfd\x7d\x9e\xc9\xd7\x17\x6f\xd0\x30\x77\x18\x52\x89\x44\x76\x0c\xc9\x67\x98\x7b\xd5\x9b\xc9\x6f\x98\x3b\x0c\xcd\x00\xc3\xdc\x81\x84\x3c\xee\x36\x03\x63\x18\x40\xa8\xdb\x0c\x8c\x81\xe0\x3b\x77\x5f\x2c\x2f\xc6\xf4\xdc\x6d\x18\x3b\x50\x27\xc7\xdd\x60\x6c\xb2\x54\xb8\xdb\x30\x76\x58\x66\x99\x77\x37\xd1\x1b\x57\xd0\x13\xcc\x44\x84\x71\xd5\xdd\x66\x7c\x8c\xa4\x32\x30\xac\xf0\xab\xf5\x5e\x57\x69\xe9\x9f\x66\x22\xba\x9d\x7a\x66\x7e\x9a\xcb\xec\xdf\xee\x36\xdc\x1e\xef\x5b\xfd\xb4\xe5\xf3\xf6\xea\xcb\xa2\xc5\x75\x66\x7c\x8c\xb7\xf1\x37\x77\xdf\x98\xf8\x80\x7a\xf7\x8d\x7d\x9f\x77\x7d\x13\xb9\xe1\x79\xbb\xf7\x4d\xf8\x42\xd4\x5d\x70\x7d\x33\xdf\xef\x1b\x3f\x54\xa7\xd7\x37\x7e\xa8\x47\x2d\x4c\x60\x97\xae\x33\xf9\xe2\xad\x7b\x56\xce\x15\x5a\x26\x5f\x74\xba\xae\xf3\x4f\xb5\x06\xe7\x78\xf3\x98\x30\x8d\x6d\xfc\x75\x49\xbe\x8d\x50\xc4\x88\xee\xbd\x1d\x81\x39\x4c\xbf\xdb\xac\x9b\xab\xde\xbc\x40\x47\x90\x55\xe2\x45\x38\x82\x56\x8a\xfe\x69\xa2\xc7\x8a\x08\x44\x6e\xc4\xa6\xeb\x22\xad\x45\x2b\xa1\x8d\xf8\x98\x66\xdd\x8c\xec\x2f\x74\xb7\xc3\x05\x77\xab\x2f\xb8\xe0\x20\x45\xb7\x59\x37\x23\xb9\x59\xdd\x4d\xe4\x06\x89\x46\xdd\x6d\xd6\xcd\x48\x9e\x58\x77\x1b\xb9\x89\xf9\xe2\x43\x3b\x34\xe3\xc3\x6b\x31\x72\x13\x33\x5c\xe0\xf6\x92\x0f\x89\x8c\xdc\xc4\x12\xf9\xec\x9e\x20\xb2\x5b\xd7\xc9\xa5\xaa\x73\x26\x1f\x1b\x79\xdc\x6d\xd6\xcd\x58\x35\x78\xb0\x6e\xb2\xd1\xc5\xdd\x58\x37\x09\xe6\x71\x37\xd6\xcd\xaa\x37\xa8\xa8\x8d\x84\xec\x58\x37\xeb\x7b\xcf\x4e\x4b\x4f\x37\xf9\x08\x58\x72\xb7\xc7\x3a\xed\x25\x83\xc9\xd7\xcd\xb1\xe2\x6e\xa2\x36\x3a\x8b\xe9\xfd\xe0\x11\x87\x5b\xdd\xc6\x8a\x22\xb9\xc0\xdc\x4d\xd4\xc6\x00\x4b\xdf\xc6\x8a\x22\x91\xe1\xee\x26\x6a\x63\xbc\xd7\x99\x7c\xa3\xe8\x9e\x26\xdf\xa8\x7a\x9e\xc9\x37\xf4\x3e\xcd\xba\x19\x89\xb1\x76\xb7\x71\xab\x38\x34\xfd\x8c\x5b\x45\x12\x5b\xb9\xdb\xb8\x55\xa4\xc8\x99\xbb\x1f\x5c\xa8\xaf\x0c\x13\xab\xaf\xfa\xb2\xf8\x27\xe7\x8c\x5b\xc5\xa9\xb1\x64\xdc\x2a\x52\x40\xcb\xdd\xc6\xad\xe2\x6a\x4c\x9c\x40\xe4\x8d\xa6\x26\xe5\x5b\x49\x58\xe3\x6e\xca\xb7\x5e\x28\xc3\x9b\xf2\xad\x94\x78\x72\xb7\x22\x36\xb4\xf4\x50\xbe\xf5\xaa\x7c\x4d\x22\x36\xee\x4b\x4f\xaf\xb4\x78\x83\x44\x6c\xdc\x92\x21\xe0\x06\x7e\xee\x31\xb5\xe0\x10\x99\x81\x2b\xd0\xdd\x94\x70\xa5\xd2\x8b\xbb\x29\xe1\xea\x9a\xce\x39\x5a\x3a\x67\x2e\x60\xa9\xea\x3b\x12\x41\x04\xda\xbf\x29\xe1\xea\x13\x72\x10\x99\x41\x11\x05\x77\x53\xc2\xd5\x83\x1d\x6f\x4a\xb8\x7a\x8d\x20\x4a\xb8\xfa\xc9\x38\xa4\x84\xab\x1f\x7c\x27\x22\x33\x1e\xbd\x1b\x4a\xb8\xbe\x0b\x1c\x25\x5c\x1f\xa7\xbb\x4c\x5a\x8c\x27\x4a\xb8\x3e\x8e\xe7\x51\xc2\xf5\xd1\x42\x45\x09\x57\x92\x0d\xb8\x9b\x12\xae\x4f\xd6\x3f\x4d\x3e\x4a\x15\xb8\x9b\x12\xae\x41\x73\x97\x12\xae\xb2\x0d\xdc\x94\x70\x8d\x59\x77\x49\x38\xc3\x79\xdf\x44\x66\xc4\xa2\xe7\x15\x5a\x7c\x35\x4a\xb8\x46\x2d\xd9\x49\x6a\x0e\xf9\x88\xcc\x48\x9a\x9f\x30\x46\x4c\x7c\xee\xa6\x84\x6b\x96\x62\xa3\x84\x6b\xd6\x92\x4d\x09\xd7\x0c\xb4\xbb\x29\xe1\x9a\x13\x6f\x82\x12\xae\x45\xeb\x01\xd5\x57\x09\xc6\x70\xb7\xf1\xba\x65\x89\x4f\xff\xbe\x2c\x53\x98\xb5\x48\x04\x0a\xb3\xb2\xb7\xcd\xdd\x14\x66\x25\x51\xa7\xbb\xb3\x04\xe2\x45\x50\x98\x95\xbd\x6d\xee\xa6\x30\x6b\xd3\x6b\x31\xca\xb7\xc8\xb3\xea\x6e\x0a\xb3\xb2\xdd\xc4\xdd\x14\x66\x1d\x1a\xbe\x14\x66\x1d\xd2\xd4\x14\x66\x1d\x5a\xdc\x29\xcc\x3a\x34\x94\x28\xcc\x3a\xb5\x10\x53\x98\x75\x3d\xba\x8e\x3a\x6e\xd8\xc6\xee\x22\xd1\xe9\x4b\x51\x41\x1a\x9d\xa3\x62\x8b\x06\x08\x99\xed\x44\x9f\xef\xa2\x8a\x26\xba\xa7\x2a\x9a\xe8\xe9\x54\xc4\x78\x65\x50\x45\x0c\x5e\x75\x51\xc5\x0f\x06\x39\x99\xed\x82\x14\x1b\x99\xed\x82\x16\xe9\xaa\x70\x36\x9e\x47\x66\x3b\xe2\x70\xdd\xad\x7c\xda\x9a\x0e\xca\xa7\xad\xe9\x00\xad\x7b\xd5\x23\xd9\xeb\xaa\x10\x05\xd9\xeb\xa8\x1a\xee\xee\xaa\xe4\xad\x3a\x47\x48\x9e\x26\x38\xd9\xeb\xd8\x24\xed\xee\xca\x37\x72\xba\x27\xc9\x5b\x25\x6d\x53\xf2\x4f\x24\x22\xae\xa2\xe9\x2d\x11\x57\xc1\x9e\x2a\x77\x13\x57\x41\x79\x57\x77\x13\x57\x31\xd4\x4f\xe2\x2a\x46\xd2\x3d\x23\xcf\xd3\x3d\xc9\xee\xa6\xe5\xbc\x29\x74\x92\x5e\x37\x25\x71\xa2\xd7\x8d\x90\x2d\x2d\x05\x4d\x49\x9c\x78\x2f\xec\x04\xbb\xb5\x80\xb3\x13\xec\x96\xda\x21\x76\xe2\x1e\x9c\x23\x76\xe2\xd6\x3d\x89\x81\x70\x17\xf7\x24\x06\x82\x32\x56\xee\x26\x06\x82\x82\x57\xee\x26\x06\x02\x1b\xbe\xbb\xbb\x92\x00\xe9\x9f\x24\x01\x92\xc2\x20\x06\xc2\x69\xda\x12\x03\xe1\x34\x0a\xba\x92\x00\x31\x06\xd9\xb6\xe5\xa4\x92\xd8\xb6\xe5\x24\x3b\xdb\xb6\x9c\xbe\x1f\x51\xf3\x4e\xf3\x8f\xd4\x0a\x4e\x12\xb1\x6d\x8b\xd2\x4a\xee\x66\xdb\x96\x13\x52\x26\x06\xa2\xea\xbd\xb0\x6d\xcb\x09\xb9\xb2\x6d\xcb\x4d\xfd\x13\x19\x06\x5f\x85\x6d\x5b\xde\xe9\x9f\x4a\xf4\x43\xaf\x89\x98\xa7\x3c\x94\xbb\x8d\x4b\xad\x2a\x55\xc6\xb6\x2d\x19\x36\x6e\xb6\x6d\x39\x58\xd7\xcd\xb6\x2d\xaf\xb5\x80\x6d\x5b\xfe\x62\x84\xb0\x6d\x4b\xb6\xf0\x9b\x88\x79\x19\x67\x6e\xb6\x6d\x79\xb8\xcd\xcd\xb6\x2d\x8f\x09\xee\x66\xdb\x96\xd7\xd7\x64\xdb\x96\x17\x18\x60\xdb\xd6\x83\xb9\xe2\x66\xdb\xd6\x83\x11\xe2\x66\xdb\xd6\x3b\x8b\xd9\xb6\x15\x8a\xfa\x42\xd6\x0c\x01\x9a\x29\xf9\x78\xbb\x4b\xd9\x3d\x90\x81\x6d\x5b\x51\x8b\xb7\xd2\x2e\x60\xde\xba\x15\x2d\x8f\x69\xe8\x56\xda\x85\x47\xe7\x94\x56\x62\xfc\x6b\x49\x56\x46\x86\x47\x0f\x20\x44\x47\x83\x87\xdd\x5e\xc4\x46\xbb\x9b\xdd\x5e\x59\xaf\x8c\xdd\x5e\x39\xea\x9c\xf6\xd4\xeb\x9c\xa6\x3b\x83\x95\xdd\x5e\x85\xe5\xda\xb1\xdb\xab\x3e\x6a\xb1\x69\x99\x81\xe5\x08\x92\xaf\xd8\x89\x1c\x41\xf2\x14\x99\x77\x8e\xdd\x5e\x0d\x3a\xef\x08\x92\xa7\x78\xbb\x73\xec\xf6\x6a\x20\x0d\xc7\x6e\xaf\x06\xa6\x76\x97\x36\xbd\x5e\xb4\xd8\x75\x97\xd4\x62\xd7\x5d\xd4\x3f\x51\x39\xb8\x4e\x9c\xf6\x85\xdd\xea\x99\xf6\x85\xe9\x09\x58\x83\xab\xfa\xb9\xb0\xef\xd2\x7a\xe4\x6c\xa4\xd7\xb2\x33\xa3\xa5\xdd\x6b\x5b\xe6\x09\xd8\x94\x65\x73\x74\xd8\x93\x2f\x3d\xcf\x90\xc6\xcf\x3d\xb1\x27\xcb\x6a\xee\x64\x4f\x4e\x3a\xe7\x69\xf1\x3e\x71\x98\x5e\xf0\x02\x67\xf8\xe1\xba\x19\x74\x2e\x61\x05\x67\xba\x3b\xc3\x0f\xd7\x55\xf5\xcf\xb6\xd9\xec\xdd\xeb\x30\xe5\xbd\x64\x3d\x9d\xbb\x98\x15\xf8\xba\x50\xa2\xce\xac\xc0\xd7\xd5\x90\xcf\x50\x81\x93\x99\xca\xe5\xb4\x59\xf7\x5d\xde\xfd\x00\x2e\xcb\x0f\xc0\x9b\xc8\xf4\x45\x5f\x2c\xb7\x4f\x18\x95\x73\xa6\xfa\xcd\x7f\x63\x2d\xf9\x2b\xf8\xee\x85\xb7\x54\xd5\x7a\x78\x9f\x3c\xaf\xa8\x67\xbc\x33\x53\xda\x97\xc7\x04\xe2\x4c\x69\x5f\x44\xd0\x38\x67\x4a\xfb\xf2\x78\x44\x9c\x29\xed\x8b\x48\x1f\xe7\x0a\x3d\xeb\x6a\xc9\xad\xac\x27\xd8\x5b\xba\x71\x99\xb9\x42\xcf\x86\xee\x69\xdf\xf6\x06\x40\xb8\xc2\x08\xc1\x78\xe1\x2a\xbd\x9e\xdc\xd3\x94\xf6\x75\xb3\x84\x38\x53\xda\xd7\x8d\x81\xc2\x55\xbe\x2d\x8b\x8d\x33\x3b\xed\x45\x8d\x4c\xdb\x3f\x65\xcf\x43\x76\x53\xe8\xd7\xa5\xb1\x5b\xd3\xc7\xfd\xed\x5c\xcd\xfb\x68\xad\xe5\xe3\x0c\x77\xae\x32\x92\x61\x17\xae\xaa\x9f\x5c\x37\x91\x01\xe2\xef\x6c\x91\xba\xee\x44\x5f\x6c\x91\xba\x6e\x8d\x64\x5b\xa4\x2e\xd9\xe0\xdd\x42\x06\x7c\x58\x6e\xe1\xeb\xd0\x98\x58\xc8\xa0\xd1\xba\x82\x5c\xf1\xb4\x18\x3d\x2c\xd7\xde\xbb\x6d\x1e\xf9\xf0\x7c\x42\xf9\x9c\x0f\xc4\xa9\xa0\x1a\x7d\x88\x9b\x2f\xca\x07\xc9\x9e\x69\x31\xea\xf8\x9a\x3e\x20\xbb\x45\x0f\x39\x1f\xf8\xb6\xd8\x93\x7d\xe0\xdb\x4e\xb5\x98\x01\x16\x7b\xef\x7c\x18\xdb\xbb\xf6\x81\x77\x86\xa2\xf4\x81\x77\x06\x90\xf3\x91\x6f\xcb\x3a\xe1\x8d\x01\x5d\xd4\x54\x75\x3e\x32\x73\xd6\x3f\x82\xf0\x9c\x8f\xbc\x16\x8c\x09\x3e\xf2\x69\xab\x6e\x92\xb6\x09\xe0\xe3\xe6\x7b\x76\x5e\x6e\x2e\x30\xac\x8f\x88\xc7\x62\xea\xa3\xc4\x43\x74\x2d\x4b\xe0\x69\xaf\x65\x69\xea\x9e\x88\xb7\x74\x97\xb5\xdf\x45\xcb\x12\x74\xde\x27\xc4\xc3\x4f\xeb\xb5\x2c\x4d\x3e\x91\x96\x25\xb0\x9a\x4f\x12\x5d\x77\x41\x3e\x50\x81\x4f\x71\x7f\xf1\x09\xf9\x30\xd6\x7b\x16\x30\x2d\x6e\x5e\x0b\x98\xd7\x75\x75\x1b\xd6\x5e\x11\x1f\x2c\x98\xbe\xcd\x4f\x78\xa0\xf3\x0d\x47\x26\xcb\x99\xef\x38\x32\x51\x16\xbe\x13\x48\xa8\x7e\x76\x62\x28\x75\xcf\x4e\x0c\x25\x53\xc5\xb3\x33\x52\xae\x52\xcf\xce\xc8\x0b\x63\x90\x67\x67\xe4\xd5\x74\x17\x02\x25\x59\x14\x7d\x27\x50\x92\x85\xc8\x77\xa2\x56\x58\x0a\x3c\xb1\x26\x44\x0b\x38\x4f\xac\xc9\xd5\xf4\x3c\x02\x25\xbb\x9e\xa7\x40\x49\x3d\x0f\xf9\x3a\x93\x83\x58\x93\x77\x08\x12\x6b\x72\x41\x91\xbd\x61\xae\xb5\x98\xc4\x9e\xf8\x8e\x0b\x85\xe0\x89\xef\x20\xd2\xd4\xf9\xa1\xb8\x53\x4f\x4b\x71\xa7\x3c\x61\x2a\xee\x94\x27\x4c\xc5\x9d\xf2\x04\xe2\x3b\x2c\xb6\xf4\x57\x8b\x77\x96\x75\x9d\xe2\x4e\x75\x1d\xef\x2c\xea\x9f\xbc\x33\x96\x3a\xcf\x2e\x45\x29\x2e\x3f\x79\x67\x10\x58\x3f\x79\x67\x20\x29\x3f\x91\xe1\x61\xcc\x4f\xc9\xc0\xd8\x55\xec\x2c\xf0\xc5\x2b\x76\x96\x05\xd3\x2b\x76\x16\x30\xe3\x15\x3b\x0b\x98\xf1\x8a\x9d\x05\x41\x7b\xc5\xce\x62\x13\xf7\x8a\x9d\xc5\x86\xeb\x15\x20\x1b\x78\x9e\x02\x64\x59\xea\xbc\x02\x64\xa1\xcf\x5e\x01\xb2\x18\xfa\xbc\x02\x64\x31\xc3\x3d\x0a\x66\x05\xcc\x3c\x0a\x66\x05\xe8\x3c\xc4\x73\x5c\x49\xff\xa4\x2f\xb8\x60\x1f\x42\x54\xa9\x5d\xed\x1e\x42\x54\xa9\x5d\xed\x1e\xc2\x49\x49\x7f\xeb\x1e\xc2\x49\xa9\x56\xed\x9e\x5b\x61\xbd\x93\x96\xde\x7c\xa7\xa5\x37\xaf\x73\xf4\x9a\x50\x85\xe7\xe6\x79\xa8\xb1\xe7\xe6\x79\x81\xa7\xdf\x8c\xd6\xa0\xa7\xf3\x55\x02\xbd\xbe\xf9\x2a\xf8\x26\x9e\x5b\x5f\x45\xcf\xd3\x57\xe1\x79\x8e\x37\xc1\xf8\x7c\x1c\x32\xc0\x98\x1f\x87\x0c\x40\xcc\xc7\x29\xa2\x39\xd1\xe2\xab\xe0\xb4\x7f\x3c\x2b\x11\x5f\xec\x91\xea\xe0\x8b\x3d\xbe\x6d\xf0\xe5\xf1\x7d\x9b\x0f\x0f\x30\x24\xb4\x7f\x54\x42\x71\x4f\x26\x52\x81\x85\xe1\x01\xa1\xdc\x20\x94\x07\x03\x44\x03\x61\x3e\x05\x7d\x8e\x09\xe0\x29\xe8\x42\x47\xc7\xcc\xc8\x70\xdd\x51\x2d\x74\x21\x76\xda\x07\xbc\x72\x33\xac\x1f\xf0\xca\xfd\xde\x33\x71\x17\x5e\x27\x78\xe5\x8e\x6a\x15\xee\x82\x78\xe0\x95\x5b\x9f\xb6\x82\xdc\x40\xbb\x4f\xa3\x2f\x38\x18\x9f\x46\x5f\x40\x67\x4f\x63\x81\x7e\xc2\x8b\x9f\x1e\x23\xd4\xb6\x9b\xc0\x5a\xf4\x07\x0a\xfd\x34\x16\xe9\xa7\x7c\xfe\x4d\x9f\x40\x54\x4f\xa3\x4f\x68\xc1\xa7\xb1\x50\x3f\xeb\xf3\xef\xc6\x79\x24\x6f\xe0\xa8\xc8\x80\x30\xd2\x7d\xdd\x9a\x28\x0d\x0c\xd2\x75\x0e\x0c\x72\xf3\xfe\x3a\xca\x28\x7e\xfa\x6c\x8b\xb9\xed\x79\xb0\x16\xf2\x42\x53\x9f\xee\x85\xb3\x3e\xff\xe6\xfd\x43\xbb\x9e\xce\xfb\xc7\x5e\xf8\x74\x94\x52\xfc\xf4\xb9\xf3\x0d\x06\x83\xbf\xeb\x1b\xf0\x3e\x3a\xf2\x6a\x30\xda\xa2\x7e\x89\x80\x3f\xb6\xa8\x5b\x74\xa4\xb5\x3a\x2d\xf5\x09\x59\x97\xfa\x3b\x37\x5c\xf8\xd8\xa2\x7e\x39\x4d\x36\x5b\xd4\x3f\xad\xfb\xab\xe5\x68\xf1\x74\x73\x90\x7e\x5a\x91\x16\x32\x18\x39\xb7\x68\x4c\x6b\x55\x5a\x48\x6c\x8a\xe2\x52\x38\xd8\x33\x84\x6d\x79\xd3\xa6\x28\x2e\xa7\x05\xca\x14\xc5\xe5\x08\x9e\x7a\xc6\xda\x5b\xf3\xfa\x6a\xd1\x4f\xd4\xcd\x33\xe9\x27\x8a\xe2\x99\xf4\x93\xaf\x13\xdc\xb5\xa1\xbd\xf0\xa8\x15\x69\x31\xb9\xc1\x9a\xc1\xec\xfd\x2f\x6b\x0a\x44\x41\x89\x35\x05\xa2\xa0\xb4\xd0\x84\x27\x6c\xac\x29\x3c\x7c\xd1\xa4\x73\x69\x03\x16\x81\x18\x65\x29\x9f\x00\x83\x13\x6b\x0a\x8a\x90\x82\x35\x85\x47\xcc\x4f\xff\x5c\x1b\x6b\x0a\x41\xbd\x6e\xb4\xc2\xb6\xec\x84\x20\xa0\xc6\x5d\x84\x43\x01\x08\x41\x51\x50\x4e\xff\x6c\x1b\x6b\x0a\xa1\x6f\xac\x29\x18\x0e\x7d\x59\x53\x10\x0e\x6d\x7a\xde\xda\x58\x53\x30\x1c\xfa\xb2\xa6\x20\x1c\x0a\x68\x0c\xc2\xa1\x55\x2d\xb1\x1f\x9e\x27\x08\x09\x58\x09\x40\x48\xb1\xa6\x00\x84\x14\x6b\x0a\x40\x48\xb1\xa6\x00\x84\x14\x6b\x0a\x82\x90\x5d\x2d\x20\x24\xac\x29\x00\x21\xc5\x9a\x82\x20\x24\xac\x29\x00\x21\xc5\x9a\x82\x20\x64\xd3\x75\xcf\xcf\xec\xf8\xeb\x52\x1d\x40\x97\x22\x54\x01\x74\x29\x42\x15\x84\x2e\x97\x1e\xc7\x24\x06\x1f\x04\xa1\x4b\x40\x7e\x10\xba\x84\x50\x85\x3d\x9e\xd8\x85\x97\x1e\x23\xba\xe2\x89\x41\x89\x21\xa3\x7b\x20\x54\x21\x4b\x04\xae\xd3\x82\x84\xee\x09\x5a\x90\xd0\xf3\x41\x8b\x91\x06\x39\x8b\x91\x08\x55\x60\x31\x12\xa1\x0a\x3d\x6d\x84\x2a\x68\x21\xd2\x40\xee\x3b\x42\x0e\x7d\x57\x5a\xa1\xef\x4a\x2b\xf4\x5d\x69\x85\xb1\x2b\xad\x30\x76\xa5\x15\xc6\xae\xb4\xc2\xd8\x95\x56\x18\xbb\xd2\x0a\x63\x57\x5a\x61\xec\x4a\x2b\x8c\x5d\x69\x85\xb1\x2b\xad\x30\x76\xa5\x15\xe6\xae\xb4\xc2\xda\x95\x56\x58\xbb\xd2\x0a\xeb\x54\x5a\x61\xed\x4a\x2b\xac\x5d\x69\x85\x75\x2a\xad\xb0\x76\xa5\x15\xd6\xae\xb4\xc2\x3a\x95\x56\x58\xbb\xd2\x0a\x6b\x57\x5a\x61\xed\x4a\x2b\xac\x5d\x69\x85\xb5\x2b\xad\x78\x9d\x4a\x2b\x5e\xbb\xd2\x8a\xd7\xae\xb4\xe2\x75\x2a\xad\x78\xed\x4a\x2b\x5e\xbb\xd2\x8a\xd7\xa9\xb4\xe2\xb5\x2b\xad\x78\xed\x4a\x2b\x5e\xbb\xd2\x8a\xf7\xb3\x4d\xe0\x78\x87\x6d\xf4\xc7\x9b\xfb\x7a\xb5\x78\x8f\x18\xf7\xa2\xcb\xfb\x75\xae\xec\xd7\xb9\xba\x5f\xe7\xda\x7e\x9d\x30\x1a\x0b\x62\x24\xe6\x56\x23\x35\xfa\xe7\xff\x7e\x22\xf4\xd7\xa5\x80\xd0\xe8\xc5\x7c\x27\x2d\x96\x18\x7f\xeb\x3f\xba\x0f\x4b\x8d\x77\x5f\x47\xa5\x4e\xbc\xff\x3e\xca\xd2\xe3\x9f\xef\xa3\xf4\xcb\x87\xef\xa3\xcc\x63\x1f\xbf\x8f\xe6\xef\x3e\xf0\x26\x9f\xf2\xdd\x07\x1d\xad\xdf\x4f\xd3\xd1\xf6\xfd\x34\x1d\x65\x7d\xf1\xe9\xfb\xa8\xf6\x2d\xe4\xef\xa3\xc7\x7b\xb8\xdf\xd9\x1f\x9f\xf5\x2d\xf5\xe7\x8c\x14\xd5\xcf\xfd\xb7\x33\x7a\x27\xe5\xbf\x67\xdc\x7f\x9f\x73\x73\xc6\x7f\xcb\xbb\x9d\x79\xfe\xdb\x03\x9d\x09\xdf\x6f\x63\x3b\x13\xbf\xdf\xc8\x76\x26\x7d\x7f\x83\xed\x4c\xfe\xaf\x3c\x3a\x53\xbe\xdf\xd9\x76\xa6\xfe\x57\x52\x9d\x69\x3f\x92\xfe\x8c\xc0\xed\x6c\xff\xef\x7b\x60\xf6\xc9\x48\xf4\xd5\x73\x9d\x99\xff\xed\x9f\xce\xac\xcf\xb3\xfe\x7b\x47\x19\x93\xbe\xbf\x2d\x5f\xe4\xaf\x2a\x30\x4a\xdf\x1f\x13\x28\x1e\x9f\x50\x0f\xf1\xdf\x47\xf5\xdf\xe7\xfb\xa3\xea\x68\xf8\xfe\x2f\xcb\x8a\x0c\x54\x3f\x9f\x59\x47\xd3\xf7\x7f\x03\x47\xf3\xf7\x7d\x75\xb4\x7c\xdf\x41\x47\x8f\x29\xa3\xa3\xed\xfb\xbe\x2c\x3c\x32\x68\xfd\xbc\x7c\x1d\x1d\xbf\x5b\x24\x84\x4e\x8e\x45\x22\xae\xdf\x2d\x12\x32\x78\x1d\x8b\x84\x50\xcb\xb1\x48\xc8\x00\x76\x2c\x12\xe9\x78\xbf\x99\xa3\xc7\xd4\xd0\xd1\xf0\x7d\x5f\x1d\x8d\xdf\xc3\x47\x47\xd3\xef\x16\x9f\x94\x7f\xb7\xf8\xbc\x86\xb3\xef\xc5\x47\x10\xe7\x58\x7c\x04\x75\x8e\xc5\x47\x90\xe7\x58\x7c\xd2\xf8\xd3\xe2\x93\xe6\x9f\x16\x9f\xb4\xfe\xb4\xf8\xe4\xeb\x4f\x8b\x4f\xbe\xff\xb4\xf8\x08\x6e\xfd\x66\xf1\x11\xf4\xfa\xcd\xe2\x23\x0f\xc6\x6f\x16\x9f\x1c\xfe\xb4\xf8\xe4\xf8\xa7\xc5\x27\xa7\x3f\x2d\x3e\x39\xff\x69\xf1\xc9\xe5\x4f\x8b\x8f\x3c\x21\x7f\x58\x7c\x72\xfb\xd3\xe2\x93\xfb\x9f\x16\x1f\x79\x4c\x7e\xb3\xf8\xe4\xf9\xb7\xc5\x27\xaf\x3f\x2e\x3e\xff\xcf\x45\xf9\x45\xde\x16\xd0\x12\xc3\x5e\x2c\xfd\x67\xf5\x79\xcf\x7f\xb6\xdc\x49\x92\x32\x3f\x47\x78\x9e\x7c\x24\x76\x84\xfb\xc8\x4f\x62\x47\x58\x53\xea\x67\x5d\xd3\x6a\x50\xdd\xe7\x08\x73\x5e\x3e\x13\x3b\xc2\x0c\xac\x1f\x38\xa1\xb9\x53\xc3\xe7\x08\x23\x59\xfe\x93\x5f\xe3\x48\x3d\x94\x0f\xc5\x8e\xd0\xc3\xfa\x99\x5b\x6f\x0f\x3f\xaa\xfe\xed\x61\xfd\x1c\x51\x0f\xdb\xe7\x88\x7a\xd8\x3f\x47\xd4\xc3\xf1\x39\xa2\x1e\x7e\xd6\xa8\xb7\x87\x9f\xf5\x49\x6f\xb5\x7d\x60\x8d\xfa\xdc\xee\xcf\x11\xfa\xdc\xdc\xe7\x08\x7d\x6e\x9f\x79\xa1\x3e\xb7\xcf\x5a\xa4\x3e\xb7\xf0\x39\x42\x9f\xdb\x67\x8d\x57\x9f\x65\x03\xb2\x23\xf4\xb9\xe5\xcf\x11\xfa\xdc\x3e\xeb\xce\xdb\xe7\xcf\x9a\xfe\xf6\xb9\x7d\x8e\xa8\xcf\xfd\x73\x44\x7d\x1e\x9f\x23\xea\xf3\xfc\x1c\x51\x9f\xd7\xe7\x08\x7d\xee\x9f\xb5\x5b\x7d\xee\x1f\xc8\xa7\x3e\x77\xf7\x39\x42\x9f\xbb\xff\x99\x49\xea\x73\x7f\x3e\x47\xe8\x73\xff\xac\x13\xea\x73\xff\xc0\x16\xf5\xb9\xa7\xcf\x11\xfa\xdc\xf3\xe7\x08\x7d\x7e\xe9\x5a\xf8\xf4\xf9\xb3\x26\xbf\x7d\xfe\x40\xc4\xb7\xcf\x9f\xb9\xfe\xf6\x79\xfc\xac\x4e\x6f\x9f\xe7\xe7\xc8\x3f\xf2\xc0\xbb\xd8\xd7\xe7\xcf\x88\x33\xae\xcf\x11\xc4\x19\xf7\xe7\x08\xe2\x8c\x8f\xba\x93\x38\xe3\x83\x92\x25\xce\x78\x3e\x47\x10\x67\x84\xcf\x11\xc4\x19\x9f\xa5\x55\xe2\x8c\xcf\x92\x2a\x71\xc6\x07\xe1\xe9\x13\x8c\xf2\x39\xa2\x3e\xd7\xcf\x11\xf5\xf9\xa3\xca\xde\x3e\x7f\x90\xf5\xdb\xe7\xcf\xf2\xf8\xf6\xf9\x83\xd6\xde\x3e\x7f\x54\x96\xfa\x3c\x3f\x08\x5a\x7d\x9e\xf7\xcf\x62\xaf\x3e\x4f\xf7\x39\x42\x9f\xa7\xff\x1c\xa1\xcf\xf3\xf9\x1c\xa1\xcf\x33\x7c\x8e\xd0\xe7\x19\x3f\x47\xe8\xf3\x4c\x9f\x23\xf4\x79\x7e\x54\x8d\xfa\x3c\x3f\xc8\xf7\xed\x73\xfd\x1c\x51\x9f\xdb\x8f\x1a\x7a\xfb\xdc\x3f\x47\xd4\xe7\xf1\x39\xa2\x3e\xcf\xcf\x11\xf5\x79\x7d\x8e\xd0\xe7\xf5\x51\xe5\xea\xf3\xfa\x30\x0b\xf5\x79\xb9\xcf\x11\xfa\xbc\xfc\xe7\x08\x7d\x16\xc3\xb7\x23\xf4\x79\x85\x2f\x05\x49\xbf\xd3\xa5\x90\x88\xff\x6c\xe7\x4b\x97\xff\x3a\x43\x7c\x58\x82\x45\x6f\xdb\xf9\xd2\x2d\x0f\xc2\x7f\xb6\x14\xa6\xdb\x7d\x9d\x09\xfa\xbf\xff\x39\xaa\x23\x6e\x6e\xfe\xac\xe4\xd6\xe6\xcf\x4a\xfe\xda\xfc\x59\xc9\xdf\x9b\x3f\x2b\xf9\x67\xf3\x67\x25\x1f\x36\x7f\x56\xf2\x71\xf3\x67\x25\x9f\x36\x7f\x56\xf2\x79\xf3\x67\x25\x5f\x36\x7f\x56\xf2\x75\xf3\x67\x25\xdf\x36\x7f\x56\xf2\x7d\xf3\x67\x25\x3f\x36\x7f\x56\xf2\x73\xf3\x67\x25\xbf\x36\x7f\x56\x7a\xae\xcd\x9f\x95\x9e\x7b\xf3\x67\xa5\x27\x6f\xfe\xac\xf4\x94\xcd\x9f\x95\x9e\xba\xf9\xb3\xd2\xd3\x36\x7f\x56\x0a\xf7\xe6\xcf\x4a\xc1\x6d\xfe\xac\x44\x2a\x85\xab\x72\xcf\x20\x1f\x2e\xff\x8c\xf4\x05\x03\x71\x8a\xdc\x05\x97\x7f\x22\xb1\xc2\x55\x91\x8f\xec\x09\x32\x76\xa6\x18\x37\xdf\x6f\x8a\xf2\xd3\xf2\x3e\xa3\xfc\xb4\xf4\x3a\xca\x4f\xcb\xfb\x8c\xf2\xd3\xf2\x3e\xa3\xfc\xb4\xc8\x40\xf6\x04\xf9\xe0\x13\xd9\x13\x64\x6a\x4d\x51\x7e\x5a\x3d\x4f\x7e\x5a\x64\x48\xf2\xd3\x22\x03\xd9\x13\x2e\xf6\xfd\xa4\x44\x5f\xb0\xeb\x24\x65\x3a\x20\xa6\x2e\x29\xd3\xc1\xd0\x3f\xe9\x0b\x3b\x68\x52\x56\x5a\x1c\x9e\x90\x79\x9f\x38\x14\x52\x61\xcf\xd3\x73\x3f\x13\x0b\x5d\x2a\xe5\xe7\x08\x06\xfb\x54\xea\xe7\x3f\xc8\x6a\xd0\xee\xd7\x91\x10\xf5\x8c\xd2\x7f\xfe\x43\xf8\x6f\x2a\xe3\xfd\xcf\xcd\x5e\x9a\x64\xf0\x4e\xf7\xf9\x57\xb8\x43\x2a\xeb\x73\x39\x8f\x30\xe4\xc7\xe5\x1a\xa6\x86\xfc\x7e\x75\xf3\xd7\x51\x8e\x90\x91\x12\x1b\x7a\x32\xd4\x17\x9e\x8b\x97\x42\x31\x32\xb2\xe8\xbb\x64\x68\x2f\x04\x4d\x29\x52\x8a\x35\x7c\x27\xa9\xb2\xe3\x8f\xad\xdf\xa9\xf5\xcd\x41\x9d\x0c\x75\x44\xa7\x89\xa9\x90\x02\x42\x66\x93\xa1\x8d\x9f\x17\x69\x48\xe3\xe7\x25\xb2\x3d\xef\x7d\x81\x6c\xcf\x7b\x5f\x5e\x67\x67\xa2\x5e\x1c\xdb\xf3\xde\x97\xd6\xd9\x99\x88\x67\x23\xb1\x3d\xef\x7d\x23\x86\x26\x7e\xde\x46\x7f\x3f\x25\xad\xb2\xf7\xcc\x10\xc4\xa7\x67\xed\xab\x67\xfd\xab\x67\xe3\xab\x67\xf3\xab\x67\x6b\xef\xd9\xb8\xf6\x9e\xb1\x3d\xef\xed\x99\xc1\x80\x9f\x9e\x69\x7b\x9e\x7a\x36\x9e\xbd\x67\x23\xec\x3d\x33\xb5\xff\xd3\xb3\x91\xf6\x9e\xb1\x3d\xef\xed\x99\xa9\xfa\x9f\x9e\x8d\xfa\xd5\xb3\xf6\xd5\xb3\xfe\xd5\xb3\xf1\xd5\xb3\xb9\x2f\x66\xa6\xd2\x7f\xbe\xed\xbc\xf6\x9e\xcd\x7b\xef\xd9\x74\x7b\xcf\xd8\x9e\xf7\xf6\x6c\x3e\x7b\xcf\x4c\x75\xff\xf4\x6c\xc6\xbd\x67\x6c\xcf\x7b\x7b\x66\xea\xfa\xa7\x67\xb3\xec\xef\x6c\xd6\xfd\x9d\xcd\xf6\xd5\xb3\xfe\xd5\xb3\xf1\xd5\xb3\xf9\xd5\xb3\xb5\xf7\x8c\xed\x79\x6f\xcf\xd6\xbd\xf7\x8c\x04\xcc\x6f\xcf\x96\xdf\x7b\xc6\xf6\xbc\xb7\x67\x0a\x7d\xd0\x72\xf9\x86\x3e\xa8\xc5\x52\xda\xd5\x52\x6e\x30\x7a\xa6\x94\x18\xee\x17\x0f\xd6\x91\x7a\x30\xc4\x7c\x3d\x07\x73\xc9\x57\x38\x98\x4b\xbe\xe2\xc1\x5c\xf2\x95\x0e\xe6\x92\xaf\x7c\x30\x97\x7c\x95\x83\xb9\xe4\xab\x1e\xcc\x25\x5f\xed\x60\x2e\xf9\xea\x07\x73\xc9\xd7\x38\x98\x4b\xbe\xe6\xc1\x5c\xf2\xb5\x0e\xe6\x92\xef\xeb\x60\x2e\xf9\xbe\x0f\xe6\x92\x6f\x77\x30\x97\x2c\x70\xf1\x61\x2e\xf9\x7e\x0e\xe6\x92\xef\x70\x30\x97\x7c\xc7\x83\xb9\xe4\x3b\x1d\xcc\x25\xdf\xf9\x60\x2e\xf9\x2e\x07\x73\xc9\x77\x3d\x98\x4b\xbe\xdb\xc1\x5c\xf2\xdd\x0f\xe6\x92\xef\x71\x30\x97\x7c\xcf\x83\xb9\xe4\x7b\x7d\x31\x97\xbf\xaa\x85\xec\xae\x83\xd4\x64\x77\x7f\x91\x9a\x5f\x47\xdc\xc1\x5c\xb2\xf3\x07\x73\xc9\xee\x39\x98\x4b\x76\xe1\x60\x2e\xd9\xc5\x83\xb9\x64\x97\x0e\xe6\x92\x5d\x3e\x98\x4b\x96\xb7\xe3\xc3\x5c\xb2\xab\x07\x73\xc9\xae\x1d\xcc\x25\xbb\x7e\x30\x97\xec\xc6\xc1\x5c\xb2\x9b\x07\x73\xc9\x6e\x1d\xcc\x25\xfb\xeb\x60\x2e\x59\x51\x30\x1f\xe6\x92\xe5\x65\xf9\x30\x97\xec\xfd\xc1\x5c\xb2\x7f\x0e\xe6\x92\x7d\x38\x98\x4b\xf6\xf1\x60\x2e\xd9\xa7\x83\xb9\x64\x9f\x0f\xe6\x92\x7d\x39\x98\x4b\xf6\xf5\x60\x2e\xd9\xb7\x83\xb9\x64\xdf\x0f\xe6\x92\xfd\x38\x98\x4b\xf6\xf3\x60\x2e\xd9\xaf\x83\xb9\xe4\xe7\x3a\x98\x4b\x7e\xee\x83\xb9\xe4\xc7\x1d\xcc\x25\x3f\xfe\x60\x2e\xf9\x79\x0e\xe6\x92\x9f\x70\x30\x97\xac\xe0\x82\x0f\x73\xc9\x0a\x30\xf8\x30\x97\xbc\x79\x8b\xb6\x85\x2f\x8d\x8d\x35\xe4\x34\x37\xd6\x90\xd3\xda\x58\x43\xce\xd7\xc6\x1a\x32\xa9\x39\xc4\x1a\x72\x7e\x36\xd6\x90\x73\xd8\x58\x43\xce\x71\x63\x0d\x39\xa7\x8d\x35\xe4\x9c\x37\xd6\x90\x73\xd9\x58\x43\xce\x75\x63\x0d\x39\xb7\x8d\x35\xe4\xdc\x37\xd6\x90\x49\xc1\x21\xd6\x90\xf3\xae\x68\x73\x5e\x1b\x6b\xc8\xe5\xda\x58\x43\x26\x5d\x86\x58\x43\x2e\x79\x63\x0d\xb9\x94\x8d\x35\xe4\x52\x37\xd6\x90\x49\x74\x21\xd6\x90\xeb\xbd\xb1\x86\xac\x08\xc7\x85\xb4\x44\x15\xba\xc2\xbb\xa6\xda\x7f\x05\x9b\xe7\xa9\x64\x29\xb4\x50\x91\x2e\xaa\x45\xee\x7e\x7c\xb6\xd9\x54\x64\x24\x65\x9e\xcb\xa6\x22\x63\x63\x37\x76\x46\x45\x92\x51\xd7\x65\x53\x91\xa9\x64\xde\x04\x6a\x90\xb2\xda\x2e\x13\x01\xe8\x8a\xfe\xa9\x2c\x5c\xf4\x73\x29\x0b\x17\x6f\x62\x29\x0b\x17\x5f\x85\x5d\xea\xf7\xfb\x04\x65\xe1\xea\xb4\x24\x83\xbd\xb3\x42\xfd\x81\x09\x08\x2e\xec\x60\xcf\xdc\xa5\x5c\x6e\x03\xc1\xc5\x58\xf1\x0b\x82\x8b\x29\xdf\x17\x04\x17\xb6\x56\x28\xb1\x46\x31\xa5\xeb\xa8\xd6\xeb\x8a\x29\x5c\xa7\x1c\x07\xe5\x55\xb6\x3f\xa3\xb9\xbc\xca\xf6\xc7\xd0\x5b\xae\x4d\xd5\x3b\x8e\xb4\xcf\x11\xcf\x91\xcd\x60\xac\x1e\x6d\x06\x63\xc9\xb6\x19\x8c\x23\x47\x36\x83\x31\x32\xde\x9b\xc1\xf8\x1f\x95\xb6\x5c\xb9\x37\x5b\x72\xe1\x72\xb7\x4d\x50\x8e\x7c\x7c\x37\x12\xe7\xd5\xc3\x3f\x76\xf2\x72\x6f\x06\x09\xc4\x79\xf5\xf0\xfd\x23\xce\xfd\xf1\xd5\x48\x9c\x7b\x5b\x0c\x10\xe7\xd5\xc3\xf7\x47\x9c\xcd\x17\xc0\x27\xbd\x37\xd7\xa4\xfa\xbc\xd9\x92\xd5\xe7\xcd\x96\xac\x3e\x6f\xb6\x64\xf5\xf9\xe3\x26\x57\x9f\x5f\x65\xfb\x63\xc9\x2e\xaf\xb2\xfd\xb1\x64\x17\xf7\xf1\xb5\xa8\xcf\xee\xe3\xfa\x55\x9f\xdd\xc7\x6f\xa8\x3e\xbf\xca\xf6\xc7\x92\x5d\xdc\x86\xe3\xe8\xb3\xdb\x70\x1c\x7d\x76\xf9\xc0\x83\xc5\x95\x03\x0f\x16\x57\x0f\x3c\x58\x5c\x3b\xf0\x60\x79\x95\xad\xff\xf4\x79\x1c\x78\xb0\xb8\x79\xe0\xc1\xe2\xd6\x81\x07\x8b\xbf\x0e\x3c\x58\xfc\x7d\xe0\xc1\xe2\xdd\x81\x07\x8b\xf7\x07\x1e\x2c\xfe\x39\xf0\x60\xf1\xe1\xc0\x83\xe5\x55\xb6\x3f\x78\xb0\xbc\xca\xf6\x07\x0f\x96\x57\xd9\xfe\xe0\xc1\xe2\xcb\x81\x07\x8b\xaf\x07\x1e\x2c\xbe\x1d\x78\xb0\xf8\x7e\xe0\xc1\xe2\xc7\x81\x07\x8b\x9f\x07\x1e\x2c\x7e\x1d\x78\xb0\xbc\xca\xf6\x07\x0f\x96\xe7\x3e\xf0\x60\xd9\x42\x2b\xd4\xe7\xc7\x7f\xe1\xc1\x5f\x47\x9e\x03\xf4\x95\x27\x1c\xa0\xaf\x3c\xf1\x00\x7d\xe5\x49\x07\xe8\x2b\x4f\x3e\x40\x5f\x79\xca\x01\xfa\xca\x1b\x92\x11\x3f\x7d\x6e\x07\xe8\x2b\x6f\x28\x46\xfc\xf4\x79\x1c\xa0\xaf\x3c\xf3\x00\x7d\xe5\x59\x07\xe8\x2b\x5b\xc8\x85\xfa\x1c\xee\x03\xf4\x95\xe0\x0e\xd0\x57\x82\x3f\x40\x5f\x79\x43\x2a\x7e\x40\x5f\x79\x43\x29\x7e\x40\x5f\x09\xf1\x00\x7d\x25\xa4\x03\xf4\x95\x90\x0f\xd0\x57\xb6\x50\x89\xb7\xcf\xf5\x00\x7d\x25\xb4\x03\xf4\x95\xd0\x0f\xd0\x57\xc2\x38\x40\x5f\x79\xc3\x1f\xf2\xa7\xcf\xeb\x00\x7d\xe5\x0d\x75\xf8\x01\x7d\x25\xde\x07\xe8\x2b\xd1\x1d\xa0\xaf\x44\x7f\x80\xbe\x12\x9f\x03\xf4\x95\x18\x0e\xd0\x57\x62\x3c\x40\x5f\x89\xe9\x00\x7d\xe5\x8d\x53\xf8\x01\x7d\x25\x96\x03\xf4\x95\x58\x0f\xd0\x57\x62\x3b\x40\x5f\x89\xfd\x37\xa0\xaf\x08\xb2\x00\xfa\x4a\x75\x1b\xe8\x2b\xd5\x6f\xa0\xaf\xd4\x67\x03\x7d\xa5\xa6\x0d\xf4\x95\x9a\x37\xd0\x57\x6a\xd9\x40\x5f\xa9\xf5\x07\xf4\xfd\x5d\x0d\xd6\xb6\xe1\xc1\x52\xfb\x86\x07\x4b\x1d\x1b\x1e\x2c\x75\x6e\x78\xb0\xd4\xb5\xe1\xc1\xd2\xae\x0d\x0f\x96\x76\x6f\x78\xb0\x34\xb7\xe1\xc1\xd2\xfc\x86\x07\x4b\x7b\x36\x3c\x58\x5a\xdb\xf0\x60\x91\x31\x0e\x3c\x58\xda\xd8\xf0\x60\x91\x31\x0e\x3c\x58\xb4\x33\x07\x3c\x58\xb4\x33\x07\x3c\x58\xc6\xbd\x59\x91\xcb\x70\x9b\x15\xb9\x28\x07\x7c\xd5\x3f\x9f\xcd\x8a\x5c\xc8\xa7\x2a\x2b\x72\x19\x79\xb3\x22\x97\x51\x36\x2b\x72\x19\x75\x33\x8b\x94\xd1\x36\x2b\x72\x11\x1a\xc5\x8a\x5c\xb4\xdf\x06\x2b\x72\x91\x41\x0a\x2b\x72\xd1\x7e\x1b\xac\xc8\x45\xfb\x6d\x40\xaa\x45\xfb\x6d\xb0\x22\x17\xed\xb7\xc1\x8a\x5c\xb4\xdf\x06\x2b\x72\xd1\x7e\x1b\xac\xc8\x65\xb6\xcd\x8a\x5c\xb4\x6f\x06\x2b\x72\xd1\xbe\x99\xa1\x7f\xce\xcd\x8a\x5c\xb4\xe3\x05\x2b\x72\x91\xd9\x07\x2b\x72\xd5\xce\x15\xf0\x75\xa5\xc6\x95\x12\x54\x56\xc3\x98\x91\x92\xfb\xae\x82\x31\x2f\x0c\x4b\xf5\xc2\x24\xcb\x84\xab\x17\xc9\x03\x9d\xfe\x19\xd9\x2f\x7f\xd3\x32\x53\x59\x22\x6f\x41\x35\x8c\xf9\xe2\xd6\x6a\xf8\xf2\xc5\xad\xf5\xaa\x1b\x6e\xad\x57\xdb\x12\x62\xd6\x1f\x4c\x49\x6b\x1c\x48\xb5\xbe\x78\x52\xcf\x5c\x07\x6e\xad\x2f\x96\x74\xb4\xee\x03\xc5\xd6\x17\x2c\xf2\x1e\x6e\x7f\x60\xda\xfa\x63\xb0\xa1\x15\x0e\x84\x5b\x7f\x8c\x35\xb4\xd2\x81\x77\xeb\x0b\x10\x79\xeb\x77\x39\xd0\x6f\x7d\xc1\x61\xa2\xd5\x0e\x2c\x5c\x5f\x60\xc8\x1b\xbe\xc7\x17\x32\xfe\x75\xe4\x65\xd0\xb4\xd6\x01\x86\xab\xbb\x0e\x30\x5c\xdd\x7d\x80\xe1\xea\xdc\x01\x86\xab\xf3\x07\x18\xae\xee\x39\xc0\x70\x75\xe1\x00\xc3\xd5\xc5\x03\x0c\x57\x97\x0e\x30\x5c\x5d\x3e\xc0\x70\x75\xe5\x00\xc3\xd5\xd5\x03\x0c\x57\xd7\x0e\x30\x5c\x5d\x3f\xc0\x70\x75\xe3\x00\xc3\xd5\xcd\x03\x0c\x57\xb7\x0e\x30\x5c\xfd\x75\x80\xe1\xea\xef\x03\x0c\x57\xef\x0e\x30\x5c\xbd\x3f\xc0\x70\xf5\xcf\x01\x86\xab\x0f\x07\x18\xae\x3e\x1e\x60\xb8\xfa\x74\x80\xe1\xea\xf3\x01\x86\xab\x2f\x07\x18\xae\xbe\x1e\x60\xb8\xfa\xf6\x05\x86\xff\xaa\x2a\xaa\xef\x07\x4e\xae\x7e\x1c\x38\xb9\xfa\x79\xe0\xe4\xea\xd7\x81\x93\xeb\x73\x1d\x38\xb9\x6e\xa1\xb8\x12\xe7\x71\x07\x4e\xae\x8f\x3f\x70\x72\x7d\x9e\x03\x27\xd7\x27\x1c\x38\xb9\x3e\xf1\xc0\xc9\xf5\x49\x07\x4e\xae\x4f\x3e\x70\x72\x7d\xca\x81\x93\xeb\x53\x0f\x9c\x5c\xb7\xd0\xdd\xb7\xcf\xfd\xc0\xc9\xf5\x19\x07\x4e\xae\xcf\x3c\x70\x72\x7d\xd6\x81\x93\x6b\xb8\x0e\x9c\x5c\xc3\x7d\xe0\xe4\x1a\xdc\x81\x93\x6b\xf0\x07\x4e\xae\xe1\x39\x70\x72\x0d\xe1\xc0\xc9\x35\xc4\x03\x27\xd7\x2d\xcc\x56\x7d\x0e\xf9\xc0\xc9\x35\x94\x03\x27\xd7\x50\x0f\x9c\x5c\x43\x3b\x70\x72\x0d\xfd\xc0\xc9\x35\x8c\x03\x27\xd7\x2d\x54\xf6\xed\xf3\x3a\x70\x72\x8d\xd7\x81\x93\x6b\xbc\x0f\x9c\x5c\xa3\x3b\x70\x72\x8d\xfe\xc0\xc9\x35\x3e\x07\x4e\xae\x31\x1c\x38\xb9\xc6\x78\xe0\xe4\x1a\xd3\x81\x93\x6b\xcc\x07\x4e\xae\xb1\x1c\x38\xb9\xc6\x7a\xe0\xe4\x1a\xdb\x81\x93\x6b\xec\x07\x4e\xae\x71\x1c\x38\xb9\xc6\x79\xe0\xe4\x1a\xd7\x81\x93\x6b\xba\x0e\x9c\x5c\xd3\x7d\xe0\xe4\x9a\xdc\x81\x93\x6b\xf2\x07\x4e\xae\xe9\x39\x70\x72\x4d\xe1\xc0\xc9\x35\xc5\x03\x27\xd7\x94\x0e\x9c\x5c\x53\x3e\x70\x72\x4d\xe5\xc0\xc9\x35\xd5\xdf\xe0\xe4\x2a\x90\x09\x4e\xae\x02\x99\xe0\xe4\x2a\x90\x09\x4e\xae\x02\x99\xe0\xe4\xda\xc2\x86\x93\x6b\x8b\x1b\x4e\xae\x2d\x6d\x38\xb9\xaa\x68\x2e\xc6\xd1\xaa\xa2\xb9\x80\xe1\xda\xea\x06\x86\xab\xc0\x29\x60\xb8\x0a\x9c\x02\x86\xab\xc0\x69\xd0\xf3\xe6\x06\x86\xab\x36\x9f\x03\x86\xab\x36\x9f\x03\x86\xab\x36\x9f\x03\x86\xab\x36\x9f\x03\x86\xab\xbc\xba\x80\xe1\xaa\x8d\xe2\x80\xe1\xaa\x8d\xe2\x49\xff\xec\x1b\x18\xae\x82\xb8\x80\xe1\x2a\x88\x0b\x18\xae\x02\x99\x80\xe1\x2a\x90\x09\x18\xae\x02\x99\x80\xe1\x2a\x90\x09\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xda\xb8\x0d\x18\xae\xf2\x6c\x02\x86\xab\xc0\x29\x60\xb8\x0a\x9c\x02\x86\xab\xc0\x69\xfb\x57\xf2\x9a\x2a\xdc\xda\xd4\x95\xb5\xe1\xe4\xaa\xfd\xde\xe0\xe4\xaa\xfd\xde\xe0\xe4\xaa\xfd\xde\xe0\xe4\xaa\xbd\xd9\xe0\xe4\xaa\xe2\x45\xe0\xe4\xaa\xe2\x45\x43\xff\xec\x1b\x4e\x6e\xda\xa9\x0d\x4e\x6e\xda\xa9\x0d\x4e\x6e\xe4\xde\x14\x32\x6e\xe4\xde\x14\x32\x6e\x54\x4d\x15\x32\x6e\xe4\xde\x14\x32\x6e\xe4\xde\x14\x32\x6e\xf7\xb3\x21\xe3\x66\x28\xf2\x45\xc6\xed\x56\x9a\xed\x8b\x56\x22\x4b\xee\xa0\xb5\xa3\xe6\x76\xef\xa8\xb9\xdd\x3b\x6a\x6e\x64\xe5\x57\xfe\xab\x76\x93\x9a\xbe\xea\x79\x63\xc3\xd0\xed\x9e\x07\x86\x6e\x2f\x6a\xe4\xdf\xee\x3a\x30\x74\xfb\x31\x21\xd2\x72\x07\x86\x6e\x2f\x5a\xf4\xb4\x9e\x03\x43\xb7\x17\x29\xd2\xef\x17\x25\x5e\x9f\x23\x69\xc3\xd0\xcd\xe5\x03\x43\xb7\x1f\xff\x1c\xad\x7a\x60\xe8\xf6\xe3\x9b\xa3\xd5\x0f\x0c\xdd\x5e\x64\xc8\xb7\x70\xf3\xc0\xd0\xed\x45\x85\x36\x84\x9b\xbf\x0e\x0c\xdd\xfc\x7d\x60\xe8\xe6\xdd\x81\xa1\x9b\xf7\x07\x86\x6e\xfe\x39\x30\x74\xf3\xe1\xc0\xd0\xcd\xc7\x03\x43\x37\x9f\x0e\x0c\xdd\x7c\x3e\x30\x74\xf3\xe5\xc0\xd0\xcd\xd7\x03\x43\x37\xdf\x0e\x0c\xdd\x7c\x3f\x30\x74\xf3\xe3\xc0\xd0\xcd\xcf\x03\x43\xb7\x6d\x27\x96\xfa\xfc\x5c\x07\x86\x6e\xcf\x7d\x60\xe8\xf6\xb8\x03\x43\xb7\xc7\x1f\x18\xba\x3d\xcf\x81\xa1\xdb\x13\x0e\x0c\xdd\x9e\x78\x60\xe8\xf6\xa4\x03\x43\xb7\x27\x1f\x18\xba\x3d\xe5\xc0\xd0\xed\xa9\x07\x86\x6e\x4f\x3b\x30\x74\x7b\xfa\x17\x86\xfe\x75\x64\x1c\x40\xb9\x3d\xf3\x00\xca\xed\x59\x07\x50\x6e\xe1\x3a\x80\x72\x0b\xf7\x01\x94\x5b\x70\x07\x50\x6e\xc1\x1f\x40\xb9\x85\xe7\x00\xca\x6d\xdb\x6d\xa5\x3e\x87\x78\x00\xe5\x16\xd2\x01\x94\x5b\xc8\x07\x50\x6e\xa1\x1c\x40\xb9\x85\x7a\x00\xe5\x16\xda\x01\x94\x5b\xe8\x07\x50\x6e\xdb\x4e\xa9\xb7\xcf\xf3\x00\xca\x2d\xac\x03\x28\xb7\x78\x1d\x40\xb9\xc5\xfb\x00\xca\x2d\xba\x03\x28\xb7\xe8\x0f\xa0\xdc\xe2\x73\x00\xe5\x16\xc3\x01\x94\x5b\x8c\x07\x50\x6e\x31\x7d\x01\xe5\xbf\xaa\xa5\x16\xf3\x81\xa1\x5b\x2c\x07\x86\x6e\xb1\x1e\x18\xba\xc5\x76\x60\xe8\x16\xfb\x81\xa1\x5b\x1c\x07\x86\x6e\x71\x1e\x18\xba\xc5\x75\x60\xe8\x96\xae\x03\x43\xb7\x74\x1f\x18\xba\x25\x77\x60\xe8\x96\xfc\x81\xa1\x5b\x7a\x0e\x0c\xdd\x52\x38\x30\x74\xdb\x76\x2b\xa9\xcf\x29\x1d\x18\xba\xa5\x7c\x60\xe8\x96\xca\x81\xa1\x5b\xaa\x07\x86\x6e\xa9\x1d\x18\xba\x6d\xbb\x92\xde\x3e\x8f\x03\x43\xb7\x34\x0f\x0c\xdd\xd2\x3a\x30\x74\xcb\xd7\x81\xa1\x5b\xbe\x0f\x0c\xdd\xb2\x3b\x30\x74\xcb\xfe\xc0\xd0\x2d\x3f\x07\x86\x6e\x39\x1c\x18\xba\xe5\x78\x60\xe8\x96\xd3\x81\xa1\x5b\xce\x07\x86\x6e\xdb\x8e\xa1\xb7\xcf\xf5\xc0\xd0\x2d\xb7\xdf\x60\xe8\x26\xc4\x09\x86\x6e\x42\x9c\x60\xe8\x26\xc4\x09\x86\x6e\x4a\x77\x04\x86\x6e\x4a\x69\x04\x86\x6e\x4a\x69\x24\x40\xa1\x94\x46\x60\xe8\x26\xa4\x0a\x86\x6e\x42\xaa\x60\xe8\x26\xa4\x0a\x86\x6e\x42\xaa\x60\xe8\xa6\x94\x46\x60\xe8\xa6\x94\x46\x41\xcf\x5b\x1b\x86\x6e\x4a\x69\x04\x86\x6e\x32\xe9\x82\xa1\x9b\xf0\x2e\x18\xba\x09\xef\x82\xa1\x9b\x4c\xb3\x60\xe8\x26\xd3\x2c\x18\xba\xc9\x34\x9b\xf4\xcf\xb1\x61\xe8\xf6\x26\x31\xe2\x09\x6f\x12\x23\x9e\x20\x58\x09\x86\x6e\x82\x95\x60\xe8\x26\x58\x59\xf5\x4f\xbf\x61\xe8\xa6\x78\x39\x30\x74\x53\xbc\x1c\x18\xba\x29\x5e\x0e\x0c\xdd\x04\x47\xc1\xd0\x4d\x70\x14\x0c\xdd\x04\x47\xc1\xd0\x4d\x70\x14\x0c\xdd\x54\x4b\x13\x0c\xdd\x54\x4b\xb3\xe9\x79\x6b\x03\xca\x5d\x46\x5c\x80\x72\x57\xfa\x21\x80\x72\x17\xa8\x05\x28\x77\x81\x5a\x80\x72\x57\xc2\x21\x80\x72\xbf\xda\x06\x94\xfb\xd5\x37\xa0\xdc\xaf\xb1\x01\xe5\x7e\xfb\x0d\x28\xf7\xfb\xd9\x80\x72\x27\x37\xbb\x80\x72\x77\xf7\x06\x94\xbb\x41\xc6\x17\x28\x77\x72\xb3\x0b\x28\x77\x72\xb3\x0b\x28\x77\x83\x8a\x2f\x50\xee\x06\x15\x5f\xa0\xdc\x0d\x26\xbe\x60\xb8\xbb\xbc\x81\xe1\xee\xca\x06\x86\xbb\xa3\x6a\x13\x90\xba\xbf\xf0\x50\xad\x73\x57\x5b\x7f\xe1\xa1\x9e\x39\x0f\xf8\xdb\x7f\x8c\x86\xff\x50\x17\x7d\x47\x8e\xbc\xda\x17\x39\x7a\x5a\xee\x40\xc6\xfd\xc7\xb1\x4c\xeb\x39\x90\x71\x7f\x11\x23\x2f\xd5\xc7\x03\x19\xf7\x17\x2d\xf2\x09\x7c\x3e\x90\x71\x7f\x91\x62\xa2\x55\x0f\x64\xdc\x7f\xa2\xb6\x68\xf5\x03\x19\xf7\x17\x21\x16\x5a\xf3\x40\xc6\xdd\xaf\x03\x19\xf7\xe7\x3a\x90\x71\x7f\xee\x03\x19\xf7\xc7\x1d\xc8\xb8\x3f\xfe\x40\xc6\xfd\x79\x0e\x64\xdc\x9f\x70\x20\xe3\xfe\xc4\x03\x19\xf7\x27\x1d\xc8\xb8\xef\xd1\x5a\xf4\x79\xdb\xd7\xff\xf6\xb9\x1e\xc8\xb8\x3f\xed\x40\xc6\xfd\xe9\x07\x32\xee\xcf\x38\x90\x71\x7f\xe6\x81\x8c\xfb\xb3\x0e\x64\xdc\xc3\x75\x20\xe3\x1e\xee\x03\x19\xf7\xe0\x0e\x64\xdc\x83\x3f\x90\x71\xdf\xf6\xe4\xab\xcf\x21\x1c\xc8\xb8\x87\x78\x20\xe3\x1e\xd2\x81\x8c\x7b\xc8\x07\x32\xee\xa1\x1c\xc8\xb8\x87\x7a\x20\xe3\x1e\xda\x81\x8c\x7b\xe8\x07\x32\xee\x61\x1c\xc8\xb8\x87\x79\x20\xe3\x1e\xd6\x81\x8c\x7b\xbc\x0e\x64\xdc\xe3\x7d\x20\xe3\x1e\xdd\x81\x8c\x7b\xf4\x07\x32\xee\xf1\x39\x90\x71\x8f\xe1\x40\xc6\x3d\xc6\x03\x19\xf7\x98\x0e\x64\xdc\x63\x3e\x90\x71\x8f\xe5\x40\xc6\x3d\xd6\x03\x19\xf7\xd8\x0e\x64\xdc\xb7\x8d\xed\x6f\x9f\xc7\x81\x8c\x7b\x9c\x07\x32\xee\x71\x1d\xc8\xb8\xa7\xeb\x40\xc6\x3d\xdd\x07\x32\xee\xdb\x06\x76\xf5\x39\xf9\x03\x19\xf7\xf4\x1c\xc8\xb8\xa7\xf0\x85\x8c\x7f\x1d\x89\x07\xfc\xed\x29\x1d\xf0\xb7\xa7\x7c\xc0\xdf\x9e\xca\x01\x7f\x7b\xaa\x07\xfc\xed\xdb\xe6\xf4\xb7\xcf\xfd\x80\xbf\x3d\x8d\x03\xfe\xf6\x34\x0f\xf8\xdb\xb7\x4d\xe8\xea\x73\xbe\x0e\xf8\xdb\xf3\x7d\xc0\xdf\x9e\xdd\x01\x7f\x7b\xf6\x07\xfc\xed\xf9\x39\xe0\x6f\xcf\xe1\x80\xbf\x3d\xc7\x03\xfe\xf6\x9c\x0e\xf8\xdb\xb7\xcd\xe3\xea\x73\x2e\x07\xfc\xed\xb9\x1e\xf0\xb7\xe7\x76\xc0\xdf\x9e\xfb\x01\x7f\x7b\x1e\x07\xfc\xed\x79\x1e\xf0\xb7\xe7\x75\xc0\xdf\x5e\xae\x03\xfe\xf6\x72\x1f\xf0\xb7\x17\x77\xc0\xdf\x5e\xfc\x17\xfc\xfd\xbb\x1a\x2c\xcf\x81\x8c\x7b\x09\x07\x32\xee\x25\x1e\xc8\xb8\x97\x74\x20\xe3\x5e\xf2\x81\x8c\x7b\x29\xbf\x41\xc6\xbd\xef\x1b\xf6\x7a\xdf\x37\xec\xf5\xb1\x6f\xd8\xeb\x63\xdf\xb0\xd7\xc7\xbe\x61\xaf\x8f\x7d\xc3\x5e\x1f\xfb\x86\xbd\x3e\xf6\x0d\x7b\x7d\xec\x1b\xf6\xfa\xd8\x37\xec\xf5\xb1\x6f\xd8\xeb\x63\xdf\xb0\xd7\xc7\xbe\x61\xaf\x8f\x7d\xc3\x5e\x1f\xfb\x86\xbd\x3e\xf6\x0d\x7b\x7d\xee\x1b\xf6\xfa\xdc\x37\xec\xf5\xb9\x6f\xd8\xeb\x73\xdf\xb0\xd7\xe7\xbe\x61\xaf\xcf\x7d\xc3\x5e\x5f\xfb\x86\xbd\xbe\xf6\x0d\x7b\x7d\xed\x1b\xf6\xfa\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf6\x0d\x7b\xe3\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf6\x0d\x7b\xe3\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf6\x0d\x7b\xe3\xda\x37\xec\x8d\x6b\xdf\xb0\x37\xae\x7d\xc3\xde\xb8\xf7\x0d\x7b\xe3\xde\x37\xec\x8d\x7b\xdf\xb0\x37\xee\x7d\xc3\xde\xb8\xf7\x0d\x7b\xe3\xde\x37\xec\x0d\xb7\x6f\xd8\x1b\x6e\xdf\xb0\x37\xa8\xf8\x23\x64\x3c\xa8\xf8\x23\x64\x3c\x0c\x32\xbe\xc8\x78\xf8\x7b\x43\xc6\x83\x8a\x3f\x42\xc6\xc3\xa0\xe2\x8b\x8c\x07\xf5\xcc\x85\x8c\x87\xdf\x77\xc6\x0d\xbf\xef\x8c\x1b\x7e\xdf\x19\x37\x7e\x20\x22\xad\x72\x60\xe1\xf1\x63\x48\xa4\xd5\x0e\x2c\x3c\x7e\x8c\x88\xb4\xc6\x01\x78\xc7\x0b\x11\xf9\xb2\xfe\xcc\x05\x31\x7e\x7c\xc6\xb4\xee\x03\xf0\x8e\x9f\xd8\x42\x5a\xfe\x00\xbc\xe3\x27\xae\x90\x56\x38\x00\xef\x78\x21\x21\xa3\xe7\x49\x07\xe0\x1d\x2f\x1c\xe4\x9d\x3e\xe5\x00\xbc\xe3\x85\x82\x8c\xb7\xa7\x1d\x80\x77\x3c\xfd\x00\xbc\xe3\x19\x07\xe0\x1d\x5b\x2a\x27\xbd\x95\x67\x1d\x80\x77\x84\xeb\x00\xbc\x23\xdc\x07\xe0\x1d\x5b\xaa\x26\x49\x17\xfc\x01\x78\x47\x78\x0e\xc0\x3b\x42\x38\x00\xef\x08\xf1\x00\xbc\x23\xa4\x03\xf0\x8e\x90\x0f\xc0\x3b\x42\x39\x00\xef\x08\xf5\x00\xbc\x23\xb4\x2f\xc0\xfb\x57\xb5\x30\x42\x3f\xb0\xf0\x08\xe3\xc0\xc2\x23\xcc\x03\x0b\x8f\xb0\x0e\x2c\x3c\xe2\x75\x60\xe1\x11\xef\x03\x0b\x8f\xe8\x0e\x2c\x3c\xa2\x3f\xb0\xf0\x88\xcf\x81\x85\x47\x0c\x07\x16\x1e\x5b\x4a\x24\xf5\x39\xa6\x03\x0b\x8f\x98\x0f\x2c\x3c\xb6\x34\x48\x6f\x9f\xeb\x81\x85\x47\x6c\x07\x16\x1e\xb1\x1f\x58\x78\xc4\x71\x60\xe1\x11\xe7\x81\x85\x47\x5c\x07\x16\x1e\x5b\xaa\x23\xf5\x39\xdd\x07\x16\x1e\xc9\x1d\x58\x78\x24\x7f\x60\xe1\x91\x9e\x03\x0b\x8f\x2d\xad\x91\xfa\x9c\xe2\x81\x85\x47\x4a\x07\x16\x1e\x29\x1f\x58\x78\xa4\x72\x60\xe1\xb1\xa5\x30\x7a\xfb\xdc\x0e\x2c\x3c\x52\x3f\xb0\xf0\x48\xe3\xc0\xc2\x23\xcd\x03\x0b\x8f\xb4\x0e\x2c\x3c\xf2\x75\x60\xe1\x91\xef\x03\x0b\x8f\xec\x0e\x2c\x3c\xb2\x3f\xb0\xf0\xc8\xcf\x81\x85\x47\x0e\x07\x16\x1e\x5b\xba\x21\xf5\x39\xa7\x03\x0b\x8f\x9c\x0f\x2c\x3c\x72\x39\xb0\xf0\xc8\xf5\xc0\xc2\x23\xb7\x03\x0b\x8f\xdc\x0f\x2c\x3c\xb6\x94\x41\x6f\x9f\xe7\x81\x85\x47\x5e\x07\x16\x1e\xe5\x3a\xb0\xf0\x28\xf7\x81\x85\x47\x71\x07\x16\x1e\xc5\x1f\x58\x78\x94\xe7\xc0\xc2\xa3\x84\x03\x0b\x8f\x12\x0f\x2c\x3c\x4a\x3a\xb0\xf0\x28\xf9\xc0\xc2\xa3\x94\x03\x0b\x8f\x52\x0f\x2c\x3c\x4a\x3b\xb0\xf0\x28\xfd\xc0\xc2\xa3\x8c\x03\x0b\x8f\x32\x0f\x2c\x3c\xca\x3a\xb0\xf0\xa8\xd7\x17\x16\xfe\x75\xe4\x3e\x00\xef\xa8\xee\x00\xbc\xa3\xfa\x03\xf0\x8e\xfa\x1c\x80\x77\xd4\x70\x00\xde\x51\xe3\x6f\x00\xef\x10\xac\x04\xf0\x0e\xc1\x4a\x00\xef\x78\x73\xc1\xf3\xd4\x37\x17\x3c\xf7\x7f\xf3\xbd\x03\x98\x14\x1a\x20\xd0\x20\x53\x29\x80\x77\xc8\x54\x0a\xe0\x1d\x0a\x1b\x00\xf0\x0e\x85\x0d\x00\x78\x87\xc2\x06\x00\xbc\x43\x70\x14\xc0\x3b\x04\x47\x83\x9e\x57\x37\xc0\x3b\x04\x47\xa3\x9e\xd7\x37\xc0\x3b\x14\x36\x00\xe0\x1d\x8a\x0d\x00\xf0\x0e\x45\xb1\x02\x78\x87\x8c\xb1\x00\xde\x21\x63\x6c\xd2\x3f\xf3\x06\x78\x87\x40\x2d\x80\x77\x08\xd4\x02\x78\xa7\x60\x65\xfd\x97\x81\x6f\x0a\x71\x82\x85\xa7\x10\x67\xd5\x4d\xe6\x86\x85\xa7\x50\x25\x58\x78\x2a\x89\x3b\x58\x78\xca\x8a\x0a\x16\x9e\xb2\xa2\x82\x85\xa7\x12\xbc\x83\x85\xa7\x12\xbc\x83\x85\xa7\x12\xbc\x83\x85\xa7\x90\x2a\x58\x78\x0a\xa9\x36\x3d\xaf\x6e\x58\x78\x0a\xa9\x76\x3d\xaf\x6f\x58\x78\x2a\xc1\x3b\x58\x78\x2a\xc1\x3b\x58\x78\xaa\x28\x3f\x58\x78\xba\xb8\x61\xe1\xe9\xd2\x86\x85\xa7\xcb\x1b\x16\x9e\x4a\xa0\x02\x16\x9e\x4a\xa0\x02\x16\x9e\xd4\x91\x14\x16\x9e\xd4\x91\x14\x16\x9e\x7e\x6c\x58\x78\xbe\x75\x24\xb9\x0b\x75\x24\x85\x85\xe7\x73\x6d\x58\x78\x1a\x8a\x7c\xb1\xf0\x7c\xf6\x0d\x72\xf3\xd9\x37\xc8\xcd\x67\xdf\x20\x37\xc9\x2b\x2d\x2b\xf1\x7c\xa8\x90\x4d\x61\x86\xf9\x50\x01\x9c\x74\xb5\xf3\xa1\x7a\x3b\x75\x0d\xa7\x50\x63\xb8\x2e\x4d\xac\x49\x6a\x14\xaf\xb7\x41\x6a\x14\x4f\x49\xb1\x29\x34\x18\xe2\xa5\xe9\x34\xc9\x36\xad\xf4\xba\x93\x7a\xfc\xef\x73\x85\x02\xa3\xb2\xdd\xb1\x2b\x7f\x92\x50\xc5\xeb\x9b\x05\x2a\xb1\x90\x54\x78\x06\xaa\x7e\xb3\x3d\x70\x06\xaa\x7e\x93\xa5\x7c\x06\x64\xa2\x2e\xe8\xa4\x9e\xbf\x52\xfe\xce\x40\x55\xf3\x8c\x84\x81\xaa\xe6\x6c\x71\x9c\x01\x79\xa8\xa9\x39\x85\xf2\xe2\x50\x9f\x74\x05\xcb\x69\x9c\xdf\x47\xe5\xef\x09\x6f\x09\x81\x19\xaf\xff\x1c\x79\x43\xf9\x7f\x46\x1a\xa9\x5e\x3c\xb5\x2a\x27\xa9\x5e\x3c\x85\xd6\xa6\x52\xbd\xd4\xe8\xaf\xd9\x7e\xe6\x02\x29\x5f\xbc\x46\x8e\x52\xbe\xd4\xfc\x6b\x8e\xfd\xcc\x1e\x52\xbf\xa8\xa8\xf4\x24\xf5\x8b\x12\xea\x4e\xa5\x7e\xa9\xd5\x5f\xcb\xfb\xab\x5d\xbf\xe6\xd5\xaf\xfe\xf8\x6b\x0e\x7f\xad\xee\x55\xd6\x64\x46\x55\xa9\x67\xd6\x29\x2d\xcc\x7b\x1d\xff\xe7\x8c\x2a\xba\xf3\x06\xe3\x5b\xaa\xc4\x5f\xdd\xfb\x8b\xf2\x6b\x93\x54\x31\xca\xb5\x3d\xd3\xbb\x35\x81\x67\xce\xca\x7f\xed\x9e\xdc\x85\xf4\x31\xfe\xd6\xd5\x9a\xe3\xea\xeb\xd6\x47\x52\xc9\x78\x36\xb6\x4e\xa5\x92\xf9\xf5\x26\xec\x8d\x45\xfe\x4b\x21\x91\x99\x55\x33\x9e\x77\xad\x0d\xc7\x3d\xbd\x65\x55\x26\x9b\x8e\x55\xce\x6d\x6a\xd3\x71\xff\xf5\xf6\x75\xbd\x32\x44\x94\x5f\x47\x78\x0a\x41\x47\x53\x1b\x8d\xc7\xa5\xe7\xe9\x09\xcc\x06\x52\x09\x4f\x6d\x38\x1e\x37\x32\xfc\x7a\x3f\x92\x55\x9b\x8f\x7f\x5d\x3d\xfb\xcf\x51\x55\xf7\x47\x19\x4f\xaa\xfb\x5f\x23\xf8\xab\xde\x3c\x5f\x52\x51\xe9\x9f\x33\xe9\xd7\x7b\xf9\x19\x5b\x6f\x65\x7f\xde\x79\x79\xd7\x2d\x7a\xfe\xfe\x27\x1f\x47\x7f\xdb\x43\x6d\x65\x1e\xf5\xd7\xaa\xfb\xb3\xba\xb2\xa5\xd9\xa3\xd4\x67\x69\x9f\xff\xe8\x3c\xe3\xc7\xeb\x49\x83\x16\xa3\xb0\x30\x66\x48\xac\x3c\x0d\x6a\x78\x65\xe9\x98\xec\x11\x52\x1d\xfe\xa9\x0d\x3d\x53\xdf\x72\xfe\x2b\xa2\x6e\x6a\xcf\xcf\xf6\x8a\xd8\xf7\xe3\x49\xca\x3e\x09\xc9\xf4\x5a\x18\x15\x92\xf9\x6b\xb8\xd8\x04\xe2\x0a\x85\x66\xfe\x3a\x3a\x9e\xd7\x20\x34\x09\xd1\xf4\x5a\xcc\x14\xa2\xb9\x4d\x66\x42\x31\xdf\xc9\xdc\xca\x3e\x99\x15\x8a\x79\x4c\x66\x42\x32\xdf\xc9\xac\x90\xcc\x63\x32\x13\x9a\xf9\x4e\xe6\x36\xf7\xc9\xfc\xd6\x05\xfa\xf7\x64\xee\xd7\x3e\x99\xe5\x44\xff\xcd\x64\xc6\xa1\xfe\x4e\xe6\xb7\x7e\xd0\xf7\x64\xee\xcf\x3e\x99\xe5\x20\xff\x9a\xcc\xcf\xd7\x64\xc6\x69\xfe\x4e\x66\x39\xcd\x7f\x33\x99\x31\x67\xbe\x93\x59\xe6\xcc\x7d\x32\xf7\xf5\xf3\x4d\x31\x4c\xbe\x93\x59\x86\xc9\x6d\x32\x63\x9c\x7c\x27\xb3\x8c\x93\xdb\x64\x16\x92\xfc\xcd\x64\x16\x72\x3c\x26\x33\x86\xc9\x77\x32\xcb\x30\xf9\x9b\xa9\x22\xa4\x79\x4c\x66\x70\xe4\x3b\x99\x67\xfc\xd3\x64\x16\xa6\xfc\xcd\x64\x9e\x75\x9f\xcc\xef\xbe\xa8\xef\xc9\xfc\xee\x8f\xfa\xfb\x64\x7e\xf7\x4d\x7d\x4f\xe6\x39\xf7\xc9\xac\x38\xd4\x6d\x32\x13\x34\xf0\x4e\xe6\x75\xef\x93\x19\x23\xea\x3b\x99\x09\x1a\x78\x27\x33\xee\x7e\x4d\xe6\x25\x23\xea\x3e\x99\x7f\x1d\xbd\x8f\x19\xbb\x2e\xb7\xcd\xd8\x85\x0b\x5f\x33\x76\xc9\xd8\xfa\x3d\x63\x97\x8c\xae\xdf\x33\x76\x61\x7c\xd5\x8c\x5d\x18\x58\x3d\x95\x06\x16\x06\x56\x9f\xd4\x07\xfa\x49\x71\x8d\x05\xdc\xf5\x20\xe8\x75\x91\x1d\xcc\xb7\x14\x1f\x17\xfb\x08\xcf\xa4\xa4\xc3\x32\xe8\x1b\x5a\x8c\x31\xbb\xfb\xfb\x0c\xe9\xa7\xd2\x1d\x9e\xab\xa7\xf1\x3c\x6f\x6a\xaf\x75\x93\x1a\x2c\x3c\xff\x3d\x73\x2b\x05\x58\xee\x3d\x3d\xeb\xae\xa9\x50\x2e\x6e\x19\x8c\xfe\x75\x26\x3c\xd7\xf8\x3e\xe3\x29\x6a\x3c\x43\x9c\xfe\xab\x07\x06\xaf\x43\x2b\x29\x86\x50\xbe\xcf\x58\xa8\xc1\xb5\xc2\xb3\xda\x4a\x21\xd6\xe0\x57\xe2\x4c\xfc\x93\xa4\x44\xe7\xfe\x4e\x52\x22\x75\x7f\x2b\x69\xf9\xa3\xa4\xf5\x8f\x92\xb6\x3f\x4a\xda\xff\x28\xe9\xf8\xa3\xa4\xf3\x8f\x92\xc2\x6e\x99\xcf\xeb\x8d\xfc\x55\xeb\x06\x66\x32\x6a\xcc\xa4\x6d\x29\xf8\xad\xe5\x69\x31\xbe\x54\xc3\xe9\xd6\x3f\x19\x83\xd4\x84\x58\x8a\x59\xa0\xa0\xe8\x52\xbc\x82\xd3\x39\x98\xfd\x53\xaf\xeb\xb9\x5f\x78\xbc\xcc\x28\x6d\x55\xec\xad\x45\xe9\x12\xea\x28\x2c\x6a\x40\xa9\xce\xee\x32\xfa\xe0\x54\xf0\x7c\xc9\x18\xdd\x74\x1d\x45\x39\x87\x5a\x8b\x16\x23\x19\x23\xb4\x87\x3e\xac\x87\x2a\xbf\x7d\xa6\x47\xb2\x1a\x4d\xb0\x5c\xe4\xd6\xa2\x48\x21\xb5\x2a\x96\x0c\xcc\xa4\xc4\x5a\xcf\xa7\x40\xe3\x5f\xd5\xf1\x92\xdd\x99\xe2\x22\xeb\x29\x5f\x2d\x96\x65\xaf\xce\xb5\xaf\x16\xd5\x60\x58\xf0\x56\xa0\x1a\x0c\x09\x2d\x97\xb8\x02\xa5\x76\x97\x71\x84\xcf\x3f\xfd\xd7\x3f\x4d\xa0\xe7\x41\x04\x59\x88\x43\x7f\x2b\xec\x2c\x2a\x2f\x3a\x7d\x40\x78\x82\xa3\xbc\xc9\xa2\xf2\xa2\xa3\x9c\xdc\xa2\xba\xa9\x78\xc2\x32\x33\xa2\xf3\x30\xa8\x65\x26\x44\xe7\x29\x78\xbb\xcc\x7c\xf8\xf9\x67\xf8\xfa\x67\xe4\x1c\xf2\x53\xeb\xd4\x13\xac\xbe\x0c\xcb\x3a\x0f\xab\x5e\xd4\x33\xf5\xa4\x57\x59\x66\x02\xfc\xfc\x73\x7c\xfd\x73\xd2\x62\x79\x4c\x6b\xff\x67\x76\xfb\x3f\xb3\xdf\xef\x99\x9f\xaf\x7f\x86\xaf\x7f\xc6\xfd\x9e\x54\x47\x5f\x7a\x67\x6f\x1d\x54\x06\x98\x99\xd1\x2c\x7f\xe9\xaf\x96\x99\xd0\x3e\xad\xfb\xab\xe5\xbe\x5a\x40\x0b\x4d\xb9\xf2\xec\x53\xa7\x30\x91\x48\x6c\xb3\x0a\x8b\xd2\xa3\x7f\xf2\x8d\x80\x43\xab\xf0\x8d\x60\x84\xcb\x70\xaa\x95\x27\xb5\x96\xbd\x4f\x07\x97\x5b\x64\xf8\x76\x30\xc2\x65\xd8\xd4\x29\xed\xcc\x32\x6c\xea\x94\xae\x66\x19\x36\xb5\x02\xa8\xd6\x5a\xfb\x3f\xcd\x04\x66\x89\xbd\xad\x75\x53\x7c\x8d\xf7\x69\xa6\x2f\x17\xba\xce\x79\xce\xf1\x74\x33\x79\x59\x95\x66\x6b\x05\x5a\xf4\xc5\x4c\x5d\x56\xb3\xd9\x5a\x70\x55\x60\xca\xaa\xf0\x6f\x2d\x02\x95\x05\x82\x9c\x78\xcb\x60\xad\x55\xd2\xb6\x16\xdc\xba\x33\xea\x0c\xaa\x5a\xf5\x78\x6b\xc1\x9b\xa9\x07\xb5\x1a\x7d\x29\x7c\x77\x03\xad\x2e\x00\x5a\x57\xa3\x9c\x1c\xa0\x75\x09\xb4\x7a\xdd\x85\x11\xa9\x37\x2f\xb0\xfa\x9e\x1b\x5f\xe7\xe6\xd7\xb9\xb5\x9f\x53\x34\xa7\xce\x19\x10\xfd\x9c\x73\x5f\xe7\xfc\xd7\x39\xeb\x75\xd2\x32\x6c\x5b\xe4\x2d\xbf\xab\xb5\xe2\xb6\xe9\x63\xf5\xf2\xd5\xaa\x5f\xad\xf6\xd5\xea\x5f\xad\x41\x8b\x37\x68\x60\xf4\xb5\x91\x2c\x03\xa3\x2e\x50\x01\x6a\x0d\x46\xb9\x16\xc6\x71\x7f\xb5\x34\x0a\xe8\xf5\x08\x5f\xad\xf8\xd5\x4a\x5f\xad\xfc\xd5\x42\x06\xac\x53\x6b\xd4\xaf\x96\xb6\x89\x33\x3e\x07\x32\x08\x38\x0d\x64\xf8\x35\x0a\xfe\xbe\x2c\x0f\xc4\xd3\x80\x1c\x6b\xdb\x79\xbe\xe6\xb5\x95\xf3\x5a\x54\x33\x4a\xe4\x08\x5e\xd3\x7d\xb5\xfc\x57\xeb\xf9\x6a\xc9\xcd\xcf\xe4\x78\xeb\x5a\xaa\xa5\x60\x4e\x5a\x0a\x48\x7d\x5b\x5c\x67\x13\xce\x5f\x42\x7b\x36\x89\xad\xe0\xe3\xaf\x96\x55\x61\x35\x43\xac\xb5\xf8\xa7\xb2\xed\x2e\xfe\xa9\xbc\x0c\xba\x8b\xb6\xbe\x71\x97\x5b\x28\xd4\xa6\x91\xbf\x15\x20\xca\x3d\x6f\x19\x33\xb9\xe7\x2d\xa3\x24\xf7\xbc\x65\xbe\xb1\xbc\x52\xfe\x36\x4f\xdb\x5a\xa6\x91\xfd\x1d\x51\x3b\x5e\xe7\x9e\x9f\xcf\xf0\xab\x15\x3e\x1f\xcc\xdf\x31\x7e\x3e\x98\xbf\x63\xfa\x2c\x21\xfe\x8e\x0c\x02\xab\xc9\xea\x6f\x99\x15\x90\xe1\xc6\x20\xf0\xca\xf0\x06\x6d\xdc\xb4\x14\xea\xcc\x5d\x14\xb4\xf1\x70\x9d\xb8\x91\x55\x3e\xf5\xb7\x82\x36\x1e\x9e\x2e\x5e\xf4\xd0\xcf\x37\x68\x43\xf7\xdc\x52\xc9\xfa\x5b\xd6\xf5\xac\x96\x6c\xca\x7a\x82\x6c\xca\x3c\x41\xdc\x28\x23\xad\x38\x89\xde\xa7\x02\x8a\x79\x9f\x4e\xd9\xa0\x6d\xfa\x79\xa7\x6c\xd0\xa6\x9c\xbc\x53\x36\x68\x2b\xa7\xe7\x9d\xb2\x41\x5b\x09\x3b\xef\x94\x0d\xda\x90\x88\x77\xca\xf8\xdc\x75\x9d\x8c\xae\xb4\x94\xf1\x79\x72\x17\x65\x7c\x9e\xdc\xe5\x51\xa8\xc2\xa4\xb5\x8f\x02\xf7\x3c\x5f\xad\x40\x32\xde\x4c\x2b\x7e\x2a\x3d\x79\xf7\xa4\x4f\x4d\x32\xef\x0c\xd0\xa8\x26\x99\x77\x38\xc8\xa9\x49\xe6\x1d\xe6\x50\x6a\x92\x79\x87\x63\x9c\xa4\xa5\xde\xe1\x14\xc7\x40\xe9\x1d\xf0\x86\x9a\x64\xde\xe1\x0c\xbf\x75\x4f\x1c\xe1\xd4\x24\xf3\x0e\x27\x38\x35\xc9\xbc\x03\xde\x50\x93\xcc\xbb\xa0\xba\x71\xf4\x53\x85\xf7\x12\x77\x89\xaa\xef\xc5\x13\xa2\xea\x7b\x71\x17\x79\x51\x7f\x6a\x92\x79\x8a\xb7\xab\x26\x99\x57\xf1\x76\x6a\x92\xf9\xb7\x78\xfb\x4f\x4d\x32\xef\x92\xea\x7b\xf1\xb6\x54\xcb\x6e\xf0\x0e\xe4\x35\xfd\xa9\x49\xe6\x29\xf7\xae\x9a\x64\xfe\x2d\xf7\x1e\xf9\x26\x49\xf5\xbd\x74\x27\x6a\xac\x75\x9d\xa3\x96\xd9\xcd\xfb\x93\x87\x34\x6e\x7d\x1e\x9f\x9a\x64\xde\xe1\x1d\x45\x8d\x7a\x87\x67\xf4\x53\x93\xcc\x3b\x3c\xa3\xd4\x24\xf3\x94\x8b\x57\x4d\x32\xef\xe4\x11\x8d\x9f\x3e\xe3\x11\xa5\x26\x99\x57\x39\x79\x6a\x92\x79\x95\x93\xa7\x26\x99\xa7\x9c\xbc\x0a\x69\x7a\xca\xc9\x7f\x5a\xf9\xa7\xf5\xb7\xa5\xda\x53\x69\x5e\x35\x36\xfd\x5b\x69\x7e\x32\xe0\x70\x86\x52\x47\xd3\x53\x69\xfe\xd3\x1a\x5f\x2d\x6a\x5e\x06\x75\x6c\xed\xad\xa2\xfa\x9b\x88\x87\xb3\xd2\x05\x5e\x6d\x89\x5f\x2d\x60\xbf\x06\x9c\xea\xb8\x3e\x3a\x67\xfd\xa4\xc6\xa6\x57\xdd\x79\xea\x68\x7a\xd5\x9d\xff\x69\xf5\xaf\x16\xfd\x2c\xbc\xee\xa2\xda\x9c\x0c\x08\x9c\x90\x4e\x1f\x4e\xc5\x0f\xb4\x28\x2c\xb5\x78\x13\x14\xb0\xa3\xc6\xa6\x77\x14\xb0\xa3\xc6\xa6\x77\x4b\x55\x2e\x4d\x5a\xaf\x02\x76\x86\x66\xbd\xbf\x28\xd6\x67\x35\x36\xbd\x7f\xd3\xf0\xeb\x9c\x52\xef\x4f\x5a\xe9\xff\x7e\x6a\x6c\x9a\xcd\xee\xa7\xc6\xa6\xd9\xd5\xfe\xf7\xd6\xd8\x34\xeb\xdc\xff\xde\x1a\x9b\x66\x4b\xfb\xa9\xb1\x69\x56\xb3\xff\xbd\x35\x36\xbd\xbf\xf5\x74\xee\xa2\x94\x2b\x8d\xbb\x28\xe5\x8a\x21\x48\xef\xef\xf8\x51\xca\x66\x4b\xfb\xa9\xb1\xe9\xfd\x2d\x44\x4e\x3f\x8d\x76\xab\xc6\xa6\xf7\x4a\xb3\xd2\xf4\x3c\xfa\xe2\x74\x4f\x6a\x73\x1a\xde\xf2\x5e\x9b\x65\xcd\xe0\xe3\xfd\x5b\xcf\x54\x2d\x8a\xeb\x31\x01\xbc\xb6\xb5\x36\xde\x19\xdb\x5a\x31\x19\x7a\xcf\x96\x56\x6a\x6c\x7a\xaf\xe2\x7a\x17\xb2\xb3\x9d\x95\x52\x7b\xde\x6b\x3b\x6b\x57\x4b\x05\x2a\xf5\x04\x55\x6f\xbd\x69\xa9\x7a\xbd\xee\xc9\x64\x0e\xbc\x09\xed\x51\x68\x5c\xa7\x8d\x08\xcc\x0e\xcf\x26\x04\x0a\x69\x7a\xd5\xe3\xa7\x90\xa6\xf7\xda\x80\xb0\xb8\x27\x1b\x10\x28\xa4\xe9\xbd\x36\x1f\x0c\x64\x7f\x89\x3c\xef\xd3\x7f\x88\x2f\xf6\xb0\xff\xbd\x85\x34\xbd\xf7\x1b\xbb\xf5\x5e\x11\x61\x46\xcb\xbd\x57\x44\x58\xe3\x3a\x2d\x48\x91\x37\xaf\x05\x29\xd1\x17\x2d\x46\x8c\x64\xcf\x62\x44\x21\x4d\xef\xb3\x0a\x70\x22\x11\x7c\xee\xd6\x98\xd0\x42\xa4\xd1\xfa\x86\x64\xf0\x84\xbc\x2b\x2d\x9f\x77\xa5\xe5\xf3\xae\xb4\x7c\xde\x95\x96\xcf\xbb\xd2\xf2\x79\x57\x5a\xbe\xec\x4a\xcb\x97\x5d\x69\xf9\xb2\x2b\x2d\x5f\x76\xa5\xe5\xcb\xae\xb4\x7c\xd9\x95\x96\x2f\xbb\xd2\xf2\x65\x57\x5a\xbe\xee\x4a\xeb\xff\x13\x76\x66\x47\x92\xf3\x38\x10\x76\x89\x22\xc1\xcb\x1c\x9e\xfe\x9b\xb0\x31\xf8\x52\x55\xdd\xf3\x47\xec\xbc\x35\x5b\x2a\x89\x10\x2f\x24\x8e\x44\x1a\x3f\x0f\xad\x34\xff\x3e\xb4\xd2\xfc\x79\x68\xa5\xf9\xf3\xd0\x4a\xf3\xef\x43\x2b\xcd\x9f\x87\x56\x9a\xdf\x43\xeb\xff\x6e\xcd\x69\xfe\x7d\x9e\xa5\xf9\xf3\x3c\x4b\xf3\xe7\x79\x96\xe6\xcf\xf3\x2c\xcd\x9f\xe7\x59\x9a\x3f\xcf\xb3\x34\xff\x3e\xcf\xd2\xfc\x79\x9e\xa5\xf9\xf3\x3c\x4b\xf3\xef\xf3\x2c\xad\x9f\xe7\x59\x5a\x3f\xcf\xb3\xb4\xfe\x3e\xcf\xd2\xfa\x79\x9e\xa5\xf5\xf3\x3c\x4b\xeb\xe7\x79\x46\x65\xfe\xcf\x02\x56\x45\x1d\x2d\x8c\xb7\x9a\x8e\x5a\x7c\xe2\xc8\xe7\x3f\xf6\xf3\x77\x27\xff\xfc\xdd\x29\x3f\x7f\x77\xea\xaf\xdf\x9d\x9f\x1b\xe2\xb9\x3f\x7f\x77\xc3\xcf\xdf\xdd\x1f\x36\xbb\x44\x35\x7c\xd9\xec\x12\xd5\xf0\x65\xb3\x4b\x6f\x35\x7c\x4d\xdb\xfb\xc3\x66\x97\x2c\xfc\xb0\xd9\x25\x0b\x3f\x6c\x76\xc9\x7c\xc3\xbf\xa3\xe8\x5a\xa7\xa5\x6b\x7f\xc6\xb2\x6e\xb4\x4e\xf3\x0d\xbf\x9f\xa5\x96\xbb\xfa\x0f\x1b\xbe\xb9\x2d\xf9\x8e\xac\xdf\x79\x0d\xdb\x81\x0c\xe6\x36\xe3\x3b\xd0\xdb\xcd\xed\xc4\x77\xb8\xf5\x33\x51\x1b\xbf\xf4\x33\x68\x79\x80\xec\xf1\x10\x81\x64\x6e\x03\xbe\x83\xcd\xc4\xfc\x10\xb9\x03\x7d\x9f\xba\xf9\x77\xb8\xdd\x3e\x51\x37\xff\x0e\xbe\x04\x75\xf3\xef\x30\xbd\xe1\x8f\x7c\xad\x70\xd0\x53\x37\xff\x0e\xc6\x9d\xba\xf9\x77\xbc\xef\x9b\x5c\x43\x3e\x3f\x44\x4a\x3a\xc8\xe0\x87\x48\xb1\xa5\x7e\xfe\x91\xaf\x36\x0f\x49\x48\xd4\xcd\xbf\x03\x85\x84\xba\xf9\xb7\xb3\xb8\xa9\x9b\x7f\x07\xdb\x07\x75\xf3\xef\x60\x9b\xa3\x6e\xfe\x1d\x86\x0c\x51\xf2\x2d\x5a\xc8\x90\x75\x27\x63\x04\x0e\xb2\x88\x0c\xa8\x35\xe6\xc7\x4d\xd9\x0d\x89\xfc\xb8\xa9\x71\xe9\xed\x2e\xc3\xa3\x2f\xe1\xc7\xcd\x6e\xf5\xec\xad\xb1\x88\x8c\x93\x23\xdb\x64\x51\x72\xf0\xdb\xa4\x71\xa2\x07\x09\x39\xc0\x81\xd4\xf1\xcf\xfb\xf0\xbd\x13\x72\x24\xbe\x46\x42\x8e\xc2\x1b\x08\x64\xc6\x1b\x91\x2c\x31\x4e\x89\x31\x4c\x92\x51\xbf\x73\x7b\xfb\x9d\xfa\x1d\x32\x9a\xfa\xf2\x47\xc6\x9e\x38\x80\x2c\x31\x4e\x1c\x6a\xe6\x36\xe3\x3e\xa3\xde\xa0\x79\xa8\xa7\x20\x1f\x3b\x93\x25\xcd\x43\xc6\xc9\x90\x0f\x55\xd1\x1c\x43\x95\xa2\x6f\x6a\x8c\x53\xe2\x29\xa6\x71\x42\x76\x93\x7c\x7a\x0a\xf3\x90\x03\xdd\x4c\xf2\xd1\x6b\x23\x50\xbb\xea\x29\x8c\x61\xd2\xfb\x90\x2f\x21\x83\xe3\xab\x32\xf5\xcd\x0c\xf9\xd2\xf8\xc7\x36\x6d\x6e\x36\x28\x93\xdd\xdf\x0c\xd1\x13\x83\xe2\xb0\xac\x44\x2d\x33\x93\xe8\xdc\x99\x99\xa2\x68\x52\xe6\xb0\xec\xf6\xcd\xc4\x73\x58\x76\x3b\x5b\x9a\x39\x2c\x2b\x7b\xf3\x59\x1c\x96\xdd\xce\xf6\x6c\x0e\xcb\x4a\x59\xba\xb3\x78\x5f\x2a\x43\x9b\x35\xb4\x6a\x35\x1f\x3e\xd3\x53\xdc\x7d\x72\xb4\x94\x32\x43\x1b\xf8\x9c\x1e\x99\x52\x7a\x43\x86\x4c\xd5\x90\xa9\x6b\xbe\x04\x93\x16\x88\x9b\x45\x1a\x55\x35\x92\x79\x94\x4a\x0f\x5a\x04\x1e\xa1\xd2\xdf\x0d\xce\xcd\x1b\x59\xa6\x01\x73\xf3\x46\xdd\x87\x2f\xe1\xe6\x8d\x1e\x34\x5d\x0a\x55\x35\x86\xee\x74\x77\x52\x47\xc7\x33\x37\x6f\xb4\xa6\x6d\xc4\xcd\x1b\xf9\x00\xf8\xcd\xcd\x1b\x65\x4d\x3d\xf3\x8f\x7c\x3d\xbe\x77\xfa\x16\x7a\x17\x13\xc4\xa3\x54\x5a\xe4\xb8\x33\x8f\x44\xe9\x65\xe9\xed\xb8\x7b\x30\x99\x98\x43\xd9\xa2\x43\xd5\x1c\xca\x7e\xbe\x8b\x43\xd9\x32\xd1\x7d\xad\x42\xf5\xa8\x2d\xdb\x61\x6c\x5b\xda\x96\x1d\xc6\xe6\xbd\x90\xc1\x21\x6c\x6f\x0f\x7d\x71\x08\x9b\x8f\x26\xab\x43\xd8\x76\xde\x3b\xff\xc8\x57\x87\x16\x9c\xc3\xd7\x5c\xb5\xf5\x3a\x7c\xcd\xa1\xeb\x29\x2e\xdf\xa8\x8c\x91\xc3\xd7\x1c\x34\x91\x1d\xbe\xe6\x73\x19\x69\x87\xae\x3d\x6a\xf1\xbb\xa6\x58\x46\xd3\x1b\xa8\x8a\x02\xb2\xb0\xa6\xaa\x28\xf4\xa5\xb1\x34\xaf\xae\xf9\x11\xd1\x22\x6f\x77\x4d\xb1\xb6\xf7\x4e\xf3\xb1\xcd\x3c\xd3\x35\xc5\x16\x38\x3a\xad\x41\xca\x73\x75\x67\xf5\x2f\xaf\x6d\xd9\x21\x6b\x89\x97\x9e\x39\x2e\xad\x17\x3d\xce\x1a\xa4\x3c\x95\xb1\x6d\x14\x5d\xba\x7c\x6b\xc7\xa5\xb9\x63\xf2\x32\xd7\x30\xdb\xd4\xaa\x6a\xb8\xe8\x86\x9e\x42\x25\x25\x94\x22\x73\x0d\xb3\xdd\xc8\x33\x3b\x99\xd5\xa8\x29\xe6\x1a\x66\xad\x68\xb4\xe6\x1a\x66\x8b\x8f\x5a\x9e\x59\xdd\x8b\x7e\x07\x55\x67\xd5\x33\x5d\xbe\xf1\xe8\x9a\xaa\xf6\x30\x7b\x28\x30\x55\xf5\x05\x1d\xcf\x96\x1e\xe8\xa7\xe3\xd9\x16\xb4\x6e\x1d\xcf\xb6\xae\x5e\x3b\x9e\xed\x41\xc7\x6a\x67\xfd\x15\xbd\xcf\xc7\xcf\xde\x6b\xd7\xfb\xa9\xcd\xcd\xbd\x09\x75\x6b\x5f\x72\x6f\x42\x0b\x3a\xf4\xa8\x0e\x15\xde\x6b\x2e\xdf\xc0\x14\x68\x54\x87\x7a\x67\x0f\xd5\xa1\x1e\x63\x8d\x51\x1d\xaa\x26\x7a\xe6\xde\x84\x16\x34\xeb\xdc\x9b\xd0\xf6\x65\xa4\x07\xfb\xcb\x40\x3e\xe7\xdb\xcd\x47\x63\x3b\x58\x7f\x9a\xc9\x1e\x83\x53\x9a\x8e\x55\x0f\xb0\xe9\xef\x7c\x71\xad\xbc\x6c\xed\x9f\xae\x95\x97\x3f\xea\xff\x3f\xb6\xe4\xa9\xa1\xe5\x43\xb8\xb2\x5e\x5f\x1d\xc2\x95\xf5\xde\xa4\x93\xb9\xb2\x5e\xc2\x54\xcb\x28\x7b\xa4\xdf\xf9\xd0\xe6\xce\xd2\x74\x6d\xbc\x6e\xac\xae\xe6\x9a\x78\x1b\x53\x77\x36\x96\x3b\x02\xb9\x26\x5e\xa3\x36\x6f\xd7\xc4\xdb\x9f\x15\xea\x2d\x9f\xba\x31\xe8\x9a\x4f\xdd\xa2\x0f\x48\x41\xad\x47\xcb\xcf\xb5\xf0\xba\xb4\x99\xba\x16\x5e\x37\x1a\xbc\xb9\x06\xde\xcb\xa5\x67\xae\x81\xb7\x2c\x3d\xcf\x35\x70\xbb\xda\x06\x5d\xfb\x2e\x49\x7a\xa5\x6b\xdf\xf5\x3d\x2c\x5c\xfb\x2e\x2d\xeb\x77\x3e\x75\x1f\x4d\xd6\xc5\xd0\x4a\x06\x27\xb4\xa8\x57\xcb\xd6\x5d\x20\xd9\x82\xde\xe0\x47\x47\xc1\xb2\x6a\x0b\xed\xb4\xeb\xda\xa2\xa5\xb7\x6f\xa6\xa0\xae\x1d\x26\x0f\x43\xeb\x2e\x90\x72\xd4\x72\x24\x90\x65\x01\x36\x15\xd4\xea\xbc\x61\x53\x90\x49\x47\x8e\x23\x81\xdd\x2c\xee\x1d\xf4\x5b\x15\x65\xe2\xdb\x6c\xaa\x35\x6c\xbe\xa2\x5b\xb2\x73\xd6\xd1\xe2\x96\xec\x5c\x74\x28\x50\x54\xab\x6a\x41\xba\x25\x3b\x37\x6d\xe0\x14\xd5\xea\x3a\x80\xdd\x92\x9d\x87\xbe\x0d\x45\xb5\xc6\xd4\xdb\xfd\xf8\xd8\xd2\xf5\xdc\x92\x9d\x37\xb6\x6b\x73\x4b\x76\xde\xda\xa8\xdc\x92\x9d\x37\x58\xce\xdc\x0f\x92\xaf\xf4\x27\xf7\x83\xe4\xdb\x19\x8b\xc3\x1c\xdd\x6a\xf9\x1c\x7d\x34\xda\x8e\x76\xca\x73\x79\x9f\xa3\x9d\x12\x75\x5c\x39\xda\x29\x51\x8b\xdc\x63\xc8\x4b\xd6\xc6\xe8\x31\xe4\xe5\x1d\x43\x8f\xff\x29\xa6\x0d\xf5\x10\x4c\xac\x79\xe1\x36\xf6\x52\xa4\x1f\xba\xdf\xa5\x54\x7d\x41\x47\x50\xa5\x62\xf3\xb6\xc3\xf1\x08\x80\x37\x47\x50\xa5\xeb\x60\xa3\x62\x48\xd7\x0a\x51\xc5\x10\xe9\x80\x54\x0c\x19\x5a\x67\x17\x26\x64\xcd\xc3\x8b\x75\x1c\x3c\x65\x1e\x97\x5e\x4e\x54\xcb\xe5\xbb\x3a\x48\x3d\x2e\xbd\x1c\x7d\x09\x27\x09\x29\x57\x1b\x87\x93\x84\xd4\xe7\x22\x83\x47\x0d\xd5\x84\xdd\xde\xdc\xd0\x57\x4d\x0a\x9b\x1b\xfa\xaa\x49\x5a\x37\xf4\x55\x3b\xea\x99\xaf\xc1\x8c\x2a\x92\xdd\xd0\x57\x8b\x47\xcc\xa7\xec\x86\xbe\xda\x31\x42\x64\x37\xf4\xd5\xc6\x61\x92\x61\x7a\xee\x53\xd7\x7c\x0d\x52\x2d\x25\x65\x8f\x2c\xaa\xda\x7a\xb3\x23\xc4\xba\xae\x9e\xe9\xc7\xff\xae\x89\x96\xaf\xc1\xed\x0c\x76\x29\xc3\xf4\x7c\x92\x7e\x87\x7a\x83\xa2\x90\x1d\x21\xd6\x7b\x1e\x5a\xcb\xd7\x59\xd6\xdb\x59\x83\xc8\x97\x83\xd6\xa0\xde\x70\x69\xb9\xb4\xd9\x11\x62\xa3\xfe\x67\xca\x8e\x10\x9b\x4c\x58\xd9\x11\x62\x7b\x1a\xcf\x74\x84\xd8\x9e\xf9\x8f\x54\xb5\x94\x1d\x3c\x36\xd9\x58\xb2\x83\xc7\xa6\x53\x3c\x43\xd7\x97\xd1\x01\xb3\x83\xc7\x96\xb7\x5a\xbe\xbd\xe2\x03\x4d\xd9\xc1\x63\x6b\x49\x1d\xf3\xed\xb5\x75\x44\x77\xf0\xd8\x1a\x4b\x25\x3b\x78\x6c\x8d\x13\x37\x3b\x78\x6c\x1d\x6b\x53\x76\xf0\xd8\x7a\x52\xcb\x45\xef\x68\x1b\xd9\xc1\x63\xd3\x09\x9f\x1d\x3c\xb6\xc1\xc2\xc9\x0e\x1e\xdb\xc6\x62\x96\x1d\x3c\xb6\x1d\x74\xa7\x6b\x76\x97\xc5\x9f\xdd\x8e\xd9\x0e\x1a\x5a\x8e\x68\x76\x43\xad\x8a\xc6\x8b\xec\x0e\x2c\x7b\x08\xfa\x9d\x6b\xae\x0f\x0b\x27\x3b\xb0\xec\x0f\xe0\x30\x3b\xb0\xec\x4f\x46\x3e\x07\x96\xfd\x29\xea\x8b\x9f\x9c\x8f\x06\xd3\x41\x65\x7f\x34\x3d\x1d\x54\xf6\x67\xd0\x4a\xc4\xf9\x63\x7d\xcd\x89\x40\x1d\xb4\x8d\xec\xa0\xb2\x4b\xdb\xcf\xca\x8e\xd5\xd4\x75\x50\xd9\x0d\x2d\x25\x27\xb6\x56\x36\xa9\xec\xa0\xb2\x57\xb6\xa5\xec\xa0\xb2\x57\x8c\x06\xd9\x41\x65\xaf\x15\xd9\x1d\x54\xf6\xa6\x65\x04\xa8\x6c\xea\xb5\x83\xca\xde\x96\x5a\x2e\x9f\x4c\x16\xd9\x41\x65\x9f\xa6\x37\xb8\x7c\x53\x5f\xc2\x41\x65\x9f\x1c\x6c\x99\x3c\x86\xa9\x05\x40\x20\xd2\xbc\x6a\xb9\x7c\x1b\xb8\x9f\x1d\x54\x76\xe9\x48\xd9\x18\xbf\xa0\x6b\xbe\xf5\x44\xf5\xda\x41\x65\x29\x1c\x65\xd9\x41\x65\x79\x34\xee\x0e\x2a\x5b\xc3\x64\x91\x1d\x54\xbe\x68\x26\x3b\xa8\xec\x81\xe3\x3f\x3b\xa8\xac\xed\xe8\x77\x3e\x3f\x57\x57\xcb\xed\x91\x67\xeb\x0d\xee\x42\x97\x49\x2e\x3b\x72\xcc\x07\xcc\x97\x1d\x39\x56\x03\x2b\x66\x47\x8e\x5d\x6e\xd6\xec\xc8\xf1\xc5\x4b\xd9\x91\x63\x6b\xe8\xe2\xd9\x91\x63\x8f\x60\x9b\xec\xc8\xb1\xe7\x89\x7c\x8e\x1c\x5f\x2c\x95\x1d\x39\x96\xa4\x95\xe3\xc8\xd1\x4d\x16\xd2\xdc\xb3\xa3\xc7\xfa\x00\xdb\x33\xe8\x31\x68\xb4\x1d\x3d\xbe\xc8\x2b\x3b\x7a\x2c\x79\xea\x77\x7e\x3c\xde\xa6\x3b\xcf\x0f\x54\x96\x33\xda\x39\x76\xea\x0c\x7a\xac\x68\x93\x19\xf4\x98\x1e\x7a\xe7\xe8\xb1\x45\xf5\xdc\xd1\x63\x4b\x5b\x77\x1a\xaa\x98\x9e\x42\x30\xa2\x56\xa4\xa3\x47\x4c\x2f\xda\x70\x4b\xfd\x81\xfd\xb2\x23\xc8\xde\x1f\x3d\x09\x0d\x16\x87\x7c\x06\x41\xbe\x9b\xa3\x23\xc8\x17\x25\xe6\xb2\x7e\xa0\xc4\x5c\xf6\xaf\xd6\xf9\xd5\xba\x9f\x2f\x89\xb1\x2d\x83\x22\x85\x29\x33\x28\xb2\xa2\xdd\x67\xe2\xc0\x8e\x66\xb5\xa3\xc8\x5e\x08\x2c\xc8\x8e\x22\x79\x52\xd4\x6f\x7d\xbf\xb9\xa6\xeb\xbe\x1e\x13\x5e\xb0\xec\x48\xb2\xc5\xf5\xcf\x2d\x1a\x90\x39\xb7\x1e\xe9\xc3\xfc\x47\x9d\xf6\x96\xec\x90\x0c\x7a\xe5\x94\xd1\x36\x5c\x01\x29\x4d\x2f\xf7\xa5\x9a\xbb\x9e\xe2\x4b\xb5\x6a\x80\x2a\x20\x05\x97\x58\x06\x64\x26\x2d\x32\xea\xf3\x5a\xe0\x77\xd4\xe7\xfd\xb4\xd2\xaf\x96\x6b\x79\xd2\x17\x73\x43\x53\xc7\x42\x9a\x1d\x64\x16\x12\x97\x52\x76\x90\x59\x64\xdf\xca\x0d\x90\xa2\x2d\xac\xb1\x15\x1d\x3d\x73\xbc\xba\xe4\x9d\xba\x3e\xd1\x17\x99\x02\x0e\x34\x5b\xc1\x32\x97\x9b\x80\x0a\xf2\x37\x2a\xfa\x62\x4e\xc9\x00\x4d\xc3\x2e\x9a\x1d\x68\x96\x10\x99\x64\x0e\x34\xeb\xd6\x61\xd6\x65\xc3\xd3\x9d\xae\x09\x45\x7d\x7d\x07\x9a\xed\x3d\xf1\x1d\x68\xee\x56\xea\xde\x5a\xea\xbd\xfc\xe7\x3f\xf5\x33\x29\xb0\x69\x65\x40\xe7\x4d\x7a\x9b\x6b\x45\x41\x12\x38\xe8\x2c\x5d\xcb\xcf\x41\xe7\x6e\xb6\xf7\x79\xef\x5e\xff\xf9\x0f\x32\x03\xe3\x72\x67\x5c\xd1\xaa\xb2\x83\xcf\xde\x31\x36\x65\x07\x9f\xa5\x34\x9e\x4d\x28\xdb\x41\x6b\xcc\x0e\x3e\xdb\xdd\xba\xe6\x25\x55\xaf\xb6\x67\x07\x9f\xb5\x6a\x8e\x09\x7c\x6a\xb4\x1c\x7c\xb6\xa2\xcd\x6c\x60\x1c\xd1\xc6\x3a\x38\x42\x4d\x77\xba\x9c\x03\x8c\x90\x01\x9f\x59\xba\x8b\x83\xcf\xdb\x83\xde\xe0\x4b\x97\x4c\xc7\x94\x87\x96\xae\x9e\xe2\x2a\xc2\x5d\x7a\xdf\xfd\x61\x70\xc9\x8e\x30\xcb\xc5\xda\x9c\x41\x98\x32\xbf\xe4\xf9\xa3\xce\x47\xca\x84\xc7\xc9\x55\x94\x27\x25\x8d\xab\x5a\x2e\x5f\xd4\x3c\x99\x9f\xed\x69\x0d\x5d\xf7\xb9\x5b\x81\xc6\x19\x94\x29\xe7\x60\x76\x94\xd9\xa6\xf4\xc8\xa9\x2d\x58\x77\xce\x77\x26\x9f\xa2\x3e\xf9\xdc\x1d\x41\xbd\xa7\x74\xb3\xd6\xae\x23\xcd\x5e\x16\x52\x3b\xd2\xec\x4d\xdf\xc0\x91\x66\x36\xcd\x26\x47\x9a\x79\x80\x42\xb3\x23\xcd\x36\xc0\xab\x79\x61\xe4\x42\xab\xce\x0b\x94\x82\x99\x30\x83\x34\x63\xd3\x35\x5f\x9f\x69\xe8\x0d\x95\x59\xa8\x67\x7e\x8e\x9a\x1d\xf4\xce\x8e\xce\xcf\x2c\x5b\x18\x4a\x1e\x3d\x69\xa2\x95\xaa\x07\x2e\x63\x92\x52\xb5\x64\x08\xd2\x73\xcf\x0f\xc3\x53\x5e\x5a\x9f\x3c\x73\xa3\x0e\x69\x96\x6d\x34\x5d\x6d\xf4\x8e\x36\x6b\x06\x63\x64\x47\x9b\xed\x6a\x2c\x37\xe5\x8d\xb5\xe6\x41\x9a\x24\xf7\xa5\x0c\xd2\x3c\x92\x11\xa4\x79\xf1\x77\x64\x47\x9a\x25\x49\x15\x74\xa4\x59\xa6\x14\x35\x47\x9a\x2d\xe9\x68\x07\x69\xba\x32\xf6\xff\xb7\x6d\x40\xa8\x4d\x3d\xc4\x4f\xd9\x68\xea\x98\x9f\xb2\x59\xa7\x84\x83\x50\x9b\x9a\x72\x80\xd0\xae\x25\x0c\x08\xfd\xb4\xd8\x9a\xde\x16\x36\x22\x02\x9a\xb2\x83\xd0\x6f\xcb\x4f\x9e\xa5\x09\x74\xca\xaf\x56\xa5\x1c\x24\xc2\x02\x42\x3f\xad\xfe\x1d\x6c\x86\xc9\x81\x68\x4d\xd2\x37\xcf\x67\x1a\x5f\xe9\x48\x80\xd1\xa4\xd3\x14\x30\x9a\x3b\x1f\xeb\xfc\xb4\xf5\xe5\xf3\x3d\x69\xf1\xbb\x66\x07\xa4\x35\x0a\x32\x39\x20\xe5\xdd\xea\xcd\x45\xf3\xd5\x94\x75\x50\x9a\x6f\xd2\x35\x86\x5a\x68\xe1\xe2\x4e\x91\xa6\x06\x28\x4d\x4d\x6f\xf9\xb1\x05\xd3\xe7\x0b\x70\xc3\x46\x97\x2f\x76\x4d\x6d\xf1\x17\xf4\x82\x75\x2d\x3b\x30\xed\xe1\x7d\xa7\x57\xb3\xbe\xa6\xa7\x6c\x34\x39\x16\xc5\x65\x6b\xc2\x00\x94\x2f\x86\x05\xf4\xdd\x12\xb0\xbb\xb3\xa5\x95\xf0\xfc\x6a\x45\x0c\x5c\x81\x56\xc2\xa6\xdb\x68\xf9\xd6\xd4\xd1\xc4\x4b\xc8\x5f\xc2\xf4\x54\x02\x86\x13\xfa\x59\x28\x41\x34\xa7\x9e\xf9\xd5\x0e\xdf\xdf\xfa\xb4\x5d\x6c\x4d\x05\x17\xe5\x6e\x7a\x8b\x03\x6c\x19\x9d\x8a\x00\x68\xd7\x73\x19\x33\x0b\x7b\x31\x1f\x0a\xe9\x2c\x13\xed\xa8\x3c\x9f\x31\x5b\x59\xff\x71\x79\x02\xfa\x5b\x71\x20\xfa\x5a\x58\x0b\xe4\xf0\x0d\x83\x40\x71\xb4\xf9\xda\x5b\xcb\x83\x9f\x44\xef\x25\xde\xe5\x48\x56\x47\x9b\xbd\x01\xfa\x0b\xf1\x2e\x67\xeb\x29\x1e\x2a\x58\x9b\xee\x9c\x98\xda\xf4\x76\x8f\x77\x91\xb1\xab\xe0\xaa\xdc\x68\xb3\xc5\xd1\xa6\x9c\x7e\xba\x8e\xaf\x04\xb3\x43\x71\xc4\x69\x07\x5f\x42\x89\xcf\xfb\x1d\xf6\xd0\xf5\x88\xd9\x90\xef\xeb\xa8\x33\xbf\xdf\x28\xb2\x16\x71\xb7\x17\x50\xe7\xa7\x55\x38\xc2\xe8\xa1\xa3\xce\xd6\xd8\xda\x8a\x50\xa7\xe9\x0d\x1e\x12\x99\x51\x9a\x8a\xa3\xce\x1c\x8f\xae\xcd\xcf\x77\x9f\xfa\x8f\x1b\x4d\xe4\xf7\x29\x51\x46\x05\xbe\x66\x04\x59\x37\xbd\xe5\x72\x48\xd0\x72\xe4\xd9\x06\x9b\x7d\x01\x79\x56\x62\xa5\x0a\xc8\xf3\xd3\x72\xa3\xc9\x00\x67\x97\x84\xe5\x00\x65\xab\x08\x79\xea\x6b\xc1\xcb\xb4\xc0\x85\xc5\x91\x67\x9d\x4b\xef\x6b\xbc\x9d\xaf\x01\xf2\x2c\x47\x2d\xd4\xd9\xac\x37\x4c\x56\x06\xa3\x43\x06\xbd\x0c\x70\x85\x0c\xfa\xcb\x86\x5d\x1c\x79\xbe\x56\xf6\x02\xf2\x0c\x1a\x67\xd3\xda\xe3\x29\x64\xd0\x7b\x15\xfd\xff\xbb\x7d\x17\x92\xeb\x05\x12\x8a\x61\xb3\x25\x48\xad\x38\x28\x2d\x64\x16\xa5\xe2\xa0\xb4\x16\x82\x6b\x8a\x83\xd2\xb6\x35\xa0\x86\x51\x81\x33\xbe\x18\xc3\x5b\xf8\x2c\x02\xa5\x51\x77\x0e\x80\x05\x1f\xc2\xd8\x76\x34\xf4\x02\xa5\xef\xb5\xcd\x54\x53\xeb\xfc\x6a\xf9\xb6\xd3\x09\x98\x2b\x0e\x4a\x77\xb3\xbb\x97\x96\x9c\x80\x29\x61\x3a\x05\x60\x1a\xa2\xae\x01\x66\xb0\x20\x15\x80\xe9\xd4\x74\x72\x60\x9a\x3b\x71\x12\x85\x64\x7b\x7b\x5b\x3e\xbc\xe1\x6d\x21\xa3\x86\xc2\x41\x69\x53\x38\x51\x71\x50\x6a\xe7\xbd\xe6\xc3\x3b\x4d\x6f\x5f\x9f\xe5\xf8\xa8\x07\xfb\x87\x0b\xa4\x38\x30\x2d\x45\xdb\x03\xc0\x34\x44\xb6\x15\x07\xa6\xf5\x02\xd1\x8a\x03\xd3\x3a\xb1\xe9\x96\x02\x60\x1b\xba\x26\x92\x04\xc6\xc3\x81\x69\x0f\x0f\x5f\xa3\xe0\x36\xba\xba\x56\x7e\xc4\x00\x17\x40\xa9\x1c\xbc\xa5\x7c\xb7\xd7\x4e\x5f\x01\xa6\xef\xb6\xe3\xc0\xb4\x3c\x98\xd1\x8a\x03\xd3\x52\x31\x56\x95\xf2\x95\x13\x53\x45\x29\xfb\x5b\xe3\x39\x15\x07\xa7\x55\x4e\xbd\x82\x7b\xb3\xa2\x5b\x15\x80\xe9\xa7\xf5\x50\x2d\x99\xc5\x89\x7b\xf3\x12\x34\x5a\x00\xa6\x0a\x17\x2c\x15\x0a\xb5\xa2\x16\xc4\xc3\x20\xb3\xe2\xa0\x34\x1b\xc6\x97\x52\x71\xdf\xaa\xaf\x8e\x3c\xeb\xd0\xa6\x06\xf2\x2c\xe0\xc9\x52\xa5\xdd\xf2\x95\x1d\x79\xb6\x7b\xf4\x3b\x8e\x97\xab\xdf\x51\x0d\x5a\xe3\x0c\xf2\x0c\x8f\x9e\xe2\xf6\xdb\x06\x96\x29\x20\xcf\xca\xe1\x5f\x9a\xb6\x5c\xdb\x07\x13\x56\x71\xf4\xc9\x77\x97\x64\x8e\x40\x73\xd6\x08\x36\x22\x10\xb4\x25\xe3\xe6\xcc\x87\x37\xe1\xe6\x9c\x41\xad\xfa\xc3\xa5\x55\x9a\x8c\x7d\x8c\x00\x08\x54\xb1\x0a\xc5\x11\x68\x5e\x18\x02\x4b\x63\x5d\x66\xfd\x0e\x15\xef\xd1\x35\x8f\x98\x9f\x3a\x54\x41\x9f\xc2\x2d\xa5\x61\xc7\xc5\x73\x54\x3a\x47\x8b\x8e\xe6\x8e\x9f\x01\x13\x6c\xe9\x68\xf0\x3a\xce\x1c\x7d\xde\x0e\x52\x2e\x1d\x37\xae\x0e\x4c\x47\x9f\xad\xe3\xc9\x28\x8e\x3c\x5f\xb7\x5c\xe9\xf8\x8a\x50\xda\x0a\x88\x33\x65\xb5\x7c\x4d\x66\x8d\x23\x6e\xce\x7b\x18\x2b\x47\x9c\x95\x2a\xe2\xa9\x74\xec\xd4\xef\x1b\x36\xab\x57\xad\x03\xda\x62\xac\x40\x9a\x0f\xe6\x9f\xe2\x48\xd3\x2e\xd1\x43\x65\xb0\xe5\x6a\xad\xe2\xe6\x54\xc8\x43\x71\xa4\x99\x8f\x0e\x11\x90\x66\xce\xba\x93\x30\x8a\xf2\x8f\x8c\xc3\x54\x00\xa1\x19\x48\x56\x06\x43\x8b\x5f\xba\x0c\xc0\xb6\x96\xbf\x83\xd0\x7e\xd1\x19\x0b\x20\x34\x69\x3b\x72\x10\x1a\x8f\xce\x25\x07\xa1\xf9\x62\xc7\x2d\x0e\x42\x73\x3f\x2c\xb5\xf1\xd1\x1c\x16\xb1\x05\x65\x70\xa2\xea\xdc\x72\x20\x9a\x4f\xe7\xb9\x00\xd1\xac\xf3\xde\x81\x68\x1e\x05\x81\x71\x75\x66\x9d\x4d\xb8\x3a\xb7\xb6\xb1\x99\xbf\xc5\x72\x52\x99\xe5\x57\x0b\x10\xaa\x89\x00\x08\xed\x4d\xcf\x74\x7e\xf0\x23\x4d\x6f\xe2\xe5\x05\x84\x16\x5c\x9d\xef\xc4\xc3\xd5\xa9\x84\x96\xe2\x00\xb4\x09\x56\x15\x07\xa0\x19\xca\xa4\x54\xe4\xea\xd4\x66\xb8\x70\xe5\xe2\x4a\x29\x4b\xb6\x4e\xfa\xe2\x00\xb4\x4a\xcf\x2e\x00\x50\xc5\xb2\x16\x07\xa0\x79\xe3\x02\x2e\x02\xa0\x9a\x32\x00\xd0\xaa\xad\xc6\x01\x68\x6d\xd2\xc4\x70\x75\x1e\x1d\x22\x0e\x3e\x5b\x90\xf6\x07\xf8\x34\x6c\xab\x05\x57\xa7\x22\xc4\x0b\xae\xce\x4f\x6b\xa3\x7b\xaa\x9f\xbe\x0d\xed\xa2\xdf\x29\xca\x82\xbe\xe0\xea\x7c\x37\x9d\x8d\x01\x48\x12\x6d\x38\xdc\xb5\x40\x76\xfe\xd5\x2a\x38\x45\xe9\xb5\x03\xcc\x62\xda\x20\xb7\xdc\xb5\xba\xd3\x8f\x8b\x47\xe8\xc0\x01\x66\x6d\xfa\xba\x0e\x30\xfb\xd4\x22\xd8\xb8\x6b\xa5\x57\x39\x8a\x2c\x7d\xeb\x99\xe7\x87\xb3\xb8\x90\x94\x63\x52\x58\x1c\x45\xf6\x8b\xcf\xa0\x38\x8a\xac\x47\x8a\x87\xa3\xc8\x7e\x74\xe0\x80\x22\xe5\x64\x2e\xb8\x32\x8b\xb6\xbb\x83\x6a\xb3\x75\x27\x9a\xab\xd4\x1e\x47\x91\xb9\x6b\x1b\x71\x14\x99\x15\xb7\x5f\x0e\x47\x85\x0e\xc0\x23\x03\x81\x7e\x87\x56\xa7\x35\xe8\xe8\xb1\x0a\x6b\x96\x83\x91\x52\x7a\xaa\xa3\xc7\xba\xb5\x65\x3b\x7a\x6c\x47\x1b\x23\xae\xcc\x86\xa9\xa9\xe0\xca\xfc\xb4\x88\x84\x91\xd2\x85\x2b\xf3\xc1\xb8\x54\xee\xc7\x46\xbb\xd5\xd7\x9b\xbf\xff\x41\x4e\x47\x8f\x39\x82\x96\xcb\xd5\x5a\xd3\xef\x7d\x1c\x15\xd8\x5a\x2e\x5a\x78\xce\xfb\x68\xbf\xb9\x8a\x0c\x51\x4f\x7c\xbc\x0a\xa6\x83\x72\xe5\x3f\xd0\x73\xf1\x6f\x61\x8e\xab\x20\xc4\xce\x5a\xac\xb8\x2e\x2f\x31\x47\x15\xd7\xa5\x5c\xfd\xd5\x11\x62\x3b\x64\x09\xd4\x40\xe4\x19\x8a\x62\xc5\x75\x99\xd8\xb0\x2b\x45\x6a\x2f\x5f\xac\x3a\x42\xfc\xb6\x3c\xe8\xae\xa3\xd0\x56\x77\x5d\x96\xf6\xf6\x05\xd7\x2c\xdf\xa7\x12\xdc\xaa\x60\x82\xea\xc8\xb1\xaf\xac\x37\xec\x4f\x68\xc1\xff\xdd\xa2\x6b\x20\x72\xc2\xf9\x15\x52\x25\xee\xb5\x03\xa4\x2a\x95\xc6\x48\x5d\x4d\xf5\x21\xe8\x0e\xbd\xaa\x02\x26\x2b\x53\xa7\xe2\xd5\x0c\x41\xbf\x63\x28\x73\xdf\x67\xea\xb7\x99\x10\x1a\xfd\x96\xe5\xf8\xa8\xe5\xd3\x55\x76\xa9\x2a\x0e\x03\x74\xcb\x2a\x40\xa9\xcf\x06\x57\x41\xd4\x87\x82\x9f\x20\x6e\x5d\x5b\x1f\x38\xdc\xf4\xdc\xfd\x35\x6a\x30\x40\x50\x8b\x65\x4e\xe2\xfa\xe0\x42\x61\x6a\x55\x4a\x47\x14\x0d\xa5\x83\xca\x9c\xb1\xe4\x55\x00\xa5\xf4\x95\x0a\xa0\x34\x8e\x94\xea\x80\x32\x17\x20\x54\x8d\x68\xe3\x1c\x5c\x95\xd2\x11\xe3\xd1\x33\x5d\xce\xb1\xf8\x46\x11\xdf\x01\x1e\xe3\x1a\xfb\xf7\xe0\x42\x3a\x40\xe5\x7a\xf4\x4e\xcf\xb3\xab\x47\xbf\xf5\xe3\x61\x1d\xfd\xd6\x8f\xc0\xa3\xef\xe7\x80\xd2\x0e\x5a\x63\x8d\xb8\xc2\xd0\x28\x6b\xc2\xb6\x0e\xe8\xae\xe9\x6b\x20\xd0\x94\x85\xec\x37\x6a\x72\x3b\xa8\x2c\xa6\xde\x27\x90\xd5\xd2\x9d\xbe\xbd\x1a\xc6\xa2\x9a\xb0\xc5\xe6\xb1\x37\x47\x6b\x4d\xb8\xc4\xd8\x7e\xab\x03\xcb\x37\x2a\xa2\x3a\xb0\xfc\xb6\x06\xba\x84\x7a\x38\x19\x05\xbe\x6d\xfa\x68\xe4\x6b\xeb\x49\xbe\x6c\x5b\xe7\x1b\x41\xcf\xd6\x34\x1f\xa0\x67\xeb\x38\xe5\xaa\xc9\x55\xa4\x96\x8f\xe7\x64\x23\xaf\x20\xc8\x4f\xcb\xe5\xec\x6c\xe4\x15\x04\x39\xf5\x0d\x70\x6b\x2a\x6a\xa2\xe2\xd6\x3c\x9a\xf3\xb8\x35\x05\x7b\xab\x11\x50\x89\x92\x52\x1d\x41\x7e\x5b\xb8\xc3\xf4\x35\x70\x6b\x3e\x28\x28\xd5\x11\x64\xd5\xa6\x5b\x0d\x4d\x4e\xf3\xd5\x11\x64\x4d\x1a\x01\x47\x90\x55\xf1\xdc\x55\x6e\x4d\x9c\xa3\x35\xa3\xca\x60\xb8\xaa\x19\x3b\x2c\x4a\x51\x75\xf4\x58\x0b\x5a\x7e\x85\xaa\xed\x72\xb8\x57\x47\x8f\x55\xf8\xa3\x66\x02\xd6\xb0\x99\x57\xd0\x63\xc7\xfc\x55\x1d\x3d\xd6\x8e\x7e\x5d\x71\x69\x7e\x5a\x03\x57\x3e\x32\x38\x7a\xac\x7d\xe8\x7d\xf2\x75\xe9\xce\x0d\xca\x53\x8b\xbd\x47\x73\xdc\x91\xe3\xa7\xe5\xc8\xd1\x62\x51\xcb\xe5\x5b\xf8\x62\x2a\x01\xb1\x0b\x77\x76\x05\x39\x6e\xcc\x6d\xb5\x7c\x8f\x11\x54\x88\xea\xe8\xb1\x1e\x4c\xba\xd5\xd1\xe3\xb7\xe5\x32\xbe\xab\xa5\xb4\x1f\x71\x22\xb5\x10\x35\x82\xf2\x5a\x71\x69\x9e\xa6\x67\x62\xe4\x40\xc7\xae\x05\xb5\x33\xb7\x7d\xb0\x2e\xd4\xca\x31\x81\x67\xa6\x82\x00\x95\x42\x55\x1d\x01\x9a\xe9\x1b\x38\x02\x6c\x51\xb2\xe0\x96\x8c\xf5\x5f\x9a\x75\x75\x00\xd8\xa2\x16\x36\xf1\xad\x4f\xd5\xeb\x30\x8b\x03\x2a\x2a\x00\xd0\xa2\x3a\x86\xd9\x1f\x4f\x79\x75\x00\xd8\x0c\x48\x5b\x1d\x00\x5a\xc6\xf5\x56\x71\x3d\x66\x6d\xbd\x0e\x00\x5b\xd6\x9d\xed\x63\x73\x5b\xda\xe0\x1d\x00\xb6\x9a\x74\x77\xa2\xc5\x84\x70\xf0\xd7\x1a\xba\x66\x05\xfc\x55\xf5\x00\xf0\x57\xaa\x5a\xf5\x47\xb4\x4a\x75\xf0\xe7\x11\xff\xde\x22\x92\x45\x1b\x90\x83\xbf\xd6\xdf\xa7\xb8\x8c\x72\x61\x55\x5c\x8f\x53\xdb\xbc\x62\x5c\xf5\x35\x1c\xfc\x35\x85\x09\x55\xc0\xdf\xbb\x69\x01\xfe\xaa\xb6\x55\x07\x7f\x4d\x89\x1d\x15\xf0\x77\xd0\x1e\x2a\x31\xae\x57\x8b\xaf\x63\xac\xd0\x97\x02\xfc\xdd\xab\x3b\x0b\xa0\x9a\xbe\x74\x10\x90\x26\x58\x07\xdc\x6a\x52\x03\xfe\xee\x62\x22\x74\x40\xbc\xce\xfd\x8e\xf6\xac\x83\x4d\x31\xae\x6f\x6b\xff\x6a\x9d\x5f\xad\xfb\xb3\x35\xc2\xaf\x16\xe8\x00\xe0\x5b\x47\xfc\xd5\x4a\xbf\x5a\xf6\xab\x95\x7f\xb5\xca\xaf\x56\xfd\xd5\x6a\xbf\x5a\xfd\x57\x6b\xfc\x6a\xcd\x5f\xad\xf5\xab\xc5\x31\x5e\xe2\x56\x68\x60\x75\x94\xd7\x13\x16\xe8\xea\x08\xaf\x2b\x66\xa2\x4e\x0c\x6b\x25\xed\x77\x9b\x76\x94\xd7\x0b\xb6\xd8\x3a\x7f\xda\x4d\xab\xa3\xbc\xde\x74\x5c\x4f\x6c\xe0\x00\xee\x3a\x15\x4b\xcf\x4c\x71\x94\xd7\xe5\x08\xad\x13\xa3\x13\xb1\x36\x75\xb6\x5f\xad\x4e\x4b\x4f\x71\x39\x07\x3a\x7c\x75\x94\xd7\xe5\x5e\xaf\x93\x88\x9d\xa2\xdf\xf9\x38\x0e\xcd\x29\xdc\x8c\xf3\xd1\xef\x88\xd8\x91\xaa\x42\x40\xeb\x56\x5f\x40\x79\x5b\x6f\x58\x20\x08\xcc\x8c\xd5\x51\x5e\x57\x84\x7c\x5d\x3f\x23\x76\xaa\xa3\xbc\x7e\x35\xa3\x17\x1a\xa9\x8e\xe1\x85\x46\x8a\x89\xa4\xca\xcd\x58\xfa\x3e\x52\xd9\x16\xea\x4a\x0e\xfb\xe0\xd5\xaa\x6b\xfc\xe7\x3f\xc4\x65\xeb\xf0\x5a\xc4\x2d\x6b\x76\x2f\xb4\x6f\x30\x57\x75\xc4\x97\xaf\xbe\x1f\xee\xc6\x84\x21\xb4\x82\xf8\x92\xe6\x02\xc1\xad\xef\xb1\xb3\x49\x79\xd1\xe1\xac\xe0\x56\x8f\x16\xd1\x7f\xfc\x28\x1f\x5a\xeb\x3b\x7f\x4c\xae\x84\x9f\xd6\x8d\xda\x62\xcf\x3e\xef\x33\x08\x54\x26\xdc\xb9\x6e\x8c\xa2\xd2\xe0\x1d\xfd\x99\xb0\x6e\x3d\x18\x8a\x88\x1f\xa9\x8e\xe2\xec\xe4\x7f\xa5\xbf\x54\x07\x78\x26\x48\x52\x1d\xe0\x99\x80\x53\x3d\xb8\xcd\xb0\xa3\x56\x07\x78\x76\x88\x99\xae\x0e\xf0\x4c\x21\x4d\xf5\x10\x2a\x7f\xd4\x6a\xde\xba\x7a\x0a\x46\x86\xab\x37\x90\x0a\x10\xd4\x69\x5c\x30\x58\x29\xeb\xc1\x65\x56\xf4\x94\x8d\x65\x48\x77\x1e\xdc\x69\x7a\xbb\x83\x70\xf9\xef\xeb\xc5\x86\x04\xa4\xab\x97\x88\x04\xe9\x94\xb8\xfe\xae\x3e\xb0\x03\x38\xbb\x04\x8c\x55\x07\x6f\x26\x3b\x68\xbd\xa4\x64\x60\x1f\xac\xee\xda\xcb\xaf\x86\x74\x49\xc9\x88\x7a\xe6\xa2\xa5\x67\xba\xb6\x1b\x04\x73\x2e\xc6\x10\x8c\x36\x15\xd7\x9e\x52\xe2\x5b\x20\x2e\x1a\x89\x5a\x20\xa5\xa6\x5d\x5a\x84\xf4\xf3\xad\x9b\x03\xb7\x1c\xb0\xd7\x36\x5c\x7b\x61\xa9\x05\x72\x39\xba\xb3\xd0\xea\xb4\x2a\x2d\x3d\x13\xe4\xc2\xf2\x6a\x81\x23\x39\xe8\xed\x03\xc4\x13\x68\xe1\xa9\x7e\x74\x8d\x94\x21\x8e\x88\x06\xc3\xdd\x93\xf5\x4c\x6c\x95\x98\x3f\x9a\x98\xec\xd8\xea\x1a\xee\xbe\x07\x73\x4b\x83\xb1\xee\x39\x6a\xe1\x23\xe1\xb8\x6e\xa0\x2f\xa8\xb5\x52\x03\x7d\x29\x6e\xbf\xa9\xd6\x33\xa9\x0e\x0d\xf4\x15\xf9\x9e\x0d\xd6\xb8\xd8\xf5\x3b\xd0\x17\x4b\xb8\x09\x7d\xe1\x54\x6d\x0f\x11\x3d\x49\x6f\x67\x09\xe3\x1c\x6e\x91\x25\xcc\x86\xd8\x40\x56\x49\xef\x03\x59\xa5\xa2\x3b\x31\x4a\x0d\xdd\x49\x6c\x3a\x71\xe4\x0d\x64\x95\x34\x0e\x20\xab\x04\x4e\x68\x20\x2b\x79\x3d\x1a\xc8\xca\x30\x7b\xb5\x48\xfc\xbd\x24\x02\x55\x59\xd1\x1b\x60\xb8\x23\x12\xa5\x81\xaa\xac\xe9\x77\x3e\x0e\xa6\x19\xe2\xa8\x2a\x9b\xc6\x01\x54\x65\xa4\x6b\xb4\x44\xd4\x07\x2b\xb5\x25\x98\x03\x31\xe1\x34\xb2\x0e\x0d\xa5\xa5\x25\x90\xe3\xd2\xef\x5c\xbe\x8c\x41\xa7\xa9\x7c\x0a\xdb\x4b\x4b\xb8\x90\x51\x14\x5a\x52\xd1\x41\xbe\x44\x22\x42\x07\x6b\x76\x4b\x44\x5d\x35\x3d\x85\x1c\x09\xcd\x41\x47\x44\xb9\xa0\x94\x35\x47\x44\xb9\x60\x2e\x6b\x20\xa2\xa2\x59\x00\x22\x2a\x1a\x23\x47\x44\xb9\x98\xee\x04\xe1\xea\x0b\x3a\x22\xca\xa5\xe8\x77\x85\x96\xee\xf4\x6f\x5d\xc0\xee\xcd\x51\x4f\x2e\xd8\x0b\x1a\xbe\xb1\x02\xee\x68\xf8\xc6\xca\xd2\x53\xe8\x27\x07\x7a\xcb\xf4\x13\xb4\xdd\x32\xc4\xda\x98\x5f\x9a\x23\x9b\x2c\x3f\x4b\xcb\xb8\xb0\x89\x70\x6f\x19\x5f\x0a\xb1\x2f\xcd\xd1\x4b\xfe\x03\xaf\xfe\xff\x96\xdc\x32\xa9\x0c\x28\xee\x8d\x4c\xbf\x8a\x9a\xdf\x1c\xd8\xe4\xaa\x8d\xc1\x81\x4d\xae\x70\x2d\x34\x32\xfd\xa4\x2d\x36\x62\x35\x2b\x6e\x96\x56\x70\x97\xb0\x09\x37\xe2\x31\x1b\xe7\x75\x73\xf0\x92\x1b\xfa\x78\x73\xf0\x92\x65\x4f\x6d\x64\xf3\x35\x02\x9e\x9a\x03\x97\xdc\x9a\xee\xf4\x4f\xdd\x86\x9e\xe2\xe2\x35\xc2\xad\x9a\x03\x97\xdc\xb6\xee\x24\x1d\x03\x2b\x70\x73\xe0\x92\x9b\x96\x11\xb1\x98\x4d\x1b\x58\x21\x1b\x2c\xe8\x7d\xd8\xd2\xa3\x7e\x77\x68\x49\x06\xdc\x97\x5a\xb6\x95\x48\x18\x4c\x15\x0d\x77\x57\x07\x98\x36\x07\x3b\xb9\x13\xb3\xd1\xc8\xe6\xeb\x1a\x5a\x5c\x5a\x03\xbb\x61\xc3\xa5\x35\xf4\x76\x82\x29\x87\x06\x13\x44\xa3\xd4\xe9\xe6\x88\x26\xcb\x8a\xdf\xc8\xd8\x53\xd2\x73\x23\x63\x6f\xbc\x7d\x71\x19\x06\xa1\x8e\xcd\x11\x4d\x1e\x5d\x2d\x97\x61\x10\x66\xd4\x70\x69\x0d\x82\xc7\x5a\x23\x58\x8b\x18\xd5\xd6\xf0\x05\x70\xc0\x36\x5c\x59\x62\x65\x68\x04\x53\x2a\x94\xac\x39\x9a\xc9\x13\xcc\xd4\x1c\xcd\x64\x25\xf6\xb6\x46\xe4\x07\xb0\xaf\x35\x19\x7c\xf4\x3e\x62\x62\xd1\xc5\x1b\xee\xaa\x25\xd9\x1b\x6e\x64\x6d\x05\xb8\xab\x56\xd2\xdb\x5d\x86\x25\xd9\x1d\xb1\xe4\xa5\xc5\x88\xbb\x6a\xe9\x0d\x04\x4b\x2e\xa2\x07\x5a\x27\x0a\x42\xa3\xe2\x88\x25\x2f\x1d\x0f\x8e\x58\xf2\xd6\xb8\xc3\xf1\xb7\x71\x9a\x37\x47\x2c\x79\x9b\xde\xd7\x68\xe9\x5a\xa7\x85\x0c\x8e\x58\xf2\xee\x7a\xc3\xa4\xa5\x67\x2e\x5a\xea\x27\x69\x3f\x78\x4c\x5a\x27\xed\x87\x2c\x84\xd6\x15\x9d\xc3\xb5\x41\xda\x0f\x31\x37\x0d\x77\xd5\xd1\x38\xe0\xae\x3a\xe8\x6a\x8d\xe0\xc7\xf3\xe8\x4e\x02\xca\x50\x19\xda\xc0\x75\x9a\x75\x0d\xbf\xcb\x50\x0b\xbf\x0b\x86\x9a\xe6\xc8\x22\x1f\x7d\xb3\xa1\x38\x72\xde\x80\xef\xe8\x06\x66\xcf\xc4\x35\xa8\xcd\x9b\x40\xc5\x1b\x75\x67\xa6\xc5\x1b\x1c\x39\x64\x85\xfe\xb6\x49\x70\x9b\x94\x92\x89\x0f\x0c\x13\x4b\x9b\xb8\xaa\xb3\x5a\x83\x96\x9e\xe2\xfd\xbc\x98\x43\x9a\xfc\x43\x68\xc5\x6d\x12\x27\xae\x5d\x0a\xff\xd0\xd5\x2c\x77\xe4\x90\x2f\x61\x87\x8d\x00\xc5\x4b\x2e\x43\x23\x40\xf1\x6a\x3f\x5b\xa4\x51\x2d\xdd\x49\x44\x97\x36\x68\xfc\x43\x4a\x92\x69\x0b\xf9\xb4\x87\x2c\xe4\xd3\xce\xb7\x90\x0f\x33\x6a\x73\xe4\x50\xe4\x5f\x68\x04\x27\xba\xeb\xfb\xff\x6f\xc9\x0e\x26\x0a\xb5\x4e\x52\x73\x20\x51\x94\x8c\xd9\x96\x62\x50\x25\xc2\xc6\xa2\xc9\x30\x38\x90\x28\xe1\x15\xd6\xed\x81\x01\x03\x45\xdb\xd8\x3e\x35\xb4\x0e\x24\x0a\xc5\x22\x52\xdb\x04\x46\x69\x9a\x39\x2c\x28\x0f\xc0\xa5\xe1\x2c\x52\x0c\x6a\x23\x1a\xf1\x91\x8e\x40\x34\xe2\x43\xb8\x5d\xdb\xc4\x16\x68\x62\x39\x5c\x28\x0f\xd6\xde\xb6\x09\x7a\xdf\xba\x93\x88\x52\x9d\x62\x38\x8b\x22\xce\xb7\xe6\xce\xa2\x12\xb5\xe0\x1c\x66\x94\xa8\x05\xe7\x30\xa3\x44\xe9\x55\x07\x6b\x2d\x36\xa8\x46\xde\x5b\xcc\xba\x93\xdc\x4c\x0d\x26\x79\x6f\x51\x83\x42\xde\x9b\x18\x47\x1a\x21\x87\x09\x87\x65\x23\xe4\x30\x69\x19\x91\xf7\x26\x37\x6c\x7b\xc3\x09\xe9\x35\xe1\x84\x49\xba\x13\xb9\x6d\xe2\x4c\x68\xe4\xb6\x25\x1c\x50\x0d\x87\x90\x5c\x1f\x0d\x87\x50\xc2\xa7\xd0\x70\x08\x25\x8d\x1f\x0e\x21\x38\x71\x53\x23\xb7\x4d\xd1\x9d\x8d\xdc\x36\xd3\x21\x4a\x18\xa1\x49\x9f\xc6\x11\x64\x5a\x7e\xe4\xb6\x59\xd6\xdb\xc9\xdd\x23\xc1\xa2\x5d\x72\xf7\x74\x58\x38\xce\x28\x56\x75\x8d\xf4\x60\x62\x72\x9b\x63\x89\x62\xb8\xd4\xba\x63\x89\x62\x00\xd6\x1e\x48\x5f\xe7\x18\xeb\x84\x09\x66\xd2\x2d\x3a\x61\x82\x99\xe3\xa1\x3b\x96\x28\xd9\xf4\x14\x22\xef\x8b\x5a\x2e\x43\xc6\xc4\xd3\x1d\x4b\x94\x4c\xd4\x6f\x0f\xe4\x1f\x32\x7b\x3a\x4e\xa0\x8c\xae\xdd\x1d\x4b\x94\x7c\x75\x0d\x8b\x39\x16\xe3\x4e\xf8\x60\x31\xb5\x2e\xb6\x75\xde\x80\x37\xa7\xa0\xfb\x76\x58\x4c\x0a\x0e\xee\x8e\x37\xa7\xb0\x72\xfa\x43\xa8\x23\x9a\x7e\x7f\x70\x3c\x62\x4d\xee\x84\x06\x56\x8c\x79\xfd\x51\xf6\x40\xa2\x85\x43\x2e\xa9\xe5\x32\x54\xd3\x53\x3a\x2d\x3d\xc5\x65\xa8\x78\x3f\xfa\x43\x1c\x4e\x55\xcf\x28\xc8\xc2\xba\xed\x84\x06\x56\xcc\x37\xfd\x21\x87\xf2\xf2\x75\x1f\x62\x70\xf0\x00\x75\x3c\x38\x15\x17\x6c\x57\xf1\x6f\x7d\xb3\xa8\x14\x7c\xde\x1e\x95\xcb\xcb\xfb\x1c\x4b\x94\x46\x4c\x71\x77\x2c\x51\x1a\x96\xf4\xee\x58\xe2\x75\x5f\xf6\x28\x67\x1c\x5f\x09\x16\x93\x36\x74\xa7\xcb\xd0\xd4\x4f\x58\x4c\xa4\x90\xf5\x88\xd7\x62\x23\x2d\xa5\x18\xe5\x54\xee\x94\x62\x6c\x6c\x9f\x1d\x0f\x4c\x63\xa5\x76\x3c\x30\x1d\xe3\x44\xc7\x03\xa3\x84\x9b\x8e\x07\xa6\x83\x10\xba\xe3\x85\xa2\x04\xbd\x8e\xf7\x45\xd9\x05\x1d\xef\x4b\x2f\xfa\x1d\xa9\xf4\x92\x96\xd0\xbd\x3e\xca\x3f\xb6\xe4\x8e\xe3\xa5\x0f\x75\xf3\xe0\x32\xe1\x05\x10\x91\x28\x5c\xbe\x1b\xe9\xaa\x84\xec\x74\x9c\x2b\x83\xad\xae\xe3\x5c\x19\x9c\x8c\x1d\xe7\x8a\xa8\x6c\x3a\xce\x15\x91\xec\x74\x9c\x2b\xca\x66\xeb\x90\x8d\x88\xf4\xa5\xbb\x03\xa5\x0c\x0d\x1f\x8c\x22\x03\x07\x43\x77\x98\x51\x06\x27\x63\x87\x51\x64\x90\x86\xd0\x33\x3d\x63\x43\xe9\xf0\x84\x0c\xd2\x71\x7b\xa6\x67\x9a\xe4\xf0\x84\x4c\x20\x79\x17\x4f\x08\xfa\x51\x27\xdb\x6b\xea\xc3\x67\x62\xb4\xd9\xa0\x7b\x26\x3c\x5d\xfd\xcc\xa2\x48\x61\x12\x28\xa8\x8e\xe8\xdc\x4e\xa6\xd7\x9c\x7a\x83\xf7\x5a\x39\x78\x9d\x80\x3a\xe5\xe0\x75\x77\x8b\x94\xc5\x56\xd7\x1d\x59\x14\x25\xac\xf4\xa2\x5a\x9d\xf4\xc5\x91\x45\x59\x84\x6c\x75\x47\x16\x65\x91\x75\xd6\x0b\x89\xc2\x5a\x70\x04\xd4\xc9\xe9\xdb\x15\x50\xa7\xad\xc7\x91\x45\x59\x5d\x2d\xdc\x5a\xe8\x16\xbd\xe0\xd6\xd2\xb4\x26\x98\x6e\x81\x33\x3a\xc1\x74\x4b\x93\x9c\x2c\xaf\x75\x74\x27\x32\x60\x9c\xe8\x04\xcb\x6d\x0e\xa0\x4e\x16\x97\x12\xd2\xbb\xa3\x87\xb2\x35\xe5\x2b\x5c\x2e\x51\xd7\x88\xc2\xd1\xb4\x76\x57\x49\x11\x73\x46\xaf\x04\x59\x71\x38\x75\x47\x16\x65\xeb\x5b\x3b\xb2\x28\x1b\x48\xde\x1d\x59\x94\xcd\xd1\xd8\x2b\x54\x44\x4b\x7d\x71\x19\xb6\x64\x50\xb0\x1c\x7a\x4e\x77\x64\x51\xe4\x38\xea\x70\x81\x9c\xac\x7e\x92\x90\x4f\x5c\x42\x77\x64\x51\x14\x30\xda\xe1\x02\x39\x20\xb5\x0e\x17\x88\x8c\x75\xdd\x91\x45\x81\xd6\x3d\x75\x47\x16\xe5\x46\xb5\x70\x3d\x82\xbf\x3a\x69\x5a\x57\xe3\x4e\x9a\xd6\xcd\xba\xb3\xd1\xd2\x1b\x48\xe6\xc6\xbd\xd8\xdd\x4f\x52\x6e\xd5\xfb\x5c\x3e\x6a\x4f\xa5\xde\x88\xdb\x6d\xba\xe6\xf2\xdd\xae\xdf\x11\x44\x86\xfe\xde\x1d\x75\x94\x0b\x94\xef\x8e\x2c\xca\xc5\x69\xdc\x49\xc3\xba\x5b\xd7\x90\x01\xa3\x54\x87\xef\xe3\x6a\xbb\x76\x64\x51\x15\x80\xda\x3b\xc1\xa9\x89\x99\xe5\xc8\xa2\x2a\x3a\xa3\x3b\xb2\xa8\x81\x23\xbc\x3b\x7a\xa8\x14\x66\x4b\xbd\xab\x42\x97\x7e\x77\xc8\x34\xd4\xfb\xdc\x85\x28\xaf\x49\x87\xd3\x43\xa4\xbd\xdd\xd1\x43\x15\x81\x59\x27\xa0\x4d\x34\x01\xdd\xd1\x43\x0d\xda\x19\xe0\xed\x78\x82\xee\xf4\x7e\x3e\xe0\xf5\xee\x3e\x8d\x2a\x1e\xc3\x3e\xc8\xec\x54\xaf\x07\xd1\x19\x44\xdb\xf7\x21\x37\xaf\x7e\xe7\x32\xc8\x43\xd7\xdd\xa7\x51\x15\x8f\xd4\x1d\x75\xd4\x07\xec\xd9\x1d\x75\xd4\xe7\x5f\xbc\xd1\xa9\x3b\x20\xa9\xe2\xb7\xeb\x04\xb3\x3d\x9a\xba\xee\xe6\xa8\x11\xa8\xd4\xdd\xcd\x51\x23\xb1\xa3\xdd\xc1\x4a\x8d\xc0\xcb\xee\x60\xa5\x2a\xab\xaa\xc3\xdb\x11\x81\xac\xdd\xc1\x4a\x8d\x59\x6f\x18\xb4\xf8\x48\x13\xd6\x2e\x4d\x9e\x89\x17\x5b\xc7\x83\x03\x92\x1a\x09\x71\xea\x70\x73\x28\x68\xa7\x13\xb0\x16\xa5\x49\x11\x94\x26\x8a\xca\xee\xa0\xa3\x26\x7d\x5c\xf8\x37\x12\x9a\x70\x5f\x04\xd0\x68\xd8\x1d\x74\x54\x6a\x84\xa4\x4e\x50\x9a\x62\xc0\xfb\x22\x2d\x46\xc3\xbe\xf0\xa1\x13\x6a\xd6\x1d\x13\x54\x59\x18\xbb\x63\x82\x9a\x88\x0d\xee\x1b\xe6\x13\x4d\x10\x72\x99\x12\xb6\xd6\xbe\xe9\x19\x96\xec\xbe\xe9\x99\x34\x8d\x4d\xcf\xb4\x4d\x6c\x7a\x06\xb4\xee\x9b\x9e\x69\xb9\x13\x6a\x66\xd2\x1b\x37\xf9\xa2\xda\x06\x37\xcc\x0a\x3a\x64\x36\xcc\x0a\xfa\x2e\x24\x25\x99\xb4\x17\xd7\xfb\xab\x69\x19\xb9\xde\x5f\x0d\x47\x44\x77\xbd\xbf\x9a\xf4\x4d\x82\xc4\x0c\xab\x5e\x77\xbd\xbf\xca\x2e\xda\x5d\xef\xaf\xa6\x0d\xec\xd0\x33\x6d\xad\x04\x89\xc9\x66\xda\x49\x33\x92\xcd\xb4\xbb\x0f\xa1\x5a\xd5\xef\xe8\x35\x26\xaa\x4e\xd2\x90\x75\xb5\x1e\x5a\xc8\x70\xe9\xb5\x0e\x92\x4b\xaf\x87\xee\xa4\xd7\x04\x32\xf5\x4b\xaf\x87\x7e\x47\xaf\x35\x62\x97\x5e\x6b\xc4\x08\xf9\x92\xad\xb5\x93\x2c\x64\xd2\x5a\x61\xb1\x30\x6d\x4b\xb0\x58\x98\xb6\x25\x58\x2c\xb2\xa9\xb5\x89\x9d\xe0\x7b\xc2\x62\xf1\x6a\xe5\x62\xb1\x40\xa2\x41\xb8\x57\x66\x5e\x0f\x98\x2a\x14\x15\x34\x60\xaa\xc8\x6c\x75\x83\x70\xaf\x12\xf4\xbb\x42\x6b\xd0\x22\x04\xef\xd1\x9d\x83\xd6\xa1\xe5\xfd\x2c\x18\x90\x46\x20\x71\x84\xe3\x7d\x90\x0c\x54\x58\x0f\x83\xb8\x2d\x59\x6c\x87\x6b\xfa\xb5\x70\xfc\x8d\x07\xb6\x0d\x50\xce\x70\x4d\xbf\xca\x46\x3b\x5c\xd3\xaf\x85\xf1\x1b\xd4\xac\x11\xa7\xce\x78\xe8\xe7\xd2\x53\x2a\xad\x45\xcb\xbf\xb5\x50\xc0\x78\x14\x46\xa8\x96\xcb\x50\x93\x9e\x32\x69\x15\x5a\x2e\x83\x1c\xae\xc3\x35\xf6\x5a\xd1\x3e\x87\x6b\xec\xb5\x72\x38\x0d\xd7\xd8\x6b\x65\xdd\x8e\x28\x52\x29\xbe\x99\x7b\x06\xaa\x8c\xad\x23\x92\xf7\x8a\x6e\x3f\x22\x31\x2c\xac\xb8\xe1\xda\x7c\x6d\x41\x77\x12\xae\x1a\xf5\x3e\xc2\x39\x93\x7e\x07\xbd\x80\xbe\x2e\x49\x3a\x8d\x20\xcd\x11\x49\xbc\x02\x97\x8e\x08\x77\xe2\x9f\x99\xf5\x7f\xb7\xe4\x11\x09\x9a\xd7\x27\xa3\xae\xba\x6c\xb4\xc3\x1d\x03\xb5\x69\xba\xb8\x32\x5f\x1b\x20\x6e\xb8\x32\x5f\x1b\x60\x73\x90\xa3\xd3\xd8\x22\x07\x39\x3a\x9d\x4d\x71\x24\xc2\x70\xf4\xa9\x13\x61\x38\x49\x77\x0e\x5a\x7c\xce\x44\x18\x0e\x1a\xf4\x70\x8d\xbd\xf6\xa6\x3b\xbd\x9f\x1d\xe7\xc6\x70\xc7\x40\xed\x2c\xd4\x61\x90\xb3\x4c\xb5\x22\x2d\x7e\x47\x25\x4b\x59\x7a\x87\x6b\xf3\x55\x44\x3f\x83\x64\x1b\x85\xf8\x0f\xd7\xe6\xeb\x00\xae\x0f\x23\xfd\x18\xad\x6e\x18\xc9\x0b\x9a\xf2\xee\x34\xa8\x43\x53\x9e\x50\x29\x51\x0e\x0e\x42\xa5\x84\x02\x06\xa1\x52\xa2\x9b\x1c\xae\xe9\xd7\x91\xf5\x3b\x97\x4f\xc4\x9b\x83\x50\x29\xd9\x84\x07\xa1\x52\x83\xac\xa3\x41\xa8\x94\x72\xac\x06\xa1\x52\x83\xad\x67\x10\x2a\x25\x2b\xf0\x20\x1c\x6a\xe0\xbc\x19\x84\x43\x4d\xb4\x82\x41\x38\xd4\x24\x58\x69\x10\x0e\x35\xa3\xae\xb9\x0c\x53\x23\x46\x38\xd4\x34\x5d\x5b\xb4\x90\x5d\xe1\x50\xea\x35\xe1\x50\x13\x6b\xee\x20\x1c\x6a\x4a\x06\x12\x69\x94\xf8\x3a\x94\x48\x03\xae\x19\x84\x43\x4d\xac\x7a\x43\x89\x34\x80\xe2\xe1\x7a\x7f\x9d\x1c\x55\x83\x50\x28\xe5\xc2\x0d\x42\xa1\x56\xd0\xef\x5c\xbe\x85\x9e\x33\x08\x85\x5a\x58\x81\x07\xa1\x50\x4b\x12\x11\x0a\xb5\xb4\xc0\x5d\xef\xaf\x2b\xeb\xda\xa2\xa5\xf7\xb9\x7c\xab\xa8\x2f\x84\x7b\x11\x45\x3f\x0a\xe1\x5e\xf8\x5d\x86\x63\x82\xba\x38\x6e\x07\xe1\x53\x62\x27\x1c\xae\xf7\xd7\x25\x89\x2a\x32\x48\xa2\x8a\x0c\xf8\x17\x06\x1c\x80\x8b\x08\x8e\x01\xe9\xc2\x06\x30\x8f\x4a\x3c\xf3\xa3\x3b\xbd\x67\x3b\xea\x1a\xf1\xcc\xa8\x3d\x83\xd4\x97\x8d\xda\x33\x1a\xcc\x70\x92\xa8\x41\x48\xa0\x59\xd7\x60\x66\xc4\x3c\x30\x60\xf6\xdb\x84\x1c\x8e\x26\x0a\x34\x24\x6a\xd0\x13\xa9\x67\x8d\x2c\x57\x10\xde\x80\xbd\x6f\xeb\xe8\x68\x04\x9a\xe1\xc2\x1b\x4d\x69\x1f\xba\x73\xd1\x62\x3d\xb8\xc6\x5e\x8f\x46\xcc\x35\xf6\x7a\x34\xcf\x5c\x63\xaf\x07\x14\x30\xdc\x4f\x50\x8f\xbe\x3c\xa4\x0a\xca\x35\x18\xb0\xf7\x29\x08\x61\xb8\x36\x5f\xc5\xc3\x33\x48\x6b\x39\xda\x19\x5c\x9b\xaf\xe2\xcc\x18\x68\xf3\xca\xb8\x1d\x5d\x0c\x84\xfa\x1d\x14\x4b\xef\x53\x20\xbf\xd0\x68\xa2\xcd\x8b\x28\x60\xa0\xcd\xdf\xad\x6b\x70\x9c\x60\x82\x1b\x68\xf3\x57\x47\xce\x50\xac\x35\xdf\x7a\x28\xe0\xf8\xfc\x6b\x4b\x76\x45\xbf\x05\x7d\xc0\x01\xc1\xa2\x96\x2d\xe9\x29\xca\x55\x1b\x22\xe8\xd3\x94\x87\xa0\x2f\x24\xbd\x8e\xd4\x86\xa4\xae\x10\x36\xaf\x65\x0b\x41\x5f\xd0\x89\x3a\xc8\xcc\xc1\x7e\x34\x06\xc9\x9e\x3a\x47\xe0\x48\x50\xda\xc3\x20\x35\x45\xf4\xf3\x63\x12\x23\x88\x15\x71\x4c\x42\xff\xb1\xc3\x8e\x49\x42\xa7\xfa\x42\xfa\x89\x40\xc7\x20\xfd\x44\x89\xd8\x03\xa6\xbd\x07\xed\x65\x90\x7e\xf2\x60\xaf\x1a\x70\x20\x88\xac\x68\xc0\xb4\x27\x1a\xee\x31\xe1\x06\xd0\x14\x84\xff\x40\x09\xb4\x83\xf4\x93\x18\xf5\x4c\x25\x74\x32\xb1\xa6\x48\x14\x79\x26\xe9\x27\xb2\x56\x0f\x98\xf6\xa2\x34\x14\xf8\x0f\xa2\xa6\xcb\x82\x24\x12\xaf\xf5\x58\xc4\x40\x0e\xb5\x88\x81\x44\x0f\x1f\x30\xed\xc5\xa9\x6b\xa2\x66\xd1\x1b\x08\x82\xbc\xba\xe6\xf2\x09\x2f\x8c\xa5\x20\x48\x7a\x4d\x30\x52\xc2\x81\x38\xc4\x7d\xa0\x85\x0a\xf7\x41\xd2\x02\x80\xfb\x20\x01\xcd\x86\xe3\x85\x96\xb4\x00\x1c\x2f\x34\x91\xad\x0e\xf8\x0d\x12\x09\xb2\xc3\x31\x41\x13\x47\xdc\x70\x4c\xd0\x4c\xb3\xce\x31\x41\x33\x8d\x18\x41\x46\x86\x29\x66\x38\x26\x68\xd2\x76\x87\x63\x82\x66\xda\xca\xe1\x37\x30\x62\xcb\xc7\x26\x90\x13\x9b\xf0\x70\xbc\xd0\x4c\x3a\xd0\x56\x20\x27\x32\x38\x5e\x68\xe2\x5e\x1b\x9b\x40\x4e\x8d\xd1\x21\x90\x13\x63\xc1\x38\xb0\x21\x12\x15\x33\x1c\x59\xb4\xac\x2f\x4f\xfa\x89\x6a\xe5\x0c\x48\x0c\x32\x08\x6f\x40\x62\x50\x70\xbe\x0d\xd2\x4f\x0a\x1e\x8c\xe1\xc8\xa2\x95\xac\x6b\x70\x59\x63\x7d\x1c\x8e\x2c\x1a\x55\xed\xd2\x20\xfd\xe4\xd5\x4c\x1d\x59\xb4\xa2\xcd\xf4\xc0\x1f\xa3\x51\x71\x6f\x43\x2b\xda\x50\x0e\x44\xba\x1a\x15\xc7\x19\xad\x68\x63\x70\x9c\xd1\x8a\xbe\xc4\x25\x10\x55\x07\x9e\xe3\x8c\x26\x6b\xf5\xb8\x04\xa2\x4a\x0f\x77\x9c\xd1\xaa\x94\x12\xc7\x19\x8d\x52\xdf\x69\x5c\x28\xd5\x92\xae\xb9\x0c\x22\xe8\x1a\x90\x12\xd4\xa6\x3b\x5d\x86\xda\xf5\xcc\x43\xa8\x2b\xb3\x8e\xb4\x92\x0a\x42\x9f\xee\x51\x68\x95\x03\x61\xba\x47\xa1\x29\x7c\x60\x3a\xce\x68\x4a\x93\x99\xa4\x95\x34\x56\xe3\x0c\x0a\xa6\xd5\x53\x32\x2d\x3d\x05\xc2\x5f\x76\xb7\x19\x08\xa6\xc5\x8f\x35\x03\xb4\x5b\x59\xbf\x23\x98\x96\x28\xa3\x19\x20\x56\x28\xfa\x1d\xb4\x70\x7c\xdd\x09\x23\x5e\x43\x0f\x9f\xb0\xde\x35\x14\xc0\x09\xeb\x5d\xc3\x41\x3a\x61\xbd\x6b\xfb\x5f\x86\x8b\x09\xb3\x5d\x97\x08\xf0\xd5\x29\x81\x79\xc2\x57\x27\x22\xc4\x09\x5f\x1d\x65\x27\xd3\x84\xaf\xae\x63\xb5\x9c\xf0\xd5\x75\xac\x8f\x53\x7c\x75\xfa\xb8\xe2\xab\xe3\x1c\x99\xe2\xab\xe3\xb4\x9d\xf0\xd5\x0d\xf4\xb8\x29\xbe\x3a\x96\xed\x84\xaf\x4e\xd6\xea\x09\x5f\xdd\x00\x3c\x4c\x31\x07\xa0\xb9\x4d\x31\x07\x54\xfd\x0e\x26\x5b\x20\xc8\x84\x39\x60\x3e\xba\xe6\xf2\xcd\xa4\xf7\xb9\x0c\xca\x21\x9b\x91\x48\x65\x40\xf1\x84\x19\x60\x76\xbd\x01\x12\x16\xd3\xef\x5c\x86\xa5\xdf\xc1\x0c\x20\x06\x89\xe9\xc8\xa2\xad\xa1\x6b\xb0\x29\xa3\x1f\x4d\x77\x21\x34\x45\x44\x4e\x98\x01\x16\x8e\xce\x99\xc8\x63\x64\xfb\x9c\x89\xf4\x78\x82\xd2\xa6\xa3\x8e\xb6\x8b\x9e\x02\x11\x14\xcb\x76\x3a\xea\x68\xbb\xe9\x7d\x83\x16\x53\xd7\x51\x47\x13\x63\xd8\x74\xf7\x42\xdb\x1c\x78\xd3\x7d\x08\x6d\x2f\xb5\x88\xc4\x5e\x7a\x3b\x91\xd8\xa0\xa3\xe9\x88\xa4\x6d\x4e\xfe\x69\x44\x62\xa3\xe7\x4c\x53\x24\x36\xfd\x34\x72\xae\xd4\x33\x47\x24\x4d\x41\xf8\xd3\xe0\x14\x64\x43\x99\xa4\xff\x1f\x36\xf6\xe9\x88\xa4\x29\xf9\x7c\xc2\x49\x77\xd0\xfb\xa7\x23\x92\x76\x70\x43\x4e\x47\x24\xed\x68\x9e\x39\x22\x69\x87\x83\x72\x92\xfe\x7f\xf1\x6f\x4f\x47\x24\x4d\x9e\xfe\x69\xb0\x8e\x48\x76\x47\x1d\xed\x4a\xf6\x4c\x4a\x38\xd6\xf1\x99\x15\x4d\xce\x1b\xdc\x13\xd1\xee\xd5\x9d\x44\x5b\x93\x58\x35\x33\xd1\xd6\x18\x82\x66\x26\xda\xda\xf4\x3b\x45\x5b\x33\xb6\x99\x68\x6b\x8d\x83\x38\xe7\xd8\x96\x26\x9c\x73\xa1\xf3\x05\x95\xa0\x31\xf4\x06\xa2\xc9\xa7\x9e\x49\x34\x39\x9a\xf7\x14\x63\x39\xba\xf6\x14\x63\xb9\xe6\x7c\x81\x17\x51\x5f\xa2\xc0\x0e\xa3\xad\x07\xc6\x72\xd9\x4c\x27\xa9\xfd\x52\x66\x26\x9c\x73\x22\x68\x9d\x8e\x48\xfa\x83\xcb\x70\x92\xda\xff\xe0\xe7\x99\xf0\xcd\xa9\xde\xca\x84\xb1\xfc\xd1\x96\x55\xe0\x7d\x44\x9d\x98\x05\xde\x47\xad\x23\x18\xcb\xe5\x96\x9f\x45\xe9\xd0\x48\x5b\x21\x33\x02\x75\xcc\x8a\x0c\x1c\xa9\xb3\x22\x03\x98\x7c\x92\xb6\xff\x80\xc9\x27\xac\xe4\x51\x7b\x08\x69\xfb\x91\xc3\x62\xc2\x25\x17\xb1\xd4\x4f\x47\x24\x5d\xe6\xd5\xe9\x9e\x88\x2e\xe7\xfe\xac\xb0\xae\x6b\x85\x93\xb6\x2f\x05\x69\x56\x78\x01\x8b\xfa\xe2\x32\xc4\xa5\x5e\xbb\x0c\x11\x9d\x79\x3a\x3e\xe9\x72\xe0\x4f\xc7\x27\x3d\x69\x07\x73\x7c\xd2\xd3\xf3\xaf\x2c\xc0\xe9\xd0\xa5\x27\x6d\xc2\xee\x88\xe8\x49\x1d\x6b\x70\x35\x71\x9e\xcf\x06\x55\x5e\xd1\x0b\x2a\x2d\x06\x93\x6c\xfd\x54\xd4\x15\x17\x2f\x69\x9a\x35\x48\xf3\xa7\xee\x74\xf1\xa4\x49\x4d\x87\x35\x3d\xc1\xad\x36\xe1\x8a\x13\x3b\xdc\x84\x94\x3c\x1d\xbd\xdd\x45\x4f\x9c\xf5\xb3\x23\x3a\x67\xfd\x74\x58\xd3\xa5\x81\x4d\x87\x35\xdd\xd0\x7a\xa6\xc3\x9a\x2e\x0e\xab\x49\xc2\x86\x32\xf8\xa6\xc3\x9a\x2e\xfb\xe6\x24\x61\xc3\x00\xda\x93\x84\x8d\x8c\xe9\x60\x92\xb0\x91\xb5\xa4\x1d\xf2\x74\xf1\x23\x4f\x12\x36\xc4\x7e\x37\x49\xd8\x90\xa5\x70\x92\xb0\x91\xa7\xfa\x49\x2a\xed\x96\x0c\xf0\x89\x3d\xba\xe6\xf2\x15\x80\xe8\x24\x61\xa3\x10\x02\x34\x49\xd8\x10\xcb\xc3\x24\x61\x43\x1e\xfb\x49\xc2\x46\x51\x5f\x48\xd8\x28\x3a\x97\xc7\x37\x8d\x56\x8b\x95\xa4\x8d\x82\x35\x74\x92\xb4\x51\x8e\x7e\xeb\x32\x16\x1d\x96\x24\x6d\x54\x6d\x3f\x24\x6d\x28\xe1\x76\x92\xb4\x51\x71\x42\x4d\x92\x36\x2a\x7a\xde\x84\x98\x5c\xd4\x8c\x93\x84\x8d\xaa\xe3\x8a\x84\x8d\x8a\x33\x69\x4e\xa8\x2b\xb5\xfd\x90\x90\x21\x1f\xfe\x24\x21\xa3\xaa\x9f\x24\x64\xc8\xce\x37\x49\xc8\x68\x41\x4f\xa9\xb4\x74\x27\xa4\x44\x8f\x5a\xf0\x16\x02\xf5\x27\x09\x19\x0d\xef\xc7\x24\x21\xa3\x49\xc1\x20\xe9\xa2\x65\xbd\x5d\xdc\x6e\x6c\x0e\x24\x5d\x34\xcc\x62\x93\xa4\x8b\xa6\xd9\x4c\xd2\x45\x03\xe0\x4e\x92\x2e\x94\xea\x30\x97\x92\x4a\x98\x6b\x4b\x89\x23\x2c\xeb\xa5\xc4\x11\xc6\x7e\x91\x38\x92\xf5\xbe\x41\x4b\xcf\xf4\x7e\x76\xa2\x67\x27\x29\xf2\x22\xf1\x9f\x8e\x51\xfa\xd0\x18\xc1\xcf\x36\xc0\x91\xd3\x7d\x1a\x7d\x80\x70\xa7\xfb\x34\xfa\xd0\x2a\x87\x83\x4d\xcc\xdc\xd3\x31\x4a\x57\x75\x9a\xe9\x18\xa5\x0f\x10\xcb\x74\x8c\xd2\xe5\x7e\x9f\xa4\xc1\x0f\x1d\x81\xa4\xc1\x4f\x69\xa7\x1b\xda\x59\x1d\xd5\xa4\xba\x4f\x8d\xfb\x81\x5a\x16\x3b\xfb\x24\xd5\x7d\x12\xa6\x36\x1d\x6b\xf4\xa9\x1d\xe0\xc0\x70\xb3\x74\xcd\xfb\x29\x83\xd6\x74\xac\xd1\xe7\x51\xab\xd2\x62\x34\x1d\x6b\xf4\xa9\x2d\xdb\xb1\x46\x9f\xda\x2b\x1c\x6b\xf4\xa9\xbd\xc2\xb1\x46\x97\x21\x6c\x1e\x52\xa7\xf5\x5d\x48\x75\x5f\x51\xbf\xf3\x6f\x2d\x63\xd7\xf4\xc8\xa6\xbe\xb4\x3e\xdd\xdf\xd1\x17\x86\xa2\xe9\x38\xa4\x2b\x34\x73\x42\x90\x26\xf3\xd6\x74\x1c\xd2\x17\xd1\x36\xd3\x71\x48\xdf\xe1\x5f\xd4\xfc\xd3\x21\x4a\x17\x1b\xda\x74\x88\xd2\xc5\x89\x35\x1d\xa2\xf4\xfd\xbe\xae\xd1\xe2\xe3\x3a\x44\xe9\x1b\xf7\xd8\x74\x88\xd2\x37\x3e\xd2\x09\x6f\xda\xab\xaf\x91\x15\xbf\x35\xb1\xdc\x15\xd2\xf7\xd2\x33\x61\x62\xd0\x30\x38\x7c\xe9\xf2\x8d\x2f\xb2\xe2\x95\x97\xbf\xe0\x4d\x93\x75\x6b\x05\x58\x83\x59\xa8\x2b\x90\x83\xc4\x89\xb4\x1c\xbe\x74\xd1\xd8\x2c\x87\x2f\x5d\x35\x34\x16\x59\xf1\x8a\xcc\x5c\x64\xc5\x1f\xe2\x73\x97\xc3\x97\x7e\x18\xf6\xe5\xf0\xa5\x2b\xd3\x68\x05\xd2\x4f\x89\x90\x58\x64\xc5\x5f\xa0\xe9\x22\x2b\x5e\x1a\xda\x22\x2b\xfe\x02\xf9\x96\xbb\x50\xba\x3c\xec\xcb\xa1\x4d\xbf\xe8\xe9\xeb\x81\xa5\x01\x3b\xf4\x72\x68\xd3\x2f\xc3\xbe\xdc\x85\xd2\x95\xaf\xb4\xdc\x85\xd2\x6f\xd6\xef\xc8\xb1\xc2\x8d\xb0\x28\xef\x7f\xab\x7e\x47\x8e\x55\xd5\xef\xc8\xb1\xc2\xb5\xb4\xe0\x51\x93\xbf\x7d\x3d\xb0\xa1\xb0\x29\xae\x47\xe4\x4c\xba\x73\x42\xed\xaa\xa7\x7c\x53\xa4\x83\x7e\x4b\xa0\x7d\xd4\xdd\x3f\x23\x5a\x97\x23\xa1\x78\xd0\x0a\x17\x01\x53\x0a\x97\x5c\x2f\x8f\xda\x87\xc0\x74\x11\x34\xa5\xb8\x97\x15\xd3\x0f\x5f\xfe\x72\x34\x54\x0e\x0e\x99\x85\x0b\x46\x1e\xec\xe5\x68\x28\xbe\xa3\x8a\x0b\x46\x56\xf4\x15\xdb\x0f\x3b\xe1\x8a\x98\xd5\xf4\x7d\x22\x66\x35\xf4\xb6\x15\x61\x7d\xc1\x7e\xba\xc4\xde\x7d\xd5\x22\x82\x18\x2d\x6e\xc5\xf3\xe3\x98\x58\x91\x64\x25\xdc\xe2\x8b\xe4\x8c\xc0\x81\xb2\x48\xce\x08\x68\x78\x8b\xe4\x8c\x67\xe9\x4e\x92\x1e\x30\xcb\x2c\x82\xad\x54\x20\x6b\x11\x6c\xb5\x01\xe4\x8b\x60\x2b\xb1\x54\x2c\x82\xad\x0e\x6b\x74\x11\x6c\x75\xde\xf7\xb9\x55\x34\x1d\x3d\x05\x97\x64\xd4\x53\xdc\x2a\x9a\x39\x5e\x56\xc2\xfd\x94\x75\xcd\x91\x44\x25\xbd\x65\x25\xd2\x8b\x6d\xed\x0b\x56\x5b\x49\x6e\x6c\x66\x19\xa5\x75\x07\xec\xcf\x8b\xd2\xba\x46\x68\xeb\x72\xb4\x64\x62\x61\x59\x94\xd6\x3d\x44\x9d\x2f\xb3\x77\xc4\x15\x0d\xb3\x28\x0d\xa5\x14\xad\xe5\x88\xc9\x94\x26\xbf\x1c\x31\x7d\xaf\x79\x6e\xee\xd9\x7a\x92\xf3\xe1\x4d\x90\xf2\xa2\xf4\xee\xe7\x4e\x4f\x3a\xcb\x55\x77\x7a\xd2\x59\xe8\xea\xeb\x7e\x49\x79\xc5\xe9\xb2\x1c\x35\x99\x1c\x99\xcb\xfd\x38\xa6\x52\x72\x2b\x93\x12\xae\xdf\x3a\xa2\xb2\x02\x82\x5b\x19\xfa\x63\xd0\xcf\xca\x2a\x74\xd1\xf7\x41\x59\x59\x54\x77\x52\x20\xdf\x72\xac\x74\x1b\xe8\x7d\x65\x0a\x2a\xbf\x6f\x39\xb4\x98\x07\x8e\x79\x28\x3f\xfc\x7f\xb7\xea\xe5\x70\x28\x4a\x61\x5f\xd4\xa0\x8e\x68\x20\x8b\x1a\xd4\xb2\x92\x2e\x6a\x50\xbf\x42\x39\xe4\x49\x81\x54\x91\xe5\x90\x47\xe5\xf6\xd3\xa2\x06\x75\xc4\x15\xb0\x1c\xf2\xc4\xc8\x99\xb5\xdc\x99\x12\x23\xa7\xd4\x72\x58\x13\x15\x43\xbc\x2a\xef\x93\xe8\x0e\x4f\x54\x98\x3f\x2d\x87\x19\x51\x15\x08\x97\xc3\x8c\xa8\x7a\x83\xcb\x61\x46\x54\xd4\xc8\x72\x17\x49\x94\x15\x78\x51\xe0\x32\x6a\x5b\x69\xbc\x81\xd8\xc7\xd5\xf4\x06\x9e\x49\x81\x4b\x81\xa3\x45\x81\x4b\xe5\x97\xad\x86\x44\x59\x77\x4e\xbe\x12\x32\x34\xde\xae\x89\xd0\x78\xbb\x0e\x8a\x86\xb4\xf8\x6a\x97\x6b\xfa\x31\xe2\xdc\x58\xae\xe9\x47\x81\xaa\xd5\xe9\xa7\x36\xe7\x4e\x3f\x01\x94\xcb\xb5\x79\x15\xed\x4f\xab\xd3\x97\x47\xbf\xf3\xaf\xfb\xbc\x6f\xe0\x2b\x81\x25\x56\xe7\x2b\xa1\x1f\x2c\xd7\xe6\x53\xc0\x81\xb8\x54\x47\xdb\x66\x0a\x68\xb4\x4b\x55\x0d\x6d\x7f\xff\x43\x65\x43\xbb\xdf\xff\x14\xd5\xf7\xfe\xfe\xa7\xaa\x2a\xfb\xfb\x9f\x6d\x4c\xc4\x31\xbf\xff\x61\x32\x8e\xcf\x93\xb7\x2f\x89\x14\xc6\xfd\xfe\xe7\xa1\x82\xfb\xf3\xfd\x4f\x54\x4d\xf7\xef\x7f\xe8\xf3\xfc\x3e\x19\x56\x88\xb0\xec\xfb\x1f\xfa\xbc\xda\xe7\x3f\x3e\xc3\xd3\x73\xeb\xf7\x3f\xf3\x5b\x49\x3e\xed\xb2\xbe\xb5\xe3\xd3\x66\x46\x3e\x60\xac\xed\x40\x3b\x2a\xae\x7c\xbf\x95\xa8\x0b\xad\x42\x4b\xd7\x2a\x2d\xde\xa0\x2a\xd4\x04\x66\x6d\x55\xa1\xe6\xa0\xdb\x54\xa1\x8e\xef\xef\x26\x95\x37\x37\x2d\x8a\xd6\x66\x3d\x85\x42\xaa\xd8\xbc\xf7\x5b\xf0\x55\x4f\xb9\x94\x6a\xf5\xb5\xb2\xdf\x82\xaf\x93\x16\xd5\x3a\x59\x39\x9b\x82\xaf\x71\xeb\x5a\xe2\x7d\x3c\x53\x05\x5f\xb3\xae\xb9\x7c\x8a\x78\xda\x54\x9e\x56\x46\xe7\xa6\xf2\xb4\xca\x50\x6c\x2a\x4f\x3f\x6c\x4b\x9b\xf2\xd2\xa2\x91\xdd\x94\x97\x56\xe6\xc1\xa6\xbc\xb4\x58\x72\x36\xe5\xa5\x1f\x56\xdc\x56\xa1\xd8\x24\x19\x90\x8f\x0d\x6c\xab\x50\x2c\x07\xc0\x7e\x0b\xc5\xf2\xcd\x54\x28\x16\xd4\xb4\x55\x28\x96\x75\xb4\x55\x28\x16\x65\x73\xab\x50\x2c\xa9\x29\x5b\x85\x62\xb3\x9e\x82\x7c\x55\xd7\x24\x1f\x3d\x53\x59\x6a\xcd\x82\xae\xf1\xd3\x1b\x90\x0f\x65\x63\x53\x96\x5a\x41\x77\xbb\x4b\x3e\xbe\x04\x65\xa9\x1f\xd4\xb6\xdd\x25\x1f\xdf\x93\xb2\xd4\x0f\x9e\x96\x3d\x90\x0f\x93\xd8\x1e\xc8\xc7\xea\xdf\x03\xf9\xfe\x59\xe5\x7b\x0f\x44\x07\x06\xee\x81\xe8\x55\x2f\x40\x74\xb4\xee\xed\x40\x3a\xc4\xad\x3b\x11\x3d\xe8\x75\x88\x8e\x0d\x6c\x0f\x44\x8f\xea\x98\x44\x57\x4b\x43\xab\x3b\x11\xbd\xa8\xa5\x1a\xc0\x7a\x03\xa2\xb3\x29\x6e\xd5\xdd\x25\xf7\x6c\x53\x77\x57\x1b\xd8\x9e\x88\x8e\x9f\x7a\xab\xe6\x6e\x51\xcb\xe5\x53\xad\x8e\x4d\xbd\xdd\x48\x64\xc8\xa6\xde\x6e\x04\x2b\x6c\x8a\xea\x46\xf5\x85\x82\xba\xb1\xe8\x5a\xe3\x4e\x7a\x46\x41\xdd\xc8\xf9\xbb\x29\xa8\xab\x64\x94\x4d\x41\xdd\x08\x0c\xdc\x14\xd4\x8d\x55\x7d\xd9\xfc\x8e\xe9\x42\x31\xdd\x88\x4e\xbc\x29\xa6\x1b\xb5\x18\x29\xa4\x1b\x25\x03\x85\x74\xa3\x16\x15\x85\x74\x23\x46\x9b\x4d\x11\xdd\xd8\x75\xa7\xe4\xa3\xd7\x14\xd1\xd5\x71\xb4\x17\xf2\x69\xea\x2e\xe4\x6b\xba\xc6\xf8\xb1\xe9\xef\x85\x7c\x68\xce\x7b\x21\x1f\x07\xc9\x5e\xc8\x47\xb8\xdc\x5e\xc8\x87\xfb\x64\x2f\xc6\x6f\xa9\x67\xc8\xa7\x0d\x73\x21\x1f\xc8\x61\x53\xd0\x37\x62\xde\xd9\x14\xf4\x95\x3a\xb1\x29\xe8\xab\xa2\x5e\x9b\x82\xbe\x2a\x5c\xb5\xb7\xe4\x63\x1c\x36\xf2\x69\x69\x6e\xe4\xd3\xcc\xda\xc8\xa7\x6d\x70\x33\x7e\x5a\xd2\x1b\xf9\x70\xc5\xed\x8d\x7c\xe8\x89\x7b\x4b\x3e\xf5\x0c\xf9\x38\xc2\xf7\xd6\xf8\xf1\xad\x37\xf2\x69\x73\xdb\xc8\x07\x8a\xd9\x07\xf9\x48\xa1\xde\x47\xe3\xc7\x9d\x87\xf1\xeb\xba\xa6\xf9\xc9\xdb\x29\x58\x1c\x89\x21\xd9\x14\x2c\x56\xfa\xf8\xa6\x60\xb1\x52\xd2\x37\x05\x8b\x45\x5f\xb5\x0f\xf2\x6d\xdd\xd9\xa9\xaf\x8e\x7c\x6e\x0c\x08\x49\x5b\x08\xe5\x8b\xe3\xe9\x21\x62\xa6\xd9\x97\xde\x9d\xfc\xe7\xbf\xfc\xc7\x7b\x98\xb4\xd6\xfc\xd0\x0f\x09\x3b\xfc\xf6\x03\x3f\x28\x4d\x6a\x5f\x7a\xa8\x75\xef\xb8\x3c\x24\x1d\x4b\x8e\xcb\x43\x8a\xba\x93\x5e\x44\xf5\x82\xaf\x0c\x8a\xd9\x54\xd4\x4f\xda\x2f\xa8\xa8\x9f\x40\x80\x5b\x15\xf5\x93\xde\x70\x69\xf9\x9d\x27\xd0\x17\xd4\xc2\x43\xd9\xe4\xf4\xa8\x85\xc2\x43\x34\xfd\x09\xa8\x93\x78\xa9\x8e\x63\xe8\x18\xa7\x5a\x8c\x6a\xd1\xef\x18\xd5\xaa\x37\x68\x55\xfa\x6c\x3f\x0f\xdf\x0e\x03\xe9\x79\xf8\x6e\x84\x83\x9e\x87\x51\xc5\xb9\x7c\x1e\xad\xca\x4e\x8b\x51\xc5\xf3\x75\xa8\xaf\x1f\xff\xc9\x56\x77\x1e\x06\x7c\xea\x05\x0c\x38\x30\xf0\x3c\x0c\x38\xde\xeb\xf3\x30\xa1\xb1\x28\x9d\x47\x9a\x2d\x02\x3d\xd2\x2d\x75\x4d\x9a\xb4\x0f\xd1\x89\xe8\x96\x2c\xdf\x13\xd1\x2d\x81\xa4\x27\xa2\x5b\xa2\xf9\x1d\x0a\xf1\x87\xa2\x6b\x0c\xbb\xfa\xa2\x42\xfc\x53\x4f\x61\x18\xd0\x07\x8e\x43\xe0\x57\x9b\x3c\x50\x89\x87\xf7\x99\xe3\x87\xd6\x74\x28\xa8\x2f\x3d\xe9\x50\x50\x5f\x7a\xd2\x51\x41\x7d\xf4\xa4\xa3\x82\xfa\xe8\x49\x87\x82\xfa\xd2\x93\x8e\x0a\xea\x33\x05\x4f\xd2\xd9\xad\xdf\x49\x37\x41\x86\xa4\xb3\x5b\xbf\x93\x6e\xc2\x80\x51\x50\x5f\x9a\xd1\x49\x1c\x60\x68\x46\x27\x49\xf7\xd2\x53\xa4\x7b\xe9\x4e\xe9\x5e\x4c\x82\x24\xdd\x4b\xbf\x93\xee\x45\x5f\x4c\xba\x17\x32\x98\x0e\x30\xfa\x62\xc8\x87\xbe\x73\x4c\xba\x17\x3d\x33\xe4\x43\xdf\x39\x86\x7c\x41\x4f\x41\x3e\xf4\x9d\x63\x3a\xa0\xe9\xa7\x21\x1f\xfa\xce\x31\xe4\x43\xdf\x39\x86\x7c\x6c\x8e\xc7\x74\x40\xeb\x29\xc8\x57\x75\x0d\xf9\x8a\x7a\x86\x7c\x1a\x3f\x93\xee\xc5\x1b\xb2\x0e\x68\xa4\xcd\xd2\xbd\x78\x5f\x96\x7c\x8c\x51\x46\x3e\xf4\x9d\x93\x25\x1f\x5f\x30\x23\x9f\xe6\x6e\x46\x3e\xf4\x9d\x93\x91\x0f\x7d\xe7\x64\xe9\x5e\xba\x13\xf9\xb2\x9e\x29\xdd\x52\xd7\x90\xaf\xa8\x9f\xd2\xbd\xf4\x14\xe9\x5e\x7c\xcf\x8c\x7c\x51\xef\x43\x3e\x6d\x3d\x05\xf9\x38\x6c\x4e\x41\xbe\xa2\x96\xe4\xe3\xed\x45\xf2\x21\x6d\x41\x3e\xb6\xd6\x53\x90\x2f\xa9\xa5\xf9\xa9\x3b\x35\x3f\xd5\x5a\x3f\x60\xfb\x29\xfb\x07\x6c\x3f\xe5\x7c\x60\xfb\x9f\xd6\xfd\x81\xb1\x4f\x0d\x3f\x30\xf6\x59\xf5\x2f\xfc\x76\xfc\xe0\xff\x89\xdf\xce\xea\x7f\xe1\xb7\xe3\x0a\xc0\x4f\xfc\x76\xd6\xfc\x0b\xbf\xdd\x18\xff\xc2\x6f\x37\xa6\xbf\xf0\xdb\x8d\xf6\x17\x7e\xbb\x31\xff\x85\xdf\x6e\x2c\x7f\xe1\xb7\x1b\xeb\x5f\xf8\xed\xc6\xf6\x17\x7e\xbb\xda\x57\xbe\xf8\xed\xfa\x3e\xf0\x13\xbf\xdd\x74\x7f\xe0\xb7\x8b\x19\x49\xf8\xed\x62\x46\x0a\x18\x71\xae\x21\x0b\x47\xce\xc5\x8c\xa4\xef\x79\x0d\x8c\xcd\xf8\x5d\x5f\x63\xb1\x94\x7f\x05\xe6\x5d\x5f\x7e\x51\xe9\xa8\xd7\x97\x58\xec\x53\x8f\x5c\x3f\xb6\xc8\x6b\xfb\xc7\x16\x79\xa9\xf5\x16\x80\xed\x57\x70\xf7\x3b\x7c\x57\x70\xf7\x3b\x7c\x57\x70\xf7\x3b\x7c\x57\x70\xf7\x3b\x7c\x57\x70\xf7\xc7\xf0\x41\xa5\xff\x73\xf8\x72\xfd\x7b\xf8\x72\xfb\x7b\xf8\x72\xff\x7b\xf8\xf2\xf8\x7b\xf8\xf2\xfc\x7b\xf8\xf2\xfa\x7b\xf8\x64\x93\xfa\x31\x7c\x2c\xbd\x84\x26\x79\x1d\x7a\x47\xd5\xa3\xbb\x0e\xa1\x7f\x0d\x2d\xc6\x94\xc0\x96\x7c\x1d\x20\xde\x8b\xf6\x73\x31\xa6\x28\x0c\xea\x3a\x40\x7c\xa1\xf9\x75\x80\x18\x0d\x67\xd9\xc5\xd0\xa2\x1a\xd0\x17\x30\x27\x7b\xf1\xc5\x60\x12\xd8\x5e\x2e\x06\x13\xd5\xc7\xb8\x30\x76\xcb\x00\x75\x07\x87\x2f\x81\x95\x77\xec\x1f\x06\x9a\x3b\xce\x0f\x03\xcd\x1d\xf7\x87\x61\xe7\xfa\x42\x8c\x8a\x37\xb8\x5a\x60\x9a\x05\x6b\xfd\x9c\x05\xae\xd9\xfe\x92\xff\x84\xbf\xe7\xc5\x79\xfe\x9e\x17\x27\xfe\x3d\x2f\x4e\xfa\x7b\x5e\x1c\xfb\x7b\x5e\x9c\xfc\xf7\xbc\x38\xe5\xef\x79\x71\xea\xdf\xf3\xe2\xb4\xbf\xe7\xc5\xe9\x7f\xcf\x8b\x33\xfe\x9e\x17\x67\xfe\x3d\x2f\xce\xfa\x7b\x5e\xdc\xff\xc8\x7e\xcf\xdf\xb2\xdf\xfb\x5b\x76\x0b\x21\xfc\x96\xdd\x42\x78\x7e\xcb\x6e\x21\xc4\xdf\xb2\x5b\x08\xe9\xb7\xec\x16\x82\xfd\x96\xdd\x42\xc8\xbf\x65\xb7\x10\xca\x6f\xd9\x2d\x84\xfa\x5b\x76\x0b\xa1\xfd\x96\xdd\x42\xe8\xbf\x65\xb7\x10\xc6\x6f\xd9\x2d\xb8\xde\xf8\x43\x76\x0b\x28\x7a\xec\x23\x16\x50\xf4\xb2\x7b\x29\x2c\x3c\x7f\x7d\x17\x0b\xcf\x7f\xbe\x4b\xfc\xcf\x77\x89\xff\xf9\x2e\xf1\x3f\xdf\x25\xfe\xe7\xbb\xc4\xff\x7c\x97\xf8\x9f\xef\x12\xff\xf3\x5d\xe2\x7f\xbe\x4b\xfc\xcf\x77\x89\xff\xf9\x2e\xf1\x3f\xdf\x25\xfd\xe7\xbb\x68\x73\xf7\xad\xde\x82\x36\xf7\xa9\xd6\xfa\xfb\x6e\xed\x98\xba\x5b\xbb\xa5\xee\xce\xf9\x6b\xe8\xb6\x90\xdb\xd7\xd0\x6d\x21\xf7\xaf\xa1\xdb\x42\x1e\x5f\x43\xb7\x85\x3c\xbf\xc6\x6c\x0b\x79\x7d\x8d\xd9\x16\xca\xf3\x35\x66\x5b\xa0\x30\x08\xc6\x6c\x0b\xa5\x7e\xf7\x12\x0b\xaf\x49\x3c\xd3\xda\x5f\x63\xb6\x05\x4c\xe2\x6e\xcc\xfe\x7f\x47\x8f\x05\x59\xcb\x03\x22\x60\x9b\x8c\xea\x66\x2d\x5f\x3b\xb7\x85\x5a\xbf\x76\x6e\x0b\xb5\x7d\xed\xdc\x16\x6a\xff\xda\xb9\x2d\x60\x57\xc7\xb0\x60\x01\xbb\x3a\x20\xd9\x42\x3d\x5f\x3b\xb7\x85\x7a\xbf\x76\x6e\x0b\x2d\x7c\xed\xdc\x16\xda\xf3\xb5\x73\x5b\x90\x95\xbd\xf0\x14\x59\xd9\x8d\x7e\xca\xca\x6e\xba\xb3\x7e\xb7\x51\x0b\x6d\x7c\xed\xdc\x16\x5e\x2b\xbb\x7e\xb7\xbe\x76\x6e\x0b\x58\xd9\xd1\x2d\x2d\x70\x30\x70\xec\x5a\x68\xf7\xbb\xe1\x5a\xc0\xca\x8e\x66\xeb\xfe\x9b\xcf\xa1\x61\x41\x56\xbe\xcd\x32\x93\x95\x6f\xeb\xda\xf8\xe2\x14\x0b\xb2\xf2\x39\x4e\xb1\xf0\x5a\xf9\xe8\x27\x56\xbe\xf8\xfe\xee\x7c\x51\x8b\x05\x59\xf9\x32\x4f\x91\x95\x2f\x33\xe9\x64\xe5\x2b\x3c\x45\x56\xbe\xca\x74\x91\x29\xaf\x32\xcd\x64\xca\xd3\xe4\xc1\x94\x87\x3d\xd7\x02\xa6\x3c\x30\x8c\x05\x99\xf2\xb2\xae\x81\x2c\x17\xdf\x45\xa6\xbc\xcc\x37\x93\x29\xaf\xe8\x99\xf3\x8b\x68\x2c\x60\xca\xc3\x9e\x6b\x41\xa6\xbc\x8a\xec\x32\xe5\x65\xf5\xfa\x7e\xf1\x8d\x85\xd7\x94\x87\x0c\x32\xe5\x05\xbe\xae\x4c\x79\x81\xa7\xcc\xf4\xc5\x37\x16\xa6\x7d\xf1\x8d\x05\x4c\x79\x8f\xe6\xcb\x2c\x5f\x7c\x63\x61\xd6\x2f\xbe\xb1\x30\xdb\x17\xdf\x58\x98\xfd\x8b\x6f\x2c\xcc\xf1\xc5\x37\x16\xe6\xfc\xe2\x1b\x0b\x73\x7d\xf1\x8d\x85\xb9\xbf\xf8\xc6\xc2\x3c\x5f\x7c\x63\x61\xde\x2f\xbe\xb1\xb0\xc2\x17\xdf\x58\x58\xcf\x17\xdf\x58\xc0\x94\x07\xbe\xb1\xb0\xd2\x17\xdf\x58\xc0\x94\xf7\x68\x96\xaf\xfc\xc5\x37\x16\x56\xf9\xe2\x1b\x0b\x98\xf2\xc0\x37\x16\x64\xca\x2b\xf4\x53\xa6\xbc\xad\x3b\xc7\x17\xed\x58\xc0\x94\x07\xda\xb1\x80\x29\x0f\xb4\x63\x41\xa6\x3c\x6d\x6e\xeb\x7c\xd1\x8e\x05\x4c\x79\xa0\x1d\x0b\x98\xf2\x1e\x6d\x59\x98\xf2\x1e\xad\x70\x99\xf2\x22\x5f\x70\xa7\x2f\xda\xb1\xb0\xed\x8b\x76\x2c\xec\xfc\x45\x3b\x16\x64\xca\x93\x44\x32\xe5\x35\xe6\xa7\x4c\x79\x95\x71\x7f\x4d\x79\xea\x0b\xa6\xbc\xa2\x6b\x32\xc5\xaa\x67\xcc\xcf\x86\xec\x32\xe5\x65\xe6\x99\x4c\x79\x95\x6f\x26\x53\x5e\xa5\x2f\x32\xe5\x35\xe6\x84\x4c\x79\x9d\xf9\x22\x53\x9e\x56\x9c\x4c\x79\xe5\x1f\x45\xbd\x2c\xc8\xca\xa7\x45\x75\x64\x85\xd6\x0b\x10\xbd\xeb\xe5\x12\x1d\x81\x64\xe5\xd3\xb6\x7b\x10\x5d\x53\xf7\xc8\x8a\xa9\x6b\x0c\xad\x36\xb7\x23\x2b\x2d\x1f\xfe\x20\xba\x36\xcc\x23\x2b\x26\x1f\xe2\x20\x7a\xe7\x23\x61\x2b\xc4\x9e\x6b\x41\x76\x42\x9d\x93\xd8\x08\xb1\xe7\x5a\xc0\x46\x88\x3d\xd7\xc2\x95\x15\x93\x9e\x61\x23\xc4\x9e\x6b\xe1\xca\xca\xae\x37\x48\x3e\x86\xe8\xca\x4a\xab\x6b\xc8\xa7\x49\x77\x65\x65\xe7\x4b\xc8\x7e\xa8\x25\x8d\xfd\x10\x7b\xae\x85\x2b\x2b\x2d\x4b\xf3\x4a\x3e\xf5\x4c\x56\x68\x97\xe8\x09\x1a\xda\x4d\x4b\x56\xe8\x4c\x0b\xf9\x86\xee\x44\x3e\xb7\xe7\xda\x13\x34\x7e\xba\x53\xf6\x3c\x5d\xd3\xd4\x1d\xb4\xe4\x45\xa8\xb4\xb0\x8f\x16\xdd\x29\xa3\x5d\xa3\x85\x7c\x6e\xcf\xb5\x27\xc8\x3e\xaa\x3b\xd7\xd7\x9e\x6b\x0f\xf6\x4a\xec\xb9\xf6\xc8\xd2\xf8\xb1\xe7\xda\x23\x6b\xe3\xc7\x9e\x6b\x0f\x16\x47\xec\xb9\xf6\x60\x56\xc4\x9e\x6b\x0f\x66\x45\xec\xb9\xf6\x60\x56\xc4\x9e\x6b\x8f\x47\xdf\xc8\x9e\x6b\xcf\x23\x2b\xad\xee\xa4\x17\x51\xbd\xe0\x2b\xbb\x3d\xd7\x9e\x07\x2b\x2d\x5b\xc9\xe3\x5a\xa6\xec\xb9\xf6\xb8\x86\x29\x7b\xae\x3d\x11\x4b\x73\xd2\x9d\xf4\x05\xcd\xe8\x89\x58\x8c\x1f\xb5\xe6\xd7\x9e\x6b\x4f\x5c\x5f\x7b\xae\x3d\x71\x7f\xed\xb9\xf6\x24\xf9\x4e\xf8\x1d\xa6\x43\xec\xb9\xf6\x24\x2d\xd8\x42\x4b\xb6\x77\x46\x20\xc9\xb7\x40\x3f\x31\x1d\x62\xcf\xb5\x27\x69\x55\x22\x3b\xa6\x43\xec\xb9\xf6\x60\x3a\x74\x7b\xee\x9f\x16\xa3\x3a\xf5\x14\x46\x75\x32\x8b\x30\x1d\x62\xb4\xb5\x07\xd3\x61\x5c\xba\xf3\x7e\x8d\xb6\xf6\x58\xf8\x1a\x6d\xed\xb1\xe7\x6b\xb4\xb5\x47\x26\x08\xd6\xe8\x63\xf9\x6b\xb4\xb5\xc7\xca\xd7\x68\x6b\x0f\x26\x40\x8c\xb6\xf6\x60\x02\x4c\xea\x0b\x26\x40\x8c\xb6\xf6\x60\x02\xc4\x68\x6b\x8f\xfd\x08\x01\xb0\xc7\x7e\x84\x00\xd8\x43\x2d\x7a\x1d\x8a\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x28\x35\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x28\x43\x8f\x4c\x79\x9a\x67\xaf\x29\x4f\xbf\x93\x02\x82\x0c\x32\xe5\x15\xfd\x4e\x0a\x08\xa3\x22\x53\x1e\x9b\xf1\x23\x53\x5e\x50\x3f\xa5\x60\xfd\xc3\x50\x63\x8f\xac\x7c\xe8\x42\xcf\x6b\xe5\x63\x68\x5f\x2b\x1f\x8f\x94\x95\x4f\x0b\x5d\x56\x3e\xf4\x9d\x47\x56\x3e\xf4\x9d\x47\x56\x3e\xf4\x9d\x47\x56\x3e\x2d\x38\x59\xf9\xd0\x77\x9e\x82\xe8\x41\x4f\x41\x74\xf4\x9d\xa7\xe8\xec\xe6\x43\x14\x44\x47\xdf\x79\x0a\xa2\xa3\xef\x3c\x45\x56\x68\x06\xac\xe8\xec\xd6\x53\x64\x85\xe6\x5a\x45\x3e\xf4\x9d\xa7\xca\x0a\x8d\x7c\x55\xba\x17\x6f\xa8\x3a\xbb\x91\xb6\x4a\xf7\xe2\x7d\x8a\x70\x40\xdf\x79\x14\xe1\x80\xbe\xf3\x28\xc2\x41\x9b\x95\x22\x1c\x34\xad\x15\xe1\x80\xbe\xf3\x10\xe1\x20\x7d\xe7\x51\x84\x43\xd6\x9d\xb2\xb2\xeb\x99\xd2\x2d\x75\x4d\x56\x76\xf5\x53\xba\x17\x4f\x51\x84\x83\xb6\x33\x45\x38\x68\x5b\x22\xc2\x41\x1a\xce\xa3\x08\x87\xac\x3b\x91\xaf\xa8\x25\xf9\x78\xbb\x22\x1c\xd0\x70\x1e\x45\x38\x68\x6b\x55\x84\x43\x52\x4b\x53\x57\x77\x6a\xea\xaa\x05\x3b\xb9\xa4\x6d\xb0\x93\x6b\x9e\x35\xd8\xc9\xb5\x81\x35\xd8\xc9\xdf\xbe\xc0\xfa\xad\x59\x00\x25\x6a\xd0\x0c\x81\x12\x35\x18\xdf\x05\x4a\xd4\x70\x19\x5b\x28\x51\xc3\x66\xdc\xa1\x44\x7d\x67\x1d\x94\xa8\xef\x48\x43\x89\xfa\xca\xd0\x55\xaf\x48\x2d\x58\xbf\x39\xf4\x1f\xc7\x3e\x09\x7e\x12\x7b\xa0\x44\x7d\x16\xbd\x86\x12\xf5\x39\x7a\xbb\x53\x78\xc6\xf7\x77\x14\xa1\xd6\x51\x07\x25\x6a\xd4\x16\x02\x25\x2a\x8c\x39\xf6\x40\x89\xfa\x1e\x47\x43\x6c\xda\xf4\x53\x15\xfc\x50\x94\x1e\x2a\xf8\xd9\xc3\xfb\x1c\xfb\x64\xab\x7c\x4f\xe8\x52\x09\x97\xb3\x07\xba\xd4\xac\xd5\x01\x5d\x2a\x0c\x28\xf6\x50\xa6\x8f\xbc\x4f\x7b\x1c\xfb\x64\x72\x42\xed\x81\x4a\xb5\x24\xf5\xcc\xe5\x2b\xda\x76\x29\xd3\x47\x46\x82\x3d\x43\xec\xcf\xea\xa7\xcb\x57\x2b\xb2\x43\xb3\x5a\xb5\x4f\xa8\x80\x83\xd9\xbe\x0f\xcf\x85\x6a\xb5\x2e\x7a\x4e\x99\xbe\x7a\x98\xa3\x13\xfa\x64\x6d\x7e\xd0\xb0\x36\x54\xa7\x67\x8a\xf0\x3f\xef\xa5\xed\x1e\x2a\x56\xf2\x15\xed\x81\x8a\x95\xd2\xc5\xf6\x90\x2b\x5d\x34\x53\xa0\x62\x85\x2e\xc3\x1e\xa8\x58\x7b\xd7\xef\x26\x74\xc7\xc8\x02\x15\xeb\x78\xd4\x82\x7e\x58\xca\x0d\x54\xac\x43\x72\x42\xc5\x3a\x50\x08\x1f\xa8\x58\xc7\x52\x4b\xc1\xb7\x65\xaf\xc9\x97\x86\x8e\x75\xd6\x7f\x69\xce\x0f\x4c\xad\x13\x5d\xf2\x81\xa9\x75\x69\xd0\x1d\x22\xdd\x21\xcd\x62\x95\xf7\x83\x9c\xa9\xd7\x56\x18\x83\x99\xa0\x0e\x93\xf2\xd2\xf9\xee\x30\x29\x2f\x9d\xe1\x8b\x72\x54\x43\x6f\x99\xb4\xf4\x3b\xd8\x8b\xb5\x90\x16\x31\x9d\x56\xf7\xd1\x46\x42\x7d\x87\xad\xcd\x90\xfa\x0e\x5b\x1b\x33\xf5\x1d\xb6\x26\x1b\xf5\x1d\xf6\xe0\x77\x0e\x95\xf2\x1e\xba\xd3\xe5\xdc\x8b\x21\x71\xa8\x94\x8f\xce\xc0\x0d\xfb\xef\x65\xe0\xa9\xf6\x77\x31\xef\x3c\x2a\x27\xaf\xa3\x66\xc3\xb8\x1b\x91\x83\x6a\x7f\x57\xa7\xec\x16\xe3\xae\xde\x0e\xe3\x6e\xd5\x35\x68\x67\x25\x03\x04\xae\xd0\x08\xd8\x03\x81\xeb\xbb\xe5\x40\xe0\x1a\xb4\x59\x40\xe0\x1a\x24\x2d\x04\xae\x41\x0b\x14\x02\xd7\xb0\x79\x0a\x04\xae\x58\xbb\xed\x81\xc0\x95\xf2\xbc\xf6\x40\xe0\x4a\x9e\x9a\x3d\x10\xb8\x3e\x13\x69\x21\x70\x8d\x11\xf9\x20\x70\x8d\xd2\x14\x20\x70\x15\x0a\x78\x1c\x0f\x95\x77\x5b\xa1\xda\x5f\xd2\xb2\x13\xb9\xab\xf4\x65\xc8\x5d\x4d\x5a\x04\xe4\xae\xa6\xa9\x0a\xb9\xab\x69\xb4\x21\x77\xcd\xd2\x80\x21\x77\xcd\x92\x0f\x72\xd7\xa2\x03\x12\x72\xd7\xa2\x7e\x42\xee\x5a\x24\x1f\xe4\xae\x45\xfa\x30\xe4\xae\x25\x31\x46\x90\xbb\x16\x1d\x0b\xb7\xbd\xb1\xd0\x5b\xfd\x81\xc4\xb5\x08\xb1\x5c\x08\x50\xa7\x9e\xab\x2a\x7f\x6a\xb9\x1c\xe5\xe8\x49\x90\x87\x32\x32\x11\x82\xd7\xca\x3c\x8c\x10\xbc\x56\xd6\x54\x84\xe0\xb5\xa2\x5d\x46\x08\x5e\xab\xa7\xb5\x59\x84\xe0\xb5\xba\xa3\xd1\x22\x04\xaf\x8d\x83\x30\x42\xf0\xda\x86\x9e\x02\x29\x27\xda\x6c\x84\xe0\xb5\x3b\xfd\xbe\xc5\xd0\x7f\x47\x62\x5b\x84\xe4\xb5\xbb\x3f\xc5\x22\x24\xaf\xbd\xe8\x9a\x48\x3b\x33\x2d\x98\x39\xd9\x1e\xa3\xc7\x6a\x78\x76\x94\xb7\xdc\x84\x37\xd9\xaa\x22\x04\xb0\x1d\x04\x14\x21\x80\xed\x97\xa7\x78\xac\x86\xf7\x00\x2f\x91\x45\x48\x60\x07\x9b\x7b\x7c\x3e\xb1\xe2\xd4\x88\xb1\x08\x11\xec\x00\x33\x47\x88\x60\x87\xfa\xe4\x08\x2a\xc1\x2c\x63\x11\x22\xd8\xf9\xe8\x49\x70\x64\x82\xb5\xe2\x23\x8e\x4c\x46\x01\x22\xd8\x39\xd4\x43\x38\x32\x39\x7a\x22\x44\xb0\xa4\x01\x59\x7c\xc4\x91\xa9\x37\xc0\x2f\x89\x66\x1b\xc9\x6b\x58\xe0\x9b\x08\x11\xec\xd2\xe8\x91\xd3\xb0\x38\x4c\x23\x39\x0d\x6b\xf1\xb5\xc8\x69\xd8\x89\x39\x00\x49\xec\x46\x29\x8d\x90\xc4\x6e\x7d\x1b\x48\x62\x77\xd6\x33\xe1\x97\xec\xff\xb2\x3b\x47\xf8\x63\x37\xdb\x66\x84\x3f\x76\x6f\x75\x45\xd4\x93\x08\x0b\x7f\x2c\xe5\x65\x2c\xc2\x1f\xab\xcd\x2e\xc2\x1f\x7b\xa6\xba\x29\xea\x49\x5a\x54\xf8\x23\x15\xc6\xa2\x03\xbd\x72\xd1\x11\x23\xdc\xb2\xa4\x5e\x58\x84\x5b\xf6\x62\x33\x8a\xa4\x3b\xdc\xc6\xa0\x90\xee\x70\x87\x9e\x02\xf5\xe4\xd4\x35\xa8\x27\x81\x45\x91\x74\x87\x8b\x86\x13\xe1\x96\xbd\x57\xbf\xa3\xea\x9d\xe9\x0d\x9e\xee\x00\x2f\x8a\x45\xd2\x1d\x70\x25\x5a\xa4\x64\x7c\x38\x6a\x41\x87\xc8\xd6\x10\x49\x75\xa0\x3a\x8a\x45\xa8\xaa\x9e\xa8\x16\x9c\x87\x68\xc4\x11\xaa\x2a\xea\xc2\x5b\x84\xaa\xea\x69\xbc\x0f\xaa\xaa\xa7\xd1\x6b\x53\xba\x0a\xbd\x86\xaa\xea\xd1\xc2\x83\xaa\x0a\x6e\x6e\x8b\x4a\x73\xd0\xb0\x43\x55\x15\xb5\xf4\x4d\x25\x8f\x9e\x7d\xaf\x7a\xe0\x32\x92\x45\x6b\x11\xba\xaa\x84\x56\x15\xa1\xab\x4a\x18\x95\xa2\x2a\xfb\x61\x4a\x89\xaa\xec\x27\x89\x55\xd9\xcf\xb8\x13\xba\x2a\x03\x8f\x44\xe8\xaa\xe0\xaf\xb6\x98\xc5\xa2\xa7\x3b\xc5\xa2\xc7\x68\x53\xd9\xcf\x96\x5a\xb0\xe8\x69\xb9\x40\x65\x95\x1f\xfa\x89\x13\xfb\x56\xbd\xc1\x65\x94\x86\x17\xa1\xb2\x2a\x41\xd7\x60\xa7\x03\x49\x44\xa8\xac\x8a\x36\x25\xa8\xac\x8a\x36\x50\xa8\xac\x4a\x57\x3f\x61\xa7\xd3\xbc\x87\xca\xaa\x68\x8b\x82\xca\xaa\xe8\x7d\x50\x59\x15\x8e\xc4\x08\x95\x55\x39\xba\xd3\xe5\x2b\xfa\xd6\x50\x59\x55\x6d\xa7\x50\x59\xc1\xe5\x61\x11\xba\xaa\x5a\x75\x0d\x76\x3a\x8c\x18\x11\xba\xaa\xaa\x6d\x0b\xba\xaa\x7a\x74\x6d\xbf\x45\x63\x57\x53\x7f\x60\x7e\x03\x53\x46\x28\xab\x1a\xda\x64\x84\xb2\xaa\x61\xd6\x88\xf5\x79\x7f\x0b\x95\xad\x45\x47\x8b\xb5\x69\xfb\xaa\x50\xa7\x05\xdd\x0d\x75\x1a\x5a\x7c\x84\xd2\xaa\x6b\x56\x43\x69\x05\xc5\x9b\x45\x28\xad\xba\x66\x03\x75\xdf\x3b\x07\x73\xa4\xee\x7b\xc7\x5c\x16\xeb\x78\x7b\x40\xc2\x99\x45\x08\xb0\xba\xbe\x26\x04\x58\x7d\xeb\x2d\x3e\x5e\xfd\x30\xe7\x20\xc0\xea\x47\x7d\x85\x3e\x4d\x6b\xa7\xa1\x91\xe7\xf2\x39\x9c\x20\xc1\x1a\x1a\x33\x48\xb0\xc6\xe5\xb7\x90\x60\x4d\x14\xd0\xd8\xa0\x1f\x8b\xba\xe6\x72\x4e\x1d\x29\x10\x64\x4d\x94\x93\x08\x41\xd6\x0a\xf4\x1c\x82\x2c\x68\x8e\x2d\x36\x95\x1b\xab\x7b\x0f\x5d\x87\x82\x4c\xeb\x00\x92\xac\xa5\xaf\x02\x49\x96\xd4\xd8\x08\x49\xd6\xd2\x78\x43\x92\xe5\xc5\xba\xff\xff\x56\x0d\x7f\xd6\xda\x7c\x02\xf8\xb3\xde\x93\xa1\x8b\x03\x8c\xc1\x83\x3f\x6b\x37\xba\x0a\x7f\xd6\xd6\x92\x54\x59\x78\xac\xc5\x11\xfe\xac\x13\x19\x2e\xf1\x67\x75\x16\x21\x6c\xb8\x57\x87\x41\x17\xf9\x94\xde\x2e\xf2\x29\xdd\x49\x96\x9c\xb6\xdc\x0e\xf9\x94\x26\xb0\xca\xc2\x5f\xf5\xc5\xb3\xc8\x60\xa0\xb5\xe8\xc0\xb1\x09\x6c\x47\x07\x8e\xed\x41\x4f\x8a\x03\xf2\x29\x3d\x13\x6e\xad\x47\x27\xad\x03\x47\x83\x40\xdf\x22\x04\x5a\xf1\x7d\x26\xe4\x4c\x3a\x69\x1d\x38\x7a\x19\xd8\xa3\x8d\x06\x12\x2d\xd9\x88\x23\x44\x59\x51\x1b\x14\x44\x59\xb2\x50\x46\x88\xb2\xa2\xbe\x37\x44\x59\x51\x53\x0a\xa2\xac\xa4\xa5\x33\x21\x61\x42\x8f\x8c\x0e\x0e\x5b\xd2\x04\x83\x44\x2b\xa1\x71\x46\x48\xb4\x92\x34\x3c\x48\xb4\x28\x51\x60\x11\x12\xad\x34\x74\xcd\xe5\x48\xd2\xa1\x20\xd1\xa2\x0c\x81\x45\x80\x61\x3a\x6a\x41\xd0\xa4\x69\x0a\x89\x96\x61\x34\x88\x90\x68\x59\xd6\x53\x20\x68\xaa\xea\x35\x04\x4d\xb8\x53\x22\x24\x5a\xa6\x05\x06\x89\x96\x01\x9c\x23\x24\x5a\xa6\xc3\x49\xc0\x30\xcf\x7d\x8c\x27\x41\xa4\x95\x13\xf2\x43\xa4\x95\x75\x3c\x42\xa4\x95\xb1\x40\x47\x88\xb4\xb2\x36\x68\x88\xb4\xb2\x36\x45\x88\xb4\xb2\x0e\x7c\x88\xb4\xb2\x8e\x23\x88\xb4\x32\x48\x2b\x42\xa4\x95\xb5\x35\x40\xa4\x95\x35\xbe\x90\x65\x15\xa9\x1b\x8e\xec\x76\xcb\x6b\x53\x59\xc6\x22\x84\x59\x05\x64\x14\x37\x44\x4d\x49\x2d\x88\x9a\x30\x80\x44\xc8\xb4\x8a\x8e\x39\x47\x77\x26\x1c\x11\x21\xd3\x2a\x52\x1d\x20\xd3\x2a\x53\x4f\x81\x6c\x4a\xfa\x37\x64\x5a\x55\xc7\xbc\xa3\x3b\xcb\x07\x89\x21\xd3\x6a\x3a\x30\x20\xd3\x6a\xea\x39\x64\x5a\x4d\x1b\xda\xd6\x31\xb0\xf7\x69\x92\x03\x3e\x21\x7d\x73\x08\xb5\xba\x34\x43\x08\xb5\xba\x46\x07\x42\xad\xae\xed\x06\x42\x2d\x4a\x12\x5b\x84\x50\x6b\x68\x3e\x42\xa8\x05\x7f\xa5\x45\x08\xb5\x86\x94\x33\x08\xb5\x86\x24\x86\x50\x6b\x6c\xbd\x01\x3e\x21\x1d\x08\x10\x6a\x4d\xa9\x78\x10\x6a\xc1\x20\x69\x11\x42\xad\xa9\xaf\x08\xa1\xd6\x12\xe2\x80\x50\x6b\x49\x59\x82\x50\x6b\x0f\x46\x95\x7a\xee\x5b\xf3\xff\xc2\xc5\xa3\xdd\xe0\x8a\x8b\x87\x79\x0c\xd9\x16\xb9\x9b\x16\x21\xdb\x3a\x58\x9b\xa3\xea\xb9\x97\xb0\x4f\xd5\x6f\xbd\x1c\x60\x93\x52\x0b\xe1\xd6\xb9\x8c\x07\x84\x5b\x57\xf3\x18\xc2\xad\x1b\xff\x65\xfc\x88\x70\x71\x09\xb2\xc7\x3b\xde\x57\xde\xa5\x2e\x4d\xa8\x75\x10\xf3\x42\xd7\x73\xf4\x12\xa8\x6e\xa4\xcd\x90\xec\x1e\xb4\x91\x90\xec\x4e\xa5\x6c\x4b\x24\xbb\x2b\x00\x26\x91\xec\x1e\x9c\x91\xce\x12\x09\xed\x61\xe9\x4e\xe8\x7a\xbc\x22\xa0\x25\x12\xda\x1f\xcc\x04\x89\x84\x76\x18\xfe\x2c\x91\xb4\xfe\x44\xdd\x09\x65\x4d\xd2\x9d\x24\x3b\x37\xbd\x6f\x93\xfa\xfc\xd0\x82\x0f\x85\x61\x4c\x24\xa6\x27\x20\x66\x22\x31\x9d\x8a\xe6\x96\x48\x4c\x87\x6d\xda\x12\x89\xe9\x96\x74\x27\x9c\x27\xce\xef\x60\x89\xc4\x74\x2b\xba\xe6\xfd\x84\xe1\xd9\x12\x89\xe9\xd4\x97\xb3\x44\x62\x7a\xee\x7a\x83\x38\x4f\x16\x2d\x71\x9e\x20\xdf\x03\xe7\x09\x9b\x48\x7a\xc4\x79\x12\x68\x1d\x5a\x7a\x9f\x27\xf9\x76\xf4\xa8\xe4\xe0\xad\x67\xb4\x94\x14\xe1\x3c\x01\x56\xa6\x08\xe7\x89\xbe\x6e\x84\x2b\xc4\x74\x27\x5c\x21\x5d\x77\xc2\x15\x32\x74\xcd\xe5\xab\x6c\xa9\xc9\xc1\x5b\xaf\x20\xa6\xe4\xe0\xad\x57\xf4\xe4\x14\xe1\x3b\xe1\x18\x4e\x11\xae\x10\x3c\xe2\x29\xc2\x15\x72\x18\x69\x12\xd2\x3b\x10\x30\x45\x8a\xb7\x62\x2f\x4e\x24\xa4\x8f\xf7\x0d\xf0\x73\x00\xc2\x53\x82\x9f\x83\xad\x26\x25\xf8\x39\x30\xc9\xa4\x04\x27\x06\xda\x76\x4a\x70\x62\x30\x3f\x93\x23\x34\x5b\xe8\xec\x29\xc1\x89\xc1\x6c\x4d\x09\x4e\x8c\xac\x67\xc2\x89\x51\xf4\x4c\x38\x31\xd8\xc8\x52\x82\x13\x03\x47\x70\x4a\x70\x62\x74\xfd\x6e\xc2\xba\xa1\x16\xbc\x1e\x18\x84\x52\x82\xd7\xe3\xaa\x2f\x70\x62\xb0\x09\x24\x13\xef\x05\x77\x1a\xdc\x16\xa6\x6b\x10\x58\xe0\x5c\x4e\x06\x81\x85\xde\x6e\x10\x58\x74\xfa\x69\x10\x58\xe0\xfa\x4b\x06\x81\x85\x66\x96\x41\x60\x31\xd5\x9a\xac\xf2\xb6\x77\xd7\xdd\x90\x58\x68\x64\x1c\x69\xf5\x13\xd4\xf2\xbe\x1e\xc9\xe8\x48\xab\x1f\x36\xba\x94\x21\x79\xd0\x2a\xcf\xcf\xa7\xa8\x35\x16\xe4\x94\xa9\xd6\xaa\xf1\xc8\x54\x6b\x0d\xfa\xad\x51\x1c\x56\xd7\x32\xc5\x61\xf5\xbb\x42\x8b\x77\x3a\xda\x32\x88\x59\x2d\xe5\xf6\x79\xcb\xd0\x6f\xa9\xd8\x0a\x8a\x4d\x84\x0b\x4b\xa5\x48\x79\x7e\xef\x66\x04\x1d\x75\xd9\x29\x7a\xd3\xa6\x66\x2c\xf3\x80\xd4\x75\x78\xe2\x2d\x39\xea\xb2\xa3\xaf\x46\x3d\xf5\xa3\x59\x58\x28\x58\x0b\x72\x48\x05\x39\xc1\x02\xa9\x20\x27\x4e\xca\x54\x90\x53\xbb\x4f\x41\x4e\x8c\x46\xc9\x51\x97\xdd\xe7\x1f\xd5\x63\x2c\xb9\x4b\xcf\xa8\x5e\x66\xc9\x5d\x7a\x06\xd3\x86\x25\x07\x6b\x76\x09\xbc\x4a\x0e\xd6\xec\x6a\x59\x95\x8f\xf8\xe7\x51\xc7\x71\xfd\x10\x7a\x92\x0a\x5c\x0f\xe8\x51\xa9\x52\x98\x16\xb8\x98\x1c\x90\xd9\xc5\xb7\x9b\x1c\x8c\xd9\x5d\xba\x33\xd1\x42\x60\x07\x63\x76\xb7\xee\xf4\xd8\x49\xc3\xd5\x94\x2a\x22\x5e\x5d\xab\x38\x97\xe8\x0b\x15\x0b\x03\x20\x2e\x51\xb1\x50\xe6\x8e\x44\xc5\x42\x45\x50\x26\x2a\x16\x06\x6d\xb0\x54\x2c\x0c\xda\xb4\xa9\x58\x08\x6f\x9b\x25\xaa\x12\x06\x6d\x63\x54\x25\x0c\x00\xe7\xd4\xe2\xfb\x35\x2e\xa6\x82\x44\x65\xc2\x80\x29\x28\x51\x7d\x30\x00\xd2\x12\xd5\x07\xdf\x83\x89\xea\x83\x42\x06\x49\x80\xea\xcf\x93\x9a\x7e\x4b\x7f\xb5\xf8\xdb\xe7\xbb\x0b\x4a\x26\x2a\x14\xca\x56\x9d\xa8\x50\x18\x8e\xae\x31\xed\x70\x8f\xa4\x76\x3f\xbf\xc5\x1e\x9f\x70\xc9\x3d\xda\xba\xfa\xf3\x56\x5d\x5e\x3a\x7e\x70\xcb\x09\xa7\xa4\x9e\xde\xeb\x54\xb8\xb6\x24\xd7\x1c\xba\x73\x92\x6b\x4e\x87\xa3\x5c\x73\x38\x6a\x92\xa3\xa8\x64\x9a\xf2\x72\xcd\x61\xf9\x4b\x54\x2b\x7c\xf4\xd5\xe5\x9a\x03\x9c\xa7\x0e\xa7\x8a\xbe\x55\x5f\x9f\x1e\x68\x63\xc6\x3d\xf7\xe8\xeb\xc9\x3d\xa7\xa5\x2f\xf7\x9c\x8e\xf5\x11\xde\xdf\xc2\x8c\x6c\x09\x17\x9d\x22\x63\x12\x2e\x3a\x45\xf0\x24\x5c\x74\x0a\xd5\x4a\xb8\xe8\x22\xda\x52\xc2\x45\xa7\xf8\xa1\x84\x8b\x4e\x21\x57\x49\x48\xeb\x8f\xe2\xaa\x6d\x0e\x37\x9d\x22\x20\xd2\xe8\x9f\xeb\x60\xa1\x84\xab\x2e\x6a\x13\x19\x72\x37\xea\x9a\xdc\x8d\x8c\xe6\xb8\x9f\xdf\xe2\x61\x48\x54\x3e\x8c\x97\x37\xe1\x8e\x4b\x60\xd3\x84\x3b\x2e\x61\xa7\x4e\x33\xbd\xbf\x85\x7b\xc8\xd2\xb4\xcf\x7f\xb4\x49\x51\x1d\x31\x15\x3d\xcd\xe5\x4a\xa0\x92\x84\x4b\x2e\xa9\x97\x54\x47\x4c\x53\xad\x8f\x4c\x47\x8a\x03\x6e\x39\x0a\x76\x58\xc2\x2d\x97\x74\x80\xcc\xf5\xde\x7d\x1f\xbd\xd7\xc7\x29\x81\x30\x93\xa3\xac\x94\xb5\x22\xa9\x84\x48\xd1\x0e\x4b\xb8\xde\x28\xc5\x61\x09\xff\x1a\xa5\x38\x2c\x39\xc2\x4a\x19\x13\x50\xa2\x12\xa2\xe9\xb0\xa3\x12\xa2\x4c\x75\x09\xdf\x9a\x69\x6c\xf1\xad\x99\xd6\x35\xbe\x35\xca\x5f\x58\xc2\xb7\x26\x33\x5e\xc2\xb7\x66\x52\x5d\xf0\xad\x99\x64\x5c\x14\x25\x96\x22\x83\x5f\xcd\xb4\xa5\x0b\x7d\x59\xda\x9b\xa0\xe0\x84\x6f\xcd\x0e\x3d\xc0\xb7\x66\x52\x9e\xf0\xad\x99\xb6\x75\x7c\x6b\xa6\xf9\x8d\xff\x2c\xff\x59\x7d\xff\x7f\x5b\xc7\xb5\x96\x93\x5e\x80\xa7\xd8\xf4\x48\xf7\x84\x67\x09\x85\x6b\x2d\xeb\x0c\x74\xf0\x95\xf2\xe0\x93\x3a\xf8\xca\x82\xa9\x49\xe0\xeb\xcf\x1f\xda\x5e\x1c\x7c\xe5\x0c\x70\x4f\x0e\xbe\x72\xd6\x42\x70\xf0\x95\x33\x81\x66\x89\x14\x8f\xac\x4d\xde\xc1\x57\xce\xda\xd6\x4f\x7a\x9f\x7b\x34\x08\xc7\x3e\xff\xc1\x28\x92\x1c\x84\xe5\x8c\x49\x22\x1d\x3e\x83\x34\xc3\x83\xac\x78\xe8\xd3\x41\x56\x2d\x99\x83\x57\x7c\xeb\x29\x7e\x82\x67\x9d\x9f\x0e\xc2\x72\x3e\xea\xc5\xfa\xbe\x13\x79\x1d\x88\xe5\x7c\xf4\x16\x97\xb5\x68\xb2\x9d\xcf\x90\x2a\x0e\x22\x39\x18\xcb\x45\x8b\xde\xc1\x58\x16\xfc\x4e\x0e\xc6\xb2\x9c\x68\x09\x5e\x92\xac\x29\xed\x60\x2c\x17\x80\x5a\x72\x20\x96\x8b\xe9\xce\x42\x4b\xcf\x74\x39\x8b\x74\x49\x07\x62\xb9\x68\x6b\xa6\x66\x7b\xd1\xd7\x72\xb4\x95\x0a\x4e\x97\x44\xcd\xf6\xa2\x63\x8c\x9a\xed\x05\xf3\x42\xa2\x66\xbb\xac\xc1\x89\x9a\xed\x45\xa3\x4f\xcd\xf6\xc2\x31\x6d\xd4\x6c\xa7\x02\x89\x19\x35\xdb\x0b\x58\xce\xa8\xd9\x5e\x40\x37\x46\xcd\x76\x39\xf3\x2c\x94\x37\x6a\xe0\x60\x9a\xb1\x50\x3f\xff\xc9\x7a\x9a\xcb\x52\xd1\xd1\xec\x75\xb9\xd9\x16\x60\x35\xea\xb0\x57\xd3\xdb\xf6\xf7\xba\xf1\x1f\xa2\x16\x8a\xde\x48\xd4\x02\xd6\x4b\x73\xac\x95\xab\x9e\xf4\x3a\xcb\x6c\x1f\x7c\x1a\xf6\xe4\xcf\x7f\x00\xd2\x46\x15\x76\x58\x10\xcd\xa8\xb4\x5e\xf9\x26\x46\xa5\xf5\xfa\xde\x39\x3f\xbf\xc5\x20\x66\x0f\x3d\x65\x2e\xda\xf3\xe9\x29\xd4\xb3\x66\xcf\xf9\xfc\xc7\xf4\x7e\x7a\x0b\xaa\x32\x2a\xb2\x53\x3f\xc5\x8c\x04\x97\xc2\x61\x6c\x54\x64\xaf\x68\xfa\x46\x45\xf6\x8a\xbb\xcc\xa8\xc8\x5e\xd5\x0b\x2a\xb2\x37\xf0\xa5\x51\x91\x1d\xce\x45\x33\x2a\xb2\x37\x3c\x21\x46\x45\xf6\x86\xc1\xc4\xe2\xe7\xcb\x53\x6c\xd6\x8c\xaa\xec\xcd\x74\x7d\xd2\x42\x3a\xaa\xb2\xb7\xa2\x27\xb9\x1c\x0d\x67\xaf\x41\xe0\xd5\x30\xb6\x18\x04\x5e\xad\xeb\x1a\xb1\x20\xa8\x4e\x46\x75\xf5\x86\xa2\x64\xa9\x7c\x23\x43\x74\x37\xfd\x65\x2b\xb5\x44\x7f\x35\xef\x1c\x33\xe5\xc6\x0a\x36\xc7\x3e\xb9\x07\x5d\xf3\xfe\x74\x10\xbe\x59\x78\x9f\x2b\x73\x89\x91\x68\x03\x6f\xb9\x19\x55\xd6\x29\xd0\x62\x46\x16\x65\x21\x80\xd2\xa8\xb2\x2e\x3b\xbf\x39\x6e\x4a\xa5\xab\x55\x5e\x23\xe0\xd2\xec\x75\xec\x94\x61\x87\x34\xb3\xf6\x09\xec\x30\xbd\x97\x18\x15\x0e\x61\x73\x7c\x94\x7b\xd7\xdd\x94\xf9\x1e\xff\x0a\xfc\x33\x8a\xb4\xf7\xa9\x87\x20\x2a\x90\xc1\x28\xd2\xde\xf5\x89\x28\xd2\x2e\xd7\x82\x51\xa4\xbd\x03\xc7\x8c\x22\xed\xfd\xe8\x9a\xbd\x5d\xbd\x40\x1c\xcb\x9f\x30\x9d\x8b\x16\x61\x64\x5e\x16\xac\xb1\x46\x21\xf7\xa1\x0f\x4e\xb5\xf6\xf1\xe8\xd9\x3e\x34\x43\xd3\x8c\x6a\xed\x54\x92\x71\x83\xb5\x87\xe2\xb0\xf8\xa9\xd6\x3e\xd0\x33\x8c\x6a\xed\x03\xad\xd1\x32\x61\x3a\xc4\xae\x1a\xd5\xda\x07\xe0\xcc\xa8\xd6\x3e\x34\x71\xa8\xd6\x3e\x08\xef\x32\xaa\xb5\x0f\x4e\x63\xa3\x5a\xfb\xe0\xf0\x30\xaa\xb5\x8f\xad\x6b\xc8\xb0\xf5\x06\x64\x38\x7a\x0a\x32\x68\x31\x52\xad\x7d\xe8\x6b\x51\xad\x7d\x5c\xdd\xe9\x32\xc8\x20\x60\x54\x6b\x9f\xfa\x12\x54\x6b\x9f\x18\x90\x8c\x6a\xed\x53\x4b\x88\x6a\xed\x13\x10\x6e\x54\x6b\x9f\xda\xc6\xa8\xd6\x2e\x27\x8c\x51\xad\x7d\x82\x09\xcc\x71\x51\x96\xe9\xc0\x6a\x7e\x43\x94\xb6\x96\x09\xd5\xdc\xa7\x26\x29\xd8\x68\x0e\xbd\xd3\xe5\x90\x31\xc1\xc0\x3f\x73\xeb\x4e\x8f\x9e\xad\x45\x77\x6e\x5a\x8c\x05\x15\xdb\xa9\x7d\x69\x46\xc5\xf6\xa9\x0d\xc7\xb1\x51\xaa\x58\x45\x0d\x6c\xb4\x30\xb9\x18\x15\xdb\xdf\xe5\xd1\xd2\x1b\x83\xb4\x30\xde\x18\x55\xdb\x97\x16\x4c\x53\xdc\x13\xdf\xbc\xb5\xf7\xee\xad\xb9\xf3\xe2\xa3\xfa\xea\x52\xd6\xc6\xe7\x3f\xc4\x46\xdb\x8b\x91\xea\xde\x68\x7c\xa6\x2a\xee\x4d\xd7\xa9\xe2\x8e\xb1\xc3\xc0\x48\x32\x3a\xd9\x8b\x91\x3e\x0e\x2d\xeb\xe1\xf3\x1f\xcd\x43\x55\x73\x47\x47\x34\x55\x73\xd7\xac\x54\x35\x77\xbc\x17\xd6\xed\xfb\x5b\x5d\xcf\x5c\x47\x1a\x30\xd2\xd2\xac\xed\xf5\x73\xf7\xd4\xef\x89\xfb\x42\xd1\xb1\xfe\x95\xfd\xe8\xdd\xe3\x1b\xd1\xc5\xd7\x56\x75\x77\xad\x60\x55\x77\x7f\x74\x37\xdc\x8c\x20\x54\x53\x75\xf7\x47\x3d\x21\xf6\x8b\xe4\x3a\x53\x75\x77\xbc\x6a\x06\x4e\x52\xbc\x85\x39\x4e\x4a\x55\xc7\x3b\x38\x69\x17\xdd\x69\xb4\xf8\xb2\x8e\x93\x12\xb4\xc0\x66\xe0\xa4\xad\x91\x1d\x1f\x59\x65\x59\x36\xc7\x49\xe9\x3d\xc2\x08\x67\xdc\x1a\x31\xc7\x48\xa9\x05\xfd\x16\x19\x31\x0e\x19\xe1\x8c\x7b\xea\x9a\xf8\x27\xf5\xce\xf3\x79\x0b\x51\xf4\x46\x48\xa3\x2c\xe8\x06\x7e\x7a\x8f\x84\xf9\x7c\xee\xc6\xf6\x6d\x60\xa8\x2d\x55\x81\x90\x46\xaa\x8e\x9a\x39\x7e\x4a\x0d\x33\xb1\x39\x76\x4a\x4d\xc7\xbc\x63\xa7\xd4\x50\xe3\x0c\xec\x74\xfe\xc5\xf5\x6d\x06\xac\x3a\x18\x5c\x8c\x48\xc7\xa3\xb3\x77\xf2\x09\x80\xa7\x06\xa4\x3a\x5a\x42\x0e\xa9\x52\xd3\x20\x4c\x4d\xe1\xb6\xb7\xb4\x1e\x22\x1a\x0f\xb6\x5a\x03\x52\x1d\x6d\x07\x40\xaa\x03\xa0\x34\x20\xd5\x21\xec\xc6\x08\x59\x84\x32\xd3\x6c\xe5\xf7\xb9\xef\x90\x01\xab\x5e\xdd\x47\x05\xe6\xb5\x09\xae\xf6\xb9\x5b\x93\x1d\x68\xf5\xf9\x2d\x21\x7d\x3a\x15\x81\x56\x0a\x60\x32\xa0\x95\xe2\x1e\x0c\x68\xa5\x78\x18\x03\x5a\x5d\x7c\xc8\x46\xc8\xe2\xd5\xe2\x03\x56\x29\x02\xc6\x80\x55\x32\x25\x19\x81\x88\x57\xba\x82\x82\x0d\x81\x55\x06\x22\xea\xda\xb0\xa9\x16\x1f\xa2\xee\x9c\xb4\x98\x02\x8e\x88\xbc\x48\xb6\xb7\x08\x36\xd4\x66\xae\x60\x43\x30\x8c\x29\xd8\x50\x7a\xe3\x09\x1f\xda\x4b\xbd\x53\x01\x87\x3a\xbe\x14\x70\x88\xe7\xc2\x14\x70\xa8\x03\x9d\x80\xc3\xa0\x51\x20\xe0\x30\xe8\x18\x22\xe0\x30\xe8\x18\x22\xe0\xf0\xd1\x72\x27\xe0\x50\xb1\xed\x46\xc0\xa1\xa2\x75\x8c\x80\x43\x45\xc8\x1b\xc9\xec\x5d\x47\x0d\x01\x87\x8f\xa9\x67\x9b\x16\x33\x82\x80\x43\x19\x84\xec\x45\x41\x63\x2f\x9c\xd0\x46\x60\xe1\xa3\xa5\x49\x60\xe1\xa3\x79\x47\x60\xa1\x0c\x3b\x76\xf3\xe7\xb7\x43\xbf\x25\x78\x72\xeb\x6e\x64\xd9\xba\x1b\x59\x24\xe7\xed\xef\x6f\xb7\xe6\x01\xd5\xe3\x23\x76\x6f\x23\xf0\x50\x89\x53\x46\xe0\xa1\x12\xd1\x8c\xc0\x43\xa5\x58\x19\x81\x87\xca\x89\x33\x02\x0f\x21\x32\xb3\x4c\xe0\xa1\xf2\xec\x32\x81\x87\x4a\xaa\xc9\x04\x1e\xca\x29\x9e\x43\x7a\xfb\x73\x70\x7e\x66\x82\x0f\xe5\x26\xcf\x04\x1f\xa6\xa0\x27\xb9\x9c\x89\x51\xca\x54\x90\x4f\x38\x30\x33\xc1\x85\x32\xe1\x64\x02\x08\x13\x23\x91\x1d\xe5\x94\x04\x6e\xc8\x54\x90\x4f\x18\x35\xf3\x13\xde\x1e\x5c\x46\x2a\x13\x44\x98\x70\x3f\xe6\x37\x88\x70\xee\xc5\x86\x9f\x9f\x4f\x9f\x29\x84\x61\x99\x6a\xf2\xd4\x71\xb5\x4c\x10\x61\x92\xbc\x4f\xf9\xfc\x9e\x95\x90\xa9\x28\x9f\xba\x5a\x3e\x3e\x69\xea\xd9\x04\xb0\x72\x48\x65\x02\x02\x13\x86\xda\x4c\x40\xa0\x31\x0f\x33\x01\x81\x46\x46\x42\x26\x20\xd0\x50\x15\x32\x01\x81\xc6\x06\x9b\x09\x08\x34\xc2\x67\x33\x01\x81\x86\x8b\x36\x13\x10\x28\x17\x7e\x26\x20\xd0\xaa\xae\x79\x3f\x0d\xc7\x73\x26\x20\xd0\xd0\xfa\x33\x51\x7f\xd6\xf5\x86\x45\xf8\xac\xfa\x42\xa0\xed\xd6\xef\xce\x2b\xbf\xdb\x3e\xfe\xef\x36\x9e\x09\xfc\x33\x4e\x8d\x4c\xe0\x9f\x02\xbc\xb2\xbb\x95\xbc\xe0\x9e\xb7\x5c\xc4\x1c\x74\xcd\x45\xcc\x8f\x7e\xe7\xe7\xcb\x90\x50\x04\xfe\x29\x9a\x20\x13\xf8\xa7\x48\x83\x4c\xe0\x5f\xd6\xc4\x20\xf0\x2f\x67\xb5\x5c\xc4\x8c\x0e\x97\xdd\xad\x54\x14\x69\x90\xdd\xad\x54\x72\xd3\x9d\x8b\x96\xae\xb9\xf8\x79\xea\x0d\x87\x16\x9f\xc6\xa1\x55\xc9\x9a\xea\x46\x9c\x31\xda\x75\xa6\xe2\xbc\x4c\x33\x99\x8a\xf3\x19\xdb\x74\x06\x56\xc9\xa5\x96\xa9\x38\x4f\x59\x56\xcb\x54\x9c\xcf\x44\x0b\x64\x2a\xce\x97\xa0\xdf\x11\x67\x1c\xf4\x3e\x97\xaf\x44\x86\xd0\xdd\x51\xa5\x90\x85\x97\xa9\x46\x5f\xd0\x0c\x33\xd5\xe8\x4b\xd6\x9d\xc4\x1f\x6b\xc1\xc0\x5c\x33\x8e\x7e\x77\xbe\xb1\xcb\x7c\x6f\xbb\x9f\xff\xb0\xe9\xe4\x1c\x3e\xff\xc1\x91\x9a\x1d\x5b\x95\x82\xb6\x93\xa9\x53\x5f\xd8\x4a\x32\x75\xea\x0b\xa1\x6d\x99\x3a\xf5\xa5\xab\x85\x3c\x68\x84\x99\x20\xbf\x49\x68\x5a\xa6\x4e\x7d\x61\x93\xcc\xd4\xa9\x2f\x1c\x12\x99\x3a\xf5\x45\xa3\x00\x33\xcd\x7c\xf4\xf6\x4d\x8b\xef\x87\xbb\x69\x68\xf2\x52\xa7\xbe\x62\x7e\xc9\xd4\xa9\xaf\xd8\xc8\x73\x79\x3e\x0c\xd6\x55\xff\x21\xa6\x9a\x63\x23\x97\xf4\xb9\x8e\x6d\x37\x17\xfb\xfe\x47\xbf\x70\x59\x65\x9e\xc9\xd4\xac\xaf\x9a\x7f\xd4\xac\xaf\x5a\xa8\xa5\x7d\x7f\xcb\xb7\x28\xfd\xf3\x1f\xad\x97\x32\xbe\xf7\x20\x29\xf5\xeb\x6b\xd5\xf5\xf5\xbd\x8e\xec\x8e\xb7\x4a\xd5\xf7\x2c\x5f\x4e\x6e\x0c\x52\xb9\x10\xa5\x84\x72\x91\xa9\x71\xaf\xf8\x92\x4c\x8d\xfb\xaa\x51\xa7\xc6\x7d\xe5\xe0\xcd\xd4\xb8\xaf\x92\x92\x1a\xf7\x72\x40\x67\x6a\xdc\x57\x2c\xef\xb9\x96\x37\x06\x5b\x9e\x93\x5c\xeb\xe7\x3f\x9a\x7f\xb5\x7d\xef\xd1\x33\x3a\x3d\xd1\xdb\x06\x2d\xfa\x4c\xbd\xfb\x06\xea\xc9\x75\x7d\x7e\x0b\x6a\xce\xd4\xbc\x6f\x49\xfd\x3e\xb4\xf4\xdc\x4b\x8b\x19\x45\xcd\xfb\xa6\x35\x41\xcd\x7b\x19\x74\x32\x35\xef\x65\xd0\xc9\xd4\xbc\x6f\x59\x77\x1a\x2d\x24\xf4\x00\x41\x2f\x9a\xe3\x2d\xe2\xe7\xb5\xab\x50\xf3\x5e\xc1\x97\x99\x9a\xf7\xad\xea\x99\xc8\x88\x51\x38\x53\xf3\xbe\x69\x1d\x50\xf3\xbe\x81\x52\x73\x63\x3e\xeb\xf0\xed\xf4\x1a\xc4\x95\xa9\x64\xdf\xd0\xea\x33\x95\xec\x1b\x11\x72\x99\x4a\xf6\xd4\xe4\xb5\xdc\xbf\x23\xa1\xf9\xd4\x3f\x23\xb1\x75\x78\x74\x7a\xa8\x31\xef\xf4\x70\xe5\x7f\x6d\xeb\x9d\xce\x2f\x75\x89\xce\xa3\x95\xe5\xce\x00\x1c\x5d\x63\x00\x34\x39\x06\xc1\xfd\x3a\xfd\x07\xc1\xfd\x41\xd7\x1c\x4c\x4d\x9d\x4e\x23\x7d\xba\xaa\x73\xd5\x01\x95\x17\xde\xf1\x96\x8b\x2a\x4b\x54\x76\x40\x55\x3a\xfe\xe6\x3c\x48\x62\xd0\xe9\x3d\x48\x62\xd0\x46\xef\x60\xaa\x28\x4b\x2a\x03\xa6\xe6\xd0\x1b\x48\x60\xd0\x20\x0c\x12\x18\x00\x53\x79\x90\xc0\x30\xf5\x94\x43\x4b\x6f\x70\x19\x3b\x4e\x9d\x3c\x91\x11\x58\x95\xe7\x8f\x82\x05\xf4\x6e\x7e\x92\x18\x64\x07\xcb\x33\x7d\xef\x61\x01\x38\xa0\x2a\xfd\xf0\x9d\x26\xf2\x5c\xb5\xd8\x24\x31\x6a\xe5\x89\x3c\x00\xcb\x3c\x49\xc8\xb8\x4c\x3f\x47\x46\x85\x82\xc6\x96\x1d\x19\x95\xa1\x4d\xd2\x43\xfd\xca\x90\x06\x34\xcf\x27\x71\x42\xdb\xa6\x23\xa3\x32\x88\x29\xcf\x8e\x8c\xca\xd0\x52\x59\x24\x5d\xe8\x8b\x2e\x8a\x10\xe8\x30\x59\x24\x5c\xa0\x6f\xe6\x45\xc2\x05\x1a\x66\x5e\x9f\xe9\x77\x83\xde\xe2\x63\x23\x13\x57\x86\xc1\x6e\x62\x64\xca\x8e\x8a\xca\xc0\xf4\x90\xd7\xfc\xa6\x76\xe8\x69\xc8\x33\xf4\x5b\xe4\x91\xd6\xe5\xc8\xa8\x50\xce\xc1\xb2\x23\xa3\x32\x74\xf4\x3a\x32\x2a\x0a\x54\xcb\x1b\x39\xd1\xad\xf3\xfe\x26\x98\x48\x49\xd9\x9f\xb1\xb9\x98\x0a\xb3\xfb\x93\x8a\x22\x89\xf3\xd6\x56\x76\x3e\xda\xe0\x26\x75\x04\xd2\xa0\xfc\x7a\x8a\xce\x5e\x49\xbf\x20\x29\xe4\xd1\xd3\x3c\xf9\x85\x12\xc6\x96\x49\xc4\x9a\xd2\xf3\xc0\x45\x53\xdb\x28\xb8\x68\x12\x74\x90\xc1\x45\x53\x73\x1c\x5c\x34\x31\x3a\x65\x70\xd1\xd4\xf8\x80\x8b\x64\x2e\xcb\xe0\xa2\x49\x76\x40\x06\x17\x4d\xdc\x78\xf9\xf4\xb7\xaf\x14\xd3\xf5\xa8\xc4\x3f\xd7\xf5\x55\x41\x3c\x53\x47\x0d\x69\x54\x13\xf4\x95\x41\x3b\x8b\x28\x94\x0c\xda\x59\x41\x77\x1a\x2d\xdd\xe9\xbd\xa3\x56\x8d\xe5\xab\x4d\xea\xee\x45\xd6\x67\x06\xed\x2c\x1d\xa1\xa0\x1d\x61\xaa\xec\x68\xa7\xc8\x1e\x9e\x41\x3a\x4b\x4a\x1b\x48\x47\x51\x31\xd9\x91\x4e\x5a\xda\xd8\x40\x3a\x8a\xaf\xce\x20\x9d\x05\x32\xcb\x20\x1d\x99\xa1\x0a\x48\x67\x11\x0c\x5d\xa0\x1b\x5b\x5b\x2d\x64\xc4\x40\x5a\x48\xb1\x5a\x98\x40\x0a\x28\x67\x1d\x3d\x25\xbf\x52\x6d\x0c\x35\x05\xa4\xf3\x69\x91\x9a\xc3\x8c\x29\x20\x1d\x0a\x50\x5b\x21\x8d\x6a\x33\x07\x0a\x69\x54\x3b\xe9\x9d\x2e\xc7\xe6\x6b\x14\x50\xd0\x2e\x7a\xa6\xcb\x21\xa3\x52\x71\x94\x53\x3c\x8a\xe9\xff\x6e\xe5\x85\x0c\x2a\x2a\xed\x58\x01\xf8\x6c\x40\x41\x01\xf8\x6c\x26\x43\x79\x3e\x43\xb5\x4d\x2f\xa9\x9f\xff\x60\x25\x2a\x4f\xfb\xfe\x87\x0f\xf3\xf4\xcf\x7f\xd0\x9a\x0a\xd9\x54\x9b\x85\x5b\x00\x48\x9b\x29\x58\xc8\xa6\x92\xcd\xaa\x90\x4d\xa5\xc8\xf4\x02\x78\xda\x49\xd7\x10\x17\xfd\xa4\x00\x9e\xa8\xd3\x68\x05\xf0\x44\xdd\x1f\x2b\x80\xa7\x4d\x7c\x6b\x01\x3c\x9d\xa4\x16\x15\x62\x1e\xfd\xce\x4f\xf6\xcd\x86\x59\x00\x4f\x07\x64\x51\x48\x7d\x3a\xa6\x67\x92\xde\x84\x46\x50\x94\xde\x84\x56\x55\x1c\xe5\xa4\xad\x67\x92\xde\x74\xba\xae\x79\x5f\x0e\x36\xd1\x02\xca\x51\x9e\x6b\x21\xbd\x49\xc1\x4f\x45\xe9\x4d\xc0\xdf\x02\xca\x51\xf0\x53\x51\x35\x17\x7d\x61\x55\x73\xb9\xba\x46\x7a\x13\x4b\xaf\x80\x72\xb4\xdd\x16\x50\xce\x45\xcb\x2a\xa0\x9c\x1b\xf5\x86\xcd\xfb\xf8\x2e\xa0\x9c\xab\x69\x97\xee\x3b\x86\x32\x3d\x15\x90\xce\x65\x9b\x2f\xa6\x14\x2e\xa4\x32\xa5\x70\x31\x47\x8c\x14\x2e\x2c\xf9\x05\xa4\x43\x3d\x21\x2b\x20\x9d\xcb\x81\x5b\x4c\x29\x5c\x7a\x03\x29\x5c\x00\xd2\x02\xd2\xb9\x98\x4f\x0a\x48\xe7\x0e\x5d\xf3\x43\x7c\x73\x2c\x14\x43\x0e\x2d\x4b\xa1\x99\x1c\xf6\x7a\xdf\xe2\x63\x75\x41\x57\x85\x34\xa6\xa0\x65\x49\x1a\x53\xd0\xb7\x23\x8d\x29\x60\x48\x29\xaa\xd6\x92\xc3\xde\x41\xff\xf1\xbc\x09\x8a\x6f\x5b\x21\x95\x29\x98\xae\x15\x5a\x7c\x11\x52\x99\x02\xba\x6e\x01\xe5\xec\xae\xdf\x79\x7a\x4c\x40\x97\x2d\xa4\x32\x05\x14\x99\x42\x2a\x93\x78\x40\x0a\xa9\x4c\x01\xeb\x6d\x21\x95\x29\x34\xb5\x3c\x65\x44\xa1\xc0\x25\xdf\x4f\x5f\x39\x02\x0b\xe9\x4c\x41\x5f\x93\x74\x26\x19\xdc\x4a\x89\x9f\xbb\x51\x1c\x0a\x29\x4d\x01\x15\xae\x90\xd2\xa4\x5c\x8e\x42\x4a\x53\xd8\xfa\x2d\x69\x69\xfa\x22\x54\xe7\x17\x3d\x41\xa1\x3a\xbf\x28\x1d\x0a\xe9\x4e\xa2\xc8\x28\x85\x31\x43\x65\x2a\xa4\x3b\x29\xcc\xb8\x90\xee\x24\x1a\x8c\x42\x75\xfe\x27\xeb\x0d\xa4\xdd\x65\xf5\xd3\x0f\xcf\xcd\xc1\x5e\x48\x75\x7a\x34\xce\x54\xe7\x7f\x40\x9d\x85\x34\xa7\x87\x63\xaf\x90\xe6\xf4\x0c\x5d\x23\xed\x0e\xc3\x69\x11\x5a\xc9\x61\x2b\x99\xb0\x90\xce\xf4\xa0\xde\x16\xd2\x99\xc4\x87\x52\x1c\xa9\x54\xd1\xeb\x15\x47\x2a\xe9\x10\x6c\x50\x48\x65\x12\xcf\x60\x21\x95\x29\x26\x3d\xc5\xe5\x88\xa6\x77\x7a\x1e\x8f\x68\x16\x0a\xb5\xfc\xe3\x9f\xdd\xe4\xff\x6f\xdd\xed\x79\x73\xfb\x14\xd3\x59\xc8\x64\x12\x31\x4e\x21\x93\x29\x72\xae\x16\x32\x99\x44\x49\x55\x5a\xfd\xfc\x56\x8b\x8a\x6c\xa6\xa8\x8d\x98\x72\xff\xa2\xc3\x29\x64\x32\xc1\x53\x6e\xa5\x21\xa6\x16\x38\x99\x4c\x62\x85\x28\xee\x50\x72\x4a\x64\x6f\x1d\x5a\xea\x0f\x62\xa2\xc7\x16\xd2\x95\xa2\x0e\x0e\xd2\x95\x92\x3e\x24\xe9\x4a\x09\x60\x5e\x1c\xd6\xa4\xd3\xf4\x3b\x97\x43\xc4\x47\x85\x94\x24\x91\x22\x15\x87\x33\x35\x25\xdd\x49\x61\x2b\xf4\xae\x42\xb9\xff\xa4\x2d\x8b\x60\xba\x83\x46\x50\x28\xf7\x9f\x00\x71\xa5\x2b\xb5\x22\x7e\x36\x0d\xc7\x2d\x35\x11\x66\x58\x06\x7d\x6d\x6a\xd1\x57\x8c\x45\xc5\x71\x4b\x95\x2d\xb0\x38\x66\xa9\x49\x07\xa8\x63\x96\x9a\x00\x72\x65\x20\x87\xbe\xfe\x40\x0e\x7c\x0f\x65\x20\x07\x86\xa4\x32\x90\x63\xe9\x4e\xe4\xc0\x96\x5f\x06\xd9\x9c\x47\x7d\x41\x0e\x34\xd5\x32\xc8\xe6\xd4\x31\xe1\x98\xa5\x1a\x61\xa1\x65\x50\x9c\x4b\x5f\x7f\x92\xcd\x89\x59\xa4\x4c\xb2\x39\xb5\xe4\x26\xd9\x9c\x3a\xf2\x27\xd9\x9c\xda\xe6\x26\xd9\x9c\xfa\xa6\x93\x6c\x4e\x0c\x1c\x65\x92\xcd\xa9\xaf\xe4\x18\xa6\x8a\xcb\xa3\xcc\xf6\x7e\xe1\x63\xba\xdb\x65\x54\x78\x66\x99\x14\x21\xd3\x76\xe6\x38\xa6\x1a\xf6\xd7\xe2\x38\xa6\xda\xd0\x73\x37\x2d\xbe\xcd\x44\xc6\x21\xa9\xc8\x58\xd5\x37\x5d\xc8\x08\x54\x2e\x0b\x19\xc1\x73\x65\x21\x23\xe6\xb8\xb2\x90\x11\x3a\xa4\xb2\x90\x51\x47\xaf\x3c\x3f\x39\xee\x9b\x75\xb7\xb2\x56\xf5\xa4\xfa\xb9\x8e\x0f\xa1\x38\xc6\xa9\x19\x77\x62\x59\x64\xae\x4a\xf3\x73\x8c\x53\x73\xd4\x6f\x7d\x4e\xbe\xc7\xe8\xc2\xd0\x91\xd3\x5e\x8f\xde\xe4\xf2\x64\x8d\x84\xe3\x98\x9a\xa1\x1c\x28\x8e\x63\xaa\xd8\x51\x8a\xe3\x98\x9a\x35\x2e\x8e\x61\x6a\xae\x6a\x19\x2d\xbe\x9f\xfb\x82\xaa\xcc\xa0\x65\xd3\x57\x22\xa2\x0a\xbe\x20\x4a\x01\x5a\xd9\xf4\x55\xdb\x24\xd1\x71\x17\x23\x48\x71\x5f\x50\xcd\xda\x2d\x1c\xf3\x54\x2a\xf4\x5b\x39\xf4\x53\x07\xd1\xa1\x9f\x84\x4d\x94\x43\x3f\xa5\x18\x1e\xfa\x09\x16\x2b\x8e\x5b\x6a\xd6\x5c\x3e\x64\x03\x83\x36\xca\xa1\x9f\x38\xe0\x8b\xe3\x96\x5a\x74\x08\x1d\xb2\x81\xa5\xe4\x1c\x65\x03\xeb\x29\x64\x03\x07\xbd\xdd\xf7\xaa\xab\x1d\xef\x9c\xf7\x7b\x9f\xa0\xff\x90\x11\xac\x15\x73\xe3\xe7\x3a\x41\xe1\xe5\x92\xf9\x2b\x05\xea\x92\xf9\x1b\xdb\xbf\xb6\x6d\x07\x40\xb5\x48\xb7\x72\x00\x54\xc5\x23\x51\x6e\xfd\xbc\x04\x5b\x6a\xb9\x24\x3e\x63\x45\x2e\x17\x51\x71\x83\x14\xa5\x12\xfd\xb9\x1b\x08\x5d\x2e\xe2\x9a\xee\x46\xdc\xac\x0e\x22\xee\x56\xe7\x49\x7e\x96\x6e\x71\x11\x15\x87\x5d\x0d\x24\x3f\xb3\xc4\x6a\x20\xf9\x99\xd3\xb2\x06\xc4\x44\xf7\xaa\x02\x3a\xd9\x5e\x6b\x5f\x0d\xc8\x43\x7f\xab\x02\xdc\xfe\x5c\xcf\x7a\xb6\x0f\x9d\x42\xe2\xaa\x02\xdc\xb2\xed\x8d\x93\xb1\x06\x12\xa1\x81\xc7\x35\x90\x08\xfd\xe8\xd9\x24\x42\x63\x09\xac\x0e\x86\x6a\x4d\x7a\xee\xf9\x3c\x69\xe8\xdd\x1e\x77\x1f\x38\x28\xaa\xdc\x42\x7f\xae\x13\xd3\x52\x9f\xe7\xf3\x1f\x8c\x29\xd5\x41\x53\xad\x40\xec\x2a\xb7\x50\xb6\x2d\x7c\x50\x1d\x1d\x55\x91\x00\xd5\xe7\x23\xfb\x31\xfd\xc7\xe3\xf0\xc3\xfb\x7b\x9f\xb2\x0a\x9e\xab\x8e\x8c\x6a\x45\x03\xab\x0f\xc9\xdf\x2c\xa6\xfa\x20\x33\x66\xa8\xfa\x20\xd7\x51\xeb\xd0\xd2\x53\x2e\x2d\xde\xe7\xa8\xa7\x2a\xf0\xad\xc6\x4f\x72\xf7\x22\xa9\xa3\x46\x92\xbb\xd1\x47\xaa\x23\x9f\xda\x88\x57\xaf\x8e\x7c\x6a\x23\x62\xa9\x52\x1b\xb3\x3d\xba\xe6\x63\xd8\xa2\xde\xe2\x72\x34\x74\xd9\x4a\x6d\xcc\xc6\xec\xac\x0a\x93\xfb\xf3\xce\xad\xdf\xba\x2c\xad\xe9\xba\x8f\x9f\x82\xdf\x6a\xa4\x7e\xa4\xe4\x74\xb7\x52\x55\x28\x5c\x8d\x24\xb1\xeb\xfb\x44\x92\xd8\xd9\xac\x6b\x22\x89\x1d\x1b\x78\x75\x44\x55\x1b\x19\x14\x35\x21\x07\x9a\x6b\x4d\xf9\xed\x8f\x18\x79\x6a\x22\x51\x1d\x1b\x77\x4d\x24\xaa\x3f\x7a\x2e\x89\xea\x51\xcf\x25\x51\x5d\xf3\x18\x62\x08\xa5\x4e\x55\x47\x4e\x26\x56\xba\x0a\x31\x44\x2f\x7a\x03\x49\xea\x6c\xaf\x15\x62\x88\xae\x95\x04\x31\x44\xd7\x4a\x82\x18\xa2\x6b\x7e\x42\x0c\xd1\x41\x7f\x15\x62\x88\x0e\xd6\xad\x10\x43\x74\xdc\xf7\x15\xf2\x87\xce\xf1\x54\x1d\x19\x99\x08\xd7\xaa\xc2\xea\x72\xde\xf7\x7d\xee\x67\x4c\xee\xfb\xec\xc1\x2f\xf8\xb6\x10\x40\x0c\x50\x4e\x85\x00\x62\x40\x25\x51\x21\x80\x18\xfa\x3e\xd4\xb9\x14\x45\x5b\x85\x00\x82\xe2\xcb\x56\x41\x4e\xca\x13\xad\x20\x27\x8a\x2f\x5b\x05\x39\x0d\x1c\xae\x15\x02\x88\x41\xb8\x46\x05\x35\x0d\x62\x9c\x2a\xa8\x49\x54\x54\x15\xd4\x34\x34\xb7\x40\x4d\xca\x2f\xad\x8e\x9a\xea\xc0\x7a\x5e\x41\x4d\x43\xb3\x0c\xd4\x34\x40\x95\x15\xd4\x34\x86\xde\xa7\x63\xb4\x6c\xe1\x84\x4a\x3a\xd2\xa3\x6f\x03\x72\x1a\x53\x7d\x45\x46\x30\x68\x25\x1d\xe9\x99\xff\x8a\x56\xa9\x45\x5c\x03\xbc\x12\x7e\x88\xa1\x2d\x0e\x30\x35\xb0\xd0\x56\xb9\x8c\x72\x79\xa3\x6e\x6b\xc9\xdf\xff\xf0\xa1\x4b\xf9\xfc\x87\x13\xae\x02\xac\x26\x9a\x6c\x05\x58\x4d\xb4\x86\x5a\x98\x9a\x5a\x0e\x0e\x9e\x4c\x49\x20\x15\xf0\x34\x41\x00\x15\xf0\x34\x4d\xcf\xa4\x6c\x29\x27\x6a\x05\x3c\x4d\x6d\xd2\x80\x27\xaa\x60\x5b\x05\x3c\x4d\x00\x76\x05\x3c\x29\x73\xaf\x02\x9e\xa8\x9e\x6d\xb5\x7e\x64\x51\x4a\x53\x25\x35\x49\x00\xa9\xc2\x13\x31\x35\x50\x00\x2b\xd9\x22\xab\x03\x2b\xe7\x06\xf2\x96\x0f\xe9\x9c\xea\xcf\xa4\xc5\xf7\x05\x58\xcd\xa5\x6b\xc8\x08\x3c\xad\x55\xc7\x40\x7d\x5d\x4b\xb5\xde\xcf\x7f\x24\x01\x00\x6b\x6a\x3a\xc0\x13\xa1\xb0\xbf\x0a\x4f\x84\x6c\x9c\x55\x3c\x11\xda\x7c\xc5\x13\x81\x7d\xba\x82\xae\x14\xda\x57\x41\x57\xb2\x71\x56\xf1\x44\xe0\x68\xaa\xe2\x89\xd0\xc6\x02\xb2\x5a\x68\x79\x55\x1c\x11\x59\xbf\x83\x23\x82\xf8\x8c\x2a\x8e\x08\x8c\x01\x55\x1c\x11\x68\x95\xb5\x7d\xe4\x54\x06\x5f\x6d\x1f\x39\x15\x0b\x55\x15\xae\xf7\xe7\x3f\x98\x17\x2a\x28\x6b\x0d\x5d\x8f\xdf\xeb\x8c\x56\xcf\x9f\xff\xa0\xfd\x56\xd0\xd6\x22\x06\xba\xca\x81\xf4\xe7\xba\x36\x2a\x10\xd7\xd2\x01\xda\x3f\x1c\x18\x47\xb3\x5f\x61\x79\xb9\x6e\xd1\x99\xd5\x8e\x8c\x9a\xaf\x4a\x63\xfa\x73\x5d\x1b\x44\x47\xce\xab\x1e\xfb\x9c\x95\xc9\xa5\xba\x37\xc9\x59\x02\xfe\xb4\x40\x65\x1b\x94\x58\x41\x65\x32\xbb\xd5\xf1\x91\xed\x12\x7b\x51\xe5\x51\xfa\xf3\x1f\x8d\x3c\x08\x4c\xc6\xcc\x0a\x02\x13\xe5\x5b\x1d\xda\x56\xdb\x5e\x98\x2c\xea\xf8\xc8\x76\x75\xe0\x3a\x12\x33\x51\x95\x55\x90\x98\x1c\x6b\x15\x24\xa6\xf0\xbf\x0a\x12\x93\x6d\xb6\x3a\x12\x33\x31\xae\x57\x90\xd8\xd6\x1a\x15\xb3\xe0\x9f\xf7\x4a\x05\x02\x8d\x29\xfc\xaf\x82\xc6\x14\xf0\x57\xe5\x39\xfa\x73\x37\x68\xbc\x82\xc8\x94\xc6\x54\x41\x64\xef\x51\x08\x22\x13\xb3\x53\x05\x91\xc9\x81\x5f\x1d\x91\x55\x19\x64\x2a\x68\x4c\xc1\x80\x15\x34\xb6\x75\xc0\x83\xc6\xb6\xc6\xcf\xd1\x98\x25\xec\xfe\x75\xee\x4f\x7f\x8e\x7a\x70\x9c\xdc\x4f\xc7\x28\x88\xec\xe8\x30\x06\x91\x1d\xc9\x09\x22\xa3\xe8\xba\x55\x10\xd9\x89\xba\x96\x68\x31\x12\x20\xb2\xa3\xd5\xb5\x20\x2c\xd1\x31\x01\x1a\x3b\x98\x29\xab\xa3\x2d\x4f\x8a\xf6\x96\xcb\x71\xa4\x90\x39\xda\xb2\x04\x92\xad\x8e\xb6\xaa\x1b\x3c\xff\xff\x56\xef\x8e\xa6\x7a\x93\x1e\x79\x68\xe9\x75\x2e\xde\xd5\x23\x1d\xa0\x25\xc3\x68\x52\xf7\xf3\x7e\x9a\xa3\x69\x20\x67\xd3\x9f\xff\x60\xc5\xab\x80\xb1\x8b\x7b\xa3\x02\xc6\x64\x2b\xad\xb0\x00\x8a\x25\xb7\xee\xf1\x75\x30\xf0\x6e\x07\x64\x55\xb6\xd4\x0a\x20\xbb\x98\x1a\x2a\x80\x4c\xc1\x87\x75\x6b\xeb\xe8\x5b\xee\x9a\xba\xe9\x37\x96\xe7\x0a\x60\xbb\x40\xb4\x0a\x60\xbb\x3a\x9a\x00\x6c\xca\x34\xad\x70\x45\xc8\x5e\x5a\xe1\x8a\x10\x55\x41\x85\x2b\x22\x00\x5d\x2b\x5c\x11\x41\x03\x08\x57\x44\x20\x09\xa8\xc2\x15\x21\xcb\x69\x85\x2b\x22\xe8\x78\x81\x2b\x22\x48\x6a\xb8\x22\x02\x86\x80\x0a\x57\x44\x90\x8c\x70\x45\x88\xac\xab\xc2\x15\x11\x34\xf1\xe1\x8a\x08\x44\xe9\xd4\x1b\x5e\xf9\xdf\x69\x02\x5f\x44\xd0\x81\x02\x5f\x44\x90\xb6\x09\x5f\x44\xd0\x74\x77\x90\xd7\x44\x99\x5b\x2f\x32\x6a\xab\x82\x2b\x22\x68\x73\x70\x24\xe7\xb9\x52\xde\x72\x19\x45\xce\x5a\x21\x84\x50\x00\x62\x75\x14\xe7\x59\x53\xde\x72\x19\x45\x76\x5b\x21\x83\x10\xa3\x73\xbd\x70\xe5\xe8\x2b\xde\xcf\x38\x2a\x7b\xb0\x3a\x8a\x6b\xe2\x63\x6e\x8e\xe2\x3c\xa3\xc8\x5b\x70\xe9\x70\x98\x34\x77\x65\x99\xb1\xf4\x9a\xbb\xb2\x3c\x63\xc7\x5b\xc8\x48\xbe\x72\x73\x84\xe7\x19\x37\xde\x72\x19\x95\xad\xda\x1c\xdd\xb5\x67\xea\x1a\x32\x32\xdf\x5b\x40\x46\xe6\x54\x73\x54\xd7\xc4\x37\xdd\x02\x32\x12\x3f\xd2\x82\x8e\x80\xb1\xd7\x56\xcf\x91\x13\x05\xa9\xbd\xc8\x6e\xec\xc5\x41\xdc\x02\x72\x82\x82\xda\x03\x67\x10\x0e\xd9\xf6\x20\x27\xee\xdb\xa6\x60\xbf\x3c\xf6\x2e\xfa\x8f\x8f\x67\x24\x9e\xaa\x29\x09\xea\xcf\x75\xbd\xfb\x81\x3b\x08\x24\xd4\x1e\xb8\x83\x24\xfd\xf3\xe5\x0e\x62\xec\xda\x03\x77\x50\x52\x4f\x5c\xe6\x68\xfa\xed\xa0\xc5\x77\x54\x82\xd4\x9f\xdf\xb2\x19\x36\xf7\x75\x79\x82\x82\xb7\x36\x2d\x24\x7c\xe0\x16\x42\x49\x68\xcf\xfd\xfc\x16\xd3\x4c\x73\xe4\xd7\x94\xa1\xdb\x1c\xf9\xb5\x88\x9e\xde\xe2\x47\xe6\x83\x09\xa6\x45\xc6\x17\xaf\x5e\x73\xe4\xd7\x54\x26\xa1\x45\xe4\xe5\xf8\x69\x11\x79\x9b\x9e\x54\x69\xd1\xa7\x88\xac\x5d\xd7\xe0\x49\xd2\xd8\x47\xf1\x24\xf1\x55\x23\x3c\x49\x53\xbf\x43\x96\xa9\xbe\xfa\xd8\x45\x82\x8f\x5b\x42\x0e\x94\x85\x96\x90\x83\x60\x91\x96\xe0\x42\xe2\xf8\x6d\x09\x2e\x24\x62\xa9\x5a\x82\x0b\x09\x9c\xd2\x12\x5c\x48\xac\x82\x96\xe0\x42\x4a\xff\xa2\xcf\x6a\x0e\xf8\x9a\x28\xed\x9b\x03\xbe\xa6\x98\xd2\xe6\x80\xaf\x25\x0d\x40\x62\xa8\x80\x05\x2d\x31\x54\x5b\x77\x1e\xae\xf1\x59\x0c\xaa\x27\x74\xda\x66\x50\x3d\x71\x1a\x37\x83\xea\x09\xd3\x48\x33\xc4\x23\x0e\xa1\x19\xe2\xe9\x99\x86\x78\x9a\x92\x86\x78\x98\x2d\x9a\x21\xde\xd5\x53\xa0\x7a\x7a\x74\x4d\xda\xd6\xdc\xab\xaa\x3f\xd0\x3d\x69\xa1\x1b\x74\x4f\x49\xbf\x85\xee\x09\x58\xd8\x1c\xb4\x35\xd3\x94\x7a\xdd\x5d\xf3\xb3\x28\x1d\xb8\x35\x43\x93\x6c\x0e\xdc\x9a\xe1\x69\x68\x0e\xdc\x9a\x55\xfd\xd6\xfb\x2b\xcb\x6f\x73\xe0\xe6\x01\xbc\xde\xa2\xbf\xe8\x2f\x2d\x43\x4d\x85\x3e\xda\x32\x7d\xd5\x57\x86\x43\x22\x6b\xfb\xca\xd0\x4f\x61\x29\x6c\x25\xbc\xbd\x93\x66\xdb\x1c\x81\x35\xc3\x5a\xd8\x0a\xb2\x68\xbb\x70\x04\xd6\x94\x54\xdc\x0a\x72\x80\xac\x5a\x41\x8e\xab\x3b\xa1\x9f\xd2\xb4\x2a\x50\x4c\x45\xb5\xa0\x98\xd2\xd7\x2a\x50\x4c\x69\x53\x01\x75\x65\x53\xef\xfc\xbb\x66\x82\xdd\x5a\xfd\xf4\xf5\x62\x06\x69\x8e\xae\x5a\xe6\x50\x6b\x15\xaa\x2c\x2d\xc7\x0a\x55\x96\x96\x63\x85\x2a\x4b\x5f\xb2\x42\x95\x85\xb2\xd0\x2a\x7d\xd5\x72\xac\x50\x65\x69\xa6\x55\xa8\xb2\xba\x9e\xd2\x3f\x3d\x20\x63\xb2\x39\x82\x6a\x59\x4b\xb2\xd2\x5f\x8c\x0d\xcd\x11\x54\xcb\xe0\xa9\xd6\xe8\x2b\xae\xf4\xd6\xe8\x2b\xde\x86\xd6\xe8\x2b\x47\x63\x6b\xf4\xf5\xaa\x05\x1d\x16\x8e\xd5\xd6\xa0\xc3\x7a\xf4\x3b\xe8\xb0\xb4\x85\x36\x38\xad\xa3\xae\x75\x5a\x7c\x29\x47\x47\xad\x70\xfc\x35\x25\x33\xe5\xb5\x45\xd3\xdc\x1c\x21\xb5\xa2\xf9\xec\x08\xa9\xc9\xb0\xda\x5e\x84\xb4\xf6\x7e\xaf\xfb\x1c\x52\x46\x71\xeb\xd0\x7e\xe1\xe5\x68\x1d\xda\x2f\x90\x53\xeb\xd0\x7e\x61\xdd\x6e\x1d\xda\xaf\xa6\x96\xd1\xe2\x99\x1d\x59\x70\xa5\x36\x28\xf1\xc4\x20\xde\xa0\xc4\x2b\x3a\x10\xa1\xc4\x2b\x3a\x10\xa1\xc4\x2b\x5b\xd7\x90\x03\x95\xa3\x41\x89\x57\xb6\xde\x07\x7d\xd9\xd1\xef\x90\x41\xdf\xdc\x11\x90\x29\xfc\xb8\x41\x97\x57\x31\x52\x35\xe8\xf2\x2a\xc8\xbb\x41\x97\x57\x51\x16\x9b\xfb\xa5\x5a\x45\x0f\x6f\xd0\xe5\x55\xc2\x2d\x1b\x74\x79\x55\xe3\xe1\xa8\xa8\x55\xb0\x5b\x83\x2a\xaf\x26\x5d\xeb\xb4\x98\x29\x8e\x86\x5a\xd5\xd7\x85\x46\xaf\x6a\x45\x40\xa3\x57\xb5\x22\xa0\xd1\x93\x99\xb5\x41\x95\x57\x6b\xfc\xd7\x76\x0d\x8b\x9e\xac\xaf\x4d\x61\x74\x79\x6d\xf1\x11\xb6\x17\x0c\x7d\xa2\x61\x1b\x6c\x7a\x15\x2d\xb0\xc1\xa6\x57\x35\x70\xb0\xe9\xd5\xa6\xdf\x22\xa6\x16\x13\x6c\x7a\x15\x8b\x77\x13\xa7\xc3\x9f\xe7\x62\x65\x6c\x0e\x88\x3c\xce\xca\x5b\x88\xaa\x6d\x4b\x9c\x0e\x79\xef\xa5\xcf\x0b\xab\x9e\xb2\xea\x1a\xac\x7a\x75\xe9\x6e\x1f\xce\xaa\xe5\xb5\xc2\xe7\xb7\xd2\x21\x16\x32\x6b\xf0\x61\xce\x93\x2d\xb8\xc1\x9c\xd7\x1e\x5d\x73\x79\x1a\x49\xf9\x0d\xe6\xbc\x86\x69\xa0\xc1\x9c\xd7\x88\x64\x69\x30\xe7\x35\x2d\x13\x07\x45\x26\x97\x48\x83\x39\xaf\x99\xde\x00\xe3\x9c\x06\x6a\x7d\x19\xe7\x74\xdc\xac\xf3\xfd\x0f\x0b\xd6\x11\x50\x6b\xd2\x32\xf7\x47\x9e\xa3\x29\x03\xbb\x5e\xd3\xb6\x09\xbb\x5e\xd3\x77\x86\x5d\xaf\x69\x53\x72\x37\x55\x6b\x4b\xd7\xf2\xe7\x49\x1a\x23\x18\xf6\x9a\x16\x10\x0c\x7b\x4d\xc7\x83\x23\x27\x93\x97\xa4\x39\x72\x6a\x3d\xa8\x35\xde\x27\x5d\x2d\x06\x58\xf6\x3a\x4e\x9d\xb6\x3f\xe3\x27\x83\x45\x73\xf4\xd4\xc4\x72\xdd\xc4\xb2\x27\xad\x4e\x2c\x7b\x1a\xad\xf3\x91\x57\x91\x31\x4d\x4c\x7b\x45\x2d\x98\xf6\x34\x03\x41\x4f\x1d\x7c\xd7\x40\x4f\x4a\x7f\x6e\xa0\x27\x05\x9f\x36\xd0\x53\x97\x36\x07\x7a\xea\x18\x68\x1a\xe8\x49\x14\xa9\xcd\xd1\x93\xc9\x73\xd3\x40\x4f\x0a\x1c\x6d\xa0\xa7\x2e\x3d\x19\xf4\xd4\xa5\x27\x3b\x7a\x32\x79\x75\x1a\xe8\x49\x81\xa3\x0d\xf4\x34\x34\xc2\x2f\x7a\x3a\x7b\x0b\x21\x80\x9e\x86\x36\x0c\xd0\xd3\x48\xba\x06\x9b\x20\xf8\xb8\x81\x9e\x86\xbe\x1d\xe8\x69\xe0\x00\x6e\xa0\x27\x19\x0a\x1a\x4c\x7b\x63\xe8\x77\x2e\xa3\xec\xbb\x0d\xf4\x34\xf4\x35\x1c\x3d\x35\xc5\xf7\x37\xd0\xd3\x20\xba\xa7\xdd\xf5\xf6\x55\x1c\x89\x0d\x04\x35\x41\xac\xcd\x11\x54\x9b\xda\x30\x41\x4f\x93\xa3\xa5\x3b\x7a\x6a\xca\x22\xe8\xa0\x27\x51\x99\x75\xd0\x53\x0d\xba\xe6\x32\x4e\x36\xb7\x0e\x7a\x12\xcd\x59\x77\xf4\xd4\x26\x3a\x7e\x07\x3d\x29\x14\xb3\x83\x9e\x26\x3b\x50\x07\x21\x2d\x8e\xaa\x1e\xe6\xdb\xf3\xcb\x61\xd2\x03\xcc\x88\x49\x3d\xd8\xdf\xeb\x7a\xd3\xf9\xfc\x87\x83\xbc\x83\x92\x64\x84\xec\xa0\xa4\x85\xfa\xd2\x41\x49\x32\x42\x76\x47\x49\x4d\x86\xc6\x0e\x42\x52\x90\x65\x7f\x11\xd2\xdd\x8b\x63\xa6\x83\x90\x16\xeb\xb0\x83\x90\x16\x8e\xfb\xee\x08\xa9\xad\xae\x27\xf9\x3a\xac\xe5\x5f\x9c\xe3\x1d\xe0\xb4\xd0\x9a\x3b\xc0\x69\x01\x16\xbb\x03\xa7\x26\x92\xdb\xfe\xac\xb7\x3b\x9b\x6d\xa3\x3f\x90\x44\xa2\xcf\x75\xb1\x4a\xe4\xbb\x65\x65\xea\x0f\x44\x91\xb8\xbd\x3a\xc0\x49\x46\x93\x0e\x70\x52\x10\x61\x77\xe0\xd4\x64\xe7\xea\x11\xa2\x48\x0d\xb2\x83\x26\x53\x4a\x6e\x07\x34\xed\xb7\x05\x49\x24\x61\x4f\x3d\x02\x12\x4b\xd8\x4a\xab\xee\x00\x27\x6d\x91\xdd\x5d\x66\xed\x3c\xba\xdb\x87\x55\x76\xae\x1e\xf7\xe7\xb7\xb8\xbe\xba\x83\x27\xc7\xa1\xde\x72\x59\x14\xbc\xd8\x01\x4f\x8a\x2b\xef\x80\xa7\x03\x40\xea\x09\xd2\x4b\x36\x9e\x9e\x90\x45\x43\x0a\xb0\x3a\x6c\xc2\x1d\x60\xa5\x88\xdf\x0e\xb0\x12\x13\x5d\x07\x58\x1d\xac\xf0\x1d\x60\x75\xd4\xb3\xd4\xdf\xbe\x9e\xa6\xb7\x0c\xa8\x33\xf5\xdb\xf9\xb9\xce\x06\xd4\x13\xcc\x96\xe8\x84\xdd\x51\x54\x53\x8e\x6c\x77\x14\xd5\x44\x19\xd6\xdd\x6d\xd6\x2e\xba\x44\x77\xb7\x59\xbb\x1c\x4a\x1d\x84\x25\xf2\xb5\x6e\xa8\x01\xe5\x79\xed\xb4\x1d\x94\x75\x31\x04\x75\x50\x96\x1c\x61\xdd\xf2\xe7\x6e\x3c\x1d\x1d\xa4\x75\x39\x9c\x3b\x48\xeb\x62\x5f\xee\x8e\xb4\xee\x88\xfa\x2d\x2c\x9e\x4b\xbd\x18\xb4\xf8\xa2\xa0\x2c\xa5\x05\x75\x50\x96\x52\x76\x3a\x28\x4b\xec\xeb\xdd\x90\xf3\xea\x1a\x72\x62\x32\xea\x30\xfd\x05\xc9\x91\x61\xf0\xe4\x58\xea\xf9\x23\xe7\x2e\xba\xdb\x99\x17\x65\x36\xeb\x19\x86\x4f\x62\x6f\xba\x23\xb0\x1e\xd8\xa0\xbb\x23\xb0\x1e\x9a\x9e\xdb\x61\x0d\xe5\xdb\x3a\x02\xeb\x81\x03\xa3\x3b\x02\x73\x4d\xc9\x5b\x0b\x0e\x51\xdd\x09\x13\x29\xf6\xe2\x9e\x61\x22\x5d\x7a\x3b\x4c\xa4\x5a\x47\x42\x67\xe5\x7f\x8c\xbd\x3b\x96\xfc\x3c\xac\xc4\x97\x7b\x35\x7c\x88\x0f\x9c\xe3\xcd\xf0\xe9\xcc\x81\xf7\x1f\xf8\x0c\x7e\xd5\xd3\xdd\xe3\x7b\xbf\xbf\x83\x09\xc4\x51\x4b\x84\x44\x91\x05\x10\xa8\x8a\x2f\x1e\x19\xab\xd8\x42\xd2\x9c\xb9\x77\x66\x01\xd0\x63\x2a\xab\xfa\x39\x1b\x2f\xcc\x2a\xb6\xe0\x49\x58\x85\xad\x94\x90\xa3\x55\xd8\x4a\x35\x86\x2a\x76\xb2\xf8\x59\x85\xad\x94\xd0\x8e\x55\xd8\x4a\xf5\x55\x56\xd8\x4a\xa3\x7a\x08\x5b\x29\x1e\x88\xf9\xbe\x98\x45\x3d\x69\xdf\x17\x33\xe9\x7c\x99\x7b\x67\x26\xe5\x24\x73\xef\xcc\xa4\x67\x65\xee\x9d\x59\xa4\x18\xcb\xdc\x3b\x33\x89\x9a\x59\xa3\x9f\x7a\x03\x0d\x56\x55\x4d\xe5\xee\x9d\x59\xd4\x93\x6c\xfa\x4e\xd2\xde\x8f\x7e\xbb\xde\x2d\x3a\x87\xfe\x12\xf0\x32\xf7\xd0\x2c\x01\x68\x4c\x59\x80\x3f\x67\x6b\x64\xb8\x97\x66\x4a\x2e\x34\xf7\xd2\x2c\xe9\xeb\x71\x2f\xcd\xa4\x9f\x69\xee\xa5\x99\xea\x81\xcd\xbd\x34\x93\x90\xa2\xb9\x97\x66\x12\x7c\x34\xd1\x4f\xfc\xdc\xa5\xff\x2b\xc3\xc5\xdc\x51\x33\xc5\x94\xcc\x9d\x34\x93\x56\xa4\xb9\x93\x66\xd2\x6e\xb4\x8e\x29\x84\x03\xcc\x1d\x34\x53\x61\xb1\xb9\x83\x66\xd2\xe7\x33\x77\xd0\x2c\x91\x35\x6e\x86\x19\x44\x9f\xcc\xe8\xaa\x3e\x5b\x77\xc2\x2c\x81\xb0\xcd\x9d\x30\x93\xc6\xa2\xb9\x13\x66\x19\x64\x63\xf6\xfb\xe8\x15\xcf\x33\xfb\x7d\xf4\x4a\xa9\x34\xa3\xbf\xc4\xa4\xcc\x20\xb6\x7d\xfd\xef\xfe\x9e\x4d\x3a\x95\x89\x59\xef\xa7\x45\x1f\xe6\x80\xfc\x56\xe8\x60\x40\x7e\xcb\x26\x91\xb9\x53\x66\x4a\x3b\x34\x77\xca\x2c\xbf\xae\x54\x38\xd2\x55\x2a\x14\xba\xfa\x5f\xfb\xbd\x8b\x9e\xd5\xf8\x7d\x3d\x47\x53\x92\x3b\x67\x96\xd9\x36\xb2\x81\xdd\xc2\x1a\xee\x9c\x59\xa6\x60\xdc\xdc\x39\xb3\xac\x29\xdf\x9d\x33\xcb\x9a\xa0\xc4\x1a\xf1\x73\x5d\xa2\xb1\x36\xde\x36\x13\x18\x32\x77\xe0\x2c\x6b\x82\x9b\xd8\x2b\x0c\x32\x45\xf6\xcb\xc0\x9d\xd8\x7b\xf4\x3f\xc8\x7e\xb5\x30\xbb\x07\x66\x59\x53\xa1\x7b\x60\xf6\xe0\xb1\x98\x7b\x60\xf6\x64\xfd\x6f\xbc\x7a\xf0\x9a\xb6\xe7\xef\x7b\xbc\x04\x79\xcc\xbd\x30\x93\x04\x85\xb9\x07\x66\x8f\x16\xbc\x09\xb1\xaf\x3e\x54\xf7\xc0\x4c\x41\x15\x5b\x9a\x66\xf3\x16\x53\x88\xad\xfc\xdb\xa2\x37\xe3\x5e\x98\x15\x4d\x76\x4a\x08\xfc\xf9\xbf\xfa\x2e\x05\xab\x9a\xf7\xc1\xa5\x36\xf7\xc6\xac\x12\xb7\xb7\x35\x7e\xff\xaf\x85\xdc\xbd\x2e\x53\xe0\xc2\xdc\xeb\xb2\xaa\x8f\x52\x5e\xd7\xcf\xd9\xfa\x82\xdc\xeb\xb2\xaa\x45\x57\x8c\x7a\x3f\xff\xd7\x34\xe8\x5e\x97\x55\xb6\xb9\x4c\xfb\x4e\x35\xef\xab\xa7\xe9\x5e\xd7\x23\xe6\x23\x73\xaf\xcb\x14\xb2\x30\xf7\xba\xac\x4e\xfd\xb6\x70\xc4\x53\x74\x8f\xeb\x31\x4d\xd2\xbb\xfd\x5e\x97\xa0\x92\xb9\xd7\x65\x75\xeb\xc8\x38\xd2\xd9\x83\x23\x5d\xc9\x97\x99\xa1\x89\xda\x3d\x2e\x6b\x82\x47\xee\x6d\x99\x02\x0e\xe6\xde\xd6\x33\xf4\xbd\xb9\xb7\x65\x4d\x4f\xcd\xbd\x2d\x6b\x78\x79\xe6\x9e\x96\x49\x29\xc9\xdc\xd3\xb2\xa6\x69\xfb\x40\xc2\x4c\xd9\x8c\x1d\x48\x98\xd9\x9a\xb5\xa3\xf7\xf7\xec\x23\x40\x79\xea\x6f\xcb\xd4\xb5\x21\x63\x36\xdd\x17\x32\x66\x7d\x2f\xee\x55\x99\xbc\x7f\x3b\xd8\x42\x22\x88\x1d\x6c\xd9\xba\xca\xe1\x08\x3b\x0f\xb6\xe8\x69\x5d\x6c\x21\xb0\x66\x17\x5b\xf4\x45\xb9\x47\x65\xa2\x30\x33\xf7\xa8\x4c\x79\x5b\xe6\x1e\x95\x75\x3d\x3b\xf7\xa8\xec\x05\x16\xdd\xa3\x7a\x06\xfe\xb4\x29\xb3\xb0\x96\xbd\xb4\xf4\x5f\x88\xa3\xc9\x7e\xb2\x0b\x71\xb4\x9e\x9f\x7b\x4e\xd6\xeb\xbf\x48\x73\x0d\x7e\xf2\xae\x69\x19\x7e\x72\xa9\x89\x18\xfc\xe4\xd2\x1e\x19\x21\xbc\x3a\xb0\xd9\x5a\x1c\x70\x94\x77\x1c\xb9\x01\x47\x79\x27\xaf\x60\xc0\x51\xde\x97\xfe\x57\x39\x9a\x1c\xf9\xeb\xe8\x3c\xac\xe1\xdb\x4e\xd6\x09\x91\x0c\xdf\x76\xb2\x4e\x88\x64\xc0\x51\xde\xaf\xfe\xe7\x7d\x35\x10\xe7\x70\x87\xe9\x91\xce\xc7\x08\xf7\xd5\xbb\xc3\x46\xdc\xd0\xd6\x51\x2d\xfb\xb2\x19\x34\x54\x00\xf5\xd3\x52\x74\x8e\xf7\xc4\x08\x6e\x0c\xb8\xc5\xed\xd1\x11\xdc\xdb\xac\xe0\x03\x6e\x71\x03\x1b\x0f\xb8\xc5\xad\xea\x2a\xfe\x9c\x0c\xd2\xd7\x01\xb7\xb8\x11\x13\x1f\x70\x8b\x1b\x9f\xe0\x80\x5b\xdc\xc8\x0b\x1f\x70\x8b\x4b\xe3\x6f\xc0\x2d\x2e\x1d\x95\x01\xb7\xb8\xe1\xcb\x0c\xb8\xc5\x45\x7d\x36\x5e\x1e\x4a\xdd\x12\x95\x1a\xf0\x8b\x9b\x2c\x87\x5f\xdc\xae\x7e\x3b\x38\x5a\x1c\xb9\x8d\x4a\x1e\x1b\xf0\x8b\x2b\x50\x30\xc4\x2f\x1e\xf5\x3f\xf8\xc5\x93\xae\x09\xbf\xb8\x9e\x94\xf8\xc5\xd9\x6b\x19\xe2\x17\x27\x89\x72\xc0\x2f\xae\x40\xc0\x70\xcf\xe5\x99\x1a\x15\xee\xb9\xd8\x20\x4c\x31\xdc\x73\x79\x94\xf9\x33\xe0\x17\x57\x58\x60\xb8\xe7\xf2\xcc\xad\xdf\x75\xfe\x87\x45\x2f\xcf\xa5\xee\xd3\xf4\x7f\xb7\x51\xf5\xa2\x03\x8e\x71\x55\x88\x0e\x38\xc6\xc7\xeb\x4a\xd8\x08\xb6\x1f\x70\x8c\x8f\xa3\x33\xb1\x11\xa8\x31\x1e\x6c\xa4\x10\x69\xc0\x3f\x3e\xc1\xf6\xe3\x81\x43\x9d\x25\x66\x3c\x70\xa8\x93\xc7\x32\xe0\x26\x9f\x7c\xc4\x03\x6e\x72\x85\x21\x06\xdc\xe4\x13\x2f\x69\xc0\x4d\xae\xac\xb0\xe1\xde\xca\xb3\xf4\xbc\xe1\x26\x9f\x8f\xce\x84\x43\x9d\x0d\xc2\xf1\xc0\xa1\x0e\xce\x1b\x78\x1d\x53\xe3\x0d\xaf\x43\x04\x69\xe3\xe5\x75\xb4\x2d\x05\xb0\x81\xd7\x31\x01\x5e\x03\xaf\x63\x12\x18\x18\x85\xbe\x32\x15\x8e\x42\x5f\xf5\xed\xe1\x91\xcc\xad\x33\xe1\x7b\x67\x39\x18\x78\x24\xca\xb2\x1a\x78\x24\x93\x85\x7c\x14\xfa\x7a\x74\xcd\xf5\xea\x8f\x42\x90\xa3\xec\xdf\x96\xae\xdf\x9f\xdf\x16\xf0\xf4\xc0\x3b\x51\x16\xfd\x70\x7f\xc3\xc4\xfd\x32\xf0\x35\x16\x1b\xbc\x03\x5f\x43\x04\x6d\x43\x79\x78\x3f\x57\x22\xff\x69\xe0\x6f\x2c\x8d\x62\xcf\xc3\xb3\x85\xdf\x30\x7c\xb7\xc8\x14\x6e\x19\xf8\x22\x8b\xdd\xb4\x21\x8a\xf0\x9f\x2b\x69\x3c\xd4\x77\x2f\xf5\x64\xf1\x3b\x16\xfe\xfb\xf0\x5d\x23\x5b\xfa\x0a\x1a\xec\xf5\x2c\x60\x03\x9f\x64\xe1\xeb\x0d\x7c\x12\x91\xc6\x8d\x46\x2f\x34\xae\x1b\xbd\x68\xff\x2a\xe8\x1f\xee\x84\x98\x34\x36\x87\x3b\x20\xa6\x14\xad\x81\xf3\xb1\xae\x2e\xe9\x43\x7e\x07\x75\xe5\xbe\xcc\x50\x5e\xf9\xf0\xe4\x3a\x53\x0d\xe5\x10\xc7\x5d\xed\x7b\x51\xdd\x35\x3a\x12\x01\x7a\xa0\xbd\xfc\xfe\x5f\xd3\x06\x4e\xc8\x06\xab\x0c\x77\x42\x9e\xb5\x75\x35\xe8\xf7\x1f\x9d\x09\xfd\xbe\x0c\xef\xd0\xef\x57\xfd\xee\x97\x7e\x7f\x69\x1a\xeb\xeb\xb7\xa5\xeb\x1c\xb7\x6b\x83\xb0\x07\xde\xc6\x26\x4e\x38\xf0\x36\x36\xe8\x7a\xf8\x76\x90\x89\x05\x6f\xf8\x76\x90\x6d\x4d\xc2\x78\x22\x1b\x97\x79\x18\x52\x02\x9a\x68\x0c\x5b\x34\x79\xe3\xa5\xec\xa5\xff\x61\x0b\xf8\x68\xe0\xa5\x88\xcb\x6e\xe0\xa5\x6c\x2d\x69\xee\xa5\x3c\x9b\x8d\x9c\xe1\x1e\x8a\x1d\x4d\xc0\x26\x19\x01\x2c\xc2\x3b\x39\x41\xf7\x43\x46\x40\x53\x87\x7b\x26\x26\x1a\xd9\x31\x44\x4b\xd0\xf7\xc1\x25\x1e\x78\x26\x87\x7a\xb9\x81\x67\x72\x70\x5f\x07\x9e\xc9\x31\xfd\xf6\xf7\x9d\x49\x8a\x6f\xe0\x9d\x1c\xd9\xf9\xf2\x4e\x6c\xbf\x3e\x0d\xf7\x4e\xec\xe0\xf0\x0f\x3c\x13\xa9\x2f\x0d\x3c\x13\x29\x9f\x8e\x81\xad\x4d\xbf\x5b\xfc\x8f\xe7\x80\x67\x72\xd9\x6e\x1a\xee\x99\x98\x54\x51\x87\x7b\x25\x26\xc2\xa7\x81\x47\x72\xd9\xda\x1b\x78\x24\x97\x80\xcf\xc0\x23\x51\xf8\x68\x68\xcf\xa8\xda\xde\xa0\xad\x81\x57\x72\xf5\x71\x49\x9e\xb7\xfe\xbc\x1a\x7a\xe8\xfb\x46\x76\x89\x95\x0e\xbc\x16\x65\x6c\x0d\xbc\x96\x4b\x7e\xd7\xd0\xbe\xd1\xcf\x6f\x35\x5d\xba\xe7\x92\x44\x37\x37\xdc\x6b\xc9\x15\xec\x36\x44\x5c\x37\x74\xa5\x4d\x7d\xa4\xce\x3c\x54\x6e\xe8\xe8\xb2\xe9\xc7\x94\xe8\x7b\x46\x8f\xe8\x95\x87\xef\x17\x3d\xb3\xe9\x7f\x8e\xf4\x17\x19\xdb\xc3\x3d\x99\x67\x09\x36\x2d\x24\x13\xb4\x20\x2d\xe4\x1f\xf0\x89\x86\xef\x17\x3d\x0a\xdb\x0d\x92\xe8\xee\xeb\x4c\xb4\x0f\x04\x89\x48\xa2\x53\xd8\x6e\xb8\xe7\xf2\xdc\xa4\xbb\x6f\x34\x13\x74\x3f\x69\x22\x60\xed\x42\x13\x01\x0c\x3d\x36\x9a\x08\x5a\xba\x21\xab\x0b\xe0\xdd\x01\x07\xb8\x82\x62\x03\x0e\x70\xd1\xcc\x0d\xf4\x75\x83\x66\x00\x68\xed\x82\x66\x00\xf8\xc1\x83\x46\x12\x24\xe0\xa1\xeb\x7e\xe8\x0c\xbc\xee\x8e\x26\xc2\xd0\xef\xa4\x31\x80\xed\xe8\xeb\x06\xf2\x53\x06\x24\xe0\x41\x23\x65\xa3\x2f\x70\x75\x15\x27\xe3\x93\xb4\xfa\x80\xd6\x3b\x52\xd5\x33\xdc\xff\x28\x51\xef\xe1\x48\x29\x00\xfb\x8e\x94\x02\x74\x84\x52\x80\x16\x54\xe8\xbc\x5d\x02\xf2\xbf\xa7\x6f\x98\xbe\xe3\xd2\xcf\x48\x15\x14\xca\x3e\x88\x08\x68\x0a\x85\xc9\x5b\x52\xff\x03\x26\xef\xa8\x0f\xf3\x20\x12\xc0\x76\xc8\x80\xc5\x3b\xc1\x4c\x31\x60\xf1\x4e\x6c\x2f\x0e\x58\xbc\x93\x5e\x3b\x4c\xdd\x29\xeb\x77\x88\x00\xe0\xcc\x0e\x98\xba\x25\xf5\x3b\x60\xea\x96\x30\xdb\x80\xa9\x3b\x51\x82\x34\x60\xe3\x56\xb2\xd1\x80\x8d\x3b\x69\x82\x81\x8d\x3b\x69\xe8\xc2\xc6\x9d\x58\x49\x67\x10\xf1\x7f\xe4\x08\x92\x7c\xa6\x8c\x09\x1b\xb7\xc2\x3d\x13\x36\xee\x8c\x53\x3e\xdd\xdf\x28\x12\x65\x9b\x01\xc2\x7f\x96\x9d\x19\x20\xfc\xcf\xfa\x1f\x84\xff\xe0\xa5\x09\x43\x77\xae\xfa\x9f\xdb\x90\x9b\xfa\x02\xd9\x3f\x9f\xdf\x0c\x90\xfd\x93\xf5\x31\x61\xee\x16\x8b\xdc\x74\x5f\xa4\x64\x72\x71\x27\xac\xdd\x79\xa8\x67\x88\x00\xe0\x84\x4f\xdf\xb8\x29\x99\x50\xc7\x84\xc3\x5b\x7c\x72\xd3\x37\x67\x8a\x6a\x3a\x67\x84\xe8\x3f\xe9\x77\x10\xfd\x67\xfd\x0e\x32\x7f\x3e\x9c\x19\x45\xe6\xdf\x38\x12\x99\xbf\x7e\x27\x32\x7f\xfd\x4e\x64\xfe\x93\x23\x91\xf9\x63\x1f\x7c\xdd\xca\xb2\x99\xf0\x75\x3f\xf8\x09\xd3\xfd\x96\x52\x18\x4b\x13\xbe\x6e\xe5\xf2\x4c\xf8\xba\x4b\xd4\xff\xdc\x86\xc2\x0e\xc8\x84\xaf\x5b\x15\x91\x13\xbe\xee\x82\xc3\x3f\xe1\xeb\x56\x5e\xcd\x84\xaf\xbb\x54\xfd\x0f\x76\x7b\x42\x5a\x13\xae\xee\xc2\xa6\xd4\x84\xab\xbb\xe8\x3d\xc0\xd5\x5d\x86\x8e\x60\xb6\x9f\x3a\x13\x16\x7f\x3e\xfe\x09\x8f\xb7\x2a\x17\x67\x86\xc5\x9f\x18\xff\xcc\xd8\x07\x76\x9b\x70\x7c\x17\xe2\xb3\x13\x8e\x6f\xd5\x2a\x4e\x38\xbe\x55\xab\x38\xe1\xf8\x56\x96\xcc\xcc\xd8\x47\x00\x65\xc2\xef\x2d\xae\xfa\x09\xbf\x77\x65\x31\x9f\x19\xe6\xfa\xa4\x3b\xc0\x5c\x9f\x75\x26\xcc\xf5\x44\xac\x27\xdc\xdf\xf5\xd1\xef\x60\xae\x07\x55\xce\x07\xe6\x7a\x96\xf5\xf9\xc0\x5c\x4f\x80\x75\xc2\xfb\x5d\xf1\x03\xe6\x03\x73\x3d\x53\xf2\x84\xf7\xbb\xb2\x1c\xcd\x07\x66\xfe\xa5\xdf\xc1\xcc\x8f\xa7\x39\xe1\xfc\xae\x7c\xa9\xf3\xc1\x06\x02\x53\xf3\x81\x99\x9f\xcc\xf0\xe9\x3e\x49\x91\x52\xea\x84\x0b\x5c\xd9\x2a\x13\x2e\x70\x6d\xb0\x4e\x48\xbd\x1b\x88\x7d\x42\xea\xdd\xf4\x24\x20\xf5\x6e\x2c\x39\xb3\xc0\xfd\xce\x82\x30\xdd\x1f\x29\x22\x6d\x9e\x05\x2e\x7b\x7d\xb7\x10\x76\x4b\x7d\x75\x42\xd8\xdd\x48\x7b\x9c\x10\x76\x37\x82\xd2\x13\xc2\x6e\xa9\x74\x4d\x08\xbb\xdb\xfe\x17\xa2\x9e\x70\x79\xb7\xa3\x8b\xf8\x2b\x52\xd4\x66\xc2\xe5\xdd\x99\x5a\x67\x81\x2e\x5e\x2f\xcc\x37\x4f\x4a\x67\x9f\x76\xc2\xf3\xdd\x65\x10\x3c\xdf\x5d\x26\xc0\xf3\xdd\x9b\xfe\x07\x95\x3c\x7b\xcb\x13\x9e\xef\xce\xa6\xde\x84\xe7\x5b\x99\x15\x13\x9e\x6f\xd3\x34\x08\xcf\xb7\x11\x6f\x9b\xf0\x7c\x1b\x1b\x1c\x13\x9e\x6f\x09\xb9\x4e\x78\xbe\x4d\x8f\x05\x9e\x6f\xd3\x94\x05\xcf\xb7\x4d\x5d\x05\x4e\xf6\xad\xff\xc1\xc9\xae\x17\x0d\xcf\xb7\x69\xc8\xc3\xf3\x3d\xf4\xf9\x35\xf1\x98\xeb\x7f\xf0\x98\x6b\x7a\x81\xe7\x7b\xe8\xc3\xf1\xcd\x96\x22\xb5\xee\x29\x8e\x6f\x0d\x10\x71\x7c\x27\xdd\xcf\xed\x9b\x59\xd7\x74\xfb\xa6\x86\xb5\xf8\xbf\xb7\x8e\xe0\xff\xd6\xd4\x8a\xfe\xd1\xd2\x53\x42\xff\x68\x69\x5a\x82\xff\x7b\x69\x08\xc2\xff\x2d\x42\xa3\x89\x36\xd2\xd2\x13\x14\xff\x37\x6e\xe0\x14\xff\xb7\xde\x1f\xba\x48\x4a\xaf\x9c\x70\x7f\x6f\x36\x75\xa6\xfb\x45\x45\x5c\x37\x13\xcd\xa4\xad\xe5\x08\x5e\xf0\xfd\xba\x83\xdb\xb7\xb5\xe4\x74\x71\x45\xf3\x1e\xd0\x4b\xda\x04\xd1\x66\x87\x2b\xfa\xea\x77\x6e\x9f\x74\x5e\x27\x3c\xe0\xe2\xba\x99\xbe\x2b\x53\x8e\xa6\x17\xdf\x95\x29\x07\xe7\x73\xa2\x93\x24\x4a\x87\x09\xff\xb7\x6a\x95\x27\xfc\xdf\x52\x52\x9c\xf0\x7f\xcb\xa3\x98\xe8\x23\xa9\x4e\x79\xc2\xfd\x7d\x34\x5e\xe0\xfe\x96\xff\x30\x0d\x8e\x68\x00\xcb\x34\x91\x23\xeb\x7f\x90\x23\x83\xa0\x27\x9c\xde\x57\x23\xc4\xa0\x20\xd6\x14\x02\x0d\x5d\x20\x04\x30\xa1\xa1\x0b\x9a\x06\xa1\xa1\x0b\x54\x1d\xce\x21\xfa\x61\x7a\x36\xa0\x1f\x5e\x3a\x13\xfa\x61\x36\xfa\xe7\x80\xb6\x17\xdf\x6b\x42\x41\x27\xa9\xc4\x09\x05\x5d\xd4\x08\x81\x82\x2e\x6a\x4c\x40\x41\x27\xd6\x92\x09\x05\x5d\xac\xba\x03\xf4\xc3\x4d\x77\x9f\x1c\xe9\x7e\xd0\x0f\xeb\x0b\x87\x82\x2e\x9a\xfe\x07\xfd\xb0\xbe\x15\x28\xe8\xc4\x4a\x32\xa1\xa0\x8b\xe4\x58\x4f\xf7\x7f\x6a\x24\x2c\x35\x27\xb4\xc4\x20\xda\xe9\xfe\x4f\x55\x36\xfc\x84\x76\x4e\xc5\x7a\xd3\x7d\x9f\x9a\x04\x20\xdc\xef\xa9\xe2\x2f\x99\x50\xd2\x25\x8d\x48\xf7\x7b\x6a\xd2\x64\x0a\x25\x5d\x22\xca\x3c\xa1\xa4\x4b\x43\xf7\x83\x8e\x78\xeb\x4c\xe8\x88\xaf\xee\x0e\xc5\xaf\x9e\xe7\x84\x2a\x57\xcf\x73\x42\xf1\xab\xe7\xe9\x3e\x4f\xcd\x8f\x8e\xa0\xf7\x7d\xe6\xbf\xa6\x64\x58\xec\x32\x6e\xe1\x84\xc5\x4e\xdb\x6d\x13\x16\xbb\x4c\x15\xd1\x84\xc5\x2e\xeb\xc1\xc3\x62\x97\x09\x1b\xcc\x05\xdb\x2f\x38\x75\xc2\x52\x97\x35\x04\x61\xa1\x7b\xa2\xce\x3c\x1c\x61\x3a\x2c\x74\x0f\xf1\xb9\xb9\xc5\xf6\x8b\xe9\x5b\x6c\xbf\x5c\x65\xc3\xf6\xab\xcf\x6f\xc3\xf6\xab\x47\xbd\x61\xfb\x85\x97\x6f\x6e\xd8\x7e\x49\x36\x9b\x1b\xb6\x5f\x2d\x16\xf0\xd4\x3d\x4d\x77\x10\xdb\xaf\xee\xee\xaf\xe1\xd1\x67\xb4\x61\xfb\xd5\xc7\x08\x93\xf7\xa3\x55\x1a\xb6\xba\xe7\xea\x77\xd0\xdd\x6a\xda\x85\xad\xae\x68\x8a\x84\xad\xae\x68\x25\x86\xad\xae\xe8\xf3\x83\xad\xae\x80\xfb\x27\x6c\x75\x2f\x74\x06\x5b\x5d\xa1\x60\x7a\xc2\x56\x57\xc8\xd7\x98\xb0\xd5\xc9\xd5\x9d\xb0\xd5\x69\xe3\x6d\xc2\xe2\x2d\x0d\xf8\x09\x53\x9d\xb4\x3b\xe7\x81\xce\x57\x0b\x10\x2c\xde\x55\x53\xa4\x7b\x39\x55\x1b\x5e\xd3\xbd\x9c\x5a\x49\x33\x9c\x70\xda\xbd\x90\x0d\x9c\x76\x8d\x0d\x92\x09\xa7\x9d\xe8\x06\x26\x9c\x76\xad\xe8\x08\x0a\x54\x4d\x75\xb0\x77\x37\x61\x51\xf8\xec\x1a\xc5\x17\x13\x3e\x3b\x95\xfa\x4f\xf8\xec\x9a\xb0\x36\x7c\x76\x6d\xea\x9a\x50\xbd\xca\x76\x98\xbb\x95\xde\x39\xe1\xb3\xeb\x6c\x5a\xce\x2b\xc6\x4d\xde\xca\x15\xe3\xa6\x5f\x65\xc1\x67\x27\x3e\xf7\x05\x73\xb7\xe1\x96\x2e\xf8\xec\x8c\xa5\x71\xc1\x67\x67\x4c\xf3\x0b\x3e\x3b\xab\xba\x0a\x6c\x9b\x43\x67\xc2\xb6\x39\x74\x26\xec\x94\x00\x81\x15\x60\xdb\x3c\xfa\x9d\xd8\x29\x23\x47\x30\x3a\x12\xbe\x5b\xf0\xdc\x8d\xa2\x33\x61\x73\xac\xea\x27\x6c\x8e\x4d\xbf\x83\xcd\x51\x77\x80\xcd\x7b\xe2\xe1\x2d\x78\xee\xb4\x8b\xb3\x20\xb3\x9b\x59\x67\xc2\x7c\xc8\xfe\xd3\x82\xa5\x7b\xb2\x91\xbf\x60\xe9\x9e\x2c\x86\x2b\xc2\x2b\xc8\x34\xb8\x20\xa8\x5b\x41\xff\x83\x57\x10\xe8\xb6\x20\xa8\xd3\xd2\xbf\x20\xa8\x53\x65\xef\x82\xa0\x6e\xf1\x35\x2e\x08\xea\x14\xcf\x5d\x10\xd4\x49\xfd\x7d\x41\x50\xb7\xf8\xfe\x16\x04\x75\x6b\xea\x4c\x78\x05\xd9\x6f\x58\x10\xd4\x49\x54\x62\xc1\xee\x2d\xd9\xba\x05\x41\x9d\x82\x8d\x0b\x76\xef\xcd\x97\xba\x60\xf7\x56\x8d\xe4\x82\xdd\xfb\x10\xea\x5c\xee\x1d\x55\x85\x02\x97\x88\xed\x58\x72\x16\xcc\xdf\xda\x6a\x5e\x30\x7f\x4b\x9d\x73\x41\xdf\x7d\x81\xad\x0b\x62\xbb\x4b\xac\x7c\x41\x6c\x77\x29\xe9\x5b\x10\xdb\xdd\xde\xfe\x31\x25\xaf\x2c\x3e\x38\x6e\x2e\xce\x3b\xa0\xf6\xca\xe2\x83\xe3\x85\xc1\xdc\x10\xf4\x1a\x60\x6e\x08\x49\xb7\x83\x43\xed\x51\x57\xe0\x50\x03\xfb\xae\x0c\x87\x9a\x06\x01\xec\x0c\x51\x8f\x05\x76\x06\xd5\xaf\x2d\xd8\x19\x22\xab\xd1\x82\x9d\x21\xe9\xc3\x81\x9d\x21\x31\xd5\x2d\xd8\x19\x12\x19\x1e\x0b\x76\x06\x85\x38\x96\x3b\x40\x4d\x21\x8e\xf5\x40\xaa\x05\x5a\x5a\x0f\xa4\x5a\x4d\xd7\x84\x54\xab\xeb\x7e\xde\xcf\x44\x74\x78\xc1\xca\xa0\xac\x95\x05\x2b\x43\x7a\xf5\xcc\x6d\x50\xc9\xed\x82\x95\x21\x13\x8f\x5f\xb0\x32\x64\xb2\x59\x16\xac\x0c\x52\xa1\x5f\x30\x2f\x64\x90\xd4\x82\x79\x21\x13\x07\x5d\x30\x2f\x48\xef\x70\xc1\xbc\xf0\x34\xfd\xce\x6d\x78\xf4\xf9\xc1\xbc\xf0\x6c\x1d\x41\xd4\x44\x6e\xc8\x82\x79\xe1\x51\x3f\xe1\xab\x7b\xae\x7a\x06\x29\x10\xab\xfb\x82\x75\xa1\x80\xd1\x17\xac\x0b\x45\x9f\x2d\x5c\x75\x05\xb4\xb4\xa0\x56\x28\x84\x4d\x16\xd4\x0a\x72\xde\x17\xd4\x0a\x85\xd0\xc8\x82\xa7\xae\x2c\xfd\x0f\x62\x23\x5c\xd6\x05\x4f\x5d\x01\xe9\x2f\xe8\x14\xca\xd6\xff\x20\x13\x3a\xba\x0a\x04\x4d\x47\x7d\x81\x4c\x48\x13\x43\x15\x99\x90\x7e\x07\xbb\x0e\x5e\xc7\x82\x6a\xa1\x82\xa0\x17\x54\x0b\x52\x91\x5f\x15\x76\x1d\x8d\x3a\xa8\x16\x24\x65\xb6\xa0\x5a\xa8\x2c\xda\x0b\xaa\x05\x71\x9e\x2f\xa8\x16\x94\x7f\xb1\xa0\x5a\x90\xa3\xbd\x1a\x2c\x42\x4c\xfa\xab\xc1\xba\xa3\x8f\x1f\x9a\x85\xaa\xc9\x0d\x9a\x85\x16\xf4\x3f\x98\x67\x48\x80\x5d\xd0\x2c\x34\x8d\x10\x68\x16\x1a\x8b\xcc\x6a\x62\xdb\x51\xcf\xc4\xb6\xa3\x6b\xc2\x4a\x93\x75\x15\x58\x69\x64\x1f\xf4\x0a\x4d\xf6\x41\xaf\xd0\xf0\x67\x57\x17\xc3\x0e\xbf\x83\x5e\xa1\x81\x84\x17\xf4\x0a\x4d\x63\x10\x7a\x05\xe9\x2f\x2d\xe8\x15\x9a\xbe\x15\x28\x14\x94\x8f\xb1\xba\xd8\x73\xf4\x3b\x6c\xd0\x68\x85\x42\xa1\x69\x0e\x81\x42\x41\x4b\xea\xea\xd8\xa0\x2f\x0e\x72\x3a\xe5\x6a\x2c\xc8\xe9\x9a\x9e\x35\xb4\x09\xca\xc7\x58\x90\xd3\x75\xf6\x36\x96\xc1\xaa\x83\x87\xb7\x0c\x36\x1a\xa0\xc6\x32\x58\x75\x34\x13\x41\xa5\xd0\x87\xae\x02\xab\xce\xd4\x11\xac\x3a\x80\x92\x05\x71\x5d\x57\xcf\x20\xae\x53\x6d\xc3\x82\x3e\xc1\x34\x06\x21\xae\x93\x2f\xbf\x0c\xb6\x19\x7d\x47\xd0\x23\xa8\x6e\x61\x41\x8f\x60\xe5\x5f\xb9\xd8\x0b\x3e\x3b\x23\x6a\xb2\xe0\xb3\x93\x46\xdb\x82\xcf\xee\xb5\xf2\xc3\x67\x67\xfa\xe0\x60\x53\x30\x90\xf0\x82\x4d\x61\x68\x92\x82\xcf\x6e\xa8\xd3\xf0\xd9\x0d\xad\x15\xf0\xd9\x8d\xac\xdf\x41\xde\xf2\xe8\x9a\x90\xd3\x74\x9d\x09\x39\x0d\xa8\x67\xc1\x67\x37\x4c\x67\x8a\xb8\x85\x21\x08\x9f\x9d\xd8\xa0\x17\x0c\x0a\x83\x40\xfd\x82\x41\x41\x7b\xe8\x0b\x3e\x3b\x91\xb9\x2f\xd8\x13\x26\x89\x40\x0b\xf6\x04\xed\x85\x2f\xd8\x13\x5e\x68\x02\xf6\x84\x89\x1b\xb5\x60\x4f\x98\x6c\x91\x2e\xd8\x13\xa4\x43\xbe\x60\x4f\x98\x57\x57\x81\xc9\xe4\xd5\x17\x18\x3e\x84\x34\xe0\xb2\x5b\xfa\xfc\xe0\xb2\xd3\xb6\xe9\x82\x39\x61\xe9\x65\xc2\x79\xa0\x5d\xde\x05\xe7\xc1\xd2\x0a\xbe\xe0\x1e\xa1\x5a\x6d\xc1\x3e\xb7\xd8\xea\x58\xb0\xcf\x2d\x22\xcb\x0b\x3e\x84\xb5\x74\x26\xbc\x1c\x1a\x66\xf0\x21\xac\xad\x33\xe1\xaf\x20\xa6\xbf\x20\x3d\xd8\x5a\x48\x20\x3d\xd8\x78\x47\x0b\x56\x3a\x95\x86\xac\x2d\xee\x0a\xce\xdc\xe2\xae\x60\xc8\xc3\x4a\xb7\xd5\x33\x58\xe9\xb6\x3e\x00\x88\x10\x5e\xc8\x66\xc3\x5b\x01\xb6\x5f\x1b\xde\x0a\x2d\x8d\xb0\xd2\x1d\x3d\x25\x48\x10\x94\x56\xb7\x20\x41\x38\x1a\x4b\x90\x20\x28\xeb\x7d\xb9\x5f\xd3\x0e\xf5\xab\x0b\x02\x84\x43\xf0\x6c\x89\x00\x01\x8f\x6b\x89\x00\x41\xb8\x58\x04\x08\x45\xff\x73\x1b\xae\x50\xb2\xfb\x35\x4d\x62\xd4\x0b\xc6\xba\xdb\xf5\x3b\xc8\x1c\xd8\x64\x5a\xa2\x2e\xc0\xd1\x5e\xa2\x2e\x10\xb4\x11\x75\x81\x96\x70\x51\x17\x68\xda\x75\x6f\xa5\x4b\x86\x7b\x89\xb6\x80\x4d\xad\x25\xda\x02\x7c\x97\x25\xda\x02\xb2\x81\x16\x85\x37\x01\x9f\x6e\xbd\x68\x0b\x78\x9e\x2f\xda\x02\xfa\x42\xe1\x4d\x20\xc9\x6f\x51\x78\xa3\x2d\xae\x25\xda\x02\x21\x6f\x0a\x6f\x24\x98\xbd\x44\x5b\xa0\x6f\x5a\xb4\x05\x45\xff\xa3\x9c\x5f\x4f\x9e\xa2\x1b\x09\x65\x2f\x51\x16\xf0\x94\x36\x45\x37\x11\x2f\x75\x8b\xb2\xc0\xf4\xbf\xc4\xd1\xe1\xc8\xed\x8b\x4b\xff\x83\xb2\x80\xac\x9c\x2d\x5a\x02\x16\xf4\x2d\x5a\x02\x16\xf4\x2d\x5a\x02\xc2\x88\x9b\xa2\x9b\x14\x74\x3f\x4a\xda\x83\xae\x49\xd9\x3a\x69\x09\x9b\x62\x9a\xc4\x2c\xb5\x29\xa6\x49\x8c\xac\x1d\x55\x7e\xbf\x39\xf2\x7e\x0a\xd6\x6d\xd1\x0d\x80\xa7\x77\xa4\xf4\x9e\x2f\x60\x8b\x6a\x60\xfc\x6b\x7b\x6f\x8b\x85\x80\xa9\x67\x53\x63\x93\xb6\x8e\xa8\xca\x3f\xea\x18\x0c\x04\x32\x56\x0c\x04\x32\x36\xaa\xa4\x5d\x47\xfe\x8a\x32\x1f\xc0\xa6\x88\x26\x5f\x1d\x1d\x8e\x16\x47\x94\x5e\x83\x14\x37\x05\x34\x0f\xd5\x3f\x9b\x02\x1a\x6d\x16\x6d\x0a\x68\x1e\xa6\xdd\x4d\x01\x8d\xf0\xdf\x86\x75\xa0\x10\xb3\xd9\x14\xd0\x14\xf5\x85\x02\x9a\x52\xf4\x3b\x4a\x99\x99\x42\x76\x52\x29\xb3\xee\x4e\x49\x2d\xd3\xe0\x4e\x94\xd4\xbe\xae\x49\x49\x2d\xae\xfc\xa6\xb0\x46\x59\xa5\x1b\x46\x02\xe1\x9c\x0d\x23\x81\x36\x0d\x36\x45\x35\x42\x36\x9b\xa2\x1a\xa9\xb4\xec\xac\x9a\x53\x6c\xa0\xa8\xa6\xb1\x29\xb9\x29\xaa\x69\x7c\x7e\x9b\xc2\x19\x65\x85\x6e\x0a\x67\x1a\x29\x7d\x3b\xab\x9e\x54\xff\xa3\x6c\x96\xfc\x91\x0d\xed\x80\x50\xc8\x86\x76\xa0\x31\xed\x6e\x0a\x66\xa4\x8a\xb2\x29\x98\xe9\x51\x7d\x71\x1b\xa4\x8a\xb2\x29\x98\xe9\x1a\x9e\x14\xcc\x48\xe7\x64\x53\x30\xd3\x49\x05\xdb\x50\x12\xa8\x48\x67\x53\x2c\x23\x9d\x93\x4d\xb1\x4c\x2f\xba\x0a\xf5\xa5\x55\x67\x52\x35\x4a\x76\xf9\xa6\xfc\xa5\x13\x2b\xdf\x94\xbf\x74\x8d\x3a\x4a\x5c\x0c\x37\x71\x53\xe2\x62\x84\x4d\xb6\xfb\x27\xdd\x74\x87\x42\x75\x24\xd8\x69\x43\x40\x20\xe0\xb1\x0b\xd5\x91\xe4\x52\x6c\xc8\x07\x04\x43\x36\xe4\x03\x36\x74\x4d\x55\x47\xea\x88\xea\xc8\xa9\x33\xa9\x8e\xd4\xc4\x00\xf9\x80\x64\x2c\x36\xe4\x03\x83\x49\x6a\x43\x3e\xa0\x00\xc4\x76\xdf\xa5\x0f\x70\xdc\x76\xdf\xa5\x0b\x78\xec\x42\x75\xa4\xe9\x88\xea\x48\x8a\x39\xb6\xfb\x2e\x7d\xe8\x6d\x42\x4a\x30\xc0\x94\x1b\x52\x02\x49\x4d\x6c\x48\x09\x06\x5b\x86\x1b\x52\x02\x69\xa8\x6e\x48\x09\x66\xd0\x35\xa9\x1a\xa4\x42\x77\x57\xaa\x06\xa3\xae\xe9\xf6\x4d\xbd\x69\x08\x0b\xa4\xa1\xba\x21\x2c\x90\x8a\xcc\x86\xb0\x60\xea\x7b\x77\xdf\xa5\x4f\x3d\x4f\x08\x0b\x94\x35\xb2\x2b\x55\x91\xfa\xfe\x50\x0c\x9a\x6c\x12\xee\xa6\x2a\x42\xde\x51\x53\x15\x21\xa3\x1c\x22\x83\xa5\x6f\x05\x22\x03\x41\x8d\x0d\x91\xc1\x82\x61\x67\x43\x64\x20\x2d\xcf\x0d\x91\x81\x02\x1e\x1b\x22\x83\xa5\xe7\x02\x91\x81\xc8\xc0\x76\xa3\x4c\x90\xa5\x6a\xbb\xef\xd2\xb5\x63\xb2\xdd\x77\xe9\x22\x0a\xdb\x10\x1c\xec\xa8\x33\x37\x47\xba\xa6\xdb\xb7\x35\xae\x1b\xe5\x81\x9a\x92\x3b\xe5\x81\xf6\x2f\xc6\xbf\x0d\x2f\x82\x44\x0c\x36\xbc\x08\x9b\x40\xc2\x86\x17\x61\x6b\xd0\xc1\x8b\xb0\xd9\x08\xdc\x70\x1f\x6c\x5c\xe4\x0d\xf7\x81\xd4\xc0\x37\xdc\x07\x47\xeb\x0f\xdc\x07\x47\x9f\x91\xbb\x35\x5d\x65\xd4\xdb\x5d\x97\x2e\xee\xe4\x0d\xaf\x81\xa4\x09\x36\xbc\x06\x47\x1f\x15\xbc\x06\x87\xf8\xd1\x36\x55\x05\xf2\xe0\xe1\x35\x50\xe9\xca\x86\xd7\x40\x3c\x5a\xdb\xa8\x0a\x04\x17\x6f\xa3\x2a\x50\xab\x18\x9c\x07\x47\xab\x34\x9c\x07\xd2\xab\xdf\x70\x1e\x88\x63\x6b\xc3\x79\x20\xb9\x83\x0d\xe7\xc1\x19\xba\x0a\x95\x8f\xb8\xba\x1b\xce\x03\xb1\xc6\x6d\x38\x0f\x94\x89\xbd\xe1\x3c\xb8\xa0\xa5\x3d\xa8\x06\xd4\xa4\x08\xe7\x81\x44\x0c\x36\x9c\x07\x37\xe9\x4c\x2a\x01\x89\xd5\x6d\x38\x0f\x24\xa8\xb0\xe1\x3c\x50\x32\xd9\x86\xf3\x40\xc4\x5d\x1b\xce\x03\xe9\x71\x6e\x38\x0f\x2e\x59\x07\x1b\xce\x03\x25\x93\x6d\x98\x0c\x24\x4b\xb0\x49\x49\x53\xe2\xd2\x26\x25\x2d\x68\xba\x26\x25\x2d\x80\x53\x37\x29\x69\x4a\x63\xda\xa4\xa4\x85\xa2\x33\xa9\xeb\xd3\xc4\x47\x3a\x5a\x20\x8a\xbf\x27\xb5\x70\x44\x11\x37\xa9\x68\x41\xd8\x89\x54\x34\x85\xbd\x36\xa9\x68\x61\xe8\x2a\xd4\xfc\x69\x7c\x4e\x6a\xfe\xb4\x4c\xbb\x47\x62\x41\x1f\x23\x85\x33\xc2\x86\x9b\xc2\x19\xd1\x9e\x6e\x0a\x67\xa2\x9e\x35\x85\x33\x51\x53\xb9\x6f\xc9\x58\xd4\xf4\xe9\x5b\x32\x16\x9b\xfe\x47\x0d\x5d\xd7\x11\x35\x74\xfa\xe0\x28\xa6\x89\x1a\x3d\x8b\x1a\x3a\x01\x9d\x45\x0d\x1d\x1b\x73\x7b\xa9\x86\x8e\x5e\x2f\x6a\xe8\xc8\x0b\xdf\xee\xd7\x58\xd4\xf4\xe2\x7e\x8d\xbd\x50\x1d\xc5\x35\x09\x1f\x6b\x53\x5c\x23\x75\xcc\xbd\x28\xee\xa2\x3c\x7b\x53\x58\x23\x86\xfc\xbd\x28\x46\x23\x90\xb0\x37\x35\x75\x84\x9a\x36\x45\x33\x89\x3c\x91\x4d\xd1\x4c\xd2\xdd\x29\x9a\x49\xec\x52\xec\x4d\xe1\x96\x60\xc8\xa6\xc8\x29\xeb\x77\x9d\x23\xee\x4e\xc1\x8c\x02\x72\x9b\x82\x19\xed\x40\xed\xad\x82\x2d\xac\xa5\x60\x46\x3b\x50\x9b\x82\x99\xac\xa7\xb4\x29\x50\x23\xec\xb5\x29\x98\xc9\x24\xf2\xee\xa3\x42\x2d\x9e\x04\x05\x33\x0f\x1e\xfa\xa6\x28\xe6\x11\x24\xf2\x3d\x19\x53\xb6\xd0\xf6\x3d\x19\x2b\x78\x1d\x9b\x62\x98\x42\x18\x63\x53\x0c\x23\xc9\xc3\xed\x7b\x32\xa6\x8c\x99\xed\x7b\x32\x26\x01\xc4\x4d\x31\x4c\x11\x64\xa0\x18\xa6\x10\x38\xdc\x14\xc3\x88\x49\x66\x53\x0c\x23\x0e\x98\x4d\x31\x4c\xcd\xff\xd2\x9a\xdc\xd4\xc9\x28\xe6\xb6\xa9\x93\xa9\x38\x71\x9b\x3a\x19\xa5\xc1\x6c\xea\x64\xaa\x3e\x2a\x77\x80\x4c\x6a\x85\xfb\x52\xab\xa5\x07\x7f\xa9\x69\xc2\x31\xdc\x97\x9a\x26\x76\xd7\x37\xf5\x33\x22\x82\xd9\xd4\xcf\x48\x0c\x7f\x53\x3f\x53\x85\xf8\x28\x92\x69\x5a\x9b\x28\x92\x69\x9a\x18\x28\x92\x11\xdd\xca\x09\xd4\x01\x81\x53\x0f\x05\x32\x8a\xc7\x9d\x40\x4d\x53\xd6\x99\xd4\x34\xf1\xc1\x1d\x8a\x67\x1a\x03\xf9\x50\x3c\xd3\x08\x08\x1c\x8a\x67\x1a\x16\x9d\xa0\x5a\x26\xe3\x48\xb5\x4c\xfa\x9f\xdb\xd7\x08\x78\x1c\x77\x8e\xac\x4d\x9d\x49\x9d\xd3\xd2\x35\xa9\x73\xe2\x65\x1e\x0a\x6b\xda\xd1\x55\x28\x02\x0a\xea\x19\x45\x40\x2c\x63\xc7\x1d\x27\x13\x2f\xc9\x89\xd4\x32\xb1\xf1\x71\xa2\x0a\x80\x0a\x47\x14\xb0\x30\x3c\x4f\xa4\x80\x05\xd4\x73\x54\x76\x13\x75\x26\xc5\x2b\x59\x47\x14\xaf\xc0\x8e\x7c\x22\xc5\x2b\x45\x77\xa0\x40\xa7\xe8\xee\x14\xe8\x1c\x5d\x93\xc2\x0e\x42\x54\x87\x02\x9d\x41\x56\xed\xa1\x40\x67\x30\x69\x9c\xa4\xe2\x15\x7e\x47\x81\xce\x28\x3a\xa2\x20\x22\xe8\x88\x82\x08\xa6\x9e\x43\x11\x8e\x84\xc1\x0e\x45\x36\x33\xea\x7f\x14\x3d\xc8\x06\x8a\x6c\xa6\x6c\xa0\xc8\x46\xd4\xbc\x87\x22\x1b\x29\xe3\x1f\x8a\x6c\x26\x01\xb2\x43\x91\xcd\x04\xa7\x1e\x8a\x6c\x44\xb6\x7b\x28\xb2\x99\xec\xb4\x1c\x8a\x6c\x14\xcc\x3a\x59\x45\x1d\xbc\x3f\x8a\x6c\x26\x13\xd8\xc9\xd8\x70\xf5\x3f\xb7\x41\xbc\x91\x27\x53\x0e\x01\xae\x3a\x59\xe5\x10\xf4\x33\xab\x1c\x82\x27\x9f\x55\x0e\xa1\x9e\x51\x6d\x00\x28\x39\x14\xd8\x2c\x59\x44\x81\xcd\xce\xea\x19\xd5\x06\x59\xbd\x76\xfb\x44\xaa\x7a\x28\xb0\x91\xb0\xf7\xa1\xc0\x46\x61\xa1\x43\x81\x8d\xf4\xc9\x0f\x05\x36\x9b\x7c\xe6\x43\x81\xcd\x69\xba\x0a\xb9\xe9\x7a\x12\x94\xcd\xa8\xd6\xf5\x50\x36\x23\x18\x72\x28\x9b\x39\x04\xf9\xce\xa3\xdc\x74\xdd\x81\xdc\x74\x30\xfa\x79\xc8\x4d\x8f\xba\x0a\xb9\xe9\x7c\xef\x87\x72\x9b\xab\x2f\x9c\x72\x1b\x6d\xa9\x1d\xca\x69\x2e\x59\x3f\x87\x72\x9a\xcb\x02\x7b\x8a\xf2\xce\xb9\x03\xe5\x34\xca\x9f\x3e\x94\xd3\x08\x86\x9c\x22\xc5\xad\xb0\x85\x9b\x4f\x79\xeb\x04\x04\x5d\x7b\xbe\x5a\xc4\xe5\x79\xca\x9b\x58\x83\xd0\xcc\x51\x69\x4d\x3b\x7b\xe9\x4b\x53\x69\xcd\x4f\xcb\xa3\x1e\xdf\xdf\x16\xcd\x28\x2a\xfe\xff\x69\x19\xff\xaa\x1e\x3c\x92\x5c\xfd\x39\x59\x2f\x4e\x62\x44\xed\xec\x4d\xb5\xda\x71\x47\x29\x97\xd7\xd1\xcf\x23\xba\x97\x84\x9c\xe3\x8e\xd2\xfb\xa8\x7e\x1d\xb5\xaf\xa3\xfe\x2a\x5a\x50\x32\xfe\x71\x67\xe9\x91\xd6\xc3\x71\x67\xe9\x11\xda\x3e\xaa\xd7\x79\xc2\xde\xac\xc7\x07\x86\xb7\xab\x47\x43\xba\x5b\xd0\x70\x26\xdd\x4d\xd1\xb5\x43\xba\x5b\xc4\x8d\x3d\x62\x7f\x7b\xe2\xde\x04\x49\x0e\x29\x6f\x51\xf6\x90\xf2\x26\xf2\xca\xd3\xf2\xeb\xec\x83\x03\x74\x48\x7b\x93\x46\xf7\x21\xb5\x2d\x13\xe0\x3f\xa4\xb6\x89\x12\xf1\x34\x65\xf8\x32\x58\x9b\x08\x62\xf3\xaf\x05\x4d\x59\xb0\xba\xae\xb2\x60\xd5\x4b\x32\x48\x35\x98\x49\x6f\xd3\xe2\x75\x48\x6f\x7b\x1d\x91\xde\xa6\x20\xcb\x21\xbd\x4d\x9c\x66\x87\xf4\xb6\xba\x74\x26\x19\xa4\x47\x47\x64\x66\xc2\xe9\x72\x48\x6f\xeb\xfa\xac\x49\x6f\xeb\x24\xb4\x1d\xd2\xdb\x0c\x6f\xe6\x90\xde\x66\x9a\x5e\x49\x6f\x53\xdd\xe4\x21\xbd\x4d\xe4\x4a\x87\xf4\xb6\x41\xe8\xe4\x90\xde\x36\xf5\xf1\x90\xde\x26\x96\xf2\x43\x7a\x9b\x9c\xdf\x43\x7a\xdb\x24\xf2\x7c\x5e\x9c\xd9\x75\xab\xf8\xe2\x28\xc5\xed\xd1\xff\x49\x71\xc3\xa3\x39\x4a\x71\x3b\xfa\x9f\xdb\x78\x01\x20\x87\x14\xb7\x0b\x4e\x3a\xa4\xb8\x5d\x9c\xff\x63\xa4\x87\xa9\xe7\x88\xb0\x6a\x1b\xfa\x20\xc2\x1a\xaf\xae\xe2\x42\x59\xc6\x86\xe7\x41\xb5\xc8\xa6\xfe\xc7\x27\xfb\xcc\x7d\x1e\xfd\x96\xdc\x1d\x4d\x04\xa6\xdc\x1d\x9e\xb9\x7b\x51\x59\x34\xfc\x47\xfc\xd8\xcf\xdc\x97\x2d\xc4\x43\xaa\x5b\x61\xdf\xe0\x90\xea\x56\x00\x37\x47\x25\x3f\xe5\x6c\x49\xf3\x1d\xd2\xdd\x0a\x58\xf9\xb8\xc7\x94\xc7\xd2\xff\x3a\x47\xba\x2e\x79\x3a\x5a\x66\x49\x77\xab\x82\x2d\xa4\xbb\x49\x84\xe4\x90\xee\x26\xbe\xbc\x43\xba\x5b\xdd\xea\xaf\x97\xc0\x0c\x82\x12\x87\x74\x37\x6d\x69\x1e\xd2\xdd\x9a\x96\x13\xd2\xdd\x9a\xfa\x42\xba\x5b\xd7\x82\x45\xba\x9b\x69\xdc\x49\x65\x55\x70\x80\x74\xb7\x81\xaf\x73\x48\x77\x1b\xfa\x5a\xdc\xb7\xca\xaa\x65\x3c\xa4\xbb\x0d\xbd\x21\xd2\xdd\xa6\xbe\x6e\xd2\xdd\x54\x72\x73\x48\x77\x5b\x64\xd6\x9f\x29\x71\x43\x5d\x13\x71\x43\x2d\x35\x94\xf8\x6c\x81\x3b\xd2\xdd\x0e\xf9\xf2\x87\x74\x37\xd5\xaa\x1e\xd2\xdd\x8e\x9e\x2e\x39\x6d\x87\x58\xc3\x21\xa7\x4d\x15\x85\x87\x9c\x36\xed\x5c\x1c\x72\xda\x7e\x8f\x48\xae\xd0\xbc\x42\x4e\xdb\x6d\x3a\x12\xf7\x79\x80\x43\xff\xbf\xa7\x70\xb6\x94\x12\x3b\xc1\xc7\x5d\xaf\x7c\x34\x09\x21\x68\xa4\x1d\xcf\xc3\x96\x52\xa6\x5c\xf7\xb0\xa5\xa4\x58\xf1\x61\x4b\x49\x11\xe0\x23\xa1\x23\x3d\x28\x09\x1d\xb1\x17\x7b\xd8\x52\x92\x02\xfa\x61\x4b\xa9\xca\x0c\xb6\x94\x6a\xd5\x99\xec\x97\x0b\xc7\xb0\xa5\xd4\xd8\xb5\x3d\x6c\x29\x35\x22\x5e\x87\x2d\x25\xd3\x47\x0d\xef\xb6\xe9\x85\x6e\x36\x2b\xa7\xce\x64\x33\x4f\xb8\x97\xed\xa6\x55\x74\x04\xe5\xbb\x26\x51\xb6\x9b\x14\x12\x3a\x6c\x37\xfd\x1e\xc1\xb7\xad\x67\xa6\xed\x26\x7d\x20\x30\xc6\x05\x52\x08\x0f\x8c\x71\xaa\x62\x3a\xe2\xdb\xd6\x24\x7a\xc4\x45\xcd\xfd\x60\x8c\x8b\x49\x47\xec\x18\x08\xcd\xc2\x18\x97\x84\x40\x60\x8c\x4b\x7a\x47\xf0\x6d\x67\xf2\x39\x0e\x8c\x71\xa2\xa1\x3d\x30\xc6\x3d\x42\x35\x6c\x5a\x3d\x8f\xee\x00\x79\x2c\xfb\x0e\xe7\x25\x9e\x34\xb7\xb6\x1a\x0f\x1b\x57\x2a\xd6\x38\x6c\x5c\x15\x0a\x90\x0f\x1b\x57\x12\x81\x3a\x6c\x5c\x49\x8d\xfe\xb0\x71\x55\x35\x35\x5e\x91\x6d\x72\x17\x36\xae\xba\x26\x3b\x36\xae\xba\x9e\x0d\x1b\x57\x2a\xbe\x3f\x6c\x5c\x4d\x2d\xd0\xd7\xbe\x8e\x88\x8b\x6a\x22\x74\xbf\xed\x11\xf9\xe5\xb9\xbf\x28\x68\x65\xfd\x1f\x7a\x31\x61\x4e\x36\xaf\x94\xc6\x75\xd8\xbc\x5a\x8c\xe8\xcb\xe6\xd5\x66\x6a\xbb\xee\xbb\x39\x91\xb3\x1f\x11\x98\xc2\x03\xbc\x6c\x5e\x5d\xb0\xf1\x65\xf3\xea\xe2\xf7\x5c\x18\xe3\x24\x51\x70\x61\x8c\xbb\x4c\xe1\x17\xdf\x4d\xa3\xe1\xe2\xbb\xfd\x1e\x11\xc6\x21\x45\xef\xe2\x9f\x45\x02\x84\x17\xff\x4c\x05\x53\x17\xff\x2c\x67\xdd\x8f\x10\x01\x41\xa4\x8b\x7f\xf6\x10\x16\xbb\xbe\xb1\x65\x05\x9f\xef\x46\xfc\xeb\xa4\xff\xe1\x5f\x13\x6e\xba\xf8\x6e\x95\x2f\xe8\xe2\xbb\x35\x7c\x86\x8b\xef\xf6\x7b\x84\xef\x16\x74\x15\x7c\x37\xbc\xdf\x2b\xdf\xad\xe8\x2a\xf8\x44\xb2\x08\xdf\x4d\x52\xc5\x17\xdf\x6d\xe2\x9b\x5e\x7c\xb7\x15\x74\xa6\xdb\x27\x39\xe6\x8b\xef\xb6\x48\x10\xbc\xf8\x6e\x8b\x20\xe7\xc5\x77\x53\x9d\xf3\x85\x5c\x41\x12\x08\x17\x72\x05\x69\xcf\xde\x24\x9f\x81\x3b\xe0\xd7\x69\xbf\xe3\x26\xca\xc4\xdf\x12\xcf\x17\xc5\xa4\xa9\xfe\x90\x8a\x27\xf6\x99\x9b\xd8\x82\xe7\xdb\xbf\xa8\x25\xcd\x57\x7f\x7c\x3e\x51\x61\xd4\x65\x07\x4b\x12\xdd\x97\x54\x3c\x55\x37\x5e\xd4\x92\x42\xfb\x17\x15\xd3\xa5\x86\xe9\xb0\x59\x78\x11\x52\x52\x01\xf4\xc5\x25\xac\x00\xf7\xcb\xe6\x96\x42\x24\x97\xcd\xad\x48\x6c\xf8\x66\x51\x13\xd1\x31\x6a\x98\x94\x3d\x7c\x11\x58\x52\x6d\xde\x45\x9a\xb6\x53\x24\x72\x71\x09\x27\x28\xf3\x66\x6a\xe5\x96\xee\x47\xb6\x2b\x1f\xe5\x25\x4d\xaf\x24\x1d\xa1\x27\x17\x75\x4d\xf2\x3e\x98\xc8\x2f\xd2\xb4\x59\x43\x14\x97\x30\xf0\xd9\x5f\x5c\x42\x5b\x3a\x22\x23\x59\x83\x12\x97\x50\xbb\xc2\x17\x97\xb0\x11\x7d\xbe\x8f\xf6\x65\x79\x2e\x8f\xb2\x2b\x78\x45\x4a\xef\xd3\xfd\x60\x88\x93\xa4\xd6\x85\x8b\x5b\x81\x9d\x2b\xce\x05\xbd\x30\x71\x2e\x10\x7d\xbe\xd4\x37\x85\xa0\x3b\xac\x0f\x1f\xe0\x3e\xd4\x02\x06\xf5\x13\x74\x7a\xf4\xbb\x1f\xfb\xae\x11\x02\xba\x85\x6c\x65\x4d\x2a\xee\x3c\x5e\x63\xca\xbf\x92\xab\x25\xed\xea\xfa\xf6\xd9\x95\xac\xd3\xa5\x2e\xaa\x80\x90\xae\x3b\x96\x75\xc9\xa2\x97\xe8\x12\x23\xa4\xb4\x97\x28\xc5\x25\xfa\x77\xd9\x42\xeb\xb2\x11\xae\x06\xf9\x0d\x17\xae\x06\x65\x41\xdf\xf2\x66\x39\xd0\x87\xf0\xe2\x6b\xb0\x7d\xa2\xee\xf6\x63\x4f\x08\x6c\x0b\x5d\x77\x16\x43\x18\x3a\xfa\xb1\x27\xa9\xa0\xe2\xba\x27\x18\x22\x21\x98\xeb\x5e\x60\x88\x1a\x1f\xee\x05\x86\x48\xb2\xdd\x75\x2f\x30\x44\xbc\xa2\xeb\x5e\x60\x88\x7a\x0e\xee\x05\x86\x58\xf5\xbb\xce\x99\xd8\xe2\x1e\x60\x50\x59\xee\x75\x0f\x30\xc4\x47\xf7\x9b\x1c\xf1\x6c\xdd\xfb\x0b\x8a\x6e\x5f\xf7\xfe\x82\xca\x40\xae\x7b\x7f\xe1\xb7\xd7\x97\x23\xde\x90\x7b\x7f\x21\xe2\xec\x5f\xf7\xfc\x42\x24\x69\xf5\x36\xec\xcb\x3a\x92\x7d\xfa\x9d\xec\xe3\x9a\x4d\xf6\xf1\x4c\x1b\xf6\x69\x42\x6b\xd8\xc7\x06\xe0\x6d\xd8\xa7\x6f\xaa\x61\x5f\xd3\xdd\xb1\x8f\x14\xc8\xdb\xb0\x6f\xeb\x2a\xd8\x07\xc4\xba\x0d\xfb\xb6\xae\x89\x7d\x60\xc3\xdb\xb0\x8f\x40\xe3\xed\xd8\x47\x48\xeb\x76\xec\x63\xd3\xed\x76\xec\x23\x04\x71\x3b\xf6\xb1\xcc\xde\x8e\x7d\x9a\xf6\x3b\xf6\x25\xfd\x4f\xf6\xe9\x2a\xd8\xa7\xe9\xb2\xeb\xfd\x31\x32\x3b\xf6\x3d\xea\x0b\xf6\x69\xf1\xe8\xd8\x87\xc7\x77\x3b\xf6\x69\xfe\xea\xd8\xa7\x85\xd3\xbd\xc1\xf4\x7a\xf2\xee\x0d\xa6\xc4\xd6\xeb\x75\x6f\x30\x25\x00\xd0\x75\x6f\x2f\x89\x19\xfd\xba\x47\xf7\x3b\x92\xdd\xa3\xfb\x1d\xc9\xee\xd1\x31\x92\xff\x7b\x7a\x36\xfb\x1c\xe4\x36\x3e\x07\xb9\xcd\xcf\x41\x6e\xeb\x73\x90\xdb\xfe\x1c\xe4\x76\x3e\x07\xb9\xdd\xcf\x41\x3e\xc2\xe7\x20\x1f\xf1\x73\x90\x8f\xf4\x39\xc8\x47\xfe\x1c\xe4\xe3\xf9\x1c\xe4\xa3\x7c\x0e\xf2\x51\x3f\x07\xf9\x68\x9f\x83\x7c\xf4\xcf\x41\x3e\xec\x73\x90\x8f\xf1\x39\xc8\xc7\xfc\x1c\xe4\x63\x7d\x0e\xf2\xb1\x3f\x07\xf9\x38\x9f\x83\x7c\xdc\xcf\x41\x3e\xc3\xe7\x20\x9f\xf1\x73\x90\xcf\xf4\x39\xc8\x67\xfe\x1c\xe4\xf3\xf9\x1c\xe4\xb3\x7c\x0e\xf2\x59\x3f\x07\xf9\x6c\x9f\x83\x7c\xf6\xcf\x41\x3e\xed\x73\x90\xcf\xf1\x39\xc8\xe7\xfc\x1c\xe4\x73\x7d\x0e\xf2\xb9\x3f\x07\xf9\x3c\x9f\x83\x7c\xde\xcf\x41\xbe\xc2\xe7\x20\x5f\xf1\x73\x90\xaf\xf4\x39\xc8\x57\xfe\x1c\xe4\xeb\xf9\x1c\xe4\xee\xfc\xfd\x0e\x72\x77\xfe\x7e\x07\xb9\x3b\x7f\xbf\x83\xdc\x3d\xb8\xdf\x41\xee\x1e\x5c\xc8\x5d\x67\x7a\xcf\x54\xb4\x7e\xdd\x2f\x0b\x99\x6c\x98\xeb\x7e\x59\xc8\x04\x04\xae\xfb\x65\x21\x6b\x99\x70\xbf\x2c\x88\x6f\xf0\xba\x7f\x15\xe4\x07\x5e\xf7\xaf\x42\x26\x4a\x7d\xdd\x87\x0a\x12\x37\xbe\xee\x43\x85\x3c\xf5\xbf\xc3\xff\xb8\x83\xe3\xf6\x1c\xc8\x1a\xb8\x8e\xdb\xb3\x34\x7b\x2e\x4a\xa7\x01\x92\x83\xeb\x98\x3d\x07\x8d\x02\xc7\xec\x39\xf8\xd2\xeb\x24\x13\x3f\x47\xee\x84\x97\xe0\xd8\x3b\xa3\xf5\x53\x42\x94\x20\x58\xe2\xc8\x7b\x1d\x3c\x26\x5f\x82\x23\xd5\x10\x9e\x1c\xd8\xc4\x2d\xc1\xd1\x6a\x08\xcf\xfc\x6e\x9d\xb4\xa6\x10\x9e\xf2\x6e\x5d\xb4\xc6\x10\x3c\x77\xa2\x04\x47\xb0\xb4\x38\x66\x2f\x81\x62\x12\x04\xf0\x4a\x88\xf4\x7a\xd2\x4f\x47\xb1\x19\x02\xd5\x12\x12\x77\xf6\x6f\xac\x84\x34\x75\x14\x82\x7f\x05\x25\x24\xee\x96\xe3\xbb\x85\xbb\xe5\xf4\x6e\x39\xb4\xe4\x77\x0b\x0b\x75\x7e\x7e\x5b\x32\x8b\x75\x2e\xef\x96\x48\x4b\x7d\xb7\x24\x5a\xda\xbb\x25\xd3\xd2\xdf\x2d\x0f\x2d\xf6\xdb\x42\x61\xf8\x69\x58\xf7\xe8\x49\xf2\x86\x00\x4e\x80\x1c\x27\xfe\x70\xb6\x0c\x9e\x11\x5a\xff\xc8\x0e\x97\xe0\xc0\xa9\xd6\xa4\x23\xaa\xaa\x2f\x47\x14\x8d\x27\x3d\x5b\x8a\xc6\x61\xaf\x29\x01\xe0\xf4\x7a\xcf\x52\xab\xf4\x11\x58\x42\x81\x25\x65\xd0\xb3\xc2\xf8\x68\x33\x87\x7f\x05\x46\x3c\x38\xec\x0c\x16\x98\x48\xbd\x39\x09\x76\x25\x28\x2d\xe9\xf0\xf2\x1d\x53\xd5\xee\x8e\x55\x09\x85\x08\x52\xd4\xef\xdc\x3d\x3d\xaf\xae\x52\x74\x1d\x75\xe6\x7e\x47\xec\x4a\xf0\xe0\x7c\x4d\x8f\x3a\xce\xeb\x2b\x21\x10\xa5\x2e\x41\x58\xeb\xd9\xef\x16\xb8\x32\x16\xd7\x06\x6f\x85\x92\x7f\x07\x25\x98\xcb\x5b\x3c\x2e\x55\x02\xb8\x8b\x16\x1e\x17\xd8\x8b\x16\xfd\xaa\xfa\x43\x5a\xf4\x0a\xfc\x15\x9e\xfe\xbe\xab\xaf\x8d\x21\xf2\x48\x1d\x83\xbd\x8f\xc6\xd7\xd1\xfe\x1d\xca\x1a\xdc\xf5\xbc\x5b\xd4\xa3\xfb\x6e\xa1\x47\x2d\xbc\x5b\xe8\x51\x8b\xef\x16\xae\xdc\xd2\xbb\x85\x0f\xac\xe5\x77\x0b\xfd\x6c\xcf\xbb\x05\x5b\xc0\x61\xb4\xf0\x1e\xc1\x62\xb4\x30\x40\xc1\x63\xfe\xb1\xa9\xcf\x60\x32\x5a\xe8\x33\xb8\x8c\x16\xf5\x79\xbc\x5b\xd4\xe7\xf9\x6e\x51\x9f\xdf\x9f\xf1\xab\xcf\xfb\xdd\xa2\x3e\x9f\x77\x8b\xfa\x7c\xdf\x2d\xf4\xb9\x87\x77\x0b\x7d\xee\xf1\x77\x3a\x50\x9f\x7b\x7a\xb7\xd0\xe7\x9e\xdf\x2d\xf4\xb9\x3f\xef\x16\xfa\xdc\xcb\xbb\x85\x3e\xf7\xfa\x6e\xa1\xcf\xbd\xbd\x5b\xe8\x73\xef\xef\x16\xfa\xdc\xed\xdd\xa2\x3e\x8f\x77\x8b\xfa\x3c\x7f\x27\xac\x57\x9f\xd7\xbb\x45\x7d\xde\xef\x16\xf5\xf9\x3d\xcd\xbd\xfa\x7c\xdf\x2d\xf4\xd9\xc2\xbb\x85\x3e\x5b\x7c\xb7\xd0\x67\x4b\xef\x16\xfa\x6c\xf9\xdd\x42\x9f\xed\x79\xb7\xd0\x67\x2b\xbf\x53\xaa\xfa\x2c\x0c\xe9\x2d\xf4\x59\x38\xd2\x5b\xe8\xb3\xf5\x77\x0b\x7d\x36\x7b\xb7\xa8\xcf\xe3\xdd\xa2\x3e\xcf\x77\x8b\xfa\xbc\xde\x2d\xea\xf3\x7e\xb7\xa8\xcf\xe7\xdd\xa2\x3e\xdf\xdf\x49\x5f\x7d\x1e\xef\x65\x40\x7d\x1e\xf1\xdd\x42\x9f\x47\x7a\xb7\xd0\xe7\x91\xdf\x2d\xf4\x79\x3c\xef\x16\xfa\x3c\xca\xbb\x85\x3e\x8f\xfa\x6e\xa1\xcf\xa3\xbd\x5b\xe8\xf3\xe8\xef\x16\xfa\x0c\xe8\x0c\xa9\x7d\xcd\x1d\x80\xcf\x77\xab\xfa\x3e\xbf\x5b\xd5\xff\xf5\xdd\x2a\x1b\xf6\x77\xab\xec\x38\xdf\xad\xb2\xe5\x7e\xb7\x62\x0f\x60\xf5\xdd\x8a\x4d\x80\xd6\x77\x2b\x76\x01\x5e\xdf\xad\xd8\x06\x88\xa5\xf5\x3d\xc7\x00\x66\xdf\xad\xd8\x06\xa8\x7d\xb7\x62\x1b\xe0\xf6\xdd\x8a\x6d\x80\xdc\x77\x2b\xb6\x01\x76\xdf\xad\xd8\x36\xed\xbb\x55\xb6\x8d\xef\x56\xd9\x36\xbf\x5b\xff\x11\xb0\x2a\x61\xae\xef\x1f\xc8\xec\x8f\x47\xff\x9e\xa6\xe6\xf9\x6e\x95\xd9\xf7\xbb\x15\xb3\x57\xf8\x6e\xc5\xec\x15\xbf\x5b\x31\x7b\xa5\xef\x56\xcc\x5e\xf9\xbb\x15\xb3\xd7\xf3\xdd\x8a\xd9\xab\x7c\xb7\xf2\x4a\x57\xfd\x6e\xc5\xb6\xf5\xf1\xe8\xdf\xd3\xd9\xea\xdf\xad\xd8\xb6\xec\xbb\x55\xb6\x8d\xef\x56\xd9\x36\xbf\x5b\x65\xdb\xfa\x6e\x95\x6d\xfb\xbb\x55\xb6\x9d\xef\x56\xd9\x76\xbf\x5b\xb1\x6d\x87\xef\x56\x6c\xdb\x1f\xcf\xf7\x3d\xed\xed\xf4\xdd\x8a\x6d\x3b\x7f\xb7\x62\xdb\x7e\xbe\x5b\xb1\x6d\x97\xef\x56\x6c\xdb\xf5\xbb\x15\xdb\x76\xfb\x6e\xc5\xb6\xdd\xbf\x5b\xb1\x6d\xdb\x77\xab\x6c\x1b\xdf\xad\xb2\xed\xe3\xf9\xbe\xa7\xc7\xbd\xbe\x5b\x65\xdb\xfe\x6e\x95\x6d\xe7\xbb\x55\xb6\xdd\xef\x56\x6c\x3b\xe1\xbb\x15\xdb\x4e\xfc\x6e\xc5\xb6\x93\xbe\x5b\xb1\xed\xe4\xef\x56\x6c\x3b\xcf\x77\x2b\xb6\x9d\x8f\xe7\x5b\x7f\x6d\x3b\xf5\xbb\x15\xdb\x4e\xfb\x6e\xc5\xb6\xd3\xbf\x5b\xb1\xed\xd8\x77\xab\x6c\x1b\xdf\xad\xb2\x6d\x7e\xb7\xca\xb6\xf5\xdd\x2a\xdb\xf6\x77\xab\x6c\x3b\xdf\xad\xb2\xed\xe3\xf9\xb6\x5f\xdb\x6e\xf8\x6e\xc5\xb6\x1b\xbf\x5b\xb1\xed\xa6\xef\x56\x6c\xbb\xf9\xbb\x15\xdb\xee\xf3\xdd\x8a\x6d\xb7\x7c\xb7\x62\xdb\xad\xdf\xad\xd8\x76\xdb\x77\x2b\xb6\xdd\xfe\xdd\x8a\x6d\xf7\xe3\xf9\xf6\xb7\x6d\xe3\xbb\x55\xb6\xcd\xef\x56\xd9\xb6\xbe\x5b\x65\xdb\xfe\x6e\x95\x6d\xe7\xbb\x55\xb6\xdd\xef\x56\xb7\x2d\x86\xf0\xdd\xda\x68\x8d\xdf\xad\x9d\xd6\xf4\xdd\x6a\xb4\x7e\x3c\x5f\x7b\xd9\x16\xc3\xf3\xdd\x1a\x69\x2d\xdf\xad\x89\xd6\xfa\xdd\x9a\x69\x6d\xdf\xad\x0f\xad\xfd\xbb\xb5\xd0\x6a\xdf\xad\xb2\x6d\x7c\xb7\xca\xb6\xf9\xdd\x2a\xdb\xd6\x77\xab\x6c\xfb\xeb\xea\xc4\xf0\xd7\xd5\x89\xe1\xaf\xab\x13\xe3\x5f\x57\x27\xc6\xbf\xae\x4e\x8c\x7f\x5d\x9d\x18\xff\xba\x3a\x31\xfe\x75\x75\x62\xfc\xeb\xea\xc4\xf8\xd7\xd5\x89\xf1\xaf\xab\x13\xe3\x5f\x57\x27\xc6\xbf\xae\x4e\x8c\x7f\x5d\x9d\x18\xff\xba\x3a\x31\xfe\x75\x75\x62\xfc\xeb\xea\xc4\xf8\xd7\xd5\x89\xf1\xdb\xd5\xf9\x4f\x98\x11\xd3\x5f\x2f\x28\xa6\xbf\x5e\x50\x4c\x7f\xbd\xa0\x98\xfe\x7a\x41\x31\xfd\xf5\x82\x62\xfa\xeb\x05\xc5\xf4\xd7\x0b\x8a\xe9\xaf\x17\x14\xd3\x5f\x2f\x28\xa6\xbf\x5e\x50\x4c\x7f\xbd\xa0\x98\xfe\x7a\x41\x31\xfd\xf5\x82\x62\xfa\xeb\x05\xc5\xf4\xd7\x0b\x8a\xe9\xaf\x17\x14\xf3\x5f\x2f\x28\xe6\xbf\x5e\x50\xcc\x7f\xbd\xa0\x98\xff\x7a\x41\x31\xff\xf5\x82\x62\xfe\xeb\x05\xc5\xfc\xd7\x0b\x8a\xf9\xaf\x17\x14\xf3\x5f\x2f\x28\xe6\xbf\x5e\x50\xcc\x7f\xbd\xa0\x98\xff\x7a\x41\x31\xff\xf5\x82\x62\xfe\xeb\x05\xc5\xfc\xd7\x0b\x8a\xf9\xaf\x17\x14\x9f\xbf\x5e\x50\x7c\xfe\x7a\x41\xf1\xf9\xeb\x05\xc5\xe7\xaf\x17\x14\x9f\xbf\x5e\x50\x7c\xfe\x7a\x41\xf1\xf9\xeb\x05\xc5\xe7\xaf\x17\x14\x9f\xbf\x5e\x50\x7c\xf4\x7c\xea\xbb\xcf\xe3\xdd\xa2\x3e\xcf\x77\x8b\xfa\xbc\xde\x2d\xea\xf3\x7e\xb7\xa8\xcf\xe7\xdd\xa2\x3e\xdf\x77\x0b\x7d\x2e\xe1\xdd\x42\x9f\xcb\x3b\x58\xa8\x3e\x97\xf4\x6e\xa1\xcf\x45\xcf\xe7\x77\x59\x8e\xe5\x79\xb7\xd0\xe7\x52\xde\x2d\xf4\xb9\xd4\x77\x0b\x7d\x2e\xed\xdd\x42\x9f\x4b\x7f\xb7\xd0\xe7\x62\xef\x16\xf5\x79\xbc\x5b\xd4\xe7\xf9\x6e\x51\x9f\xd7\xbb\x45\x7d\xd6\xf3\xe9\xef\x3e\x9f\x77\x8b\xfa\x7c\xdf\x2d\xf4\x59\xd1\xb8\xf7\x12\x1b\x6b\x7c\xb7\xd0\x67\x45\xe4\xde\x4b\x6b\xac\xef\x60\xaa\xfa\xac\x88\xdc\xc7\x92\xaa\x88\xdc\xc7\x72\x5a\xeb\xbb\x85\x3e\x2b\x2a\xf7\xb1\x8c\xd6\xfe\x6e\xa1\xcf\xd5\xde\x2d\xea\xf3\x78\xb7\xa8\xcf\xf3\xdd\xa2\x3e\xaf\x77\x8b\xfa\xbc\xdf\x2d\xea\xf3\x79\xb7\xa8\xcf\xf7\xdd\x42\x9f\x5f\x51\xbc\xf7\x12\xf9\x8a\xe2\xc5\xaf\x65\xf2\x15\xc9\x8b\x5f\x4b\xe5\x2b\x9a\x17\xbf\x96\xcb\x57\x44\x2f\x7e\x2d\x99\xaf\xa8\x5e\xfc\x5a\x36\x5f\x91\xbd\xf8\xb5\x74\x7e\x45\xf7\x7e\xed\xf9\x8c\xf0\xbd\x97\xd0\xcf\x28\xdf\x7b\x19\xfd\x8c\xf4\xbd\x97\xd2\xcf\x68\xdf\x7b\x39\xfd\x8c\xf8\xbd\x97\xd4\xcf\xa8\xdf\x7b\x59\xfd\x8c\xfc\xbd\x97\xd6\xcf\xe8\xdf\x7b\x79\xfd\x8c\x00\xbe\x97\xd8\x1e\xbf\x5b\xb1\xad\xa7\xef\x56\x6c\xeb\xf9\xbb\xf5\x9f\xcb\x6d\x7f\xbe\x7f\x80\xd9\xfd\xe3\xd1\xbf\x97\xdd\x5e\xbf\x5b\x31\xbb\xb7\xef\x56\xcc\xee\xfd\xbb\x15\xb3\xbb\x7d\xb7\xca\xec\xf1\xdd\x2a\xb3\xe7\x77\xab\xcc\x5e\xdf\xad\x32\x7b\x7f\xb7\xf2\x4a\xfb\xf9\x6e\x95\x6d\x1f\x8f\xfe\xbd\x3c\x5b\xf8\x6e\xc5\x36\x8b\xdf\xad\xd8\x66\xe9\xbb\x15\xdb\x2c\x7f\xb7\x62\x9b\x3d\xdf\xad\xd8\x66\xe5\xbb\x15\xdb\xac\x7e\xb7\x62\x9b\xb5\xef\x56\x6c\xb3\xfe\xdd\x8a\x6d\xf6\xf1\x7c\xdf\xcb\xb8\x8d\xef\x56\xd9\x36\xbf\x5b\x65\xdb\xfa\x6e\x95\x6d\xfb\xbb\x55\xb6\x9d\xef\x56\xd9\x76\xbf\x5b\xb1\x6d\x84\xef\x56\x6c\x1b\xf1\xbb\x15\xdb\x46\xfa\x6e\xc5\x36\x05\x2a\xd3\xf9\xb5\x4b\x81\x4a\x6f\xc1\x26\x05\x2a\xbd\x05\x7b\x14\xa8\xf4\x16\x6c\x51\xa0\xd2\x5b\xb0\x43\x81\x4a\x6f\xc1\x86\x57\xa0\xf2\xbc\xfb\x3f\xde\x2d\xea\xfb\x7c\xb7\xa8\xdf\xeb\xdd\xa2\x3e\xcb\x3b\x5b\xef\x3e\x9f\x77\x8b\xfa\x7c\xdf\x2d\xf4\xf9\x15\x8c\x5c\xbf\x7d\x7e\x05\x22\xd7\x6f\x9f\x5f\x41\xc8\xf5\xdb\xe7\x57\x00\x72\xfd\xf6\xf9\x15\x7c\x5c\xbf\x7d\x7e\x05\x1e\xd7\x6f\x9f\x5f\x41\xc7\xf5\xdb\x67\x05\x1c\x5b\xe0\xaf\xaa\x4f\xfd\xbb\x75\xd3\xfa\xf6\xba\x8a\x7a\xaa\x3d\xc2\xf7\x82\xaa\x40\xe3\x73\xdf\x2d\xeb\xb7\xa5\xa9\x17\xda\x65\x3d\xef\x16\x9e\x53\x79\x4f\xa4\x8a\x1e\x3e\x23\x84\x96\x7e\x9e\xb2\xb7\x2a\x7a\xf8\x3c\xdf\xad\xd1\xb7\xba\xc6\xca\x48\x50\x96\xe8\x91\xc3\x1c\x66\xc8\xe1\xac\x1c\xd8\x37\x8c\x1e\x39\xcc\x61\xdc\x1c\xce\xce\xe1\xae\x1c\x7c\xf7\xbb\xc4\xc5\xfe\xf3\x6c\xb4\x6e\xfb\xb9\x52\x46\x48\xb3\xc4\x55\x7e\xff\x3b\x5a\x0e\x33\xbe\xef\xc3\x26\xdb\xec\x39\x9c\xc2\x6f\x5f\xff\x69\xda\x7e\xe3\x77\x5c\x91\xff\x74\xfe\x63\x39\xac\xfc\xbe\x87\xb1\x97\x1c\x7e\x7a\xfb\x6e\x1d\xb4\xe6\xef\x73\xb5\xe7\x6e\xb2\xe5\xe3\xae\xda\x7f\x5f\x3f\x7d\xa1\x85\x3d\xf8\x63\x39\xdc\x9f\x2b\xf0\xd6\x17\x7b\xf1\x67\xd0\x3a\xce\xf7\xf5\xef\xdf\xe7\xb9\xc3\xff\xf4\x3c\x77\xfc\xdf\x9e\xe7\x4e\xff\xf5\x3c\x77\xfe\xdf\x9e\xe7\x7e\xfe\xb7\xe7\xb9\xcb\xff\xf6\x3c\x77\xfd\x9f\x9e\xe7\x6e\xff\xd3\xf3\xdc\xfd\x7f\x7a\x9e\xdb\xfe\xb7\xe7\xb9\xc7\xdf\xe7\xb9\xe7\xff\xf4\x3c\xf7\xfa\xaf\xe7\xe9\x51\x47\x95\x40\x79\xb6\xe1\xe7\x11\xcf\x3a\xa4\x0c\xf1\x50\x89\x27\xbc\x5b\x2e\x2d\x7c\xeb\x93\x67\xab\x48\xe1\xd0\x51\x79\x27\xeb\x95\x78\x94\x11\xc4\xec\x73\x94\x11\xa4\xff\x29\x69\x8b\xef\xeb\x28\x23\xe8\x1f\x0c\x0b\x25\x1e\xe5\xe3\xe9\x76\x24\xd3\x54\x5d\x52\xc9\x42\x4c\x06\x47\xc9\x34\x18\x7d\x94\x2c\xa4\xae\x90\x4c\xf3\xf0\xb8\x08\xf2\x91\xe2\x54\x22\xc1\x3d\x52\x9c\x4a\xbc\xca\x37\xe4\x0e\x57\xf9\x6a\x7c\xe8\x57\xf9\x6a\x98\x70\x95\xaf\xc6\x1d\xae\xf2\xd5\x74\x24\xd3\xf5\x3b\x99\xae\x6b\xca\x74\x1e\x37\x41\x39\x52\x9c\x4a\xbc\xca\x37\x64\x92\x25\x08\x47\x8a\x93\x17\x87\xfd\xa6\x38\x95\x48\xd0\x8d\x14\xa7\x12\x09\xb6\x91\xe2\x54\x12\x41\x36\x52\x9c\x4a\x0a\x4a\x86\x2a\x1c\x29\x59\xe8\xe1\x48\xc9\x42\x95\x23\x25\x7b\xe9\x2a\x4a\xf6\x6a\x1c\x61\xdf\xd5\x55\xb0\xcf\x53\x9c\x4a\x0a\x4a\xf6\x8a\x1c\x61\x5f\xd2\xff\x64\x9f\xae\xa2\x64\xaf\xc3\x91\xde\xdf\xe2\x48\xc9\x6c\xea\x0b\xf6\x15\xfd\x4e\xf9\x86\xfe\xa6\x53\x54\xb2\x17\x7d\x21\xd8\x45\x8a\x53\x49\x1e\xe8\x52\x8a\x53\x49\x1e\xe4\x52\x8a\x53\x49\x1e\xe0\x52\x8a\x53\x49\x1e\xb8\x52\x8a\x53\x49\x0a\x48\x4d\x1d\xcd\x8f\x41\x9e\x3c\x10\xf5\x1a\xe4\x89\x20\x94\x06\x79\x22\x00\xa5\x41\x9e\xe2\xfd\x18\xe4\x29\x85\xdf\x41\xfe\x73\x14\x3f\x46\x72\x22\xaa\xa4\x91\x9c\x88\x28\x69\x24\xa7\xf4\x7c\x8c\xe4\x44\x24\x49\x23\x39\xa5\xfa\x31\x92\x53\x6a\x1f\x23\x39\x11\x3d\xd2\x48\x4e\xc9\x3e\x46\x72\x4a\xe3\x63\x24\xa7\x34\x3f\x46\x72\x4a\xeb\x63\x24\xa7\xb4\x3f\x46\x72\x4a\xe7\x63\x24\xa7\x74\x3f\x46\x72\xca\xe1\x63\x24\x27\x22\x43\x1a\xc9\x29\xa7\x8f\x91\x9c\x88\x08\x69\x24\xa7\xfc\x7c\x8c\xe4\x44\x24\x48\x23\x39\x11\x05\x7a\x8d\x64\x22\x40\xaf\x91\x4c\xf4\xe7\x35\x92\xb3\x7d\x8e\x64\xa2\x3e\xaf\x91\x4c\xc4\xe7\x35\x92\x89\xf6\xbc\x46\x32\x91\x9e\xd7\x48\xce\xe7\x73\x24\x13\xe1\x79\x8d\xe4\x27\x7c\x8e\xe4\x27\x7e\x8e\xe4\x27\x7d\x8e\xe4\x27\x7f\x8e\x64\xa2\x39\xaf\x91\x4c\x24\xe7\x35\x92\x9f\xfa\x39\x92\x89\xe0\xbc\x46\x32\xd1\x9b\xd7\x48\xf6\xc8\xcd\xef\x48\xf6\xa8\xcd\xef\x48\xf6\x88\xcd\xef\x48\xf6\x48\xcc\xef\x48\x7e\xa8\x1a\x1b\x3c\x5d\x8f\xc0\xdc\xa1\xd1\x43\xae\xf8\xd0\x9b\x86\x6a\x69\x36\xae\xe2\x51\x17\xaf\xf4\xfe\xef\x29\x39\x29\x1b\xaa\x60\xac\x07\x62\xbc\x3e\xd7\x8f\x2a\x47\x0c\xdd\x42\x71\xad\x61\x50\xa1\xb8\x76\xe8\x76\xa4\x34\xe9\x45\x7b\x40\xc5\x0b\x9d\xfc\x68\x73\xa4\xab\x1c\x8e\xf4\xbb\x8b\x2a\x15\x8f\xa5\xa2\x19\x15\xf8\x9d\x07\x4f\x1e\xc4\xe4\x4b\xf2\xc0\x89\x17\xac\xf8\x51\xe6\x88\xbe\x78\xc0\xc4\xeb\x1b\xfc\xa8\x70\xc4\x6b\xf0\x40\xc9\x73\xf5\xc8\x3c\x48\xe2\x75\x03\x7e\x84\xee\x55\xd1\x11\xba\x57\xb2\x5d\xc5\xc1\x55\x3d\x43\xf7\xaa\x31\x94\x2a\xba\x57\x8d\x81\x5c\xd1\xbd\xea\xfc\xaf\x61\x43\xe7\x7f\x0d\x1b\x48\xf5\x4a\x0d\x1b\x3a\xd7\x6c\xd8\x60\xf4\xac\x61\x83\x71\xf7\x86\x0d\xa6\xab\x60\x83\xf1\xcc\x1a\x36\x4c\xfd\x8f\x9e\x2d\x86\x52\xa3\x67\x60\x85\xd4\xe8\x19\xc9\x60\xa9\xd3\xb3\xad\x23\x7a\xa6\x77\xd4\xe9\x19\x99\x75\xa9\xd3\xb3\xab\x33\x51\xe4\x0a\x3c\x6b\xca\x7c\x83\xa6\x25\xca\x7c\x83\xde\x03\x65\xbe\x21\x32\x85\x50\xe6\x2b\xef\x25\x51\xca\x2b\x8f\x23\x51\xca\x1b\x34\xa1\x50\xca\x1b\x34\x99\xa2\x46\x11\x0a\xf6\x51\xaa\x1b\x2a\x57\xa1\x54\x37\x68\x8a\xa4\x54\x57\x1e\x45\xa2\x54\x37\xe8\x1d\x51\xaa\x1b\xf4\x56\x8c\xbe\x74\x9e\x92\xa1\x0e\xd6\x75\x3f\xd4\xc1\xf4\x1e\x50\xa3\x08\xc6\x48\x1e\xdc\x5d\xcf\x7a\x70\xf7\xc9\xfd\x06\x77\x5f\xfc\x6e\x70\xf7\xcd\xfb\x1b\x3c\x09\xb2\x39\xd3\xe0\xee\x7a\xd6\x83\xbb\x93\x9f\x9a\x06\x77\xbf\xf4\x6c\x70\xf7\x4b\xcf\x86\xb4\xc9\xf4\x3b\x64\xbe\x22\x7d\x71\x4f\xcf\x77\x2f\xfc\x08\xc5\x31\x4d\x6e\x13\xc5\x31\xbc\xc4\x34\x51\x1c\xc3\xfb\x4b\x13\x59\xb1\xac\xab\x20\x2b\xa6\xef\x61\x22\x2b\xf6\xe8\x2a\xde\x97\x58\x74\x07\xb2\x34\x0b\x23\x6b\xd2\x17\x2d\x78\x13\xc9\xb1\xc6\xb8\x9e\x14\xcb\x6b\x94\x2f\xfa\x39\xb9\xe6\xa2\x50\x7e\x71\xbf\x45\xa1\xfc\xd6\x11\x8a\x6a\x5a\x10\x16\x8a\x6a\x47\x47\xd8\xa7\x27\xb1\xb0\xef\x32\x0a\x16\x72\x64\x91\x9e\x2d\xe4\xc8\xb4\x18\x2e\xe4\xc8\x34\xce\xdc\x03\x2a\x49\x36\xb8\xe7\xe3\x53\x90\x1f\x49\xaa\x8c\xb7\xb9\x24\x55\xc6\xef\x50\xaf\x4b\xc6\x5b\x41\xbd\x2e\x0d\xfd\x2f\x73\x44\x5f\x50\xaf\x83\xd5\xb1\x24\x34\xe9\x92\xc6\x0b\x9a\x74\x3f\x86\xfd\x63\x4a\x46\xae\x2e\xe9\x93\x46\xae\x2e\x2d\xba\x89\x5c\x5d\xda\xbc\x4c\xe4\xea\x92\x3e\xe9\x2d\x45\x35\x75\x4c\x8a\x6a\x18\x7b\x48\x96\x3d\x98\x70\x30\xe8\xf0\x3b\x84\xed\xa0\x22\x2f\x09\x61\xbb\xa4\x01\x89\xb0\x5d\x0e\x3a\x13\x45\xb5\xc8\x90\x40\xd8\x2e\xeb\xc1\x23\x6c\x97\x23\x1f\x0e\xea\x75\x59\x08\x05\xf5\xba\x9c\xe8\x19\x9a\x74\x59\x13\x03\x9a\x74\x59\xab\x2d\x9a\x74\x59\x1f\x3f\x9a\x74\xb9\x70\xcd\x8b\x4e\x5a\xe5\x2a\x97\x9e\x75\xfa\x82\x26\x5d\xd6\xa0\x43\x93\x0e\x69\xfd\x92\xd0\xa4\xcb\x53\xbf\x43\xcf\x6d\xd2\xeb\x8b\x9e\x9b\x5e\x11\x7a\x75\x59\xcf\x1a\x4d\xba\x4c\x5a\x79\x46\x93\x0e\x95\xb6\x92\xa5\x49\xe7\x0c\x70\x25\xa3\x49\x07\xef\x92\x0b\xd5\xb9\x82\xdb\xe0\x08\x3d\x37\x50\x48\x0e\xd2\x73\xbb\x1c\xa1\xe7\xe6\x45\xa3\x5e\x2c\xe6\x47\xba\x66\xe7\x48\x67\xc2\x04\x51\xd4\x17\xb4\xde\xaa\x7e\x87\xd6\x5b\xd5\xef\xd0\x7a\xf3\x82\xe9\x1f\xb7\xd7\x8f\x98\x06\x33\xba\x73\x0f\xcf\x2c\x3b\xd6\x2e\x0f\x83\x3c\x47\x6c\x60\xe1\xca\x68\xd2\x3d\xa6\xdf\x61\x03\x0b\x50\x96\x26\x1d\x08\x25\x4b\x93\x4e\xcf\x25\x62\x03\xa3\x27\x47\x6c\x60\x79\xcf\x68\xd2\x15\xf0\x74\x46\x93\xae\x80\x30\x33\x9a\x74\x05\xf4\x99\xd1\xa4\x43\x69\xc4\xc5\xfd\xfc\x88\xff\xa1\x49\x57\xf8\x88\xb3\x74\xe7\x40\x3d\x59\xba\x73\x2c\xa2\x59\xba\x73\x00\x96\x2c\xdd\xb9\xa1\xff\xa1\x3b\xb7\xb0\x4f\xba\x73\x24\x88\x67\x69\xcb\xe9\xbd\x4b\x5b\xee\xea\x0e\x62\xd5\xe0\x99\xa1\x2d\x57\x59\x0c\x33\x75\x99\x95\x09\x3a\xa3\x2d\x57\x01\x25\x19\x6d\xb9\xca\x28\xcf\x68\xcb\xd5\x87\xbb\x53\x7b\x09\xe5\x69\xc9\x54\x54\x56\x50\x64\xce\x28\xaa\x75\xde\xb4\x14\xe3\x3a\xfd\x94\x62\x1c\x53\x4f\x96\x62\xdc\xd0\xff\xe8\xd9\xc4\x06\x29\xc6\xc9\x3e\x29\xc6\x6d\xde\x98\x14\xe3\x98\x43\x32\x5a\x6f\x2d\xd2\x33\xb4\xde\x5a\xd2\x99\x68\xa8\x31\xb5\x66\xe9\xb9\x91\xe1\x9e\xa9\x77\x6c\x78\x47\x99\x7a\xc7\x56\x74\x26\x5a\x6f\x84\x03\xb3\xb4\xde\x34\x5a\xa5\xf5\x06\xcc\xca\x8e\x61\x4b\x63\x09\xcf\x8e\x61\x4b\x03\x66\x65\xe9\xc0\x35\x9d\x89\x0e\x9c\xc6\xb5\x74\xe0\x8c\xa7\x24\x1d\x38\xd3\xef\xb0\x41\x63\x57\x3a\x70\x43\xbf\x43\x07\xce\xfe\x85\x92\xb3\x24\xe2\xf4\xa8\xa5\x03\x37\x74\x03\x4c\x67\x0a\xc9\xe8\xc0\xb5\xad\x23\x4c\x3f\x9c\x89\x0e\x5c\xd3\xe7\x20\x1d\xb8\xc0\x00\x91\x0e\x1c\x68\x37\xa3\x03\xd7\x0e\xdd\x94\x0e\x1c\x93\x70\x96\x0e\x1c\x13\x6d\x96\x0e\x1c\x2e\x4f\x46\x07\x0e\x06\xd9\x92\xd1\x81\xeb\x7a\x29\xe8\xc0\xf5\xc2\xcb\x44\x07\x0e\x96\xd8\x92\xd1\x81\xeb\x55\x77\x77\xfb\x7a\xd3\x11\x55\x17\x60\xd8\x8c\xd6\x5b\x37\x06\x2b\x54\x36\x7d\xe8\x88\x9e\x2d\x5e\x03\x0a\x6e\x88\xff\x97\x0c\xcd\x4d\x07\x99\x66\x68\x6e\xfa\xd6\xef\xe8\x99\x9e\x19\x0a\x6e\x5d\xb6\x43\x71\x63\x41\x67\xa2\x42\x17\x75\x26\x2a\x74\x9a\x5a\xa1\xb1\xa1\xac\xb6\x64\x68\x6c\x8c\x45\x26\x43\x63\x63\xfa\x18\xc1\xb0\xa6\xe7\x02\x86\xb5\x47\xff\x83\xaa\x46\x43\xf7\x45\x55\xc3\x1b\x7b\x51\xd5\xf0\xe4\x5f\x54\x35\xba\x0a\xfd\x6c\xfa\x1d\x45\x1d\x4d\x67\xa2\xa4\xa7\x27\x08\x55\x8d\x75\x5d\x13\x1b\x8c\xf7\x00\xf6\x35\x8d\x33\xb0\xaf\x0d\xac\x05\xfb\x1a\xd8\x22\x83\x7d\x6d\xea\x4c\x7f\x0f\xa6\xe9\x0c\xec\x6b\x7a\x0f\xd0\xd4\x18\x1e\x57\x46\x89\xcd\x40\x52\x19\x5c\x6c\x57\x67\x62\xdf\xd5\x35\xdd\xbe\x11\x74\x3f\xa8\x78\x02\xbd\x46\xa5\x6d\x44\x5d\x65\x73\xa4\xff\xb9\x7d\x23\xe9\x9a\x97\x23\xde\x8a\xef\xe5\x94\xa1\x49\x03\x74\x3d\xf4\x8e\x40\xd0\xe3\xd1\x99\x85\x23\x9e\x99\xef\xc5\x94\xa1\xb1\x0b\xba\x1e\x7a\x2b\xa0\xeb\xa1\x67\x0d\xba\x1e\xa6\x33\xb1\x41\x0b\x02\xe8\x7a\x68\xec\x82\xae\x87\xa6\x09\xd0\xf5\x98\xba\x0a\x36\x2c\x9d\x89\x0d\x1a\xbb\x20\xef\x01\x48\xc8\x13\x1b\x88\xc0\x66\xdf\x5b\x29\x70\xc5\x95\xec\xfb\x2a\x05\xc1\xfe\x92\x7d\x4f\xa5\x4c\xf5\x1a\xc4\x3e\x35\xf1\x81\xd8\x61\x79\x2b\x19\xc4\x3e\x35\x42\x40\xe5\x53\x93\x1b\xc8\x7b\x6a\x4c\x80\xbc\x27\x5e\x78\x06\x5d\x4f\xc2\x5e\x19\x74\x3d\x27\x4f\x10\x74\x3d\x35\x42\x40\xd7\x73\x71\x15\xd0\xf5\x94\x45\x20\xe8\xa9\xf1\x02\x82\x9e\x1a\x21\x20\xe8\xa5\x99\x08\x04\xad\xb2\xa6\x0c\x82\x5e\x04\xcf\xf2\x92\xba\x22\x36\x2c\xd4\x15\xb5\xf4\x2f\xa9\x2b\x32\xe6\xb7\xd4\x15\xe9\x35\x78\xda\x19\x87\xff\x7b\x4a\x06\x6a\xa3\x90\x50\x32\x42\xd1\x28\x24\x94\x8c\x50\xf4\x32\x6e\x87\x50\xf4\x32\x9d\xe9\xe6\xad\xa9\xff\x19\x47\x98\x07\xf2\x5e\x5b\x57\xc1\xbc\x83\x09\xa0\xeb\xad\x21\x0f\xba\xde\xb8\x5f\x19\x74\xbd\x35\xa1\x80\xae\xb7\x06\x32\xe8\x7a\x6b\xa2\x05\x5d\xef\xc2\x6b\x00\x41\x6f\xad\x8c\x20\xe8\x2d\x54\x87\xc6\xf3\x16\xb2\x39\x08\x3d\xe2\xb2\x66\x8f\x95\x97\xad\x61\x8d\xfe\xf3\xd6\x14\x82\xfe\xf3\xc6\x81\xcd\x60\xed\xad\xd5\x0f\xac\xbd\x85\x11\xc0\xda\x7b\x71\x15\xb0\xf6\x5e\x58\x0b\xd6\xde\xc4\xea\x32\x58\xfb\x10\x02\xc8\x68\x43\x23\x49\x5f\x32\xda\xd0\x47\x18\x01\x1c\x7e\x34\xe4\xc1\xda\x0a\x2e\x65\xb0\xf6\x69\x3a\x13\xb1\x4a\x0d\x72\xb4\xa1\x15\xe7\xca\x68\x43\xab\x44\x2f\x83\xc3\x8f\x93\xf7\x94\x07\x1c\x7e\x08\x6a\x3c\xe0\xf0\x43\xaf\x1f\x70\xf8\xd9\xfa\x1f\x4c\x5e\x5b\xff\xc3\x06\xbc\xa3\x07\x1c\x7e\xd8\x9a\x79\xc0\xe1\x97\x45\xe6\x01\x87\x23\x87\x5e\x1e\x70\xf8\x65\x3a\x7b\xc0\xda\xc8\xa1\x97\x07\xac\x8d\x42\x56\x79\xd0\x7f\xbe\x8c\x82\x07\xfd\x67\x08\x61\xca\x03\x0e\x87\xa9\xa9\x3c\xe0\xf0\x4b\x50\xe3\x01\x87\x43\x03\x58\x1e\xb0\xf6\x65\xf1\x7d\xc0\xda\xd7\x89\x0d\xcb\x03\xd6\xbe\x94\x4a\x3e\x60\xed\xcb\x74\xf6\x80\xb5\x91\xdd\x2a\x0f\xda\xd0\x77\xe8\x7e\xf4\x73\xe9\x9a\xf4\x05\xcf\xf0\x01\x4f\x5f\x7c\xc1\x07\x8d\x67\x08\x04\xcb\x83\xc6\x33\x54\x35\xe5\x01\x6b\x5f\x82\x13\x0f\x2a\x66\x0a\x04\x3d\xa8\x98\x05\x3c\xc3\x07\x15\xb3\x00\x28\x79\x50\x31\x0b\x80\x92\x07\xea\x94\x40\x40\xee\x41\xc5\x4c\x25\xb8\x0f\x2a\x66\x81\xaf\xe3\x11\x3d\x4a\xd3\x11\xe2\x9f\xe0\xbf\x27\x21\xfe\xd9\xe9\x27\x2a\x66\x0a\xef\x3c\xa8\x98\xa1\xa8\x51\x1e\x54\xcc\x50\xd4\x28\x0f\x2a\x66\x01\xbf\xe6\x41\xaa\x2c\xf0\x1d\x3d\x48\x95\xc1\xb6\x5c\x1e\xa4\xca\xd0\x1b\x2c\x0f\x1c\x28\x08\xca\x97\x27\x63\x03\x21\x80\x27\x63\x03\x4b\xf1\x03\x07\x4a\x58\x3a\x93\x7e\x12\xfa\x79\x1e\xfa\xa9\x31\x08\x97\x89\x36\x03\x9f\x07\x11\xcf\xa0\x33\x33\x47\x5c\xf3\x91\x48\xa9\xce\x94\x48\xa9\xfe\x27\x91\x52\xfd\x4e\x22\xa5\xd8\xf7\xc0\x42\x97\x75\x3f\x58\xe8\x08\xfd\x3c\x0f\x22\xa5\x8f\xfe\x87\x48\xe9\xa3\xff\x21\x52\x5a\x75\x3f\x44\x4a\x7f\xa0\xcd\x7f\x4e\xc9\x0f\xd5\xba\x51\x43\xb7\x60\x02\xce\xca\x53\x30\xc1\xb8\x24\x74\x25\x71\x30\x08\x0a\x26\xb0\x41\xf3\x14\xba\xa2\xcf\xb6\xd0\x15\xd0\xe0\x43\x79\x6c\xc4\xed\x7e\x28\x8f\x8d\xa0\xeb\xa7\x4a\x13\x95\x17\xe6\x78\xba\x26\x56\xe2\xa7\x4a\x13\x95\x17\x5d\xd1\x44\x8d\xf4\xa5\xa2\x89\xca\x04\xf6\x54\x34\x51\x13\x77\xa8\x68\xa2\x26\x6c\xa8\x68\xa2\x12\x2d\x7b\x2a\x9a\xa8\xfa\xc0\x2b\x9a\xa8\x45\x57\x41\x13\xb5\xe8\x7f\x68\xa2\x16\xdd\xcf\x6d\x48\x2c\x5c\x8f\x47\x88\x6b\x9a\xf4\xac\xd1\x33\x56\xf0\xa7\x71\x77\x4d\x6e\x8d\xbb\x1f\xfd\x8f\xbb\xeb\x43\x6d\x48\x96\x06\xee\xe7\x98\xb9\xa2\x1f\x57\x1e\x4f\x39\xab\x0a\xda\x3c\x0d\x45\x56\x6a\xaf\x9f\x26\x45\x56\xf5\x05\x45\x56\xe2\xb0\x4f\x47\x91\x15\x24\xfc\x74\x14\x59\x65\x51\x97\xec\x2a\x6f\xba\x23\xbb\xaa\xc9\xad\x23\xbb\x4a\x6c\xf0\xe9\xc8\xae\x12\xa3\x7d\x3a\xb2\xab\x1a\x21\x1d\xd9\x55\x16\xae\xc7\xb1\x76\xcd\xa6\xbb\xbb\x7d\x79\xe8\x7e\xd8\x37\x74\x4d\xec\x1b\xba\x26\xf6\x81\x6c\x9e\x8e\x7d\x4b\xd7\xc4\x3e\x4d\x7c\x1d\xfb\xf4\x3c\x0d\xfb\x88\xd8\x3e\x86\x7d\x57\x47\xc8\xb5\x6a\x72\x33\xc9\xb5\xf2\x6e\x0d\xb9\x56\x96\xb8\xc7\x90\x6b\x25\x4c\xf3\x98\xe4\x5a\x75\x15\xe4\x5a\xf5\xde\x4d\x9c\x51\xf4\x13\x4a\xc8\xa7\xea\x4c\xb7\x4f\xa1\x98\xc7\x90\x72\xed\xba\x26\x52\xae\xa6\xfb\x89\x0e\x52\x57\x81\x0e\x72\xe8\x2a\xc8\xd1\xea\x29\xa1\x88\xfc\x0c\x6c\x47\x11\x19\x6e\xbe\xf2\xa0\x88\xfc\x90\x71\xf0\x40\x13\xf9\x6c\xae\x09\x0d\xe4\xc3\x96\xda\x83\xea\x71\xd1\x77\x04\xb9\x63\xd1\x58\x82\xdc\x11\x82\xa7\xf2\x40\xee\x58\x34\xf5\xa0\x65\x5c\x32\x4f\x10\x02\xc7\x82\x8f\xf5\x40\xe0\x58\xf4\xad\x40\xe0\x58\x34\xce\x20\x70\x2c\x44\x65\x1f\x08\x1c\x8b\xbe\x15\x08\x1c\x8b\x26\x68\xf4\x8a\x8b\xe6\x10\x08\x1c\x15\xde\x79\x20\x70\x2c\x7a\x12\x10\x38\x96\xc1\x7b\x87\xc0\xb1\xe8\x8b\x83\xc0\xb1\x6c\x9d\x89\x0d\x5b\x77\x38\x9f\x4b\x00\x44\x8c\x88\xf7\x97\x07\xb2\xc5\xca\x86\xec\x03\xd9\x22\xba\x81\xe5\x71\x04\x5d\x2b\xe0\xf0\x71\x04\x5d\xab\x9e\x12\xe2\xc2\x55\xdf\xdf\x82\x2c\x53\x53\xf2\x82\x2c\x93\x4d\xc9\x07\xe1\xe1\xaa\x85\x12\xe1\x61\x05\x89\x1e\x84\x87\x5d\x6f\xf0\xbf\xa7\x64\x34\x89\xab\x3e\x54\x34\x89\xab\x70\x07\x9a\xc4\x8a\x34\x3d\x68\x12\x43\x92\x5e\x1e\x34\x89\x2b\xb1\x97\x07\x4d\xe2\xda\x18\xc8\x1b\x83\x4c\x67\xba\x41\x46\x50\xe3\x41\x69\xb8\x0a\x9d\xa1\x34\x5c\xf5\xc1\xa1\x34\x5c\x89\x5d\x3f\x28\x0d\x57\x3d\x5c\x94\x86\xab\xf0\x18\x4a\xc3\xf0\xcc\x96\x07\xa5\xe1\xa6\xb5\x10\xa5\xe1\xa6\xc9\x1b\xa5\x61\x45\xa8\x1e\x94\x86\x15\xa1\x7a\x50\x1a\x46\xd0\xb0\x3c\x28\x0d\x37\xad\x77\x28\x0d\x37\xad\x70\x28\x0d\x23\x45\x58\x1e\x94\x86\x9b\x10\x03\x4a\xc3\x4d\x28\xcb\xb1\x76\x55\x6c\xe9\x41\x69\xb8\x69\xad\xbf\x62\x29\xe5\x0e\x52\x1a\xd6\x27\x26\xa5\x61\x21\x53\x29\x0d\x6b\x51\x93\xd2\x30\x14\x25\x8f\x94\x86\x35\xb1\x4b\x69\x58\x08\x0c\xa5\xe1\x0e\x97\xc2\x83\xd2\x70\x17\x4e\x45\x69\xb8\x6b\xe1\x42\x69\xb8\x13\x67\x7e\xa4\x34\x2c\x64\x2a\xa5\x61\x4d\xf3\x52\x1a\xd6\x08\x91\xd2\x30\x58\xb4\xa0\x26\xdc\x19\x05\x05\x35\xe1\x8e\xa3\x5d\x50\x13\xee\xa0\xac\x82\x9a\x30\xb4\xa0\xa5\xa0\x26\xdc\x87\x7e\x07\x7f\x1c\x9f\x5f\x41\x4d\xb8\x6f\x9d\x89\x0d\x4c\xc2\x05\xc5\xe0\xce\x12\x57\x50\x0c\xee\xd8\x5e\x50\x0c\xee\x38\xda\xc5\xf1\x74\x55\x58\xa8\x44\x14\x91\x03\xf7\x43\x4d\xd8\xc8\xe9\x28\xa8\x09\x5b\xd4\x99\x62\x8b\xe5\xee\x11\xb6\x58\xc6\x44\x89\x28\x22\x43\x52\x52\x50\x1a\xb6\xaa\xdf\xa1\x7a\x2c\xdb\x51\x13\x36\x70\x78\x41\x4d\xd8\x64\x3b\x6a\xc2\xf0\xf9\x96\x82\x9a\xb0\x2d\xdd\xe1\x70\xa4\xff\xdd\x8f\x2f\xa7\xa0\x26\xac\x70\x4b\x41\x4d\x78\x00\x58\x0a\x6a\xc2\xda\xe9\x2f\xa8\x09\x2b\xc0\x52\xc0\xe1\x83\x49\xa3\x80\xc3\x51\x60\x2e\x05\x1c\x3e\x2a\xcf\x13\x1c\x3e\x88\x99\x16\xb0\xf6\x60\x59\x29\x60\xed\x81\x1f\x5c\xc0\xd3\x83\xaf\xb8\x80\x99\x07\x9b\xc3\x05\xcc\x3c\xae\xfe\xe7\xf7\x9b\xa0\xd6\x02\x2e\x9e\x7a\x0f\xe0\xe2\x49\xe8\xa7\x80\x8b\xd1\x68\xf4\xb0\xbf\xab\x3a\xf3\x74\x3d\x92\x5d\x27\x11\xfe\xe2\x91\xec\x8a\xe4\x51\x29\x70\x03\xce\xa2\xff\xf9\x33\x9b\x84\xe0\x0a\x78\x5a\x41\x94\x02\x9e\x9e\xf8\x97\x05\x3c\x8d\xe4\x51\x29\xe0\xe9\xc9\x5e\x40\x01\x17\x43\x43\xe9\xdb\x0c\x7e\x84\x45\x80\xd8\x09\x8f\x4b\x21\xff\x62\xe1\xf5\x17\xb8\xfa\x16\x5f\x5c\x29\x28\x3e\xe3\xe5\x14\x31\xf0\xfd\x78\x86\xff\x39\x25\x17\xd0\x2e\xec\x95\xa5\x78\xb0\xba\xa2\xbe\xe4\xbb\x1a\x7e\xa4\x4b\x22\x61\x2d\x63\x45\x22\x03\x76\x2a\xa0\x64\x05\x3c\x0a\x28\x79\x99\x7e\x87\x84\x35\x91\xc2\x02\x4a\x56\xc0\xa3\x14\x0c\x22\xf2\x53\x2a\x06\x11\xf9\x29\x20\xe8\xa5\x4f\x13\x04\xbd\xc0\xda\x05\x04\xbd\x98\x96\x0a\x08\x7a\x11\x15\x2a\x20\xe8\x1d\x74\x26\x12\xd6\x41\xd7\x44\xc2\x1a\xc4\x50\x40\xd0\x9b\xad\xb1\x02\x82\xde\x1a\x20\x20\xe8\x5d\xf4\x3b\xb7\x0f\xe6\xd5\x52\x40\xd0\xdb\x74\x77\x68\x96\xf5\x32\x3d\x1b\xa3\xee\xa9\xa3\xcb\x11\xf6\x79\xb4\xba\x6e\x36\xa7\x0a\x58\x7b\xe3\x8c\x15\xcf\xc6\xa8\xa8\x0b\x94\xe2\xd9\x18\x75\xe3\x3d\x14\x70\xf8\x96\x7d\x1e\xd7\xae\x47\x9f\xa6\xc7\xb5\x2b\xac\xfb\xa5\x80\xd1\x8f\xde\x26\x18\xfd\x68\xe8\x82\xd1\x8f\x86\x2e\x18\xfd\x54\xfd\x6f\x72\x84\xed\x4d\x12\xdd\x3a\x13\x89\x6e\x16\x99\x02\x46\x3f\xe0\x9c\x02\x0e\x3f\xa0\x97\x02\x0e\x3f\x44\x2d\x0b\x38\xfc\x2c\x9d\xf9\x70\xc4\x1d\xc0\xe1\x47\xef\x1d\x1c\x7e\xf4\xde\xc1\xda\x57\x16\x81\xb5\x95\x77\x53\xc0\xda\x37\xe8\x77\xde\xcf\xab\xc9\x14\xac\x8d\x0a\x42\x29\x60\xed\xab\x27\x01\xd6\xbe\x78\x16\x05\xac\x7d\x35\xae\xc1\xda\x17\x94\x5c\xc0\xda\x57\x4f\x09\xac\x7d\x59\x98\x0b\x58\xfb\x76\x9d\x09\xdd\xb5\xe9\x08\xba\x6b\x30\x5e\x01\x6b\x5f\x8d\x79\xb0\xf6\xd5\xb4\x0b\xd6\x56\xc0\xa3\x80\xb5\x95\x33\x5b\xd0\xde\x55\x06\x4b\x41\x7b\x17\x49\xa7\x52\x1c\x6b\x37\xe5\xcd\x17\x83\x9f\x55\x13\x2d\xba\xbc\x01\xef\xaf\xa0\xcb\xab\x30\x46\x41\x97\x37\x68\x12\x46\x7c\x37\x98\xce\xcc\x1c\xd1\x6b\xc4\x77\x95\x6d\x52\x10\xdf\x15\x23\x58\x41\x7c\x57\xb9\x20\x05\xf1\x5d\x64\x9b\x4a\x41\x7c\x57\x29\x71\x05\xf1\xdd\xa8\x67\x8d\xf8\xae\x12\x0e\x0b\xe2\xbb\x91\xad\xc6\x82\xf8\x6e\xd4\x6c\x83\xf8\xee\xb3\x75\xa6\xdb\xa7\xd4\xb6\x82\xf8\x2e\x52\x50\xa5\x20\xbe\x1b\xd9\xc1\x28\x88\xef\x46\xd3\xff\xdc\xbe\xa8\x27\x8f\xc0\x6e\xd4\xd2\x81\xc0\x6e\xdc\x3a\x13\x1b\x20\xcc\x2a\x88\xe8\x26\xcd\x0c\x88\xe8\x26\xcd\x0c\x88\xe8\x26\x2d\x71\x88\xe8\x26\xbd\x15\x44\x74\x95\xd3\x51\x10\xd1\x4d\x5a\xb4\x3d\xdb\xa4\xa5\xa2\x23\xef\x67\xaa\xff\x8a\x25\x97\x85\x14\x3c\x91\xa6\x82\x12\x2f\xfa\x9e\xa5\xa0\xc4\x9b\x34\xe8\x50\xe2\x4d\x5a\x39\x50\xdb\x4d\x7a\x80\xa8\xed\x26\x10\x6d\x81\x1a\x3d\x69\x75\x87\x1a\x3d\xeb\x33\x82\x1a\x5d\x2e\x79\x81\x1a\x3d\x13\x1c\x2f\x50\xa3\x43\xe5\x5c\x0a\xd4\xe8\x08\x7c\x96\xb2\x25\xe9\x4e\xcf\xa0\x38\xcf\x42\x67\x50\x9c\x67\x12\x58\x0a\x14\xe7\xca\x87\x28\x50\x9c\x43\xc8\x57\x0a\x14\xe7\x59\x16\x41\x71\x9e\x35\x99\x42\x71\x0e\x1d\xa0\x6f\x81\xfb\x11\xbd\x86\xe2\x3c\xb3\x29\x52\xa0\x38\x17\xd3\x58\x41\x51\x57\xce\x74\x41\x51\x37\xb3\xa1\x57\x50\xd4\x45\xb1\xaa\x14\x14\x75\x33\x9b\x4c\xe5\x20\x59\x7f\x19\x90\x28\xea\x3e\xec\x3e\x17\xc7\xe8\xed\xd1\xb0\x76\x1c\xde\x1e\xad\xf5\x87\xa1\x8b\x8b\x5c\x3c\xe6\xdd\x94\xad\x50\x3c\xe6\xdd\x1e\x0d\x4f\xc7\xe8\xed\x11\xfa\x74\x1c\xde\x1e\xf5\xda\x71\x78\x7b\xd8\x09\x2f\x8e\xc3\xdb\x23\x1b\x1c\x87\xff\x7e\x1c\x8e\xc3\xdb\x43\x82\x63\xb9\xf4\x53\x13\xca\xa5\x9f\x42\xad\x8e\xc3\xdb\xa3\x85\xc4\x71\x78\x7b\x84\x96\x2e\x1c\xc8\x42\xad\x8e\xc3\x5b\x11\xb6\xb8\xd0\xe5\x83\xdf\xcb\x85\x2e\x1f\x37\xb1\x06\xe8\xf2\x41\x4b\xd5\x63\xde\xad\x64\xfd\x0f\xf9\x7c\x5c\xeb\xea\x18\xbd\x15\x72\x48\xaa\x63\xf4\x56\x8a\x8e\x0a\x47\x97\x23\xe4\xf3\x09\x47\x54\xc7\xe1\x0d\x81\x56\x4f\x68\x70\x81\x7e\x1d\xc1\xe3\x4c\xe8\xae\x06\x6c\x20\x44\x55\x1d\xa3\xb7\x8a\x0d\xd5\x31\x7a\x93\xe3\x5b\x1d\xa3\x37\xb9\xba\x35\x42\xeb\x8f\x3b\x5b\x23\xb4\xfe\x4c\x9f\x35\x42\xeb\x5f\x74\xa6\xf7\xb3\xaa\x2f\x1e\xd7\x6e\xf2\x36\xab\x63\xed\x86\x9e\x44\xa9\x8e\xb5\x9b\xf2\x1a\x6a\xa4\x2f\x5b\xd7\xa4\x2f\x47\xf7\xa3\x2f\xf8\x12\xd5\xb1\x76\x6b\x41\x47\xfe\x3c\x9b\x6c\x70\x3c\xdd\xe4\x5f\xd6\x84\xc4\x00\xf1\xfe\x9a\x90\x18\x20\x4b\xa5\x42\x09\xde\x1e\xfd\x0e\x49\xfe\xa2\x23\xef\x67\x03\x8b\x56\xa8\xbd\x5b\xd7\xef\xbc\x2f\x8d\x58\x72\x85\xbf\x1b\x21\xd9\x52\x33\x7d\x61\xaf\xa3\x66\xa4\xf5\xc9\x5c\xaa\x8e\xc3\x5b\x63\xbf\xa6\x66\xfa\xb9\x75\x15\xfa\xb9\x75\x26\xfd\x64\xa2\xad\x1e\xbb\x6e\x3d\xe8\x0e\xc8\xd2\x47\xdd\x01\x59\x7a\x02\x17\xd5\x31\x7a\xeb\x7a\x7f\xf0\x77\x77\xbd\x23\xf8\xbb\xfb\xa3\x6b\x6e\x8e\x78\x4a\x8e\xd1\x5b\x97\xed\x8e\xd1\x5b\x67\x12\xae\x0f\xd2\xfa\x04\xba\xaa\xe3\xf0\xd6\xfb\xbf\x4a\x45\xaa\x87\xbc\x5b\x67\xa2\xad\xd0\x77\x77\x20\x7a\x85\xbe\xbb\x83\x68\xeb\x83\x79\x20\xbe\xfa\x48\x75\x9f\xe1\xf2\x60\x1e\xc4\x85\xf5\xc1\x3c\x3d\xb2\x07\xf3\x88\xfc\xd4\x07\xf3\xf8\xc0\xeb\x83\x79\x5b\x57\xc1\x3c\x3e\xf0\xfa\x60\x1e\x91\xc2\xea\x2e\x41\x93\x93\x5a\xdd\x25\x68\x9d\x64\xa1\x0a\x0b\xa5\x9c\xd4\x0a\x0b\xa5\x88\x1e\xab\xc7\xc3\x9b\xb1\x67\x5e\xdd\x79\x68\x86\x83\x57\xa1\xef\x16\x3f\x66\x2d\x28\x59\x30\x0d\xd6\x82\x92\x05\xcb\x43\x75\x0f\xa1\x99\x5e\x91\x7b\x08\xcd\x58\xdd\xab\x7b\x08\x0d\xd1\x9d\x52\xdd\x43\x68\x88\xee\x94\xea\x1e\x42\xb3\xaa\x3b\xb8\x7d\x72\x6e\xab\x7b\x08\xcd\xd8\x68\xa9\xee\x21\x34\xe5\x2e\x54\xf7\x10\x9a\x31\xd1\xd6\x8a\x7d\x2c\x24\xb5\x62\x9f\xa6\x89\x8a\x7d\x7a\x7f\x15\xfb\xd8\xa7\xae\x15\xfb\x96\x8e\xb0\x8f\xc5\xa2\x56\xec\xd3\x67\x5b\xb1\x0f\xc4\x5e\x2b\xf6\x81\xd8\x6b\xc5\xbe\xab\xbe\x60\x9f\x86\x7c\xc5\xbe\xab\xbe\xb8\x7d\x03\xff\xa4\xba\x87\xd0\x06\x59\x23\xd5\x3d\x84\x36\x98\x76\xab\x7b\x08\x6d\xe0\xa4\x56\xf7\x10\xda\x00\x77\x54\xf7\x02\x9a\xf2\x13\x6a\x83\x62\x1d\x8c\x57\xdd\x0b\x68\xa3\xea\xc8\x6d\x18\x7a\x82\x0d\xb5\x91\xae\x6b\xba\x0d\x43\x4f\xd0\xbd\x80\x36\x4c\x67\xba\x0d\x28\x0d\x97\xda\xa0\xc8\xd7\x88\x6c\xd8\x70\xf4\x3f\x6c\x60\xd3\xae\x76\x6c\xd0\x93\xe8\xd8\xc0\x92\x5a\xdd\x43\x68\x13\x27\xb5\xba\x87\xd0\xa6\x3e\x70\xf7\x10\xda\xd4\x38\x73\x0f\xa1\x4d\xa2\xdc\xd5\x3d\x84\x36\xc1\xbe\xd5\x3d\x84\x36\x09\x24\xd4\x8e\xc2\x41\xd7\xff\x26\x47\xba\xca\xe2\x08\x8b\xdc\x43\x68\x13\xb4\x5b\xdd\x43\x68\x93\x6d\xb3\xea\x1e\x42\x9b\xfa\x8a\xdd\x43\x68\x73\x72\xa6\xd1\x4f\x7d\xd3\x46\x3f\x97\xce\xa4\x9f\xf8\x35\xd5\xe8\xa7\x9e\x12\x68\x1e\x2d\xbb\x52\x41\xf3\x0b\xbf\xa6\x82\xe6\x97\xbe\x46\xd0\xbc\x32\x19\x2a\x68\x5e\x8e\x7d\x05\xcd\x2f\xfc\x9a\x0a\x9a\x5f\x24\xaf\x56\xd0\xfc\x4a\xfc\x0e\x34\xbf\xf4\x94\x40\xec\xe8\xa8\x79\x5e\x9e\x2b\xc9\xe8\x77\x9d\x23\x9e\x20\x88\x7d\x69\x52\x04\xb1\x2f\x7d\x8d\x20\xf6\xd5\x74\x07\x6c\xe8\xba\x26\x36\x80\xb5\x2b\x88\x7d\x4d\xf5\x13\x1b\xf4\x55\x81\xd8\x97\x16\x43\x10\xfb\xd2\xe8\x01\xb1\xcb\x43\xaf\x1e\x7f\x6f\x3b\xfe\x43\x8c\xb3\x54\x0f\xcd\xb7\x8d\xf3\x57\x01\xfa\x3b\xe9\xa8\x72\x84\x79\x00\xfd\xad\x29\xcb\x43\xf3\x4d\x39\x0f\xd5\x43\xf3\x6d\x0b\x93\xe0\x04\x6c\x7d\x38\x38\x01\x72\xfa\x2b\x4e\xc0\x26\xe0\x51\x71\x02\xb6\x26\x29\x9c\x80\xdd\x75\x4d\x37\x7d\x6b\x98\x81\xd8\xe5\xae\x57\x10\xbb\x9c\xfe\xba\xe8\x8b\xa6\x72\x84\x8e\xf6\xa1\x9f\xa0\xf9\x7d\xf5\x3f\xef\xcb\x11\x0e\x00\xcd\x1f\x59\x04\x9a\x3f\xa4\x93\x55\xd0\xfc\x21\xba\x5a\x41\xf3\x07\x87\xa4\x82\xe6\x0f\x5b\x1d\x15\x34\x7f\x88\xb5\x56\x84\x8e\x8e\xf0\x18\x42\x47\x47\x4f\x02\xa1\xa3\x23\x04\x06\xd2\x57\x66\x41\x05\xe9\x5f\xb6\x95\x2a\x48\xff\x12\xa7\xac\x20\xfd\xdb\x75\xbf\xc9\x11\xbd\x06\xe9\xdf\xae\xab\xb8\x0d\x72\x9f\x2b\x48\xff\x82\xfb\xab\xc4\x8c\x70\x44\xab\xc4\x8c\x48\x24\xaa\x20\xfd\x4b\x90\xa1\x82\xf4\x95\x59\x50\x41\xfa\x72\xb4\x2b\x62\x46\x2a\x3c\xad\x88\x19\x29\x43\xa0\x22\x66\xa4\x52\x91\x8a\x60\x91\x4a\xb0\x2b\x82\x45\x72\xbb\x2b\x82\x45\x21\xeb\x7f\x2e\xa0\xa2\xec\x81\x8a\x60\x91\x9c\xf0\xea\x5e\x40\x0f\x55\x47\x97\x23\xee\x80\x58\x91\xca\x41\x2a\x62\x45\x2a\xeb\xa8\x88\x15\xa9\xc0\xb6\x22\x56\x14\x96\x7e\x87\x0d\x82\x0c\x88\x15\x05\xf6\x25\x2a\x62\x45\x2a\xcf\xa8\x88\x15\xa9\x90\xa3\x22\x56\x14\xae\xee\x60\xc8\x3a\x31\x76\x11\x2b\x8a\x1a\x59\xee\x21\x74\xd5\xeb\x55\xf7\x10\xba\x6a\xcf\x2a\x42\x45\xda\xa3\xaf\x08\x15\x45\x61\x7b\x84\x8a\x22\x98\xab\x21\x54\x14\x41\xf3\xcd\x3d\x84\xae\xda\xb3\x86\x50\x51\x64\x0a\x69\x08\x15\xa9\x3c\xa3\x21\x54\x14\x4d\xff\x43\x70\x6a\xe8\x9a\x95\x23\x9d\xe9\xf6\xa1\xc7\x5c\x9a\x47\xf1\x7b\x5c\xfa\x1f\xf6\xb1\x7b\xd3\x02\xbd\xbe\x3a\x93\x5e\xb3\x30\x37\xf7\x09\x3a\x3a\xce\xa5\x79\xdc\xbe\xab\xf2\xad\x79\xdc\xbe\x27\xc6\x44\x73\x7f\xa1\x27\x82\x83\xcd\xfd\x85\x9e\xf0\x72\x5a\x44\xdb\x85\x6f\xac\xb9\xbf\xd0\x13\xf3\x4b\x8b\xc8\x64\xe1\x31\xb7\x88\x4c\x16\x33\x4a\x8b\xc8\x64\x31\x87\x34\xf7\x25\xba\xd8\xbc\x9b\xfb\x12\x3d\x11\xa6\x69\xee\x4b\xf4\xa4\xe7\xe2\xbe\x44\x4f\x6c\x3c\xb6\x44\x3f\x09\xc8\xb5\x44\x3f\x09\x71\xb4\x44\x3f\x8f\xfe\x47\x3f\x29\xf5\x69\x89\x7e\x32\xdb\xb4\x84\x2c\x17\x30\xa4\xb9\xbf\xd0\x33\xcb\x4a\x43\x26\x28\xff\x33\x96\xdc\x3c\x6c\xdf\x11\x9f\x2e\xcd\xdd\x8c\x9e\x89\x50\x35\x77\x33\x7a\xc6\x59\x69\xee\x66\xf4\x8c\xb3\xd2\x90\x02\xca\xb8\x27\xcd\x5d\x89\xae\xd0\x41\x73\x57\xa2\x23\x4c\x5d\x9a\xbb\x12\x3d\xb3\xd6\x37\x77\x25\x7a\x26\x32\xd9\xdc\x95\xe8\x19\xc4\xd7\x32\xaa\x63\x4c\x28\x2d\x63\xde\xd0\xff\x30\x8f\x74\xf4\x96\x31\x8f\xf8\x5f\xcb\xd8\xc0\xa4\xd1\xdc\x95\xe8\x4f\xd4\x1d\xb0\x81\x00\x44\xf3\x70\x7f\x57\xf1\x44\xf3\x70\x7f\x7f\xf8\x38\x9a\xbb\x19\x5d\xc5\x13\xcd\xdd\x8c\xfe\x3c\xfa\x9d\xdb\xf7\x68\x48\xb8\x2f\xd1\xb5\x2b\xdf\xdc\x97\xe8\x0f\x5b\xa2\x0d\x29\x20\x15\x56\x34\xa4\x80\x54\x58\xd1\xdc\x97\xe8\x0f\x18\xa8\xb9\x2f\xd1\x9f\xa6\x33\x51\x55\x6b\xba\x1f\xaa\x6a\x44\xab\xdb\x83\xaa\x1a\x53\x79\xa3\x4c\x53\x01\x88\x56\xe8\x27\x53\x48\x2b\xf4\x93\xd0\x48\x73\xdc\xdf\x4b\xd0\x51\xe7\x88\x27\xe8\xb8\xbf\x17\xb6\xb8\x9a\xe3\xfe\x5e\xa2\xae\xe9\x7d\x29\x49\xd7\x5c\x1c\xe9\x2a\x9b\x23\x6c\x70\xdc\xdf\x8b\x46\x4f\x41\xdd\x8d\x20\x43\xab\xa8\xbb\xb1\xe4\xb4\x8a\xba\x1b\xcb\x58\x73\xdc\xdf\xb5\x63\xdf\x2a\xfd\x24\x0c\xd5\x2a\xfd\xec\x3a\xa2\x9f\x60\xdf\x56\xe9\xa7\x3e\x9c\x4a\x3f\x41\x83\xad\xd2\x4f\x32\x9f\x5b\xa5\x9f\x2c\x40\xad\xd2\xcf\xa9\x9e\xd1\x4f\x36\xd8\x9a\xc7\xed\x7b\x01\x1b\x36\x8f\xdb\xf7\xa2\x8f\xd1\x11\x7b\x2f\xfa\x18\x1d\xb1\xf7\xa2\x71\xd6\xe8\x35\x5e\x5c\x6b\xf4\x1a\x7f\xa1\x39\x2a\xef\x2a\xe4\x68\x8e\xca\x7b\x05\x0d\x36\x47\xe5\xbd\xea\x29\x39\x2a\xef\x35\xeb\x7e\x97\x23\x46\x41\x97\xf8\x96\x8e\xbc\x2f\x55\x23\xcb\xd1\x75\x47\xd5\xb0\x34\xcf\x83\xe9\x95\x72\xe7\xe6\x79\x30\xbd\x6a\xea\x71\xe4\xdd\x2b\xc1\xac\xe6\xc8\xbb\x57\xb6\x1a\x5b\xa7\x9f\xfa\xe2\x3a\xfd\xd4\xb7\xd2\xe9\x0b\xbb\x22\xcd\xd1\x75\xaf\x2c\x78\xcd\xe3\xef\xbd\xe2\x23\x37\xa3\x9f\x9a\xd8\x0d\xad\x3e\x16\xbc\x66\x68\xf5\xe9\x79\x1a\x36\xb0\x89\xdd\x0c\x1b\xf4\x74\x0d\x1b\x8e\xae\x82\x0d\x47\x77\xc7\x06\xb6\x8a\x9b\xc7\xdf\x7b\x03\x95\x37\x47\xec\xbd\x69\x09\x70\xc4\xde\x9b\xbe\x70\x47\xec\xbd\x11\x18\x6d\x8e\xca\xbb\x36\xf0\x9b\xa3\xf2\xde\xf4\x85\x3b\x2a\xef\x4d\xcb\x9f\xa3\xf2\xde\xd8\xc4\x6e\x03\x41\x2f\x82\x9f\xcd\x91\x77\x6f\xfa\x1a\x07\x7d\x21\x6b\xa4\x0d\xfa\x32\x75\x15\xfa\x02\x2c\x68\x83\xbe\xac\x7f\x65\x5c\x34\x07\xe5\x5d\x91\x98\xe6\xa0\xbc\x37\xf2\x68\xdb\xc4\x04\x3d\xc0\x89\x09\x20\xd3\x36\x31\x41\x6b\xc5\xc4\x04\x5c\xba\xe6\xc8\xbb\x37\x0d\x56\x47\xde\x5d\xd1\x9d\xe6\xc8\xbb\x37\x50\x6b\x73\xe4\xdd\x11\xe6\x2b\x6d\x4a\xe7\x4b\x77\x77\xd3\x95\x2f\xd0\x1c\x79\xf7\x1e\x75\xf7\xc9\x91\xae\xb2\x38\x62\xb2\x71\xe4\xdd\x3b\x8e\x61\x73\xe4\xdd\x3b\x01\x88\xe6\xc8\xbb\x77\xb6\x17\x9a\x87\xdf\x7b\xd7\x2a\xed\x09\x33\xbd\x13\x8e\x68\x9e\x72\xde\xbb\x56\xe9\x85\xec\xa3\x26\xe1\x85\xec\xa3\x26\xe1\x85\x1e\x5b\xd3\x99\xd8\xa0\xe9\x65\x61\x83\x56\xf0\x85\x0d\x5a\xb8\x16\x36\x10\x29\x6c\x0b\x1b\x08\x40\xb4\x85\x0d\x44\x2d\xdb\xa6\x9f\xa4\x18\x36\x47\xe5\xbd\x6b\xb0\x3a\x2a\xef\x5d\x93\xb0\xa3\xf2\x6e\xc4\xed\x9b\xc7\xdf\xbb\xc2\x34\x6d\x23\x4f\x29\x84\xb2\xd1\xff\x20\xb3\xa0\x39\x2a\xef\xa6\x89\xc1\x51\x79\x37\x1c\xc3\xe6\xa8\xbc\x2b\x30\xd3\x1c\x95\x77\x15\x9c\x34\x47\xe5\x1d\xb9\xc4\xd2\x1c\x95\x77\x23\xb1\xae\x39\x2a\xef\xa6\x41\xee\xa8\xbc\x1b\x2e\x64\x43\x62\xd4\x88\x8e\x37\x24\x46\xad\xe9\x7f\xd8\x40\x9e\x4f\x03\x95\x1b\x19\xc5\x0d\x54\x6e\x5a\xb8\x40\xe5\xca\x6b\x68\x48\x8c\xaa\x34\xa5\x81\xca\x4d\x93\x37\xa8\xdc\x34\x41\x83\xca\x4d\x13\x34\xa8\xdc\xc8\xa2\x6f\xa0\x72\xc3\xf5\x6c\xa0\x72\x13\x06\x02\x95\x1b\x28\xb9\x81\xbc\x55\x46\xd2\x40\xde\xca\x79\x68\x20\x6f\xe5\x3c\x34\x90\xf7\xc0\xf7\x6c\xa0\x6b\x85\x69\x1a\xe8\x7a\x68\x12\x06\x5d\x8b\x31\xa1\x81\xae\x87\xc6\x27\xe8\x7a\x08\x86\x80\xae\x87\x40\x02\xe8\x1a\x65\xe5\xd2\x41\xd7\x0a\xef\x74\x50\xf2\x60\xd4\x75\x50\xf2\x60\x8b\xb2\x83\x92\x15\xec\xe9\xa0\xe4\x81\xc7\xd5\x41\xc9\x03\x58\xd0\x03\xfd\x64\xdf\xa5\x07\xfa\x09\xb0\xea\x81\x7e\x9a\x7e\x47\x3f\x87\xfe\x47\x3f\x87\xfe\x47\x3f\xd9\x0e\xee\xe0\x69\x15\xb1\x74\xf0\xf4\x58\xfa\x5f\xe2\xa8\x72\xc4\xb3\x66\x72\xeb\xe0\xe9\x41\x45\x67\x07\x25\x2b\xdf\xa3\x47\x7a\xcd\x8c\xd2\x23\x42\xab\x41\x77\xf0\x5e\x4f\xde\x58\x07\x41\x2b\x80\xd4\x41\xd0\x13\x4f\xa6\x83\xa0\x27\xf0\xb3\x7b\x34\xbe\x4f\x42\x69\xdd\xa3\xf1\x5d\xd9\x1f\x1d\x74\x3d\x19\xd7\x3d\x89\xd5\x02\xdb\x41\xd7\x0a\x3c\x75\xd0\xf5\xfc\x19\xad\xff\x39\x25\x77\x80\xf7\xd4\x6b\xf0\x20\x7e\x47\xce\xb9\x74\x0f\xe2\x77\xb4\x3b\x4b\xf7\x20\x7e\x5f\x4c\x52\xdd\x93\xd3\xfb\x2a\x3a\x73\x70\x84\xe9\x00\xf6\x55\xd4\xe9\xc5\x91\xba\x89\x86\x2c\x2e\x79\x47\x84\x13\xe9\xc9\xd2\x41\xd7\x4b\x03\x04\x74\xbd\x58\x9b\x3a\x08\x7a\xb1\x4a\x77\x10\xf4\xd2\x0b\x03\x41\xaf\xa5\xdf\x71\x3f\x62\x3d\x1d\x04\xbd\x88\xa0\x76\x10\xf4\x02\xe7\x74\x10\xf4\x62\x3b\xaa\x83\xa0\x95\xc5\xd1\x41\xd0\x4b\xaf\x16\x04\xad\x50\x4c\x07\x41\xab\xfc\xa4\x83\xa0\x77\xd7\xef\x0a\x47\xdc\x01\x04\xbd\x65\x03\x08\x7a\x13\xd1\xec\x20\xe8\x3d\xf4\x3f\xe3\x88\x21\x01\x82\xde\x53\xf7\x9b\x1c\xf1\x39\x80\xa0\xb7\x9e\x04\x08\x7a\x6b\x58\x7b\x34\xbe\xa3\xe9\x5a\xba\x47\xe3\xfb\x06\xbd\xf4\x82\x5e\x2f\xf1\xfe\xee\xd1\xf8\xbe\x35\xac\x41\xde\x9b\x88\x58\x07\x79\x2b\xfb\xa3\x83\xbc\xb7\x86\x7c\xc1\x3e\x02\x1e\x1d\xe4\x7d\xd8\x30\xe9\x20\x6f\x85\x7e\x3a\xe8\x5a\xc1\x9e\x0e\xba\x3e\x1a\x21\x20\xe8\xa3\xa1\xeb\xd1\xf1\x7e\x4c\xff\x7b\x38\xe2\x8d\x79\x74\xbc\xab\xf8\xa5\x7b\x74\xbc\x1f\x96\xaa\x0e\xba\x3e\x6c\x78\x75\x10\xf4\x91\x7d\x20\x68\x95\xbb\x74\x10\xf4\x21\x38\xd1\x41\xd0\xe7\xea\x77\x87\x23\xfd\xee\x72\x26\x77\xf7\x08\x78\x17\xeb\x4a\x07\x4f\x2b\xc3\xa3\x83\x99\x2f\xf1\xe2\x0e\x66\xbe\x2c\x78\x1d\xcc\xac\x52\x98\xee\x51\xee\x7e\x09\xda\x74\x8f\x72\xf7\x8b\x27\xda\xc1\xd3\x17\x90\xd0\xc1\xd3\xca\x05\xe9\x1e\xad\xee\x57\xa3\x0e\xcc\xac\x22\x96\xde\xe9\x0b\x48\xbf\x77\x34\x95\xf1\x21\x3b\x78\x5a\x61\xa8\x0e\x9e\xbe\xfa\x3a\xc0\xd3\x77\xeb\x7f\xf4\x13\x44\xdb\xc1\xd3\x97\xf4\xae\x0e\x9e\xbe\x57\xd7\x9c\x2e\x3c\x0b\xa1\x41\x77\x94\x6c\x01\x0f\xa8\x3b\x4a\x36\x71\x1a\x76\x47\xc9\x16\xf4\x85\x3b\x4a\xb6\x40\xce\x4a\x77\x94\x6c\x2a\x38\xe9\x8e\x92\x4d\xa5\x22\xdd\x50\x7b\x5e\x3a\x13\xb5\xe7\xad\xff\x71\x77\x8d\x48\x47\xc2\xa6\xc0\x53\x77\x24\x6c\x31\xa8\x67\x87\x23\x9e\x92\xc7\xae\x4d\x14\x56\xdd\x51\xb2\x45\x80\x5c\x77\x94\x6c\x0a\x2e\xf5\x81\x5c\x2e\xf1\xfe\xee\x28\xd9\x44\x49\xd4\x3d\x13\xc5\x44\x06\xd5\x3d\x13\xc5\x14\x86\xea\x1e\xd7\xb6\xc8\xb2\xd9\x3d\xae\x6d\x62\x09\xe9\x8e\xae\x4d\x2c\x21\xdd\xd1\xb5\xc5\xfa\xcf\x29\xd9\x81\xb7\x45\x70\x5c\x77\xe0\x6d\x91\xe8\x5c\x77\xe0\x6d\x8a\x57\xf5\x81\x79\xc4\x5e\xfa\xc4\x3c\x1c\xa0\x3e\x31\x0f\x07\xa8\x4f\xcc\xc3\xad\xe9\x13\x13\x40\xde\x7d\xd2\x4d\x4d\x83\x93\x6e\x5e\xfd\x8f\xbe\x90\x10\xd4\x1d\xed\x1a\x32\xeb\xa5\x3b\xa2\x35\x91\x8b\x74\x47\x98\x96\xb4\x58\x38\xc2\xb4\x04\xaa\xeb\x8b\xdf\x69\x15\xf3\x98\xb0\x89\x6a\xa4\x3b\xc2\xb4\x84\xbb\xd7\x3d\x9b\xda\x12\x78\xac\x3b\xa6\xb4\xa4\x69\xc2\x31\xa5\x29\x42\xd5\x1d\x53\x5a\xa2\xea\xaf\x3b\xa6\xb4\x24\xfc\xe0\x98\xd2\x14\x85\xea\x9b\xbb\x0f\xdd\x8f\xbb\x83\xc7\xba\xe3\x46\x4b\xfa\x8c\x0e\x16\x69\x7a\x39\xf4\x8c\x8d\x96\xee\xb8\xd1\x92\xa6\x17\xc7\x8d\x96\x96\xfe\xe7\x03\x44\xb9\x2e\xfd\xd0\x4f\x32\x98\xfb\xa1\x9f\xfa\xa8\x0e\xfd\xd4\x02\x74\xe8\x27\x5b\x55\xfd\xf0\x04\x35\x49\x1d\x9e\xa0\xa6\x5d\xc7\x8d\x96\x83\x8e\x0e\x47\xba\x8a\xdb\x90\x09\x71\x74\xc7\x8d\x96\x41\x83\xdd\xa3\xb9\x96\x09\x6a\x74\x8f\xe6\x5a\xd6\x44\xe4\x98\xd2\x14\x12\xeb\x17\xcd\x6b\xc2\x18\xdd\x31\xa5\x65\x36\x68\xba\x63\x4a\xcb\xec\x5a\x77\x8f\xe6\x5a\xae\xfa\x5d\xe7\x88\x77\xe4\x78\xd3\x32\xee\x65\x77\xbc\x69\xb9\xe9\x7e\x93\x23\x9e\xbc\xe3\x4d\xcb\x4d\x3d\xc3\x3e\xb0\xb6\x05\x6c\xe8\x3a\xc2\x06\xde\xad\x05\x6c\x00\x79\x5b\xc0\x06\xbe\x00\x0b\xd8\xc0\x17\x60\x01\x1b\xf8\x02\x2c\x60\xc3\xd0\x99\xd8\x40\x0d\xa0\x21\x18\x8f\x52\x77\x31\x09\xc6\x2f\xfd\x8f\xa7\xcb\x9b\x36\x04\xe3\x95\xcb\x63\x08\xc6\x67\xbe\x23\x43\x30\x5e\xd9\x3b\x86\x60\xfc\x43\x71\x88\x21\x18\xff\xf0\xc6\x0c\xc1\xf8\x27\x62\x03\x82\xf1\x0f\xdb\x90\x86\x60\xbc\x02\x79\x86\x60\xfc\x93\x75\x77\x7f\xba\xcf\xa3\xbb\xfb\xd3\x7d\x8a\xee\x3e\x39\x5a\x1c\x2d\x8e\x74\x15\xb7\x4f\xe5\x35\x86\x60\xfc\x53\xd5\x97\xcb\x91\xbf\x5b\x43\x30\xfe\x01\x45\x1a\x82\xf1\xe2\x44\x31\x04\xe3\x4b\xd3\x99\x6e\x5f\x79\x9d\xe9\x36\x28\xf3\xc5\x1c\x38\x5a\xd1\x73\x71\xe0\x68\x05\x08\x66\x09\x45\x6d\xd2\x07\xcc\x81\xa3\xa1\xf0\x5d\xcc\x81\xa3\x55\xc2\x73\xe6\x21\x5b\x53\xc9\x87\x49\xbd\x1d\x5f\xd0\x50\x68\xaf\xea\xb5\x03\x47\x53\x0d\x86\x39\x70\xb4\xaa\x7e\x7a\x58\xd6\x2a\x9b\xca\x86\x42\xbb\x32\x66\xcc\x41\xa5\x79\x90\xe8\x3f\xa7\x64\xcb\x74\x13\xb4\x64\x99\x6e\x6e\x1d\x2d\x8e\x74\x49\x7f\xd4\xf5\xea\x7f\x6e\x42\x23\x33\xd1\x10\x6f\x6f\xac\x3f\x86\x78\x7b\x23\xa4\x6f\x8e\x37\xad\x11\xf2\x36\xc4\xdb\xdb\xa3\x33\xfd\x51\x37\x26\x4c\x73\x4c\x69\x8d\x69\xd0\x1c\x53\x5a\xc3\xe1\x32\xc7\x94\xd6\x88\x30\x1a\x02\xed\x0d\x37\xca\x10\x68\x6f\x53\x57\x99\x1c\xf1\xc8\x1c\x53\x5a\x63\x79\xb0\x87\x7e\x32\xd5\x59\xa1\x9f\xb2\xbd\xd0\x4f\x36\x37\xac\xd0\x4f\xd0\x84\x15\xfa\xb9\xf5\xbb\x87\x23\xec\x73\xdc\x68\x0a\xe1\x58\xa1\x9f\x7a\x4a\x88\xac\x2b\xf8\x62\x88\xac\x77\xa6\x33\xf3\x88\xad\xf5\xa4\x3b\x2c\x8e\xe8\xa7\x63\x4a\x53\xb8\xc5\x3c\x62\x6b\x4a\xc9\x31\x8f\xd8\x9a\x0a\x39\xcc\xf1\xa6\x29\xc0\x62\x1e\xb1\xb5\x5e\xf5\x3f\xb7\x41\x25\x18\xe6\x58\xd4\x3a\x28\xc4\x1c\x8b\x5a\x27\x3d\xcf\x1c\x8b\x9a\xf2\x59\xcc\xb1\xa8\x19\x31\x68\x73\x2c\x6a\xa6\x8f\xd8\x23\xbd\x66\x1a\xc8\x1e\xe9\x35\x4b\xfa\xdd\xe0\x88\xf7\xe7\x38\xd5\x8c\x29\xd9\x1c\xa7\x9a\x91\xbe\x66\x8e\x53\xcd\x1e\xdd\xc1\xed\x33\x7d\xee\x8e\x53\x4d\xe1\x0f\x73\x9c\x6a\x66\x3a\x8a\x1c\xf1\xe4\x3d\x53\xc3\x4c\x43\xde\x31\xac\x89\x29\xc3\x3c\x26\x6c\x46\x9e\x81\x79\x4c\xd8\x0c\xaf\xc3\x1a\xf6\x69\xaa\x6b\xd8\xa7\x31\xdf\xb0\x0f\x74\x6d\x0d\xfb\x08\x12\x99\xa3\x56\x1b\xc4\x30\xcd\x51\xab\x0d\x9c\x62\x73\xd4\x6a\x0a\x63\x98\xa3\x56\x1b\x7a\x4a\x8e\x5a\x6d\xe0\x3d\x98\xa3\x56\x1b\x7a\xb7\x8e\x5a\x6d\xe8\x49\x38\x32\xb5\x51\x74\x87\xc9\x11\xd6\x7a\xa4\xd7\x06\x9b\xb5\xe6\x39\x16\x36\xf0\xaa\xcc\x73\x2c\x6c\xe8\x4d\x7b\x14\xd8\x86\x6c\xf7\x28\xb0\xa9\xc8\xc3\xc0\xb7\x0a\x16\x18\xf8\x76\xe8\xeb\x00\xdf\x2a\x3c\x60\xe0\xdb\xa1\x31\x0f\xbe\x55\x5e\x8a\x81\x6f\x87\xc6\x3c\xf8\x76\xe8\x29\x81\x6f\x95\xa5\x62\xe0\xdb\xc1\xb6\xa0\x81\x6f\x87\xbe\x0e\xf0\xad\x58\x34\x0c\x9c\x3a\x89\xb8\x1b\x38\x75\x6a\x64\x81\x53\xa7\x9e\x19\x38\x75\x6a\xfa\x04\x8b\x4e\x92\xd2\x0c\x50\x39\x35\x7a\x00\x95\x53\xcb\x83\x47\x73\x4d\xf9\x2c\x06\xa8\x9c\x24\x1a\x18\xa0\x52\x44\x9a\x06\xa8\x54\x19\x89\x4d\xfa\xc2\x96\xa1\x4d\xfa\xa2\x99\x08\xc0\x39\xf1\xec\xcd\xc3\xb2\x36\xb5\xbc\x7b\x58\xd6\xc4\xe1\x61\x80\xd1\x69\xdf\xb1\xe4\xf6\xff\x99\x91\x81\xa9\x73\xe8\xfa\x3e\x22\xe6\xd4\xbd\xb1\x4e\x73\xdb\xc4\x3a\xcd\x51\x40\xd8\x79\xf5\x3b\x1f\x11\x2b\xc8\x1e\x1f\x11\x0b\x6f\xd6\x80\xb7\x4b\x63\xd5\xf3\xa5\x4d\x0c\x1e\xe6\x49\xd1\xb6\xf0\xf6\xcc\x83\xb9\xb6\xb4\x48\x7b\x30\xd7\x96\x16\x69\x0f\xe6\xda\x7a\x74\x15\xb7\x7c\x15\x1d\xb9\xe5\x4b\x33\xb9\x07\x73\x6d\x09\x3e\x78\x30\xd7\x96\xfa\xe9\xc1\x5c\xdb\x9a\x13\x81\xda\x5b\xb3\x20\x70\x7a\x13\x4e\x35\x4f\xb1\xb0\x8d\x77\x62\x1e\xcc\xb5\xcd\xbe\x80\x79\xc0\xd6\x14\xc5\x30\x4f\xa3\xb0\xad\xc5\x1d\xe0\xbd\x71\x2c\x0c\xe0\xbd\xf1\xd3\x0c\x70\x2d\x12\x0d\xf3\xa0\xac\x6d\x7d\x61\x80\xeb\xad\x6f\x0a\x70\xbd\xf5\xa5\x00\xae\x15\x63\x30\x00\xf4\x26\xb0\x6c\x00\xe8\x7d\x74\x44\x5f\x00\xbb\x76\xe8\xcb\xd5\xff\xbc\x2f\x27\xe8\xc8\x9f\xc4\xc1\x07\x37\x20\xf3\xd1\x98\x03\x16\x1f\xd3\xff\x2e\x47\xbc\x23\x60\xf1\x51\x3f\x81\xc5\xaa\x14\x31\x60\xf1\x21\x9a\x64\xc0\x62\xd5\x86\x18\xb0\xf8\x08\x0c\x02\x8b\x0f\x5e\xa9\x01\x7d\x15\x47\x30\xa0\xef\xd1\x37\x0c\xf4\x3d\x57\x57\xf1\x7e\x5e\x8d\x2c\xa0\xaf\xe2\x08\x06\xf4\xbd\x42\x05\x1e\x6a\xb5\xab\x75\xc4\x43\xad\x76\x09\x9c\x0f\x60\xf1\x65\xcf\x67\x00\x8b\x2f\x6f\x7a\x00\x8b\x95\x06\x33\x80\xbe\x97\xf9\x72\x00\x7d\x2f\xe1\xdb\x01\xf4\xbd\x8c\xc1\xe1\x61\x58\x13\x97\xeb\xf0\x30\xac\x5d\x82\xe3\xc3\xc3\xb0\x26\x82\x8d\x11\xb0\x01\x88\x3e\x02\x36\x74\xdd\x8f\x7e\xf2\xe4\x07\x20\xf9\x02\xc3\x07\x20\xf9\xb2\x8f\x34\x1c\x24\xe7\x44\x5c\x6d\x38\x48\xe6\xe8\x7f\x06\x60\xff\xcf\xf8\xbf\xff\xaf\xf3\x7f\xfc\x9f\x21\x48\x39\x4f\x7a\x56\x0e\x07\x42\x90\x72\x95\x44\x8a\x7c\x05\x08\x2f\x89\x6e\x69\xfe\x78\x27\xc2\x4b\x49\xdb\x57\xcd\x84\x26\x43\x78\x49\x67\xfb\x72\x79\x21\x26\x0a\x2f\x65\x6c\x5f\x19\xd3\xeb\x46\x12\x96\x41\x49\x26\xeb\x4c\x69\xc5\xa0\xf5\x92\x3d\x77\x2e\xbc\x84\x88\x25\xe2\x31\xf9\xb9\x04\x39\xa4\xb5\xe1\xf3\x52\x78\x09\x02\x4b\x14\x63\xe9\xcc\x5f\x76\x6e\x6f\x6c\xde\x28\xad\x07\x89\x32\x6c\x3a\x2f\x29\x57\x69\xac\x1e\x7e\x2e\x6d\x55\x49\x80\x1e\x7e\x2e\xe9\x4f\xa9\x6f\x5e\x7e\x2e\x15\xcb\x97\x78\xa1\xff\x5c\xa2\x85\xbf\x42\x70\x7e\xa6\x24\xdf\x5e\xca\x5d\x3c\x64\x69\x74\xa1\x68\x73\x21\x6b\x09\xd2\xac\x41\xa4\x26\x87\x4b\x23\xd2\x27\x68\x9d\xe4\xb0\xd5\x08\x19\xb5\x5d\xc9\x04\x78\x23\x62\x26\xa8\x97\xe4\xe0\xb9\xc7\x41\xaa\x25\xc8\x94\x64\xd9\x2e\x89\x12\x74\x49\x72\x70\x14\x12\xa4\x40\x82\xec\x48\x26\x7b\x2a\x48\x72\x04\x42\xfb\x54\x02\x77\x17\x15\xfd\xa5\x4b\xee\x93\x85\x17\xcf\xfc\x95\x4e\xc0\xcf\xf7\x10\x44\x30\x0f\xb3\x7c\x0e\x1e\x46\x0a\x30\xaf\x07\x28\xd7\x33\xcc\xbc\x41\x34\xe7\xf0\x94\xe7\x50\xd5\xe8\xb6\x43\x1f\x9e\xa1\x67\x09\xa2\x08\x87\xe3\x3b\xc3\xc4\x12\xc4\xe3\x0d\x81\x77\x86\x6f\x37\x24\xa4\xc8\x60\xbd\xce\xa1\xa9\xd1\xdf\x18\x74\xd7\x39\xf8\x97\x1a\xa0\xbb\x0e\xf0\x5c\xe7\xe0\x1e\x76\x80\xe7\x3a\xc0\x62\x9d\x83\x07\x51\x02\x2c\xd6\x01\xfa\xea\x1c\xdc\x63\x0a\x90\x4b\x87\x24\x49\x2e\x8f\xb5\x86\x84\xa0\x53\x6a\x08\x31\xf0\xe8\xa0\x4d\x0e\xf0\x25\x5f\xe6\xac\x00\x27\x72\x80\x0c\x39\x53\xb0\x15\x20\x35\x0e\xb0\x19\xe7\xe0\xe8\x25\xc0\x66\x1c\x52\xc7\x22\xa3\x11\x39\x20\x18\x8b\x73\x70\x5f\x29\x24\x46\x48\x32\x3e\xd8\xc8\x53\x62\x84\xc0\x3c\x9c\x42\xa4\xf3\x8c\x10\x28\x87\x2f\xa5\x79\x01\xca\xe1\x90\x34\x42\xbc\x28\x3c\xc0\x27\x1c\xd2\xcc\x1f\xef\x1d\xba\xde\x00\x4f\x6f\x4a\x95\x47\x87\xca\x31\xd4\xba\x09\xa9\x94\x00\x61\x6e\x48\x52\x1f\xd6\x53\x42\x91\x16\x9e\xd8\x14\xf5\xe2\xf8\xb8\x20\x7a\x4d\xa9\x73\x4d\x94\x20\xd2\x81\xdf\xbc\xeb\xe7\xdc\xfd\x70\x77\xcf\x44\x09\x10\xaf\x06\x18\x57\x53\x62\x2c\xc1\xaa\x1a\xa0\x53\x4d\xb0\xae\x04\x88\x50\x03\x0c\xa8\xaf\xc9\x0a\x96\xd3\x00\x15\xe9\xbd\x0c\x5a\xa8\x48\x03\x3c\x9c\xf7\xba\x9b\x19\xe0\xe1\x0c\x90\x57\x5e\x62\xd0\x21\x23\x9b\x07\x8d\x5d\x0e\x6a\x44\xaa\x08\x22\xac\xac\x49\x15\x22\xac\x00\x07\x55\xc8\xee\x61\x07\x38\xa8\x02\x04\x53\x21\xfb\x5e\x47\x80\x60\x2a\x3c\x68\x24\x64\x5f\x0a\x02\x7c\x51\xe1\x41\x82\x20\x4f\x7e\x8e\x16\x26\xec\x4a\x21\x2f\xce\x44\x35\x00\x7a\xa4\xf0\x60\x11\x84\x48\x01\xe6\x9e\xf0\xf8\x62\x1a\xe0\xea\x09\xb0\xd8\x84\xc7\x23\xb6\xa1\xa0\xa7\x43\x51\x9d\x75\x8f\x42\x86\x8a\x00\x54\x75\x1c\xfe\x1c\x0f\x04\x85\x83\x2c\xdc\x81\x0e\xf2\x7a\x3c\x2f\x5c\x3a\x78\x29\xa8\xc9\x7e\xcd\x18\xfc\x21\xc7\x10\xa0\x6c\x77\x33\x63\xf0\x6f\x3a\x06\x0f\x2b\x3c\xd7\x71\x7f\x0c\x85\x46\xd8\x35\x11\x32\x89\x2c\x52\x31\xc0\x50\x19\x7d\x41\x89\xac\x47\x91\xf5\xa8\xa0\xa6\x10\x83\x3b\x5e\x31\xc0\x0a\x19\x2b\x3f\xf7\xa5\x27\x86\x0e\x2d\xb4\x03\xb3\x18\x3a\x67\xc2\xc4\x18\x87\xce\x9c\x34\x42\x51\x3d\xb9\xd1\xe0\xee\x30\x07\x26\x4f\x42\x88\x48\xa2\x47\x34\xd0\x9d\x5f\xfb\xa7\x71\x71\x26\xac\xd2\xc9\xd1\x4c\x44\xb7\x37\x22\xd4\x5b\x1e\xcf\xcb\x8b\x08\x9d\x46\xd4\x4d\x9d\x7b\xe2\xa7\x31\xd1\x28\xd6\x58\x07\x20\x11\xf5\xb7\x88\xdc\x9b\xa7\xcd\xfd\x34\xba\xff\x15\x91\x06\x2b\x54\xee\x44\x44\x93\x22\x7a\x48\x1e\x3f\xfc\x69\x5c\x9c\x09\xa1\x9f\xe9\xee\x9b\x6b\x42\x01\xfd\x03\x58\xc1\x13\xc0\x87\xff\x01\x50\x44\x24\x5c\x22\xda\x2d\x05\x3f\x33\x22\x75\x12\xd1\x38\x29\x38\x60\x11\xb5\x90\x88\x4c\x48\x99\x85\x46\x0f\x8d\x45\xa6\xfd\xb2\x3c\x08\x10\xd1\xa5\x88\x08\x52\x14\x76\x51\x23\x7c\xf5\x11\xa2\xfa\x72\x18\x3e\x50\xcc\x47\xb8\xe5\xcb\xf1\x70\x77\x84\x23\x3e\x8a\x1c\x9e\x6d\xad\x98\xdc\x4d\x8d\x62\x7e\x3f\x9b\xbb\xfb\x5c\x19\x45\xeb\x8e\x7c\x40\x84\x12\x3d\x8a\x0b\x1d\xb4\x17\xd3\xa1\x11\x6e\x0e\x4a\x6b\x63\xf2\xb5\x2e\x42\xe2\x5c\x49\xcb\x8d\x50\x2c\x47\xa6\x94\xca\x06\x4a\x84\xb3\x38\x66\x28\x1e\x60\x38\x8f\xd9\xa3\x53\x31\x3f\x22\x8e\x52\xe3\xa6\xd1\x2b\x9d\x93\x4f\x99\x11\x12\xd9\x08\x45\x6c\x25\x3a\x1f\x21\x89\x8c\xb0\x43\x56\xc8\x91\x23\x8c\x8c\x11\x2a\xc6\x5a\x3c\x1c\x12\xb3\xef\x0d\xc4\x0c\x19\x4b\xe9\xfc\xfc\xf0\x73\x58\x51\x8a\x7e\xee\x53\x6d\xcc\x50\x97\x54\xde\x26\xf3\x53\x84\xa1\xaf\x56\x8f\x57\xc7\xc7\x57\xef\xf8\x40\x76\xd1\xdc\x9f\x8b\xd0\xbe\x45\xf8\xde\x6a\xf3\xfd\xf5\x08\xc5\x4d\x7c\xdc\x2b\xac\xc3\xe7\xfb\x08\xc5\x4a\x14\xb7\x0a\x6e\x71\x84\x5b\x25\x8a\x54\x05\xef\x38\x3e\x87\x6b\xc2\x83\x32\xdd\x5d\x8a\xc5\x67\xf1\x28\xf2\x90\xe5\x09\xdf\x91\xea\xfe\xa8\xb2\xfe\xe3\x9b\xb0\x91\x5a\xd0\xa8\x22\xd0\xe4\x95\xe3\xb1\x70\xa3\x72\xa8\xb4\x65\x86\xa0\x72\x32\xaa\x64\x92\xf4\xda\x48\x61\x62\x54\x45\x62\x76\xf7\x33\x52\x8b\x16\x55\x84\xf6\x5c\xce\x74\xf4\x1c\x55\xf6\x54\x7c\xb1\x8a\x14\xf4\x44\x55\xf2\x94\xcb\xcf\xf9\x70\x55\x8a\x53\x7c\xa3\x3c\x52\x44\x13\x55\x2f\x53\x13\xd7\xf4\x39\x28\xaa\x18\xa6\xba\x1b\x12\x29\x71\x89\xaa\x6d\xa9\x1e\x6d\x88\xd4\xb6\xc4\x6a\x54\x40\x7a\x4c\x3a\x52\x56\x12\x55\x4f\x52\x3d\xf1\x23\x56\x26\x2d\x95\x8e\xd4\xc9\x99\x93\x1b\x51\x2a\xd1\xbc\x0e\x25\x52\x1c\x11\x55\x15\xa1\x09\x86\x6a\x83\xa8\x32\x03\xe2\x9e\x91\x04\xec\x48\xe6\x75\x33\xdf\x52\x8f\x64\x42\xc7\x16\xa9\x4d\x72\xe8\x11\x49\x57\x8e\xe4\x29\xb7\x41\xe7\x49\xc8\x8d\x64\xe2\xb6\xb1\xf9\xb9\x47\x72\x23\x49\xb7\x6d\x1c\xce\xf4\x75\x29\x92\xfd\xda\xa6\xae\xc9\x93\x27\xf1\xb4\xc1\xcd\x11\xc9\xe6\x89\xa4\xf1\xb4\xe3\xd1\xbe\xd8\x19\x36\x9d\x7a\xd6\xe3\x98\x31\x92\x5d\x13\x49\xab\x69\xc7\x2b\xcd\x22\xa9\x33\x91\x9c\x99\xc6\x96\x7a\x24\x13\x26\x92\xf4\xd2\xae\xc7\x80\x22\x49\x2f\x91\x6c\x97\x76\x7d\xdf\x27\x76\xbe\x77\xd2\x5c\xda\xf5\xed\x83\x48\x9a\x4b\x24\xbf\xa5\x5d\xde\x11\x89\x1c\xb1\x53\xa2\x09\x9b\x40\x24\xbf\x22\x2a\xb1\x02\xd4\x16\xbb\xbb\x52\xb1\x93\x71\x1a\x2b\x67\x1a\x77\x27\xa5\x32\x6e\x6e\xe4\xe1\xb3\xc8\xbe\x70\x8f\x4c\xbf\xec\x04\xc7\x4e\xa2\x24\xa4\x75\xb1\xfb\x24\x17\x3b\x09\x85\x40\xa4\xc8\x96\x67\x64\xaf\xb3\x27\xcf\xf0\x8f\xec\x28\x46\xb6\x12\x7b\x76\x2e\x83\xc8\x86\x48\x64\x27\xa4\x17\x35\x7a\x52\x71\x24\x36\xdd\x2b\xeb\x27\xb1\xe9\x48\x50\xba\xc3\x2e\x1e\xcd\x51\x69\x34\x65\x5d\x32\x7f\x12\xdb\x89\xa6\x0c\x3d\x47\x2e\x91\x30\x4e\x34\x25\xe3\x39\xa0\x88\xc4\x53\xa2\x29\xf3\xcd\xf7\xe6\x22\xe1\x83\x48\xdc\xa0\x9b\x47\x50\x22\x91\x82\x48\x88\xa0\x13\x6e\x8d\x83\xf1\x39\x94\x7c\xe4\xbb\xe7\x71\x38\x6a\x8b\x83\x54\x91\xc9\x4c\x3b\x98\x93\x07\x59\x21\x93\xef\x68\x78\x64\x3c\x0e\x52\x30\x96\x07\xe1\xe2\xa8\x5c\xb3\x2a\xcb\x86\x9f\x7b\xe4\x38\x0e\xd2\x1e\x16\xaf\x63\xf0\x36\x07\x6f\x73\x7b\x94\x37\x0e\x16\xa9\x41\x2a\x2d\x15\x44\x71\x18\x67\x92\x19\x7b\x58\x26\x86\xc3\xae\x38\x4c\x89\x23\xdc\x7d\xf3\xf3\xa3\x7c\x07\xee\xee\x13\x67\x1c\xd4\xa3\xdc\x4b\xe7\x59\xb9\x06\x71\x91\xe0\xfb\xec\x71\x3a\xe4\x8c\x93\x80\x08\x0c\x99\x71\xba\x9b\x15\x27\x1b\x45\xd1\xdd\xeb\x38\x7d\x77\x26\x4e\xb6\x65\xa8\xc2\x88\xd3\x8d\x8e\x93\xb8\x3c\x59\xf9\x71\x56\xce\x24\xe8\x9e\x77\xfd\x27\xa0\x98\xc6\x65\x3c\x85\xd7\x20\x62\x8b\x93\x21\x39\x89\x94\x56\xcf\x27\x88\x13\x50\x35\x09\x06\x56\x30\xd9\xf4\x21\x12\x27\xb1\x3d\x4d\x6f\xd3\xdd\x8a\x38\x09\x96\x51\x5b\x1d\xa7\x87\x9d\xe2\x24\xde\xd4\x3a\xcf\x80\x07\x33\x79\x30\xcd\x03\x5b\x71\x39\xe8\x8f\x8b\x4d\x44\x88\xab\xe2\x02\x93\x2d\xf6\xda\xa0\x0b\x8f\xcb\x3f\xe3\xb8\xd8\x64\xb3\xac\xc6\x46\x23\xc1\x7e\x9e\xeb\x72\x4f\x35\x2e\x76\xbd\xcc\xf7\x96\xe2\xe2\xbb\x5f\x6c\x70\x41\xca\x1d\xd7\xc3\xdd\xd9\xa1\x22\xad\x31\x2e\xdf\xa1\x8a\x8b\xad\x29\x0a\x54\xe3\xe2\x0d\x2c\xde\xc0\xd8\x74\xbe\x72\x23\xb6\x44\x86\x87\x0d\xe3\xe2\xb5\x2c\x5e\xcb\xf0\xf4\xe0\xb8\x58\x97\x56\x23\xd0\x9b\xd4\x48\x97\xd8\x8d\x98\x89\x7e\xb2\x58\xad\xae\xb0\x39\xd7\xec\x74\xa9\x13\x51\x7e\xe8\x27\xeb\xd2\x62\x23\x80\x22\xcd\xb8\x98\xb4\x16\x3b\x00\xd3\x78\x9e\xc6\xdd\x4d\x61\x66\x2c\xf2\xe0\x6a\x5c\x8a\xaa\x16\xae\x09\x1e\x59\x0a\x29\xba\xf3\x1c\xd7\xe5\xe7\xc4\x04\x0f\x13\xcc\x76\x10\x16\x37\x01\x38\x18\x7c\xe3\xf6\x3d\xe4\xb8\xd9\x3c\x3e\xcc\x3a\x9b\x09\x7b\x47\x05\x1f\xf9\x39\x58\x7c\xb3\x25\x7c\x01\xa7\xdb\x97\xae\xb8\x93\xc2\x7f\x97\x46\x6e\xc4\xa6\x2c\x85\x72\x71\xf3\xde\xb7\x3f\x2c\x05\x4d\xe2\xf6\x67\x16\xb7\xcf\xcd\x89\x9a\x90\xb8\xf9\x9a\xb7\x4f\x84\x29\xaa\x91\x31\xbf\x71\xb3\xa9\x80\x89\x7b\xd2\x79\xdf\x08\xc8\x70\x6f\xc4\xed\x2b\x74\xdc\xe8\x8a\x26\xe7\xb3\x8c\x1b\x24\xb8\x11\x11\x4d\x1e\xfa\x8c\xdb\xc3\xda\x71\xfb\x22\x9e\x92\x67\xe9\xc4\x03\x88\x3e\xde\xcf\x6b\xcc\x79\x87\x33\x8f\x94\x34\x59\x2e\x0e\xee\xc1\x71\xf7\x40\x31\x82\x78\x3c\x74\x1d\xcf\x3e\xef\x18\x41\x3c\x4c\x45\xc7\x41\xe6\x3d\x20\x97\xe3\xdf\x5f\x3c\x67\xbd\x03\x07\xf1\xfa\x62\x1c\x6f\x20\x9a\xc0\x5c\x72\x79\x47\x37\x96\x77\x10\x2a\x5e\x3e\xc3\x1b\x89\xf8\xf8\x46\x47\xbc\x85\x46\x5f\x74\x32\x5c\x9e\xf1\x32\x37\x5f\x0f\xc4\xe4\xdc\xb9\x26\x23\xf9\x76\x9e\x3c\x8b\xff\xc5\x57\xb8\x3e\xdb\x24\x4a\x6d\xe2\xf5\x31\x18\xaf\x23\xa5\x14\x01\x14\x77\x70\x23\xcf\x15\xca\xc9\xf7\xcf\xe3\x05\x83\x5f\x5f\x9e\xd2\xc3\x3b\xba\x87\x1b\xf9\xc4\x9b\xc8\x8d\x88\xf7\x62\x26\x11\xb4\xec\x35\x28\x29\xf8\x8c\x9b\x08\xca\xe6\xec\x5d\x4a\xc1\xf1\x48\x0a\x0e\x3d\x72\xf2\x65\x2d\x85\xa0\x00\x8e\x87\x6c\xa6\x07\x77\x52\x40\x91\x30\xf8\x30\x4d\xd5\x07\x98\x87\x73\xbc\x71\x7b\xa3\x07\x77\x52\x48\x84\x7a\x12\xe1\x95\xca\x35\x13\x37\xf2\x02\xaf\x54\x3c\x33\x2a\x85\xac\x58\x8d\xff\xaf\xf8\x43\x4e\x21\x73\x23\x9f\xc1\x52\xf1\x7a\xc7\x14\x32\x5d\xf2\xfd\xf7\x54\x7c\x0e\x49\xe1\xe1\xe7\x3e\x59\xa5\xd2\xb8\xa6\x4f\x56\x29\xf8\x64\x95\x83\xd1\x79\x0f\xab\xa5\x50\x9e\x77\x64\x2a\x85\xc2\xcf\x4b\x7d\x47\xa6\x52\xf0\x1d\xe9\x84\x93\x9f\x9a\x47\xe5\x52\xf0\x49\x2e\x05\x9f\xdd\x52\x6c\x58\xd4\xf8\x9d\xfb\xfa\x29\x2e\x3a\xdf\x88\xea\x34\x45\xd0\x78\xf2\x97\x6b\xc2\xfb\xbd\x7d\x99\x48\xa8\xf4\x27\xa4\xf9\x1b\x72\x7c\x09\xd1\xf2\xa4\x10\x2d\x30\x36\x11\x39\x4d\x44\x4e\x25\x8f\x97\x50\x21\x4e\xb8\xd9\x97\x3c\xf2\x84\xb4\x6f\x42\xcb\xd7\xa2\xcf\xde\x09\xfd\xde\x84\x50\xaf\xc5\xc3\x99\x9b\x33\xd9\x5d\x02\x76\x25\x04\x3e\x13\xca\x9e\x17\x51\x83\x84\x9e\x65\x42\xd4\x4f\x41\xe7\x44\x94\x33\x25\x69\xeb\xfb\x54\x99\x90\x7c\x4b\x49\xb2\xf4\x1e\x6f\x4a\xe8\xb9\x25\x84\xdc\x14\xc4\x4f\x44\x24\x93\x22\x92\x04\xf1\x13\x7e\x75\x22\x30\x99\x5e\x37\xea\x04\xd9\x50\x2a\xcf\x3a\xd3\x27\xf8\x84\x43\xad\x20\x7e\x22\x50\x98\x92\x74\xa6\x27\x3f\x9f\x74\x5e\x12\xd1\xee\x40\x24\x62\x89\x29\x49\xc7\x79\xe9\x4c\x7f\x71\x8a\x17\x12\xc4\x4f\x84\x0d\x53\x5a\xf7\x37\x88\xff\xdf\x80\x22\x25\x4d\x76\xbb\xbc\x23\xfc\x29\x39\x8e\x4d\xe8\x4b\x29\xc2\x9f\x88\x37\x26\x05\x13\x89\xf0\x27\x64\x9f\x52\x7a\x45\xf8\xdd\x5c\x94\x9a\x12\x92\x3b\x21\xf0\x5a\xb2\x43\xa5\x84\xa6\xcc\xeb\x0d\x20\xba\x92\x50\x5b\x51\xb4\x33\x65\x1f\x8b\x29\xfb\x86\x84\xc2\xfe\x29\x4f\x35\xee\x77\xd8\x3f\xe1\xba\xa7\x2c\x81\xe2\xad\x46\x6e\x24\xf5\x61\x5f\xe7\x13\xf2\x04\x29\x4b\x5e\xd8\xc3\xfe\x09\x5d\x82\x94\x5f\x3a\xc2\x46\xa3\xd1\x38\xde\x61\xff\x84\x16\x40\x42\x04\x40\xd1\xf8\x04\xb9\x7e\xca\x0a\xe6\x33\x6d\x10\x84\x4c\x90\xd6\x2b\x1a\x9f\x08\x42\x26\x58\xe7\x15\x8d\x4f\x04\x07\x12\x74\xf3\x8a\xc6\x27\x68\xdc\x13\xfc\xed\x8a\xc6\x27\xf8\xdb\x13\x91\x49\x45\xe3\x13\xc4\xed\x89\x00\xa5\xa2\xf1\xe9\x49\xdc\x28\xad\x77\x34\x3e\x41\xe3\x9e\xe0\x6f\x57\x34\x3e\xc1\xdf\x9e\x1e\xed\x1a\xf8\x1a\x92\x20\x67\x4f\x30\xaf\x6b\x09\x4a\x30\xaf\x27\x68\xd5\xb5\x67\x91\x9e\xbc\x5f\xeb\xc4\xef\xea\x9d\x20\x82\x4e\x30\x40\x2b\xa0\x9d\xe0\x7c\x4e\x90\x3d\xdf\x19\xe8\xbc\xd1\x4f\x8f\xbf\xa7\xe8\x19\x02\x09\xf6\xe4\xf4\x68\x9d\x2f\x9c\xe9\xee\x79\x82\x05\x39\x05\x5f\x82\xd2\xe3\xdb\x2f\x09\x52\xe3\x14\x3a\x77\xdf\x3c\xf9\xad\xbd\x07\x6c\xe7\x15\x3f\xec\x4e\xa5\xc2\x3b\x3a\x9c\xf9\xb9\x2d\xe5\x36\xfc\x98\x82\xe6\x6c\xf0\x0d\xcf\x04\x0b\x68\x82\xf4\xf2\x35\x68\x21\xaf\x4c\xe5\x19\x1f\xd3\x06\x5c\x94\xa9\xf8\xe6\xc8\x6b\xda\x28\xcc\xe2\xc5\x67\xf1\xd7\xb4\x01\xfd\x64\x82\x77\xf2\x35\x6d\xc0\xf5\x98\x20\x79\x7c\x4d\x1b\xd0\x3a\x26\x18\x1c\x5f\xd3\x06\x6c\x84\x09\x1a\xc2\xd7\xb4\x01\xd5\x60\x82\x55\xf0\x35\x6d\x94\xce\x32\xd3\xd7\xc7\xb4\x01\x65\x60\x82\x59\xef\x35\x6d\xc0\xac\x97\x8a\xb6\x0e\xf9\x10\xa0\xc6\x4b\x45\x5b\x87\xcc\x0c\x70\xdb\xa5\xa2\xad\x43\x66\x06\xa8\xe3\x52\xd1\x66\x21\x33\x03\xf4\x6b\x09\xde\xb5\xd7\x60\x80\x69\x2d\x41\xb1\xf6\x1a\x0c\xd0\xa1\x25\xb8\xce\x5e\x83\x01\xae\xb3\x04\xc9\xd9\x6b\x30\x40\x6b\x96\x88\x4c\xbd\x06\x03\x9c\x65\xa9\xdc\xcf\xc1\x00\x81\x56\x82\xe5\x4a\x02\xfe\x09\x26\xab\x54\x23\x16\x79\x5e\x45\xaa\xc2\x07\xd2\x28\x76\xb4\x9e\xe0\xb5\x4a\x10\x5a\x85\xe0\x59\x0f\x09\x42\xab\x04\xeb\xd4\xef\x35\x13\x67\x22\xf3\xfb\xba\x66\xd2\x99\xf7\xf3\x9a\xfe\xa9\xa5\xaa\x59\x51\xd7\x04\x50\xc0\x17\xf5\x32\x13\x86\xa8\x04\xc5\x53\x8a\x9e\x1e\x9b\xe0\x63\x4a\x90\x2d\xbd\x9e\x12\x81\xad\x54\xcd\x3e\xbb\xe4\x51\x9d\x04\x3f\x81\x00\x5a\x82\x9f\x20\x41\x4c\xf0\x42\x04\xd0\x0d\x24\x58\x00\x84\xac\x13\xb5\xfd\xa9\xc9\x22\xdf\x9a\x49\xcd\x6b\x68\x12\x65\xeb\xaf\x09\x90\xe8\x53\xa2\x66\xfb\x35\x01\x12\x7d\x4a\xad\x7c\x6c\x47\x26\xca\xac\x13\x35\xd4\xaf\x09\x90\x1a\xea\x44\x64\x2a\x07\x77\x31\x13\xa5\xcd\xa9\x55\x6e\x34\xb8\x66\xa3\xb1\x71\xa3\xa5\x46\x6e\xd4\xb9\xd1\xe6\x46\x2c\xc6\x4d\xbb\xc3\x87\x1b\x75\x6e\xd4\xb9\xd1\xe1\x46\x2c\xd4\x94\xcd\x66\xc4\x07\x12\xa5\xaa\x89\xc2\xd0\xd7\xf3\xa4\x30\x34\x35\x6d\x90\xab\x11\xe8\x41\x99\x9a\x3c\x95\x44\x99\x5a\xea\x81\x69\xd4\x83\x50\x89\xa2\x9b\xd4\x31\x0c\xaa\xbb\x44\x35\x4a\xa2\x14\x23\x3d\x9e\x27\x9e\x28\xc5\x48\xd4\x60\xbc\x1e\x32\x55\x10\x89\x70\xd5\xeb\x21\x53\xaa\x90\xba\xb6\xb6\x79\xc8\x54\x17\x24\xca\x03\x5e\x0f\x99\xf2\x80\x44\x4a\xff\xeb\x21\x13\xd8\x4a\x1d\xf9\xfb\xa4\x2e\x6d\x1a\x7d\xd1\xcf\xe8\x70\x26\x12\xcb\x13\x99\xe1\xd9\xf3\xe0\xff\x01\x28\x48\xe3\x4e\xe4\x6f\x67\xb2\xe3\x13\x49\x86\xc9\x34\x3f\x79\x60\x33\x91\x6f\x97\x08\x70\xbd\x06\x1a\x09\x65\xc9\x46\xfd\x78\x06\x64\x76\x25\x12\xb0\x5e\xcf\x80\x44\xaa\x44\x5e\xd4\xeb\x19\x10\x1f\x4b\x24\x2f\xbd\x9e\x81\x31\x15\x99\xbc\x35\x9e\x01\xb9\x48\xc9\x84\x08\x18\x68\x24\x05\x25\xf2\x7f\x5e\x03\x8d\x1c\x9f\x44\xca\xce\x6b\xa0\x19\x66\x92\x73\xf3\x1a\x68\x44\xd2\x92\x09\x11\x30\xd0\x86\x07\x0e\x12\x81\xaa\x97\xed\xc4\xab\xd2\x18\xe7\xc3\xf6\x01\xce\x1b\xf3\xf9\xb0\x7d\x2c\x1a\x57\xff\xb0\x7d\x30\xab\x8e\x1d\x3f\x6c\x1f\x2c\x80\x63\xdb\x87\xed\xc3\x71\x4c\x1a\xf2\x3f\xb1\x7d\x1c\xae\x79\x9e\x0f\xdb\xc7\xa5\xf1\xf6\x0f\xdb\xc7\xe5\x46\xb2\x08\xdb\x09\x85\xa5\xa9\x84\x05\x0f\x3e\xa7\x09\xf0\x99\xc1\x3e\x1e\xc8\x64\x1a\x9e\xe1\x7c\x3c\x90\x09\x4c\x98\xa3\x7c\x3c\x90\xe9\x2f\x3c\xcd\x79\x3f\x1e\xc8\xc4\x13\x20\x94\xf5\x7a\x20\x13\x33\xa7\xcc\xac\x6a\xf4\xaf\x99\x50\xd6\xeb\x81\x4c\xde\xe6\xd4\xdb\xe4\x81\x4c\xc7\x70\x69\x9e\xfb\xf1\x40\x26\x8e\xe7\xbc\xe5\xe3\x81\x2c\x2c\x5a\xb2\x68\xa9\xd1\x6f\xb4\x62\xfa\x78\x20\xcb\x3d\xf1\xb4\xe2\xf8\xb0\x7d\xf9\x8a\x92\x56\xfc\x1c\x0c\x0b\x57\x7a\xcd\xfc\x61\xfb\x9a\xdc\x68\x7d\xce\xb8\x0b\x87\x67\xed\xcf\x19\x77\xb1\x00\xae\xf3\x39\xe3\x2e\x8f\x18\xa4\x75\x3f\x67\x5c\xc2\x40\x69\xdd\xcf\x19\x77\x79\x34\x2f\xad\xfb\x39\xe3\x6e\x36\xfb\x77\xf8\x9c\x71\x37\xc2\xff\x04\x7e\x5e\xb6\x6f\x56\xc5\x9d\x3e\x67\xdc\xed\xdb\xe6\x69\xa7\xcf\x19\x97\x50\x4f\xda\xe9\x73\xc6\xdd\x60\xb8\xad\x0c\x23\x6c\x27\x2c\x93\xf6\x1e\x1f\xb6\x6f\x16\xff\x7d\xc2\x87\xed\x9b\xcf\x70\xdf\xe7\xc3\xf6\x8d\x45\x5b\x16\x61\xfb\x61\x7c\x9e\x50\x3e\x6c\x3f\x04\x0e\x4e\x18\x1f\xb6\x1f\x02\x07\x47\xc0\x1c\xdb\x4f\xa4\x31\x3d\x1f\xb6\x1f\x2c\x3a\xb2\x08\xdb\x0f\x4b\xfa\xc9\xe5\xc3\xf6\xc3\x5a\x7e\x84\x97\xb1\xfd\xb0\x2a\x1e\xdc\x50\x14\xf1\xd3\xf1\x95\x2f\x1d\xf7\xe0\x73\xf6\xec\xde\x74\x58\x27\x0e\x0b\xa0\x90\xe0\xf1\xdd\xfa\x74\xdc\x53\xcd\x19\x0c\x7e\x58\x3c\x8e\xfb\xa6\x39\x47\xfa\xd9\xe9\x12\x6b\x48\x8e\xdc\x1d\x98\x7e\x7c\x1d\xcc\x19\x90\x72\x58\x00\x8f\x43\x88\x9c\x01\x29\xc7\x67\xa9\x74\x8c\x08\x9a\xef\x90\xa6\x03\x22\x3f\x83\x6b\x66\xce\x74\xb0\x98\x0e\x13\x75\xf6\x44\xd4\x74\x58\x6d\xce\xe0\x46\xbe\xe7\x9f\x0e\x98\xf1\x78\x3a\x70\xce\x0f\x5d\x62\xae\x3b\xcc\x75\x94\x00\xa5\x33\x79\x74\xb3\x7d\xda\x4e\x7e\xcc\x71\xd7\xf6\xd7\x76\xdc\xd6\xc3\xd7\xf1\xb2\x9d\x99\xe1\x30\xa5\xbf\x6c\xdf\x3c\x25\x5f\xdd\x7e\x6d\xe7\x3b\x3a\x4c\x80\x2f\xdb\x59\xeb\xce\xb1\x4f\xdb\x99\x19\xce\xad\x9f\xb6\xe3\xf5\x9e\x3b\x3e\x6d\x67\xf2\x3f\x0c\xc5\x97\xed\x44\x52\x0e\xf3\xa7\x6c\xbf\xbe\x99\x96\x2e\x3e\xa2\x6c\xbf\xc4\x9b\x6e\x62\xb6\xf1\xea\xb7\x74\xdd\xbb\x4b\x37\xb1\xca\x60\xe6\x05\x72\x5e\x0d\x45\x62\x2e\x17\xc8\x79\x95\x7a\x83\xeb\x76\x19\x9f\x37\xc7\x0f\x27\xef\x02\xe5\x2e\xbe\xde\xeb\xe7\xbe\x83\x91\xae\xe2\x5b\x84\x96\x2e\xf8\xee\xfa\x16\x7c\x62\xdb\x34\x5d\x46\xf2\x55\xbe\x98\x27\xd2\xa7\x0b\x94\xbb\x85\xf0\x83\x6b\x70\xa6\xeb\x1b\xf2\xe9\x32\xbc\x5f\x16\x79\xf0\x31\xdd\x1a\x7e\x2d\xfa\x07\xa0\x20\x4e\x99\x6e\x4d\x9f\xe6\x82\x9f\xae\xa7\xe0\x5c\xe2\xcc\xe9\xe2\x2f\xdd\xda\x3f\x6f\x58\xe9\x5a\x1d\x9f\x8f\x90\xc0\xd8\xad\xeb\xeb\x9a\x9b\xc6\xf3\x79\xcd\xc6\x23\xe4\x03\xcc\xc6\x23\xf4\x3c\x99\x74\x89\x9d\x91\x69\x94\x2e\x5f\xde\x05\xc4\xfd\x36\x72\xf7\x3e\x3e\xdf\x40\xe7\xee\x7d\x7d\xbe\x01\x1c\xb3\xcb\x57\xf9\x6a\xe4\xd3\xb9\x83\x38\x97\xa9\x91\x37\x00\x88\x83\x39\x2c\x11\x6b\x4d\x17\x97\x58\xc1\xbd\x0b\x6e\xba\x13\x9f\xc1\xe8\xd2\x62\xf4\x2d\xdc\x26\x00\xda\x25\x68\x72\xf9\x82\xca\xe2\x9a\xac\x9f\xf7\x7c\x86\x03\x2e\xce\xd7\xd5\xa2\xfa\x6a\xc4\xa2\x57\xec\x9a\x87\x8c\x47\x76\x95\xce\xa5\x47\xc7\xba\x74\xef\x47\xe2\x57\xba\x7c\x25\x57\x28\xc3\x3f\x9d\x4c\xf8\x37\x07\xad\x4b\xbe\x63\xe2\x89\x7b\xde\xc8\xba\xe4\xbb\x45\xde\x09\x3f\x85\x4f\xc7\x9d\x28\x5f\x35\x74\xb1\xdf\xd4\x40\xbf\x8a\x9f\x22\xd0\xc7\xcf\xe5\x95\xc8\x0f\x19\xdc\xbd\x28\xaa\xc3\xa7\x33\x39\x53\x63\x50\x79\xa2\x93\x1b\x0d\xa1\x28\xba\xe4\x11\xd4\x1c\x94\x20\x3a\xec\x6d\x7b\x26\xef\xd6\x7f\xf7\x6b\x7b\x0e\x6c\x56\x84\x39\x3e\x6d\x9f\x3c\x9e\x79\x3e\xcd\x9c\x74\x49\x4f\x09\x33\x23\x20\x2c\x86\xf4\x61\x66\x74\xe4\x92\x63\xd8\x1f\x66\x46\x5f\xeb\x72\x54\xbc\x09\x33\xa3\xef\x1a\xe4\xa8\x5d\x03\xcc\x8c\xee\x20\xe7\x58\xc6\x87\x99\xd1\xbf\xe6\x1c\xf5\x35\x63\x66\xe4\x29\xc5\xaa\x8d\x8c\xe2\x8d\x95\x9f\xeb\x8b\x53\x97\x2a\x3f\xd7\x17\x67\x6a\xdc\x34\x9e\xf7\xa4\x95\x63\xe5\x9a\x4d\x33\xc4\xe3\x8d\x0d\x33\xdd\x11\xfc\x3d\xd3\xf7\x8c\x73\x6c\xcf\xd7\x99\x85\xc6\xf3\xf6\xd6\x72\x64\x8d\x8c\x2c\x80\x7a\xf2\xb1\xd3\x25\x13\xca\x58\xde\xe8\xbb\x6f\x39\x2a\x7a\xe8\x1b\x19\x39\x1e\xee\xae\xf0\x9f\x9e\x27\x3e\x51\x7c\x65\x2b\xf2\x73\xd0\xc9\x2b\xc1\xd7\xb7\xb8\x33\x09\xbe\x39\x29\xac\xe6\xf5\xf3\x59\x59\xb8\x29\x2b\xa0\xe9\x8f\x2e\x79\x68\x29\x27\x5c\x46\x82\x26\x99\x48\x76\x4e\x3e\xf1\x2a\x68\x92\x13\x5b\x3a\x89\x19\x97\x70\x40\x4e\xbc\xa3\xf4\x8a\xd4\xeb\x4c\x7f\x63\x89\x19\x93\xa0\x49\x4e\x3e\x71\xe6\xc4\x94\x47\xd0\x24\x93\xfe\x95\x5f\xa9\xb2\x1e\x41\xcb\xca\x98\x25\x0b\x4c\x11\xb4\x4c\x8e\x6c\x4e\xfb\x23\xc6\x9e\x13\x4b\xac\x12\x4b\x09\x96\x65\xd4\xf7\x33\x42\xfb\x0a\x96\xe5\xcc\xc0\xcc\xe1\x23\xc6\x9e\x51\xca\xcf\x48\xe4\x2b\x58\x96\x11\xc5\xcf\xa8\xe1\x2b\x58\x96\x51\xa7\xcf\xc8\xd2\x2b\x58\x96\x73\x62\x9b\x28\x7d\xc4\xd8\x33\xea\xed\x19\x69\x76\x05\xcb\x32\xf2\xeb\x99\x04\x33\x05\xcb\x32\x79\x66\x19\xc1\x75\x05\xcb\x32\x39\xab\x19\xcd\x72\x05\xcb\x32\xe9\x66\x19\x65\x71\x05\xcb\x32\xca\xe2\x39\xd7\x8f\x30\x7a\x46\x1a\x3c\xe7\xf6\x11\x46\xcf\xe8\x70\xe7\xdc\x3e\xc2\xe8\x19\x99\xeb\x8c\xbe\xf5\xeb\xbd\xa3\x68\x9d\x91\xb2\x7e\xbd\x77\xe4\xa3\x33\xda\xd0\xaf\xf7\x8e\x36\x74\x26\x9b\xf6\xf5\xde\x91\x81\xce\x79\x7c\xbe\x77\x34\x9e\x33\x62\xcb\xaf\xf7\x9e\x17\xfd\xd4\xae\x01\x9f\x8c\xe2\xe7\x59\x1b\x03\x8e\x9b\xb2\xe2\xe7\x59\xa9\xff\x8e\x9b\xb2\xe2\xe7\x04\xce\x15\xd8\xca\x8a\x9f\x23\xb7\xfb\x7b\xcd\xc3\x99\xc7\x3e\xaf\x79\x74\xe6\xfc\xbc\x26\x2b\x49\x3e\xfb\xf3\x9a\x02\x61\xf7\x03\x22\xe5\x2c\x10\x76\xe7\xff\x4f\x40\x91\x11\xbe\xcd\xf9\x7e\xe0\xa7\x8c\xe2\x6d\x26\x98\xff\x9a\x60\x48\x33\xce\x4f\xf8\xc0\x4f\x19\x8d\xdb\x4c\xee\xb1\x16\xea\x4c\xd8\x3f\xa3\x6a\x2b\xfc\x94\x09\xe6\x67\x82\xf9\x77\xf0\xae\x20\xfa\xcf\x0a\x50\x1e\xa7\xf5\xce\x24\x8c\x65\x08\x69\x95\x12\x9c\x21\x2d\xcd\xb0\x95\x2a\x25\x38\x43\xda\x97\x61\xeb\x53\x42\x55\x86\x91\x2f\xb7\xf6\x91\x26\x95\xa1\xdb\xcb\x04\xcd\xd2\xf1\x5c\x9f\x0c\x49\x56\x86\x1d\xeb\x41\x42\x27\xc3\x80\x95\xa1\xbe\x7a\x4e\xd2\x99\x87\xc6\xeb\x8d\x0f\x37\xf2\x25\xfd\xff\x25\xec\xdc\x95\x34\x57\x72\x23\xec\xeb\x29\xe6\x0d\x44\x16\x12\x75\x89\x58\x4f\xb6\xf4\x0e\x64\x5d\x22\xd6\xd8\xb3\x13\xa3\xdd\xf7\x57\x34\x3e\xb4\xba\xcf\x71\xc6\x18\x63\x2a\xf8\x37\x6f\x45\x14\x90\x85\xcc\xb4\x16\x31\x4f\xb0\x74\xac\x01\xf5\xb4\x28\x35\x9d\x1e\x7e\xa3\xe3\xcb\x10\x36\x72\x1a\xaa\x0c\x81\x22\x43\x99\xc8\x2d\xd2\x04\xeb\x70\x14\xd0\xde\x09\x43\xa4\x18\x5c\x0c\x7e\x5c\x44\xd8\x1a\x7c\x0c\x02\x34\xa2\x69\x13\x52\xe1\x31\xf8\x32\x18\x4d\xb9\x95\x30\x8c\x80\x8c\xf5\x58\xe7\x43\x6c\x33\x06\x37\x83\xb1\xab\xd9\x88\xb8\xf4\x8d\x19\x7d\x63\x41\x18\xfb\x18\x64\x9d\x40\x9c\xc4\xdf\xc6\xd9\x59\xf5\xd1\xe9\xf0\xcd\x6a\x03\xbc\x66\xc8\x6e\xf8\x0e\xa3\x28\x4b\xb0\x0d\x94\xcd\x37\xf1\x9e\x86\x31\xeb\x58\x92\x1f\x66\x48\xa7\x7e\xa1\x7d\xac\xde\x21\x05\x67\x08\x36\x18\x4a\x0d\x15\xc1\x50\x43\xc9\xc0\x90\x30\xa8\xe2\x6f\x22\x29\x60\x68\x09\xd4\xca\x04\x83\x33\x6f\x03\x5b\x32\x44\xe3\x6c\xb0\xcf\x03\xbf\xbd\xf6\x93\x83\x0f\x83\x71\xa2\x11\x1d\xa5\x06\x7f\xdc\x20\x8e\xd7\x11\x3b\x65\x06\xe5\xdb\xe0\x7a\x57\x5c\xe0\x0d\x06\xb7\x41\xd6\xae\x0f\x4b\x3a\x48\x9f\xc1\x23\xae\x73\x73\x49\x2c\x2c\x23\x6d\x87\x62\x7b\xdf\xc6\xe0\xec\xe9\xff\xc3\x72\x01\xf3\xd4\x46\x9a\xf4\xc4\xe6\x9d\x41\xd7\x34\xd8\x98\xad\x44\xbd\x64\x30\x27\x0d\xca\x64\xc3\x78\xd5\xa0\x37\x1a\x0d\x71\x8d\xd6\x06\x4b\x30\x70\xa4\x03\xcc\xe0\xd1\x11\x9f\x06\x02\xcd\x8a\xb2\xc0\xe0\x12\xda\x40\x61\x19\x75\x04\x1b\xac\xf3\x23\x4d\x4d\xf8\x9b\xb0\xe4\xec\x49\x27\x90\xe8\x0a\x31\x48\x6f\x06\xdb\xad\xd5\x9b\x23\xc9\xb7\x9e\xf4\xd4\x88\x16\x0c\x7b\xe2\x0b\xb0\x07\x8b\x8c\x16\xa5\x86\x3d\x40\x28\x4f\x54\x80\xad\x87\xd2\xb5\x3d\x51\xad\xd9\x83\xf5\x44\x67\x61\x79\xc8\x1d\x1e\x3c\x20\xa0\x67\xdb\x03\x05\xe7\xc1\xc9\x00\x56\xb1\xd1\x5d\x67\x74\xd7\xb5\x19\x74\x43\x7b\x1a\x27\x42\x09\x1f\xd7\x30\x7b\x20\xd6\x3c\x88\xd0\xaf\xce\xcf\x59\x6d\x68\xa4\x6b\x87\x6c\xe8\x61\xf1\x7f\x90\x65\x3f\x41\xae\xb4\xe7\x65\x10\x49\xc5\x6b\xf1\x37\x09\x6b\x0f\x8a\x7e\x46\x08\x7a\x40\xde\xe8\xbc\xeb\x95\xc9\xf0\x30\xbd\x81\x1b\x7b\xe3\x2b\x7e\x99\xde\xa0\x87\x1d\x7f\x09\x7b\xc9\x08\x5e\xf4\xd3\x72\x26\xbf\xb4\xc2\xbc\x88\x0d\x0f\x62\xf2\x4b\x29\xfd\x22\x1b\xf6\x46\x95\x6e\x2f\x93\xf6\x45\xa7\xea\x04\x0b\xdd\xe8\xc3\xb3\xec\xc3\xbb\x1f\x4e\xd4\x18\x6c\x48\xb9\x04\x37\xd3\x68\xb5\xb3\x6c\xb5\x6b\xf9\x73\xb2\xf5\x17\xd6\x2f\x26\x1c\x96\xa0\x65\xf6\xdf\x0d\xcb\x41\x8e\x44\xaa\x86\x56\x60\x7b\x09\x02\xe0\x9a\xe3\xe1\xbd\x27\xbc\xf9\x22\x32\xf3\xe4\x89\x88\xc9\x2f\x94\xd7\x97\xb0\x36\x79\xef\x33\x62\xdd\x41\xc2\xd1\x66\xa4\x2c\x36\xfd\x7b\x0e\x3e\x49\x0f\xa7\x7f\xcf\xc1\x27\x15\xce\x04\x76\x82\x9a\x64\x34\xc9\x19\xdd\x71\xc9\x2d\x32\x9a\xe4\x8c\xee\xb8\xe4\x16\xd9\x24\x4d\x9f\xd4\xc7\x25\x84\x3a\x6c\x32\xeb\x66\xa3\x6f\x21\xd4\x73\x6c\xb2\x1e\x4d\xd6\x23\x8b\x26\x1d\x9b\x4c\xc5\x49\x25\x0d\x35\xc9\xe8\xaa\xb3\x49\x41\x5d\x06\x47\x76\xae\x33\x9b\x2e\x4a\x0e\x72\x9b\x1d\xdc\xa1\x72\xa2\xd8\x71\x36\x9a\xeb\x92\xc4\x64\x13\x44\x6b\xd2\x59\x56\x1a\x77\x04\x5f\x70\x66\x0a\x4f\x59\x90\x90\xe9\xcc\x14\xfe\xb9\x7f\x9b\x50\x2c\x82\xc1\xca\xe2\x32\x7a\x7a\x6d\x51\x63\xae\xac\x90\x98\xa7\x8b\x87\xbd\x48\x0c\xe9\x3d\xb6\x15\xfb\xbb\xb6\x3e\xeb\xa5\xc6\xe0\x62\x90\x76\x92\xc5\x91\x54\x41\x8b\x96\xd9\x1d\x60\x94\x2d\xaa\xa0\xd5\xa0\x2b\x06\x7b\xc6\x16\xa5\x0a\x98\xe9\x55\x82\x28\x63\x8b\xfc\x69\x1d\xf6\x93\x03\x1f\x33\xc0\x52\xdb\xc9\xfc\x22\xc7\xd9\xe4\x38\x3b\xf9\x55\x7c\x4f\x89\xa7\x02\xa4\x5e\x46\x4e\xb6\x69\xc4\xda\xd0\xc1\x4a\x74\xd5\xda\x06\x08\xdf\xec\xa9\x42\x16\x30\x60\x55\xdb\xe5\xfa\xc2\x88\x6c\x83\x6c\xed\x80\xb4\x3e\xef\x28\x41\xd6\x5d\xf6\xb7\x3b\x82\x35\x65\xb0\xa6\x3e\x67\xf4\xe6\x99\x6d\x92\xa2\x9c\xd1\x80\xa5\xb6\x67\xfd\xf6\x56\x37\x5f\xde\xfe\xf6\x56\xff\x66\x87\x7b\x3f\x25\xc9\xa0\xf1\x94\xc0\xdc\x0c\x7c\xec\xf3\xc5\x01\x8c\xd9\x61\xc5\xcc\x17\x77\x62\xe1\xb4\x63\xdf\x4b\xe2\x23\x8e\x14\x67\x0f\xc6\x98\x1d\x0a\x89\x13\x98\x44\x41\x87\xc3\x0e\xa1\xe8\x44\x28\x2a\x23\xff\x26\xf3\x05\x0c\xab\xe0\x01\x6d\x60\x58\x06\x86\x55\x6a\xfe\x4d\x3e\xc7\x93\xf5\x6e\x5e\x27\xd5\xc5\xa1\x9d\xeb\xf3\x3a\x89\x64\x09\x3b\xa1\x01\x6e\x87\x42\xf7\xb0\x11\xe5\x8b\x9f\xb3\xcb\x78\x06\x1b\xec\xe2\x8e\xa8\x2e\xc0\xa2\x0c\xf6\xa1\x81\x37\x59\xe2\x4d\xf9\x3d\x1d\x72\x9c\x93\xfd\x4a\x04\x83\x03\xc4\x9b\x58\x54\x06\x83\xf3\x72\x22\x90\xa9\x9c\xde\x87\x75\xfe\xd0\xd9\x64\x6f\x9e\x88\xd7\x01\x0a\x5c\x99\x36\x87\x77\x0b\x94\x65\x57\xf4\x9c\x1b\x7d\x86\x76\xe6\xf3\xfd\xc9\x4f\xee\x7d\xd5\xef\x4f\x89\x2c\xf8\xac\xf5\xfd\x29\x11\x5c\x0f\x7b\x0f\x9f\x67\x67\xf1\x3f\xe7\x4f\x3f\x27\x42\x9c\xf3\xed\xe7\xa2\x23\x51\xd7\xad\xaf\x23\x75\x05\xbc\xa2\xeb\x7e\xbf\x1f\x59\x38\xd2\xfe\x74\xa4\x71\xa4\xfd\xe9\xc8\x58\xe7\x45\x2f\x61\x4e\x30\x5d\x51\xb7\x2a\x81\xad\xcf\x9f\x47\xec\xd1\x05\x37\xf7\xf3\xe7\xce\xdf\xa4\xd3\x84\xd0\x2e\x60\x2e\x65\xdb\x20\xa1\x5d\xa0\x5d\xba\xea\xf5\x15\xda\x75\x05\x62\xa0\xab\xea\xeb\x6d\x0a\x4e\xa1\xb2\xdd\x90\xb7\xa9\x2b\xe6\xa7\xb2\xeb\x90\xd0\x2e\x9a\x0f\x75\xd5\xf9\x15\xda\x05\xed\x50\x57\xae\x0c\x83\x23\x23\x74\xe9\x6a\xfe\x15\xda\x45\x47\xa2\xae\x6c\xc7\xab\x9c\xa8\x73\xef\xec\xf2\x13\xda\x75\x45\xf1\x2c\x28\x89\x39\x15\x75\x45\xf4\xd7\x95\x9d\x77\x8b\x9f\x0f\x4e\x04\x03\x84\x68\xa3\x6b\xf0\x94\xa0\x6a\x12\x6d\x74\x43\xb9\xbc\x93\x85\x1d\xf1\x53\xe0\x62\x82\x84\x98\xf1\x53\x77\xa4\xdb\x4a\x02\x3b\xf1\x53\x77\x54\x7e\xba\x4b\xfd\x8a\x9f\xba\x23\xbf\xd3\x1d\x69\x49\xc6\x4f\xdd\x85\x13\xd1\x2a\x42\xfc\xd4\x1d\x89\x9d\x6e\x94\x07\x88\x9f\xba\x79\xef\x37\x68\x3c\xf1\x53\xb7\xf8\xb9\xce\xb7\x3b\xba\x23\xa2\xe8\x86\xaf\xfd\x79\x47\x87\x8b\xc7\xa5\xba\x46\x03\xa5\x4a\x2c\x3d\x2a\x78\x3e\xa1\xe5\x2d\x58\xd1\x82\x15\xdd\xef\xca\x91\x51\xe1\x88\xa6\xc5\x5e\x02\xdd\x56\x89\xa0\xaa\x82\xb6\x73\x8d\x1c\x5c\x90\x87\x65\x88\xa6\x5d\x33\x07\x3b\x83\xe8\xfe\x45\xf7\xbc\x40\x7c\x64\x29\x77\x56\x39\xd2\x18\x44\xb8\x0a\x23\x5e\x81\xd5\x08\x90\x66\x2c\x1e\xb2\xc5\xcc\x92\xc5\x4a\xa9\xc3\x1d\x59\xe4\x0e\xb2\x00\xfc\xfc\x1a\x9c\x28\x72\x5b\x59\xe4\xb6\x7e\x85\x7e\x98\x2c\x40\x75\x59\x14\x6b\x5e\x72\x30\x72\x38\x19\xc0\xab\x3b\x27\x5a\xfc\x3c\xaa\x34\xa7\xd9\x4d\x54\xfc\xa2\xe2\x77\x7c\xed\x04\xf7\x58\xf4\xfb\x39\x4a\xe9\xa2\xed\x4f\x70\x02\x43\x2f\xff\x37\x09\x85\x14\x79\xac\x14\xa8\x6c\xa8\xb0\x7f\x0c\xc6\xaa\x28\xda\xf8\x42\x38\xf3\x63\xd0\xf8\xdb\x51\xd7\x79\xb8\xba\x7d\xfc\x8f\xab\x88\x58\xe2\xf8\xa4\x49\xc4\x12\x1a\xf7\x42\xb6\xee\x63\x30\xd6\x25\x29\xd6\x25\x47\xa0\x5a\x22\x18\x28\x82\x81\xa3\x81\x2c\x45\xa2\x26\x45\xa2\x66\xe8\xbc\x4b\xf1\x40\xa5\x68\xeb\xf0\xc9\x4c\xc1\xc2\x5f\x10\x1b\x7d\x57\x2e\x3e\x4a\x00\xd1\xa3\xe7\x48\x81\x4a\x11\x94\x45\x8f\x9e\x53\x48\x08\x2a\xa3\xd2\xcb\xfd\xe6\x05\xe2\x60\x2e\xac\xcb\x57\xd7\xb3\x50\x2f\x95\x13\x75\xd3\xb7\xdc\x82\xc0\x28\xbc\xc2\x95\x26\xe1\x16\x54\x47\x61\x0b\xae\xf4\x03\xb7\xcd\x91\xb1\xd6\xcb\x23\x22\x57\x4d\x06\x23\x88\x8a\xe6\xbd\x5a\x43\x54\x54\xf4\xcd\x29\x5d\x75\x7b\xec\xc4\x08\x1f\x5d\xa5\x81\x6e\x8f\xed\x63\x61\x61\x2b\x3a\xec\x6a\xdf\x9c\x3d\x56\x3f\x61\xc7\x5a\x07\xb7\x8a\x75\xaa\xf0\x4c\xad\x8f\x71\xab\x4c\x36\x9c\x46\x2b\x96\x62\xc2\x3f\x54\x58\x85\xd6\xf7\xe2\xde\x37\xf7\x0e\xeb\xf6\x0d\x74\x52\x78\x6f\xca\x93\x10\x1a\x9a\x62\xaa\x7c\x7d\x40\x4f\x15\xc7\x28\x55\xa6\x65\xc5\xac\x7d\x05\x14\x28\x9a\xdb\x84\x97\x62\xdd\xa1\x0f\xad\x1a\x11\x4b\x15\xc3\xf2\x1d\x5b\x14\xa2\xf1\x4d\x34\xbe\xd5\x1d\x98\xa3\xb0\xf4\x13\x5e\x7e\x15\x53\x22\x41\xf3\x54\xd2\x3c\x71\xb3\x11\x8c\x4e\xa5\x1f\x5a\xa9\x0c\x06\xd6\xac\xb4\x1b\xcb\xb0\x89\x51\x98\xd2\x21\xcc\xf2\xc8\x08\x39\x4a\xe7\x27\x0f\x2a\x91\x2a\xf3\x29\xcd\x9a\xbc\xe5\x20\x3f\xc7\x51\xc9\xa3\x06\x15\xce\x48\xc2\x12\xa9\x21\x13\x28\x2c\x8a\x84\x37\x51\xc3\x6e\x42\x78\xf7\x08\xd3\x9e\x46\xb5\x2a\x8c\x6b\x84\x63\x4d\x6b\xd1\x0c\x20\x5a\xe4\xd4\xb2\x52\x0f\x60\x57\x38\x9f\x08\xcb\x93\x36\x42\xf0\x4d\x98\x72\x08\x37\x8e\x06\x41\x48\xf8\x3e\x08\xc3\x87\x36\xa3\x23\x4c\xed\xe1\xe7\xf8\x12\x2f\x6e\x13\x79\x7e\xa1\xcb\xdf\x36\x2b\x38\x3a\xf9\x6a\xd8\x56\x9d\x20\x17\x0b\xb9\x7c\xb5\x74\xaf\xe2\x81\x20\xaa\xad\x54\xd3\x2e\xdc\x11\x1a\xd9\xea\x69\x4b\x73\xe5\x60\xcc\xa5\xd4\xac\xb6\x60\x3b\x08\xf5\x67\xa5\xec\xb3\x62\x6b\x4a\xc8\x3e\x2b\xf5\x9e\x11\x8b\x14\x6a\xcc\x02\x76\xeb\x0a\x7e\x91\x90\x53\x56\x4f\x97\x92\xc2\xdf\xac\xfc\xcd\x34\x16\x21\xb8\x20\x61\x2c\xb4\x8b\x57\xf7\x77\x1d\x82\x6c\x6f\x5c\x56\x94\x87\xdd\x03\x2c\x15\xac\x4e\x25\xab\xb3\x06\xd7\x44\x30\x37\xd5\xd3\x03\x82\x05\xa6\x4f\x6e\x15\x73\x84\xc6\xd2\x3e\xf8\x42\x06\x0a\xf1\xc8\x84\x09\xdd\x48\x21\x18\xd9\x77\x34\x6d\x08\x8d\x41\x8d\xc8\xad\x56\xaf\xf7\x5a\x4c\x73\xe4\xf8\x94\x3a\x7c\x57\xb0\x99\x85\x66\x9e\x52\x2c\x0f\xd2\x84\x90\xb2\xd3\x88\x1b\x1c\x77\x90\x38\x35\xb8\xab\x11\x77\x35\xca\xcd\x91\x9d\x23\xd1\xa2\x2b\xd1\xba\x2d\x94\xe2\x84\x44\xdc\xea\xb5\xac\xc5\xe2\x85\x30\x9c\x52\x11\xae\x30\xd5\xe9\x9d\x53\xca\xa1\x29\xff\xee\xe4\xb2\xd0\x1b\xf3\xce\xdf\x9d\xdc\x00\xa2\x60\xd5\xb8\xac\xcd\x15\xec\xd4\x75\xe4\x19\x1c\x8e\x84\x1c\xd8\x09\x5c\x88\x43\xe9\x61\xdd\xef\x81\x3f\x09\x75\x27\xa5\xac\x13\x68\x8d\x90\x6e\x52\x6a\x36\x0d\x2e\x09\x95\x26\x81\x93\x0d\x4c\x3a\x05\x0b\x55\x0f\x22\xa4\x98\x39\xe8\x89\xe8\x22\x78\xa7\xe3\xad\x9c\x88\x69\xf9\xa0\x2a\xf9\x92\x04\x42\x3f\xd5\x83\xf8\xe2\x24\x9e\x3c\xa4\x0d\x0f\xba\x87\x53\x31\x57\x21\x9c\xea\x41\x8e\x10\x23\x40\x3d\x51\x4c\x09\xb8\x6c\x4c\x56\xb2\x27\x70\x08\x3d\x48\x0e\xae\x60\xf5\xea\xe9\x9c\x1d\xb5\xbf\x95\x67\x8f\x92\x45\x4f\xd4\x2a\xda\x21\xe1\x2d\x58\xa8\x82\x85\xea\x77\xec\x61\xe8\x21\x92\x3f\x1b\xfd\x8c\xc5\x91\x87\x07\x72\x40\xd0\x83\xa2\xa6\xe7\xf0\x3c\x63\xb7\xc3\x4b\x28\x03\xe8\x8d\x07\x29\x90\x31\xb7\x8f\x8c\xeb\x37\x09\x06\x40\x99\x5e\x12\x0c\x45\x3d\xaa\x17\x45\x91\x37\xb2\x07\xaf\x21\x23\xa6\x97\xc2\xe2\x8d\xc7\xeb\xa8\x8a\xea\x65\x85\x7c\x63\x85\x74\x18\xa3\x7a\x11\x39\x81\xa1\xea\x08\x0c\xe8\x65\x4e\xbd\x31\xa7\xaa\x11\xfb\xa1\x9f\x0a\x30\xac\x1a\xf9\x29\x80\x97\x00\xbc\xaa\x58\x60\xdf\xcd\xd9\x37\x00\x77\x80\x92\x9a\xa4\x8d\xf3\x66\xd9\xe4\xeb\x9b\x51\x77\x89\x4e\xbc\xfa\x12\xea\x26\xc9\xf5\x8c\xe4\xba\x22\x6b\x21\x48\xa5\x9a\x80\xa7\x14\xfd\x9a\xc4\xe9\x49\x9c\x2e\x24\x17\x93\xdb\x9c\xf8\xc6\x66\xc2\x3e\xa3\x6b\x55\xf0\x39\x5b\xe3\xd3\x01\x48\xd2\xc4\xd3\x72\x50\xeb\x4c\x3e\xb2\x09\x42\x3d\x03\x16\xd4\x24\xfa\xcc\x49\x98\x77\xee\x28\xea\x51\x4d\x9c\x04\xd7\xe1\x92\x62\x71\xd2\x8c\xee\x8b\x76\x1a\x97\xc4\xe7\x38\x63\xc2\x34\x2c\xf4\xb5\x22\x07\xd5\x4a\xbb\xb8\x95\x83\x93\xc1\xc8\xcd\x31\x79\xd7\x8a\x9a\x53\x0b\x0f\x04\x34\x5b\xb5\x02\xaa\xd0\xc2\x2a\xa0\x87\xd1\x91\x16\x1f\x19\x98\x56\x1f\xb1\x01\xa3\x45\xbe\xb7\x10\x7b\x5f\xe4\x26\xab\x73\x64\x24\x48\x9d\x8d\x22\xad\xa8\x13\xb4\xb0\xf0\x39\x0f\x83\xd1\xb4\xa5\x95\x62\xdc\x44\x88\x15\xad\x58\x5a\xb0\x8f\x75\x71\xf1\x7c\x10\x0b\x79\x6a\x0f\xba\xab\x36\xd3\x7c\xa3\x80\xdc\x29\x95\x76\x90\xf6\xe2\xeb\x0a\x9c\x74\x31\xd8\x18\x44\xe6\x91\xbf\xb9\xe3\xdd\x6a\xc3\x14\xde\xd4\xb8\x9b\x57\xbc\x11\x95\x3d\x41\x55\xd2\x26\x61\xa1\xdb\xce\x31\xa5\x17\x4d\x70\xda\x0f\x8a\x20\x54\x06\xe7\x42\x84\x07\x0a\xed\x15\x3a\x94\x3a\xac\x7b\xf4\x3d\x5d\x18\xb7\xe9\x90\x2a\x82\xba\x94\x52\x73\x50\x0c\xfa\xf7\x23\xf9\x64\x92\x35\xf9\x79\x24\x95\xd6\x99\xf9\x37\x63\xce\xd3\xad\xa3\xc3\x6e\x2c\x9c\x72\x1d\x52\xc5\xc3\xd6\x3c\xee\xf0\x02\xd4\xd0\x61\xe3\x55\xe1\x34\x20\x5a\x78\x44\xef\xce\x25\x5e\x31\x2d\x3c\x02\xf0\xb8\xc4\xa4\x3d\x81\x18\x0a\xdc\xe3\x92\x73\x24\x05\xe5\x39\xd9\x2b\x1d\xda\x7e\x34\xed\xf8\x67\xd3\x0e\x72\xc5\x70\x36\x3d\x39\x9b\xb4\x49\x3a\xda\x46\x7e\x65\xeb\x25\xba\xf0\x30\x38\x1d\xd8\x24\xbb\x41\x1d\x7a\xa6\x5f\x25\xf7\x97\x19\x34\x6a\x39\xfb\xd6\xe6\xe1\x00\x25\x7e\xe5\x26\x7e\x0e\x06\x0e\xe1\x89\x43\xa4\x45\xfd\x9d\xf1\x77\x97\xaf\x27\xef\x25\x82\x87\x97\xbb\x7e\x3d\x79\x2f\xc4\xc8\x02\x69\xe4\xf3\x48\x76\x1b\xff\x9f\x55\xc8\x60\xe0\x2c\x5e\x1c\xb1\x27\xf4\xc8\x29\xad\xbd\x90\xf2\x1d\xac\x98\x0a\x3a\x4b\x85\x0c\xe7\xbc\x39\x98\x31\x3d\xdf\x74\x5c\x7c\x41\x67\xa9\xb0\x13\x49\x63\x80\xc3\x31\x74\x38\x86\x4e\x77\x90\x97\xc1\x6c\x0d\x18\xc3\x2f\x04\x37\xcb\xe0\x3a\x23\x2e\xf9\x85\x3a\x2f\x85\xbd\xd3\xc3\xe1\x17\x3e\x36\x88\x98\x79\x41\xad\x09\xda\x9b\x97\x87\x13\x45\xfe\xe4\xe9\x97\x59\x02\xf2\x73\x28\x8a\x7e\xe3\x6b\x07\x45\xd1\x4b\x60\x7d\x7e\xe3\xa2\x58\x26\x3f\x8f\xcf\xde\x01\x7b\x1c\xa6\xa1\x17\x8a\xbe\x54\xc8\x47\xaf\xcc\xd1\x11\x72\xcb\xbf\x19\xc1\xdf\x91\x2d\x73\x43\xca\xb8\x1c\x7e\x8e\x78\x92\xa1\xc9\x59\x0e\x47\x1e\x8e\xc4\xb2\x81\x26\x13\xa7\xc9\xc4\x85\x0d\x29\x1a\x43\x6e\x91\x50\xb8\xe3\x31\x40\xeb\x88\x1b\x32\x4b\x8e\x43\xb0\xa1\xaf\x64\x85\x23\x91\xde\x85\xc4\xe8\x16\x61\x34\xbc\xd4\x63\x90\x6b\x31\xb6\xa5\x11\xb8\x05\xb1\x70\x13\x47\xe2\x29\x61\x11\x82\xdc\xc4\xb6\xf4\x95\x47\x3e\x0c\x82\x19\x20\xa9\x0f\xa8\xe1\x56\xb3\xd8\xe7\xec\x68\x76\x59\x80\x67\x61\x34\x11\x83\x3c\xb3\x46\x5d\x8f\x9b\x98\xa1\xd9\x05\xee\xe1\xe9\x55\x6e\x0f\x97\x14\x7b\xab\xfe\x20\x61\x6d\x28\x71\x19\xea\x57\x2f\x1e\x32\x50\x2f\x1d\xce\xa5\xbf\x4f\xff\x5d\x42\xe1\x16\xa5\xac\x5b\x2c\x79\xfe\x62\xe0\x46\x5f\x89\x5b\xd4\x2b\xfe\x22\xd4\x0e\x67\xd3\xe1\x6c\xfa\xe4\x2b\x31\x24\xb5\x2c\x00\x59\x9f\x68\x9d\x5a\x14\x69\x6e\xb1\x0e\xfa\x42\x65\x9e\x16\x12\xa7\x85\xc4\x17\xa6\x0d\x46\xeb\x01\x8d\x21\x9e\x5e\xbf\x8a\xd8\xec\x40\x32\x7e\x98\x3e\x09\xc2\xc0\xbd\xf4\xc3\xd9\xc5\x6c\x40\x23\xce\x0f\xaa\xd5\xa2\x49\x41\xb1\x45\xeb\x69\x65\x02\xbf\xd2\xe1\x57\xd6\x0b\xad\xd3\xc4\x59\x00\x58\x2a\xda\x6b\x9e\x38\x8b\x22\x3e\xd5\x8c\x8e\x8a\xec\xd4\x15\xd5\x52\xbd\x91\x53\x57\x14\x4d\xae\x58\x89\xea\xcd\x87\x2b\x62\x89\x1c\x9d\xac\x99\x47\x72\x47\xb1\xa9\x57\xd3\xfa\x15\xb4\xc6\x41\x6b\xea\x8d\xd4\xb3\x98\x37\x8a\xea\xa3\x16\x34\x90\xd5\xb8\xf7\x86\xa2\x16\x5f\x9e\x68\x7c\x50\xac\x75\xb5\xe0\xed\x22\x7a\x1c\x14\x31\xa1\x0a\xe7\x30\x48\x97\xae\x58\xd9\xab\x63\x32\x20\x42\x83\x62\x37\xa0\x3a\x32\xb1\x88\x59\xb9\xc0\x35\xfc\xf0\x90\x91\x52\xd3\x44\x66\x0b\xd9\x5d\x4d\x4e\x14\x99\x72\x25\xe5\x74\x60\x21\x87\xb3\x59\xd3\x78\x51\x8b\x87\x0c\x02\x52\x71\x9b\x14\xa1\x01\x11\xac\x9a\x32\xf3\x10\x39\x1d\x11\xac\xda\x71\x58\xf5\x2b\x3f\xf8\x00\x7a\x3a\xe1\xcd\x23\x0b\x76\x8f\x08\x5f\x47\x1e\x19\x49\x83\x7b\xa1\xd5\x01\xa9\x62\x4f\x6d\x39\xde\xfb\xf3\xe6\x91\x9b\x41\xa4\xbb\x78\x74\x0e\x12\xe7\x51\x4f\xd7\x07\x0d\x5f\x27\x42\xb8\x21\xdd\x85\x01\xba\x13\x1a\x5c\x64\xac\xc4\x66\x27\x34\xb8\x38\x12\x43\x22\x98\xa6\xee\x11\x21\xea\x8b\xb6\xbe\xb3\x04\xb9\x12\xfd\x89\x69\x03\x74\xe5\x10\x4e\x6b\xea\x48\x3b\x58\xa8\x47\x65\x59\x37\xf6\x94\x90\x43\xdd\x3b\x40\x0f\x4e\x44\x4e\x14\x77\x7c\xc6\xd3\xc7\xc5\x89\x10\x9e\xdd\x17\xbc\x77\x9f\x1c\x49\x1a\x9b\x6e\x29\x3e\x39\x92\xee\x8b\x92\xf7\xce\x87\xee\x11\xf6\x9b\x21\xa0\x8e\xc4\x98\xa7\xc4\x98\xa1\xd3\xeb\x2c\x02\xc0\x5a\x2d\x4d\x5f\xa1\x75\xba\xc7\x16\x6d\x13\x81\xa5\x06\x1c\xe8\xc0\x5a\xcd\xd3\x91\x3c\x32\x09\x07\xcf\x6a\x15\x75\xfb\x1a\x6b\xb9\xd7\x1b\x3d\xaf\x8e\xab\x33\x8b\x00\xcc\xcf\x56\x79\xc8\x95\xe8\x5f\x23\x91\x6c\xed\xc6\xc3\x9a\x45\x00\xe4\xab\x35\xbe\x77\x90\x2f\x07\xf9\x6a\x0d\x19\xe3\x2a\xce\x1e\xba\x5c\x2d\x8d\x14\x2b\x91\xba\x46\x71\xd9\x9e\x4f\x2b\x7f\x2e\x9e\x02\xe2\x4d\x4b\x71\x24\x09\x53\xa1\xec\xc5\xe1\x02\xf5\x48\x47\x3d\xb2\xbd\x27\x5d\xf4\xb9\xa4\x01\x78\x94\xfe\xd6\x7c\xb0\xa8\x97\xb5\x99\xf7\x4e\x30\xae\xf1\xaa\xda\x9a\xe9\x95\xce\x91\x13\x44\x29\x4d\xb6\x59\x93\xc1\xcf\x5a\x9a\x62\x55\x44\x0b\x6b\x04\xdc\x7e\xa1\x15\xdd\xf8\x8e\x1a\xfe\x78\x6c\x3e\x39\x22\x66\x51\x1c\x86\x9d\x73\x0e\xd2\x66\x85\xb7\x5c\x49\xfb\xd4\xc2\xca\x87\xe7\x1b\x0d\x60\xde\xf8\xe2\x1a\x66\x6f\x96\xee\x83\x7c\x47\x80\x6a\xdd\x3e\x7d\x84\xa9\x42\x13\x7b\x42\x96\x1d\xa6\xa9\xb7\xc4\x9e\x66\xfa\xec\x3a\x83\x51\xa9\xf8\x95\x46\xb9\xd4\xab\x78\x7f\x79\x5a\x5f\x56\x8e\xc4\xf4\xcb\x59\x65\xe8\xa4\x73\x78\xa7\xdd\x31\xe7\x69\x8d\xdb\xc4\x5a\xab\xa6\x23\x65\xe7\x48\x5c\xb4\x2a\xee\x19\xb0\x50\xbd\x61\x98\x55\xd3\x55\x33\x0a\x24\x87\x77\xda\x6b\x1a\x37\x92\x99\x35\xf6\x5a\x1a\xf1\x13\xd4\xcf\x5b\x74\x94\xf7\xd6\xd3\xcc\x93\x07\x12\xf1\xb3\x77\xa5\xab\x26\x3f\x8f\xce\xcd\xde\x67\xda\x54\xf2\xf3\x78\xa9\x7d\xdc\xe9\x1e\xc9\x43\xc6\xe8\x3d\x3d\x1c\x68\xe7\x73\xda\xf9\x7a\x9a\x29\xd0\xce\xe7\xb4\xf3\xf5\xa7\xa4\x91\x22\x1b\x0c\x38\x99\x3f\xe9\xae\x73\x91\x88\x60\x61\xfe\xa4\xc9\x0e\x49\x34\x1a\x6f\x1d\x99\x25\xef\xf1\xad\x78\xc7\x1f\x7b\xd6\xbf\x6c\x81\x78\xff\x6b\x3e\x81\xe2\x9b\xf7\x98\x05\x7d\xa6\x53\x13\xd9\x57\xc7\x2d\x7b\xa6\x3d\x55\x04\x55\xa7\x8b\xb0\xcf\xb4\x77\xa3\xf1\xaf\xe3\xe0\x4c\x9b\xa3\xf7\x58\x37\xbd\x63\xcf\xbc\xd3\x91\xc8\xc9\xb0\xf0\x5e\xde\xe9\x26\x58\xb9\x5b\x6c\x96\x77\x9a\xee\x91\xc9\x77\xd4\xcb\x76\x9a\x3a\x92\x92\x75\x26\xca\x41\xe2\x9f\x9e\x42\x4f\x2d\xba\x93\xde\x5f\x24\x68\x1d\xc3\x62\x5a\xa9\x1c\x28\xd3\x13\xca\x3c\x79\x76\x64\x54\x3b\x46\x12\x57\x9a\xbd\x91\xec\x77\x1c\x24\xae\x74\xbf\x23\x16\x74\xd4\xc0\xae\x74\x86\xa2\xed\x10\xec\x73\x40\xfa\xf0\x6c\x3b\xec\x18\x26\xdc\xf9\x56\x5e\x9e\x12\xde\x08\xf7\x4e\x33\x2e\x76\x8d\x30\x34\x28\xf9\xe8\xd8\xcc\xe9\x78\x17\x14\x92\xcc\xce\x8c\x04\x4f\x1d\x25\x9d\xa1\x58\x18\x3a\xe2\x2d\x25\x0d\xa2\x48\x04\x3b\xe6\x03\x25\x0d\xcf\x26\x17\x8f\xeb\x40\x21\x47\xed\x93\xdb\xc4\x52\xa0\xa4\xfb\x27\x4b\x48\xa7\x41\x8a\xbd\x02\x87\xbc\xec\x1d\xa3\x00\x64\x9d\xbc\x93\x2b\xc2\x61\x1e\x25\x7d\xf9\x28\x0b\x3a\xaa\x65\x69\xb2\x0e\xe0\xeb\x83\xca\xdd\xd2\x91\x83\x7d\xbb\x81\xec\x7c\x00\x69\x7f\x73\x1a\x29\x7d\xc4\x96\xee\xf0\xf4\x3b\x61\x0d\x18\x31\xaf\x47\x2d\xc8\xf1\x47\x26\xe0\xf4\x5a\x8e\x5c\x81\x46\x44\x30\x1f\x31\x77\x47\x65\x09\x19\xac\xfd\x23\xd6\xfe\xd1\x5a\x7a\xe7\x90\xc2\x47\x90\x1b\x2d\xcf\xce\x4c\x46\x36\x70\xb4\xf4\x6d\x68\xb9\x5f\x87\x3c\xda\x4e\xbb\x14\x7e\x4e\xbf\xda\x60\xb5\x00\x55\xf6\x44\x95\x47\xda\x7b\xa0\xfd\x0a\xb8\x3c\x9e\x74\xaf\x61\x2e\xd1\x95\x39\x9e\x93\x86\x25\x9b\xc1\xc3\x20\x7e\x01\x14\x8e\x03\x6b\xbb\x37\x2d\x58\x28\x1c\x07\xde\x74\x6f\xde\x3b\x6d\xb1\x03\xaf\xb9\x37\xef\x9d\xa2\x72\x60\x2b\xf7\xd6\xf4\xb3\xe0\x79\xd2\x18\xb7\xd2\x9e\x85\x52\x61\x2c\xa0\x56\xcf\xc1\xc6\x60\xcc\xa5\x95\x7e\x5d\x8b\x07\x12\x73\x62\xac\xf4\x22\xda\x5c\x27\x0e\x6b\x69\x3b\x39\x58\xd5\x80\xb5\xc7\xbe\xd3\x0b\x82\xb3\xe3\x7f\xb6\xd3\x90\x82\x12\x73\x60\x44\xb6\x77\x3a\x20\x50\x3c\xe1\x01\x76\x94\x16\x06\x8b\xc1\x78\xf2\x67\xfc\xa5\x63\x6c\xff\xb1\xe6\x3f\x9e\x9f\xff\xf1\x5f\xff\xfd\xfc\xfc\x9f\xe7\x1f\xfb\xc7\xfc\xf7\xaf\x5f\xfb\x8f\x7f\xad\xbf\xcf\x7f\xfd\xf8\xcf\x8f\xd1\x1f\x6b\x9f\xbf\xff\xb1\x7f\xed\xff\xfd\xe7\xbf\x7f\xcd\xfd\xe3\xe7\x3f\x7f\x7e\xfc\x2a\xfe\xfd\x5f\x00\x00\x00\xff\xff\xed\x09\xe5\x3d\xde\x4c\x04\x00"); +func _ede ()([]byte ,error ){return _gb (_ab ,"78-V")};func _gefb ()([]byte ,error ){return _gb (_gafa ,"UniCNS-UTF8-V")};func _bdgg ()([]byte ,error ){return _gb (_fgbd ,"Adobe-KR-1")};func _gfgc ()([]byte ,error ){return _gb (_ada ,"EUC-H")};func _dacc ()([]byte ,error ){return _gb (_bbc ,"CNS1-V")}; +var _dcce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x0d\xc6\x83\xf8\x2c\x5f\x70\xde\x4c\x6e\x66\x0d\xea\xdf\x1b\xad\xa5\x67\xad\xb8\x0d\x0d\xe7\x9d\x9c\x57\xf1\x44\x48\x5b\x5b\x5b\x5b\xfb\x5b\x7f\xfc\x0f\x7f\xfe\x8f\x7f\xfe\xf5\x97\x7f\x7c\xfd\xf1\x7f\xff\xed\xaf\xe7\x3f\xdd\xff\xf8\x7a\x7e\xf9\xf5\xfa\xed\xfe\xfb\x5f\xff\xf5\xb7\xf3\xfe\x3a\xee\x7f\xf9\xe5\xd7\x3f\xfc\x21\xc4\xaf\xeb\x97\xf3\x1f\x9f\x26\xfe\x9c\x7f\xd9\xff\xf6\x87\x3f\xcc\xef\xff\xe9\xdf\xfe\xfe\x8f\xfb\x2f\x7f\xfe\xf5\xf9\xeb\x57\xe2\x7b\xd7\xbf\xfe\x6d\xbd\xfb\xf5\xf5\xc7\xff\xe3\xfe\x97\x5f\xfe\xfe\x8f\xdf\xfe\xed\xeb\xdf\xfd\xcf\xd7\x5f\x8f\xfb\x7f\xf8\xba\xee\x67\x3e\xff\xdf\x7e\xbb\xee\xdf\x7e\xf9\xf5\x5f\xbe\xfe\xdd\x7f\xda\xff\xb6\xff\x1a\xf4\xc3\x3f\xfd\xeb\xdf\xfe\xf6\xff\xdd\x7f\xb9\x7f\xfd\xc7\x57\xc3\xb3\xfb\xd7\x0b\x7f\xff\xf0\xc7\xff\xf0\x9f\xf7\xbf\xfd\xaf\xfb\x5f\xee\xaf\x3f\xfe\xf3\xaf\xbf\xfc\xa7\x3f\xff\xd3\x7f\xdd\x62\x48\xff\xfe\x9f\xff\xcb\x9f\x52\xfc\xf7\xff\x0b\xde\xc1\x2b\xff\xe7\xfd\xdb\xdf\x7f\xf9\xeb\xaf\x5f\xe1\x7f\xdc\x62\xf1\xe3\xff\xf2\x6f\x7f\xbb\xbf\xc2\xea\xea\xbf\xfe\xf3\x9f\xff\xe3\xd7\xff\x1d\xbe\xc2\xf6\x15\x4b\x0d\xf9\xff\x59\xcf\xff\xaf\xff\xfc\xd7\xeb\xfe\xda\xd8\x0a\x9c\xc6\xf9\xd7\xeb\xfe\xfb\xdf\xf6\xf3\xfe\x6d\xff\xf5\x5f\xee\x3f\x7c\x7d\xfd\x4f\xdb\xfa\xf7\x3d\xff\x1b\xb6\x3f\xfd\xe9\x4f\x7f\xfa\x9e\x70\xfe\x37\x6f\x7e\x3a\xf8\xf5\xaf\xff\xb8\xee\x87\xcf\x7e\xff\xed\xfc\x17\x9e\xef\xaf\x30\xbf\x7e\xbf\xf6\x87\xb0\x6d\x6b\xf4\x5f\xae\xf3\xff\xdd\x7f\xfb\x7c\x58\xce\xef\xaf\xd1\x3e\xad\x36\x5b\x43\xad\xeb\xfb\x6b\x64\xb5\xee\xef\xaf\xb0\x6d\x9f\xe6\xbe\xcd\x61\x3e\x8d\x3c\x7f\x53\x37\x7b\xf9\xfe\xaa\xfe\xb1\x7e\x7f\x8d\xa4\x56\x9b\xaf\x56\x35\xfb\xf7\x57\x48\x51\xcd\xf1\xfd\x15\x8a\x9b\xfb\xf7\x57\xc8\x1e\xf3\x98\xdf\x0a\xbe\xfd\x9c\x2f\xbb\xe7\x6b\x36\x3d\xec\x84\xb7\x08\xfc\x7d\xa2\x25\xea\xdb\x63\x42\x1c\x05\xf1\x51\xe6\xcb\xfe\xb5\x7e\x7f\x85\xd0\xd5\x9c\x30\x07\xbf\x0c\x98\xd5\xf3\x31\x61\xae\x02\xf2\x00\xcc\xfe\x75\xc2\x1c\x05\xe4\x01\x30\x34\xfd\x73\x0e\x94\x34\xee\x35\x7b\xce\x9a\xfe\x35\x5f\x2e\xea\xf9\x9e\x2f\xe7\xf2\x69\x3e\x78\xf9\x03\x64\x98\x24\x30\x52\xad\x6a\x07\xb4\x83\xda\x71\x76\xd6\x8a\x5f\x48\x78\x50\x87\x1e\x64\x3c\x48\x4d\x0f\x80\x95\xa6\x21\xc3\x56\xd9\x87\x07\x6d\x78\xd0\x3c\x4a\xc7\x83\x9e\xf4\x60\xf0\x81\x47\xd9\xbf\xbf\xe2\x96\x92\xdf\x38\xf0\x40\xab\x1e\xb6\x93\xa3\xf8\x93\x8b\xa3\xf8\x8d\x9b\xa0\x7b\xd8\x87\x6f\x7c\xd0\x1e\xc2\x86\x4e\xa3\x3e\x09\x81\x6f\x68\x2e\x21\x02\x3f\x1a\x24\x24\xb4\xdd\x43\x25\x9c\x7e\xd0\x08\xa7\x00\x0f\x9c\xab\x96\x3e\x04\xce\xb5\xf9\x8d\x7d\xf6\x39\x3c\xe6\x31\x77\x94\x36\x4a\x08\x9c\x69\xf7\x18\x9c\xe9\x70\x97\x37\xa1\x70\x17\x0f\xa1\xd0\x83\xc8\x99\x7a\xd5\x62\xe0\x1b\x5a\xe8\x18\xf9\x86\x1f\x70\xa1\xbb\xfb\xe0\x42\x0f\xe1\x33\x72\xf2\xa2\xdb\x10\xb1\xd0\x3d\xb8\x8f\x8e\xa9\x08\xd0\x38\x66\x3b\x08\xdf\x11\x53\xaf\x86\xea\x40\xdb\xbf\xaf\x89\x09\xff\x71\x4d\x4c\x5f\xa4\x35\x31\x11\x5b\x9a\x4b\x98\x05\x41\xe2\xb4\xa2\x90\x97\x12\x1f\xf8\x83\x35\x4f\x7f\xb2\xe6\x29\x28\x12\xe7\x29\x16\x13\xd2\x5a\x64\xf7\xd1\xd9\xa9\xe0\x4c\x5c\xe4\x17\x9c\x3b\x57\xdd\x7d\x90\xa0\xb3\x47\x39\xf1\xc0\x84\x92\xb8\xcc\x9e\x7c\x22\x41\x67\x77\x4a\x6c\x44\x2d\x51\x5e\xd8\x50\x1f\x19\xd8\xd0\x8a\xe5\xb9\xbd\xfd\x7d\x5e\x9b\x5b\x30\x64\xe2\xa2\x09\x17\xb9\x10\x4a\x2d\x71\x26\x2e\xbc\xa9\x32\x37\x77\xf5\x1b\x24\xf8\xe6\x51\x06\x81\xc2\x79\xf3\x39\x59\xfe\x7b\x67\x4d\xc8\xdc\xf9\xd1\x20\x60\x3b\x98\x2e\xf3\x3c\x7e\x92\x11\x99\x2f\xd0\x8c\x70\x50\x36\x02\xa4\x15\x2f\x6b\x53\x6b\xb5\x0a\xb0\x20\x80\xcb\xc4\x42\x16\x96\x0b\x71\xe0\xbd\x53\x48\x0f\xd5\xdf\x2f\x7a\xf0\x08\xa4\x07\xe3\xb1\xac\x4d\xef\x3e\xd6\xa6\xf7\x28\xa4\x07\xd3\x54\x39\xf8\xc0\xa3\xac\x6d\x2f\x3c\x96\xb5\xed\x0d\xf8\xa2\x07\xad\x45\x21\x83\xd3\x61\x10\xea\xa4\x07\xef\xcf\x3a\x37\xbd\xce\xb3\x50\xc9\xec\xbd\xfd\x2a\xe9\xa1\xab\xc3\x4a\x5c\x98\x48\x2b\x71\x51\xfc\xc6\xe2\x01\xee\x83\xb8\x48\xfe\x84\x3c\x40\xa8\xa8\xe4\x01\xfe\x80\x3c\x40\xf3\xae\xe4\x01\x06\x7a\xe1\xc1\x2f\x2c\x3c\x08\xfd\xf5\xc6\x08\x6e\x3f\x18\x41\x14\xd3\x16\x45\xf8\x01\x29\xa2\x0b\x4f\x8d\x5c\xc2\x67\x58\x23\x97\x30\x14\x2d\x73\xcb\xfb\x13\xee\x0c\x93\x59\x23\x26\x8c\x9a\xb6\xa8\xc2\x9d\x4e\x2e\x61\x4e\xd4\x48\x13\x26\xc4\x46\x9a\xf0\x19\xd7\x16\x4d\xf8\x93\x75\xe8\xf9\xc1\x35\xbb\xf4\x08\x93\x5f\x9a\x0b\x8d\xb9\xc0\xc6\xfc\xc0\xf2\x76\x6f\xad\x33\xf2\x81\x40\x3e\xb1\x97\x8c\xd9\x93\x98\xf5\x07\x0f\x7e\xd7\x52\x5c\x1b\x30\x2d\xa4\x5c\x01\xef\xab\xbf\x2b\xe2\x77\xcd\xf0\x4a\xf8\xdd\xed\x8c\xdf\x05\xe1\xb5\xd8\x8d\x66\x70\x51\x96\xb0\x1c\x70\x11\xa9\x66\xf0\x17\xb7\x9a\x4f\xe0\x8b\xec\xc6\x1b\xe9\x22\x5a\x7d\x3a\x5e\x8b\xf5\x8a\x04\x2f\xa2\xd5\x3c\xe6\x21\x1c\xc6\xf3\x03\x29\x57\x88\x8a\xf3\x04\x18\x59\x5d\x46\x32\x9d\x2e\xaa\x8f\x05\x98\x90\x74\x18\x0b\x51\xad\x21\x62\x59\x8b\xe1\x2f\x80\x0b\x6d\xd6\x48\xb6\xd3\xb5\xbb\x63\x01\x2e\xfa\xe6\x2f\x78\xdc\xbe\x3e\xe9\x7c\x30\xf4\x00\x7b\x2d\x7a\xd0\x1d\x6d\xff\x4e\xde\xea\x1e\x4f\x42\xb9\xe9\xc1\xcd\x07\x06\xe2\x21\x10\xea\xa2\x72\xe6\xa2\xc1\x58\x03\x85\x00\x41\x45\x26\xd2\x8d\x2c\x32\x91\xae\x33\x3b\x56\xce\x2c\xb8\x53\xce\x4c\x84\x1f\xeb\x9a\x59\xd3\x03\x2c\x6a\xef\xee\x94\x6b\x38\xdc\xe9\x45\x48\xfd\x80\xec\x72\x78\x14\xce\x25\xa5\x9f\x1c\x4c\x91\x5c\xa4\x07\xc1\xb4\xb8\x88\x04\xb7\xd8\xb8\xc6\xda\x0e\xb1\x71\x8d\x45\xef\xb1\x11\x15\x92\x35\xe2\xe4\x22\x23\x4b\x2c\x8b\x8d\x98\xe8\x7e\xc0\x89\x8b\xfb\x45\x72\x8d\xbe\x79\x10\x62\x22\x7b\x90\x83\x6f\xb8\x8f\x85\x09\x43\xbe\x30\xa1\x37\x3a\xe7\x26\xf9\x3b\xf6\xb5\x88\x9a\x5b\xe7\xdc\x36\x3f\xc0\x56\xd6\xc9\x10\x3b\xa7\x26\xf6\x16\x3b\x21\x17\x33\x88\x9d\x90\x4b\xf2\x8a\x9d\x90\x27\x7f\x42\x7e\x37\x84\x9e\x7e\x02\x3d\xfe\x82\x33\x31\xbe\x3a\xe9\x33\x18\x0c\xae\xa9\x64\xe3\x38\x38\x35\xf1\xb0\x38\x38\x35\x43\x3e\xc0\xa4\xbc\xcf\x06\x67\xe2\xbd\x3b\x48\xaf\x3a\xb2\xe2\x58\xd4\xe8\x41\x38\xb5\xe1\x3e\xb8\x91\x86\x07\x21\xe4\xc1\x6f\x2c\x40\xb5\x6c\xfb\x82\x4b\x9d\xee\x8b\x65\x68\x51\x0e\x4e\x45\xec\x39\x1e\x7c\xc3\x14\x78\x70\xdf\x18\x81\x53\xb1\xf4\x96\x38\x26\x3a\xf5\xdb\xc9\x01\x4d\x05\xd0\x33\xbd\x3c\x27\x25\x3b\x31\xe3\x78\x72\xda\xd9\x3d\x8c\xb7\xba\x1c\xcf\xfd\xad\x2e\xc7\xf3\xf8\xfe\xd2\xe1\x17\x4f\x62\x44\x4c\x37\xf2\xec\x30\xd9\x5e\x6b\xfe\x1a\xff\xc3\xd9\xfd\x60\x69\x89\x42\x2a\x38\x7b\x72\x0f\xeb\xb8\x14\x7c\x93\xaf\x1b\x39\x17\xe5\x86\xe2\xf7\x49\x3c\x92\x7f\xd2\xd4\x8e\x05\x71\x9a\xaa\xef\x70\x2b\xbf\xe7\x9a\xa6\xd6\x1b\xc5\x58\xd3\xf6\x3b\x48\xd2\xd4\x56\x43\xf2\xb7\x73\xee\xc9\xc3\x5c\xbf\xc7\x63\xa2\x62\xda\x25\x5c\xa4\xc0\x9d\x21\x71\x31\x51\x07\xec\x12\xbb\x13\xb5\xb3\x2e\xb1\x29\x51\x3b\xeb\xc5\x0f\xda\xdb\x00\x91\x22\xec\x11\x1a\x32\x92\x62\x3d\xdb\xb8\x86\xf4\x1b\x1c\x52\x0a\x76\x8a\x84\x52\x62\x54\x4a\xa4\x47\x69\xc7\x69\x2a\x5b\x12\x88\x12\x15\xab\x2e\xb5\x3f\x25\xd8\x31\x04\x60\x5a\x20\x68\xd6\x89\x23\x36\x3f\x20\xa2\xdc\xe5\x3a\x5b\x24\xa7\xa5\x0e\xa1\x2b\x8b\xe8\x52\x87\x16\xe5\x23\x2d\xf5\x9b\x0f\xb4\x36\xfd\xe1\x03\xf5\x31\xa0\x34\x99\x01\xa4\x7d\xe7\x1b\x7e\x70\xf0\x81\xe0\x38\xd6\x27\xea\x03\x92\x54\x8d\x3a\xcd\xd3\xc9\x3e\xb4\x9b\xd3\xc9\x3e\x74\xa4\xa5\x93\x80\x99\x0a\xe6\x86\x08\x71\x1b\xdb\x4f\x8e\xa3\x84\xed\x12\xb7\xe1\xcf\x0b\x1f\x68\x00\x6c\x87\xb8\x89\x84\xf3\x16\x60\x55\x53\x1b\x8a\xd1\x26\xf6\xf0\x40\xd8\x8a\xe1\xb3\xbf\xc2\x0d\x7e\x91\x3e\x0c\x22\xdc\x07\xa4\xa0\xcf\xd9\x1f\x9e\x86\x2d\xfc\x61\x83\xe1\x69\x14\x7a\xfc\x3b\x38\xeb\x07\x6d\xe1\x69\x38\x33\x3e\x4b\x11\xb7\x6d\x8a\xdd\x1f\x34\xc7\x6d\x6e\xb8\xea\x5f\xc3\xc4\x47\x56\x2b\xfc\xae\x15\x7f\xd7\x9a\xe7\xec\xab\x99\x5f\x74\x16\xb7\x50\xbe\xbf\x6a\xd5\x28\xa1\xce\x66\x55\xb3\x9b\x43\xc6\x2d\x0c\x73\xc8\xb8\x61\x1b\x7e\xa6\x17\x37\x6c\xc2\xcd\xef\x4e\xea\xfc\xac\x78\xdc\xc2\x0d\xec\x7d\x9a\x71\x42\xf8\x41\x45\xdc\x22\x80\x70\x13\x40\xa8\xab\xb9\x93\x64\xb9\x8a\x5b\x3a\xbe\xbf\x24\xd1\xc6\x0d\xfb\x22\x86\xa0\xbe\xd3\xfd\x62\x3e\x71\x4b\xdc\x98\x59\xbd\x67\x52\x63\x57\x87\xd0\xeb\x37\x75\x98\x07\x3b\xd4\xef\xa0\x84\x1a\xbb\x46\x98\x82\x62\xeb\xc6\xcb\xd4\x3d\x9b\x8e\x8a\xb8\x61\xe5\x53\x73\x1b\x20\x0c\x23\x67\x07\xe9\x14\x0d\x09\xe6\x5b\x65\x76\x89\x1b\x98\x6f\xd8\x3e\xdb\x30\xc2\x34\x19\x42\x2f\x7e\x90\xbe\xbf\xda\x47\x98\x8a\xb4\x33\x06\xf1\xa3\x08\xa3\x61\x4f\x9b\xdf\xdf\xd1\xce\x6a\x03\xa6\x22\xba\x80\xf1\xae\x6f\x51\x1f\x4c\x4a\x68\xd5\x23\xc4\x30\x7f\x37\x00\x30\x89\x09\x62\x98\xbb\x46\x7a\xfd\xdc\xd8\xbf\x1f\xcc\x65\xfb\xb0\xbb\xf8\x31\x5e\x89\xd4\x96\x61\xa9\x7c\x24\xe3\x08\x1b\x50\x4f\x1f\x41\x2d\xc2\x74\x31\x64\xd7\x8b\xb0\x5c\x0c\x89\x7a\x11\x86\x8b\x21\x51\x26\x7e\x2c\x13\x51\x1d\xcc\x65\xe8\x69\xd3\x00\x53\xe4\x1a\xd2\x73\x23\x14\x42\xa9\x39\x11\x0a\xa1\xec\x4b\x31\x50\xf0\x29\xa2\xb3\x30\x05\x82\x9e\x36\xbd\x70\x82\xa3\x44\x03\x8c\x43\x3d\x46\x43\x44\x1e\x16\x0d\xf2\x05\x11\x25\x8b\x14\xa1\xf2\xcd\x07\x82\xf1\x9e\x83\x6c\x46\xca\xdd\xd0\xd6\x07\x77\x47\x5b\xab\x78\x0f\xb4\x05\xe4\xd4\xd5\x7a\xd2\xfb\x11\x74\x54\xf2\xc7\x5c\x1a\x23\x6d\xda\xf9\x23\x69\xc5\x48\x9b\x76\xfe\xe8\x0e\x31\xd2\x84\x9d\x45\xce\x71\x5b\x56\x2e\x3f\x68\xec\xc3\x9d\x42\x38\xc9\xd5\x0f\x06\xfb\xa8\x7a\xb0\x73\x4b\x6c\x7a\x70\xf0\x13\x0f\x4b\xf3\x9d\xd8\x40\xa4\xf9\x79\x7c\x44\xe6\x18\xc1\xe6\x8a\x9b\x89\x0b\xa4\xb9\xc2\x96\x1c\x04\x25\xc5\x86\xfc\xd1\x70\x62\xa4\xa5\xb8\xbc\x3a\xa4\xbf\xa3\x8c\x1f\x9c\x31\x31\x06\x32\x16\xb1\x85\x18\x89\xdb\xe1\x07\x6b\xd6\x7e\x40\x10\x9a\x66\x1d\x2f\xce\x49\x30\x47\x4a\x5d\x22\xca\x48\x39\x21\x57\x3f\xe0\x3e\xf1\x27\x60\x80\x46\x64\x5a\xb3\xd2\x03\xda\x31\x8b\xc8\x30\xe6\xd5\x83\x30\x43\xa3\x64\x11\x7f\x5a\xfa\x78\x16\xaf\x5f\x7a\x6c\x2e\x7e\x10\xf8\x86\x96\x8b\xe6\xb2\x22\x86\xb3\xd4\x80\xf1\x7a\x70\xf3\x81\xfa\x80\xff\xab\x0c\xc3\xb1\x93\xd2\x86\xa6\x76\x2c\x14\xeb\xc1\x09\x39\x33\x7e\xc4\xe0\x98\x40\x7a\x73\xa9\x3f\x0f\x26\x51\xc8\xbb\x12\xd3\x72\x30\x88\x4f\xa5\x81\x5d\x2a\x03\x67\x4c\x83\xe7\x87\xa8\x39\x41\xf7\x78\x3f\x00\x9c\x51\x66\xf3\x98\xa0\x8c\x44\x93\x5e\x82\x32\xf2\xbb\x4f\xca\x7f\xfb\x80\xd2\x83\x58\x3e\xc4\xa8\xdf\xbd\x31\x25\x9e\x50\xe3\xc7\xf3\x11\x73\x4c\x7c\xf0\x99\x7c\xbe\x27\x0b\x97\x89\x2c\xe6\xe7\x81\x01\x4b\x0c\xad\x4c\x0e\xd9\xa3\xc0\x2a\xe5\x46\xfb\xd3\x41\x99\x8b\xd6\xa3\x60\x28\x15\x1d\x16\x7d\x3f\x55\xfe\x1e\x3f\x82\x76\x2c\x0d\xfd\xe9\xe4\x2c\x93\x61\xf6\x98\xf5\x7d\xc7\xf7\x42\x65\x99\x1a\x6a\x8f\x59\xe3\x4d\x71\xb3\xc7\x2c\x78\xa6\x82\xda\x63\x56\xff\x1d\xf0\x25\xf7\x8f\xf1\x25\x9b\x94\x89\xf8\x16\xf5\xf3\x44\xbb\x57\xb2\x4c\xa4\xf7\x4d\x07\x4c\x21\x46\x5f\xdd\xed\x64\xc8\x1f\xd5\x22\x96\x83\x07\xb9\x4e\xd5\x72\x80\xe3\x0b\xbe\x03\x1c\x5f\xe0\x1d\x5c\xb3\xe1\xd7\xc9\x7c\xfd\xc2\x39\xdf\xd7\xf4\xa7\x00\xd8\x92\x66\x7f\x92\x6c\xc4\x15\xcb\x89\x13\x54\x07\x46\x99\x07\x88\x8f\xa7\x32\x35\xca\x26\xb9\xa5\x9c\x40\xb6\x07\xa3\xcc\x9c\xc4\x4c\xca\x3c\x6f\x5a\xd4\xe8\x38\x6d\x36\xf3\x85\x32\x09\xaa\xe9\x3c\x2f\xe7\x33\x9b\x02\xe6\xce\x58\x6b\x61\xf3\x2e\x68\x0b\x1a\x78\x4a\xe3\x8b\x58\xee\xf9\x7d\x13\xf0\xcf\x42\xae\xe0\x7d\x78\xda\x69\xf5\xea\x3c\x37\x9a\x24\xc0\xba\x61\xb6\x41\xcd\x1b\xe2\xc4\xe7\xf3\x1a\x40\x0b\xda\xc7\x35\x80\x16\xfc\x79\x9e\xb4\x20\xde\x51\xa7\x10\xd7\xc4\x5b\x6a\x05\xa5\xea\xd8\xab\xa0\xf4\x4d\xbc\xbf\x56\xd2\x8a\x7a\xaf\x09\xef\x27\xb5\x33\x7e\x17\xec\x15\xd8\xd0\x51\x52\x6b\x45\x3b\xab\x4d\x4a\x10\x38\x73\x27\xc9\x31\x1a\x6b\x3d\x40\x68\xe2\xc1\xb5\x92\xc9\xbc\x1e\x4c\x5a\x69\xee\x0f\x9b\x3f\x8c\x1f\x9d\x3c\xb5\x62\x29\x04\xfc\xe2\x4f\x62\x9b\x75\xed\x84\xe2\x37\xb8\x58\x92\xce\xea\x24\xd5\xa9\xfc\x08\x41\xc7\x4d\x75\x48\x0f\x96\x34\x23\xea\x6e\x1b\x79\x9c\x8e\xf0\x16\x16\x7f\xda\xf4\x80\xc3\x6a\xbf\x37\x88\xde\x51\x26\xf7\xd8\x32\x05\x20\xed\xe1\x56\x16\x95\xe9\x8d\x46\x9e\x26\x4c\xb7\x1d\x3c\x4b\x0b\xdf\x8e\x87\x90\x7f\xba\x18\x38\x23\x6a\x14\x17\x1c\x30\xc4\xc4\xa8\x8d\x78\x00\xae\xb0\x89\x54\x0f\x58\x03\xa2\x19\xdb\x11\x09\xc6\xc7\xfc\x12\x0f\x9c\xdc\xd1\xac\xf0\xa8\x84\x3c\xf8\x41\xe0\x03\x8d\x82\x03\x30\x9a\x06\x8f\x51\x7e\x07\xf9\x31\x1a\x15\xc8\x4f\x17\x37\xb0\x51\x8a\xa8\xe8\xee\xf0\xb5\x59\x68\xbf\x7b\x81\xae\x56\xfc\x46\x83\xc7\xf2\xf5\xc6\xc0\x27\xaf\x37\x0e\xbc\x21\x40\xef\xc9\x64\x73\x14\xd7\xb9\x61\x03\xcc\x16\xc5\xee\xa9\xe1\xe7\x9a\xdd\x8e\xdf\x5f\x49\x6e\xcf\x78\x4f\x39\x38\x5b\x10\xbe\xa7\x20\x9c\xcd\x09\x6e\x1a\x00\x93\xc4\x9e\x7b\x30\xc8\x42\x8c\xf4\xc6\xcc\x53\x2f\xee\x12\x71\x17\xa5\xfa\x93\xf1\xfd\x55\xb6\xe2\x3e\x8f\xd9\xee\x6e\x4f\xf2\x6c\xb2\x07\xc6\x7b\x1e\xd2\xa9\xea\x28\xba\xe7\x1e\x48\xde\x13\xf7\x0e\x54\xca\x3c\x17\x6f\xc4\xd7\x14\x79\x67\xe2\x8d\x13\x39\x07\x6d\x81\x1b\x71\x34\xd9\xfa\xc0\x8d\x48\x9a\xe4\x03\xe8\xc6\xbe\x4a\x43\x07\xc2\x8d\x7d\x95\xc7\xf0\x1b\x73\x9f\x8f\xe0\xa9\x23\xa2\x26\x5b\x0a\xba\x11\x53\x93\x86\x18\xdb\x8d\x43\xa9\x6c\x62\x0d\x37\xec\x96\xef\x4e\x0f\xcc\x25\x18\x1b\x30\x64\xe6\xad\x69\x2e\x88\x9f\xc9\xdb\xeb\x13\xda\xd4\x44\xd0\x30\x4e\x84\xf4\x5a\x65\xd8\x37\x87\xce\xbe\x9b\xde\x2e\xdb\x09\xee\x33\x61\xd1\xb4\xbd\xef\x29\x7b\xc5\xaa\x8d\x77\x33\xf0\xa6\x4a\x38\xbb\x61\xe1\x4c\xd6\x8b\x6f\x5a\x35\xe5\xd1\x8a\xf7\xc9\xf8\xa2\xee\x41\x20\xe0\x45\x13\xdb\x15\xbe\xbf\xd2\x66\x94\x53\x43\x32\xe7\xba\xe9\xf3\x7a\x7f\xd1\x38\x33\xbf\xd1\x27\x9c\xd2\x3d\x6e\x28\xd7\xa9\x1b\x17\x50\xae\x93\x2d\x02\x37\x82\x84\x92\x8c\xab\xf1\x9e\x87\x63\xa8\xc6\xc5\xd4\xb2\x52\x32\x65\xdc\xa0\x0c\x9d\xbd\xf7\x7d\x60\x48\x21\xf7\x86\xe3\x31\xfb\xf7\x49\xad\x43\xba\xcd\xfd\xc0\x04\x21\xd1\xe5\xd9\x68\xdc\xda\xd4\x9e\x4c\xcf\x47\xfd\x33\x79\x6f\x96\xad\x2a\x3e\x53\x47\xcb\x66\xd6\x0f\xcc\xaf\x8a\x07\x8a\xcf\x3c\x7a\x73\x90\x28\xf0\xcc\xb3\x37\xc5\xe6\xef\xdb\xfc\x3d\x78\xbc\x89\xb2\xa2\x2d\xfd\x4c\x75\x2d\x47\xe9\x03\xcf\xd4\xd6\x52\xec\xf5\x27\xa7\xd3\x33\x35\xb9\x94\x86\x07\x3f\x67\x67\xc1\x9d\x5f\xb3\x1d\x0d\x3c\x18\xd4\x0b\xf8\x67\xb6\x85\xbc\x27\x6c\x68\x0b\x98\xa9\x07\xa6\x50\xfd\xfb\xe4\x57\x43\xec\xe7\x99\xe7\x52\x8e\x12\xbb\x9e\x50\xbf\xbf\xb2\xed\x08\x0f\x82\x90\x92\x91\x31\x55\x84\xd4\x3c\xd9\xa9\x36\xe6\x24\xae\xfc\xcc\xe3\x23\xa7\xe8\xfe\x0f\xb4\xfd\xfe\x39\xbf\xcf\x7e\x7f\xd2\xdb\x90\x35\xeb\x99\x92\x4d\xce\xc5\xed\x49\x0c\x41\x1c\xfb\x41\xf4\x51\x94\x65\xe6\x99\x72\x7f\xea\xda\xdc\x4f\x9c\xfb\x4e\x4e\xaf\xf8\xcc\xd3\x2b\xda\x4e\xf8\x20\xd0\xe8\xb5\x58\x71\x2e\x6e\x15\x83\x79\x22\xf6\x83\x76\xfa\x33\xcf\xb6\x98\x8b\xc7\xdb\x7f\xc7\xff\x9f\x78\xa0\xed\xfe\xe6\xfa\x79\xdf\x3f\x53\x67\x8d\xa1\x19\x9e\x39\xbf\x66\x7c\xc1\x12\x3e\x4c\x4c\x30\x84\x0f\xc9\x56\x0f\x62\x90\xe4\xb8\x88\x4f\x22\xe7\xf1\xfb\xbf\x3f\x6f\x9e\x84\xf3\x46\x52\xc5\x33\x15\xe0\xac\xc0\xb5\xf8\xa4\x8a\xb6\xf0\x91\x1a\xda\xee\x7f\xf2\xf5\x2a\x0e\xf2\xc0\xb2\x9e\x8b\x17\x34\x4d\x04\x28\xde\x2e\x3e\xe9\x40\xdb\x1f\x9c\x73\x77\x18\x61\x53\xc3\xce\x43\x3c\xfe\x41\xe4\xd1\x78\xf5\x37\x45\x14\xc5\xe8\xc4\x07\x71\x47\xd1\xbb\x3d\x07\x1c\x76\x02\x70\xca\xb2\xa9\x78\xc3\x4c\x85\x3d\x59\x43\x7d\x60\x9f\x54\x30\x4c\x7c\xa6\xfe\x9e\x6c\xb3\x7d\x72\xc5\x61\xe9\xfe\x1a\x76\xab\xe0\x9d\xea\x7d\x51\x84\x68\x7c\x60\xe0\x94\x67\x21\x3e\x79\xee\x6e\xb9\x6e\xe3\x93\xe7\xa9\xd6\x8b\xc7\x9f\xf3\x8f\x9e\x5f\xbe\xbe\xbf\x8a\xc2\x10\xe2\x93\xef\xd9\xae\xfe\xfe\x41\x5b\xf0\x4c\xb5\x34\x65\xc9\x52\x4f\x99\x1b\xb8\x7b\x43\x16\x58\x12\xc5\x4d\x9f\x92\xe6\xf7\xde\x00\x05\x07\xcf\xe6\xdf\x21\x15\x19\xfe\x29\x44\xa6\x4d\xdc\xf7\x29\x73\xfe\xc5\x04\x53\xe6\xfc\xab\x37\x58\x19\x68\xfb\xfd\x39\xff\x6a\x02\x45\xb0\x51\x32\x3d\xc0\xef\x5f\xcd\x8d\x11\x6a\x64\x13\xcd\x83\x30\x80\xf1\xea\xff\x01\x81\x0b\xdf\x94\x1d\x75\x40\x3d\xb4\x9d\xf8\x7d\x9a\x4e\xa4\xa6\x3e\x53\x39\x89\xb5\xf8\xfb\x3c\xf1\xa5\xc3\xfd\x99\xca\x49\x92\xf3\x2a\x3e\x53\x39\x49\xd9\x1b\x0e\xf1\x01\xd9\xc7\xd9\x53\x27\x02\x5e\x04\x5e\xc7\xe4\xd0\x5e\xa0\xa9\xbd\xa4\xec\x05\x9f\xea\x4b\x0c\xcd\x00\x9c\x20\x10\x21\x6c\x2a\x2f\xa9\xbd\x06\xbc\xe7\xef\xc9\xbf\xcf\x0d\x50\x25\x61\xc2\x13\x12\xa3\x17\x0c\xb1\x01\x79\x48\xfd\x82\x2b\x24\xa4\xfa\x93\x50\x83\x08\x3f\x49\xb0\x4c\xfc\xb4\x89\x9e\x61\xe8\x11\x7b\x34\xbc\x5c\x6d\xa2\xe7\xb5\xdc\x88\x3c\x7a\x9d\x3f\x0c\x22\x90\x28\xf9\xb4\xf1\xfd\x55\x5f\xe7\x4b\x9b\xd8\xb1\xd9\xf1\x69\xd4\x8c\xfc\xfd\xe4\x8f\x9b\xb7\x23\xa3\x8e\x5e\xed\xfb\xfb\xab\x46\x49\x80\xcf\x54\x71\xa2\x05\x98\xa7\x6f\xf3\x77\xf7\xd7\x03\xb6\xaf\xbe\xef\x73\x7b\x14\x9f\x27\x53\x4b\x88\xd1\xf0\xf5\x8c\x30\x36\xf7\x07\xed\x46\x46\x8e\x07\x5e\xc0\x6a\x61\x61\xea\x10\xd1\x86\x86\xa7\xcf\xf3\xe1\xb5\x9d\x3a\x42\x84\x5e\xe3\xef\x73\x7c\x6f\xa7\xa9\x61\xd4\xe4\xf3\xa5\x9f\xdf\x5f\xf5\x45\x7e\x7d\xce\x7f\x98\x1d\x21\x0a\xa1\x9b\xdd\xd1\xc5\xe8\xef\x07\x5d\x1b\xfa\x7e\x84\xef\xaf\x5a\x0d\x3f\xe2\xb4\x5e\xe7\x1f\x02\xb5\xb2\xf9\x39\x0c\xf3\x76\xae\x3c\x03\xeb\x6f\x76\x35\xd5\x91\x14\x86\x7f\x6f\xdf\x5f\x55\x51\x7b\xf1\x99\xca\x48\x6d\xde\x9e\x08\x57\xc8\x3e\x8f\xc6\x9c\xbf\xc5\xdc\x67\xea\x26\xb1\xbf\xc6\x9b\xec\x51\x61\x45\xf1\x19\x17\x84\x29\xd1\xd3\xd4\x5d\x62\x32\xfd\x4d\xd5\x25\x16\xcb\x1f\x53\x75\x89\xc3\xec\x97\xa1\x0e\xc1\xdb\x75\x8f\x10\x08\xfc\xc2\x3c\x1f\x5e\x02\xd2\x54\x6d\x52\xb6\x40\xb2\x4f\xfe\x30\xbc\xfd\xa1\xe9\x34\x9f\x5f\x7b\xfb\x9d\x8c\xfd\x4c\xc5\x27\x75\x13\xe0\xd4\x7b\x52\x31\xbf\x9e\x6a\x4f\x0b\xde\xad\x53\xeb\x69\xc1\xe7\xd9\x4e\xcb\x8f\xfb\xbb\xbe\xbf\x7a\xb5\xb4\x3a\x55\x9e\x94\x4d\xb0\xfb\x03\xfe\xaf\xfe\x11\xb9\x91\xbd\x61\xa6\x46\xd4\x82\x37\x30\xac\x74\x41\xba\xdd\x03\x7d\x28\x59\x40\x38\x32\x36\xb8\xe0\x3f\xe6\xfc\xcb\xab\x3f\xf0\x47\x9f\x4f\x53\x7d\x8a\xc5\xf8\x3b\xb0\x01\x4c\x70\x07\x63\xe4\xdc\x9e\x0c\xe0\x25\x5d\x1f\x70\x56\x7b\x03\x1f\x2b\x36\x59\xed\x0b\x76\x3d\xb7\x61\x88\x93\xee\xfa\x40\xf5\xb2\x76\xf1\xd0\x3d\x6e\x79\x63\x6a\x5e\x69\xb3\xc0\x36\x15\xaf\x96\x5f\xef\x33\xba\x42\xf3\x85\x1d\x31\x47\x7f\x3f\xd7\xd7\x6a\xeb\x03\x83\x48\xb2\xba\xf2\x20\x32\xa5\x7a\x07\xd0\xb4\xe8\x1d\x05\xcb\x62\xb6\x44\x38\xf5\xb8\x96\x7d\xe0\x4f\x35\x2e\xbd\xd4\x0b\x98\xae\x87\x0f\xb0\xa9\xd5\xc5\x66\x00\x2f\x08\x00\xa6\xf8\x2b\x41\x1d\x5a\xfd\x27\xba\xb6\x3f\xc3\xa7\x6d\x6a\x33\x3d\x7d\x36\x58\x82\x3b\x5b\x01\x8a\x09\xfe\x6c\x49\x43\x09\x7e\xe7\x5a\xfd\xeb\x44\x7e\x7d\x7d\x4c\xc7\x73\xfb\x49\xdc\x40\x42\xe6\x4f\xab\x1f\x63\x49\xda\xa6\x6c\xde\x25\xaa\x25\xb8\xa2\x43\x8c\xc1\x0f\xe0\x9f\xfb\x18\x11\x12\x9c\xd3\x21\x2a\x3b\x27\xd1\x3d\x5d\x65\x05\x4e\x1b\xfc\x33\x31\x34\x8d\xb1\xfc\x0d\x1f\x86\x9b\x98\x17\xe4\x13\x23\x6d\x0f\x38\xae\xc6\x7c\x30\x63\x21\x00\x6e\x80\x2a\x33\x75\x8a\x13\xc8\x1e\x3e\x0c\x3f\xc5\x29\x50\x77\xc9\x93\x09\x2e\xa5\xae\xb8\xf7\x04\x8f\x52\x57\x1a\x4c\x8a\x98\x93\x02\xe1\x13\xc2\x39\xbb\x14\x94\x14\xa7\x40\xdd\x95\x63\x93\xe2\x14\xa8\x5b\xfd\x44\x02\xa4\x38\xe5\xe9\x2e\xef\x48\x8a\x70\xe4\x2a\x86\x3c\xc1\x61\xd5\x95\xdf\x93\xe0\xb1\xea\x4a\xe1\x49\x71\xca\xd3\x5d\xee\x96\x14\xa7\x3c\xdd\x95\xc3\x94\x62\xc6\xfc\x8a\xdb\x34\x11\x6a\xfe\x53\x9e\xee\xca\xf2\x49\x70\x80\x75\x85\x3c\xa4\xb8\xfc\xfd\x43\x0f\x0a\xac\xc5\x43\x00\xe3\x44\xda\xe4\xb7\x4b\x88\x8a\xeb\xa1\xba\x8d\x11\xb4\x04\x71\x60\x84\x2a\x8c\x0c\x60\xb8\x68\x06\x30\x91\x6d\xd9\x4b\x34\x80\xe2\xea\x76\xe3\x0b\xee\x01\x38\x16\xe1\x21\x86\xae\x4b\x46\x4e\x71\x1e\x4a\x61\xcb\x5d\x48\x83\x5f\x6b\xcb\xdd\x5f\x9c\xec\x52\x68\x9e\xe7\x52\x4f\xc1\x5f\x00\xcd\xaf\x59\x3f\x9c\xb5\x5e\x80\x57\x6b\xcb\x7e\x03\x46\xb5\x2d\x0f\xcd\x7b\x9e\x14\x5d\x4e\xad\x14\x77\xae\xbc\x28\x67\xc7\xca\x17\xf7\x88\x95\xaf\x9a\x05\x4e\x0a\xe5\x9f\xa5\xb8\x03\xa4\xea\xfe\xb0\xf2\xe2\x0c\x88\xf1\xeb\x4a\x6e\x4b\xf1\x81\xa6\xe5\xfd\x89\x18\xb5\xbe\x65\xb7\x11\xd4\x20\x52\x65\x9c\x5a\x50\x1c\x57\x42\xa4\x5a\xd7\x59\x9b\xd2\xc6\xb4\xb5\x8f\x76\x9b\xe8\x60\x0c\xf2\xf2\xa6\x04\xdf\x76\x50\xf4\x59\x4a\xf0\x6d\x87\xfe\xd1\xb7\x12\xc3\xdd\x82\xbc\x96\x89\x01\x6f\x41\x81\xad\x89\x21\x6f\x41\x71\xab\x09\x41\x6f\xad\x88\x3e\x52\xc8\xf0\x62\xea\x83\x50\x30\x0f\x01\x11\xc0\x76\xb4\x65\x52\x20\x94\xc3\x1f\x20\x2e\x40\x7b\x26\xd1\x17\x2e\xdb\x5c\x4a\x81\xfe\x17\xf5\x18\xe1\x21\xd1\x26\x49\x91\x98\x13\x62\x10\x52\x17\xe4\xac\x4d\x0c\xa9\x0b\x43\xbc\x32\xc5\x8a\x39\x08\x84\xd8\xd0\x16\x08\x71\xc7\x88\xc2\x0a\x02\x42\x8a\x21\x82\x2f\x3c\x8c\x20\x24\x24\x6c\x4b\xf1\x0d\x04\xd0\x05\x2b\xda\xf3\x48\x9e\x14\x1d\x05\x52\x22\x04\x1a\x21\x01\x2b\xd2\xd4\x53\x82\x29\x20\x8c\xe4\x37\x10\x2e\x21\x56\x93\x90\x88\x14\x46\xd2\xb4\xc1\xbb\xb6\xec\x21\x4e\xc2\xe0\x2f\x08\x75\xd2\xea\x23\xa9\x28\x0c\x9d\x57\x09\xec\x68\xcb\xe5\x27\x07\x50\xca\x70\x2c\x89\xb7\xa5\x4c\x88\xbd\x0e\x53\x79\x6f\xa5\xbb\xf7\x1d\x73\x16\x92\x32\x28\xc9\x94\x35\x95\xf3\x2e\x6b\x55\x4a\x93\xd7\xb5\x32\xd4\x5f\x21\x52\x3d\x22\x42\xef\xc3\xd0\xa6\x4e\x85\x2b\x6f\x52\x29\x80\x51\xfc\x3b\x41\x9d\x0b\x0a\xbf\x4c\xa9\x21\x72\x47\xcc\x2a\x4d\x0d\xa9\xd5\x57\x1b\x67\x74\xd4\x2a\x4c\x0d\xa9\x55\xaf\x2b\x02\x75\x36\x43\x80\xc0\xe6\xa0\x48\xc7\x84\xa0\xc4\xbe\x19\xc5\x83\xdb\x41\xab\x34\x00\x61\xf4\xfb\xd8\x0d\x5e\xb4\xc1\x0d\x59\xdd\x01\x18\x8d\xf7\xdb\x8e\x01\x74\xa4\xc1\xe3\xdf\xaa\x89\x9f\xbe\x67\x43\xbc\xe3\x00\xe8\xfe\x1d\xfc\xdd\xab\x70\x10\x60\xf5\x77\x80\xb4\xa3\x56\xed\x60\x7f\x7e\x9f\xc1\x58\xea\x0f\x22\xa2\x95\xde\x94\x20\x13\x4a\xa9\x4d\xe9\xc4\x79\x21\x66\x8f\x80\xca\xbe\x99\x2a\x4f\x70\x5e\xb3\xa4\x13\x4b\x10\x34\x81\x0b\x0e\xd0\xa4\xfe\x2e\xf2\x30\x2d\x7a\xde\xa8\xa2\x6b\xbb\x66\x86\x05\x25\xcd\x39\x83\x75\x36\xb9\xff\x53\x66\x8c\xed\xf8\x98\x99\x53\x46\xd0\x6c\x8b\xda\x6e\x19\xd1\x2e\x39\x06\x3d\x40\x26\x43\xf6\x7e\xcb\xc8\x64\x68\xf1\xa3\xfd\xa6\xdc\x97\xb6\xae\x51\xa0\x1e\x36\xd9\x7b\x53\x46\x22\x72\x55\x26\x58\xca\x70\x86\x34\x05\x7e\xa5\x0c\x01\xbc\x27\x71\xec\x8c\x60\xee\x26\x1b\x71\xca\x0c\x96\x96\x4c\x9d\x4a\xa0\x8b\x40\x14\x53\x60\xf4\xb3\x0d\x3d\x15\xa4\x87\x35\xe5\xbd\xa5\x02\x9f\x6e\x53\xaa\x4d\x2a\xd4\xc3\x94\x2f\x9b\x0a\x3c\x4e\x4d\x76\xfe\x54\xa6\x64\x3f\x1f\x7c\xe0\x28\x58\x86\x96\x44\x98\xe5\x42\xd8\xdc\x56\xf5\xc6\x03\xe3\xa0\x12\x64\x13\xdc\xee\xa1\xe5\x8f\x74\x9e\x2a\x02\x3e\x47\xf8\xe8\x13\xa9\x66\x74\xaa\x90\xde\x54\x11\xf4\xdf\xf2\x47\xc3\x4a\x15\x1e\xbc\xa6\x90\xaf\x54\xa1\x13\x37\x89\xf0\xa9\xc2\x71\xd3\x2c\x5d\x34\xb8\xbc\x5b\x11\xe7\x6c\x70\x79\xb7\x22\x5e\xdb\x5a\xe1\x83\xcf\x5c\x5a\xa7\x63\x46\xac\xa7\x61\x5d\x5a\xf1\x83\x1b\xae\x30\xe5\x7e\xa7\x76\x03\x63\xa5\xe9\x0d\x4e\xbf\x08\xf4\xf6\x5c\x7c\xf0\x19\xa5\xc3\xb7\xd2\xca\xc7\x9c\x98\x3a\xec\xd3\x2f\x16\xd9\x13\xf5\x63\xc9\x52\x3d\xf3\x13\x1d\x5d\xbd\x70\x2e\x9a\x6d\xaf\x84\x54\x87\x5d\xdf\x91\x31\x2c\xa5\x35\x75\x38\xfe\x86\xac\xae\xa9\x3f\xfb\xef\x9c\xa0\x69\xe0\xcc\x6e\x55\x34\x36\xe0\xa7\x6e\x55\x5c\x60\x20\x05\xa7\x55\x31\xff\xb1\x23\xcf\x4e\x61\xb5\x69\x40\x75\xdd\x8c\xa0\xbd\x9c\x7c\xf0\x59\xb9\x9d\x54\xd8\x82\xde\x80\xf9\xac\xc9\x5e\x9f\xf6\x8e\x74\xae\x29\xcf\xff\xe0\x80\xda\x4f\x82\x20\xde\xbb\x33\x74\x5b\xc1\xf3\x69\x87\x87\xae\x29\xac\x26\xed\xf0\xd0\x35\x05\x65\xa5\xfd\xc6\x44\x65\xd2\x4f\xfb\xc3\x98\x43\x31\xec\x63\x23\xd4\x42\x16\x7d\xf8\x4d\xa9\xf7\xe9\x40\xb8\x71\x53\x0e\x71\x3a\x22\x63\xd6\x44\x80\x07\x52\x9c\x9a\x12\x7b\xd2\xd1\x08\x87\x14\xa3\x03\xde\xf4\xa6\x94\xbf\x74\x80\xb9\xd8\x51\x97\x8e\xce\x3e\xb4\x24\x07\xdc\xc8\x4d\x59\x39\xe9\x40\x90\x50\x35\x93\x3b\xe0\x37\xad\x43\xac\xf5\x38\xd9\x87\xf8\xc0\xf1\x80\xbc\xcc\x4b\x8e\x07\xf9\x94\xd6\x98\x4e\x04\xe7\xd6\x21\x59\xfd\x44\x80\x42\x93\x11\x2c\x9d\x18\xa5\x0d\xad\xe2\x09\x47\x69\xb3\x70\x74\x21\x5c\xb2\x29\xc4\x23\x5d\xd0\x84\xdb\xf8\x98\x7d\xd3\x95\x48\xb3\x5a\x97\x2b\xe3\x1c\x96\xb8\x7d\x21\x37\xad\x0d\x91\xfd\x05\xad\xa3\x6f\xd2\xae\x2f\xc4\x38\xbd\x4e\xd6\xeb\x5c\x0e\xf0\xcf\x2a\x5c\x88\x68\xed\xb2\x66\xa4\x1b\xfc\xe9\x25\x59\xde\x89\x93\x15\x5c\x37\xf3\xb4\x83\x36\xf9\x5d\x39\x8a\xf4\x88\x1b\x29\x71\x5d\x36\xd7\x74\xe3\xdc\xe8\xb2\xc9\x24\x86\x52\xf4\x4d\xbc\xf6\x66\x3a\x95\x72\x21\x12\xc2\x18\x42\xdf\xc4\xd2\x6e\x66\x42\x2a\x39\x22\xc1\x8f\x10\xba\x37\x17\xcd\xd4\x75\xe8\xdc\x80\xa9\x39\x74\x25\xaf\x24\xd8\x96\xc3\x4b\x97\x85\xed\x2b\xbc\x54\x22\x18\xb7\x42\xb6\x8e\x43\x63\x4c\x0f\x9a\xfe\x73\xb1\x0f\xb1\xb4\xe7\x5a\x38\x5d\x9f\xe4\x2d\xf1\x93\x8f\x62\x96\x37\xa4\x36\x76\xd9\x38\xf3\xc6\x64\x56\xe5\x85\xe7\x55\xa9\x22\x7f\x00\xcb\x0c\x18\xef\x32\x13\x67\x66\xa6\x77\xc5\xc0\xe4\x90\x1f\x3c\xf8\x70\xe3\xcc\x04\x68\xc7\x0f\xe6\x80\x0a\x20\x5d\x87\x73\x0e\x07\x3f\xf9\x78\x0e\x32\xc2\x97\x43\x8f\x1f\xfd\x2a\x87\xfb\xe6\x03\x8d\xf2\xb0\xd3\x0f\x4e\x33\x83\x89\xbb\xce\xf3\x1c\x37\x7e\xf2\xd9\xb6\x99\x29\x93\x59\x91\x48\x39\xae\xd9\x7e\xb4\x9d\xcc\x5c\xad\x2e\x93\x5e\x8e\x17\x1f\x64\x7d\x82\xa0\x80\xae\x8c\xe5\x9c\x20\xdf\x74\x79\xb1\x32\xd4\x93\xd0\x75\x16\xe7\x84\x38\xda\x9e\x3e\x8a\x5f\x4e\x9c\x8b\x92\x52\x73\xc2\xc6\xee\xca\x28\xcd\x19\xba\x62\x17\x49\xe5\xcc\xba\x1c\xaf\x37\x70\x08\x74\x65\x81\xe4\x0c\xbe\xd6\x95\x80\x93\x33\xf8\x5a\x57\x16\x64\xce\xcc\xc8\x97\xbd\x27\x67\xf8\xab\xda\xf6\x31\x47\xe4\x8c\x3c\xc9\x9e\x5f\x0f\x76\x3e\xf8\x10\x4c\xc6\x89\xdf\x73\x55\xa7\xb0\xa9\x76\x9d\xe7\x39\x1f\x9c\xdc\x10\xe8\xdc\xc8\x0a\x14\xcf\x85\x93\x2b\x1f\xa6\x9d\x0b\x32\xb7\x7a\xf9\x48\xcd\xb9\x40\x45\xcc\x0a\x81\xca\x85\x28\x2c\x5a\xa8\xd2\xd6\x9e\xfb\xcc\xa5\x20\x13\xb0\x29\x8f\x24\x97\x83\xa3\x08\x8e\x02\xc0\x46\xf0\x27\x37\x28\xb9\x86\xfe\x83\xf3\x2b\x17\x9e\x3d\xb2\x66\xe7\x0a\x5e\xdb\xab\x56\xa0\x06\xfa\xab\xb5\x77\x2a\x34\xba\x2e\x8f\x78\xae\x4c\xd1\x55\xe6\x65\xae\x3b\xdf\xf8\x70\xf4\x5c\x57\xe5\x9c\xcf\x09\x97\xeb\xce\x51\xb4\x55\x1a\x28\xa1\xd7\x8f\x8c\x91\x1b\xab\x92\x28\x4e\x22\x37\x90\x79\x6f\x9f\x08\xb3\xdc\x58\xbc\x46\x01\xc0\x99\xb2\x4e\x57\x50\x67\xee\x01\x0b\xaf\xe4\x98\xdc\x59\xfb\x44\x39\xf0\xb9\xd3\x97\x2c\xe3\x5f\xee\x19\xeb\xac\xf0\x85\xdc\x21\x3e\x77\x79\xf7\xf2\x80\x79\xbe\xc9\x46\x92\xc7\x0d\x9a\x95\x2d\x21\x0f\x88\x36\x5d\x51\xec\x79\x87\x99\xa5\xcb\x58\x90\x77\xc4\xd3\x75\x9d\x92\x79\x87\x4c\xde\xa5\x36\xe7\x03\xaa\x79\x52\xfd\x94\x7c\xc0\x92\xda\x15\xe8\x97\x8f\xb6\x16\xfe\xd3\xe9\x01\xa5\xa8\x2b\x1c\x2b\x1f\x27\xe1\x10\xa7\x38\xae\xf5\xc6\x67\x2e\xc7\x4d\xed\xe1\xa3\x88\xe5\x93\x42\x98\x8c\x9b\xf9\x44\x10\xff\x50\x68\x67\x3e\x01\xd8\x90\xf9\x30\x9f\x27\xfd\x4d\x62\x3f\x27\x92\xcd\xc6\x26\x8c\x9d\x77\xe0\x27\x9f\x07\x17\x78\xda\x50\x7c\x56\xbe\x70\x4e\x0c\xf9\x50\xf2\xfd\xfb\x08\xa0\x7c\x6f\x88\x83\x7a\xb5\xa9\xe5\x08\x5f\xf7\x06\x2f\x60\x73\x07\x30\xfa\x17\xff\x8e\x90\x9e\xe0\x0e\x06\x7c\xba\xfe\x1d\x5e\xbd\x8f\xf5\x26\xdf\x4c\xca\xcc\x7e\x9f\x87\xce\xeb\xc1\xf5\xfd\x95\x8a\x38\xd7\xbd\xc1\xe9\xfb\xb1\x8b\xe5\x1b\xfb\xa8\xf9\x40\xb9\x11\xb7\x23\xab\x6a\xbe\x21\x90\x28\xce\x27\xdf\x61\x4d\x49\x3d\x42\x51\x51\x6a\x4a\xbe\x43\x41\x07\x51\x6d\x38\x32\x93\xdb\x0d\x81\x3a\x1e\x00\x81\x1e\xda\xa6\x77\x80\x1f\x6b\xb8\xbf\x1b\x28\xf1\xfb\x88\x84\x8c\xa2\xe3\x3b\x4e\xa4\x0f\xe3\x28\xd2\x73\xac\x01\x63\x7f\x87\x65\xe5\x1b\x54\xdd\x14\x60\x9e\x6f\x84\xd2\x6c\x62\x91\x37\xce\x90\x1c\xb5\xee\x37\x34\x60\x07\x1d\xe6\x3b\xd2\x59\x2a\x2c\x43\x23\x6e\x8a\xa2\xce\xf7\x14\xd2\xf2\xe6\x49\xc0\x08\xa6\x72\x2d\xf9\x4e\x53\x7a\x0f\x9b\x09\x01\xe1\x30\x8a\x15\xcb\x77\xa2\x16\xee\x85\x02\x41\xcb\x3d\x96\xef\x29\x4d\xc4\xe1\x85\x45\xed\x1d\x59\x6f\xf2\x9d\xe0\xdf\x1e\xfe\xfd\x79\x07\x9f\xe5\x3b\x33\x38\x4d\x10\x21\x7c\x45\xba\x74\xbe\xc1\x72\xb2\x52\xcf\xf2\x8d\xfc\x93\x9a\x85\x94\xcc\x3d\x98\xfc\xa0\x53\xed\xd3\x90\x19\x21\x65\x26\xd6\x3c\x69\x51\x51\xc3\xf9\xce\x64\x0d\x9a\x52\x46\x74\xa8\xa7\x8c\x0c\xbe\xa6\xc8\xe4\x7c\x97\xf2\xfd\x55\xb3\xd1\x5e\x88\x34\x75\x88\x9a\x35\x4a\x25\xca\xf7\x14\xb0\x72\xf0\x76\x44\xc5\x9a\x64\x5a\x46\xc1\x1a\x47\xee\xe6\x1b\x7a\x58\x98\x4c\xe2\x07\x87\xd2\x5d\x96\xd2\xaa\x36\xe6\x53\x34\xff\x02\x8f\x69\x14\x78\x35\x22\x24\xcb\xed\xc4\xd1\xd4\xc1\x94\x87\xe7\x03\x2d\x4a\x25\xa9\x66\x2d\x42\x03\xad\x8b\x11\xde\x0d\x4e\xe5\xae\x09\xa0\x92\xc2\x90\xd7\x28\xdf\x2c\x8b\xe0\x19\x22\x52\x3b\xcb\xaf\x9d\x6f\x94\x49\xa8\x66\x69\x3d\x02\x67\xc2\x79\xff\x5d\x50\x62\xbe\x7b\xc5\x6e\xf3\xef\x70\x43\x8b\x8b\x22\xb4\x39\x36\x53\xfe\x94\xe0\x73\x30\x19\xf5\x03\x41\x96\x6e\x9f\xef\x20\xc7\x7c\x43\x77\xcb\x2f\x42\x44\x24\x74\x70\x1b\x42\x50\x34\xbf\x80\x25\x69\x98\x0c\x19\x58\xe0\xad\x38\x68\xf1\xd6\x80\x8c\x73\x96\xa3\x32\x23\xce\x39\x86\xcd\x74\x37\x26\xd9\xbc\xdb\x03\x6d\x21\x1d\xa1\x04\x9b\x4e\xd6\x1b\x3e\x9b\xa0\xd3\xfa\xa6\x34\xa4\xd0\xa1\x7c\x4f\x41\xc3\x21\xb7\xf9\xde\x81\x63\x13\x3e\xd4\x53\x9f\x99\xf7\x4e\x90\xfd\x7d\x45\xac\xa2\xa6\x00\x0b\x54\xed\x5a\xc3\x7d\x6e\xac\xad\x09\x40\xb8\xee\x47\xf3\x78\x0f\x67\xa8\x07\x53\x38\xc8\xc1\x1b\x65\xca\x91\xd9\xd2\xd5\x3d\xd5\xe3\xac\xa8\xe2\xbc\x22\x95\x5f\x5b\xf9\xd8\xdf\xa1\xa7\xf9\x3e\x8e\xdf\x85\xbc\x67\x86\x32\x37\xeb\x25\xf7\xd4\x39\x63\x32\x4c\xe7\x54\x63\x8b\x91\x7a\x12\x27\xea\x91\xaa\xf2\x6b\x9d\xe7\x01\x9e\x95\x18\x98\x11\xc8\x9c\x55\xab\x30\xdf\xb0\x06\xd6\xe2\x0e\x3b\x3b\x70\x8f\xf0\x97\x57\x77\x70\x30\xa6\x5b\xed\x0b\x1d\x6a\x0a\x27\x08\xcf\x3b\xe3\x9c\xdb\xb9\x78\xb7\x22\x2f\x34\x27\x1f\xd6\x53\xd6\x8e\xc1\x2c\x17\x95\x7f\x5e\xcb\x38\xd5\x99\xa8\x12\x09\x19\x31\xd0\x59\xb9\xd8\x19\x21\xd0\xa9\x44\x0f\x30\x10\x02\xa4\x09\xd0\xac\xa8\x4c\xb1\x7c\xa3\xe8\x4f\x78\x51\xe2\xd4\x8f\xaa\x17\xe1\xc2\x0c\xa2\xdf\x7f\xd0\xd6\xeb\xf7\x9a\x81\x5e\xb8\x19\xc1\x2c\x94\xdc\x91\x03\x88\x10\xee\x84\xa8\x56\x4d\xe9\x9e\x8b\xb2\x99\x2e\x20\xd5\x87\x2a\x08\x6e\x72\xb4\xd7\x07\x07\xe7\xa0\x49\xdf\xc0\x7a\xf4\x90\x08\xf3\xce\x6e\x2f\xda\x55\x97\xb4\xc3\x48\x7a\xbe\x1f\x9e\x12\x45\x5f\x3c\x11\x87\xb3\x26\x05\x5d\x75\x04\x6f\x9f\xa7\xf0\x0b\xe1\xe1\xa9\xd4\x45\xd4\xe6\xc2\xf8\x83\x79\x90\x45\x09\xfd\xf7\x73\x02\x4d\xfe\x9e\x3c\xcb\xfb\xe9\xb9\x09\xb4\x96\xf2\x21\xdb\xd5\x0e\x43\xec\x78\x4f\x12\x5a\x10\x3b\x1e\x4a\xfb\x89\xbb\x29\x23\xb0\x7c\x76\xdf\xf5\x00\x2e\x35\x31\x51\x46\x86\x07\x65\x62\x64\x86\x86\x9b\x45\x3d\x74\x76\x6a\x2f\x20\xfa\x7b\xc2\x67\x78\x96\x20\xe9\x2f\x60\x19\x95\x60\xf9\x7c\x2a\x51\xaa\x8d\xdd\x21\x45\x1c\xf1\xdf\x49\x89\x1b\x19\xf1\xdf\xa1\x8a\x76\x11\xff\x1d\xc3\x26\xa4\x3e\xa1\x10\x04\x8d\x18\xe8\x99\x28\xee\x92\x8c\x7a\xb8\x8f\x75\xda\x09\x88\xc0\x54\x0f\x61\x79\xaa\xe5\x59\x1e\xff\x8c\x20\xef\x24\x9b\x7a\x46\xd0\xf4\xec\x40\x78\x88\x14\x49\xc4\x75\x10\x16\x9d\x54\x05\x2f\x23\x2c\x3a\xcb\x50\x9b\x19\x16\x3d\x14\x26\x91\x11\x07\x3d\x81\xf4\x17\x88\xf3\xd2\x71\xf3\x2c\xd1\xcf\x40\x52\xf4\x13\x1b\x41\x24\xf4\x9c\xb7\x66\x85\x4a\x8c\xc5\x40\xc2\xfd\x99\x8c\xfa\xb4\x83\xcf\xf8\xf7\xb5\x98\x7e\x80\x50\x60\xaf\x25\xbc\x9f\xf2\x79\x64\x86\x42\x37\xa5\x11\x66\xc6\x3e\x07\xcb\xaf\x08\x76\x9e\x0f\xd4\x05\xc4\xc5\x4d\x5b\x08\xd1\xcc\x71\x68\x07\x20\x9a\x39\xbf\x30\x0d\xe1\xb0\x5a\x3f\x65\x38\x73\x4e\xe2\xdf\x88\x4f\x0e\x32\xa8\x65\xc4\x27\xa7\xad\xb9\x07\x44\x0d\x68\xd3\x21\x3e\x39\x9a\x35\xad\xf8\x64\x53\x4b\x59\x20\xab\xc3\x02\xde\xe5\xa5\x2c\x94\x70\x75\xe4\xac\x08\xe5\xec\x11\x50\x2a\x40\x0c\x1f\x96\xc5\xac\x2c\xa1\x8c\x08\xe5\x89\x36\x8f\x30\xa0\x5c\xf9\x05\xc8\x3e\x12\x88\x11\xa2\x9c\x55\x8d\x28\x3f\x14\x37\xb3\x21\x22\x2f\x34\x40\x93\x7f\x97\x6a\x80\x60\x73\x6d\x1e\xa0\x2e\x06\xae\x11\x96\x48\xa9\x33\xe3\xa1\x31\x58\x99\x38\x19\x51\xc4\xd9\xea\x38\xa2\x88\x67\x9f\xc2\x73\x65\xdc\xb4\x84\x05\xc4\x09\xc7\x60\x31\x1a\x81\xc2\xd9\x3a\x26\x02\x85\xb3\x55\x6d\x04\x0a\xcf\x0f\xd4\x25\x9c\x17\x36\xe3\xc1\x00\x9b\x8a\x89\xa9\xe1\x28\x97\x8a\x88\x58\xde\xd9\x81\x1f\x50\x50\x8f\x1e\x12\x98\x4c\xee\x11\xec\x4a\xa2\x35\xa3\x75\x6d\x59\x45\x74\xee\xec\x51\xa8\xec\x54\x63\x4d\x0d\x30\x3d\x2b\xdd\x3e\x23\x3e\x37\x0c\xc5\x2b\x65\x06\xe8\xb6\xe8\xd5\xe8\x80\x5a\xda\x09\x22\x72\xb3\x6c\xe8\x99\x11\xb9\xc1\xa2\x2f\x42\x72\x5f\x96\x48\x84\xe4\x66\x55\x7d\xc8\x08\xc9\x9d\x1f\x08\x2f\x9d\x09\x49\x86\x69\xad\x84\x1f\x60\x25\x64\x5e\x40\x50\xee\x7c\x41\xab\x3b\x85\xe5\x6c\x93\x06\xa2\x72\xbb\x82\xf4\x33\xa2\x72\xe7\x07\x7e\x80\x28\xbe\xfe\x93\xba\xa6\x19\x31\xba\xf9\x45\xbf\x88\x87\xca\x56\x42\x11\xa4\x9b\x6d\xf4\x43\x90\xee\x1c\xce\xf0\x00\x25\x26\x68\xb8\xf8\xab\xcf\xad\x41\xa6\xe0\x36\xf9\xb3\x8f\x11\x84\xe5\x86\x60\xee\xc9\x30\x3c\x1f\x2b\x30\xf2\x25\xf3\xbe\xfd\xc0\x9e\x12\xca\x20\x3b\x37\x77\x08\xd9\xb9\x48\x9a\x40\xd8\x6b\x18\x3e\x42\x8e\x45\x38\xea\xf0\x28\xe0\xce\x02\x11\x71\xab\xc3\x47\xeb\x41\xa3\x91\x7b\x3c\x88\x04\xaf\x3b\x6c\xa3\x59\xf5\x7c\xf3\x73\x40\x11\x76\x9b\x26\x33\x2f\xfb\x09\x4e\x26\xb9\x0e\xa1\xa6\xe1\x85\xc5\x73\x91\xaa\x3f\xa8\x1c\x52\x40\x9d\x9d\x0f\xb4\xee\xc8\x5b\xb7\x1d\x9d\xc1\xa5\xc9\x67\xca\x49\xb9\xcd\xd3\x3a\x49\xac\xe6\x9e\x27\x02\xd5\xcc\x36\x28\x3e\x9b\x78\x4f\x8a\x40\x96\x41\x2e\xb0\x0d\x63\xfe\x02\xad\x1a\x91\xd7\xc2\xb4\x60\xbc\xe8\x30\x30\x75\x5f\x50\x09\x7c\x8e\xa1\x90\x66\xf7\xa1\x73\x81\xfc\x7c\x70\x5e\xe0\xc7\xde\xd2\x17\xb8\x88\x0f\xfb\x8b\x73\x32\x9b\x99\xf2\x74\xaa\x66\xc8\x14\xa0\x4d\x4c\x53\x80\x6e\xd5\xc4\x71\x43\xa9\x71\x87\x94\x9f\x2d\x81\x3f\x53\x7e\x4e\xed\xd5\x01\x65\x1c\xe3\xfd\x46\xd8\xb9\x41\xbc\x31\xa2\x57\xf2\xe1\x0e\x97\xbc\xfc\x40\xfc\x4d\xcd\x93\x7e\x88\x36\x69\x83\xcf\x03\xcb\x8e\x99\xc4\x14\x7f\x93\xaa\x84\xe4\xe7\xc1\x2e\xae\xee\xa0\x23\x49\x57\x93\xa0\x0b\xfc\xf5\xfd\xc2\x92\x76\xf9\x12\x7f\x7d\xce\x3d\x58\x7a\x6f\x91\x07\x25\x7c\x3e\x4a\x40\x61\x8d\xac\x4d\x06\xb6\x82\xd8\xe1\xb9\x47\x92\x1e\xc0\xea\x50\xfc\x02\x61\xec\x6a\x37\xc2\x90\xf5\x00\x66\x87\x8f\xe6\x52\x36\x18\x4a\xad\x94\x97\x6d\xa3\xa8\xe7\x17\x28\xe0\x16\xf7\x30\xd7\x5a\x87\x54\xd9\x20\xe0\x56\xe5\xdf\x94\x6d\x4a\xb8\x45\x86\xcc\xb2\x6a\x79\xa9\x40\x76\x41\x39\xaf\x2c\xa1\xba\x20\x02\x3a\xbd\x26\x11\xa8\xd2\x7e\x44\x9a\x82\xa2\x5e\x59\x01\xa7\x05\x65\xbc\xc2\xa8\x1e\x61\xcd\xd2\x2f\x50\x8a\xea\x02\x9a\x12\x70\x75\x8f\xa4\x70\xff\x4e\x51\xf0\x23\xb3\x14\xd6\xfb\x6a\xd1\x88\x0a\x17\xc7\x30\xd4\x08\x3d\xeb\x1e\x13\x72\x57\x50\x0f\x91\xb3\x54\x07\x08\x41\x4c\x06\x09\x89\x90\x35\xab\x3f\x24\x42\x8e\xa2\x85\x88\x5c\x5a\x2d\x65\xa4\xf2\x25\x34\x47\x1e\x22\x3f\x2a\xad\x5d\xb6\x88\x2d\xfe\xea\x1d\xe2\xcd\xab\x37\x22\xc4\xd0\x1c\x48\x3b\xf5\xef\xd4\x10\x0c\xfd\x14\xc1\x36\x2f\x11\x63\x9d\x92\x57\x3d\xad\x0d\x28\xf8\x29\xcf\x4b\xd4\x2d\xdb\x27\x30\x45\x6d\x26\xee\xb9\x87\xb5\x26\xc2\x30\x22\xa3\x93\x09\x0d\x9e\xab\xda\xbc\x5f\x32\x51\x2c\x42\xca\x30\xd7\x54\xb7\x17\x08\x1a\x22\x43\x72\xed\x9a\x35\xa5\xf1\xa6\x35\xcc\xc0\x5a\xd3\xac\x33\x6b\x2e\xf9\x77\xee\x9e\x64\x90\xd6\x6e\x31\x48\x54\x19\x9a\xdf\xc0\x99\x15\x34\xa9\x02\xee\xee\xdf\xcb\x22\x7e\x8d\x59\x40\x07\x26\x44\x18\x73\xe5\x1e\x2e\x5b\x59\x74\xe0\x1e\x78\x6e\x1a\x6f\x14\xaf\x9b\x60\x9a\xe2\x74\xda\x5e\x3d\x3e\x04\x5a\x1f\x54\xae\x5d\x12\x5e\x90\xc3\x37\x5e\xe4\x51\x17\x94\xea\xb3\xd2\x4d\x29\xa8\x2b\xad\x87\xc9\x0f\xb8\x47\x93\x96\xbb\x52\x56\x4d\xee\x02\x24\xd6\x3c\x06\x77\x5c\xd2\xf2\x35\xae\xbf\x7a\x58\xf2\x73\xd6\x72\x34\x16\x6d\xf3\x07\xc8\x2d\x8e\x9a\x28\xe4\xe9\xcd\xb8\x6e\x8c\xe5\x11\x8c\xcb\x6f\x65\x92\x6c\x5c\x7f\xb7\x51\xc9\xce\x8b\xd7\xb9\x78\x1a\x70\x89\xcf\x59\x34\x4e\xab\x70\x77\x9b\x02\x46\xd6\x90\x9d\xba\x91\x67\xdd\x49\x52\x59\x68\xe9\x38\x5b\x4d\xf5\x7d\x89\x76\x1e\x94\x02\x83\x57\x6b\x49\xb7\x66\xd1\xf4\x87\x17\xe1\x81\xc2\xeb\x10\xde\x06\xe5\xa0\xee\x07\x6b\xf5\x34\xf1\x01\x39\xc8\xcb\x3d\x05\xd4\x94\xcd\xc2\x07\x48\xec\xd5\xc1\x41\x10\xfc\xc2\xc9\x1e\x05\xf5\x92\x50\xab\x3e\xd9\x49\x63\xe6\xd1\xfb\xa2\x31\x4d\x63\xa7\x5d\xcf\xd8\xdc\xe9\x86\x70\xfb\x82\x5e\x29\x28\x0f\x9a\xbc\x8c\xbb\x03\xc6\xd3\x57\x1b\x0c\xc2\x3c\xfc\xc0\x41\xd3\x85\xa8\x83\x36\x08\xc1\x88\xdc\xaa\xec\x49\x2c\x11\xd5\xe7\xf1\x41\x9a\xf5\xc1\xc2\x40\x83\x4d\x78\x38\xb9\x36\x66\x10\xb4\xe7\x9a\x05\x9d\xb4\xc2\x99\x0d\x9e\xd4\x4c\x0d\xe4\x0a\xa3\x74\x0f\xb4\x83\xbc\xba\x20\xae\xbd\x2f\x90\xd1\x14\x5f\x40\x90\x29\x99\x00\x90\xd2\xa4\x1c\xe9\xb2\xc1\x64\x5b\x9b\xbb\x84\x13\xb8\x0e\x61\xfa\xa2\x3e\x64\x96\x71\x11\xca\xf1\x93\x30\xbb\xb2\x5d\x05\x45\x09\xdc\x3d\x78\x9a\x77\xf6\x05\x57\xe4\x10\x0e\x58\xfd\x57\xc6\xa1\xb2\x5d\xc8\x5a\xf5\x4e\xa6\x05\xd7\x3b\xff\xa2\xba\xe3\x4d\x72\x93\x14\x7c\xa0\x2d\x91\xd3\xf4\x77\x83\x16\x3c\xe6\x9d\xf9\x82\xe6\x7c\x63\x2f\x1b\x69\x0c\x58\x48\xde\xec\x37\x52\x4f\x2d\x7c\xdd\xf4\xad\xfb\x90\xbd\x69\xcb\xc9\x1e\x03\x86\x0c\xa3\xf5\xc6\x34\x5e\x40\x72\x6b\x67\x3d\x78\x58\xa9\x6e\xd3\xbc\x1e\xda\xd5\xcc\x78\x59\x7c\xa3\x99\x5c\x1e\x6e\x23\x23\xf7\xe1\xee\xd7\xa0\x0f\xe7\x25\x7a\x7a\xc8\xa3\x4c\x81\x0f\x64\x85\xe1\x21\xc8\xa2\x3c\x2f\xd8\x7d\xab\x57\xe7\x59\x7b\xfb\xd3\x25\xeb\x7b\xd6\x8f\x5a\x55\x18\xaf\x55\x75\xe7\x4f\xe1\xcd\x42\xca\x75\x28\xbc\x47\xa8\xea\xe2\x87\xc2\x7b\x84\x86\x04\xfc\xc2\x7b\x84\xb2\x8c\x73\x25\xd0\x74\x3b\xfc\x02\xc5\x07\x31\xd2\xb0\xe4\x50\xb1\x45\x5c\xf0\x13\x2d\x5f\x04\x88\x99\x51\xec\x24\xc0\x43\xaf\xa8\x85\x82\x9a\xa1\x39\x48\x1a\x0f\x2b\xba\xc2\x43\x06\xea\x51\x49\x6d\xb2\x07\xe3\x01\x62\x67\xfc\xd8\x6b\x4a\x58\x62\xa7\xd8\x24\x6e\xf3\x99\x0f\x34\x6f\x48\x95\x8a\xfd\x2a\xa8\x53\x9a\x55\x0e\xaa\x84\xc8\x8d\x28\xa2\xc3\xb5\x3a\x49\x95\x54\x0b\x6f\xcd\x09\x16\x30\x70\x49\xce\x7c\x20\xc4\x25\x24\xe0\x06\xbf\x40\x0e\x24\x29\x07\xb7\xe4\xcc\x2f\xd4\x67\x5a\x31\xe8\x7e\xa3\x01\x2a\xbf\x40\xca\x97\x78\x88\x3b\x71\x66\x17\x42\x55\x22\x26\x0c\xc4\x81\xb6\x10\x01\xb7\xbc\x62\xab\x0a\x2f\xb3\x51\x19\x90\x12\x68\x68\xb5\xb4\xc0\xfb\x6c\x54\xa5\xb6\xf0\x3a\x1b\xdd\x55\x50\x78\x9b\x4d\xf2\xac\x33\xca\x2a\x78\xb1\xe1\xa6\xaf\xda\xfe\x08\x18\x8c\xcd\x8b\x9f\xa9\x41\x08\x4b\x19\x16\x99\xe1\x36\x6b\x3c\x1b\x40\xd6\x85\x71\xff\xb0\x9f\x98\x56\x60\xb6\xb5\x90\x86\x78\xc4\x39\x21\x75\x00\xbb\x6d\x34\x69\x94\x88\x0e\x05\x50\xe1\xca\x4b\xf8\xc0\xe5\x35\x59\x25\xbb\x0a\x2b\xc4\x56\xc5\x1c\x15\x5c\x55\x33\x1f\xf8\x0d\x5a\x37\xba\xfb\xdc\x51\x7c\xc6\xed\x93\xa5\x0c\xd4\x5e\xfc\x48\x63\x56\x3a\x99\x86\xa0\xae\x84\x52\x68\xa9\x64\x36\x42\x3b\xaa\x3b\xf8\x30\xe3\x1d\x32\xc1\x12\x12\xee\x90\x09\x4e\x9f\x2d\xb8\x43\x26\x2a\xa1\xbd\xe0\x8e\x18\x17\xe0\x29\xbc\x23\x66\x54\x8f\x00\xcd\xa4\xfe\xc4\x43\x54\x70\x7d\x4c\x8e\x66\x4c\x8d\xe7\x9c\x3a\x63\x38\x79\x32\x19\x34\x6a\xe0\x12\x9e\xc3\xb2\xd1\x0a\x5c\x5c\x05\xa3\xfb\x2d\x4a\x60\x58\xb6\x74\x10\x5c\x04\x93\x64\x0e\x2a\xbc\x09\xe6\xcd\x75\x1a\x23\x33\x4d\x59\x8d\xb1\x74\xda\x5c\x8d\xd6\x4d\x49\x29\x01\x52\xa8\xb2\x76\x4b\xe8\xf1\x5d\x92\xa8\x84\xbe\x26\xa1\x21\x96\xcd\xd6\x3c\xa1\x63\x55\x8a\x7b\xe0\x6d\x00\xfe\x00\x15\x93\xa2\x47\xc4\x09\x20\x75\x20\xa0\x2c\x5b\x4b\x66\x6c\x1d\xd4\x1f\xdd\x01\xe4\xa2\xd7\xef\x6b\x0e\x86\x00\x65\x91\xa2\xda\x03\x65\x23\x24\xe4\x04\x18\x68\x15\x1c\x58\x50\xcd\x38\x29\x0b\xbf\xa0\x9c\x71\x56\x24\x60\x09\x83\x21\x2e\xee\x8f\xc9\x28\x66\x38\x30\xb1\xbe\x78\x37\xf3\x47\xdd\x21\xcb\xb7\x9a\x21\xc1\x3e\x9a\x65\x71\x2a\x01\xc1\x09\x31\xb9\xbd\xb0\xec\x1e\xb0\x1f\xa5\x00\x07\x14\x2e\xb0\xb6\x1a\xf6\x8a\xdf\xb5\x4c\x28\x54\xa0\x8c\x92\x12\xa6\x74\x9b\x2c\x7f\x04\xe4\x5c\xb4\x64\x9e\x88\xe8\x04\xc5\x67\x95\x00\x69\x56\x41\x74\x05\x01\xcc\xd1\x0a\x77\x38\x70\x9e\x99\x34\x61\x81\xed\x9e\xc1\x94\x6e\xf3\x66\x06\x72\x2c\x2e\xee\x0e\x77\x3e\xd0\x14\x0e\x4a\x9a\xc5\x43\xa0\xfa\x95\x04\xe4\x70\xc0\x48\x62\x2c\x1f\xe4\x72\xb2\x82\xe0\x1a\xa2\xf9\x40\x5d\x9e\x34\x5e\x9a\xcf\xb1\x30\x9b\x19\xe5\x89\x59\xf8\x44\x84\xcd\x36\x7b\x61\xcf\x05\xb5\x3f\x00\xf1\x4a\x4c\x0b\x27\x3d\x39\xde\xe4\xe7\x81\xa3\x40\xf3\x9e\xf2\x73\x1a\x9e\x25\x0b\x02\x54\xff\x4e\x7d\xd9\x67\x0f\x43\x24\x5f\xbc\xfb\x5a\xb3\x12\x0c\x0c\x71\xb0\x98\x8f\xcb\x8d\xec\x47\x2e\xbc\xca\x68\xbc\xf8\x20\x6c\xae\xd1\x6c\xef\x42\xb5\x59\x23\xee\x62\xf0\x8c\x80\x64\xea\xd4\x8b\x53\x5d\x84\xd2\x6c\xe2\xde\xde\x95\xc7\x4a\x98\x22\x71\x6a\xde\x52\x37\x25\x47\x6f\x81\x7b\x01\xad\x69\xdd\x40\xb5\x19\x0d\x04\xde\xe1\x43\xf9\x26\xa6\xdd\x01\x0a\xab\xf9\x38\xb9\x11\x0f\xe0\x33\x1a\xe2\x6f\xb4\x40\x76\x53\xfa\x91\x3a\x15\x1e\x82\xac\x0f\x20\xed\xea\xd2\x81\x12\x9e\x85\x67\xd1\xdb\xb3\x36\xa1\x1f\xd0\x79\x29\x85\x0c\x25\xc3\x5d\x6f\xad\x84\x87\x19\x2e\x82\xf9\xa1\x9d\xc2\xb2\x0d\xcc\xbc\xd1\xf4\xf7\x20\x38\xce\x93\x7e\xe8\x01\xf0\x00\xb0\x8f\xfe\xc8\x33\x54\x02\x2c\xc0\x8a\xbd\x29\x28\x60\xee\xea\x6f\x05\xe5\xca\x63\x11\x55\xc4\x0d\x3c\x45\x4c\x88\xd5\xcb\x87\xf9\x28\xaa\x97\x27\x85\x0b\x15\xe4\x1b\x44\x85\x40\x95\x55\xbb\x5c\xb4\xbe\x2a\x95\x6f\x06\x00\x64\x57\x3c\x20\x00\xd4\x8a\xb0\x4c\xb9\xca\xc3\x14\x56\x29\x6f\x36\x7b\xb2\x4e\x79\xd6\x2d\x8d\x25\x52\xaa\x96\xf1\x21\x22\xd9\x5b\x01\x0f\x25\x32\x7c\x41\xc1\x35\x25\x22\xf0\x55\xd9\xa1\x25\x06\x4a\x29\xc3\x2f\x5c\x20\x43\xc1\x1c\x49\x05\x12\x09\x62\x64\x28\x81\x5f\x40\x49\xb1\xe0\xdf\x2b\xb1\x96\xf5\x00\xf2\x6b\x71\x7b\xed\xc6\xa2\x07\x03\xf1\x84\x02\x1a\xe6\x52\x79\x8b\x4b\x5c\x01\x12\xc6\x73\x24\xde\xd4\x4e\x58\x58\x83\x88\x32\x70\xd1\x58\x4a\x6b\x21\x05\x73\x62\x38\xb0\x5f\x00\x5d\xea\x88\x46\x99\x8a\xa0\x0b\x59\x0a\xca\x54\xe4\xf8\xfa\x9d\xc1\x0e\xee\x8f\xf2\xa9\xdb\xb4\x54\x8a\xce\x23\x23\x15\xc4\xec\x51\x47\x22\x7b\xf3\xc6\x65\x3c\x95\x5c\x12\x33\xbc\x48\xd1\xed\x55\xac\x55\x20\xd0\x3a\x9a\xfd\xc2\x5c\xb7\x66\x24\x66\x9c\xf9\xd2\xd1\x23\x05\x58\x49\x72\xbc\x05\xad\x29\x18\xa8\xe0\x16\xb4\x54\xbd\x6c\x1f\x81\x56\x48\x58\x02\xed\xf0\x1b\x3c\xb1\x4c\x3b\x85\xf7\xbf\x09\x06\xe6\x3e\x9a\x11\x47\xdc\x76\x61\x9b\x20\x6e\x41\xcb\xd1\x3b\xb2\xf0\x04\x13\xc3\x60\xf1\xf8\xf1\x5a\xda\xba\x24\x05\xcd\x8b\x99\x45\x32\x96\x21\xc3\x27\xda\x5b\x81\x3b\xd1\x52\xf2\x10\xcb\x76\x6a\xd4\x23\x16\x21\xbe\x3a\x00\xf5\x55\x83\xb0\x26\xe1\x07\x54\xc0\xbd\x56\x95\x51\x47\x7a\x01\x35\xcb\x8a\x67\xdd\x20\x5e\x79\xd6\x8d\x97\x85\xba\x0d\x72\x95\x96\x89\xcb\xcc\x72\x34\xf5\xa1\x2a\x99\xa5\xdc\x48\xa9\x57\x01\x17\x05\xf7\x90\x65\x39\xdb\x4a\x6c\x58\x7b\x7f\xd0\x69\x17\xf3\x52\xf6\xc5\x58\x34\x24\xcb\x07\xeb\x40\xe4\xa5\x63\x4d\xd1\x3b\x25\xf6\x45\xa0\x7e\xc0\xec\x23\x77\xd9\x01\x83\x90\xd0\xb1\xa9\xbd\x07\xfb\x22\x16\x7f\xb0\xf6\x88\xdf\xe0\x2c\x44\x4d\x94\x4a\x25\x6a\xa0\x72\x4a\xb6\xb1\x9f\xa9\x5b\x59\x37\xa6\x16\x94\x4e\xc9\xf6\x2a\xc5\x25\x96\xea\x44\x43\xe5\x93\x18\xac\x0e\xa0\xf2\x89\xeb\x7f\x16\x14\x3e\xe9\xc9\xfb\x7a\xd0\xef\xae\x49\x41\x6e\x4d\xb9\xfd\xe4\xf8\x41\xc9\x93\xac\xc4\xfc\x12\x99\xff\xa9\xea\x67\x05\x77\x16\x4c\x70\xfc\xa0\x7e\x7f\x75\xdd\xea\x5b\xe2\xde\xf8\x82\xa6\xbc\xa3\xfe\xa6\x84\x4e\x14\x4d\x49\x36\x88\x46\xde\xa7\x24\x09\x91\x45\x50\x8a\x51\x86\xeb\x95\x82\x2d\x03\xf1\x40\x8a\x80\x99\x00\x6c\xb4\x2f\x46\x46\xa9\x56\x62\x4e\x3c\xa8\xa8\x6b\x4d\x0e\xa8\x22\x3e\x42\x69\xa2\xb5\x29\x21\x1e\x2b\x4d\xff\xd3\x3e\x37\x4c\xd1\x6d\x2c\xb2\x8f\x58\x14\xb0\x6a\x26\xed\x93\xdb\xd9\xc7\xcd\x09\x37\x83\x04\xf9\xc8\xa8\x02\xab\xee\xb8\x5d\xcd\x41\xc0\x85\x97\xab\x65\x45\xcf\x15\x5c\xae\x96\x94\x3b\x5d\x78\xbb\x5a\x4b\xaf\x07\x0c\x3e\x32\x65\x22\x28\xd7\xe2\x61\x84\x45\x37\xd8\xfe\x10\x19\x85\xbb\x79\xd0\x8b\x85\x4a\xcd\x86\x2e\x14\x22\xb3\x6c\xc1\x30\x5d\x1b\x14\x22\xac\xb6\x2f\xc4\x5d\x34\xd2\xf9\x28\x47\xa0\x6e\xf4\xa9\xc9\x5b\xdc\x3c\xef\x6b\xa0\xb2\xa2\x7f\x3f\x80\x69\x0f\x70\x72\x44\xa1\xfa\xc2\x49\x9f\x3d\x09\x30\x63\x9f\xb2\x17\x9c\x69\x26\x26\x8a\xb8\x3e\xd3\x56\xaa\x92\x21\x84\xd5\xb7\x9a\xfd\xc3\xe8\x6b\xd3\x79\xbc\xb9\x01\x34\x00\x45\xe0\x68\x46\x79\x43\x69\xeb\xee\xa0\xb1\xb0\xb4\xda\x9d\x1f\x68\x8e\x37\x63\x2f\xbd\x61\x6f\xee\x70\xd3\xcf\xbd\x66\x2d\x20\x1e\x1a\x2a\x7d\x20\xd0\xc8\x6b\x4b\x64\x64\xec\x82\x19\xd5\xc3\xa2\xc0\x82\xe2\x59\x4b\x27\x30\x29\xf5\xfa\x8c\x7a\x16\x49\x0a\xaa\x87\x0c\xdb\xac\x80\x62\xad\x27\x86\x1b\x11\x6a\xf3\x3c\x68\xe4\xf5\xa1\xf4\x20\x8b\x43\x43\xb2\x58\x91\xaa\x63\x97\x84\x9c\x2f\xe5\x9a\x17\xa4\xa4\xa6\x28\xf3\x15\x8a\x19\xcd\x49\x06\x3d\x80\xd4\x96\xfd\x02\x50\xaf\x83\x17\xb5\x8b\xa6\xc6\xe3\x0f\xc0\xdf\x85\x15\xd4\x21\x8a\x21\x8a\xb9\x26\xd6\x66\x1e\x06\xe1\x41\xed\x64\xfd\xce\x5a\xcc\x9a\x62\x0a\x0b\xef\x51\x0f\x12\x7b\xd4\x90\x30\x11\xbf\x40\x80\x30\x6b\x97\x00\x2a\x17\x25\x5d\xec\x50\x12\x65\x59\x5b\x52\x12\x4d\xc4\xc5\x2f\xa0\x1c\xf3\x6b\xc4\x83\x1f\x08\x8d\x08\x4c\xa8\xfd\x05\x34\xa4\x2a\xe3\x11\x79\x60\xc1\xa6\x92\x84\x44\xb0\x61\x16\x9d\x50\x92\xd9\x27\x69\x8a\x34\x7a\x35\xb5\x13\x60\xf0\xfb\x19\x2b\x29\xc4\x47\x6e\x8a\xe8\x07\xa8\xb0\xaa\x6d\xc8\x5a\x47\x63\xf2\xf0\x1f\x1c\x42\xb8\x5b\xd0\x09\x54\x25\x31\x72\x40\x77\xc3\x15\x54\x4a\x72\xf6\x51\x61\xa5\xa4\x11\x5f\x0f\x08\xb0\x90\x98\x28\x38\xca\xb4\x82\xca\x48\xce\x95\x29\x28\x8c\x94\xb2\xf4\x75\x16\x46\xd2\x3d\xfd\x05\x75\x91\x5e\xa2\x2e\xea\x22\x4d\x90\x84\xb2\xb4\x66\xe8\x21\xa9\xba\x56\x3f\x98\xdb\xe1\xb5\x6e\x79\x03\x08\x1a\x32\x87\x77\x9d\xee\x82\x3a\x4a\xa1\x39\x02\x05\x09\xd9\xb1\x99\xb4\x32\x48\x2d\xf8\x77\x16\xfe\xd6\x1c\x21\x8e\xeb\x4e\xcd\xc2\xda\x4a\xc3\xa4\x98\x59\xf8\x5b\x53\x40\x5d\xe4\xfc\xea\x8f\xbe\x88\x6a\x08\x69\xdc\xd1\x0e\x47\xf1\x25\xc7\xe6\x17\x14\x5b\x4a\xf6\x4d\xa0\xd8\x52\x54\xa1\xdc\x92\x18\x48\x2c\x61\x9c\xa5\x96\xaa\xf7\x27\x2a\x19\x5b\x26\x4c\x90\xde\x87\x14\xbf\xc4\x40\x06\xe5\x54\x96\x04\xf3\xb4\x82\xef\x4a\x2a\xdc\x1c\xc9\x0f\xce\x77\xb1\xf3\x92\x20\xbc\x5b\x2e\x4e\x08\x6c\x68\xde\x5d\x4b\x54\x97\x18\x9a\x20\xaa\xd7\x6e\xac\x23\xae\x61\xd8\x31\x91\x56\x71\x06\xc1\x54\xc9\x38\x0d\x64\xfd\x5d\x81\xf5\x92\x2a\xd1\xe8\x69\xd6\x45\x3b\x82\xb2\x12\x4a\x0f\x81\x92\x89\xa6\x84\xb6\x2e\x87\x54\x7b\x5d\x6a\xaf\x76\xc4\xfe\xd4\x88\x8d\x61\x8f\xc2\x0a\x6c\xd6\xd5\x94\x01\x93\xf5\xf0\xfe\x6a\xc8\x34\x35\x9b\x6c\xac\xa8\x29\xac\x31\x59\xee\x0d\x00\xc5\x11\xe3\x1d\x61\xc6\x8a\x10\x2f\x28\x81\x15\x92\xae\x3f\x2f\xa9\xad\x22\xe2\x1e\x83\x65\x31\x84\x03\xd8\xac\x93\x19\x6b\x27\xa7\x35\x31\x75\x94\x89\x96\x3e\x9c\x78\x35\x88\x4f\x62\x5e\xf6\x19\x6c\x7b\x4c\x28\x5b\x98\xbd\x72\x4c\x78\xb3\x48\x84\xba\x5a\xd9\xc2\x2e\xea\x68\xa5\x61\x7a\x1d\x9c\xb7\xb7\x0c\x0a\x84\x0c\xef\x10\x44\xdd\xd6\x6e\x7a\x82\x30\xde\x3d\xab\x1d\x9b\xde\x4c\x00\x75\x74\x82\x8d\x97\x69\x09\xdc\xc6\xf5\x8e\x5d\x6e\xd6\xba\x13\x46\xc1\xb4\x23\xc7\xc1\xbc\x1a\xb7\x78\xd8\xa8\xc7\x8b\xb7\x86\x45\xa8\xc4\x4b\x3c\x94\xd6\x5b\x12\xcc\xc8\x8e\xf5\x48\x3b\xa8\x4f\x62\x60\x62\x20\xaf\x45\x1e\x54\xf7\xca\xf6\xcd\xb2\x9a\x97\x7d\xf1\x89\xc5\x15\x7c\x6a\x1e\x6b\x4e\xea\x91\x51\x14\xb6\xc0\xa6\xa3\xbe\xef\x18\x28\xe9\x58\x7b\xc8\x0f\x78\x4c\xfa\x88\x3a\xd6\xb4\x84\x97\x83\xe2\x88\x5f\xa0\x54\x6f\x44\xa0\x76\x4b\x4b\xe9\x27\x77\x0e\x95\xc4\xfb\x42\x2c\x94\x25\xda\xa5\x9b\xdb\x38\x62\x7c\xa2\x9c\xfd\x7d\x2d\x42\x49\x27\xcb\x4a\x0b\x3e\x1a\x99\x65\xf5\x42\xc5\xb2\xd4\xa5\x6b\xa2\x62\x59\x6c\x66\x0a\xb0\x31\x67\xd3\x26\x6e\x88\xb5\xf3\x3a\x2d\x79\x5e\xee\x6e\x94\x34\x8b\x8e\x15\xe5\x15\xb0\xcd\xa1\x02\x09\x59\x74\x2f\xca\x41\xd0\xaf\xa3\x84\xd2\x45\x45\x4d\x10\x5e\x8c\xc7\x32\x4a\xa7\x74\x9e\xb2\xa9\x7f\x0a\xe3\xdd\x56\xb5\x74\x71\xc3\x65\xf7\x88\x83\xdc\x3d\x22\x6d\x6e\x58\xc8\x4c\x10\xc7\x6d\x4c\x4c\x90\xc6\x9b\x49\xf3\x4e\xef\xbb\x25\x4a\xba\x57\x6d\x2f\xb5\x59\x63\xcb\xbf\xd3\x50\xd2\xfc\x02\xb5\x51\xcb\x8c\x37\x0e\x7e\x93\xe2\x8d\x6c\x70\xa3\x19\xc2\xf8\x30\x5b\x42\xda\x5d\x35\x2d\x43\x36\xcf\xc6\x3a\x2c\xd6\x2f\x24\x22\x60\xe3\xb5\x7d\x11\xb0\x61\xf7\x3d\x6a\xa6\x44\x95\xc6\x2c\x69\x4a\xf2\xd1\x06\x83\x04\x03\xf6\x4b\xe6\x85\xfd\xfa\x25\xbb\xad\xfa\x67\xa6\x83\x87\xd9\x5f\xcd\x6f\x00\x07\xaf\x11\x20\x15\x9b\xc3\x3c\x1d\x23\xb8\x0d\x01\x53\x5b\x0d\x17\x03\xbf\xe2\xb2\x32\x73\xe6\x6c\x62\xce\x8c\xd5\xd0\x14\x33\x42\x35\x8c\x12\x54\x81\x89\x2a\xde\x59\x32\x0a\x86\xaa\xe0\x48\xc9\xb8\x5d\x45\xe9\xa4\x25\x6f\xeb\xea\x2d\xb5\x91\xd8\xbc\x19\x00\x38\xca\x35\xa1\x8c\xf8\x62\x25\x52\x97\x8c\x04\xba\x61\x80\x91\x40\xe7\x58\xc5\x4c\xa1\x5d\x3b\x2b\x07\xd6\x9f\xd6\x89\x9d\x03\x15\x8d\xe8\x37\xa8\x91\xc9\xe8\x9d\x11\x96\x61\xe5\x3a\x07\xac\xba\x56\x35\x07\xde\x72\x24\x41\x24\x07\x16\x5d\x13\x8e\x22\xee\x6b\x92\x48\x9b\x23\xf9\xbe\xd8\x41\x8e\x6b\x5d\x35\x4b\x14\x63\xb0\xa6\x9b\x57\x74\x6f\x73\x97\xb4\x14\x69\xb7\x65\x44\xf0\xbe\xdb\x64\x91\xd1\x5d\xa0\xca\x5f\xf5\x98\xa0\xd5\xec\x1e\xc9\x52\xb4\x1d\x33\x73\xf4\xac\x9c\x64\x44\x82\x24\xcb\xc5\x19\x29\x78\x2f\xa8\xd7\xe5\x23\xee\x61\xe0\x74\xd2\xda\x4c\x39\x3a\xd9\x7d\x91\x11\xd5\xe1\x98\x9d\x9c\x88\x58\xf7\x8f\xb5\xce\xee\x0f\xdb\xc9\x16\x83\x4c\x29\xda\x68\x62\x75\x06\x9d\x13\x39\xaf\x32\x85\x82\x20\x53\x13\x96\xfd\x29\x23\xee\xa3\x9a\xbc\x33\x59\x86\xd7\x6e\xca\xcd\x49\xf5\x4f\x4a\x66\xe0\xc7\x6b\x08\x96\x13\x77\x07\x27\xb1\xe6\x0e\x18\xe6\xff\xa3\xe2\x08\x25\x67\xae\x8a\x01\x5e\xab\xa2\xf1\x21\x65\xbf\x56\x09\x56\x71\xe7\x5b\x97\x5c\xc8\x87\x75\xb6\xe4\x02\x3e\xec\x2f\x2a\x55\x0b\x83\xbc\x0c\xd0\xb2\xd4\xe7\x65\x71\x96\x48\x99\xeb\xc2\x8a\xc0\x42\x14\xc6\x6b\xe5\x2b\x65\x73\x93\x46\x85\xbd\xc0\x7c\xa5\x2e\xb9\xc3\x0f\x68\xa4\xf6\x2e\x43\x3a\x5c\xf2\x44\x61\x83\xb6\xa7\x2e\xa3\x66\x83\xb9\x7d\x6e\x74\xe5\x35\x3f\x80\xac\xf4\xea\x10\xd4\x69\x90\x28\xd7\x7a\x65\x29\xa5\x7a\xd6\x6d\xe5\xee\xaa\x4d\xce\x23\x24\x50\x46\xed\xde\xc6\x9d\x10\x0b\x00\x86\xfb\xda\x39\x90\x97\xd4\x6a\xc6\x30\xa5\xd6\x97\xfd\x37\xd3\x46\x6d\xd3\x7d\xee\x84\xd9\x3d\xb0\x64\xc1\xe6\x17\x16\xa2\x85\x26\x64\xc7\xf9\x58\xce\x28\x14\xe1\x88\xe2\x8c\xd0\x0b\x47\x77\xe7\x55\x28\x42\x02\x5f\x46\xa1\x88\x64\x5e\xd4\x49\x2e\xfa\x1d\x37\xe6\xd9\x18\x89\x6a\x5a\x13\x02\xe1\x05\x56\x6e\x7b\xf8\xf2\x58\x01\xa9\xfe\x82\xe4\xe4\x7d\x0f\xa3\xb5\xa5\x9b\xcc\x6c\x34\xfb\x13\xf2\x4e\x69\xcd\x34\xbb\xc2\x2d\x64\xd6\xcd\x08\xb7\xb0\x46\x91\x11\x5d\xe1\x73\x30\x53\x70\x36\x90\xab\x1c\xa9\xc9\x69\x6f\xdc\xa7\x42\xe4\x0e\xd9\xc0\x07\x0b\xca\x7d\xe7\x60\x10\x16\x43\x75\x97\xa0\x1f\x63\x76\x07\x37\x7b\x4d\x62\x61\xda\x3d\xb0\x46\xaa\x29\x70\xca\xd6\xd9\xa6\xe5\x7c\x2c\x8e\xab\x2e\x0e\x9c\xbe\x3e\xcc\x78\x39\x9e\x0f\xcb\x25\x29\x7b\xd3\x1c\x98\x84\xa9\x63\x55\xa0\x90\x21\x38\x1f\xd4\xd5\xbc\x5a\x90\x9c\x87\xe3\x4e\x50\x40\x36\x27\x33\xbc\x83\x25\xfc\x45\x0f\x07\xe8\xc5\x3c\xf8\x60\x10\x98\x44\xcf\x0c\x51\x3b\xb8\xc3\x29\x4c\x27\x5d\xfc\x58\x32\x42\x9c\x2d\xa5\x65\x96\xac\x78\x6d\xc4\x93\xbb\xc4\x1d\x2c\xfa\x71\x0f\xd8\xc9\xde\x56\x27\x97\x4e\x20\x42\xfa\x0e\xde\xa8\x27\x4f\xf4\x57\x8f\x6b\x69\x84\x05\x5e\xea\x60\x25\x3b\x5f\xec\x52\x2f\xdc\xb4\x42\x79\x0c\x0a\xaf\xa6\xe1\x1b\xb3\x32\x8c\xb0\xfc\x66\x1f\xaf\x37\x8c\xdd\x96\x9b\x6e\x92\x53\x72\x07\x64\x88\xe6\x57\x14\x2e\xbd\x74\x14\x2e\x4d\x4e\x37\x6f\x5e\x32\x37\x61\x49\x87\xd7\x56\x7d\x90\x49\x65\x12\x5e\xe1\x10\x3f\xba\x7a\xa8\xe4\x65\x14\xf6\x8e\xa0\xac\xe8\x85\x7e\x78\xd4\x25\x8f\x47\x88\xdd\xe6\x51\xe4\x2d\x82\x8c\x36\x5d\xee\x51\x0a\x84\x47\x87\x20\x15\xc6\x2f\xd8\xc4\x53\x78\xfb\xba\xb0\x5a\x60\xe4\x55\xcd\xdc\xc2\xb2\x7c\xc3\x26\x9f\x02\x71\xb3\x79\x07\x94\x8d\x96\xb8\xee\x31\xc0\xdf\xc4\xff\x0a\x05\x46\x11\x53\x41\x80\x82\x99\x55\x09\x0b\xa6\xa2\x07\xa8\x9a\x2f\xc6\x51\x22\x39\x49\xf2\x83\xb5\xb4\x4d\x0f\x78\xf8\xc9\x9b\x5f\x28\x7b\xc9\x40\x5f\x50\x2e\x41\x97\x90\x95\x82\xa0\xdc\x2c\x61\xae\x24\x4a\xe1\xda\x74\x85\x26\xce\xe1\x17\xa8\x07\xc8\xd5\x51\x90\x4d\x35\x5e\xa8\xa5\xcd\x53\xd6\xb6\x82\x00\x01\xef\x80\x92\x68\x3c\x6b\x7e\x61\xd1\xa3\xdf\xa0\x4e\xdd\xfc\x60\x2e\xaf\xaa\x66\x97\x42\x69\xcc\x98\xce\x8b\x1e\xfd\x00\x09\x38\x32\xd9\x17\xda\x30\x65\x57\x2d\xa8\x86\xa0\xab\x58\x4a\x61\xad\x2c\x6f\xec\x92\x79\xfa\x35\xf7\x48\x2d\xd5\x98\x44\x9c\xed\x0b\x0f\x79\x01\x2d\xd4\x67\x56\x97\xd2\x72\x97\x8d\x27\xac\x06\x2d\x64\xc2\xd2\x28\x0a\x52\xb0\xba\x18\x60\x61\x54\x81\x4d\x26\xa5\x70\xcc\xa8\x36\xb6\x81\xcc\x3e\xb8\x99\xbc\x55\x13\xf5\x2a\x3f\xe0\x0f\x6a\xa0\xeb\x42\x5f\x54\x2c\xaf\xe9\x85\xe5\x08\x7c\xd6\x94\xca\xe5\x95\xa8\x5c\x20\xcc\x38\xec\xad\xe0\x9e\x2e\x6b\xe7\xa5\x31\x5a\xb0\xf9\x05\x5c\xd4\x28\xc1\xa2\x30\xf5\xdf\x7e\xcd\x02\xe9\xc6\xae\xdd\xd2\x03\x11\xa5\xe5\x5f\x2e\x79\x13\xe5\x14\x77\xb2\x4d\xc8\x05\x77\x75\x35\x23\xb2\xc3\x59\x1c\xfc\x7e\xc3\xfb\x9a\x54\xa7\xdf\x53\x16\x37\x5c\xc1\x1e\x86\x67\x8d\xa2\x58\x76\x10\xe2\x0a\xf6\xb4\x6d\x06\x99\x7b\xdd\x04\xd6\x69\xbc\x92\x82\x50\x58\xfc\xdb\xa7\x5b\x61\x19\x2c\x9b\x96\x0a\x53\xfb\xed\x3a\x2d\xcb\x4e\x28\x2d\xa4\xb0\xf0\x95\xfd\x9a\x05\xe9\xfa\x36\xb8\x16\x14\xbe\xb2\x4f\xbe\xc0\x4e\xe8\xe0\xd3\x82\xe4\xa7\x62\x22\x86\xdd\x30\x1b\x8f\x83\x4b\x23\x44\x0f\x8a\x09\xfa\x7e\x5f\x20\x6a\xc0\x7d\x81\x28\x98\x21\xdc\x74\x6f\x3c\xc8\x36\x96\x65\xca\x94\x6d\xb2\x05\x30\xdc\x26\x1f\x75\xa1\x70\xe1\x65\xf2\x0e\xb2\x2c\xb8\xf4\xca\xd1\xef\x65\x5f\x96\x4e\x0f\x40\x90\xd5\x66\x19\x4d\xaf\xdc\xb1\xd0\xac\x39\xf2\xba\xf9\xf2\x23\x97\x50\x39\x78\xd2\x99\x27\x9f\x94\x41\xcd\xbd\x98\x26\xe5\xd8\xc1\x02\x19\x22\x07\xbf\x50\xd0\xd6\xf8\xe7\xda\x40\x7e\x01\xc4\x68\x88\x4f\x1e\x24\xdd\x0f\xc8\x20\xcd\xde\x4e\x32\x48\xef\x18\x08\x11\xd5\x49\x06\x65\xf9\xd4\x4d\x4b\xd7\xda\x32\xea\xe3\x5a\x70\xfb\x01\xe0\x96\x31\x02\x35\xf1\xf3\xeb\xc4\xbc\x28\xae\x65\x8f\x81\x8d\x1e\xdc\x01\x37\xba\xa9\x73\xd9\xe5\xcc\x22\x61\x97\xcb\x92\xc7\xca\x4d\xa0\x8c\x4c\x54\xab\xb2\x9b\x13\xb7\xe7\x67\x07\xd8\x95\x7b\xa1\xc6\x0f\x28\x08\xf8\x58\xbe\x29\x4e\xf9\x68\x58\x2e\x6b\xe9\x04\xe5\x21\xfe\x7d\xe4\xa1\x78\x54\x8e\x7e\x81\x27\xbb\x04\xf6\x82\xb4\x23\x95\xb4\x2e\x05\xc2\x86\x2e\x2d\x28\x05\xb1\x93\xd9\x8c\xfd\x21\x43\x13\x97\xad\x4b\xb8\x90\xf8\x8d\x4b\xfa\xe3\x90\xb4\x5d\x37\x1e\x37\xaf\x2f\x16\x43\xaa\x7a\x80\x60\x4f\x21\xbf\x32\x5d\x5e\xe5\x9b\x4b\x65\xb9\x27\xab\xeb\xac\xaf\xdb\x7c\xc6\xe1\x82\x82\xec\xf0\x92\x8a\x2c\x22\x8b\xf4\x35\xd0\x6f\x27\xa0\x90\xbb\x6e\x59\xa2\xd2\x43\x6c\xbf\x77\xc5\x0d\xbd\x2a\xb2\x5c\x2a\x6a\xba\x16\xaf\x4e\x5d\xa6\x22\x9d\x89\x35\xf2\xaa\x6f\x01\x1d\xd7\xf2\xf9\x0b\x50\x88\xc7\x4c\x6b\x12\xfa\x02\xf2\x89\x63\xd3\xeb\x94\x4f\xb2\xaa\xd1\x97\xca\x6a\x4e\xf6\xbd\x57\x5c\x6b\xeb\x30\xa0\xca\xf8\x46\xdb\x0b\x2a\x4c\x49\xf9\xd5\x23\x0d\x5e\x62\xa2\x15\xf2\x8b\x4a\x47\x97\x9a\xe8\x8d\xa9\xee\x92\x35\x50\x82\xbb\xa4\x97\x76\x78\x1a\xdc\x1a\x2f\xa8\x78\x3b\xbc\xf8\x5a\xcd\x6b\xa2\xfa\x24\x93\xd1\xe8\x2c\xaf\xf0\xcb\x9a\x6d\x54\x88\x2c\xc1\x2e\xff\xba\x64\x96\xd7\x17\x83\x83\xf8\x8d\x83\x0f\x34\x57\x5c\x39\xdb\x5e\x7d\x92\x88\xaa\x5f\x20\x69\xbb\xcb\x05\xb7\xf0\x8d\xac\xf1\x2c\x95\xab\x4e\x91\xa5\x39\x3b\xa9\x16\x1e\x10\xaf\x07\xbc\xcb\x5d\x98\x28\x54\x4d\x8d\x6e\x66\xf2\xbc\x50\x53\xb9\x82\xfa\x82\x36\x22\x4b\x1c\x15\x55\xe9\x55\xdb\xb0\xd4\xba\xe6\x2d\x42\x45\x98\xa2\xc3\x02\x6a\x05\xe1\x26\xff\x0e\x4e\x26\x89\xb5\xf2\x4a\x83\x17\xe2\xea\x9a\xb6\x60\xc0\x65\xa8\x45\x2c\xba\x22\xec\x30\x38\x34\xa0\x22\xa3\xbb\xf8\xa0\xab\x48\xb7\xf1\x31\x54\x71\xdd\xe9\x6b\x12\x14\x7a\xf2\x8f\xa2\xb5\x6b\x67\x42\x85\xe1\xe9\x8b\xaa\xdd\x1d\xa8\x5a\x52\x5a\x45\x08\xa2\x9d\xf2\x95\xe9\xde\xaf\x85\xa4\x84\x23\x69\xa4\xd2\x9a\xe3\x50\x85\x8a\x18\xc4\xf6\x86\x18\x7b\xd5\x33\x42\x48\xa1\xed\xf1\x15\xd6\x98\x97\x24\x88\xdb\x4d\x5a\x2d\x7e\x01\x22\xb4\xc5\xb6\x3a\x16\xde\xdd\x25\xcf\x35\x63\x91\x41\x86\x36\x5b\xd5\x9d\x68\xd3\x34\x70\x89\xa7\xa3\x85\x2a\xac\x31\x16\xec\xeb\x4e\xee\x5f\xfd\xa0\x71\x9e\x5a\xfc\x7d\x61\xc6\x6f\x0c\x02\x21\xd4\xec\x0b\x35\x9a\x18\x65\x10\x6f\x23\x5e\x3e\x60\xa9\xa7\xb2\x06\x91\x05\xab\x7a\xd0\xbd\xff\x7a\x83\xc8\x53\x97\x07\xd7\x4f\x50\xb1\x28\x91\x6d\x5f\x15\xc6\x92\xac\x73\xae\x1e\x37\x73\x6c\x84\xcc\x13\x98\x31\xb6\x11\x3d\x98\x75\x0e\x56\x18\x43\x74\x5d\x74\xa9\x70\x2c\xea\x76\xe2\x52\xcf\x75\xc1\x8d\x40\x80\xad\x23\xfb\x10\x3b\xb9\xcd\x82\x47\xd8\x11\xb1\xec\x1e\x89\x27\x2f\x06\x6f\xad\xb0\xb5\xad\x9e\x6b\xc1\x35\xed\x93\x97\xb8\x0b\xf7\xe7\x5a\x6f\xbd\x70\x6d\xec\x53\xd3\xb8\x38\x2d\xe1\xe5\xe2\x34\x34\x04\x42\x01\xb3\x4f\x18\x98\x57\xec\x73\xa9\x17\xb9\xb9\xa1\xbe\x60\x3f\x36\x19\xa3\x66\xa7\x83\x96\x2a\x63\x03\x1d\x7d\x52\x21\xf7\xbc\x24\xbc\x7a\xd1\x2b\xe3\x36\x2f\xf1\xf1\xd2\xc0\x1f\x69\x77\x7e\x65\x74\xa0\xed\x1d\x15\x72\xd0\x30\xd5\xde\x74\x75\x05\x3f\x20\x91\x1a\xb5\x37\xa5\xb3\xe6\x3e\xc9\xca\x25\x59\x57\x18\x71\xb2\xcf\x3d\x78\x04\x37\xaf\xc5\x12\x94\x7c\x38\x23\xb6\xcf\xa9\xb3\x15\xd7\xa7\x38\xc1\xb0\x52\x2c\xf2\x31\xf8\x30\x6a\x59\xd3\x9e\x62\x52\xdc\x4c\xa1\x0f\xf8\x85\x4e\x82\xb6\x81\x40\x75\xd6\xb4\x0d\x75\x68\x92\xdb\xd8\x12\x62\x69\x8d\x99\xd7\x36\x45\x34\x84\xd9\x65\x6d\xe5\xb6\x11\x20\xff\xbe\xf8\x4b\xd3\x03\xf0\xfd\xea\x36\xe9\xb1\xb9\x07\x48\x76\xc2\x49\x5b\x97\x16\x7c\x88\xa7\x85\xc0\xb5\xf7\x03\x1c\xca\x3a\x07\x5a\x00\xf5\xbd\x3e\x20\x0f\x94\x90\xdc\x28\x74\x09\xa9\x0d\x99\xda\x59\xd4\xd7\x50\x00\x53\x57\x44\x95\x16\xd6\x32\xba\xc7\x07\x61\xcc\x02\x39\x72\x43\x88\xa0\x1b\x82\xe8\xd2\xd0\x46\x6f\xcc\x4a\x71\x48\x4b\x8b\x0c\x60\xf7\x2c\x22\x81\x12\xa6\x61\x57\x0a\x3f\xba\x4a\xaf\xb4\x48\xa3\x84\x90\xca\x6a\xed\xa6\xd5\x16\x77\x8e\xef\xee\x89\xf6\x6e\x90\x71\xc1\x42\x30\x80\x14\xe2\xbb\x1f\xf0\xfc\xf5\x24\x11\x9a\xe7\x88\xf9\x86\xac\x6d\xc7\xd1\xb5\xf4\x70\x4c\xd1\x02\x2c\x44\xd9\x68\xcc\x0b\x29\x6a\x2f\x83\x8f\xda\xb8\xac\xbe\xfb\xfb\x93\x10\x68\x61\x32\x59\x97\x41\xa2\xa8\xd4\xdc\x03\xc8\xdd\x93\x64\xf9\x4b\x09\x78\x8d\xd6\x1e\xaf\x74\x59\x10\x09\x6f\x85\x6e\x00\xb7\xc9\x0b\xa5\xd3\xb5\x0a\xd6\xf7\x6a\xaf\x1e\x34\x04\xdc\x6b\x9b\xa9\xb1\x16\xf4\xe8\xdf\xa9\x86\xf8\x77\x9e\x85\x12\xf7\x5a\x25\x9b\x91\x6e\xd4\x10\x53\x96\xbd\x30\x95\x3e\x75\xff\x4e\x36\x64\xbc\xad\x18\x33\x59\x0c\x1a\x8b\x53\xa6\xd7\xa0\xe4\x8e\xc6\x2c\xa2\xcc\x5e\xfa\x54\x63\x79\x1d\x47\x24\x36\x24\x75\x54\x97\x09\x69\xac\x3f\x99\x24\xe5\xb7\x46\x43\xa8\x34\xcb\x86\x64\xe6\x66\x25\xae\x35\x86\xaf\x8a\x5d\x35\x66\x33\x3b\x6a\xa4\x35\x2e\xa0\x5e\xe8\x0b\x0c\x01\x8a\x1b\xe3\xab\x04\xd5\xd6\xa9\x52\x4b\x4f\x6f\xc8\xf3\xc8\xdd\x1f\x10\x7b\xc2\x05\xb2\x95\x2d\x04\xb4\xbe\x88\x4c\x43\x22\x99\x38\x7b\x16\x83\x72\x9f\x74\x91\x36\x28\x77\x4a\x74\x6d\x83\x4c\x52\x3a\x58\x1b\x0b\x35\xee\x93\xd7\xd2\x19\x9b\x63\x8d\x2a\xb0\xe8\x14\x73\xb0\x4a\xa3\x90\xe5\x79\xed\x0b\x13\x82\x8b\x25\x73\xcc\x40\x76\xa6\x9b\xf8\x03\xb0\x72\xe9\x81\x6d\x09\x5d\x92\xc8\xdb\x12\xba\x8c\xdb\x9d\x60\x67\x7f\x02\xf9\x54\xb6\x84\xb6\xd3\x93\xe7\x21\xc8\x33\x3c\x06\xa2\xc5\x74\xb1\x4e\x69\x07\x71\xa9\x21\x91\x54\xfc\x52\xeb\x1b\x23\xb7\xec\xd3\x6f\x94\xa0\xcc\xdc\x29\x21\x49\xa1\x6e\x28\x68\xae\xbb\x7c\x4a\x3b\xdb\x04\xc9\x1c\x01\x97\x45\xbe\xd8\x2c\x42\xaf\x9a\x11\x4f\x33\x8e\x35\x9b\x76\xf2\xe6\x0c\x2d\xd5\x49\xbf\xaf\x37\x2c\x6d\x34\x92\x2c\xda\x45\xb1\xdf\x58\xb9\x08\x92\x86\xe4\x9d\x70\x56\x5e\xdb\x94\x5e\x92\xa5\xc4\x76\xad\x49\x6b\x92\x10\x5e\x9a\x95\xa5\x06\xe9\xc5\xb9\x48\x6d\x0a\x2f\xa9\x98\x47\xdc\x24\x06\x49\xbf\x0d\xa9\x0c\xc5\xdb\x02\xc2\x4b\x75\x40\xfe\xba\x60\x27\xbf\xba\x20\xd1\x7a\xad\xee\xb5\xfa\x42\xf5\x4d\x19\x2b\xfe\x28\x88\xae\xb1\xe2\xb8\xb5\x1f\x5c\x5f\x18\x8b\xa9\x0b\xb1\x49\xf6\x27\xb4\x87\xe4\x67\x2c\x4c\xd9\x26\xbd\xe6\x04\xd9\xc6\xd9\xac\xed\x21\x3b\x31\x80\xac\xb1\x68\xac\xf1\x7e\x44\x6b\x43\x8d\x1e\xa9\xf4\x7a\xc0\x33\x4d\xfc\x06\x37\x28\xa6\x26\x72\xe9\xcc\x4b\xd0\x52\x75\xa4\xe0\xba\x32\x6a\xe9\xf0\x61\xb5\xfc\x7a\xc0\x3b\x85\xfc\x05\x4a\x40\x48\xe2\xea\xac\x32\xee\xe0\x89\xbe\x51\x84\x4f\x7e\x83\xbb\xac\xab\x8d\xe2\xab\x52\x84\x3b\x33\x19\x1c\x81\xd4\x97\xd9\x49\x9b\xa2\x4f\x89\x27\xba\xc4\x57\x0f\x03\x3d\xb8\x4d\xa5\x40\x9a\x4e\x47\x4c\x53\xd9\xdc\x01\x09\xd0\x40\x06\xb2\x23\x69\x2a\x3d\xf2\x80\x10\x51\x77\xd4\xa2\xd1\x9d\x19\xa5\x23\xed\x56\xd7\x74\x94\xce\x34\x5b\x1b\xcb\x7a\xe4\xb6\xc8\x7e\x83\x86\x72\xbf\xc0\x6d\x21\xe1\x15\xb7\x59\x36\x8b\x48\x9d\x37\xd4\x8b\xb5\xf7\x84\x1b\x23\xfc\x3e\x52\x03\x5e\x36\x86\x8e\xda\x35\xf6\x45\xf7\x54\x10\x2d\x26\x44\x26\x8a\x4d\xc6\x2c\xf3\x66\x3d\x49\x84\x28\x39\xc1\xa7\x2f\x11\xc7\x98\xce\xd8\x98\x12\x30\x7a\x46\xbe\x9a\xb1\x92\x39\x82\xf1\x98\x59\x7c\x5d\x20\x65\x2e\xb6\x3b\x20\x7f\xf2\xa4\x96\x79\x68\xb8\x4b\x8a\x24\xee\xa2\x50\x1a\x95\x16\xd9\xa7\x94\x13\x9b\x67\x85\xe2\x31\xce\xc4\xea\x25\xc3\x07\xaa\x1e\x0b\x0f\x34\xa9\xad\x1d\xb1\xf9\xde\x58\xbd\xa0\x6c\x49\xf5\x88\xc8\xa0\xf0\x2c\x11\x9a\xef\xac\xbc\xce\xa0\xa4\xd7\xef\x0b\x64\xcd\x72\x4a\x51\xad\x79\x92\x28\x1c\xa3\xba\xd2\xa5\xd7\xc5\xbe\xd4\x23\x03\xed\xad\x49\x77\xde\x02\xe3\xe8\x8a\x5e\x99\x99\xaf\x39\xa0\x52\x8c\xaa\xd4\x96\xbe\x84\x22\x6f\x33\x44\x20\x95\xcd\x6d\xc2\xa0\x0e\x60\x5e\xb2\xb9\xa9\xb7\x35\xa2\x80\x6c\xd8\x65\xc1\x2f\xf0\x4c\x4f\x7e\x01\x61\xbc\xc3\x2f\x2c\x34\x68\x56\x7d\x6d\x2a\xe1\x05\x5e\xb7\xe1\xa4\xa4\xce\xea\x2d\xe6\x05\x28\x29\x68\xe7\x52\xef\xb4\x93\x78\x9a\x2c\x8f\xed\x30\xa5\xce\x6b\x3e\x6d\x42\xe8\x83\xa5\x47\xf5\xc5\x20\x47\x93\xf6\xde\x07\x8d\x9c\xd5\x6f\x20\xd7\x3b\xb8\x87\x4e\x28\x05\xd5\x40\x4d\x49\x71\xf2\xbe\x6c\x4a\x06\x02\xf7\xf1\x5b\xdc\xec\xf0\x71\xf9\xd0\xed\xfb\x1a\x52\xc8\x47\x39\x94\x26\x1b\x45\xdf\x17\xd3\xfc\xc9\x45\x78\xa5\xb3\x56\xa0\xf5\xee\xce\x7a\xd6\x66\x04\x30\x1e\x15\x69\x67\x9d\xb5\x02\xad\x57\x77\x86\xb9\x4b\x1c\xee\x53\x90\x49\xc5\xac\x07\x91\x37\xc5\x68\x3f\x48\x0b\x7e\x7f\x47\x5b\x0b\x7b\x10\x00\xcd\x07\xb5\x53\x86\x53\xbd\x3a\x4c\x49\x9b\x8f\x11\x84\xd1\x54\x23\x80\x21\xe9\x8e\x74\xe8\x8c\xa3\xb1\x6a\xdf\x99\x89\xea\x20\xa9\x0e\x27\x58\x91\x1e\xd1\x4f\x14\xec\x30\xff\x65\x79\x6b\xbb\xfc\xfb\x49\xde\xe4\xf6\x09\xf6\xe9\x36\x97\xd5\xab\x04\x17\xd8\xcb\xc8\xdb\x99\x67\x6a\x21\xa0\xc3\x52\x54\x8c\xc7\x8b\xf1\xb8\x06\x0a\xa6\xa3\x62\xca\xb8\x56\x80\xb1\x56\x02\xc5\x53\x5e\xb4\x75\x2d\x52\x11\xb9\xc2\xd8\x54\x24\xbf\xf7\x8b\x4b\x23\xa8\x2f\x2c\x8d\x24\xed\xce\x50\xf7\xfc\xea\xf1\xc4\x0b\x9e\x04\xcf\xa1\xea\x07\xa0\x96\xe0\x11\x41\xbd\x52\x7c\xfa\xcd\xa0\x02\x4f\x62\x89\x67\x5e\x4d\x3a\xdd\x6c\x26\xe9\x70\xb2\x95\xe4\x17\xb8\x56\x1a\x82\xc5\x02\x2d\xeb\xf4\x9b\x16\x31\x21\x12\xb1\xe9\x2f\x82\x44\x49\x6c\x57\x2e\xe8\x37\x61\xd4\x24\x61\x79\xaa\x66\x5e\x0f\x4b\xaa\x69\x0e\x08\x1e\x7a\x1d\x01\x53\x5a\x4b\x9b\xa9\x0b\x86\xa7\xe2\x93\x11\xd1\x41\x96\xee\xc6\x06\xee\xa9\xa3\x75\x6c\x48\x62\x16\xed\x8c\x8d\xef\x0f\xb5\x91\xfd\xab\x55\x1b\x1b\x99\xa7\x44\xb5\xb1\x91\xd8\x84\xc3\x01\xbb\x90\x25\x92\x81\x7c\x4d\xdd\xb7\x59\x46\x20\x1f\x93\x99\x67\x4c\xa9\x28\x75\xd9\x27\x46\x58\x77\x4c\xaa\x8d\x18\x99\xe0\xdf\x07\x92\x2a\xaa\xda\x3b\x6e\x22\xd2\x14\xe0\x7a\x2b\xd9\xfd\x9f\x48\x4a\x72\x9b\x74\xa3\x35\x18\xcc\xbd\x74\x2e\xe5\x88\x8b\x2e\x34\xeb\x18\x91\x13\xad\x21\x61\x25\x1a\x3e\xc5\x46\x5c\xdb\xc1\x5f\x80\x50\xb2\xbb\x04\x6f\x96\xb6\x3a\x68\x19\x4a\xaf\x2e\x07\xce\x41\x41\x19\x39\x2b\xcd\x1a\xb5\x9e\x4d\xfd\x03\x76\x20\xdb\xd9\xc7\x32\x03\x49\x34\x1c\xcc\xd0\x74\xb0\xdc\x48\x4c\x6b\x50\x8f\x70\x0f\x96\xd7\x07\x94\xa1\x5f\x2f\xc0\xd4\x25\xb3\xe9\x80\xb3\xaf\x18\xd1\x10\xcb\x7c\x8b\x55\x19\x69\xd1\x82\xd0\x92\xb0\x23\x3d\x89\x25\x97\xc9\x46\x32\x32\xc7\xd4\xe9\x3d\x50\x11\xd0\x76\x9c\x91\xd7\x35\xf0\x82\x12\xc6\xa8\xf2\xea\x01\xbe\xa3\xe2\xdf\x41\xd0\xe5\x47\x25\x4e\x07\xec\x52\xba\x1f\xa1\x0c\xc4\x75\x3b\x92\x7d\xc0\x83\x57\x24\xff\x0c\xd8\xa5\x6c\x5b\x19\xcb\x2e\xa5\xed\x3d\x0a\xd2\xd9\xc4\xc4\x06\x44\xb8\xe6\x55\x45\x9d\x68\x47\xca\x0d\x4a\x70\x62\xed\x03\x97\xfc\x95\xe2\x01\x06\x09\xcd\x10\x61\x7f\x16\x0f\xc8\xfd\xe9\x0e\x90\xff\x23\x06\x35\x28\xe2\x39\xd8\x61\x14\x9a\x94\x64\xed\x1b\x95\x73\x14\xc8\x4c\xb7\xb4\xfc\x3f\x28\xf4\x49\x30\x19\x95\x73\x74\x07\xb8\x69\x46\x62\xeb\xa8\x60\xf4\xc5\xdf\x33\xe6\xd2\xef\x83\x45\x15\xb7\x99\xde\xe3\xfe\xa9\x05\x75\x3f\x00\xe3\x97\xe0\x33\x2a\x15\x5e\x93\x55\xc5\x35\x17\xde\x5c\x75\x91\x99\xe6\xd4\xd6\x3a\xe9\x0d\x64\x5f\x5a\xb7\x1b\xf0\x59\xba\x56\xde\x40\x4d\xe9\x22\xc1\x64\xb4\xb5\x0e\xee\x71\x01\x29\x18\x1a\x15\x02\x93\x02\x62\xbb\x5c\xa0\x6c\x74\x1c\xb1\x12\x5d\x46\x87\x0a\x6b\x90\xa6\x08\x99\x7c\xdc\x0d\xe6\x52\x7a\xe5\x3b\xea\x74\x0d\x7f\x4f\xcf\xba\x59\xf3\x12\x29\x65\xc5\x19\x28\x84\x52\xcc\x99\x99\x7c\xe9\x90\x83\x31\xd6\x29\xaf\x59\xa1\x14\x4a\x35\xab\x5d\x26\x34\x0f\x3a\x50\x8d\xce\x40\xd3\xa4\x66\x4f\xe8\x18\xac\x1e\xe1\x0f\x26\x33\xd6\xad\xc4\x65\x0c\xc0\x24\xa3\xe8\x18\x24\x47\xd3\x27\xaa\x9d\xb8\x08\xce\xd8\x91\xd7\xae\x13\x78\xec\xd4\xa1\x85\xe6\x65\x2e\x93\xf4\x3e\x20\x92\xba\x98\xd6\x60\x85\x3e\x9f\x3f\x3b\xd9\xff\x70\x0f\x54\xaa\x4d\x6f\xfb\x3a\x0f\x84\x06\x96\x3b\x71\xa4\xc5\x40\x89\xea\x22\x21\x6f\x1c\xeb\x3c\x10\xea\x8f\x05\x95\xfa\x3c\x18\x68\x2c\xbc\x1c\x48\x10\x78\xb5\x79\xfb\x9d\x7b\x5c\xe4\xe4\x07\x73\xf1\xac\xa0\x0e\x06\x5b\x59\x43\x1d\xbc\xf4\xbf\x9b\x15\x2c\x41\x73\xf8\x41\x05\xd4\x6e\xd3\xb2\xe3\xd5\x44\x84\xb6\xf3\xe5\xc7\xb9\x44\x30\x4d\xeb\xa4\x74\xa3\x59\x2d\x49\xd3\xbb\x00\x82\x65\xf0\x07\xab\xe8\x9e\x7a\xbc\xa8\xfa\x7b\x1a\xa8\x51\xed\xe2\x20\x03\x72\xa5\x8b\x5e\x0e\x0a\x7d\xd5\xbf\x73\xef\x9b\x25\x2f\x9b\x9c\xa9\x9e\x25\xf5\x5e\xfc\x08\x09\x89\x8e\x25\x1c\x30\xb1\x59\xa9\xe1\x5d\xd2\xcd\x16\xd8\x71\x73\xf3\x6b\x52\xa8\x90\xd7\x4c\x30\x37\x72\x2e\xbd\x29\x10\x68\x95\x86\x11\x7d\x13\xa6\xf1\xa3\x80\x85\xc1\x4b\x01\x1d\x9b\x32\xe8\x6d\xb4\x6f\x78\xb0\x82\x9e\xe3\x40\x06\x4b\x87\x38\x0e\x64\x20\x70\xcb\x2e\x9b\xc1\x02\x79\x8e\xd2\x18\x0c\xdc\xb2\x6f\x78\xc0\x4a\xe7\x14\xe4\x81\xc0\x2c\xa7\xd0\xef\xdb\xc6\x1e\xa2\x1e\x04\xac\x4c\x56\x3b\x21\xe0\xda\x1f\x50\x04\x2a\x7e\x01\x7c\xbe\xf9\x05\x8a\x8e\x3a\x48\xf6\x25\x3a\x0e\x3f\xb8\x39\xe6\x07\xa8\x1d\x97\x90\x14\xf1\xd0\x9d\xf7\xec\x39\xce\x62\x0f\x8b\xe8\xbb\x1e\xac\xc5\xac\x7a\x00\x0d\xb5\xfb\x0b\x1c\xa0\xcd\x1f\x1c\x4c\x9f\x0b\x7a\x00\x8a\x6b\xee\x60\x01\x65\x20\x20\xb2\x1b\x11\xf0\x32\x5a\x48\xd8\x97\x0b\x51\x27\xea\x1e\xd7\x6a\xf9\x01\xa4\x00\x11\xf9\xbe\x4c\x6e\x22\xa0\x9d\xd2\xa1\x63\x22\x70\x79\x79\xaa\xd1\x3d\xb0\x6a\x9b\x58\xd4\x1e\x17\x2e\xfd\x00\xdb\x40\x72\xfa\x9e\xd6\x7a\x0e\x3d\x40\xd6\xac\xc1\x86\x17\xd0\x91\x42\x3b\x4d\x64\xda\xa9\x3b\x72\xf2\xec\x68\xda\x33\xa3\x66\x74\x66\xee\x99\x40\x8b\xc4\x76\x14\xb3\xb0\xa8\xb6\x67\xde\x10\x27\x9a\xdb\x69\x11\x73\x94\xc4\xce\xb4\x39\xdb\x38\xf6\x82\x3c\x3e\x1d\x27\x3b\xc5\x19\xc7\x13\xec\x14\x4e\xbc\xbc\x75\x21\x5f\xd3\xa8\x0c\xd5\x18\x7e\x80\xe2\x8b\x9e\x47\xa5\xc3\x2c\xfa\x05\x50\x48\xf7\x10\x20\x88\xee\x0f\xc8\x82\x24\x1c\xec\xcb\xe5\xe6\x2e\x59\x7a\xc1\x66\xfe\x9d\xd2\x82\xfd\x95\x7b\xa3\x46\x6e\xaa\x6b\x0f\xc8\x54\xa8\xe9\xb4\xac\xe9\x80\xd8\x59\xbd\xd7\xe6\xe6\x7d\x2c\xe4\x09\xff\xa8\xb6\x6b\xf3\xf3\xce\x98\x69\xbb\x81\x76\x1a\x8c\xec\x74\xd9\xe9\xff\xb2\x57\x66\x1f\x9c\xba\xc0\x1c\xe4\x74\x5a\x51\xb8\xc3\x9a\x2d\xd6\xfb\x58\xf3\xd0\x03\x78\xbb\x9a\xed\xcd\xfb\x4e\x32\x91\x86\xba\xef\x64\x03\xb2\x4e\xec\x34\xea\xd8\xaa\xb8\x33\x2c\xd9\x51\x24\x3b\x13\xac\xac\x96\xef\x07\x73\xcc\xbd\x3f\x8e\xc5\xde\xdc\xe9\x5a\x02\x4d\x9e\x07\xac\x43\x3c\x71\xfd\x7f\xb6\xd0\xb8\xa3\x2a\x6e\x19\xfe\x1d\xba\x41\x77\x07\x4c\x1f\xf6\x06\x42\x39\x02\x9b\xc1\x77\x04\x0d\x15\x1d\x23\xfb\xb9\x96\x50\xb8\x61\x89\x31\x6b\xb6\x3b\x2d\x3b\xb6\xb7\xed\x3c\x80\xbd\x07\x4f\xa8\xb2\xdd\x6d\x54\x99\xf6\x76\x60\xc1\x01\xdb\xbf\x76\x5c\x43\x56\xcd\x40\xe1\xf3\x72\x5c\xca\x4e\x23\xcc\xf8\x51\xaa\xd1\xce\x2b\x7a\x6d\x90\xde\x2f\x2e\xbf\x0e\xa6\x9d\x77\xee\x3a\xcc\x64\x87\x45\x65\x98\xbb\xd2\xdf\x65\x02\x5a\xc5\x01\xcc\x23\x6e\x02\xa8\x09\xa0\x3a\x6d\xf1\x91\xc0\x84\x2c\x57\x87\xd9\x79\xb6\xda\x84\xb7\xd3\xa1\x65\x5b\xeb\xfe\xac\x31\xf4\x09\xa3\x9a\x5d\xed\x65\x47\xf4\x4d\xb0\x55\xe3\xd8\xd6\x3c\x9a\x1e\x04\xbe\x51\xf5\xa0\xb3\x53\x3f\xc0\x6d\x17\x52\x5c\x0f\x78\x83\xec\xf0\x3e\x36\x90\x97\xd8\xce\x81\xe0\x96\xaa\xed\x7b\xf0\xa0\xb2\xd5\xee\x08\x34\x25\x49\xec\x38\x70\x32\x8d\xf4\x7a\xe3\xe2\x03\xbd\x11\x97\xa0\xa0\x41\x10\xce\x52\x5e\x2f\x90\x9f\x56\xbf\xb0\x03\x8a\xac\x36\x2c\xc2\xd5\x6d\xf2\x36\xe9\x0c\x07\x7d\x39\x3a\xb3\x0f\x18\x0d\xaa\x18\xc0\x91\x32\xa7\xa1\x21\x13\xe7\xe9\x0f\xb8\x33\xa3\x7b\xbc\xf1\x82\x10\x99\x49\xb2\x02\x31\x53\xff\x14\x91\x1f\xb8\x20\xaa\x6a\xaf\x1f\xc8\x4f\xf2\x45\x16\x47\x5e\x3b\xdb\x2f\x2c\x32\x55\x97\xac\xd2\xef\x2f\xa6\x1a\x9f\xab\xe8\xfa\x28\x64\x5a\x86\x91\x91\xb9\x92\x01\x0e\xa8\xed\x55\x74\x7f\xe0\x32\x55\xbb\x27\x0f\xdc\xd5\xef\x7c\x81\x03\xc9\x48\x3d\xbb\x3f\xdc\x59\x6b\xe2\x29\xd4\x0d\x05\xf1\x3a\xd6\xa2\x3b\x40\x3e\x94\x91\xc4\x92\x47\x46\x7b\x5d\xc5\xe1\xd5\x26\x80\x5a\x47\xc6\x01\x57\xbf\x4f\xf2\x15\xf7\x3b\xa0\x84\xeb\xa6\xfc\x72\x40\xe9\xee\xd9\xbf\x2f\x88\x84\x43\x86\xa2\xd8\x4c\x7d\xc0\x2f\xe3\x6b\x96\x0e\x64\x86\xdb\x72\x79\xa0\x1a\xa9\x2d\x8b\x47\x23\x88\x9a\x22\xa2\x80\x7d\x63\x78\x39\xa0\x73\x57\xaf\x5a\x03\xad\x1a\xe4\xe5\xb7\x69\x86\x80\xf9\x2e\x32\x76\x1e\x88\x13\xae\x06\xb1\xf3\x64\x11\x7f\x3d\x90\x1c\x95\x5e\x0b\x83\xe4\xa8\xfa\x7a\x81\xe4\x1c\xdd\x25\xd4\x4d\x31\xd0\x83\x77\x43\x59\x1f\x3d\x10\x3c\xec\xc2\x02\x47\x47\x0e\xfe\xab\x8d\xdb\xc8\x24\xd1\x1c\x9d\x3a\x55\xf3\x0b\x07\x6c\x4e\xc2\x13\x02\x5d\x5e\x8c\x86\xf7\xa6\x36\x83\xc8\x95\x91\x64\x70\x30\x9d\x4a\x3c\xf7\xa0\x12\xdf\xe5\x5e\x3d\x18\x19\x63\x9f\xf0\x31\xe0\x5f\x35\xa7\x19\xbc\xe4\xcd\xdc\x0e\x9e\x24\xbb\xf8\x8f\xc1\x1a\x91\x6e\xa3\x42\x8b\x99\xdf\x80\x63\xf1\x05\x02\x4a\xb3\x79\x3f\x40\x6e\x78\x2d\xed\xc0\x75\x59\xe5\x47\xc7\xd0\x81\x90\x1b\x47\x49\x1d\x10\x31\xaa\x24\xdb\x63\x67\x0d\x36\x21\x68\xcf\x78\x5f\x2b\x84\x92\xfe\xdd\x2b\x80\x6a\x4d\xd5\x4b\xcc\x34\x2a\x7b\x22\x0e\x5a\x08\xec\xee\x3b\x60\x21\x70\x70\xf6\xb1\xf3\xd8\x95\x15\xfd\xa0\x81\xc0\x2c\x6a\x65\x84\xeb\x83\x83\x56\x4d\xad\x08\x8a\x2d\xd9\x4b\x7a\x20\xef\x2a\xbd\xda\x34\xab\x98\xf6\xe1\xc7\x72\xad\xd1\xe3\xe0\xe5\xcc\x06\x80\xfa\x80\xf7\xef\x41\x59\x3b\xbb\x4b\xdc\x7c\x28\x71\xe7\x60\x01\x55\x59\xc0\x0e\xda\x13\xec\xc9\x38\xe0\xc9\x7a\xf1\xed\x93\x5b\x45\xcb\x00\xf1\xc6\x9e\x8d\x03\x05\x55\xad\x66\x1f\x53\xda\x49\x4d\x32\xdb\x81\x54\xae\x6a\x2c\xa3\xe2\x7f\x35\xcb\x43\x41\x7f\x7b\x6b\x8e\x93\xab\xe0\x75\xe6\x85\x58\x96\xdc\x8f\x25\xfd\xc8\xe8\x7e\x50\xfa\xf1\x0b\xb0\x36\x58\x06\x3c\x90\xd7\x65\xf3\xee\x81\x90\xa1\x6a\x1e\x77\x71\x1f\x18\x86\x6b\xad\x83\x26\x85\x3b\xaf\x1c\xb9\x70\x20\xf1\xeb\x75\xfa\xc1\x27\x65\x83\xf2\x01\x97\x94\xeb\xec\x1c\xbc\xf2\x4a\xda\xc9\xc1\xea\x4b\x2e\x3e\x76\xdc\x14\x2a\xdd\xc6\x79\xeb\x65\x82\x43\xaa\x1a\x42\x38\xa4\x5c\xf8\xe7\x80\x3c\xe5\x40\xe1\xe3\x46\xf9\x3e\x69\x96\xc7\xdd\xbf\xbf\x8a\x93\x58\x0e\x44\x13\x95\xd7\x78\x10\x63\xe4\x1b\x3f\xe0\xbf\xda\xec\x00\x3d\xa6\xfc\x95\x5e\x47\xe3\xbd\x16\x41\x28\x78\xb8\x08\x1a\x91\xf9\xef\x76\x49\x1d\xa8\x83\x6a\x93\xcf\xb1\x8c\x19\xd9\x0f\x50\x9a\xd7\x42\xca\xc3\x39\x79\x84\x0e\x9b\x91\x70\x80\x2a\xa8\xf1\xf5\xfd\xc5\x11\x85\x14\xc4\x17\xf9\xde\xc3\x03\xb6\x0e\x47\xd8\x9d\xa8\x7a\x6a\x8b\xf4\x89\xf2\x4a\xae\x0c\x74\xc2\xd4\xd1\x8a\xe6\x74\x6e\x60\x31\xc3\x6d\xac\x82\x8e\x95\x13\xc1\x45\xce\x17\x38\x37\x5e\x49\x59\xd4\xa6\x73\x27\xaa\x7d\xc0\x4b\xe8\x01\xb9\x7b\x8b\x3b\xbc\x30\x80\x3b\xbc\x11\xff\x14\xd4\xc6\x0d\x54\xe2\x50\x27\x82\xb1\x6d\x6a\x39\x57\x7d\x25\xad\xeb\x89\x60\x6c\x33\xd1\x13\x5e\xb9\xac\xab\x78\xcb\x39\xe5\xd5\xd8\x36\xf7\x40\x8b\x92\xd4\x9d\x13\xf2\x6a\xf2\x31\x73\xc2\x0f\x67\xb3\xc7\x89\xbb\x57\xcd\x45\xcf\xe5\x66\x13\x57\x3c\x23\x28\x45\xdb\xf7\x8c\xa0\x75\x39\xa4\xce\x65\x48\x69\x7e\x00\x93\xb8\x58\xd2\x19\x79\x18\x6b\xbb\x9d\xb8\x40\xd5\xd7\xb5\x9e\x8c\xb7\xb6\xbb\xf3\x64\x11\x80\x79\x3c\xff\xe0\xe4\x39\x59\x21\xc0\x71\xcb\x27\xa3\xb3\x1d\x87\x7c\xd2\xec\xf2\x6a\xf3\x70\xf6\xca\x27\x6a\x16\x3a\x1a\x4f\x78\xe1\xac\xa5\x9f\x2c\x22\xf0\x5a\x3a\x5e\xc1\xfa\x5a\x3b\x16\x0d\x70\xe8\xf2\x99\x58\xf5\x57\xb3\x46\x91\x00\x3b\xf2\xce\x84\x62\x5d\x46\x1b\x4a\x04\x58\xab\x3f\xa7\x04\x9e\xac\x68\x9c\xac\x82\xaa\xc3\xe4\xcc\xeb\xbe\x28\xb5\x29\xd9\x09\xed\x99\x77\x56\x69\x8e\x28\x72\xea\xf8\xae\x13\x45\x4d\x75\xe7\x7e\x39\x11\x2f\xee\xd4\xfd\x13\xa9\x76\x8e\xa4\x3e\x51\x0d\xc0\xc5\xc5\x4e\x78\xe5\x5c\x96\xef\x44\xb4\x78\x35\x42\xe0\x95\xf3\x71\x7c\xc2\x2b\xa7\x4b\xff\xcb\x59\x40\xdb\x5e\x83\x02\x71\xc7\xa4\xbd\x9c\x6a\x06\xa0\xf0\xf4\x34\xe9\x96\xe3\xfb\xab\xd9\x2f\x72\x96\xb5\xee\x02\x11\x02\xbb\x55\xfb\x93\x5e\x35\x7b\xb9\xcf\x8a\xfa\x15\x3a\x8f\x4f\x14\x13\x70\x14\xe7\x59\xe3\xf7\x57\xab\xb2\x29\x9f\xcb\x6e\x25\xd5\xff\x44\x7c\x7a\x33\xdd\xe0\xfe\x81\xf1\x1a\x80\xea\x62\xf7\x83\x13\xb3\x16\x95\x30\x90\xca\x06\xbb\xb3\x12\xad\xee\x11\xcb\x6e\xb2\x69\x54\xa4\xcd\x64\x18\x5b\x6e\xea\x47\xe9\x26\x5d\x10\x5e\x4e\x04\x56\x55\xd9\xb0\x4e\x98\xbd\x6a\xf7\x42\x2f\xb3\x97\x19\xeb\x12\xe1\xbd\x54\x8d\x87\xbc\xfb\xec\x64\x33\xee\x94\xc9\x78\xf6\x21\x9f\x9d\x56\x09\xb1\xfb\x13\xb5\x94\xaa\x8e\xb4\xb3\x33\x32\xd8\xa8\x1a\xc8\xbd\x35\x77\xc5\x85\x00\x55\x16\xa9\x73\x70\x0b\xba\x07\x64\xeb\xd5\xea\x0f\x16\x94\xfe\x62\x0d\x21\x28\x59\x1a\xc9\xe7\xe8\xc9\x9b\xfa\xcd\xeb\x96\x5d\xcc\x44\xbb\x53\x4a\xf7\x19\xc0\xa2\xfd\x66\x55\x3b\x0d\x04\x26\xfb\x9d\x77\xac\x69\xde\x88\xb5\xb2\x9b\xe2\xdc\x89\x7e\xaf\xdf\x4e\xdf\x9b\x16\x18\x9e\xb0\xe6\x69\xf1\xae\x2a\x7b\x6a\xcf\x23\xe0\x9c\xd4\x07\xc7\x42\x8c\xbe\xa0\x5c\x6b\x3c\xf0\xf2\x2a\x1b\xe6\xce\x65\x98\x33\x91\x1d\xa4\x19\xb7\x21\x05\xca\xbe\x70\xc2\x70\x57\x5e\x3d\xd2\x2f\xa6\x49\x1e\x9c\x83\x41\xe4\x62\xfb\x77\x10\xb5\x74\xc2\x13\xc1\x54\x55\xc6\x83\x93\x52\xa7\x79\x15\x0b\x08\xd8\xb3\x7b\x9e\xe4\xf1\xe6\x56\xbc\x56\xb5\xfb\x68\x5c\x3e\x2b\x49\xba\xe7\xb5\x68\x54\x78\x42\xe8\x52\x6d\xfe\x62\x6d\x3d\x41\x81\xb8\x70\x57\xfd\x3b\x79\xd1\xe9\xf6\xa3\x20\x85\xf3\x5e\x8a\xb2\xba\x47\x82\x9b\x83\x28\xce\x9b\xc3\x6b\x11\x6e\x28\xce\xe6\x0c\x28\x59\x54\xcd\x4a\x6e\x1e\x52\x46\xea\x8d\x0a\xfd\xa6\xb4\x29\xc2\xa5\x17\x83\xe5\xfd\x4c\x76\xd2\x9e\x0f\x92\x65\xbc\xc3\xa6\x84\x96\x7c\x87\xf7\x89\xa8\xa3\x6a\xce\xf1\x1c\x88\xb0\x14\x04\x0f\x21\xfa\x20\xf0\xda\x68\xc8\x12\x3f\xbd\x36\x4a\xe2\xa2\x8b\x8b\x57\x24\x05\x7f\x01\xba\x10\x0e\xae\x8d\xb6\x80\xec\x17\x56\xe0\xc3\xa7\xcd\x94\xff\x22\x5a\xbe\xe0\x5b\xaa\x52\x88\xae\xe5\x5b\x12\x69\x5e\xa8\x09\x50\xbb\x7b\x00\x69\x89\x50\xae\x15\xa7\x54\xd4\x06\xa9\x89\x4c\x2e\xc4\x2d\xf9\xb2\xca\x0b\xd1\xde\xbe\x9e\xf7\x82\x27\xaa\x0e\x8f\xc7\x29\x69\x06\x81\xdb\xb3\xfa\x01\xce\x41\x69\x91\x57\x5c\x53\xd2\x14\x28\x40\xc9\x5c\x7c\xf1\xde\x51\x9b\xd2\xae\x15\xa6\xf4\xea\x82\xe9\x06\x1e\x34\x22\x4f\x23\xfb\x0b\x86\xd3\xf8\x77\xba\x21\xb4\xe3\xaf\x44\xf1\x5e\x3b\xfc\x82\x45\x70\x38\x15\xe8\x4a\x6b\xcb\x09\xac\xb4\xb6\x87\x96\x82\x61\x41\xb6\xec\x5c\xb8\x23\xde\xaa\xdf\x95\x79\x3a\x7a\xb1\xf2\x82\x5b\xa3\xf2\x66\x50\x47\x81\x5d\xcb\x1b\xa5\x9d\x7f\xb1\x28\x91\x1d\xc5\x17\x42\xba\x5d\xe9\xfc\x42\x91\x22\x1f\xc9\x17\xc5\x10\x99\xa2\xaf\x29\x76\xa4\x61\x1a\x2d\xd4\x98\x9b\x5f\x00\xfa\x65\xcb\xbe\x18\x0c\x94\xfd\x01\x25\xbb\xe6\x17\x28\x88\x24\xf7\x00\x10\xb4\xcf\xae\x4a\xe4\x7a\x01\xeb\x22\x52\xcd\x9b\x55\x22\x2d\x37\x5c\xa8\xf9\x68\xb3\xdb\x55\x79\x5c\x1a\xb7\x94\x13\x86\x5f\x40\xc4\x90\xa4\xf0\x0b\xc1\x33\x9b\x51\xbd\xc4\x02\x43\x4d\xc3\x9e\x36\xf3\x45\xb1\x40\x96\xee\x8b\x65\xc4\x9d\x22\x75\xb1\x88\x91\x59\xec\xb5\x8a\x16\xe9\x4c\xbf\x50\x58\xdc\x25\xdf\x2f\x66\x8b\x39\x89\xea\x42\x89\x46\xc7\x57\x5f\x28\x52\xe4\xd2\x37\xd7\x92\x12\x9a\x3f\xa0\x48\xe7\xdd\x88\xaa\x44\xbe\x2f\xf7\xa2\xd4\x60\xbc\xa1\xa0\xa2\xab\xd2\x5f\x83\x5c\xdf\xdb\x73\xb9\xd3\xbc\x38\x83\x9b\xc9\x1b\x9a\xd1\x32\xaf\xdd\x35\x78\x84\xbf\x06\xa1\xd0\x66\x9e\xc0\x2b\xd8\x5f\xfb\x0f\xf1\x31\x56\x3d\xaf\xb1\x70\xa7\x89\xed\x54\x28\x4c\xa6\x3b\x71\xe7\x36\xdd\x4e\x92\x13\xae\x9d\x5b\x43\xf2\xfb\xb5\xaf\x41\x35\x57\xd4\x48\x9c\xba\xde\x0f\x8e\xa3\x0b\x31\xd9\xbe\x2d\xe3\x62\x51\x21\xfb\x47\x2f\xb8\xef\x8a\x1d\xe6\x17\x6b\x8d\xdb\x11\x7c\x1d\x5c\x3d\x41\x88\x28\xec\x4d\xd6\xeb\x0b\x87\x7c\x0b\xee\x91\x48\x11\x0e\xce\xb5\x14\xea\xe0\xa4\x9d\xc6\xdc\x1e\xc6\xa5\x26\xfd\xf8\x3a\x19\x2c\x55\xfc\x00\x56\x56\x9f\x06\xb8\x9a\xa7\x49\xa7\xba\x4e\x9e\x91\x5e\xfe\x0b\xf6\x32\x93\x2c\xab\x08\xd9\xfe\x75\x5d\x58\x07\x4f\x02\x11\xd3\x2d\xf8\xf7\x8a\xb6\xb0\xc2\xf4\x33\x8b\xa5\xd7\xc5\xa4\x3b\xf3\x8f\x8b\xee\x59\x13\x18\xae\x9b\xf4\xa5\x46\x17\xac\x4d\xaf\xa5\xb8\x58\x8f\x5c\x68\x59\xee\x39\xb3\x30\xb8\xe7\xec\x6f\xbf\x10\xef\x9c\x5c\x9b\xf0\x42\x72\xbd\xaf\xfc\xbe\xee\xb5\x74\x1a\x02\x0e\xbc\x61\x8a\xbe\x59\x0a\x50\x68\x61\xba\x9a\x89\x01\xb2\x8a\x45\xa3\x8b\x55\x8a\xec\x76\xbd\x6e\xce\xc9\x6d\x04\xd8\x1b\x82\x75\x77\xba\x06\x78\x88\x66\xb7\x51\x80\xd6\x33\x98\xb2\x4a\xb2\xe5\xf4\xc2\xa5\x3a\xce\x1c\xbb\x1e\x02\xe8\xdf\x17\xd6\x35\xc3\x67\x31\x65\x7f\x41\x1b\x9f\x47\xb8\x10\xaf\x28\x88\x1f\x56\x69\x31\x44\xac\x87\xac\x75\xbc\x97\x77\x51\x2c\xf7\x86\x7d\xc9\xd9\x6b\x37\xb2\xfb\x1d\xa4\x7d\xe3\x7e\x48\xc7\x49\xdc\x1b\x05\x4e\xb1\x8d\x1b\xd2\x4f\x8b\xee\x00\xd4\x2c\xc6\x73\x6f\x54\x58\xc4\x24\x6e\x08\x3b\x2d\xba\xbd\xb8\x5b\xd7\x03\xde\xb4\xad\x1e\x50\xe0\xe8\x95\xdd\x76\x43\x7a\x69\x52\xa2\x6f\x48\x2f\x8e\x6c\xbd\x03\x41\xd2\xa4\xa7\xf4\x92\x36\x11\xca\xbd\xaa\x6f\x8b\x98\x6f\x26\xe7\x9b\xdc\x6f\xdc\x58\x63\x0f\xe9\xcd\xfb\x1d\x9d\xe6\x7a\x47\x44\x9f\x05\xbf\x30\x67\x69\x5d\xe2\x46\x48\xf4\x2b\x9f\xee\x46\xf1\x6c\xdf\xe9\x77\xc3\x18\x63\x6f\xf8\xcd\x3b\x6a\x9c\xd5\x7a\x27\x5c\xaf\xb8\xf9\x85\xc2\x17\xd4\x63\xc2\xcd\x0e\xa2\xa6\x3b\xc1\x91\xd1\x3d\x02\x6d\xd4\x5e\x29\x78\x37\x6d\x4b\xb9\xe1\xcc\x6c\x32\x3d\xdc\xb8\xc0\xb1\xc9\xb6\x73\x67\xdc\x54\x6d\x90\x33\x58\xa5\xce\xd2\x9b\x89\x6a\xc5\x2b\xbb\xbc\x9f\xda\xe3\x77\x86\x96\x67\xda\x80\x18\xe3\xcc\xda\x1b\x17\x38\x36\x89\x31\x37\xac\x23\xce\xee\xbf\x0b\x45\x6f\x77\x58\x08\x82\x90\x54\x16\x69\x08\x84\x42\x47\x75\xf6\x03\x9a\x2f\x4d\x5d\x85\xb5\x6a\x8a\x07\x7d\xd0\xa7\xbe\x98\x82\x4e\x4a\xfd\x47\x69\x43\x37\x62\x7e\x9a\xc4\xc7\xbb\x62\xfb\x78\xb4\xca\x19\x6a\x02\x75\x11\x92\x3f\xa0\x15\x50\x32\xcf\xdd\x16\x2d\x6a\x99\x70\xb5\xe2\x6b\x9d\x1b\x87\x70\x1b\x5c\xc6\xb4\xda\x78\x00\x49\xfd\xb8\x71\x3d\x8b\x3d\x64\x37\x02\x88\xed\x61\xbe\xe1\xdc\x74\x15\xc6\x1b\x39\xf8\x63\xf3\xef\x48\x5a\xe8\xee\xef\x82\x13\xcb\xef\xdf\xd8\xf1\xfe\x1d\x08\x35\x25\x77\x3a\x16\x24\x0f\xdf\x53\xe6\x4a\xdb\xe6\x36\x44\x2c\x1d\x5f\x37\xca\x26\x39\x9a\xeb\x9e\x12\x56\xb2\x3b\xe8\xee\xb4\xee\x0a\xc9\x7d\x2d\xba\x1f\xe0\xc4\x74\xd0\xd3\xdd\x61\x93\xf6\x32\xc1\xeb\xb8\xe9\x68\xb8\x07\x8b\xbc\x6b\xc4\x81\x58\x78\xf3\x28\x0a\x4b\x9b\x3b\xe4\xcd\x2e\xdd\x1d\xd2\x63\xa4\x36\x52\xf1\x7d\x09\xfd\xbd\x47\x42\x24\xa4\xc0\x33\xf8\xba\x58\xf7\xde\x61\xae\x70\xd4\xc6\xbd\x43\x91\x95\x26\x7c\x23\xba\x78\x33\x69\xed\x8b\xf6\x85\x77\x18\x5d\x5e\x89\xa1\xf7\xce\x4b\x66\xb5\x50\xf4\x2e\xbe\xd8\xda\x0e\xc6\xa8\x03\xe8\x86\xd1\x25\xbc\xb6\xd3\x0a\x26\xd6\x31\x7e\xc3\xa8\x62\xa7\xd1\x7d\xc0\xbb\x60\x56\x4b\x6f\xa1\xb9\xff\xd1\x41\x3b\x7e\x7f\x10\x04\x4d\xfb\xa0\x02\x26\x89\xf0\xc6\x6d\x89\xd6\x43\x6e\xd4\x61\x6c\x8e\x23\xba\x51\xdf\xa8\x79\xc3\x40\xbe\xda\xcc\x13\x4e\x48\x70\xc5\x6d\x9c\x99\x0e\x35\xbf\x91\xa3\x16\x9c\xb6\x79\x9f\x8b\x5c\xdc\x25\x29\x58\x88\xbc\xb8\x9a\xc2\x34\x43\x89\x1d\x6f\x75\xd3\x2e\xe3\x68\xa4\xfb\x5a\xb1\x7f\x6a\x43\xe2\x32\x85\x5e\x0b\x0f\x82\xe1\x5a\x40\x79\x0c\x48\x81\xc6\xcb\xb5\x80\x34\x50\xb8\xa2\xd5\x1f\xa0\x00\xb5\x0d\x9c\xf7\x8d\x73\x56\x96\x93\x1b\xee\xbb\x26\xb3\xe0\x8d\x78\x28\xdb\xf0\x6e\x5e\x5d\x68\x17\xe5\x8d\xfc\xb1\xd7\x5d\xcf\xf7\x0d\x59\xd8\xbb\x04\xee\x35\xdf\xf6\x70\x3f\x1c\x51\x1d\xc0\xbb\xe6\x82\xfc\xf7\x03\x66\x28\x7b\xea\x8d\x60\x28\x7b\xd3\x6f\x26\x90\x99\x51\x3d\x58\xe9\xea\x36\x33\x57\x3d\x05\xa4\xfb\xf7\xe6\x17\x60\xcd\xf7\x16\x79\x50\x45\xc1\x33\xa2\x37\xce\x01\x3f\x37\x4a\x42\xb6\xea\x0e\xe9\x7e\xf8\xb4\x9f\x8d\x06\x38\x21\xf1\x81\x7b\xce\x9e\xe3\x67\xa3\x33\x4b\xbb\xf4\xd9\x30\xe7\xea\x0f\x70\xfb\xa8\x4e\x9b\x07\xee\xb8\xd7\x1d\x97\x0f\xca\x25\xbd\x72\x82\x1f\x86\x77\xd5\xed\x47\x37\xb2\x3e\x88\x6c\xb6\x6b\xfb\xc1\xed\x29\xe6\x22\x0f\xc5\x33\x99\x44\x1e\xc4\x82\x6d\xc3\xbf\x4f\x32\x73\xb0\xff\xc3\x6a\xd8\x0e\x61\x7b\xe0\xce\x73\x2d\xb0\x07\xd5\xb0\x5d\x93\xe1\xa1\x38\x27\x8b\xca\xc3\x30\x68\x23\x24\x20\xc9\x7f\xf3\xf7\x08\x81\x97\xdc\xff\x20\x18\xcd\xd5\xc8\x1e\xdc\x80\x68\x15\xff\x09\x3c\xbd\x04\xe0\xba\x00\x51\x5b\xed\x41\xa5\x82\x51\x3c\xc0\x4d\xfc\x19\xa2\x07\x64\xa5\x19\xc5\x00\xf5\x49\xbf\xc7\xb5\x79\x35\x44\xa4\x3d\xbc\xf8\x01\x99\xb5\xd7\x08\x17\x84\xdb\xdf\xf8\xb0\x72\x81\x18\xeb\xb3\x2a\x7e\x6b\x52\x91\xbc\x5a\x82\xfa\x83\xcb\x58\x9c\x9b\xf2\x44\xec\xf6\xe6\x01\xb8\xdb\x83\x47\x00\x4b\x92\xb1\xe5\x61\x0c\xf5\x0b\x68\x3a\xf3\x24\x04\x3f\x09\xc9\x2a\xe2\x1f\x4f\xa2\x27\x5b\xb3\x86\x2b\xef\x95\xa2\xfa\x20\xc5\xce\xca\xfb\x83\x14\x3b\x97\xfc\x7d\x70\xe7\xe1\x4b\x9a\x7b\x50\x4f\xf3\x95\xa1\xfc\xc0\xd9\x67\x9b\xc3\x93\x68\x08\x15\xc3\x78\x50\x0f\x7c\x64\x0f\xc9\x10\x04\xa3\x05\xee\xbe\x57\x92\xf4\x03\x7f\x9f\x73\x54\x9f\xbc\x56\x42\x5d\x64\xdc\x0e\x6f\xf2\x61\x81\x28\x07\xd4\x3d\x99\xd3\x10\x50\xb0\xbd\xd9\xaa\xf1\xc0\xd4\xe6\x7c\xca\x27\xaf\x03\xc9\x2f\x80\x47\x98\xe0\xcb\x82\x51\x98\x2e\x84\x51\x68\x28\xf3\x04\xf3\x65\xf1\x0f\xaf\x31\x74\xd4\xcf\xb3\xa4\x56\x29\x30\x4f\x01\x35\x74\xb7\xc9\x79\x8d\x59\x18\xe3\x5a\x35\x0c\x20\x17\x99\x63\x9f\x4a\x6a\x30\xde\x50\x73\xca\x31\xdc\x0f\xae\x74\x71\x3e\xfe\x03\x1f\x5f\x73\x18\xe1\x83\x28\xbe\x57\x56\xf5\xc3\x54\xba\x31\x3c\x06\x34\xc1\xee\x2f\x60\x9e\x2d\x6e\xf3\x4e\x05\xcd\x12\x35\xa7\xac\x69\x3e\xa8\xae\xb0\x79\x61\x2a\x44\x26\xaf\x7d\xc5\x9c\x8c\x36\x66\xce\xbd\xf0\x0c\xc9\xd8\xfe\xb9\xa7\xf1\x76\x30\x01\x08\x41\xb9\xf9\xda\xfe\x07\xd6\xc1\x66\x7a\xc4\xfd\x2e\xbe\x29\xea\x61\x79\x06\x47\xd8\x3d\x0d\xa1\x4c\x52\x9f\x9f\xb6\xf3\x05\xf7\x00\x0a\xcf\xfe\x60\x51\xb8\x16\xaa\x91\xf9\x98\x7d\x52\x18\x96\x00\xf4\x40\x18\x76\x3e\xcd\x83\x6a\x55\x0e\xd7\x78\x68\x7e\x94\x11\xe3\xe9\x9c\x83\xb0\x84\xa8\xc0\xee\x6d\xcf\xa0\x40\xb3\x67\x5a\x23\xa5\x93\x3d\xa8\x6d\xd5\x86\xc7\x1b\x5c\x67\x4d\x01\x05\x45\x9b\x0f\x04\x18\x27\x47\xf9\x51\xbe\xd0\xc3\x0b\xcf\x25\xe6\x3c\x08\x10\x0c\x8e\xde\x7b\xe0\x00\x6d\x8e\x06\x7d\x90\x2a\xe0\xa8\xa5\x07\x0e\xd0\x26\x25\xf5\x41\xe6\x40\xc8\x6e\x27\x5c\x7b\xaa\x0e\x99\x38\xe0\x08\xb9\x07\xa2\xba\x6f\x40\x7b\x06\x27\xec\x0f\xb0\xb7\x86\x07\x3c\x89\x00\x3f\x58\x30\x0b\x85\xa8\xae\x6e\x9b\xc9\x43\x59\xde\x84\x0c\x7f\xaa\xab\x3e\x3e\xfb\xa2\x3b\xf5\xb8\xaf\xbd\xe4\x2f\x78\xc6\x1b\x2d\x3b\x81\xd4\x90\xfb\x80\xaa\xed\xdf\xa1\xe1\x6c\xee\x91\x0c\x41\xba\xfb\xb3\x33\x0a\xc0\xc7\xec\x8e\xdd\x33\xfc\x02\x03\x2b\xdc\x7e\x08\x82\x86\x44\x79\x0a\x07\x8b\x3e\x07\xce\x69\x13\x26\x24\xfd\xe4\xa2\x09\xcf\xc1\xfd\xae\x95\x39\x16\x17\xd3\x10\x08\x04\x0c\x5e\x6a\x98\x4e\x7d\xf1\xf0\x03\x51\xdf\xe1\xd8\x0f\x4c\xa7\x76\x43\x3f\x27\xd1\x26\xf3\xc0\x83\x30\x3e\x1b\xa4\x9f\x73\xf1\x76\x3f\xe0\x06\x96\x01\xe1\x61\xad\x53\x47\xcd\x3d\x10\xfe\x9b\x7d\x10\x0f\x8d\xad\xde\x4f\xb8\x47\xd1\xc1\x10\x0f\x04\x75\xdf\xe7\xfa\xc0\xc1\xea\x1a\xa0\x0f\xf2\x0e\xd2\xab\x7d\xe1\x7d\x81\x74\x21\xd2\x48\x22\xea\x03\xa9\xdc\xba\xed\x03\x77\xeb\xab\xca\xc2\xc3\x3a\x0f\x8e\x2d\x7e\x10\x56\xe7\xeb\xe7\x9e\x7b\x4d\x52\x78\xbb\xd7\x24\xfd\x06\x6d\x08\xe6\x84\x37\xe5\x60\xad\x0c\x6f\x0c\x2f\xc9\x2f\x5c\xec\x42\xb8\x87\x28\xff\x92\x73\x21\xca\x3b\xe3\xf7\x61\xda\x9f\xc3\xce\x1e\xde\x14\xe3\xd0\xd5\x07\x91\x72\x0e\xce\x7b\x78\x39\x8c\xe3\x9d\x1e\x48\xf3\xbe\x1c\xeb\x79\xc8\x5c\x65\x77\x78\xa6\xf4\x9e\xfb\xab\x07\xee\x54\x4f\x9c\x95\x4a\x7d\x00\xa0\x52\xa9\xee\x18\xa8\x1b\x2b\x8f\xea\xea\xa2\xba\xb1\xfa\xba\x42\x61\xea\xb6\x5c\xb3\xd5\x0f\xe6\x5e\x57\x16\x7d\xdd\x70\xf7\x8b\xc2\xba\xea\x86\x8a\x11\xaa\x29\x5c\xb7\x00\xf6\x54\x34\x24\x2f\xf8\x56\x85\x87\xba\x05\x1e\xf6\xd5\x0f\x0a\x7a\x10\x4c\x81\x39\x5f\x45\x6d\xf2\x86\xcf\xda\xd4\x2d\xf0\x46\xaf\xea\x31\x07\x7a\x70\x8f\xd4\xf3\x93\xbb\x04\xe2\x82\x7b\x80\x8c\x1f\x3c\x04\x82\x9a\x3e\x67\x52\xdd\x58\xa9\xab\x64\x8d\x00\xfb\xa7\xea\xa7\xd6\x2d\x72\xf5\xdd\x5e\x34\xaa\x11\x78\x1d\xa1\xf4\xa0\xba\x21\xbb\x43\xbe\xd9\xba\xa1\x54\xa9\x8a\x31\xd5\x0d\x35\x27\xaa\xd1\x04\x81\x58\x19\xe7\x75\x8b\x9c\xa3\x40\x44\x70\x5c\xde\xb6\x1f\x9c\x42\x75\x8b\x9c\xbf\x16\x85\x55\xc1\x14\x3d\x54\x37\x24\x20\x2a\x80\xb0\x6e\xb8\x20\xbc\x1b\x41\xb8\xb7\xd0\xa5\x48\xea\x06\x63\x6b\x55\x49\xb6\xba\x4d\xe1\x37\xf7\x28\xf8\x33\x05\xae\x2c\xc2\x81\xa0\xaa\x7a\x2e\x75\xc3\x45\x83\x3d\xb9\x9d\xd0\x76\x07\x40\x50\xd4\x88\xcb\x69\x5c\xdd\x21\xb7\x7d\x16\x90\xbc\x57\x30\x99\xf6\x32\x61\x12\x0e\xe1\x44\xde\x92\x56\x95\xb9\x27\x8a\x29\xae\x1b\xee\xe3\xee\x6e\x43\x92\x95\xcf\xa6\x6e\xf4\x22\x2b\x7a\xaf\x6e\x48\x46\x19\x5e\x25\xe6\xa2\xa8\x52\x54\xdd\xe0\x46\xce\xa6\x5d\x08\xb2\xfd\xd5\x26\x88\x02\x89\x25\x21\x8a\x26\x59\xb8\xdd\xf4\x7e\xe5\x76\xd3\xf6\xab\x8b\x5b\x6a\x40\xc8\xb1\xca\x04\xae\x5b\x25\x5a\xfd\x01\x98\xa7\x71\x30\xa5\xd8\x38\x0c\x70\x25\x8b\x30\x03\x40\x45\x08\xdd\x7e\x57\x37\xd6\x04\xf3\x0c\x2a\x67\x20\x88\x51\x93\xbe\x7b\xfb\xc2\x85\xad\xbc\x8f\xba\xb1\x26\xfd\x26\x94\x41\x8a\x55\x65\x84\xba\xb1\x6a\x6a\x53\xff\x6d\xe1\x5c\x10\x36\x14\x07\x34\xbf\x80\xd0\xfa\xee\x80\x9a\x61\xd1\x0c\x1a\x4f\x76\x33\x39\x54\x77\xe8\x66\x0f\x9d\xbc\xbb\x88\xf6\x20\x53\xf6\xd7\x07\x40\x9a\xd9\x41\x47\x48\x4d\xd1\x90\x4c\x34\x51\x28\x79\xdd\x3a\x69\xb3\x88\xba\x71\xe9\xa0\x0a\x01\xd7\x8d\x77\x0e\x9a\x1d\x74\x60\x2d\x8b\x74\x3b\x72\xbd\xba\xb0\x86\xf2\x10\xdd\xfb\x6f\x19\x70\x4d\x28\xbc\x53\xb0\x18\x26\xdc\x29\xd8\x4d\xaa\x74\x89\x17\x0f\x49\x97\xf8\x26\x90\x78\xe9\x60\x35\xa9\x8c\x35\x09\xe1\x09\x19\xa7\xdd\x3c\x6a\x10\x68\x4d\x72\xdd\xde\x5d\x0d\x03\x6d\x25\xaf\x2f\x98\xe8\xac\x1e\xa7\xe4\x98\x5e\xa7\xcd\xb2\x02\x9b\x1c\x11\x79\x57\xcc\x56\x96\xe4\xe8\xa5\xd8\x69\x94\x7b\x75\x01\x9b\x59\x13\x0c\x3b\xc8\xe3\x35\x24\xad\x47\x66\x34\x10\x2d\x93\x4f\x30\x58\x89\x83\xa9\xe3\xa0\x3a\xeb\x69\x32\x07\xb6\x9a\x75\x1d\x11\x4a\x8f\x86\x44\x85\xd6\x6e\x12\x47\x4d\xfc\x6e\x62\x38\x70\xe2\x19\xaf\x07\x0a\x75\x98\x82\x59\x90\xa2\xf8\x88\x44\x46\x49\x37\x45\xf3\xc6\xc1\xf4\x7a\x01\x75\x33\x9a\xdb\x20\x17\x13\xc3\x41\xad\xcb\xbb\x90\xa5\xcf\x8a\xcf\xd0\x93\x9c\xeb\xf5\x00\xa5\xfa\x7c\xd0\xa3\x20\x45\x37\xf9\x9c\x50\x2b\xf2\x4f\x8c\x70\x75\x3b\x17\xd2\x05\x10\x23\xf9\x5e\xc7\x03\x8a\x9a\xa9\xd4\x65\xdd\xe0\x91\xef\xde\x51\xd7\x12\x1b\x34\xfe\xc5\x3d\xa8\x1d\x71\x11\x47\x6e\xd3\x80\x6c\x46\x85\x7a\xf8\x9b\x71\x76\x2d\x10\x04\x13\x2c\xcc\xd5\x48\xbc\x16\x39\x1b\x26\x8a\xae\x6e\xa3\xa2\xac\x59\xd5\x4d\x19\x51\x1d\xc0\xc0\xdc\xcd\xb9\xee\x85\x74\x75\xb0\x3c\xf8\xc2\xf1\xb2\x30\x57\x4d\xe2\x06\xf1\x9a\xbb\x53\xd4\x6d\xfe\x7d\xad\xab\x7a\xe4\xf5\xd8\x66\x0b\x14\x53\x9b\x46\x78\x10\xac\xe5\xdd\xf2\x10\x02\x81\x0c\x0b\xf4\x6b\x07\x3f\x8b\x29\x68\x44\xba\xe0\x5f\x47\xe0\x83\x0a\x5f\x3e\xc1\x10\x4e\xf8\x5a\x27\x0a\xad\x16\x9d\x58\x60\xb6\xbc\x1e\xd0\x9e\x24\x51\x22\xa0\x9e\xbe\x0f\xfa\x80\xfc\x5e\xf9\x12\x6a\xe0\x85\xda\xaa\x95\x53\x03\x4c\xca\x5e\xa7\xb0\x81\x54\xab\x3f\xe0\x7e\x6a\x7e\x00\xa7\x8b\xb8\x6d\x40\x61\x35\xf3\x88\xb0\x51\x5f\x78\x81\x40\xa0\x75\x0a\x86\x8d\x4b\xaf\x2f\x18\xb1\xa8\x44\x99\x1a\x02\x6c\xa8\x86\x81\x52\xae\x10\x1f\x02\x13\x05\x84\xe9\x10\x16\x90\x42\x43\x20\x01\x67\x7f\x02\xc3\x9c\xa7\x8d\x9c\xe3\x90\xdc\xa6\x3a\x50\xfc\x80\xd4\x91\x0d\xc4\x03\x6e\xaa\x59\x44\xc4\xc9\x88\xdb\x06\x8a\xb5\x22\xbf\x10\x17\xa6\x85\x87\x08\x7a\x14\xc5\x07\xe4\x70\x74\x31\xdb\xb0\x52\x36\xaa\x5f\x60\x2c\xcf\xab\x4b\x88\x03\x22\xf9\x90\x00\x82\x17\x3f\xf1\x1c\x73\x97\xb8\xf7\xa8\x8b\x42\x03\x53\x2e\x8a\x61\x58\x29\x17\x5e\xfe\x04\x3d\x5c\x9c\x2c\x24\x1a\xc4\xbd\x58\x30\xd4\xb6\x9a\xfd\x06\x80\x6a\xc2\x03\x4a\xd4\xf6\xee\xdf\xa1\x04\x19\x0d\x09\x52\x99\xb6\x61\xe0\x35\x8d\xca\xd0\xa9\x81\xc2\x6d\xd7\xac\x32\x27\xe1\xdf\xd7\x24\xdc\x03\x9d\x78\x62\x46\x21\x13\xd3\xee\x01\xb7\xce\x7b\x6d\xf3\x9a\x94\x60\xa6\xb0\xeb\x49\x22\xd6\xc0\x3b\x3f\xf0\x56\xed\xee\x11\x79\x44\xf8\x7b\xd4\xec\xd6\x91\x11\x90\x98\xd1\x87\xfa\x43\xe8\xc1\x8b\x96\x60\x61\x55\xb2\x6d\x0d\x85\x91\x84\x5e\x69\x8a\xae\x43\x1d\xf2\x3e\x24\xa5\x0c\xd5\x50\x51\xa8\xcf\x23\x56\x9e\xf5\x9a\x72\x5d\x47\x92\x40\x44\xe2\x74\x1f\x7e\x01\x77\xf4\x85\x9f\xd4\xd2\xae\x01\x81\x05\x2a\x12\x50\x03\xe5\xd4\x21\xfc\x54\x6e\x71\x53\x26\x0a\x95\x0d\xcf\xa7\x72\x3e\x22\x0a\x08\xaa\xe6\xc5\x01\x39\xd5\x7d\x68\x8d\x59\xc7\xac\x98\x72\x61\x6d\xed\x5d\xf3\x6d\x20\x8a\xe1\xdf\x39\x3d\x77\x58\x31\x3d\xb7\x41\x12\x5d\x33\x58\xd6\x59\x93\x29\xe3\x12\x92\xd7\xbc\x2d\x8e\xe0\x21\xc8\x6b\xcd\x09\x1b\x26\x19\xdc\x66\xde\x97\x19\x1d\x2a\x9f\xbd\x78\x29\xcc\xa7\x72\xe4\xd4\x00\xeb\xe8\x90\xe6\x18\x78\xdd\x92\xec\x47\x35\xf0\xb6\x6c\xcb\xc6\x01\xa2\xab\x95\xf1\x80\x60\xce\x4d\xd2\x54\x80\xc1\x73\x6c\xfe\x3d\xa3\xed\xdf\x2b\xda\x9a\x24\x03\x37\xab\xb7\xc6\x40\xde\xa7\x99\x37\x0c\x9c\x7d\x88\x8c\x06\x41\xf6\xef\x6b\xe5\x85\xe8\xb1\xb0\xe4\x21\xa9\x41\x48\x82\x0b\x3b\xb5\xdb\xae\x3e\x77\xde\xa3\xa5\x3e\x57\xb0\x82\x31\xbf\x43\x5c\x92\x94\x19\x56\x70\x42\xf1\x17\x93\xdd\xdb\xb0\x12\x76\x9a\x66\x4c\xa0\xc8\x10\x19\x92\x2a\x03\x02\x41\xc7\xe6\x1e\xe9\xbb\x35\xa2\x11\xfc\x39\x64\xfd\x09\x88\xf5\x7c\xb1\x14\x26\x32\x4b\xdb\x0d\xab\x2e\x8b\xd9\xdc\x41\x77\xb2\xe9\x09\xb1\x9f\xc3\x4b\x77\xf0\xee\x09\xef\x50\xc8\x99\xb2\x9d\xd7\x70\xd2\x73\xe8\x3d\x8e\xc4\x64\xdd\x10\x5f\x03\xa4\x4a\xd5\x13\xac\x01\xf5\x74\x37\xc3\x88\x58\x86\x11\xdc\x1e\x68\x0b\xad\x27\x21\x12\x84\x28\xc2\xa2\x78\xbf\x1a\x4e\x22\x49\x00\x22\x74\x54\x11\x1f\x35\xb0\xb8\xae\x89\xeb\x5a\xeb\x26\x00\x2f\xda\x91\x7d\x1e\x5d\x0b\xcd\x7e\x40\x55\xcc\x8c\xee\x5a\xd4\x22\x34\xb1\x74\x6d\x31\xaf\xbc\x19\xcb\xe6\x33\x0c\xa1\x06\x43\x6a\x4e\x60\xe4\x66\x32\x37\x47\xaa\xf0\x30\x75\xdc\x94\x16\xcc\x9e\xef\xb5\x78\x5a\x6d\x5e\x3d\x50\xcc\x4e\x98\xfc\x5b\xbd\x75\x51\x9e\x76\x33\x49\x42\xf6\x1b\x5e\xbc\x25\xfb\x79\x1e\x0f\x81\xf0\x07\xe0\x05\xaf\x0e\x3a\x08\xcc\x1d\x60\x71\xcc\xd0\x1f\x2c\x86\xec\x31\x01\x99\x25\xc3\x2c\x19\xc1\x06\xba\x4d\xb2\x06\x98\x2f\x87\xf4\xa2\x08\xc1\x50\xd7\xbc\xd4\xc8\xc2\x2f\x8a\x95\xa9\x91\x37\x0b\x28\x14\xa6\xc6\x8d\x47\x48\xf3\x27\x34\x6f\x88\xcb\x47\x86\x03\x64\x77\x01\x18\x93\x7b\x00\x8c\xc9\xbf\x23\x6c\x57\x0b\x13\x03\x6a\x00\xe7\x9f\x64\x07\xd5\x18\x90\x68\x26\x86\x1d\x19\xd9\x29\x4e\x14\x03\x92\x10\x24\x13\x46\x64\xb5\x8c\xe4\xdf\x0b\x29\xcb\xa3\xa3\x94\x5c\xf1\x07\x3b\x54\x18\x0f\x80\xed\x90\xfc\xfb\x49\x04\xb9\xc7\xeb\xfb\xab\x36\x2d\x71\x0c\x58\x82\xe4\x36\x2e\x8e\x92\x64\x1c\x19\x08\x2a\x1f\x45\x8d\x10\x19\x47\xf2\x0b\x8c\xf7\xd0\x09\x13\x23\xed\xe0\x52\xcc\x62\x64\xb2\xb2\xbf\x68\xec\x52\x63\x46\x9a\xef\x5f\x5f\x80\x8e\x92\xdb\x07\xbf\x70\x17\x84\x5a\xab\x0c\x73\x66\xd5\x6e\x89\x09\x84\x93\xdd\x66\x78\x92\x8e\xe6\x88\x4b\x0d\x5e\x40\x43\xa6\x4c\xcd\x88\x66\x65\x9c\xe8\x17\x68\x6b\xf4\x52\xa6\x03\x3a\xbc\x5f\xe0\x19\x22\x11\x30\x22\xda\x34\x29\xca\xaa\x46\x64\xf2\x56\xb7\x61\x31\xcd\x06\x1a\x06\xd3\x21\xb3\x43\xe4\x4d\x4f\xaa\xa5\x53\x23\x13\x6d\x6c\x2c\x89\xf4\xfd\x2b\xb0\xa3\x46\x66\xde\xd8\x38\x12\xa7\x54\x19\xdb\xab\x8b\xfe\xfd\x55\x5f\x98\x45\x41\x5e\xd5\x25\xae\x11\x42\xa4\x52\xa8\x6b\xe4\xed\x51\xb6\x4c\x44\x5e\x0e\xfe\x1a\x11\x2b\x21\x41\x38\xb2\x6a\x9c\xa2\x0d\x6a\x2c\x34\x58\x4a\x3a\x8f\xac\xe7\x53\x3d\x8b\x29\x78\x46\xdb\x2e\x62\xe1\xac\xc4\xf3\x23\x24\x51\x6b\x08\xb1\xac\x59\x0a\x53\xac\xe8\x23\xde\x18\x0b\x93\x2d\xbd\x2d\x0a\xb6\x85\xa9\x9a\x31\xb0\x72\x8c\xd7\x58\x38\x0d\x0d\x51\x49\x40\xc2\x13\x73\x7d\xaa\x11\x0b\x33\xeb\x30\xe2\x78\xdd\x78\x35\xa2\x2a\x0e\x32\xd9\x02\x22\xcd\xa0\xd5\x40\xaf\xba\xb8\x1e\x92\x69\xab\x3a\x0a\x23\xbc\xf9\xc1\x40\x37\x6e\x2c\xc9\x39\xb1\xd1\x71\x22\x18\x1a\x17\xd3\x1f\x50\x39\xeb\xfe\x80\xbe\x3f\xaf\x05\xae\x3c\x1f\x92\xa4\x22\x33\x7e\xe5\xac\xaf\x11\x57\x9e\x8f\xe2\x36\xc2\x46\x3d\x4b\x38\xef\xab\x77\x01\x9c\xf5\xa3\xb8\x0d\x34\x79\x67\x33\x90\xd5\x00\xe0\xfa\x4f\x17\x22\xa9\x11\x37\x4d\xe9\x0e\xb8\x1a\x51\x58\xd7\xd6\x86\x38\x18\x3a\x6b\xb4\x4d\xe9\x31\xf9\x4c\x8a\x94\x1e\x4d\x5d\x2c\xa7\x63\x52\xa0\x34\x69\x06\xc8\x22\xb9\xdd\xef\xa3\x7e\x85\x77\xe9\xa0\x56\x6e\x08\x61\x04\x1d\x5e\x26\x04\xba\xaa\xda\x67\x8d\x03\xe2\xae\x8e\xe1\xc8\xd4\x61\x69\xc8\x71\xe7\xc1\xdd\xfd\x00\x75\xfc\x4c\x6b\x53\xce\x2b\x9b\x4f\xa8\x83\x37\xb4\xe8\xf7\x83\x87\x5e\xf8\x91\x25\x2e\x1e\x0c\xec\x15\xf8\xac\x75\x6b\x22\x61\x71\x9a\x17\xef\x44\x52\xef\xf0\x12\x1d\xf4\xef\x6a\xbe\xb8\x6d\x6a\x98\xa8\x50\x59\x6f\x98\x95\x2e\xa7\xb5\xc9\x14\x86\xc5\x21\xb3\x45\xa4\x08\x68\x84\x22\x0b\x78\x78\x85\x28\x02\x4a\xbd\x8f\x14\x01\x9b\xfb\xc3\xe9\xd0\xdc\x1f\x88\x58\x32\x69\x84\x03\x3b\xbd\xfa\xbf\x39\x43\xcd\x00\xc1\xac\xc3\x3b\x71\xc9\x84\xfa\x00\xa6\xc9\x61\x22\xe7\x7d\x0b\xe6\x3f\x28\x8b\x6b\xfd\x22\x5e\x24\x39\x01\xbc\x64\x4a\x2f\x39\x4a\xd7\x54\x0b\x4a\x11\x95\xfe\x86\xb9\x09\xb2\x8b\x86\x89\x0e\xc9\x45\xca\x5c\xa8\xf1\x5a\x3b\xd9\x0f\x0e\xec\x23\x4f\x81\x38\x10\x8d\x5c\xc0\x81\x59\x03\x6f\x57\x68\x6e\xb3\x8e\x9b\xdb\x8b\x0a\x04\x21\xca\xe6\x66\x8b\x3d\x37\xca\x54\x58\xb0\xc0\xa5\x9c\xe3\xd5\x21\x70\xea\x03\x16\x76\xc8\xe1\xef\xe9\x2e\xaf\x96\xed\xe0\x2e\xb7\x25\x29\x3e\x94\xdc\xa4\x94\x45\xe4\x06\x0d\x1f\xb8\x74\x9f\x1b\x67\xa8\xa2\xbb\xf9\xb8\x5c\xce\x71\xaf\xfb\x8a\x6d\x35\x52\x50\x69\x26\x99\xb7\x50\xdc\x14\xa1\x26\x88\x97\xba\x81\xbd\xa6\x8d\x94\x3d\xd4\x5e\x0c\xd8\x0f\x78\x52\xe9\xb8\x4c\x1b\x63\x23\xdc\x23\x48\x59\xc2\x67\x62\xa9\x99\xea\x36\x1d\xd7\xd5\x1d\x50\xd2\x91\xc8\x9c\x28\x9e\x0a\x4d\x69\xa3\x76\xad\xdd\x91\x96\x21\x52\xdb\x21\x05\xe4\x12\x68\xbf\x26\x3a\xe4\x55\xcb\xa9\xa6\x65\x89\x14\xcb\x4b\x2b\x9d\xa8\xfa\x0d\xe8\x81\xcd\x63\xc0\x72\x1e\xb4\xfa\x89\xf9\x42\x12\x2b\x52\xe4\x16\x76\xbb\xc3\x52\x29\x4c\xc6\x41\x18\x34\xe4\xb2\x1b\x8a\xe2\x13\x44\xbc\x6d\xf8\x05\x9e\x44\xc9\x2f\x3c\x30\x57\x09\x53\x89\x62\x84\xf8\x70\x4a\xdc\x75\xda\x64\x69\xd9\x09\x65\x6f\x49\xbc\x12\xc1\x96\xe8\x94\x50\x19\xad\xbb\xcf\xb9\x6b\x54\x39\xb0\x26\x98\x01\xcd\xea\x12\xa2\x33\x9b\xdb\xcb\x0c\x68\x44\x65\x4a\x01\x46\x44\x5e\x30\xa8\x4b\x98\xf1\xec\xdf\x4d\x99\x1b\xcf\xa8\xca\xb4\xe9\xc8\xe8\x95\x58\x98\xd7\x40\xc3\x8e\xa7\x84\x82\x9a\x32\x8d\xbe\x26\xd3\xcc\xad\x28\xa0\x50\x91\x45\x01\x37\x35\xf1\x5e\x84\xea\x69\x16\xe6\x34\xc8\x92\x95\x96\x04\x96\xfc\x09\x6c\x81\xaf\x36\xe2\xd2\xd3\x4f\x4a\xc4\xd5\x04\xe9\x2c\xd8\x17\x95\x0a\x8f\x54\x31\x8b\xc4\xe8\x4e\x7b\x8b\x12\xe4\x33\x85\x7f\xd6\x54\xa9\x07\x35\x3f\x20\x33\x10\x83\x4b\xb5\xe1\x90\x14\x12\xe0\xc5\xd6\x45\x55\x35\xa1\xa4\xe2\x30\x7d\xc1\x1a\x38\x5e\xbf\x33\x34\xc0\x6b\x5b\x17\x01\x0a\x8d\x28\xba\xa8\xfa\x85\x35\x35\xea\x14\x32\x03\xa4\x46\x73\x8b\x40\x6a\x3c\x08\x4d\xa1\x8d\x4a\xfe\xf0\x1b\x38\x09\x4d\x1c\xad\x81\xab\xbb\xc7\x85\x39\x41\x89\xbb\xd7\xa3\x39\xd6\x14\xe8\x92\xee\x46\xa9\x69\xdd\x0d\x6a\x76\xd1\xc8\x2e\xbc\x29\x96\xbd\x4f\xb2\x72\x42\x59\x46\x1f\x3d\xa9\xd3\x54\x61\xcc\x74\x7a\x8c\x34\x46\x5f\xd3\xd2\x18\xbc\xa1\xdd\x06\xfa\xc4\x2a\x8b\xd9\x5d\x12\xf7\xfe\x60\x6d\x7e\x2d\x06\x2e\x47\xb0\x01\x2f\x75\xee\x3b\xff\x0e\x8a\x36\x7d\x0e\x7a\x68\xbd\xef\x58\x5d\xd9\x6b\xc5\xeb\xb8\x7c\x80\x26\x66\x7f\xdb\x5d\x93\x28\x06\xea\xb4\x49\x83\x65\x91\x34\xcb\x25\xf6\x79\x9b\x0d\x6e\x54\xcf\x0a\x65\x14\xb3\x19\xf1\xf2\x7d\x7b\xef\x0f\x42\x2d\xb4\xc0\xf7\x3d\xa4\xe7\x24\x5e\x46\x2a\x4d\x29\xc1\x17\x3e\xcc\x09\x70\xd9\xc2\x30\x23\x60\x82\x94\x2d\xf2\x09\xae\xf0\xea\x39\xf0\x02\x30\xdb\x36\x12\xa2\x2c\x87\x19\x20\x8a\xd4\xd8\x7c\x92\x60\x82\x8c\xaf\x0e\xe6\x1c\x95\x61\x53\x13\x2d\x90\xaf\xef\x41\x5e\x2f\x08\xb9\x47\x74\x06\x27\x5a\x1c\xa5\x0e\x24\x86\x50\xfa\x44\x85\x23\x7c\x98\xf8\x50\xf7\xb9\x19\xc9\x07\x8f\x6c\x43\x74\xdc\x53\x16\x96\x70\x9d\xce\x0d\x6d\xcd\x80\x85\x11\xed\x88\x49\x08\xa1\xb4\x03\x35\x4d\x69\xb4\x6c\x3e\xa9\x4e\x12\x82\x34\xbd\x34\xa5\xd1\xb2\x79\x0b\x31\x82\xd2\x5e\x8b\x34\xc5\xcf\xa2\xe4\xdb\x9a\x96\x38\x29\x09\x3a\x9d\x4c\x3b\x52\x7b\x8a\x93\x69\x33\xed\x5d\xd4\x80\xcd\xa0\xa7\x3c\x59\x94\xc8\x5a\xd3\xc5\x13\x5a\x1a\x40\xba\x10\x1f\x20\x11\x3c\x4d\xf1\x2f\xd9\x75\x91\x58\xd8\x50\xb2\x54\xba\x28\xfa\x58\xce\xb8\x29\x14\x78\xe5\x20\xef\x05\x33\x92\x3b\x01\x04\xa1\xed\x66\x78\x97\xf7\xf0\xcd\x59\xbb\x03\xec\x59\xc7\x19\x25\x04\x4c\xa6\xd7\x2e\xbf\x99\xf4\xa8\x21\x1e\x1e\xd0\xde\xb5\xcf\x9a\xa6\xf0\xf0\xb0\xf0\xa6\xdb\xf0\xf0\x7b\x47\x3d\x5c\x1a\xb7\x1b\xac\x69\xe6\x97\x0f\xf1\xf2\x93\xc8\xec\x9a\x37\xf4\x26\xab\x42\xe6\x15\xa2\x76\xd7\x64\xc6\x46\xda\xaf\x90\x91\xa8\xed\x70\x97\xbc\x3d\xe8\xe1\x33\xc3\x1c\xc8\x86\x74\x4c\x65\x98\xf7\x86\x35\x89\x1c\x80\xe6\xe0\x17\xf2\xf7\x57\x53\x1e\x76\xcd\x81\x33\x1c\x6a\x37\xbc\x5f\xd5\xee\xec\xd0\x0f\x20\x0e\x76\xb7\x79\xf8\x8b\xb7\x66\x94\x9d\x19\xba\x9c\xa0\xe6\x95\xcb\x23\xce\x96\x11\xa9\x38\x74\x3b\x41\xcd\x91\x82\x93\x18\x55\x8e\xc4\x94\xbf\xe8\x68\xbb\x4b\xf2\xc6\xe1\x07\x8b\x38\x34\x0f\x54\xae\x56\x29\x83\x9a\xa7\x34\x97\x74\x71\x48\xcd\x0c\x3f\x54\x99\x92\x9a\x99\xbc\x63\xf7\x49\x4e\xd8\xb7\x62\x8e\x99\xc9\xde\xf9\xf5\x80\x40\x6a\x08\xf8\x78\x1d\x58\x97\x69\x8f\xcb\x5e\xef\xb4\xaa\xff\xa9\xcd\xd0\x24\x2f\x0e\xec\x6d\x2a\xd0\x53\x33\x93\xb7\xed\x5f\xc9\x19\xcc\xc8\x43\x64\x1a\xd8\x65\x1d\xc9\x05\x37\x72\x8a\x33\x64\x46\x0b\x66\x63\xb2\x70\x0b\xc8\xdb\x90\x0b\x0f\xd3\xee\x07\xb8\x25\x74\x73\x9b\xae\x6b\x9d\x95\xb9\x30\x8a\x45\x3c\x33\x2f\x5b\x56\xf1\x83\x8b\x61\x03\x42\x55\x59\x33\x55\xa7\x95\x3e\x78\x61\xbf\x92\x8b\x4a\xb8\xce\x75\xc1\xa9\x99\x54\x12\xa6\xa0\xa8\xb0\x22\x44\x7f\x40\x39\xc3\x84\x59\xb1\x57\x64\x55\xc8\x34\x5e\xa9\x48\x4c\xcd\x8d\x64\x28\x4f\x50\x6e\x58\xd0\xe8\x17\x10\xb3\x21\x86\x93\xdb\x72\x4e\x09\x26\xe4\xa2\x58\x43\xc8\x6d\x61\xc6\x2f\x2c\x44\xa8\x0b\xa4\x55\x3b\x0c\x24\x77\x1e\x06\xc5\x0f\x1a\xbf\xd0\x82\x75\x90\x7e\xf4\x0b\x6b\xc9\x85\x08\xda\xa3\xb2\xb7\xec\x08\xec\x42\xc8\x66\x01\xbb\xe6\x2f\xc0\x13\xc4\xbc\xf3\x14\x4d\xca\x66\x9e\x80\x72\xcd\xe9\xf5\x3d\xc9\x50\x4a\x63\x1e\x08\x19\xad\xee\x90\xe5\x46\x05\x33\x6f\x6d\x72\x70\x6f\xa6\xa0\x61\xdb\x64\xde\xb9\xbc\x3a\x60\x32\xbc\x99\xc1\x6b\xb1\x13\x26\x4d\x6a\x49\x16\xb2\x37\xe4\x9d\xa7\xa4\x44\xb6\xbc\xe3\xbc\x90\xde\x9a\x61\xd4\xb2\x03\x35\x33\x3d\x23\x9b\x82\x90\x69\xad\xda\xba\x35\xef\x3c\x56\x05\x23\xaa\x36\x37\xb3\x14\xc4\xdc\x35\xef\x7f\x26\x62\xdb\x7c\x9e\x0f\x96\xef\x11\x04\x53\xb6\x28\x9b\xb4\x8e\x7c\xc0\xac\x16\xdd\x21\x85\x17\x49\xdb\x19\xb7\x85\xfa\x74\xc9\x27\x8e\x69\xa9\x18\x79\x5d\x19\x21\x01\x2f\x9f\xc0\x52\xf2\x07\xd8\x24\x3f\xd3\x8a\xf2\x49\x95\xb8\xba\xfb\x9d\x07\xaa\x30\x80\x1a\xcb\xcd\x5b\xea\x44\x34\x9a\x14\xfd\xbc\x6a\xe1\x99\xb2\xae\xb5\xce\x42\x01\x05\x0d\xc9\x6b\x99\x86\x2a\x0f\x49\x43\x95\xf5\xf8\x7c\x2d\xfa\x77\x97\xa0\x7f\x29\x66\x79\x4a\x22\x65\xf3\x9e\xbb\x11\xfd\x6f\x52\xa3\x5c\xe1\x23\x93\x25\x6a\x9a\xb9\xf0\x4d\x4d\x6e\xb8\x07\x92\x96\x90\x78\x13\x89\x02\x09\x86\x28\xab\x5d\xf9\x26\x5f\x37\x9f\xb8\xc1\x69\x24\x01\xe6\x87\x3b\xd2\x5f\x3c\x01\x3d\x0a\x2b\x0f\xb0\x62\x2e\xf0\xe0\xa8\x31\xe1\x3c\xe4\x0a\x46\x34\xe5\x10\x49\x84\xf9\xa1\xc2\x23\xe9\x2a\x3f\xc0\x8a\x04\x9b\xfc\x90\x13\x99\x94\x9e\x6b\xbe\xe0\xd3\x0d\x96\x28\x47\xb9\xe6\x87\x5b\x56\x67\x51\xd9\x20\xe7\x4a\x14\x29\xcb\xf3\x29\x2b\x6b\xe1\x85\x4e\x2a\x35\x52\xcb\x06\x62\xd4\xc9\x52\xb6\xd5\xa5\x1e\x2c\x3b\x90\xf4\xb6\x12\xd6\xda\xf8\x01\xfd\x2a\xc3\x9f\x60\xf5\x75\x00\x16\xde\x82\x61\xcf\x77\xe1\x2d\x18\xba\x23\xa5\x96\x80\x4d\x56\xdc\xc6\xc4\x5f\x43\xdc\x1c\xb3\xe9\x01\xcf\x26\xb1\xbf\x32\xe5\x95\xe6\xb4\x80\x12\x41\x51\x3a\x9a\x4a\xc4\x6a\xe9\xb4\x2b\x2c\x33\x6c\xd3\x66\x89\x3c\x27\x24\x0c\x97\x88\xd5\x31\x8c\x11\x8c\x41\x67\x5b\x89\xb4\xb7\xbb\xc7\x9b\x20\xf9\x01\x12\xbe\x3d\x89\xb4\x16\x43\x3d\xd0\x16\xa5\xba\x47\xb5\x50\x38\x11\x33\x2b\x09\x44\x2d\x16\x5e\x12\x10\x2b\xa2\x2f\xb4\x4c\x49\xcc\x2b\xbc\x42\xdd\x76\xa4\x82\xcc\x62\x5b\x0a\x0a\xaa\x04\xd7\x57\x87\x0f\xbc\xd2\x9a\x23\xaf\xee\xb4\x89\xa5\xe4\xb5\xd8\x43\x0f\x20\x50\x69\x97\x94\xbc\x88\x5a\x30\x64\xc2\xa8\x85\x61\xb6\x85\x03\xaa\x4a\xc6\xda\x8a\xdb\x94\x4c\xfe\xe4\x21\xa1\x17\x79\x65\x97\x6b\x50\xe2\x72\x81\x6b\xd0\x42\x46\x59\x86\x29\x89\xaa\xa5\x10\x68\xf1\xf8\x52\x40\xe4\x62\x60\xa5\x10\xcf\x5a\x19\xd8\xa5\x54\x69\xac\x96\xc2\x39\xb8\x0d\xc9\x55\xec\xad\x14\x4c\xa1\xb9\x7f\x48\x78\xd5\xbf\xf3\xb8\x97\x78\x56\xea\x62\x2e\x82\x19\xe9\x17\xc5\x48\xa1\xe4\x64\xe2\x43\x8e\xb0\x2e\x1f\xa9\xa5\x2e\x34\xbb\x83\x83\x73\x14\xda\x60\x89\x72\xde\x4c\x41\x92\x6f\x35\x6d\x35\xb0\x2f\xa3\x79\x0a\x52\xd1\x1a\x70\x69\x70\x78\x6d\xf5\x27\xa7\x50\x69\xa8\x2d\x20\xde\x58\x1a\x10\x26\x3b\x5b\xe1\x65\x59\xcd\x64\xb2\x3c\x84\x12\x3f\x4b\xa7\x76\x2b\x51\xbe\xf4\xb5\x68\x9a\x40\x5f\x2c\x5f\x58\x45\xf5\x1a\x73\xc7\xd2\x79\x7f\x82\x70\x86\xdc\x09\x9f\x8c\xa5\x2f\x20\x34\xc5\xce\x44\x69\x0f\x09\xd9\xc1\x1d\x4c\xa1\x2c\xa9\x9e\x41\x2d\xf0\x11\x5a\xd4\x2c\x83\x72\xb9\xc4\xba\x32\xa8\x5d\x44\x7f\x81\x72\x37\xde\x4f\x4c\x8d\x50\xfd\xcf\x5a\x70\x95\xa6\xfd\x1b\x65\x80\xa9\x98\x0b\x21\xc6\x4c\x77\xd0\xd7\xb2\x52\x25\xbc\x21\x07\x8e\x2d\x77\xb0\xaf\xdd\xe1\x07\x74\xff\xaa\xc7\x25\xb4\x49\xc1\x2e\x3b\xef\x6a\xd6\x10\x34\x07\x49\xc9\x2a\x4b\x68\x93\x42\x53\x76\x2e\xb6\x3b\x20\xcc\x6e\x43\x93\xf0\xba\xc0\xbc\x63\x17\x76\x59\x22\xda\xf0\x88\x64\x8c\x02\xf9\xe0\x65\x7b\x6e\x93\x2f\x9a\x93\x2e\xd7\xa5\x4e\xce\x72\x50\x0b\x90\x40\x51\x58\xa3\xd8\x9a\x45\x39\xc0\x3a\x25\xe4\x14\x04\xad\xb5\xe6\x1d\x08\x87\xa6\x85\xdb\x42\x7f\xe5\xe6\x31\x99\xeb\xa7\x59\x1e\x64\xef\x3e\x61\x78\x77\x58\x33\x35\x9c\x10\x18\xcc\xa7\x18\xd4\x56\xbd\x98\x27\xce\x24\x6f\x72\x1a\x99\xcc\xb7\x90\xa6\x6b\x8f\x64\xa1\x8d\xc9\x6b\x7f\x52\xad\x4f\x1e\x61\x10\x04\x7f\x01\xc3\x98\xb9\xf5\x89\x33\xca\x7c\xe8\x5c\x93\xf0\x90\xc8\xaa\x92\xb4\x5b\x2e\x32\xaa\xd7\x03\xb0\x0d\xef\xdb\x8b\xdb\xd4\x98\xe7\x9d\xf0\xd5\xcb\x0f\x61\xd0\x92\x5a\xb9\xb8\x07\x2c\x72\x5c\x90\xf9\x4d\xb1\x17\xe8\xc9\x7b\x84\x97\x7d\x2a\xb5\xbd\x16\x84\xc1\x59\x6e\x2a\x53\x5a\x0c\xc9\x4a\x61\xb9\x71\x4d\x89\xa7\x09\xe1\xd0\xc1\x58\x05\x05\x0c\x2d\x99\x15\xa4\x47\x44\xa3\x09\x31\x70\xcd\x10\x21\xcd\xf7\x75\xae\x42\x78\x0c\xde\x32\x90\x15\x7d\xf1\x57\x2d\x94\x15\x3d\xe7\x67\x2d\xbd\x20\x78\xb8\x52\x06\x09\x15\x77\x92\xc5\xac\x07\x48\xb0\x0c\x05\xb7\x64\x53\x35\xb5\x5a\x37\x28\xdf\x62\xb1\x15\x05\x73\x6c\xe6\xad\x1b\x88\xeb\xd5\x5e\x0b\x95\xf5\x00\x55\x1d\x25\xc7\xd5\x8d\x5e\x83\xaa\x36\x77\x48\xf2\x0b\x03\x23\xba\x03\x08\x44\xc3\x10\xd0\xfc\xde\xd4\x26\x8f\x17\xc3\xae\xb8\xd0\x42\x25\x18\x6a\x45\x05\x9c\xcd\x1d\xa2\xc2\x8d\x55\xdc\x1a\x70\x24\xb5\xfc\x93\x23\xa8\x06\x58\xfd\xc4\xb6\x2a\xee\xb6\x08\xd6\xda\x2b\x65\x4a\x43\xc3\x2b\xe2\xad\xa4\x57\x5c\x02\xba\x59\x65\xae\x81\xd2\x90\x10\x10\x79\x4f\x9a\x26\x18\xa9\xa3\x4b\xb5\xab\x2b\x88\x4d\x3b\xb8\xb2\x38\xb3\xb5\xf8\x1a\x51\x3c\xa6\xb9\x8b\x82\xa2\xd9\x02\x2a\x2e\xa8\x3d\x66\x43\xe5\x3e\xcd\x62\xdd\x1a\xea\x21\x07\x3f\xf0\x03\x9e\x72\xc9\x43\x30\x95\xa2\x1b\x86\x93\xc4\x68\x28\x2f\x2c\x9c\xd6\x25\x52\x02\x33\x0c\xc0\x83\x09\x21\xfd\xff\x8c\x7d\xc9\xd9\xf4\x2c\xcf\x6c\x2a\x5f\x08\x6d\x26\xc1\xe6\xcd\xc5\x63\xfe\x21\x9c\xcb\x55\x7a\xaa\x7c\x56\xff\xbd\x74\xb7\x0d\x02\x84\x28\x34\xf2\xc6\x38\xfd\xc3\xf6\xdf\xff\xa6\xa3\x37\x46\x65\x9e\x9f\xe9\x1f\x20\xd9\x74\xb8\x8f\x1a\xa4\xda\x3f\xe4\x30\x44\x75\xa5\xef\x95\xa4\xe7\x78\xa1\x6b\x28\xe1\xf9\x18\x28\x6d\xba\x3e\x34\xbc\x07\xe1\x26\xd1\x37\x18\x48\x6c\x90\x36\xda\xbb\x27\x37\x8f\x1a\x7a\xba\xa2\x5b\xc9\x80\x5b\x9c\xad\x43\xe3\x85\xba\x7d\xd3\x9e\x1e\x8d\x47\x8a\xce\xbd\xd1\xb8\x56\xd2\x25\x8c\xc6\x00\x73\xc9\x8d\xf1\x62\xdd\xbe\x99\x05\x69\xa5\xf5\x35\x76\x40\x37\x68\x8f\xc5\xd1\x72\x69\x4c\x04\x2f\x3a\xcd\x7d\x60\x98\x3a\x43\x46\x4f\x1e\xd4\x30\x89\x7e\xbd\x0f\x3a\xa2\x5a\xbc\xa9\x68\x46\xf5\x1d\x71\x74\x6c\x6b\x4f\x6c\xa7\x02\xc1\x3c\x0a\x74\xeb\xcb\xf9\x00\xba\xb5\x6e\x71\x74\x92\xa4\x1e\x98\x33\x47\x59\x71\xc7\x60\xb0\xb1\xfd\x2e\xc7\x8b\x76\xbb\x4d\x56\x83\x85\x31\x6c\x57\x18\x83\x73\x2f\xfe\x19\xdc\xdc\xfe\x1f\x57\x4c\xb3\x0f\xf4\x88\x3e\xc6\x06\x13\x62\x87\xb7\xee\xa0\x95\xed\xf3\x05\xdc\xe6\x3c\x6d\x70\x9b\x73\x38\xf2\x78\xe1\x72\xdf\xbc\x52\x01\x17\x5b\xb3\x63\xc2\x65\x51\x18\x9d\x83\x76\x03\x48\xe0\xa7\xc3\x7b\x04\x39\x7c\xf3\x17\x28\x89\xaf\xbb\xd7\xa0\x57\x9d\x52\xd9\x8d\x11\x27\xbf\xd0\xb4\x45\x9e\xd6\x6e\xe2\xe1\x1b\x1a\x26\xfc\xe8\x42\xb9\xe7\xc6\x60\x75\x3c\xa1\x9c\x31\x2b\x86\xa5\x61\x4c\x4c\xb4\x89\x82\xe6\x52\xd9\x4f\xc6\x80\xe2\x72\xf3\x52\x4e\x70\xf4\xa7\x43\xe2\x51\x9d\xc5\x63\x82\x39\x3c\x0d\x8b\x14\x49\x05\x31\x10\x70\x6c\xbd\xcb\x58\x04\x77\xdd\x3f\xe0\xb0\xfe\x7c\x10\x70\x76\xf1\xff\x24\x49\x43\x5a\xe4\x5f\x91\xb8\xc0\xae\x02\x6a\x83\xd9\xb5\x7d\x33\x1a\x3b\x4e\x4e\xcb\xc3\x9d\xfe\xec\x7e\x86\x4e\xc4\xbe\xa7\x03\xc5\xe4\x7e\x7f\xaa\x27\x34\x06\x33\xca\xf8\xdc\x65\x78\x85\xd2\x03\x8e\x81\x04\x32\xbe\x63\x0f\x86\x05\x2b\x9f\xe0\x18\x07\x62\x2d\x2d\xd9\x52\x45\x69\x5e\x85\x39\xd4\xe8\x77\x24\xd8\xf5\xaa\x1d\x98\xa2\xe2\x67\xac\x9a\x2e\x36\xe3\xe0\x91\xe0\xa3\x1b\x4a\x4d\xa5\xe5\x1c\x03\xf6\x52\x55\xd3\x19\xe3\xc5\xb6\xb3\x59\x9e\x9f\x84\x85\x16\x4b\xc0\xba\x9b\x10\xd4\x00\x94\xdd\xbc\x9d\x90\x6c\xb2\xda\x5f\x60\x30\x0c\xd8\x83\x06\x96\x75\xf9\xcd\x31\x4e\xd2\xec\x67\xee\x06\x0f\x8a\x06\x54\x43\xfc\x71\x66\x35\x6c\x7d\x72\x35\xbe\xa1\x4e\x5f\x6c\xda\x37\x7f\x01\xff\x38\xab\xf8\x06\xd4\x92\xdb\xe7\xfd\x9c\x27\xcd\xcb\x85\x8c\xad\x9f\x67\x68\x9f\x8d\x60\xae\xe4\x35\x31\xdf\x0d\x31\xf2\x79\x06\x05\x42\xcb\x83\xa9\xb3\x1d\xfd\x35\x60\x30\xb5\xcb\xd3\x60\xae\x48\x43\xfa\x41\x8f\x3a\xfb\x1c\x0f\x56\xfa\x30\x02\x1f\x0f\xfa\x34\x64\xa0\x05\xf5\xf3\x7f\x05\x8c\x11\x4d\x74\x99\x93\x36\x6e\x3c\x1d\xdf\x6b\x90\x4f\xe0\x59\x24\xa2\x34\x9b\x75\x17\xe3\x21\x5a\x76\x7b\xc8\x51\xe0\x53\xf0\x85\xb2\xd3\xe1\x78\x03\xe1\x1c\xf5\xd3\x3e\x14\xd4\x3e\x88\xa1\xd5\xfc\x08\x04\x54\x72\xb3\x17\x76\xb0\x6a\xbd\x0e\xf2\xf8\xe5\x06\x5a\xfa\xa1\xfe\xf7\xbf\xe6\xa8\xf6\xf8\x75\x4e\x99\xbf\x20\xfc\xa8\x7e\x03\x11\x28\x92\xc5\xc1\xc0\xde\xe1\x0f\x0e\x5c\x0e\x4d\xc2\x85\xb4\x52\x53\xcf\x40\x4c\xd3\xcf\x38\x12\x85\x98\x62\xa3\x90\x73\x07\x1b\x8b\xec\x48\xe8\xc4\x96\x35\x1e\xf4\x0c\x7f\xdb\x4f\x0b\x64\x9c\xa1\xe7\x40\xfa\x4b\x51\xc8\xa8\xdf\x30\x89\x1b\x48\x5e\x7e\xe6\xfe\xa9\xfe\x01\x39\x6a\x37\xf7\x80\x3d\x5f\x4d\x01\x82\x7e\xdd\x00\x43\x38\x7c\x03\x89\x92\x48\x43\x63\x28\x54\x7f\x34\x7f\x02\xdb\x9b\x07\xf9\x62\xd3\xfa\x99\x85\x17\x9a\x56\x9f\x78\x51\x98\xd6\xda\xdf\xa7\xf3\x94\x9e\x41\xa2\x36\x78\x64\x6a\x46\x91\x5c\x73\x56\x35\xa6\x17\x77\x56\xe3\xad\x48\xf3\xaf\x84\x6f\x40\xc3\xba\x7d\x9e\xc1\xeb\x3a\xd6\x03\x1a\x56\x5b\x7b\x03\xb0\xd4\xf1\x7b\xc1\x4c\x8c\xda\x4b\x51\x73\x33\xfa\x03\x70\x82\xa7\x84\x28\x54\x6a\xb6\x68\xbc\xbb\x8a\xdb\x83\x21\xbe\xbe\x54\x44\x23\x89\x7f\x72\xd3\x8e\xcc\x76\xa3\xcd\x1c\x2d\xe5\xaa\x9b\x83\x56\x4c\xa2\x3e\x12\x72\xea\x3c\x8d\xc6\x03\x6b\xb8\x09\xc4\x7a\x7a\xd6\x1b\x62\xd8\xfd\x3f\x15\xb2\x92\x71\x81\x6c\x37\xd3\x43\x84\xb5\xda\x9e\xdf\x91\xea\x58\x5d\x17\xa2\xe7\xaa\xf8\x8b\x01\xbb\x86\xbf\x80\x50\x14\x24\x88\x8e\xb4\x15\x9f\xf7\x93\x64\x8d\x81\x10\xd5\x8c\xd5\x99\x2c\x46\xff\x0f\x88\x48\xc1\xa4\x80\xe5\xda\x01\xee\x81\x10\x63\xe7\x8a\x09\x16\x66\xfb\xfc\x0f\x67\x7c\xdd\xef\x63\xe0\xe0\xe8\x7e\x3f\x37\x9b\x7f\x80\xb9\x49\x5a\xf1\x18\x88\xea\xb1\x62\x3d\x50\xa8\x4d\x05\x09\x46\x10\x7f\xea\x7c\x8c\xd8\xe0\xfa\xe0\x67\xe8\x61\x84\x01\x22\x78\xdd\xd7\xa2\x04\x27\xd9\x42\x10\x5e\x83\xf6\xfa\x0a\x96\x66\xb6\x42\x38\xa0\xc3\x55\x51\xe3\x11\xb4\x83\xab\xa0\xef\x88\x00\x48\x90\x09\x25\x90\x30\xc7\x86\xc4\x78\xd1\x68\xb5\x09\x3b\x66\x82\x04\xb5\x98\x25\x61\x3c\x0b\x93\x07\xb4\x70\x7f\x4c\x1c\x3d\x16\x62\x4c\x50\xee\x2e\x08\x3f\x2d\xf5\xe6\x81\x67\x91\x38\x49\xa2\xdb\xcb\xed\xe8\x17\x12\x23\x88\x04\xa4\x4d\xb4\x35\x2b\x16\x73\x10\x5a\x10\x27\x3e\xd5\x85\x2a\xb2\xf4\xf2\xf2\x1b\x4c\xae\xaf\x3e\x98\x49\xd1\x77\xb6\x80\x16\xd8\x07\x6c\xac\x3c\xf4\x45\xe6\xe2\xdd\xc0\x8b\x03\xe3\xfd\x47\xd4\xae\x04\x22\xee\x03\xda\x49\xaf\x05\x72\x2d\x16\x21\xbc\x40\x6a\x45\xeb\x64\x63\x87\xd8\x11\x88\x0e\x38\x09\x7e\xd6\x76\xa7\x02\xd5\x3b\x66\x87\xd4\xb1\xa8\xde\x39\xf3\x1a\x03\xd2\x1e\x3a\x46\x33\x98\xed\xc6\xda\xf7\x38\x72\x22\xd5\xc5\x41\x1d\x98\x10\x5d\x1c\xb8\x8b\x78\xd3\x1e\xc0\x8c\x96\x2b\x07\xc5\x82\xb7\x7d\x56\x50\xf6\x07\x10\xd6\x3e\x1e\x08\x7b\x87\x7b\x04\xcd\x5e\xdb\x17\xf6\xce\xe6\x3d\x93\x2a\x5c\xcb\x5e\xd6\x4b\x16\xbc\x0b\xb8\x05\x3a\x77\x4d\x30\xfb\x4d\x58\xf0\x9c\x74\x47\xd1\x5d\x39\x4e\x40\xf3\x9f\x5b\xa4\x34\xf7\x1e\x80\x0e\x77\xfb\x7c\x40\x2d\x9b\x57\xea\x4c\x5e\x70\xa7\x48\xf7\x1a\x7e\x86\x6c\xfb\x3c\x43\x72\x58\x9a\xc2\x6f\xd0\xea\xd5\x80\xdf\x60\xb7\xec\xbb\x92\xa1\x35\x4d\xf0\x1b\xf4\x25\x32\x00\x9b\x1d\x11\x1c\x50\xe0\xa2\x80\xfa\x5f\x4e\xa0\x6b\xc2\x57\xd3\xad\x2d\x7e\xad\x39\xa3\x17\xe2\xf0\x33\xef\xbd\x52\x40\x04\x33\xb6\xdb\xff\x29\x2e\xdc\xe8\x0c\x00\x2f\xce\x80\x26\x99\x71\xd2\x1f\x1c\x71\x43\xbf\xe0\x2d\x7b\x83\xb3\x2c\x46\xee\xdc\xa1\x9a\x02\x78\x0b\x38\x27\x43\x10\x85\x1b\xdf\xdd\x90\x2b\x9e\xe3\x9b\x14\x68\x0c\x70\x1e\xd8\x3c\xa6\x54\x08\x5b\x98\x3e\x1b\xb4\x55\x6a\x80\x71\x2c\xbe\x16\x07\x4a\xdc\x7c\x0e\xcd\x87\xd5\x87\xfd\x7f\xd6\x9d\xd2\x33\x87\x60\xde\x7d\xe8\x73\xe1\x13\xe5\xc9\x89\xd7\xb4\xbd\xb8\x3c\xac\xdb\x8f\x87\xb1\x12\xee\x02\x2e\x12\xce\x90\x10\x0f\xf4\xb5\x96\x4a\x70\x2f\xf0\x3d\x74\x02\x78\x37\xdb\x51\xe7\x0f\x37\x69\x0d\x6a\xa2\xe6\x4d\x51\x8f\x13\x3a\xe8\xd2\xdd\x40\x87\x4e\xef\xdf\x42\x4f\x06\xa1\x28\x67\xf4\x98\x1b\x59\x53\x0d\x12\x25\xfb\xae\x30\xa1\xe5\xb5\xcb\xeb\x44\xd2\x47\x65\xbd\x1d\x73\xe3\xf6\xd2\x65\x7a\x32\xcb\xb9\xaf\xe3\x13\x15\xf8\x86\x33\x53\x4c\xe2\xe0\xe9\x3e\x69\xd7\xd1\xda\x4d\xa8\x7d\xed\x7d\x3c\xe9\x1a\x29\x69\x3e\x19\x98\xec\x0b\xfd\x64\x91\x9b\x66\xaa\x0b\xd8\x6b\xfa\x19\xf1\x3b\x5a\x89\x09\xd7\x82\x6d\xba\x45\x62\xb4\x62\x12\x08\x78\x3c\x73\x85\x17\x4f\x6d\xbb\x59\xb1\x05\x3c\xee\x4a\x49\x25\xe4\x3a\x11\xba\x6c\x68\x3c\x6b\xd6\x48\xd2\xf3\x82\x72\x5e\x5d\x56\x6e\x53\x13\x59\xb3\xce\xab\x9e\x01\xd6\x3f\x0d\x52\x75\xb9\xfc\x43\xd2\xa8\x26\x1b\x30\x8e\x34\x37\x13\x71\x30\xce\x83\x35\x1b\xdd\xc0\x35\x86\x86\xfc\xdf\xe1\x67\x28\xd3\x97\x9f\xa9\x07\xf1\xea\x13\x3a\x4f\x37\x88\x78\xa2\xe1\xff\x79\x69\x5a\xa6\x80\x0a\x5a\x1d\x31\x93\xa9\x1e\x95\xb3\x78\x4c\x78\x2b\x28\x07\xf9\x98\x8d\xdc\xa2\x31\x31\xf5\xa3\x4e\xee\x49\xfd\xac\xbf\xef\x50\xee\x98\xc4\xce\xe4\x35\x9a\x45\xe6\x34\x17\x70\x9c\x3d\xc7\xa4\x41\x76\xee\xf3\xe5\x1e\xa9\xd0\xed\x6e\x82\xdc\xa5\x95\xa4\xab\xa7\xa3\xa6\x66\xcf\xac\xb5\x7a\xbe\xb0\xcf\xfd\x8c\x85\xf2\xb4\x0d\x1c\xd4\x5e\x79\x04\xc9\x7c\xd8\x35\x7d\x0f\xbc\x03\x46\x2e\xbd\x7a\x0c\x9e\xfd\xd2\x41\xcc\x17\x9e\xf6\x22\xcd\xf8\x0c\x5e\xd1\x75\x23\x9f\x41\x85\x91\x9f\x21\xa1\xff\xe6\xa3\x3d\x53\xd7\xea\x85\x86\xff\x81\x4b\xe6\x8f\xc9\xaa\xc5\x2a\x50\x31\x26\x42\x5e\x42\x49\x95\xc7\x7c\xd1\x6d\x2f\x52\x18\xcf\x80\x88\xf7\xc2\xa1\xd6\x8e\x63\xd5\x26\x02\x5e\x62\x5a\x8e\x50\xd5\xea\x39\x60\xc0\x8b\xa3\x9f\xe6\x44\x62\x5f\xef\xb8\x39\x28\x26\xfc\x02\x57\x56\xc7\xca\x9c\x17\x68\x12\x73\xbc\xf0\x36\x9c\x15\x74\x4e\xd2\xa8\xf7\xa9\x7c\xb5\xf3\xeb\x04\x76\xf5\xc5\x69\x2e\x1c\x8c\xe6\xa5\x35\xf8\x81\x48\x60\x58\xb3\x57\x16\xfe\x09\xdb\xe7\x39\xa7\xcd\x3f\x60\x7f\x58\x38\x2e\x92\xa4\x06\x5f\x60\xda\x8b\x8c\x07\x93\x4e\xa5\xbe\x6d\x4e\x20\x53\xbb\xff\x4c\xd6\x50\x76\xbe\x9a\xb9\x27\xab\xb8\x89\xf1\xdf\xff\x3e\xa9\x1d\x27\xc3\x55\x2c\x98\xf6\x89\xfb\xab\xff\x4f\xee\xd0\xa8\x77\xd2\x6c\x12\x78\x6b\x10\x32\x9d\x3b\x0b\x5d\xa8\x45\x82\x5d\x59\x3c\x26\xca\xfb\xd8\x09\x63\x26\xd4\x95\x16\x60\x12\xea\x5a\x5c\xb3\x5a\xa2\x53\x0f\xcf\x17\xeb\xf6\xe2\x79\x07\xd4\xfd\xcc\x02\xa0\x6c\x31\x73\x1d\x3b\x9e\xdd\xc1\xc1\x06\x35\xc8\xcc\xec\xa8\x31\x12\xa9\x3a\x7d\xd2\x84\x1b\xaa\x9d\xf4\xe6\xd9\xf9\x82\x68\x04\x52\x2d\x1e\xc3\x8b\x54\xa7\xd3\xa5\xcd\x13\xbe\xdb\x5e\xe9\x13\x24\xf9\xac\x66\x79\x20\xaf\xfc\x49\x56\xd1\x85\x73\x9e\xe0\xe6\x4f\x87\x50\x32\x9b\x19\x19\x4f\xed\xe0\xbc\x79\x25\xaf\xa8\x85\x17\xca\x56\x87\x86\x4c\x46\xc0\xa8\x66\xca\x98\x17\xc4\x8c\xbb\xbc\x30\xcd\xba\xa4\xcc\x8b\x97\x60\x8b\xdb\x17\xeb\x76\x25\xbd\x1f\x13\x8e\xab\x4e\xbf\x34\x99\x1d\xd2\xf9\x97\x27\xb2\x43\xae\x4f\x8b\x0f\xe6\x5d\x0d\x42\x01\x5c\x2c\xdf\x5f\xac\xda\xed\x04\x38\xe1\xe9\x5a\x7c\xc6\x01\x89\xda\x15\x61\xde\xd4\xdf\x54\x37\xc0\x23\x4a\x68\x78\xde\x74\x9e\x34\xdc\xb8\x39\xd1\xc5\x6f\x5c\x6c\xc3\x8d\x32\x67\x9b\x9f\x1f\x10\xa1\x67\xa0\x53\x87\x26\xcd\x27\x6f\x62\xa2\x32\xd1\xa7\x10\xf6\x24\xfa\xb4\xbb\xd9\x7c\xc0\xb0\xc5\x4d\x40\x71\xf6\xe9\x22\x19\xd6\x1f\x10\xe3\x78\x9b\x3e\xb4\xcf\x0b\x64\x2f\xa4\xf1\xb1\x5f\xc8\xfa\x61\x2a\xb5\x0b\x17\xe3\xaa\x6d\xc3\x5b\x3f\xac\xbe\x68\x5a\xd0\x03\x1b\xd9\xad\x5f\x8e\xa2\xeb\x87\x1c\x85\x7f\xe0\xf2\x6f\x7a\xa6\xe8\x88\x3f\x79\xc5\x2d\x84\x65\x0f\xa7\x20\x5b\x50\x23\x3b\x1e\x75\xfd\x4e\x34\xef\x11\x31\x3a\xde\xcf\x2f\x00\xb7\x1b\xf4\x82\x5a\xb9\xc8\x2c\xba\x36\xaa\x64\xc5\x6d\x6b\xa3\xa5\xd5\x5f\x6c\x05\x53\xa0\x1e\x53\xef\xac\x13\x60\xa5\x9b\x84\xce\xb1\xb5\x51\x7a\x76\x77\x42\x85\xa1\xbf\xc0\x3e\xaf\x6e\x12\xf0\x62\x9a\x06\x38\x1e\x9a\xa6\x82\x65\x92\xb8\x5e\x05\x24\x69\xe1\x17\x3c\x73\x4b\xf5\x33\xf7\xa8\xfa\x47\x18\x91\x83\xe1\x17\xc2\x88\x8a\xa0\xc4\x2a\xa4\x47\x6b\x54\xb1\xe3\x24\xfe\x17\xdd\x6c\x7d\xdf\x5d\x95\xf6\x34\x81\xbc\x05\x2d\x71\xa9\xfe\x82\x27\x8c\x2e\xed\x0b\x5a\x62\x95\x76\x1f\xab\x26\xa0\xf7\x17\xe0\x76\xcf\x2a\x2b\xf8\xd8\x3c\xbc\x2a\x64\xdd\xe7\x19\x27\x8a\xd4\x2b\x0b\x50\x77\x38\x7b\xdd\x4a\x35\xb0\x99\x95\x99\x1e\x9d\x64\x7c\x01\xbc\x0e\xe7\xa3\x5b\x8d\x61\x6c\x7e\xe6\x31\x26\x1c\xb7\x50\x3f\xc7\x59\x7d\x56\xc7\xfe\x68\xfe\x1f\x25\x4f\x3c\xaa\xce\x8b\xbf\xe4\xc0\xea\x1c\xa6\x9f\x19\xe8\xa9\xa5\xeb\x29\x8a\x44\x63\x07\x83\x7b\x66\xe1\x4a\xe0\xd4\x08\x0b\x7a\x5a\x67\xa7\x5c\x83\x35\xb0\xf4\xff\x00\xef\x08\x22\x2d\xe8\x65\x8b\x4e\xee\x35\x92\x9d\xd5\x01\xf2\xe7\x0c\x67\xbb\x5b\x83\xa2\xcb\x83\x66\xc8\xf7\x67\x13\x0e\xa4\xfd\x5b\x6e\x82\x22\xde\x0c\x06\xe5\x6e\xf1\x28\x5f\xb8\xdb\x4b\xf3\xff\x94\xb7\xe6\x40\xe6\xe8\x29\x6e\x11\xa3\xf4\xa6\x44\xea\x72\xc7\xd6\xad\x44\xc7\x1e\x26\x2a\x51\x56\x4f\x0b\xd1\xb2\xf9\x11\x68\xd9\xe6\xab\x05\x70\x5c\xaa\x1b\xe4\x16\x71\x7b\x58\x37\xcb\x15\xba\xe3\x3a\x9b\xfb\x4a\x38\x3c\xdd\x03\x2a\x1d\xe8\x4c\x59\x0c\x00\x1f\x7e\xe6\x90\xd4\xc0\xc4\x42\x75\x3f\x63\x48\x12\xff\x0b\xd8\xb6\x19\x79\x2e\xd6\xee\x16\xba\x58\x2c\x70\xe3\x5b\xf6\x7a\xb1\xed\x56\xbc\x6b\x17\x7a\x18\x7e\x26\xde\xb6\xdc\x58\x2c\x08\xa7\x16\x11\x10\x55\x74\x4e\xae\xc4\xb6\xee\x12\xf9\x1e\x55\xcb\x72\x2c\x44\x48\x7d\xb6\xc7\x02\xf3\x9a\x19\x09\x5d\xa5\x45\x5a\x09\x5d\x2d\xf9\x80\x4c\x87\x33\x27\xae\x9d\xf0\xc2\xd3\xb2\x63\xa1\x86\xbf\xa0\x20\x19\xee\x83\x3b\x68\xf8\x0b\x4e\xbc\xb9\x6f\xe7\x96\xf9\x93\x33\xc2\xa2\x96\xd6\x09\x5e\x16\x0b\x79\xfb\xca\xb0\x0e\x4c\xab\xee\xb3\xeb\x80\x74\xf6\xc2\x43\x29\x5b\xc2\x0d\x50\x26\x7c\x5e\xc8\xd4\xd2\x1a\xf4\x91\xcc\xa5\x41\x22\x82\xaa\x08\xe1\xaf\x23\xf7\x8b\xbf\xc0\x90\x3c\xf1\x07\x8e\x39\xcb\xe7\x33\x89\xd6\xda\x9f\xe4\x36\x35\x00\x47\xda\x8f\x58\x48\xad\xeb\xf4\x07\xf1\xdf\xff\xc2\x1e\x6d\x8b\xd1\xd9\x56\x66\x2c\x82\x57\xcf\xd3\xc9\x40\x09\x37\x80\xbc\xfa\x66\x5f\x06\x55\x7d\xbe\xe7\x10\xb4\x8e\xf0\x45\x18\x4e\x20\xb9\x2e\x30\x8f\x4f\x55\x96\x16\x77\xad\x80\x75\x61\x0c\x16\x9d\xd0\xa3\xda\x90\xb7\x2e\xc0\x6d\x2f\x1c\x94\xa2\xce\xe1\xb0\xa0\x14\x2d\x46\x4b\x77\x01\x77\x8b\xa2\x9b\xe8\xc8\x43\xb8\x53\x32\xfa\x07\x30\xa7\x05\xe3\x0d\x29\xe2\x49\xbb\x79\xe0\x6c\x7e\x81\x9e\x62\x3e\x92\x6e\xac\xb4\x59\xe1\x06\x8d\xde\xd3\x4f\x16\x78\x52\x93\x88\xa1\x72\x79\x83\xf5\x24\x91\x5a\xfa\x87\x17\x25\x8b\xc6\x87\x7b\xcc\xf0\xe1\x49\xc9\xe2\x1f\x20\xec\x7c\x70\x3e\x28\x8f\xe6\x3d\x48\x77\x83\xe5\x3e\xa1\xac\x70\x96\xfc\xf5\x80\xfd\x84\x88\x76\xfa\x1b\x58\xad\xb4\x53\xef\xe9\x88\x93\xfd\x87\x61\xe8\xb2\xb5\x33\x9f\xa4\xf5\x4a\x3b\xa2\xaa\x54\xfe\x72\xec\x70\x9d\x75\xc8\xfa\x0e\x60\xe8\x79\xd9\x09\x0c\x97\x9f\x1f\xf6\x28\x9a\x36\xb2\x8f\x4e\xd2\x9d\x40\x4f\x0c\xb9\x23\x64\xbc\x98\x82\x0d\xfb\x58\xb2\x6a\x67\x4a\x48\x47\xa0\xee\xc8\x23\x6e\xf7\xc7\x7d\x83\x4b\xdd\x72\x8f\xdc\xd6\x9a\xc7\x7d\xc3\x62\x87\x5b\xbc\xf8\x82\xbb\x04\x47\xea\x4c\xd9\xe1\x4e\x6b\x8f\xe5\x3d\x1d\x0a\xdc\x65\x41\xe4\xa4\xe0\xf2\x0e\xa4\x68\x17\xfc\x9d\x48\xd1\xeb\xc0\xea\x91\xd6\x8d\xed\xac\x06\xe9\x78\xa6\x1d\x41\x5c\x0e\xb5\xdc\x0b\xbd\xac\xfd\x01\x71\x9a\x26\xa1\x70\x1b\xeb\x7d\x64\x19\x57\x2d\xe1\xb1\x57\xea\x70\xb4\xcf\x77\x64\x15\xb7\xd7\xf1\x4e\xa4\xa8\x4b\xf1\x9e\x8e\xae\xba\xd4\xee\x70\x28\xb0\x8f\xf1\x0e\x35\xab\xa3\x35\x77\x38\x18\xd8\x93\x64\x07\x92\x1c\xce\x74\xbb\x43\xcd\xea\x6c\xab\x3b\xd4\xac\xcd\xbe\x29\x3b\x02\xd2\xc3\x65\x22\x76\x38\xb2\x16\x4f\x73\xe3\xd2\x4b\xd8\xed\x2f\xb4\x9c\xdd\x34\x35\x08\x02\x09\xbf\xbd\x91\x66\xbf\x4f\x84\xd4\xff\x52\xc9\x7b\xec\x8d\x51\xfd\x92\xce\x3b\x52\x13\x59\xa9\xbf\xd3\xc7\xd5\xde\x37\x3b\x53\x3b\x3a\x79\xf4\x0e\xa5\x68\x77\x8c\xfd\x9e\x1e\x03\x3a\x48\x77\xe6\x72\x74\xb0\xcf\x8e\x52\x90\xbe\x36\xef\x80\xae\x2a\xe6\x3d\xf6\x54\x8a\x7e\x5a\xa0\xbb\x8b\xe6\x19\xd5\xca\xad\xfe\xd8\x07\x99\x51\x44\x32\x53\xa3\xb3\x6b\xec\x2f\xb0\xec\xd5\xbc\xc2\x8a\x38\x76\xab\xde\x07\x6f\xee\xde\x52\x2f\x90\x9c\xdd\xf3\x1a\x29\x1e\x35\xf1\xc1\x4d\xad\x41\xc1\x09\xb5\x7b\x43\x10\xe7\xb9\xc1\xc4\x75\xde\xd4\x2f\x4c\x9b\x2a\x65\x3c\x76\x96\xb4\x11\x84\xd9\x27\x8a\xa8\x59\x8a\x4c\x42\x1a\x2f\xfd\x24\xc0\xf6\x20\xe0\x30\x5a\x7f\x7e\x81\x56\x26\xd3\x3c\x79\xb1\xd7\xb1\xb2\x43\x69\x59\x85\x76\xf7\x49\xab\xab\x3e\x58\x3f\xfc\x2f\x1a\x17\xa5\xab\x89\x5c\xc4\xf4\x52\x14\xed\xeb\xe5\x4f\x57\x5e\xd9\x19\xda\x6e\x35\xe7\x0e\xe4\xe6\x40\x82\x7d\x67\x17\x1a\xc4\x4e\xe9\x69\x6e\x49\xe4\xb6\xf9\x8d\x57\x40\x3b\xac\x7c\xdf\x73\x54\x7e\xe1\x04\x0d\xee\x82\xea\x62\x11\x9d\xc8\xcb\xa3\x80\x0a\xb0\xba\x87\xa3\x91\x68\x2d\x26\xac\xd7\xd5\xa3\x04\x6c\x72\x44\xc8\xce\xa4\x36\x4e\x9a\xbd\x13\x05\xe9\x20\xdb\x11\x68\x5e\xa5\x4d\xd8\x4f\xf6\xa8\x0e\x58\xf0\xdb\x69\xb9\x77\xba\x54\x5a\x79\xbb\x5f\x04\x5a\x16\xd1\x2f\x4a\xe9\xaa\x7d\x3b\x76\x54\x57\x31\x0c\xda\x19\xfd\xe3\x04\xb8\xfb\xc5\x79\xf3\x0b\x69\x1a\xd0\x33\xb5\x3c\xe1\x17\x38\x2a\x4b\x50\xe0\x98\x2a\x85\xda\x7e\x3d\x78\x16\x49\x89\x6b\x34\x4d\x77\xc3\xb3\xc6\x70\x13\xa0\x0a\xb6\xec\x2f\x8c\xa9\xce\x79\xb8\xdf\x24\xd1\xff\x27\x49\x9a\x37\xd4\x42\xd9\xac\x9c\xdd\xe1\xf0\xf8\xdb\x7c\xf4\x3d\x6c\x42\xa3\x42\xb0\x8e\xd3\xdd\xee\xac\x55\x62\x6d\xec\xfe\xe4\x28\xff\x7d\x71\xb0\x16\x89\xd5\x5f\xc7\x8f\x4a\x89\xf0\x0f\xed\xbf\xff\x55\x27\x94\x3e\x00\x21\xec\xeb\x76\x50\x15\x65\x85\xee\x41\x4c\xf1\xe9\x82\x2c\x2b\x70\x75\x00\x22\x54\xdd\x6b\x0f\xb8\x14\xda\xc4\x72\xd0\x76\xea\xa8\x8d\x63\xe3\xd9\x53\xfc\xc5\x3b\x0c\xdf\x2b\x8f\x8d\x67\x8f\x30\xc0\xb1\x61\xb1\x4c\x34\x22\x66\x0c\x09\x8e\xc2\xd4\x88\x7e\x06\xde\xd3\xe9\x77\x14\x9e\xaf\x3a\xb0\x0f\xd4\x7b\x36\x4f\x1f\x0c\x7f\xb1\x96\xfa\x60\x4e\xe7\xb9\xfd\xe9\x2c\x3a\x0a\x4d\xdc\xc5\x1d\xf2\xb0\xd4\x79\x7b\xd4\x82\x3c\xb0\xa2\x30\x75\x41\x9e\xd6\x3a\xd8\xa1\x7f\x80\x34\xd2\x41\x71\xf0\x84\x97\xbe\xeb\x80\x6e\xc8\x49\xc5\x0e\x46\xb6\x14\xf7\xc0\x2b\x5f\xf8\x03\x30\x8b\xee\xd6\x07\x4e\xf8\xee\x75\xcb\x8c\x33\xe2\xf0\xa3\x61\xa3\xeb\x2a\x71\x30\x7d\xb3\x63\x65\x8e\x46\x12\x45\x32\xe2\x52\x0c\x3a\x0e\x96\x6e\x9e\xd3\x2f\xd0\xbd\x48\xb3\xc2\x74\xcd\xae\x32\x70\x40\xb7\xf4\xe1\xce\x0e\x09\x6b\x9a\x19\x85\xe2\x14\x5e\x07\xed\x9c\x66\x36\xe8\x9e\xaa\x24\xc9\x91\x07\xb8\xb9\xb5\x33\x93\x9a\x10\xed\xc1\x13\xbc\xb9\x4b\x6c\x3a\x29\x45\x8e\x9e\x34\x9a\x06\x30\xa3\x74\x6e\xc7\xa0\x3d\x41\x17\x9c\x03\xda\xa5\xaa\xcb\xc6\x31\x10\x11\x64\x9a\x11\x84\x6d\xb5\xcc\xf1\x1e\xf9\xc5\x61\xe2\x07\x2b\x39\x3b\x05\xef\x81\x28\x6d\xd7\x66\x38\x00\x01\x86\xfd\x06\x0f\xc4\xa9\xd8\x74\x75\xa0\x08\x9e\x23\xe0\x8e\x41\x6e\x36\x73\xa4\x6e\x69\x99\xa6\x9b\x6f\xf8\x13\x04\xcf\x7a\x5a\x82\xd2\x4b\xf2\xed\x80\x76\xa9\x5a\xb7\x73\x04\x6e\x27\x12\x4e\x07\xea\x89\x38\x4b\xcb\x41\xed\x92\xa3\x03\x8e\x08\x3a\xef\x8b\x1d\x12\x67\x2c\x77\x7a\x60\xe6\xf4\x05\xc3\x4e\xac\x8b\x3c\xa8\x0f\x72\x4c\xfe\x01\xeb\x68\xb5\x24\x20\xae\xe8\x6e\xa1\x73\x18\xa2\x6a\x0e\xb8\xf2\x8a\x06\x44\x77\x3b\x04\xe8\x80\x42\xa9\x16\x3f\x33\x0e\xc3\x14\x00\x86\x78\x6d\xa0\x1e\xb2\x07\xdd\x01\xaf\x3d\x87\xb0\x1f\x2b\x48\x80\x7f\xc0\xbe\x96\x7e\xe9\x58\x94\xaf\xcb\x3f\xe0\xe4\x12\xee\x3e\x76\x0e\x49\x14\x31\xd9\x8d\xb5\x6e\xc7\xce\x0b\xb5\x57\x9b\x91\xd3\xd6\x69\x1d\x3b\x9d\x53\xbc\xda\x3b\xb1\xb2\x20\xe1\xb1\x83\xc9\x05\x95\x8f\x83\x4e\x97\x96\xa0\x50\xf0\xb8\x4a\xd6\x01\x05\x8f\xeb\xb5\x1d\xc4\x25\x82\x6b\x07\x4c\x93\x86\x21\xc7\xc1\x42\x8f\x7e\x1f\xb2\xc4\x9b\x20\x13\x3f\xfb\x7b\x26\x2d\xd1\xb6\x45\x68\x89\xdd\xd3\x8e\x84\x31\x66\xa6\x83\x87\xc8\x74\x0b\x30\xa1\x79\x9a\xce\xdf\x7f\xff\x6b\x5d\x90\xf3\x80\xa5\xd2\xa9\x0f\x0e\x18\x2a\x6d\x98\x3c\x4e\x08\x06\x41\xb5\x03\x86\xc7\x66\xdf\xa9\x03\x99\x9d\x6d\x03\x39\x4e\xf8\x39\x79\x57\x42\x79\x53\x9d\x43\xf8\x80\x9d\xd1\x26\x86\xe3\xe2\x9c\x89\xa2\x17\x06\xd5\x77\xcc\x7f\x39\x83\x2e\xde\xb6\xfc\x71\x0a\x09\xcd\x28\x34\x3f\xb6\xfd\x1e\xc8\xda\x1c\xb6\x80\x1f\x17\x6a\x06\x08\x02\x1d\x84\x48\xc2\x75\x07\xb3\x32\x3b\xb9\xc2\x71\x33\x9b\x84\x6e\x43\x07\x14\x35\xae\xd6\x73\xc0\xbf\xcd\xe5\x7d\x0e\xd6\x87\x73\x79\x9e\xe3\x66\x17\x9a\xa2\x27\xbb\xd0\xb2\x3e\x98\x12\xc3\x97\x87\xb7\x1f\x9f\x9b\x0f\xf3\x7e\xf8\x50\x7a\xa8\x22\xd3\x0e\x3f\x11\xc1\x1c\xb6\x81\x9c\xac\xc2\xa1\xca\xf8\xe3\xfc\x11\xa6\x6b\x4f\x9e\xb0\xcf\xb9\x1e\xca\xf9\xcb\x4e\x8a\x7e\xc8\xb9\xf3\x17\xcc\xfb\x23\x41\x74\xfe\x72\xa8\x53\x3f\x40\xa0\x6a\x53\x9e\x5b\x1e\x1b\x6a\x02\x99\x91\x6d\xfb\x3c\x37\x9e\x75\x3a\x5e\xcf\x8d\x11\xef\x6a\x91\x3e\x67\xd6\xf5\x9d\x1b\xa7\xdf\x1f\xd0\xe1\x46\x07\xf2\x09\x4d\x87\xeb\x4c\x9c\xc8\x56\xe3\xea\x23\x67\x61\x1a\x2c\xed\x99\xb3\xf0\x58\xd0\x69\x78\x66\x28\x84\x78\xf8\x84\xbf\x97\x83\x7e\xcf\x04\x36\x3a\xf3\x4f\xe4\x39\x0e\xab\x2c\xcf\x4a\x37\x1f\x3f\xa3\xb4\xb0\xae\xe9\x27\xb2\xcb\xfc\xea\xe7\x03\x9e\x5e\x3a\x71\x4f\xa4\x97\x69\x92\x25\xe7\x8b\x5c\x66\xd7\xcd\xff\x6c\x4c\x71\xa9\x06\x1a\xe2\x39\x3c\x2f\xb4\x8a\x75\x3f\x53\x95\x20\xc6\x3e\x5b\xf6\xa8\x1e\x18\xbc\xe0\x42\x3f\x67\x23\x09\x9a\x86\x96\x53\xad\x1f\x10\xbd\x60\xdd\xf1\x99\xc9\xf6\xa6\x7f\x48\x2e\x54\x1f\xc8\x1e\xe3\x0a\x1d\x27\xcc\x64\x2a\x3c\x3e\xce\xce\x2b\xb1\xce\xec\x93\x11\xb5\xe6\x6b\xe8\x1e\xc2\x8a\xd4\xb3\x9f\x98\x17\x7f\x80\xda\xe9\xda\x6d\x27\xcc\x64\x2e\x1a\x72\xc2\x41\xcb\xe9\x4c\x4f\x44\xdc\x3a\xd3\xfc\x49\x5d\x85\xb9\x63\xd0\x2b\xb2\xfa\x03\xec\x1b\x9d\xf0\x27\x4c\x5c\xae\x86\x70\x26\x0e\x11\xf4\x39\x47\xce\xab\x06\x3d\xb8\x94\x7a\x06\xec\xf8\x7c\x00\xd4\x61\x4d\xdc\x89\xf8\x04\xa7\xa3\x3e\x83\x97\x7a\x9d\xd7\x67\xc6\x23\x98\x26\x66\x2d\xb6\x5e\xf6\x8c\xdc\xdc\xfe\x04\xb9\x1a\x75\xa4\x9f\x19\xb1\xf0\xe9\xe4\xc2\x46\x34\x51\x98\x47\x2f\x0c\xac\x56\xce\x60\x7e\x4e\xce\x9b\x16\xea\x05\x29\xd5\x55\xa7\x4e\xe6\xa4\xf9\xfe\xc0\x4d\xb4\xfc\x03\x84\xbb\x57\x76\x12\x45\x74\x77\x09\xf7\xe8\xea\x2e\x16\x9b\xd4\xd4\x23\x29\x8d\x4d\x9e\x27\x71\x8b\xb9\x8f\xea\x12\xa1\x8e\x73\x81\x66\x53\xb0\xa8\x42\xff\x93\x7d\xe8\x5c\x39\x20\xb7\x9e\x03\x72\xf3\x2c\xf6\xe5\x67\xb2\x92\x37\x14\x83\x19\x5c\x5d\xe9\x44\x30\x83\x23\x53\xce\x45\xde\xf2\x07\x10\x7e\xc2\xf5\xe7\xe2\xfd\x5b\x90\xe6\x64\xc0\xae\x35\xcd\xe7\x0e\x81\x6b\x22\x99\xe1\xd8\xec\x8f\xca\xbb\xcd\x0e\x8d\xe7\xce\xb8\x32\x91\x94\x59\x03\xbd\xd0\x7b\xb2\xb3\x7f\x78\x39\xc3\xf5\xbc\xce\x83\x28\xda\x4d\x02\x46\xb9\xe4\xd2\x79\x50\xe8\x9b\xf9\x10\xa5\xeb\x0a\xde\x67\xa6\xa4\xf1\x38\x8f\x89\xf2\x33\x1a\xe6\xc1\xe2\xa1\xfe\x60\x47\x0f\xfe\x1f\x98\x5a\x78\xf3\x3c\x90\x5e\xc3\x42\xe1\x00\x63\x98\xb9\x0f\x0e\xc1\xef\xbf\xe7\xab\x2d\x02\xe7\x09\x4c\x6e\x21\x73\xf2\xb8\x2d\x7e\x01\x87\x8c\xd7\x01\x79\x09\x5d\xe8\xf9\x84\xfe\x68\x38\xb3\xf4\x89\x50\x05\x67\x12\x38\x11\xa9\x60\x20\x76\xc2\x68\xe6\xf0\x8a\xf3\xe4\x0d\xcd\x43\x3a\x73\xa5\xd5\x65\xba\x7c\x09\xdb\x9d\x74\xf9\xb2\x32\xfb\xbc\x28\x9e\xcd\x5e\xc4\x62\x3e\x6c\x2f\xaa\x10\x3e\x3f\x20\xe9\xbc\x00\xf0\x99\x3e\x5f\x9e\x38\xf8\x7c\xb9\xf2\xca\x89\x7c\x34\xf6\xee\x3b\x5f\xfc\x35\xbb\x37\x3d\xf2\xd3\xd8\x7c\x7f\x42\xa7\x15\xbe\xe5\x9d\x30\xcd\x39\xc7\xf1\x79\xb3\x34\xb9\x7b\xb8\x51\x8a\x45\x98\xf9\x44\xfa\x43\xeb\x8f\x4e\xd8\xea\x6c\x65\x38\x6f\xe6\xe2\xd2\x10\xee\x94\x2a\x1a\x23\x12\xd8\x38\x57\xff\x79\x53\xaa\x18\xc4\x40\xe9\xe5\xb4\xb7\xe7\xcd\x0d\x50\x4c\xc2\x4d\x1a\xfd\xc5\x83\x41\xa8\x0b\x56\x08\x36\xea\x41\x8a\x1b\x07\x74\x9f\x4f\x6e\x08\x4d\x1b\xc3\x8c\x3d\x88\x87\x0a\x4f\x1f\x09\x0f\xd5\x4b\x3a\x95\xae\xdf\x8f\x44\x0d\xfd\xb0\x51\xef\x5f\xf5\x03\x94\x7d\x12\x96\x17\x03\x79\x6d\x29\xb8\x58\x09\xc3\x09\x57\x2e\x58\xd6\x7c\x5f\xba\x60\x59\x73\xfa\x81\xeb\x97\xe3\x76\x93\xe4\x49\x5d\x90\x2e\xfa\x54\x39\xc3\xca\x05\x3d\x9a\x33\x86\x5e\xcc\x88\xe8\x68\xe1\x0b\xa6\x34\xa7\x82\xb8\x36\x30\x94\xe4\xd7\x85\x6a\x6b\x9b\x55\xe4\x17\x62\x75\x3f\xe3\xde\x98\x8a\xd5\xff\x63\x2d\xb4\x75\xaf\x42\xb1\x2d\x1c\x7c\x15\x44\x0b\x37\xbf\xc0\xb3\x53\xb7\xb4\x0b\x86\xb0\xe2\x41\x15\x60\xb7\x9f\x3f\x00\x4f\xbb\xc7\x92\xd3\xe2\x1e\x1e\x42\x08\x7d\x81\x5a\x68\xc3\x49\x95\xae\x5a\x50\x16\x45\xb3\xf0\x22\xd0\xde\xfe\x56\x65\xf5\xaa\x1c\x91\x0e\xfb\xab\x42\xf8\xe8\x98\xb9\x60\x58\xfb\x70\x02\xb4\x6c\x0e\x36\xbc\x2a\xef\xd2\xd5\x2f\x00\x0c\x84\x1b\xe0\x2e\xfd\xd0\x8b\x5d\x6a\x5e\x02\x58\xb5\x82\xf5\xaa\xbc\x9f\xe8\x5a\x78\x35\x78\x7c\x6b\xd3\x5d\x28\x9b\xe6\xc4\x84\x17\x5c\xb6\x9c\xf6\xe4\xa2\xfb\x94\x93\xdc\x5c\xb4\x49\xb9\xac\xde\x05\x95\x96\xbd\x64\xae\x8e\x5d\x5a\xfc\x3f\x81\xa2\x07\xd5\x99\xb1\x6e\xe9\x39\x97\xc9\x3f\x24\xf7\x6a\x5e\x58\x3d\xf7\x33\x8a\x41\x23\x93\x70\xd6\x05\xef\x7e\x27\x41\xb8\x90\x7b\xc5\x99\x34\x2f\x16\xcd\xb0\xbd\xee\x42\xf2\x15\x3b\xbb\x5d\x23\x37\xa1\x86\x31\x80\x00\x7e\x6e\x11\x5a\xae\x6e\x9a\x70\xe2\x7b\x1a\x98\x8b\xa5\xb9\x03\x62\x4b\xb5\x17\x39\x06\x7d\x10\xd0\x8d\x7b\xe9\xa0\xa0\xb2\x74\xbb\x00\x1d\x5d\x6d\xee\x0a\xce\xb3\x08\x08\xe2\x01\x01\xc5\x8b\xea\x29\x1f\x8e\x17\x02\x51\x9d\xdc\xed\x7a\x71\xdc\xec\x66\x37\xb8\xe6\x5b\x05\x7b\x01\xc6\x55\xab\x97\x2e\x26\x1b\x74\x89\xbc\x0b\xb8\xee\xb3\x30\x93\x12\x58\xb7\xc6\x0b\x99\x53\x9c\x4c\xf0\x5a\x19\x39\xa2\x51\x31\x03\xb4\x6d\x50\xd7\xe2\xca\x69\x14\x69\x28\x13\xb8\xbc\xa0\xe3\x72\x3a\xc2\x6b\x11\x9d\xba\x81\x5c\x39\xbf\x30\xd9\xa7\xc6\x8d\x1a\xb8\xae\x31\x70\xbd\xe0\xad\x3a\x34\xe4\x42\xd5\x32\x3b\x6b\x5e\x3b\x5d\x5e\xa5\x46\xbb\x68\x38\x73\x85\xbb\x6b\xe7\x5d\x47\x5d\x52\xa3\xe5\xa2\x7a\x17\x2c\x67\x9f\x79\x80\x33\xbd\xdd\xb0\x2e\xfa\xce\xdb\xbf\xff\x3a\xb8\x56\x5a\x8b\x83\xa3\x92\x3e\xe4\x82\x65\xad\x79\x29\x0e\x5e\x24\x84\x99\x2f\x38\xcb\xbb\x42\xd3\xc5\x9c\xce\xf3\xd3\x27\xed\xa6\x82\x3a\xd7\x89\x22\x1c\x9e\xc9\x04\x53\x42\x73\x17\xcb\x97\x7d\xa4\x01\xd1\x94\x2e\xe8\x17\xb4\x56\x0e\xa6\xbb\x90\xf5\xd9\xb9\x7d\x2e\x06\x86\xda\x36\x7b\x9d\x3c\xda\x2c\xa3\x4f\x9c\x1a\x3e\xda\x90\xdc\xcf\xd9\x17\xae\x93\x33\xdb\xfd\x03\xf6\x95\x0f\x2e\xa0\xad\xaf\xd4\x07\xda\x32\x54\xbf\x90\xec\xcf\x71\xf9\xd7\xc5\x31\x88\xe6\x2b\xa3\x14\x34\x28\xa8\xae\x6c\x78\xbd\x08\xa5\xbc\xb6\x17\x3d\x86\x96\x3f\x48\x0c\xe0\x2e\xa9\xf1\xf4\xbc\xc0\x1e\xe8\xa4\x2e\xd7\xc5\x83\xc8\xe7\xcc\x4d\xa8\x2e\x65\xd6\x85\x70\xd0\x8f\xc4\xbb\xb9\x6f\xe2\x4f\xf1\xab\x17\x62\x45\x1d\xd6\x76\xdd\x54\x44\x87\x9b\xe3\xc2\x69\x4c\x70\x93\x72\x4a\x89\x0b\xd8\xab\x39\xd1\xd3\x45\xec\xe5\xa3\x0d\x0e\xfb\xe5\xf3\x3f\xd7\xcd\xff\x63\xc4\x5e\x78\x16\xe0\x75\x35\x9e\x2b\x53\x53\x7b\x16\x11\x5d\xea\xda\x98\xd7\x03\x1b\xa9\x45\x3a\x4a\x66\x18\xd1\x5e\x09\xc5\x74\x17\xb9\x1e\x96\xc6\xd4\x18\x1e\xea\x82\x2c\xce\x58\x25\xcd\xa7\xe9\x03\xdf\x49\xc3\x28\x38\x5d\x39\x13\xe5\x05\x0b\xa9\xc3\xec\x2f\x38\x61\x39\x1f\xd0\xf5\x40\x0a\x48\x74\xdd\xbf\x5c\xc4\xd0\x0f\x49\xe2\xd4\x0f\x48\x4b\xaa\x59\xbc\x7f\x3c\x5d\x97\x9e\x01\x79\x36\xb7\x08\xfb\x80\x86\x78\xc3\x3c\xea\x44\x96\x37\x4a\xa4\x59\xa5\x76\xc3\x33\xde\xf6\x86\x7b\xa3\x54\x51\x7b\x1b\xcf\x18\x13\x40\x54\xa7\xcb\xcc\x0d\x54\x67\x69\x7c\x33\xa9\xb5\x4e\xc1\x1b\x39\xac\xed\x10\x70\x6f\xb9\x3d\xdd\x23\x50\x9e\x50\xe1\x5d\x58\x6c\x4f\x33\x00\xf7\x28\xe7\x22\xb9\x4b\x1e\x5a\x9a\x33\x68\x0d\xed\x7d\x7d\x43\x6b\x68\x07\x94\x1b\xf9\x59\xb6\xea\xff\x71\x90\x4b\xe4\xdc\x05\x87\x9c\xa7\xa0\xf0\x50\x73\xfb\x00\x89\x3a\x56\xef\x72\x22\xab\x86\xdb\xc7\x08\x25\x6f\xee\x42\x46\xf6\x80\xa8\xb6\xd2\x0c\x31\xdf\xb5\x11\xd5\x0d\x14\x58\x6d\xa2\xbe\x53\x27\xe9\x49\x26\xec\x93\x60\xbe\x5f\xd8\x37\x8d\xc1\xee\x8a\x55\xd6\x29\x7b\xa7\x4a\xd2\x6c\x52\xc9\x78\x1a\x53\x25\x8d\x22\x01\x2a\xc7\x0f\x2c\xbc\x61\x5c\xb5\x6b\xde\xdd\x78\xc8\x6a\xbb\xde\xcc\x80\xed\xb8\xa5\xbb\x31\xcb\x8d\xba\x40\xc8\xa8\x7d\x70\x6f\x84\x8c\xb6\xcf\xff\x94\x68\x7e\x81\xb5\x6e\x6d\xeb\xba\xd3\x9a\x6a\x66\x85\xb5\xd4\xb7\xb7\x9b\x41\xa1\x4e\xc9\x7f\x77\xe2\x13\xf5\x81\xd2\x68\x46\x50\x37\x35\x8e\xc5\xcf\x3c\xf1\x74\xb0\xdf\x40\x96\xc3\x48\xe0\x86\x35\xd5\x41\x13\xf7\x48\x9a\xb4\xda\xf0\xc5\x0f\x17\xdc\xbc\x11\x26\xea\x3b\xc8\x3d\x78\x29\x91\xe2\xf4\x1e\xe4\x27\x8d\x6a\x70\x2d\xfc\x3f\x0c\x41\x1e\x35\xdc\xa1\x1c\x99\x72\x07\x7d\x26\x74\x07\xbd\x51\xfb\xc3\xce\xd3\x77\xd0\xb4\x2e\x5d\xc0\x1d\xd4\xfe\xeb\xee\x7f\xa3\x30\xad\x73\xcf\xde\xc8\xa8\x67\x1f\xd8\x7b\xbe\xe7\xbc\x43\x96\x6f\x68\x08\xed\xc3\x78\x03\xf7\x2d\x3b\x91\xdf\x80\x79\x56\xc7\xdd\x33\x27\xf6\x4f\x49\x4c\x6f\x04\x70\x5a\xad\x7f\xb3\x2c\x88\x77\xcc\xca\x39\x16\xfd\xb0\x5a\x1a\xf9\xde\x8b\xfb\xc3\x0d\xd0\xf4\x20\xcd\xee\x0d\xc0\xe6\xba\xb6\x37\x12\x87\xb8\x82\xd3\xbd\x48\x81\x26\x84\xf9\xa4\xed\x14\x72\xef\x80\x63\x16\x6b\xa8\xf1\x61\x95\xfc\xbd\x93\x15\x2d\xe7\xe0\x4a\x65\xc7\x96\x1b\x88\xb0\xda\x47\xe8\x86\x09\xf3\x23\xc9\x0f\xde\x2c\x05\x64\x6e\x98\x2c\x6d\x06\xba\x99\xfe\xd9\xee\x0a\x77\x42\x42\x8b\x85\x03\x95\xaf\xcc\x18\x30\x5a\x7e\x0e\x83\x63\x47\xa1\x12\xf7\x40\x31\x21\x65\xd9\x0d\x1f\xf5\x65\xf7\xe9\xfb\xa0\xf4\x16\x27\x1d\xc4\x52\x7a\x3e\x39\x4f\xd2\x4b\xdd\x67\x8e\x42\xe3\x3e\x39\x0a\xd1\xc0\x88\x4c\x17\xac\xbd\xa1\x7f\xb3\x81\xec\x46\xfa\x67\x7b\xb7\xde\x27\x4f\x3c\x41\xe7\x9b\x5e\xec\x36\xd4\xdf\xc8\x99\xe7\x5b\xc9\x9d\x90\xb1\xb8\x49\xea\x14\x35\xf5\x84\x8c\xde\x0e\xa9\xa1\x5b\x26\x9a\x17\xcc\xe2\x61\x11\x8c\x98\xc1\x59\x96\xcc\x54\x43\x1f\xf7\x91\x3c\x88\x98\xfc\xdc\xd4\xef\x0b\xe5\xb0\x4c\xf4\x85\x42\xc7\x66\xd9\x17\x5f\x6d\x1f\x3d\xe4\x7d\xf3\x0a\xf1\x79\x83\x54\x8b\x26\xaa\xaa\xbc\xda\xf0\x2a\x37\x3c\xba\x1f\x94\xa5\xf9\xf9\xff\x97\x1b\xec\xd5\x7b\x3f\xd8\x34\xa6\x88\xc9\x99\x5d\x2d\xf5\x7e\x92\x02\x91\x04\x7f\xae\xe6\x4c\x65\xf7\x03\xd1\xe5\x79\x7b\x78\x96\xff\x9b\xd8\xe7\xc7\xd4\x47\x55\xcf\x05\xc5\xde\x7e\x7a\x26\xdc\xd1\x18\x1e\xc4\x26\x96\xcf\x07\xb9\xd6\x53\x3f\xe0\x92\xdd\xfd\x01\x2f\x9c\xe1\x1f\xa8\xf0\x08\x7f\x91\x8b\x6b\xa2\x1e\xdc\xcb\xf5\x05\x2c\x9d\xc3\x55\xd8\x9f\x0d\x4a\x6f\xed\xb3\x07\x4e\xe5\xde\x14\x0f\x4a\x7f\xd8\x03\xf1\xd9\xa0\x01\xd1\x44\x3e\x0c\x2e\xb4\xa6\xfe\x61\x3a\x0e\xdf\xb4\x9e\x2d\x39\x54\xe3\xdc\xe8\xb6\xe1\x3e\x5e\x14\x54\xab\xd6\xe2\x01\xea\xe9\xc2\x65\x4f\x81\x4b\xa2\x70\xdd\xc3\x32\x64\x2e\x96\xfb\x00\xe5\x2c\xbb\x37\x3f\x25\x65\xb6\x9b\x4c\x22\xfc\x06\xec\x07\x9e\x18\xe4\xa5\x73\x34\xd4\xc3\xbc\x74\x96\xcb\x4f\xe1\xfd\x50\xe7\xe9\x83\x14\xc9\xcb\x9e\xb7\x4f\xc5\x54\x2e\x3f\x93\x47\xb5\x38\xb4\xd7\x3a\x9b\xe5\xc3\x3a\xb4\x2e\x10\xfe\x24\x16\x92\x18\x7c\x5e\x2c\x54\x9c\x66\xea\xa9\x39\x75\x9a\xfe\x54\x79\x4d\xff\x70\x63\xfd\xfe\xe4\xa7\xf0\x54\xee\x2a\x0d\xba\x91\x19\x44\x31\x70\x8f\x4b\x39\x3f\xb4\xac\x3a\x1e\xf1\x61\x19\x33\x6d\x9a\x87\x6e\xdd\xae\x83\xfb\xb0\x8c\x99\xbd\x0c\x1e\x98\x5a\x6d\x1f\x78\x12\xd6\x4c\xff\xf0\xee\x54\xab\xe2\x9f\x4e\xad\x5f\xf3\x0b\xb9\x94\x5a\x3a\x78\x89\xd9\xdb\xe2\x61\x49\xd8\xcd\x44\xe5\x52\xfa\x87\x94\x78\x1a\x67\xe7\xda\x6a\x1d\x52\xa3\x26\x41\xfe\x8c\x94\xf4\xfe\x81\xc0\x5c\x7a\x97\x07\x8e\x63\xd6\xdf\x3e\x70\x15\xb7\x1e\xe6\x19\xdc\x16\x3a\x75\x1f\xe6\x8f\xb3\xdb\xc2\x33\x2e\x7c\xe1\x16\x10\x19\xec\x61\xa0\x4e\x9a\xbd\x60\x9f\x80\x65\x5d\x50\xfd\x41\x04\x61\xd7\x61\xf4\xc0\x73\xfc\xb3\x05\x62\xc7\xb3\x26\x16\xb9\xde\x6c\xde\x7d\x18\xff\xe7\x24\xa2\x4f\x24\x3e\x14\x85\x2f\x52\xea\xf6\xcb\x7d\x60\x5b\xfd\x6c\x00\x20\x27\x5b\x46\x9f\x99\x8b\x2f\x92\x91\x0c\xce\x59\x4a\x9e\x89\x49\xf2\x1e\x43\x6a\xe2\xf5\xed\x81\x77\x50\x7f\x40\x8d\xaf\x94\x76\xcf\xa4\xb7\x67\x73\x17\x39\x0a\x13\x81\x0d\x21\xb0\xff\xac\x5c\x5b\x7d\x81\xa8\x43\xeb\xfd\x9e\xc5\xa5\xb5\xf8\x59\x39\x0c\x51\xb1\xa8\xf8\xb1\x40\x5a\xb9\x6f\xfd\x06\xfd\x05\xfc\xc2\x44\x3d\x4a\xef\x8b\x45\x26\xf6\xd6\x42\xd5\x8f\xf5\x59\x5e\xd6\x66\x73\x49\xd5\x67\x4f\xd1\xad\x4e\x90\xf0\xcd\x17\xf4\x67\x87\xe8\x16\x12\x78\xe0\x9c\x66\x15\xc1\xb3\x53\xdc\x58\x76\xb3\xec\xc7\xda\xfc\x05\x58\xc4\x22\x0e\x8a\xbb\xf5\xd9\x5a\x7b\x12\xa5\xb9\xa1\x11\xd5\xce\x18\xcf\x81\x1b\xac\x27\x0f\xbe\x67\xd6\x05\x3e\x47\x7f\x57\xd4\x4c\x96\x59\x30\xa4\x1d\x7a\x0e\xf2\x80\x89\x42\x5e\x0c\xeb\x11\x9e\x83\x4b\xde\xfd\x02\x6f\xd9\x42\x76\x0f\x82\x09\x6d\x76\x7d\x90\xe3\xed\x23\x83\x4e\xf2\xa9\xb8\xec\x44\x2c\xae\x77\x02\x63\x0b\xed\xbc\xf1\x40\x91\xe7\x2b\xe8\x73\xd2\x9f\x4b\xfa\x9b\xe7\xa4\x4e\x54\xf7\xe2\xe7\xe2\xdc\x8b\x04\xa8\xd5\x7c\x27\x7d\x90\x74\xe2\x33\x0d\x57\xf2\x83\x3f\x80\x50\xf3\x3c\x5e\x94\x59\x3e\x0a\xe0\x11\xe6\x9b\xfc\x03\x1d\x99\xfd\xf6\x1f\x18\x20\x1d\x12\xf4\x50\xe9\xe5\x1e\x61\x4f\xdc\xec\xee\xf1\xa4\x41\xd1\xf8\xe4\x86\xf2\xd1\x4c\x0c\x4c\x66\x3c\xfc\x40\x89\x65\xa7\x98\x07\x4a\xac\xcf\xb1\xfe\x90\x61\xfb\x9f\x94\x72\x0f\x8c\x8d\xf6\x1e\x7e\x1e\x32\x8e\xe8\x7d\xc8\x38\xfe\x7f\xfc\xf7\xbf\x70\xf2\xaa\x07\x88\xee\xe3\x35\xf1\x40\x3f\xe5\x4c\x0b\x0f\xcb\x6b\x38\xe0\xf3\x61\xf6\x09\xbb\x7a\x3c\x40\x78\x32\x52\xc4\x0f\xc6\xca\x29\x27\x9c\xf8\xfd\x48\xe3\xd4\x33\x69\x2a\x7a\x7e\x69\x52\xf2\xdb\xf8\xfd\xa0\x6d\xf9\xb7\x88\xf1\xfb\x81\x95\xff\xcd\x68\xfc\x00\xe8\xa6\x6c\x74\xf1\xfb\x71\xd5\xbb\x9e\x29\x15\x36\xbf\x80\x55\xff\xc7\x26\xf1\xdb\x48\x51\xe8\x19\x5a\xbe\x22\x0a\x60\xa7\xdc\x64\x47\x89\x1f\x0a\xb5\xf5\xe6\x67\xcc\x52\xd3\x10\xe0\xb7\xd6\x9b\x3a\x84\x4a\xab\x37\x91\x4c\xbb\xe5\xe7\x19\x04\xfd\x3b\x18\xe3\xc7\xaa\xb2\x3a\x04\xe2\x07\xff\xff\x29\x53\x51\xfc\x50\xff\x42\xa9\x32\xe3\x87\x5c\x6a\xba\x8f\xc4\xaf\x40\xe6\x7b\x92\xa0\x82\x1a\x9e\x44\xe6\x41\x5b\x9b\xba\x44\x36\x88\xde\x34\x07\xc0\x5d\xbd\x69\x8e\xe0\x16\xb7\xc9\x03\x26\x7e\x35\x27\x45\xeb\xc8\xa2\x6a\xe1\x59\xa8\xb9\x30\x22\x82\x99\xd0\x94\x40\x2b\x7e\xc4\x59\x4d\x4d\xb4\x1c\xa6\x86\xd5\xb2\x57\x91\x81\xbc\xbd\x53\x86\x96\xf8\x35\xee\x40\x2f\x16\xeb\xa6\xe9\x48\x8e\x5f\x4b\xf7\x3b\x7f\x72\xb0\x0d\x0d\xa5\xf1\x9e\xe4\x26\x78\x66\x77\x11\xde\xc1\x20\x5d\x2f\xb0\x8c\x6c\x98\x01\x3a\x85\x5d\xd1\x8a\xa3\xae\xac\xe2\xa4\xe3\x07\xe3\x61\xef\xfa\x7f\x64\x0b\x1a\x3a\xac\x87\x53\xb5\x89\xe3\x87\xf4\x0a\x53\x25\x79\xe3\x87\xec\x61\xd5\xfb\x62\xe4\x6c\xfa\x8b\x9b\x5f\xb8\x13\xea\x85\xb4\x20\xb0\x0f\x36\xff\xcf\x54\xb7\xd2\x1a\xbe\x82\x80\x2d\xf8\x0b\x58\x62\x87\x9f\x51\x66\x6b\xd3\xc4\xb0\x3c\xd9\xe7\x99\x02\xd6\x33\xc5\x72\x65\xe1\x81\x4f\xee\x76\x75\x39\xb3\x4b\xcd\x14\xaa\xd7\xff\x3c\xb5\xf0\x57\x1f\x66\x22\xe6\x3b\x58\x22\x09\x7e\x5d\xaa\x7c\x1a\xbf\x45\x96\x29\x7e\x81\x76\xd9\xee\x1f\x78\x62\x17\x7f\x42\xa6\xf2\x30\x80\x34\x56\xff\xfc\x00\x99\xf3\x69\x82\x57\x88\xe2\x17\x1e\x36\x21\x26\xdb\xa9\xfe\xec\xfe\x01\x41\x8c\xd5\xcf\x38\x08\x3e\xff\x23\x5e\xf5\xf3\x3f\xf6\x46\xd7\xea\x42\xfb\xd3\xcd\x93\x47\xca\x08\x4d\x14\xd4\x41\xf3\xe7\x1d\x4a\xd4\xd0\xc5\x62\x47\xce\x8c\xbf\xa0\xa2\xc4\x73\x07\x03\xa0\x0a\x8a\xc5\x0f\xae\x57\xca\xc2\x1f\x3f\xa4\x2c\xd8\xe6\x5f\x92\xcb\xc5\xef\x60\x3a\x7b\xf5\x76\x4e\x84\x4f\x68\x40\x27\xc5\x83\x77\x2e\xfc\xd1\x65\x8d\x8e\x1f\xdc\xcb\x65\x33\x8d\xdf\xc5\x01\x7a\x93\x5d\x93\xf4\xfb\x0d\x2c\x93\x77\x1d\xa3\xe8\xc2\x03\x82\xc7\x51\x37\x3f\xf3\xfc\xf7\x9e\xba\x73\xd5\xf4\x01\x82\xde\xe6\xcf\x02\x88\x27\xac\xb7\xcc\xc3\x72\x68\x7e\xde\x39\xc9\xa2\xe9\x61\x97\xff\x5e\xd8\x7e\x94\x71\xe2\xcf\x8d\xbe\x3a\x3a\x0f\xb7\x5f\xca\x92\xd0\x0f\xdc\x22\xe2\xd7\x2d\x4d\x3a\xdd\x9f\x4c\xbe\xd1\xf4\x03\x27\xc2\xcf\xc9\xaf\xfe\x82\xe3\x2a\x26\x0b\x7a\x3a\x9d\x81\x5b\xaa\x2c\xd4\xe7\xc6\x16\xfd\xff\xfe\x9e\x91\xff\x2e\x77\xb1\xa1\x6a\x54\x1f\x7e\x4e\x19\xfa\x6f\xe2\xb6\x42\xe7\xae\xcf\x0f\x74\x0f\x57\x8b\x38\xd2\xa4\xde\x8c\x8d\xf5\x98\x96\x47\x99\xda\x84\xe2\x37\xd8\x87\x96\x6f\x2b\xdc\x85\x9e\xba\xf7\x54\x0b\x45\x30\xc4\x56\x29\x8e\xfc\x05\xa2\xd4\x14\x58\x17\x5b\xe5\x71\x52\xfd\x02\xbd\x09\x45\x04\x5c\xaf\x37\xf9\xf7\xc4\x46\xb3\x86\x2e\xa9\xb1\x35\x08\x30\x49\xb8\xad\x11\x95\x0e\x7f\x91\x95\x4f\xc4\x01\x38\x7f\x64\x55\x8c\x0d\x41\x63\xb2\x57\xc5\xd6\x09\xa1\xbc\x7a\xac\xe4\xb9\xdc\x64\xe7\x75\x4b\x8c\xbd\xf5\xe4\x32\xcd\x15\x9c\xb1\xfb\xf0\x33\xd0\x78\x68\x66\x3a\x8f\xf3\xea\x1f\xe0\x09\xb5\xfc\x4c\xc6\xf6\xb8\x68\x1a\xa9\x6e\x91\xc7\x8f\xa7\x8e\x71\x64\xca\x1d\x19\x1b\xdc\xad\x7b\x88\xc8\xf7\x10\xac\x55\x67\xc3\x36\x48\xa3\x86\xc9\xeb\x7f\xf8\x7f\x54\x5e\x9b\xee\x80\x7e\x42\x1e\x35\xcb\x1b\x79\xd0\x83\x13\x2b\x92\x11\x14\xa6\xe0\xf6\xd8\x82\x90\xc5\xfb\x04\xe7\x59\x78\x2d\x27\x67\x5e\xb8\x69\x43\xf8\x55\x37\x3b\x4c\x1e\xa1\x1e\xe3\xe4\xad\xc6\x4d\xa2\x32\x50\x0f\x11\x3d\x33\x26\x4c\xcf\x54\x61\x48\xf0\x6f\xb0\x6d\xc8\xff\x35\xb6\xbc\x4a\x5b\x82\xbc\x27\x5c\x95\x86\x33\x36\x78\xaf\x74\x6f\x9c\x45\x79\x61\xfe\x42\xe5\x1f\x25\x98\x88\x6d\xe5\x52\x8a\xc1\x16\x11\x91\x17\x1f\xae\xc5\xd5\xbb\x7f\xcf\x79\x50\x13\xb0\x6e\xcc\x9f\xa9\xde\x31\x4c\xaf\x0d\x8f\xb7\xa9\xa9\xce\x3b\xae\xc5\x1c\xee\xb8\xca\x13\x10\x1b\xdc\x57\x96\x2e\xb9\xb1\x1d\x8c\x84\x5c\xa2\x92\x77\xd8\x29\xa2\x0e\xde\x17\xc7\x5f\x5c\xb8\x63\x83\xdb\xaf\x2a\xff\xc7\xf6\xde\x67\xa7\x34\x3d\xb1\xf1\xfe\x2a\xe8\xb9\xb1\xfc\xf8\xb2\x44\x3b\xe1\xb3\xe1\xee\x4f\x92\xe3\xff\xa9\x56\xb1\x88\x64\xd8\xf8\xb2\x70\x39\x49\x82\xa6\x00\x19\xc8\x97\x07\x08\x37\x92\xee\x75\xba\xa8\xeb\xf4\x86\xe0\x85\x78\xfa\x83\x8e\x3d\xea\x0f\xa8\x07\xf0\x2e\x87\xcb\x6e\x17\x02\xdc\x2e\x82\x4a\xdd\xce\xb6\x8b\xac\xd0\xfc\x06\x0f\x06\x13\xfd\x1e\x91\xad\x79\x57\x23\x51\x63\x37\xff\xde\xd4\x65\x6b\x5a\x98\x33\xdc\x5d\x22\x5b\x8e\x8a\x50\xc6\xc6\x0b\xf0\x72\x7b\xcc\xe5\xa7\x31\xbe\x17\xe2\x56\xcd\x8a\xac\xba\xe3\xdb\xd8\x86\xb2\x3b\xaa\xb7\x12\xdb\x43\x91\xed\x95\x84\x8f\x45\xb7\xe4\x42\xd4\x79\xf7\x41\xf3\x90\x02\xbf\x8f\xe4\x0f\x3e\x24\x60\x93\x50\x86\x8b\x28\x3f\xca\x31\x6d\xe1\xf2\x1e\xc8\x55\xd1\x54\x51\x7e\xc4\x8f\x9a\xc4\xf2\xc3\x99\xbf\xf4\xc2\x86\x39\xd3\x42\x17\x7a\xc2\x4a\x13\x1a\x65\x4b\x31\xe2\x37\xa8\xc0\x11\xd6\x29\x5b\x2e\x94\xdf\xc0\xa8\x24\x05\xca\x46\x9d\x5d\xf8\x8b\x87\x4d\x88\x2a\xa6\x81\x91\x9a\x2f\x0a\x32\x04\x2a\xec\x23\x0a\xca\xce\x28\x4d\x79\x14\x66\x7d\x51\x0a\xcd\x28\x28\xdd\xad\xac\xfd\x51\xe0\xc8\xa0\x42\xad\x51\xf2\x56\xa9\x2b\x49\xc1\xad\x52\xe5\x3c\xa3\xe0\x56\xa9\xe0\xaa\x28\x70\x64\x98\x52\xb8\x44\x41\x9e\x18\xe5\x62\x88\x52\x11\x29\x2c\x6e\x2c\xcc\xbe\xad\xa0\xb2\x28\x35\x39\xda\x5f\x20\xbb\x5f\x75\x97\x10\xe9\x5e\x2c\x54\x9e\x51\x82\xa9\x28\x8d\x90\x40\x27\x61\x61\x36\xed\x9f\x17\x87\x05\x0f\xa5\x3c\x8b\xc2\x9c\x83\x52\x9e\x45\x41\xfe\x6c\x15\xcd\x8b\xf2\xde\x52\xab\x4a\x86\x44\x69\x88\x54\x94\x68\x2b\x2f\x02\xe8\xe3\xe7\x67\x18\xc3\x3d\x4a\x66\x24\x94\x6a\x2c\x4a\x67\xe9\x35\x2d\x7e\xa7\x64\xd0\xc9\x56\x7a\xb2\xa0\xdf\x78\xd7\x56\xb5\xd9\xa2\xe0\x38\x57\x30\x56\x14\x18\x00\x96\x54\x5f\x51\xe0\x43\x3b\xcc\x3e\x9d\xd8\x59\x47\x5d\x61\xf6\x6b\x6d\xab\xd2\x93\x48\xcd\x74\x7f\x00\xe8\xf4\x01\x8b\x77\x4b\x5f\x17\x05\x06\x80\xea\xa5\x79\xf1\x40\xfb\x75\x7f\x40\xd0\x62\x06\x85\x67\x84\xbc\x09\xa3\x0c\xde\xcb\x8a\x5f\x58\xf0\xc7\xf2\x33\xa1\x95\x6e\x34\x25\x08\xd7\x74\x6d\x2a\x81\x94\xad\x9e\x59\x28\xfc\x55\x4e\x2d\x4a\xe4\xc6\xd3\xda\x04\xb1\xb5\x87\xf9\x82\x86\x5a\x3c\x2a\xa8\xfc\x67\xfc\xc5\x7f\x3b\x0a\x22\xab\x86\x47\x14\x44\xac\x26\x18\x99\x66\x54\x68\x30\x0a\xcc\x03\xaa\x7f\x15\x05\xe6\x01\x95\xe8\x8a\x32\x29\x1e\x25\x9f\xcb\x0b\x40\xfa\xf0\x0e\x42\xfc\xf7\xe6\x2b\x4d\x49\xe5\xbe\xf0\x42\x99\x04\x6e\x9e\xa3\xc5\x3e\x44\x43\xea\xee\xbd\x50\x0b\xfc\x6e\x76\x64\xd9\x15\xb9\x5b\x44\xa1\x9a\x5d\xf7\x91\xb2\xb3\x45\x35\xb0\x93\x48\xbf\x4f\x19\xde\xfd\x03\x8e\x21\xc1\x89\xc2\xf4\x7e\xf1\xf9\x21\x89\x16\x91\xc8\x3d\xad\x68\x83\x28\x07\x21\x8b\xc7\x7d\xf0\xc0\xd7\xc4\xc0\x5b\x62\x58\xc2\x1e\x54\xc9\x4c\xff\xc0\xea\x4a\xfe\x60\xe1\x03\xf7\xc0\x73\x43\x14\x40\x63\x5e\x15\xf9\x1e\xe5\xe4\x85\xd5\xf3\x46\xef\x57\xaf\x3e\x32\xcf\x0c\x4b\x68\x78\x36\x7c\xa6\x0d\x2a\xf3\x61\xc1\x93\x9e\x0d\xd3\x1f\x50\xd9\xa5\xdb\x48\x39\x79\x7c\xeb\x82\x53\x80\x39\x86\x07\xc1\x42\xd5\x9f\x67\xce\x82\x06\x81\x28\x6b\x5f\x56\x0a\xab\x50\x1b\x63\x17\xd4\x02\x0c\x33\xcb\x85\xea\x18\x02\xc0\x85\xa5\xfd\x8c\x88\xcb\xcd\x1e\xb4\x0e\xcc\xa7\x67\x85\x6f\x41\x15\xe9\xea\x1d\x77\xc3\x57\xfa\xf3\x3f\x3c\xc0\xcd\xf2\x0f\xc5\x84\x7b\x48\x88\x50\xfd\x03\xd8\xcb\xb3\x02\x88\x60\x95\x50\x01\x42\x18\xde\x33\x0f\x55\x11\x02\xed\xe5\xc9\xa0\x08\xb7\xc8\x3c\x9f\xa2\xf1\x41\x41\x43\x0b\x85\x87\xc2\x50\x2d\x54\x96\x99\xb6\x06\xb6\x26\x48\x10\x8c\xaf\x70\xb4\x1c\x9f\x17\x0e\x7e\xe1\x17\x78\xdf\xf5\x17\x1b\x4f\x26\x1d\xd0\x35\x71\xc4\xe7\x07\x30\x4c\xf5\x33\x27\xa2\xea\x99\x11\xf1\x53\xcf\x38\xd0\xdd\x25\x14\xd5\x4a\xf3\x1d\x75\xa3\xed\xea\xd3\xe0\xbb\xcb\xe4\x34\x10\xb5\xe4\x30\xf5\x05\x0a\x37\x5b\x8f\x5c\x91\xa5\x58\xe5\xb4\xa2\x16\xde\x8f\xc2\x3f\xf0\x44\x17\x8e\xae\x28\xfa\x31\x9a\xbb\x40\xe6\xf0\xe5\xff\x0f\xd8\x64\x96\x9e\xc9\xf2\x9f\x16\x21\x1a\xa6\x9f\x1f\x0c\x4a\x1f\xa4\x12\x40\x30\xba\x22\x22\x67\x33\xfa\xaa\x95\x1c\x26\xe0\x53\x51\x97\x59\x59\xd2\xa2\x56\x22\x80\xe1\x1f\x08\x43\x84\x11\x2b\x92\xd3\xcc\x9f\x80\x4a\x85\xae\x5b\x69\xbb\xa3\x56\x86\x1d\x6a\x58\x8d\x47\xba\x6e\x07\x15\xba\x6f\x0b\xb8\x0a\xd4\xa1\x94\xeb\x51\x1b\xcd\x1a\x9e\xa8\x4e\x53\x51\x94\xbf\x9c\x44\xb5\x93\x99\x84\x7b\x6a\xa7\x5a\x54\x42\xbc\x76\x30\x8f\xe4\x5b\xed\x3c\x7d\xbd\x96\xc8\xfb\x52\x3d\xd1\x83\x81\x8f\x1e\x33\x53\xbb\xd9\x30\x52\x11\x4f\xad\x34\xc4\x51\x07\x0f\x27\x13\x81\x00\xeb\x61\xf6\x19\xbc\x99\x0a\xbe\xd5\xd4\x7a\xeb\xfe\x51\x51\x00\x4e\xc9\x67\xa2\x06\x85\xae\x59\x94\x59\x83\x75\xe2\xd7\x00\x47\x7e\x9e\x61\x5f\xfa\x34\x00\x1a\xbb\xbf\x4f\x1a\xb5\x49\xe0\x03\xa0\x4c\xb3\x51\x03\x68\x4e\xb2\xa0\x06\x49\xd4\x15\xa7\xf2\x4c\x5f\x1e\xc4\x4c\x1a\x45\x03\xd3\xc7\x29\xd9\x66\x54\x1e\xeb\xd2\x7a\x57\x14\x78\x33\xd6\xaa\x0c\x87\xae\x7e\xa6\x04\x9b\xfe\x01\xd6\x02\x9d\xb8\x95\x15\xde\xe4\xf6\x14\x75\x25\x51\x7a\x23\x4f\x79\xe1\x82\xba\x08\xce\x25\x04\x6b\x6a\xd2\x05\x01\x2b\x4d\xf6\x3a\x1b\x2a\xe3\x64\x3e\xe2\x61\x11\x3c\x4d\x7f\xc1\xcd\xaa\x3b\x6e\xdd\x99\xd0\xdb\x1c\xb0\xd3\x10\x62\x79\xc0\xe4\xc0\x4a\x07\x18\x15\xc9\x80\x1d\xcf\x13\x15\xf9\x61\xac\x62\xad\x3b\xef\x4a\x9e\xde\x9d\xe2\xdc\x32\x63\xa7\x68\xf5\x74\x1d\x80\xa2\x82\x3c\x15\xba\xf3\xa1\xa3\xbc\xa2\xc6\x5a\x53\xd9\x93\xa8\xd4\x9d\xab\x8c\x49\xd4\x83\x12\xc0\x52\x05\xea\x89\xaa\x6c\x7b\x51\x0f\xf2\x89\x5f\x38\xd9\x84\x5f\xb8\x5e\x4e\x34\xe7\x1d\x04\x87\x16\x09\x27\x78\xbd\xfb\x19\x29\x8b\x74\x58\xd7\x33\xe7\x4e\xe3\x3c\xb9\xa7\xbd\x84\x27\x99\x5b\xb3\x7d\xc2\x2f\xdc\x9b\xe1\x64\xc8\xa5\xdf\xe7\xfe\x33\x2f\xa7\x52\xc3\x2b\x8a\x24\x31\x3f\x1f\x00\x04\x1c\x16\x5b\xd0\xe2\x37\x65\x2b\x8d\x7a\x21\xe8\xc2\x24\xb0\x18\xc5\x32\x4b\x30\xf1\x8b\x79\x9d\x95\xd1\xa6\x37\xc3\x95\xab\xa7\x3e\x10\xfb\x32\x3c\x0f\x30\xe3\xcb\x3d\x3e\xea\xcd\xfd\xe6\xed\x75\x23\x41\xa4\xb7\xf0\x9d\x89\x33\x35\x8a\x9b\x42\x42\x13\x79\xe7\x44\xfa\x05\x1e\xe7\x52\x43\xd4\x3b\xa9\xd4\x30\x90\xf5\x57\xb9\xed\xa2\xbe\x30\xa6\x2a\xa2\x36\xea\x4d\xa2\x45\x24\x2c\x0b\xc3\x3d\x00\xd5\xb4\x29\xbb\x65\xa5\xf1\xde\x33\xfb\xe4\x6e\x13\x3b\xc0\x3f\x73\x18\x0d\x3c\x64\x49\x69\x3a\x6a\xe2\x1c\xa9\x36\xea\xc3\xfb\x92\x19\x86\x0e\x9b\xca\x99\x13\x15\x59\x7f\x97\x47\xf5\x10\xde\x89\x21\x1a\x23\x52\xe4\x62\x13\xed\x97\x93\x3d\xf4\x03\xa3\xb4\xff\xe2\xc1\x10\xed\x97\xa3\x9e\xfa\x01\x2b\x21\xb0\xd7\xa0\x7c\xb1\xb6\xa7\xd1\x3d\x40\x3b\xb5\xa1\x24\xb1\x6d\x02\x8d\x91\xce\x53\x97\xed\xb6\xf1\x4a\xa8\x95\x6b\x8c\x68\xf9\x49\xac\xb5\x92\xe1\xd4\xa2\xa1\x30\x91\x82\xbe\x60\xfa\x3d\xaf\x6d\x23\xca\x91\x04\x6a\x85\x2c\x1c\x7a\x9e\xfc\x40\x54\x17\xee\x3b\x11\x55\x10\x3b\xdf\xdd\x23\x6f\x54\xe1\x16\x29\x2c\x36\x13\xc9\x4d\xb0\xdc\x24\xae\x23\x1e\x38\x75\x2d\x02\x35\xad\x22\x49\x87\xc4\x68\x63\x28\xb1\x27\xf2\xc5\x34\x55\x2e\xfb\xd1\xa0\x7a\x51\xa2\xb0\x68\xb4\xef\x4f\xcf\x0a\x62\x48\x94\xf2\x34\x1a\x1c\x21\x95\x8f\x34\x5a\xe3\x0d\xcc\x3d\xc2\x33\x72\x08\x1e\xb4\x34\xf7\x4b\x2c\xb7\x96\xf3\xea\x1f\x12\x51\x88\x97\x1a\xc5\x6e\x71\x27\xac\xaa\xa1\x6d\xd5\x1a\x39\x58\x60\xbf\x31\x4a\x44\xb9\xe2\xa2\x11\xf9\x6c\x92\xe5\x2d\x8d\x25\xd2\xcf\xb5\xce\xe5\x14\x19\x3d\x7b\xd5\xe4\x23\x20\x79\x78\xae\x52\x9b\xe2\x16\x11\xba\x66\xa6\x45\x7d\x07\x65\xf3\x8c\x86\x42\xbc\x73\xd3\xe9\xd1\xa0\x4c\xf1\x35\xbf\x75\xce\xa5\xfe\x1f\xa8\xe9\x22\x11\xd8\x46\x1e\x9b\x22\x19\x0e\x06\xe3\xf3\xdc\x90\xc9\xdd\xcf\x83\x43\x10\x43\x0d\x0e\xc1\xcf\x58\x4d\xc1\x81\x36\x72\x62\x35\xf5\x83\x11\x87\x9f\x37\x08\x29\xbc\xd1\xe1\x5c\xa9\x74\x0d\xd1\x08\xcd\xbc\x78\x91\x2b\x21\xa2\x82\xb7\x07\xf3\x20\x52\xee\x59\xa8\x36\x04\xaa\x28\xa9\x64\x34\xaa\x4f\x84\x2f\x1a\xec\x33\x6d\x9a\x49\x89\xac\x36\x6f\x55\xa6\xa6\x91\x82\xb1\xcd\xc9\x17\xd4\xe5\xc4\x4e\x1c\xfe\x00\xa7\xb4\xb0\x43\x9b\x29\xf0\x44\xf4\x62\x9f\xc2\x5e\x6d\xa5\x40\x11\x11\x2b\x19\x4c\x73\x4b\x07\x83\x4d\xa2\xbc\x2d\xca\x03\x5d\xcc\xda\x5a\x7c\xc3\xbd\x10\xc3\x78\x6f\x30\xfd\x8b\xca\x52\x46\x5b\x9c\x0b\x93\x01\x0b\xae\x79\x6e\x4f\x3a\x45\xc5\x9e\x73\x23\x3a\xa9\x95\xf1\xd0\x51\x42\xac\xa9\xe8\x41\x34\x62\xb1\xcd\xb2\x73\xcf\xfd\xe8\x1f\x70\x47\x98\xee\x34\x07\xa6\x71\x64\xee\x3e\x2f\xd9\xce\x63\x71\xf3\x0f\x64\xb4\x6a\xb2\xa0\xa1\xb5\xc7\x58\x63\x8e\x60\x6b\xe8\x1b\x74\x3b\xbe\x95\xb6\x44\x67\xba\xe2\x35\x82\x31\x15\x59\x8c\x76\x64\xaf\x22\x14\xe9\xf7\xe6\xb6\xfd\xe9\xb2\xd4\x10\xe8\x5c\x2c\xcf\x19\xe7\xac\x4c\x65\xd1\x4e\x8e\x5b\x77\xa3\x76\xe6\xb8\xfd\x03\xf6\x97\x70\x53\x03\x90\x72\x94\x5f\xb4\x13\xbb\x47\x30\xa8\x5d\x3f\xbe\xa0\x2f\x00\x94\x8a\xbd\xa3\x1a\xcc\x41\xca\x2d\x17\x0d\xe6\x9f\x69\x77\x9c\x76\x91\xd9\x37\x7f\xc1\xc3\x50\x17\xb2\x06\xed\x4d\xb1\x2f\x54\x83\xfd\x47\x25\x54\xa2\xd1\x65\x72\x7a\x8b\x5e\xb9\x18\x7a\x03\x06\x21\x25\x50\x8b\x76\x33\x64\x43\x03\x47\xe5\x2e\xe5\x4f\x8b\x76\x53\x5b\xa3\x7b\x65\x63\x20\x8b\xc7\x09\x8b\xd1\x30\xc2\x80\x93\x65\xf9\x99\x6f\x51\x75\x76\x18\x71\xa0\xd4\x57\xb1\xef\x54\xbb\x73\x71\xdd\x05\xf6\x8a\xe5\xca\x8d\xf5\xdb\x7c\x58\x22\x14\x66\xf8\x30\x4d\x95\x92\x2e\xa2\xed\x81\x21\xc2\xe2\x93\x2a\x26\x4b\x05\x62\x2f\xcb\xc2\x27\x19\x4e\x44\x3f\x54\xef\x34\xff\x40\x06\x30\x8f\x66\xa2\x3f\xed\xe8\xfe\x83\xc6\x52\xf2\xb4\xff\x30\x93\x12\x09\x1d\x75\xbb\x94\xc1\x27\x3a\xa0\x92\xd2\xe7\x44\x67\x6c\x8c\xdd\xb9\x3a\x92\xba\x84\x96\xa6\xc3\x4e\xa5\x5c\x36\xd1\x7f\x37\x9e\xf5\x3e\xa0\x92\xb5\x5e\x1d\x19\xfc\x8a\x9d\xb5\x3a\x02\x5d\x94\x14\x26\xfa\x46\x0a\x44\xf1\xc6\x98\x92\xe6\x16\xa8\xfe\x99\x6e\x01\x97\x39\xc9\x8b\x0e\x3b\x97\x6d\xa0\x7d\x43\x7d\x3e\x9d\x42\x7d\x23\x89\x7e\x7e\xa0\xcf\x17\xc9\xcc\xa4\xbc\x09\x20\x74\x56\xa1\xf5\xad\xaa\x17\xe6\x79\x5d\xfe\x81\x61\x72\x22\x1a\xe8\x6e\x6e\x82\x14\x1d\xa1\x32\xca\xcc\x1e\x1d\x95\xb6\xe2\xf3\x1c\x9c\x16\xb7\xc0\x9a\x24\x1a\xf5\x8b\xf6\xde\x17\x34\xaa\x92\x77\x03\x93\x7d\x20\xe1\xad\x5f\xe0\x4a\x69\x69\x0b\x6a\xfe\x49\xf8\xf7\xfa\x83\x67\x96\x9f\x51\x12\x42\x88\xa5\x43\xa5\x65\x51\xd1\x5f\xf0\x57\x7c\x38\xf4\x9a\xac\xa1\x79\x84\x3b\xa7\x0d\x27\xbd\xce\xff\xfe\xd7\x54\xa0\x21\x7a\xcd\x21\xf8\x07\x18\x0b\xc5\xdf\x1d\x79\x64\xaa\x67\xb1\x72\x04\xa6\x88\x72\x43\x57\xcd\xde\x72\xa5\xd4\x62\xa3\x7c\x73\x93\x28\xc8\xa0\x84\x2a\xd1\x61\x66\x0b\xcf\x62\xcb\x79\x57\x1f\x8d\xf2\xae\xb8\x85\x85\x2f\x34\xaa\xb6\xe3\x59\xd3\x0e\x43\x9c\x35\xc9\xbd\x31\x05\xaa\xff\xc7\x06\xd9\x4c\x73\x4a\x43\x8d\x12\x31\xc9\xb6\x76\xf7\x9e\x83\x12\x49\x1d\x6e\x0e\x66\xb6\x04\x9f\xd5\x3f\x20\x27\x6a\xf9\xd3\x39\xd4\x3b\x47\x6c\xee\xee\xbc\xed\x88\xc0\xce\x01\x6a\x59\x11\xd6\x13\xe6\x4c\x84\xf5\x28\xe8\x34\x3a\xc2\x7a\xac\x84\xee\x9d\x0a\x5f\xef\x27\x24\xca\x29\x76\xba\xeb\x28\x3d\xa6\xdc\x80\xd1\xc7\xc6\x17\xf4\x05\x6a\x8f\x29\x32\x36\xfa\xe0\x2a\x6a\x4d\x46\x87\x2a\x4b\x24\x02\x99\x1a\x14\xf6\x11\x78\x5f\x33\x38\xb8\x86\xfe\x1f\x75\xde\x4d\x32\xa2\xa3\xc3\x53\x02\x0d\x61\x6f\x9f\x06\xb0\x88\x9f\x11\x10\x28\x89\x8d\xe0\x16\x6b\x9d\x47\xa7\x06\x51\x89\x75\xa3\x47\xae\x99\x5a\x00\x4c\xb5\xed\xb4\xc3\x88\x18\x9f\xe7\xce\xe3\xc5\x1f\x80\x73\x8b\xbb\x08\xb8\x07\x8b\x44\xe8\x1c\xc3\x73\x48\xc7\x24\xa5\x29\x8d\xce\x14\x8e\x0a\x09\x89\x0e\xc3\xa1\x4d\xef\x9d\x8e\xb6\xca\x29\x1a\x1d\x86\xc2\x30\x23\x22\x51\x74\xb1\xc7\x5f\x9f\x98\x57\xef\x95\x09\xd6\xf1\x3a\x4c\xd4\xda\x09\x37\x70\x92\x04\xf7\x00\x37\x35\x2f\x24\x90\xb2\x4a\x6b\x47\x4f\xa0\xac\x33\xb4\x23\x53\x8f\x6d\x51\x1d\x55\x75\xc3\x5b\x61\x25\x89\x6a\x71\xd1\xbc\x65\xa9\x84\x1c\x89\xe1\x85\x58\x3c\x43\x4d\x34\xca\xea\x5a\x2f\xda\xf7\x5c\x3a\x8d\x12\xf1\x3d\x61\xee\xd9\x79\xd0\x77\xff\x80\x23\xcc\x13\x0d\x78\xaa\xf2\x68\xd1\x69\x57\xdc\x04\xfd\x3a\x32\x1e\xda\xed\xbd\x1f\xe0\x7f\xef\xa0\x83\x3d\x6a\x50\xb4\x33\x4e\x1f\x48\x07\x7b\x14\x89\x07\x6f\x0b\xc2\x92\x1d\x6e\xb9\xf1\xe9\x71\x41\x98\x8b\xe4\x83\xf8\xc7\x4b\x89\x5c\xd2\xf1\x69\x80\xb3\xa2\xa5\x3c\x80\xb0\x2d\xab\xcf\x3c\x23\xb5\x32\x08\xee\x09\x1f\x47\x27\xc7\xa0\x69\x3e\x73\xd6\x34\x28\xc4\x60\x77\x9f\x57\x27\xa1\xa8\x05\xe5\x49\xdf\x3d\x91\x04\x38\x1c\x9f\xff\x19\x48\xde\xdd\x05\x68\x16\xee\xec\x27\x9d\x3d\x8d\x0c\xa0\x58\x9c\x9b\xf7\x08\x4c\x99\xf1\x79\xae\x7c\x41\x44\xbe\x78\xb9\xa8\x1c\x5a\xf4\xab\x23\x59\x8b\xa6\xe5\xa2\xb9\xe2\xf3\x02\x5d\xbe\xdc\x22\xb6\xcc\xa7\x41\x94\xcc\x32\x83\x5f\x39\x08\xb7\xc8\x7b\xfe\xe7\x0d\xc0\x17\x81\xc0\x7e\x73\xe6\x05\x44\x3b\xd0\xf3\xf2\x20\x80\x9e\xc3\x0d\xdc\xc9\x3d\x9a\x48\x2a\x22\x37\xb3\x13\xcc\xa9\x0a\x87\x8f\xce\xba\x1d\xaa\xe6\x1e\x1d\x29\x0c\xe7\xf6\x69\x82\x47\xf3\xf8\x93\x5f\x77\x7f\x5e\xbc\x6f\xa7\xf1\xfe\x50\x5c\x9a\xe1\x91\x35\xc7\x16\xe3\xfe\x50\x98\x7d\x5e\xc0\xda\x7b\xcb\xc1\x21\xcb\x31\x02\x83\x0e\x57\x4a\x2a\x1a\x03\x21\x43\xf6\xe0\x1f\x3f\x6a\x3f\x74\xf3\x19\x74\xaa\xde\x3e\x5f\x90\x41\x87\x3f\xc9\x69\xea\xfa\x81\xce\xa3\x3a\xa7\x06\x7c\xa6\xed\x9f\x3c\x52\x71\x28\x32\x07\xe2\x8a\xec\x4c\x3e\x7e\x5c\xed\xe1\x4e\xc1\xb2\x62\x9f\xf1\x23\x87\x6a\x97\x8c\xc4\xcf\x12\xca\x63\x4b\xba\xfd\x03\x11\x8c\x3b\xdd\x72\xf2\xd4\xeb\x46\xb3\xdf\xf0\x1b\xc4\x24\xee\x16\xd1\x44\xf6\x71\x1e\x85\xb8\xaa\xfa\x07\xc8\x5d\x1d\x80\xa3\xf0\x9a\xef\x81\x20\x14\xbc\x3a\x9c\x68\x14\x9c\xc9\x3a\xcf\x46\x21\x99\x26\x22\x11\x6e\xf5\x1b\x54\xc3\x79\x64\x70\x05\xb3\x77\xe4\xa8\xd4\xfd\x98\x0a\x1a\x5d\x37\xa9\xaf\x47\x25\x99\x7e\xe6\x2d\xdf\x03\x63\x79\xd9\xfe\x79\x03\x2b\x24\x8d\xe4\xa8\x3c\xb2\xdc\x47\xe3\x9d\x5a\xe2\x7f\x34\x32\xaf\x4e\xe2\xd1\xb0\xff\x24\xa7\x06\xcd\xb2\xd3\x43\x87\x59\xb6\xd8\x15\x76\xa4\x03\xb8\x47\x46\x98\x1a\xfe\x82\xca\x88\xcf\x0f\xd4\x16\x9a\xce\x54\x62\x9a\x5b\x81\x43\x3f\x03\x23\xee\xfc\xac\x10\x1c\xc2\x7c\x86\x8c\xce\x25\xd4\x31\x35\xfa\x80\x0b\x9a\x5f\xc0\x19\x12\x6e\x20\x17\x4c\x5d\x40\x45\x19\x9f\x06\x52\x28\x68\x66\xb2\x64\xac\x2e\xfa\x63\xe4\x7a\xa8\x4d\x22\xb7\xf0\x17\x68\x52\xaa\x9f\x31\xc8\x13\xe6\x1a\x46\x2c\x6d\xe1\x1f\xa8\x57\xf1\x82\x41\x85\x68\x9f\x9c\x91\x2a\x44\xcf\x0c\x72\xdd\xd8\x23\x66\x04\xe5\xa3\x57\x83\xd0\x4b\xe8\x6e\x10\x6a\xe9\xec\x1b\x81\x64\xbc\xcb\x3d\x22\x03\x57\x73\x07\x1c\x84\xff\x87\xe7\x87\xd7\x2e\x90\x38\x5d\xc6\x83\x31\x49\xb1\xbe\x9f\xf4\xd5\x97\xfe\x63\x4c\xd8\xbf\x3c\x02\x54\xf8\xb0\x37\xc2\x98\xcc\xc2\xa1\x0e\x12\xb8\x55\xbf\xc0\x4a\x8e\x1a\x11\x72\x67\x3b\x24\x6e\x4c\x8e\xd0\x0d\x60\x57\x7c\x08\xc0\x19\xa4\x2b\xc9\xa0\x25\xd8\x33\x86\x74\x89\xca\x4e\x11\x63\x25\x6f\x69\x0a\xe0\xfe\x65\x63\xf5\x58\x08\x6d\x32\xa7\x2c\x44\x06\x7c\x1a\xa4\xe6\xf8\xd3\x23\x4d\x15\xa2\x70\xf1\x92\x21\x84\x33\xe8\x6f\xbe\x45\xfc\xe5\x44\x1a\xa9\xd8\x94\xa2\x79\xec\x30\xbf\x84\x9b\xa3\xa7\xb8\x29\xde\x29\x44\x3f\x6f\x60\x15\x7d\x7e\xec\x14\xdd\xe6\xdd\x03\xcb\x6a\x36\x41\xbd\x57\xd5\x2b\x8c\x71\x50\x33\xea\x59\x3b\x50\x4a\xd5\x67\xd6\x91\x5d\x8a\x86\x03\x8a\x65\x6f\xb8\x93\x17\x29\x21\x9e\x01\x10\x66\x93\xf3\xa0\x87\xba\x27\xe9\xe4\xfe\xf3\x20\x4e\x94\x7e\x11\xbe\x1e\x27\x0b\x11\x88\x35\x4f\x0a\x22\x6f\x16\x84\x60\x15\x0b\x05\xa6\xbd\xb1\x3b\xee\x60\x49\x90\x69\xa2\x81\xca\x6c\xf5\x1e\x89\xca\x7c\x52\x5c\x24\xda\xcf\x94\x1a\xde\x1f\xd7\xc0\x0b\xa2\xe1\x05\x5d\x75\x93\x55\x61\x5c\xc4\xfc\x9e\x17\xa8\x28\xed\x6e\x31\x2e\xd4\xe0\xb0\xe0\x02\xa4\xb2\x75\x78\x5c\x70\x43\x35\xbb\xdf\x94\xf9\xde\xd1\x2f\xe6\xea\x36\xd4\x8e\x9b\x81\x06\xa2\xe0\xc6\x8d\xdc\x02\x1e\xb6\x60\xdb\x61\xc7\x9d\x4b\xed\x17\x02\x2f\x88\xdf\x6f\x9e\x8e\x96\x31\xc8\x6c\x68\x9b\xe6\xb8\xa9\x0b\xf4\xc4\xdf\x39\xcf\x1a\xf4\x8b\xd1\xaa\x8a\x96\xc5\x60\x2a\x43\xc7\xeb\x8c\x87\x62\xc5\x0c\xf8\xe0\x44\x90\xbe\x65\x20\x99\xcf\xe7\xa4\x7b\xa8\xf1\x11\x92\x1c\x70\x8a\xfb\x70\xf0\x93\x13\xaf\x61\xc1\x6f\x7e\xfa\x08\x79\x92\x48\x51\x0d\xa7\x37\x6b\x4b\xe2\x97\x44\x0e\xfd\xb0\x01\xf4\xfb\x85\x86\x16\xab\x9e\x93\xa6\xa9\x1f\x30\x93\x9f\x16\x27\x9e\x37\x3d\x23\xc0\x27\xdc\x40\x6e\xec\xd0\x0f\x07\x83\x46\xf4\x4c\x3f\xd2\xae\x67\xea\x37\x64\x17\x8b\x84\x64\xd2\x50\xc6\x46\xa0\x28\x01\x1e\x1b\x35\xf9\x52\xb3\xc6\xc6\xbb\xf8\x74\x1b\x9c\x28\x37\xc1\x5b\xa9\xf6\x7e\x40\x69\xe9\xd5\x0c\x28\x2d\x0d\x7d\x02\xb9\x7b\xec\x82\x1e\xe9\x55\xa7\x4d\x11\x85\x13\xe7\x0f\x88\x7c\x74\xd4\x06\x9c\xe6\x6c\x1d\x8e\xc2\x8b\xc7\x74\x0b\x34\xaa\x68\x1b\x45\xe1\xf9\x2e\x09\x17\xac\xd9\x3a\x4d\x45\xa5\xdc\xd7\x4e\x8a\x4a\x1b\xa2\x38\x24\x2a\x59\x46\xc7\x73\xa4\x52\xd0\x5f\x10\xc7\x68\xa6\xe0\x8c\x5f\xec\x6a\x1c\x95\xeb\x61\x16\x01\x42\xb3\x81\x29\x1a\xd7\x47\xb8\x3d\x12\x6e\xe9\x40\x0f\x56\x65\x0d\xb7\x00\x1e\x2a\x7e\x26\xda\xd2\x6e\x8c\x96\x23\x57\x93\x3d\xfb\xd0\xfa\x74\x6e\x60\x09\xad\x80\x5a\x6d\x96\x3f\xb9\x30\x04\x74\x6e\x36\x9c\x46\xcf\x7d\xe3\x1f\x72\xd0\xfa\x01\x3a\xb4\x21\x89\x14\xa3\xfc\xf7\xbf\x98\x66\xd2\x51\xe1\x72\xae\xc5\x1c\xbc\xdd\x98\x03\x11\x39\x67\x1d\x5a\x0c\x16\x01\xd3\x1c\xa5\x23\x9e\xd9\x01\x8e\x78\x36\x68\xc7\x60\x69\x08\xb3\xe4\xe0\x20\xfc\xcc\xcb\x8e\x99\x21\x28\x56\xbb\x7f\x28\x1c\xa6\x7f\x00\x4f\xea\xda\x11\xac\x86\xe6\x44\x0d\x11\x84\xe7\x12\x41\xc1\xec\x39\x76\xfb\x0e\xd8\x7b\x67\x71\x93\x0f\x9e\x35\x0c\xd8\x7f\xc3\x79\x11\x22\xdd\xe1\x05\x35\x02\xe0\xc7\xc6\xda\x00\xf8\x99\xba\xa7\x04\x12\xd7\xd8\x10\x1b\xac\xf4\x61\xb3\x5c\xd0\xe9\xcd\xee\xa4\xb1\x68\xd3\x58\x7e\x83\xf2\x40\xea\xfe\x58\xec\x43\x73\xc7\xe0\x70\x15\x3d\x8d\x40\x9d\x55\x9b\x72\x83\x5a\xaa\xe2\x99\x81\x56\x6a\x16\x8f\x6b\x47\x71\x06\x2f\xe8\xce\x05\x35\x87\xc2\xce\xda\x7c\x7b\x8a\x3d\x0b\x24\xbb\x09\x44\xb2\x7e\x88\xb8\x70\xd3\xf1\xff\x94\x10\xc3\x4d\x72\x9f\xe8\x9c\x8b\x83\x64\xab\x8b\x83\x88\xc5\x4c\x73\x80\x4f\x2d\xa6\x0e\x42\x57\x13\x75\xe0\xf0\x17\x94\x8d\xcc\x53\x63\x0e\x38\xc8\x33\x5a\x60\xf8\xcc\xd9\x5e\x19\x07\xb7\x8e\x05\x3e\x6a\xe0\xdb\xf2\x1b\x27\x2f\xbb\x16\x39\xc8\x17\x6d\xfb\x65\xa4\xcb\xbc\xc5\x39\x21\x8d\x30\x4f\x5c\x54\xc9\x78\x39\x2f\x8a\x07\xc1\xd5\xb8\x72\x58\x7e\x83\x7d\x68\xdc\xc4\x30\xd6\xce\x06\xca\xbd\x5a\x39\x1b\x50\x1c\xf9\xa6\x14\xc0\x34\xd6\x94\xc6\x9d\x7c\x2d\xa2\xa0\x16\xfa\x4c\x3d\xd4\x42\xd3\x07\xe7\x9d\x0c\x23\x12\x6e\x96\xa3\xf3\x07\x94\xdd\x16\x9b\x2f\x68\xa9\x4e\x27\x11\xcc\x5c\x33\xfc\xff\xce\x16\xdd\xc2\xc9\x1f\x4c\x24\x33\x16\xf8\x19\x6c\xef\x93\x14\x6a\x25\xdb\x1e\xe2\xa1\x5a\xc7\x82\x98\x65\xee\x1d\x4f\x16\xc8\xbf\x6c\x87\x91\x48\x17\x38\x4b\xea\x87\xa6\x60\x41\xde\x80\x55\x75\x16\x41\xab\x80\x2e\xc9\x17\xe3\x89\x02\xb2\x76\x81\x9b\x28\x8d\x36\xcb\xe6\x17\x72\x62\x86\x7e\x58\x7c\x63\xd3\x0f\x6c\xd2\xcf\x17\x5f\x28\xfa\x81\x3b\x47\x28\x79\x6e\xdc\x18\x3a\x93\x26\x4a\x61\x58\x03\x36\x11\x5d\xef\xbd\x39\x91\x10\x70\x93\x8d\x63\x6e\x49\x83\xc8\xde\x78\x70\x0a\xf9\xcc\x82\xbd\xd8\xff\x92\x2e\x35\x66\x81\x21\x59\x27\xfb\x64\x46\xe4\xa9\xf3\x63\xa6\x8a\xe8\xf3\x06\x2a\xa9\x98\x60\x04\xe7\xdb\x9a\x3d\xe9\xc6\xaf\xbb\xc8\xa4\x13\xbe\x4a\x71\xc4\xac\x5c\x6c\x09\xe2\x89\x82\xb1\x76\x4e\x9c\x15\xc1\xdf\x12\xed\x33\xb5\x3b\xba\xa3\xcd\x1a\xe4\x0e\xd1\x00\x70\x61\x1d\xdf\xac\x0f\x13\xbb\xfc\x7b\x86\xaa\x26\x7c\x11\x9e\xa9\xaa\x11\x5e\x99\x0d\xc7\x64\xf7\x0b\x41\xaa\xfd\x42\xf2\x97\xdf\x20\x94\xd3\x51\x3c\x1b\xae\xae\x9f\x26\x59\x03\x51\x12\x6a\x76\x3a\x0f\xca\x1e\x35\x13\x5d\x08\xcc\x4d\xe0\x81\xe5\x28\xc8\x09\x23\x9c\x4a\xed\xc5\xec\xc9\x4f\x9a\x9b\xc1\xe5\x31\xbf\x0c\x44\x59\x98\xcc\x41\xf7\x93\xe5\x17\xb8\x7b\x37\xbf\x81\x3c\x54\xc3\x2f\x9c\x50\x1a\x68\x5c\x50\xc5\xc4\xf7\x07\x1c\x5a\x26\x2a\x50\x7b\xe7\xf3\x0c\x48\x2a\xad\xe3\x0c\x78\x30\x7a\xa2\xa0\x37\xb1\xb2\x6e\x22\x35\xcc\x72\x22\x97\x39\x29\x67\xb5\xde\xc8\x63\x67\x85\xe1\x84\xcb\xbb\x3d\x8f\xe7\xcc\x21\xa9\xc7\xc9\x1e\x34\x24\x06\xb6\x99\xa3\x78\xd4\x4b\x73\x3a\x27\xb5\x0c\x1e\xc2\x7b\xf6\x57\xe5\xdd\x8e\x89\xac\xc1\xa5\xfa\x99\x42\x55\x70\x76\xc2\x40\x65\xd3\xcf\x5c\x81\xac\xc8\xa2\x88\x79\x63\x0c\xe4\x26\xec\x55\x56\x1e\xce\x45\xd1\x51\xfc\x03\x95\xb7\x96\x4f\x89\x15\x04\x5f\xe7\x9e\x42\x52\x2b\x09\x0b\x96\xb5\x6e\x33\xb1\x82\x19\x6e\x67\xf4\xa9\xfa\xd8\xc9\xd4\x92\xbb\xf3\xc5\x0a\xc5\x9e\x46\x73\x27\x95\x7e\x26\xd3\x7f\x5e\x40\x04\x96\x73\x11\x4d\x24\xa3\xb1\x16\x6e\x1e\x79\x5e\x69\x26\x8e\xa4\x5a\x93\x7f\x70\x17\x58\xcc\x22\xbc\x7f\x8d\xcf\x27\xd8\x9c\x82\x1f\x13\x2e\x5b\x56\xa0\x4c\x7a\x6c\xa9\xe0\x64\x4c\x58\xb9\x7c\x67\x9e\x74\xd2\xb2\x07\xfe\x44\xc8\xbf\x95\x17\xf3\x48\x06\x50\x97\x54\xb9\x98\xe5\x50\x7b\xc2\x17\xdc\x89\xf8\x3b\x15\x12\x89\x79\xd2\xfc\x3e\xfd\x41\xee\x3b\x11\x7d\xe6\xc9\xef\x37\x30\xb7\x16\xac\x48\x72\x63\x47\x8d\x99\x1a\x16\x81\xac\x79\x26\x47\x68\xa2\x90\x25\x40\x05\x2f\x62\xa2\xd6\xbc\x15\x9c\x33\xe1\x89\x37\xca\xc5\x99\xf5\x6a\xc1\x4f\xcc\x7a\xa2\x79\xf1\x0c\x14\xfa\x9f\x17\xef\xe1\x96\xbd\xc4\x2b\xde\xcc\xe9\x26\x66\xf9\x72\x71\x2a\xcd\xb7\x69\x97\x5a\x7f\xd2\xd8\xcd\x9b\x36\x7f\x5d\x2f\x26\x55\x28\x16\x68\x28\x46\x6f\x63\xf4\x4c\x17\x2f\x4f\xf4\xcd\xc5\x77\x03\x70\xc4\x10\x68\x9b\x0f\x8e\x38\xa5\xd4\x8d\xf9\x50\x86\x7a\xa2\x1f\xce\x8a\xbf\xc8\x49\x10\x0d\x28\xcd\xda\x94\x8b\x2f\x26\xa3\x02\xed\x07\x3e\x91\xdb\x67\x5a\xb2\xc3\x59\x7e\xfa\xa2\x36\x9f\x9c\xa6\x7f\xe3\x58\x2c\xdd\x65\xa7\xaf\x95\x2a\x92\xa6\xe7\xa4\x62\xea\x07\xcc\x8c\xae\x44\x8b\x56\xa7\xf1\x69\x81\x66\x78\x75\x81\xec\xc4\xb3\xe8\x5c\x5c\x48\x6f\x67\xb0\xb1\x08\x46\x74\xa1\x59\x48\xed\x63\x49\xbf\xb6\x9c\xeb\xa5\x1f\xb8\xf3\xaa\xbf\x38\x39\x0a\x37\x89\x13\xcb\x2e\xd5\x8b\xc9\x07\x1c\xe8\xbc\xca\x8f\x6f\xa8\x0d\x1a\x9d\x1c\xe6\xb9\x0a\xe5\xbf\xc8\xa0\x49\xc9\xae\xbc\xab\x80\x29\xa5\x09\x58\x28\xb3\x60\x70\xb8\xe0\x33\x65\x78\xb9\xe0\x21\x5f\xec\xea\xbb\x0a\xcf\x38\xa1\xaa\xf5\x82\x94\x69\x35\xcb\x62\x64\xe0\xf2\x17\xf4\x91\xb7\x67\xd7\x42\xe0\x5f\xd9\x7e\xfe\x01\x93\xa5\x63\x6e\xd5\xe4\x11\x51\x55\x11\x39\x2a\x68\xb7\x10\x18\xd8\x94\x48\x37\x56\x65\x52\x1a\x0d\xb3\xe6\xd4\xa9\x85\x06\xa8\x27\xc9\xb9\x5a\x86\x15\xeb\xb9\xf0\x03\xbf\xd0\x48\xa4\xdf\xe8\xec\x53\x44\xc0\xaf\x3e\x7e\x9f\x3e\x80\xe7\x8a\x9b\x80\x75\xd4\xab\xd5\xb0\x18\xc5\xef\xf3\x30\xd6\xbd\x79\x21\xa9\x51\xb1\x8b\xf3\x42\x9a\xe3\x62\x8f\xe6\xd5\x5f\x39\x66\x29\xb4\xfa\xc6\x17\x34\xfb\x1d\x07\x9b\x64\xcc\x62\x41\x59\x87\x99\x2f\xb8\xe5\x1b\x21\x2e\x44\x2c\xda\xde\xba\x3a\xb7\x8a\x9f\x27\x89\xd4\x62\x51\x8d\xb3\x4c\xc2\x85\x00\x46\x31\x3a\x80\x97\x4d\x33\x0b\x5e\xf8\xd3\xff\x0f\xae\x84\x08\x82\xab\x93\x63\x38\xd7\xe8\xd8\xcc\x9a\xa5\x41\x7c\x59\xfd\x02\x6a\x5b\x7a\xad\x47\xf2\xb8\x7b\x38\x38\x66\x8d\x61\x30\xc3\x9e\x5e\xa0\x2f\x52\xd1\xad\x6b\xc1\x95\xc8\xea\xca\x05\xd7\xa1\xb0\x67\xdf\x0a\x0e\x5a\x2b\xc5\x1a\xf4\x76\xc0\x5e\x91\x12\xc5\x7d\x70\x37\x5b\xc4\x50\xed\x22\xe1\xbb\x60\xe3\x72\xf2\xc8\xc5\x32\xf6\xcd\xff\xa3\x52\xbe\x8e\xa8\x05\x13\x96\x7d\x39\xd6\x24\x49\x9a\x27\x66\x24\x5e\x26\x09\x49\x91\x5c\x7b\x3f\x16\xb0\x9d\xaa\xb1\xc7\x9a\xc8\xeb\x6c\x56\x78\xb1\x5d\xb5\x09\x6a\x2d\x32\xd7\xf6\x27\x8d\xdd\x42\xe8\xe3\x27\x8f\xe1\x5a\xc0\xd7\x16\x99\x2b\x85\x95\x96\x05\x4a\xa0\xb6\x3c\x45\xf4\xe8\x5f\xa6\x98\x46\x31\x4b\xa3\x95\x43\xd2\xa0\xe1\xaa\xe4\x73\x7e\xd1\x8a\x55\xa4\xca\x58\x74\xb6\x77\x0b\xf0\xb5\x9f\x3e\x4b\x88\xeb\xec\xe5\xbc\x76\xde\x1a\x85\x4f\x17\x81\x9d\x05\xf9\x4e\xee\x2a\x7e\xe1\x45\x48\x3e\x24\xd7\xce\x4d\xeb\x2d\xf7\x02\xbb\xea\x0c\x43\xeb\x40\xae\x72\x6f\x39\x38\x37\xf9\x88\x5c\x07\xc1\x68\xf3\x0f\x39\x2f\x5a\xfb\x23\xd7\x5a\xc3\x62\xa1\xfb\xe6\x2e\x6e\x2c\xb5\x3f\x78\xa0\xfc\xd4\x20\x50\x41\x42\x15\xe4\x62\x11\xc4\x59\x74\x9d\xdc\x21\xba\x91\x2d\x3a\x2b\x39\xd3\xc3\x3a\xb9\x2d\xcd\x8f\xac\x21\xf6\x11\xd2\xc8\xed\xe4\xf0\xdb\xc5\x02\x11\xce\x00\xbb\x60\x29\x73\xaa\x87\x75\xe6\xc4\x69\x62\xa0\x45\xfa\x50\x79\xd1\x2b\x5e\xa3\xb8\xf2\x64\xf1\x0f\x1d\x5d\xaa\x45\x3a\xf3\x17\xe9\x8c\x16\xcb\xdd\xbb\xcb\x2b\x69\xf2\x0b\x3c\xef\x3e\x4d\xf2\xbc\xf3\x72\x5f\xf4\xd0\xd3\x0b\x34\x8d\xd9\x59\x7a\xc1\x34\xb6\x2c\x92\x51\x12\xac\xd8\x15\x7a\xdd\x5c\x6f\xb7\xc0\x14\x6e\x7e\xe6\xf9\xa8\xeb\xcb\x42\xe0\xa4\x2d\x00\x0b\x40\xef\x73\xfa\xc1\x5b\xc9\x71\x6e\x0b\x6a\xa7\x35\x3e\x0d\x1c\x1c\x84\x49\x38\xd1\x82\x5b\xe4\xe5\xc4\x5f\xa0\x02\x6b\xb3\x44\x7c\x28\x0b\x74\x71\x58\xd4\x22\xa9\xca\x56\x2c\x00\x3b\xdb\xeb\x16\x5d\xf3\x37\x1d\x77\x3b\x60\x9b\x6f\xec\x3b\xb3\x3b\x38\x33\xc7\x0e\x07\xa4\xe6\xf4\xb8\x3b\xf4\x4c\xd5\x00\x75\x47\x09\xd6\x62\x4f\xf6\x1d\xb6\x2d\xcb\xbc\x1d\x7a\xa7\xe6\x84\xba\x3b\x13\x1b\x17\xdd\x90\x77\xd4\x68\x35\x08\xdf\x13\x0a\x6a\x1c\x3b\x1c\x90\x2c\x94\x76\x40\x43\x87\x00\xee\x2c\xd1\xea\x74\xba\xfb\xd6\x50\x82\xc9\xcf\x94\x73\xba\x74\xed\x1b\x6a\xdb\x87\x5b\x40\x32\x06\x6d\xce\x3d\xa1\x61\xf7\x0f\xa8\x9b\x33\xfd\x8c\xeb\x8c\xf3\xf3\xee\xf0\x4e\xf2\x4e\xda\x0b\xcf\x12\x8d\xa1\xe4\x6a\xa9\xcb\x92\x13\xa7\x79\x29\x3c\xc0\x24\x11\x76\xfa\x1a\x39\xfb\xee\x0e\x63\x57\xad\x7e\xe6\xee\x14\x24\xde\x59\x76\xc2\xae\xa8\x3b\xca\x4e\x7c\x96\xaf\xb2\x7a\x8f\xa8\xaa\x60\x5b\x8f\xa2\x12\x5a\x74\x37\xc0\xd5\x13\x17\xee\x35\x19\x59\xeb\x0d\xe7\xa4\x77\x79\xff\x70\x22\xed\x30\x9c\xd5\xe1\xfe\xa9\x38\xd0\x1c\x20\x9b\xc4\x67\x21\xa9\x0b\xd3\xc6\xdd\x61\x46\xb3\x05\x72\x87\x5b\x93\x13\x58\xec\xa8\xd6\xf5\x99\xb1\x96\x32\x52\x13\x90\x90\xd1\x1c\xde\x68\x52\x12\x45\xa9\x3b\x93\x32\x6d\xa7\xee\xcc\x2e\xca\x3b\x9c\xef\xbf\x2d\x9c\x6c\xd2\x4d\xc0\xf9\xdc\xcc\x05\x2f\xa7\x22\x3d\xc4\x9e\xba\x35\x11\x0d\xe7\x7a\x3b\x20\xef\x9d\xc2\x46\xf8\x6e\xef\x94\x99\xba\x0b\xed\x9d\xcb\xa6\x69\xe8\x3c\x21\xbb\x9b\xa4\xde\x52\x02\x6c\xef\xc9\x4b\x22\xa2\x53\x21\x23\x84\xbf\x0f\x4c\x6d\xf5\xc6\x1d\xf4\x06\x57\xa7\x23\xc9\x52\x13\x09\x03\xa5\x06\xda\x07\x67\x46\x03\x49\x6d\x9d\xe0\xcd\xce\xe0\x4b\xef\xaa\x91\x54\xa9\x0f\xf8\x45\x39\x9f\xeb\x1e\xac\x08\xa2\x16\x83\x1b\xd9\x1b\x15\xa9\x9d\x1d\x9b\xb9\x07\xcf\xe5\x4f\x0b\xa4\x49\x13\x41\x6b\x5d\xb8\x01\xc8\x16\x6f\xa1\x04\x89\x5e\x0d\x94\x04\xb3\x1f\xfe\x3e\x73\x8f\xa9\x87\x89\x64\xfa\x42\xae\xfb\xe4\x41\x6d\x9a\x50\xea\xc2\x51\x5a\x3b\x2a\x5d\x6c\x32\x28\xec\x48\xb6\x19\x4e\x84\xbb\xc3\x13\x6a\x0d\x13\x0d\xd7\x27\x27\x67\xdd\x53\x67\x68\x96\x9a\x94\x1d\x26\x62\xf1\xb6\x2c\xcc\xbf\x27\x72\x34\xd7\xa1\x9c\xac\x43\x90\x77\x80\xc5\x58\x6e\x81\x5b\xc7\x33\x83\x7c\x9c\xcb\xfb\x00\xee\x52\x4e\x9c\xba\x2f\x30\xa5\x2e\xbe\xfb\x22\xd1\x9a\x86\x95\x33\xab\x51\xb1\x8a\x85\x8e\xa7\x9d\x91\x9d\x9f\xb5\x62\xe0\xe6\x67\x71\x76\x2c\xa6\xd7\x66\x67\xd2\x51\x8d\x89\xe9\xb5\x8a\x4f\x06\xa4\xd3\x72\x00\xfb\x8e\x6c\x5a\x06\x86\x3b\x4c\x7f\xce\xde\xb9\x1f\xd9\xa3\x66\x1a\x21\x98\x6b\x7c\x7e\xe0\xa8\x45\x23\x43\x32\x4b\xb8\x49\x38\x1f\x79\x1a\xe8\x20\x35\x3e\x3f\x50\x9b\x12\x6e\x12\x47\x87\x80\xdd\x7e\x92\x08\x3f\x37\xfc\xaf\xf7\xa1\xce\x53\x05\xc2\xd8\x4f\x82\x76\xcf\x34\x6c\x83\x0e\x0e\xde\x4f\xae\x84\x66\xe5\xe4\xf5\xec\xd3\xc2\x8e\x0f\x34\x4d\x2c\x2d\xeb\x7d\xca\xf4\x5b\xf6\xa8\xda\x61\x5c\x74\xa2\xc7\xfd\x4c\x48\xe6\x16\x38\x26\x75\x79\xc1\x54\xa3\x2b\xe4\xfe\xe2\xc6\xe6\x00\xba\x1d\x65\xc3\xd6\xe7\x99\x63\xd4\xc2\x50\x53\xe7\xe0\x81\xfd\xc2\x81\xec\x95\x45\x0a\xec\xd5\xff\x14\x6f\xb4\xbf\x80\x31\xec\x58\xb7\xdf\x84\x56\xa2\xf6\x66\xc1\x54\x75\xf6\xc2\xbf\x6a\xab\xc3\x8e\x1a\xb0\x4e\x30\xbf\xdf\x48\xd6\x30\xfd\x3f\x8f\x51\xa9\x47\xf7\x3b\x67\x5c\x6b\x0a\xc5\xdf\x07\x14\xdd\xbc\x56\xf9\x99\x50\x4d\x58\x7e\xbf\x39\x3e\x77\x81\x82\x1a\xe6\x5c\xb8\xaf\x3b\x1d\xde\x9e\xe8\xd0\x4c\xf0\xf0\x0a\x63\xe4\xf6\xd0\xdf\x4b\x3d\x3c\x08\x8d\xf3\x49\xf8\x10\xc2\x6a\x12\x90\x02\xfc\xc3\xb6\x4f\x2e\x89\x1b\x4c\xc4\x2a\x1a\x99\x64\xc3\x79\xba\x76\x84\x82\x3a\xb5\xd3\xf1\xe2\xcd\xee\x04\x7c\x07\x1c\xa9\xdc\xe5\xf1\xc3\x3c\x0f\x3f\x53\x75\x29\x99\x73\xd0\xdb\x5d\x52\xee\x40\xf2\x31\x67\xc9\x38\xe0\xdb\xee\xcc\x4d\x07\x4a\x64\x38\x1f\xdf\xb1\x51\x4d\x29\x02\x90\x8a\x2c\x1c\x78\x73\xc0\xa2\xd9\x2c\x72\x0e\xa4\x1a\xb3\x66\xe3\x80\x0f\x94\xf9\xf0\xd8\x88\xc9\xb4\x35\x0e\x26\x08\x97\xb2\xfd\xa0\x4d\xd2\xb1\x13\x47\x79\xcf\x55\x27\x7e\x3d\x0a\x73\x83\xfa\x39\x07\xed\x0f\xb0\x9d\x87\x9f\x93\xb9\xdc\x05\x8f\x07\x29\x57\x8f\xc2\x0b\xb2\x24\xc4\xc1\xd2\xad\x1e\x77\xc9\xa5\xd3\x0f\x95\x57\x28\x6d\xc8\x23\x75\x88\xd5\x6f\x60\xc7\xea\x6c\x3f\x2a\xb5\x73\x32\x51\x1f\x28\xe1\xef\x24\x6e\x47\xe5\x62\xba\x01\x24\xa0\xd2\x26\x3a\x6a\xde\x88\xdc\x25\xc1\xa1\x54\xd9\x07\x35\x84\x45\xfb\xec\x80\xe1\xd3\xb7\xac\x03\x60\xee\xb3\x9c\x2d\xa7\xce\x2d\x4c\x58\xfb\xdc\x00\x2a\x01\x68\xe3\x1f\xf0\x58\x77\x24\xcc\x81\x14\xe6\xce\xe2\x74\x20\x70\x52\x35\x1b\xe3\xa0\x03\xbb\x65\xf1\xd1\x90\xae\x51\x92\xe3\xe8\xd8\x96\xba\x89\x1c\xd0\x0e\x7e\x1a\x80\xc3\xbb\x7d\xd1\x0e\x66\x40\xdd\xcc\xb1\x88\xa3\xb4\xc3\xdb\x41\x8f\xf8\xf2\xf9\x01\x26\x6c\x4f\x7b\x07\x89\xda\xd6\x07\xd3\x95\xfb\xf8\x38\x06\x05\x81\xd4\x85\xc7\xe0\x2c\x6a\x12\x32\x72\x71\xf9\x0b\x9c\x27\x5e\x87\xc1\x4b\x81\x59\x74\xec\x5c\x7b\x77\x8a\x79\x9b\x7e\x81\x40\xaf\xf9\x05\x6c\x9b\xe9\x67\x60\x01\x5b\xbd\x0f\xba\x5d\xf9\x10\x3b\x82\x05\x9a\xbd\x4f\x82\xc2\x42\x13\x11\x1c\x86\xd6\x8e\x29\x4f\x1d\x7c\x7c\x04\x8f\x6a\x4f\x36\x54\x88\x8e\x1a\x3d\x98\xb5\xd4\x19\xc5\x8f\x99\x3c\x2d\x22\x26\xc3\x0f\xfc\x42\xe0\x3e\xe3\x67\x6e\xc5\xfe\xa7\xdc\xdd\x07\x9c\xb8\xec\x3f\x7e\x4c\x2c\x9d\xb9\x71\x12\x31\x49\xe8\x1f\xc8\xa1\x6e\x67\xec\x23\x51\x9e\xf4\x58\xc7\xe2\x2e\x6d\xfe\x01\x12\xd6\x4b\x89\x24\xeb\xd5\xfc\xb8\x50\x64\x54\x78\xfa\x40\x11\x91\xb2\xe9\x1c\x39\x98\xfb\xcc\x53\x42\x54\xf7\x79\x06\x24\x93\x0e\xf5\x80\x69\xd8\x61\x01\x07\x73\xb0\x5b\x99\x7c\x2c\xb2\x86\x96\x6d\x71\xd0\x6e\x00\x9e\x08\x9f\x06\x30\x66\x6f\xd9\x9d\xf8\xdb\x12\x79\xcf\xb4\x46\x7a\xe6\x3d\xc5\xa7\x0a\xf2\xa6\x7d\x84\xc0\x4e\xfd\x82\x05\x2a\xd2\xa6\x39\x92\xf6\x80\x87\x58\x33\xbc\x39\x8e\xec\x53\x4d\x32\xcb\xbb\xf9\x9b\x66\x60\x07\x3c\x1d\xf0\xa3\x77\x9a\x93\xe3\xe0\xb6\x5d\x6e\x81\x13\xed\xa3\xea\xa0\x68\xd2\x3c\x1c\xc4\x5c\x9f\x26\xa8\x07\xf3\x5a\x41\x63\xe8\x03\xfc\x38\x71\xd9\xf7\x4c\x9f\x24\x4a\x17\x91\xe3\x64\x4c\xb6\xc6\xcd\xbc\x6a\x4e\x56\x7f\xbc\x48\x72\xfc\x3e\xcf\x34\xb9\x8b\x84\x93\x77\x61\xf3\x3b\x90\xe4\x47\xbc\xb1\xf8\x89\x4b\x11\x1c\x27\x59\xdc\x1f\x60\xf5\x97\x49\x20\x47\x6b\x5a\xa0\x3f\x9c\x55\x1a\x8a\x83\xfa\x42\x27\xb0\x3f\x2e\xca\x74\x9f\x9f\x57\x4a\x23\xb7\x91\x44\x68\x22\x12\x3c\xfa\x28\x7a\xc1\xe2\xb0\xc7\xe6\x41\x85\xa1\x79\x12\xea\x3f\x9b\x1a\x8f\x17\xff\x0d\x7b\xe0\x1c\x37\xe7\x49\x34\xdd\x74\x90\x30\x8b\xbd\x78\x6f\xd8\x7f\xf3\xb8\x93\x24\x11\xfd\xc2\xb9\xe6\x7c\xb6\x07\x9c\xc8\x66\x95\xa6\xe3\x78\xa8\x8a\xf3\xc9\xf2\xd4\xb7\x49\x29\xc1\x8e\x07\x34\x58\x14\x3d\x81\x67\x75\xf9\x90\x26\xef\x8b\x87\x6c\x6f\xa9\x9d\xf0\x4c\x42\xf9\xfc\xfd\x40\xf5\xd4\xf3\x46\xa1\xbc\xe9\x07\x72\x54\xf8\x87\x4a\xb2\x97\x7e\xa0\xc4\xd4\x01\x77\xd2\xf0\xeb\x03\xed\xfc\x81\xce\xcf\x17\x74\x2d\x90\xa0\x3f\x7f\xd4\xa4\x37\xbf\x41\x2c\x1c\x7e\x03\xcb\xb7\xf9\x19\x37\x2a\xab\x2e\xce\x1f\x37\xb0\x0e\xc5\xf3\xc5\x79\xc3\xde\xaf\xe7\x8b\xf3\x9a\x33\xe9\x9d\x1b\x27\xd7\xcf\x0d\xef\xab\x87\x8d\x93\xeb\xef\x29\xe7\x85\x3c\xce\x8d\x2c\xa6\xd3\xe7\x7c\x71\x61\x38\x36\xf9\x7c\x71\xe1\xb0\x5e\xfc\x24\x2c\xb4\x9f\xd0\x99\xd9\xd9\x34\x71\x85\x24\xa9\xc1\x42\xb1\xa6\x63\xfa\x2c\xbc\xf6\x75\x7f\x41\x22\xfd\x42\x72\xc0\x9f\x0e\xa3\xf3\x05\x8d\xc3\x59\x2a\xce\x17\x33\x0e\xeb\xa7\xcf\x92\xab\xe0\x17\x68\xd0\x95\x94\x3c\x13\x22\x0a\x05\x9c\x95\x9e\x6b\xba\xfa\x9e\x89\x11\x85\x24\xce\x9a\x63\xd0\x44\x57\x8c\x41\xda\x96\xb3\xc2\x3a\x30\xdc\x07\x96\xbe\xb8\x45\x14\x70\xaf\xfe\xff\xc5\x5f\x43\xe7\xdf\xd9\xc0\xd2\x12\x79\x67\x1a\x95\x9b\x7f\xc0\x34\x4b\x79\x77\x36\xca\x44\xed\xb3\xb3\x91\x81\x25\xeb\x4f\xda\x88\xeb\xe6\x1f\x4e\x34\xa1\x61\xa7\xfe\x4f\x13\xd5\xb0\xf4\xba\x16\x9d\x9d\x34\xe9\xff\x9e\xf3\x26\xa2\x3b\xb8\xaf\xf8\x99\x4b\x2f\xb4\x74\x76\xec\x7d\xcf\x2b\xd3\xe4\x57\xf3\x67\x9f\x68\x41\xf3\xdc\x29\x23\xbb\x69\x20\x62\xd3\x71\x73\xf6\xdc\x43\xfe\x01\x54\x7b\x8b\x0c\x0a\x07\x4d\x1c\xb2\xde\x4f\xd7\x34\x38\xe9\xcd\x67\xa8\x70\x0e\x0c\xc3\xd2\x63\x40\x8a\xea\x36\x78\x0e\x4a\xf2\xee\x26\x17\x9b\x14\x95\x03\x33\xab\x6b\xcb\x39\x78\x4d\xf9\xfc\x40\xfc\xad\xb3\xfe\xa4\x7b\x5f\xf5\x26\x88\xdc\x67\x9a\x0a\x26\x67\x73\xe0\xd5\xf9\x02\xcb\x6a\x47\xb4\x33\x48\xa6\x86\x91\x96\xe7\xcf\x0f\x10\x50\x76\xda\x39\x83\x5b\x63\xba\x53\xea\x7c\xcc\xd6\x88\xa6\x74\xf0\xc6\x49\xcb\xb2\xc7\x31\x59\x1b\x59\x53\x35\xc1\x95\x66\xeb\x99\x4c\xa8\x71\xb2\x1a\xae\x33\xb9\x9e\x13\x25\x03\x3e\x2f\x20\xbc\xcc\xa3\x9a\x28\x73\x60\xb9\x3c\x13\x70\xeb\x85\x85\xf5\x15\x28\x3a\x17\x22\x86\x85\x36\xce\x8c\x20\xf8\xbc\xd0\x51\x2e\x44\x0c\x02\xa4\xe8\xf8\xec\x73\x01\xd0\x98\x02\x14\x97\x73\x86\x95\x73\xf1\xf8\x31\x4f\x42\x1f\x68\xb4\x7b\xee\x74\x2a\x12\xea\x3a\x77\x48\x71\x8b\xc8\xbd\xe0\x59\x3d\xee\x64\x38\xbf\x8f\x12\xd5\x3a\xe6\xcf\x9d\x58\xc2\x32\x6d\x67\xf6\x06\xf1\xc6\x8e\x6d\xe3\x03\x71\x87\x0c\x6c\x7e\x1f\xd2\xc7\x42\x7d\xbf\xf1\xbf\xa6\xe4\xe0\xad\xd9\x0d\x1e\xa4\x58\x43\x3a\x48\xb1\x56\xed\xc0\x3a\xfb\xec\x3b\x80\x1b\x04\x65\xce\x83\xd6\x16\x6f\x91\x83\xe7\x8c\xee\x0c\x27\xb3\xed\x5a\xe5\x71\x1e\xa0\xd1\xa7\x27\x92\x62\x7c\x58\x91\x39\xde\xac\x54\x39\x4f\x2c\xbc\xcf\xca\x13\x34\xfa\x58\x39\x09\xc9\x2c\xbf\x4e\x6c\x10\x9f\x5c\x67\xf2\xa2\xa8\x06\x0a\x5c\x9f\x0f\x2e\xb6\xf0\x27\x1b\xd1\x79\xc2\xf1\xcb\x73\x96\x36\x68\x33\xce\x45\x02\x35\xa2\x74\x0c\xf4\x16\x67\x42\x8c\x4d\xf7\xa4\xf3\xa2\x86\xdd\x0b\xf7\xa2\xca\xfa\x99\xc5\x04\x95\xc3\x6d\x82\x13\x2c\x24\x12\x64\x0a\xf9\x9e\x17\x57\xc6\xf3\x7e\x41\x56\x79\x43\x5e\xbc\xf2\xfa\xe8\xba\x6e\xec\x50\xd3\x00\xc3\x82\xa0\xef\xc9\x22\xbd\x06\x46\x37\x87\xa9\xef\xe9\x5c\x68\xf3\xdf\x89\x50\x07\xdf\x9c\xce\x54\x32\xea\x42\x70\xde\x44\x52\xd2\x14\x9d\x37\x64\xba\x17\xea\x61\x17\xea\xf2\xc1\x06\xf2\x98\x1e\x1e\x86\x16\xd9\x04\x9d\xe6\x1d\x9a\x9c\x7d\xbc\x3e\x00\x11\x52\x0a\x9d\x19\xc7\xe0\x0e\xa8\x8f\xff\x47\xc0\x95\x06\xe8\xa6\x67\x10\x34\xfc\x4c\x7c\x59\xfd\x03\x8a\x84\x69\x21\x2f\x54\x15\x34\x70\xbb\x7e\x24\xb0\xea\x99\x04\x85\x9e\x51\x29\x40\xac\x79\xfd\x10\xf6\xbe\xb9\xfd\x64\x36\xfd\xb0\xc1\x4d\x55\x73\x7a\x31\x06\x62\xd3\x8d\xe6\x62\xf5\x02\x07\xee\x5e\x1b\xd5\xf7\x02\xc9\xd7\xc6\xf2\xef\x6e\x02\xfb\x67\xf8\x03\x0a\xf7\xe5\x1f\x02\xae\x73\xfe\x60\x62\x90\x6e\x90\x5e\x6b\x9a\x45\x44\x6e\xda\x1e\x7e\x41\x47\xe9\x60\xb1\x6b\x03\x6b\x0e\x93\x4c\xd6\xd4\x61\x70\x6d\x3c\xfc\x25\xdb\x2f\xb8\x35\x3a\x31\xc6\x85\xa2\x86\x4e\x03\x78\x21\x73\xb0\x53\xad\x5c\x25\xc7\x2c\x92\x4b\x8e\xc9\x2d\x12\x70\x88\xdd\x2f\x9a\xbb\xc5\x1a\xd7\x8b\x2f\xeb\x87\xc8\x74\x73\x5c\x7e\x01\xc2\x56\xe7\xcd\xf5\xe2\xcf\x66\x40\x72\x41\x65\x69\x9f\x8e\xab\xf2\xf6\xa2\xe3\xe1\xaa\x60\x2e\xaf\x4b\x26\x8f\x13\x45\x15\xeb\xe2\x31\x40\x41\xe9\xfa\xb9\x17\x7c\x22\x9d\x81\xff\xaa\xbc\x50\x79\x96\x2a\xb6\x97\xa7\x95\xa9\xe0\x1c\x44\x71\xb1\x28\x93\xf5\x89\x17\xc2\x40\xab\xf6\xf8\xc5\x9a\x4c\x3f\x3f\x37\xac\x83\x1b\x20\xeb\x88\xe4\x06\x76\xff\xb4\x47\x20\xa8\x13\xec\x6a\x28\x98\x2c\xd9\x79\x35\x9c\x68\xba\xb0\x5f\x30\x5e\x3b\x98\xf1\x62\xf5\x85\xf1\xe9\x91\xb3\xae\x59\x26\x98\x95\x97\xed\xc5\xcc\x70\x3a\xa0\x2e\xba\x3f\x3a\x28\xf0\xea\xc9\x1a\x5a\xd8\x4e\x17\x12\x01\xea\x8b\x68\x56\x57\xa7\x8b\xd9\xe0\x1c\x36\x78\x25\x7a\xfd\xbc\x41\x08\xde\xdc\x2b\x86\x35\xdd\x07\x3d\x79\x9b\x9b\x48\x96\xff\x93\x1f\xf7\x05\x87\x49\xdf\xa5\xaf\x17\xeb\x56\x9b\xa9\x2f\xa4\x29\x76\x18\xd1\x35\x70\x8c\x7b\x44\x34\x95\x3b\xce\xf1\x62\x09\x09\x4f\xfb\xc8\x21\x6a\x9d\x06\xce\x9b\xf0\x0b\x39\x42\xad\xf4\xc0\x3a\x98\xf9\x22\x79\x4b\x5f\x04\x8a\xeb\x7b\xa5\x83\xdc\xae\x06\x02\x34\x7a\x19\x32\x99\x9b\x58\x27\x06\xb4\x49\x9a\xe3\xa0\x68\xb7\x6c\xa6\xfa\x74\xfa\x99\x8e\x5a\x9f\x1e\xb8\xa3\x7f\xee\x02\x50\x44\xb0\xf8\xa2\x7e\xd5\x95\x31\xaf\x99\xcc\xa2\x4e\x27\xc1\xb9\xe5\xf7\xe4\x15\xd2\x5b\x68\xd2\x20\xeb\x23\x82\x69\x43\xac\x9d\xbe\x98\x0a\xb9\x76\xb7\x01\x50\x65\xc2\x67\xf2\xb8\xe8\x9c\xe4\x69\x51\xb1\x18\xe5\x61\x09\xbd\xb8\xbe\x6a\x91\x5a\x52\xc7\x0c\x5e\xcc\x84\x6c\xbf\xb8\x6b\xe5\x55\x46\xcf\xaf\xec\x70\xec\xec\xb5\xc8\xb0\x9a\x3b\xb8\x51\x3a\x29\xc6\xc5\x88\x9a\x8f\x64\x48\xb4\x6c\x21\xff\xa2\xe5\x61\xc7\xf3\x6b\x87\xd3\xb7\x0f\x2e\x82\x63\x0b\xe0\x1d\x63\x30\x7f\xec\xf4\x95\xb6\xa8\xd8\x73\x0c\xfe\x82\x3c\x28\xb8\x70\x11\x0e\xfb\xe8\x43\x40\xcd\x47\xbc\x21\x9e\xc6\x17\xc0\x8b\xf0\xd8\x02\x74\xc7\x3c\xfb\x08\x78\xe1\xf2\xb0\x27\xfc\x85\xc0\x5b\x6b\x59\x2e\xa4\x9c\x73\xa6\x86\x2b\x63\x6b\x2c\xfe\x0e\x24\x83\x30\x81\x07\xc4\xe3\x72\x83\x84\x4c\x02\x38\xd7\x01\x43\xad\x4f\xf3\x63\x82\x02\xf7\x40\x65\x94\x37\xea\x01\xfc\x30\xfd\xfc\xf2\xb8\xed\x3d\x17\xd1\xb6\x67\x1d\xc6\x7d\x1b\x42\x2e\x78\x79\x1a\xe4\x5d\x27\xb7\xad\x20\xd6\xc5\xda\x59\xbe\x02\x5c\x27\x34\x20\x26\x11\x60\xda\x99\xd2\x2e\xd8\xe6\x9b\x19\x83\x91\x36\xb6\xb5\x5c\x27\x71\xa5\x48\x66\x69\x2c\x27\xb0\xbf\x2e\x48\x33\xcf\x12\x22\x6d\x9a\xd4\x0d\xd7\x8b\x96\x87\x4d\xed\x17\x0b\x57\x78\xd9\x2f\x32\x8a\xcf\xbd\x8b\xb3\x28\x92\x59\x8e\xd3\x6e\xcd\x17\xca\x71\x3a\x0f\xe4\x45\xac\xfc\x21\xf1\x42\x03\x9a\x83\x17\x2a\x0f\x3b\xdd\x5f\x2f\x34\xae\x9f\x39\xb9\x37\xfc\xaf\xef\xe9\xcf\xe9\x80\xc7\x0b\xb9\x4f\x6a\x75\x8f\x77\xc3\x17\x7e\x81\x62\xc4\x60\x20\xd1\xb5\x25\x0f\x42\x75\xec\x53\x7c\x21\x90\xd8\x39\xdd\x2f\x86\xee\xd8\x29\xe0\x4a\xb4\x6d\x29\x81\x82\x5f\x9f\x85\x40\x60\x71\x29\xdb\xdf\xce\x20\x46\xfe\x58\x28\x3d\xc4\x0e\x16\x63\x00\xef\x8e\x33\xb8\x1e\x78\xa7\x1b\xc3\x31\x3f\x9d\x4d\x35\xd7\x93\x14\xfb\x8b\x03\x2d\xfc\xfb\xe2\x46\xcd\x8b\x62\x17\x80\x1b\x0a\x60\x67\xcb\xbd\x81\xbe\x8b\xf6\xdf\xfd\x03\xa7\x68\x83\xde\x3f\x7a\x5f\x89\xe8\xfb\xb7\xf0\x82\x1b\xd8\xf1\xbc\xe9\x19\x14\x88\xa2\x7b\xcb\xed\xa1\x0f\xd2\xb5\x73\xfa\x07\x8c\xda\x24\x6e\x74\xe8\x9b\x6e\x22\xb9\xd3\x3f\x1c\xd0\x53\xb8\x85\x93\xa3\x5c\xfa\x81\xb2\x76\xf8\x07\xd8\xdd\x96\xfb\x80\xa8\xd5\x4a\xdf\xa9\xbb\x95\x54\xb8\x0b\xf8\x51\x82\xeb\x2e\x24\xd2\xff\x57\x3c\x17\x3d\x0f\x04\x68\xf8\x99\x34\x6b\x8b\xde\x85\x9e\xdb\x52\x14\xdc\x4c\xa4\xec\x79\x61\x60\x72\x15\xff\xde\x84\xcb\x0e\x97\xbc\xe9\x2c\xba\xfc\x4c\x75\xad\xb0\xe2\x5d\x49\xb4\xba\x00\x3c\xb6\x83\xea\x0d\x78\x5c\x1c\xd4\x79\x03\x1f\xdb\xdf\xf8\xae\x74\x53\x0b\xb7\x10\x78\x41\xf3\x54\xb1\xfa\xc5\x3d\x62\xf5\x75\x6f\xb9\x2b\x56\x5f\x9b\xf4\xa6\x72\x77\xf9\x7b\xa8\x2e\x74\xb2\xdf\xf0\x06\x2d\x0e\x22\xbd\x1b\x22\x5d\x4d\x11\x94\xb9\xf6\x6f\xbe\xd3\xfd\x53\xc0\xf1\x4e\xed\x6e\xb8\x85\x81\x2f\x34\x4b\xe9\x31\xe0\x69\x43\xc4\x50\xb3\xee\xf5\x6e\x94\x65\x7e\x3e\xa8\xdc\xd0\x33\x82\x6f\x74\x8a\xde\x28\x7a\x5a\x1c\xdf\x79\x77\xee\x32\x4f\x4b\x47\xe6\x34\x0f\xbb\x37\x94\x0e\xd6\xb0\x3b\xc3\x4c\xfc\x3e\x68\x16\xb6\xb8\x3b\x91\x9a\x87\xdd\x21\x4e\x05\xea\xef\x0e\x71\x6a\x12\x7b\xce\xa3\x7a\x7c\xf1\x6d\x38\xeb\xfb\x3d\x68\x7c\x17\x58\xb8\x13\xd0\x9a\x39\x06\xe7\xcd\x2f\x70\xe9\x45\xf3\xc0\xd2\x57\xbf\x8f\xa5\xaf\xee\xf1\x78\x7b\x34\xfb\x0e\xa8\x27\x85\xa8\xef\x54\xec\x2e\xff\x90\xec\xab\x16\x01\x80\x5d\xa0\xf9\x0e\xde\x33\x3e\x3f\xe4\x5a\xfb\x07\xda\x43\x04\x58\xef\x20\x91\x9a\xb7\x00\x3f\x7a\xe2\xe3\xc4\xb3\xdf\xc7\xbc\x0a\xef\xdc\xc1\x6b\xb3\xb7\x54\x40\x50\x78\xa5\x18\x0b\xfe\xe1\xe0\x89\x7b\xb3\xe5\x23\xf4\xbc\x76\xc4\xbb\xe7\xfe\xdf\xff\x3e\x78\xe5\x9e\xa0\x40\x87\xff\xcd\x58\x70\x9b\xdb\xef\x89\xa5\x15\xde\xb8\x11\x30\xf4\xd9\x01\xd0\xea\xda\x8d\xe7\x4e\x07\x81\xf5\x27\x9b\xd0\xbd\x20\x12\x74\x09\xb9\x57\xb2\x81\x7f\x00\x1b\x78\xd9\x32\x5c\xc8\xbc\xcc\x24\x32\x55\x73\xfe\x40\x68\xb8\xe6\xc5\x53\x81\x1d\x04\x67\x1e\xca\x08\x6d\x9f\xa7\x72\x7b\xe9\xc2\xf9\x30\xf9\x65\xd5\x4d\xe8\xa9\x84\xf3\x9f\x1f\xb8\x2c\x12\xaf\x4f\xca\x0d\xed\x98\x87\x15\x7a\x1c\xf5\xff\xb0\x42\x8f\xed\xd2\x0f\x2e\xda\xf6\x21\x78\x1a\x81\xa3\xff\xa7\x16\x55\xc0\xee\x81\xcd\xc6\x96\xf1\xa7\xa3\x01\x5d\x53\x1e\x58\x64\x6c\x82\x7e\x3a\x5d\xb2\x3c\xae\xce\x63\x49\xbb\xf4\xe9\x39\x2e\xfd\x00\x8b\x4b\xb7\xd9\xfa\x19\x04\x31\x1e\xc6\xe0\xbd\xa4\xfa\x07\x6c\xcb\xf0\x17\x28\xbf\xa2\x6d\xfa\xb0\x0e\xe1\xe7\x7d\x1e\x85\xd3\x2f\xdc\x30\xf0\x6b\x18\xc1\x34\xe9\xfa\x3f\xc8\xe1\xd3\x2f\x10\x4c\x6a\x9c\x01\x2b\x81\xa7\x1e\x71\x7d\xcd\xeb\x1b\x98\x17\x09\xe4\xe7\xdd\x93\x9f\x68\x91\x67\x82\x05\xb5\x89\x1f\xee\x18\x9d\x39\xcf\x44\xda\x75\x1d\xb5\xcf\x04\x47\x6a\x4b\x3e\x93\x33\xa0\xfe\x26\xfb\x13\x7d\xef\x8e\xab\x8e\xf4\x7a\x66\xae\x8b\x3f\xc0\x16\x34\x03\x4f\x1e\xb4\xd5\x14\x20\xc7\xe2\xa7\xc7\xe4\x36\x75\x41\x2f\x9d\x2a\x59\xf6\xac\x5c\x48\xff\x00\xe6\x91\x98\x78\x16\xc1\xa8\x20\xf7\x83\xfb\x65\xd8\x90\xf0\x2c\x6c\x13\xf3\x06\x0b\x10\xd6\xe5\x17\x20\xab\xcc\x5e\x0b\x82\xc2\x9b\x64\x87\x43\xae\xf9\x77\xe7\xcd\x7b\xfa\x07\x4c\xb4\x79\x8b\xf9\x18\x7e\x6e\x20\x79\x4d\x13\x85\xb8\xbd\xd0\xb1\xf6\xb0\x44\x4e\xf1\xff\x84\x9f\xd5\x3d\x90\xd9\xbc\xa9\x76\xd2\xe8\x67\x88\x53\xf3\x16\xac\x27\xbe\x5f\x3e\x47\x63\x8b\x9a\xb7\x03\x8b\xef\x31\xf0\x7a\x67\x6e\x86\x79\xc5\xe2\xf7\x39\xb8\xe7\x24\x7f\x1f\x38\x6b\xfb\x98\x7b\x60\x2c\xe9\x76\x1c\x78\x4e\x1e\xde\xba\x1c\x3d\xc8\x31\x5e\xcd\x7f\x27\x45\x8b\x77\x08\x7d\x66\x1c\xb7\xf7\x9c\x58\xba\xe5\x26\xe1\xc9\x2c\x74\xf9\xc0\x97\xba\xdb\xf9\xe0\x61\x46\x70\xa7\xb8\x7a\x2e\x6a\x0d\x35\xcc\x0b\xec\x63\x6e\xe1\x05\x4e\x87\xc4\x73\xd1\xb3\x52\xc7\xc8\x73\xe5\xb0\xf4\x05\x6c\x0f\x4e\x6b\xf1\xf0\x82\x65\x6e\xc2\x7d\x6a\xda\xaf\xf1\xb9\x69\x5a\xfb\xf9\x0d\x4c\xbd\xd7\xf2\xce\x61\x6b\x98\x70\x89\xb1\xfe\xf7\xc1\x75\xa9\x8f\x3f\xd5\x17\x7f\x90\xa4\xa9\x5b\xd9\xfb\xc0\x5f\xc6\xd5\x7a\x1e\xb8\xcb\xcc\xe6\x2d\x05\x77\x19\x6b\x8f\x9f\xf7\x36\x34\xac\x96\x7c\x50\xc8\xa6\xdb\x72\xf0\x3c\xc8\x5d\x25\x98\xf6\x3c\x5c\x96\xec\x71\xfe\xde\xcb\x51\x55\x92\x84\xf9\x7b\xef\x46\x4d\xa6\x90\xf9\x43\xec\x5c\xd3\xa5\x76\xfe\x7e\x28\xfa\xf5\x0f\x5f\xcf\xdf\x7b\x79\x1a\x52\xf9\xcd\x1f\x4c\x17\xf2\x74\x9a\x3f\x98\x2e\xca\xa7\x03\x9a\xd5\x96\x7f\x98\x1c\xa3\xbf\xd8\xf9\x83\x9b\x3c\xd0\x84\x5f\x00\x7f\x7f\x68\xe4\x91\xb2\xfc\x01\x79\x6d\xf3\x1b\x14\x5e\x4d\x4d\xbc\x37\xb2\xa2\x24\x2a\xf3\xb7\x51\x76\x6d\xa2\x0a\x17\x32\x29\xfd\xe6\x6f\xe3\xb5\xa1\xf9\x87\xc6\x2f\xd4\xe9\x46\x9b\x8d\xbb\x18\x1c\x86\xbf\x08\xe8\x7d\x44\x14\xec\x17\x4a\x86\x35\x7f\xcc\x1a\xa5\x18\xd2\xf9\x63\x3d\xe7\xb1\xd4\x24\x2e\x64\xe5\xa7\xb5\x28\x49\x83\x5f\x60\x71\x26\xaf\xce\x7b\xe3\x1a\xca\x9f\x35\x7f\xbc\x60\xb5\x9f\xfa\x60\xa6\xc9\xd2\xd4\x26\x82\xed\x66\xfb\x89\x43\x78\x61\x1a\x9a\x19\x7a\xbb\x94\xae\x36\x2b\xcd\x90\x4d\x03\x41\x2d\x42\x1d\xbf\xf3\x57\x53\xcc\xbb\x0f\xea\xa3\x96\xc8\xac\xc9\xb6\x22\x0b\x77\xa8\xe2\xe5\x60\x6a\xca\x9f\xf9\x16\xb9\x29\xe5\xfe\x3b\x7f\x95\xe3\xe8\xfe\xe1\x41\x0b\x7a\x66\x32\x71\x05\x4b\xce\x5f\xcb\xcd\x2f\xb2\x5b\x0e\x4c\x74\xe3\x16\x55\x3c\xbb\xef\x1d\x69\x14\xaf\x78\x07\x8f\x78\xb2\xe1\xb3\x2c\xe7\x85\xf9\xeb\x9c\x7c\x0d\xaa\xf3\x7b\x8d\xa1\xc3\x74\x6a\xb6\xed\x24\x59\x04\xc1\xc7\xb9\xff\x3e\x3f\x6c\x50\xa7\x6a\x4c\x83\x04\x68\x5e\x47\x8e\x40\x14\x8f\xe4\x41\xbf\x01\x92\x8a\xd6\x6e\x90\xe7\x4c\xf3\x80\xf9\xa9\xaa\xcb\x17\x19\x0d\x5d\xf3\xe6\x2f\x72\xa3\xa8\x45\x28\xe4\x75\x79\x9d\x3f\x28\xe4\x75\xbd\x9e\xbf\x80\x32\xd3\x3d\x06\x45\xec\xe7\x07\xcc\x72\x11\xcd\x2f\x94\x2a\x8a\xa6\x98\x3f\x5c\x67\x74\x0d\x9c\x3f\xf8\xa9\xcc\x66\x9e\xc6\xfd\x45\xd7\xbe\xf9\x0b\x38\x4f\x99\x61\x71\x7d\xd1\xe9\x37\x7f\xa9\x9e\xef\xfa\x60\x42\x84\x15\x8d\xf9\x05\x5f\x43\x7e\x92\xf3\x37\x49\xa1\x86\x8c\x5c\x57\x75\x8a\xa2\xc9\x1b\xd8\x72\x83\xeb\xbf\xff\xd5\x32\x35\x07\x2f\xfa\x6a\xb2\x6f\xcd\xdf\x0b\xbe\xaa\xe0\xe8\xfc\xcd\xdc\xe8\x22\x11\x9a\x79\x81\xe6\xf9\x83\x66\xbe\x2d\x35\x08\x27\x14\xe5\xa1\x99\x3f\xea\xe5\x9b\xb9\x1d\x40\xea\x45\xcc\xff\xf7\x31\x34\x7f\xd0\xda\xeb\x1e\x31\x7f\x44\x5d\xcd\xbb\x0f\x6a\xfb\x6e\xc1\xb4\x28\x5f\xbd\xc8\x4c\x7b\xe5\x19\xdc\xa1\xb9\xf4\x0c\x12\x65\x35\x6f\x1d\x64\xc8\x6c\xdd\x1f\x50\x70\x99\x8d\xa8\xb6\x6f\xde\x7c\x4c\x97\x30\x45\xc3\x8b\xbb\xea\x67\xca\x90\x2d\xa1\xff\xcc\xa9\x3b\xc4\x6b\xf5\x07\x60\x93\xea\x06\x11\x84\xeb\xdd\x99\x6a\x7a\x35\x78\xc0\x1a\xe6\x0e\x00\xcb\x36\xb7\x77\xf0\xdc\xf2\xf6\x3f\x32\xeb\x8a\xbf\x40\xb2\xfa\x26\x8a\x00\xa2\x04\x04\xe7\xef\x04\xdf\x59\x86\xd1\x71\xb9\x99\x04\x14\x84\x56\x40\xc2\xfc\x25\xe8\xf2\xb4\x51\x8b\xfe\xb3\x2c\x06\xea\xaa\x9f\x2f\x72\x7f\x8b\xd5\xe0\x86\xa2\x40\xf7\xf9\x3b\xa9\x80\x58\x6a\x92\x09\xaa\x14\x41\x3b\x7f\x17\xb5\x4d\x46\x00\x57\x92\xe9\x4f\xb0\x3f\x3c\xce\x0b\x3b\xb6\xfa\x03\x30\xa3\x89\xba\xc8\x6f\x1a\x26\xf4\xe4\xc5\x3b\x1e\x2e\x25\xc3\xdb\x25\xf3\x6b\x5a\xb6\xb3\x0e\x8b\x37\x24\xd2\x59\x7d\x04\xeb\xcd\x0d\xec\x06\x28\x06\x2d\xb4\x90\x85\x60\xa9\xf8\xde\xfc\xdd\x3c\x3e\x8c\x29\xe0\x53\xf2\x39\xee\x99\xd2\x3b\x2c\x7b\x1f\x9c\xc5\xde\x13\x4f\xce\x9b\x46\xf9\xd0\xc6\xe7\x03\x07\x39\xbe\x3f\x54\xd2\x0d\xa5\x79\x17\x31\xa7\x95\xc2\x80\xe7\x0f\x39\xad\x56\x18\x3c\xc1\xfb\x39\xcc\x72\x0f\x59\x6e\x88\xa9\x81\xff\x56\x18\x3b\xd1\x55\xa5\x79\x63\x3d\xd8\x16\x66\xd2\x87\xae\x22\x6e\xf2\x66\x0b\xff\x9a\xdc\xe8\x1d\x2d\xe9\xb0\xc1\x79\x65\xa9\x8c\xe0\xdc\x90\x3c\x41\x55\xcc\xe6\x06\xdf\x68\x2f\xdf\xf6\x43\xde\xbd\xf0\xff\xc8\x16\xf6\x4f\x2b\x3c\x37\x68\xd3\x8d\xcd\xb6\x17\xff\x15\x29\x3e\xe6\xf6\xa3\x01\x76\xb8\xc3\x8b\x63\xd2\x1b\x5b\x4a\x0f\x75\xb1\xe5\xc4\xf9\x87\xc9\x37\x42\x3f\xc0\xb9\x44\xeb\xbb\x6d\xe0\xc9\xe6\xff\x79\x87\x1a\x6e\xe1\x66\xa7\xfa\x82\x39\xb2\x14\x95\x3b\x37\xa8\xc3\x8d\xa4\x36\x56\x26\x6c\xee\x93\xfa\xf0\x26\x31\xb9\x15\x8e\xdc\xcf\xa8\xca\xa7\xf4\x2b\x73\x4b\xb8\x56\xdc\x26\xd8\x52\xfb\x7d\xab\xc9\x96\xea\xa3\x22\x12\xcb\x8b\x81\x3a\xd2\xf5\xf3\x9c\x4c\xa7\xd9\x7e\xb1\x58\xb5\x28\xdf\x12\x8a\x99\xc8\x9a\x33\xe1\x1f\x38\xfd\xe6\x88\x17\x7b\x0d\xa3\x8e\x8d\xfe\x20\xba\xa9\xcd\xad\x51\xc1\xf6\xa7\x5b\xd1\xdc\x08\xbb\x04\xc3\x36\x16\x0e\x2c\x66\x98\x96\x24\x6a\x56\xe0\xfe\x61\xec\xb7\xb1\x20\x8b\xbc\x7c\xe7\x06\x6d\xb5\x32\x70\xcf\x0d\xd9\xad\x64\xf5\x9a\x5b\xc7\x66\x16\x22\xd8\x98\x05\x54\x51\xa1\x73\xeb\x58\x5b\xc1\xa4\x0d\xca\x6c\x23\xb3\xad\x77\xe4\x96\x14\x45\x3d\x19\xd0\x2f\x60\xe1\xfe\x29\x84\xe6\x36\x52\xa6\x89\x04\x56\xe6\xfb\xbe\xc1\x33\xbd\xfa\x0d\x78\x9a\x56\xbf\x40\xb7\x61\x53\x3d\xb8\x0e\x22\x82\xca\x65\x55\x75\x9c\x5b\x30\xcf\x84\x88\x0a\x0e\xdb\xcf\xdc\xda\x82\x56\x5b\xe0\x84\x92\x4c\xdb\x22\x97\x42\x34\xc5\x04\xf7\xf8\x05\xf8\xeb\x7a\xa9\x82\x66\x05\xcd\x1b\xd2\x0e\x4c\xcb\x82\x09\x78\xe9\x5d\x36\x09\x2f\xcd\x5b\x50\x94\x7d\x36\x19\x14\x65\x16\x91\xdb\xe4\x15\xc8\xb3\x32\xc9\xe0\xd5\x4d\x52\xaa\x86\xb8\x11\xba\x32\xcb\xcc\x6d\xe2\x78\xb2\x78\xa1\xae\x4c\x75\x24\xe7\xc6\x80\x35\xc5\x18\xcf\x6d\x12\x3a\x68\x5e\x17\x77\xa1\x00\xd3\x46\xfc\xe6\x69\x5a\x38\x90\x86\x3f\x48\x9a\x44\xe4\x22\x98\xd0\x91\xb5\xbd\x00\xae\x76\x0b\xc5\x95\x44\xb9\x49\x98\x61\x3f\x1f\x5c\x80\x84\x26\x81\x72\x5c\x00\x6a\xdb\x39\xd5\xfa\x60\x4f\x1e\xd7\xd4\xee\x24\x5a\xc3\x86\xdf\xf1\x67\xdb\xed\x30\x1d\x2f\x37\x00\xe9\xe5\x79\xdd\x73\x9a\xf4\x02\x1c\x21\x3e\xd3\x76\x50\x9b\x21\x60\xb0\x1d\x48\xce\x60\x21\x7c\xe4\x62\x6a\x90\xf0\x7c\xf8\x4c\x13\x34\x5f\xdf\x1e\xb0\x74\x1e\xf4\x41\x95\x90\x4e\xb7\x0d\x8e\x0c\x8a\xb5\x9d\xdb\x81\x2d\xe2\x31\xc3\x91\x41\x7e\xf5\x73\x83\xd7\x70\xf1\xd9\x03\x3d\xd8\x6c\xcd\x3f\x80\x1f\x05\xed\x37\x2a\xc6\x5a\xf3\x0f\x94\x75\xee\x12\x79\x0c\xaa\x65\xd1\x89\x31\x4c\x8d\xe1\xc4\x34\x4e\x8d\xf9\x1f\xa6\xf3\x0b\xb9\xf4\x9a\xa6\x13\x83\x12\xfa\xdf\x4e\x4e\xfc\x87\x6a\x2a\xc2\x84\x75\xb7\x0b\x1b\x5d\x37\x96\x0d\xc5\xa9\xa7\x87\x0d\x48\xb7\x3e\x67\x38\xe3\xd3\x9a\x30\xdb\x76\xf1\x0e\x6f\xe1\x72\x71\x18\x6e\x82\xc3\x70\x0b\x5c\x1a\xbf\x4f\x20\x62\x99\x4b\x10\x17\xde\x45\x37\x1d\x17\xfd\xcc\xf3\xd3\xec\x71\xd3\xc5\xce\xcf\xf1\x76\x21\x4d\xd2\x06\xdf\x06\x45\x27\xce\x8d\xbe\x0c\x96\x15\x37\x81\xc4\xfc\x4b\xe5\xbc\xb9\x31\x83\x7a\x33\x24\xb8\x69\x02\x75\xf3\x14\xaf\x86\x21\x4c\x5a\x6a\x51\x94\xa5\xf5\x44\xef\x43\xd6\xf0\x00\x90\xab\x60\x85\x0f\xdf\x74\x3c\xf6\x2c\xc2\xdb\xa1\x2b\x4a\x63\x6e\x08\x77\x2b\x9f\x67\x1e\xc6\xc6\x10\x0f\x38\x7c\xf9\x05\xaa\x59\x05\x4b\x0a\xeb\xbe\xc8\x6d\x65\x16\x00\xba\xae\x98\x89\x59\x7e\x9c\x78\x9d\xa7\x05\x0e\x11\x8a\xf2\x9c\xe5\xc7\x89\x77\x93\x84\xa5\xa1\xe7\xf5\xdf\xff\xba\xfc\xd2\x67\x81\x7f\x84\x02\x32\x67\xf9\x91\xa3\x75\x57\x2b\xd0\xe8\xf9\x32\x57\x10\x0a\xa7\x78\xcb\x59\x98\xb3\x5d\x83\x2a\xa9\xcf\xd3\x26\x2a\xdb\x0f\x1f\x68\x4c\x88\x84\x93\x63\xcc\x2c\x2f\x42\x1c\xf2\x3d\x9e\x05\xba\x38\x65\x81\x99\x85\xf8\x70\xf8\x99\x87\x6f\xf7\x07\x04\xd6\x82\x98\x05\xa1\x71\xdf\x67\x16\x6c\x30\x05\xbc\x79\x69\x03\x94\x0d\xda\x9e\x6e\x92\xde\x31\x54\x77\x59\xf2\xe8\xd3\x24\x14\x8a\x4b\xe1\xaa\x52\xc8\x1d\xcb\x9f\x2c\x8c\xca\x2f\xc0\x95\xb7\xf8\xff\x03\xff\xab\x4b\x38\x23\x1b\xfb\x15\xf8\x1e\x4b\xcb\x3f\x0b\xf2\x68\x75\x6b\x7f\xca\x8b\x1e\x87\xe2\x3b\x67\xa9\x29\xa0\xfd\xc5\xcb\xd2\xf2\x93\x9d\x05\xaa\x3f\xf9\x6f\xcc\xc2\xb4\xf0\x9f\x06\x26\x1a\xd4\xac\xc1\x19\x59\x99\x83\x67\xa9\x39\xcd\xfe\x81\xbb\x50\x20\xa7\x34\xae\xb4\x48\x64\x1d\x6a\x85\xf5\xcf\x42\xef\x08\x95\xca\x9d\x85\xde\x11\x56\x36\x94\x96\x25\xec\x35\x4f\x8d\xc9\xcb\x35\x2f\x2d\x57\x5f\x54\x34\x2a\x17\x9a\x3b\xa1\xc8\x95\xec\x29\x8d\x22\x57\x02\xb3\xa4\xc7\xb0\xb4\x7b\xa5\xf3\xcc\x77\x2f\x0c\x6f\x6b\xc3\x9f\x60\x72\x84\xbe\x4a\xe7\xf2\x6a\xb2\xa1\x3f\x54\x84\xde\x2c\x4c\x87\xd5\x86\x5b\xc4\xb6\x11\x70\x29\x00\x9d\x8a\x9f\x9b\x25\x41\xa7\x6e\xb9\x05\x0a\x44\x5f\xfe\xca\xe0\x69\x36\xfc\x43\xc3\x0b\xea\x61\xd0\xce\xad\x89\x49\x8f\x5f\xef\xcc\xc1\x31\x68\xb9\x06\x6f\xda\xc2\xea\x05\xa6\x57\x79\x5a\xcf\x32\x90\xbb\x48\x32\xb1\x00\x93\x56\xf3\x30\x2c\xaf\xdd\x33\x1f\x0c\xd8\xf2\xac\x21\x57\xd6\x47\x38\xb1\x1a\xb3\x15\x37\x25\x1d\x78\xa5\x9e\x2b\x41\x99\x39\xfc\x09\xf6\x81\xc5\x11\x3d\x7a\x9b\x8e\xa2\x32\x39\x2f\xc2\x42\x85\x95\x6b\xc2\x02\x64\xe6\x44\xf8\x93\xc5\x37\x44\x38\xb3\x5b\x35\xef\x0d\xe0\xcc\xf2\x1b\x7f\x39\x8d\xca\xc4\xd2\x7a\xeb\x4e\xaa\xe0\x74\x9c\x16\x7a\xf7\xaa\x98\xf2\x2c\xf0\x72\xa8\x82\xde\x65\xe5\x18\xfc\x42\xa3\x92\x4e\x63\x20\x2a\xfd\x88\xdd\x35\xf9\x83\x3f\x01\xbc\x6f\x6e\x13\x42\xce\x7b\x0f\xde\xbb\xd5\xbb\x77\xff\xb1\x01\x7d\xb0\x33\x7a\xc1\x2c\xbb\xd3\x5f\xdb\x2f\xbc\xab\xb9\x79\x1b\xed\x0c\x53\x1c\x6e\x92\x12\x42\x18\xb1\xc0\x7d\xb7\x5a\x10\x43\xef\x57\xcd\x70\xa8\x9c\xe3\x6b\x53\xd9\x73\xe6\x4c\x02\xea\x7b\x79\x6d\x99\x16\x41\x61\x8c\xb3\x20\x3d\x7e\xd5\x25\xa5\x24\x8e\x15\xb0\x2d\xa8\xa4\x33\xcc\x2e\xcc\xab\xda\xc2\x5f\x04\xfb\xf4\x17\x89\xf7\xf5\x8c\x61\xea\x14\x2f\x47\x32\x8b\x86\x7d\x70\x94\x7e\x81\x7b\x3f\xfc\x03\x72\xee\x4e\x77\x99\xc3\xf4\x0f\x0c\x8d\x34\xd7\x9f\xd4\xc4\x8b\x86\x33\xc5\xa2\xfa\xbc\x72\x22\x44\xf5\x45\xc7\x49\x8d\x13\x21\x6b\xd5\x4b\xf1\xc2\xca\xe6\x5b\x71\x41\xc4\xda\xf4\x20\x32\x60\xcd\x13\x85\x72\x82\xdd\x12\x0f\x20\xb2\x7a\x9a\xe0\x61\x5b\x3e\xe7\x05\x50\x64\x35\x37\xc0\xe5\xd6\x2a\xd6\x02\x17\xdb\x6a\x69\x71\x81\x21\xbd\xf8\x77\x32\xa4\x1a\x80\x49\xd8\xe8\xbc\xdc\xb9\xb6\x22\xf1\xc6\x11\xe8\x6d\x7c\xe7\xae\xd1\x20\x91\x44\xf5\x73\x88\x42\xd9\x18\xe6\xf0\x17\xa5\x96\x65\x71\xc4\x2c\x5a\x6d\xba\xcb\xe4\x68\x0d\xf2\xc5\xa9\xd5\x7a\xe1\x42\x0f\xdb\xcf\x41\x90\xc8\xd3\x50\x01\x5e\xb4\xbe\x25\x97\x87\x44\x6b\x1e\x11\x01\x57\xcd\xd1\x09\x3c\x7d\xd0\x3f\x3c\x8b\x2c\x96\x1f\xae\x84\x88\x44\x08\x5c\x35\x8d\x70\xb2\xad\x06\x02\x99\x25\xcb\xbb\xe8\x49\xfe\xfb\xd7\x45\xcd\x64\xfa\x92\x7f\xf5\xb7\xfd\xf7\xbf\xa9\xb2\x4b\xb3\xfe\x58\x13\xb1\xe9\x99\x83\x70\x03\x0d\x6b\xef\x67\xfa\xc8\x2e\x3d\x03\xe3\x49\x74\xd4\x1f\x87\xe0\xf6\xb8\x65\xa6\x7f\xa0\x47\x95\x9e\x09\x12\x4d\x31\xd3\xa5\x2a\x37\xed\xac\xc8\xa4\x2f\xcf\xba\x59\xe9\x62\xab\x0c\x6b\xb3\x32\x1d\xaa\xcf\xcb\x5a\xe8\x07\x2f\xa1\x5b\xa1\x24\x54\x6a\x9d\x59\xe1\x12\x6b\x3b\x73\x25\x64\x13\xdc\xa9\xcc\x4f\xe0\x23\xba\x66\x4e\x2b\xe9\x16\x2a\x2d\xb8\x3e\x72\x2b\x74\x84\xca\x76\x3c\x6b\x5a\x74\x05\x96\x2b\x5c\x64\xab\x94\x88\x15\x2e\xb2\xb5\xfd\x49\x3b\x57\x69\x0e\xf6\x95\xb9\x56\xf0\x56\xf3\x73\xc7\xb3\xc8\xa9\x30\x62\x84\xff\x0f\x36\x60\x72\xde\x53\xc6\x18\xb1\xc2\xbf\xb6\x4a\x6f\x5e\x2b\x2f\xc4\x52\x34\xd4\xc4\x84\x82\xd6\x95\x85\x0a\xbd\x07\x2b\x41\xa2\x2e\x30\x95\x75\x09\x8d\x2a\x6a\xe3\x9d\xa7\xf9\x0b\x8a\xec\xe5\x37\x30\x0c\x81\xef\xfa\x82\xc6\x18\x5e\xc8\xc6\x0b\xb1\x0e\x81\x8a\xa4\xfb\x2a\x95\x3a\x6b\x26\x54\xf0\xff\xef\xa6\xb5\x92\xb2\x76\xd2\xa8\x75\x64\x29\x22\xdb\x72\x2a\x94\x90\xd6\xcc\xd6\xce\x99\x97\x30\xab\x9d\x34\x0b\x3b\xd5\x4e\x89\xfe\xe9\x23\xf7\xb9\x86\x99\x98\x73\xf9\x8d\x09\xaa\x4d\x05\xc2\x9f\xec\xaf\x51\x5f\x88\x38\x55\x5b\x60\x56\x40\xc4\x08\x8f\x9b\xa5\x05\x8d\x9e\x2a\x2c\xc0\xbe\x03\x54\x64\x1e\xa8\x9e\xb9\x60\x76\x29\xd1\x44\x07\xd6\x90\xac\xa9\xb0\xf0\xfa\x44\xaf\x70\x58\xfd\x7e\x90\x5b\xc0\x2f\x3c\xa0\x51\x3d\xcc\x24\x49\x8b\x37\x73\xfd\x45\x34\x53\x60\x7d\xfa\x98\x5c\x6e\xf5\x31\x79\x18\x9a\x0b\xe1\x71\xe7\x93\xa7\x22\xfc\xaa\x9a\x29\xa1\x45\xfc\x48\x27\xf8\xb4\x76\x2b\x78\x2b\x7c\x5a\x8d\x22\xea\xe2\x65\xcb\x1c\xb6\x28\xef\xd4\x03\xbc\x50\x95\x55\x78\xd6\x45\x1b\x86\x37\xf6\x5a\x1c\x84\xbf\x20\x0d\x9a\x48\x66\xa9\x6a\xcb\x2f\x50\x9a\x08\x46\x54\x06\x64\xb5\xe5\x1f\x20\xb6\x2d\x03\x89\xe8\x84\xb6\x2b\xb4\x88\xd5\xd2\x07\xf1\x58\x8a\x2f\x99\x95\xfe\x73\x86\x5f\x75\xcf\x7d\x22\x1a\x90\x8d\xa0\x9a\x7f\x76\xaa\x38\x2c\xf2\x76\x8e\x42\xfc\xb3\x33\xd2\x41\x24\xb1\xe0\x91\xcf\xec\xba\x73\xfb\x7b\xab\x1d\x0c\x6c\x14\x51\x07\x39\x50\x1f\x40\x2b\x28\xcf\xc5\x59\x0f\x8a\x50\x1d\xf2\xf5\x84\x84\xf4\x49\x01\xa5\xde\x30\xfb\x9c\x01\x86\x53\x07\xac\xd5\xfc\x39\x8b\xa0\xc4\x1b\xde\xaa\x08\x67\x0a\x8b\x9b\x13\xcc\x10\x7e\x26\x38\xf3\x20\x2f\x06\xa0\xfa\x74\xbc\x88\x9c\xfd\x09\xf2\x03\x7c\xb6\x19\x73\x4c\x75\xef\xd4\x8b\x4e\x03\xa2\x01\x1a\x3b\xf9\x0f\xcf\xfa\x62\x27\x27\x7f\x9f\x15\xa1\xfd\xb3\x7b\x1b\xa1\x36\xf3\x66\xc9\x7e\x63\xed\x7d\xda\xdd\x24\x49\x48\xa6\x42\x41\x37\x0d\x29\x2b\xdd\xe5\x8c\x10\xeb\xbd\x90\xc8\x46\x6b\x7d\xd3\x94\xe3\x7d\x77\xe3\xfc\x8b\xbf\xe4\x54\x98\x15\x38\xe8\xb3\xae\x34\xd2\x9a\x31\x1e\x04\x52\x48\xb5\x5a\x11\x5b\x54\x7d\x10\x12\x16\x59\x8e\xbc\xb0\x68\x0e\x23\x10\x24\x9f\xb2\xc2\xb1\x3e\x29\xa9\x34\xc5\x50\xcf\xcd\xfe\xf9\x02\xe4\x2f\x7f\x71\xf2\x0b\xcd\xe9\x03\xd6\xd3\x94\xb5\x4c\x46\x25\xe0\xd5\x88\x7a\x3e\xcf\xb4\x1a\x4f\x3d\x33\xc0\x51\xcb\xd8\x7e\x24\x72\xe8\x79\xff\xef\x7f\xa1\xfa\xd6\xb3\xc1\x7b\x4e\x4e\xe1\xb3\xbd\x30\xa8\x2a\x6e\x6e\x36\xea\xda\x74\x98\x36\xa0\x22\x79\x9b\xce\xf6\xa3\x66\x43\x52\xa5\xa5\xaf\x9c\x36\x68\xdb\x28\xf0\xd5\xe3\x96\x6c\xd0\xf5\x43\xf0\x07\xbf\x41\xc9\x25\xe8\xd5\x0a\x58\x4b\xc7\x52\x43\xa8\x91\xc2\x7c\x66\x2b\x0b\x09\xfe\xfc\x3f\x64\x84\x04\x5b\x7b\x61\xd2\xb0\x2f\x57\x63\x0e\x79\xe3\xd5\x56\xd3\x39\x59\xcf\xaf\x48\xb0\xc3\x4c\xa3\x62\x4a\xda\x9a\x56\x73\x65\xd5\x62\xc5\x21\xb4\xfc\x8c\x82\xac\x92\xa4\x8d\x36\x4e\x8b\xef\x06\x33\xa6\xfd\xe8\x1a\xcd\x98\xc6\xb3\x0d\x41\xec\xc3\xb3\x84\xac\x9d\x2a\x67\x34\x5b\x9a\x39\x25\x7b\x5b\x4b\x39\xa7\xa5\x6a\x37\x12\x1a\x6b\x16\x01\x31\xa6\xea\x56\xcc\x46\x9d\x93\x61\x7c\xeb\xbc\x8c\x88\x86\x9e\x1c\xad\x4e\xe1\xc0\xef\x7b\x40\xa3\x8e\xa9\x0b\xd1\xb6\x4e\x49\x65\x7e\x1a\x3c\x6c\xc5\xe2\x0d\x61\xe5\x5d\xf2\xbc\x41\xc9\x64\xdf\x9f\x86\xfa\xc8\x9b\xa7\x9a\x5e\x6b\xbe\xc4\xb5\x41\xfe\xd9\xdc\x02\x95\x02\x22\x8a\x5a\x27\x43\xfb\x86\xb8\x1c\x7b\x35\x36\x66\xee\xf4\x45\xb2\x8d\x03\x2f\x98\x46\x06\x26\xbb\x01\x9e\x08\x6e\xe0\xc6\xfb\xfe\xff\xc1\xb3\x26\x96\x61\x3a\x8a\xbe\x9e\x0d\x71\xea\xd6\x42\xb5\xa0\xf7\x87\x64\x47\x8b\x1c\xa5\xba\x80\x23\xdc\xe6\x2d\x10\x44\x1c\x3a\x4a\xdb\x8b\x93\x86\x9c\x93\xdf\xbb\x3e\xa7\x45\x1c\x05\xcf\x38\x3b\xc2\xb5\x80\xcd\xd0\xfc\x12\xb9\x76\x26\x8a\x0c\x24\x89\xde\x60\x6e\x9d\x5d\xc0\xb9\xc1\xdc\x6a\x9f\xd5\x06\xd7\xb8\xe6\x6d\x93\x49\xdd\x2d\x6d\x90\x90\xa9\x79\x31\x17\xea\xbd\x78\xa3\x2e\x22\x2f\x01\x8a\xb6\x68\x63\xf6\xda\x51\x0d\x35\xfc\xcc\x8d\xa4\xb3\xb2\x31\x0a\xbd\x17\xb7\xb9\xe0\x48\xab\x71\xc2\x14\xda\xcd\x60\x8b\x69\xbb\x75\x50\x35\x80\x98\x66\x7e\x42\xc6\x25\xbb\x72\x34\x66\x50\xea\x3a\x0a\xdb\x4e\xa8\x35\xfe\x52\xb0\x75\x36\x78\x96\xd9\x5f\xb9\xed\x29\x31\xd5\x3e\xeb\x2b\xda\xd0\xd9\x0e\x46\xa2\xe9\x8b\xa3\x41\x14\x88\xc0\x63\xa2\x48\x81\x26\xed\xe0\x4a\x6b\x8e\x0e\x5e\x89\x2c\xa4\xa1\x1e\xb2\x83\x53\x3b\xc8\xdf\xee\x90\x6a\x58\x73\x1f\xd3\xb5\xf7\x62\x12\x38\x47\xfa\xe2\xa4\xf3\xa9\xf0\x6a\x3b\x39\x69\x9a\xa3\x93\xf8\x55\x88\xb8\x9d\x30\x77\x09\x1a\x36\xa4\xdd\x6c\xee\xe1\xa4\x7c\xd3\x20\x10\x31\x60\x2f\xc3\x06\x3b\x67\xd3\xe9\xdd\x4e\xe2\x3c\x8b\x37\xd8\x3d\xed\x77\xd6\x5e\x8c\x34\xec\x3f\xd5\x10\x01\x1e\xc3\xff\x57\x8e\x51\x14\x5e\xa4\x48\x0d\x5e\x9c\x56\xff\x0f\x8a\x74\x4b\x6c\x2f\x42\x72\xf0\xf4\x6c\x77\x72\xa2\xa6\x99\x09\x30\xbb\x69\xbe\x79\xb8\x8a\xa4\x9b\x89\xfc\xfc\x01\x25\xb4\x90\x66\x7b\x72\x9a\x45\xf4\xc3\x2d\x29\xe8\xd8\xe8\x58\xe6\xfb\x7c\x03\x6a\xb1\x17\x51\x7b\x28\x0d\x2d\x70\x9f\xa4\x4a\x74\x3f\xb4\xb7\x79\xdf\xc3\x09\xac\x55\x37\xc9\xcb\x8a\xae\x58\xed\x01\x37\x68\xe6\x3a\x63\xa8\xa7\x9f\x71\x37\x91\x2d\xa3\xff\x92\x86\xa5\x1f\xe8\x82\x23\x98\xd1\x69\xc2\xf3\xe5\xa4\x6f\x3c\x37\x24\x2a\xfa\x86\x6c\x3c\x62\xf2\xfe\xc2\x8a\xaa\xea\x55\xef\x19\x04\xa2\xfd\x3f\x8e\x70\x8d\xb2\xc3\x44\x67\x37\xc2\x4e\xf5\x4d\xff\x7c\x40\x86\x92\x80\xec\x1b\x05\xc5\x32\x09\x18\xb6\xe6\xbe\x17\xf2\xfc\xd0\x33\xd7\x42\x1c\xd1\x4b\xfd\xef\x7f\x61\x3f\xb3\x8e\x2c\xe7\xf6\x3f\xe8\x2c\x87\xe3\x4b\x5c\x67\xc2\x20\x2b\x80\x7a\x49\x2a\xfd\x09\xd7\x46\x34\x41\xe1\x63\x00\xd8\x0b\x0f\x60\xe1\xfa\x5e\xa9\x63\x12\x58\xea\xa9\xa2\xd1\xd6\xed\x69\xb6\x13\x5b\x76\x9a\xed\xdc\x66\x25\x4e\xd0\x5e\xee\x40\x37\xbe\xe0\xf4\x7a\xbf\xa0\xd2\x6b\xc5\xd8\x43\x5f\x77\x3b\x34\x2e\xf6\xba\xe9\x0d\x33\xe7\xc5\x68\x15\x75\x51\xd5\x41\xa3\x66\xa2\xb9\x81\x89\x06\xc4\x40\x8d\x69\x8a\x34\x71\x08\x50\xb6\x39\xad\xc3\xe7\xcb\x0e\x0a\x1d\x39\xcb\xc3\x43\x4a\x2c\x24\xb8\xd5\x7b\xf2\x9b\x7a\xe8\xdc\x69\x82\x15\x9d\x5e\x5f\xbe\x4f\xf4\x5e\x21\x96\x45\x34\xa2\x1f\xed\xc2\xd0\x53\xbd\xd2\xdc\x24\xf4\xd9\x66\x8f\xce\x41\x99\x86\x85\x06\xfd\x4c\x18\xeb\xef\xc9\xa1\x5e\x28\x46\x4b\x46\xff\xfd\xe5\x20\xea\x9d\x3a\x57\xa9\x5a\x3a\x32\xf8\x7c\x66\x7d\xd0\x78\xe6\x59\x1c\x13\x7e\x6b\xe2\xc6\x81\xcc\xf1\x9e\xf5\x01\x48\x61\x7e\x7e\x71\xd4\x54\xc1\xdc\xd9\x81\x9b\x9a\x74\x56\x7d\xe4\xac\xeb\x05\x82\x18\xc9\xa6\x1e\x44\xfe\xba\xfe\x77\x56\xae\xb1\xf1\xb5\xd3\xbf\xdf\x46\xa6\x4e\x73\x9d\xdd\xcf\x3b\xcc\x75\xb6\xce\x76\x9a\xeb\x6c\x95\xec\xf0\x2a\x6b\x82\x18\x3d\x61\x8e\x99\x6d\x22\x5f\xb8\xe7\x89\xe9\x77\x42\x8a\xb3\x3e\x89\x08\xbc\xb2\x93\xe3\x70\x93\x58\x59\xd3\x34\x73\x5c\xfe\x01\x67\xc9\xa7\xcb\x83\x2f\x98\x48\x26\x73\xd2\x5d\xb1\x4f\xc2\x06\x1d\xa0\x1d\x51\xce\xb6\x5b\xf7\xc5\x3d\xa5\x16\x68\xd1\xeb\x9e\x7d\x04\x5c\xda\x6f\xa3\x03\x39\xd9\xc0\xd7\x59\xf1\x5a\xf1\xe8\xb3\x03\x49\xd9\xeb\xb9\x23\x12\xa0\x7d\xfe\x87\x2c\xd2\xd1\xd3\xa9\x2e\xea\x9f\x1e\x38\xf5\xfe\x22\x2d\x7e\x52\x64\xf4\x3d\xa5\x93\x26\x06\x6e\x65\xf6\xea\xe9\x4c\x6c\x6e\x5d\x48\x87\x0a\xc9\xf6\xfb\xbe\x53\x86\xea\xce\xdc\x77\xce\xbd\x3f\x40\xc9\x05\x8b\x54\x84\x64\x76\x6f\x22\x84\x06\x28\x5b\xcd\xec\xfb\x7b\x48\x4f\xcb\xa6\x9d\xa7\x9f\xd7\x6e\x47\x5e\xd3\x0f\x89\x0f\xa2\x7f\xd5\xc0\xf1\x7b\x77\x81\x2e\x8f\x9d\x11\x9b\xbe\xb4\x77\xa6\x41\xb7\xae\xa5\xa7\x01\x50\xea\xc2\x7e\x50\x33\xa2\x6b\x54\x27\xc4\xf3\xd9\x04\xd7\xb6\xe6\xe3\x92\x06\x3f\x5f\xab\xfa\x89\x48\x3d\xdd\x40\x3a\xf3\xa2\x5b\x3d\xd3\x59\x38\xf1\xb3\x79\xe1\x69\xd6\x7c\x46\x33\xad\x79\x37\x83\x9d\x74\x9f\x5b\xfe\x02\x97\x5c\xe1\x84\x9e\x41\x9c\xde\xbd\x27\x0e\x4c\x33\x10\x21\x99\x05\x20\x62\x36\xed\xa1\xd0\xd3\xa0\x27\xe0\xda\x61\xc0\x6b\x3e\x78\x10\x0b\x60\x07\x84\x7e\x91\xc1\xdc\x43\x5a\xf0\xa4\xaf\xe8\x37\x37\xb7\x67\x0e\x69\xce\x37\xef\xab\x9b\x34\x68\xe2\x18\x0d\xf0\x91\xd2\xa9\xa5\xf2\x01\x0a\x2d\x95\xef\x07\xfd\xc6\x5a\x74\x7f\x40\x05\xb4\x39\x2a\x3d\xbf\x0c\x24\x50\x96\xa6\x39\xb8\xaf\x3f\xd9\xa9\x66\x02\xa8\xcd\x9e\xdd\xfd\xe1\xfa\xfb\x03\xf4\x69\x61\x80\xba\x34\xd3\x48\x83\x55\x0f\xad\xc4\xec\x70\xfc\xb2\x79\xbf\x3f\x89\x13\xfe\xf5\x30\x7e\x54\x29\x6a\x6e\x07\xd2\x52\xda\x75\x71\x00\xd4\x29\xe4\xfb\x3d\xf8\x90\xa6\xaf\xea\x99\x2c\xf9\x27\x3b\xd1\x80\xda\xc9\xde\x0e\x03\x39\x70\x42\x69\xb1\xde\xed\x43\x72\x86\x7e\xe0\x85\x42\x12\x72\x40\xaf\x64\xa7\x8b\xb1\x8d\xff\xfe\xd7\xad\xbc\x1e\x5b\xbc\xcf\xba\xf7\x8d\x8d\x6e\x68\xba\x61\x8c\x54\x33\x89\x15\xc6\xc6\x49\x75\x97\x14\xca\xcb\x3f\xf0\x5a\x24\x7e\x1c\x25\xa9\x54\xa7\xd0\x4c\xd9\xf6\x3f\x4a\xd6\x72\xd3\x34\xd3\xcb\xdf\xfe\x04\xa3\x50\xc1\x1d\x6e\x82\xbb\x4a\x9d\x16\x14\xec\xd5\xa1\x3a\x2a\x36\x91\xe7\x21\xd1\xd9\xf2\x0f\x39\x50\x11\x91\xda\x2a\x2d\xfe\x60\xa1\x6b\xab\xab\x06\x6d\x66\x5d\xfc\x34\xd2\x66\x66\xf6\x40\xc0\xa4\x1d\x0a\x46\xcb\x14\x88\xea\x04\x6e\xfd\x63\xea\xfa\x34\x98\x75\x3c\xb4\x2f\x46\x82\xba\xee\x37\xb0\x9b\x25\xda\x07\x40\x9a\xea\x90\xcd\x81\x34\x8b\x56\x07\x8f\x9e\x2c\xa0\x0f\x3a\x8f\x38\xaf\x18\x12\x52\x58\x3f\x35\xe0\x78\xef\xe0\x91\xc1\xa2\x82\xdd\x93\x07\x8b\x57\x28\xeb\xd6\x1c\xb0\x70\x8d\x4f\x17\xb0\x36\x59\x55\x38\x3a\x42\xa4\xbd\x7e\xa8\x3b\xfd\x71\xed\x1b\x80\x59\x61\xd6\x86\x9b\x95\x5d\xaf\x07\xf2\xcc\x84\x32\x50\xcd\x31\x68\x6d\xd4\x09\x36\xa8\xf2\xb2\x9e\x65\x20\xa3\x85\x35\xd5\x83\xa5\xa6\xad\xd1\x1a\x70\xfe\x57\x3e\xa8\x39\x06\xef\x57\x9e\x88\x41\xf4\x60\x2a\xe0\x48\x65\x6b\xf7\x08\x86\xe9\x98\xcd\x90\x1a\xb1\x58\x43\x39\x22\x39\x57\x9d\x04\xe3\x18\xdd\x24\x35\x92\x26\x13\x58\x4d\x55\x7a\xe6\x00\x54\x73\xb5\xad\x39\x66\x36\xa9\x4e\x27\x64\xad\x65\xeb\x98\x64\x5d\xcf\x0d\xfc\xa4\xea\xe7\x0b\x9e\xce\x1e\x48\xe6\x99\x10\x68\x1d\x30\x9c\xb5\xcf\x73\x47\x3a\x1a\x8d\x6b\xe5\x40\x35\xae\xb4\xa4\x49\x8b\x35\x90\xc7\xb0\x58\xbf\x37\x76\x18\xf2\xad\x5b\x1b\x3b\xfb\xd0\x17\x3b\x10\x64\xf1\xff\xec\x43\x98\x60\xc0\x2d\xc9\x86\xb5\x41\x23\x95\xd5\x1d\x03\x69\x20\x6c\x9e\x19\xf0\x96\x6f\x96\x55\x07\x25\x8f\x27\xfb\xe0\x5e\xf0\x44\x20\x2f\x84\x6d\xb9\xe3\x08\x76\xe1\x26\x28\x27\x3c\x0a\x86\x28\x5a\x13\x36\x8e\x87\x3f\x68\xae\x4e\xfa\xfc\x08\xf2\x8d\x33\xc9\xf0\x0f\x49\x86\xda\x40\x18\xa3\x95\x59\x83\x1e\xf0\xd6\xd3\x0c\x2a\x82\x84\xf0\xc7\xc9\x44\xc0\xfe\x1f\x47\x9f\x85\xf0\xc9\x6c\x84\x6e\x30\x33\x99\xe9\x19\x59\x94\x84\xdf\xc6\x95\x24\xfe\x25\x03\xdd\x1c\x0c\x70\xb4\xae\x6c\x5c\xa4\xdf\xcf\x54\x3f\x7b\xaf\x31\x33\xa0\x72\x5c\xcf\xc1\xb4\xd9\xba\x56\x0d\xa2\x1a\x2b\x8e\x06\x22\x1c\x6d\x16\x1a\x30\xb5\x15\xab\xaa\x06\xfc\x94\x6c\x8e\x18\xf0\x53\xb2\xe1\x6c\x10\xe5\x58\xdb\x36\x98\xaa\x42\xd9\x8f\xe7\x00\xca\xf9\x08\x08\xd6\x72\xb6\xba\x6d\x24\xcc\x31\x7b\xdc\x64\x0f\xcb\x6f\xe4\xae\xb0\xc1\x70\xdc\x27\x9e\xdd\xe7\x05\xbd\xaa\xdf\x47\x4a\x18\xdd\x66\xc7\x4d\xa2\xc5\x19\x0f\x1d\x39\x34\x4d\x80\x34\xdd\xec\x98\xc9\x29\x3c\x8f\xb0\x96\x75\xef\x19\x58\xcb\x62\xfb\xfc\xc0\xbd\xef\x51\xc3\xab\xc8\x18\x37\x50\xdb\xc5\x06\x8f\x80\x0f\x91\xbd\x34\x02\xd6\x34\x3b\x98\x05\x0b\xb9\x58\xa3\x13\x3f\x2e\xb6\xb8\x37\x00\x82\x6c\xaa\x8a\x1f\x17\x5f\xdc\x1b\xbf\x89\x17\xa6\x9e\x39\x4a\x37\xb0\xe3\xd9\x3d\xd0\x77\x58\xeb\x10\x30\xb8\x79\x5a\x83\x6e\x48\xca\x44\x39\x83\xde\xed\xd6\xbe\x05\xf3\x07\x2a\x97\xda\x0c\x14\x7e\xe9\x92\x25\x81\x6c\x15\xfd\xe7\xff\x79\xe0\x2c\xbf\x40\x7f\xd5\xee\x37\xb0\x56\xc3\xcf\x04\x29\x9e\x07\x40\x25\xeb\x87\x03\xa5\xa2\xe3\xf3\x01\xaf\x02\x9e\x97\x8d\x48\x5d\x28\x25\x12\x3a\x49\x04\x46\x49\xbc\xe0\x37\x92\xa9\xb5\x7c\xa5\xa3\x53\x4d\x55\xa1\xa0\xf6\xd4\xc0\xe3\xdd\x8a\xfa\x28\x8c\x72\xea\xee\x23\xe7\x4e\x3f\xc0\xf0\xf7\x71\x33\x8b\xca\xfd\x2f\xe4\x1d\x70\x60\xb2\x59\x25\x90\xef\xcf\x36\x91\x60\xb6\x0a\x15\x62\x9f\x01\x87\xa4\x8f\x4f\x4c\x20\x5b\x45\x2f\xee\x22\xe7\x46\x93\x05\x6c\x65\x43\x4c\x10\x5b\xd9\x63\x25\x98\x8c\xc2\x0a\xb7\xa0\x39\xd1\xaa\xc8\x80\x3e\xcc\xd1\x57\xd1\x98\x53\xc0\x1f\x60\xf3\x9a\x67\x68\x2c\xb4\x7a\x34\x90\xf2\xda\x36\x85\xe8\x39\x31\x5a\x40\xc4\x38\x5a\x5d\x1a\x48\xd0\xe7\x10\xb4\xe8\x98\x17\xe9\xba\x03\xb6\xc3\x8f\x01\x33\xe0\xaf\x6e\xb5\x73\xa4\xf2\x6a\xf8\x0b\x4c\x83\xce\xfe\x40\xf1\x95\x2e\x81\x14\x8c\x81\xb4\x8a\x37\x06\x49\xf2\x07\x88\xa5\xf2\xf6\x86\xb7\xb9\xb5\xe9\x81\x7c\x7c\x5d\x27\x45\xc0\x8c\x67\x5d\x7a\x0c\x72\x87\x1b\xcc\x74\x16\x66\x5a\xd4\x51\xf9\xa8\xe8\x02\x21\x90\x56\xf9\x47\x40\xc3\xeb\x7d\x81\x4c\x5f\xdd\x02\x25\xa8\x6b\x1f\x7f\x0a\x32\x0a\x9a\xe8\xac\x50\x8b\x40\x40\x9a\xf9\x19\x06\x39\x67\xc3\x88\x49\x38\xeb\xad\x3f\x73\x8b\xf8\x0b\x00\xaa\x61\x81\x04\x3f\xf3\x69\xc5\x7a\x4c\x3a\x25\x0c\xb7\xf1\x0a\x7a\xfb\xe9\x06\xf3\x51\xf8\xe6\x17\x8b\xc7\x91\xc9\xa0\xea\x49\x25\x03\x67\xd0\x6a\xe7\xcb\x64\xac\x14\x28\x1a\x59\x06\x24\x5a\x82\xc0\x2a\x67\x55\x61\xec\xdc\x14\x96\x9c\xf0\x2d\xb2\x06\x37\x76\x9a\x0e\x75\x39\x0b\x26\x89\x18\x9e\x0c\x80\x2e\x2b\x02\x63\xcf\x3e\xdd\x04\xfa\x34\x95\x07\x39\x4e\x58\x23\x50\xba\xc4\x7a\xbf\x40\x85\xbb\xee\x6b\x6b\x20\xa9\xc3\xf2\x5e\x87\xe5\xcd\x0a\xb0\x80\x6f\x51\xff\x34\x78\x93\x46\xb7\x48\xe7\x5d\x5d\x18\x03\x31\x87\x9f\x7d\x46\xc4\x35\x2c\x05\x01\xb0\xac\xbd\x0c\xe0\x29\x2b\xe1\x02\xb9\x95\xad\x06\x0c\xa6\x89\x68\x9f\x16\x29\xc1\xc2\x6f\x10\xb0\x48\xc3\x15\x27\x27\x4e\xa3\x38\x49\xb5\x05\xed\x45\x22\xf5\x01\x5c\xbf\xad\x74\x89\x2b\xd7\x5f\x8b\x87\x08\xc2\xbe\x59\xa2\x5d\xc4\x9e\x5e\x1c\xd6\x1a\xf1\x3d\x2a\x12\x25\x79\xa0\x54\xfe\x0c\x6f\x36\x78\x20\x39\x86\x2a\x98\x21\xd9\xaa\xc0\x20\x4c\xb2\xa7\x56\xd0\x5d\xdb\x1a\xea\xa0\xc9\x6e\x58\x0e\x32\x63\x97\xb5\x06\xf1\xc2\xa0\x70\xb8\x65\x40\xdb\xd3\x7d\xdb\x0e\xe2\x1e\x5d\x7b\x83\x45\x89\xad\x77\x0d\xf8\x19\x75\x5d\x83\x83\xea\x21\xeb\x55\x03\xa9\x1f\xba\xf1\x60\x30\xf0\xaf\x7d\xda\x64\x14\x8b\xa6\x93\x59\x8e\xdb\xa7\xcd\x03\x79\xe8\x34\x0c\xa8\x7f\xac\xcb\x8b\x87\xa2\x4e\x73\x35\xe1\x69\xd4\x7d\x11\x9e\xcc\xe4\xe5\x78\xa2\x89\x30\x3f\x5b\xa2\xe6\x2f\x97\x70\xea\x07\xb8\xbd\x49\x90\xcc\x1f\x97\xb4\xbb\xc9\x9d\xd2\xc9\x6f\xe4\xe4\x2e\xfd\x80\xed\xd1\xdd\x07\xc8\x96\x7a\x6f\xfe\x38\xb7\x6a\x31\xd5\x46\x5a\x8d\x49\xe8\x23\xd1\x34\x37\xb2\x80\x06\x3e\xb7\x64\x01\x75\xc9\x4c\x5d\xbe\x05\x4d\x18\x0e\xad\x07\x9b\xf0\xfb\xb6\x6a\x6e\x6e\x54\x93\xeb\x98\x99\x5b\x8e\x53\x54\x6f\xb9\x1a\xee\x83\x52\x3f\x4c\xd6\xc9\x4e\x35\x30\x66\x5f\xb6\x42\x77\xbe\x78\x29\xa6\xc4\xf4\x2c\x1c\x98\xfa\x28\xdc\x61\x9a\x09\x78\x8e\xdb\x97\x73\xa2\x2e\x9e\xb5\xdc\xb3\xf0\x38\xd6\xf9\x3c\x0b\x8f\x5f\xe9\xf3\x66\xe1\xa6\xae\x7f\x3a\x9a\x26\x6b\x25\x5b\xb7\x3b\x2b\x09\xd4\x44\x57\x1e\x95\x3a\x5d\x67\xa5\x0c\x18\xfe\x81\x13\xab\x59\x82\x67\xb7\x35\x63\x33\xa3\xfd\xa4\x62\x9a\x04\x52\x9e\x78\x6a\xad\x54\x6a\x7b\xce\x54\x4a\x89\x86\xc6\xad\x67\x76\x68\x98\x35\x8f\x99\xe1\x81\xd6\x40\xcf\x06\x61\xea\x85\x6a\x34\xfd\x48\xc3\x34\x51\x19\xcf\x46\xe2\x49\x3f\x6e\x15\xdc\x9d\xb3\xe5\x5a\x6b\x25\x5e\xe8\x55\x9c\x04\x61\xa2\x9c\xb2\x6f\xfa\x93\x5a\xaf\x90\x5e\x65\xf6\xa4\xda\x3f\x90\x6a\x75\x01\x57\x6f\xeb\x2d\x67\x4f\x22\x35\x93\x9d\x5b\xd3\x7d\x40\xcd\x65\xab\xf1\x4c\x70\x26\x28\x34\x09\xce\x3c\xcc\xce\xb9\x97\xde\x65\x42\x0f\x56\x3e\x34\x51\x1a\x7b\xf5\xa0\x07\x6b\x1f\xa2\xb0\x75\x3d\x0d\xf0\x0c\xeb\x9b\x39\x9a\x9e\x61\x56\xe0\x4e\xe0\x3b\x63\xa7\x39\x38\x6c\x75\x39\x98\x20\x49\x3d\x8e\xdc\xb9\x5a\xbc\x17\xef\x55\x5f\x93\x27\x73\x64\xa8\x42\xe9\x9c\x83\x0c\xe4\x67\x4e\xbd\xd4\x64\x93\x06\x4a\xd5\x0f\x9d\x33\x98\x23\x52\x34\x04\xd7\xc6\xfb\x0a\x09\xce\xac\xee\x98\x70\x67\xb7\x5a\x66\x22\x27\xc6\x32\xd1\xb4\x70\x5a\x11\x3f\x19\x7f\x68\x55\xfe\x44\xc2\x32\xeb\x71\x26\xec\x99\xdd\x34\xc2\x9e\x19\x3a\xb2\xe6\xcc\x79\xd4\x07\x13\x3b\xd1\x4b\x47\x90\xa8\x5b\xf1\x64\xad\x90\x9f\xdf\x87\xed\xc0\xf3\x8c\x60\x42\xdf\x79\xe7\xe2\xf7\x1a\x02\x14\x66\xd3\x07\xc1\x82\xa8\x91\x42\x64\x52\x7f\xf6\x11\xca\x0b\xcc\xa5\x2b\xee\x5c\x1c\x91\xa6\x60\xf1\x30\x32\x83\x27\xd6\x13\xe0\x98\xc4\x7a\xcb\xcf\xd8\xa6\xba\x5d\xce\x9d\x07\xa4\xf9\x17\x71\x80\x5d\xe9\xeb\xe7\xdc\x59\x41\x42\x83\x40\xda\x55\x2b\x4c\x26\xf4\x6b\xbe\x65\x4f\x14\xb1\xf3\x75\x75\x22\x68\x4f\xd5\x70\xe6\x3c\xb8\xce\x7e\x3f\xa0\xeb\xf4\xff\x3c\x03\xcc\xff\xb4\xd0\xa9\xf0\xec\x9c\x70\xa9\xf2\xad\x7d\x9e\x39\x68\x0d\xea\x45\x7a\x65\xf3\x7e\x38\x0b\xbc\x85\x44\x32\x34\x69\x76\xe5\x9d\x88\xd0\x6b\x4e\x21\x35\xcf\x9c\x04\x0d\xfa\xa4\xcc\x37\xd5\x27\xdd\x22\x3c\x4d\x27\xe2\x6d\x85\xd3\x26\x95\x67\xe3\xf3\x03\x74\xf0\x4a\x1e\x3f\x27\xdd\xa8\x54\x5c\x74\x4e\x28\xcc\x7c\xa3\x9e\x2f\xf6\xab\xd3\x3b\xe6\xe2\xa1\x5f\xfc\x03\xbc\xa2\x2c\x8b\x60\xe4\x7b\x2f\xbb\x7f\x39\x87\x2e\x1e\x9c\xe6\x76\x54\x98\xf3\xe5\x7a\xde\x54\x59\x7a\x87\xde\x70\xff\x37\xbd\xa9\xf8\xf2\x06\xbb\x27\xfa\x17\x3f\x67\x3c\x9d\x37\x10\x00\x9c\x6f\x65\x13\x00\xce\x1a\xca\xf9\x70\x06\xfc\x7e\x07\x30\xd2\xac\x3f\xd9\xa3\xd8\xf9\x41\x6a\x0a\xcf\x08\x54\x63\xbe\x7b\x4f\x38\x64\xd9\x01\x70\x3e\x28\xb6\x6a\x66\x7b\x50\x33\x40\x68\x6f\xfd\x72\xd5\x96\x7e\x20\xc5\x5d\xcf\xa0\x50\x98\x67\x25\x96\xd3\x5d\x7b\xfd\xe0\xaa\xa2\x45\x5b\x50\x5b\xf9\x2a\xb5\x7e\xa0\x68\xf3\xff\xd4\x27\x48\xee\x2d\x20\x33\x0f\x71\x6d\x54\xbd\xf9\xff\x8a\x06\xfc\x4c\x67\x3a\x51\xb4\x81\x09\x84\xd4\xd7\x0b\x90\x86\xe7\x70\x31\xbf\x96\x55\xee\x0b\xca\x21\x5f\x0f\x57\xa1\xb5\x49\x3b\x7c\xc1\xf2\xd6\x37\xcf\x12\x13\x26\x38\x3e\x6f\x21\x14\xae\x2b\x53\xf8\x5c\x95\xd2\x5e\xa2\x6d\xd1\x99\x4a\xb5\x3b\xe6\xaa\x3c\x7a\x25\xdb\x16\x40\x8d\x6f\x46\xab\xf2\x12\xda\xfd\x02\xb8\x4b\xbb\x7a\x41\x7f\x14\xde\xa4\x8b\xc6\x39\xc7\xaf\x2d\xc0\x1e\x5f\xf8\x16\xf5\x47\x2a\x75\x30\x57\x23\x0a\x2e\xfe\x61\xc3\x5c\xa8\x85\x46\x2c\xa6\xfb\xc3\x6a\x9c\x7d\x2d\x37\x60\xcf\xf8\x34\xd0\xf9\x81\x5f\xa0\x01\xc3\xb3\xc9\x24\x08\x4e\x67\xba\xa0\x61\x1a\xe6\xa0\x17\xe6\xfc\x7f\x34\x51\xc8\x7b\xa6\xe8\x4f\x65\x13\xc7\x02\x6a\xb1\xd1\x64\xb1\x24\x9a\x4d\x07\x2b\x41\xc9\xe7\x0b\x9e\x9d\x3a\x07\x56\xa7\xee\xe2\xf3\x09\xd8\x46\x62\x7b\xd1\x3f\xdd\xab\x01\x1d\xd3\x90\x7e\x66\xa5\x8e\x49\xe7\xc0\x1a\x39\x75\x6a\x81\x15\x7f\xbd\xdb\xd7\xe0\xdc\x69\xb2\x07\x39\x40\x2c\x02\xad\xd3\xa8\xee\x92\x00\xd1\x44\xc3\x4b\xca\xc8\x7c\x0d\x8a\xb4\xe5\x2e\x1f\xbc\xa0\x61\x07\x45\x9a\x89\x44\x16\x04\xfb\x1d\xae\x48\x1a\x45\x03\xd4\x54\x06\xca\x2b\x88\xc5\xa5\x7e\x59\x70\xc4\x1a\x52\xad\x2d\x64\xe6\x2a\x36\x41\xac\xa0\xd4\xf6\x30\x22\xa7\x5a\xf3\x40\xf7\x71\x1b\x0c\x16\x80\x8b\x91\xf1\x42\x76\x2f\x55\x4c\x9d\xeb\x05\x2e\x5b\x9d\x02\x80\x6b\x42\x32\x5b\x4a\x21\x9b\x97\x0f\x86\x35\x07\x84\x92\xe6\x81\x99\x56\xcd\x72\xf0\xba\x1a\x02\x26\x2b\x75\x5d\x9f\x1e\xb9\x14\x7e\x86\xee\xcb\x02\x60\xe6\x10\xdc\xc3\x83\x52\x9d\x7f\x4a\xc2\xb0\x98\xf2\x5e\x25\x59\xe7\x5a\xa4\xdf\xcf\x8d\xfb\x54\x33\x44\xb5\x98\x11\xeb\xca\x1c\x0b\x7e\xc6\x08\xbd\x91\x17\x46\x28\x45\xdb\x42\xa5\x09\x5f\xfb\x17\x1d\xae\x86\xc5\x28\x1d\xae\xac\xfb\x5f\x70\x6e\x37\xc0\x5d\x7b\x0a\x30\xcd\xc1\x0e\xf6\x15\x4c\x59\x3b\x0a\xae\x7a\x52\x91\xd7\xcb\xd0\x6c\xa5\x3b\x95\x9f\x21\x07\x84\x62\x16\x74\x6a\x4e\xa5\xb8\x0e\xce\x92\x2e\x8e\x0b\x09\xee\x8d\x30\x16\x0c\x99\xd6\xb1\x2d\xba\x4f\xd9\xe6\xb2\x8e\x24\x59\xcb\x48\x7f\x2a\x1b\x5d\xd6\x41\xa1\xab\x5b\xda\x82\xbb\x94\x31\xca\x3a\x92\x79\xdd\x09\xf6\xa0\x74\x4b\x0b\x30\xc7\xea\x91\x75\xf1\xae\xe1\x3d\xc8\x9c\x58\xd3\x1b\x24\x35\x5a\x5e\xbb\x2b\x48\x95\xfa\xb8\x78\xe9\xf2\x36\x85\x43\xf9\xe7\x68\x60\x01\x2f\x0b\x06\xe6\x9b\x77\x10\xc8\xba\x07\x74\xee\x22\x02\x29\xae\x3e\x52\x9a\xc5\x70\x6d\xd0\x5a\x37\x95\xbb\xc3\x6f\x90\xc3\x7d\x70\x3f\xd4\xfb\x78\x97\x3e\xc4\x73\xd2\x2c\x2c\xa2\x19\x4f\x05\x7c\x95\xc2\x91\x81\xeb\x01\x53\x76\x7f\x90\x54\xf8\x85\x8b\x4d\x6a\xfa\x9f\x64\xd3\x7f\xd3\xbd\x33\xeb\xd4\xcf\xcf\xc8\xa9\x61\x83\xd4\x0e\xcb\x9d\x2d\x3d\x3b\x2c\x77\x96\xca\xfb\x8f\x87\x7b\xf5\x07\x2c\x88\xe8\x17\xc0\xa6\xd3\x3d\x80\x4d\xb5\x51\xf6\xdf\x0d\xb7\x30\x7f\xcf\xeb\xaa\x1b\x40\x0e\x29\x6f\xee\x9d\x0e\x4a\x8e\x94\xdb\x37\x84\x42\x0b\x80\xec\xd0\x34\x99\xc5\x76\x28\x9a\xa6\xbd\xff\xf7\x2d\x97\x57\x34\x41\xd3\x64\x71\xb5\xa3\x24\xae\x43\xbe\x76\x68\x9e\x8c\x2b\x77\x64\x25\xf5\x4e\xda\x89\x99\xc4\xf5\xff\x8f\xb1\x37\xc9\xd9\xa6\x57\x96\xc3\xe6\x5e\xc5\xb7\x03\x17\x7b\x72\xf2\x4f\x3c\xb6\xf7\x50\x1d\x0d\x0d\x74\x75\x71\x2c\xed\xdf\xa8\x08\x32\xe2\x39\x80\x24\x7c\x83\x17\x78\x9f\x62\x15\x9b\x64\x32\x33\x99\xed\x49\xa5\x92\x4d\xac\x27\x92\x4a\x99\xb1\x9c\x14\xa2\x6c\x8d\x3c\xe3\x5a\x94\x86\x8c\x14\xf7\x45\xc3\xce\x6d\x94\xd3\x6f\x9e\xce\xe0\x3e\x21\x87\x55\xf7\xc0\xc3\x29\x91\xe9\x8c\x48\xcd\xac\xeb\xea\x89\x22\x5e\x55\x72\xc1\x49\x1b\x9d\xcd\x7c\x67\xa2\x67\x91\x00\x8d\xa4\xa5\x3d\xbb\x9d\xf5\x62\xd5\x21\x93\x98\xfe\x8c\x40\x99\xec\xe7\x05\x2a\x2a\x35\xe5\x44\x12\xa6\x29\x27\x78\x18\x0c\x0f\x88\xe4\x5d\xa2\x37\x27\x9d\xa3\x6c\x67\x3c\x59\x7c\x47\x45\xc1\xfa\xc9\x74\xf2\xb6\x8f\x9e\x94\xc8\xaa\x5f\x48\x7c\x41\x73\x5a\x12\x97\x6e\xb0\x67\xe6\xa4\x35\x28\x33\x0a\x7c\xd7\xc1\xbf\xe0\x45\x27\xfc\xe5\x9d\x73\xe6\x84\xb8\x36\x9c\x1c\xfe\xcc\x3c\x93\xba\x9f\x9e\x99\x52\xa5\x78\xcb\x09\x8f\x78\x5b\x70\x4f\xa8\xa5\x7a\x71\x3b\xe8\xb6\x0e\xf5\x59\xd6\x92\xb4\x46\x64\x41\xb5\x8c\x71\x96\x02\xf5\x8c\x3b\x24\x66\x48\xf8\x3a\x99\x16\xd5\x49\x12\xce\xa5\xa6\x92\x6a\xe2\x2c\xc4\x78\x7f\x71\xb3\x0b\x4f\xe2\x21\x94\x3c\x08\x03\x4b\xf4\x1b\x49\xae\x9c\x6b\xf3\x44\x7d\xa1\x16\x3c\x6b\x68\x9d\x7e\x4e\x40\x5d\x65\x93\xf4\x9b\x3c\x3b\xfa\xc1\x8a\x8e\xd0\xef\xb5\x0a\xf7\x40\x3f\x43\x8f\x00\xdb\x6c\x77\x3b\x48\x91\x38\xe8\x49\x79\xd0\x74\x02\xf2\xa0\x73\x64\x9d\x10\xff\x2c\x56\x9c\x0d\xae\xbe\x9e\x31\x8c\x94\xb6\x0d\x9f\x90\x06\x2d\xca\x9d\xcb\xd5\xcb\x70\x6f\x88\x3b\xf0\x09\x6d\x9c\x90\x3f\x78\xb9\x22\x01\xb1\x91\x38\xfa\x08\x52\x07\x65\xe3\xee\xd9\x09\x45\xad\xb9\x13\x39\xbc\x0f\x08\x1d\xfc\x41\x77\x64\x58\xf8\x39\xb3\x70\xb1\x1f\x8e\x51\x3b\x61\xda\x1c\x5e\x15\xb2\xe8\xab\xa0\x72\x3f\xe9\x41\x6f\x6b\xf0\xd9\x57\xb4\x84\x7e\x3f\x88\xc1\xf4\x14\x49\x67\xbc\x71\x4b\x7e\x33\xa1\x81\x47\xbd\x7d\x01\x4f\x46\x2b\xda\x04\x72\x7e\x02\x5e\xfc\x61\x22\x90\xe7\x86\x64\x9f\x73\xac\x45\x78\x08\xca\x04\xc6\x26\xa4\xea\xef\xde\x7b\x26\x6d\xb0\xd9\xf3\x44\xd2\x86\xea\x65\xd2\x4e\x5a\xfc\x9b\xab\xf0\xb1\x85\xc4\xf7\xc3\xa7\x28\xf0\xf9\x08\xc1\x55\xad\x1a\xfb\x90\x7c\x7f\x14\xff\x26\x71\xf4\xf7\xa0\x24\xa6\x13\x27\x67\xe8\xbd\x87\xaa\x2d\x75\x83\xed\x64\xba\x46\x41\x01\x29\xb6\x2c\xd4\x9e\xe7\xa2\x96\x1e\x62\xad\x41\x8b\xfa\x64\xc4\x38\x7c\x26\x11\x10\xe9\xb4\x12\xe7\x45\x6c\xca\x7e\xb0\x00\xad\x59\x2e\x09\x50\x4a\x9d\xf3\x82\xd3\xb6\xb7\xea\x22\xba\x78\xaf\x20\x12\xfa\x1a\x77\x5e\xef\x07\x87\xe8\x0f\x26\x2c\xfb\x7a\x1f\xa9\x5e\xab\xf4\x0f\xe7\xbd\xe6\xa4\x49\xc3\x2e\xab\x22\x61\xfd\xbc\x49\xee\xb2\xbf\x00\x7b\x2f\x7e\xa1\xf3\x05\x2d\xe2\x5e\x44\x5b\x7b\x47\xc3\xac\x6d\xbd\x27\x7c\xe1\x7e\x24\x00\x24\x92\xb0\xad\xf7\x44\x4c\x64\xed\x9e\x13\x92\x99\xf9\x0c\x3c\x4b\x73\xa0\x21\xa1\xef\x1b\xf6\x36\x3e\x3f\x41\x38\x0d\x2f\xf3\x13\x73\xf3\xd1\xfe\x2a\xe2\xe8\x7c\xd6\x2e\x68\x63\x29\xf1\x76\x0f\x07\x7a\x6e\xce\x0a\x55\xe0\xe1\x8d\x47\xd2\x89\xa1\x6a\xc8\xfd\x84\x67\x9c\x53\x81\x9e\x0f\x72\xbb\x58\x56\x80\x09\xf8\x07\xf7\x90\xc0\xcb\x29\xf2\xcf\x17\xbb\x66\x39\x12\x25\x72\x7f\x84\x8f\x17\xfe\x1b\x16\x03\x29\x61\x5b\x14\x40\x02\x8a\x6a\x31\x12\x69\x60\x87\xcb\xf6\x9c\xf0\x8a\xeb\xc5\xbf\xc9\x7f\xf4\xc1\x24\xa5\xf4\x01\x46\xa5\x00\x17\x3c\x3a\x27\xcf\xa7\x36\x60\xf2\xe6\xe1\xc3\x31\x79\xf3\x08\x7e\x80\xbc\x14\x96\x35\x26\xe7\xac\x35\xc0\x7a\xec\xc8\xd9\x93\x55\x00\xbc\xc5\x93\x9a\x69\x93\x04\xa8\x13\x87\xa9\x16\x8d\xc5\x36\x69\x5f\x28\x0b\xe5\x9a\x0f\x17\x4b\xe6\x8a\x98\x5f\x07\x8b\x63\x1c\xfa\xcd\x98\x8b\xa6\xdf\x14\x76\xba\x3f\xe0\xf9\x0d\x1e\xa1\x61\xdf\xdc\x03\xcd\x6c\xc2\xe4\x8b\x69\xff\x6d\x45\xbf\x28\xd0\xff\xcc\x89\x02\x4e\xf7\xa0\x2f\xa2\x99\xa2\x7e\x4f\x8e\xa9\x1e\x20\xe1\xbb\xb4\xc1\x15\x78\x16\x24\x3e\x5f\x81\xc8\xa2\x49\x42\x5e\x77\x35\x85\x2b\x70\xd2\x7e\x9f\x45\x49\xba\x7e\x9f\x68\x0f\xfa\x7d\xc1\xe0\xe5\x01\xd7\x46\xf8\x03\xe4\x14\xfe\xe9\x90\x02\x7d\xf1\x83\xc5\x88\x35\x85\xc8\x35\x08\xb0\x91\x2a\x15\xff\xe6\x94\x05\x25\x54\x80\x72\x6a\xf2\x0b\x09\xc6\x9c\xe2\xfd\x62\x4e\x58\x9d\x97\x2b\x2e\xa8\xaa\x83\xb4\xf0\x59\x23\x20\x29\xac\x4b\x0e\x5c\x89\x37\x33\x11\xda\x8b\x0a\x4f\x1d\x80\x8b\x15\x04\x6c\xf4\xbf\x50\x30\xc0\x09\xd6\x2f\xc8\xce\xce\x6d\x7e\x31\x5d\x97\x9d\x19\xae\xbc\x4e\x84\xe6\x90\xd7\x15\xd5\x6f\x90\xb4\x8a\x2b\x5e\x9f\x3c\x5c\x9d\x93\xf8\x82\xf6\xd2\xe9\xd0\x2f\xfa\xc7\x39\xe5\xef\x95\x39\x29\x0f\x31\xf1\x5b\x80\x59\xfe\x72\xa2\x24\x17\x82\x15\x86\xb3\x68\x5f\x0c\x17\xf5\x6e\x97\x75\xb0\xfd\x02\xf6\x46\x62\xd8\xc5\x12\xb7\x12\x55\xaf\x42\x4d\x71\xf4\x03\xe0\x93\x58\xd4\x55\xb8\x79\x6e\x47\xe6\x03\x31\x9c\xab\x90\xf1\x8a\xd6\x5c\xf0\xb8\x73\xae\xe7\x8b\xba\x4d\xfb\x5b\x5c\x75\xd5\x64\xd4\x6f\x4e\x41\xb4\xe4\x82\x45\xd5\x29\xaa\x2f\xc8\xb2\x4e\xdd\x7c\xd5\x45\xc0\xb5\xa8\xca\x21\x05\x85\x25\xcc\xaa\xc3\xc6\x22\x7c\xfe\x8d\x04\xaf\x5e\x33\x34\x99\x2d\xfe\x4d\x29\xd7\x7e\x21\x69\x46\xff\x39\xb1\x88\x61\x30\xcb\xbd\x98\x5c\xac\x1b\x64\x34\xcf\xda\x73\xe9\xa2\x9a\xb3\x1b\xc8\x30\xcf\x3a\xb3\xf3\xb5\x84\x63\x83\x80\xe9\xc6\xc4\xc3\x2e\x84\x9b\x3a\x67\xf1\xd5\x17\xa6\x68\x12\x90\x8d\x9d\x52\xe7\x62\xf6\x31\x3b\xb1\x5c\x8c\x3f\xed\xde\xa7\x7e\xfe\xf3\xe7\x27\xce\xee\x5a\x3e\x7c\x3e\xa6\x9d\xdb\xe0\x2e\x17\x3a\x7b\x4c\xa0\xb3\xc1\xba\x84\x61\x5d\x50\xaf\x95\xa9\x43\x1f\x20\xdd\x98\xf3\xc7\x5e\x83\x1e\x2c\x12\x45\xae\xc1\x9b\x97\x14\xc4\xd7\x58\x17\x4a\x8d\x31\x48\x70\x85\x1c\x37\x72\xfd\xd9\xec\x75\x27\x9e\x52\x5d\xef\x6e\x06\x2e\x59\x3e\xb8\x51\x28\xd7\x29\x47\x6f\x16\x1b\x31\x9f\xb8\x59\xe8\xcd\x7e\x32\x37\x7c\x6b\x9d\x0b\xf3\x26\x31\x91\xd0\x7f\xf3\xde\x6d\x22\x7e\x7f\xb4\x23\x05\x0f\x99\x49\xbf\x24\x53\xdd\xb8\x5a\x3b\x39\xe6\x9d\xd7\x99\x88\x7a\x40\x05\x87\x26\x49\x8f\x10\x47\x46\xdd\x24\x36\x3a\x55\x37\x69\x4b\xf6\x08\x93\x73\xd2\x07\x48\x06\xe8\xc4\x52\x37\x3d\x44\xec\x6c\x73\x23\x10\x6a\x74\x21\xdd\xbd\x88\x4b\xf1\x27\x05\x5d\x68\x92\x4c\xf5\x67\x66\x75\x97\x05\x7c\xcd\xaa\xf0\x28\x34\x7f\xf2\xad\xcb\xd5\x65\x6e\x5a\x5f\xec\xb0\x73\x33\x14\xca\x56\xc3\x1b\xd6\x14\x5b\x04\x6e\xdc\xad\x9d\x4e\xe8\xe6\xd5\xd9\x9e\x2d\x77\x65\x48\x4a\xf2\x1b\x83\xd3\xd4\x7e\x21\x77\x8f\x53\xe5\xde\xb8\x4c\xdb\x8f\xf0\x26\x01\x12\xb7\xb9\xeb\xc2\x10\x21\x00\x52\xef\x14\x95\x6f\xee\x37\x5c\x74\x9d\x7d\xe5\x66\x91\x12\x03\xa6\x01\xe7\x44\x45\xef\xb6\xb6\xd3\x0f\x30\xa4\x88\xca\xdd\x88\x83\xba\x72\xdd\x9d\xcb\xd6\x14\x3a\xf7\x42\x90\x46\xb2\x40\x27\x3b\xb8\x61\xa6\xb0\x87\xc7\xbd\xae\xb6\xba\xcc\xdc\xa8\x10\xf7\x83\xf5\x74\xc0\xb5\x47\xc5\x8d\xec\x81\xdd\x7c\xfc\xa6\x47\xae\x19\xff\x8d\x60\x70\x07\xe7\xdd\xb0\x2c\x38\xb0\xe7\x66\xcd\x38\x73\xe1\x9b\xd9\x02\xcd\x86\x6f\x66\x0b\xb4\xa3\xca\x0d\x0a\xe0\xc8\x99\xfb\x23\x00\xc9\x54\xea\xc6\xf9\x4f\x36\x0d\xdc\x27\xeb\xec\x08\x2e\x08\xab\x32\x73\xb9\x4f\xa6\xb8\x54\x07\xe7\x42\x6a\x4d\x01\xb6\x09\x6b\x0a\x6f\x24\xe6\x71\xf6\x80\xfb\x64\xa4\xae\x76\xea\x24\x60\x05\x68\x56\x85\xf3\x21\xe1\xcd\xd5\x70\x46\xea\x1e\x47\x24\xdc\x70\x1a\xb1\x67\xf4\x8d\x8b\xeb\x18\x7f\x15\xf2\x7a\x7f\x97\xda\xf4\x43\xfd\xe0\x51\x62\x37\x83\x1b\xf1\x5a\xf6\xaa\xbe\x2f\xd8\x7e\xbc\x58\xc4\x84\x77\xdd\x9a\x6f\x46\x6b\xd9\x05\xe5\x46\xda\x9f\xd1\xc5\x69\xee\x0b\x3e\x2f\xe2\xe6\xf7\x77\xc5\x4d\xe1\xa7\x9d\xcb\x73\x8f\x13\x68\xa5\xf7\x6f\x1a\xe8\x34\x43\xe4\xf8\x69\xe2\x11\x37\x1d\x52\x7c\x32\xbe\x2b\x70\x72\x7d\x80\xfb\xbb\x01\xe7\x1f\x04\xb8\x17\x1f\xf3\x0b\x3c\xff\xdd\x3d\x30\x98\x5f\x33\x42\x35\x14\xab\x76\xef\x75\x23\x8e\x7e\xe1\x84\x2f\x92\x80\x74\xaf\xa3\xa2\x35\xe2\x06\x6c\x0f\xaf\x1b\xd5\x50\x9c\x99\xfd\xbe\xc9\xf8\xbc\x48\xa4\x09\x72\xb5\x94\xfb\xa1\x1c\xe7\x2f\x9e\x04\xa4\x13\x12\x30\x20\xcc\xa2\xe0\xcd\xea\x28\x16\x26\x6f\x04\x84\x95\x60\x0a\x81\x6b\xb0\xfd\xce\xef\xef\x1a\x1c\xed\xd9\x76\x2f\x57\x67\x0f\x49\xc2\xfa\xf3\x02\x2a\x56\xe9\x5a\x7b\xbf\xa8\x50\xee\xd3\xfb\xd2\xaa\xf3\xf3\x00\x04\xc1\x1d\x20\x6f\xb5\x7d\xe5\x6f\xdc\x83\xed\x7d\x7f\xe3\x1e\x6c\x45\xc3\xcd\x20\x78\xfb\x4b\xdd\xac\x9e\x62\xe4\x5b\x17\x61\xb1\xff\x1b\x17\xe1\xf0\xd3\x03\x01\x2d\x01\xf9\x9e\x48\x93\xe0\xc3\xc9\xd4\x46\x96\xc9\x6f\xa6\x36\xb2\xd7\xd7\x3d\x91\x07\xcb\xf8\xbb\x6e\xc2\xe6\xbc\xac\x88\xf7\x83\x0e\x93\xae\x68\xc5\x83\xd0\x19\xd3\xbf\x81\x1e\x66\x7a\xcc\x4b\x6d\x3f\xae\x7b\xdd\x7d\x25\x42\x3e\x07\x6f\x85\xd2\x64\x3e\xac\x78\xe7\x54\xbe\x0f\xef\xae\xcd\xbf\x71\x70\x45\x17\x9f\x63\x91\x56\x3f\x00\x3a\x34\xf7\x08\xb2\x24\xbe\xfa\xc0\x2b\xda\x1e\xa5\x0f\x43\xc2\x2c\xf8\x3f\x70\x8b\xb6\x93\xea\xc3\x9b\xac\x18\xd0\x43\xd3\x54\xf4\x6f\xec\xbe\x70\xfc\xc1\xc5\xb6\x89\x7d\x3c\xbc\xd8\x4a\x21\xf0\x84\x05\x57\x0f\x40\x6f\x80\xe2\x1e\xd7\xf6\x6b\x8e\x88\x61\xb6\xe6\xe7\x59\x6a\x73\x49\xbd\x0f\x79\xbf\xee\xeb\x0f\x62\x9c\x5b\x77\xfb\x3a\x34\x7e\x01\x09\xc0\xb4\x95\x0f\x63\x9c\x83\xae\x68\x4f\xe5\x51\x17\xdc\xe9\xdd\x69\xd5\xfd\x03\x67\x4e\xab\xd3\x1e\xdc\x35\xec\x19\xf6\x34\x82\x45\x6b\x40\x71\x5a\x5b\xa2\x9f\x46\x45\x8b\x7f\x37\x50\x70\xff\x5e\xb8\xa2\x19\x74\x0e\xa0\x01\xfb\xc2\x68\x8d\xc8\xfa\x64\x41\x24\xfa\x41\x65\x7f\xe3\xe7\xd3\xd7\xb9\xd3\x9c\x10\xff\xec\x12\x55\x0f\xe3\x9f\x43\x8d\x7f\xc3\x83\x9e\x25\x28\x48\xba\x7d\xc6\xc2\x66\xad\x61\xd0\x28\x29\x36\xf4\xc0\x79\xb3\x75\xbf\x40\xe9\xc6\x1b\xb7\xc4\x7a\x51\xab\x87\x3e\x07\xf6\x00\x7c\x4e\xf8\x2b\xeb\x54\x3e\x2c\xe7\x1a\x44\xd6\x1f\xb8\x6f\x5a\xd7\xfa\x9c\x14\xb1\x24\xf0\x3e\x4c\xea\xeb\x98\xba\x07\x49\xf4\x9a\x4d\xe3\xcf\x45\x32\x2d\x01\xf7\x81\x8e\xd8\x9c\xe2\xb9\x0a\xbb\xf0\x0b\x8d\x0f\x34\x2d\x32\x54\xbb\xdd\x3d\xf0\x1a\xb0\xbb\xd1\x43\x9d\xb1\xdd\xe8\x9e\x6b\x95\x1a\x77\x17\x10\x10\x44\xe3\x9e\x7b\x81\x42\xfb\x09\xad\xb1\x9d\xd2\x9e\x7b\xcd\x4a\xfb\x79\x2f\xd8\x68\x8c\x7b\x4d\x53\x5b\x76\x77\x9e\x7e\x0f\xc2\x42\x56\xc6\x43\x84\xeb\xd8\x3f\xe2\xb9\x21\xa0\x1a\xeb\x98\xa7\x25\x54\x3f\x00\xfd\x30\x8d\x63\x36\x61\x3b\x05\x3c\x0f\xb3\x30\x4a\x9e\x7c\x96\xfb\x43\xf6\x27\x20\x19\x46\x7d\x56\x04\xb3\x41\xfe\x79\x48\xf5\xc4\x37\x1f\x32\x41\x13\x84\x87\xb3\x16\x24\xa0\xfb\xb5\x30\xf6\x20\x08\xda\x16\xcc\xe7\xe3\x71\xd1\x5a\xcb\x07\x2c\xcd\xc6\xc3\xe7\x5d\x67\x4b\x1d\x32\x06\xda\x4e\x8b\xcf\x4b\xb2\x26\x81\xf4\x41\xf1\x85\x61\x44\x7d\x17\x89\x11\x24\x5f\xd4\xbf\x96\xc4\xfa\x50\x9b\x6b\xbf\xc8\x67\x42\x04\x8a\x7e\x21\x73\x08\x3f\x28\x90\x3f\x34\x07\xb8\x76\xda\x58\xf8\xd0\x57\xc2\x35\x11\x9f\xc9\x65\x6f\x38\xbe\x8b\xff\x88\xb1\xbe\x07\xc5\x8d\xe8\x37\x10\x83\x26\x94\x7a\x8f\x75\x9a\x86\x1e\xdc\xfc\x22\xe9\x01\x52\x39\xeb\x48\xbf\xe0\x1f\x36\x02\xbc\x21\x70\x99\x1a\x82\xbe\x0c\x56\x30\xbc\x61\x4d\xc2\x9f\x60\xda\x42\x98\x37\xd2\xb7\x52\x9c\xf6\x85\x23\x41\xb3\x83\xc5\x4b\x87\x4d\x1b\x98\x5f\xa6\x4a\xb1\xce\xe1\x45\x5a\x5f\xdf\xa3\x5f\x64\x42\xb1\xd2\xf8\x4d\x04\x8d\xe4\xf9\x77\x15\xa7\x97\x48\xf1\x22\x98\xd7\x2a\xdf\x17\x79\x7e\xad\x4a\x7f\x13\x97\x21\xc4\x7f\xa9\x81\xb0\xbe\xe0\x4d\x4b\xcd\xa1\x95\x23\xa4\xc4\x06\x80\x37\xa3\xa2\xb9\xd0\xf8\xcd\x0d\xed\xea\x00\xea\x03\xeb\x93\x5e\x68\x22\xad\x26\x7c\x51\x46\xde\x4a\xe7\x97\xc5\xa5\x42\xf3\x07\xc0\x98\xe0\x09\x50\xc5\x26\xe9\xf2\x65\xf5\xa9\xfa\x33\x04\x29\xb4\xa4\xc1\xb7\x10\x70\xda\x0b\x96\x0a\xb0\x96\xe4\x85\xb6\xc0\x57\xdc\x17\xe1\x21\xd6\x71\xbd\xbc\xfa\xd7\x9f\x07\xe4\xff\xc5\x5f\xc0\xd9\xaf\xff\x55\x8a\xd4\x17\x5e\x98\xbe\x1a\xbd\x75\x6d\xa4\xe6\x43\x2f\x4c\x2b\x5d\x5e\x84\xfe\x5a\xdf\xf1\xc2\x09\xd3\x1a\xb2\xb7\xf2\xa2\x50\xfc\x01\x8f\xb2\x74\x13\xef\x52\x0c\x88\xf3\xbd\x8c\xfd\xb0\x1a\xe6\x6d\x44\x59\x29\x40\xde\xb6\xa6\xa5\x4f\x10\xfc\xe1\xfb\xcc\x8b\x2c\xbe\xce\xde\xf8\x36\x52\xc9\xea\x2e\x2b\x3e\xd0\xba\xa8\x8f\x74\xe6\xc4\x97\xfa\x47\x6b\x89\x5f\x26\x55\x09\xb2\x7d\xbe\x50\x3f\x34\x7b\xe4\xbc\x50\x3f\x98\xd1\xbd\x10\x3a\x7c\x5f\x79\x61\x69\xb7\x4c\xfc\x42\xfb\x60\xa1\xf9\x45\xee\x3a\x0b\xee\x2f\x4b\x53\xf5\xea\x17\x80\x91\x3e\x13\xfd\xc2\x6f\x4d\x91\xf1\xc1\xe2\xbc\x2f\xeb\x9d\x76\x89\x10\xef\xe0\x8c\xb4\x6a\xd6\x36\x08\x12\x78\x5f\x38\x4a\x5a\xbc\x7c\x07\xa7\x2c\xb8\x8e\x05\x47\x7f\x40\x1e\x28\x01\xe1\x85\x94\x62\x31\xe6\x1d\xbc\x0b\x7b\x2b\xc6\xc2\x58\x4f\xe2\xe1\x03\x0f\x42\xa9\xda\xeb\x80\xe5\xdc\x42\xc8\xcb\x92\xa8\x96\xff\xde\x73\xed\x9e\xe6\x7d\x2e\xd0\x69\x10\x28\x1c\x2c\x1a\xbd\x9f\x60\x13\x1d\x7f\xf6\xc2\x59\xf2\x07\x74\x27\xcf\xb2\x18\xce\xcb\x72\x54\x41\x97\x89\x97\x82\x8f\xd7\x85\xb8\x15\xf3\xe1\xf7\xe2\xa4\xdd\x4e\x75\x97\xee\x06\xef\xc5\xeb\xea\xcf\x17\x08\x1b\xb1\x3f\xca\x7b\xad\xc2\x98\x9a\xf5\x45\xd5\x8f\xf8\xe4\x0b\x31\xa7\xeb\xe2\xff\x7e\x62\x4e\xb3\xcf\xd7\x7b\x93\x5f\x18\xa7\x6e\xe0\x9c\xb8\xe0\x8b\x18\x65\x33\xde\x77\x09\x39\xc6\x29\x5c\xfc\x7f\x98\x1c\x64\x1c\x57\x7a\x7a\x21\xe2\xfc\xb0\x34\x18\xbe\x2d\x9f\xbc\x4c\x0a\x73\x78\x02\x50\xca\x7b\x42\x0f\x2f\xc8\x92\xa3\x5f\x5c\xf3\xbb\x04\xb3\x77\x39\x7c\xea\x0e\xf5\x42\x3c\xf9\xe1\x4e\xbc\xa3\xdb\xbd\xf9\x45\x3d\x04\x57\x68\x7e\xbf\x2b\x77\xb2\x0d\xea\xa5\x7c\x62\xe6\x44\x61\xa3\x9b\x23\xbe\x1c\x41\x30\xa0\xaf\xa6\x1d\x7d\x5e\xda\x92\xed\x10\xfd\xb2\xa2\x81\x3d\xa8\xdf\xb9\x00\xaf\x65\xcd\x05\x58\xcd\x82\xa1\xc4\x9e\x25\x4b\x88\x06\xa9\x95\xde\xc9\x20\x5d\xe3\xe4\xe4\xb4\xb4\xb9\x94\x58\x8a\xdb\x59\x24\xc4\x73\x00\x72\x88\xd9\x4c\x26\x96\xb3\x7a\x73\xb2\x64\xbc\xbd\x98\x27\x6e\xd0\x8e\x9f\x9d\x88\x34\xee\x3f\xbf\x79\xce\x44\xbb\xe7\xb1\x8e\xff\xd0\x03\xe4\x78\x14\xd5\x9c\xb8\x51\x9b\x1b\x4d\x18\x87\x3f\x6a\xf0\x17\xdc\x68\x22\x5d\x8a\xa9\xfc\xc4\x6d\xd9\x34\x7a\x7e\xc2\x4f\x32\x8c\x67\xe0\x74\xb5\xbe\x50\xb9\xbe\xa4\x07\x34\x21\xe8\xbe\x3d\x19\x42\x6c\xb7\x9f\x19\x40\xbe\xaa\x5f\x00\xcc\x45\xef\x66\xe0\xfc\xfd\x3e\x64\xe3\xe0\x29\x31\x8e\xeb\x67\x48\x88\x5f\x3a\x91\x33\x52\x12\xd2\x91\x9d\x91\x24\xb5\xf9\x0d\x1c\xc9\xea\x17\x16\xd0\x35\x07\x86\xcb\xd8\x89\x7a\xb2\xea\x42\xf6\x0b\xe7\x27\x1c\xeb\xda\x37\x99\xbb\xd8\x7a\xec\x19\x29\x24\x88\x98\x4d\x56\xab\x0a\x3f\x5d\x10\xc3\x8d\x2b\x91\x65\x50\x35\xab\xc4\xbd\xd0\x1c\xd2\x4a\x0f\xaf\xcd\x4a\x6b\x5d\xfe\x82\x17\x2a\xdd\x23\x26\x2b\x4c\x55\x4f\x2b\xc1\x07\x4b\x08\x3d\x13\x37\xc3\x5d\x92\x97\x34\x0f\xca\xdd\xd1\x24\x61\xb0\xfe\xd9\xcd\x34\xe1\x9a\x26\xd0\x32\x2c\xd9\x51\x27\x93\x71\xc9\xf5\xe7\x01\x50\xce\x08\x9e\xa9\x53\x12\xf5\x99\x28\x40\x95\x7f\xba\x04\xce\xe9\xe0\x4f\x78\x8b\xfe\x40\x36\xaf\xdd\xd3\x22\x28\x66\x7a\x37\x19\xb7\x6c\x33\xfc\xa4\x58\x69\x7c\xc8\xd0\xdf\x49\x6e\x9d\x99\x8b\xf4\xef\xc9\x35\xa8\x83\x42\xe9\xc8\x58\x5e\x18\xee\x20\x5e\x34\x19\xa7\xdc\xbd\x15\xc8\x19\xf3\x03\x58\xfa\x7b\xda\x2a\x31\x0b\x27\x25\x30\x40\xaa\xb4\xc6\x79\xd2\x7b\x53\x1a\x9b\x49\x2d\x93\xfd\xc2\xe7\x20\xc3\xd5\x14\x90\xb2\xd6\x5e\x83\x73\x49\x01\x3e\xbc\x54\x6f\x54\x7f\x80\x83\x64\xc0\xc3\x7d\xae\x4b\x4d\x35\x4f\x8a\xce\x26\x77\xe7\x5a\xa4\x1f\x2c\x04\xd4\x98\x9f\xd8\x90\x5d\xa6\x7c\x9e\x1d\xbf\x35\x67\x58\x1d\x7e\x3b\xf8\x20\xff\x73\xb6\x4f\x4e\x49\x40\xa0\xb7\x9c\x2e\x35\x13\x59\x4b\xec\x88\x36\xaf\x88\x20\x12\x8d\x77\xad\x29\xbb\x03\x6c\x83\xa1\xc8\xec\xb3\xf6\x21\x9c\xc8\x6a\x62\x69\x7f\xc2\xb0\x70\xfc\x74\x00\xad\xaa\xc9\x15\x2b\x26\xd9\x31\x72\x22\x91\xdc\xd0\x85\x63\x2e\xbd\x88\x69\x2a\xb3\x9a\xd8\x34\x33\x51\x3f\x20\x46\xff\xce\x48\xf7\xae\x1e\xa1\x38\xb1\x46\x7c\xde\xbc\xb9\x79\xce\x50\x93\x64\xbb\x1d\x4e\xe6\xb3\x6d\x3f\x63\x52\x24\x34\x55\xa5\xd0\xd0\x7e\x1e\x40\x24\x34\x79\x7a\xd6\xb4\xd5\x27\x15\x25\xc6\x57\x66\x8f\xb3\xab\xf9\x64\x74\x6c\xfb\xf9\x02\xcc\x23\xfe\x95\xba\x6e\x2e\xd3\xc2\x4f\x77\xe0\x6b\x52\x28\xce\x97\x57\x14\xe3\x02\xfc\xdb\x2c\xc6\xcc\x97\x74\xdf\xf8\xbc\xb4\x22\xde\x6c\xe4\xbf\xb5\x65\x60\xbe\x4c\xa2\xe4\x1e\x69\x92\x35\xd9\x47\xfa\xdb\x1f\xf4\x45\xfa\xdb\x2e\x9d\xd7\x7c\x59\x90\x4b\x2b\xa6\x21\x20\xf8\xfb\xc5\xab\xdc\x01\xf0\x59\x6a\xb6\x09\xa5\x8a\xb3\xae\xce\x65\x18\xf0\x1a\x10\x91\xd2\xa5\x39\x9a\x73\x81\xc9\x5f\xac\x23\xa7\x21\x3e\x31\x28\x59\xed\x36\x11\xb2\x62\x17\xb8\x39\xc9\xaa\xcc\x57\x3e\xa1\x26\xd9\xcc\x3c\xe7\xc2\xe8\x35\xc4\x38\x50\xf2\x40\xc4\x6e\x1c\x07\xbc\xe3\x77\x8f\xe3\x38\x78\xc7\xe9\x7e\x90\x3e\xb0\x1d\xfe\x80\x9a\xa1\xee\x1e\xb1\x11\x5b\x83\x36\x0e\xe8\x75\xc4\x6e\xc7\xb1\xca\xa8\x67\xf7\x78\x61\x11\x59\xbf\xa9\xd6\xd9\x7c\x69\x1c\xb0\x1b\x8c\x2d\x04\x8f\x03\xd9\x54\x44\x28\xc6\x01\xb5\x4f\x74\x3b\x6a\x2e\x8c\xa6\x76\x24\x53\xe9\x43\xfd\xa1\xe4\xc2\xf1\xf3\x1b\x6e\x7d\x9e\x10\x05\xa1\xe1\xdf\x15\xe3\x27\xfd\x6e\xf0\x3e\xf5\xf7\xa4\x33\x55\x4b\x0c\x90\x28\x8a\x7f\x9f\xd8\x05\x7f\x40\x4d\x56\xf7\x0b\x88\x1d\xd9\x07\x76\x1c\x88\x12\x1e\x87\x7f\x4f\x98\x07\x05\x74\x04\xbc\x48\xf9\x32\x0e\x64\x55\x19\xde\x14\x84\xbb\xc8\xfd\x60\x1c\x11\x25\x6b\xb3\xdb\x1b\xde\xd7\x1e\x45\x6a\x15\x86\x5f\xa0\x44\x53\xfc\xe0\x05\x9e\x08\xc6\x91\xba\x98\xae\x35\x21\xc6\x38\x19\x06\x48\x40\xa7\x4c\x1c\xe3\x80\x8a\x4a\xda\xbc\x71\x24\x02\xd5\xed\xd4\x92\x55\x41\x3d\xb1\x66\xa8\xd6\x00\x71\x46\xb1\x55\xe3\x48\x70\xe9\x33\x62\x26\x62\x85\x3b\x24\x63\x6f\xea\x20\xc3\x22\x5a\xb4\x04\xf8\xdf\x55\xa3\x3a\xb3\xd3\x29\x53\xd3\x38\x32\x69\xcc\xf0\x03\xf8\xc5\x7b\x8d\x8c\x65\xf1\x1a\x21\x9c\x8c\x20\xb0\xc2\x83\xa6\xff\xcc\x00\xc9\x47\x8c\x68\x99\x82\xa4\xd7\x00\x61\x45\x2e\xb0\xe3\x40\x30\x8b\xb2\xe9\x8f\xa3\xe0\xf0\x05\xbd\x8f\xd0\x94\x11\xf4\x3e\x24\x93\x9f\x09\xc3\x15\x6f\x04\x7f\x0f\x7a\x11\x04\xc3\x32\xfe\xf9\xd3\xb2\x17\x50\x88\x98\xc6\x03\x04\xa6\xe8\x1a\x3e\x8e\x42\xd6\xd2\x84\x99\x85\x50\xd7\x8c\x10\x97\x92\x7c\x16\xe1\x3a\xd3\x4c\x6f\x2a\x39\x8b\x0f\x27\xe3\x52\x3c\xe5\x4f\xf4\x49\x3f\xdb\x4c\xfb\x9a\xdc\x90\xc6\x51\xe1\xd8\x9f\xfe\x46\x23\x37\x0e\xa4\xce\x1b\x3e\x28\xac\xfc\x10\xfc\x9b\xb7\x5f\x43\xa0\x3e\x30\x72\xfa\x85\x17\x17\x76\x41\x10\x7e\x7f\xf2\xf5\x1a\x07\x63\x98\x7f\xe6\x0f\x5d\xda\x88\x5a\x5f\x23\x7d\x1c\x82\x18\x62\x96\xb3\x91\x04\xba\xb4\x11\xdd\x8e\x7c\xe4\x3e\xbb\xad\xe3\xb7\xdb\xa9\x9c\x19\x7e\xe1\xc4\xa6\xfb\x05\x64\x76\x36\x71\x81\xa7\xdf\x88\x5a\x22\x92\xef\x65\x13\x1b\x38\xf6\xa9\xc6\xdb\x38\xa0\x78\x53\x8a\x90\x71\x74\xae\x48\x13\xee\xe9\x9f\x3f\x45\x89\x6b\xc7\x41\xe3\x5f\x71\x7f\x64\x63\xde\x31\x6a\xe6\x3c\x61\x26\xf3\xfb\x99\x31\x1c\x87\x86\xc9\x1b\x34\x75\x23\x0a\xa9\xfa\x42\x4b\x01\xb5\x93\x45\x78\xdb\x3a\xf9\x9a\x4f\x4a\xc7\x3e\x25\x6d\x0b\x83\x62\x9a\x5f\x18\x01\x67\x53\x5d\x2e\x83\xa1\x67\x39\x68\xf9\x31\xbd\x60\x5d\x89\x1f\xce\xc6\xe4\x7f\xc1\xd3\x1a\xd4\x71\xfb\x8d\x73\x61\x87\xe6\x79\x52\x06\x68\x02\xf6\x49\xfe\xfa\xf3\x06\x8e\xb8\x79\x07\x0b\x47\xd4\x9f\x2f\x2a\xdc\xf2\xfc\x01\x50\xdc\xf8\x71\x52\xc5\x24\xe0\x9d\x84\x84\xd6\xc5\xc0\xe5\x66\x96\x0f\x55\xdb\x48\x5a\xc5\x32\x41\x0e\x4d\xe1\xa2\x89\xc3\x3b\x7c\x2d\xc2\xe8\x37\x40\xdc\x93\xd6\x7d\x51\x8a\x35\xbb\xf8\x44\xf1\x74\x98\xa5\xb2\x52\xd7\x0f\x4f\xbe\x28\x4d\x15\x4d\x13\x92\x74\xf0\x0b\x4c\xc8\x2c\xe3\xfe\x38\xee\xb5\x3f\x02\xc4\x32\x28\x76\x77\xb1\x4e\x8a\x46\x85\xf6\xed\x30\x66\xdf\xeb\xf4\xfb\x05\x14\xb2\xaa\x02\xc5\x92\x83\xbb\x1f\x70\x37\x0c\xbc\x87\x3a\x11\xcf\x13\xfa\xb5\x91\xd4\xe5\x43\x54\xed\x82\xcd\x43\x4b\xb7\x67\xf5\x20\x42\xc7\xc0\x63\x3e\xc0\x66\x89\x8a\xb5\x1f\x2c\x0d\x40\x38\x56\x66\xfd\x71\xc0\xe9\x45\xa1\xed\xe3\x58\x06\x42\x03\xe2\x45\x42\xa9\xa2\x39\x32\x9c\xba\x99\x68\x21\xf9\x5f\xfe\x79\x81\x66\x69\x63\x21\x35\x74\x3f\x12\xc6\xa4\x25\xc3\xac\x8b\xf1\x1d\x3f\x82\xe1\x64\xbe\x1c\x2d\x6b\x2e\x9c\xd0\x20\x93\x1b\xe8\x1e\x20\x60\x4b\xe4\x08\x4b\xe1\x36\xfc\x00\xeb\xce\xfe\xcd\x0b\xa0\xce\x5f\x40\x3c\xc6\xb0\xa4\x18\x96\x4d\x51\x07\x32\x1c\x14\xd5\xba\x1f\xf0\xe2\x2c\x60\x07\x16\xec\x52\xbc\xc5\x08\x81\xa3\xaa\xcf\x40\x75\x80\x80\x15\x02\xd2\xe2\xa4\xbf\xc9\xcb\x3d\x42\xa0\x4b\xff\xbe\xdf\x8d\x40\xa5\x9a\xa5\xd7\x10\x88\xc6\xc3\x33\x02\x75\xdc\x8a\xcc\x11\x98\x96\x4f\xe1\x15\x23\x30\x0b\x9f\xaa\x59\x8f\xc0\xfa\x0e\xb2\x41\x8f\x10\xd7\xa2\x34\x6a\x5c\x90\xd2\x27\x91\x5c\x55\x7d\x46\x1a\x70\x0c\x7c\x94\x73\x08\x87\x7f\x93\xe2\x0a\x87\x02\x2b\x76\x05\xf1\x95\x00\xb3\xa6\xa2\x08\x47\x60\x71\x52\x4b\x74\x21\x11\xb2\xfe\x4d\xc8\x56\x3f\x20\xef\x1f\xee\x92\x42\xa2\x4e\x5b\x58\x76\x4d\x1d\xa6\x00\x25\x57\x89\x87\x47\xe5\x19\x1f\xee\xf4\xe1\x1b\x42\x01\xc6\x30\x57\xa3\x51\xee\x7c\x43\x3b\x80\x9a\xa5\xd1\x13\x85\x6d\x73\x64\xf7\x70\x41\xf6\xd5\xac\x90\x2a\x4f\xb5\xea\x47\x80\x58\x97\x7e\xde\x47\x60\x92\x41\xb7\x74\x50\x46\x53\xe4\x94\x51\xe1\xd8\x11\xca\x9a\xa2\x7a\x84\xe0\x27\x3b\xc1\x08\x14\xf4\xb2\xdb\x01\x28\xd3\x8c\x40\xc9\x4f\xb7\xb0\x50\x18\xd3\xe3\xcd\x60\x52\x9a\xf1\xf3\xe0\x22\x14\xf4\x49\x5d\xfb\xa7\x65\x42\x96\x2b\x9e\x35\x8c\x99\x23\xbb\x7d\x91\x04\x6d\x4e\x05\x9b\xc8\xfe\xdd\x38\xa6\xd6\x89\x0a\xa7\xc3\x24\xa0\x32\x0d\xad\x3f\x00\x60\xab\x7f\xf3\xf4\x1a\xd1\x29\x7d\x89\x53\x05\xb8\x42\x0d\xf1\xf0\x00\x69\xac\x77\x8f\x08\x69\xec\x90\xf0\x13\x20\x7d\xa9\x9e\xf9\x08\x90\xbe\x7c\x31\x0a\x6d\xc1\x4d\x8b\x6e\x0b\x6e\x7e\x40\x75\x8c\x71\xb4\x53\x4b\x6a\x1c\xa5\x40\x55\xf4\x45\x27\x7f\x15\xdb\x09\x94\xa0\xba\x11\xb0\xe3\x20\x34\x9f\xbe\x8e\xba\x3a\xc6\x30\x4a\x50\xc5\x3d\xac\x59\xf9\x05\xb0\x25\xaf\x0b\x91\x14\xbe\x79\x04\x24\x43\x2e\xd1\x18\x45\xeb\xa7\x27\x49\x0f\x2b\x5f\xe0\x02\xa2\x88\xab\x0f\xeb\x58\x24\x45\xeb\x66\xd2\x17\xe3\xec\xa0\xc9\xc6\x18\x06\xcf\x6b\x95\x81\x1b\x61\xac\x39\xe8\x01\xeb\x53\x34\xef\xd6\x49\xc8\xa9\xcb\x33\xc3\x7f\x54\x3d\x9e\x0b\x4e\x9a\x35\x4b\x9c\xc6\x20\x84\x80\x25\x73\x98\xfc\x9e\x84\x8b\x56\x75\x22\x2d\xae\x57\x49\xe9\xc9\xc4\xfe\x5a\x8c\x50\x1d\x7c\xd2\x53\xb3\x5c\x19\x20\x3d\x95\x28\xf9\x3e\xb0\xa0\x45\x77\x97\x17\xd8\x75\xd5\x2a\x29\x3c\x55\x41\x9e\xc2\x53\x37\x20\x59\x27\x35\xf9\x05\xac\xc1\x84\x16\x76\xcd\x31\xbc\x77\x17\x19\x42\xf8\x9b\x7c\x3f\x23\x50\x16\x1b\x06\x3b\xcb\x65\x34\x23\x0f\x94\x98\x63\x18\x8a\xf4\x80\xf6\xc5\x33\xdc\x15\x1e\xea\x9a\x32\x0c\xa1\xc1\x40\x40\x4c\x70\xd2\x45\x34\xa0\x18\xc6\xa8\x6e\xc7\x36\x54\x8f\x88\x3b\x8c\x49\xc9\x8d\x08\xc2\xee\xf1\x50\xbb\xcc\x04\x92\xf9\xfe\xcc\x12\x91\xc8\xd9\x37\xf5\xb0\x14\x9c\x7a\x1f\x6e\x5e\xc3\x14\xfb\x01\xfb\xb3\x68\xf1\x74\x70\x3b\x81\x84\x69\x9d\x9b\xb7\xfd\x39\xc1\x2f\xfd\x1b\x0b\x30\x2e\x43\xec\xcb\xe6\x29\x70\x7d\x2e\x46\x13\x0a\x7d\x96\x2a\xe0\x15\x36\x4c\xd9\x10\xf0\xab\xf2\x3c\x23\xbc\xd0\x59\x79\xc2\x70\x6c\x6e\x06\x30\x7c\xc0\x2c\xd4\x07\xb8\x7c\xf5\xee\x1d\xa2\xdf\x72\xf3\x1e\xb2\x26\x6b\xf4\x9e\x4c\x7a\xcb\x79\x53\x26\x45\x13\xa9\x0b\x02\x33\xe2\x34\x77\x3a\xc9\x23\x24\xc3\x05\x18\x55\x47\xf3\x20\x0f\xbf\x10\x1c\xe0\x06\x36\x74\x7b\x89\xcc\x98\x63\x65\x5e\x64\xce\xbf\xfe\xf3\x00\xde\xaa\xd9\x5f\x70\x56\xba\xd3\x47\xf8\x21\x0f\xab\x5d\xe2\x81\xbd\x11\xf2\xc4\xe3\xe6\x24\x9a\x1e\x20\x92\xbf\xf8\x03\x96\x5a\xd9\x9b\x11\x03\x5c\xba\xc5\x2c\x23\x14\x88\x43\xc0\x8d\xf0\x33\x1e\xcd\xed\x38\xc1\xba\x46\xc4\xb0\x8c\xd3\xfe\x00\x5a\x12\xc9\xc2\x11\x4e\x63\xc3\xca\xaa\xc8\x12\x10\x51\x7a\x85\xf8\xc9\x5f\xed\x10\x27\x8c\x91\x80\xd5\x9a\x52\xe2\x07\x51\x0f\x10\xa4\xa0\x9d\x88\x89\x79\x26\x04\xc6\xb4\x46\x48\x7a\x80\x6c\x19\x06\x42\x22\xd4\xdc\xc1\x8d\x76\xcd\x88\x21\x69\x72\xf9\x1b\x11\x21\x69\x3e\x73\x31\x03\x6a\x9e\x32\xb3\xf5\xc9\xc3\x6b\xc4\xbc\xe6\xac\x39\xc1\xc7\x2c\xfc\xbc\x00\x38\xea\x94\x47\x66\xeb\xb3\xee\x23\xe6\xb5\xf7\x9a\x34\xbc\xd0\x14\xd6\x3f\x22\x35\x70\xdd\x23\x9c\x9c\x83\x56\x85\x82\xaa\xca\x63\x3b\x22\x03\x64\xad\x6e\x89\x19\x07\xb3\x78\xc8\xc9\x21\x35\x04\x9c\xce\x94\x55\x67\xc4\x12\xf0\x81\x86\x64\x6d\x2e\x2b\x67\x23\xac\x83\x43\x17\xd7\xc8\x08\xb5\xe6\xad\x61\xbd\x54\xf1\xe6\x88\x78\xd8\x21\xb9\x2a\xb2\x76\xd7\xe1\x0e\x80\x4d\xba\x5c\xc7\xca\x93\xac\x7b\x6d\xac\x3c\x43\xc6\xa6\x0a\xd3\x99\x64\xe0\x08\x37\xb3\xa1\x5b\x50\x64\x2d\xfa\x6e\x6c\x82\xd6\x4d\x39\x6e\x46\xa4\xd2\x4d\x8c\x37\x22\xc0\xad\x77\x63\x13\x93\xc3\xc8\xf5\x6e\xc4\xc6\x2c\xc8\x7f\x13\x53\x34\x22\xf3\xf8\x35\x9f\x40\x44\xbc\x0e\x6b\x2e\x23\x1d\xca\xe4\xd5\x34\x22\xc5\x2c\xf9\xff\x8c\xd8\x5e\x44\xfd\xf8\x85\xc9\x29\xaa\x0b\xe4\xe9\x6b\x5e\x03\xe2\x55\x93\x71\x05\x3e\xeb\x3f\x74\xa5\x77\xa4\xf2\x54\x87\x4c\xc3\x27\x37\xb9\x11\xfb\xc9\x29\xb8\x87\x87\x6f\x08\xbb\x58\x62\xc2\x0a\xd7\x38\xa0\x0e\xd5\x5d\x3f\x32\x15\x8b\xa2\xf6\x46\x84\x0b\xd9\xf0\x4e\x0d\x1e\x09\x2d\x02\xf1\xab\x43\x37\xa2\xc8\xb2\xf1\x36\x0d\x44\x64\x62\xf1\xd5\x3e\x32\x00\xae\xfb\xd8\x0e\x18\x23\xbc\x0a\x54\x43\x1d\xe2\x54\x11\xa6\xe5\xf1\xd3\x01\xe1\xe8\x43\x48\xbf\xf8\x66\x8a\xcc\x54\x2b\x92\xa1\x22\xb3\x18\x37\x93\x92\x93\xf9\x09\x7d\xc8\x50\x26\xec\xe7\x04\xc0\x1b\x6c\x58\x8d\x1c\x2f\xd2\x0e\xe9\x38\x22\xa4\xa8\xf4\x73\x2e\x99\x2c\xaf\x99\xdc\xc0\xfa\x3b\x24\x76\x47\x5a\x7f\x9b\x09\x18\x6a\x8f\x0e\xdd\x15\x22\xfd\xc3\xda\x4f\x97\xa4\x05\x3e\x88\x37\x65\x5e\x1f\x0b\x56\x83\x8f\x06\xde\x4d\x42\xee\x73\xb0\x24\x23\xd3\x38\x1a\x74\xe5\xd2\x37\x22\x7d\xc4\x2c\x8b\x44\xe8\xad\x86\x15\xac\xf1\x5e\xf3\xf0\x03\xdc\xe7\xe5\x9b\x34\x22\x1c\xdd\x87\x44\xeb\xf8\x80\xf4\x4a\x16\x8f\x0f\xb3\xd4\x6a\xa9\x0f\x62\xf6\xab\x7f\x43\x65\x21\x4e\x1f\x29\xfe\x48\x24\x8d\xcf\x82\x9d\x07\x00\x89\xf2\x59\x78\x48\x15\x8d\x55\x2f\x67\xa0\x0f\x5e\x8a\xee\x12\xb4\x23\x2d\xb8\x2a\x93\x33\x22\x6a\x56\x64\x13\x8c\x97\x34\xc8\x34\xe0\xe5\xa4\xfc\x01\x27\xe5\x59\xbe\xdc\x50\x0f\x01\xf3\xfe\xcf\x9c\xc8\xf7\x3d\x6b\xa8\xb9\x62\x73\x8f\x64\x69\x86\x1b\xfd\xe0\x65\xa8\x1e\x71\x46\x14\x07\x53\x0f\x48\x91\xfc\x73\xfc\x26\x8f\x9f\xcf\x2f\x22\xb5\xaa\x89\xfd\x27\x32\x75\xab\x06\xe2\x3c\x3f\xbe\x2e\xc1\x32\x4e\x94\x9a\xf6\x94\x18\xd8\xe5\x35\x4c\x38\xfc\xc9\x84\x94\x8e\x35\xc3\xa2\x07\x88\x89\x6a\xfe\xfd\xdd\x70\x93\xea\x38\x8e\xf4\xc9\x4f\x51\x7e\xd7\x23\x1d\x0b\x8c\x55\x0f\xa8\x10\x49\xfe\x62\x62\x8e\xfa\x02\x2a\x31\x79\x69\x8d\xc4\x94\x81\x72\xf7\x1c\x89\x75\xb7\x6c\x62\x48\x4c\x09\x28\xa7\x85\x91\x20\x11\x29\xbe\x60\xa4\x00\xf1\x46\xfc\x25\x05\x82\xc5\x1d\xac\xad\x6b\x7a\xf0\x60\x99\xfe\x00\x6c\xba\xb9\xc3\x85\x90\x7a\x01\x2a\x2f\x15\x4d\x1a\x29\x82\x4d\xff\x55\x59\xd7\x91\x62\xc4\x74\x04\x54\x14\xc0\x3f\x74\x85\x4b\xcc\x16\x68\x13\x75\x8a\x3c\x50\xfe\x0d\x35\x9f\x0e\x7d\x62\xd2\x66\x25\x4f\x1b\x29\x42\x25\x6b\x98\x46\x92\x69\x11\xd5\xc4\x12\xfa\xb6\x87\xa6\x08\x25\x53\xf0\x10\x37\x6c\xba\xee\xe1\xc5\x1c\x05\x72\xb8\x9c\x59\x69\x9f\x12\xa2\x5c\xdd\x5f\x5a\xa4\x4b\x8b\xa2\x0f\x5a\x33\xa6\xa4\x82\x1e\xfd\x05\x99\xb2\xa8\x5f\xa2\x0b\x9a\x2d\xa6\x29\x71\x1b\xfd\xc2\xf5\xfd\xd6\xc5\x34\x7d\x02\x5f\x3b\x8c\x9b\x4b\x9e\x13\x99\x4f\x99\x3c\x57\x1d\xae\xa4\x04\x46\x56\x08\x74\x29\x1b\x39\x3f\x81\x2e\x45\x9f\x07\xfa\x7b\x89\xea\x27\x16\xc4\xb7\xc5\x32\x95\x85\xbd\x5a\x16\xcb\xb1\x2a\xc3\xda\x48\x05\xa1\x0f\xc5\x2f\x50\x3a\xf1\x21\xfc\x44\xbc\x76\xe8\xc2\x91\x0a\x28\x55\x73\x07\x8b\xa2\xbb\x07\x8a\xa1\x62\x56\xa9\xb0\xf8\xa3\x7b\xb8\xd1\xa3\x67\x4d\xca\x64\x7c\xff\x64\xbc\x76\xf8\x00\xd5\x05\x7a\xf5\xb0\x04\x30\xdd\xac\x52\xa5\x26\xd4\x38\x58\xc9\x85\x0d\x1a\xc4\x12\x58\x39\x9e\x2a\x09\x81\xd8\x4c\xaa\x40\xa9\xe0\x49\xf0\x0e\xe9\x85\x36\x50\x7d\x8f\xd9\x08\x5b\x23\x5d\xa3\xf2\x43\x2c\x35\xb5\x85\x64\x42\x11\xc4\x16\xd8\x3c\x9a\x58\xaf\x55\x45\x40\x46\x62\x0a\x67\x5f\x6d\x53\x23\xac\xdc\x25\xd9\xa5\xe4\xe1\xd4\x18\x55\xac\x75\x35\x4a\x17\x92\x91\x52\xa7\x3e\xc3\xc4\x81\xa5\x24\xe4\xaa\x3b\xd2\xd2\x9f\x99\x26\xae\x14\xcb\x52\x04\xa5\xce\x0b\xbe\x06\xe9\x6b\x16\x02\x56\xa7\xdc\x64\x34\x5a\xb2\x9e\xa4\xee\x34\x70\x1a\x82\x5f\x20\x9e\xe9\x36\x93\x90\x46\xf9\xf0\x18\x48\xbb\xd7\x8d\x25\x4b\xa3\x26\xe9\x30\x51\xb6\x33\x11\xa1\x41\x32\x9a\x48\x30\x38\x40\x1e\xba\x23\x9d\x6b\xc7\x34\xed\x73\x29\x23\x35\xab\x13\xd1\xca\xde\xb0\xa5\x63\xeb\x7e\x81\x45\x59\xb4\x1f\x4b\xfc\x1b\x1e\x63\x70\x16\x7e\x83\xb2\xbb\x64\xcc\x84\x52\xf4\x87\x51\xf5\x22\xb6\x6b\x1d\x17\xd8\x85\x44\xf3\x74\x11\xb7\xcd\x81\x96\x0a\xcc\x93\xb8\xa9\xac\x96\x6c\x9e\x6e\x90\x70\xb3\xa8\x1b\x6a\x05\xa3\x19\xeb\xc8\x77\x13\x92\x4f\x2c\x6b\x87\xcf\xf0\xcd\x03\x26\xf9\x31\xdd\x6b\x12\xfe\x62\x2d\x4b\xa0\x82\x37\xff\xf0\x25\x3c\x2d\xc9\x4e\x22\x4b\x7a\xb0\xd0\xd8\xff\x8a\x2b\x21\xa4\x3f\x78\xfb\x1f\x88\x54\xdd\xb4\xf0\xe1\x94\x35\x21\x6a\xad\x14\x3e\x30\x12\x8d\x91\xdd\xe4\xf4\x79\xf0\x85\xd6\x44\xb5\x94\xcf\xda\x43\xa3\x8e\x79\x02\x6c\x91\xd6\x6c\xa4\x97\xc4\xd3\x28\xf7\x02\xa9\x7d\xd6\x5e\x30\x11\xc9\xc3\xe9\x25\x13\x31\x27\x7c\x17\xe0\x35\x87\x97\xab\xd0\x56\xd2\x6f\x4e\x5e\xe4\x23\xd1\x4f\xae\x9b\x4b\x30\x3a\xc0\xd6\x8e\xf4\x49\x61\xce\x9a\x38\xd2\xa4\x8a\xc8\x7c\x66\xae\xbd\xd3\xa0\x73\xa5\x50\xf7\x27\x8b\x18\xee\xcd\xcc\xf0\x8c\x8b\xb6\x98\xe4\x63\x51\x91\xa6\x07\x40\x31\xed\x76\x3e\x68\xcf\x52\x9f\xf9\x68\x78\xa1\xe8\x77\x67\x97\xfe\x82\x52\x40\xf5\xa0\x14\x6b\xc4\xac\x72\x00\xc2\x68\x21\x39\x70\x4c\x4d\x2a\x10\xfc\x51\xbf\x0b\x87\xd0\x98\x90\xc4\x94\x48\x7d\x64\xf8\xaa\xd9\x76\x98\x29\x89\x89\x34\x66\xb8\x9e\xb9\x24\xff\xc8\x9f\x20\xd5\xec\x4b\x96\x23\x78\xbc\x2c\x87\x99\xc5\x4a\xc7\xcf\x0b\xab\x07\xc1\x29\x41\x14\x93\x8c\x9c\x59\x62\x4b\x8e\xe7\x23\x27\xd2\xa0\x9f\x07\xb4\x24\x89\x7f\x66\x8a\x26\x22\x18\x39\x81\x23\x7b\x2b\x12\x8b\xf4\x0a\xb0\x14\x4c\x44\x07\x73\x5a\xdb\x2d\xb8\x31\x17\xb2\x95\xee\x39\x11\xf2\xe2\x96\x39\x73\xdd\x9a\x53\x5e\xa7\x4f\x73\xa0\x70\x23\x8a\x93\x33\x64\x42\x69\xb3\x72\x26\x52\xba\x9d\x11\x2a\x9e\x03\xdd\xc1\x6c\x6a\xce\x10\x55\x94\xaf\x70\xe4\x02\xb1\x34\xfb\x37\x33\x48\x6b\x6b\x0a\xc5\x6e\xb1\xdf\xcc\xdc\x47\x76\x67\xca\x05\x70\xd0\xcd\x32\x17\x6c\x5e\xf6\xef\x9b\x1f\x78\x0a\x10\x01\x7c\x0a\x0a\x37\x53\x82\x48\xa6\x60\xe2\x39\xb0\xf2\x84\x15\xcf\xb9\x72\xd2\xda\x9a\xba\x36\x57\x70\xa8\x3c\x05\xc1\x0f\xb8\x59\x02\x6c\x25\x17\x33\x1c\x18\xf3\x28\x27\xfe\x91\x59\x6a\x42\xd1\xa6\x23\x33\x08\x52\x2e\xf9\x23\x37\x4c\xd3\xbb\xd9\xa8\xec\x96\xfc\x94\x1b\x09\x99\x18\x61\x6e\x40\x31\xc3\xb2\xe1\xf0\x7a\x12\x14\x43\x74\x45\xce\x0d\xa4\xf4\xe7\x7b\x40\xae\x78\x06\xb8\x55\x49\x1c\xc8\x1d\xf8\x24\x81\x22\x33\xb5\xb0\x22\x68\x47\x66\xfe\x34\x85\xdc\x8e\xf2\xcd\x20\x99\x23\x95\x46\x95\xae\x76\xb3\x2c\xe3\xa4\x78\x75\x69\x0b\x2e\x7a\xd0\x99\xbc\xa7\xe9\x37\x36\x47\xe2\x40\xc1\x24\x5a\xfa\x2b\xc3\x51\xd9\x13\xd4\x84\x3a\x75\x1d\xcd\x0f\x00\x33\x11\xea\xd2\x29\x18\xeb\x10\x15\x64\x3f\x56\xaa\x82\x51\x3a\xb6\xbe\xba\x1d\xc9\x32\x82\xe7\x4b\x37\x21\xed\x7c\x81\x94\x65\xf6\x53\x58\x36\xdf\x20\x19\xb8\x1e\x77\xff\x86\x0e\x5a\xbb\x54\x28\x83\x49\x03\x50\x06\x08\x49\x75\xfb\x62\x80\x9a\xc1\x09\x44\xaa\xfe\x4d\x1d\x91\x0e\x65\xa1\x47\x97\xf0\xa2\x9c\x8c\x0a\x13\x4c\x60\xb3\x34\x85\x2e\x67\x41\x89\x73\xff\xae\xdc\x55\x77\x40\x20\xba\x03\xf0\x47\xf1\x88\xb2\xc4\xab\xe2\x29\x5d\xd4\x21\x78\x4a\xac\x38\x6e\xbc\x38\x81\xab\xe2\xea\x05\x55\xf8\x93\x55\xd0\x05\xfa\xb7\xe8\x0f\xae\x45\x80\x35\x89\x8b\x7e\x2c\xde\x6a\x8a\x68\xcd\x3d\x30\xb1\x8e\x74\x67\xe5\x02\xa9\x69\xfe\x8d\xf3\x23\xe6\x58\x2e\x32\x5c\xe3\xe2\x85\x03\x24\x3a\x51\x58\x52\xd6\x0e\x25\x85\x22\x9d\xb7\xe6\xa6\x68\x21\x6a\x56\x20\xd3\xd9\x9f\xa4\xd0\x43\x4c\x51\x2f\xa3\xd0\x43\xcc\x7e\x13\xe5\x06\xfe\x35\xf7\xc0\x28\x65\x09\x44\xe5\xe6\xac\xb5\xec\x9b\x90\x14\xa0\x56\x26\x62\x89\x1e\xe5\x21\xb9\x13\xb7\x2b\x0f\x30\xee\xe7\x05\xd0\x19\x8f\xf0\x00\x03\x7f\xde\xef\x60\xd0\x9a\xe2\x12\xea\x24\x1f\x95\x87\xb2\x8c\x4f\xd9\x83\x39\x76\xbf\x40\xde\x26\x19\xac\x3c\x3c\x45\x86\xc3\x43\xaa\x2e\xc9\xb1\xb0\xda\x98\x5d\x35\xca\x0b\x6a\xe5\x2f\x5e\x10\x0e\x5d\x55\xca\x4b\x15\x90\x38\x74\xa1\xdc\xe7\x83\xb7\xe4\x3e\x51\xe0\x82\x80\x8c\x6c\xe2\x50\x51\x7b\x5d\x49\x9f\x47\x0d\x0b\x21\xa2\x1e\x90\x9a\x49\x86\xaf\x14\x45\x74\xfd\xa9\x31\xf2\x05\x3f\x58\xb3\x52\x17\x11\x67\x47\x36\xab\x0a\x2d\x8b\x1d\xe5\x6b\xa4\x80\xec\x2e\x99\x8b\xc1\x8e\x13\xf5\x13\x56\x92\x9d\x18\x2a\x75\x20\x56\xc0\xd7\x44\x1a\x27\x12\x53\x51\x86\xc1\x1a\xbb\xca\x72\x9f\x76\x19\xae\x89\x06\xf8\xe2\x37\x3e\x4c\x57\xc8\xed\xa8\x28\xc3\xe0\x9b\x64\xcd\xbc\xdc\x08\xb1\x6b\xc6\x6e\xb8\x47\x18\xd6\x94\x10\x6e\xd4\x8c\xb3\x27\x1d\x7f\xcd\xc0\x10\x5d\xba\x2b\xac\x60\x96\x22\x6b\x06\xaf\x92\x15\xa2\x16\xa0\x83\xc4\x88\xca\x9a\x57\x56\xe8\xd7\xb2\x00\xad\xad\x29\xe4\x4d\x22\xa4\xf5\x93\x34\x92\x72\xce\x8c\x4a\x8d\xc7\xf0\x07\x38\x48\xba\x3b\x55\x0a\x1e\xe3\xaf\xbc\xea\x6a\xe1\x7c\x05\xa0\x65\x00\xf3\x02\x91\x78\xc1\x76\xea\x8a\x0c\xb1\x4a\x03\x36\x6a\xa5\x32\x5a\xa3\xc3\x20\xa6\x5c\xbe\xa3\xd6\xef\x50\xda\xfb\xad\xc2\x31\x29\x79\xb9\xf5\x46\xbb\xc7\x23\xaa\x4a\x4e\xaf\xf0\x13\xb7\x71\xa9\x7e\xe2\x46\xb3\x83\x41\x6d\xb0\xef\x67\xb7\x2f\x80\x6a\x06\x0d\x7e\xf1\xba\x75\x57\x54\x68\xb7\x33\x5d\xa5\x78\x22\x5d\x41\x6d\xa8\xc5\xe7\xd3\x04\x3f\x25\x3b\x61\x57\xa6\x7f\xb4\x67\x4b\x6d\x14\xfd\x92\x47\x7c\xe0\x89\xef\x11\xd7\x9a\xfc\x05\x09\xb2\xf1\xb2\xf3\xb0\x88\x84\xd7\xbe\xd2\xb5\x09\x0b\x3a\x95\x8e\x3e\xf4\x74\x1e\xb7\xfe\xae\xc2\xf7\xc9\x2a\xa6\x8a\x62\x59\xc3\x78\x04\x11\xc2\xca\x85\xca\x34\x0f\xf6\x86\xa9\xb0\xca\x29\x34\x72\x54\x78\x3e\x59\x26\xae\x1d\x05\xdd\x0c\x38\x88\x14\x59\x22\x52\x45\x0a\x59\xe5\x42\x1a\x75\x50\xa0\xd5\x5d\xa3\xa2\xfc\x55\xf6\x22\x47\x41\x87\x5a\x01\xab\x25\x0c\x9f\xce\xd1\xf0\x82\x70\x61\x74\xfc\xd6\x92\x68\xa2\xf3\x56\x0d\x6a\x0b\x7d\x36\x10\xfd\xa9\xda\x1e\xa3\xc2\x71\x4a\x95\xa4\x46\x1d\x50\x8e\x9b\xaa\xb1\x98\x82\xed\x45\xf5\x24\xf6\x09\xea\x27\xe2\x81\x8c\x7d\xe7\xda\x05\x8d\x78\xb2\xb6\x86\xc8\x77\xa5\xd6\xc7\xd6\x99\x7a\x72\x51\x1a\x93\x6e\xe8\xe2\x4a\x75\x49\x25\x12\x94\xea\x79\xe2\x03\xff\xe6\x3d\xd1\x3b\x7b\xc2\xd4\x61\x0c\x87\x12\xc8\xea\x8e\xba\x1c\xa9\x7c\xca\x3f\xa1\xa4\xa9\x3a\xf0\xa8\x17\x0e\xa9\x77\xee\x6a\xdf\x2a\x7d\xe6\x2e\x1e\x01\x9f\xe2\x8b\x65\x07\xdc\x21\x42\x8a\x3c\x45\x88\x24\xdd\xfe\xc4\x15\xf1\x9e\xd5\xfc\x85\x5a\xa6\xe6\xf6\x0c\x9f\x67\x81\x11\xd6\xc0\xe4\x25\x21\x51\x64\x92\xdc\x55\x6f\x3a\x69\x08\xca\x9f\x3c\xe2\xb2\x8c\xa3\x32\x25\x96\x2d\x2d\xf5\x93\x47\x9a\x82\x10\x47\xa5\x07\xbb\x77\x05\xe2\x48\x30\x9d\xbb\x5f\xfc\xd6\x84\x1e\xa4\x26\xf5\x3e\xb3\x0c\xaa\xea\x21\x8f\x0a\x69\x24\x78\x1b\xe1\x28\xa5\xdc\xdb\xa3\xb2\xf8\x97\x6f\xd6\xf5\x13\x47\x72\x92\xbe\xa0\x3e\x0b\xc8\x5a\x13\x92\x42\x56\xe3\x1e\xa4\x93\xf0\xf3\x7b\x01\xd9\x43\xd0\x0d\xd0\x50\x5a\xd2\x89\x04\xbf\x8a\x94\x14\x16\x4e\x2a\x9c\xa3\xa2\x64\xcf\x0a\xd1\x22\x46\xb7\x13\x17\xbd\x4f\xc8\xfa\x68\x7f\xdb\xfa\x2e\x67\x02\xfd\xa6\xd4\xdf\xff\xea\x1e\x54\x27\xf2\xbf\x9a\xfb\xb2\x16\x99\x92\x53\x8c\x0a\x67\x79\x6b\x2f\xea\x44\xf1\x09\x83\x00\x61\x9d\x36\x00\xd7\x09\x34\x90\xbc\x56\xe7\x42\x03\xbf\xf0\x31\x53\xe5\x35\x1b\x0d\x56\xc1\xa4\x3b\x48\x63\xd4\xa6\x21\xd2\x8e\x45\x77\xfd\x05\xce\x4e\xf4\x6f\xea\x89\xb4\xd1\xed\xc0\x61\x8a\xfe\x8d\xa0\x47\x09\xba\xed\x00\x11\xd3\x51\x68\xc7\x82\x71\xd6\x03\xa4\x51\x90\xfc\xdf\x0e\x16\xd2\xf4\x6f\xa0\xa6\x36\xa9\xc1\xea\xa8\xbc\xdb\xa3\x85\x80\xdf\x87\x7e\x27\xbc\xaf\x09\x30\x77\x97\xfd\x4d\x5b\xc0\x8c\x75\xb1\x6a\xb0\x31\x5a\xb6\x6b\x61\x41\x51\x53\x66\x18\xa6\xbd\x0e\x1b\xac\x8e\xd6\x6d\xb4\x40\xc1\x39\x7b\x08\xc6\xe3\xe9\x37\xab\x88\x99\x47\xb6\x08\xb0\x4a\x05\xd8\x22\x02\x76\x25\xdc\xb7\x48\xe1\xb0\xfa\x03\x50\x45\xef\x64\x02\xd1\x93\xdc\xd0\x96\xfc\xa9\xc3\xd0\x68\xc6\xf3\x94\x12\x4c\xfb\xc3\xed\x95\xf1\x74\x82\xe3\x27\x8f\xba\x1e\xd6\x68\x89\x60\x11\x14\x12\x2c\xd0\xc2\xde\x06\xe1\xb2\xdb\xd9\xb3\x41\xb8\x0c\x46\xae\xcc\x11\xdd\x8e\x35\x7b\x80\x8c\x7d\xc8\xee\xb0\xb1\x43\x77\x00\xd4\xc9\xee\x00\x33\xd2\xf1\x6e\x79\xe5\x64\x75\x8f\xe0\x6f\xc3\x1d\xac\xfb\x8b\xd6\x90\xc1\x3a\x24\x66\x34\xfa\x64\xe9\x7c\xb7\x42\x5f\x65\xb7\x17\xde\x90\xfd\xa0\x42\x93\xa6\x11\xca\x9a\xb3\x5f\xa0\x92\x4a\x22\x75\x83\x6a\xcd\x2e\x14\xad\xf0\x16\xd6\xfc\xe0\x62\x17\x7e\x00\xc2\x97\xfd\xfb\x45\x1c\x9e\xc6\x84\x26\x2d\xf8\x04\x7e\x42\x6c\xcb\x3e\x00\x70\xe2\xb2\xb6\xbf\x55\xba\xd3\x35\x7f\xc0\x8d\x10\x54\x28\xb4\x1a\x55\x96\xbb\xbd\xc8\x60\xab\xdc\x08\x21\x23\xb2\x8d\x29\xd1\xf2\x68\x95\xb4\x3c\x78\x04\xb0\x1f\x03\x01\xfe\xf7\xa6\x7c\xad\x2e\xd2\xad\x29\x34\x1c\x62\x09\x5f\xad\xad\x39\x6b\x4e\x90\x73\x6d\xf2\x6a\xcb\xf1\xab\xf9\x0b\x20\x87\xee\x5f\xad\xe1\xc0\x14\x8f\x70\x71\x63\xb4\x53\xd0\xcb\x29\x65\xf0\x68\x8d\xb7\x2b\xd3\xc2\x25\xb6\x9a\x52\xb1\xea\x57\xf7\x27\x9d\xb3\xd6\xa4\x3a\xb3\x96\x08\x4e\x1d\x4c\xd2\x43\x76\x00\x5a\xa2\x74\xeb\xbc\xa2\xff\x74\x40\xb8\xb9\x83\x07\x8a\x09\x75\x30\x96\xb8\xa5\x1e\xc6\x3a\xc5\x7f\xe5\xae\xd0\x58\x8e\xcb\xe6\xcb\x36\xa8\xe4\x77\x77\x14\x92\x8d\x9c\x63\x61\xab\x66\x34\x00\x35\x49\xd1\x8d\x86\x42\x47\xce\xb6\xb1\xa0\xa6\x35\x9d\xac\x78\x21\xb0\x52\xef\x15\x4d\xeb\x4e\x10\x6c\x9f\x90\x13\x50\xf2\xa2\xa1\xc7\xb2\x76\xa6\xc1\x15\xbf\x79\xd2\x27\xd5\xe1\x46\xa6\x93\xd1\xd1\x7e\x61\x91\x01\x2d\xe2\x5a\x87\x54\x6f\x5c\x6b\xdd\x7e\x40\x9d\xbb\xc9\x25\x53\x9f\xfa\x6e\xdd\xae\xb5\x70\x4d\x8b\xde\xf0\x36\x99\xb6\x9b\xaa\x63\x63\xfd\xcd\x85\x6a\x90\x9b\x0b\x55\x97\xf4\xf8\xea\x5e\x29\x4c\x8b\x36\xaa\xb5\x9b\x5e\x0e\x26\xa9\x4b\xee\x33\xac\x28\xf7\xf9\xe4\xc2\xb2\xd8\xed\x66\xd6\xee\x85\xe5\x1e\x94\xb7\x35\x83\x9f\x49\x3f\x6c\xfb\x6b\xac\x89\x6f\xb1\xa3\x3d\xd4\x8d\x6a\x1d\x0f\x39\xac\x65\x80\x67\x2d\x44\x3b\xb2\xa4\x41\x4b\x01\x4c\x11\x1e\xa5\x7b\x6a\x0f\x15\x68\xa6\xdd\x14\xff\x7c\xbe\x97\x72\xca\xd0\x5b\xe2\x9f\x54\x4d\x6d\xe9\xa2\x8c\x58\xef\x9a\xb8\x3e\x79\xa9\x88\x36\xc4\x5f\xc8\x1a\x3e\xf2\x2f\x6a\x26\x19\x51\x58\x0a\xdf\x2e\xb4\x6d\xae\x2e\xf5\xc6\x04\xd3\xf3\x81\x41\x39\xd9\x94\xdc\xce\x1b\x53\xf7\x0b\xa0\x09\xc6\xb4\x09\x24\x30\xf2\x2e\x19\xce\x0b\x87\xc5\xd1\x0e\xdc\x0d\xc5\x64\x95\x0e\x77\xf4\x23\x40\x61\xd2\xf4\x1b\xa5\x63\xc5\x0e\xfa\x27\xd2\xc5\x43\xdb\xd9\x19\x0d\x39\x7e\x5e\x20\x93\xcb\xfa\x5d\x11\x33\xe4\x0e\xc9\x0e\x74\x53\xee\x30\x47\x2a\xb5\xf5\xe8\x07\x89\x44\xf7\x10\xd8\xbb\xee\x11\x28\xba\x27\xcf\x79\xed\x9d\xc7\x80\x50\x27\xac\xec\x01\xf6\x07\xed\x6d\x0f\xbc\x40\x69\x0a\x28\xaf\x6f\x9e\xd7\x03\xa3\xa1\xdd\xbe\x16\xe9\x07\x24\x94\x22\x43\x1d\xc9\x39\x94\x8e\x7d\xf4\x00\x3d\xc8\x70\x8f\xa4\xcd\xcd\x1f\x80\xc9\x49\x5c\xe9\x74\x3d\x73\x64\x78\x0f\x6b\x51\x7b\x6b\x3b\xa3\x29\x1d\xda\xda\xa1\x87\x0c\x42\xfa\x1e\xc9\xe5\x84\x6f\x9d\x62\xa1\x21\x1d\xe9\xf4\x92\xdc\x25\xd9\xde\x4f\x17\xb4\x79\x79\xde\x91\xb5\x32\x3c\x26\x62\x18\x74\x0f\xeb\xcb\xec\x6a\xd0\x2e\xb3\xab\x08\x76\x87\x68\x69\x77\x9f\x0e\xa3\xaa\xef\xfc\x3d\xf1\x0a\x20\x94\xed\x09\x57\x7c\xf7\x98\x40\xb6\x7a\xf8\x1b\x9e\xd4\x11\x99\x99\x6d\x31\xe8\x9f\x9c\x99\x54\x4a\x76\x74\xe4\xef\x30\x05\xeb\x09\x67\xb6\x7b\x7a\x04\xbb\xc8\x6c\xcf\x3c\xe5\x3a\x62\x9d\x82\xa6\xd1\x73\x09\x9a\x3a\xa4\x7d\x09\x92\x46\x3f\xe8\x41\xcd\x66\x3b\x02\x35\x9d\xee\xa2\x43\xef\x69\xb9\xb2\xb3\x40\x8d\xd3\xe3\x74\xd6\xa3\x31\xf2\x14\x6e\xa4\x16\x51\x68\x16\xf9\x79\x00\xd7\xb0\xe1\x1e\xa1\x17\x35\x72\x15\x12\xcc\x9f\x0f\x3e\xf9\xc6\x4e\xc9\x1d\x7a\x53\x5f\x93\x7a\x41\x88\xba\xb8\x64\xaf\xb0\x32\x0f\xff\xe6\x81\x90\x38\xde\x29\xf5\xe9\x46\xd1\x2b\x81\x22\xda\xd7\x29\xd4\x19\x59\x99\x62\x36\x1a\x51\x1a\xf8\x9b\xa7\xd8\x80\xcd\x22\xe9\xfd\x84\x2f\xa3\xc4\xc6\x4e\x4d\x8f\xbf\xa7\xfb\xb7\xed\xda\xfd\x24\xdd\xd0\x0d\xa0\x9f\x64\x56\x3e\x20\x27\x36\x42\x1a\xb0\xce\xa4\x05\xb6\xb2\x75\x84\xdd\x39\x03\x41\xbf\xa8\x2f\xf5\xd6\x51\x19\x64\xb8\xb0\x92\xa6\x8d\x43\xfd\xa2\x86\xfa\x67\x0c\x92\xbb\x9f\x3e\xe9\x02\xe0\x3e\x6e\x26\xd7\xcc\x7e\xf0\x41\xc6\x31\xef\xfd\x26\x64\x04\xca\xe5\x0d\x6e\x84\x83\x68\xe0\x60\xef\x7e\xaf\x59\xf9\x8b\x35\x2b\x3f\x20\xf0\x8a\xc7\x20\x7d\x32\xa9\x78\x58\x1e\x45\xdb\xf3\x71\xd8\xfa\x33\x06\xd4\x27\xc5\xa0\x7b\x59\x0e\xc5\xab\x58\xfc\x54\x62\x7d\x87\x53\x8f\xbd\x75\xfb\xcb\x6b\xae\x91\x92\x15\xdd\x93\x17\xfe\x52\x3d\x68\x5a\xf1\xae\xe0\x7e\x81\xfb\x1d\x58\xb9\xbb\xe0\xdd\xa2\x78\x5a\x17\x5e\xf0\xef\xe7\x9f\x3f\xf9\x87\x86\x7e\x3c\xbc\x24\x93\xcc\x17\x69\x4c\xcc\x7b\xa8\x64\xd1\x75\xab\xcf\x35\x69\xed\x2f\x58\xb6\x2f\x2f\x7d\xae\x39\xfb\x0b\x2a\xd3\x34\x45\x24\x24\xb0\xe7\x5b\x47\xf2\x2c\xd5\xfe\x1d\x63\x39\x00\x69\x8a\xe3\x20\x3a\xf8\x05\xa4\x40\x08\x6e\xa7\xfc\x24\x8a\x35\x98\x00\xd4\x5a\xfe\x71\x10\x4a\x45\xbf\x11\x00\x2d\xc3\xcb\x40\x6e\x2c\xf3\xc3\x01\xd7\x6c\x8b\xa2\x83\xb5\x1e\xcd\xee\xc6\xc7\x50\x9b\xad\x87\x23\xb0\x36\xbf\xdb\x33\xda\x35\x81\x40\x8c\xfd\xe9\xb1\xe3\x85\xae\xdf\x64\x2b\x3a\x68\xe3\xe3\x86\x2d\xea\x76\x3f\xc0\x0c\x1d\xf4\x3d\x96\x51\x4e\x67\x60\x80\x19\x3a\x24\x77\xc4\xb5\x0f\xfe\xe2\xa3\x99\xaa\xdf\x33\x06\x83\xe3\x8a\xdb\x79\xe5\x1b\x7f\x53\xbc\x75\x8c\x8f\x71\xb6\xa8\x9b\xfc\x80\x9f\xb4\xf1\x64\x24\x62\xbf\x84\xda\x41\x3f\x68\xdb\xe7\x46\x5a\x30\xd1\x8c\x13\x65\x08\x3f\x40\x66\xcc\x92\x84\xbc\x63\x29\x51\x24\xb0\x0f\x28\x51\x1c\x4a\x39\xf2\x27\x2e\xda\x1e\x34\x32\xc9\x76\x73\x97\xc4\x95\xe1\x2e\xa9\x3a\xfa\x79\x00\x5c\x31\x76\x81\xb9\x59\xa0\x1c\x30\xf2\x39\x56\x6e\x20\xc1\x7a\x49\x46\xcf\xcc\xab\x8e\xb8\xd9\x28\xd8\x4a\x89\xa0\x63\x59\xf5\x44\xf9\x47\xe1\xac\x85\x4d\x50\x93\x34\x0f\x59\x98\xdb\x6d\xf8\x85\x05\x29\xf7\xb0\xf6\x4e\xb3\x42\xc6\xf5\x92\x8c\xf2\x85\x82\xcc\xcf\x1b\x93\x6f\xa8\xd3\x4a\x66\x20\x26\x3a\xe0\x27\x9b\xa4\x44\x1b\xa8\x3e\x7d\xfc\xfc\x5e\x83\xaa\x07\xa6\xcb\x74\x8a\x9b\xf1\x5d\x77\x5d\x3d\x6f\x8c\x65\x41\x11\xe9\x1f\x27\xa9\x89\x64\xbe\x71\x12\x14\x82\xfe\xb9\x36\x50\x63\x20\xf4\x3c\x27\xff\xfe\xe4\x1d\x55\x0f\x19\xe3\xa2\x14\x29\x4a\x3f\xe0\x84\x51\x9c\x6b\x6a\x5c\x38\x39\xb6\x57\x0c\xd4\x02\x71\xd4\xf2\xf8\x98\x5e\xb2\x89\x65\xb0\x36\x88\xed\x15\x03\x3e\x16\x8e\xec\x18\xcb\xa0\xd1\xfc\xc5\xe4\x03\x75\xf9\x5d\x6e\x53\x92\xc4\x34\xee\xb5\x6e\x3f\xf8\x4e\x87\x6f\xc3\x03\x2c\xce\x6a\xdf\x01\x27\x0c\x47\x97\x0c\x30\x34\x07\x72\x0c\xdc\x75\x4b\x32\x49\xc3\xbd\xf4\x07\xad\x1f\xd0\x0f\xe9\x27\x07\x4c\x14\x0e\xb5\x18\xf4\x7a\x75\xea\x92\xb1\xae\xa9\xdd\x3d\xc2\xea\xe2\xf3\x0b\xb7\x58\x07\x19\x0c\x96\xf0\xf0\xed\x6f\x3c\x27\xbb\xf4\x1c\x70\x94\x4c\xe9\x99\x24\xdb\x56\x8f\x01\xbf\x59\x87\x73\x8c\x87\x47\xa9\x7b\x52\x13\x2f\xa8\xc7\x77\x11\x66\x4d\x02\x0e\x14\x76\x40\x1d\x6f\xe3\x10\xea\x72\x12\xcb\xc5\x52\xc7\xc4\x32\xc4\xc7\xc7\x5c\xcb\xf0\x17\x98\xb5\xf8\xd7\x60\x41\x64\x47\xc7\x0e\x14\x81\xca\x5a\xe6\x79\x00\xd4\x52\xbc\x9e\x34\x1b\x24\xe9\x8e\xcf\x83\xce\x2b\x3a\x27\xe7\x01\xda\x68\x5d\xee\x79\xe0\x18\x48\x69\x79\x1e\x4c\x57\x5a\xfd\x80\x7c\xbe\xbb\x8b\x8b\x5d\x78\x54\xea\x79\x7e\x06\x79\x21\x7e\x78\x0c\xc0\x52\x92\xdb\x19\xa8\x10\xd0\xe1\x3c\x19\x90\x64\x31\xeb\xfc\xb8\xde\x8f\x0f\xe2\x19\x96\x2c\xa0\xdf\x95\x0b\x8d\x7a\x00\x5a\x9a\xdd\xc1\x9a\xf5\xd0\x83\x97\xb3\x56\x17\x91\xdb\x23\x4e\x7a\x92\xcf\x8d\xbf\x4b\xba\x70\xae\x08\x70\x9d\xfe\x13\xae\x2a\xc5\x4e\x5b\x27\x43\x86\xac\xa3\x3e\x91\xb8\xda\x5e\xcf\x67\xe4\x76\xab\x87\xef\x7e\x97\x2c\x3b\x9c\x8b\xb1\xe9\x1c\x9c\x2c\x23\xe2\xa0\xda\x93\x37\x3e\x87\xa7\x9e\x69\xc1\xc5\x6f\x7c\x57\x40\x5b\xae\x4e\x46\x91\xa7\x9f\x2f\xc0\x4d\xa5\x3a\x3d\x33\x58\x88\xa4\xba\x13\x29\xa2\x0f\x07\x93\x9d\x64\x84\x92\x60\xce\x0c\x99\x49\xba\xd4\x33\xf3\x34\x0f\xbf\x00\x0c\x93\xd8\x76\x92\x31\x3a\x56\xf4\x84\x1f\x6d\x49\x3f\x0f\x88\x61\xd1\x9f\xf0\x20\x0c\xcf\x0a\xc7\x57\x62\xd7\x99\x49\xfe\x35\x89\xb2\x66\xad\x1e\xe0\x79\xab\xe2\xb7\xe3\x2c\x3c\x07\xe2\x7c\x27\x39\xa3\x84\xcd\xb3\x10\x92\x62\xf0\x67\x21\x24\x35\x49\xe6\x88\x36\x6f\x3d\x61\x40\x50\x31\x9b\x71\xc2\x35\x37\x4a\x1b\x77\xb2\x2a\xe9\xf8\x79\x01\xc7\x42\x94\xf8\x84\xa3\xad\xdd\xc0\x4e\x98\x03\xec\x24\x74\x56\x4c\x51\x2a\xde\xb3\x02\xe7\x75\x6f\x38\xe1\x76\xfb\x73\x72\x71\x2f\xb4\x67\xc6\x89\xb8\x0e\xfb\x66\x9e\x27\xa9\xa6\x6e\xf0\x27\xab\x5b\x59\xa1\x78\xc2\xcd\xd0\xfc\xe9\xe4\x35\xcf\x0a\xc5\xf3\x24\xfb\x11\x55\x3c\x61\xf3\xb7\x39\xfa\x5c\x2c\xd0\x80\xbf\x16\xe0\xfd\x06\x6f\x50\x26\x06\x17\xf9\xae\x66\x45\x1d\xf0\x0f\x06\x5e\x0b\x3d\xb4\x15\xe4\x92\xd5\xbf\xc1\xfc\xad\x49\x3b\x51\x17\xc2\x06\xe9\x73\x6b\x80\x35\xe6\xbd\xe8\xa4\xba\xb8\x99\x9f\x49\x90\xa0\x6b\xa2\x23\xdf\x4e\x24\x44\x89\x56\x9d\x9d\x88\xf1\xfd\xb9\x4b\x9e\x37\xb6\x57\x12\xe4\x09\xcf\xc2\xe1\x00\xbf\x93\x8c\x52\x12\xe3\xc9\x0a\x8f\x0e\xaa\x3c\x59\xdc\xca\x61\x8c\x27\x2a\x3a\xfe\x5c\x3f\x4f\x2a\x74\xad\x4e\x3b\x11\xf8\xeb\xf0\x82\x13\x71\xbf\xed\xa7\x07\xc2\x2e\x79\x12\x37\x5e\xd0\x07\xef\x9a\xa5\x1f\x70\xc3\xbc\x1f\xef\x9a\x95\xb6\xf4\xc5\x9d\x58\x12\xc6\xb9\x38\xa1\x98\xeb\xf9\xae\x1d\x14\xb8\x11\xe8\x9b\xcc\x30\x78\x75\x14\x3f\x3f\x19\xf8\x6b\x9d\xc7\x89\xdc\xcd\x59\x12\xc2\xf9\x82\x6a\x89\x5b\x9f\x2f\x60\xed\xf6\x09\xd0\x8a\xf5\x9e\x13\x47\x49\x57\xee\x73\x92\x70\x4a\xd3\x74\x4e\x9c\x6e\xb1\xe2\x93\xe5\x28\x92\x0f\x2b\xd5\xbf\x56\xcb\x9c\x64\xd6\xe2\xcd\x27\x33\xa5\x58\x49\x72\xb2\x62\xa3\x95\x24\x17\x43\x7f\xad\x03\xb9\x8e\x45\xa5\xb2\x1e\x44\xee\xaf\x3f\x49\x9c\xc6\x5f\x25\x4b\xbd\x60\xf2\xb7\xf2\xf6\x62\xa6\x66\x5f\xc9\x2f\x94\xa7\x38\x8c\x50\x17\x78\xf9\xe1\xdd\xbe\xc8\xcb\x1d\x33\x7a\x91\x57\x3b\x04\xf4\x0a\xc4\x52\xc9\x18\x57\xe0\xd1\x10\x2f\xbe\x78\xe3\x14\x33\xbf\xc2\x1a\xd5\x7d\x82\x50\x75\xff\x26\x52\x4a\x08\xb9\x58\xc5\xd1\x21\x82\x17\x0c\xf9\x87\x55\x3b\x57\xc0\x86\x8b\x79\x5f\x2c\xeb\x95\x44\xba\xae\x08\x62\x29\x8e\x71\xf1\x92\xea\x04\x6a\x17\x14\xb4\xc3\xc1\x91\x57\x64\x49\x4e\x11\x85\x8b\x39\x94\xcd\x90\xaf\x8f\x21\x97\xa4\xc3\x76\xa5\x8f\x60\x5b\x89\x72\x81\x1d\x1f\x3f\xb0\xa2\x6f\xa9\xb5\x43\x17\x2a\x36\x38\xa6\xe0\x4a\x2c\x17\xa3\x39\xd0\x93\xd4\x91\xa9\x17\xee\xa1\xf6\x68\xba\x90\xf3\xd8\xce\xc5\x17\xb8\xaf\x53\x8b\x5c\xb0\xe5\x3b\x7d\xef\xf5\x31\xdf\xe4\x90\xfb\x2b\x77\x4e\xd1\x0f\x16\x18\x3c\x02\xcf\x5e\x71\x97\x13\x5d\x0a\x92\x1f\x6f\x6d\xbe\xcd\x5d\x88\xb6\x55\x09\xb6\x71\x95\x05\x05\x75\xf0\x71\xca\xe6\x6b\xd1\x05\x46\x69\x97\xfe\x8b\x57\x4a\xbb\xcf\x5e\x65\x91\x52\x0d\xc1\x98\x14\xab\x82\x2e\x98\xce\xc7\x21\x31\xe6\xaa\x24\x4a\x92\x21\xae\xba\x48\xa5\x46\xad\x6b\xe5\x5a\x07\xf5\xa8\xd6\xdd\x5c\x95\x45\xf5\xf4\x42\x8b\x20\x8d\x1a\xa3\xad\xc3\xe8\x07\x04\xb6\x7f\x17\x7c\xa0\x0e\x1b\x79\x84\x38\x3c\xaa\xfa\x7f\x3d\x68\x96\xac\xd4\x69\x77\x4a\x14\xe9\xff\x66\x29\x8c\xe8\xd8\x60\xa3\x14\x4c\xd9\x3f\xfa\x1c\x14\xe5\xff\xba\x10\xb8\x91\x6b\xee\xf8\xc1\xa1\x4e\x2c\x94\x20\x71\xd1\xbc\x6d\xcf\x3d\xd4\xf1\x0f\x3f\x3a\x9f\x8b\x95\xbe\xed\x6e\xb4\x0a\xf7\xdb\xd5\x06\x85\xfb\x83\x4d\xe8\x28\xdc\xef\xba\xde\x83\x75\xfb\x0f\x87\x80\x5e\x03\x68\x63\xc4\x1b\xc8\xcc\xd0\xfc\x01\x31\xd9\xbf\xc9\x77\x24\x7c\x5c\x83\xfb\x25\xd9\x02\x95\xfe\xbf\x21\xfc\x06\xf1\xc6\xc0\x3a\x49\x9a\x24\xe1\x5c\x27\x65\xf2\xe4\x37\x80\x9b\x9e\xe5\xb9\x40\xa3\x69\x7c\x42\x52\x52\x31\xb6\x71\x21\x36\xc3\x86\xdc\x8b\x46\x6e\xc7\x6c\x5e\x48\x8d\xf2\x03\x98\x93\x85\x9e\x35\xc9\x6b\x01\x46\xcb\xb8\xc2\x07\x39\x4f\x9a\xe9\x7b\x1d\xd3\x79\xc1\x4d\xd2\x32\xfd\xc5\x82\xa1\x76\x29\xba\x20\x31\x0d\xa7\x84\xb9\x10\xcb\x61\xd9\xf5\xfa\x24\x26\xd7\x50\x1f\x17\x8d\xe6\xd6\x6e\x5d\x30\x9a\x0f\x87\x26\x5d\x10\xa1\x8e\x9f\xf3\x04\x11\xca\xf7\x86\x8b\x9e\x93\x29\xfd\x95\x31\xe9\x82\xda\x3c\x49\xa0\xbf\xee\xb5\x0f\x42\xda\x9b\xa7\xd3\x53\x66\x64\x87\x0f\x27\x02\x3b\xd2\xcf\x7c\xd6\x5e\xbb\x4b\x90\x29\x09\xf4\x17\xcd\xe5\x56\xc8\x5d\x88\xdb\xf8\x39\xbd\x0f\xf2\x6a\x18\x9d\x9e\x35\x27\x1d\x93\x87\x60\x95\x88\x77\x41\x78\xb2\x8e\xfc\x7a\x48\xad\xbd\x0a\x44\xdb\x66\xcb\x7c\x17\xa2\x2e\x7e\xce\x3b\x94\x06\x49\xf2\xf3\xf5\x02\xe9\x8d\x3c\x2f\xe7\xa8\x55\x43\xd6\xfa\xd1\xb5\x5e\xef\x9a\xa4\xe6\x00\x57\x49\x7b\x16\x5e\x50\xcb\x0f\x87\x02\x5c\xc8\x15\x5c\xac\x5c\xbb\x5e\xee\xf5\xcf\x83\xc9\x07\xea\x73\x62\xaf\xdd\x05\xa4\xa9\x9f\xcd\x82\x6d\xdd\x2e\xa3\xd7\x24\x35\xf6\xa9\x42\x80\xaf\x3d\xce\xae\xb9\x66\xad\x75\x4f\x4a\x26\x26\xc6\xcc\x4c\x67\x55\xe6\xc5\x00\xdf\xe4\x73\xc3\x78\x5e\xdb\x0f\xae\x49\x14\x15\x52\xdd\x9f\x7c\xd5\x9d\x20\xef\x46\x7d\xaf\xc3\x1e\x8c\x37\x7c\x26\xed\x65\x79\x43\x5e\xb2\x4f\xc0\x0d\x97\xc8\xa4\xb3\x7e\x43\x99\xef\x59\xdf\x07\x70\x30\xbb\xbf\x05\x5a\x77\x70\xe3\x83\xae\xdf\x48\xcb\xdc\xfc\x01\xc9\xbd\x94\x6d\xf7\x27\x5d\x65\xb3\xf3\x9b\x05\x4e\xad\xa5\xbc\xa1\xfe\x4f\x12\x2a\x6f\x38\x51\x1a\x2a\x37\xd4\xff\xde\xdc\x3b\x14\xfc\xf6\x00\xa4\x80\x9e\xe2\x27\x6b\x35\xa7\xb2\xbd\x61\x2d\x3f\x1c\xad\x7d\x07\x22\xb5\xa1\xb4\x34\x27\x52\x8c\xde\x30\x10\x24\xe9\x5a\xee\x48\x82\x25\x35\xd4\xcd\x92\xaa\x56\xd9\xdf\x91\x80\xd7\xac\x21\x9c\xa5\xec\x1e\x29\x9c\x35\xbf\x40\x84\xf1\x56\xb0\xe8\x97\xf5\x9c\x77\xe4\x9d\xc2\x0b\x89\x44\x18\x83\x0a\x06\xf6\x12\xfc\xc2\x8b\x41\x3d\x29\x44\x1e\x8a\x5b\xdf\x30\xaf\x27\xc9\x6a\x37\x3d\x37\x1d\xf8\x7a\x53\xdc\x93\x22\xe3\x5e\xe2\x9e\xb8\xcb\xbd\xb4\x2f\x46\x10\xe6\xf0\xb3\xb3\xe7\x4d\xa3\xba\x44\x9f\x1b\x61\xcd\x66\x47\x77\x62\x81\x09\x0f\x41\xb6\xdb\x3c\x29\x2c\x42\xea\x99\x9b\x91\x44\x3f\x38\xcd\xa8\x66\x2b\x53\x6f\x58\xdd\x0f\x33\xa8\x3b\x53\x54\xf2\x42\x61\x86\x4f\x12\xf8\xee\xdc\xf0\xdb\x3d\x20\x16\xdb\x18\xc2\xba\xae\x56\xbf\xde\x05\x21\x55\x5e\x76\xa1\xa0\x64\x50\xd3\x0e\xe1\xb0\xe5\xbb\x50\x46\x11\x21\xbc\x0b\x5c\xfd\x0f\x77\x41\xda\x5b\xfc\x02\x20\x55\xdc\x25\xe5\x56\x31\x88\x9b\x95\x5f\x8f\xf2\x57\x46\xa5\xbb\x10\xcb\xa5\x9d\xb9\xcb\x5a\x94\x67\x40\xaa\x28\x85\xcf\x0d\xf7\xce\xe4\x35\x54\xde\xde\x44\xac\xef\xba\x96\xed\x37\x16\xf5\xf6\x1b\x84\xac\x16\xb5\x64\x52\xf1\xa4\x9b\xa5\x5e\x7f\x4e\x46\xe3\xd9\x92\x20\x76\xb3\x94\xab\xdd\x86\xee\xc6\xdd\xd3\x18\x6d\x1d\x1d\x3f\x00\x55\xf3\x4a\x99\xf0\xd8\x11\xb0\x37\x3d\x30\xed\xbb\x72\xbf\x28\xfe\x2e\xfa\x7e\x33\xf4\xcf\x11\xab\xf7\xcb\x75\x08\x34\x28\xc5\x64\xbd\xf4\x8d\xfb\x7c\x92\x7c\x79\xbf\xa0\x8b\x92\x83\x6f\x32\x18\x49\xbd\xf7\x5c\xab\x54\x87\x28\x5f\xed\xe4\x1e\xf7\xc4\x1d\x43\x3a\xc5\x7b\x22\x78\xca\xe4\x81\x09\x24\xac\x6b\xbf\x17\x3f\xd1\x49\x7b\x96\x6a\x5c\x47\xf1\x81\xad\x57\x35\x72\xc7\x43\x66\x20\xb8\x3e\x47\x43\x36\xc1\xa8\xdf\x00\xa3\x84\xe8\x87\xcc\xa1\xba\x9d\x08\x29\xa9\xec\x81\x16\xdc\x02\xc9\x43\xd3\xae\x03\x68\x1f\xd2\x76\x31\x83\x87\xb4\x5b\x2c\xf0\x09\x4c\x1b\xe9\xdf\x94\xda\xa4\x72\x78\x70\x09\x76\xfe\xe5\x07\x59\xae\x1c\x9d\xf2\x44\x2e\x49\x4b\x86\x1d\x36\xeb\x12\xfd\xc0\x77\xdd\x25\x7f\x1e\xda\x65\x7f\xbe\xbf\xb1\x02\xf7\x4f\xf6\x25\x05\xc3\x93\x28\xcb\x4a\xbe\x79\x12\x37\x52\x64\xfa\x49\x14\xda\x75\x51\x7f\x12\x63\x9b\xdd\x05\x17\x25\x25\xf7\x93\x28\xd5\x27\x7f\x01\x92\xd7\xfc\x05\x57\x2d\x28\x20\xaf\x43\x12\xcb\x7c\xf2\xda\x69\x4d\x2a\x93\x1d\x49\xb6\x7c\x78\x49\xf6\x46\x64\x5e\xa1\x86\x1f\x00\x70\x5e\x05\xd3\x5c\x99\x24\x3e\xf0\x80\xb7\x95\xed\xc9\x3c\x53\xa2\xba\x0f\x2c\xb1\xce\x4d\xf9\xf0\xd2\xac\x23\xf6\x14\x6a\x7a\x0c\x5b\x54\xf2\x49\xc6\x57\x90\x33\xe7\xe7\x7b\x16\x39\x12\xd1\x7d\x2a\x60\x2f\x82\xf8\x7c\xe4\x28\xb5\x9f\x76\x6e\x85\x08\xda\xb3\xc8\x53\xf1\x1b\x00\xc3\xcf\x0b\x0b\x0c\x9a\x43\xe5\x75\xb5\xf8\x8d\x93\x7b\xe3\x2e\x78\xb1\xf0\x24\xee\xef\xdc\x1a\x0c\x15\x7b\xe5\xdd\x6f\x14\xd1\x04\x06\x44\x51\x26\x63\x74\xa3\x24\x69\x30\xc0\x5b\xdc\xa6\xc0\xa7\x51\x61\x25\x59\xf4\x69\x34\x3f\x17\x77\xf9\xf2\x81\xe6\xc4\xbc\x0c\xd6\x51\x3f\x9d\xdc\x48\x0a\xaa\x87\xd9\xd9\x6d\xc0\x7a\x90\xf6\x20\xfd\xbc\xc0\xcd\x71\x3b\xef\xcb\x3e\xdb\x9d\xc2\xa9\x98\xc3\xc3\x7a\x36\x63\xfc\x55\x62\xa0\x87\xa9\xa6\xc4\x40\x1f\x24\x92\x4a\x36\x5f\x3c\x83\xda\x0c\xf1\xe0\x87\x0e\xe1\x87\x74\x68\xcf\x20\xa0\xd4\x05\xd3\x1a\x1c\x06\xfd\x89\xdd\x96\x42\xec\x39\xb1\x26\x99\x2f\x9e\x55\x76\xe6\xf0\x03\x10\x71\x8f\xc0\x24\x04\xf6\x47\x78\x4e\x96\x56\x3a\xfc\x00\xbb\x2d\x2a\xfe\x2c\x83\xb8\xf8\xdd\x73\x61\xbb\x8d\x60\xb0\x7f\x1f\x3f\x1f\x90\xb9\x79\x15\x17\xce\xd9\xf0\x0b\x5c\xb6\x57\x71\x7d\xcb\x76\x36\xb9\x07\x49\x0a\x92\x74\x78\xcf\xb5\x26\xed\x29\x90\xf1\x7b\xdd\xcc\x4a\xe0\xd8\xeb\xe7\x3e\xf8\x89\xde\xb8\x71\x76\x8d\x1d\x77\xc4\x98\x9a\xc3\xbd\x0e\x96\x5f\x20\xa8\x35\x26\x6e\xbf\xd9\xbb\xb9\x6e\xbf\x62\xc9\xcf\xbd\x96\x25\xc0\xac\x32\xd3\x87\xbb\x9c\xe8\x42\x80\x79\x12\x7e\xeb\x83\x87\xa2\xa7\x58\xf2\xf3\xdd\x66\x9b\xb3\x6e\x3f\x0f\x2a\x85\x79\x77\x1f\x52\x2c\x4f\xf2\xe1\x6e\x4a\x0f\xf1\x30\x45\xa8\xb9\xf6\xb3\x4c\x03\x06\xc4\xcb\xd3\x6a\x68\xbf\x94\x88\x75\x73\x7c\x5e\xae\xdc\x5f\x2c\x7f\x13\x7f\x41\xdd\xb0\x2e\x2c\xcf\xba\xae\x4a\x36\x78\xe0\x0a\x9e\x0f\x7f\xb1\xe6\xe9\x17\x08\x1a\xad\x9c\x65\x1b\xad\x7f\x7c\x26\x22\xae\x4c\xac\x91\x03\xf4\xf0\x05\xf8\xa1\x2f\xf8\x0f\x2f\x87\xa5\x3e\x4b\xff\xf8\x40\x9a\xb0\x43\xd1\x03\x63\x80\x23\xa4\x9e\x89\x39\x1a\x74\x73\xcd\x71\xc3\xe1\xa5\xa7\x99\xc3\xc5\xdf\x63\x01\x62\xe8\xc1\xc9\x37\x0e\x3d\x78\xf8\x20\xea\xc1\xea\x74\x83\xea\x65\x92\x4e\x8b\x24\x2f\x0a\x3e\x27\xab\x96\xde\x00\xeb\x8f\xb4\x5b\x2f\xf5\xea\x8e\x9d\x7e\x99\xa2\xc1\x92\xda\xfb\x5d\xf6\x5a\xf6\xc4\x91\x44\x27\x7b\xcc\x46\xab\xa7\x7a\x44\x74\x8f\x8b\xa1\xbd\x6d\x71\x08\xbf\x70\x71\x48\xf7\xf0\xc9\x82\xce\xb5\xf8\x36\xc2\xce\x1f\xac\xb2\x7f\xfb\x77\x5f\xa9\x0b\xf4\x02\x82\x7b\xec\x06\xff\x22\xe0\x7c\x38\x30\xf9\x85\xbe\x33\x59\x77\xf5\x76\x6c\xa7\xc1\x02\x55\x64\x16\x31\x7d\x07\x0e\xb4\x78\xf1\x3b\x10\x5d\x2d\x51\x10\x65\xff\x5b\x16\xb5\x7f\xe9\xae\x74\xfc\x3c\x60\xa0\xb2\x3b\xec\x7c\xc1\x0f\x16\x14\x3c\x05\xac\x5a\x34\xe6\x5d\xaa\x4b\x49\x3d\xef\x80\x32\xda\x3b\x75\x2e\x1c\x15\xa4\x4f\x4e\xca\xbf\x3f\x91\x38\x89\xf5\xbe\xac\x9c\x61\x81\xf6\x05\xc1\xcf\xf1\xaf\xdc\x1b\x5e\xb8\x00\xbb\x1e\xc4\x7b\x92\xcd\x7a\x5b\x4e\x2e\x40\x30\x5e\xcc\xc0\x2b\x3a\x19\x0e\x21\x59\xe1\x5d\x8a\x4f\x09\xed\x2f\xbc\xa1\x92\x6f\xa6\x2f\x14\x9d\xce\x2b\xf6\x7e\xec\xa0\x39\x61\xdf\x0b\x6e\x90\xa3\x7f\x83\x78\x64\xff\x46\xb9\x46\x1f\x32\x94\x07\x6e\x9e\xe3\xc7\x0c\x72\xfb\x99\x00\x8f\x58\xf0\x03\xb8\xa8\x36\x4f\x68\xa2\xd8\xaf\x36\xe1\x66\x10\x89\xf7\xf5\x46\xb2\xde\x9f\xdf\x0b\x33\x04\xf4\x7b\x61\x82\xe6\x88\x1c\x83\x3f\xe9\xbb\x5f\x24\xa4\xb1\x1b\xec\x8b\x40\xa0\x2a\x59\xe0\x7d\xa8\x1e\x56\x07\x28\x69\xe6\xab\xf4\x0b\xb5\x66\x4e\xfe\x4d\xd9\xc1\xab\x7e\xfa\x3f\x7f\x4a\xcd\x7e\x61\xc0\xa9\xd5\xbf\xa9\xd5\xd4\x1a\x1e\x4e\x48\x4b\x80\xab\x94\x53\x6b\xbc\x0f\x48\x44\xf2\x84\x26\xa1\xa8\x19\x7f\x7c\xa2\x65\xa9\x9c\xde\x97\x1a\x08\x91\xcb\x17\xa9\x65\xb2\xf7\x61\x29\x35\x75\x51\x79\x91\x41\x30\xff\x7c\x40\x99\xae\xba\x4b\xd0\x7c\x03\x69\x2e\xdc\xf2\x03\x54\x33\xb5\x9c\xf8\x4e\x2a\x03\xa5\x28\x79\x61\x12\xce\x3f\xbf\x09\xb7\xe4\x07\xdc\x3a\xb1\xa6\x17\x51\xdd\x59\x2c\xf5\x9d\x6b\xe1\xfb\x8b\xb9\xa8\xbc\xa8\xe5\x64\xd4\xb6\xc3\xf7\xe7\x32\xc0\x66\xbf\xf1\xa2\x4e\x49\xd4\x6f\x2a\x35\xb5\x5b\x33\x50\x23\xa0\x4b\xd9\x0c\x6b\x65\x7e\x83\xf7\x1d\x5d\x03\x27\x9c\xa5\x9c\xd6\x70\x86\x05\x7f\xcd\x02\x17\xcd\x2c\xb4\x9e\x8b\x6f\x24\xbf\xc0\x0d\xd1\x0d\x69\x06\xde\x04\x9a\x3f\xa1\x80\xf2\x33\x08\x05\xf3\xec\x07\x93\x6f\xec\x4d\x9d\x88\xba\xb1\x23\xe1\x84\x1a\x31\x4b\x4e\x9f\x71\xed\x90\x3f\xa0\x92\x48\x17\x39\xd4\xed\x6f\x59\xa8\x8f\xa2\xfc\xdf\xac\xd4\x45\xe2\x4a\x75\x61\x41\x8d\xfd\xf0\x73\xa2\x51\x53\xff\x7b\xa0\xa5\xb2\xa8\xbe\x33\x32\xa0\xa8\x7e\xca\x3f\x5f\xa0\xc8\x91\xb1\x77\xa6\x45\x35\x34\x4f\x5c\x50\x73\x71\x97\x5c\xb9\x90\x71\x2e\x25\x9d\x78\x1e\xaa\xe6\x7f\x0f\xd4\x05\xbc\x87\x87\xf3\x3e\xa0\x6e\x7e\x4c\x3f\x78\x90\x41\x90\x8b\xbb\xb8\xfe\xf9\x53\xec\xdf\xca\xb2\xf8\xce\xba\x3b\x19\x09\x63\xd0\xc0\x01\xca\x15\x02\x67\x21\x6a\xea\x52\x8c\x2a\xf9\xcd\x69\xce\x56\x91\x7c\xe7\x79\x98\x85\x58\x62\x34\x2a\x0b\xb8\xfe\xa4\xf3\x13\x2d\xbc\x50\x1a\x30\xa6\x51\xed\xe6\xcc\x08\xb3\x90\x6d\xe4\xbf\x4a\x13\x34\x2b\x24\x39\x7f\x5d\x21\x05\x4b\x42\x9d\x95\x3c\xaf\xfb\xc1\xe0\x78\x9a\x33\x7c\xa4\xb2\x91\x10\x79\x7f\x72\x75\xfb\x9a\xa0\x5f\x58\x13\x14\xe0\x2a\x4f\xa8\xf1\x96\x15\x64\x9d\xd8\x60\x36\x6e\xb7\xae\xe2\x13\xb7\xdc\x2c\xea\x35\x1b\x19\x9f\x11\xbb\x11\x1f\xc4\xf9\x26\x94\x7a\xd9\x87\x1e\xc9\x81\x72\xf5\x10\x3c\x7e\xc5\x2f\x3c\x7c\xa0\x31\x3b\x92\xff\x78\x61\x9d\x48\xe9\xa3\x31\x48\x58\x44\xf7\xe7\xa0\x84\x21\x9d\xc5\xa4\xd8\x63\xba\xb2\xc4\x1e\x9f\x3f\x56\x58\xb5\x7b\xf2\x44\x10\xb2\xed\x1d\xf3\x93\x72\x8a\x9d\xbf\xe6\x27\xe5\x7c\xb0\x53\x0f\x48\xc6\x97\x4d\x56\x4e\x12\x37\x9f\x25\x06\x25\x5b\x2f\x32\x4f\xc2\xce\x07\xe1\xe4\x9d\xc3\x9f\x20\x92\xe8\x27\xc3\xc2\x64\x35\x2d\xb3\xd8\xc9\x4c\x75\x16\x5e\x26\xcc\x9f\xc5\x3e\x67\xa8\xf2\x1f\xb2\xaf\xd7\x2c\xeb\x9f\x6d\x2d\x9c\x88\xe2\x39\x14\x63\x7e\x36\xdc\x5d\x8b\x52\x49\x9c\x17\xb5\xe0\x4a\xe4\x30\x3b\x14\xaf\x25\x6f\x12\x39\x3b\x02\xd9\x4b\xde\x33\x9d\x88\x1e\x09\x49\x69\xe7\xe7\x80\x7c\x9e\x74\xad\x9f\x88\xde\xf8\x26\x96\xf7\x83\x48\x87\xaf\x2d\x28\xce\x11\xe9\x3b\xbf\xaf\x86\x73\xc0\x2a\x91\x74\xd3\x9f\xf4\xc7\x4f\xb2\xfe\xce\x01\x0c\x4e\xd2\xd7\xcf\x81\x2c\x4f\x59\x1a\x92\x09\x87\xfc\xa6\xac\xa2\x73\x20\xfc\x3c\xeb\x2a\x38\x07\xf6\x29\xeb\x06\x3b\xe1\x77\xde\x94\x8e\x75\xc2\x4b\x3c\xb8\x9a\xdc\x84\x4b\x76\x70\x4d\x9b\x39\xa0\x24\x56\x3d\x90\x49\xdf\xe5\x24\xa7\x8f\x09\xb7\xe2\xae\x5b\xd6\x84\x5b\x71\x97\xd8\x3e\xe1\x56\xdc\x54\xd6\x64\xd2\xab\x38\xcb\x49\x68\xc2\xab\xb8\xe7\xee\x0f\xd2\xf7\x5b\x8b\x38\x3f\x46\xd9\xf3\xd6\x36\xcc\x33\x30\x00\xf7\xf0\x0b\xf5\x9f\x3f\xbd\x68\xbf\xce\x8f\x4f\x76\xa5\x0f\x9a\xe7\xc7\x04\x7b\xd9\x47\x6a\x9e\xdf\x7d\xab\x97\xee\xef\x9f\xef\xf7\xcf\x84\x5e\xfc\xf6\x80\x48\x83\xe1\x15\x46\x24\xbf\xdc\xf4\x74\xc2\xe9\xb8\xd7\xe4\x76\x16\x50\xad\x7e\xc0\x52\xa6\x9a\x40\x44\x92\xec\x24\x90\xb0\x4a\xe8\xbe\xee\x4d\xb8\x24\xf7\xea\x05\x44\x94\x09\xf1\x84\x23\xbd\x03\x3d\x81\x07\xc2\xe8\xde\x65\xb8\x2c\x87\x24\xc2\x35\xe9\xb3\x9c\x92\x67\x04\x8d\x70\x92\x1a\x69\xc2\x89\xf9\x7b\xe0\x3e\x20\x43\xcb\x6a\x3a\xe1\xd5\x1c\x92\xb8\xe3\x84\x57\x73\x53\x25\xab\x09\xa7\xe6\x6f\x10\x2d\x0b\x5e\xcd\x8e\xcd\x98\x27\xd8\x7c\x12\x2d\x9b\x27\xd8\x7c\x4a\x5e\x19\x2c\x6d\x49\x7a\x86\x79\xd2\x15\x4b\xe9\xd3\xe6\x99\x78\xf6\xfe\xea\xc2\x34\xe1\x47\xfd\xbd\xed\x49\x4f\x0e\xa0\x39\x65\xc2\xaa\x0a\x12\x99\xb0\x32\x3e\x66\xc2\x2a\x69\xd6\x99\xb0\x2a\x02\x6f\x26\xac\x9a\x80\x97\x09\xab\xa8\x59\x43\x75\xad\x42\x93\x13\xde\xd6\x5f\x9f\xee\x82\xb0\xca\xfe\x82\x22\xd1\xd0\xcc\x21\x6a\xb4\x9f\x2f\x08\xaa\xe6\x89\xf3\xe8\xfa\x1c\x64\x82\x2a\x7b\x5a\x84\x46\xf2\x03\x42\x63\x68\xad\x85\xd0\x28\xea\xb4\x10\x1a\xde\xe5\x42\x68\x44\xf5\x51\x08\x0d\x63\x6b\x21\x34\xb2\x40\x5c\x16\xe6\xf8\x01\x69\x5f\xd1\x4c\x0b\xc1\xe1\x23\x47\x37\xee\x1f\x5c\x2a\x44\x9d\xe6\x07\x44\x9d\xe2\x4e\x61\xd5\x0f\x3f\x7d\x30\x03\x9d\x21\x58\xd6\xde\x0b\xc6\xac\xaa\x2f\x97\x89\x79\x56\xae\xd6\xc4\xaa\xae\xd5\xfa\x0d\xae\x56\xbc\x00\xee\xe0\xc1\x37\xfc\x09\x7f\xf0\x6f\x14\xa1\x0b\x7c\xde\x8a\x34\x93\xf3\xac\x5c\x6d\xf4\x27\xdc\xfc\xe6\x4f\xb8\x5a\x63\x3d\x04\x24\x15\x79\x9e\x70\x22\x0f\x76\x80\x9a\x27\xa2\x8b\x73\x34\xd6\x42\x64\x4a\x4a\xd6\x33\xe1\xe7\x3a\x0c\xf3\x17\xd5\xf8\xe4\x13\x3e\xa1\x95\x6a\x8a\xdd\x9a\x2f\x0c\xef\x12\x65\xe7\x9b\xc0\x3a\x44\x25\xe7\x11\xfe\xf9\xa3\x0b\xf1\xc4\x2d\xab\x4b\x35\x3a\x71\xc9\x92\x8e\x6b\xce\x95\x18\x4b\x3f\x99\xea\x45\x3f\x99\xd5\x41\x3f\x1b\xfa\xf2\xc7\x88\x7c\xee\xfa\x89\xd2\x5a\xee\xeb\xfe\xe7\x8f\x89\xe9\x3c\x50\x97\x3f\xe9\xe7\x27\x81\x27\x77\x3d\xff\xf9\xa3\x8a\x4e\x73\x06\x56\xe5\xd2\x4f\x7c\xab\x97\x03\x6b\xbf\xe8\xe7\xf7\xed\xbe\x71\x4c\xdc\x9c\x54\x67\x7b\xe2\x86\xa2\xa8\xd6\x89\x0b\x8a\x49\x3a\xae\x27\xb2\x9c\x4e\x5c\x4e\x54\x4a\x71\xe2\x6e\xa2\x12\x7f\x73\x7e\x34\x49\x4a\xe2\x39\xcb\xd7\xb3\x10\x6c\x16\xf4\xac\x49\x7e\x78\xaf\x9c\xfc\x13\xa2\xbb\xf2\x27\xcd\x09\xd7\x26\x9d\xde\xf9\xa6\xaf\x67\x4d\xe3\xcd\x00\xb4\xdf\xc6\xb6\xf8\x6d\xe4\xc8\x25\xb0\xc2\x44\xe5\xf0\xbe\x33\xcb\x86\x19\x71\xb1\x3e\xb6\x35\x37\x4c\x16\x47\x0c\xfb\x26\x10\x26\xd2\xdf\x84\xb8\x43\xa1\xe2\x71\xc0\x1c\x9b\x76\xd6\xc7\x78\x1c\xc8\x33\xa9\x88\xae\xef\x01\x64\x98\xad\x93\x8b\x07\x4b\xf9\xb7\x6d\x55\xfe\x1e\xd0\xd7\x32\xeb\x13\x44\xb1\xe7\xed\x27\x19\x0f\xd4\x48\xff\x84\xcf\xb6\x1e\xa0\x4c\x73\x3c\x76\x02\xe2\x78\xa0\xe2\x6d\x48\x5d\x6f\xc4\x40\x6b\x64\xd9\x7d\xa0\x2e\x50\x90\x33\x7b\x3c\x58\x84\xa5\xc5\xf1\x17\xae\x75\xf1\x48\x9d\x6f\x77\xf5\x37\xb9\xd0\xb1\xa7\xb0\xf2\xd4\x6f\xe7\xe9\x78\x94\x63\xbd\xb1\x3f\x29\xe0\x55\x79\xe7\x55\x88\x07\xf2\x49\x7f\x20\xda\xa0\x28\x8c\x3c\x48\x02\x56\xdd\xc2\xd5\x06\x78\xa5\x71\x79\xa7\xd1\x8c\x47\x7d\xe9\x59\xd4\x37\xf4\x90\xe4\x2b\xb4\x1d\xb4\x15\x8f\x46\xa7\xbf\x7d\x73\x8a\x07\x33\x9a\xc8\xcb\x2f\x1e\x1d\x6c\x5b\x8e\x83\xf1\xe8\x30\x00\xc9\x43\x2e\x1e\x83\x56\xf6\x9d\x96\x22\x1e\x03\x06\x41\x79\xa7\xc5\x63\x30\xf9\x53\xd0\xa6\x21\x78\x34\xc8\x9f\x2d\x1e\x8b\xb2\xee\x7a\x6d\xf1\x38\x99\xf3\x79\x53\xc5\x78\xc0\xff\x3c\xc8\x35\x2c\x1e\x17\xb2\x29\xa5\x5d\x4c\x22\x1e\x70\xca\x0c\x69\x07\x52\xc4\x03\x46\xe5\x20\x27\x89\x78\x3c\x0b\x35\xc6\xee\xe3\x61\x29\x8e\xcd\xad\xe2\xf1\x62\x1e\xb2\x3b\x7e\x0f\x38\xac\xb6\xe1\x65\x9e\xa9\xcd\x8a\xe3\x31\x0b\x61\xba\xf8\x6a\x0c\x2c\xbf\x2a\x8d\x7d\x0c\x91\x62\xcc\x8e\xd3\x8f\x21\x82\x49\x4a\x67\x1f\x43\x64\x0a\xaf\x2d\x48\x7f\x0f\x2e\xbe\xd1\xf6\x03\xb8\x46\x4a\xdb\x1b\x03\x6a\xbf\x05\xe9\x87\x63\x88\xf0\xce\x93\x1a\x32\x86\x04\xe7\x85\xba\x93\xdf\xc7\xc0\xe2\x53\xd2\x1b\xc6\x80\x5a\x52\x41\x8a\xc5\x18\xd2\xcd\x07\x79\x8f\xc2\x32\x01\x2d\x2f\xbb\xcc\xf7\xe0\x65\x71\xb6\x3d\xd3\xb2\x26\xd6\xf6\x1b\x35\xf3\xc1\x86\x58\x40\x8e\xd1\x4f\xac\xdb\xa3\x20\x2f\x62\x68\x79\xec\x4f\x90\x1e\xef\x7b\xb0\x01\xd4\x71\x3d\xac\x3b\x39\x72\x0c\x8c\xa1\x6d\x25\xee\xc5\x21\xba\xb0\x75\xfd\xbe\x99\x35\xa4\x6c\x62\x13\x1e\x86\x0e\x94\x4d\x8e\xc2\xc2\x86\x92\xf7\x27\x34\xcf\xb7\x92\x37\x38\x1e\x58\x56\xda\xce\xd4\x19\xc3\x33\xf8\x46\xf1\x83\x9b\x0f\xf6\xcc\x69\xe3\x6d\x3b\x4d\x74\x0c\x0f\x90\xb0\xed\x48\xfb\x18\x68\xb2\x6b\x3b\xb5\x47\x0c\x2f\x2b\x73\x14\x81\xf4\x4d\x84\x8f\x26\x06\x56\x14\x5a\x69\x7a\xd0\xb8\xb8\x4d\x9f\xc2\x84\x6b\x66\x2b\x8b\x1a\xc7\x18\x88\x2f\xfb\x1e\x13\x23\xea\xe7\x86\x21\x5a\x10\x13\x3b\xad\x7e\x80\x0c\x22\xad\x6e\x7a\x12\x2b\xd3\x4f\x6e\x7d\x6c\x8c\x15\x4e\xa5\xad\xee\x53\x1a\x91\x48\x25\xb4\x5d\xd5\x37\x46\xa6\x25\x69\x3b\xe9\x7d\x8c\x03\x66\xf4\xb6\x0b\x59\xc6\xc8\x50\xb2\xb6\x59\x58\x8c\x57\x66\x70\xf3\x46\x8f\x48\x0f\xf1\xb6\x8b\x7c\xc4\x48\xf7\x47\x19\x21\x62\x84\xef\xe2\xf7\x60\x6d\x43\x5c\xc7\x76\x3b\x6c\xc7\xf8\x32\x26\x63\x2b\xb5\x62\x9c\xc8\x46\x7a\xec\xd4\x97\x31\xb1\x22\x78\xdb\x85\x46\x63\x0a\xc4\xa8\xed\x32\xf7\x3d\xe0\x36\xec\xa3\x9f\xc2\x64\x1a\xe5\x0d\x8f\x94\xe0\x09\xd6\x76\x28\x47\x4c\x2c\x4e\x94\x77\xde\xc6\x98\x12\x53\xd7\xef\x48\xeb\xef\xc1\xfa\x24\xeb\x01\x87\xad\xea\xf4\x59\xc9\x9a\xdd\xc7\xc9\x07\x51\x0f\x26\x1f\xa8\x0f\x1e\xfd\x5d\xd7\x2e\xa6\x34\xa9\x3c\x89\xfb\x93\xc5\x6f\x5a\x8f\x7f\xc1\xbf\x52\xc6\xed\xa2\xed\xba\x5b\x31\xb1\x68\x4a\x6b\x7b\x4b\x52\xa6\x1b\x5d\x13\x6c\x32\xa7\xb0\x0b\x8e\xc4\x54\x18\x7a\xb9\x6d\x1a\x31\xa1\x2a\x44\x68\x3b\x91\x7c\x4c\x85\xf0\xdd\xd1\xd9\x31\x31\xcb\x7b\xeb\x82\x6f\xc5\x95\xb1\xed\x3c\x52\xdf\x03\x3a\x94\x0e\xbd\x41\xda\xd2\xb5\x69\x0d\xc1\x52\xad\x0b\x9c\xc8\x3f\x1a\xda\xce\x65\x18\x53\x03\x63\xad\x43\x33\x65\xce\xc7\xba\x33\x32\x7e\x0f\x56\xfe\xc4\x3d\xd3\xb6\x0a\x81\xef\xf3\x97\x90\xda\xec\x93\x2c\x34\x2c\x13\x8d\x75\x6d\x49\x27\x8a\xee\x2c\x47\x31\x21\x15\xd3\xf7\x60\xf7\x71\x0e\xae\x76\x8b\x00\xe9\x86\xea\xa9\xed\xc4\x24\x31\xdd\x50\x81\xe5\xa8\xd5\xde\xd8\xd6\xb4\x43\xe6\x63\x7a\x50\xe9\xbb\xed\xe8\xd0\xef\x01\x62\xe6\xb7\x62\x29\xa6\x27\xf3\x0d\x01\xe8\x21\xbe\xed\x9c\x3d\x31\x3d\x94\x4d\x86\x0e\xc2\x43\x5a\x32\xb4\x0d\x13\xee\x3b\x6d\x3b\x23\xc6\x7c\x64\x1e\xa6\x8d\xd5\xf9\xa0\x2f\xcc\x0e\x18\x8d\x39\x40\x51\xd4\xb7\xad\x34\xe6\xc0\x92\xad\x3b\x02\x26\xe6\x80\xb5\xf4\x6d\x18\x8f\x19\x85\x43\xbf\x4b\xcc\x9a\x69\x4e\xd0\x11\xf6\xed\x27\x1d\x33\x0b\x7b\x89\x6d\xe4\xca\xfa\x8e\x5b\x67\x1b\x33\x33\x6c\xf7\xad\xcb\x8c\x99\x29\xe8\x54\xf2\x3d\xe6\xce\x1c\x90\xbb\xbe\x45\xcc\xbc\x26\xf7\x6d\x0b\x8f\xf9\x62\xa9\xe9\x6d\x7c\x88\xf9\x62\xd9\x9b\x6d\x07\x88\x99\xfe\xdb\x5d\xb4\x25\x3f\x48\xa0\x96\xb6\x93\x56\xcc\xef\xb1\x6c\x1e\x5d\x0f\xb0\xd8\xe0\x07\x10\x96\xfb\xce\x0d\x19\xf3\xcb\xb4\xa0\x61\xe3\x5c\x7e\x59\x1c\x2f\x68\xea\x73\x59\xcb\x36\x23\x29\x07\xeb\x70\xef\xb2\x18\xb1\x1c\x4c\x9c\xb5\x73\xa6\xc5\x12\xe0\x05\xde\x77\xfe\xaf\x58\x02\x12\x88\xf7\x9d\xaa\x31\x96\x70\x73\xf9\x43\x9f\xb0\x62\xec\x4e\x9b\x18\x0b\xca\xac\x7f\x0f\x76\x1f\x91\x81\xdf\x3b\x7f\x41\x2c\x2c\x4e\xd5\x25\x81\x97\xcc\x82\x32\xfb\x66\x11\x4b\x66\x72\x88\xed\x74\x1b\x4b\x39\xd6\x1b\xfb\x13\xd4\x63\x09\x7d\xfb\x5e\xc4\xc2\x3c\xf8\x59\x42\x7b\x69\x94\xc0\x85\x2f\xa5\x71\x2d\x3b\xbf\x40\x2c\x0d\x62\x45\xdf\xc1\xfb\xb1\x30\xa7\xd6\xae\x03\x1b\xcb\xa0\x30\xb3\x6f\x28\xdf\x03\x2a\x8c\xb7\xf4\x5b\x56\xda\x8b\x7d\x2f\x8e\x05\xc1\xbc\x21\xed\x98\xf4\x58\x4e\xa6\x6d\xda\xd9\x58\xbf\x07\xfc\x64\xe9\x26\x62\x39\x99\xf6\x70\xa7\x63\x8d\x85\xc1\x43\x5d\xc7\xb8\xdc\x20\xaf\x7d\x47\x08\xc6\x72\x83\xe0\xf4\xad\x30\x8e\x65\x49\x11\xdb\xf0\x19\xcb\x4b\x18\x27\xad\xfe\x25\x9a\x4a\x2c\x2f\x2f\x84\x97\x9e\x34\xd3\x97\xf5\xc7\xb7\xa2\x21\x96\xf7\x5e\x6f\xec\xa9\xbf\xcc\x34\xb9\xb5\x39\xb1\xbc\xef\x7a\xb0\x3b\x9d\xcc\xc5\xbc\x9d\xe1\x63\xc1\xf5\xf3\x7b\xb0\x47\x99\x84\xd8\x56\x89\xc4\x32\x21\xde\xf4\xad\x3a\x8c\x65\xb2\x0a\xdc\x56\x44\xc5\x7a\x1c\xec\x63\x13\x9c\x7a\xc0\xb4\xd9\xb7\x4a\x2d\xd6\x83\xc9\x68\xb6\xeb\x5e\xac\x07\x8a\x0c\xf7\x54\xcb\x5f\xb0\xaf\x1a\x81\xf6\x69\xa7\x5f\x8e\x35\x56\x5e\x2b\xf7\x7d\xac\xc6\xc6\x01\xf6\xc1\xa8\x91\x55\x96\xb6\xd7\x63\xac\x29\xaf\x9a\xc1\xbb\x0f\x56\xa6\xeb\x5b\x25\x17\x2b\x4a\x37\x84\xbe\xbd\x64\x62\xad\xbc\x89\x6e\x77\xa1\x58\x91\xea\x3a\xf4\x9d\x79\x31\xd6\xce\xb4\xec\x59\x2b\x5f\x09\xbb\xb6\xfd\x3a\xd6\x41\x8d\x5b\xf5\x03\x52\x9f\x5c\x76\x1f\x50\xfb\x87\xbc\xd3\x61\xc7\x3a\x56\xa7\x82\xde\xc9\x13\x9b\x05\xbd\xa5\x4f\xdb\x76\xc4\x58\x4f\xd4\xd9\xec\x3b\x4d\x72\xac\x2b\xe0\x7f\xdb\xdc\x62\x3d\xc9\xcf\x0e\xbd\xc1\xd8\x8e\x96\x37\x56\xd7\x9b\x55\x48\x77\xd1\xbb\x58\x6f\x1a\x92\xa2\x1f\x70\x62\x3b\xda\x23\xd6\x97\xbc\xe8\xd0\x36\x2c\x14\x2d\xfb\xca\x52\x69\xef\xea\x92\xd1\xeb\x44\x50\x52\xdf\xe5\xda\x62\x3b\x26\xeb\xff\xed\xa3\xd2\x02\xf3\x65\x6e\x85\x7f\x6c\x21\xb1\xf2\xc3\x66\xc5\x8d\xf2\x53\xdf\xb5\x96\xbf\x07\x17\x1f\x1c\xfb\x01\x79\x51\xdd\xf4\xa9\xa1\x22\x60\xe8\x75\x9f\x9d\xef\x02\xc4\x07\xbb\xd3\xca\xa4\x99\x75\xa3\x79\xab\xf0\xfc\xea\x5b\xd9\x14\x1b\xab\xdc\xf4\xba\x65\xc1\xc6\xb2\x1c\x2a\x34\x10\x5b\x45\xdd\xac\xbe\xdd\x40\x62\x6b\x64\x13\x5b\x17\x14\xdb\xca\x85\xbe\x2b\xb4\xc7\x86\xa4\xdb\xdf\x83\x05\xe4\x36\x3a\x87\xdd\xc2\x61\x43\xfe\xa2\x4f\xd0\xdd\x00\x3a\x3b\x67\xba\x85\xb9\x76\xb1\xe6\xc3\x56\x7c\x7d\x0f\x30\xec\x4e\x0e\x16\x1b\x43\x01\x65\x63\x88\xed\x4e\x8c\xc3\x16\x3c\x6e\x48\xf1\x0a\xc4\x8d\x0d\x5e\xc2\xf1\xd8\x55\xcf\x62\x7b\x90\xca\x58\x8e\x6e\xb1\xbd\x61\x3d\xd8\x9f\x4c\x5e\xcf\xb7\x92\x31\x76\x6a\x7f\xfa\xce\x08\x12\xfb\x81\x0a\xa4\xbd\xed\xb5\x7c\x64\x17\x20\xdc\x30\xed\x91\xc5\x50\x76\xad\xff\xd8\x23\x33\xd4\xb5\x7d\x23\xe9\x28\x0f\x1a\x94\x02\x3c\xf6\x4c\xf2\xb3\x6b\xc5\xc7\xce\x0a\x7f\xbd\xed\x2b\x4a\x2f\x2c\xea\x2b\x09\xbc\xd7\x87\xf0\xd8\x20\xec\x28\x1e\xf0\x3d\xd8\x9f\xac\x54\x63\x3b\xcd\xfd\xf7\x80\x65\xe3\x36\xd2\xf5\xb1\x2a\x05\x07\x7d\xd2\x1b\x93\x79\x26\x3d\x60\x25\xad\x8d\x63\x7d\x1d\x64\xc9\xc3\xfd\xdc\x05\xad\xf5\x46\x66\xf9\x8e\xcd\x03\xfb\xb9\x8a\x05\x6b\xf9\x27\xeb\xa0\xec\x3c\xdc\xb1\x9f\xe4\xf8\x3b\x8f\x76\xec\x27\x8f\xa9\x24\xe6\xbe\x38\x5a\xdf\xb2\x49\x67\x5c\x69\x97\x70\xdb\x19\x9d\xd8\x25\x0f\x77\x1c\xf5\xb6\xb5\xa3\xb1\x3f\xdc\xeb\x9d\x7b\x32\xf6\x67\xcd\x6b\x8b\x26\xfd\x59\xb5\x41\x37\x05\xee\x6f\x58\xe0\xa8\x7a\xc0\x41\xba\x1e\x30\x0b\xff\x56\x42\xc7\xfe\x76\xae\x6d\x33\xd6\xfe\xbe\xec\x74\xa8\x53\x24\x0c\xde\x95\xde\x63\x9f\xab\x2a\xe6\x96\x5d\xfa\xa2\x2f\x3b\x4b\x55\x1c\x91\x68\xbb\xf3\xf9\xc4\x11\xaf\x95\xba\x7f\x81\x78\xe4\xc1\x37\xb6\x5a\x65\x94\x9b\x09\x57\xf6\xae\xac\x1a\x3e\x69\x57\xc3\x8e\x2c\x66\x11\xfa\x28\x7f\x91\x79\x3c\xb2\xc6\x42\xe8\x3b\x7a\x3c\x8e\x56\xf8\xf9\xa6\xce\xcc\x78\x19\xba\x04\xf2\x71\xae\x90\xa4\x7d\x82\xc7\x43\xfb\x50\xd3\x32\x9e\x87\xa1\x30\x71\xf7\x41\x4f\xd5\xb1\x1d\x8c\xe2\x78\x19\xe4\x91\x36\xb9\x1e\x6f\xa6\x07\xf4\x26\x71\xe3\xed\x2b\x8e\x75\x77\x4a\x57\xbb\xb1\xdd\x4f\x22\xfd\xd6\xc2\xd8\x8e\x18\x71\xbc\x2b\xcd\xc8\x56\x87\x8c\x79\x33\xd2\xb5\xe9\xc1\xd3\xfe\xed\xc1\x79\x04\x8e\xb2\x25\xac\xf3\x88\xf4\x06\xdf\xd8\x76\x1e\x7d\x85\x51\xe4\xfd\x60\x2e\xcf\xfb\x05\x8f\x33\x8c\xe5\x2f\xbe\xfb\x88\x17\x85\xe7\x4d\x26\x4f\x96\x9a\x1e\xd2\x40\x9e\x99\x71\x81\xbb\x34\x4e\x3c\x0b\xe4\xb8\xb1\xcb\xb6\xc4\xb3\x2e\x57\xb2\x2d\x2e\x9d\x15\x0e\x57\xc7\x8e\x54\x8f\x67\xbd\xd6\x1b\xbb\xd3\xf1\xd2\x45\x61\x93\xa7\x0b\x75\x1c\x82\x8a\x57\xc4\xab\x91\xe1\xef\x0c\xe2\xdf\x03\x12\xd2\x7d\xb3\xbe\xda\x72\xd8\x19\x7e\x83\x4a\xdc\x8d\xc4\x57\x43\x90\xc8\xb1\xf3\x9e\xc5\x0b\x09\xff\x3f\xb9\x36\xeb\x01\x35\xa1\xfb\x3c\x5e\x48\xe8\x1f\x0f\xad\xe5\x6a\x9d\x0a\x93\x7d\x84\x2f\xe4\xdb\x0f\x79\x57\x6d\xfc\x1e\xf0\xd2\xb7\xb1\xfa\x6a\x9d\x85\x3b\xa2\xde\x18\x64\x3d\x9b\xa2\x5d\xc8\x36\x1f\x8f\x5d\x59\xf2\x7b\x00\x47\x9d\xe0\xe5\x5f\xb4\xdb\x35\xf5\x81\x8a\xd0\xc7\x4e\x8c\xfb\x3d\x98\x14\x2b\x34\x31\x3a\x5b\xee\x8c\xa0\xdf\x83\xce\x42\x8b\x7a\x83\x9e\x87\x32\x1a\x5c\xc8\xa9\x1d\x0f\xd1\x96\x8b\x09\xad\x8f\x9d\xe7\xe9\x7b\x70\x32\x4a\x7c\x41\xfd\x29\xb4\xea\xf6\x2d\x66\xbd\xb1\x51\x97\xbe\x49\xfe\x5b\x68\xa6\x13\xdd\x7c\x51\x00\x27\xe4\x1d\xd7\x10\x27\xb3\x87\x17\xe9\x8e\x27\x33\x77\x4b\x47\x32\x3b\x9d\x19\xb6\x51\xe5\x7b\xd0\xf1\x42\xd3\xef\x93\x8a\x62\x7d\xb1\x44\xdb\xee\x07\x9d\x4a\x6f\x7d\x12\xef\x7f\x53\xad\xcf\x4e\xe3\xfe\xb6\x55\x7d\x0f\x48\x9e\xf6\x41\x9f\xc8\xf9\xfc\x4d\x23\xee\x07\x34\xf3\x4a\xef\x32\x3b\x2d\xa1\xba\xdf\xcf\x5e\xb9\x6f\x51\x6f\x40\x1c\x4c\x3d\xa9\x0f\xb8\x47\x35\xcf\xfc\x13\x43\x5a\x4b\xfa\xcd\x7c\x92\x92\x30\x67\x1f\x5c\x6b\xd4\x18\xe7\x9a\x96\x3e\x81\xc3\x73\xda\xee\x28\x71\xf6\x8b\xf3\xac\x5a\xfc\xc5\xf3\x16\xb5\x56\xc4\x64\x48\xe3\x3d\x91\xd7\xf7\x47\x41\x37\x91\xd8\xb7\x6d\x43\x69\x9c\xcc\xdb\x9b\x77\x86\xec\xef\xc1\xda\x23\xbf\x81\x79\x6e\x73\xde\xf7\x00\xcc\xcf\x2f\x20\x45\x60\x92\x8c\x36\x07\xbd\x66\xa4\x04\x9c\x63\x19\xc2\x36\x4e\xcf\x71\xd0\xfd\x47\xd0\x1b\x6b\xe3\x35\x71\x66\x84\x95\xe9\x6c\x22\x23\xec\xd7\x85\x1e\x2c\xaf\x83\x2d\xc5\xcc\x41\x2f\x03\x29\xbe\xe6\xa0\x95\x58\x87\x6f\x0e\x58\x2e\x92\x2e\xc8\xcb\x21\x28\x1f\x9e\xe8\x43\xe7\xb0\xfa\xef\xfe\x16\xf1\x7f\xc2\xb6\xe6\x60\xa2\x85\x1d\x39\x14\xe7\x58\xe9\xfc\xeb\xff\x9a\xeb\xfd\xeb\xfc\x8f\xff\xf7\xc5\xeb\xdf\x17\xc7\x3f\x7f\xd6\xbf\x50\x2b\xef\xe7\xe5\xd1\xf3\x86\xb2\x73\xbb\xe1\xbb\x24\xef\x7f\x3f\x08\x1f\xfa\xe4\x72\x57\x17\xeb\x2f\xa8\xe5\x76\x0b\x33\x22\xee\x96\xdb\xdf\x20\xfd\xe6\xb6\xde\x1e\xc7\x27\x0d\xaf\x7f\x69\xdb\x38\x76\xcb\x33\xdc\x42\x19\x7a\xb7\xbc\xee\x8d\xb9\xb9\x92\x5a\xdc\xdb\x64\xb1\x80\xdd\x32\xdd\x1b\xf2\x28\x6c\xfb\xf9\x11\x3e\x29\x65\xff\x3b\x98\x2c\x7d\xcf\x3b\x7e\x47\x73\xff\x8b\xb5\xca\x6d\xfc\x88\x9e\x45\x04\x5e\xdb\x39\xf5\x23\x60\x6e\x43\x9f\xaa\xc3\x73\xa4\x43\x90\x4d\x07\x8b\xd6\xaa\xa5\xba\x05\x94\x67\xc3\x22\x05\xcd\x31\xd1\x33\x59\xd9\xfe\x8f\x14\x1e\xb7\xbd\x6c\x8b\x6a\x9b\x6a\x63\xc2\xa8\xae\x1d\x4e\xe9\x54\x1b\x7c\x83\x8a\x12\xe9\x1f\xe9\xa3\x27\xfb\xdf\x55\x79\xc8\x6d\x9e\x0b\x2a\x17\x1e\x8a\x9a\x38\xd2\xf0\xda\xa0\x65\x51\xd4\xd2\x91\x3e\x2c\xda\xff\x7e\x4b\x38\xfc\xd5\x79\xbb\x09\x0c\x49\xce\xf8\x47\xba\xdc\x23\x24\x65\xf9\x81\x1f\xe9\x76\x8f\x88\x27\x93\xaf\xe7\x01\x53\xc1\xfe\x17\xec\x49\xae\xf3\x07\x74\x0d\xfb\xdf\x9b\x6d\x4d\x6d\xaf\xdb\x38\x93\xed\xd5\x71\xe0\xda\xba\xff\x2d\x18\x6e\xa8\x49\x1b\x87\x3a\xef\x41\xa1\x34\x07\xea\xbc\xaf\x7f\x61\x0e\x56\xcd\xcf\x03\xc5\xd1\xf7\xbf\x9c\xc8\xf6\x22\x3b\x50\xc5\x7c\xff\xcb\x89\x6c\x2f\xa0\xf0\xa6\xdd\x16\x5e\xd6\x7c\x57\xc4\x47\xf4\x39\x8f\x07\xdc\xcd\xb7\x57\x4f\x3c\x52\x54\xcb\xc7\xb4\x86\xa2\x14\xe3\x91\x86\x9b\x4e\xf8\x19\xec\x96\xdc\xd4\x02\x37\xaa\xaa\x42\x48\xf1\x68\x59\x6d\x6d\x7c\x1d\xba\xa9\x7b\x16\x1d\x4d\xdb\x2f\x2d\x86\xb2\x37\x2d\x86\x92\xf1\x55\x51\x53\x75\xd3\xf9\xcf\x9f\xd1\xba\x9b\x2e\x37\xbd\xf8\x2a\xec\xa6\xaa\xb1\x02\xf2\x43\x16\x77\x58\x4f\x37\x5d\xff\xfc\xe9\x0a\xe5\x8c\xa1\xf9\xab\x6f\xf2\x5d\x21\x98\x31\x34\x7f\xd5\xf0\xd5\x3e\xd6\x11\x92\xef\xfe\x97\x41\xd8\x6a\xf1\xdc\xe1\x24\x1c\x95\x54\x3d\x86\xd1\xdd\x36\xd8\xa6\xc1\x6e\x01\x31\x7c\x84\xb1\x2b\xf1\x55\x8c\x71\xd3\x90\x18\x23\xfd\x9c\xb6\x4f\x61\x8c\xb1\xb9\xad\xb3\xcd\xdf\x5d\x6e\x83\x23\x70\xd9\xfe\x51\x31\x56\x0d\x17\x29\xd7\xca\x3b\x2f\xc6\x5a\xdd\x06\x47\x77\x39\xdf\xc7\x68\x48\x46\xd6\xb6\x97\x13\x69\x8c\x4d\x88\x15\x99\x30\x6c\x78\xbc\xe6\x3e\x99\xa6\xa1\x1c\x1a\xaf\xfb\x3b\xb8\xdf\x16\xb9\x7b\xc7\xd8\x3d\x4f\xe8\x60\x8a\x7c\xac\x23\xb4\x89\xfb\x5f\xce\x73\x9f\xb6\x18\xbb\xe7\xd9\x39\xcf\x4d\x27\x63\x1c\x86\xe7\xe0\x77\x5d\xdf\x3d\xfe\x0e\x42\x4c\x69\x42\x95\x74\xe8\x3b\x10\xe8\xaf\xcf\x3d\xcf\x14\x75\x72\x52\x3c\xff\xf9\xa3\x50\xae\x98\xc6\xa3\x16\x84\xba\x45\x95\x8b\x8b\x26\x85\x31\xc1\xe3\x26\xaa\xde\x58\x4c\x67\x73\xdb\x87\x98\xc1\x83\x9d\x97\x9b\x1e\x34\xa9\x47\xf1\xe4\x08\x82\x19\xaa\x32\x05\xc7\x74\xbd\x6a\x83\x05\xb5\x2a\xd9\x6d\xcc\x3e\x3c\x19\x35\x33\x54\x87\x3e\x66\x1f\xef\xdc\xe1\x34\xa6\x23\x97\xc5\x01\x22\xee\xeb\x5d\x29\x56\x63\x16\x03\x88\x79\x30\x6e\x6b\xb3\xed\x98\xc7\xad\xb6\xeb\xc3\x75\x45\x50\xc5\x7c\x69\x4f\x33\x2e\xfc\x87\xdc\x00\x63\x7e\x3c\x47\xf0\x52\xd7\x89\x8f\xf9\x15\x48\x32\x04\xa2\x43\xe9\x6f\x62\x9e\xc5\x6d\x90\x46\x14\x4d\x1e\xcb\xa1\x3e\x0b\x92\xd0\xe7\xed\x3f\x16\x4b\xd5\xc6\x95\xfa\x7e\xc7\x7f\x73\x87\x58\x9a\x16\x57\x3e\x68\x75\xa5\xae\x8d\xa5\xbb\xe9\x83\x4e\x57\x60\x63\x84\x69\x76\xff\x5b\xd0\xe1\x9e\x62\xf1\xd2\x58\x75\xbd\x2a\x2d\x79\x44\xbd\xf2\xfd\x2f\x06\xd3\xd6\x54\xcf\xbe\x1e\x68\xd2\xa2\xab\x38\x51\xac\xd0\xf9\x54\x65\xf4\x8e\x28\x57\xbe\xff\x7d\x40\x0e\xf7\x1c\x6b\xd5\x8e\x56\xdc\xbc\xa2\x62\x9c\x63\xf5\xf9\x46\x81\xe5\x0f\xb7\xf6\x24\x9b\xcf\x77\x6b\x00\x96\x8e\x14\x8a\x12\xec\x7f\x21\xf2\x29\x8b\x6b\x1c\x53\xc7\x0d\x29\xc0\xbf\xb6\x1d\x0f\x43\xa9\xf5\x7f\x25\xc8\xc6\xcb\xa7\xf1\x82\x2f\xa3\xf2\x19\x45\xe4\x48\xdc\xff\x16\x96\x0f\xde\x6b\xbf\x4c\x6c\x90\x60\xf0\xa3\xc1\x7b\x81\x6f\x17\x5c\x5e\xa4\x35\x48\x2a\x13\x1e\x5f\x89\xc1\xf1\xa5\xc7\xbf\xca\xfd\xc6\xd7\x07\xeb\xbd\x69\x9d\x10\x51\x44\x08\xda\xfe\xb7\xfc\xf3\x27\x2b\x43\x65\x44\x18\xd8\xfe\x37\xfe\xf3\x27\x97\xed\x08\x1e\xe7\x35\xd5\xc4\x0c\xbe\x5b\x58\x88\xf3\xf1\x57\x4f\xfc\x8d\x8c\x8a\xb0\x12\xed\x7f\xcb\x6f\x3c\x4a\x3a\x84\x29\xe9\xf8\xc4\x1e\x39\xca\xa7\x43\x70\x4c\xc7\x07\xc7\xed\x43\xf2\xfd\xec\x6a\x09\xe1\x87\xa6\xa5\x43\x8b\x4a\xc7\xb7\xa8\xba\x85\x8b\x74\x08\xed\x12\xed\x4d\x55\xa0\x48\x47\xf8\xe9\x0f\xb8\xa5\xda\x40\x09\x92\xc8\xfe\x17\x5b\xa6\x88\xe1\x74\xe4\xa0\xb6\x81\xb8\x05\xcd\x63\x78\x1e\x1f\xdf\x6d\xaa\x09\x9e\x8e\x31\xdc\x84\xac\x9b\xca\x3d\x97\x8e\x71\xb9\xed\xfe\xe7\x4f\xcd\x02\x86\x88\x75\x3a\x3e\x62\xbd\x3d\x6c\x8e\xe4\x6b\x50\x3a\x66\xfd\xe7\x8f\x52\x45\x27\xdc\x2f\xf6\xbf\x27\x38\xb7\x3e\x9a\xee\x6e\xa2\xbb\xb5\xf7\xc9\x02\x44\x0a\x70\xa8\xab\x4a\xd1\x9b\xc2\x74\x1b\xee\x21\x55\x05\x00\x52\xd0\x81\x49\x61\xf2\xbb\x4d\x95\x52\x94\xc8\x97\x22\x54\xd8\x87\xa2\xbf\x52\x8c\xa7\xdb\xe6\x47\x72\xf7\xb1\x4e\x31\x69\x65\x11\x79\xbe\x6a\x50\x93\x04\xd3\x14\x3f\xc1\xab\x2b\x5c\x33\xc5\x72\xbb\x09\x84\x5a\xc9\xf8\x53\xec\x9e\x08\xf4\x5b\x87\x0a\x73\x26\x33\xe6\x14\xe1\xb4\x74\x18\x49\xa1\x15\xde\xff\x42\xc4\x17\x63\x4e\xf1\xcc\x6e\xeb\x98\xe5\x86\x57\xbc\xbc\x80\x6b\x4d\x45\x2b\x78\xdc\x25\x68\xff\xa1\x08\xff\xe4\xfb\x57\xe2\xfd\x2b\xe8\x2e\x95\x92\xe4\xff\x94\xe0\xb6\x1a\x54\xe4\x25\xa5\x70\xba\x0d\xd5\x30\x55\xe7\x22\xf9\x9e\x95\x12\x74\x07\x41\x95\x17\x52\x8a\xdd\x6d\x03\x6d\x9b\xef\xa5\x14\x3d\x1e\x22\x4b\x82\x52\xdb\xa7\x24\x02\x9a\x12\xce\x46\x50\xe2\xf2\x94\x92\xbf\xcb\xfc\x4e\xb8\x92\x72\x72\x5b\x65\x9b\xd6\x90\x2f\xb7\xdd\x68\xd3\xf6\xa5\xec\x35\x14\xf6\x99\xd5\x67\x29\x6e\x63\x9f\x9b\x1b\x25\x5c\x10\xf7\xbf\x10\x14\xf6\xf5\x39\xf9\xaa\x98\x52\x87\x30\x33\xb4\xf2\xee\x15\x7c\x08\xd1\xaa\x01\x26\x39\x21\x41\x74\x6a\xf5\x50\x87\x46\x87\x74\x7e\xbc\x54\x29\x09\x52\x7a\x74\x1e\x13\x74\x96\x41\xd5\x15\x53\x91\x96\x23\x15\xa6\xda\x55\xd6\xbc\x84\xa2\xb5\xfb\x5f\x3a\x20\xee\x8b\x29\x5d\x4d\xf6\xbf\x85\xaa\xab\xba\xdb\x62\x52\x1b\xdc\x91\x86\xd2\x63\xe4\x37\x4e\xb5\x61\x5b\xb3\x72\x26\x67\xd8\x69\xf7\xbf\x81\x6d\x71\xb7\x35\x8f\xd7\x3e\xf1\x3c\x28\x89\x47\x46\xc2\x84\xf5\xef\x77\x60\xe4\xc7\xfd\xfd\xbe\xdc\xc4\xa0\x9e\x45\x1c\xf2\xd4\x86\xe7\x09\xa3\x7b\x50\x02\x94\x8c\x18\xcb\xfd\x2f\xd3\x53\xee\xfb\x67\x46\x78\xe5\xfe\x17\xae\x43\x0a\xd4\xc8\xf3\x72\x9f\x17\x72\xbf\x4a\x90\xcb\x53\x8a\x9e\x3c\xef\xc0\xb6\xb2\xdb\x5e\xad\x0e\xde\xf0\x59\x52\x6f\x31\x9f\x2a\xc7\x41\xa0\x6c\xad\x48\xf1\xc5\xb5\x80\x5d\xc4\x20\xfe\x51\x8e\x12\xd4\x86\x8a\xc9\x41\x95\xac\xcb\xd1\x93\xda\xbe\xeb\x44\x0c\x2a\xe0\x5c\x8e\xe1\x3e\x07\xdd\xd3\xb7\x98\x5d\x8e\x31\xd5\x76\x72\x09\x59\x6d\xa7\xdb\x90\xdd\xc1\xd5\xb9\xca\x71\x9d\x6e\x5b\x1e\xee\x9a\xcb\x3d\xd4\x76\x9f\xdf\xd2\xdd\xf4\xdc\x6a\x7a\x08\xcd\xcd\x8a\x4b\x10\xa9\x2a\xe1\x23\x55\x16\x30\x4a\x38\x6e\x37\xc1\xea\xb3\xbd\x9b\x8e\x12\x82\xdb\x02\xbb\xdc\x37\xa4\x12\x74\x73\x2c\x01\x91\x94\x41\x65\x5f\x4b\x88\xfe\x2e\xf2\xbb\x2d\xf3\x97\x90\xb4\xf2\xf0\x61\x70\x96\xfc\x54\x70\xed\xde\xff\x7e\x8b\x93\x38\x5a\x82\xee\x5c\x05\x37\x64\xe9\xef\x0f\x7a\x4b\xed\x7f\xaf\xaf\x29\x69\xac\xcb\xcb\xbe\x22\x9a\xd4\xe1\xa3\x4d\x0d\x0f\x4f\xdd\x3e\x21\x25\x1a\x5a\x8c\x9f\xc8\x4a\x4f\x55\xcc\xed\x4a\x64\xca\x36\xa9\x13\x4b\xd4\x19\xa1\xfb\x55\x96\x58\x5f\x60\x97\xd8\xff\x32\xb2\x7a\x47\x95\x16\xdf\x27\x0b\xee\x93\x31\x88\xb9\x96\x28\x8d\x56\x89\x27\xaa\xc2\xb5\xf1\x57\xf2\x6d\x89\xba\x09\x95\x88\xe2\xc0\x41\xe9\xd8\x4b\x34\x86\x45\x62\x98\x12\x71\x94\x38\x3d\xd3\x4f\x7a\x90\x63\xe3\x51\xd2\xa1\xcf\x12\x74\xe3\x59\x11\x54\x25\x19\x1d\xc0\x9c\x62\xf0\x0e\x25\x29\x12\x4a\x42\xaa\xf8\xa0\xec\x3d\x05\x94\x7e\xff\xcb\x69\x6e\x5d\x48\x49\xd2\x69\x94\xc4\x72\x82\x4a\x08\x59\xe0\xa1\xbb\xff\xc5\x61\xd6\x6d\xa8\x64\xa3\x5f\xfe\xd0\x2f\x2b\xaf\x68\xc9\xe2\x85\x85\x0a\xb6\xa1\xbb\x5c\xc9\xba\xb0\x15\xb8\xcb\xc7\xe0\xfd\xcb\xd2\xc3\x96\xfc\x7e\xf8\x27\x1d\x55\xf1\x15\xb0\x14\x86\x10\x18\x2a\xc5\x87\xab\xc0\xba\x15\xe2\x8e\xb0\x2b\x45\x5a\xaa\x52\x90\xc3\x53\x71\xc6\x05\x5e\xb9\xfb\x5f\x64\xcd\x56\xd0\x58\x29\x62\x4f\xa5\x3c\x04\xd8\x96\x2c\x4a\x95\xd4\x51\x2a\x6c\x15\x59\xb9\xb7\x0a\xc2\x4e\xf6\xbf\x40\x5c\x15\x81\x29\x55\x9c\xbe\x54\x24\x3d\x0d\xba\x2f\x94\x5a\xfd\x5d\x05\xa0\xc5\x66\x4a\x6d\x6e\x83\x6d\x3b\x2b\x61\x55\xa9\xc6\xdc\x0a\x97\xf5\x9c\xb7\x0a\xb7\x54\x43\xb3\xa2\xe4\x45\xd0\x4d\xb0\xd4\x29\xb0\xd4\xc9\x90\x84\xcd\x14\x4a\xf3\xc1\x6c\x48\x51\x1c\xa4\x4d\x2e\x4d\x52\x55\x69\x88\xa0\x18\xaa\xc5\x5e\x5a\xd4\xae\xb7\x08\x76\xa8\xe4\x92\xa5\xe9\xe6\x50\x1a\x3c\xfa\xb3\xe2\xa2\x4b\x4b\xcd\x6d\xfd\x9f\x3f\x59\xc9\x2d\x4a\x4b\x8f\x9b\x40\x36\x55\x53\xa3\xb4\xac\xe5\xd1\x92\xec\x0c\x4a\x05\x65\xe0\xf7\xbf\x0c\x27\xd9\xc2\x58\x69\xc3\x7d\x32\xab\x91\x22\xef\x4b\x33\xbe\xa3\x58\x75\xce\x9b\xfd\x96\x36\x3d\xdc\x84\x65\x4d\x55\x84\x4b\xf7\xf1\xea\x3c\x5e\x4a\xb6\x56\xba\x44\xe9\xd2\x3b\xe3\x56\xf6\x75\xa5\xf4\x2e\x2a\xdd\x69\xa5\x57\x96\x8e\xd2\x25\x66\x97\x7e\x72\x17\x74\x4e\x50\x7a\x72\xff\xcb\xa0\x14\x71\x8c\x3e\x2f\xb7\x3d\xb8\xaf\x6e\x68\x0e\x5d\x22\xcb\x58\x51\x26\x5b\x85\x57\x50\xc7\x71\xff\x4b\x04\xdc\x12\x7f\x19\x3e\xe9\x03\x27\x7d\xfb\xa4\x1d\x05\xba\x82\xfd\x6f\xe5\x67\x1b\xa7\x47\x73\x1b\x63\x34\x14\xda\x5e\x86\xac\x45\x05\xc5\xd1\xb2\x82\xd4\xcb\x78\xb5\xb8\xf1\x12\x55\x24\x78\x9c\x1e\x0e\x41\xd7\xb9\x08\x1d\x10\x7a\xbc\xff\x2d\x4c\x7f\xb6\xf7\xe7\xb4\x8c\x70\x9e\x8c\x38\xd9\x3a\xcf\x72\xea\xae\x56\x50\x32\x25\x17\x1d\xe6\xcb\x04\x02\x35\x20\xb2\x2a\x96\x96\xab\x89\x06\x5c\xf4\xce\x55\x92\x88\x72\xe9\xd6\x58\x50\x54\x20\x7e\xe2\xd1\x6e\x3b\x45\xf7\x99\xca\x3f\x28\x33\x52\xb9\xcc\x47\xe1\x26\xfb\xb5\x6d\x58\x5e\x86\xd7\xf5\x30\xb9\xdb\x96\xf6\xcb\x7d\x08\xfb\x90\x21\x3c\x2b\x32\xb3\xdc\x49\xc3\x21\xb5\x73\x56\xa4\x65\x41\xae\xdf\xfd\xef\x0a\xed\xd1\x67\x12\x6c\xcb\x4d\xc1\x56\xea\x8b\x72\x4f\xcd\x12\x69\x71\x63\x30\x12\x21\x09\xe8\xfa\x17\xe9\x3f\x43\xde\x3a\x87\xf2\x34\xad\x00\x49\x33\x63\x90\x0e\xbc\x20\x8d\xe2\xfe\xf7\xbb\x78\x78\x71\xaf\x94\x18\x85\x5e\x3a\x59\xf9\x0f\xca\x2b\x63\x4d\x81\x0f\x79\x96\x16\xb8\xbc\x45\x7b\xf0\x16\xee\x81\x4e\xf2\x5b\x75\x42\x5e\x9a\x81\xcb\xbe\xcc\x94\xd7\xdc\xe9\xad\x0c\x34\x12\x3a\xbc\xc6\xe7\xf7\xc3\xe7\x2c\x7b\x42\xb1\x6e\xa9\x20\x27\xd7\xd7\xe5\x06\xca\x7b\x0b\x60\xf0\x3a\xce\x3b\x66\xe6\x28\xef\xe3\xc5\xb1\x96\x92\x42\xe9\xcb\x2b\x1d\x77\x81\x27\x51\x56\xec\x2a\x5d\x93\xf7\xbf\x03\x4d\x7b\xdd\xd3\xb2\x24\x42\x78\x43\x2e\xa2\xf9\xd3\x02\xc2\xa4\x80\x50\xf6\x2d\xbb\x4c\xb3\x49\xa4\xcd\xc9\x4d\x9b\x33\x8d\x0c\x93\xc8\x50\x44\xd6\xa7\x14\xd9\x65\x22\x24\x33\x14\x11\xc5\xf9\xb8\xed\x59\x6d\x1a\xce\x74\x96\x4e\xd3\x56\x67\x94\xf9\x74\xb7\x0d\xa4\x6b\x55\xd3\x2b\x30\xcf\x97\xb1\x54\x7b\x2a\xf5\xd0\x0a\xea\x51\x1a\x4b\x5c\xb4\xdd\x36\xdc\x86\x54\x78\xdb\x6b\xf0\xa8\x16\xf5\x2b\x44\xfd\x18\xca\x8e\x89\xae\xc7\xfd\xba\x6d\xb2\xad\xec\xb6\xe9\x2e\x27\xba\xdc\x4a\xf5\x0a\x2f\xdc\xfd\xef\xfb\x35\x6d\xda\x56\x83\xa8\x6c\x0d\x70\x9a\xcd\x9e\x24\x42\x73\xf7\xbf\x1f\x49\x54\x09\xdc\x1a\xa4\xaa\xa9\xa1\x13\x94\x5b\x0f\x55\x83\xee\x4d\x35\xf0\xde\xb4\x03\xdf\x8e\x1a\x86\x87\xe3\xbd\x49\xe7\xbf\x86\xdb\x7d\xf2\xea\x57\x14\xd0\xfb\xbf\x17\x7a\x6b\x30\x5c\xc2\x82\xcb\xd0\x74\xde\x5b\x6d\x2f\x2b\x8d\xec\xf3\x5a\xa3\x54\x95\x35\x1e\x1f\xde\xaa\x02\x5a\x8d\xba\x35\xd6\xf8\x89\x0a\x59\x75\xaa\x6a\xec\x02\x27\x74\x51\xd1\xf5\x88\x6a\xf4\x02\x23\x92\x22\x6e\xef\xa0\xa3\x5a\x32\xaf\x11\x05\x49\x82\x50\xac\x46\x1d\xd7\x0a\x5d\x54\x0c\x75\x4b\x23\x15\xc6\xf5\xfd\x2f\xc2\xa5\xea\x16\x47\x6a\xca\x1a\x0e\x6a\x9b\x8f\x2c\xee\x15\xa4\x53\x7d\xc2\x2a\x1e\x86\xb2\xbe\xd6\xa4\x73\x5e\x57\x44\x9b\xd4\xd2\x35\xbd\x1e\xef\xe5\x78\x5b\xeb\x52\x93\x6e\x09\x95\x51\xd3\x43\xb9\x13\x6a\x96\x99\xb2\x66\x26\xdb\x55\xca\xc9\x9a\xbd\xbe\xbc\xc8\xd1\x3e\x43\x35\xdf\x1a\x2f\xc3\xbe\xd4\x54\x5c\xad\x66\xf9\x48\xd4\xfc\x86\x7f\xfe\x14\x25\x43\xac\xb0\xe5\xec\x7f\x71\x4e\xea\x26\xfb\xb5\x78\x5f\xcb\xc1\xb6\x2d\x3b\xd4\xa2\xab\x40\x2d\x1f\xf3\x2e\x4a\x69\x5f\x4b\xba\xdd\xf4\xf0\xb3\x0d\x95\x22\x03\x40\x2d\x1f\x82\x97\x63\xb3\xd7\x5a\x3c\xc9\xc2\x49\x6a\x6d\x65\x7a\x30\x44\xbe\x07\x65\x7d\xa8\x65\xbe\x6e\xe3\x9e\x6f\xca\x5e\x2d\xb5\x57\x48\xed\x31\x28\xd7\x41\xad\x12\x39\x6a\xfd\xf8\x4d\x91\x46\xa6\x56\x99\xb9\x6b\x45\x2c\x48\xde\x01\xa4\x47\xad\x62\xaf\x15\xd6\x9a\xa2\xfc\x9f\xb5\xd6\xdb\x4d\x0f\xa3\x28\xd5\x65\xf3\x67\x50\xf2\x54\x69\x34\x6b\xed\x1e\x8e\x1e\x9b\x4a\x72\x58\xeb\x38\xd5\x36\x6e\x56\x00\xda\x50\xa9\xb7\x60\x59\x6f\x88\x76\x2a\x02\x59\x5b\xd4\x29\x69\xdf\xdd\xb2\x84\x6d\xdd\xa8\x4d\xf6\x99\x8a\x20\xc0\x22\xdd\x49\x6d\xf2\x1c\xaa\x8d\x2a\x25\x15\x57\xa8\x3d\x69\x7b\x3a\xbc\xfe\x73\xdd\xba\xa1\xda\xeb\x54\x5b\x03\xcd\x69\xdb\x29\xa3\x76\xe3\x33\xbd\xdf\x5a\x17\x30\x51\xf0\x7f\xff\x7b\xb1\x4d\xdf\x49\x21\xc3\x90\x92\x18\x9a\xce\x64\x97\x0a\xab\xb2\xa2\x7c\xeb\x51\x6d\xd3\xf3\x9c\x9c\xa7\x90\x7d\xc8\xdd\xa0\x8e\x35\x4f\xd1\xdb\xd1\xb4\x86\x81\xd4\xaf\x59\xe9\x2a\xea\x78\x04\xcd\x01\xef\xa8\x5c\x37\x67\xae\x43\xbc\xab\x0e\xf2\x2e\x15\xc5\xa9\xa7\xa9\x1f\xd3\x0f\xb5\xae\xef\x4e\x49\x32\x95\x29\x68\xb2\x72\x69\xd4\x53\xb6\xf5\x7a\x22\xa9\x6c\xe8\xc2\xdb\x53\xd7\x9c\x0a\xf1\x37\x64\xa5\x51\xaa\xe7\xe9\xf1\xce\xef\x74\xc9\x8d\xa1\x9e\x97\x87\x23\x47\xef\x22\x39\xa7\xc9\x0a\x4b\x58\x86\x2e\xd2\x81\x7a\x93\xfb\x5f\x92\x23\x0f\xf7\xe8\x08\x9d\x2c\x6a\xe4\xed\x3b\x25\x4e\xd6\x93\x11\xd5\x7d\x8b\x8c\xf5\x92\x83\x55\x85\xf1\x30\x86\x2e\xca\x7f\x1d\xda\x86\x0b\xa9\x1e\xda\x76\xb0\x3f\xea\x25\x35\x50\x45\x45\x33\x57\x55\xa8\x97\x14\xa5\x15\x22\xfc\x37\x4d\x0d\xe7\x9d\x45\x99\x33\xe7\xd3\xaf\xd7\x70\xd3\x09\xc1\xb6\x47\x75\x69\x60\x5e\x48\xfe\x16\xba\xd8\xda\x65\xc4\x45\x61\x2e\x27\xc0\xae\xd7\xe5\x49\x22\x4f\x6c\xd8\xfe\xb5\x47\xbd\xe4\x2a\x55\x2f\x14\xfa\x0c\x3d\x69\x96\xf2\xc0\xab\xac\x41\xd5\x54\xe1\xbb\x5e\xaf\x01\xc6\x30\x5d\xf9\x76\x54\x54\xe6\xd9\xff\x66\xa4\x91\xdd\xc7\xf2\x36\x11\x60\x1d\x1b\xa7\x7a\xaf\xb7\xd9\x13\xaa\x64\x84\xac\xba\xf9\xf5\xf1\x77\x4f\xe4\x70\x82\xca\x63\x91\xe5\x61\x06\x10\x99\x3c\xea\x9b\xb5\x74\xfa\xd5\xb7\x21\xb0\xbc\xd2\xee\xd5\x17\x26\x8f\xa6\xe2\x73\xf5\x95\x33\x52\x7d\x91\x5a\xa9\xa9\x44\x5c\x45\xbe\xdf\xfd\x2f\xd4\x4a\x16\x9f\x2c\x66\x57\x88\xd9\x25\x0b\x55\x2c\x65\xd7\xe5\xaf\x5f\x0e\xb5\xbd\xee\xf2\x65\x97\xe2\x26\x53\x7e\x1f\x75\xb2\x0e\x7b\xd3\xf2\xa6\x8f\xc2\xe4\x0e\xa9\x64\x41\xb3\x03\x67\x3b\x98\x95\x49\xb4\xbf\x1d\x52\x96\xb6\x03\x42\x71\xde\x1e\xc3\xdf\x83\xe2\x36\xe4\xe2\x2c\xdb\x23\xb2\x85\xbc\xb7\xa1\x85\x8c\x84\x6f\x9b\x90\xb5\x20\xa1\xa4\x05\x96\xc2\x55\x46\xd4\x16\x64\xbd\x6e\x90\x05\xa3\x0d\x4f\xcd\x92\x5a\x83\xa4\x16\x6d\x78\x6a\x51\x02\x52\x8b\x1f\x07\x2f\x32\x05\xb5\x28\xad\x73\x8b\xf9\x40\xd3\x9e\x64\xcc\x6e\x82\xb9\x6a\x94\xa8\xcf\x64\xae\x6a\x11\xe6\xaa\x2c\x3f\xb8\x16\xab\x56\x10\x19\xfe\xa7\xa4\x92\x0d\x79\x40\xf6\xbf\x60\x7a\x32\x73\xb5\x68\x80\x45\xd2\x1c\x95\x39\x6c\x76\x05\x6d\x70\x05\x2d\x35\xf6\xbf\x92\x7c\x5b\x92\x85\xa9\x25\x5a\x98\x76\x1c\xd4\xd1\xec\xf4\xd9\xe8\xf4\xd9\x55\xc2\xa6\x25\xdd\x54\x5b\xfa\x6e\xaa\x72\xd3\xfe\x7e\x9f\x6e\x22\x06\x6e\x16\xdc\x52\xd6\xe2\x61\xee\x2b\xb2\x81\xb7\x64\x44\x4a\xbc\x6a\xab\xde\x5e\x4b\x86\x59\x5a\x30\x6b\xea\x52\xe6\xbf\x96\x3a\x61\xbd\xc5\xcd\x96\x86\xbf\x83\x9a\x24\x37\x21\x6e\x96\xe2\xaf\x65\x28\xfe\x72\xdf\x3c\xa3\x65\xd9\xcf\x5a\x26\xcb\x57\xf6\xe6\x96\x25\x07\xb5\x8c\x6a\x42\x41\x15\xa9\x5b\xf6\x5c\x32\x03\xc0\xfa\xd6\x58\xb7\x2c\x65\x48\xcb\xac\xd1\xac\x6a\x13\x2d\x8b\x75\xb7\x3c\xb1\x7f\xea\xb2\x48\x61\xd8\x4a\x62\xb0\xf6\xd6\x09\xb4\x62\x74\x29\x40\x97\xa8\x04\xe8\xad\x34\x7f\xc7\x58\x56\x59\xa6\x5a\x11\x97\x6d\xe5\x9b\x66\x69\xc2\xdc\xa2\xfb\x47\x2b\xb8\x60\xe5\x1d\x7e\x76\xb4\xe2\xf3\x55\xe0\x6f\xd2\x65\xd0\x6a\xe5\x71\xdb\xbb\xda\xf4\xdd\x74\x9f\x1f\x47\x2c\xba\xdd\x37\xcb\xb0\x0d\x32\x6c\x69\x3b\x81\x15\x43\x2e\xf7\xbf\x95\x45\xbc\x8a\xda\x2e\xb7\x31\x60\x5d\x67\xa1\xca\x1d\xe1\xbb\x4b\x7f\x5d\xee\x7b\x6c\xab\xf2\x33\x6d\x95\x65\x72\x94\xae\xba\x55\x79\x9a\x7e\x57\x4a\x7c\xa6\x99\x48\x95\xdd\x6a\x45\x8f\xdb\x5e\xdf\xec\xb7\xd4\x6a\x3d\xd1\xb4\xcf\x79\x95\x57\x4f\xab\xac\xe5\xa9\xcc\xcc\xad\x0e\x4f\x64\xe0\xb3\x7d\xdd\x6c\x55\xcc\xb7\x55\x30\xdf\xa8\x44\xc8\xad\xca\xfa\xdc\x98\x0c\x21\xf7\xaa\x2e\x4f\xcf\x1f\xf4\xdb\x8e\x7b\xad\x5e\x9e\xe5\xc5\xe1\xf6\x61\x6d\xd2\x46\xb5\x86\x78\x95\x68\x6a\xd4\xe4\x00\xda\x20\x55\x97\x1d\xba\x72\x34\x6b\xb8\x1b\x34\xdc\x45\x62\x68\x6b\x59\x88\xd7\x90\x94\xb0\xaa\x64\x7f\x6b\x52\x69\xb4\x06\x95\x46\x54\x5a\xd9\xd6\xa4\x6a\x6b\x0d\x11\xe2\x59\xee\xe0\xcd\xda\xef\xd6\x1a\xaa\x94\x1e\xda\xef\x66\x38\x37\x78\x4f\x8d\xb2\x73\x1e\x36\x8b\xf5\x0d\x62\x7d\xe9\x62\x24\xed\x11\xe6\x35\xc4\x36\x74\x55\x6d\x6e\x3d\x6a\x09\x1d\xa1\xf9\x79\xa7\x89\x39\x5a\x97\xc7\x62\xeb\x2c\x92\xab\x1a\x44\xad\x9b\x0c\xaf\x48\x13\x79\xe4\xb7\x2e\xff\xff\xd6\x19\x5f\x2a\x43\x57\x1b\x32\x82\x35\x64\x97\x0d\x43\x5e\x26\x6d\xe8\x4a\xd6\x06\xaf\x64\x63\x2b\xe2\xda\xb8\xd4\xe7\xc0\xbe\x8e\xcd\xea\xdb\x90\x03\x7a\x1b\x8c\x09\x95\x9f\x4c\x3b\x4d\xd7\xcf\x8f\xae\x17\xf9\x83\xb4\x53\x97\xdb\x06\xcd\x74\x8c\x61\x9b\x12\xda\xe9\x63\x80\xdc\x89\x45\xee\x20\xed\x94\x45\xbe\xa1\x34\x7c\xc8\x2a\x90\xde\x4e\x29\x7a\xdb\xf9\x60\x92\x42\xb0\xf3\x75\x8f\x2f\x7a\xdc\x86\x84\x76\x79\x8e\x17\xe7\x58\xd5\x24\x9f\x95\x76\x45\xee\xdc\xd6\xc2\xb7\xcb\xfc\xfa\xca\x28\x47\xaa\x3b\x5e\xbb\x74\x07\x6a\xd7\x77\x07\x2a\x2a\xd9\xd7\x2e\x19\x36\xdb\xc5\x5a\xf7\x0a\x1d\x69\x97\xae\xe0\xed\x62\x11\x73\x19\xba\xdb\xe5\x4d\xbd\x58\xae\x5c\xc6\xec\x76\x9b\xd8\xdc\x24\x36\x41\xe3\xdd\x72\x70\x6a\x2c\xdd\x37\xa4\xc6\x6a\xb7\x37\x7c\xd5\xcc\xd3\x75\xac\xdd\x52\x01\xb5\x9b\x41\xfd\x32\xc0\xb6\x5b\x42\x5a\xbb\x21\xa4\x65\x55\x28\x6e\x8f\x14\xea\x0d\x55\xd4\xbe\xb6\x3d\xde\x63\x06\xf3\x90\xc1\xa8\x08\x64\x7b\x74\x41\x6f\x4f\xe7\xbe\x6a\x0d\x8f\x44\xfa\x86\x72\x3b\xd1\x1e\x8d\xed\xb9\xdd\xe7\x8d\xba\x4c\x2a\xa8\xda\x1e\x99\x9d\xda\x03\xb3\xd3\x90\x6e\xa5\xbd\x45\x30\x7b\xcb\xf9\xcf\x9f\xba\x03\xdd\x8f\xf6\x9a\x67\xa1\xdc\x48\xe8\x72\xdc\x6f\xaf\xdc\x7c\x1a\xa2\x86\xeb\x0e\xc9\x3c\x1a\x2a\x8b\xec\x7f\xf3\xd7\x24\x60\xbe\x72\xc7\x6b\x2f\xdc\xf1\x54\x42\xb8\xbd\xba\x6a\x36\xb8\xbd\xc4\x28\xcb\x73\x83\x1b\xcb\xfe\xf7\xc5\x67\x6a\xd2\xcd\xb6\xcd\xef\x66\x5b\x83\x76\x60\x7a\xc7\x99\x08\x3e\x9b\x2a\x4e\x53\xbe\xf9\x51\x97\x6a\x04\x9b\x52\x59\xb4\xb9\xd2\x88\x74\xb7\x75\xb7\x61\xd5\xc2\x3d\x7b\xcf\x34\x7a\xcf\x74\x55\x04\x6b\xb3\x79\x34\x56\x7a\x51\x61\xf0\x36\x6f\xed\x0d\xf2\x6f\xd7\x20\x52\x6a\x4d\x75\xa3\xa6\xba\x1c\xda\xee\x39\x3d\x1c\x4b\x34\x48\x1b\xd8\xed\x7d\xd9\xe1\x7d\x59\x55\x64\xbc\x1f\x72\x5a\xeb\x08\x1b\x89\x51\x4e\x85\xfd\x90\xb9\xba\x1f\xf0\xa6\x2a\x4a\x42\xdf\x43\xdd\xb3\xec\xa1\x7e\xb3\x8c\xf5\xf8\x2b\x69\xb7\x07\xc9\x6e\x3d\xd0\x44\xa4\xac\xf2\x3d\x3c\x8f\xda\x10\xee\x35\x94\xb5\xb4\x07\x49\x37\x3d\x7c\x34\xbe\x2a\xc5\x75\xb7\xd7\x64\x0f\xb0\x1e\x45\x19\x74\xbb\xbd\x26\x7b\x98\x08\x6e\xdb\x6c\xbe\xdb\x57\xa4\xc3\x57\xa4\xca\xb1\xab\x47\xdd\x6b\x7b\x84\x4a\x7d\x48\x3c\xeb\x8e\x83\xe8\x88\x83\xa8\x32\x64\x33\x7b\xc2\xfe\xb7\x7f\x4d\x5b\x03\xdc\xed\x18\xf9\x91\x4a\xcc\x71\xe8\xb3\xe1\x1e\x07\x48\x9f\x32\x9b\xf7\x78\x7a\x26\xcc\xcc\xa9\xb2\x98\x3d\x9e\x1e\x8e\xf2\x86\xec\x85\x3d\x89\xdc\x74\xc6\x91\x75\xdd\x4f\xbb\x9d\x41\x3a\x9c\x41\x62\x94\xaa\xa6\xa7\xe0\xef\x02\x96\xb0\xa5\x83\x8e\xc8\xb2\xfd\xef\xe4\x67\xea\x52\x12\x47\x4f\xac\x94\xea\xa5\x27\xb9\xea\xf6\x84\x80\xc8\x9e\xf7\x0d\xa0\x27\xc9\xb3\x3d\x41\x9e\x2d\x92\x46\x7a\x96\x63\x57\xcf\xcc\xca\x51\x34\xcd\x2c\x2a\xd5\x33\xf2\xa0\xf5\xa2\xb9\xe4\xd3\x6d\xa8\xef\x16\xa5\x73\xe9\x59\x8a\x8e\x9e\x91\x88\x33\xca\x38\xd6\xb3\x2c\x10\x9d\x01\x08\x7d\x27\x3f\x3c\x7a\x51\xc0\x58\x2f\x47\xe2\x77\x7b\x9e\xc5\x20\x2b\x00\x99\x72\xec\xf7\x22\xef\x85\xaf\x2f\x74\x99\xd4\xa5\x48\x4e\x2f\xb8\x6c\x45\xa5\x70\xee\x45\x7c\xbe\x17\xa6\x1d\x2a\x5b\xcc\xef\xe5\x12\xa8\x71\x1b\x88\x51\x91\x55\xbd\xc8\xcc\xd5\x0b\x53\x42\xed\xb4\x88\x47\xaf\xba\x66\xf6\x8a\x6b\x66\x53\xdd\xad\x5e\x65\x5d\xea\x70\x44\x89\x51\x29\xea\x7b\x95\x09\xa9\xd7\x82\x02\xa3\xd9\xdf\x49\x12\xeb\x95\x92\x98\x6c\x09\xdd\x9a\xe5\x0e\x39\xbc\x2a\x74\xa9\x57\x79\x77\xf6\x3a\x98\x5d\x66\x8b\x0f\xdd\x42\x74\xa7\x10\x5d\x8e\x4d\x6e\x7b\xf5\xce\xd6\x6f\x67\x6b\x76\xd3\xe5\xd5\x5d\x10\x11\xe4\xed\xdb\x9b\x6c\x02\xbd\xb1\xb6\xb0\xbc\x2c\x7a\x53\x34\x54\x6f\x4c\x96\x23\xf5\x42\x6f\xb2\x82\xf5\xc6\x6a\x89\x8a\x49\xec\x6d\x68\x9a\x0d\x79\xe6\xc6\xce\x38\x78\xf4\x76\x7a\x3c\xf8\xcf\x14\x43\xba\xc9\x7f\xa6\x37\xe4\x2e\xe8\x35\xaa\x4f\x99\xff\x7a\x9b\xf0\xc7\xd7\xe6\x75\x69\xb7\x7a\xcf\xdc\x04\x91\x81\x6e\xf2\xd1\x91\x2d\x73\x34\x1d\xf5\x6e\x64\xe9\xac\xf7\xa0\xa2\x2f\xbd\x4b\x7a\xe8\xfd\xfe\xf8\x72\xd9\x92\x72\xef\xb2\xe7\xf4\x8e\x14\x5e\x51\xf1\x4e\xbd\x1b\xc7\xfa\x87\x63\x55\xae\xb9\xdd\xea\xef\x4e\xf5\x77\x51\x59\x94\x3e\xe4\xe0\xd4\x19\x8c\x3d\x94\x6f\xbb\x0f\xdd\x33\xfb\x08\x04\xb4\x50\x7a\x98\x79\x31\x66\xbb\xe8\xf2\xdd\x87\x5c\xdb\xfb\x88\x1f\x29\xae\x5a\xdc\x90\x64\xd1\x07\x6c\x17\x51\xf6\xf8\x3e\x4c\x74\xc6\x47\x74\xaa\x52\x36\xf7\x21\xc5\x7f\x47\xda\xa7\x5a\x45\x1e\x4e\x9f\x9f\xf3\x00\x86\xc9\xd2\xdd\x4f\x59\xc1\x3b\xaa\x07\x7c\x6d\xbb\xcb\x53\xf1\x31\xfd\x6c\xb8\x70\x95\xe8\xb6\xd3\x6d\xa0\xc4\x65\xcb\xfa\xfd\x3c\x05\x94\xf3\xfc\x58\xac\x72\x54\xf7\x53\x4a\xbd\x0e\x35\x78\x8c\x45\x2b\xb8\xe4\x10\xd6\x2f\xa4\x58\x28\x92\xc4\xfa\x25\xcd\x42\xbf\x3e\xa1\xac\x36\x9d\x83\xcb\x44\xfa\x22\x91\xae\xe2\x86\x97\xae\xca\xfd\xfa\x70\xad\xee\x7c\x41\x47\xbf\x25\x1c\x75\xe4\x58\x8b\xb1\x88\x88\xdd\x72\x6d\xe8\xa8\xd7\xfc\xb5\xed\x2e\x6f\x89\x92\xfd\xee\x04\xca\x36\xd3\xf5\x5b\xb6\xd9\x7e\x77\x14\xf8\xd9\xf7\x87\x7e\x5f\x5a\xc0\x7d\x61\x01\xfb\x0e\xda\x6f\x33\xfa\x1b\x8c\x5e\x16\x9b\xfe\x78\xe7\x9e\x03\x31\x2b\x5b\xda\xed\xcf\xab\xaf\x50\x84\xb1\xb6\x2d\x12\xf6\x47\x46\x84\xfe\xb0\x54\xb3\x6c\x2b\xdd\x4e\xe1\xfd\x25\x2e\xc8\x7c\xdc\x5f\xa9\x39\xfb\xfb\x09\xfa\xb5\x0b\xf1\x5e\x85\x69\x77\xd4\x1c\xac\x3b\xab\xc4\xd1\x5f\x45\x04\xf5\x97\x49\x05\xbd\x37\xaf\x6e\xfa\xfd\x4d\x9d\xa3\xed\xa3\x63\x57\xf2\x4e\x57\xf2\xd1\x85\xb1\x6f\xf1\x70\xac\xf4\x2d\xcf\x86\xfe\xca\x16\xda\x5f\xd6\x8a\xad\x3a\x56\xaf\x09\x03\x12\xd0\xc4\xb8\x13\xd2\x1e\x7d\xca\x44\xd2\x51\xa5\x2b\x46\x39\x06\xf5\x29\xb5\x4f\x47\x80\xd3\xd7\xb6\x97\x6e\xe1\xbb\x43\xf8\x8e\x51\x01\x36\x7d\x7a\x9e\x73\xcd\x73\xab\x99\xfa\xac\xfe\xee\x43\xb0\xda\x85\x27\xf3\xf4\x70\x27\x37\x48\x74\x6f\x5e\xc2\xbd\x89\x94\x15\x65\x27\x6d\x3c\xfa\xd4\x8d\xb1\x23\xab\x6f\x75\x65\xc7\x43\x71\x1a\xe3\x88\x10\x1d\x64\x90\x1e\x8e\x53\x1a\x47\x22\x54\xda\xdf\xf9\x36\x8c\x43\x7a\xea\x01\x17\xf5\x3a\x54\x7d\xef\x90\xa3\xec\x60\x56\x84\xa6\x2b\xd0\x38\x1e\xcf\xe6\x01\xd1\x57\x22\xfa\x71\x48\x6b\x37\x90\xcb\x20\x74\x17\x0a\x47\x56\xca\xfd\x2f\xcc\x5f\x52\xcd\x0d\xeb\xf5\x07\xf4\xfa\xa1\xcb\xba\x37\x82\x2e\x6a\x23\x20\xd3\x4c\x94\x59\x66\x04\x99\x42\x06\xf4\xff\xa1\x28\xb0\x6e\xd8\xeb\x63\xc0\xeb\xa3\x4a\x51\x30\xc2\xed\x2e\x6f\x66\xbd\x52\xcd\x52\xfb\x71\x0f\xf8\x71\x7f\xc3\xed\x02\x47\x41\x46\xd6\x81\x84\x99\x5d\x98\x34\x82\x9c\x06\x46\x80\xd3\x40\x6c\x82\x66\x78\x3d\xcb\xef\xb2\xd4\x5d\x52\x30\xe8\xce\x3b\xc2\xc7\x67\xeb\x50\x01\xa6\xa8\xd3\x3c\x22\x4f\xb3\x6a\x27\x8c\x28\xe7\x9a\x81\x4b\xc1\xd7\xd6\xd5\x56\xdd\x46\x58\xfe\x7c\x77\xbb\x0d\x32\x47\x53\x51\xb1\x18\x3d\x1e\xca\xbd\x45\xd9\xce\x47\x94\x66\x65\x44\x14\x1a\x8f\x4d\x75\xbc\xa2\xbc\x06\x46\x4c\xeb\xbb\x0d\x4c\x07\x65\x8d\x58\x38\x9e\x8a\xe5\xd9\xdc\x31\x90\x97\xf1\x6b\xd3\x1a\x74\x65\x19\xb8\xb2\x7c\xe2\x9e\x9a\xdc\x65\x63\x0a\x33\x55\xad\x74\x4c\xd6\x88\x27\x41\xa6\x22\x78\x51\x9a\xa8\x11\xa1\x89\x1a\x43\x05\xd7\xa2\x58\xef\x88\xd4\x5f\xab\xf6\xcc\x88\xb7\xbf\x83\x13\x49\x71\xa5\xd8\xf8\x78\x2e\x0f\x97\xa7\x62\x58\x49\x22\xdc\x48\xcc\x9a\xac\xcb\xfb\x48\xba\x76\x8d\xc4\x6b\x97\x64\xa3\xe1\x94\x13\x03\xb1\xd4\xed\x50\x3d\xbc\x74\xb9\xcb\x8b\x90\xd6\xe9\xb2\x6b\xfb\x80\x6b\xfb\xd7\xb6\xc1\x92\x64\xab\x1f\x88\x45\x6a\x87\x36\x3d\x4b\xc4\x1e\x99\xc1\x1a\x43\x9b\xe0\xdc\x11\x23\x2f\x44\x52\xdd\xb4\x22\xdd\xea\x28\x9d\xbb\xa0\x4a\x6f\x45\xee\x0d\xa3\xa0\x58\x95\xee\x86\xa3\x48\x7d\x32\x0a\xd5\x27\x52\x0f\x8f\xa2\x38\xd2\x51\x90\x2d\x7b\x0c\x6d\x5e\x95\xc2\x79\x54\xe2\xa6\x8c\xd2\xa3\x1a\x37\x6b\x9c\xdf\x70\x2a\x15\x56\x4d\x1c\x6b\xe2\x39\x57\x21\x71\xab\xfc\xc7\x52\xf9\x77\x55\x25\xab\xd2\x46\x8f\x4a\x6d\xb4\x0c\xd6\xa3\xca\x5a\x33\x90\xf7\xab\x05\x91\x0e\x6b\xd3\x47\xbd\x06\x8a\x6a\xec\xaf\x9a\x18\xe9\x68\x91\x8b\x13\x36\xd8\xf3\x7b\xc0\xf3\xbb\xc9\x31\x65\x34\x9f\x83\xd6\xc0\x63\xc5\x47\x47\x93\x47\xf5\x68\x03\x55\x49\x44\x4e\x9b\xe7\xd8\x98\x85\x76\x68\xc7\xdb\x95\xdc\x86\xfa\x2c\x2a\x4c\xd7\xc4\x9e\x46\x23\x7b\x92\xfe\x74\x34\xe3\x57\x23\x7e\x75\xd5\x85\x6e\xd3\xb3\x9c\x9c\xa5\xca\xe5\x75\xf9\x7b\x0c\x66\xa4\xea\x32\x8e\x8f\xae\xeb\xf9\xe8\x30\x08\xe8\xf6\x30\x7a\xf1\x67\x2c\xde\x16\x85\xea\xbd\xba\x0d\xa9\x6f\xc6\x50\x4d\x3a\xbb\xdd\x0c\xb8\xdd\xb4\xa0\xaa\xeb\xdd\x04\xa0\x33\xc5\xb4\xa2\x08\x87\xaf\x08\x83\x57\x84\x2e\xef\xba\x31\x7c\x0c\x06\x8f\x81\xcc\xab\x63\xc8\x54\x38\x06\xcd\x4d\x66\x32\x43\x62\xd5\x18\xa8\x29\x13\xc5\x10\x86\x81\x32\x12\x2b\x96\x8b\xa5\x8d\xe4\x2e\xd3\xea\xb2\xab\xcd\x5d\x26\x76\xb9\x57\x30\xa4\x96\x18\x03\xf5\x25\x5d\xa0\x7e\xe8\x52\x38\xc6\x77\x34\x95\x1f\xef\x18\xc3\xfc\x73\x9c\xe8\x50\x55\x8f\x6d\x42\x18\x30\x21\x7c\x73\xd4\x3c\x5e\xcf\x11\xa5\x45\xe2\x50\x4d\xe8\x61\x66\x07\x3f\xa0\x16\x85\xcd\x63\x7a\x8e\x13\x73\x54\xdd\xd9\x21\x5d\xfa\x18\xd4\xa5\xab\x7a\xdf\x18\xd3\x3d\x4e\xd6\xf2\x57\xc5\xf1\x53\x06\x99\x71\x46\x56\xa6\x15\xb3\x3b\x8d\xce\x27\xd1\x59\xda\x9f\x71\x5e\xfe\xee\x62\xb2\x2b\x15\x7e\xf5\x3d\x66\x9c\xa8\xe8\xab\x10\x9b\x71\xca\x36\x34\xce\x67\xa2\x49\xa3\x29\x2b\xc2\x40\xb2\xe8\xa6\x68\x91\x71\x4e\x37\xa1\xe0\x79\x74\x45\xd8\xcb\x5c\xfe\x22\x97\x97\xfb\xc1\xb8\x4c\x9c\xaf\x63\x4d\x52\xdf\x59\x9a\xba\x22\x86\x53\x49\xf4\x4b\x46\xa3\x71\x7d\xe2\x62\x8b\xaa\xb0\x6f\x0b\xc9\x80\x85\xa4\x29\x83\xcc\xb8\x4c\x2b\xaf\xc4\x04\x76\x62\xf1\x97\x69\xe5\x45\x5a\x29\x53\xcd\xb8\x7c\x88\xaf\xef\x10\xb7\xa4\xfa\xe2\x97\xc9\xe8\x45\x32\x2a\x33\xce\xb8\xe4\x99\x3e\x2e\x78\xa6\x8f\x43\x9c\xe0\xaa\xee\xb2\x72\xc3\xc5\xfe\xaf\xe6\x3e\x1b\x53\x48\xc6\xf8\xef\xf2\x6e\xfb\x9f\x8b\xbb\xd7\xf0\x97\xdf\x89\x50\xf5\x9b\xef\xb7\xa8\x06\x7c\x9e\x9a\xa2\x87\xc6\x65\xae\x74\x21\xbb\x81\x2b\x4c\xdf\xd2\x01\x8c\x7b\x25\xaf\x14\x3e\xdf\x59\x10\xbb\x33\xdb\x44\xb8\x6f\xcb\xdd\x77\x61\xc2\x4a\xe1\xec\x5d\xfd\x5d\x65\x52\x4d\x11\x9b\xdb\x60\xb9\x2b\xd3\x69\x8a\xd8\x3c\xd2\xf6\x8d\x87\x15\x3f\xe4\x45\x3a\x1e\x13\xa2\x87\xc5\x3f\xa2\x84\xc5\xc7\xbb\xfe\xf0\xfa\x30\xc4\x21\x9f\xe2\xb6\xc2\xb6\xa1\x3e\x8b\xfb\x2c\xd8\x75\xb1\xff\xc7\x3b\xf4\xac\x1d\xea\xaa\xde\xaf\xab\xfe\x78\x06\x4f\xc2\xbe\xd9\x8e\xc7\x64\xea\x59\x45\xdb\x75\x24\x1f\xb9\x35\x8d\x67\x15\xd5\x76\xfd\x76\x65\xbf\x1a\x2f\x3c\x5a\xd3\xe1\x82\xda\xa6\xcf\x6f\x40\x36\x15\x51\x0e\x5f\x35\xc7\xdb\x99\xb7\xdf\x75\xb4\xa5\x24\x1c\x48\xc1\xd1\xf2\x4f\x01\xfb\xd7\x4d\xac\xe3\x2a\xbc\x7d\x6f\xb7\x3d\x2c\xbc\xbd\x17\xf0\xca\x57\x7c\xc0\xd7\x2a\xa6\xc3\xf5\xe5\xa5\x60\x1b\xef\x44\x71\x59\x51\x80\x77\x7a\x22\x13\xb5\xbf\x5d\xd4\x59\xaa\xf4\x31\x0f\xd4\xe8\x76\x05\x5a\x29\xa0\x06\x02\x21\xe2\xf1\x53\x9d\x56\xe1\xa6\x03\x59\x71\xbf\x89\xa8\xb2\xaa\x94\x34\x63\x22\x6a\x2f\xb9\x46\xb7\x4d\x51\x63\x56\x54\x8b\x16\xfb\x9f\x4a\xcf\x34\x66\x65\x71\x5c\xd7\xad\xf5\x68\x83\xa3\xb9\x00\xb1\x85\xee\x79\x33\x4d\xab\xea\xd2\xd9\x96\xbe\x72\x50\x96\xec\x8a\xa8\xc2\xa1\x39\x06\x2b\x9b\xba\x68\xe7\x3e\x91\x13\x75\x81\x7a\x71\xa1\x44\x69\x01\xe6\xf9\xc9\x62\x5d\x01\x4e\xf3\x14\xb8\x26\x34\x66\xbd\xfe\x94\x13\xbc\xd4\x54\x56\xa5\xc5\xdd\x76\xc9\x50\x33\x2f\x66\x6b\x88\x6a\x49\x6e\x41\x26\x31\x95\x56\x7c\xe5\x7e\x3d\x81\xac\x4d\xae\x7b\xf3\xd5\x11\x9e\x2f\x8e\x70\xdd\x09\xf9\x8f\xf9\x26\x7f\x86\x94\x18\x5d\x95\xf0\x5e\x5d\xbf\x26\x82\x84\xec\x23\x39\xad\xa1\x99\xd0\xd0\xb4\xa1\xa2\x6f\xaf\x28\xfa\x7c\x3f\x8a\xde\xc6\x16\x40\xe6\x2b\xa7\xb7\xf9\x7e\x02\x48\x1b\xc1\x5f\x3d\x6e\x7a\xf1\x95\xc7\x9a\x6a\xca\x07\x9a\xb4\xb0\xec\xc9\x7f\x68\xd5\x5c\x87\xf7\xcd\x9e\x3c\x02\x1b\x63\x55\x91\xc5\x37\x7b\xf6\x99\xb3\x77\x7d\x3f\xed\x33\xca\xb8\x57\x15\x51\x9c\x22\x06\x73\xb2\xb6\xa1\x0b\xf9\x9d\x6e\x81\x81\x4c\x05\xf1\x24\x9b\xcf\xb9\x60\xb1\x5b\x3c\x73\xd4\xcf\xee\x2e\x6d\xa8\xe3\x30\x61\x99\x0d\x76\x87\x98\xb3\xfa\xab\x8f\xb1\xb8\x22\xe8\x7c\x3d\xbb\x17\xd2\xa9\xca\xec\xed\x79\x87\x19\x98\x2a\xe5\x38\x76\x41\xbd\x90\xdc\x06\x1f\xd2\x63\x6f\x56\x98\xa1\xb8\x0d\xe9\x91\x8e\x9a\xd4\xd6\xdc\x86\xac\x27\x61\x8f\x17\xe3\xb5\x79\x50\x8c\x17\x79\xd0\x76\x99\x8e\x75\x6e\x7a\xf4\xfd\xdb\x68\xae\xd9\x29\xc0\xcb\xf6\x25\xf8\xfe\x1d\x4c\x97\xae\x44\xe6\xdb\x57\xe2\xfb\x97\x19\xb9\x53\xfe\x77\xd6\xfc\xfd\xf8\xaf\xe7\x7f\xfe\x1f\xff\xd7\xff\x7d\xfe\xe7\xff\x73\xfe\xd7\xf7\xcf\xfd\x3f\xfe\xf5\xaf\xf7\x3f\xfe\xfb\xf3\x5f\xee\xff\xfe\xe7\xff\xfc\x9e\xfe\x79\xde\xf9\x5f\xfe\xe3\xfd\xd7\xfb\xff\xfd\xb7\xff\xf1\xaf\xfb\xfd\xf3\x9f\xff\xed\x3f\xbf\xaf\xf0\xf7\xff\x07\x00\x00\xff\xff\xa7\x3d\x70\xec\xad\xb5\x03\x00"); +func _fef ()(*asset ,error ){_dbgf ,_fafee :=_aegf ();if _fafee !=nil {return nil ,_fafee ;};_agdd :=bindataFileInfo {_ee :"KSCpc-EUC-H",_ffd :10306,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492597,0)};_cfec :=&asset {_da :_dbgf ,_dc :_agdd };return _cfec ,nil ; +};func _bdee ()([]byte ,error ){return _gb (_gbce ,"Hankaku")};func _gbfed ()([]byte ,error ){return _gb (_aaccg ,"KSC-V")};func _aaaeb ()([]byte ,error ){return _gb (_cgadd ,"UniJIS-UTF16-V")};func _bfdg ()([]byte ,error ){return _gb (_ebcc ,"UniGB-UCS2-V")}; +func _cccf ()([]byte ,error ){return _gb (_afdg ,"Katakana")};func _agc ()(*asset ,error ){_fdb ,_gbgd :=_egg ();if _gbgd !=nil {return nil ,_gbgd ;};_dacg :=bindataFileInfo {_ee :"Adobe-KR-3",_ffd :1293,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491421,0)}; +_dcc :=&asset {_da :_fdb ,_dc :_dacg };return _dcc ,nil ;};func _dccc ()(*asset ,error ){_gbbf ,_gfeb :=_bdec ();if _gfeb !=nil {return nil ,_gfeb ;};_dcbb :=bindataFileInfo {_ee :"UniGB-UTF32-V",_ffd :839,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492778,0)}; +_gbbaa :=&asset {_da :_gbbf ,_dc :_dcbb };return _gbbaa ,nil ;};func _bgd ()(*asset ,error ){_dgad ,_ggcb :=_bdgc ();if _ggcb !=nil {return nil ,_ggcb ;};_dadgc :=bindataFileInfo {_ee :"Adobe-KR-7",_ffd :1853,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491445,0)}; +_bage :=&asset {_da :_dgad ,_dc :_dadgc };return _bage ,nil ;};func _cegg ()(*asset ,error ){_febb ,_eadd :=_abdd ();if _eadd !=nil {return nil ,_eadd ;};_adbd :=bindataFileInfo {_ee :"GBT-EUC-H",_ffd :44530,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492198,0)}; +_gbab :=&asset {_da :_febb ,_dc :_adbd };return _gbab ,nil ;};var _cgaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x98\x41\x8f\x23\xb7\x11\x85\xef\xf3\x2b\xfa\xe8\x1c\x9c\x21\xab\xc8\x26\x09\x18\x06\x82\xf5\x21\x63\xc0\x49\x90\xc9\x3a\x01\x82\x1c\x5a\x12\x7b\x21\x20\xab\x11\x34\x33\x87\xfd\xf7\x41\xbd\x4f\x99\xc0\x39\x2c\x6a\xf7\x13\x59\xfd\xde\x23\x9b\x94\xf6\xf1\xd3\xd3\x4f\x4f\x97\xf3\xdb\xf2\xf8\x97\xdb\xcb\xf1\x79\xbe\x2d\xfb\xf9\x72\xba\xcd\xd7\x97\xf7\xdb\x71\x2e\x87\xf9\xe5\x7c\x79\x78\xc8\xb6\x9c\xce\xc7\xb7\xff\xfe\x53\xe5\xf8\x75\xbb\x3e\x3c\x3c\x7e\xbe\x9c\x7f\x7e\x7a\xfe\xfe\xf3\xa7\x67\xfb\xfe\x8f\xcb\xfb\xeb\xbc\xf3\x4f\x4f\x3f\x3d\x7f\x7b\x7d\x9b\x5f\x9f\x2e\xfb\xcb\xe2\xcc\x3f\xbd\x5f\xef\x3d\x96\xe5\xf1\xaf\xf3\xcb\xf9\xf5\xed\xf6\x6d\xf9\xee\x0f\xa7\x97\xc3\xfc\xdd\x72\x9a\x7b\xf0\x3f\xdf\x4e\xf3\x76\xbe\x7c\x59\xbe\xfb\x79\xbb\x6e\x97\xfc\xf1\xc1\xf3\xfb\xf5\xfa\xef\xf9\x75\x5e\xde\x96\x22\x36\x2f\x27\xd5\x87\xc7\x4f\xbf\x6c\xd7\x3f\x6d\x5f\xe7\xf2\x1b\x3d\xbf\xea\x53\x7d\xf8\xeb\xbc\xbd\x9e\x5f\x2e\x4b\xb6\xdf\xa7\xb4\xfe\x8f\xff\xed\xdb\x75\x2e\xf9\xde\xe5\x1f\x9f\x9f\x7e\x5a\xfe\x99\x97\x9c\x16\xab\x5e\xdb\xbf\xee\xfc\xef\xbf\xbc\x9c\x3e\x46\xe5\x94\xf0\x70\x3c\x9f\x6e\xdb\xe5\xcb\x7c\xf8\x21\xa5\x43\xfa\x71\xb9\x97\x6e\xeb\x78\xf8\xc1\x52\x0e\x44\x69\x7d\xb8\x50\x05\x55\x21\x13\x5a\x41\xab\x50\x15\xea\xa0\x11\xbd\x7a\x16\x3a\x82\x4e\x81\x9a\xda\x1b\xbd\x8c\x5e\x5d\x88\x5e\x46\xaf\x16\xc8\x4d\x28\x4a\xb7\x26\x11\xee\x20\x57\xfb\x40\x79\x48\xaa\x4a\xf3\x2e\x92\x21\x39\xc8\x2a\x62\x10\x0b\x32\x44\x1c\xe2\x41\x9a\x48\x85\xd4\x1f\x97\x6c\x96\x4b\xb0\x63\x11\x8b\xd2\x3d\x67\x21\x86\x45\xe9\x9e\x93\xd0\x0a\x5a\x85\x22\x99\x3c\x41\x51\x7a\xba\xa3\x06\x6a\x42\x6a\x3f\x3b\xa8\x0b\xa9\xfd\x1c\xa0\x21\x14\x06\x8d\xb0\xec\x1e\x56\xa4\x6c\xae\x48\x55\x5a\x1f\xd1\xcb\xe6\x2e\x14\xe5\x9e\x5f\x4d\x4a\xa6\xa6\xc8\xa1\x68\x2d\x6a\x32\x50\xd8\x2e\x5a\x8b\x9a\x0a\xa8\x6a\x54\x15\x5a\x41\x4d\xc8\x85\x3a\x68\x08\x31\x71\x03\x1d\x84\x78\xe2\x11\x14\xba\xca\xa0\xd7\x09\x74\x12\x62\xd4\x04\x4d\xa1\x55\x68\x07\xed\x42\xb1\x8a\x95\x2d\xa8\xd2\x6a\x92\x88\x9c\x41\x59\x48\xed\x33\x86\xa2\xb4\x9a\x8a\x90\x83\x5c\x48\xed\x33\x1e\xa3\xb4\x32\x94\x04\xdb\x59\xa5\x95\x41\x7b\x6c\x6b\x3b\x17\xed\xf0\x9a\x1b\x48\x49\x0c\xda\x93\x44\x94\x56\x86\x92\xc8\x03\x34\xf4\x44\xda\x13\x4e\x94\x56\x53\x12\x3a\x80\x0e\x42\xb4\x27\xaf\x28\xad\x1a\x22\xc8\x2b\x4a\xab\xa6\xbc\x32\x79\x45\x69\xd5\xb0\x4d\x5e\x51\x5a\x35\xe9\x32\xf2\x32\xe5\x65\xb2\x6d\xe4\x65\xca\xcb\x24\xd5\xc8\xcb\x94\x97\x29\x68\x23\x2f\x8b\x70\xaa\x4b\x2a\x5b\x4e\xa5\x55\xd7\x13\x79\x3f\x55\x5a\x75\x49\x35\xc2\x89\xd2\xaa\xcb\x90\x11\x4e\x94\x56\x1d\x5d\x84\x63\x0a\x47\xaf\x5a\x35\xc2\x31\x85\xe3\x48\x25\x1c\x53\x38\x8e\x2e\xc2\x31\x85\x93\x11\x41\x38\x26\xdb\x59\xbd\x1c\xdb\x2e\xdb\x59\xbd\x1c\xdb\xae\x0d\x60\x32\xe4\x6c\x00\x97\xc7\xc4\x44\x3c\xba\xd4\x27\x85\xe3\xa8\x77\xa9\x4f\x12\xe1\xa8\x77\xe9\xd2\x8b\x5c\x1d\x11\x2e\x11\x45\x49\x14\x44\x14\x89\x28\xda\x00\x05\x11\x45\xd9\x17\x89\x28\x64\x5f\x94\x7d\x51\xaf\x42\xf6\x45\x52\x8b\x74\x15\xa4\x16\x49\x2d\xd2\x55\x90\x5a\xb4\x1c\x45\x1e\x0b\xcb\x51\xb4\x1c\x45\x52\x0b\xcb\x51\x64\xa8\xa2\x0b\x43\x45\x86\x2a\x4f\xc4\x50\x51\xf6\x35\x74\xad\xec\x42\x95\x6e\x96\x85\x4e\x20\x9d\xd9\x79\x08\x4d\xd0\xd4\x28\x13\xda\x41\xbb\x50\xf4\x6a\x1c\x30\x2a\xd9\x72\x0b\x61\x6d\x53\x14\x2a\xdd\x22\x69\x4f\x71\x26\x45\x89\x28\x7a\x9c\x1d\x9e\x74\xc2\x78\xd2\xcb\x3d\x92\x90\xde\x64\x4a\xb7\x96\x84\x0a\xa8\x6a\x54\x16\x3a\x82\x3e\x0e\x43\xd7\x5d\x73\x2f\x6d\xd4\x55\x68\x07\xed\x42\x6a\x5f\x10\xa1\x25\x1a\xb9\x0b\xf1\x44\xad\xc7\xc8\x92\xaa\xf0\x29\x6d\x98\x44\x28\x69\x4a\x1b\x26\x11\x8a\x95\xd2\x46\xa4\xe3\x69\xa5\xd7\xaa\x5e\xe6\x71\xe1\x7f\xdc\xba\x0f\xa3\xfe\xff\x3d\xec\xa9\x33\xa1\x33\x41\x46\x3a\x0f\xef\x3c\xbc\x0a\xf1\xf0\xce\xc3\xe5\xad\x4f\xd0\x14\x92\xb7\x71\x10\x8a\xd2\xad\x49\xcf\x20\xa7\xa1\x65\x6e\x52\xbd\x91\xc0\xa6\x04\x4c\x09\x6c\x88\xd8\x10\xa1\x04\x36\x44\x6c\x12\xe1\x4a\x60\x43\xc4\x26\x11\x4e\x2f\x12\xd8\x94\x80\xeb\x89\x47\x7a\x1d\xd5\x2b\xce\x0c\x4f\x13\x34\x41\xf2\x38\x69\x3f\x69\x2f\x8f\x93\xf6\x93\xf6\xf2\x38\xf1\x38\xe5\xd1\xe5\x71\x67\xe2\xbe\x0a\x49\xfd\x8e\xc7\x9d\xbd\x10\xba\x5c\xb7\x20\xa5\x7b\x6c\x78\x77\x76\x9f\x6b\x93\xe6\x51\xbb\x98\xc3\x62\xaf\xb9\x83\x0a\xa8\x68\xd8\xca\xd4\x0a\xd3\xf5\x2f\x4b\xae\xdb\x92\x12\xc3\x78\x68\x83\x35\x58\x15\xeb\xb0\x0e\x63\xee\x80\x0d\x18\x8f\xdd\x60\x1b\x6c\x15\x3b\xc0\x0e\x62\x0d\x29\x47\xd8\x11\x66\x62\x27\x18\x1b\x9f\x61\x0a\xce\xe3\x25\x8a\x61\x7a\x2c\x6f\x91\x4a\x1b\x45\x8a\x33\xc6\xb2\x8c\x15\xcd\xcc\x18\xcb\xfa\x5e\xe3\x20\x7c\x65\x7c\x75\x18\xbe\xa2\x74\x8f\x6f\x57\xee\x19\x5b\x19\x5b\x5d\xd2\x32\xb6\xe2\x9d\x0c\x56\xc4\xee\xda\xa6\xd6\x06\x69\x7a\x4f\x3d\xee\xac\x18\xa6\x44\x74\x69\x51\xba\x6b\x4f\xba\xb1\x5c\xa6\xe5\x2a\x8c\xc2\x94\xb1\x5c\x2c\xbe\xe1\x2a\x4a\x30\x3d\xc1\xb0\xa5\x9b\x6c\x54\x86\x61\x4b\x37\xd9\x28\x5a\x2d\xc3\x95\x61\x61\x68\x15\x0c\x0b\x51\xba\x57\x10\x0b\xa3\x7b\x6b\xe0\xc0\x58\x03\xc3\xe8\x40\x2e\x46\xe3\x96\xca\x96\x92\x02\x71\x76\x61\x94\xee\x6c\x42\xc7\xa8\x1b\xc3\x24\xc4\x71\xea\x6c\x4c\xc5\xe6\x38\xf5\xca\x30\xa6\xe2\xca\xe5\x2a\x6e\x12\x77\xc7\x55\x94\x6c\xfa\xca\xe9\xee\xd8\x8a\x12\x4c\x1e\x9c\xd5\x8a\xd2\xbd\xc8\x83\xe3\x34\x4a\x0c\xa3\x1d\x56\xa3\x74\x2f\xb2\xe5\x6c\xc1\x28\x31\x4c\xdb\xc1\xb1\x1f\x25\x18\xe2\xb0\x5f\xb0\xaf\x43\xd4\x39\x7d\x55\x62\x9c\xfa\x15\xfc\x17\x2d\x34\x26\x38\x91\x3d\x2e\xba\x98\x2a\x75\x9c\xbf\x2a\xdd\x2b\xc3\xf0\x55\xf0\x65\x30\x7c\x71\x26\xb3\xa5\x0b\xbe\x74\xfb\x8d\xaa\x44\x0a\xb6\x0a\x1e\x74\x08\x7a\xc1\x43\xd1\x6b\x44\x22\xe5\x6e\x41\x5b\xd5\xe9\xcf\x56\xad\xb8\xe2\x05\xa9\xb8\xaa\x3a\x51\xd9\x97\x15\x53\x95\x45\x65\x05\x2b\xae\xa2\x04\x63\x1c\xab\x1a\x25\x98\x16\xbf\xb2\x7f\x2b\xee\x79\xb9\x2a\xee\xab\xdc\x17\xb5\x6b\x28\x89\xd2\x3d\x6e\x8e\x7d\xd7\x69\xb3\xef\xfa\xc2\xde\x63\x13\xee\xbb\x0e\x0c\x4a\xb7\x38\x6b\xf6\x5d\x87\x03\xa5\x5b\xd3\x44\xdd\x9d\x94\x36\x62\xe5\xf7\x5d\x2b\x4f\x69\x23\xbe\x8a\xef\xbb\x33\xca\x35\x2a\x69\x62\x7c\x21\xba\x97\xd6\x47\x0a\x54\x99\x58\x99\x58\x85\x10\x51\x39\xa1\x57\x21\x7a\x55\x7a\x81\xd0\x15\x85\x3b\x7d\xdf\x75\x73\x50\x5a\xef\xe3\x37\xd7\x69\xfc\x3d\x7e\xb9\x7f\xfc\x92\x3e\xbe\xdf\x6e\xf3\xf2\xa6\xdf\xed\xfa\xa9\x1c\x3f\x7f\xcf\x97\xf9\xf1\x7f\x03\xd7\x97\x6b\xcc\xd2\x9f\xff\x04\x00\x00\xff\xff\x2f\x6a\xa0\x64\x47\x10\x00\x00"); +func _bfeeg ()(*asset ,error ){_ebag ,_aacdb :=_aegb ();if _aacdb !=nil {return nil ,_aacdb ;};_dbfb :=bindataFileInfo {_ee :"UniJIS2004-UTF32-H",_ffd :243210,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492817,0)};_ddfg :=&asset {_da :_ebag ,_dc :_dbfb }; +return _ddfg ,nil ;};func _fa ()(*asset ,error ){_bgg ,_eeg :=_aac ();if _eeg !=nil {return nil ,_eeg ;};_ecb :=bindataFileInfo {_ee :"Adobe-CNS1-2",_ffd :1781,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491179,0)};_dba :=&asset {_da :_bgg ,_dc :_ecb }; +return _dba ,nil ;};var _fagb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4d\x8f\x3f\x39\x72\x98\x79\xef\x4f\x51\x47\xed\x41\x3b\xc9\x77\x12\x68\x14\xb0\x3b\xb3\x8d\x9d\x83\x64\xc3\x23\xd9\x06\x0c\x1f\xf2\x85\x39\x6e\xc0\xd3\xdd\xe8\x69\x1d\xf4\xed\x0d\x3e\x0f\xff\x23\xc1\x30\x50\x75\x29\x66\xfe\x98\x64\x30\x18\x0c\xc6\x1b\x83\xbf\xfb\xfd\x1f\xff\xf0\xc7\x9f\x7e\xfc\xed\xe3\x77\xff\xf1\xd7\x9f\xef\x3f\xcd\xdf\x3e\xde\x1f\x7f\x7a\x7e\x9d\x7f\xfd\xf9\x5f\x7e\xbd\xe7\xc7\x35\xff\xfc\xe3\x4f\xdf\x7d\x17\xe2\xc7\xf3\xe3\xfd\xdb\xb7\x47\xfe\xdd\x7f\x39\x7f\xf9\xee\xbb\xf5\xfd\x9f\xfe\xf5\xaf\xbf\xcd\xbf\xfc\xf1\xa7\xf7\xe7\x8f\x64\xbd\xe7\x5f\x7e\xd9\x75\x3f\x3e\x7e\xf7\x9f\xe6\x9f\x7f\xfc\xeb\x6f\xbf\xfe\xeb\xc7\xdf\xfd\x3f\xcf\xcf\xd7\xfc\xbf\x3e\x9e\xf9\xae\xf7\xff\xe1\xd7\x67\xfe\xfa\xe3\x4f\x7f\xfe\xf8\xbb\xdf\xff\xe3\x9f\xc2\xdf\x5e\xff\xe9\x5f\x7e\xf9\xe5\x7f\xce\xbf\xcc\x9f\x7e\xfb\x68\xbc\x9b\x3f\x3d\xfc\xff\xee\x77\xbf\xff\x87\xf3\x97\x7f\x3c\xff\x32\x3f\x7e\xf7\xcf\x3f\xfd\xf8\xfb\x7f\xfc\xd3\xdf\xff\xf3\x3f\xfd\x10\xea\xdf\xff\xff\xfc\xcc\xaf\xff\x79\xfe\xfa\xd7\x1f\x7f\xfe\xe9\x23\xfc\xdf\x47\x18\xff\xf6\xfa\x9f\xfe\xf5\x97\xf9\x11\x76\x2b\xff\xf5\x9f\xff\xf8\x87\x8f\xff\x16\x3e\xc2\xf1\x11\x4b\x19\xe1\xbf\xef\xf7\xff\xe5\x1f\x7e\x7e\xe6\xc7\xe1\x53\x12\xfe\xfb\xe7\x67\xfe\xf5\x97\xf3\x9e\xbf\x9e\x3f\xfd\x79\x7e\xf7\xf1\xf1\xfd\x71\x1c\xc7\xe7\xc7\xfa\xfb\xfe\x0f\xed\x87\x1f\x3e\xd7\xbb\x3f\xf4\xe3\xf8\xc3\xef\xd7\xfb\xef\xff\xf0\xff\xfe\xf0\xc3\x1f\x7e\xd8\xef\xff\xbf\x7f\xab\xfb\x03\xef\xe6\x4f\xcf\xff\xd6\xe2\x77\xc1\x8e\x7e\xfa\xf9\xb7\x67\xbe\xbe\xdb\x7d\x7c\x7f\x1c\xe1\xfd\xfc\x08\xeb\xab\x7f\xff\xf3\x77\xe1\x38\x36\x74\x3f\x3e\xf7\xff\x38\x7f\x5d\x1f\x9c\xc7\xaa\xb9\x0a\xe5\xf3\x23\xd6\x83\x62\xfb\xfc\x08\xad\x53\xec\x9f\x1f\x21\xb5\xdc\x78\x18\x9f\x1f\xa3\x52\xba\x3f\x3f\x42\x3e\xf2\xe0\x61\x75\x36\xca\x2a\x5e\xc7\xe7\x47\xec\x34\x72\x85\xcf\x8f\x18\x22\xc5\xd5\x5e\xa0\xc2\xbd\xba\xeb\xad\xd3\xf8\x1d\x7c\xa0\xc9\xbb\xf3\x30\xf8\xe2\x1e\x3e\xd0\xd2\x7d\xae\x87\x7e\x00\xe6\x13\xfd\x85\x6f\x9e\xe4\x43\xe6\xa1\xad\x0e\xf9\x62\x1e\x7e\x41\x97\x33\xf8\x90\x78\xa0\x97\xbe\xab\x0d\x7f\x01\x98\x69\x2f\x89\xfe\xe7\x6d\x35\x1a\x9e\x8f\x0f\xfc\xf2\x46\x1f\xf8\xe6\x4d\x3e\x00\xcc\x4b\xff\x00\xf9\xda\x4b\xa6\x97\xd7\x5e\xa2\x9f\xdb\x4b\xf4\x17\x7b\x89\x0b\xb9\xe1\xd8\x98\x29\x3c\x6c\x98\xd7\x37\x21\x38\xe4\x3e\x78\xb0\xcb\x83\x6f\xc2\xe9\xf8\x03\x0f\x97\xbf\x50\x2d\xfa\x00\x38\x21\xfb\x90\x7d\xb8\xfd\x26\xf1\xb0\x87\x46\xa7\xc5\xa6\x13\x0d\xd4\xdd\x00\x0f\xf7\x23\x04\x74\x7a\x4f\xfb\x59\xb8\x09\x8f\x98\x0e\xb4\xf6\x38\x9f\x90\x42\x78\x36\xa2\xf8\xe6\xc9\x8e\x14\x08\x9e\xea\x83\xdf\x88\xaa\x68\x6b\x1b\x3b\x36\xb0\xb1\xb3\x90\x1b\x8b\xfd\xa4\xc2\xc3\xc6\x8e\xbf\xd8\x74\x6a\x3c\x08\x75\xe2\x97\x6a\xb5\x94\x78\xb0\xe9\xcc\x43\x2b\xfe\xb2\x26\x31\xf6\x3d\xec\xcc\xc3\xae\xb6\x10\x1f\xef\x2a\xf1\x53\xed\x6e\x9f\x1f\x85\x41\xc7\x45\x90\x05\x7a\x8a\xf7\xb5\x8a\x40\x05\x92\x06\x75\x9f\xb1\xde\xae\x36\xd2\x91\xbf\x2d\x8e\x74\xfc\xbb\xb5\x94\x8e\xfb\x5b\x73\x99\xc9\x4e\x03\xa0\x73\xf1\xa1\x8e\xef\xbe\x0f\xf3\x9a\x22\xb4\xf3\xf0\x8a\x0f\x7e\xb9\x37\x85\x1f\x3c\xec\x81\x86\xef\xbe\x8f\xc7\xb1\xf0\x9e\xea\x02\x3a\x1e\x50\x4b\xe4\x7d\x58\x80\x2c\x9c\xc7\x23\xae\x2a\xab\xef\x78\xc4\x85\x89\x40\x85\xb8\x46\xbb\x16\x46\x3c\x62\xfb\x5b\x85\xb4\xea\x36\x3e\x4b\xab\x6e\x8b\x14\x17\x9e\x5b\xa3\x38\xf7\x00\xa3\x5c\xa1\xd5\xb5\x50\x63\x38\xd2\xe2\x27\x95\xe2\xfa\x70\x2d\xd2\x18\x8e\xb1\xde\xae\x0f\x43\xa8\xf0\x90\xc2\xfb\x18\x7c\x28\x3c\xc4\xcf\x8f\x41\x9d\xb1\xf8\x09\x43\x09\x63\xf1\x93\xcc\xef\x23\xae\xa2\x15\x56\x2f\xb9\xc2\x20\x37\x53\xfb\x3f\xb0\xb9\x18\x46\xff\xfc\x88\x25\x52\x5c\x20\x14\x60\x9c\x0d\x64\x2f\x66\x12\x63\x58\x0c\xb0\x34\x8a\xe7\x5a\xca\x89\xe2\xfc\xfc\x88\x6b\xb9\xc6\xb8\x98\x6a\x4c\xbc\x8d\x0b\xae\xc5\x2a\x62\x8c\x0b\x02\x06\x11\x23\x2d\x58\xe1\x5a\x15\x68\x2c\xae\x16\x16\xa9\xc5\x98\xf2\x82\x96\xc6\x16\x32\xe3\x5a\x6a\x31\xa6\x7b\x75\x41\x85\xb2\x46\xc6\x7c\xc5\xba\xba\x08\x54\x58\x84\x1c\x23\xbd\x8d\xf5\x59\xa6\x0b\xc6\x91\xe9\x18\xde\xcd\xf4\xc7\x0b\x20\x79\x3b\xdf\x6f\x13\x9a\x17\x7a\x0b\x33\x50\x16\x9f\x49\xcc\x78\x59\xa4\x92\x16\x5b\x8b\x65\x91\x63\x0a\x54\x08\x54\x28\x14\xf3\x2a\x56\x8a\x7d\x15\x1b\xc5\x55\x77\xb1\x99\x58\xe2\xaa\xb0\xf8\x67\x2c\x91\xb7\x54\x48\xbc\xe5\xb3\xc4\x5b\x1a\x63\x09\xe7\x63\xd0\x75\x71\xbe\x17\x83\x8f\x65\x8d\x3a\xe4\x03\xd2\x2a\x70\xa1\x7c\x74\xab\x65\x1e\x6a\xe2\xa1\x58\x0d\x28\x8b\xd4\xd3\xfd\xa5\x59\xcd\x7e\xba\xd5\x80\xaa\x0c\xab\x01\x57\x39\xad\x06\xe8\xb0\x8a\x7c\x74\x21\x70\x3f\xeb\xfe\xf2\xd8\x80\x10\x4c\x1f\x6c\xfa\xb5\x1a\x10\x54\xc7\x03\x89\x97\xea\x78\x58\x12\xa5\x3a\x9e\xee\x2f\x8e\xa7\x02\x4e\x75\x3c\xac\xa7\x52\x1d\x4f\x67\xd8\xd5\xf1\x54\x9b\x76\x3c\x0d\x70\xaa\xe3\xe9\x36\xe0\x78\x1a\x50\x57\xc7\xd3\xec\x67\x8f\x07\x40\xab\xe3\xa9\x82\xf3\x7e\x7e\x24\x88\xaa\xb4\x35\xb7\x50\x73\x69\x59\x6e\x44\x87\x7d\xac\x69\xb2\x78\xae\x22\x00\xf6\x6b\x15\x01\xaf\x33\x8f\xb4\xd1\x9f\x55\xa4\x8d\xbe\x48\x7b\x00\x65\x5f\x74\x37\x80\x71\x38\x62\x56\x55\x19\x90\x10\xb5\x17\xed\x26\x56\x55\x41\xea\x70\xf2\x4f\x98\x17\x6d\x5c\x6c\x19\x54\xb8\x60\xca\x74\x7d\xad\xb1\x0c\x8b\xb0\x58\xa0\xb8\xdd\x44\x28\x36\xb8\x24\x45\xf8\x3f\xed\xba\x4d\x31\xa4\x1b\xce\xc9\x67\x73\x81\x13\xe9\x6d\x2e\x70\x58\x76\x15\x06\xc5\x74\xd5\x83\x76\x0b\xc5\xbf\x2d\xb0\x9a\xe1\x43\x81\x62\xf8\xb6\x02\x6b\x86\x0f\x2d\xc8\x5a\x7a\xc0\xe6\x92\x9f\xe2\xec\x87\x7c\xb0\xf3\x90\x79\x60\x00\x93\xed\xa5\xd5\xf1\x25\xc3\x9a\xa3\x58\x73\xf0\x00\x63\x6d\x20\x7d\x0e\xf7\xec\xbc\xc0\x9d\x67\xf1\x97\xc0\x43\xf3\x81\xae\xce\xd3\x87\xc4\xc3\x6e\x20\xf3\x30\x7d\x58\x83\x9c\x57\xf5\x81\xd6\xae\x5d\xad\xf1\xb0\xab\x31\x8a\x8d\x6e\x98\xee\xbc\x77\xd3\xc0\x06\x72\x5b\x83\x8d\xcc\xc7\x6f\xe0\x1e\x73\xba\xb1\xc2\xbe\xdf\xc5\x76\x0a\xdb\xc4\xbb\xb6\xc4\x02\x75\xbc\x0b\xf1\x05\x2e\xf8\x2e\xc4\x57\x40\x7f\x8f\xb5\xd5\xc2\x26\xdf\xe3\x5d\x6f\x57\xaf\x6f\xa0\x05\x48\xec\x0d\x61\xbd\xb6\x18\x3f\x3f\x2a\x04\xf6\xae\xdd\xae\x30\x61\xef\xe2\x5c\x15\x2e\xf7\x2e\xbe\x5e\x06\x88\x7c\xd7\x9e\x53\xd8\x44\xde\xb0\xf6\x68\x90\xf8\x2e\x76\x5f\x8f\xc3\x36\xd6\x86\x9e\xed\xf0\x5e\x6d\xd8\xdc\xf3\xf9\x51\x61\xfd\xef\xda\x10\xea\x01\xf2\x5e\x76\xad\x56\xd9\x08\xde\xb5\x6b\x15\x07\x1b\x19\x00\x3d\x2e\xb6\x58\x0f\xd0\xfb\xc6\xd5\x8a\x5d\xae\x4d\xa1\x14\x7a\x5c\x7b\x69\x3d\x1c\xe3\xa2\xb3\x16\x69\x7b\xd1\x59\x29\x54\xce\x0b\xea\x62\x05\x7a\x8f\xbc\x5e\x9c\xb2\x1e\x50\xf0\xbb\xf8\x5c\x3d\x20\xec\x77\xf1\x95\x5e\x81\x69\x71\x95\x0e\x87\x7a\x1b\x28\xdb\xe5\x55\x3b\x58\x65\x2d\xf2\x1a\xe0\xb0\x6f\x67\xc4\xb0\xaa\x77\xed\xb7\x35\xc0\x2b\xdf\xb5\x7b\xd6\x04\x0f\x7c\xd7\x7a\x2d\xd0\xf9\x7b\x22\x6a\x08\xf9\x22\xb7\x52\x41\xf8\xf9\x88\x15\xab\x2f\x8a\xa8\xce\xda\x5a\xbe\xad\xb1\x4f\xbd\x8b\xba\x16\xe7\xa7\xfc\xf2\x9e\xf2\x5a\xc1\xe3\x70\xdc\xf7\xbd\xe4\x00\x11\xb6\xc4\xc9\xdc\x9c\xba\x67\x11\x7d\x3c\xd6\x43\x42\xe3\x59\x93\x9b\x8e\x25\x71\x84\x46\x71\x11\x45\x5c\xd0\x24\x85\xec\xd4\x16\xfa\x52\xb8\x5d\x55\x8b\x3e\x53\x40\xe3\x68\x75\x6d\xac\x29\x40\xc6\x09\x32\x49\x31\x6d\x69\x24\xad\x87\x73\x35\xbb\xc4\xe5\x94\xd6\xd8\xe3\x62\xb7\x29\xdd\x6b\x2b\xa7\xb3\xb4\x38\x4d\x5c\xc8\x49\x69\x49\xc0\x31\x51\x61\x01\x1c\x93\x6f\xd7\xf6\xbc\xb6\x93\x94\x91\xa1\x72\xeb\x3c\xac\xd9\x0e\x25\x2f\xdc\xa7\x9c\x4f\x58\xe2\x1a\x6d\xca\x08\xe9\x0d\xf1\x3d\x65\x37\x8d\xe1\x37\x6d\x41\x53\x10\xb8\x53\x6e\xeb\x9b\x9a\xe9\x25\xb7\xc7\x6f\x7c\x80\xfb\xb1\x3d\xa6\x0c\x43\x6e\x70\xe1\x94\x07\x1b\x0d\x0c\x3c\x65\xd9\x07\x0a\x4c\xca\xe8\x71\x25\x2f\x4e\x9a\xb2\xac\x00\x5d\x2e\xe5\x5b\x3a\x2f\x83\x87\x85\xb6\x52\xfd\xe6\x59\xdf\xd4\x23\x7d\xc5\xd0\x52\x5e\x9c\x37\x94\x51\xf8\x6c\x56\x18\x39\xa8\xcf\xef\xe5\x90\xfa\x77\xdf\xa7\x02\xff\x6d\x71\x2d\x98\x54\x90\x2d\x5b\x5d\x0c\x22\x29\x32\x34\x94\x83\xa4\x94\xd0\x10\x48\x92\x9b\x7c\xef\x8b\x28\x93\x3b\x71\xad\x87\x0f\xe2\x24\xd2\x74\x03\xdd\x61\x89\x7e\xa9\xb4\xe8\x2f\x34\xdd\x1a\xa3\x60\x0e\x4b\x83\x2c\xe2\xda\xa3\x53\x81\x7b\x67\xd4\x86\x54\x46\xa3\x81\xcc\x37\x83\x6a\xe8\x78\xc9\x4d\xac\xc2\x86\x52\xd9\x48\xcd\xf4\xc3\x62\xa8\x61\xe9\x37\xa9\x20\xc2\x37\xb4\x8b\x54\x44\x2a\x0a\x6f\x2a\xf7\xfe\x86\x6a\xb7\xfa\x77\xa4\x53\x98\x6d\x19\xe2\x80\x4d\xad\x1e\x07\x4d\xa3\x61\xd5\xe4\x10\x50\xaa\x2a\x62\x59\x2a\x0f\xdb\x20\xbb\x6a\x2a\x0f\x38\x48\x42\xf0\xb2\xdb\x22\x3f\xa4\x82\x2e\xdb\x06\xd3\x5a\xd0\x65\xab\xc4\x5b\x98\x92\xd6\xab\xdf\x4c\x7f\x59\x0f\x6c\x8a\xa1\x0d\xfa\xa9\x01\xe5\x0d\x86\x9a\x2a\xca\x68\x1b\x10\x70\x0d\xca\x50\x8b\x37\xa4\x1a\x69\xba\xac\xed\x3c\x55\x34\x8e\x71\x04\x1f\x1e\xc7\xc3\x37\xac\x8d\xde\xec\x27\xad\x7e\x6a\x03\x89\x15\x3a\xc8\x1d\xda\xa9\x99\xed\x3e\x2f\x89\x7a\xa9\x39\x50\x33\x18\xad\x99\x6f\xf2\xda\xf2\x52\xcd\xae\x80\xc6\x2f\x08\x6e\xa5\x33\xd2\x0a\x85\x0c\xa4\xb8\x54\x5d\x42\x07\xeb\xbe\x76\x49\x2c\x2d\xec\xd4\x01\xe2\x33\x74\x50\x4f\x25\x84\xc1\x2f\x6c\xad\x25\x14\x9a\x66\x6b\xed\xb5\x03\xce\x05\x89\x15\x96\x5d\xbd\x82\xc3\xa6\xe9\x6b\x35\x50\x90\x90\x52\xbd\x20\xd8\x52\xc1\x0e\x2b\xad\xc8\x93\x2a\x44\x91\x63\xe3\x97\x3b\x49\x55\xb4\x76\x43\x89\x65\xf8\x0b\xe4\x22\xb3\xa8\x90\x4b\xa9\x8d\xf1\x68\x46\xc9\xcc\x5c\xc5\x3e\x92\xc7\xe1\x03\x0b\x30\x0a\x1b\xe4\x52\x2a\x0b\xa3\x42\x21\x79\x1c\x8c\x07\x73\x49\x6e\x2c\xef\x3a\xa3\xe3\x61\x16\x96\xc0\x14\xea\x60\x9d\x56\x56\x70\xad\x90\x4b\x7d\xe1\x6a\x1d\x5c\x37\xd4\xd9\x3c\x58\x80\x6d\xf3\x64\x38\x54\x43\x01\xae\x2e\xe7\x76\x80\xc4\x02\x7a\xdb\x01\x1d\x0c\x30\xda\x02\x08\xe9\xd0\x68\x43\x57\xcd\x0d\x1c\x34\x08\x29\xb7\xe8\x2f\x74\x9a\xa1\xc4\x16\xf9\xa6\xd8\x29\x54\x55\x2a\x1c\xb7\xa5\x6d\x57\xe1\x17\xb4\xd9\xca\x1e\x9c\x5a\xb2\x35\xd6\x76\x4b\x2e\xb3\xb2\x06\xd7\x60\xcc\xb5\x0f\x1f\x92\x4c\x96\x07\x44\xfb\xd2\xfc\xa5\x22\x57\x26\x76\x81\x06\x73\x68\x83\xa5\xd9\x90\x6f\x73\x87\x28\x1a\xb3\xdd\x92\x38\x40\xaa\xca\xb5\xe4\xaf\x18\x66\x63\x8a\x06\x32\x7c\x6a\x2c\xd5\x12\x2b\x6d\x60\x5e\x6a\x81\x55\xd3\x58\xaa\x35\xc0\x09\xfb\x01\x83\x19\xcc\x7e\x0f\xe8\x0a\x8d\x06\x7a\x3c\xfc\xc5\x07\xd0\x5d\x97\xc4\x9b\x7a\x72\x26\x97\x58\x9d\x7a\xea\xc2\xba\x86\xd4\x51\x5d\x3a\x96\xbb\xd4\x9b\xeb\x96\x21\x75\xc6\x57\x91\x00\x53\x87\x4c\xb3\xcc\xaf\xaf\x3d\x3b\x54\x8c\x1f\xa9\x3f\x92\x02\x34\xdb\xa1\xbf\x81\xfa\x96\xfa\xab\x20\x0c\xee\x07\x74\xd1\x06\x13\x3e\xb0\x53\x34\x57\xf4\xc0\x10\x51\x9c\xe3\xe1\xe4\x35\xab\x25\x47\xca\x1c\x0f\xcc\x58\x6d\x40\x7f\x03\xa8\x6b\x63\x08\x03\x66\x3e\x14\x15\x06\x72\x79\xce\x50\xd9\xe8\x32\x32\x76\xf3\xd1\x25\x46\x78\xf1\x18\xd1\x0d\x80\x7e\x86\x48\x5c\xda\x64\x1a\xe3\x72\xf6\x69\x0d\x9e\x5f\x3a\x83\x1b\x27\x8b\xab\xb3\x77\x8e\x6b\x8f\x07\x08\x30\x63\xd5\xc3\x06\x58\x4f\x3d\x40\xc0\x83\xf5\x94\x2b\xfb\xd1\xc0\xe2\xd8\x90\xbd\xd2\x70\x82\x07\x0c\x73\xc8\x8b\xb1\x0a\xa4\x01\x2f\x6e\x11\x4e\x78\xb2\xd2\xaa\x5c\xfa\xdc\x2b\xad\xfb\xe0\x2e\x0a\x76\xce\xc0\xee\xd6\xfc\x25\xb8\xbb\x31\x84\x33\x32\xb8\x01\xae\xcf\xb8\x39\x21\xbf\x24\x66\x01\x13\x4f\x3a\xb1\x1f\xb6\xc1\xd4\x9f\x28\xeb\x55\xc9\xe2\x2c\x36\x3d\xfc\xe5\x76\x3f\xa2\x1f\xf4\xe6\x82\x69\x29\x9d\x28\xb7\x15\xa3\x6d\x3a\x51\x6e\x5b\x84\x4b\x9f\x7b\xd5\x40\x7c\xe7\x09\x29\x17\x36\xb4\xf3\x72\x4e\x11\xbc\x4e\xf4\x8a\x2a\x53\x3a\xb1\xee\x66\xc9\xe5\x7c\x59\xde\x87\x10\xec\x0d\xcd\x7e\x5e\x09\x76\x00\x8e\x32\x06\xf6\x86\x74\x1d\xac\xc1\x02\xae\x2f\x56\x49\x77\xfd\x5c\x71\x37\xc0\x2f\xda\x50\x1b\x04\x7b\xb1\x1f\x75\xec\x46\xe9\xca\x4c\x23\x1a\x43\xba\xb0\x37\xf4\x03\x8a\xbf\x34\x0a\xd4\xc2\x2f\xcd\xcd\x96\x75\x7a\xb5\xfd\x4d\xe1\x41\x3d\x95\xed\xf1\x6a\x28\xeb\x39\x52\xad\xcb\x7a\x2a\x0f\x28\x81\x5d\x1a\xbd\x10\xdc\xca\x01\x33\xbf\x20\xcb\xb2\x21\x50\xfa\xe8\xb0\xd2\x4b\xc1\x2d\x41\xe4\x17\xdc\xa6\x60\xec\x4d\xd7\x2d\xf3\x83\xc8\x2f\xb6\x93\x72\x1c\x8c\xf4\x61\x99\x1d\x90\xe5\xc5\x6e\xd0\x0f\x56\xfd\xa5\x21\x7c\xff\xa2\xed\xfb\x40\x6a\xbb\x94\x17\x3a\x74\x70\xbd\x8a\xa8\x70\xcf\x5b\x66\xee\x5a\xb8\x43\x50\x7c\xa9\x3c\x28\xfd\x22\xe5\xdc\x0a\x0f\x2d\x51\xad\xb8\x7e\x58\xc1\x77\xd7\x8a\x0b\xf5\xde\x5b\xa5\x4f\xf1\x2b\x86\x79\x63\x80\x2d\xee\xb7\x37\xac\xa7\x26\x81\xd8\xbb\xdd\xe1\x03\x64\x9a\x2b\x5d\xcd\xcb\x3d\x8d\x6f\x30\x98\xf5\x03\x88\x1e\xac\xee\xe3\x00\xf0\x07\x3b\x6a\xc6\xcc\x99\x1e\x65\x9b\x0a\x86\x9f\xa4\x71\x1e\xd1\xf1\x49\xb6\x06\x97\x7e\x32\x2a\xb3\x4a\xc4\x93\xdd\x9f\x6c\x20\xab\x13\x01\xc1\xa3\x25\xac\x40\xcd\x0f\x72\x4a\x6d\xac\x80\xc7\xbd\x26\x97\xcc\xc3\xb0\x01\x1f\x4e\x9b\x06\x50\x76\xa1\x52\x11\xa8\x1e\x2d\xdb\x07\x13\xf1\xa0\x11\x94\xcc\xb0\x9f\xae\x74\x85\xb2\xf1\x74\xd9\x22\x24\xf7\x68\xf3\x3e\x50\x97\x9e\x4e\x6b\x1b\x07\x43\x02\xf6\x1b\x44\xa0\x82\x75\x21\x3d\xa7\x44\x02\xc9\x3d\x57\x66\xdd\x42\xf4\x0f\x32\x6e\x8e\x30\x8b\x47\xb3\x41\x75\x08\xb7\xcc\x02\x89\xf9\xd1\xc3\xd3\xc5\x0e\x9b\x46\x69\x91\x4e\x9d\x46\xec\x84\xe9\x51\x82\xc1\x82\x98\x1e\xc4\xda\x9a\x20\xb9\x07\xdb\xad\x1a\x61\x7a\x70\xeb\xd4\xc1\xd4\x3f\xcc\x69\xd9\xe8\xd5\x45\x13\x92\x0f\x6e\x41\x2c\xc8\xe7\x45\x8e\xac\xf0\xa1\x07\x2d\xb1\x0d\x47\xfa\x02\x41\x42\x64\x98\x1a\x84\x1a\xfc\x61\x2a\x18\xd8\xe9\x44\x30\x68\xaa\x99\x33\xab\x0e\x20\xa7\xcc\xa2\x78\x86\x00\x3f\x31\xb4\x55\x39\xd4\x3c\xdd\xba\xe1\xdf\xf3\x94\xf5\x30\x8d\xda\x6b\x6a\x41\x7e\x98\xa0\xb7\xec\xa6\x91\x23\x0b\xa6\xc1\x34\xd9\x5b\xf2\xb0\x69\x70\x5d\xdc\xa0\x27\xcb\xbb\x60\xdd\x4b\xf3\x16\x3b\x6c\x9c\xda\x6b\x7a\xb0\x35\x71\x9d\x90\x71\xe7\xe3\x8e\xe8\x37\xba\x6f\x30\x0b\xa4\xe9\x92\x29\x89\x7e\xe0\x0f\x0d\xeb\x7c\x9a\x38\x69\x4a\x45\x0c\x9c\x6a\x1a\xae\x1f\xad\x3f\x19\x4f\x4a\x9a\xc8\x91\xa5\x20\x61\xce\xbd\xef\xc1\xd5\x26\x33\x57\xdc\x27\xe6\x94\xae\xf7\x03\x36\xcc\x2a\xaa\x60\x3d\xe3\x80\x5d\x4d\xd9\x7c\x40\x7c\x99\xcc\x69\xc1\x8e\x9b\x26\x73\xda\xdd\x38\xe7\xbb\x47\xea\x2f\x7b\xa4\x74\xfa\x4a\xd7\x70\x42\x8c\x51\xa1\xa4\xe6\x03\x5b\x9d\xf4\x86\x15\x6a\x35\xed\x2f\x4d\x09\xcc\x07\xf4\x89\x00\x53\x7a\x75\x95\xe1\x0c\x49\x2f\x1b\x40\xc1\x62\x9d\x30\xc4\xac\x3d\x8c\x87\x2a\xa0\xec\xfd\x2f\x6c\xbe\x07\x98\xf9\xab\x4a\xde\x01\xf4\xc5\x99\xd3\x52\xf1\xc1\xa5\xc9\xde\xff\x8a\xf8\xc4\xcc\xbd\x3a\xc4\x30\x6f\xa6\x17\xe1\xa1\x07\x04\xa8\x17\x0f\x65\x8b\xac\x92\x17\x7f\x63\xeb\x6d\x7c\xc5\x30\x5f\x85\x30\x54\xbe\x7c\x80\x86\xca\x52\xcd\xc7\xe1\xea\x5c\x80\xe7\x03\x7e\xd7\x31\x8a\xe6\xc3\x7d\x10\x73\x6b\x3e\xb2\x40\x74\xaa\xa9\x92\x63\x97\xcc\x47\xd9\xab\x73\xac\x07\x19\x19\x86\xa2\x7c\x60\xf5\xae\x48\x98\xf9\x90\x91\x61\xd2\xcd\x87\xe2\x34\xa6\xde\x7c\xb8\x77\x8e\x0c\x38\xae\x9a\x54\x81\x00\x6e\x33\x82\x4d\x5f\x2a\xaa\x85\x4e\x59\x0e\x35\x1c\x80\xa3\x99\x22\x04\x1e\xf0\x32\x56\xec\x29\xf9\x78\x54\x06\x07\xad\xbd\xa2\xbb\xd2\xc0\xab\x08\xb4\x56\x40\x0e\x87\x1b\x40\x3d\x78\xd0\xde\xb0\xe8\x2f\x07\x51\x85\x3c\x94\x83\xa8\x8a\x6b\x5b\xce\xe1\x50\xea\x49\xab\x9f\x80\x15\x69\x84\x44\x03\xec\x13\x25\x64\x7e\x41\x04\xea\x11\x84\x04\x6d\xf5\x25\x50\xad\xee\x06\xd6\xe0\x42\x73\x05\x34\x7e\x69\x40\x8d\x16\x9e\x43\xdf\x4d\x03\xc1\x70\x6d\x04\xa0\xd6\x86\x1e\xc1\x41\x60\x93\xef\x38\xa5\x73\x80\x0b\x64\x28\x26\x6b\xee\xea\x31\xd0\x1a\x8b\x38\x23\x2d\xe6\x00\x2d\x0d\x3c\x26\x39\xb0\x23\xe6\x90\x79\x80\xb0\x0a\x8b\x38\x47\xf7\x75\x56\x5a\xc6\x07\x16\x7a\x5f\x2b\x20\x47\x78\x64\xc6\xe1\x90\xf1\x62\xad\x7e\xa8\x56\xd5\x9b\x3b\x0f\xad\x3a\xc1\x3e\x40\x07\xf8\xd9\x72\xec\xb7\x0f\x0b\xd0\x38\x1c\x42\x5c\x93\x15\x31\x38\xf6\x91\x79\x40\xa3\xae\xf9\xe0\x1b\x74\xac\x8c\xda\x91\xa3\x1a\x75\x5e\x6c\x24\xc7\x77\xab\xbd\xf4\xa3\x18\x58\xf6\x2f\xb7\x62\xd3\x6a\x20\xa1\x8e\x8e\x40\x03\x29\x8a\x90\xb5\x9e\x72\xaa\x2e\xfc\xc8\x2f\xc3\x99\x4b\xfc\x32\x34\xd9\x31\xc1\xe9\x72\x31\x81\xaa\x74\xef\x8d\x73\x75\x9a\x1e\x16\xa4\xb8\x4e\x12\x9f\x43\x48\x46\x16\x44\x1f\x64\x71\x08\x0f\x39\xa9\xef\x49\xfe\x3a\x88\x7b\x5c\xfb\x6b\xce\x87\x9a\x20\x18\xcd\x46\x03\xc4\xc5\x98\x73\x46\x21\xee\xb8\x30\x73\x8e\x36\xbd\x04\x81\xac\x9d\x30\xef\x6a\xdd\xa9\xaf\x34\x3d\xb4\x74\x1e\x3e\xc8\x23\x1b\x0f\xaa\xb0\x58\xd8\x72\x06\xf1\x15\x47\x77\xce\x97\x73\x5a\x69\x9a\xd8\x8e\x2a\x7a\xf3\xb5\x69\x67\x51\x48\xbe\x65\xb2\x2c\x99\x8c\x8e\x38\x8e\xe8\xc3\x36\x24\x44\x1e\xa0\x78\xb4\xa0\x9c\xb5\x44\xb0\x8b\xe6\xcc\x76\x32\xf0\x68\x65\x0d\x8d\xa5\x8a\x83\x29\xf9\xfb\x0d\x86\xc5\x8c\xbf\x31\x67\xb6\x93\x8a\x9f\x22\x67\x42\x3a\x4a\x74\x08\x4a\x05\x78\x18\x72\x9e\x2a\x65\x85\x07\x85\xd7\x96\xfa\x17\x0c\x33\x17\xb8\x40\xc7\x2f\x97\xcb\x21\x65\x2e\xc9\x2f\x17\xb8\x40\xc1\x80\x91\xcb\x21\xf9\xc0\xc8\x8a\x6e\x6e\xac\x74\xb9\x10\xa3\x31\x70\x13\xe6\xa2\x1c\x89\xc3\x2b\x17\x4d\x1b\x69\x49\x64\xb9\xa0\xf6\xe6\x04\xb6\x4a\x9c\x1a\x4a\xd6\x60\x0b\x36\x8b\x92\xb3\x0f\x5a\x08\x92\x0f\xec\xc4\xb1\xd3\x29\xee\xa8\x5c\x92\x0f\x9b\xdf\x2d\xd4\x95\xbc\xfb\xa1\xd3\xa2\x64\xd1\xe8\x54\xc5\xae\x54\x7f\x71\x8a\x20\x1f\x3d\xaa\xe3\xb0\x53\x5d\xa5\xd2\x5f\xd9\xa6\x34\x1b\xa8\x8a\xc2\xe2\x40\xdf\x64\xca\x74\x5a\xa5\x8b\x46\xd3\xcd\x25\x04\x91\x68\x6c\xed\x84\x3b\xe4\x82\x88\x9a\x91\x39\x72\x39\xe5\x0f\x50\x59\xd1\x7f\x95\xc4\x9b\xbe\x41\xb4\xfd\x5c\x0c\x19\x41\xf2\xcb\xc5\xd9\x0f\xb0\x84\x32\x5d\x9d\x30\xa5\xea\xcc\x61\xfe\xc8\xdb\xc7\x17\x87\xbf\xc0\xe2\x12\xab\xa6\x86\x6d\x53\x4a\x3c\x08\x28\xd3\x58\x75\x17\xbb\x05\x69\x34\xcc\x98\xa2\x73\x45\x63\x2b\x15\x2a\xab\xdb\x9b\xb9\xc4\xf4\x5c\xf1\x7d\x8c\xc0\xfe\x5a\x2f\xa7\xbe\xd2\xe9\x2d\x33\x67\x0d\x56\x84\xb0\x82\xca\x97\x35\xa5\x95\xc8\x2c\xd4\x77\x0b\x20\x0b\x07\x4d\x1d\x04\x8d\x26\x37\x94\xa7\x82\xb1\x3f\xb7\x24\xaa\xc0\x4e\xcb\xd9\x07\xbe\x51\xd3\x70\x0f\x6b\xf9\x15\x55\xfc\xd2\x34\xb2\xc1\xa5\x1b\xb6\xec\x8e\x94\x9d\x1b\x88\xaf\xf8\xc0\x72\xc3\x3d\x58\x31\x35\xe5\x86\xdf\xa5\x05\x9b\x96\x77\xb9\xa9\xb7\x57\x73\xc1\x58\xb3\xd0\x0f\x4d\x4d\x2c\xd5\x7e\x68\xbd\x60\xdb\xea\x09\x8c\x12\x7d\x90\x7b\xd1\x08\x05\x53\xea\x6c\xf7\xa5\x42\x55\x5d\x33\x4b\x5c\xb2\x5a\xee\x6a\x1a\x6e\x27\xfd\x34\x20\x86\x59\xe8\x08\x02\x05\xaf\x74\xee\x22\xb1\xb1\x98\xfa\x63\xd3\x50\x48\x57\x38\x3a\x58\x0b\x5d\xad\xf5\xb0\x81\x57\x9b\x1f\x34\x3a\x94\xfc\xf0\x7c\xe7\x11\xb6\x6d\xbe\xf2\x30\x85\x60\x0d\x61\xc0\x64\x0b\xbe\xb0\x3c\xa2\x9a\xd3\xf0\x17\xc5\xa4\xe8\x2f\xaf\x0e\x8e\x85\xaa\x81\x09\x72\x88\xc4\x81\x95\xbb\x14\x86\x3d\x92\x22\x2a\x4b\x66\x24\x39\x21\x1b\xcd\x50\xb4\x52\x4c\x1a\x06\x3c\xb9\x98\x86\x72\x96\x7b\xcb\x30\x86\x20\x77\x1f\x4e\xab\xd1\x34\xf6\x86\xdc\x3b\xb0\x61\xec\xca\x6e\x5b\x1a\xae\x72\x01\xd7\xe3\x74\x4a\x98\xac\x01\x93\xcd\x45\x40\x95\x30\x53\x01\x21\x53\x3b\x0d\x0f\xa7\x4b\xa6\xa4\xf0\x15\xc3\x3c\x83\x9a\x14\x80\x9f\x31\xdb\xe0\x82\xe8\x4c\xbb\xf5\xd5\xd5\xa9\x69\xa3\xb0\x20\xcf\x53\x02\x66\xf6\x4f\xe6\xb8\x45\xa4\x84\x13\xdd\xa7\x60\xc8\xca\xa7\xb6\x45\xd9\xd5\x39\x77\xd3\x54\x7b\x05\x0f\x32\xbd\x82\x81\x52\xb0\x9e\x6d\xeb\x41\x9c\xce\x57\xf4\x17\x58\xdc\x15\xd5\xff\xd8\x51\x2e\xc8\xb4\x12\x49\x97\x2f\xd5\xeb\x04\x5f\xbd\x70\x21\xf5\xc4\x82\xd4\xa2\x93\x4b\xf7\x41\xc9\x02\x62\xbc\xf0\xbe\xd5\x04\x5d\x5c\x7d\x6b\x45\xb4\x36\xdc\x14\xe1\x29\x97\x81\x12\x2e\x48\xcd\x3b\xb9\x0a\x8e\x9e\xa6\x04\xfd\x5d\x3a\xfc\x13\x72\xca\x75\x89\x51\x84\xd7\x6b\x1b\x93\x61\xbf\x97\xfb\x2d\xb1\x6f\xf9\x56\x44\x25\x8c\x27\xdf\xe8\x31\xd5\x65\x77\x6b\xfc\xaa\xec\xf8\xb7\xd6\x8b\x01\xeb\xb9\xb5\x5e\x28\xcd\xdf\xba\xde\x08\xf9\xcb\x77\x56\x34\x59\x9a\x47\xbe\xf5\xbf\x60\xdd\xcc\x77\xf1\x01\x66\x7e\xc3\x23\x2b\x51\x34\xf9\xae\x1b\x6a\x1a\x68\x32\x32\xc4\x99\xbb\xed\x4d\x90\x6a\xda\x28\x06\x32\xc7\xdd\xe5\x9e\xac\x8d\x5b\x83\xc5\x60\xdb\xba\x25\x0a\xd7\xc6\x0d\x17\x28\x18\xcc\xf2\xad\xcb\x25\xb3\xbf\xde\x48\x23\x65\xc0\xc8\xb4\x07\x35\xc9\xe5\x46\x64\xa8\x41\x84\xa8\x8e\xee\x4e\xe1\x0f\xd5\x05\xf9\x1c\x8e\x87\xf9\x79\xd8\xd4\xab\xe2\xcc\x03\x21\xd5\x0a\xbd\x3d\x98\x47\x73\x65\xa5\x3d\xcd\x6d\x18\xec\x3c\x6d\x63\x67\xe1\xfa\x61\xd9\x0d\xf4\xbf\xac\x31\xa5\xa5\xd1\x78\xd0\x6b\x04\x7f\x98\x7f\x8b\x8d\xc8\xf3\x20\x50\xab\x51\x4c\xab\x68\x05\x47\x0f\x20\x73\x81\xa8\x0b\x30\xcf\xa3\x7f\x7e\xb8\xf3\xcc\x03\x9f\xbe\x8d\x9c\xab\xe8\x97\x7a\xf7\x29\x1a\x89\x10\x29\x3f\x9f\x1f\x95\x5d\x61\x1e\x44\x14\x04\xcb\x44\x5b\xa0\x3b\xcc\x35\x5e\x3c\xbe\x79\x12\x6d\x51\x7c\x9b\x3f\x3f\x1a\x2b\x78\xae\xbd\xb2\xc1\x10\xe6\x92\x71\xdc\xf7\xe7\xda\x98\x1a\xb8\x9c\x6b\xb5\x35\x56\xd4\x34\x50\xb5\x76\xdf\x3b\x76\x96\xfe\x24\x84\xa2\x10\xf3\x90\x27\x1c\xa2\x11\xb7\x9b\x27\xf1\x88\x98\x33\xf2\x8c\xfd\xf3\xa3\x24\x3f\x40\x47\x8b\x8e\x34\x32\x3c\x80\x74\x05\x2b\x47\x4e\x22\x2d\xaa\x45\xc7\x67\xd9\x10\x4a\x91\xba\xb8\x72\x45\xd5\x9b\x89\xd8\x08\xe4\xf8\x99\x0c\x8e\xa4\xf9\x25\x6d\xd5\xd4\xad\x5e\x17\x08\xa0\x1a\xfe\xd0\x6a\x6f\x5f\xf1\xbf\x99\xd6\xfc\x38\x84\xa5\x38\x4b\x3d\x73\x2d\xb4\xe6\xf0\x13\x93\x82\x04\x37\x93\xf4\xea\x70\x96\xd0\x56\xd0\xef\x66\x0e\x7f\x0b\x4d\xc8\x33\x47\xa2\x59\xf8\x38\x43\x21\xbe\x2e\xab\x23\x06\x93\xa5\x0f\x7a\xca\xf4\x6f\x71\x1b\x26\xfc\x72\xe1\x0d\xe9\x63\xe6\x67\x01\xc3\xb8\x96\xb4\xd0\x9c\xf2\x25\x2b\x34\xa7\xbc\x38\x0f\x80\xb8\x24\xc1\x78\x48\x9f\x65\xec\x30\x9e\x3c\x77\x60\x9d\x34\x09\x17\x68\x55\x54\x2d\x69\xb1\x8c\xfd\xc1\x03\x60\x14\xd7\xa4\x38\xe7\x65\xd1\x1c\x7b\xeb\xac\xe3\xf3\xa3\xc3\x68\xa7\xaa\x62\x77\x1a\x88\x79\x48\x8e\xae\xb9\x07\x08\x5a\x33\x88\xc4\x4a\x06\x91\x30\x56\x03\xb0\x08\x10\xce\x53\xa7\xae\x7b\xd0\xec\xf1\xf3\x23\x15\xd7\x46\xff\x16\x7c\x94\x67\x27\xf8\x08\xf0\xbb\xce\x77\xe4\x9a\xd9\x17\xfe\xaa\xcd\x68\x56\x71\x32\xb1\x50\x2b\x44\x4f\x82\x66\x5c\x56\xdd\x11\x32\x98\xce\x10\xf9\x94\x50\x1a\x44\xcf\x39\xe2\x2a\xd2\xe7\x20\x7c\x07\x25\x68\x2e\x2d\xb7\xc2\xe0\x09\xfc\xaa\x6c\x30\x13\xb1\x2c\x37\xe9\x6f\x80\x1c\x7a\x1c\xae\x26\x91\x33\x04\x85\x3e\xc7\xa4\xec\x7b\x8c\x21\x52\xc7\xd2\xe5\x8a\x08\x58\x9b\x7f\x45\xb1\x98\x4b\xa9\xc3\x49\x9a\xe7\xa9\x02\x2f\x0f\x5a\xbc\x56\xb9\x81\xf0\xb2\x2e\xdb\x59\x62\x61\x77\x01\x63\x8e\xc1\xf9\x9c\xe7\x12\xc6\xe3\xe1\x8a\x5a\xc2\xe2\x38\x24\x20\xf5\xc2\xe6\x74\xa3\x9d\xa7\x80\xd0\x34\x2f\xa2\xad\x18\xc8\xb5\x49\xc5\xaf\x6f\xdd\x95\x7e\x6e\xa4\x84\xac\x68\xed\x6c\x95\x1d\x9c\x50\x67\xe5\x3a\xec\x9d\xf5\x08\xbe\x5e\xb8\x84\x9d\xcf\x7b\xa1\x12\x5e\x3c\xef\x4e\x0d\x7a\xbd\x09\x90\x0a\x56\x59\xd3\xc4\xc6\x34\x0d\xa8\x88\xce\xd3\xb3\x78\x97\x5c\x63\xe9\xec\xcd\x59\x78\x84\x97\xea\x8f\xcb\x95\x3e\x1f\x26\x5b\xa6\xb4\x54\xd5\x0d\xf9\x92\xa1\x9a\x78\x9a\xb2\x15\xcb\x8b\x5b\xca\x71\x27\x60\x21\x8f\x62\xfe\xac\x07\xd2\xf1\xf4\x04\x42\xdd\xf5\x35\x6c\x21\x83\xcc\xa9\x1b\xc7\x6a\xef\xf1\xf9\xd1\x9d\xd7\x97\x0e\x1c\xf7\x1b\xd7\x6b\xa0\x59\x42\xee\x10\xf3\x4b\x30\xaf\x87\x93\xb9\x54\x8b\x7a\xb4\xaf\x1c\x29\x79\xbe\x6b\xaa\x5d\xb3\x2f\xcc\xa4\xd9\xac\xe4\x88\xec\x3c\xdf\x6b\xd5\x01\x41\xef\xb3\xba\x03\x6d\xba\x27\x55\x0a\x30\xb9\xe2\x05\xca\x18\x5c\x8d\xaf\xc9\xef\xda\xe2\x88\x35\xc8\xef\xc1\x14\x22\x08\xbc\x87\xde\xf8\xe1\x0f\x82\x9d\x28\x03\x36\x33\xfa\xb2\xdf\xa9\x3e\xbf\x07\x0b\xa2\x53\x3c\x17\x30\xd6\x20\x7e\xcc\x0f\x9f\xf5\xd6\xf6\xd8\x04\xaa\x1d\x2d\xb0\xa0\x74\x63\x07\x35\x30\x10\x3c\x58\x31\xbb\x66\xa3\x07\x55\x57\x09\x1f\xec\x48\xa6\xaf\x0a\xa1\xb8\x7f\x83\xa0\xd0\x69\x00\x14\x5f\x1b\x1b\xc9\x7a\x34\x6c\xd0\xed\x9f\xf0\xc0\xaa\x36\xfa\xc6\x6e\x25\x3a\xd6\x09\xdb\xec\xd9\x70\xc1\x66\xad\x87\xcd\xcd\xf2\x5a\x0f\x2a\x82\x2f\xea\x04\xc6\xf8\xfc\xb2\x5b\xe5\xca\x36\xfc\xb2\x5d\x69\x3f\x7d\x91\x50\x34\x70\xbc\xe8\x87\x1b\x54\xf7\x2e\x0e\xc0\xe4\x17\x6f\xbf\xda\xe1\x6b\xc0\x4d\x44\x8e\x7a\x89\x86\x70\x25\x1b\x9f\x18\xc4\x3f\xfa\x0a\x06\xf1\xfc\xb2\x5d\xe1\x69\xca\xef\x92\x16\xab\x16\xe2\x77\xed\x5c\x95\x80\xb9\x4c\x10\x63\xd5\xe0\xf7\x66\x23\x39\xc4\x3c\x66\x08\x95\xe1\x37\xab\xf2\xa2\x70\x12\xeb\x18\xf0\x75\xe4\x37\x7b\x0c\xc1\xaf\x01\xd5\x29\xc9\x88\x3a\x22\x0c\xdf\x74\x6e\xcd\x87\x85\x3d\x2d\x82\x2f\x31\x01\xc7\x6e\x74\xd2\xa8\x0d\x81\xc9\x0c\xd8\x85\xd8\x51\x49\x94\x68\x4a\x8d\x31\x2f\xde\x48\xcd\xc0\x2f\x96\x10\x4e\x29\xe4\x77\x6d\x85\x35\x48\xaf\x48\xbe\x07\x7a\x13\x1e\x80\x1a\x24\x40\x1c\x00\x7b\x06\xd9\x17\x5d\x9f\x2f\xdb\xe2\xe1\x44\x15\xd1\x58\x29\x03\xa7\xf0\xe3\x34\x3f\x8a\xdf\x82\x46\xe9\x1b\x2b\x2a\x91\x20\xf9\xad\xa0\x14\xd5\xe2\xad\xc2\x4f\xfd\x2a\x46\xc1\x6e\x25\xfa\xb5\x5b\xa7\x51\xa6\x2f\x9c\x88\x29\x5b\xff\x04\x57\xf4\x5b\xd7\x14\xe7\x60\x7d\xe2\x25\x61\x71\x6f\x9d\xbc\xb7\x4d\x02\x24\x11\x58\x5f\xd4\xa0\x94\x2c\xeb\xa5\x74\x90\xee\xd4\x88\x33\x6f\x5b\x40\xa8\xc2\xbc\xb8\x25\x55\x66\xdf\x25\x2e\x57\x15\x98\x77\x49\xcb\x35\xb9\xa0\xd6\xce\x5e\xf3\x61\xfd\x41\xd9\x36\x4f\x80\x66\xf0\xa8\x0e\xc4\x86\x64\xfc\x29\x35\x8d\xe3\x2b\x76\xf6\x36\x82\x77\x5d\x16\x68\x66\x29\xdb\x30\x23\x82\x0f\xbf\x4b\x62\xa8\x49\xa2\x5d\x02\x43\xcd\x08\xa1\xef\x92\x17\x6a\x0e\xd6\x71\x70\x00\xd2\x1d\x1c\x18\x58\x72\x44\x4d\xae\xd3\x8e\xb0\xc4\xa6\xf0\x76\x07\x47\x5f\x38\x5c\x95\x41\xde\x25\x49\x54\xf5\x80\x17\xdf\x6b\x6e\xd2\xb5\x52\x45\xb2\x63\x02\xca\x93\x1f\x00\x28\xdb\xfd\xbb\x14\xc8\x8a\x4b\x37\x13\xa2\x1b\x12\xfb\xf0\x3b\x04\x14\x20\x90\x26\x08\x9a\xc9\x2f\xe2\x44\x66\x97\x7c\x51\x31\x53\xb6\xdc\xa8\x63\x7d\xc2\x7b\x5d\xa5\x43\xb2\xb0\x8e\xf0\x30\x80\xe1\xd2\x62\xc0\x28\xa4\x5a\x34\xdf\x21\x89\x00\xe7\xb9\x57\x38\x8d\x9e\x9b\xc7\x01\x9d\x91\x1d\x19\xb9\xcb\x90\x60\x62\x39\xf2\x4b\xcc\x69\x73\xa2\xd5\xe4\xaa\xcb\xe8\x42\x38\x71\xed\x5f\xec\xee\xc8\xa8\xaf\xde\x9f\xbd\xee\x2e\xfd\xac\x00\x6b\x20\xbb\x08\xb8\x0c\x31\xf1\xfd\xc2\x76\x93\x65\x21\x7a\xb8\xc3\xbf\x4b\xf6\xa8\x4a\xe1\xef\xb5\x43\x67\x99\x66\x45\x0f\xa7\x5f\xc9\x43\x46\xa0\xe8\x21\x47\xc5\xd7\xaa\xa4\xfe\x62\xda\x6e\x62\xe0\xd6\x0e\xc6\x30\xef\xc2\x08\x80\xfa\x6e\x7c\x6b\xfd\xae\xd7\xd7\x86\x80\xce\xd1\x18\x56\xef\x2a\xbc\x85\x0e\x48\x6f\x05\x23\x57\x89\xb2\x8b\x73\x7e\x1b\x0c\x64\x25\xa1\xa6\x67\x6c\x61\x78\xac\xf3\x8b\x99\xa4\x49\x2f\x8f\x52\x92\x75\x90\x38\x65\x47\x4f\x65\x94\x00\xa1\xc7\xd1\x25\xff\xe8\xac\x06\xd0\x47\x40\x7d\xaf\xab\xc3\xfa\x02\x6a\x9b\x37\x65\x06\x60\xd4\xa9\x34\xe8\xa9\x80\x68\x3b\xc0\x29\x3d\x12\xc8\xd3\x5c\xf1\x53\x38\xa9\x63\xa8\x70\x16\xed\x46\x49\x75\x99\xfa\xa4\x07\x77\x87\x25\x14\xc5\xe0\x46\x3b\x5f\xce\x7e\xf2\x81\x7e\x14\x45\xa1\xf7\xe5\x14\xaa\x13\x82\x4f\xc5\xf0\xf6\xfc\x2e\x19\x29\x06\x49\x64\x09\x49\x4d\x0f\xde\xbb\x84\x24\x83\x93\xf2\xbb\x04\x9e\x18\xa4\x84\x57\x0b\x9a\x53\xf8\x72\x3e\xcc\x99\x7a\x0d\xf0\x95\x99\xbf\xc2\xd4\xbe\xfb\xbe\x10\x98\x1e\x31\x38\x94\x1d\x9a\xce\x79\xd2\x72\x2c\x81\xa6\x85\x61\xa5\x4a\x17\x9d\x72\xe3\xbd\x65\x1c\x96\x39\x7e\xc5\xdd\x0a\xae\xda\x18\xd6\x62\x2c\xc7\x12\x7e\x22\xd1\x65\xe5\x58\x22\x4f\xc3\xf7\x51\x8e\x25\xf2\xc4\xb2\xf6\x98\x72\x04\x31\x92\x28\x47\xca\xbe\x4f\xf4\x4e\x3b\x4b\xfe\x89\x61\xad\xd0\x72\xa0\xe6\xb3\x10\xcb\x11\x84\x96\x36\x97\x30\xd4\x38\x6f\x5b\x8e\x00\xa2\xa2\xed\x08\x4f\xa0\x2c\x9e\x2c\x5f\x20\xd6\x3a\x37\xdf\xfa\x7e\xd2\xaf\x7d\x31\x8d\xb6\x19\x39\x0a\x21\x6c\x51\x98\x81\x61\xc9\x51\x2d\x1e\xd6\x61\x12\x0f\xda\xe1\xf0\x1d\x87\x16\x0b\x47\x19\x63\x38\x18\x63\x14\x4e\xcb\xc0\x29\x4e\x22\x70\x1e\xf4\x1b\x81\x33\x5a\x16\x87\xcc\x42\x04\x4e\xc7\xbb\xa4\xb1\x88\x75\xb7\x1c\xb8\x64\x72\x13\xe8\x25\x9a\xb5\xe8\x3c\x27\x80\x16\xa0\x14\x78\x4f\x9d\x25\x99\xe9\x9f\x2f\xc7\xb6\x1d\x39\xe7\x09\x72\x93\x2e\x12\x90\x0a\x51\xda\x47\x76\x19\x32\x07\x04\xc3\x41\x99\x13\x22\xf0\xc2\x72\x2c\xe9\xaa\x11\x8c\x52\x8e\xcc\x31\xc4\x0a\x5a\x32\x53\x56\x2c\x57\xca\x34\xba\xe4\xa9\x58\x8a\xed\x74\xbe\x05\x2d\x99\x13\x91\xd5\xf2\xc9\x7b\xdb\xbf\x28\xdb\xce\x4d\x1d\x46\x86\xc9\x80\x28\xae\x72\x64\x54\xf0\x6a\xfb\x92\x19\x75\x0a\xb0\x59\x7f\x89\x56\x8d\x80\xcc\x72\x14\xce\x48\x56\xda\x2f\x3a\x17\xa4\xcb\x25\x4f\xb5\xe6\x00\x3c\xc2\xd7\xc5\xe3\x12\xa2\x62\xa9\x56\x12\x22\x7a\x2b\x40\x54\x40\x63\x11\x22\xeb\x4f\x7a\xb3\x07\x8c\x02\x85\xf7\x15\xcc\x25\xea\x57\xa0\x4b\xb4\xb3\x84\xa8\x06\x57\x2c\x04\x27\xc4\x52\x19\x19\x41\x8b\xa5\x4b\x2d\xb5\x7f\x7e\xf4\xd4\xfc\x60\xd0\x28\x00\x55\xd0\x95\x98\x82\x0a\x70\x05\x34\xd6\xcd\xb3\xfd\xf8\x01\x2f\xb6\x0a\x74\x42\x5d\xc5\x17\x1f\x34\xa1\xa3\x4e\x13\x22\x3a\x68\xe0\xce\x39\x5b\x12\x55\x2c\xd5\xb2\x90\xd2\xce\x92\xa8\x62\xa9\x00\xd1\x98\xe3\x06\x1a\x1b\x98\x73\xee\x1b\x30\x48\x37\x4b\xd8\x49\x87\x03\xe8\x86\x7b\xcb\x75\x96\xb4\x63\x3c\x73\x39\x96\xb4\xd3\x93\x73\xb3\x24\x9c\x74\x48\x8c\x4b\xaa\xe9\xc4\x46\x95\xa3\x1b\x97\x21\x29\x2f\xe9\x45\x2b\x75\x39\xfa\x4d\x99\x91\x79\x5e\x50\xfc\xf6\xc9\xfb\xaf\x82\x9f\xcb\x31\x0c\x83\x14\xe1\x4b\xce\x49\x87\xb3\x38\x04\x91\xd6\x96\x9c\xa3\x31\xbe\x1c\x4b\xce\xe9\x49\xba\x5a\x72\x4e\x3a\x9c\x88\x25\xdb\x24\xc4\xf7\x72\x0c\x4e\x39\xba\x2e\x06\xc7\x1c\x0b\x38\x1b\x40\x2e\x0d\x0f\x21\xb7\x9d\x87\xb2\x75\x80\x5c\xdc\x2f\x39\x27\x1d\xae\x91\x53\x34\x01\x9b\x9e\x33\x34\xb6\xc2\x61\xe8\x54\xe4\x17\xe7\x83\xd5\xc9\x8f\xe7\x52\x50\x5d\x6c\x4b\xfa\x49\x45\x5e\xb3\xa4\x9f\x71\xd8\xc1\x85\x8a\x2c\xee\x97\xc0\x63\x7c\x4a\x39\x96\xbc\x93\x8a\xfc\x5d\x63\x8b\xc0\x2d\x79\x27\x15\xf9\xd7\xd5\x79\x6f\xf9\xa4\x0c\x3c\x4b\xde\x49\xc5\xad\xe9\xf2\x68\xbd\xd4\x79\xa1\xbe\xbb\xf0\xae\x49\x25\xb0\xb5\xe4\x20\xfd\x95\x85\x4c\x0d\x06\xa2\x94\x63\xc9\x3e\xfa\x24\xcb\x71\x0b\x1c\xf5\x6f\x81\x63\x60\x37\xc0\xb9\x66\x6f\x81\x63\x60\x37\xc0\x39\x4b\x4b\xf4\x31\x1c\xbc\x90\xe2\x61\x1c\x52\xb0\x27\xc0\xa4\x1d\x4c\xf8\x99\xd4\x07\xe5\x58\xe2\x4e\x1a\x8e\x6c\x89\x3b\x69\x58\xc9\x20\xb6\x22\x1f\x5c\xf2\x4e\x1a\xb6\xba\xe4\x9d\xb1\x79\xdf\x92\x77\xc6\x5e\xe5\x4f\xa1\x0e\xd0\x2d\xd9\xc7\xe3\xf6\x85\x0c\x12\x63\x6f\x75\x04\x6d\xd4\xe4\x82\x5c\x02\x4f\x1a\xe2\x71\x09\x3c\x63\xaf\xfe\x25\xe4\x8c\x26\x71\x19\xa2\x9c\x93\x20\x19\x98\x27\x03\x5b\x62\xce\xd8\xac\x50\x37\xc4\x66\x12\x13\xf8\xc4\xfc\x04\x3e\xe9\x91\x93\xa9\x43\x0c\xcf\x0a\x4c\x60\x6c\x36\xde\x33\x9e\xd9\xa9\xef\xb7\x03\xf0\xac\x73\xf2\xde\xf6\x39\x3f\xe7\x9a\x9f\x0f\x75\xac\x0f\x22\x9d\x85\x25\x39\x8d\xcd\x5f\x5e\x00\x95\x37\xbd\xe2\x11\x78\x5e\xf1\xc8\x00\x0c\xa7\x29\x83\x0e\x96\xb0\xa4\xeb\xbc\x1c\x2f\x8a\xfb\x5e\x09\x98\x8a\x8e\xbd\x34\x97\xe8\x94\xd3\x6e\xf6\xa2\xcc\x10\x88\xbf\xc9\x5d\x91\x00\x31\xea\xd8\x8b\x0d\x33\xd2\xb1\x99\x0f\xee\xbc\x03\xcf\x7b\x21\x4b\x46\x4e\xc5\x72\x10\xe3\x99\x87\xc8\x0f\x83\x72\xf2\x8b\xca\x43\xe6\x07\x2b\x01\x2f\x64\x19\x08\xf8\x39\x64\xe9\xe1\x90\xce\x96\xea\x51\x0c\xe2\xaa\x99\xdd\x21\x84\x83\x73\x87\xb4\x8b\x57\x38\x60\xb2\x2d\x64\xe5\xc8\x6e\x45\x26\xe5\x08\xc7\x61\xad\xcc\x0f\x5f\x45\x93\x94\xb0\x24\xab\xec\x14\x06\x4c\x4b\x01\x37\x4c\x09\x4b\x9c\xca\xce\xb9\x29\x3e\x02\xfe\x8b\x12\xf0\x9c\x04\x1c\x34\x25\x2c\x61\xa9\xe0\xa8\x28\x01\x5f\x66\xe0\x84\x55\x21\x97\x42\x39\x84\x8c\x80\xf6\x50\x60\xd7\x01\xf7\x4a\xe0\x34\x4f\x09\x66\x7e\x28\x30\xfb\x60\xee\x07\x5c\xa6\x25\x60\x90\x0a\x1c\x62\x2a\x21\x92\xeb\x82\xbd\xde\xa4\x22\xb9\x89\x57\xad\x50\x72\x5c\x43\xdd\xe2\xee\x33\x45\x3e\xf1\x07\x8e\xe4\x42\x2d\x01\x0b\x53\x24\xb8\xbe\x04\x2c\x4c\x11\xcf\x40\x09\x4b\xda\x29\x98\xd6\x4b\x58\xc2\x4e\x21\xef\x48\x09\x9e\xaa\x26\x28\xa6\x04\xec\x4a\xc8\x77\x61\x09\x41\xf8\xce\x4a\xc0\xc2\xe4\xb8\x97\x08\x54\x1d\x5c\x5e\x12\x7d\xb3\x88\x30\x44\xd3\x59\xae\x44\xb1\x61\xaa\xa6\x28\xc3\xa4\x08\x4b\xb2\x0b\xcc\x35\x52\x07\xc1\xdb\xb2\x5a\x33\xa6\x60\x81\x2c\xa1\xec\x30\x24\x2a\x11\x3e\x93\x24\x14\xec\x47\x09\x66\x13\xb0\x1f\x25\x67\x19\x81\xa7\x25\x41\x28\x2a\xa9\xf4\x56\x96\x04\x26\xe8\x4b\xdc\x69\x31\xf8\xed\x92\x45\x1d\x9c\xd2\x8e\x30\x2c\x69\x27\x76\x3f\x5c\xe2\x97\x33\xb5\x64\x9d\x9e\x6c\x04\x83\x51\xcd\x88\x10\x81\xf4\x11\x9d\x2f\x97\xac\x93\x86\xd3\x5c\x97\xc4\xd8\x01\xa5\x62\x62\xb5\xc6\xd2\x54\x6d\xb0\x82\x18\xeb\x62\x38\x2a\xb6\xed\xa1\x53\x49\x02\xcb\x91\xe3\x59\x22\x4f\xb5\xbd\xc6\x76\x01\x2a\x88\x7e\x6e\x84\x76\x97\x80\x19\xe8\xb0\x7b\xbc\xa6\x44\x17\x94\x80\xd3\x94\x28\x88\x12\x70\xf0\xec\xf5\xda\x3c\xe5\xb0\x1f\x90\x82\x13\x88\xec\xac\x4a\xe1\xe9\x9c\xbb\xb6\x28\x7e\x5d\x2c\x5d\x3f\x18\x50\x74\x73\x28\x08\xe8\x12\x48\x86\x2b\xad\x6b\xab\x64\xe4\xfa\x67\xa5\xb5\x7d\x04\xc8\xf7\xc8\xee\x12\xe7\x40\x53\x94\x38\x87\xf9\x42\xac\xcf\xb9\x72\xe0\xc7\xb0\xd2\x19\xee\xd0\xff\x60\x0d\x43\x4b\x93\x4d\x7a\xce\x5e\x0a\xde\x16\x14\x6a\x11\x74\xb7\x91\x75\xa2\x9c\xb1\x9f\x84\xd3\x03\xaa\x08\xaf\xe1\x54\x3a\x76\x04\xe7\x09\x26\xe8\xfa\xe4\xec\xba\x1f\xdc\x88\x90\x14\xcd\xd7\x23\xa0\x48\x19\xe2\xe7\xf2\x0c\xbd\xaf\x51\x8d\xb3\x94\x7c\x79\xe0\x4d\x86\x6b\x90\xcd\x52\x02\xbe\x62\x67\xdf\xe2\x31\x01\xe5\x52\x7f\x65\x6b\x08\x98\x60\x54\xf1\xc2\x85\x1d\x29\xf8\x9e\xe5\x2d\x33\xbf\xc4\x02\x03\xf4\x40\x59\x17\xcc\x1b\x5d\x4e\x66\xec\x09\x82\x21\x1a\x96\x2c\xd1\xa2\xeb\xe7\xf6\xe4\xa7\xec\xff\x66\x05\x45\xbf\x46\x9b\x43\x19\x08\xb7\x04\x44\x77\x37\xda\x9c\x5b\xc7\x8d\xa6\xec\x64\x63\x46\xa9\x99\x3d\x99\xe4\x46\xad\xb9\x5d\x78\x9e\x24\xb3\x8b\x9b\xdb\xa8\x28\x96\x84\x67\xa3\x0b\xbc\x3f\x88\xa4\x2e\x59\xc4\x89\xcd\x2a\x1e\xb6\xeb\xdd\x94\xae\x1d\xc7\xfa\xdc\x6c\x49\x7e\xfc\x30\x97\x96\xa7\x7c\xdf\x07\x7d\x79\xae\xfe\x79\xec\x94\x08\x25\xe0\x60\x72\xa0\x73\x07\xdf\xd1\xe8\xdc\x8b\x0e\xf8\x8c\x6f\xc8\xec\xc5\x61\x6d\xf1\xb1\x08\xd3\xab\x58\x6d\x39\xc1\x18\xf8\x80\x2d\x5e\x7b\x50\x09\x6f\xf9\x96\x75\xa1\x84\xb5\xc5\x73\xd0\xb5\x84\x17\xf5\xd1\x4f\xf7\x59\x75\xbf\x75\x4a\x99\x2d\xcf\x0d\x13\xa4\x5c\xe2\x61\x4e\x14\x74\xf2\xb8\x36\xe8\x0a\x74\x91\xd4\x1b\x8d\xb4\x20\x25\x1e\x7a\xc3\xfc\x01\xcd\xca\x6f\xb5\x1e\x36\xeb\xe8\x82\xf3\x87\x25\x4b\xa3\x79\x47\xc2\x15\x38\x9d\x58\xe2\x76\xe5\x34\xca\x8b\xe7\xb3\xb8\xe2\xda\x63\x09\x3a\x2d\xd1\xd4\x0e\xc3\x1a\x8f\x22\x19\x65\xfc\x18\xc3\x56\x5e\x1d\x22\x8b\x46\xa2\xc1\x42\x6a\x8c\x31\x6a\x82\x07\x4c\xf6\x54\xdc\x46\x85\xfc\x3f\x01\x17\x4f\x89\xec\xa8\x15\xb3\x78\x89\xd1\x30\xfe\xe0\x03\xb2\x11\xfc\x98\xdc\x40\x41\x81\x24\xb2\xa1\x12\x9b\x54\x48\x40\x50\x33\xb2\x34\x49\x83\x42\x0d\xfb\x41\x73\x2e\x5d\xe3\xd6\x91\x74\x62\x92\x83\xfa\x5e\x0e\xca\x20\xd8\x66\x13\x53\x19\xb1\x29\x28\xad\x91\x73\x68\x81\x07\x14\x06\x18\x20\xc5\xc7\x7d\xa8\x85\x86\x32\x36\xc2\x6a\x9d\x0a\x44\x40\x9a\x1d\x8e\xf5\x35\xaf\x82\x17\x52\x18\x34\x38\x74\xf4\xcc\x20\xdc\x2b\x9a\xcd\x20\xf9\xad\xa7\xd1\x19\x65\xd6\x2e\x08\xa0\x79\x07\xcc\xf1\x71\xc1\xc6\xe3\x0f\x05\x5b\x54\xf6\x3d\xd6\x12\x3f\x2e\xf2\x05\xeb\x34\x47\xc3\xd0\x4c\xf9\xd3\x77\x4b\xf2\x02\x7f\x80\x17\x64\xbf\x96\x17\x30\x4c\xb6\xd3\x90\xbf\xf2\x8b\x16\x83\xd9\xcd\x89\x51\x48\xca\xd4\x70\x1c\x97\x88\x09\x21\x3a\xc0\xea\xd9\x4d\xe4\xb2\x58\xd1\x38\x9d\xd3\x8a\x36\x2e\x45\x6b\x2a\x70\xea\x2a\xac\x5a\x2c\x57\xec\x18\xce\x84\x96\x02\x31\xbb\x2d\x05\x74\xdc\xd0\x3e\x9d\x5e\xfc\x2d\x7b\x03\x8b\x0d\x45\x4b\xec\x34\x85\x1a\x3f\xf0\xfc\xb1\xeb\xa4\xa9\x12\xfa\x35\x6a\xa9\x60\x37\x54\x51\xe7\x8e\x20\x89\x21\x1d\x77\x18\x43\xf7\x3d\xb4\x8e\x99\xb5\x90\x29\x2d\x2b\xe1\xc7\xb5\xa3\x66\x45\xc1\xe8\x01\x32\xe2\x27\x4a\x1c\x06\x62\xc0\xa2\xe2\xda\x60\xb3\xda\x52\x5c\x9b\x6a\x56\xdd\x31\xc4\xbf\x66\x61\xc2\x47\x11\xb3\xcb\x94\x30\xb8\xc4\x29\xc7\x12\x89\x86\x88\xc3\x65\xc7\xf9\xc7\x94\x9c\x58\xf7\xd6\x8d\xff\x71\xed\x7c\x30\x25\x0e\x5c\xf1\x14\x4f\x58\x39\x9f\x9e\xc6\x76\x3a\xd4\xa5\xbe\x0f\x76\xa3\x78\x9a\xea\x41\x58\x4f\x02\x42\xba\x1f\xe8\xc9\x10\xb1\x78\x32\xdc\x35\x23\x51\xc9\xbb\xd2\xde\xfd\xd8\x65\x3d\x8d\x50\xb3\xfd\x11\xe4\xa0\x32\x12\xdd\xfd\x64\x29\x97\x6b\x1f\x14\x6c\x3f\x03\x70\x98\x17\x42\xc2\x26\xc6\xa1\x89\x64\xfd\x0c\xc9\x3a\xf6\xe6\xd8\x4c\x17\x91\x6c\xc8\xb9\xa6\x33\x8f\x62\x1f\x72\xb9\xb5\xe1\xb5\xe8\x7a\x7c\x0c\x65\x43\x56\x8d\x6e\x6c\x01\x09\x39\x92\xb4\x44\x6d\x21\x3e\x58\x9e\xec\x9b\x0c\x26\x6a\x04\xf1\xc1\xa2\x28\xac\xe4\x5c\xfc\x56\x26\xc5\x9a\x9c\xf0\xc1\xa2\x28\x05\x3d\x64\x91\x92\xa6\x1f\x6c\x41\xd2\xfd\xda\xe1\x92\x36\x82\xf8\x48\x7d\xbc\x9f\xca\xae\x76\x66\x36\x82\x2e\xf3\x23\x79\x53\x71\xa0\x4b\x2f\x4e\x45\x1e\xb4\xf4\xdf\xb1\x57\xd0\x44\x3d\x17\xdb\x53\xcd\xd1\xe1\xbc\x68\x8e\xae\x5d\xb2\x60\x1c\x1a\xba\xe2\x2b\x29\xf2\xc5\xbb\x35\x24\x9a\x65\xeb\xd3\x70\x15\x89\xc4\x8e\xd9\x6d\x6a\x6d\x7e\xa5\xca\x48\xde\xb1\x73\x0e\x95\xf8\x9e\x9f\x1f\x55\xb2\x5a\x6a\x2e\x07\x6d\x0b\xa7\x4c\xea\x01\x89\xa5\xc3\x60\xb7\xe4\xc3\x5a\xa2\x08\x01\x89\x7d\x4f\xdb\x78\x3a\x64\x90\x83\x32\x92\x09\x83\x4c\xda\xf0\xd9\x36\x52\x60\x17\x07\xca\xb4\x94\xd2\x9e\x76\x19\xe3\x18\x98\x4b\x4b\xbb\x24\x03\x52\x49\x6b\x0f\xac\xa3\x7c\xc5\xdf\x12\x26\xfd\xfd\xb5\x13\x58\x29\x9f\xdf\x12\x28\x95\xc4\xc6\x79\xc0\x8d\xd3\xda\x38\xdb\xee\x18\xdd\x0c\xc3\x57\x5a\x5b\xe5\x80\xfb\xa6\xb5\x51\x72\x36\xb0\x24\xc3\x1f\x86\xaf\xd1\xcf\x77\xd9\xf4\x8d\x6c\xdc\x29\xee\xc4\x27\x20\x42\xa3\x3c\xe2\x6c\x22\xb8\x4f\x97\x7f\x49\x51\x26\x69\xb3\x12\x0e\x5f\x27\xed\x2c\x20\x37\x61\xbe\xb0\xbe\x79\x03\x70\xca\x96\x94\x94\xd6\xd0\x48\x13\x5b\x6b\x20\x2a\xa8\x24\xb6\xd0\xa8\x49\x3c\xad\x3d\x54\x8b\x52\x22\x70\x6f\xf8\xb1\x69\x0f\x93\xcd\xba\x96\xed\x0e\xaf\x9c\x20\x25\x2c\xe2\x70\x85\x64\xfc\x03\xd5\xf3\x16\xd0\x7c\x4f\x60\x21\xe8\x5a\x9b\xac\x9b\x78\x22\x88\x4f\x3c\x13\xc4\x87\x1c\x92\x88\xe1\x63\x11\xa7\xb5\xd9\x12\x92\x5b\x12\x76\x7a\xe7\x27\x3b\x27\xb6\x46\xc4\xc9\xb0\x47\x43\x78\x59\x55\xc9\xbc\x92\xac\xf2\xa4\xaa\x2a\xa2\x88\x26\x77\x59\x24\xd5\x56\x56\x7c\x52\x3b\x75\xa2\x0b\xb6\x52\xd6\x57\x2a\x48\x4e\x36\x69\x9e\xa7\xfd\x7e\x91\xea\x61\xf5\xd7\xfd\x86\x36\xb1\xba\x8b\x0c\x76\x4c\x27\xba\x22\x00\x22\x0c\x26\xd2\x1b\x75\x75\xd5\x54\x4d\xb9\xc9\x58\xea\xce\xca\x03\x9c\xf5\x5b\xba\xae\x92\xaa\x2b\xca\x86\x0c\xde\x3d\xfc\x61\xc1\x20\x11\xae\x0d\x53\x73\x4e\x5a\xfb\x65\xc5\xbb\x57\x52\x93\xf2\xa8\xe2\xb9\xdc\xc2\x46\x95\xd4\x4c\xc5\x1b\x41\x06\x3a\x13\x12\x41\x06\x9a\x0f\x12\xa1\xca\xbd\x3a\x18\x43\xbc\xcb\xe1\x03\x7e\x2b\xb8\x40\x22\x62\xc0\x2d\x2b\xad\x0d\x93\xdc\x6c\x25\x75\xa2\xc8\x24\x3b\x7d\xf5\x88\x37\x69\x98\x1b\x47\x12\xd4\x71\x8f\xf0\x95\x06\x4e\x59\x4c\x60\x9c\x3a\xab\xda\x33\x12\x4a\xa5\xaa\x5d\x1a\x08\x5f\xcd\x46\x11\xbe\xc4\xe2\x40\xa4\x10\xea\xa1\x74\x03\x82\x86\xfc\x84\x09\x1b\xc2\x4c\xd9\x74\x1e\x05\x31\x39\x9d\x1e\x3d\x0b\xfe\xa2\x3e\x63\x19\x2f\x40\xb5\xd2\x4e\x1a\x02\xa8\xa7\x2e\x01\x7f\xe8\xc6\xfd\x01\xc7\xb9\x63\x26\x01\xd6\x03\xce\x1a\x73\xd2\x4e\xf5\x20\x5b\x3c\xb1\x53\x4a\x77\x98\xca\x87\x4c\xc8\xdc\x61\xc5\x99\xbe\xb6\x28\xc1\xe7\x17\xd6\xbe\xf6\xa5\x52\x9a\x50\x5f\x63\x16\xbd\x57\xdd\xb9\xdd\x4a\xba\x0c\x07\x04\xfc\xb5\x41\x37\xa7\xfe\x36\x65\x0f\xdb\x4d\xd2\xc9\x9f\xec\xfe\xc6\xbf\x26\x45\xb9\xfb\x6a\x26\x4f\x04\x19\xda\x3e\xce\x7c\x99\x03\x3a\xa8\xf4\xbd\x54\xd0\x8d\x8f\x7b\x1f\xf5\xb4\xc5\xc5\xc6\x24\x4b\x2d\xd8\xdd\xc9\x7b\xb6\x7c\xe2\x2f\x4e\x86\x6b\xf8\x31\x65\x23\x18\x78\x5c\x28\x4c\x0c\x3e\x7b\x7d\x16\xe9\xd9\xc2\x8a\x3f\xec\x98\x5f\xfa\xc3\x6b\x6f\x90\x56\x49\xea\xa0\xf2\xba\x47\x4a\xe0\x73\x37\x5f\x85\xc8\x34\xb7\xbd\x93\x2f\x96\x82\x59\x08\x03\x2e\x69\xa6\x9d\x0e\xaf\xa4\xb5\x27\x93\x80\xb9\xa4\x59\x3e\x3f\xba\x0b\x62\xed\xce\xdd\xb1\xcd\xa5\x29\x4a\x27\x6b\x9f\xd6\xd3\x94\xe6\xb9\x2a\xd8\xf0\xb5\x8a\x36\xb6\xe8\x56\x56\xbb\xb4\x56\x4d\x1c\x69\xb2\xac\x05\x8f\x65\x4d\x5d\xc2\x20\xb1\x4e\xa5\xb5\x9d\x2b\x70\x72\x6e\xb2\xcb\x0d\xd6\xbe\x4e\xb4\x59\x49\x2f\x90\x81\xdd\xd7\xd3\x4d\x62\xf7\xf5\x9c\x9d\x0b\x77\xed\xea\xba\x1c\x13\xc1\x8d\xee\x9d\x6b\xfb\xee\xae\x66\xf5\x59\x95\x67\xce\x64\x0e\x10\x9b\x97\x36\x3b\x68\x30\x1f\x79\x15\x0f\x8a\x4b\xf1\x64\xcf\xc9\x46\xec\x0f\x6b\xac\x5d\x1f\xd4\xe5\xb5\xeb\x73\x90\xbf\xe4\xa5\xec\x8e\x68\xe5\x25\xc0\xc0\x02\xf2\x52\x75\x07\x76\x89\xbc\xa4\x82\x01\x69\x65\x94\xde\xe4\xdb\x77\x55\xa0\xdd\xc0\xae\x0b\x68\x4b\x22\x18\xcc\x60\x5e\x02\xc1\x48\xbe\x95\xd1\x08\x51\x30\xc2\x02\x01\x28\x73\x42\x71\x6f\xf0\x99\xb0\x46\xbd\xd9\x39\x20\x96\xb0\x7d\xe5\xe0\x59\xa9\xe6\xc3\x05\x61\x58\xe9\xa6\x12\xc3\x40\x95\x96\xc9\x65\x4e\x4d\x91\x4d\xa6\x64\x54\x69\xfd\xf7\x59\x53\x35\x0b\x86\xb4\xb4\xa1\x76\x7b\x8e\xc6\x48\x38\x86\x25\x16\x54\x8d\x6e\x9c\x6b\xad\x71\x7f\x81\x97\x61\x58\x87\x08\xbc\xfd\xb1\x60\x5b\xc6\x7e\x0d\x11\xe4\x25\x44\xd4\x78\xf8\x1e\xa8\x59\x7c\x19\x81\x22\xec\xf6\x85\xda\xf6\x31\xbb\x30\xf5\x99\x98\xcb\xaa\xff\x34\x73\x5a\xc0\x50\x80\x8c\xb5\xdb\x30\x82\xec\xb9\x6e\xce\x1f\x96\x9c\xf4\x03\x80\xa3\xe4\x31\x26\x08\x2a\x2f\xd9\xa2\x72\x28\xbb\x64\xd4\xf3\x10\xbe\xe4\x5d\x39\x39\x0e\x3f\x12\xe3\xf6\x02\xec\x4e\x11\x82\x87\x41\x06\x39\x89\x71\xcb\xaa\xd3\x28\xfb\xe6\x19\x34\x9c\x23\x67\x4d\x46\x34\x8a\x48\x62\xc8\x44\xce\x82\x0e\xb4\x1e\x26\x10\x09\xd9\xac\xd0\x20\x0a\xa1\x44\xc3\x5a\x26\x1e\xd3\x10\x0b\x53\x17\x1a\x16\x92\xf3\x3e\x03\x64\xa5\x5b\xa5\x1e\xb0\xb3\xb9\xde\x92\x0f\xc2\x2a\x18\x9c\x00\x10\x9d\x85\x79\x67\xdd\xe7\x4a\xa8\x1b\x3b\x57\x26\xea\x31\xb3\x5b\x65\xce\x99\x26\x29\x0b\x41\x22\x23\xa3\x93\x27\xb1\xe6\xe2\xb7\xd8\x49\xec\xab\x62\xba\x80\xb9\x66\xcc\xdb\x39\xfb\xbe\x9b\x6a\x9b\xb2\x27\x47\x9b\x0d\x9d\xda\x3c\x81\xc8\xd8\x48\x97\x0d\x92\x47\xce\xf6\xa0\xe4\x81\x98\x90\x97\xb8\xb1\x4d\xe2\xb9\xa1\xcb\x49\x10\xcd\xa3\x1b\xd4\x41\x0e\x91\x79\x99\xc5\x51\x2f\x76\x26\x4e\x32\xdb\x8e\x71\x92\x2e\x4b\x0d\xe4\xec\x4b\x59\x03\x39\xac\x3b\x6b\x20\x17\xc1\x8d\x68\x3d\x17\xb8\xb1\x91\x5d\x18\x08\xe2\xdc\x30\x60\x92\x13\xd5\x0d\x2b\x6b\xb2\x0c\xcc\xf2\x09\x0e\x4c\xa8\x38\x64\xc3\x1f\xe5\x35\x86\x3f\xca\xdb\xd0\xfe\xdd\xe5\xb3\x67\xb3\xb4\xab\x66\x63\x1e\x11\xec\x32\x46\xf7\x2c\x07\xe4\xf0\x44\x96\x53\x19\xda\xe8\xba\xe5\x7c\x7f\x12\x11\x9c\x98\xc8\xd9\xf2\xf4\x9c\x0b\x65\xd7\x9e\x13\x8e\x15\x21\xb1\xf7\x72\x60\x7d\x7b\x59\x33\x56\x7a\x0e\xc4\x96\x9d\xe3\xb2\x3b\x1c\x2d\x0a\x87\x9c\x91\x24\x4a\x9a\x64\x4d\x7e\xa9\x42\x98\x87\xe2\xa5\xb4\x86\x54\x95\x9d\x71\x24\xa9\x24\x3f\xc0\x52\x5f\xa3\x03\x1a\xa6\x14\x96\xd7\x9d\x4e\x33\xa3\xe6\x50\x45\x63\x63\xce\x9e\xaa\x70\xca\xcf\x0d\x14\x7d\x9f\xca\x9b\xd2\xf3\x49\x70\xa0\x04\x80\x2c\xa5\x1f\x30\x9b\xc2\x17\x65\x39\x6b\x77\xd8\xf5\x87\x27\x25\x28\x23\xe9\x61\x3b\xc9\xa7\x27\x28\xfc\x16\x33\x9b\x44\x78\x7a\xc4\x81\xf1\x2c\x31\xaa\xaa\xd7\x99\xe3\x53\x25\x84\x73\xfc\xd5\x1d\x32\x5f\x66\xf8\x04\x6a\x9c\x01\x39\xb8\xa8\x70\x06\xe8\x69\xc9\x1e\xc6\xec\x22\xff\x42\x3e\x95\x24\x2f\xe4\x53\x51\x6c\xf2\xb3\xfc\x55\xf6\x91\x92\x4d\x8b\xd7\x25\x2e\x23\x33\x9b\xad\x39\x26\x5b\x43\xfe\x76\xea\x8d\xd2\x2c\xd6\x67\x4c\x2e\x0e\x03\x36\x51\x43\x4c\x3a\x60\x48\xd4\xce\x5a\x2a\xfb\x56\x96\xc3\xb4\x9e\x3d\x2c\x22\x11\x18\xb0\x29\x9b\xd4\x8e\x82\x2b\xc5\x24\xa7\x5a\xd3\xb3\x36\x15\xd1\x71\xeb\x02\x15\xf9\xb7\x96\x6f\xa1\x33\x54\xa1\xef\x6a\xa8\x5e\x92\xd3\xfd\x32\x34\x50\x6e\x64\x66\x77\x4d\x18\x76\xe9\x82\xf5\x18\x7b\x53\x1a\x78\x1c\x1c\x3f\x4c\x33\x02\xf3\xc1\x24\x0c\xce\xc9\x9e\x9a\x1c\xe9\x61\x6a\xb3\x95\x83\x22\x90\x45\xb9\xdd\x24\x26\xce\x51\x4f\xec\xa5\x52\xd6\x24\xd2\x4c\x3e\x36\x89\x89\x13\xec\x49\x4c\x9c\xa3\x9e\xa8\xdf\x52\xdc\x24\x76\xcf\xe1\x4c\xf4\x09\x29\xc8\x10\x4c\x67\x6a\x7a\x62\x47\x46\xf9\x62\x1c\x95\xa4\x5f\xfc\x58\x4e\x1b\x32\x59\x94\xd7\x19\x44\xe9\xf4\xbc\x74\x20\xea\x5f\x4c\xb3\xbb\x4c\x67\x68\xaa\xf9\x25\xce\x0e\xf2\x2e\x07\x98\xa0\xfd\x62\x42\x0c\x83\xb6\xc8\xd0\xd0\x48\x81\x51\x48\xd0\xd0\x48\xae\x51\x0a\x31\x97\x1c\x23\x2e\xc5\x98\xcb\xe2\x7b\x2e\xed\x40\xa7\x29\x07\x0e\xa5\x6c\x19\x4c\xb0\x1e\x0a\x9e\x08\x32\xbf\x15\x52\x3b\x34\xb2\x6a\x14\x72\xe6\x37\x57\x40\x31\x80\x80\xfc\x51\xa5\x68\xb6\x29\x36\x84\x70\x8d\x6e\x43\x66\xfd\x18\x04\x22\x80\xa1\xec\x7b\xe7\xd2\xf7\x1e\x50\x07\x45\xc5\x38\x4c\x47\x63\xbc\x65\xf2\x03\x93\x4d\x25\x7f\x00\x3c\x58\x68\x09\x9e\xf7\x67\x66\xcb\x16\xa8\xfc\x24\x7a\x76\xdf\x11\x2d\x29\xca\xbc\x3f\x85\x5c\x13\x31\xb0\x7a\x4a\xdc\xed\x02\x49\xc4\x01\x03\x0b\x29\x51\x75\x6d\x37\x75\x73\x53\x8c\x95\xb0\xc5\x0c\x5b\x9d\xbc\xf7\x83\x97\x32\x73\x42\x50\xa4\xdc\xa1\x2c\xd1\x29\x72\x08\xb0\x94\x44\x98\x1b\x1b\x0a\x79\x2d\xa2\xe6\x2a\xae\x0f\x68\x72\xd3\x42\x7c\x24\xe9\x92\x0b\xe9\x2e\x9a\xeb\xb6\x24\xa0\x76\x4e\x96\x40\x15\x75\x42\x97\x44\x6c\x1e\x1b\x1f\x19\x31\xcc\xaf\x5b\xb8\x87\xa0\xa9\x29\x93\x55\x38\x71\x26\xaa\x98\x1b\xa3\xa9\xd6\x14\x63\x2b\xd9\x98\x0a\x69\xde\x35\xdd\x14\x63\x2b\xd9\x41\x4b\x26\x06\xef\x6b\x63\x5a\x31\xee\xc0\x5e\x32\x01\x7a\x42\x82\xf3\xa4\x96\xe2\x0f\xb8\xd1\x60\x20\x65\x67\xaf\xed\x76\x83\xb3\x80\xbd\xb0\x18\x86\x39\xfc\x00\x7c\x37\xcb\x38\x08\x76\x7d\xf1\x4d\x0f\x85\x61\xc0\x4b\x8b\x61\x98\xec\x33\x24\xf8\x68\xee\x03\xe6\x4f\xee\x32\x59\x92\x7d\x44\x8e\xe4\x15\xee\x55\x88\x1c\x85\x2c\x5c\xab\x10\x35\xf6\x90\xf6\x23\x1a\xb4\xea\x05\x09\x55\xab\x27\x17\x24\x44\xce\x81\x16\xee\x47\x88\x72\x4a\x52\x83\x44\x8e\x32\x97\x62\x88\x25\x2c\x90\xfb\x10\xa2\x06\x7a\xae\x43\x88\x06\x1e\x70\x1b\x82\xe7\xcd\x0b\x97\x21\xc4\xe2\x88\x95\xcc\x38\x22\x5b\x8a\x3e\x14\x67\x88\x0b\x0f\xca\x66\x02\xe6\x8f\x48\x22\xa0\x99\xa2\x52\x6a\xda\x2e\x12\xd9\x43\xc3\x52\x21\xb9\xea\x16\xd9\xfc\xa1\x69\xa4\xa6\xf7\xe6\x4d\x16\xb6\xbb\xd4\xd0\xbc\x9b\x85\x6e\x9c\xac\x25\x3c\xf5\x2c\xe4\x86\x53\xba\xc4\x3b\xd6\x58\x49\x05\x37\x8a\x01\x6e\x05\x37\xca\x21\xed\x2e\x41\x2a\xe9\xf6\x2e\x5d\x75\x54\x86\xb2\x84\xa7\xa4\x6f\xa6\x74\x02\x4e\x87\x95\xf0\x22\x09\xb5\xd7\x33\x34\xcb\x00\x2d\x5a\x89\xb8\xcc\xce\x21\x01\x0e\xc7\xfe\x76\xf2\xde\x36\x89\x10\x71\xaa\xf4\xcc\x6c\xce\x37\xb4\x21\x33\x7a\x02\x2c\xb3\x2b\x74\x10\xdc\xe8\x3c\x70\x91\x83\xc6\x38\x6e\x72\xe8\xd9\x15\x67\x80\xa5\x2b\xcb\x00\x4b\xa7\xc7\x00\x4b\x57\xf7\x10\xa3\x00\x34\x70\x01\xa0\x47\x96\xf1\x52\x87\xfa\x4b\x86\xea\x59\xee\x71\x62\xc7\xb6\x1d\x03\x2c\x5d\x09\x58\xa3\xb2\xc4\xc9\xd1\x54\x45\x5c\x72\xc5\xf4\x2c\xb7\x39\x41\x62\xf5\x3d\x48\x74\x85\x9c\xda\x42\x8a\x3f\x88\x45\x80\x3b\xc1\xa2\x8b\x93\xa0\xcd\x63\x7f\x40\xf4\xa7\xd3\x7d\xca\x32\xa8\x73\x19\x6e\x28\x4f\xba\xf0\xa1\x0b\xc5\xc5\x7c\xbb\x1f\x5c\xce\xb7\x75\x76\x0e\x71\x7a\xbb\x00\xdb\x65\xb1\x25\x20\xbb\xbe\x0c\x10\x91\xad\x12\xac\xa9\x07\xdb\xfb\x2f\x8a\xe6\x88\x62\x50\xa6\x98\xb9\x89\x18\xb5\xef\xdb\x34\x9b\x32\x44\x22\x34\xd5\xeb\xca\xcd\x59\x50\x21\x37\x5a\x53\x3a\x32\x2a\x53\xe2\x27\x2a\x53\x1d\xaf\x2c\x61\x27\x95\xf2\x35\x7f\x33\x64\x53\x10\x0d\xd9\x74\xae\x49\xda\xbf\xb9\xeb\x6d\xa4\x8d\x9d\x13\x5a\xea\x36\x75\x3b\x0a\xea\x3f\x8e\x02\x40\x08\xde\x54\x42\x26\xbb\xb9\xd9\x5b\x4b\x79\x12\xef\x01\xfc\x71\x10\x00\xfb\x14\xca\xc0\xf0\x10\xdc\x25\x9d\x78\x88\xa5\xdb\x99\x16\x31\x0e\x6b\x97\xf2\x0c\x20\xb2\x7c\x32\x54\x5b\x72\x04\xbe\x27\x72\x57\xee\x46\x84\xe7\x26\x08\x42\x32\x7a\x75\x0b\xdd\x1e\x2b\xba\x9b\x80\x2d\xee\xa7\x60\xf3\x01\x71\x9c\x9b\xd3\xeb\xaf\x42\x2c\x2b\x4b\xfc\x8a\x62\x6e\x49\x5f\xa9\xb8\x5f\xe3\xc6\xda\x84\x68\xea\xaa\x21\x8a\xa6\x29\x97\x1c\xf3\xa4\x63\x85\x08\x8e\xba\x98\xb0\xa1\x98\xda\xdd\x83\xff\x85\xd4\xee\x43\x75\xbe\xbc\xa6\x5a\x91\xe5\xbe\xc4\xbb\x8a\xa6\x97\x78\x52\x51\xfc\xe2\x43\x13\x01\x2f\x31\xa4\xf2\x15\xb3\x0f\x0f\x19\xd4\x8b\xa1\xd6\xb5\xfe\x6a\xa8\xf5\x3d\x01\xa5\xce\xf9\x4b\x40\x29\x04\x57\xb9\x6b\x68\x30\xb7\x15\x83\x99\xbb\x7a\x3d\xb8\xe0\x09\x46\x57\x31\x99\xb9\xc3\x7b\x0f\x8b\x39\x2a\x0a\x59\x9a\x12\xe9\x3f\x4a\x5d\xa2\x59\x32\x58\x90\x0c\xf4\x89\x8c\xc1\xa5\x1e\x02\x64\x99\x8e\x61\xb7\x95\x3b\x8c\x8c\x5a\xa9\x44\x6d\x56\x0f\x5f\xd4\x60\xcf\x74\x10\x08\x6b\x85\xa3\x55\x6e\x3a\xd2\x8a\x43\x12\xa8\xa1\xf5\xbc\x06\x81\xf0\x5b\xd0\xd5\xad\x7f\x51\x66\x34\x41\x20\xac\x43\x44\x70\xf7\xdb\xa9\xc9\xcc\x4a\x04\x2c\x33\x9f\x15\x13\x58\xe5\xa6\xa8\x52\xbd\x43\x84\x43\xfb\xa5\x46\xad\x49\xb6\x65\x56\x3d\x8e\xa4\x16\xd3\xe6\x17\x12\x93\x94\x1a\x09\x54\x86\xc7\xd5\x48\x74\xad\xa3\x88\xc6\xb4\x8a\x27\x4c\x5c\x87\xdc\xdb\x44\xfb\xc5\x10\xe6\xba\x04\xb5\xac\x93\xa5\x26\x2d\xe9\x54\x4a\xc6\xcd\xda\x47\x22\x6e\x56\xe0\x49\xd6\x73\x68\x5b\xa8\x4b\x0c\xcb\xea\xd3\xd5\x4c\x39\x1e\xe7\xa8\x9e\x26\x76\x7f\x21\x7f\x7f\xf6\x04\x40\x4d\x1b\x2c\xa6\x23\x11\x01\xec\x0c\x78\x84\x58\x46\x6f\x92\xff\xc3\x2d\xaf\x2e\xb9\x2c\x6b\xde\xe6\xf2\x9d\xf5\x03\xf0\x66\x5d\xb7\xd2\x14\x06\xac\x63\xc3\x82\x05\x6b\x87\x2a\xd5\x2c\x9b\xf5\x07\x23\x93\xbb\x3f\x08\xa4\xf4\x86\xc8\x75\xa4\x2f\x13\x79\x94\x9a\x1d\x82\x13\x6e\x3c\xa8\xe6\x92\xaa\x59\xcb\xc3\x55\x5c\x3a\x90\xb5\xdf\xd4\xac\x09\x43\x14\x78\x7f\xdd\xfe\xa4\x78\xf7\x04\x6b\xaa\x2e\x49\x2c\x6b\x0a\xaa\xc5\xdc\xe7\x98\x40\xeb\x92\xbe\xb2\xb6\x8a\x5a\x36\xd4\x34\x5c\x06\x0e\x6b\x2b\x6d\xd4\x5a\x6b\xdf\x35\xc1\xd8\x8a\x01\x64\xd8\x40\x2a\x91\x2b\x41\x2f\xb4\xf7\x1f\xec\x90\xe8\x5a\x09\x63\x96\x94\xea\x36\x5f\xf2\x7d\x25\x8c\xb9\x5a\x26\x52\x19\x1d\xa1\x56\x0d\x82\x98\x4e\x6b\x25\x52\xb9\xda\x12\x60\x55\xdf\x13\x95\x88\x36\x54\x97\x9c\x96\x55\xa5\x6b\xbd\x79\x6f\xf9\xb1\x21\x10\x57\x77\xb8\x9b\xbf\xbc\xd4\x02\xd8\xb6\x21\x07\xf1\x8d\x08\x92\x6a\x59\xe3\x25\x6c\xbd\xb6\x6d\xbd\x64\x18\x0d\xca\x75\x86\xdb\x22\xd6\xbd\x96\x9b\x31\xd6\xae\xb4\x26\xe4\x74\xde\x44\xa8\x1f\x6f\xdb\x9f\x0f\x1a\x33\x8b\x5f\xe8\x83\x3e\xfc\x05\x78\x8b\x34\xc9\x41\xe2\xa0\x58\x4a\x3a\xb8\xe2\x21\x13\xef\x93\x08\x0a\xb2\xb5\x1b\x8a\x2d\x4d\x72\x96\x38\xe8\x4f\xaa\x7d\x47\x1d\xd0\x32\x59\x49\x3c\x9c\x53\xbb\x61\xd9\x52\x6e\xe7\x02\x42\x99\xc6\x4e\x5e\x2f\xb2\x3d\x43\xac\x1f\xb6\x76\x93\x1f\x67\x3f\x99\x44\x30\xd8\x2e\xe1\xe2\x4e\xfa\x10\x46\x80\x1f\x1e\xda\x75\x7e\x86\x60\xb9\xba\x06\xf9\x51\x9c\x1f\x8c\x65\xf1\xdb\x27\xdd\x68\x6f\xda\x25\x12\x27\x7e\x6b\xf8\xf4\xc1\x6f\x6e\x1f\x00\x92\x33\xc3\x71\x83\x3f\x3c\x3f\x87\x86\x5c\x49\x54\x92\xab\x44\x64\x70\x4e\x74\x2e\x4c\xaa\xef\xa1\x36\x6e\xe0\x28\x59\x54\x9e\x78\xe7\xe5\x14\x58\xc3\xa2\x21\x71\x15\x73\x58\xe4\xc4\x7a\xf1\x66\x8e\x98\xa5\x54\xd2\xc8\x45\xc3\x6c\x49\xcc\x57\x94\x08\xaa\x16\x31\x63\x62\xbd\xb2\xa3\xe9\x7e\xac\xd8\xc1\xa2\x06\xb5\x8a\x1d\x2c\x6a\x8d\xab\x4b\xa2\x2b\x75\xff\x50\xfc\x81\x2e\xf1\x30\x72\xab\x41\xa9\x57\xa3\x0c\x2a\xf6\x85\x1f\xfb\x87\x9b\x1f\xfc\xc0\x74\xa0\xce\xdd\x12\xe8\x8a\xa1\x1f\x5c\x04\x52\x8c\x02\xaa\x4b\x9e\x2b\xfa\xe2\xbd\x13\x24\x91\x6a\xa7\x78\x0d\x48\x0a\x32\x7f\x6f\xab\x0c\x72\xec\x25\xd2\x99\xdd\xaf\xd4\x25\xd2\x15\x43\x68\x2a\x57\x57\x1a\x60\x51\xb1\x65\x25\x6d\xde\xf5\x26\xec\xbe\x7d\x79\x6a\xa1\x62\xe7\x4a\xda\xab\xeb\x43\xba\x2a\x71\x4f\x1c\x6c\xd2\x3a\xee\x65\x23\xa9\xa0\x3b\x7a\xd9\x48\xf7\x50\x5a\x7d\xda\xb7\xfb\xb3\x4a\x5d\x12\x58\xdf\x75\x70\xb9\x01\x17\x32\xd7\x6e\x06\x5f\x97\xcd\x1b\x62\xc2\xe8\x38\x51\x23\x6e\xcc\xb1\x22\x29\x10\x03\xbb\x8f\xf5\x55\x62\x60\x8d\x9a\xe4\xe6\x92\x1d\xc9\x59\xa7\x4e\x0c\xdf\xe3\xb8\x10\x4b\x24\x5c\x09\xbb\x8e\x3c\x5d\xde\x3b\x49\xe4\x23\xca\xe6\xe6\xe9\x40\x84\xf4\xe5\xa9\xd7\xaa\xf0\x65\x7c\x3e\x69\x1b\x6b\x76\xad\xbc\x64\x32\x70\x41\xbc\x3b\x4d\x12\x65\x93\xa0\x29\xea\x98\x70\xbc\x49\x9c\xaf\xe6\xcc\x55\x6e\x87\xee\x58\xa6\xa8\x71\x3e\x58\xf7\x28\x57\xa9\x44\xdd\xce\xcd\x3b\x35\x83\xef\x31\xda\x80\x8e\xc6\x69\x60\x52\x82\x95\x76\xa8\x1e\x0e\xca\x68\x60\xac\xa4\xb6\xe4\x9e\xa1\x27\xaf\x05\x45\x0c\xdc\x90\x6d\x09\x3e\x66\x74\x2a\x24\x9b\xcc\x86\x34\xb4\xb0\x37\x1c\x5a\xda\x7e\x40\xf6\xab\xb6\x0f\xa7\xec\xcf\xb5\x86\x16\xbf\x99\x06\x9e\x26\x1e\xd6\x3c\x62\xf4\x6d\x91\x98\x5d\xd6\x67\x8b\x4b\x07\x61\x7d\xb4\x25\xd1\x0c\x8c\x8d\x2d\x1a\x35\xc1\xf0\x97\x3c\x63\x58\x25\x17\xbc\x90\x1b\xb7\x34\xd3\x7b\x0d\x6b\x2f\x09\x90\x15\xca\xad\x2f\xdc\x6b\x51\xbc\xf3\xa5\xec\x2a\x4b\xc4\x19\xd0\x6e\x4b\x24\x79\x71\x20\xba\xd7\x84\x0a\xa1\xa4\x0f\x41\x47\x28\x21\x9f\x73\x69\xd8\x8a\xba\x31\x0b\x5e\x11\xe3\x49\xef\xa6\x4f\x8d\x7d\xa5\x65\xb3\xa8\xc2\xb2\xf7\xd5\x31\x9a\xa6\xda\x4e\xd1\x65\x59\xb5\x1f\x81\xaa\x61\x11\xd2\x49\xd6\x08\xa7\x35\xf2\xb5\xe9\x56\xdb\xcd\x5e\xbc\xb7\x0e\x1e\xd7\xdd\x35\x9b\xe8\xae\x2f\xac\xc0\x8d\xf0\xe1\xe1\x81\x86\xec\x41\x06\xfc\xd2\x08\x03\xf2\xa4\x73\x23\xfb\x89\xae\x8d\xe6\x2d\xba\x49\x02\x31\xa9\x9f\xfa\x7d\x33\xf1\x29\xa7\xf7\x4b\xf3\x7e\x02\x43\x7b\xda\xbe\xf3\x12\xf8\xc8\x44\xe2\x91\x81\xf6\xed\x92\x4b\xca\xfb\x5a\x4b\xca\x4d\x1f\x1b\xc8\xac\x38\x5c\xa4\xf2\x7d\xa9\x25\xc8\xd8\x77\x5a\x02\xb8\xae\xb7\x62\x1d\x1c\x45\xc5\x0e\xf0\x5c\xb1\x95\x34\xbc\x6d\x99\xdd\xab\x71\xc5\x9d\x67\x0e\x1a\xde\x36\xee\x4e\x28\xad\xe1\x0c\xac\x5f\xa5\xab\x2c\x8d\xd4\x24\x9e\x22\x68\xcd\x3b\x38\x19\x76\xdb\xd6\x79\x1f\x80\xaa\x5a\xde\xf7\x86\x52\xf6\x76\x3f\x7b\x37\x67\x34\x4c\xac\x21\x1e\xe4\x2e\xec\x24\x1a\xf1\x7c\x41\x43\x22\x50\xce\x69\xdd\x4b\x33\xc1\x4d\xf7\x5a\x2d\x31\xe8\xd5\x34\x86\x43\xb6\xae\x6b\x84\xfe\xc8\x3b\x66\x68\x42\xeb\x7b\xb9\x31\x5c\x0e\xb5\x18\x04\xd1\xc6\xbe\xb0\x00\x68\xf5\x91\x21\xeb\xb7\x61\x9a\x2c\xcb\x85\x83\x53\xb4\xe4\xf1\x15\xe1\xc0\x29\x66\x94\x46\x23\xd4\xc8\x20\x8b\x46\x8e\x10\x23\x3d\x1a\xe1\xb6\x86\x6f\x34\x8f\xb5\x18\x15\xd1\xd6\x86\x5f\x0d\xba\xf0\x3a\x24\x85\xcc\x66\x86\x5c\xa3\x8e\xdb\x29\xc7\xa6\x37\x9d\x65\x6c\x12\xed\x24\xf2\xdc\xb5\x89\xab\xcc\x48\x8f\x66\xb6\xd2\xb6\x1f\xcc\x97\x85\xd8\xd5\xf6\xa5\x96\x94\xd9\xab\xc7\x5e\x9c\x97\x69\x9a\x5d\xf3\x17\x6e\x37\x59\xe8\x85\x11\xdc\xfe\x2e\x4c\xff\x02\xb8\xf6\xea\x16\xc5\xd2\x85\x6d\x5d\xb2\xc6\x2d\x55\x72\xb7\x21\x32\x03\x38\x11\x5c\x6b\x18\x9d\x46\x33\x72\xba\x8d\x34\xee\x35\x8c\x8e\xee\xc6\xde\xcf\xfe\xd0\x6e\x3c\x22\xfb\x3d\x29\x0c\xec\xcd\x3b\x59\x8c\xe6\x6e\x37\xe0\xb9\x40\x6e\x6c\xff\xa8\x18\x6d\x5f\xbf\xe7\xe0\x3c\xde\xe2\xa8\x6f\x41\xb2\x55\xb1\xe1\x07\x44\x41\x3b\xbb\x9c\x68\x89\xd6\x7f\xf0\x3a\x20\x76\xb5\x07\x47\x83\xf5\x1f\x5c\x25\xd5\x3a\xde\xbf\x84\x3c\xd8\x9e\x9b\x70\x6a\x3a\xd8\x89\xba\x5d\x83\x1e\x7d\xdd\x1c\x8c\x68\xa2\x2a\x93\x5c\xfb\x74\xf4\x80\x4a\x9b\x44\xff\xed\xf7\xd8\x83\x9d\xde\x99\x78\x4f\x43\x13\x7b\xb0\xcb\x8c\x84\x69\xdd\xdd\xcb\xcb\xc6\x94\xb6\x1b\xce\xab\xbe\x1b\x25\x20\x52\x16\x49\xf0\x50\x77\x1b\x9c\x84\xa6\x4a\xdd\x84\x0f\x29\x5a\xb4\xb9\x73\x9f\x83\x8c\x97\xd0\x44\x79\x21\x0e\x2b\x03\xd5\xb8\x6b\x6b\xe7\xea\x68\x38\xac\x36\xa9\x93\x26\x64\x53\x34\x11\x45\x1e\x63\x6a\x6f\xe5\xbd\x6d\x62\x32\xdf\x6d\x76\xde\x5b\x87\x3d\xda\x49\xc3\xf1\x45\x56\xc6\xc2\xed\x5d\xcd\xe0\xa6\xf6\x3a\x00\xfb\x72\x00\x0c\x6c\xc7\x1d\xf1\x31\xc9\x95\x9b\xeb\xad\x1f\x02\x1d\x29\x73\xe3\x65\xfc\xf2\x64\x7d\x3f\x8c\x03\x1a\xb6\xc0\x90\x58\xb0\xfd\xc0\x0b\x10\x2c\xe3\x05\x60\x67\xee\x88\x1d\x9a\x1f\xfb\xe1\x90\x2a\x65\x5c\x64\x50\x74\x3f\x18\x12\xa0\x93\xf1\xd9\xcc\x7d\xa5\xe3\x22\x53\xf4\xec\x07\x43\xda\xa3\x70\x4e\xa8\x13\x9c\x06\xfa\xe2\xd2\x9d\x22\xfe\x3a\xb9\x46\x8d\x17\xeb\x78\xbc\x86\x9b\x18\x17\x9b\x75\x8f\x08\xf4\x25\x82\xf4\x0c\x35\xf4\x80\x90\xb3\x5b\x7a\xb8\x77\xd8\x3a\xd8\xc0\x21\xb1\xee\xa9\x1e\x9d\x39\x5c\x8a\x96\xb4\x06\xf6\x18\x28\xd3\x90\x66\x18\x25\xb5\x1e\x13\x5f\x33\x4e\xef\xbb\xde\x1f\x4b\x02\x8c\x39\x6e\x02\x05\xee\xd8\xf8\x21\x53\xee\x94\x7d\x2f\xd8\x36\x8a\x01\x7a\xd7\x17\x6c\x1b\xc2\xdf\xe0\x84\x44\xc0\x8e\x76\x8c\xa5\x1c\xce\xd0\x93\x0b\x97\xa1\x25\x80\x93\x04\xbc\x76\x1b\x5a\xea\x5c\x2f\x5e\xfd\x36\x61\x1d\x87\xb6\xc9\xc0\xdd\xb3\x93\x99\x80\xcd\x09\x49\xc0\x26\xde\xbd\x0a\xcf\x03\x12\x3d\x81\xdf\x5d\xc6\x9c\xeb\x88\x13\x0e\x10\x67\xd6\x7b\x4c\xd5\x8d\xba\xf9\xc7\x8d\x68\xee\xd9\x8b\xa5\xd8\x7e\x7a\x16\x17\x8c\x8d\x93\xb6\xc6\x59\xf5\x8c\x1d\x16\xfe\xd9\x33\x59\x0a\x60\xca\x3d\x63\x87\x85\xf9\xf6\x6c\xd7\xbe\xe7\xd4\x97\xf8\x5d\x72\xce\x50\x27\xef\x45\x33\xac\x65\xf2\x7c\x56\xcb\x9c\xf1\x90\x68\x0b\x47\x08\x04\xae\x14\xda\xb1\x8c\x39\x1c\xe6\xd9\x0b\x36\x59\x78\x44\x2f\xc2\xe9\xb7\xc2\xc9\x58\x96\x54\x34\x8c\x25\xeb\x64\x73\xeb\x6d\x7f\x2c\xa0\x00\x5d\x30\x79\x17\x2b\xe9\x68\x74\xb9\x54\xa1\xe3\x87\x0a\x74\x12\x6d\x55\x1a\xf7\xbd\xd0\x81\x95\xaa\x81\xde\xf2\x50\x57\xf0\x01\x74\xc1\xc3\xfb\x4e\x39\xe2\x2c\x54\x8e\xf6\x54\xcb\xe0\xc8\xe5\xc2\xc9\x5c\x35\x9e\x6e\xe6\x36\xcd\x72\xbd\x19\x43\x80\x4b\xb9\x37\x6c\xb2\xc3\x5a\x05\xe1\xdf\xaf\x49\x46\x20\x85\x61\x34\x39\x84\x89\x43\x45\x3a\x4e\xfb\x12\x8f\x86\xdc\xb0\x37\x2c\xa3\xec\x1e\x7d\x89\x47\x59\xf7\x46\x5f\xe2\xd1\x3e\x0b\xd8\x1b\x66\x5b\x0c\x21\x9d\x63\xbd\xda\xf6\x7a\xc7\x5e\x8c\x4d\xa4\x77\xac\xb6\xe3\x4b\xe5\xb4\x2f\x29\xca\xdb\x2c\x4a\xef\x02\xce\xe8\x3a\x80\x77\xcb\x18\x4f\x87\x75\x38\x96\x39\xec\x44\x0b\xb8\xef\x4f\xbe\x05\x7d\x9d\x13\x25\x98\x6d\x7a\x9f\x94\x7d\xff\x32\x50\xde\x0f\x8e\x1e\x60\x1d\xec\x03\xc0\x5d\xaa\xc3\x44\xd3\x8e\x74\x08\x9c\x3f\x64\x3e\x06\xc3\xc3\xcb\x70\x85\x74\x00\x11\x46\xe6\x3e\xb4\xf2\xa0\xe8\xf4\x9d\xf4\xd5\x49\x19\x9c\x1a\x15\x39\xc3\x44\x87\xbb\x2d\x0c\x90\xfb\x73\x6c\xa8\x02\x85\x04\x76\x28\x57\x77\x44\xb0\x43\xb1\xb5\x23\x76\x1d\x4a\xdf\x9d\x3b\xbe\x0e\x65\xf7\x7e\x62\xe8\x75\xe0\x1e\x40\xde\x24\x78\x9a\x9f\xc0\x2f\xb0\xf3\x0a\xd5\xbe\xc2\x4a\x74\x7a\x50\x6a\xf3\x50\x4f\x4a\xa9\x07\x90\xc4\x3f\x6b\xb2\xec\xa7\xd9\x18\x45\x8a\x9e\x35\x43\x3c\xfa\xb5\x81\xa4\xfb\x0b\x23\xa9\xf3\x87\xc1\xa5\x67\x27\xe1\x32\x49\x8f\x0b\xfd\x32\x0e\xd1\x4d\xe2\xf2\x3e\x7c\xd9\xc1\xa5\x6e\x9a\x6c\x79\x1b\x1e\xfd\x65\x62\x20\xf4\x93\xd7\x5a\x0c\xe6\xc6\xd6\xd8\x2c\x6b\x6b\x44\x9d\xea\x37\xc6\x50\x24\xb6\x7e\x6b\x0c\x25\x9e\xa7\x2f\x29\xcd\x54\x7e\xa5\xdf\x86\x47\xca\xc8\x6f\x03\x39\x65\xa2\x46\x10\x75\xb4\x94\x7e\x63\xa0\x93\x43\xdc\xdb\x8a\xc8\x0f\x8f\x19\xd7\x9d\x15\xac\x2c\x1e\xd4\xed\xcf\xb6\x22\xf2\xc9\x93\xf8\x01\x4c\x3c\x1a\x11\x45\xcb\xa3\x11\x11\xb0\x1e\x8d\x88\x12\xe4\x43\x22\x6d\xf7\x85\x67\x50\xb6\x0b\xad\x68\x32\x86\x47\x2b\x9a\xcc\xdd\xeb\xf2\x0c\x2d\xf0\x62\x85\xb8\xf7\x1b\x63\xc5\x8d\x15\xe8\x84\x87\x67\xc1\x9a\xdb\x56\x06\xc0\x53\x5b\x19\x60\x71\x8b\x40\x4a\x62\x9e\x3b\xdb\x52\x12\x45\x93\x64\xd2\x72\xc1\xb9\x54\x0a\x51\x8a\x4c\x27\x71\x4c\x35\x5a\xca\x58\x5e\x76\x8e\xa7\xee\x55\x39\xcd\x6f\xbd\x1a\x2c\xe3\x11\xe8\x24\xbf\xdd\x92\x8b\xd7\xa4\x1a\x91\xd2\xf1\x63\x69\xb9\xe9\x2f\x7c\xc9\x9d\x65\x49\x5a\x63\x0b\x57\xef\xa6\xcc\x05\xeb\x38\xd4\xd4\xa0\xac\x71\x78\xef\x7a\xa0\xec\x49\x6b\x6c\x51\xe3\xd8\xb7\x69\x37\x1e\x2a\xda\xb5\xb5\xbc\x98\x3f\xd9\xd6\xb9\xef\x89\x2f\x83\xb3\xcc\x9e\xcc\x1e\xa4\x64\x57\x4c\x1d\x06\x10\x61\xc9\x1b\x06\x10\xb5\xaf\x2e\xd8\x2e\xfb\xce\x0a\xb3\x93\x0c\x04\xa9\xe8\xa6\xcf\x95\xaa\xc5\x03\x2d\x83\x63\x61\x58\xc8\x46\x58\x72\x41\xb0\x06\x46\xb9\x6c\x59\x9d\x16\x58\x83\x17\xb7\x1c\xfe\x80\xe8\x64\x90\xce\x88\x8a\xf6\x80\xbe\xc4\xa5\xbc\x3b\x5e\x12\x52\xf6\xd8\x3a\x77\x65\xe4\x63\xd7\x27\x19\x26\x98\x59\x72\x10\x59\xff\x0a\x17\x68\xa8\xcd\x8d\xc8\x31\x09\x2b\x98\x51\xdb\xf6\x38\x25\x01\x30\xc8\x43\xec\xac\x5c\xaf\x51\xcd\x7d\x32\x52\x58\xaf\x69\x2e\xa9\x4e\xa2\x76\x0f\xaf\x30\xdd\xc3\xe6\xb0\x96\x2e\xee\xb1\x6d\x3a\x7c\x61\x26\x11\xe7\x15\xc9\x45\x31\x91\xeb\x37\x6a\x86\xad\x0c\xbc\x44\xca\x6d\x83\x63\x57\x5c\xcf\x5c\xc6\x3e\x5f\x05\xf4\xd8\x5b\xf4\x25\x8e\x22\x75\xf2\xad\x97\x96\x3b\x93\xc5\xfc\x24\xb4\x5f\xec\x0b\xbc\x7a\x5b\x20\x92\xc1\x20\xd9\x59\xd8\xdf\x2a\x3c\x53\xae\x4a\xaa\xb4\x53\x89\x94\x90\xb2\xaa\x62\xbf\x75\x8a\xf6\x29\x1a\xad\x08\x34\xcd\x4a\x6c\xd5\x62\x0e\xcf\xcc\xb1\xeb\xb8\x55\x5b\xe6\x08\x2f\x5b\xf8\xa8\xf2\x44\xea\xe3\x7f\x89\xb2\x92\x61\x38\xf3\x06\x0f\xf1\x21\x91\xa2\xb4\x8c\x66\xa6\x7c\x8a\x79\xcd\x07\x98\x68\x5a\x14\x45\x51\x83\xdc\x2c\x92\x93\xd6\xd1\x70\x52\x19\x3d\x72\x2c\x91\x82\x0b\xe2\xcb\x68\x9e\xe2\x05\xb4\xe6\xdc\x31\x47\x4b\x8a\x18\x1b\x18\xce\xea\x1f\x96\xc9\xe3\x21\xf5\x60\x61\x51\x90\x1f\x08\x11\xb0\xd7\x81\x0c\x51\xac\xb1\x44\x2e\x6c\x25\xa3\xaf\x7d\x18\xeb\xec\x20\x8d\xab\xca\x80\xf7\xa5\x14\x7d\x12\x5e\x0e\xec\xf9\x98\x81\xa1\xc5\x93\x5e\xc3\x0c\xef\xd2\x74\x37\x8b\x3d\xb8\x18\xd2\x14\x48\x42\x00\xf0\x94\xfa\xd0\xb9\x02\x27\x1c\x43\xd7\x86\xc4\x80\x00\xe0\x49\xc7\x81\xfd\xc5\xd0\xbc\x31\xcc\xde\x4f\x67\xc8\x02\x01\x41\x7a\x78\x33\x39\x77\xf3\x97\xc1\xf6\x6f\x24\xf6\xc0\xaf\x12\x36\x14\x78\x16\x14\xe2\xc6\x29\x48\xe0\xca\x0c\xf0\xb6\x74\x6a\x02\x04\xbc\x53\xf0\xac\xcf\x66\xe2\xfa\x42\x26\x30\x40\x74\x9c\x32\x35\x20\x3d\x81\x74\xd7\x67\xbb\x73\xc8\xa7\x97\x79\xee\x8f\xb5\x87\xf8\x83\x37\x83\x7e\xe9\x6c\x1d\xfb\x16\x75\x57\x0d\x69\x4a\xb4\xba\x0c\x92\xc2\x9a\x53\x61\x60\xe4\x51\x53\x1a\x17\x21\xf4\xc8\x8d\x03\x13\x4f\x46\x83\x18\xc4\x28\x9b\x16\x60\x5c\xdb\xfa\x08\xec\xde\xa2\xd9\x9d\x5f\xef\x8e\x93\x32\x89\x43\xce\x2e\x1b\x25\x08\x39\x8b\x07\xb7\x25\xe4\x0b\x43\x1f\x5b\xcc\xd8\xf6\x1e\x7b\x7e\x4d\x4d\xcb\x0f\x9c\xe8\xd6\x6a\x37\xc8\x1c\xeb\xd1\xf0\x41\xf0\xb1\x07\x6f\x86\xf6\x1e\xd5\xec\x81\x2f\x47\x45\x6b\x20\x56\xb8\x19\x0f\x52\xc7\xe6\xee\xc7\x18\x4d\x11\x51\x87\x29\x4f\xbe\x7d\xec\x05\x6f\x56\xf2\xf6\x31\x2b\x09\x36\xe0\x19\xa0\x1c\x85\x88\x73\x00\xe2\x82\xf8\xe4\x8c\x04\x34\x3c\x88\x26\xe7\xf5\x82\x1d\xdb\x47\xea\x50\x45\x1d\x5e\xc9\x8a\x08\x31\x1e\xd9\x18\x08\x26\x9c\xd9\x23\xe9\xe3\xd9\xb7\xa1\x52\xde\x80\xfa\x01\xb1\xeb\x08\x72\x83\xd4\xb1\x1a\x04\xbc\x25\xbb\xed\x8f\xdd\x09\xed\x6c\x52\xe6\x5b\x12\x9f\x18\xe1\x3f\x70\xfb\xec\xcd\x6b\xee\x38\x57\xca\x6c\xf9\x0e\x7e\xba\x1d\x83\x14\x2c\x48\x6a\x13\x63\x0a\x9c\x75\x30\x6b\x4a\x45\x53\xd8\x80\xc7\xdb\xe2\x14\x3d\xb8\x9b\x3b\x86\xdd\x10\xc0\xb9\x26\xa7\xc0\xf9\xde\xfb\xe9\x44\x23\xf2\x49\x31\x73\xd3\x78\x05\x95\x2e\x96\xac\x52\xb5\x57\x8d\x97\xed\x40\x9c\x2a\xa9\xb8\xae\x48\xd3\xdf\x25\x04\x33\xae\x38\x67\x78\x95\x34\x57\x79\x41\x78\xd1\xd7\x31\x5e\x11\xec\x26\xc6\x21\x74\xad\x29\xfb\xe6\x70\x39\x00\xc7\xd0\xb5\x15\x8d\x97\x31\x48\x5e\x2f\x63\xd8\xdf\x1a\xc2\xbd\xca\x27\x19\xfb\x65\xe3\xde\x33\xae\x8a\x76\xee\xeb\x07\x59\xdd\xfb\xce\xf1\x6e\x19\x73\xd0\xf0\x63\x76\xc9\xfd\x5e\xb3\xe9\xb0\x25\x30\x09\x44\x27\x21\xd3\xc5\x70\x76\xae\x94\x6a\x26\xb2\x3a\xcd\x50\x0b\x2d\x9c\xc1\x5b\xac\x30\x0e\x9c\x01\x5b\xa9\xcd\x92\x96\x56\x0c\x9f\x41\x4b\xee\xa0\x8c\xa9\x94\xc9\x3d\x4d\x4b\x0b\x15\x9e\x41\xab\x6e\xa7\xec\x9d\x71\x60\xef\x0c\x98\x50\xf7\x07\x4e\xb4\x8d\x22\x83\x75\xeb\x20\x83\x09\x1d\x82\x0f\x39\xe3\xcb\x19\xcd\x4e\xc0\xfa\x3a\x4d\x46\xdb\xbf\x54\x52\xbd\x07\xab\xea\xb0\x3b\x4d\x5b\x2b\x6e\xbd\xed\xbe\xc3\x52\x4f\xf3\xd3\x42\xb1\x5e\xcd\x5e\x0c\xc6\x3f\xa3\x17\x19\x8a\x9f\x68\x0e\x3d\x7f\x31\xcb\xac\xa0\x11\x38\x6d\x34\xfe\x99\xb0\xe6\x41\x51\xa7\x06\x20\xa7\x2f\x61\xcd\x4b\x96\xb1\xa4\xb2\x29\x9e\xe4\x9b\xad\xfb\x5b\x6f\x63\xce\x7e\x8c\xd9\x0e\x06\x77\x66\x04\x40\x3f\x36\x58\x9a\x95\x79\x66\xac\xa7\xd5\x32\xd6\x53\x3b\x23\x25\x9b\xc7\x23\xce\xec\xcd\xf7\xc1\x1f\x84\x8e\x81\x66\x6c\x8d\xc5\x4a\x40\x87\x1b\xee\x24\x43\xad\x14\x7e\x12\x1a\x5d\x05\x28\x23\x22\x15\xdb\xc1\xbe\x88\x24\x71\x12\x02\x6d\xe4\xfb\x49\x08\x74\x47\x0f\xe4\xf2\xfa\xc6\xed\x90\xe5\x2c\x02\x47\x9b\x06\xde\x78\x18\xf3\x2c\xa2\xce\x1f\xb0\xed\x4a\xa3\x64\xa8\xed\xec\xfd\x67\x11\x75\x8c\xb2\x78\x2f\x2a\x82\xcb\x89\x00\x57\x77\xcf\x58\x42\xb3\x3d\x03\x69\xb5\x51\x13\x27\x58\x1f\x94\x26\x1b\xc5\x52\x2f\x26\x3c\x37\xef\x9c\x55\x2f\xc7\x73\x11\x28\xf1\x25\xcb\xfa\x17\x9d\x84\x2a\x82\x19\x02\xc1\xd4\x5d\x1c\x55\xf1\xeb\x7b\x33\x3c\x58\xf6\x3a\x0f\x89\xb7\x3a\xfd\xb6\xea\x10\x00\x89\x20\xeb\x3c\x82\x0f\x8c\x41\xf2\x24\x53\x4d\xdf\x60\x78\x71\x9d\x0b\x90\x44\xb6\x5d\x64\xec\x5b\xfd\x50\x70\x4e\xd2\xd3\x28\xa3\x9d\x0d\x53\xa0\x58\x32\xc9\x9b\x31\x27\x67\x3b\xf9\xc1\x32\xa6\x47\xa9\xad\x61\x23\x75\x40\xc6\x64\x3b\xd1\xcd\xcb\xd5\xaa\x1f\xbc\xf4\x00\x18\x7d\x2f\x4d\xba\xeb\x9a\x95\xad\x45\x62\x5b\x8f\x00\x9e\x9d\x80\x62\x67\x82\x60\x9b\xa2\x70\x73\x76\x2f\x14\x1f\x7e\x01\x50\x52\x4d\x17\x28\x00\x31\xe6\xda\x35\xd3\x5d\x1a\xe0\x86\x38\x6b\xfd\x96\x27\x96\x21\xe5\xb6\x93\x0c\x73\x75\xd8\xf5\x92\x0c\x93\x16\xcd\x93\x38\x6b\x1d\x97\x27\x49\x6d\x3d\xe0\x76\x1a\x67\xed\x94\x0e\x4f\xdc\x8b\x82\xe1\x2a\x06\x7f\xc3\x7c\x47\x2e\x1a\xa2\xae\x35\x25\x9d\xe3\xa2\x07\x40\x1a\x82\xca\x70\x86\xf8\xb3\x0e\x36\x66\xa7\x71\x00\xb6\xf3\x6e\x46\x00\x0f\x5b\x9d\xa7\x57\x79\xcb\x71\x88\xcd\xce\xe9\x4b\x7d\xd4\x7b\xfc\x86\xea\xdf\x79\x3a\x12\xcb\xd8\xa3\x25\x73\xa2\xb5\xb5\x4d\x9e\x27\x36\x68\x51\x78\x7a\x1d\xaf\x40\x9a\x2c\x60\x53\xe4\x29\x25\xf8\x05\xd0\xbb\x22\x4f\xa1\xe7\xbd\x59\xee\x5c\x3c\x97\x16\x4f\x1a\x22\x42\x7b\x8f\x83\x08\x6d\x23\x2b\xb8\x65\xd0\xdb\x94\xcb\x79\x61\x77\x65\x5b\x3e\xc9\xb1\xab\x58\x7b\x5e\x64\x0f\x93\x32\xc9\xb1\xab\x7f\xf1\xbc\xb0\x10\x3b\x32\xf2\xed\xea\x5d\x3f\x2f\x2c\xc4\xce\xe3\x85\x25\x5b\x5a\xbc\xb0\xcc\x36\xeb\x60\x20\x76\x05\x12\xd9\x6d\xa4\xc1\x79\x0b\x3f\x75\x6e\xac\xda\xc8\x15\xe7\x0d\xfc\xae\x33\x93\xe4\x29\x18\x9e\x44\x76\xeb\x75\x3c\x6f\x81\xb6\x6c\xca\x33\x80\x30\xca\x5b\x04\x19\xe5\xdd\x7c\x0f\xd0\x92\x00\x81\xdc\x86\x1c\x9c\xb7\x40\xdb\x0e\x56\x6d\x69\xcf\x0b\x7b\xb5\xbf\x9d\xb7\xbe\x6d\x0c\xcd\x5e\xc9\x38\x54\x2e\x4f\xd3\xe2\x19\xff\x74\x12\xa8\xad\x4f\xe8\x7c\x88\x2c\x41\x42\x39\x9f\x86\x36\xca\x80\x1e\xa2\x4c\x90\x4a\x4e\xc2\xb4\xfb\xae\xb3\xe0\xd3\x7f\x79\x12\xa6\xad\xc4\x75\x2e\x91\x71\xe8\x22\x3b\x09\x19\xea\xbb\x1d\x8c\x38\xc1\xbe\xb0\xd1\x22\xf5\x9c\x04\x0d\x29\x4a\x9e\x4b\x7c\xcc\x06\x15\x9e\x44\x6c\x2b\x4a\x9e\x13\x13\xed\xae\xef\xc5\xd1\x52\xc5\x74\x00\x20\x69\x32\x00\x45\x23\xd2\xf0\x2a\x4a\x9d\x53\x35\xdb\xfa\x00\x2d\x2b\x9a\x02\x6d\xa3\x00\xbd\xbf\x15\x68\xbf\xd5\xf2\x04\x40\x46\x75\xab\x89\x9e\x58\xb7\xb2\x16\xbb\x93\x44\xbc\x5a\x10\x4e\x52\x15\x1d\xba\x72\x4e\x13\xf1\x2a\x63\x99\x88\x57\xdb\xc2\xf9\x7a\x85\xce\xfe\xc4\x7b\xbb\x1c\x36\x52\xe3\xa1\xda\x73\xee\xc8\x24\xb7\x27\x73\xf4\xca\xfa\x4c\xcb\xab\xaf\xed\xc4\x11\x59\x34\x3b\x9f\xdb\x3e\xc6\xbc\x5c\x87\xc6\x5a\x26\xe0\x3a\xbc\x41\x8f\x41\x5e\xe6\xe2\x55\x43\xba\x0e\xcd\xcb\xa0\xeb\x3a\x04\x2d\xda\x40\xa7\x4f\xbf\xd7\xa4\x9c\x29\x0b\x4b\xa5\x8c\xd1\x1b\x13\xe3\x75\xec\x5c\x2c\xf6\x21\x28\x4c\x9b\x17\x7e\x06\x5d\x4e\x97\xb7\x94\x9b\x7d\xf5\xda\x59\x7a\x59\xaa\x57\x30\xf5\x4f\xf6\x17\xaf\x9a\x14\xae\xa0\x4d\x17\xae\x7b\xed\xbc\xbc\x5f\xb3\x3b\xef\x16\x0d\xdc\x13\x56\xae\x9d\xb5\x17\xc9\xe7\xda\x51\x52\x10\xd2\x15\xc8\xf1\xc8\xf2\xbf\x82\x41\xaf\xd9\x4f\x5e\xf3\x03\xd1\x6d\xdc\x83\xa0\x5a\x34\x0d\x07\x6c\xe8\x22\x28\x3c\x68\x8e\xbd\x96\x24\x59\x4c\x2f\x77\x99\xcf\xd7\xa3\x75\x97\xf9\x7c\x3d\x59\x75\x21\x56\x06\x4d\x9f\x57\xd4\x30\x9d\x7d\x20\xb9\x6f\xf5\x13\x2f\xdd\x4d\x76\x79\xfb\x89\xc0\x3c\x1a\x90\xed\x7f\xfa\x0b\x30\x93\x21\x21\x18\xdf\x74\x25\x83\x4a\xa9\x85\x21\x2e\x68\x1a\xbe\x88\x24\xd7\x36\x76\x25\xed\xcf\x7e\xb0\xe3\x43\x79\x58\xe2\x64\xa9\xa2\x22\x7b\xb5\xab\xa0\x70\xc9\x61\x65\xab\xbb\xb4\xd0\x99\xce\xf1\xca\x3b\xf0\xd2\x5f\xd0\xef\x3c\x6c\x75\xe5\x9d\x36\x8e\xd1\x13\xf0\x9d\x34\x61\x5e\x84\x54\x65\x4f\x92\x5c\xd9\xec\xc2\xc9\x87\x7d\x31\x10\x78\xcd\x72\x35\xd6\xd3\x85\xd9\xce\x2f\x96\x98\xd8\xa4\xf8\x25\x24\xca\x70\x2e\x6f\x85\x82\xb9\x5d\xf8\x02\x3d\x93\x76\x15\x6d\x45\xd6\xf1\x96\x69\x5a\x31\x56\x4a\xd2\xad\x5e\xea\x0c\x9e\x8d\x9b\x82\x41\x5f\xe6\x2f\x40\x4f\xbe\x88\xa1\xda\xf7\x01\x5c\xdf\xd2\x0b\xd2\x6a\xd5\x41\xe4\x0f\xe8\x31\xc3\x96\x08\x05\xd9\x5f\x1b\xf9\x5f\xed\x0e\x29\x05\xb3\x07\x77\xd9\xc6\x3d\xb0\x86\xf3\x3b\xf8\x5e\x01\x9e\x86\x5a\xe2\xbd\xe5\x6d\x1e\x65\x6c\x7a\x05\xa3\x3f\x28\x99\x38\xe8\x25\xe5\x8d\xbe\x7f\xc0\x4f\xc4\x16\x7b\x35\x49\x0d\x50\x09\xab\x0e\x1e\x26\xbc\x0c\xab\xae\xc5\x5f\x1e\x26\x9b\xc1\x2d\x69\xae\xa8\xca\x5f\x04\x55\xfb\x9a\xf4\x04\x7b\x65\xf4\x9d\xb6\x96\x6f\x91\xeb\xe4\x26\xdc\xce\xb4\xd7\x55\x5f\x9c\xdb\xd1\xe0\xe1\x73\xf0\x04\x52\x79\x28\xf9\xea\xce\x99\x55\xb0\xe9\xb9\xf6\xbb\x0e\x19\xa8\x88\x38\xaa\xae\x04\x79\x91\xbf\x49\x37\x15\x77\xf8\x56\xee\x5f\x2e\x97\x77\x2d\xa1\xcb\x79\x9d\x6f\x1f\x0e\x78\xec\x3c\x33\x94\xbb\x17\x89\x53\x1e\x5e\xe9\x4d\xd9\x0b\xd3\xed\xc0\xcb\xc6\x6d\x14\x0d\x4f\xb6\x32\xbc\xd7\xda\x46\x8d\x9d\x92\x35\x1a\x3b\xe5\xe4\x9f\xea\x32\x34\x84\xed\x4e\x87\xed\x65\x9a\x01\xd9\xea\xa9\x96\x4c\x07\x27\x51\x5e\x76\xac\x07\xaf\xd5\xf4\x25\xbb\x23\xc1\x30\x57\xa8\x97\xeb\x24\x00\xca\x71\x9f\x1c\x09\x97\x57\x5c\xa8\xca\x42\xc2\x3d\x91\xe6\x00\xbe\x2e\xa2\x8d\x64\xe4\x4b\xdc\x8a\x5e\xe7\x72\x5d\x1c\xcc\x16\xda\xcb\x1b\x83\xdd\x37\x96\xbc\x15\xcd\x8f\x77\x2d\x79\x2b\x7a\xc5\xca\x75\x11\x6b\x24\x2d\xdc\xe8\x1d\xd5\x32\x2a\x9f\x93\x45\xb0\x95\xd1\xd6\xd7\xbd\xcf\x82\xfa\x40\xb0\x91\xb3\x78\x13\x2e\xe1\xb4\x93\x70\x78\x73\xa2\x9b\x70\x1e\x57\xde\x8d\x16\x20\xf9\xdc\x68\x01\x32\x5e\xe4\x24\x43\x04\xae\x1b\xd1\x5a\x86\x7a\x23\x9c\xda\xd7\x83\xf9\x9e\xbd\xf6\x7a\x30\xdf\x4b\x91\x8f\x4a\x80\x75\x5c\x6b\xf4\x4b\x1a\x61\x63\x0c\x2f\x6e\x5d\xaf\xb5\xf8\x03\xc2\x9d\x80\x7a\xca\xcd\x43\x6b\xd7\xb3\xe3\x89\x41\xfc\x83\x7f\xdd\xa5\xb3\x44\xa0\xac\x4f\xf4\x52\x04\xf2\xbd\x22\x90\x9c\x78\xe2\xc0\x71\x65\x73\x29\x81\x26\xaa\x6b\xe2\xcc\x91\x6b\x4d\x44\xb5\xfd\x5e\x51\x8d\xbe\x90\x7a\x74\xd3\x5e\x64\x75\x32\x7e\xf2\x5a\x52\x8f\x37\xe9\x97\x6b\x49\x3d\x59\x0f\xf5\xb5\x24\x9d\xac\x5b\xf8\xd2\xa7\x67\x8a\xc5\x8b\x04\x8d\xba\x4d\x2e\xaf\x69\xf7\xa8\xdd\xf5\x1a\xf9\xef\x0f\x04\xd8\xcb\x6a\x5e\xac\xa1\x74\xcc\x89\x35\x51\xfd\xea\xa5\x82\xf9\xdf\xdb\x72\xd5\x29\x63\x1d\x81\x59\x72\x3d\x76\x34\xff\xdc\xed\xa1\x33\x6d\xfd\x5c\x95\x1d\x6d\xff\x36\xc6\x1a\xae\x73\x1b\x63\x9d\x6d\x08\x0d\x04\x4a\xbb\x0f\xbc\x87\xc9\x86\x70\x9b\x74\xbf\x35\xb9\xca\x2a\x9a\x99\x38\x5a\x5e\x84\x89\xc8\x76\x7b\xf7\xa4\x2d\x86\x3d\x5c\x9a\x0c\x9a\x87\xaa\xbf\xe8\x94\x00\x06\x52\x19\xef\x3a\x30\x0b\x84\x97\x3b\xec\x2c\x14\xd6\x57\x1f\xee\x7e\x80\x4a\xc1\xf2\xb8\xa3\x31\x3a\x70\xb9\x9b\x64\x8c\x50\xfe\x6d\x92\x00\xd5\xca\x3b\xb2\xbf\x81\xa1\x68\xfa\x48\x5f\xe3\x87\x60\x09\xdd\x26\x54\xda\x6d\xca\x38\x29\xaf\xdd\xbf\x1b\xfd\x7a\x93\x7c\xd1\x20\x93\x9b\x80\x6b\x9d\x27\x77\xe2\x04\x0b\x94\x7f\x73\x33\xb2\x4d\x7a\x33\xb2\xc5\x73\x01\x60\x05\x32\xcb\x8b\xfd\x25\x29\xf4\xdd\xde\x96\x3f\x28\x6f\x8f\xf9\x2a\x93\xab\x38\xc3\x8f\xb8\xa1\xbc\x66\x67\x9a\xed\x7f\x29\x9e\x5f\x30\xb4\xdb\xe3\xf7\xdc\x87\x5b\xee\x6c\x46\x59\x76\x93\x9b\x94\x46\x06\x7a\xdc\xc4\x5e\x6b\x56\xbb\x91\x1f\x8c\xe1\xb8\xcb\x01\x41\xf1\xbe\x04\xca\xa0\xb7\xc8\x71\x58\x5a\x37\xe2\x43\x1c\xfe\x20\xdf\x63\xd4\x18\x99\x22\xdc\xfb\xe6\x86\xe5\xb0\xeb\x60\x94\x11\xa7\xc5\x2b\x60\x91\x38\xee\xca\xd6\x8d\xa6\x7c\x57\xd7\x2e\x1f\x54\xd7\x2e\x50\xd4\x2d\x5e\xd3\xea\x92\x1a\x8a\x39\x58\xef\x25\x1c\x14\xa5\x09\x2f\x69\x4f\x5a\x18\x6e\x6e\x7b\x34\xe8\xe5\x26\x7f\x22\xf2\xc0\x6d\x54\x35\x6f\xf1\xf2\x79\x08\xe8\x26\x6d\x91\x87\x7b\x6e\x52\x12\x0d\xc3\x20\x6e\xbc\x78\x02\xad\xe7\x4e\x7a\xd7\x5d\x67\x93\xdd\x25\x87\xfe\x79\x73\xf7\x72\x2c\xfe\x20\xa5\x31\x48\xae\x49\x34\xed\xc6\x4d\xf6\x44\x0f\x4c\xde\x9d\x50\x78\x3b\x76\xeb\x76\x5c\xa4\x12\x32\x49\xc9\xbd\xdd\x71\x2c\x09\x77\x6b\x64\x84\x9b\xdd\xda\x6c\x2a\x37\x2e\x38\x6d\xaa\x37\x3b\xb7\x19\x3b\x6e\x36\xe5\xae\x54\x7c\x9b\x55\x51\x67\xd6\xed\xa5\xed\x0a\x34\x37\xf1\xcd\x26\x9e\xbc\x3d\xcf\x64\x22\x98\x7b\xbc\xfc\x40\x19\xbf\x9b\x07\x95\x6e\xac\x28\x5a\x5e\x6f\xfc\x6e\x45\xfe\xb3\xf6\xee\x5a\x24\xa3\x53\x2a\x66\x3c\xc4\x3d\x1b\x04\x7e\xe3\x77\x2b\xae\x46\xfc\x6e\x45\xca\x61\xef\x36\xea\xe2\xe6\x80\xbb\x56\xaa\x7b\xed\xe3\xb5\x48\x82\x58\x4f\xb4\x15\xdd\x27\xfe\x20\x58\xe9\x7d\x3a\x00\xf0\x42\x8a\x20\x93\xa2\xde\x27\xac\x8b\x5d\x98\xcb\xf5\x77\x92\xcb\xfb\x12\x7e\xcb\x88\xad\xce\x81\x0e\x37\x76\xf6\x1b\x87\x5b\x41\xb0\xf3\x2e\x7e\x8d\x33\xb7\xfe\x36\x89\xc8\x83\xee\xde\x31\x71\xef\x64\xc7\x2e\xa8\x5b\x33\x9d\x0b\xf7\xc6\xf5\xe1\x94\xe3\x03\xd3\x60\x7a\xe3\x03\xd3\x06\x7d\x93\x70\x51\xfb\xf2\x7d\xe3\xf8\x70\xf8\xdc\x9e\xa8\xa1\xf2\xbe\x5d\xb1\x80\x8d\xdb\x4b\x23\xf7\x8d\xdb\x4b\x83\xdd\xfd\xe8\x59\xe2\xdb\x9d\x0f\xd9\x86\xf0\x7b\xe9\x21\xbf\xd9\x87\x87\x3b\xe9\x8d\xb3\x4b\x6b\xf6\xfd\x08\x1d\xc8\x78\x14\xa6\x7c\x2f\x21\x31\x82\x47\xe8\x6c\x48\xe8\x6c\x07\x88\x5c\x7f\x8f\x10\x31\x9a\xb9\x05\x37\x1f\x10\x7f\x5c\x46\x73\xb3\x29\x5a\x22\x47\x4f\xfc\x3a\x95\xdc\x3d\x95\xd6\x6c\xed\x81\xf3\x30\x3e\x62\xa3\xa3\x73\xed\xd9\x26\x13\xe1\xdf\xdc\x13\x60\xea\xbf\xdb\x64\x3e\x12\xd9\xcb\xc6\x19\xac\x83\xd6\xac\xd1\xf8\x5e\x1b\x73\x34\x0d\xe0\xfd\x22\x5d\x4a\x65\xaf\xd3\xc5\xd4\xbd\x8b\x9f\x25\x29\xfd\xbd\x80\xc2\x3a\xb7\xb2\x9e\x95\x04\xcf\xde\xf0\x0a\x41\x5a\x0f\x81\xcf\x89\x65\xf5\x90\xfe\xc7\x8c\x80\x8f\xa1\xca\x60\xed\xd9\xbb\xb7\xef\x31\xbe\x13\xc1\xf1\x18\x86\x0c\xbb\x79\x0c\x43\x6e\xd6\x27\x63\x4d\xb1\x7d\x8c\xef\xac\xed\x27\x18\xd9\x84\x2c\xf2\xe0\x8e\xaa\xb0\x83\x87\x4c\x3d\xbd\x5b\x46\x7e\x44\x46\x7b\x82\xb7\x18\x40\x41\x4f\x10\x22\x5b\x02\x22\x36\xed\x87\x18\xe6\x5a\xf7\xd7\x08\x14\x70\x9f\x87\x0c\x3e\x9d\x9d\xe7\xc1\x1d\xa5\xb0\xf7\x98\x60\xb9\x59\x5f\xcd\xcd\x46\x01\x15\x37\xd5\xc3\x35\x89\xbd\x59\x46\xd4\x65\x3f\x7c\x22\xde\x0d\x7c\x5f\x4f\x14\x52\xd0\x12\xf1\x0c\xa0\x8c\x3f\xa4\x01\xf2\x62\x90\x27\x0a\x28\x68\x89\x38\x37\x9a\xf5\x85\xd3\x76\xcc\x44\x21\xd0\x11\x80\xba\xe5\xd7\x74\x70\xd4\x4a\x42\x04\x14\xc4\xe6\xe8\x2a\x7f\x12\x86\xe3\xee\x7b\x0c\xde\x22\x9b\xb0\x65\x6d\x97\x4f\xc2\x4c\x6c\xcf\x86\x2d\xc3\x53\x1f\xbd\x56\x8e\xde\xb0\x65\xd4\xe7\xc7\xb0\x65\x5c\x07\x4f\x42\xf8\xdc\xfd\x22\xa2\x75\xeb\x23\x93\x8b\x09\xa4\x87\x36\x1c\x8e\x21\xcc\x52\x45\x46\x7c\x41\x7c\x78\x32\x40\x3b\x1d\x59\xa0\x01\x28\x03\xb4\x14\xc5\xf9\x72\x45\x8c\xc7\xc3\x5c\xde\x3c\xf4\x64\x0c\xda\x88\xc9\x4f\x56\x57\x97\x44\xb2\xa0\x82\xec\x8c\xc9\x15\xf6\xf9\x64\x54\x09\x27\x90\x88\x67\xe3\xd2\x9e\x8c\xfa\xe0\xe4\x14\xd4\x07\xb6\xf2\xa7\x08\x1d\x1d\x14\xa1\xa3\x9d\x22\xea\x40\xcb\xbe\x67\x08\x36\xf4\x78\x39\x82\x71\x3a\x4f\x11\x0a\x5b\xc2\xe2\xa3\x07\xfa\x29\x5e\xa5\xc1\x40\x2b\xc9\x23\xa4\x41\xc3\x93\xe1\xfa\x8f\x21\xc9\xb0\xcc\xa7\x62\x59\x76\xe9\x18\x9e\xec\x12\xe4\xc6\x03\x93\xa3\x3c\xd5\xa1\xd1\x71\x25\xe4\x0e\x76\xfe\x54\x52\x58\x48\x15\xc4\x17\x75\xc3\x4b\x1e\xa3\x93\x77\x59\x20\xbe\xbc\x95\xe1\x31\x8f\xb3\x52\xc6\xa3\xf9\x01\x79\xfc\xf9\x26\x95\xd8\x1c\x16\x65\x98\xf4\x43\xb8\xb2\xce\xbb\x07\x5b\x44\x37\x30\xe8\x21\x5e\xb9\xef\x0f\xb0\xce\x8a\x9c\x86\x75\xd6\xd5\x4d\xbc\xb2\x7b\xcb\xd3\xd5\xa7\xa8\x4f\xa8\x91\x5e\xc3\x87\x58\x23\x23\x1b\x9e\xae\x0e\x05\x72\xfa\x3e\x61\x09\x96\x89\x49\xd6\xc3\xf7\x74\x94\x2b\x76\xc1\x87\x98\xe4\xbe\xcb\x40\xbd\x3f\x16\x6a\xbf\xd5\x23\x22\x75\x90\xee\xc7\x1d\xee\xe9\x1e\xc5\x71\x9c\x43\x43\xac\x70\x0c\x0d\xb1\x0e\x68\xc9\x3e\xd9\x30\xdf\x67\x68\x94\x15\x90\xb1\xa5\x46\x7a\x1c\x9a\x88\x05\x17\x49\xe8\xd0\x88\xf1\x0c\xe3\x79\x1d\xed\x92\x84\xb2\xb1\xbd\x0f\x92\xd0\xa1\x19\xe3\x19\xdb\x2e\xcb\x2f\x3b\x02\x59\xac\xef\x08\x64\xe7\xe9\xdc\x60\x82\xc6\x6d\xbd\x90\x11\x9d\x5a\x5f\xd9\xec\x1f\x63\x8c\x0c\x83\x7d\x4e\xad\xad\xd2\xe2\xa9\xb5\x55\x62\x3c\x3d\x00\xef\x38\x4f\xe3\x7e\x25\xdf\xd3\xb8\x5f\xf9\xe3\xa9\xed\x55\xa2\x3d\xd5\x43\xe5\xf1\x97\xb6\x57\x97\xc2\xa5\xed\xd5\xa5\x7a\x19\x06\x2c\x67\xbf\x34\x20\xcb\x4a\x88\x49\xf6\x76\xf7\xf2\x10\x93\x5c\xbd\xd7\xe4\xb9\x34\xbe\x4a\x9d\x97\x62\xb8\x3f\xec\x23\xfc\x00\x7d\x69\x1d\xb3\x7c\x53\x06\xb0\xeb\xa1\xcc\x90\xef\x1d\x89\x07\xf8\xf7\x36\x6c\xfb\x40\xb0\xa7\xe7\xd9\x1f\x6c\x1c\x71\x63\x93\xa3\xdf\x2a\x0a\x8f\xc7\xbd\x95\xef\x9f\xfb\x41\x09\xf0\x8b\xd7\x1f\xe8\xe5\x31\xc4\x4f\x0e\xb1\xc4\x9f\xa2\x3e\xf1\x3c\x99\x32\x60\x3d\x9e\x3b\x77\x05\x2f\x51\xa8\x6c\x7e\x8f\x49\xa2\x56\xf9\xe5\x63\x80\xaf\x44\xb2\x84\x1e\x73\xed\x3c\xc4\xf7\x64\x7b\x5b\x0b\x4b\x7c\x20\xfd\x68\x0a\x79\x88\xf4\x31\x8b\xdf\x43\x12\x6a\xaf\x4c\x7b\x26\x1b\x9c\xe8\x98\x5a\x48\x29\xae\x9d\x42\x2a\x9d\x6b\xa3\x10\x11\x4b\x6a\xd2\xf5\xf3\x78\xb6\x5b\x94\x92\xb3\xd0\x8c\xb9\x0f\x17\x1e\xea\x64\x7c\x38\xdd\x65\xf7\x08\x36\xfb\x40\xef\x83\x07\x45\x37\xd3\xc3\x61\x6e\x05\x9e\x87\xfc\x37\xfa\xfa\x1e\x82\x68\xa4\xd2\x97\xc8\x54\x80\x99\x87\x2a\x52\xa4\x8c\xf2\x3e\x28\x0e\x53\xa4\x5b\x47\xcd\xa6\x53\x36\xe8\xa8\x7c\x79\x88\x6b\x1e\xea\x3d\x95\x32\x26\x4b\x28\x61\x06\x2d\xe7\xbc\x0f\x5e\x77\xcd\x66\x3a\x97\xb0\x52\x0b\xf2\xdc\x44\x58\xd1\x6d\x3d\x71\x76\xe8\x4b\x9f\x04\x01\x17\x28\x75\x22\xab\xe8\x8b\x9d\xa4\x81\x36\x54\x71\x6a\x78\x70\x48\xf8\x35\xf4\x29\xcf\xa0\x2e\x6c\xc7\x48\x03\x48\x70\x93\x23\xde\x46\x83\x4c\x72\x3a\x1b\x02\x31\xf1\x56\xe8\x4f\x9b\x88\x1b\x09\x39\x79\x46\x45\x44\xeb\x20\x22\x06\xdb\x41\x2a\x0c\xd6\x9f\xe6\x9e\xe7\x03\x13\x07\xb2\xc7\x4c\x12\x07\x76\xa4\x81\x69\xcc\x8b\x08\x27\x59\xa0\x9a\xfd\x34\x59\x20\x24\x37\x93\x53\x68\x59\x71\x06\xa4\x64\xb7\x5b\xbe\x55\x18\x18\xbe\xdf\x09\xe1\x81\x2e\x63\xae\x83\x6b\xce\x8c\xb9\x4e\x80\x96\x64\x90\xf4\x0d\x4f\x8d\x0f\x26\xf8\x9a\x6e\xfa\xa2\x22\xe3\x67\xad\x7e\x80\x9f\xb5\x5b\xc6\xcf\x2a\x8a\x3c\xe6\x54\xed\x00\x4b\x8e\x73\xcc\x71\x26\x55\x89\x59\xd8\x5c\xd8\x8c\x66\xc1\x24\x9f\xac\xc3\x7e\xc2\x2e\x30\xd7\x36\x9f\xf5\x4b\xcd\xb2\xf9\xb6\x95\xf4\xed\xed\x5f\xb6\x0a\x6b\x53\x2f\x1c\x9d\x5a\x75\xf3\x6d\xb0\x54\xc3\xfa\x01\x3d\x74\x62\x78\xf0\x10\xc9\xac\xf8\x4d\x77\x1d\xfd\x67\x88\x9b\xb3\xba\x85\xb0\x9b\x4d\xce\x76\x07\x13\x0a\xce\x25\x1c\x14\xf3\xb4\xcd\x2a\x39\x8b\xd8\xba\x99\x31\xd3\x68\xf8\xb1\xbb\xd6\xe4\x4c\xb7\xb4\xda\x30\xf6\x03\xb9\x87\x95\x80\xbb\x69\xb4\xa2\x33\xcf\x2a\x01\x69\x93\x98\xad\xad\x7c\x02\x70\xf8\x24\xa4\xf1\x25\x06\xb4\xfd\x21\xc6\x26\x86\xe2\x8d\x0f\xe2\x81\xec\x7f\x8a\xb8\x13\xd7\x84\x8b\x80\x68\x63\x19\xff\xf4\xea\x07\x17\x56\xdf\xee\x6f\xda\xc1\x1f\xa1\x69\x77\xf6\xed\xcd\xa1\xaf\xee\xee\x60\x25\x6c\x1f\xd2\x84\xb6\x0f\x69\xc5\xf0\x63\x11\xa5\xed\x43\x9a\xe0\xfc\xb7\xc7\x00\xa7\xb6\x0f\x51\xae\xdb\x02\x26\x39\xbf\x9d\x3f\xa2\x33\xbd\x10\x12\x91\x46\x0e\xaf\xbd\x9c\xba\x1e\xe4\x41\x9e\xe7\x96\xb3\xe8\x7a\xb0\xb7\x53\x39\xcd\x32\x51\x8c\x4e\x10\xd6\x0b\x6d\x54\xf3\x74\x81\x03\x85\xa7\xb6\x1d\x19\x9e\x87\x1e\xbe\xb4\xc1\xcd\xb5\xdf\x47\x13\x8c\xcf\x53\xae\x60\x63\x27\x65\x80\x3a\xe5\x0a\x8c\x02\x27\x44\x72\x10\x27\x1c\x22\x0a\xe0\xe4\x3d\x00\x5e\x72\x20\xd0\x7a\x79\x03\x09\xed\x5c\x32\x0b\xbe\xc5\x09\xa1\xe6\x3b\x71\x42\xa8\x5f\x4f\x8e\x82\x7b\x37\xcd\x34\xfb\x70\x72\xad\x5d\x28\x8e\x88\x5f\xf3\x46\x7f\x41\xe2\x99\x37\x12\xb2\x18\x30\x0e\x43\x4c\x1a\x87\x21\x36\x6e\x8e\x17\x0a\x84\x71\x18\x72\xac\x9b\xd0\x1d\x76\xcb\x69\x1c\x86\x58\x25\xa1\x9e\x9b\xd7\xdc\x49\x86\x87\x1f\x23\x95\x4a\x61\x5e\xe9\x64\xe8\xc5\x7c\x10\x45\xa5\x30\xd2\xe8\x69\x2e\x99\x0f\xab\x34\x5b\xe6\x00\x9a\x74\x6b\x74\x06\x9b\xf3\x34\x3a\x23\xfb\x1e\x61\x9a\x9d\x7a\x72\x81\xa1\xa6\x96\x69\x74\x86\x0b\xe7\x39\xe1\x08\xb6\xe9\x91\x2f\x51\x64\x78\x06\x92\xd7\xe4\x62\xc3\xbc\x81\x53\x42\xdc\x50\xc0\x68\x64\x08\x6b\xd3\xcf\x06\x27\xcc\xa9\x7c\x28\x18\x78\x27\x0c\x74\x98\x04\x68\x18\x4d\x30\xa7\x42\x97\x6b\x7c\x6e\xae\x03\x36\xa6\x72\xa3\xf8\x9b\xca\x8d\x2e\xa0\xb9\xef\x06\xb0\x97\x1b\x99\x84\x86\x5f\xc5\x0c\xd9\x19\x41\x17\xc9\xa0\xd0\xf9\xa6\xcf\x8f\xe2\x71\x81\xb9\x84\x84\x22\xd2\x08\xb3\xd0\x8d\x33\x91\x11\xbc\x42\x6b\xbe\x9a\xba\xc4\xda\xbb\xb7\x7a\x1f\x08\x3b\x15\x55\x1e\x47\x6a\xbb\x3b\x5c\xa0\x3a\x96\xa7\xb2\x84\xbd\x61\x84\x5d\xdf\xbe\xc7\xda\x86\xe0\x82\xef\x11\x61\x26\x9d\x32\x42\x28\xcc\xef\x3d\xb0\x61\x42\x27\x2f\x37\x4e\x68\xfc\x78\x8f\xae\x72\x4e\x99\xd3\x1f\xec\x1d\xef\x92\x36\xb4\x9b\xbc\x88\x13\xd9\x3b\x51\xdf\xc3\xfb\x10\xf7\x07\xd3\x5f\xec\x81\xa3\x9a\x0b\xfe\x37\x18\x49\x05\x6c\x5c\xb7\x88\xcc\xf1\x06\xf2\xab\x52\x39\x90\x7b\x93\x16\x97\xd0\x50\x3d\x37\xfc\x06\x4e\x53\xd2\x76\x90\x69\xf9\x21\x4c\xcb\xb6\x4d\x55\xac\x58\xf8\xe2\x7b\xf0\x4c\xcb\xcb\xc5\x0e\x3a\x5e\x5e\x82\x12\xfa\x7e\x8f\x11\x0d\xf4\xbf\x49\x33\x11\x7d\x91\x6c\xd8\xcc\x3d\x2f\xb1\xb1\xde\x54\xff\x7a\x38\x1a\x55\xf9\x25\xa9\xb0\xdb\xde\xbb\xe5\x04\xeb\x60\x03\x19\x7e\xab\x57\x54\x94\x27\x1d\x6d\x8e\x37\xa1\xb0\x7f\x1d\x1d\xf2\x66\x24\x4d\x27\x24\xb3\x81\x8b\xf9\xec\x32\x64\x18\xd9\xa5\xe7\xfb\x0e\x9d\x03\xa2\x59\xea\xb4\xa4\xbe\x99\xcc\x6a\xe8\xd7\x6f\x36\xb0\xc4\xe9\xcf\xa8\x0d\x22\x01\xcf\x44\x89\xbb\xbb\x89\xe0\x6e\x53\xaf\x22\x39\x4d\x95\x63\x11\xb3\x45\xd3\xbf\xb3\x72\xdf\xa2\xac\xc8\x68\x89\x6d\xd0\x34\xf5\x9a\x0e\x18\x41\xff\x2d\x18\x61\x30\x28\xbe\x45\x26\x66\x7d\x0f\x7f\xc0\xaa\xdf\x25\x60\x14\xb3\xd9\xbd\x4b\x72\x28\x8e\x99\xfb\x1b\x94\x4b\x5f\x23\x58\xcd\xac\xf2\x56\xa9\x19\xe2\xf0\x30\x53\xf0\x83\xb6\xe6\x4e\xea\xac\xd8\xa3\x1c\x3f\x81\xaa\x9e\x1d\x7a\x09\x7f\xf0\x22\xe8\xb7\x12\xbf\xdc\xad\x8f\x8c\x97\x84\x01\xd5\xdd\x99\x5b\x82\x45\x36\x8c\xe0\x6d\x4a\x35\x0c\xc0\xdc\xc1\x5e\xcb\xfc\xea\xef\x60\xf5\xbe\xf8\x3b\x3c\xa7\xfd\x92\x27\xc6\xec\x1f\xaf\x59\xe5\xd8\x3b\xde\xe6\x16\x6e\x7d\x38\x4d\xb3\x83\x7d\x81\x29\xd0\x99\x33\xc6\x89\x22\x67\x4c\x61\xc3\x7b\x9b\x4a\x84\xef\xcd\x89\x06\xaa\x91\x2a\x8a\xab\xa7\xeb\xe7\xdf\x3f\x88\x22\x7a\xeb\xce\x13\x1d\x20\x54\x18\x09\xf1\x9a\x4a\x06\xa6\xfa\x72\xa8\x49\x8d\xe8\xc5\x71\xa2\x4b\xed\x1d\xd8\x7a\xd1\x76\xde\xe1\x92\x61\xf4\x4b\x78\x88\x66\xca\x7a\x87\xcb\xc4\xf7\xd0\x41\xf7\x3d\xe2\x34\x9b\xd9\x3b\x9c\x1a\xeb\x60\x7d\x1d\xd6\x71\x3a\x80\x79\xb0\x71\x76\xfb\xc2\x8c\x29\x0d\x9d\x78\xb4\xa4\xa1\x13\x83\xab\xbc\xc5\x4b\x13\xd4\x66\x5f\x83\x48\x87\x3f\x68\x1d\xa4\x63\x0f\x27\x7b\x6d\xf2\xbb\xe4\x86\xa4\x01\xe4\x3d\x31\x40\x0d\x3f\x56\xcc\x06\x8a\x13\x31\x5b\xaa\x26\xb5\xaf\x89\xf8\xde\x13\x31\xdb\xa9\xb9\xbc\xab\xcf\x49\xbe\x34\x51\xb8\x36\x97\xb4\x90\x8d\x5b\x7b\x89\x10\x55\x23\x7c\x97\xaa\x9f\x8d\x81\x7b\x2f\x62\x01\xb3\xef\x75\x26\x3a\xa0\x6b\xaf\x59\x30\xb3\x8f\x25\x3b\x6d\xea\xfa\x02\x75\xe9\xe5\x94\xbd\x71\xae\x28\x6a\xa0\x79\xef\x2d\xd1\x01\xd6\x8d\x4b\xdb\xf7\xd9\x15\x4c\x53\x37\xd9\x2f\x2d\x72\xd1\x95\x0b\x8f\xfb\x0a\xcc\xf7\xf6\x22\x49\x78\xc8\xe2\xc5\x15\xa2\x79\xf1\xc5\x15\x62\xce\x9a\xf7\xe1\xa4\xd8\xd7\xb7\x6c\xbd\x0f\x2e\x36\xa9\xf2\x71\x9d\xd0\xf9\x83\x3c\x2e\x95\x11\xb9\xe0\x32\x79\x5c\x32\x56\x67\x77\x96\x17\x23\x57\xc8\x17\x1e\xe3\xce\x77\x33\xde\xce\x6f\x33\xae\x12\xdf\xe3\xb1\xd8\x4c\x82\xd3\xc8\x7b\x89\x79\x2f\xb2\x6b\x8f\xbb\xaa\x3c\xf8\xf1\x72\x3a\xc8\xd3\x9b\x2f\xf6\x03\x6f\xfa\x7a\x27\xeb\xd6\x39\x31\x27\x9c\x54\xac\xdd\x40\xa6\xc2\xc1\x9f\xb8\xdb\x47\xe5\x16\xd2\x89\xab\x51\x44\x22\x44\x78\xe0\xe4\x7d\xed\x17\xd8\x38\xde\xe3\xa1\x94\x17\xe3\x82\x26\xee\x97\x23\x3d\x71\xd7\x07\x11\xae\x2a\x0e\xf1\x78\xa0\xe5\xe5\x2a\x49\x0f\xba\xbc\xaf\x88\xb0\xce\x6b\x0e\xc5\xef\xbe\xaf\xc7\xe1\x7d\xf8\x89\x32\xda\x7a\xb6\x8c\x1b\x70\x11\x4e\x3d\xdc\xee\xd7\x42\xaa\x07\xe7\x8e\x49\x46\x5c\x0f\xce\x1d\x97\xc5\x20\xeb\xc1\x6e\xcf\x56\x51\x8f\xc3\xf6\xeb\x2a\x13\xc2\x40\xf6\xff\x7a\x84\xc0\xb7\x81\x32\xc4\x18\xe9\x4b\x29\x20\xd3\x17\x21\x0c\xd8\xa2\xeb\xa1\xb5\xa1\xd3\x97\xd6\x86\x6e\x1d\xac\x0d\xc9\x76\x80\x39\xda\x97\x30\xdb\xa6\x67\xe5\x6d\x47\x98\x33\xe5\xc7\x9c\x4e\x94\x21\x88\x44\xd9\x5b\x9a\x23\x38\xd9\x67\x73\x68\x27\xaa\x38\xd2\x7e\x74\xc7\x69\xfe\x80\xc6\x62\x07\x9a\x24\x04\x22\xe2\xc7\xdc\x0d\x35\xd3\x77\x53\x86\x9d\x8a\xc4\xb8\xe3\xee\x29\xa3\x41\x75\x06\x13\x05\xda\x76\x00\x3a\x59\x47\x5e\x6f\x3b\x02\x3d\x28\x8b\x68\xda\xe4\x66\xa9\xda\x9c\x8d\x04\xd4\xce\x46\x02\xbb\x09\x2c\x92\xb8\xae\x44\x3e\x4e\x52\x93\x65\x6f\x9e\x67\x60\xc4\x54\xe0\xc2\xa9\xc7\xbe\xb5\x32\xd3\x10\x07\x9e\xbb\xa3\xc9\x81\x7d\xd5\x32\x3a\x9d\xa3\x21\x6d\x5d\x17\xa5\x59\x0c\x01\x1d\x87\xa2\xbb\x90\xe2\xf4\xe8\x4e\x13\xf1\x16\xdd\x69\x25\x81\x5d\x17\x13\x46\x51\xe0\x0a\xaf\x87\x91\x13\xce\x87\x91\x13\x8e\xc0\xc8\x89\x5d\xf6\x92\xf0\xca\x07\x1e\x97\x76\x68\x88\x24\x5d\x62\x37\x72\x42\xa2\x2e\x78\x17\xbb\x75\x08\x0c\x73\xfe\xb8\xf6\x19\x43\x4d\x3d\x0a\x1a\xad\x04\xc8\xc9\x9b\xf4\xa5\x26\x5a\x8f\xa2\x48\x09\xca\x0a\x7e\x59\x27\x14\xd9\xa5\x3b\x0f\xdc\x64\x10\x9d\x1f\x2f\xb1\x74\x85\x54\x00\x94\x48\xb8\x7b\x8a\xc0\x80\x7a\x6c\x31\x06\x0c\x10\xc6\xd9\xa5\x7e\x44\x9a\xb8\xdb\x44\x47\x70\xfe\x39\x7b\xd3\xa5\x5a\x2c\x24\x5d\x42\xaa\x68\xba\xfb\x5b\xe0\x1c\x96\x5f\xde\xd3\xbe\x6e\x15\x91\x84\xd9\xa4\xbb\x92\x39\x91\x9d\x87\x73\xdb\xf4\x0c\x89\xbe\xb6\x25\x7d\x1f\x08\xac\x13\xec\x8e\x44\x1d\x00\xa9\x4b\x31\xd4\xe9\x48\xd4\x91\xae\x3b\x6e\x61\x5b\xed\x0c\x5f\x46\xd0\x15\x1b\x40\x45\x67\xf8\xae\xa9\x8e\x72\x1f\x00\xa9\x23\x36\x0c\x86\xdf\xf1\x84\x0e\xdf\xdf\xb4\x69\x5f\x0e\x59\x18\x50\xee\x45\xfb\xf0\x76\x51\xcb\x91\x36\xe9\x6b\x08\x8f\xe5\x42\x7d\xda\x1f\x78\xa9\x65\x5e\x43\x78\x80\x79\xe0\x48\x17\xd5\x88\x2e\x49\xa6\xc6\x45\x9a\x49\x9a\x1a\xd0\x4e\x64\x5c\xb8\x39\x2a\x46\x9c\x7a\x0c\xf1\xce\xc0\x94\x63\x06\x1f\x9f\x02\xe4\x7b\xcc\x94\xce\x93\x32\x4d\x72\xad\x9d\x26\x7f\x29\x0c\xf3\x34\x5d\x52\x05\xee\x13\xd1\x6a\x00\xdf\x75\x70\x9d\x29\x7d\x63\xc4\x18\x07\x1f\x70\xa0\x25\xc8\xec\xaf\x7d\xa5\x07\x1f\x13\x62\x59\x45\x24\xd6\x0d\xae\x21\xad\xc7\x92\x57\x52\x90\x8b\x2e\x79\xc5\xc4\xb7\xf5\x20\xc2\x12\x75\xb4\x1e\x4b\x76\xe9\x7b\xd5\x92\x00\x6f\xec\x6f\x2f\xea\xf8\xfe\xa6\x6c\xc7\x0f\x7d\xf9\x2d\x66\xd4\x21\x70\x5c\xd6\x28\xbd\x13\x9d\x39\x9c\xf0\x7b\xe9\xb2\x45\xbc\x20\xc1\x0c\x59\xd0\x12\x61\x3a\x41\x2b\xf5\x30\x20\xd3\x76\x08\xc8\x44\xa5\xa8\x07\x01\x99\x68\xca\xf5\xb8\xb9\x59\x52\x98\x6f\xfc\x9a\xbb\x3e\x30\xbb\xf8\x49\x90\x57\x87\x7d\xdd\xb4\xcf\x58\xb8\x7c\x73\x6c\x18\x26\xef\x85\xd3\x7b\x63\x81\x81\xdb\x08\x82\xc4\xf2\x88\x43\xea\x1b\x77\x39\x64\xb4\x8f\x88\xf3\x03\xee\xb7\x14\xd0\xe7\xe4\x3d\x00\x3d\x5c\x30\x2a\xd0\x8f\x88\x03\xb8\x07\x20\x0e\xa8\xd7\x1c\x7a\x9b\x53\x90\x43\xaf\xf9\xc3\xc4\x18\x9d\xe9\x79\x0a\x11\x1f\xcf\x08\xd4\x96\x93\x19\xbb\xbe\x0a\xdb\xad\x87\xd7\x75\x3a\x0e\x6e\x84\xaa\x2e\x1e\x2c\x26\x85\x60\xfa\x7a\x60\x31\x31\x11\x71\x3d\x0c\x38\x49\x92\xf4\x54\x13\xb6\xda\x0b\x64\x05\x88\x5f\x20\x2b\xa0\xe1\x15\x32\xd0\xf0\x72\xca\x4a\xfc\xbf\x18\xca\x0a\x10\x93\x3f\xaf\x88\x12\xae\x24\xc0\x95\x5c\x8f\x17\x43\x59\xb3\x4e\xa7\x8e\x65\x74\x4c\x61\x7d\x31\x94\x6d\x18\x38\xe3\x56\x98\x23\xae\xea\x2c\xd2\x1b\x92\x52\x8d\x2e\x80\x97\x09\x96\xc8\x96\xd8\xd4\xd1\xb2\x6a\x38\x1c\x40\xa7\xcc\x31\xab\x61\x39\x51\xbf\x52\x86\x28\xe1\x72\xe1\x00\x68\xe6\x34\x70\x3b\x01\x21\xec\x35\x1c\x66\x49\xa4\xe7\xc0\x55\x05\x1c\x96\xa8\x81\xab\x0a\x70\xa4\xd7\xb0\x64\x31\x73\x7a\xd6\xb0\x64\xb1\x8e\x10\x5b\x03\xb6\x17\x93\x59\xd7\x40\x6a\xde\xba\x2b\x61\x70\x2e\xbe\xc7\x63\x0e\x8f\x0c\x4b\x18\xeb\xe8\x83\x35\x60\x86\x91\x79\x84\x20\xd4\x40\x1a\x5c\x4a\x7c\x1b\x70\x48\x64\xeb\x54\xde\x03\x75\x10\xbd\xf4\x15\xbc\xfe\x30\xf8\x03\x79\xce\x86\x0d\x91\x60\x0c\x34\x86\x80\xb1\x23\x5b\x7e\xf8\xd8\xfa\x02\xb7\xd0\x1b\x90\xc0\xf4\x5a\x2c\x25\x80\x00\xa1\x0a\xd8\x11\x7f\x09\x42\x48\x58\x22\x55\xe2\xd8\x48\x0d\x24\xfe\xed\x0e\x81\xcc\xbf\xc8\xc0\x35\x44\x4c\xa0\x6c\xf9\x81\xd4\xbf\xdd\x89\x8a\xb8\x45\x9a\xf5\xd1\xd7\x10\x36\x42\xf2\xd4\x94\x1f\x27\x82\x07\x90\x54\x02\xf1\x25\x55\x5c\x24\x6c\xb2\x6c\xeb\x21\x09\x04\x0d\x25\x8e\x68\x21\x2e\x05\x4e\x3c\xb7\xb1\x1f\x26\x95\x2c\x13\x49\x2d\x22\xb5\xe7\x20\x46\x85\x8c\xb9\xd5\x21\x9b\xfe\x97\xcc\xe6\x35\x78\xb5\x37\x4b\x34\x64\x2c\xc3\xcd\xf7\x40\xd1\xfd\x40\x4f\x0d\x90\x66\x49\x87\x11\x64\xbc\x36\xc5\x3a\x37\xed\x30\xcc\x2c\x85\x58\x47\xe0\xac\x23\x2a\xe8\x8b\x04\x34\x05\x37\x4d\x0d\x05\x0b\x53\xb3\xac\xe6\x0a\x2a\x0a\x9a\xab\xa8\x28\xc4\x73\x0b\x74\x71\xbd\xb3\x5a\x42\xc1\x5e\x28\x0d\x16\x71\x64\x0f\x5a\x2c\xc5\x51\xc1\xba\x1b\x2d\x63\x93\xae\x80\x8a\x17\x09\x77\x48\x0d\x78\x91\x3a\x37\x05\xd4\x50\x41\x98\xb8\x40\x70\xaa\xcd\x2e\x08\x30\x51\x82\x0d\xd5\x63\x6c\x12\x4f\x45\xb5\x8e\x5f\x05\x83\xd4\x50\xd1\xfe\x8b\x2d\x10\x30\x21\x05\x71\x09\x01\x6e\xa4\x1a\x08\x45\xc1\x65\x51\x03\xa9\x6e\x08\x92\xad\xa1\x9a\xdc\x58\xde\x80\x7d\x08\xbb\x43\x0d\xcd\x09\x06\x12\xc2\x52\xf0\x8f\xd4\xd0\x30\xe4\x55\x3e\xc6\x0b\x85\xc5\xb5\x06\x0f\xc7\xb8\xec\xb9\x80\x20\xcb\x3f\x1a\x73\x5d\x2c\x6f\xa3\x9e\x1d\x08\xa9\x3f\x10\x2b\x1f\xfd\xf8\x71\x2e\x7c\x00\x54\x44\xba\x60\xe0\x09\x5b\x7d\xe8\xea\x0c\xae\xa0\x8e\xad\x1c\x81\x25\x74\x23\x3e\x5c\x72\x5d\x1b\x89\x83\xe8\x76\x5e\x7c\xd0\xa2\x08\x9a\xfa\xb6\xe0\xfb\xbd\xd6\x89\xfd\x8b\xce\x42\x67\xb6\x0b\x0a\x93\x39\x40\x14\xd2\x6b\x18\xe4\x4c\x73\x09\xee\xe0\x13\x17\xed\x0e\x3e\x91\x16\x0c\x3e\x49\xfe\x50\x4c\x79\xc0\xa8\xcc\x83\x73\x48\x18\x9e\x93\xe1\xaa\xe4\x1a\x3c\x28\x33\x76\x2f\xb8\x1c\x92\xb5\x04\xd8\x09\xf7\xb2\x4e\x32\xde\xd5\x60\x5e\x9c\x43\x12\xdd\x91\x28\x4e\xc9\x0e\x3e\x71\xc1\xee\xe0\x13\x27\xe5\x14\x32\x6b\x41\x72\xc9\xf7\xba\x10\x24\x25\x32\xde\x35\x97\xfe\x69\x50\x8c\xb8\x3f\xa1\x31\x01\x3e\x99\xc5\xe4\x07\xa2\xce\xe5\x75\x8a\x3a\x3f\xd8\x50\x51\xeb\xd2\xcf\xea\x8a\xdf\xc9\xef\xe4\x35\x5c\x76\xde\x5c\xda\x97\x88\x94\xe6\x76\x08\x8a\x6c\xce\x10\x94\xea\xae\x75\x71\xed\x05\x7a\x6d\xb8\xb6\xb8\xe2\x83\x23\x11\x7a\x43\x50\x52\xb6\x31\x83\x68\x76\x37\xdb\x21\xeb\x37\x9e\x6b\xb0\x17\x9d\xb3\x4e\x31\x11\x29\x79\xb8\x48\x6e\x23\x65\xe4\x6a\xdc\x58\x70\xb8\x90\x6f\x4f\x2c\x22\x6b\x85\x7b\xfb\x6c\x68\x78\x67\xcf\x93\x97\xdf\x1c\x0e\x70\xba\x6e\x0e\x8e\x0d\x9b\x1a\xbc\x07\xac\x5b\x52\xb5\x3e\xfe\x63\x69\xe5\xde\x94\xca\x64\xdd\x9c\xb0\x94\x08\x6e\x2f\x77\x10\x43\xfa\xc8\x9a\x6b\xd4\xe3\xc9\xcd\x85\x4c\x8a\xbc\x78\xc8\x24\x1f\x6f\xb7\x70\xa5\x3c\xba\x46\xdd\xda\x1f\xad\x72\x72\x0b\x8c\x4f\xf1\x70\x26\x30\x3e\x85\xea\xa6\xcc\x35\x04\x55\x4d\x27\x2c\xd1\xac\x24\x51\xe4\x95\x04\x55\x66\xa0\xf7\xaa\xca\x6d\x96\x28\x56\x36\x7d\xcd\x1d\x31\xe4\x27\xdd\x5a\x00\x33\xbd\x6a\xa3\x7d\xa9\xbe\x86\xe9\x3d\x1c\xf2\x38\xac\x58\xf1\x70\xdc\xaf\x51\x44\xb2\x0e\xec\x55\xf1\x10\x09\x4b\x6c\x2b\x0a\x94\x81\x23\x37\x5b\x7e\xe0\xc8\x8d\x62\x79\x58\xe2\x59\x51\x54\x0e\x4b\x3c\x2b\x55\x1e\x82\x9f\x2b\x6e\x2e\xbe\xe4\xb3\x52\x5d\x92\xaf\xa9\x04\x5d\x46\xaf\x27\x0f\x6c\xe9\xd1\xdf\x26\x50\x93\x1f\xfc\xda\x63\x7f\x0b\xbe\xb8\x04\xb4\xa2\x61\x21\x72\x94\x27\x25\x96\x54\x44\xe2\x4a\xe2\x3b\x7a\x6f\x67\xa0\xa8\xb5\xb3\x52\x5e\x02\x17\xab\x31\x72\x65\x3a\xa4\x12\xb9\x27\x1d\x8a\x8b\x41\x6b\x9d\xaf\xf1\x49\xc0\xea\xa2\xb1\x32\xd9\xb2\xd6\x2b\xeb\x6b\xbd\x02\x32\xd2\xc9\x38\xad\x11\xf9\x47\x91\x27\x46\xe5\x02\xbe\x8d\x84\x4e\xb2\x08\x63\xe4\x80\xbe\xed\x44\x44\x01\xdb\xe1\x26\x27\x8d\x1c\x11\xe9\x47\xf3\x4a\x8c\x6e\xbc\x96\xd9\x78\xc5\x42\x34\xc5\xfa\x7e\xd8\x3c\x39\xf3\x00\x63\x81\x91\xc6\xc4\x51\x2a\x24\xb8\x98\x5c\x8a\x40\x91\x24\x46\x7a\x4b\x9c\x1d\xb6\x37\x9c\x60\xd0\x58\x4c\x5e\x40\x3c\x6c\x47\x59\x60\xff\x82\x51\xd2\xa1\x71\xed\x38\x17\xb5\xd5\x98\xb6\xe1\x80\x32\xb6\x2c\x3f\xce\x9b\x3b\x50\x26\xe9\x3b\x5c\x2f\x2e\xe9\xa7\x6d\x20\x32\x0e\xff\x6c\x1d\x34\x29\x56\x5a\xcc\x08\xce\x6c\x36\x31\x23\x38\x47\xdf\x73\xfd\xaa\xc5\x5b\x83\x37\x83\xcf\xc0\xc3\x18\xb9\x15\x13\x61\x24\x16\x63\x33\x78\x4d\xd8\x6c\xb2\xc8\xed\x82\xc0\x5e\x3c\xbe\x4f\x71\x91\x0e\xf1\x3c\x35\x16\x1c\x96\xc9\xf7\x9e\xde\xa7\xc8\x71\x96\xdd\x36\xc7\x59\x58\xe3\x91\x8b\xca\x09\x0d\xa9\x91\x8b\xca\x09\xff\xa9\x91\x83\xbe\xc1\x91\x7a\x34\x87\xd6\xab\x16\x72\x00\xe0\x9c\x6f\x90\x4a\xb1\x15\x05\x69\x0a\xfb\x50\x55\x6a\x8f\xde\x94\x34\xac\x34\x59\xb2\x80\x56\x65\x41\x34\xca\x3d\x08\x44\xf8\xd7\xc8\x89\x9d\x28\xe6\x31\xfe\xa4\x5d\x07\x4e\x8c\x8e\x13\x71\x67\x11\x8b\x5f\x23\x07\x78\x83\x33\x48\x6a\xbe\xb8\xeb\xe0\xc2\x42\xe9\x8a\xdc\x34\xce\xd9\xa5\x1a\x49\xce\x17\x85\x07\x6f\x56\xd8\xfd\x62\x22\x47\xf5\x89\x5e\x90\x84\xe2\x10\xf5\x66\x59\x9f\x9b\xc6\x83\x14\xd2\x85\xf3\x2b\xef\x69\x8d\x9e\xf3\x25\xd6\xa5\xc6\x8e\x61\xdd\x65\xeb\xcd\x49\x2e\x31\x0f\x15\x71\x72\x60\xfd\x2c\x67\xa3\xec\x90\x18\x9e\x41\x36\x0e\xa9\x3b\x3c\x1b\x65\xf7\x73\x78\x06\xd6\xd8\xa8\xd7\x64\x26\xa9\x6c\xc8\x2e\x19\xab\x89\xfd\x1c\x2b\xd2\x0d\x07\xbe\x16\x86\xe8\x80\xf1\x21\xdc\x70\xca\x70\x8d\x12\x48\xad\x0f\x87\x97\x01\xec\xbb\x94\x00\xce\xe3\xbd\x87\xcb\xed\xf4\xac\x3b\x6c\x34\x62\x25\xaa\x1a\xdb\x22\xd2\x88\x9a\x64\x3c\xb1\x9c\xcb\x27\x3c\xf4\x53\xac\x43\x28\xa1\x64\x62\x42\xbe\xfd\xad\x0b\xd7\x6f\x31\x42\x23\x93\x45\x0e\xfd\x14\x19\xa7\x87\x7e\x90\x69\xa2\x5e\xb0\xe0\x7b\x6c\xd0\xf0\xf8\x78\xc9\x23\xe9\x17\xc9\x43\xf5\x3a\x7a\x00\x88\x4d\x21\x5e\xb8\xee\xe5\x8b\xe6\xd8\x13\x5d\x97\x81\x07\xc0\xe0\xe5\x96\x87\xef\x4d\x35\x65\x9b\xc2\xe6\xb7\x92\x0f\xf5\x91\x32\x8c\x23\xaf\x11\x5f\x58\x96\x56\x6f\x4d\x20\x42\x7d\x8b\x3b\xa0\x46\xe2\xf0\xaa\xf5\x1a\x6f\x73\xfc\xd0\x2c\xd7\x7d\x6b\x5e\x88\x5e\xaa\x20\xb9\xdc\x82\xca\x70\x6e\x51\x6a\x6f\xa2\x94\xe1\xdf\x06\x4c\x58\x36\x8f\x99\x75\x38\xa5\xe7\x04\x7a\xc0\xc8\x76\x10\x3d\x34\x77\xc4\x47\x07\x0a\x80\x3e\xde\x4d\xe3\x7b\x01\x95\x47\x20\x84\xa8\x9c\xc7\xc7\xfc\x52\xcc\xdf\x63\x26\x30\x3a\x7e\x04\xc8\xf7\xb7\x57\xb6\x50\x46\x8f\xc9\x8e\x6c\x1f\x24\x92\x81\x91\x59\x57\x33\x62\xe4\x52\xc9\xee\x4c\x71\xdf\x51\x97\xc8\xa7\x97\xdc\x83\x8a\xb9\x6f\xbc\x59\xe5\x25\x38\x54\xad\x6a\x11\xb9\xa1\x3b\x04\x6e\x4b\x48\xf2\xcd\x17\x8b\x38\xf2\x64\x24\x3f\x49\x97\xba\x4c\x69\xe7\x0c\x92\xd2\x4e\x0b\x54\x34\xb6\xd6\x59\xe6\xa0\x90\x96\xb7\x48\x9c\xad\x56\xc7\x88\x2f\x4c\x73\x67\xc4\x17\xa6\xc5\x32\xbe\x8e\xd8\xbe\x84\xdf\xf6\xa7\xf7\x8b\x50\xc6\x32\xcb\x4e\x9e\xf0\x91\x69\x9c\x4b\x87\xf0\xfb\x1e\x23\x45\xf1\x3d\x2e\x07\xa8\x34\x1d\x5e\x82\xd3\x29\x73\x00\x0b\xfc\x24\xa2\x77\x39\xbd\x55\x13\x3e\x35\xcd\xd5\x09\x9f\x1a\x99\xbe\x6b\x32\x97\xef\x97\x97\x44\xd7\x74\x68\xbe\xb7\x93\x97\x06\x68\x98\x3b\x11\xc8\x4c\x51\x53\xf0\xc2\x14\x80\xe5\x38\xb0\x96\xc4\x84\x38\xc2\x41\x84\x9a\xbc\x10\x3c\x39\xa2\x08\xb4\xac\x84\x64\x3c\x2d\x58\x4a\x11\x63\x76\xb2\x8c\x31\x3b\x5b\xc7\x4b\xc3\x87\x3f\x88\x32\x20\xc2\x1b\x95\x87\xb5\xb8\x75\x60\x40\x91\xc9\x60\x1a\xe8\x22\x11\x74\xbb\x7b\xc6\x1b\x55\x35\x09\x26\x84\x0a\x4e\xf6\xd5\x84\x54\x91\xb9\xd4\xa9\x26\x42\x6b\xb8\x7e\xb0\x26\xd2\xce\xa5\x64\x0f\x18\xe1\xf7\x7b\x4c\xa6\xd9\x86\x80\x5b\x8c\x27\x1c\x01\xce\x56\x22\x92\xdb\x36\xb9\xba\x3b\xf9\x5e\xb7\x96\xb3\x95\x89\x61\x10\x20\xb2\xd1\x71\x46\xab\x26\x92\xce\x45\x47\x40\xd2\xb9\xb4\xeb\x08\x9b\x75\xf0\xcb\x40\x49\x89\xbc\xbf\x49\x64\x23\x84\x24\x61\xcb\x38\x29\xaa\xef\x81\xad\xfa\x5e\xd8\x84\x07\x94\xb2\xd2\x92\xde\x2e\x27\x93\xc4\x74\xc9\xf6\x8b\x58\xa4\x5f\x1d\x5c\x62\xbd\x88\x44\xbf\x15\x4e\xbf\x05\x4e\xdb\x2f\xce\x31\x53\xa6\xe3\x6b\xf7\xf5\x68\x8b\x03\x38\xed\x2c\xba\x4d\x12\xe9\xe1\x06\x1a\x46\xaa\x58\xd4\xa3\x95\x10\xc1\x1c\x25\x5e\xa9\xe6\x28\x09\xae\x69\x08\x32\xa9\x6a\xfa\x41\x68\x4a\x64\x81\x1b\xce\x31\xb9\x45\x54\xd1\x13\xc7\x87\x87\x1f\x90\x10\x6e\x4f\xfd\x92\x4c\xa2\xd2\x59\x5a\x92\x49\x24\xe6\xb6\xa6\x06\x40\xc9\xf7\x98\x83\x9b\xf5\x05\x0e\x20\x1a\xe6\x7e\xc9\x60\xdf\xdd\x2d\x2e\x1a\xa6\xf6\xfd\x03\x90\x4a\x4f\x4b\x34\x69\x5c\x13\x57\x53\x03\x50\x47\x89\x38\x52\xdd\x97\xd3\x92\x47\x62\xb3\x12\xde\xad\x21\xe1\x74\xc8\xdd\x9e\x97\xc4\x11\x9b\xa8\xc3\xd3\xd5\x5c\x99\x1d\xa8\x5d\x5c\x78\xb7\x46\xb2\x3e\x68\x14\x13\x78\xb7\x1a\xc2\x5e\xea\x3a\x26\x00\xce\x13\x3c\x24\x02\xaa\xa9\x63\x59\xad\x36\x04\xa4\xce\x2c\xae\x2e\xf5\xeb\xd4\xf1\x09\x48\xbd\xb8\xbd\x86\x40\x0c\x81\x06\x13\x44\xec\x34\xa7\x63\x68\xb8\x66\x30\xb8\xbd\x9a\x6b\x17\xb7\xd7\x10\x20\xa2\x77\x14\xfc\x13\xd1\x3b\x4d\xee\x30\x9c\x6f\xfa\x1d\x62\xd1\xf6\xc5\xe2\xd7\x7c\x6d\x08\xb8\x8d\x41\x0b\x12\x15\xee\x31\xce\x95\xd7\x44\x98\x4f\x73\xce\x4f\x69\x81\x0e\x4f\x0c\xc5\xc8\x7a\xe9\xc4\x5d\xe1\x74\x9e\xb8\x60\xc4\xde\xa9\x1b\x08\xa0\x4e\xb1\x0d\xe6\x4f\xb1\xed\x7b\xc8\x42\x18\x4e\xd8\x89\x33\x78\xe2\x81\x71\x40\xa7\x03\x12\x06\xe9\xd7\x3a\xc0\x2c\x32\x2e\xec\xed\x22\xec\xc2\x75\x65\xfb\x97\x17\xd3\x4b\xe4\x97\x0d\x01\xf4\x85\xbb\x41\x7a\xbc\x71\x31\x54\x3e\x40\x76\xe9\x5c\x26\x5d\xd3\x8d\x93\xc4\x45\x7b\x63\xb9\x77\x3a\x75\x82\x39\x9d\x46\x13\x23\x4b\xa6\x9b\x55\x51\xad\xdf\xa8\x43\xc7\x37\x56\x7c\x17\xfc\xad\xd6\xc4\x08\xc8\x56\x62\x58\x44\x22\x5b\x89\x82\x61\xd2\x09\x26\xb3\xbb\x89\x8d\xab\xb6\x03\xd0\x62\xe8\x56\xa1\xe5\x5b\x33\x97\x60\x7e\x49\x66\x04\x1e\x7e\x6c\xea\x92\x66\x99\x01\xb8\xc4\x1f\x9c\x24\xa2\xf1\x71\x29\xdb\x10\x40\xcb\xdd\x1f\x80\x96\xc6\x1f\xbc\x8d\xae\x64\x6e\xe4\xd6\x88\x9d\x1e\x3c\x3b\xdd\xf6\x01\xda\x85\xf9\xe0\x79\x70\xd1\x3d\xde\xb0\x2c\x56\x1e\x3c\x3b\xd2\xd9\x64\xce\x9c\x63\x9d\x66\xd8\xa2\x92\x37\x44\x72\x23\x75\x4d\x13\x42\x6b\x7e\x00\xff\x95\x0d\x4c\x46\x20\xf5\x4f\xaf\xae\x1c\x56\x5a\xca\x7a\x94\x27\x70\xba\xc8\x20\x8c\x34\xc5\x3b\xc3\x99\x0c\xa1\xf9\x1e\x17\x06\x0a\x46\x9a\x40\x27\x95\xbe\x40\x27\xe3\x7f\x39\xf2\x68\xfb\x3a\xce\x04\xe2\x95\x26\xac\x83\xe3\xac\xf9\x5e\xf4\xd2\xfe\x8b\x37\xc7\xe5\x4e\xf8\x50\xd5\xec\x95\xf0\x96\xe9\x0a\x49\x3b\x09\xf0\xfe\xe1\x96\x66\x6d\xca\x7d\x1f\x98\xb2\xfe\x2c\xa8\x3c\x7b\x5d\x01\x37\x5d\xd7\x7c\xe0\x93\x41\xd4\xcd\xc7\xb9\x10\xc0\xf2\xcd\x4b\xf6\x19\xc4\xe1\xd7\xcc\x35\xdc\x1c\x29\xaf\x59\x17\x16\x2b\x21\x63\x77\x21\x9a\xb0\x66\x5c\x58\x5a\x6c\x32\x46\x18\x15\xda\xcc\x8d\xdc\x6a\x5e\x39\x24\xea\xf0\x2d\x37\x72\x6b\x2b\xcb\xdc\xc8\xad\x92\x94\x97\xa8\x33\x54\x80\x73\x10\x1e\x60\x23\xb0\x38\xee\xfa\x38\x4c\x98\xa8\x1c\x70\x92\x08\x33\x09\x51\x54\x98\xb3\x96\x1a\x64\xb7\x1c\x03\xdf\x7e\xe9\x3e\xcd\x9a\x71\x10\x64\x33\x66\x1c\x8e\x24\xd5\x1c\x2b\x0d\x77\xca\x50\x49\xb0\x0c\xb0\xc1\x0e\x4f\x00\x01\xd8\x6d\xd2\x01\xd8\x08\xb0\xbb\x3e\xc8\x0b\x02\x25\xf2\x18\x28\x8e\x2e\x4e\xd7\xd7\xcc\xd5\x96\x9c\x9c\xaf\xd9\x0b\x0f\x76\x43\xa6\x5a\x41\x98\xcc\xe4\x5c\xd3\xca\x97\x93\x80\xd2\x50\x72\x9a\x6d\x08\x40\x91\xb8\x73\xda\xe4\x03\x74\x4b\x28\x1b\xee\x8f\x79\xc7\x3e\x3b\xe4\x64\x54\x5e\xb1\x96\xb0\xfa\x83\x48\xf6\x8b\x05\xab\x72\x6c\xc6\x4d\x16\x1d\x0f\x6e\x32\xb2\x18\xd4\x9c\x05\x95\x31\x70\x16\x4a\xe5\x20\x73\xfe\xc9\x58\x9d\xcc\xf9\xa7\x2e\x91\x2c\xb1\x69\xa8\xb8\xe4\x42\xe2\x22\x56\x5b\xe6\x9a\x27\x1d\x80\xd9\x73\x51\x0e\xdf\x73\x51\xd5\xf7\x38\xb7\xaa\xdf\x0e\xda\x01\x7e\xae\xce\xde\x32\x54\xd6\xca\xd3\xed\x0c\xff\x90\x94\x51\x04\x08\x1c\xe9\xdb\x72\x25\xe8\xdb\x82\x45\xe6\x8a\x33\xc6\xc1\x70\x37\x83\x51\x70\x19\x6f\x96\x1a\x47\xae\x78\xdb\xfe\x17\x61\x67\x72\x36\x3d\x8b\x03\xc0\x54\x26\x04\xdb\x2c\x82\xcb\x9f\x8b\x0d\x76\xfe\x21\xcc\xd3\x55\xfa\xce\xef\x0d\x77\xb3\x08\x10\x42\x68\xe5\x98\x57\x94\x59\xca\x66\x6b\x37\x24\x23\x67\xbb\x92\xa7\x01\xf7\x89\x5e\xc9\xcd\xe0\x73\xa8\xa2\xb0\xf2\x69\x51\xc9\xd3\xa0\x2c\xb7\x76\x5d\x29\xb8\x5d\x2a\x49\xb3\x71\xab\xe8\x35\xd4\x25\xb8\x46\x21\xd5\x86\x64\x54\xd5\x54\x6e\x73\xa0\x6d\xe3\x7a\xa9\x78\x4b\x69\xe3\x54\xf1\xa1\xd6\x2c\xa1\x86\x8b\xc7\xd0\x21\x78\x96\x91\x4f\x3a\x72\xa0\xaa\x0c\xfb\x41\x2a\x27\x13\x5c\x75\xa1\x1e\x0e\x2c\x56\x30\x37\xdd\xa3\x3d\xf2\x43\xef\x63\x27\xa4\x1b\x74\xb3\x8c\x05\xbc\xbb\xa3\xa4\xe6\x80\x92\xd6\xa1\xce\x25\x6c\xae\xfe\x07\xea\x5e\x87\xde\x6d\x88\xd1\x2b\x0a\xab\x50\x36\x54\x87\x9a\x16\xae\xb1\xaa\xc6\x8a\xdb\xaa\x4e\xe3\x8f\xe4\x07\xca\x33\xe8\x72\x25\x59\x93\xda\x98\x3a\x51\x9b\x72\x7f\xd6\x99\x6a\x49\x1b\xe8\x2d\xed\xd4\xa7\x5b\x39\xfc\x60\xad\x9c\x89\xfa\xaa\x66\x8b\x04\xd1\xbe\xb8\xca\x8a\x40\x29\xbe\x65\x52\xa9\xad\x82\x05\xae\xe9\x37\xed\x51\xbe\x81\xd0\xd5\xcd\xc4\x4d\x70\x90\xf5\x16\xe1\xe9\xea\x06\x5c\xd8\x83\x7a\x8b\x77\xfe\x2e\x4c\x7f\x2a\x51\xab\x8a\xac\x66\xc7\x28\xb2\x9a\xa3\xa3\xe8\xf5\xf4\xab\xc7\xe2\x3a\xaf\xa6\xd0\x3e\xa5\xbd\x8f\xab\x4b\x83\x54\x63\x71\x1b\x56\xd4\x58\x98\x50\xf7\x4a\x3e\x27\x95\x89\x15\x2d\x56\x24\x91\xc0\x77\xba\xce\x6c\xae\x0a\xcf\x53\x83\x16\x6a\x78\x74\x9f\x8f\x32\xb3\x42\x09\x15\x53\x2c\x33\x69\x93\x34\xe3\xc7\x61\xd5\x21\xcd\x50\x07\x75\xe4\x1f\xc4\xa3\x94\x50\x98\xcc\xc9\xf5\x31\x7f\x93\xe7\x38\x53\x36\x79\x38\x48\x9a\xad\x66\xab\x2e\xb2\xd9\x8b\xbb\x68\x9a\x86\x38\x6d\x26\x27\x67\xba\x52\x49\xc6\xc7\xd6\x9d\x1c\xae\xaf\x6e\x61\x02\x8c\x9d\xa1\xa1\x68\xbe\x2b\x7f\xd0\xad\x09\x9b\x0e\x31\x57\x5b\xe9\xc3\x93\x49\xf6\x26\xd5\x5c\x75\x27\x84\xfe\x81\x62\x4c\x1a\xba\xb5\x30\x17\xc4\x9d\xa7\x80\x09\xbe\x44\xe8\xcc\xb2\x5a\x63\x57\x84\xe4\x4d\x39\xe0\xab\xba\x4e\x4e\xe0\x9f\xc6\x0a\xe0\x5f\x05\x54\x76\xac\xc6\x4a\xc2\x88\xc6\xaa\x2a\x34\xa8\xff\x34\x56\x4c\x5e\x77\x2b\x72\x3f\xf4\x6a\x7e\x85\x2b\x7b\xd6\x25\xfb\x72\x4c\x7c\x57\xa4\x4a\x2f\x66\xf0\x2e\x97\xf1\xe1\xba\x0c\xc4\x27\xf4\x00\xfc\x91\x11\xcb\x45\x41\x6f\xa5\xac\xa4\x7e\xb9\xcf\xf4\x84\xb3\x96\x92\xa9\x8a\xe2\x4a\x61\x44\xfd\x14\xb9\x4a\x26\x3e\x83\x90\x4a\x80\x3f\x93\xd4\x4b\x5a\x50\x4a\xf9\xf4\xae\x9f\x92\x76\xe8\x47\x43\x2b\xa5\xb0\xb0\x1d\x8a\x84\xc3\x0f\xe5\xc0\x9c\xdb\x86\x6b\xd6\xa5\x0e\xb4\xfd\xb8\xab\xa6\xe8\xa5\xc1\x5d\x5d\x6a\xcc\x1b\xd2\xa4\x4b\x45\x71\x3b\x0c\x36\x05\x2b\xd0\x0e\xb3\xd7\x17\x7b\x36\xef\x16\xec\x7c\xc3\x4a\xfb\x52\x4d\xdd\x0e\x5c\x51\x21\xd6\xed\xd4\x59\xd6\x61\x0c\x7d\x4b\x98\xe2\xde\x4e\x33\x72\x41\x8f\x1a\xe9\xa0\xf0\xfc\xea\xed\x34\x88\x2a\xe7\xbb\x21\x51\xba\xa2\xd9\x24\xfc\x60\xfc\x53\x5d\x1f\xc3\x9f\xc6\x14\xf0\x77\x63\x0a\xc0\xe0\xb4\x53\xf5\x9e\xad\x8d\x2f\x60\x25\x8d\x25\xc3\x01\x79\x7c\x7b\x73\x36\xac\x85\x8a\x2a\xb8\x76\x65\xe4\x01\xaa\x5d\xe9\x81\x07\x5c\x57\x41\x0d\x78\x52\x36\x0c\x01\x13\xc1\x62\xbb\x28\x3d\x6a\x97\xe9\xef\x41\xe2\x86\x6d\x76\x91\x9f\x6f\x44\xb9\xf5\x6e\x6f\x3f\xc6\xab\xfd\x18\x8c\x3f\x68\x60\xfb\x71\x65\x4d\x81\x41\xbb\x32\x4a\x9a\x30\x9b\xcc\xfc\xf4\x83\x00\x45\x40\x8c\xfd\x51\xc3\xe3\xb8\x37\x62\xdd\x28\x4e\x6f\x25\x71\x12\xc0\xd0\xba\xe5\xef\x4d\x05\x96\xad\x0d\x06\x42\x91\xe4\x48\x6e\x75\x11\x55\x99\x60\x49\xed\x2f\x65\x55\xba\x4c\x4f\x5d\x1c\xb4\xb4\x15\xe5\xcf\xf6\xa3\xf0\x96\xfa\x64\x28\xd7\x14\xb3\xfd\x78\xaf\xae\xc9\x65\xab\xa6\x8c\xa2\x1f\xf5\x72\xa2\x88\xe2\xae\xfc\x5d\x7f\xc0\xe9\x1f\x48\x21\xb8\x5b\x1a\x71\xee\xd4\xda\x36\x92\x29\x48\xb6\x5b\x43\x44\xc2\x93\xb4\x21\xcb\x0a\xae\xce\xd6\x90\x42\xb8\x8a\xf8\x92\x25\xae\x10\xf2\x2e\xb8\x6a\x5b\x53\xea\xc4\x02\x35\x63\xc0\x77\x3b\xe2\x09\xd8\xad\xb4\xa9\xc4\x6c\xc8\xb1\xa9\x21\x56\x33\x3b\xb9\x77\x44\xeb\x3c\xa4\x9d\x4e\xe7\xd1\x64\x47\x9d\x37\xa9\x58\xd6\x7d\x93\x02\x45\xe7\x41\xe7\x32\x76\x1e\xcf\x4e\x3f\x33\x20\xb8\x67\xdd\x87\x85\x0d\xb6\xa3\x31\x34\xae\x65\x97\x98\x10\x44\xe4\xe3\x8a\x6f\x98\x08\x69\xa3\xda\x42\x1a\x4f\x47\x98\x08\x69\xdc\xd4\x42\x96\x42\xfc\x4e\xbb\x20\x51\x21\x64\x75\x86\xd5\x64\x75\x9c\xaa\x6a\xb7\xc3\x4d\x09\xef\x1b\x6e\xb4\xa6\x82\x8d\x64\x1c\xbd\x61\x1b\x74\x92\xfa\xa3\x37\x94\x65\x97\x86\x37\x4d\x6d\x99\x57\x51\xd3\x27\x7d\x72\x0d\x36\x24\x59\x10\xe9\x66\x16\x84\xee\xf6\xc1\x84\x85\xb6\x9f\x6d\x18\x36\xc7\x83\x3f\xdc\x1b\xba\x9a\xc8\x0b\xb8\xfa\xda\xe4\xe5\xed\x19\xfe\xf1\x56\x53\xda\xdf\x66\x92\x46\x2b\x35\x28\x85\x95\x38\xc3\x8a\x56\xdb\x34\xe9\x35\x45\x24\xb1\xd2\x0c\x65\x53\x92\x22\x3c\xcb\x88\x69\xd9\xdb\xe4\x7d\xc9\x4d\xd5\x6e\x9f\x0b\xf4\x7f\xf3\x5c\x90\x72\x63\xec\x73\x92\x06\xae\x37\x64\x4b\x59\x1f\x7f\x29\x8b\x61\x7e\x1b\xca\x2a\xb0\x6c\x8a\x1a\x82\xd7\x5b\x43\xb9\xa6\xc9\x62\x53\x9a\x24\x31\x25\x1d\x01\x49\x57\x7b\xbb\x91\xa1\xc0\x3f\xb4\x1f\x4b\x54\xbc\x11\xdb\x93\xeb\xce\xbc\x1e\xc3\x74\x7b\x15\x3c\x5e\x51\xfe\x31\x24\x32\x74\x6b\x42\x72\x5b\xa3\x3a\x73\xa5\x55\x9d\x89\x72\x8f\xe1\xd0\x1d\x4d\xa1\x48\xf9\xd3\x4a\xa4\x3d\x68\x1c\x60\xbc\xda\xc2\xf1\x0f\x86\xbe\x2d\x54\x3a\x8e\x82\x21\xf6\xe5\x9c\x48\x49\x5e\x1c\x45\x03\x6a\x09\xc1\x8f\xf7\xf9\x77\xb9\x2c\x08\x84\xa7\x65\x23\xe7\x80\x55\x6e\x86\xd5\x1b\x22\xcc\x86\x3c\xc2\xd2\xb6\x1f\x1b\x34\xf5\xa2\x68\xdb\x90\xfb\x6e\x96\x9e\xe8\xdc\xc5\xcd\x3c\x01\xde\xa5\xdb\x78\x08\xde\x72\x3b\x09\xa1\xdd\x7a\x4b\x8a\x3e\x3b\x6f\x49\xa0\xd2\x58\x27\x04\x1d\x36\xc8\x43\x8f\xa3\xd8\xe1\x1a\x22\x1b\xd2\x74\xb1\xc1\x04\x99\x5f\xaa\x37\x32\x91\x7b\x84\x88\x34\x63\x97\x46\xfe\xb7\xa5\xb1\xa5\x28\x62\x16\xe0\xa5\x8d\x67\xd8\xe9\xd5\x8e\xf6\x8c\xb8\x26\xbd\x69\x75\xe3\x4a\x7c\xaa\xe7\xad\x43\x0e\x3d\xe9\xc9\xa7\x7a\x9e\x39\xa2\x3d\x2b\xd2\x8d\xcf\xd4\x6f\x96\x45\x06\xa0\x21\xbd\x53\x73\xfb\x3e\x8d\x21\xec\x47\x03\x28\x78\xb6\x7e\x70\x45\xb1\x70\xdd\x3c\x4e\x50\x89\x8e\xda\x8b\xa4\xcb\xbd\x13\xb3\x46\x1c\xee\x78\x94\x93\x25\xa2\xf7\x03\xcd\x69\xb1\x0e\x67\x04\x4c\xed\x87\x67\x64\x50\x46\x19\xdd\x1d\x0b\x40\x8b\xfd\x00\x68\x38\x96\x58\x3b\x29\x0b\xe8\x45\xd9\xdc\x02\x96\xc9\xa5\xc5\x0d\xd8\x75\x3d\x83\xbf\xea\xba\x9e\xc1\x47\x74\xc2\xe7\x8a\x5b\x1d\xee\x46\x81\x5d\x3f\x13\x85\x28\x37\x83\x24\x51\x1e\xee\xa8\x7f\xa0\xab\xe3\x72\xef\x78\xa1\xcf\x6c\xa0\x29\xcb\xb4\x05\xf7\xa7\x23\xe8\x58\xe6\xcc\x2e\xef\x52\x46\xc3\xb1\x4c\x39\x77\x37\x92\x2e\xfe\xdb\xbd\x93\xe3\x49\xab\xdb\xae\x63\x19\x64\xa4\xe3\x58\xa6\x9c\xb8\xe3\x58\x46\x18\x8d\xde\x75\x2c\x73\x19\x2f\xb4\x9c\x97\xbf\x7b\xb0\x1d\xe0\x87\x5b\xaa\x18\xba\x11\xf7\xdc\xa6\xa2\xa1\x0d\x34\xb7\xa3\xb3\xd3\x0e\xb5\xe3\x40\xa6\xbe\xa1\xe3\x40\xa6\xa4\xbb\xe3\x40\xa6\x5a\xa1\x17\x34\x8a\x88\xca\x7a\x01\x38\x97\x08\x07\x32\x35\x38\x1d\xcb\x1f\x55\x06\x9d\x54\x4f\xb8\x3e\xf6\xae\x72\xcd\x15\xaa\xa8\x7e\x9d\x30\x61\xfa\x4d\x42\xd6\x7b\x85\x80\x88\x44\x6a\xda\x84\xba\xea\x64\x20\xa4\xaa\xda\x9c\xbe\xbc\x87\x6b\x8d\x87\xbb\x09\xd0\x7a\x57\xd7\x16\x7f\xf2\x6e\xbd\x66\xd6\x52\xf6\x57\xed\x9b\xc3\xa8\x71\x13\xe0\x06\xf0\x22\x65\xd3\xad\xda\x7d\x37\x5e\x9e\x22\xd6\x8e\x6e\x4d\x23\x8c\x4e\x6a\x27\xd2\x7c\xf7\x4e\x6a\x27\x12\x47\xf6\x4e\x6a\x27\x02\x44\xf4\x2e\x6b\x02\x9d\xe9\x0d\xb2\xe8\xfe\x92\xda\xa9\x58\xee\xda\xc8\xc3\x8d\xf5\x8e\xfa\x86\x1b\xb6\x77\x74\x4e\xcd\x4a\x45\x54\x64\x84\x0e\x47\x25\x06\xa9\xbb\x83\x5b\xea\xa4\x76\xd2\xa8\xba\x13\xef\xd7\xdc\x72\xbd\xab\xc8\x13\x6d\x64\x66\x3c\x35\xc9\xcc\xc0\x24\xf7\xce\xb5\xed\x96\x75\xd8\xa8\x29\x18\x5e\x5d\x34\x08\xae\x73\xa1\x08\x64\x5b\xee\x64\x40\xc1\x3d\x96\x21\xb1\xf4\x08\x05\xb2\xea\x69\x25\x58\x2d\x69\x8f\xd9\x9f\xe0\x57\x3a\x29\x3f\xf5\xb6\xea\x81\xf8\x5f\x7c\x0a\x64\xe7\xd3\x7e\xd0\x59\xb8\x3d\x21\x7f\x61\x5b\x43\xf2\x38\x1d\x63\xf2\xc0\xf7\xf4\xc1\x65\x23\x31\x19\xc8\x8e\x3d\xf8\x32\x3a\x6a\xf8\x3a\x31\xf7\x74\xcd\xeb\x3f\x7e\xa6\xc8\x27\x75\x62\xeb\xe9\x3a\xd7\xc9\xf7\xad\x3b\x5e\x1f\x08\xb6\x3d\x05\x03\x79\xa7\x54\x6f\x48\x28\x20\xff\x9d\x14\x4f\xfa\xe3\x75\x59\x1e\x1e\xe5\x7d\xaa\x6c\x70\x3e\x24\xfc\xd6\x49\xac\x4f\x04\xb2\x1e\xe4\x89\x40\x56\x5a\x37\xf1\x48\xc8\xdf\x07\x65\x3b\x42\x1e\x9b\x75\x6e\x73\x6d\xd9\x29\xc2\xc0\x2c\x23\x60\x43\xca\xdb\xe5\x7f\x10\xb5\xf6\x1f\xff\x33\x65\xd4\xfa\x2d\x67\x0a\x10\x7a\xa1\xe5\xf6\x93\xd1\xdb\x57\x6c\xbf\x93\x03\x65\xd2\x69\xe0\x2c\x02\x28\x17\xf2\xf8\x62\xd4\x3c\x12\xd3\x15\x06\x89\xdd\x69\xd4\x2c\x06\xa4\x51\x33\x2c\x60\x7f\x08\xb3\xe0\x21\x4f\x87\x7a\xf8\xa3\x8e\x51\x73\xde\x5e\xfd\xc1\x06\xdb\x33\xfa\x28\x1c\x14\x5d\x33\xd5\xb7\x38\xfa\x28\x79\xcb\x8f\x1f\xf4\xc3\xa9\xe3\x78\x4f\xc8\xa6\xde\x35\x69\x3e\xf3\xe3\xf1\xc3\xe1\xb7\x1f\x76\xfc\xfa\x61\x7b\xd3\xa6\xba\x2c\xc8\x96\x4e\x32\xf1\xf4\x8e\xd8\x48\x06\xa6\xff\x38\xa1\x2a\x13\xd7\x11\x1b\x0d\x17\xdb\xb4\xdf\xa7\x94\x67\x09\x0a\x03\x6a\xa1\x7c\x66\xeb\xed\x7c\xfd\x47\x54\x72\xc2\x4a\x8e\xc8\x8c\xdb\xbb\xa9\xbe\x7f\xb8\xf1\x17\xc1\x23\x04\x9f\xe2\xd1\x9e\xe6\xcb\x3c\x20\x3a\x29\xbe\x15\xa0\xf5\xbd\xe0\x2f\x19\xf4\xc7\x29\x35\xcd\xae\x7a\x32\x4a\x88\x9d\xbb\xbc\x91\x30\xbf\xc6\xda\x07\xb0\xd7\x74\x0c\x12\x62\x44\x3c\xff\x28\x21\x99\xbb\x7d\x11\x76\x84\x3a\xa5\x64\x57\x8b\xa7\x36\x58\xfb\xe9\x43\x4a\x11\x46\x90\x7c\x2c\xbd\x63\x24\xa4\x4e\xa0\x63\x18\xd4\x44\x66\x0d\x83\x3c\xfd\x1f\xe6\x2c\x22\xed\xc7\xf3\x50\x0c\xfc\xb1\x3c\x97\x9a\xb9\xc0\x93\x4b\xbb\xdf\x38\x24\x53\x41\x19\xc3\x41\x8d\x3d\xe3\x40\xbb\xc4\x02\xc4\x8f\xcd\x99\x3e\x82\xe3\x40\x4e\x0f\x39\x0e\x6c\x89\x39\xfb\x71\xa8\x2b\xa0\x88\x19\x58\xd8\x12\xab\x2b\x6e\x87\x38\x74\x38\x68\x76\xb3\xcd\x8e\x44\xd9\x68\xed\x02\x71\xe6\xeb\x8a\x26\x04\x04\xbe\xec\xea\xc4\xa2\x41\xa8\xf1\xc0\x1a\xb2\x1b\x41\x10\x60\x3d\x39\xe3\xc7\x9f\x14\x95\x31\x71\xda\x2d\x37\x44\x60\x76\xac\x22\x2c\x2e\x49\x10\x8d\x51\x66\x29\x9e\x8a\x1f\x7f\x32\x7d\xb5\x84\x99\x83\x88\x93\xda\x03\x9e\xa4\xea\x5d\x1b\x97\xd2\x29\xcb\xc1\xa6\x33\xb4\x81\xf9\x18\xf9\x22\xa0\xae\x4d\x89\xa7\xcb\x94\xc9\xc8\x0d\xbb\x1d\x05\x32\x43\x5d\x58\x0d\x7d\x4c\xa3\xb0\xce\xc0\x88\x1a\x6a\xfa\x6b\xf7\x89\x02\xbc\x64\x02\x38\x1d\xbd\x68\x84\xcb\xe8\x70\x1d\xba\x5f\x06\xc9\x00\xce\x1c\x09\x2b\xdc\xea\x50\x9b\xf9\x51\x94\xf3\xb6\x4b\x38\x6f\x74\x21\x21\x33\x52\x9d\x76\x95\x95\xa6\x12\x1e\xec\x2a\x0c\x03\x0f\x76\xa2\x03\xf5\xf8\x31\x26\x5d\xdf\xf1\x20\xf4\x8e\x1a\xdf\xa8\xa4\xa5\xe7\xb5\x14\x38\xb3\x97\xec\x73\x53\x66\x62\x30\x12\x84\x4c\xe9\xd1\x18\x8b\x13\x1f\x04\xe4\x55\x27\x18\xf0\x17\x2a\x45\x03\xa3\x63\xa2\x15\xf5\xc0\xe8\x58\x77\xe1\xc0\xbf\x4a\xdd\x62\x34\xfb\xb7\x4f\xce\xea\x69\x7d\xde\x34\xc2\x09\x4b\xa1\xae\x30\xcc\x16\xa9\x14\x31\xba\x07\xc0\xd5\x4a\x16\xc1\x75\xe9\x5e\x24\x80\xa7\xa7\xb9\xe2\x9b\xe8\x3c\x25\x86\x7f\x80\xd3\xae\x3b\xda\xa6\xa9\x40\x31\xcc\xec\x68\xb7\x61\xd8\x76\x16\x23\xcc\xbf\xcf\x24\x30\x31\x26\x2e\x50\x0f\x33\x81\x8b\xea\x44\xcf\x69\xe3\x4f\x6d\x6b\x84\x7e\x95\x36\xe2\x08\xba\xd5\xd8\x1f\x13\xc3\xaf\x07\x82\x10\xc5\x3c\x61\x34\x9d\x69\x7d\x8e\x8a\x27\x13\xf9\x88\x36\x12\x81\xcd\xb1\x8e\xa4\x81\x59\xf1\xd4\xeb\x31\x30\x2b\xd6\x53\x35\x86\x90\x5b\xc9\x47\x10\x03\x0c\x21\x67\x80\x21\x70\xd6\x31\x85\x25\xab\x31\xcc\x77\x0b\xa0\x58\x12\x37\x69\x08\x21\xfa\x88\x3f\xd3\x83\x2c\x43\x04\x49\xee\x31\x8c\x9d\xed\xfe\x4e\x33\x5f\x03\xc4\x14\x52\x7f\xe7\xb5\x83\x1c\x28\xb0\x36\x56\x38\x15\x58\x1b\xeb\x01\x18\xba\x52\xb9\xb9\x53\xe0\x18\x8c\x2c\xe2\xc4\x98\xeb\x31\x79\xa1\x79\x08\xe5\x24\x20\xef\x31\x75\x42\xf5\x77\xf7\xdc\xfe\x31\x0b\xf6\xfc\xde\x66\x10\xf1\x70\xc2\x3d\x0c\x59\xec\xc0\xc0\xb8\x27\xed\xc2\xaa\x98\x2c\x4b\x3d\x6e\x73\x9a\x01\x06\xac\x80\x9a\xa8\x78\x14\x06\xb8\x83\x24\xf5\x9e\xee\x20\x26\xc6\x4a\x15\x02\xbd\x90\xaa\xca\x20\xc7\x80\x36\x64\x01\x1f\xa0\x9b\x44\xfc\xd8\x80\xae\x4d\x58\x20\x33\x31\x52\x45\x3c\xbc\x5e\x5c\x47\x52\x7a\x6b\xa3\x16\xc8\x4f\x34\x09\x0b\xcd\x8a\xd5\x0f\x04\xe9\xba\x35\x52\x0a\xd2\x75\x6b\xfc\x13\x4b\xe0\x00\x94\xd4\xdd\x0a\x78\x63\x09\x9c\x75\x04\xce\x32\x4f\x28\xcf\x02\x99\x0a\xb4\x9c\x0a\x32\x12\x10\x3b\xad\x07\x19\x09\x48\x49\xd5\x63\xf1\xfa\x74\xb1\xc9\x4e\x90\xd7\x01\x8c\x80\xaa\xd3\xd8\xe9\x3b\x49\x99\xe7\x9d\x0b\x67\x72\x02\xd1\x7d\xeb\xfc\x4f\x9f\xdb\xb7\x27\xe3\xa2\x4b\x6a\x32\xf0\xb1\xf3\xfc\xdb\x02\xe8\x3c\xda\x66\x2a\x10\xd5\x10\xaf\xa8\x09\x0e\x32\x15\x10\xa2\xb8\xc7\x06\x6a\xe9\x2b\x82\x16\x35\xe1\x01\xfb\xa0\x16\x39\x88\xe1\xab\xed\x5a\x28\x4e\x11\xd5\x88\xc1\xe3\x2b\x2a\x88\xc1\xa3\xbd\x5a\xbc\x66\x10\xa0\xcf\xd7\x95\xf3\x77\xb6\x55\xd4\x7c\xbd\x18\x59\xd1\x97\xad\x0c\xcb\xc0\x26\xca\xbe\x99\x98\x83\x32\x2b\xca\x5b\x29\x5e\x57\xd4\xb2\x2b\x4a\x59\x5b\x66\x8f\x90\xb6\xcc\x3c\x40\x02\x69\x8c\x66\x88\x81\x2a\x49\x6e\x33\xcc\x7a\xe0\xfa\x64\xd6\x03\xe6\xab\x2d\x73\xb3\x8e\x30\xff\x15\x2c\xa9\x87\x86\xce\xde\x77\xf8\x4d\x55\x6d\x17\x43\x4b\x67\x4f\xd1\x27\x8e\x38\xca\xab\xe0\xd5\x16\x1e\xa9\x5f\x83\x71\xe8\x9c\xc0\xf8\xe3\xf0\x4c\xe5\x47\xba\xa0\x0d\x3e\x34\x8d\xbf\x6c\x83\xb6\x55\x69\xfb\x80\x65\x09\xe5\x5f\xe3\x34\x80\x12\xb8\x38\x48\x74\x60\x64\x90\x41\xda\x6d\x5d\x48\xc6\x89\x9d\xd4\xb4\x8c\x38\x30\xac\x0f\x5b\x93\xf5\x07\xf5\x01\x84\xd4\x06\x25\x2c\x1b\x05\x6d\xda\x00\xa3\xde\x61\x47\x18\x23\x0f\x7f\x7f\x25\x87\x95\x0f\x5e\xcd\x9c\xb8\x41\xa2\x03\x52\x5c\xf6\x71\x29\x84\x60\xb4\x2b\x6f\x38\x5a\x93\xdd\x80\x74\x91\x7d\x90\xdd\xa0\xb0\x81\x43\x4e\x86\x53\x30\xc8\x68\xa0\x7b\xc7\xb8\x30\x39\x16\xa2\x0b\xb3\xde\x61\x1d\x21\x2a\x94\x89\x37\x32\x2d\x03\x10\xc7\x6f\x14\x84\x09\x02\xa1\x11\xb4\x7d\x92\x79\xbb\x80\xb0\x23\x19\x1d\x6e\x98\x81\x11\x74\x0a\x76\x06\x71\x88\x2f\xe7\x5f\x84\xc8\x5e\x59\xb0\x69\x1d\x20\x0a\xcb\x08\x3f\x9c\x99\x46\xd0\xce\xa6\xa8\x5c\x83\x15\x19\xe4\xe4\xd6\x09\x68\x20\xa8\x51\xe2\x38\x14\xd4\x0c\x7f\x47\x50\xe3\x3a\x56\xc1\xa6\x53\xe5\x34\x30\xa9\x43\xeb\x68\x97\xa2\x2a\xec\x2b\xfe\x21\xd4\x0e\x86\xd9\xb1\x98\x48\xa4\x9f\x71\xc0\xa5\x0e\xed\xa3\xc3\x5e\x05\x9b\x69\x92\xa0\x9b\xbc\x9e\x7d\xe0\xa5\x55\x12\x22\x77\x19\x88\xb4\x8f\xb6\x8e\x79\x94\xdc\xc0\x06\xd4\x6e\x08\xfa\x25\x1d\x80\x46\x6b\x4a\x91\x18\x00\x2e\xab\x6a\x05\x3e\x9a\xea\x19\x48\xf7\x20\x9a\x60\xa8\x87\x1a\x1d\xd9\x8d\xe3\x69\xa8\x0c\x85\x1b\x81\x28\xc6\xc9\x91\x04\x51\xbf\xd1\x11\x18\xa1\x8a\xc3\x1a\x2a\x8b\x91\x81\xf4\xc5\xed\x09\xac\x6a\xa1\x22\x43\x43\x65\xcf\x42\x28\x3f\x62\x2c\x62\x0c\xfb\xa2\x18\xda\x26\xbb\x46\xda\x26\x3b\xe7\xc0\x08\xd5\x95\x27\x08\x8f\x3e\xf6\x83\x20\x3c\xfa\x8f\x8d\x81\xde\x0d\x71\xc8\x18\x18\xce\xda\xa7\x66\xca\x59\x27\xef\x67\x1b\xa3\x84\x13\xbf\x06\x40\xbb\x90\xda\x2c\x43\x06\x47\x06\x0a\x74\x07\x07\x50\x8b\xce\x1a\x2d\x8b\xfe\x83\x19\x8c\x3f\xed\x7f\xc7\x60\x7a\x62\xe8\x60\x89\xb9\x9a\x86\x86\xcb\xdc\xf5\x43\xc3\x65\xb7\x77\xba\xdc\x2c\xe5\x64\x1a\xe2\x15\x71\x7c\xb4\x4a\x1b\x84\x20\x54\xcc\x3e\x08\x41\xa8\x4f\xcf\x98\xfa\xee\x78\xc6\xa6\x10\x3a\x18\x40\x88\x1a\x13\xb9\x9c\x38\x43\xbc\x1e\xfd\x99\xc7\xed\xba\xf2\xbb\x06\xc9\xee\x9b\x06\xc9\xee\xf9\x8d\x6e\x13\xba\x3c\x34\x48\xce\xb6\xe6\xfd\x80\x03\x1f\x5a\x24\x8b\x54\x5a\x24\xbb\x7c\x37\x4b\xe9\x66\x11\xc6\x58\xe7\xd3\xa1\x45\x32\x6c\xd2\xb8\x05\xd4\x4e\x05\xd4\x3e\x41\x06\x18\x85\x71\x8b\x0c\x4c\x86\xbc\x8a\x61\x3f\x0f\x40\x8b\x48\x8f\xab\x48\xdb\xc7\x03\x43\x9f\x3f\x4e\x6a\xc8\x25\x0e\x83\x01\xb9\x1b\x4a\x54\xc8\x08\xd0\x07\xe6\xcc\x4d\x89\xd3\x78\xf2\x62\xa0\x49\xfa\x5c\x09\x87\x29\x14\x55\x35\x8d\xe5\xf6\xb0\x4a\x4b\xf6\xd3\xce\x7e\x6c\xd0\x30\x4a\xc5\xc0\x5a\x59\x13\x90\x81\xb5\xb2\xc6\x98\x03\x6b\x65\xdf\x4a\x63\x61\xf9\xa0\x2d\xcc\xf8\xf1\x4a\xc5\xc7\xd2\xd0\x5c\x59\x6a\x85\xb9\xb2\x8f\x9f\x81\xb9\xb2\x06\x87\x03\x35\x93\xd1\x44\x06\xc9\x15\xb5\x32\x1d\x58\x28\x6b\x1d\x3a\xb4\x50\x76\xc9\x48\xae\xa8\x65\xe9\xd8\x8d\x47\xb4\x75\x30\xa7\x75\xdb\x7e\xac\x52\x51\xc1\x3e\x7e\x9c\x52\x51\xf1\x3e\xb0\x50\xf6\xf1\x36\xb4\x4a\x76\xf6\x9b\xc7\x38\x8f\xbd\x41\xc4\x1e\x7d\x0f\xc7\x8b\x30\x42\x8a\x8c\xbd\xb1\x8f\xba\xf1\xa2\x9d\xf6\xdc\xa2\x54\xea\xf9\x3b\xe3\x3a\x2f\x4c\x8c\x0d\x50\x32\x7e\x5c\xd0\xd0\xaa\x76\x90\x65\xd1\xe7\xcf\x78\x11\x93\x8a\xb3\xaf\xf0\xd8\xf6\xa5\x1f\xeb\x7f\xf4\x43\x99\x8c\x07\xfa\x06\x8d\x0f\xd8\x3c\x5c\x9f\x6b\x05\xcc\x9a\x1e\x4b\x8f\x3e\xd6\xca\xbd\xf8\x58\x2b\x6f\x1a\x4d\x8f\x3d\xbc\x1f\x5a\x74\x51\xed\x13\x66\xfb\x64\x83\xdd\x6c\x62\xf6\x68\x6b\x3a\x88\xd9\xa3\x2a\x78\x10\xb3\xc7\x30\x3a\xe3\xdb\x94\x7f\xeb\x30\x61\x6d\x0c\xdb\xdd\x67\xb2\x36\xf0\x74\x13\xd6\x26\x0c\x24\x33\x0f\x75\x2e\xcd\x7f\x58\x53\xe8\xdf\x3c\xdc\xd7\x49\x99\xf5\xbd\xfc\x1d\x58\xb9\x46\xe7\x81\xc6\x9f\xcb\x7f\xea\xd5\x75\x1c\xe3\x2f\xd2\x36\x71\x2b\x27\x9f\x47\x9f\xc4\xf1\xe9\xa7\x3d\x2b\x4d\xb7\x37\x30\x35\x47\x64\x27\x2e\x21\xc4\x08\x1c\x6a\x33\x0d\xe3\x03\x5d\x9d\x27\x58\x0b\xc7\x34\x09\xe9\xa3\x58\x62\x1a\xd2\x07\x32\x3a\x4f\x0f\x71\xa5\xdc\x98\x91\x6d\x39\x5e\xa7\x75\xd4\xa9\x08\x84\x12\xa5\x99\xff\xdc\xc6\x77\xb2\x39\x5a\x00\x75\x22\xf3\xb2\x2f\xfe\xb8\xc4\x2c\x5a\xe0\x69\xde\xb5\xac\x98\xda\x1f\x73\x7c\x66\x41\x9b\x0d\x93\x3f\x89\xb3\x43\x40\xcd\xdf\x83\x09\xd4\xf2\x77\xa4\xdd\x3c\x83\xa6\xe6\xc7\xdc\xc3\x13\x7e\xc8\x78\xc2\xbf\xb7\x04\x8d\x99\x45\x41\x25\xc0\x6b\x64\x6a\x7e\xec\x06\x13\x98\xe7\xca\xfa\x08\xe3\x87\xe5\x4d\xa7\xd6\x79\x8d\xae\x6b\x63\x20\x75\x9e\x5a\x1f\x8b\x43\x5a\x1f\x43\x63\x67\x05\xea\x6a\xb9\xb8\xf1\x4c\xad\x0a\x76\xa3\x0c\xd8\xd5\xb2\x31\xfb\xc3\x0f\xec\xb8\xb3\xb5\xe0\xb1\x60\x15\xf0\x84\x02\xdb\x65\xe3\xcc\xcd\xea\xda\xd1\xb6\x01\x05\xd4\x7a\x36\xd7\x8e\x7e\x1a\xa2\x49\xd1\xb8\xa1\xbc\x70\x06\xc9\xde\xc0\xad\x4f\x7c\xc1\x7c\x21\xcd\xc6\xda\xf1\x24\x98\x38\xb1\xab\x86\x9b\x18\x38\x5f\x59\x5f\x40\x01\xa2\x3d\x0c\x60\x1d\x01\x75\x00\x94\x1a\xcd\x3e\x31\xe2\x6e\xd6\x07\x68\x98\xbe\xd9\xdd\x70\x96\xb1\xe7\x51\x04\xea\xee\x3a\x02\x75\x77\x06\xcc\xcc\x60\x88\x87\x67\xa4\xbb\xfd\x36\x40\xfd\x52\x2c\x87\xf7\x0d\x20\x11\xb6\xa7\x3b\x9d\xce\x14\x3c\xec\x84\xf0\xd1\x8d\x6e\x76\xa7\xc0\xd4\xb0\x88\xd6\xfd\x6b\x12\xe1\xb9\x8b\x3a\xdd\xc3\xe6\xef\x4c\x81\x1b\x76\x86\x87\x8d\xfe\x89\xe6\xa3\x93\xea\x0c\x3d\x88\x5d\x97\xd4\x63\x35\x6b\x89\x0a\x96\x1b\x23\xd0\x2b\x86\xd2\xda\x43\x4c\x74\x5a\xdd\xf9\xab\xd3\xe2\x5a\x9c\xe4\x98\x30\x00\xc6\x24\xb4\x8f\x8e\x86\x33\xc0\x16\x09\xd4\x30\x5c\xd5\xf4\xe3\xa2\x23\xa0\xf8\x71\x71\xd3\x67\xcb\x34\xc2\xf3\xc1\x75\x30\x07\x9a\x22\xcf\xd1\xf0\x38\x23\xa8\x9e\xe4\x7f\x52\x55\x3b\xc7\x4b\x99\x9e\xd0\x4b\x29\x4c\x99\x13\xf1\xec\xdf\x9e\x5b\x73\x62\xb0\xe4\xea\x4c\xd5\x68\x76\x40\x4c\x23\x61\xff\x71\x62\x53\xf5\xf9\x9c\x18\x8b\x7b\x1a\xa6\x3a\x76\x8f\x03\x4a\x2b\x95\xc6\x73\xde\x54\xb2\x31\xd6\xe2\xdc\x3a\xf3\xc7\xa1\x55\x6d\x2f\xe7\x04\x72\xb7\x7a\x9a\x41\x46\xd2\x95\xca\x2c\xa0\x50\x99\xe5\x4e\x60\xcc\x53\x8d\x97\x30\x6f\x52\x1b\x48\xd7\x6f\x64\xce\xc5\x32\x42\x67\x0f\xd6\x8d\x41\x09\xf7\xda\xbc\x01\x3b\xdb\xaa\xfc\x72\x00\xa0\x46\x26\x34\x6f\xa1\xb6\xbe\x50\x5b\x1f\x73\x7c\xa9\x2f\x26\xd1\x6a\x5e\x26\x5a\x30\xcd\x6b\x27\x91\xa4\x75\x86\x9c\x0f\x13\xf0\x06\x78\xd4\xc6\x01\xdb\xe3\x23\xdd\x83\xf8\xb8\xee\x56\xc2\x98\x9b\x4b\x7d\x3e\x4e\x80\xb5\x26\xd8\xb4\xfa\xf9\x49\xb0\x69\x2d\x60\xe7\x23\xd0\x00\xf7\x08\xa8\x75\x04\xd4\xfe\x41\x12\x84\x51\xf3\x61\xa9\x8b\x7d\x0a\x28\x93\x41\xdd\xd5\xf3\xee\xc1\x94\x5a\x5b\xe3\xb9\x50\x23\x78\xf4\x96\x2b\x4d\x47\xcb\x95\x66\x00\xd2\x5d\x28\xe3\x99\x0b\x80\xe0\x1a\xe6\x62\x15\x45\xa2\x25\x70\xd6\x67\xef\xbd\xff\x96\xab\xe8\x58\x62\xb0\x63\x01\x9c\x14\x6c\x13\xb0\xdd\xf3\xb2\x33\xb6\xaf\x7f\x00\x10\x6c\xcf\xdc\x02\xc4\xec\xb7\xc9\xd6\xdc\x03\xe4\x60\x83\xfc\x18\x7d\x12\x67\x5a\x69\xe2\x7c\x53\x6c\xc2\x42\x22\xb3\x3a\xf4\xf1\x9f\xd8\x3e\x1f\xfa\xd7\xcf\x57\x4d\xe4\xb4\x0d\x06\x7b\x7a\xe7\x4f\x34\x63\x87\xf6\xa0\x93\xc4\xd8\x5a\xf7\x4f\x05\x57\x86\x6a\x9a\x68\xc6\x0e\x83\x30\x4c\xc4\x55\x87\x21\x75\xe6\x8b\x51\xbd\x58\x83\xef\xfd\xa1\xab\xff\x44\x30\x75\x18\x1c\x60\x7e\x42\x26\xab\xf1\x61\x3d\x2f\xc2\x7e\x42\x29\xc6\x7e\x02\xe6\xf1\xff\x12\x30\xc6\xff\x74\x4e\x90\xd9\x31\x2b\x85\xf2\xb2\x89\x45\x91\x09\x52\xfb\xfc\x04\xd3\x9d\xfb\x04\xd3\xad\xf8\x00\xd3\x5b\xec\x13\xcc\xc3\x5a\x9f\x1f\xbf\x61\xee\x43\x7d\x2f\x67\xec\x3e\xd0\xf7\x42\x0d\xee\x03\xe3\x7f\xc8\xc7\xad\x3c\x4a\x85\xdb\x7d\x08\xff\xe5\x07\x56\x91\xe0\xdc\x7d\x68\x15\x09\xa2\xdd\x87\x73\x81\xc6\xdd\x24\xb4\x38\x0c\x4a\x71\xc3\xb8\x1d\x86\x5c\xb8\x49\x6f\xa1\x33\xcd\x7d\x68\x3a\xd2\xe2\x2f\x92\x77\x6b\x92\x64\xb0\xd4\x1b\x91\xd8\x61\x78\xc5\xfb\x70\x6e\x10\xb1\xfb\x64\x3a\xe0\xd9\x7d\xba\x03\x41\xd9\x19\x40\xac\xee\x33\xf1\x84\xe6\xa7\xdb\x01\x9a\xde\x67\x6a\xac\xed\xcb\x29\x70\x34\xef\x13\xbf\x8c\xb0\xac\x56\xa6\x5a\xcb\xdd\x38\xfc\xd0\x70\x8a\x45\xbf\x4f\xa1\x3c\x04\x00\xed\x7b\x08\x18\x5e\x40\x30\x21\x37\x46\x4b\x87\x41\x40\xee\xcb\xcd\xa0\xab\x4b\xef\x0b\x60\x44\x11\x78\x68\x46\x78\x5f\x89\x3f\x8c\x71\xb9\xe6\x87\xd5\x54\x6c\x0b\x30\xd6\xd5\x53\x19\xdd\x4d\xb8\xeb\x46\xe6\x85\x7e\x1b\x9e\x48\xdf\xa6\xfb\xca\xc0\x18\x74\x5d\x34\xbd\x74\xd3\x30\x89\x6e\xd2\xf7\xbb\x54\xff\xf1\xe3\x87\x01\x1a\xb1\xdc\x45\xb5\x3e\xa3\x14\x74\xe9\xee\x4a\xb9\x29\x5b\x47\xad\xbe\x3b\x54\x54\xb2\x73\xfc\xef\x82\x73\x86\x48\x66\xd2\x70\x15\x3d\xb7\x59\xc3\x0d\xd1\x73\x57\xd7\xc8\xce\x88\x52\x74\x7a\xa3\xdc\x35\xe5\xbf\x74\x50\xd1\xfd\x73\x12\xee\xaa\x05\xa7\xb8\x0c\x67\x78\xaa\x8d\xbc\x89\xe5\x68\x58\xf2\x9b\x04\x1e\x23\x07\x99\x0e\xef\x1f\x0f\x7f\xd8\xc0\xe8\x27\x4e\xab\x0a\x17\xf4\xea\x6e\x5a\x1e\x88\x3a\x2d\xe1\xa2\x4d\x33\x64\x88\x70\xa1\x6f\xac\xc6\x16\xb8\x9b\x0b\x59\xfc\xa7\x09\x18\x50\x36\xa1\xe4\x8c\xdf\x4d\x6f\x0d\x48\xc1\xdd\x5c\x63\xcb\xae\x31\x4b\xd9\x34\x9d\x70\x23\x5a\x2e\xb2\xa3\x68\x3a\x21\xcc\xcd\x85\x2d\xb6\xc7\x2b\xc7\xad\xe8\x09\xbf\x1f\x27\x7f\xd0\x9c\xac\x61\x24\x9e\xe8\x37\x36\x4e\x43\xfd\xd0\xdd\x13\x7a\x00\xee\xc9\xf8\xd8\x5c\xe8\x9d\x31\x6c\xe3\x79\xba\x61\x5d\xac\x84\x10\xdf\xdd\x55\x16\xdd\x7a\xc2\x6f\xd7\x2c\x79\xd6\x12\x7c\xb7\xb2\xe7\x92\xb3\x31\xa1\x7b\xb6\x6b\x11\xc9\xc2\xd2\xc6\xf8\x48\xfa\x37\xdd\xd8\x64\xb7\x23\x3f\xde\xff\xfe\xd7\xb4\x27\xbe\xb5\xc2\x96\x89\xbf\x07\xce\x2a\xdc\x6e\xf7\x3f\x23\x6c\xfa\x1a\x66\x94\x76\xf9\x86\xbe\x36\x70\x4f\xf7\x20\x20\x97\xf4\x6e\x18\x1c\xae\xf9\x61\x40\x38\x18\x91\x5b\x57\x38\x99\xb2\x7b\x98\x4a\x5b\x72\x9b\xb9\xd0\xb9\xc9\x6e\xbc\xdf\x4e\x4d\xa0\xee\x61\xdc\x3a\x89\xca\xd0\xb8\x72\xfc\x4d\x17\x7f\xfc\x63\xd3\x2c\xe6\x9e\xce\x01\x3e\xe4\x36\xf6\x91\xaf\x89\x7b\xe6\x1c\x18\x69\x3a\x07\xe0\x99\xce\xa1\x5a\x2b\x2d\x9d\x01\xe1\xc7\x33\x36\x8d\x64\xee\xcc\xb6\xee\x72\x4e\x4d\x7b\x9b\xed\xf5\x10\xaa\xfe\x83\x87\xd0\xb4\x2f\x25\xbb\x52\x9c\x99\x73\x63\xa5\xa7\x5b\x20\xd2\xdf\x82\xcf\x1f\xb7\xe0\xc3\x5e\xdd\x37\xde\x4e\x12\xe2\x1f\xdf\xd8\x34\xa3\xbf\x6f\x9d\x9d\x9a\xad\x85\x5e\xcc\xbe\x85\xbe\xd9\x17\xe7\x47\x23\x82\xdb\xc8\x90\xbe\x5c\x6e\xed\xc2\x35\x92\xb9\x6f\xcc\x6d\x84\xfe\xd6\xaf\xc8\x75\x31\xa4\x92\xca\xc9\x1b\x1e\xb0\xe9\x2f\x7e\x3f\x84\x67\x13\xfa\x47\x1b\x79\x31\xe8\xf1\x38\x48\x59\x48\x22\x6a\x78\x93\xfb\xd1\x27\x64\xd8\x97\x41\xff\x86\x7d\x3d\xd4\xb2\xb9\xc3\xc3\x2c\xde\x9a\x87\xfb\xe0\xbd\x89\xd3\x68\xf0\x96\x7b\x39\x3a\x4b\xb4\x8c\x5c\x05\xa7\x76\x2f\x63\x69\xc1\xfc\xde\x44\x4d\xba\xe4\x78\xef\x25\xc3\xef\xf0\xb8\xcc\x35\x59\xac\x7b\x99\xf3\xe4\xf0\xc3\x20\x80\x62\xc2\xd2\xaf\x49\xf8\x97\x16\xdb\x2e\xec\x32\xcf\x89\x07\x68\xeb\xcb\xe4\x66\xc0\xef\x5d\xfa\x0e\xde\x3f\x7e\xaf\xc9\xd6\xdc\xaa\x3a\x55\x60\xdd\xc6\x4c\x92\x15\xba\xb7\x8e\x55\xe2\xfc\x36\xd1\x9f\x1d\x13\x37\x52\xea\xb7\x13\x16\xd6\x42\x9b\x28\x78\xaf\x3b\x6d\xa2\x44\x44\x8d\xc7\x75\x69\xbc\x5f\xe1\x72\x61\x5f\xbd\xbf\xe0\xb6\xef\x97\x98\x89\x70\x68\xf7\xab\x8f\x97\x8b\xf9\xcf\x5c\xca\x5a\xb7\x1f\xc0\x65\x64\x46\x3d\x4b\x6f\xec\xa5\xc8\xde\xdd\x6f\xa3\x34\x6a\x3b\x7a\x6b\x2f\xae\xc0\xff\xfe\xf4\xe4\xe2\x59\x7b\x7f\x72\xb5\x92\x5c\x58\xbc\x92\xeb\x9f\x01\x19\x79\xa7\xdf\x04\x64\xd4\x21\xe7\xfe\x71\x78\x29\x50\xb8\x61\xf0\x8a\xd7\xf0\x03\xeb\x56\x0e\x08\xeb\x83\x90\xad\xf8\x82\x7f\xe0\xd7\x8a\x37\xce\xf3\xe3\xd7\x9a\x8a\x94\xe7\x68\xee\xb8\x4d\xf0\xb2\x62\xf1\x1f\x78\xaf\xf4\x02\x79\x0e\x73\x4e\xb1\xe1\xcf\x69\x44\x47\x5a\x60\xb6\x5d\x44\x8b\xe7\xc7\x2b\xe5\xa1\x78\x60\x95\x8a\x5c\xe8\x03\x47\x54\x64\xc8\x9e\x33\x8f\xbe\xff\xe0\x89\xa5\x60\xef\x51\x3d\xc8\x18\x18\x40\x41\x47\x1f\x6c\x9e\xf4\xe0\x78\x7e\x9c\x4e\x57\xc8\xf6\x90\x55\x4c\x9d\xc4\x63\x58\xa4\xf9\xa7\xe4\xef\x41\x29\x58\x0f\x87\x43\x67\x05\xdd\x78\x50\x04\x56\x3b\x2e\xea\x63\x2c\xa3\x37\x80\xce\x3c\x28\x08\x2b\xb4\xf4\x31\x4a\xd2\xc8\x4a\x08\x75\x84\xb6\x28\xe4\xb5\x81\x82\x66\x26\x5a\x10\x33\xc2\x4b\x3c\x64\x36\xd7\x97\xe4\x29\x8a\x19\x2d\x2b\xf9\xb0\x0e\x02\x5f\xdb\x2a\xf7\x02\x43\x1f\xe5\x5e\x2e\x3e\x1e\xf8\xea\x1c\x1f\x45\x5d\x70\xb6\x0f\xb1\xa9\x55\xfd\x3d\xe4\x32\xd7\x16\xec\xa9\xc8\x37\x20\x21\x4f\x25\xb9\xd1\xb4\x4f\x9e\x77\xcd\x7e\xf0\x59\x6f\xd6\xf1\x79\x67\x5b\xde\x9e\xee\x6d\x85\x59\x15\x86\x86\xab\xb0\x30\x34\x5f\x3b\x70\x3f\x4f\x33\xde\x1f\xc4\xf7\x49\xb6\xa6\xda\x24\xd9\x1a\xdb\x24\xf3\xc5\x80\xcd\xdc\x09\x97\x1d\xc0\xca\xb8\x02\x2d\x93\xff\xfa\xb1\xb8\x14\x6c\x6e\x28\x45\xd7\xfe\xc7\xbc\x34\x83\x28\x3d\x3d\x69\x0f\x7f\x90\xb8\xcc\xa7\xe6\x83\x81\x76\xf1\x67\x92\xc1\x5b\xe4\xd1\x09\x10\xf0\x2d\xca\x9f\x1e\x53\x79\xb8\x4a\x5d\xd4\x61\x85\x61\x3a\xa2\xbb\x04\x81\xe4\x87\x43\xff\x98\xc8\x5c\x13\x99\x47\xa7\xb0\x84\x3a\x64\x2c\xad\x25\xf9\xb7\x8c\x0a\x96\x91\x61\x4b\xc2\x3b\xfe\x41\xd0\xe4\xc8\x64\x15\x53\x13\xf3\x68\x07\x05\x51\x79\xc8\x5b\xaa\x52\xe0\x19\x72\x3e\x22\x0f\xe9\xc6\xd4\x64\x3e\x43\x1e\x18\x18\xb0\x89\x52\x45\xf7\xe0\x2f\x66\xc4\x83\x87\x54\x1e\xf5\xf0\xf7\x89\xce\xd9\xb6\x37\x65\x06\xc6\x41\xec\xc8\xf2\x47\x99\x53\x94\x2a\x40\xfa\x21\x5e\x91\xc6\xcf\xcf\x44\x26\x0d\x23\xfb\x60\x20\xad\x75\xf5\x33\x91\x75\x67\x19\xad\x4c\xd6\xe7\xe0\x88\x3b\x53\x21\x1b\x30\x1b\xdc\x59\x0f\x90\x47\x7f\x79\xdd\x4a\x1e\x23\x3d\x8b\xce\xb7\x4f\x20\x87\xbb\xf3\xcd\xe6\x3f\x32\x9b\x52\x28\xd3\x87\xe7\x5e\xdd\x32\x7e\x76\x0c\xea\x40\x52\x9f\x27\x51\x87\xe6\xbf\xcb\xbd\xe9\x9e\xf6\x60\xd9\x24\xa5\x7e\xb8\xce\x8d\x66\xf1\x10\x30\x51\x45\xf0\xf3\x04\x4b\x46\xa7\x0f\xce\x06\xe2\xc2\xb3\x98\xaa\x65\x94\x24\x4e\xe2\xc1\xe5\x0d\x29\xfb\x43\xa0\xa1\x8e\xfc\xf1\xc9\x40\x43\xa2\xff\x72\x0e\xed\x4f\x77\xb0\x27\x8d\x97\x9d\xc8\x92\xb3\x10\xad\xb9\xcd\x8b\x7c\xc2\xb3\x54\xef\x53\x5c\x4c\xca\x32\x66\xa1\x56\xe7\xc2\x74\xae\xe4\x13\x33\x82\xf9\x83\xc1\x92\x31\x20\x9e\x8d\xbc\x58\xca\xbc\x35\x43\xa0\xe8\x72\x58\x3d\x6d\x8e\x29\x4b\xb0\xad\x73\xb3\xf6\x76\x0f\x30\x6c\x09\x97\x79\x46\xe0\x7b\xb6\x68\xcf\x32\x91\x4d\x5c\xb5\xeb\xa3\xb8\x27\x61\x78\x7f\xc7\xd9\x30\xf9\xcf\x5b\x40\x63\x2b\x49\xac\x01\xe2\xed\x94\x19\xec\x77\xab\x87\x96\xa4\xcf\x2b\xda\x03\xd0\xab\xf5\x83\xe7\xf3\x45\x13\x28\x32\x11\xe8\x47\x26\xfc\xf9\x10\x6b\x4b\xf4\x95\xb9\x28\xbe\x7f\x48\x24\xde\xbb\x0d\x10\x7e\xb9\x2a\x29\x58\x61\x72\x4b\xc1\x8a\xd6\xc5\xeb\x48\x5a\x19\x7c\x88\xe3\x70\x8d\xeb\xd0\xc6\x17\x94\x5b\x26\x07\x35\xe1\xc6\x42\xb4\xe2\xf5\xbc\x0e\xe9\x26\x44\x7b\x1d\x83\xd5\xb4\x2f\x1f\x17\xdd\x5a\xba\xd6\x4d\xff\x91\x53\x6a\x7e\xe0\x0f\xad\x51\xd9\xfa\x5d\xef\x86\x89\x5b\xa8\xb4\x20\xa1\x0b\x8d\x16\xe7\x66\xe9\x9d\x05\xc3\xb3\x08\xad\x2c\x62\x2e\x62\x19\x1a\xe2\x78\x9d\x08\x0f\x2d\x62\x0e\x0c\xaa\xad\x53\xd9\x82\xdd\x10\x72\x53\x91\xc7\xc2\x69\x4b\x35\xe3\xc2\x4f\xcb\x6d\x5f\x97\xa6\x4a\x8c\x75\xd5\x5f\x99\xdd\x5d\xd8\x05\x19\x11\x73\x5d\x9d\x3a\x2c\x2b\x0a\x2f\xad\x24\x16\xe9\xc6\x83\xdb\x60\x5d\x9e\x38\xfa\x29\x6e\x22\xc0\x99\x9f\xcb\x6b\x76\x15\xcd\x47\x61\xc5\x56\x51\x2c\x4a\xaf\x5e\xf6\x27\xc5\x74\xf2\xb6\x41\x67\xc6\xd6\xd1\x18\xc8\xa1\x8b\xd9\x34\x29\xc2\x45\x2b\x9b\x5b\x25\x89\xba\x63\x3f\xbf\xd6\xe0\xc6\x32\x47\x85\xba\xb0\x55\x0c\xdd\x45\x91\xec\xf3\x50\x84\x55\xcd\x13\x42\x11\x4d\x2f\x2b\x41\x82\x8a\x9c\x00\x9e\xe0\x46\xc6\x59\x95\xe0\xc3\x9c\xdf\x85\xbc\x22\xd3\x9f\xad\x8a\x19\x76\x36\xd6\xae\x1a\x40\x91\x50\xe4\xd2\x35\x02\x1d\x3b\x49\x52\x75\x99\x91\x65\x71\x5b\x1f\x6e\x13\xf7\xb3\x74\x7f\xb5\xa1\x13\xa0\x1f\x48\xf0\x0e\x1b\xdc\xae\x0a\x13\xe6\xe2\x3e\xdc\x70\x43\x2f\xbb\x10\xc4\xe4\x71\xa5\xbd\xc2\xaf\x3f\x79\xb7\x85\xde\x4a\x4b\x87\x45\xcc\x65\x63\x41\x2c\x62\x2e\x93\x0f\xb5\xaf\x8e\x11\x38\x2f\xd1\x85\x64\x41\x7d\xe4\xea\x18\x69\x8b\xb4\x5c\xea\xba\xf1\xac\x8e\x41\x38\x0c\xc7\xea\x18\x69\x7b\xbc\x30\x94\x4e\x33\xe1\xf5\xbb\xed\x33\xec\xe2\x32\x99\xb9\x98\x44\x8c\x66\x33\x4b\x2d\xb4\x50\xaa\x1a\x17\x29\x47\x8d\x72\xbe\x42\x87\x6d\xdb\xfa\x04\x74\x04\x98\x03\xc9\xc7\x22\xe7\xa8\x49\x2b\x16\xce\xe3\x19\x1f\x74\x85\xa0\x3a\x02\xa0\x4a\x30\x22\x63\x49\x50\xf6\x9d\x63\x9d\xcf\x28\x1e\x7c\xc8\x1e\x38\x67\xd8\x03\x6f\xda\x85\xf8\xc2\x98\x98\x0b\xee\x40\x55\xeb\x82\x3b\x30\x69\xd6\x42\x78\x21\x05\x5c\xc6\x61\x76\xdf\x88\xc3\x6c\xa0\x8e\xf5\xe3\x0e\xba\xac\xee\x1a\xae\xa3\xfd\x40\x67\xa4\x79\xc8\x30\xd4\x65\x2e\x2c\xa6\x75\x5e\x59\xc3\x25\x65\x89\xa6\x4b\xca\xc4\xa6\xcb\xc8\x7e\xcc\x02\x81\xa0\x7f\xdd\xcd\xc5\xc8\xe9\xde\x5b\x47\xd8\xfc\x9d\xfd\xf6\x10\x4d\x8d\xfe\x81\x61\x62\x94\x9f\x65\x08\xa2\xb8\x32\x71\x00\x70\x8e\x13\x62\xe4\x16\x23\x81\x48\x61\xec\x82\xfd\x68\x86\x29\x5c\xb7\x97\x84\xd3\x37\x3c\x33\x57\xd2\x32\x3c\xb3\x74\x87\xf0\xcc\x9a\xb5\xac\x9b\x87\xba\x58\x74\xcb\xb9\x39\x1f\xe2\x33\xcb\x02\xac\xcc\x52\x4a\xa7\xea\x93\xf4\xe2\x5a\x8f\x46\x9f\x56\xc2\x4a\xdc\x05\x83\xdf\xd0\x7c\x61\x61\x3d\x6d\x44\xb2\x85\xf5\xb4\xaa\xff\xa5\x29\xd0\xb0\x2d\x1b\xc5\x53\x6c\xe1\x42\xa5\xd1\xc7\xd2\xfb\x5c\x32\xa5\xcf\x94\xa7\x79\x09\x9c\x65\x80\x83\xd1\x5d\x18\x52\x6b\xe4\xb2\x30\xa4\xd6\x48\x67\x61\x48\xad\xd1\xca\xd2\x84\x08\xd6\x6d\x61\x48\xed\xdb\x6e\x2d\xe0\x74\xb1\xe1\x4b\x92\x6c\xc2\x96\x68\xa8\xb2\x56\x1a\x97\x32\xf9\x25\x70\x4c\x06\x0b\x6b\x79\xc3\x85\xaf\x95\x89\x3e\xfb\x22\x3e\xb3\x12\xa9\x05\x97\x62\xdc\xb5\x45\x7c\xe6\xa4\xf7\x24\x36\xd5\xd0\x62\x61\x62\xad\xb9\xcf\x22\xc9\xa9\x46\x17\x4b\x3d\x13\xe2\xe0\xa5\xb9\xb5\x17\x19\xec\x8b\xe6\x44\x6b\x4f\xea\x5b\x07\x33\x5f\x57\xcb\x10\xce\xd3\xfe\xc5\x03\xeb\x8b\x52\x7f\x7a\x7e\x2d\xf9\x1c\xf1\x73\xeb\xba\xe6\x4d\xf8\x1a\x8e\x84\x3f\x5e\x25\x4e\x40\xfb\x8a\x93\x40\x68\xda\xb0\x6e\x59\x4b\x03\xdb\x8a\x17\xac\xab\xb9\xc0\xba\xfd\x30\x0b\x0f\x9b\x99\xc0\xae\xfc\xe3\xe1\xb4\xd9\xd1\xa2\x6c\x25\xa7\xc1\x92\xbd\x72\x64\xd6\x17\x61\x58\xee\x1f\x8f\x74\xe9\x4a\xb3\x3e\x11\x86\x3a\x9f\x4b\x0f\xd0\x9f\xc8\xcc\x92\x61\x7f\xad\x3a\x78\x7d\x02\x04\x82\x69\x18\xad\xaf\xd3\x36\xd8\x33\x6b\xb9\x7f\xdc\x52\x78\xf1\x6c\x83\x3d\x1f\xa0\xd2\xfe\x31\x4b\xe1\xab\x64\xe3\xf6\xae\xc1\xe2\x3e\xcc\xf9\x10\xfe\xa1\x88\x85\xd3\xb6\x8f\xa0\x45\xa7\x3c\x28\x4f\xca\xbf\x77\x98\xd2\x92\x8d\xaf\x98\xd6\x9f\xfb\xc8\x5c\xe1\x94\x17\x70\x0b\x06\xcf\xc1\x53\xf0\x70\xab\xb9\xec\xf3\xa3\x4f\xc6\x22\x04\xb4\xb2\x99\x8d\xe3\xbb\x4f\xcc\x8d\xe3\xbb\x16\x88\x1b\x0b\x6c\x45\x69\x1b\xa1\x89\xea\x8a\x7d\x0a\x1b\xf0\x90\x5b\x55\xfb\xcd\x7d\x8a\x7a\xc0\x03\x6f\xa5\x8e\x76\xeb\x03\x3f\x2d\x03\x4f\x8e\x8b\x3d\x3f\x07\x78\x23\x60\xf1\x36\xde\xd7\x05\x6c\xcc\x05\x4f\xf7\x76\x70\x9f\xec\xcb\x97\x0d\x93\xbf\x72\xe5\x6c\x0d\x74\x60\xc2\x56\xf8\x02\xa9\xd9\xaa\x92\x2e\x1b\x13\xef\x25\x47\x00\xba\xcb\xf2\x62\x64\xa0\x23\x89\xaa\x46\xa0\xfb\x72\xe5\x2c\xc3\x85\x72\x68\x77\x91\x04\x31\x56\xd1\x76\xd1\xb2\xcf\x0f\x56\x51\x77\xf8\xe9\xef\xec\x3d\x24\x68\xc3\xaf\x69\xa2\xbd\x8b\xa9\x19\x81\xa1\xb8\xf3\xc0\x4c\x50\x1e\xf5\xf9\xbb\x08\x3f\x2b\xa1\x9b\x3c\xe4\x68\x9b\x25\xfe\xb4\x8c\x2d\xff\x70\x5c\x57\x94\x3e\xab\x2b\xca\x58\xa8\x9e\xe4\x7b\x36\xa9\x58\x65\x70\x76\xd5\xf6\x9f\x8b\x69\x2b\xe2\xf0\x31\xbf\x89\x00\x5d\x1d\x99\xa8\x39\xa6\xe5\xdc\x78\xa9\x7b\x9b\x6e\x38\xa8\x4c\xca\xbb\xcd\xd9\xa5\x6d\xc3\xfe\x31\x4e\x61\x3e\xac\xdd\x5c\x3b\xe0\xe8\x07\x65\xd6\x05\xd7\xf4\x2a\x86\x20\xf9\x30\x8d\xd5\x26\xbf\x69\xc9\x3a\x30\xd3\x10\xce\x4d\x7e\x53\x13\x54\xed\x0e\x74\xdc\xe3\x9b\x48\xd2\xb2\x3a\x9b\x94\xed\xe5\xfc\xd3\x87\x7f\x93\xc3\xbd\xe4\x80\x1c\x17\x17\xfc\xc7\x5c\x5d\x32\x1a\x1b\xe3\x6d\x93\x77\xed\x10\x70\xcb\x70\xe9\x52\xc5\xad\x89\x8f\xbe\xba\x3b\x78\x13\xb8\xbd\x98\x72\x2b\xd5\xdd\xc1\x41\x72\x1a\xc4\x9c\x36\x8f\xe8\x0e\x5c\x19\x44\x81\x70\x1a\x76\x7a\x53\xdf\xd1\x1e\xfa\xb1\xed\x02\x0a\x16\x1f\xb3\x6e\xa5\x9b\x1b\xb3\x6e\x5d\x6c\x77\x08\x35\xbf\x63\xd6\xad\x98\x78\xa7\x14\x86\x0b\x69\x13\x7e\xba\x66\x99\xa7\x29\xec\xe1\x1e\x3c\x2d\x3c\x6c\xc3\x7d\x60\xbd\x49\xb4\x6a\xba\xb2\x3d\x9c\x80\xf5\x9d\x00\x00\x29\x9d\x71\x19\x95\xce\x64\x7d\x27\x60\x3f\x2e\xbb\xc0\xb9\xec\xf6\x43\x2c\x03\x29\x90\x1a\x24\x1f\x7a\x7b\x3a\x03\x56\x05\x71\x8e\x89\xe0\xf6\xf4\x6d\xed\xef\xbc\xca\x44\x55\x2c\xba\x65\xc0\xf6\x64\x02\xae\x22\xcc\x58\x06\x9c\xd8\x53\x4c\xb2\x92\x98\x04\x44\x33\x23\x42\x01\x52\xba\xa0\x79\xe6\x6f\x45\xd1\xee\x3f\x91\x9f\x7d\xeb\x6e\x52\xc0\x27\xc9\xbe\x11\x43\x49\xb6\x7e\xdc\xd5\xa5\xd7\xf6\xc6\xb6\x5a\x9f\xf1\xfd\xe4\x2e\xf8\x71\xf1\x07\x0d\x7e\x0c\xd5\x48\x2a\x84\x41\x75\xd2\x42\x0c\xaa\x55\x0d\xef\x1f\x43\x95\xe6\x5a\x9b\x8c\xaa\x6a\xaf\xb7\xa1\xa2\xf5\x15\xd9\x0f\x6f\x4e\x8f\xcf\x03\x74\x6e\xa7\x29\x55\xbd\xb3\x90\xf2\xf8\x4e\xde\x84\x93\x56\x41\xb6\x1f\x20\x75\x61\x7e\x9c\xd6\x48\xf2\x41\x34\xe9\x9c\x3d\x46\xd9\x0a\x0b\x37\xd1\x7b\xd4\x7c\x6e\xd2\xa8\x2a\x13\xdd\xa4\x51\xcd\x33\x81\x4d\xf6\x91\x75\x26\xfd\xd8\x27\x70\x8a\x0a\xa4\x51\xd5\x95\x7d\xff\x98\xab\xcb\xe0\x8b\x1b\xa1\xcf\x21\x5e\x2f\x04\x7b\xe2\x3e\x26\xd9\x89\xca\x3f\x7e\xea\xd2\x6f\x7e\x6f\x16\xd4\xb3\x85\x49\x76\x6e\x1f\x26\xd9\x2a\x12\x36\x01\xa4\x0f\xe7\x88\x49\xb6\x66\xe8\x9b\x00\xd2\x87\x68\x4a\xd6\x55\x95\xe8\x7b\xe3\x13\x2e\xb9\x24\xeb\xaa\xda\xe5\xbd\x59\x5b\xd1\x77\xbb\xdb\xf6\x09\x9c\x62\x26\x71\xa2\x55\xf9\xee\x17\x38\xbd\x34\x49\xae\x9a\x97\xef\x0b\x9c\x9e\xd1\x97\xb5\x95\x00\x13\x26\x5a\x79\xf3\x26\x95\xea\xf8\x3b\xff\xea\x7e\x05\x9c\x45\xc5\xa6\x3b\xb9\x86\x57\xc0\x59\xbc\x97\xc5\xce\x8e\x59\x6c\x91\xe5\x15\x29\x04\x9c\x09\x49\x53\x5f\x09\x0a\xe5\xcf\x85\x67\x91\x3e\x26\xe4\x02\x7c\x22\x08\xe3\x92\xa5\xc3\xf8\x97\x1b\xfb\xee\x23\xdb\x8a\x2c\x96\x59\x78\xb1\xf7\x03\x59\xdc\x1c\x1c\xf0\xb5\xaa\xd8\x1f\x30\x8b\x80\x9f\x08\x62\x7d\x54\x14\x9e\x20\x6c\xba\xf3\x34\x99\x99\x43\x39\xc4\x7b\xb8\xf2\x9d\x72\x3a\x10\xfb\xc7\x6f\xb9\x15\x41\xbd\x87\xbc\x05\x38\xf2\x1e\x80\x77\xd8\x42\x25\x3c\x88\xf7\x1e\xf9\x38\xa2\xc9\xe9\x3b\xb9\xfa\x31\xfc\xa0\xda\x89\x39\x3a\xb4\xe3\x3d\x01\x1d\x1c\x78\x49\x71\xea\x2b\xfb\x3d\x01\x1d\xc1\xd8\xab\xe3\x7d\xb7\x2d\x1a\x15\x70\xe0\xbd\x30\xef\x87\xe9\x7a\xaf\x93\x32\x83\xfd\x98\xa2\xd1\xc3\x3a\x98\xfa\x73\x27\xbc\x3f\x06\xa9\xf8\x8c\x7d\x2f\xcc\xd2\x21\xe5\xef\x85\x60\xdb\xb1\x2e\x04\xdb\x61\x7d\x4c\xe8\x11\x7a\xbd\x97\xda\xf1\x1c\x58\x27\x89\x6c\x81\x4e\x08\xba\xfb\x2a\xad\x6a\x96\x81\x9a\x07\xfa\x8b\x7b\xbe\xf2\xe1\xf7\x52\x2c\x49\xaf\x4a\xb4\xe0\x6f\xdf\x82\xe9\x39\xd2\xb9\xb7\x60\x7a\xee\x6a\x15\xb6\x01\x15\xc8\x5b\x9c\x81\x75\x14\xbb\xb3\x23\xea\xab\xc2\xfa\xe8\xab\x9a\xbf\x03\x9b\xf0\xa8\x97\x42\x6a\xf5\xaa\x97\x72\x25\x90\x4e\x69\x42\xf0\x22\x9e\xd2\xb6\xe0\xad\xac\x9c\xdb\x4f\xfe\x54\x6d\xb6\xdf\x8a\x4a\xc0\x5d\xaa\x8c\x0b\xd5\x7c\xb1\xc6\xbe\xb2\xec\xb8\xc0\x59\x5d\x07\xeb\x0b\x83\xbf\x13\x23\x50\x83\xd5\xb7\xe9\x65\xe0\x2a\x36\xa1\xf0\x0f\xf6\x12\x16\xf5\x6d\xac\x04\x2f\xe9\x17\xdb\x6c\xc5\x13\x6f\x03\x22\xde\x7d\x6f\x73\x2f\x99\x41\x4b\xb1\xb5\x0d\x58\xae\x1c\x60\xea\x2f\xe4\x1f\xb8\x11\xc0\x14\xbe\x4d\x0c\x74\x64\x30\xb0\x5b\x07\x59\x7f\x13\x0a\xf7\xd2\x32\x7b\xe9\xba\x77\xd6\xd1\x35\xea\xee\x25\x7b\xd6\x99\x81\x7d\x76\xd7\x94\xb5\x20\x2c\x62\x0f\x7f\x67\x06\x61\x7d\x9c\x24\x60\x82\xdf\x8e\x13\x8a\x48\xd7\xc5\xc6\x3f\x29\xdb\xdb\x39\x5e\xbc\xd1\xde\xce\x46\x64\x99\xc5\x77\x12\x44\x16\xd2\x6c\xfb\x0d\x81\x65\x65\xd0\x82\x5d\x59\x16\xf1\x00\x24\xbc\x67\xfd\xdd\xec\x7b\x87\x7f\x78\x5e\xfc\x03\x08\x91\x44\xbc\x44\x13\xea\xbc\xd1\xdf\x48\x7e\x97\x0f\x35\x56\xde\xb4\xef\xa0\x85\x27\x78\x48\x15\x2c\x3f\x8a\x25\x81\x0f\xab\x6a\xf9\xe8\x17\xab\x6a\x99\xce\x77\x60\x56\xce\x35\xfd\x4e\x95\x2e\x80\x41\x80\x43\xb9\xab\xd7\xa0\x3e\x82\x87\x81\xb4\xdc\xf2\x6b\x50\x1f\x51\x09\xfb\x68\x19\xdc\x77\x1a\xf8\x95\x47\xda\xab\x02\x6b\x5a\x89\x78\x93\xe2\xd8\x44\x4f\xe0\xa2\x62\x2c\xad\x0c\xfb\x9d\x02\x44\x19\x5b\x69\x9d\x3e\x5f\x6c\xa5\x65\xbb\xdf\x1b\x35\xa3\xb3\xbc\x31\x30\x87\x57\x78\x31\x95\x96\x1f\x7e\x6f\xac\xdc\xa5\x0a\x84\x8d\x96\x6d\x7c\x6f\xb4\xc0\xc3\x32\x2e\x05\x62\xc9\x8d\x3d\xbe\xeb\x7e\x03\x4f\x71\x5c\xb5\x52\xf4\x89\xe9\xb3\xb1\x34\x5e\x4c\x9f\x55\x08\xbe\x0f\x8b\x25\xf5\xc7\xf2\x59\x56\xf4\x7d\xb0\x38\x1f\xb6\x4d\x35\x39\x03\x93\xb7\x3e\x89\xe2\xc3\x8a\x72\x6f\xbe\x29\xb6\x12\x3a\xec\xa0\x55\x3f\xbe\x0f\x90\x4a\x51\x1f\xed\x72\x24\xbb\x28\xd3\x12\xe9\x31\x8a\xd6\x92\xe7\xc5\x28\x5a\x56\xff\xc5\x28\x5a\x2e\xf8\x5d\x38\x91\x70\x5b\xbe\xcb\x29\x58\x76\x49\x2d\x33\x85\xd3\xb2\x53\x00\xba\xe5\x92\x32\x7d\xec\xa3\x55\xee\xbd\x8b\x25\xf5\x00\x2f\x14\xeb\x70\xd6\x2f\x76\xd3\xaa\x2c\x5e\xec\xa6\xe5\xee\x5f\x3d\xe2\x50\x11\xbd\xd8\x4d\x9f\x09\x1b\xf0\x9f\xfe\xae\xea\xc8\x32\xf0\x73\x63\xbf\x9b\x2d\x80\x6b\x78\xc9\x68\x9f\x87\x7f\xb3\x05\x5e\xa7\xa9\x8c\xb3\x2c\xfc\xc0\xfc\x63\xc5\x6a\xcb\x3a\x18\x06\x78\x36\x7e\xec\xd7\x94\xa1\x7f\x31\xb4\xe9\x86\x8b\x7a\x0d\x1e\x70\x48\xa6\xb7\x22\x39\x51\x7f\x2f\x40\xb2\x16\xda\x0b\xd3\xfa\xbc\xc6\x09\x38\xbc\x2b\xc9\x98\xe1\xb3\xfc\x7d\x9d\x28\xbb\xf9\x22\xf2\xf7\x1c\xbc\x4c\x54\x1c\xf9\xb1\x3e\x55\xcb\xc0\x97\x4c\x1a\xba\xc7\xbc\x3f\x76\xa7\x6a\x15\xfa\xfe\x58\x9c\xaa\xca\xff\xfd\xb0\xa6\xf7\x1c\x7c\xe8\x9c\xe6\x9f\x76\x70\xef\x8f\xff\x49\x3f\x83\xf7\x1b\x74\x60\x19\x33\x72\x51\x4f\x8d\x9e\x36\x0e\xef\xa7\xfa\x1d\x68\x35\xa2\x56\xfc\xf4\x7e\x6a\x2e\x04\xeb\x05\x2c\xd6\xf9\x73\x1a\xbf\xf2\x97\x9a\x3e\x36\xe3\xc3\x84\x5a\x2b\xcc\x0f\x13\x6a\x23\x48\x7d\x07\xde\x02\x59\xa7\x4a\xe7\x6c\xcd\x04\xa7\x0d\x3a\x0d\x2a\x65\xfc\x1d\xa6\x75\x86\x20\x59\x89\x49\x84\x7f\x60\xcb\x01\xea\x7e\x86\x39\x92\x9d\xff\xd2\x42\xfa\xf4\x9f\x6d\xf3\xc2\x07\x9b\x31\x2d\x33\x0b\x88\xd2\x47\x56\x0f\x75\xae\x1f\xc6\xd2\x1a\xe2\x7d\xa7\x9b\x41\x47\x3f\x56\xad\x6a\x48\xfa\x9d\x3a\x86\xb1\x4c\x1f\xa2\xac\xe1\xf6\x7d\xe4\xfb\x50\x23\xfc\x9d\x38\x34\x4c\x5b\xbc\x82\x01\x80\xe8\x00\x0f\xe5\x33\xdf\x8f\x41\xab\x6a\x34\xbf\x4b\xbd\x0f\x28\xfc\x5d\xae\x20\x83\x63\x03\xad\x45\xf0\x67\xb0\x46\x13\x73\x7f\x97\x28\x62\x6b\x8d\x01\xaa\xdd\xb2\x84\x61\x4f\x93\x21\x58\x41\x52\xb5\x6a\x9c\xfb\xfd\xb8\xb2\xaa\x71\xe9\x77\x81\xbf\x87\x23\x88\xbf\xb6\x65\xc9\xc2\xc1\x58\x32\x2e\x81\x8f\xbc\x1e\x0a\xf6\xbe\xc2\xbe\x73\x80\xbf\x22\xd4\x00\x54\x5c\x4a\xfa\x2f\x09\x35\xc0\x19\x5c\x69\xfa\x87\xca\x54\x7f\x07\x68\x6e\xa8\x0f\x7b\x6a\x2d\xb0\x3f\x7c\xec\x94\xf8\x7d\x68\x19\x0f\xc5\x85\x5f\x11\x77\xfd\x83\xe5\x1e\x36\x4e\x8f\x60\x5b\x8b\xbb\x96\xb1\x38\xb7\x52\x75\x0a\x80\x5a\x55\x52\xc3\x4d\x7e\x58\x1b\x29\x1a\xfb\x0c\xc8\xa4\x5f\xf6\x57\x5d\x0c\x16\xaf\xaa\xf0\x76\x1b\x5a\x1e\x03\x3f\x30\x5e\x17\x7b\x9b\xfa\x6e\x9b\x37\x6d\x3a\x44\x5f\x92\x7e\xe8\x7b\xf0\xa9\x79\x34\x4a\xce\xd7\x94\xca\x37\xff\xd1\xac\xbd\xdb\x64\x40\xe0\x58\x67\x74\x8f\x87\x51\x7c\xbe\x46\xa8\x3b\x6e\xf9\x2f\x05\x67\x09\x8a\x96\xf7\xdd\x26\x9a\x3f\x67\x5f\x1f\x7d\xb1\x10\x3f\xae\xac\xea\x20\xf1\xa9\x7a\x54\x8b\xfd\x75\xa1\x87\x07\xfe\x7a\x42\xef\x3f\x95\x26\x8c\xde\x49\x1a\xef\xa9\xea\xc2\x1b\xb6\xd0\xdb\x01\x0e\xe2\xeb\x02\xec\x21\xeb\xfa\x0a\x74\x87\xd4\x73\x03\x4e\xf8\x23\x63\x88\x8a\x91\xcf\x74\xf7\x73\xfe\x45\xf3\xbe\xee\x64\x80\x2c\x9c\x0c\x93\x8c\x84\x9f\x31\x0d\x6e\x0d\x37\xf0\x45\xee\xaa\x1f\x9e\x1b\xa8\xe1\x17\x39\x01\x20\x23\x9f\x88\x6e\x28\x1f\xda\xca\x26\xa7\xf3\x91\x50\x44\x67\x9b\xcf\x48\xd7\xaa\x54\x3e\xf3\xe1\x8b\xd9\x91\x8b\xef\xe8\x7a\xa1\x54\x47\x14\x77\xb8\xd6\x3f\x8c\xaf\x13\xd1\x53\xaa\x26\x28\x23\xa1\x67\x5a\x43\x74\x61\xc4\x91\xe8\xc2\x1c\x87\xab\x6f\x0b\x81\x87\x57\xfc\x48\x49\xa2\x19\xfc\x67\x0a\x7d\xc3\x24\x7d\xda\x61\x1b\x3a\xe0\x33\x25\x89\xaa\x94\xcf\x94\x24\x46\x62\xfa\xcc\xa1\x6f\xcc\xa8\x8f\x1c\xfa\x7a\xf7\x7c\x53\x64\x97\x26\xcc\x34\xe8\x00\x7c\x13\xe7\x1b\x53\xf7\x9b\x7a\x9a\xb8\xc6\x53\x90\xa5\x47\x33\x17\xdc\x6a\x41\xcf\x96\xb7\xf7\x92\x4d\x12\x5d\x99\xd9\xf4\x21\xe4\x1d\xf2\xe3\x1b\xab\x51\xc2\x3e\x02\x66\x9b\x38\xfb\xcb\x80\xd9\x62\xe8\x9d\xc6\x25\x7e\xe0\x11\x81\xa4\xe8\xd3\x56\xda\x44\x62\x1f\x5e\x76\xc6\x18\xfb\xc8\xa1\x6f\xd6\xe5\x4f\x4b\x69\xb3\x93\x7d\x77\x1a\x9a\x58\x4b\x5b\x7d\x17\xec\xd6\xd7\x40\xa4\xbe\x75\xe8\xf0\x78\x6b\x7f\x75\xba\x93\xb7\x53\xf1\x54\xdc\x9a\xf1\x7b\x71\x3d\x7a\x1e\x88\x95\x8f\x73\xa1\xfd\xe3\x5c\xa4\x8b\x24\x20\x31\xe4\xf7\x87\xbb\x9d\x11\xed\x3e\x73\xd9\xaa\x30\xf8\x1e\xa7\x62\x59\xf0\x5d\x6e\x83\x4c\xf2\xec\xff\x32\xc8\xa4\x7b\xf7\xe4\x0b\xc2\x0f\xa1\xf7\xac\x64\xc4\x49\x37\x12\x1b\xec\x61\xbc\xc2\xcf\x94\xfa\xa7\xa8\xbb\xd8\x08\x1e\x98\xdf\x12\x78\x2a\x99\xcc\x04\x56\xea\x5b\xc2\x4e\x4f\x4b\x1b\x1f\x51\x62\xe5\x75\x65\x4f\x69\xf7\xc5\x14\xd3\xb4\x4b\x12\x66\x6e\x13\xf3\x89\x7d\x4b\xf0\x45\x83\xe5\xe2\x0b\x97\x21\x2b\x7b\xb6\x11\x7c\x8f\xe4\x4a\x3c\xf2\x23\xc1\x07\x1c\x73\x9a\xc8\x1f\x7d\x5b\x7b\x7a\xa7\xfc\x63\x25\x5b\xde\x8c\x5b\x93\x23\x2b\x4d\xc3\xa8\x31\xa4\xd9\x6d\xf5\x32\xfb\x30\xd4\x4e\xa6\x68\x27\x2c\xd6\xd2\x10\x4f\xac\xc8\x9c\xfc\x22\xc2\x7b\xd2\x84\x8e\x5f\x9d\x14\xc4\xaa\x4c\x6a\x22\xe6\xbf\x95\x5a\xfe\xa1\x65\x7f\xff\x9b\x22\x66\x5a\x7e\xa7\x96\x49\x4e\x9c\x34\x11\x30\x93\x8f\x79\x05\xda\xdf\xb1\x35\xf5\xe2\x7e\x85\x59\xec\x7f\x31\x1e\xf4\xd6\xff\x71\xb0\x2d\x6f\x7a\x32\x9c\x24\x7d\x21\xc3\x49\x32\x53\x5f\x4e\x85\x06\x5f\xae\x2a\xe0\x63\x00\xfe\x8f\x6c\xe2\xf0\x77\x25\x87\x68\x3e\x38\x1d\x47\x3f\x0c\xc0\xcd\x1c\xfa\x99\x91\x3f\xd9\x23\xb3\x9f\xfc\x1b\x86\x84\x27\x92\x0a\x13\x9e\xc0\xe1\xc4\x01\x4b\x7a\x71\xdf\xc7\x71\x64\xf4\xf2\x93\x0f\x0c\x44\x31\x1b\x8a\x23\xed\xcd\x7e\x2b\x14\x07\x4a\xd4\x0b\xfe\x36\x0e\xd3\x9f\xfc\xa8\x53\x1c\x47\x3a\x10\x58\x6b\xf2\x87\x7d\xdd\x82\xef\x07\xee\x0b\xcd\xd6\x06\x3d\x3c\x6c\xae\xb1\x65\xfc\xca\xe7\x49\x99\xc1\x4f\x23\x89\xfe\xee\xcf\x38\x4e\x4d\xf1\x27\x65\xad\x3c\x3a\xdd\x9a\xd4\x84\xe8\xb2\x71\x90\xd4\x04\xf7\xc6\x38\x4e\xdd\x05\x1a\x50\x9d\xba\x0b\x58\xe9\xa1\xcc\xd8\xa7\x46\x70\xdd\x7e\x75\x17\xb0\xc1\x2b\xde\xfa\x41\x46\x96\x93\x95\xbb\x34\x07\xed\x8c\x71\x69\xce\xe3\xfa\x5c\x46\x84\x3c\xfc\x10\xac\x46\xc7\x17\x60\x9d\xcc\xea\x12\xac\xee\x87\xae\x03\x83\x29\x5e\xba\x0e\x74\x56\x08\xb7\xbb\x71\xe4\x87\xb1\xee\x03\x90\x7f\x4c\x65\xeb\x4e\xbe\xe8\x47\x10\xcc\xeb\xc7\x55\xb6\x6e\x8b\xa2\x4f\xc1\x60\x14\xd8\x4a\x23\xca\xc4\x51\x4c\x0f\x13\x0c\x59\xcc\x08\x13\xcc\xcc\xcc\x24\x04\xa1\x89\xc3\xd4\x24\x44\xad\x89\xa3\x24\x98\x8e\xf9\xf8\x61\x9b\x65\x1b\xab\xbd\x00\xc0\xca\x14\x41\x1e\x7c\x54\x7d\x1f\x06\xf0\x57\x61\x1e\xc0\xac\xed\x5a\xb8\xcc\x84\x9c\x2a\x87\x1b\x60\x9c\xf0\x99\x1d\x90\x87\x46\x6c\x23\x14\xf8\x18\xb6\x87\xa7\x1c\xe4\x9e\x89\xa3\x69\xd7\x0d\x2c\xcd\x6c\x33\x93\x39\x37\xf9\xea\x0e\xc8\x3f\x06\xb1\x71\x19\xc6\xd1\xd2\x0a\xd6\xbe\x32\xd4\xad\x4d\xb0\x4d\xac\xc2\xd2\xcc\x16\xd3\x80\xe5\xc7\x21\x36\x74\xc5\x71\x10\xb0\xb3\xa0\x71\x8c\x03\x1b\xf3\x52\x45\x7d\x58\xc4\x82\x16\x2d\x0e\x58\xc4\x92\x78\xf9\x63\x11\xdb\x14\xc5\x7f\x1c\xa2\x09\x66\xe2\xc0\xd0\xbc\x34\x21\xc6\x41\xae\x34\x77\x3c\xe3\x2a\x78\x72\xbb\x79\x24\xa6\x1f\xe8\xf9\x00\x05\x06\x31\x7a\x0e\xa8\xc6\xdf\x05\xeb\xba\xde\xf7\xbf\x92\xf2\xc7\x61\x92\xb9\x13\x70\xb0\x66\xcb\x1e\x08\xfb\x49\xbc\xb0\x38\xb0\x5a\xab\x18\x60\xc7\xa1\xd5\x5a\x56\x0a\x75\x01\xc0\x1f\x1a\x5f\xb1\xae\x9a\xb0\x61\xdb\x1a\x07\x41\x3f\x71\x88\x8a\x03\x76\xaf\x4f\xd1\x2a\x12\x4a\x6a\xc9\xe2\x25\x5e\x63\xbe\xde\xdd\x23\x42\x7a\xe6\x24\x31\x50\x43\xe6\x17\x07\x21\x3d\x71\x2c\x8b\x83\x90\x9e\xc8\x92\xe3\x30\xc3\x49\x95\xb4\xc9\xd3\x49\x4f\x4c\xd6\xdb\xc4\xa2\x61\xda\x4c\x2b\x09\xc7\x64\x08\x02\x76\xe2\x08\x17\xc7\xd4\x16\x8b\xc5\xd6\x16\xcd\x85\x37\x60\xa7\x8b\x03\x07\x87\xda\x22\x8e\x29\x18\x2c\x07\x01\x3b\xbb\xb3\x9e\x26\x99\x05\x6c\x6c\xd1\xba\xe8\x43\x52\xdd\x43\xb2\x44\x60\xce\x71\x39\xc0\x8d\xb5\x8b\x98\x08\xc3\x56\x43\xba\x8d\xba\x94\xa8\x08\x71\xa8\x2d\x6d\xce\x1a\x8b\xf7\x81\x7c\x23\x8e\x5b\xb3\x54\x4f\x32\xb1\xab\xd0\x3c\xc6\x71\x6b\x90\x61\x25\x4c\x59\x8a\xbf\x13\x6b\xdf\x03\x02\x53\x36\xdd\x6c\x78\xb2\xe9\xf1\x7a\x34\x65\x61\xf5\x1e\xe1\x03\x0c\x6c\xd4\x30\x48\x88\xe3\xc1\xc0\xe2\xa4\x1f\x78\x2d\xc2\x0a\xc4\xa1\x2d\x5a\x08\x04\xbc\x16\x3a\xe2\x38\x14\xea\xe5\x31\x83\xd5\x0a\x4c\xed\xe3\xc8\xe0\x55\x92\xd6\x1f\xab\x15\x87\xd4\x78\xb9\x50\x17\x80\xac\x4c\x14\xc1\x28\x0b\x35\xb9\x48\xb7\x50\x8d\x3b\x23\x6c\xdd\xab\x28\xbb\x7c\x06\x4a\x97\x48\x7f\x92\xd4\x77\xa1\xdc\x17\x17\x49\x7f\x82\x9d\x62\x1c\xdb\x80\x8a\x62\xca\x46\x37\xee\x85\xb6\xd1\x8d\x7b\xd7\x6c\x94\xfb\x92\x01\xec\xe0\xf3\xa6\xda\xa8\xc0\x3d\x13\x5b\xe8\x18\x18\x6d\x67\x71\x1b\x37\x56\x08\x5e\x0e\x1b\xcb\x03\x57\x63\x03\x9c\x8b\xb1\x01\xce\x9b\x65\xcb\xf2\x8b\xc6\x2f\x8a\x7b\xe9\xef\x0b\x70\x5e\x4c\x1a\xc5\x7b\x30\x5f\x95\xf5\x2c\xde\xab\xea\x99\x3a\x6a\x19\x1d\x4c\x9b\xad\x43\xb4\x24\x74\xd4\xe1\x2c\x55\x2d\xe6\xef\x68\xe5\x2e\x29\xbf\xba\x45\x47\xfe\x54\xea\x32\x1a\xb1\xa3\x0e\x41\x55\xcf\xe8\x94\x3f\x14\xd1\x1e\xdd\x0f\xcd\xc2\xb4\x2d\xea\x7c\x37\xe7\xdb\xd4\x67\x66\xe8\x19\x5b\x17\xaf\x3e\xb4\xbd\x3f\xd6\x27\x4e\x75\x8e\xac\xfb\x79\xa0\x10\xed\x7f\x19\xa2\xc4\x49\x54\x29\x64\x43\x71\xa6\x65\x18\x37\xf0\x49\x58\x29\x78\xf8\x38\x09\x04\x85\xdd\x75\x9c\x04\x82\x3a\xa0\x3a\xe7\xa1\x7e\xdc\xd1\xd1\xe3\x77\xda\x9e\x42\x62\xd9\x35\x0b\xca\x2e\x87\xe5\x5f\x9f\x01\x79\x38\x49\x68\x4b\xfc\xa5\x38\xf1\x81\x6b\x7d\x58\x09\xb5\xd0\x60\x4a\x2a\x29\x27\xbf\x5f\xa8\x85\xac\xa3\x92\x92\x0b\xfd\x54\x49\xc9\x7d\x70\x5e\x68\x5a\x26\x40\x18\x05\xea\xf7\x14\x8f\x53\xc5\x64\x58\x46\x55\x02\xb3\x76\x5e\xbe\xd7\xc3\x06\xde\xb8\xd9\x5a\xb7\x7f\xc8\xdd\xa9\xd6\x71\xb2\x16\x17\x20\x0d\xe0\x26\x6e\x14\x71\x90\xe2\x54\xeb\x38\xa9\x5f\x04\x09\xf0\x4a\x1a\xfa\x31\x69\x38\x91\x86\x93\x4e\x9c\x70\x22\xf5\xcc\xae\x84\x90\xd9\x15\x14\x69\xd3\xdf\x15\x5a\xba\xde\x38\xfd\x2b\x04\x8e\xb3\x1a\x2a\x15\x42\x7a\xe2\x13\xe7\x0d\x75\xe2\x13\xe7\x35\x7e\x22\xa5\xc2\x07\x2c\x4e\x42\x41\xc9\xb2\x9e\x7a\xfc\x4f\x57\xa7\xa2\x89\x70\x45\xaa\xba\x1d\x7f\x27\xe8\x0f\x98\x79\x56\xa5\xc1\xce\x09\xaf\xb8\x22\x3e\x54\x94\x0f\x2e\x3f\x5e\x71\x45\xcc\x44\x43\xd9\x9d\x69\x6a\x28\x9d\x11\x89\x6f\xe5\x83\x4f\x5c\xe4\xcc\x09\x1d\x27\xd1\xa3\xa4\x03\x27\x99\x6f\x8b\xd8\xd4\x80\x9b\x23\x7b\xa2\x95\xcc\xc5\x4c\xad\x64\xf5\x03\xf9\xbd\x68\xd6\x80\x5b\x4c\x69\xe8\x1c\x44\xe9\x26\xa8\x8e\x0c\xa8\xd9\x16\x50\xc5\x32\xa2\x44\xc9\xbe\x9f\x64\xc1\x95\xf2\x9d\x9d\x05\x76\x1b\xba\x0b\x6c\x1d\x55\x4f\xb4\xed\xea\x19\x98\x65\x47\x4f\xe2\x72\x75\xd7\x97\x35\x45\x11\x99\xa8\x64\x88\x28\x57\xa5\x0b\xb3\x63\x01\x73\xb5\xfe\x63\xf8\x6c\x07\x70\x02\xac\x8a\x4a\x48\x18\xc7\x33\x5c\x52\x26\x63\x18\x73\x0c\x5b\xe2\x0c\x21\x65\xc6\xc4\x82\x1a\xf8\x00\xc5\x89\x6c\x6b\xf2\x46\x8e\x33\x23\x99\xbb\x00\xb0\x34\x9d\x80\xb0\x71\xc2\xd3\xd4\xee\x29\x0d\x97\x98\xd1\xb1\xc4\x1f\x71\x59\x4b\xaf\x86\xd3\x0f\x18\xc7\xe2\x2a\xc4\xfe\xef\x7f\x95\x90\x0f\x71\xc2\xed\xd4\x10\x5f\x87\xae\x16\xb0\x5a\xe7\x50\xa2\xcd\x0d\x7a\x2a\xd0\xc2\x50\x25\x4e\x04\x5a\xa7\xe8\xa1\x40\x0b\xe3\x92\x38\x51\x7e\x1e\xbf\x4b\xf0\x2f\x62\x37\xd2\x49\x83\xc9\x65\x48\xd0\x61\xe7\x7a\x69\x1c\x40\x3a\x10\x79\x17\xff\x60\x0a\xc3\x63\x36\x24\xbd\x1e\x72\x93\xee\x7a\xa7\x9f\x8a\xb8\xbc\x94\xcf\x69\x14\x6b\x17\x94\xac\xbb\xa7\x87\x68\x32\x05\x2e\xf8\x33\x2d\xc2\xdc\x7d\x33\xed\xca\x43\x9c\x18\xeb\x0f\x2f\xca\x93\x4c\xbb\x84\x8d\x88\x73\x2a\x11\xf5\x1c\xcd\x94\x22\x3a\xbc\x72\x38\x4f\xde\x54\x0e\xe7\xaa\x4f\xc5\x88\x39\x0c\x62\x4f\x17\xda\xc4\xbb\x98\xaf\xc7\x79\x2b\xc4\x15\x9b\x6e\x33\x85\x5d\xfe\x53\xb4\xba\x67\x31\x6e\x25\x74\x9e\x9a\xf4\x2b\x94\x24\xdc\x0a\x12\xc5\x71\x22\x4e\x35\x17\xc6\x74\x2b\xf2\x96\xa7\xe9\x56\x9a\xd8\x4f\xea\xdd\xe6\x16\xc2\x66\x35\xfc\xd6\xe2\x34\xc5\x4a\x73\x63\x9e\x04\x93\x26\xc8\xbb\x9a\xe8\x60\x8a\x15\x0c\xd6\xe3\x7c\x94\x23\x8a\xb5\x8f\xb2\x5a\x01\x33\xc7\x4a\xf3\x30\x91\x56\x25\xef\xe0\x33\x45\x5e\x42\xa6\xc8\xcb\xa3\x0e\x1b\xa6\x1d\x74\x9c\x29\xe5\x92\x20\xa6\x94\xcb\x59\x9a\xb1\x57\x2a\x90\x42\x2e\x77\x66\xa5\x24\x8e\x7f\x96\xc2\x43\xe1\x5f\x7a\xa6\x79\xca\x53\x82\xe5\x62\x2c\x02\x95\x48\x45\x4d\xac\x22\xcd\x4e\xf9\x95\x1b\x93\xf2\x2b\xf7\x72\x31\xbc\xa4\x33\x85\x54\x6e\xff\x56\xd8\xc9\xb4\x8c\x24\x75\x4a\x9e\xcc\xce\x2b\xfd\x57\x78\x75\xba\x93\xe8\x41\x87\x24\xc3\xec\xbc\xa7\xeb\xb5\x5d\x22\x97\x75\xbb\x44\x40\xf2\x63\xc7\xea\xf0\xfa\xd8\xa6\x7b\xf1\x2c\x6f\xe4\x3d\x92\x02\x92\xad\xe4\x81\x7f\x8d\x50\xe1\xc9\x49\xd9\x95\x5b\x97\x39\x78\x25\x2b\xaf\x62\x34\xc6\x23\x3f\x4b\xde\x6f\x2f\x21\x35\x2e\xc6\xfe\x27\x9c\xb2\x92\xe9\x08\xc4\x75\x25\x52\x1e\x2f\xf2\xec\xca\xf5\x9f\x29\x90\x62\xec\xcf\xfc\x91\x3c\xa5\xcf\x2f\xa1\x62\x8c\x7f\x62\x28\x9a\x90\x5c\x37\x8f\x9d\xdc\xdd\x29\x63\x85\x48\x4a\x4f\xd7\x38\x3f\x9c\x95\x3d\xa8\x86\x24\x38\x25\x7c\x66\xda\x3d\xa5\x62\x0a\x9e\xba\x7d\x29\x78\xe2\x6c\x5c\x87\x39\x03\xa8\x75\xa5\xe0\x09\xe4\xbe\x0e\x7d\x7d\xc2\x6a\xc5\x7f\x1a\x1f\xcd\x7f\x2a\x1f\x1d\x11\xcf\x49\x59\x21\x4b\xd8\x5e\x17\x97\xe3\x2f\xbb\x96\xb8\x14\x4b\x11\xd3\x2b\xae\x74\x83\xe4\x0d\x7e\x1d\x48\x80\x2e\xfb\x7b\x3d\x12\x93\x0f\x9c\x80\x90\x28\xc7\x75\x2a\x81\x01\x50\x8c\xd3\x74\x14\x88\x0b\xc1\x54\x75\xc7\xaf\xd3\xbb\x03\x44\xba\x10\x46\x15\x4c\x17\xe3\x32\xfe\x01\xe6\x44\x71\x9d\x46\x6f\xf0\x8f\xed\x1f\xf4\x6c\xbe\x5c\x79\x97\xeb\x32\xb0\x02\xa8\x7f\x21\x75\xca\xa7\xe2\x65\x2a\x3a\x19\x93\xcb\x8c\xb9\xb9\x3a\x88\xa0\x4a\xcf\x8f\xdf\xb6\x49\x1f\x2e\x53\xe9\xfa\x5a\xbe\x2e\x5e\x1c\x8e\xf8\x20\x42\x68\x56\x72\xfa\x90\xe7\x8b\x7c\x74\x04\x61\x8b\xab\x80\xaf\xdc\x14\x57\xd1\x5b\x81\xe2\x90\x68\x52\xf6\x45\xc3\xca\x61\x45\xe6\x8b\xe9\x2a\xbe\xbd\x28\xca\xdd\x5b\x05\xdd\x63\xf1\x77\xdc\x1d\xc1\xe7\x4b\x0e\xcf\x97\xef\x55\x79\x65\xba\x35\x95\x07\x4d\xb7\x52\xf5\x1a\xb1\x12\xe7\x87\xfb\xf2\x22\x33\x1d\x14\xe5\xaa\xc2\x66\x15\x79\x70\xe0\x81\x77\x23\x7a\x63\x5c\x55\xc6\x07\xf8\x91\x2a\x35\x19\xfe\xeb\xc7\x96\x95\x80\x11\xbe\x54\x4e\x62\x69\x1a\x57\x73\xeb\x5d\xdf\x1f\x63\x56\x15\x2a\x5e\x30\x66\xff\x60\x6d\x8a\x24\x01\x89\xd4\x73\xd5\x21\x6e\xc0\xb0\x0a\xcb\x02\x74\x4d\xb1\x1f\xd7\xd5\xa5\x62\xd2\xd3\xd1\xc8\x85\x23\x9a\x20\x75\x4a\x94\x33\xb0\x01\x07\xed\x42\xe6\x84\xd1\x60\x5c\x5d\xaf\x3e\x3a\xed\x38\x20\xba\xdd\xdd\xb3\x9c\x95\x10\x0d\x88\xe1\xe8\x21\xbb\x03\x77\xc4\x12\xe2\x41\xc7\x55\x43\xc4\xed\xbc\xbc\x2f\x3b\x55\x1a\x40\x5b\x2c\xf5\xa5\x0f\x17\xea\x44\x22\x17\xc6\x15\xb8\xe3\x40\xda\x2e\x39\x2e\x18\xce\x4b\xdb\x7c\x8f\x2d\x61\xd6\xf3\x2c\x12\x66\x3d\x8f\xa2\xb6\xf9\x59\x1f\x64\xc9\xb2\x6f\x2e\x16\x3a\x78\x09\xf2\x4c\xbf\x06\x6f\x11\x2e\xd0\x8b\x70\xea\xc3\x09\xc3\x4f\xfd\x03\x82\x2c\x72\xf8\xd8\xc6\xf5\xe3\xa7\x86\x92\x94\xeb\xc7\x4e\x8d\x40\xc0\x76\x99\x05\xc6\xa7\xf0\x35\xc4\x16\x1b\x63\xef\xe2\xca\x69\x4a\xe6\xf2\x6a\x4a\xd6\x1d\xf9\x33\x7f\x03\xdb\x4d\xb4\x4e\x49\xe5\x45\xb4\x4e\x09\xe2\x95\xec\x11\x23\xab\x0d\x4c\x5c\x99\x1a\xc7\x36\x5b\xc8\xef\x89\x5e\x13\xc3\x0f\x0f\x60\x32\x4e\xd7\x5f\x79\x29\xe2\x9a\xc6\xa4\xe3\x22\xbf\x92\x93\xe2\x22\xbe\x08\xd9\xa9\x44\xfb\x32\x34\x27\x5e\x90\x71\xdd\xc6\xe5\xe1\x6a\xba\x08\xab\xd4\xa4\x53\xb7\xae\xa1\x5c\x15\xd7\x9d\x6e\xac\xc0\xf3\xe3\x83\x1a\xf9\x61\xe3\xba\x95\x21\x4b\x67\xe0\x83\xcc\x10\x18\xd7\x6d\xd0\x17\x27\x4a\x78\x74\x8f\x17\x6c\x50\x74\x29\x1b\x99\x66\x7c\x50\x5f\x37\x91\x95\x29\xe2\x1e\x99\x7b\x9e\x21\x36\x45\xd4\x47\x69\x22\x60\x3c\xf8\xeb\x4a\xc9\x48\x83\x2b\xdf\x7f\x19\x02\xd3\xd3\x42\x1e\x18\x9f\x86\x17\x2c\xcb\xe5\xb6\x2d\x4f\x08\x03\x20\x45\xba\xdc\x35\xf2\xc0\x24\x09\xc6\x7d\xd1\x17\xd0\xb5\xf0\x52\x6b\xd6\xbf\x41\x72\x26\x43\x4e\x98\x9c\x0b\x91\x14\xba\xe8\x82\xae\x2d\x4a\x36\x40\xda\xe8\xb1\xde\x02\x47\xa7\x7a\x29\x8a\x22\x7a\x29\xba\xa6\x7a\x26\x4a\x99\x08\xa6\xd0\x45\x10\x73\xbf\x48\x72\x08\xa6\xd0\x5d\x2d\xcd\xb7\xbc\x6e\xb7\x27\x99\x09\x6c\x01\x72\x2c\x84\x8d\x12\xca\xd7\xd0\x2c\x6e\x39\x41\x13\x0e\x71\x93\xa0\x09\x58\x9e\xc7\x45\xd0\x84\x43\x1a\x4d\xa0\x04\xdc\x1d\xe2\x22\x24\xe6\xf4\xa8\xbd\xac\x84\x78\xf4\x63\x52\xe2\xf0\x96\xf8\x10\x88\x89\x39\x1f\x02\x31\x6f\xc8\x4f\x32\xc0\xc4\xb0\x48\xcf\xd5\x25\x3d\x5c\xee\xc6\x27\x19\xb0\x1f\xae\x2a\xd9\x80\x0f\x9a\x29\xcc\xa4\x8d\x4b\xfa\x86\xd4\x28\xb1\xe0\x43\x50\x06\xa7\x73\x29\x34\x62\xdc\x72\x20\x27\x83\xd1\x28\xb8\x12\x12\xc5\x32\x8a\x29\x56\xa4\x21\x45\x1b\x2c\x05\x3a\x85\x18\xe3\x47\x58\x0b\x99\x16\x50\x14\x22\x87\x1f\xd9\x93\xa4\x62\x52\x5e\xbf\xf2\x65\x7d\x47\xfe\x41\x51\x48\xc8\x32\x94\xaa\x17\x02\x2a\x90\x54\x3c\xca\x79\xd1\x78\x50\x2e\x50\x2f\x40\x3d\xf1\x42\xa8\xd6\x07\x08\x6e\xbd\x72\x0a\x04\x90\x9e\x08\xd6\xaa\x03\x60\xb4\xcf\xf4\xcb\x89\xa3\x41\xb5\x0e\x52\xab\x6e\xff\x50\x50\x96\xbd\x20\x3c\x22\xd5\x48\x14\x84\x47\x24\x19\x8b\xa2\x55\x3b\x1c\x7c\xb9\x20\x8e\xa7\xf5\x83\xb2\xbf\x0f\x28\x6b\xf1\x03\xa3\x5b\x1e\x03\xe5\x32\x94\xf1\x65\x4f\x8f\xf4\x17\xb0\x8d\x40\x8e\x89\x62\x14\xb2\xce\xc5\x69\x59\x6e\x03\xfc\x2a\x18\xb3\xc7\xf9\x27\x7d\x2b\xc8\x9c\x82\x93\x54\x8a\x33\xb1\x03\x67\xc2\x2a\x68\xe9\x3e\xfc\x1d\x92\xcf\xed\x5d\x14\x38\x0d\xeb\x04\x57\xbc\x65\x9f\xc8\xcd\x06\xd3\x73\x0b\x8c\x05\xb1\x44\xb7\x8c\x04\xa8\x5b\x89\x7b\xa1\xdb\xfa\xa5\x27\xeb\x7c\x94\xa9\x53\xbd\x0a\x58\x43\x14\x60\xe3\xb4\x53\x85\x55\x90\xb6\x52\xf3\x2e\xa0\xa7\xea\xd3\x9f\x35\xac\x8d\x9e\xac\x34\xd4\x68\x30\xe9\x8a\x75\xa9\x28\x51\x05\xcf\x06\x9a\x28\x5e\x0e\xa1\x75\xdf\x65\x73\x6c\x54\x5c\x74\xc5\x52\x97\x28\x4b\xe4\x26\xe2\x49\x46\x31\x72\x93\x97\x7e\xd1\x3a\x4b\xed\x48\x69\x18\xa2\x88\x0b\x84\x7c\x38\xd4\x76\x14\x43\x3e\xf4\xec\xeb\xf6\x03\x58\x8c\xf9\xd0\x5d\x13\x59\x1a\x55\x59\x45\x33\x2a\x79\xc6\xa2\x19\x95\x0c\x48\x41\x17\x76\x5e\x76\xd0\x79\x27\x36\x6b\x4d\xff\x60\x2e\x46\x84\xbc\xb2\xc9\xe3\x3f\x00\x80\x32\xec\xbc\xec\x39\x7c\x93\xd1\x44\x3f\x42\x59\xbe\xf2\x63\x55\x0c\x66\x1a\x25\x34\x27\xf0\xec\x6b\xf9\x74\x88\xfe\xd1\x78\xca\xb0\x29\xea\xbb\x4e\xe7\x1f\x64\x77\xef\xb6\x90\xcb\xb3\x2b\x74\xcd\xae\x7d\x3c\x3c\x15\xec\x48\x5d\xe9\xb4\xc1\xf6\x83\x55\x45\x34\x54\x72\xbb\x50\x84\x95\xcb\x65\xc5\xee\x49\xa1\x79\x41\x4c\x54\x14\x73\x95\x91\xaf\x03\xa6\x4b\xd8\x86\xa2\xd4\xae\x0c\x72\x26\xd8\xa2\x41\x84\x81\x96\x2c\x31\x5e\x7d\x05\x77\x42\x9f\xcb\x65\x48\x49\x58\xe9\x41\xe6\x5e\x26\x41\x34\x07\x35\xa6\x05\x6f\xc2\x1c\x76\xf9\x7c\xb3\xba\x3c\xa9\x65\x73\xde\x09\x0f\xb9\xed\x64\x82\x8a\xe1\x19\xf2\x77\x96\xcf\xa5\x9c\x84\x8e\xb0\x57\xf8\x14\x6d\x77\xa2\x20\xd7\xe9\x32\x0a\xc5\x40\x0c\x22\x35\x62\x9d\xda\x3d\xb2\xda\x3a\x09\xc7\x8d\x77\xb0\x07\xf3\xf6\x12\xa5\xf1\xcd\x25\xea\x1c\x6e\x2e\x51\x6e\xf5\x82\x14\xa7\x4b\x9d\x6f\x2e\x54\x37\x48\x4d\x99\x46\x06\x05\x4e\xa6\xbb\xd3\xb7\x37\xaa\x03\x28\x29\x71\x51\x51\xa1\xf5\x6c\xc0\xf5\xea\x11\x37\xe8\x83\x13\x85\x61\x99\x2e\xb6\xea\x31\x27\xfd\x70\xbb\x4a\xe6\x1f\x36\xaa\xfe\x15\x1c\x20\xca\xc3\x35\x2c\x7d\x47\xb2\x33\xbd\x1b\x1e\xae\x64\x18\x8f\xf2\xa0\xe3\x93\xee\x3f\x99\xfa\x8d\x75\x42\xbf\x36\x45\x81\x07\x0e\x4c\xb2\xa8\x42\xcd\x2d\x7a\x60\x0c\x84\x16\xce\x69\xfa\xfb\xc2\x3f\x5c\xf2\xb0\xe0\x11\x9c\xc5\x52\x90\x2a\xcd\x5a\x4e\x83\x45\x5e\x40\x2a\x4a\x2e\x34\x81\xb0\x51\x65\x01\x69\xb5\xf1\x34\xbf\xba\x1f\x68\x02\x5d\x0f\x94\x74\x79\xf7\x2e\x1e\x20\xe2\x06\x7c\xd4\xcc\x8e\x60\xa3\x72\xc1\x91\x06\x25\xdf\x52\x60\xaa\x52\xa4\x52\xd4\xcc\xc1\x90\x16\x35\x73\xb0\xff\x45\xcd\x9c\x87\x91\x78\x0f\x9d\x10\xcf\x51\x36\x5c\x89\x67\x7f\xf3\x60\x93\x28\xa8\x9a\x9b\xfe\x0e\xf7\xe1\xe1\x55\x4d\x37\x6c\x8b\x9a\x0e\xc9\x55\xc1\x41\x51\x39\x7f\x79\x89\x88\xe0\x8a\xbd\x92\xff\xee\xc7\x65\x1e\x4b\x5a\x18\xb0\x0a\xe1\x5c\x79\x7d\xe3\x8b\xb0\x2f\x7e\xcd\x22\x3e\xe6\x4d\xad\xb9\x8b\x86\xaf\xf2\xd6\x35\x7c\xd5\xb4\xb5\x70\xb3\x4e\xf8\x21\x26\x6d\x90\x2b\xcb\xb6\x72\x4a\xd6\x07\x56\x77\x9a\x48\x0e\x5d\x95\x79\x31\x4c\x03\xf1\xae\xa3\xa8\xfe\x73\xc9\x3e\x5c\x25\x5d\x4a\xb5\x7f\xf0\x62\xe5\xf3\xed\xeb\x54\x55\xff\x49\x6c\x91\x15\xb5\x24\x0a\xea\xff\x9c\xe9\xa7\x84\xbf\xd8\x2d\x9a\x36\x01\xd7\xd1\xd0\x8d\xf8\x70\x8e\x74\x31\x65\xe5\x58\xf0\xaa\xfe\x8f\x05\xa8\x64\x09\x26\x6a\xfc\xef\x7a\x34\x0e\x71\xe3\x03\x86\x0a\x90\xaa\xba\x3f\x76\xb4\xea\x7e\x08\x36\xd5\x03\x46\x8b\x55\xaa\x72\x7b\xc3\xb6\x4c\x61\xda\xa9\xbc\xa8\xf5\x71\x37\xac\x02\x81\xaa\x70\xda\x96\x09\x4c\xc7\xe2\xd9\xca\x8c\xeb\x8f\xd9\x3b\x43\x43\x99\x7a\x5e\x26\x60\xab\x7c\x54\x89\x1f\x73\x48\x71\x92\x70\x9c\x30\x5e\x5c\x2a\xf5\x94\x36\x71\x0b\x56\xf3\xc0\x60\x22\x18\xf5\x44\x92\x70\xd9\x1c\xaf\x92\x69\xd9\xe8\x5a\xd9\x02\x5e\x8b\x35\xae\x28\x12\xc3\xc1\x2f\x38\x28\x4e\x4a\xbd\x70\xd9\x12\x74\x79\x41\xb6\xbd\x5e\x95\xb2\xbf\xc3\x17\x3a\x55\x95\x8a\xd3\xb6\x38\xc5\xf1\xd0\xac\x3f\x56\x70\x90\x64\x38\xea\x85\x2f\xdf\xf0\x77\x18\xe4\x3f\x23\xa0\x44\xbd\xe4\x9e\x05\x16\xc0\x2f\x3b\x78\x29\x3b\x38\x7e\x67\x48\x7f\xab\xfc\x22\x67\xa8\xca\x12\xc2\x6d\x56\x59\xc2\x62\x1d\x1c\xe6\x44\x1a\x59\x42\x4e\x72\x2d\xbe\xf6\xc3\xc6\xb8\x1e\x29\xa9\xac\xf2\x7e\x2a\xa3\xab\xbe\x90\x20\x6c\x2d\x86\xf8\x86\x71\xaf\x32\x79\xb6\x90\xc9\x83\xd3\xaf\x3f\x26\xaf\xc8\x9a\x56\x79\x3c\x8e\x41\x85\xc7\xab\x24\xa7\x8c\xaa\x46\x32\xfc\x03\x25\x14\xee\x34\x51\x09\xd9\x49\xc2\xc1\xa8\xd5\x13\xd5\xad\x65\x40\xdc\xea\x3f\x49\x3e\xfd\x30\x18\xc9\xe9\xe8\x88\x27\xc4\x72\xec\xf1\x71\x54\x8f\x4a\xb2\x9a\xe2\xe0\xaa\x1b\x9d\x78\xd3\xc8\x13\xe2\x5b\xd5\x37\x7a\x8e\x9a\x9c\xa7\x8d\x75\xd7\xe3\xe6\xab\x64\xab\x29\x9e\x2f\xf4\x8d\x3e\x0a\x6a\x53\xdc\xc7\x7e\x35\xad\x36\x5c\x68\x94\x8c\xbe\x34\x6a\x73\xd1\x98\x51\x57\xc8\x07\x17\x51\xbb\x31\x33\x2e\xff\x51\x13\x26\x72\x76\xdc\x24\x9c\x2a\x76\xf5\xc4\x41\x8f\x0a\xa7\x98\x96\x3f\x55\xc3\x7a\x5f\x9d\xb5\x9b\x44\x4e\xda\xf0\xe3\x1b\xab\xa6\x7d\xb5\xa3\xea\xaa\x56\x32\xf5\xb7\x38\xd2\x33\xd4\x3d\xf0\x62\x63\x4f\x54\xd2\xa8\x5d\xc7\x14\x51\xba\xcb\xd6\x03\x15\x76\xf4\x84\x8a\x8f\x1a\xc9\x34\xb3\x56\x1a\xd5\xfb\x46\xae\x91\x7c\x3d\xa3\x47\x12\x76\x46\x0c\x65\x3c\x9e\x2d\x98\xcb\xd0\xe4\xaf\x86\xfc\xb4\x2b\x91\x01\xca\x3d\xca\xb0\x91\x87\x4c\x47\xd5\x7c\x5e\xd6\xa4\x06\xbc\xbd\xe7\xc3\xd0\xe5\x97\xeb\x3d\x30\xf7\xf7\x40\xa9\x6c\x54\xe4\x50\x53\x38\x06\x7b\x50\x7f\x5c\x64\xd5\x48\xad\xaa\x6c\x94\xfd\xa9\x2a\x1b\x95\x34\x54\xf5\x89\x3d\x3b\xf6\x09\xe0\xba\x0e\x65\x4a\xc0\x95\x2a\x44\x31\x18\x23\xf9\x7c\x71\xd6\x99\xca\x08\x9a\x18\x76\xfc\x12\x18\xa4\x5f\xe7\xe5\x30\x86\x1a\xbf\x9c\xd8\xd4\x50\x57\x8a\x3c\x79\x0e\x78\x1c\xb0\xa5\xd2\x66\x3d\xea\xcc\xe7\x00\xd3\x44\x55\xa8\xd9\x6e\xd4\xa9\xea\xc6\x21\xb7\x28\x06\x64\x13\x85\x92\x2b\x8e\xa2\x70\x70\xe1\x56\x14\x85\xe7\xe5\xb1\x36\xd2\xf8\xe5\x5a\x90\x95\x86\x84\x42\x51\x91\x82\x75\x22\xb9\x44\xcd\xe8\xe2\xd3\x0f\xe5\xd0\x0c\x78\xfb\x4c\x00\x90\x1b\x33\xe9\xf2\x97\x69\x72\xd4\x1b\x03\x64\xef\x04\x8d\xe9\xd5\xab\x57\x8d\xe9\x55\xee\xd7\x8c\x5f\x2a\xc9\xd6\x64\x5e\xed\x78\x7d\x7c\xf3\x50\xeb\x51\xe3\x23\xd1\x7e\x52\x0f\x45\xcf\x68\x0d\xf3\xd9\x52\x1f\xcd\x7b\xdd\xff\xc7\x87\x8e\x34\xf5\x51\xcd\x22\x39\x41\x85\x78\x9d\x6e\xf9\x63\x42\x32\x31\xcb\x60\xe5\x91\x00\x68\x93\xcc\xa3\xb3\x3e\xaa\x55\x84\x46\xd3\xdf\x6c\x82\xe9\xaf\x67\x61\x69\x92\x2c\xfe\x2c\x35\x43\xee\x92\x92\x3a\x95\x59\x75\x29\x87\x94\x3c\x19\xd4\x5c\x8e\xae\x2e\x83\xfb\x64\x35\x85\x13\xe2\xdc\xf2\x45\x06\xc8\x19\xb9\x5c\x6a\xbc\x92\x94\xfb\xf1\xf1\x56\xa3\xb9\x2c\x24\x1e\x71\x51\xcd\xc4\x7c\x5a\x6b\x1b\x2d\x9b\xbe\xe0\x1b\x4d\xd8\x1f\xf5\xc7\x37\xb6\xf0\x8c\x22\x9a\x33\x39\x5e\x54\x34\x8a\xe5\x82\xa1\xaa\x08\xe7\x4c\xfe\x1f\x95\xb0\xa7\xc3\xbd\xc0\xb5\xb2\x68\xe2\x55\xcd\x43\xe8\xef\x3e\x25\x58\x15\xd8\x48\xdf\x76\xf5\x85\x94\x0f\xcb\x68\x39\x65\x07\x5e\x62\xa9\x4b\x85\x30\x8b\xcf\xd3\x41\x34\xb0\x52\xb3\x31\xb9\xfe\x00\x15\x23\xf8\x9e\x77\xc5\x8b\x18\xd1\x89\xbe\x88\x95\x98\xe7\x0b\x0b\x9e\x4d\x79\x2c\xf0\x48\xac\x28\x16\xbb\x62\xf0\xfa\xe5\xd3\x1a\x28\x3e\xa5\xb4\xf2\x31\x1a\xae\x17\x79\x1f\xcc\xbd\x42\xcc\xfe\xbc\xa6\x80\x83\x38\xa9\xc5\xb5\xf8\xd0\xc5\x70\xdc\x9b\xce\x93\x4a\x99\xda\x21\xe5\xf7\x8f\xe6\x10\x07\x1f\x52\x25\xb0\xaa\xe9\x0d\xa9\xe2\xab\x1d\xca\x05\xc0\xd7\x96\x3a\x3d\x2e\xc3\x76\xe4\x81\xf9\x0d\xdf\x4e\x15\x8e\x97\x1f\x5a\x9e\xc3\x53\xb5\xd3\xf7\xbf\xe5\x8c\x7d\x08\x30\xc6\x34\x3f\xb2\x09\x99\x07\x19\x04\xee\x2c\x08\x3b\x1a\x0d\x5d\x1f\x36\xfb\xd1\x14\xc8\x35\xeb\x3b\x75\x1b\x08\x15\x28\xd9\x30\xf9\x82\xbe\xb4\x1f\x73\x16\x78\x69\x45\xbb\x08\xb3\xe2\x00\x97\xf1\x3b\xad\x03\x3a\x83\xb4\x0d\xe9\x1a\x8e\xef\xd1\xc8\xd4\x42\x96\xac\x68\x97\x5b\xc6\x0c\x30\xdf\x22\xd6\x6f\xb4\xa2\x98\xe3\xf0\x23\xf3\xe9\xd2\xba\x10\x1f\x93\x4d\x6e\xc4\xc0\x2a\xf9\xfb\x63\x00\x43\x5b\xa0\x04\x77\x95\x0b\xa1\xe0\x60\x26\x1a\x36\xdd\xa1\x2a\xad\x91\x4d\xa5\xab\x74\x6f\xd5\xb7\xf3\x9f\x89\x2a\xa2\x61\xfd\xad\x91\x74\x93\xb3\x11\x80\x2a\x4b\x31\xfc\x03\xe3\x54\xa1\x44\x96\x85\x53\x54\x34\xc4\x57\xcd\xfb\xaa\xc9\xda\x28\xbf\x69\xe4\x19\x2e\x59\xcb\xf8\x42\x20\x7e\x33\xdc\x96\x20\x1b\x6e\xcb\xb1\x9b\xa2\x0f\x1b\x20\x66\x76\xb8\xc6\xe3\x49\x98\x08\xb6\xa5\x2d\x40\xeb\x66\xd4\xe7\xf8\xb5\xce\x9e\x71\xa3\x34\x82\x8b\x1f\xe2\x44\xf7\x1d\x65\x03\xb9\x3b\x11\xe1\xc7\x99\x94\xe2\x86\x93\x1b\x8f\x94\xdb\xd1\x3a\x0c\x71\xb1\xd3\x2d\x31\x02\xa4\x9e\x98\xe3\x3f\x6e\x2d\x3d\x05\x94\x82\x8b\xad\xc1\x8b\x0c\xdc\x79\xa2\x05\x06\x64\xdc\x65\x2d\xe0\xe1\xb8\x3d\x5a\x0c\x7e\xb7\x31\x52\x45\x3b\x8d\xcc\xfa\x60\x03\x25\x89\x62\x8f\xce\x7a\x44\x52\x8c\x16\x58\xd9\x58\x1e\x79\x79\xd2\x7e\x98\x17\x08\x3a\xdc\x86\x76\x0f\x3c\x13\xda\x40\x91\x0f\x87\xd4\x7e\x4c\x85\x69\x1e\xa2\x0d\xb3\x0e\xb0\xfc\xa8\xdf\x3c\x7a\x03\xf1\x8a\x93\x18\xb9\x06\xac\xe6\x70\x0d\xa6\x63\x63\xd2\xea\x66\xa7\x7d\x92\x0b\x32\x71\xbf\xe5\xe5\xdb\x26\x6a\x2d\x7f\x96\xe0\xd1\x91\x8e\x75\x92\x90\x99\x9d\xf2\xc7\x8d\xf8\xc2\xf3\x46\xc2\x5f\x99\xf1\xa6\x01\xb5\x48\x83\x41\x34\x6e\xa7\xd1\xb8\x70\xbb\xa2\x9d\xf6\xc8\xef\xf1\x26\x6b\x46\x96\x72\x42\x88\x72\xb4\x05\x6a\x44\x96\x52\x3c\xdc\x1e\x50\xd1\x13\xfd\xbb\x52\x43\xe3\x9f\xf6\x88\x8a\xd6\x01\x15\x3d\xe9\x0f\xa8\xe8\x94\x1f\x65\x0e\x4c\x0d\x49\x8e\x86\x4f\x6d\x09\x1d\x33\x58\x52\x15\x60\xf8\xdd\xac\x57\xd2\x36\xd3\x00\x6b\xcd\xd9\x56\xa5\x12\x1d\x11\x71\x4a\xbd\x67\x23\xca\x94\x6a\xcc\xb6\x94\x94\xbb\xb5\x98\x58\x27\x61\x58\xbc\x7b\xbb\x8d\x51\x36\x38\x7b\xc3\x49\xb9\xfb\x84\x93\xd2\x97\xa8\x91\xe1\x57\xf7\xa3\xb6\x31\xe2\x95\x26\x13\x1e\x4a\x7d\x79\x23\x63\x6f\x71\xf6\xbf\x3b\xb4\xa8\x44\x68\x9b\xd7\x6f\xb5\xad\x47\x86\x55\xc1\xbd\x2c\x72\x29\x36\x8f\xc8\xea\x1f\x2f\x95\xfc\x9d\x13\xe3\x3e\x91\xe2\xb7\xb8\x44\xa4\xf8\xd5\xaf\xa2\xfd\xee\xd6\x52\xa4\x00\xa4\xfb\x2d\x6e\x32\xe9\x7e\xb5\x2f\x68\x5c\xa7\x1a\x51\xb4\x57\xa0\xff\x54\x5e\x34\x02\x20\xd4\xec\x98\x0b\x4f\x22\xf9\xbb\x54\x8b\xba\xa3\xf6\xf1\x8a\xf4\x58\x91\xcf\xd7\x57\x71\xfb\x0a\x65\x56\xe3\xab\x94\x01\x84\x60\x08\xd5\x15\x20\x18\x82\x7a\x82\xf6\x79\xd2\x01\x9c\x78\x07\xe4\xb9\x88\x46\xbc\x83\xe2\x8e\x90\xcf\x57\x8b\xc6\x46\xb8\x03\x45\x40\xed\x43\xbd\xe1\x8e\x7c\xc2\x6c\x3f\x5c\xd8\xee\xec\xc7\x9b\x08\xce\xab\x1f\xc0\xcf\xe9\xef\x87\xf0\x9f\x94\x7d\x6b\xd0\x51\x3f\x4c\x89\x59\x29\x87\x88\x67\x2d\x23\x19\xf0\xb8\xeb\x07\x86\x80\xcd\xb2\x2e\xed\xd5\x26\x38\xe5\x57\xc7\x50\xd7\x51\x6d\xee\xab\x6d\x50\x76\x51\x7f\x8b\xd7\xcf\x03\xc0\xe9\xe9\xf4\xa1\x56\xfd\x83\x77\x25\xf7\x73\x37\xed\x9b\xe7\xb6\x9b\xf6\x4d\x31\x6a\x37\xed\x9b\xe2\xcf\x7e\xe6\xd3\xac\xf3\xa1\xaa\xa3\xd8\xb3\xaa\x8e\x62\x1b\xdf\x69\x70\x9d\xdd\xec\x6e\x44\x14\x8e\x7e\x26\xe5\x74\x1c\x29\x27\x9d\x5d\xbe\xd3\x98\x22\x16\x3f\x07\x11\x0f\xa3\x5f\x78\x92\xdb\xda\xf4\x6e\x3d\x6b\x61\x76\xe2\x18\x17\x41\x2d\xaa\x95\x64\x81\xa0\xae\x9d\xd0\x06\x72\xf9\x3d\xed\xba\xa7\x2d\x78\x3f\x5c\xee\xcf\xe5\x8b\x11\xc4\xeb\x45\x1a\x6e\xc7\xc5\x07\x10\xa8\xd7\xcd\xfa\xa6\xc7\x45\xc7\xb8\xfb\xbc\x84\xa5\xe0\x74\x0b\x31\xe9\xc5\xe7\x9b\xd3\x32\xeb\x5b\xb7\x05\x99\xde\xba\xfd\x1a\x2a\x77\xd8\x5a\x95\x8d\x50\x96\x04\x8c\x2d\xaa\xea\xc8\xc1\xe4\x5e\xd1\xd9\xb8\xd9\x55\x9d\x0d\xa8\xdc\x35\xfd\x11\x6f\x10\x99\x9c\x91\x2d\xb0\x90\x73\x1f\x6b\x5e\x1c\x0c\x0f\xfb\xd0\x08\xe1\x10\x1d\xfe\x21\x4e\x31\xa4\xf9\x14\x71\xf5\xe0\x26\x42\x87\xa0\xde\xc8\xae\xd4\x2d\xcb\x32\xba\xdb\xb8\x98\x75\x4d\xd9\x7a\xc3\x39\xd2\x09\x37\x5d\x38\x91\x1d\xf4\xa6\xf1\x1c\xc3\x37\x8d\xe7\xc4\x9c\xa6\xa7\x24\x5c\x6e\x6f\xba\x70\xba\xf8\x64\x31\x51\x3a\xda\x33\x8b\x09\x8c\x71\x27\x8b\x89\xa6\xe3\xbd\xeb\xfa\xc7\x4c\x7a\x32\xaf\xc0\xd8\x1b\x7f\x00\x49\x9a\xfe\xb8\x12\x9a\xfe\x28\xbd\xeb\x7d\xf2\x74\xb1\x45\x1a\xa7\x31\xf8\x8f\xf1\x68\xea\x65\x3a\x8c\x87\x89\xd5\xa3\xff\x18\x8f\xa6\x28\xa8\xf7\x5c\x3a\x56\x0b\x17\xb2\x52\xda\x9f\x5e\x18\x3d\xe4\x0c\x78\x2f\x74\x93\xb3\xe1\x23\x1e\x1d\xa9\x48\x21\x08\x70\xf4\x80\x4d\xf0\x77\x9c\x88\x60\x6a\x3a\x79\x52\x14\x8f\x77\x8d\xb1\x71\x16\x8f\x1e\x44\xd8\x02\x30\x39\x94\xd3\x01\x88\x73\xcf\xc5\xd5\x87\x9e\x03\x5c\x99\x7d\x60\x12\xc2\x3d\xd1\x0d\x85\xee\xf6\xc0\xab\xe4\x19\x45\x2f\xa6\xb7\x6a\x1f\x5e\xc9\xb6\x7d\xb8\x0d\xad\xef\x85\xd3\xad\x84\xb8\x5a\x34\x21\x3b\x8a\x5e\xac\x1d\x96\x24\xb2\xa7\x89\x78\x52\x22\x36\xb9\x59\xec\x95\x54\x29\xda\x83\x75\xc2\x4e\x15\xb1\x8a\xf0\x52\xe4\xad\x88\x3e\x89\xad\x20\x82\xce\xa4\x3a\xfc\x81\xb0\x22\x70\xff\x8d\x6e\xfa\x33\x15\xdb\x1d\x01\x45\xe0\x4b\x1c\xfd\xf6\x7d\xef\x12\xdf\xf9\x70\xf7\x43\xf7\x4e\x49\xf3\x9d\x7b\x6e\xd7\x3a\xa6\x50\x24\xd0\x36\x92\xce\xfe\xa0\xdb\x70\xae\x04\x7b\x22\xc8\x54\xf4\xc7\xbb\x88\x9d\x40\x82\x10\x3a\x02\xf7\x27\x49\xbc\xad\x9d\x08\x13\x7c\x7c\xaa\x89\xb9\x66\x38\x53\x04\xd2\x15\x1a\x10\xac\x34\xfa\xa3\x53\xcc\xaf\xb8\xb4\xd8\xe0\x67\xf8\x97\x29\x7c\xb0\x2f\x4a\xd2\x3a\x32\x82\x99\xf5\x11\x11\x88\x1d\x4b\x6c\xb2\xed\x64\x53\x81\x5b\x67\x31\xde\xc0\x1d\xf9\x40\xe4\xa9\x36\xd2\xa5\xd7\x14\x91\x2e\xf5\xa5\xee\x9b\x08\x92\x36\xc0\x94\xb8\x2b\x38\xea\xbc\xf5\x07\x59\xa1\xa2\xcb\xa8\x78\x97\x6d\xac\x34\xc2\x5e\x17\x4b\x66\x4f\x5e\xaf\x4c\xe1\x85\x61\xe5\x01\xd7\x5f\x2f\x29\x3a\x7d\xb9\x0a\x3c\xf6\x2f\x46\xcc\x8e\xac\xdb\xfb\x25\x39\x79\x89\xd2\xe0\x9c\xb1\xd0\x39\xb5\x1e\xe8\x2f\x89\x56\xbc\xfa\x5e\xc9\x8c\x87\xf8\x4d\x7d\xb4\x1f\x08\xda\xed\x09\xe3\x5d\x7b\xfa\xd0\xb3\x7a\x46\x3f\xf4\xac\x12\xd2\x2f\x0d\x88\x28\xe3\x19\x19\x96\x3d\x42\xd6\xc1\x41\x93\x27\x6e\xff\xe0\xa7\xdd\x29\x64\x03\xd3\xa5\x40\x45\x34\x5d\x60\x6c\x7d\x14\xcc\x74\x6c\x7d\x8e\x84\x81\xc7\xa0\x98\x87\x57\x18\xf9\x8b\x22\x30\x25\xd6\x93\x36\x60\x28\x88\x2f\x14\x61\x4c\x6f\x8e\x7a\x1c\xf6\x6f\x59\x3e\xde\x3a\xf0\xf1\x3c\x2d\xc2\xb8\x48\x0a\xb3\x83\x80\xdd\x5a\x3b\xc4\x09\xdb\xcc\x55\x19\xe7\xc5\xef\x7f\x8a\xf1\xe2\xc7\x5d\x84\x62\xe7\xf8\x31\x14\xa1\x10\x36\x4e\x78\x79\x84\x9b\xf1\x63\x0d\x42\x53\xbc\x50\x12\xa0\x70\x2d\x08\xc9\xed\xb5\x1d\x17\x1d\x71\x37\x07\xe6\xbf\x5d\x26\x3c\xf0\xf2\x52\xcc\x19\x58\xff\x86\x12\xb4\xf8\x71\x03\x21\x5f\x11\x17\xcf\x8b\xb0\xcc\xf3\xc2\x45\xd0\xe3\xab\xb0\xe2\x81\xa6\x45\xef\xf5\xb8\xa4\x59\x4c\x1c\x63\x1a\x8f\x40\xfc\xae\xf8\xe1\x31\x8e\xe2\xc8\x74\x5a\xd0\x9e\x39\x40\xc1\xb8\xc0\x01\x0a\xb1\x51\xdd\x89\x22\x11\xb5\x0e\xaf\x05\xb0\x27\x08\x2d\xa9\xa5\x77\x14\x24\x24\xee\x68\x01\x9e\xd3\x7e\xa0\xa7\xee\x90\x56\xc1\xca\x29\xc3\x94\xae\x3a\x21\x44\x85\x25\xe7\x98\x04\xc1\x25\x35\xab\x8e\xea\xd1\xb3\x0e\x4f\x81\x66\x4f\xa0\x39\xef\xb7\xf8\xdd\xff\xa5\x38\x1b\x34\x23\xd5\x19\xa3\x0c\xa9\xa2\x40\x93\xa2\xb1\xbc\x0d\xee\x5a\xe8\x30\x84\x09\x85\xa5\x41\xba\x7e\xfd\xc6\x03\xe7\xab\xea\xe6\x10\x11\x52\x2d\x5a\xe0\x88\xe5\x4b\x3d\xd4\x8b\x70\x9e\xa3\x7b\xe6\x19\xac\xc3\xee\xc3\xe8\x04\xd1\x1e\xd5\xd8\x05\x8e\x55\xca\x02\x02\xc7\x2a\xb5\x7a\xf1\xbb\xd0\x67\x75\x02\x38\x56\x91\xc1\x27\xa2\x0b\x0f\x0b\x81\x7c\x41\xd9\x5b\x74\xe1\xb1\x7f\xe1\x71\x5c\x68\x90\x38\x94\x7a\x8f\x66\x25\x7d\x7f\x5c\x5e\x43\x70\xcb\x7a\x85\x9e\xdf\x4a\x21\x22\xd4\xa1\x41\x6e\x82\xb4\xf9\x6a\xe0\xc2\x74\x66\x3e\xda\x23\x14\xcf\x8b\x6d\x91\x1c\xbc\x1f\x70\xf0\x6e\x5c\xe4\xf8\xf6\x45\x60\x2d\x77\x31\xdd\xa7\xa0\x8e\x91\xee\x53\x30\xbe\x91\xee\x53\xd0\xd9\x18\x2a\x5e\xec\x4c\x5f\x2a\xfb\x4a\x5f\x2a\xee\xde\x18\xd8\x34\x09\x64\x2a\x34\x5c\x3a\x1d\xa4\x74\xed\x0e\xb5\x1b\xee\xd9\xc0\x8d\xc7\x75\x34\x02\x50\x77\xf1\x8c\x00\xe4\x46\xe9\x2b\xd5\x6d\x81\xf8\x41\x17\xf8\xc0\xe4\xb7\xaa\xdd\x8b\xd4\x73\x64\x2d\xf8\xd6\xcb\xd1\x75\x89\x3a\xa7\x1f\xda\x3d\x09\x4a\x2a\x3a\xdc\x3b\x73\xaa\x5e\x82\x3f\x65\xa2\x05\x60\xca\x44\x8b\x1e\x86\x03\xf2\xa4\xa7\x42\x43\x9c\xbb\xbd\x43\x68\x81\xaa\xc2\xd7\x53\x18\xdc\x47\x0d\x66\xdc\x5e\x1b\x7f\x7a\x9b\x85\xea\x09\x0d\xe0\xe2\x96\xf3\x66\xd2\x37\xbe\x29\x2e\xf8\x2d\xc3\x28\x65\x53\x53\x01\x33\x10\x6a\x2a\x54\x12\x86\x9a\x0a\x15\x6d\x41\x1e\x55\xb5\x71\xf1\xc8\xd5\xc0\xc8\x04\x5a\x8b\x53\x2b\xbb\x40\x6b\x71\xaa\xae\x8c\x27\x1f\x01\xcc\x46\x9f\x73\xfd\xa4\xe3\x49\x66\xdb\x6a\x3f\xc0\xbc\xee\xc3\x20\x3e\x7a\x1e\x85\xba\x09\x57\x2c\x35\x10\xee\x12\x8c\x46\xd3\x8a\x3c\xb4\x16\xd6\xd4\x22\x96\xf1\x2d\x5d\xd8\xa5\x4c\x0b\x90\x51\x3a\x0c\xfd\x9e\x62\xa5\x1d\x98\x4d\xb8\x77\x89\x51\x1d\xb1\x4d\xd8\x09\x03\x14\x24\x45\x0d\xa9\x3c\xae\x4b\x45\xc1\x65\xec\x94\xe4\x33\xe5\x1d\x44\xa3\xb0\x7c\x13\x4d\xc2\xae\x10\xb3\x5b\xf4\xca\x64\xb8\x6d\xf0\x0c\x01\xd9\xd0\x3f\x47\x78\x79\x20\x4b\x54\x09\x95\xcd\x95\x1c\xaf\x71\x44\xfc\x59\xb3\x29\x80\x83\xdb\xe8\xb2\xc1\xf1\x7a\xa5\xb0\xb6\x2f\xa2\x4a\xf8\xf2\xf8\xf1\x14\xa5\x48\x3b\x5f\xc8\x5c\xb5\x53\x1c\xa6\x3c\xa2\xfa\x26\xa9\x40\x0f\xd3\xa2\x6a\x4b\x13\x70\x15\x46\x25\x8f\xf8\xb4\x47\xa0\x58\xc5\x1e\x2b\x91\xd7\x44\xf2\xff\x21\xcb\x73\x5b\x4c\x23\x32\x6c\x80\x0d\x34\x8f\xa6\xf8\x30\xd0\xe6\xc5\x19\x1f\x12\xc5\x61\xff\x5b\xc3\x54\xca\x18\x16\x69\x4f\x3c\x90\x5a\x10\xf5\x30\x86\xd9\x45\x86\xbf\x63\xea\xc4\x8d\x37\x0e\x4c\x9d\x80\x6e\x20\xbf\x68\x93\x89\x0e\x93\x88\xc0\xf4\x8c\x03\x21\x7c\x76\x84\x91\x15\x3b\x32\x4c\x0a\xc2\xe2\x8d\xd3\x01\x68\x8b\x30\xc2\xf0\x27\xe3\x4c\x52\xd0\xf8\x58\x7e\x30\xf4\x89\xf0\x4f\x90\x0c\x59\xe3\x35\x34\x4e\xa2\x16\x80\xef\xe3\x82\x43\x67\x91\x86\x3a\x05\xa8\xc5\x48\x06\x03\x90\x92\xc1\xb0\x3e\x02\x3f\x16\x69\x60\xfc\x9b\x7d\x5e\x08\xff\x9c\xc2\x8f\xa5\x08\xf9\xf6\x71\xc1\x3d\x17\xfb\xe7\x79\xc4\x41\x19\x17\x5c\x4e\xb1\x9f\x45\xff\xfe\x2e\xd0\xc2\xf0\x52\xc7\xfe\x91\x58\x42\xd6\x46\x01\x66\x97\xa8\x08\x33\xe3\x92\x8d\x55\xbd\xc9\x20\x1b\xab\x44\x75\x14\x24\xfb\x2e\x5d\x81\xd3\x62\x33\x07\xdc\x88\xc6\x0c\x03\x6e\x44\x3b\x8c\x91\x96\xbd\xb0\xff\x03\xd9\x43\x27\x6d\x60\x0c\x64\x0f\xad\xfe\x1d\x2e\x65\x54\xf3\xb6\x43\x95\x46\xc5\xc8\xc8\xce\xab\x6e\xee\xbc\xbb\x06\x9c\x88\x8a\xd0\x51\x0d\x83\x09\x97\x3d\xea\x80\xc1\xb1\x0c\x73\xc4\xad\x3b\x60\x57\x54\x7d\x8e\xaa\xaf\x5f\xf7\x8f\xc5\x1f\xcc\x11\x3e\x46\x26\x68\x54\xb8\x23\x91\xa0\x21\x57\x85\x1e\x0c\xbd\xcb\xf5\xe3\x1c\xc4\xbf\x96\xb3\x1c\x2d\x45\xbd\x0c\xdd\x04\xb6\xfb\xe1\xf1\xb5\xb9\xc7\xd7\x16\x90\x0a\x51\x9c\xf8\xd4\xc1\xe3\x6a\x10\x93\xda\xc0\x44\xa3\x1b\x75\x04\x9e\x60\x10\x64\x5a\x73\xa7\xd1\x31\x08\x82\x18\x8d\x0e\x2f\x06\xef\x3f\xba\xcf\x20\xeb\xfb\x0c\xb2\x0c\x8f\xe6\xd6\x74\x69\x94\xbf\xc3\xa3\x39\xe7\x00\x88\xb0\x8c\xb8\xd6\x09\xa0\xbb\xa8\xe2\x90\xba\x0b\x5f\x69\x83\x04\xaa\x55\xc4\x0f\xf8\x1d\x2e\xa3\x91\x3c\x46\xb7\x05\x72\x4c\xd8\x8a\x31\xa0\x88\x62\x26\x2c\x46\x55\x85\x36\x7e\x5c\xc5\xac\xa2\xd7\x80\x3d\x74\xb9\x07\x1c\x98\xfb\x36\xe4\x82\xf2\x0f\xb8\x20\xae\xd5\x31\x1c\x1a\x58\x61\x1d\xd2\x73\x74\x0c\x09\xa4\xc3\x7d\xf4\xc4\xef\x13\x11\x2a\xc4\x72\x20\x25\x20\x53\x73\x8c\xe9\xc8\xd4\x9f\x30\xa6\xf0\xfa\x63\xc2\x98\x7a\xe8\x94\x18\x78\x48\x27\xbc\xa8\xc8\x33\x73\xce\x36\x96\xaf\x62\x31\x74\x90\xd6\x38\x65\x10\x6d\xba\x4a\x1e\x4c\xbb\xea\x7b\x69\x60\x03\xa1\xf5\xd9\xd0\x3d\xda\xc7\xdc\xd0\x3d\x5a\x03\x9a\x41\xa4\x40\x25\x2e\xe3\xf6\xc9\x9f\x1f\x48\x75\xc5\x1f\xbd\xa3\xb5\x6c\x19\xb7\x7e\xf4\xf9\x8f\x4c\xa1\x58\x70\xab\x78\x4a\x20\x65\x1f\x9c\xd6\x83\xb4\xd9\x23\xf8\x28\xfb\x80\x7d\x1a\x4f\x32\x82\xb4\x7f\x84\x98\x85\x7b\x84\x18\x89\xcf\x80\x63\x68\xc6\x49\x19\x08\x26\xc2\xa8\x43\x43\x8e\xc1\x30\x2b\x43\x29\x85\x37\xc2\xa3\xb8\x45\x0a\xff\xc0\x09\x22\x31\x1e\x38\x47\x1b\x81\x67\x2c\x39\x79\xba\x5d\x84\x5c\x16\xaa\xa5\x20\x44\xac\x5a\xc9\x6c\x5a\x4b\x66\xd3\xcd\x5d\x8e\xc7\x10\x4b\xc6\x13\x38\x96\x32\x65\xa7\xbb\xe4\x3c\x85\x6a\x29\x53\x86\x8f\x1a\x4b\xd6\x53\x50\xf0\x8d\xd6\x5e\x74\x6c\x8d\x7f\x84\x77\x9b\xa8\x5e\xb4\xc1\xc6\x21\xce\xf2\xa7\x75\xde\x80\x17\x39\x8c\xc7\x34\x0c\x27\x2d\x3c\x3b\xe7\xc6\x74\x30\x7a\xe8\xca\xd2\xc6\x46\xe8\xeb\x65\xb9\xe5\x57\xb3\xb9\x2c\xaa\x53\x30\xee\xdf\x25\x70\x86\xf7\xbb\x04\x1b\x63\xd8\x21\x93\x3a\x5e\x39\x66\x27\xa7\xa0\xc3\x6b\xe2\x45\xcc\x1c\x36\x97\x5f\x76\x05\x5f\xf9\x65\xa1\x24\x06\xb5\x4f\xd2\x61\x08\xbf\xcb\xc3\xf5\x62\x5e\x3e\xf3\x1f\x59\x14\x5a\x7c\x9a\x13\x8b\x96\x5a\x39\x18\x98\x6b\xe8\x3e\xad\xae\x66\x60\x2a\x7b\x2a\x39\x18\xfa\x52\xc3\xaf\x8d\xcf\x88\x59\x3c\xc1\xc6\x07\x8b\xed\x2e\x7f\x4a\x66\x3c\x93\x04\xf4\x53\xde\x33\xe0\x46\xce\xc8\x16\xaf\xb5\xec\xeb\xf3\x9f\x1f\x36\xcc\x83\x80\x82\xf0\x81\xf3\x10\x14\xde\x7f\xd3\xb0\x7d\xea\x72\xe6\x21\x87\x0c\x5d\x9a\x87\xd1\x2d\x8a\x6d\x94\x40\xb3\x92\x53\x3f\x68\x0f\xcf\x3c\x70\xdf\x66\x92\xf3\x54\x18\x5e\xfd\xd0\x2e\x87\x6d\x99\xa7\x5c\x31\x1b\x36\x33\x0e\xdf\xb4\xda\x84\xf7\xf5\x0f\x0d\x6e\x90\x82\xcd\x8c\xb7\x07\x87\x3d\x4f\xd3\x56\xf2\xc2\x99\xa7\x79\x2b\xe1\x71\xe6\x25\x23\x88\x42\x6c\xa2\x09\x31\x13\x49\x4c\x23\xee\x91\xe7\x26\x26\xaa\x10\x93\xb7\xc4\xfc\x71\x2a\x4d\x57\x81\x69\x90\x3d\x83\x80\xcc\x1f\x4b\xd2\xb4\xa0\x99\x17\xfe\x18\x5c\x45\xf3\x22\x3b\x3f\x57\xc8\xbc\xf4\xbc\x2e\x7e\x28\x85\x81\xa1\x99\xa8\x45\x8a\x36\x85\x13\x4d\x48\xd1\xac\x6f\xa2\x09\x19\x9a\xf2\x4c\x34\x21\x43\x53\xa0\x59\x64\x51\x39\xb3\xb3\xa4\x91\x10\x10\x93\x80\xac\x6a\x96\x37\x31\x37\x2d\x06\x66\x9a\x30\x24\x45\x71\xcf\x2c\x6a\x35\x29\xa6\x53\xb6\xbf\x2b\x8f\x6c\x8e\x82\xc3\x63\x73\x10\x79\x56\xbb\x45\x38\x0b\x8b\x34\x49\x3c\xa6\xb5\xd8\xac\x08\x45\xb3\x0c\xfb\x0a\x4b\x38\x31\xd1\x20\xe6\x6f\x4c\x18\x94\x99\xbf\x23\x9a\x83\x4d\x9b\x98\x9a\xaa\xa9\x99\x15\xd1\x59\xd6\x47\x34\x97\x75\xb0\x12\xca\x3a\xb0\x72\x1c\xbf\xd9\x60\xe5\xdc\xe5\x06\x2b\x27\xfa\x34\xd8\x4f\xb1\xa7\xc1\xca\x89\x63\x0d\xdd\xb3\x88\xd8\x64\x45\x99\x63\xc3\x83\x45\xd4\x69\xb0\x75\xd3\x7e\xf0\x1e\x51\x75\x3b\xd1\xaa\x64\x10\x84\xa9\x25\x07\xdc\xd6\xd4\x92\x03\x4a\x33\x1b\xcc\xa8\x78\xaf\x25\x87\x68\xd7\x50\x9f\xcf\x3f\x69\xe0\x6c\x70\xd7\xa2\x67\x77\x7a\x74\x4c\xba\x0e\x6f\xa6\x89\xf9\x6a\x9b\x8e\x8e\xf9\x87\xba\x9e\x89\xf9\x87\x64\x77\x92\x78\x6d\x0c\x1b\x04\xbf\x5b\x1f\xc1\x99\x6b\x4c\xea\x0d\x95\x51\xb3\xa3\x5a\x77\x8d\x93\x05\x62\xa6\xfa\x35\x79\x0f\xce\x90\x29\xa3\x23\x72\x6f\x18\xfa\x71\x92\x7b\xc3\x60\x8f\x33\xf9\x24\xd6\x2c\x10\x0b\x41\xac\xe6\x8f\x35\x9a\x55\xd4\x0f\x44\x41\xc5\x01\x54\x96\xc1\x22\xcf\x64\x93\x18\x4c\x65\x8a\x42\x83\x39\x64\x56\x18\x61\x20\x45\x83\x3b\x9f\x5a\x81\x68\x8f\x32\x87\x62\x4a\x37\x1e\x73\xd2\x20\x4a\x7c\x4c\xa5\x2f\x3e\x86\xe6\x40\x10\xc4\xfd\x3f\xd3\x94\x03\x56\x71\x1a\x6a\x46\x45\xd4\x34\xb4\xb2\x6f\xa9\x99\xce\xd4\xce\xd0\xd0\xca\x3a\x6a\xce\x74\xa6\x86\x81\x9d\x86\x56\xd6\x7b\x72\xa6\x37\xb5\x2b\x34\x93\x4f\x71\x9c\x8c\x1d\x68\x07\xea\x79\x3d\x79\xa9\x71\x81\x6b\x99\xc6\xa1\xc9\x03\x8a\xcc\x25\x7c\xdb\x4e\x33\xc7\xfa\x3a\x9d\xb2\x56\xfa\x0c\x4f\x63\xcf\xe8\xaf\x3b\xe5\xad\x74\xf6\x9d\xaa\x6c\xae\xfc\x07\x13\x25\xb5\x82\xd3\x28\xcc\x2e\x81\x82\x9a\x6c\xa1\xa0\x46\x7c\xc2\x53\x29\xce\x6c\xee\x95\x02\x94\x29\x98\x91\xbc\xdc\x49\xeb\x59\xb4\x5b\x45\x4b\xb5\x9a\x84\x9f\x5a\x99\xf8\xde\x43\xf6\xa8\x6d\xb4\x9c\x2f\x73\x40\x41\x32\x63\x20\x87\x09\x6b\x55\x74\xdb\x9b\xb0\x56\xc5\x98\x78\x13\x61\x4c\x31\xf8\xdd\xfc\xf1\x59\x5d\xce\x6e\x3e\x22\x37\xf0\x3e\x1b\xec\xb1\x8e\xb2\x59\x8a\x86\x12\xa5\x8a\x46\xa2\xee\x9c\x36\xa2\xd2\x72\x43\xff\x11\xc3\x3d\xe6\x52\xd7\x00\x48\x4b\x64\xb3\xd3\xa5\x21\xa2\x95\x4c\xe0\xc6\xd2\xea\x7a\xa4\xbf\xe3\x44\x56\x63\x8c\xa2\x99\x01\x02\x5d\x1b\x02\x04\x1e\xd9\x2d\xaf\x79\x09\xc0\xe2\x35\x2f\x7d\x43\x82\x33\x95\x90\xcf\xed\x35\x20\x85\xde\x52\x5c\x56\x03\x17\x23\x1d\x46\x26\x91\x00\x13\xc9\x70\x25\x6a\x6e\x1e\xae\x44\x4d\xac\x22\xe2\x5f\x13\x75\xf6\x47\x7d\xda\x12\xf0\x8f\x48\xe4\x31\xf5\x24\x32\x5c\xe0\x7c\x49\xcf\x37\xfd\x83\x97\x31\x8f\xc0\x49\x52\x33\x6d\x42\xe6\x8f\x75\xba\x34\x89\x98\x48\x70\xea\xdf\xa1\x53\x26\x2e\xde\xcd\x53\xf0\x0a\xa1\x90\x08\x21\x9d\x19\x3e\x30\xd9\x0a\xa4\x35\x69\x0a\x3d\xf1\x07\x52\xe9\x38\x71\x01\x4a\xd4\x36\xd5\x18\xb7\xc8\x8d\xf9\x08\xf9\x6b\xe2\x3e\x24\x64\x93\x32\x84\x8c\x47\xee\x8d\x13\x8f\x51\x73\xef\x1f\x7b\x53\x48\xea\x13\xb7\x99\x5d\x55\x57\xde\x07\x16\x43\x30\x57\x37\x7e\xda\x06\xa3\xbd\x0f\xac\x84\x2e\x1b\xf3\xdc\x1d\xd6\xe1\xb9\x7b\x39\x80\xf1\x53\x79\xee\xdc\xda\x8e\xb0\xca\xf7\xc9\x9b\x88\xbb\xe9\x26\x21\x06\x89\x1b\xe3\x3e\x79\x13\x56\xeb\x63\x90\xc3\x63\xe3\x3e\x79\x99\x41\xea\xee\x93\xf7\x21\x24\xfa\x3e\x25\xb9\xf6\xc9\xcb\x94\xc3\x78\x13\x15\x50\xeb\xe2\xfb\xe4\x45\xd8\xed\x1f\x8a\x0b\xfd\xbc\xc9\x56\xa6\xd8\xee\xbe\x84\x81\x09\x9b\xda\xc2\xcb\xf8\xd6\x00\xc4\xdb\xf8\xbe\xf4\x02\x74\xc1\x2e\x5f\x59\x2e\xc6\x95\x5e\x23\x00\x72\x29\x04\xcb\xde\x08\xca\xe2\x0a\x5c\x8a\xfe\x6d\x5f\xa4\xc5\x2e\x9a\x59\x2d\x60\xba\xee\x4c\x9e\x7f\xfa\x07\x42\x75\x90\xe3\x2e\xf9\xb4\x61\x10\x62\x09\xa7\x69\xfa\x5d\x78\xdb\x34\x5b\xf8\x94\xb2\xab\xcd\xef\x80\x28\x6b\x73\x09\x09\xa9\x29\x9a\xeb\x5c\x7d\xd8\xd0\x6b\xcd\xb8\xa8\xb4\xa8\x49\x43\x99\xbb\x7e\x35\x5a\xdd\xde\x15\x1a\x2a\xe8\x1a\x89\x90\x03\x2d\x6e\x78\x9d\x93\x3c\x56\x71\xc3\xec\x64\xd8\xb6\xbb\xfa\x42\x15\xf1\x7e\xec\x4e\xf5\xfa\xbd\x2b\x0f\x09\xd7\xa4\xc9\x70\xdb\xa2\x29\x85\xe6\xe1\x7c\x37\x29\x35\xb3\x6a\x52\x6a\xb8\x80\x1b\x8b\x8f\x53\xe5\xcd\xdd\x92\x3a\x5b\x6d\xf9\x01\xc4\xcd\xe0\x49\xce\xf2\xc7\x6a\x34\x85\x62\x77\x37\x7a\x22\x07\xe8\xee\xf2\xdb\xfe\x41\x78\x6b\xd7\x17\x05\x8e\x99\x1a\xe3\x36\x32\x8b\xb4\xf6\x96\x17\x60\xee\xd1\x30\x8d\x00\x76\x1d\x9c\xb9\x33\x6f\xd2\xd0\xeb\x5c\x70\x47\xa6\xbb\xa4\x7c\xab\x7f\xa4\x8c\x3c\x75\xda\x76\x0b\x11\x6b\x18\x12\x48\x3b\xc2\x36\x17\x62\x79\x93\x1e\x55\x63\xcd\x1b\xa9\xca\xcc\x72\x26\x37\xa7\xa7\x51\x21\x47\x74\x84\x0f\xb3\xd6\x9a\x37\x29\x51\x9b\x3b\x36\xd0\x6f\x7a\x22\x86\x34\xd4\xdf\x11\x46\xba\xdd\xda\x6a\x38\x33\xcd\x30\x5c\xa2\x89\x90\xec\x6f\x1b\xbd\x1b\x56\x23\xb4\xf0\xb8\x27\xfa\x7f\x6e\xf3\x1b\x4e\x63\x90\xe3\x39\xee\x09\x43\xc7\x15\x78\x4f\x19\x3a\x86\xd7\x78\xc3\x4d\xfd\xb1\x19\xa5\xb8\xa7\x53\xca\x64\x5b\x64\x63\x62\x14\x29\xc0\x8c\xf1\x74\xdf\x1c\x6c\xcf\x0f\xe9\xbd\xa4\xec\x77\x4a\x52\x84\x42\x49\x4a\xf8\x07\x5e\x4d\x70\x2e\xf7\x8d\x24\x42\xfc\xbf\x39\x31\xdc\x29\x37\x37\x7a\x06\x15\xb8\x55\xb6\x18\x3a\xe8\x56\x5a\xd2\xf3\x43\xd3\x33\xd7\x56\x71\x89\x9e\xd3\xb7\xda\x16\x43\x0c\xdd\x6a\x5b\x0c\xf2\x7c\xab\x6d\xb9\xb2\x5a\x9e\x26\xc7\xe1\xf1\x2f\x55\x42\x76\x92\x71\x6c\x6e\xc2\xcc\x0d\x3d\xf6\xef\xc7\x57\xae\xc8\xf9\xf8\xfa\xe6\x0f\xd4\x28\x64\x06\x88\x9b\xfb\xbb\x29\x24\xbb\x75\x1e\x96\xb5\xbd\x97\x9e\x14\xf4\xbb\x50\x7d\x58\x34\xb4\x8d\x24\x89\x78\xbd\x9a\xf4\xde\x66\x35\x20\x81\x60\xdc\x1b\x59\xb6\x84\x76\x7b\x13\xd2\x9a\xdc\x05\xe9\x03\x76\x23\xb7\x18\x5a\x76\xdc\xa8\x54\xaa\xf6\xee\xf7\x16\xef\x25\xf2\xbf\xeb\xb9\x68\x73\x7c\x63\x52\xaa\xb5\xf4\xed\xf5\xec\x63\xfd\xd6\x8e\x54\x3a\xa0\x1d\xa9\xfb\xf9\x7a\x97\x31\x6f\x6d\x4a\x5d\x36\x7c\x34\x6a\xcd\x3f\xa6\xea\x43\xff\x49\x10\x6d\xce\x45\xe2\x56\xbf\x70\xcf\x30\x47\xf7\xab\xb8\x6f\xd8\x1c\x71\x9f\xeb\xf9\xf1\x64\x76\x16\xa6\x1a\x18\xce\x0f\xc9\x84\x01\xc6\x6e\xf3\x60\x39\x23\xd5\x27\x9e\x64\x2d\x31\x72\x3d\x91\x58\xcc\x2c\xab\x87\xe8\x7e\x78\xf6\x7f\x3d\x3d\x07\x0f\x3b\x7e\x7f\xd0\x9f\x90\x41\x27\x9e\x43\xae\x64\x50\x76\x2f\x26\x65\x8e\x32\xa0\x3e\xd8\x6b\x90\x32\x27\x9e\x43\x2c\x6a\x7e\x60\xb0\xe1\x2b\xfc\x41\xc9\x42\xd2\x95\x78\x50\xb2\x90\x3d\x27\x1e\x0d\x39\x90\x4b\x3e\xbf\x2b\xfc\x52\x8b\xff\x68\xc8\xc1\x02\x3c\xda\x6a\x80\x11\xcf\xa9\xe5\x0a\xf7\xcc\x83\x6b\x87\x14\xf8\x31\xd6\xca\xb4\x01\x1c\x4c\x73\x00\x38\x18\x68\xe5\x83\xaf\xad\x22\x9e\xe7\x44\x34\xef\xf4\x4f\x43\x16\x80\x27\x0f\x3a\x99\x01\x3b\xf8\x10\x84\xc5\x3d\x7c\x70\xbc\x15\xf5\x1f\x1c\x6f\x65\xcc\x1f\xed\x3c\x40\xc5\xe7\xc2\xda\x82\x5d\x78\x08\xf2\xd6\x14\xba\x3f\x97\xaf\x46\xcb\x5e\x62\xcd\x5a\x82\xfa\x27\xc1\x7b\xf0\xd1\xf5\xf9\xf0\x5c\x18\x63\x40\xdb\x1f\x8d\x43\x9a\xc3\x3b\x27\xa7\x01\x55\x05\xab\x9f\x22\x55\xb5\xcc\x43\xd8\xc1\x71\xc3\xf5\xb1\xf2\x68\x4c\xc2\x25\xff\x68\x4c\xc2\x61\x7e\x34\x26\x81\xfa\x3f\x85\xf5\x86\xac\x3c\x25\x63\x85\xdb\x18\xe0\x10\x2a\x3c\x24\x1b\xd5\xd7\xec\x51\x0f\xa3\xa3\xf5\x03\x27\xd0\xa6\xfb\xab\x45\x88\x0b\xa2\x45\x88\x60\x13\xf1\xd7\x80\xe0\x4f\xc5\x60\xdb\x9d\x40\x25\x63\xf4\xaa\x87\xe8\xbf\x64\x79\x8c\x47\x0b\x12\xc8\xcb\x53\xe1\x1f\x8b\xf5\xe1\x1f\x5d\x22\xd2\x93\x1a\x09\xf7\xd1\xb2\xc4\x1d\xd2\xb2\x84\xdb\xe1\x69\x30\xb7\xdc\xd9\x4f\xfb\xbd\x95\x0d\x70\xf6\x10\x63\x4e\xa9\xdc\x43\x42\x52\xc3\x00\x3f\xcd\x4b\x5e\x5c\x6a\x02\x4d\xa7\x4d\x40\xe9\xa8\xcb\x0f\x02\x10\x61\x7a\xab\x88\xde\x95\x4f\x21\x45\x7c\x88\xd3\xab\x92\xe7\xe9\xa8\x0e\xdc\xb4\x0e\x83\x0a\xdd\x7f\x3a\xaa\x03\x37\x99\x38\xbd\xea\x57\x1e\x4d\x48\x44\xf4\x2e\xd1\x46\xce\xf8\x68\x2b\xe2\xce\x76\xb9\x55\xa6\x89\xa9\x48\xda\x6a\x3c\x04\xe7\xad\x50\xd7\x27\x04\x8f\x29\x84\x37\x1c\x0d\x42\xe8\x98\x66\x08\x1d\x90\x06\xf9\xe4\xc2\x7e\x80\xce\xf3\x19\x40\x97\xe5\xc1\xef\xcc\x26\x92\x48\xd3\x58\x53\x10\xd5\x3f\x8f\xd6\x1f\x70\x6b\x8f\xd6\x1f\xda\xfa\x3e\x58\x7f\x18\x11\xf7\x49\xf9\x83\xfb\x3f\x64\xfc\xdc\x44\xac\x3f\xb4\x5d\x79\x4c\x00\xa5\x21\xfb\xa3\xf9\x87\x0e\x0e\xcf\x90\xd0\x7a\x18\x07\x84\x16\x36\xfb\x49\xf9\x85\xfb\x35\xb5\x57\x11\x77\x91\x5f\xa4\x36\xe4\x31\x56\x2e\xef\x9d\x67\x3a\x75\x5b\xc8\xd9\x8b\xbb\xe4\x82\xd2\xeb\xe2\x51\x5e\xa1\xe9\xed\x33\x25\xda\x52\x42\x45\x14\xda\x79\x3f\x33\x21\xb6\x9a\x37\x03\x7f\x60\x15\x22\x13\xf5\x90\x24\x4a\xbf\xa2\xe7\x16\x2a\x51\xc4\x70\xb8\x79\x68\xd5\xf7\x68\xde\xf3\xa8\xa3\xd1\xee\xf8\xb9\xe5\xd9\x6d\xe2\xfb\x49\xe4\x36\xb6\xad\x92\xd9\xc7\x70\xb6\x62\x06\x4c\x47\x18\xce\xe3\x21\x65\x93\x7c\xde\x63\x00\x5b\xc5\xb4\xcf\xa3\x6b\x9f\x08\xf4\x90\xaf\x6b\xf8\x87\xcf\x0a\x51\xee\x51\xff\x21\x1a\x2c\x4f\xc4\x9f\x6e\x66\x0f\x6a\x1a\x19\xc4\x67\x09\x00\xeb\xaa\xcd\xa8\xba\xd9\xc7\xd8\xb4\x12\x88\xa5\x18\xc8\x73\xb1\x14\x03\x79\xda\x48\xe2\x29\x13\xf1\xa4\x32\xc6\xd3\xb6\x24\xfb\xd2\x42\x13\x08\xa8\x15\x7b\x0c\x48\xab\x04\xe3\xd9\xb2\x56\xae\xa5\x41\x68\x0d\xf0\xfe\x18\x84\x76\x58\x56\x95\xe1\x5a\x6e\x5e\x23\x62\xab\xe9\x94\xe4\xdc\x9f\x54\xab\xb8\x18\xa9\x56\x71\x93\xb7\x46\xfe\x62\x8f\xc1\x6a\xad\x85\xb9\x69\x12\x7b\x63\xd5\x2a\x71\x79\x52\x11\xe3\xc4\x30\x3e\xcd\x0b\x26\xf5\x30\x4e\xf2\xe5\x61\x25\x4a\xbf\xc9\x0a\x02\x8a\x91\x6b\x35\x20\x7d\x5e\x66\xe2\x89\x4a\xa5\x8c\xb7\xfb\xab\x52\xc8\xf3\xf5\x1a\x63\x08\x5e\xf9\x49\x15\x8b\xe4\x36\x55\x2c\x5e\x31\x66\x4d\x92\x19\x7c\x54\xab\x08\xe4\xe7\x33\x4b\xf6\x40\x1d\x8b\x16\x2c\xcf\x27\xb7\x24\xc8\x9f\x6f\x2e\xef\x1c\x98\x99\xf4\xa9\x7c\x52\xfd\x22\xd5\x25\x92\x6d\x9e\xcf\xd4\xbe\x80\xd6\xeb\xd0\x72\x05\xc2\xbe\x0e\x2d\x97\xaa\x1f\xc2\xcc\x85\xbe\x8e\x84\x79\xf0\xa1\x2e\xa6\xf8\x8f\xef\x44\x10\x63\x1d\x4e\xc0\x9e\xd5\x0b\x71\xf1\xaf\xc3\x77\x62\xb3\x49\xc2\x5c\xf9\xc0\xbc\xaa\x5b\xc6\xbc\x0a\x44\x5e\x87\xac\x74\xb5\x5f\x41\xe6\x5a\x5a\xa7\x20\x73\x46\xd7\xc9\x8e\x0f\xff\xc8\xab\x02\x20\x4f\xa3\xe1\x70\xc8\x96\x59\x94\xc4\xde\x85\x2a\x27\xb4\xf5\x5e\xaa\x72\xe4\xc2\x96\xaa\x1c\x29\xfe\x3a\x11\x22\xf2\xa6\x59\xa7\xef\x57\x2e\x95\x65\xee\x24\xd9\x8b\x75\x91\xea\x09\xb4\x5e\x97\x9a\x24\x96\x7f\xfd\x58\xa0\x26\x7f\xbb\xd4\xf0\xe4\xba\x64\x82\x25\x8e\xe8\xba\x70\xab\x87\x6e\xaf\x4b\x9f\x74\x88\xc7\xba\x12\x62\xc0\x47\xf7\xa3\xf9\xc7\x42\xf7\xa3\xad\xcc\xd2\x55\x56\xdf\xda\x75\x25\xf0\x8c\x58\x84\xd1\xa5\x34\x8d\x92\x81\x81\x56\xe6\x2b\x70\xf6\x05\xeb\x2e\x90\x6f\x15\x82\x7f\x55\x5b\x4c\x3b\xf6\xe3\xf1\xc3\x5a\x39\x24\x53\x29\x78\xc4\xbb\x45\x3f\x56\xa6\xa9\xfb\x58\xb0\x32\x3d\xd7\xf1\xc7\xca\x64\xe4\xf5\x85\x4c\x23\x19\xfa\x55\xd5\x7b\xb9\x5d\x35\x19\x77\x56\x05\x39\x86\x99\xfd\x63\x55\xb5\x60\xa7\x3d\xdf\x7e\xfc\x69\xd6\xb2\xaa\x7a\x31\x5b\x6d\xca\x80\xf3\x63\x5e\x9a\x72\xad\x85\x69\x49\xd7\x31\x61\x61\x4e\x52\x74\xd1\x5e\x88\x42\x8a\xb1\x32\x56\xd3\xfb\x97\xa3\xbc\x9a\x4e\xf1\xa7\x1d\xe8\x07\x7f\x5a\xed\xf6\x03\xa8\x4d\xc3\x64\x18\x88\x85\x2c\xa4\x5c\x39\x8e\xf6\x12\xdd\xde\x7e\x6f\x44\x63\xbc\x2e\xe4\x22\xc6\x87\x5d\xa4\x57\x92\x44\x2d\xd2\x2b\x49\xb9\x17\x9e\x30\x12\xcb\x65\x76\x25\x5d\x79\x17\x9e\x30\x45\x5f\xde\xd5\x53\x0b\xc7\x84\x75\x85\x91\x45\x59\x44\x0a\x29\x5a\x48\x2d\xfc\x62\xf4\xfc\x5c\x3d\xa1\x72\x14\x92\x43\x89\x88\x70\x41\xa5\xb9\x7f\xf8\xc5\x74\x63\xd5\x2d\x02\xcf\xf9\x5a\x5a\x06\x07\x71\xea\x7a\xc1\xa8\x8b\x58\x88\x65\x0c\xe7\xb0\x02\x95\x1b\x97\xf9\x4a\x1e\x07\x41\xe5\xc2\x74\xb6\xc9\x0d\xac\xf0\x11\x66\x6b\x83\x8c\x3a\x2b\x84\x2b\xf9\xe8\x5b\x83\x57\x98\xdb\xab\x70\x05\x1e\x65\x0d\xf7\xca\x49\x0d\x9e\x61\x30\x09\x6b\xf0\x24\x16\x72\x25\x2a\x02\x38\x90\x56\x3b\xf4\x40\x16\x0c\xe7\xb2\xcc\x18\x20\xd7\xb6\x26\x0a\x3f\xd7\x40\x01\x8a\xf0\x29\x33\xf1\x5c\x2b\x33\x71\x76\x13\x7b\x33\xc8\xed\x9a\x58\x92\xc3\x67\xad\xc9\xa3\x40\xe4\x9b\xf2\xa0\x97\x95\x64\xb5\xad\x04\xab\x2d\x4e\xdc\x18\x05\x79\x72\x6f\xe4\xc8\x0e\x7c\xf3\x02\xe1\xa6\x58\xe4\x47\x37\xb8\xe8\xc2\x23\x26\x19\xae\x45\x24\xb8\xaa\x51\xd0\xba\xe5\xb5\x01\xef\x36\x2d\x98\x34\xe0\xce\x89\xfa\x0f\x36\x3b\xdc\x33\xeb\x41\x0d\xe6\x59\x25\x2f\xba\x06\x26\xeb\xc1\x7e\xc7\x6d\x78\x60\x73\xed\xe8\xc1\xa6\x9b\xfb\x76\x21\x3b\x19\xba\xd4\x2d\x42\xf4\x1b\x48\x7f\x61\xb5\x7a\xe8\xd9\xb3\x34\x42\xd1\x9a\x7e\x21\x48\x39\x34\xa6\x5e\x8f\xc1\xa1\x91\x60\x2c\xfd\x63\x0c\x87\xba\x56\xca\xac\xa8\xb6\x92\xc5\x02\x16\xac\x52\x92\xa7\x5c\x69\x95\x22\x34\xcb\x57\xa4\x7b\xa9\x55\x8a\x17\x4e\xf2\x3e\x6e\x6c\x9a\xa5\xb8\x76\xcb\xf3\x90\xed\x7d\x2b\xfe\x8a\x3b\xb9\x0a\x86\xdf\x99\x15\xc6\x8f\xe4\x83\xac\x26\xf7\x20\x4e\x6e\xc2\xa0\xb8\x90\x5b\x39\x04\x97\xff\xda\xde\x7d\x00\xbc\xb9\xfb\x9c\xc9\xf6\xb6\xb6\x5b\xa4\x48\xee\x48\xb2\x3a\x7f\x13\xbf\x17\xff\x42\xb7\xe5\x4d\x94\xa0\xb7\xd7\xfb\x86\x11\xdf\xe4\x30\xfc\xb8\xa5\xeb\xc0\xf5\x26\x91\x67\x25\x5e\xa3\xfe\x26\x04\x29\x8a\xa5\x67\x54\x24\xc5\x77\xca\x82\xc5\x29\xc6\x3e\x5d\x9f\x47\xd5\xe9\x7f\xea\xd3\x78\x6c\xad\x2f\xd3\xe5\xb0\x18\x5f\x06\x7a\x07\x34\x44\x37\xc5\x4c\x10\xeb\xf3\x49\x60\x93\xa9\xed\x80\x1f\x3a\x76\x39\x8a\xc9\xb5\xdc\xa3\x8f\x08\x23\xbc\x4d\x56\xda\xbe\xfe\x80\xdc\x30\x38\x26\xad\xd9\x84\xc9\x15\xdd\xb6\x26\xb1\x8c\xb6\x31\x89\xf5\x35\xb0\x8f\xfa\xdf\xff\x2e\x33\x06\x6d\x18\x1d\x92\x51\xc7\x46\xbc\x63\x28\x95\xfd\x63\x73\x2e\xf2\x52\xc7\x46\xd4\xe3\xf3\x6c\x13\x5a\x8d\x94\xea\xb1\x09\xad\xa6\xd7\xc4\xfe\x31\x3c\x97\x6e\x16\xfb\x80\xde\x4c\xdb\xee\xdf\xef\x97\x63\x21\xf4\x19\xd6\x47\xe8\x03\x95\xdf\x3f\x6e\xe7\xd2\x13\x63\xeb\xbd\x03\x1f\xb0\x15\xfa\x80\x94\x5b\xa1\x0f\xbb\xba\x4f\xa4\xce\xa7\xe5\x46\xd9\x3a\x48\x9d\x61\x54\xf6\x89\xd2\x8c\xeb\x68\x9f\xd0\x48\xf8\x94\x8d\x5c\x48\x6b\xbc\x7d\x02\xff\x25\x0c\xc0\xcf\x61\xde\x84\xff\xd0\x3e\x70\xeb\xf4\x33\xec\x47\xf8\xfd\x1d\xf8\xb9\xb1\xf6\x25\xfc\xf4\x7f\x21\xb4\xe2\xea\xdc\x84\x02\xd1\xd3\x63\x5f\x26\x9c\x63\xf3\x36\x99\x9d\x44\xd7\x4d\x10\x36\x4f\xce\xbe\x90\x58\xc0\x4e\x6e\x62\xab\x79\x28\x36\x82\x9c\xe9\x86\x5d\x1f\x65\x26\x8c\xed\xed\x74\xb3\xcb\x6f\xe0\xe9\x84\xb1\xbd\x9d\x02\xf1\xe3\x8c\xae\x09\x95\xd9\x0a\x6f\xa0\x0b\xbb\x48\xbf\xfd\x5d\x9a\x6d\x3f\x93\xfa\x2c\x10\xd6\x2d\x1e\xd2\xad\x4c\x27\xac\xbf\xa8\x63\x3f\x08\x9c\x78\x9b\xec\x2a\x3c\x96\x11\x2c\x71\xd8\x77\x15\x1e\xe6\x52\x85\xc7\x72\xa5\x4c\xff\x5a\xdf\x72\x9e\x77\x55\x6e\x66\x19\x63\x0b\x0e\xc0\xd6\xe0\x16\x1a\xb7\x6b\xea\xc0\xac\xf4\xbb\x5b\x86\x2b\x5d\xbf\x5f\xd9\x09\x2b\xc6\x81\x63\xdb\x3f\x4e\x68\xc8\x63\x6d\x6c\x6c\x87\x0b\xf4\x63\x8a\x86\xa6\x49\xfb\xc7\x13\x8d\xe1\x22\x36\xef\x1c\xfa\xfc\xb1\x47\x43\xc3\xa6\x8d\x44\x47\x3b\x88\xdd\x4c\x54\x28\xfa\xe9\x38\x14\x96\x17\x95\x2c\x2b\x76\x16\xff\xf0\x22\xfa\xd1\xf9\x3f\xe8\xdb\x6e\x4c\x43\xa4\xea\x48\xa0\x60\xe0\x37\xee\x46\x46\xab\xdc\x5d\xd0\x2d\x23\x74\x82\x99\xde\x18\xa8\x0c\xf7\x01\x17\x23\x89\xf1\xc6\xbe\x57\xc9\xf1\xc6\xbe\x77\x88\x3b\x18\xae\xa8\x7c\xda\xd8\xf4\x6a\x90\xb5\xbb\xc0\x5a\x76\x59\xe9\x3f\x58\x56\x5e\x07\x3b\xc0\xbb\xfc\x1d\xd8\xdc\x92\x40\x74\x0e\x5b\xb3\xf5\x2e\x82\xa2\xed\xc0\xbc\x55\x3c\xd2\xd4\xd7\x15\xd3\x9e\xc5\xc3\xa5\x3d\x8b\x0b\x16\x5e\xd7\x94\xb5\xf4\x15\x17\xb4\x60\xb1\x1f\x0d\x7d\x21\xc5\x5b\x43\x5f\x89\xcc\x40\x66\x26\xbe\x0c\xa4\x52\xe2\xe3\x40\x12\xe5\x99\x1b\x5e\x9c\x52\x16\x92\x4d\x8e\x3c\x69\x43\x88\x2c\x03\x51\xd8\x2b\xda\x1f\x4f\xef\x40\xdd\x6b\x59\x03\x60\x47\x9b\x30\x13\x92\x22\x8d\x81\x6d\xab\x31\xb0\xe4\x0d\x53\x97\x99\xf4\x56\xc9\x91\xc6\x46\x7b\x2a\x2b\x16\x26\x62\xa2\x99\x7c\x6d\x9b\x3d\x49\xe3\xf0\x4d\x4c\x34\xd9\xba\x3d\x65\x26\xb8\x66\x36\xc2\x22\x23\xf9\x6c\x0d\x58\xb4\x74\xda\x37\xf9\x0c\x24\xf6\xb7\xec\xac\xc8\x70\xeb\xd5\xcd\xcd\xb6\xef\x04\x85\x11\xcd\x9d\xa4\x33\xf2\xbe\x0d\x6a\xe8\x39\x33\x79\x92\xca\xd7\xad\x79\xb0\xee\x8d\xfb\x56\xec\x2f\x71\x24\x93\x92\x36\x40\x1b\xc9\xd3\xe5\xea\xde\xe9\xf3\x6d\xc7\x09\x3e\xcd\x1f\xc0\xb7\x35\x52\x28\x5d\x28\xf6\x23\xf4\xf4\xf4\x78\xfb\x7a\x7f\x20\x91\xd2\x67\x67\xff\x38\xb4\x6a\x4c\xe6\xfd\x24\xec\x40\x88\x40\xca\xd8\x5e\x5b\x81\x94\x46\xdf\x1b\xb5\x97\x96\xfe\xfb\x41\x7a\xe8\xba\x27\xb3\x76\xf9\x81\x8c\x50\x8a\xb4\x4c\xbe\xea\x2a\x2c\xd7\xd7\x73\xba\x14\x64\x4a\x3f\x96\x02\x38\xaf\x17\xb9\x38\xe5\x54\x7b\xe5\x02\x03\xcb\x8f\xa5\xab\x06\x20\xdb\x2b\x97\x94\x3d\x59\xc2\x65\x79\xcb\x06\x58\xcb\x95\x93\xe8\xa4\xe2\xcc\xcd\xda\x26\xd9\x74\x4b\xc8\xa8\xa4\xba\x65\xcb\xc5\x29\x3c\xdd\x70\x71\x43\x07\xe4\xbd\x65\x9d\xbc\xac\xb7\x12\x3c\x0f\xd2\x26\x51\x96\x04\x19\xc9\x96\xaf\x8c\x8d\x8d\xb0\xcf\x92\xbd\x93\xb9\x64\x5a\xdb\x27\x4e\xb6\x46\xc8\xe8\x11\xdb\x22\xea\x9f\x4e\x69\x7b\x2b\x80\x14\xd7\x5f\x45\x9e\x2c\xec\xab\x19\x96\xd4\x01\x27\x6b\x75\x41\xfb\xf5\xb5\xed\xde\xbf\x32\x5e\xe2\xf7\x6b\x2c\x44\x09\xc1\xeb\xc4\xa4\x34\x98\x1f\xab\xad\xda\xaf\x13\x63\x2b\xdf\x14\x19\xda\x1c\x29\xa1\xd7\xaf\x6a\x39\x0d\x35\x37\x6a\x39\xf5\x61\xfb\xd3\x54\x4c\x7c\xf9\x12\x46\xfa\xfa\xb1\x8a\xd5\x67\xd6\x86\x53\x3c\xb4\x45\xd9\x1f\xc2\x4b\xaf\xda\x64\x14\xc5\xee\x2f\xe1\x65\xbe\x5f\xc2\xeb\x3f\xc0\xe8\xb2\x7e\xc2\x28\x01\xf9\x30\xca\xf0\x7a\x56\xc9\x97\x77\x35\x72\xb1\xa1\x43\xe1\x56\xcb\x27\xc4\xef\xa1\xc6\x18\x44\x78\x8f\x24\x33\x27\x1f\x18\x65\xb3\x76\x2f\xe1\x5c\xe4\x01\xde\x03\xad\x30\x30\xbe\x19\xa2\x8d\x23\xf8\x1e\x0a\x32\x87\xff\x28\xc8\xcc\xe6\x0a\x32\x39\x9c\xaf\x72\x2d\x43\xdd\xbe\x3f\x4e\xaf\xca\x38\xbc\x8a\xb5\x38\x77\xef\xe9\x93\x83\x69\xbd\xa7\x82\x4c\xb0\xe0\x3d\x7d\x72\x4c\x3f\x94\x64\x42\xd9\xde\x53\xad\x76\x76\x90\x8f\x11\x20\x3b\x95\x58\x4e\x7b\x53\xf6\x6a\x7b\x41\x06\xd9\xdf\x1f\x67\x57\x25\xf5\xef\x8f\xb3\xab\x5e\x62\xef\xa5\xba\x1d\xc4\x79\x2f\x01\x9b\x7e\x14\x6a\x31\x2d\xcc\x9b\xcf\x92\x4d\x9a\x1f\xfe\xc3\x1b\x4d\x33\xe2\xf7\x52\x42\xc8\xb6\xbc\x97\x12\xc2\x6e\x67\x64\xab\x07\x43\xde\x2b\xe5\x98\xd6\xe2\x65\x04\x7a\xbf\x17\x2f\x23\x57\xc2\x48\x2f\x6a\x7a\xde\x82\x45\xb9\x3b\x47\x3a\x71\x39\xb3\xd7\x38\x2f\xca\x7e\xde\x82\x6d\xbb\x13\x31\x19\xd4\xb0\x92\xf2\x4c\x4e\xc0\x8b\x7c\x4c\x9e\xea\x2d\x3e\x97\x78\x73\xbf\x85\x27\x9d\x2b\x5a\x84\x3c\xec\x4a\xd9\x66\x38\x86\x36\x30\x4d\x10\x79\xe0\x0d\x21\x74\x1a\xb6\x70\x1a\x4c\xaf\x3a\x0d\x4e\xc0\x5b\x9d\x06\xe3\x55\x85\xb1\x48\x1a\x5e\x24\x6a\x72\xc8\xaf\x56\x42\xbe\x81\xde\xea\x3c\x00\xdd\x48\x32\xb0\x06\x6f\x46\x92\x11\xcb\x2b\xd1\x3b\xc5\xcc\x9a\x3b\x60\x2d\xa1\x85\xa8\xbd\x19\x3c\xc6\xd9\x36\xed\xe5\xf3\x1f\x82\xc7\x88\x3f\x19\x3c\xc6\xc5\x6a\x0a\x36\xdd\xc1\x0c\x18\xe3\x3a\x34\x25\x9b\x4e\xab\x91\x5a\x5f\xa4\x69\x08\x36\x45\xb9\x26\x7b\xd1\xff\xb4\x5b\x7e\x33\xb2\x4c\x77\x54\xc4\xb4\x1e\xa7\x34\x33\x12\xa1\x0c\x33\xe3\x23\xe1\x25\xcc\x8c\xa6\xce\xaf\x49\xa5\xe4\xee\xdf\xee\x0c\x5c\x81\x6e\xbe\xb8\x62\x13\xc5\x09\xae\x66\x37\x13\xf8\x69\x35\x6c\x93\xaa\xe5\x14\xf3\xb3\x34\x5d\x79\x28\xd3\xc4\x68\x29\xaf\x98\x17\x21\xda\x65\x98\xb4\x17\x21\xda\x65\x1c\xb3\x37\xcc\x70\x05\xa7\xf1\x06\x51\x2f\x61\x65\x5f\xa4\x68\x97\xd1\x3c\x5e\x62\xc9\x5c\x86\x4d\x7b\x33\x5d\x39\xdc\xe9\x8b\xd7\xfa\x65\x80\xb4\x37\xf3\x95\xc3\x9f\xbe\x81\x35\x55\xb5\x89\xaf\x7b\xee\xde\x17\xd1\xdb\x35\x2e\x9b\x20\x26\xf5\xac\x04\x62\x52\x31\x34\x7c\xe8\x5f\xfe\xf1\xa1\x8d\x86\xa7\x7d\x31\x95\xbe\xc6\xe5\xc7\xe9\x07\x1d\x0f\xe2\xf7\xb8\x60\xc8\xe1\x8a\x11\xb0\xde\x61\x34\x1e\x14\x06\x2f\x6c\x64\x31\x0a\xd5\x3b\x48\x89\x2f\x96\x0d\xbd\x17\x10\x7c\xbd\x99\xcc\x5c\xbc\xfe\x31\x92\x4d\xbb\xc1\x77\xa6\xd0\x81\x39\xa2\x77\xcc\xbc\x0f\xef\x44\x66\x2a\x32\x4d\x64\xa6\x22\x29\xac\x64\x31\x14\xe2\xfb\x63\x25\x9b\xca\x9b\x77\x6a\xce\xeb\xa1\x9a\x66\xa4\x77\xef\xa7\x02\xd4\x62\xb5\xcc\xf9\x04\xc0\x53\x01\x6a\x71\x14\x04\xa8\x12\x17\xf3\x4f\x19\xd0\xf8\x85\x65\x0c\x55\x14\xef\x9d\x39\xc0\x19\xdf\x14\x95\x0a\x5d\x5e\xfd\xa8\x92\xb4\x19\xfc\x3f\x89\xc5\xf6\x03\xd0\x3e\x54\x2c\x21\xdd\xfa\x8a\xfc\x51\x50\xb6\x3d\x0b\xf3\xe1\x17\x7a\x70\x7d\x7c\x85\xc8\xf9\x0c\xff\x15\x1f\xf2\x96\x37\x6f\xcd\xdf\xb2\x7c\xc6\x9d\x32\x4e\xe3\x57\xa1\x86\x9c\xa2\xaf\xaa\xde\x81\x74\x7c\x55\x82\x7d\xfa\x0f\x81\x9f\xa6\x7f\xe8\x8b\xce\xe4\xbf\x9a\xf8\xe5\x87\xfa\x02\x58\xc0\x4f\x31\xfc\x70\xc4\xdc\x60\x47\x54\xec\x98\xff\x98\x2d\x84\xc5\xfb\x90\xd0\x6b\x94\xf6\x35\xf2\xf7\x3b\x41\x52\xb8\x84\xb6\xe7\x1f\x94\x27\x34\x5e\xff\x0c\x5b\x05\xae\x7d\x18\x1b\xa8\x73\xfc\x9a\xb2\x19\xeb\xe0\x39\x31\x2d\x2b\x83\xb1\x57\x64\x18\xd3\xfa\xc8\x30\xa6\x03\x60\xa1\x2c\x14\x1d\xc3\x1b\xe7\xdd\x91\xc1\x80\x59\x9f\xfe\x10\x5c\x53\x5f\xe7\xb9\x06\x19\xff\x3a\x8f\x23\x30\xf1\xd3\xba\x80\xbb\xe5\xd3\xba\x80\x03\xf6\x11\x74\x5b\x23\xdf\x4f\xbf\x07\xe9\xe0\xc7\x3b\x31\xc6\x9f\x8f\xe0\x2f\x65\xee\x28\x2c\x3e\x6c\x0c\x14\xbf\x7c\x21\xb7\xe4\x6e\x06\x26\xac\x1c\xca\x2f\x74\x67\x6b\xd6\x92\x8f\x61\x52\xd0\x87\xb3\xe4\x87\x17\x2e\x87\xea\x0b\xd5\x70\x6e\xb3\xe1\xb8\x7d\xc5\x7d\x88\xe3\x2f\xc3\xc2\x7c\xbf\xc7\x64\xd3\x50\xf6\x1b\xd2\x27\x37\x73\xa8\x2e\x81\xd8\x7c\x83\xf4\x8d\x3c\x1a\x3e\x9e\x96\x45\x6b\x89\x4f\x2b\x85\xec\x8a\x70\x2e\x22\xc9\x48\x97\x66\xca\x9b\xcd\xb4\xd7\x17\x5c\x07\xdc\x61\x5a\x6a\x9e\x47\xdf\x54\xc2\x47\x47\x13\x09\x19\xcc\xcd\x87\xa5\x63\x18\x07\xe1\x9b\x88\xc8\x04\x83\x30\x55\xde\xca\xdf\x44\x44\x36\x6d\x9c\x78\x6f\xaf\x37\xc7\x86\xe1\x26\xa2\x1e\xd1\x76\x22\x7a\xb2\x0e\xd2\x79\xe9\xe5\xc7\xf3\xb1\x2a\xf1\xfc\x6e\x0c\xa9\x87\x65\xde\xdc\x22\xcf\xcd\x9b\x5b\x24\xbc\x31\xaa\x16\xf1\x6e\xc2\x9e\xc0\x5a\x7c\x37\xb2\x81\xe1\xef\x8a\xa7\x45\x12\x5d\x49\x7b\xf6\xf4\x3a\x39\xbb\x82\x05\x17\x3e\x53\xf0\x6a\xe9\xf6\x69\x29\x69\xc0\xc9\x8f\xe7\xe2\xcc\x72\x5e\xe2\x8c\xf2\xe4\xfb\xc7\xf6\xea\x2d\xc3\x0f\x42\x98\x35\xfb\xf2\xd6\x71\x57\x1f\x14\x87\x1e\xcb\x87\x4b\xa7\xd9\x40\x5d\x9d\x1b\xf3\x48\xf5\xab\xff\x48\xf5\xfd\xc3\x57\x3b\xbb\x44\x0a\x17\x9f\xd3\xdf\xef\x51\x79\x99\xca\xf7\x23\xf0\x67\x97\x52\x2d\x64\x88\x10\xe3\x8f\x74\x2e\xe6\x74\xfa\x48\xe7\x62\x1a\xa7\x8f\x58\x9f\x95\xf7\xfe\xb7\x10\x91\x0d\xeb\x23\x4e\x74\x05\x17\x62\x3a\xb7\x68\x21\xa6\x73\x8b\x96\x7b\x0a\x72\x10\xea\x33\xa9\xe2\x56\x4c\x47\x9f\x84\xf4\xcc\x89\x6d\x15\x05\x62\xcd\xce\x77\xbb\x1f\x1f\x27\x9c\x91\x5f\x9f\xb8\x28\xb0\xbf\x7c\x7d\xd9\xe4\xd5\x99\xde\x25\x7b\xd5\x5a\x88\xb3\x3e\xbf\xdc\xfc\x7c\x7e\x49\xa6\x5e\x1f\x96\xd2\xa3\x37\xd1\xc2\x9e\x13\x2d\x6c\x23\xdf\x6e\x5f\x9f\x9b\x4f\xad\xb4\x46\x10\xe9\x3f\x98\x49\xd7\x24\x8d\x11\x24\x68\x3c\xc0\x2e\xbd\x04\xbf\x4f\xa6\x8d\xe1\xb5\x3f\x50\x71\xf5\x7d\xa8\xa3\x1d\xfd\x43\x9d\x21\xb6\x99\x2e\x77\xfc\xae\x9d\x71\x1c\xa4\x9a\xfd\xcd\x64\x1c\xd8\x18\x90\x1b\x61\x1c\x06\xd3\xc4\x2a\x77\x1c\xbe\xbe\xae\xf3\x0f\xba\x37\x0e\x24\xf4\x38\xc7\x8f\xc3\xf0\xd9\x3f\xac\x1a\x87\x06\x98\xc5\x9e\x03\x4c\xb2\xce\x10\x5e\x41\x41\x8a\xfc\xbb\x71\xc7\x61\xcc\xcd\xdf\x3c\xc6\x81\x28\x9e\x2c\xe0\xe3\x40\xe4\x4e\x40\xe9\x71\x60\x67\x49\xfa\xdc\x71\xf0\x10\x23\xb1\xd9\x38\x7e\x4f\xaf\x40\xa4\x33\x0e\xc5\xec\xc5\xdf\x3b\x68\x68\x19\x31\x7b\x61\xdc\x13\xe3\xee\xc2\x58\x8a\xd9\x8b\x6d\x21\x27\xd3\xb2\x28\xe9\x58\x5b\xa0\x3b\x1f\x2f\x95\xec\x54\x9c\xa4\xa3\x2b\x45\x1a\x54\xba\xb0\x4a\x9b\x40\x7d\x29\x5e\x29\x74\x65\x6e\xdd\xab\xf8\x0f\xa1\x36\x07\x30\x5d\xbf\x57\x2d\x92\xe7\x71\xf8\x16\x2b\x4e\xf4\xca\xeb\x80\xd5\xb8\x7c\x16\x0c\xd6\x12\xa7\xd2\x41\xa0\x9f\x71\xe0\x50\x51\x09\xaf\x39\x8e\x62\xd4\x97\xca\x4c\x8a\xce\x6d\x8e\x5f\xdc\x58\xff\xa8\xff\xfd\xcf\xa0\x5f\xe3\x28\xaa\x86\x01\x85\xd0\x5b\x87\xa0\x14\xf7\xce\xdf\x27\xcb\x69\x19\x6d\x89\x93\xfd\x3d\xa0\xa2\x1f\xf6\xc9\x4d\xed\xf4\x2a\x37\xf2\xa4\x0e\x82\xf2\x79\x01\xb7\x82\x72\xc7\x32\x62\x85\x0b\x55\xa1\xec\x62\xa3\x32\x70\xd1\x44\x53\xc6\x06\xfc\x4d\x92\x58\xad\x44\xb0\xaa\x41\xe3\x26\xa5\x66\xfa\xbf\x97\x8c\x1e\xb1\xe3\x68\x06\x24\x6b\x56\x52\x52\x56\xfd\x47\x62\x97\x5d\xbd\x34\xa1\x4c\xca\x90\x7a\x89\x43\x3d\xc3\xce\x03\x49\x37\xf2\x77\x65\x14\xa2\x62\x1e\x38\x88\x8c\xc3\x48\x98\x68\x44\xc6\x61\xd2\x10\x32\x02\x8f\xc3\xc4\x71\x25\xbb\xe6\x7d\xe9\x92\x98\x44\xce\x65\x08\x0f\x3e\xad\x23\x09\xbd\x1f\xc4\xfd\x9c\xcc\xdd\xec\x70\x93\xc1\xf3\x75\x21\xfe\x87\x56\x19\xe2\x27\x0f\x87\xe1\x29\x0c\x62\x6a\x56\xf0\x13\x7e\xe1\x70\x45\xf5\xb0\xc4\x1c\x7f\x1c\x83\x74\x56\x6e\x1f\xd9\x6c\xb1\x56\x1d\xc7\x40\xad\x20\x7a\x0c\x57\x1a\x30\x30\x6f\xc4\x7e\x62\x1c\xc6\xb3\x72\xe0\xcc\xef\x06\xd8\x03\x87\x61\xe7\x39\x0f\xd0\x0c\x80\x4c\xe3\xd6\x19\x6b\x1a\x08\x88\xe9\x98\xd2\x4d\xda\x63\x4a\x37\xa7\x3f\x35\x3e\x01\x86\x49\x04\x79\x61\x9e\x79\x9d\x51\xf6\x09\x65\xdb\x45\x1d\x26\x39\x33\xfe\x20\x65\x59\x78\x1b\x20\x69\xee\x6e\x22\x66\x89\xbd\xfe\xa5\xc5\x1d\xc7\x4d\x14\x42\x17\xdf\x6c\x6f\x95\x51\xd4\xeb\x27\x42\x9a\xd5\xad\x59\xbe\x4d\x3a\x47\x59\x36\x0a\x50\x48\xe4\x96\xb8\x41\x72\xda\xee\xb6\x23\x59\xc6\x7f\x73\x1c\x86\xfb\x16\x99\xd2\x35\xd2\xdf\xab\x31\x92\x28\x37\xfa\x61\xac\x27\xe3\xb0\xb2\xde\xa6\xe7\xbf\xc4\x80\x47\x8f\x1b\x46\x86\x07\xe8\x12\x85\x27\xd5\xb5\xcc\x87\x6b\x5f\xeb\x91\x71\x70\x8f\x9f\x9e\x54\xb2\xaf\x9d\x22\x19\xb2\xe0\x76\x79\x3c\x97\x64\x01\x00\x49\xbf\x76\xe6\xef\x93\x32\xc3\x91\xc5\x16\xa9\xf4\x38\xb8\xe0\x51\x21\x8f\x03\xa7\xc7\xd3\xd3\xc5\x05\x7f\x48\x65\x71\x7a\x3c\xbd\x32\xf6\x41\x5b\x16\x0f\x27\x8b\xd3\x3a\x1b\xb5\x97\xfd\x6f\x81\x63\x06\x5b\x92\x05\xd0\x1b\xd8\xbc\x92\xf0\xc3\x38\x1d\x77\x0b\x1b\x93\xdc\x37\xf5\x81\x81\xd0\x99\xf0\xbb\xe3\xc0\x5d\xf2\x14\x9f\x37\xb7\x50\xc2\x00\x9c\xce\x11\x17\xc9\xd3\xfa\x2f\x37\x92\xeb\x40\xae\xb5\x53\xd2\x8a\x87\xe4\xe1\x22\xfe\xd8\x8d\xeb\xf0\xbc\x90\xf3\xf6\xf4\xe6\xc1\xeb\x62\x5c\xee\x07\x9c\x43\x0c\x51\x81\x3c\x6a\xd5\x63\xfb\x42\x50\xdd\xf2\x0f\xf5\xad\xa8\xf6\xc1\x7a\x49\xfb\x3f\x59\x2f\xda\xfe\x58\x88\xab\x8a\x09\x1f\x97\xb3\x88\xf0\xe3\x20\xa2\x7b\xa5\x7c\xbe\x61\x3d\x56\xa4\xc6\xad\x22\xf3\x27\x85\xb7\xd3\x9b\xb2\x1d\xfd\xde\x6b\xdd\xe5\x25\x35\x6e\x15\xc7\x3f\x01\xb5\x3e\x9a\x4d\xb6\xe3\x24\x1d\x2e\xf9\x88\xc7\x89\x9e\x9f\x24\x9c\xe3\x3c\xd0\x33\x73\x13\x9d\x87\xb4\xb4\xf9\xc1\xad\x0d\x5d\x3e\x65\x1d\x58\x96\xf3\xc8\xd3\x65\x4f\x42\x1a\x94\xa7\xd8\x68\x0b\x5e\xd5\xd5\x9e\xb4\xe4\x61\x01\xce\xc3\x1b\xd2\x26\x69\x91\x08\xb4\xe7\x99\xf7\x08\x6d\x7e\x3c\xc3\x40\x0e\x3a\xce\xd3\x8b\xaa\x50\x0e\x43\xbc\x31\x88\x3e\x1b\xd3\xd6\x93\x06\xcc\xe9\x94\x03\xab\xb6\x78\xf8\xc3\x06\x9b\xb2\x23\xbc\x94\x1b\xe5\x8f\x32\xf5\x49\x96\xc6\xc3\x73\x9c\xf8\x6c\x78\x05\x9d\x17\xba\x67\x70\xe9\xbc\xd0\x3d\xbb\xb0\xfa\x6c\x70\x9c\x4f\x12\xe7\xe2\x19\x3d\x4e\x42\x70\xf2\x4c\x1f\x27\x0c\x83\x8f\xc9\x71\x5e\x0f\x7f\xfc\xa5\xd1\x18\x27\x5a\x7c\xb4\x3b\xe3\xbc\x84\x9c\x45\x57\x8b\xcf\x29\x38\xd5\xe2\x73\xa2\x4f\xb8\x8a\x89\x18\x72\x9c\x25\x03\x13\x30\x27\x43\x55\x4c\x57\xc7\x64\x68\x48\x88\xc6\x59\xf0\x7f\xe8\x40\x89\xc6\x9e\x70\xcf\xe3\x44\x33\x4f\x52\x99\x71\x92\xee\x16\xf7\xb8\x71\xea\x85\x71\x39\x38\xdc\xc4\x80\x3c\x9c\x64\x39\x43\x82\x37\x4e\x1d\x2f\xb8\x76\x4e\x38\x0b\x72\x9b\x8e\xd3\xbc\x66\x73\xda\xc0\xd1\x6c\x00\xd7\xc9\x7d\x74\x92\xae\xbf\x38\x89\x2a\x14\x40\x57\x85\x02\x88\x54\xd3\x43\xaf\x4e\x52\xda\x62\x62\x38\x4e\xbd\x2d\xb8\xcb\x4e\xd5\xf4\x9c\xeb\xb3\xa1\x4f\x0e\xc6\xd5\xf3\xa2\xfb\xbb\xf7\x29\x30\x34\xdd\x8a\x9b\x7f\x3c\xbf\xd9\x88\x10\x3f\x0e\x65\x36\x11\xe8\xc7\x93\xcc\x26\x5a\x76\x14\xca\x6e\x3c\x1e\x19\xcd\xd3\xf5\x63\x4f\x66\x73\xdb\x74\xc2\x10\x43\x8d\xe9\x39\xfd\xfd\xb7\x42\xc3\xfd\x20\xa6\x67\x13\x29\x71\xc2\x68\x6e\xb3\xb1\x3b\xa7\x63\xe9\x86\xc5\x55\x74\x76\x2d\x8e\x3c\x35\xca\x4c\xb8\x27\xce\x1f\x2b\x33\x9b\xe8\x8a\x9a\x1d\xe7\x94\x71\x06\xca\xe5\xc9\x0c\x42\xe8\xa8\x8f\x9a\x1d\x8b\xb9\x71\x06\xcb\x12\xd6\xe9\xd4\xa1\xff\x10\x3a\xfb\x84\xa1\x13\xa5\xc2\x43\xdd\x6c\x8c\x4d\xe2\xe9\x02\x13\xc2\x33\xd1\x6b\xb8\x39\xcc\x79\xa0\x53\xe4\xd2\x38\x8d\xd9\x79\x4a\x51\x08\xc2\x1d\xc5\x83\x6f\x1a\xb2\xd3\xb3\x6b\x1a\x32\xbc\x8d\xc6\x39\x50\xc2\x72\x71\x9c\x23\x5d\xd7\x98\xde\x90\xb7\x64\xa1\x86\x26\x73\xae\xcd\x48\xde\xd2\x7f\x92\xb7\xb4\xbd\x30\xd2\x6f\xca\x3e\x20\x9f\xa7\x21\x24\xc2\xf5\x99\xc9\x34\xd2\x19\x19\xc9\x9a\x8b\xa8\x13\x46\x88\x07\x46\xe9\x16\xa9\x8d\xb9\x15\x6e\xbe\x7a\xf5\x10\x8b\x74\xc2\x80\x5d\x3b\x8d\x05\x11\xd2\x18\x75\xe9\xe1\x9e\xdf\xbe\x45\xa4\xc0\xe8\xd2\xcf\x22\x56\xc1\xd4\x9c\xc5\x83\x77\xfb\x32\xb1\x63\xe4\x54\x59\x09\xe9\x69\xe2\xb0\xc1\x20\x8a\x0b\x76\x27\xcb\xcb\x54\x10\x88\x9c\xc5\xf6\x08\x41\xce\xe2\xf2\xa5\x10\xc4\x63\x6c\x6c\x4e\x42\xb1\x8d\x93\xe0\x5a\x33\xff\x50\x7f\xe5\x56\xea\x2d\x5a\x5c\xcb\xe4\x7a\x5c\xcb\x27\x41\xb6\x8d\x0f\xa8\xf3\x2f\xf5\xc5\x38\x7f\x3c\x51\x4b\x4a\x6e\xb0\x70\x99\xc4\xf3\xc9\x97\x16\x73\x20\xa2\x67\x12\xc7\xe7\xa5\xcc\x44\xf1\x2a\x4d\x52\xbe\x0e\xca\x34\x5e\x3e\xb9\x3c\xeb\x3f\x86\xaa\xe5\x9d\xb0\xe4\xf3\x99\xcb\xf2\x81\x3f\x6c\xad\x9c\x77\xd0\xed\x42\x5d\xe4\x41\x5e\xaa\x8b\x78\xe4\x9c\x19\x6d\x42\x0a\xfa\xe3\xb5\x5a\xde\x29\x4b\xb5\xd7\xf0\x23\x41\x07\xdc\x1f\xb7\xd5\xea\xff\x19\x7b\x8f\xb3\x6d\x79\x9e\xe1\xb6\x95\xaf\x04\x9c\xed\xc9\xdb\x0b\x60\xe8\xbf\x84\x7d\xb0\x96\xee\xf3\xf9\x67\xd7\x9e\x11\x1c\xe4\x24\x2b\xcb\x01\x92\x8e\xac\x0a\xc9\x56\x23\x03\x0d\x90\xb6\x2a\x0d\x68\xa3\xb4\x43\x9e\x44\xf5\xad\x3c\xc9\x1f\xc1\x66\x00\x17\x91\x41\xbb\x1d\xee\x50\x62\x00\xe3\x0e\xc1\xb2\x7f\x1e\x25\x8e\x76\xa9\x7d\x35\xed\x62\x14\x39\xc5\x4f\x8f\x3c\x29\x93\x62\x5c\xae\x2c\xc6\x34\x3c\x68\xb3\x10\x86\x4d\xd0\x3b\x89\x10\x5d\x52\xa2\xe9\x99\xcc\x02\x5d\x47\x5c\x72\xf7\xbd\x52\x1a\xef\x8b\x47\x9a\x85\x99\x96\xb8\x72\xd7\x12\x95\x7c\x4a\x8f\x3c\x91\x73\x00\xb8\xdf\xd8\x8d\xd4\x50\x2d\xee\xe5\xf1\x4a\xd8\xf9\xbd\x1b\xd8\xdb\x17\xf0\x82\x03\x45\xdd\xbd\x44\x44\xa8\xbb\x0f\x6f\x06\x4d\x21\x9d\xcc\x57\x6a\xf7\x2b\x93\x0f\xe8\xba\xe6\xb3\xe4\x52\xe1\x19\x31\x17\x13\x93\x09\x50\x21\x5b\x97\x09\x50\x81\x85\xd3\x47\xb5\xd0\x6f\xe6\xd9\x93\xda\x78\x76\x77\x4c\x9e\x4f\xd6\xdd\x32\x2a\x04\x20\x15\xb2\x42\x97\x62\xa3\x98\xa9\x81\x62\xb3\x76\x8e\x00\x9a\x13\x24\x0a\x67\x31\x27\x38\xf1\x41\x43\x1f\x05\x55\xc9\xa7\x31\xb3\x99\x4d\x70\x68\x9d\xd9\xcc\x26\x84\xcc\x9d\x39\x29\xef\xe1\x8c\xe6\xa4\xbd\x6d\xb3\x0e\xc8\xd3\x09\x20\x46\x05\x11\xc4\x67\x26\x8d\x59\x73\x02\xd0\x76\x63\xb8\x3c\x33\x6e\x1f\x98\xb4\xce\x9c\x0f\x78\x1f\xe0\x20\xfc\x68\x8a\xef\x99\xd5\xa1\x7c\x86\xe0\x75\x32\x70\xf3\xe8\x4b\x90\x70\x69\xc5\xf7\x70\x66\x5d\x5a\xbd\x58\x72\x76\x97\x58\x68\x9b\xaf\x1d\xb8\x89\x22\x4a\xf2\xaf\x99\x8b\x54\x1a\x15\x70\x3d\x95\x1a\xc8\xb8\x9e\x8a\xe4\x73\xf9\xa8\xd9\xc5\xd6\xcb\x08\x53\x16\xeb\x9f\x89\x1c\xba\xd8\x48\x19\x4b\x46\xb9\xe8\xac\x25\xa3\xcb\x00\x5d\x94\xa3\xaf\xc7\xb4\x6f\xbe\x40\x86\x70\xa3\x64\xd2\xc2\x36\x81\x20\x15\x6c\x4b\x7f\x79\xa6\x7d\x8c\x06\x05\x81\xb0\x36\x9e\x99\x83\x8f\x68\x2a\xd3\xc9\x24\xfb\x7f\xb3\x77\x22\x53\x28\xa9\xcb\xd5\xab\x26\x7e\x78\xd5\x70\xf5\x67\x74\xd3\x87\x87\x20\x9b\xe5\x7f\xd8\x87\x59\xfe\x87\x43\x6c\x5e\x3c\x6e\xa3\x10\xe2\x74\xeb\x88\xba\x96\x7f\x44\xc1\xcb\xa6\xc5\x63\xcb\x06\x4c\xf2\x38\x7d\x51\xb7\x0c\x61\x9e\x11\xd7\x64\x0c\x97\x3f\xc4\x21\xc9\xc8\xd4\xa8\x4f\x6e\x1e\x20\x93\x98\xe0\x6d\x31\x33\xca\xe5\x96\xe3\x05\x9f\xf5\x69\x15\x5d\x45\x3c\x4f\x10\x42\x45\xd9\x51\x36\x59\x09\x9e\xa6\x33\x1b\xc6\xbc\x58\x45\xe9\x2a\x53\xf3\x11\x3f\x4d\x9a\x3f\x9b\xb0\x15\x0a\x37\x0f\x77\x87\xcf\x8d\x85\xf4\x59\x3a\x10\x42\x33\x23\xdf\x59\x9e\x08\x22\x65\x24\x67\x68\xc8\x28\x3a\xdf\xc6\x3c\x1f\xf1\x07\xfb\x35\xe5\x23\xf9\x23\x92\x3a\x1a\xff\x99\x3f\x1a\xa9\xa3\xe3\x9f\xd9\x70\xa4\x60\xce\x1c\x39\x4b\xe8\xfb\x23\x97\x7a\xb2\xeb\xa9\xfc\x85\x32\xd0\x41\x46\xe9\x98\x19\xa1\x4e\x9c\xf8\x29\x9a\xa7\xd1\x69\x90\x69\x1b\x7a\xa8\xcc\xa0\x11\xfc\x48\x8d\xe7\x10\xfc\x50\x7e\x91\x13\x05\x9a\x2d\x2f\x25\x1a\x74\xfc\xd1\x43\xa6\x0b\x98\x79\x21\xc6\x75\x52\xc9\xa2\x26\xcd\x93\x97\x52\x15\xda\xff\xe8\x9f\x2e\x31\x93\xd7\xc5\x33\x40\x9b\x69\xcd\x43\xfd\xd1\x45\x3d\x76\xa4\x49\xfd\x5d\xb4\x53\xac\xc1\x77\x92\xfa\x0f\x17\x84\xa4\xfe\x43\x4c\xa6\x67\xaa\x63\x21\xc1\x3f\xa1\x18\x67\x56\xe4\xe3\x58\x4e\xf1\xbe\xe7\xf8\x23\x95\x7a\x9c\x85\x13\xa0\x3d\x96\x1f\xa5\xd4\x87\x27\xec\x94\x45\x74\x7a\x4f\xa1\x66\xf4\x10\x4a\xdd\x25\x40\x8b\x44\xb8\x8c\x99\x4f\x47\x60\x07\x8e\x00\x48\x21\x9f\xba\xb3\xa8\x8c\xc8\xe5\x46\x6b\xd4\xdd\xa7\x17\x50\x7b\x04\x43\x46\xc4\x68\x3e\x6a\xa9\x0f\x37\x36\xc4\x52\x77\x55\xf1\x0e\xe9\xc2\x06\xdd\xd4\xdd\x5b\x17\x33\xed\x89\xbf\xb0\x39\x17\xb6\x8f\x30\xea\x71\xaa\x2f\x61\x06\x4e\xdc\x65\xbb\x2b\x89\xc7\xc8\x5c\x22\xfa\xdb\x69\xa7\xa1\x9b\xa9\x86\x96\xcb\x1f\x2d\xd4\x09\x22\x39\x33\xb4\xd0\x98\x22\x01\x88\x99\x99\x9d\xec\xd0\xc4\x3b\x4e\x7d\x5d\xf3\xf8\x4b\x1f\x3b\xf3\x46\x30\x83\x40\x21\xa3\x2d\x8a\x9b\x63\x17\xbe\x03\x18\x59\x56\xb0\x8a\x98\x59\x61\x52\x7c\x47\x48\x23\xa6\xdd\x78\x17\xb8\x27\xb7\x7e\x34\x2e\x85\xd2\x24\x4f\xb7\x12\x24\xd1\xcc\x46\xd2\x55\x7c\x46\x6a\x04\xdf\x90\x09\xb2\xa5\x44\x3e\x2b\x41\x72\xb3\x3e\x5c\x5f\xde\x9c\x78\xc9\x56\x45\x99\x99\x80\x5b\x87\x58\xed\xe1\x64\xb8\xbe\x8a\x93\xbc\x50\x08\xbe\x25\x8d\x93\x09\xbe\xa5\x7c\x37\x93\xb8\x5f\x31\x77\x26\xbe\x56\xf2\x86\x23\x59\xbf\x1c\x4e\x26\x03\xab\xbc\x4b\x26\xee\x56\x72\x1d\xb1\x21\xec\xd5\x63\xf5\x08\x35\x15\x5e\xa1\xf6\x99\xe9\x75\xf4\x48\x9f\x92\x37\xfc\x8b\x0c\xcc\x8d\xf2\x02\xb4\x78\x0e\xe9\x13\x0e\x94\x33\xbf\x4c\xaf\xd4\xce\xab\x84\xc5\x75\xc7\xcf\x64\xc6\xbd\xf9\x3a\xbf\xcc\xcb\xeb\x10\x7c\x66\x08\xee\x2c\x5d\x6c\x25\x42\x33\xa6\x84\x1a\xa6\xcc\xfc\xa2\xbc\x14\xe7\xa1\xfd\x1a\x84\x1e\x9d\x05\xc9\x94\xac\x5c\x39\x1c\xc4\xe4\xd9\x3d\x52\x78\x76\xe6\x3b\xcf\xec\x11\x8e\x7a\x41\x48\x45\x72\xd6\x59\xf4\x40\xa9\x96\x41\xe0\xc8\x3e\x2a\x78\xa0\x90\xae\x6d\x16\x3d\x50\x8a\xfd\x5e\xf2\x2a\xbe\x30\xf5\xcd\x42\x88\x83\x59\xf2\xa2\xbe\x8a\x8d\x5a\xd4\x57\x09\x74\x10\x51\xdc\x7d\x25\x21\xa3\xe3\x08\x95\x90\x3d\x45\x29\x84\x74\xcc\x5e\xf9\x08\xaa\xd1\x1d\x42\x68\xaf\xa6\x35\xd0\xd5\xb0\xa0\x25\x23\xa5\x63\x11\x0b\x81\xdb\xbb\x63\xcb\x95\xef\x54\x96\x8a\xe2\x90\x96\x0c\x78\xd9\xba\x83\x76\x98\x3b\x09\xaa\x61\x5d\xa0\x73\x2e\x08\xdc\xde\x9d\xbb\x2c\x06\xf1\x19\xe0\x9c\xbb\x8f\xce\x1a\x24\x05\x9f\x45\x32\x8b\x25\x2f\x38\x89\x60\x10\x3f\x0b\x4e\x22\x18\xc1\xcf\x42\x80\x76\x92\x93\xcf\x42\x80\x76\xfc\xdd\x66\x81\xe4\xc2\x27\x6e\x16\x48\x2e\x8c\xef\x67\x41\x7f\xd5\x5d\x63\x8c\x72\x08\xeb\x30\x0b\x24\x17\x46\xf6\xb3\x14\xb6\x17\x47\xb3\xe0\x3c\x32\x1d\x57\x01\x4e\xf7\x84\x21\xdc\xbd\x60\x4a\x01\x50\x2e\x8c\x82\x27\x09\x56\xff\xb3\x54\x68\x77\xc8\xcf\x52\x9d\x50\xca\xe3\x49\x82\x1d\xfe\x2c\x84\x4c\x25\xbd\xf9\x2c\x84\x4c\xed\x6e\xc6\xea\x84\xfe\xa9\x71\x2d\x95\x1d\x06\xc2\x28\x95\x51\x80\x90\x0a\xda\x33\xe2\x74\xcc\x42\x0c\x55\xf5\x07\xa5\x3a\xdb\x02\xcb\x6c\xbb\x23\x2b\x3b\x21\xdb\x0e\x42\x66\xee\x95\x42\x6c\x55\x82\x62\xcc\xd2\x1c\x90\xdf\x59\x05\x8e\x57\x21\xb6\xaa\x9a\x84\xd2\x5c\x05\xda\x6f\xee\x10\xcb\xa8\x86\x70\x79\xba\x98\xcd\xda\x6a\xd1\xa6\x73\x86\xe2\xac\x61\xdd\x3a\x4b\x0f\x64\xcf\x1f\xe2\x8c\xca\x60\x14\xe9\x27\xb7\x1e\xf4\x53\x76\x9f\x7f\xf4\xd3\x94\xbb\x28\x03\xea\xda\x41\x7f\xe4\x53\x5e\x6e\xed\x01\x45\x2d\x50\xa4\x72\x53\xb3\x57\x06\x32\x59\xb7\xea\x40\x26\xeb\x96\x9c\x30\x3c\x1e\x85\x09\x0c\x4e\x18\x31\x3e\x2a\x36\xb9\xb3\x4c\xc8\x7a\x3b\x9e\x08\x62\xdd\x33\x13\xb2\xde\xd9\xc6\xcb\x75\x79\xd6\x26\xba\xcd\xf8\x8e\x90\xd8\x7d\x3e\x11\xbb\x7a\xe4\x27\xc0\x79\xd6\x30\xaa\x59\xd1\x31\xc0\x79\x98\x89\x33\xa6\xbc\xab\x60\x7d\x57\x95\xb9\x14\x3c\x61\x97\x7b\x69\x21\x3d\x76\x79\xf0\x8a\xcd\x1e\x42\xec\x6b\x54\x11\x97\x25\x5f\x02\x10\xcb\x01\x58\xde\x99\xb3\x4d\xc4\xdc\x6e\x91\x85\x04\x55\x24\xb2\x1c\x00\x33\x84\xe7\xac\x19\x86\x66\x59\x4e\xaf\x95\x1d\x01\x23\x3b\x11\x1c\x3b\xbd\x27\x80\x7a\x22\x4f\x19\x28\x1a\x3d\x5d\x62\x80\x38\x01\x94\xfb\xab\x9c\x2c\xb1\xcb\x7a\xb2\xc4\xcd\xef\xcc\xb4\x7b\xf3\x04\x50\xb1\xee\xc9\x72\x47\xfb\x48\xbf\xa3\x9d\xdb\xe5\xb3\x03\xd7\xde\x8e\x5d\x7b\x2a\x5f\x4c\xaf\x4b\x06\x31\x64\xa2\xaf\x59\x48\x89\xbb\xdc\x2c\x52\x3a\x52\xf3\x85\xd4\x71\xd3\x63\xf7\x51\x3a\x73\x8a\xd7\x6f\xa4\xc3\xe2\xf5\x1b\xe9\x70\x3c\x23\xc6\x86\xb8\x2e\x37\x3c\x3d\x22\xce\x72\x23\x1d\x46\x5b\x59\x6e\x64\x1d\xdd\x32\x88\xb4\xb9\xe2\xca\x8d\x43\x97\x48\x14\xf3\x99\x38\x43\x37\x49\x9e\x97\xfd\x82\xc0\x44\x96\x37\x6c\xb5\x6b\x86\x63\x46\x0f\x6c\x49\x0a\xdd\x29\xf6\xbb\xe5\x2b\xf9\x4e\xda\x5c\xe2\x82\xcc\xb2\xb5\x9b\x5a\xbe\x20\xb0\x45\x22\x55\x36\xfc\x0b\x62\xab\xb2\x81\x54\x54\xab\x21\x0e\xc2\xe1\xb2\x85\xd4\xf2\xf0\x94\x7f\x46\x8a\x9a\x85\x04\x33\x33\x3a\x01\xf4\xe8\x1c\xc1\xbc\x18\x69\x0b\xb9\x65\xf0\xcd\x46\x98\x56\xcc\xb5\xeb\x77\x72\xed\x4e\xb1\x19\x89\x67\xa6\xed\x3c\x4c\xbd\xeb\x49\x8c\x34\xf2\xe1\xcf\xf2\x30\x20\xb1\x28\xb9\x76\x27\x44\x4e\x79\x18\x44\xb3\x3c\xaa\x0b\x2f\xda\xc7\xa3\x60\x79\x60\x16\xaf\x91\xa8\x46\x1a\xb6\x3c\xde\x17\xae\xa1\x62\x26\xd7\xe7\x01\x68\xaf\x72\xf2\xf2\x16\x1b\x7a\xdd\x2f\x74\x46\x5e\xde\x62\x43\xa4\xa9\x99\x51\x9e\x55\x80\xd3\x2c\x2f\x40\x0b\xd0\xcb\x2a\x78\x37\xbd\x78\xd1\x79\x71\xbe\xec\x11\x91\xd4\x2b\xd0\x96\x77\xa2\x7d\x06\x68\x8f\xef\x4b\xbc\x29\xf7\xa6\xea\x3c\x27\xf7\x75\x8f\x7f\xcf\xf5\x60\x72\xc1\xd0\xf5\x50\xd3\xe1\xb3\x3b\xc4\x67\x05\xcb\x6c\xc2\x7a\x00\x1c\x2c\x6a\x3d\x08\x59\x88\x96\xa1\x1e\x6e\xe0\xce\x33\x1b\x78\xfa\x8c\x7a\x26\xca\xbb\x81\x27\xcf\x00\x37\xac\x8b\x7a\x86\x01\xd4\x03\xe0\xfc\x9e\x3c\x80\x00\x9a\xdc\x05\x3e\xb3\x0b\x20\xbe\x6a\x72\x42\x69\x13\x2d\x60\x73\xb6\x2a\x72\xab\xae\x76\xb2\xa6\xd0\x1e\x59\xc5\xf9\xb2\x8b\x5b\x42\x8e\xb1\x61\xf3\xd3\x54\x9e\x56\xdc\x31\x4c\x09\x31\x2b\x41\xd7\x66\x94\x42\xdc\x31\x9c\xbf\x6c\x4a\x13\x70\x64\xcd\x1c\x8d\xea\x0f\xb4\x40\xce\x59\x36\x66\xab\x65\x90\x87\x09\x3b\x16\x3f\x5d\x84\x56\x33\x0a\x18\xb0\x4d\x2d\x08\x84\xc0\xf2\xf5\x23\x9d\x0a\xfe\x92\xb3\x16\x84\x43\x20\xcf\xfa\x91\x4e\x0b\xef\x9a\x59\x0b\xb2\x20\xae\xa3\x5a\x90\x26\xc2\xe8\xd5\x82\x32\xa6\x5b\x17\x65\x8c\x7d\x15\x76\xd5\xb2\xbc\xe7\xd9\x76\x4e\xca\x08\x03\x03\xe8\xb6\x73\xd3\xa6\xe5\x37\xf0\x30\x47\x48\xb4\x9a\xd4\x4b\x2d\x0c\x00\x0c\x5e\x95\x68\x71\x35\x55\x25\x5a\x9c\xbb\x5a\x01\xda\x09\x56\x80\x35\x2c\x8f\x00\xab\x5a\x1e\xfd\x16\xb7\x48\xad\x00\xed\xf6\xac\xf2\x6b\x87\x15\x16\x85\x7c\x3e\x0d\xef\x6e\x6d\xc0\x76\xa5\x2a\xda\x37\xf7\x4f\x65\xde\xb9\x53\x6a\x45\x13\xc7\x01\xab\x0d\x48\xdd\xf4\x0d\x4d\x5c\xfe\x53\xf6\x56\xc9\xff\xd7\xc0\x06\xb5\x99\xec\x8b\x6b\xb5\x36\xc7\xc4\x58\x0d\xcd\xa6\x5c\xa1\x92\x0d\x90\xe4\x90\xb3\x36\x8e\xcd\xb4\xcb\x08\x4d\x0f\x5c\x64\x06\x24\x29\xc2\xac\x64\x06\x24\x35\xd2\xac\x38\xf8\xe2\x1d\x3c\x6b\x73\xc3\x2e\x5b\x72\x50\x0e\x84\x41\x55\x61\x72\x2f\xd1\x50\x77\x80\x54\xc6\x9f\x17\xdf\xde\x59\xa1\xe1\xc2\xcc\xae\x92\x3f\x10\x3f\xe6\x59\xbb\xe2\x3c\x07\x41\xf4\x37\xc5\xcb\x35\x14\x8f\xf4\xa6\xe2\x11\xaa\xad\xf6\xc9\x6c\xf8\xdd\x75\x61\x37\xa1\x84\xc4\x17\x79\xd6\xee\x0e\x02\xea\xce\x0e\x4a\x96\x07\xea\x21\x10\x40\xed\x81\x23\x26\x5c\xf3\xc8\x0c\x09\x23\x44\x0e\x15\x31\x5c\x53\x8d\x5a\x89\x0a\x47\x24\xdb\x59\x89\x0a\xd7\x3c\x88\x43\x89\xba\xdf\x9d\x79\xc6\x3f\x94\x8d\xda\x10\x50\x57\xcb\x33\xf1\xd0\xa6\x75\x78\x06\x2c\xe3\xfc\xfa\x1d\x48\x3d\xf5\xc3\xb8\xed\xee\x5d\xac\xaf\x4c\xc7\x34\xeb\xcc\xf4\x40\x0d\x74\x93\x2b\xc5\x8b\x60\x50\x7d\xba\x93\x1d\x35\x1e\xbe\xea\x6a\xea\xb4\x0f\x2b\x78\x9c\x28\xb3\x50\x85\xba\xce\x06\x87\xc3\xea\x76\xd6\x7f\xc1\xe1\x18\x45\xa4\x0d\x74\x62\x0d\x6e\x9f\x5c\xf7\xa5\x7c\xd4\xb5\x5e\xa2\xac\x28\xa6\x96\x94\x4b\xa5\x46\xb0\x38\x91\xf5\x47\x2d\x56\xe9\xf2\x6a\x6c\x7b\x85\x8b\xd5\xc0\x71\xc9\x23\x83\x93\xb0\x14\x78\x0d\x27\x61\x37\x02\x4e\xc2\x12\xaa\x35\x9c\x84\x45\x01\x86\xb9\xc7\xca\x7b\xd6\xf0\x12\x16\xeb\xa9\xda\x4c\xe2\xcc\xd3\x63\xd5\xfd\xe3\x60\x3c\xd5\xe1\x19\xec\x4a\x18\xed\x16\x87\xad\x59\xc3\x33\x58\xfc\x1f\x9e\xc1\x22\x30\x13\x07\x29\x73\xa8\x5a\x7b\x4b\xe3\xd6\x53\x39\x83\x3b\x2d\x7c\x83\xc5\x0c\xe1\x1b\xec\x55\x74\x05\xd4\xfc\xb9\x84\xda\x59\xc7\xdc\x5b\x62\xb5\x1a\x0a\x37\xee\x8c\x4b\x6d\xf4\xf4\x05\x05\xb4\x47\x3b\xbc\x80\x45\x1f\x11\xb4\xc5\x0b\x21\x82\xb6\xb8\xaf\x2e\xa7\x16\x90\x35\xe9\xd2\x40\xb3\x9a\x84\x30\x3b\x4c\x1c\x84\x65\x6f\xea\xed\x36\xe1\x7b\xf8\x07\x3b\x7f\xe1\x1f\xec\x20\x6f\x35\x3d\xb4\x7b\x73\xbc\xa3\x50\xe7\xfb\xfc\x13\xfb\xdd\x2e\x80\x08\x82\xd8\x77\x72\x33\x15\xcf\x61\xe9\xfc\x4a\x52\x22\x59\xad\x6a\xf4\x97\xe4\x7e\xbf\x63\x97\x58\x3b\x26\x9c\x79\x31\x29\x91\x3a\x81\xba\x9d\x70\xef\xb7\x8f\x90\x0d\xa3\xbc\xba\x1d\x8b\xd4\xc5\x47\xd5\x56\x59\x97\x6a\xda\xa1\x24\x5e\xdd\xe1\xca\xc3\x28\x75\x2f\xc6\x21\x71\xd6\x88\x12\x23\xf4\xfa\x11\xe3\x9e\x38\x2b\xda\xcd\x5a\x3c\x25\x8f\x3a\x5f\x57\x3f\x24\x79\xae\xab\xae\xbf\x6a\xb0\x2b\x3a\xcd\xa6\x9e\xbd\x3e\xaa\xf6\xbd\x87\x55\x58\x0e\x2f\x53\xcd\xca\x87\x27\x18\x17\x5f\xed\x98\x2b\x86\xe4\x4d\x3a\xeb\x51\x11\xe3\xee\xd3\xc5\x77\xb8\x49\x5f\x4d\x44\xe8\xf1\x55\x0f\xe3\x56\x52\x97\x39\xdc\x24\xaf\x16\xac\x1e\x46\xdd\x7a\x87\x27\x4b\xb7\xde\xe1\x3c\xbd\x81\x7d\xec\x46\x90\x3d\x18\x3a\xf9\x0e\xcf\xfc\x2b\xc8\xde\xe1\xaa\x3d\x87\x2b\x80\x68\xee\x18\xe2\x8c\x57\x55\x92\x57\xfa\x47\x59\x56\x4d\x8a\xdb\x11\x9a\xa4\xc5\x8b\x40\x57\x5f\x0c\xc5\x4e\xcb\xed\x10\x49\x42\xd3\x34\x4d\xce\x7b\xd4\xe9\x34\xd6\x79\xf6\xba\xf1\xfb\x14\xca\xc4\x8b\xf0\x83\xde\xdb\x21\xfc\xd9\xfe\x85\x9f\x7d\xd6\xd4\x8c\x12\x4b\x7d\xb6\x43\xf8\xb3\x7f\x84\x3f\xdb\x5a\xa8\xc2\x80\x2c\x69\x01\xce\x16\x6a\x38\x0d\xe3\xf0\x32\x5b\x8a\xc1\x50\x25\xe1\x14\xbe\xac\x51\x81\x98\x4e\xd4\xa1\x12\xc8\x6f\xb6\xd0\xa1\x72\xa9\xb4\x84\xd7\xd0\xb2\x94\x63\x01\x15\xb4\xe4\x58\xba\xa5\xb4\x0c\xf1\x59\xe8\x39\xe4\x2d\x09\xbd\x13\x96\x84\xbe\x09\x8a\xd0\x73\x65\xb4\xec\xf4\xb3\x65\xdb\x47\xcb\x56\x9c\x39\x66\xc3\x99\x18\x67\x8e\xd9\xb4\x65\x57\xc5\xd1\x72\xe3\x87\xb5\x63\xf7\xf8\xe2\xee\xc9\x96\x12\xe2\xea\x4b\xcc\xbe\x8d\xc5\xee\xb1\x4e\xec\x1e\x26\x2c\xc7\x1e\x61\x92\x4c\x15\xa0\x50\xa8\x95\x80\x92\xc9\x28\xaa\x1b\xb9\x26\x1a\x96\xed\x5d\xc9\x45\x2b\x1e\x39\x47\x56\xdc\xbf\xdc\x52\xad\xd8\x0f\x04\x47\x33\x29\xc0\xb2\xbe\x76\x2a\x9c\xc5\xa6\xef\x6f\x11\xb4\xaa\x9d\x0a\x87\xa1\x19\x4e\x8f\x60\x1b\xb3\x55\xec\x54\xdc\x17\x3a\xff\x16\xb7\x9c\x6e\x7b\xe5\x6f\xdc\xd8\xaa\x76\x37\x9c\xce\xa6\x6f\x70\x71\xa3\x54\xb4\xf9\x4e\x55\xc5\xee\xc6\xe1\x7c\xd4\x6b\x5d\x6e\xb9\xaa\x02\x70\x08\xcd\xad\xe7\x9a\x10\x6c\xdb\xb5\x7a\x8c\x8d\xb9\x69\x0e\x87\xa3\xd9\x9a\x46\x91\xdc\x39\xad\xe9\x85\xe8\x41\x31\x01\x81\x86\xef\xad\x39\x1e\x8f\xa3\xd9\x08\x8a\xbb\x0b\x31\x5f\x92\x50\x6b\xa6\x23\x20\x0a\xf2\x6c\x4d\x5b\x21\xab\x28\xa8\x16\x34\x95\xbc\xc5\xcd\xdd\x84\xd3\x8d\x83\x15\xfe\x8a\x86\xd5\x21\x81\x01\x5b\x77\x3d\xdc\xb6\x3d\xd6\x83\x41\x77\x2d\x35\xa2\x98\x03\xa8\xfe\x89\x05\x61\xd0\xdd\x01\x34\x5f\x1c\x80\xfb\xa6\x3b\xe7\x20\xa7\xd6\x99\x5b\x37\x6e\x17\x4c\x77\x64\x58\xf1\x83\x5d\x5b\xc7\x21\x5f\xac\xd1\x63\x6a\xf9\x31\x62\x6a\xf9\x33\xa4\xae\xc4\x5a\x23\x26\xd0\x17\xfa\x9f\x2e\xe7\x70\x02\xc5\x81\x98\xf5\x27\xd9\x94\x86\xde\x37\x4d\xb7\x97\x5e\x81\x12\xc7\x0d\xbd\x6f\xd2\x02\xa4\x61\x1c\x97\x64\xf8\x1a\x16\xff\x9a\x15\xb4\xa9\x03\xbb\x28\x01\xe7\xe0\x24\x11\xdd\x88\x63\x9c\xa6\x7b\x6b\xea\x89\xef\x29\xf8\x48\xd0\xa6\xb5\x47\x43\xe0\x99\xa6\xa8\x72\x0a\x73\xb2\xb1\x41\x29\xdb\x12\x64\xf1\xe1\x14\x64\x08\xe9\x36\xb1\xad\x8a\x4e\x42\xb1\x0f\xf8\x33\x26\xd3\x86\xb7\x0d\x33\x7e\x3c\x8d\xd3\x0c\xf8\xf5\x70\xe4\xae\x6b\xc4\x3b\x4e\xfa\x38\xb4\x85\x9a\x5d\x58\x20\x62\x97\xf6\xdb\x6d\x09\xbe\x35\x34\xa9\x82\x6d\x6f\x2b\xc0\x67\x90\xd0\xb0\x53\x43\x8c\xb6\x02\x7e\xeb\x08\xbf\xf8\x6d\xc5\x94\x5b\xe7\xa2\x65\x1b\xbb\x79\xf6\x7b\x80\xef\x0f\xc1\x17\x25\x42\xc4\x26\xad\xa2\xda\x19\x6b\x01\x94\x66\xcb\x96\x31\x6a\xa7\x6b\xe1\x39\x81\x88\x4d\xda\x6a\x36\x13\x37\x69\x99\xd1\xce\xce\x64\x02\xb2\xe6\x79\xda\x52\xb6\x13\x03\xa8\xa8\xbe\x30\xf4\xa1\x7b\x52\x35\x69\x34\xd0\x4e\xec\xd4\x1c\x15\xd9\xb1\x55\xef\xb5\xcb\x58\x02\x42\x15\xae\x87\xd3\x97\xea\x0b\x63\x0c\xd7\x43\x38\x88\x76\x19\x59\xc0\x95\xd4\xf7\x50\x0b\xb8\x86\x26\x39\x6b\x02\xd7\x70\x3e\xac\x76\x7f\x69\x7f\x64\x0d\x23\xa3\xae\x3f\xc5\x81\x0d\xaa\x35\x6b\x75\xd7\xcc\xd8\xa4\xdb\x55\xbb\xc3\x76\x8d\x25\xbb\x65\xf6\x44\xd5\x91\x55\x1b\xf2\xac\xdd\x31\x20\x86\x6d\x56\x6d\x7d\xb5\xda\xed\x80\xdc\x1a\xb7\x03\x9a\x36\x60\xa8\x04\xb8\xe5\x76\x1b\x2a\xc1\x79\xbe\x9d\x5b\xab\x5c\xfe\xb0\x8a\x16\x76\x02\xa3\x95\x8a\x5b\x36\xcc\xed\x00\x79\x3b\xeb\xb4\xb4\x35\x58\x11\x4b\x40\x9d\x66\x85\x14\x6d\xeb\xb9\xcb\x44\x41\x90\x4e\x85\xdd\x2d\x6c\xf2\xbc\x82\xb6\xbe\x3f\xde\x12\x1a\xe5\xc9\x72\xb6\xad\xeb\xb7\x28\x6f\x1b\x38\x50\x34\x4b\x44\x43\x85\x36\x0d\xb2\x35\x2b\x76\x6a\xdb\x68\x08\xa2\xcc\x47\x0a\xc6\x89\x7d\x04\xd3\x89\x7d\x0c\x8d\x20\x96\x34\x85\xb7\xe2\xa3\xf6\xe8\x61\x2c\x02\x7c\x04\xcd\xdb\xec\xd1\xff\x14\x60\x3e\xe2\xb6\x29\x41\x69\x8f\x26\x68\x5e\x4d\x11\xde\x50\xfc\x8d\xd4\x34\x2b\x74\x69\x28\xa2\x9b\xae\x0c\xed\x09\x30\x29\xf6\x1a\xb4\xc1\x3f\x6f\x80\xc9\x6c\x98\xe1\x3b\xe8\xbe\x57\x4a\x71\xf8\xa7\xeb\x46\x03\x98\xc4\x76\x96\x8b\x69\x6f\xcc\x26\xd0\xe0\x5a\xd9\x3d\x02\xa4\xcf\xd4\x0c\xa6\xe1\x59\xd9\xdd\x56\x90\xb6\xad\x46\x05\xed\x60\x9c\xbe\xd7\x38\x0d\xce\x58\x38\x5d\x32\x96\x7e\x18\xa7\x81\x85\xe9\x87\x71\x1a\x58\xb2\x0e\xa1\x5b\x4b\xfc\x31\x15\x25\x93\xd1\x0f\x43\xf2\xd2\x4f\x3f\xb0\x51\x62\x5b\x76\x02\x3b\xe3\x6e\x3c\xbb\x09\x37\x35\x61\xec\x87\x10\x57\x9e\x81\x78\xd9\xfb\x6d\x4b\xd6\x56\x11\x30\x2d\xf5\x9a\xc6\x89\x62\xd0\xaf\x4d\x16\xbc\x7f\xf4\x6b\x23\xc0\xd1\xec\xc4\xb9\x59\xf8\xee\xcf\xae\xe7\x04\x8e\xc1\xb3\x43\xa7\xd6\x12\x55\x06\x9e\xc4\x8d\xe7\xa9\x15\x28\xc3\x82\x4e\x2d\x47\xb3\x97\x93\x52\xb6\xa5\x45\x51\xb1\xca\x6d\x29\xdb\x7a\x7c\x61\x26\x92\x09\x33\xd9\xb0\x3d\xeb\xdb\xc8\xb6\xea\xd9\xec\x99\x10\x29\x3d\x87\xa7\x14\x0d\x64\x23\x08\xb3\x61\xbb\x29\x3e\xb5\xc1\xed\xb8\x60\x16\x32\xff\xce\x9e\x23\x34\x06\xfd\x40\xb7\x16\x0d\xdf\x7b\x56\xd0\xe6\xa4\xe5\x18\x01\x50\x67\x23\x68\x54\x5f\x0c\x27\x9c\x05\x67\x33\x36\x9f\x63\x04\xcc\x33\x34\x6c\xd7\x76\xaa\x9b\xf2\x53\xaf\x80\x8e\xeb\x44\x91\x1f\xef\xd0\xb0\x25\xff\xed\xae\xd1\x89\x3c\x51\xd4\xe5\x75\xa2\x45\xab\x79\xe9\x26\xfd\xd4\x6d\xaf\x13\x0d\x27\x3c\x6c\x3b\x94\x6f\x38\x3e\xf4\xa2\x69\x1b\xd4\x7e\x87\xf4\x0d\x57\x86\x4e\x08\x1c\x35\x26\x1d\x32\x38\x5c\x2f\x3b\x94\x6f\x55\x22\xd5\x09\x58\x51\x54\xfb\x76\x13\x62\x69\x13\xdd\x21\x49\x8b\x76\x08\x1d\x92\xb4\xa8\x11\xee\x55\xa3\x34\x80\xa9\x5a\x0b\x51\x1d\x8d\x73\x4c\x27\x19\x3c\xf5\x70\xeb\x6a\x99\x5d\x41\xb5\xcc\xb0\x56\x9d\x0c\x9e\xcb\xdd\xd4\x54\x00\xfb\x8c\x16\x30\xea\x5e\xff\xfb\xbf\xa2\xd9\x73\x6f\x88\x12\xb3\xdf\x1f\x9e\xfd\xfe\xf2\x4c\xdd\xae\xf4\x83\xd3\xde\xbb\xfc\x9a\xeb\x18\x34\xa5\x73\x18\x34\xa5\xb3\xfb\x8f\xa6\x04\xa8\x0e\x49\x14\x8d\x05\x49\x61\x95\xe5\xde\x63\x75\x8c\xff\x2c\xf7\xd7\xbb\x16\xb0\x56\x47\x3b\x29\xb5\xdd\xfb\x8b\x65\x14\xcf\x03\xeb\x29\x48\xc5\xfe\x2f\x25\x27\xcf\x41\xb8\x33\x6b\x43\xb3\x1b\x2b\x60\x76\xe3\xc2\x0c\x2c\x53\xdc\x68\x03\x6b\x14\x37\xfa\xc0\xfd\xcd\x99\x1d\x18\x2f\x79\xb6\x06\x86\x29\xee\x83\xa1\x70\xc3\x13\x4c\x54\x67\x0d\xc3\x3a\x29\xb3\xd4\x6c\x75\x52\x66\x69\x15\xd1\x51\x71\x13\xdb\x70\xf6\x89\x01\x82\xbb\x6b\x62\x56\xcb\x9d\xd2\x89\x1b\xa1\x05\x74\x9f\x18\x20\x20\xba\xea\x0b\x53\x14\xd8\x98\x4e\xd8\x08\x0d\x91\xfb\x8a\x51\xd2\x01\x6a\x6d\x39\xaf\x8e\xad\x60\xec\x9f\x25\x70\x96\x01\x38\x0f\xdd\x12\x38\x46\xb6\xb0\x9a\xe8\x3e\x63\xa3\xe2\x6c\x2d\x6c\x54\x9c\xa1\x25\xa0\xcc\xe8\x02\x50\xae\x8e\xbe\x00\xd4\xb3\x7f\x8a\x23\x45\xca\x27\x90\xba\x4d\x4e\x37\x2e\x0d\x9d\x02\xea\x77\x36\x2e\x74\x54\x3f\x05\x14\xe0\x4e\x80\x13\x0d\x9e\x00\x27\xda\x39\x31\xe9\x10\x3b\x9f\xce\x28\x40\x68\x1e\xa8\xc1\x78\x3f\x71\xca\x12\x6a\x55\xd6\x8e\xf2\x22\xc4\xa5\xd3\x6e\x2a\x0c\x75\x5b\xfd\x42\xd1\x1e\x15\x50\xb4\x3b\xfc\xcb\xa3\xc4\xd4\x5d\x9a\x34\x58\x1e\x8b\x00\xa7\xf1\x42\xd1\xee\xda\x5f\x1c\xb1\xe8\x00\x45\x7b\xd4\x45\x87\xee\x08\x6e\x94\xfd\xae\xf1\x8d\x2d\x85\x6d\xa2\x05\xcf\xf1\x5d\x78\xfe\x64\x8f\xfb\x8d\xf3\x9b\x73\x7f\x63\x15\x10\xcf\x02\xcb\xa8\x6f\xad\x02\x00\xf6\x16\x58\x96\xe7\xc6\xfe\x42\xc0\x6f\x2c\x01\xe2\x3b\x36\x17\x2e\xc3\x47\x97\x15\xa9\xba\x8e\xf6\x5b\xb3\xfd\xbe\x3f\x00\x09\x2c\x37\x3b\xca\x6f\xa9\xea\xbe\x91\xca\xbb\x24\x28\xbc\x75\x86\xe9\x28\xbc\xf5\x79\xeb\x1f\x49\x56\x34\xb7\xef\x1f\x45\x36\xf5\xc5\xeb\x5b\x9c\xe4\xf3\xcd\x77\xe0\x47\xbf\xbd\x02\x86\x87\x32\x4c\x2a\xfa\x6d\xdd\x35\x3a\x7a\xec\x15\xcf\xc2\x06\x3c\x8f\xb0\x31\xc1\xb8\x48\x68\x49\xd3\xd1\x5d\xeb\xb4\xd3\x3f\x3a\x6c\xea\x4d\xd3\x1f\xe1\xb1\xfc\xc5\x33\x7d\xa1\xbb\x36\xfc\x40\xff\xa8\xb0\x22\xdd\xda\x1f\xa3\x36\x4a\x07\xbc\x08\x7f\x3d\x80\xaf\x13\x41\xe5\x17\x61\xdb\xf0\x19\x2d\x89\xfb\xf7\x45\xb7\x03\xff\xda\x5f\xb4\x24\x62\x87\x17\x3d\x8f\x17\xc9\x2b\x42\xfe\xea\x0e\x12\x75\xca\x30\x8d\x03\x09\xe6\xf4\x59\x25\x99\xcf\xc0\x00\x9e\x1e\x07\xfa\x25\x28\xac\x81\x6a\x59\xf6\x70\x90\xa7\x53\x8e\x6e\x1c\x68\x6a\xa6\xdf\x4f\xca\x17\x9e\x55\xb7\xfa\x1d\xb5\x1f\x97\xcb\x38\xd0\xae\x4c\x9f\xd1\xae\x80\xb9\x46\x32\x54\x06\x08\x7e\x44\xf0\x09\xa6\x74\x24\x54\x61\x60\xe8\x91\xcc\xf2\x32\x2c\x85\x08\x1f\x8c\x3b\x14\xd5\xc9\x35\x0d\xcc\xf6\x0e\x39\xe3\xa1\x1f\x84\x0c\xc0\x48\x88\xf0\x21\xac\x87\xa2\x3a\x99\x94\xa1\x74\xce\x2b\x76\xe4\xb8\xac\x68\x39\xa3\x4e\x80\x99\x18\x59\x4f\x37\xa8\xbe\xa1\xac\x4e\xce\x70\x20\xab\xd3\xc0\x69\x28\x91\x93\x97\x1a\x19\x71\x3c\x97\xe6\x50\x20\xa7\xd3\xc8\xc8\x06\xe4\x38\x6c\x6b\xfb\x62\x5b\x01\x18\x8d\x29\x90\x93\x31\x1d\x0a\xe4\xe4\x8c\x47\x71\x92\xd8\xd7\xa3\x04\x64\x16\x43\xa1\x50\xfd\xd1\xac\xc2\xf4\x91\xe2\x53\x73\xae\x81\xd4\xee\x50\xc8\x30\x8a\x90\x71\xd6\x06\x29\x3e\x35\x57\x1a\x45\x28\x93\x55\x1e\x7b\xf4\x0f\x7a\x0e\x08\xf3\x51\xd5\x0d\x40\x21\x8d\x1a\x41\x4f\x00\xb2\xc6\x4a\xfa\x47\x47\x24\x4e\xd9\x40\x30\x77\x78\x6f\x0f\x32\x73\x6a\x76\x38\x54\x0c\x4f\xab\x2b\xa8\x64\xbb\x8f\xf0\x8b\x70\x5e\xc3\x2f\xc2\x62\xe1\x17\x31\xd6\x5f\xf8\x6e\x84\xd3\x84\xfb\xb2\x21\x79\x45\xb4\x30\x9a\x92\x57\x2e\xff\xd1\x5c\x4d\x56\xa3\x29\x79\xed\x96\x1a\xd4\x00\xe6\xa6\xe0\x75\x08\xc1\xe2\x87\xb5\x95\xbb\x72\x5e\x47\x53\x1e\x3a\xac\xa2\xdc\xd8\x55\x32\x3e\x86\x2e\x69\xa3\xc5\x40\x99\xe7\xe6\x40\x3d\x18\xfd\xa0\x65\x7e\xf4\x18\x27\xb0\x04\x15\xe5\x36\xe9\x4a\xb7\xdd\x99\x1d\x41\xbd\xa7\x27\x62\x65\xb8\xcb\x3f\xc2\xa9\xea\xfc\x34\xba\xa2\x62\x37\x79\x17\xe4\x69\x75\x75\x30\xf0\x39\xa3\x0b\xf2\xb4\x58\x80\x6c\xcb\x82\x2c\xaa\xe8\x01\x32\xdd\x10\xf4\xaf\x2d\x07\x03\x51\x35\x8f\xf8\xa3\x7a\xc4\xf3\x3b\x94\xce\xd3\xf2\x08\xf8\x19\xf2\x50\xd1\xc0\xf4\x0f\xe1\x1f\xb6\x25\xfc\xd6\xd6\x07\x11\x12\x62\x8c\x80\xdf\x2a\x4e\xb9\xf0\x0f\xd9\x31\xae\xce\xa1\x90\x4e\x3f\x8c\x81\x0b\xab\x5e\xfd\x63\x2a\x68\xf6\xbb\x34\xa8\xcb\xa7\x8c\x4e\xc3\xa4\x81\x8c\x6e\x4a\xcd\x8c\xa9\x5c\xd3\xa1\x28\xa4\xd3\x2f\x63\x28\xa4\xd3\x06\x69\x4c\x13\xf0\x44\x6b\x4a\x90\xa3\x18\x52\x4e\xb1\xab\xa2\x38\x79\x87\xb1\x14\xb9\x42\xf7\x8c\x25\x79\x0c\x39\x31\x56\x80\xc6\x30\x15\xb9\xe9\x17\x32\x96\xd0\x70\xe9\x0e\x45\x6e\x7a\x83\x0c\xa5\x6c\x5a\xca\x8d\xa5\xcc\xd5\x11\x2c\xc5\x84\x2e\x93\x72\x36\xed\x7f\x06\xba\x62\x0d\xc5\xc7\x7a\x99\x1a\x7a\x21\x6c\xb4\x72\xbd\xa1\x28\x4d\xb5\xdd\x38\x83\x6e\xf7\x4f\x53\x83\x4b\x27\x86\xec\x08\xc0\x4e\x25\x7e\x36\x7c\x22\xf1\x73\xce\xf5\x68\x95\xb3\x1f\xa7\x22\xbf\xe8\x46\x91\x5f\xb1\x98\x22\x3f\x51\x93\xbe\xae\x71\xdd\x5c\x4a\xa9\xc4\xb3\xfa\xba\x6a\x59\x36\xc8\x76\xae\x69\xeb\xd0\xd7\x55\xdf\xa0\xa1\xaf\xab\x32\x83\x61\x66\x54\x0d\x93\x87\xbe\xae\x3a\x03\x0e\x33\xa3\x6a\xe5\x35\x74\x7c\x95\xa1\x1e\xfa\xb6\x3a\x98\xcb\xc1\x30\x4b\x57\x0c\xc6\x5e\x1c\x4c\x00\xe6\x60\xa2\x58\x0c\x86\x17\xbd\x5b\xb9\xca\xc7\x6d\x84\x3c\xd7\xe5\x76\x2c\xb0\xc9\xe3\x56\x7c\x59\xfd\x13\x83\x01\x96\x3b\x06\xc3\x9c\xdf\xca\x32\xe9\xff\x46\x7c\x59\xfe\xb4\x7b\x1e\x77\x0c\x4d\x70\x5c\x28\xef\xb3\x9b\xb1\x45\xd3\x8e\x4d\xb4\x7f\x9b\x7a\xc2\xbd\xb9\x91\x19\x7b\x4d\x6f\x5c\x72\x25\x16\xb0\x73\xcc\x71\xcf\x6c\x05\x05\x22\x7a\x24\x70\x5d\xab\x8b\xa1\x04\x2e\xee\x7f\x25\x70\x71\x81\x2b\x81\x8b\xb9\x31\xc1\xab\xa2\xed\xa1\x5f\x6c\xdc\x9a\x8a\xe3\x94\x20\x0f\x9c\x64\x73\x4c\x81\xe9\xd4\x66\xd4\x79\x2d\x46\x6b\xe4\x18\xa9\x62\xed\x27\x70\x2b\x13\xfd\x84\xd4\x10\xa0\x15\xc7\xc5\x15\xfc\xc4\x08\x18\x33\xca\xe6\x1c\xd7\xa6\x82\xba\xb8\x8f\x9f\x10\xdc\x32\xd0\x27\x86\xe3\xcb\x69\x1d\x5b\x73\x04\x62\xf7\x8f\x46\x6c\x35\x1a\x73\x00\x12\x17\x4f\xb0\x8a\xbe\x20\xf5\xb4\xfa\x9b\x79\x66\x2c\x6f\xcc\x33\x83\x79\x85\xd2\x5d\x4f\x70\xb3\xae\x49\xd3\x40\x02\xa7\x05\xda\x78\x15\x67\x3a\x31\x88\xe0\x34\x75\x19\xaf\x42\x43\xc8\xf9\x41\x3a\x35\xed\xda\x86\x42\x37\x25\x7b\x53\xa1\x9b\xa6\x5d\x53\xa1\x9b\xeb\x3f\x0f\xc5\x84\xdd\x17\xa5\x99\x9c\xc6\x89\x04\xae\x2b\x8c\x98\x07\xe2\xd8\x28\xa5\x98\x13\x8e\x63\x1e\xca\x0c\xbb\x2d\x2b\x81\x85\xc9\x99\x87\x20\x77\x1b\x53\xd0\x09\x8b\x34\x15\xc2\x29\x82\x9d\x24\x57\xd3\x4c\x6d\x22\x83\xab\x6a\xa3\x26\xa2\xb6\x2c\x06\x98\x49\x99\x25\x87\x7e\x26\x93\x72\xb1\xe5\x67\x8a\xe0\x91\x07\x2f\xca\x00\xab\x0d\x18\xdb\xcf\x19\x08\x91\x9a\xfd\x24\x1d\xb3\x05\x3a\x11\xc5\x95\xcd\x34\x43\xa2\x26\xcc\xe4\x50\xf3\x3a\x9b\x1f\x69\xd9\xb4\x5b\x9c\xa4\x50\x23\x3c\xf4\x9c\xd9\x84\x5c\x4e\x8c\xe2\x34\x2d\x7a\xa6\xe2\x34\x45\x88\xd3\x44\xb2\x9a\x60\x4e\x88\xce\x22\x36\x9a\x21\x4e\xeb\xbe\x98\xaa\x8b\xf3\x3b\x73\x80\xcf\x28\xff\xc9\xd6\x6c\x60\xcb\x79\xdb\x4f\x48\xac\x98\x26\x84\x6b\xe6\x5e\x9d\xd3\xd0\x67\x9e\xf9\x49\xf0\x69\x0d\x37\xa7\x82\x36\x6f\xad\xa9\xa0\xcd\x8b\x76\x42\x82\x96\x1a\x7f\x3a\x61\x31\xfd\x11\x31\x69\x6d\x6b\xfa\xc2\xa0\x09\x39\xed\xa5\x33\x3f\x72\xb4\xc9\x8a\x4e\xc5\x6a\xb2\x15\x13\x9f\x91\xa2\xe6\x7c\x2a\x63\xd3\x20\x60\x96\xd7\x3f\x4c\x93\xc4\x29\x38\x73\xe2\x41\xa2\x9d\xd0\x54\xd3\xfc\x21\xa6\x3f\x50\xe3\xac\x32\x7b\x80\x59\x15\x4e\x3a\x33\xca\xe2\x6a\xbc\x40\x29\x55\xfb\x24\xb6\x91\x27\x03\x47\x90\x14\x65\xd8\x8b\xf2\xba\x93\xa0\x26\x5a\xf1\xce\x86\x4b\x81\x83\xff\xa8\xcf\x49\x54\xc6\x39\x91\xbf\x11\xb9\x71\x4e\xcc\x14\x55\xf3\xcc\x06\xeb\x57\x2c\x2f\xf1\xe3\xd0\x3f\x7a\xb3\xea\xff\x32\x3f\x0a\xb3\x6a\xbc\x31\x9b\x38\xc4\x4d\x88\xba\x37\x74\xdc\xf3\x23\x2a\xab\xde\xd1\xb3\x93\xe6\xcc\x4d\xd4\x8d\x56\xcf\xb6\x41\x2e\x17\xa2\x98\xa9\x73\xaf\xd6\xe7\xb3\x2b\x02\xf3\x99\x53\xe3\xe2\x74\xfc\xcb\xdc\xe7\x1d\x07\x20\xf7\x79\x47\x1c\xd6\x6c\x55\x21\x90\xe5\x1f\xb7\x9f\x2f\x38\x00\x41\xdb\xcf\x81\xbf\x0c\xf4\xe7\x1c\x08\x84\x20\x65\xe6\x40\x20\xe4\xe6\x47\x26\xa7\x87\xf1\xc4\x4d\xa5\x4e\xbf\x23\xec\x59\xb6\x83\x9f\x0e\x64\xe8\x1c\xc4\x28\x80\x58\x9e\xa4\xbd\xd7\xc7\x6d\x0e\xfb\xe5\x3b\x69\xef\x09\x10\x3d\xe7\x44\x52\x0a\x17\x32\x0d\x70\xa2\x2b\xe3\x9c\x86\xdf\x11\x83\x90\xd3\x7e\x39\x47\x13\x41\xce\xb0\x25\x64\x23\xae\xb3\xfe\x28\x8e\x66\xe2\xf3\xe0\x14\x4d\x1c\x26\x96\xcf\x2a\x0d\x10\xb8\x4c\xf4\xb2\x33\x96\x67\x21\xee\x81\x96\x9c\x3a\xa4\x38\xf1\x0b\x71\x8f\x63\xd6\x09\x65\x58\x1e\x29\x8e\x13\xaf\x13\x8a\xe3\x24\x35\x9b\x46\x09\x53\x27\x14\xe7\x1a\x27\x14\x4d\xac\xa6\x4e\x28\x8e\x59\x27\x14\x89\xb8\xb9\x8c\x0f\xe3\x71\xd0\x0b\xc5\x13\xbc\x10\x52\x39\x63\xa7\xc9\xf3\x1c\xe8\x29\xd8\x80\x71\xba\xe9\xa9\xa0\x4b\x8a\xcb\x76\x0a\x1e\x13\xa6\xeb\x09\x74\xc1\xd4\xdd\xc4\x3d\xa2\xbb\x89\x27\xe9\x74\x22\x7d\xd6\xfe\xce\x75\x26\x93\x9b\xb7\xe8\xbc\x90\xea\x88\x6c\x2e\x4e\x92\xf7\x13\xe2\x37\xcd\x10\x26\xe2\x37\x23\x27\x4e\xc4\x6f\x9a\x84\x4c\xc4\x6f\x71\x44\x2e\xa4\x37\xdc\xa6\xf3\x42\x9a\x04\x65\x31\x3f\x7a\x6e\x6a\x9f\x32\x21\xe7\x9a\x4c\xe3\xc4\x53\xc5\xa8\x4e\x13\xd2\xac\x06\x2e\x44\xff\xd9\x8f\x28\x45\x77\x9e\x36\x7c\x4c\xa4\xab\xe6\x8d\xec\xc4\xed\x79\x23\x3b\x59\x56\x06\x7b\xa8\xb4\x99\x1b\x83\x5c\x0f\xfd\xc6\xc8\x15\xb2\x78\x22\x4d\x93\xaa\x9d\x1b\xb3\xdb\x3f\x73\x0c\xcd\xa9\xd8\x0d\xbe\x74\x86\xd8\xcd\x86\x91\xf4\x14\x9f\x45\x39\x0c\x7c\x23\x6d\x12\xf1\x6f\xa1\xb5\x43\x54\x01\x45\x00\xb1\x2a\x16\xef\x6e\x24\x3d\x70\x77\x13\xb1\x9b\x24\xf4\x7c\xb0\x7f\x16\x67\x3e\x06\xc0\xf3\xce\x35\x4f\x47\x90\x13\xe4\xe9\x50\x12\x3a\x35\xdc\xcb\x51\x5d\xe9\x84\x68\xd0\xe4\x1c\x71\x9b\x91\x9c\x43\x39\xe5\xd4\x72\x2f\x6e\xd0\x17\x03\x45\xf1\x0f\x29\x38\x94\xc2\xce\x57\xa4\xe6\xee\xd5\x56\x2f\xae\xd9\x37\x40\xb1\xba\xa0\x30\xd8\x57\xd1\x0e\x90\xbc\x21\x72\x62\x46\xde\x80\xd1\x4e\x02\x46\x1b\x26\xef\x8d\x34\xca\x1b\xf0\x32\xac\x57\x39\x20\x3c\xeb\x82\xb0\x0a\x0f\xe9\x85\x43\x88\x57\xe1\x3a\x90\x45\x41\xc9\x2c\xd4\x97\x87\xa6\x0c\x0b\xea\xe9\xd0\x2e\x64\x11\xb2\x44\x9f\xd2\xa5\x39\x9e\xe6\x43\x8b\x0c\x1e\x3a\x98\x2e\xad\xf1\x34\xbe\x58\x5a\xe3\x69\xef\xb2\x34\xc0\xd3\x46\x66\x91\xa7\x43\x0f\xc5\xa5\x88\x4e\x13\x99\x85\x9a\xf2\xd0\x78\x62\x25\x2c\xd5\x58\xac\x95\x02\x94\xc9\x0b\x06\xa8\xcd\x1a\x5a\xf2\x80\x69\x56\x92\xe1\x65\x47\xac\xec\x0d\x44\x0d\xf3\x6c\xe8\x24\xb3\xb2\x3c\x26\x27\x61\xe9\xe6\x91\xa3\x4a\xa3\x0a\x33\x94\x65\x84\x41\x55\x2b\xcb\x08\x4f\x1b\x93\x13\x67\x5f\xaf\x8c\xed\x51\xb1\x14\x11\x64\xd8\xcb\xcb\x98\xaf\x7a\xbb\xac\x1c\x70\x01\xa4\x89\x36\x74\x0c\x58\x45\xd9\x01\x48\x76\x15\x19\x61\x7f\xc8\x94\x35\x5f\xe4\xc3\xd8\x53\x0b\x5a\xc7\xdd\xb9\x8a\x3c\x25\x3b\x72\x15\x99\x32\xa0\x2f\x72\x57\x76\x28\x77\xd5\xfc\x41\x50\x24\x61\x2c\xc1\xc2\xf0\xa2\xbd\x9c\xfe\x48\xcb\x64\x19\x3a\xad\x2d\x33\xe9\xeb\x79\xb4\x08\x73\xef\x41\x59\x55\xde\x84\x1d\xb9\xb0\x82\x1b\x4a\x11\x96\x19\x67\xff\x15\x93\x1d\x71\xb3\x55\x19\xaa\x62\xcb\x52\x87\xcd\x06\xe4\xa1\xd8\xd2\xab\x05\xb3\x4d\x9d\x16\xac\x12\xa0\x21\x52\x6b\x9e\xaf\xd5\x88\xa8\x3d\xac\xa2\xb5\x45\xb7\x94\xb4\x3e\xd7\xe3\x6a\xd2\xfa\xdc\x5e\xcb\xd4\x17\xff\xea\x68\xba\xc0\x8d\xba\xc8\x83\xf1\xaf\xca\x0b\xa9\x4f\xf7\x64\x95\x8d\x76\x23\x6c\x49\xfc\x08\x86\xe4\x4f\xc5\xef\xea\xc1\x20\x58\xad\xa2\xe4\x67\xd6\x23\xa4\x09\x34\xdd\xea\x72\x0e\xe0\xaa\xd5\x83\xda\xb6\x0a\xea\x77\xc1\x34\xd8\xc9\x21\x9c\x24\xa0\x55\x5a\xb8\x7a\xb0\x0a\x02\xaa\x22\xdb\x61\x76\x63\x38\xb1\x01\x86\xd9\x1f\xdc\x3f\x24\xa0\x95\xd9\x5f\x43\xea\xda\x76\xc9\x9d\x11\xf1\xf0\xd6\x30\x4d\xae\xa0\x0c\xf9\x03\x81\x1c\xe6\x72\xa8\xd6\x91\x8c\xae\xfe\x79\x50\x1b\x5b\x05\x31\x1e\xb4\xcd\x0a\x37\x0a\x8f\xd5\xc4\x97\x5f\xcc\x33\xb9\xc2\x3d\x54\x1f\x65\x54\xe4\x40\x17\x49\xd6\x24\xc7\xd7\xec\x70\xa6\x80\x0b\x91\x54\x03\xc2\x19\xcb\x6d\xab\x21\x1c\xb2\x29\xc2\x52\x1c\x9e\xfc\x88\x85\xc2\x04\x4d\xb4\x71\xce\xdc\xd2\x0a\x9c\xdb\x66\xe9\x87\xeb\x5c\x23\x1a\xeb\x0a\x06\x16\x34\x90\x72\xaa\xf5\xd1\x40\x45\x1e\x7f\x41\x03\x49\x4b\x2d\x68\x20\xc5\x6f\xeb\xa3\x75\x96\xec\xc2\x5a\x5c\x61\x4e\xb4\x0e\x14\x71\x50\x0d\x07\xa7\xfd\xff\xd2\x83\x42\x0f\x90\xa5\xd3\x44\x1c\x55\x9d\x26\x34\xb1\x5b\xc6\x83\xd3\xaa\x6f\xe9\x34\xa1\x8d\xdc\x0a\x21\x59\xf7\xa5\x7f\xe8\xc4\xe5\x38\x63\xb6\xac\xe2\x04\x0d\x5b\x16\x81\xd1\xff\x89\x89\x5c\x74\xaf\x88\xa9\xdb\xa3\x98\xa2\x5b\x5d\x11\x93\x9d\x5c\x0a\x0b\x18\x8b\x46\x66\xf2\x51\xeb\xf2\x38\x42\x93\xad\x4b\x66\xd7\x6d\x7e\x69\xf0\x42\x2f\x97\x34\x60\x94\xc2\x10\x43\x18\x2f\x63\x90\x39\x49\x97\xc9\x2d\x44\x27\x08\xb5\x54\x0a\x2e\x84\x5a\xa1\x90\x5d\x77\x24\xf9\xa0\x8a\x16\x5a\xe2\xd5\x8d\xa2\xdd\x8d\x6d\xf8\x10\xb1\x07\x3e\xb1\x71\x3b\xe2\x13\x9b\xbd\x13\x36\xc4\xab\xd8\xfa\xa3\x3d\x96\xe2\xe4\xa5\xca\xcf\x93\xf3\xd1\x1b\x4b\x23\xf0\xf5\x1c\x3c\xd3\xef\x47\x7b\x2c\x6d\xe3\xd7\x93\x79\x06\xb8\x07\x7d\x93\x47\xf0\xa9\x7c\xa7\x9d\xc7\xed\x4d\x5f\x1f\xad\xb2\x94\x50\xaf\x27\x16\xcc\xca\x6a\x55\xaa\xbd\x19\xbd\xd9\x75\x0d\xc2\xc5\x03\x28\xe1\xa2\x55\xe3\x32\x90\xbd\x16\x9a\x4b\x62\x45\x0b\xc9\xf5\x7a\xe7\xb8\xdb\x3f\x6a\xa5\x55\xab\xbc\xb1\x7e\xbe\x28\xb9\x70\xeb\x7f\x04\x4a\x33\x20\xf1\x7a\xe5\x55\x3d\x20\xaf\x91\x97\xca\x9f\xce\x74\x8b\xd0\xf6\x8a\x48\xd6\xab\x20\x20\x9a\x30\x3d\x36\x83\x3b\x95\xfe\x70\x5a\xcf\x03\x9b\x88\xe1\x77\x18\x42\x4e\xeb\x49\x44\x59\xad\x87\x4e\x83\xc8\x02\xd8\x79\x60\x09\x00\x5e\x3d\x3f\x72\x23\x57\x86\x78\x1e\xdf\x49\x37\x52\xe7\x69\x8c\x34\x6e\xfb\x93\xc0\xf4\x46\xe1\x3c\xc9\x05\xab\x09\xd9\x99\x0a\xdf\x13\xcf\x44\xa8\x58\x7e\xef\x7c\x07\x1e\x02\x7d\x18\xf3\xf2\x34\x30\xfd\xb2\x1d\x98\x89\x69\xdd\x5b\xdf\x26\x00\x4a\xb2\x65\x76\x2c\x5b\x66\xa3\xa0\x21\x08\xc4\x93\x40\x68\x0b\x6e\xe5\x34\x96\x2c\x47\xe9\xcc\xe8\xfb\x59\x96\xd3\xf8\xb1\x0e\x0c\x42\x64\x28\x84\x3f\x33\xb1\x0a\x38\x3c\x27\xf2\x98\x66\xf4\xc6\xd3\x18\xb1\x4e\x4b\x16\x0a\xa6\xab\x60\x82\xe0\x54\x98\xdd\x15\x16\xf0\x2c\x28\xa7\xb3\xdf\x41\x73\xd0\x9f\x67\x18\xe4\x0b\x76\x91\xc9\xb0\xa1\x93\x42\x80\x54\xd0\x96\x27\x2b\xdf\x3c\x5b\xc6\x9b\xbe\x5b\x08\xed\x71\xb7\x10\xe7\x08\x54\x76\x56\xf8\x1b\xf6\xf2\x59\x61\xb8\x20\x11\xcf\x2a\x14\x96\x01\xc1\xb2\x8d\xce\x1a\x88\x1e\x88\x08\x16\xbb\xb8\x61\xcf\x0a\x67\xd5\xac\xec\xa1\xb5\x0c\x9c\x55\xb1\xf2\x4b\x19\x3a\x23\x8f\x2b\x59\x7b\xe7\x49\x0c\xfb\x05\xef\x7d\x22\x4b\x31\x02\xc2\xd9\x9c\x16\xcb\x37\x46\x46\x3b\x4d\xe0\x2c\xcf\xac\x70\x32\x4f\x6d\x99\x60\xd6\x4e\xec\x97\xc8\x40\x3c\xcf\x4e\x5f\x9c\xc4\x93\x98\xb0\x6a\xce\x4e\x12\xaf\x4a\xc9\x9d\xfa\x69\xba\xc3\x75\xc7\x74\x2c\xa8\xdd\x7a\x1e\xbe\xc0\x45\x39\xa3\xfa\x63\x3a\x18\xfd\x31\x9d\x21\xfd\x31\xc1\xe1\xa7\xfe\x98\x50\x54\x67\x77\x05\x28\x4f\x18\x58\xcf\xf9\x49\x18\x58\x09\xc2\x13\x4f\x4b\x09\xfe\x73\x80\xa5\x1c\x00\x9e\x96\xaa\x0e\x4f\x42\xbf\xaa\xb9\x3c\xc9\xc2\xea\xad\x70\xe2\x5d\xa9\x01\xd9\x39\x80\x87\xab\xe3\x1c\xc0\xd3\x7c\x36\x20\xc3\xb2\x82\xdb\x80\x0a\x93\x59\x71\xe9\x27\x28\xd4\xd9\x22\x0d\xab\x82\xa7\x93\x34\xac\x2a\x59\x4f\x42\xde\x4b\xb8\x9e\x53\xe0\x00\x7a\x62\x5c\x00\x75\x71\xce\xc0\x93\x40\x3a\xd1\xd7\x3b\x2b\xe8\xcb\xb4\xab\x39\xa7\xd7\xaf\x53\x87\x88\xa4\x96\x3f\xb3\x08\xcd\x73\xe1\xb6\x26\x6e\x5a\x6a\xa6\xdd\x32\x0b\xae\xd0\xf3\xbf\x82\xcf\x00\xfa\x05\x67\x03\xa5\x7b\x9a\x99\x55\x61\xcf\x49\x04\x59\x05\x3c\xe7\x0a\x3c\xcf\x64\x11\x41\x56\xe1\xc5\x19\x72\x13\x71\x86\x0e\x98\xce\xfa\xe9\x4a\xd2\xf7\x09\x50\xee\x8e\x53\x38\xa8\x7c\xc2\x9d\x7a\x64\x4e\x14\xd2\xee\x26\x88\x05\x6d\x84\xce\x13\x85\xbe\xb8\xea\x14\x22\xbf\x13\x77\xd1\x48\x00\x27\x74\x83\x81\x62\xce\x33\x66\x57\x28\x4c\x15\xe9\x7c\x9c\x21\x9a\xa4\x3e\x99\x57\x0d\x5d\x74\xe2\x4f\x69\x98\x9e\xd3\x8c\x39\x45\x6c\x7a\xa1\xa6\xf5\x0c\xa1\x25\x3b\x34\xfc\x3b\xc9\x81\xdf\xc5\x0e\xba\x53\xaa\x98\x3a\x75\xa7\xd4\x72\xe4\xc4\x9d\xd2\x18\x4a\xa7\x89\x71\x66\x74\x22\x03\x2a\x2e\xc3\x9d\xd2\x60\x49\xa7\xf9\x56\x35\x66\x39\x6f\xc1\xa2\xa9\x5b\x32\x0b\x82\xef\xc4\x9d\xd2\xc0\x3b\xa7\xd9\x56\x67\xbc\xc8\x99\xba\x2d\x6f\x99\x64\x9b\x42\xc5\xa7\x95\xd2\x89\xff\xa4\x31\x7c\x4e\x7c\x26\x7b\x34\x6b\xd4\x66\xd1\xd6\x8d\x64\x55\xa4\xaa\x97\xa4\x9e\x1f\xe7\x96\x47\xf6\x3c\x91\x78\xd5\xa0\x4f\xe7\x16\x44\x0f\xe9\x66\xe6\xc4\x74\xfa\x42\x6a\x59\x73\x6e\xa7\xd1\xfd\xb6\xe5\xdd\x05\x45\xc5\x97\xd6\x02\xe7\x06\x2e\xef\xe1\x8f\xec\xa9\x81\xf9\x50\x7b\x25\x4d\xa3\x4e\xd5\x5e\xda\x3a\x9d\xa8\xbd\x92\xc6\x51\xe7\x23\x5f\xeb\xee\x40\xef\x95\x14\x2b\x9f\x4f\x70\xdf\xd4\x41\xd5\x95\x14\x56\x9f\x8f\x24\x2a\xe0\x13\x1f\x36\x30\xbb\x89\xf5\x75\x44\x38\xd1\x6d\xb5\x58\xc6\x07\x1e\xdb\x9d\xf6\xa0\xeb\xf6\x80\x9b\xaa\xc7\x53\x64\xaa\x1e\xa5\x75\x27\xa4\x4f\xd2\xd8\xea\x7c\x91\x09\x78\xa4\x22\x5a\xac\x27\x12\x01\x8e\xd6\x68\xe7\x0b\x50\x62\xdf\x17\xa0\x44\x8e\x48\x69\x8c\x12\x76\xe2\x50\xb9\x0c\x13\x76\x12\x45\xd6\x28\x3e\x27\x04\x51\x92\x77\x39\x5f\x66\xd1\x03\xf9\x0a\xa0\xbd\x05\x80\xdf\xb8\xaf\x83\xa4\xa5\x60\xa6\xeb\x80\xbb\x66\xda\xaf\x43\xa6\x7f\x58\x48\x4d\x32\x67\xfe\x3a\xe4\xfa\x21\x08\xae\x43\x4d\x32\x77\xfa\x85\x2d\xb9\xe7\xf0\x32\x9b\xaa\xf1\x62\xae\x43\x9c\xb1\xac\x2f\x69\xcf\x75\x7f\x1d\xf8\x1e\x15\xab\x4b\xd9\x83\x66\xae\x84\xf2\xb8\xfe\x49\xd9\x5d\x49\xc9\x01\x78\xe4\x32\xd5\xaa\x21\x6e\x2e\x53\xad\x6a\xa8\x7e\xa5\x58\x78\x80\x4b\x31\x38\x46\x6a\xaa\x55\x43\x95\x5c\xd8\xa3\x4b\xdd\x5e\xc9\xb1\x81\xad\xae\x44\x6c\x5c\xf6\xca\x65\x0a\x56\xc3\xd9\x5c\x09\x59\x47\xb5\x13\x65\x1d\xd3\x52\xc8\x3a\x9c\xd9\x14\x1c\x0c\x73\x96\x54\xde\xc1\x6c\x5e\xd9\x71\x32\xe6\x1c\xd0\xd3\x6e\x56\xec\xc0\x81\xba\xc2\x18\x9d\x9d\x70\x65\x35\xb4\xec\xd5\x2b\x2b\x05\x61\x65\xaf\xac\x86\xb6\xf8\x67\x42\x5b\x5b\x5f\x05\x2d\x28\xe7\x22\x39\xab\xb4\xc4\x95\xd1\xcf\x82\xe2\x2e\xe3\xd7\x2a\x42\xbf\xb2\x9e\x34\xcd\x17\x85\x23\xae\x2c\x12\xa4\x1c\x73\x54\x54\x91\xba\x67\x4a\x80\x0c\x2c\x25\xa0\xa4\x81\x22\x94\xcd\x3a\x42\xc9\x69\xb9\x8a\x3e\x3f\x56\x11\x4a\xf6\xfe\x55\x94\xdb\x34\xfb\x54\x6e\xe3\x34\x15\xf5\xc8\xcd\x17\xe1\x74\x9a\x4b\xcc\x2c\x7f\xaa\xaa\x5c\x87\x43\x2e\x56\x25\x2d\x57\x55\x70\x02\xb9\x7d\x55\x53\x4a\xb8\x7d\xaa\x66\xfe\x6e\x9f\xaa\x74\x07\xc8\x6a\x80\x6c\xfd\x60\xf7\xfd\x83\xee\x39\x6a\xa8\xc8\xf5\x98\x44\x16\xc5\xe9\x9f\x5b\x39\x80\xf5\xb7\x50\x32\x67\xe6\x69\xd5\x10\xf2\x32\x4f\xab\x16\x8c\x57\x0b\x30\xe9\x46\x21\x94\x76\x94\x57\x33\x2c\x2d\x52\x8c\xcb\x7c\x89\x5a\x2b\x5e\xa6\x70\xd5\xd0\xec\x0a\x91\x94\xa7\xae\x11\x94\xdb\xb3\x45\x06\xd7\x00\x93\x0c\xae\x32\xcd\x57\xbb\x79\xb6\xb2\x4e\x2a\xae\x05\x8a\xb6\xa6\x5c\xf6\x42\x38\x65\x6c\xce\xcb\x1c\xad\x52\x39\x97\x71\x74\xbd\xca\xae\x90\x39\x41\xcc\x5d\x5d\xb7\x94\xe6\x9f\x4e\x7d\x46\xd2\x83\xcd\x63\x8c\xe6\x68\x95\x82\xb8\x10\x40\x35\x8d\x5f\xae\x6e\xea\x1e\x57\x9c\xec\xad\x06\x43\xbd\x14\x40\x1d\x16\x12\x62\x68\xd8\xab\x0b\x24\x70\x91\x34\xc9\xac\x37\xd7\x47\x56\x36\x2d\xd7\x2e\x62\xe7\x6a\x36\x77\x0d\x7d\x4f\x9c\x9f\xa1\xf0\xcb\x89\x18\x8a\x05\x18\xc7\x08\xb1\x00\xe3\x18\x8a\x05\x3c\x14\xf3\x80\xbf\xe4\x07\x16\x59\x4d\xaf\xfa\x6b\xea\xab\xe1\x69\xc1\x6d\x32\x94\x2b\x17\x4a\xb7\x12\xa7\x65\xaa\x11\x77\x83\x99\x7b\x35\x8e\x0e\xc2\xa5\x88\xce\x74\xe1\x1e\x39\xd7\x9f\xea\xdd\xcb\x24\xad\x4a\x36\xae\xa9\xe3\x86\xe3\x99\xc1\xfd\x32\x52\x68\xce\x65\x24\xec\x2b\x68\x4e\xae\xa4\x6b\xa9\x35\x05\x1e\x12\xb3\x2a\x7a\xba\xc8\xbf\xaa\xb8\xe9\xfa\xc8\xc2\xa6\xac\xea\xc2\x0a\xab\xea\x3d\x71\x45\x5e\x55\x66\x03\x11\x53\x51\x56\x71\x2d\x95\xd8\x36\x75\x46\x46\x29\xfa\xbb\x8c\x5b\x2d\x86\xe4\xca\x1e\x5a\x0e\xdc\xa2\x0b\xb0\xe5\x5d\x94\x8d\x2c\x9e\xaf\xff\xfd\x5f\x90\x6d\x77\x41\x4e\xc2\xbc\xde\x45\x01\x57\xb5\x90\x74\x17\x03\xbc\x71\x53\x89\x1f\x20\x04\x71\xd0\x2d\x42\x50\x03\x72\x57\x4f\x9a\xfd\x89\x10\x94\x83\xdc\x0a\x9c\x39\xc3\xb7\xa1\x17\xa7\x4d\x4d\xb8\x71\xba\x20\xba\xe2\xe2\xfc\xdd\x55\x36\xc4\xef\x48\xe3\x60\x22\x6f\x0d\x43\xab\x65\x82\x48\xb4\xeb\x87\x1f\x16\xf2\x32\xe4\x8c\xdf\x64\x54\x95\x9b\xbb\xc1\x11\x93\xdc\xdc\xf3\xfe\x30\x41\x5b\xe0\x8b\x5b\x44\x00\x43\x73\x37\x03\xf7\x32\xba\x06\xa8\x60\x81\xbb\xc1\xa6\x47\xa3\xb2\xa0\x34\xda\xe5\x77\x19\x4e\xb0\x82\xb4\xd9\xe5\xc2\x7c\x86\x0b\x83\xa6\xbb\x3b\x8c\x8e\xed\x77\x99\x03\xbf\x43\x1f\x35\xcb\x3b\x4c\x86\xaf\xf7\x73\xb3\x7c\x8c\x8c\x97\xa1\xc1\x1b\x58\xf2\xd6\x15\xda\x28\x69\xf7\xf0\x32\x04\xaf\xdd\xe4\x3a\xf3\xfa\xb8\xcd\x75\xa6\xc2\xe9\x8e\x5c\xca\x8e\x3a\x72\x29\xbb\x42\x44\xc3\xf6\x00\xdc\xe8\xcc\x0d\xe7\x73\xe3\xc7\x42\xf2\xe5\x79\x0f\x5c\x4e\x5c\x6a\xc2\x3c\x16\x30\xc6\x3d\x11\x05\x80\x6e\x6e\x42\x3b\x4a\xe6\xdd\x04\xde\x31\x43\xe1\x2d\xaf\xe7\x94\x4d\x99\x4f\x9f\x51\x7a\xba\x75\x65\xf5\x86\xcf\xb0\x7a\xee\x24\x59\x3d\xf5\x8e\xb7\x5e\xca\xf2\xe4\xf7\x92\x12\xa4\x25\x2d\x23\x8d\xfb\x77\xeb\x99\x6c\x30\xc5\x7b\x79\x1d\x75\xff\x68\x89\x15\x75\x54\x7d\x38\xd3\x66\x3c\x33\xbe\xc3\xfd\xef\x80\x32\x21\x4b\x1f\x2b\x47\x6b\xd2\xb3\x28\x45\xf8\xe1\xa8\xae\xf6\x57\x90\x09\xc7\xa8\x03\xdc\x7d\x62\x3a\xe0\x9c\x9f\x98\x29\x38\xe5\x84\x60\x34\x84\xd2\x6d\xd8\x45\x61\x3f\x31\x22\x70\xc1\x4f\x0f\x08\x50\x9c\xee\x46\xdb\x54\x74\x65\x5f\xe4\x51\x74\xe5\xf5\x61\x29\xfd\x4f\x33\xe8\xfb\xc4\xf5\x01\xd4\x72\x5f\x2e\x20\xad\x5d\xec\x67\xf0\xdd\x7d\x21\xda\x07\x7b\xdd\x17\x22\x15\x70\xf9\x7d\x21\x5c\x77\x74\x17\x22\x15\x10\xf6\x7d\x61\x9e\x52\xfc\x3e\xf9\xce\x48\x55\xaa\x3b\x4d\x2a\xd5\xb9\x28\xef\x0b\xb1\x8b\xa7\xf9\x42\x00\x55\x2c\x8f\x7b\x44\x11\x06\xc4\x40\x22\x9b\x0b\x98\x41\xf4\xf7\x8d\x68\xc6\x3d\x41\x24\x48\x33\x4f\xde\xb7\xf0\x53\xfe\x46\x34\xe3\xa6\xbe\x51\x8a\x83\xd4\x6f\x22\x41\x4a\x92\xdf\x6a\xdd\x21\x68\x6e\x34\xed\x32\x0d\xb7\xd1\x1c\x8d\xf6\x7c\xdf\x91\xd9\x8f\xda\x06\xb8\x81\x9e\xb9\x77\x70\xc3\x54\xd9\x1a\xda\x8b\x23\x30\x6d\xac\xb2\x0d\xb7\x1c\x9e\x34\xd8\x1d\x4c\x9d\x53\xb6\x65\x8e\x9d\xa7\xed\xa6\x43\x52\x72\xc3\xd5\xf5\xa8\x22\xde\x13\x09\x6e\xf1\x9e\x85\xe2\x68\x00\xcc\x03\xcb\x0e\x71\x79\x3f\x84\x17\x71\xda\x1e\xd8\x61\x11\xb9\x99\x59\xd5\xcf\xdf\x8f\xec\xbb\xcf\x32\xa1\xa2\x53\x65\xd8\x6a\xe5\xef\xc7\x44\x60\x9e\xcb\x07\x05\xb2\xcb\x87\x3c\xbb\x6b\x20\x72\x3f\xf2\x9a\x10\xd0\x77\xf0\x71\x10\xca\xb7\x22\x6c\x89\xd6\x1b\x46\xee\x1f\xe2\xc0\x60\x31\x49\x5b\xdf\xa8\xe2\x55\x15\xdc\xa8\xe2\x53\x4c\x04\xc2\xed\x5e\x3c\x8a\x08\xb7\x63\x22\x5f\xed\x55\x45\x48\xf8\x12\x4b\x80\xdf\x18\x32\x4a\x18\xdf\x88\xb2\x63\xe5\x5e\x78\x0c\xd7\x47\x4f\x62\x85\x28\x5b\x49\xb6\x52\x97\xad\xe9\xa2\x62\x9a\x6d\x60\x1c\x85\xa4\x5b\xe7\x61\x85\x51\x1b\xd3\x45\xe5\x90\xfb\x80\x5c\x9c\xb6\xa5\x02\x13\xd6\x7a\xc3\xe3\x49\x87\x6e\x78\xbc\x41\xba\xd9\xb9\xe1\xf1\xba\x93\xba\xb1\x55\x34\x14\xff\x3e\x24\xc5\xbe\x85\xdb\x49\xb3\x41\x0b\xc1\xb9\x55\xa7\x71\xc3\xb9\x55\x75\x5a\x3b\x61\x38\x18\xa5\x34\x1c\xb4\x93\x14\x64\x92\xa5\x8c\xb7\xc8\x65\xbb\xf5\x17\x2e\x51\x07\xf3\x3a\x8e\xcf\x86\x27\x0b\xac\xb4\xb1\x67\x0c\x07\xc2\x6d\x76\x07\x44\xd0\xbb\x63\x55\x04\x1a\xdb\x5d\xd4\xc5\xd8\xb9\xd0\x34\xe1\xd9\xc6\xf3\xf0\x1a\xde\xdc\x68\x3a\xf8\x6d\xe3\x79\xc4\xcc\xc5\xf5\x66\x53\x43\x85\x02\x63\xc7\xb8\xcb\xf8\x54\x7b\x10\x2e\xdc\xa5\x1a\xe8\x84\xd8\x26\x7b\xe0\x8a\xb8\x2c\x83\x90\x3f\xfd\x19\xf4\x60\x0f\x5c\x01\x1d\xc7\x77\xd3\xcd\xe2\xc4\xe3\x40\x50\x55\xc8\xec\x21\xb5\x24\x24\x5e\x75\x54\xf0\xaa\x13\x92\x09\xd6\xa9\x7e\xd7\x92\x10\x54\xb9\x3f\x52\x75\xba\x93\x37\xf2\x4e\x53\xed\x6d\x2c\xc2\xf4\x29\xdc\xdc\x7b\x26\x0e\xdc\x53\xb4\x43\x67\x84\x9e\x53\xac\xb4\x17\xaa\x2a\x50\xc3\x5e\xc8\x59\x5d\xa3\x85\x9c\xd5\xba\x48\x27\x3d\x82\x3b\xa4\x93\xcd\x42\x98\xa6\xb8\xda\x86\x87\x93\xde\xde\x4b\xc5\x13\x68\x62\x63\xda\xaf\x77\xe9\x36\x0a\x9c\x7a\xcf\xad\x42\x53\xc9\xf4\x46\x26\xa9\x9b\xe7\x3e\x3d\x9a\xd0\x66\xfb\x34\x27\xeb\xb0\xca\xf0\x8f\x2f\x9e\x53\x3a\x51\x14\x19\x3b\xe1\x8c\x5b\xd6\xc6\xe0\xfa\x54\xbb\xee\x53\x65\xff\x12\x98\xed\x1f\x26\xf1\xd4\xeb\xdf\x69\x3f\x75\x55\x87\x1f\xdb\xd8\xf9\x17\xb5\x60\xdb\xf0\x1a\x1e\xbc\xcb\x6d\x42\x97\x17\x4e\xa1\x6e\xab\xcb\x2d\x43\x1f\x97\xa4\x9e\xe5\xd9\x09\xc9\x46\xb9\x68\xdd\x56\xd8\x7d\x19\xc7\x72\x5f\x58\xba\x71\x91\x6f\xdc\x31\x4d\xac\xb5\x11\x4a\x0e\xa9\x88\x8d\x3f\xa6\xc1\xc7\x36\xfe\x98\x26\x19\xde\x08\x28\xff\x6d\x29\xfc\x2c\xd5\xff\xec\x9b\x0b\x14\x04\xb5\x09\x45\xac\xfd\xe0\xc6\xcf\x52\x76\x61\xdf\x5c\x94\xae\x1f\x21\x87\x4d\x57\xb9\xc9\xe4\xad\xed\xdd\xbe\xd1\x5b\xb8\xac\x44\x1c\xd6\xea\x6f\x6f\x77\x91\xcf\x6c\x59\x08\xc3\xad\xff\xa5\x28\x8f\x6b\xac\xc7\x08\xb6\xc0\x59\x08\x93\x39\xa8\xdb\xad\x55\x18\x37\xe8\xd6\x19\x53\x14\x89\x06\x56\xe3\xc6\xbd\xdd\xd6\x76\x06\xd0\x60\xdb\xad\x33\x66\xb7\x7d\x6e\x77\x77\x96\x96\x60\x62\x2b\x35\xb3\x6e\x3f\xad\xc2\x44\x4f\x6a\x66\x6d\xe7\x41\xad\xe0\xe0\x71\xcc\x94\x16\xde\x0f\x8a\x17\x68\xa0\xfd\xa0\xe7\x70\x42\x1f\xf4\x2e\xee\x95\xef\x1e\x5b\x3a\xbb\xef\x87\x5b\xdf\x63\xf3\xc0\x6c\x78\x6a\x1e\x8e\xa2\x93\xf8\xdd\x68\xcb\xdb\x71\x13\x53\x58\x49\xd5\x7e\x85\x93\xba\x44\x81\xf3\x2e\xde\xaf\x70\xfa\x1d\xca\x43\x44\xf8\xc2\x15\x78\x14\x5e\xfb\x05\x36\x04\x8e\x9a\x63\x6e\xe3\xb7\x49\xa2\xee\x30\x0b\x73\x1b\xbc\x41\x7a\x7c\x60\x3c\x06\x70\xcb\xfd\x4f\x39\xdf\x83\x31\x7e\xf7\x7a\x7b\x0c\xf5\x26\x0f\xf0\x44\xe2\x71\x8e\xc6\x73\xe8\xc1\xd8\x6d\x5d\xfa\x85\xed\xf4\x68\x4f\xe6\x95\xf8\x1c\xd2\x2f\xac\xf7\xa3\x41\x99\x67\xfb\x31\xbe\xdb\xbf\x7e\x1c\x05\x88\xe2\xc1\x88\xac\xb9\x99\x9f\x03\x3c\x63\x63\x1a\x94\x59\x23\x0c\xca\x84\x4c\x9f\x4f\x35\x60\x4f\x52\x5a\x1e\x55\xb4\x9b\x88\x3a\x92\x30\xcd\x3f\x4a\xf4\x05\x26\x49\xc3\xd8\xa5\x71\xdc\xd4\x71\x3d\x3a\x87\x2a\x52\x79\x74\x0e\x95\x67\x7b\x74\x0e\x55\x72\xf3\x18\xd5\x4d\x6d\xe7\x93\xb8\xb3\x02\x1a\x68\x2e\xa7\x29\x39\x16\x3a\xc9\x81\x33\x19\xb1\x21\xdd\x6c\x16\x9f\x51\xdd\xf9\x1f\x7d\x46\x55\x0b\x3e\xfa\x8c\xaa\xc2\x7b\x72\x0c\x85\x71\x65\x3d\x0e\x1c\x31\x4e\xa3\x7a\xd0\x3f\x88\x23\x9b\x48\xfe\xc1\x6e\xcd\xd8\x00\x4f\xa4\xd0\xaa\xf6\x22\xef\xce\xbe\x7f\xb4\x5b\x93\x24\x7e\x0a\x82\x74\x07\x52\x82\xe4\x02\xfa\x22\xc9\x65\x0d\xcc\xe9\x1c\x15\xf2\xc7\x24\x73\xf0\x14\xc5\xfb\x70\xaf\x4f\x21\xe2\x98\x60\x21\x7f\x0c\xdc\xf8\x94\xb8\xd4\x19\x7c\x51\x64\xce\x8d\xf6\xd4\xa0\x05\x99\x22\x0d\xd7\x24\xed\x9f\x8a\x09\x9d\xe3\xad\x82\x42\x8f\x86\x76\x93\x71\x7c\x10\x23\x84\x19\xf9\x63\xf4\x36\x03\x98\x3f\xd5\x2b\xc6\x76\x91\x37\xbb\x8d\x2a\x94\xa0\x33\x54\xa5\x04\x2d\xaf\xb8\x79\x59\x48\xb1\xfa\xb2\x73\xe5\xcd\x60\xf6\xa7\x1a\x48\xc4\x76\x9b\x0c\x37\x77\xc7\x63\xf0\x36\xa3\x80\x3c\x4a\x15\x25\xe0\x9e\x26\x2d\x68\x15\x85\xb7\xdd\x97\x60\x3d\x2d\x85\xf0\x96\x9b\xf3\x69\x0a\x6f\x87\x2f\x0a\x6f\x41\xad\x8f\x36\x6f\x71\x0a\x95\x2b\x2a\x2e\x78\x4c\xd0\xa5\x0e\xf0\x41\xae\x18\xab\xd2\x83\x7c\x65\x64\x5a\xbd\xa9\x11\x7c\x7a\xd0\xb2\xd4\xef\x85\x2a\xfe\xc0\x94\xc4\xe5\x52\xde\xa8\xde\xf0\x41\xde\x18\xfb\x43\x79\xa3\x2a\xce\x07\x79\xe3\xd0\x32\xf0\x89\x90\x1b\xc3\xfa\xa7\x77\xb5\x0d\x23\x15\x9d\xfe\x88\x4b\xdc\xfa\xaf\x2f\xb4\x8c\xec\x62\x68\x09\xfa\x60\xd8\xa6\x7c\xf6\xc1\xb0\x2d\x6b\x6f\xf3\x20\x7e\x54\xa4\xfb\x20\xc7\xe8\x31\x2d\xe4\x6c\x57\x88\xfb\x0c\xf5\xec\xed\x4f\xc3\xbe\xc7\x8c\xee\xb2\xf1\xcf\x90\x32\x67\xfe\x46\x90\x21\x00\x3d\x1c\x80\x85\x10\xb3\x19\xb0\xeb\xd1\x1a\x4e\x95\xe8\x33\x71\xe2\xe1\x6a\x7f\x26\x4e\x3c\xd0\x02\xcf\x34\xbe\x90\x9b\xfa\x23\xfe\x9a\x99\xab\x9e\xa9\xbd\xa0\xa7\x90\xe8\x6e\x0a\xbb\x1f\xcd\xe1\x02\x4f\x7d\x24\x62\x33\xe1\xd6\x33\xb5\x23\xb4\x0b\xa4\xb8\xd3\x2e\x74\x39\x9a\xb6\x04\xeb\x30\xed\x42\x33\x42\x4b\x21\x27\x29\x8a\xef\x1e\xa2\xb9\x05\x9a\x59\x21\x62\xa5\x0f\x64\x95\x81\x8c\x96\x12\x56\x2e\xbf\x67\x05\xeb\x00\x88\x2b\x84\xaa\xb6\xa5\x33\x11\x77\xde\xb3\x4c\xd9\xe6\xce\xfd\x68\xc6\x16\x67\x18\xb3\xb7\x62\xcc\xaa\x07\xb3\xb7\x62\x34\xa9\x07\x02\xb2\x18\x9b\xeb\x81\x80\x2c\xca\xf3\x9f\x53\x57\x0a\xa7\x85\x28\xc2\x45\x21\xe5\x03\x05\x59\x62\x57\x9c\xca\x51\x01\x46\x02\x52\x7c\x80\x1c\xc4\x94\xc5\x0f\xe4\x63\x0d\x14\x82\x9b\xe8\xd0\x88\xf7\x51\xbe\xe1\xfe\xbc\xe4\xd1\xc5\x73\x98\xbd\x4d\xd9\xa0\xe7\x82\xcd\xf5\x0c\x6b\xf6\xa6\x7d\xd2\xa3\x33\xa7\x72\x87\x07\xeb\xb6\xe8\xc4\xb8\x68\x1a\x9f\x3d\xb7\x5c\x23\x92\x84\xe7\x0e\xe0\x69\x18\xb7\x4a\x45\xb2\x0f\x31\xce\xba\x67\xc8\xf4\xed\x6e\x9b\x1b\xd7\x21\x37\x04\x0e\x96\x41\x4f\x3e\x37\xc6\x51\x30\x7d\x0f\x39\xdb\xb5\xf2\x7a\x48\xbf\x65\xba\xe2\x07\xfb\x39\xc5\xf7\x0f\xf6\x73\x26\x7a\x7c\xa0\xde\x4c\x0b\xfb\x40\xbd\x95\xf8\xae\xc2\xd6\x63\x49\x9a\x2d\xb3\xd4\x3f\x90\x6c\xa6\x3e\x79\x30\xa6\x33\x27\xec\x43\x7e\x88\x12\x40\x60\x10\xe5\xcc\x3c\x72\xf6\xb6\x6a\x92\xd1\x28\x45\xf6\x07\xed\xac\x1e\x23\x68\xb8\x78\x46\xcd\x40\xe8\xf5\x18\x29\xc3\x13\x6d\xa4\x0c\x0f\x1d\x96\x71\xff\xba\x26\xcb\x83\xf6\x57\xcf\x03\x89\x2b\x96\x7b\x11\x3a\xba\xa6\x21\x60\x10\xee\x17\x4e\x4c\x04\xf2\x0a\x05\x93\x44\x3a\x07\xc5\x6a\xcf\x2b\x59\x6b\x79\x84\x56\xd2\x02\xaf\x64\x2d\x50\x90\xda\x41\xa3\xae\xe7\x95\xac\x65\x64\xaf\xb4\xb8\x75\x31\xd3\x71\x34\x2f\x16\x32\x5c\x3b\xef\x01\xb9\xc8\x75\xf4\x12\x72\x43\x46\xea\x3d\x20\x17\x59\xf1\xf7\x90\x5c\xb4\x3c\x82\x63\x4e\xd1\x7b\x20\x35\xe5\x5a\x7b\x0f\xa4\xa6\xd3\xba\x90\x91\xeb\x4f\x97\xde\x97\x18\x1c\x92\x11\x6f\x50\x67\x60\xf3\x57\x13\x7f\x71\xfe\x9b\x70\x2a\x60\xfe\x5e\x82\xe7\x6a\x8b\xf9\x9a\x80\x94\x45\x79\x93\x8c\x26\x20\x06\x69\xc5\x45\xf4\x26\xb9\x3b\xae\xf4\x37\x48\xab\x68\x16\x52\x25\x9e\x91\x66\x0d\x9b\x82\xb0\x8a\xda\x10\x56\xc3\xae\x21\xac\x84\x2f\x08\xab\x78\x91\x80\x02\xcb\xbc\x41\x40\x71\x36\x5f\x03\xe4\xb2\x48\x6f\x46\x9a\xc5\x8d\xfa\x4a\x3e\x45\x05\xce\x32\x3b\xe5\xcd\x41\xe0\x59\x21\x90\x84\x7f\x24\x60\x8a\xcd\xe2\xf1\x6e\xa9\x62\x3c\x22\x67\x07\x17\xc7\xa4\x08\xf2\x2d\x48\x9f\x1d\x47\x51\x61\x0e\x57\xf0\xea\x02\xa0\x50\xf4\xfd\x47\x4c\xd9\x98\x3c\x32\x14\xdb\x5b\x08\x3f\xeb\x40\x08\x2a\x96\x94\x97\xbe\x84\xdf\x90\xeb\x7a\x4b\x58\xe8\xd8\x30\xfa\xff\x6e\x21\xd4\x33\x2e\xad\x34\x96\xc1\x71\x5e\x68\xac\x26\xe6\x7c\x2b\x7e\xd8\xdd\xe7\xa0\x5f\xe8\x50\xdf\x00\xb7\xd9\x47\x70\x35\x09\xcf\x17\x4a\x4a\x94\xf8\xd6\x20\x3c\x01\x3d\x3c\x03\x38\x40\x6f\x25\x22\x63\xf1\x19\x53\x7c\x04\x40\xaf\x2a\x59\x0d\xce\xde\x16\x28\x91\xfe\x54\xc9\x6a\x3f\xf7\xa2\x88\x51\xd5\xfa\xaa\x88\x89\x25\x69\x71\x19\x5a\x45\x43\x64\x87\x28\xc1\x14\x7b\xae\x69\x56\x0f\xc9\xf0\x9a\x7e\xc1\xa0\xf0\x6f\xd3\xae\x7e\x5a\x27\x2e\x44\xfb\x44\xb0\x26\xf8\xdd\xcb\xb1\xf9\xe2\xe5\x48\xa1\xee\xe5\x18\x2f\x1a\xd9\x83\xb8\xde\xae\x91\x3d\xc8\xe7\xed\xaa\xdf\xdc\xda\xc4\x67\x88\xec\x51\xef\x12\x32\x4a\x2d\xb1\x03\x70\x2d\x18\x48\xc4\x5c\xaf\x11\xae\x0c\x2a\xfd\x6a\xef\xe5\x54\x70\x35\xd6\xd8\x2a\x5a\x84\x7b\x00\xb8\x19\x23\x07\xd2\x6b\xb6\x70\xfb\x3e\xf1\x72\x8e\x66\xbf\x75\xd0\x1d\xf2\x3d\x1d\x2c\xc3\xb8\x94\x22\x52\x9e\xf0\x55\x66\xa8\x7d\xbd\x09\x97\x65\xbc\xb0\xdc\x7e\x46\x26\xd5\xce\xf3\xbd\xbe\xbd\x21\xf6\xe2\xba\x9c\x66\xd3\x79\x31\x19\x1f\x2a\x48\x5e\x6c\xbf\x22\xe9\xdf\xeb\x45\xaa\xb9\xd8\x8b\xf1\xd7\x54\x85\xf9\x1a\x25\x5f\x5b\xba\xf7\x22\x8f\xa9\xab\x66\x36\x6f\x6f\xa7\x97\x9b\x54\x91\xfa\x7b\x2b\xce\xa4\x93\x5b\x73\x03\xa0\xba\x0d\x2a\xf8\xa7\xbd\xdf\xfb\x5d\xbe\x5d\x75\xf0\x6b\xd6\x4b\x93\x31\xbc\x37\x49\x42\x05\xe5\x56\xe8\x89\x68\xf5\xbd\x49\x17\xe8\xd6\x36\xbc\x81\xe8\xe5\x8e\x68\xc9\xc0\xb8\xa5\x05\xb9\x35\x5f\x2c\xbe\xf4\x13\x7d\xb7\x99\x4e\x69\x69\x93\x7e\xd3\xa1\x2b\x61\x71\x71\x36\x39\x43\x45\x98\x1b\xd5\xa3\x73\xb5\x49\x74\x2a\x3a\x8a\x90\xf8\x56\x36\x9b\xa5\x60\x98\xcd\xd2\x01\x3d\xa4\x54\x14\x4f\x3c\xda\xcd\x53\xf9\x41\xf8\xe5\xd6\x31\x99\xa5\x07\xca\x64\x96\xdd\xba\x18\x66\x8b\x21\x1f\x82\xd5\x79\x02\x1f\xbc\x73\xdd\x5d\x24\xf2\xd6\x2d\xe5\x7d\xf0\x61\x76\xb9\x5e\xb4\x5b\x9e\x4b\xd2\x75\x9b\x45\xe5\x25\x07\xa5\xb6\x0a\x2f\x39\x28\xa5\x64\xdf\x57\xd9\xac\xcf\xa8\x7f\xb3\x75\xbd\x3a\xa0\x51\xdf\x17\x4d\x23\x2a\x83\x97\x14\x94\x1a\x2d\xbc\xdf\x1d\x3b\x14\x8e\xbf\xef\xa6\x0c\x40\x93\x80\x52\x63\x86\x97\x54\xdf\x18\x59\xac\x83\x54\xdf\x04\xe6\x5f\xc7\xe1\x76\xef\x3c\x67\xca\x14\x9e\xb1\x1a\xcf\x99\xe7\xca\x77\xcb\x34\xbe\xdb\x0e\x16\xe4\xdf\x96\x5c\x07\x76\x5b\xfd\x58\x16\x42\x36\xfc\x8d\x78\x1d\x07\x44\x52\x54\xc0\x5e\xfb\xa3\x45\xd7\x71\x7c\xc7\xfd\x38\x78\x4e\x07\xcf\x94\x21\x65\x52\xb1\x63\xc4\x1d\x0d\xcb\xe7\x75\x7c\x57\x6d\x39\x92\x3f\x1a\x15\x1a\xcf\x9d\xef\x96\x19\x7c\xf7\x19\xc5\xe0\x02\xba\xa4\xbc\x92\x11\x7f\x77\x6e\x39\x12\xc0\x25\x81\x63\xc4\xdf\x9d\x5b\x0e\x47\xff\xdd\xb9\xe5\x70\xc4\x49\x40\xe9\x37\x0b\x28\x6d\x66\x01\x05\x86\x9c\xf9\x4e\xfb\xdf\x55\x5c\x8e\x83\xf6\xbf\x9b\x78\x96\x0c\x3c\x19\x49\xe4\xf2\x3b\x92\xc8\xc6\xe0\x33\x64\xda\xa2\x5f\xd2\x26\x91\xe3\x76\x1d\x05\xdd\x70\xa7\xdf\xa2\x68\xd4\x86\xc8\xf2\x8d\x6a\x61\x1d\xe4\x4d\x22\x5d\xf8\x3a\xb4\x6e\xef\x36\x84\xbf\x05\x34\xd8\x3a\x48\x9c\x44\xde\xcb\x75\x98\x14\xc9\x99\x28\x48\xd2\x87\x8d\x7e\x10\x2d\x47\xa6\x11\x7b\xe7\x19\xc3\xf5\xe5\x32\x55\xd1\xa1\xdf\x11\xd9\x75\xbf\x77\x2e\x60\xd7\x9b\x4c\xde\xcb\xe9\x22\x93\x37\x3c\xc2\x3a\xaa\x04\x19\xd3\x55\xb1\xa1\x5e\x00\x57\xbd\x9b\xaa\x2f\x9b\xca\x16\x12\x22\xbf\xbf\x3c\x33\x34\xac\xdb\xd7\xf1\x17\x65\xb7\x8e\x26\xe8\x2c\x62\x93\x94\xf4\x19\x52\xd2\x9d\x8a\x19\xfc\x74\x47\x62\x06\xbf\xdc\x3c\x88\x28\x1a\x06\xa7\xeb\x68\x18\x0d\x3b\xe1\xc4\xb0\xca\x0e\x83\x30\x02\xd9\xb9\x6c\x88\x2a\x5d\x45\x42\x0a\xe4\x68\x14\x83\x66\x3b\x23\x4a\x55\x76\x07\x74\x75\x55\x8d\xc9\xec\x50\x97\x4e\x6c\xf7\xb6\x63\xd8\xdc\xa8\x8d\x70\x0f\xeb\x30\x48\x15\x92\xe0\x75\x18\xa4\x6a\xda\x94\x94\x9c\xdf\x95\xd5\x4d\x06\x81\x7e\xa9\x0d\x8f\x8c\xfa\xa5\xe9\x33\x24\x65\x14\x52\x3f\x3a\x80\x76\x04\x4d\x09\x24\x03\xe1\xd3\x00\xf4\x11\xf4\xa5\x2f\x48\xa2\x06\x50\x0d\x84\x62\x83\x71\x1b\x52\x1e\x7d\xcf\x3a\x06\xb6\xc3\xd3\x1f\xde\xc7\x7e\x0f\x32\xce\x96\x30\x35\x8d\xbe\x35\x35\xad\xf6\x8d\xa9\x69\xc0\x81\x4e\xd2\xed\x88\xb8\x21\xc5\xf6\x1a\xd2\x77\xb4\x84\xbd\x14\xc4\xfa\x3a\x26\x52\x9c\x02\x7c\xc6\x92\x77\x9f\x1a\xa7\x6a\x79\x34\x67\x00\xeb\x9f\x41\x0d\x80\x9d\x98\x39\x16\x80\xfd\x97\x61\xdc\x1a\x5f\x77\xb1\x3f\x16\xe6\x59\x2e\xfd\x32\xfe\x2f\xf0\xad\xfa\xbf\xff\xeb\xc9\xa9\x59\xa2\x4a\xc0\x5b\x8b\xef\xd6\xbd\x78\xa6\x33\xd2\x84\x17\xd7\x71\x79\xdd\x03\x10\x69\xc2\x8b\xb3\x77\x9a\xb6\x9c\xbe\x4e\x6f\x7e\xcb\x40\x7c\x89\xc8\x4e\x72\xa7\xbb\xa2\x4a\x0c\x44\x88\x64\x06\x2f\xae\x3a\xf2\x82\x1a\xd8\xe5\xd4\xed\xc9\x46\x1f\x7f\x00\xf5\x49\xdc\xd7\x42\x0f\x17\x71\x5f\x2b\x15\x4c\xf5\x2d\x44\x17\x57\x78\x61\x64\x97\x57\x38\x0d\x99\xf6\xbb\x30\x13\x44\x8e\x8a\x1d\x0a\x59\x44\x68\x88\x75\x98\xea\x5b\x88\x2e\x1d\x7b\x9c\xd2\x8b\xfc\xcf\x0e\xe1\xe2\x2a\x8d\x0a\x2f\xcf\x34\x74\xe3\x61\xe9\x2e\xbc\x51\x79\xba\x45\x20\x82\x6a\x20\xcb\x9b\x3c\xcf\x42\x7a\xe3\x68\x35\x59\xcc\x9b\x84\xd4\xd3\x0a\xdc\xe7\xae\xd3\x4d\x36\xe7\x69\xa3\x98\xab\xb8\x53\x37\xc8\xbb\xd0\xa6\xa9\xb9\x85\x7a\x7b\x6f\x33\xe2\x8f\x20\x19\xa4\x5e\x59\xc7\x9e\x3c\xd3\xce\xe6\x7a\xf6\x6a\xdc\x5c\xcf\x5e\xb7\xdb\xeb\xd9\xf2\x5c\xc9\x09\x18\xa0\x5f\x86\x6b\xf6\x70\x25\xff\x99\xd0\x6d\x1d\x10\x37\xc4\x42\x5e\x07\xc4\x0d\xf9\xe6\xd7\x41\xa6\xee\xe1\x65\xf1\x40\x70\x24\x06\x84\xaa\xe7\x88\x32\x68\xf3\xdc\xe5\xc4\xe3\x24\x95\xc6\x3a\x88\xbb\x79\x04\x50\x68\xf0\xdc\xc0\x1f\x41\x33\x8b\x80\xbf\x12\x58\xf4\xfb\x7a\xc3\xf9\xcc\x65\xd4\x69\xf3\x23\x5c\x56\xdc\xc4\xb8\xd8\x25\x88\x98\x75\x7c\x84\xcb\x8a\xeb\x91\xbc\x8f\x41\x0f\xbc\x76\x6c\x65\xae\x47\x4f\xfc\xeb\xf5\xf8\x3d\x27\x04\x05\x5e\xd1\x09\x41\x81\xd7\x72\x3a\xbc\x2a\x2b\xcf\x85\xef\x9d\x67\x6f\x4a\x9f\x1b\xdf\x1b\xcf\x08\x37\x96\xe5\x07\xdf\x7d\x46\x67\xc7\xa9\x4e\x08\x13\x88\xc7\xb3\x92\x32\x82\x21\x0c\x5e\x9a\xf6\x8b\xfe\x8b\x13\x9b\x0e\x2e\x4d\x4e\x75\x4a\x08\x34\xc0\x1a\x29\x21\xd0\x60\xa7\xa5\x8f\x9e\x29\x04\x5c\x5d\x29\x71\x81\xb2\x95\x53\x42\x88\xc1\xae\x4b\x90\x30\x04\x41\x5d\x89\xe0\x9d\xf0\x25\x2b\x7d\xe4\x4c\xf5\xa8\xa4\x88\xdd\x39\x6c\x48\x6f\x15\xf6\x66\x52\x3d\x93\xa3\xbb\x10\x67\x00\x1f\x62\x84\xe2\x7c\x99\x73\x27\x3b\xa0\x88\xea\x69\xef\x46\xf5\xc4\x64\x7b\xa5\xac\x52\x4c\x18\x95\x30\x64\x07\x18\x61\x3d\x39\xac\xc9\xb4\x3b\xa8\x16\x57\xca\xa2\x7d\x9f\x35\x24\x9b\x56\x89\x9b\x09\x00\xb2\x0b\x6f\x97\x5e\x4c\x3e\xab\xa1\x99\x02\xe6\xcd\x24\x2c\x05\x95\x18\x18\x21\xa1\xad\xe9\x16\x32\xc0\xe7\xb4\x7a\xa8\x6e\xa0\x17\x93\xaa\x1b\xe7\x48\x0d\x8d\x04\x44\xc2\x42\x3c\xbb\x82\x61\xed\x2d\xbc\x45\xf9\x3b\x27\x38\x69\xed\x8d\x33\xd8\x4a\xd5\x68\xf9\x0e\x5e\x83\xce\x69\x03\x55\x36\xcb\x06\x50\xbe\x14\x6c\x6f\x56\x42\xf9\x32\xe3\x19\x01\x67\xb2\x86\xa8\x07\xb8\xaa\xac\x04\x0b\x54\x11\xce\x16\xcb\x80\x26\x0a\x23\x6f\xa0\x86\xec\xb3\x3a\x4b\x77\x04\xc9\xb0\xc9\x60\xb0\xd2\x47\xd3\x4c\xf2\xfe\xac\x44\x68\x24\x52\xeb\xac\x44\x68\x24\x02\xfb\xaf\x44\x68\xa4\xc3\xd1\x35\xe4\x9b\x60\xea\x84\x10\xa1\x27\x8f\x58\x03\x17\x80\xfe\x53\x88\x0d\x3c\x0f\x48\x0a\x46\x71\xd6\x49\xd5\x28\xbd\x9b\x48\xd5\x28\x3d\x9d\xba\x87\x92\x32\x1f\x51\xb3\xa4\xcb\x13\x1e\x80\x64\x46\x5f\x09\x13\x50\x09\xff\xd4\xc5\x18\x7f\xd9\xe2\xad\xd4\xa5\x67\x3d\x8e\xa4\x6e\x14\x61\x27\x5c\x05\x89\x31\xbc\x52\x3f\x79\x66\x06\x71\x15\x5c\x42\x05\x55\xd3\x89\xd6\xbf\xd2\x70\x53\xbb\x93\x24\x6b\x62\xf9\x21\x6b\x8a\x98\x03\xb2\xa6\xb8\x5f\x20\x6b\x3a\x39\xf7\x57\x82\xac\x29\xa2\x91\xe1\xf1\xb4\x25\x55\xbe\xee\x43\x23\x6d\xc6\xc6\x1f\xda\x31\xb9\x36\x53\x02\x4b\xd4\x43\x40\x4d\xac\x45\x57\x9a\xca\xec\x20\x20\xd3\xf4\x10\x31\x45\x13\xea\x6e\x5a\x5b\xd9\xe1\x62\x4e\x27\xb2\xc3\x78\xbe\x5d\x1c\x6b\x28\x80\x77\xb8\x53\xb7\x44\x47\x65\x04\x4d\x89\xce\xb4\x20\xef\x3c\xc2\x2b\x0e\x0e\xbd\x2f\xc9\x79\x11\x82\xc9\x68\x64\x0c\x92\x61\x32\xa5\xc9\x93\x61\x32\xa5\xaf\x93\xd9\x68\xa2\x0a\xfd\x07\x0a\x5b\xc8\xe3\xc4\x47\x26\xa3\x91\x99\x48\x26\xa3\x89\x15\x32\x19\x4d\x60\x46\x93\xd1\xc8\x05\xa4\x13\x43\x5d\x0f\xde\xa9\x16\xce\x51\x9e\x6a\xde\x9c\x98\x33\x30\x0d\x50\x86\x31\x4d\xf7\x45\x2d\xa2\x93\x1c\x26\x33\xc9\x06\x14\xca\x01\xfe\xa9\x3f\x8a\x93\x79\xc5\xc9\xa7\xfe\x85\x9f\x87\x98\xea\xc2\xd6\xdf\xfd\x65\x3a\x9a\xe9\x88\xa1\x6f\x46\xa0\x17\x23\x05\x4c\x87\x7c\x69\xf9\x2f\x94\x44\x0a\x18\xee\xbc\x7f\xa4\x8f\x2f\xda\xd3\x8b\x1b\xaf\x50\x18\xd9\xf2\xe3\x0b\xc5\x0c\x15\xe0\x61\xbe\xd5\x24\x51\x43\x71\x50\x15\x4f\xdf\xaa\x95\xc4\x2f\xff\xe8\x22\x06\xfc\xd1\x45\x2d\x16\x5c\xe9\x90\xc7\xc6\x70\x4b\xee\xdc\xdb\xe3\x64\x77\x68\xd4\xa2\x0c\x10\xc6\x77\x64\x1e\xd1\x0e\x8c\xb2\x53\x75\x63\x7b\x0a\x8d\x9b\x4c\x35\x23\x1a\x09\xe1\x0f\xd0\x19\xbb\xc0\xe9\xd8\x38\xc4\xbb\x9a\xd0\x57\x64\x18\x58\xc9\x90\x97\x48\x7f\x56\xda\x08\x46\xa0\x53\xd2\x46\x30\x02\x95\x9e\x36\x16\xd8\x22\xb0\x7d\x52\xd9\x0e\xc4\xa2\x3e\x8b\x45\x6d\xc7\xac\xfe\xc8\x15\xd2\x83\xa0\x03\xd6\x3d\x11\xc9\xe0\x80\x58\x4a\x24\xe4\x26\xdb\xc0\x4a\x91\x23\x51\x8c\xf3\x28\x63\x00\xec\x07\x34\x2a\x3e\x26\xc2\x39\x3e\x25\x2b\x91\x9d\xfb\x40\x96\x90\xd0\xcf\x90\xb6\x63\x25\x29\xaa\xe8\x18\xcd\x50\xe3\x19\x95\x4c\xf9\x33\xee\xd4\x4a\x64\xdf\x26\x53\xd9\x4a\x92\x5b\xd5\x06\x10\x82\xb8\x99\x89\x75\x60\x4a\xec\x95\xd0\xd7\x14\x6f\xc1\x17\x08\xab\xdf\xa1\xf9\x60\xb0\x12\x34\x59\x53\x5e\x93\x3e\xda\x6b\x05\xe8\xaf\x31\xf0\xdc\x8b\x68\x69\x84\x3d\x4b\x7c\x31\x51\x59\xe2\x2b\xf9\x1d\x3c\x0f\x76\xcc\x12\x5f\xdc\x99\x99\x80\xe9\x58\x07\xaf\x2c\xf1\x55\x2c\xdf\xf9\x5e\x79\xc6\x1c\x9a\xfb\x2f\x87\x04\xa9\xd9\x10\xd4\xd7\xb0\xd0\x49\xa3\x85\xe7\x9b\xe7\xc5\x33\x56\x52\xec\xfa\x7c\xc8\xc2\x0c\x7b\x00\x6a\x26\x26\x23\x5a\xaa\x50\x3a\x39\x21\x5d\xe1\x64\xe4\x24\xd4\x89\xe7\x90\xae\xd0\x03\xb4\xd8\x51\x7c\x86\x36\x2c\x16\x9a\x46\x74\x63\xfc\x09\xea\xb6\xf8\x2c\x78\x80\x91\x00\x2f\xdb\x33\x44\x2c\xc7\x38\x43\x56\xe9\x4a\xbf\x32\x02\x22\x14\xc2\x2b\x67\x27\x09\x90\x32\x93\xc4\x19\xcb\x19\x28\x38\x57\x39\x03\x05\xdb\x3b\x43\x52\x85\xd4\x29\x6b\xf5\x52\x9c\x25\x83\x24\x60\xfa\xb0\xb2\xa1\xd2\x95\xc0\xe5\x0c\x95\x0a\x6e\xcb\xe4\xe8\x96\x8b\xcb\x1f\x19\xb5\x90\x45\xae\x4c\x8e\x6e\x14\xf4\x2b\x93\xa3\xdb\xf3\x9a\x89\x9e\xb0\xec\x0e\x9d\x4d\x43\x84\xbd\x32\x49\xba\x51\xae\xae\x5c\x24\x59\x2d\x34\x79\x06\xf0\x02\x32\x71\x70\x24\xe9\x96\x7e\xcb\x28\x6c\x3a\xd6\x3e\x2b\x93\x99\x7b\xb9\x58\x0a\xa1\xdc\x62\x05\x91\x8f\x53\x5c\x11\xf9\xb8\xea\x55\xc1\x89\x83\xae\xe2\x37\xc7\x56\x91\xdf\x38\xf9\x55\xf0\x00\xf5\x23\xc4\x96\x9c\x68\xae\x82\xc4\xd8\x74\xa7\x59\x7e\xbf\xf8\x6e\xf9\x9b\x79\xb1\x37\xa0\x73\x73\x93\x80\x1b\x31\xeb\xca\x15\x6a\x9f\x6b\x21\x93\x8c\x1b\x51\xec\xca\xca\x9c\xdc\xdc\xca\x9c\x38\x48\xf9\xa3\xcf\x16\xb2\xde\x95\x49\xb7\xad\x98\x35\xa3\xda\x69\x38\x00\xaf\x4c\xba\x6d\x99\xc0\xdc\x9c\x53\x00\x6d\xb1\xe8\xbe\x40\xe4\xb8\x27\x9b\x50\xfb\x8c\xaa\x0e\x0b\x86\x95\x49\xab\x2d\x01\x91\x09\x94\xae\xf1\xc8\xca\x10\x6b\x18\x7a\xae\xdc\x5d\x7f\xba\xeb\x5a\x4b\xbb\x5b\xbb\xc0\x5a\xc1\x0d\x00\x7c\x3a\xec\x70\xc9\x66\x1d\x76\xa6\xe5\x31\x27\x5c\x7e\xbf\x84\xd5\x17\x6c\x05\x57\xfd\x0b\xc5\xe5\x0e\x53\xb5\xec\xc5\xf4\xec\x8e\xaa\x3b\xcf\x0c\x64\x38\xcf\x7c\x1f\xec\x57\x68\x8f\x3c\xb4\xc3\xe3\x52\xc9\xc6\x73\x52\xc8\x91\x83\x40\x03\x96\x20\xd0\xdc\xb1\x41\xa0\xb9\xf6\xe3\x23\xa4\xbc\x0b\x33\x72\xa7\xe2\xf6\x1d\x1e\x22\x17\x0d\xc1\xd3\x51\x5c\x10\x23\x40\xc9\x98\xe5\x8f\xa4\xab\x4a\x52\xb2\x9e\x7a\xf2\x09\x19\x8b\xe7\x43\x5a\x31\x1b\xed\x41\x18\xa1\xf5\x1a\xf6\x1d\x2b\x4f\x28\x4d\x17\x1d\x99\xd4\x21\x9f\x90\x89\x08\x75\x04\x2c\x98\xc0\x1c\xff\x7a\xc1\xdd\x20\xb0\x86\x34\xa1\x62\xa0\x6c\x5c\x08\xe5\xc4\x19\xa2\xf0\x88\x81\x4d\x79\x41\x77\xec\x74\x30\xae\xb0\x91\x34\x93\x4d\x13\xfc\xa1\x78\x1a\x71\x1d\xf2\xce\xcf\x26\xe6\x56\xbe\x99\xb1\x7c\x39\xa4\x94\xf3\x47\x2d\xd6\x00\xd9\xbc\xdc\x32\xa9\x99\xe0\x0f\x01\x97\xc1\x1f\xfe\xb5\x15\x93\xcf\xc0\x34\xbc\x96\xf2\xca\xcb\xd9\x07\x46\xc3\x4a\x15\x0f\xbd\x86\xd7\x8a\x60\xb3\x86\xd7\x31\x65\x67\x4c\x32\x8d\x19\x49\x4a\x26\x37\x9f\xc1\xa3\x32\x96\x53\xc3\x4d\xf7\xee\xe9\x86\xf1\x14\x9c\x31\xcd\x74\x7a\x0a\xb3\x3f\x02\x66\xeb\x07\xcc\x0c\x20\xe2\x43\xb8\x2b\x4f\x60\x76\x93\x18\x63\x53\x69\x48\xbe\xd4\xd8\x89\x8f\x88\x0f\x11\x67\xfe\x92\xec\xf7\x3b\x40\x06\xd2\x82\xa6\x3c\x02\x7b\x98\x88\x5b\x71\x63\xbe\x60\x08\xec\x1d\x92\xb2\xc6\x3d\x79\x79\x05\x54\x7b\x94\x23\xb0\x13\xac\x09\xdc\xed\x97\x49\xec\x60\x08\x32\xc1\xa7\x66\x11\xb1\x46\xb0\x08\x61\xb9\x61\xab\x5d\x16\x73\x6f\x4b\xc3\xe7\x1b\x13\x02\x27\xdf\xf8\x10\x81\x11\x89\x0f\x11\x27\x92\xf8\x10\x87\x9c\x58\xc6\xa0\xe7\x08\xac\x8e\x52\xf1\x90\x2f\xcb\xb7\x52\x5e\x11\x8d\x29\xb6\x65\x08\xb2\x29\xb6\x03\xe5\x99\x62\x5b\x42\x34\xeb\x5b\xa4\xdc\x36\xef\x00\x99\x06\x8c\x24\x11\x78\x7b\x3b\xc7\x80\x6c\x24\x89\xc0\x5b\xdb\x5b\xc2\x3b\x5d\x17\xa4\xb8\xa1\xf4\x3a\x92\x87\xc9\xc6\x95\x90\xbb\xc9\xe1\x82\xe4\x04\xe2\x75\xd4\x8b\x1b\x46\x4f\x23\x39\xa2\xbc\x85\xd3\x03\xb7\x03\x4e\xfa\x21\x7e\xc4\x11\x97\xd6\x13\x70\x02\xf4\x23\xb9\xf1\x67\xb8\xf9\x95\x75\x4b\xb2\x5b\xe9\x51\x35\x72\xf9\x71\x15\xdc\xb4\xfa\x25\xc5\x35\xf0\xc4\x32\xf8\xe2\x32\x88\x81\xf4\x4b\x72\xde\x1e\xb1\xb4\x04\x19\x71\xb6\xfe\xad\xef\x63\xe0\x5a\xa9\xaa\x27\xf0\x84\x03\x8a\xd1\x31\xa0\xf7\x60\xae\xa9\xf2\x3a\xb8\x78\xc9\xe2\x26\xea\x43\x95\x36\x42\xe2\xae\xfc\x6a\xd8\x01\xdf\x90\x09\x3e\xb1\xa4\x43\x74\x52\x0a\xba\x2c\x64\x85\x12\x6c\x11\x7d\x42\x98\x8d\x3e\xe1\x09\x7e\xb5\x79\x2a\xfe\xd0\x2e\x45\xf8\x23\x16\x05\xb7\x5d\x39\x34\xac\x5d\xbe\x68\x58\x0b\x81\x54\x0e\xad\x54\xb8\x9c\x4b\x78\x30\xc1\xa1\x97\x03\xb1\xd1\xf4\x59\x1d\x41\xb7\x14\x37\x8b\x5a\xae\x62\x98\x0a\xaf\x99\x72\x38\x00\x0e\x5e\x39\x02\x66\x8b\xe9\xe1\xb3\x2c\x26\x5f\x3e\x84\x46\xa0\x87\x75\x04\x1a\xd5\x5d\xc1\xf8\x5b\x3d\x61\x31\xfc\x44\x45\x83\x56\x0c\x3f\x21\xb5\x5c\x22\xfc\x84\x70\x62\x79\xa4\x3c\xb3\x18\x7d\x02\x5b\xbc\x55\x12\x06\xc0\xd3\x76\x31\x4c\x8e\xef\xe8\x5d\x04\x2b\x09\x30\xec\x72\x49\x01\xa3\xa5\x84\xb1\xd9\x47\xc0\x08\x5c\x19\x18\xa7\xcf\xd8\x4e\x3b\xf8\xac\x4c\x81\xda\xc6\x25\x95\xf7\x2c\x39\xc0\xb5\x54\xe0\x39\x8b\x61\xc4\xc1\xe2\x15\xe3\x92\xaa\x17\x2d\x84\x9b\x50\x78\x59\x8c\x51\x4a\xfe\xb6\x55\xb2\x5b\x64\xfa\x07\x43\xa0\x78\xd6\x0c\xd1\x45\xcd\x31\x12\x5f\x88\x56\xb2\xac\x8e\xe5\x92\x4d\x69\xb9\x24\x17\x5f\x08\x3d\xd1\x48\x49\xba\x8a\x96\x4b\x6e\xa3\xb0\x5c\x72\xb8\x61\xb9\xc4\x3e\x2c\x05\xe0\xed\x30\xac\xc0\xbb\x6d\x05\xc0\x0c\xd1\x88\xa5\x0a\xaf\x0a\x72\x45\x13\xeb\xad\x02\x31\x3b\x64\x98\x4a\xf5\xe8\x80\x8c\x4b\x0d\x24\x61\x1d\x4c\x23\x08\xfa\xb2\x8a\x89\x0e\x63\xc8\x66\xee\xae\x88\x9a\x8b\xb6\xdf\xa2\xb6\x42\x50\x89\xa6\xac\xa7\x54\xa5\x38\x20\x8f\xa2\xf5\x37\xe7\xb0\x68\xfd\xed\x00\xb4\xfe\xf6\x2e\x2a\x98\x2f\x29\xfa\x2d\x1a\x7f\x13\x11\x66\x15\xfd\xc8\x09\x1b\xb8\x8a\x71\x4d\xf1\xde\x5f\x05\x93\x25\xc9\xb0\x62\xae\x6e\xdc\xfd\x57\x31\x57\xb7\x98\xbd\x98\xab\x5b\x02\xb6\x98\xab\x5b\x24\x59\x9a\x40\xfe\xcd\x11\x97\xe6\x08\x00\xb4\x39\x02\xdb\x8e\x11\x30\xb4\x26\xd4\x9e\xea\x20\x82\xe1\x7d\x8b\x89\xbc\xc5\xc6\xc5\x44\xde\x44\x54\x5b\x05\x32\x78\xa8\xb6\x28\x26\x5d\x94\x69\x2b\x26\x5d\x14\xe3\x96\x8e\x35\x98\xfb\x81\x28\xa7\x33\x1d\xd6\x77\x70\xd5\x3f\xd3\xbb\x99\x99\xc2\x1c\x3c\xe4\x78\xa5\x2b\x47\xcb\xbe\xe8\xd2\xea\xd1\xc0\x36\x5c\x29\x62\xe9\xca\xd1\x3c\x26\xdd\x34\x22\x42\x46\x00\x0a\x89\x99\x32\x02\x7e\xaa\x98\xee\x3b\x10\xde\x90\xcc\x74\x9a\x06\x20\x83\x63\x8b\x7a\x5a\x2f\x8c\x32\x62\x3d\xe8\x05\xfb\xef\xda\xec\x5f\x4d\xad\x2c\x58\x31\xf5\xb7\x3a\x96\xa2\xaa\x16\x43\x9f\x55\x4c\xfd\xed\x5d\x5f\xa0\x99\x1b\x51\x93\x56\x31\x0f\xb8\x67\x08\xc1\x67\x96\x4e\x2a\x90\xc9\x41\xa9\x14\x6c\xc3\xd5\x45\x14\xd3\x80\x4b\x44\x94\xa9\x85\xac\xbd\xa0\xbb\x1d\x87\x90\x41\x27\x37\x72\x72\xac\x62\x78\xf9\xc3\x83\xae\xa9\xb8\x34\x77\x99\x9a\xe0\x7b\xa0\xb0\x15\xaf\x2e\xe6\xd4\x81\x20\xfa\xdf\x56\x61\x6a\xa0\x8c\x73\x4c\xb3\xe2\x52\x69\x9d\x82\xb5\x78\x53\x61\x53\x50\xf9\x66\x89\xdb\xb2\xf4\x20\x70\xd2\x49\xfe\x1d\x57\x09\x74\x72\x96\xcc\x2e\xc4\xb9\xa8\xee\x8c\x85\xba\x59\x44\xb3\x50\x37\xbb\x31\x75\xb6\x97\xb0\x2e\x4b\x80\x01\x7e\x69\x59\x28\xf2\x36\x60\xda\x70\x29\xf4\xb5\x97\x98\x2e\x2b\xa0\x67\x2a\x90\xb6\x66\x29\xe3\xa2\x41\x9d\xd2\x98\x12\xd2\x56\x08\xb2\x72\x12\xf1\xd4\xb3\x0d\xfd\x9c\xa5\x7f\x0b\xf4\x73\x96\x7d\x28\x8a\x5e\xbb\xd3\x07\xfd\x9c\x25\x0b\x4a\xc8\x61\x21\x94\x8a\x72\x58\xe9\xfc\x02\x01\x9d\xbb\xbb\x5c\x39\xac\x2c\x53\x21\x30\xab\x76\x02\xe5\x8c\xab\x9c\x71\x22\x93\xad\x9e\x18\xe3\xb2\x4a\x02\x16\x13\x86\x23\x99\x2b\x57\x4c\x3e\xb0\xe0\xde\x98\xe5\x3f\x0a\x69\x8c\x30\x1d\x5d\xe5\x0a\xf0\xe9\x44\x69\xad\xfc\x43\xb9\x02\x62\xff\x70\x48\x9b\x6b\x04\x35\x3d\x8a\x63\x51\x42\xdb\x1c\xe5\x25\x77\xed\x91\x33\x8a\x7d\xe0\x59\xf3\x80\x77\xe1\x0f\x13\x77\xf1\xec\x5d\xb0\x0b\x04\x4c\x33\x7f\x77\x4f\xd9\x1d\x28\xc3\x97\x61\x15\x8b\x11\x98\xd4\x49\xd2\x0e\xbe\x8b\x28\x21\x9b\xeb\xff\x0f\x56\xba\x40\x53\xe7\xee\xa6\x25\x2d\x78\x8f\x8e\x1e\xdb\xf3\x87\xaa\x2e\x51\xc0\x76\x08\xf0\x1d\x65\x2b\xf0\x66\x38\x46\x9d\xed\xee\x66\x48\xea\xde\x3d\x27\x3b\xc6\xc3\x40\xb7\x9b\x43\x14\xb4\x49\x12\xed\x7c\x6e\x92\x44\x47\x0d\x87\x46\xef\x3b\x76\x86\x9d\x38\x4e\x48\xf5\x02\xa5\xdd\xb0\x2f\x5f\xc5\x1c\xe1\xdd\xdb\x61\x13\xc2\xda\xa5\x81\xb6\xae\x5a\xb9\x94\x47\x80\x69\xf8\xc9\x74\x42\x6d\x33\x12\x75\x2f\xaa\x87\x20\xd5\x62\x1f\x73\x10\x75\xf1\x9a\x39\x88\xba\xe7\xf2\x01\x46\x37\xd6\x13\xf3\xc8\xdc\x3d\x31\x77\xc0\x88\xeb\x7e\x5f\x92\x45\xaf\x37\xb8\x77\x3b\xde\xfa\xa1\x93\x29\xa4\x17\x9a\x33\x5e\x54\x17\xc4\x8b\x71\x5f\x04\x33\x02\xd3\xba\x35\xcd\x03\x2e\xd7\x51\xde\x98\x25\x8b\x69\xdc\xeb\x30\xdf\x08\xfc\x6c\x6b\xb7\xad\x09\x1b\xce\x2e\x1e\xe0\xc8\x04\x2e\xfe\x35\x29\x91\x44\x7a\x8d\x4c\xe0\xd0\x98\xf5\x90\xec\x19\xfe\xc1\x51\x9e\x43\x53\xf1\x7c\x6c\xe2\xd2\x7a\x04\xcc\x83\x97\x80\xb9\xf0\x32\x5d\x0c\x8b\x69\x90\xcc\xf6\xa9\xe6\x21\x92\x6f\xab\xe6\x21\xd2\xce\xa8\x1e\x01\x73\xe5\x45\x23\x1b\xae\xc6\x7a\x08\xf4\xf2\x8f\xe9\xcb\x21\x4f\x6a\x12\x68\x6e\xfa\x8a\x57\x64\x96\x71\xab\x29\x82\x23\xfb\x12\xda\x59\x5a\x4b\xfa\x1a\x71\xb7\xd6\xe4\x1a\x08\x68\xa4\x35\x5a\xbe\x60\x3c\xac\xbc\xbe\x42\x33\x6b\x96\x51\x23\xab\x11\x57\x68\x4d\x3a\xa3\x24\xa1\x11\x6d\x81\x37\x6b\x0e\xd0\xa8\x0f\xa9\xab\x2f\xf8\xaa\x90\xba\x95\xfc\xf7\xab\x66\x9d\x69\x96\x7f\x86\xb3\xeb\x8b\xeb\x0e\x7a\xa9\x91\x98\xc8\xd9\x8d\x3c\xdf\xcb\x3f\x68\x64\x5c\x36\xf3\x12\x1d\xd1\x58\x40\x63\x95\x07\x35\x13\x23\xcb\xc6\x63\x72\x0d\x4d\x4b\x74\x38\x66\x13\x80\x27\x17\xa7\xe0\x9f\xc5\xee\xac\x85\x2d\xe0\x34\x17\xdc\xb3\x04\xcb\x6c\xdf\x84\x1c\x5b\xd5\xac\x44\xd2\xaa\x95\x48\xfd\xc3\xf5\x2b\x01\xbc\xd5\x55\x78\x59\x48\xb3\x6f\x81\x2f\xb1\xfe\x76\xa8\x41\xba\x4b\x5e\x14\xa1\x38\x61\xa6\x28\x3a\x84\xcb\x3c\xe0\xc9\x3a\x55\x42\x2d\xf9\x52\x7c\xf9\x93\x70\xac\x98\xf4\xe3\xc9\xba\xaa\xa1\x98\xb0\xef\x5f\x55\x35\x3e\x06\xfe\xab\x86\x1a\xbf\xdb\xb8\xf9\x9f\xa2\xce\x56\xba\x68\x1d\xe3\x75\xb9\xd0\x2d\xec\xe5\x19\x77\x93\x72\xa9\xbe\x18\xf2\x89\x63\x58\xa1\x7e\x4b\x71\x76\x9b\x24\x3a\x58\xa9\x36\xc9\x40\x17\x47\x1b\xfd\xe2\x1a\x6a\xa3\xaf\xe6\xbd\x12\xbd\x3f\x8e\xb1\xa6\xf8\x5a\x89\x55\x5c\x17\xe3\xac\xe1\xba\x28\x46\xa8\x91\x88\x88\xfb\xa9\x76\x69\xa5\x62\x75\xbc\xc4\x8a\xcd\x9a\xa4\x69\xf8\x02\x81\xa1\xce\xb8\x1a\x86\x5f\xae\xa8\x1a\x86\xbf\x55\x1b\x33\xd2\x35\x62\xfc\x3a\x0c\x63\xce\x20\x8d\xc9\x4f\xce\xb3\x55\x71\x5d\xc4\x83\x76\x55\x63\xf2\x4b\xb7\x55\x63\xf2\x13\x35\x6e\xd5\xa1\xcb\x9b\x43\x31\x40\x7f\xf3\xd8\x13\x54\x4d\x03\xc3\x6a\x50\xb5\xe6\x39\x83\x3c\x0d\x75\x56\x1d\x9e\x4d\x67\x0f\xff\xc4\x15\x6d\x61\xb4\xe7\x16\x34\x74\x9a\xf7\x5c\x85\xd4\x2c\xde\x60\x55\xea\x52\x8b\x9d\x0a\xe1\x34\x49\x8c\xb6\x2a\xf2\x45\x43\x3a\xad\xaa\x11\x7e\x75\x92\x23\x5c\x81\x07\x70\x6b\x1f\x6f\xb1\x37\xbc\x00\xbe\xf9\x6b\xff\x8e\xe6\x07\x41\x63\x67\x4d\xef\xba\xa6\x5b\x26\xcb\xda\x18\x99\xc9\xc7\x57\x1b\xd8\x60\x34\x0b\x61\x2e\xc5\x25\xd6\x86\xe2\x32\x08\xaa\x36\xd4\x65\x57\x6b\xbc\x56\xa7\x0a\xa4\xb6\xc2\xff\x36\xb1\x7f\x67\xc2\xda\xc4\xa4\xbb\xf8\x5d\x3f\x0a\xd0\x4a\x9b\x18\x89\x60\xa9\xd2\xa6\x1a\xcd\xc6\xb3\x1a\x4d\xbf\xe3\xd3\xc5\x92\x34\xa2\x71\x1c\xd0\x32\x8d\x68\x1c\x47\xb1\x3c\x1a\x2f\x87\x3d\x51\x06\xdb\x31\x51\x3a\x0e\x36\x5a\x5b\xe8\xe0\x58\x9b\xb6\x30\xdb\x62\x93\xb7\x85\x52\x8c\x43\xd2\x16\x81\x94\xd8\x18\x6d\x29\x42\x4a\x56\x16\x67\x72\xbd\xb5\x85\xa6\x89\xf5\x6b\xcb\xe0\x7e\xc9\xea\x17\x6a\x14\x9b\x45\x97\x93\xec\x0e\xfd\x4d\x94\x79\x79\xa6\x32\xb4\x71\x25\xfa\xf9\x6a\xa7\x02\x70\xa6\xf8\xd4\x51\xae\xfa\x82\x34\x3c\x5b\x03\x4b\x11\x27\x86\xa8\xc3\xea\x0e\xdb\x19\x08\x9e\x29\x3e\x03\x58\xe0\x38\xa5\x2c\xd9\x39\x4d\xf9\xb1\x2c\x70\x3b\x5d\xd4\x62\xef\x1b\xb1\x9a\x0d\x2b\x5a\x74\x80\x97\xd2\x44\x08\x90\xf6\x11\xc0\x55\x85\x53\x83\xfe\x5d\x78\x1d\xac\x66\xb6\xce\x8f\x98\xfd\x03\x11\x36\x53\x79\x12\xfd\x7d\xb5\x2b\xb8\x56\xc6\x89\x10\x59\x7b\xbb\x76\x85\xf8\xca\x97\x6d\x15\xbb\x0d\x99\x9b\x55\x5e\xff\x00\xdc\x2d\x73\x0d\x71\xdf\xee\x60\xa1\x69\xc0\xf4\x9b\xcb\x93\x60\xfa\x4d\x70\x7e\xbb\xa3\x7f\x5f\x10\xfb\x2c\xdb\x0a\x89\x00\xeb\x7d\x2b\xd0\x71\x72\xb5\x2f\x00\x91\xb4\x1d\xfc\x00\xb0\x6c\xf8\x2f\x70\x52\xdb\xf8\x9c\x7b\x8e\x20\x4b\x89\x09\xb2\xda\x77\x58\x1b\x51\xb5\x57\x93\xc6\x54\x04\xdd\xcc\x7b\xa9\xd4\xbb\x3d\x11\xbb\x9f\x66\x21\x32\xb5\xe7\x6c\x8f\x97\x25\x7d\x3f\xda\xe0\xba\x62\xb8\x74\x96\xe4\x3c\x20\xaf\x2d\xc9\x19\x7e\xe2\x78\x53\x4c\xc2\x50\xab\x81\x9e\xd4\x85\x2e\x9e\x0d\x26\x14\x2f\xcf\xff\xfe\xaf\xe3\x71\xb2\xfa\x47\x5f\xe8\xbe\xb5\xba\x16\x7a\xcc\x55\xcf\x99\xef\x8d\xe7\xc2\xb3\xe5\xb5\x42\xee\x3c\x13\xb6\x6e\x5a\x06\x62\x22\x59\x46\x8b\x0e\xfa\xfa\x70\x54\xf7\x82\xe9\x66\x35\x4c\xd6\xc5\x22\x99\x03\xdd\x8b\x16\xc9\xf4\x1b\xb4\x03\xe5\x4d\x69\xc8\x2e\xef\xe1\xa6\xc0\xb2\x74\xe4\x61\x5d\xf6\xbd\x7f\x64\x41\x1f\x10\x58\xfd\xa3\x0a\xfa\x70\x04\x50\x05\x8a\x9e\xfb\x47\x14\xf4\x01\x0d\xd3\x0b\x2e\x46\xd5\xef\x84\x1b\x00\xb5\x76\xa5\x67\x10\x04\x1d\xe1\x59\xd7\x98\xa4\x9b\xa8\x90\xfd\xd4\x2b\x26\xc9\xec\xc0\xae\xe8\x8c\xed\xd4\xb9\xf1\x4d\x20\xb7\x7a\x25\xdf\x5e\x54\xc0\xdc\x78\x59\x01\x73\x63\x7b\x6b\x78\xf1\x80\xf4\x7a\xc3\xe8\x55\x48\x1b\x56\x2c\x36\xda\xb0\x62\xb1\xcd\xf0\x1a\x60\xbb\xf7\x86\xb5\x8a\x50\x7c\x97\x7b\x6e\x0e\xa7\x61\x0e\x9c\x2d\x83\x85\x8a\x43\xfe\xae\xf9\x8c\x07\xf8\xea\x0d\xd3\x60\xf8\xa3\xde\x31\x07\x76\xea\x3a\xae\x44\x4e\x1d\x12\xa5\xa9\xc2\xbf\x63\xfa\x26\x7b\xdf\x3b\xde\x37\xcd\xca\xf7\xf7\x1d\xb4\xd1\x3b\x2e\xca\x08\x04\x7b\xc7\xb4\x17\x0a\xa7\x13\x31\x5f\x6d\x62\x1f\x18\xa5\x34\x9f\x41\xcf\xce\xd0\xd0\x4a\x86\xba\x03\x47\x9c\x62\x5d\x6c\x50\x60\x92\xfa\xc0\xbc\x58\xa0\xb9\x8f\x6b\x3b\x7c\xc1\x1a\xa6\x59\x08\xa3\x0d\xa7\x6b\x3c\xdc\x0b\x74\x36\xb9\x23\x9c\x89\xe9\xc2\x72\xd2\x3b\x8a\xd3\xc3\xa9\x9b\x5c\x0c\xae\xd3\xd4\x36\xe3\xaf\xc8\xa5\xab\x1b\x47\xca\xcd\x1d\xb7\x98\x3d\x0a\x89\x3d\x7a\x73\xd9\x21\xdc\xbd\xda\xf6\x4e\x50\x29\xed\xbb\x3b\x57\x51\x6d\x20\x84\xfe\x5d\x45\x4b\xa3\xee\x1e\x37\x11\x2d\x11\x54\x4a\xfb\x8c\xbe\x50\x2c\x3b\x69\xaa\x36\xa3\x51\xd5\x2a\xdc\x25\x3d\xb4\x99\x5c\x20\x5d\x6d\xa6\xc2\xbc\x8e\x34\xa6\xe2\xae\xbf\xba\xda\x4c\xc5\xae\x1d\x69\xcc\x48\x51\x6c\x89\x7d\x69\x1a\xcf\x7f\xe5\x97\xdd\x7c\xd1\xcb\xd3\x68\xca\x1b\x5d\xa9\xba\x59\xa1\x97\x18\x08\x0b\x37\xa5\x21\xdd\xf8\x50\xea\x8f\x3b\xe6\x6e\x24\x31\x58\xfd\x82\xab\xb7\xbc\x08\x9a\xee\xd0\x45\xf6\xa8\xeb\x1e\x67\xb4\x97\x7b\x9c\xd9\x51\x74\xa2\x9b\x58\x37\x28\x94\x0d\x11\x9f\x50\xd2\xa6\x1b\x9f\xd0\x46\x6f\x4c\x73\xdc\xe4\xb7\xab\xef\x77\x57\x9f\xb5\x20\x3e\xa1\x17\x53\xff\x6e\x8c\x75\x78\xd0\x08\x03\x25\x4d\xdb\x6f\xa7\xdc\xf2\xd8\x71\x14\xdb\x81\x0e\x70\x8c\xe8\x0c\x55\xd8\xf6\xd0\x19\x5a\x08\x01\x47\x22\xc4\xe7\xea\x5c\x24\xda\xac\xf7\xed\xc5\xe5\xf7\xe1\x74\xf9\x43\xd9\x97\x4b\xbf\xf1\x11\x76\xcb\x2b\xe0\x88\xe5\xde\xc4\xca\xf6\x10\x72\x0f\x29\xeb\xe8\x26\x63\x8e\x0d\xb2\x11\x83\x79\x82\xbd\x93\x24\x36\xfa\xa3\xf3\xb0\x63\xe5\x1e\xd2\xc5\xab\x3f\xc8\x9a\xa0\x73\xba\x37\x8f\xf4\x53\xe7\xe6\x51\x85\xd8\xb5\x50\x73\x7c\x84\x77\x92\x6e\xeb\x84\x6e\x6a\x0e\xef\xf5\x1c\xd2\x35\xa1\x9b\x0e\x57\xf4\xcd\x94\x61\x0c\x5c\x60\x75\xba\xb1\xde\xc6\x6c\x02\xc5\x47\xf8\x16\x8d\x59\xfa\x8b\x01\x0b\x02\xc3\xfe\x4e\xca\xf8\x1d\x0b\x1c\xcf\xf3\x7b\xf2\xdd\x8e\x59\x39\xd1\x1c\xf6\x68\xda\xea\x75\xa3\x3b\x39\xfe\x41\x70\x79\x75\xd7\xe3\x88\xb3\xb2\x78\x29\x7a\x91\x25\x5e\x2a\xf4\x51\xe7\x59\x5d\x13\x3b\x62\x1c\x2a\x47\x21\x81\xc7\xb1\x28\x65\xf5\xcb\xd5\xf6\xc7\x66\xb5\x1b\xcf\x0f\xcf\x99\xe7\x97\x67\x5a\x42\x18\x91\x1a\x94\xc2\x48\x89\x1f\x85\xe7\x6c\x4b\x34\x4b\xd8\x41\x7d\x11\x46\xea\x3c\x33\x0c\x03\xc1\x13\xe2\xf3\xc3\x21\xbe\xd8\xae\x78\x53\x70\x13\xca\x00\x36\xfc\x50\x31\xb7\x5a\xff\x0b\xdf\x8d\x84\xd4\x7d\x09\x80\x32\x54\xf6\xc8\xc8\x71\xea\x81\x33\x9b\x3f\xdd\xd1\x64\x85\xa8\x1c\x95\x91\x03\x07\xf8\x47\x72\x8a\xc6\x0c\x13\xef\x61\x19\x86\x89\x27\x56\xd8\x1a\x19\x39\x1f\x34\xc0\x50\x94\x41\x34\xb5\x35\xb2\x22\x2c\xce\xef\xc8\x24\xca\x82\xfe\x1e\x85\x10\xda\xe0\xd5\x01\x35\x51\x75\x8a\x19\x21\x89\xa0\x29\xf4\x6e\x61\x4e\x3e\x4a\xd0\x53\xfe\x11\x15\xbb\x11\x8a\x54\x8d\xd3\xac\xc8\x00\xa7\xff\x35\xa0\x16\x82\x9b\x19\x3a\xfd\x4b\x8f\x8c\x6a\x34\x6a\xba\x44\x7c\x10\xbc\xcd\x40\x42\xe0\xb6\x1d\x0a\x05\x64\x62\x86\x42\x01\x39\x97\x81\x6d\x7f\x6c\x3d\x6d\xfb\x9b\xd3\x4a\x3c\x80\xa5\x31\xcd\x30\xf3\xb1\xe2\xd7\xd1\xcc\xed\xc5\x89\x1b\x4d\x6a\x05\x50\x90\x0f\x4c\xe5\x5a\xa3\x79\x82\x98\x23\x64\x05\xb5\x09\x4b\xd3\x00\x28\x5b\x5d\x8b\x8a\xf8\xb3\x95\x46\xd3\x25\xb2\x02\x6d\x4b\x06\x3a\xaf\x2a\x75\x31\xf0\x3d\xd4\xb6\x6c\xe0\xce\xaf\x9b\xc3\xe8\x32\x88\x3e\xb3\x45\xa3\x0c\x23\x74\xbb\x7e\x94\x46\x3e\xb8\x41\x47\x87\x37\x45\x23\x3e\x30\xef\x3a\x5c\xe9\x1e\xc1\x60\xed\x8c\x8b\x9d\xeb\x65\x60\xb5\x75\xb8\x4f\x10\x0c\xcc\x64\x21\x4d\xb8\x5c\xf5\x81\xc5\x99\x83\x83\xbc\x90\x7f\x18\xc3\xe9\x00\x3a\x6d\xb6\x62\x5f\x0e\x0d\x9d\x60\x8e\x86\x46\x5b\xc5\xee\xc2\xf2\xd1\x2a\x71\xd1\xda\x87\x88\xc4\x05\xd0\x0e\x3f\x30\xc9\xf4\x0a\xe6\x26\x1a\x61\xb5\x65\x6b\x53\x83\x22\xb7\xbc\x26\xfa\xa4\xf8\x5e\x43\xb3\x2d\xfb\x47\x03\xd5\x89\x79\xbf\x86\x96\x5a\x22\xc1\x81\x06\xaa\x2a\x2f\x19\x33\x56\xcd\x96\x2f\xd6\xc3\xfa\x70\x7d\xc9\xef\x72\x7d\xd5\x1f\x2f\x3f\x68\xca\xe0\xcd\x2d\x5e\x86\x2f\x94\x42\x83\xa4\x03\xc6\xd0\x5c\xbf\xc5\x8b\x6a\x46\xee\x91\xb1\x34\x38\xf7\x2c\x2c\x49\x03\xe8\xbf\x11\xf6\xfa\xae\xe9\x92\x4e\xe8\x36\x10\x3b\x88\xe1\x7f\x6c\x72\xf8\xea\x8d\xd0\x20\x89\x17\x4e\xb1\x07\xf7\xca\xc0\x5e\x5f\xbb\x88\x11\x1a\x24\xe7\x55\x0d\x52\x1c\xbf\x13\x6e\xcc\x4e\x42\x67\xe4\x54\x86\x9a\xc8\x45\x32\x74\x51\x4c\xb8\xb1\x2f\x63\xc5\x08\xea\x50\x7b\xfe\x13\x19\x1a\x17\x33\x56\xf3\x12\xd1\xb8\x17\x2f\x99\x7b\xd1\xae\x74\x4f\x77\xc7\xa2\x39\xea\xfa\xb7\x8d\x2b\xf0\x1c\x30\xa8\x39\x22\xd0\xe2\x1a\x6a\x8e\x86\x98\xc6\x8c\x80\x2a\x2e\x07\x6a\xa4\xae\xcb\xe2\xb8\x8c\xbf\x24\xda\x83\x16\x9a\xe4\xf4\x5b\x03\x1e\xba\xb6\xe8\xf4\x15\x89\x01\xce\xad\x44\xc2\x7e\xb0\xf4\x9f\xce\xd5\x1d\x40\xb3\xa2\xe8\x97\xa6\x53\x0d\x3b\x1d\x5b\xeb\x0e\x4c\x45\x8f\x98\x65\x05\x8f\x38\x6e\x32\xc6\x0f\x7f\xe0\x7a\x34\x6d\xe9\xe6\x72\x07\x78\xcd\xb0\x62\x9d\x34\xc3\x8a\xa5\x0d\x33\x2c\x4f\xa6\x66\x58\x81\xa9\xd0\x13\xd5\x40\x81\x1f\x19\xd5\x94\x74\x0c\xa9\x28\xc5\x82\x63\xcb\xff\x77\x4b\xa9\x43\x14\x85\x05\x1d\x25\x3a\x0e\x3a\xca\xb1\xa8\x29\xd2\xb1\x69\x04\xdf\x0e\x64\x4f\x4c\x11\x2d\x3f\x21\xcb\xa6\xbe\x2c\xb9\x6e\xc1\xe3\x1f\x2d\x04\xcc\x28\x7e\xcc\xa5\xbe\x86\x91\x1b\x60\x05\xc6\x13\x2b\xc1\x8f\x37\xae\x76\x5a\x36\x32\xf3\x72\x91\xb1\x6d\x32\xe6\xd5\x1a\x2f\xee\xa7\x30\x32\xe3\x55\xca\xef\x52\x90\x6f\x27\x36\x2d\xfa\x9c\xd4\xbc\x19\x5f\x68\x42\x87\xaf\x3a\x47\xf5\xc1\x20\x18\xb3\x5e\x29\xe3\x25\x2c\x09\xf4\xda\x44\x4d\x53\xc8\x72\xb3\x26\x81\x1a\x14\x9f\x4f\xfc\x1a\x49\x53\xbf\xa6\xfe\x8b\x6c\x95\xf9\xd1\x37\x45\x4e\x60\x12\x00\x49\x7a\x7f\x1e\x38\x43\x45\x19\x24\x5f\x60\xb4\xa9\x3f\x22\x1b\x70\x7e\xb4\x4a\x51\x06\x34\x51\x9b\xcc\x01\x6b\x39\x51\x9b\x8c\x0c\xae\x99\x06\x93\x74\xa5\xa6\x9e\x87\xd1\x2e\xe1\x8b\xd4\x3c\x4d\x1d\x0f\x15\xfb\xcc\x14\x18\xcd\x3f\x32\x57\xe0\x9a\xa9\xe7\x61\xf4\x8f\x19\x91\xd2\xb9\x09\x09\xd2\x54\xbc\x4f\x48\x10\xad\xf9\xa7\xae\x86\x8a\x90\x66\xd6\xee\x8d\x5d\x37\xb3\x68\xd7\xf1\x66\xed\xde\x1c\x4c\x16\xd3\x36\x9e\x21\xed\x04\x32\xeb\x19\x55\x05\x45\x11\x16\x7b\x6b\x42\x9c\xe8\xdd\x30\x0d\x67\xd4\xec\xbe\xc8\x91\xb1\x1b\x26\xd4\x49\x6d\xec\xed\xa9\x55\x90\x71\x34\x66\x19\xd4\xb7\x94\xc8\x19\x18\x71\x3c\x3c\xa2\x8f\x8b\x67\x2a\xd7\xd8\x64\x54\x36\x04\x11\xc1\x6b\xd6\xac\x71\x7e\xa8\x62\xd0\xc7\xe5\xaa\x90\x4c\x46\x4d\xff\x84\x34\x69\x1f\x56\xf9\x03\x1d\x4e\x8c\x82\xd2\x70\xfa\xc3\x28\x88\xed\x3c\xab\x77\x05\xf2\xa6\x59\xa5\x42\x03\x20\xb8\x94\x78\x16\xef\x0a\x35\x4c\x4a\x80\x46\xa8\x45\xe7\xa5\x79\x03\xd0\x10\x02\x91\x45\x7e\xd2\x35\x8d\xf4\x48\x9c\xaf\x35\x49\x1f\xa3\xd6\x7b\x1a\xc5\x88\x60\x60\x6b\x62\xcf\xa3\x62\x7a\x1a\xe8\x91\xe8\x5e\x6b\x1a\xe8\x51\xbd\xda\x24\xb9\xb1\x9a\xe1\xd9\x94\xda\xd9\x96\x81\x1e\xd5\xcd\xcf\x1e\x02\x39\x8a\x61\xb4\x33\x20\x8d\x66\x97\x7e\x14\xf8\x4e\xda\x96\xe5\xf3\xd4\x51\xc3\x97\x25\x26\xb1\x8a\x41\xfd\xa2\xca\x05\xea\x65\x1a\xd1\x96\x74\xe2\xdd\xad\xd9\x8d\x11\xc0\x44\xa8\x12\x71\x7f\x0d\xdd\xb5\xfc\x6e\x44\x66\x27\x65\x84\xe6\x81\xda\xe4\x35\x50\xc3\x36\x4f\x5c\x4c\xdc\xdc\x27\x52\xec\xe2\xf7\x17\xf4\xc2\x72\x20\x08\x16\x55\x93\xc6\xff\x3b\x00\xb4\x8a\x89\xb1\xe2\xca\xe9\x75\x46\x5a\x99\x45\x82\xff\xa6\xe5\x06\x09\xfe\x53\x25\xd5\xd0\x22\xc3\xff\x87\x90\x6c\x57\xd5\x8a\x2b\x85\xd7\x9a\x26\x88\xd3\xcb\xac\x8b\x79\x2e\xd0\x31\x5c\x1a\x09\xff\xbf\x1f\xbe\xa8\x2d\x77\x9b\x5c\x5a\x1a\x70\x7f\x91\xf2\x3f\x95\xe4\xd1\x42\x38\xdc\x48\x5f\xbf\xe6\xad\x6f\x1d\xbd\x84\x73\x5a\xb2\x4a\x40\xc9\x58\x6e\xed\x93\xc0\xe0\xd3\xa8\x81\x7a\xe4\x4c\xac\x25\x2a\xf9\x88\xd6\xbc\x4d\xe3\x2a\xcc\x77\xa4\xa6\xf0\xe5\x71\xba\x59\x52\x62\xf9\xa9\x67\x25\x29\x7f\x6a\xc5\x63\xb7\xa3\x14\x55\x88\xe0\xa7\x76\x72\x3e\x32\x14\x8e\xf9\x91\x9c\x98\xbe\xe0\x8c\x2b\x62\xd2\x17\x1f\x4a\x65\x12\xd9\x4f\x0b\x58\x93\xf7\x57\x95\x5c\x24\xef\x2f\xca\x17\x26\x8c\xb9\xcc\xe4\x84\x31\x97\x13\x25\x8f\xff\xbf\xd3\xa3\x95\xae\x6e\x1c\x13\x9f\x32\xc9\xbf\x19\xdc\x3b\xb0\xbe\xda\x9c\xbb\x0c\xb2\xec\xce\xe2\x0b\x51\x6d\x4b\xaf\x08\xdd\xad\xf5\xe2\x73\x52\x7c\x5e\x3c\x5b\x48\x62\x95\x2b\x91\xf4\xfc\x45\x44\x6b\xde\xfd\xc3\x9b\x6b\xc9\x83\x7b\x57\xaf\x03\x0d\x09\x57\x03\x89\xf7\xab\xd7\xf6\x32\x34\xb2\xca\xe9\x15\x2c\x38\x64\x28\x89\xf7\xeb\xbf\xda\x27\x5b\xd6\xda\x10\xf4\xd0\x06\x66\xda\x1f\xa4\x94\x5f\x64\xda\x6f\xba\x7f\x45\xa6\x7d\xf9\xe6\x45\x7c\xbe\x91\xff\x8a\x6d\xbf\x56\xf2\x64\xd8\x82\x32\x35\xf0\xce\x32\x66\xb2\x84\xef\xc2\xf1\x5e\xc1\xc4\x4a\x71\x18\x2a\x2f\xc8\xd7\xb2\xcf\xa0\x70\xf6\xc2\x4a\x3a\xe0\x72\x55\x93\xc4\xbf\x1d\x51\xdb\x8b\x05\xe4\x44\x0e\xff\x26\x8f\x64\xa6\xfe\x64\x14\x26\x32\xf5\x7f\xa8\x9d\xb6\xb4\x82\x6d\xd6\xc7\x0a\xf6\x88\xea\x12\xf7\xf6\xa8\x15\xac\x41\x55\x96\xc6\xae\x3a\xbb\x2f\xf4\xff\x5a\x16\x47\xaa\x7e\x23\xac\x44\xaa\x7e\xcd\x76\x23\x55\xbf\xee\xa0\xcb\x5b\xce\x78\x2b\x91\xab\xdf\xc0\x2f\xe4\xea\x0f\x37\x55\xd3\xf3\xcf\x02\x16\x23\x3d\xff\xc7\x4f\x58\x45\x3e\x67\x5a\x25\x68\x1b\x80\x29\xb2\x1d\xd1\xb2\x34\x7c\x15\x1a\xee\x12\x87\xac\x58\xdf\xe0\x1f\xa6\xee\xcf\x2a\x76\x4d\xdd\x3f\x48\x3b\xb9\x4c\xdd\x9f\x8d\x4c\xb4\x08\xc9\xa7\x2a\xd5\x6c\xfd\xd9\xf8\x3e\xcb\x74\x6a\x5d\x30\x09\xd6\xa7\xca\x77\x55\x23\x86\x25\xab\x48\x97\x67\xdb\xd2\x1e\x21\x5b\x5f\x1b\x46\xe7\xac\xaa\x1f\xb2\x01\x73\xab\xe9\x55\xb0\x1a\x2a\x21\x57\xa9\x21\xb5\x70\x95\x0c\xe3\xa7\x19\xad\xe9\xfd\x8b\x42\xfa\x45\x0c\x64\xc2\xd8\x2e\x52\xfd\x7f\xc8\xcb\x76\xbd\x81\x98\x30\x18\xfd\x92\x04\xd2\x9b\x51\x4b\xd5\x65\x48\x3f\x63\xdc\x90\xf7\xbf\x69\xff\x62\xda\xff\xa9\xab\xaa\x69\xff\x57\x3c\x87\x86\x9e\xea\x18\xba\x16\xad\x9b\xcc\xf5\x3f\x8b\x33\x89\xa1\xeb\x30\x1e\x10\xa9\xe0\xb3\x36\x22\xa6\x82\x8f\xf5\x5e\xca\xac\xc0\x76\x6b\x21\x11\x80\x4a\x25\x2f\xfc\xc7\xd4\x33\x12\x53\x27\xe8\x6f\x1a\x99\xe1\xb5\xe5\x30\x33\x7c\x6a\xce\x5d\xf0\x8f\x20\x33\xf3\xbf\x27\xf5\xf5\xe6\x7f\xef\xe4\xd7\x5a\xe4\x7f\x6f\x1a\xcc\x2f\xd2\x25\x28\x13\x24\xc9\x7b\x6a\x25\x6a\x28\x65\x01\xcf\x2d\x23\xdc\xba\xf5\x4e\x91\xa4\xb5\x1f\x9e\xad\x00\x05\x6c\x0f\x17\x3e\x65\xdc\xa0\xeb\xc2\x77\x4f\x6c\x70\x21\x9c\xe0\x96\x5d\xe4\xf8\x09\x3c\x73\x89\x47\x69\xff\x42\xf2\x29\xbe\xe3\xfa\xac\xb1\x33\x2f\x3d\x87\xdc\xc0\xe6\x76\x8d\xd3\x60\x6e\xd7\x38\x00\x97\x57\x0e\x37\xcb\x32\xb9\xab\x4a\x41\xf2\xc0\xd7\x40\xb1\x7a\xe2\xe8\xcd\xbb\xcc\xe1\xea\x2d\xbd\xb0\x29\x6c\x31\x10\x94\xab\xb3\x70\xe5\xad\x5b\x8c\xdb\xfe\xe4\x8f\x57\x38\xea\x40\xe2\xac\x5b\x7a\xde\x0d\x16\xbe\x39\xa2\x91\xf0\xcd\x71\xeb\x86\x6f\x8e\x63\x0d\xa6\x50\xec\xb8\x11\x32\xb9\xc4\x1b\x7a\xde\x13\xa5\x67\x8e\x27\xe2\xe3\x02\xab\xea\x2f\xb2\xd4\x7f\x95\x01\x3a\x7c\x71\x44\x08\xe1\x8b\xe3\xb9\xd9\x48\x6a\xb3\xa5\xe4\xad\x9d\x34\x52\xbc\x2a\x36\x22\xb3\xfd\xd7\x96\xd5\x91\xa8\xb8\x59\x36\x42\x14\xb7\xa7\xf7\xb7\x82\xbb\xe5\xfd\x9d\xdd\x14\x08\xd3\x55\x64\x91\xdc\xfe\xdb\xaa\x96\x12\x4f\x0b\xf0\x23\x99\x1f\xc5\xd0\xf6\x65\x88\x3d\x13\xdc\x27\xc3\x77\x98\xd3\x3e\x19\xbf\x63\x91\xef\x35\x29\xab\x34\xa7\x7d\x6a\x82\xfc\xc0\x8d\xc4\x73\x1c\x0f\xc0\x0c\x16\xd4\x09\x7b\xbd\x34\xe8\xff\x95\x1f\x98\xbe\xc8\x75\xc2\x12\x9a\xec\x3e\xad\x78\x51\xa1\x3e\xad\xef\xc1\xf5\x6a\xd2\xd7\x46\xf7\x16\x53\xdf\x27\xdd\x35\x4c\x7d\x9f\x74\xc4\x20\xbb\xfd\xf7\x02\x68\xb0\xa4\x1a\x25\x9f\x1f\x17\x1a\x26\x81\xa7\x3e\x34\x7a\x52\x9c\x87\x87\x78\x59\x4a\xc1\x0f\xe4\xc6\x79\x28\xf8\xe1\xfc\x9c\x9a\x11\xaa\x60\x3c\x35\x23\x54\x9a\x71\x6a\x39\xa8\xee\xf8\xd4\x72\x50\x95\xe1\xa9\xe5\xa0\x47\xe3\x34\xf3\x2b\xf1\x3c\xd7\xa9\xe5\xa0\x96\x32\xe4\xc8\x6f\x3a\x96\x9d\x1a\x0e\x7a\x68\x48\x92\xff\x55\x01\x1a\x0d\x07\x15\x83\x9d\x9a\x07\xea\xa2\x7b\x6a\x1e\xa8\x0d\x10\xc9\xf1\x9b\xa6\x97\x67\xf2\x0a\x01\x96\xa4\xb1\xea\xb0\x61\xa9\x61\xbb\x4c\xf2\x2a\xd3\xea\x92\xc3\x1c\x1e\xf2\xe3\x7f\x7f\xac\x63\x0e\x34\x48\xb7\x53\xbb\x41\x89\xff\x33\x2b\x9f\x66\xd1\x4e\x25\xf2\x8a\x2a\x4e\x25\xf2\x92\xa3\xa7\x99\x5b\x35\x25\x38\x73\xc0\x6c\x6b\x6a\x9f\x9d\x4e\x33\xb7\x4a\xe8\x9a\x59\x3f\xab\x56\x3c\x4d\xdd\xaa\xba\xf2\xd4\xa2\x30\xfb\xec\x25\x58\x6c\xcc\x1c\x6e\xc5\xfa\x5e\x82\x45\x68\x64\xe1\xd9\x4f\xa7\x72\x7c\x76\xed\x69\xea\x56\xcd\x5a\x4e\x28\x8a\xac\xad\x12\x39\xf8\xbf\x3f\x56\x81\x0f\x73\x3a\x4d\xe3\xaa\x56\xf3\x84\x6d\xf6\x34\x9b\x9d\x3f\xab\xb6\x39\x4b\x10\xfa\xfe\x51\xda\x9f\xed\x45\x46\x15\x12\x9e\x04\xfd\x69\x4a\xc2\x9b\xa1\xbf\xa4\x64\x37\xdf\xd6\x98\x87\xa5\x14\xb4\xe5\x3f\x71\x23\xf9\xfb\xdb\x84\xc5\x26\x7f\xff\x57\x8b\x11\x54\x4d\x1e\x20\xdd\xce\x8a\x14\x0e\x71\xd7\x59\xe5\x37\x21\x62\x4f\xe8\x13\x52\x9c\xae\xb3\xc6\x6d\xcf\x70\xa0\x4f\x8a\x1e\x0f\x26\xfd\x2f\x3a\x66\x90\xf4\xff\x7b\xb1\xbe\x86\x87\xee\x2e\x18\x6f\xc3\x3b\x90\xf6\xff\xfb\x21\x60\xea\x3b\xdc\x28\x61\x84\xe8\x1e\x6c\x06\xea\x75\xdb\x05\xe9\xc1\x3c\x4b\x7a\x68\xab\x76\x42\x7a\x68\xe4\x72\x36\xb9\x2b\x4e\x3d\xc9\xff\xbf\x52\xf4\xd2\xbc\xaa\xa6\xf5\x8d\x49\x32\xed\x12\x86\x17\xda\xfe\x34\x66\xb0\x2c\xca\xd9\xd1\xb0\x08\x7d\x97\xd3\x83\x88\x3b\x65\xca\xd5\x2b\x9f\x30\xe5\x92\x9a\x67\x8f\x78\xf6\x8c\x5e\xde\x5b\x33\xf6\x53\x4b\x45\x01\xd6\x52\x51\x4b\xfa\x13\xde\x7b\xc8\xbb\x9b\xef\x7e\xc8\xe1\x93\xe8\x3d\x2b\xea\x25\x9f\xfb\x32\x8c\xdd\x79\xa2\x5a\xe4\x02\x38\x2f\xe5\xfe\xa2\x0f\xf8\xe7\x91\x5d\xee\x4b\x55\xb0\x87\xec\xf2\x06\xf0\xf4\x18\xea\x45\xbb\xe1\x13\xb7\x5c\x19\x3d\x92\xbb\x37\xad\x1f\xc8\xed\xfe\xd5\xb0\xe1\x53\xfe\xdb\xb6\x54\x34\x0a\x3d\x0c\xb4\x86\x17\x26\x77\x6f\xa4\x2b\x5d\x26\x77\x4f\x1a\x61\x9d\x61\x5d\xe5\x19\xd1\xdb\x40\xce\xfc\x44\x32\xac\xaf\xde\x19\x9e\x07\x90\x44\x26\x71\xcf\x8a\x83\x4f\x1d\x0c\xbc\xf3\xce\x08\xae\xef\x5c\xdc\x9e\x11\x4f\xff\x77\x91\xb7\x09\xa1\x7f\xee\xd8\x47\xcc\x05\x0e\x01\x3a\x8b\x90\xac\xbd\x91\x3d\x66\x9d\x3b\x44\xab\x00\x89\x56\x5c\x92\xc0\x64\xed\x5d\xbd\xe5\x69\xcc\x16\x71\xf7\x96\xfc\xef\xbe\x60\xe2\x22\xb2\x50\x98\xab\xab\x04\xb9\xd6\x8b\xaa\x09\x53\xad\x57\x1d\x22\xce\x47\xe2\xc7\x5b\x85\xc4\x7c\xd2\x99\xe7\x13\xe4\x8e\x2f\x41\xc4\x00\xe3\x13\x44\x8c\x7f\xb8\x6e\xed\x31\x7c\x56\x3d\x76\xaf\xa2\x13\x8f\xdd\x1b\x4b\xcf\x50\xd4\x74\x77\x31\x87\x57\xac\xba\xd9\xd3\x2b\x56\xe5\x9c\xe9\xd3\x3f\x9c\xc8\x4b\xdc\xf7\xb6\x06\x8f\xe8\x0e\xd1\x50\x5f\x33\x82\xf3\x95\x63\x5b\x56\x89\xf5\xb6\x0a\xe6\x4e\x89\x29\xbb\x30\xce\xcf\x1a\x74\x5c\x5c\xb8\x3d\x41\xfd\x5d\x58\xea\x6b\xb0\x4b\x3a\xf5\xa6\x63\xa8\x09\xd4\xb3\x22\x80\xeb\x30\xb4\x57\xb7\xba\x77\x17\xf7\xb5\xe9\xd4\xb3\x01\x39\x4c\xa7\x9e\xfb\xfc\x33\xe4\x20\xb9\xd6\x9b\xa7\xf2\x3a\xe2\x5e\x13\x1c\xdd\xca\x41\x4a\x97\xa6\xfa\x8a\xbe\xae\x30\xd5\x67\xff\x9b\x4f\x3d\x8b\x2f\x4c\xa1\x5e\x75\xd7\x30\x85\x7a\x91\x8d\x30\x85\x7a\x49\xf6\x63\x26\x3e\xbd\x58\x49\x95\xde\x48\x4c\xb4\x48\x6f\xde\xa2\xe1\x8c\xf9\x33\x74\xac\xc9\xcd\x8b\xfa\x68\x92\x9b\x67\x55\x29\xa4\x33\xaf\x0a\x3b\xcc\x66\xae\x25\xf4\xe5\xfd\x28\xa3\x63\x6a\xf3\x9e\x9a\xa5\xe4\xb9\x9c\x26\xa3\xe1\xab\xcf\x35\x9f\x79\xd1\x55\x8e\x7c\xe6\x43\x01\x1d\x19\xcc\x9b\x74\xd4\x55\x90\x0a\xd9\x94\x6c\xb5\x86\x5c\x57\x89\xa1\x2f\x5e\xa4\x90\x38\x56\x91\xcc\x5c\xf3\x5d\x92\x99\xa7\x9e\xb2\x2f\x71\xf3\xf9\x12\x80\xd1\x7d\x81\xeb\xe1\x60\x98\xa5\xbc\x6a\x0a\x62\x32\xf2\x43\x8e\xff\x22\x81\x90\xec\x02\x89\xc9\xab\xa2\x1e\xf2\x92\x7f\x85\xd8\x24\x32\xcf\x5a\x3c\x44\xfe\x71\xb9\xc4\xc8\x3f\x2e\x87\x61\xfe\xf1\x5c\x9c\x6f\xa5\xc2\xd1\x09\x54\x58\xb4\x85\x54\x98\x33\x66\x5a\xf2\x2a\xd6\x27\x2d\xb9\x09\x35\x96\x59\xc9\x4b\xca\x96\xc2\x3e\xdf\x0d\xa1\xdd\xbc\x5e\x8e\xe6\x21\x2f\xba\x79\x9a\x7a\x5c\x3d\xd4\xe5\x35\xa5\xe9\x16\xb9\xc7\xcb\xe1\x0c\x37\x91\xbe\xcf\xaa\x7e\x3d\x06\x5d\xa9\xcf\xf2\x25\xc6\x4e\x5b\x46\xd8\x95\xc5\x35\x79\xf8\x21\xa5\x6c\xf2\xf0\x49\xc2\xeb\x45\x8e\xf0\xaf\x01\x9a\xee\x70\x17\xe0\x84\xcb\xe8\xb9\x92\xdd\xd7\x10\xc3\xb8\x73\x86\x7d\xba\x85\x87\x92\x26\x07\x36\x02\x00\x06\x36\xdc\x9f\x3e\x8b\x46\xdc\xb8\x3a\x5c\x6a\x5c\x75\xe9\x70\xa9\x65\x21\xd9\xc4\xbf\x62\x76\x23\x13\x21\x82\x40\xdf\x6d\x26\xfc\x45\x3a\xf1\xef\x0f\xad\x4d\x53\x0b\x41\x35\x99\x4f\x3c\x29\xb9\x34\x9f\x78\xd7\x33\xd4\x14\xe2\x49\xfb\x01\x53\x88\x67\xb5\xcc\xd7\x0c\xe4\x47\xa7\x53\x1d\x17\xd8\xd7\x34\xe1\x5d\x99\xec\x85\x67\xe5\x58\xf1\xe7\x71\x03\x30\x04\xae\xea\xae\x92\xd0\x34\xe1\xc9\x3b\xe2\x22\x0f\x8f\x06\x8b\xa4\x0c\xff\x7e\xd0\xd8\x8a\xe3\xc3\x70\x4c\x5e\x1c\x07\x6b\x79\xdf\xb8\xd4\xa6\x28\xd6\x18\xc7\x1c\xe2\x59\x03\x9c\x0b\x69\x44\xcf\xc8\x03\x4c\x22\x9e\x35\xf2\x31\x89\xb8\xe9\xb0\x97\x49\xc4\xb3\x1a\x9b\xeb\x0c\xf4\xfb\xa7\x95\xe1\xa5\x12\x5c\xa5\xd1\xa5\xe2\x5b\x4b\x8a\x4b\xc5\xb7\xc1\x12\x2f\x5d\x27\x35\x69\xb9\xce\x38\x6b\x40\x84\xe5\x5e\x89\x52\x17\xcf\x2c\x09\xaa\xee\x12\x4d\x3d\x7c\xb7\xf2\x6b\x1f\x54\xc6\xa0\xaf\x47\x0d\x9d\x1d\x49\x39\xb9\x2e\xf5\xd7\x0a\xb3\xae\x10\xf2\x73\x37\x5e\xaa\xac\x8d\x19\x7c\x29\xbf\x37\x10\xf1\xa5\xc8\x3e\x76\xbb\x19\x7c\xdc\x9f\xb7\xcc\x13\x64\xd1\x75\x6b\x27\x24\xc6\xd7\xbf\xd1\x20\xc5\xd7\x1d\x7d\xd2\x98\xe4\x47\x81\x63\xba\x30\xee\x56\x1b\x7b\xa1\x8c\xd6\x9e\xe6\xba\xd1\x31\x78\xf0\xee\x58\x0d\x2a\xec\xe8\x84\x21\x87\xd3\xe1\xf2\x85\x51\x1a\x52\xe5\xd2\xe9\xb0\x58\x45\x04\xca\x65\x7a\xa9\x3f\x36\x44\xc9\xa5\x21\x9e\x86\xf3\x17\x86\x78\x7a\x57\x5e\x12\x26\x86\x0e\xb9\xb6\xd2\x34\x07\x19\x2e\x88\x62\x73\x2d\xc2\xb5\x44\xbe\x34\xc5\xd3\x56\xdf\xfc\xf2\x59\x43\xc8\xeb\x09\x30\x81\xec\x09\x30\x6d\x40\x63\x82\x65\x1d\x8c\xa6\xc4\x7b\x3a\x1e\x8a\xd9\x23\x99\xb0\xa3\x0c\x2f\xc4\x65\x29\x6d\x6c\x44\x1c\x6f\x00\xc3\xc2\x84\xdc\xdf\x25\x0f\xfb\x72\x57\x59\xf7\x42\x15\x5a\x97\xee\x85\x2a\x49\xaf\x57\xac\x0d\x2c\xd0\x1c\x55\x7d\xda\x7d\x48\x74\xc1\xc5\xdc\x72\xef\x6a\x5c\xef\x70\x02\x04\xd9\xdc\x72\xef\x6a\x7f\x6f\xa9\x0e\x95\xbc\xb7\xac\xbc\x12\xb3\xfb\x08\x63\x08\xff\x28\x74\x05\x75\xdd\xb2\xf2\xea\x00\x6f\x13\xfc\x66\xbb\x91\xdd\xe4\x74\xdf\xd0\x12\xad\x0a\xcd\x3f\xf2\x01\x38\x4d\xea\x0b\x8d\x70\xa7\x48\xbd\x4b\x2f\x90\x12\x3d\x35\xab\x04\x98\x74\x09\xc7\x3e\x55\x06\xdf\x49\x0b\x78\x6e\xed\x3b\x49\x0b\xb3\x1f\x6e\x98\xf4\x11\xe3\xcc\xea\x7c\x38\x41\x77\x96\x0f\x2c\xbe\x68\xfc\x5f\x2c\x26\xef\xc7\x4d\x70\x67\x79\x3f\x4b\x05\xc7\x60\xa9\xcb\x52\x8c\x39\x4c\xf0\x41\x76\x37\xaa\xe9\x79\x58\xfd\x91\x6c\x03\x32\xf9\xed\x01\x7a\xbc\x8b\xc6\x20\x8c\x5f\xcb\x7b\xe9\xec\xbb\x68\xf5\xc0\xa6\xbb\x8b\x52\x67\xb6\xd0\x6d\xd8\x36\x32\x45\xaf\x5b\x27\x3e\xad\x78\x6e\x9d\xf8\x34\xe5\xbd\x65\xb2\x75\x91\xbe\x21\x35\x9a\xf6\xf7\x37\xaa\x6a\x63\xa0\xdf\x45\xa6\x94\x8d\x7e\xcb\x63\xe7\xf5\x67\xf8\xd6\x5b\x06\x7c\xd8\xab\x1c\x2b\xf7\xef\x6d\x94\x5d\x4d\x00\x6e\x99\x6c\x9d\x42\xee\x1a\x63\xf0\x4f\xc4\xbc\xa0\xdb\xf0\xd5\xe3\x9a\xbd\x91\xfc\x2f\xfd\x1e\xee\xe0\xac\xb9\xb3\x6f\x24\xff\x24\xcd\x59\xb7\x8c\xb5\xbe\x5a\xb7\x66\x79\x7a\x71\xdd\x72\xd9\xf5\xb0\x4f\x43\x6f\x3a\x3b\xb2\xd9\xa4\x6f\x59\x77\x8d\xcb\x94\x62\x2d\xec\x32\x68\x5a\xfa\xc5\xd8\x40\x37\xb2\xff\x56\xdd\x5f\x10\x33\x9a\x04\xdd\x12\x33\x15\x34\x70\x37\x98\xa5\x28\x04\xff\x1d\xed\x9a\x44\xce\x65\x0b\xc2\xe6\xb0\xba\x27\xbf\xfb\x22\x60\x2e\x75\xf0\xdf\xf4\x2e\xff\xad\xc5\xfe\xad\x73\xa0\x51\x71\xee\x1e\x26\x8e\x8c\xbf\x6b\xd6\xe8\xcc\x76\x8d\x85\x5c\x0d\x39\x70\xed\x60\xee\x70\xfc\xf3\x14\x85\xe3\x9f\x47\x3a\xfc\xfb\x5c\x00\xb4\xd9\xdd\x1b\xfb\x0e\x07\xbf\x69\xb1\x70\xf0\xa3\xb5\x7f\x0e\x7e\x40\x30\x64\xee\xa3\xce\xe9\x8b\x75\xf4\xff\x4e\xd6\xb9\xd5\x4b\x30\x84\x07\x4f\x03\x77\xe4\x43\x74\x44\x8f\x34\xb9\x6c\xf5\x26\x21\x0f\x7b\x51\x85\x47\x1a\xf6\x15\x3b\xf8\x81\xe9\x87\x90\x21\xa3\x7a\x55\x32\x68\x42\x75\xa5\xf1\x26\x54\x3f\x34\xaa\xb9\xb5\xe1\x11\xcd\xbc\x52\x85\x2e\xf0\xab\xbc\xdc\x8d\x14\x3a\x52\x17\x42\xf9\xa9\x9c\x1a\x29\xd5\xbf\x3f\xf4\x6e\xe6\x5a\xc3\xf3\xdc\x9a\x33\x2b\x59\x35\xa9\xfa\x21\xdf\xb7\x83\xbb\x63\xee\x48\xaa\x5e\x15\x59\x98\x53\x3d\x49\xd2\x90\x53\xfd\x7b\xc9\xbc\x74\xe8\x45\xab\x07\x98\x56\x9f\x96\x4a\xbc\x20\x3e\x87\x39\x35\xa9\xba\x09\xf9\xd6\x0e\x23\x66\xd8\x1e\xf2\xa5\xb7\xc3\xb6\x0c\x2e\xa4\x3d\x13\x29\xd2\x9b\x66\xfa\x1b\xbe\x2c\x2e\x8d\x9d\xa4\x02\xd9\x13\xe6\x4e\x4f\x8d\xe9\x33\x77\x7a\xd2\x7e\xc4\xdc\xe9\x7a\x79\x98\x2e\x3d\x35\x10\xdb\x36\xbc\x50\x6b\xfe\x51\xca\x01\xab\xb1\x73\x50\x84\x00\xa3\x5c\x94\xa4\x9c\x6b\x67\x49\x42\x04\x59\x1b\x9e\x4f\x1b\xf6\x9d\x83\x22\xa4\xcb\x8c\x21\x6b\xf1\x59\x3e\xcf\x76\x03\x2e\xa6\x45\x09\xa7\x1c\xe0\x2e\x52\x7d\x88\x42\xb6\x82\x4c\x15\xb8\x1b\xc4\x9a\xb5\xe6\xd9\xc5\x40\x3c\x02\x56\x82\x24\xf6\x65\x58\xc7\x17\x09\xbb\xbf\x65\x8c\x5b\xc5\xa9\xd1\x23\x36\x88\xd6\xa0\x22\xbb\x04\x74\x2c\x81\x51\xca\xd5\x01\x6c\xb2\x9a\x19\xf0\x62\xd7\x00\x9b\x29\x54\x6f\xaa\x75\xd3\xd6\xef\x49\x33\xf0\x5d\x25\x41\xe1\xad\x77\x95\x97\x81\xd4\xdb\xc1\xe1\x81\x58\x77\x70\x78\xee\xc0\xe0\xf0\x40\x0c\xbb\x9a\xcd\xcb\x19\xa9\x92\x87\x6e\x82\x66\x6c\xed\xe1\x0b\x02\x29\xeb\x9b\xda\x4c\xf9\xe1\x56\x27\xaa\xc2\x6e\x9b\x17\x56\xf6\x63\x9b\x0b\x56\xf5\xfe\xd6\x42\x48\xc9\xe4\x36\xd1\x59\xf1\xa4\xb4\x20\x56\x99\x27\x13\x9d\x89\x72\x77\x0b\xa0\x7d\x11\xe8\x69\xa7\x12\x38\x56\x31\xd5\x72\xfc\x70\x00\x1c\xc8\xdd\xa5\x6f\xe9\x5f\xc3\x68\xd0\xd2\x36\xb3\xab\xd6\x5a\x1b\xc4\x98\x95\x56\x6d\x33\xbb\xaa\x5d\xda\x88\x26\xb5\xea\x26\xb7\x7f\xca\xda\x30\x90\xdc\xbf\x29\xa6\x24\xb7\x7f\x8a\x68\x4a\x26\xf7\x1f\xd9\x65\x36\xe5\xab\x44\x4c\x24\xf7\x8f\x59\x1e\xd2\x97\x16\xc3\x89\xda\x50\x16\xdb\xfc\xaf\xca\xdc\xc9\xe9\xff\x91\x97\xb4\x6c\xf6\x56\xed\x85\x49\xdc\xff\x15\x03\x18\xd3\xb7\x2a\x5b\xdf\x06\x24\x4f\xd9\x3a\xdb\x3a\x02\x20\x8f\xe6\x76\x1a\x01\x1a\x2f\x86\xef\xd1\x5e\x99\xb4\xfe\x5f\xa7\xd4\x81\x7f\xcc\xca\xf3\xf7\x34\x00\x86\xbb\xd6\x44\xaf\x7a\x58\x90\xe5\xff\x2b\x06\x6c\x32\x93\x1a\xfb\xed\xe9\x10\xa2\x4e\x0c\xc1\x17\x14\x2f\x1e\xd0\x19\xb4\x3b\xc3\x59\x52\x0d\x62\x01\xc3\xef\xa8\xf8\xdb\x70\x89\x23\x36\xcd\x92\x28\x14\xa7\x2c\x69\x57\x38\x94\xbd\x24\x0a\x21\x48\xf6\x92\x76\x15\x75\xad\xa0\x5d\x2d\xa6\xb4\x74\xd8\xb4\xb4\xab\xd8\x72\xa9\x2b\xe9\x82\xa3\xae\x44\xb4\x22\x67\xa9\xc8\x71\x1b\x83\x47\x9d\xf2\x3e\x03\x6a\x66\x4a\xce\x52\x5d\xeb\x96\x79\x54\xd7\xba\xcf\xc8\xd1\x6f\xb1\x18\x02\x80\x9e\x52\x72\x6e\x36\x99\x47\x45\xd4\xdb\x50\x3b\x4a\x30\xb7\x36\xd4\x6a\x55\xf7\x29\x43\x1e\xad\x49\x70\x36\xeb\x48\xf1\x8a\xbe\x4f\xa5\xbf\x54\xb9\xa4\x71\x45\xa5\x97\xe2\x19\xc7\x76\x49\xf0\x3a\x39\xb8\x87\x4d\x57\xea\x52\x78\xd7\x7c\x51\x78\xe7\xe5\x85\x91\x59\x49\xa2\x7f\x64\xe4\xd3\x4d\x74\x49\x09\xd7\x3f\x89\xc7\x7d\x45\xec\x71\x41\x90\x3b\x13\xf9\x18\x1d\x5d\x81\xe8\x96\x6b\x55\x70\xbb\x6f\x13\xda\x7a\xc4\x6f\x07\x04\x2d\xb0\x6f\x44\xd8\x1e\x2b\x63\xa5\x27\x08\x80\x6d\xac\xf4\x38\xfd\x66\xd2\x4b\xd5\xc6\x1c\x43\xf5\x8f\xf6\x19\x10\x1f\x1b\xf5\xf9\x30\xd6\xc6\xbe\x95\xcf\x55\xfb\xbc\x24\xb4\xfd\x13\xf3\x6e\x3f\xce\xbb\x4b\x7a\x3b\x82\x26\x38\xaa\xa6\xe0\x8e\xb6\x32\x78\xd5\xae\x1b\x17\xe7\x22\x7f\xbf\xb7\x14\xa7\x24\x00\xd6\xd6\xe6\xa2\xd8\xc6\xb9\xd4\x22\x6f\x2b\x9e\xd7\x31\x77\x6f\xc9\x7e\x31\x03\x51\x79\x8c\x51\xbb\xb7\x24\xa7\x4b\xb2\x55\xf9\x38\x37\x5b\x92\x19\xc2\x78\xef\x18\x8d\x7f\x8c\x56\xef\xf1\xdf\x46\xaa\xf0\xd2\xd9\x46\xaa\x90\x52\xc1\x71\xad\x28\xd1\xd8\x5a\x68\x4b\x3f\xef\x47\xd2\x34\xf9\x47\xd2\x34\x8a\x55\xff\x00\xce\x83\x6e\xc8\x96\x1f\x69\xd6\x78\x01\xe8\x2a\x2e\x79\x02\x68\xa6\xf3\x91\xb4\x8f\x17\x49\xfb\xec\x8b\xa4\xbd\x58\xf3\x91\x82\x76\x6e\x88\x6b\x59\x8c\xc2\xb1\x5f\x49\x68\x51\xf8\x1b\x70\x32\xd0\x57\x38\x9d\xdc\x57\x38\xc5\xd4\x6f\xcc\x34\x4d\xbf\x01\x28\xb0\xbd\x12\xd7\xce\xd4\x2b\xd4\xce\xee\x1b\x3c\x08\xe3\x79\x55\x5c\xba\x8b\x5e\xc9\x6e\x37\xce\x1b\xa4\xbe\xc5\xb4\xe6\x61\x45\x9e\x23\xc8\xfb\xc6\x8b\xb0\x41\x47\x3e\x87\x64\x37\x4d\x3f\x87\x64\x37\x54\xe9\x73\x04\xe1\xbf\x78\x09\xc2\x7f\xf0\xa2\x0f\x13\x0b\xf7\xc0\xb1\x0f\xa3\xc1\x3c\x70\xec\x45\x22\xed\x39\x54\xb7\x4d\x9b\x16\xd0\x6e\x31\x6f\x0e\x70\xf5\x73\x08\x28\x18\xf9\x49\x2a\x05\x41\x20\x4f\x92\x73\x00\x71\x3f\x49\x3b\x58\xf0\xee\x93\xe4\x1c\x96\xc5\x1c\x82\x10\xa8\x18\xd0\x5d\xe9\x81\xe6\x2c\x4a\x11\x9f\x64\xfc\x14\xae\xb8\x27\x85\xc2\x10\x40\xd1\x12\x28\xbb\x7d\xa0\x3f\x25\xd2\x1f\xbd\xed\x8d\xec\xf2\xc8\xf2\x4b\x7b\x3d\xd8\xec\x49\xa3\x3f\xb2\xff\xea\xd2\x1e\x3d\x9c\xab\xcf\xe4\x1e\xb7\x0b\xd9\x16\x79\x74\xd3\xa3\x0f\x19\xc7\x67\x90\x30\x10\x34\x40\x46\xf4\xa5\x2b\xfa\x13\x6e\xcd\x36\x35\x31\xbd\xb7\xb6\x51\xef\x94\x03\x9a\x1e\xbd\x93\x63\x7c\x91\x1e\x3d\xf5\x94\xfe\x0c\xe8\xf0\x84\x14\x96\x0b\xe9\x31\xf0\x9d\x34\xfb\xe3\xcd\x29\x83\x66\x96\x74\xf1\x80\x59\xd2\xb3\x6c\xec\x33\x83\xde\x14\x52\xbd\x66\xdc\x1b\x4b\xc9\x3d\xe8\xf7\x31\xf0\x9d\x2a\x14\xf2\xa4\x37\x19\x37\xd3\xa4\x1b\x29\xcc\x34\xe9\x59\x75\x88\x69\xd2\xab\x71\x4a\x1e\x2e\xe1\x2e\xb6\x78\x88\x82\x17\xd3\xbf\x74\x53\xe9\xb6\xe5\x6d\x36\xad\xe2\x6d\x06\xc2\x7f\xe2\x0e\x76\x65\x96\x58\xd5\xfd\xb3\x10\x9f\x38\xb0\xe5\x66\x74\xa2\x17\x0c\xb2\x1b\xe6\x74\x2f\x1e\xbe\xc4\x5e\x64\xc4\xa7\x32\x2f\x17\xcd\x64\xec\x01\xf2\xe9\xfa\x5b\x8a\xc0\x2e\x83\x9b\xf1\x89\xc0\xd1\xee\x65\x6e\xe3\x9e\xa3\x18\x0c\x97\x13\xc6\x65\x5c\xf5\x80\x34\x17\x7b\x97\x63\x20\x19\xfb\x77\x45\xf9\x47\xc6\x68\xd8\xa5\x8c\xd1\xb0\x01\x45\x73\xdc\x44\xe6\x69\xcf\x72\x36\x4f\x04\x98\x86\xc0\x7d\x74\xd6\xe6\xce\x7d\x48\x48\x2b\x41\x65\x02\xf7\x62\xac\x86\xc7\xcb\x58\x3a\xf2\xb9\xc8\x83\x29\x60\x44\x8b\xd6\xc2\xe6\xf9\x77\xc3\xb2\x94\xdf\x0d\x5b\xe5\xa2\x1f\xc3\xde\xa9\x9e\x78\x54\x44\xab\x41\x7a\x6e\xe3\x39\xc2\x2f\x3f\x91\x8d\x04\x5a\x93\x34\xef\x45\xff\x97\x87\x0b\x76\xa8\x72\x7c\x8c\x81\x27\x7b\xf1\x70\xc1\x8e\xe1\xb2\xde\x32\x4f\x6e\xab\x1b\x33\xc7\x6e\xc3\xda\xf3\xd9\xbd\x70\x59\x41\x86\x88\x66\xbd\x35\x2b\xd4\x28\x09\xe0\x8b\x3e\x1d\x24\x7d\xff\xce\x18\x90\x10\x24\x44\x3d\x11\x99\xde\xdb\xe1\xc4\xed\x38\x2a\xcc\xe8\xf6\xa8\xf8\x8c\xe0\xdd\x61\x84\x43\xb6\x58\xf4\x81\x7b\x70\x14\x91\xde\x1d\x8e\xc7\xf4\xee\x59\xbd\xce\xa3\x10\x58\xf1\xd5\xa3\x10\x58\x2d\xd1\x63\xf8\x39\x75\x41\x0f\x52\x60\x99\x8c\xc7\x9b\x2c\xb9\xbb\x9e\x20\x19\x6c\x2c\x02\x74\xd8\x18\x74\x9b\x63\xf7\xee\x0a\x88\x43\x22\x2c\xda\x7b\x95\x44\xf9\xc3\x1b\xc1\xb6\xbc\xad\xb4\xa6\x22\xcd\x7b\x0b\x88\x5f\x53\x0e\x88\x0f\xcd\xe5\xe6\xae\x0f\xed\x36\xe4\xed\x63\x1c\x3a\x79\xfb\x47\xf5\xb6\xfa\xc5\x47\x0f\x6e\x37\xd7\x6b\x48\x2f\x8f\xb3\x71\xe8\x9c\xef\xd7\x38\x74\x4a\xe2\x5e\x55\xdd\xe2\xd0\x37\x64\xd0\xf4\xf9\xc6\xbd\x05\xde\x7d\x0f\xa0\x6c\x7f\x06\xcf\x7e\x8d\x4b\xa7\xf3\xc8\x1b\x17\x5c\xf7\xe5\x74\xd4\x85\x17\x72\x4e\x80\x44\xde\x70\xde\x86\x58\x7e\x75\x88\x62\x01\x48\xed\xde\x94\x98\xbd\x46\x8e\x53\x94\xf7\x72\x1f\x55\xbd\x1b\x4c\xfa\x5e\x12\x38\x98\xa4\xef\x6d\xb2\x65\xcc\xf9\x5e\x12\xdb\x98\x9c\xef\xdf\x0b\xa0\x28\x83\x56\x1e\x43\xa6\xf7\x14\xb6\xff\xa4\x77\x2f\x72\x1b\xaf\xd6\x60\x5e\x42\xa6\x7a\xcf\x4a\xc2\x4c\xf5\x9e\xdd\xca\xaf\xd6\x60\x8a\x0c\xc9\xf5\x9e\xba\x56\x42\x2f\xd6\x60\x43\x59\xfd\xab\x87\xb6\x54\xc9\xab\xea\x5b\x42\xe4\xd5\x34\x4c\x91\xe7\x8b\xa8\x3a\x2b\x19\x25\x2b\x7c\x53\x98\x68\x52\xf8\x2c\x1e\x78\xc3\x34\x8c\x13\x40\x52\xf8\x26\xde\x37\x29\x7c\xf6\x0e\x7e\xff\x05\x8c\xa1\x94\x72\x6b\xa3\x26\xbc\xca\xad\x8d\x38\x41\x8a\xf8\x66\xe6\x24\x33\xc4\x17\x03\xd4\x98\x21\xbe\x18\xc1\xdd\x0c\xf1\xa5\x46\x37\x52\x55\xc5\xc6\x94\xa6\xb8\x98\xa4\x88\xd7\x9e\xf0\x2d\x81\x5e\x19\x72\xf1\x30\xd3\x70\x0d\x58\x28\x15\x8e\xe0\xe0\x34\xb2\xbf\x7f\x27\x80\xb9\xa8\x5e\x62\x1c\x9a\x57\xf9\xb3\x1e\x17\xaf\x6e\xe1\xde\xbb\xaf\xf2\x67\x35\x27\xaf\x96\x5d\x5e\x29\xe4\x89\xaf\x5a\x1a\x91\x26\xbe\xc5\x88\x95\xb2\x48\x7c\x92\x32\xfe\x9b\x58\x1b\xf6\x98\x73\x09\xbc\x5a\x79\xc9\xf9\xbd\x88\x5c\xe6\x68\xbe\x60\x5a\x5b\x7d\x46\x7b\x6b\x0c\xba\xb7\xc5\xce\xa0\xfb\x16\x3b\x83\x96\xc3\xa8\xdc\x91\x35\xd5\x33\x4e\x99\xb2\x14\x35\xdb\x24\x8d\x6f\x33\xd9\x98\x1c\xee\xb2\xb1\x58\x72\xab\xb8\xe4\x3c\x87\xef\x95\xbb\x04\x59\x8a\xd8\xc0\x9c\xf1\x53\xdf\x7d\x72\xc6\x37\x2f\x8e\x48\x19\x6f\x2e\xd4\xb7\xcb\x73\xb9\x63\x23\x5e\x72\xbc\x60\xf4\xe1\xb1\xd4\xfe\xcb\x78\x29\x2f\x42\x16\xc3\x77\xbf\x43\xd4\xcf\xbd\xf1\x2a\xa2\xae\xee\x51\x43\xd0\x39\xf9\x86\x93\x73\x57\x44\x38\x39\x8f\xa5\x32\x69\x6f\xe0\x57\xe2\xce\x1b\xf8\x1d\x92\xc0\x6e\x5e\x44\x24\x45\xda\xe2\x45\x44\x32\x8d\x96\xf1\x4e\xcc\x8b\x3c\x96\xa1\xec\x76\x27\x93\x2b\x56\x12\xfc\x95\x7e\x52\x98\xfc\x2e\x79\xeb\x28\xe5\xde\x07\xfa\xe5\xde\xcf\xfe\x30\x1d\x9b\xe7\x10\xc1\xc5\x3a\xa2\xbe\xdb\xcd\xc5\x5f\xb2\xa2\x7f\x2b\x63\x48\xba\xdf\x02\x99\x2c\x35\x5d\x1e\xdf\x50\x7d\xdb\xde\x19\x27\xc3\x97\x20\xc8\x81\x01\x31\x44\xcf\xa2\x70\x49\x22\x63\x81\xfc\x4b\xc2\xef\xce\x38\x75\xa5\x73\xdc\x08\x28\xa6\xb6\xa5\x2f\x34\xd1\xd4\xea\xf3\x85\x26\x9a\xda\x96\xbe\xd0\x44\x53\xc3\x35\x32\xf4\xa7\x19\xa8\x19\xca\xa7\x7a\x7f\xbf\x3a\x72\xab\x45\x7f\x8d\x80\xe6\x25\x64\x96\xfe\x75\x88\xb5\x6f\x75\x43\x10\x03\xef\x6d\xfe\x26\xd7\x07\xbe\x7d\x29\x38\x30\xe9\xfd\x52\x78\x41\xd2\xfb\xef\x85\x7e\x22\x87\xfd\x87\x1d\xf6\xac\xc7\x56\xfd\xa7\x33\xb6\x1f\x90\xcc\x56\xcc\x5c\xfd\x00\x72\xa8\x98\xba\xc6\x07\x24\x8f\x04\x8b\xf2\x03\xb2\xc4\x9a\x3f\x24\xe1\x87\xa9\x5b\xf2\x37\x03\xf1\x61\x48\x28\xfd\x57\xe2\x74\xbc\x3f\x38\x56\x20\xa7\x5f\x15\xc6\x30\xf0\x86\x89\x0f\x97\x1f\x7e\x70\x20\x83\xa8\xe8\x27\xe2\x83\xd1\xc6\x3e\xf2\xc8\x0f\xdb\x08\x15\xe9\xd7\x28\x94\xc6\x1c\xf5\xdf\xe0\xd4\x1e\x0c\x42\x78\xc4\x07\x1d\xe5\xf2\x3f\x48\x55\x03\xf4\x31\xfe\x35\xaa\x00\xcb\x20\x32\xf1\x81\x7d\x9a\x3f\xc4\x10\x1f\xb0\xe1\x1d\xe3\x5f\xb7\x8a\x6b\xfa\xf8\xaf\x17\xe4\x1a\x0d\x8b\x2c\x3f\xc0\x98\xf7\xfc\xeb\x56\x9e\xb7\x43\x2e\xc4\x07\x63\x64\xcf\x7f\xdd\xca\x52\x4e\xe4\x50\x7e\xe0\xae\x30\x48\x85\x1f\x40\x7e\x2d\xfd\xd6\xf6\x19\x3a\xf8\xe6\xff\x3e\x34\x1b\xfd\x07\xba\x8c\x4a\x63\x1b\xc5\x87\xc7\xd4\x75\xbf\x12\x1c\xa9\x8e\xa4\xc1\x0f\x97\x3e\x54\xeb\x07\x98\x54\x35\x2a\x05\x3f\xe8\xfc\x0f\x31\xec\x07\xa8\xc7\x5e\x7f\x53\x28\xfd\x52\xc7\xf8\x37\x16\x2f\xfe\x49\xb0\x38\x3f\x98\x57\x00\x82\x23\x3e\x00\xfa\xfc\xaf\x0d\xf6\x69\xfb\x6f\xd6\xbd\xc8\x7a\xfd\x6d\x5c\x31\x5d\xaf\xf9\x57\x65\x44\xa2\xa0\xdf\x07\x03\x4d\xd6\xdf\xe6\x17\x81\x4c\x38\xca\xf8\x80\x67\x32\xb6\x90\x7e\x40\x50\x38\xff\x9f\x6e\x39\x89\x9d\x3b\x3f\x3e\xc4\x76\xf8\xf5\x02\xc1\x6a\x6c\xa3\xf8\x70\xab\xc4\xb7\xdb\xb4\x31\x04\x48\x75\x8e\xff\x3e\x54\xa7\xf0\xf8\x7d\x78\x1d\x5c\xfe\xf7\xa1\xbb\x94\xe3\x57\xc2\x18\x1e\xc4\x67\x8f\x0f\xea\xe0\x8f\xdf\x07\x50\x77\x9d\x71\x3c\xbe\x0f\xd9\x0f\xed\xdf\x07\x03\x76\xcd\xd8\xb8\x69\xdf\x98\xa2\xcc\x7a\xfc\x7a\x01\xf4\x91\xff\xeb\x05\xda\xb8\x61\x7d\xc5\x87\xed\x32\x40\x76\xf8\x41\x38\x6a\xfd\x37\x38\xa5\xc0\x1d\x37\x6a\x3f\x80\xf3\x3a\x81\xa0\xfc\x60\x64\xd2\xf1\x9b\x0f\x25\x93\x06\xe2\xf5\x03\x88\x6d\x60\x11\x1f\x1f\x9a\x90\xe6\xdf\x07\x2d\xb4\x62\x9f\xa6\xbd\x23\xe6\x76\xfa\x4b\xa7\x15\xa5\x39\x4c\x47\xfb\x37\x59\x4a\x7e\x0c\x31\x1c\x1f\xa2\xc7\xf2\xfb\xc0\x15\x01\x82\x8e\x0f\x40\xdd\xfa\xbf\xc9\x7a\x8a\x8e\x1c\xe3\xf7\xa1\x99\x29\xf2\xbf\x12\x58\xd3\x4d\x68\x56\x3e\xbc\xca\xa5\xe6\x6f\xaf\x48\x89\x8e\xfc\xdb\x09\xde\xfb\xda\x1c\xee\x59\xf3\xd6\x2a\xa3\xe5\x58\xb4\xbc\x55\x6a\xd7\x19\xb7\x40\xde\xb7\x93\x95\x62\x15\xf3\x0e\xb5\x28\x41\x03\xfd\x00\x8d\xde\x09\x69\xed\x87\xa6\xe2\xf0\xbf\x12\x46\xaf\xed\xeb\x5f\xb7\xfb\x09\x1e\xf8\x5f\x89\x98\x31\x82\x15\xfb\x41\x13\xca\xfa\xeb\xf6\x41\x79\x64\x7a\x46\x3f\xcc\x88\x3e\xf4\x0f\x74\xa4\x02\xa9\xb5\xf5\xfb\x60\x00\x11\xe8\xcd\xf8\xb0\xfd\xf0\x0f\xd2\x17\xb1\xde\x3c\x7e\x70\xbc\xda\xea\xb5\xf2\xaf\x0d\x69\x86\x45\x02\x2a\x3f\x98\x58\x7e\xf4\x5f\x09\x71\x3c\x74\x99\x1f\x4c\x3a\x85\x5c\xd6\x0f\xb0\xff\x75\xd6\x5f\xb7\x1c\xfb\x89\xe4\xd7\x0f\x70\xd3\xbd\xfe\x26\xe8\x75\x4b\x21\x55\xf4\xc3\x1b\x55\xea\xef\x83\xa7\xbc\x5a\xa5\x6c\xcd\x8d\xc6\x8c\xd3\xf5\x7d\xd8\xde\x24\xf5\xdf\x87\xec\xae\xce\xbf\x12\x68\x78\x47\x8e\x85\xfa\x3e\x70\xb3\x1e\xe5\xbf\x12\xd1\xed\xaf\x17\xe3\x50\x1e\x01\xfa\xf7\x21\x8b\x7d\xcb\xef\x03\x5a\xa9\xfc\x5f\x2f\x50\xea\xb3\x06\x2e\x29\x81\x8f\x66\x8d\xcb\xb8\xec\xdb\xe0\xc0\xad\xfc\x7a\x81\x58\xd5\x40\x3f\x3e\xdc\x56\xf9\x35\x3a\x5d\xca\xd8\xeb\x65\xdf\x4a\xdb\x8e\xf4\x83\x03\x89\xd9\xec\xf9\x57\x42\x74\x5c\x83\x4a\xf8\x3e\x98\x0e\xe1\x3f\xd0\xd1\x49\xcc\xff\x07\xf4\x48\x03\xb0\xfe\xfb\xa0\xc0\xf2\xbf\xb1\x6c\xa3\x13\xce\x1f\xe8\xdb\xf4\xb8\xe9\xd7\x8b\x26\x76\x35\xff\x26\xf9\x89\x0f\xbf\x29\x7c\xcd\xd7\xd2\xfe\x41\xba\x8d\x42\x82\x3c\xc4\x0f\x59\x89\xe1\x6f\x82\xd4\xda\xd7\x3a\xd3\xef\x83\x41\xb6\x7e\x83\xdb\xdc\x79\x23\xad\xfe\xfb\x30\xdc\xa7\xbf\x2a\x30\x70\x63\x8e\xff\x4a\x78\x4c\xdb\xfc\x7d\xb8\xbd\xf2\x7f\x70\xc0\xb4\xf5\xd6\xfe\x6b\x03\x84\xdd\x7f\x83\x53\xc7\x3b\x6b\xfe\x37\xa7\xaa\x76\x7b\x2a\xbf\x5e\xa0\x34\x3a\x96\xb6\xf1\xe1\x76\x0a\x7f\x1f\x96\x46\x64\xed\x37\xda\xe5\x4d\xf2\xdb\xc9\x9b\xab\xb6\x23\x36\xf3\x83\x01\x8e\xd0\x78\xf8\x01\x0a\x78\x22\x98\xe3\x83\x54\xd3\x44\x58\x16\x1f\xa4\xcd\x7e\x93\xac\x2a\x60\x62\x81\x13\x1f\xb6\x47\x3d\xfd\x3e\x3c\xb6\x31\x7e\x1f\xe4\x28\x8e\x5f\x2f\x28\x00\xc6\x4a\xbf\x46\x41\x6c\x63\xfd\x76\xe1\x03\xfa\xac\x79\xfc\x57\xc5\x6c\x1b\xe5\xd7\x2d\xb3\x3e\xd0\x59\xf9\x01\x8d\xfa\xec\xf5\xd7\xed\xf0\x44\x95\x1f\x60\x10\x6b\x7d\xfe\x86\xff\x44\x1a\xef\xd4\xfe\xbe\xc0\xbe\xd2\x4a\x4c\x8e\xdf\xdc\x18\xa1\x7b\xfd\x8e\x3d\xca\x80\x6f\x18\xc7\xef\xc3\x29\xea\xf8\xef\x03\xe8\x07\x4f\x3b\x3f\x98\xa6\x1b\xff\x19\x3f\xb8\xac\x69\xfe\xa6\x62\xb9\x01\xe7\x6f\x5c\x5a\x2d\xff\x23\xdb\xcb\x56\x52\xdd\x8f\x1f\xa6\x50\xc2\x3c\x66\x9f\xbf\x0f\x62\xbd\xf1\x1b\xb9\x5c\x55\xff\xed\x6a\x85\xc2\x3d\xfd\x70\xc9\x13\x84\xca\xef\x94\x23\x15\x4d\xf3\xf8\x9d\x8c\x67\xbb\xcd\xeb\x0f\xd2\x57\x7c\x34\x7e\x55\x30\x8d\xea\x47\xfb\xef\xc3\xe9\x14\xfe\x7a\x79\x9d\x8f\xe3\x1f\xe8\x2f\xeb\xdc\xda\x6f\x92\x15\x5a\xb5\xf2\x6b\x43\x59\xd3\xfc\x47\x95\x7e\x1f\x1e\x27\xe8\x57\xa2\x48\xca\x8c\x5f\x09\x6f\xf8\xf9\x43\x1d\xaf\x31\x86\xcb\x0f\x83\x2b\x74\x19\xf9\x77\xdc\x14\x43\x8c\xf4\x43\xfa\xaf\x96\xeb\xb8\x99\xf8\x01\x25\xc8\xac\xbf\x3d\xfb\x9e\x96\xf8\x9d\x8c\xf7\xb2\x8d\x59\x7f\x1f\x9a\xab\xff\x5f\x09\xd1\xe0\xef\xd8\xbf\x97\x18\xfc\xbf\x12\x10\x5d\x75\xfc\x07\xfa\xe3\xf9\x6b\x3f\x38\xfe\x3f\xc6\xde\x24\x57\x93\x65\xb9\xd6\xeb\x9f\x51\xe4\x0c\x14\xe1\xb5\x03\x1b\xd9\x51\x5b\x9a\x43\x14\xee\xc2\x6b\x3c\xf2\xe2\x8a\x9c\xbf\x60\xeb\x33\xf7\x38\x24\x44\xe4\x6d\x24\x22\x7f\xdb\x11\x5e\x17\x56\x2e\x23\x71\x5f\xa9\xdf\x1b\xcc\xed\x3e\xf5\x26\x47\x69\xf1\xa3\x23\x2d\x66\x78\x9d\x03\xe9\xc5\x97\xb1\x49\xcd\x05\x21\x7b\x3b\xf6\x27\x3a\xb1\x6a\xcb\x9b\xc0\x66\x3a\xfc\x4c\x33\x02\x8c\x96\x9f\xbe\xc9\xef\xab\x2a\x3d\x80\x13\x7c\xbf\x94\x4d\xd0\xec\x47\x5f\x63\xe9\x7d\x1a\xe7\x51\xdc\x6f\x74\x2f\xb4\x6e\xc2\xcb\x21\xb7\xab\x05\xcb\x26\x97\xfd\x89\x33\x16\x2e\xd6\xa5\xf7\x79\x7c\x39\xec\x32\xc0\xec\x2f\x65\xf7\x05\x63\x43\xe8\xbb\x0c\x9d\x8b\x35\x94\xdd\x30\xac\xfa\xfd\xfc\x3e\x61\x3c\xca\x6e\xc7\x8b\x9b\x89\x2f\xcb\xf4\x3e\x03\x48\xd4\x8f\x20\x0b\x71\x5d\x02\x57\x7a\xdf\x40\x4b\xd3\x7a\xe3\x75\x3e\x22\x9d\x9b\xc0\x92\xaa\xab\x1d\xb8\x6d\xd5\x7a\xee\x32\x92\x8f\xe9\x47\xa0\x61\x75\x8d\x3a\x7e\x3a\xb5\xef\x21\xc4\xbb\xa6\x95\xb6\x26\x1b\x23\x7f\x2b\x75\x75\x6e\x90\x8d\xb9\x1c\x9b\x90\x60\xf8\xf6\x0a\x1a\x95\x98\xeb\x63\x95\x31\x9c\xe1\x0b\x79\x13\x54\x68\x3d\x56\xb5\x18\xaa\xf0\x58\x82\x40\xd2\xcb\x94\x76\xa1\x13\x5c\x97\xb8\x9a\x8e\xca\x3f\xcb\xae\xe2\x04\xf8\xee\xf6\xbd\x21\x6e\x76\xb1\x1e\x46\x40\x32\xde\xe3\x81\x9e\xb8\x2d\x0e\xd0\x08\x17\xba\x84\xfd\x46\x85\xe3\x49\x69\x13\xb0\xe9\xb5\x35\x0d\xe8\xee\xca\x52\x1d\xa4\x17\x35\x1b\x86\x4a\x27\x3c\x70\xd5\x6b\x05\xcd\x07\xf7\xe4\xe3\xd8\x84\xc2\x00\xed\x37\x06\x20\x9d\x61\xf7\x85\x34\xeb\xd5\x77\x65\x76\x21\x36\x67\x67\xc4\x8d\xa0\x43\x5a\xb6\x19\x08\x01\x66\x3e\xfe\x49\xc3\xc7\xdb\x11\xed\x99\x0f\x78\x7e\x71\x54\xce\x8b\xf9\x33\x02\x9b\xa9\xef\x26\x64\x4e\xac\x73\xbf\x81\xde\x29\xa4\x4d\x20\xd4\xa6\xbb\x58\x97\xdf\xe7\xf6\x8e\xd6\x45\x18\x9e\xd3\x64\xb7\x5a\xfe\x0c\x29\xb8\x70\x90\x5f\x5c\xd6\x5a\x4a\xab\x0c\x3c\xc8\x80\xb1\x82\x00\xdf\x2a\xe4\x22\x11\x60\x43\x72\xeb\xeb\x13\xbc\x05\x4a\x3e\xc3\x26\x74\x0a\x5d\x65\x8c\x08\x17\xe6\xd7\x75\x7e\x47\x71\xb4\x87\xfd\x86\xc4\xf7\x52\x9c\x7f\xce\xef\x10\xef\x5b\xca\x57\x86\x22\x77\x5b\x3a\x76\x19\xae\x9a\x09\xbb\x61\x0f\x7a\x96\xb0\xcb\x90\x7c\x95\x73\xd9\x84\x17\xc8\xb8\x76\x6c\x02\xe2\x7b\xdc\x65\x70\xe8\x7f\x23\x86\x81\x30\x9f\x69\x7f\x82\x68\x78\xec\xa9\x1c\x80\x3a\xe7\x63\x13\x74\xd5\xa6\xb6\x07\x99\xab\x36\x2d\x1d\x9a\x11\xb4\x87\x7b\xfd\x08\x68\x2e\x77\x19\x08\x7e\x65\xa9\x22\xf2\x3b\xc1\x4d\x68\x65\x35\xcc\x4d\x4a\xa9\xaf\x01\x62\x77\xe5\x92\xfb\x26\xa8\xda\xbe\x47\x7d\xea\x70\xc9\xeb\xb4\xc9\xef\xcc\xe4\xe7\xae\xab\xa5\x52\xe1\x9f\xad\xee\xc9\x9e\x20\xc9\x2e\x85\xa9\x11\xd0\xa0\x7e\x0d\xd3\xf5\x94\xd6\x71\x9c\x5f\x54\xff\x65\x29\x3c\x8c\x80\x0a\xf1\xeb\x1c\x32\x7c\x28\x65\x13\x50\x11\xed\xe5\x80\x1e\x3a\xad\x43\x3f\xbf\x68\x9c\xf3\x59\x77\x5f\x6e\x04\xf2\xf6\xbd\xc1\x0a\xda\x8b\x1f\xed\x73\x2e\x5f\x2d\xba\xaf\x52\xa8\x1f\x01\x17\xbe\xaf\x73\x8f\x9f\x8b\xbb\x73\x8f\x6f\x8f\xdd\x17\x1d\xd8\x39\xc7\x5d\x86\xac\xd4\x39\xf4\x8f\x70\x53\xed\x2e\xf4\xe5\x48\xdf\x87\x0b\x8c\x45\x3b\xe3\x26\x0c\x38\x8d\xbd\xb4\xd1\xb2\xb5\x75\xc8\x19\xa1\xc0\x7a\xec\x89\x9a\x1c\xfa\x7b\xcf\x4d\x31\x7c\xe9\xfc\x96\xc3\x74\x85\xcd\x6e\x98\x56\x61\x29\xe1\x23\x3c\x9c\xad\xd4\x52\x5c\xfe\xce\x02\x3f\x76\x02\x9b\xd0\x2f\x52\x23\xa0\x20\xf4\x6a\x8d\x70\xb1\x92\xfb\x26\xc0\x23\x3a\x97\x50\x5e\x42\x59\x80\x7c\x74\x02\x9c\x68\xfa\xde\x20\x0e\x28\xec\x76\xc8\x91\x3a\x2f\xad\xb4\x11\x32\x2e\xbb\x9b\xc0\xf1\x99\xeb\x6e\x98\xcc\x60\x29\x7c\xd5\x72\xc2\xb4\xef\x8d\xc2\x27\x7e\x93\x18\x01\xf7\xd8\x73\xf7\xb6\xa0\xd9\x3e\xf6\x27\x1c\x8e\xb5\xec\x4f\x2a\x0c\xdf\x57\x4b\xe3\x9e\xa8\xbb\xe9\x0d\xd6\xe3\xf8\x08\xe8\x36\xcf\x5d\xa8\xb4\xd2\xf5\xa8\xbb\x5a\x02\x1e\x73\xd8\xb5\x90\x02\xa7\x1f\xbb\x16\x39\xc7\xe4\x10\xbf\x37\x38\xa4\xfd\x0c\x2a\xef\x03\x7a\xed\xba\xf2\x8b\xb3\x62\x39\xd7\x4d\x90\x3d\x01\x48\x37\x27\x90\xb6\xf3\xf8\x17\x24\xb0\xe2\xca\xd3\xb2\xd4\x7f\x46\x68\xb4\x69\x4f\xbc\x76\x46\x92\x8d\x1c\x02\xc7\x60\x69\x8b\x40\xb4\x44\x2e\x65\x7d\x42\xc8\x43\x4a\x7b\x06\x5e\x09\xa3\xa5\xa4\xfd\xc9\x49\x16\xde\xbf\xbd\x01\xcc\x4e\xf8\x08\x0f\x19\xb5\xd6\x8a\x24\x28\x21\xd5\x54\x37\xa1\x72\x96\xec\x37\x38\x17\x97\x89\xa7\xbc\xb8\xe7\xb7\x9a\xf6\x1b\xf2\x76\x2f\xad\xef\x32\x0a\x97\x4f\xde\x6f\xc0\x85\x35\xbf\xae\x8b\xf3\x7a\x6d\x31\x7f\x46\x70\x45\xf0\xb9\x09\x8d\x89\x5f\x33\xc0\xcd\x9a\x5a\x5f\xb3\x88\x63\x67\x49\x7b\x16\x71\x73\x4c\x6d\x8f\xd8\x58\xbb\x6b\x7d\x32\xa2\xdb\x5a\x56\xa1\x83\xb4\x2a\x4b\xff\x6c\x84\x9b\x5c\xad\xab\x61\x43\xeb\xbe\xf5\xbe\x3e\xc1\xb8\x5e\xca\x9e\xb9\xf9\x38\x3a\x7a\xdc\x04\x9c\x69\xfc\xde\xac\xbe\xed\x5b\x72\x0d\x48\x7d\x9f\x8a\x48\xe6\xbc\x48\xf5\x25\xda\x8a\x2f\x40\x23\xb8\xa6\xbc\x6f\x02\x82\x4e\x5e\x6f\xa0\x11\x6a\xd5\xa7\xb2\xbe\x04\x2a\xf4\xa3\xf5\x4d\x18\x22\x9c\xab\x1d\xf8\x9e\xe7\xe6\xda\x9c\xfa\xe2\xee\xdc\x96\xc2\xc3\x08\x1c\x50\xc7\xae\x05\xe3\x5c\x3b\x76\x2d\xaf\x7b\x02\x6e\xc2\xe0\xf2\x71\x01\xb4\xbe\x2f\xc2\xf4\xd7\x17\x3c\x17\xeb\x79\x6e\x42\xa0\xa5\x69\xb5\x63\xc8\x2d\xa2\x14\x9f\x6c\x23\x00\x36\x5d\xf7\x1b\xa0\x91\xa7\xba\x6a\xc1\xd1\xad\x2c\xf5\x4e\x75\xc6\x9e\xdc\x46\x10\x5c\x67\x94\x77\xa1\x6e\x28\xc8\x6b\x80\xe6\x01\x5c\x45\xdc\x04\x57\xec\x97\x35\x62\xb2\xde\x9f\xa5\xc6\x55\xed\xd4\x79\xd4\x96\x0e\xad\xbe\x93\xd3\xa6\xc7\x55\xcb\xf4\x7c\x49\xce\x68\x35\x3f\x8e\x5b\x72\x5e\xc4\x08\x0c\x90\xdf\x24\xed\x7d\x64\xae\x6a\x4b\xe5\xde\xde\xa7\xbb\xd1\x63\x7f\xe2\x82\x9f\x1f\xe9\xcd\xad\x31\x65\x71\xa2\xed\x7d\x81\x7e\x58\x86\xa4\xf6\x12\x5c\xd2\x96\xa2\xa4\xbd\x04\x5f\x94\xb2\x6b\x79\x2b\xac\x69\xdd\x6f\x5c\xae\x7e\xd8\x04\x2d\xed\xbe\xf4\x22\xcd\xcd\x33\xc0\xfd\x89\x30\x0e\x04\x50\xbf\x27\x9a\x0b\x5c\x2d\x95\xd5\xd2\x89\xdd\x39\xf4\xb0\x09\xe4\x6f\xcb\x6b\x80\x26\xf8\x31\x25\xee\x4f\x5e\xcf\x33\x7e\x6c\x02\x8c\x45\x59\xbd\xe5\xba\x6e\xc9\xef\x9a\xbe\x94\xd0\xc5\x19\x8b\xfe\x3e\xce\x46\xf9\x34\xf4\xf7\x21\xbc\x7f\xad\xf5\xee\x46\xb1\xd2\x7d\x37\xf4\xf7\xb9\x31\x99\xfb\x8e\x32\xc2\x83\xa9\x7d\x97\xc1\x78\x9c\x69\x7f\xb2\x8c\xf1\x69\x13\xfc\x93\x5d\x0b\x81\xcf\x4b\xb3\xdd\xdf\x17\xfe\x7f\xa9\x32\x8d\x70\x13\xee\xb4\xca\x20\xa0\xab\x2c\xbe\xaa\x2f\x0b\x4c\xd9\xb5\xbc\xd2\xf1\xe4\xa5\xfc\xed\xef\x8b\xa7\x65\x0f\xfb\x8d\xdb\x8d\xfb\xab\x96\x41\x76\x8e\x1e\xff\xe4\x7c\xe6\x6f\xb3\x65\x77\x8d\x23\xf0\xf9\x1e\xce\x51\xb0\x96\xc7\x35\x14\xa8\x10\xdb\xe2\x07\xfa\x52\x10\xb6\xf6\x11\x60\xfd\xf3\xfe\x84\x68\xef\xb2\x67\x11\x07\xbf\x7c\xe6\x8f\x80\x7a\x75\x0f\x27\x6e\x6e\xad\x1f\x7d\x13\x60\x53\x63\xda\x84\x9b\x2b\xae\x6e\x02\x56\xea\x63\xbf\xe1\xc7\x71\x59\xe3\x8b\x60\x5d\xc3\xae\x76\x36\xe2\xf6\xce\xd5\x5b\x77\x64\x39\xc2\xae\x16\x6d\x4e\xdd\x2b\x61\xa9\xcc\xce\xb5\x78\xa6\xac\x53\x65\xdd\x57\xd7\xfb\x48\x27\x50\x97\x4c\x72\xbd\x8a\x7f\x3d\x4b\xf5\xad\x72\xbd\x04\xc1\xa6\xa5\x96\xbd\x7c\x11\xb7\xe4\xb7\xc0\xf5\x3e\xa8\xee\x96\xfd\xea\xf2\x15\x59\x6a\xdd\x85\x4e\x32\x33\xfa\x78\x5c\xef\xeb\xd0\x6a\xae\x24\xb8\x5e\xe2\xf6\x6a\x2b\xab\x61\xaf\x2b\xd5\xea\xaa\x96\xf8\xb1\xb6\x0e\x5b\x23\x78\x68\xeb\xaa\x85\xfb\xbb\xd4\xef\x8d\x8e\x2c\xb0\xdb\x31\x14\xa9\x5b\x43\x5e\x85\x0e\x14\x51\x61\xf7\x76\x1d\xc7\x75\xb5\x03\xe1\xb1\x2e\x33\xd1\xe5\xb2\x62\x4b\x75\x11\xa6\x6b\xec\xeb\x2a\x03\xef\xc2\xb4\x34\x05\xd7\x3b\xa3\xf7\xa5\x2c\x82\xec\x57\xe5\x88\xab\x61\x1c\xe9\x69\x31\xd4\xd7\x8b\x0f\x4d\x0d\x67\xdf\x04\xa2\xdc\x7c\xe6\xee\x97\x30\xf8\xbc\x84\x7a\x23\x88\x49\x8a\xde\xb9\xfb\x7d\xe4\xca\x57\x4f\xaf\xf6\x7e\x89\xcd\x6e\xc9\x2f\xc1\xfb\x7d\xc8\xa1\xb2\x76\xf9\xbd\x34\x16\x4b\x7c\xb8\x9d\xe5\x2e\x8b\x7b\xbb\xb7\x92\xd1\x6f\xc5\xfb\x7d\xba\xef\xe1\xbc\x08\x3a\xb0\x53\xcf\xbb\x50\xac\x97\xa7\x1f\xb6\xf7\xfb\x38\x34\xd8\x57\xc6\xed\x73\xdb\x17\xe1\x71\xf0\xb0\xdd\xb9\x07\xc5\x7e\xd9\x4d\x47\xa7\xd8\xf2\x22\x10\xaf\x9b\x96\x36\xd8\x08\xb4\xb4\xad\x32\xe0\x44\x5b\x6a\xab\x1d\x30\x8d\x35\x9c\xc7\x26\x60\x4f\xc8\xfb\x93\x42\xa1\x79\x7f\x82\x22\x3b\xc4\xd5\xf4\xb7\xb3\x60\xda\xea\x2d\x51\x69\xad\xb4\x5d\xe8\x85\x6e\x25\xc6\x4d\x48\x18\x3a\x76\xa1\xde\xfd\xb6\xdf\x18\x28\xe5\xfb\xea\x0b\x66\xa2\x52\x77\x5f\x46\xc4\x52\xdf\x57\x2d\x23\x79\xe7\xd6\x34\x60\x5f\x49\x3d\xed\x32\x74\xd7\xd4\xb0\xe7\x76\xdc\xbe\x0a\x57\xd3\xe5\xfc\x7c\xb6\x63\xf7\x05\xa1\xbe\xa5\xfd\xc9\x7c\x58\x41\x6d\x8d\xfa\x1c\x48\xe8\xde\xb9\xe7\x05\x37\xa1\x25\xe7\x23\x9e\x17\xdc\x81\x7a\xf8\x2d\x60\x04\xee\x3c\x5f\xa7\xcf\x4b\xfc\x7c\x4b\xce\x03\x3c\xef\x53\xc1\x85\xf2\xa5\xfd\x2c\x5e\x64\x1d\x28\x8f\x3b\x93\xa4\x9e\xf7\x27\x8e\xbd\xee\xbd\x7d\xfc\x9a\x4c\xd9\x65\x88\xe7\x7d\x24\xe5\xb7\x7a\xac\x37\x5e\xd4\xa1\xbd\xae\x96\xba\xbe\xb8\xe7\xf5\x09\xb1\x9c\x29\x7c\x6f\xa0\x59\xeb\x6d\xf5\x16\x57\x91\xd4\xcb\xbf\xa0\x42\x7c\xdc\x60\x58\x5a\x3c\x37\xa1\xa3\xbc\xd9\x04\xd9\x27\xfa\xd1\x57\xbf\x9c\x6f\x5d\x6b\xe5\x71\x73\x60\xea\x6d\x13\xc4\xb9\xe4\xe8\x97\xaa\x11\xc8\xa6\x1f\x56\x23\x87\x0c\x38\xa5\x85\xbe\x09\x01\x29\x79\x7f\x12\x5d\xd0\x39\x36\x21\x51\xcb\x26\x78\xe2\x81\xd0\x36\x61\xe0\x1a\xb1\x9a\x3e\x74\x52\xa4\xc5\x20\x3c\x2f\xe1\x39\x6d\x49\x3e\xcf\x62\x97\x7b\xf9\xde\xb8\x90\x48\xf7\x1b\xae\x33\x2a\xbb\x73\xc4\x74\x9c\x7b\xf1\x10\xd7\x91\x7a\xd9\x0d\x23\x55\x4a\xef\xbb\xb7\xf8\xd5\xf4\xb2\x3f\x01\x96\xb6\xf7\x45\xc0\x4b\x3e\x2f\x49\xfb\x59\xfe\x5f\x4b\x7c\x7f\xfc\x76\x6e\xa9\xaf\x5a\xfc\x66\x5d\xda\xf6\xc7\x37\x42\x5e\x7e\x30\xcf\x3b\x5f\x6e\x81\xbe\xc6\x63\xea\xe2\x28\xcb\x80\xf3\xbc\xd3\x2d\x18\x7b\xf1\xb8\x8a\xa8\xc6\x5d\xcb\xc4\xa9\x73\xaf\x7b\x57\x00\x2d\x1e\xeb\x71\x2d\x77\x5e\x8e\x8b\xef\xfb\x1c\xe4\x26\xf6\xf3\xf9\x75\x35\x75\x0e\xce\x8b\xbc\x2f\xe0\x1a\xa9\x7b\x19\xaf\x1b\xa3\xca\x32\x7d\xbf\x2f\x88\x13\xa9\xbb\xc2\xe3\x7d\x05\x0d\x71\x12\x7c\x24\x02\xf8\x03\xc0\x5d\x42\xc0\x73\x68\xdd\x9b\xef\xab\x48\xf5\xb3\x2f\x6b\xb9\x11\x50\x75\xd7\x5d\x86\xdf\xdf\x7d\x35\x9d\x93\x33\xad\x9b\xd5\x08\xa8\x99\x76\x3b\xb0\xc9\xe7\xc5\x94\x9b\x70\x8d\x33\x69\xda\x6f\x38\x3f\x53\xf6\x1b\x0f\x4a\xa4\xb6\xdb\x01\xfa\xd1\xd9\x77\x2d\x93\x03\xca\x17\xcc\xfb\x8e\xc3\xbd\xee\x36\x81\xec\xf5\x6b\x8b\xbd\xee\x38\xd5\xd2\x2e\xc3\x4d\x3c\x6d\x77\x7f\xa0\xee\x5a\xca\x85\xf7\x1d\xd9\xdd\xf0\xda\x26\x4c\x1c\xb8\xd6\x78\x0c\xd7\x4c\xed\xbe\x10\x24\xd6\xcf\xb8\xfa\x82\xf3\x63\x3f\x7c\x15\xda\xe1\xe0\xc6\x81\x5d\xc6\x85\x90\x92\x56\x6f\x5d\xc3\x5e\xbe\x5a\xa4\xa8\xcc\x25\xed\x42\x49\xcd\x53\xf7\xdc\x62\x15\x2a\x8b\x15\x7b\x5f\xe2\x31\xda\x72\x14\x7a\xdf\x09\x60\xcf\x52\xfe\xbe\x6e\x44\x2e\xeb\xd8\x32\xc2\xc4\x9e\xb0\xfa\x02\xc7\x93\x6a\x5e\x4d\x9f\x24\x08\x09\x61\x13\xe0\x66\xcf\x73\x13\x2e\xf4\x44\xc7\x2e\x94\x13\xbc\xf7\xdd\x52\x31\x05\xa5\xa5\xfd\x89\x98\xb5\x7c\x7c\x65\xa0\x10\x2b\x69\xb7\xf4\x45\x3b\xee\x83\x3c\x5c\x73\x99\x96\xe6\x64\xbc\xaf\x73\x1a\x7e\x06\x8d\x97\x30\xb4\xb6\x94\xf2\xe3\x1d\xa8\x74\x9a\x8f\xc7\x58\x43\xf8\x37\x02\x82\xdf\x19\x57\xa1\xc4\xa7\xf4\xc3\x6f\xc5\xf1\x7a\x54\xc0\x32\x68\x4d\xd7\x5c\xb6\xe5\xc4\x31\xdf\x47\x8b\xbf\x2c\x75\xcc\x5c\xe2\xf6\xba\x37\xe7\x62\xb4\x16\xe7\x35\x97\xb3\xd1\xd1\xf6\x27\xba\x04\xc9\x0d\x0f\x01\xdd\x77\x8d\xfb\x13\x6e\xa0\xe5\x9d\x36\x9d\x8d\x2a\xfd\xfc\x13\x52\x25\x6f\x4f\x77\x7c\xd8\x6d\x9a\xa8\x44\xc2\xee\x17\xb1\x49\xc5\x47\x6f\x2e\xc7\xa3\xda\xd7\x27\x40\x6c\xe4\xa5\x6e\x9e\xae\x13\xc8\xd9\xb7\xdb\x7c\x1d\x35\x21\xe4\xd5\xea\x97\x0c\xb2\x21\xed\x37\x50\x11\x55\x5f\x2b\xd3\x39\xa8\x9c\xf7\x70\xbe\xb7\x9b\xcd\xf2\x26\xe8\x70\x89\xe5\xfb\xe4\xc2\x0a\x52\x37\x81\xf1\x75\x16\xc2\x08\x0f\x63\xf3\x7d\xf2\x42\x58\xe3\x4b\xac\x75\x5a\x5a\xdd\xf9\x12\x93\x9c\x42\x59\x04\x42\x84\xdb\x5a\xc4\xd3\x9d\x75\x5a\xea\xab\x73\x23\x60\xaf\xd9\x2d\x45\x41\x98\xcb\x9e\xa3\x11\xc8\xa6\xf5\xb7\x37\x48\xe0\x9c\x56\x6f\x71\xe4\x2c\x8b\xe5\x9e\x7e\xe5\x83\x47\xe9\x84\xce\x61\xbb\xcb\x80\x8f\x2f\x69\xb7\xa3\xf9\x1b\xbb\x5a\x8c\x95\xdf\xcc\xc1\x40\xa6\xd0\x56\xf7\x07\x69\x6d\xd2\xd7\xb9\x1b\x43\xd2\xb1\x86\x10\x3f\x98\x74\x86\xfd\xc9\x64\x45\x1e\xbb\x50\xdc\x5e\x8e\x3d\xd9\xb8\xbd\xe4\xf2\xd5\xc2\x25\xb8\xbc\xbb\xe6\xb6\xc5\xfd\x8d\xc0\x44\x1d\x6b\x7d\x10\xeb\x94\x8f\x3d\x0d\xf8\x6f\xb7\x63\x0f\x90\xe2\x87\xce\xfc\xf5\x56\xe1\x35\x67\x3f\xf6\x0e\xc5\x3b\x1b\xd0\x1b\x08\xee\x9d\xdd\xf7\x1b\xcd\xb5\x6c\x79\x13\x3c\x67\xf6\xf7\x09\x0c\x75\x5f\x2b\xc8\xf9\x88\x5e\xe3\x26\x54\xc4\xed\xdd\x30\x99\x44\xc9\x69\xe2\x84\x8c\xe3\xf0\x1a\x20\x5c\x56\x4a\x8e\xbb\xb7\x03\xb5\x5b\xff\x08\xbe\x82\xbe\x4f\xc4\x36\xc4\xb8\x0b\x1d\x1c\xd8\x5f\xd3\x27\x2b\x08\x0e\x3b\x1f\xef\x83\x1e\x3f\x72\x2d\x18\x01\xe8\xd4\x5e\x3f\x82\x73\x6f\xfb\x13\x52\x93\x54\xa4\x05\x11\x1e\x86\xb0\x6f\x02\x1b\x08\x0e\xdb\x08\xa4\xe4\x74\xd1\xd0\x08\x04\x68\x77\x16\xae\x08\x4c\x76\xfe\xde\x60\xbf\x7c\xed\x68\x38\xb7\xa5\x4d\x70\x1d\x5a\xd9\xd5\x3e\x2c\x6d\x14\x36\x46\x80\x25\xac\x79\x7f\xa2\x21\x24\x2b\xb6\x08\x60\x44\x65\x77\xc3\x13\xc1\x6f\xb4\xb8\x08\x58\xc8\x33\x0b\xc6\x08\x9e\x56\xbd\xae\xa6\xbf\x9e\x5b\x9d\x03\x5b\x04\x66\xbf\xec\x42\x13\x3a\xd6\xbc\x1a\xf6\x66\xba\x5f\x77\xa1\x19\x31\x66\xcf\x0b\x58\x3b\xf5\xd8\xdd\x7f\x7d\xe1\xf6\x5d\xa8\x7b\xda\x7d\x7d\x41\xa5\xea\xfc\x9d\x11\x24\x91\xb6\xb2\x07\x08\x89\xb4\xf8\x6d\x24\x42\xc6\x65\x65\x37\xec\x82\x15\x6b\xbb\x0c\x37\xbc\xb6\xdd\x52\x67\xc5\xd2\x2e\x43\x0e\xc7\xf5\x6f\x63\x3a\xdd\x76\xbd\x3e\x41\xfd\x97\x63\x5e\x9f\x60\xe8\x68\xe7\xb1\x3e\x41\xec\xc8\x65\x77\x0e\xbe\x2a\x97\xdd\x0e\xbc\x10\xf3\x91\xfe\x7c\x81\xe9\x6d\xfc\x2d\xf6\x7a\x43\x4a\x2e\x65\x8f\x0d\x70\x01\x39\xec\xf1\x55\x20\xbe\xd5\xf8\x11\xe0\x5b\xbf\x37\x80\x91\x29\x7b\x9e\x39\x06\x5b\xff\x3e\xc1\x1a\xe3\xbc\x8d\x08\x88\x42\x6d\xf7\x9c\x88\x82\xb2\xf7\x0e\x4c\x46\xcb\xdf\x27\x6e\x0c\x3e\xd7\xe8\xb9\x63\x79\xde\x83\x05\xd7\x91\x8f\xb4\xca\x50\xf8\xa7\xbd\xb1\xd6\x2c\xf1\x94\xe9\xeb\x0b\x81\x84\xd9\x9d\x27\x44\x40\x59\xd1\xf3\x26\x80\x81\x92\xda\x26\xb0\x44\xfb\x26\x34\xec\x68\x7b\xab\xa0\x97\x6c\xee\xde\x24\x02\xec\x72\xdc\x6f\xb8\x72\xfd\xab\x45\x03\x94\xdd\xff\xc4\x08\x80\x76\xd6\xdd\x7d\x3c\xf7\x72\x0c\xbb\x2f\xc4\x2c\x9d\x67\xdf\x04\xec\xe9\xde\xdb\xf3\x7d\x0e\xef\x7e\x5e\x84\xc8\xaa\xe6\xb0\x15\x01\x86\x1a\x89\xd4\x08\x19\xe7\xf4\xaf\x0c\x98\x13\xb7\x80\x1a\x01\xc7\x87\xea\xa3\xbe\x02\x5d\x48\x17\xeb\x04\x58\x0f\x6e\x45\x23\xc0\x7a\xb8\x19\x40\x04\xdc\x09\x7c\x55\x9f\xef\x23\xa9\x25\x97\xbe\xab\xc5\x1f\xce\xa5\x16\x11\x7c\x4c\x57\x19\x58\x62\x9b\xbb\xae\x19\xc1\x43\xe9\xd2\xfa\x04\xf4\xaa\xe4\xfe\x16\x46\x70\xbf\x3c\xf8\xe7\x7c\xbe\xe0\x7d\x94\xa3\xae\x96\x8e\xc0\x0a\xda\x23\x36\x08\xeb\xe9\xdf\x27\xd5\xc7\x74\x8d\x98\x40\x27\xce\x7c\x1e\xbb\x0c\x40\x73\xdc\x63\x2e\x9f\x2f\xd1\xe6\xad\xec\x51\xc7\xd6\x92\x8f\x1c\x37\x61\x52\xe8\x2a\x83\x7b\x33\x1f\x79\x0d\xf2\x1c\xa0\xa2\x95\xb2\x09\x3a\x06\xa3\x9f\x9c\xe1\x05\xc9\xb4\xad\xed\x11\x5e\xc0\x44\xeb\x11\x37\x01\xe5\xcd\xc9\xdd\x6b\x04\xad\xb1\x5a\xf2\x26\x4c\x3c\x54\x7c\x15\x1a\x81\x9b\xc4\x47\xdd\x08\x04\xde\x22\x5f\x89\xa0\xd3\xe1\xe8\xbb\x1d\x04\x51\xb8\x5a\x56\x04\xd2\x7b\x84\x45\x00\xa4\xb0\xb8\x23\xa7\x08\x98\xcc\x91\x59\x45\x70\xc6\x73\x15\xea\xf1\x30\x39\x85\x4d\x60\xd1\x95\x5d\x28\xb7\x51\xfd\x6a\x41\x24\x0b\x7d\xb5\xf4\x75\x1d\xcf\x19\x37\x21\xb1\x60\x76\x3b\x22\x5a\xb6\xaf\x61\xe8\x12\xda\x47\xe0\x46\x73\xd7\x08\x11\xb0\x49\xd4\xdd\xb0\x44\x94\x89\xef\x7d\x23\xe0\x5e\x91\xf7\x27\x1e\xbb\x7c\xee\x86\x21\x0a\xd5\x63\x13\x2a\x1a\xc3\xef\x0d\xe2\x04\xdd\x78\x2b\x82\x8f\xc7\xae\x05\xaf\x0e\xd7\xd3\x8a\xc0\x65\x1c\x77\x6f\xe1\xcd\x3c\xf6\x52\x84\x06\xf7\x76\x6c\x82\xab\xa7\xf6\x10\xc2\x00\xbb\x51\x4c\x04\x24\x95\xf0\x7d\xe2\xc1\x0b\xdf\x1b\x98\x42\xd2\xee\x6d\x43\x61\xd3\xbe\x6a\xb1\xaf\xe4\x5d\x46\xc7\x71\x2a\xfe\x39\x0e\xcc\xde\xbe\x5c\x11\xb5\x3f\x97\xb8\x9a\x3c\xc4\x40\x04\x0c\xb9\x71\x0f\xd6\x45\xe8\x58\xdb\x6d\xba\xfc\xc0\xde\x6d\x42\x8d\x90\xeb\xee\xc6\xed\x0e\x72\xbb\x8c\x25\x4e\xed\xb1\xb9\x71\xa2\xfa\xe6\x08\x71\xaa\xee\xdd\xe5\xe2\xd4\xba\x15\xc3\x0b\x04\x58\x3e\xfa\x6e\xe9\x8b\xe5\xbf\xee\xe5\xf5\xba\x5b\xd1\xee\x9c\x94\x6a\x39\xed\x1d\xea\x51\x74\x1e\xcb\x69\x04\x24\xb0\x9e\x77\xc3\xd0\x5d\xe5\xaf\x0c\x1c\xba\xcf\x6f\x11\xc3\x1d\xc7\xb8\x3f\x99\x18\xa3\xe2\x6e\x98\x84\x94\x1c\xf6\x59\xe2\x62\x9d\xeb\xf4\x45\x20\x50\xb5\x7e\x9f\xe0\xa2\xb1\x97\x97\x03\x38\xd5\xbe\x5a\x0a\x3a\x53\x73\xf3\xb9\x08\xa8\x00\xf6\x6a\xf2\x08\xbe\xbc\x8f\x9f\x11\x50\xdc\xc6\xb6\x09\xb0\x54\x47\xde\x04\x94\x37\xc7\xf7\x09\x7b\x67\xef\x0c\xd4\xc3\xe4\x10\x73\x42\xc1\x5a\xf7\x11\x98\xec\xe3\xfb\x04\x35\xf5\x9e\xec\x11\x3c\x1b\x61\xdd\x04\xa4\xa7\xb6\xdb\x11\x09\xbb\xdc\x43\x88\x39\x22\xc7\xb0\x1b\x86\xff\x57\xfd\xca\x40\x02\x3b\xca\xee\x3e\x81\xdd\x47\xff\x3e\xc1\xc9\x6e\xaf\x53\x02\xf6\xb2\xeb\x8b\x45\x00\x27\xe7\x1b\x53\x32\xf7\x9d\x7b\xdb\xfb\x05\x16\xbe\xde\x16\x8e\x8e\xbd\x3d\x86\xf4\x92\x39\x7e\x85\xca\xbe\x99\xdd\xe2\x2e\x02\x32\xeb\x3e\x07\x60\x1a\x73\xfc\xdb\x1b\x1d\xa6\xfc\x23\xe8\xe8\x70\xa1\xcd\x08\x44\xaa\x1c\x75\xf7\x16\xdb\x64\xf9\x46\xac\xbb\x37\xf2\xae\xa5\x7b\xd3\xbf\x37\xf0\x63\xdd\x7b\x0e\x77\x93\x7c\xec\x4b\xd0\x39\xd1\xfe\x15\x7a\xe1\x61\x5a\x3e\x42\xe5\x48\xdf\xed\x90\x13\x66\xf1\x68\x06\x11\x98\xb9\x7d\x0c\x62\x26\xca\xf9\x9b\x06\xd7\x9c\xec\x1d\x25\xe4\xa3\xb3\x84\x6f\x39\xa0\xba\x6b\x7b\x13\xe2\xe8\xdb\xf2\xbe\x7c\x40\x28\xca\xee\x7e\x23\x02\x9a\xcb\x6f\x69\xe3\xed\x96\xbf\x51\x47\x95\x79\x94\x4d\x00\x1f\xc8\x7d\x72\x45\x60\x9d\xee\xee\xe3\x4b\xd3\x8f\x7d\x5c\xe0\xfa\xda\xca\x5e\x63\xe8\xe0\x4b\x76\x56\x2c\xbe\x60\xad\x67\xb7\x92\x19\x01\xe7\x9a\xe2\x3b\x3b\x2e\x67\x3f\xf7\x70\x33\x82\x98\xf9\x76\xf8\x56\x8f\xee\x47\x97\x17\x5f\x15\x5f\xe1\x0a\xdb\x11\x7c\x2c\xc2\x09\x73\xe2\xed\x88\x7e\xc0\xd6\xd3\x85\x8a\xe8\x96\xa0\x7a\xb6\x8f\xe0\xc1\x3e\xcd\x09\x23\xba\x3d\x6f\x95\xc1\xf6\xa8\xee\x0e\x61\x04\x2d\x87\x1a\xcb\xb1\x09\x78\xec\x1c\x8b\xe0\xb6\xeb\x25\x08\xc7\x57\x20\x25\xf6\x49\x5a\x84\xc6\x91\xd3\xf7\x27\x0d\x4e\xf4\x5c\xdd\x07\x42\x43\x60\x3e\x7f\xbc\xc0\xec\x6d\x8e\x8e\xb0\x06\xdc\x91\x2c\x4a\x5f\x83\x35\x6f\x42\xa5\xf6\x60\xb9\xeb\xda\xba\x49\x92\x47\x14\xb7\xec\x0b\x30\xb9\x2f\x69\x0d\x5e\xe8\x0e\x74\x39\xbd\x91\xe9\x7d\xe5\x2a\x52\xcf\xb2\x09\x09\xfd\x97\x8f\x4d\x72\x63\x5f\x3d\x77\xa1\xa8\x21\xeb\xda\x4c\xc9\x25\xdc\xe6\x81\x50\x39\xf9\xe5\x53\xdb\x57\xa8\xdb\x7c\xc2\x2e\x63\x38\x77\x1c\x9d\x30\xa4\x4b\xaf\xa7\x9f\x8b\xc9\xcf\xf8\xbc\x44\xde\xe4\xb3\x58\xdc\x2a\x64\x84\x8e\xa2\xe1\x5c\xdd\x77\x74\xaf\x70\xac\xde\x12\x5c\x56\xdd\xdd\x2b\xa7\x15\xa5\xed\x00\x0f\x46\x40\xeb\x58\xfe\x46\xe0\xe2\xf0\x23\x2c\xbf\x8f\xab\x33\xfc\x70\xc9\xef\xc3\xc5\xd1\xfd\x76\x36\x02\x1a\x10\xe7\x6c\xf3\xfb\x60\x04\x8a\x7d\x97\x81\xf7\xdf\xe2\x8f\xf2\xfb\x14\xb4\x17\x7e\x40\x19\x01\xa9\x36\xec\x32\x3a\x9a\xf2\xba\xde\x20\xea\xb4\xd5\x74\x6e\x82\x6e\x45\x77\x05\x10\x01\x69\x21\xac\x6a\x51\x20\xa7\xfe\x95\x81\xd2\xc4\x51\x23\x44\xd0\x95\xef\xfe\x5f\x22\x78\x3b\xe2\x22\xc0\x95\x66\x3f\x06\x8d\x90\xe9\xdc\xf7\x86\x77\x6e\x97\xe1\x16\x8c\xaf\x1d\x38\x0e\x2f\x0d\x59\x76\x5e\x2f\xb9\xb6\xcf\x08\xb7\x3b\x0c\xae\x31\x05\x26\x20\xe7\xbc\xab\x7d\x51\x42\xb7\x35\x84\xc0\x04\xd4\xd3\xef\xab\xfc\x82\x40\x59\xdd\x23\xc3\x08\x0c\x90\x1b\x3d\x8c\xc0\xad\x58\xeb\x2a\x14\x3c\xc4\xbc\x2e\xc1\xec\x57\x4b\xeb\xbb\x2f\x44\x13\xe5\x33\xae\x6a\xf1\x71\xca\xee\xf3\x9c\xb3\x4b\x71\x29\xef\xbe\x10\x6b\x58\xea\x9e\x7d\x77\xa1\xf3\x28\x1e\x23\xb8\x3d\x3d\xad\xa6\x4f\xa0\xed\xbf\xf5\xe1\xbe\xf9\xee\x0a\x9c\x97\x5f\x7d\x8e\x69\x17\x8a\x35\xf7\x0c\xbb\x8c\x81\x98\xeb\x3a\xc5\xe2\x2a\xc4\x7a\xa6\x8f\x80\x5e\xc4\x3f\x29\xdb\xbe\xe9\x0d\x2b\x6e\x05\xc9\xb1\x6d\xc2\xeb\x96\xb6\xb8\x08\x28\x08\x4f\xdf\x1e\xc5\x9d\x05\x5a\xc6\xfe\x6d\x04\x70\x69\x3c\x4a\xd4\x08\x19\x31\xd7\x39\xaf\xb2\xd8\x6c\xd7\x5b\x1b\xe1\x41\xec\xcf\xab\xa5\x43\x2e\x74\xad\xf7\xd5\x52\x9f\x97\xd2\xd3\x26\x20\x60\x7c\x9f\x5c\xbe\x70\x3f\x02\xf6\xcd\xbc\xda\x31\x3c\xdd\x89\xef\x97\xe2\x4e\x1c\xd5\x63\x8c\x8c\xd0\xd8\xea\x3e\xd9\x65\x85\x59\x9c\xf5\x23\x24\xce\x8f\x55\x28\xf1\x57\xd9\xa3\xc5\x8d\x40\x7c\x5e\x3c\xe2\x26\xb8\xb7\x0d\x65\xd4\xf7\x39\x18\x42\x9f\x17\x23\xb0\x81\x9c\xef\xae\x0e\xfe\x53\xc2\xb9\x09\xc9\xad\x97\x61\x11\x70\xa0\x3c\x7c\x25\xd7\x85\x19\x12\xc3\xae\xe5\x62\x08\xc3\x7e\x83\x90\xa2\xc5\x78\x56\x77\x46\x4b\xab\x73\xd5\x4d\x54\xc9\x31\x0b\x72\x7d\x41\xc7\x4f\xd6\xb9\x3f\x5e\x60\xd5\x4d\xdf\xcd\x4d\xce\x46\x48\x9e\x8c\x71\xd5\x88\x1d\xbb\xbb\x07\xaf\x11\x6e\x08\xbb\x91\x08\x07\x39\x1c\x9b\x90\x08\x14\xdf\x1d\x75\xe7\x89\xe2\xc2\xb9\x11\xf0\xd9\x70\x29\xae\xfa\xa6\x4e\x4b\x7a\xaa\xce\xeb\xe5\xb3\xae\x76\xc0\x85\xe5\xc5\x53\xd4\x15\x95\x5c\x77\xc3\x3c\x2a\xb9\xf8\xf9\x5c\x5d\x85\x58\x62\x5a\xed\x10\xb6\xda\x99\x1c\x1b\xc6\x08\xec\xbf\xa3\x84\x4d\x08\x30\xf6\x8c\x6f\xf3\x69\xed\x6e\xf4\x10\xc1\xe3\x5a\xe2\x22\x24\xd7\x3b\xed\x37\x08\xdb\xf0\x18\x1d\x23\x34\x74\x02\xae\x1f\x6d\x1e\x28\x57\xdd\x04\x68\x04\x78\xdf\x75\x2b\x36\x77\x4e\xaf\x2d\xaf\x76\x90\xff\xa1\x2d\x6e\xb0\xb9\x86\x2c\xad\x9d\xd1\x5e\x40\xf0\x9b\xdb\xd3\x45\xc0\x69\xe1\x08\x9b\x80\xc4\xef\x6c\x6a\xf3\xab\x25\x3b\x16\x83\x11\x2e\x2c\xa0\x3e\x51\x46\x20\xba\x2a\xec\x76\xdc\xde\x8e\xfd\x09\xa1\xdf\x6e\x01\xcd\xed\x1d\x19\x55\x44\x59\x2d\x25\xb6\x2e\x9f\xed\x23\x00\x47\x95\xdb\x26\x10\x70\x93\x57\xc3\x00\xea\x4c\xe1\x5c\x4d\xc7\x06\x56\x96\x28\xd4\x7c\x2a\xeb\xe2\x78\x9a\x87\x6d\xb7\x9a\x57\x2d\x33\x7b\x48\xdf\x6a\xe9\xbc\xb1\x1b\xa5\x55\x2d\xec\x72\x5d\xfc\x4c\x73\xa5\x6b\xf6\x98\xa5\xdc\xdf\x67\x8d\x7a\x59\x04\xcf\x16\xec\x1b\xb2\xbb\x65\x29\xbb\x93\x9d\x08\x2c\xed\xbe\x3f\xe1\x1c\x58\x32\x5a\x7f\x9f\xe2\xfe\x27\xc7\x22\x34\xd4\x90\xce\xf1\xf4\xe5\x96\x98\x7d\x69\x1b\xa1\xe3\x70\x10\x37\xe1\xe5\x3c\xda\xed\xe8\xd8\x6a\xd3\xaa\xc5\xfd\x03\x97\xea\xa0\xbf\xca\x12\x70\xd6\xd6\x57\xa1\xf8\xf6\xe5\x70\xc6\x4d\x20\x11\xc1\xb9\xfa\x02\x68\x7a\xcb\x69\x11\x10\xfb\xab\xc7\x92\x19\x21\xe0\x09\xb1\x07\x88\x13\xbc\x95\xef\x93\xdb\xad\x53\x75\x13\x50\x0c\xec\xa6\x83\xab\x5a\xbf\xce\xe1\x94\x9a\xc2\x1e\x0f\x4c\xa2\x6d\x69\xc8\xba\x7b\x75\xd4\x10\x36\x21\xb9\xca\x3d\x2f\x82\xf3\x99\x69\x35\x8c\x6b\xa1\x2d\x55\xf7\xf2\x2f\xce\x5f\xb5\x78\x41\x95\xe8\x87\xc1\xf5\x92\x02\xaa\xae\x89\xba\x16\x4b\xb8\xd4\x5d\x97\x47\x79\x35\x8f\x8a\x34\x82\xb3\x84\x3e\x0d\x97\x4f\x65\x59\x47\xce\xe5\x51\xb3\x65\xe9\x34\xae\xf7\x71\xd9\xd9\xb5\xc1\xd7\xf2\x73\x70\x30\x85\x7c\x2d\x1c\xb5\xf3\x58\xb5\x10\x96\x54\x1d\x6b\x2b\x2f\x0f\xe4\x96\x77\xc3\xf0\x40\x6e\x8e\x3b\x62\x04\x9c\x63\x97\xde\xfa\x7a\xc9\x10\xd0\xdc\xe5\xcd\x08\xd8\xc0\x96\xc0\x75\x39\x8e\x5a\x3d\xdb\x2e\x14\xcf\x90\x9c\xd7\x00\x79\xf4\x8f\xbb\x9b\x8b\x40\x2c\x59\x5c\x4d\x1f\x6e\xb4\xc9\xab\x5a\x57\xa5\x04\x67\xd6\x2e\xe7\xef\xb2\x43\xc8\x88\x10\xd0\x14\xfc\x0b\x36\xb0\xcb\x83\xbc\xd3\x92\xd6\x2f\x77\x7f\x6b\x1e\x5e\x64\x04\x8f\x06\xf8\xde\x40\x33\xd5\xf3\xaa\x11\xcc\xd4\xd6\xfb\x7e\xc3\xc3\x0c\xeb\xea\x39\xa0\x9a\xd5\xc3\x47\x44\x70\x5d\x7a\xdd\x84\x80\x2a\x62\x57\x0b\xdc\xe6\x5a\xe6\x46\x40\x97\x9e\x77\x2d\x15\x57\xfc\xbe\x6b\xe1\x56\x4c\x7b\xf4\xb0\x3d\xa5\x78\x9e\x9b\x80\x7e\xb4\x95\x4d\xf0\x19\xd8\x04\x87\xfb\x3a\x37\x01\x13\x7c\xd9\x03\x3e\xd1\x07\x3a\x18\x41\xbe\xfd\x8a\x4b\xeb\xe4\xbc\x57\xb8\xa3\xfb\x06\x88\xc0\x25\xe8\xcb\xfc\xf6\x8d\xd0\x0f\x57\x33\xdd\xee\xd3\x5a\xf2\xf7\x89\x54\xd6\x69\xf1\x7a\xf7\xfb\x34\xda\xe1\x9c\x86\x11\x30\x14\xf8\x51\x7a\xbb\x49\x23\x97\xaf\x1d\x97\x2f\x9e\xba\x08\x38\xc6\x94\xaf\x1d\x37\x39\xa9\xc3\xae\x16\x5b\x9c\x23\x47\x19\x81\xee\x2f\x13\x8f\x11\xdc\xcb\x65\x7f\xf2\xb2\x00\x7d\xc4\x6e\x0f\xd8\x6b\xd5\xcf\xc5\xdb\xf1\xba\x9a\x87\x2a\x8a\xe0\x0e\xa5\xdf\x27\x98\x11\xc3\x47\xc0\xd4\x9b\xc3\x26\xe0\xd2\x5b\xfb\x26\x80\x1b\xd0\xcf\x4d\xc0\x67\x2a\x7c\x84\x8b\x01\xda\xed\x60\xab\x2c\xb9\xf7\x76\xdb\x42\x5b\xcc\xf0\x72\xd7\x2e\xed\x7b\xe3\xf2\x08\x9c\xba\x09\x40\x27\x97\x63\x13\x18\x8f\x96\x36\xc1\xd9\x97\xdd\xf4\x8b\x2d\xd6\xbf\x42\x0b\x0d\xdb\xe3\x81\x1e\xee\x1b\xd3\xd7\x19\xfb\xbc\xdf\x78\xb9\x9d\xd3\xae\x05\x0b\xe8\x12\x95\x6f\xd7\x08\x95\xfe\x15\x8a\xfd\x2a\xed\x4f\x70\x6d\xcc\x1e\xc5\x2f\x02\x50\xa3\x7b\x08\xc9\x5a\x90\xfb\x9e\x4a\xee\xab\xec\x98\x21\x79\x39\x96\xa7\x78\xec\x4f\xc4\xef\xa6\xb8\x27\x7b\x24\xa4\x85\x3d\x1e\xe8\x7a\x8b\x3b\x85\x1b\xa1\x00\x01\xb1\xe7\x65\x20\x09\xba\xeb\x8c\x08\x04\x2f\x9c\x6b\x08\xdd\x0e\xef\x1e\xb7\x22\x80\x37\xfa\x35\xac\x61\xf3\xf9\xaa\xe5\x02\x3b\xf6\x1a\x1b\x0e\x37\x5a\x77\xd3\x5f\x94\x0b\x5f\xc3\x5e\xac\x42\x7b\xd4\x1d\x5e\xe0\x0c\xbb\x61\x98\x33\x43\xdf\xd5\xbe\x88\xb9\x5f\x4b\x65\x9a\x4d\xe7\xdf\xaa\x55\x5f\xd2\x5e\x52\xc4\xf9\xa7\xa5\xd3\xb8\x57\xf4\xfc\xb7\xc6\x90\xd1\x4a\xdf\x9d\x73\x1c\xd9\x73\x0f\x32\x21\x7d\xa5\xec\xf1\x80\x37\x6b\x7d\x1f\x17\x78\x20\xe7\xc5\xcc\xdf\x4b\x98\x4e\xce\x14\x3c\x2f\x79\x20\x6b\xf5\x33\x79\xb9\xe2\x37\x47\x05\x33\x02\x37\x49\xf5\x76\x3c\x0e\xac\x96\x8b\xdf\xf0\x8f\xdf\xce\x29\xfa\xcc\x3d\x1e\xfd\xd3\x6a\xfa\x08\x6e\x46\x3c\x36\x01\x87\x74\xb7\xa2\x3e\x8e\x94\x9a\xe2\xd7\xb0\x97\x00\xaa\xf6\xe7\x40\x66\x7b\x7b\x22\xe2\xc5\xdd\xea\xe9\x61\x5f\xab\x91\xca\xd0\x76\xb6\xa5\x35\x78\xdc\xa2\x9a\x1c\x8f\x49\x84\x97\xd1\x4b\x8b\x80\x59\xe4\xcc\x79\x13\xdc\x08\xb4\x09\x85\x10\xe3\x73\xd7\xe2\x98\x97\xbe\x9a\x9e\x65\xa7\x5c\xf6\x89\x67\x69\x0c\x73\x59\x43\xe1\x1e\x2f\x61\xb7\x14\xeb\x43\x5b\x0e\x3f\xcf\x3b\x08\x42\xf6\x28\x6d\x11\x60\xfe\xf6\x0c\xf8\xba\x77\x48\x39\x23\x00\x9b\xb0\x94\xc9\x8f\xc3\x51\xb5\x52\x37\x61\xc0\xec\x94\xd5\x5b\xee\xde\xe6\x81\x0c\x46\xe8\x18\x2c\xf6\x2c\x82\xfd\xd7\x97\x49\xe3\x7d\x9f\x00\x1b\xe2\x87\xcb\x72\x2c\x6f\x8e\x4e\x60\x04\xb6\xec\x3a\xb0\x5f\x07\xe2\x2d\x31\xaf\x37\xdc\xb2\xbb\x58\x8f\x77\xc5\xc6\xac\x5b\xf1\x5d\xa8\x98\x4b\x65\x6d\x04\x14\x0d\x65\xb5\x83\x7c\x2e\x69\x39\x3e\x18\x61\x20\x80\x9e\x4e\xe0\x4c\x4b\x87\x5f\x60\xaf\x83\xd7\x56\x0f\x99\x34\x42\x74\xd6\x23\x6d\x02\xf2\x77\x5f\xb5\x8c\xec\x4a\xb5\x8f\x00\x23\x9b\x8e\x4d\xa8\x18\x3c\x57\xd3\x31\xe0\xd4\x65\x50\x7e\xdd\xfa\x90\xe2\xee\x1c\x22\x59\x5d\xc7\xe0\xeb\xf0\x3a\xd9\xc1\x84\x8c\x90\x5c\xa7\xb8\x3f\xc9\xa0\xfa\x1c\xfb\x13\xf7\x4f\xda\x63\x3a\x1b\xc0\x0a\x79\x8d\xa9\xc7\xe8\x38\x64\x4a\x1e\x2f\x69\x30\xdb\x5a\x96\xc3\x23\xbd\x53\x77\xd6\x63\xb8\xba\x3c\x2f\xbf\xbc\xb1\x22\xb4\xca\x57\x06\xbe\x23\x8b\x4b\x18\xeb\x42\x8f\x75\xbd\xe1\xfe\xfd\xeb\xa0\x1c\xee\x76\x96\xd6\xc2\x1d\x7e\xd5\xd6\xc5\xc8\x0e\x17\x84\x9b\xe3\x8f\x1a\x61\x3a\x61\x7d\xe2\x78\x79\x4b\xeb\x38\x5c\x73\x52\xd6\x85\x3e\x96\xe5\x71\x59\xed\xc7\x3b\xe0\x22\x97\x49\x63\xb8\xcb\x58\x8a\x3e\xc8\xc3\xad\x75\xb9\xee\x6a\x3d\x45\x8c\xa3\x25\x1a\xe1\xe6\x80\xaa\x7d\x13\x06\x47\x7a\x59\x04\x05\x73\xe4\xe5\xb4\x30\x5c\x3f\x9a\xbf\x4f\xe6\xc1\x36\xad\xab\x5a\xb2\x19\xe4\xa5\x3f\x1f\x2f\x50\xfb\x29\xb6\xb6\x09\x04\xca\xe5\xef\x0d\x76\x65\x5b\xd5\xe2\xc0\x95\xcf\x8f\xa0\x33\xa8\x3b\x10\x89\x11\x06\xfb\xf6\xd8\x85\xd2\xd2\xe2\x0b\x77\x2e\x71\xbb\xf9\x34\x4c\xd7\xd2\x37\x0f\x96\x37\x02\x89\x50\x96\xde\x7a\xbe\xcf\x03\xff\x5f\xd7\x27\x0e\xbe\xb5\xd6\xc7\xf4\x38\xff\xe4\x80\xa4\x22\x80\x92\xe6\x87\xfe\xdc\xfa\xf3\xaf\x0c\x10\x06\x97\xc8\x30\x5d\x7f\x5e\x97\x9b\xe6\xf2\xfb\x4e\x0e\xa6\x60\x04\x44\x76\x0f\xf9\xcc\xcb\x23\x3b\x2d\xa7\x96\xe9\x5c\x53\xf6\xb0\x93\x3c\xdf\x91\xdc\xd5\x2c\x6d\x02\xe6\xbb\x63\x11\xa6\x27\x07\xde\x2d\x9d\x0e\xbc\xc7\x92\x2a\x87\xeb\x34\x92\x47\x88\x88\x80\xac\x88\xee\xcd\x08\x27\xb6\xeb\x78\xfc\xf1\x02\xb3\xb7\xe1\x8e\x1d\xd9\x43\x84\xc4\x22\x3e\x16\x01\xeb\x94\x83\x92\x18\xa1\xf9\x27\x7d\x11\x00\xd0\x73\x1c\x24\x23\xdc\x68\xdb\x91\xd6\x45\x40\x06\x66\x01\x1a\x01\x28\x29\x57\x67\x88\xe0\x81\x99\xbb\x16\x62\x9f\x73\x5b\x3d\x7f\x03\x5c\x69\x5b\x85\x7a\x58\xae\x63\x99\x19\x21\x63\x36\xdb\x0d\x03\x9d\x33\xbb\x5b\x83\x11\xa4\x89\xa9\xbe\xff\x8c\x70\x79\x19\x9b\x70\xfb\xed\xbc\xc6\x83\x13\xbc\xf6\x73\x35\xcc\x33\x53\xe5\xdd\x74\x0f\xc9\x71\x07\xd5\xb2\x3c\x45\xab\x2b\x19\x8d\x00\xe4\xa7\x47\xe1\x1a\xa1\x63\x2f\xad\xab\x2f\x40\xf5\xd6\x1e\x57\x6f\x31\x28\x17\x77\xaf\x28\xc7\x72\x5d\xcb\x6d\xcd\xb3\xef\x61\x77\x94\x35\x82\xbb\xae\xb5\xd5\x74\xdf\xb2\x21\xac\x42\xd9\xa1\xc9\x51\xf9\x44\x40\x11\xb5\xfb\x32\x2b\x89\xf4\xcb\x6a\xe9\x6c\xde\x39\xba\x7f\xfa\x96\x4d\xce\x94\x1b\xa1\xb0\x3e\xe0\xe4\x44\x40\xf1\x02\x97\x5e\x96\x9f\x62\x76\xb0\x37\x23\xb8\x03\x14\xcb\xbc\x9c\xee\x76\xd6\xdc\x71\xd8\x08\x91\x69\xe0\x26\x11\x81\xdd\x95\x36\xa1\xf8\x1b\xab\x61\x64\x8e\xcb\xb5\xef\x42\xb5\x82\x8a\x8b\xca\xe5\x74\x11\x24\x95\xa3\x6e\x02\x16\xae\xbc\x9a\xee\x1e\x2a\xee\x4d\x61\x04\xc0\x5d\xdc\x5b\xdd\x08\xe4\x37\x70\x51\x59\x04\x5c\xe0\x8f\xd5\x8e\xe1\x39\x0b\xea\xb9\x09\x0f\x9d\x5b\x0d\x43\xd5\x9d\xdc\x17\xd6\x08\xe2\x89\x52\x2a\x8b\xc0\x75\xdd\x1c\xe9\xd0\x08\xc0\xa0\x27\x3f\x07\x82\x3b\x94\x56\x0f\xeb\x31\x02\x56\xe5\x23\xae\x37\x60\x2b\xfb\xe1\x3b\x6a\x79\xdd\x25\x0f\x63\x37\x02\x27\xb8\x83\x5f\x8b\xd0\xd9\x2f\xfb\x13\x38\x0d\xc7\xa9\x33\x82\xa3\x69\x22\x2a\x8b\x80\xb3\x80\xef\x97\xb0\xe6\xc5\xfd\x69\x45\xa0\x1d\x3e\xc8\x61\xc5\xd4\xb8\x8f\x61\x59\xde\x6e\xd9\x19\x3e\x23\x80\x41\xe8\x20\x06\x22\x5c\xe8\x45\xd2\x26\xdc\xf0\xf1\xbb\x0c\x2c\xf5\xb9\xc7\x4d\x90\x3e\xd0\xd5\x5d\x46\xc0\xef\xc3\x55\x77\x46\x78\x3d\x24\x60\x8f\xd8\xcb\xcd\xfa\xbd\x81\x81\xc1\x11\x41\xca\x72\xf1\x6a\xed\x1b\x8f\xc1\x75\x7d\xec\xa6\xe3\x8d\xe5\x90\x78\x22\xe0\x2b\x1d\x76\x2d\x84\x8c\x78\x5c\xbb\x08\x40\x0e\x1e\xab\x50\xe2\x6a\x9b\x63\x0e\x19\xc1\x7d\x2e\xf3\x2a\x63\xad\xd3\x5a\x36\xa1\x23\x76\x6c\x82\xd8\xca\xe6\x20\x06\x22\x10\xa5\xbd\x67\xce\x45\x65\x57\x61\x94\xed\x16\x15\xeb\x6e\x87\xdb\x15\xf7\xcc\x8d\x44\x08\xfa\xf1\x95\xe1\x7a\xeb\xaf\x0c\xa2\x88\x7b\xda\x04\x60\x57\xca\x57\x06\x8e\xf6\x5f\x19\x58\x3e\xce\x7c\x6c\x02\xd1\xd1\xa1\xfc\xf9\x02\x0b\x6e\x9d\xca\x79\x0f\xa7\x5b\xa7\x5c\xa9\x26\x02\x72\x63\xda\xfd\x5a\xe8\x31\x79\x13\xd8\xc3\xe7\x47\xc0\x69\xe8\x5c\x1b\x61\xb8\x22\xaa\xee\x7e\x81\x02\xe9\xf8\x05\x22\xe0\xda\x18\xbe\x4f\x58\x5e\xed\x7b\x03\xc7\xb4\xaf\xa3\x2f\xf0\xff\xdf\x1b\xaf\x87\xc3\xee\x32\x10\x41\xdc\xbb\x44\x04\x07\xc2\xde\xed\x18\x1c\xc7\x5f\x19\xc3\xbd\x80\xf7\x80\x0f\x0e\xfd\xf6\x15\xaa\xf1\x6d\x5f\xf7\x59\x80\xf1\x58\x6f\x4c\x17\x51\xeb\x2a\xc3\x8f\x9f\xba\x57\x13\xa0\x35\xa5\xef\x31\x5d\x40\x13\xf5\x23\x60\x15\x6a\xdf\x27\x04\xec\xed\x25\xea\xf8\xbf\xee\x1a\x21\x82\x5b\xdc\x57\x5f\xa6\x3b\x71\xf4\xfd\x89\xa3\xfb\xee\x2d\x4b\x26\xa5\xbc\xee\x9a\xe0\xba\xde\x1c\xcb\xee\x4b\x71\x97\xb1\x5d\x06\x06\xbe\xb8\x8f\x41\x6e\xc5\x1c\xf7\x78\x10\x20\x5a\x16\xeb\x11\x16\x8e\xa1\x07\x21\x97\x85\x9b\x5f\x8f\xba\x3b\x87\xbe\xc7\x39\x5b\x11\x60\xfe\xf6\xde\x41\xd7\x5b\x1c\xfd\xcd\x08\x58\x62\x8f\x7d\x74\xb8\x6f\x51\xfd\x3a\x87\x97\x6a\xdc\x67\xc9\x7c\xe1\x89\xfa\x2e\x03\xf5\x8e\x87\xf6\x8a\xc0\xf1\x93\x3f\x82\xc3\xa6\xad\x05\x33\x71\x03\x72\xad\xbf\x08\x00\x89\xed\xa3\x94\x78\x87\xe4\x82\x9f\x08\x1e\xfe\xf9\xbd\xe1\x9e\x21\xbb\xe9\x83\x05\xb3\xcf\x12\x4f\xec\xe1\x88\x31\x65\xe1\xf7\x27\x0f\x75\x2e\x71\xa1\xbd\xb8\x0a\xb1\xc4\xcd\xc8\xfa\x7d\x15\xdd\x80\x93\x1d\xe9\x50\x04\xbc\x65\x61\xec\x8d\x10\x58\xeb\x88\xfd\x22\x20\xf9\xa4\x8f\x80\xe7\x6f\xde\xb5\x44\x42\x3e\xc3\x47\xc0\x0f\xc6\x8f\xf4\x95\x03\x20\xbb\xda\xde\x08\xe0\x9f\xc4\x63\x57\x0b\xb3\x16\xfc\x5a\x88\xae\x33\xaa\x61\x37\xdd\xfd\xd9\xe3\xb9\x09\xdd\x85\xfa\xf5\x09\x76\xf8\xb6\x36\xd0\xc6\x56\x2f\x7b\x3c\x38\xb0\x93\x87\x17\x89\xa0\x33\x7e\x31\x27\xd1\x1d\x4a\x73\x0c\x7d\x13\xe8\x7e\xd8\x9f\x80\xe9\xea\x46\xe4\xb2\xe0\xc2\xab\xc3\x6a\x18\x01\xe9\x7a\xdd\xce\xd1\x5d\x2c\x53\xfd\xde\x78\x71\x28\x6d\x6b\x3c\x80\x2c\xcd\xd1\x97\x43\xf4\x75\xda\x16\x47\x9c\xde\xa7\xb2\xb4\x11\xb7\xcb\x82\x83\x4e\xae\x61\x17\x81\x79\xf1\x6d\x9a\xdc\x8e\x96\xa3\xdf\x24\xc9\x35\x75\xc9\xdd\xa2\x8c\x00\x66\xa7\x6b\xea\x44\xc0\x2b\xb3\x6f\x02\x87\xb4\xc3\x73\x95\x85\xdc\x9c\xcb\xb1\x0b\x1d\x8e\xf7\xf7\xbd\xc1\xce\xf6\xb9\x4d\x0b\x8e\xca\x05\xbf\x92\x9c\x8d\xaa\xee\x7f\x62\x84\x13\x4d\xee\x2e\x14\x5e\xb5\x95\x63\xf5\x96\xb4\x01\xa9\xc7\xf6\xe7\x0b\x2c\x6d\x1c\x32\x3f\xf5\xd2\x72\x08\x73\xa9\xd0\x08\x40\xa0\xba\x4d\xde\x08\x1e\xc4\xd4\xd6\x70\xc2\x30\x65\x07\x7c\x2d\xc9\x9d\xb9\x92\xdb\xa0\x4b\x5a\x28\x74\x6e\xd0\x2a\xd9\x37\x53\x72\xe5\x9e\x11\x08\xad\x77\x89\xdf\x08\xf0\x8b\x6e\x06\x28\x0b\x76\x38\x75\xdf\x6e\xd9\x45\xc3\xec\xe8\xda\x46\x00\x98\xcc\x7d\x95\x44\xe0\x2c\x71\x36\x35\x3b\xf4\x49\x8e\x65\x13\x06\x66\xfc\xba\x3f\x19\xa0\x5a\xfb\x79\x94\x5f\xb2\xae\xb7\xea\x73\x94\xdf\xd7\x71\xc8\x8e\xb6\x09\xf8\x8e\x38\xbf\x28\xed\x1e\xb5\xe4\x45\xc0\x13\xa9\xa7\xfd\x06\x08\x18\xee\xf6\x52\xb2\x23\x0b\x54\x97\xd6\x8d\x00\x07\x55\xce\x55\x2d\xa7\x6f\x0d\x5e\x6d\x71\x77\x82\xea\x21\x6c\x65\xf9\x7f\xa5\x25\x0a\x95\xe5\x19\xe2\x18\x57\x65\xe1\x66\x36\x87\x93\x31\xc2\x70\xb4\xa5\xbc\x08\x8a\xf3\xc9\xb1\xef\x37\x26\x6e\x89\x79\xbd\xe1\xfe\x5f\x0e\xad\x55\x16\x12\x66\x5a\x32\x49\x59\x01\x37\x8e\x02\x6f\x04\xb1\x76\xdd\xc3\x58\x44\x20\x9b\x5b\xfb\xde\xc0\x0f\x6d\xb7\x74\x65\xc7\x40\xbf\x61\x84\xec\x17\xd8\xea\xbe\xa3\x58\x7a\xf2\x26\x23\x74\x12\x48\xa4\xdd\x0e\x00\x70\x3d\xa7\x98\x08\xa8\xbb\xfc\x02\x2b\xee\xdf\xdf\x1c\xca\xd9\x08\x89\xed\xb6\xdf\x70\x13\xf1\xda\x5d\x65\xf9\x09\x3b\xd0\xaa\x11\x7c\xad\xfb\xf1\x53\x5d\xde\x6c\xee\xd5\x61\x04\x5c\x23\x16\xdb\x5e\x3d\xbc\x28\xad\x86\x55\xf7\xb6\x69\x9e\x30\xcd\x08\x12\xd9\x8b\x87\x6d\x1b\x01\xa4\x70\x57\x44\x89\x00\x7a\xab\x9f\xf1\xd5\x63\x37\xaa\x03\xe0\x96\xea\x01\xf7\xc5\xbd\x32\x8d\x40\x38\xbd\x1b\x09\x8d\x40\xbe\xb8\xf2\x11\x2e\xaa\xf5\x9b\xb5\x3a\xd8\x7a\xf7\x3c\x2f\x46\x78\x70\xf4\xed\x9b\x40\x3a\x57\xcf\x06\x57\xea\x32\x88\x7f\x85\x92\x46\xa1\x39\xb6\xba\x11\x40\x28\x72\xdb\xa4\x11\xe0\x44\xdd\xb3\xba\x34\x4f\x2c\xd0\x3c\x96\xcc\x08\x0d\xdb\xb5\xdf\x35\x6d\x47\x12\xc6\x4d\x80\x35\x75\x40\x60\x11\xe8\xad\x1f\x06\x6d\x05\xa8\x79\x2e\x02\x11\xd0\x3a\x62\x11\x16\x81\x20\x1b\x3f\x9f\x9b\x23\x69\x35\xc7\xdd\x35\x42\x00\x66\xd7\x2f\x9f\xe6\x52\x6d\xad\xbe\x5f\x9a\xdf\xbd\xc9\xe3\x48\x8d\x80\x17\xf3\x3a\x50\xda\xfb\x92\xdc\xab\x7c\xb5\x74\x0a\x8d\x9b\x00\xf8\x8f\x9b\xdd\x8d\x80\xbb\x49\xfa\x0a\xbd\xd9\x51\x65\xbf\x01\xd4\xb7\x9b\x55\x8d\x00\x0b\xb4\x34\x75\xcd\xfd\xad\x93\xc3\x38\x1a\x21\x7a\xb5\xab\x61\x2b\x10\x63\x37\x4c\x09\xae\x4d\x22\x5d\xdd\x77\xfb\x8a\x83\x4e\x8b\xe0\x31\xb1\xdf\x1b\x85\xeb\x64\xd7\x72\x3b\xbb\xff\xbd\xe1\xba\xa6\x35\x73\x1e\xcd\xe0\xd0\x7c\x46\x98\xa8\x54\xff\x15\x09\x6c\xb9\x6a\xb5\xde\x56\x37\x3c\x45\x94\x07\xef\x19\x61\x00\xa2\xe5\xb2\x78\xf7\x4c\x4c\xc5\x4d\x8a\x46\xf0\x4b\xd0\xcf\xc5\xfe\xbe\x8f\x87\x29\xa4\x4d\x60\xbb\xf9\xc4\xf7\x77\x1c\x00\xc6\x95\x55\x06\x22\x6f\x75\xad\xbf\x11\x90\x3d\x3d\x6a\xc5\x08\xd9\xc3\x14\xda\x22\xb8\xc3\xbf\x33\x5d\xf7\x4b\x1e\xfe\x7e\x7a\x4b\x6f\x37\x8a\x15\xb7\xc6\xd8\x09\x16\x88\x4a\xf0\xbb\xf7\xf5\xd3\xa6\x78\x20\x43\x19\x2b\xe8\x3d\xf8\xb6\x1f\xce\x52\x55\xd7\x94\x97\xe9\xf0\xc7\xd5\x7d\xb7\xea\xe9\x41\x5d\xd5\x21\xcc\x6b\xd8\xf6\x09\xa4\xa7\x5a\x1d\x6c\xbd\xb8\xf1\xa5\x0e\x77\x61\xcd\x2d\x6d\x02\xa1\xac\x0e\x67\x21\x82\x0a\x8d\x4c\x83\x08\xf8\x28\xb4\x4d\x20\x8b\x92\x07\xaa\x8a\xe0\xf9\xaf\xce\x45\x48\xe0\xed\x30\xea\x46\x20\xf5\x87\x6f\x15\x23\x74\x80\x1e\x39\xc1\x8d\x80\x7f\x81\xbb\x8c\x19\xe1\x71\xaf\x8e\xb0\x08\x8e\x62\x93\x56\x2d\xc0\xe3\x95\xbe\xfb\x82\x13\x47\x71\x77\x7e\x11\x10\xb8\xf2\x6a\xba\xeb\xe3\x7d\xf6\x8d\xd0\x1d\x8e\x7d\xf5\x05\x5f\xc7\x65\x9a\x15\x01\x91\xec\xab\xf6\x75\xbb\x40\xdb\x04\xac\xe5\x61\xbd\xe1\xa0\xa0\x32\x39\x8f\xe3\x9c\xbf\x7f\x05\xe9\xe6\xc7\x61\x82\x46\x90\x6f\xcb\x38\x6c\x55\xc9\xe4\x37\x0e\x13\x36\xc5\xdb\x8c\xc3\x96\x45\x10\x40\xe8\x38\x80\x30\x10\x54\xd6\x38\xe0\x5e\x94\x51\x6d\x1c\xac\x6a\xe5\x5c\x1a\x07\xb8\x5d\x95\xda\xec\xb0\x8c\x72\x12\x1b\x07\xae\x5b\x12\xbf\xc7\x09\x96\xa0\x60\x3a\xc6\x19\xc6\xef\x5f\x45\x81\x22\xe3\x64\x53\x1d\xa7\xfe\xe0\x20\xd4\x76\x3e\x8d\xd3\xee\x72\x50\x94\xc6\xe9\x9e\x96\x45\x9f\xe0\x9f\x2e\xa1\x74\x9c\x88\xbd\x92\x83\xc7\x59\x1c\xac\xbc\xe9\x07\x0a\xa9\xd2\xed\x47\x3f\x7f\xff\x4a\xf2\xe3\x18\x27\x3e\x3e\x02\xc3\x1b\xa7\x1d\x34\x51\x5a\xef\x71\xde\xf4\xab\xea\x07\xf9\xe0\x15\x04\x30\x4e\xb1\x00\x02\x93\x1c\xe7\x60\x28\x6c\xfb\x8d\xe0\xf0\x61\x9d\x1f\x78\x47\xd8\x39\x37\x82\x6d\xb9\x22\x1d\xec\x08\x76\x85\xc6\xa0\xf1\x0a\x76\xaf\x45\x21\xde\x8c\x80\x61\x51\xa9\x25\x47\xb0\x9e\x44\x61\xe5\x8d\xe0\x1d\xe1\x47\x23\x94\x20\xe8\xc7\xe5\x75\x74\xfd\x70\x39\x48\xb5\x5f\x36\xf6\x3a\xbf\x46\x00\x57\x5a\x3e\xc5\x23\xd8\x12\xd2\xf1\x31\xc2\x98\xbf\x7f\xd5\x03\x32\xe7\xa5\x74\x1d\x23\x1e\x74\xca\x4e\xae\x11\x01\xb0\x92\xe9\x7a\xc4\x78\xfd\xfe\x95\x14\x46\x35\x22\x8a\x65\x79\xb1\x8f\xa8\x5d\x76\x0a\x58\x64\x44\x58\x33\x09\xc6\x23\x32\x5b\x82\x77\x1f\x31\xd9\x02\x34\xe6\x72\xc4\xec\xde\xe8\x55\x3f\xac\xdc\x70\xa8\x76\x5b\x81\x49\x96\x97\x11\x8b\x97\xf4\x27\x39\x64\xc4\xea\x29\xa1\x54\x36\xac\x4f\x52\x71\x75\x5a\x71\x76\x40\x8c\x48\x62\x5a\xba\x1c\x61\xca\x0f\x3a\x73\x39\xfa\x93\x6a\x35\x69\x30\x46\xfe\x80\x96\x4c\xe9\x0c\x46\xc4\x33\xf2\x60\x94\x1e\x4f\x45\xa8\xfe\xbf\x1f\x7a\xd4\x88\xf8\xb0\xc4\x43\x6d\xd1\x8e\x3c\x4e\xcd\x5e\x7c\x9f\xdf\xbf\x50\x8a\x8f\x38\xbc\x30\x95\x8c\x87\xa9\x54\x6d\x23\x11\x5f\xa4\x18\xe3\x91\xb0\x56\x48\x1d\x34\x12\x51\xae\x0a\x80\x1e\xc9\x67\xc6\x58\x9e\x91\xce\x6a\xdd\x4c\xfc\x5f\x87\x51\x54\x35\x29\xf8\x5b\xa7\x7e\x38\x84\x8e\x75\x33\x61\x16\x53\x9c\xc6\x48\x09\x25\x42\x50\x01\x76\xed\x04\x1d\xaa\x23\x15\x94\xce\xdd\xba\x99\x6c\x94\xe3\x61\x27\xe5\x48\x95\x2f\xb4\x0d\x13\xd0\xc0\x52\xd5\x8f\x04\xc4\xbf\x20\x6c\x47\x5a\xa8\x3d\x6a\x32\x0b\x56\x08\xc2\x23\xd9\x30\xe7\x43\xa3\x94\x4c\xa8\xc2\xf2\x31\x32\xde\x24\xf2\x0c\x1d\x99\x4e\x2a\xa2\x6b\xe4\xe0\x3f\xa2\x7e\xc0\x02\x46\x7e\xb8\x37\xa9\xb5\x32\x4b\x56\x20\x07\xfe\xc8\xa0\xc2\x08\x9e\x71\x64\xfc\x98\xd9\x3d\x99\xab\x93\xe3\x30\xdf\x9e\x04\xdc\xda\x9c\xed\x58\x95\x47\xda\xc8\x36\xb1\xba\xc4\x46\xc6\x43\x4c\x5a\x94\x91\x25\x7d\x1d\xe2\x59\x47\x39\xbc\x76\x2b\xb6\xe0\xde\x29\x0c\x87\x51\x70\xbe\x16\x30\xdb\x28\xe5\xda\x2c\xc2\x28\xcd\x23\xf7\xad\x91\x85\xe5\x27\x6e\x62\x14\xf7\x8c\xd5\x29\x58\x2e\x67\x2b\xac\xf9\xe5\xf1\xd7\x8a\x7e\x94\xdf\xbf\xaa\x72\x8f\x8d\x32\xfd\x13\x6b\x7d\xd5\xc0\x1c\x4a\xcb\x35\xaa\x0f\x8c\xf1\xf8\xa3\x16\x7a\xac\xa3\xab\x92\x5a\x48\xae\xf5\xa3\x12\xf2\x7f\xda\xbd\x31\x2a\x76\x06\x71\xfd\xa3\xbe\xd1\xce\xe7\xaa\x3f\x4c\x3c\x1b\xf4\x7d\xc3\x9b\x40\x68\x54\xa3\xc1\xb1\x2b\x28\x63\xb4\xe2\x85\x59\x9b\x9b\xbb\x9e\x69\xfd\x37\xb1\x87\xa7\x2c\x18\xa3\x3b\x76\x81\x26\xa3\x17\x34\xda\x9a\xa6\x2e\x83\x4b\x96\x75\x6d\xf4\xea\xce\x01\xd6\x9d\xde\x1c\x6d\x52\xdf\x34\x22\x32\xb3\x4a\x23\x92\xf2\xf4\x1f\x75\x3b\x14\x8c\x8e\x37\xbb\x9c\x91\x46\x77\xfb\x69\x56\xd1\x8d\x4a\x35\x3b\x1d\x4f\xa0\xd3\xff\x22\x1e\x89\x25\xd4\x49\x5d\x29\xcc\xea\xd1\x51\xf3\xc8\x3b\x73\x74\x0e\x14\x65\x65\x1e\xbd\xc3\xbe\x68\xde\x3a\xb0\x2d\xa7\x6e\xc2\x7e\x91\x90\x8b\x02\x7c\x46\x35\x20\xfd\xf2\x08\x51\x15\xa0\x7b\x95\x70\xd1\xd1\xe1\xd7\x95\x02\x66\xf4\xdb\xbd\x1d\xf4\x0d\x71\x04\x72\xe9\x1e\x1d\xac\x97\x1a\xfe\x64\x2b\x1f\x1d\xe5\xec\xa9\xdb\xa9\x3b\xca\xbb\xe6\xbb\x3f\xf4\x42\xbb\xaf\xc3\xeb\x54\x4d\x7e\x97\xc2\xbf\x71\x30\x77\xe0\x9d\xa3\xae\xda\x8e\xc2\x50\xd0\x14\xa3\xbf\x5e\x9a\x5e\x43\xc5\x1b\x98\x3c\x42\xf2\x94\x48\x6a\x74\x60\x57\x02\x33\x09\x07\xc9\xb9\xd6\xe1\xdf\x15\x14\x3e\xba\x74\x5e\x55\x9e\x3e\xa3\x0f\x06\xa8\x6a\x8a\x50\x79\xc8\xbe\x33\x3a\x66\x29\x99\x83\x46\x77\xb7\xa5\xa0\xa2\xb9\xcc\xc4\x26\x8d\xeb\xc8\xdf\x85\x79\x1d\x8c\xa3\xc9\x80\xe3\x3a\x59\x4b\xda\x41\x17\x67\xae\x3c\x81\xc6\x45\x98\x41\x4c\xbc\x16\xf9\x4b\xd5\x0f\x5a\x90\xf9\xe6\xa1\x00\xd5\x83\xf6\x25\x8a\x45\xb8\x70\x41\x90\x0f\xdd\xb8\xf0\xb4\x95\x67\xdb\xb8\x80\x91\x96\xdd\x6b\x5c\x04\x1d\xcb\xed\x67\x5c\x64\xc5\x96\xcf\xcb\xb8\xc0\xf9\xe5\x0e\xba\xd0\x28\x44\xdd\xa7\x57\xf6\x56\xab\x1e\x04\x17\xd9\x3d\xc6\x45\xdc\xae\x40\x7d\xc6\x45\x0e\x57\xee\xa0\x2b\x7b\x69\xfc\x45\x87\x88\x74\xd0\xe3\xc2\xd0\x0f\xc7\x74\xe1\x7d\x20\x53\xe0\xb8\x00\x33\x92\x6d\x63\x5c\x95\xfd\x14\xd5\x6a\xae\xda\xc8\xf0\xba\xfb\x8f\x58\x98\xcb\x99\x93\xa8\xe6\xb0\x85\xa4\x64\x1d\x17\x5b\x28\x66\x35\x07\x18\x0f\x45\x4e\x8d\xab\xb3\x37\x1a\x3f\xc8\x1c\xaf\x1d\x70\xf9\x7e\xd2\x9d\x76\x01\x35\x1f\x3b\x3f\x48\x53\x2e\xd6\xf0\x22\x29\xa5\xfc\x5a\xc6\x45\x4c\x49\xa5\x6d\xdc\x36\x51\x2c\xdc\x05\x7b\x24\xf5\xd0\xb8\x30\xbe\x2a\xc1\xc9\xb8\x2e\xbc\xc2\xb4\x31\x2e\xdc\x29\xe4\x5f\x31\x2e\xdf\x90\x9d\x1f\x89\x7a\xd4\x02\xb0\xe0\x95\xe2\x7e\x5c\x38\x7d\x4b\x9d\x35\x2e\x72\x6c\xc9\xd3\x78\x5c\xa8\x8f\x94\x35\x6e\x5c\x0f\x8b\x22\xa9\x1e\x8e\x72\x2f\x0d\x51\x51\x61\x4f\xe3\xf2\x14\x4b\xba\xfe\x2e\x3c\xc5\x22\xb3\xf0\x7a\xd1\xea\xe9\xeb\x5d\xd0\x58\xbf\x9e\x6d\x57\xf5\xbc\xde\x1c\xfd\x40\x85\x21\xa4\xb5\x71\x01\x83\x95\x58\x96\xa0\xd6\xc9\xed\x7e\x5c\x28\x36\xaa\xce\xc8\xcb\xb7\x19\x5b\x66\x72\x60\xb2\x4b\xa6\x97\x66\x0d\xbd\x61\x13\xe5\xd0\x30\xee\x83\x73\x48\xbb\xe4\x46\xb2\x93\x23\xf0\xb8\x7d\x9b\x69\xea\xef\x93\x31\x90\xe8\x70\xe3\xe7\x83\xb4\x70\xe3\x11\x89\x84\x70\x07\xc7\x9a\x4f\xfa\xe1\xdf\xf0\xc3\x21\xe5\x55\x29\xc6\x12\x44\x84\x3b\x38\xec\xb9\xda\xe6\x09\x00\xc4\x02\xdd\x62\x4e\x03\x57\xed\x8d\x53\xa0\xf1\xf5\x7f\x38\x30\xef\x14\x7e\xff\xc2\xce\x32\x6e\xb1\x14\x51\x88\xbc\xe3\xfe\x5b\x76\xfa\x71\x27\x47\x38\xe5\x87\x63\xdb\xea\x35\xb6\xa0\x30\xed\xc6\x9d\xd3\xb6\xd8\x8e\xdb\xbd\x1d\xc5\xfa\xdd\x98\x3c\xaa\x96\xdf\x0d\xc3\x2b\xf0\xa6\x71\xcb\xd1\xfb\x10\xf4\xde\xb8\x2b\x8e\x66\x3a\x8a\x6f\xf4\x83\x42\x80\x18\x37\x17\xa4\xa0\x7f\xc7\x5d\x1d\xf6\x84\x1f\x6c\x1a\x46\x1b\xe0\x0d\x99\x88\xc7\x0d\xbf\x26\xb3\xec\xb8\x2b\xf9\x14\xb4\x83\xee\xea\x70\x00\xfc\x40\xf0\xd5\xf9\x72\xe3\x1b\xd9\x18\x46\xdb\xea\x55\x01\x94\xe3\x6e\x0e\x83\xa1\xd6\x78\xec\x58\xe0\x2d\x42\xcd\x68\x8d\x3b\xe2\x04\x5e\xa3\x4e\x5a\xd3\x3e\x68\xa4\x71\xbb\x2f\x96\xce\x8d\x1b\xd9\xbc\x69\xdb\xdf\x04\xf4\x2a\x6c\x78\xdc\x9d\x02\x28\xcd\x78\x79\x40\x0b\xc7\xdd\x71\x22\xd2\x01\x79\x5f\x5f\xb8\xe0\xb8\xc5\xf0\x9d\x72\xe1\x1e\xb7\xbb\xc1\xf8\x0f\x3c\xb3\x74\x22\xdd\xd7\x07\xe7\x38\x6e\x64\x5d\x85\xb1\x8d\xdb\x73\xac\xe9\x18\xbc\x4d\x58\x2c\xbe\x15\x10\x16\x95\x22\x79\xdc\x48\xe9\xc2\x0e\x1b\xf7\x8d\x13\x26\x3f\x38\x0e\x32\x3b\x86\xe3\x40\x21\x96\xe3\x06\xc1\x43\x0a\xdf\x71\x93\xd6\x46\x51\x5d\xe3\x36\x69\x33\xc3\x58\xdd\xc0\x7a\x28\x32\x6b\xdc\x8f\xc7\x38\xf0\xfd\xfc\xfd\xab\x75\x16\x21\x8e\xfa\x99\xb2\x5e\x8f\x0f\xd4\x68\xea\x00\x89\x4a\xca\x3d\xee\x97\xc6\x48\x64\xbb\x5f\x6f\x0c\x7f\x61\x9c\x75\x66\xdc\x26\xd2\xb7\x46\x95\x24\x6a\xcb\xf4\x79\x60\xab\x2a\xfc\x38\x7f\xaf\x50\x99\x71\x0f\x8f\x9b\x51\x61\xc3\x53\xd0\xa8\x1a\x30\xf1\x33\x9b\x7c\x3a\x62\x91\x46\x63\x52\x80\x36\x39\x38\xdc\x2d\x8b\xd3\x50\xe8\x73\x11\x84\xe7\x90\xef\x60\xe0\x38\x25\x25\x25\xfe\xae\x03\x6d\x2f\xe6\xa3\xf1\x18\x07\x5e\x9b\xee\x5b\xb7\x09\xc9\xb9\x70\x60\x4b\xc5\x55\x70\x3c\xee\x6c\xa6\xcb\x17\x3d\x12\x1e\x81\x83\x0c\xe9\x24\xfc\x19\x64\x47\xc7\x47\x6f\x3c\xeb\x5a\x56\x2b\xc1\xdc\x91\x16\x72\x3c\x78\x46\x22\x80\xe1\xf8\x8f\x2b\xcf\x70\xa7\x7f\xe1\xcb\x0e\xb2\x5a\x36\x65\xb5\x1c\xe4\x87\xc8\xb2\x9c\x8c\x27\xbb\x7d\x47\x0d\xcd\xee\xa3\xa5\x16\xe4\xfb\xf7\xaf\xae\x6c\x54\x43\x01\x7f\x31\x52\x4b\x71\xf6\x57\xb5\x70\x8a\x74\xad\x99\xa7\x7c\x06\xa8\x81\x77\x1b\x86\xa3\x41\x5a\xf6\x1a\x75\x40\x91\x19\x20\x2b\x77\xc0\xf0\xe8\x27\x61\x3f\x0d\x8c\x9b\xad\xc4\x3f\x85\x10\x0c\x00\x44\xb3\x42\x80\x86\xe7\x78\x97\x83\xc4\x78\x3a\x05\xea\xf0\x79\xb8\xcb\xe5\x58\x3c\x3c\x93\xae\x62\x34\x07\xb1\xc8\x59\x28\xf5\x83\x28\x52\x1c\xc5\x07\x20\xce\x00\x30\x8f\xc7\x13\x41\xe8\xee\x7b\x1c\x99\x47\xbc\xe3\xe3\x91\xda\xaa\xe6\xf2\x7c\x74\xfa\x1e\x94\x4d\x39\x74\x0c\x72\xf3\x12\x9c\x3d\x40\x28\x00\xae\x64\x60\x62\x6d\x0a\x0c\x1b\xc0\xc9\x35\xd4\x65\xc0\x96\x92\x9c\x77\x10\x05\x51\x04\x7a\x3b\x5e\xcf\x3c\xae\xb5\xff\xca\x07\xaf\xa0\x78\x21\xec\xb5\x48\xcd\x37\x00\xa6\x21\x9b\xed\x78\x4f\x94\x5b\xda\x22\x2f\x1e\x97\x02\x61\x1b\x9e\x1e\x48\xe0\x4d\x83\xfc\x6d\xe0\xb3\x8c\x17\x58\x88\x83\xb6\x9d\xb4\x5a\x6b\xd4\x83\xc4\x04\xa2\x35\x88\xe5\x12\xfc\xc8\xf0\x30\x2e\x05\x01\x0c\x42\xb8\x48\xb7\x3c\xde\xe0\xb9\x97\xd5\x03\x00\xec\xd0\xd1\x60\x70\x68\xf2\x67\x1b\x6f\xf4\x9c\xbc\x6a\x40\xf4\xe0\x72\x7e\xdc\x1b\xe1\x70\x60\x90\x23\x1d\xd3\x20\xd5\x47\x41\x2f\x41\x98\x18\x78\xd2\xe3\xcd\x5f\x38\xc5\x78\xed\x42\xeb\xc2\x71\x1a\xa4\x99\x27\x83\xc4\xc0\xbb\x9d\x28\x97\x01\xfc\x5c\xe1\xc8\x93\x15\xab\xc8\xb5\x6a\x80\x11\x42\x32\xce\xf1\x22\xef\x29\x80\x64\x60\x60\x8d\x72\x60\x1d\x04\x90\x25\x9f\xd0\x15\x3f\xa3\xae\x79\xc4\x92\xce\xbf\xd7\xe3\xf7\xc5\x33\x81\x14\x02\xf4\xf6\xc0\xad\xae\x04\x8a\x7e\x1d\x94\x5b\xa5\x8d\xfa\xfb\x57\x54\x7c\xc9\xc0\x5b\xb3\x21\x28\x11\x2c\xd6\x90\x80\xb0\xcc\xba\xce\x69\xb8\x32\x4d\xbd\x71\x50\x32\xe4\x1c\x54\xb3\x0d\x01\x66\x78\xd0\x9f\x6e\x3d\x10\xa8\x49\x00\x39\xf0\xc9\x4f\x6c\x73\xdc\xd5\x08\xb2\x1f\x44\xaa\x72\xd3\xae\x88\x0a\xb1\x69\x58\x09\xf0\xc3\x19\x03\x05\x0e\xb2\xc8\xf0\xdc\x1f\x3a\x1b\x01\xa9\x6e\x88\x12\x63\x61\xeb\xa9\x35\xb6\x0f\x3b\x1c\x3e\x9e\x64\x38\x39\x0d\x12\xbe\x67\x21\xb3\x0d\x07\x40\x8a\x94\x4c\x5e\xf7\x68\x7b\x7f\x46\x04\x5e\x0d\xf4\x8c\xc8\xb8\x1a\x9b\x19\x49\x6f\x24\x0f\xa9\x19\x6f\x44\x9e\x43\xdf\xb8\xd8\x67\xbc\xc2\x8c\xc3\xdd\x9c\x55\x00\xe8\x4d\xd2\x8c\xce\x08\x72\x53\x6c\xfc\xa0\xe8\xaa\xd7\x24\xf6\x55\x81\xc4\xcd\x74\x78\x3d\x87\xfd\x38\x69\xa8\xb1\x31\x13\xed\x58\x15\xe7\x31\xd3\x49\x3d\x27\xaf\x91\x09\xcf\xd8\x90\x99\x4e\xea\xb1\xc5\x36\xd3\x89\xe8\x7b\xaa\x68\x24\xbd\x16\xf4\x4d\xa0\x0b\x7f\xcc\xdb\x3f\x93\x4b\x7e\x41\x05\x46\xdc\xc9\x8b\x7e\x24\xea\x4d\xaa\x17\x04\x16\xa5\xe6\x9e\x09\x73\x4f\x4b\x6a\x78\x19\x3b\x6a\x64\x26\x71\x80\x35\x68\xb4\x12\x91\x40\x62\x25\x66\x5a\xb9\xce\x55\x34\xc6\x0e\x29\xab\x27\x1a\x3b\xb2\xa0\x4f\x34\x76\x35\xd0\x1c\xb2\x9f\x2b\x6e\x73\xa6\x86\x7d\x36\xab\xe8\xee\x09\xe3\x34\x5a\x1d\xfb\x54\xe2\x87\xbf\xa6\x56\x13\xae\x13\x68\xf5\xe5\x2d\xd0\x0f\xd0\x7a\x15\xc4\x3e\x13\xf9\x01\x62\x55\xa5\x2f\xe9\xa2\xba\xea\x19\x1e\xe1\xac\xd2\x86\x67\x52\x52\x3d\x20\x1f\x37\x4d\x78\x02\x24\x4a\xea\xd8\x99\x86\xe7\x00\xd1\xe8\xe0\x85\x21\xdb\xd9\x4c\x9e\x67\xaa\xa9\xdb\xc4\x91\xcb\xf0\x34\xd3\x74\xe3\xb3\x0a\x70\x41\xe7\x50\x0b\x40\x63\x88\x8c\xf5\xf4\xd9\xb7\x02\xf2\xe1\x82\xb5\xbd\x96\xab\xe3\x56\x59\xdb\x32\xe1\x64\xf2\x51\x9d\x99\x2b\x8a\x4a\x33\x37\x91\x72\x14\xcc\x0c\x13\xa9\xc4\x74\x33\x73\x13\xc9\x35\x78\x66\x4f\xcf\xa8\x55\x96\xdd\xa3\x4a\x73\x9a\x61\x1c\x15\x99\x35\x33\x51\x48\xca\xd6\x3f\x33\x8c\x9f\xa0\xb4\x66\x86\xd9\x53\xa2\xa6\x99\xb1\x46\xe8\xaa\x9f\x79\x78\x70\xae\xbe\x81\xf1\xd2\x5d\x3a\x4b\x44\x2c\x30\xfe\x66\x96\x08\x47\x60\x5c\xcc\x2c\x80\x0c\x29\x70\x74\x16\xd6\xa8\x4e\x81\x59\x92\xab\x44\xf4\x17\x16\xac\xd2\xad\xce\x92\xfc\xb5\xa4\x1f\x9a\x53\x81\x35\xcf\x42\xd4\xba\xbc\xa2\x67\x61\x5d\xcb\xb1\x6d\x16\x90\x81\x95\x54\x7b\x96\xec\xa9\xf7\xf5\x1a\xde\xd8\x51\xab\xb7\x54\xe7\x70\x54\xe9\xe5\x2a\x39\xfd\xc5\x3a\x27\x06\x73\x16\x9b\x6b\x05\x05\xce\xc6\x75\xc7\x46\x6a\xe4\x4e\x62\x23\x35\xcc\x82\x6c\xa4\x4e\x40\x84\xe0\xa1\xe7\x75\xd8\x05\x63\x27\xed\xbc\xec\xcc\x20\xbb\xe6\x44\x05\x54\x1a\x7f\x08\xee\xdd\x6e\x2d\xbc\xc0\x5b\x11\xce\xd0\xbc\x40\xcb\x12\x10\xc4\x04\x83\x32\x49\x09\x3d\x07\x59\xeb\xa4\xab\x9e\x9c\xfb\x49\xaa\xe6\x89\x2f\x74\x92\x46\x7a\x92\x1a\x3c\x0a\x9a\x66\x72\xee\x6b\x61\x90\x73\xc0\x8e\xf6\x89\x91\x3d\x4a\xbd\x30\x01\x34\x88\x52\x22\x4c\xa2\x6f\x62\xe5\x63\x1b\x39\xb9\x4d\xce\x29\x61\xfc\xe0\xbf\x01\x5d\x7c\xd0\x0f\x2d\xfe\xa4\xff\x26\x7b\xbb\xeb\xbf\xf9\xf7\x2f\x41\x9e\x4e\x42\x34\x8c\x27\x98\xd3\xe3\xfe\x34\x11\x80\x1a\x18\x0f\x3d\x15\x89\x15\xbc\x6c\x9b\x11\xad\x70\xc1\x67\x2b\x4d\xce\xc4\xbb\xe5\xf8\xaf\xe2\x75\x88\xff\xfd\x38\x54\x80\x80\x94\x6a\x13\x9c\x1c\x8d\x0d\xa9\xfd\x34\x32\xd3\x18\x21\xce\x37\xa1\x63\x29\x40\x7e\x4e\x63\x82\x14\x46\x3a\xc9\x2b\x74\xa8\x04\x3b\x92\x95\x3f\x67\x92\xe4\x3b\x56\x06\xc2\x16\xb7\x8f\x89\x96\x76\xac\x74\x59\x4b\x3b\x4a\x79\x32\x49\xaf\xa2\xe9\x04\x23\x41\xbb\x0c\xec\x3e\x9d\xf1\x53\x7a\x31\xbb\x32\xa7\x22\x08\x85\x15\x31\xf1\xc2\xd5\x8d\x00\x6a\x4f\xd2\xad\x38\x49\xe2\xa5\xf3\xc5\x71\x9d\x0e\x9d\xcb\x73\x68\x98\xf9\xaf\xbc\x09\x8e\xfe\x3f\x7b\x27\xfc\xf3\xfa\xb7\xff\x67\xfc\xf5\x73\x1c\xd6\xb3\x9f\xe3\xd0\xbd\x6d\xbf\x4d\xa0\xb5\x47\xb4\xc2\xc2\x5f\x3f\x47\xb4\x13\xfa\xe7\x88\xd7\xf9\xfb\x57\xb2\xd3\xe2\xd0\xed\x6b\x8f\xfe\xfb\x97\x3c\xa8\x0e\x5d\xb4\x3f\x47\x7c\x64\xf8\xb4\x72\xe2\xc3\x3b\x26\x5d\x2a\x02\xe5\x48\xa7\x6a\x4a\x5a\xaa\x51\x81\x97\x87\x4c\x4c\x3f\x47\x8a\x4e\xb3\xd2\x53\x84\xc6\xda\x13\x2f\x14\x0e\xbb\x53\xed\x01\x5a\xae\x28\x0f\x14\x9c\x11\xff\xfa\x09\xa7\xf1\x21\xf6\xe8\xbf\x7f\xe9\xe4\x08\x67\x85\x62\xd7\x92\xbc\x9b\xc3\x69\x92\x81\x3d\xea\xef\x5f\xca\xeb\x1f\xce\x5b\x25\x9f\x3a\x1a\xa3\x36\x5d\x08\xc6\xe2\xda\xe3\xb2\xb9\xb0\xb7\x64\x2e\xb5\x87\x7d\x67\x63\x10\x22\xef\x44\xd2\x71\x5b\xfd\xf1\xbd\x44\x79\xfd\x24\x48\x7f\xfd\x84\x74\xa8\x05\xba\xde\x15\x5a\x19\x12\xad\x4c\xd6\x4a\xe1\x83\x07\x5d\xae\xf6\x78\x4d\x0e\x37\x4a\x2e\xaf\x51\xb2\xdd\xc7\x72\x90\x0d\xd9\x98\x59\x7b\x44\x93\xce\x6c\x44\x72\x83\xd2\x6c\x53\x76\x51\x6c\x91\xd8\x23\xca\xfc\xfb\xd7\x4f\x18\x4d\xad\x26\x16\xbf\x0a\xaf\x3c\x08\xda\xd4\x1e\x2f\x34\xeb\x8b\xfc\xf0\xed\xf1\xc2\x54\x59\x69\x8a\x93\xb7\x47\x85\x66\xdf\x6a\xdb\xdb\x23\xfe\xfe\x25\xc8\xa0\x30\x8f\x06\xe5\x36\x11\x9a\x77\x1e\x28\xe3\xf7\x2f\xe1\xea\x84\x69\xcc\x91\x3d\x9a\x31\xda\x41\x94\x29\x8a\x2d\x3d\xb9\x49\x04\x39\x64\xd9\xa3\x18\x45\x25\x07\x4a\x36\x89\x5a\xe2\x5a\x90\xef\xfb\x4f\x90\xab\x96\x10\x32\xc2\x8c\xb4\xc7\x64\x6b\x89\x64\x61\x46\xca\xb1\xf5\x24\xfd\x44\x50\xd0\xae\x3d\xac\xf6\xac\xba\x62\x87\x72\xd9\x3b\x50\x68\xb3\xed\x53\x71\xe8\x61\x26\x8d\xe5\x34\x19\x44\xfc\x73\x98\x89\x5e\x98\x18\x2e\x26\x38\xcc\x44\x7b\x8c\x49\x96\x7a\x3a\xcc\x9c\xa0\xb4\xdf\xbf\x2a\x7d\xcf\x17\x14\xfb\x2a\xa9\x1c\xdb\xe0\x3f\x41\x9b\xbb\x51\x7b\xa1\x64\x3b\x5e\x75\xe3\x84\x59\x68\xa1\x2d\xdf\x56\x54\x72\xa5\x3d\xb6\x54\xa4\xcf\x08\x02\x57\xb1\x47\x93\xf5\x57\x05\x55\x2a\x93\x08\x7e\x68\xdd\x28\x58\xed\x27\x90\xfb\xe4\x08\x1a\xa2\x46\x51\x52\x96\x29\x1b\x69\x98\x8d\xb7\xa4\x18\x13\xb6\x4d\x98\x9d\xb7\x24\x3c\xcb\x9c\x1f\xe4\xc0\xff\x13\xa6\xb8\x10\x31\x55\x61\x5e\x0c\xb7\xc4\xe5\xc8\xdc\x5e\x8c\x37\xb8\xd6\x4d\x5d\x36\x56\xc5\x1e\xe0\xa4\xab\xf5\x17\x63\x67\xbb\x2e\x1c\xbc\x75\xd3\x7a\xf9\x0f\x48\x03\x15\x04\xed\x62\x8f\x53\x9e\x24\x5a\x5e\x0f\xed\x7a\x4c\x4e\x3a\x18\xe3\x87\x95\xf2\x5c\xbf\x7f\x45\x69\x1f\x83\x12\xa7\xda\x63\x9a\x34\x55\xf4\xe1\x4b\x59\x26\xa1\xa5\xc8\x62\x79\x69\xfd\x6b\x57\xbd\x12\x5f\xc4\x43\x2b\x3c\x1e\xba\xd4\x8c\x11\x88\x87\x5d\x5e\xf6\xa8\x9c\xee\x49\xb4\x06\xad\xfb\xde\x8f\x87\xdd\x5f\xf6\xc0\xeb\x5f\x94\x07\x0a\x90\x53\xa2\x0c\x28\x44\xb4\x1a\x45\x27\x62\x3c\x64\x1a\x32\x41\x22\x1e\x76\xa9\xdb\x43\x03\xca\x3b\x2f\x14\x80\x87\x8c\x12\x68\xa3\x1d\x40\x12\xda\xe2\x11\x69\x8f\xad\x68\x85\xde\xdb\xc8\x88\xd2\xb9\xd9\x8b\x7a\xd2\x6f\x68\x62\x73\xca\xa1\xd2\x3b\xa5\x23\xde\x2a\x0a\x3b\x1e\x17\xdf\xca\x57\x33\x36\x7a\x33\x79\x6f\xfa\xb5\xd6\xff\xfa\x89\x27\x23\x73\x5a\x3b\xc4\xb9\xc4\x53\xf3\x15\x4f\x29\x1e\xab\x7c\x8d\xa3\x3c\x5b\xec\x01\x4b\x64\xab\x32\xca\xc1\xc5\x1e\xb4\xc4\x78\x9b\x78\x6a\xca\xe2\x49\xe2\xd4\x62\xeb\x32\xc6\xa6\x11\x8b\xcd\x6e\x72\x13\xce\x62\xec\x1a\x55\xb9\x56\x28\x34\x34\x0d\x1b\x18\x7b\x4c\xdb\x19\xcd\x28\xb6\x21\xed\x11\x7f\xff\x92\x4b\x5f\x52\x78\x93\x3d\x92\xb1\x5f\xc6\x12\x24\x49\x93\xf6\x78\x74\x1f\x17\x91\x5e\x48\x8c\xb4\x3e\x54\xe3\x93\x20\x5c\xe5\x01\x97\x04\x7c\x6c\x0f\x3b\x96\xb6\xd7\x08\x97\xe9\xff\xdf\xfd\x9a\x84\x48\x62\x8f\xfa\xfb\x97\x0c\x11\x49\xe1\x47\xf6\x48\x46\xb1\x9a\xa7\xd6\x41\x12\xec\xab\xbc\x56\x93\x62\x74\xec\xa1\x7d\x9b\xf5\xd2\x54\x5b\x84\x6e\x84\x87\x75\x66\x8d\xe5\xc3\x79\xa3\x6e\xa4\x12\x45\xb2\xe3\xa5\x6a\xb5\xe6\xe3\x0e\x22\xdd\x76\x2f\x28\xc8\x2e\x9f\xc6\x86\xd9\x43\x86\x7c\x19\x42\xb3\x9c\xa6\xec\xa1\x4b\xdd\xd8\x88\x7c\xda\x72\xb6\x87\x0e\x14\x99\xb9\xf2\x19\x5e\xd1\x14\x6a\x1c\x84\x39\x9f\xe5\x56\x65\x0f\xdc\x22\x4e\x7d\x1b\x2b\x34\x3b\xd5\x64\xd7\xcb\x67\xe1\x53\xbb\xd6\xa4\x24\xca\x67\xeb\xa2\xd8\x59\x24\x0f\xa9\x2c\x77\x29\x7b\x18\x2f\xa3\xe4\x7a\xf9\xbc\x69\xac\x3c\x72\xa5\x1b\xca\x5a\x61\xf6\xd0\xf1\x1c\xf4\xe1\xa4\xa8\xa9\xa2\xf2\x5f\x3f\x59\xde\x52\xf6\x90\x7a\xb7\x89\x52\xa0\xd8\x5d\x60\x5c\x78\x0e\x36\xe4\xf6\x08\xbf\x7f\x29\x51\x58\xe6\xee\xcf\xba\xfb\x4f\x39\xe2\xe4\x10\x35\x80\xc1\xee\x96\x22\x07\x96\x1c\x74\x8a\xe7\x90\x75\x63\x04\x15\xa5\x6b\x3c\x07\x3b\x97\xa3\x82\x45\x72\xa8\x37\xa4\x47\x6c\xbf\x3e\x6c\x34\xca\x0e\xe4\x2e\x5b\x54\x0e\xad\x42\x62\xe0\x93\x48\x7c\xd8\x7c\xe0\x6d\x90\xc3\x45\xc3\x2e\x1a\x06\xe9\x85\x64\x03\x2a\xef\xca\x1c\x06\x6d\x15\x13\xa0\x3b\x3a\x87\x49\x5b\xe7\xfc\xfd\x4b\x3c\x40\x8e\xda\xb9\x39\xda\x70\xc8\x2b\x2f\x47\x9d\x5f\x39\x1e\xdc\xb6\x36\x7c\xd1\x6e\xc3\x9f\x2c\xc7\xab\xa0\x88\xe9\x1c\xc5\x4f\xe5\x68\xcc\x88\x60\xd4\x72\xac\x15\x8a\xb8\x27\xcd\x20\x9b\x36\x6b\xd3\x96\x60\x9c\x76\x16\x7b\x67\x0f\x3b\x51\x64\x25\xcb\xf2\xcd\xb1\x47\xd1\x3e\xb2\x76\xa6\xa9\xb2\xd2\xb4\xdb\x53\xe8\xb7\x39\xeb\x92\xcb\xb9\x5a\x43\x85\x00\x91\x33\x1f\x66\xfb\x30\xca\xb6\x90\xc5\xf1\xd8\x23\x19\x49\x2b\xb2\x1c\x1a\x99\x62\x47\x6e\x54\xfe\xa0\x5c\xc4\x3e\xe4\x62\xec\x43\x92\xa5\x3a\x17\xf1\x42\xb9\x88\x17\x3a\x15\x1f\x99\x8b\xee\xaf\x5c\xa4\x62\x08\xe2\x77\x73\xb9\x29\x4d\x7e\x11\x51\x3e\x8a\xb9\xea\xa6\xc8\xd5\x6e\x8a\x2a\x39\x27\xd7\x23\x42\x4a\x12\x26\x44\x3a\x35\x1d\xf5\xd4\x74\xd8\x3e\xce\x35\x40\x32\x8e\xa7\xe8\xd6\xc9\xb5\xf2\xa1\xad\xa0\xa2\x10\xe7\x5c\xbb\x46\xb1\x76\x1b\x45\x05\x03\xe4\x16\x35\xfa\xcd\x98\x9e\xc8\x6e\x6f\xaf\xde\x6a\xaf\xb1\x97\xb2\x10\xe6\xc6\x3e\x68\x53\x9e\x86\x26\x29\xe6\x7e\x8a\xd4\x4d\x0a\x92\xfe\x3e\x77\x36\x67\xb7\xcd\x29\xed\x7c\xee\x09\x0a\xd1\xaa\xa7\x8d\x74\xcf\x90\x8c\x9b\x09\xa7\xd6\xe0\xc5\xe6\xbf\x6c\xf3\xd7\xa0\x05\x7d\x47\x91\x6e\xc9\x38\x81\xa5\x73\x27\x2d\xdf\x5b\x4a\xdb\x78\xf2\x9e\x4e\xb4\x7c\xdb\x89\x26\x8f\xf8\x7c\x53\xfe\x9d\xd5\x08\x28\x17\x94\x5b\xf3\x61\x8d\xb8\xd9\x1c\x32\xfa\x49\xb9\x9f\x6f\x46\x06\x2b\x5c\x95\xd0\x9a\xef\x57\x67\xd7\xfd\x76\xdb\xc6\x76\x63\xe5\x7b\x68\x9d\xdc\x26\xbc\x27\xc5\xe5\x65\x99\x80\xec\x61\x97\xfb\xa9\xeb\x29\x3f\x2c\xfc\xc7\x16\x7e\x94\xdf\x52\x96\x43\xaf\x3d\x4e\xb5\xa2\x8a\x94\x21\x21\xa6\x07\x91\x06\x24\xf4\x11\xfa\x30\x6b\x39\x09\xd1\x38\x88\x1f\xcd\x82\x4a\xb5\x47\x36\xb9\x48\xb3\x21\x74\x4c\x7b\x5c\x3a\x40\x29\xbf\xd2\x0a\x3b\x2f\x0a\x1b\x44\x88\x11\xf6\x50\x2b\xd4\x73\xa5\x19\xb2\x47\xd2\xf9\x69\x55\xca\x07\xdc\x1e\x5a\xad\x15\x1a\xdd\x54\xe6\x54\xe1\xe0\xe7\x71\x68\xc9\x0d\x5b\x9f\x02\x12\xc9\xc2\x31\xb7\x87\xbd\x23\xa3\x5c\x16\xac\xa9\x3d\x6c\x0c\xe5\x89\x9c\xe5\xd9\x6d\x8f\x26\xa7\xaa\x02\xed\x85\xc6\xf9\xaf\x7b\x42\x40\xc8\xf6\x20\x1c\xcf\xda\x3a\xb8\x74\xe4\xd7\x8d\x9a\x2c\x8f\x9b\xd2\x4c\xe0\x0a\x42\x3b\xca\xca\xb4\x65\x8f\x60\xa3\x6f\x02\x70\x56\x26\x2d\x7b\x68\x3d\x89\x23\xc9\x4a\xd0\x6f\x8f\x2c\x93\xb0\x51\xd8\x44\x33\xd8\x50\xe4\xad\x1b\xfd\x9f\xef\xe1\x2c\xd1\xc2\x1e\x38\xf5\xd9\x4c\x4c\xce\x62\x98\xe3\x64\x7c\x76\x16\x57\x6c\x0f\x5c\xa8\x54\x15\xe7\xee\xbc\xb4\xa1\xa2\x48\x0f\x1f\x4a\xf3\x18\xe4\xfa\x50\x0e\x4d\x4e\x39\x6c\x72\x80\xf5\x28\xf2\x29\xb6\x87\xed\x3b\x25\x32\x2a\xa7\x78\x93\x72\x1a\x6f\xd2\x95\xa0\xb7\x9c\x05\x92\xbc\x52\xa5\x46\x29\xa7\x89\xef\xf6\xf0\x31\xb6\xd7\x82\x0e\x97\x12\x64\x32\x8a\xd2\x82\x97\xa0\xfb\xbf\x04\xa9\x95\x6c\x83\x96\x60\x7b\xdc\x1e\xb7\xf1\x47\xb6\x8d\x4b\xd0\x54\x97\x60\x23\x16\x15\xaa\x55\x82\xa4\x9b\x12\x92\x66\xdf\x4e\xc7\x12\x32\xc5\x9b\x04\xa3\xd4\x2a\x25\xe8\x1c\x2f\x81\x73\xdc\x24\x80\x12\xe8\x63\xc0\x96\x6b\xe2\x5e\x09\x12\x13\x4b\x20\x9a\xcc\x06\xac\xc4\x53\x6f\x45\x9b\x34\x00\x24\x8b\xa4\x64\x7b\x58\xb3\xa4\x93\x29\x31\x25\x91\x24\x61\x45\xd5\x18\xe9\x76\x1c\x12\x7b\xed\x0e\x2f\xe8\x07\x8a\xf4\xeb\x51\x8c\x62\x49\x9a\xfa\x92\x6c\xe9\x76\xdd\x2f\x25\x55\x48\x55\xa3\x6a\x57\x55\x49\xf7\x2d\x92\x49\x13\x49\xae\x0f\x25\x4d\x35\x42\x9a\xd7\x4c\x8d\xd9\x8e\x3b\x7b\x98\x18\x22\x6d\x47\xc9\x4c\x47\x96\x9b\xba\xe2\x11\x4a\xd6\x25\x57\xb2\x89\x5a\x20\x50\x94\xdc\x78\xcb\x18\x4b\xd2\x05\x95\x2c\x56\xba\x64\x3b\x9e\x30\x33\x17\xf9\x7c\xda\xc3\xb8\xf0\x43\xb1\xc0\x25\x4b\x2f\x52\xb2\x71\x30\xb8\xe5\x95\xfc\xdc\x90\x4c\xf2\x91\x83\x4b\xc9\x43\x33\x9b\x6d\x44\x84\xc2\x58\x8a\x0e\xc2\x52\xec\x20\x8c\xca\x76\x52\x8a\x78\xd1\x52\xe4\x20\x7f\xea\xac\x2f\xe5\x85\x26\x25\x44\x90\xef\x71\x29\xba\x1f\x8b\x54\x9a\x67\x10\x13\x5a\x0a\x63\x5d\xb4\xc4\xa2\x5c\x6c\x4a\x99\x6a\x6e\x99\x0c\xa3\x28\x03\x8a\xc9\x51\x62\x30\x4a\x35\xf1\xe5\xa7\x54\x63\x59\x8b\xc0\x58\x0a\x97\x5c\xd1\x25\x87\xbf\x5d\xa9\xda\xb1\xa5\xda\x8e\x0d\x0a\xc5\x29\x95\x35\x50\x6d\x0d\xe8\x78\x29\x55\x47\x68\xa9\x62\x72\x15\xe9\x51\x6a\xa1\xf4\xea\xa0\x96\x46\xaa\x0d\x52\xb7\xad\xde\x55\xba\xe4\x87\x52\xad\xff\x45\x46\xda\xd2\xc4\xa3\x15\xe9\x64\xab\x38\xd5\xd2\x74\x52\x95\x66\x27\x55\xd5\xdd\x51\xda\x0b\x49\x2e\x07\x8a\xa8\x2b\x9d\x25\xd0\x6d\x09\xf4\xa0\xed\x27\x77\x38\x7b\x0c\x8d\xab\x09\x99\x45\x3e\x5c\xf6\xb0\x9b\x56\x3a\xe6\x72\x89\x2f\x2d\x97\xf8\xd2\x20\x2f\xe9\x22\x07\x28\x7b\x70\x7a\x99\xbc\x56\x6e\x31\xd6\xe5\x96\xb4\x18\x85\x86\x5a\x6e\xf1\x9d\xe5\x96\x12\x38\x4a\xe9\x5d\xee\x93\xf7\x50\xd8\x4a\x13\x54\x6e\x5d\xd4\xe5\xb6\x8b\xba\x4a\x39\x55\xe4\xce\x63\x0f\xa0\x42\xad\xa7\xb7\xe4\xf7\x72\xdb\x8e\x6d\x4a\x5b\x58\xb8\x25\xcb\x6d\xc2\x7a\x17\x52\x58\x91\x43\x8a\x3d\x58\x2e\xc6\x08\x94\x9b\xd5\x28\x57\x91\x2e\x4b\x7a\xb9\xc5\x60\x95\xdb\x6e\x16\x40\x13\xca\x3d\xb4\x40\xef\xa1\x05\xda\x55\x25\x6b\xe5\xb6\xb5\x82\x3d\xbe\xdc\x93\xb6\x1a\xff\xd6\x15\x0d\x54\xee\xc9\x87\xd3\x18\x60\xb9\xe5\x17\x65\xae\xb0\x87\xcd\x9d\x94\x5b\x45\x2e\x14\xf6\x30\xd6\x40\x49\xec\xcb\x13\x2a\x24\xbb\x2b\xa2\xce\x90\x27\x0c\x48\x5a\x8b\xda\xbe\x02\x44\xb4\x07\x26\xdc\x20\xd2\x0b\x49\x3a\xe2\x43\xc5\x67\xad\xa9\x47\x66\x4a\x31\x6f\x45\xc1\xd6\xf6\x50\xa0\x85\x16\xb1\x00\x99\xec\x81\xcb\x98\x2d\x0d\x01\xea\xd8\x83\x4c\xdf\x22\x49\xbc\x2a\xc2\x78\xa9\xc2\x5a\x29\x32\xe6\xda\xe3\xb5\xc1\x0f\x36\x38\xca\xf1\x60\x8f\x62\x83\x63\x92\x4e\x51\x0e\x72\x7b\xd8\x5b\x4a\x46\x53\x84\x1d\x62\x8f\x2a\x92\x75\x5b\xd1\x6d\xf6\xb0\xe9\x90\x1f\x78\x11\x56\xb4\x3d\x40\xcb\xb4\xfb\xbc\x4c\xc6\x50\x6a\xed\xae\x0c\xa6\x45\xe8\x91\x3f\x45\x09\x18\x48\xd3\x5d\x91\x0e\x2b\x1a\x08\xc4\xc3\x8a\xee\xa0\x1e\x72\x7f\x0b\x3a\xcb\xea\x61\xd7\x80\x3d\x74\xb3\x28\x53\x45\x3d\xc4\xf0\xd4\x43\x0c\x4f\x3c\x8c\xd7\xaf\x87\x76\x4a\x3d\xe4\xc8\x1f\x15\x28\x5b\x8f\xcc\x7b\xb2\xbd\x10\xd8\x52\x0f\x31\x38\xf5\x10\x83\x13\x8d\xd7\xfb\xd3\xe5\x5c\x8f\x4a\x53\x65\xfa\x12\x36\x5e\x3d\xee\x24\xd2\x6d\xf7\x83\x57\xf6\x50\x99\x31\x3b\xd5\xdb\xfe\x42\x92\xe3\x6f\xe9\x76\xc2\x56\x49\xb0\xf6\xb8\xe4\x58\x2f\xd2\x09\xc9\x06\x2c\x4a\x6f\x50\xd1\x55\xd4\x53\x77\xf8\x79\xda\xda\xac\xa7\x76\x43\x95\x74\x99\x64\x80\xab\xa7\xce\xd3\x7a\xea\x3c\x3d\x75\x04\xd6\x53\xab\xba\x9e\xb6\xaa\x73\x34\xe6\xa9\x06\xdd\x79\x35\x9c\x1c\xb1\x0d\xda\x80\x36\x19\x9b\x6a\xb4\xa0\x8e\x06\x52\xb2\xdb\xe5\x55\x83\xb8\x84\x1a\x8c\x4b\xa8\x5a\x3f\x15\xb9\xb1\x4a\x6e\x6c\x8a\x9f\xac\x41\x2b\xb6\x4a\x48\x24\xb7\x7b\x0d\xba\x70\x6a\x90\xee\xe6\x14\x80\x41\x0d\x97\xc6\x23\xc8\x65\x25\xc8\x89\xb1\x06\x46\x32\xd8\x48\x16\x29\x9e\x6a\x18\xea\x7c\x90\x19\x54\x00\x0b\x35\x4a\xa2\xad\x91\x5d\xa2\x58\xe2\x1a\x75\xd4\x54\x82\x64\x4e\xdd\xb5\x35\x16\x7f\x6f\x8a\x2f\x35\x39\xaa\x46\x2d\xdb\xaa\xe8\x97\x22\xcb\x5a\x55\x54\x8a\x3d\xa4\x0a\xb5\xfb\xb7\x26\xc6\x03\x53\x77\x53\x58\x4f\x45\x32\xac\x92\x0c\xa3\xce\x8c\x2a\x63\xb5\x3d\x6e\xdb\x03\x26\xf3\x55\x99\x02\x7e\x6a\x32\x11\xa2\x4b\x1a\xae\x32\x5c\xdb\xe3\x51\x18\x92\xca\x97\x32\xa1\x26\x14\x9b\xd2\x34\xd7\xf4\x52\xa7\xed\x8e\xaa\x2c\xde\x55\x36\x59\x7b\xd8\xc2\x92\xef\x64\x4d\x52\xad\x54\x09\xa0\x81\x79\x97\x49\xd6\x1e\xba\xba\x8f\x08\xed\x81\xf6\xda\xf2\x50\xfb\xb3\x34\x37\x35\x9f\x88\x14\x5d\xb4\xa0\x3e\x29\x96\x24\x0a\xce\xa2\x2a\x7a\xc4\x1e\x36\x7b\x76\xca\xd6\x1c\xf9\x30\xea\xfc\x0c\xa2\x54\x28\xc6\x6c\x2b\xcc\xb1\x66\x89\xe0\x35\x9b\x40\x52\x84\x8b\x5b\x73\xe2\x2d\xdb\x8b\x55\xc2\x43\xcd\x85\xfa\x6c\xb2\x82\x90\x88\x6a\xee\xea\x63\x36\xbe\x1c\x40\xcf\x9a\xa5\xbd\xad\xb9\x13\xf0\x69\xd3\x96\x2f\xfa\x78\x61\x4f\x52\xb3\x2e\x3e\x94\x42\x57\x00\xe2\x15\x26\xa6\x8a\x89\x09\x62\x58\x2a\x0c\x4b\x15\xc3\x42\xe0\x4d\x55\x44\x8b\x3d\x14\xcd\xa2\xb1\x29\x9c\x35\xc5\xf8\xb5\xa4\x14\x28\xb5\x70\x84\x14\x1d\x21\xe8\xd8\x6a\xa9\xbc\x56\x71\x86\x8d\x22\xdd\x90\x6c\x72\xe5\x3a\x51\x8b\x4c\x19\xb5\x00\x2b\xac\xbd\x5f\xa4\x0b\xac\x45\xeb\xff\x50\x98\x4e\x2d\xd2\x22\xd6\xf2\x0c\x6b\xac\x46\xac\xb0\x04\x8a\x2d\x81\x28\x8f\x97\x8a\xa0\x5e\xeb\xa1\xb3\x45\x8d\xad\x52\xce\xd6\x8a\x72\x56\xb6\xc2\x5a\x39\x35\xaa\x9d\x1a\x55\x5e\xa5\xb5\xca\x72\x51\xab\xcc\x81\x72\xc5\xaf\x55\x46\x88\x5a\x8d\x01\x21\x28\xa7\x56\x9d\xec\xb5\xea\x64\x97\x08\x53\xab\xae\xaa\x5a\xed\xaa\x6a\xb2\x1d\xd6\x9a\x29\xcb\x76\x5c\x97\xd2\xac\x22\xf5\x57\x49\xfd\x49\x1e\x8d\xb5\x32\x49\x55\x93\x74\x2a\x0f\x41\xad\x37\x85\xdd\x3a\x80\x78\xed\xa1\xad\x72\xe0\x0c\x8a\x5f\xad\xf5\xa1\xb4\x07\x66\x44\xf3\x54\x25\x29\xd7\xfa\xc2\x64\xd0\xa9\xa1\x35\x55\x87\xd6\x94\x06\xad\xb1\xd4\x1b\x00\x69\x4d\x24\xb1\x2c\xb5\xd9\x52\xaf\xca\xf1\x52\x9b\xa4\xdb\xda\x6c\x01\x12\x7a\x59\x5b\xd3\x62\x6c\x36\x5d\x5d\x10\x81\xb5\x75\x15\xdf\xba\x71\xae\xb2\x2b\xd7\xc6\x41\xdb\x1e\x62\x9c\xec\x52\xab\x52\x62\xfc\xd4\x26\x17\x83\x33\x68\xd4\xda\xa0\x4e\x99\x3f\xad\x5b\x46\xe3\xf4\x6d\x0a\x68\x3b\xe5\x77\x55\x3b\xc7\x6f\xe7\xf8\x15\xc7\x56\xbb\x58\x88\xda\xe5\xba\x16\x94\x4a\xbf\x76\x89\xf6\xb5\x27\xb2\xa5\xdb\xc0\x75\x6e\x2b\x85\x07\x11\x2a\x54\x15\xb5\x63\x0f\x99\x8a\x95\x04\xb0\x76\x49\x43\xb5\x9b\x34\x44\x48\x62\xed\x37\x5f\x2a\x78\x5c\xa1\xdd\xb5\xbf\x6a\x2f\xb1\x2b\x5d\x77\x4a\x17\xef\x54\x15\x66\x52\xa5\x9c\xaa\x9d\xe3\xa6\xdb\x71\xd3\xa4\xe5\xaf\x97\x78\xbf\x7a\xd9\x8a\xeb\x32\xa0\x56\xb8\xd0\x2a\x2e\x34\x49\x8f\x5d\xaf\xa2\xe2\x15\x39\x91\x15\xe1\x51\x2f\x89\xe8\xf5\x92\x88\x1e\xe4\x17\x5e\xaf\xf2\x40\xd3\x6d\xda\x4e\x95\x26\xd5\x5d\xbd\xe4\x14\x17\x65\x48\xaf\x97\xb4\x8c\x55\x71\x14\x35\xe7\x7f\xe1\x9e\xbe\xba\xe6\x48\x41\x10\x51\xfe\xf2\x55\x91\x0e\xf6\xc0\x54\xaf\x61\xb8\xb8\x5b\x2f\xee\x56\xb9\x7f\x55\x85\x2d\xd8\x03\x17\x86\xa8\x06\x48\x8d\x5b\x15\xaa\x00\x16\x6b\x95\xcf\xbf\x3d\x4e\x5b\x65\xdd\xba\x28\x4e\xd4\x1e\xd5\xce\x11\x9d\x6f\xf2\xec\xb5\x07\x15\x98\x00\x5e\x9f\xa8\x19\x12\x02\x4b\x96\xa3\x75\x55\x24\xb6\x3d\xba\x0a\x83\xa4\x1e\x08\x9b\xbf\xca\xc2\x53\xe1\xfc\xaa\x38\xbf\xa4\x54\x31\x55\x20\x2d\xf6\x50\xf9\x41\xeb\xff\x81\xd5\x50\x6a\xe7\xd4\x74\xd2\x3f\x83\xc2\xac\x35\x59\xae\x96\xf5\xa5\x15\xca\x7a\xd6\xe4\x09\x51\x5f\xca\x7f\x29\xdf\xd8\xff\xfa\x72\x80\x92\x62\xea\x90\x17\x46\x1d\x1c\x2d\x40\x20\x9c\x41\x03\xa9\x94\x53\xf6\xd0\x00\x89\xab\x18\xac\x57\xa5\x98\xc9\xf2\xe0\xae\x43\xa2\x61\xc5\xcc\x4b\x08\x41\x9d\xb4\x43\x26\xcd\xd6\xb4\x49\x26\x8b\x1f\xd0\xe2\x24\x0b\x42\x9d\xdc\x1d\x82\xf3\x6a\x4d\x5c\x16\xe6\xc8\x2a\x73\x64\x4f\x0d\x52\x87\x64\xec\x93\x14\xc6\x75\x72\x44\x63\x6b\x3c\xe5\xfa\x54\x27\x07\xb2\x60\xbc\xda\xc9\x6b\x17\x75\x5e\xa7\x95\xaf\x7e\xca\x4e\x67\x8f\x5b\x6f\xd9\x08\x61\x9b\xab\xb2\xcd\xb5\x53\x3d\x9f\xdc\x27\x02\x2e\x89\xdc\x60\xf3\xa5\x4a\xe3\xb7\x3b\x2c\xc5\x84\x8f\x51\x96\xa3\xa4\xb0\xaf\x2a\x57\x09\x7b\xe8\xe2\x3e\x75\x71\x4f\x96\xcb\xb4\xe5\x92\x3a\xaf\x4d\x7a\xa9\xb8\xc6\x20\x65\x43\x9d\x32\x72\xd5\x29\x23\x57\x90\xa5\xa4\x61\xb4\x6b\x32\xda\x55\x69\xe6\xda\x11\x6f\x91\xc0\xdf\x94\xf4\xd0\x0e\x71\x28\xed\x30\x0e\xa5\x29\xa1\x60\x3b\x74\xaf\xb5\x43\xf7\x9a\x38\xe3\x76\x34\xbe\x44\xad\x6f\x87\x63\x3b\x74\x12\xb6\xc3\x76\x42\x90\x19\xb7\x9d\xd9\x46\xbb\x9d\xb8\x68\x4b\x11\xde\xe4\xc2\x60\x0f\xcd\x80\xf1\x31\xed\x94\x39\xaf\x9d\x36\xda\x49\xba\xeb\x76\xea\xf8\x69\xa7\x8e\x9f\xa0\x00\xc0\xa6\x00\x72\x7b\x68\xe3\xe7\xa8\xd2\xd4\xf9\x26\x93\x49\x53\xda\xcf\x26\x7b\x87\x3d\xee\xdf\xbf\x82\x80\x93\x5b\x90\xc8\xd2\x82\x44\x16\x99\x01\x5b\x10\xbb\xdf\x82\xd8\xfd\x53\xfe\x6a\x4d\x61\xe5\xf6\xe8\x0a\x83\xd6\x97\x05\x92\xa2\x41\x83\x32\x17\xb7\x20\x1b\x5c\x0b\x4d\x3c\xa2\x09\xe8\x2d\x6a\x0d\x35\x05\x53\x07\x29\xa6\x5b\xd2\x55\xd4\x92\x5c\x5f\x0f\x45\x0b\xb5\x2c\x9e\xb9\xe5\xa0\x8e\xda\x91\xd0\x32\x15\xe4\xa2\x3a\x35\x51\x59\x9a\x83\x96\xa5\x39\x68\x0a\xa8\x6d\xb2\x08\xd8\x43\xde\x00\xc6\xe0\xb4\x22\x53\x55\x2b\x38\x9c\x28\x37\x4e\x2b\xba\xae\x9b\x98\x13\x1b\x22\xab\xb4\x48\x79\xd0\x8a\x6c\x55\xf2\x00\x68\x45\xb7\x6e\x2b\x76\xeb\x36\x31\x68\x0d\xc3\x40\x93\x61\xc0\xba\xfb\xd7\x4f\x93\x41\xc0\x1e\xf1\xf7\xaf\x28\x60\xd5\x56\xa5\x7a\x6c\x1e\x36\x2b\x37\x23\xbb\x2d\x45\x93\x8f\xcf\x21\x0c\x81\x56\xa5\xf2\x6d\x15\x95\xaf\xa2\xf1\x5a\x9d\x7c\xab\x9c\x26\x41\xee\x0a\xad\x89\xe9\x6c\xba\x90\xcf\xc0\xcc\x34\x29\x5c\x5a\x3b\xad\xab\xb2\xb1\xb7\x26\xb9\xce\x66\xee\xf7\xaf\x5a\xaa\xde\x92\x58\xd7\x1a\x7a\x6c\x89\x2e\xad\x55\x68\xb2\xb1\xe8\x10\x6b\x4d\xbe\x25\xad\xb5\x20\x2f\x19\xeb\x43\xbb\x29\xff\x06\x55\x53\xbd\x6f\x0f\xaf\x49\x7b\x2b\x06\xa6\x35\xf1\x5f\xad\x19\xe7\xd1\x15\x9e\xd0\xda\xe4\x2d\x69\xdd\x0f\xc1\x89\xb7\x2e\x8d\x51\xd3\xb5\x9d\x94\x20\xa5\x75\x79\x89\x34\xd9\x2a\xce\x43\xb1\x46\xad\xcb\xdc\xd0\xba\x6c\x8d\xa7\xf0\x44\x5a\x97\x1d\xa1\x75\x94\x46\x41\xeb\xb9\xcb\x6e\xd0\xba\xec\x06\x41\x10\xf7\xad\xb3\x63\xba\xbc\x50\xa3\xa2\x70\x5a\x7f\x79\xcf\x0e\x92\xa6\x6c\x16\xad\x4f\x5a\x22\xaf\xcd\x53\xb9\x41\xdb\xc5\x14\x5e\x36\x85\x41\xc6\xd7\xa6\x70\x49\x7b\x18\xa7\xa3\x48\x8b\x76\xc9\x7c\xd1\x2e\x5b\xfe\x80\xd4\xb5\xab\xf2\xa1\xbc\x74\xe4\x0a\xd8\xae\x97\x0f\x15\xf1\x72\x28\x98\xa8\x29\xfc\xcd\x1e\x59\xd1\x42\xc6\x05\x37\x5d\x78\xf6\x30\x66\x59\x26\x99\x76\x4b\x3d\xd6\xee\xa4\x0b\x4d\x13\xa3\xa8\x2a\x7b\xc8\x8b\xec\xa8\xe5\x8f\x57\x76\x53\x80\x93\x3d\xb4\xe0\x93\x16\xda\xdd\x1b\x34\x98\xc0\x64\x8d\xc2\x78\xd1\x64\xbc\x68\x4a\x1f\xd2\x1e\x76\x19\xe9\xbc\x8e\xa0\x46\x29\x6b\x80\x3d\xf2\xef\x5f\xbd\x68\x79\xcb\x44\x61\x0f\x31\x69\x52\x8a\xb4\xe7\x82\x66\xcc\x6b\x10\xf0\x6f\x53\xd6\x27\x7b\x18\x1b\xd8\xaa\x2a\xe0\xbc\x12\x36\x60\x92\x39\xa9\x3d\x3a\xbe\xdb\x33\xb4\x32\x72\x10\x89\x96\x8d\x57\x24\x7b\x4b\x19\x7a\xed\xc1\xae\xd0\x72\x57\xd6\x7d\x7b\xd4\xdf\xbf\xc8\x8f\xd3\x5e\x3a\xf0\x5a\x07\xba\x04\x84\xa6\x0c\xef\xf6\x98\x22\xd9\xa0\x0a\xda\xc8\x1e\xc9\x48\x3a\x0d\x07\x3b\x96\x5c\xdb\x87\x64\xaa\x86\x06\xa7\x49\x83\x73\x9e\x0a\x71\x6c\xb2\x78\xd8\x43\xea\x0f\x46\x68\x88\x87\x6f\x43\x6e\x32\x51\x50\xc2\x6d\x70\x08\x0b\x9a\xb4\x49\xe9\xd5\x06\x27\x9d\xd4\x3b\x64\x76\x68\xf2\x88\xb4\x87\x6c\x5d\x26\x14\x36\x3c\x03\x1a\x09\x61\x0f\x4e\x98\x49\x47\xe5\x56\x75\x1e\x4d\x1b\x7b\x72\x84\x01\x38\x1f\x84\xd0\xd6\xf0\x4f\x6a\xc0\x7d\x06\xe1\xa9\xb5\x99\x79\x2f\xe3\xd6\xa3\x9d\xa2\xcb\xdf\x1e\x78\x7a\x51\x07\x67\xdd\x24\xd2\x4c\x9e\xf5\xfd\xd0\xa9\xd0\x0f\x3b\x15\xb2\x9a\xd2\x0f\x71\xca\x5d\xf7\x5a\xd6\x76\xef\x87\xb8\xfd\x7e\xf4\xb6\xa2\xfa\xfb\x61\xc2\x86\x3d\x64\x9a\x3f\x45\x12\x57\xdc\x0f\x9b\xda\x26\xd8\x92\x7e\x68\x27\x76\x81\xba\x34\xf9\xb8\x75\xb9\x96\xd8\x03\x93\xb7\x0d\x52\x97\x93\x81\x3d\x64\x4b\x4e\x26\x26\xf4\x33\x5e\xd0\xb4\xff\x85\xab\xd0\x85\xee\x62\x0f\xe2\x2a\x8d\xa9\xe8\xa7\x76\x54\x3f\x6d\x60\xaa\xe2\x2a\xba\x9c\x11\xec\xa1\xf5\x60\xe3\xd6\x4f\xfa\x79\x2a\x5e\xe9\x68\x5d\x35\x34\x6a\x55\x4c\xc8\x21\x87\xf0\x7e\xea\xb8\xee\x27\xc7\x75\xca\xaa\x55\xdc\x70\x3f\x8d\x1b\xce\x02\x11\xef\xa7\xe4\xe7\x7e\xca\x08\x10\x94\x00\xb2\x9f\x83\x06\xdb\x28\x34\x39\x84\x77\xa9\x8e\xec\x61\x0c\x4f\xd2\xb8\x05\xf1\x06\x3d\x20\x25\xc9\xa3\xbc\x87\x09\x0d\xe8\x77\x46\x2e\xea\x48\xec\x51\x47\xe2\x29\x11\xba\x0b\x08\xc4\x1e\xaf\x7c\x97\xad\xab\x82\xe3\xb0\x47\xc7\xe5\x05\xda\x05\x0d\xb7\xd4\x6c\xa3\x94\xb2\xfa\x9f\xb2\xcd\xb3\xbc\xef\x7b\x2a\x7c\xaa\x93\x20\x0a\x6a\xa1\xcb\x5f\xd1\x1e\xc3\xe4\x76\xe3\xf6\x7a\x92\x41\xad\x27\x19\xd4\xa2\xa0\xc1\x7a\xbe\xf4\x69\xc6\x57\x34\xd8\xb4\xca\x0d\xdd\x1e\x97\x0c\xac\x87\x68\xe2\x0a\xbb\x54\x0a\x59\xfe\x8c\x3d\xbf\x1a\xb8\xac\x30\xc2\x10\x8d\x87\xed\xf9\xe5\x35\xcc\x1b\x02\x60\xe9\x45\xa2\x75\x2f\x49\x5e\x30\x5a\x24\x45\x46\x9c\x5e\xec\x92\x0d\x92\x05\x7a\xb1\xfb\xcd\x1e\x72\x1c\x33\xa6\xad\x17\x26\x55\xaa\x85\x28\x60\xd6\x2e\xfd\x82\x3d\xec\xc4\x38\xec\x2c\xe8\xa5\x53\x96\x9d\x12\x5d\x80\x37\xbd\xe8\x4c\xed\xc5\xce\xd4\x28\x37\xf9\x2e\x7f\x01\x7b\x34\x3b\xbf\x8d\x41\xeb\xc2\xcf\xb0\x47\x55\xf1\x6a\x84\xa4\xf4\x2e\xc3\x4d\x54\xf8\x5f\xaf\x3a\xca\x7a\xb5\xbd\x9f\x84\x41\xd1\x65\x22\xb1\xc7\x43\x27\xa1\x0d\x68\x92\xe5\xe5\xce\xdf\xab\xdc\xbe\x7a\x8d\x5d\xd0\x26\x51\xa4\x17\xd2\xd0\xdc\xa9\x82\x4c\x69\x76\xbe\x67\x69\xc4\x7b\x95\x41\xab\xcb\xb2\xd2\xc5\xdc\xf4\x2a\x51\xac\x57\x45\x8d\x47\x89\x1a\xbd\xbe\x14\xa6\x30\x8a\x20\xe7\xc9\x2e\x84\x0e\x7b\x0c\xda\x61\x53\xdc\x74\x5f\xf6\x26\x96\x47\xee\x83\xbd\xc9\xc3\xa4\xb7\x43\x5e\x1a\x76\x99\x77\xe9\x12\xec\x61\xac\x81\x3c\x28\x3b\x8c\x4c\x17\x23\x13\x95\x78\xb8\x37\xb1\x01\xbd\x99\x3c\x9c\x64\xa4\xeb\x8d\xe5\xdd\x14\x8c\x14\xe4\xd9\xdb\x1b\x13\xdc\x84\x5c\x1c\x94\x79\xa0\x37\x79\x51\xf4\xa6\x58\x95\xa8\xd8\xc4\xde\x2e\x2a\xbd\x70\x19\xa7\x6d\x62\x5b\xba\xd8\x96\x33\x88\x7b\xec\x8d\x6e\xb5\x29\x7f\x11\x63\x3b\x7b\xd7\x31\xdb\x3b\xc7\xac\x1c\x14\x7a\x67\x66\xba\x66\xe6\x14\xd0\x61\xef\x92\xb4\x7a\x97\xdc\xa9\xe3\xbe\xf7\x8b\x4f\xf1\x21\x11\x82\x6b\x17\x84\x85\x3d\x12\x21\xd7\x7f\x36\x59\xf7\x4e\xa3\x80\x9e\x38\xbb\x26\x58\xb0\x0b\xf6\x50\x27\x43\x85\x76\x41\xb3\x53\x58\xe2\x4d\xbf\x74\xa6\x77\x69\x07\xce\x28\xfc\xc9\x2e\xdb\xd5\x4f\x17\xe6\x40\x62\x18\x2f\x1a\x25\x26\x25\x2b\x9c\xac\x63\xc1\xea\xb2\x60\x25\x05\x78\xf5\xfb\xd0\xda\xb8\x05\x74\x11\x84\xdd\xd5\x6f\xe6\x49\x36\xab\x33\x0a\x89\xa5\x2b\xdc\xfe\xa7\xdf\x92\x60\xa3\x80\x10\xfa\xcd\xe8\xe0\x1e\x72\x48\x90\xeb\x8a\x90\xb7\x47\x50\x43\x44\x92\x57\x74\xbf\x95\x49\xf5\x10\x63\xda\x6f\x0e\x49\x19\x9f\xce\x20\x7f\xad\x2e\x83\x90\x3d\xb0\xa5\x19\x0b\xd7\x1f\x56\xb3\x84\xfd\xac\xfc\x62\x5d\x08\xa1\xf6\x08\xf8\xb7\x59\x2f\x5e\x76\x10\x30\x69\x41\x16\x85\xfe\xca\x10\xde\xc9\x09\x1c\x0e\xf5\x42\x59\x8f\xec\xa1\xde\x56\xde\x93\xe0\xd6\x5f\x09\x6e\x41\xea\xe6\xfe\x32\xc9\xa4\x86\x0b\x32\x5b\xf5\x97\x93\xed\xd5\xc9\x16\x65\x91\xea\x82\xbb\xb7\x87\x09\xec\x2c\x72\x85\xec\xd9\x03\x99\xcc\x98\xad\xae\x04\x18\xf6\x78\xf5\x9a\xd5\x8a\xfb\x76\x97\x78\x7f\x9e\x4a\x08\xd4\x95\xcf\xcc\x1e\x05\xe7\x94\x28\x1a\x9f\xea\xac\x17\x96\x5d\x1f\x5c\xa6\x43\x6c\x6d\x94\x1e\xae\x2b\x20\xe2\xa7\x8b\xa5\x38\xcf\xe3\xb0\xf7\xd0\x09\x74\x74\x02\x41\x5e\xcc\x1d\x1e\xa1\xcb\x8b\xf9\x0c\x42\xc7\xe8\xf0\x08\x5d\x3c\x42\x96\x3a\xa1\x4f\x6e\xce\x29\x43\x40\x54\xcc\x7b\x9f\x8c\xdd\x14\x2c\x40\x54\xc8\x6c\x9f\x6c\xc1\x49\x9c\xa4\x27\x4d\x49\x91\x1c\x07\xeb\xbf\x93\x68\x2a\x21\xe6\xa5\x04\xf2\xee\xfa\x2f\x79\xfd\xc3\xfe\x9b\xb1\xcd\xeb\xbf\x85\xbf\x09\xf2\x2e\x39\xee\xeb\xfa\xaf\x42\x23\x1a\x88\x9e\xe9\x21\xed\xdf\xfa\x6f\x26\xf6\xe6\x5c\x7f\x93\x40\xec\xff\x55\xf4\x8d\xe3\xda\xe7\x83\x04\x0f\xeb\xbf\x95\x54\xc0\x3b\x2f\xc1\xe0\x3b\xfd\xb7\x7d\x81\xd7\x87\x26\x78\xe0\xb4\x5b\x00\xfe\x20\xd0\x62\x1c\x64\x52\xd4\x94\x8c\x43\x3a\xca\x81\x99\xad\x28\x94\x62\x1c\xc9\x69\x04\x62\x2a\xc6\x5d\x36\xb7\x9f\x71\x64\x72\x3c\x28\x2c\xf9\x10\xc3\x3e\x0e\xc1\xa8\x80\x90\x3f\xe4\xf6\xf9\x33\x0e\xf2\xf5\x81\x66\x77\x54\x68\x0a\x5a\x2d\x59\xb1\xad\x87\xd6\xee\x38\x04\x44\x50\x32\xd0\x7a\x0a\xe1\x18\x87\x34\xc8\x45\x49\x9d\xc6\xf1\x50\x07\x29\x90\x05\x1f\x3b\x0e\xe9\x69\x87\xd8\xb5\xb3\xc8\xa1\x77\x1c\x93\x3a\x48\xc5\x23\xf7\xae\x71\x48\x4f\x3b\x0e\x05\x4d\x16\x99\x3c\xc7\xc9\xb8\xe0\x77\x5a\xc4\xcb\x0f\xcc\x75\xe3\xc4\x24\xa6\x9c\xc9\xe3\x94\xaf\xde\x38\x89\x21\x26\x04\x18\xc6\x6f\x9c\x89\x84\x51\x02\x4e\x12\x77\x67\x0f\xcf\x41\x2b\xc0\x3d\xb1\x34\xe3\x14\x4b\x53\x08\xab\x3d\xa5\x4b\x1d\xa7\x42\x6e\x48\x6c\x38\x4e\x19\xbc\xc6\xa9\x20\xf7\x02\x56\xcc\x29\x3e\x67\x9c\x9e\x00\x51\x41\xa8\x04\x91\x0c\x71\x7b\xa7\xc3\x31\x9c\xe2\x09\xc6\xd9\x69\x4b\x03\xf4\x2f\x41\x23\x02\x57\x21\xbc\x84\x9b\x8c\x93\xbc\x69\x4a\xbe\x3f\xe4\xda\xfa\x33\x08\x38\x29\x60\x62\x9c\xb7\xc6\x59\xfe\xac\xb6\x2e\x55\x9e\xe4\xa5\x71\x3e\xac\x47\xda\xf7\xd0\x37\x4f\x82\xa0\x28\x76\x69\x76\x7e\xc6\xc9\x38\xcb\xf4\x32\x82\x6e\xe4\x21\x6d\xce\x59\x9a\x82\xf1\x83\xce\xbf\x11\x74\xfe\x95\x9e\x80\x07\xd4\xb7\xc1\xd7\xb5\x10\x04\xa4\xc8\xf9\x19\x81\x71\xd1\x79\x3a\x50\xe8\x8c\xd0\xa0\x75\x80\x02\xd5\xbe\x00\x0c\xa7\x02\x09\x46\xd0\x1e\x1b\x81\x50\x5d\x22\xd1\x71\x52\x1d\xe1\x86\x26\x94\x81\x70\x43\x1b\xb8\x5a\x3b\x42\xa0\xc6\x39\x80\xd3\x00\x58\x64\x98\xf4\x63\x12\xcc\xaa\x70\xe3\x28\x49\x79\x44\x90\xa5\x41\x8f\x8c\xa7\xd3\x88\x82\xd3\xfc\x46\xdd\x50\x23\x46\x87\xea\x17\x3c\x9e\x64\xb8\x11\x23\xc8\x7a\x0a\x9b\x8f\xba\xa1\x46\x04\xb9\x5b\xc1\x45\x23\x26\xca\x43\x4f\x22\x57\xce\x11\xc5\x3e\x8f\x48\x8a\xf5\xd3\xb1\x07\x5f\x68\xe4\xa8\x07\xf6\x4f\xec\xca\x88\xd9\xd3\x6c\x0a\xf0\x4f\x67\xc8\x88\xe4\x36\x93\x86\x73\x44\xf1\x65\x23\x6a\xff\xa6\xb3\x03\x47\x98\xa0\x81\x09\x78\x9c\x7f\x64\x12\x46\x64\x6a\x22\x19\x39\x65\xa3\x1d\x72\xc7\xb5\x87\xc7\x0e\x6a\xd8\x2a\x4d\x25\xb3\x8c\xd4\x30\x23\x36\x9a\x0a\xb6\x6f\x60\x88\xe4\xcb\x37\x22\x40\xd5\x32\xb9\x8c\x28\xb5\xff\x88\xc4\xbd\x03\x54\x15\x39\x42\xe2\x03\x0d\x90\xc6\x87\xb6\x3c\x68\x46\xb5\xec\xe2\xc3\xf0\x02\x24\x1a\x41\x5d\x7c\x79\xef\x25\x73\x90\x8e\x24\x49\x2a\x3f\x23\x0e\xcf\x08\xac\x69\x18\xbc\x47\x3a\x18\x80\x9e\xe2\xe4\x3d\x92\x25\x48\x76\x1a\x44\x59\x8d\x44\xee\x72\x19\xa0\x47\x92\x3c\x35\x88\x36\x23\xab\xdf\x50\x30\xf6\xcf\x48\x2b\x35\x8c\x10\x07\x39\x82\x53\x20\x08\x1e\x7c\xc4\x48\x79\xe4\x72\x01\x83\x49\x22\xd2\xcf\x48\x19\xb8\x61\xc5\xc4\x27\xd9\x63\x46\x62\xba\x94\x14\x67\xa4\x42\x79\x20\xe1\x09\x1d\x7a\xa4\xa2\x6d\x4b\xe0\x74\x4a\xb4\xaf\x52\x5e\x03\x60\xb5\x00\x65\x58\xa0\x91\x64\x07\x78\xc5\x4e\x5b\xb4\xcd\x92\x0c\x7b\x23\xc9\x26\x38\x12\x63\x2f\x47\xbc\x21\x4f\xea\x9f\x91\x40\x93\x07\x68\x26\xbd\xd4\xc1\x58\x49\x01\x3a\x32\x63\x95\xc9\x5f\xa2\x3c\x19\x23\x4b\xc9\x3d\x32\x63\x25\x1f\xc1\x91\xd9\x3e\x39\x38\x4d\x80\x86\x92\xc7\x47\xf6\xb4\x38\x11\x2c\xc4\x02\x0d\xfc\x62\x41\x59\x64\x69\x1e\x46\x26\xa5\x81\x5c\x3d\x47\x96\xaa\x60\x64\xf2\x16\x81\x1c\x90\x2f\x68\x9e\x41\x9d\x6f\x4d\x4e\xfe\x19\xf9\x85\xc6\xb7\x92\x04\x87\x24\x41\x19\x63\x46\x7e\xa9\x15\x68\x78\x30\x8b\xf0\x99\x1b\x59\x3c\x4f\x92\x9f\xeb\xc8\x62\x16\x46\x66\x04\xe4\xd8\x38\x0a\x23\x50\x88\x3f\x55\x1a\x83\x51\xb8\x84\x0a\x31\xb5\x0a\x53\x1f\x45\x02\xc0\xc0\x58\x9d\xa4\x1a\x1c\xc8\x9a\xa3\x68\x76\xc9\x6a\x39\x4a\x81\x86\x1b\x29\x00\x29\x45\xda\xee\x51\xd8\x31\x5d\x10\x32\x78\x96\x0f\x3c\xcb\xb3\x92\x9a\x8c\x72\x51\xef\x45\xfa\x10\xf0\x1d\x2f\xf5\xa3\x00\xdf\x73\x80\xec\xc8\x65\x50\x48\x6d\x7d\x08\xff\xa4\x4c\xbe\x55\xdf\x1c\x57\xa1\xd2\xb7\x0a\x6e\x15\xc8\x9b\x95\x59\xab\xc0\xb4\x28\xf7\xe0\xa8\xac\xc8\xba\x32\x74\x0b\xbc\x51\x7c\xf4\xa8\xd2\x98\xe6\x70\x02\xdb\xa8\xb6\x54\xe5\xc9\x27\xbb\xea\xa8\x92\x9f\x46\x05\x2c\x0c\xe8\xca\x2a\x35\xe7\xa8\x2b\x4d\x8e\x80\x1d\xe5\x3c\x38\xea\xf4\x94\x35\x42\x6e\xa4\x7d\xed\xf0\x74\x56\x45\x34\x8d\x5f\x03\x9f\x0b\x0c\xc3\x16\x54\x5e\x03\xb4\x31\xea\x10\x6d\x32\x6b\x8e\x46\xae\x22\xe5\xeb\x1d\x98\x9b\x47\x03\x0a\x66\x61\x40\xf2\x2d\xf5\x2a\x9d\xca\xe8\xd4\xdb\x3d\x83\xa7\x90\x43\x70\x82\x1f\x72\x82\x3f\xdb\x09\xcc\x9f\x62\x03\x47\x2f\x9e\x88\x1a\xe4\xc8\x08\xcd\x21\x1f\x05\x14\xc8\xa9\xdb\x1d\xef\x52\x97\x5f\x67\x1d\x74\x32\xe1\x70\x59\x75\x31\xc9\xa3\x03\xa7\x25\x0f\xe7\xd1\xa5\x70\x1f\xbd\xe2\x07\x13\x81\x90\xd4\x98\xf6\x06\x50\x62\x06\x2f\x92\x6f\xc1\xae\x02\x94\xa4\x73\x1a\xf4\x0e\xd4\x22\xed\xeb\xf4\xa3\x3b\x84\xa3\x20\x0e\x3b\xfd\x00\x9d\xea\xd4\xce\xea\x5c\xce\xdd\xd1\x3f\x2b\x34\x7f\x8f\x70\x79\xca\xe3\xc2\xee\x00\xd5\x29\x55\xe0\xe8\x30\x87\xfd\xa6\x1f\x9a\x8f\x7e\xd3\x0f\xf9\x3f\x36\x19\x4e\x07\x36\xf1\xd1\xc1\x16\x00\xbd\xab\xdf\x3a\x0d\xba\x83\x7e\x32\x1f\x0f\xdf\x3e\x8e\x1f\x06\x64\x24\xfd\x00\x8a\x40\xfe\x52\xa3\xbf\xf4\x17\x5c\x95\xe0\x60\x90\x8c\xfd\xeb\xd0\x91\xaa\x63\xf0\x1e\xc9\xc7\x58\xa7\x7d\x50\x87\xe4\xc7\x06\x9c\x72\x1f\xf4\x6d\xf2\x9e\x43\x3b\xf2\x9e\x98\xd7\x16\x98\x23\x98\xd7\x4e\x86\xd3\x00\xde\x20\x6b\xe8\x02\xb4\x27\x00\xed\x27\xed\xcd\xb8\xc0\xe0\x0f\x00\xe7\x71\x96\x5c\x87\x83\x44\x82\xf1\xa8\x3a\x2e\x10\x59\x14\x30\x3e\x2e\x09\x39\xe3\xc2\x1f\x2a\xfc\x0b\x1a\x81\x71\xc9\xa5\x66\x5c\xa0\xd7\x29\xa9\xc8\xb8\x02\x45\x83\x4e\x17\x2a\x58\x91\x34\x21\x3a\x4d\x08\x7c\xd1\x69\x98\x15\x81\x43\x84\x1f\xba\x80\x30\x57\x9e\xf1\x71\x49\x26\x1e\x17\xb0\x54\xe0\x12\x5f\xf0\xd9\x17\x50\xcb\x4a\xe2\x33\xe4\x98\x60\x0f\xf0\x0c\x05\xb3\x83\x4d\x64\x5c\xe2\xb3\x1b\x17\xfb\x05\x9f\x2d\xdf\x05\xa3\x69\x88\xd8\x52\x17\x08\xb1\x42\x2c\x19\x97\x6c\x1b\xe3\x02\xf1\x22\x32\xbc\xf0\x98\x17\xee\xf8\xe0\xb0\x5e\x4d\xcb\xe9\x62\x0b\x00\x3d\x77\xb1\xdc\x2f\x90\xd9\x64\x9d\x1a\xd7\x45\x1d\xc0\xb0\x39\x6c\x26\x47\xeb\x45\x12\x6c\x8e\x95\x8b\xa5\x7d\xb1\xb4\x1d\xa8\xf2\x66\x5a\x49\x4b\x28\x6d\xd8\xb8\x6e\xfa\xf1\xd0\x0f\xc0\x1c\x1f\xea\x65\x79\x02\xe6\x8a\x4e\x65\x5c\x2f\x48\x7d\x8c\xc1\xcb\xb7\x2c\x4f\x30\x90\x2f\x19\x27\xc7\x35\x1c\xca\x10\x1a\xfd\x25\xe5\x4e\xd2\xf2\xbc\xe0\x8b\x2f\xc9\x5b\x2d\x01\xf2\xc9\x92\xbd\x40\xe5\x4d\xa0\x66\x4e\xc6\x0f\xa0\xe7\x04\xa8\x25\x47\xf0\x05\x5e\x69\x02\x3d\x0e\xd9\x00\x6d\x4e\x4b\x09\xa4\xc5\x0a\x8d\xf7\x40\x7c\x83\xa7\xbe\x81\x98\x4a\x8e\xae\x98\xa1\x69\xfc\x12\xb8\x8a\xf2\x5b\x18\x77\x60\x0c\xb4\xfe\x6e\xa9\x69\xc6\x1d\xc0\xee\x04\xc1\x4d\x66\xdc\x71\x8b\x1f\x6f\x1c\xd5\xb7\x14\xf7\x43\x31\x44\xf6\x1e\xb4\x01\x8d\xb6\x74\x30\x15\x35\xa6\x37\x88\xed\x4a\x9d\x37\x6e\xf8\xf1\x3b\x79\x7a\x60\x80\x13\x6f\x68\x98\x2d\x74\x74\xdd\xf0\xe8\x37\x30\xcd\xf2\x01\x1c\x37\x0c\xca\x0d\xbe\x11\xb2\xc6\x9d\xe9\x9b\xe7\x73\x3c\xa0\x51\x07\xf9\xf7\x60\xb4\x08\x52\x1a\xa8\xaa\x72\x15\xc3\x78\x17\xc6\xb4\x80\x6b\x77\x80\xb4\xc8\xb7\x0e\x35\x0c\x72\x5e\xa1\x5e\xa0\xa9\x80\x14\xbb\x2b\xef\x81\x73\xda\xf8\xb6\x32\x06\x5c\x11\x19\x38\x3d\x98\xf5\xbb\x39\x4c\xa3\xfa\x06\x9b\x71\x73\x6d\x64\xad\xab\xbb\x31\xce\x0d\xf4\x3e\x70\xfd\x3a\x73\x09\xb4\x70\x03\x7a\x11\xd9\xf4\x06\x1e\x4d\xba\x90\x81\x61\x70\xdc\xdd\x81\x14\x55\x47\xa7\xbc\x0e\xce\xa0\xb0\x98\xe4\x56\x6e\x0f\xb0\xff\x40\xb0\x64\xbf\xdd\x9e\xcf\x07\x74\x45\x64\xdd\xfb\x62\x4c\x81\x35\xbc\x58\x6b\x97\x67\xd6\x04\x11\x91\x79\xf3\x24\x34\xd4\x71\x33\xa6\xb7\x43\x1a\xaa\x7d\xb2\x42\x8f\xfb\x66\xac\x00\xcb\x64\x5f\xde\xc0\xa2\x36\x87\x3e\xa4\x5e\x50\xf5\x33\x6b\xfc\xa1\x0e\x4f\xb5\xe0\xd8\x83\x8c\x01\x29\xe1\x1a\x6b\xfc\x65\x7e\x5f\x4f\xb6\xaf\xf1\x7b\x19\x03\x80\x4f\x1b\xe8\x82\x83\xf6\x91\x4c\x50\x61\xfa\x83\xa0\xb3\x71\x93\xfe\xab\x81\xab\x89\x10\x73\xe3\xc0\x9d\xa9\x63\xd0\x96\xe1\xb9\xbf\xd5\x37\xae\xa6\x7b\x90\xae\xaf\x82\x60\x48\x1d\x80\xa7\x36\xf0\x40\xd1\xb5\xdc\xd3\x13\xcd\x03\x6e\x48\x3f\x60\x79\x1a\x88\x83\xd2\x85\x8d\xe7\xa0\x2d\x02\xb8\x7c\x14\x8a\x30\x1e\xcf\xd3\x0d\xbc\x1d\xec\xd7\xca\x33\xad\x73\xed\x81\xf5\x7d\x3c\x7f\xee\x01\xad\x43\xa3\xcd\x80\xde\x71\x85\x3d\x27\xd9\x51\x74\x15\x3f\xdc\x51\x4f\x00\xbc\x50\xe7\xdf\xc3\xde\x97\x0b\xff\x99\xa5\x72\x1f\x0f\x42\xd6\x23\x1c\x9a\x2c\xfd\xde\x50\x3e\x2d\x7b\xf8\x7b\x82\xf9\x93\x13\xec\x20\x1c\x8f\x0c\xca\x83\x78\xbc\xf1\x90\x80\x29\x3b\x5a\x22\xfd\xe0\x8e\x52\x82\xa9\x41\x90\xde\x78\x3c\x0d\xb2\xee\xb7\x07\xf9\xfc\xc9\xd4\x0b\x12\x20\xf2\xf9\x4a\xbd\xce\x18\xa0\x5f\x7b\xc8\xff\x80\xee\x8b\x50\x82\xa1\xa8\x3e\xcf\x6f\x36\x88\xe7\x1b\x0f\x00\xe7\x85\x31\x60\xff\x3e\xe0\xc9\x29\x21\xcb\x78\xd8\xab\x64\xd9\x6f\x25\xfe\x0b\xb2\xfd\xc3\xf5\xf7\x80\x22\xde\x01\x1d\x6c\x5e\x34\x43\x2e\x6e\x99\x58\xc1\x41\xac\x60\x93\x55\x7b\x28\x5b\x9c\x3d\x68\x2a\x18\x92\xfd\x82\x06\x4e\x9f\xae\x83\xa7\x53\x5e\xa7\x3c\xe0\x31\x2f\xa6\xf0\x72\x80\x45\x4d\x03\xdb\x9b\x74\x5d\xad\x00\x03\xc9\x56\x7e\xe0\x28\x51\xe7\x3d\x70\x94\x0f\x12\x0d\x48\x76\x0f\x1c\xe5\x83\x0a\xb8\x80\x27\x79\x31\x94\x37\xe0\x95\x5a\xee\x0f\x1c\xe5\x73\x83\xd8\xc8\x32\xbe\x59\xb2\xb7\x03\x2f\xaa\x2d\xa8\xcb\x1e\xb6\xa3\x6c\x8f\xe3\x41\x2d\x29\xc7\x81\xb3\x90\x41\xe0\x61\x3b\x3e\xa8\xc6\x0e\x10\xf6\x50\x1f\x91\x21\xac\x80\x33\xa7\xec\x60\xf6\x28\x78\xe5\x83\xcd\x58\xa1\xd1\xb7\x02\x2a\xa3\xea\x7d\x81\xf2\x2e\x05\x6c\x45\xbe\x3d\x01\x35\x14\x9b\xf1\xca\x9b\x73\xbc\xa7\x23\x3a\x82\xb4\xa8\xf6\xbd\x64\x05\x3d\xc0\x7f\x14\xea\xc9\x78\x51\x09\xa3\x1a\x7b\xe5\x7a\x30\xde\xe0\x20\x89\x6a\xb3\xcc\x4e\xe3\x0d\x80\x20\x82\x0e\x88\x3a\xef\x15\xa2\x53\x21\x7b\xc6\x8b\x3a\xef\xf5\xb4\x6c\x80\x15\xa2\x36\x7d\xc9\x6d\x4b\x96\x8c\x17\x56\xf0\x8d\x0e\xde\xa8\x31\x80\x15\x24\x89\x74\x53\xca\xdb\x81\x33\xe3\x90\x33\xe3\x59\x50\xd3\xbd\xb2\x18\x0c\x59\x4e\xec\x3d\xe1\x11\x72\x3d\xbf\x09\x00\x4a\xb1\x55\x2f\x7a\x01\x72\xa4\x15\x92\x58\xbc\xa8\x66\xdf\xc4\x5c\x8a\xc3\x7f\xb9\x9e\x5f\xae\xe7\xd2\x81\x7e\x64\xac\xc8\x4a\x45\xfe\x09\xa5\xac\xb7\x07\xe9\x54\xc4\x6a\xbd\x5c\xd9\xa4\x60\x2e\x48\xbb\x2f\x2c\xe8\xeb\xc9\x4e\x24\x31\xbc\xa8\x34\x49\xb3\x5c\xd0\xc9\xbc\x5c\xc5\x9e\x38\x90\xc4\x06\xaf\xfc\x77\x86\x2c\x40\x46\x53\x5b\x90\xd6\xc8\x58\xd4\x48\x12\xf0\x72\x65\xbf\xba\xb2\x49\x5e\x36\x5e\xf4\x6b\x6f\xa3\x3c\x1d\x5d\x6f\xa3\x3c\xd4\xa6\x67\x04\x63\x92\xf6\x49\x37\x52\x90\xc6\x95\xdd\xd9\x1e\x0e\x52\xa9\x7e\x34\xe6\x9c\x9c\xa8\xf2\x12\x1e\x2f\x7a\xb8\x17\x75\x32\x89\x04\x5e\xae\xd8\xf7\x72\xb4\x4a\x00\x2a\xa9\xe3\xe2\x5b\xe0\x45\xd9\x6f\xaf\xa7\x1f\x64\x0d\xa1\x57\x79\x89\x9e\x41\xba\x7a\x91\xae\xde\x97\x38\x81\x03\xf0\x4a\xd6\xc1\xe0\x3d\xda\x37\x68\xb3\x22\xdd\x4a\x00\x4b\x73\xb2\xfe\x26\xe9\x9e\x80\x0b\x85\x55\x25\x6b\x54\x91\xff\xfa\x18\xec\x41\x10\xcc\x0a\x52\xd3\xe0\xca\x21\x53\x7c\x09\x05\x9a\xd6\xe4\x60\xcf\x28\x6e\x67\x0c\xf6\xcc\x40\x8d\x4d\x02\x9b\xc1\xba\xc7\x35\xa7\x20\xc6\x0c\xae\x0d\xf2\x31\x97\xa8\x2b\x6c\x60\x46\x19\x19\xf7\x6f\x81\x46\x0f\xd6\x95\x5c\x6c\xcf\x12\x41\xd1\x64\x0d\x91\x65\xb9\xa0\x77\x1c\x5c\x07\x43\xfa\xbf\x12\x1d\xf9\x92\x7a\xc9\x08\x0f\x86\xfa\xa8\xd4\xcb\xfc\x02\x34\x3f\xd0\x7d\x81\xb9\x54\x10\x45\x06\x62\x8c\xa7\x1f\x05\x94\x7f\x20\xc6\x78\xae\x65\x10\xeb\x71\x27\x1a\xa4\x39\x2b\xa0\xcb\x0f\xd8\xaf\xe1\x73\xce\x98\xca\xcf\x62\x78\xf2\x75\xa0\xe2\x07\xe2\xce\x40\x42\x07\xc5\x2d\x8a\x2d\x98\x11\x90\x4a\x05\xc1\xcf\xa8\xab\x7d\x46\xae\x53\x41\x88\xcf\xa8\xbd\x3a\x51\x77\xe3\xfe\x39\xa3\xea\x9d\x42\x02\xf3\xe4\x65\x13\x3d\xf0\x8c\x2b\xa1\x99\xca\x53\xb0\xe4\x8c\xa0\xdb\x0b\x99\x74\x46\xb1\x73\x33\x82\xaf\x28\x18\xd2\xa9\x48\xdf\x9f\x19\x27\xef\x55\x7d\x3b\x69\xdf\x04\x8b\xaa\x09\x4a\x52\x92\xf7\x4c\xa4\x33\xab\xe0\x39\xd2\x8f\x74\x00\xd0\x09\xdc\xa2\xf4\x98\x93\xbc\x35\xb5\x1d\xc0\x6c\x3e\xd0\xc0\xb6\x14\xda\x21\x21\xc4\x53\xaa\xdf\xb3\x36\x10\x2a\x25\xb2\xcc\x14\x1c\xaf\x93\xf7\x34\x06\x29\xfa\x7b\xa2\xe9\xec\x9c\x09\x20\x43\x21\x82\xcf\x94\x68\x9f\xc6\xaf\x6a\xbf\x4d\xf4\xc5\x33\x91\xff\xe0\xac\xe9\xbf\x5e\xf7\xad\xfc\xf7\xdb\x7e\xa6\x4c\x0b\x80\x2e\x3c\x81\xa3\xcc\xb4\x5e\xab\xae\x9e\x5d\xb5\x69\xd5\xcd\x54\x3c\x0d\xa4\x7a\xa9\xd3\x6c\xa6\x0a\xae\x25\x68\xa3\x3a\xb9\x66\x02\xa3\x1d\x74\xbb\x54\x29\xaf\x81\xb3\x19\x80\xe3\x4c\xd0\xc0\xb7\x8c\xaa\x43\xa7\xd4\x4c\x8d\x6c\x70\x42\x82\x4c\x8a\x32\x9d\x52\x48\x9f\x35\x00\x7c\x2a\x21\x62\xa6\xcb\x71\x3b\x05\x87\x79\x51\xde\x45\xbd\x8c\xc6\xc5\xa8\xb1\x22\xa4\xb8\x98\xe9\xa6\x1f\xa4\xd7\x95\xb3\xca\x4c\x37\xb3\x7a\x93\xfd\xad\x42\x63\x16\x1e\xcf\xf7\x26\xcc\xce\x87\xf7\xc8\x18\xd2\x40\x39\x7d\x29\xef\x05\xec\x54\x28\x84\x68\xc0\x67\x7a\x49\x8a\xdd\xb5\x9a\x5e\xfa\xf1\x8e\x6d\x74\x9e\xf8\x1d\xcf\x04\x10\xac\x14\x1c\x33\x0d\xbe\x1d\xcc\x74\x57\x7f\x07\xe3\x3c\xc1\x1c\x05\x09\x76\x32\x06\x93\x7a\xc1\x07\x9d\x8c\x33\x88\xb1\x82\x03\x98\x68\xde\x67\x66\x15\x2b\x43\xfc\xcc\xac\xe2\xcc\x0a\x13\x03\x3d\x15\x01\xf6\x33\x33\x39\x35\x94\xa4\x71\x66\x31\xa8\x33\x83\x57\x29\x5c\xe9\x99\x65\xe5\x99\x19\xc6\x13\x38\xd6\xdc\xa8\xa3\x79\x7a\x4f\x95\xa7\x9b\x64\x66\xf2\x24\x49\x28\x99\xb9\x53\x2f\xdc\xa1\xf2\x45\xcd\xcc\x5c\xe6\xee\x79\x4f\x55\x47\xe7\x5b\x20\x7a\x19\x2b\xc5\x8b\xd9\x83\x6f\x35\xa6\x59\x3a\xbe\x99\xd1\xf1\x75\x50\x4d\xe5\x52\x34\x33\x89\x28\x3a\xe0\xa6\x72\x5f\x98\xf9\xf5\xd4\xce\x6a\xf3\xa0\x5e\x0c\xe8\x5d\xa8\xb0\x52\xec\xdb\x03\x8c\x52\x70\x38\xe5\xba\x3d\x71\xdd\x26\xa0\x7b\x16\xe9\x70\x67\x21\xcf\xc9\x42\x1f\x55\x5b\x0a\xe9\x4e\x14\x1e\x3e\x8b\x38\x94\x89\x2e\xbf\x4a\x1f\x3f\xd1\xe5\xcf\x42\xf2\x13\x71\x9b\xb3\xc8\xf7\x6d\x16\x76\x6d\xd7\xe9\x53\xd8\x97\x25\xf3\x6d\xe3\x3d\xcd\x6f\xc1\x67\xb2\x6b\x6d\xc8\x28\xf0\x33\x4b\x25\x07\x98\xe6\x1c\xaf\xb3\xe9\x49\x96\xe4\xdf\x3f\x8b\xb8\xe1\x59\xc0\x6c\x3d\x68\x1f\x7b\x41\x71\x6b\x42\x05\x9c\xe5\xa1\x17\xb6\x4a\x33\x30\xa6\xd2\x71\xce\x62\x72\xa7\xc4\xd2\x59\x06\x2d\x1b\x20\x4f\x0a\x88\xb4\x4c\xde\x9a\x73\xe3\x95\x4d\xac\x02\xb3\x12\xec\x2f\xd3\xf4\xc4\xd1\x6a\x36\x72\x1c\x83\x2c\xd9\xe4\xc0\x33\x1b\xf8\xc3\x42\x08\x9b\x4d\xe2\xdc\x6c\x9c\x8b\x45\xb3\xdd\xc4\x8f\xce\x46\x36\x49\xe1\x70\xcf\xc6\xec\xb4\x08\x94\xb2\xee\x95\xc6\x4c\x34\x5c\x19\x64\x7d\x99\x43\x3e\x5f\x73\x90\x75\x4c\x41\x39\x93\x78\xe9\x49\x3a\x6f\xe3\x92\xe6\x60\x5e\x87\x74\xf3\x7c\xc7\xb9\x3b\x54\xbe\x80\x65\x87\xe2\x30\xe6\xf0\x38\x0c\x51\x5e\x28\xa4\xae\x15\x45\x2d\x18\x52\x70\x0a\x25\x73\xc8\xb4\x3b\x07\x10\xfc\x2a\x99\xb5\x31\x12\x8a\x0b\x51\xa8\x4b\x28\xb4\xb4\x90\xb5\x32\x4c\xb8\x0c\x20\xae\x26\xea\x32\xbe\x35\x68\x04\x46\xa6\x67\x99\x60\x35\x51\x12\x14\x39\xf0\xa8\x3d\x99\x92\x33\xc9\x64\x45\xa1\x85\x76\xa8\x07\x10\x5b\xa5\x4c\x9a\xca\x54\xce\x09\x4d\xcc\xcf\x1c\xe5\xfe\xfd\x8b\xb3\x13\xdc\xc5\x39\x0f\x22\x2c\x04\x56\xaa\xda\x15\x1a\x1e\x81\x12\x65\xe6\x26\xa8\x70\x82\x2e\xa5\xef\x02\x25\x54\xf6\xe4\x49\x00\xcd\x54\x00\x4d\x28\xe1\xbf\xde\x51\xf6\xe3\x7f\x5f\xff\xf8\xeb\xff\xfc\xbf\xae\x7f\xfc\xdf\xd7\xff\x1e\xbf\x9e\xff\xfc\xe7\x3f\xc7\xbf\xfd\xc7\xfb\xbf\x9e\xff\xf8\xf5\x7f\x18\xf5\xd7\x3b\xe6\xff\xfa\xb7\xf1\xcf\xf1\xff\xfe\xfb\x7f\xfe\xf3\x19\xbf\xfe\xf1\xef\xff\xb0\xaf\xf4\xef\xff\x0b\x00\x00\xff\xff\x64\x34\x19\xf3\x78\xd4\x03\x00"); +var _ggecd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9a\x4b\xab\x65\xc9\x71\x85\xe7\xf7\x57\x9c\xa1\x3c\x90\x6b\x47\xbe\x13\x8a\x0b\x72\x4b\x42\x8d\x91\x6c\xdc\x7e\x81\xf1\xe0\xe4\xab\x29\x70\xdd\x2a\xaa\xab\x07\xfd\xef\x4d\xac\x6f\x77\xdb\x12\x06\x79\xd0\x44\xdf\xa8\xc8\x9d\x79\xd6\x5e\x11\xb9\x22\x73\xbf\xfb\xe6\xdb\xdf\x7e\xfb\xf6\xe1\xeb\xe3\xdd\x3f\x7e\xf9\x34\xbf\xdb\x5f\x1f\xe7\xc3\xdb\xfa\xb2\x7f\xf8\xf4\xe3\x97\xb9\x1f\x63\x7f\xff\xe1\xed\xe5\xc5\xc2\x63\x7d\x98\x5f\x7f\xfe\x53\x66\x7e\x7c\x7e\x7e\x79\xf1\xf1\xdf\xfd\xf4\xc3\xd7\xfd\xf1\xdb\xb7\xf3\xe9\x11\x89\x5b\x3f\x7e\xbe\x63\x1f\x8f\x77\xff\xb4\xbf\xff\xf0\xc3\xd7\x2f\x3f\x3d\x7e\xf5\x9b\xf5\x69\xec\xbf\x79\xac\x7d\xdc\xff\x0f\x5f\xd6\xfe\xf2\xe1\xed\xfb\xc7\xaf\xbe\xf9\xd3\x77\xf6\x8b\xfb\xbb\x1f\x3f\x7f\xfe\xaf\xfd\x71\xbf\x7d\x7d\x98\x7c\xfb\x6d\xc9\xbe\xbc\xfb\xe6\x8f\xcf\xcf\x7f\x7a\x7e\xdc\x8f\x77\x7f\xf8\xfb\x8f\xd1\xd2\xaf\xff\x2e\xff\xfa\x0f\xfa\x37\xfd\xd3\xbf\xee\x2f\x3f\x7c\xf8\xf4\xf6\xb0\xbf\xbd\xae\xf2\x3f\xee\x7f\xfe\xe9\xf3\xbe\x1f\xf5\xf2\xee\xdf\xff\xe5\xdb\xdf\x3e\xfe\xc3\x1e\x76\x3d\x42\xce\xa1\xfe\xe7\xed\xff\xb7\x3f\x7e\x5a\xfb\x71\xf1\x57\x60\xf1\xf3\xd3\xda\x3f\x7c\x7e\xce\xfd\xe5\xf9\xf6\xfd\x7e\x79\x3c\xde\x5f\xd7\xeb\xe3\xf1\x78\xdf\xae\x57\xff\xeb\x37\x96\xae\xd7\xc7\xfb\xdf\xff\xee\xf7\xbf\x7b\xf5\x55\xfe\x45\xfc\x8b\xf1\x98\xb7\x4f\x5f\xd7\x3e\xf8\xf4\x84\xf7\x76\x5e\x1f\xe6\x23\xfe\xf7\x3f\xbd\xd8\x75\xdd\xf3\x7e\x58\x77\x74\xf0\xe8\xba\x3d\xfa\xfd\x93\xd9\x9e\x96\xdb\xeb\xa3\x77\x77\xe4\x8e\x63\xbe\x3e\x2c\xd6\x14\xe5\x5b\xf2\x69\x50\x68\xee\x79\x9a\x3c\x27\xbf\x3e\xac\x04\xf7\x9c\x82\xa7\xbc\x3e\x42\x52\xcc\xa9\x78\xaa\x7b\xaa\x3c\x0d\xcf\x76\x8f\xcf\x16\x98\x3e\xf8\x93\x43\x2e\xee\xe1\xc9\xc1\x63\xa2\x79\x4c\x24\x26\x7a\x4c\x32\x5f\x4f\x24\x26\x8e\xf1\xfa\x48\xd5\x47\xc5\xb1\xf0\x9c\xd7\x47\xbe\x3c\x26\x31\x2a\xf9\xa8\xdc\xb3\x7b\x18\x95\xfc\xc9\x25\xfb\x0a\x33\x31\xd9\x63\x6a\xf6\x5f\x91\x89\xc9\x1e\xd3\xcc\x47\x15\x62\x8a\xc7\xf4\xcb\xd7\x53\x88\x29\x1e\xd3\xab\x8f\xaa\xc4\x54\xe1\x73\x15\x5f\x50\x25\xa8\x7a\x90\x59\xf0\x71\x8d\xa8\x06\x8a\xc1\x17\xd9\x88\x6a\x07\x60\x7d\x60\x27\xaa\x2b\x2a\xb6\xcb\x5d\x44\x75\x45\x25\xbd\x91\x27\x51\x4f\x45\xe5\xe8\xe0\x3e\x89\x7a\x2a\xaa\x5c\x3e\x70\x10\x35\x14\x55\x7a\x72\x17\x51\x43\x51\x35\xfb\xc0\x49\xd4\x54\x54\xcb\xce\x8a\x49\xd4\x3c\xeb\xf5\x61\xdd\x7c\xe0\xf4\x11\xb7\x09\x29\x7a\xd4\x62\xe0\xd2\xcb\xbb\x2e\x7f\xd6\x62\xe0\x52\xd4\x55\x7d\x11\x9b\xa8\xad\x28\x2b\xfe\xac\x4d\xd4\x56\x54\x08\x3e\xf0\x10\x75\x14\x15\x83\x3f\xfe\x10\x75\xe6\x71\x57\xf3\x81\x67\x11\x75\x2f\x22\xbc\xbc\x1f\x97\x06\x8e\x4b\x03\x53\xed\xee\xd2\xc0\x71\x29\x2a\x27\x8f\x82\xe6\x43\x0c\x0e\x25\x16\x77\x11\x05\x19\x8b\x73\x7f\xc0\xc6\x01\x1b\x6b\x8f\xee\x22\x4a\x74\x0c\xcd\x19\x3a\xe0\xe3\x10\x1f\x43\xcf\x97\xbb\x88\x8a\x22\xed\xe5\x1c\x1d\xf0\x6f\x88\x7f\xd1\x1c\x9c\x01\x01\x47\x82\xda\x0e\xce\x80\x81\x43\x0c\x8c\xc1\xc1\x19\x50\x70\x88\x82\x31\x3a\x38\x03\x0e\x0e\x71\x30\x26\x07\x67\x40\xc2\x21\x12\xc6\xe4\xe0\x0c\x58\x38\xc4\xc2\x98\x6b\x73\x17\x51\x62\x61\x2c\xc9\x07\xc2\xc2\x21\x16\xc6\x1a\xb3\xbb\x88\x12\x0b\x63\xed\x3e\x10\x16\x0e\xb1\x30\xb6\xee\x10\xc2\xc2\x21\x16\xc6\x9e\x7d\x20\x2c\x1c\x62\x61\xba\x3c\xa1\x07\x2c\x1c\x62\x61\x32\xf3\x81\xb0\x70\x88\x85\x29\x5c\x0e\x21\x2c\x1c\x63\x56\x77\x15\x1f\x38\x66\x93\x4b\x03\xa3\x27\xda\x80\x98\x43\xc4\x4c\x51\xe0\x40\xcc\x21\x16\xa6\x24\x70\x60\xe1\x10\x0b\x53\x16\x38\xb0\x70\x88\x85\x29\x0b\x1c\x58\x38\x76\xb6\xd7\x47\x2a\x02\x67\xe7\x80\x2b\x68\x46\x5c\x51\x2e\x3d\xab\x74\x5f\x2a\x5c\x1d\xe2\x6a\xaa\xc9\x5f\x1a\x5c\x1d\xe2\x6a\x6a\xd1\x1f\x0f\x57\x87\x88\x99\x5a\xaf\x2f\xef\x27\xc4\x9c\x22\x66\xea\xdd\xdc\xa5\xa8\x29\x62\xe6\x2b\xa7\x97\xf7\x13\x62\x4e\x11\x33\x9b\xd7\xcd\x09\x31\xa7\x3d\x9f\xaf\x8f\x1c\xcc\xe4\x1a\x72\x69\x60\x08\xe1\xe5\xfd\x84\xab\x53\x5c\xcd\xd1\x51\x9d\x70\x75\x86\xe9\x03\xa3\xa3\x3a\xc3\x1c\xb8\x86\x06\x9a\x5c\x53\x2e\x3d\x2b\xe9\xf1\x30\x7a\xc6\x72\xb9\xcb\xcb\xf9\x8c\x45\xcf\x12\xc9\x73\x72\x24\x26\x24\x9f\x71\xb4\xd7\x47\xce\x41\xae\xd1\x71\x75\x77\x65\x3d\x6b\x3c\x71\x3d\xe5\xba\xe4\xd2\x22\x94\x1d\x39\x7b\x9d\x9d\x64\xc7\x4c\x39\xbf\x3e\x72\x09\x1e\x95\x72\xc1\x55\x34\x63\x96\xab\xca\xa5\x45\x94\xa4\x81\x2c\x42\x39\x94\x4b\x73\x17\x39\x34\x95\x43\xb9\xfa\x76\x30\xc9\xa1\xa9\x1c\xca\x2d\x3a\x12\xe4\xd0\x2c\xec\x07\x31\xbe\xbc\x9f\x24\x0c\xc6\x72\x0d\x59\x3e\xc3\x67\x5e\x6b\x6b\x6b\xf2\x05\x7c\xc1\x6b\x66\xbc\x88\x8b\xf8\xa2\x8f\x6d\xb5\x6a\xaf\xfe\x79\x8f\xfd\xbf\xb6\xdd\x59\x53\x62\x48\xf2\x47\x5f\x99\x47\x67\x7c\x59\xd3\x79\xa2\xcd\x9a\x0a\xbe\xe2\xbe\x92\x59\x6a\xc5\x57\x59\x42\x95\xaf\xe1\x6b\x5e\xdd\x93\xf1\xbc\x8e\xaf\x13\xd7\xe5\x7b\xe2\x7b\x2a\xce\x8b\xdf\xac\x69\xe0\x1b\x8a\x13\x0b\x6a\x9a\xf8\xa6\x36\x90\xc8\xcf\x5c\xf8\x16\x3e\xe6\xd8\xf8\xb4\xab\xa4\x42\xdc\x91\x2f\x5f\xf2\x65\xcd\x91\x81\xd2\x8d\xfb\xb4\x96\x0c\x94\x6e\x7c\xac\x7e\x5b\x06\x4a\x37\xbe\x96\x24\x1f\x58\xb9\xb1\x92\x2a\x3e\xb0\xca\x99\xb5\x30\x07\x58\xb9\xb1\xdc\x78\x35\xb0\x46\xc6\x7d\xc2\x2a\x83\x55\x06\xab\xca\x58\xb0\x72\xe3\x3e\xd6\x07\x56\x6e\x7c\x2d\xc4\x81\x95\x1b\x2b\xf9\x7e\x1e\x58\x49\x25\x95\x7c\xaf\x19\xac\xb2\xb0\x0a\x91\x38\xb0\xca\xc2\x2a\x07\x7e\xef\x8d\xd5\x61\x0e\x61\x5a\xa0\x62\x11\x7e\x39\xea\x7d\x90\x82\x32\xee\xd3\x1c\x05\xfc\x0a\x54\x34\xad\xb9\x80\x9f\x1b\x8f\xd3\x9a\x0b\xf8\xb9\xb1\xdc\x3b\x71\xe0\xe7\xc6\xf2\xfd\x7b\x0b\xf8\xb9\x71\x4c\xf1\x81\x9f\x1b\x2b\x97\x5d\xf2\x81\x5f\x11\x7e\x57\x60\x2d\xe0\x57\x3a\x71\xe2\x6e\x01\xbf\x22\xae\xe5\xa4\xf7\x51\xc0\xcf\x8d\xa5\x96\xf8\xbd\xe0\xe7\xc6\x52\xcd\xc4\x81\x5f\x81\x6b\x26\xac\x0a\xf8\x15\xc9\x95\x18\x58\x0b\xf8\xb9\xb1\x12\x78\x47\x15\xfc\xea\xc5\x3b\xd7\xfa\x2a\xf8\xb9\xb1\x9c\x0b\x3e\xf0\xab\xc2\xea\x4a\x7a\x5e\x05\xab\x2a\xac\x2c\xe3\x03\xab\x2a\xac\xe2\xa5\xdf\x56\xc1\xaa\x82\x15\x39\x53\xc1\xaa\x82\x15\xef\xad\x82\x95\x1b\xab\xd6\x59\x1f\x58\x55\xf2\x32\x10\x07\x56\x55\x58\x19\xef\xad\x82\x55\x1d\x3c\x4f\x1c\xaa\x60\x55\xc9\x4b\x72\xba\x82\x95\x1b\xcb\xed\x5e\x0b\x58\xd5\x5b\x00\x6a\xcd\x14\x42\x19\xf7\x29\xee\x09\x06\xcf\xc0\xbb\xd4\xef\x7d\xc2\xa1\x27\xb8\x5c\xc2\xfe\x09\x2e\xcf\x84\x4f\xef\xed\x09\x2e\x6e\xfc\x77\x10\x07\x2e\xcf\x1b\x17\xad\xf9\x09\x2e\x4f\xea\x15\x7c\x79\x82\x8b\x1b\xe7\xa4\x7e\xef\x13\x5c\x9e\x70\xe8\x62\x2d\xe0\xf2\x7c\xf2\x3c\x71\x83\x0d\x50\xc6\x72\xaf\xf8\xc0\xc5\x8d\x3f\x8f\xdf\x0b\x2e\xcf\x45\x1c\x73\x80\xcb\xf3\xe6\x10\x63\xe1\x90\x1b\x4b\xa1\x6b\xde\x01\x87\x86\x72\x30\x50\x4b\x06\xf8\xb9\xf1\xb1\x7a\xde\x00\x3f\x37\x3e\xaf\x70\x19\xe0\x37\xc8\xc1\xaa\xb5\x0c\xf0\x1b\xe4\x60\x15\xf6\x03\xfc\x46\x26\x4e\xf8\x0d\xf0\x73\xe3\x73\x08\xbf\x01\x7e\x43\xbc\xca\x05\x1f\xf8\x0d\x72\x90\x9c\x61\x03\x96\xb1\x62\x70\x83\x1d\x58\xc6\xeb\x90\xb0\x67\x0b\x96\xf1\x77\xce\x5a\xc0\x6f\x28\x07\x0b\xf9\x31\xc0\x6f\x2c\x72\x06\x5c\xc0\x6f\x50\xaf\x82\xe6\x98\x60\x35\xa9\x57\x6c\x93\x13\xac\xe6\xcd\x35\x61\x35\xc1\x6a\x0a\xab\xa4\xfd\xba\x4e\xb0\x9a\x11\x9f\x7e\xc7\x04\x2b\x37\x56\x63\x24\x0e\xac\x26\x58\x75\x61\x35\xc1\x6a\xaa\xde\xd7\xa8\xf5\x4d\xb0\x9a\xaa\xf7\x91\xf7\x31\xc1\xca\x8d\xef\xb5\xac\x19\xac\x66\x07\x7b\xe6\x05\xab\x29\xac\x0a\xf5\x00\xcd\x24\x63\x39\xdd\xf3\x82\x95\x1b\x5f\x5f\xfc\x7f\x6c\xf7\x13\x28\xdd\x58\x72\x85\xe0\x7f\x00\xe5\x54\x27\x77\x53\x71\x42\xc5\x29\x2a\x5e\x52\x5f\x75\x01\xef\x52\x39\xeb\xbc\xfe\x05\xbc\x4b\xf0\x96\x3b\x0e\x78\x97\x52\xb9\x40\xb1\x05\xbc\x2b\x12\xa7\xd7\xba\x80\x77\x25\xe2\x34\xef\x02\xde\x95\xf1\x09\xa2\x05\xbc\x4b\xa9\x5c\x1a\xcf\x03\xde\xa5\x72\x16\x81\x68\x01\xe5\xba\x4b\x3f\x73\x00\xa5\x1b\x4b\x29\xb1\x66\xa0\x5c\xa2\x5d\x65\xeb\x5c\x40\xb9\x54\xce\x2a\xdb\xcb\x02\xab\xb5\x88\xd3\x2b\x5c\x60\xb5\x36\x71\x7a\x0d\x0b\xac\xdc\x58\x56\xe3\x30\xeb\x06\xab\x2d\x2a\x56\xd2\x67\x83\xd5\x16\x56\x95\x32\xba\xc1\xca\x8d\xe3\xac\x79\x37\x58\x6d\x61\x55\x93\x28\xbb\xc1\x6a\x0b\xab\xd8\xf0\x81\xd5\x16\x56\x15\x39\xb2\xc1\x6a\x0b\xab\x5b\xb6\x6c\xb0\xda\x95\x12\xa2\xdf\xb1\xa1\xe2\xbe\xb7\x4e\xbd\xb7\x0d\x7e\xbb\xf3\x3c\xe2\xc0\x6f\x8b\x8a\xf7\x16\xb1\xc1\x6f\x8b\x8a\x15\x1a\x6f\xf0\xdb\x50\x91\x2d\x76\x83\xdf\xbe\x65\x1a\x73\x80\xdf\x16\x7e\xf7\xb6\xb6\xc1\x6f\x1f\xd6\xa2\xe7\x1d\xf0\x3b\xe0\xc7\xef\x3d\xe0\x77\xa4\x82\x3b\x63\x0f\xf8\x9d\x7b\xdb\xd0\x9a\x0f\xf8\x1d\xb6\x0d\xb6\xe2\x03\x7e\x47\xf8\x55\xf5\x42\xf5\x80\xdf\xa1\xc4\x81\xf3\x01\x2b\x37\x96\x02\xb2\xe0\x80\xd5\x69\x8c\xc5\x07\x56\xe7\xc6\x4a\xbf\xf7\x80\xd5\x61\x8b\xa0\xc4\x1d\xb0\x3a\x94\x38\xb8\x76\xc0\xea\xdc\x5b\x27\x71\x60\x75\xc0\xea\x5e\x0b\x58\xe9\x54\x24\x07\x6d\x89\x34\xca\x18\xbb\x7b\xa7\x46\x77\x20\x63\x39\x48\xba\x35\xba\x03\x19\x2f\xcb\x8c\x8d\xf8\x6e\x99\x91\xe4\x4b\xf8\x84\x4b\x53\x37\xd3\x90\xff\x32\x56\x5a\x23\xae\xe0\x2b\xc4\x31\x47\xc5\xa7\x12\x77\xdd\xf3\x36\x7c\x8d\xb1\x59\xbe\x8e\xaf\xe3\x23\xee\x89\x4f\x58\xb5\xce\xef\x18\xf8\x84\x55\xbf\xf0\x4d\x7c\x13\xae\x31\x76\xe1\x13\x56\xdd\xf8\x6d\x1b\x9f\xb0\xaa\xc6\xbc\x07\x9f\x78\xd5\x55\x96\x5b\x06\x3f\x5a\x82\x2e\xae\x35\x5a\x82\x46\x4b\xd0\x25\x97\x1a\x2d\x41\xbb\x5b\x82\x46\x1c\xf8\xa9\x25\x28\xe9\x8e\x03\x3f\xb5\x04\x29\xb3\x66\x5a\x02\x19\xcb\x45\x5b\x76\xa3\x25\x68\xb4\x04\x95\xf7\x46\x4b\x20\x63\xa5\xb7\x2a\x1f\xf8\xa9\x25\xc8\x17\x38\xd3\x12\xc8\xb8\x8c\xc4\x07\x7e\x6a\x09\x52\x93\x04\x68\xb4\x04\x8d\x96\x20\xf2\xde\x68\x09\x1a\x2d\x01\xf2\xa6\xd1\x12\x34\x5a\x82\xde\x89\x03\x3f\x5a\x82\xd8\xa2\x7c\xe0\x97\xef\xbc\xd4\x58\x5a\x02\x19\xab\xc8\xcd\x46\x4b\x20\x63\xa9\x28\xb7\x1a\x2d\x41\xa3\x25\xb8\xb9\x41\x4b\x20\x63\x35\xea\xa4\xa1\xd1\x12\xc8\x58\x09\xda\x8a\x1b\x2d\x81\x8c\x73\x57\x6b\xa1\x25\x68\x05\xe9\x26\x99\xd1\x90\xff\x0d\xf9\xcf\x69\x43\x43\xfe\x37\xc9\xfa\x4a\x0e\x36\x64\xbd\x8c\xe5\xab\xb2\x66\x30\x90\xac\xaf\x17\xb8\x20\xeb\x65\x3c\x3f\x98\x03\x0c\x0a\x32\x03\xfe\x21\xeb\x65\xac\x04\x9e\x87\xac\x97\xf1\x38\xf1\x05\x59\x2f\x63\xb9\xab\x86\xb5\x0a\x06\x3f\x4b\x7d\xfd\x5e\xa4\xbe\x8c\xd5\xa8\xf6\xb3\x21\xf5\x65\xac\x1a\xb9\x8f\xd4\x97\xb1\x14\x9b\xfd\xf5\xed\xbe\xd1\x09\x34\x3a\x81\x98\x58\x2a\xb0\xa9\x13\xc8\x26\x15\xdc\xe8\x04\x64\x5c\x99\xb0\x54\x28\xa6\x4e\xa0\xd2\x09\x34\x3a\x01\x19\x57\x99\x7a\xd5\x74\x02\x32\x56\x29\xe9\x8d\x4e\x40\xc6\x7d\xc4\x01\xaf\x3a\x81\x64\xea\xda\x39\xe4\xc3\x58\xba\xc7\xd2\x09\xc8\x58\xd2\x39\xfe\x6c\x74\x02\x32\xbe\x4d\xea\x77\xd0\x09\xc8\x58\xb6\xca\xf3\x80\x4d\x9d\x40\x36\x29\xd9\x46\x27\x20\x63\x35\x56\xe6\x00\x97\x27\x1d\x12\x29\x40\x27\x20\x63\xc9\x28\x53\x74\x02\x32\xee\xd3\xef\xa0\x13\x90\xb1\x14\x28\x3f\x74\x02\xed\xe7\x4e\x80\x38\x70\xa1\x13\x30\x52\x8a\x4e\x40\xc6\xc7\x32\x2f\xb8\xdc\x9d\x00\x74\xa2\x13\x68\x77\x27\xa0\x2d\xac\xd1\x09\xc8\x78\x9c\x70\xa1\x13\x90\xb1\x72\x31\x2f\x9d\x80\x8c\xa5\x40\x99\xa2\x13\x68\x74\x02\xba\x31\x98\x8d\x4e\x40\xc6\xbb\x0d\xe6\x00\x3f\x75\x02\x39\x18\xcf\x03\x3f\x75\x02\x29\xc3\x0d\x3a\x01\x19\x4b\x51\x5b\x58\xa3\x13\x90\x71\x19\x89\x0f\xfc\xd4\x09\xa4\x3b\x6d\xe9\x04\x1a\x9d\xc0\x5d\xe2\xe8\x04\x64\x2c\xc5\xc4\xfa\xc0\x6f\xb0\x4d\x26\xd6\x02\x7e\x03\xa9\x4a\xaa\x0c\xb0\x92\xea\x4f\xb1\x68\x7d\xa8\xfe\x76\xab\x7e\x9e\x87\xea\x97\xb1\x12\xe1\x10\xaa\x5f\xc6\xaa\x2e\x36\x66\x43\xf5\xcb\x58\x89\x60\x8a\xea\x97\x71\xe9\xcb\x58\x70\x99\x74\x98\x92\xcd\x0d\xd5\xdf\x50\xfd\xfd\x5e\x0b\xb8\x48\xf5\xe7\x40\x59\x46\xf5\x37\x54\xff\x95\xf4\x3b\x50\xfd\x6d\x72\xfa\x05\x5f\x50\xf8\x32\x96\x12\x5b\x18\x12\x5e\xc6\xe3\x98\x17\x0e\x49\xc2\xe7\x46\x29\x9c\x37\x2e\x94\x6f\xb6\x21\x24\x7c\x93\x5c\x4f\x29\xe2\x03\x17\xc9\xf5\x5c\x79\x6f\xc8\x75\x19\x97\xcd\xc2\x0f\xb9\x2e\x63\x29\x49\xaa\x36\xe4\xba\x8c\xfb\x34\x2f\x72\xbd\xad\x1b\x17\xe1\x87\x5c\x97\xb1\x94\xe0\xee\x02\x17\x49\xf8\x1c\x2b\xf3\x82\xcb\x82\x2f\x6c\x07\x48\xf8\x76\x4b\xf8\xce\xbc\xf0\x45\x12\x3e\xa5\xca\xef\x00\x2b\x49\xf8\xac\x93\xf9\xd9\x90\xf0\x32\x5e\xd7\x58\x0b\x58\x49\xc2\xd7\x0b\xfc\x90\xf0\x0d\x09\xcf\x09\x65\x43\xc2\xcb\xf8\xbc\x8a\x43\xc2\xcb\x78\x6e\xe1\x03\x3f\x24\x7c\x66\x4b\x44\xc2\x37\x24\xfc\xa5\x13\x89\x86\x84\x97\xb1\x94\x75\x0a\xd0\x90\xf0\x32\x96\x23\xeb\x43\xc2\xb7\x4d\xe7\x08\xff\x90\xeb\x32\x56\x23\x72\x09\xb9\x2e\xe3\x35\x82\x39\xc0\x4a\x72\x3d\x65\xea\x1a\x72\x5d\xc6\x4a\x90\x7c\x6d\xc8\x75\x19\x97\xe1\x8c\x05\x2b\xc9\xf5\x54\xc8\x7d\xe4\xba\x8c\xcf\x4b\x1c\x58\x49\x9a\xa7\xc2\xd6\x8e\x34\x97\xf1\xfa\xa7\x79\x91\xe6\x0d\x69\x7e\xd7\x71\xa4\xb9\x8c\xe5\xca\xf6\x87\x34\x97\xb1\x9c\x98\x17\x69\xde\xce\x7d\xaa\xaa\x79\x0f\xb8\x1c\x24\x00\xbf\x0d\x69\xde\x90\xe6\x06\xa6\x48\x73\x19\x4b\xe5\x1e\x0b\x2e\x48\x73\x4e\x50\x1b\xd2\xbc\x1d\x4e\x1a\x12\x3e\x30\x40\x86\x07\x78\x8a\x0c\x97\x09\x74\x63\x5c\x44\xcd\xee\x8a\xf6\x3e\x33\xea\x08\x5a\x99\xa2\x36\xa4\x23\x67\xbb\x4b\x91\xfb\xe0\xa1\xa3\x44\x74\x81\x75\x9f\xf3\x71\x81\x35\xbb\x17\xb6\xc2\x91\x40\xe7\x68\x43\x46\xa7\x9f\x7f\x75\x9b\xef\x94\xc0\xee\xaf\xb3\x5c\xda\xb9\x3a\x6f\x53\x17\x63\xc5\x44\x54\x2e\xc6\xa6\x2e\xc6\xee\x77\xce\xc5\xd8\x7c\x3a\xb4\xf7\xa1\xe5\x93\x0e\x48\xa6\x98\x04\xd4\x13\x94\x75\x7d\x56\x38\x76\xe4\xfa\x6c\xea\xfa\xac\x90\x2f\x5c\x9f\xcd\x41\x94\xa0\xe3\xae\x6c\xea\xae\xac\x50\x1d\xb8\x2b\x9b\x93\xfb\x6e\xe9\x6f\xee\xca\xa6\xee\xca\x4a\x51\xae\x70\x57\x36\x75\x57\x56\x8a\x94\x13\x77\x65\x53\xb7\x60\xa5\xaa\x52\x73\x0b\x36\x75\x0b\x56\x9a\x8a\x28\xb7\x60\x53\xb7\x60\xa5\xab\xc5\xe6\x16\x6c\xea\x16\xac\xea\x30\x6f\x71\x0b\xb6\x74\x0b\x56\xb5\xfb\x2f\x6e\xc1\x96\x6e\xc1\x10\x2c\x8b\x5b\xb0\xa5\x5b\xb0\x1a\xb2\xb9\x8b\x28\x5d\x79\x71\x29\xb0\xb8\xf2\x5a\xba\xf2\xaa\xc9\xc5\xf9\xe2\xca\x6b\xe9\x32\xab\x26\xdf\xd0\x17\x97\x59\x2b\x72\xa9\x5f\xb2\xbb\x88\xd2\x05\x54\x15\x65\x16\x17\x50\x4b\x57\x4b\xb5\x7a\x53\xbe\xb8\x5a\x5a\xba\x5a\xaa\xd5\x8b\xd5\xe2\x6a\x69\xf1\x81\x40\xab\xdd\x5d\x44\xe9\x6a\xa9\x76\x4f\xab\xc5\xd5\xd2\xd2\xd5\x52\xd3\xbd\xc4\xe2\x7a\x76\x15\xdf\x61\xda\xd5\x7d\x60\xd1\x06\x83\x69\xba\x58\x5a\x45\xfb\xcb\x2a\x7c\x6d\xe0\xa8\x2e\xee\xa4\x96\x0e\x8a\x9b\x75\xb9\xa4\x0e\x31\xad\x79\x7f\xb4\x38\x26\x5e\x3a\xea\x6d\xe0\xc5\x49\xef\x52\x0b\xdb\x82\x6f\xff\x8b\x0e\x76\x49\x06\x36\xed\xf4\x0b\x15\xb8\x94\x61\x2d\x99\xaf\x9e\x0c\x5b\xca\x94\x96\x3d\x79\x16\x99\xb2\xc4\xe8\x96\x8b\x0f\x84\xd1\x4b\x8c\x6e\xc5\xd5\xc0\x82\xd1\xeb\xe9\xd5\xbd\x55\xef\x59\xd6\x53\xc5\x1d\xd3\x4c\xe0\x3c\x37\x03\xf5\xac\xaa\xd5\xc3\xe8\x25\x46\xb7\xe6\x82\x7b\xc1\xe8\x35\x5c\x39\xb6\xe6\x1b\xf2\x1a\x12\x8e\x4b\x24\x6f\xcd\xf7\xa2\x05\xc9\x97\x48\xde\xba\xcb\xd0\x05\xc9\x97\x48\xde\x2f\x57\xdd\x0b\x92\x2f\x91\xbc\x2b\x1f\x17\x24\x5f\xcb\xeb\x50\x37\xaf\xcb\x6b\xe9\x68\x00\xd3\x2f\xad\x6b\xa9\x24\x2d\xa5\x42\x0f\x72\x91\x0a\x4b\xa9\xd0\x83\x6f\x06\x8b\x54\x58\x4a\x85\xae\xd6\x6a\x91\x0a\x4b\xa9\xd0\x93\xcb\xac\x45\x2a\x2c\xa5\x42\xd7\x4e\xb5\x49\x85\xad\x54\xe8\xea\x55\x37\xa9\xb0\x95\x0a\xbd\x94\xf6\xf2\x7e\x93\x0a\x5b\xa9\xd0\xab\x97\xf2\x4d\x2a\x6c\xa5\x42\x6f\xae\x7e\x36\xa9\xb0\x95\x0a\xbd\x5b\x77\x17\x51\x4a\x85\xde\x7d\x3f\xdf\xa4\xc2\x8e\x7c\x97\x72\x79\xcd\xde\xe4\xc2\x56\x2e\xd8\x65\xd1\x87\x92\x0c\x3b\x11\x17\xbc\x8e\x6f\xb2\x61\x27\xe2\xa4\x59\x37\xe9\xb0\x33\x71\xd1\xdf\xc9\x26\x1f\x76\x26\x2e\x79\xad\xdb\x24\xc4\x2e\xc4\x65\xd7\x93\x9b\x8c\xd8\x85\xb8\xe2\x5a\x7e\x43\xf6\x7d\x7f\x37\x53\x5d\xdb\x6e\x78\xbc\x39\x8a\xb9\x6a\xf1\xb1\x10\x79\xd3\xcf\x5c\xcd\x35\xe1\x86\xc9\x9b\xde\xe5\xea\xae\xa5\x36\xbd\xcb\xe6\x73\x9a\xab\xbb\x1e\xda\xd0\x7b\x77\xb5\x77\x76\x09\xaa\xae\xf6\x6e\xf3\x8d\x8d\x5d\xbe\x87\x6e\x38\xbf\xf9\xc8\xc6\x2e\xa7\xe0\x86\xf4\x9b\xaf\x6c\xcc\x5c\x1f\x6c\x58\xbf\x9f\xf7\x87\x3d\xbe\xb3\x6c\x08\xbd\x87\x8e\x08\x2c\x7a\x25\xdf\x43\x47\x04\x9b\x6f\x6f\x2c\xea\x45\xc2\xf2\x3d\xb4\x9f\x9b\x4e\xaa\xf7\x38\xb7\xcf\x58\x73\x91\x2f\xe0\xd3\xd8\xe4\x44\xdf\x70\x7f\xf3\x95\x8e\x25\xa7\xe2\x86\xfc\x7b\x4a\x73\x59\x76\x2e\xee\x29\xcd\x85\xf1\xdf\x16\xe5\x3b\xf2\xf1\xbc\x62\xce\x20\xb2\x64\x2f\x9e\x57\xf4\x8e\x48\x93\xbd\xd4\x83\x99\x8e\x66\xf7\x52\x0f\xb6\x17\x63\xab\x67\xeb\x26\x2b\xf6\x66\xac\x6e\x5d\x37\x69\xb1\xb7\xf4\x90\x35\x71\x79\x4b\x0f\x61\x2c\xe8\x13\x8b\xbd\xa5\x87\xf6\xe6\x79\x2a\xa0\x9b\xfc\xd9\x87\xe7\x49\xf3\x6f\x12\x68\x1f\x3e\x8d\xd2\x8d\xe3\x21\x83\xce\xa5\xe3\x9e\x60\xd6\xfe\x7c\xbf\x4e\xe1\x2f\xb7\xeb\x73\xe9\x30\x08\xe3\xbf\xa8\xcb\x57\xe5\xe3\x3b\x2c\xf3\x37\x78\x48\xc4\x73\xe9\x1e\x20\x58\x93\x4f\xf7\x00\x18\x7f\x83\x26\xdf\x94\x8f\x55\xe9\x4b\x8c\x43\xc6\x1e\xd3\x01\x4c\x08\x8e\xf8\x31\x1d\xc0\x1c\xd3\x3d\x68\xd0\xae\x7d\x4c\xf7\xa0\x18\x0b\xba\x6b\x38\x26\x99\x72\xee\x2f\xeb\xa2\x2b\xb2\x43\xba\x1f\x63\x8e\xe8\xfb\xc9\x21\xdf\x4f\xd0\xa1\x4c\x50\x77\x72\x82\x0e\x65\x30\x16\xaa\x33\xf6\x04\x1d\xca\x9c\xc0\xf3\x52\x55\x1c\xcf\x0b\xea\xc6\x42\xea\xbe\xe6\xa0\x6e\xec\x04\xe6\xc8\x9e\x29\x87\x6a\x71\xa2\x0e\x47\x42\x6e\xf2\xe9\x70\xe4\x50\x41\x82\xbe\x20\x3a\x54\x90\x43\x05\x09\xc5\x77\x9f\x43\x05\x39\x49\x07\x49\xa1\xa6\xec\x3e\x1d\x24\x1d\xaa\x4a\xa8\xde\x8d\x1d\xaa\xca\x49\xea\x84\x43\x13\x2e\x49\x9d\x30\xc6\xd7\x52\xe4\x63\xac\x14\x63\x68\x41\x71\x2a\xcf\x87\x8a\x14\x74\x68\x79\xa8\x48\x87\x8a\x14\xfa\xe5\x18\x50\x91\x4e\xbe\xe3\x5c\x0b\x1d\x2a\xd2\x29\x7a\x47\x51\x87\xff\xa7\xf0\x8e\x64\x7c\x2c\xbe\x24\x1f\x5f\xdf\x5d\xde\x89\x1c\x2a\xd7\xa1\x72\x45\xd3\x3b\xa7\x72\x1d\x2a\x57\x94\x9c\x3b\x54\xae\x43\xe5\x8a\xc1\xd5\xc2\xa1\x72\x1d\x2a\x57\x8c\xe2\x06\x95\xeb\x50\xa5\xa2\xbe\xc7\x38\x54\xa9\xa3\xc2\x64\x31\xeb\xfd\x76\x9d\x28\x9d\xfb\x4b\xc0\xdc\x14\xc7\xd8\xae\x2e\x3a\xaa\xeb\x38\x5d\x5d\x34\xc6\xe3\xb2\x7c\x19\x9f\x63\x1a\x8b\xf0\xeb\xea\xa2\x31\xc6\xd7\x60\xa7\x4f\xe6\x50\x97\x1a\x0b\xf3\xaa\x4b\x3d\x7d\x31\x36\x85\x3f\xcb\x32\xff\xff\x8f\xcf\xcf\x2f\xbf\x7c\x36\x3b\x7f\xfc\xf2\x65\xbf\x7d\xd5\x27\xba\xfa\x34\xf6\xb1\xf6\xf9\xf0\xb6\x7f\xf9\xdc\xf7\xf3\xa7\xcf\x3e\x4a\xff\xfd\x77\x00\x00\x00\xff\xff\x99\x68\x60\x83\x1a\x2c\x00\x00"); +func _egb ()([]byte ,error ){return _gb (_cbbag ,"HKscs-B5-H")};func _daccg ()([]byte ,error ){return _gb (_abac ,"KSC-EUC-V")};func (_fb bindataFileInfo )Name ()string {return _fb ._ee };func _daab ()([]byte ,error ){return _gb (_cgfac ,"UniJIS2004-UTF32-V")}; +var _bfdd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x4f\xeb\x2d\x3f\x92\xa0\x87\xef\xeb\x55\xdc\xe5\xfc\x16\xf3\xab\xcc\x54\xfc\x51\x42\x71\xc1\xcc\xb8\x71\x33\x8c\x6d\xdc\x1e\xdb\x60\xbc\x38\x27\x4f\x66\x53\xe0\xfe\x56\x51\x5d\xb3\x98\x77\x6f\xf4\x3c\xa7\xc6\xc6\x18\x6e\xad\x9e\xfb\xd1\xcd\xa3\x94\x94\x52\x28\x14\x0a\x85\x7e\xff\xef\xfe\xf1\xdf\xff\xe3\x6f\x7f\xfc\xeb\x8f\xdf\xff\x8f\x7f\xf9\xd3\xf5\x4f\xf7\x5f\x7f\x3c\x7f\xfc\xed\xf3\x97\xfb\x5f\xff\xf4\x9f\xff\x72\xdd\x3f\xde\xf7\x3f\xff\xf1\xb7\xdf\xfd\x6e\x3f\x7e\x7c\xfe\x78\xfd\xf5\x6f\x7f\x82\xeb\x5f\x5e\x7f\xfe\xdd\xef\xd6\xef\xff\xe9\xbf\xfc\xeb\x5f\xef\x7f\xf9\xc7\xdf\x9e\x3f\xfd\x18\x3e\xf7\xf9\xcf\x7f\xfe\x3e\xfb\xe3\xc7\xef\xff\xa7\xfb\x9f\xff\xf8\xaf\x7f\xfd\xcb\x7f\xf9\xf1\x6f\xfe\x9b\xcf\x9f\xde\xf7\xff\xef\xc7\xe7\x7e\x56\xfa\xff\xf0\x97\xcf\xfd\x97\x3f\xfe\xf6\xcf\x3f\xfe\xcd\x7f\xf8\xd3\x5f\xee\xd7\xfe\x5f\xff\xe3\x9f\xfe\xf3\x9f\xff\xfc\x7f\xde\xff\x72\xff\xf6\xd7\x1f\x3b\x69\xf7\x6f\x1f\xf8\xbb\xdf\xff\xbb\xff\xf8\xfa\xf3\x7f\xff\xfa\x97\xfb\xc7\xef\xff\xd3\x6f\x7f\xfc\x0f\xff\xf4\x6f\xff\xd3\xbf\xfb\xa7\xe3\xdf\xfe\x77\xfc\x27\xff\xf7\xbf\xdc\x7f\xf9\xd7\x3f\xfe\xe9\xb7\x1f\xfb\xf6\xff\xdf\xb6\xfa\xbf\xd3\xff\xe7\xff\xf2\xe7\xfb\x9b\xd9\xef\x7e\xff\xbf\xfd\xa7\x7f\xfc\xf7\x3f\xfe\xf7\xfd\xc7\xbe\xfd\x38\x32\xb6\xfa\x3f\xbe\xe9\xff\xeb\x7f\xfc\xd3\xe7\xfe\xb1\xf9\xd7\x61\x05\xae\x3f\x7d\xee\x7f\xfd\xf3\xeb\xba\xff\xf2\xfa\xed\x9f\xef\xdf\xfd\xf8\xf1\x87\x6d\xdb\xb6\x9f\x3f\xfe\xf0\xef\xfb\x1f\xfe\xe1\xe7\xfa\xfb\xbf\xf5\xef\x7f\xf8\x87\xf5\xf7\xfd\xdb\xe7\xff\xf5\x8b\xdf\xed\x66\xf4\xdb\x9f\xfe\xfa\xb9\x1f\xd3\xfe\x96\xc7\xb6\xed\xcf\xcf\x1f\xfb\xfa\xd5\xff\xf3\xbf\x7f\xb7\x6f\xdb\xf7\xed\x7f\xfc\xfc\xd7\x5f\x1c\xfe\xa2\xef\xf5\x8b\x3f\x6c\xdb\x6b\xe7\xef\x85\x63\x9b\xa4\x84\x29\xf1\xf3\xc7\xb1\x07\x29\x6d\x4a\xff\xfc\xb1\x67\x92\x32\x4d\x99\x3f\x7f\xec\x5b\x93\xf2\x32\xe5\xf5\xf3\x47\x95\xf9\xbc\x4d\x79\xff\xfc\xb1\x77\xad\x94\xb7\xef\x5e\xd8\x07\xcf\xbc\x7d\xfb\xc2\x3e\x36\x52\x0e\x53\xc6\xcf\x1f\x33\x06\x29\x96\x67\x61\x3f\x4f\x52\xca\x94\xfa\xf9\xe3\x08\x4a\xf8\xb6\x3c\x0b\xc7\xe6\xbb\x4e\x53\xce\x95\xcf\x41\x8a\x25\x5c\xa8\xa6\x16\x6f\x4b\xf8\xa6\x84\xd4\xe2\x7d\x99\x72\xfd\xfc\xd1\x49\xfb\xbc\x3f\xa6\x7c\x7e\xfe\xe8\xb0\xcc\xb7\x29\xf7\x7a\xc6\x9c\x1f\x53\x9e\xf5\x76\x4a\x78\x59\xc2\x85\x2a\xca\xf3\xb1\xee\x0b\x55\xbc\xeb\x63\xab\x2e\xec\x83\x77\x7d\xac\xc5\x42\x35\x75\xff\xf8\xae\x85\xb2\x0d\x3f\xbe\x6b\xa1\x6d\xe7\xdb\x77\x2d\x74\x92\xf3\xe3\xbb\x16\x3a\x29\xcf\xe3\xbb\x1e\xde\x45\x99\x1f\xdf\xb5\xd0\x96\xf0\xf1\x5d\x0b\x5d\xeb\x57\xfb\xce\xd7\x01\x9d\xeb\x5d\xfb\xc1\xbb\x40\xf9\xcc\xd1\xa6\xf4\xfa\xd5\xfa\x82\xfb\xf0\x57\x0b\x5d\x3b\x29\x87\x29\xc7\xaa\x85\xcf\x0c\x53\xc6\x7a\xe6\x20\x65\x9a\x42\x79\x06\x29\x8f\x29\xcf\xfa\x15\xf9\x04\xf5\x02\x5d\x41\x8a\xef\x5a\xa8\x26\x9f\xf0\x5d\x0b\x5d\x49\xca\x69\xca\xf9\xf3\x47\x7f\x9f\x79\x99\x42\x4f\xa0\x5e\xf1\x36\xe5\xbd\x9e\xe1\x5d\x69\x3e\x49\x99\x79\x57\x5a\xe6\xa4\xcc\xab\x9d\xf7\xb2\x35\x16\xaa\x4d\xb1\x35\x16\x9a\x9a\x1e\xf6\x28\x30\x0f\xba\xdd\x71\xf1\x10\x38\xb6\xf5\xb2\xc3\x0f\x0f\x8e\xed\x20\xe5\x34\xe5\x5c\x29\xfc\xea\xf3\x32\xe5\xb5\x52\x82\x94\xb7\x29\xef\x95\xd2\xa4\xf8\xb2\x85\x63\xe3\xf5\x9f\x8f\x29\x9f\x95\xb2\x9a\x75\x9c\x34\xd9\x58\x03\x3e\xa8\xea\x78\x0d\x53\xce\x9f\x3f\x62\xae\xe6\x18\x0e\xcb\x71\xad\x67\xce\xf5\xf6\x71\xf9\xcc\x75\xfe\xfc\x91\xfb\x2a\x61\x6c\x3c\x03\xf6\xed\x58\x3d\x28\x76\xbe\x4f\xec\x49\xd2\x46\x12\x4d\x14\xc3\xa4\x55\xc8\x18\x26\xc5\x92\x59\x1b\x5d\x26\xd2\xbc\x92\xbc\x56\x8f\x3d\xb6\x7d\xbd\xf0\xd8\xf6\x35\xea\x37\x53\xca\x94\xfa\xf9\x63\xdf\x77\x52\xa6\x29\xe7\x4a\x09\x52\xde\xa6\xbc\x57\x6b\x2f\x11\x73\x6c\xfb\x65\xd2\x67\x3d\x54\xa4\x3c\xa6\x3c\x3c\xd4\x2b\x09\xa9\x78\x6c\xc7\x92\x82\x91\xa4\x1c\xa6\x1c\x3f\x7f\xcc\xda\x7c\x28\x4d\x2a\x4a\xb9\x52\x86\x3f\x5b\x38\xcc\x7b\xf8\xb3\xd5\xb1\xf7\x41\xb1\x47\x98\x12\x3f\x7f\xcc\x9c\x07\x49\x66\xb4\x70\x8e\xc3\xdf\x59\xb9\x85\x73\x1c\xd4\x65\x9c\x26\xbd\x56\x09\x76\x7f\x68\xf5\x16\xf6\xf4\x77\xd6\x6e\x61\x32\x6e\x8e\x2d\x2c\xc2\xc2\xcc\x93\x32\xb4\x65\x58\x98\x56\xaf\x5f\xa6\xd8\x50\x3e\x64\x56\x4d\x4f\x0d\xda\xae\x3f\x26\xdd\x2b\x29\x37\x92\x6c\xbc\x85\x19\x14\x61\xee\xa4\x4c\x32\x5f\x0d\xb5\x6f\x7c\x3b\xb0\xc7\x4e\xca\x69\xca\xea\xce\xfb\x2a\xc0\xee\xf7\x05\x79\x6e\xa4\x94\x29\x4b\xaa\x2f\x69\x73\xec\x07\x39\x83\x83\xba\xed\x7e\x15\x70\x14\xbf\x3a\xfc\x15\x12\x29\x7c\xe6\x6d\xca\x6a\xa4\x25\xf9\x0f\x47\xee\xb1\x67\x2c\x19\x7e\x92\xe2\x33\x89\x0c\x1f\xcc\xb7\x7f\x9b\x23\xff\xbf\xa6\xcd\x63\x2f\xbe\xf4\x5e\x6b\x8c\x14\x55\x6a\x53\x7a\xa5\x24\x29\xa7\x29\x6b\x80\xed\x6d\x8a\xc5\x5d\xd8\x9b\xe2\x9e\x16\xe5\x5c\xdd\xba\x29\xee\x99\xa6\xe4\xea\x7a\x34\xdf\x69\x95\x4e\x1a\xc2\x5f\xb5\x29\x4b\x62\xf0\x65\xf6\x73\x9a\xb2\x24\xc6\xf7\xed\x36\xf1\xc2\x61\x25\xdf\x96\x67\x61\xce\xe2\x67\x6f\x5b\x74\x61\xce\xe2\x43\xbc\x2d\xe3\xc2\x9c\x4b\xaa\x1e\xfb\xdb\x42\x32\x07\xcf\x32\xaf\x30\x29\x48\xa2\x98\x48\x36\x31\xe7\xe4\x87\x97\x6f\xbc\x78\xe3\x24\xfb\xcb\x1f\x5e\xb9\x92\xce\x22\xe9\x63\xd2\x67\x25\xed\x26\x3d\x26\x3d\x24\xf1\xc3\x8f\x79\x7d\xc8\x8b\xd1\xbd\x7f\x2c\xfd\x87\xd2\xa7\x49\x96\x7e\x61\x3f\xfd\x9d\x85\xff\x50\xf8\x34\xc9\x32\x7c\xd0\x20\x78\xdf\x6d\xe6\x0b\xe7\x6e\xf7\xbb\xcd\x7c\xe1\xdc\x4f\xfa\xcd\x6d\xe6\x0b\xe7\x7e\xd2\xca\xb7\xb9\x2f\x9c\xfb\xc9\x07\xbc\xfd\x5c\x0b\xe7\x7e\xd2\xcc\xb7\xdf\x6b\xe1\x44\x10\x1f\xfb\xed\x07\x5b\x38\x51\x63\x8e\xfd\xf6\x8b\x2d\x9c\x4c\x04\xc7\x81\x3e\x27\xf6\xb3\x49\x39\x4c\x59\x15\x4c\x9f\x19\xa6\xac\xd1\xc5\xeb\x8e\xad\x4c\xa9\x25\x04\x68\xbd\x63\x6b\x93\x50\xd9\x0e\x52\xa6\x29\x4b\x65\xe3\x6b\x1d\x0e\x4a\x30\x1d\x17\xc7\xf6\x36\x69\x8d\x9d\x69\x46\x97\x29\x08\x18\x7a\xe3\xb1\x3d\x26\x2d\x75\x67\x5f\x4d\x70\xa0\x28\x88\x03\x49\x75\x38\xbc\xc1\x6c\x44\xdc\xb1\xbf\x4c\x7a\xad\xae\x4f\xb9\xf7\x8f\x29\x4b\x34\x4f\xb2\xde\x6f\x53\x96\x76\x3a\xfc\x95\x2f\x43\x58\xf7\x4e\x93\x28\xac\xc1\xce\x68\x38\x14\x0b\x60\xf6\x30\x29\x4d\xb2\x4d\xa8\xdc\x61\x9b\x1c\xab\x05\xf8\xc0\xc7\x61\x0b\x2c\xf8\x7d\x8f\xc3\x42\x2e\xd8\x2f\x0e\xc5\xc9\x71\x5c\xab\x90\xfe\xca\x42\x2e\x1c\x4c\x44\x87\x32\x1e\xec\x4c\x28\x87\x22\x1e\xec\xd3\x67\xfc\x48\x0b\xc7\x4e\xce\xc3\xf2\x2c\xcc\x71\xf8\x90\x2d\xb2\xb0\x37\x85\x0e\x1b\x72\x61\x26\x5d\xe9\x08\xf3\x5e\x98\x71\xfa\x94\x1f\x77\x61\xa6\x5d\x29\x6d\xa5\x85\xd9\x48\xf8\x23\xfd\x4c\x0b\xb3\x0f\xbe\x5c\xda\x72\x49\xf7\xa2\x57\x28\x2c\xc1\xec\x83\x0a\xa7\x8d\xb2\x30\x97\xb8\xfc\xc3\x71\x28\x0f\xc1\x3e\x4c\x31\xf3\x85\xfd\xfb\x8c\x79\x97\x5f\x85\xcc\xcb\x86\xaa\xd5\x2c\xdf\x14\x9b\x65\x69\x4c\xb3\x0f\x93\x6c\xdf\xe2\x93\x33\x5d\x1d\x0a\xdb\xa3\x59\x15\xd8\x9e\xed\x0f\xbb\x49\xa2\x7e\xed\xe7\x6c\x74\x7e\xbf\xa7\xf3\xdc\xc1\x3c\x17\x4d\x5e\xd3\xbc\xd6\xb4\x35\xc3\x46\x9e\x96\x74\xae\x21\x35\xe9\x3e\xd3\x82\x32\xa9\xb5\x9d\x6c\xda\xec\x0b\xb3\x91\xd4\xc7\xb4\x0c\x73\x8d\xb2\x49\x77\x9d\xbe\x6f\x61\xc6\x37\xc9\x0e\x34\x29\x82\xb9\x2b\xf3\x8f\xd3\x4a\x93\xd5\xcb\x66\x7f\xd1\xec\x4c\x5b\xc7\xcb\x32\xbc\xd0\x1c\x36\x9a\xf4\xe5\x0f\x17\x76\x47\xec\xdb\xdc\xdf\x8e\x4f\xea\x7c\xd9\x7e\x08\xd3\x68\x72\xff\x58\xac\x0f\x65\xb0\xef\xdf\x3e\xb5\x30\xc7\x41\xc7\xba\x1d\x6b\xb7\x9a\xd9\xef\xfe\x70\x0c\x25\xcb\x50\xb2\xd0\x3f\xc6\x4e\x5b\x81\x1d\x79\x30\xf6\x30\x85\xb6\x5a\x2b\x99\x23\xec\x1e\xb1\xbe\x64\x8f\xbf\x63\x7e\x8d\xe2\xd5\xc1\x07\x6e\x3e\x5d\xa8\xb4\xc4\xfa\x36\x93\x36\x8a\x39\x4c\x59\x62\x75\xa3\x8d\xe2\x44\x3c\xc5\x7b\x7d\x14\xfa\x7d\xb0\x38\x3c\x82\xda\x0f\x9a\x3b\x9c\x4a\x62\x09\xda\x46\x95\x4b\xe5\x2c\x48\x84\x43\xa2\xce\x8a\x5c\x2b\xd1\x23\x95\xbc\x20\x0f\x53\x86\x29\x4b\x67\xa1\x9e\xa9\x74\x04\x79\x98\xf2\x31\xe5\xf3\xf3\x47\xa2\xc5\xe4\x76\x9b\x72\xaf\x14\xdf\xfe\x98\xf2\xac\x7c\x56\x35\x72\xb7\x3c\x0b\x79\x98\x62\x79\x16\x32\x4d\xb1\x3c\x0b\xc9\x87\x4e\x85\x2c\x48\x06\x61\xfa\x29\x40\x32\x98\x72\x4f\x53\x72\xfd\xaa\x48\x29\x53\x6a\xa5\x24\x29\x6d\x4a\xaf\x7c\x4c\x99\xa6\xcc\x95\x8f\x39\x9f\xa6\xac\x05\x40\x9a\xf3\xcb\x94\xd7\x4a\xf1\x99\xb7\x29\xef\x95\x8f\xcf\xd8\x3e\x3b\xed\x63\xce\xb6\xcf\x42\x86\xe5\xb1\x7d\x96\x84\x4f\x74\xff\x54\xc0\x83\x44\x7f\x4c\x35\xc1\x5c\x02\x3e\xcb\x14\xeb\x7e\x50\x77\xf2\x39\xac\xfb\x41\xdd\x69\x67\xe7\x00\x90\x8c\xe1\x54\x5b\xcc\x35\x13\x24\x1a\x65\x1e\xd6\x74\x21\xc3\x14\x6b\xba\xa6\x80\x44\x45\x4a\xa7\x00\x90\xc3\x7c\xac\xd7\x41\xbd\x7c\xbb\xf5\x5a\x93\x42\x96\x6f\xf7\x2b\x2f\x24\x9d\x35\x5d\x2e\x80\x44\x80\xe4\xb0\x5e\x83\x7a\x51\xf7\x61\xbd\x06\xf5\xf2\x19\xeb\x35\xa8\x17\x6f\x77\x72\xc9\x35\x95\x24\x8a\x66\x3a\x95\x80\x0c\x5a\x7e\x58\xaf\x41\xbd\xcc\xd9\x7a\xad\xf5\x44\xa2\x7a\xa6\xcb\x09\x90\xc3\x67\xac\xd7\xa0\x5e\xa6\x58\xaf\xb1\xea\x85\xfc\xcc\x61\xbd\x06\xf5\x22\x25\xac\xd7\x5a\x85\x27\xf2\x26\x5d\x83\x80\x44\x48\xa4\xf3\x58\x06\x6f\x27\xe7\xf0\xed\x0b\x19\x3c\xa3\xba\x0c\x0e\xc7\xc5\xcb\x9c\x17\x76\xbf\xc5\xcb\x16\x5b\xd8\xd1\x56\x53\xc9\x09\x0e\xcb\xac\xe0\xcc\x25\x25\x0f\xc7\xc5\xcb\xef\xbe\xe0\x8a\x2f\x5f\xb6\xd8\xc2\x61\xff\x79\xd9\x62\x0b\x87\xa3\xe0\x65\x8b\x2d\xb8\x98\x4c\xf5\x67\x30\xdb\x9f\xa9\x3f\x83\xdd\x0f\xaf\xfa\x0c\xf6\xf2\x19\x3f\x18\x52\xaa\xd1\x74\x52\x31\x05\x0e\xa5\xcb\xdb\x12\x2d\x1c\xca\xa4\xb7\xef\xc7\x86\xd5\xcc\x7a\xa9\xd2\x0d\x76\x3b\xcc\xdb\x0f\xb4\xb0\x97\x85\xf4\x03\xbd\x99\x3f\x6d\x6b\x15\x73\x70\xec\x3c\x74\x59\x93\x0b\x95\x8d\x62\x5f\x16\xfb\x42\x04\xa3\xe9\xe4\x65\x21\x17\x76\x87\xcb\x65\x21\x17\xf6\xf2\x19\x9b\x6d\xe1\xb0\x7b\x5e\x16\x7b\xe1\x70\x20\x5e\x8a\x8a\x0b\x05\x62\x9a\xe4\xd7\xbf\x58\xca\x5a\x46\xab\xb6\x30\xcb\xee\xe8\x4c\x06\x76\x87\xbd\x0b\x05\xb0\xb3\x00\x4c\x85\x7b\xae\x45\xc1\xa1\xe0\x56\x21\x07\xb3\xed\xb3\xce\x6c\x60\x16\x5d\xa2\x36\xbe\x09\xd8\x11\xd4\xe5\x64\x07\x76\x04\x75\x29\xba\xc1\x81\x20\x2a\x45\x37\x38\xe8\xb4\xa5\x88\x03\x07\xc3\xbc\x14\x71\xe0\x3c\x0e\x93\xcc\x68\x27\x23\x5e\xaf\x5e\x0b\xce\x03\x11\x5b\x0a\x0c\x30\xab\xe2\xd7\xb3\x66\x39\xf0\xc0\x8e\x40\x29\x07\x1e\xd8\x11\xaf\xe5\x54\x5c\x4b\x2f\xfb\x16\xa6\x86\x29\x0c\x18\x9f\x09\x53\x62\xa5\x50\xcf\xb2\x75\x16\x0e\x26\x92\xc2\xb4\x25\x0e\x44\x79\xd5\x34\x85\x01\x73\x92\x72\x9a\xf2\x5a\xab\x52\xea\x54\xb6\xce\xc2\x91\xfe\xca\xd6\x59\x38\xd2\xf2\x58\x6f\xf4\xbd\x3c\xd7\xcb\xda\x39\x0a\xcc\x62\xaa\x6d\xa7\x1b\x30\x8b\x0f\xdd\xca\x26\x30\x6b\xe3\x87\xe9\x0f\xd3\x1f\xae\x26\x69\x15\xc5\xc6\x62\x81\x59\xf5\x68\xb5\xb4\x5e\x8b\xf1\x39\xd6\x47\x1b\x5a\xd2\xc7\xc6\x3a\x6b\x29\x12\x63\x63\xb6\x17\xfb\x36\x49\x99\xa4\xac\x39\x79\x5f\x63\x76\x6c\xcc\xc9\x62\xf6\x66\x92\x3f\x5b\xd8\x57\xe7\x1b\xd8\xb0\x16\x56\x4f\xdb\xc9\x88\xea\x0d\x0c\x57\x93\xb1\x3e\x36\x7a\xc8\xc0\x28\x75\x8e\x83\x22\x1d\x16\x69\x61\x62\x01\x1d\x9a\x89\xc4\x6c\x8b\x89\x09\x74\x6c\xd4\x25\x49\x79\x99\xf2\x60\x4b\x8a\x95\xf2\xbc\x4d\x59\x83\x6d\x33\xe5\x32\xe5\x5a\xcf\xac\xd6\x1c\xda\x6d\xc7\xbe\xba\xc5\x58\x03\x62\xec\x74\x0b\x61\x9b\xec\x74\x8b\xb1\xcf\xfb\xe7\x8f\xd8\x56\xb9\x5d\xb1\x8e\x63\xc7\x72\x3a\x56\x0a\x03\x42\x1c\x6b\x18\x8d\xc3\x9c\xc1\xec\xa5\x92\x8d\x83\xc9\x48\xcc\x9e\xe4\x54\xe6\xb4\x54\xf5\x6a\x52\xb0\x35\x89\x63\xe9\x2e\x43\xf5\x7a\x1c\x93\x56\xa2\x48\xc7\xe9\xcf\x16\xce\xc1\x27\x38\xce\x30\x29\x96\x9e\x38\x4d\xba\x4d\xba\xb1\x93\xf1\x43\x74\x69\x71\x6e\xe7\xca\x7e\xb0\x34\x18\x63\x69\xfd\xb5\x24\xd7\x18\x73\x9a\x72\xfe\xfc\x81\x0d\x6e\x0c\x8b\x30\xe6\xf5\xf3\x47\x85\xbf\xfa\x98\xf2\xfc\xfc\x51\x74\x94\x61\x99\xc6\x2a\x40\x0d\x53\xd2\x94\x35\x41\x4f\x72\x3e\xcd\x79\x21\x97\xc2\x3b\x06\x16\x9c\x31\x5e\x6b\xd2\x3c\x79\x86\xa9\x6d\x8c\x35\x6d\xe5\x39\x48\x69\x53\xe6\x2a\x4f\x92\xf2\xfd\xd5\x2a\x4f\x9a\x62\x79\x5e\xab\x3c\xf4\x88\xf1\xb6\x3c\x6f\x6a\x41\xce\x6f\x6b\xb1\xe6\x88\x1a\xd4\xeb\xf2\x99\x35\x21\xd4\x52\x21\xc6\xb8\x0e\x53\x30\xb6\x91\xcf\x65\x79\x16\xaa\xfc\x55\x98\xb2\x94\x93\xd3\x14\x6b\xba\x50\x6b\xea\x1f\x83\x59\x44\x54\x51\xc2\xcb\x5a\x60\x01\x5f\xc2\x7f\x8c\xcb\xd6\xb8\xa8\x97\x6f\xb7\x5e\x0b\x55\xd4\xfd\xb2\xcc\x0b\x58\x64\xc7\x60\x12\x11\xb3\x4f\x5f\xf6\x98\xb4\x2a\xb6\x53\xe8\x8f\x15\x73\xe7\x85\x67\x3e\x56\xe3\x43\x35\x7c\xc6\x22\x7e\xb0\x22\x52\xa0\x8f\x05\xc2\x24\x6f\x55\x3f\xbe\x6c\xa1\x92\x22\x62\x6e\x17\x4b\x5e\xaf\x7f\xda\xf4\x0b\xb5\x2a\x16\x37\xe3\x43\x54\xac\xd7\xc7\xcd\x52\x43\x54\xaf\xe1\x18\x37\xb2\x46\xf4\x28\x93\xda\xa4\xfe\xf9\x23\xd8\x35\x89\x1b\xf9\x23\x0a\x05\x3b\x6e\x6c\x38\x22\x59\xc5\xc5\xbd\xbd\x4c\x7a\xb1\x2a\xd8\x49\x7a\x9b\xf4\x66\x4b\xa6\x48\xfa\x98\xb4\xf4\x70\x0c\xec\x71\xef\x96\x8b\xed\x9e\x63\x0d\xd3\xb8\x11\x5d\xa2\xb7\x20\x2f\x16\x14\x22\x31\x6d\xc4\x8d\x38\x13\xc9\xea\x32\xee\xdd\xa2\x2e\x8c\xb9\xba\x6e\xdc\xbb\x45\x65\x05\xf1\xb7\xbc\x6e\x93\x50\x9a\x27\x3f\x3c\x2c\xd7\x42\x9d\x07\x49\xd8\xd4\xc5\x98\x9b\x49\x66\xcf\x6e\xd1\xf4\x87\xc3\xec\x17\x62\xb7\x10\xc3\x6a\x2f\xd4\xac\xed\x97\x13\x6a\xdc\xe1\xab\x16\x6a\x3b\x68\x95\xf0\xd3\x2c\x04\x26\x92\xb8\xc3\x26\x58\x18\xf3\x34\xc9\x57\x2d\xd4\x19\xbc\x3d\xac\xc9\x42\x1e\xd6\x37\xac\xef\x42\xcf\x8d\xaf\x15\x8f\x49\xec\xe7\xed\xe4\x95\x36\xe7\xc2\xc0\x82\x19\x77\x5a\xdf\x85\xac\x49\x73\xa6\xf5\x5d\xa8\x31\xc9\x2b\x7d\xe3\xc2\x98\xa7\x3f\xf4\x8d\x0b\xa3\x76\x7f\xe8\x1b\x17\x72\x16\x45\x2d\x4b\xbf\x30\xd2\x72\x95\x79\x2d\xc4\xb0\x25\xda\x96\x58\xa8\x61\x97\x69\x8b\xba\x90\x9b\x8d\xde\xf6\xdb\x66\x31\xb9\x53\x88\xb6\x10\x4d\x21\x36\x5a\x62\xda\xd0\x0b\x31\x26\x79\x4d\xf3\x5a\x08\x16\xb8\x71\x4f\xab\x3d\x91\x91\x76\xf8\x69\x51\x17\xf2\xb0\xa1\x97\x28\xfe\xa2\xc2\x3a\x4e\xdf\xb8\x50\x18\x52\xe3\x3e\x1d\x88\x0b\x85\xe2\x11\xf7\x69\x87\x5f\x28\x14\xfc\xb8\x4f\xcb\xb5\xd0\xd3\xa2\x9e\x8e\x01\x84\xf9\x16\x14\xf5\xb4\x03\x2c\x54\x6f\xd4\xf1\xb4\xa8\x0b\xb1\xa5\x79\x59\xd4\xd3\xa2\x52\xae\xd3\x72\x9d\xac\xa6\x9a\x1f\xbe\x2c\x04\xfb\x71\x75\x32\x36\x5f\x16\xe2\xc5\x1e\xa6\x43\xff\x65\x21\x16\x06\xb6\xfc\xb8\x5f\x16\x62\xa1\x6b\x9a\x97\x4d\xe8\x7c\x11\x54\xfb\x65\xb9\x16\x9a\xad\xcd\xb8\x5f\x96\xeb\xe5\x66\xa7\xd9\xdb\x84\x0b\xa3\x94\x52\x2f\x3b\xc0\x42\xf5\x66\xb9\x2c\xfd\x42\xc4\x41\xf6\x6f\xdf\xb8\x10\xbb\xe3\xfc\xad\xfc\x61\x9f\x3d\xac\xf6\x65\xdb\x2f\xe4\xb7\x10\x97\xd5\xfe\x4e\x37\x7c\xda\xcb\x3a\x2e\xf4\x57\x70\x5d\x76\xa6\x85\x31\x6d\x9c\xcb\xec\x17\x62\xf3\xa3\x5d\x56\xe8\xa2\xfb\x5a\xfa\xcb\xd2\x2f\x14\x46\xbe\xb8\x3f\x66\xbf\x50\xe1\x18\xfa\xd8\x84\x0b\x79\x58\x88\x8f\x15\x5a\xe8\xef\xb0\xfa\x58\x88\x85\xc2\x3e\x12\xf7\xc7\x56\x5d\xc8\xdd\x26\xfc\x38\x1e\x17\x32\x76\xca\xf5\xb1\x10\x1f\xc6\x90\x15\xfa\x38\xf8\xd8\xbe\xc7\x78\x1d\xf7\xed\xb0\x5a\x08\xf6\x7b\xe2\xbe\x2d\xea\x42\x84\xa3\xe3\xb6\xa8\x0b\x15\xca\x89\xc7\x56\x5d\xc8\x39\xa8\xd0\x63\xcf\x59\xa8\xf3\x30\xc9\x0a\x2d\x8c\x52\x7a\x3e\x56\x68\x61\x60\x4e\x89\xfb\xb1\x09\x17\x2a\xd6\xc2\x32\x1e\xa7\x29\x10\x1b\x72\xe2\x71\xb6\x01\x8d\x46\x1a\x8f\xb3\x0d\xa8\x60\xb8\x3f\xce\x36\x20\xb6\xf4\xa9\x8f\x49\xeb\x73\x6c\xd4\xf1\x61\x6d\x25\x62\x5b\x13\x7c\x3c\x2c\xae\x44\x6e\xbd\xea\xf8\x60\x18\x13\xb9\x31\xd2\x1e\xa7\x29\x30\xbf\x49\x87\x3f\x5c\x88\x93\x99\xeb\xc1\x6a\x22\xe2\xf4\x29\x94\x67\x11\x71\x52\x08\xe7\x11\x90\x3d\x7c\xca\x0a\x61\x26\x61\x2f\x38\x1e\xac\x22\x22\x8f\xa5\xf3\xc5\x33\xac\xd0\xc2\x88\x41\x92\x13\x05\x28\xb6\x22\xe3\x09\xdf\x18\x8e\x0e\x2a\x14\x6d\x12\x9d\xe9\xa4\x71\xc2\x42\x2c\x34\xd6\x9b\x78\x9c\x3b\x40\x1d\xd3\x24\xdb\x6b\xa1\x50\xb5\xe2\x71\xee\x00\x35\xf9\x8e\x4f\xda\x5e\x0b\xc5\x16\x59\x3c\x69\x7b\x2d\x14\x1b\x46\xf1\x64\x9a\x84\xe8\x58\x0a\x61\x3c\x4e\x27\x20\x4f\x5b\x22\x6d\x89\xe4\xd3\x7e\xb3\xf7\xd3\x2e\xe4\x6e\x07\x48\x1b\x27\xd1\x3f\x99\x15\x9e\x32\xaf\x85\x4e\xba\xdc\x53\x16\xb5\x98\x74\xfa\xfc\xf5\x54\xfc\xb4\x35\x59\x88\x93\x31\xf0\x38\x01\x81\x11\x83\x62\x3b\x01\x81\xd8\x0f\x93\x2c\x76\xe3\x89\x64\x73\x3a\x01\x81\x0a\xbb\x72\x5b\xa0\x85\x64\xdf\x35\x9e\x69\x43\x4d\xcc\x58\x7e\xd3\xe9\x1b\x27\x6f\x6c\x93\xec\x58\x13\x95\xc8\x0e\xef\xcc\x05\x22\x50\xc2\x1e\x67\x2e\xd0\xe3\x9b\x97\xe5\x5a\x18\x73\x50\x21\x27\x33\x10\xb9\xf9\x94\x5f\x7e\x21\xcb\xcf\x3c\x2d\xea\xf4\x33\x93\xe4\xcc\x05\x6a\x20\x7f\x9e\xd3\x42\x9c\x4c\x9f\xf6\x35\xe7\x24\xd0\xd8\xcb\xe3\x71\x4e\x02\xa3\x27\x6f\x3c\x7d\xe3\x42\x0d\x7f\xa8\xa0\x07\x81\xa7\x4d\x3c\x2f\x0b\xb1\xd0\x67\xf1\xc3\xb7\xbd\x68\xa1\x47\xd1\x84\x4e\x07\x20\x22\x28\xd7\xdb\x1f\x2e\x74\x22\x17\x1f\x16\x16\x62\x38\x7d\x3e\x97\x0d\xbd\xd0\x2a\x4b\x8f\xd3\x01\xc8\xb6\xed\x2f\x3b\x16\x6b\x82\xaf\x64\x71\x3a\x00\x75\xda\xd7\x2e\x4b\x7f\xe1\x34\x85\x72\xf8\x7c\x6c\xaf\x0f\x63\x40\xc9\xf2\xf1\x8d\x0b\xa3\xec\xdd\xce\x10\xa0\xd9\xb0\x8a\x47\xd9\x0f\x32\xed\x72\x1f\xdf\xb8\x10\xaa\x54\x8f\x82\x1e\xa4\x93\xff\xa3\xa0\x07\xc9\x9e\x7d\x3c\xb7\x3d\x7a\xa1\xf1\xcb\x8a\xe7\xb6\x5c\xb7\x5d\x8e\xec\x6f\x4b\x7f\xb3\x5d\x60\xab\xde\xe6\xb5\x90\xb8\xbe\xc4\xf3\xf8\xc3\x85\x31\x51\x70\x9e\xc7\x0a\x2d\xc4\x89\xd6\xf0\x3c\x7e\xa1\x85\x4e\x9b\xf0\xb1\x4f\x2c\xe4\xc6\x84\xfd\x3c\x56\x68\x21\xcf\x23\x7f\xf7\x87\xc4\x0c\xf2\x45\xd2\x73\x72\xc3\x3a\x26\x22\x8e\x49\xd2\x69\x12\xfb\x2a\xa7\x4f\xbd\x4d\x72\x2a\x36\xe9\x63\xd2\x9a\x05\xcf\x35\xb5\x24\x16\x94\x2f\x62\xae\xd1\x91\x5a\x52\x44\x1c\xdf\xa7\x7c\xe3\x42\xd3\x4d\x12\x8b\xc9\x17\x7d\xae\xc6\xc9\x0d\xbb\x90\xa8\x71\xfa\xd4\x65\xd2\xb5\x26\xd9\xf5\x1d\x53\xf3\x8a\x18\x65\xb9\xb0\xc0\x89\xde\x96\xbc\x4e\xfc\x7f\xbe\x68\x1a\x27\x37\xf6\x19\x44\x9c\xab\x63\xe6\xc6\x46\x83\xe8\x31\x28\xc4\x61\x51\x17\xc6\xb7\x8e\xec\x36\x8b\x9a\xdf\xa7\xa6\x49\x13\x0b\x0b\x45\x3d\x2c\xfd\xc1\x9a\x76\x6c\x24\xd9\x84\x07\x42\xc1\x0a\x1d\x56\x68\xa1\x19\xa2\xb9\x1d\xb6\x2a\xeb\x24\xdc\x07\x53\xef\x20\x91\xb3\x28\x7d\x58\xfa\xc0\xcb\x66\xa7\x10\x61\xb9\x16\x46\x0c\xbe\x63\x58\xae\x85\x81\xdd\x23\xb7\xb0\xa1\x17\xea\xb0\xa8\x61\x7b\x85\x03\x99\x3a\x32\x8f\x88\xae\xc9\x77\x4c\x2b\xc4\xa4\xf1\x2d\x44\x5a\x7a\x66\x08\xf6\xdf\x72\x2b\x7f\xb8\x30\x6a\xe3\xa9\xb6\x55\xdb\x56\xa5\x25\xda\xa7\x5a\x35\x9b\xa2\xb6\x0d\xbd\x50\xb8\x51\xe4\xd6\x96\x7e\xa1\xa3\x28\x2a\x76\x1c\x31\x66\x52\xae\x69\x5e\x93\x65\xeb\x4e\x07\x98\x36\xe1\xa4\x63\xda\xc9\x4f\x3b\xc0\xc2\x60\x35\x96\xdb\x69\xf6\xd8\x69\x86\x45\x3d\x6d\x9c\x13\x67\xb8\xc9\x0f\x5f\xd6\x71\xa1\x0f\xfb\xd7\xcb\xec\x51\xa0\xb1\x04\xa6\xce\xad\xa2\xb6\xe4\xa9\xb7\x5f\xe8\xad\xd6\xe0\x53\x16\x15\xb9\xba\x5b\x88\xb7\x1f\xed\xcd\xa2\x6a\xf8\x43\x7b\xf4\xdb\x1e\x4d\xb9\x2e\x7f\xb8\x10\xdb\x61\x92\x45\x5d\x68\x7c\x5c\x73\xbb\xfc\x42\x0b\x19\xfb\xaf\xa7\xe2\xdc\x2e\xbf\xfc\xc5\x7e\xe5\x20\xdf\x8f\x0d\xf5\x41\xfe\xd8\xe1\x3f\xbe\x1d\x65\x7a\xb3\xbe\x1f\xbf\xd6\xc2\xdc\x86\x49\xbe\x1d\xe9\x99\x36\xc1\xc7\x9a\xe0\xe4\x7a\xd8\x8b\x6e\xf3\x42\xdb\xdd\x83\xce\x70\xdb\x04\x37\x5b\x77\x93\x56\xb9\x6d\xe1\x85\xde\xfc\x0e\x8f\xf5\x5d\x18\x31\x28\xd7\xe3\xb0\x58\x48\xbc\x12\x73\x7b\xac\xd0\xa3\x70\x5e\x4f\xed\xd8\x69\x44\x8d\xb5\xd2\xc8\x1d\x05\x58\xd4\xc9\x97\xdf\xb7\x30\x09\x73\x17\xbd\x68\x57\x2e\x82\x81\x15\x28\xf5\x76\x13\x03\xf5\x6a\xf5\x38\x92\x16\x6a\x2c\x11\x9e\xbb\xf2\x07\xe4\x40\x4a\xe9\xf0\x26\x82\xdd\xc8\xdc\x15\x10\xa0\x70\x25\x4a\xdd\x69\x45\x61\x16\xcc\x9d\xfd\x3f\x11\x81\x94\xda\x87\x3f\x5c\x08\x5c\x34\x72\x47\x8f\x15\x79\x1e\xd4\x31\xac\xf6\x42\x6d\x93\x96\x08\x0b\x81\x4f\xed\x48\x93\x86\x49\x83\xb5\x73\x92\x64\x4b\x04\x73\x65\xd3\x12\x98\x45\x44\x8f\xcd\xec\x6d\x9c\xc0\x43\x76\x52\x08\xe5\x0f\x98\xdb\x6e\xd2\x34\x89\xbd\x4a\xbe\x90\x4e\xbb\x62\xcc\x30\xe9\x6d\x12\xcb\x8a\xdd\xec\xad\xd0\x42\x07\x42\x70\x47\x73\x16\x81\x46\x9f\x3b\x9a\xb3\xe8\xf0\x6b\xa7\x4d\xb8\x90\xcd\xb0\xd8\x95\x52\x20\xc6\x9a\xb0\x73\x2f\x9f\x5a\x88\xcd\x96\x50\x70\x81\x0a\x7f\x58\x56\x68\x21\x76\x1b\xa7\xac\xd0\x42\x61\x24\x4e\x3c\x07\xbf\x88\x38\xcc\xcb\x2f\x54\xcc\x5c\x76\xa6\xb2\x8e\x0b\x8d\x6b\x4f\xee\x65\xb9\x16\x06\x7b\x67\xb9\x97\x75\xc4\x36\xc3\x1a\x22\xf7\xb2\x8e\x38\x5c\xb4\x49\xed\x77\x5c\x18\x58\xdd\x73\x57\xa0\x82\x74\xca\xdb\x15\xa8\x20\x36\xbb\x6f\x5b\xa1\x76\xd1\xed\x0f\xad\x50\x5b\x21\x0a\xd1\x96\xab\x31\x19\x24\x3f\x54\xec\x82\xd8\x90\xc4\xfb\x34\xfb\xa9\x05\x9b\x37\x4e\xab\xbd\xd0\xbb\xbd\x50\x49\x0c\x2a\x9b\xaf\x7d\xda\xf6\x0b\xd1\xe6\x75\x5a\xfa\x85\x40\x3f\x4f\x1d\x23\x45\x71\xc8\x20\xf7\x97\x85\x78\x21\xfb\x99\xa6\xf6\x97\x3f\x7c\xf1\x43\x3f\xed\xcb\x42\x2c\x44\x5b\x2e\x45\x38\x08\x65\xec\xfe\xb6\xf4\x0b\x39\x6d\x1c\x25\x31\x88\x38\x4c\xb2\xf4\x0b\xf1\xed\x13\x97\xa3\x03\x53\x06\x07\x1b\x72\xbf\xcc\x0b\x2b\xf8\xb9\xf1\x43\x85\x33\x88\xf8\x3e\x65\x07\xb8\xd8\x04\x99\x3e\x65\xb9\x16\x02\xbb\x77\xea\x41\x29\x42\x81\xbc\x7f\x7c\xea\xe3\x53\xb4\xc4\xc7\xa7\x3e\x2a\xf6\x64\xaf\xa8\x05\x73\xb3\x09\x6f\xbb\x09\x2a\xe8\xb6\xd1\x5e\x8f\x4d\xc8\xf9\x81\x6f\x51\x1f\x9f\x42\xdf\xc4\x73\x22\xf7\xc7\x0a\x3d\x08\xf7\xdd\xa7\xec\x26\x1c\x2a\x60\x33\x3c\x77\x05\x32\xa8\x5d\xc9\xf4\xd8\xf6\x0b\xed\x8c\xba\x3f\x16\x75\xa1\xd9\xb3\x48\x37\x96\x44\x1c\xf4\x09\x3d\x1f\x45\x05\x73\xa5\xae\x8f\x22\x71\x74\x4c\x5d\x1f\x45\x39\x51\xe8\xfb\x28\x6a\x1b\x66\xff\x32\xe9\xc5\xca\xae\x49\xba\x4d\xba\xd1\x4a\x49\x52\x51\x05\xcd\xf6\x56\x1e\xbb\xd9\xef\x74\x80\x9e\x24\x7d\x4c\x5a\xa5\xe7\xc8\x4c\x1e\xea\x88\xa0\xb1\x35\xa4\x1e\x89\x22\x37\xb3\xc7\xd5\x44\xc4\x52\x37\x7e\x39\x15\xeb\x9f\x28\x72\x6c\xbe\xca\x62\x2f\x8c\x89\xc4\x3b\x86\x6d\x37\x6c\x3b\xea\x3b\x6c\xa8\x81\x24\x46\x96\xe9\x7f\x28\x12\x33\x50\x1e\xc3\x86\x5a\x18\xa7\x8d\x3e\x2c\xe3\xd0\x79\x8a\x62\x3b\xb5\x80\x0a\x5b\x58\xdd\x13\x0c\x95\x30\x3d\x17\x45\x73\x86\x61\xad\xb3\x4d\x6a\x56\x8c\x64\x1f\xe6\x15\x56\x88\x42\x28\xe8\x8f\xaf\xa0\xe7\x8d\x0a\x7a\x10\xe3\x34\xc9\x46\xc7\x44\x52\x0c\xea\x23\x6d\xf4\x74\xd4\xf1\xc6\xb4\xda\x49\xff\x60\xb6\x39\xd2\xec\x93\x25\x0a\x63\xe0\x48\xf3\x5a\x88\x89\x06\xa2\x3b\xa3\xc8\xa0\xc3\x1f\x8a\x70\x50\x31\x29\xbd\x22\x1c\x14\x1b\x47\x89\xdb\xe2\x17\xa9\xf6\x76\x34\xb2\x0c\xf4\xf7\x29\x25\x31\xe8\xed\xf4\x29\x0b\xb1\xd0\x69\x43\xb7\x79\x2d\x34\x7e\xf3\x89\x8f\xe2\x17\x7d\x5a\xed\x69\xab\x2e\xc4\xb6\x9b\xe4\x77\xc4\x70\xbe\x1d\xb4\xea\xb4\xf4\x13\x7f\x75\xb3\x57\xec\x82\x51\xfe\x50\x05\x18\x54\xfb\x85\x94\xc4\x60\x14\x02\xf5\x38\x6d\xc2\x85\x88\xf4\x87\x16\x75\x61\xb0\xa1\x9b\x87\x92\x18\x0c\x8c\x01\xa9\x97\xa3\x08\xcc\xb2\xa9\x97\xa3\x88\x0d\x81\x7a\xbc\x2c\xea\x42\x35\x8b\x8f\x43\x79\x0d\x02\xc7\x97\x3c\x5e\x16\x62\x61\x94\x3f\x54\x27\x06\xdd\x48\x96\xe3\xb2\x42\x17\x1a\xbd\x1d\xf3\xb2\x10\x17\x4b\x3a\xc4\xee\xa1\xe6\x0c\x7a\x38\x14\x2e\x5b\xf5\x72\x6a\xa1\xbd\x94\xd7\x20\xda\x11\xac\x24\x06\x83\x93\x5e\x79\x7c\x6c\xaf\x85\x28\x87\xa8\xaa\x31\x08\x55\xbd\x43\xd5\x18\x14\x6e\x4b\xe9\x29\x20\x31\x72\xa7\x5c\x1f\xdf\xf8\xe1\x68\x0e\x2a\x82\xa7\x7e\x44\x9f\x36\xa1\x82\x1e\x64\xd9\x5e\x0a\x7a\x10\x89\xbe\x79\x7c\xfc\x42\x0b\xd1\x16\xf5\xb6\xa8\x0b\x19\x68\x92\xc7\x6d\xe3\xdc\xee\x8d\x92\xfd\xed\x17\xba\xfd\x42\x64\xff\xf8\xd4\x43\x2f\x74\x28\x3c\xd6\x71\x21\x82\xd5\xd4\xe1\x74\x00\xc6\xa9\x18\x52\xf6\x83\xfa\xd6\x51\xfd\x1c\x84\x13\xd0\xf1\x58\xfa\x07\x91\x76\x9a\x64\xe9\x17\x62\xd2\xef\x07\x1e\x3c\xa2\xf1\x44\xcb\xa1\xa0\x07\x13\xe3\x5c\x0e\xcd\x0f\xa0\xf1\x38\xcc\x81\x9d\x59\x34\x8e\x78\x39\xb0\x33\x8b\xb5\xba\x24\xc9\xec\xbf\x1b\x9d\x83\xa4\x32\xa9\x7e\xfe\x68\x17\xb7\xc3\xe9\x00\x24\x0e\xfa\x39\x34\x52\x80\x2c\x5a\x75\x1c\x66\xbf\x50\xca\x9c\xa1\xae\x0f\xc6\x64\x62\x1c\xda\x1a\xc0\xc0\x09\x35\x87\xf2\x1e\x24\x6e\xfb\x39\x0e\x4b\x7f\x60\x89\xc3\x10\x33\x94\xd1\xa0\xed\x72\x63\xf8\xd4\x42\xe0\xd3\x9c\x43\x5d\x1f\x8c\x93\xa5\xc4\x50\xd7\x1f\x5f\xcf\xbd\x83\x24\x0b\x81\xd8\xc6\xc7\x38\x87\xba\x3e\x28\xa7\xbc\xa1\x24\x07\xe9\xca\x7f\xa8\xc5\x83\xda\x92\x6a\xab\xc5\x83\x3e\x91\x72\x43\x79\x0f\xe2\xdc\xfc\xa1\x5f\x08\x95\x9d\x5d\x85\x1c\x69\xb9\x16\x92\x83\x08\x39\x54\xd9\x41\x4d\xc6\xd0\x48\x8b\xca\x89\x3c\x4d\x3f\xc3\x29\x00\xb4\xf2\x6b\xa4\x45\x4d\xf4\x73\xbb\x89\x46\x0a\x10\x13\x9d\x7a\xa8\xfe\x83\x5c\xd3\xdc\x2f\xa7\xe2\xc1\xd6\xaa\x48\x95\x8a\x51\xb6\x70\xe1\x6a\x80\x41\x6c\x94\x5d\xa6\xdc\xcc\x35\xc9\x86\x2a\x96\x3b\x49\x19\x9d\x34\x40\x4c\x3f\x4d\x9b\x57\xe3\x38\x60\xbf\x55\xa3\x07\x75\x58\x6c\xad\x26\x60\x44\xf9\x94\xfd\xb6\x11\x36\xa7\x79\xd9\x04\x68\xf4\xa7\x9f\xd9\xd9\x06\x94\x6b\xc1\xe1\x6c\x03\x06\x67\x54\x13\x4f\x98\x2f\x72\xda\xbb\x4f\x1b\x7d\x21\x5d\x99\xe9\xca\x22\xa2\x1c\x75\xa7\x2d\xbc\xd0\x67\xd1\x65\x9c\x21\x40\xe1\xce\x93\xc3\x19\x02\xb4\x2a\xf7\x50\x57\x07\x43\xf1\x86\xfb\xcb\x17\xed\x34\xa5\x8b\x8b\x48\x36\x07\x72\xe0\x08\x2f\x46\xda\x23\x15\xf4\xa0\x37\x47\xf0\x65\x51\xf1\x33\xe1\xcc\x4d\xea\x68\x22\x7a\x0b\x3a\x96\x26\x92\xe1\x1e\xa3\x1f\x4d\xc5\x1c\x14\x67\x34\x73\x28\xfb\x41\x9c\x28\xe6\xe3\x63\x7b\x2d\x64\x39\x36\x15\xf4\xc3\x0d\x45\x96\xad\xe3\xe3\xe7\xd0\xa8\x6c\xe3\x28\xd5\x41\x9c\x98\xba\x86\x8a\x39\xa8\xcd\xc6\x51\x5e\x83\x3e\xfc\x1c\xca\x6b\x30\x4e\x2b\xa4\xbc\x06\xa3\x99\x5a\x86\xf6\x14\x30\x4e\x4b\x7f\x5b\xed\x85\xd1\x0a\x9b\xdb\x6a\xdf\xd8\xd2\x59\x1e\x8e\xdb\x72\x2d\x8c\xef\x08\xbe\x1d\x29\x0b\x99\xf6\x55\x0d\x31\xa0\xff\x96\xe4\xd7\x5e\x18\x5a\x24\x86\xcb\x0a\xd0\x61\x85\x5c\x56\x80\x76\x4d\x3f\x1e\xeb\xf8\xe0\x76\xef\xe8\x70\xb6\x01\xc5\x29\xd6\x1c\x4e\x2d\x20\x6d\x89\x70\x75\x00\xa6\xd6\xaf\xd0\x5c\x03\x46\xd0\xa3\xc3\x19\x02\xb4\x66\xb3\xd0\x5c\x03\x62\xe7\xa3\x85\xab\x03\x50\x85\x45\x22\x70\xf5\x17\x31\x50\x2e\xc3\xa9\x05\x04\x07\xa8\x32\x5c\x43\x80\xd6\x10\x1c\xce\x36\x20\x70\xbe\x49\x0f\xca\x8a\x56\x02\x84\x2b\x8d\x70\xa5\xc1\x84\x1d\xb8\xd3\x8b\x71\x22\x50\xc3\x95\x06\x08\x3c\xcb\x32\x34\x23\x81\x1a\x93\x1f\x3a\xdb\x80\xc6\x4f\x28\x43\x03\x35\xc8\x9d\x21\x1a\x2e\x3e\x40\xee\x66\xaf\xe9\x19\x74\xd1\xef\x63\xd8\xaa\x0b\xb5\x61\xdd\x08\x17\x09\x60\x6a\xb3\x0e\x27\x20\xd0\x03\x95\x3d\x5c\x11\x80\x98\x16\x55\xfb\x13\x68\x57\x17\x31\x6c\xaf\x85\xda\xb0\x22\x04\x3e\x38\x22\xf0\x1f\xc8\x70\x6a\x01\xd5\xa8\x08\xe1\x3c\x02\x06\x87\x4e\xd2\x53\xc4\xa2\x83\x31\x14\x8a\x5a\x50\xd3\x0e\xa0\xca\x0e\x6a\x22\x31\x43\xb9\x1a\x5a\x4a\xe8\x98\x1c\x44\xf9\x22\x14\x7c\xa1\x5c\x05\x43\x05\x27\xda\x3a\x2e\x64\x5b\x47\xcd\x22\xa0\x71\x56\xca\x50\xd4\x82\x68\xbf\xb6\x96\x12\x50\x6c\xd6\x65\x68\x29\x01\xcd\x69\x85\x8c\x69\x5e\x93\xbc\xca\xa7\x6c\xaf\x85\xa1\x4d\x32\x4e\xf3\x3a\x39\xcb\x62\xff\x52\xa7\x06\xfd\xed\x13\x2f\x5b\x02\xc7\xc1\x60\x46\x0d\x15\x68\x50\x27\x82\x2f\xb4\x81\x80\x31\xfd\x42\x1a\xa8\x41\x17\x93\x4e\xbc\xcd\xeb\xcd\x18\xb2\xe7\x68\x03\x01\x15\xa8\x54\x71\x59\x2e\x9c\x3e\x54\x70\x42\x65\x1c\x34\xa7\x7e\x33\xb4\x94\x80\x9e\xe6\xa5\x8c\x06\xfd\xf7\xf8\x41\x67\x28\xc2\x41\x71\x22\x22\x43\xe9\x09\x0a\x37\xd4\x0c\x85\x20\x18\xdf\x8e\x75\xfb\xaa\x85\x3e\x6c\x3b\x65\x19\x18\x6d\x97\xb9\x6d\xf4\x9b\x41\x6d\x19\x95\x52\xa0\x71\xbb\xcf\x50\xb5\x05\xcd\x91\x8b\x4c\xe5\x0f\x68\x4e\x70\x65\x6a\xb0\x00\x89\x1b\x52\xa6\x06\x0b\x50\x2a\xd3\x9e\x19\x12\xa1\x05\xd9\x23\x42\x22\x70\xb7\x4e\x4f\xd7\x88\x28\x66\x41\x0f\x9d\x88\x1a\xac\x77\x3d\x63\x22\x7a\x43\x4b\xf2\x00\x89\xc8\xc9\xf2\x30\x1d\x88\xa0\x07\xb6\xf4\x54\xed\x03\xad\x49\x3c\xb5\xe7\x82\x54\x08\xa6\xdb\x42\x20\xa6\xe5\x52\x2f\x03\x03\xd7\xa1\x4c\xd7\xe1\x20\x0e\x2b\xa4\xfe\x04\xb2\xd1\x2a\xb3\xfc\x61\xd1\xd7\x90\x06\xe9\x78\x02\x85\xe3\x6e\xa6\x83\x07\x0c\xce\x92\x64\xaa\xa7\x80\x0c\x2b\xe4\x78\x02\xed\x8a\x31\x5d\x28\x83\x18\x4d\xf6\xae\x8a\x41\xbb\x44\x49\xed\x93\xa0\xf1\xa8\xcd\x54\xc1\x01\xcd\xa1\xb7\x4c\xf7\x80\x40\x9f\xb6\xaa\x3a\x0f\xe8\x89\xba\x91\xa7\xa5\x5f\x98\xda\x7c\x92\xed\x76\x31\x38\xaa\x99\x9e\x45\x11\x7d\x32\x2c\x3c\x7a\x22\x6a\x60\x45\x48\x97\xc0\x20\x71\x29\xc8\x74\x04\x83\x20\xae\x47\xa6\x23\x38\xbf\x23\xd8\xec\x6d\x68\x76\xf3\x77\x8b\xea\x7a\x17\xb4\x0a\xa1\x27\x3b\x44\x0e\x16\xca\xa9\x36\x03\xea\x44\x8c\xa4\xdb\x37\xa0\x36\x94\xb8\xd4\xf2\x08\x62\x2b\x93\xec\x13\x1f\xb7\x56\xc9\x4b\x3d\x05\x24\x67\x03\x32\xd5\x53\x40\x0f\xa4\x67\x6a\x07\x04\x99\x7e\x34\xd7\x82\xa0\xf0\x7c\x4b\x0f\x6a\x88\xc6\x0d\x3d\xcb\x39\x1c\x0c\xdc\xc9\xb2\xf0\x5d\x15\x43\x2b\x66\xb9\x58\x2b\x0f\xba\xf1\x39\x3c\x74\x21\xd2\xcf\x51\xee\xaf\x94\xe1\x4a\xd0\x24\x6b\x98\xd7\xa0\xa8\xa8\xa0\xa5\x41\x0d\x64\x21\xc2\xcb\x7e\x0f\x9a\x33\xc7\xe9\x19\x09\x11\x1b\xd2\xa4\xb4\xf1\x83\x89\x03\x5b\x96\x5a\x3c\x48\x7c\x4c\xd7\x9a\x8a\x24\xba\xef\x69\x92\xaa\x31\xc8\x93\xb6\x2f\xbf\x36\x48\x4e\x91\x64\xf9\xb5\x41\x37\x26\x83\x7a\x9b\xfd\x5b\x27\x6d\x0a\xf1\xf6\x87\x6f\xbc\x76\x50\x37\x4a\xa5\x17\x84\xa6\xd4\x52\xc3\x05\x73\x63\x6c\x97\x1b\x7f\xa0\xf1\xbf\xcc\xb2\x4f\x80\xd4\x7a\x5f\xaa\xb3\x20\x0f\x4b\xaf\x45\x02\xf4\x89\x56\x5a\x38\x44\x88\x0a\xa6\xbc\x52\x47\x04\xa3\x19\xa2\xa5\x05\x19\x04\xa7\x7a\xb3\x14\xb5\x60\x68\xbd\x6f\xb5\x3f\xd0\x1c\x39\xcb\x56\xfa\xb6\x9b\x75\x4c\xc5\xad\xf6\x07\xc6\xd9\xfe\xf0\x6d\x12\x5a\x16\x33\x57\xab\xd7\x81\xc2\x11\x3a\xdb\xfd\x3b\x50\xb8\xac\x67\xef\xbe\x71\x77\x53\xcc\xa7\xca\x24\xa4\x1c\xc3\xaa\x77\xdf\xb8\x10\x04\x1f\xc8\x56\x63\x03\x4d\xe8\x88\x6c\x3d\x03\x40\xa5\x3f\x74\x83\x1f\x0c\x05\x4c\x6b\xd6\x05\x75\x86\x49\x96\x1e\x2d\x6b\x63\x74\xb4\xcb\x7c\x50\x27\x0b\xc7\x56\xa5\x02\x6d\x13\xb6\x0b\x78\x10\x1b\x86\x98\x56\xa5\x6a\x97\xe6\xcc\x8f\xed\xd2\x1c\xc4\xb1\xcf\x5f\x4f\xc5\xed\x66\x1b\x18\x76\xac\x4e\x0b\xf4\xf5\x49\xa3\xd8\xaa\x6a\x60\x24\x92\xa5\x35\xb8\x82\x0e\xbe\x7c\x97\x1f\xb0\x58\xc8\xb0\xa3\xdc\x2e\xa7\x41\x87\xc5\x56\xa1\x03\xcd\xa1\xc5\x6c\x77\xc3\x40\x38\xc9\xb6\xcb\x69\x30\xca\x86\x52\xa1\x03\x03\x17\xc1\x6c\x67\x1b\xd0\xda\x99\x7b\xda\x76\x93\xa3\x8c\x08\xd4\xd6\xba\x0a\xc2\xc5\x47\x4f\xbf\xc3\xc4\xa7\xd6\xd2\xbb\x50\x06\x5d\xf6\x22\xd7\xbb\xa0\x86\xdd\xef\x65\xf6\x0b\x43\x7b\x48\x6b\x24\x05\x45\x94\x93\x6c\x57\xb2\x20\x09\x67\x95\xad\xbc\xee\xaf\x7d\x92\xec\x55\x9c\x40\x7d\x2b\xe4\xb2\x15\x84\x2e\x14\x7d\xd9\x38\x0b\xf9\x6d\x68\xe5\x35\x48\x8d\xca\xed\xd8\x04\xb9\x33\x61\xb7\x63\x13\xb4\x6b\x88\x7e\xfc\x42\x0f\x3e\x5a\xac\x93\xfa\xb1\x5c\x0b\xed\xb2\xb5\x1d\xc1\x20\x9c\x64\xdb\x11\x0c\x62\x43\xd0\xf7\x63\xdb\x3f\xcc\x23\x88\x91\xe9\x1e\x10\x18\x27\xa3\x6e\xea\x99\x04\x82\x13\x78\x39\xb5\x03\x82\xc1\x99\xaf\x9c\xce\x10\xd3\x19\xe2\xfb\xc3\x69\x12\xd6\xd5\xef\x53\xa7\x49\x4c\xb2\x74\xcc\xe9\xc2\x0f\xac\x4f\xb7\x92\x74\x1d\x02\xbd\xa3\x00\x4f\x6d\x77\x20\xdd\x18\x9e\x6e\xf8\x80\x22\xa4\x55\x4e\x3d\x80\x40\x9e\xe9\x0f\xcd\x7e\x61\x10\x47\x29\xa7\x13\x10\x28\xe2\xd5\xe4\x74\x9c\x83\x3c\x99\x6d\xa6\x4a\x1c\x48\x82\x26\xe5\x74\x4e\x02\xf5\xad\x90\x7a\x1d\x88\x83\xfe\x35\xdd\xab\x01\x43\xe7\x9b\xe9\x38\x07\x63\x5a\x2e\xb7\x5c\x40\x6d\x88\xca\xa9\x5e\x07\x46\xb2\xf8\x98\x8e\x5a\x90\xe9\x53\xda\xdb\xa6\xa1\x75\x0e\x9f\xb2\xda\xd8\xdb\x8e\x36\xc9\xb6\x4f\x06\x0c\x4b\x81\xa9\x09\x0e\xb4\x43\x74\xaa\x10\x82\x1c\x36\xa1\x42\x01\x14\xa7\x89\x72\xba\x29\x0f\x6a\xb3\xf4\xca\x09\xd0\xea\x29\xd3\xb1\x0d\xea\x44\x9d\x9d\xed\xd7\x6e\xec\x3c\x98\x52\xa7\xc3\x1d\x94\xdb\x8e\xb3\x2d\x44\x73\x24\x05\x69\x32\xdd\x72\x01\x83\xa8\x67\x39\xf5\x26\x02\xe9\x40\x9e\x6a\x92\xd3\x93\x62\x68\xa5\x53\x09\x00\x82\xc3\x04\x39\x55\x08\x41\x1f\x68\x59\xf3\xf4\x8d\x0b\x75\x0e\x9f\xb2\xed\x17\xda\x61\x35\x5d\xbf\x81\xd0\xfc\x39\xd5\x11\x41\x0c\xd4\x8d\xe9\xe4\x0f\x7a\xa0\x82\x4e\xd7\x6f\x20\x75\x4f\x98\x6f\xdb\xfe\xad\x12\x47\xff\xd2\x7a\x06\x8a\x33\xee\x39\xdd\x4c\x01\x43\xab\xef\x74\xfd\x06\x72\x3b\x68\x55\x35\x49\x50\x1b\xba\xeb\x54\x32\x81\xe0\xf0\x45\x4e\x65\x0e\xe8\xef\xe7\x50\x91\x00\xcd\x79\xce\x9c\x1f\x8b\xfa\x41\xca\xd9\xf6\xee\x9c\x80\x9e\xac\xa0\xa6\xdb\x24\x20\xbe\x1d\xd3\x6d\x12\x30\x14\x8f\x53\x75\x03\x8c\x69\x1d\x95\x72\x20\x34\xc2\x4f\x55\x50\x90\x93\xa5\xd7\xd4\xe2\x05\x52\x5f\x97\xa9\xc5\x0b\x54\x28\x99\x34\x6f\x81\xe2\xec\x7c\x4e\xa5\x1c\x28\x77\x0c\xa7\x52\x0e\xf4\x44\x05\x9d\xee\x76\x80\x74\x0d\x32\x55\x7a\xa7\x4a\x2f\x93\xff\xa9\xcd\x08\xb4\xbb\x30\xa7\xea\x2c\x88\xad\xf7\x5f\x4f\xc5\xa7\x1b\x18\x20\x83\xb6\x3b\x55\x50\x40\xb9\x43\x7a\xba\x5b\x71\xba\x5b\xc1\x77\x38\x75\xa9\x04\x41\x14\x9c\x3c\x5d\x6a\x82\x24\x70\x54\x9e\x04\xdd\x11\xd1\x7c\xe6\x53\x89\x07\x42\x25\xff\xd4\xca\x04\xda\xfd\x91\x53\x21\x08\x3a\x86\x4f\xbd\x4d\xc2\xaf\x1c\x89\x77\xaa\xff\x9c\x3a\x38\x86\x4f\xdd\x26\xdd\x1c\x78\x58\x6d\x77\x2a\x17\x41\x12\xa3\x30\x4f\xb7\xb5\x41\x05\x6b\xfa\xd3\xc5\x2d\x68\x17\x91\xa7\x8b\x5b\x90\xee\xa2\x9c\xaa\x44\xa7\x2a\x91\xdf\x41\xc3\x13\x08\x22\xae\xe5\xe9\x9e\x06\x48\x77\x6e\x4f\x75\x1e\x30\xce\xd3\xa7\xfc\x80\x5f\xd7\x7c\x3e\xa0\x6a\x10\x68\xe2\x65\xe5\xa9\x40\x05\xc3\xd9\xf9\x54\xa0\x82\xfc\xbe\x51\x2f\x4b\xd0\x5a\x6a\x4f\x65\x2c\x68\xcd\xfe\xa7\x02\x15\xb4\xc6\x80\xd3\xed\x88\xd3\xed\x08\x64\xec\xa9\xf4\x04\xa9\x11\xfe\xd4\x7f\x09\x94\x93\xd9\xa9\x4a\x05\x3a\xfc\x1c\xae\x5a\x40\xb9\x75\x7f\xea\x99\x04\x8a\x08\x0e\x79\xea\x99\x04\x32\xe8\xf0\xa7\xba\x18\x48\x8e\xd5\xe7\xa9\x71\x0d\xc4\xee\x1b\x5d\x01\x81\x20\x54\x5a\x9e\xfa\x1c\x81\xe1\x5e\xf1\xa9\x25\x0d\xf4\x44\xc1\x39\x55\xcf\x40\x9e\x0c\xea\x53\x79\x0d\x92\xb0\x3c\x79\x6a\x1f\x00\x51\xf6\x55\x97\xf9\xa0\x08\x84\x98\xa7\xf2\x1a\xc4\x86\x54\x3f\x4f\x07\xcc\xc9\x80\x61\x5d\x79\xea\x73\x04\xc2\x45\xd1\xa9\x31\x00\x84\x46\xbf\xd3\xc5\x1a\xe8\xe1\xd7\x56\x84\x83\xd0\xde\x76\xba\x7e\x03\xad\x81\xfa\x7c\x9b\xd7\x9b\x4d\x66\x16\xb7\xa7\xc2\x19\xb4\xbe\xbe\xa7\xc2\x19\xb4\xdb\x7b\xa7\x3a\x22\x28\x8e\x75\xe5\xa9\xcf\x11\x08\x6d\x59\xa7\xa6\x32\x50\x61\xe3\xa8\x23\x82\x2c\x56\x1a\xe7\xc7\x9e\xf3\xd1\x3e\x69\x92\x7d\xf5\xa3\x91\x94\xd2\x2b\xaf\x41\x12\x5c\x29\x4f\x4d\x06\xa0\x0e\x7b\xa1\xc2\x19\x54\x38\xac\x5c\x31\x82\x72\x4b\xee\xd4\x8a\x00\x86\x13\xd0\xe9\xb6\x36\x28\xcd\x9f\xe7\x6d\x85\x16\x86\x2e\x18\xa7\x26\x3c\x50\x81\xa2\x7a\xba\x8f\x01\x7a\xfb\x26\x99\xfd\x8d\x21\xc6\xbe\xaa\x55\x0f\x74\x59\x2e\x77\x15\x40\x9e\x4a\x13\xe5\xf5\xe9\xc1\x28\xac\x7a\xa7\x5b\xd1\xa0\x02\x85\xf0\xa5\xab\x28\xa8\x03\x89\xf9\x72\x41\x0a\x4a\xdb\xcc\x4b\x1b\x3f\x48\x6d\x92\x2f\x97\x87\x2f\x97\x87\x48\xcc\x97\x66\x7f\x50\xaa\x7a\x2f\xa5\x2f\x08\x1d\xda\x5f\x2e\x22\x41\xaa\x1a\xbf\x34\xfb\x83\x24\xe2\x57\xbe\xf4\x39\x02\x49\x28\x90\x7c\x29\x90\x5f\xfa\x1c\x51\xed\x97\xa6\x0c\xd0\x2a\x12\x2f\x4d\xf5\xa0\x39\x1c\x9f\x2f\xf7\x8a\x41\x10\x18\x27\x5f\x9a\x03\x41\xdb\x01\x5e\x8a\x47\x50\x84\x06\xce\x97\x92\x09\xf4\xa4\xdf\xbf\x14\x43\x20\xd5\xa9\x5f\xae\xec\x40\xee\x16\x42\xcf\x93\x97\x3e\x80\xf4\xe8\x97\x36\x36\x10\x6e\xa7\xbe\x74\x46\x01\xc5\x39\xf5\x7c\x69\xff\x06\x59\x96\x5e\xd5\x05\x0c\x7d\xc7\x5e\x97\xd9\x5f\xae\xec\x68\x7b\xad\xd1\xa0\x74\xe3\x7e\x39\x60\x5e\x6e\x0f\x22\x0b\x5f\x7a\xe4\x81\x5e\x93\xce\x2f\xa7\xe2\x97\xd6\x68\x50\x85\x7d\xf2\x65\x57\x06\x5d\xbe\xdd\x2d\x39\x10\x1c\xad\xce\xb7\x6b\x1b\xd0\xce\xbb\x6f\x57\x2d\x60\x72\x8e\x3a\xdf\xda\x30\x40\x06\x7a\xd9\xdb\xed\x2a\x30\x26\x9f\xf9\xed\xe4\x0f\x9a\x73\x8c\xf9\x76\x2a\x06\x49\x9c\x8f\x7c\x6b\x3e\x00\xa9\x55\xee\xad\x4b\x00\xc8\x69\xb9\x9c\xcc\x40\x11\xd4\x2c\xdf\x4e\x66\xa0\x89\x15\x96\x6f\x27\x33\x30\x38\x9f\x9f\x6f\x27\x33\x50\xf1\xcd\xab\x4d\x62\xc2\x46\x66\xbc\x5d\x30\x80\x9a\x0c\x9e\xb7\xbd\x08\x24\xd1\x37\xf2\xed\x9e\x3d\xa8\xf8\x66\xff\x31\xe9\x83\xd9\x8c\x3a\x72\xde\x59\x04\xc1\xd6\xf2\xad\x9d\x19\x0c\x65\xec\xdb\x35\xc4\x5b\x5b\x83\x8d\xa3\xbf\x17\xe8\x32\x7b\x67\x41\x90\x3a\x93\xbc\x35\x2c\x80\x24\x54\x49\xbe\xdd\x4f\x02\x95\x7e\x0e\xd7\x23\x20\xf7\xc3\xa7\xac\x63\x1b\xf1\xd8\x24\xeb\xd8\x7a\x04\x53\x08\x97\x28\x20\x39\xd1\x99\x6f\x17\x1f\x20\x0e\x26\xff\xb7\x96\x6d\x50\x44\x07\xce\xb7\x46\x0a\x90\xd9\x26\x59\xa1\x85\x9c\x8c\xcd\xb7\x76\x0b\x90\x44\xf1\xca\xb7\xbb\x4e\xa0\x08\x7c\x92\xef\x69\x13\x2e\x0c\x25\xf1\xdb\xb9\x12\xe4\xc6\xea\xe0\xad\x7f\x2e\xe8\xb0\xa1\x9d\x3e\x41\x9f\xac\xdf\xde\x4e\x9f\xa0\xdc\x17\x7c\x6b\x5e\x07\x63\xfa\x69\x9d\x51\x41\xb9\x11\xf5\x76\xe8\x83\x72\x87\xf4\xed\xd0\x07\xb5\xfb\x1d\x5d\x60\x81\xd2\x82\xf3\xd6\xc4\x02\x46\x32\x69\xbc\x35\xb1\x80\x0c\x5b\x55\x99\x01\x52\x07\xc9\xb7\x73\x38\x28\xb7\xee\xdf\xfa\x22\x80\x26\xc2\x69\xbe\x9d\xc3\x41\x72\x46\x30\xdf\x2e\xc3\xc0\x38\x59\x0a\xbc\xdf\x76\x93\x37\x33\x6a\x9b\x64\x21\xdc\x59\xc3\x2a\xf7\xd6\x52\xfb\xd6\x52\x8b\xec\x7f\x7b\x1a\x04\xa4\x7b\x48\x6f\xdd\x92\xc1\xd0\x35\xe4\xed\x96\x1c\xc8\x0e\x7f\x68\x13\x1a\xf4\xc3\x6a\xbf\xfd\x8e\x0b\x59\x0e\x2b\x77\xe9\x40\xbb\x7b\xf8\x56\x2e\x82\x2a\xbb\xaf\xba\x05\xa8\xc3\x0a\x29\x2a\x41\x6c\xf6\x2f\xd7\x82\xa0\xdc\xd6\x7e\xab\x81\x80\x70\x4f\xe4\xed\xf2\x10\x0c\xdd\x26\xde\x0a\x54\x90\xbb\x6f\x54\x03\x01\xf1\xfd\xda\x3a\xd6\x81\x2e\x87\xa8\x1a\x08\x28\x7d\x4c\xdf\x6a\x20\x20\xdb\x91\xa6\xbf\x05\x08\x37\xeb\xde\x2e\x0f\x41\x78\x6a\xe3\xed\xf2\xf0\xed\xa6\x85\x3d\x5a\xb1\x0d\x86\xab\xcf\xb7\x2e\x18\xa0\x87\x79\xb9\x88\x04\xb5\x31\x01\xbd\xdd\x6a\x7c\x7f\xcf\xaf\xd0\xaa\xca\x7b\x90\x7a\x26\xbd\x3d\xd2\x02\x42\x77\xe9\xb7\xda\x0c\x68\xcd\x6e\x6f\x67\x05\x90\x5a\x96\xde\xae\x51\xdf\xdf\x35\xaa\x85\xb0\x09\x6f\xe4\xbd\xd5\x56\xc1\x01\xf1\x1d\xdb\x2e\x5b\x41\x69\x6d\x7c\xeb\xb7\x07\xda\x35\xdb\x5b\xcf\x6e\x90\xdf\x0a\xa9\x19\x81\xe6\xb8\x6c\xbe\x5d\xdc\x82\xd4\x24\x7e\xa9\x06\x81\x74\xab\xf1\xd2\x08\x0f\x52\x63\xe6\xe5\x7e\x27\x28\xe2\xfb\xe5\xa5\x71\x0e\x94\x3b\xca\x97\xd3\x1c\xa8\xe3\xf4\xa9\x97\x49\x6c\xdd\x0f\x9f\x7a\x9b\xc4\x0e\x7c\xfd\x3a\xd2\x64\x5e\x1a\xf7\x41\xb8\x35\x71\xb9\xdb\x0a\x82\x18\xed\x79\xb9\x00\x07\x99\x08\xd4\x4b\xed\xed\x32\x22\x23\x7d\xed\x72\x46\x05\xad\x0d\xf6\x72\x39\x0d\x72\xa0\x84\x5d\x9a\x06\x41\x71\x3b\x41\x5e\xda\xfb\x41\x68\xc9\xbf\x5c\xc9\x82\x26\x92\x4b\x5e\x3a\x5a\x80\x74\xd5\x72\xe9\x68\x01\x4a\x47\xd5\x4b\x0b\x1f\x68\x82\xe6\xe6\xe5\xae\x00\x18\xfd\x4d\xba\x4c\x42\x85\x9c\x26\x59\xed\x81\xbf\xbb\x8d\xae\xd7\xe0\xf5\xf5\x1a\xa4\x10\xea\x03\x97\x5e\x83\xd8\x86\x2f\x0f\xfa\x80\x41\x34\xa3\xbc\xd4\x04\xc1\x50\x55\xbb\x5c\x3b\x83\xa1\x2c\xbb\x34\x33\x5e\x9a\x19\x6d\x2f\x77\x18\x40\x16\xae\x9e\x97\xcb\x69\x90\xc5\xf9\x93\x4b\xdd\x02\xa4\x5b\x26\x97\x8a\x04\x28\xf7\x8a\x2f\x3d\xbb\x41\xea\xc9\x75\xb9\x04\x06\x71\x20\x9c\x2f\x75\x4f\x10\x59\x26\xf9\x85\xca\x9d\x48\x3e\x87\x07\x7d\x40\xe8\x74\x76\xb9\xde\x05\xe9\x12\xe5\xd2\x6f\x0f\x04\x41\xb3\xf2\x72\xf2\x07\x39\xec\x26\x5a\x1e\xc1\xd4\xc5\xf9\xd2\x69\x03\x84\x87\xe5\x2e\x5d\xaf\x41\x11\xc0\x32\xaf\x97\x49\x2f\xb6\x49\xec\x4c\x1a\xfd\x40\x4e\x44\xe5\xe5\x2e\x30\xc8\x34\x2f\xe7\x24\x30\x08\x55\x9a\xd7\xdb\xbc\x16\x42\xbb\xd6\xe5\x04\x04\xb2\x31\x65\x5c\xce\x36\xa0\xa7\x7d\xd5\x13\x2f\x20\x9c\x8a\x2f\x67\x1b\x90\x13\x15\xe1\xd2\xa6\x08\x82\x18\x40\x79\xb9\x46\x05\xa5\x1f\xec\xe5\x6c\x03\x32\xfd\x1c\x2e\x0f\x41\x7f\x07\x8c\x7b\x0f\x20\x07\x93\xd9\xa5\x5c\x04\xd9\x76\x4c\x65\xd9\x45\xf8\x0b\x97\x28\x97\xdb\x11\xa0\x55\xe2\x2e\x65\x19\x88\x03\x37\xee\xcb\x25\x1d\x28\x27\xa0\x4b\x13\x1c\x68\x65\xec\x47\x29\x05\x52\xaf\xd4\x8f\xa2\x03\x84\x5e\x06\x1f\x45\xc7\xc7\x28\x16\x54\xe8\xa3\x9c\x00\xa3\xbf\x49\x61\x52\x60\xf5\x1d\x24\x95\x49\x1c\x2d\x0a\x93\x7c\xe3\x4e\x58\x0e\xaa\xfd\x51\x9a\x80\x48\xea\xf8\xd1\xc6\xf6\x31\x84\x29\x8a\xfd\xc7\x25\xdd\x47\x4f\x2e\x3a\xc0\xc7\x91\x06\x82\x38\x10\xf9\xf1\x0c\x05\x18\x89\x6b\xc8\x47\x2d\x1e\xc4\x60\xf0\x7d\x54\x7a\x41\xba\x2c\xf9\xd8\xef\x41\x29\x60\x3e\xf6\x7b\xd0\x1b\xf3\xdb\x47\x15\x14\x0c\x3d\x18\x3f\x2a\x97\x20\x0e\x86\xfb\x47\xef\x07\x10\x7a\x19\x7c\xdc\x14\xfb\x78\x60\xcb\x37\xaa\xb1\x81\x22\xb0\x61\x7e\xf4\x7e\x00\xa9\x95\xfc\x63\x2f\x04\xb5\x31\x3b\x7f\xec\x85\x9f\x6f\x2f\x34\xc9\xd2\x2f\xe4\xb0\x71\x74\x56\x02\xd9\x4c\x53\x1f\x77\xba\x41\x11\xc2\x3b\x3f\xaa\x1b\x1f\xfd\xf8\x2d\x97\xbe\x9c\x20\xe7\x61\x92\x3f\x5c\x68\x77\xcd\x3f\xea\x16\xa0\x74\xc1\xf8\xa8\x48\x80\x2c\x3f\xad\x8a\x04\x48\x62\x3f\xe4\x47\xad\x01\x0c\x0f\xf1\x7d\xd4\x1a\x40\x79\x92\xf9\xa3\xd6\x00\xc6\x44\xf1\xfa\x38\x3a\xc0\x48\x56\x63\x1f\x55\x04\x10\xd3\xaf\xad\x3e\x00\x7a\xb3\x55\xf5\xbf\x04\xe1\xe1\x9e\x8f\x9e\x4d\xa0\xb4\xfd\x7d\xf4\xbf\x04\xe9\x0a\xfb\xe3\x48\x03\xad\xd2\xfb\x71\xe3\x0f\x74\xf5\xdf\xe1\xb6\xf5\x71\xd4\x7d\x34\x7c\x7f\x0b\x64\x19\x1f\x43\x45\xad\xca\xdd\xee\xf8\x81\x24\xc6\x62\x1a\x2e\x4d\x34\xa1\xa2\xf2\x76\xc7\x0f\xa4\xfb\xd9\xb7\x4b\x60\x30\x0d\x62\x60\x88\x33\xd1\x06\x31\x30\x78\x99\xe8\x9d\xd5\xa7\x91\xca\x44\x6f\xbb\x49\x6f\x93\xf0\xcf\x65\x2d\x78\xeb\x8b\x09\x8a\xab\x37\xf2\xd6\xdc\x02\xd2\x33\x36\xb7\x96\x6d\x90\x5a\x14\x0c\x71\x26\x32\x98\x21\x6e\xbd\x2c\x41\xa5\x45\xd5\x28\x03\x42\x4b\xad\x51\xcf\x44\x0e\x14\xa7\x7b\x98\xd7\xc0\xb7\x10\x75\xf4\x76\x0e\x07\xad\x8f\xc3\xed\x1c\x0e\x4a\x9f\x90\x5b\xfb\x37\xc8\x46\xb2\x18\xd6\x4c\xb4\x3b\xdd\xb7\x26\x71\x10\xfa\x12\xdc\x8a\x11\xd0\x6e\x32\xdf\x4e\xc5\x20\x3c\x63\x63\x90\x31\xd1\x8a\xf0\xdb\xbd\x3c\x10\x5a\xc9\x6f\xa7\x62\x10\x3a\x93\xdc\x2e\xcd\x41\xbb\x49\x73\x7b\x7c\x0a\x0c\x4d\x06\x86\x22\x13\xed\x49\x89\x5b\x0b\xf2\xad\x05\xb9\x4c\xb2\xf4\x84\x22\xd3\x0d\xe9\x76\xd1\x0d\x5a\xd7\xb4\xdb\xd9\x19\x8c\x60\x6f\xea\xd6\xaf\x13\xb4\xe7\xc1\x6e\xd7\xe1\x37\xfe\xf2\x7a\xb8\x1a\xd6\x4c\x84\xda\xcc\xad\x9d\x19\x94\x07\xb8\x6f\xe5\x22\x48\x2d\xb5\xb7\xa6\x67\x90\xc3\x6a\xbb\xc2\x06\x39\x18\x4f\x06\x19\x13\xa5\xec\xbf\x5d\x3b\x83\xd2\xe7\xe8\x76\x55\x0c\x06\xb1\xc2\xf2\x76\x09\x0c\x72\x47\x4a\xdd\xca\x58\x90\xc3\x72\xb9\x92\x05\x71\x60\x1a\xbc\xf5\x43\x03\xe5\xc6\xb0\xb1\xc2\xc4\xf0\xc8\x93\x81\xc1\xf2\x1b\x18\x0c\xc9\x72\xab\x35\x80\x9c\x28\x38\x06\x06\x13\x39\x1c\x0a\x2a\x12\x60\xa8\xf7\xdf\x8a\x70\x50\x5a\xbc\x6e\xb5\x06\x50\x1a\x23\x6f\x17\xa4\x20\x07\x7a\xdd\xad\xab\xc3\xad\x8f\x28\xda\xf2\xad\xa1\xee\xf6\x34\x2d\x4b\x4d\x63\x85\x89\x08\xfb\xbd\xeb\x4a\x30\x4e\x4c\x06\xb7\x8b\x48\x30\xb8\x7c\x24\x8d\x02\x26\x82\x70\xe7\x79\x6b\xb3\x06\xa5\x41\xed\xd6\xcb\x09\x94\x9e\x82\xc6\xf7\x12\xe1\x8a\xf1\x56\x9b\x01\xbd\xa1\xc5\xdf\xca\x7e\xd0\x6e\xdd\x1b\x05\x4c\x0c\xf5\x81\xdb\x25\x1d\x08\x7d\xda\x6e\x25\x31\x68\xb7\x56\x8d\xef\x25\xf2\x44\x38\x1b\xdf\x4b\x54\xef\xfe\xd0\xd2\xe3\x31\x55\x8e\x5a\xd5\x20\xd0\x1e\x83\x33\xe4\x97\x48\x7d\x37\x1e\xd7\x6f\x20\x2c\xaa\x21\xbf\x44\xab\x07\x1b\xb9\x4b\x24\x97\x46\xa4\x61\xba\x44\x12\xaa\x36\x1f\x3d\xa6\xc0\x38\x59\x74\x3f\x6a\x46\xa0\x3c\xdd\xfe\xb8\x6d\x09\x4a\x5d\xff\x51\x33\x7a\x3c\x64\xd5\x66\x3f\x4d\x22\x02\x64\x9a\xd7\xdb\x24\x4c\xf5\xf4\x9c\x47\x2b\x39\xa8\xf6\x8d\x7a\xc2\x83\x76\x6d\xf4\xa8\x52\x81\xd6\x2e\xf6\xa8\x52\x81\x20\xd0\x55\x3e\x2e\xd0\x40\xda\x01\x1e\xfd\x2d\x40\x11\xb9\x2b\x0d\x1f\x26\x86\x92\xdc\xf0\x61\xa2\x6d\x7b\x43\x7e\x89\x0e\xac\x1b\x8f\x5e\x19\x60\x28\x3a\x1e\x45\x2d\x08\x1d\xa7\x8c\x02\x26\x82\x7b\xc9\xf2\xd1\xb5\x16\x04\xf1\xbd\xf2\xd1\xa2\x0a\xba\xcf\xe3\xd7\x53\xb1\xe1\xbf\x44\x9f\x74\x2c\x63\x7d\x89\x32\x2a\xc3\xa3\xbc\x06\xad\x43\xd6\xa3\xd9\x1e\xe4\x69\xa3\xbb\xa1\x08\xea\xb0\x63\xa9\x55\x1a\x11\xcc\xfd\xdd\xc7\x3d\xc6\x47\xb7\xad\x36\xc9\x37\x96\x87\xdf\x4d\xb2\x09\x4a\x07\x47\xdf\xf8\x31\x89\xc3\x26\xc8\x1f\x63\x85\x89\xde\x6c\x02\x97\x61\xa0\x36\x14\x89\xc7\xe9\x00\x84\x9e\x7e\x8f\xb2\x1f\xe4\xc9\xee\xce\xa3\xa0\x07\x9d\xb6\x84\x07\xa3\x8c\x15\xc6\xad\x4d\xf9\xe8\x83\x0c\xca\x20\x06\x86\x0f\x13\xc5\x2d\x3c\xf9\x68\xa9\x7d\xb4\xd4\x22\x50\x1f\xa7\x03\x90\x85\x10\x34\x30\x98\x68\x55\x5b\x03\x83\x89\x28\x74\x9e\x47\xb3\x2c\xe8\xd3\x2f\xef\x22\x12\xe4\xb0\x09\x5d\x44\x3e\x06\xb0\xb1\xdf\xba\x8b\x02\xe2\x60\xe9\xf4\x38\x8f\x80\x18\x0e\x0b\x6d\xb0\x20\xf4\x08\x7e\xb4\xc1\x82\x74\xd5\xf2\xe8\xab\x02\x4a\x67\xef\xc7\xa9\x05\x84\x7b\x0f\x8f\xcb\x56\x90\x1e\x52\x78\xdc\xfb\x04\xad\xe1\xe9\x71\x25\x0b\x72\x6b\xf3\xb2\x25\x50\xf2\xcb\xc1\xa3\x29\xd5\x50\x64\x2a\xc0\xc6\x1d\x13\xad\x03\xed\xe3\xd4\x02\xe2\xc0\x92\xf6\x68\xfe\x04\xed\x8e\xf2\xa3\xde\x0f\xfa\xb4\x9b\x68\xd8\x04\xf9\x15\x10\x5a\x31\x41\x1b\x49\xe1\xd1\x3e\x09\xe2\x5b\x54\x17\x0c\x8f\x01\x26\xd1\xfb\x1f\x27\x0d\xd0\x84\xfc\x4a\xc3\x87\x89\xfa\x76\x39\xdd\x57\x1e\x8e\xf4\x6a\xdd\x30\x30\x98\xe8\xa1\xfc\x51\x7d\x07\x3d\x7c\xa3\x86\x3a\x10\xbb\x9f\x43\x05\x1a\xf4\xc4\xe0\xfa\xb8\x39\x09\x92\xb8\xf6\xb5\x21\x9c\x45\x12\x20\xa0\x8c\xb6\x25\x02\x81\x5a\x46\xdb\x12\x4d\x60\x9e\x32\x8e\x96\x88\x58\xea\x46\x71\x8d\xde\x17\x79\x14\x49\x6c\x3b\x8a\x8e\x61\xd2\x6e\x12\xc1\x3d\xd7\x42\xb9\xbc\x3c\x4f\x04\xa7\x43\xcb\x08\x59\x22\x09\xc1\x50\x46\xc8\x12\xf5\xb7\xec\x5f\x26\xe9\xad\x76\x92\x64\x85\x0e\x0e\x2a\x1e\x54\x28\x7c\x23\x41\x6b\xa2\xc9\x3e\xac\x23\x77\x50\x10\x8f\xb1\x0c\x87\x25\xb2\x37\xea\x18\x56\x28\xe8\x13\x1b\x85\x48\x2b\x94\xf8\x20\x9f\x3c\x95\xe6\x95\x46\x64\xe5\x8d\x69\x85\x52\x17\x30\xca\x85\x10\x15\x49\x54\xe2\xda\xd2\xec\x0d\xc9\xbb\x66\x9b\xda\xca\xbc\x10\xa2\xe7\xe0\xa9\xb2\x5c\x45\x60\x8b\x93\xf6\xc2\x24\x25\x26\xeb\x99\x32\x68\x96\x68\xd4\xff\xda\xca\xf6\x2a\xf7\x90\xcc\xde\x42\x10\xa5\x00\x07\xa3\xda\xca\x26\x2c\x62\x5d\x14\x7d\xa2\xfc\xb4\x85\x39\xd0\x86\x2e\x8b\x5a\x1c\x7c\x39\x69\xaf\xb2\xa1\xcb\x69\x9d\xa4\xb6\x71\x16\x26\xa7\x5e\xcb\xd0\x5a\x22\xcf\x49\xe3\x4c\x0b\x31\xb5\x59\xfb\x94\x6f\x9c\x1e\xe4\xf0\x29\xdf\x38\x89\xfa\x31\x68\xfb\xd3\x6a\x9f\xb8\xf2\x0d\xde\x78\xda\x31\xd9\x43\xc2\x14\x5b\xdb\x69\x85\x4e\x3c\xce\xd3\xa4\xb7\x49\xea\x62\xb4\xc4\x69\xe9\x39\x70\x4a\x00\xd3\xda\x5e\x96\x5e\x07\xdc\x83\x56\x7d\xd9\xf6\x0b\xcd\x59\xe0\xf2\x06\x5c\xd1\x87\xd9\xbf\xec\xab\x2f\xa2\x71\xef\x7c\xed\xb7\x79\xb1\xa3\xc3\x41\xd8\x32\xbe\x97\x48\xd6\x92\x65\x7c\x2f\x11\x47\xfd\x7a\xaf\xb8\xbc\xef\x56\x34\x61\x81\xca\x0b\x6f\x45\x60\x51\x28\x6f\xbc\x15\x83\xfd\x91\xf2\xf2\x5a\x11\xc7\x34\xc9\x16\x46\xe2\xed\xf6\xb5\xcb\xaf\xc5\x26\x4d\xef\x34\xd4\x65\xe5\x70\xd8\xfb\xb6\xca\xc7\xf1\x84\x77\xde\xb4\xaf\x7d\x6c\xf4\x0f\xdb\xf8\x69\x92\x6f\xfc\xb0\xf5\xb5\x91\xd7\xc7\x46\xff\x18\x58\x9e\xa7\x6e\x1b\xca\xb8\x87\x76\xac\xdb\xec\x8d\x7b\x78\xd2\xe8\x8f\x4f\xe1\x5d\x3c\xec\x45\x8f\x4f\x61\x9d\xc0\xbc\x5e\xdb\x63\x73\x62\x8a\x18\xe1\x53\x36\xce\xc3\x1e\xe3\xe6\x53\x76\xbf\x87\x81\x58\x94\xeb\xb1\xf4\xec\x56\xc4\x37\x2f\xbb\x0c\x0a\x30\x51\x74\xca\x90\x5f\x22\x51\x4a\xca\xf8\x5e\xf5\x8d\xef\x45\x1d\x77\x76\x2b\x6a\xd7\x6f\x78\x4d\x79\xb5\x63\x1a\x14\x81\x72\x58\x3b\xa6\x41\xd1\xb9\x56\x8c\xb5\x2b\x89\x41\x8d\x93\xec\xd1\x76\x45\xf6\x37\xe9\x65\x92\x21\xbf\xf8\x21\xaa\xad\x48\x5c\x28\xca\xf0\x61\x62\xe4\x4e\x92\x02\x15\x8c\xb9\x96\xc0\xb5\xe3\x4a\x2c\x9a\xe5\x4e\xed\xf8\x0d\x8b\xde\x4e\x93\xfc\xe1\x30\x20\x70\x92\x74\x99\x74\xb1\xa1\xb8\x93\x64\x85\x06\xae\xfd\xb4\xaa\x77\xf4\x8a\x3a\xfc\xa1\x62\x17\x14\xc1\xf1\xca\x58\x61\x22\x88\xff\x5d\x46\x01\x13\x85\x55\xae\x8c\x02\x26\x0a\x0b\x72\x79\x51\xaf\x18\x2c\xb0\xca\x28\x60\xa2\x63\x98\x64\x51\xb5\x48\x20\x2a\xbd\xf1\x53\x34\x47\xc4\x6a\x57\x5e\x83\xe0\x7e\xe3\xda\xd3\x37\xa6\x1e\xc1\xe4\xa5\xbc\x06\x8d\x57\x58\xed\x69\x1d\xd3\xe3\x1a\x74\x13\x45\xb8\x81\xc1\x9c\x0e\x76\x45\xb8\xb7\x67\x4c\xfb\x84\x22\x1c\x8c\xf0\x8d\x65\xb5\xbd\x1f\x98\x19\xd5\x58\x61\x62\x10\xef\xb3\x8c\x02\x26\xca\xc1\x67\x7c\x2f\x11\xb8\xaf\x94\x17\x90\x8a\x3a\x6c\xaf\xb6\xaf\x36\x7d\xd5\x5e\xd8\xbe\xb1\x5d\x74\xf3\xc6\xb6\x8e\xad\x50\xe0\x8d\x6d\xf6\x04\xc8\x65\x87\x74\xad\xc6\x49\x9a\x1c\xf4\xb1\xed\xa7\xd5\x9e\x1c\x82\xd9\x7c\xca\x2f\x84\x29\x03\x57\xd1\xe2\x72\x90\x2f\xca\xf9\xcd\x9b\x51\x45\x84\xdd\xe4\x34\xfb\x13\x5f\x28\x0b\xa1\xec\x07\x7d\x38\x60\x4e\x1b\xe7\xe4\xa8\xb1\xa5\x47\x2b\x15\x93\x18\x66\xb5\x3b\x1d\x80\x66\x99\x5f\xbb\x22\x1c\x24\x2e\x86\xb5\x2b\xc2\x41\x70\x7e\xae\xf6\x97\x79\xbd\x08\xd4\x77\x50\xa1\x97\x6d\xcf\x91\x3a\xac\xd1\x65\x60\x30\x31\xea\x9b\x64\x1d\xd5\x4a\x1d\x7c\xca\x7e\xd0\xce\x95\x86\x0f\x13\x79\xee\x26\x59\x54\x0c\xd4\xdc\xfc\x52\xfb\xdb\xbc\xde\x9e\x98\xa1\x71\x2e\x3b\x13\x11\x6a\xb8\x5b\xb9\x76\x65\x34\x18\x58\x37\x6a\xbf\x6c\x1c\x6d\x20\x76\x80\xcb\x0a\xe1\xdd\x37\x50\x24\xf6\xcb\x37\x7a\x6b\x46\xf9\x43\xeb\x78\x69\x1b\xe6\x8d\xb7\x45\xbd\x59\x44\x3a\xac\x1e\x2b\xc4\x11\x57\xfc\x1c\xcb\x90\x5f\x22\xbe\xa3\xf6\xb1\x5c\x58\x7d\x09\xd1\x5f\x46\x01\x13\xdd\x7e\x5a\xa5\xaf\x21\xbf\xb6\x69\x92\xad\xba\x30\xbe\xa3\xf6\x71\xa4\x3d\x8a\xc7\xf5\x46\xa3\x80\x89\xc0\xd1\xb5\x8c\xef\x25\x82\xb0\xfa\x65\x7c\x2f\x31\xf0\xb3\x2e\xe3\x7b\x89\xe0\x92\xd9\xf2\x2a\x53\x91\x55\xbf\x0e\xf1\x51\x87\x52\xfd\xf0\x32\xbf\xb6\x40\xb7\x49\x98\xa7\x18\xd4\xc7\x6e\x19\x77\xaf\x75\x33\x69\x37\x89\xf9\x8d\xa9\xf8\x50\xe5\x06\x03\x1b\x6c\x1d\xaa\xdc\x87\xe1\x64\xc2\x24\x8b\xbd\xbb\x99\x3b\x49\x7a\x4c\x7a\x38\xa9\x45\xf6\xea\xd7\x60\xa4\x95\x53\x4d\x06\x45\x0c\xa0\x32\x30\x98\x08\x22\x86\x97\x81\xc1\x44\xd5\x5a\x90\x96\x97\xf3\x88\x89\x91\xb4\xbc\xce\x54\x04\xee\x05\x65\xf8\x30\xd1\xec\xf8\xd5\xe1\x74\x00\x02\x2f\x94\x3a\x9c\x0e\x40\xb0\x57\x5c\x47\xf8\x46\xdc\xc9\x92\xc9\xec\x50\x57\x07\xcd\xcd\x8a\x65\x60\x30\x91\x1c\x23\x29\xaf\x34\x15\x3d\x99\xb9\x0e\x7c\x0b\x45\x72\x5f\x6b\x19\x2b\x4c\x24\xbe\x3d\x65\x60\x30\x51\x38\x3e\x95\x77\x9a\x8a\x1e\x93\xa2\x2a\xfb\x41\x3b\x15\x7b\xef\xa8\x48\x2c\xc8\x75\xb4\x45\x6d\xf6\x47\xd0\x04\xbd\x77\x54\xe4\x6e\x51\xdb\x72\xb5\xe5\xa2\xa1\xdb\xbe\x86\xdb\x16\x7e\x8a\x65\x30\x2f\x91\x1c\xa4\x2f\xaf\x22\x15\xb1\x59\xfa\x69\xdb\x4f\x85\x20\xe5\x52\x99\x06\xa3\x6c\x55\xc5\x2e\x68\x97\x4e\x46\xee\x12\x79\x22\x92\x8c\xdc\x25\x72\x98\x3d\x46\x65\xd1\x2e\x05\xb8\x85\xf4\x8b\xae\xa6\x71\x14\xbb\xa0\xca\xf6\x52\xbf\x06\x8d\x33\x49\x19\x80\x4b\x74\xda\x84\x6f\x0b\xf1\xe6\xd3\xda\x5e\x6f\xdf\xf8\xd6\x8c\x4d\x51\xdf\x56\xe8\xed\x12\x98\x72\xa9\xbb\x82\x9c\xc3\x24\xbf\x23\xba\xeb\xe1\xd0\xbf\xac\x10\x86\xe0\xdd\x4f\xab\x5c\x04\x31\x99\x34\x0e\xe5\x22\x08\x6e\x0d\x2c\x23\x77\x89\x08\x3b\xd3\xe5\x1b\x59\xd3\x9f\xdf\x24\xdf\x78\x19\x06\x8e\x0a\x5d\x7e\xb4\x0b\x87\x08\x26\x8d\xe3\xe3\x47\xc3\x82\x4c\xd4\xfd\x32\xe4\x97\x18\x89\xde\x7f\x7c\xec\x72\x1f\x2c\xb5\xc3\x24\x3f\xed\x87\x2b\x09\x86\x3f\xb4\x33\x7d\x6f\x9b\xa0\xf4\x1f\x2b\x84\xc9\x60\xf7\x6b\x7f\xac\x10\x81\xc1\xce\xdd\x1f\x5a\x21\x9c\xaa\x5d\xd3\x1b\x18\x4c\xb4\x53\xcb\xa1\x7e\x0e\x82\xad\xa0\x3a\x6e\x93\xf4\x13\x42\x38\x1f\xb7\xd5\xbe\xd9\x0e\xb5\x47\xdf\x0e\x05\x5c\x87\xf6\x83\xbc\x6e\x5b\x42\xd7\x21\x04\xfd\xa1\x7e\x0e\x86\xda\x8c\x81\xc1\xc4\x38\xfd\x42\xce\x10\x60\xb4\x22\xed\x31\xfb\xc7\xcb\x32\x4d\x32\xfb\xc7\x86\x5e\xe5\x1a\x2a\xe3\xc3\xf8\xbb\xb4\xc4\x50\xf6\x0f\x43\x25\xc4\x49\xd2\x69\x92\x4e\x8d\x24\x29\x7d\x41\x1c\xa8\xa0\x83\x6d\x38\x51\x1c\x07\x2a\xe3\x68\x89\x3a\x99\x51\x07\xc6\x5b\x51\x5c\x36\x5d\x63\xf8\x43\x82\x6a\xe3\xca\x57\x83\x3d\x37\x11\x0e\x98\xa1\x2c\x1c\xdf\x03\x26\x3c\xa5\xb0\x32\xf6\x15\x81\x53\x6a\xa8\xa8\x82\xe6\xac\x79\x8d\xb0\x10\x44\x4f\xe0\x94\x4b\x0d\xcd\x0f\x20\x4f\x96\xad\x43\xdd\x15\x74\x9a\x97\x9a\x24\x48\x4c\x9e\x65\x5c\x29\x91\x2a\xe3\x43\x91\x06\x06\x01\x37\x6a\xb0\x9b\x26\xc6\xc9\x1c\x6e\x78\x28\xd1\xfb\xf7\x29\x5b\xa2\x39\x02\x84\xe2\x35\xda\x96\x68\x82\x0d\x30\x1e\x8d\x18\x25\x92\x38\x23\x35\x38\x7c\x21\x32\x99\x28\xbc\x43\x4d\x64\x7e\x9f\xb2\x71\x08\x46\x78\xcc\x5f\xbb\x6d\xd5\xd0\x7c\xe0\xb5\x6b\x04\x7b\xab\xa1\x78\x03\x61\x5f\x1b\xda\x0a\x40\xe2\xd2\x54\x06\xa7\x12\x83\xfd\x91\x1a\xca\x32\x30\xbe\x4f\x69\x18\x18\x5f\x2b\x26\xd9\xbf\xec\x45\x0b\x8d\x43\x7a\x71\x35\xdb\x17\x8d\x49\xbc\x8c\x57\x25\xaa\xfd\xa6\x2a\x9a\x60\xe0\x5e\x50\xdc\xd7\xf6\x45\x63\x9f\x2c\xef\x6d\x13\xc9\x79\xf8\x1a\x2f\x1b\xfd\x45\xf7\x43\x8c\x78\x2b\x9b\x18\x84\xda\x2c\xaf\x5c\x13\x35\x0e\x93\xac\xf6\x45\xf8\x79\x64\xac\xf7\xa0\x89\x50\x25\xf2\x22\x34\x51\xed\x07\x54\xfe\x78\xef\x99\xf2\x67\xb8\xcc\x07\x39\x1d\x16\x4a\x16\xd0\xca\x45\x83\x53\x89\x6c\x54\x35\x83\x40\x89\x51\x56\x48\x31\x32\x0c\x9c\xe2\x53\x8f\xa5\x7f\xf4\xb0\xa7\x10\x6a\x95\x20\xa7\x8d\xa3\xcc\x00\x39\x8e\x95\x64\xb0\x25\x91\xc4\xc7\x29\x23\x2b\x89\x98\xb4\x57\xb0\x9f\x24\x92\xdb\x48\x2a\xd4\xb2\xc2\x33\x6f\x61\x52\x9b\x84\x0a\x49\xab\x86\xb6\x4e\x90\x89\xcc\x08\x0e\xb8\x89\x3a\x7d\xea\xf0\xa9\x03\x81\x8a\xd2\x1a\x87\xe5\x3a\x58\x31\xd2\x73\x42\x31\x02\xe6\x86\xc9\xc0\x38\x47\xa2\x89\x9b\x51\xa1\x06\x02\xaa\x58\x30\x78\x6d\xb6\xe8\xc3\xa7\x34\xe7\x81\xa8\x6f\x92\xd5\x2e\x04\x57\x52\x88\x36\xaf\xe6\xd0\x50\x9b\x64\x21\xf0\x25\xd7\xd6\x19\x0e\x44\x10\x9c\x3e\xae\x50\x6b\x00\x4d\xdc\x9e\xb5\xf4\x36\x09\xad\x01\xe5\x32\x70\xf6\x16\xb5\xfb\x46\xd7\x5c\x20\xb8\x9b\xb5\xe2\xb4\x8e\x27\x6e\x94\xc8\x0c\x03\x11\x89\x66\x1b\xad\xc2\x01\x03\xc2\xe5\xa1\x81\x88\x44\x4c\x74\x9e\x78\xd9\xaa\x2f\xd7\xe1\x26\x99\x3d\x67\x5b\x0f\xdf\xa8\x09\x0e\xb4\x16\xbe\x70\x19\x06\x62\x22\xcb\xe2\x6d\xf6\x6f\xdc\x90\xac\xf6\x65\xb5\xb9\x7d\x6a\x43\x93\x34\x10\x91\x08\xb6\x95\x2a\x34\x95\x81\xe6\x70\x4e\x85\xea\x06\x68\xd7\xe1\xe1\x02\x0b\x0c\x0e\x50\x56\xa8\x48\x80\x6a\x0b\x71\x59\xfa\x0b\xc7\x16\x84\x55\xa8\x35\x80\xe0\x4c\x52\x85\x2a\x02\x08\xae\x05\xae\x70\xf2\x07\xb9\xd9\x4d\x1c\xa2\x60\xa4\xa5\x77\x3c\x82\xc0\x19\xb7\xe2\x36\x7b\x3d\x95\x4f\x93\xac\xd0\x4d\x8c\xce\x8d\xec\x5d\xf8\x81\x66\x6b\xa3\xe2\xb6\x8e\x38\x18\xb9\x6e\x08\xb5\x86\xf0\x04\xac\x3f\x74\x79\xf8\x8d\x80\x64\xe9\x1d\xdb\xa0\x27\x5a\xa9\x41\x91\x44\xbb\x36\x0a\x27\x7f\x50\x9c\x08\x2d\xaf\x63\x17\xa1\x82\x63\xe8\x24\xd1\xc4\x06\x29\x2f\x25\x17\xc9\x01\xca\xf2\x36\xf1\xfa\xde\x26\x4e\xff\xf2\x62\x70\x11\x1c\xa9\xab\x74\x6d\x94\x6e\x21\x30\xe5\x79\xa5\xb7\xe8\x49\xff\xf2\x4e\x6f\x11\xb1\x99\xd7\x63\x92\x23\x8d\x24\x17\x42\xde\xbd\x9d\x88\x47\x2f\xdf\x16\x83\x73\x57\xe5\xed\xdb\xa2\x06\x42\xc1\xeb\xb7\xc5\x20\xe8\x5f\x79\xff\xb6\x18\xf8\xe0\x94\x61\x98\x44\xa8\xe0\x78\xdf\xb6\xa8\x66\x74\x24\x9e\x3a\x62\xe0\xed\x5f\xe9\x72\x09\x34\xc1\x61\x2a\x5d\x08\x81\x24\xa4\x53\x65\x98\x3d\x27\x55\x67\xfb\x94\xd9\x1b\xbf\xe9\xef\x70\xdb\xaa\xc4\x19\x57\x0c\x2e\x41\x28\xc3\x3b\x89\x22\x8a\x7c\x65\xda\x2a\xec\x41\xe3\x2e\x5d\x46\x7c\x12\xbd\xd3\x8b\x52\x4b\x1a\x18\x1a\x49\x0d\x02\x25\x92\x6b\x04\x2a\xcb\xec\x0b\xbb\x03\x46\xe5\x74\x03\x03\x0c\x4d\x70\xe9\x06\x06\x48\xce\x66\x54\xaa\xec\x80\xa1\x15\x33\xdb\x8e\xd5\x78\x1c\x30\xad\x67\xdb\x9c\x04\x0b\x20\x92\x70\xa5\x2a\x11\xc8\xdd\x0f\xa8\x8c\x05\x99\x76\x3f\xcd\x66\x20\x95\xfd\xa9\x8d\x0c\x84\x13\x76\xaa\x12\x81\x4e\xfb\x87\x5b\x26\xa0\x09\x0d\x51\x06\xa7\x12\xe1\x76\x42\xaa\xf3\x80\xe4\xa6\xe6\x4a\x2d\x69\x69\xb0\x37\x6c\xe9\xa9\x08\x07\xf1\xfd\x1c\x2e\xe9\xd2\xfd\x5d\x7b\x91\x66\x33\x10\xaa\x90\xa9\x1a\x94\xde\x05\x65\x8f\x3c\x7d\xe3\xe9\xbd\xf6\xbe\xd1\xfe\x41\x2c\x02\xa2\xfd\x95\x77\xb0\x8b\x74\xcd\xe5\x95\xeb\x22\xb6\xc3\x24\xeb\xc8\x09\xd8\xdd\xb6\x57\x33\x02\xb9\x5b\x21\x65\x3f\x28\xe7\x24\x43\x58\x89\xde\x50\x37\xf2\x65\x21\x5e\x5c\xd8\xe1\xa0\x56\xf6\x83\x6c\x8c\x27\xde\xa0\x2e\x82\xcb\x61\xca\x2b\xd4\x45\x38\x57\x7a\x85\xba\x48\xe2\x42\x95\x77\xa8\x8b\x24\x6e\x74\x79\x3f\xba\x88\xef\xd0\x77\x3a\x00\xe1\x5c\xe9\x2d\xe6\x22\xc3\x0a\xb9\xae\x04\x45\xec\x86\xf2\xd2\x72\x51\x13\x33\x63\x2a\xfb\x41\xb8\xd1\x90\x2e\xfc\x40\x6c\xa8\xc9\xe9\xce\x09\x88\x69\x5f\xbd\xed\x4c\xdc\x16\xb8\x39\xa8\x95\xea\xe9\xd5\x80\x0e\x3e\xa5\x3a\x88\xc3\x91\x76\xdb\x7d\x39\x27\x7b\xa6\x3f\xb4\x71\x6e\xe2\x6c\x9f\xbe\xd1\xd2\x13\xdc\x93\xcb\xd3\x2a\xd5\xeb\x40\x1d\x2c\x5b\xd3\x85\x1f\x68\xc2\x50\x56\x2a\xfb\x53\xbd\x0e\xc5\x2b\x95\xfd\xa0\x76\xfb\x84\x5b\x2e\x49\x8c\x97\xaf\x24\x7e\xcc\xfe\xf1\xa2\x51\xca\xe5\x5a\x10\x14\xf7\x48\x94\x21\xbf\xc4\xe0\xc2\x8e\x2a\xd7\x82\xa5\x83\x36\xdd\xc4\x28\x60\x22\xac\x63\x69\x07\x04\x3d\xd1\xd8\x4a\x3b\x20\x68\xee\xb5\x2e\x2f\x7a\x17\xd1\x69\xd2\x63\xd2\x83\x71\x8e\x42\x68\xe8\x03\xa9\xce\x53\x2e\x35\x41\x70\x18\xb3\x0a\x2f\x27\x91\x76\x39\x43\x91\x89\x0c\x8c\x60\xe5\xbe\x0f\x98\x5a\xf5\xbc\x24\x5e\x24\x4e\xd5\xe5\x2d\xf1\x22\x39\xef\x5c\xe5\x76\x3b\x28\xae\x3f\xac\x72\x6f\x1d\x34\x57\x60\x57\xb9\x15\x04\x42\x6b\x63\xb9\xb7\x5e\xc6\x98\x42\xc1\x29\x75\x57\x90\x69\xe3\x38\xe5\x19\x0f\x8d\xcb\x89\xab\x34\x1a\x82\xe6\xf0\x6a\x95\x46\x43\x50\x07\x4a\x9c\x21\xd2\x44\x4c\xcb\xe5\x5c\x09\x7a\xdf\x7c\xca\xcf\xc1\xed\x8a\xf8\x20\x57\x39\x0b\x96\xd7\x56\x61\x62\x29\x2d\x84\xa0\xdc\x81\xf7\x62\x7b\x91\x6d\xf6\xee\xe6\x17\xf1\x09\xd5\x1a\xca\x45\x37\x28\xb7\xa2\x4b\x0b\x61\x79\x33\xef\x34\x7b\xeb\x18\x38\x44\x58\x6d\xb7\xee\x41\xb9\x89\x58\xe9\x0f\xd3\x9b\xcd\x4d\xb2\xbd\x92\x13\xe9\xd8\x53\xca\x39\x0d\xcc\xef\x47\x73\xc3\x08\x24\xfe\xaa\xe5\x05\xfb\xa2\x88\x91\x57\xde\xb0\x2f\x5a\x45\xb5\x9c\xe6\x40\x9f\x23\x7f\x3d\x15\x7b\x29\xbf\xe8\x69\x13\x68\x05\x00\xd9\x58\x14\xbc\x96\x5f\x44\x39\x78\xdc\x62\x2a\x2f\x9a\xb1\xcb\x68\x2b\x00\xa9\x32\xed\xcd\xfc\x62\x68\xe9\xa8\xb6\xd1\x9b\x93\x93\x36\x94\x33\x2a\x68\x1c\xd0\xaa\x34\x92\x82\x6a\xbb\x8c\x33\x6a\x19\x83\xda\xfa\x3a\xa3\x82\xc2\x6b\xb0\xca\x55\x0b\x28\x42\x6d\x56\x69\x11\x05\x7d\x22\xa5\xca\xb9\x12\x0c\x25\x71\xb9\xb6\x01\x7d\x2a\x0d\x34\x32\x80\xb9\x59\x47\xf7\xa6\x40\xb9\x32\x2b\x67\xd4\xf2\x5e\x60\x66\xd4\x72\x46\x05\x49\x14\x9d\x2a\x0d\x0b\x20\xd4\x76\xcb\x49\xb6\xbc\xd2\x9d\xc9\xbf\xb4\x35\x80\x9c\xf6\xb5\xd3\x2e\x73\x1a\xfc\x95\x3a\x6a\x6b\x00\xc3\x99\xab\x34\x2c\x80\xde\x99\x80\xca\x89\xb1\x9c\x18\x99\x34\x0c\xed\x27\x82\x68\xed\x55\x2e\x77\x40\xa5\xdd\x4f\x8f\x03\xd0\x9a\x1f\x0c\x00\x28\x3a\xbf\x3f\xb4\x71\xde\x5c\x57\xcb\xa4\x51\xae\x93\xc0\xf8\x76\x13\xf7\xa6\x40\x0c\x16\x1f\xe5\x3a\xa9\xbc\xf1\x9d\x49\xb6\x34\x3f\x80\x20\xda\x56\x95\xeb\x24\x10\x87\x1d\x40\x1b\x2c\x68\x82\x2b\x54\x69\x7e\x28\xcf\x53\x28\x63\x35\x6c\x82\x24\x6e\x46\x95\x56\x4c\x50\xbb\x4d\xf8\xb1\x55\x3f\xde\x95\x41\xb9\x9c\x2b\xc1\x70\x8b\xbc\x9c\x05\xc1\xfc\x0a\x1b\xbd\x0c\x40\xa9\xd7\x95\x0b\x19\x30\xdc\x18\x2e\xad\x98\xa0\x36\x3c\x03\xca\xf9\x0d\x0c\x4d\x96\xa5\x91\xa2\xbc\x46\x57\xf1\xe6\xd6\x17\x48\x9d\x18\x0c\x5f\x28\x4a\x23\xa9\xe1\x0b\x45\xe9\x10\x51\xee\x86\x81\xf8\x5b\xf6\xb6\xfd\xe3\x3e\xaa\x4f\x39\x1e\x1f\xee\x03\xa1\xfb\xb6\x4b\x27\xd0\x7a\x4c\x19\x0a\x51\x34\x21\x51\xca\xb8\x87\xa2\x74\x0d\x69\xe7\xca\xfe\x3a\x31\xf8\xd4\xdb\x24\x6f\x77\x35\xe9\x63\x12\x37\x5b\x32\x01\xb5\x93\x19\xc8\x41\xb5\xdb\xc9\x0c\xb4\x4e\x41\xad\x89\xa5\xbd\x26\x87\xd9\xa6\x75\x62\x00\xc1\x41\x8e\x6a\xd7\x6f\xed\x19\x0a\xfa\x6a\x3b\x0b\xb6\xdb\x5d\x0c\xbe\xc6\x65\x57\x84\x3e\x12\xed\xfc\x06\x02\x1f\xe4\x32\x86\xa2\x08\xbc\x47\xab\x5d\xf8\x81\xc0\xa1\xbd\xda\x85\x1f\x08\x0e\x5d\x57\xbb\xf0\x03\xb9\x7d\x93\x2c\xd7\xe1\xcd\x72\x14\xd5\xdd\x34\xd0\xdc\xbc\x53\xed\x2c\x08\x8a\x93\x38\xd5\xce\x82\xed\x2c\x68\x5e\xce\x82\x6d\x74\x0d\xcb\xe5\x2c\x08\x86\x96\xa5\xd6\xa8\x0c\x5a\xb3\x6c\x87\x3f\x0c\x83\x9d\x98\xe4\x47\x0b\xaf\xfb\x27\x7b\x97\x74\xad\x47\x30\xfa\x66\x3b\xbf\x81\x26\xe6\x5b\x19\x83\x51\x54\x9a\xbd\xcb\x38\xd0\x5c\x82\x57\xed\x3e\x59\xeb\x36\x61\xb5\x5d\xd9\x81\xe2\x8c\x4e\x75\xda\x5e\xde\x94\x96\x3e\x65\x21\x92\xa3\x10\x16\xd5\x59\x10\xa4\xab\x9e\x76\x81\x06\x5a\x01\xd3\xce\x30\x20\xbe\xd5\xd6\xaf\xe1\x1b\xa9\x71\x37\xc9\xa2\xb2\x0d\x47\xdc\xd6\x6a\xe7\xa1\x36\x40\xb7\x43\xc1\x65\x1c\x28\xf7\xa3\xda\x49\x07\xb4\xfa\x53\x6b\xc6\x6e\xcd\xd8\xf6\x2f\x97\x71\x20\x5d\x1b\xb5\x96\x6d\xd0\xf1\x77\x78\x50\x57\x3b\x27\xb5\xe7\x3c\x18\xe7\xed\x04\xd4\x86\x84\x43\x84\x1b\x27\x52\x84\xf3\x5b\x4f\x5f\x35\xdd\x02\xa0\x26\xce\x49\x20\xdd\xae\x32\x9a\xa4\x88\x81\x86\xda\xee\xe5\x81\x76\x2b\xba\x9d\x93\x40\x94\x5f\x4b\x43\x1d\x88\x76\x20\xba\xca\x03\x43\x55\xad\x9d\xa6\x40\x11\x6e\xb6\xda\x35\x17\x18\x2a\x12\xed\x9a\x0b\x74\x3a\xce\x9d\x6d\x40\x9d\xb6\x9d\x6e\x0f\xfd\x76\x76\xa6\xda\x7a\xab\x81\xa1\x27\x44\x3b\xb5\x80\x6c\x3f\xa0\x53\x0b\xc8\xcd\x1f\xba\x74\x02\xe1\xe4\xdf\x9a\xb1\xdb\xc8\x00\xc8\xfe\xd6\x5b\x0d\x0c\xee\x18\xae\x76\x81\x05\x9a\x83\x86\xd5\x6e\xc9\x81\x54\x03\x69\xed\x6d\xa0\xb4\x33\xb7\xc6\x35\x50\xc3\x8f\xe6\x6c\x03\x5a\xcb\x50\xbb\x74\x02\xc3\xdd\xd6\x76\xe9\x04\x06\x91\x95\xaa\xdd\x33\x6b\x2f\x41\x70\xa4\x38\x01\x81\xd8\x15\x49\xae\xa6\x40\xb9\x28\x6a\x27\x20\x10\x3a\x1e\x18\x6a\xb3\xbe\xa1\x36\x1d\xd4\x8f\x1d\x80\xa3\xfb\x2e\xb0\x5a\x5b\x3a\xc8\x83\x35\x7d\xbb\xe6\x02\x79\xd8\x4d\x9c\x5a\x40\xe9\xab\x32\x75\x4f\x00\xc9\x3d\xa4\x35\x5d\xc8\x80\x2a\x26\xec\xa9\x2d\x1d\xa4\x1b\xe9\x53\x41\x0f\x82\xfb\xe5\xcb\xf0\x98\x62\x68\x07\x9c\xda\xd2\x41\x9c\xa7\x4f\xbd\x4c\xf2\x40\x0d\x79\xb9\xf8\x30\x16\xe6\xc1\x94\x37\xb5\xa4\x81\x76\x3d\x32\xb5\xa4\x81\xd8\xf8\x42\x53\x6f\x35\x30\x88\xa5\x52\x53\x81\x0a\x2a\xcd\x5e\x5f\x04\x30\xb8\x89\xa1\xa6\x2b\x0d\xd0\xce\xbb\xd3\x95\x06\x18\x0e\x98\xe9\x4a\x03\x04\xb7\xe1\xd6\xd4\xde\x06\x52\xcd\x7b\x2a\x89\x41\x73\xd1\x68\x4d\xc5\xee\xf4\x80\x2d\xd3\x94\x41\x34\x45\x0e\x86\xfb\x54\xec\x82\x76\xd2\x30\xae\xa6\x08\x2e\x10\xac\xa9\xf4\x04\x75\xb2\x57\x33\x55\xb3\x41\x07\xa3\x76\x2a\xb8\xc0\x08\x9f\xd2\x93\x0b\x44\xd8\x38\xda\x9f\x40\x70\x42\xa8\xa6\x62\x08\x0c\xb7\x10\x8c\x5f\x29\x2a\xfd\x8e\xfa\x68\x81\xe6\xe8\x5a\x4d\x65\x0e\x18\x45\x5f\x9d\x4a\x13\x50\x1a\x36\x0d\x69\x29\x9a\x78\x55\x35\x35\x23\x81\xda\x59\x86\x4d\xf5\x60\xd0\xda\xbf\xa7\x36\x23\x50\x44\xd0\x2e\x63\x61\x8a\x70\x41\x3a\xdd\x2f\x00\x79\x58\x7a\xe5\x17\xa8\xf6\x87\xca\x2f\x30\xbe\xd5\xd6\x63\x01\x8c\xb6\x03\x28\xd2\x8c\x98\x99\x7e\x5a\x9d\x18\x40\x6e\xdf\x24\xdb\x5e\x9f\x5c\x47\x87\xf2\x6b\x1a\x12\xc5\xb6\xd7\x66\x04\x72\x63\x92\x9d\xea\xc1\xf3\x7b\x8b\x98\x3f\x7c\x9b\x44\x14\x67\x87\x95\x5b\x08\x60\xb4\xad\xaa\x48\x03\xa9\xe3\xa6\xe1\x31\x45\xe9\x41\x34\x35\x23\x81\xd2\xb5\xd6\x88\x99\x22\xbe\x1d\x53\x29\x07\x72\xf7\xd3\xea\xb9\x6b\x78\x4c\x0e\xe2\xd7\x54\xa7\x06\x71\x28\x14\xdc\x1c\x00\x95\x8a\x0e\x2d\x4b\x60\x70\xf0\xa5\xa6\x1b\x7f\x20\x35\xea\x4c\xd5\x6c\x90\x6e\x35\x1a\x31\x53\xc4\x61\xb5\x55\x8d\xc1\xe0\x84\x75\x9d\x6a\xb8\xa0\xf6\xfd\xd7\x81\x2f\xeb\x24\x68\x96\x28\xe5\xf5\xa9\x1e\x0b\xb2\xd1\xfb\x4f\x6d\x3e\xa0\x15\x95\xa7\x42\x10\xb4\xab\x16\x43\x5a\x8a\x68\x26\xec\x53\x7b\x08\xc8\xe9\x0f\x15\x36\x20\x39\xd9\x56\xa7\x66\x7b\xd0\xc3\x42\xe8\xce\x0a\x52\x57\xf3\xd3\xa1\x7f\xaa\x71\x21\x17\x8d\x00\x29\x92\x93\x25\x65\x04\x48\xd1\x83\x8d\x4e\x23\x40\x8a\xc1\xad\xa0\x75\x6a\xc3\x00\x41\x18\xa5\x32\x28\xa4\xe8\xe3\x30\x2f\xab\x8d\xaa\x56\x2c\xe0\x8d\x13\x29\x82\xe3\xf6\x75\x72\x58\xb7\x88\x13\x59\x83\xcd\xdc\x53\xbb\x3c\x08\x0f\x62\x9c\xda\x1a\x40\xe9\x39\x62\x9c\x48\x51\xc4\xd5\x2c\x83\x42\x8a\x74\xc7\xcf\xa0\x90\xa2\xf2\x34\x2f\xdb\x8b\xb3\x06\xdc\x99\x5b\xa7\x0a\x1d\x88\xcd\xcf\xa1\x42\x07\x9a\x98\x12\x65\x9c\x48\xd1\xce\x6f\xa7\x0e\x59\xa0\x36\x1b\x47\x65\x09\x94\x6a\xdf\xa9\xfd\x1b\x94\x26\x83\x53\xcd\x08\x84\x6a\x90\x81\x1c\x45\xab\xba\x9c\x8a\xa4\x53\x33\x36\xab\x96\xd3\xa5\x39\xa8\xcd\x56\x75\xd1\x0d\x42\x65\xda\x40\x8e\xa2\x35\x17\x9f\xda\x99\xc1\x68\x96\xad\x06\x72\x14\xf1\x7d\xa3\x02\x02\x8c\x93\x21\x76\x6a\x67\x06\x1d\x78\xab\x9d\xca\x0c\xd0\x3b\x73\xa5\x81\x1c\xc5\x98\x18\x75\x0c\x98\x28\x86\x9e\x91\x06\x4c\x14\x23\x6d\x42\xb5\x06\x30\x38\x2b\x55\xa7\x96\x5a\x50\xfd\x4d\xf2\xa3\xe1\xb5\xb3\xd1\x4d\x5e\x1c\xd7\x17\xc9\x55\x66\xf5\xd2\x06\x0b\x42\xf7\x04\x43\x21\x8a\xe0\x2e\xa8\x7a\xa9\x6e\x80\xd0\x11\xfa\xa5\x6e\x01\xaa\xcc\x8b\xb3\xf9\xa2\x75\x26\x79\xb9\x62\x04\xad\xec\x37\x3a\xa2\x28\x9d\x05\x5e\x2a\x25\x20\x88\xd0\x5e\x2f\xb7\x0a\x41\xea\xd7\xf0\xe2\x44\xa7\x68\x2e\x54\xa8\x97\x1a\x08\x88\xc9\x10\x7d\xa9\x81\x80\xe4\x22\xff\x7a\xb9\xa4\x03\xed\x91\x83\x97\x42\x01\x94\x1e\x66\x2f\x3d\xe1\xc1\xe0\x0e\xfd\x7a\xa9\x48\x80\x72\x93\xf9\xa5\xc9\x12\x0c\x37\x27\x5f\x1e\x40\x02\xc5\xed\x2f\xf5\x52\x74\x80\x54\xd7\x7f\xe9\x52\x00\x82\xeb\x0f\xeb\xa5\x50\x00\x31\x2c\x97\x2b\x33\x10\xee\xaf\xbc\x1c\xee\x20\x87\x79\x39\x90\x41\xbb\x01\xf2\xd2\x5d\x11\x04\x97\xa7\xd5\x4b\xe3\x1c\x18\xe5\x77\x74\xd5\x03\x4a\x51\xfb\xf2\xa0\x0f\x48\xbb\xef\x4b\x4b\x1c\x08\x82\x33\xd4\x4b\x45\x02\x24\x61\x72\xea\xe5\x78\x04\x7d\xb2\xf0\x7b\xa9\x22\x80\xe1\x7a\xf7\xe5\x11\x1e\x50\xdc\xbc\x53\x2f\xe7\x70\x90\x07\xaa\xf1\xcb\xc1\x07\x5a\x4f\x0a\x23\x40\x8a\xe0\x42\xbd\x7a\x39\xf8\xc0\xd0\x82\xfc\x72\xdd\x00\xc2\x93\x16\x2f\xa7\x4f\x10\x2e\x71\x5e\x3a\xc9\x80\x3a\x7d\xa3\xca\x38\x68\xc5\xe3\xcb\x61\x05\x52\xad\xe1\xed\x4e\x37\x08\x7d\xb6\xdf\x0e\x18\x30\x4e\x74\x57\xe3\x39\x8a\xe2\x7e\x8b\x7a\x3b\x5b\x81\x18\x74\x4c\x43\x3c\x8a\x08\x94\xf1\xb7\xfb\x05\x60\xba\x33\xf7\x76\x28\x80\x76\x9d\xf5\x76\x28\x80\xa9\x8a\xf0\x1e\x66\xcf\x35\x28\x5c\xa0\x53\x6f\x3b\x39\x88\x6d\x9e\xbf\x9e\x8a\xdf\x8e\x01\x30\xd5\xd5\xdf\x6e\x71\x83\x41\xb0\x80\x7a\x6b\xe9\x00\x53\x31\xf2\xd6\x23\x18\x74\x5b\x6c\xdd\xe7\xc0\xe0\x60\x78\xbd\x55\xb9\xdf\x5e\xed\x8e\xa8\x34\x32\xa5\x18\x27\xe2\xcd\x08\x90\x22\xed\x45\x6f\x3b\x3c\x68\x5d\x87\xde\x6e\x45\x83\x72\x07\xdd\x38\x91\xa2\xfa\x30\xc9\xaf\x45\xa8\x28\x15\xba\xb7\x96\x7c\x90\x7a\xd8\xbf\xb5\xe4\x83\x20\x1a\x5b\xbd\x3d\x84\x07\x8a\xfb\xf8\xeb\xed\xee\x34\x48\xcf\x57\xbe\x9d\xdf\x40\x28\xd5\x8d\x13\x29\x86\x4b\xe0\xb7\x36\x0c\x90\xdc\xef\x5c\x6f\xf5\x7e\x10\x5a\xd2\xde\xee\x3b\x83\xd4\xd5\xf3\xed\x70\x05\x75\x5a\xed\x69\x51\xb9\x68\x26\xb0\x16\x1a\x27\x52\xa4\x0e\xc7\x6f\x1d\x8e\x41\x72\xbb\x62\x19\xdb\x51\xe4\xb7\x71\xb4\x7f\x83\x4a\x3f\xad\x4e\x41\xa0\xb8\xaf\xa1\x8c\x8e\x28\x42\xbb\xd6\x5b\x5d\xfd\xed\xfe\xae\xdd\x44\xcb\x36\x48\xcf\x8c\x18\x0a\x51\xc4\x61\xef\x76\xcb\x17\xd4\x70\xa4\x78\xc4\x02\x24\x91\x3a\xea\xed\x96\x2f\x18\x04\x70\x2f\x43\x21\x8a\x2a\xb4\x99\xb7\x53\x31\x68\x02\x94\x94\x11\x0d\xeb\x1b\xd1\xd0\x37\x6a\xec\x7e\xeb\x6b\x67\xf6\xce\xce\x6f\xcf\x53\x1c\x3e\x65\xbf\xc7\x95\x98\x93\xf2\xf5\xd6\x94\x01\x42\x35\xd9\x88\x86\x22\x06\x33\x84\x11\x0d\x45\x0d\x7b\xa1\x46\x0a\x23\x1a\xee\x96\x4b\xc3\xf9\x1b\xa7\x20\xe2\x40\xd4\x5b\xf9\x03\xa2\x6d\x89\xdb\x24\x0e\x11\x73\x7b\x70\x19\x26\x50\x0c\xae\x96\x28\x63\xef\xd5\x37\xf6\x1e\x5d\xce\xe8\x77\x22\x9d\x2b\x8d\x7e\x27\xc2\x35\xfd\xe5\x84\x0d\xa2\xf9\x68\x97\x62\x04\x04\xb7\x01\xd4\xa5\x45\x14\x24\xc1\xe2\xea\xd2\x61\x06\xe4\xc1\x0a\xc8\x50\x77\xa2\xb8\x04\xb8\x0c\x4f\x27\x72\xa3\xf4\xc6\xa2\x13\xa5\x50\xb8\x5c\xc0\x83\xd2\x8d\xf2\x72\x01\x0f\x06\x21\x09\xca\x90\x72\x22\x37\xe4\xc4\xa5\x9c\x00\xc9\x4d\x32\x65\x48\x39\x91\x9c\xc3\xae\x4b\x35\x1b\x74\x31\xef\x5e\xea\xd4\xa0\xb8\x72\xa7\x2e\xf7\x05\x41\x9e\x56\x48\x35\x1b\x34\xb1\x1b\xea\x52\x0c\x81\xa1\x0b\xab\xe1\xe9\x44\xe9\x07\x72\xa9\x53\x83\xd1\xd8\x86\x2f\x45\xc7\xa5\xe8\xb0\x8e\xea\xd4\xa0\x36\xbc\xb1\x2f\xed\xa6\xa0\x83\xe1\x7e\x29\x60\x40\xe8\x83\x7c\x69\x32\x00\xe1\xd9\xb2\xcb\x3d\x37\x30\xb8\x9e\xbc\x2e\x8f\x88\x81\xd0\x24\x7e\x69\x24\x05\xb9\xa3\x49\x5e\x1a\x16\x40\x7a\xa4\xf7\xd2\xfd\x05\xc4\x76\xfa\x94\x7d\x62\xb2\x99\xc2\x4a\xf6\xd2\xfc\x00\x4a\x77\x8e\x4b\x31\x04\xba\xbe\x4f\xd9\xf6\x58\x54\xcf\x6f\xf6\x36\x0e\xbb\x7c\x83\x81\x7c\xe9\x24\x03\x42\x77\x58\x83\xeb\x89\xd0\x8f\xf6\xd2\xa9\xf1\x32\x94\x34\x63\xe8\xd2\xba\x01\xe2\xb0\x09\xb5\x6e\x80\xd0\x93\xeb\x72\xdd\x00\x62\xda\x38\x0a\x3e\xd0\x03\x5d\xff\xd2\xbb\xe6\x32\x54\x02\x1b\x6c\x97\x76\x57\x50\x6e\x77\x5d\x2e\x38\x2e\xcf\x50\x60\xf2\x34\x76\x9f\x08\xcf\x70\x5d\x8a\x47\x50\x9e\x96\x34\x50\x9f\x68\x22\xb2\x96\x21\xf8\x44\x1e\xdb\xf6\xeb\xa9\xf8\x72\xc7\x0f\xd4\x18\xe6\xeb\xdb\x51\x89\x08\x0b\x54\x97\xa2\x12\xa4\xfe\x38\x97\xde\x31\x60\xb4\xfd\x56\xe3\xed\x65\xf8\x79\xbf\x96\x02\x15\xe4\x89\xa2\x79\x29\x50\x2f\x05\x2a\x8a\xd3\xa5\xc6\x05\x5a\x29\x75\x69\x35\x01\xe9\xf9\xca\x4b\x13\x09\x68\xee\x43\xab\x4b\x2f\x4b\x10\xf3\xf4\x29\x8b\x7a\x19\x57\x85\x5e\xa4\xf4\x04\x4d\xb4\x88\xba\x34\x91\x80\xdc\x94\x78\x9a\x48\x40\x72\x4d\x4e\x5d\x4a\x4f\x90\x9b\x45\xd5\xa5\x12\x74\x9a\x97\x2e\x95\xa0\xdd\xd9\xbf\xf4\xc7\x01\xe5\xee\xce\xa5\x3f\x0e\x88\x5d\x89\xe7\x9a\x0b\xd4\x57\x7a\x2a\x9c\x41\x7f\xfb\x9a\x56\x13\x10\xdf\xf6\xd2\x82\x0c\xc2\xa5\xc0\xa5\x05\xf9\xfa\x5e\xa3\x6b\x92\x85\x70\xbf\x12\x59\xf6\x71\x2f\x0f\xa4\x0a\xce\x47\x15\x12\x84\x9b\x21\xc6\x2a\x14\xa9\xdf\x9e\x51\x08\x45\x06\x8a\x84\x51\x08\x45\x12\x5e\xae\x3e\xee\xe5\x81\xd0\xb7\xf0\xe3\x32\x0c\x04\x21\xbf\xea\xa3\x63\x0a\x28\x2d\xee\x86\x2f\x14\xc5\x95\xcf\x65\xf8\x42\x91\x5a\x31\x3f\xda\x86\x41\xbb\x71\xf7\x51\x1d\x05\x65\x4b\x7c\x5c\xac\x81\x54\x70\x7d\xdc\x6c\x03\x93\x0b\x85\xeb\xe3\xd4\x02\x86\x9b\xcc\x1f\xd7\x6f\xa0\x34\xfd\x7c\xf4\x42\x01\xcd\x95\xf3\xf5\x51\x77\xfd\xa8\xbb\x5a\x54\xe7\x24\xd0\x61\xb5\x9d\x80\x3e\x86\xc5\xa7\x4f\x7c\x5c\x73\x81\xf2\xa4\xd7\xc7\x49\x03\x94\x8e\xe3\x1f\xb7\xd1\x40\x1e\x48\xf5\x8f\xfa\x26\xa8\x9d\xc1\xf7\x51\x93\x04\x9d\xb6\x84\xee\x1c\xa0\x09\xed\x57\x1f\x67\x08\x10\x41\xcf\x31\x6a\xa3\x08\x65\xc6\x47\xab\xcb\xc7\x03\x6e\x4c\x9f\x1f\x7d\x37\x40\x11\x25\xa5\x3e\xaa\xa0\x9f\xaf\x89\x85\xbc\x54\x41\x41\x0f\xf4\xcd\x8f\x26\x16\xd0\x6d\xcf\x51\x05\x05\xed\x51\xbf\x8f\x82\xfe\xf3\x0d\x0d\xc1\xe7\x50\xaa\x1b\x27\xb2\xec\x85\x4a\xf5\x8f\x07\x44\xac\x90\x2a\x28\x48\x2e\x8d\xa8\x8f\x82\xfe\x63\x5c\x72\x26\xc6\x8f\xeb\x4a\xd0\x84\x98\xad\x8f\xeb\x4a\x90\x27\x53\xcb\x47\x77\x0e\x90\x69\xc7\x54\xf6\x83\x3c\xed\x00\x0a\x7a\xd0\x9e\xba\xff\xa8\x95\x82\x9c\x98\xa4\x3e\x6a\xa5\x20\xa7\x7d\x55\xad\x14\xb4\x67\x2a\x3f\x9e\xda\x00\xa5\x66\xf4\x71\x5d\xf9\x71\x5d\xd9\x3e\x65\xdb\x5f\xda\xd2\xc9\x4b\x7d\x13\x24\x71\xa1\xea\xa3\xbe\x09\xda\xf3\x2b\x1f\x9d\x2b\x40\x6c\xc8\xc2\x8f\x2a\x28\x08\x55\xf6\x8f\xfa\x26\x68\xcf\x28\x7f\xdc\x27\x03\x59\xac\x41\x3e\xda\x86\x41\x1c\x8e\x6d\x5d\x30\x3e\x9e\x2d\x0b\x9f\xb2\x7f\xb1\xde\xd5\x79\xd9\x28\x97\x22\x15\x8f\x46\xb9\x14\xa1\xb5\xd1\xc8\x94\xa2\xda\x4e\xae\xb1\x09\x84\x07\x02\x0d\x56\x29\xea\x2b\x4d\x94\x85\x06\xab\x54\xa5\x32\x58\xa5\x48\xcf\xaf\x18\x99\x52\x24\xf7\x83\xd5\xc7\x4d\x31\x90\xdc\xc0\x5d\x46\xa6\x14\xfd\xfd\x8e\x3a\x6a\x80\xd6\x55\xf4\xa3\x35\x1a\x24\xf1\xd0\xea\xa3\x35\x1a\x34\x77\x67\xd5\xc7\x05\x3c\x68\x22\x24\xd7\xad\xc4\xbc\xbd\x55\xf4\xf8\x3b\x0e\x33\x19\x60\x52\xb4\x26\xa5\xdb\x83\xbf\xa0\xdc\x46\x33\xe6\xa4\x18\x9e\x93\xbd\xb5\x6b\xdd\xc6\x33\xa3\x8c\xb7\xeb\x7b\x30\x92\xce\x70\xbb\xbe\x07\xc1\x25\x2c\x75\xab\x98\x83\xe4\x52\xb6\xba\x09\x4b\x2d\x42\xff\x12\xe3\x57\x8a\xe4\xc2\xb2\xba\xf5\xbd\x00\xe5\xa6\x83\x21\x2d\x45\x06\xad\x72\xeb\x42\x01\x7a\x0c\xb3\xff\x98\x84\xdb\xe8\x69\x92\xa5\x3f\xb8\xd5\xca\xb6\x53\xaa\x83\xe4\xce\x80\xba\x5d\x30\x80\x41\xc0\xfb\x32\x16\xa6\x28\xb7\x5f\x8c\x85\x29\xca\xe0\x1d\xb7\xd6\x09\x10\x84\x71\xab\xdb\x7d\x41\x10\x46\xc4\x30\x62\xa6\x28\x3d\x6f\x6f\xa5\x3a\xe8\x89\xf5\xeb\x76\xc7\x0f\x84\x16\x18\x23\x66\x8a\xf0\xdc\xe7\xad\x41\x1f\xd4\x44\x0d\xba\x75\xba\xbf\xbd\x31\xd3\xd2\xeb\x42\x01\xda\xe3\xf6\xb7\x86\x3a\x90\x83\xe1\x7a\xeb\x6e\x08\x42\xcb\xe3\xed\x0c\x01\xd2\xe5\xce\xed\xb2\x02\x14\xd7\x9e\x97\xa1\x36\x45\x6b\x5c\xbb\x75\x0b\x04\xb5\x4f\x93\xcc\x1e\x73\x9e\x26\x83\xdb\xe9\x00\x94\x8a\xd7\xad\x11\x1e\x74\x30\x5c\x8d\xbe\x29\x4a\xf3\xba\xd1\x37\x45\x78\x44\xf5\x76\x0d\x01\x52\x97\xdd\x5b\x2d\xfc\xd6\xb1\x8e\xa9\xe5\x56\x73\x06\xa5\xc7\xa6\xc1\x2a\x45\x78\xee\xea\x76\xf7\x10\x8c\xd3\x7e\xef\xee\x21\x08\xee\x16\xa9\x5b\x3b\x20\x28\xed\x03\xb7\xa6\x7a\x90\xfa\x5b\xdc\x1e\xa9\x03\xc3\x68\x37\x86\xb4\x14\xa5\x83\xd1\xad\xa0\x07\xa9\x85\xef\x76\x5f\x10\x94\x56\x17\x43\x5a\x8a\x22\x84\x7a\xdd\xda\x1a\x40\x18\xf0\xc7\x60\x95\x22\x74\x88\xb8\x15\xf4\xa0\xf7\xcd\x24\x8b\x8a\x2f\x79\x23\x92\x8c\x5f\x29\x5a\xc3\xd5\xad\x54\x07\x15\x8e\x6d\x95\x5e\xd0\x5c\x17\x59\xb7\x47\x8b\x40\xeb\x1b\x7d\x2b\xe8\x41\x9f\x18\xce\x8d\x72\x29\x4a\x97\x82\x5b\xc3\xc2\xed\x69\x23\xd4\xb3\x5b\x7d\x13\xb4\x21\x3e\x6e\x1d\x0f\x40\x19\x6d\xeb\x56\x7a\x82\x76\x0b\xe1\xd6\xa5\x00\x8c\x76\x6c\xbb\x39\x00\xc2\x25\x9d\x01\x26\x45\x12\x3c\xb6\x1e\xf7\x0b\x40\xdb\x01\x1e\x9d\xbd\x41\x6b\xb3\x36\xc0\xa4\x08\x77\x28\x0c\x30\x29\x06\xd7\x0e\x97\xd1\x24\x45\x9e\xdf\xa4\x34\x89\xf3\x99\xc8\xaf\x47\x89\x09\xa2\xcc\x5e\xf7\x04\xd0\xc4\x67\xae\x47\x89\xf9\x7c\xcf\x11\x4d\x92\xde\x26\x31\xc9\x4e\x9f\xba\x4c\xba\x58\xe5\x91\xbd\x5e\x61\xc6\x89\xf4\x30\xf8\xa3\x94\x03\xbd\xb3\xf0\x7b\x94\x5f\xa0\xb8\x74\xab\x1e\x77\x0c\x41\x11\xd5\xb8\x1e\x95\x4b\x50\xda\x40\x1e\xfd\x07\x40\x78\x0e\xfb\x71\xc7\x10\x0c\x67\x41\x23\x40\x8a\xd6\x83\xf1\x51\xe6\x80\x50\x4e\x3c\x6a\xa5\x20\xeb\x9b\x97\x75\x4c\xdd\x4e\x29\xbd\x32\x07\x44\x7e\x7f\x68\x51\x75\x71\xb6\x5c\x9a\x4f\x8d\x0d\xa9\x5d\xec\xd1\x56\x0a\x8a\x0b\x3d\xcb\xe0\x8d\x22\xb8\x70\xa8\x1e\xc5\x10\x28\x37\x8c\x8c\xe7\x28\x86\x6a\xe3\xa3\x80\x01\x95\xf4\x42\x23\x35\x8a\x30\x1e\xda\xa3\xdd\x02\xe4\x56\xf5\xeb\xa9\xf8\xd1\xac\x01\x42\x03\x8f\x81\x1c\x45\xea\x01\xf4\x68\x37\x05\xed\x51\xbd\x47\xa5\x15\xb4\x21\xf4\x1e\xd5\x51\x50\xd3\xfe\xa1\x3a\x0a\x5a\xc9\x62\xd4\x46\x51\x87\xc5\xd6\xee\x00\xda\x03\x35\x86\x68\x14\x83\x0b\x96\xea\x71\x9b\x03\x74\xf9\x43\x8f\xdd\x80\x36\x06\xc7\xe3\xe6\x24\x08\xb5\x70\x63\x28\x8a\x3e\xad\xa3\x12\x0f\xb4\x36\xeb\x47\x89\x07\xaa\x98\xdf\x1e\xed\x0e\xa0\x36\x47\x9d\x56\x04\x10\x87\xdf\x41\x63\x00\x88\x03\xf5\xfd\x51\x01\x06\x43\x45\xf3\xd1\x18\x00\x5a\x53\xea\xa3\xa8\x04\xa1\xc7\x94\xf1\x18\x45\x10\xca\xbe\x1e\x57\xfe\x8f\x01\x6c\x08\x75\xf0\xb8\xa6\x07\xa9\x23\xe1\xa3\x86\xfa\x78\x31\xbd\x85\xd0\xa1\x01\x94\xe7\x9b\x8c\xb4\x28\xda\x93\xa6\x8f\x4a\x2b\x28\x55\x97\xe7\xb6\x55\x6f\xe5\x22\x2d\xa1\xbf\x17\x68\x4f\xe2\x18\xa2\x51\x04\xd7\x6b\xd6\xa3\x75\x15\x94\x47\xb1\x1e\x05\x2a\xe8\xef\x53\xea\xb1\x20\x89\x8f\x5a\x8f\xd2\x13\x04\xb7\xcc\xf5\x86\xa8\x14\xc9\xf9\x80\xde\xf0\x6b\x10\x8d\xaf\x4a\x6f\x88\x4a\x11\x63\xf7\xa9\xd3\x24\x6d\x51\x49\xd2\xdb\x24\x6f\x49\x69\x92\x1e\x93\x10\xa8\x6b\x16\xec\x6d\xf7\x8d\x04\x47\x27\x70\x4a\x6f\xbb\x6f\x24\x3a\x19\x67\x7f\x7a\xe3\x14\xa6\x08\x62\xcf\xf4\x86\xee\x2a\x9a\xb0\x9d\xbd\xed\xbe\xd1\x4b\xec\x76\xf3\xba\x4c\xe2\x66\xa6\xa6\xa8\xb8\xff\x8a\x88\x32\xfb\xdb\x24\x15\x1c\xf3\xb2\xa8\xbb\xb3\x33\x15\x42\x38\x8b\x46\x7a\xb6\xd1\x24\x45\xe0\x6f\xda\x46\x93\x14\x41\xec\xab\x36\x74\xa4\xa8\xcd\xbc\x86\x3f\xf4\xbe\xd0\x41\xe3\x0c\x0b\xc1\x29\xcc\x71\xd2\x38\x61\xe9\xc3\xfb\x75\xf8\x21\x16\x64\xd1\xb8\xe8\xf4\x96\x36\xa1\x37\x24\x17\xa5\x4f\x0b\x91\x86\xfa\xa5\x10\x69\xb5\x09\x32\x86\xa3\x46\x1b\x01\x52\x44\x4d\x5a\xa2\x6c\x42\x34\xb6\xe9\x47\x6b\xdf\x88\x89\xf7\x0c\x7e\xd8\x66\xef\xee\xd0\xc1\x0f\xdb\xa2\xb6\x77\xfb\xf3\xc6\xf6\x8d\x44\x2f\xc7\x17\xa1\x8d\xda\x28\xc6\xf7\x8d\xd3\xef\x48\x54\x99\x61\x5e\xd3\x96\x70\x39\x7d\x92\x84\x29\x55\x34\x22\xbc\xb7\xd3\x42\x18\xa6\xcb\x1f\x9e\xf6\x42\x2e\xf0\x62\x6f\xab\x8d\xda\x28\x06\xcb\xb0\xde\x5e\xb6\x17\x2e\x60\x5c\xe4\xdf\x06\x5f\x14\xf9\xed\x5f\x2f\x5b\x82\x40\x33\x6d\xb5\x5f\xd6\xd1\x0b\x4e\xcc\xfe\x65\x1d\x3d\x32\xee\xa7\x7d\xf9\xb5\x91\x72\x6d\xb5\xdf\x36\x34\x1b\xc3\x5b\x9a\x64\x07\x60\x0f\x69\xda\x12\x6f\x2b\xf4\xf6\xac\x14\x79\xbd\xad\x10\xe6\x53\xee\x14\xec\xed\xf2\x29\x02\xcd\x84\x3f\xbc\x2c\xea\xc2\xc4\xf3\xa4\xb7\xcb\x42\x70\xfa\x6f\xb3\xdf\x7f\xfc\xe1\xc7\xe0\xd5\x0c\xe4\x8f\xd9\x13\x16\x76\x38\x1e\x3f\x56\x88\xfb\x2f\xcf\x41\x21\x3e\xe6\xe5\x45\xed\xcd\x1b\x1f\x9b\x90\x20\x2c\x35\xe9\x72\x8f\x79\x3d\xf8\x48\x58\xfa\xc7\xbc\xb8\x6a\x81\xa3\xb7\xbd\xb3\xef\x2c\x9a\xf8\x27\xbd\x2b\x3a\x40\xa2\x79\xf7\x8e\xd1\x50\x14\xce\x28\xbd\xef\x3e\xb5\x7b\x9d\x7b\x93\xf4\x32\x09\x77\xb2\xf2\xa9\xdb\x24\x8f\x8e\xfc\xfa\x30\x53\xef\x2c\x5b\x45\xe0\xfb\xd5\x3b\xab\x4f\xd1\xcc\x36\x6d\x44\x43\x91\x78\x92\xf6\x3e\x7c\x8a\x33\xd9\xc4\x2e\x6e\xe3\x0b\x8a\xb9\xad\x95\x6c\xef\x61\xb1\x83\x18\x40\x6b\x32\x6b\xe3\x0b\x8a\xfe\xe6\xe5\x38\xff\x5b\x30\xc1\x49\x92\x35\x09\x0c\xf2\x0c\xea\xdd\xa1\x0f\x0a\x33\x63\xef\x69\x21\x0c\xc3\x1d\xbc\x31\x7d\x23\xf1\x60\x09\xbf\xd3\x7b\x9a\x3d\x57\x16\xb2\xe9\xd0\x7b\x9a\xbd\xd7\x9e\xfb\xc6\xf2\xd3\x14\xfb\x10\x66\xcf\x26\xb3\x68\xec\xdf\xbd\x97\x6f\xf4\xb8\x58\xfb\x94\xd5\x66\xe1\x37\xad\x76\x59\x08\x0e\x7f\xe1\xc8\xd3\x7b\x59\x08\x82\x6a\xe3\x6f\xda\xc6\x17\x14\x85\xd5\xb7\x0d\x13\x28\x92\xbb\x32\x7a\x9f\x96\x6b\x7a\xb7\x9a\x49\x66\x8f\xb7\x07\x57\x38\xb4\x31\x01\x45\x71\xa3\x58\xef\x38\x97\x8a\xe6\xc0\x43\xef\x8a\x11\xd0\x84\x48\x6b\x03\x00\x8a\xc2\x70\xde\x46\xfb\xeb\xbf\x45\xfb\xe3\x8d\xa7\x79\x9d\x5e\x62\x47\x51\x5f\xe6\xf5\x22\x2e\x94\xd5\x56\x40\x80\xda\x18\x29\xfb\xdb\xfe\xf5\x66\xf1\x61\xf6\x0e\x6a\xc2\xf1\x4d\x76\xf3\xdb\x70\x7c\xa2\x89\x30\xda\xfb\xe5\x0f\x8d\x16\xe1\xe0\x41\x4f\x11\x49\xec\x99\x36\x1c\x9f\x88\x81\xbc\x36\x1c\x9f\x08\xce\xd8\xf4\x7e\x99\xfd\xe5\xa5\x6c\x24\x7d\xec\x4c\x38\xb4\xb3\xf8\xe8\xfd\x63\x85\x70\xf5\xe4\x58\x7c\xef\x1f\x1b\xc7\xe8\x51\x27\x45\xfd\xd8\x27\x50\x83\x38\x3c\xd1\xbb\x02\x02\xd4\xe6\x0f\x6f\x9f\xe2\x78\x30\x97\x13\xb7\xd1\xfe\x44\x63\xf6\xef\xfd\xb6\xe7\x2c\x24\x91\x82\x7a\xbf\xed\x00\x37\x01\xb8\x82\xef\x78\x5b\x7a\xfc\x3a\xc3\x1e\x8d\x41\x4c\x34\x0e\x33\x6d\x68\x3f\x91\xf8\xb4\xf5\xfe\xf8\x43\x14\x9c\xc3\x91\xf6\x58\x54\x4e\xf9\xb2\xc9\xd3\x46\xfb\x13\x8d\x75\xa3\x0f\x15\x1c\xd0\x1c\x5c\x69\xe3\xed\x89\xb0\x71\x0e\xd5\x8d\xc3\xed\x08\xa6\x03\x03\xe2\x89\xe2\x26\x86\x3e\x58\xac\x89\x26\x86\x62\x1f\x58\xa9\x44\xb1\x3b\xdd\xc6\xc8\x13\x85\xa5\xa4\x0f\xd6\x6f\xa2\x0e\x46\xc7\xc1\xde\x83\x28\xa7\x29\x63\xe4\x89\x64\x9b\xb6\x8f\x61\x21\x38\xee\xca\x35\xe0\x7d\x0c\x8b\xca\x46\x03\xe1\x9d\xfa\x18\x16\x02\xef\x51\x8e\xeb\xb7\xc1\xf5\x44\x11\x55\xbd\x8d\xa4\x27\x92\x63\x37\x7d\x84\x6f\x0c\x0e\xe7\xa4\x4f\xb5\x49\x84\x5d\x60\x2a\x36\x92\x9e\x68\xac\x08\x7d\x28\xe5\x8e\x6f\x24\xaa\x35\xac\x8e\xb4\x8e\x84\xb8\x26\xb8\x5e\x1b\x23\x4f\xc4\xd8\x4d\x3a\x4d\x22\xb0\x33\xb3\xcd\x91\x56\x88\x15\xe3\x81\x0a\x7a\xa8\xe0\x80\xe4\x78\x70\x1f\xac\x18\x45\x60\xa4\xe8\x03\x1f\x1c\x11\xaa\xb3\x47\x59\x08\xef\x66\x63\xf0\x1d\x8a\x34\x10\xc4\x52\xe9\x43\x91\x06\x62\xda\x12\xed\x0f\x71\xa5\x19\x36\x74\xfb\x14\x3b\x14\x6c\x21\xf4\xa1\x48\x03\x83\x73\xeb\x6d\x08\x3e\x91\xec\xdf\xf5\x31\x2d\x17\xfe\xf2\x04\xe6\xe9\x43\x01\x03\x82\x98\xcc\x7d\xbc\x2c\xd7\x8b\x19\x26\x69\x1c\x65\xce\x61\xa0\x50\x54\xd0\x43\x0d\x04\xa4\xfa\xe6\x71\xf9\xc6\xcb\xef\xc8\x0f\x2f\xb3\x5f\x18\x18\x20\xfb\xc0\x66\x24\xaa\x10\x1d\x87\xa2\x03\xe4\x74\x74\x28\x3a\x40\x4f\xbf\xf6\xc7\x72\x7d\x38\x67\x6b\xcf\x51\xb7\x30\x58\x5c\x6d\xbf\x36\x50\xf7\x71\xdb\x04\x5e\x7c\x89\x6a\x7b\xdc\x66\xc2\x35\x94\x69\xff\x78\xec\x1f\x8f\x7e\xf8\x8c\x3a\x55\x0f\xd0\xb8\x04\xf4\xa1\x34\x00\xa1\x5e\x76\xa8\x8d\x80\x26\x4a\x53\x0f\x5c\xde\x44\x6d\x63\xd5\x77\xe0\xcc\x26\x9a\xab\xa4\x7b\x38\xce\x87\x47\x08\x19\x62\xc3\x65\x05\x48\xee\xd0\xef\xe1\xb2\x02\xd4\x34\x2f\x2c\xdb\xa2\x88\xab\xd9\x83\x6d\x47\x91\xec\xe5\xf5\x50\x66\x0c\x83\x68\x6e\x41\x92\x6f\xc4\xe6\x33\xcd\xde\x71\x3e\x86\x5b\x98\x49\xd2\x6d\x12\x2b\x6c\x26\xa0\x81\x35\x47\x14\x2e\x01\x3d\xb0\x20\x8b\xe2\x54\xe1\x9a\x60\x4c\x62\x81\xc5\x1c\x6e\xfc\x37\x51\x44\x5a\xec\xe1\xd8\x04\xb5\x99\x17\x06\x1e\x31\x4e\xf3\xc2\x73\x44\xc4\x40\x55\x1b\x65\x85\xb8\x64\xe3\x44\x29\x19\xae\x21\x40\xb1\x1f\xde\x86\x84\x13\x4d\xd0\x99\x1e\x6d\xb9\x70\xbd\xc6\xfc\xd0\xc3\x95\xc6\x30\xfe\x09\x22\xdc\x28\x71\x22\x0e\x56\x1a\x46\x89\x13\x8d\xf7\x67\x0f\xb5\x06\xd0\x6d\x21\xa6\x4d\xb8\x50\x81\x32\x3d\xa6\x15\xc2\xdb\x43\x59\x66\x94\x38\x51\x44\xc4\xe8\x31\xcd\x7e\x72\xe3\xef\xa0\xda\x2e\x51\x40\x71\x31\x7d\x0f\x15\x09\xb0\x34\x32\x92\x7c\xe3\x89\xdb\x16\x83\x7a\x9c\xbe\x91\xdb\x94\x0e\xc4\x9b\xc1\xe2\x44\x6c\xa7\x79\xf9\x1d\x4f\x77\xe0\x69\x1c\x87\x3e\xa8\x81\xb6\x6b\x34\x37\x51\xbb\x6d\xef\x7a\x64\x78\x24\x85\xb5\xcd\x78\xdb\xd0\x04\xa7\x52\xcb\x1a\xae\x47\xc6\x37\x3e\x3c\x15\x52\x29\x01\xcd\xf9\xf0\x36\x0c\x9c\x88\x69\xb9\x94\x19\x60\x84\xed\xa5\xba\x01\x62\xda\x27\x2e\xbf\xd0\x85\x33\x9c\xdd\xf7\x72\xc0\x7c\xdd\x26\x4c\xb2\xa8\xc4\xab\x52\x0f\x36\x7e\x9c\x18\x44\x56\x6a\x83\xc5\x89\x31\xd1\xc5\x86\x92\x05\x0c\x0e\x9b\xf4\x70\xd5\x02\xda\xd5\xc1\xf8\xf8\x85\xb8\x6c\x97\x33\xdd\x3d\x6e\x2b\x74\x13\x3c\xdf\xc1\x77\xdb\x12\xb7\x7b\x79\xbc\xf1\xf6\x3b\xde\x1c\x08\x44\xa5\x1a\x6a\x33\xc3\x60\x27\x7e\x47\xb5\x19\xd0\x6d\xdb\x2b\xac\x40\xf7\x37\x7b\x5b\x02\x1f\x77\xf5\x27\x23\xd6\x89\xc0\xe2\xde\x06\x9e\x13\x81\x73\x6a\x0f\x45\x1a\x48\xb5\x86\xa1\xfc\x1a\x7a\xc2\x2b\x01\x54\x70\x40\x73\x5a\xb2\x43\x0b\x0e\x48\x36\x53\x3a\x38\x9a\x2d\xc6\x49\xf6\xa1\x51\x07\x44\x50\x88\x50\xe7\x01\x81\xc5\xbd\x83\x60\x27\x22\xd9\xe5\xeb\x70\xb1\x06\x82\x78\x44\x1d\xbb\xd9\xef\xfa\x0f\x98\xf4\x36\xc9\x8b\x44\x56\x4b\x04\xf6\x6f\x51\x45\xf7\x0d\x97\x5e\x20\xb9\x47\xa2\x8d\x7e\x27\x3a\x90\x85\xa1\x10\x05\x8d\x9f\x63\x87\x0b\x34\x10\xdc\xf8\xdb\xa1\xd5\x05\x0c\x15\xfb\x50\xae\x82\xe0\xaa\xce\x0e\xe5\x2a\x48\x62\x83\xb4\xc1\xf5\x44\xed\xbb\x79\xdd\x26\x61\x1b\x0e\x0b\xf1\x98\xc4\x5d\xe4\x4c\x8c\xa1\xc6\x16\xdf\x25\x21\x15\x1a\xb6\xc4\xc0\x9e\x82\x48\x0b\xf6\x15\x45\x6c\x7e\x21\x95\x38\x90\x38\xb4\x77\x28\xdc\x41\x87\xad\x3a\xac\x10\x47\x10\xb9\xaf\xaf\x8d\xf0\x27\x92\xe8\x2d\x1d\xca\x7b\xd0\x8e\x8e\x50\x63\x03\x45\xe0\xb9\x8e\xb0\xa1\x43\x9d\xe7\xd7\x1e\xd4\x1d\x61\x4d\x82\xd8\xc5\x36\x94\xf3\x08\xc8\x40\x08\x46\xd8\x9c\x44\x39\x39\x6c\xe1\xb4\x72\x1c\x1a\x52\x8d\x09\x27\x0d\x50\x38\x3e\x75\xa8\xd0\x81\xd8\xbf\x49\x56\x8e\x43\x43\xf3\xfb\x43\xb3\x4f\xcd\x79\xd4\xd7\x95\x2c\x28\xce\x64\x77\xb8\x92\x0d\x57\xb2\xd3\xa7\x6c\x15\x36\x0a\x08\x7b\xd7\x06\x39\x14\xc1\xe1\x89\x0e\xd5\x3e\x50\xdc\x91\xd7\xe1\x12\x18\x14\x5b\xef\x1d\x2e\x81\x41\x6d\x7e\x1a\xa7\x3c\x50\xdf\x2f\xaf\x72\x08\xba\xa7\x49\x56\x08\xef\x18\x3c\x34\xda\x18\x8a\x22\x82\x35\x44\xb4\xa5\xf7\x3a\x3f\x5b\x75\x5a\xae\xaf\x37\x23\x4f\x4d\x3f\xc7\xa4\x63\xd9\xfd\x9c\xb9\x40\x72\xbe\xb2\xc3\x99\x0b\x04\x0e\xc7\x1d\xce\x5c\xa0\x08\x8d\xdc\xe1\x6c\x03\x02\x83\x7e\xc7\x69\xab\x7a\xe0\xc1\x86\x3e\x2d\x17\x61\x15\xa7\x43\xcc\x39\x09\x8c\xb2\x8e\x5a\xd2\x40\x9d\xcc\x10\xf1\xb2\xa8\x2f\x9d\x71\x69\xd5\x97\x4d\xf8\xd2\xe8\xe7\x53\x96\xfe\xe5\xa9\x0b\xb2\x7f\x59\x2e\xa2\x95\xb2\x99\xdb\xf1\xb2\x09\x5f\xae\xa6\xf8\xe1\xdb\xef\xc8\x61\x70\xe7\x24\x83\x2f\x8a\xcc\x6f\x92\x6f\xe4\xe4\x24\x7b\x0f\x1d\xce\x6f\x20\xcb\x9e\x83\x8b\xa1\x48\x67\xd4\x78\x5b\x47\xfc\x09\x39\x21\xd4\x71\x39\x36\x71\x85\xd1\xcc\x68\xf0\xc5\xfe\x06\x5f\xb4\x33\x39\x73\x81\xc0\xdd\xa7\x0d\xab\x28\x8a\xd3\x0d\x6d\x58\x45\x31\xe6\x41\x21\x3e\xe6\xc5\x05\x27\x04\xe9\xe9\xf8\xf8\x39\x3e\x9e\x94\x27\xc9\x99\x2b\xdc\x42\x50\x84\xdf\x56\xdb\xeb\xfc\xfc\x1c\x4e\x66\xa0\x35\x7f\x1a\x69\x51\x94\x26\xb8\x70\x39\x0d\x0a\x6f\xd9\x0e\x27\x20\x50\x41\x97\x4b\xe7\x91\xf4\x56\x3e\x26\x46\xa3\x23\x8a\xa1\xc9\x20\xb5\xde\x83\x22\xea\x47\xa7\xd6\x7b\x50\xf8\x09\xb5\x31\x14\xc5\x70\x79\x98\xda\xee\x40\xb2\x4d\xd2\xe9\xa4\x01\x9a\x6b\x19\x3b\x35\xc2\x83\xd4\x7a\x6f\xa4\x45\x91\x78\xaf\x77\x3a\x43\x80\xc4\x51\xac\xd3\x19\x02\x24\x67\xf3\x3b\x9d\x21\x40\xb1\x6b\xde\xc6\x63\x14\xb9\x59\x08\xa7\x83\x74\x3a\x60\xe1\x97\x0a\xfa\x34\x7c\x3d\x76\x8b\x1c\x56\x7b\xb8\x7d\xc3\x0f\x5d\xad\x83\x91\xf4\x9c\x74\x3a\x00\x89\x0b\x6b\x1b\xb5\x51\x04\x61\x61\xdb\xa8\x8d\xa2\xb8\xc7\xb4\x53\x41\x9f\x46\x84\xb6\x55\x5d\x61\x83\xc0\x19\xa5\xd3\xe5\x34\x18\xc4\x8d\x6e\xc3\x2a\x8a\x22\xfe\x77\x1b\x37\x51\x14\xfb\xce\x9d\x69\xb9\x52\x1f\x64\xde\x98\x7e\x5a\x4e\x7e\x9f\xe6\xa5\x8c\x06\xc1\xe1\x8b\x4e\x05\x32\xa8\xf3\xf4\x87\x16\x62\xa1\x0f\x5b\xd5\x75\x38\x08\x37\x2d\x0c\xb8\x28\xba\xfc\x68\xca\x55\x10\x9c\x4a\x6c\x03\x2e\x8a\xc9\x71\xc6\x4e\x85\x28\x48\x8d\x60\xa9\x10\x4d\x03\xd1\xa2\x6e\xa4\xab\x0b\x50\x04\xf2\x6f\xa3\x2b\x8a\x9e\x7e\xda\x36\x7b\x9c\xd0\x0f\x76\x02\x8c\xae\x28\x02\x3f\xa3\x4e\x57\x17\x60\xe4\xf7\x29\xdf\xc8\x29\x17\xc7\x50\xba\x94\x00\x83\x00\x25\x6d\x28\x45\x51\x84\x30\xee\xd4\x26\x09\x9a\x10\xfd\x9d\x0a\x64\xd0\xb5\xff\xda\x83\xba\xd3\x95\x06\x48\x1c\xb2\x3a\x35\x6c\xfe\x5f\x8c\x9d\xc9\xd5\xf4\x2c\xaf\x45\x53\xb9\x21\x18\xd3\x48\x4c\xfe\x5c\xc0\x4d\xfe\x21\xdc\x55\x7b\xfb\x1d\x3f\xdf\xe8\xac\x62\xb9\x6c\xc0\x58\x1d\xd2\x01\xe8\x14\xf4\x85\x7c\x8c\xc2\x60\xc7\x2f\xfa\xf4\x3d\x4c\xc4\x1b\x21\x12\xd9\x11\x85\xda\xfd\x52\xdc\xe6\x00\xfa\xf4\x3b\x37\x64\xd9\x3f\x3e\x7d\xe6\x4e\x19\x0b\x44\x77\xa2\xf4\x21\x80\xda\xb1\xcb\xba\x62\x17\x18\x6d\xfa\x47\x67\x78\x93\xe9\x87\x79\x25\x3b\xa2\x30\xa8\x78\x09\xd9\x11\x85\x46\x81\x7f\xc8\x8e\x28\x0c\xce\xaf\x8c\x6e\x90\x14\x88\xc3\x27\xea\x8f\xf4\xcf\x1f\x61\xd8\x97\x9d\xb0\xf8\xbd\x7b\x95\xaf\xe6\x82\xc0\x1d\xd9\xdf\x75\x3e\xba\x27\xe9\xb9\x48\x0d\x7f\x02\x3d\x7d\x5b\x8a\x70\x20\xaa\x8b\xc1\xf0\x27\x90\x5f\x27\x94\xea\x40\xab\x3e\x51\x17\x05\xa8\xc3\x8f\xe7\x76\xa2\xe1\xb3\x26\x81\x2d\xba\x22\x1c\x68\x03\x75\xd0\x5f\x97\x32\x4c\x1d\xa7\x9f\xc5\xeb\x55\x2f\x57\xf9\x3a\x5e\xfb\xf5\xda\x2f\xff\xe8\x5a\xe3\xa8\x29\xca\x94\xa2\x1b\x03\x01\x2a\xe9\x3e\x31\x8c\x75\x02\x9d\x13\x11\x63\x50\xa4\x2e\x74\x63\xfc\xc3\xbd\x96\x61\xea\x35\xf2\x5a\x4e\x40\x61\xc0\xb5\x13\x72\x02\x0a\x01\x8b\x7c\x0c\x2d\x7a\x20\x0a\x5f\xf0\xd0\xa2\x1f\x72\x70\x14\x9b\x9a\x4d\xd6\x28\x07\x4d\xc3\x26\xe4\x35\x92\x45\x86\x3e\xa1\x91\x69\x13\xd2\xf1\x09\x8d\xb4\xe4\x18\x0a\x41\xa0\x6b\x98\x0f\x77\x4e\x80\xda\x10\x49\xc3\x50\x06\x30\x60\x19\x88\xe1\xce\x09\xd0\x0f\xff\x68\x68\x10\x08\xf2\xe3\x42\x0a\x3d\x61\x40\xf7\x18\xf2\xda\x09\x8d\xe2\xaf\x18\x6e\x6d\x00\xbd\xe1\x74\x0f\x45\xd2\x30\xe0\x81\x2a\x1e\x06\x3c\x80\x31\xf0\x2b\xe5\xa2\x13\x6a\x38\x39\x86\x32\x80\x56\x87\x4d\xde\x9e\x94\x13\xb7\xe4\x86\x31\xc5\x81\xd9\xa8\x09\x2a\x63\x9d\x30\x5c\x4c\x43\x29\x35\x94\x52\xb8\x61\x92\xd8\x09\xe1\x66\x9b\xf4\x74\x42\xd5\x81\x97\x9e\x4e\xa8\xc1\xfa\x1a\x24\x2f\x0b\xa1\x54\x97\x19\x4e\x08\x0a\xa5\x63\x90\x9a\x26\x84\xf1\xa7\xa1\x49\x05\xb4\x60\xdd\x0f\xbf\x5a\x60\x90\xbb\x11\xc3\xad\x8d\x61\xf9\x39\x61\x59\x09\xde\x84\xce\x69\x81\x31\xdc\xed\x00\x86\xb6\xd8\xd0\x16\x03\x06\x85\x09\x31\xfc\x90\x81\x50\xa3\xca\xf9\x26\x54\xa8\xdb\x62\xf8\x3d\x02\x5d\x9f\x4b\xce\x37\xa1\x9d\xce\xaa\x51\x04\x60\x74\x97\x89\xbb\x1d\x40\x73\xbf\x60\x18\xb9\x04\x06\xb5\xe6\x31\xb4\xc5\x80\x0a\x65\x45\x0c\x03\x0b\x40\xd3\xcc\x1e\x6e\x80\x00\x4d\x3b\x65\x68\x9e\x01\x0d\x7e\xd4\x90\x2c\x4e\x68\x24\xe0\x86\xcc\x70\xc2\x70\x17\x46\x1a\xb8\xf8\x68\xe0\x10\x43\x12\xbc\x09\xed\x7b\xdb\x86\x0c\x86\xa7\x60\x70\x55\x68\xea\x85\x21\x03\xbe\xed\xd0\xd4\x03\x9a\x9b\xdf\xb2\xb9\x09\xc1\xf1\x9a\x21\x9b\x9b\xd0\xa8\xf3\x0f\xd9\xdc\x84\xda\xb0\x9f\xe4\x56\x13\x86\x7b\x81\xa1\xe8\x00\x9a\xc1\xb9\x30\x30\x0a\x84\xdb\x37\xa1\xb1\x04\x54\xd7\x44\x68\x2c\x01\xcd\xbd\x75\x69\xcd\x84\x01\xaf\x54\x04\x09\xb8\x42\xa7\x04\x31\x42\xaf\x18\x88\x03\xd1\x11\x24\xcd\x0a\xf1\x33\xcf\xfe\x54\xc5\xa1\xfd\x03\x0c\xce\x98\x8a\x50\x66\x00\x9d\xf3\xd2\x23\xcc\xaa\x00\x5a\xc5\x40\x09\x2d\x1b\xa0\x41\x2d\x1a\x61\xa2\x05\x10\x70\x2a\x47\xb8\x77\x00\x34\x92\x97\x43\x92\x30\xa1\x06\x22\x49\x92\x30\x61\x1c\x76\x42\xa3\x02\x18\x46\x99\x42\x7b\x00\x68\x41\x30\x32\x74\xe9\x80\xe6\x9e\x7d\x68\x0f\x00\x9d\x43\x6d\x23\xdc\x4e\x00\xfa\x40\xa3\x86\x31\x45\xa0\x69\x0f\xc8\xc9\x25\x54\x6a\x6e\x43\x4e\x2e\xa1\x51\xd6\x15\xb1\xed\xd7\xd6\xa2\xe7\x89\x6a\x7a\xa0\x0e\x57\x91\x02\x02\xa8\x13\xc9\x12\x6e\x27\x00\x71\xba\x18\xfc\x5c\xc3\x4a\x53\xbc\x83\xf0\x73\x05\xda\x41\x14\x33\xd4\xa8\x40\x0f\x0c\xcd\xf0\x43\x04\x86\x21\xa5\x30\x9c\x07\x8c\xf9\xfd\xd1\xb9\x97\x5a\x8b\xef\x3c\x0c\xd4\x01\xed\xfc\xfe\xe8\x14\xe2\x3a\x95\x6a\x93\xbd\x87\x6d\xcb\x3c\x0e\x79\xb4\x84\x4e\x7d\x78\x24\xf9\xa6\x42\x3f\x89\x4f\xca\x7d\x25\x74\x72\xb6\x7f\x62\x95\x26\x2b\x97\xc8\x4c\x4a\x15\x23\x10\x85\x2f\x38\xcd\x39\x02\xa2\x86\x7f\xbc\x6c\xa2\xec\x86\x8f\x3a\xf5\x47\x80\x9f\x11\x4f\x53\xb3\x89\xbc\x3d\xbe\xf3\x74\x27\x00\x68\xda\xd7\xa9\x0f\x01\x74\x37\xf8\x53\x8b\x1e\x08\x8d\x92\x74\xf9\x02\x8d\xea\xac\x48\xb5\x60\x4a\x8e\x8e\x5a\x4f\x6d\x75\xa0\x1b\x96\x4d\x95\x19\xd0\x39\x5e\x33\xa4\x8a\x12\x9a\x1b\xe9\xa9\x9a\x02\x06\x74\x45\x91\xe9\x1f\x29\xb9\x84\x9a\x34\x32\xed\x17\x0c\x0f\xee\x60\xa5\xca\x2c\xb5\x96\xf1\xe9\xd3\x4f\x21\x3d\xf4\x8f\xf7\x28\x7b\x94\x30\x0a\xe1\xcf\x34\x6e\x01\xd4\xee\x55\x06\x29\xf2\x0b\x52\x70\x7b\x23\xee\x40\x37\xaf\x2a\x55\x79\xb9\x25\xf5\x67\xa2\x5d\xe4\x40\x1b\xce\xbd\xbb\xf9\xc0\x68\xd3\x26\xe7\x9e\x6c\x6c\x4a\xff\x23\x55\x66\x40\xd3\xf9\x90\xa5\x49\x08\x53\x87\xd2\x2d\x39\xa0\x42\x26\x1f\xe9\x96\x1c\xd0\x4c\xc8\x92\x20\x49\x68\x54\x58\x47\x3e\xf6\xeb\xf1\x0d\x31\x85\x2e\x5f\xa0\x19\x11\xcd\xd7\x7e\xfd\xa0\x72\x2e\x70\xa4\xdb\xed\x40\x73\x7b\x6f\xaa\x34\x80\x80\xeb\x22\xe4\x36\x8a\x8f\xdb\x88\x37\x34\xdd\x4d\x03\xba\xb9\x63\xd3\xb0\x2c\xd0\xa0\xa7\x8b\xa9\x1f\x0e\xb4\x86\x1e\x99\xae\xe8\xe9\x99\x27\xa8\xcf\xa9\xa0\x07\x7a\xe0\xcf\x4c\x77\xc0\x80\x7e\xb2\x98\xa6\x82\x1e\xe8\x27\xaf\x63\x1a\xfe\x04\x1a\x3c\xb7\x31\x75\xa7\x67\xe3\xb4\x2e\xde\xf6\x34\x53\x67\xca\xe2\x6c\x27\xdc\x14\x03\x86\x3b\x4d\x53\xb3\x11\x18\xc6\x66\x24\x45\x12\x06\x87\x35\x85\x0c\x48\xc2\xa0\x28\x24\xa6\xba\x03\xa8\x5a\xb8\x53\xdf\x19\x08\x6d\xd7\xe9\x97\x36\xfd\xd2\x50\x9f\x52\x27\x09\x5d\x2b\x5e\xea\x24\xa1\x73\xb8\x7a\x4c\xdd\x69\xa0\x57\xc4\xb6\x3c\x49\x42\x18\xaa\x97\x14\x49\x18\xb0\xce\xc6\xd4\xdf\x9d\x9e\xb9\xe4\x80\xd4\x30\x40\x23\x1b\x3b\xa6\x9f\x28\xd0\x38\x12\x33\xa6\x1f\x1f\x10\x66\x19\x4c\x3f\xbe\xf9\x6d\x8a\xd9\xe4\xbd\x70\x55\xdd\x4d\x9b\x7e\x8f\xc0\xd0\x25\x9c\xcb\x59\x5d\x2c\x93\xe3\xef\x43\x12\x43\x36\x24\x21\xf5\xf2\xa6\xd1\x42\xa0\x73\x24\x78\x48\x90\x24\x34\x33\x0e\xa6\xce\x2d\xd0\xcc\xaa\x98\x6a\x2e\xa0\x1b\x53\x9c\xfa\xa8\xc0\x38\x11\x10\x53\x87\x14\x68\x1c\x59\x18\x53\x87\x14\x88\xc4\x45\x99\x2a\x33\xa0\x55\x07\xe7\x36\x1a\xd0\x29\x3d\x0b\xf9\x97\x84\x7e\x3a\x2b\x6e\xa3\x01\xfd\xf0\x05\x2a\x0d\x80\x56\x5c\x91\x4a\x03\x20\x8c\xa5\xcf\xdb\x7b\x41\x43\xf9\xad\x35\x0d\x60\x20\x4e\x5f\xa0\x6e\x2b\xd0\x4f\xac\xa4\xa9\xdb\x0a\xf4\xd3\x37\xaf\x69\x0b\x0c\xf7\x9d\xa7\x46\x2b\x10\x15\x11\x3e\x8d\x29\x4e\x13\x79\x50\x1a\x53\x3b\x16\xe8\x59\xfd\xa3\x03\x62\x37\xec\xf0\x0b\x56\x8c\x00\xc3\x98\xcf\xd2\x21\x05\xd2\x61\x2f\xf7\xa6\x80\xee\x36\xed\xd2\xf6\x04\x2a\xa7\xf4\xc6\xd2\xd0\x04\x86\x16\xea\xd2\x93\x05\x82\x14\xe7\x58\xd4\x66\x08\xa3\xb1\x13\x20\xbd\x93\x10\xd0\xcf\x87\xf4\x4e\xc2\x50\xe5\x2d\xe3\x93\x40\x98\x1d\xb3\xdc\xf3\x07\x9a\x41\x2c\x19\x9f\x84\x30\x3d\x61\x69\xda\x02\x23\xbd\xca\xfd\xa4\xf5\xed\x27\xfd\xe6\x7e\x19\x40\x04\xa2\x22\xb8\x96\x7b\x40\xc0\x30\x2a\xb7\x34\x80\x81\xa1\xfa\x5c\x7a\xc5\x40\x73\xcb\x65\x69\xed\x02\x95\x4a\xe6\x90\x04\x4a\xa8\x1c\x07\x11\xcb\x9d\x22\xa0\x86\x03\x52\x54\x02\x35\x88\x06\x2d\x73\x7b\x80\x06\x49\x74\x2c\xe5\x22\x10\x66\x00\x2d\x2d\x67\x60\x70\x82\x6d\x2c\x9d\x6e\x60\x18\x16\x59\xca\x45\xa0\xc3\x8c\x1b\x32\x3e\xc5\xc7\xf8\x44\x30\x72\x19\x1a\x04\x86\x26\xe8\xd2\xc3\x06\x06\xc4\x84\x21\x2f\x94\x10\x5a\x59\x4b\x0f\x1b\xe8\xee\x50\xac\xf0\x6d\xc3\x09\xaf\xab\xb9\x0c\xfa\x01\x15\x82\xa4\x58\x9a\xd9\x40\x85\xe1\x21\x96\x42\x10\xa8\x61\x57\xf5\xb0\x81\xa1\x8b\xb2\x94\x8b\x40\xc0\xa2\x1a\x4b\xb9\x08\xb4\xea\x92\xd3\x0f\x5f\x56\x6d\x60\x2d\xaf\x74\xf9\xa6\x6c\x5b\x0c\xc8\x44\x44\x20\xa0\x9d\x8a\xa5\x87\x0d\x44\x71\xe5\x4c\x3f\x05\xf8\xe3\xd2\xb5\xea\xf6\xcd\xf2\x64\x39\xdf\xb6\x1b\x33\x40\x55\x73\x2d\xed\x94\xc5\xce\x89\x26\xd5\x52\x16\x02\x75\x3a\xf7\xe6\x09\x01\xe3\x1b\x90\xd6\x0c\xd0\x4c\x61\x5d\x26\x05\x01\xe1\x7e\xf8\xd2\x74\x01\xda\x81\xd5\xb0\x8c\xb1\x2d\x8f\x73\xf7\x43\x56\x7e\x01\x63\x10\x88\x59\xca\xaf\x65\xc5\xb0\x57\x69\xeb\x03\xed\xfb\x60\x8c\x9e\x01\x71\xf8\x47\x37\xf8\x81\x7e\x38\x6c\x85\x15\x50\xbf\xdb\xbb\x4d\x02\x8c\xee\x02\xd0\xfc\x07\x06\x05\x48\xb1\x34\xff\x81\x46\x09\x74\x2c\xf7\xe9\x81\x6e\x7c\x73\x69\xfe\x03\x95\xa3\x84\x62\x69\x2c\x01\x4d\x21\x2a\xdb\x96\x50\x39\x55\x34\x96\x5b\xf7\xc0\xa0\x0c\x2e\x96\xc1\x39\x20\x4e\xe5\x84\x89\x88\x40\x35\x3f\x6e\x5b\x1d\xb1\x3d\xfc\x03\x9d\xb6\xdd\x5f\x01\xba\x41\xd6\xad\xb0\x02\xba\x7b\xeb\xdb\x9d\x13\x60\x70\x08\x5e\x6c\x9d\x6e\x20\x1a\xaa\x58\x4e\x2e\xa1\x0d\xa6\x70\xeb\x5d\x00\xdd\xc4\x96\xad\xe1\x05\x8c\x88\xff\x10\xa0\xde\x66\x33\x02\x4d\x79\xbd\xab\x7d\x84\xaa\xce\xfd\x24\xd9\xb6\x84\x18\x6c\x60\x6c\x25\x0b\xd0\x4c\x9f\xdb\xee\x28\x03\x0d\x4e\xf7\x90\x80\x4b\x18\x83\x80\xd8\x56\xfe\x00\xfd\x1b\x89\x5e\x0b\xd0\x39\x63\x21\xe4\xe4\x12\x2a\x24\x2a\xb1\xdd\x0c\xd9\xb2\x8f\xa3\x47\xb6\xa1\x41\x20\x5a\xf7\x8f\xcd\x26\x2a\x71\xaa\x4d\xf6\xbe\xeb\x86\xd1\x09\x8d\x30\xa0\x51\x25\x17\x5b\x0f\x68\x1b\x07\x44\x70\x6d\x53\x9c\x81\x5e\x59\x1f\xdb\xad\x09\xa0\x1b\xd6\xd8\x0a\x1b\x60\x1c\xa8\xf5\xad\x07\x04\x54\xeb\x62\xb6\x6e\x3e\x30\x86\xf3\xa5\x79\x05\x0c\xdd\xb0\x6d\x1a\x12\xd0\xd2\xd7\xa1\x18\x01\x9a\x39\x6d\x5b\x0f\x08\xe8\x66\x59\x6e\x2b\x25\x80\x70\xc7\x6f\xbb\x85\x00\xd4\xe1\xe4\xb8\xe5\x0b\xd4\x74\x26\x8c\x0f\x00\x63\x60\x06\x6d\xad\x2c\xa0\x57\xdf\xd0\xb6\x5f\x3f\x18\xdd\xb5\xe6\xe6\x00\x30\x86\x2f\x4d\x63\x09\x18\x7e\x4f\x32\x64\xc5\xc7\x90\x85\x6f\xb3\x15\x49\x5b\xce\xee\xe2\x1f\x7d\x43\x3f\x18\x23\xbc\xca\x31\x5e\x66\xa5\xf2\x86\xb4\xb2\x80\x30\xc2\x27\x1d\x96\xd0\xcd\xee\xdb\x8a\x11\xa0\x1b\xbb\xdb\x9a\x41\x40\xab\x3e\x51\x03\x07\xe8\x1c\xf8\x1a\x97\x09\x33\xc0\x48\xee\x75\xe9\xe6\x03\xe1\x1e\xe3\xe5\xb7\x09\x34\x0d\xaf\xcb\xc0\x39\x50\xdd\xb9\xbd\x74\xf3\x81\xd0\xe7\xba\x74\x9d\x80\x01\x13\x7a\x5c\xba\x4e\x40\x37\x10\x73\xa9\xfc\x81\x80\x74\x34\x64\xb5\x12\x1a\xfc\xcc\x71\x69\x0f\x00\xbd\x78\x2f\x93\x3e\x80\x66\xa4\xe4\xf2\xe3\x03\x06\xa7\xdf\xc5\xe5\xc7\x77\xa9\xfc\x79\x8f\x12\x4a\x09\xad\xa3\x2b\x2f\x03\xe7\x40\x14\xff\xe8\xd7\x71\x7d\xdc\x20\xcc\x44\xf8\x44\xf9\xf4\x71\x9d\x24\x6e\x12\x3a\x8c\x18\x71\x99\xd7\x00\x74\x8e\x56\x0e\x99\x95\x84\x36\xba\x4d\xdd\x26\x38\x93\x90\x39\x97\x8b\x1c\x18\xd0\x65\xc7\xa5\xfa\xbc\x3c\x64\xfa\xbb\xca\x99\x20\xb5\xff\xeb\xbd\x71\x31\x60\x98\x59\x79\xe9\x70\x00\xc3\x14\x7a\x39\x93\x84\x66\xd8\xff\x72\xdd\x03\x4d\x1f\xe4\x72\xeb\x0c\x08\x2b\x71\x64\x56\x12\x6a\x77\xe5\xe8\x70\x5c\xa6\x27\x1c\x5e\xe5\xed\x37\xde\x14\x9b\x62\xf2\x11\x09\x61\xfe\xc0\x65\x64\x1b\x68\x67\xb3\xc9\x3f\xde\x92\x66\xd1\x55\x75\xe5\xa5\x61\x8f\xb0\xba\x5c\xe4\x40\x85\xad\x34\x2e\xad\x78\xa0\x35\x4c\xd0\x4b\x93\x1d\xa8\x9c\xa9\x13\x97\x11\x64\xa0\x1d\xb8\xd3\xb7\x56\x3c\xd0\xdc\xf7\xb9\x8d\x78\x01\x83\x73\xf1\xe2\x36\xa8\x0c\x74\x0e\x32\x8a\x5b\x5b\x1f\x08\xe8\x7d\xe3\x36\x0f\x0d\x18\x27\x5b\xd1\xb7\x9f\x15\x90\x66\x8b\xdc\x7a\x04\x40\x68\xfd\xdd\x26\xf3\x42\x3e\xd4\xa0\xa5\x8e\x5b\x8f\x00\x68\x1c\x21\x1a\xb7\x79\xfc\x40\x73\x61\xde\x3a\x09\x40\x77\x31\xc9\x47\x24\xf4\x93\x6f\xe8\x36\x89\x01\xa8\x39\xbc\x6a\xda\x64\xc8\xc0\x7b\xd9\x89\x82\xfd\xc4\x32\x91\xb5\x48\xe8\x05\xfb\xe9\x56\x15\x03\xbd\x3b\x20\x25\x00\xd0\x20\x65\x8b\xdb\xad\x33\xa0\xd7\xf1\x1f\xbc\xe2\x5b\x69\x00\x8c\xce\x2a\xba\xd5\xe7\xc0\xe0\x74\xa0\xb8\xf5\x47\x80\xd0\x27\xbf\xcd\x6f\x03\x9a\x1b\xc3\xb7\x69\x0f\x40\x77\x33\xf7\x36\xa1\xe1\xfe\x12\x1a\xe8\xa3\xc9\x6c\xc0\x80\x0e\x2b\xe4\x39\x12\xba\x5b\x26\xb7\xa1\x1b\xa0\x7e\xe3\x75\x2f\x0f\x18\xd6\xe5\xdd\xca\x1f\x20\xe2\x6b\xf2\xd5\x90\xbc\x0c\xeb\x50\xdc\x86\x2c\x81\xca\x59\x2a\x71\x6b\x5b\x00\xcd\x04\xc7\x5b\xe5\x0f\x54\xf3\x3a\x6f\x03\x29\x40\x35\xfb\xf3\xd6\x1f\x01\x5a\x75\x91\xea\x8f\x00\xf1\x8d\xd1\xe8\x3d\xd0\xdc\x3b\xb8\x8d\xad\x00\xc3\x94\x13\xd9\x90\x84\xa1\x1b\x26\xf5\x91\xd0\xab\x5d\x0d\x9f\x18\x14\x24\x7b\x2f\xf7\x05\x81\x7e\xba\x22\x95\x8b\x40\x85\x5b\x36\x6e\x1d\x19\x60\x7c\xc3\xd6\x91\x01\xaa\x99\x5c\xb2\x21\x09\x15\x22\xec\x90\x9b\x48\x18\xe6\x88\xde\x5a\x0d\x40\x87\xec\x2d\xe4\x26\x12\x2a\x94\x70\x71\x9b\x15\x06\x0c\xa3\xab\xf7\x72\x56\x39\xb0\x5a\x1d\x7e\x5b\xa4\x00\x0c\xe8\xc5\xe3\x76\x0b\xe1\x76\x0b\x01\xef\xe0\xd6\x44\x00\x06\x34\x5d\x71\x2b\x2a\x81\xda\xfd\x36\x15\x95\x40\x0b\xfb\xa5\xd5\x00\x84\x99\x82\x52\x1f\x09\x51\x4e\xaf\xf2\x75\x90\x65\xa0\xab\x79\xeb\xc8\xdc\x92\x64\xe0\x56\xdc\x6e\x47\xdc\x12\x61\xa3\xc3\x6f\x83\x3a\xc0\xb0\xaa\xe7\x56\xec\x02\x6d\x14\xfb\xe5\x7c\xb9\x85\xa9\x64\xd1\xb6\x00\xc2\x7a\x8a\x5b\xe1\x7c\x1b\xae\x71\xdd\xeb\xee\x00\xfd\x54\x2e\x2a\xaf\x81\x5e\x9d\x68\x03\x31\x40\xb8\xc1\x2f\xf5\x91\xd0\x95\xc4\xb7\x1e\x10\x10\x90\x2f\x86\x6c\x48\x42\x53\x57\xde\x4a\x75\x20\x4e\x87\xed\xe6\xa4\x04\x49\xfa\xce\xb7\x4e\x11\xd0\x67\x78\x95\x9d\x78\x88\x16\x62\xf3\xdc\x1a\x38\xc0\x28\x4e\x8e\x11\x64\xa0\x7d\x8b\x49\xa7\x08\x18\x27\x1a\xf5\x76\x73\x12\x68\xa6\x71\xcb\x60\x24\x84\x9b\x93\x8f\xbb\x87\x40\xe8\x6a\x3e\x8a\x70\xa0\xc3\x5f\x19\x8f\xe9\x64\x8f\xe9\x64\xac\x2f\x29\x8a\x84\x96\xbc\xed\xc7\xe2\x0b\x20\x74\x48\x1f\xad\x2c\x20\x34\x54\x25\x32\x12\x06\x07\x43\x87\xac\x45\xc2\x80\x48\x2d\x64\x2d\x12\xc2\x3d\x37\xc9\x87\x84\x6e\x04\xf9\x51\x88\x02\xe1\x66\x9d\x4c\x43\x42\xb7\x3a\xe2\x31\xce\xf3\x78\x58\x93\xf7\x32\xa8\x03\x34\x37\xe5\x65\x07\x12\xe2\x44\x28\xc8\x0e\x24\x0c\xce\x16\x89\xc7\x30\x36\xd0\xbf\xf9\x52\x62\x02\x1d\x46\xc4\x78\x94\x85\x40\x33\xa8\xfc\x18\xec\x06\x46\x61\x7d\x3d\x7a\x3d\xc0\x80\xe8\x2a\x1e\xbd\x1e\x60\xe8\x96\x3c\x26\xf3\x02\x1d\x96\xde\x90\x0a\x48\x18\x05\x85\xfd\x28\x44\x81\x3e\x9c\x1c\x23\x38\x40\xd7\x35\x7f\x14\x8f\xcf\x57\x14\xc2\xb0\x0d\xea\x00\x95\x93\xf8\xe2\x31\x40\x0d\x54\x8b\xfa\x1f\xe3\x3c\xc0\x80\x51\x2c\x1e\x05\x1f\xd0\xa7\x8b\xc9\x6d\x25\xa0\x72\xb8\x4c\x3c\xe6\xd1\x02\x01\x8f\x44\x3c\xee\x21\x01\xbd\x7b\x7b\x65\x21\x30\x86\xaf\x43\x59\x08\x0c\x23\x97\x72\x08\x09\xbd\xfd\x07\x8a\x8f\x78\x34\x34\x81\xb0\x14\xf4\x99\x8e\x77\x92\xda\xc1\xf7\x24\x11\x91\xd0\xcc\xf2\x7e\x8d\x03\xbe\x16\xf4\x91\x48\x28\x6d\x8b\x10\x56\xcd\xbf\x6a\x54\xa0\xba\xe3\xf7\x6a\xab\xbf\xa6\xc2\xf0\x6a\x5e\xb5\xe0\xab\x0b\x7c\xda\xd4\x6c\x62\x67\x9f\x2f\xe5\xf5\x35\xbf\xe6\x6c\xf3\x51\xbf\xbe\x2d\x60\x7c\xf7\xf2\x6d\x01\x15\x12\xba\x90\x44\x45\x08\x63\x3e\x92\xa8\x08\xdd\x52\xf4\x57\xfd\xf6\x5a\x25\x37\xbd\xca\x27\x86\x27\xc1\x78\x55\xd8\xe4\xa1\x59\x83\xa6\x69\x13\x27\x48\xda\x7b\xf9\x03\x80\x66\x34\x5a\x4a\x14\xa1\x71\xa0\x4b\xbc\xe6\xdd\x01\x5d\x17\xf8\xf5\xcd\x03\x15\x9a\x9b\x90\x25\x45\x68\x89\xf5\x26\x25\x8a\x50\x03\x9d\xf4\xea\x15\x03\xcd\x50\xc6\xeb\x46\x3a\xd0\x2d\xd8\x92\x12\x45\xa8\xf0\x2f\xc5\x6b\x3e\x33\xd0\x65\x78\x78\x8d\xca\x01\xe3\x7b\xdb\xaa\x3c\x20\x8d\x6b\xbd\x2a\x33\xa0\xe9\x60\xc9\x7f\x22\x54\x73\x7d\x5f\x35\x17\x30\x4e\x32\x47\x24\x3b\x11\x86\x65\x11\xaf\x81\x3a\xa0\x07\x1e\x90\xcc\x26\xc2\x30\x32\xf4\x5a\x9c\x03\x8c\x86\x76\x7e\xdd\x63\x04\x9a\xd6\xdf\xab\xa3\x0c\x74\x98\x95\xe2\x35\x3f\x0e\xe8\xd5\x61\xbb\xd1\xf0\x9a\x1f\x87\x53\x24\x25\x8a\x30\x86\x2b\x5a\x35\x25\x25\x0a\x47\xb5\x84\x94\x28\x42\x57\x73\xc9\x7f\x22\x84\xce\xad\xfc\x27\xc2\x28\x0e\xdb\x94\x39\x20\x38\x3d\x38\x5e\x43\x70\x40\x35\x17\xf3\x35\x15\x06\x18\xed\x67\x2c\xe5\x81\xd7\x22\x8c\x32\x0e\x9a\x8a\x4d\xf0\x6a\x96\x49\x53\xb5\xa9\xb2\x26\xfc\x63\xb7\x89\x32\xdc\xc3\xa6\x61\x13\x85\xf8\xc5\xa6\x69\x93\x29\x05\xde\xeb\xb2\x89\x4e\xfc\xfc\xb7\x3c\x8a\x9d\xd0\x1f\xf9\x09\xe7\x94\xff\x44\xa8\x1c\x37\x92\x07\xfe\x88\xd0\x28\x2d\x4a\x29\x51\x84\x41\xa1\x74\x1e\x44\xe2\x84\x06\x93\xe7\xef\x0d\xd0\x54\xc9\x7e\x38\xb9\x7d\xb5\xab\x08\x18\x76\xad\xf2\xa8\xfe\x11\x05\x44\xe1\x6f\x1e\xc4\x07\x84\x0a\x21\x67\x1e\xcd\x7b\x79\x20\x95\xbd\x6f\xde\x0b\x6d\xc3\xb6\x76\x1e\xd0\x1b\x08\x8d\xc4\x83\x3c\xba\x57\x91\x6b\x47\xf8\x21\x25\x28\x11\x3a\x47\x4b\xe4\xd1\xfd\x63\x97\x08\x84\x01\xa1\x6d\x84\x46\x25\x4e\x1e\xc3\x7e\x59\x43\x11\x74\x35\x9c\x42\x08\x4a\x4e\xa7\x10\x99\x23\x74\x2a\x09\xf3\x08\x7b\x1f\x94\x29\x4d\xde\x50\x38\xab\xe1\xfe\x0a\x9d\x08\x67\x22\x50\xc5\x07\x93\x13\x76\x82\x5c\x3b\x94\x46\x1e\x61\x27\xc8\xc1\x21\x49\x2f\x0f\xc2\xfe\xc2\x68\xbe\xed\xf4\x3d\xc2\x43\x4a\xe1\x6f\x1e\xe9\x4c\x24\x27\xa5\xfd\x1c\x8e\x3c\xd2\x4e\x98\x37\x5c\x6c\x72\xe5\x50\x82\x58\x3b\xf3\x45\xec\x4f\x68\xa4\xc3\xe6\x91\x2e\x26\x12\x22\xa8\xfe\xcb\x63\x7a\x7b\x48\xa2\x61\xce\xc9\x63\xfa\x47\xe8\x9f\x87\x2b\x67\x3a\x46\xa2\x7a\x14\x04\xa6\x94\x28\x42\xe5\xc0\xd8\x3c\x96\x53\x88\x61\xcf\x36\x49\x1e\xcb\x01\x91\x2e\x44\xd1\x75\x1e\xcb\xae\x2e\x7d\x10\x3a\xb1\x7c\x8f\x8b\x83\x57\x7c\x1d\xcb\xf9\x5a\x1c\xfe\x31\xe8\xd7\xf6\x89\x98\xff\x1c\x5d\x92\xc7\xf6\x89\x1c\x2b\x5b\xfd\xe3\x76\x56\x31\xff\xd9\x5b\xcf\x63\x7b\x7b\x52\x0c\x7b\xfb\x3b\x40\x9d\xc7\xe5\x9b\xff\xc1\x38\x27\xf7\xbd\xbc\x2f\x85\xce\xe9\xe0\x2e\xa7\xf3\x22\xe3\xc0\xc5\x70\xf9\xe6\xe1\xb8\x43\x2e\xe6\x71\xfb\x74\x38\x49\xb1\xf1\xf2\xb8\x9d\xe1\x9b\x9d\xfd\x4a\x1f\x6f\xff\x78\x43\xc0\xa5\x64\x79\x1c\x2f\xc4\xce\xe9\xfa\x78\xec\xc4\x23\x53\x19\xab\xfb\x71\x86\x1f\xb6\xf1\xfd\xea\x5e\xff\x08\xd5\x0a\x75\xe7\x79\xbc\xfe\x11\xfb\x1a\xb6\x88\x3c\x5e\xbf\xa7\x17\x32\x9c\xc2\x92\x79\x7d\xcd\x9c\x71\x0e\x1f\x63\x16\x82\x32\xc2\x60\x0f\x28\x8b\xb2\xac\x48\xef\xf4\x35\x0d\x9b\x60\xc2\xfb\x89\xdd\x2c\x44\x60\x84\x80\xcb\x29\x0b\x11\x18\xa1\x61\xbd\x65\xc1\x7c\x17\xa2\xf0\xb9\x16\xa5\x14\x30\x0a\x02\x55\xda\x16\xa1\xfa\x05\x17\x2c\x7a\xa1\xc2\xac\x94\x05\x2b\x5c\xe8\x84\x9e\xb3\x90\x22\x28\x74\xbf\x81\x72\xfa\xc7\x53\x97\x8e\xdb\x63\x85\x0b\xd1\x59\x6b\xa5\xfa\xc7\x0a\xb3\x37\xeb\xb6\x60\x5f\x0b\x9d\x32\xdc\x2c\xcd\x7b\x35\x4f\x49\xe1\x89\xcd\xab\x9a\xb9\x17\xbf\x95\x23\x09\x4b\x16\xc8\x96\x38\x51\x23\x0b\x26\x95\x50\x29\x22\xce\xd2\x9d\xd5\x4e\xe5\xf7\xc9\x13\x87\x4d\x64\x68\x90\x96\x9c\x72\xa9\x08\x0d\xf3\x3d\xcb\xb0\x13\x9c\x64\xc5\xa6\x45\x16\xc5\x1b\x30\x8a\x03\x22\x8a\x20\x54\xaa\x69\xb3\x84\x13\xcd\xb1\xd6\xe4\x46\x67\x09\x87\x8d\x99\xcc\xa9\xfd\x59\xc2\xb9\x0f\xfd\x4a\xff\xe8\x7c\x79\xe8\xa8\xb7\x4f\x9f\xc8\x91\x3b\xf0\x0b\x66\x49\x6f\xff\x83\x0a\x69\x5f\xca\xb8\x22\x34\xc8\xab\x53\xc6\x15\xa1\x72\x6e\x59\x96\xe9\x55\x13\x92\x9e\xca\x4b\xc3\xe8\x15\xda\x70\x31\x29\x92\x80\x3e\x82\xab\x96\x9d\xe0\xc0\x6a\x42\xcf\x59\x96\x6b\x02\x2e\x3a\xe2\x80\x59\x96\xfd\xa2\x6a\x0c\x46\x8c\x2c\xdb\xab\x48\xe7\xc0\xc0\xc9\xb2\x9d\x7b\x42\x06\x14\xa9\x67\x51\x8c\x00\x03\x3f\x3c\xcb\xb6\x13\x5b\x9a\x40\x26\x67\xbb\x00\xc8\xf0\x98\xcd\x3f\x3a\x46\x82\x01\x9c\x57\x9c\xe5\xb2\xab\x14\x4a\x57\xe7\xeb\xf2\x4b\xbb\x08\xea\xa0\x8a\xcb\xe5\xdb\x26\x9f\x79\xda\xd5\xcb\x27\x52\x85\xc0\x0e\x7c\x96\xdb\x01\x51\x4c\xd0\x5c\xab\xb7\x4f\xbc\xa5\x68\xa4\x5f\x8f\x63\x7c\x8c\xc4\xf1\x44\x45\x87\x8c\x2b\xf8\xa8\x29\xbd\x8a\x30\x54\xc5\xe5\xf1\xf6\x66\x85\x21\x4d\xca\xe3\x4c\x3c\xec\x2a\x1c\x74\xf5\xb1\x5f\x90\xb0\x54\x27\xfa\xf5\x89\xb0\xbd\x4f\x5f\x9a\x62\xa8\x58\x85\xd0\x79\x43\xaf\xf7\x7a\xa9\xcd\x77\x31\xbd\xae\x68\x3c\xff\xc3\x7e\xbd\x2e\x00\x0a\x13\x20\x3d\x4e\xa9\x5a\x84\x01\xad\x62\x9e\x4a\x26\xa0\xce\x6a\x53\xd8\xc4\xe1\x0c\xdf\x55\x69\x13\x82\x8f\x85\x79\x2a\x86\x4e\x0f\x32\xfa\xd9\x9b\x79\x6a\x78\x01\x9d\x5d\xbe\x3c\x89\x0d\x0b\x9d\x73\x00\xf3\x64\xaf\x46\xe8\x15\x31\x24\xc7\x8b\x10\x9a\x67\x67\xf1\x5e\xc5\x0c\xd9\xa0\xe9\xb1\x09\x3b\xe5\xb4\xe9\xb5\x89\x88\x3b\x16\xc8\x49\xac\x41\xa8\x70\x2c\xa4\x7c\x31\x42\x50\x53\x99\xa7\x22\x0d\x68\x24\xa7\xa6\x14\x32\x42\x23\x43\x36\x65\x82\x11\x82\x7d\xc5\x94\x09\x46\x68\xec\x3b\xe7\x59\x9d\xaf\x8a\xd8\x66\x99\x9c\xca\xc2\xd3\xad\x59\x74\x9a\x1c\x2f\x42\x2f\x95\x99\x68\xde\x1e\x86\x08\xbc\xf5\x94\xe3\x45\x18\x24\x68\xa7\xbc\x2c\x42\xfc\x97\x43\x12\xf3\x64\x5b\x48\x18\xed\xe0\x51\x0a\x41\x20\x48\x96\xcc\x73\x38\x9d\x83\x0a\x8e\xe9\x55\x4e\xa7\x66\x9f\x7d\x54\x08\x02\x15\xcf\x2c\x25\x64\xc9\x7f\x84\x2c\x4c\x7a\x78\xfb\xe0\xab\x43\xa3\x9e\x8a\xca\xd3\xb3\xfb\x5c\x1f\xda\x78\x40\x27\x4e\x93\xa7\x16\x17\x30\x4e\x54\xcb\x99\x2e\x99\x34\x5a\xe8\x55\xfe\x31\xcd\xaa\xa0\x13\xd3\x4e\x78\xea\x07\x0b\xfe\x9c\x4e\x14\x27\x75\x94\xea\x55\xbe\x79\xfc\xca\xea\x6b\x56\x08\x9e\x1e\x87\x6c\xef\xa7\xc3\x66\x6f\x4a\x55\x7c\x6a\x84\x9d\x5f\x0d\x17\x8b\x61\x39\xc6\x05\xd7\x33\xdf\xd3\xa9\x5d\x06\xb4\xa3\x31\x5f\xcb\x55\x44\x58\xb6\x78\xfb\xe5\x13\x65\xaf\xc3\x30\x3f\x97\x03\xf2\x4c\x41\xa4\xa7\x74\x32\x42\x27\x6b\x30\x4f\xad\x37\x20\x12\xc1\x75\x2a\x76\x81\x46\xf2\x72\x9e\xdb\x25\xb3\xcd\x8c\xf4\x8f\xce\xfd\xd6\x6b\x61\x40\xdb\xae\x42\xee\x79\xf8\x3a\xb6\x73\xbf\x4d\x73\xf3\x2a\x7b\x4f\x4e\x6d\xf8\xa5\x28\xaf\x81\xfe\xaf\xc9\xae\x72\xc0\x12\xf4\x2a\x79\xde\x76\xf5\x26\xdd\xd0\x7b\xdd\xbe\x21\x3c\xd9\xe9\x77\x7e\xbb\x30\x6f\x39\x4d\xe9\xfd\xed\x44\xdf\x70\xf3\xa3\xe9\xa5\xb9\x11\x1a\xf9\x38\x79\x6a\xfd\x01\x95\xb2\xae\x3c\xb5\xfe\xce\xcf\xfa\xb3\x13\xf6\x8b\x5c\x95\xe9\xbd\x34\x08\x81\xd1\x7c\x69\x8a\x70\xa0\xa7\x5d\x7d\x7c\xb5\x3f\xa8\x70\x50\xe7\xa9\x54\x07\x86\xca\xff\xd4\x46\x04\xc6\xe1\x32\xd1\xfa\x03\x6a\xd8\x2f\x65\x2c\x10\x03\x9d\x54\xf5\x77\x81\xc1\xde\x7a\x56\x6d\x44\xa0\x11\x37\xcd\xaa\x0b\x0c\x74\x8d\xcb\xca\x5e\x9e\x50\x15\xa8\x55\x79\x0d\x34\xce\x10\xca\xaa\x0b\x0c\x34\x3d\xd9\xaa\x27\x5b\xf5\x64\x91\x9e\x95\xca\x5c\x61\xc0\xbd\x9e\x12\xe0\x08\x8d\x03\x98\xb3\x6a\xd7\x01\x1d\x06\xed\xac\xd5\xde\x57\x23\x8f\x74\xa2\xda\x2f\x72\xdc\x27\xeb\xab\x2a\x2a\x81\xe1\x1b\x92\x4c\x47\x68\xfa\x82\xb5\xda\x09\xca\x70\xa9\xd5\xcc\xaa\xa8\x04\xba\xca\xbf\x2a\x2a\x81\x4e\xa8\x3e\xab\x72\xb1\x7a\x66\xdc\x61\x93\x7f\x24\x65\x0e\xbe\xbd\xac\x7a\xc5\x40\x7c\x93\xd3\x1c\x10\xc5\xba\x8d\x0f\xb9\x76\x07\xd4\x5d\x13\xf4\xab\xfb\x3a\xc8\x4f\x21\x11\x3a\xab\x9e\x2c\xd0\xd4\xbb\x55\x4f\xb6\x7a\x7c\xc6\x69\x93\x53\x18\x64\x8b\xb0\xe4\xa4\xb6\x11\xda\xf0\xf6\x1a\x71\xc0\xd0\x53\x91\xda\x46\xe8\x9c\x4f\x98\xf2\xd8\x08\x15\x1a\xca\x94\xb4\x46\xe8\x84\xca\xb2\x4e\xff\xc8\xa9\x6b\xc5\xc5\xa4\x13\x09\x04\x65\xde\x29\x69\x8d\xd0\x21\x45\xca\xaa\xc7\x08\xf4\x6f\x72\x96\xbd\xf7\x88\x22\xff\xe8\xe7\x0e\xb4\xc0\xfc\xaf\x97\xf3\x45\x6a\x08\x54\x1a\x59\x2f\xdf\xf6\x0f\xaa\xb2\x50\x86\x1a\xa1\x75\x87\x7d\xf9\x44\x2a\xf8\x21\x1f\x4a\x19\x6a\x84\x06\x97\x6f\xd6\xdb\x89\xfe\x41\x4d\x5f\xed\xed\x4c\xdc\x24\x02\xf9\x0d\xdd\xfe\xf1\x86\x1c\x1d\x47\x48\x26\x18\xa1\x13\x7a\xce\xfa\x38\xa0\xc7\xcc\x26\x6e\xff\xb8\x00\x60\xe9\x4d\x1c\xa1\xfa\xba\xbe\x5e\x52\x32\xfd\xac\xfc\xb6\x81\x46\xe2\x54\xd6\xd7\x59\x7d\x35\x2e\xb9\x97\xb6\x18\xd0\x7f\x16\xc8\x9f\xaa\x58\x86\x19\x61\x90\xce\x9a\x32\xcc\x08\x1d\x2a\xb1\x94\x3b\x46\x08\x8a\x99\xb2\xf9\xe9\x03\x8d\x0d\x9f\x6c\x5a\x5c\x40\x83\x1f\x27\x9b\x16\x17\xd0\xa0\xd4\xcd\xa6\xc5\x05\x44\xff\x9a\x1e\x9b\x38\xa8\x0f\x1f\xa2\xe9\xe5\x01\x01\x93\x70\xca\xd1\x22\x34\xad\xa4\xe6\xa7\x0f\x04\x05\x90\x29\x63\x8a\x30\x28\x22\xce\x66\x5c\x0b\x68\x9c\x1c\x9f\xcd\x6f\x13\x18\xec\xa2\xa4\x04\x25\xc2\x60\xc7\x2f\xa5\x1e\x11\x2a\x87\x66\x65\x1b\x3e\x91\xea\x50\x2a\x4b\xb2\x0d\x27\xc7\x4a\xaf\xe6\x55\xc3\xa6\xf1\xeb\x04\x46\x58\xd3\xa5\x6b\xe6\xae\xb2\xfc\xda\x70\x40\x03\xb2\xdc\x61\xd3\x6b\x13\xc7\xbe\x38\x6c\xa2\xe4\x42\x3b\x10\x82\x4d\xff\x0d\x18\x5a\xce\x8d\x5a\x4d\xa1\xb3\x03\x9f\x6d\xfa\x86\x26\x8c\x99\x2c\xd2\xa6\x05\x02\xb4\x70\xa2\x75\xc3\x80\x5e\xbd\xca\x30\x10\xd0\xc8\x24\x4d\xd9\x35\x84\xe8\x04\x29\x9a\x3a\x1c\x18\xd3\x65\xa2\xc2\x06\x3a\xc7\xea\x67\x53\x61\x03\x61\x78\x4a\x76\x0d\x21\xd2\x05\xa0\xeb\xd4\x4c\x8e\xe7\x43\x6c\xba\x4e\x40\x0b\x64\x6c\x33\x5c\x03\x04\x49\xfb\x29\x2d\x87\xd0\x21\x78\xcb\xe6\x77\x0e\x8c\xe2\x9a\xb8\xec\x17\x47\x18\x77\xfb\xa5\xcf\x05\xf4\xb0\x5f\x9a\x08\x40\xe7\x38\x9a\x94\x96\x43\xe8\x2a\xd9\xf6\x38\xa0\x07\xfb\xc9\xd7\xf1\xb8\x7c\xa9\xd5\x84\x99\x32\x9b\x1f\x22\xd0\x35\x67\x9b\xee\x0e\xd0\x94\xb1\xf2\x66\x08\x8d\x2c\x83\xec\xd0\x28\x09\x0d\x96\x94\xec\x24\xa6\x08\xfd\xf8\x9a\xc2\x26\x5c\xba\xc3\xa6\xb4\x89\xba\x4f\xbc\x03\xd9\x35\x84\x71\x76\x9f\xf8\xd8\x44\x14\x93\xae\x76\xfd\x91\x6e\xb5\xf6\x69\x93\x9d\x38\x39\xaf\x81\x05\x20\xbb\x86\x10\x27\x03\x92\x24\x43\xe8\x1d\x77\xa7\x1b\x7a\x06\x06\x4c\xc2\xd9\x55\xd8\x40\xb8\x7c\xbb\xdf\x23\x10\xa4\x5a\x65\x37\xce\x0c\x0c\x4e\x2c\xcf\xde\xec\x57\xf3\x44\x1f\x9e\x68\xe8\x19\xe8\xec\xef\x66\xf7\x43\xee\x9f\x92\x65\xd8\x86\x6b\x80\x4a\xce\x51\xca\x75\x21\x0c\x0e\x93\x4f\x89\x2d\x84\xe0\x54\xbe\xec\x7e\xc8\x40\x1f\xbe\xa1\xe1\xac\x72\x22\xe2\x4c\xfa\x35\xfc\x23\x24\x3f\x5a\x6c\xf2\x53\x08\xcd\xa8\x5e\x1f\x8e\x91\x83\xc7\xa9\x53\xcb\x6e\x6c\x18\x68\xd3\x31\x1a\xf5\x05\x9a\x01\x48\x59\x1d\x84\xd1\xf8\x90\x65\x75\x10\x2a\xf4\x3d\xd9\xfd\xb6\x81\xa1\x18\xea\x86\x78\x81\x4e\x4e\x49\x76\x3d\x02\x20\x8a\x2f\xcd\x48\x09\x10\x9c\xc2\x9a\x5d\x55\x0c\xf4\x5a\x6c\x72\x40\xaa\x62\x76\x3b\xba\xe6\x3f\xd0\xab\xf3\x45\xf9\xa7\x10\x1c\x95\x90\xdd\x78\x0a\x30\x02\x65\xd6\xd5\xce\xdd\x53\xc6\xed\x97\x9f\x28\x30\x48\xaa\x4e\x99\x18\x84\xa6\x4b\xd8\x8d\xbb\x02\xdd\x68\x74\xbf\xec\x04\x7c\xd6\x8a\x21\x99\x18\x84\x71\x12\x63\xeb\xaa\x62\xa0\x35\x7b\x7f\x7b\x7b\xf8\xac\x39\x44\x21\xbb\x71\xd7\x6e\x2e\x67\xd8\xe4\xbd\x3e\xcb\x9b\xae\xaa\xc3\xbb\x3a\x1c\xab\xb4\x1b\x29\x01\xba\x2a\xb3\xbf\xbe\xc7\x57\xdd\xc1\x13\x8d\x81\x00\x6d\xb4\xf3\x6f\x55\xdc\x0d\x91\x00\x83\x93\x4d\xb2\xbf\x8e\x97\xf4\x70\x0e\x67\xc8\xa1\x61\x0e\x8c\x83\x8f\x67\x18\xa9\x05\x1a\xdc\x20\x39\x0c\x91\x0c\x39\xdb\x58\x91\x43\xed\x3c\x64\xb9\x44\xbc\x8d\xe2\x1f\xad\xcb\xc3\x5e\x1c\x4a\x16\xa0\x73\x68\x72\x0e\xc5\x08\xd0\x75\x8a\x86\xdf\x39\xd0\x0c\x91\x0c\xbf\x60\xa0\x51\xcb\x92\x52\x30\x08\x91\x18\x3b\xc3\xb8\x29\x10\x6c\x02\xe6\x30\x6e\x3a\x3c\x41\x84\xe9\x1c\xc6\x4d\x81\x28\xdf\x1f\xb7\x4d\x72\x3b\xd2\x09\x0a\xe7\x84\xd6\xbf\x26\x9f\x48\x5e\xc2\xf9\x35\xd9\xaf\xae\xb6\x61\x8c\xc3\x31\x0e\x09\xba\x79\xa2\x41\x52\x20\x38\xac\x29\x87\x36\xf1\x30\xb0\x89\xcc\x18\xee\xb5\x00\xcd\x7d\x08\x09\x11\x84\xa1\x07\x34\x8c\x4f\x02\x55\x25\x3b\x96\x63\x5c\x26\xb0\xf1\x1e\xfd\xea\x80\x60\xd3\x34\xc7\x65\xbf\x2e\xd3\x0d\xf9\xa3\x9a\x0b\x68\xa4\x0e\xe5\xd0\x47\x05\x62\xda\xaf\xdb\x7b\x41\xb2\xaa\x4e\x92\xd7\x40\x18\xe9\xbd\xf4\x3e\x81\x4a\x0e\x60\xca\x45\x20\x04\xb4\x40\x39\x0c\xfa\x01\x01\x23\x46\x4a\x16\x20\xf4\x40\xa0\x86\x9b\xa6\x40\x28\x50\xc3\x85\x09\x74\x4e\x1a\xca\xd0\x6c\x04\xba\x81\x60\xf9\x03\x84\x71\xe0\xdc\x86\x9a\x0b\x18\x9c\x9c\x93\xe1\x92\x03\x3a\x25\x97\x19\xc6\xdb\x80\x66\x20\x38\x5c\x5f\x40\xa5\xae\x2f\xc3\x95\x03\x74\x38\x12\x32\xb4\xeb\x80\x70\x91\x87\x6b\x02\x18\xf0\xda\xa5\xb5\xf9\x42\xc0\x7b\x98\xa1\xec\x07\xfa\xc0\x6a\x08\x4a\x8b\x84\x48\xb4\x4d\x18\x59\x02\x86\x71\x9e\x30\xb2\x04\x8c\x6f\x26\xd2\xc9\x81\xcd\xad\x11\x33\x0a\xc3\x48\xc0\xa0\x82\x23\xc3\x38\x4f\x7c\x47\x4d\xfd\x5e\x5a\xe8\x3a\x85\xae\x93\x73\x6f\x88\xc5\x12\xfb\x93\x28\x55\x28\x76\x81\x56\xd9\x42\x08\x8d\xa5\xf0\x84\x3f\x7b\xff\xf8\xd2\x1e\xcb\x83\x6d\x72\x56\xb1\x66\x1a\xd6\xb2\xa5\xec\xc2\xa0\xde\x30\x43\x4f\x03\x08\xd8\xb6\x32\xf4\x1b\x80\xd0\x17\x0c\xe5\x57\x58\xd7\xe7\xeb\x70\xe5\x00\xbd\x11\x17\x4b\xe3\x03\x40\x27\xb5\x3f\xd3\x20\x29\xd0\x38\x79\x30\x93\xa4\x57\x61\x18\x25\x4f\x8d\x92\xf4\x50\x24\xd4\x41\x6a\xfe\x03\x55\x1b\x31\xf5\xe9\x81\xa1\x77\x91\x14\xcb\x09\x0d\x9e\xb6\x4c\x1d\x78\x20\x74\xb0\xd2\x3d\x6c\x60\xb8\x4c\x92\x54\x1a\x21\xa0\x11\xc8\x24\xed\x5d\xe8\xda\x03\xa9\x6b\x0e\x84\x2e\x70\x6a\x6e\x00\x5d\xb7\x35\x5d\x85\x40\x55\x3b\xa7\x16\x48\x7e\x7c\xd6\x74\x42\x29\x07\x8c\xca\x62\xb2\xea\x5e\x08\xf8\x9b\x32\xf5\x41\x80\xf8\xfe\x38\xec\xc4\xe0\xdc\x69\xa4\x5c\x6a\xcd\x00\xa3\xd9\x7b\x57\x74\x7e\xb5\xc0\xcc\x84\x6e\x09\xd0\xa1\x89\xcf\x74\xa7\x09\xe8\x1d\xa3\x24\x8d\xa8\x02\xad\xa0\x51\xd3\x58\x03\x10\xd5\x97\x66\xf8\x34\xa9\x18\x3e\x30\x67\x2d\xea\x17\x86\x6e\x5c\xfa\x29\x00\x2d\x10\xa2\xe9\xb6\x12\x50\x9b\xef\xd1\xb8\x2b\xd0\x4e\x56\xa1\x75\xfe\x42\x7c\xfd\x32\xc8\x0a\xb4\xd3\x31\x1a\xa4\x00\xba\x6e\x9c\x75\xfe\x42\x1c\xc7\xdf\x14\x1f\x99\xc6\x30\x80\x6a\xa2\x45\x1a\x8a\x00\x82\x6c\xd9\x4c\xb7\xa5\x81\xea\xe7\x6a\x81\xbf\x30\xba\x7f\xd4\x91\xc9\xef\xa4\x21\x9b\x5c\xf0\xd0\x04\xaa\x05\x53\xa9\x9e\xd2\x04\x36\x9b\xfc\x52\xb0\x6c\xa0\xd2\xc8\x54\xd0\x03\x75\xba\x6e\x35\x76\x80\x4e\x61\x41\xa6\xc6\x0e\x30\xbe\x89\x52\xf6\x03\xfd\xf4\xab\x33\xf2\x08\x34\x23\x43\x92\x05\x08\x9d\x9a\xec\x4c\x37\x7c\x80\x5e\x7d\xa2\xbe\x0d\xcc\x00\xed\xfb\x06\xdc\x77\x06\x5a\x65\x3f\x3c\x8d\x22\xa4\x3c\xb5\x78\x1a\x53\xa3\x04\xe8\xb0\x47\xe5\x34\xef\x05\xa8\x9c\x18\x95\xd3\xed\x17\x20\x3a\x3a\x69\xea\x14\x01\x9d\x2c\xba\x9c\x2a\x0d\x60\x54\x54\xde\x24\x0f\x5f\x68\x1c\x2a\x92\x53\xaf\x65\x4a\xbd\x8d\x8c\x95\x78\x40\x08\x58\x06\x72\x2a\x33\x80\xce\xd9\x6a\x39\x8d\x22\x00\x8d\xba\xab\x9c\x8a\x11\xa0\xbb\x48\xa5\x14\x10\x2a\x85\x86\x39\x49\x55\x17\x3a\xf5\x27\x39\xd5\x36\x40\xe3\xa0\x87\x9c\x6e\x80\x00\x4d\x23\x7f\xea\x43\x4c\x89\x42\xd9\xa1\x98\x7e\x75\x40\x27\xe1\x2f\x2d\xca\x17\x7a\xf5\xf6\x7e\x62\xc0\xe0\xfc\x93\x9c\xe9\x7c\xa5\xd4\x7e\x0c\xc8\x94\x13\xa0\x53\x4d\x9b\x53\xe7\x03\x88\xce\x17\x3c\xfd\xea\x80\x4a\x12\x55\x5a\xba\x2f\xb4\x03\x65\x36\xb5\x79\x80\x06\xeb\x75\x4e\xbf\x3a\xa0\x07\x0a\x7b\x1a\x45\x00\x2a\x67\x65\xe4\xd4\xe6\x01\x9a\x29\x18\x96\xeb\x0b\x51\xed\xbd\xb1\x06\xa0\xb9\x97\x37\xd5\x6f\x40\xd5\xc3\xb6\x10\x5f\x68\x6a\x1b\x4b\xec\x85\x6a\x88\xc5\x1a\x78\xa1\x36\xdf\xa3\x9b\xa6\x40\x0c\xa7\xd0\x15\x0d\x74\x33\x6d\xa6\x2b\x1a\x08\x68\x02\xd3\x22\x75\xa1\x1b\x25\x5f\xda\x3c\xc0\x80\xdb\x31\x97\x36\x0f\xd0\x21\x5f\x4c\xeb\xd6\x85\x1a\xa8\x96\xa5\x31\x0e\x74\x03\xfa\xcb\x50\x19\x10\x9c\xf1\x99\xcb\xb8\x18\x10\xaa\xbc\xe5\xa7\x00\x04\x07\x89\xe4\xd2\x8a\x07\x52\x8b\xcd\xea\x76\x21\xf4\xa6\x96\x1f\x0c\xd0\xe0\x67\xce\xe5\xae\x26\x30\xca\x77\xd5\x6d\x93\x9b\x29\xde\xfe\xb5\x89\xc2\x28\x26\x67\xa9\x8a\x81\x4a\xfd\x6e\x2e\xbf\x34\xa0\x41\xf2\x93\xcb\x2f\x0d\x68\xd4\xc5\xe4\xd2\x6f\x00\x7a\x43\x62\x5a\x03\x2f\x84\x09\x24\xcb\xe8\x3d\xd0\xa9\x2f\x48\xcb\xe2\x85\xfa\xef\x8f\xde\xbe\x52\xa8\x68\xef\xfd\x44\x81\xc1\xb9\x65\xb9\x74\x38\x80\x4e\xcd\x6d\x2e\x1d\x0e\x60\x70\x10\x5b\x2e\xcd\x46\x20\x4c\xde\x59\xaa\x62\x60\xb8\x4d\xb2\xf4\x2e\x80\x4e\xdd\x68\xae\xe1\xed\x07\x04\x6f\x98\x8d\x96\xb2\x0b\x7d\xf8\x1e\x55\xc5\xc0\x80\xfe\x39\x97\xf6\x26\xd0\xa3\xf8\xc7\x69\x13\xf6\x00\x36\xcf\x32\x8a\x00\xd4\xef\x6d\xbb\x2b\x0a\x8c\xc1\xa7\x60\x0d\xbc\x90\x07\x62\x68\xb9\x2b\x0a\x44\x7e\x57\xd9\x2f\x98\xf6\x07\x1f\xdf\x72\x0b\x01\xe8\xa6\x5a\x2d\xa3\x8d\x40\x6f\x76\x55\xdf\x08\x08\x33\x88\x96\x39\x6d\xc0\x48\x67\x55\x69\x02\x54\x0a\xb8\x73\xe9\x2e\x01\x83\x13\xa3\x72\xa9\xc3\x81\xf1\x33\x83\xfe\x54\xc5\xd6\xc3\x0b\xbd\xda\xed\xe9\xd3\x39\x2e\x1b\x02\xe5\xb4\x1e\x5e\x18\x14\x73\xe7\x52\x87\x03\x7d\x22\x20\x96\xc9\x24\x40\x6f\xae\x0f\xa5\xd4\x32\xe5\xcd\x17\xa8\xff\x06\x34\xf7\x0e\x96\xfe\x1b\x30\x8e\xf0\x2a\x3b\xc1\x06\x6c\x0c\xaf\xf2\x9d\xc2\x5f\x62\x86\xc6\x32\xdc\xb2\x0c\xb7\x28\x46\x94\x78\x4b\x82\x12\xff\x68\x20\x05\xe8\x86\x0f\x96\x42\x10\xa8\xee\x31\x2e\x77\x48\x81\x7e\xba\x3e\x8c\xae\x02\xa3\x7d\x57\x39\x6c\xea\x05\xc9\x8d\xce\x65\xc0\x15\x18\x1c\x20\x98\x4b\xa3\x04\x08\xce\x93\x4d\x0b\xfc\x85\xce\x51\x53\x69\x35\xbf\xd0\x4c\x24\xb4\x74\x5f\x08\x08\x26\x73\x19\xba\x01\x06\x87\x8e\xe6\xd2\xc0\x01\x82\xa3\x25\x72\x29\x89\x81\x46\x22\x74\x2e\x77\x51\x80\xd6\xd1\x10\x4b\xb7\x15\x18\xe6\xb4\x2d\x0d\x9c\xe5\xc6\x0a\x8a\x71\x69\xba\x00\x3d\x5c\x00\xee\x90\x02\x61\x52\xe2\x72\x87\x14\x88\x81\x1f\x6e\x81\xbf\x30\xc2\xd7\xe1\x8e\x0c\x50\x9b\xeb\x4b\x17\x18\x18\xf5\xbb\xca\x59\x85\xf2\xcb\x9d\x80\xe5\x8e\x0c\x90\x06\x23\xa5\x01\x10\x7a\x60\x8b\x2d\x23\x43\x40\x40\x9e\x9f\x4b\xd5\x02\x8c\x40\x27\xc9\x0c\x20\xf4\xa9\x10\xd4\x75\x02\x9a\x7a\x64\xab\x80\x80\xa6\x2f\xb8\xdd\xb9\xdd\x9e\xd4\x88\x2c\xdb\xea\x24\x60\xd4\xc3\xab\x9a\x4d\x86\xba\x0a\x4d\x8f\x4d\xa6\xbd\xff\x06\xb4\xb5\xc5\x80\x66\xdc\x74\x1b\x7a\x06\x42\x1b\x71\xab\x6d\x80\xde\x9b\x4d\x61\x53\x20\xe8\xfd\xe3\xb4\x89\x84\x50\x94\xc6\xd6\xa7\x07\x86\xae\xa6\x8c\x05\x42\xa5\x9a\x36\xb7\x0a\x08\xe8\x94\x66\xa7\x8c\x05\xc2\x80\x01\x32\xb7\x7b\xc5\x40\xd3\x03\xda\xee\x15\x03\xc3\xd4\x34\x49\x0c\x84\xe6\xc2\xdc\x26\x42\x03\x15\x12\xcd\x94\xa5\x40\x68\x87\x4d\xda\x75\x40\xb8\x03\x2f\x4b\x81\x30\xa0\xb0\xca\x6d\xf8\x01\x48\xc8\x98\x53\xfe\x01\xa1\x71\x8c\x40\x6e\x53\x9c\x81\x0e\x4f\x64\x6e\x53\x9c\x81\x66\xe6\xc9\x36\x96\x05\x74\x4e\x59\xc9\xad\x86\x00\xaa\x76\x8a\xcc\x02\x42\xa7\x28\x36\xb7\x1b\x46\x5b\x6e\x35\x54\xf1\x56\x1d\x6c\x79\x90\xed\x97\x71\x0b\xa0\x0e\x3e\xab\xad\xff\x06\x04\x07\xd5\xa4\xfc\x03\xf9\xf1\x0f\x20\x44\xb7\x39\x80\x40\xab\xae\x2f\xe3\x62\x40\x77\x0b\x73\xbb\xf9\xb4\xdd\x7c\x42\x57\x6e\x3d\xb3\x2d\xb3\x09\xa2\x76\x2b\xc9\x81\x4e\xc1\x56\x6e\xcd\x46\x20\x0e\xf4\x88\xfc\x03\xf9\xf1\x0f\x30\x13\x97\xf9\x4b\x40\x8d\xaf\xe9\xb5\x89\x14\x43\x6c\x9e\xcb\x97\x06\xc4\xe4\x7b\xbc\xf4\xe9\x81\x66\x8c\xed\xe2\x40\x2a\xa1\xc1\xf9\x96\x97\x9b\xf2\x40\xc0\x1c\x9f\x16\xbc\x0b\xc3\xcd\xdc\x4b\x13\xe1\x32\xb2\xc4\x4c\x5c\xbe\x47\xa0\x55\x36\x40\x2e\x5d\xf3\x4b\x6a\x1b\xec\x94\x4b\xc3\x1e\x88\xac\x5e\xb5\x6d\xe2\x48\x03\x5e\xc7\xa5\x92\x05\x02\x9e\xed\xbc\xdc\xe5\x03\x3a\x04\x6f\x79\xe9\x3b\x03\x01\x27\x45\x5e\xbe\x0e\xa0\x51\xf2\x94\x97\x7a\x17\x68\x1a\x71\x97\x49\x45\x40\x74\xde\xd0\xa5\x7e\x04\x46\xb4\xff\xa0\x8a\x2f\xd5\x27\xd0\x0b\xdf\xc0\xa5\xfa\x04\x06\x25\x29\x79\x19\xb1\x02\x2a\x67\x2a\xa7\x55\xf3\x42\x37\x13\xe2\x52\x31\x02\xe1\x46\xe7\xa5\x77\x00\x84\x09\xe9\x97\xba\x12\x08\x77\x94\x2f\xfd\x70\xa0\xba\x7b\x78\x99\xd2\x04\x04\x87\x9f\xe5\xe5\x6e\x05\x30\x06\xdb\x7b\x97\x4a\x16\xe8\x16\x29\x58\x81\x2f\x0c\x4a\xf7\xf3\xd2\xa7\x07\x2a\xc7\xd1\xe4\xb5\x5d\x45\x9b\x63\xe0\x08\x89\x5f\xa6\x34\x01\xed\x5b\x0c\x6e\x87\x5e\x52\x5c\x0f\xef\x65\x57\xd9\x0e\x3d\xbf\xab\xec\xaa\xdb\xa1\x8e\x51\x47\x06\x18\xcd\x01\xa9\xb0\x81\xa6\x23\x73\xe9\xdb\x00\x31\x5c\xf0\xc6\x1a\x80\x5e\x48\x2f\xb8\x54\xeb\x40\x83\x90\x3c\x2f\xd3\xde\x81\xd1\xc2\x3f\x3a\xc6\xcb\x08\xb2\x57\x39\xa0\xcb\x0d\x45\x9b\x1c\xd0\x45\x50\x06\x3b\x45\xe2\x01\x61\xe8\xd2\x5d\x6e\x9a\x02\x71\xf8\x47\xf3\x25\x80\x7e\x7e\x57\xf9\xc7\x5b\x46\x43\x66\x42\xb5\x0e\xf4\xd3\xaf\xce\x8c\x29\x19\x0b\x4c\x86\x93\x9e\x40\x68\x1c\xde\x98\xd7\xe3\x18\x1f\xe3\x6d\x4c\x8e\x2e\x1d\xd0\xbe\x2f\xc5\xc8\x36\x10\xe5\xbb\x97\xef\xf1\xa1\xa4\xae\xf9\x47\xfb\xf5\x20\x6c\xfc\x82\x55\xfe\x97\x7c\x9f\x2e\x13\xdd\x43\xa0\xb9\x3b\x2d\x21\x82\xd0\x39\x0a\x3f\x2f\xf7\x77\xaf\x2f\x9d\x95\x89\x36\x06\x02\x74\x53\xfb\x65\x3f\x10\x06\xe7\x85\xa6\xec\x07\x42\x40\x16\x97\x52\x1d\x08\xa3\x0e\x9b\xd2\x26\xa2\xe4\xf4\x5e\xaa\x03\x21\xe0\x8b\x49\xa9\x0e\x84\xce\xc9\xf1\x79\xeb\x31\x02\xc3\x78\xca\xad\x0e\xbf\x3f\x1d\x4e\xbf\x8c\x48\xdc\x52\x5c\xd3\x7b\x0b\xde\x85\xee\x76\xfb\xad\xe0\x02\xc2\x74\x8e\x5b\x6d\x73\x5b\x98\x39\x6d\xf2\x89\x64\x26\xe9\x99\xdd\x2a\x20\xa0\xc3\x12\x9e\xb7\x0a\x08\x68\xd4\x15\xe7\xad\x5b\x01\xc4\x59\x6d\x72\x8c\x1e\xe8\x89\x5f\x79\x9b\xc4\x00\x0c\x8e\x30\xce\x5b\x93\x1d\x08\xa3\x98\xb7\x02\x06\x08\xb8\x56\xf3\xf6\x73\x07\x86\x86\xbd\xf5\xe1\x42\xb7\x56\xc1\xca\x6f\x61\x4c\x67\xd5\x2c\x03\x20\x34\x5d\xac\xe9\x16\x9a\x6f\xfb\x36\x75\x08\x08\xb7\xce\x6e\xed\xe0\xdb\x93\xac\xf0\x05\x6f\x2d\xdc\x5b\x02\x78\xb6\xe1\xac\xe9\x16\x2a\xec\xc1\x69\xb5\xb6\x30\x86\x33\xe1\x22\xb7\x5a\xbb\xd9\x55\xe3\x75\x40\x85\xd9\x24\xad\xc3\x16\x1a\x6c\x37\x79\x1b\xc2\x03\x9a\xc9\x28\x56\x58\x0b\x43\x9b\xfa\x81\x76\x4a\x68\xce\xfd\xa3\x41\x08\x84\x25\x07\x96\x53\x0b\x15\x16\xc3\x7c\x74\xf3\x1f\x0f\xbb\x24\xfe\xfd\x54\xff\xc8\x59\x19\x10\xd3\xe7\x63\xfa\x1d\x30\x92\xaf\xf6\x81\xfb\x41\x18\x10\xad\xe7\x63\xf4\x0c\x18\x81\x56\xb0\x6c\x59\xa8\xc6\x73\x1f\x75\x38\xd0\x4c\x16\x78\x34\xcf\x80\x80\x08\x32\x1f\xd5\xfa\x63\xae\x9d\x5d\x35\xe2\x0e\x04\xb4\x79\xf9\x18\x9c\x03\x86\xd5\x59\x8f\x3e\x3d\x10\x05\xed\xfc\xb8\x7c\x81\x30\xd9\xe9\x71\xdf\xe7\x91\x52\x8e\x85\xf9\x18\x89\x03\x06\x27\x22\xe6\xa3\x57\x0c\x8c\x41\xd4\xe5\x71\x45\x03\x03\xa6\xfd\x7c\xf4\x8a\x1f\x19\x6c\x23\xff\x56\xc5\x8f\x8a\x11\x68\x16\x5c\x3d\x2a\x46\xa0\x9b\xea\xf9\xa8\x18\x81\x6a\x2a\xf1\xa3\x1e\x01\xea\xf4\x35\x2b\xd5\x81\x80\x7c\x31\x1f\x57\x37\xd0\xf5\x18\x1f\x57\x37\x50\x67\x7a\x2f\xbb\x7d\x11\x9d\xc0\xc8\x7f\xf4\xf2\x80\xd0\x2e\x7b\x0c\x3d\x3f\x9e\x1b\xed\x44\xe9\x73\x01\xc1\x11\x1f\xf9\xe8\x14\x3d\xc6\xdb\xa6\x4d\x5e\x05\xe9\x8c\x91\xda\x47\xa7\xe8\x71\x27\x12\xf9\xf3\x1a\x6f\x03\x2a\xcc\x13\xf9\x2a\x50\x81\x06\x89\x41\xbe\xa6\xa0\x02\x03\x16\xd4\x7c\x8d\x33\x03\x51\x58\x0c\xaf\xa2\xf2\xfd\x92\x6f\x6c\x6a\x36\x91\x7c\x83\x34\x78\x2d\xcc\x7c\xbf\xc2\xcc\xa4\x69\xdb\x04\x75\x6d\xb5\xe9\xb2\xe9\x62\x7f\xd7\x7b\xdd\x36\xdd\x78\x8c\xde\xeb\xb1\x09\x9a\xf7\xc3\xab\x5e\x9b\xe0\x17\xc4\xf9\x78\x21\x68\x13\x5a\xfb\x9a\xc2\x26\x62\xe9\xbc\xed\xd7\x94\x39\xa0\x71\x1a\x6e\xbe\x7e\x9b\x40\x83\xd0\x2e\x5f\xf3\x71\x5e\xf3\x71\xd0\xce\xaf\x4e\x11\x30\x60\x3e\x4d\x6b\xcd\x85\xae\xfd\xf4\xea\x27\x01\xfd\x70\xa2\x8d\xb7\x01\xdd\x94\x82\xd7\x8a\xaa\x57\xc6\x02\xbb\xaa\xad\x0e\x74\x93\x71\x5f\xbf\x73\x20\xac\x3f\x79\xad\x35\x00\x86\x21\x83\xd7\x8f\x1a\x18\x96\x03\xbd\xee\xbf\x01\x51\xbe\x26\x9f\xf8\xa5\xfb\xd0\x09\xf7\xcc\x80\xee\x16\xf9\xeb\x77\x0e\x54\x4e\xb4\xcf\xd7\x40\x1d\xd0\x1a\x16\xdb\x6b\x0e\x0d\xd0\xdd\x17\x7c\xcd\x8f\x03\x6a\x20\x04\x5f\xb5\x0d\xd0\x0c\x49\xbd\x86\x7e\x80\xb0\x56\xc1\xca\x6f\xa1\x1b\xc6\x7e\x4d\xb4\x7f\x3d\x96\xf1\xbb\xca\x7e\x79\x48\xab\xaf\x43\x43\x15\x08\xd3\x13\x5e\x13\xed\x81\x51\x5c\x85\x06\x88\x80\x56\xd0\x6f\xaf\xd6\xdf\xeb\x81\x0a\xc8\x7e\x2b\xbf\xf3\xab\xfc\xee\x5e\xe5\x7c\x5d\x72\x74\xd2\x09\x8d\x38\xa0\x71\x00\x6a\x5a\xd3\x2d\x34\x18\x33\xf3\xd5\x7e\x02\xea\x37\x5f\xda\x4f\xc0\x30\x55\xd4\xd2\x6c\xa1\xe9\x86\xbd\x9a\x54\xef\x97\x52\xc0\x55\x66\xb8\x02\x1d\x12\xbb\x7c\xdd\x64\x06\xaa\x16\xee\x6b\xf0\xe4\xf5\x44\x44\x5f\x9a\xfb\xce\xaf\xf9\xaa\xf8\x20\xaf\x56\x16\x10\xd0\x3f\x4f\x6b\xba\x85\xa0\xab\xd3\x9a\x6e\xa1\x53\x05\x35\x0f\x22\x25\x42\x85\xae\x76\x5a\xe6\x2d\x34\x32\x03\xa6\x65\xde\x42\xcc\xef\xf6\xc3\x26\xf2\x66\x7a\xa3\x29\x6d\x4a\xf6\x64\x83\xa6\x6d\xd3\x66\x23\xcb\xa6\xdb\x26\xb2\xc2\x7e\x86\xfd\x3c\xd0\xbb\x42\x70\x34\xfc\xb4\x18\x5c\x08\x4c\xd0\x79\x14\x7b\xff\x83\x3a\xed\x2a\x92\x49\x68\xec\x15\x4f\x4b\xc6\xe7\xbf\x92\x71\xff\x18\x36\x49\xc8\x39\x68\x9a\x36\x31\x85\x3f\x7b\x73\x1e\xc4\x66\x84\x60\x6f\x6b\x1e\xc5\xae\x12\x88\xa9\xdf\xbd\x1e\x9b\xe4\x51\x3e\x68\xb2\xf7\x6e\x0e\x34\xee\x75\xda\x7b\xa9\x6f\x4f\xa6\xf0\xb4\xf7\xd0\xab\x70\xae\xd4\x3c\x4e\xe7\xfe\x34\x5b\x84\x7e\x9d\xce\xbd\x1b\xfc\xe1\xbd\x7c\xa2\xf4\x2a\x85\xf9\xaa\xde\x4b\x2e\x95\xc9\x55\xd5\x7b\x41\x72\x7f\x14\xfa\x55\x9d\x89\x6a\xd2\x2c\x4f\xac\xbe\x21\x12\x83\xdb\xe0\x89\x70\xe6\x0a\xf1\xcd\x44\xf5\x89\xc8\xaf\xda\xff\xae\x2b\x9e\x47\xb3\x43\xe4\x29\xd6\x41\x1f\x9b\x1d\x6a\x6c\x01\x14\xd6\x47\xf3\x3d\x50\x37\x75\x9e\xbc\xad\xe6\xa4\x37\x6a\x0f\x1b\x33\xdc\x5c\x32\x1e\xa5\xd8\xe8\x63\xf3\x3d\x20\xf1\x20\xcd\x9a\x47\xb3\x8f\x4a\xbc\xc2\x0c\x77\x27\xdd\xbc\xaa\x93\xf1\x76\xfb\xd5\x25\x4c\xe4\x8f\xdd\x19\xee\xae\x6e\xfa\xd5\x5d\x45\xb2\x5c\x16\x9e\xd8\x9d\x3b\xaa\x56\xab\xaf\xa6\xbb\x64\x3a\x09\x46\xc3\x7b\x39\x77\x44\xac\x20\x6e\x9a\x47\xb7\xab\x1c\xf9\x75\xba\x48\xbb\x5d\xed\xbe\x40\xba\x3a\xec\xea\xf0\x8c\x73\xba\x3a\xec\xaa\xc7\x67\x54\xaf\xb2\xab\x83\x2d\x26\x67\x62\xd8\x89\xe1\xa7\xcf\x44\x0f\x9f\x08\x93\x79\x3a\xab\xc3\x27\xc2\x46\x72\xf8\x6d\x0e\x17\x29\x55\x63\x75\x70\xfb\xf0\x0d\x71\x0a\x0f\x67\xe8\xcf\x23\x1c\x76\xc0\xf6\x57\xe8\x7d\xf8\xd2\x88\x91\x95\xef\x8f\xae\x22\x4e\x22\x6e\x2e\xf8\xf0\x3d\x92\x8d\x0d\x09\xd4\x3c\xc2\xc9\x09\x73\x7d\x6d\xb2\xab\xa1\x91\xef\xed\xed\x17\x35\xb7\x43\x61\x93\x4e\x4e\x1a\xeb\x64\xd8\xe9\xe4\x40\x2e\x0c\x8b\xf3\x3c\xd2\xde\x13\x06\x0a\x3f\xc4\x74\xbe\x20\x4c\xfc\x96\x72\xfa\x6a\xa1\x20\x86\xff\x64\xca\x32\x20\x0c\x88\x09\xe7\x91\x0e\x28\x3d\x20\x80\x55\x98\x0e\xe8\x8b\xf0\xf9\x47\xbb\xca\x2e\x70\x4d\x06\x34\xed\x17\x04\xee\x9c\xb8\x39\x8f\xe9\x14\x4e\x0f\xfd\xe3\x8f\xd3\x97\x66\xc6\xb9\x1f\xe2\xb2\xf7\x5f\x4a\x13\x33\xb1\xec\x3d\x1a\xb5\xb8\x72\x96\x32\x76\x51\xc7\xe8\x4c\x2c\xbb\xaa\x4b\xe7\x92\x5b\x76\x95\xcd\x14\x0c\xf3\x29\xcb\x80\x50\x21\x9e\x9b\xc7\x76\x56\xd1\xa8\x6c\x6a\x4d\x89\x07\x84\x4a\xf6\xfa\x3c\xb6\xbd\xe7\xb8\x48\x36\x01\xe7\xb1\x7d\xa2\xd4\xa4\x7e\x1d\x97\x7f\x24\xc3\xe3\x74\x72\x2e\x3b\x41\x19\x49\x3a\x13\xb7\xab\x10\x4e\x2e\x2a\xd2\xa7\xa5\xff\x42\x9d\xca\xd8\xc7\xdb\x93\x6f\x51\x5c\x4c\x8f\xcb\x04\xbe\xe1\x74\x15\xbe\xf6\xeb\x35\xc3\x95\x97\xf6\x7a\x15\x45\xfd\xc4\xf8\xa7\x45\xfd\x42\x4f\x16\x53\x29\x36\x61\xe1\x72\x08\xc2\x2c\x6a\x08\x20\xd8\xa7\x9f\x45\x75\x00\x74\x2a\x1c\x67\xc1\xb8\x14\x1a\xa9\x69\xb3\xb0\x73\x2b\x0c\x6a\xe0\x67\x51\xec\x02\x8d\x2d\x97\x59\x9a\xf7\x6a\x52\x56\xf0\x47\xa5\x1c\x30\x28\x3e\x9d\x96\xd8\x0b\xc1\xc1\x05\xb3\x10\x70\x15\x46\xb7\x13\x0a\x3e\xa0\x91\x5d\x3c\x2d\xc4\x17\x86\x2b\xba\x74\x3b\x01\x85\x15\xf9\x16\xb3\x0c\x9b\x86\x41\x52\xba\xaa\xe8\x00\x1a\x9b\x75\xb3\x0c\xfb\x45\xbe\x45\x4d\xff\x68\x27\x08\xaf\xfb\xb6\x8b\x42\x01\x08\xf6\xb0\x67\x51\x28\x14\x03\xe7\x2c\x26\xab\xee\x85\x4e\x61\xf9\x2c\x7e\x69\x40\xe7\xa0\xe3\x59\xd2\x4e\x24\x19\x9f\xc8\xe8\x92\xce\x04\xe7\x00\xc2\x7f\x32\x4b\x3a\xec\x34\x6f\x86\x4e\x4c\x07\x34\xa1\x31\x99\x85\x26\xbb\x3a\x3d\x70\x91\xa6\xe5\xbd\x16\xe9\x77\x88\xda\xb2\xbc\x6a\x59\x60\xc2\x13\x97\x53\xc8\x69\x5d\x67\x63\x26\xfc\x60\x80\x80\xf6\x7c\x16\xbf\x0e\xa0\xe1\x25\xce\x42\x60\x54\x68\x9c\x9b\x3f\xad\xa7\x17\x2a\x4e\xd5\xb4\x06\x5e\xe8\xb0\x01\xcc\x72\x39\x13\x70\xe4\x95\xd3\xab\x9c\x89\xcb\x65\xc2\xe4\x5c\xf6\x1e\x8f\xb3\x39\xf7\x97\xbd\xa7\x14\x6b\xd4\xf6\xb7\x2a\xb6\x90\x5e\x18\xaa\xbc\x72\x39\x5e\x92\xc8\x29\x51\x9d\xe5\x72\xbc\x97\x45\xc4\xf4\xf1\xb6\xdb\x1c\x9c\x42\x60\x73\x96\xdb\x29\xc0\x26\x86\x19\x77\x96\xdb\x91\xdc\x24\x55\x23\x92\xac\xd3\x17\x06\xc9\x7f\xb3\xdc\x76\x9b\xc0\x66\x69\x5e\x65\xbf\x20\xed\xab\x68\x1b\x4b\xf7\x85\x91\xce\xca\xe3\xed\x1f\xb5\x0d\xb3\xf2\xb8\x48\xb1\xaf\x4f\x07\xa4\x34\x00\xa2\xd0\x64\x0d\xbb\xd0\xc8\xa1\x99\xa7\x26\x24\x50\x07\x46\xd8\xa9\x09\x09\x04\x85\xd2\xd3\x4a\xf7\xf9\x55\xba\xff\x0c\xf3\x79\x6a\x2f\x02\x03\x6e\xfe\x69\x59\xbb\xd0\x0e\x64\xc6\x49\x86\x86\xd0\xa0\x3e\x9a\x27\xe9\x18\xc2\x80\x66\x62\x9e\x38\x7e\xc2\x20\x81\x76\x5a\x64\x2e\xd4\x8e\x02\xb2\xc8\x5c\xa8\xf8\xa8\xf3\x54\x8c\x00\x41\xe6\xff\x3c\xbb\xfd\x22\x7f\x92\x92\xcb\x79\x92\xa1\x21\x74\xf2\xbd\xe6\xa9\xb9\x71\x9a\xff\x6d\x93\xd2\x00\x68\x5a\xce\x96\x9f\x0b\x95\xbd\xbc\x79\x0e\x3b\x01\x2d\x07\xe4\xd5\xd3\x8a\x74\x61\x10\x67\x9e\xa7\xda\x19\x18\xe4\xb8\xcf\x53\xbd\x0b\x04\x67\xe8\xcf\x33\xbd\x97\xec\x64\x8d\x89\x56\x57\x02\xbd\xb1\x26\xce\xe9\x1f\x49\x1c\x1f\xe1\x55\x3e\xf1\x4b\x5d\xb4\x29\x6d\x62\xa3\x13\x43\xe2\xf4\xd3\x07\x62\xf8\xc4\xed\xbd\xb6\xf9\x25\xdc\x7e\x7b\xaf\x4d\x78\x0a\x63\xc9\x3a\x6c\xa1\x7f\x73\xbf\x9d\x68\xf9\x86\xd1\x36\xa7\x5f\x1d\x30\xbe\xb9\xf7\x83\x01\x82\xca\xef\x69\xed\xb4\xd0\xe1\x12\x9f\xe7\xe3\xac\x72\x60\x7e\xc3\x28\x39\x5d\xbe\x40\xf4\xc1\xed\x5f\x07\xf4\xc2\x20\xe2\x55\xaf\x4f\x7c\x25\x65\xfb\xdd\xcb\xba\x62\xa1\x69\x10\x56\x57\x74\xd5\x29\x4a\x9b\xd2\x26\xec\x01\xde\x76\xd5\x91\x01\x46\x9f\x07\x4d\x8f\x4d\xf0\xb4\x21\xc2\xab\x5e\x0b\xd0\xa8\xe9\x9e\x55\xaf\x05\x18\xa4\xaa\xcf\xaa\xd7\x02\x34\x48\xc6\x66\xd5\x6b\x01\xc6\x08\x9b\xec\x2a\xc7\x58\x42\x6d\x33\x2b\xe1\x1a\xa1\x71\x58\xd3\xb4\xb8\x59\x68\x44\x6a\xa7\xc5\xcd\x42\x27\x8b\x65\x56\xdd\x1d\xa0\x06\xf6\xa6\xf5\xce\x42\x1c\xb8\xad\xb5\x79\xaf\xe6\xf1\x87\xfc\x51\x25\x0b\x34\x36\x79\x66\x55\xc9\x02\x15\xce\xdc\x59\xd5\xa8\x40\xd3\xb0\xaf\x9a\xff\x40\x4f\x9c\xc8\xea\x67\x05\x34\x7d\xae\xaa\x4d\x0d\x0c\x4a\x8d\x67\x55\x31\x02\x75\x78\x95\x46\x2f\x10\x15\xff\xad\x86\x7f\x0c\x14\x36\x8b\xa9\xa6\x57\x41\xc1\x37\x1c\xd0\xb4\x13\x14\x33\xb1\x29\x36\x2d\x35\x16\x7a\xf7\xa5\x4d\xc7\xc8\xc6\x30\x04\xb9\xb3\x6a\x36\x02\x11\x18\x5e\x95\xad\x46\xa1\x76\x3e\xab\xaa\x16\x04\x42\x37\xbf\x2e\x67\x02\xc6\x83\xc3\xde\x6b\x23\x02\x83\x54\xf5\x59\x2f\x6f\x7f\xb9\x5f\xc0\x55\x6a\x05\x60\xc0\x4c\x39\xab\xa6\x1e\x30\x88\x23\xce\xaa\xa9\x07\x54\xed\xf3\xea\xd7\x01\xb4\xee\xe4\xbc\x8e\xf1\x65\xf3\x1b\x4b\xd2\xa2\x5a\x21\xa0\xb4\x9c\xcd\x45\x0e\x8c\x64\x61\x36\x72\xed\x84\xde\x10\x30\xcd\xc5\xd4\xcc\x7e\xc0\xd4\x6b\xba\xc0\x40\xc0\x50\x33\xad\x8d\x15\x82\xb4\xd3\xe9\x79\xfe\xc2\x60\x53\x7e\x36\x1d\xc7\xd6\x39\xc3\x9a\xf5\x65\x21\xac\x50\xb3\xff\x4d\xf1\x31\x9b\xee\x0e\x10\xd4\x79\xcc\xa6\xbb\x03\x04\x07\xf5\xcd\xae\x2d\x05\x0c\x05\x44\x57\xc6\x02\x0d\x46\xe8\xd9\x95\xb1\x40\x37\x44\xd2\xb5\xa5\x80\x80\x8d\x6d\x7a\xa6\xb2\x50\x7b\x78\xaf\xd7\x26\x09\xda\x7e\x23\xb1\x96\x6e\x76\xf2\x12\xc8\x84\x98\x5d\x49\x0c\x54\x36\x86\xa7\xe5\x75\x42\x83\x24\x7a\x76\x25\x31\x50\x49\x56\x9a\xdd\xe5\x07\x54\x03\x16\x7d\xf9\xc7\x65\x41\x0d\x4f\x24\x51\x4c\xe8\x04\xbb\xa7\x45\x78\x42\xfb\xd7\x74\xdb\x44\x3a\x2b\xaf\xd9\x03\x98\x85\x4e\xc4\x7d\xf6\xed\x18\xd9\x51\xe6\xd0\xe4\xe9\xa1\xc9\x42\x67\x37\x6c\x7a\xd0\xb1\xd0\xe1\x6e\x98\x5d\x17\x05\x88\xc9\x77\xee\xa9\xc6\x42\x0c\xe7\xfe\xb6\xab\x37\x5c\x3b\xe9\x55\xc3\x26\x02\x9b\x61\x93\x4f\xf4\x60\x7a\xa4\x67\x77\xc1\x03\x41\x8a\xce\xf4\x54\x63\xa1\x13\xf4\x9b\x83\x90\xb8\xd0\x0b\xeb\xd6\xa3\x82\xe7\x77\x54\x30\x81\x85\x41\xcc\x5a\x08\x12\xb2\xe6\x50\x2e\x02\x83\x12\xd5\x39\x74\x3e\x80\x06\xe3\xca\xf4\xa8\x60\x61\x70\x36\xed\xb4\x28\x4d\xe8\xba\x9a\x43\x0b\x04\x08\xd8\xb8\xa7\x07\x0a\x0b\x01\x75\xed\x1c\x7e\x16\x40\x2f\xcd\x3f\x7a\xfb\xe6\x49\xc4\x83\x26\x07\xd4\x48\xb4\xc0\x88\x1b\xca\x58\xa0\x92\x03\x38\xad\x79\x9b\x5f\xcd\x9b\xc3\xf6\x7b\xb2\x9a\x8d\x24\xaa\x69\x35\x9b\x10\xfa\xe1\xc3\x78\x0a\xd0\x1b\x46\x89\x05\x6e\x42\x1f\xf6\xbe\x3b\x46\x0a\xdc\xb4\x37\x87\x36\x0f\x30\x8c\x88\x0e\xe3\x29\x40\x70\x4e\xc9\xf4\x54\x63\x61\x04\xa2\x72\xe8\x14\x01\x8d\x7c\xd3\xe9\x11\xc6\xc2\xa8\x88\xdd\x11\xde\x2b\xbc\x17\xbd\x57\x1d\x00\x6d\x78\x7b\x36\xc8\x84\x56\x0f\xef\x15\x36\x91\x91\x87\x35\xe3\xd9\xc7\x42\x23\x3f\x6e\x7a\xaa\xb1\xd0\x61\x30\x9a\x43\x93\x0a\x18\x1c\x3d\x39\x3d\xd5\x58\x68\xdf\x4b\x33\x6e\x61\xc5\xde\xc9\x2a\x1c\x0a\x05\xa0\x0f\xb4\xf3\xd0\xc1\x02\x62\x7e\xf7\x72\x56\xa1\xef\x09\x24\xde\x50\x02\x00\x95\xfd\xf0\x39\x8c\x6e\x00\xe3\xf4\x3d\x2a\x14\x80\x0e\x4f\xdb\x1c\x06\x3c\x80\xc6\x11\x58\x73\x4c\x3b\x31\x39\xa4\xcc\xd7\xa1\x11\x07\x8c\xee\xdb\x56\x9a\x00\x8d\xdc\xfb\x39\x54\x66\x83\x2d\x84\xc1\xb7\x3d\x0c\x78\x00\x11\x7c\xdb\x43\x39\x01\x0c\x8a\xbf\xe6\xd0\xd4\x03\x1a\xa7\x9b\xcd\xa1\xe8\x18\x9e\xc2\x6a\xef\x75\xd6\x80\xd1\xbd\xbd\xd1\x0d\xa0\x6b\x35\x8c\xcb\x99\x80\x24\xf1\x44\xf9\x8f\xcb\x99\x70\x57\x01\xbd\xeb\x31\xcd\x42\x70\x1e\xed\xb4\x9c\x51\xa8\x14\xfa\xcc\xa1\xe3\x07\x04\x89\xf6\xd3\x0a\x47\x61\x4c\xdf\x90\x26\x28\x30\xa8\xeb\x9b\x43\xcf\x0e\x18\xc7\xf4\x8f\xbe\x34\xf6\x31\xb4\x96\x87\xf2\x0b\x18\xe9\xab\x55\x7e\x01\x5d\x47\xc8\x6a\x49\xa1\x53\x99\x32\xad\x96\x14\x02\x42\xce\xe9\x29\xd0\xc2\x30\x1a\x34\x14\x69\xc3\x83\xda\x5d\x13\xba\x71\x40\x23\x0f\x64\x0e\x83\x3a\x03\xbe\xf4\xd3\xc5\xa4\x1d\x0c\xf4\xe6\xba\x7f\xfc\x6a\xd9\xa7\x4f\x5f\xc7\xeb\xeb\x60\x4f\xa4\xf8\xb9\xbf\x3e\xf1\xe5\x43\x56\x0c\x69\x35\x00\xad\x1f\x7f\xd7\x15\xcf\xf1\xfa\x1e\xd8\x45\x31\x52\x3b\x5e\xa7\xe0\x65\xab\xd0\x8f\xe7\x75\x0a\xa8\xde\xa3\x08\x66\x5a\xe4\x29\xf4\x81\xd8\x0d\x77\x3e\x80\x41\xdd\xc2\x0c\x72\x55\x84\xd0\x3d\x0c\x5d\x4d\x60\xb0\x43\x3a\x83\xad\x55\x61\x50\x1b\x36\xa3\x78\xaf\xc2\x17\x8c\x83\x15\xc6\xa2\x80\x41\x0a\xc5\xb4\xee\x53\xe8\x86\xd7\x3d\x4a\x5a\x88\xe1\x55\x46\xac\x80\x46\x56\xd8\x8c\x6a\xef\x39\xb9\xa2\xda\x2f\x95\x06\xd0\x60\x12\x9e\x51\x7d\xa2\xbb\x9a\x95\x61\x43\x4f\x20\x8c\xe0\x7b\x0a\x35\x04\xd0\x1a\x92\x25\xd4\x10\x61\xa1\x0f\xb3\x1a\x1a\xe6\x40\x83\xc1\x68\x86\xb6\x54\x78\xd4\xd4\xd7\xe4\xb0\xbb\x53\xd8\x69\x72\x8c\x5d\x9f\x6b\xd0\xe4\x18\xad\x35\xe0\xdb\xf4\x90\x69\xa1\x25\x0a\x3b\x14\xf4\x40\x83\x8d\x6d\x86\xa1\x2e\x20\x82\x75\x1b\x46\xc9\x81\xe1\xee\x8e\x85\xac\xf3\x2b\x64\x45\x99\x85\xc2\x19\x18\x94\x58\xcc\x30\xb2\x0d\x34\x08\x39\xa7\x87\x4c\x0b\x41\x71\xf3\xb4\x90\x55\xe8\xe9\x44\x6b\x78\x01\x35\x89\x0f\xc4\xf2\x75\x40\xe4\x38\x9d\x2f\xcd\x20\xa0\x1a\x52\x0a\x83\x58\x40\x9d\xae\x09\x2d\x23\x20\x8c\xe7\x86\xc2\x06\x08\xa3\xe4\xa1\x18\x01\x86\xda\x26\x6e\x97\xdc\x4d\xa1\x0f\x1f\x8f\x67\x45\x0b\xad\x22\x59\x3c\xa6\x59\x18\x1c\xfe\x31\xc3\x4f\x0c\xe8\x9a\x7a\xd6\xb6\x0a\xe3\x44\xd0\xc7\xeb\x18\x5f\xbc\x62\x22\xee\xe9\x07\x03\x44\x12\x59\x4a\xb7\x1d\x81\x60\x03\x76\x7a\x0a\xb4\x30\xfe\x35\x55\x9b\x28\x19\x67\xbe\xac\x93\x15\x02\x22\x90\x99\x7e\x7c\x40\xe7\x44\xfb\x99\x6e\x3b\x02\x1d\xc6\xa7\x99\xe4\xf6\x08\x83\x44\x9e\x99\x94\x16\x09\x1d\xea\x91\x99\xba\xd3\xc0\x38\x98\x9c\xf4\xab\x05\x86\x81\x3a\x4f\xa7\x16\x1a\x07\x89\xcc\xf4\x43\x06\x5a\xfd\x9a\xc2\x26\x49\xdb\x19\xb6\x5e\x0b\xd0\x20\x28\x99\x69\x04\x39\xe5\x0c\x70\xd8\x7e\xa2\x40\x90\x2f\x3f\x53\x17\x05\xa8\x10\xd3\xcf\xf4\x13\x05\xc2\x8f\xcf\x92\x5e\xa1\x1b\x84\xb7\x7e\x57\xa8\xae\x42\xeb\x77\x85\xc1\x31\xf1\xd3\xfa\x5d\xa1\xa7\x9d\x30\xa8\x0c\xf4\xb4\xab\x7a\xc5\xa9\x57\xec\xab\xed\xf6\xab\xc3\x58\x87\x50\xc8\xee\x44\x77\x0f\x36\xe4\xa5\xf9\xd5\x02\xcd\xf0\x43\x1a\x59\x02\x22\x9b\x4d\xce\xd7\x50\x31\xf2\xc4\xe1\x80\x86\xd2\x97\x61\xbb\x6b\x05\x84\x11\x89\xf4\x83\x49\x69\x4e\xf9\x1e\xd3\xe0\x6d\x4a\xcb\x81\xfc\x4a\xed\x01\x20\x48\x14\x9b\xa9\x0e\x07\x82\x03\xe2\x66\xaa\x9d\xd3\x63\xd1\x30\xf5\x52\x2d\x08\x74\xd8\x13\xa6\xd5\xa5\xf3\xab\x2e\x75\x72\x6e\x9f\x48\x3e\x8f\x02\xc6\x52\x52\xa1\x43\xab\x3f\x53\x5d\x09\x34\xa8\x6f\x67\xba\xb5\x91\xd2\x89\x12\xdd\xc8\xc7\xf9\xa2\xac\x02\x66\xa6\xe9\x51\xd4\x42\x83\x2f\x7d\x5a\x70\x2a\x0c\x8e\x41\x99\x69\xcc\x08\xe8\xa4\x0b\x4d\x0b\x4e\x85\xd0\xa4\xca\xd7\xdb\x7f\xe9\x42\xbf\xde\x4f\xbf\xb4\x69\xba\x10\x6f\x68\x92\x1b\x24\x04\x75\x57\x73\xfa\x0d\x01\x1d\xaa\x96\x39\xfd\x86\xa6\xa4\xed\x2c\x39\x8b\x57\x85\x38\xe2\xef\xba\xe2\x69\x21\xab\xd0\xc3\xa7\xfb\xa5\x00\x9d\x0a\xa1\x39\xd5\x6f\xc0\x80\xe8\x6a\x4e\xc3\x53\x40\xe7\x40\xa9\x39\x0d\x29\x01\x35\x1d\x9c\xa1\x54\xa0\x71\xf6\xfa\xf4\x3c\x6b\xa1\x69\x97\x4d\x1d\x19\xa0\x42\x01\x33\xa7\x5f\x0a\x10\x07\xea\x60\xfa\xa5\x00\xbd\x21\x20\xa6\xca\x0c\x68\x30\xbb\xcd\xe9\xf6\x0b\x30\x38\xd5\x6a\x4e\x3f\x1e\x60\x1c\xd3\x3f\x86\x4d\x90\xe3\x61\xaa\x59\x30\x2a\x74\xf8\x16\xe6\xd4\x72\x06\x82\xa4\xea\x39\xa7\x9d\x20\x6d\x9d\x34\xa4\x39\x75\xa7\xa7\xee\xb4\xbd\xf7\xb3\x00\xe2\x9b\x55\x63\x3e\x40\xd3\xd3\x98\xea\x11\xa0\xcf\xc3\x3f\x3a\xd1\x6c\x86\x90\x78\x39\x3d\x18\x5a\x08\x08\x81\xa7\x07\x43\x0b\x41\x95\xdc\x9c\x6e\x86\x00\x1d\xde\x8c\xe9\x59\xd1\xc2\x20\xf3\x76\x7a\xbe\xb3\xd0\x26\x1f\xcf\x74\xa3\x01\x18\xee\x8f\x78\x72\xb3\xd0\xc8\xf7\x9a\x56\xad\x0a\x15\xde\xd5\xe9\xc9\xcd\x42\x55\x08\x4e\xed\x58\xa0\x97\xe6\xbd\x1c\xa3\x1b\x0d\x78\x53\x1e\xe6\x2c\x74\x93\x49\xa6\x1f\x22\x10\x6a\x9b\xf9\xda\x89\xd7\x23\xb0\xe8\xbd\xfa\x0d\x18\x93\x2f\x78\xa9\xcc\x80\xee\xe6\x91\xb5\xad\x42\xe7\x54\xac\x69\xd5\xea\x5c\x64\x92\x52\x3c\x31\x3d\x5a\x59\x08\x43\x4a\xcb\x88\x15\x50\xf5\x18\x97\xea\x00\x68\x15\xc3\xdc\xba\x4f\x21\xa0\xe7\x9d\x1e\x87\x2c\xf4\xce\x87\xe8\x11\xc6\x42\xa3\x88\x6f\x2e\xa8\xa2\x84\xa0\xf6\x67\x2e\xbf\x0e\xa0\x42\xe4\x38\x3d\xc2\x58\x08\x2a\x97\xa6\xa5\xa0\x42\xa5\xb4\x71\x7a\x84\xb1\x10\x9c\x0d\x39\x97\xb2\x1f\xa8\xb0\x7e\x4c\x0b\x46\x85\xce\xe1\x1f\x73\xe9\x9a\x03\xa1\xae\xb4\x3a\x54\x68\x9c\x0f\x36\x97\x1a\x02\x68\xea\x5d\x4b\x41\x85\x70\x57\x73\xe9\x9a\x03\xad\x79\x7b\xd7\x3d\x50\xa9\x07\x9b\xcb\x0d\x6b\x20\x54\x9f\x4b\x33\x08\xe8\xe4\x55\xcd\x65\xe8\x07\x08\x98\x03\xe7\x72\x23\x0b\xa8\xe1\x4c\x3c\xf6\x0b\x36\xa4\x69\x27\x94\xd7\x40\x73\xd7\xdc\xb2\x2e\xa1\x9b\x79\xb2\x35\xc6\x81\x06\x7d\xd8\xdc\x06\x75\xb6\x41\x1d\x34\xfd\x36\x91\x07\x18\x27\x4a\x63\x9b\x8f\x03\x54\xe8\xfc\xa6\xa5\x58\x42\xe5\x6c\xc8\xb9\x35\xc6\x81\xd0\xe9\xde\xbe\x6d\xa0\xb9\xa3\xb3\xb5\xcf\x81\x06\xbb\xeb\xdc\x2e\x00\xa0\xc1\x21\x34\x2d\xd8\x12\x86\x06\xa1\xe7\xbe\x0a\x6d\xd8\x7b\xdf\x36\xd0\x27\xee\xb4\x75\x57\x42\x33\x2d\x67\x1b\x45\x00\x86\xd9\x57\xdb\x68\x23\x10\xdd\x61\x4f\xff\x08\x97\x2f\x2c\x4f\x73\x6b\xf4\x6e\x4b\x5a\x90\x39\x5b\xc9\x04\xf4\xe6\x18\xf5\x9d\x81\x46\x4a\xf8\xdc\x3a\xb7\x40\x9c\x08\x18\x4f\x28\x15\x2a\x6c\xb8\x73\xeb\x90\x02\x15\x16\xd5\x79\xb9\x63\x78\x79\x46\x3a\x8a\xe2\x52\x99\x01\x3d\x49\x29\xf0\xd0\x52\xa1\x53\xc3\x35\x2f\xf3\x07\x80\xe0\x30\x9e\x79\x19\x8d\x06\xc2\x08\xf2\xa5\x9f\x05\x0c\xd5\xc9\xa5\xc5\x76\x7d\x24\x2c\x5c\x65\x4a\x14\x50\xcd\xc8\xbb\xd4\x56\x40\x87\x76\x78\x5e\x7e\x7c\x40\x33\x60\x7b\xb9\x30\x81\x01\xcf\xf6\xf4\xcc\x4a\xa1\x97\xff\x92\xb6\x75\x3d\x3e\xea\x81\x4a\x03\x2b\xe9\xd2\x15\x00\x3a\xe7\x57\x4e\x4b\x3f\x84\xe6\x8e\xcc\xa5\x77\x00\x74\x4a\x52\xe6\xad\x05\x01\xf4\x40\x66\x78\xdc\xa3\x30\xcc\x71\xb8\xdd\x16\x02\xba\xde\xc1\xad\x0e\x07\xba\x6e\xeb\xed\x44\x01\x91\x3c\xf1\x56\xef\x02\xd5\x00\xe2\x6d\x68\x10\xe8\xc1\x92\xb9\xcd\xab\x02\xaa\x61\x0d\x0f\x36\x14\x9a\x91\xda\xdb\x1c\x07\xa0\x17\xfb\x65\x2e\x14\x30\xe0\xd1\x9a\xf7\x72\x40\x4b\x9e\x48\xc6\xa8\xa1\x09\x74\x18\xb2\xa6\xa7\xf2\x09\x41\xc9\xe5\xbc\x35\x34\x81\x6a\x78\xea\x76\xd7\x1c\xa8\x24\xe3\xce\xdb\xb0\xc6\x2d\x9f\x10\xab\xe8\x76\x5f\xf0\xfe\x4e\xae\x60\x40\x06\x29\x80\xa1\x32\xbb\xa9\x93\x15\x9a\xbe\xe0\xa3\xfc\x01\x3a\xb4\x09\xd3\x22\x05\xa1\x41\x55\x37\x1f\xe3\x93\x40\x53\x01\x79\x7c\x98\x10\x7e\xe7\x8f\x91\xc7\xc7\xc8\x23\x4b\xf9\x71\xd3\x02\x68\x86\x81\x1e\xd3\x31\x80\xe6\x0e\xbc\x67\x85\x09\xcd\xad\xd5\x07\xd2\x19\xa1\x41\x0c\x36\x1f\xad\x19\xa0\x53\x88\x31\x1f\xa5\x01\xd0\x4c\x73\x7b\x34\x70\x80\x16\x8e\xd1\x89\x7e\x2c\x4a\x63\x5b\xe8\x31\xf7\x02\x68\x30\x4f\xcc\xc7\x08\x1f\xd0\x4c\x39\x79\xb6\x33\xb1\x29\x51\xe5\xd3\x7f\xdc\xd4\x02\x62\x3a\x13\x06\xd7\x80\xde\xb0\x07\x1e\x83\x6b\x8f\x07\x3f\xa1\xd6\x1f\xed\x14\x20\x0f\xcc\xb3\x47\x3d\x02\x54\x03\x44\x8f\x7a\x04\x68\x30\x64\xcd\x47\xb7\x02\x68\xe7\xb0\xe9\xb2\x89\xad\xc2\xc3\x26\x9f\xc8\x36\x9a\x7b\x66\x8f\x82\x0b\x68\x3a\xdd\x8f\xdf\x23\xd0\x12\x23\xff\x35\xfe\x04\x8c\x83\x30\xf6\xab\x51\xf2\x6a\x94\xa0\x0e\x5e\x8d\x12\x60\x40\x15\x35\xcd\xf6\x17\x2a\x67\x9e\xcc\x57\x33\x1b\xe8\x0d\xf5\x69\x8e\xbb\xd0\x49\xaa\x9e\xaf\xbb\xad\xaf\x29\x4d\x38\x7e\xaf\x36\x35\x30\x60\x56\x9a\xe6\xa5\x0b\x83\x8a\xce\xf9\x6a\x2d\x03\x41\x75\xe8\x34\x2f\x5d\x18\xee\xc0\xbf\x7e\xb5\x40\x83\x1d\x71\xbe\x7a\x8c\x40\xa7\x14\x62\x7a\x36\x9b\x10\x1c\xa6\x33\x5f\xbf\x6d\xa0\x4f\x76\x35\x3d\x4f\x4d\xe8\xc9\x96\xef\x6b\xb8\x06\x68\x50\x47\xce\x77\x3a\xec\x49\x95\x1d\xb6\xeb\x6b\xb0\x1b\xa8\x10\x08\x4e\x33\xe1\x85\x8a\xa7\xb2\x2e\x02\x1e\xeb\xfa\x19\x84\x05\x56\x99\x75\x11\xdd\x58\xd7\xcf\xc1\x9a\xf5\xf7\xc1\xac\x8b\x5d\x4d\xa1\x50\x26\xb0\x2e\xa2\x1b\xeb\x3a\x06\x57\x75\x9a\xc2\xa6\xc5\x55\x93\xa6\x6d\xd3\xcb\x55\xf1\x6b\x2a\x3e\xb1\xc4\xef\xaa\xc9\xed\xf1\xa0\x84\x09\xe3\xef\xba\xb0\x37\xd7\x55\xee\xff\xfd\x5f\x29\xbf\x15\xbd\x3c\x6e\x7b\x5d\x85\x7b\x35\xfe\x78\x7a\xaf\x1f\x14\x72\x90\x97\x27\x70\xaf\xeb\xa4\xf7\x8d\x7e\x9d\xf6\xfe\x07\x85\x54\x87\xa5\xca\x5b\x1c\xb7\x3d\xa9\x5c\x5a\x17\xb5\xe6\xeb\x3a\x7d\xa2\x4d\x3e\xf1\x07\x93\xea\xe3\x75\xb1\x9b\xbf\xae\x9f\xcd\x53\x38\x82\x66\xa9\x2b\x17\xc5\xcd\x93\x04\xed\x75\x55\x07\x54\x27\x57\xd1\x55\xb2\x6b\x16\xea\x73\xe2\x3b\xaf\xab\xfa\xc4\x1f\x14\x6a\xcd\x97\x67\x7e\x2f\xaa\xa2\x27\xf5\x86\xeb\x6a\x8e\xb1\x31\xc6\xc2\xed\x9b\x63\xfc\x2d\xdf\xc9\xae\xe8\xba\x9a\x13\xfd\x83\x42\x2d\xde\xb2\x04\x5a\x98\xf0\x48\x2c\xcf\xfc\x16\x0a\x09\x11\xeb\x6a\x8e\xb1\x33\x5f\x41\x53\x77\xbe\x3a\xf3\x55\xe6\x9f\xaa\x78\x59\x5a\xbd\x50\xf1\x93\x2d\xa6\x75\x75\xa7\xe0\x07\x85\xf0\xc1\xba\xba\xef\xb4\x33\x05\x49\x87\xba\x7d\xec\x4c\xc1\xc9\x6b\xee\xf6\x71\x30\x05\x93\x3f\x86\x53\x10\x4c\xfa\xc9\xdc\x85\x93\x1e\xbf\x6e\xc3\x8d\xb6\xae\xb0\xdb\x41\xb7\x4f\x3a\x11\xf6\x2b\x7e\x8b\x94\x42\xfa\x75\x85\x8b\x34\xec\x17\x93\x1e\xf6\xeb\x07\xb3\xf9\xb6\xc2\xb7\xf5\x83\x52\x4e\xba\x1a\xce\xf0\x4f\x8f\xcc\x56\xb8\x7d\xda\xaf\xb4\x5f\xcc\x5d\xda\xaf\x1f\x4c\xd2\x46\x97\x27\xa1\xaf\x2b\xc7\xef\xaa\xca\x80\xd2\x4e\xe4\x6f\xc1\x37\x27\x27\xed\x44\x32\x13\xd5\xdb\x3b\x13\xc9\x13\x1d\xf6\xf4\x89\x93\xc5\x50\x79\xe2\x74\x31\x4c\x66\xc2\x01\x4d\x67\x62\x32\x13\x95\x4e\x4c\x67\x62\x6e\xae\xf2\x8f\xce\xfd\x64\x31\x34\x3a\x31\x5d\x0c\x3f\x98\xcd\x8f\x7a\xba\xe0\x17\x63\xf4\xdb\x5c\x8e\x71\x05\x57\xb1\x22\x97\x6f\x7b\x31\x5f\x7e\x75\xcb\xf9\x5a\x3c\xf1\xfb\xa3\x4f\x5c\x8c\xd1\xaf\x6e\x39\xc6\xc5\x13\xfd\xa8\x97\x4f\xdc\x8c\xb1\xd1\xfb\xed\x18\x37\x4f\xf4\xf6\xdb\x27\x6e\x3e\xb1\xce\xab\xdd\xbe\xb4\x1f\x4c\xc8\x96\x96\x05\xdc\x8b\xd2\xec\x52\x3a\xb7\xdf\x8e\xf1\x3a\xb8\x8a\xa6\xcb\xdb\x5f\x8c\xd1\x2f\xf8\x72\x8c\x17\xb3\xfa\x35\x39\xab\x17\xb3\xda\x59\x13\x97\xb3\x7a\xd1\xaf\xce\x80\x2e\xfb\x75\xb1\xbe\xbe\x26\x5f\xed\xc5\x4c\x0c\xba\x7a\x39\x13\x17\x33\xd1\x19\xe3\xe5\x4c\xfc\x54\xf1\x6c\x7e\xfa\xb7\xb7\xff\x41\xa1\x04\x7a\x79\x4c\xbc\x30\x39\x74\x6b\x5d\xb7\x8b\xe9\x07\xa5\x78\xfb\xdb\x4e\xdc\xac\x9c\x60\x8c\x8f\x2b\xe7\x61\x8c\xca\x9f\xc7\x31\x3e\x8c\x31\xf9\xe3\xe3\x18\x1f\xc6\x68\x27\x1e\x3b\xf1\xf0\xc4\xf4\x5e\x3e\xf1\x61\x8c\x83\xd7\xf1\x38\xc6\x87\x6f\x28\x6d\xf2\x75\x3c\xac\x09\xa5\xd4\xe3\xeb\x78\x98\x09\xb5\xcd\xe3\x4c\x3c\xcc\xc4\x60\xbe\x1e\x67\xe2\x61\x4d\x28\x27\x1e\xd7\xc4\x6b\xef\x99\xaf\xd7\xde\xbf\x7c\x69\x6a\x9b\xd7\x2f\xed\x07\xa5\x38\x39\xaf\x03\x7a\x99\x55\xa5\xc9\xeb\x80\x5e\xbe\x47\x27\xe7\x75\x40\x2f\xfd\x9a\xcc\xc4\x6b\xbf\x5e\x56\x4e\x30\xa0\xd7\x95\xf3\x32\xab\x3f\xab\x74\x79\x60\xbe\x50\xa8\xe1\x5a\x37\x21\x96\x75\xa3\x3e\xc9\x7e\x58\x96\x8c\x0b\xa5\x84\x4d\xdd\xa6\xfe\xbf\xff\x9b\xe4\x5f\xae\x9b\xcd\x01\xa1\x70\x8a\xd8\xb2\x8a\x7c\x71\x14\xfe\xe4\x48\xa7\x75\x13\xc5\x5c\xd4\x87\x17\xcc\xff\x75\x63\x19\x09\x93\xd2\xff\x75\x53\x93\x24\x14\xc8\xbc\x96\x07\xe6\x0b\x93\x3d\xd9\x75\x17\xbb\x5a\x98\x55\x5e\xed\x8d\xc7\xb8\x38\x30\x7f\xb2\xa3\xb3\x3c\x30\x5f\x28\x9c\xb4\xbf\x3c\x30\x7f\xe1\x1b\xcd\x8e\xe6\xba\x8b\xfd\x2a\xbc\xc7\xb4\xe9\xb6\xe9\xe5\x2a\x9e\xa8\xc2\xbe\x55\xd8\x2c\x00\x0f\xcc\x5f\x78\x50\x13\xe7\x65\xdd\xa7\xb7\x3f\xf9\xb6\x59\x00\x37\xe1\x87\xc5\x89\xf8\x13\x6b\x66\x79\x22\xfe\xba\x55\xd8\xe9\xed\x9d\x89\xfa\x9b\x7b\xaa\xb3\xd6\x5d\x9d\xfb\xca\x37\xc4\x02\xb8\xab\x13\x8d\xc2\xee\x18\x25\xb7\x0a\x1b\x28\x9c\x1a\xb2\x3c\xfe\x7e\xe1\xc6\xcd\x8e\x10\xbd\x55\xd8\xb7\x0a\x1b\xd3\xe5\x56\x61\x73\xd6\xfd\x24\x8d\x69\x79\xd6\xfd\xe2\x60\xfb\x42\x69\xf6\xf2\x60\x7b\x61\xc2\x3f\xb0\xee\xe6\xab\x6d\x7c\xb5\x2e\xa6\x66\x27\x1a\x33\xd1\xe9\x6a\xb3\x13\x8d\x99\x98\x7f\x53\x7c\xac\xbb\x39\x51\x8d\x49\x47\x2e\x7a\x86\xbe\x50\x8a\x2b\xb2\x3b\xe9\x68\x7d\x32\x36\xd7\xad\xd6\xbf\xd5\xfa\x93\x3e\xaa\xd6\x6f\xd4\x3a\xbb\x4e\xeb\x56\xad\x03\x85\x73\x35\xd7\xad\x5a\xc7\x6d\x9d\x98\xa3\x4b\xb7\x55\x28\xa7\xab\x7b\xb8\xb0\x7e\x30\x7b\xd8\x54\x6d\xaa\x5c\xc5\xdc\x0d\x3b\x31\x98\xf4\xb0\xc9\x49\x1f\x37\x57\x79\x7b\x5f\x33\x26\x42\xf7\x1b\xd0\x44\x00\xca\x79\xb0\xfc\xc2\x4e\x04\x4f\xf4\x1b\x08\x9f\xf8\xb3\x07\xca\x89\xbd\x28\x89\xc1\xba\x7f\x9a\x7e\x76\x57\xb7\x9a\xfe\x0e\x9e\x58\xbc\xbd\x4f\x0c\x3e\x31\xd7\x5a\xf8\x89\xfd\xa0\x10\x82\x5b\xb7\xf6\x00\x30\x09\x59\xae\x3b\xed\xc4\xcf\x1e\x28\xf0\x20\xaf\x5b\x7b\xe0\x4e\x66\xd5\x15\x99\xce\xea\xcf\x06\x28\xd4\x70\x2d\x69\x13\xd6\x9d\xcc\xc4\x64\x40\xe9\x4c\x60\x22\x9c\x7e\x4f\x9a\x08\x37\x26\x02\xd5\xfc\xeb\xd6\x44\x00\x0a\xd5\x20\xeb\xd6\x44\xb8\x51\xfe\xc3\x97\xa6\xf2\xbf\x51\xfe\xec\x4e\xaf\x5b\xe5\x0f\x05\xc3\x24\x21\x74\xdd\xcb\xd7\xf1\x83\x82\xeb\xb4\xee\xe5\x9a\xd8\x83\xab\x78\xe2\x76\x0a\x7f\x50\xa8\x8c\x5b\x1e\xe4\xbf\x38\x69\x7f\x92\x8e\xbf\xee\xcb\x7e\xa1\x64\x29\x82\x59\xb7\x4a\xf6\x46\xc9\x52\x03\xbf\x0c\x3f\x08\x85\x3c\xa1\x75\xab\x64\x39\xa2\x7f\x12\x3f\x5a\xb7\x4a\x16\x28\x64\x68\xac\x5b\x25\x0b\x51\xc3\x64\xaf\x78\xdd\xb7\x4f\xbc\x7d\xa2\x4d\x3e\xf1\x07\x73\x60\xd1\xdf\xb7\xaf\xe3\x66\x15\x62\x9e\xdd\xb7\x9d\xb8\x99\x2f\x94\xff\x7d\x3b\x5f\x37\x73\xaf\x64\xb9\x9d\x7b\x94\x2c\x69\xc9\xcb\x53\xfb\x85\x02\x2f\xd4\x92\x07\x62\x41\xfa\x30\xc9\x27\x5c\xb7\x4a\x16\x28\x24\x2f\xaf\x5b\x25\x7b\xbf\x8c\x31\xe8\xc4\xeb\x18\x5f\xd6\x04\x06\xa1\xc1\x93\xc5\xe1\xfb\x73\xb8\xbe\x54\x53\x40\x61\x1f\x75\xdd\xaf\xfd\xfa\x69\xab\x49\x86\xd9\xba\x5f\xd7\xea\xcb\x5a\x45\xe2\x3d\x6a\xae\x07\xc7\x8f\x1a\x9b\xf5\xe8\xf8\x3d\x07\x9d\x40\xbc\x3d\xf8\xe1\x8b\xb3\xfd\x0b\xfb\x05\x4b\xe6\x09\x61\x12\x24\x5d\x8f\x5e\x1e\x50\x4e\x84\xe0\xa3\x9a\x02\x26\xc1\x80\xf5\x10\xb2\x14\x0a\x07\x1d\xaf\x47\xcd\xf5\xfc\x1c\xf8\xc9\x3e\xc6\x7a\x28\x8a\x15\x0a\x07\x8b\xad\x87\x90\xe5\xe2\x3c\xfe\x49\x05\xda\x92\x9f\x62\x71\x1e\x7f\x81\xbd\x7c\x3d\xba\x61\x0f\xb2\x9f\xad\xc2\xf5\x28\xfb\x81\x42\xbe\xd7\x92\xc5\x62\x3d\x3f\x15\x30\x83\xf9\xf2\x20\xff\xf5\x20\xfb\x49\xd1\x59\x8f\xb2\x1f\x98\xe1\xe4\xe8\xbf\x01\x85\xd2\xb5\xf5\x54\x87\x8d\xb3\x16\x68\x88\x47\x67\x8d\xb3\xfd\x0b\x21\xf1\x25\x49\x86\x30\xc3\x01\x11\xec\x16\xca\x89\x09\x2a\x6f\x86\x30\xc3\x01\x35\xbb\xda\x10\x56\xdd\x3f\xda\xd5\x46\xbf\x70\xe0\x25\xc9\x10\xca\xd9\x6d\xb2\x5f\x3f\x98\x14\x6c\xad\x47\x5f\xf0\xf9\x39\x7b\xe5\x44\xde\x3f\x04\xce\x85\x19\x0e\x48\x45\x01\x14\x4a\x21\xd6\xa3\xa2\x78\x50\x14\xe1\x80\x54\x14\x40\xe1\x6c\xc8\xf5\xa8\x28\x80\x19\x76\x95\x24\x19\xa1\x40\xff\xbc\x9e\x6e\xef\xf1\xff\xc8\x9b\x59\x8f\xfe\xdf\xd3\x59\x13\xe8\x8e\xa7\xbb\x26\x7e\x30\xe3\xeb\x84\x5d\x55\x9d\x60\x6f\x3e\xaa\x93\x67\x30\x5f\x76\x62\xd8\x89\x1f\x94\x13\x4b\xf2\x19\x76\x62\x04\x57\xd1\xaf\xe1\x8a\x1e\xac\x68\x2c\xc9\x67\x38\x85\x28\x1d\xc2\x48\xeb\x51\xe9\x00\xe5\x0c\x6f\xef\xf2\x45\xe9\xc4\xf8\x9b\xe2\x63\x3d\xea\xa4\x47\x9d\x84\x32\x7b\xd4\x49\x4f\xd0\x21\xef\x1b\x76\x28\xe8\x10\xe6\xe8\xa3\xf7\x09\x4c\xd2\x0d\xd7\xa3\x4e\x7a\xd4\x49\x98\xa3\x8f\x3a\xe9\x49\x5e\x0d\xf6\xe2\x93\xbe\x9a\x64\x0a\xfc\x63\x3a\x05\xe8\x11\xb6\x98\xd6\xa3\x1e\x79\xd4\x23\xa8\x4f\xf9\x4b\x16\x91\xc7\x49\xfc\x7b\x3d\xdb\xab\x36\x4b\x26\x6d\xf2\x3d\x20\xd5\xd3\xcf\x42\xa9\x0e\x14\x72\xfa\xd7\xa3\x37\x45\x7c\x72\xa6\x9f\x85\x52\xfd\x51\xaa\xdb\x09\xa5\x3a\x04\x25\x33\x95\x19\x3a\x45\x44\x31\x0b\x5b\x85\xcb\x28\xa6\x30\xd3\xa5\x7c\xd9\x09\xa5\x3a\xaa\x58\xce\x92\xf5\xfc\x3c\xa0\x99\x2e\x65\x3d\xa0\xe7\x66\x56\x1d\xd0\xed\xac\x22\xd5\xd3\x2f\x45\xa9\xfe\x28\xd5\x95\x78\x4a\xf5\xe7\xf1\x5e\xdc\xfe\xf1\x5e\xb8\x3b\x10\x5d\xad\x47\x77\xe7\xf9\xf9\x36\x33\x5d\x45\xfa\x36\x40\x81\x6c\x69\x3d\xfa\x36\xc0\x4c\xdf\xf6\xf3\xdd\x9e\x31\x62\xf6\x3d\x8f\x63\x7c\x99\x2f\x97\x89\x5e\x0b\x50\x28\x8a\x5d\x8f\x5e\xcb\x83\x86\x48\x5f\xad\x1a\x02\x28\xa4\x50\xac\xe7\xb5\x5f\x68\x88\xf4\xa5\xa9\x21\x1e\x35\x84\xf2\x5a\x0d\xf1\xe0\xc8\x70\x12\xc3\x7a\x55\x07\x2f\xe1\x3c\x48\x58\x96\x61\xd9\x45\x0c\xb6\x10\xec\x5e\x92\xb0\xac\x17\xa9\x0e\xcf\xc8\x7a\x95\xea\x40\x81\x6f\x61\x19\xa9\x5d\x2f\x41\x3f\xf6\x93\xd6\xab\xf3\x01\x14\xa8\x0e\xd6\xab\xf3\xf1\x62\xd1\x4f\x6f\xaf\x45\xff\x9e\xde\x8b\xdb\x6b\xd1\x43\x76\x32\x09\x76\xaf\x57\xd9\x0f\x14\x8a\x60\xd6\x5b\xbd\xd7\x0f\x26\x29\x27\xeb\x55\x1d\x00\x85\x74\xb2\x25\x4b\x8a\x30\x39\x74\x6b\xbd\x6a\x08\xa0\xb0\x7b\xb8\x5e\x35\x04\xe1\xe2\xc9\x71\xb5\xeb\xd5\xee\x7f\xab\xfd\xf2\xf6\xf6\xeb\x07\x93\xa2\xb4\x25\x4b\x8a\x50\xe0\xd3\x5f\xaf\xea\x00\x98\xec\xb6\xae\xd7\xd8\xdd\x8b\xec\xe7\xb4\xae\x25\x97\xca\x7a\x7f\xc2\x7d\xb2\xf7\xb9\x5e\x5d\x01\x88\x53\x0a\x8c\x62\xcb\x98\xf5\x7a\x91\xd7\x6c\x77\xad\x57\x79\x0d\x94\x8a\x2d\xf6\x2a\xaf\x5f\x64\x2c\x49\x7a\xeb\x55\xc6\xc2\xa5\x52\x60\x80\x5c\xaf\x32\xf6\x1d\xcc\x04\xd2\xf3\xd5\xf2\x7e\x91\x9e\x15\x83\xf0\x55\x7a\xbe\x3f\x01\x35\xc9\xd0\x5f\xaf\xa1\x32\xa0\x54\x0c\xc2\x57\x61\xf5\x12\x17\xa3\xca\x77\xbd\xda\xc1\x40\xa9\x18\x84\xaf\x76\xf0\x8b\xb0\x82\x95\x6f\xbd\x0a\x2b\xa0\x70\x26\xea\x7a\xd3\xb9\xc7\x34\x66\xcb\x77\xbd\x9a\xc6\x40\xe1\x54\xac\xf5\x1a\x2a\x7b\x31\x7a\xa7\xeb\x4b\xa3\xf7\xfd\x19\xba\x05\xfa\xb0\xf5\x4e\x17\x00\x41\xb0\x03\xde\xf3\x65\x4c\x5c\x28\x6c\xe7\xaf\x77\x3a\xc8\x9f\x6d\xfc\xbb\xcc\x36\x67\xec\x07\xa5\xba\x9c\xa6\xcb\x1c\x1b\xf7\x20\x49\x76\xbd\x1a\xb9\x2f\x21\xa8\xea\x7a\x32\x04\xf5\x6e\xef\xd6\x98\x59\x05\x29\x50\x2a\x46\xe1\xbb\xbf\xbb\xbd\x5e\xc6\x0c\x29\x49\x81\x62\xd8\xfd\x55\x92\xbe\xd7\xf0\x32\x86\x75\xf9\x55\x5e\x3e\x94\x7e\x5c\x3e\xf4\x22\xee\x0e\x77\xd6\x7a\xc9\xa6\x14\x8a\x81\xf7\x57\xf1\x0a\xfc\x2e\xf3\x09\x76\xe4\x27\x5f\x4b\x75\x19\x2b\x5f\x5f\xec\xe1\x03\xfe\x85\x25\x97\x8c\x50\xaa\x2b\xd4\xd8\xd4\x7b\x3b\x52\x42\x58\xaf\xe2\x14\x28\xd5\xc1\x2b\x4e\xdf\xc7\x79\x43\xb9\xbe\xca\xd3\xf7\x61\x08\x88\x7e\x69\x68\xd6\xfb\x38\x21\x04\x52\x64\x98\x59\x2f\x31\x9f\xea\x82\x37\xe6\xf3\xbe\xf6\x8d\x88\xc5\xab\xac\x04\x4a\x6d\xe3\x6f\xbd\xfc\x2a\x4a\x21\xa5\xf9\xdd\x85\x95\xa1\x2c\x05\x0a\x25\x9f\x4b\xa2\x9a\xf5\xbe\xf6\xe9\xa7\x69\xb6\xb4\x34\x1b\x0e\x9a\xc2\xbe\xc1\x96\x83\x66\x43\x38\x53\x8e\xe3\xb7\x68\xf7\x41\xc0\x47\x28\xf5\xf7\x15\x6e\x49\x68\x36\x5c\x32\xbf\xcb\x82\xb6\xcb\x36\xe6\xeb\x67\x5c\x6d\xf9\x65\x36\x64\x32\xe5\xe0\x24\xa0\x2d\x9b\x8c\x50\xa8\xc9\xdf\xb2\xc9\xec\xa3\x54\x2f\xe3\x6e\xc5\x87\x16\x1f\x5a\x69\xf2\xa1\x85\x87\xb2\x5d\xb1\x8f\xe2\x43\xd9\x59\xa1\x14\x70\x4b\x0b\xb3\x8f\x33\xbc\x8c\xbb\xb1\xb1\x2d\x14\x76\x35\xf6\x41\x58\x66\x1f\xcd\x87\x9e\x5c\xd6\x7c\x28\xc1\x0e\x72\x42\xf7\x41\xb0\x63\x43\x94\x52\x8e\xe2\x13\x9a\x77\x6b\xde\x6d\xd2\xf4\xdd\x6d\x7a\x19\x4f\x40\xc6\x09\x05\xfe\xc8\x2d\xa1\x8a\xf0\xbb\xcc\x27\x38\x84\xc6\xbc\x0d\xe6\xad\x39\x6f\xec\x6c\x1c\xc4\x5d\xb7\x2c\x2b\x42\x61\xcb\x65\x1f\x18\xbd\xfb\xe8\xa7\x97\xd1\x11\x38\x55\x36\x6c\x29\x85\xe2\xeb\x7d\x74\x87\x80\xf1\x7a\x94\xaf\x2d\x6c\x0b\x2e\xa3\xbb\xdd\x51\x11\x0c\x39\x08\x97\x6e\x89\x56\x84\xc2\xde\xcc\x3e\xba\xa3\x62\x93\xe3\x20\x5e\xba\x65\x5a\x11\x0a\x27\x5c\x6f\x99\x56\xf6\x11\x8e\xd4\xb6\x70\xa4\xe1\x65\x74\x37\xbe\xcb\x5c\x21\x93\xcb\xd2\x15\xa2\xc0\x0d\x26\x24\x5d\x21\xc9\xcb\x22\x52\xb3\xe5\x13\x11\x0a\xac\x10\xfb\x48\x57\x48\x6e\x2f\x63\xa4\xe9\x43\x93\x87\x86\x4d\x3e\xf4\x07\xe5\x38\x5d\x48\xe9\x5c\x26\xfa\x2e\x18\xd5\xb4\x1f\xc4\x1e\x0e\x4a\x4f\xb7\x2c\x23\x42\xe1\x18\xa3\x7d\x4c\x3f\x99\x19\x5e\x46\x47\xa6\x73\x39\x79\xf5\xc1\xbc\x4d\x5f\xbd\xa2\x99\x80\xc7\x3e\xa6\x7d\x53\x34\x27\xfd\x98\x4e\xe5\xfc\xfa\xc6\x24\x4d\xfb\xb6\xd0\xfe\x49\x3f\x96\xaf\x79\xf9\xd0\xd3\x36\x1f\xba\x78\x59\xc9\x10\x96\x2f\x8b\x9d\x8c\x83\x08\xc4\x3e\x96\x1d\x59\x8c\x34\xe9\xdb\x76\xa4\xdb\x91\xfa\x2d\x6c\x47\xba\x19\xe9\x64\x54\xdb\x91\xee\xd3\xcb\x18\xc2\xb6\x23\x9b\xf5\x36\x99\xde\xed\x7a\xdb\x5f\xdf\x18\xc2\xb6\x6f\x9b\x4f\x66\xd2\x8f\xed\xda\x52\xbb\x10\x85\xd8\xc7\x76\x42\xd4\x2e\x8a\x95\xed\x84\x5c\xbe\xfa\xca\xb2\xbc\x7c\xf5\x97\x0f\xa5\x1f\x97\x0f\x55\xbb\x9c\x8d\xbb\x5d\x2e\x72\xb4\x4b\x73\xd1\x5c\x4e\xc8\xf5\x7a\x19\xc3\xba\x1d\x3d\x36\x78\x73\xd1\xdc\x8e\x54\xb5\x71\x2a\x1a\x6f\x1f\x8a\xda\x68\x07\xd3\x7b\xbb\xde\x6e\x47\xaa\x68\xbc\x1d\xe9\x0f\x0a\x67\x5d\xec\xe3\x76\xa4\xb7\x0f\x55\x98\x3d\x3e\x94\xe0\x4a\x53\xe4\x3d\xce\x38\x91\x94\xe3\x54\x60\x3c\x3e\xe1\x07\x85\x63\x45\xf6\xf1\x38\x52\x25\x39\x75\x65\xbb\x28\xc9\xcb\x61\x47\xe6\x41\x5b\xda\xe6\xe8\x27\x4d\xcb\x26\x97\x03\x13\x57\x08\x77\xec\x82\xd8\x66\x57\x71\x17\xc5\x76\x51\x6c\x63\x65\xef\xa2\xd8\x06\x0a\xdb\x8a\xbb\x28\xb6\x81\x72\x60\x2d\x6f\x39\x5e\x76\x41\x94\xb3\xaf\xb8\x8b\x92\xbc\xb8\x45\x8e\xb9\xbc\x4b\xb1\x6f\x85\xbe\x95\x41\x93\x7d\x2b\xcb\xcb\x82\x36\xfb\x86\x74\xe7\x98\xb2\x5d\x94\xee\xe5\x3c\xbd\x8c\x36\x98\xba\x76\x39\x99\x24\xbe\x85\x42\x72\xd3\x2e\x2a\x81\x6a\x7f\x55\x02\x40\x69\x27\x7d\x53\x09\x94\x73\x7b\x59\xa7\xed\xb2\x8d\x09\x39\x6d\x72\x42\x6a\xf5\x32\x1e\x5a\x1d\x56\xf5\xa1\x0c\xa1\xfa\xd0\xca\x1a\xfc\x99\x77\x7f\x69\xef\x5d\x08\xd7\xec\xc2\xde\x3a\x3b\x99\xbb\x54\x27\x02\xcb\xfb\xa8\xde\xb9\x39\xfb\x44\x62\x38\x82\x7b\x97\xe6\x4c\xab\xbf\xb0\xc4\x76\x51\x7f\x01\x05\x02\xe9\x5d\x88\xbb\xec\xa2\xfe\xc2\xc4\xda\x45\xfd\x05\x94\xf6\x35\x39\x11\xcd\x87\x56\x66\xbf\xfb\xd0\xee\x43\x99\x88\xee\x43\xbb\x0f\x6d\xfc\xb5\xfb\x50\x34\x4e\xfb\xfe\xe9\x44\x74\x1f\xda\x18\x82\xea\x05\x28\xd0\x9c\xec\xa2\x76\x29\xdd\xd9\xe7\x2b\x2b\xdd\xd9\x47\xbd\xb4\xc6\x42\x56\xbb\x94\x6e\xdf\xb0\x2c\xca\xb0\x6f\x83\xe5\xd8\x6c\x72\x39\x86\x0f\x45\x53\xcb\x84\xb3\x0b\x16\x3e\xdb\xb6\xbb\x84\xd3\xab\x62\x52\x36\x17\x15\x13\x50\x9a\xa3\x0a\x1f\xaa\x62\xa2\x8c\x71\x17\x15\x13\x50\xd8\xb8\xdd\x45\xc5\x04\x94\xa3\x26\x4f\x48\x27\x89\x28\x79\x73\xf0\xe9\x0a\x4d\xfb\x96\xbc\x99\xb4\x6f\x69\xdf\xe8\x47\xda\xb7\xf4\x1b\xc0\x48\x93\x93\x47\x28\xa4\x5e\xee\xa2\x4a\x03\x7e\x97\xd9\x66\x7f\x51\x73\x0d\x49\x54\x54\x73\x65\xda\x37\x85\x82\xca\xaa\xe0\x47\x34\xa7\x72\xba\x42\xd4\x5f\x75\x32\x7a\xf5\x17\x50\x9a\x53\x39\x7d\x59\xea\x2f\x65\xb3\xb4\x3f\x42\x21\x09\x78\x17\xf5\x57\x51\x31\x29\x74\x8b\x8a\x09\x28\x6c\x3f\xef\xb2\xbc\x1b\x16\xfd\xf1\x89\x9d\xcb\xbb\x5d\xde\x8d\x07\x5c\xde\x4d\x71\xfd\xcd\xa5\xe2\x1a\x28\x6c\x53\x6f\xc9\x71\x76\x51\x5c\x7f\x93\xa4\xb8\x2e\x8a\xeb\x6e\x93\x23\xd5\xca\x67\x4f\x7d\x4b\x8f\xb3\xe1\xc2\x29\xd0\x8a\xef\x72\x3b\x6f\xf7\xe3\x65\xfe\xf5\xb5\xed\xe5\x32\xfe\xa9\x04\x2f\x3a\x03\xdf\x5f\x1f\x47\x8a\x33\x00\xd1\xe3\x96\x33\x67\x97\xc7\x87\x62\x08\x95\xc7\x87\xb2\x4d\xdc\x30\xa1\xca\xe3\x48\xf5\x19\x48\x49\xde\xe5\xf5\x09\x2f\x23\xc5\x48\x2b\xaf\x23\xc5\xb2\x3f\xd8\x0c\xdf\xe5\x75\x2e\x5f\x1f\xca\xbc\xbd\x3e\xf4\x65\x21\xb1\x1b\xbe\xcb\xeb\x42\x7a\x59\x48\xf6\xe3\xb5\x1f\x44\x53\x8e\xe6\xea\x7d\xed\xc8\xeb\x84\x30\xf8\xd7\x09\x51\xe3\xb0\x6b\xbe\x4f\x35\xce\xa9\xa3\xc0\x1e\xf9\x3e\x75\x14\xce\x03\x49\xc0\x10\x4e\xb6\x81\xf7\xa9\x62\x62\x63\x7b\x9f\x2a\x26\xa0\xb0\xeb\xbf\x4f\x42\x31\xfb\x54\x31\xb1\x67\xbd\x4f\x15\xd3\xa9\x62\x0a\x1f\x4a\xdf\x4e\x1d\x85\x86\xb5\x71\xaa\x5e\xce\xe2\x43\xe9\x47\xf1\xa1\x05\x39\x0c\x33\xe4\x96\x48\x48\x28\x8d\xaf\xfe\x54\x09\x01\xbf\xcb\x78\x68\xb1\x23\x2a\xa6\x48\x9a\x96\x4d\xaf\x97\xd1\xdf\xd3\xd1\xb3\xf3\xdb\x10\x0e\x27\x3b\xbf\xfb\x54\x47\xb0\x25\xbd\xe5\x25\x12\x4a\xc3\xbe\x3b\x09\xc8\xec\xb3\xb2\x1c\x48\xfd\xdc\x27\x11\x19\xa1\xf8\xb2\xce\xea\x48\x95\xa0\xa4\x70\xee\x53\x09\x7a\x2a\x41\x79\x59\xa7\x12\xf4\x54\x82\xc2\xec\xb7\x4f\x25\xe8\xa9\x04\xf5\x65\xf5\xef\x6e\x0e\x01\x93\xe1\x54\x82\x9e\x4a\xd0\xb4\xc9\x21\x0c\x1f\xca\x4a\x3a\x87\x0f\x25\xc2\xfc\xbd\xe6\xe1\x84\x84\x23\x0d\xfe\x1a\x8e\x34\x78\x0b\x18\x95\x67\xf8\x16\x14\xb4\xdd\x27\x28\x68\x4f\x05\xad\xab\x41\x41\x7b\x6a\xda\xb3\x83\xb8\x4f\x4d\x7b\x28\x8b\x4a\xfb\x9a\xbc\x5b\xfa\xb2\x10\x3f\x67\x3a\x7a\x25\x28\x26\xea\xa9\x04\x3d\x31\xe3\x8f\xe1\xab\xd7\x8e\x87\xed\xa8\x7c\x8b\x46\x31\x08\xdb\xd1\xef\xb2\x41\x9b\x0f\x55\x34\xce\xff\xa0\xbc\x4f\x25\xe7\xa9\xe4\x1c\xbe\x72\x25\xe7\x89\xe5\x4f\x5a\xc5\x3e\xb5\xfc\xcf\x69\x9f\x90\x75\xe7\xb2\x4f\xcb\x3e\x31\x11\xcb\x3e\x61\xe5\x1f\xf0\xbd\xed\x53\x33\x1f\x28\xdf\x0a\x5d\x76\x93\x5d\xcc\x83\x3d\xcb\x7d\x2e\x3b\xb2\x06\x97\x31\x11\xcb\xf5\x8e\x33\x70\x90\xc9\xb9\x4f\xbd\x01\xa0\x50\x05\xb9\x4f\x9d\x01\xa0\x1c\xe3\xf4\x09\xbe\x24\x12\x9b\x48\xf8\xdc\xe7\xf2\x25\x2d\x87\x70\xf2\x04\x9d\x06\xa0\x74\xa7\x50\x9f\x01\xe2\xa7\xdf\x65\xfc\x75\xdb\xdf\x1f\x14\xf2\x39\xf6\xb9\xed\xee\xe5\xbc\x61\xf5\x9c\x97\xf3\x86\xad\xfe\x7d\x3d\xda\xea\xa7\x3a\x82\x44\xf3\x2d\x1d\x94\x50\x60\x12\xd8\xa7\x3a\xe2\x54\x47\x0c\x84\xff\xa9\x8e\x00\x4a\x77\xc6\xd5\x11\x40\x39\x06\xc2\x5f\xda\x28\xa1\x70\x0c\xc9\x3e\x6f\x67\x5c\x93\x9e\xc3\xe4\xf6\xa9\x49\x7f\x12\x7e\xef\xc5\x26\xfb\x76\x2f\x2f\xa3\xbf\xb7\x73\x89\x7a\x21\x8f\x64\x9f\x6a\x17\xe0\x77\x99\x7d\xb3\xbf\x68\x9c\xee\x6b\x56\xe3\x9c\x8f\x7d\x43\x95\x9c\x8f\x7d\x7b\xec\x1b\x83\x7f\xec\xdb\xe3\xf4\xfa\x19\x3f\x4e\xef\xc3\xab\xf7\x35\x3f\xbe\x7a\x15\x13\x85\xb9\xfb\x54\x31\x01\xa5\xfb\x9a\x1f\xbf\x9e\xc7\x21\xa0\x5e\xce\xc7\x21\xa0\x85\xba\xaf\x59\x25\x74\xbe\x2e\x4b\xf4\xc6\xf9\xda\x91\xb7\x73\x19\x7d\x7b\xfd\x3e\xc9\x43\x3a\x06\x5e\xfb\xf9\xda\x11\x34\x0e\x07\xe7\x6d\xc9\xb5\xf6\xf9\x3e\x5e\xe6\x13\x5e\xdb\x78\x28\x76\x66\x55\xbb\x54\x22\x53\x14\x55\xed\x6a\x64\xaa\xaa\x70\xa0\xdf\xde\xf2\x72\x09\xa5\xd7\xa4\xa9\xdb\xe4\xe0\x11\xf4\x55\x85\x03\x14\x92\x5f\x76\x55\xe1\x54\x5d\x1c\xf8\x05\xb6\x94\x5e\xbb\xe2\xcf\xf4\x66\x93\x0f\x2d\x0e\x1e\xb9\x56\xc9\xd3\xde\x15\x85\x43\x92\xcc\xae\x2a\x9c\x6a\x64\x8a\x72\x92\x5d\x8d\x4c\x01\x05\x2a\xe2\x5d\x49\x21\xda\x55\xeb\x99\x43\x35\xb7\x8c\x57\xbb\x12\x9c\xe9\x18\x38\xd5\xd8\x4c\x55\xf6\xb3\xe5\xb9\xab\xb2\x1f\x28\xfd\x6b\x72\x08\x9d\xf7\xc7\x9e\xe7\x96\x2c\x6b\x57\x64\x7f\xff\x9a\xbe\x87\xde\x5e\x46\x7f\x0d\xce\x54\xf4\x41\xb7\x49\x75\x50\x49\x5f\x39\xa8\xef\xdd\x75\xd8\x37\xa2\xe8\x1c\xf4\xbf\xeb\x70\xa4\x63\x78\x19\x13\x32\xec\x2f\x6a\x83\x63\xb3\x76\x55\x6b\x00\xbf\xcb\x98\x90\x61\x7f\xd1\x24\xfd\xfb\xe7\xb2\xe9\x1b\x02\xc3\x1a\x0e\x61\xb0\x68\xbe\x7f\x3a\x95\xc3\x21\xf0\x79\xc8\x01\x26\x94\xfe\xfd\xf3\xb5\xe9\xf5\x32\x86\x15\x0e\x8b\x64\xdb\xee\x3f\xc3\x77\xaa\xfa\x82\x08\x64\x57\xd5\x17\x50\xfa\xf7\x4f\x17\x92\xee\x04\x25\x68\xbb\xea\x4e\x00\xa5\x7f\xff\x74\x54\xf1\x3d\x94\xfe\xea\x27\xd4\xf4\xa1\xcc\x9b\x3e\x01\x50\x8e\x70\xf5\xea\x14\x54\xb4\x1c\xfc\x8d\xbb\xaa\xe5\xaa\x01\x2c\xe8\x36\xb7\x0c\x65\x42\xa1\x90\x78\x57\x8d\xfd\xaa\x96\xe3\x40\xe0\x5d\xd5\x72\x40\xa1\xb6\x6b\x57\x83\x55\x55\x2d\xc7\x76\xe9\x96\xdc\x4c\x28\x64\x2e\xed\xaa\x1a\xab\xf3\xbb\x1b\x43\x50\x3f\x55\xf4\x13\xa9\x4b\xbb\xaa\x9f\xaa\x96\x3d\x5c\x0b\xbb\x6a\xd9\x03\x45\x4b\xa0\x6a\xd9\x57\x35\x0a\x95\x5b\x5b\xca\x33\xa1\x74\x07\xaf\x46\xa9\x86\x75\x12\x81\x5f\x0d\xeb\x54\xc2\x3a\xdd\xc1\x1b\xd6\xa9\xaa\x0a\x48\xcf\x76\x55\x55\x00\x05\x66\xad\x5d\x2f\x1f\xea\xa6\x41\xd6\xfa\xb7\xf2\xae\x97\xeb\x4c\x4d\x82\x09\x57\xaf\xaf\x4f\xb7\x77\xa1\x9f\x97\xeb\x8c\x3d\x85\x9e\x3e\xdf\x75\xa6\xc2\x49\xa5\x93\x0a\xa7\xaa\x70\x7c\x21\x2a\x9c\xaa\x53\xc2\x49\x5b\xbb\xea\x94\x54\x72\x60\x39\x9f\x6a\xd7\xdb\x11\xde\x7c\x51\xa9\xd8\xb9\xfd\xa2\x50\x42\xdd\xf7\xa6\x0e\x02\x7e\x97\xd1\x11\xe3\x4a\x55\xbd\x94\xf6\xc3\x2f\x4a\xbd\x94\x4a\x27\xf5\x52\x55\x2f\x29\xc3\xd4\x4b\x55\xbd\x04\x6b\xec\xae\xea\xa5\xaa\x5e\x72\x15\xa8\x97\xaa\x81\xab\xc4\x31\xae\xba\x3d\x40\x21\x2d\x6c\xcb\x2f\xb7\xab\x7a\x29\x15\x62\xea\x25\xa0\x68\xd5\x55\x63\x59\x55\xbd\x94\x0a\x31\xf5\x52\x55\x2f\x61\xf7\x57\xf5\x52\x7d\x5d\x40\x4a\x27\xd5\x06\x50\xfa\xb4\xc9\xee\xea\x94\xb0\x1f\xbd\x9b\x6a\xa3\x1d\x5f\xdb\xaf\xbf\x4d\xa9\x0e\x14\x18\x9d\x76\x33\x70\xd5\x8c\x48\x51\x75\xbf\xe5\xb5\x13\x0a\xa7\xae\xed\xa6\x2f\xd0\x94\xea\x94\xbd\xee\xa6\x54\x6f\x4a\x75\xb6\x47\x9a\x52\xbd\xe9\x1f\xb0\xf7\xbb\x9b\xfe\x01\x50\xa8\xe4\xde\x4d\xff\xa0\x19\x91\x82\xe4\x66\x37\x23\x52\x8d\xd4\x50\x6d\xda\x46\x6a\xa8\x50\x0e\x8a\x3b\xb7\x6c\x7a\x42\x81\x92\x74\x37\x83\x54\x4d\x6f\x83\xe2\x9a\xdd\xf4\x36\x80\xa2\xe9\x2b\xe9\xde\x6e\x86\x75\xa0\x33\xda\xcd\xb0\x0e\xb4\x7a\x85\x93\xc3\x77\x33\xac\xd3\x54\x4c\xd4\xd2\xec\xa6\x62\x02\xca\xb0\xbb\xdd\xbb\xa9\x98\x26\xf1\x9a\xa6\x62\x02\xca\xc0\xa6\x6c\x2a\xa6\xa6\xb7\x01\x6b\xca\x6e\xaa\x97\x36\x7c\x28\xf3\x36\x7c\xe8\x38\xbd\x8c\xbb\x91\x44\x29\x94\x81\xb1\xd8\x54\x42\xc0\xef\x32\x86\x30\xec\x08\x8a\x49\xbb\xbb\xa9\x98\x1a\x6a\xe3\x98\x48\xfa\xa6\xde\x00\xca\x38\xfc\xa7\x2f\x4b\x71\x0d\x8f\xf7\x6e\x8a\x6b\xa0\x0c\x67\xdc\xb0\x4e\x33\x5e\xc3\xe1\x25\xbb\x19\xaf\x01\x8a\x56\x7c\xd3\x01\x69\xc4\x3f\x0e\x36\x82\x77\x33\x00\x02\x14\x0a\xc9\x77\x23\x17\x71\x37\xac\xf8\x72\xd8\xa6\x19\x0f\x14\xa8\x04\x76\xd3\x8a\x6f\x08\xd8\x42\x49\xdb\x6e\x0a\x58\xa0\x40\xdd\xbf\x9b\x02\xb6\x21\x60\xcb\x81\x2d\xd7\x14\xb0\x40\x81\x6e\x7d\x37\x05\x6c\xdb\xd6\x09\x11\xee\x6c\x1a\xde\x40\xd1\xc3\x68\x06\xeb\x81\x52\x0e\xc2\x88\x8d\x14\x48\xa1\xe8\x61\x34\xe3\xf7\xc0\xef\x32\xfa\x6b\x00\x1f\x28\x7a\x18\x6d\xbb\x7a\xd9\x0a\x2e\x9c\x32\xb2\xdb\xe5\xf4\x5e\x4e\x2f\x6f\xe1\x72\x7a\x2f\x27\x04\x99\xd7\x14\xfe\x40\x81\x5c\x6c\xb7\xcb\xee\x5e\x4e\x08\x52\xaa\x29\xfc\x81\xa2\xbf\xd2\x14\xfe\xed\xf2\xa1\xae\x5e\xe5\x31\x50\xf4\x57\x9a\xf2\xb8\xdd\x4e\x08\x16\x4e\x33\x22\x04\x14\x2a\x06\x77\x53\x1e\xb7\xdb\xe9\xc5\x4e\x69\x8a\xcb\x86\x68\x1c\x4e\xa5\xa2\xb1\xdd\x3e\x14\x5b\xa0\x29\x1a\x81\x42\x69\xfb\x6e\x8a\xc6\x86\x15\xff\xf3\x00\x68\x73\x91\x3f\x8e\x94\x07\x28\x1a\x81\xdf\x65\xb6\xd9\x11\x2c\x7b\x6a\x9b\x77\xd3\xb2\x6f\x8f\x7d\xc3\xd8\x68\xc6\x92\x1a\x39\x38\x03\x23\xbb\x3d\xf6\xed\x07\xa5\x70\x4a\xd0\x6e\xd4\x1c\x08\x65\xf8\x9a\xb5\xec\x81\xdf\x65\x0c\xcb\xf8\x12\x50\x86\xaf\xf9\xf5\x3b\x7d\x7d\x0b\x68\xef\xf6\xfa\x16\x08\x43\x0d\x5f\xb3\x51\xa8\xf6\x3a\x21\x68\xca\xae\x3c\xee\xc5\xf7\x8c\x4e\xe9\xc6\x6b\x3a\xe6\x33\xc9\xb4\xbb\x6b\x3e\x77\xe4\x31\xd5\x6a\x7f\x6a\xef\xae\xb8\x06\x0a\xd5\xe7\xbb\x2b\xae\x3b\x1b\x08\x56\xb3\xed\xee\x06\x42\x47\x5c\x73\x9c\xd6\xee\x8a\xeb\x7e\x56\x2f\xfb\xcd\x44\x3f\xed\x13\x1b\x08\x9c\xe2\xb2\xbb\x1b\x08\x40\xa1\x6e\xec\xf7\x23\x6c\x5b\x5c\xe6\x3f\x7d\xc0\xc9\xa8\xa9\x0c\xdb\xbd\x3a\x6a\xd2\x39\x29\xa2\xdd\x9d\xfc\x9d\xdd\xab\x0f\xc5\x31\xee\x8a\xeb\xae\xb8\x46\x98\x76\xc5\x75\xaf\x4e\x04\x4b\xa3\x57\x47\x4a\x42\xa7\xde\x6d\xaf\x8e\xb4\xfa\x50\xde\x79\x77\x87\xa0\xb3\x43\xc0\x11\x46\xbb\xbb\x43\x00\xfc\x2e\xe3\x6e\x24\x6b\xee\xce\x0e\xb7\x4e\x70\x77\x87\xbb\x37\xe7\xcd\x49\x72\x9f\xba\xb3\x01\x4d\x66\xf1\xee\xee\x3f\xf7\xe6\x43\xf9\x18\xbb\xaa\x04\x28\x3a\xc1\x9d\x94\x9d\xdd\xbb\x23\xc5\xef\xe9\xaa\x92\xae\x2a\x41\x82\x77\x55\x49\xef\x56\xf8\x39\x7a\x03\x57\x1d\x4f\x45\x27\xb8\xeb\xa8\x00\xa5\x14\x3b\x42\xfe\xe4\xee\xaa\x12\x6c\xf5\xae\x2a\xe9\xd3\xbe\xe1\x82\x74\x2d\xd8\xbe\xbc\x8c\x7f\x6a\xc1\x76\xe5\xb0\x5b\xb0\x32\xa4\x0a\x85\x8c\xe6\x2d\x43\xea\xee\xca\xe1\xd3\x77\xaa\x1c\xee\xca\xe1\xe1\x3f\x7d\x0b\x44\x58\xcc\x14\xdf\xdd\x08\x4b\x47\x36\xc3\x9a\xb9\xbb\xa2\xb9\x13\x3a\x31\x55\x7c\x77\x43\x27\x50\xa9\x16\x7d\xe5\xee\xde\x2a\x50\xcc\xef\xde\xdd\xbd\xd5\xae\xb8\xe6\x33\xee\x8a\xeb\xbe\x2d\xe5\x43\x2a\xc8\xc2\xba\x3b\x65\x61\xf0\x9a\xef\xbe\x9d\x37\xe5\xb0\x9b\xa6\x5d\x39\xdc\x95\xc3\x18\xbc\x5d\x39\xdc\x95\xc3\x24\x5c\xef\xae\x1c\xee\xca\x61\x1c\xe3\xae\x1c\xee\x04\x62\x0a\xe7\x02\xec\x6e\x20\xa6\x63\x2b\x0f\xbf\x76\x4d\x65\xa0\x94\xd3\x85\xaf\xad\xdc\x89\xba\xc0\x1d\xb4\xbb\x41\x97\x6e\x85\x17\x89\xcc\xbb\x6b\xdd\x02\x85\x93\xce\x76\xd7\xb8\xed\xca\x3a\x37\x4d\xbb\xb2\x0e\x28\x7a\xe3\xdd\xb8\x79\x57\xec\x90\x97\xba\x87\x62\x67\x58\x2f\x44\xbe\xe4\x1e\x9a\x81\xa3\xd8\x91\xa4\xe9\xb4\xa9\x5a\xca\x18\xb4\x35\xdb\x18\x3d\x96\xe1\x30\xed\x64\x28\x9d\x48\x98\xdb\x43\xf1\x33\x14\x3f\xdf\x03\xe8\xef\xb0\x2e\x97\x5c\xb8\x3d\x4e\xff\xaa\x5c\x99\x36\x0d\x9b\x18\x16\x89\x62\x7b\x68\xcc\x01\x85\x54\xf5\x3d\xdc\x71\x1c\x0a\x0c\xd2\xb1\xf6\x50\x60\x0c\x05\x06\x26\xea\x50\x60\x0c\xeb\x6e\xdc\xb6\x1b\xee\xee\x01\x05\x96\xbc\x3d\xdc\xdd\x83\x6d\xb5\x7c\xf9\x2f\xd2\xad\x0a\x65\x4c\x9b\xbc\xdb\xf0\x6e\xbc\xad\xa1\x27\x0f\x14\x8e\x7d\xde\x43\x47\x1e\xfe\xd0\xdf\x65\xfc\xd5\x9d\xa0\xa1\xd5\xc3\xc6\xf2\xd0\xea\x19\x7e\x94\x6e\x0c\x0e\x3f\x4a\xa0\x90\x48\xbf\x07\x47\xf6\xee\xe1\x47\xe9\xc6\xe0\xf0\xa3\x04\x0a\x99\xf4\x7b\xf8\x51\x8e\xaf\x26\x13\xe1\x3b\x0c\x5e\x0e\xac\x1e\xd8\x65\xf6\xd0\xea\x19\x5f\xb9\x25\x72\x45\x42\x52\xa1\x40\x38\xb2\x87\x5f\xdb\xb8\x7d\x28\x72\x70\xe8\x9b\x01\x25\x30\x51\x25\xf0\xdc\xb0\x62\xfe\x84\x14\x23\x55\x6b\x02\x85\x23\xf2\xf6\x50\x69\x0e\x2b\xf5\x0c\x10\x8e\xd7\xbb\xbd\xde\x8d\xc1\xbf\xde\x4d\x45\x6a\xe4\x6f\xa8\x48\x81\x12\x58\xb2\x92\x61\xee\xe1\x8a\xe6\xf0\x91\x2d\xf5\xe5\x8e\xc3\x21\xd8\x74\xda\x64\x01\x27\xd6\x46\x18\xfc\x02\x4a\x60\xa2\xca\x90\xb9\x61\xa2\xfc\x5d\xc6\x5f\x75\x3b\x02\xb7\x23\x58\xa9\xa1\xdb\x11\x2e\x4b\x43\x1b\xe1\xb2\x04\x0a\x87\xb3\xec\x70\x59\xc6\xf9\x78\x59\xa7\x8d\x4f\x1c\x62\xcb\x12\xe5\x3f\xc4\xcd\x83\x04\xd7\x1d\xaa\x39\xf7\x19\x42\x35\x07\xf1\x65\x81\x93\x6b\x87\x1b\xe1\x40\xf9\xa2\x0b\x41\x95\x82\x50\xc2\xb9\x71\xf7\x24\x9a\xb3\x8f\x7d\x22\x1b\xa6\x50\x38\xa4\x68\x87\x1b\xe1\xe1\xa7\xa2\xef\x2d\x43\xa6\x50\x60\xe0\xd9\xe1\xa7\x12\x96\x9e\xeb\x54\x47\xfb\x9e\xc0\x44\x60\x4c\x86\x19\x5a\xa1\x9a\xd3\x0d\x0e\xd5\x5c\xb0\x11\xce\xd1\xd7\x5b\x72\xcd\x1d\xdd\x77\xc9\x57\x16\xba\x42\x40\x81\x1d\x6a\x4b\xa5\xb9\xc3\xef\xd3\xed\x88\xf0\xfb\x04\x4a\xf8\x7a\xfd\x3e\xc3\xef\x53\x87\x26\xfc\x3e\x81\x02\x57\xf0\x96\x72\x73\x07\x71\xb0\xcf\x05\x09\xe3\x60\x41\x1c\x0c\x22\x94\x1d\xc6\xc1\x80\xf2\x19\xe6\x41\x49\x99\x50\x02\xa9\x23\x35\xa7\x50\x3e\xc3\x3c\x8c\x8d\x01\x85\x43\xe4\x77\xb8\xdb\x13\xec\xf6\x7c\x86\x79\xb8\xdb\x13\xe4\x7b\x71\x3c\xe6\x0e\xf3\xbd\x22\xec\x9b\xfd\xd5\xff\x02\x0a\xb5\x2e\x3b\xf4\xbf\x22\x9d\x10\x57\xad\x9b\x42\x40\x09\x0c\xc7\x30\xdf\x0b\xf6\xcf\xf2\x59\xb5\x61\xb8\x0c\xfa\xcf\x42\x4d\xcc\x0e\x37\xc2\x81\xdf\x65\xde\xcd\x55\x3b\x4f\x2e\x63\x42\xa6\x83\x9f\x16\x28\x63\x06\xc6\x74\x58\x93\x65\x89\xd4\x89\xe9\xb2\x54\xfc\x51\xe8\xb5\x43\xf1\x07\x14\x4a\x59\x76\xe8\x07\x86\xe2\x8f\x4a\xaf\x2d\xe9\xa8\x50\x02\xcd\x17\x8a\xbf\xd0\xd8\xd0\x0c\x94\x88\x74\xc7\xf2\xa1\x36\xf9\x50\xc5\x9f\x16\x99\xe4\xa4\x1b\x26\xd2\x62\xfc\x37\x96\x23\xdd\xce\x1b\x82\x3e\xdc\x80\x09\xac\x08\x03\xbb\xa1\x15\x11\xdb\x87\x62\x43\x85\x1e\x1e\x50\xc2\x07\xe8\xe0\xc1\x6b\xfa\xbb\x8c\x37\x63\x4e\x15\x50\xc2\x07\xe8\x92\x85\x45\xe2\x1c\x43\xb1\xe3\xfa\xfe\xca\x10\x70\xa2\xc2\xed\x9c\x50\xa1\x6b\x80\x84\x0a\x3d\x1e\x87\xc0\x3f\x75\x5e\x42\x99\x1b\x08\xd3\x50\xe6\x86\x32\x17\xcb\x30\x94\xb9\xf1\x55\x47\xe3\xf2\x86\x32\x37\x94\xb9\x6c\x86\x86\x32\x17\xa2\xd4\xdf\x65\x3c\xc1\x60\x52\xb0\xc3\x6d\x98\x38\xdc\xe1\x06\xca\xbf\x8f\xd2\x6d\x09\xa0\x50\x6e\xb3\x25\x54\xdd\xa9\x18\x46\xfa\xc9\x9e\xba\xf3\xab\x73\xe6\x3b\x4d\x6a\x0d\x76\x92\x79\x15\x88\x37\x59\x50\x77\x1e\xf6\x83\x4f\x46\x1a\x54\xa1\x40\x37\xba\xd3\x0d\xee\xd4\x72\x81\xcd\x72\x4b\x8d\x2a\x14\xaa\x6c\xb6\xd4\xa8\x3b\x35\x49\x5c\xe4\x52\x9c\xee\x64\xe7\x3a\xb0\x83\xd2\x9d\xeb\xd4\x23\x8a\xe6\xdd\xb6\x6d\x08\x50\x64\x6a\x1a\xd3\x4a\x8b\x9d\x29\xea\xda\xa9\x97\x04\x14\xc3\xd5\x69\xe6\x55\xea\x38\x51\xd5\xb5\x53\xc7\x29\x31\x70\x0c\x57\xa7\x06\x4e\xaa\x70\x28\xb2\xda\xa9\xc2\x01\x0a\x25\x40\x3b\xcd\xbc\x4a\x15\x8e\xcb\x32\x55\x38\xa9\xc2\x61\x81\xc8\xd2\xba\x53\x3b\xc8\xf5\x96\xda\x41\x49\xe6\x15\x3c\xaa\x3b\xcd\xbc\x02\x4a\x31\xa6\x9f\xa6\x56\xa5\x1a\x85\x90\x6c\xaa\x51\x52\xc7\xe9\x7b\xa7\x3a\x4e\x40\x31\x46\x9e\xcd\xe9\x55\xa3\x7c\x6f\x46\x8d\x92\x6a\x14\xd4\x42\xaa\x51\xb2\x7f\xe5\xf2\x3c\x54\xf7\x07\x28\x9c\xbb\xb9\xd3\xe0\x1a\x50\xfe\x3d\xc1\x2c\x5d\xa0\x18\x71\x97\xe4\x75\xa7\x1e\xd1\xf7\x04\x3d\xa2\xc4\x23\x82\xd8\x7c\x4b\xe9\xba\x53\x8d\x02\x17\xd6\x4e\x35\x4a\xaa\x51\xb0\x46\x53\x8d\x92\x6a\x94\x40\xf1\xa4\x1a\x25\xd5\x28\x58\xa3\xb2\xc1\x6e\x78\x5e\x7f\x97\xfd\xcd\x8e\xb2\xd3\xa0\x5a\xb2\x19\x13\x18\xab\xe9\x5e\x0c\x50\x0a\xb4\x3e\x5b\xba\x58\xa1\x04\x56\x68\xaa\x83\x80\xdf\x65\x4c\x4e\xd8\x4f\xf5\x92\xdd\x54\x2f\x25\x1b\x2f\xc5\x9d\x81\x74\xe3\x05\x28\x1c\x9e\xbd\xd3\x8d\x97\x54\xe1\xc0\xb0\xbb\x53\x85\x03\x14\x8e\x0e\xdb\x69\x7a\x41\xca\x44\x92\x18\x16\x99\x5f\x9b\x43\x60\x5a\x55\x11\xa9\x18\x4e\x3f\x3c\xc5\x30\x50\x12\x63\x35\xf5\xf9\x52\x67\x2e\x71\x65\x53\x67\x0e\x28\x90\x4b\x6f\x29\x6f\x77\x2a\x86\x93\x28\x63\x2a\x86\x81\xc2\x81\x78\x3b\x0d\xc7\xa5\x62\x98\xc2\xab\x9d\x8a\x61\xa0\x70\x02\xce\x4e\xc5\x70\xea\xcc\xa5\x9f\xb6\xce\x5c\x52\x7f\x0c\x4b\xf0\xce\xcb\x79\xbb\x4e\x2f\xe3\x6e\x97\xeb\x0c\x07\xef\x7b\x31\xfa\x77\x29\xf1\x47\xfa\xf9\xe8\xe0\x01\xff\x5e\x8c\x1b\x2f\xa9\xcf\x47\xf1\xd5\x4e\x7d\x3e\xe0\xdf\x8b\x71\xcb\x24\x8d\xbd\xa5\x0b\xde\xd8\x1b\x50\x12\x2b\x25\x8d\xbd\xa5\xf6\xb6\x11\xf7\xd4\xde\x06\x4a\x16\x9b\xec\xc7\xed\xcb\x72\x71\xb9\x2d\x01\x14\x8e\x2a\xda\x69\xec\x0d\x28\x65\x3a\xe5\x26\x68\x01\x85\x43\x48\x77\x1a\x8e\x03\x7e\x97\xd9\x66\x47\xd8\x69\xe7\x40\x81\x2d\x35\xf0\xce\x47\xee\x02\xa7\xdc\x6d\x89\x24\x8f\xeb\x5b\x5b\xe6\x71\xa5\xea\x6b\x3a\x2c\xd5\x17\x50\x20\x4f\xdc\xb2\x0a\xef\x54\x7d\x19\x98\x4f\xd5\x17\xf0\x6f\x09\xaa\xbe\x52\x5f\x60\xfa\x04\x7d\x81\x7c\x7d\x28\xd3\x6b\x1e\x17\x50\xca\x3c\xbd\x9b\x12\x1c\x95\xc6\x09\x2b\x5b\xfa\x61\xe1\x77\x19\x23\x75\x7f\x04\x28\xf9\xfd\xd3\x79\xd3\xb3\x98\x58\xa8\x53\x95\x06\x01\xf1\xaf\xad\xd3\xd6\x6c\xe3\xcd\x70\xb7\xa9\x67\x31\xd5\x38\x14\xa5\x6d\xa9\x82\x85\x92\xde\x4d\x27\x78\x16\x9f\x80\xe9\x22\x57\xb0\x50\x38\x5a\x6e\x4f\xf7\x42\x66\x75\x2e\x31\x36\xa6\x66\xfc\xac\xf6\xd7\xa6\xc7\x26\xef\x86\x08\x9f\x8a\x6b\xa0\x40\xb6\xb8\xa7\xe2\x7a\x2a\xae\xa1\x40\xdc\x53\x71\x0d\x14\xce\x9c\xd9\xb2\x11\xef\xa9\x65\xcf\x69\x22\x5b\xa2\x61\xa1\xa4\xa3\xd2\xb2\x9f\xcd\xc5\x35\xbd\xdb\x6b\x1b\x8b\x0b\xb3\x78\x1a\xfa\x9a\x1f\x0d\x05\x92\x4b\x42\x62\xa1\xb8\x57\x29\x21\xf1\x86\x6a\xf8\x77\x19\x0f\x75\xcb\x64\x52\x54\x01\xcb\xe2\x9e\x16\x55\x4c\x84\xff\xc9\x59\xec\x7b\x2a\xfc\x81\x02\xa1\xf2\x9e\xee\xe5\x4f\x84\xff\x49\x15\xd8\x9e\x0a\x7f\xa0\xb8\x67\x39\x15\xfe\x13\x3f\xe1\xa4\x0a\x6c\x4f\xfd\x84\x39\x7c\x28\xdd\x75\xf7\x1d\x28\xe7\x51\xfc\xeb\xb6\x8d\xc5\x55\xfd\xa7\xfd\xb0\x7a\xf8\x28\xfe\xd5\x8e\xa0\x04\xa8\x8a\xdd\x53\x25\x30\x43\xfe\x0b\x56\xf9\xd4\x77\x98\xf8\x09\x6e\x6d\x4e\xfd\x84\x19\xf6\xcd\x55\xa3\x74\x07\x8a\x7b\x96\x53\xe9\x3e\xc3\x09\x71\x39\x28\xdd\x81\xe2\x9e\xe5\x54\xba\xcf\xfc\x48\x37\xe8\xaf\x7e\xc2\x4c\x1f\xca\xbc\xb9\xad\x0e\x94\xf3\x70\x92\x60\xad\x12\x8a\x7b\x96\xd3\x1d\x1e\xe0\x77\x99\x6d\x76\x84\x94\x5c\x0e\xc6\xd8\xd3\x8c\xdc\x69\xc5\x31\x24\xd6\x7b\xe6\xd7\x91\x87\xcb\x98\x10\x3d\x8c\xb9\x1c\x82\x93\x64\x30\x10\xd2\xe7\x92\xd8\x46\x92\x3e\xef\xb9\x7c\xa7\x84\x16\xa7\x2a\x65\xaa\x52\xb0\x8d\x24\x82\xde\xb0\x3e\x97\xf3\xc0\x26\x91\xf6\x59\x28\xd9\xff\x3e\x91\x72\x4f\x35\xce\xdc\xf6\x29\xbc\xb3\x7d\xda\xf6\x89\xb9\x31\x7c\x38\xad\x96\x3e\xd2\x87\x39\x1c\xb4\x10\x54\xf5\x7b\xaa\x84\xa6\xe5\xd2\x86\xfc\x25\x99\x16\x0a\x15\xc7\x7b\xaa\x98\xe6\xe5\x2b\xf7\x33\xd6\x67\x98\xf8\x07\xea\xd1\xa9\x7f\x30\x2f\xfb\x96\xfe\xd5\xbe\xa9\x71\x86\x0f\x70\xa6\xad\xab\x86\x06\x76\x4f\x23\x8f\x10\x54\x17\x48\x4a\xf7\x34\x8f\x6b\xde\x3e\x14\xa3\x68\x1a\x65\x84\xa1\xba\x70\x7e\xfb\x9e\xee\x97\x03\xbf\xcb\x78\xe5\xee\x97\x03\x9f\x56\x9e\x6e\x00\x4d\x4b\xab\xad\x77\x93\xdc\x7a\x4f\xb4\x50\xfa\x42\x54\x42\x53\xc6\x0c\xc8\xc6\xf7\x54\xe3\x4c\x35\x0e\xca\x7b\xaa\x71\x80\x72\x16\x2c\x8b\xe9\xa6\xd0\x64\x07\x28\x7d\x31\x6e\x00\x4d\x14\xd3\x09\x6d\xe0\x9e\x2a\x26\xa0\x70\x50\xc6\x9e\xee\x97\x4f\x4b\xb5\x8b\xb2\x43\xc5\x34\x55\x4c\x24\x41\xc9\xb2\xbd\x27\x0e\xd3\x09\xbd\xe0\x9e\x3a\x4c\xf3\xf5\xa1\x74\xd7\x3c\x2e\xa0\x9c\xb0\xfd\xed\x69\x1e\xd7\x44\x0b\x69\x31\x4c\x95\xd0\x94\x83\xa3\xa0\xbf\x96\xaa\x04\x3a\xee\x42\x21\xf6\x5e\x7a\x47\xeb\x70\x08\xc4\x18\xa4\xe8\x16\x4a\x62\xe7\x2e\xb3\xb1\x96\x34\x19\x6e\x8f\x2c\xc3\xae\xc0\x67\x58\x2c\xf7\x89\xa0\xda\x2e\xa7\x1b\x1a\xcb\xb8\xd1\xc2\xca\x4f\x16\xcd\xd2\xca\x5f\xd5\x09\xc1\x63\x5a\x6a\x17\xe0\xb3\x3f\x96\x29\xb6\xab\x3a\x04\xa6\x5c\xe6\x6e\xa1\xc0\xb6\xbd\x97\xda\x65\x49\x82\xc1\xc1\x75\x7b\xb9\xb3\x02\x14\x18\x92\xb7\x04\xdf\x7b\x35\xfb\xc6\x94\x2f\xc3\x4b\x8b\xa2\x40\xad\x99\x65\x4d\xe0\x92\xe0\x02\x2e\xab\xbd\xdc\x6c\x01\x0a\x47\xc8\xef\xa5\x5e\x02\x7e\x97\xf9\x57\xfb\x8b\x62\xe2\xb4\xe1\xbd\xd4\x4b\xab\xbb\x90\x9c\x72\x5d\x0b\x08\xc3\x0b\xf5\xea\x7b\x19\x85\x82\x30\xfc\x77\x99\x6d\xf6\x8d\x7d\x7b\x4d\xa8\xe5\xbe\xfd\x52\x09\x15\x27\x49\x25\x04\x7c\x26\xd4\x52\x09\x2d\x89\x8e\x8a\xc3\xd2\xb5\x80\x33\xfc\x33\xa1\x96\x1b\xf2\x40\x39\x2d\xd9\x5b\x66\x8a\xc1\x23\x5e\x26\xea\x4b\x1e\xf1\xbd\xf0\x13\xce\xd3\x8e\xe8\x28\xfc\x3f\x63\xef\x93\xbb\x3b\x8c\x9b\x6b\xce\xb3\x8a\xda\x41\x7f\xa2\xfe\xd9\x40\x21\x93\x1e\x77\xef\xc1\xa6\x6c\x20\x83\x24\x85\xea\x64\xff\x0d\x3d\x8f\xeb\x5e\xdc\x4c\x4e\x0d\x0e\xde\x03\x43\xdf\x4f\x94\x2c\x93\x14\x45\xbd\xbc\xd8\x14\x9c\x98\xaf\xcb\x4d\xc1\xa5\x75\x09\x5c\xd4\x4b\xeb\x02\x14\x33\x25\x2e\x03\x53\x97\xd6\x25\x70\xd2\x2e\xad\x0b\xf0\x39\x64\x97\xd6\xe5\x92\xc7\xc8\x2b\x7b\x97\xd9\x58\x17\x66\xe3\xfc\x1e\x39\x04\xcd\x06\x8c\x41\xf7\xa5\xd9\x00\xca\x89\xcd\xbc\x34\x1b\x17\x51\xa8\xf0\x20\xe8\x32\x0a\x05\x94\x13\x9b\x79\x69\x22\xae\x4b\xd9\x70\x5d\xa4\x4c\xbf\x2f\x22\x3d\x67\xf1\x91\x13\x42\xa4\x27\x60\x4a\xb9\x2f\x23\x3d\xd7\xe5\x5f\x63\x54\xd7\xf7\xd7\x9c\x37\xd4\xf6\xa5\xd9\x00\x3e\x67\xf1\xd2\x6c\x00\xbb\x19\x73\x69\xf0\x1b\xf8\x9c\xc5\xcb\x93\xa6\xeb\x23\x3d\x42\x1f\xcb\xdd\x7e\x5f\x1c\xef\xeb\x2c\x5e\x1e\xef\x03\x25\xbc\x7a\x76\x79\xfa\x04\x7c\xfe\xe3\xa5\x45\x01\x76\x33\x9f\x29\x2f\x56\x86\x32\x67\xf7\xa5\x95\xb9\xd2\x77\xca\x2e\xe9\x72\x77\x02\x94\xd3\x39\x72\x73\x72\x69\x3e\x3c\xe1\xb9\x34\x1f\x40\xa1\x10\xcc\x7d\x19\x71\xba\xd6\xd7\x8c\x4e\x55\xf8\xd7\x72\x08\x8c\x4a\x85\x7f\xbd\xbe\x2c\x17\xb9\xee\x33\x50\x20\x49\xb8\x2f\xbd\xe7\xeb\xe3\x18\xc2\x6b\xbd\xd5\x6f\x40\x39\xf1\xdb\x6e\xe8\xf1\xee\xfb\x27\xdd\x12\xf2\xde\x7a\xcf\x40\x39\xd9\x49\xde\x7a\xcf\xf7\x4f\x5e\x23\x1c\xc8\xdb\x50\x0f\x50\xce\x7f\xa2\x9c\xf4\x7d\xc3\x44\x21\xec\xbf\x72\xf0\xec\xf5\xd9\xcb\x5f\xd9\x83\xbe\x8d\x17\x01\xbb\xd9\xc9\x33\xe5\xe4\xf4\xeb\xc4\xb1\xb9\x3d\xfd\xba\xf1\xe8\x83\x6b\xf0\xf7\xad\x47\x0f\x14\xea\x6c\xdf\xb7\x1e\xfd\x4d\xbc\x28\xbc\xca\x75\x1b\x30\x02\xca\xa9\x1c\xc6\x8b\xee\xe2\x7c\xe1\x00\xdd\x3a\xfe\x40\x39\x95\x43\xc7\xff\x26\x10\x14\xde\xfe\xbe\x8d\x04\x01\xe5\x54\x0e\x4f\x23\x80\x12\x5e\x9d\xbe\x3d\x69\x07\x0a\x15\x84\xef\xdb\x78\xd1\x5d\x9d\x7d\xdc\x83\xdb\xe0\xd0\x4d\x24\x88\x5a\x15\xf7\x6d\x20\xe8\xd6\x6c\x78\xef\xf8\xd6\x6c\x00\x05\x16\xf0\xfb\xf6\x54\xfd\x96\x13\xa9\x62\xd0\x6f\x8f\x1b\xee\xbd\x11\x29\xe6\x45\xdd\xd5\x19\x97\xee\xc8\x7b\xc7\x92\xfb\xdf\x30\xf9\x17\x78\x2a\xee\xdb\x53\xf5\x5b\xbe\x23\xaf\x99\xdd\x4d\x41\xb0\x11\xa7\x83\xd7\x44\x00\xbb\x19\x73\xe9\x11\x04\x50\x4e\xbc\xbf\x5b\xb3\x71\x6b\x0f\xbc\x8d\x76\x6b\x0f\x80\x72\xa2\x27\x6e\xcf\xe8\x6f\x89\x91\xbc\x8d\x66\x49\x81\xfb\x66\xa3\xe2\x56\xeb\x76\x9f\x72\x77\x87\x80\x75\xb1\xcc\x80\x50\x4e\xdc\xbb\xdb\x33\xfa\x5b\xb3\xe1\x39\xdf\xad\xd9\xb8\x35\x1b\xa8\x93\x5b\xb3\x71\x0f\xd7\x1b\x51\xaa\xdb\x1d\x08\x50\xcc\xd9\xba\x3d\xa3\x07\x4a\x78\x7f\xec\x36\xdd\x0b\x28\xe6\x6c\xdd\x5a\x92\x7b\xb8\xde\xb0\x5f\xb7\x3b\x10\xa0\x9c\xbe\x66\x37\x20\x37\x6a\x38\xbc\x66\x7b\xab\x87\x81\x72\xe2\x05\xde\x7a\xef\xb7\xaa\xd9\x1b\x91\xb7\xaa\xf9\x56\x35\x0f\x1f\x7d\x7f\xed\xb5\x19\x7f\xcd\x7c\x5a\xa0\x50\x6a\xff\xb6\x7c\xc2\x7d\x73\x54\x19\x1e\x55\xde\x1e\x55\x02\x85\x92\x1d\xf7\xed\x51\xe5\xad\xa2\xf7\x86\xda\xad\xa2\x07\x8a\x69\x67\xb7\xb1\xa4\xdb\xfd\x41\x73\x58\xee\x0f\x6e\x15\x3d\x1e\xea\xad\xa2\xbf\x75\xfc\x9b\x82\xe8\xf8\x03\x05\x82\xec\xfb\xd6\xb3\xbf\xc9\xe3\x8a\x86\xd3\x73\x9b\xc7\x05\x94\xd3\x75\xaf\x52\xbf\x6f\x47\x8a\xd3\x73\xeb\xc6\x03\xe5\x74\xdd\xeb\xc5\xdf\xaa\x66\xaf\x24\xdd\xaa\xe6\x5b\xd5\x6c\x07\xaa\xe6\x5b\xd5\xec\x25\xa2\x5b\xd5\x7c\xab\x9a\xfd\x3c\x54\xcd\x77\xda\x29\xbe\xdc\x6d\x90\x08\x28\xa7\x72\x18\x24\xba\xf1\xe2\xa3\xb1\xf3\xbe\x75\xe3\x81\x72\x4e\x1f\x29\xc7\x6b\xa7\x38\x42\xb7\xa1\x93\x9b\xd0\xc9\x89\xee\xbf\x0d\x9d\xdc\x2a\xfa\xae\xba\x56\xd1\xdf\x2a\x7a\xbf\x49\x15\xfd\xfd\xca\x25\xc6\x36\xfb\x36\xf2\x0f\x94\x93\x6f\x52\x66\x71\xa1\x9c\x7c\x7f\xa9\xee\x97\x6c\x3c\xbc\xa4\x20\xdb\xb8\x50\x4e\x3c\x65\x98\xc7\x37\x4c\x9b\x4d\x9e\x1d\x3e\x43\x5c\x66\x37\x3d\x20\x90\x6e\x3c\xbc\x56\x20\xdf\xf8\x9d\x9a\x08\x3e\xd3\xd4\x06\xa4\x36\x80\x52\xad\x77\x6a\x03\x52\x1b\xc0\x67\x2a\x2d\xb9\xb0\x9b\x35\x9e\x29\xaf\x36\x80\x97\x60\x45\x8d\x3b\x8b\xd4\x6d\xa8\xc1\x34\x03\x22\xb5\x01\xf8\x8a\xd2\x97\xdf\x59\x3e\xd9\xfc\xa9\xb2\xa1\xf0\xa9\x8d\x72\xcb\x5f\x7e\x43\x56\xbe\x9b\x31\x49\x1e\x10\xc0\x50\x5e\x60\xb7\xb9\xd3\x03\x02\xa0\x44\xef\xfe\x74\xfa\x6c\xfe\xeb\x5f\xe2\x87\xaf\x98\x9e\x19\xa4\xa6\xc2\xdb\x07\xa9\xa9\x00\xe2\x87\xaf\x98\x9a\x0a\xf8\xce\x77\x33\x86\xe0\xa1\x01\x10\x3f\x9c\x56\xc9\xcf\x6f\x08\xcf\x77\x33\x04\x31\x4f\x0b\xf6\xf3\x2f\xe6\x22\xfb\xf9\x9d\x5a\x14\xef\x0b\xa4\x16\x05\xf8\x62\x2e\x69\xda\x45\x6a\x51\xfa\xf8\x73\xd5\xcb\x5b\x12\x75\x21\x7e\xe8\xab\xd4\xe0\xa4\x1b\x10\x0f\xd3\xe5\x47\xbf\xe1\x44\x8f\x1f\x6e\x6e\xba\xd9\x00\x4a\x98\x8b\x9f\xee\x36\x72\x1b\x9c\xf8\xe1\xe6\xa6\x06\x27\xb5\x24\x9d\x2f\xca\xfa\x25\x42\x98\x77\x9a\x5a\x12\xa9\xd5\xc3\x24\x7b\xb9\xd5\x6f\x88\xd4\x83\x02\xba\xb7\x44\xea\x77\x36\x65\xf3\x1b\x30\xe4\x05\x7c\xe1\xa2\xd4\x92\xc8\x78\x1e\xdd\x05\xef\xfe\x00\xf8\xc2\x45\xe9\xa1\x45\x1a\xa6\x31\x7f\x3b\x0d\xd3\xe4\xc1\x10\x70\x7d\x53\x7f\x3b\x55\xea\xe6\x32\xa6\x4a\x1d\x88\x1f\xae\xaf\xe4\xe2\x77\x12\x92\x09\x4f\x7d\xd3\x98\x0c\x84\xe3\xf1\x0b\x7f\xa9\x1c\xc7\xc7\xc6\xc7\x02\x3a\x3e\x41\x1e\x9a\xf9\x4b\xbf\x1e\x2e\x49\x84\x09\x89\x52\x8e\xdf\xd0\x8c\x7f\x31\xaa\xf4\x20\x18\x28\xe1\xe1\x70\x9e\xae\xda\x93\x55\x1b\xfe\x52\x71\xb9\x38\x1d\x03\x37\x25\xbd\x39\x9d\xe7\x45\x33\x26\xc4\x2b\x81\xd0\x91\xef\x66\x08\xe2\xe1\x30\xdc\xe4\x5f\x28\x4b\x6e\xf2\x3b\x35\x38\xde\x80\x4b\x0d\x0e\x10\x3f\xe7\x48\x83\x93\xd7\x27\x1b\x93\xe4\xfd\x3f\xa8\xcc\xe3\x87\x4f\x9b\x1a\x9c\x74\xcb\x40\x85\xd3\x3b\xdd\x32\x40\x49\x1e\xa6\xf5\xa6\xdb\x03\x60\x37\x43\x10\xf7\x07\x79\x33\x21\xce\x91\x67\xc8\x69\x28\xc9\xac\xbe\xd4\xf1\x87\xa0\x3c\x7e\xd5\x5f\x3a\xe3\x1a\x1c\xf3\xf0\x52\x83\x03\x84\xd9\xbf\x92\x96\xdf\xa9\xc1\x31\x0f\x4f\x8a\x72\x21\x7e\x4e\xa5\x06\x47\xa6\xf1\x80\x5a\xf4\x96\x6a\x5c\x88\x9f\x53\x69\x3c\x08\xd8\xcd\x10\xc4\x4c\xb4\x5c\x8c\x54\xc5\x69\x26\x1a\x24\xe5\xbb\x19\x43\xf0\x08\x02\x08\x73\x89\x65\x29\xbf\xa5\x24\x0f\xaa\x21\xde\x72\x92\x0b\xf1\xf3\xc5\x98\xb0\x96\xcb\x09\xc1\x18\xa6\x71\x23\x20\x28\x6b\x79\xa7\x61\x23\x69\xbd\xc3\x24\x36\x79\xbd\x6f\x48\xbc\xe3\xe7\xfb\x33\xe6\x92\x5a\xb9\xc9\xee\x36\xb5\x72\x40\xc0\x8c\x75\xa7\xc9\x42\xa9\x95\x33\xe5\x47\xb2\x6f\x21\xcc\x73\xce\xf7\xeb\xf4\xb5\xd9\x96\x4d\xb6\xef\x7b\xb9\x77\x31\xe5\x46\x6e\xef\x1b\x22\xef\x80\x2d\xeb\x96\xc8\x5b\x28\x61\x92\x8c\x4c\xde\x42\x50\xfe\xef\x5e\x9a\x34\x60\x37\x0b\x9e\x9d\x3e\x43\xfd\x74\x3b\xb8\x7c\xa4\x20\x7c\x5a\x72\x79\x0b\xf1\x63\xbd\xc9\xe5\x7d\x2f\x0d\x13\x35\xce\xee\xa5\x61\x02\x02\x8a\xae\x7b\x19\x23\x5a\x5a\x1c\x33\x4c\x96\x16\x07\x08\xca\xfa\xdf\x2b\xbe\x66\x4e\x12\x6f\x4b\xbe\x6d\x21\xa8\x57\x72\x2f\xcd\xc6\x52\x1f\x4f\x47\xaf\x3e\x06\xe2\x87\x4f\xb9\x0c\x08\xc9\x75\x1d\x1e\xfb\x4a\x76\x7d\x2f\x15\xed\xf0\x91\x23\x55\xd1\x7a\x4c\xbd\x54\xb4\x40\x98\x0c\xbe\xf4\xe2\x97\x8a\xd6\x63\x6a\x29\xae\x85\x80\x65\xec\x96\xe2\xfa\x5e\xfa\xe2\x1e\x22\xcb\x5e\x7d\xc3\x58\x1d\xe6\x8c\x2f\xcf\x11\x3e\x12\x6a\xcf\x78\x65\xa1\x16\xe2\x87\x17\xb8\x3c\xf6\x5d\x1e\x10\x78\x18\xb9\x3c\x20\x00\xbe\xf8\xf2\x32\x91\xe8\x23\x85\xf6\x2a\x97\xac\xd0\x37\x4c\xd0\xf1\xc3\x0b\x5c\xde\x6d\x5b\x6a\x77\x0f\x5b\x96\xda\x1d\xf8\xe2\xcc\xcb\x64\x9d\x65\x34\xc5\x53\x94\x65\x34\x05\x7a\xe8\x30\x03\x7d\xa9\xc9\x97\xbe\xb8\xc7\x23\xb2\x40\xdf\x30\x3f\xc7\x8f\xcf\x79\x79\x83\x1b\xd8\xcd\x18\xbd\x09\x3c\xc0\x17\xb5\x5e\x6a\x72\x60\x37\xf3\xa7\x0a\xa2\x76\x3f\xca\x9f\x8d\xf7\x52\xf9\x2f\xb5\xba\xe7\x1d\x4b\xad\xbe\xd4\xea\xbe\x37\xb5\x3a\x50\xc2\x83\x0c\xa9\xa9\x85\xf8\xa1\x14\x96\x99\x41\x4b\xad\xee\x41\x86\xdc\xd4\x42\xfc\x7c\xbd\x6a\xf5\xa5\xba\x86\x08\xf4\x5e\xaa\x6b\x20\x28\x70\x73\x2f\x23\x3c\x1f\x5f\xb5\x31\x72\x09\xab\x85\xf8\xa1\x62\x96\x87\xc8\x1f\x31\x34\xe5\x9a\x6f\x99\xa1\xef\xa5\xae\x3b\x7c\xe4\x48\xd5\x75\x06\x23\x97\xba\x6e\xa9\xeb\x88\x98\xac\xf5\xfd\x35\x47\xca\x66\x4e\x52\x69\xe1\x0b\xb8\x4b\x2a\x7d\xaf\x8f\x6b\x14\xbf\x6e\x19\xae\x06\xe2\xe7\x0a\xf5\x68\x75\x71\x66\x1a\xc6\xde\x96\x67\xa6\x40\x50\x58\xe7\x5e\x9e\x99\x2e\x35\xe7\xc9\x01\xe9\x52\x73\x02\xf1\x63\xcb\xb0\x4c\xf9\x59\x6a\x4e\xc3\x60\xd2\x4f\x0b\x21\xab\x9d\xe5\xbc\xee\x8f\x45\xfa\x24\xc2\x23\x8d\xb4\xf0\x1d\x06\x3c\x7a\xf9\xb0\x49\x97\x30\x38\xf4\xe8\xd2\x03\xdf\x61\xc0\xa3\xe2\x04\x76\xb3\xca\xb3\xee\x33\xa6\x17\xdf\xf7\x51\x99\x7e\xdc\xd2\x67\xb5\xd3\xf4\x19\xf6\x8b\x6c\x04\x99\xa4\xef\x47\x2d\x69\x4c\xe4\x51\x4b\x02\xdf\x61\xc0\xa3\x96\x7c\xd4\x92\x06\x3b\x64\x9c\x16\xa2\xfc\x7c\xa4\x1c\x86\x70\x0c\x76\x3c\x86\x70\x9e\xb2\x68\x86\xb8\xe6\xf7\x00\x25\x0c\x4f\x3c\xe5\xf5\xd9\x4b\x33\x7e\xa9\x97\xff\xd1\x3d\x1b\x9e\x90\xef\xf9\x86\xe3\xf9\x3b\x5a\x78\x74\x47\x1f\xb5\x24\x65\x5d\xef\x47\x2d\x09\x04\x45\x89\xee\x47\x0f\xf5\x51\x4b\x9e\xac\x1a\xe9\x9d\x85\x28\x3f\x7f\xb9\x7c\x24\xd1\x2c\xef\xf9\xd1\x45\x05\xc2\xeb\x1e\xb2\x40\xdf\x8f\x81\x0d\x28\x37\x6f\x09\x9e\x6f\xd8\x9c\xa3\x60\x20\x65\x73\x16\x4a\x75\xbb\x21\x9d\xb3\xf0\x1d\x7b\x3c\xea\x57\x60\x37\xf3\xa7\xca\xdb\x6f\x9a\x21\x87\x21\x72\x68\x9d\x77\x33\xe6\xcd\x43\x59\x38\x9e\x43\x0a\x42\x39\x9e\xef\x07\xd5\x5c\xdd\x01\x3c\xaa\x66\xe0\x3b\x1d\x91\xf7\xf9\x86\xe4\x79\x37\x63\x92\x54\xcd\x40\x78\xc7\xe4\x51\x35\x4b\xfc\x5c\x7f\x0e\xcb\x50\x3a\x10\x94\x1f\xba\x1f\x8f\x73\xa1\x79\xde\xcd\x90\xcd\xe8\x3a\xe4\xcd\x41\xfd\xa1\xfb\x31\xba\x0e\xec\x66\xc8\x6b\x2a\x28\x25\xea\xa2\xf8\x79\x78\x76\x0b\x93\xf3\x6e\x86\x6c\xd3\x1e\x26\x0b\x29\xfc\xa5\x2f\x66\xda\x29\x36\xfe\xd1\x6c\x00\xe1\x8d\x95\xc7\x1c\x4f\x18\x9f\x77\x33\x5e\x96\x66\x03\x88\xe2\xc7\xa6\xd9\x80\xf2\x79\x37\xa3\x53\x43\x38\xf0\x3c\x47\xc1\x44\x3c\x7a\xf6\x40\xa9\xba\xa8\x8f\xae\xfd\x83\xd9\x28\x7e\x6c\x9a\x0d\xca\xe0\xed\x66\xbc\x05\x7d\xf6\x67\x2b\xf4\xef\x54\xe9\x31\xc7\xf3\xb9\x6c\xe6\x97\x65\x08\x07\x08\xea\x10\xdd\x8f\x1e\x35\x24\xce\xa5\xea\x08\x3d\x06\x36\x60\x74\x8e\xe2\xa7\xab\x9f\xf9\x2c\x47\xea\xb2\x54\xf7\x02\x51\xec\x40\xd7\xf3\x59\x2e\x4b\xf5\x8a\x37\x81\x21\x80\x0e\x2f\xdd\x3c\xea\xde\x67\xd9\xa9\x0a\xc3\x54\x17\x20\xbc\x74\xf3\x78\xee\xf8\x70\xc8\x58\xbf\x8f\xd2\x43\xc6\xe7\xe1\x9d\x36\x1f\xf9\x4e\x39\x3d\xac\xdf\x47\xe9\xe9\x21\x10\xd4\x2c\xba\x65\x7a\xbe\x21\x59\x2e\xd5\x85\x2f\xcb\xb2\x50\x6a\x41\xe7\xbd\xaa\x4b\x20\x0a\x36\xeb\x35\x26\x02\x01\xf3\x6e\xe6\x4f\x0f\x9f\x31\xe5\xec\x44\x5e\x3d\xc3\xb7\xd8\x8c\x89\x7b\x8d\x47\xbf\xc5\x66\x74\x50\xbe\x66\x97\x5c\xc2\xff\x44\xdc\xfc\x35\x54\xf1\xaa\xeb\x88\x10\xbc\xea\xba\x7f\xb0\x1b\xfb\x4c\x57\x0f\x4a\xe3\x90\x73\xf3\x75\xeb\xfd\x0f\x7a\x63\x94\x98\xfc\xc6\x42\x50\xc6\xe8\x7e\xcd\x2c\x81\xf2\xb8\xd4\x82\x12\x93\xf3\x58\x08\xea\x18\xdd\xaf\xba\x0e\xce\xe3\xdd\x8c\x89\xd0\xd5\x83\xe8\x38\x28\x64\x74\x5b\x95\xef\x7e\xbb\x4c\xc2\xa8\x9d\xd7\x50\xec\xab\x12\x1b\xfe\x92\x17\xf7\xb2\x6f\xad\x54\x5b\xbd\x5f\xbd\x1d\x20\xa4\xe6\x94\x24\xf8\x7e\x65\x7b\xf4\x90\xe5\xd5\x8b\x00\xa2\x7c\x8f\x7c\x6f\x69\xa7\xd8\xdb\xd7\xcd\x16\x10\x94\x3c\xba\x5f\xb3\xc2\xfe\x41\xc4\x5b\x6c\x96\x3e\x63\x7a\x71\x2c\x5e\xf7\x5f\xaf\xdf\x45\x45\xb1\xbd\x7e\x17\x40\x14\xfc\xcb\xd7\x80\x9f\xe4\xbc\xb5\xa2\xb1\x24\xe7\x15\xbe\xb3\x5b\xc9\x79\x6f\xc9\x79\xab\x67\x31\x92\xf3\x0a\x41\x71\xa4\x5b\x72\xde\xfb\x5d\xb2\xff\x56\x7f\xfa\xfa\x0c\xfb\x85\x1b\xfa\xfa\xa9\x00\xbb\x99\xcf\x14\xe4\xe1\x2d\xe0\x86\xbe\x9e\xd1\xcb\x97\x5b\xe1\xcd\x4b\xf9\x72\xf3\x57\x15\x64\xf0\x8c\x83\x65\x21\xa8\xac\x94\x3f\x0e\x96\xf3\x27\x91\x35\x44\x83\xf9\xc3\x7f\x17\x3c\x44\x4e\x68\x5b\x37\x4c\x19\x81\x6d\x76\xf8\x8c\x55\x33\x27\x8f\x4e\x1f\xd1\x29\xcc\x6e\x09\xf9\xea\x07\x41\x09\xa6\x94\x82\x35\x7f\x5a\x21\x2a\x81\xe5\x6f\x28\xef\x70\xca\x4f\x1e\x29\x87\xe6\x05\x2e\xb6\xfc\x0d\x3b\x1d\x7c\x65\x07\x1d\x60\x4a\xf2\x63\x43\x85\xc8\x2c\xa5\x43\xcd\x9f\xda\x74\x3b\xbc\x29\xf5\x69\xfe\x5c\x83\xf0\x13\xe5\x8f\x35\x28\x78\x24\x9d\x3f\xd6\x60\xca\x90\x5a\xfb\xcf\xbf\x66\xa7\x27\x23\x3d\x98\xb7\xd3\x91\x12\x14\xa9\x30\x0a\xe5\xef\xb2\xd3\xcb\x4e\x7d\x64\xa7\xb2\xa1\x72\xdb\x26\xa5\x43\x15\x3c\xe0\xce\xdf\xa5\x1c\x97\x04\xc2\x05\x41\x2e\x05\xb9\x58\xd1\x07\x13\x72\x0d\x1f\xdd\x36\x43\x90\xcb\xe9\xbd\x58\xd1\x27\x13\x42\x96\x8e\x50\x2a\x04\x3a\x09\x83\xea\x5f\xf3\xe7\x67\x74\x32\x21\xb7\xd3\x7b\x2b\x5b\xf8\x4c\xd9\xee\x41\x33\xe4\x20\x30\x9f\x52\x9f\xd6\xee\x0a\xb9\xed\xf4\xb6\x53\x86\x70\xdb\xe9\xfd\x75\x8a\xbc\xb7\x9d\xe6\x9e\x10\x4e\xd5\xf3\x97\x4e\x48\x7e\x54\xc9\x3e\x73\xa4\x7c\xbb\xe1\x8c\xa7\x23\x4d\xdf\x42\xf5\x99\x6f\x21\x4f\x9a\x21\x47\xfa\xea\xfd\xc4\xa1\xe3\xc9\x5f\x2a\xdb\x86\x08\x5f\x4c\xba\xde\xfc\xc4\x09\x6b\xa7\x44\xaa\x82\x67\xf4\x09\xa9\xea\x06\x3b\x6d\xc8\xb6\xec\x74\xd9\x29\x23\x5d\x76\x4a\x1a\x4e\x25\xc2\x9c\x3f\xd2\x70\xf2\xb7\x3f\xeb\x80\xa4\x37\x7f\xcb\x09\x79\x5c\x6f\x8d\x9f\x3e\xbe\x67\x6c\x5a\xb8\x1a\x1e\x47\xfa\xd8\x69\x67\x58\x8f\x9d\x6e\x88\xf0\x35\x3f\xae\x37\x4d\x5f\xf7\x5b\x78\x1c\x29\xa6\x8f\xda\x45\xf9\x7b\x1c\xe9\x6b\xa7\x9d\xb7\xf0\xda\xe9\x6b\xa7\x88\xfb\xda\x29\x89\x33\x15\x3a\x97\xfc\xbd\xbe\xe7\x0d\x01\x97\x6f\xfe\x5e\xe5\x78\x3f\x26\x6a\x7f\xaa\x20\x2f\x13\x12\x8c\xf4\x75\x42\x54\x3f\x7d\x6b\xd5\x94\xe4\x55\x08\x28\x7f\xb3\x60\x6e\xb3\xfc\x94\x6d\x6b\xae\x2c\x6c\x45\x04\x93\x16\xb2\xb0\x13\x49\xe9\x61\x6b\x47\xaf\x48\x0f\x2b\x98\xb4\x90\x50\xc5\x6e\xb0\x53\x34\x81\xbc\xaf\x42\x70\x7b\x35\xe5\x7d\xcd\xf2\x51\x73\x1f\xfc\xb5\x62\x0f\x85\x09\xd9\xbe\x5c\x16\xb2\x75\x12\x0e\xd7\x52\xe1\xf6\xc8\xc2\xb6\x23\x4b\xf8\xd7\xfe\x4c\x6f\x9e\x25\xec\x2c\xfc\xa2\x4e\x3a\x83\xef\x35\x0b\x21\x1e\x88\x83\x13\xee\xd7\x0f\x76\xb3\x93\x67\x0a\xc0\xa1\x02\x95\x89\x52\x0a\xd8\x94\xef\xb5\xc2\x91\x91\xf2\xbd\x26\x1c\xaf\x11\xac\xf7\xc2\x69\x81\xb0\x9b\x31\x6a\xae\xb9\x65\xe1\xb4\x80\xaa\x43\x59\x38\x2d\x48\x29\x60\x2b\xac\x16\x29\x07\xac\x10\xd4\x18\x4a\x39\x5e\x85\xdd\x0c\xd9\xaa\x82\x54\x5e\x79\x63\x08\xa4\x2d\x65\xd1\xba\xc0\x43\x91\x45\xeb\x02\x04\x55\x86\xb2\x68\x5d\xa4\x87\xad\xdc\xee\x4a\xe9\x61\x85\xa0\xcc\x50\x42\x15\xbb\xc1\x4e\x59\xf0\xf2\xbe\x26\x5c\xaf\x41\x9d\xa1\x2c\xcd\x4e\x3f\x8e\x72\x57\x0b\xf9\x48\x59\x38\x0e\xe0\x7e\x6e\x96\xe6\x84\xb0\xb1\xb2\xb4\x72\xca\xfb\x9a\xf0\xbe\x06\xdc\xc7\x29\xef\x6b\x96\x8f\x55\x1c\x85\x25\xef\xab\x10\xd1\xe9\x40\x93\x26\xef\x6b\x1d\xbe\x40\x4d\x1a\x10\xdc\xf6\x4d\x79\x5f\xb3\xb8\x63\x22\x80\x9f\x65\xd8\xe9\xb0\x53\x1f\xd9\x29\x89\x46\x75\x38\x97\xc3\x29\xc7\xa4\x51\x47\x28\x8b\x26\xad\xb8\x15\x22\xe4\x9e\x65\x3a\x6f\x93\x79\xe3\xcb\x2e\xd3\x79\x9b\x76\x8a\x8a\x29\xd3\x4e\x27\xeb\x6d\x30\xd2\xe9\x7a\x9b\x8e\xb4\xd3\xe9\x74\xa4\x93\x91\x0e\x1f\x39\x52\x39\xca\x87\xf2\x1e\xfe\x94\x83\x0f\x6a\x09\x65\x39\x1c\x82\x7b\x1c\xa8\xd8\x52\x92\xd7\x84\xc4\x35\x28\x26\x94\xe5\x70\x09\x6a\x95\x21\x4f\xcb\xa2\x55\x06\xcc\xa1\x49\x08\x5f\x37\x38\x84\xc9\x4f\xb5\xca\x40\x04\x5a\x47\xde\x57\x61\x37\xf3\xa7\x0a\x72\xb2\x7a\xd5\x3a\xa7\x53\x79\x2a\x9b\xba\xe3\x54\xb6\x93\x15\x32\x98\xb7\xd3\x15\x72\xfa\xc9\x1c\xca\xa6\xbc\x1b\x82\xba\x43\x59\xb4\xe7\xc0\x6e\x86\x6c\x97\xf2\x62\xe3\xc3\x51\x69\xe3\x8b\xc6\x9b\x58\x7a\x16\x8d\x37\x10\xe1\xa8\x34\xde\x92\xcd\xd6\xa1\x26\xba\x7c\x0b\x17\xaf\x5e\x8d\x78\xf9\xea\xb5\xf1\x94\x1a\xcb\xa2\x8d\x07\x22\x1c\xfc\xe5\x7a\xd3\x55\x1e\x2a\xac\x5b\x79\xb1\xf1\xe1\xe0\xb5\xf1\x45\x8e\x72\xee\x61\x67\xb9\xfd\x29\xc6\x9b\x52\x45\x59\x34\xde\x85\x13\x8d\xca\x45\xe1\x2c\xe9\x5b\xe0\x44\x23\x70\xc8\x8a\x86\xba\x68\x95\xa7\x9f\xb3\x56\x19\x88\x50\x0d\xa7\x0b\x49\xab\x3c\xfd\x9c\xb5\xca\x45\xab\x7c\x20\xae\x56\x59\x22\xdc\xca\x75\xb7\x94\x08\x57\x88\xf0\xc5\x2c\x3b\x75\xa7\x39\x55\xd7\xcb\xf7\xbc\xec\x94\xe9\x5d\x76\xea\x4e\x93\xcb\xa5\x29\xeb\xad\x10\x14\x3f\xca\xf2\x38\x21\x5a\xe5\xe9\x77\xaa\x55\x06\x82\xea\x47\x59\x1e\x3b\xd5\x2a\x4f\x35\xa8\x56\xb9\x68\x95\x7d\x7f\x5a\x65\x89\x70\xeb\x54\x83\xbe\x76\xfa\xb2\x42\x70\xef\xca\xeb\x0a\x81\x96\xb0\x4e\xb5\xd4\xab\x5d\xd8\x60\x6a\x57\x16\x0d\xb5\xa4\xb7\x75\xfa\x39\xbf\xce\xdb\xcb\xcb\xf2\x35\xbf\xbe\xac\xf7\x63\xff\xdf\xf2\xca\x70\x2b\x04\x3b\xa2\x0c\xcd\xad\xa4\xb7\x95\xfb\x8a\x29\xe9\xad\x10\xd4\x53\xca\xd0\xdc\x42\x60\x5b\x2a\x17\x11\x13\x1a\xdb\x0d\x76\xda\x79\xf4\xf8\xe8\xb1\x99\x7f\xed\xf5\x19\x9f\x0c\xd6\x2e\xb4\xc0\x61\xc1\x8c\xc9\xd7\x16\x9a\x60\x20\xe0\x71\xcf\xe0\x2c\x3f\x25\xb8\xad\x5c\x5a\x4b\x19\x6e\x13\x36\xdb\x80\xc7\x3d\x65\xb3\xcd\xd0\x2a\x73\x65\x2f\x43\xab\x0c\x44\xc5\x8b\x0f\xf2\xb9\x32\x8a\xb2\x4d\x7b\x50\x36\x8c\x77\xfd\xfd\xf9\xd0\x3b\xe5\xc4\xcd\x08\x65\x62\x25\x87\x26\x38\x38\xc3\xa7\x2c\x52\x46\x28\x53\x58\x2d\x81\x65\x10\xa4\x7b\x09\x41\x5d\xa4\x0c\x0d\x35\xb0\x9b\x21\x53\x28\x27\xc6\x1b\x0a\x87\x0c\x8d\x77\x68\xbc\xb9\x35\x97\x11\x9f\xe8\x2f\xcd\xf8\x65\x75\x5a\x2d\xbc\x34\x59\x2d\x51\x95\x77\xdb\xf5\x80\xe9\x21\xe1\xf3\xfd\x60\x37\x63\x72\xaa\xaf\x9c\x8c\x00\x6a\x23\xa5\xb4\xbe\x19\x9a\x5b\x0e\x5e\x32\x34\xb7\x40\x40\x08\x91\x41\x08\x20\xc3\x10\xc0\xe1\x4f\xbb\x82\xb0\x35\x64\x4b\x9d\xe1\xd6\x30\x34\xb7\x5c\x05\xca\xd0\xdc\x02\x01\x53\x7d\x46\xb7\x53\xcd\x2d\x57\x81\x52\x92\x60\x21\x2a\x0e\xac\x24\xc1\x29\xfb\x6f\xe5\xa2\x4e\xca\xfe\x2b\x04\xc5\x96\x52\xf6\xdf\x0c\xae\x07\x56\xce\x67\x32\x86\x3d\x60\x6e\xab\x72\x68\x6e\x83\x04\xad\xca\xbd\x94\x8c\xe1\x9b\x19\xbc\x05\xfc\xdc\x18\xbe\x05\xcd\x2d\x77\x3f\x32\x34\xb7\x40\xb0\xdd\xcf\xd0\xdc\xca\x25\x5c\x39\x32\x49\xb9\x84\x85\xa0\x2c\x53\x86\xe6\x56\x2e\xe1\x7a\xe0\xba\xc8\x25\x9c\xf0\x07\x47\x75\x54\xd3\x4e\x27\xaf\x1e\xea\xb8\x8c\xe9\xab\x9f\xbc\x7a\x54\x5d\x1c\xca\x61\x81\x11\xee\x57\x64\x1c\x0a\xc2\xb9\x16\xa4\xfb\x19\x87\x6f\xe1\x70\x7a\x31\xde\xf0\x0f\x6f\x60\xf5\xa2\x11\xa5\x1c\x4e\x29\x87\xeb\x81\x7b\x20\xe5\xb0\x10\xd4\x5c\xca\xd0\x2a\x4b\x16\x5c\xb9\x13\x98\x92\x05\x0b\xa6\x85\x66\xb8\x09\x96\x3f\xb8\x72\x11\x20\x25\x10\x16\x82\xc0\x46\x86\x16\x38\xbe\xca\x21\xc4\x1d\xe2\xf4\x5b\xc0\x2a\x53\x10\x20\x43\xab\x2c\x7f\x70\x3d\xfc\xda\xdd\x18\xc3\x19\x1c\xc4\x3f\x32\xb4\xa3\xa1\x1d\x3d\xb0\x11\xa1\x1d\x05\xa2\xe2\x16\x43\x26\xbc\xc1\xb7\x80\x55\x96\x2c\x38\x21\x08\x8e\x5a\xed\xc0\x4e\x6f\x3b\xf5\x73\xbe\xed\xf4\xb6\x53\x16\xd2\x6d\xa7\x64\xac\xd5\x43\x05\xeb\xc6\x18\x30\x27\x35\xe3\x56\x0e\x2b\x87\x1c\x2a\xd8\x5b\x41\x6e\xde\x02\x1e\x5f\xdc\xbe\x05\x83\x44\x87\x0a\x76\x29\x1b\x3b\xc8\xea\xda\x72\x07\x19\x9a\xb4\xd3\x37\xa3\x49\x03\x82\x9a\x06\x19\x9a\x34\xc9\x77\xeb\xe9\x94\x3f\x6a\x02\x4c\x5a\x75\x09\x6a\xd2\xa4\xd0\xad\xa7\x73\xf9\xf8\xb2\x1e\x3b\x65\xf0\x8f\x9d\xc2\xc7\x55\xc9\x84\x4d\x28\x76\x3f\x08\x8a\x2a\xa5\x4c\xbb\x42\xa9\xa7\xa3\x7f\x15\x04\xcb\x47\xe9\x83\x0c\x2d\x9f\xe4\xbb\xf5\x74\xf4\x6e\x3e\x01\xd3\x6a\x53\xf2\x5d\x61\x37\x43\x5e\x37\x9f\xc1\x46\xb3\xba\xee\xdd\x68\x02\xbb\x19\x2f\xf0\x75\x08\x24\x10\xd4\xee\x2f\x5d\x5b\x1a\xc8\x93\x61\x49\xd2\x2b\x04\xd5\x92\xb2\x6a\x20\x65\xdf\xad\x64\xc2\xa6\xec\xbb\x09\xe3\x6e\x54\x6c\x66\x25\xd6\x9b\x55\x03\x79\x7e\x3f\x4d\x9f\x31\x6f\xc3\x5f\x32\x6f\xb2\xef\x56\xd2\x48\x53\xf6\xdd\x84\x7d\x37\x28\x83\x94\xb2\xef\x66\xd5\xf2\x91\xaa\x99\x55\xcb\x07\x44\x1d\x9d\x47\xa7\x8f\xec\x94\x0f\x50\x92\x5e\x21\xea\xf7\x88\x91\x56\x72\x0a\x2a\x59\x93\x59\xc9\x29\xc8\x1a\x76\x8a\xb8\x6e\x2e\xab\xa6\xed\xe4\xcb\xaa\x9a\xb6\xaa\x69\xfb\x7e\xe9\x48\xb9\x87\x58\xc9\x25\xcc\x4a\xb8\x58\x08\xea\x1b\x65\x6d\xfe\x35\xc2\x72\x8d\x24\xb3\x94\x43\x37\xe1\xcb\x35\xcf\x38\xe5\xcb\x4d\xb9\x71\x1b\x57\xca\x52\x72\x5c\x21\x2a\xfe\x2e\x44\xb9\x1b\x28\x56\x40\xe6\x4c\x4a\x84\x2b\x44\x9d\x7f\x66\x69\xc9\xaa\x6a\x96\x3a\xb7\xfd\xf8\x2e\xe4\xce\x15\xa2\x3a\xe8\xe9\x0b\x99\x8a\xce\x3a\x93\x27\x37\xe1\xc6\x35\xf7\x39\xeb\x54\xf4\xa9\xe8\xae\x0c\x35\x78\x55\x83\xe3\x0e\x57\x35\x38\xd4\xb8\xbb\x19\xa3\x3e\x9c\x7d\x0e\x85\x28\x7f\x94\xd5\x3d\x54\x3d\xec\xd4\x45\xa5\x6a\x06\xcc\x7d\xce\x7a\xf8\xca\xad\x9d\x41\x96\x47\x4a\xa7\x2b\x98\xfb\x9c\xd2\xe9\x66\xbd\x9d\x2f\x17\x50\x3a\x5f\xe4\x28\xd5\xc3\x47\x4e\x08\xb1\xac\x56\x30\xc1\xd2\xb2\x26\x14\xac\x41\xcd\xa5\x94\x82\x35\xa5\x5b\x6d\xf0\xa9\xa5\x7c\xab\x42\x50\x73\x29\xa5\x5b\x4d\x28\x56\x4b\xe3\xbc\x23\x21\x5a\xfd\x6b\x56\x35\x11\x0e\x8e\xdc\xaa\xc2\x6e\xc6\xb0\x1e\xdf\xc2\xc3\x5b\xc0\x73\xa9\x2a\x27\xb9\x55\x1b\x07\x45\x29\xb7\x6a\xc2\xa7\x1a\x15\xcf\xa5\x3e\xca\x66\xe1\x09\x68\xd7\xb2\x1a\xdf\xaa\x2a\xac\xd3\x5f\xfa\x16\x5e\xab\xf8\xa0\x76\xaa\x9e\x74\x25\xe4\x45\x95\x90\xac\x6a\x9d\xfa\xda\xa9\x9f\xb1\x2a\x06\x08\x0a\x3d\x65\x35\xbc\x25\x53\x6b\xa3\x4c\x59\xca\xd4\x9a\xed\xe7\x4f\xf9\xf2\x9a\x8a\x02\x30\x41\x3c\x9b\x11\x29\x09\x5d\x1b\x91\xf9\x94\xd0\x55\x30\x41\x3c\x25\x74\xcd\x16\xca\xcb\x12\x69\x7e\xb3\x40\x54\x7c\xdf\x66\x90\x48\x1e\xd5\x66\xf0\x54\x22\x55\x21\xda\xf7\x68\xf9\xe8\xb5\x19\x82\xe8\x2d\x02\xd1\x70\x91\x9b\xce\xa2\x14\xac\xcd\x00\xa5\x14\xac\x42\xb4\x5f\xf0\xc8\x4e\xab\x9d\xe2\xdf\x35\xc3\x3a\xad\x2e\x9a\xf9\x88\x29\x6f\x38\x90\xcd\x20\x60\xd3\x81\x04\x82\x8a\x53\xd9\x74\x20\x25\x48\x6d\x14\xf8\x4e\x19\x52\x13\x36\x54\x53\xe1\x53\x36\xd4\x6c\xea\x13\x4a\x24\x67\x53\x9f\x00\x41\x29\xa9\x6c\xe3\xfb\x6b\xca\xe6\x9b\x51\x9f\x00\x41\xd9\xa8\x94\x34\x35\xdb\xb4\x53\x94\x6e\xd3\x49\x6b\x1c\x0f\x37\x07\x3f\xed\x74\x5a\x5f\x09\xfd\xd7\x0c\x80\x00\xd1\x8a\xbf\xbc\x7c\xe4\xf4\xa2\xd8\xa4\x60\x15\xa2\x39\x47\x3a\x64\xed\xb4\x53\x34\x67\x33\x8a\x01\x04\xd5\xa5\xb2\x19\xc5\x68\xa7\x43\x70\xd5\xe8\x1c\x01\xd1\xf8\x4e\x65\x65\x4d\x29\x4d\x9b\xdb\x0e\x39\x4d\x85\xa0\x08\x55\x4a\x69\x9a\x8d\xc0\x7c\xd3\xd5\x6a\x06\xe6\x81\x68\xb8\xca\xcd\xed\x7e\x7b\xac\x65\x84\x0f\xdc\xdc\xb7\x02\x41\xad\xaa\x6c\x7e\x6d\x72\x6e\xb6\xea\x10\x34\xf2\x10\x6c\x46\xc3\x55\x96\x60\x33\x9b\x5f\x9b\xba\xa6\xf9\xb5\x01\x41\x49\xab\x6c\xaf\x23\xf5\x6b\xe3\x3a\x46\xca\xc3\x29\x44\xc3\x55\x96\x87\x53\xd8\xcd\xec\x41\x41\x36\x44\xc3\x55\x6e\xda\xf8\x46\xde\x7b\x53\x89\xc0\xdd\xf9\x41\x78\x6e\x25\x83\x67\x76\xce\x73\x29\x86\x95\x9d\xf3\xdc\xec\x3f\xe7\xe8\xb4\x59\xfa\x8c\x39\xc2\x2d\xee\xdc\x6f\xca\xee\xa7\xdb\x98\xf1\xee\xa7\x0b\x04\xd5\xae\xb2\xfb\xe9\x4a\x11\xda\x28\x84\x96\x52\x84\x0a\xd1\xf0\xd1\xba\xf1\x65\xf8\x3c\x4b\x73\xbd\x75\x8d\x37\x10\xad\xfa\xc8\x4e\xb1\xca\xcd\x97\xd5\xb5\xca\x1d\xab\x4c\xed\xac\xec\x5a\xe5\xae\x22\xf8\x04\x51\x11\x74\x15\x01\xae\x5c\x8f\xef\xaf\x39\x04\x7b\x50\x11\x74\x15\x01\x6f\xbe\xab\x08\x64\xed\x6c\xdf\x4f\x8d\xef\xc2\xd4\x19\xd4\xce\xca\x6e\x7c\x17\x28\x8d\xd2\x56\xd9\xb9\x5f\x24\x04\x14\x79\xd9\xd5\x0d\xbd\x7e\xb5\xa8\x90\xd7\x98\x6f\x57\x5f\xd4\x3f\xf3\xa3\x66\x57\x9d\x40\xf7\xb9\xff\xca\x5e\x19\xbd\x39\xad\xf8\x1d\xdc\x5e\x49\xb9\x3f\xb3\xab\x75\xa0\xcb\xcb\xae\xd6\x81\x0f\x34\xbe\xfe\x8d\x08\x03\xa5\x79\x06\xd9\x9b\x72\x92\x7e\xe3\xe9\x25\xdc\xa0\x7f\xcd\xde\x2d\x7c\x85\xd9\x80\x08\x74\x03\x9d\xe2\x37\x76\xa3\xc4\xc0\x6e\xc6\xe4\x90\x7e\x93\x9d\x5c\xc6\xaf\x83\xee\x7c\x7d\x95\xc0\x88\xc9\x74\x43\xc2\xf0\x81\x86\x87\x9c\xd2\x81\x0a\xbb\x19\xc3\x72\x77\x0b\x45\x68\x7c\x1d\x0c\x57\xad\x8a\x93\x6a\x4d\xd9\x55\x9c\x40\x50\x70\x2a\xbb\x1b\xde\xae\xe2\xa4\xd0\x53\x76\x15\x67\x57\x71\xe2\x6b\x74\x15\x67\xd7\xc3\xa2\x82\x53\x76\x3d\xac\x3e\xed\x14\x39\x74\x97\x80\xd2\x28\x75\x94\x5d\x7f\xa9\xab\x38\x71\x49\xba\x8a\xb3\xeb\x1b\x71\x29\x27\xbb\xbe\x51\xc7\x37\xe2\xd6\x4f\x76\x7d\xa3\xae\xe2\xa4\xea\x50\x76\x15\x67\x57\x71\x62\x46\xbb\x8a\xb3\xeb\x42\x71\x77\x27\xbb\x2e\x14\x10\x94\x88\xca\xae\x0b\xd5\x0f\xdf\x02\x5a\xa7\x1f\xbe\x85\x0d\x41\x89\xa8\xec\x7a\x55\xfd\x2b\x3f\x76\xd8\x83\xb2\x1d\xca\xa6\x1c\xca\x46\xfa\x4d\xa3\x64\x4f\x76\xc3\xd5\x80\x37\x92\xb2\xbb\x2f\x06\x76\x33\x9f\x29\x2f\xe7\xca\xdf\x1c\x79\xae\xdc\x2d\xc5\x43\x65\x9f\xec\x2a\x7a\x20\xbe\x39\x32\x5a\x0d\xec\x66\xbc\x05\xc3\xd5\x9d\x2d\x75\xc3\x61\xe8\x6e\xa9\xfb\xf9\x55\x50\x63\x08\x9a\x88\xae\x89\x98\x3e\x72\x6d\x9d\x4e\x2f\x1e\x83\x24\xb2\x42\x50\x35\x2a\xbb\xd1\xea\xfe\x15\x33\xc3\xc6\x4b\x05\x2b\x04\x55\xa3\x52\x26\xd8\x84\xc2\xb5\xb4\xae\xc2\x72\x13\x0c\x9f\x6b\x7c\xef\xcf\x4d\x70\xd7\x2e\xf5\xb0\x99\x53\xce\xee\xf6\x7b\x7f\xf7\xf7\xd7\x2e\x9b\xd1\xe9\xed\x47\x79\xf3\x2d\xe0\xc8\x76\x0f\x87\xe5\x73\x6d\x1d\x45\x2f\x9f\x6b\xf6\xe4\x73\xc6\xf5\x84\xc8\xf5\x83\xdd\x0c\x79\x0d\x26\x03\xde\xbd\xca\x6e\x30\x59\x8a\xd7\xe6\xf1\xb3\x1c\xaf\x42\x7c\x33\x9e\x5f\xa7\xcc\x9b\xc7\xcf\xdd\x93\x60\x68\x5f\xe3\x9b\xf1\xe5\x3b\x5d\xca\xa6\x1e\x36\x34\x0d\x44\xc3\x95\xeb\x86\xa6\x65\x87\x6d\x9e\x52\xcb\x0e\x2b\xc4\xf7\x62\x0c\x4d\xf7\xf5\x75\x4a\x0f\xee\xe3\x3b\x59\x1c\x54\xfd\xca\xae\xa7\x0c\x94\xc6\x75\xa9\xec\xba\xca\x40\x7c\xef\xcf\x68\x35\xb0\x9b\x31\x7a\xf7\xf6\x40\x98\xb3\xd0\x3d\x57\x96\x92\xb6\x71\x5d\x2a\xa5\xa4\xcd\xbe\x3d\xe6\xe8\x5a\x39\xb7\xf6\x5d\xb3\xdf\x55\x83\x9a\x7d\x20\xba\x56\xce\xad\x7d\xd7\xec\x53\x85\x25\xbb\x66\x1f\x08\xaa\x20\x65\xd7\xec\x03\xbb\x19\x9d\xea\x78\x77\xce\x95\x3b\x3e\x5a\xd7\x13\xe8\x56\x77\xf3\x30\xbb\x1b\xe8\x86\x1b\x37\xa8\x82\x94\x52\xe3\xe6\xc0\x9e\x9b\xed\x30\xb4\xe7\xe3\xe7\xe0\xd1\x8c\xc3\x08\xf6\xc0\x15\xa7\xf8\x50\x0e\x5d\xf1\xa1\xd9\x87\x21\x34\x87\x66\x1f\x08\x93\x22\x86\x66\x5f\xee\xdd\xe6\x31\xb8\xdc\xbb\x42\xb8\x78\x87\x66\x5f\x52\xdd\x46\x55\x93\x94\x54\x37\x21\xd2\x0d\x17\xef\x30\x5a\x0d\x94\xc6\x6d\xa5\x1c\xa4\x73\xe5\x28\x76\xca\x10\x34\xfb\x43\xff\xdf\xf3\xed\xa1\xff\x0f\xf7\x6e\x50\xa3\x28\xe5\xde\xcd\xa1\x77\x40\x45\xb2\x1c\x7a\x07\x40\xb8\xc6\x47\x38\x52\xbd\x03\x28\x40\x53\x8a\xde\x1c\xc1\x6b\x66\x8d\x0f\x63\xca\x43\xef\x00\x0a\xd0\x1c\x7a\x07\x40\xb8\x78\x87\xde\xc1\xa8\x2e\xc1\xf3\xf7\x67\xe3\x3d\x8c\x39\x43\xee\xeb\x95\xc4\x1c\x1e\x2b\x03\xfb\xaf\x30\x87\x9e\x2b\x03\x5e\x2c\xcc\xa1\xdb\x01\xec\x66\x0a\xe0\x70\x70\x45\x28\x92\x94\x43\x57\x64\xe8\x8a\x50\xed\x22\x87\xae\x08\x10\x14\x49\xca\xa1\x2b\x32\xaa\x23\xe4\x6b\x1f\x1e\x35\x0f\xb2\xe4\xcc\xe7\x18\xcd\x05\xa4\xaf\xe1\xd9\xfb\xd0\xd7\x00\xbc\xcd\x98\xc3\xb0\x87\x5c\xc5\x8d\xc2\x13\x29\x57\xb1\xe0\x6d\xc6\x94\xab\x38\x07\x21\xf2\xe6\xd9\xfb\x30\x44\x3e\xba\x9d\xfa\xc8\x4e\xf5\x35\x86\x8b\x5b\x5f\x63\xe0\x6b\x50\x4b\x29\x87\xbe\xc6\xe8\x16\x3d\x64\x03\x32\x3c\x6a\x1e\x5c\x50\xe3\x9a\x62\x0e\x2e\xa8\xe5\xd0\x89\xa0\x96\x41\x0e\x9d\x08\x20\xfc\x8a\x87\x21\xf2\xe1\x7e\x09\x2e\xd4\x1c\xee\x97\x80\xf0\x2b\x1e\xee\x97\x06\x7c\x78\xcd\xf3\xed\x31\x5c\x2d\x83\x6f\x11\xcf\x65\xe8\x30\x00\xbb\x99\xcf\xec\x01\x27\xc2\xcc\x95\xa1\x13\x31\x0c\xb0\x78\x0c\x3e\x0c\xb0\x0c\xb6\x55\xea\x84\xe1\xb6\x6a\xe8\x44\x0c\xdf\x8c\x4e\x04\x10\x94\x5c\xca\x31\x95\x4d\x27\xc2\x63\xf0\xa1\x13\x01\x78\x37\x32\x87\x4e\xc4\x30\xc0\x02\x7b\x69\x0e\x5d\x81\x71\xd8\x29\xf3\x66\xec\x1b\x28\x6d\x38\xfa\xc3\x85\x74\xb0\x90\x70\x70\x86\x0e\x03\xb0\x9b\x31\x52\x83\x2e\x00\x57\x28\xf7\xff\x7d\x0b\x6e\xf9\x3c\x2d\x1f\x6e\xf9\x06\x66\xff\xd3\x3a\x9a\xfd\x71\x2a\x9b\x0a\xcb\x48\x3a\xe0\x55\xca\x1c\x9a\x7d\x69\xaa\xdb\xb0\x07\xcd\x3e\x10\x9f\x72\xd2\xec\xcb\x3f\xdd\x86\x3f\x35\x44\x0e\xe7\x74\x98\xa3\x33\x0c\x91\x03\xa5\x79\xf6\x3e\x2e\x3f\xc0\x8b\x0f\x50\x1d\x66\xd4\x7c\xe8\x1d\x78\xf6\x3e\xf4\x0e\x80\xa0\x32\x53\x0e\xbd\x83\x71\xf9\x16\x70\x53\x86\x47\xcd\xd0\x54\x07\x95\x99\x52\x9a\xea\x1c\x3a\x11\x90\xb1\xe7\xd0\x89\x00\xbc\xe6\x99\xe3\xf6\xcb\xd2\x89\xf0\xec\x7d\xe8\x44\x8c\xed\x31\x44\xff\x3a\xf0\xc5\x18\xe6\x1a\x04\xab\x86\x61\xae\x91\x76\xca\x48\x4d\x27\x03\x4a\x83\x03\x3d\x47\xfa\x65\x25\x36\x13\xcf\x65\xe8\x57\x00\xbb\x19\xf2\x7a\x98\x0d\x78\x1b\x34\x87\x59\x67\x43\x5f\x63\xa8\xb8\xf4\x35\x06\x19\xa3\xd4\x54\xca\xa1\x5f\x31\x74\x22\x20\x10\xcf\xa1\x13\x01\x04\x84\xcd\x39\x4c\x27\x93\xb7\xbb\x41\x20\x9e\xf2\x76\x0b\xf1\x29\x75\x9d\x88\x61\x08\x6e\xfe\xfc\xa9\x9d\x2e\x3b\x65\xf0\x1e\x06\x0c\x9d\x08\xee\xd8\xe5\xd0\x89\x18\x3a\x11\xb8\x4b\x43\x27\x62\x18\x5b\xf3\x88\x7e\x18\x5b\x1b\xec\xf6\x3f\xdd\xef\x6e\x7f\xe8\x1d\x78\xf6\x3e\xf4\x0e\x80\x30\x05\x6a\x18\x6e\x93\x53\xbc\x4d\x75\x88\xde\xc1\xd0\x3b\x70\x8e\xf4\x0e\x24\x0b\x6f\x53\x6b\xa8\x8d\x87\x20\x3c\x3e\xe5\xee\xce\x7e\xbc\x5f\x91\x54\xff\x9a\x3d\x70\xbe\xfd\x69\x6d\xcf\xb7\xe5\x14\x6f\xf0\xca\xa6\x9c\xe2\x39\x7f\xce\x25\x7b\xd4\xe9\x61\x36\x04\xe2\x01\x5d\x75\x4a\x20\x9e\xd3\x48\xdd\xc4\x30\x4c\x23\x75\x53\xf7\x80\x97\x35\x75\x0f\xa6\xee\xc1\x64\xdb\x38\x75\x0f\xa6\xee\xc1\xe9\x2f\x91\x6d\xba\xdd\x87\x6b\x36\xa7\xdb\xfd\x49\x48\xdf\x9c\xac\x69\x48\x1f\x28\x0d\x12\xd9\x9c\x54\x70\x15\x62\xe0\xb7\x4d\x3d\x06\x60\x37\xf3\x99\x82\xe0\x45\x50\xb7\x28\xa7\x5e\xc4\x2c\x8e\x1e\xf5\x33\xc3\xd1\x47\xa1\x19\x72\x44\xf8\x48\xd9\x50\x70\x53\x2f\x02\x88\xf1\xfb\x27\x12\xd6\xa6\x41\x46\x09\xd7\x9b\x87\xff\x12\xae\x0b\x41\x59\xa3\x9c\x3a\x19\x53\xef\x01\x2a\xda\x9c\x7a\x0f\xd0\xa3\x07\x65\x8d\x72\x9a\x62\x36\xf5\x1e\x60\xff\xcd\xa9\x7b\x00\x84\x79\x62\xd3\xb8\xe3\xb4\xd0\x2c\xec\xbf\x39\x0d\x3c\x02\xa1\x81\x9c\x7a\x11\x53\x2f\x82\xab\x8b\x39\xf5\x22\x80\xd0\x40\xca\xc5\x9e\x92\xac\x37\x48\x82\x53\x96\xf5\x9c\x84\x20\xa8\x57\x94\xd3\x18\xc3\xd4\x3d\x30\x47\x60\xea\x1e\x00\x61\xd6\xd9\x34\x13\x4d\x7e\xf6\x66\x12\x80\xfc\xec\x42\x50\x88\x28\xe5\x67\x4f\xf8\xd7\x77\x33\x7a\x30\x3b\x0d\x08\x0a\x11\xe5\x34\x14\x21\x3f\x7b\x33\x09\x40\x7e\xf6\x84\x93\x3d\x34\xde\xd3\x84\x35\x60\x37\xe3\x5d\x1a\x9e\x00\x42\xe3\x3d\x75\x2c\x80\xd2\x4c\x02\x98\xa6\x6a\x4f\x4e\xd0\x21\x32\xcf\xe9\x09\xfa\xd4\x8b\x30\x09\x60\xea\x45\x00\x61\xaa\xdb\x34\x3a\x21\xdb\x7b\x83\x9b\x37\x65\x7b\x17\xbc\xd2\x9e\xb2\xbd\xa7\x34\xee\x0d\x36\xdb\x94\xc6\x5d\x08\x3d\x06\x69\xdc\x73\x42\xcf\xd8\x0e\x97\xe8\x70\xf4\x1b\xbc\xf9\x9e\x53\xff\x43\xca\xf6\x06\xc7\x6b\xca\xd9\x9e\xf0\xb3\x87\x8e\x85\xfc\xec\x39\xf5\x22\xa0\x34\xcd\xa9\x17\x01\x78\xf3\x3d\xa7\xf1\x5a\x69\xdc\xdb\xe1\x9b\x99\x5f\x0f\x0f\xcd\x7c\xe4\x54\x5a\xe2\xfc\x20\x8c\x09\x59\xfb\x06\x3b\xf5\x91\x9d\x1a\x63\x30\xf3\x60\x1a\x63\x98\x5c\xf9\xd4\xff\x98\x7a\x0c\x52\xb6\x37\x28\x42\x53\xce\x76\x21\x28\xa2\x93\x52\xb6\x0b\xbb\x19\xf3\x66\x40\x61\x12\x3c\xe0\x82\x7c\x4e\x83\x07\x53\x2f\x82\xeb\xa8\x39\xf5\x22\x00\x2f\xc8\xe7\x34\x9e\x20\xdb\x7b\x33\xdd\x41\xb6\xf7\x9c\x78\x11\x14\xd1\xc9\xa9\x17\x21\x01\x7c\x3b\x7c\x33\xa7\xcb\x92\xab\x9f\x7a\x33\xd3\x23\x7a\xd9\xde\xdb\xe1\x9b\x31\x78\x00\xc3\x7b\xe8\xcd\x4c\xf3\xda\x80\xdd\x0c\x79\xcd\x5d\x9f\xdb\xb3\x08\x28\xdb\x73\xea\x58\x40\xf0\xbe\x9b\x31\x04\x0f\xda\x61\x7b\x0f\x9d\x1e\xd9\xde\x73\xea\x45\x70\x91\x34\xa7\x5e\x04\x10\x3a\x3d\xd3\x84\x35\x49\xe1\x9b\xc9\x13\x92\xc2\x0b\x31\x86\xbf\x74\x42\x8c\x7d\x1f\xc4\x02\xa7\xb1\xef\x79\xdb\x29\x43\x30\xaf\x0d\x28\x0d\xbe\xc8\x9c\xc6\x1d\x26\x5e\x84\xe9\x8b\x53\x2f\x42\x9e\xf8\x76\x38\x2c\xf3\xda\x20\x85\x0f\xaa\xe3\xa4\xa4\xf0\x39\x75\x0f\x0e\xe5\xd5\x3d\x00\x62\xa8\xf2\x0c\x45\x4c\x43\x11\x87\x82\xe8\x32\x00\xa1\x43\x36\xf3\x93\xc3\x09\xc1\x97\x9b\x7a\x11\x40\xe8\x90\x4d\xbd\x88\x69\x8c\xc1\x54\x8c\x69\x8c\x01\x08\x1d\xb2\x69\x8c\x61\x2e\x8b\x55\x7f\x3f\x55\x10\xbc\x08\x8a\xd0\xe6\xd4\x8b\x98\x8f\xd3\x8b\x0f\x35\x0d\x28\x00\x61\x6a\xe5\x34\x9e\x30\xf5\x22\x0e\xf5\x9b\x5e\x04\x10\xe3\xfb\xa5\x9d\xea\x45\x40\x8f\x98\xb2\xe4\x0b\xb2\x19\xe4\xd4\x8b\x90\x9c\xbe\x1d\xe8\x37\xd9\xe9\x13\x76\x7a\xd9\x0c\x52\x76\xfa\x3c\xb4\xf1\x50\xe9\xe5\xa1\x8d\x07\x82\xca\x3d\x79\xb8\xdd\x3f\xb4\xf1\x50\xe9\xe5\xa1\x8d\x07\x24\x3d\xc8\x43\x1b\x2f\xaf\x7d\x3b\x31\x02\x12\xdb\x0b\x61\x3e\x27\x24\xf7\x1b\x5e\x9b\xed\xb9\x94\xc4\x3e\x21\xae\x97\x1b\x21\x0f\x13\xd6\x80\xdd\x0c\x79\x3d\xdd\x07\x82\x3a\x40\x79\xe8\x1d\x00\xa5\x9d\xa8\xed\xc3\xd3\x80\xa3\xf0\xc9\xe0\xa4\x1d\x7a\x07\xf2\xda\x37\x6e\xfd\xa6\xc4\xf6\x09\x89\x7d\x8c\xe3\xcf\xe4\xe6\x29\xc7\x7d\x1e\x7a\x0a\xd0\xd4\xe5\xa1\xa7\x00\x84\x7e\xee\x61\x5e\x9b\x54\xf8\x0d\xfe\xb9\x94\x0a\x5f\x08\xfd\xdc\x43\x57\x40\x8e\xfb\x66\x16\x89\x1c\xf7\x09\xaf\x7d\x50\xeb\x27\x0f\x13\xd6\x80\xdd\xcc\xbf\xf6\xfa\x0c\x5b\x85\x0f\x77\xe8\x1d\x00\xbb\x19\xf3\x65\x70\xe1\xd0\x63\xc0\x5f\x3b\xf4\x18\x0e\x4f\x23\xcc\x22\x39\x34\xe8\x40\x50\xc4\x27\x0f\xa3\x02\x87\x36\xde\xbc\x8f\x43\x1b\x0f\x84\x3e\xf8\xe1\xc9\x83\x8c\xf9\xed\x44\x73\xca\x98\x2f\xc4\x38\x7d\xa4\x1c\xee\xed\xb9\x3b\x9c\x87\x7b\xfb\x83\x6c\x73\x5d\xf5\x43\x7b\x7e\x68\xbc\x4d\xe8\x38\x34\xde\x07\xc6\x9b\x22\x3e\x79\x68\xbc\x65\xc7\x6f\x10\x7e\xa5\xf4\xf8\x42\x50\xc4\x27\x0f\xd3\xdf\xa4\x98\x6f\xb0\x65\xa5\x1c\xf3\x09\x9f\x7c\x50\xc4\x27\xe5\x93\xcf\x43\x03\xc9\xdd\xe1\x3c\x34\x90\x40\x50\x9d\x27\x0f\x53\xcc\xa4\x9d\x6f\xa7\x73\xa9\x81\x04\x62\xfa\xf5\x68\x20\x81\xdd\x8c\x21\xb8\xf5\x06\x82\xea\x3c\x09\x2d\xfd\x86\x97\x72\xe6\x8e\xde\x6d\xf6\x41\x8a\x99\xbb\x8d\xc3\x14\x33\x60\x37\x43\x5e\xed\x28\x10\xee\x36\x0e\xc3\xf7\xc0\x6e\x86\x6c\xc6\xef\x0f\x62\xf5\xd3\x6f\xd1\x0d\xfa\x71\x58\xdf\xdd\x61\x69\x5b\xe1\xba\x8f\x59\xfc\xa5\xd3\x8b\x81\xec\x3f\x05\xd1\x40\x02\x31\xfd\x16\x35\x90\xc7\x69\x19\x78\x7f\xea\x66\x19\x08\xf7\x2e\xc7\xf9\xfd\xb5\xc7\xda\xf3\x4c\xaf\x89\xdf\x80\x94\x21\x79\x68\x0c\x81\xdd\x8c\x91\x1a\x4a\x07\xa4\x0c\xc9\x43\x03\x29\x0f\x7f\xff\xf9\x01\xba\xa7\x06\xa4\x0c\x49\x79\xf8\xf3\xc0\x56\x75\xaa\x56\xe6\xa1\xad\x3a\x6e\x65\x43\x0e\x6d\x95\xf4\xf7\xfd\xc7\x36\x42\xfe\x7b\x21\xa6\x1d\xb8\x6d\x3d\xd2\x4e\x89\x93\x1c\xda\x2a\x20\x4c\x7d\x3e\xcc\xc1\x96\x12\xbf\x43\x2d\x92\x52\xe2\x0b\x31\x55\x04\xda\x2a\xb9\xee\x3b\x64\x20\x29\xd7\x7d\xc2\x6f\x2f\x9d\x49\x1e\x30\x2d\x08\xa5\x43\xb8\x91\x87\x39\xd8\x40\x4c\xf5\x85\x76\x09\xd8\xcd\x7c\xa6\x20\x24\x9d\x4c\x07\x6f\xd2\x89\xf4\xf7\xfd\x87\x35\x94\xff\x3e\xe1\xba\x0f\xf7\x7c\x72\xdd\xe7\xf1\x28\x1b\xa6\xe4\xd0\x56\x01\xe1\x36\xf0\xd0\x56\x1d\xaf\xeb\x0d\x97\xfd\x78\xbf\x67\x0c\x01\x2f\xf0\x30\x0c\x2d\x13\x7d\xff\xf9\xc9\x18\x73\x86\x76\x3e\x4c\xf2\x96\x76\x3e\xa5\x9d\xef\x70\x12\xa4\xb4\xf3\x42\xb8\xa9\x3c\xcd\x1d\x93\x89\xbe\x17\x3e\x71\x99\xe8\xf3\xdc\x7b\xd0\x30\x17\xfc\x84\x7b\x26\x4f\x36\x9a\xbd\xb0\xc8\x4f\x37\x9a\x27\xb9\x63\xd4\x39\xc9\xd3\xdc\x31\xa0\x74\xca\x3c\xe6\x69\x72\x35\x10\x14\x30\xc9\x53\xbb\x74\x5a\x1d\x98\x7b\xff\x79\x1a\x9b\x06\x82\x62\x3e\x79\x6a\xab\xa4\xbf\xef\x5c\x7f\x4e\xe9\xef\x05\x49\x65\x52\xfa\xfb\x3c\x2d\xd4\xcb\x4d\xfd\x3c\x55\xf8\x40\x98\x80\x7e\x7a\xae\x7c\x56\x47\xea\xe8\xdd\xc1\x01\x41\xcd\xf7\x3c\xdd\xc0\xc9\x3a\xdf\x8b\x82\xb8\x61\x81\x62\x3e\xa8\xf9\x93\x52\xcc\xe7\xd9\xfd\x6b\xb8\x29\xa7\xda\xf2\x54\x5b\xa2\x8e\x4f\xb5\xa5\x4c\xf4\xdd\x9b\xaa\x32\xd1\x0b\xe1\xbe\xf8\x74\xab\x23\xc5\x7c\xf7\x6e\xa9\x14\xf3\x09\xad\xbc\xbc\x38\x79\x7a\x9c\x0a\x94\xee\xfd\xcd\x13\x36\x47\x21\xcc\xa1\x3f\x3d\x61\x95\x4e\xbe\x7b\x7f\x53\x3e\x79\x21\x28\x0d\x94\xd2\xc9\xe7\x39\xec\x14\x15\x7d\xaa\xc9\x81\x98\xfd\x9f\x38\xf3\x3e\x8d\x9d\xca\x40\xdf\x0b\x66\x4e\x06\x7a\x21\xdc\xd2\x9f\x2a\x7a\xa9\xe5\xbb\x59\x40\x52\xcb\x0b\x41\x81\xa1\x94\x5a\x3e\xe5\x87\xef\x66\x01\x49\x10\x9f\x70\xc2\x87\x5b\xfb\xd3\x08\x28\x9c\xf0\xa5\x53\x53\x32\x4f\xc3\x9d\x40\x50\x8c\x26\xe5\x87\x4f\x38\xe1\x4b\x37\xbd\xe7\x74\xef\x02\x84\x11\x80\xd3\xb3\xd0\xf3\xb4\x53\x74\xdd\x69\x68\xf3\x3c\xed\x94\x99\x76\x03\x02\x94\x6e\x16\xd0\xe9\x0e\x04\x08\x8a\x0e\xe5\x69\xb4\xf3\x54\x83\x7b\x51\xee\x54\x83\x9f\x6a\x70\x8e\x78\x4f\x35\xb8\xcc\xee\x3d\xd0\x27\x52\xbb\x27\x34\xee\xe1\x9d\x03\x69\xdc\xf3\x54\x99\x7a\xd5\xe8\x54\x99\x9e\x2a\x53\x94\xd3\xa9\x32\x3d\x29\x1a\xd5\xbd\x43\x04\xf5\xfb\x06\xd6\xd9\xb4\x03\xd7\x19\x04\xf0\x3d\x50\x7f\x32\xc0\x0b\x61\xd8\xe1\xf4\xa8\xf2\x4c\x65\xb3\x07\x3d\xfa\x93\xc3\xc5\xe9\x42\xf6\x70\x51\x02\xf8\xee\x75\x1e\x19\xe0\x85\x98\x38\xd7\xa7\x6a\x18\xd8\xcd\x7c\xa6\xbc\x0b\x15\xe3\x7a\x57\x0d\x9f\xea\xdc\xf8\x9e\x29\xef\x42\x36\x34\xa2\x3c\xf1\x42\xe9\xf1\x3d\x73\xca\xd9\x1f\xc0\xe6\x94\xa7\xfb\x83\x53\xd5\xec\x3d\x9d\x53\xd5\x0c\xc4\xc4\x1d\x96\x27\x5e\xd8\xcd\x78\xf5\xaa\x6b\x40\xd2\xa7\x94\x27\x5e\xd8\xcd\xfc\xa9\xc3\x52\x83\xfb\x91\xa9\xc1\xa1\x90\xdf\xcd\xfc\xa9\xc3\x7a\xb0\x2e\x78\xcd\xd2\xc9\xa7\xdc\xf1\x3d\xbe\x67\x0e\xe1\x71\x08\x0c\xde\x7c\x40\xa0\x74\xaf\xcc\x9c\x9e\x72\x9e\x24\x32\x19\x39\x39\x4d\x64\x82\x2e\x7e\x37\x63\xf4\xc6\x2c\x4f\x62\x96\x94\x0b\xca\xd3\x98\xe5\xa9\xd9\xf0\xf6\xca\xa9\xd9\x00\x82\x72\x41\x79\x1a\xc6\x94\x62\xbe\x57\xbe\x53\x29\xe6\x85\xa0\x5c\x50\x5e\x9a\x0d\x29\xe6\x7b\x25\xe0\x27\xc5\x7c\x42\x2b\x1f\x06\x58\x2e\xf7\x29\x40\xe9\xb5\xf8\xd7\x6e\x9f\x31\x52\x5c\xb9\x4b\xb3\x71\x11\x9f\xec\xde\xed\xb8\xdc\x81\x00\x92\x65\xa5\xe4\xf4\x79\x69\x0f\xbc\x3f\x71\x69\x0f\x80\x38\x94\x43\x7b\x70\xc1\x61\xd9\x2b\x5f\xfd\x15\xdf\xb3\x93\x66\x8d\x47\xca\x86\x5b\xdc\x4d\xa2\x97\x01\x3e\x21\x7d\x97\x7a\x2b\x2f\xdd\xe2\x4b\x7b\x00\x41\x71\x5e\xda\x03\x20\xa8\xdc\x93\x97\xf1\xab\x4b\x7b\x60\xe2\xf0\xa5\x3d\x00\x82\xca\x3d\x79\x69\x0f\x64\x7b\xef\x95\xcf\x48\xb6\xf7\x84\xe1\x3d\xa8\xdc\x93\x97\x27\x63\x40\xe9\xa6\xd5\x5e\xa6\xdc\x5c\xd8\x03\x2f\xb1\x5c\xda\x03\x08\xde\x77\x33\x46\x6f\x4c\x0b\x08\x23\x4e\x97\x31\xad\x8b\x12\x1e\xdd\xe4\xb4\x4b\x45\x0b\xc4\x41\xc8\xf0\x32\xd3\x05\x4a\xf6\xd2\x4d\x42\xbc\xf4\x81\x81\x30\x30\x75\xe9\x02\x5f\x6a\x4b\x13\xfd\x2e\xb5\x25\x10\x87\x2f\xc6\x10\x8e\x0c\xe5\xdd\x9c\x2d\x29\xca\x13\x3a\xf2\xf0\x82\x8d\x74\xe4\x79\xa9\x06\x4d\x6b\xb9\x54\x83\x40\x78\xc1\xe6\x32\x0b\x58\xd6\xf2\x6e\x5a\x8b\xac\xe5\x42\x50\x6b\x27\x65\x2d\xcf\x4b\x67\xd1\x44\x94\x4b\x67\xf1\xe2\xdc\x83\xba\x3a\x79\x19\xc4\x00\x4a\x37\xd9\xe3\x32\x8a\x01\x84\xd1\xb0\x4b\x95\x07\xec\x66\xfc\xd4\x28\x06\x10\x14\xcc\xc9\x4b\x35\x78\xa9\x06\xcd\x09\xb9\x54\x83\x40\x1c\xf8\xbb\x97\x6a\x50\xaa\xf4\x6e\xea\x8f\x54\xe9\x09\x55\x7a\x18\x5b\x93\x2a\x3d\x2f\x15\x57\x43\x13\x5c\x2a\x2e\x20\x28\x98\x93\x97\x8a\xeb\x52\x87\x98\x3a\x72\xa9\x43\x00\xa8\xde\xfe\x68\xbc\x2f\x03\x1a\x17\xd9\x10\xbd\xbb\xe0\xcd\x86\x00\xc2\xd0\xdb\xa5\x17\x2a\x2f\x7b\xef\xb8\x75\xf2\xb2\xe7\xad\x06\x30\x71\xe0\x56\x03\x00\x92\xc8\xe5\x6d\xf4\x42\xaa\xf4\x6e\x02\x8a\x5c\xe9\x42\x50\xf5\x2b\xa5\x4a\xcf\x5b\x0d\xe0\x79\xf9\xad\x06\xb8\xd5\x00\x2c\xa0\x5b\x0d\x20\x7d\x7a\xef\xcd\xbf\x66\xa7\x6a\x00\x3c\x69\xe9\xd3\x53\x5e\xf4\xee\xd1\xb5\xbc\xe8\x09\x17\x7a\x50\x8a\x27\x6f\x8f\x1e\x6e\xea\x4e\x74\x0f\x9b\x6f\xf7\xd4\x80\xcc\x75\x79\xb7\xaf\x99\x9d\xb2\x0c\x64\x10\x4f\xd8\xc2\xa5\xa6\x4b\xd9\xc2\xf3\x56\x9f\xf4\xc3\x9f\xa6\xcf\x78\x23\x8a\x0b\xa9\x56\xde\xea\x93\x8e\x0a\xbf\xd5\x27\xb7\xfa\x84\xe8\xac\x6c\xe1\x29\x0d\x78\xf7\xd8\x49\x1a\xf0\x84\xfa\x5b\x06\xbb\xbc\x4d\xd7\xbb\x49\xd7\xeb\x1e\xe3\xdc\x06\xc4\x6f\xf5\x09\x0e\xf7\xad\x3e\x91\xf2\xbb\x7b\x3e\x23\xe7\xb7\x10\x94\xe2\xc9\xdb\x3c\xbc\x9b\xdd\x78\xf7\xce\xfc\xed\x6e\xfc\x9e\x76\x3a\x79\x64\xa7\x9c\xf1\xf6\xc1\xfe\xeb\xd6\xeb\x01\x82\x52\x3c\x79\xeb\xf4\x48\x84\xdd\x8d\x8a\xca\x84\x2d\xc8\xae\x97\xb7\xd9\xbf\x92\x4d\x77\xef\x09\xcb\x36\x2d\xc4\xe1\x8b\xd1\x63\xb8\x35\xc1\xee\xa9\x6f\x4d\x30\x10\x5e\x3c\xbb\x9f\xaf\x19\x26\xd8\xdd\xdc\xad\x09\x06\xc2\x8b\x67\xb7\x26\x18\xd8\xcd\x7c\xa6\x20\x9c\x2e\x7a\xf1\xec\xf6\x74\x51\x4e\xea\xee\x25\x5b\x49\xa9\x33\xdd\x0a\xe9\x71\xa7\x5b\x21\x38\xa3\xc3\xe8\xac\x9c\xd1\x29\x3f\x74\xd7\xe7\x93\x20\x5a\x08\xaa\xf9\xa4\xfc\xd0\x29\x19\x74\xf7\x02\xa9\x64\xd0\x42\x50\xcd\x27\xd3\x85\x0f\xff\xf3\x6e\x56\x79\x66\xa7\xc5\x4e\x4f\x1e\xd9\x29\xe4\xff\x5d\x87\x29\x0d\x9b\xe5\x5e\xec\x32\x15\x66\x4a\xe5\x20\x19\x74\xf7\xd4\x47\x32\xe8\x94\xe5\xf9\x18\x3e\xba\x7c\x64\xa7\xf8\x29\xe9\xc6\x0a\x08\x83\xb8\x12\x3f\x0b\xbb\x19\x82\xc4\x27\xc8\x43\x33\x7f\xf9\xfa\xc8\x09\x61\xe1\x4b\x06\x2d\x48\x8f\x98\x69\x70\x4d\x96\xe7\xee\xa9\x8f\x34\xce\x09\x75\x73\x50\x1b\x28\xd3\x64\x1a\x60\x37\xf3\xa7\xb7\xcf\xe8\x74\xfa\x4b\x3b\x6d\x4e\x2f\xde\x46\x7a\x0c\x26\x8d\xb3\x97\xf8\xa4\x71\xce\xf4\x13\xd7\x3f\x48\x3f\x71\x20\x0c\x30\xcb\xec\x9c\xd2\x38\x77\x4f\x7d\xa4\x71\x16\x82\x6a\x3e\x99\x7e\xe2\xa9\x2f\xa0\x45\x4f\x7d\x81\xec\x76\xea\x23\x3b\x25\x23\xb7\x6b\x5c\xd3\x8c\xdc\xf4\x13\xc7\x30\xa5\x9f\x78\xba\x37\xd4\xb8\xa6\x7b\x43\x20\xbc\x12\x98\x9e\x6f\xa5\x9f\xb8\xa7\x3e\xe9\x27\x9e\x7e\xe2\xb8\xa3\xe9\x27\x0e\xec\x66\x74\xea\xbd\x05\x20\x0c\x7e\xa7\x54\x0e\xa9\x67\xa1\x65\x4a\x3d\x8b\xd4\xb3\x70\x35\xe8\x59\xa4\x5b\x48\x4f\x7d\xd2\x2d\x24\x10\xd4\x06\xca\x74\x8f\x98\xd4\x8c\xe9\xea\xe8\x74\x43\x08\x84\xa1\xf4\xf4\xb4\x2c\xf5\x2c\xd4\xaa\x52\x3b\x27\x6c\xce\x71\xb8\x68\xdc\x87\xa5\xea\xc7\x13\x82\x54\xfd\xa4\xea\x07\x1f\x38\x55\x3f\xb2\x3d\xf7\xef\x3d\x1b\x0f\x03\xc2\xcb\x8f\x69\x38\x2c\x8d\x7d\x7d\x2f\xd0\xd8\x17\xd4\xcd\xe1\xe5\xc7\x34\x77\x04\x28\xfd\x9b\xcb\xcb\xf5\xc6\xe1\x10\xb5\x81\x32\x3d\x1c\x82\xb9\x79\x37\xe3\x99\xa7\x3e\xd2\x38\x1f\x2e\x41\x13\x50\x53\xd5\xf8\xc9\xab\x6a\x04\xe2\xfc\xfd\x99\x20\x35\x53\xcd\x29\x19\x74\xff\xe4\xd4\xc5\x02\x82\xd2\x41\x99\xde\x9b\x90\xe5\xb9\x43\x1b\x9a\xb2\x3c\x27\xcc\xce\x41\xe9\xa0\x4c\x73\x46\xd2\x2d\xe4\xe9\x37\xe0\x16\x12\x08\x4a\x07\x65\x1a\xa2\x03\x76\x33\x9f\x29\x08\x47\x4c\xa7\x9f\x85\xbb\xca\x74\x0b\xf9\x3d\xd3\x9f\x02\xe2\xc4\x6d\x4e\xdd\xa9\x54\xf9\x43\x42\x9a\xa9\xf2\x07\xc2\xd3\x13\xf9\xa1\x33\x9f\xaf\x19\x9d\xaa\xfc\x81\x38\xfd\xc8\x9e\xaf\x19\x13\x72\xb2\x43\x4f\x9d\x22\x20\x3c\x64\x49\xbd\x9e\x7c\x94\x8d\x70\x59\x9a\x0c\x02\x04\xf5\x8a\x32\x4d\x06\x91\xbe\xb9\x1b\xd3\x97\xbe\x59\x28\x9d\xc2\x1e\xb9\xdc\x0b\x01\xf2\xa8\xe6\xf2\x04\x68\xe9\x1c\x9d\xd8\x08\xb9\x9a\x53\x5e\x66\x8f\x71\xe4\x65\xce\xa5\x29\xa1\x78\x46\x2e\x4d\x09\x10\x8e\x74\x99\xbe\x21\x7d\x73\xf7\xaa\xa5\xf4\xcd\x42\x50\xea\x28\xa5\x6f\xce\xa5\x73\x64\x64\x7e\xe9\x1c\xad\x62\xa7\x3e\xb2\x53\xb2\x3b\x3b\xd5\x1d\x72\x99\xdd\x09\x84\x87\x42\x4b\xeb\x02\xec\x66\x08\x62\xc6\x27\x10\x1e\x0a\x2d\x2d\x8e\x64\xd0\xdd\x1b\x99\x92\x41\x0b\x52\xc1\xa6\x64\xd0\xb9\x42\xd9\xf0\xa1\x96\xf9\x19\x40\x50\x11\x29\x97\xdb\x34\x39\xa3\xfb\xc9\x57\x26\x67\xb4\x10\x54\x44\x4a\x39\xa3\x73\x55\xd7\x20\x3a\x66\x79\xb4\x02\x48\x2c\x9b\x4b\x1b\xb1\xd8\x6c\x0d\x8f\x03\x96\x9b\x2d\x20\x28\x9c\x94\x4b\x7f\x69\xa1\x60\xc7\x0f\x23\xbf\x54\xb0\x40\x78\x22\xb5\x54\xb0\xb2\x3c\x0f\x0a\x10\xa6\x2c\xcf\x42\x50\x38\x29\x65\x79\xce\x35\xec\xd4\x55\x63\xf0\x6d\x0d\xe7\x0d\x71\xbd\xa9\x0f\xec\x66\xfe\xf4\xf5\xd9\xde\x82\xb8\x7a\x97\xca\x14\xd8\xcd\xf8\xa9\xda\x14\x90\x1b\x37\x97\xa7\x2d\x0b\xc7\x6d\xc0\x65\x9e\x4b\xc7\x0d\x08\x0a\x27\xe5\xf2\x18\x05\xfe\xe7\x32\x7e\xae\x5e\xa3\x6b\x80\x14\xba\xb9\xbc\xc0\x09\xa3\x73\x19\x06\xc9\xa5\x74\x4e\xe9\x9b\x4f\xe7\xc8\x73\xfb\x75\xfa\xd7\x30\x56\x4b\x75\x0d\x04\x25\x8f\x52\xca\xe6\x94\x9f\x79\xfc\x70\x36\xe4\x67\x16\xc2\x0f\x50\x7e\xe6\x94\x9f\x79\xc0\xb2\x9c\xf2\x33\x27\x9c\xcc\xe1\x11\xdd\x32\x23\x10\x28\x03\x8a\xe2\x5c\x1e\xdc\x03\xf1\x7d\xa7\x6a\x70\x60\x37\x43\x5e\x8f\x2f\x80\xf0\x06\xf7\x52\xab\xcb\xf6\x3c\xe0\x08\x4d\xd9\x9e\x05\xe9\x7d\x53\xb6\xe7\x5c\x68\xd0\x01\x0d\x70\x2e\x35\x28\x10\x27\xce\xf8\x72\xf7\xb9\xd8\x7d\x0e\x03\xd1\xcb\xdd\x27\x10\x27\x3b\x91\xe5\x51\xc5\x42\x35\x8e\xe2\xaa\x51\x35\x2e\x55\x23\x3e\xfb\x52\x35\x2e\x8e\xae\x47\x71\x39\xe8\xb6\x02\xe1\xf1\xa1\xcc\xce\xb9\x1e\x3b\xc5\xbb\x5d\xea\xbc\xa5\xce\x73\x6d\xa9\xf3\x64\x7b\x1e\x45\x8d\xa4\xce\x93\xed\xf9\x74\x6d\xa9\xf3\xa4\x71\x1e\xde\x1a\x95\xc6\x39\xa1\x6e\x0e\x0f\x23\x97\xc1\x24\xa0\x0c\x2f\x92\x2e\xef\xb6\x01\x71\xe2\xb3\x2f\xe3\x4b\xc0\x6e\x86\x20\x06\x98\x00\xf9\x8e\x73\x79\x54\x21\x29\xf4\x80\xcc\x32\x25\x85\x4e\xd8\x9e\xcb\x80\xb9\x32\xa5\x7b\x16\xe4\x40\x4e\xd9\x9e\xf3\xf9\x29\x2f\xca\xec\x51\xd1\x02\x41\x89\xa6\x7c\xdc\x85\xca\x00\x3d\xa4\x78\x94\x01\x5a\x08\x35\xf9\xa3\xa2\x95\xda\x79\x48\xca\x28\xb5\xb3\x10\x6a\x72\xa9\x9d\xf3\x21\x01\x6e\x14\x3c\xa1\xc7\x2d\xe7\xa3\xa2\xed\xf3\xcf\xd6\xfb\x51\x0f\xc3\xf2\x5c\x06\xfc\xa5\x29\xcd\x73\x3e\x6c\x52\x29\xf4\x94\x8f\x9b\xd4\x27\x94\x09\xeb\xfd\xa8\x60\x1f\x15\x2c\x81\xf3\x47\x05\xfb\x84\x13\x81\x97\xf1\xa8\x60\x1f\x15\xec\xb0\x03\xc5\xc4\x09\x1f\x81\x7f\xf0\xe8\x84\x3f\x1c\x67\x6b\x84\x1e\x8f\xb3\x81\xdd\x8c\xbf\x66\x02\x1c\x10\x1a\xa1\xc7\xe3\x13\xa0\x0c\x2f\xe3\x3e\x9e\x9f\x00\x41\x69\xa6\x7c\x4c\x80\x83\xe5\x79\x37\x43\x10\xf7\xb2\x30\x3b\x87\xb4\x00\x8f\x8e\xee\xa3\xba\x96\x29\x4d\x9a\x67\x21\x4e\x57\x86\xea\xfa\x21\x36\x36\x64\x4a\x7b\x8c\x8d\xc9\xfc\x2c\x7b\x80\xcc\xcf\x29\xa5\xf3\x88\xe6\x33\x3b\xe5\x72\x3f\x55\x92\x52\xfa\x66\xa1\x8c\x70\x19\x98\xef\x05\x84\x06\xf2\x51\x83\x03\xbb\x19\xf2\x7a\x7e\xf2\xa8\xd5\xa7\xbf\x64\x25\xc3\xe2\xbc\x9b\x21\x9b\x87\x21\x52\x3a\x6b\x20\xa5\x74\xce\x47\x75\x2d\xcd\xd8\xa3\xba\x7e\x54\xd7\xb8\xa1\x8f\xea\x1a\xb2\xe7\xdd\x8c\x1e\x3c\x33\x01\x82\x92\x48\xf9\x18\xca\x93\xd2\x79\x18\xfb\x97\xd2\x39\xa1\x71\x8e\xd3\x85\x6c\x5a\x18\x50\x46\x28\xaf\x69\x61\x40\x68\x95\x1f\xed\x01\xb0\x9b\x21\xaf\x06\x01\x08\x4a\x22\xe5\xe3\x09\x0c\x64\xcf\xbb\x19\x23\xf5\x68\x45\xe6\x67\x2a\x42\xa7\xcc\xcf\xf9\x68\x4a\x8c\xaf\x3f\x9a\x12\x20\xa8\x9c\x94\x8f\xa7\xde\x12\x44\x0f\x03\xe7\x12\x44\x0b\x71\xfa\x91\x69\x4a\x9e\xd3\x4e\xb1\xfb\x8f\x2e\xfd\x73\xd9\xa9\x8f\xec\xf4\x72\xf5\xa2\xd5\x1f\xf3\xbd\x1e\x4d\x09\xfb\x88\x47\x53\xf2\x5c\x4e\x2f\xfe\xfb\x63\xbe\xd7\x83\x4b\x4f\x81\xa5\x7c\x74\xe9\x1f\x0a\x75\x8d\xea\x27\x63\x38\x12\x90\xf1\x3c\x1f\x0f\x6a\x20\x7b\x2e\x43\x9e\x9d\x47\x17\x55\xe6\x67\x93\x1b\x64\x7e\xce\x47\xad\x2e\xcd\xc7\xa3\x56\x7f\xd4\xea\x6c\x65\x1f\xb5\xfa\x03\xc7\xc9\x90\xe6\xe3\x91\xe3\x44\x82\x68\x73\x20\x24\x88\xce\xe7\xb5\x53\xd4\xf5\x63\xfc\xee\x79\xfb\xbf\xfe\x45\xfe\xf4\x7c\x3c\x32\x06\xca\x90\x71\xe3\x91\xa9\xe4\xd9\x5a\xbd\x52\x87\x29\x1f\xb5\xba\x74\xd3\x43\xc6\x0d\xe9\xa6\x13\x6a\x69\xf9\xd3\x53\x6a\xe9\x7c\x55\xcd\x95\xfd\xd7\xab\x6a\x06\xe4\x4f\xcf\x57\xd5\x2c\x03\xf5\x30\xd4\x2d\x03\xb5\x50\xa9\xa0\x94\xaf\xaa\xf9\xfd\xd9\x29\x0b\xff\xd5\xb9\x7d\x0b\x9d\xa2\x56\x5e\xcf\x82\x81\x32\xe4\x7c\x78\xcd\x5b\x02\xa4\x59\xcf\x57\x6d\x0d\xec\x66\xc8\xab\xba\x06\x2a\x85\x96\xf2\x35\xd3\x19\x8e\xea\xdd\x8c\x91\xea\xf0\x02\xf5\x47\xe0\xfc\xd5\xdf\x7d\x55\xd1\xb2\x34\xbc\xaa\x68\xa0\x52\x8f\x29\x5f\x23\x2c\xaf\x2a\x5a\xfa\x85\x57\x15\x0d\x54\xd3\x38\x5e\x55\xf4\x1b\x76\xca\x0b\x7c\x75\x6e\xdf\xed\xd0\x4a\x01\x9f\xaf\xa1\x13\xa0\x0c\x99\x05\x5e\x63\x27\x6f\x75\x42\xf8\xa5\x2a\xfa\x25\x4e\x32\xbc\xc2\xfd\x1a\x27\x01\x2a\x85\x96\xf2\xd5\x2d\x7e\x89\x45\x0c\x2f\xf9\xbf\xc6\x22\xe0\xb5\x96\x29\x3e\xe5\xb5\xce\x57\x15\xed\x35\xe9\x57\x15\x0d\xc8\x14\x9f\x6f\xff\xfe\xda\x6d\x33\x7a\x50\x45\x03\xd5\xdc\x91\x57\x15\xfd\xea\x2a\x37\x34\xf9\xab\xab\xfc\x0e\x3b\x45\x5c\xe3\x0e\x40\x19\x0d\x5f\xe0\x35\xf0\x00\xd4\x1f\xa1\xee\x57\xad\x0d\xec\x66\xc8\x6b\xe0\x01\xa8\xd4\x63\xca\x57\x4d\xfe\x12\x8b\x18\x0d\xbb\xff\xea\x3e\xbf\x93\x79\xc3\x55\x7e\x75\x95\x5f\x55\xb4\x57\x92\x5f\x55\x34\x50\x7f\xb5\xfe\xd9\x78\xbf\x46\x2f\x5e\x35\xb8\x37\x96\x5f\x35\x38\x50\xdd\x46\xbc\x6a\xf0\x77\x2a\x13\x1a\xfc\x35\x21\x09\x90\x32\x3f\x5f\xef\xfd\xbc\x64\x1a\x0d\x6f\xe3\xbe\x1e\xb3\x00\x52\xe6\xe7\xab\x06\x7f\x0f\x67\x7f\xfa\xcc\xd9\x3f\x98\x7d\x3c\xe9\xd7\x53\xef\x97\xa4\x9f\xe1\xb1\xc5\x6b\x94\x03\xa8\xd4\x88\xca\x57\x2d\xf9\x12\xf8\x18\x5e\xc9\x7c\x75\x9b\x81\x2a\xd3\xcd\xab\xd7\x2c\x95\xf9\xf0\x76\xa4\x54\xe6\x42\x75\x8b\x23\x95\x79\xbe\xba\xc8\xde\x71\x7c\x75\x91\x81\x2a\x21\x8e\xec\xe6\x09\x35\x78\x19\xde\xb2\x93\x1b\x3c\xe1\x01\x97\xf5\x3f\xe5\x01\xcf\x57\x65\xea\x75\xa6\x57\x65\x0a\x54\x89\x71\x5e\xf7\xfb\xaf\xca\xd4\x7b\x4a\xaf\xca\x14\xa8\x12\xe3\xbc\x2a\xd3\x57\xdf\xd7\x0b\x48\xaf\xbe\xef\xfb\xda\xa9\x8f\xec\x14\x72\xc3\xe1\x25\x9f\x57\x72\x43\xa0\xba\xfd\x7a\xd5\xaf\xc0\x6e\x86\x20\x1e\x90\xbc\xea\x5c\x7c\x8d\x57\x9d\xfb\x72\xde\x3a\xba\xea\x4f\x7f\x18\xa8\xb2\xf1\xbc\xba\xc3\x32\x9e\x0f\xae\xe5\x2c\x19\xcf\x85\x4a\xfe\xd4\xfa\x11\x63\x58\x3f\x75\x2e\xf7\x6d\xd6\x0f\x9d\x2b\x54\x48\x7b\xd6\x0f\x9d\xbb\x7e\x24\xd6\x0c\x2e\xd2\xac\x5f\xf1\xa7\x2a\xd3\xfd\xf5\xac\x1f\xca\x74\xfd\x8a\xf3\xb6\x35\xd1\xfa\x11\x29\x10\x2a\x45\xa8\xd6\x0f\x9f\x76\xfd\xa0\xfe\x1b\x30\xed\xae\x1f\x5b\x6f\xa1\xb2\x83\x5c\x3f\x14\xd6\xfa\x91\x58\x33\x46\xf0\xac\x2a\x5b\x65\x42\xb6\xbb\xb4\x7e\x78\x81\xeb\xa7\xc2\x22\xdb\x7e\xfd\xaa\x9d\xaa\xb0\xb6\xbf\xbb\x7e\xd5\x4e\x49\x91\x1c\xa4\xd1\x2f\xe9\xde\x85\x4a\x11\xaa\x25\xdd\xfb\xfa\x35\x3b\xad\xf4\xd0\xec\xb4\xd1\xe9\xfe\xb2\xd7\xaf\xd9\x29\x05\x61\xc7\x68\xfc\x35\x0a\xc2\x0a\x95\xea\x52\xeb\xd7\x94\x83\x32\x7e\x63\x34\x46\xdf\x14\xa4\xa1\x62\x86\xbf\xbc\x7c\xf4\xda\x8c\x91\x76\x5f\x56\xe7\x65\x0d\x7e\xd9\x9d\x71\x75\xee\xf0\x05\x76\x65\xeb\xbc\xac\xe1\x2f\x7d\x59\xea\xdc\xe1\x94\x77\x05\x51\xe7\x0e\x46\xd5\x95\xc3\xf0\xc4\xe8\xbc\xd3\x61\xa7\xc3\x4e\x7d\x64\xa7\xc6\x1d\x86\x82\x0c\xe7\x6d\xf0\xb2\x06\xd3\x3b\x7c\x59\x6a\x49\x72\xa9\xd7\x6f\xfa\xd7\x26\x7f\x6d\x32\x6f\xd3\xbf\xa6\x96\x24\x49\x7a\xfd\xa6\x43\x50\x4b\x4e\x46\x35\x1d\x82\x1e\x2a\x57\xe5\xd6\x6f\xda\xe9\xa4\xd3\xc9\xf4\x4e\x3b\x85\xfa\x6f\x0c\x97\xe5\x61\x0f\x07\xcb\x72\x22\xee\xe1\xb2\x34\x04\xc0\x1d\xb8\x25\xa1\xfc\x82\x3c\xbe\xfe\x14\xf7\xf2\x9d\xaa\xb8\xc8\x39\x5c\xbf\xcb\x79\x53\x71\x29\xee\xe5\xbc\xe9\xde\x91\x73\xb8\xe4\x98\x17\x2a\x89\x78\x0b\xbe\xf9\xbf\x2e\xf8\xe2\x77\x33\x16\xd7\x6d\xa7\xb7\x9d\xfa\xc8\x4e\xe1\xcd\x1b\xd3\xf5\x76\xbb\x90\x6e\x16\x92\x9f\xee\xad\x1c\xf0\xe6\x0d\x32\xf1\xd6\xef\x56\x90\x9b\x85\x74\x30\x21\xb7\x0b\x89\x53\xef\x31\x2b\x82\xa4\x6f\x21\x99\x90\x83\xf5\x96\x4e\x88\x4a\x75\xba\x2c\x53\xd9\x54\xaa\x07\x13\x92\xbe\x85\x74\x42\x1a\xb2\xa5\x82\xa4\x9d\xfa\xc8\x4e\x8d\x3b\x90\xed\xb6\x24\x8f\x5f\x10\xc6\x57\x8a\x51\xad\xdf\xb2\x53\x8e\xb3\xc7\xf4\x13\xe7\x38\x7b\xfd\x16\x13\xe2\x8b\x59\x4e\xc8\x72\x7a\xfd\xc4\x97\xd3\xbb\x78\xf5\x27\x43\x58\xbe\x7a\x15\xfe\xf4\x6b\x7b\xec\xf4\x61\xbd\x9d\x74\xf0\xb8\x1a\x54\xf8\xd3\xd5\xfb\x38\x52\x15\xfe\x49\x07\x8f\x23\x35\xd8\x31\x5d\xf8\x8f\x9d\x3e\x76\xfa\xe7\x9d\xf7\xfa\x3d\xca\x44\x62\xcd\x98\xae\x3d\x12\x6b\xd6\x4f\x7b\xa0\x46\x7c\x9d\x08\x63\x21\xd3\xb5\xf7\x3a\xad\x1b\x2a\x49\x95\x4b\x1e\xf9\x25\x69\xfc\x98\x2c\x03\x49\xe3\x57\xa1\xf4\xf8\x20\x9d\x67\x15\x82\x0b\x42\xa5\xf8\xd3\x2a\x9c\x11\xae\xe2\x6e\xfc\xf8\xf1\xd3\xea\x4f\x71\xf5\xc8\xc7\x5c\x32\x9e\xaf\xa2\x82\xe5\xf8\x64\x15\x15\x2c\x60\x9d\x99\x05\x23\xfa\x86\x69\xb3\xc9\xb3\xc3\x67\xca\xeb\xa3\xd3\x47\x27\xcd\xb6\xf5\x5e\xb2\xa0\x0b\x96\xa3\x59\x30\xa2\x6f\x50\xb6\x86\x6c\x4d\xd9\x9a\xb2\x9d\x3c\x52\x36\xea\xa4\x0e\x8e\x91\x57\xa1\x4e\xea\x2a\xe8\x61\x8a\x3f\xad\xa2\x1e\x86\xe4\x7c\x37\x43\x10\x4e\xce\x16\x8c\xe7\x16\xb7\x59\x32\x9e\xaf\xa2\x82\xe5\xa8\x76\x15\x15\x2c\x50\x4b\xa1\x03\x15\xac\xc4\xe8\x83\xf3\xd6\x25\x31\xba\x50\x29\xfe\xb4\x8a\x0a\x56\xc6\xf3\xc1\x41\xea\x92\xf1\x7c\xc1\x72\x5e\x4b\xf1\x91\x9d\x1a\x50\xe0\xfe\xca\x2a\x04\x14\x84\x4a\x24\x6f\x15\x75\x2e\xb0\x9b\x21\x88\x4a\x17\xa8\x14\x7f\x5a\x65\x38\x21\xc6\x1d\x38\xfa\x5c\x65\xf8\x16\x06\x6f\x61\xfb\xe5\x0b\x92\xf4\x0d\xca\x36\x19\xa9\xea\x1a\xa8\x25\x7c\xe4\xa2\x99\x5f\x33\x3a\x55\xc1\x02\x95\x1a\x51\xab\x4c\x9b\x19\x02\x38\x4e\x04\x39\x9c\x90\x83\x09\xc1\x2a\x4b\x82\xbe\x8a\xf1\xdf\xe3\x64\xf4\x87\xb2\x1d\xca\x46\x07\x87\xb2\xb9\xcd\x3e\x5d\x96\x97\xa3\xbf\x1c\x29\xa3\xba\x1c\xa9\xea\xfa\x54\x10\xd5\x35\x50\x0b\xca\x54\x06\xf1\x25\x5d\xf8\x38\xed\x41\x75\x0d\x54\x42\x9b\xab\xa8\xae\xe5\x01\x1f\xa7\x3f\xbd\xed\xf4\xa6\x53\x3c\x86\x72\xdb\x29\xb5\x3e\x06\x11\xe6\x55\x6e\xd7\xdb\x06\x2b\x22\xad\xa2\x06\x07\x76\x33\xe4\xbd\x15\x04\xad\x4e\x45\xa4\x55\xd4\xea\xe5\x3e\x6d\xc6\x84\xa8\x9b\x81\x5a\xfc\xd8\x6e\xbf\x05\x0e\xda\x06\x31\xe1\x05\x13\xf9\x07\xb5\x7c\x72\xf8\x16\xd4\xea\xc4\x84\x57\x51\xab\x03\xb5\x28\x47\xba\x68\x96\x13\xe2\x27\xb3\x9c\x90\xe5\x84\x20\xc7\x72\x42\xdc\xdb\x13\xd4\x5a\x12\x6b\x0b\x95\x14\xe6\x55\x5e\x47\xa5\x96\x22\xc8\xb0\x8a\x5a\xaa\xa8\xa5\xfc\xc2\xdf\xef\xaf\x29\x1b\x0a\x4e\xae\xed\x15\x14\x19\x9d\x6c\xee\x57\x90\xe8\x2d\xd4\xc2\x57\x1f\x6c\xda\x85\x32\xd9\x40\xaf\x60\xd7\x2e\x54\xf8\x11\x57\x70\x98\xb5\x20\xd1\xde\xcd\xf6\xfc\xca\xa2\x2d\x54\xf8\x11\x97\x24\xda\x0b\x8a\xe9\x32\x29\x1a\xbc\xe4\x98\x5e\xf0\x49\xd7\x82\x99\x93\x4f\x7a\xc1\x1d\x5d\x26\xe7\x23\x4b\xf2\x68\xa1\x92\x99\xbd\xe4\x8e\x5e\x12\x45\x4f\x3c\xef\x25\x51\xb4\x50\xcb\xf7\xcb\xee\x23\x3b\xc5\x57\x0e\x9d\xca\xa8\x76\x7a\xf0\xc8\x4e\x37\xec\x66\xfe\xb5\xd7\x67\x68\x82\x8e\xb8\xaa\x41\xa0\x4c\x1d\xcd\x68\x0a\xa2\x6a\xc4\xe5\x0b\x55\xa3\xec\xd4\x13\x1e\xcc\x25\x3b\xb5\x50\x8b\x72\xe8\x67\x46\x57\x36\x14\x46\xa8\xa5\x80\x4a\x4c\x7f\x05\x7b\xea\x15\xc3\x91\x62\xd1\x61\x8d\xfe\x80\xaa\x5c\xfb\xff\x8e\x74\x3a\x6f\xd8\x60\x99\x97\x17\x2c\xcb\x96\xdd\x5a\xb2\x2c\xaf\x40\x61\x4c\x15\x5c\xa8\x30\x42\x85\x81\x9f\x19\x2a\x0c\xc9\x98\xa7\x9a\x4b\x32\x66\xa1\x52\xb1\x6b\x85\x0a\x43\x32\xe6\xa9\xae\x91\x8c\x79\x41\xc0\x5c\x8b\x53\x79\xda\x29\x04\x53\x93\x0a\x72\x2b\x4e\x7b\x38\xf9\x28\xc7\x9f\x4f\xbd\x57\x70\xec\xb4\xe0\x65\xde\x7f\xc5\xce\x9c\xaf\x93\xf9\x1a\xfe\x61\xe7\xeb\x54\x26\x57\xb2\x4a\x0c\xa8\x05\x97\x3e\x2e\xdf\xdb\xe5\x44\xb8\xf6\x54\x62\xa1\x12\x1b\x3e\x52\xcc\xcb\x4e\x5d\x54\x3a\x93\x40\xa5\xee\xd7\x0a\x9d\xc9\xb8\x59\x19\xdf\x1b\xb9\xed\x41\x25\x86\xd9\x08\x95\x18\x84\xcb\xbb\x19\x73\xa8\xe7\x08\xbb\x72\x2d\xae\x02\x35\x51\xdc\x76\xaa\x20\xaa\x9d\x50\xed\xa0\x14\xe2\xfe\x3a\x7d\x6c\x66\x0f\xae\x5a\xd5\x0e\x2e\x7d\xa8\x76\x80\xdd\x8c\x4e\x75\x30\x81\x4a\x41\xaf\x15\x90\x4e\xac\x48\x65\xb3\x07\x9d\xc9\xc0\x99\xe4\xae\xc3\x0a\x9d\x49\xa0\x4c\x0e\x5e\x56\x90\x36\x2e\x54\xee\x3a\xac\x48\xc5\x5d\x4e\xaf\xcf\x96\xd3\xbb\x98\x5e\x4c\x5a\x2c\xa7\x77\xd9\x29\xce\x6f\xa8\x12\x43\x95\x88\x4b\x1f\xaa\x44\xe9\xa6\x67\xf1\x1b\x58\x5f\x0f\x4c\x08\x2e\x3d\xd4\xd3\x7f\x5d\x50\x47\xef\x66\x0c\x41\x67\x12\xee\xe8\x4a\x55\xae\x15\x8f\x0b\xe9\x71\x85\xa0\x39\x65\x83\x5e\x30\x3f\x57\x28\x4d\x97\xcc\xcf\x2b\xd0\xc3\x33\xd4\x92\xea\xe1\x50\x0f\x2b\xae\x7a\x58\xe6\xe7\x49\x81\xa5\x25\xf3\xb3\x50\xa9\xca\xb5\x42\x3d\x2c\xa5\xf3\xe4\x2c\x64\x49\xe9\xbc\xa0\x71\xae\xdc\xea\x58\x95\x18\xab\xb0\x9b\x1d\x3c\xab\x3e\xc3\xcc\xb1\x89\xaa\x86\x00\x80\xdd\xec\xe4\x59\xf7\x19\x23\x3d\xfc\xe5\xf0\x11\xf3\xc6\x3d\x88\x25\xf3\xf3\x82\xed\xd9\x22\x7b\xab\x72\x53\x47\xd8\xcd\xf6\x48\xab\x1a\xbc\xaa\xc1\xcf\xe0\x51\xf1\x91\x13\x82\x2f\x50\x8b\x82\x14\x26\x04\xad\x03\x59\xf4\x07\x65\x72\x5d\x62\x49\x1a\x2d\x58\x8b\x6f\x41\x20\xbd\x41\xd9\x30\xf2\x12\x44\x2f\x48\xa1\x6b\x61\x83\x50\xc9\x33\x10\x76\x33\x65\x53\xde\x60\xde\x4e\xe4\x08\xe7\x2d\x9c\x90\xea\x33\x05\xd9\x50\xb9\x79\xb2\xe4\x91\x5e\xf2\x48\x4f\x0a\x06\x2d\x79\xa4\x17\x3c\xd2\x16\x00\x5c\xf2\x48\xaf\xaa\xad\x0a\xcc\x5c\xd5\x56\x01\x95\x1a\x5f\xab\x1a\x13\xa9\xda\x2a\x2a\x01\xad\xaa\xad\x02\xac\x13\xb8\xaa\xb6\xaa\xd6\xaf\x53\x64\xd3\x3f\xaf\xd5\x4e\x19\xa9\xbe\x38\x50\x26\xd5\x76\x56\xd5\x19\xaf\xd8\x2a\x6e\xc5\xac\xaa\xad\xaa\xcd\xb7\x80\x56\xaf\x06\x40\xe0\xb8\xae\x1c\xc7\x2d\x39\xae\x97\x0c\xd0\x93\xfa\x38\x4b\x06\xe8\x05\x03\x74\x8d\xc2\xa8\xdc\xa1\x57\xcd\x06\x85\x0e\x56\xd5\x6c\x00\x35\xb0\xe7\xd5\x4d\xbb\x44\xd1\x93\x0c\xfc\x25\x51\xb4\x50\xe3\xfb\xa5\x33\x4e\xa0\x72\x56\xd7\xdb\x61\xa7\x87\x9d\xf2\xfe\x0e\x3b\x85\xbe\x70\x56\x17\xd2\xe1\x3b\xc5\x6c\x7c\xeb\x5e\xb3\x51\x39\x1c\x9a\x35\x7c\xe6\xbc\x9d\xcc\x1b\x8e\x77\x3d\x9d\x37\xed\x02\xf4\xb0\xab\x6a\x17\x80\xca\xc5\x9e\x55\xb5\x0b\x55\xbb\x50\x5d\x48\xda\x05\xa0\x52\x6e\x6b\x55\xed\x42\xbd\xec\x14\x57\xab\xea\xb5\xd6\xcb\x4e\x19\xe9\x65\xa7\xa4\x85\xcd\xda\xfc\x6b\xbe\xac\x0d\xf5\xfb\x3c\x34\x15\xc0\x6e\xe6\x33\x05\xb9\x98\x10\x47\x75\x39\x21\xb7\xd3\x8b\x4f\x52\xf5\x64\x81\x1a\xb8\xc5\x55\x47\xb6\x6a\x3e\xaa\x2b\x44\xf3\x01\xd4\xef\x63\x33\xee\x50\x35\x1f\x9c\x21\xad\xaa\xf9\x00\xea\xf7\xb1\x69\x3e\x6a\xda\x29\xde\x4c\x35\xc8\x50\x93\x85\x84\xa1\xae\xe9\x42\xd2\x2e\x70\x38\xb4\xaa\x76\xa1\x62\x17\xa2\xfe\xb9\x2a\xe8\xaa\x9a\x8d\x9a\xce\x3e\xd6\xa5\x1a\x83\x00\xea\xf7\x65\x2f\x67\x5f\x7b\xc0\xd9\xd1\x92\xf4\x5b\xa8\xdf\x97\xad\x3d\x80\xb9\xbb\x4c\xae\x49\x2c\xa9\xbb\x85\x1a\x78\xd2\x32\x77\x0b\x65\xc2\xba\xbb\xa4\xee\x16\x6a\xf8\x7a\x35\x11\xf5\x71\xbe\xd8\x44\x55\x83\x0b\xd0\x74\xd7\x4f\x4f\x18\x3d\xa8\x9a\x0d\x8e\x71\x56\xd5\x6c\x00\xf5\xd3\x13\xaf\x72\x68\x36\x9a\xfa\x44\xb3\x01\x54\x0a\x8b\xad\xaa\xd9\xa8\x84\x89\x67\x53\x51\xbc\x76\xfa\xda\xa9\x8f\xec\x14\xe2\xe0\xd9\x34\x1b\xaf\x9f\xca\x86\x1a\x2c\x3d\x09\xbe\x85\xdd\x2c\x78\x56\x7c\xc6\x84\xb0\xf4\x9a\xd6\x45\x1e\xf0\xc9\xa1\xd0\x92\x07\x5c\xa8\xc1\xd2\x93\x07\x7c\x35\x52\xc0\x26\xb4\xc9\xab\x71\x24\x26\x54\x4e\xd5\x57\x53\x35\x37\x22\x05\x13\x8a\xdb\xd5\x74\x91\x81\x4a\x99\xb2\xd5\xf4\x90\x9b\x0a\x0b\x2e\xd1\xd5\x54\x58\x40\x0d\xbc\xe6\x06\x23\xcd\x6a\xba\xc3\x1c\x72\xac\xa6\x3b\x0c\x54\xaa\x99\xad\xa6\x3b\xdc\xba\x9d\xf2\x16\x9a\x3b\x74\xa0\x52\xcd\x6c\x35\x37\xe8\x32\x77\x4f\x0e\x39\x96\xcc\xdd\x42\x55\xbf\x36\xbd\x66\xe8\xb7\x77\xb3\xce\x33\x7b\x20\x78\xaa\x7e\x6d\x06\x4f\x81\x32\xbb\xf3\x46\xd2\x96\x50\x49\x0c\x58\xcd\x78\x6a\xe3\x70\x68\x52\x04\x73\xc1\xcf\xbd\x81\x4f\x85\x6f\x51\x4a\xee\xd5\x54\xcd\x30\x34\xae\xa6\x6a\x06\x2a\xd4\xe0\xab\xb9\xb7\x6f\xd3\x4e\xc3\xbf\x66\xa7\xaa\x66\x3e\x59\x99\xbb\x85\xdd\x0c\x41\xf4\xf2\x81\x0a\x83\xf8\x6a\xdc\x73\x5f\x4d\x8f\x1e\x86\xc6\xd5\xf4\xe8\xdb\x81\x6c\xb8\xc5\xed\x50\x36\x2e\xb5\xcf\x5e\xfd\xe9\xed\x33\xf4\x1a\xfe\x6e\x53\xa9\x03\xbb\x99\x3f\x55\x5e\x15\xfd\x50\x0e\xe7\xed\xf4\x2d\xa0\x9a\x65\x15\x17\x2a\xb5\xd1\x96\xac\xe2\xab\x91\xb4\x35\xa1\x39\x5c\xcd\xb0\x40\x53\xe7\xe2\xb4\x36\x75\x6e\x4b\xe7\xcd\xd1\xeb\x67\x02\x15\x12\xf4\xd5\x52\x39\x54\x35\xd0\x2d\xae\xa6\xaa\x69\xaa\x1a\xdc\xe2\xa6\xaa\x69\x7a\xa8\x94\x3a\x5c\x4d\x0f\x15\xa8\x5c\x7f\x5c\x4d\x0f\xb5\xe9\x7a\x72\xd1\x62\x35\x5d\x4f\xa0\x42\xa9\xbe\x9a\xae\x67\xa3\xbe\xc0\x84\x74\x6a\xb5\xe5\xcb\x5a\xac\x10\xd7\xbd\x11\xd0\xc6\xc1\xd5\xe4\xa2\xc5\x82\xd7\xfc\x83\x4a\x09\xb5\x25\xbb\xf9\x6a\x6a\x24\xa8\x98\x56\x53\x23\x01\x95\x2c\x8e\xd5\x1e\x3b\x55\x23\xc1\xb1\xb4\x64\x3c\x17\x6a\xf8\x15\xa9\x91\xa4\x32\x9f\x94\x13\x5c\x52\x99\x0b\x95\x2c\x8e\x25\x95\xf9\x82\xb6\xbc\x4c\xc8\x93\x96\xbc\xe5\x42\xe5\x6a\xe6\x6a\x2a\x29\x60\x37\x63\xf4\xaf\x82\xa8\xb8\x70\xb2\x9b\x8a\xab\xe9\xef\x7a\x9c\x23\xbd\xf9\xea\x1c\x66\x4d\x28\x90\x56\xd7\x93\x05\x2a\xb7\x3a\x57\xd7\x91\xed\x6a\x29\xb8\x8d\x56\x57\x4b\x75\xb5\x14\xfe\x79\x57\x4b\xc9\x8c\x3e\xe1\x36\x5a\x32\xa3\x0b\x95\xea\x6b\x4b\x66\xf4\x25\xe5\xf9\xf4\xec\x46\xca\xf3\x05\xcd\x79\x25\x39\x65\x75\x3d\x54\xa0\x4c\xb8\x15\x57\xd7\x45\x05\x2a\xc9\x29\xab\x7b\x5a\xd6\x0d\x28\xc0\x46\xb4\xe4\x10\x5f\x5d\x27\x8d\xcd\x89\x84\xe0\xab\xab\x1a\xb9\xdb\xb2\xba\xaa\xb1\xab\x1a\xf1\xcf\xbb\xaa\x51\xde\xf0\x09\xdb\xc9\x92\x37\x5c\xa8\xf1\xfd\xd2\x09\x69\x76\xca\x8a\x96\x10\x7c\x75\x82\xa8\x54\x5f\x5b\xdd\x20\x2a\x50\xe6\xfc\xf9\xd7\x5e\x9f\xb1\x06\x71\xe3\xbb\x71\x55\x60\x37\xfb\x73\x65\xb1\xd5\x8d\xbb\x02\x96\xab\x5e\xd0\x8e\x6f\x98\xfe\x15\x9f\x39\x39\x9d\x6f\x56\x31\xc9\xed\x5a\x5d\xad\x0e\x5b\xc7\xea\x6a\xf5\xae\x56\x67\xfb\x25\xd3\xf8\x92\x56\x7c\x4e\xcc\x9c\xb4\xe2\x42\xa5\xd4\xc0\xea\x6a\x75\x28\xc4\x77\x33\x7a\x50\x85\x03\x95\xeb\xad\xab\x0f\xdf\xe5\x50\xb6\xe2\x33\x65\x1b\xca\x86\x1c\x43\xd9\x48\x01\x9b\xf0\x6b\xac\x4e\x0a\x98\x50\xab\x53\x68\x74\xb6\x6b\x23\xe0\xd7\x58\x5d\x1b\x01\x54\x52\x83\x56\xd7\x46\x40\x38\xbe\x9b\xf1\xcc\x93\x33\xd8\xc7\x6b\x75\x8e\xa6\xb2\x69\x23\xe0\xb0\x58\x5d\x1b\x01\xd4\x8a\x11\xea\xd3\xc5\xad\x8d\x80\x69\x70\x49\x52\x2e\x54\x8a\xb4\xad\xae\x8d\x90\x7d\x7c\x4e\xbf\x32\xfd\x72\x18\xc7\x2b\x45\xda\x16\xb4\xe3\x1f\x94\x09\xb3\xc3\x92\x7d\x7c\x75\x94\x7f\xf5\xc5\xa8\xfc\xbb\xe1\x1c\x58\x05\x97\x1c\xe2\x42\xa5\xac\xda\x92\x42\x7c\xf5\xcb\xb7\x80\x67\xd1\x8d\x93\x00\x56\x2a\x5f\xdd\xe3\xba\xae\xe3\xe8\x99\x4d\xd7\x71\xec\x38\x8e\xd5\xf7\xa7\x67\x28\x3d\xf6\xf4\x2c\x44\x7a\x6c\xa1\x52\x56\x6d\x49\x8f\xbd\xe4\xbd\x9e\x87\x73\xa9\x56\x07\xaa\x9b\x92\xae\x56\x07\x76\x33\x7e\xea\xc1\x16\x50\xab\xab\xc1\x73\x2d\x79\xaf\xe7\xe1\x24\xe9\x67\xc2\x75\x6d\x15\xf5\xd5\x97\xb2\x51\x28\x79\x1e\x8e\x7e\xb9\x42\x16\x2b\xc4\xd5\xa0\x3d\x00\x76\x33\x65\x53\x5e\x8e\xc4\xaa\xab\xc1\x23\xb1\x6e\x78\xe2\x70\xf4\xfa\x9e\xf0\x5e\x57\xca\xaa\x2d\x79\xaf\x57\xd7\x46\x1c\x2e\x4b\x6d\x04\x50\x29\xab\xb6\xba\x36\x42\x7a\xec\x79\xd8\x83\x36\x02\xa8\x94\x55\x5b\x5d\x1b\x21\xef\xf5\x3c\xfc\xa9\xee\x28\x24\xd7\xd5\xed\x97\x1c\xd7\x42\x99\x5c\xe1\x5c\x10\x5e\x7f\x50\x29\xab\xb6\xe4\xbd\x16\x76\x33\xe4\xd5\x6e\x00\xb5\xba\x52\x5f\xe7\x4d\xe5\xcf\x15\xce\x25\x17\xf6\x82\x0b\xdb\x7a\xf1\x4b\x2e\xec\x35\xb4\x07\x9e\x48\x0d\xed\x01\x60\xbd\xf8\x25\x3d\xf6\x1a\xda\x03\xae\x49\xae\xa1\x3d\x00\xac\x17\xbf\xa4\xcc\x5e\x72\x61\x4f\xee\x3f\x2e\xb9\xb0\x17\xfc\xd7\x95\xb2\x6a\x6b\x98\x03\x01\x94\xc9\xe5\xc1\x35\x48\x28\x5b\x03\x7b\x50\xd9\x62\x0c\xed\xc1\x30\x3c\xe1\x89\xd4\x30\x3c\x01\xd4\xaa\xb8\xba\xc5\xa3\xd8\x29\x8e\xdb\x08\x3b\x25\x53\x8c\x7a\x69\x6b\x90\x29\xb6\xa4\xcc\x9e\x10\xaf\x2d\x29\xb3\x85\x5a\x1d\x95\x11\x0b\xe8\xaf\x77\x33\xe4\x35\xc8\x00\xd4\xca\xde\x61\x18\x23\x1f\x06\x14\x3c\x43\x92\x8b\x7a\xc1\x3b\x5d\x29\xab\xb6\xe4\x9d\x5e\x43\x5b\x05\x07\xda\x92\x64\x5a\xa8\x6e\x5b\x87\x19\x15\xf2\x4e\x4f\x6e\x38\x2d\x79\xa7\x85\xea\xb6\x75\x68\xab\xe0\x98\xde\xcd\x0e\x9e\x29\x2f\x71\x07\xb7\xad\xc3\xb8\x83\xbc\xd3\x93\x1b\x4e\x4b\xde\xe9\x05\xd7\x74\xad\xec\x1d\x86\x19\x15\xc0\x6e\x86\xbc\x90\x4d\x0a\x95\xea\x6b\x6b\x68\xe5\x80\xdd\x4c\xd9\x94\x17\xcb\x57\x7d\x7f\x5a\xbe\xa1\x49\xe3\x46\xd6\x1a\xda\x2c\xa0\x56\xdf\x9f\x36\x0b\xe2\xea\xdd\x0c\x41\x3c\x3e\x84\xc5\xba\xba\xa5\x96\xc5\x7a\x0d\x4d\x9b\xc7\x60\x43\xd3\x06\xd4\xda\xed\xc0\xf5\xa6\x69\xe3\x2e\xd5\x92\xec\x5a\xa8\xee\xbc\x87\xa6\x6d\x90\xec\x36\xb9\x10\xb5\x06\xc9\x6e\x42\xa5\x48\xdb\x1a\xda\x27\xa0\x4c\x2e\xf6\xac\xe1\x59\x21\x50\xab\x6b\x4b\x9b\x05\xb1\xf5\x6e\xf6\x4f\x9c\x7a\x4b\x7c\xbd\x20\xb9\xae\x6e\xf3\x25\xb9\x5e\x43\x5b\xc5\xdd\x9a\x35\xb4\x55\x40\xad\xae\x50\xb3\x3c\x06\x7c\x59\x93\x4b\x33\x6b\xb8\x8f\x00\x6a\x65\xcf\x30\x34\x38\x40\x99\x50\xa5\xad\x71\x7c\x3f\x65\x5a\x89\x60\x0f\x8d\xd0\x30\x38\x74\xfa\xf9\xb8\x8f\x80\x96\xba\x56\xd7\xbb\x7b\x86\xa1\x11\xf2\x94\x6c\x68\x84\x86\x46\x08\x4b\x32\x34\x42\xb2\x57\xcf\xd3\xb5\xe7\xd6\x02\xa8\x75\xf8\x48\x39\x20\x65\x99\xa7\x8b\xca\x48\x10\x50\x0d\x45\x8c\xd3\x4e\xa1\xd5\x9a\xa7\x53\x0d\xad\x96\x50\xe1\x7f\x58\xc3\x78\x11\x50\xe6\xe9\x5c\x1a\x30\x02\x2a\xf5\xe5\xd6\xf0\x80\x74\x18\x43\x22\x01\x7f\x49\x55\x2d\x54\x68\x22\x96\x4c\xd5\x6b\x78\xb6\x70\x3a\x2c\x03\x46\x40\xad\x7e\xd9\xc6\x8b\x64\xaf\x9e\xa7\x82\x78\x40\x0a\x54\xca\xd0\xad\xe1\x71\x03\x4c\xd4\xbb\x19\x3f\x35\x12\x04\x54\xa3\x29\xc3\xb3\x05\xa0\xcc\x13\x4f\x5a\xaa\x6a\xa1\x52\x67\x6e\x0d\xe3\x45\xc3\xe0\x10\x19\xe2\x4b\x0e\xea\x05\xdf\x74\xa5\xce\xdc\x92\x6f\x7a\x0d\x6d\x3c\xe9\xd5\x6b\x68\xe3\x81\x4a\x9d\xb9\x35\x52\x39\xb4\xf1\xa7\x4a\x21\xbf\x1e\x18\xe9\xe1\x2f\x1d\xe9\x72\x7a\xfd\xda\x35\xe8\x40\xad\x8a\xab\x3d\x97\x96\x7a\x7a\xa4\x29\x2d\xb5\x50\x0d\x08\x49\x4b\xbd\x06\x94\x5f\xc7\xcf\xcf\x78\xf9\xe1\x2d\x3e\x3c\x35\xa2\x66\x1f\xd8\xcd\x7c\xa6\xbc\xba\x02\xc4\xef\x87\xae\x80\xec\xd5\xc7\x8f\x78\x8d\xec\xd5\x42\xad\x2a\x4e\xa3\x50\x03\x1b\x7f\x90\xc2\xbc\x86\x36\x1e\xa8\xa4\x26\xaf\x61\x3e\x8b\x24\xd7\x87\x47\xab\x92\x5c\x0b\x95\xd4\xe4\x35\xb4\xf1\xb2\x57\x1f\x3f\x95\x82\x1b\x3c\xa0\x56\xd5\xb0\x1b\xbc\x41\x66\xe2\xf1\xf3\x73\x36\xbe\x34\xb4\xf1\x6c\x23\x86\x36\x7e\x10\x72\x3a\x48\xc5\x5d\xc3\xdd\x1c\xec\xd5\xd5\x08\x99\xec\xd5\x4b\xf6\xea\xe3\x87\x09\x96\xbd\x5a\xa8\x95\xf7\x37\x0d\x2f\x49\x68\x7d\x90\xcf\xba\x24\xb4\x16\x2a\x69\xd3\x6b\x6a\xbc\x27\x99\x89\x07\x19\xa8\x6b\x7a\x90\x30\xb5\xca\xe8\xfe\xa9\x55\x86\x6e\xba\x1c\xa4\x48\x2e\xf9\xa6\x17\xdc\xd2\xb5\xb2\x1a\xe4\x96\x5e\xb3\x38\x04\xf4\xf0\xd4\x2a\x4f\xad\x32\xfb\x84\xa9\x55\x96\x82\xfa\x30\xbf\x50\x0a\x6a\xa1\x52\xc8\x6e\x4d\xad\xb2\xe4\xd1\x87\x07\xb5\x92\x47\x2f\x08\xa3\xab\x41\xbe\xe9\x69\x00\xb0\x9b\xf9\xd3\xdb\x67\xfb\x93\x31\xc8\x37\x3d\x20\x00\x76\x33\x7f\xaa\x20\x18\x6f\x2a\xd4\xad\xa9\xf1\x86\x4f\xba\x1c\x66\xdd\x49\x28\xbd\x20\x8f\xae\x54\xa8\x5b\x92\x47\x2f\x88\xa2\x77\x33\x46\xaa\x8d\x07\x2a\x15\xea\xd6\x34\xa9\x47\xf2\xe8\xc3\xcc\x36\xc9\xa3\x85\x4a\x1e\xf9\x9a\xda\x78\x59\xa1\x0f\x53\xd6\x64\x85\x16\x2a\x79\xe4\x4b\x56\xe8\x35\x9b\x9f\x0c\x8b\x6b\x9a\x35\x09\x54\x0a\xd9\xad\xa9\x3d\x07\xca\x61\x5a\xd8\xf4\x34\x1b\xa8\x70\xc8\x2c\xf9\xa4\x17\x0c\xd0\xbb\x19\x9d\xba\xf9\x84\xf5\xb9\x52\x58\x6c\x4d\xad\xf2\xec\xca\xe6\x0b\xd4\x2a\x03\xd5\x70\xe6\x34\xa9\x07\xd8\xcd\xe8\x41\x4b\x0d\x61\x74\x35\x9c\x39\xdd\x70\xca\x0a\x7d\x14\xe2\x35\xb2\x42\x2f\x98\xa0\x2b\x65\xca\xd6\x34\x5b\x07\xd8\xcd\x98\x24\x18\xd5\x84\x6a\xd4\x73\x1a\x32\x04\x76\x33\x7f\xaa\x20\x6c\x38\x5b\xd8\x81\x72\x60\xbc\x0f\xf3\xa8\x24\x94\x16\x2a\x35\xe5\xd6\xd4\x78\xc3\x27\x5d\x8e\x52\xfe\x89\x43\x6f\xf9\xa6\x85\x4a\xc9\xb9\x35\xdd\x7b\xce\xe1\x08\x1d\xb5\x36\x1e\xa8\x94\x9c\x5b\xd3\x4c\x4e\x99\xaa\x0f\xf3\xa7\x64\xaa\x16\x2a\x25\xe7\xd6\xd4\xc6\x4b\x41\x7d\x14\x47\xed\x46\x73\x72\x4e\x44\x19\xba\x35\x3d\x27\x9a\x64\x72\x1e\xa6\x0b\x4d\x23\x8f\x40\xa5\x0c\xdd\x9a\x06\x1e\x61\x9d\xde\xcd\xf8\x6b\x46\x19\xe7\xe1\x44\x30\x37\x6e\x34\x61\xa2\x2e\x87\x47\xf9\x53\x57\x00\xa8\x54\x7f\x5b\xd3\x88\xa2\x14\xd4\x87\x49\x34\x52\x50\x0b\x95\xfa\x72\x6b\xea\x0a\xcc\xd3\x4e\x71\x2c\xa6\xe7\x44\x10\x49\xd7\xc6\x76\x46\x1e\x69\x61\x37\xf3\xaf\xf9\x19\x9f\x7c\xc6\x6c\x23\xa6\x47\x47\xc0\x6e\x86\xbc\x7a\x0c\x40\x6d\x8a\xab\xc7\x00\x9d\xf4\x6e\x76\xfe\xcb\x5f\x5f\x69\x16\x85\xc6\x8c\xbf\xd2\x2c\x0a\x15\x32\xe1\xf7\x64\xd7\x23\x4c\xf2\xb2\x5f\x58\x18\x3f\xa8\x5c\x4d\x78\xe5\x62\x14\xe6\xf9\xf3\x51\xf7\xd1\x5e\x78\x30\x63\xbd\x50\x35\x7e\x50\xcf\xef\xd1\xf4\xd1\xfe\x5e\x71\x9f\xde\x93\xcd\x92\xf0\xbf\x1e\x9d\x3e\xda\xf3\x03\xd7\xea\x7b\x92\xc7\x23\x34\x92\xae\x5e\x68\x1f\x3f\x68\xb8\x19\xaf\xe4\x8f\x42\xe3\x3a\xe9\x0b\x11\xe4\x5f\xdf\x73\x6f\xa2\x1a\x5e\xc6\x7b\x16\xa5\xdf\xd0\x0f\xa5\x2f\x4a\xbf\x35\x7c\xc3\x42\xbf\x72\x3a\xbe\xe7\xd6\xd6\x96\x58\x7c\x4f\xce\x14\xde\x73\x6b\x69\xab\x1d\xbe\x67\x38\x85\x1b\x1a\x1a\xf9\x3d\xc3\x29\xdc\xd0\xd0\x97\xef\x19\x4e\xe1\xde\x4d\x35\x94\xde\x7b\x86\x3d\x6e\x1d\xdd\x50\x49\xaf\xf4\x90\x2f\x94\x90\x8d\x4f\xfc\x3d\xe3\xeb\xf1\xd9\x8f\xc2\x1e\x5f\x1f\xbd\xff\xfa\x97\x46\x25\xa7\xf7\xac\xbe\xda\x5a\x78\x44\x8f\x55\x21\xb6\x86\x6e\x54\x6d\x7a\xcf\xea\x80\xf6\xc6\xab\x75\xff\x56\x75\x0a\xf7\x4e\xca\xe2\x5f\xef\xd9\x1c\xd0\x56\xc6\xad\x57\xe6\xab\x39\x5f\x5b\xff\x36\xe8\x8d\xde\xb3\xf9\x6a\xb7\x92\xb5\xfa\xd5\x7b\x36\x5f\xda\x86\xd6\x3b\xb3\xda\x7c\x69\x8d\x1e\x07\x3d\xb6\xaf\xc7\x87\x47\xcc\x44\x73\x40\x1d\x21\x26\x7f\xbe\x2b\x44\x67\x40\x93\x56\xdd\x01\x6d\x0d\x6b\x29\xa0\xf7\xec\x0a\xb1\x15\x6c\x1b\x4e\x61\xb7\xc7\x0d\x8d\x68\xca\x7b\x76\x7b\xdc\xd0\x48\x89\x7b\xcf\xee\x44\x6f\xf8\xc7\x02\xe8\x2e\x93\x0d\x8d\x1c\xb6\xf7\xec\xce\xfd\x86\x46\x92\xc1\x0b\x15\xe6\x07\x8d\x74\x98\x57\x42\x4c\xa1\x91\xac\xf2\x42\x8e\xf9\x41\xa7\x0c\xd0\x2b\x47\xa6\x30\xbe\xf7\x38\x5c\x13\x1b\x3a\xb9\x59\xaf\x14\x99\x42\x83\x7b\xe0\x3d\x87\xcb\x64\xc3\xec\x0e\x68\x38\xec\x0d\x9d\x3c\xf0\xf7\x1c\x7e\x56\x1b\x7a\x71\x26\x86\x6f\x7b\x83\x21\xff\xf7\x1c\xbe\xa1\x0d\x9d\xdb\x1a\xef\x39\x9c\xaf\x0d\xbd\x7e\x03\x72\xbe\x36\x4c\x32\xbe\x5f\x69\x3a\x85\xce\xee\xeb\x95\xa6\x53\xe8\xed\x60\x01\x0c\xe7\x6b\xc3\xc0\xa3\x7d\x61\xf1\xfc\xa0\x7f\xaa\x63\x3a\x5f\x1b\x64\xcb\x7b\x25\xeb\x14\xe6\x4f\xe9\xa7\xf3\xb5\x61\xb2\xbd\x79\xe1\xf2\xfc\xa0\x7f\xca\x6a\x3a\x5f\x93\x0f\x59\x0d\x30\x9d\xaf\x39\xf9\x60\x90\x6b\x3a\x13\xf3\xe2\x91\x7f\xde\x31\x4e\xbe\x34\x17\xf9\x54\xfa\xc9\x97\xe6\x02\x98\x4a\xbf\xcd\x8a\x75\x33\xdf\xf3\x50\xd4\x0d\x96\x2f\x7e\xcf\x43\x51\x0f\x3e\xf7\x86\x10\x87\xa2\x6e\x68\x14\xba\x7c\xcf\x43\x51\xf7\x96\xb3\x35\x15\xf2\xe1\x7b\xdc\xd0\x9a\xaa\xf6\xf0\x3d\x6e\x33\x63\x35\xcc\x57\xb6\x50\xa1\xb5\xf1\x3f\x6e\x81\x9d\xed\x7f\x1a\xe5\xf7\x3c\x1c\xc8\xc1\xb2\x75\xce\x0f\x07\x72\x32\x90\xc1\x9f\x3d\x1d\xc8\xc9\x40\x06\x2f\xeb\x74\x20\x27\x4a\x6a\x30\xc1\xa7\xb3\xb9\xa1\x15\x5f\xfc\xa9\xd4\x27\x13\xec\xd7\x7a\x3a\xc1\x1b\x5a\xf3\x35\x9c\x2e\xb5\x0d\x56\xb1\x7c\x25\x2a\x7d\x21\x25\x6d\x4d\x45\x7c\xba\xae\x4e\xc6\xe6\x2b\x3d\x95\x7e\xc3\xf8\xa6\xee\x54\xfa\x0b\xe9\x0f\x7a\xbc\x94\x7e\xc3\x3f\xd6\xd5\xa5\xf4\x17\xaf\xc1\x65\x7b\xf9\x1a\x36\x34\x12\xeb\xde\xf3\xf2\x35\x6c\xb0\xd4\xf4\x7b\x5e\x8e\xf1\xe2\xcd\xb8\x92\x2f\xc7\x78\x31\xa0\x03\x21\x2e\x07\x74\x31\xa0\x53\x21\x1c\xd0\x75\xfd\x6f\x65\x70\xb9\xae\x2e\x06\x74\xda\xa3\x03\xda\x30\xe7\x27\xd7\x37\xa0\x97\x56\xfc\xf0\xf6\xab\xb8\x19\xa3\x66\xe4\x76\x8c\xf7\x16\xb5\xfb\x39\xdd\x8a\x7a\xa3\x88\x35\x23\xb7\xa2\xde\x28\x62\x4d\xe5\xad\xa8\x1b\xfa\xfc\xfe\xbc\xa2\xee\x7d\xb3\x55\x08\xdf\xf3\x76\x5d\xdd\x28\xbc\x83\x29\xbc\x15\xf5\x46\x37\xbb\xfa\x6e\x45\xdd\xf0\x0f\x4d\x99\x8a\x9a\xe8\x66\x6d\x6c\x3a\xf7\x89\xcd\xf0\x75\xa4\x13\x9d\x48\xef\xdc\xa7\xd2\x6f\x98\xdc\x89\x7e\x61\x86\xfd\x60\x90\x5b\xfe\xca\x0f\x2b\x58\xbe\xef\x85\x2b\xf6\x83\x56\x9c\xc2\x74\x8c\x89\xb1\x51\x07\xa6\x63\xdc\xdb\xf8\xd6\x5d\x26\xe9\xfa\x4a\x86\xad\xc2\x4b\x87\xbd\xc1\x7a\x7e\xef\x99\x0e\x3b\x19\xf6\x27\x97\xc3\x4e\xf4\xbc\x3f\x5c\x0e\x7b\x31\xc6\x93\x31\x2e\xc7\xb8\xf7\xf0\x96\xc4\x7b\xa5\x8b\x7d\xa1\x86\xb5\xfc\xdd\x2b\x35\xac\xf0\x0f\x6b\xb0\x94\x6b\x43\x1b\x7a\x08\x4b\xb9\x36\xb4\x51\xec\x51\xb9\x36\xb4\xa1\xc3\xb6\x94\x6b\x83\xa5\xe9\x5e\xe9\x63\x85\x7e\x6a\x76\x1f\x57\xce\xb3\x3f\x05\x0e\x5e\x5f\xa9\x62\x85\x56\x5c\xd1\x8f\xd2\x6f\x68\x43\x4d\xf9\xf8\x86\x1e\x6c\x6c\xd8\xca\x37\xb4\xa1\x0d\x95\xe7\xe3\x18\x1f\xcc\x6e\x65\x40\x8f\x73\xbf\xa1\x0d\x6d\xec\xe3\xb0\x1f\x5c\x31\x67\xf5\x71\x8c\x0f\x63\xac\x3e\x72\x8c\xef\x5e\xf7\x14\xaa\x7b\x61\x91\xdd\x80\x10\xea\xd3\x57\x21\x5e\x84\x70\x8c\xaf\x42\xbc\x08\xa1\xf2\x7c\x15\xe2\xc5\x96\xb9\xc8\x5f\x85\xd8\x30\x9a\x0e\xdb\xeb\xdc\x6f\x90\x89\xef\x95\x5d\x56\xe8\x53\x95\xf6\x7e\x72\x69\xfb\x7d\xe4\xdc\x6f\x18\x10\x65\xbe\x52\xd0\x0a\x63\x7c\x8f\x8a\x8f\xf6\xd7\xc1\x61\xf3\x7b\xe9\x52\x03\x53\xd7\xe2\xd2\xa5\x06\x1a\xd9\x2f\xef\xa5\x4b\x0d\x34\x12\x14\xde\x4b\x97\x1a\x68\x44\xf4\xdf\x4b\x97\x1a\x98\x1d\x6f\xe3\xd2\xa5\x06\x3a\xbb\xe2\x57\xce\x5b\xc1\x63\xcd\xf7\xd2\xa5\x06\x2a\x75\xfd\x5e\x69\x70\x85\xea\x44\xcb\x82\x2b\x54\xf8\x57\xdf\xd7\x01\xbd\xd4\x82\xc4\x85\x7b\xd9\xc1\x0b\x90\xa9\xbf\x2f\x1b\xf8\x97\x0b\xd6\x15\xe7\xe6\xd5\x77\x02\xd8\x04\xbe\xde\xa7\x7d\xb9\x4f\x4b\xce\xfd\xeb\x75\x5a\x81\xac\xcb\xf7\x75\x95\x02\xc4\xa7\x5f\xef\xd2\x0a\x05\x37\xf3\x75\x41\x02\x35\xfe\x4f\x73\xb8\xff\xff\xef\xd7\xdf\xfe\xe5\xff\xfe\x7f\xae\xbf\xfd\xbf\xd7\xbf\x3f\x7f\xc9\xff\xfe\xfb\xdf\x9f\xff\xf8\xaf\xf5\x6f\xf9\x5f\x7f\xf9\xbf\xf6\xd3\xbf\xac\xe7\xfd\xb7\xff\x78\xfe\xfe\xfc\x7f\xff\xf9\xdf\x7f\xcf\xe7\x2f\x7f\xfb\xcf\xbf\xed\x5f\xf1\xef\xff\x0f\x00\x00\xff\xff\x0a\xdc\xcd\xda\xad\x7f\x02\x00"); +func _ffb ()(*asset ,error ){_dbec ,_edb :=_fed ();if _edb !=nil {return nil ,_edb ;};_aee :=bindataFileInfo {_ee :"Ext-H",_ffd :13186,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491886,0)};_dde :=&asset {_da :_dbec ,_dc :_aee };return _dde ,nil ;};func _dbgd ()([]byte ,error ){return _gb (_gcaa ,"Ext-RKSJ-V")}; +func _ccba ()(*asset ,error ){_bcbb ,_dfbd :=_gae ();if _dfbd !=nil {return nil ,_dfbd ;};_ggfga :=bindataFileInfo {_ee :"NWP-V",_ffd :1293,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492618,0)};_ebcac :=&asset {_da :_bcbb ,_dc :_ggfga };return _ebcac ,nil ; +};func _fcg ()(*asset ,error ){_fceef ,_fffa :=_dedd ();if _fffa !=nil {return nil ,_fffa ;};_dggd :=bindataFileInfo {_ee :"HKdla-B5-V",_ffd :613,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492314,0)};_cae :=&asset {_da :_fceef ,_dc :_dggd };return _cae ,nil ; +};var _abgb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4b\xaf\x6e\xcd\x91\xa0\x35\xf7\xaf\xd8\xc3\x66\xd0\xd4\xca\x7b\xa6\x64\x1d\x09\xca\x58\xb8\xa5\x06\x44\x75\x01\x12\x62\xf0\xae\x5b\x61\x89\xfa\x6c\xd9\xae\x41\xfd\x7b\x94\xcf\x13\xe7\x73\x0b\x21\xed\x33\x39\x6b\xed\x77\xe5\x2d\x32\x32\xee\x19\xf1\x0f\xff\xf8\x87\xdf\xfd\xe1\x97\x3f\xfe\xed\xeb\x1f\xfe\x97\xbf\xfc\xe9\xfa\xa7\xe7\x6f\x5f\xef\x1f\x7f\xb9\xff\xf2\xfc\xf5\x4f\xff\xf6\x97\xeb\xf9\x3a\x9f\x7f\xf9\xe3\x2f\xbf\xf9\x4d\xca\x5f\xf7\x1f\xaf\xbf\xfd\x7c\xe5\xbf\xeb\x5f\x3f\x7f\xfe\xcd\x6f\x76\xfb\x7f\xfa\xf7\xbf\xfe\xed\xf9\xd7\x3f\xfc\xf2\xfe\xe9\xab\xf8\xdd\xfd\x6f\x7f\x8e\x6f\xbf\xbe\xfe\xe1\x7f\x7d\xfe\xe5\x8f\x7f\xfd\xdb\x5f\xfe\xfd\xeb\x3f\xfc\x77\xf7\x9f\xce\xe7\xbf\xf9\xba\x9f\x77\xff\xfd\x7f\xfe\xcb\xfd\xfc\xe5\x8f\xbf\xfc\xcb\xd7\x7f\xf8\x4f\x9f\x3f\x7f\x7e\x49\xbf\xfe\xf0\x4f\xff\xf6\xe7\x3f\xff\x3f\xcf\xbf\x3e\xbf\xfc\xed\x6b\xf0\xb7\xe7\x97\x9b\xff\x7f\xf3\x0f\xff\xf8\x9f\x3f\x7f\xfe\x9f\x3e\xff\xfa\x7c\xfd\xc3\x3f\xff\xf2\xc7\xff\xf4\x87\x7f\xfa\x8f\xff\xfc\x5f\x7e\x9f\xfa\x7f\xfc\x1f\xf9\x99\x5f\xff\xb7\xe7\x2f\x7f\xfd\xe3\x9f\x7e\xf9\x4a\xff\xed\x91\xfb\xdf\xff\xfc\x5f\xfe\xfd\xcf\xcf\x57\x8a\x5e\xfe\x8f\x7f\xfe\xc3\xef\xbe\xfe\xcf\xf4\x95\x8e\xaf\xdc\x7a\x4a\xff\x57\xfc\xfd\x7f\xff\xcf\x7f\xba\x9f\xaf\xc3\xb7\xe2\x0a\xae\x3f\xdd\xcf\x5f\xff\xfc\xb9\x9e\xbf\x7c\x7e\xf9\x97\xe7\x37\x5f\x5f\xbf\x3d\x8e\xe3\xf8\xf1\xb5\xff\xfd\xf6\x77\xe3\xf7\xbf\xff\xb1\xff\xf6\xbb\x79\x1c\xbf\xfb\xc7\xfd\xf7\xdf\xfe\xee\xbf\xff\xfd\xef\x7f\xf7\xfb\xf8\xfb\xff\xf0\xf7\x6f\x7f\xcf\xdf\x9e\x5f\xee\xff\x4f\x8f\xbf\x49\x0e\xf4\xcb\x9f\xfe\x76\x3f\xaf\x7f\x8b\x31\x7e\x7b\x1c\xe9\xfd\xf1\x95\x76\xab\xff\xfa\xe7\xdf\xa4\xe3\x88\xd9\xfd\xf1\xbe\xfe\xef\xcf\x5f\x76\x83\x76\xfd\xf8\x5a\x63\x3f\x8d\xfd\xb4\x78\xba\x7f\x7c\xad\xca\xd3\xf3\xe3\x2b\x1d\xc7\x7e\xfc\x1c\xbb\xcb\xfd\x50\xf7\xdf\x68\xf2\x69\x3f\xbe\xba\x7f\xec\x3f\xbe\x56\xe1\x69\xfc\xf8\x1a\xd9\x26\xf3\xc7\x57\xaf\x7e\xb9\x7e\x7c\xa5\x96\x79\xfc\xfc\xf8\x4a\xd5\x0f\xce\xdd\x15\x63\x7e\xae\xfd\x81\x3d\xdc\xfb\xd1\x6e\xf7\xf8\x8d\xa9\x7c\xf6\x92\x32\xdf\x9e\xc7\x8f\xaf\xe1\x0c\xce\xf4\xe3\xab\x3b\xd7\xb3\xee\xd1\x1a\x8f\x6d\x37\xf3\xdb\xfe\xe3\x6b\x8c\xc9\xe3\xf8\xf1\x95\x92\xcd\xe6\x8f\xaf\x54\x6c\xb6\x67\xd6\x99\xce\xc9\xcc\xfc\xeb\x9e\x59\x66\x3a\x27\x03\xf7\xfd\x78\xf5\xdd\x8c\x7e\xef\xb1\x07\x66\xb4\x7b\x77\x56\x59\xdb\xbd\xbf\x6d\x74\xf6\xec\x6f\x9d\xce\xcb\xb7\xf4\xf0\xf2\xed\x9e\x4e\xda\x5b\xb5\x4a\xef\x3c\x27\x9e\x13\xcf\x79\xf7\x31\x9a\x3f\x14\x5e\xfa\xe2\xa5\xf2\x52\x06\x2f\xac\x71\x30\x42\x3a\xba\x6d\xec\x78\xf0\x32\xec\x6d\xf2\x32\x0b\x2f\xcb\x17\x7b\xfb\xfc\xf8\xca\x47\x29\xfe\x72\xf2\xc2\x0e\xa5\xe3\xb2\x37\x3f\xbb\xed\xcd\x5f\x1e\xa7\x63\xd7\xaf\xbf\x6c\x80\xa5\x74\xd0\x41\xe6\xb3\x94\xfc\x85\xb9\xa5\xcc\xda\xe8\x2c\x15\x9e\x6d\xd1\x1d\xdf\x97\xe1\xf8\x4c\x26\x39\x67\x36\x25\x25\xe7\x3c\xfc\xe5\xb3\xdb\x2f\xfb\x3d\x37\x96\x82\x06\x29\x39\xe3\x69\x5f\xce\x78\xd9\xfc\x71\x14\x9b\xbc\x8e\xc2\x4b\x76\xc6\x42\x33\x27\x7f\x01\xe8\x39\xfb\x8b\x2f\x02\x7d\xda\x46\xa0\x2f\xd6\x9f\x5d\x00\x58\x92\x32\x40\x9f\xc9\x36\x93\xa9\x31\x81\xbc\xf6\x73\x02\x2e\x99\xe9\x77\x47\x3c\x79\xf6\xef\x31\x49\x60\x94\x63\x92\x7c\x55\x62\x92\x6c\x6c\xd9\x60\xad\x8c\x50\x9c\x62\x66\xc1\xa5\xf8\xe2\x47\x31\x5f\x3f\x8b\xf9\x32\x4a\x71\xbe\x1c\xbd\x54\x02\xe0\xb6\x99\x76\xc0\xf8\x45\x80\xc7\xf8\x1f\xa1\x6f\x1b\x91\xa4\xda\xdb\xc5\x8b\x9b\x54\x04\xb9\x0b\x28\x22\x49\xb5\x03\x57\x93\x01\x5f\x8d\xd5\xd0\xa6\xb2\x1a\x20\x59\x37\xca\xfb\x7d\x0d\x84\x67\x8c\xea\x5a\x06\x6b\xa9\xcd\xd1\x0b\xd4\x30\x28\xd8\xff\x1f\x4d\x4b\xd5\x85\x8a\xa5\xd5\xd3\xd0\xd9\xa5\x2a\x66\x0d\x87\x5a\xce\xc6\xcf\x3c\x0d\xd9\xa1\x40\x2d\xf7\xbf\x6e\xb2\x58\x04\x40\xbd\xd9\x33\xd6\xd2\x0e\xfb\x65\x07\x5a\x20\x3c\xd0\x6c\xac\x86\xf1\xda\x5e\x4d\x05\x2a\xcd\xb5\x88\x7b\xcd\x7d\xe9\x7e\x1f\xfb\x62\x4f\xee\x8b\xeb\x6f\x71\x10\x6c\x13\x07\xc1\xde\xdc\x17\xf7\xb2\x9d\xbe\xd8\x5b\x1c\x05\x96\xd8\xe2\x28\x38\x99\xd8\x17\xd6\xdb\x3c\xbc\xd0\xaa\xd4\xf7\xbe\x88\xc7\x7d\x1f\x84\x4c\xe3\x2e\x21\x12\x5d\xbb\xfb\x32\x69\xdc\x5d\x8b\x88\xd0\x5d\x4b\xf3\x97\x38\x13\xb6\x71\x2d\xc5\xcf\x3c\x13\x2c\xa5\x7b\x26\xfc\xc8\x33\xc1\xdc\xbb\x67\xc2\x89\xc4\x3a\xfc\x21\xd6\x01\x88\xfa\x43\x4f\x3e\xbf\xf4\xc4\x4e\x8d\xd8\x11\x5f\xdc\x91\xc9\xfa\x86\xa7\x45\x5a\x39\x3c\x2d\x8e\x32\xaa\xc7\xc0\xcf\xc4\x30\xb7\x74\xb8\x12\x97\x35\x62\x57\xec\x60\x9f\x16\x4f\xde\x70\x4f\xdc\xec\xe1\x9e\x48\x43\x47\xec\x89\x9f\x05\x41\xf5\xe5\xde\xcd\xed\x69\x9f\x7b\x4f\xdd\xda\xc0\x16\x3a\x0b\x50\x4f\x51\xf1\xca\xbe\x30\x8d\x0b\xfc\x13\x0a\x97\x50\xf0\xa3\x97\xbf\x03\xaa\xfb\x00\x22\x2c\xe8\x4e\x7c\x43\xdb\x3b\xf3\x77\x66\x7a\x17\xfe\xee\x73\xe5\xef\x8c\x7c\xc7\x11\x63\x46\xb7\x3c\x45\xfe\x70\x0b\x00\x89\xcf\x2d\x5a\x4a\xb9\x6f\x4f\x91\xc8\x77\x0b\x02\xa9\xed\x1d\xe4\x82\x6d\xbe\x05\x81\x67\xea\x75\x1c\xe1\xf1\x22\x6d\xb0\xc0\xbc\xa9\xd2\xaa\x34\xcf\x1e\xb0\x09\xf6\xe4\xc6\x4a\xd2\xe4\x59\x90\xd0\x55\x6e\x01\x2c\xbf\x62\x2d\x20\x72\xf6\x88\x4d\xb0\x3d\x37\xd6\x32\x0f\xbf\x92\x54\xc7\x67\xd3\x97\xc5\x0b\x78\x99\xed\xf8\xc3\xb3\x7f\x97\x1e\xd8\xfa\x72\xf4\x83\x97\xc7\x17\x07\x79\x1d\x84\x26\xdd\xd9\xb3\xcf\xb9\x27\x99\x03\x23\x7a\x78\xa6\x8b\xf4\xf0\x4c\xe8\x7b\xee\xce\x32\xd9\x81\xb3\x04\x81\x72\x8f\x59\x0e\x5e\x00\xf2\x9c\xed\x3b\x42\x98\xe3\x0c\x2d\x7b\xbf\x9d\x9e\x2f\xd2\x82\xe5\x50\x4e\x9c\x9d\xce\x9e\xa2\x99\x18\x37\x4e\x11\x0c\x37\x0f\xe1\x0e\x6a\xe5\x21\xdc\x0f\xdb\xb8\x24\x78\x4e\xde\xa7\x68\x55\xd8\x6a\x1e\xae\x68\xfa\xe2\x22\x38\xd1\xd9\x93\x33\x0f\x3b\x73\x45\xd5\xce\x4e\x7f\xb1\x4d\x4c\xda\xd9\xc4\xa4\xf9\x65\x3a\x4f\x64\x99\x3c\x03\xc0\xcc\x73\x3a\xcf\xc3\x17\x50\x1d\x4a\x95\xa7\xd3\xe4\xe8\xe6\xe9\x6c\x38\x1c\x79\x3a\x1b\x38\x68\x9e\xce\xa6\xf8\x99\xe7\x18\xe9\x2d\xcf\x8b\xa5\xf9\x95\x33\x73\x9d\x53\x3c\x48\x0e\x23\x38\x91\x3f\xf2\x72\x9a\x9c\xd3\xbc\x9c\xa6\xb3\x59\x1c\x48\xf1\x73\x39\x33\xf1\x7b\x89\x13\x90\xc7\xbc\x62\xe7\xed\xcc\x69\x2e\xdb\x88\x88\xcb\xce\x9c\x4d\xf2\x97\x98\x00\xe0\xfc\xc4\x98\x74\xf0\x89\xa3\x03\xd0\x4e\xa7\x06\x39\xc9\xa7\xbf\xb8\xd3\xa7\xb8\xe7\xa2\xb7\x28\x2c\x06\x9d\x7b\xf9\xfc\xed\xb2\x53\x77\x02\xa9\x58\xd0\x5d\x32\x5b\x08\x48\xbe\x9c\x7a\xb5\xc5\xfa\x29\xbe\xe7\x6b\xc3\x57\x54\xbe\xce\x1f\x5f\x10\xd5\x7c\xb9\x1a\x88\x45\x96\x86\x89\x0e\x77\xcc\x9f\xfe\x7f\x52\x1e\x5f\x42\x9a\x05\x00\x50\x1e\x31\xf8\x0e\xd2\xcb\xb8\x9b\xee\xb8\xa8\x5b\x1e\xd2\xfc\xc6\x0d\x83\xb7\x95\x2d\x89\x33\x8b\xb2\xc5\xed\xe5\x53\xfd\x39\xdf\xb2\x25\xed\x0c\x51\x28\xc7\xaf\xa3\x94\x2d\x31\xa7\xe2\xb7\x7b\xee\xc5\xae\xee\xbf\xaf\xb9\x28\x20\x4f\x98\x4b\x49\x62\x15\xec\xbb\x28\xaf\x4e\x24\x94\xa2\x84\x39\x61\x81\x45\x09\x73\x36\x5f\xc6\x4f\x35\xa5\x64\x34\x16\xba\xcd\x62\x81\x33\xce\xd1\xad\xbf\xd8\x2d\x82\x7b\xc9\x8e\x0e\x3b\x2c\xc5\xbd\x46\x0a\x2f\x5b\x78\x84\xc9\x15\x85\xc5\x89\xaa\x50\x0a\xda\x0d\x03\x97\x18\x82\x99\x17\x7b\x1d\xbe\xb8\x40\x9b\x07\x5d\x83\xaf\x96\x09\xc3\xac\x6c\x6c\x99\x48\x87\x92\xcc\x32\x1f\x5f\x80\xdb\x7c\x7d\xa1\xcd\x42\x20\xf4\x10\x94\xcf\xc7\x5f\x7c\x39\x7d\x61\x9c\x33\x3e\xa3\x0d\x1c\xb1\xe7\x9c\xbf\x23\x7f\xe5\xb2\x43\x50\xbf\x5c\x76\x08\x3d\x2d\x97\x33\x72\x9b\x36\xb6\xa5\x7c\x70\x5e\x0b\xe8\x96\x8f\xe5\x2f\xcd\x17\xda\x80\x56\xf9\x00\x3d\xea\x56\xd8\xd2\xc1\x16\x54\x84\xbf\x83\x23\xf2\xc2\x34\x73\xda\x38\x99\x1e\xce\x4b\xd9\x87\x24\x3d\x27\x5c\x6e\xf3\x86\xf4\x0e\xd0\x7b\x1f\xe9\xf4\x0e\x19\x9b\x7f\x87\x22\xec\x25\xa7\x77\x40\xb7\x36\xc8\xf2\xb1\x35\xc2\xbc\xc1\x92\x8f\x8d\xa0\xdd\xbf\x6e\x8d\xab\x6f\x39\x31\x1f\xe8\x5b\x95\xa7\x0d\x9c\x78\x2c\x7f\x7f\xac\xb1\xb3\xf9\x48\x5b\x65\xef\xf4\xb5\x15\xb0\xbe\xd1\x23\x1f\x5b\xe3\x5a\xfe\xbe\x3c\xe3\xf9\x00\x61\xf7\x24\xf3\x01\xba\x1e\xfe\xbe\xf7\x3f\x3b\xea\xc3\x5a\xf7\x63\x66\xd8\xc5\x23\x03\xf8\xc8\x00\x34\xdb\xf8\x87\x0e\x99\x8f\xad\x45\x20\x3b\xe4\x03\xcc\xca\x29\xd1\x47\x79\xe2\x98\xe5\xa3\x88\xba\x95\x5e\xaa\xfb\x3d\x69\x8c\x46\x70\xd0\xb8\x2e\x1b\xf3\x77\xf6\xa0\xe7\x49\x4f\x9b\x75\x8f\xe9\x7a\xb6\x04\x3c\x20\x54\xf9\x00\xee\x65\xf8\xcc\x10\xcb\x45\x7d\xd8\xa8\x46\xb7\x90\x89\x8e\x32\x95\x0f\xc8\x44\x3a\x36\xb2\x66\x14\xf6\x94\x66\xf3\xa5\xfc\xf8\x1a\x9b\x15\x66\x35\xf1\xc4\xa9\xcb\xa8\xd8\xb3\x1c\x7e\xf3\xe1\xb9\xf2\xfc\x8a\x3d\x7b\xb6\xa8\xc1\xf3\xc8\x7c\xb4\x77\x61\x74\x7b\xda\x5a\xe8\x3c\x1c\x00\x25\x94\x59\xa0\x68\xae\x12\x7f\x86\xc2\xb6\xe4\xcb\x06\xe5\x3e\xbc\xf9\xa7\x0a\xc9\x76\xaa\xf6\xe5\x63\x32\xa3\x0d\xef\x59\x36\x3b\xcd\x28\x2d\x0b\xcd\x38\xa3\xb3\x2c\x18\x70\x46\x65\x59\x30\xa9\xfc\x53\x37\xc9\x34\xd8\x60\x9a\x65\x73\xf9\x9c\x36\x93\x5c\x48\xd4\x19\x71\x15\x61\x2e\x23\xae\xa2\xf9\xe5\x04\x1b\xcb\xf9\x60\x46\x9b\x2d\xcc\x72\xf0\xc3\x75\xfa\x03\x7d\x42\xea\x73\x76\x34\x0f\x5f\x76\x1a\x5b\x46\x45\x7e\xce\x88\xa5\xd0\xea\x9c\x9e\xdd\xd1\x91\x7c\x1e\x3c\xf3\xc9\x33\x79\x06\xbc\xcf\xe2\x99\x81\xb7\x74\x39\x0b\xdf\xe4\xbd\x67\xc8\xdd\x39\x1f\x74\xbe\x78\xdc\x53\x06\x9e\x99\xcd\xcb\x69\xfa\x49\x28\x8e\x83\x97\xb1\x37\xe6\xe0\x71\xfe\xf8\x42\x6f\xca\x59\x13\x4a\xdd\xf4\x36\xe7\xc3\x23\xb2\xfc\x65\x6f\x46\x75\x54\x95\x5e\x50\x3f\xef\xc3\x39\x3a\x9b\x9d\xf7\xf1\xec\x9b\x2f\xe7\xcc\xf1\xcc\x29\xcd\x6f\xc8\x58\xce\x58\x40\x12\x73\xda\x67\x12\x75\x30\xe7\x7d\x10\x87\x33\xdd\x07\x71\x1c\xf6\xfa\x32\x18\xab\xcc\xac\x9d\x89\x6e\x96\x81\x7e\x98\xf3\x66\x18\xe8\xe6\x39\xe7\xfb\xc7\xd7\x4c\x8b\xee\x36\xfe\x8c\x9e\x01\xc3\xe6\x0a\xe3\xf0\xb1\xed\x3f\xd3\x90\xc3\xca\x3e\xe5\xc2\xd8\xf4\x5c\x5d\x06\x74\x22\x57\x50\xa7\xb1\xcd\x59\x5d\xbb\x71\xc2\x90\xd9\x51\xea\x33\x92\x71\xe7\x70\x22\x17\x63\x4c\xca\x59\x65\xb3\x71\x70\x94\x80\x72\x9a\x7c\xb4\x82\xa4\x32\xdc\x1a\xbe\xb0\x40\x64\xa3\x9c\x26\xc3\xad\xc7\x03\xcd\x67\x18\x2b\x73\x9a\xf4\xf6\xd9\x6b\x68\x7c\x74\x02\x9e\xc2\x64\x2f\x91\x15\xa8\x14\x6c\x66\x1b\xd4\xfb\x25\x81\x29\xfc\x3d\x4c\x51\x9c\xc3\xb2\xc0\x62\x54\xfb\x5c\x96\xb4\x8b\x1d\x28\x48\x5c\x3f\x5f\x62\xf0\xcd\x5c\x72\x41\xfc\xca\x98\x33\x73\x41\xfc\xfa\xf5\xb3\xf6\x5f\xbf\xb8\x48\x30\x15\x46\xf8\xeb\x2f\x9b\x55\xa5\x9e\xc7\x1e\xb4\xe6\xe2\xcb\x06\x64\x7d\x36\x79\x41\x11\xcd\xf5\x7d\x51\x1f\x41\x82\xb6\x4f\xf9\xcc\x0c\xd9\xb6\x86\x32\x33\x67\xaa\x6d\x70\xcf\xcc\x18\xad\xd3\x98\x03\xd6\xb6\xfc\x3f\xf3\x16\x53\x72\x1b\xb4\x85\xf2\xb6\x7d\xe0\x67\xae\x7c\x3f\xf9\x9e\xa5\xb7\x2d\x13\xcf\x0c\xaa\xb7\xcd\xe8\x67\xe6\x6c\xb4\x2d\x12\xcf\x5c\xe9\x67\x32\x6e\xb1\x1f\xfa\x87\xff\xb4\x0d\x9c\x01\x7e\xb6\x0d\x1a\x21\xdb\x36\x60\xe6\x01\x51\x6b\xae\x3e\x9a\x7e\x24\x1c\x5b\xb8\xca\xed\x94\xc8\x43\x8d\xdb\x09\x05\x62\xdc\x13\x0a\xc4\xb0\xa7\x70\x5c\x7e\x22\xb1\xf0\x87\x6b\x7f\xc3\xf4\x37\x2b\x1e\x85\xd9\x5f\x6e\xd5\x62\x89\x17\xd4\x17\x82\xd5\x36\xf1\x92\x04\xb6\x0b\x83\x76\xe7\x11\x80\xd8\xa1\xc2\x45\x81\xfa\xb6\x4d\xdf\x46\xa6\x77\xa8\xdb\xd1\x0e\xfb\xdf\xa7\x8a\xa3\xdf\xb6\x8e\x3e\xd8\xac\xf6\x54\xe0\xcd\xca\x9f\xc6\x33\x23\x61\x32\xce\xb1\x41\xcf\xfe\x7e\x30\x99\x37\x80\xc0\x1c\x5e\xa9\x27\xd0\xec\x9b\x7a\x0d\xb8\x71\x3f\x98\x71\xe2\xf1\x81\x8d\xec\xcf\x7b\x62\x1f\xc0\xeb\x9e\xd8\x07\x3f\xaf\xd8\xd0\xf9\x64\x33\xd8\xc1\xc1\xeb\x9d\xdd\x87\x8c\x76\xb0\xe5\x80\xee\xf4\xee\xfe\xd0\x4b\x2f\x7c\x53\x78\xae\xfc\x9d\xb9\x74\x56\x92\xbe\x13\xcb\x72\xdf\x6a\xee\xcc\xd0\xed\xde\xdd\x22\xe6\xb1\x51\x12\x9b\x71\xee\xfd\x64\xa7\xa1\x36\xbd\x7b\xd2\xe2\x65\x6f\xde\xb0\x2d\x27\x23\x2d\x67\x05\xb8\x98\x54\x9c\x3f\x58\x6d\x0f\x6c\x6a\xfe\x22\x20\xa1\xfc\x7d\xa3\xc1\x16\xe7\x58\xe0\xf9\x48\xc9\x79\x09\x6e\x05\xb6\x8c\xc3\x33\x0b\xc1\x1f\x29\xce\xdf\xc1\x8b\x5d\x83\xfb\x03\x91\x25\x63\xcc\xc9\xa3\xca\xd4\xc0\xed\xd1\x62\x57\xf9\x65\x78\x4e\x59\xfc\xf8\x70\x1e\xd9\x84\x71\xbe\xce\x66\x37\x59\xb8\x1c\x7a\xe6\x34\x2f\xd4\xa8\x9c\x41\xd8\x93\x31\xd3\x01\x2a\x9c\xe8\x0a\xd9\xc3\x7a\x66\x87\x81\xb2\x9f\xa8\x08\xd9\x23\x7d\x76\x67\x93\x7c\x49\xbe\xd0\x1b\x44\x37\xbb\xdf\xe7\x6a\xbf\xce\xe6\xfc\x49\x66\x77\x93\x87\xd5\xb4\xc6\x26\x3d\x13\x8b\xa6\x02\xce\x33\x1b\x72\x65\xf3\x97\x81\x3d\x37\x7e\x59\x7c\x16\xbf\x9c\xfc\xc2\x04\x9e\x4d\x18\x6a\xe6\x94\x3d\x68\xca\x55\x66\xfa\x6c\x5d\xa0\xf6\xea\x73\xfe\xf1\x55\xe4\x17\xcf\x96\x2f\xaa\x02\xc6\xb3\x05\x8c\xea\xa9\x78\x54\x93\x0b\xcc\xf7\x59\x7a\x5b\x20\x02\x0f\xb3\x2f\xb3\xd9\x1c\x8f\x4b\xeb\x7e\xb6\x7e\x7c\xb5\xa3\xd9\xfe\xdc\xcf\xd3\xe7\xbd\xfd\x03\x8d\x39\x3f\x9b\x98\x97\x0e\xd9\x7b\x36\x2e\x15\xf1\xea\xf9\xb0\x74\x94\xdb\xfc\xe0\x05\x6b\xd8\xdc\xf2\x03\xf5\xae\x09\x54\x7a\x3e\x0c\xa8\x9c\xf4\xe0\xf7\x2a\x12\xbc\x07\x5c\x2c\x0b\xe2\xf4\x80\x8b\x75\x2d\x7f\xd9\x28\xbe\x92\xd3\xc7\xff\x55\x97\x80\xc4\x03\x56\x16\x87\xf6\x81\x00\xb6\x83\x93\xf0\xa0\xb1\xff\xec\xe0\x64\x6e\xf2\xc5\x07\xf5\xbd\x1e\x83\xb9\xe1\xdf\xaa\x47\x7c\xa6\xa6\x0a\x92\xa0\x92\xa4\x12\x10\x47\xa3\x5f\xd0\xd3\x47\x9b\xa3\xba\xc3\x73\x15\x80\x09\xca\x3f\x9b\x67\xe6\x0e\x92\x3e\x3a\xc3\x3a\x72\xf9\x83\x4e\x5f\x94\xb9\x1f\x75\x79\xec\x8b\xf9\xb9\xf4\xe6\x4d\x3b\x43\xea\xce\x6e\xec\x56\xb5\xca\x21\x68\x6e\x86\xf4\x64\x3e\x5a\x1e\x7f\x7e\x35\x9c\xa5\xbf\xcc\x3d\x7e\xa7\x2f\x04\xf5\x32\x5d\x0b\x82\x7a\x51\x63\x78\xf0\xc2\x15\x4c\x06\xf9\xd9\xc4\x36\x75\xd7\xb2\x25\xc6\x52\xdc\x99\x87\x9d\x81\x66\x3f\xcf\x49\xb7\x00\xe2\xc1\x3c\x5b\xfd\xfb\xc6\x84\x85\xbc\xf5\xbc\xa8\x21\xb0\xa8\xf7\x50\x63\x3c\x78\xde\x87\x58\x36\xf0\x6e\x5a\x51\xd1\x10\xf3\xbb\x65\xcc\xba\x09\xca\x37\xe4\xf0\xc5\xd2\x80\x1b\x2e\xbf\x9b\x9e\xd7\x04\xef\x78\x37\x41\x2f\x79\xd8\xd9\xd8\x7f\x4f\x0e\xb8\x61\xd0\x38\x03\xef\x96\x46\x6b\x46\xc4\x7a\xb7\x30\x5a\x32\x62\xd2\xbb\x65\xd1\x52\x96\xfd\x5c\xfb\x9b\xe4\xf7\xf7\x7e\x86\xaf\xbd\x07\x07\x31\xc6\x7d\xf7\x33\x8b\x7e\xb7\x5e\x59\x15\x8b\xde\x2d\xbb\x96\xd4\xfd\xfb\x3e\x93\x8b\xe3\xf6\x6e\x3a\x58\x33\x6c\xf3\xdd\x0a\x4c\x55\xbf\x78\x71\xe3\x15\xe7\xbc\x45\xa7\x32\x9c\xdb\x16\x61\x6b\x81\x82\xbc\x9b\x84\xd5\x92\xed\xe7\xe4\xd9\x6f\xae\xfd\x7d\xf5\x9b\xbd\xb7\x0b\x2d\xf2\xdd\x1c\xac\xd6\xe6\xf3\xde\x90\x04\x55\x79\xf1\xdf\x65\xc4\xd4\x77\xcb\x45\x65\x82\xf0\x6f\xde\x38\x8a\xc9\x31\xbf\x9b\x42\x66\xb5\xe8\x17\x77\x5d\xc0\x6a\x6b\x51\xb5\x73\xa8\xde\x0c\x4e\x81\xf9\xef\xa6\x9b\xb9\x36\xfb\xfc\xfc\x4a\x8f\xde\xad\x68\xd5\x2e\x4c\xf2\x86\xa7\x67\xe0\xdd\x12\x74\x4e\xc3\xb1\xf6\x3c\x87\x6b\xc4\xf6\xb2\xdc\x23\x4c\x2f\x0b\x1e\xf9\xe2\xc1\xc3\x7c\x95\xdf\xe2\x29\xf3\x9b\xbf\xd3\xb8\xb7\x40\xe3\xe0\x2a\xef\x16\xbf\xab\x12\xf2\x5b\x3a\xcf\xac\xa5\x0c\x9e\xed\x67\xd3\x9b\xce\xc9\x79\xb1\xdb\xd4\x26\x70\xcb\x5e\x00\x9e\xdf\xfc\x6e\x25\xb0\xe2\xc4\xcc\x2f\x9e\xbb\xe6\x22\xb7\x24\x5f\x17\x74\xe7\xc5\x6f\xb7\xa2\xed\x66\x47\x78\xc3\xf2\x8b\xd7\x2e\x8b\xf9\x35\x41\x40\x19\x78\xcb\x0d\xa5\x89\x64\x5b\x0d\x28\x4a\xc6\x2f\x3a\x3a\xae\xa9\xfc\x6e\x8d\xa0\x68\x6f\x78\x6b\x87\xe0\xda\x76\x80\xac\xcc\x61\x2b\x0a\x2d\x15\xfb\xd9\x0b\xc0\xee\x94\xdf\xba\x11\x1a\x43\x74\x7e\xeb\xa6\x96\xb3\xd9\xff\x9e\x7f\x76\x9e\xf5\xfe\xf1\xd5\x70\x58\xe4\xb7\x3e\xfb\xb9\xfb\xfd\xcb\x33\x63\x6d\x71\xb8\x54\x78\xe1\xbb\x95\xde\x32\x45\xd6\x86\x86\x0d\x05\x78\x5b\xd9\xdf\x8b\x40\x0d\x22\x77\xf8\x77\x38\x9c\xf3\xd9\x8c\xbc\x1c\x50\x89\xb7\xed\xf9\x37\x37\xa9\xed\xf9\x77\x11\xb1\x2d\x9e\xfd\x66\xcf\xbf\xbb\xf1\xb8\xe8\x8a\x7b\x81\x07\xa1\x4b\x31\x70\xd0\xcd\x69\xff\xc0\x3f\xfa\x79\x41\x14\x60\x22\xff\x86\x00\xbe\x5a\xdc\xfc\x46\x95\x09\xd1\xf8\xdd\x42\x59\xee\xcd\xef\xeb\x5e\x23\x04\xff\xdd\x42\x59\xc1\x84\x98\xdf\x2d\x77\x95\x2a\x52\xe2\x5d\xa8\x92\xc8\xb7\xef\x05\x04\xa2\xf4\xb5\x29\x87\x80\xdb\x02\x59\xa9\x02\x7d\x4b\x64\x39\x8d\x6f\xa5\xbb\x77\x4b\x6b\x65\x7a\x0c\xb6\xb0\x56\x46\x8c\xf8\xec\xbf\x17\xff\xbe\xb1\xab\xc3\xf6\x31\x86\x6d\xa5\x90\x67\xec\x58\x0b\xd9\x12\x6b\x58\x2a\xe2\x3b\xde\x06\xe5\x8c\x77\xec\xe5\x2d\x67\x85\xc7\x6e\x09\xca\xb1\x97\x17\xa0\xc7\x5f\x17\x74\x4e\xb7\x03\xec\xfc\x1d\xeb\xc7\x57\x0f\x7a\x36\xf6\xea\xd6\x61\x5b\x25\x3e\xbf\xdf\xe7\xfb\x10\x65\xf5\xd5\xc5\xf3\xf3\xe3\xab\x67\xb8\xf2\xbb\xc5\xb8\x2c\x83\x7a\xe7\xd6\x67\xa3\xed\x4c\xa0\x35\xdf\xcf\x8d\x5e\x4d\x1a\xb6\xa5\xa6\x9c\x1d\x77\x56\x9c\xad\xb6\x45\x82\x43\xa1\x79\xb1\x9f\xf6\x65\x3f\x7b\xfe\x2a\x1d\xef\xdc\xf4\x29\x50\x70\xe2\x6c\x8b\xfe\xb7\x02\x12\x28\xb8\x25\xac\x5e\xa4\x67\x5b\x23\xeb\xb1\xcd\x5b\x23\xcb\xcb\x23\x87\x8f\x62\x7a\x74\x35\xc2\xfa\xfd\xd2\xac\xc5\xf7\x2b\xfd\xf8\xea\xdd\xf9\xe0\x91\x0c\x3a\x8a\x4b\xb2\x4a\x63\x30\xf2\x68\x38\x7b\x17\xf0\xf7\x28\x6e\x11\xac\xa4\xe5\xdf\xc7\x8f\xaf\xae\x31\xe4\xdd\x02\x58\x1f\xa2\x2f\x0e\x8c\x2a\xcd\x5b\x7b\xfe\x8a\x0f\xef\x96\xc5\xf2\x8c\x3e\xf7\xf1\xc6\x21\x97\xdf\x75\xc3\xeb\xd8\xbb\x2d\xa3\xe5\xe2\xfe\x6e\x11\x2d\x37\xf9\xcc\x16\xd1\xf2\x92\x4c\xe8\xec\x48\xa2\xf2\x56\x2a\xcb\xb4\xf1\x96\xdd\x4a\x30\xb8\x2d\xba\x95\x2a\xd3\xd9\x4a\x78\x59\x1e\x03\xa4\x38\x8d\x45\xef\x67\xfc\x2a\x9b\xbc\x5b\xa0\x2b\xd3\x0d\xde\xf2\x5c\x69\xd2\x92\x2d\xce\x8d\x24\xb2\x6e\x69\x6e\x24\x69\xe4\x47\x0d\xcd\xb6\x5b\x25\xee\x4a\x04\x5b\x94\x2b\x55\x24\xf8\xbc\xd0\x21\xfa\xc1\x0f\x53\x45\xb2\x2d\xe1\x8d\x24\x42\xa3\xe1\x26\x64\xcf\x17\xf9\xae\xc8\x20\xce\x0a\xa2\x33\x9f\x73\xcf\xbf\x45\x5b\xce\xb7\xf4\x6f\x8b\x80\xb9\xb9\xde\x13\x04\x72\x53\x4f\xbd\xb5\x3e\xef\x03\x10\x82\xc7\x89\x75\x5c\x84\x3e\x23\xb2\x83\xe7\x1b\x3d\xd8\x67\x94\x59\x64\xe4\x17\x71\x51\xa9\xea\xd5\x20\x2f\x6f\xd9\xd2\x62\x39\x64\xa6\x5b\x58\x1c\x35\xbe\xd1\x87\xc2\x9c\xd1\xad\x6b\xf6\xfb\x0d\x67\xc5\xe3\x17\x45\xa7\x28\x92\xbd\xf8\x8b\xba\x18\xa4\xaa\x2d\xf6\xa1\x69\x57\xb9\xf2\x96\x33\x47\x95\xf8\x6f\x31\xb3\x84\xe4\x84\xc9\x64\x49\x18\xb7\xc4\x99\xb5\x93\xbd\x37\x8c\x40\xac\xb9\x0b\xa2\x5d\xff\x86\x9e\x15\x2d\xee\x7b\xec\x72\x6c\x49\x6d\x96\x8d\xa5\x05\x43\x3b\x7e\xee\x82\xa1\x1d\x76\x57\x30\x94\xf7\xee\x5f\xb1\x91\xc5\xc7\x5a\xca\x87\xdf\x60\x83\xda\x0a\x50\x39\xb6\x0c\x33\x61\xa7\x05\x13\xf9\x56\xc6\x7c\xc1\xe6\xb9\x15\x8a\x82\xc1\x7c\xeb\xbf\x9d\x97\x4b\xa5\xb7\xf2\x72\xdb\x2f\x7d\x85\x0d\x6a\x13\x87\x62\xb4\x9e\xd4\xaa\x1c\x2f\xd4\x81\x7e\x5f\x26\xc8\x3c\x30\x19\x75\x4c\x25\x25\xef\xc1\x67\xda\xc4\xa7\xe4\x2d\x8c\x4c\x78\x79\xc1\x14\x38\x89\xd2\x29\xd8\x02\x27\xc1\x6b\x25\x33\x3f\x42\x76\x0a\x4e\xfb\x89\x20\x56\xf2\x16\x46\x26\xc1\x70\x25\x6f\x61\x64\xf4\x7c\xf0\xfc\xd9\x7f\x6f\xf6\x73\xf2\xcd\xe2\xf9\xe2\xd9\xb6\x98\x23\x8b\x7f\x7f\xf8\x7b\xe7\xf9\xe5\x99\x7e\x2a\xf3\x6c\x3e\xab\x3e\x33\xff\x2d\x8b\x4c\xc2\xed\x0a\x26\xc9\x89\xbb\xa3\xe4\xf0\x17\x2c\x5e\x1a\x16\x8d\xc5\x24\xa0\x7a\x47\x1d\xbe\xec\x1f\x52\xf7\x99\x9e\x00\x51\x5e\xf4\xd4\x59\xcd\x02\x12\x8d\x19\xa1\x7a\x1e\x55\xd0\x2d\x40\xd1\x7d\x1e\xfe\x60\x0b\x60\xc1\xe6\xe2\xb9\x9d\xc8\x1a\x25\x6f\xc2\x97\x8e\x3a\x59\x28\x36\xc5\xa3\x4e\xbf\xba\x6c\x0e\x38\x36\xed\x9b\x25\xf9\x15\xe0\x88\x99\xbf\xce\x9c\x1f\xb0\x28\x1e\xd5\x5f\x50\x50\x8f\xba\x98\xfb\xa6\x54\x13\x83\x62\xc9\x1f\xa1\xcf\x6e\x7d\x80\x7e\xb3\x35\xd0\xef\xcc\x0a\x4a\x45\x04\x66\xc9\x1f\x86\xeb\xb6\x05\xfa\x1c\x00\x3c\xc6\x93\x30\xce\x92\x5f\x24\x44\x71\x17\x0f\xea\x3c\xaa\xcf\x38\x37\x40\x01\xbd\xa8\x09\xef\x64\xc1\x8f\x3a\xa1\xcd\xa5\x10\xb0\x98\xe6\x96\x9c\x8b\xc6\xd7\x34\xc1\xdc\x42\xc0\x62\xc2\x4f\x5a\x0a\xd6\xf6\x34\xb7\x9c\x58\x74\xbe\xa6\x39\xed\xf9\xf4\xc5\x9e\x2f\x5f\x1c\xff\xc6\xce\xbf\x27\x5c\x12\x5e\x04\x3f\x4a\x8d\x79\x31\x48\xe2\x78\x81\x6a\x25\x39\xfa\xf2\x23\x7c\x0a\xe0\x5a\xd1\xee\x8e\x4e\x5b\x4a\xd2\xa6\x46\xeb\x8c\x35\x0c\x04\x2b\xd9\xd5\xb2\x28\x1c\xb9\x69\x1d\x2c\x0a\xe3\x4c\x5a\x9c\xf3\xb2\x75\x8f\xd1\x1c\x62\xeb\x1e\xa3\xb1\x49\x78\x6f\xe7\x01\x40\x0b\xce\x9c\xe6\x68\x5b\xaf\x48\x69\x25\x16\x51\x40\x5b\xce\x0b\xae\xdb\xa4\x90\xbe\x49\xf7\xc6\x90\xcc\x70\xc5\x11\xe8\xa9\xb0\x22\xa4\xfa\x52\x50\x0f\xd2\x2a\xdf\x49\x6e\x05\xa7\xef\x3c\x38\x73\x85\xb8\xbf\xb4\x0a\xeb\xe2\xc0\x1e\xd5\x71\x2e\x27\xe0\x57\x4e\xb3\xb0\x3d\xc4\xf3\xa5\x05\x4d\x2c\x9c\xc7\xa3\xfa\x8c\x8d\x8f\x33\x5b\xaa\xb3\x11\x5e\x5b\xd8\x1f\x6d\xfa\xd1\x87\xf9\xb3\xc8\xca\x0e\xba\x9b\x5b\xa8\x9f\x68\x88\xa5\xec\xf3\x3b\xda\xa2\x6d\x13\x10\xf6\x4a\x10\x50\x5a\x20\x7b\x69\xee\x82\x5b\xd5\x18\x1b\xfa\x52\x90\x2e\x13\x4e\xf7\x52\x06\x5e\x31\x0e\x64\xd9\x12\xdf\xe8\xf1\x0c\xd9\xce\xc0\x71\xe8\x13\xf1\xfb\x97\x45\xd0\x11\xa1\x1f\x09\x1f\x78\xc1\x85\x3d\x0f\x57\xbd\x44\x2b\x00\xb5\x18\x39\xfb\x0d\x58\x25\xcc\x96\x88\xdb\x6d\xc0\xe1\x12\x3f\x3f\x74\x04\xb9\xc4\x6b\x30\xba\x88\xa4\x6d\xdc\x59\x7c\x20\x48\xd3\xbf\x43\x77\x84\xd2\xe9\x24\x68\x7b\x82\x2e\x19\x48\x9e\xb6\xf5\x1b\x9d\x8e\xb4\x85\x65\x2b\x50\x97\x02\x9f\x46\x70\x2e\xe5\x82\x66\x41\x80\xf0\x98\xcf\xc3\xcd\xbd\xa0\x14\x1e\xbd\x0b\x10\x25\x26\x74\x63\x00\x2e\xb4\xbd\x3d\x9f\x00\xbe\x1e\x4a\xef\xa0\x73\x35\x56\xb9\x30\xef\xca\xd1\x1f\xb8\x0f\x4a\x35\xc2\x61\xa5\x83\x97\xcb\x5f\x3a\x2f\x0f\x51\xd5\x89\x17\xe2\x9f\xaa\x28\x58\x89\x7f\x1a\x79\x4b\xd6\xa5\xce\x90\xee\xe9\x0d\x91\x75\x60\x97\x28\x95\x20\xf0\x4e\xec\x63\xa9\x18\xbe\x06\x8e\xcc\x52\x11\x5e\x66\x81\xaa\x54\x42\x56\x06\xf6\x8b\x52\x0d\x1d\x41\x36\x29\x2d\x69\x46\x62\xa7\x1a\xca\xb1\x26\x98\xd2\x08\x86\x1c\x44\x6c\x96\x86\x19\x7a\x10\x00\x57\x9a\x32\x24\xd1\xce\xa5\x61\x09\x1c\xd8\x86\x4a\xdb\x12\xd0\x7e\xd9\xe3\x34\x40\x35\x0a\x1b\xdf\x6e\x5c\xb7\x47\xe7\x97\x17\xe5\x99\x10\xe7\x82\x79\x7f\x6b\xd2\x7b\x71\x1d\x27\xfe\x4a\x5b\xb6\x2a\xbd\xd2\x01\x81\x13\xa5\x13\x56\x34\xea\x96\x14\x4b\xc7\x12\x3a\x2a\xe3\x74\xe4\xed\x81\xc8\x53\x3a\xc6\xb7\x21\x77\x19\x58\xd8\x47\xe3\x80\x0f\x2c\xec\xa3\x6d\x9d\xa4\x8c\xd1\x7c\xd9\x73\x1b\x53\x23\x1b\xc7\x6c\x00\xb7\xd1\x7c\x79\x30\x3f\x12\x23\x5f\xc6\xc3\x4a\x1b\x02\xce\x70\x09\x8d\xe9\x8c\xf7\xf6\x65\xf7\x36\xb1\x9b\x8d\xb6\xd5\xec\x32\xb1\x91\xc4\x31\x9f\x45\xd9\x1b\x9e\x38\xab\x9f\x41\x22\x67\x73\x6e\xcc\x7a\x76\x67\x00\x21\x9d\x1f\x62\xb6\x11\x96\xcb\xc4\x68\xba\xb0\x22\x94\xf9\x7e\x7e\x35\x00\x97\x05\x7d\xd7\x01\x5b\x16\xf6\xf3\xd1\xf3\x77\x5e\xd7\xb2\x08\x8a\x1b\x1d\x4a\xb5\x3e\x84\x89\x12\xf7\x50\x16\xf2\xf4\xe1\xca\x3f\xed\xf2\x65\x83\xfb\x23\x2a\x8c\xc4\x2f\xe8\xac\x03\x83\x50\xf9\x4c\x22\x1e\x15\x8c\x3e\x97\xbd\x41\x33\x3e\xc6\xa5\x10\xda\x53\x3e\x58\x3e\x07\x6e\xad\xf2\xc1\xf2\x39\x70\x44\x96\xcf\xc3\xc4\x31\x0b\x95\xcf\x5b\x44\xd3\x0d\x93\xf3\x70\x50\x16\xab\x7f\x60\xe0\xf5\x2d\x27\x61\x1b\x03\xd7\x67\x39\x09\xd1\x68\xd8\xc2\xca\x49\x2c\xe0\x20\xac\xae\x9c\xc3\x71\x10\xfe\x4e\xac\xf8\x83\xe0\xd3\x72\x72\xb8\x34\x80\x96\x73\xda\x06\x62\x72\x62\xfe\x1e\xc4\xc8\x95\x13\xa7\x5b\xf7\x10\x9f\xd8\x8b\xfb\x82\x3c\x9c\x97\x6d\x38\x1b\xe7\xcb\xb6\x7a\x9e\xce\x97\x28\x5c\x25\xc2\x8b\xe0\x88\xbe\x90\x75\x2e\x1c\x19\x03\xc5\xb3\x5c\xf4\x36\x16\x40\xbc\x30\x12\x0f\x99\xdf\x4d\xcc\xcb\xc0\x7d\x53\x6e\x04\xec\xb1\xfa\x1e\xe7\x2e\xe2\x05\x70\xbb\x2b\x34\x1c\xf1\xe5\x26\xf2\x72\x2c\x50\xe9\x46\x0a\x9b\x07\x02\xfa\x8d\x1f\x30\x28\xf4\x7d\x85\x31\x7e\x43\xea\xde\x04\x2e\x4d\x34\x9a\xf2\x70\x1e\x83\xdb\x3f\xc5\x49\x33\xe6\x63\x64\xbb\x12\xfe\xd3\xed\x0d\x19\xeb\x21\xa8\x73\x62\x4f\x28\x0f\x74\x6c\xa2\x67\x15\x5d\x29\xf3\x80\x56\x3c\x06\x1d\x12\x3d\x55\x70\x73\xa4\x79\x70\x6c\x1f\x63\x6a\x09\xa5\x2a\xd8\x9d\xd2\x14\xf7\xb4\x90\xf4\x05\x1d\xc3\x14\x92\x26\x61\x68\x05\xfb\x47\x0a\x59\x1a\xbd\x33\x85\xf8\x87\x82\x99\xaa\xb2\x9d\x4a\xd6\x4c\x2c\xe1\xbd\x6d\xc3\xb1\x7d\xef\x80\x41\xfd\xcd\x6f\xeb\x51\xfc\x6c\x0b\x99\xf5\x20\x60\x76\xa2\xe7\xd7\xc3\x50\x65\x22\xe5\x6b\xdc\x55\xa9\x7b\xd0\x6a\x50\xcc\xc4\xb4\x51\x0d\xbb\x9f\xf8\xa6\x6a\xaa\x2f\x2f\x9b\x8a\x54\xc3\xca\xf5\x49\xd7\x74\xb2\x6c\x08\x7b\x4d\xa7\x9f\x8d\xbc\x5f\xf0\x8c\xce\xbc\x65\xc7\x9a\x9e\xc7\x17\x7a\x7b\xed\x60\xc3\xa0\x12\xb2\x91\x26\xf4\xbf\xe6\xc3\xcf\x36\x5a\x57\x83\x6e\x2b\x5e\xbc\x9a\x63\xd6\x5b\xca\xab\x46\x2f\x4e\xd4\xe3\x9a\x6f\x5f\x2a\x9f\xe1\x60\x98\xc4\x86\xd7\x02\x3f\x9b\x58\x17\x2b\xa2\x5a\x9a\xd0\xf2\x5a\x88\x80\x98\x65\x0b\xac\xb5\x38\x37\x42\x90\x6b\x01\xe1\x27\xf1\xc4\xb5\x22\xd7\x4e\xb6\xb1\x56\x6f\xd8\xc4\x2f\x10\xa8\x49\xdc\x57\xad\x9c\xd9\x49\x78\x5c\xad\x9c\xd9\x49\x2c\x6d\xad\xde\x25\x40\x5f\xab\x15\x7b\xe2\x38\xb6\x9a\x52\x2b\x51\xb6\xb3\xc6\xcb\xc7\x97\xbd\x59\x15\xce\x30\x6b\xa7\x03\x6c\x08\x13\xfa\x5f\xeb\xe9\x44\x17\xd3\x11\xc9\xeb\x66\x95\xb5\x39\xd1\xb6\x89\x4b\x6d\xc4\x33\xce\x96\x8f\x6f\xe8\x65\x6d\xc8\xbb\x15\xff\x61\x6d\xc2\xa4\x01\xe1\x36\x02\x81\xf7\xc4\x1b\x81\xaa\x83\x60\xb2\xda\x4e\x87\x62\x12\x8d\x19\xad\xe4\x67\x0f\xe8\x83\xf1\xb4\x36\x69\x1f\x96\x96\xda\xa1\x15\xb3\x03\xad\x9e\xb4\xad\x83\x7f\x1d\x01\x74\x62\xa5\xaf\xdd\xc0\x6a\x62\x75\x6b\xff\xf8\xcb\xa6\x3c\xb5\xc7\x9d\xb2\x4d\x49\x6b\xff\xd8\x1b\x28\x37\xd8\x95\xd9\x37\xdf\xa9\xc3\xbb\x42\xf8\x4d\xea\x00\x7d\xe6\x48\x7b\xa2\xc3\x9b\x5d\x04\x5e\x54\xf9\xdb\xc4\xb1\x5f\x67\x62\x23\x08\x6e\xab\xd3\x9b\x47\x44\xfa\xd7\xa9\x4d\x1c\x45\xba\xce\x0a\xec\x71\x75\xd4\x89\x98\x32\x31\x92\xd6\x85\x29\x68\xa0\x23\xd5\xf5\x80\x17\xe8\x1f\x75\xc1\xd2\xe6\xda\xa2\x40\xfd\xa0\x56\x4d\x14\x8d\xfa\xc1\xd7\x3b\xa1\xbe\xf5\x83\x9c\x33\x91\xc8\xeb\x89\xe8\x5f\xb8\xad\x54\x4f\xac\x08\x13\x07\x73\x3d\x47\xc0\x7a\x77\x70\x22\x0c\x4e\xdc\x92\xf5\xbc\x1c\x87\x53\x73\xde\xf1\xcb\x9e\xdb\xf9\x28\x69\x6d\x21\xb3\x5e\x32\x55\x94\xfe\x7a\x65\x76\x01\x2f\x7e\xbd\x18\x74\xa1\x7e\xd7\xeb\xd2\x56\xc8\xb1\xbb\x08\xad\x5c\x07\x2b\xbd\x9e\xe4\x67\xfb\xe5\xe6\xdc\x2e\x7c\x94\xf5\x86\x76\x2d\x6c\x69\xf5\xf9\xbb\xa7\xad\x3e\x07\xfe\xc2\x78\x56\xd2\x63\x9d\xcf\x81\x75\x75\xd8\x00\x83\x52\xf3\xef\x78\xca\x92\x0d\x16\xf6\x6b\xff\x8e\xe5\x74\x6b\x66\xf5\x31\x8c\xb7\xfa\x8d\x44\x2f\x5e\xee\x1f\x5f\xa5\x71\x42\x9f\x03\xdb\xf5\xd6\x4f\xeb\x03\xfe\x0d\x09\xdb\x83\xaf\x0c\x8b\x42\x7d\x60\x48\xf8\xd3\xea\x93\x62\x7a\xb4\x46\x70\xab\x50\xa8\x67\x2b\xa1\x95\x28\xc0\xfa\x70\x01\xae\x17\x9f\x07\x0e\x32\x3b\xc2\xa1\x03\x1a\x3f\x09\x7b\xe3\xb2\xed\xc3\x72\xfc\x06\xcf\x79\x06\x37\x9e\xbc\x01\xb3\x5c\x5b\xd6\x0a\x4e\xa7\x79\xfe\x74\x4d\xd6\x07\x2c\x19\x04\xd2\xd4\x07\xd7\xd6\xc1\x71\x7f\xa0\x65\x35\x03\xfb\x07\x09\x5c\x47\x76\x7d\xb2\xc6\x63\xa0\x81\x34\x3e\x88\x3a\xa9\xcf\x66\xb0\xf5\x70\x52\x28\xa4\x5c\x7c\xaa\x4f\xd9\x42\x4e\x3a\xdc\x08\xdc\x55\xf8\x42\xeb\x53\x94\xf2\x05\x20\x08\x82\xc9\xb2\x3e\x9b\xb3\xe4\x25\x90\xb9\x5d\x86\x46\x56\x9f\x82\x0d\x7e\xf9\xf7\x37\x1c\xa9\xbf\xad\x4f\xd5\xc1\xca\x68\xb8\x9c\x90\xdb\xeb\xc3\xf1\xaa\x84\x5a\xd6\x87\x28\xb4\x5e\x59\x50\x15\x4f\x8b\x2f\x53\x91\x95\x6e\x2b\x2e\x52\x91\x60\x2b\x9c\x85\x08\x8d\xfa\x54\x8f\x06\xd3\xab\x44\x02\x38\x6d\x22\x4c\x47\xae\xe9\x3b\x4a\xf8\xb4\xf6\xe3\xab\x57\xe1\xd6\x84\x02\x3d\x73\xb5\xab\x41\x43\x9e\xcd\x45\x6b\x12\x97\xb9\xd8\x55\x44\x1c\xee\x75\x19\x5e\x51\x1f\x64\xcb\xe4\xe9\x79\x5a\x08\xd2\x3c\x33\xc7\xe6\xdf\xb1\x24\x67\x46\xe8\x19\xd7\xa4\xcf\xc5\xc6\x34\xd8\x72\xc7\x7e\x01\x70\x5d\x54\xa8\x00\x6b\x80\x3b\x1c\xea\x67\x60\x24\x9f\x8c\xcd\xfd\x8c\x85\x15\xb0\x3e\x5e\xbc\x70\x52\x44\xb0\x54\xec\xf0\xf5\xe1\x12\x46\xf7\xa8\xce\xcc\x92\x00\xd6\xfc\xd5\x8f\x5d\x9f\xd9\xc1\x4e\xff\x8e\x29\x1d\x0a\x40\x88\x48\x1e\x62\xd1\x96\x7e\x6a\x72\xfb\xe6\x89\x03\xde\xe7\xeb\xa7\x0f\xbc\x3e\xc8\x9f\x35\x36\x9c\x28\x92\xe4\x33\x4c\x2e\x7b\x5e\xd0\x00\x97\xdb\xad\xa3\x42\x94\x5d\x5a\x63\xe8\xd4\x58\x11\xec\xb8\x95\x58\x91\x9c\x0e\xf7\x78\xeb\xe9\xf5\xe7\xf3\xe2\x19\xc0\xe0\x9e\x38\xa0\xca\x0f\x36\xba\x04\x55\x7f\x64\x66\xb8\xe6\xea\xb3\x99\x8c\xe1\x10\xf5\xf9\x00\x0b\x91\x08\x51\x59\xba\xfb\x7c\x9c\x86\xdf\x77\xfc\xdd\x4c\x09\x4d\xb1\x4f\x60\xba\x35\x99\x72\x0c\x06\xc6\x65\xb0\x86\x7d\xbe\xce\x94\x97\xcd\x28\x6a\x12\x97\x36\x5f\xaf\x72\xc7\x67\x8b\xe2\x95\xc8\x8d\x1a\x91\x1f\x81\xe2\xe7\xe7\x67\xd4\x40\x7d\xce\xf3\xd7\xb0\x9d\x6a\x48\xc8\x50\x36\x7b\xb6\x1c\x9c\x8b\xe3\x6d\x6d\x2f\x37\x01\x70\xb9\x1e\x5a\x2b\x92\x07\xbc\x37\x81\xaf\x04\xa7\x56\x02\x42\x6a\x4a\xfe\x7d\xe0\x94\xb6\xf1\xb4\x81\xad\xb1\xe5\x77\x1b\x9c\xc6\xb6\xf0\x7c\xd3\x98\x29\x5d\x6c\xae\x58\xb5\x95\xd6\xd2\xc4\x62\x62\x85\x6b\x91\xa0\x6f\x99\x25\x27\x49\x04\xf7\xd6\x02\xac\x5b\x84\xcb\x5c\xc0\xa8\xc4\x8e\x54\x62\x53\x2b\xa1\x23\xa5\x65\x3b\x5a\xb8\xda\x98\x90\xaa\x38\xd1\x92\xf5\xe1\xca\x5a\x8a\x9d\xde\xf2\x5f\x17\x48\x37\x33\xca\x7e\xf3\xf2\xcc\x27\x4f\xcc\x88\x1f\x1e\x23\x41\x58\xce\xd6\x8e\x77\x47\x6c\xc4\x53\x88\x48\x60\x7a\xcf\x06\xd8\xe1\x9e\x20\xe4\xa4\xce\x08\x8f\x27\x34\x3e\x3a\x9d\x13\x13\x7f\x80\x4c\xb6\x5b\xc2\x5c\xaa\xcf\x81\x0f\x34\x57\xb7\x42\x0a\x79\x5e\x29\x55\xe3\xab\x37\x43\xc4\x99\x20\xb2\xf2\x4a\xa2\xdc\xdb\xfc\x8a\x75\xbc\x5d\x71\x8b\x67\x81\x56\xbf\xa5\x73\xef\xa6\xa0\x19\x69\xe9\x79\x2f\xd6\x6e\x67\x1e\x54\x91\xf3\x7d\x9c\x25\x70\x7f\xa5\x1d\xa0\x2a\x41\x34\xb3\xc0\xb5\x08\xa2\x49\xf8\xf3\x2a\x41\x34\xbb\xc5\xe4\x05\x13\x67\xfc\x10\x20\x5a\xbc\x2c\x66\xe9\x0f\x18\x9e\xc0\x29\x22\x5f\xf6\x10\x76\x1b\x0c\xdd\xaf\xb0\x10\xc0\xdc\xdf\x9f\xf7\xd8\x79\x06\xc3\x10\xec\x89\x7d\x29\x04\x75\x55\x62\x5f\x52\x07\x2f\x88\x7d\xc9\x89\x2b\x22\xf5\x4d\xcd\x21\xe8\x35\x69\xcd\x6a\x36\x97\x98\x2c\xdb\x04\x05\x65\x90\x64\xe8\x17\x0b\xdf\x22\x7e\xc5\xc3\x50\x09\x74\x29\xd8\x74\x2a\x41\x26\xbb\x01\xeb\xc8\xb2\x21\x4e\x19\xe1\x24\x85\x3b\xc1\x95\x70\x92\x8a\xbd\xa1\x1a\x4e\xb2\x70\xa5\x54\x62\x48\xf6\xe0\x7e\x85\x8f\x13\x12\xf7\x06\x5b\x76\x70\xd9\x32\x47\x88\x28\x92\x3d\x77\x66\xc8\x1d\xf0\xe6\xe0\x58\x82\x8b\xe0\x29\x1f\xce\x96\x7f\x0f\xe0\xfa\x42\x18\x86\xb0\xc5\x10\x8c\x3d\xac\x1a\x46\x32\x08\x69\xad\xc6\x8e\x24\x65\x05\x02\x46\xf6\x0b\x4d\x60\xdf\x07\xe8\x47\x64\x48\x5e\x20\x0c\x91\x21\x35\x20\x02\xc3\xee\xca\xc6\x86\x86\xd4\x02\x7d\x21\xee\x23\xa1\xb8\x56\xe2\x3e\xca\x31\x6c\x81\x57\x02\x3c\x24\xee\x23\x7b\x04\x23\xee\xc3\x5d\x6a\x31\x0d\x1a\x37\xce\xa6\xa0\x6d\x4a\x11\x90\xb9\x88\xfc\xa8\xf6\xc4\x55\x06\x88\x10\x1a\x78\x25\x52\xaf\x12\xf9\xb1\x97\x6a\x4f\x0b\x21\xd1\x1f\xe0\x67\x08\x1a\x84\x7e\x54\xee\xc7\xd5\x57\x8e\x5e\x1d\xcd\x73\xed\x60\x9b\xbe\xb4\xee\x60\xd8\x15\x86\x1d\xf5\x20\x30\xf4\x14\x2c\x1d\xba\xf5\x6a\xcc\x20\x62\xae\x12\xb5\x51\x15\xe7\x89\xda\xd8\xed\x81\x47\x37\xd6\x04\xa6\x41\x08\x46\x4e\x4a\x1d\xc4\x60\x54\x65\x5d\x62\x30\xaa\x22\x3b\x31\x18\xfb\x23\x9a\x63\xc3\x52\x1d\xc6\xc0\x50\x9a\x9b\x37\x20\xf5\x88\xae\xc4\x54\xec\x06\xbe\x28\xbf\x64\xbb\x65\xe5\xc5\xd6\x1c\x45\x44\x13\xa3\x27\xb4\x20\x10\x31\xb1\x5b\xb3\xf4\xa9\xd8\xec\x6e\x60\x1e\x69\xc8\x19\xc4\x4c\xa4\x85\xdf\xaf\x1a\x34\x31\xb2\xd0\x9a\xcc\x04\xbd\x8a\x48\x89\x8a\xdd\xa6\x1a\x29\x91\x14\x29\x08\x95\x08\x0d\x9d\x50\x89\xca\x4d\x91\x4a\xa8\xc4\xfe\x88\x35\x4d\x03\xff\xbe\xf3\x08\x57\x02\x29\x76\x2b\x67\x06\x18\xd1\x43\x88\xa4\xd8\x3f\xb0\x0d\x5b\x2a\xa9\xea\x37\x84\x52\x4c\xa2\x8b\x2a\xa1\x14\xfb\x23\x5f\xf0\x28\xbb\x55\xcb\x95\xb0\x76\xfc\x88\x55\x61\x98\x00\x8a\xaa\x5e\x4c\x00\xc5\x6e\x6d\xb7\x2c\x4b\x44\xc1\xad\xd0\xa5\x8d\xcb\xc3\xe1\xb3\x74\x44\x32\x46\xd8\x44\x4a\x9e\x7e\x5d\xc4\x92\x34\x14\xe4\xe2\x59\xfe\x9c\xe0\x22\x2b\x42\x16\x19\x36\x46\x16\x69\x70\x15\xc2\x17\xd2\x92\x84\x9d\xb1\x69\x34\xde\xda\x6c\x6e\x12\x24\xe2\x11\x96\x64\xf9\x54\xa9\xb3\xf5\xe9\x22\xdc\x03\xd4\xfe\x4a\x26\x8b\xfa\x9e\x08\xdc\x3e\xab\x96\x0a\xe5\x8b\x53\x0a\xff\x25\xac\x20\xc5\xaa\xaf\x40\x05\x3f\xea\x76\xcb\x80\xd7\xf4\x05\x30\x13\xb7\xaf\xed\xc6\x60\x82\x22\x3d\xbb\xe4\xb3\x4e\xf1\x12\x19\x3c\xfd\x17\xce\x57\x8f\x8d\xe2\x88\x87\xe0\x92\x83\xc9\x77\x6e\x8e\x8d\xd0\xb9\xd9\x6e\x17\x7e\x07\x44\x18\xfb\xd6\xd8\x24\x52\xdc\x88\x4b\xd2\x49\xae\xd4\x4f\x09\xdd\xcd\x16\x4b\x7c\x6f\x68\x87\xa8\x7e\x73\x82\x64\x02\xb7\xf3\xf3\x68\x6d\xd9\xa4\x74\x89\x87\x02\x89\x9b\xb7\x05\x92\xd1\xdd\x98\x07\x01\xce\xc6\xca\x23\x4a\x30\xef\x96\x47\xca\x88\x06\xf2\x2f\x61\xf3\x10\x62\xe3\xd0\x0f\xbd\x0a\xd9\x57\xc4\x46\x06\x79\x11\x2f\xca\x70\xe2\xaf\x4b\x45\x5a\x7d\x5f\x34\x32\xcf\xc2\x16\x2f\x4a\x5d\x36\x07\xb3\xbb\x0d\x26\xc1\xd5\x4c\x4a\x33\x7d\x7c\x1f\xab\x03\xe3\x43\x82\x90\x7e\xbe\x80\x5f\xf4\x7a\xb9\x8e\xb6\x85\xa4\xe6\xad\xc8\x03\xc5\xb5\x11\x9a\xb1\xf1\xab\xf0\x82\xf6\xd1\xfc\xc1\xb1\x27\xcf\xc3\x31\x2a\x2f\xa8\x1f\x5b\x5a\x6b\x07\x06\x01\x85\xfa\x76\x1c\xb2\x61\x7f\x50\x80\x68\xb6\xd8\x30\x87\x18\xb6\x03\x01\xa2\x13\x33\xd7\x8e\x2d\x41\x34\x14\xf9\xc6\xad\xcc\x3d\x75\x06\x4f\x20\xc5\x46\xaf\x46\xc0\x48\x89\x49\x25\x45\xe8\xcd\xb2\x1a\x97\x33\x2b\x81\x05\x8d\x2b\x99\x69\x75\x7b\x8a\xd9\xfa\x83\x9c\x70\x32\x11\x25\x8b\x6e\x6b\xb1\xc5\xbf\xcb\x9e\x37\x6f\x6a\xde\xd9\x1c\xd9\x05\xa6\xdb\xbe\x9c\x09\x2e\xd5\x69\xbf\xf0\xcb\xf4\x9d\x79\xaf\x1d\xd9\xa5\xd0\x1b\xfe\xef\xe2\x5c\x88\xbc\x25\xc9\x53\x3b\x88\xbc\x5d\x0d\x28\x66\xf7\x00\xb8\x67\xa5\x4b\x60\x95\xa5\x6c\x85\xc9\x67\xd0\x3e\x1a\xc0\xc2\xe2\x23\x17\x65\xa7\x27\x61\xc7\xfe\x5d\xc9\xc9\x81\x37\xfb\x3c\x04\xa1\xbe\xc2\xe2\x0e\x94\x40\x56\x86\x56\xf6\x49\x0e\xf7\xd3\xc9\xc4\xb3\x81\xa6\xb6\x08\xb8\x01\x11\x22\x4c\x8a\x1b\x8b\x45\xb1\x0f\xf1\xad\xba\x6a\x36\xb0\xa2\x72\x75\x9f\x63\x08\xba\xaa\x48\x0a\x93\x99\x2b\xc9\x0c\x76\xa3\xb2\xd2\xc1\xcc\xab\xf7\xf9\xfc\xbb\x98\x57\x1c\x2e\xb0\xcd\xe1\x14\xa3\x86\xbf\x40\x17\x13\x13\x6c\x50\x1d\xff\xde\x02\x91\xe8\xb7\x01\x72\x37\x1c\xbb\x03\xe6\xee\x76\xb4\x00\xb9\x2d\xa4\xbd\xae\x55\x31\x65\x30\xde\x16\x4d\xca\x11\xad\x5f\x27\xc2\x47\x5d\x78\x16\xd6\x44\xcc\xe9\x8a\xad\xe9\x31\x3a\xed\xbb\x16\x5b\x66\xd2\xd5\xb0\x8b\x2f\xe2\x71\x01\xec\x5d\xf9\xa0\xd8\x84\xed\x1c\xf6\x25\x86\x16\x40\x3a\xdc\x03\x5a\x84\x3c\x52\x01\xd7\xf0\x52\xac\x1f\x11\xe7\x9d\x99\x30\xb2\xc9\x21\x4c\x86\x3e\x34\xc6\x0e\x5b\xa2\x5b\x3e\xdc\x03\x9f\xb9\xe5\x2b\x40\xa7\x00\xa5\xd3\x10\x47\x2a\xf8\xa2\x15\x63\xfa\x2c\x73\xa9\x74\x3b\x95\xfb\x9c\xf9\x74\x0b\x2b\x4b\x9a\xd0\x65\xb1\x67\x06\xeb\xb5\x63\x19\x87\x50\x0c\x41\x41\x52\xa2\x8d\xbe\xb1\x0e\xe5\x81\xc5\x5a\x97\xbc\x6d\xfa\x12\x10\x65\xf2\x0b\xde\x26\xd8\xb7\x40\x50\xaa\x24\x66\xb1\x9d\xd1\xe0\x74\x08\x7f\xb8\x6c\xcd\x4c\x42\x22\xe8\x7c\xf6\x71\x3f\xa5\x25\x9f\xd8\x4f\xa6\xf5\x51\x2f\x76\xf5\x1f\x2d\x51\x3e\xdf\xc8\xb9\x8c\x7e\xaa\x6a\xba\xde\x13\x23\x41\x3c\x73\x40\xa4\x31\x27\x04\x6e\xb2\xc0\x53\x5d\x84\xb1\x89\x51\xac\x4e\x2a\x44\x02\xe9\xf7\x29\x2e\x48\xd4\x74\x54\x1c\xac\xe3\x12\x6e\x1e\x10\x6d\x12\x1e\xb5\x4b\xcd\xd6\xe3\x7c\x29\x19\x3b\x78\xb8\xdd\x6d\xa1\xbe\x13\x4d\x84\x49\xfd\x9e\xf4\x11\x5a\x98\x63\x06\x9e\x4a\x77\x88\xd8\x42\x02\xd4\xdb\x81\x6d\xa2\x0f\xfb\xc6\xd2\xdd\x17\xe0\xba\x95\xf7\x3c\x4b\xb7\x53\x5b\xcc\xf3\x6e\x5c\x90\xb0\x05\xe7\x55\x8c\xbf\x31\xdb\xc6\x37\x5e\x37\x3e\xfc\x81\x88\x65\xb1\x5c\x8b\x84\x27\xe1\x56\xac\x13\xd1\x1e\xb7\x44\x82\x19\x6c\xdf\xbd\x7e\xd8\x13\xfb\x7d\xaa\x3f\x30\xc5\x07\x3c\x77\x4d\x3a\x37\x8a\x07\xe0\x21\x0c\x59\xe6\xf9\x68\xd7\x97\x40\x3f\xea\x62\xd5\xbe\x50\x64\x5c\xed\xc3\xb4\x62\x70\x51\xbe\xf2\x82\x81\xa2\x91\x00\xa1\x1d\xaf\x7a\xab\xc4\xc2\x8b\x35\xc3\xed\x7a\x45\x41\x01\xf1\x7a\x1a\xe8\xf8\x75\x8e\xec\xe3\xeb\x59\x74\xb7\x5f\xf8\xc6\xb2\x2b\x8f\xa2\x73\xc4\x3c\xd1\x85\xdc\x1b\x38\xbf\x9b\x7b\x8f\xbf\x6f\x31\xb1\xe9\xb3\xec\x64\xc4\x6b\xe6\xd7\x23\x9e\xaa\x99\x51\xaf\x93\x7e\xaa\x99\x51\x6f\x21\x0c\x35\x33\xea\x55\x94\xdd\x96\x34\x43\x2c\x7f\x90\x8d\x40\x08\x52\xc8\x01\x1c\x71\x52\xe0\x65\xf9\x4b\x82\xdd\x73\x45\xbe\x25\xbc\x01\x78\x37\x1a\x79\x00\x2a\x97\x19\x5b\x0a\xef\x8a\xdd\x26\x65\xc3\xc2\xb3\xc7\xc4\x75\xc0\xfa\xf3\xd6\xbb\x5a\x0a\xd6\xcf\x71\x27\xe7\xdd\x7e\x61\xee\x70\x78\x7c\x9d\x8d\xfc\x02\x95\x6b\x85\x2d\x65\xf1\x92\xcd\x25\x31\x5d\x21\xb3\x41\x33\xff\x5c\x92\xc1\x90\x72\x6e\xbf\xb0\xd8\x42\x40\x75\xf2\x07\x4f\x1c\x5c\x8c\x9c\x73\xfb\x2b\xda\x97\x88\xbb\xf1\x97\xc1\x88\xfe\x20\x06\xc1\xb2\xc9\x32\xb7\x9b\xb0\xc4\xe2\x4a\x1c\xe4\xe4\x99\x85\xe0\x06\xc0\xa5\xd8\x4c\x17\xc7\xf5\x9d\x96\x34\x24\xc8\x39\xcc\x18\x47\x86\x87\x66\xc2\x38\x32\x30\x35\xf3\xc5\x15\x67\x5e\xb9\xba\x21\xd0\x71\x09\x74\x8e\x01\x8e\xe9\x3c\xdc\x80\xaa\x54\xc5\xea\x2a\x9a\xd5\xf2\xd9\xc4\x21\x0e\xec\x5d\x2a\xfb\x41\x37\x72\x8f\x30\x41\xc8\x54\xf1\x6f\xef\xc9\xd1\x00\x1b\x44\x76\x5b\x5a\xa6\x31\x83\x35\xa1\x0f\xd3\x21\x35\x5c\xe5\x4a\x66\x33\xfb\x42\xc7\x67\xd7\x48\x06\xb7\x5f\xfc\x45\x8d\x66\xda\xfe\xc3\xc5\x2c\x9f\x2f\x6f\x4d\xf0\x1c\x67\x8e\x7e\xbb\x46\xc1\xc5\x4c\xba\xa3\xb3\xa4\xee\xc1\xfa\xce\xc4\xd7\xc8\xed\xe6\x9d\xb2\x66\x6a\xb7\x24\x3b\x24\xb5\x5b\x22\x7e\x7a\xbf\x00\x45\x88\x01\x29\xdc\xbc\x79\xd6\x4c\xe1\xb6\x38\xe5\x64\x70\xab\x87\x88\xdb\xb9\x79\xe6\x01\x1c\x92\x4a\xbe\x31\x62\xa6\xb8\x1d\x43\x89\x1e\x81\x24\x85\xed\x81\xd1\x48\xcc\x46\xc6\xac\x96\x0c\x5d\x41\x0e\x23\x2d\x5b\x41\x7d\x6b\xe6\x65\xfb\x79\xca\x86\xde\x7a\x77\x73\xe8\xe3\x65\x1e\x43\x45\x1e\xce\x94\x90\x02\x88\xbe\x6e\x69\xe6\x9f\x57\xe6\x5a\x9a\x31\x29\xba\x0a\x3b\x84\x67\x63\x02\x9c\x66\x0b\x73\x20\xf9\x11\x97\xf2\xb2\xbd\x42\x91\x10\x97\x12\xd7\x60\x47\xf1\xc0\x4e\x30\x29\xdb\x00\x7e\x17\x7f\x8f\x39\x39\x02\xd7\xf2\x32\xcf\x8b\x6b\x26\x30\xb2\x84\x6d\x01\x07\x74\x23\x13\x47\xe1\x86\x41\x23\x15\x47\xc5\xe3\xdc\xd2\xd2\xdb\x64\x5b\x03\xd1\x3c\x60\x98\x10\x82\xb6\x18\x63\x6c\x63\xec\x01\xcd\x83\x87\x3d\xa0\xa2\x09\xb6\x84\x33\x23\x17\x9f\x03\x1a\xb6\x00\x6f\x11\xb4\x13\x17\x29\x94\x94\xd3\xa7\xf3\x77\xc0\xc7\xe5\x09\x22\xcb\x5a\xda\x52\x44\x91\xe7\x24\xe2\xb5\x46\xf1\x6c\xe3\xcd\xc0\x37\xd9\x12\x92\x03\x8e\xdd\x46\x40\x48\x56\x78\x4f\x27\xb4\xd2\x6d\xc7\xb2\x30\x9d\xd1\x96\x22\xea\xe1\xe1\x39\x83\xc2\xd8\xf8\xe3\x0b\x53\x3a\xe5\xf6\xcd\xae\xb8\x05\x89\xe0\x91\x4e\x94\x21\xa1\x71\x7a\x72\x51\x6c\x48\xbc\xb7\x5f\x68\x7e\xa9\xc4\x7b\x76\xbd\x04\xeb\x61\xbf\x98\x95\xd4\x15\xfb\x43\x15\xc8\x57\xcc\xc4\x8f\x40\x08\x58\x6a\xba\xb4\xce\x89\xf0\xd7\x09\x59\x62\xee\x5b\x1e\x29\xcb\xd9\x7a\x99\xa1\xfb\x77\x65\x71\x69\x9d\x2e\xf4\xa0\x2d\x77\xcc\x90\x31\x74\x81\x28\x0e\x91\xba\x4f\x1b\x78\x33\x59\xdf\x8a\x63\x8b\x3d\x21\x7b\x52\x6f\x32\x37\xb8\xd8\x5b\x47\x16\x83\x1b\x8e\x18\xa7\xf0\x76\x74\x8f\xc8\x73\xfc\xbc\x25\xda\xd2\x16\x33\xca\x10\x05\x1f\x39\xb8\x68\xf4\xc4\x44\x98\xe2\x03\x48\x3c\x54\x08\x13\x4b\x02\xfe\x08\x11\x1b\x70\x6f\x55\x52\xf6\xe0\x46\x90\x96\x23\x56\x64\x19\xe8\x23\x47\x43\x3c\x4c\xaf\xd3\xe0\x23\x24\x09\x52\x29\xb5\xf4\x06\x3c\xd8\xd7\x37\x10\xd5\x17\x0d\xbb\xed\x7b\x82\xf7\xb6\x9f\x97\x5f\x5b\x7a\x0d\x6b\x63\x92\xaf\x4a\x8c\x4c\x0d\x1b\x46\x16\x01\x5e\x9c\xb7\xae\xea\xd5\xb4\x04\x4c\x5e\x8c\x05\x42\x1d\x0b\x06\xfe\xaf\x46\x42\x1a\x6f\xd4\x36\xd2\xd0\xe4\xc6\x37\xf9\xe0\x2c\x71\xe0\xcc\x49\xb3\xa4\x01\xe4\xa4\x29\xb8\xe1\x1a\xf1\x4d\x19\x37\x61\xcb\x26\xf6\x05\x77\xcc\x43\x43\x40\x43\x23\x0d\x4d\xc5\x9d\xd5\xb2\x57\x7c\x81\x1a\x69\x68\x12\x57\xac\x5a\x36\x3c\x01\x47\x5a\x33\x11\x4d\x25\xdf\x6c\xcb\x4a\x27\x28\x23\x99\x80\x79\x9c\x21\x2d\xeb\xe6\xc0\xd1\xd5\x32\xc1\x0a\x44\x12\xb7\x9c\xe4\x4a\xcb\x1f\x6e\xb6\x9b\x79\x64\x77\x03\x4e\x90\xb3\xee\x08\x7f\xe0\x4a\x68\xf2\xef\xdd\x95\x56\x5e\x90\x15\x9a\xcf\x81\xb5\x8d\x97\x85\x8f\x9a\x89\x60\x1a\xc0\xea\xdd\x72\x38\x4c\x84\x47\x76\xad\x3c\x17\x80\xec\xd0\x5c\xad\xcd\xae\xae\x04\x60\x99\x47\x31\xfc\xc2\x1f\xd8\x5e\x48\x39\x57\x58\x12\x69\xd3\x1a\x57\x58\x6a\x8e\xbf\xeb\x08\xb1\xad\x32\x81\xcf\x6a\xed\xa0\x46\xd6\xab\x01\x01\xe2\xee\x49\x15\xb1\x73\x18\x09\xe0\x41\xb9\x62\xf9\xcb\x3e\x47\xa2\x04\x86\xd0\x1a\x50\xfd\x61\xc3\x72\xb8\xe8\x0a\x1f\x40\xbe\xcf\x0a\x0b\x30\x55\x73\x5c\x0e\xfc\x69\x8d\x1c\x97\xa5\x0b\xca\x9f\x82\x03\x8b\x08\xc1\x61\xf9\x8b\x54\xd1\xfd\x6a\x66\xe8\x64\x0c\xe3\x6c\x25\x1a\x99\xac\x59\xea\xd0\xe4\xb8\xac\x59\x8c\x6d\x52\x48\xce\x84\x29\x2e\x57\x80\xb9\x07\xc7\x60\x8e\x46\xf5\xa1\x94\x12\x79\x97\xb5\x62\x91\xed\xb2\x14\xbb\x0a\x1b\x81\xe0\xc1\x7f\x91\xa3\x01\x3b\xdc\x1d\x22\x26\xe5\x8b\x42\xbc\x30\xec\x7a\xed\xf8\x81\x2b\xa4\xcd\x99\x0f\x58\xa3\x33\x1f\xa6\x15\xf6\x19\x34\x40\xda\x25\x5d\x65\xcd\xee\x30\x37\x48\x95\x20\xb2\xd2\x04\xce\x96\x46\xe6\xc9\x8a\x61\xb3\xe5\x01\xfc\xfd\x68\xaa\x83\x0a\xda\x19\x07\x89\x6e\x4d\x8d\x01\x71\x35\xd5\xe4\xc0\x53\xd6\xf2\x8c\xcd\xf7\xc5\x68\x3f\x9b\x4f\xc6\x60\x11\x13\x24\x17\x4f\x67\x6c\x92\x1f\x05\x7e\xf9\x8b\xb3\x62\xf7\x94\x02\x60\x31\xdc\x5a\xaa\x1a\x8b\x0c\x6f\xac\xa5\x7f\x17\xa9\xd2\xb8\xd3\x54\x35\x11\xe6\x90\x11\x20\xa5\x5c\x51\xca\x49\xf9\x89\x2b\x4a\x5e\xfc\x6f\xdc\x50\x9a\xc5\x43\xb0\x74\x02\x30\x7b\x84\x07\xd5\x0f\xae\x21\x55\x2e\x1d\xb4\x6c\x9c\x30\x37\x53\x1b\x89\x98\x76\xaf\xbe\xf4\x1f\x5f\x93\x1c\xd9\x2d\x7f\x86\x3f\x30\xfd\x0f\x77\xf0\x61\xfa\x5c\x5c\x2a\x1a\x02\xb2\x19\x01\xe1\xda\x5e\x4a\x6a\x2e\x97\xe4\x80\x49\xed\x21\x9f\x84\x26\x79\x20\xb0\x3b\xc4\x21\x55\x7a\x80\x8d\xe5\x53\x41\x1f\xb8\x9d\x88\x61\x92\x60\xcd\x0e\xaa\x18\xf9\x8c\xeb\x07\xfb\xf9\x3a\x98\xaa\xcf\x00\x5d\xd2\xcc\x65\xc7\x21\xba\x5c\xa2\xb9\x24\xee\xc2\x1c\x85\xd0\x93\xf5\x4a\x28\xf6\x93\x1f\xd3\xc0\x8b\x66\x7a\xcc\x8a\x57\xb7\x91\x1e\xb3\x10\xa3\xde\xcc\x8f\x39\x4a\xbc\xe8\xc0\x73\xf7\x09\x92\x90\x65\x67\x8c\x0f\x49\x5d\x24\x1b\x19\x71\xd8\xf1\x6d\x92\x01\x8f\x1c\x29\xd5\x92\x7c\xc5\x90\x09\x15\x8d\x8c\xf5\x21\x16\x7b\xab\xec\x4a\xea\x09\x9a\xc8\x52\x5e\xf3\x6d\x3a\xf7\x7b\x71\x99\xdb\xbf\x9f\x40\xc4\x8e\x2e\x7b\x05\x24\x37\x1c\xa0\x3a\x29\x08\x87\xd4\xf9\xc6\x80\xe9\xe6\x29\x46\x48\x2f\x23\x0c\xd0\x91\xb1\x56\x74\xc9\x11\xc6\x0a\x4d\x35\xf9\x11\x89\xe8\x48\xf1\x22\x7b\xd8\x1f\x04\xcd\x69\x83\x61\xd2\x12\x9e\xa7\x1f\x31\xd7\x47\x3f\xbc\x38\xfb\x88\xd8\xee\xd9\x13\x33\x67\x90\x57\x85\x5d\xe2\xa4\x81\x42\xcd\x3c\xeb\xe3\xf0\x30\xbe\x26\xbe\x60\x94\x37\xc0\xc9\xf0\x0a\x0e\xd2\xc2\x37\xb6\x9c\x11\x5f\x89\x8a\xc7\x41\x09\xc1\x49\x92\xd5\xa9\x0f\xe7\xa5\x81\x42\x02\xf8\x12\xd1\x45\xb7\x5e\xac\x23\x93\x4a\x2b\xc4\x3f\x12\x7f\xdf\x08\x47\x2e\x19\xf5\x91\x0b\x77\x7b\xb2\x89\x17\xb8\x6b\xf5\x07\xc0\x03\xb1\xe6\x8e\xdd\x96\xea\xfc\x08\xba\xc3\x8a\xb8\x3b\x97\x53\xe6\xdc\x17\xf3\x83\x2c\x87\x78\xc9\xeb\xc1\xdf\xcd\x09\xc2\x54\x4b\x0a\xd8\x64\x5e\x8a\xad\xe9\x16\x73\x46\x0c\x81\xc0\xa0\x19\x89\x1b\x76\x85\x64\x53\xad\x28\x2f\xa8\x1d\x15\xcd\x19\xcd\x1f\x48\x0b\x12\xbd\x9e\x7e\xc4\xb2\x71\x64\xf4\x19\x13\x81\x2b\xba\x6e\xe2\x21\x93\x6a\x50\x21\x20\x72\x6d\x12\xf2\x0d\xd1\x2b\xe4\x0d\x91\x4c\x97\xac\xf6\x39\x78\x2e\x4c\x80\x31\xb7\xbc\x32\x49\x56\xde\xb8\xc8\xb7\x87\xf1\x85\x94\x08\xe0\xb1\x97\xf4\x96\x84\x87\x6c\xab\x06\x20\xb6\xa2\x07\x82\x8c\x9d\x8d\xdb\x7b\x06\xf4\x35\x6f\xef\xad\x1c\x2f\x8e\xc7\xe2\x8b\x8c\x1c\x95\x89\x1b\x7b\xc6\xb9\x35\xee\xe4\x95\x8a\xbc\xef\x9d\x3c\x32\x12\x36\xae\xe4\x85\x38\xc1\x95\xbc\x3d\x1c\x2b\x2a\x31\x29\xbb\x55\x6c\xee\xbe\x6c\xb4\x0a\x98\xd6\x83\x21\xe8\xb6\xa6\x9f\x39\x5b\x1a\xd7\xf6\xd2\xd0\x83\x44\x60\x7b\x1e\x6e\x67\x65\x6b\x93\x7f\x37\xe1\x0b\x73\x45\x94\x21\x53\x6f\xf3\x6e\xdf\x72\xcb\xab\x09\x5f\x98\x12\x79\x3c\x6a\xb4\xd5\x4e\xd5\x1d\x59\xa5\x0c\xac\xe7\xd2\x9f\xa1\x41\x8d\x8b\x7e\x45\x9b\x15\x17\xfd\x32\x79\x23\x5a\x31\x58\x03\x41\xc6\x6b\x7e\x5d\x1c\x26\x1b\x87\xbc\xba\x20\xed\x2c\x84\xd3\xa2\xb3\x83\x98\xdc\x56\x30\x99\xe0\x04\x6e\xa5\x89\x60\xc5\x97\xeb\x67\xa2\x9a\x56\x10\x76\x94\x37\x0a\x8e\x8f\x21\x46\x86\x78\x83\x08\x50\x10\x6f\xfa\x14\x32\xf8\x3d\x96\x06\xab\x12\x97\x3d\x18\xaf\x7b\xf0\x1d\xbc\xff\x9a\x00\xa7\x95\xee\xb2\x9d\x6e\x8f\xfd\x62\xf4\xee\xe8\x76\xc5\x75\x6e\x77\x62\x44\x86\x5a\x9e\xa3\xd4\x00\xcf\x19\x34\xa5\xd7\xa1\x8b\x9c\x15\x61\x3b\xe9\xee\x0a\xa6\x93\x25\x2e\x0e\xa2\x8c\x3d\xea\xc3\xdb\xf6\xac\xd4\x60\xcf\x9f\x03\xc8\x7e\x84\x0d\x21\x1c\x44\xc4\x34\xae\x46\xa6\x42\x12\xfc\x56\x46\x24\x8b\xb1\x2f\xaf\xc2\xb0\x06\x6c\x27\x45\x82\x30\xa5\x0e\x6e\xde\x24\x2d\x09\xf2\x76\x31\x3d\x98\x94\xdb\xf4\xc0\x49\x7d\xbc\x70\xe5\xba\x0a\x4d\x03\x38\x65\x71\xdc\xad\xac\x0a\x12\xdc\xa7\x2c\x4b\x3c\x58\xce\x5d\x54\xe3\x52\xcf\x12\xbb\x88\x82\xe8\xd3\xfd\x43\x56\x99\xce\xf0\x03\xf2\x7b\x10\xb8\x43\x96\x54\xe0\x4b\x08\x2b\xc2\xe4\x03\xc6\x7b\xea\x3f\x8e\xcd\x78\x1f\xe2\xa4\x24\x19\x64\xf7\x52\x21\x36\x69\xe3\x92\x0d\x16\x93\x7b\x11\x7a\xdd\x0a\xa6\x0e\xfd\x38\xe5\xc3\x0e\xc3\x9a\x8b\x41\x14\xb2\x32\x6e\x70\x56\x6d\xcf\xde\xda\xd4\xe6\x5f\xbc\xb4\x21\xe5\x3d\x63\x7e\xb4\xd6\x93\xf2\x7d\x3c\x72\x2b\x67\xff\x99\x64\xa9\x95\x33\x90\xd2\x17\x69\xb1\xa4\xf0\x8c\xf9\xb3\xe0\x53\xde\xe4\x0f\x8a\x45\xae\x92\x8b\x52\x43\x4f\x52\x31\x67\x98\xcc\xb4\x68\x2f\x19\x3e\x43\xda\xa4\x66\xd7\xfc\x99\xd6\xa9\x95\xcb\xf4\x25\x0c\xa1\x21\x04\x4d\x93\x9b\xa6\x65\x22\xfb\x72\xd3\x34\x0f\x0f\x07\x76\x90\xea\xfe\x93\xb2\x59\xe3\x7a\x09\xd9\x07\x13\x3c\x57\x50\xb3\x31\x01\x26\x6c\x1e\xba\x1c\x0a\x91\xa0\xb1\x6b\x04\x5b\xe8\x7d\x2b\xb7\x02\x26\x23\xdf\xfa\x23\x5d\xe9\x96\x6a\x4a\x15\x93\xb6\x20\x33\xd5\x58\xcb\x2d\x82\x56\x5b\x43\xe8\x6d\x4d\xf8\xe7\x92\xd1\x17\x44\x19\x95\xed\x82\x24\x33\xdc\xfe\xa7\xfc\xcc\x65\xd5\xca\x13\x77\x38\x79\xf6\x9e\xa5\x7f\x57\x19\x1a\xfe\xa0\x34\x2c\x0f\x7f\x60\x06\x6e\xf9\x43\xb4\xbc\xe0\x40\x90\x59\x1e\x3f\xc2\x45\xbb\x38\x82\x4c\x53\x85\x0c\x16\x94\x58\x34\x8e\x99\x40\x6d\x1c\x33\xba\x07\xb8\xa3\x94\xb9\x46\xdf\xca\x6b\xed\x0f\x9f\xf1\xb4\x4a\xe2\xb0\xa5\x04\x9f\x8d\xfb\xa9\xee\xc3\x6b\x24\xe4\xf0\x17\xd6\x10\x3d\x21\x6d\x78\xaa\x5e\xca\x65\xc8\xbe\x5f\x98\x3c\xd8\x47\x0a\xed\xf0\x49\x56\x63\x3e\x35\x7f\x54\x7d\x32\x4c\xb5\xe2\x92\x71\x39\xdc\xa0\xca\x5c\xe0\x6f\x95\xc4\x00\x5c\x02\x6a\x95\xc4\x67\x84\x14\xb7\x7a\x44\xea\x46\x9e\x09\x1e\x3f\x1c\x00\x63\x3d\x93\xab\xc4\x6e\x10\x90\xde\x2a\xc1\x9f\xcb\x49\x10\xfc\xa9\x9f\xbb\x2a\xe4\x80\x85\x35\x99\xdf\x04\xaa\x5e\x93\xc2\x56\xf6\x17\xa5\x49\x8c\x2d\x15\x17\x8c\x82\x7a\x4d\x40\x1e\x08\xd7\x64\x06\x3f\x18\x4f\x4d\x5e\x7a\x65\x6d\x99\xdc\x82\x88\x0c\x35\x4b\x87\x38\x0e\x35\x07\x8c\x99\x2d\x17\x3a\x94\xa8\x6b\x04\x4f\x0c\x9b\xab\xb0\x81\x95\x95\xe8\x89\x9f\xcf\x9e\xe4\x6c\x13\x6e\x34\x77\xfb\x05\x07\xaa\xad\x3d\x42\xa0\x6b\x35\x8e\x54\xa1\xac\xe2\xd9\x29\xca\x19\x95\x70\xd1\x98\x49\x24\x1a\xb3\xc5\x82\x0a\x02\xb7\x2d\x8b\x14\xcd\x58\x15\x8f\x8d\xbe\xb1\x5a\x04\x82\xfd\x00\xf3\x6a\x5b\xd0\x4f\x4d\xa2\x2a\x89\xb8\x3c\x6f\x77\x40\x8e\x6a\x8d\x2b\xd6\x8c\x50\x95\xb4\xbf\xb7\xdf\x55\x1c\x3d\x5d\x3c\xaa\x9e\x23\x81\xbd\x85\x93\xc2\x55\x8a\x56\xf5\xf4\xc4\x38\xe6\x96\xb1\xc1\x25\x18\x6c\x60\x0c\x52\xb4\x10\x72\x4e\x26\x20\xc7\x0f\x48\x2a\x01\x45\xac\x31\xc6\xad\xb7\xda\xa4\x19\xd0\xb4\xda\xa0\x19\x7e\xd5\x15\xb1\x1c\x31\x8c\x23\x58\x7f\x6a\x58\x44\x60\xed\xb5\xc7\xe4\x19\x12\x07\x4b\xec\x42\x57\xa6\x71\x7b\x3a\xfa\x84\xe7\xa9\x07\xcf\xf1\x45\xc3\x89\x98\x49\x78\x67\x71\xc2\xd8\x47\x48\x75\xde\x2a\xf7\x3d\xa4\x40\x75\x68\x22\x1d\xbe\xc0\xfb\xa2\x31\x18\xe0\x70\xca\x0f\x02\x54\xc9\xc0\x99\x8f\x88\xb3\xe6\xd9\x93\xc6\x22\x94\x0b\xa6\x28\x3e\x9d\x05\x03\x18\x66\xa1\x51\xa9\x86\x94\xe0\x01\xd9\x52\x02\xb6\x8b\xfd\x2c\x8b\x43\xe0\xa8\xd3\x79\xd8\xc2\xeb\x12\x87\x3f\x04\x40\x58\x1e\x91\x9e\x92\xf0\xca\x45\x12\x23\x36\x2a\xee\x16\xa3\x5b\x6a\x5c\x24\x81\x21\x57\x2e\x92\x14\xcf\xdd\x74\x9b\xf8\x3b\xd9\x48\x55\xce\xb9\x45\xb9\x47\x60\x4d\x58\x5a\xb4\x96\xd6\x15\xc1\x05\x7e\xe5\xf6\x79\x0e\xb0\x93\xc8\xb9\xaa\x51\x97\xda\x9e\xea\x47\x06\x2a\x2e\x84\x9b\x05\xb3\x44\xc5\xcd\xa2\x74\x55\xf1\xac\x48\x57\xab\x82\x88\x83\x47\x7a\x01\xb7\xef\x33\x44\x57\x16\xfe\x81\x4f\x48\xd4\x48\xfd\x42\xa9\x9f\x56\x43\x2c\xc9\x36\x67\xcf\x84\xc2\x87\x93\x1a\x93\x0a\x88\xd8\xc2\x7c\x06\xee\xf2\x96\x51\xaa\xa6\x8f\x7a\x06\x95\xa0\xc9\x09\xc5\x96\x58\x9a\x7c\x54\xa2\x1b\x02\x86\xc8\x76\x32\x29\x77\x26\x6e\xa3\x60\xbc\xa8\xa7\x32\xa6\x50\x44\xd8\x58\xfa\x8b\x48\xd4\xf0\xf3\xd4\x9d\xa6\x37\x62\x3f\x4e\xf6\x49\x9a\x71\xea\xe4\x84\xe5\x57\x24\x92\x64\xe3\x2d\x90\x14\x12\xd5\xb6\x4a\x78\x88\x1c\xb5\x7a\x65\x25\x90\xf5\x12\xc3\x6c\x10\x7b\x66\x0b\xb0\x5b\x34\xbc\x04\x27\x43\x23\xb5\x24\x91\xf8\x92\xe2\x47\xeb\x00\x1b\xab\x30\xe9\x94\x02\x7b\xbd\x6d\xce\x0f\x8f\xda\xa0\x7d\x29\x24\x88\x17\x0f\x33\x74\x6c\x2c\x16\x55\xd2\xfc\x60\x68\x91\xff\x3d\x6e\x5f\xf9\x56\xca\xab\x8f\x27\xde\x83\x2a\xe7\x17\xd6\x72\x7e\xf7\xf6\x31\xad\xa0\xc7\xcb\x7b\x22\x81\xe3\x2f\xe1\x89\xe2\x4c\xf8\x4e\x3c\x6b\x61\xcc\x10\xb3\xe4\xdf\x02\xfe\x95\x5a\x16\x9b\x3b\xa0\xcf\x92\x3e\xd1\x8c\x88\x4d\x92\x80\xb5\x66\x4d\x15\xa8\x55\xd3\xc7\xa1\x6a\xd6\xcc\xbb\x0f\x24\x1a\x86\x0a\x72\x4c\x34\xaf\x22\x2f\xd5\xb4\x06\xcb\x1f\x62\x53\x3b\xd4\x6c\xa7\x7d\x71\x6e\x39\xcf\x4d\x26\xce\x26\x36\x9c\x19\x1e\xc8\x96\x62\xbc\xc6\x0b\xd9\x87\x38\x38\x2d\x7b\x8a\x8a\x2f\x01\xee\xc1\x8b\x04\x15\x6f\x41\x93\x77\x62\xf8\x69\x5c\xc7\x20\x19\x65\x6b\x04\x48\x54\x18\x6f\x2b\x4a\x31\x20\x69\x53\xbd\x5f\xfe\xa0\x9c\x84\xc9\xab\x11\x85\xb8\x02\x0c\xea\xfa\x68\xb1\x0d\x67\x83\xd8\xd4\x8a\x0a\xea\xf0\x87\xd8\x5a\x7f\x51\x1c\x1f\xbe\x6c\x50\x93\x71\xa5\x35\x39\xa9\x10\xa9\xb1\xb5\xbe\x10\x28\x87\x19\xa8\xa9\xc7\x63\x37\x68\xdc\xba\x20\x95\x5a\x6b\xde\x93\x14\xe1\x5b\x95\xa2\x0e\x5b\x2b\x21\xbb\x72\xe2\x1f\x62\x1d\x35\x26\x02\x78\xaa\xb7\x10\x01\x3b\x85\xbb\x3a\x91\xdb\xad\x35\x89\x06\x12\x56\x23\x5c\x91\x02\x52\xad\xe9\x95\x50\x2d\x6a\xcd\x7e\x33\xcf\xa0\x12\xaa\x1a\xd9\xeb\x47\x17\x49\xe2\x2a\x84\x1f\x75\xeb\x35\xa2\x23\x91\x8e\xe5\xe7\x3e\x79\x2d\x42\x1a\xd7\xba\xa0\x46\x04\x69\x30\x2c\xdd\xb3\x8d\x1c\x8f\x4a\xf7\x6d\xe8\x89\x1e\xfe\x40\xb2\x59\x18\x4b\xf3\x9a\x82\xb6\xde\x06\xf7\xd2\x5c\xdd\xa8\x36\xd5\x8d\x49\x6b\xe1\x02\x70\xd3\x37\x2b\xab\x9a\x3a\x1a\x79\x1e\x87\x0b\x9f\x18\xbb\x93\xdf\x0c\xbe\x61\x82\x53\x1b\x30\x9a\x2c\xe9\xf6\xd3\x72\xe6\x5c\x88\xd4\xc0\x4a\xba\xfd\x72\x1c\x4e\x43\xbc\x77\x33\xa7\x0a\x24\xc2\x53\x33\x09\x8c\x94\xb3\x79\x0d\x52\xcd\xae\x79\xe3\x40\xb3\x71\x0b\x9d\x1a\x49\xac\x79\xf9\x51\x5b\x6f\xe3\x9a\x81\xc6\x84\xc6\xe5\x47\xcd\xfc\x0d\x9d\xda\x40\x82\xb6\xa2\x28\x1f\xcf\x50\x3f\xd7\xbd\x04\x1b\x00\x59\xb2\x0c\xbe\xff\xc4\xd0\x74\xfa\x89\xa1\x99\x07\xcc\x6b\x8a\xa0\xf0\x2e\xf9\x55\xdb\xbc\xab\xca\x38\xa9\x04\x90\xc7\xf8\xd6\xa4\x67\x95\x00\x3d\xf2\x8d\xec\x8b\x86\xf4\xb4\x4f\x98\x00\x1c\xc5\x39\xf2\xec\x3d\x7b\x41\x7d\x06\xac\x58\x88\xf5\x03\xe0\xaf\xed\x94\x58\x4a\x3f\x2e\x65\x00\x4f\xa7\xe1\x86\xfa\xa6\x1b\xfc\x84\x62\x86\x8d\x24\x3f\x35\xf6\xf9\x0a\xe4\xf3\x07\x36\xdd\x01\x2f\x09\xd9\xf4\xc5\x83\xee\xb1\xbd\x3c\xe8\x62\x9c\x85\x1f\x0c\x66\x6a\x61\xd3\x77\x0f\xef\x40\x39\xda\xdc\x31\x17\x5f\x98\x0b\xca\x09\x39\x86\x6a\x50\xde\x5b\x16\x5b\xed\x0b\xe4\x4f\x36\x10\xf9\xc5\x80\xd0\x73\x3d\xea\xe8\xb9\x54\x56\x6c\xed\x71\x40\x17\xcf\x6d\x46\xcd\xbf\x54\x32\xa8\x3a\x7c\xdb\x13\xcb\xf2\x45\xe6\x20\x19\x7f\x64\x8d\x92\xa9\x30\xad\x23\x33\xb5\x57\x18\x49\x4a\xb9\x78\x58\xb3\x3f\x48\xf9\xdd\x08\x42\xfc\x48\x8d\xd2\x1a\x8c\x86\x04\x4d\xad\xe1\x57\xaf\x12\x9d\xd7\xc3\x0a\x75\xe8\xc1\x5c\x10\x61\x28\x8c\x90\x17\x52\x4b\x3f\x24\x73\xf1\x55\x1c\xbe\xce\x0b\x7e\x7c\x00\xd4\xbd\x0e\x40\x1a\x91\xd6\xbd\x36\xa8\xb8\x6f\xbe\x89\x21\xfd\x24\x21\x53\xd5\x45\xd4\x89\xde\x53\x04\xea\x49\x9b\x28\x03\x12\xb7\x2f\x3f\xe9\x5a\xbb\xb5\xc7\x77\x32\x5f\x93\x00\xa4\x75\xf2\x27\x34\x21\xd7\x43\xad\x83\xc6\xf6\x6c\xfa\x78\x26\x92\x03\xa4\x7e\xc5\xee\xd8\x6f\x89\x49\xf1\x15\xfc\xc8\x78\x9b\xbe\xf9\x51\x25\xe3\x4f\xeb\xde\x0e\xd4\xe6\xdf\x49\x31\xad\x8b\xad\xeb\x13\x57\x9f\xe8\xa8\x7b\x35\x5a\xab\x6c\x42\x04\x3a\x7c\x8a\x14\x25\xad\x17\x2d\x6e\xdd\xe6\xde\x3b\x4a\x36\xd7\x12\xbd\x9c\x96\xa8\x15\x23\x9a\xe9\x9f\x63\xd9\x6b\x4c\x98\xcf\xaa\x07\x0b\x7a\x4f\x29\x8a\x30\xb4\x74\xd8\x53\xd2\x9d\xd0\x83\x3f\xc5\x57\xcb\xce\xfc\xe5\xf4\x85\x39\x93\x1a\x7a\x44\x7b\x37\xae\xfb\x83\xa8\x62\xf3\x98\x0b\x70\x21\x9a\x9e\x32\x8f\xad\x6f\xf6\x34\x8c\x00\xec\x4d\x62\x15\x2f\xe6\xea\x67\x25\x4d\xf1\x58\xb0\x18\x61\x17\xcb\xea\x42\x95\xaf\xd4\xe5\xe4\x36\xdd\xea\x8d\xc3\x16\x31\x77\x90\x00\x57\xb7\xde\x04\x4a\x5e\x54\x92\xa4\x34\x2a\x5e\x54\x72\x97\xb4\x6e\xaa\xa6\xbd\xd8\x6f\xa8\x20\x25\x30\x52\x50\xf0\x4e\x96\xe4\x06\x8d\xe9\xf8\xb8\x93\x3e\x88\x6e\x49\x46\x29\x6c\x27\x66\x4e\xd2\xd7\xc9\x87\x1c\x33\x96\xdb\xc1\x58\xfa\x34\x08\xcb\x6e\x67\x60\x8b\x5f\x81\x2d\x70\xd7\x6e\xf5\x07\xd8\x4a\x37\x3c\x3e\x00\x2c\x27\x83\x13\x75\x35\x32\x5d\x1b\x1d\xbf\xf6\xf8\x39\x20\xf8\xec\x44\xf0\x4a\x6b\xf3\xe9\x68\x58\xc1\xa9\xc9\x66\x36\x7a\xf3\x07\x6b\x75\x8b\x77\x2b\x60\x64\x73\xe9\xa6\x0b\xd4\x47\xad\x0a\x49\x61\x90\x1a\x73\x24\x39\xb0\x9e\xb8\x8e\x86\xa5\x20\xd4\x3f\x52\xa4\xee\xcb\x70\xbe\x6c\xc4\x27\x56\xe5\x2f\xcb\x41\x58\xd6\x27\x96\xc5\x24\x65\x33\xa2\xa0\xc9\x96\xe4\x6c\xdd\x7b\x72\x32\xc9\x7e\xea\x42\x88\x5f\x5c\x30\xcd\x4f\x61\xca\x88\x5e\x9a\x53\xef\xec\x28\x46\x15\x1a\x4a\xb5\x92\x9c\x74\xc7\xf4\x8b\x55\x09\x15\xbc\xd3\x15\xda\xda\x51\x80\x48\x7b\xde\x3a\x06\x59\x32\x79\xb7\x7e\x45\x52\x39\x86\x40\xcf\xa9\x12\xca\x4b\xd4\x4c\xf6\x44\x31\x96\x61\x6b\xd7\x27\xb0\xcc\x8e\xa5\x36\xdb\xaf\x00\x3c\x53\xbf\x4c\xd4\x0f\x7c\xae\x80\x3b\x3f\xdc\x87\xed\x99\xd6\xed\x14\x59\xd3\xed\xb4\xe8\x0a\xb7\x73\x95\xba\xa1\x3e\x69\x63\xeb\xb7\xd4\xc6\x99\xdc\xd8\x3b\x44\x0d\xee\xea\x1b\x33\xd0\xf5\x41\xeb\x3d\xea\xf0\xb4\xe0\xc2\xdd\xc2\x10\xd2\xdc\xdb\x04\x78\x82\xed\xb1\x4a\x0c\x73\xd2\x0b\xad\x8e\xd3\xe1\x6f\x4b\x6c\x78\x34\x3f\x26\x5f\x44\x00\xc1\xf0\xc8\x51\x87\xed\x25\x35\x28\x9b\x1d\x7d\xab\x4a\x4f\xb1\xae\x1e\xc2\x2a\x18\x9f\xc4\x1c\x9f\xb2\xa1\xd0\x9d\x54\x68\x06\xb7\x76\x59\x9d\xa4\xf5\x35\x0a\x84\xa9\xbf\x14\xab\x71\xf7\x5f\xce\x0a\x94\x69\x1c\x6c\x3e\x34\x6e\x1c\x5c\xc5\x2a\x3e\x83\x52\x1c\xd3\x61\xf4\xba\x6a\xc9\xc0\xf5\x5b\x41\xef\x71\x38\x98\x7f\x8f\xf3\x34\x78\x81\x16\x75\x9f\xdd\xef\x61\x0b\xb8\x2f\xeb\x19\x91\x88\x69\x6f\xd8\x48\x49\xf8\xfb\x02\x11\x87\xf4\x50\x30\xa7\xd6\xf8\xc8\xb3\x8c\xe0\x31\x64\x98\x00\x60\x10\xe1\x5e\xd9\xe1\xc1\xe5\x78\x52\x19\xb6\x91\x02\xac\xeb\x3b\xd2\x37\xfe\x5e\x17\xa2\x8d\x2c\xb6\x81\x3d\x03\x07\x6f\x59\x9c\x88\x61\x48\x9a\xbe\xa9\x91\x8d\xd6\x71\xca\xd9\xd9\x00\x2e\x14\x42\xaf\xf3\x8c\xac\x92\x02\x20\xcc\xa0\x23\x2e\x8c\xfc\xb1\x2b\x5b\x08\xa2\xe9\x88\x24\x84\x4a\x8e\xa1\xe0\x33\x7d\x91\x3c\x3b\x2f\x5c\xc4\x46\xfb\x0c\x22\xde\xf5\xf1\x52\x46\x68\xf7\xcb\xe8\x68\x74\x24\xfa\x6d\xa3\xc6\xdc\x79\x0e\x65\x8d\x67\x8a\x0c\x4c\xbf\xbf\x1c\x01\xe0\x55\x8f\xa6\xc3\xc9\xfe\x86\x2d\x40\x1f\x27\xeb\x15\x79\x18\xf1\x50\x53\x13\xf2\x2d\x46\x63\xad\x4d\x73\x92\xcf\x9e\x6b\xe4\xd0\xd1\x39\xca\xf1\x1c\x2d\xe8\x0a\xb3\xe6\xe1\xae\x53\x16\x2a\xf0\xaa\x2b\x8a\xf9\x77\x69\x2b\x2c\x79\x74\x8f\x16\xb2\xdf\xc0\x57\x5a\x05\x5a\xd7\xb6\xef\xdf\x3d\x72\xae\x35\xfc\xa6\x68\x16\xc3\x8b\xed\x25\x3a\xf6\x94\x0b\x05\x3c\xa7\x21\x23\x0e\xaf\x92\xe9\xdd\x1e\x04\x7b\x75\x6f\xef\x0c\xef\xb0\x7b\x2b\x71\x0c\x8d\x00\x48\xbb\x83\xe0\xf1\xa1\xf0\x39\x86\xa1\x08\x1c\xc9\x61\xf4\xb8\x9e\x20\xea\x3a\xd5\xea\xd4\x66\x0c\xc3\x04\xa8\x02\xd0\x11\x10\xc6\x54\x54\x47\xd6\x1f\xc4\x7e\xd5\xe9\x47\xae\x98\xb5\x10\x25\x2e\x63\x18\x33\x36\x94\x6e\x09\xee\xae\xce\x6a\xc9\x93\x91\xc7\xc6\x92\xbd\x23\x2e\x8c\xe5\x61\x47\x96\x1c\x2b\x96\x65\x7b\x53\x86\xba\xfa\x15\x3d\x33\xa4\x06\x4a\x9d\x4c\x43\x26\xe9\x1c\x3f\xb1\x12\xc6\xf4\xaa\x98\x67\xc4\x52\x48\x8e\x88\xad\x92\xa4\xd3\x6d\x04\xc3\x44\xa2\x19\xc1\x30\x85\xc3\xc7\xa9\x54\x3f\x43\x26\x40\xcf\x18\x1f\x2d\xa5\x76\xe5\x79\xb1\x2f\x3c\xa2\x24\xa8\x6b\xe3\x74\xed\x74\x4b\x90\x77\xa8\x03\x43\xe7\xa4\xfe\x83\x21\x27\x94\xf0\xc8\xf1\x10\xd4\x07\x89\x69\xc8\x7b\xd7\xc6\x56\xc4\x66\x9c\x0a\x92\xdd\x06\x05\xc0\x05\x39\x04\x8e\x6a\x98\x92\xdc\xb8\xcc\xba\x05\x08\x2f\xed\xd9\x22\xb3\xba\x16\x9c\x65\xdc\x8a\x45\xae\xe8\x76\x38\xba\x35\x87\xa7\x82\xf3\xd8\x5c\xaa\xc8\xb5\xc7\x1d\x13\x67\xb2\x30\xa9\xa1\x20\x38\xe0\x52\xc6\xfe\x8d\xcd\xa4\x4a\xfb\x36\x5b\x69\x1b\x8f\x3b\x85\xd8\x31\x88\x9d\x6a\xe2\x9c\xe5\x8f\x8c\x26\x8a\xcc\x75\x8a\xc1\xe3\x11\x53\x04\xf0\x13\xdb\x03\xbc\x1e\x19\xa8\xc7\xc9\xcc\x32\x4a\x79\xa4\x76\xcd\xcd\x1d\xc5\xc7\xa7\x1d\x6a\xbc\x6e\xb5\xab\x79\x29\x21\xe2\x54\x5e\xcb\x13\xdb\xd8\xa3\xe4\x18\xde\xf7\x76\xc5\xe6\x88\x55\xe2\x1b\x5a\x0f\x4b\xbc\x48\x33\x39\x63\x64\x8f\x2d\x83\xed\x9a\xc6\x3f\x01\xca\x49\x18\xb5\xd9\x0b\xda\x3c\x2c\x3e\x13\x2f\xe6\xd6\xf3\x2b\xae\x8d\xc0\x35\xa7\x99\x64\x74\xa8\xcc\x43\xb1\xa7\xf8\x8b\x98\x39\x79\x26\x11\x02\x5a\xc6\x34\x4a\x4a\x8f\xde\x0c\x95\x10\xe4\x9a\x9b\xab\x65\xaf\x6f\x4e\xca\x1c\x19\x93\x3d\x8d\x61\x52\xa3\x9c\xf8\x03\xa9\xce\xd8\xa6\xb9\x4a\x15\x37\x67\xf2\xe8\x21\xa5\xcd\x2c\xb1\x02\x59\x26\x77\xb5\xc8\xb9\xd5\x26\xe1\xd3\xa4\xf2\x6a\xd3\x90\x69\x95\xd3\x99\x45\xaf\xea\x2f\x1a\x6a\xfc\x41\xf4\x42\x60\x20\xd3\xee\x90\xbb\x4d\xab\x0c\x40\x76\x66\x21\x63\x95\xdf\x10\x9a\x14\xfa\xc7\xe4\x3e\x97\x76\xf4\x59\xac\x20\xc3\xc2\x8b\x2c\x50\x28\x18\x0f\xed\x64\x71\xf5\x19\x7c\x37\x83\x85\x09\x91\x0a\x02\xc3\x60\x66\x25\x36\xd3\x15\x55\x7b\x72\xdd\xd5\xe4\x38\x0c\x57\x05\xba\x0d\x3c\x87\x4e\x30\xd4\xb9\x65\x73\xd9\x90\x4d\x9a\x0c\x1f\xe9\x76\x6e\x2e\x96\x87\x33\xe4\xc2\x95\xd1\x8b\x73\xeb\x73\xc5\x8b\x73\xb3\x49\x30\x11\x99\x27\xb1\x43\x22\xe2\x6c\x5c\x21\xea\xf6\x4a\xe4\x95\xb3\x25\x74\xc8\x48\xd2\xa9\x63\x2f\xfe\x1e\xd3\x60\xb6\x14\x33\x1d\x4e\x96\xcb\x56\xe4\x2e\x69\xb3\xc7\x09\xa4\xb5\x41\x41\x4a\xe8\xd3\xac\x6c\x7a\x5a\x66\xf7\x22\x01\x73\xe2\x12\x15\x99\x1e\xda\x0c\x46\x27\x4a\xe2\xc9\xa3\xa4\x6a\x9b\xc3\x31\x68\x80\x86\xa7\xb6\x37\x47\xf4\xca\xe0\x03\x8c\x4c\xfe\x20\xcd\x2f\xfe\x40\x38\xc5\xf2\x87\x58\x06\x33\x9c\x81\x84\xac\x69\x5a\x15\x0e\x52\x32\xbd\x09\xe5\x79\xe0\x6a\xb4\x46\xc1\x39\xd5\x85\x9c\xae\x29\x55\x74\xf3\x4d\x53\x06\xab\x5e\xcc\x65\xa6\x00\xbe\x5a\x9e\x52\x24\xff\xb9\x54\xf4\xbb\xbf\x10\x1b\x9f\x6c\x31\x1d\xfd\x5b\xd5\x77\x2e\x2e\xaf\x43\x7e\x66\x28\x83\xce\x80\xc2\x09\xca\x02\x13\xc3\xa4\x94\x7c\x7e\x62\x4c\xa0\xf7\xb1\x52\x19\x0d\x3e\x41\x0d\x98\x99\x77\xa0\x95\xe5\xa7\x79\x51\x3c\x14\x28\x79\x94\xd9\x6a\xd3\x3b\xd0\xca\xec\xd3\xd0\x1d\xc4\x8d\xb9\x99\x56\x69\x1e\x35\x3c\x61\x4d\x10\x9d\xee\x89\xdf\x7c\x78\x06\xd8\xa7\x03\x30\x0d\xee\x2b\x2d\xc3\x21\x27\xea\xde\x21\x19\xc3\xc5\xd5\x9d\xab\x21\x37\x7a\x44\xa6\x3e\x2e\xd5\x82\x69\x34\xb2\xce\xc4\x89\x51\xb2\x21\x5b\xcd\x8b\x4b\x38\xd2\x0b\x53\xa4\xe8\x56\x98\x16\xf0\x13\x93\x09\xc1\x89\x49\x85\x86\x27\xa0\x30\x49\x86\xc1\x62\x1a\x73\x2c\x63\x98\x68\x75\xcd\x75\xdf\xc6\x4b\x38\x20\x2a\x5e\x73\x03\xee\x08\xe6\x00\x52\x5c\x58\x8a\x2d\xbb\x63\x37\x00\x3a\x8a\x60\x43\xe6\x99\xb7\x60\x63\x26\x37\x60\x43\x62\x99\x86\xed\xd4\x68\x7d\xf1\x83\x93\x92\xee\x75\x5f\xd8\xa5\x64\xaf\x6c\x3e\x02\xde\x7c\x74\x50\x38\xa9\xe0\x9c\x42\x57\x43\xa7\x2a\xd1\xc4\xb8\x49\x49\xc9\x36\x1f\x61\x48\x57\x5e\x7e\x96\x8f\xcd\xe7\xfc\x59\x85\xae\x4d\x62\x6f\x62\xc3\x49\xa5\xe2\x0d\x8a\xf9\x38\x36\x93\x45\x23\xec\x1e\xce\xd7\x2b\xad\xcc\x09\xff\x5b\x90\xa4\x97\xe2\x43\xee\x24\x0a\x61\x93\xca\xe2\x7d\x93\xfb\x2e\x4a\x0d\x36\xd0\x74\x1d\x04\x8f\xb3\x5f\xeb\xf0\x9b\xc5\x33\x51\xda\x40\x72\x1d\x1e\x7e\xd8\xea\x3a\xdc\x54\xd6\xbc\xd0\xe3\xe4\x40\x8b\x38\x5f\xd2\xf6\xb6\x95\x3c\xa3\xa8\x68\x6b\x73\x39\x0b\xec\xb5\x95\x22\xff\x2d\xcf\xf8\xaf\x92\x7f\x5f\x04\x62\x75\x9e\x3f\x64\xe1\x63\x4a\x98\x3a\x29\x54\xd5\x16\x45\xfe\x48\x7a\xd3\x96\x49\x49\xb4\x6e\x2e\xe3\x77\x0d\xbf\x5d\x39\xf6\x84\x99\x67\x6a\x81\xa2\x7f\x2e\x94\xb6\x25\x95\x5c\x39\xd0\xc9\xaf\xd8\xa0\x6a\xf3\xf1\xb3\x02\x60\x5b\x6a\x70\x25\x9a\x2f\xe8\x2a\xa3\x67\x67\xc8\xcc\xc9\x31\x22\x06\x2d\x74\x36\x6d\x39\x2b\x54\x36\x58\xf5\x32\xaa\x57\xa7\xee\x2a\x86\x4a\xd1\x1a\x33\x6b\x8b\x8f\x94\x45\xe2\x07\x34\x49\x4c\x04\x0b\x03\x6a\x13\x20\x56\xe9\x4b\x6e\x58\x89\xbd\x60\x49\x05\x8c\xad\xdf\xca\x7b\x2b\x98\x2c\x4a\xd2\xaa\x0e\x0a\xf9\x5f\x5c\x81\x56\x41\x5b\x35\x6a\x01\x30\x35\xb4\xc6\x16\x2d\xb0\xfb\x35\xff\x0e\xf6\x34\x1b\x33\x7e\x3c\x53\x39\xc9\x3d\xc0\x4a\xda\xe0\x6d\x0b\x3d\x51\xbd\x69\x85\x9e\x08\xca\xaf\x46\xe8\x26\x07\x74\xc1\x6e\x87\x90\x26\x2f\x89\x1e\xdd\x25\xb7\x85\xe4\x2c\x72\xa0\x52\x87\xb0\x2d\x72\xa0\x2e\x4d\x94\x8b\xb4\x24\xad\xd9\xa9\x38\x6c\x03\x62\xf2\x38\x84\x4b\x36\xac\x43\x64\x59\x2d\x4f\x4d\x79\x75\xe7\xca\x34\x0c\xdb\x55\x3e\x5a\x32\x65\x98\xd1\xea\xce\xd5\x06\x64\x7a\x43\x4c\x58\x1d\xe2\xd3\xfc\x5e\x9f\xbc\xdf\x70\x0c\x9b\xcf\x86\xde\xd9\x8f\x52\xde\xf4\x05\x42\x04\x53\x5b\x5d\x19\x5a\xfc\xa2\xf6\x5d\x13\x21\x7b\xec\x1c\xf3\x1b\x01\x3f\x7e\x21\x82\x57\x39\x74\x61\xbe\xf5\xde\xf0\x22\x6f\x49\x83\x09\xad\x11\x70\xb2\x75\x0c\xce\x18\x43\x61\xc9\xad\xc0\xa7\xe9\x65\xd2\x35\x21\xcd\xb0\xa7\x35\x11\x9b\x1d\x6e\xb3\xf3\x22\x09\x5d\xc6\xe6\x0a\xfd\xc9\x7d\xcc\xe5\xf7\x5a\xf7\x25\x21\xc1\xda\xd1\xc2\x16\x17\x91\x9a\x14\xc4\x00\x5e\x5d\x16\x6b\x05\xf5\x67\x86\x5c\x45\xea\x92\x87\x50\x53\xed\x98\x62\x71\x71\x44\x55\x59\xb5\x0a\xaf\xe5\x2d\x13\x3f\xa2\xea\x26\xc4\x78\x2d\xc6\xc3\x10\xb0\x96\xdb\xed\xde\x73\xdb\xc8\x8b\x60\x94\x69\x98\x6a\xb8\xeb\xa3\x5c\x0e\x38\x42\x2d\x45\xda\x59\x70\x7b\x2f\x51\x2e\x6f\x24\x4b\xef\x3e\x92\xa3\x65\x0b\x85\x74\xf7\xf5\x13\xb4\x89\x65\x78\xdd\x48\x6f\xcb\x22\xe5\x49\x83\x01\xaf\x33\x68\x13\xe0\x39\x63\x44\xda\x9f\x06\x74\xb0\xa6\x93\x00\xa5\x78\x36\xdb\xa8\xad\x63\xfb\x7c\x79\x28\x43\xca\xb4\x74\x3c\x2a\x1d\x2f\x8b\x2b\x4c\x8f\x43\x30\xf9\xe5\x4b\x67\x26\x3e\xab\x8d\x09\x5d\xa2\x57\xbc\x0f\xb0\xae\x60\x9b\x4c\xf1\x92\x73\x31\xc3\xe0\xf2\x62\x12\x8c\x3d\xf9\x51\x5c\x38\xa6\xf5\xad\x8a\xe0\xb4\x48\x6b\xe2\x85\x9e\x05\x5f\xf7\x52\xfc\x92\x19\x77\xff\xee\x19\x90\x6c\x84\x8e\x2b\xf6\x78\xad\x38\xce\x1c\x81\xb0\xb9\x7e\x57\xa0\xa8\x2d\xd4\x57\x05\x38\x93\xa3\x0f\xcd\x0e\xeb\xf1\x84\x30\x7b\xae\x13\x0f\x77\xf1\x21\xa0\x57\x8c\xc3\x23\x59\x96\xd0\x7a\x9c\x4c\xfc\xe2\x89\x44\xc2\x5e\x6f\xd4\x41\xe6\x17\x6f\x14\xeb\xeb\x59\x5e\xf7\xd1\xd7\xb3\x70\x5c\x6a\x8e\x5b\xde\x0d\xd6\x1d\xb5\x74\x5c\x6a\xeb\x5e\x16\x6e\x47\x4a\x5e\x38\x28\xbd\x26\xf0\x39\x0e\x5b\x64\x5e\x28\x4b\x04\xfd\xff\x10\xfa\xaa\xbd\xf1\x13\xa1\xaf\xcd\x1f\xa0\x3f\xc3\x1f\x64\xe5\x10\xb2\x4f\xb0\xf2\xe5\xcb\x63\xbf\x7b\xc0\x0f\xc9\xc7\xc8\xa9\xda\x3e\xe6\x2f\xd5\xd7\xf2\x49\x81\x44\x93\x97\x80\x63\xe7\x05\x41\x78\xfa\x15\x44\x78\xf8\xd1\x69\x48\x68\xe2\x85\x1d\x1e\x36\x88\x01\x1d\x04\x31\xc7\x85\x60\x84\x95\x61\x7c\xc2\xd2\x0a\x45\xfe\xe4\x80\xa2\x2f\x70\x06\x10\xe7\x13\xaa\x2c\xfb\xf3\x91\x6b\xeb\x2b\x21\xc1\x7d\xe9\xd9\x16\xde\x90\xe5\x28\x7e\x72\xac\xdd\x17\x50\x0a\xf9\xe6\x53\x02\xbe\x8b\x17\x22\xa2\x9d\x0a\x16\x55\x3d\x71\x1f\xd5\x51\xb0\xf9\x43\xd8\xa8\x86\xc1\x4f\xd5\x93\x05\xed\xfd\x54\x27\xc2\x76\x7e\xb8\xd4\x22\x07\xfd\x54\x33\x79\xb2\xb7\x1f\x35\x50\x3d\x27\x1f\xc3\x40\xd5\x6d\x3e\x8d\xf0\x52\xc8\xd9\x47\x96\xa5\x5f\xe2\x23\x33\x12\xd4\x3d\x00\xc4\xb4\xba\xee\x99\xe5\x0b\x97\xbf\x9d\x57\xd7\x60\x99\xfd\x81\xdd\x99\x76\xc5\x86\x4c\x3f\xf2\xc8\xc1\x2c\x3e\x61\xe2\xb4\xb9\xd7\x3a\xb4\x0a\x7d\xe4\x1c\xda\x74\x3f\x43\xa9\xde\xdd\xdd\xba\x60\x31\xaf\xdd\x67\xaa\xb9\x42\xac\x3e\x66\xaf\xd0\x1c\xf2\x59\xb1\x60\x60\x44\x06\x0a\x4d\x23\x1f\x63\x4d\x34\xe7\x7d\x54\xec\x34\xb0\x7d\xb4\x45\x6a\x79\xfb\x2c\xa7\xcf\xf0\xcb\x43\x0a\x84\x97\xc5\x7e\x3c\x18\x2b\xe6\xc5\x0b\xd6\xc7\xa1\x3d\xe4\xf3\x71\x8b\x90\x90\x3f\x1f\x8f\x03\x1a\xca\x47\x65\x4c\xcd\xfb\x63\x64\x87\x5e\xa1\x8f\x41\x8a\x8a\xf6\x9f\xd3\xd8\x7b\xf1\xeb\x8c\x23\x6b\x07\x01\x26\x16\x20\x81\xd6\xc5\x4f\x69\x85\x2a\x13\xff\x90\x41\xa2\x2d\xff\x8e\xcc\x34\x6d\x60\x78\xb7\x88\xc7\xf5\x08\x4d\x30\x1f\x9c\x71\x54\x34\x6a\x94\xff\xd9\x60\x65\x5d\x5e\x0f\x55\x9a\xfe\xa8\x91\x6d\x75\xf5\x1b\x52\xf8\x91\xaa\x8b\xc8\x17\xf2\xf5\xf4\xf9\xb2\x50\x05\xcf\xaf\xbd\xb1\x2e\x72\x55\x76\x29\x03\x06\x4a\x1d\x4e\x1f\xb5\xad\xe5\xdf\x5d\x3b\x54\xf9\x73\xbb\x15\x10\xc2\x8f\x79\xae\x75\x1b\x7d\xd0\x98\x96\x94\x41\x53\xa3\x9b\x17\x17\x1a\x3c\x2b\x8f\x63\x30\x36\xd9\x1e\x9a\x24\xca\x80\x46\x6f\x58\x7d\x24\xc3\xaa\xc2\x1f\x0d\x8d\xda\x14\x3e\x6f\xf4\xc5\x67\x46\x89\x78\x7b\xea\x83\x27\x2c\xa9\xd5\x9c\x47\xcc\x6b\xf0\x92\xfc\xa5\xf3\x62\x45\xaa\xe4\x0b\x59\xb4\x90\x8f\x4f\xac\x7a\x1a\xe4\x4f\x4a\xa3\x1b\xc5\x7e\xe2\x90\xea\xa0\xf7\x29\x51\x54\x03\x3e\x93\xea\x1e\xdc\xe5\x84\x12\xae\x12\xbf\xdc\xbe\xf0\x4b\x0e\xc6\x41\x67\x78\x9a\x5a\xfc\x20\x3d\xe8\xfe\x40\x51\x71\xe8\xf0\x99\x31\x5a\x74\x9f\x3d\xb7\xc8\x53\xa7\x36\x3a\xe8\xfb\x89\x72\x41\x3d\x87\x76\x16\x0b\x6b\xd9\x6d\x71\xbe\x7e\x24\x06\x67\x5b\x3f\xfc\xc0\xc2\xab\xbb\xce\xd0\x55\x59\x18\xdc\x38\x49\x60\x48\x81\xb9\x76\x12\x13\x68\xa2\xac\xb3\x06\xc6\xfb\x43\xa0\x00\xcd\xcd\x64\xe4\x57\x5b\x05\xa8\x1d\x3c\x39\x9b\x07\xd3\xb1\x8d\x9a\x80\x37\x9c\x88\xfd\x94\x89\x6b\x27\x09\x94\x35\xe3\x9e\x94\x41\x30\x5e\xe9\x24\x08\x70\x56\xdb\x92\x4f\xda\x0d\x6b\xca\xaf\xcc\x22\xc8\x66\xb6\x81\x75\x73\xf9\xc8\x6b\x78\x82\xa6\x47\x62\x1e\x9e\x1d\x18\xb8\x1a\x87\xd1\xfd\x46\x94\xe0\x34\x9f\x08\xf4\x54\x2e\x68\x27\x42\xfc\xac\xfe\x3d\x46\x63\xcd\xba\x92\x34\x9d\x9c\xd8\xde\x4c\x19\x78\x12\x45\xaf\x16\x7f\x92\x59\x40\xed\xfb\x1c\x0e\xcd\x54\x09\xb4\x30\xfb\x7c\x3b\x91\xe1\xbb\x90\x1c\xe0\x80\xd3\x08\x9b\xdc\x70\x04\xc3\xd5\x50\xf6\x4f\x42\x30\xba\x43\x4f\xa9\x1a\x06\x8b\x93\x80\xc3\x12\x40\x23\xe0\xb0\xc7\x0f\xa2\x47\xb6\x39\xe2\x2f\x67\xfc\x34\x77\xa1\x72\xb1\x05\xbe\xbc\xe3\x70\x5a\x5a\x3a\x9e\xc9\x4a\x09\xd7\x3a\xa7\x72\xe2\xf0\x87\x13\x3d\x90\xf5\xe1\x90\x8a\x43\x65\xbe\xe4\xe1\xd0\x42\x0d\x4e\x71\x1a\x96\x08\x7d\x38\x55\x00\x26\x66\xe5\x53\xaf\x95\xf6\xed\x73\x61\x57\xf6\x54\x59\xb3\xae\xe5\xef\x72\x2f\xb7\x13\xf3\xa0\xbe\x85\x73\x79\x39\xdd\x67\xae\x46\x79\xc2\x17\xd6\xda\x18\x9f\x7b\xb2\x22\xdb\x8a\xd2\xb9\x3c\x93\xa7\x11\xed\xe0\xc4\xfd\xa5\x27\xf1\x84\xcd\x74\xa4\x88\xf3\xe3\xfd\x57\xbe\xa1\x00\x9c\x1e\xde\x93\x54\x47\x53\x48\x71\x33\xb0\x0b\x72\x23\x0f\xb5\x56\x9d\x6a\x13\x9a\x51\x4f\xb4\x09\x03\x57\x4e\xcb\x38\x68\x60\x3c\x55\x26\x3c\x86\x11\x45\xcf\x47\xa7\x4a\x3c\x50\xe3\xa2\x9f\x16\x63\x2b\xad\x95\x78\x56\x6d\x12\x8f\xb0\x2f\x9a\x3f\xe0\x3c\x4d\x44\xee\x00\xca\x4b\xe2\xf6\xa9\xcc\x52\x6d\x4e\xe6\x57\xd8\xd9\x69\x82\x03\x34\xcf\x53\x7d\x43\xeb\x16\xa5\x81\x72\xd0\x95\x4b\x54\x03\x4c\xb0\x30\x2d\x5d\x27\xc9\x0e\x0c\x35\x3d\x2f\x6a\x5a\xc0\x63\x4f\x42\x1e\xbb\xd0\x20\x03\x52\xf7\x08\x93\xe8\x48\x4b\x1c\xf5\xe1\x72\xdc\xef\x3a\xcd\xad\xa8\xb4\x73\x06\xf3\xc2\xb8\x73\xca\xbc\xfc\x01\x2d\x44\xfe\x7c\xde\x96\xd8\xf3\x9b\xca\x10\xec\xae\x65\xf4\x62\x8c\x3b\xe0\xc4\x04\xc9\xad\xa8\x97\xe3\xb4\xd8\xa3\x87\x15\xbb\xa1\x86\x8f\x13\xb3\xa1\x77\xcb\x4e\x53\x2b\x22\x99\x9d\xde\xf6\xf3\xe2\xe8\xf9\xc8\xdc\x7d\x86\x46\x0b\x3e\x8c\x86\xdd\x91\x31\x1a\x7a\x91\xed\x84\x1f\x1a\x9c\x71\x3e\x5c\x57\x46\xd2\xa5\xaa\x52\x33\x48\xed\xc4\x09\xd7\xa2\x4f\xd8\x14\xb6\xfa\xf3\xb1\x20\xb7\x94\xee\xb1\x24\x88\x3f\x04\x90\x58\xc2\x2b\x90\xe8\xd5\xd0\x7e\xcd\x86\x94\xda\xab\xaa\x6a\x67\x28\x31\xd5\x17\xd2\x54\xc8\x8c\x5e\xe7\x67\x4f\x13\xdd\x8e\x35\x90\xb1\x20\xc7\xf7\x96\xa0\x71\x41\xf8\xe9\xcc\xf7\x7a\x5a\x0b\x98\x11\x2e\xb2\x14\x68\x29\xb9\xb8\xd6\xe7\x0d\xb7\x0b\xd5\x66\x34\xe6\x77\x1d\x1c\xa7\xe5\x33\x50\x82\x9c\x5d\x38\xe9\x8c\x53\xba\xac\xfd\xcb\xe6\x5e\x87\xc6\xba\xcc\xf3\x89\x95\xd5\x4e\xc5\xe8\x66\xe3\x9b\x8e\x6c\xfc\xe0\x1f\x4c\x3c\x93\x01\x91\xd3\x77\x11\xa8\xa2\xea\x74\xc5\xbd\x3e\x60\x7c\x11\xa8\xe2\xc1\xbf\x2c\xd8\x44\xba\xeb\x76\x51\xa5\x69\x1c\xb6\x50\xd3\x43\xa4\xbb\x90\x0b\x8a\xa4\xed\xc2\xde\xa9\x8a\x73\x91\x5f\xd9\x93\x7f\x85\x59\x93\x53\x4d\x9d\xac\xda\x6b\xfb\x8e\xca\x5d\x19\x84\xc2\xa2\x78\x85\xf6\x34\x7c\xc1\x4e\xc3\x79\xa4\x4e\xe2\x9e\x0c\xb3\x24\x93\xb2\x69\x98\x2f\x03\x55\xb4\x0d\x5f\xde\x68\x90\xc6\x5f\xde\x68\x30\x0e\xe4\x32\x6a\xc5\x18\x8f\x4b\x55\x2a\x9e\x25\xe6\xee\x42\x51\xc2\x82\x9a\x5e\x58\x3d\x95\xf4\x2f\x2f\x3b\x04\x58\x4d\xb3\x1c\x70\xf5\x82\x83\xa1\x20\x57\x31\xe3\x05\x93\xe4\x52\x83\x86\xd2\xab\x58\xd9\xc7\x67\x0e\xdf\xf4\xd9\x22\xf9\x0e\x41\xc6\x02\x08\xd9\x55\x23\x97\x21\xcf\x72\x5f\xa0\x60\xb1\x27\xb8\xd0\x45\x62\x02\xfd\x99\x17\xc9\x08\xa8\x7b\xd0\x2e\x62\x64\xbc\x82\x70\x11\x2e\x6a\xd4\xc9\xc5\x0d\x06\x2f\x88\x5e\x58\x3e\xb5\x82\x5e\x44\xc8\x74\x17\x83\xe5\x53\xd2\x7d\x59\x02\x0a\xfd\xef\x6a\xe0\x8b\x30\x6a\xb0\x32\xd1\x25\x0c\x99\x0e\xd0\xa4\xbe\xa2\x45\x3b\x7f\x7c\x59\x58\xb3\x5d\x2d\x60\xcf\xd0\x08\x38\xaa\x03\x97\x96\x4c\x2d\xf0\x57\xe7\x2e\x0b\xb4\xfb\xe2\xc2\x83\xce\xfa\x6b\xeb\x8e\xa3\x23\xb3\x5f\xa1\x3b\xa2\x09\x5c\xc4\xdd\x0c\xf7\x8a\x5c\x4b\x2b\x3a\x52\x84\x9d\xbe\x5c\xcc\x9c\xdd\xd1\xb9\xa8\xe2\x7b\x75\x41\x60\x6b\x40\xef\x56\x0d\x05\x73\x0f\x96\x31\x34\x62\x10\x57\x03\x49\x36\xdf\x2e\x1c\x8d\x1d\x1d\xf2\x42\xd5\xec\x53\x80\x87\xaa\x29\x41\x08\x71\x47\x10\x0e\x89\xbf\xed\xa7\x47\xcb\x0e\x0c\x20\x6d\x22\xda\x54\x2b\x81\x04\x5d\xdc\xe3\xeb\x90\xcb\x6b\x1a\x8d\xe1\x12\xa9\xe7\x1e\x54\x81\xc4\x48\x1d\xed\xf0\x5a\xa2\xa9\x2d\x88\x2c\xed\xdd\x8f\x62\x74\xbf\x8a\xae\x18\xdd\x2b\x7a\xd2\xe1\xcb\xca\x08\x9e\xdf\xd0\x41\x45\x86\x8f\x92\x8d\x34\xc9\x64\x46\x9e\xb8\x8f\xca\x83\xe8\xf3\x31\x35\x26\x73\xc7\xb5\xa8\x95\xea\xfa\x08\x22\x61\xfa\xd1\xce\x09\xb0\xb1\x48\x0e\xa7\x68\x8e\x44\xad\xd1\xd7\xd6\x6c\xb3\x69\xc9\xae\x33\x16\xc5\x57\xca\x0d\xae\xc3\x84\x89\x2a\xb9\x57\x28\xb9\x6e\xe8\xe9\x5e\xf9\x0c\x67\x46\xd7\xb8\x4e\xab\xb1\xd9\x5a\xdb\x24\x93\x3d\x9d\x93\x43\x0b\x74\xff\x0e\x92\x20\xaf\x5e\x38\x16\x3b\x0a\xc5\x25\xb7\xf7\x1c\x7a\xc1\x41\x8b\xf5\x75\x49\x73\xe6\xb7\xe6\xbd\xcb\x14\xca\x53\x1a\x1c\xc6\x46\x44\x8c\xeb\x0e\xe4\x60\xf1\xf8\x01\xfb\xf0\xab\xc0\x5f\xa6\x40\xb0\x8c\xd7\x9e\x2d\x2f\x68\xee\x8e\xeb\x09\x41\x9c\x16\x04\x71\xea\x37\xb9\x1e\x7b\x02\x58\x0f\x42\xb9\x27\x84\xdb\x73\xdd\x63\xf4\x48\x0c\x05\xc4\x43\x16\x23\x77\x76\xb3\xdb\x12\x84\xc1\xfc\x82\x1a\xa4\xaf\x97\x80\x37\xb1\x72\x73\xd5\x62\x9e\xf8\x0b\xef\x5d\xf7\xe4\xbc\xd4\xba\xc3\x70\x75\xbd\x8e\xb6\xd7\x76\x1f\x2a\x91\xd0\x82\xdb\x42\xd9\xee\xcd\x6d\xea\xbf\xe4\x57\xec\x0d\x6b\xb8\x0f\x75\x86\xea\x0f\xe1\x14\xd9\xcf\x5e\x55\xa0\x8e\x47\xa3\x58\x6e\xed\x08\x7b\x77\xd8\x02\xd9\xfe\x9b\x3b\x0c\x7d\xda\x82\xed\x84\x64\xde\xe1\xe3\x6b\x3c\xb3\xb5\xec\xc4\x8d\xbf\xcf\xe4\xb9\x37\xd1\x2e\x66\xb9\xbe\xb1\x16\x52\x4c\xa4\xdd\xc9\xe9\x31\xa3\x24\x0a\x77\x5f\xa0\xab\x48\xb5\x77\x8e\xe9\x31\x25\xf9\x1d\x16\x8c\xdb\xbc\xc4\xaa\xa9\x77\xb8\xf8\xa2\x89\xd1\x4b\x76\x9c\x89\xe3\xaa\x7e\xa5\x07\xcb\xbf\x6b\xa6\xe2\x04\x50\x09\x78\xbf\xb0\xbc\x62\x39\x38\xc4\xb4\xbb\x04\x8a\x32\x64\x09\x2c\x02\x54\x7a\xd6\xd4\xc8\x6e\x72\xfe\x2b\x9e\xde\x55\x4a\x2b\x10\x6b\xcc\x85\x9e\xcd\x28\xac\xb7\xf3\x0e\x8b\x21\x27\xe1\xf6\xf2\x9c\x46\xef\x9b\xd0\x16\x33\xd6\xdc\x5c\xa4\x93\x84\xdf\xb2\x1e\xcc\x23\xf7\x66\x37\x65\xb9\xff\x4d\x49\x7c\xf8\x03\x20\xc2\x9e\x72\xeb\x68\xab\x7e\x24\xe7\x1d\xfe\x20\xf3\x29\xb6\x60\x08\x70\xf2\x8e\xba\xd9\x02\xb5\x07\x02\x30\x77\x6f\xa0\xcb\x3f\x6e\xee\x96\xab\xca\xde\x56\x59\x6f\xc2\x41\x9e\xb1\xfc\x01\x2f\x1c\x82\xf9\x8d\x33\xeb\x10\x24\xc1\x26\x9c\x89\x4a\x31\x08\x7e\xcb\x26\xb0\xb2\xdc\xa6\x8d\x31\xd4\xf0\xf6\x82\x9d\x01\x7b\x77\x5c\xaa\x83\xe6\xdf\x24\x91\xf1\xf8\xde\x46\x4d\x1a\x84\x78\x73\x3d\xdc\x18\x94\x9b\x8b\x74\xde\xf4\xba\x83\x63\x0c\x3f\x92\xed\x8a\xb1\xdc\x9e\x33\x4f\xf5\x2d\xf7\x70\xad\x5c\xf0\x36\xeb\xcf\xbd\x24\x36\xa2\x6f\x98\x30\x05\xdc\x12\x01\x45\x72\x3d\x58\x81\x8d\x4b\x32\x1f\x9d\xc9\x60\x3d\x17\xa6\xde\x0f\x3c\xc5\x6f\xb5\x45\xe0\x6f\xa8\xdf\xbd\x02\x18\xac\xe0\xa3\xd4\x25\x7e\x7c\x04\x86\xcf\xda\x0e\x61\x28\xf7\x47\xbc\x43\x10\xba\x3f\x31\x2a\x0b\xe2\x72\xb7\x42\xeb\x4d\xac\x8a\xd9\xb7\x6e\xef\xbd\x69\x2b\xbe\x4f\x2b\x82\xfb\x95\xb9\x65\x34\x6e\xdf\xa7\x90\x65\x10\x22\x54\x0e\xac\x29\x37\x8c\x60\x24\x5b\xbb\x30\xa6\x7b\x05\xc8\x68\x70\xa9\x6f\x49\x85\x50\xfc\x06\x72\xf8\x7d\xe9\x4c\x6c\xbe\x60\x49\x90\x3a\x91\xd6\x8e\xe2\xba\xed\xbe\xa4\xb7\x6e\xc5\x8d\x5e\x2a\x4a\x78\x03\x4e\x9d\xf3\xbe\x01\x89\x93\x22\xc2\x84\x9a\xeb\xed\xc6\xb2\x39\xb0\xea\xdc\x86\x5e\x2a\x12\xdc\xb7\x41\xa3\x9e\x9f\x5b\x53\xb4\x9b\x4a\x4a\x5c\x93\xf8\xdd\x68\x81\x01\xaa\xdb\x7c\x33\x2c\x29\xcc\x9f\x1e\x51\xcc\x9f\xda\xfa\x6f\xe2\x45\xac\xcc\xd6\x6e\x2e\x0e\x98\x4a\xfe\x7e\x02\x9c\x74\x85\x61\x74\x89\x29\x8f\x57\x9d\x59\x92\x11\x98\x6e\xc6\x63\x81\x17\x7b\x95\x38\x89\x0a\x8f\xf3\xf3\x99\x40\x20\x47\x88\x1c\xfa\x74\xf4\x0a\x0e\x9f\x49\xea\xe0\x8c\x36\x5f\x2a\x5a\x08\x6e\x12\xd4\x19\x3d\x79\xbf\x0e\xec\xdf\x03\x32\xcc\xf4\x0d\x02\xe2\x57\xea\xc7\xf6\x44\x2d\x58\x67\xf1\x7a\x03\xca\xd1\xcc\xe5\x01\x5c\x9f\xb0\xc6\x42\x26\xa8\xd0\x9b\x8d\xd0\xa4\x40\x6f\x31\x70\xe5\x21\x9f\xad\x7e\x93\xc7\x82\x3c\x1e\x1b\x2a\xf1\xd6\x91\x6d\x00\x76\x70\xd0\x28\xc4\xbb\x3f\xa2\x05\x8c\x6c\x64\x9f\xe3\xd4\x4e\x5e\xcc\xf0\x4e\x0b\x2e\xdd\x45\xe4\x26\x15\x74\xeb\x40\x38\x7f\xe0\x52\x46\x25\x3c\xc9\xe1\x98\x78\xb2\xe4\xe6\xe2\x59\x09\x1c\xe4\x78\xbc\x4b\x20\xda\x3c\x24\x82\xd3\x42\xfc\x98\x9f\xd6\x70\x66\x4a\xe8\x66\x95\x4d\x8b\xe6\x2a\x5b\x59\x34\x37\xe2\x41\x1f\x12\xae\x98\x13\xf5\x41\xa9\xd2\x00\x6f\x01\xdd\x65\x04\xf3\x53\x48\x1f\x7b\xf8\x43\xf3\x07\x5a\x5b\x9d\x8f\xdd\x7b\x8a\x35\x46\xec\x49\x9b\x89\x10\xc4\xda\xab\x8e\x44\x75\xdc\x3a\x50\x43\xa8\x8e\x5b\x07\xfa\x18\xc5\x71\x8b\x6c\x97\xe2\xb8\xd5\xbc\x8a\x8f\x01\x99\x3a\x02\x9e\xb0\x02\x83\xef\x4f\x45\x22\x75\x5f\x60\x55\x46\x49\x3f\x24\xa2\x1d\xb0\x2a\x4a\xde\x16\x6f\x24\x50\xf2\x76\xf7\xf4\xad\x9a\x4b\x41\xdc\xaa\x5f\x9c\x82\xb8\x29\x42\x64\x9f\xa6\x95\xbd\xfa\xa2\x8e\xef\x36\x37\x2f\x77\x35\x47\x7d\x69\xcf\x57\x9b\xc3\x15\x43\x21\x2c\x83\x4b\x15\xee\x46\x19\xdc\xd2\x6c\xdc\x9d\x31\xab\xea\xb1\x81\x7e\xa4\x92\x0c\x4f\x7b\x46\xec\x39\x60\x24\x85\x6c\xc0\x7d\xd8\x95\xcf\x9c\x2c\x71\xc1\x22\x33\x46\x13\x3f\xa4\x55\xd3\x10\x69\x0d\x5d\x2d\xe3\x0f\x46\x5f\x6f\x83\x3f\xdc\x29\x58\x87\x7f\x27\x20\x6a\xda\x96\xca\x2a\xcd\x6f\xa8\x50\x19\x7f\x67\x9d\x62\xc8\xd4\x08\x85\xac\xf1\x4c\x2b\x62\xfb\x0c\x9b\x84\x3c\x3e\x5c\xd9\xd3\x83\xf9\x6c\x2e\x59\x34\xe7\x51\x66\x37\xeb\x99\xa4\xcc\xee\xee\xc8\x17\xa8\xae\xce\xc1\x67\x62\x2f\x11\x7c\x58\x69\xa9\x82\xdb\xa8\x9b\x5b\x54\x1c\x29\x9b\x5b\x92\xe7\x50\xe6\x77\xd8\xd8\x0c\x6c\xd3\xc6\x5a\xfa\x78\xe6\x5a\x81\x35\x02\xa8\x8e\xbb\x47\x63\x41\x58\x56\x23\x91\xb5\xf5\x71\x87\xde\x19\x0b\xe4\x5a\xec\xe5\x21\x82\xe3\x70\x1b\x3f\x81\x2a\xc0\x06\x45\x2a\x02\x86\x9f\x8f\x09\xa1\x01\xa0\xd6\xd8\x38\xae\xd6\xd4\x85\xe0\x3d\x28\x52\x29\x30\x2d\x82\x36\x20\xf3\x0f\x0a\x93\xc6\x3e\x0a\xe9\x66\xad\xb1\x8f\x96\x56\xa9\xd1\x49\x05\xe3\xe9\x37\xcb\x21\x98\xfa\xa9\x10\x09\x33\xa6\x46\x6e\x51\x0e\xa3\x2c\xee\xfe\x8a\xf1\xb8\x6f\x37\x44\x34\x78\xe3\x21\xfa\x5f\x70\xd9\xe6\x33\x74\xd7\x70\x9a\xc7\xaa\x74\x86\xf9\x3e\x57\x6c\x93\xcd\xc5\x0a\x16\x7e\x0b\x5d\x20\x62\xc8\x86\x7e\xc7\x47\x35\x4a\x2f\xde\x73\x87\x9f\x99\x67\x38\xa5\xbb\x7f\xc7\x3a\x18\xe3\x8e\x01\xed\x0b\xce\xec\x9a\xee\x18\xdc\x01\x49\xbf\xec\x47\x24\x38\x51\xc1\xa7\x06\x6e\xa5\xfc\x7a\xa3\x06\x6e\x1d\xa8\xd1\x94\xc0\xad\xea\xc1\x8f\x29\x5c\x35\xe1\x52\xea\x36\x47\xee\xf2\xe7\x41\xbe\x10\xc3\x30\x67\x9a\x85\x8a\x8a\xb6\xd5\xc2\x5d\x14\xb1\xad\x26\x2d\x7a\x5e\x0e\x34\x36\x03\x4b\xd8\x6a\xc5\x7f\x0c\xa0\xf4\x10\xbe\x40\xbc\xfb\x6c\xa4\xb2\x53\xb2\xa2\xfe\xf0\x07\x2b\x11\x3b\x00\xb7\x34\x9c\x9d\x16\x4f\x9d\x69\x94\xb2\xad\xa3\xdb\x58\xd3\xd4\x7e\x7e\xad\x27\x33\xbf\xcf\x4e\x45\x99\xdb\xa2\x49\x9c\x32\xb7\xbb\x55\xe3\x85\x45\x21\x0d\xbd\x5c\xdd\x3b\xa0\x70\x2f\xf6\xd0\x48\xc0\xfb\x72\x8f\x2f\x82\xb9\x5f\xfd\x9b\x7a\xf0\x2c\x86\xab\xd9\x9d\x62\xb8\xc5\x13\xf4\xca\x52\x51\x7f\xa8\x85\x5b\xa9\x60\xdb\x28\x85\x5b\x0d\x3c\xb2\x14\x6e\x84\x72\x53\x0b\x37\x7b\xb7\xd3\x5a\xb8\xde\xef\x78\x65\xbb\x68\x4b\xaf\xe1\x23\xce\x3b\x71\x31\xe1\xf0\x7b\xc2\x78\x90\x8b\xa8\x8a\x5b\xbd\x3d\x4a\x51\xdc\xa2\x5a\xf0\x26\xa9\x23\x03\x47\xf2\x57\x50\xf3\xe5\xb6\x04\x45\xb2\xdb\xeb\x05\x09\xbd\x96\x2f\x37\xfb\x0e\x01\x9d\x13\xe2\x20\x7f\xcf\x81\xd8\x74\x95\xb5\xc5\x34\x5f\x24\x28\x82\x89\x64\xf3\xda\x68\x5f\x6f\x4e\x40\x10\xde\xc8\xfa\xc2\x04\xb3\xf4\x04\xe1\xe6\x25\x91\x9a\xf1\x67\x2f\x25\xe6\xcc\x12\xf1\x6a\x14\xd5\x21\x4d\x3d\xde\xaa\x9d\xed\x35\xd6\x24\x26\xa2\x81\x14\x01\x83\x12\xbc\x53\xd3\x34\x25\x78\xcb\xe1\x8a\x30\x8f\x46\x58\x72\x94\xe0\x85\x36\x50\x81\xb7\x8e\xe1\x33\xe1\xd8\x72\xdd\x28\xbb\x2b\x17\xa2\xec\x6e\x51\x07\xb1\xec\x6e\x37\x71\x22\x75\x77\xf3\xaa\x76\xab\xdb\xc2\x25\x61\x3a\x8d\xe0\xf3\x17\xdb\xa9\x71\xc9\x6f\x0d\x48\xd1\xa4\x92\xed\xdf\x2d\xf3\x82\xa1\x0e\x5e\x8a\xf0\x56\x9d\x2c\x2f\xfa\xac\x06\xfd\x17\x15\xd6\xb8\x5c\xcb\xf1\x2e\xc3\x97\x5f\x85\x04\x11\xa7\xc5\xd8\x40\xa4\x39\x36\xcb\xd8\x3a\x6c\x31\xf1\xbf\x75\x77\xbb\x1e\xb5\x37\x04\x01\x04\x36\x6a\xea\x56\xad\xb8\xaf\x39\x5b\x03\x0a\x28\xb7\xa3\x3b\x06\xdb\x84\x89\xe1\xb5\x58\x5d\xac\x95\xfb\x89\xc6\xb2\xbc\xa4\x5d\xf3\x5e\xc1\x6b\xdd\x3a\x5d\xd3\xd6\xd1\x8d\x08\xf5\xd7\x50\xd0\xb5\xec\x0b\x49\x75\xfa\x15\xe6\x86\xe6\xb3\xf9\xa0\x98\x2d\xf7\x13\x95\x78\x5f\x6e\x6d\x1c\x02\xad\xc3\xfa\x84\x3f\xa5\x6f\x8c\xaa\x7a\x8d\xfe\x0c\x78\x20\x69\x68\xff\xa4\xec\x6e\x24\x95\x7b\x11\x3a\x86\x25\x12\x28\xc1\x5b\x2d\xac\xf2\x92\x7f\xcd\x2c\x86\xaf\xd7\x3c\xf4\xf6\x52\x83\xb7\x58\x13\x87\x12\xbc\xfb\x07\x5b\x80\x2d\xd5\x8f\x02\x5b\x00\xe0\xf0\x90\x79\xec\x15\x30\x60\x6a\x2f\x02\x86\xf1\x6f\x16\xe7\xd5\x35\xf3\xaa\x92\x23\x60\x51\x9a\xb7\x8e\x39\xbe\x25\x78\xb8\xa4\xa7\x67\x43\x8f\xb4\xb4\x45\xd5\x1d\x61\xd3\xaa\xbd\x16\x3c\x7a\xcd\x0b\x1b\x8b\x22\x73\x80\x75\xa4\xa8\xda\x5b\x96\xf0\x37\x21\x3e\x6c\xcc\xa2\xbd\xc9\x5b\x01\xd4\xe2\xdd\x6b\xa2\x35\x21\x4a\x7a\xfa\xac\xc5\x6b\x19\x25\x6a\xf1\x16\xca\xec\x36\x6b\xf1\x1a\x1b\xfe\x1a\xac\xa4\xf7\x96\xfa\xbb\xc5\x8c\x97\x96\xdf\x35\xfd\x37\xe5\x77\xab\x85\x4e\x5e\xaf\x50\x06\x9c\x57\xcc\x83\xd5\x91\x0d\x47\x9d\xe8\x55\xee\x11\x41\xb0\x25\x7b\xb3\xfc\xfd\xc4\x1e\xd3\xfa\x13\x38\xe8\x57\x92\x79\x97\xf4\x71\x70\xba\xfd\x2c\x44\x77\xff\x8e\x24\x77\xd8\xda\x83\x81\xdc\xff\x7e\xf4\x2c\x48\x9e\x3f\x60\xde\xf2\x07\x1d\x2b\x3e\xbf\x0e\x41\xb7\x5c\x53\x31\x20\xe0\x3d\xa1\xe7\x6e\x3e\xd2\x50\xf1\x52\x06\xf5\x7b\xa7\xbe\xa6\xf7\x8c\x13\x4a\x57\x38\x9b\x93\x20\xc7\x3c\x60\xa2\xee\x17\x71\xc8\xf0\x14\xab\xf7\x6a\x36\xb7\x7a\x6f\xdc\xaa\xa0\x7c\x6f\xd1\x50\xf2\x5e\x41\x73\x7c\x11\xb9\x51\x2e\x5e\xf3\x12\xe8\xcd\x8d\x92\xbd\xda\xa8\x5e\x8d\x08\xd3\x67\xaa\xf4\xb9\xc7\x08\x37\xe6\x67\xb6\xcc\xae\xf7\xfc\x29\xa1\x1b\x79\x08\xa8\xa0\x5b\x8d\x24\x79\x6f\x3c\x76\x88\x05\x54\xd0\xcd\xca\xd1\x54\xd0\x4d\x71\x73\xe3\xf5\x6e\x88\x71\x1b\x2f\x6e\x5e\x53\x82\xbe\x4f\x4c\x96\xb5\x3e\x31\x59\x7f\x51\xaf\xf0\x54\x3f\xca\x18\x40\xcd\xcc\xf3\xad\xf8\xc3\x6d\x13\xe0\x83\xd8\x33\x85\x15\x62\x8f\x51\xd9\xaf\xa1\xa8\xba\x4f\x5f\x13\xb4\x19\x76\x60\xa5\x5d\x9d\xc3\xaf\xc9\xda\x74\xfd\x51\x6a\xb7\x9a\x7c\xf1\xb5\x32\x9e\xf7\x42\xde\x2d\xed\xd4\x19\x2d\xc4\x62\x27\x6f\x96\x01\x09\x12\x59\x06\x48\x9d\xd4\x0f\x33\x08\x90\xae\xaf\x47\xb1\x5c\x5c\x54\xfd\x08\xf3\x73\xf7\x65\xe3\x3d\x37\x03\x3a\x35\x71\x2b\x9e\xca\x4e\x4d\xdc\x4a\xae\x8c\xfe\xb3\x0c\x2e\xdd\x9a\x3c\x9e\x9b\x21\x9d\x32\xb8\xbb\x27\x5f\x1a\x2d\x18\x2f\x19\x03\xd9\x78\xf6\x6c\x6c\xb8\xf5\xa8\x89\x4b\x0d\xd7\x4e\x4d\xdc\xca\xb5\xfb\x4e\x4d\xdc\xfd\x95\xcd\x59\x6c\xb2\x05\x32\x50\xb2\x2b\x9c\x7f\x9b\xfe\x75\xab\xe0\xa6\x56\xe9\x09\x9d\x9f\xbc\x06\xdd\xaa\xb7\xa4\x60\xea\x54\xbd\xdd\x40\xff\x2e\x48\xa5\x1f\xe6\x6f\x45\xce\xeb\x14\xc2\x4d\x18\xa7\x3b\x85\x70\x2b\x37\x01\x3b\x85\x70\x73\x77\xed\x48\x20\x84\xe5\x77\xeb\xe0\x4e\xe7\x85\xf3\x96\x88\xe3\x4e\x1d\xdc\xca\x3d\xde\x7e\x78\xbb\x13\x8f\x5c\x3f\x08\x7c\xc5\xd6\xd7\x0f\x92\xcd\x4f\x17\x48\x1e\x57\xaf\x08\xf5\xc3\xa2\x7c\x5c\x7f\xed\x07\xe5\xf6\xa8\xa6\xdd\x0f\x0b\xf4\xb7\xca\xa6\x21\x1c\x70\x2f\xaa\x53\xee\xb6\xce\xe2\x73\xe1\xd9\x06\xac\x21\xd3\x6b\x18\xbe\xbb\x8d\x3d\x06\x95\xc1\x4d\xb1\x5a\xdc\xe7\xea\x78\x2c\x0f\x23\x38\xa5\x31\xba\xf5\x6e\x07\x31\x1b\xfd\x20\xff\xfb\xf4\x19\xa9\x01\x3b\x5c\x3f\xb4\x82\xe3\x35\xee\x07\xc1\x66\x4b\x40\x19\x6b\xc6\x4d\xc3\x4e\xed\xdb\x5c\xc5\x0b\x84\x86\x19\xcf\x0e\xcd\x70\x5e\x1f\x69\x4c\xb6\x89\x9e\x7c\xd3\x45\x4f\xa0\xdc\xe3\xc4\xd3\x29\x32\x03\x51\xda\x9d\x5a\xb7\x95\x50\xda\x7e\x60\x47\x98\xae\x61\x4b\x0c\x79\x39\x89\xee\x31\xf1\x30\x70\x7b\x84\x8c\xa3\xfd\xf0\x6e\xa7\x33\xea\xce\x88\x59\x90\xf3\x67\x8a\xda\x98\xd8\x89\xfd\xea\x87\x39\x7f\x0e\x96\x89\xc4\xc0\x0d\x8c\x7e\x98\xcd\x60\xd0\xcf\x08\xb8\x30\xf2\xe0\xa2\xb3\xe7\x05\x21\xe1\x67\x03\xa5\xd6\xc6\x8c\x86\x54\xdf\x83\xcb\xad\x90\xe9\x11\x99\xd2\x96\xc6\xfe\xc2\xdb\x67\x7c\xc4\x42\x3d\x16\x13\xb7\x56\xa3\x5b\x03\xca\x08\x97\xe9\x14\xc3\xdd\x2f\x60\x0a\xc9\x58\x49\x78\xd1\x0f\x73\xb1\x8a\xf9\x54\xdd\xc7\xb8\xdf\x8f\x49\xdc\xe3\x64\xa5\x5c\x23\x99\xe2\x68\x18\x21\xdc\x20\x73\xae\x36\xc7\x23\xe7\xea\x14\x05\x34\xcf\x37\xbb\xd5\x3c\x7f\x30\x9c\xc9\x58\xbb\x5b\xb4\x62\x52\xac\x8f\x68\xe3\xe9\x51\x5b\x4e\x84\xc9\x46\x86\xf8\xee\x18\xea\x41\xf1\x95\xc1\xe4\xb4\xde\x1c\xbc\x04\x85\x0b\xcb\x85\xdb\x8d\x07\xb8\x79\x8c\x82\x83\x0b\x2a\xeb\xdc\xb4\x68\x82\x5e\x3a\x18\xe3\xc3\xd6\x44\xb7\x2a\x70\x1e\x2a\x58\x7b\x91\x42\x62\xd1\x48\xee\xcc\xa9\xf8\xec\x74\x8d\x6d\xee\x1e\xc9\x33\x23\xd8\xd1\x2d\xd9\x11\xa6\xe8\x42\x2e\xa1\xe9\x66\x50\xf4\x66\x0a\x03\x4b\xe6\x89\x15\x5e\x4e\x69\x92\x5a\x22\xc7\xa6\x18\x62\x26\xd6\x12\x3f\x70\x37\x66\x7c\x77\xf9\xb6\x53\xae\xb7\x4e\x77\xea\x54\xac\x14\x8d\xbd\x9f\xda\x24\xd0\x97\xc7\x35\x5e\xb8\xaf\x2c\x77\xe0\xe6\xca\x74\x3f\xa9\x8f\x93\x05\xd0\x15\x00\xa2\x5f\xbd\xc8\x41\xa6\xb8\x6c\xca\x75\xf8\x4e\x79\xdd\x3a\xc5\xc4\x3b\x58\x08\x5d\xdd\xe2\x2b\x98\x75\xbb\x46\x9f\x35\x76\x78\x18\xc9\x27\x74\xb8\xde\x3b\x86\x60\x3c\xac\x20\xb8\xb6\xfb\x71\x07\x9a\x38\x9e\xa2\x82\xcf\x64\x6a\xf0\x38\x3e\xf2\x6d\x1a\x60\x04\x99\x9e\xcc\x27\x60\x40\x83\xf0\x10\xb0\xec\xb0\x82\x74\x26\xf5\x80\x18\x52\x1d\xc5\x89\xe1\xdf\x03\x9c\xb4\x36\x55\xbb\xc7\x43\xd1\x60\xd0\xd3\x8b\x93\x52\x6c\x7b\x1d\x81\x69\x60\x1d\x09\xec\x7e\xe3\x70\xd0\xab\x26\xff\x20\xa9\x2f\xb7\x36\xa5\x90\xb8\xa8\x03\x7e\x0a\x09\xb2\x41\x93\x35\xb4\x78\x51\xd7\x83\x95\x50\x4b\xb7\xca\x00\x12\xf1\xd7\xd8\x9d\x7a\x32\xa1\x3b\xf7\xc3\x3a\x45\x76\xab\xf0\xa3\xae\x6e\x95\xcb\x27\xcd\xff\x78\x25\x3b\x65\x75\x8b\x14\x82\xaa\xba\xc5\x73\x92\x0e\x65\xa8\x18\xc2\x89\x40\x55\xd3\x21\xf8\xf9\x4a\x6f\x37\x41\x6e\x3d\x25\xec\x04\x8e\xa1\x24\x01\x70\x92\xd5\xf5\xb9\x15\xdd\x53\x8a\xc1\x59\x46\x12\x29\xaa\x9f\xa1\xe4\x3a\x75\xe2\xbd\x53\xf1\x59\x51\xa9\xf9\xe2\xce\x54\x07\x79\xa1\x04\xcc\x2a\xe3\xb3\x82\x42\x58\x6f\x17\x95\xa7\xa7\x1c\x10\x61\x1d\x94\xba\x9b\x60\x4e\x22\x74\x6b\x42\x20\x52\x44\x6b\x75\x7f\xd0\x5f\x16\xcd\x61\x0f\xa0\x4e\x2a\x0c\xe1\x06\x58\xa0\xb7\xd9\x9c\xbc\x7e\x93\xdd\x4f\x86\x64\x35\xc7\x88\x90\x2c\xb7\xa0\x20\xcb\x73\x10\xa3\x0c\x6f\x13\x88\x51\x60\xa6\xfa\x0b\x03\x0e\xd6\x41\x7a\x87\x39\xfd\x3b\x42\x9e\xcb\x28\x70\x51\x50\xd5\xfa\xbc\x83\x08\xba\x9e\x14\x1e\x26\x33\xac\x4e\xca\xbf\xc7\xa4\x6c\xa1\x61\x94\x03\x47\x55\xde\x3a\xdd\x0d\x24\x89\x2c\x9c\x6b\x4c\x90\x79\x28\x48\x38\x59\x7c\x14\x9e\x80\x64\xe2\xf6\x69\xaf\x52\x23\xbf\x27\x77\x0b\x94\x89\x8a\xbb\x95\x32\xc1\x9d\x22\xbb\x25\xf6\x0e\xeb\x01\x81\xd2\x3d\x35\xbd\xd3\xfd\xbb\xfb\xb7\x3d\x29\x3f\x2c\x7a\x36\x09\x20\xe1\x7a\x9d\x32\xbb\x65\x38\x64\x97\x41\xb0\xa6\x1e\xe4\x8f\x79\x11\xa1\x3e\x97\x3f\x90\x08\x35\xf9\x77\x0e\x66\xb6\x23\xce\xdf\x62\x7d\x5d\xb4\x77\xf7\xb9\x4c\xba\xc4\x8a\xee\x34\xd8\x18\x84\x03\xe9\x06\x55\x75\x2b\x85\x72\x7a\xf2\x8e\x69\x13\x2b\xb0\x26\x50\xbc\xbd\x53\x61\xb7\xce\xe5\xdf\x9d\x91\x8d\x29\x62\x93\x7c\x66\x5b\x26\x33\x0a\x8b\x83\x68\xa0\x0f\xa3\x08\xff\x11\x27\xc3\xae\xa4\x0f\x9e\xea\xc1\x64\x93\xcf\xc6\x42\x7a\x78\xb9\x89\x1a\x74\x00\x6b\x00\x86\xb9\x4e\xc1\xdc\xba\x90\x66\x93\xe9\x02\xd1\xef\x7a\x32\x6b\xbb\x32\x87\x55\x72\x15\xea\x29\x8c\x5b\x0f\xb8\xa2\x85\x71\xd7\xe1\xdf\x2b\xcf\xfe\xbd\xf3\xcc\x64\x75\xdc\x77\xd1\x6b\x11\x0f\x2c\x71\x41\xb9\xa7\xd4\x4a\x4f\xcb\x69\xf8\xf7\x80\x3e\x00\x59\xb1\x3a\xbb\x55\xa2\x82\xdb\x52\x3f\x77\x7f\x46\xfb\x8f\xe9\x17\x69\x1f\x4e\x0d\xa1\xf3\x81\xc3\xc1\xe9\x53\x38\x32\x9a\x5f\x6d\x12\xa4\xc2\x94\x3e\xaa\x58\x6e\x3e\xd1\x61\x0b\xee\x4e\x05\xdd\xba\x0e\x5b\x6b\x9b\x16\x20\x38\xf9\x29\xae\xda\x13\x7e\xfd\x38\x4a\x06\x8c\x23\x55\x47\x75\xdc\xe2\xd1\x3d\x35\x85\xbb\x7f\xf8\xf8\x97\xe0\x3c\xcd\x71\x25\xa2\xc2\xce\x31\xc7\x74\x0a\xe2\xa6\x1a\xa7\x89\x60\x70\x32\xfe\x77\xea\xde\x56\xee\x43\xf7\x44\x7e\x89\xc3\xb1\xf1\x75\x50\xec\xa4\x5b\x02\x37\xf0\xe0\x72\x34\x46\xe6\xee\x12\x7e\xe5\x4e\x05\xdc\xba\x50\xb6\xa8\x80\x5b\x97\xa7\x22\x8a\xdb\xd1\xcf\x1d\xb0\x64\xe0\x5b\x5b\x87\xb4\xef\x0e\x70\xf8\xa2\x28\xe9\xf9\xbc\x63\x97\x58\x9e\xe9\x1e\x9a\xe7\xfd\xd1\xf7\x2a\x8d\xc4\x45\xb1\x10\xe7\x92\x1e\xfb\x22\xa5\x21\x74\x7b\xb9\x33\xd6\x66\x69\x92\x91\x27\x00\x0a\xd4\xcd\xa0\xd4\x3c\x42\x06\x66\x77\x51\x9a\xd4\x0e\x87\x5b\x0e\x4f\x5e\x02\x34\x78\xb2\xf3\x7a\x1d\xc4\x8f\x38\x0f\xd1\x80\x6a\xa4\xee\x19\xec\x79\x49\x4f\x5e\x80\x85\x4e\x45\xad\xd9\xba\x24\x1b\x38\x29\xc8\x76\xdb\x13\x2a\xfc\x42\xe6\xa3\xee\x6c\x25\xf5\x5a\xcf\x5e\x94\xc2\x6f\xd5\x2d\x42\x9b\xfa\xb7\x85\xd3\x3a\x25\x6a\xf7\x72\xed\x43\x5d\x07\x92\x94\xf5\x39\x54\xfb\x63\x62\x1c\xc7\x8c\x9f\x81\x68\xa6\x4e\x2d\xda\x2c\x44\x73\x22\x09\x86\xdf\x53\x69\x85\xdc\x05\xdd\xba\xb4\xdc\x52\xed\x94\xa5\x9d\x44\x32\x76\xab\xd2\xae\xe2\xdf\x9b\xbb\x69\x47\x5c\xc3\x6d\x7e\xf4\x41\x64\xb3\x23\xd0\xaa\xf8\xf7\xcb\x05\xda\xfa\xfe\xf1\xd5\x07\x20\xcf\x09\x50\x15\x9f\x49\x66\x88\xc4\x91\x75\xfa\x63\xbb\xea\x19\x16\xbe\x8a\x3f\xe8\xb2\x81\xb2\xe5\xac\x0d\x06\xa1\x92\x3a\xb6\x59\x85\x8d\x32\xb6\xbb\x39\xfd\x66\xcd\x41\xf1\x15\xfb\x57\x7c\x3e\xfd\xca\x26\xce\x04\xc0\xa2\xce\x77\xb0\x8d\x3a\xb6\x95\x18\xde\x9e\xad\xd1\x42\xe4\x62\xcf\x24\x68\x8a\x89\xc0\xdb\xcb\x10\x20\xde\x04\xcb\xfe\xa0\x0e\x2e\x68\x29\xd2\x32\xe3\x07\x69\x18\xec\x39\x13\x41\x50\xf0\x36\xf6\x4c\xc4\x75\xf7\x19\xcb\x40\x75\x22\x18\x06\x28\xdf\xd2\xb3\x99\x08\xb9\x2f\xd6\xb3\x41\x71\x2a\x44\x59\x7f\x02\x8e\x9b\x9e\x8d\x90\x53\x09\xb2\xe2\xed\x88\x26\xf3\xc7\x57\x0f\x28\x90\x7b\x82\xfc\x1a\x3d\xc3\xd0\x09\x47\xef\xd9\x4c\x86\x6a\x28\x56\xc2\x4d\xd1\x2b\x90\x42\xc8\xc8\xde\xba\xc5\x4b\xd1\x73\x53\x71\x47\xaa\xc9\xde\x49\xeb\xce\xca\xa2\x71\xe2\x48\x73\x86\xd0\x21\xaa\xe7\x16\x25\x27\x8a\xe7\xee\xe6\xac\xd0\x5b\x69\x9c\x71\xeb\xe5\xf6\x29\x5a\x35\xd0\x4a\x2c\x31\x2c\x01\x23\x7d\xb7\x46\x2e\x26\xe9\x4e\x59\xdc\x8a\x1f\xa6\x5b\x15\x77\x74\x81\x80\x09\x61\xb9\x58\xd3\xd4\x77\x17\xd8\x21\x94\xe8\x0b\x59\xd5\xbf\x3b\x91\xc8\x1b\x61\xb7\x86\x28\x43\x5a\xa9\x72\x9b\x92\x13\xb1\x6a\x3e\x51\xcd\x3d\x0f\x8d\x65\x8c\x31\x04\xae\x1f\x29\x58\x4e\x3f\xd2\x86\x2a\xac\x48\x85\xbf\xe0\x86\xd9\x88\x6c\x9c\x02\x3d\x93\x0a\x7f\x35\x9f\x09\x09\x70\xb6\x38\x08\xba\x98\x84\x53\x00\xb3\x7c\xa7\xfc\x6d\x5d\x62\xba\x01\x08\x0e\x40\xca\x60\x2f\x05\x75\xaa\xdc\x56\xd2\x71\x76\xaa\xdc\x16\x35\x8f\xbc\x0c\x6b\x70\xa9\x9b\x8b\x17\xe9\x9f\x25\x6a\xb5\xaf\x64\xaf\x8c\xb9\x15\x72\x74\x0f\xb2\x09\x24\xa6\xdf\x70\x77\x45\x0c\x5e\x4a\xf5\x8e\x8c\xe2\xbf\x04\x1f\x81\x09\xf5\x38\xbe\x25\x79\x0b\x39\x03\x9a\x1e\x05\x6b\x11\xcd\xf3\x47\xca\x3f\x7d\xe1\x02\xb3\x1b\xbe\x19\x74\x3b\xa4\x6c\xa7\xe9\xd5\xf8\xfb\x29\x95\x85\xd1\x51\x8c\xb6\x1c\xae\xd5\xdc\x10\x6e\x92\x97\xb5\xe2\xec\x13\x80\xbd\x04\xe1\xa9\xdd\x9a\xb9\x93\xf1\x70\xb9\x91\xdc\x2a\x5e\x92\x81\x30\xac\x8b\x06\xe8\xd7\x0b\xb5\x25\xcb\x9e\x05\x02\x51\xda\x4b\x08\xca\x9e\x51\x09\xb2\xec\x79\xd8\x16\x2a\x35\x6c\x0b\x72\x20\x0b\x50\x7c\xd6\xea\x7f\x3d\x1b\x88\xc0\xbd\xc3\x4e\x25\xda\xba\xc4\xd8\x9f\x85\x68\x79\x86\x68\x88\x34\xe6\x84\xf2\xac\xdd\x56\x71\xa4\xd3\xdb\xed\x65\x12\xc1\xdb\x85\xb0\x25\x69\x65\x7c\x96\xa4\x5d\x9e\x22\xeb\xd9\xbb\xc1\x04\xf2\x11\x09\xd5\xf3\x1d\x18\xee\xcb\x09\xfe\x39\x25\xd7\xc0\x36\xdc\xac\xc1\xe3\x61\x16\xa8\xe1\xb3\x77\x63\x7d\x8e\x5d\x60\x64\xb2\x46\x54\xb9\xd6\xc3\x35\x15\x99\x0a\x49\x7e\x57\x34\x66\xfd\x12\x66\xf4\xf2\xe5\xf7\x9a\xec\xbb\xfc\x17\x93\xbd\x5a\x1e\x85\x63\xf7\x54\x99\x12\x71\x79\x4b\x22\xad\xf9\xde\x75\x46\x09\x35\x96\x10\x46\x7a\x61\x1f\x31\x09\x2e\x88\x5b\x58\xc5\xf3\x24\xbb\x07\x01\xa8\x15\x9b\xc9\xb8\xdf\xa9\x15\x5b\x09\x3f\xec\xd6\x8a\x1d\xc4\xf2\xf7\x72\x48\x0d\x21\xb9\x16\x88\xc5\x7d\xdf\xad\x0f\x4b\x60\x62\x2f\x5e\xc3\xea\x3e\x6b\x58\xef\x36\x90\x83\x21\x82\x14\xb9\x3e\xcb\xa3\x88\x6c\x32\x17\x49\x2f\xa1\x98\x83\x4e\x94\x8e\x2d\x54\x67\xee\x51\x39\x96\x3b\x81\xbd\x84\x66\xce\x11\x2e\x11\xbe\xd7\xfd\x05\x39\x75\xd8\x17\x16\x9a\xc4\x0e\x58\xf0\x55\x96\x52\xb2\x68\xed\xf3\x44\x63\x67\xe5\x79\x39\x06\xdd\x86\x6e\x0d\xe6\x14\xd8\xef\xb1\xfc\x41\xaa\x57\xfc\xe1\x45\x65\x64\x85\x45\x36\x02\xcd\x88\x12\xad\x44\x68\xf6\x12\xfa\x34\xba\x53\x31\x9d\x93\xd6\x11\x8a\xb4\x16\x4a\xd9\x74\x6a\xb1\x16\x6e\x3d\x77\x4a\xb1\x56\x8f\x2d\x95\x58\xf3\xf0\x39\xd4\x66\x17\x58\xe5\x0a\x2e\xa4\xc6\x18\x34\x47\x0d\xd6\x5e\x5d\xac\x12\xaf\xe5\xd0\x82\xaa\x8b\xac\x35\xbd\x98\x94\xc2\x89\xa0\x07\x13\xb4\xd4\x4b\xd5\x58\xf1\x6d\x22\xe5\x5e\xaa\xb8\xcc\x6c\xb8\xfa\x84\x27\xac\x5b\x85\x35\x75\xd7\xd2\x0c\x9a\x42\xbd\x2c\xc1\x52\x8b\x9f\xa1\x58\xc7\x33\x41\x38\xf1\x3c\xfd\xc8\x16\x92\x65\x0e\x4c\x54\x62\xd5\xca\x47\x25\xd6\x8c\xbb\xbf\x5b\x57\xb5\x6a\xea\xa1\xae\x6a\xb6\xc2\x47\xa7\xb0\x6a\x91\xb9\x17\xac\xec\x24\x47\xec\xd6\x58\x5d\xee\x29\xda\xf3\x8a\xbf\xeb\x66\x10\xde\x3d\x36\x9b\x15\x72\xd9\x9b\x3b\xd6\xdd\xba\xaa\x8b\x8c\x3d\x9d\xc2\xaa\x49\xfb\x8c\xc5\x54\xcd\x52\xd2\xa9\xa6\xba\xbf\xf2\x17\x28\xab\x1b\x34\x28\xfa\xd0\x6d\x1d\xab\x65\x74\xd2\xea\x67\x4f\xe5\x66\xbc\x85\x1c\x67\xbd\x44\x2e\x61\x8f\xcc\xf0\xc8\x88\x5c\xa1\x27\x23\x7f\x14\xae\x81\x4b\xee\x28\xad\xba\x7f\xa0\xdf\xa9\xa5\x8f\xbe\x66\x4c\x91\xbe\xcc\xc4\xaf\xe1\xa7\x78\xc3\xbb\xda\x5c\xf8\xf8\x51\x1c\x06\x80\x45\x62\x27\x95\x60\x8a\xb1\x56\x79\x69\x21\x29\xff\x72\x9b\x97\x96\x68\xf1\xd4\x8c\x1f\xc2\xd0\x54\x8e\x12\xe1\x62\x84\xbc\x66\x38\x2b\xb6\x6a\x95\x29\x56\x97\x77\xb6\xc1\x96\x45\x4d\x2b\xcd\x6b\x79\x2b\xdc\xd6\xae\x12\x8e\xb0\xc7\x7b\x16\x96\x33\x61\x49\xd8\xe3\x17\xf2\x5c\x94\x6f\x45\x02\x2c\xd8\xe6\x97\xa7\x82\xa4\x50\xcb\x43\x61\x80\xa1\xd6\x1e\xaa\xba\xe6\xee\x9c\xcc\x01\xa9\x1a\x52\x2c\xa6\xe6\x81\xe6\xd2\x96\xea\x51\x94\x78\x8d\x06\xd4\xa3\x69\x8e\x26\x82\xf9\x3d\x5b\x19\x23\x8b\x5f\xd0\xed\xa2\x26\x8e\xa8\x54\x74\xad\x4b\x91\x31\xcc\x2f\x37\x98\x1c\x23\x43\x60\x9c\x92\x76\x47\xdb\xba\x77\x23\xaa\xb2\x53\x76\xb5\x1d\xce\xc8\x0b\xda\x1a\xda\xa8\xb4\x9a\x35\x1c\x97\x2d\x01\xb4\x43\x8a\x78\xb9\x11\x48\xa4\x65\x4b\x00\xed\x10\xed\xf4\xac\x6b\xac\xa2\x1e\x6b\x23\x68\xba\x97\x60\xe9\x48\x22\x14\x58\x2d\x84\xfa\xf5\xb2\x59\x7a\x39\xdc\xdf\x5b\x29\x5b\x5e\xb2\x79\x7a\x23\x58\xb9\x97\x5b\x6a\x8e\x10\x44\xe1\xd5\xa2\x5f\x96\x02\xab\x45\x33\x56\xf1\xc2\x35\xfc\xb0\xdc\xb2\x34\x79\xcc\x23\x93\x10\x9a\xf0\xe2\xe4\xe1\xd9\x3a\x79\xe3\x86\x72\xb7\x5e\x6a\x8f\x43\xf9\x38\x73\x1b\x80\xcb\xfa\xe9\xa8\x79\x9a\x4a\x60\xfc\x63\x10\xed\xb7\xe6\xbc\x62\x89\xf7\x2e\xaa\xbf\xb1\x16\x16\xf9\x7a\x13\xdf\x67\x5c\x0a\xa2\xe7\x2b\x4c\x7d\x1e\xa8\xb0\x12\x82\xd7\x05\xef\x99\xd5\x83\x8f\x92\xcf\x72\x89\xe9\x8b\x58\x0f\x2a\x51\x9b\x34\xeb\x92\xa2\x1e\x69\x3b\xb0\xbd\x51\x8f\x74\xb7\xc8\xbc\x64\x17\xd9\x78\x01\x2c\xc9\x1f\xea\x8f\xaf\x41\x1c\x7b\xaf\xc9\x49\x2d\x9e\x07\xdf\x74\x9e\xad\xcc\x7d\xf8\x02\xab\x9e\x3e\xcb\x18\xa0\x09\xd4\x23\xdd\x5f\x0d\x5e\xb4\xf6\x70\x62\x2d\x48\xba\xc8\xba\xd4\x6b\x96\x11\x72\x18\xa9\x4e\xda\xe4\xe8\x14\x24\x6d\x47\xb2\xb9\x67\x7c\xf9\x12\x1b\xc4\xbc\xc8\x7a\xc2\xf5\x89\x5e\x37\xe7\x2d\x24\x0e\xeb\x55\x37\x36\x57\x86\x7a\x35\xa8\x4e\x93\x59\x2d\xe0\x35\x87\xbc\x1a\x14\x5f\xe3\xc5\xc1\xe9\x0a\xdb\xb5\x8e\xde\xaa\x7e\x5b\x85\x7b\x89\xdb\xcc\x3c\xeb\xd6\x13\x70\xe8\xb1\x5c\x3a\xeb\xd5\x80\x77\x6d\x69\x14\xfb\x6c\x87\x5d\x59\xec\x93\x7b\xbe\x9d\x62\x9f\x43\x59\xbd\xea\x89\xae\xae\xbc\x89\x31\x58\xa5\x6a\x93\x18\x4f\x5f\xc8\x28\x7c\xf8\xac\x79\x1d\x9a\x5b\x2d\x29\xa3\x6e\x57\x43\x97\x6c\xbe\xdc\xba\x1f\x58\x62\x8b\x19\xd3\x41\xd7\xee\x0f\x84\xba\x54\x00\x41\xa5\xf6\x18\x9f\x99\x75\x37\x9e\x51\x3a\xda\x45\xf6\x23\x79\x8c\x1b\xdf\xc1\x33\x34\x8d\xaa\x02\xc9\xa5\xaa\x6e\x1d\xd0\x45\x92\xaa\x4e\xed\xcf\x76\x64\x7f\xc0\x3f\xc3\x21\xab\x23\x8c\x87\x8c\x47\xbc\x99\xd2\x13\x45\x41\x93\x49\x92\x7a\x1d\xb1\x10\x9a\x10\x9e\xae\x7b\x27\xea\x7a\xaa\x19\x55\xd8\xd5\x20\x04\xb2\x53\xd8\xb3\x1d\xd9\x1f\x02\xf4\x2c\x44\xfd\xb0\x8a\xce\x96\x3a\x1b\x42\xd5\x0b\xbe\xc3\xaf\x38\x17\x10\x18\x6a\x73\xb6\xc3\x73\x41\x46\x90\x12\xdf\xbb\xd5\x08\xb4\x75\x11\x12\xd0\x6d\x6c\xca\x00\xe6\x61\x86\x41\x83\x2a\xaa\x4c\x46\x5d\xbd\x5a\xd1\x4c\xdd\x99\x32\x9d\x25\x09\xab\x8f\xe3\x31\xc1\xe0\x2c\xe8\x1f\x54\xe6\xdc\x2f\x8c\xfe\x81\x6e\x21\x33\x53\x8d\xb3\x68\x3c\xae\x86\x6d\x55\x77\x8d\x68\x75\xf2\x4c\x74\xaa\x71\x6e\xc5\x71\x3f\x9f\x16\xa4\xe7\x1b\xfc\xbf\xc3\x73\x60\x10\xbb\xa6\x9a\xa8\xb3\x29\x92\x6e\xde\xd2\x8e\xf2\x5d\x60\x72\xa7\xea\x66\x3b\xb2\x3d\xcb\xc1\x10\x65\xac\xa8\x29\x65\xa3\xa2\x66\x3b\x90\xc1\x6a\xe4\xb0\x82\x3b\xd7\x8b\xa5\x17\x3f\x02\xfb\x90\xfa\xa2\x70\xa6\x0a\x5d\x35\xc1\x30\xf7\x5c\x3a\x95\x33\xf3\x10\x15\x2f\x3c\xaa\x28\x08\x35\xae\x00\xbb\x9b\x77\xc0\x9d\xa5\xc8\x6c\xe0\xb1\x55\xa5\xd1\x6e\x55\x1a\xd5\x03\xea\x1d\xb8\x64\x73\x70\x09\xc1\xb2\x6e\x2e\xd4\x0e\x71\xf4\x21\x02\xc9\xad\x95\xbf\x48\x7a\xbd\xb2\x35\xa4\x1a\x8f\xd2\xe7\xb2\x85\xdb\xc9\xfa\x1e\xd7\xc7\x70\x28\x87\x8a\x8f\xd5\x12\x30\xd5\xb3\xf2\x70\xba\xe0\xd0\xf5\x15\x73\xfd\x6a\xab\x87\xed\x40\x70\xa2\xe2\x66\x3b\x3c\x11\x2f\x24\xce\x4d\x7b\x3d\x1d\x02\x44\x36\x03\xb7\xae\xaf\x82\x9d\xac\xe5\x65\x45\xf0\xa8\xfa\x7a\xea\xdc\xa5\xad\x1e\x36\xe5\x0c\x2b\x71\x1a\xa1\x40\x21\xce\xbd\xbc\xfd\x51\x3b\x90\x27\x60\x3f\x2d\xac\xc1\x58\x11\x2c\xd1\x69\x3e\xb0\x4e\x8d\xce\x76\x40\xd5\xa8\xb1\xb9\x9b\xf3\x12\xba\x1b\xf2\x66\x4b\x01\x37\x5f\xb4\xa3\x2d\x3f\x63\x07\x20\xaa\xcd\x2c\x5a\x5a\xe4\x9b\x59\xb4\x48\xcb\xdd\x5b\x02\xf7\x9a\xcf\x4c\x3e\xba\x7a\xec\x77\xf0\x22\x1d\xe4\x38\xb7\xcd\x9b\x86\xe1\x48\x2d\xb3\x83\x90\xc1\x96\x81\x22\x54\xb4\x99\x1d\x43\xf5\xbe\x65\xe9\x15\xc2\x06\x35\x3e\xdb\xe1\xd8\x99\x03\x02\xdd\x6c\x59\xd3\x8d\xad\x2d\x57\x9d\x7d\x21\x28\xde\x49\x95\x00\x16\x2d\xd4\x0f\xb9\x77\xd7\x9b\xcc\x88\x83\xda\x0a\x48\x02\x89\xa1\xc2\x67\xa3\x82\x49\x6f\x6a\x8a\xb0\xe1\x66\xfa\x7c\x75\x3d\xca\x7d\x26\x35\x09\x6a\x7a\x96\x1e\x8d\x5f\x0c\xe5\xcc\xd5\x2c\xbf\xaa\x4d\xad\x06\xd0\x17\x2f\x56\x9f\xa0\x75\x0d\x24\x61\x8c\xea\xd8\x00\xed\x67\xd1\x6b\x7f\x00\xce\x9c\xac\x56\x3d\x7f\x76\x8b\xdc\x27\x94\xc3\xbc\x8a\xf8\x61\x19\x4f\x19\x4c\x0b\x5d\x10\xd1\xa0\x35\x27\x02\xed\x69\x0d\x84\xe1\x60\xb6\x26\x3c\x80\x1a\xaa\x20\x37\x42\x3b\x75\x3f\x1b\x25\x91\x7a\x53\x13\xe4\xb8\x52\xf6\xb3\x91\xe4\xbc\x53\xf6\xb3\x51\x3f\xa6\xb7\x26\x1b\x80\x9d\x5a\x03\x74\x91\x9e\xac\x37\xc2\xb3\x9a\x0b\x92\x03\xba\xc1\xc4\x6d\xe7\x6f\x93\x28\xf7\xd6\x03\x56\xf6\x76\xba\x10\xe0\x80\xca\x68\x20\x5c\x23\x4a\xbb\xbb\xc9\x83\x33\x2b\xac\x36\xa7\xcc\x8a\xe1\x6d\x60\x99\x74\x63\x07\xf7\x1d\x38\xe3\x6d\xb0\x58\x74\xd8\x66\x02\xc6\xe1\x36\x85\xa5\x15\xf6\x6f\x3d\xd1\xaa\xeb\xa8\xcd\x00\x28\x63\xcf\x20\x43\x40\x82\x9b\x5c\x9e\x72\x0a\x87\x56\x2d\x85\xd4\x0d\xcd\x52\xd9\x36\x63\x10\x66\x35\x0d\x42\xb7\x5b\x6b\x3b\xd2\x60\x33\xd3\xc2\x3d\x8a\x4e\xd9\xd0\x22\xbb\x8f\xaa\xa1\x64\x5a\xeb\x6d\x29\x69\x65\xbf\xe2\xba\x97\x78\x68\x68\x15\xf7\xfb\x3b\x85\x42\x8b\xf6\xae\xb6\x38\x4c\x9e\x38\x7c\xa6\xd4\x0d\xe8\x2d\xc2\xac\x44\xdc\x05\x69\xb4\xc1\x27\x30\xcc\x17\x4d\xda\xb4\x0e\x26\x8b\x1e\x64\xd9\xd0\x81\x40\xdf\x54\xdf\x10\x18\x5b\x30\x59\x04\x38\xca\x89\x16\x63\x1d\xa9\x06\xda\x0e\x0f\xd6\x07\xc9\x4a\x98\xa1\x9a\x69\x66\x6f\xc1\x56\x97\xbd\x7a\xc0\x99\xc6\x69\xe2\x52\x9f\x3d\xdf\x52\x81\xb0\xe0\x42\x7d\xdb\xa9\x94\x04\x43\x69\xe6\xd9\x50\xca\x6a\x27\x47\x1f\x06\xd6\x70\xb8\x8e\x21\xb6\x62\xe8\x55\x88\x68\xda\x73\x0f\xfb\x35\x0e\x95\xd9\x9e\x51\x25\xdf\x8f\xa4\xb8\xee\xc6\x05\xe3\xf0\x2c\xea\x88\xed\x02\xf7\x82\xfe\x89\xf8\x2a\x80\x9e\x4b\x42\xab\xb5\xdc\x36\xf5\x3f\xe1\x7f\xa9\x0a\x14\x7b\x5a\x0e\xe1\x57\x28\xa2\x52\x94\x0b\x5a\xe8\x99\xbb\x62\x52\x76\x4b\x34\x22\x76\x9c\x76\x7b\x18\xe3\x85\x93\x21\x3e\xdf\xa2\xb0\xd0\x31\xb7\x7f\x77\x0b\x60\xd0\x72\xd5\x76\x8b\x47\xb2\x9a\x1b\xb9\x48\x4c\xb8\xd9\x3f\xf1\xcb\x44\xc1\x84\xf1\x77\xcb\x90\xca\xff\xa8\x42\x9a\x8a\x42\x6b\x7b\x48\x41\xe6\x74\x61\xd6\xfa\x1c\x1b\x17\xac\xe5\xa4\x8d\xb0\xaa\xec\xf2\xf0\xd5\x0e\x47\x23\x14\x3b\x68\x32\x4c\x3c\x89\x6a\xf0\x6d\x13\x42\xf6\x26\xdf\x76\xde\x6f\x80\x9f\x11\x5e\x21\xe8\x70\xdc\x28\x2b\xb2\xc8\x97\x45\xc8\x07\x31\xdf\x0e\x2e\xaa\xf6\x7e\x20\xc4\x43\x12\x3a\x77\xc0\x34\x53\xf4\x83\x8d\x8c\xe7\x00\x60\xe5\x85\x1b\xe3\xf0\x5a\xea\x97\x66\x7d\x10\x96\x2f\x1d\x5c\x67\xed\x94\x2f\x9d\x75\x7c\x2b\xe9\x51\xdb\xb4\x1d\xcb\xe1\xb5\xfb\x0c\x9e\x25\x48\x50\x9a\x4e\xf6\x2c\xee\x7a\xf4\xce\x95\xb0\x03\xcb\x54\xe7\xea\x97\xb2\x36\xd5\x4f\x73\x8f\xbf\xa3\x18\x73\x2c\xa9\x84\x9a\x4d\xbd\xd2\xbb\xbc\xdd\x4e\x4d\xf7\xaf\xa0\xdf\x49\x1c\x7c\x28\x92\xf7\x24\x97\x63\x21\xd9\xdc\x97\xcc\x29\x2b\xe7\x23\x71\xf6\x70\xbe\x82\xdd\xdd\x24\x21\x6a\x00\x3d\x73\xd1\x6a\xd8\xa4\x91\x58\x85\x01\x73\xcc\xc4\x7e\x07\x37\x94\x99\x55\x64\x17\xb6\xdb\xe5\x47\xbe\x48\x3d\x8b\x5d\x19\x7e\x35\x1d\xe3\x72\xd3\x1d\xfd\x06\x6e\x80\x27\xcb\x3d\x1d\x83\x75\xb8\x21\x45\x49\x76\xfa\x92\x7e\x7c\x4d\xa3\xba\x28\xc4\xba\x7f\xf0\x85\x13\x0b\xe1\xa7\xde\x6a\x0e\x8b\x76\x2f\x31\x2d\x66\x52\xf4\x41\x72\xfa\x29\xb8\x3a\x48\x54\xd3\xad\xb7\xba\x62\x8c\x4d\x58\xa9\x83\xdf\xbb\x41\xdd\x32\x56\x0a\xac\xb6\xe4\xcc\xd1\x79\xa9\xbd\xdb\x3b\xae\x5b\xad\x7b\x7d\x8b\x13\x2d\x81\xeb\xbd\x4a\xce\xa0\xa5\x51\x84\x55\x3d\xa3\x57\x03\xee\x39\x37\x14\x61\x6d\xc9\x6d\xd6\x22\xad\xe8\x4c\x41\xd6\xac\xc7\xbb\xd7\x00\x9b\x83\x28\xd0\x55\xfb\x62\xba\xd0\xb0\xde\x62\x9f\x99\xae\xd2\x85\xb8\xd4\x88\x54\x13\xdf\x34\x21\x2b\xbf\x76\x4b\xd2\x09\x84\xa6\x62\xe1\xfe\x23\x45\x28\xdc\x53\xa9\xb5\xa9\x7b\xf7\xe6\x70\xf4\xe4\x1d\x31\x32\x46\xf4\x6e\xc0\xb7\x7e\xf8\xbe\x25\x8a\xa6\x39\xb1\x9b\x58\x4b\x3b\x14\xa5\x5d\x9b\xfc\xbd\x5b\xd0\x6e\xf8\x77\xc4\x5d\xb7\x0c\x5d\x5b\x32\xd9\x4d\x9e\x32\x44\xe9\xae\x55\x33\xbe\xc2\xa5\xeb\x52\x71\xe9\x1a\x0a\xde\xb7\x94\xd1\x92\x10\x1c\x84\x3e\xb8\xdd\x21\x65\x30\xb2\x75\x5c\x95\xc1\xa9\xe3\x9a\x55\x5d\xbb\xe5\xeb\x48\x62\xd1\xa9\xe3\x9a\x75\x96\x75\x3d\xbd\xff\x2f\x61\xe7\x71\x36\xbd\xae\xa3\xc1\x54\x6e\x08\x2d\x5a\x70\x73\x72\x91\xcd\x3f\x84\x79\x58\x85\x7f\xb6\xdf\x4e\xea\x16\x3d\x09\x47\x00\x2f\x61\xbe\x63\xcc\xdb\xaf\x18\xea\x4c\xaa\x6e\x91\xcf\x7f\xe8\x6e\x88\x8d\x0d\x9f\x1c\x66\x1e\x85\x83\x8d\xad\xc2\xf7\xc3\x05\x08\x26\xc4\x06\xd1\xe0\x89\x38\x1a\x40\xbf\xf6\xc3\xa9\x0d\x76\x48\x56\xaa\x0c\x00\xed\x1e\xc1\xc2\x38\x8c\x65\x6b\xa8\x22\x03\xa7\x6f\x75\xa8\xb1\x64\xbe\xdd\x17\x88\x7a\x7e\x04\xaa\xc6\xf0\x77\x9b\xfb\x2b\x10\x6d\x00\x1d\x1b\x4d\xe2\xb1\xd8\x23\x70\xdc\x61\xd6\x15\xa5\x3e\xf0\x61\xa3\x79\xe0\x4f\x9d\x76\x7c\x46\x29\xd2\xd1\x00\x80\xd8\xa6\x8d\x21\x81\x5f\xa5\xd9\xba\x63\x11\xee\x3c\x00\x81\xad\xca\xed\x82\xc0\x4e\x62\xa2\xc7\x10\x1f\xc8\x13\x9b\x6a\xbb\x7b\x01\xf3\xb0\xd2\xc5\x48\x81\xc2\x19\xbd\x18\xa2\xed\x5d\xcc\x28\x42\xdc\xb8\x24\x4f\x52\x72\xf4\x77\xc2\xf1\x07\xe0\xb0\x9d\x6c\x74\x63\x6c\x19\x22\x9a\xb4\xe6\x96\x5d\x7b\xfc\x90\x27\x0e\xb8\xe1\x40\x6c\x38\xdc\x86\x04\xab\x57\xef\x1e\x86\xde\xd8\x76\x1c\xb9\xc1\x74\xbe\x03\xa4\xd8\x7e\x38\x69\x06\xa8\x2b\x24\x0d\x8d\xc8\x8a\x42\x89\x01\x4b\x8e\xa6\x31\x9e\xe6\x3f\x54\xbc\x65\x82\x7e\xf8\x15\x77\xb8\xaa\xc7\xc0\xbb\xf6\x23\xbf\xc9\xf1\x31\x26\x90\xf3\xfe\x3d\x63\x1d\x91\xf1\x3c\xb9\x7c\xac\xe5\xcb\x11\xca\x67\x5a\x40\x02\x11\xb7\x75\xe8\x0d\x39\x30\x1c\x7b\x3d\x38\x8c\x3d\x57\xfc\x19\xde\xf4\xea\xcf\x31\xcc\xfa\xa5\x04\x03\x88\x6b\x3f\x64\x1d\x1a\x8a\xf3\xf7\x0a\xab\xa2\x3d\xaf\x74\xd1\x6e\xc7\x56\xe0\xfb\x21\x21\xd8\x3a\x7b\x3f\x64\xe4\xa4\xd5\x54\x77\x01\xe7\xb5\x24\x87\xfd\x88\x93\x90\xaa\x6e\xb1\x21\xf4\x12\x1d\xb8\x78\xd5\xac\x07\x83\x89\x84\x1b\xad\x3e\x0f\x06\x99\x37\xf5\x4e\x99\xa2\x0a\x40\xe8\xe7\x2f\x37\xdd\xe2\xa5\xfe\xf7\xbf\x06\xd8\xec\x98\x40\xe2\x35\x5d\x3c\xa6\x0e\xd8\x64\xe0\x18\x20\xc3\x1e\x7a\x4a\x4f\x1d\xb0\x87\x1f\x5d\x08\xae\x36\xf1\x10\x82\x18\x3c\xc3\xf9\xc2\x67\xc8\x2b\x9c\x4f\xf8\xd7\x39\xad\xe8\x30\x39\x1d\xe7\x68\x1e\x99\x6b\x8a\x67\x7c\x20\xb2\x84\x8b\x35\x78\x9e\x44\xbf\xd3\xb2\x5e\xd9\xd3\xa6\x0f\xba\xb1\x7c\x76\xcf\x55\x5f\xc8\xed\x70\x58\x13\x7b\xbf\xda\x02\x4e\xd9\x16\xd0\xa5\x4b\x09\x2c\x61\x60\x95\xae\x66\x51\xcd\x69\x7e\x86\x8d\xd3\xce\x16\x70\x24\x1c\x05\xf8\x40\x52\x51\xc0\x5e\xab\x5a\xdc\xfc\x77\x73\xcc\x33\x4d\xb3\xd9\x67\x86\x81\xd3\x8d\x9a\x33\x40\xff\x2a\xb0\x38\x87\x1f\x65\xcb\x94\xc6\x7a\x70\xe4\x33\x7b\x06\x92\x3f\xb1\x1e\x68\xbd\x9e\x55\x2c\xc5\x3f\x2f\x71\xa7\x61\xe1\x6c\xcc\x59\x73\x27\x5b\x03\xcb\xe4\x58\x15\x0b\x50\x5f\x67\x53\x98\x66\x4b\x4d\x7d\xb4\x95\xba\x66\xb3\x5f\x8c\x24\xa3\xbd\xd8\xe4\xb3\x25\x3d\xf0\x2b\x34\x50\xc8\x4f\x82\xd0\xea\xe9\x92\x20\xb4\xfa\xfe\x00\x42\x5b\x97\x33\x04\x80\xdf\xe1\xef\x1a\x1a\x38\xb7\x80\xd0\x96\xb0\x57\x58\xd5\xf5\x7a\x99\x69\x66\x40\x84\x9a\x3d\x67\xce\xaf\x06\x36\x2e\xbf\xe2\x70\xc3\x26\x66\x17\xda\xc5\x6f\xb2\x1b\xf4\x49\xb1\xc0\xc5\xec\x06\x57\xf1\xfb\xe0\x98\xc3\xf6\x40\xb6\x2d\x3a\xf4\x83\x6c\x5b\x8d\xad\x9a\x26\xd5\xcc\xdf\xf1\x07\x42\x27\x00\xa6\xb6\x03\xd7\x33\xe6\xc8\xcd\xe9\x0b\x66\x41\xac\x31\xa0\xd4\x1e\x55\x03\x0e\x28\xb5\x95\x44\x4b\x63\xca\xfb\xa1\xb3\x60\xd4\x56\xd0\x40\xc6\xd4\xda\x00\x4f\x98\x53\xf5\x80\x09\x9b\x4e\x86\x07\x9a\x1b\x69\x6f\x37\xa7\x29\xc7\xb5\x55\x00\x70\x5b\x49\xfc\x3a\x44\xb1\x35\xff\xf8\x00\xc5\xb6\x03\x96\x3c\x04\xb1\xd5\xf8\x0a\x86\x6d\xd5\xc4\x3e\x23\x99\x05\xa5\x33\x35\x9b\xa3\x10\x0e\x5e\xf1\x70\x06\xa4\xce\x03\x6a\xa2\x19\xab\x92\xf5\x7b\x8a\xe3\xe2\x99\xa6\xc3\xa6\x2d\x9b\x3b\xd3\x3f\x92\x57\xd0\x04\xa1\xdb\x5a\x17\xe7\x32\x66\xda\x1d\x98\x32\x01\xc2\xe1\xcc\xd4\xe2\xcb\x7f\x4c\x40\x44\x5d\x46\x72\x2b\x67\x82\x87\x5b\x25\xcc\x73\x25\x23\xa0\x79\xf1\x28\xa6\x13\xc7\x05\x41\x92\x87\x95\x8c\xc7\xba\xd0\xd4\x9d\x2b\x62\xbc\x41\x25\x1f\xa2\xe4\x6a\x63\x00\x25\xb7\x2b\x90\x00\x92\x5b\x72\x9e\x4f\x8d\x04\xee\xb4\x93\x83\x24\x39\x39\x9d\x1d\xfa\x24\xb6\x90\xdb\xd7\x68\x2f\xad\x3a\xf3\xca\x81\x53\xd5\xa5\xce\x09\xc7\x05\x0c\xb7\x1f\x6e\xe6\x0b\xde\xed\x39\xba\x3c\x16\x6e\xff\xcc\x14\xee\x47\x10\x14\xc9\x94\xe2\xc4\xb0\x56\xfa\xe1\x3c\x5f\xe0\x6c\xb9\xd7\xd2\x0c\x21\x39\x30\x37\x38\xac\x77\x72\xf5\x6c\xa8\xd6\x34\xb8\x6b\x7a\xc0\x04\x1f\x24\xe7\xc3\x98\x37\xa2\xcc\xcf\xd2\x12\x13\xf7\x11\x76\x88\x23\x3f\x52\x7b\x75\x06\xef\x5c\x0b\x2b\x26\xa5\xc2\xf4\x99\xb3\x3a\xff\x0c\xb9\x05\x99\xb7\xaa\x61\x4d\x2e\xac\xb5\x2b\x4c\x2e\xac\xbb\x07\xfc\xc9\xdd\xc3\xd8\xb9\xb0\x56\xe2\x05\xc9\xb7\xe8\xc6\x2d\x60\x6f\x4b\x5a\xf6\x04\x77\xf6\x7e\xb4\xfc\x83\xf1\x7a\xab\x3d\x7c\x56\xc6\x46\x19\x99\x66\xcf\xf1\x8e\x10\x8c\xdf\xae\xbf\x22\x10\xbf\x3d\x79\xb0\x3e\xe8\xc9\x4f\x5e\x74\x0e\xb7\xf4\xcb\x6a\x7a\x84\xde\xdc\xc5\xf4\x96\x5b\x07\x63\x3b\xa6\x12\x8c\x3c\xf8\xe5\x3c\x39\xec\xd7\x16\xe8\x13\x17\x10\x87\xfd\x4b\x43\x86\x84\xe0\x03\xbb\x03\x81\x70\xea\x9f\xa6\xe8\x3d\x49\x1b\x97\x84\xf7\x33\x3b\xb7\xbf\x67\xce\x43\x9e\xed\x92\xfb\xe2\xf3\xae\x45\x6a\xf6\xe5\xe4\x30\xd4\x2d\xcf\x4c\x6d\x44\x60\xfe\x96\x5f\x56\xc5\x75\x89\x51\x18\xc0\xfc\xd6\x3c\x7d\xa2\xfc\x72\x78\x03\xc1\xa5\x69\x43\x16\xe5\xd7\x6b\x0a\x50\x7e\x6b\xa1\x56\x41\x7e\x4b\xb7\x40\x47\x1f\xde\x13\x1e\x3a\x9b\x91\x93\x64\xc4\xe1\x0a\x53\x58\xc9\x43\xf9\x29\xb0\x50\xe8\xaa\x10\x22\x7d\x2c\x7f\x77\x4b\x22\x9c\x87\xd9\x69\x14\xe7\x81\xef\xdd\x3d\x3f\x78\x61\x9e\xc3\x7a\xb5\xd1\x31\x9f\x21\x02\x08\xf4\x28\xbc\x3e\x87\xd2\x84\x0e\xe1\x2a\x00\x61\xe2\xb8\x66\x4f\x0a\x4b\x19\x3e\xe3\x5b\xc7\x4c\x05\xd7\x12\x47\x58\x5a\x7e\x5a\x6c\x42\x46\xe6\x68\x8b\xc2\x2f\xdb\x13\xfc\xde\x7e\xd8\xf7\xea\x69\xc4\x32\x2a\x96\xaf\x22\x47\xd4\xcc\xf5\xc7\xf3\xc2\xae\x43\xb5\xd5\x2d\x6c\xe3\x35\x73\x34\xf3\x8c\x80\x93\x85\x55\xdf\x97\x2f\xd9\x36\xc5\x1b\xfc\x0b\xe5\x0a\x90\xdf\xc3\x38\xc8\x68\xba\xbf\xd0\xa7\x46\xbe\x97\xe9\x33\x06\x9b\xe5\xb3\xba\x8e\x2b\xa0\xb4\x11\x16\xc6\x8f\x6f\xf8\xbb\x82\xe0\xb2\x05\x8d\x0d\x90\xb6\x84\x08\x26\xd7\xc6\x00\x22\xb8\x93\x53\x66\x44\x73\x95\xe8\x9f\xe1\xe4\x50\xf7\xd0\xd6\xe0\xf7\x1d\x65\xcc\xa6\xbb\xb1\x5a\x8c\xda\x7c\x34\x30\x70\xb0\x82\x77\x03\x74\xb6\xbb\xe7\x97\xb5\x6a\x90\xe8\x16\x71\x25\x99\x59\xaf\xf6\xf5\x3a\x8c\x9e\x99\x1e\x78\x7e\xd8\xf3\x3e\x33\x81\x0e\x75\x40\xd0\x9d\x7d\x9c\xdb\xf6\x36\xf8\x83\xe2\x45\xde\x57\xb8\xc5\x46\xae\x0d\x4d\x4e\x99\x05\x4a\x4a\x6c\x59\xa1\x17\xcc\x34\xa0\x04\x1f\x82\x13\x8c\x98\x6a\x7a\x3e\x43\x5e\x5c\xd9\xb4\x25\x38\xf1\xdc\x59\x08\x5b\x30\xc2\x4c\xde\x24\xc0\x1a\x82\x09\x4f\x92\x7d\x0c\xc0\x84\x3b\xd8\x30\x03\x30\xe1\xae\xc5\x1d\xf8\xe0\xaa\x5f\x66\xe0\xbc\x36\xc3\x33\xa4\x29\xc1\xee\xea\xbc\xa6\xd3\x20\xb8\xc2\xb5\xba\x43\x63\x78\x54\xfc\xc3\xd9\x86\xa4\x81\x2b\xdc\xc1\x52\x1b\xb1\xc5\x88\x69\xb4\x7f\x84\x6d\xf3\x8d\x86\x05\x1d\x16\xc0\x1e\x3e\x14\x06\xc1\x1e\xee\x87\x6b\x28\xf0\x08\x79\x3c\x46\xe8\x46\xee\x84\x72\x97\x71\xe4\x73\x0e\xd5\x17\xf6\x98\x87\x7c\xd9\x1c\x85\xb7\x40\xd0\xc1\x81\x1d\xa1\xc3\x80\x52\x6f\x20\x11\x78\xbd\x16\xe6\x0c\x37\x7e\x2b\xce\x5c\x0d\x8b\x00\x97\xd4\xfc\x83\x7e\x78\x00\x01\x2b\x5c\xf9\x7b\xae\x0c\x3d\x3f\xed\x87\x4d\x28\x49\x21\x11\xc4\x69\xc2\x2c\x4a\x2b\x50\x60\xf5\x02\xa6\xb8\x78\xf1\x12\x29\x4e\xa0\x14\x84\xe2\x84\x24\xc5\x2c\xb0\xa6\xd1\x88\x2d\x4f\xf4\xe2\xdc\x20\x4e\xe4\x28\x10\x1b\x8a\x0b\x79\x9d\x3c\x5b\xd1\x65\x61\x3a\x9b\xd1\xe3\xf4\x55\xe9\xc0\x70\xbd\x10\x3a\xc4\x35\xba\xbb\x7f\xd0\x36\xd2\x41\xb1\x4f\x20\xf3\x1b\xae\x1a\x37\x3e\x2c\xce\xf8\x4d\x73\xd2\x74\xd3\xe4\x39\xfb\x22\xf6\x1b\xb3\x08\x64\x71\x2f\x59\x29\x06\x10\x17\x5b\xdf\x74\x9d\x48\xe3\xc9\x35\xa2\xc4\x96\x0c\xaa\xde\x5f\xa1\x27\x1b\xb9\xce\x06\x88\xc5\xdd\xcb\x19\x00\x8b\xbb\xe2\x1f\x80\xc5\x47\x4b\x12\xb1\x45\x86\x4e\xb2\xa0\x01\x60\x71\x37\xbc\x2f\x8c\x34\x37\xb4\x13\xc4\xe2\xb2\xb2\xf4\xc7\xdc\x50\x18\xa3\x45\x91\xee\x6c\xb9\xa0\x7b\xd1\x1c\x78\x26\x14\x69\x27\xdc\xdf\xab\x8b\x78\xd5\xbb\xaa\x05\x24\x85\x48\x18\x20\x11\xef\xe3\x42\x3f\x5e\x27\xa4\xf8\xcf\x63\x19\x2b\x30\x26\xd6\xe7\x8f\x46\x78\x46\x1a\xd0\xfd\x2f\xbe\x94\x24\x69\x3d\xb9\x3e\x12\x4a\xc8\xf5\xbd\x19\x05\x9b\xb8\x97\x62\x11\x94\xd3\xac\x2a\x37\x82\x1f\xc9\xbf\xdc\xc2\x82\x77\x91\x7e\x6c\x0b\x02\x5b\x86\x86\x44\xaf\x1f\x43\xff\xfd\xa9\xdb\x2e\x1d\xd8\x35\x9a\xae\x1f\xcb\x43\x67\x16\x86\x0d\xd9\xf2\xfa\x65\x97\x3b\x2f\xd9\x65\x5f\x5c\x9f\x83\x67\xcf\xd3\xb4\x03\xa7\x47\xd3\xba\xd0\xf7\xe1\xcb\x00\x27\x77\x60\xa9\x06\xb8\xc9\xc5\xe8\x9a\xc5\x1d\x89\xae\x23\x40\x28\x77\x30\x36\x07\x10\xca\xbb\xd6\xc9\x8b\xd6\x65\xbf\x3a\x0a\xbd\xa5\xd6\xb4\x8b\x40\x91\x56\x5e\x99\x40\x27\xd7\xe1\xe9\xef\x56\xa6\x62\xed\x57\xec\xfd\x6a\x71\x58\x4c\xd8\x86\x90\x6f\x3c\x17\xa6\x11\x92\x02\x6e\x72\xd7\x9f\x09\xdc\xe4\x5e\xaa\xcf\xee\x63\xea\xc7\x7d\x4f\xa7\x7f\x90\x92\x7b\x81\x6b\x00\x8e\xdc\x0b\xcc\x01\xdc\xe3\x0e\x5e\xd7\x10\xf6\xf8\x50\x84\x06\xeb\x78\xf7\x94\x96\xb1\x6c\x94\xea\x57\x52\x36\x84\xfe\x85\x65\x83\xac\xfc\x63\xd5\x14\x7e\xfc\x8a\xdd\xe3\x0c\x98\xe1\x4e\x33\x37\x88\xc8\xbd\xe4\x33\xd4\x0c\xb5\x69\x21\x4e\x0c\xa3\x7b\x57\x5a\x29\x5c\x6f\x23\xc9\x4d\x1e\x03\x9e\xf1\xfe\x8c\x8a\x9b\xde\x98\x3e\x4b\x26\xe1\xb9\x80\x15\x57\xa3\xd3\x00\x2b\xee\xa5\xf9\xbb\xb0\xb1\xf4\xb0\xab\x0b\x70\x26\x40\x28\xee\x25\x9f\x75\x04\x66\x3a\x7b\x1e\x3b\xda\xee\x6c\x16\x67\x81\xab\x08\x43\x30\x40\x2b\xee\x46\xb4\x83\x4f\x5c\x0b\xa4\x14\x7c\xe2\x0e\xba\xce\x00\x9e\xb8\x16\xa8\xfb\x1a\xb9\x3d\xa8\x88\x58\xb1\x61\x04\xb0\x60\xc5\xcb\x6c\x0f\x4b\xb7\xf8\xdc\xa8\x83\x50\xe6\x65\x11\x49\x8f\x8b\x89\x71\xa2\xd8\xdb\x2d\x35\xf4\xd2\xfc\x5d\x1a\xe1\x2a\x1b\x77\x56\x2c\x4d\x6f\xdd\xb4\xa4\x9f\xd1\x27\x74\xa5\x60\x61\x77\xc9\x86\x5b\x1d\x92\x42\x86\xeb\x8d\x90\xa1\x49\x71\x21\x57\x94\x6a\x61\xb7\x97\x65\x99\x4b\xcf\x91\x6e\x11\x66\xd3\x49\x44\x63\x45\x70\x10\x8d\x9b\xee\x47\x02\x1a\xeb\xa2\xbe\x94\x36\x20\x28\x80\x1b\x77\x2f\xb4\x00\x37\x16\xba\x6e\xac\x10\xf3\xc1\xdd\x65\x3e\x78\x38\xcb\x32\x61\x9c\x12\x3b\xc0\xc5\x47\x71\x37\x2f\x6a\x1a\x3e\x2b\xab\x78\x5e\x96\xf9\x38\x29\x8d\x53\x61\x81\xde\xae\x94\x1d\xac\x96\x38\x72\xf2\xe7\x0e\x60\x8b\x4b\x6e\xad\xc5\x86\x70\xb1\x15\x11\xd0\xee\x56\x8a\x08\x7f\xa6\xd0\x1b\xe0\x18\xef\xd5\x67\x65\x4e\xf9\x8e\xe3\x3d\x99\x5d\x98\xe4\x32\x20\xcd\x08\xbd\x65\x1a\x5c\xc3\xef\x80\x35\x3e\x44\xaa\x19\xc0\x1a\xf7\xe2\x58\xb4\x3c\x18\x24\xb5\x4c\x0c\xaf\x18\xb5\x2e\xa6\x02\x39\x1a\x84\xe3\xee\x1d\xc0\xc2\xd8\x00\xe2\xdb\x00\xe0\xf8\x10\x18\x67\xac\x2b\x53\x96\xd0\xc7\x2b\x17\x94\x7e\xe1\x81\x58\x90\x84\x12\xe2\xd8\x64\x3f\x40\x1c\xf7\xe2\x24\x5d\x90\x4f\xe9\xc8\x9d\x1d\x61\x1d\x6e\x57\x97\x02\x38\x3a\xe4\xf1\x48\xab\x42\xf8\xd1\xfc\xef\x7f\xd3\x1b\xd8\xa5\x77\xbb\x8a\xcc\x52\x58\x70\x7c\xb7\x0e\x56\x16\x20\xff\x90\x5b\x43\x47\xc4\xfc\xde\x2e\x31\x85\xdc\x5d\x0c\x83\xd1\x01\x44\xee\x45\x8a\x6c\x1a\x7a\xf3\x23\x01\x82\xdc\xd5\x43\x17\xb6\x02\x8d\xa3\xeb\x11\xf0\xd9\x02\x90\x01\x77\x2e\x46\x80\x22\xf7\xdb\x7a\x7f\x90\x03\x79\xac\x57\xa6\x66\x97\xde\x3c\xe1\xbe\xb0\xc6\x1e\x70\xa1\xc2\x1c\xe8\x2b\x91\x3b\xfc\xc3\x1b\x50\xc9\xdf\xcb\x8c\xbb\x14\x2f\x6d\xbb\xd7\xbf\x4c\x3e\x48\x71\x7c\x0f\x4d\xd3\xb4\xbe\x6c\x9c\xe9\xff\x14\x00\x3d\xe2\x9f\x5b\x4f\x16\xf2\xe5\x89\xf2\x85\x03\x2c\xf1\xfd\x48\x7b\xe9\x96\xf4\x9a\x62\x59\x2f\x3a\x89\x99\x85\x40\x3f\xee\xe0\xe5\x8f\x44\x3f\x56\xe5\x13\xfd\x58\x38\xa2\x71\xfe\xe8\x16\x0c\xf9\x34\x2e\x5d\x9d\xef\xc4\x13\x91\x74\xbb\xe3\xc4\x83\x41\x8f\xfc\x13\x46\xed\x98\x4e\x19\xf5\xf2\xf9\xb3\x56\xda\x3b\x5c\x32\x28\xf1\x29\x13\x66\xc1\x01\x42\xee\xc5\x16\x0e\xf6\x36\x1c\xf5\x34\xc4\x5c\xcf\x63\x00\x92\x8b\xd7\xe4\xe7\xc1\x15\xef\xb2\x56\xb7\x39\xe3\x06\x20\xb9\x93\x2b\x77\x9c\x42\x9e\x98\x82\x09\x80\xe4\x0e\x90\xdf\x00\x1f\xb9\xe8\xf9\x71\xe6\x85\x84\xd5\x16\x9c\x6c\x11\x3d\x4e\xb8\xb6\xae\x41\xa7\x5c\xdb\x79\x32\xab\xad\x7a\xe8\x69\xc6\x5a\x7d\x04\x81\x47\x3e\xf4\xc4\x05\x1e\xf9\x00\x5c\x75\x9c\x82\x7d\x41\xd0\xce\xe2\xd6\xe6\x1b\xb2\xc7\x90\x6f\x7b\x9c\x55\xdd\x8b\x3d\x7f\x92\x31\x46\x2f\x8e\x53\xae\x8d\xd0\x7d\xa6\x63\x02\x42\xf4\xc9\x85\x84\x7e\x1b\x27\x26\x04\x3d\x7a\x4f\x2e\x27\xbc\x0d\x3a\xe1\xe6\xc3\x8c\x10\x27\x26\x04\x33\x1e\x9c\x98\x10\x80\x6f\xfa\x83\xea\x9d\x78\xea\x4f\x73\x57\x9d\x78\x27\x14\xe7\xaa\xb9\x36\x9c\x6a\x60\x9b\xa3\xdb\x99\xc6\x49\xe1\x84\x83\xda\xdc\x8d\xb3\x3a\xb5\x1d\xc8\xd1\xcf\x66\x24\x02\x54\xe4\x24\x74\x4e\x03\xd1\xa9\x6f\x82\xb7\x5f\xa7\xe1\xe3\x26\x27\x39\x31\x06\x74\x63\x06\xce\xbc\x79\x80\xe6\x9e\xc6\x8c\xeb\x78\x77\x92\xb6\x56\xb1\xfc\x44\x54\x20\x39\xfc\x38\xd3\x18\x90\x25\xbc\x92\x62\x5e\x48\x58\xaf\xba\x03\x18\x74\xd7\x5b\xee\x34\x32\xdc\xe8\x19\xf0\x9f\x7b\x75\xad\xcc\x2e\xa7\xdb\x09\xf8\xcf\x7b\x4d\x7c\xb9\x98\x06\x86\x3b\xf3\x98\x33\x0f\xd3\xcd\x4e\x07\x71\x2a\xe8\x6e\x2c\x79\xb1\x85\x93\xff\xba\xd9\x37\x6b\x0d\xd2\x7a\x8f\xd3\x74\x71\xb0\xab\x33\x48\x8a\xe9\x09\x0a\x59\x97\x33\x1d\x0a\x2a\x76\x0a\xa7\x00\x00\xf0\xc7\x69\x26\x57\x03\x4d\x13\x3b\x5a\x7b\xe9\x89\xf2\x0e\xda\xff\x38\x43\x4b\x33\x1f\x6d\x85\xbd\x57\xdb\x5e\x52\x05\x1b\x5f\xca\x3f\x28\x74\xe7\x56\xd2\xbb\x99\xd2\x4e\x5d\xf9\x55\xf1\x81\x8e\xee\xfa\x26\x9d\xa7\x55\xd1\xa9\xd3\xd3\xef\x2a\x25\x33\x3d\xfc\x67\x13\x12\xdd\xec\xcf\x33\x7b\xe8\x1f\x37\x6d\x58\x95\xa6\x0d\x3a\x92\x1c\xd3\x5e\xa1\x36\x57\x6b\x12\x76\x2b\x9c\x5c\x2c\xec\xd5\xde\xc2\xfe\xf4\x08\x3b\x0d\xee\x32\xb1\xca\x29\x67\x83\x50\x82\x0d\xdd\x41\x37\x1e\xe7\x6d\xad\x54\x64\xe2\x78\x53\xb4\x9c\x5e\xb3\x6b\x84\x00\xcc\x79\xff\xc3\xc0\x37\x47\xea\xe4\x9c\x1e\x27\xd9\xd0\x64\x6d\xa7\x5e\x78\x26\x89\x00\xda\xb9\x57\x4f\x61\x1a\xac\xe9\x87\x61\x58\xba\x71\x9d\xa6\x50\x31\xc5\xc0\x09\xaf\x02\xfa\x73\x9c\x5b\x61\xed\x46\xea\x9f\xc9\xb7\x18\xde\xdb\x78\xa6\x4f\xaf\x02\x01\xec\xe9\xdc\xac\xaa\x1a\x8b\x0d\xe2\x73\xf7\x1e\xea\xcc\x4b\x76\x29\x3c\xf9\xcc\x0e\x8d\x0d\x27\x97\xe3\xbf\x43\x72\xfa\x59\x84\x1e\xe2\x48\x67\x5a\x88\xd3\x3c\x64\x5a\x18\xce\x2f\x7b\xbb\xbf\xba\xcc\x37\xa6\xca\x79\xfd\x54\x4c\xa6\x2f\x0d\x44\x25\x9f\x3b\x75\x4d\x9e\x97\x25\x06\x2f\xf0\x94\xac\xca\xad\x00\x73\xbc\x60\x17\xe0\xe3\x0d\x10\xa2\xbb\x16\xb3\x44\x88\xd6\x8b\x4b\x50\xe8\xa1\x72\x2f\x28\xb4\x72\xee\x75\x48\xef\xe0\x0b\xd7\xc1\x24\xd6\x3f\xf3\xac\x5c\xb8\xc0\xc9\x3f\x40\x95\x2e\x25\x9f\x61\xd4\x90\xdb\x4b\x60\x2c\xbd\xc7\x2f\x92\x99\xbb\x81\x2e\x7d\xdb\x34\xa9\x5c\x26\x19\xd1\x2c\x02\xdc\xf4\xee\xa5\xe5\xa5\xaf\xd0\x6b\x30\xa6\xab\x6c\xfe\x4a\xdd\xcd\xa9\xa8\xc3\xf2\xbe\x70\xf2\x20\x58\x97\x5c\x00\x3d\xf3\x42\x8f\x33\x18\xf4\xd2\x53\xad\x58\x93\x52\xe8\xf4\x23\xa1\xfa\x0b\xcf\x44\xe5\x39\xa7\x19\x91\xc5\xae\x01\x94\xba\x1b\xba\x77\x99\x3e\x44\x3f\xb7\xab\xd9\x34\xdd\xc0\xef\x4c\xa6\x73\x99\x8e\x1c\x34\x86\x21\x5a\xb5\x19\x47\x2f\x53\x86\x98\x4d\xe9\x42\xef\xcb\x1d\xd0\xa1\x0c\xf6\x43\x4f\x33\xc3\x33\x2f\xed\xbf\x2e\x2e\xfa\x20\xd0\x20\xe3\x4a\x22\xef\x6e\xe8\x46\xb1\x22\x3d\x5c\x52\xf9\x66\xb5\x6c\x52\x14\x20\xb0\xab\x4b\x86\xa2\x81\x57\xdd\x81\x06\x19\xd7\xd0\xfe\x84\x30\x77\xa1\xf9\x01\xe3\x31\x2e\x00\xb9\x54\x91\x01\xb5\x2e\xaa\x58\x80\x5a\x17\x5d\xe8\x2f\x33\x93\x9b\x71\x02\x54\xeb\x6a\xde\xa8\x0b\xb6\x30\xbc\x93\x06\xd5\xba\x6a\x52\xbc\x48\x34\xaa\xe3\xa6\x08\xd7\xe9\xd0\x7e\xa5\xde\xb7\x6c\xef\xf5\x1f\x3f\xc3\x11\xda\x21\x09\x83\xa2\xd9\xe4\x42\xf3\xab\xea\x65\x00\x5e\x17\xfd\xc0\x2e\x72\x88\x19\xf5\x74\xa9\xf9\xe9\x91\x74\x01\x8a\x52\x8d\x55\xbe\x92\xc7\x2c\x2b\x06\x2d\xc7\xfe\xea\x5e\xa6\x7e\x2e\xb0\xb5\x40\x73\x03\x60\xeb\x5e\xdd\xf8\xf2\x95\x6e\x89\x6e\xb7\x68\x31\x80\x1b\x76\x7b\xe3\x05\xaf\x2b\x1e\xf8\xd5\x05\x0c\xce\x21\x7c\xf5\x91\x2d\xc0\x7a\x9c\x37\x54\x39\x6f\x76\xc1\x9f\x2e\xba\xec\x8b\x30\x7d\xe8\x13\x00\xc4\x74\xd7\xb5\x4d\x28\xe9\xa9\x84\x7f\x2d\xa8\x23\xe2\x09\xd8\xd0\x3d\x37\x9e\xc1\x5e\x6a\xb3\xd7\xa9\x90\xee\xac\xeb\x89\xae\x4e\x09\x3a\xf4\xfe\x87\x9e\x9c\xca\x1e\xb0\x69\xe0\xa1\xbb\x19\x38\x41\x87\xde\x87\x83\x9a\x51\xca\xcc\xba\x78\xa1\x94\x99\x4a\xf3\x92\x0f\xc1\x5a\x85\x8d\x96\xf5\x08\x1b\x6d\xa6\x15\xa0\xa2\xbb\xa9\x3b\x12\x11\x3a\xbf\x37\x70\x88\xed\x8c\x0b\x99\x37\xa8\x57\xb2\x2a\x17\xef\x92\x88\x85\x25\x30\x5d\x3a\xbc\xad\xaa\x35\x90\x3b\x06\x20\xd0\x99\x16\x0b\x10\xe8\xae\xf1\xf6\xba\x39\x18\x7f\x27\xd4\x03\x15\x7a\xab\x17\x34\x49\xaa\x11\x8d\x63\xa0\x42\x57\x9d\x75\x00\x85\x3e\x44\xf9\x19\x00\x41\x57\x6d\x54\x00\x41\x77\xdd\xa6\x00\x82\xae\x39\xa8\x47\x01\xd1\xdf\xf3\xa0\x30\x0b\x68\x6b\xda\xb3\x2f\x32\x87\x4c\xad\xf2\x80\x42\x57\x73\xa9\x5e\xb2\x3d\xf8\xaf\x78\xcf\x82\x17\x8e\xeb\x35\xda\x04\x69\x0f\xa4\xe6\x6e\x56\x3b\x90\x9a\xbb\xa9\xef\x2e\x73\x77\x9a\xca\x0e\xa4\xe6\xae\xd3\x9a\xe0\xcc\x02\x24\x0e\xc0\x99\xbb\xe9\xe4\x2e\x61\xb9\xf4\x77\xbd\x84\xe2\xd2\xc7\x15\x80\xe5\xdd\xf7\x5d\x04\x54\xe5\x5d\xb1\x2f\x3a\x19\x40\x9f\x80\x52\xde\x9f\x4d\x5e\xd8\xbb\xd3\xaf\xb2\xb2\xc2\x4b\x8e\xd7\xaf\x8c\x5b\xe3\xd0\x81\x9a\xbc\xff\x09\x5e\x20\x06\x6c\xde\xfb\x48\xd2\x45\x11\xb2\x78\x68\x0f\xbe\x05\x93\x54\x5d\x07\x1e\x39\x33\xa0\xdd\xde\x9f\xaa\x27\xdf\x87\x53\xe4\x47\x5e\x7c\x41\xc0\x01\x37\xee\xe6\xb4\x02\xdb\xb8\x9b\x50\x2c\xb1\x89\x75\xc5\x4c\x3c\xe2\x80\xba\xde\xe9\x4e\xc5\x16\xb8\xb9\xdb\xd4\x29\xfb\x4e\xc6\x05\x2f\x10\x82\x78\xaa\xbe\xdf\xd5\x2b\x35\x9f\xc9\xb4\x8d\x98\x2f\x34\xf1\xaf\xe6\x47\x52\x48\x28\x75\x82\x10\x73\x8e\x00\x21\x0e\x10\x58\x06\x20\xc4\xf5\x67\x13\x0d\x1f\x2f\xc7\xa4\x65\xb2\xfb\xac\x8a\xc1\x46\xb9\x5b\xd6\x4a\x4d\x3a\x43\x99\x04\x0f\xbc\xe1\xda\x20\x5d\x77\xcb\x29\xe1\x05\x6f\x28\xed\x1c\x77\x06\x19\x87\x2f\xb9\xd2\xd4\x45\xa4\x95\x19\xbc\x6e\xcc\x94\x24\xa9\x1f\xc2\x0f\x0b\xca\x39\x6e\x3d\xa3\xdd\x27\xe8\x21\x53\x83\x01\xf0\xc3\xd1\xed\x08\x97\x92\xda\x24\x40\x22\xee\x26\x0c\x03\x89\xb8\x98\x7e\x00\x20\xe2\x62\x26\x9f\x5b\x5d\xc5\x95\x19\xde\x9e\x57\x3f\x62\xbf\x41\xfd\x6f\x4c\x8e\x66\x73\xba\x93\xf7\xc0\xd2\x04\x1c\x9e\xca\x1a\x80\x0c\x47\xf7\x19\x76\x93\x1f\xc1\x6d\xd4\x6e\x6f\xfc\x9e\x4c\x6f\x72\x4f\x15\x01\xe8\xfa\x9d\xbe\x4e\xb6\x67\xc6\x0d\x6d\x0d\x40\x11\xef\x89\xf2\x33\xe2\xc2\x21\xf9\x77\x7a\x41\x65\x65\x0f\x9b\xd5\x06\x19\xb7\x93\x86\x45\xd1\x4c\x34\x77\x38\x56\x26\x70\x33\xa4\x6a\xc6\xc3\xdb\x18\xad\x7f\x2f\x6e\xbc\xe5\x0b\x04\xc7\x59\x16\xd2\x38\xfa\x9f\x19\x94\xc1\x3b\xae\x46\xd6\xde\x28\x4e\x53\xe5\x19\xb8\xe3\xaa\x7d\xf8\x96\x79\xb9\xfc\xea\x4a\xb0\x22\x10\x8e\xbb\xc9\x58\xee\xa5\x2d\xc7\xdf\xb3\x93\x16\xc8\x4e\xfa\x8f\x49\x21\x7d\x76\x09\xdd\x88\x3a\x48\x99\x25\xf0\xc6\x41\x4a\xef\xb3\x7b\xb9\x9e\x7e\xc4\x61\x46\x06\xba\xc5\xc0\x30\x17\xc0\xad\x2f\xb5\x16\x11\x70\x93\xab\xbe\xe6\xb7\x99\x39\xdc\x4a\xe2\x75\x79\x21\x0e\xf0\x71\xd5\xc5\xe5\xce\x08\x68\x27\xfe\xcc\x6d\xe2\xcb\x5e\x1d\xf3\x3f\xde\x97\x52\x89\xc5\x61\x89\xa6\x0b\x4c\x48\xe4\x5c\x68\x3c\xab\xcd\x0c\x7f\x67\xa8\x96\xfd\x05\xbd\xcb\xd4\x28\xf7\x65\x92\x61\x3f\x3a\xa9\xc9\xdf\x91\x4f\xe0\xf9\x20\x1f\x17\x45\xd8\xfb\x62\xfe\xdd\x30\x97\x5d\xf2\x9b\x4d\x9b\xb5\x28\xdd\x37\xf2\x8c\x07\xeb\x96\x4c\x17\xff\x80\xb8\x39\x4f\x84\x4b\x9b\xb4\xfc\x46\xc7\x1b\x66\x2d\x01\x37\xb9\x18\xe1\x70\xe3\x05\x25\x13\xbd\x31\x58\xea\x8e\x75\xdf\x4a\x97\x76\xef\xce\x19\xa7\xda\xbc\xde\x84\x07\xdf\x5e\x6f\x6a\x3f\x11\x4b\x79\xe9\xdc\x75\xcb\x2a\x25\xd2\x8f\x5a\x44\xbe\x90\xbb\x07\x01\xe3\xce\xfb\x4d\x07\xcb\xfd\xa6\x28\x04\x80\x2f\x77\x6f\x94\xef\xcd\x37\xa3\x7b\x08\x88\xd9\xf2\x9a\xe0\x46\xa7\x9c\x4a\xa4\x20\x34\x77\x73\x73\xdc\xc2\x68\x9a\xd9\x00\x84\xe6\x6a\x54\xfc\x4d\x48\xb6\x3a\xde\x8d\x2d\x54\x8b\xd4\xfd\x1a\x56\x49\x97\xde\x3c\x4d\xf4\x95\x60\x2e\xd3\x14\xdd\xa2\x65\x2a\x65\x01\xe3\xdc\x4d\x0f\x01\x8c\xf3\xfe\xc3\x26\x5e\xdb\xf6\xab\x8f\x4e\x51\x95\x59\xb5\xe5\x66\x84\x79\xe9\xfc\x7e\x7f\xb9\xa1\x18\xaa\xae\xde\x76\xea\x53\xd9\x97\x3c\x7d\xaa\x7e\x50\xc0\x07\x20\xb0\x29\x97\x16\xca\xb9\x9b\x20\xe2\xf9\xa1\x28\x73\xa6\x45\x72\x3e\xb4\x2e\x3d\x66\xd4\x32\x90\x09\x5c\xe7\xaa\x1c\xf8\x60\xcd\x34\x14\xe2\xf9\x65\xdf\x2d\xee\x9a\x23\xfc\x3d\xde\x2f\x1a\xbd\x04\xb0\x73\x37\x0b\xc0\x63\x84\xb6\x1e\xdc\x00\x38\x17\xc3\x46\x00\x6d\xee\xb2\x36\x40\x9b\xf7\x47\xfe\x01\xc2\x8e\x7d\x3f\x4c\x85\xe0\xef\xcc\x15\x5b\x5a\x38\xe6\xa9\x7c\xf1\x00\xad\xf5\x6b\xfe\x21\xfd\x45\xc2\x04\x8e\xf9\x28\x7f\x1b\xf9\x9e\x02\x03\xfe\x59\x03\x1b\xc8\x26\x4b\x8e\xd7\x66\x3e\x79\x0c\x5f\x91\x04\x73\x18\xdd\xf7\x6c\xb5\xb5\xa8\x22\x3c\x5b\x2c\xe8\xa6\x4f\x10\xe8\x79\x1a\x2d\xf2\x54\x0e\x1b\xe4\xed\xc1\xa8\x99\x2b\x82\x06\xab\xb3\xab\x60\xd0\x43\x0d\xf1\xf1\x2a\x72\x5a\xc0\x9d\x9c\xcd\xb1\x93\x5d\x43\x04\x04\x0d\x09\x00\x46\xef\xd2\x74\xbd\xe1\xf1\xc2\x26\x7d\x48\x87\x69\x30\xf5\xc3\x75\xa5\x21\x47\x8f\xd7\x8a\x06\x7a\x3d\xda\x0d\x4d\x55\x0a\x7e\x73\xf7\x06\xeb\xe9\xec\xe4\xe2\xef\x32\x6f\x3b\xd8\x8d\xea\x65\xa8\x3d\x67\xca\x97\xdc\x19\x8c\xc9\xa4\xd4\xd9\xab\xa1\x51\x10\x5e\xf9\xe0\x6d\x64\xc0\x05\xe8\xcf\xdd\xa8\xfa\xc7\x84\x5b\xda\x43\x1f\x02\x9b\xbc\x9c\x7d\x46\x6e\x58\xba\x05\xf8\x95\x99\x88\x1e\x35\xcc\x6e\x7b\x70\x02\x87\x61\x8c\x53\xb3\x22\x79\x3c\x65\x67\xf6\x89\x8f\x40\xd0\x94\xcd\x3d\x28\x8b\x9e\xda\x07\x56\x6e\xe6\xcf\x67\x3a\x1f\x34\x30\xe5\x0f\x30\xef\x47\x55\x51\x42\xfb\xe0\x84\x6c\xd0\x2c\x98\xd0\xd1\x5d\x56\x5c\x86\x34\x2d\x3c\x21\x02\x07\xec\xe1\x31\x48\xda\x14\xa4\x60\x42\xd7\x9c\xb4\x90\x62\x20\xcd\x3e\x44\x29\x19\x0c\xfd\xac\xf4\x1a\xa3\x87\x66\x1c\xd1\x56\x08\x5a\x74\x37\x93\xc1\x93\x86\x4a\xf8\x38\x60\xd1\xdd\xf0\xe9\x67\x29\x15\x58\x20\x67\xd3\x3f\xc2\x7a\xe9\x3b\xf9\xa7\xcd\xa7\x04\x86\x74\xd5\x3d\xec\x21\x5b\xa5\x17\xf6\xcf\xa9\x9b\x02\xaa\xea\xa3\xd1\xd2\x8c\xa2\x40\x3e\x47\x6e\x0b\x35\x4a\x13\x95\x3e\x82\x3d\x39\x0e\x1c\x7f\xbc\x8e\x4c\xc4\x67\xfd\x8c\x9e\xcb\x39\x64\xae\x84\x87\xd0\xee\xf8\x60\xcd\x6c\x4e\xd5\xa5\x60\x85\xa8\x01\x16\x74\x35\xab\xe0\x63\xca\x90\xc8\x7a\xb5\x1b\xc3\xc6\x9e\x9b\x64\x5d\x8e\x3c\x19\x22\x1c\xf7\x31\x5d\x65\x9e\x08\x39\x22\x02\xfe\x83\xf6\xa8\x33\x28\x50\xd2\xdd\x18\xb5\x47\x87\x61\x6d\xd0\xcf\x2d\xd9\x94\x5c\xdc\x50\x2e\xc9\x26\x81\xcb\x46\x73\x00\x25\xbd\x4b\xf8\xc2\x3e\x94\x38\xc2\x29\xff\x11\x1b\x38\xa5\xa2\x0d\xb0\xd2\xdd\xb8\x82\xe7\xb1\x4f\xf4\xe3\x49\xef\x27\x3a\x88\xea\xa8\xa1\xf9\x91\x1d\x3a\xcf\x8f\xb7\x70\x7f\xe2\xde\x8e\xe7\x49\xa6\x61\x9b\x9a\x02\x1c\x30\x46\x57\x23\xa6\x9e\x47\xc2\x27\x7d\x7b\x95\x7b\xd0\x32\x45\xa0\xce\xa3\x2d\xbe\x84\xfc\x0b\xd4\xe9\xae\xeb\xe6\x23\xbe\x84\x09\x34\x41\x9d\xee\xcd\x5d\xc3\x35\xa2\x61\x27\x22\x4d\x8b\x7e\x3d\x1e\x79\xa7\x64\x13\x67\xa2\x92\xbf\x3b\xa7\xfe\x4e\x07\x5d\x04\x93\x5c\x9b\xc1\xee\xc9\x34\x27\xcb\x17\xc2\x27\x64\x51\xa0\x53\x18\x4a\x01\x36\x75\x51\x7a\x78\x92\x8d\x22\x8b\x01\x4e\x5d\x4d\xb1\xf7\x7c\xea\x6e\x1e\x55\xb3\x60\x4a\x8d\x3f\xee\xd8\x65\x89\x5c\x40\x1a\xc5\xfe\x60\x2d\x36\x74\x00\xcc\xea\x6a\x2c\xdb\xf3\x71\x22\x38\x9a\xef\x2f\xe7\x6f\xf2\x92\x4d\x07\x2f\xa4\x14\x60\xd4\xaf\x08\x9b\x2c\xed\xfb\x83\xa5\x1d\x96\xc6\xb6\x44\x57\x5f\x4c\xc5\x06\xbd\x03\x59\x5d\x54\x59\x5f\x3c\x7a\xb4\x4b\xbd\x87\xa7\x89\xb2\x42\x56\x19\x94\xf2\xca\x7d\x11\xde\x00\xa3\x2e\x52\x8e\xd7\x84\x28\x50\x55\xc0\xa8\xbb\x97\x0c\xef\x91\x5b\xd8\x5a\xe1\xc4\x70\x6b\x80\xa9\x33\x79\xc8\xcb\xf5\xa1\x31\x42\x6f\x49\xc2\xc8\x38\xd1\xae\xf5\x4c\x79\xd1\xae\xbd\x3c\x02\xc8\xfa\x38\xaa\xbf\x43\xe8\x39\x62\x6f\x81\x78\x3a\x84\x22\xc1\xb4\x1e\x78\x33\x24\xf9\xdd\x9a\x79\x11\xfe\x09\xac\xeb\xae\x2b\x33\x58\xd7\x5d\xe7\x33\xa1\xae\xcd\x37\x27\xbc\xf5\x94\x23\xbe\x70\xe6\xaa\x39\xfd\x4d\x1d\xdd\xc9\x90\x1d\x43\x40\xde\xcd\x8e\x43\xbe\xf9\x56\x66\x1b\xea\xfc\xa6\x8a\xee\xf2\x54\x17\x97\xfe\x55\xdb\xa6\x89\x26\xa8\x3d\x47\x15\x10\xec\xee\xf5\x30\x20\xd8\xc7\x90\x84\xbf\x66\x4c\xd1\x2f\xf0\x6d\x46\x7a\x51\x15\x2e\xc4\xfa\x44\x00\x76\xdd\x5b\xfe\xee\x61\xf4\x0f\x73\x4d\x6b\x77\x7c\xd3\x8a\xec\x26\xc0\x5a\xac\xc4\xf9\xea\x2c\x6c\x9a\x22\xe0\xad\x8b\x31\xea\xa0\x5b\x17\xb9\xe0\xab\x26\x5e\x7c\x96\x8a\x42\xf4\x13\xe8\x5a\xce\x00\xd0\x75\xd7\xd1\x0a\x70\xeb\xfd\x15\xb3\x2e\x92\xa5\x49\x7c\x5f\x5c\x87\x95\xc1\x80\xb7\xde\x5f\xd1\xdf\xe1\xfa\xd1\xc3\xe1\x5c\xf9\x3b\xc6\x3c\x7b\xce\x55\xa1\x5e\x67\x00\x5d\xef\xd9\xa1\x56\x72\x80\xe9\x4b\x92\xc0\xd5\x5e\x80\xbf\xe2\x3c\xb4\xf5\xa7\xcf\x1e\x58\xd6\xcd\xe4\x0e\x60\x59\x17\x1d\x1a\xc0\xb2\xae\xfa\x90\xbf\xa8\xda\x5e\x8e\xbf\x30\xeb\xa5\x37\xcd\x0b\x7f\x56\xbd\x7d\x23\x67\xc8\x17\x26\xc5\x67\xd3\x83\xb9\xe3\x56\xce\x09\xdb\x04\xcb\xae\x92\xc5\xbb\xdc\x63\x16\xd0\x3c\x85\xa6\x2c\x4e\xb5\x39\xa6\x5f\x82\x7c\xcc\x38\xf8\x2e\x5b\xa0\xdf\xe6\x2a\xf1\xc2\x07\x00\xeb\x43\xa7\x6a\x20\xab\xbb\xe6\x1e\x50\xaa\x8f\x69\xee\x64\x90\xa9\xbb\x97\x50\x02\x53\x57\xef\xdf\x5e\x4c\xbc\x49\x65\x2e\x05\x5a\x18\xd6\x8b\x59\x57\x53\xde\x6b\xba\x11\xaf\x36\xde\x64\xd5\x1e\x0f\x91\x9c\x5c\x1c\x0c\xbb\x49\x98\xb6\x0e\x5b\x35\xcb\xbf\x97\x47\x05\xa5\xf4\xc5\xef\x66\xe9\x6a\x02\x4c\x75\x57\xbc\x7d\x2f\x79\x22\xcf\xb7\xe3\x43\x47\x7c\xef\xec\x15\x7d\xbf\xed\x15\x6d\xe8\xc9\x6b\x02\xe9\x17\x9d\x56\x03\xe5\x4b\xba\x11\xbd\x13\xde\x5b\x2a\x8a\x28\xf2\xea\x91\xe3\xa5\x00\x88\xd7\x5d\x89\xec\x4d\x16\x5e\x2c\xae\xce\xcd\xf4\xc8\xc2\x97\xa5\x5d\xf0\x65\x47\x14\x76\x8b\x5d\x94\xf9\xb8\x2f\x4c\x4b\x69\x4f\xd0\x6f\xf3\xa4\xe1\x81\x9b\x52\x3e\x58\xd6\x25\x3b\x02\x3e\x84\xbc\xf1\xdd\xbc\xf1\x48\xdd\x1c\x38\xea\x3d\x40\xff\xb1\x27\xb4\xa7\xca\xe8\xac\xe3\x3d\x23\xab\x03\x82\xba\x1e\x3f\x7f\xdf\xab\xa1\x67\x05\xb0\xd3\x5d\x89\x5b\xd8\xe9\x69\x76\x64\xa1\xa6\xa7\xa9\xa3\xc5\x97\x6e\x46\x93\x82\x2f\xdd\x15\x70\xc1\x97\xee\xde\xe2\x83\x1a\x9d\xe9\x96\x40\x8d\xae\x9e\x8c\x2f\xd9\x18\x7d\x12\x29\xba\xe4\x47\x39\xe7\xc1\x0b\x02\x7b\xf7\x23\x05\xdf\xe9\x8b\xca\xcd\xf4\xab\x9c\x68\x1b\xfc\x90\xeb\xf9\x0a\xcb\xef\x30\xe3\x3e\x30\xd0\x5d\x13\x0d\x30\xd0\xdd\x4d\x05\x0c\xf4\xe1\x6d\x36\x30\xd0\x45\xe7\x9e\x4f\xc7\x56\x2d\x3f\x62\x3f\x4f\x25\xc6\xef\xc8\xd5\xa7\xbf\x87\x57\x34\xd6\xb5\x39\x5b\x15\xd3\x43\x90\x67\xb0\x34\x07\x18\xcf\xed\x07\xdf\xfd\x4c\x41\x69\x82\xea\x84\x75\xd6\x0b\x04\xf8\xe6\xfd\x62\xf1\x6c\xc4\x7f\xb0\x35\x39\x28\x62\x78\xf5\x2c\xfc\x8c\xe1\x95\x76\x00\xec\xbc\x4b\x50\x9c\x14\x1e\x4b\x6f\x08\x90\x9d\xbb\x0c\xe3\xab\xae\xff\x9f\x97\x1a\x9f\xc6\x6a\xc3\xe1\x3f\x13\x48\x9b\x81\xfe\x4b\xe6\xc7\x59\x07\xf8\xb9\x18\xaf\xf8\xd5\x9c\x0b\xe6\x2f\xf5\xcf\xf0\xe5\x65\xc2\xfd\xca\xdd\xc8\x00\x9a\x8b\xc2\x32\xc2\xd7\x4c\x51\xfe\x69\x55\xd6\x0f\xf6\x33\x75\x25\x9b\xee\xd3\xbd\xc5\x5c\xd4\x9f\xa9\x2b\xbd\xa5\x10\x88\x59\xdb\xd2\x97\xec\x2b\x7c\xd9\xbb\x59\x53\x0f\x98\xcc\x7b\x47\xf8\x47\x4e\x31\xd3\xca\x2d\xa8\xb7\x2d\x9f\xa9\x9c\x0f\x1b\xcc\x29\xf6\x25\x4f\x31\xfd\xed\xce\x37\x53\x92\x1a\x2b\x84\x06\xe8\xe6\xdd\x88\x2f\x0a\x35\xe8\x52\xe0\x35\x17\xed\x11\x20\x34\x77\xf5\xaa\x6f\xb8\xbd\xa0\xd6\x9f\x31\xb8\x5e\x71\x80\xbf\xdc\x7b\x96\xc0\x6b\xdb\x6e\x91\x03\x53\xef\x05\xa0\x98\xab\xd9\xdb\x3e\xbc\x59\xc5\xdc\x03\x65\xb9\xe7\x76\x9a\x27\xcf\x4c\x02\x31\xb4\x9a\xae\xc5\x55\x6e\x26\x05\x10\x57\x79\xa8\x7a\x81\xa5\xdc\xf5\x95\x00\x4b\xb9\xe7\x66\x82\xd9\x69\x25\x06\x4b\x79\x77\x95\x6e\x10\x5c\x6b\xe4\xd0\x17\x0c\xce\x7d\x49\x8a\x8d\xf5\xaf\x26\xe5\x60\x3f\xd2\x5a\x81\xf2\x2b\x30\xf2\x50\xa3\xfb\x22\x7b\x65\x23\xec\x1d\x84\xa2\x6f\xe5\x3c\xf3\x15\x5e\xaf\xea\xcb\x20\x23\xef\x12\xb4\xb8\xb2\x5b\xb4\x22\xcc\xa2\x97\x70\xdf\xca\xad\xeb\x3f\xde\x3d\xf8\x47\x90\x06\xd7\x7d\xb5\xdc\x18\x6e\x45\x41\x93\x72\xaa\xcd\xad\x69\xea\x64\xe0\x91\x77\x97\xa9\x8c\x40\x5a\x05\xfc\xef\x84\xbc\xc0\x1d\x80\x47\xee\xaa\x10\x9f\x60\x4a\xa6\xca\xfb\x4c\x01\x26\x94\x10\x90\xc8\x5d\x51\x0a\xb0\xe3\xdd\xa0\xd5\x66\x83\x8c\x4b\x03\xb2\x97\x30\x1f\x08\x0d\x66\x6a\x00\x06\xb9\xab\x3f\x03\x7d\x1c\x7a\x28\x7c\x19\xf9\x82\xb2\x06\x0c\xf2\xb1\xbc\x0d\x02\xfa\xb8\xab\x5f\x7c\xa2\x26\x69\x73\xfa\x04\x41\x34\x69\xf7\x87\x43\xab\x66\xe6\x8f\xf8\xd9\x3c\x6b\xb7\x7b\x80\x15\xbd\xf1\xa5\x76\x37\xe9\xdb\xea\x45\xcd\x87\x32\xac\x28\x2c\x40\xf2\x50\x01\xfe\x6e\xed\x00\xc8\xde\xdf\xe3\xfc\xd0\x04\x6a\xab\x72\xf1\x47\x30\x4a\x0e\xe3\xc9\xf5\xf0\x23\x0e\xaa\xe3\x7e\x3c\x8f\x52\x1f\x6e\x3c\xd5\x00\x04\x42\xd6\x97\x08\x20\xe4\xaa\x07\xde\xa7\x92\x59\xff\x8c\x50\x4b\x5c\x64\xef\x7a\xbe\xb4\xd2\xca\xac\x5e\x34\x76\x77\x0d\x4c\x56\x21\xe4\x43\xbb\xf4\x26\xeb\x43\xbb\x4c\x9e\xf0\xb9\x4b\x90\x5a\x41\x45\xee\x7a\x6a\x00\x84\xdc\x73\x39\x3e\x17\xcd\xdf\xc7\x7f\xff\x9b\x06\x37\x7e\x70\xdf\xbc\x2c\x01\x07\xb9\x1b\xc1\x21\xf4\xf1\xd4\x29\x58\xe8\xe3\xc3\x2b\x9d\x0f\x4e\x8c\x01\x6b\xfe\x30\xea\x06\x17\x61\xf3\xf7\xb3\xed\xe0\xd9\xf6\x0a\xcf\xbb\x3d\x92\x45\x4c\xc0\x92\x83\xc9\x9d\xbf\x1f\x5b\x64\x0f\x74\x82\x9b\xbc\x2b\x3a\x78\x71\x05\x3a\xcf\x9e\x8e\xc3\x3f\x58\x81\xbd\x4c\xf3\x77\xd8\xda\xe4\x19\x0d\xb9\xd0\x82\xd0\x85\xd8\xce\x26\x28\xc8\x1d\xd4\xca\x09\xf0\x71\x27\x8a\x6c\x82\x7b\xdc\x81\x33\x9d\x60\x1d\x77\xc0\x33\xe7\x4f\xdb\x6e\x3e\xd3\xd8\x26\xb2\xf3\x67\xf6\x67\x88\xd2\xfc\xe1\x6a\x14\x98\xf9\x26\xa8\xc5\x85\x10\xfa\x29\x6a\x31\xf2\xd8\x04\xb5\x38\x72\x70\xa8\x85\xc3\x41\x1b\x97\x0a\x9c\xd8\xfc\x11\x3d\xd2\x1b\x63\x80\x6f\x82\x58\x3b\x7f\x5c\xdd\x1e\xdc\x4e\xcd\x5f\xcd\x01\x31\xaf\x26\xc9\x9c\x8e\xa2\xe6\xa4\xd1\x88\x91\xa9\x04\x50\xce\x9f\xec\xb0\x51\xa4\x65\x77\xe9\x62\xcb\x9a\x69\x86\x9c\x15\x81\x51\x6d\x26\x42\xf1\x72\x12\xcd\x87\x09\x09\x9f\x20\x14\x97\x5f\xcd\xcf\x2e\xcb\xd0\xb5\xa6\x0c\x68\x11\x69\x7b\xa7\x33\x9d\xc5\xe9\xfc\x61\xca\xe7\xe9\x22\x74\x0f\x70\x61\xe6\xc9\xff\x8c\x0f\xfa\x04\x42\xb8\x03\x92\x37\x81\x10\xde\x25\xe8\x3e\x96\xd7\x20\x6f\xf7\x14\x2b\x38\x48\x77\x3d\x01\x08\x3e\xaa\xfb\x6a\xe4\xe8\xfd\xea\xf5\x2b\x2b\x53\x8f\x63\xc2\x84\x08\xf6\x77\x53\x43\xa0\x61\xef\xc3\x60\x09\xbf\xc2\xea\x3c\x7c\x26\x55\xe3\xc1\xa0\x4c\x4b\x99\xcf\x12\x06\x47\x68\x8a\xca\x69\xe7\xc3\x9d\x4f\xb5\x91\xd5\x32\x42\x10\x06\x7e\x4e\x03\x3e\x38\xc3\x85\x33\xce\x62\xd1\x1c\xd7\x95\x64\x3d\x9e\xc0\xf7\x16\x33\x97\x4e\xf1\x7b\x1b\x31\xda\xf3\x67\x0e\x07\x2e\x75\xe6\x6f\xb9\x88\x76\x0b\x2e\xb3\x7a\xbe\x70\xbe\xb2\x88\x92\x53\xf1\x8f\xcf\x22\x2c\xe8\xa9\xea\xdf\x7d\xc1\x59\xb6\xfa\x0c\xed\xc9\xdf\xf1\x53\xce\xdf\xd9\x5b\x9d\x99\x46\x5b\xeb\xae\xf9\x95\x67\xe4\x2f\x13\xdf\x14\xab\x37\x7e\x6e\x6f\x59\x4b\x67\xad\xaf\x1c\x32\x73\x64\x10\xc5\x74\x32\xb0\xb4\x92\x79\x72\xfe\x44\xd5\xaf\x4c\x3d\xf1\x14\x98\x82\x27\x00\xbd\x81\x23\xcf\x04\x1f\xb7\x91\xb3\x79\xfe\x6e\x8f\x89\x3b\x1b\x9f\x1b\x2c\xe8\xf3\x87\xc7\x0c\xb6\xe3\x09\x6c\xee\xfe\x88\x3f\x80\xd1\x69\xd3\xb1\x63\xc6\xec\xee\x52\x3d\x42\xa7\xfd\xe0\xf6\xae\xbb\x4f\xe4\x0d\xee\xc5\x37\x67\x94\x8f\x70\xea\x8c\x9f\x07\x4e\xea\xec\x96\xfb\x4c\x79\xe9\xf3\xe9\xb8\x69\xef\xb3\xda\xfd\x07\xe0\xb0\xbb\x57\x85\x17\xee\xc9\xa0\xaf\xc7\x2f\xcf\xd1\xe4\xc5\x6d\xc6\x7e\x38\xd2\x4c\xd7\xfd\x2c\xfc\xa7\xf1\xe2\x40\x7c\xce\xfd\xe0\x57\xf6\xb1\xd8\x24\x7a\x2f\x74\xf5\x48\xd5\x85\x7a\x0f\x4b\xfb\xfb\x09\xf4\xd6\xe0\x99\x6d\x32\x7c\x4e\x1a\xb0\x07\x0b\xd6\xeb\xee\x88\x2f\xba\xc5\x50\x1a\x92\x89\x8a\x3f\x13\xc6\x75\xd9\xdb\xd4\x36\x8a\xff\x58\x17\x53\x7a\x14\x77\xac\xc3\xdd\x54\x53\x2c\xd5\x09\xc2\xeb\xd1\x64\x2e\x00\xb9\x16\x7c\x40\xe7\x51\x25\x67\xd5\x3f\xbc\xa9\xa6\x11\x5c\x53\x0e\xae\xcc\xe6\xa1\xa9\x0b\x21\x79\x82\xa6\xda\xc8\xba\x34\x01\x53\xdd\xf5\xfa\x55\x66\x32\x63\x15\xa0\x79\x58\x63\xa7\x10\xaa\xd8\x13\xe7\xd1\x65\x85\xce\xa8\x19\x81\x97\xc5\xbb\xa2\x23\x1b\x05\xa4\xd5\xfd\x19\x63\xc4\x51\x05\x6c\x9c\x79\x90\x12\x18\x90\x93\x79\x74\x49\x7e\xf5\x85\x1b\xc3\xe5\xb3\x1b\xc5\x3e\x6a\x1e\xab\x96\x96\xe4\x39\xdc\x91\x48\xe8\xf4\x11\x97\x14\x90\x62\x26\x38\xab\x15\x10\xe2\x09\xcc\x6a\x27\x5b\xd5\x3c\x54\x15\xa6\xbf\x93\x45\x33\xac\xc8\xfb\x37\x7b\x6e\x0a\x3f\x3b\x3e\x9c\x04\xba\x81\x93\x24\x0e\xfd\xf3\x98\xb2\x27\xf7\x18\xf4\x72\x3a\xb7\xe1\xec\xc0\x03\x0f\x5c\x16\xbb\xcb\x11\x92\x61\xfb\x1a\x4a\x71\x16\x27\x5b\x1e\x20\xc9\xf3\x88\xf4\x91\xe4\x59\xf5\x05\x62\x74\x60\xe7\xc2\x67\x61\x1e\x29\xa2\x7b\x72\x36\xf5\xac\x68\xf9\xf3\xe0\xb6\xa9\xbb\xe1\x96\x67\xc5\xb5\x24\xf1\x1d\x01\x28\xf3\x58\x39\xb5\x2c\xe6\x92\xcb\xb9\x00\xb8\x6e\x54\x4f\xc1\x99\xe3\xa0\x08\x96\xae\xf8\xd9\x93\x93\xee\xc6\x5f\x92\xdf\x3c\xa4\xab\x90\xac\x23\x05\x6e\xcf\x34\x02\x37\x81\x0e\x53\x98\xd2\x85\xc4\x3d\x8f\x4b\xf7\xdb\x45\xd7\x14\xac\x83\xde\x5c\x0a\xba\x8e\x18\xb7\x0b\x90\x15\xe6\xb1\x65\xe9\x40\x4b\x9b\x87\xf2\x33\xec\xff\x30\x33\xfd\xf2\xb4\xde\xdc\xd5\x58\xd3\x6d\xad\xfe\xae\xda\xe4\x51\xd7\xb5\x7e\x79\xa8\x6e\x9b\xa0\xb7\x24\x92\x59\xf6\x89\xab\xa1\xee\x3c\x3e\xaa\xf5\x6e\x2c\x85\xef\xf0\xa3\xce\x3e\xf6\x23\xf5\x06\x77\x3e\x2e\x14\x20\x79\xcc\xe3\x91\xc1\x23\x5d\x1e\x8f\x4b\xd2\xfc\x47\x22\x65\x47\x36\xb9\x6d\xcd\xdd\x4e\x90\x78\x77\x6f\xbc\xda\x57\x18\x92\x39\x62\xac\x96\x48\x31\x92\xe3\xce\x43\x99\x7a\x59\xd6\x98\x65\xfa\x0a\x6a\x59\x75\xc9\xcd\x58\xa7\x44\x09\x14\x69\x27\x57\xda\x04\x71\x74\x77\x89\x16\xb8\x67\xe9\x9e\x4c\x3c\xf1\xbb\x04\xee\xb3\x05\xbf\x21\x68\x44\x62\x85\xdd\x8a\x08\x97\x09\xe4\xe8\xd1\x00\xd2\x9e\x65\x13\xf0\x8a\x37\xe2\x14\x3b\x34\x40\xc9\x9b\x60\x84\x76\xf2\x95\x4f\x70\x41\x3b\x5e\xa4\xb3\xe8\xc1\x80\x05\x60\x0a\xfa\x39\xb0\x73\xcf\x62\x84\x34\x7a\xe2\x14\xf5\x53\xa8\xfe\x59\x94\x79\x39\x11\x20\x7d\xee\xd6\xfd\xea\xb3\x08\x2d\x1a\x4a\x85\x9a\x3c\x0b\x51\xcf\xb8\x81\x4d\xf0\x39\x2b\xa9\x67\x66\x31\x7a\x8a\xd0\xfa\x59\x48\x0d\x4f\x46\xa3\x59\xb8\xf4\x20\xf9\xf2\x2c\x29\xe9\x22\x92\x01\xd6\xd9\x49\x0b\x3c\x0b\x92\x2e\x8e\x89\x13\xac\xce\x3d\xda\xc6\x0b\xf9\x69\x91\xdc\x01\xee\xac\x4a\xe8\xe2\x76\x36\x9c\x2a\xa7\xc0\x9d\xa1\x1c\x55\x00\x14\xc3\xa1\x78\x02\xdc\x59\xa6\x93\x48\x62\x37\x82\x12\x27\xf0\x9c\xbb\x34\x4d\x98\x75\xe5\xe7\xc4\x99\xe4\x15\x25\x75\x16\x63\xa6\x51\x52\x27\xf8\x9c\x9d\xa4\xa4\x13\x78\xce\x4a\xda\xb0\x09\x3c\x67\xc5\x93\x62\x02\xc9\xd9\xc1\xf3\x9c\x40\x72\x0a\xdf\x30\x8b\x91\xd4\xa8\xa2\x13\xb0\xcd\xaa\xa4\x03\xd6\xe6\xee\x08\x3d\xef\xb9\xcc\xfe\xb3\xe7\x99\x14\x9a\xb3\x40\xee\x71\x5e\x9c\xe2\x6b\x2e\x54\xce\x09\xbe\xa6\x48\x04\x13\x7c\xcd\x5d\x15\x9d\x32\x73\x0a\xdb\x10\xac\xcd\xdd\x38\x33\xd2\x3f\x98\x2e\x1f\x99\x1c\x1e\xdd\x77\x8a\xbc\x59\x9d\xb6\xcd\x1f\xda\xaf\xfb\x91\xcc\xc9\xc5\xe7\xc6\x84\x9b\xea\x09\x08\xe7\x2e\xed\x1f\x8b\xfb\x48\x9f\x65\x8d\xfd\xaf\xc0\x8d\x09\x2a\xe7\xfe\x92\x6e\x02\xbb\x3d\x9c\x22\x2c\x4a\xe4\xce\x9c\x65\xe6\xee\x65\x52\xa7\xc2\x8b\x63\x01\xaf\xb3\xd8\x7d\x6c\x4a\x5c\x75\x4d\x80\x38\xfb\xb0\x97\x53\x29\x01\x89\x11\x24\xce\x42\x12\xd6\x59\x30\x2f\x91\x67\x71\x82\xca\xd9\x49\xf1\x38\x41\xe2\xdc\x9d\x67\xe2\x37\xf3\xe9\xc3\xdd\x87\xbf\xfc\xa1\x08\x57\xd2\x58\x64\x7b\x21\xa3\x75\x18\xcb\xba\x68\x23\x6d\x42\x4e\xe4\x62\xff\xb8\xec\xa6\x4c\xe3\xca\x65\x16\x4d\x3a\xc8\x63\xe5\xb4\x34\x05\x4e\x1b\xf7\x1b\x69\x4c\xf7\x05\xb2\x07\x3b\x2e\x46\x2b\xcf\x7c\xc9\x8e\xd0\x38\x79\x4d\xf0\x6e\x9a\xe5\x92\x45\xd9\xf7\x4b\x46\xc0\xa0\xb8\x41\x19\x52\x86\x4b\x15\x2b\x7c\x31\x4b\xa0\x1f\x2d\x3e\xb2\x26\x69\x17\x2d\x60\xa9\xa9\x78\xfb\xcf\x72\x2b\x2c\x3b\x56\x3d\x17\x5c\x01\x22\xb4\x86\x94\x84\x1b\x90\x1c\x2a\xa6\x9a\xe1\x41\xcb\x1b\x90\xf0\x23\x15\x4d\xa4\x31\x00\x35\x8f\x20\xa1\xc1\x04\x45\xb3\x0f\x3b\x65\x32\xf5\x7c\x76\x14\x74\x4a\x48\x13\xa4\xac\x62\xc6\x74\x65\x15\xb1\x2f\xa7\x8b\x04\xdc\xe5\x0f\x01\xa3\x98\x12\x55\x69\xa3\xbc\xd6\xc4\x3c\x19\x57\xac\xc1\xa2\x90\x01\xbd\xba\x09\x5f\xfc\x4b\xf2\x77\x3c\x60\xdc\x3a\x42\x56\x66\xb5\xc9\x2e\xaa\x2f\x2c\xa5\x23\x82\x5d\xa8\xc2\x15\xb8\xc5\x70\xaf\x7d\xaa\x24\x08\x3a\xe5\x4b\xa7\x2a\x4b\x1b\xd7\x4f\xdb\x1f\xc9\x5c\xdd\xff\x9f\x07\x9b\x12\xd5\xd4\xe8\x5a\x17\x6a\x32\x0c\x84\x00\x40\x28\xfb\xc8\x3f\x2e\xbf\xf2\x0f\x65\x6b\xbf\x3a\xa4\x82\x10\xf3\xc4\x9a\x5c\xf9\xc2\x42\x55\x9f\x1d\x48\xe5\x59\xcf\xff\xe0\x19\x82\x6f\xb5\x18\x4f\x48\xf5\x32\xeb\xa1\x5d\x31\x0b\xef\x1d\xc9\x25\xc4\xac\x25\xbb\xcb\x57\x24\x24\xd7\xe6\x51\xc9\xb6\x41\x7a\xc6\x09\x4c\xe5\x31\xb8\xc6\x9b\xe2\x54\x36\x12\x11\x4c\x80\x2a\x3b\x20\x78\x13\x9c\xca\x82\x3b\xcb\x04\xa6\xb2\x12\xd4\x3a\x6b\x71\xeb\x64\x69\x8e\x46\xf8\xfc\xd1\x41\x3e\x4a\x65\x01\x71\x04\xfc\xca\x3d\x6c\x5f\x5c\x4d\x18\x5a\x25\xef\x38\xd1\xaa\x13\x60\xcb\xfd\x95\x2f\xb2\x1e\x78\x36\xf8\x95\xfb\xe5\x4f\xca\x07\xba\x65\x27\xc7\xcb\x04\xdd\xf2\x28\xf6\x5f\x78\x68\x12\x03\x4c\xd0\x2d\x8b\xa7\xb9\xc2\x8a\xc8\x99\x33\x41\xaa\xdc\x54\x93\x36\xbb\xa6\x3e\xbb\xd9\x5d\x44\xf8\x5a\xed\x9a\x04\x20\x32\x80\x4b\x76\xf2\x85\x4c\xc0\x25\x77\x79\x26\x83\xf8\xa9\xea\xc4\x0c\x9d\x6b\x61\xaa\xd5\xf0\x59\x8d\x63\xc0\x46\x76\xd2\x6b\x4c\x60\x23\xcb\xb1\x6c\x04\xc7\xf5\xe1\xd2\x0d\x25\x64\xd8\x6d\x4d\xeb\x0b\x32\x58\x25\x61\x27\x41\x5a\x53\xdc\xc8\xf8\xb9\x0d\xcc\x90\x01\xd1\x07\x2a\xb2\x8f\x7c\xc6\x26\x98\x05\x68\xbb\xfb\x7d\xb6\xcd\x46\xe3\x7e\x81\x44\x0d\x13\xa4\xc8\x4e\x9e\x87\x29\x52\x64\x23\x49\xc1\xac\xd2\xfc\x65\xa7\x22\xdb\xa6\x0d\x43\x71\x09\xbe\x9f\x22\x42\x72\xf7\x33\x01\x84\xac\xf2\xcb\xaa\x77\x79\xf5\xd9\x13\x1a\xbe\x60\x69\x82\x52\x57\x33\x73\x72\x4d\x38\x01\x7e\xdc\x2f\xfc\x93\x1c\x00\x3e\x21\xf2\x63\x80\x37\x31\x6b\x5a\x6f\x60\xd1\xd5\x2b\x02\xe8\x54\xd5\xdf\x2d\x8f\xc9\x92\xdf\x85\x5f\xb9\xa1\x91\xa9\x41\x6f\xdc\x6b\xc5\x3f\xa7\x06\x31\xcf\x86\x39\x2f\x08\x75\x9e\x40\x33\x1e\xfa\xdb\x4d\xb1\x19\x35\x23\x88\xcd\x78\x2c\xa7\xe2\x94\xdc\x78\x6e\x44\x64\x5c\x0e\xf3\x42\x14\x80\x9d\x55\xcc\x32\x80\xae\x4d\x10\x19\x8f\x46\x3a\xb3\x59\x35\xcb\x90\xaa\x6c\xd6\xcb\x13\xe1\x89\x42\x1b\x11\x05\x6d\x82\xdc\xd8\xc9\x5c\x30\x2b\xf6\xff\xf6\xef\x8f\x67\xaf\xb6\x2b\x7c\xc9\xb0\x3d\x01\xc0\x38\x92\x95\x60\x56\x78\x0a\x81\x5e\x13\xb4\xc6\xfd\x11\xfd\xbd\xdd\xe7\x4e\xeb\xed\x66\x61\x56\x6e\xfc\x62\xdc\x50\xb7\xae\xbb\x7e\xe3\x3e\x75\x7f\xa4\x32\xe3\x0c\x13\x47\xf5\x93\x28\xc9\x6c\x3c\x7d\x58\x85\x1a\x19\x07\x26\x30\x8e\xa1\x81\x2b\x61\x1c\x97\x4b\x62\xf0\x94\xfb\xc6\xec\x97\xe1\x86\x7a\x72\x46\xa9\x0b\x97\xb5\xe1\x38\xb8\x32\xc0\xbd\x67\x0a\xe3\x18\x3f\xb7\xe3\x4b\xf0\xb9\x5b\xfb\xcd\x80\x7a\x7a\xf5\x7a\x48\x18\xf8\x9b\x03\xf7\x0f\x49\x3e\x2a\x49\x7d\xb3\x75\xba\x45\xb6\x0b\x62\x80\x27\x68\x8f\x15\x2f\xe9\x09\xd8\x63\x27\x6a\x64\x56\xac\x50\xc3\x9a\xe0\x5c\x2d\xb0\xed\x0a\xe1\xa8\xc5\x0f\xd8\xc6\xdd\x1e\xcb\xc1\x7d\xfd\x90\x43\x7c\x2e\x39\xda\x4d\x4d\x3e\xf6\xa7\x5b\xdf\xac\x9f\x82\xa2\xab\xe8\xcd\x3e\x81\x64\xb3\x92\x0a\x63\xd9\xfd\x4f\xfe\xcc\x6a\x35\xdd\xd2\xb8\x0b\x9b\xed\x97\x33\x36\x78\xd1\x0d\xbe\xf2\x9c\x23\x08\x5e\x98\xb1\xfc\x63\x90\x1d\xce\x67\x48\x0c\xbb\x19\xac\xc9\xaa\x5d\xa9\xe9\x61\x1e\x08\xf1\xed\x50\x42\x65\x56\x9b\x1e\x6b\x60\x94\xcc\x56\xd2\x5d\x9d\x36\x8a\x01\x1b\x7c\x65\xa4\xb1\xf3\xdd\xe4\x66\x9c\x38\xa0\x1f\x43\x7b\x65\x93\x99\x11\x7e\x3d\xc1\x7e\x0c\xad\xa7\x40\x3f\x86\xa6\xcf\x96\x86\xb0\x69\x69\x0f\xcc\x61\xe3\x6e\xa8\x65\x71\x44\x32\x3b\xaf\x1e\x05\x03\x6b\x95\x00\x1c\xc8\x40\xd3\xc5\xdb\x81\x6f\xfe\x55\xf1\x1c\x9a\x20\x42\x56\x02\x3f\x67\xf3\x1e\x21\x1c\x11\x7e\x64\xa4\x29\x98\xa0\x40\x76\x72\x0b\xcc\xd6\x94\x24\xad\x95\x9b\x74\xd0\x85\x66\xcb\x2b\x05\x48\x48\x6b\x39\x07\xbe\x24\x57\x61\x99\x84\xdb\x22\xd0\x78\x82\x22\xb9\x5f\x58\xcd\xe6\x06\x40\x30\x6a\x7a\x8c\x11\x7f\x3b\x85\x8e\x0c\xb0\x2f\x66\x4b\x63\x19\x3a\x6f\xeb\x4e\x2f\xcd\xf4\xac\x99\x09\xc2\x31\x7c\x38\xc6\xd4\x98\x2c\x8d\x9b\xa6\x9b\x81\xdc\x53\x44\xf2\x4f\x31\x24\x03\x40\x8f\xd9\x50\x98\x54\x0d\xc0\x93\xec\x6a\x58\xc0\x49\x36\xaf\x56\xda\x48\xf2\x4b\x37\xb8\xa8\x18\xf9\xdc\xc8\xae\xe3\xf3\xb0\x4b\x2c\xe0\xb0\x4b\x3e\x33\xbb\xb0\x88\x36\x72\x12\x98\x9e\xa1\x73\x6b\xfe\x23\x5b\x71\x7f\x73\xf9\x4e\xf8\xc7\x6c\xb2\x53\x27\x74\xe6\x4c\xd1\xe0\x54\xaa\x72\x9d\x09\x3b\x96\x20\x08\x4c\x49\x90\xfa\x6c\xaa\x47\xf0\x97\x86\x0d\xae\x85\x1b\x40\xee\x78\xb8\x8d\x0d\xdf\x42\x09\x07\x65\x72\xff\x41\xb5\xc1\x6e\x1d\x7e\x04\x45\x87\x87\x24\xfc\xa4\xd6\x1f\xe1\x27\x9b\x5a\x38\xf0\x93\xe5\xc8\x9d\xb8\x72\x31\x99\x07\x2f\x2a\xc0\x09\x99\x6d\x79\x26\x10\x2e\x1b\x98\xc7\x81\x9f\xd0\x6c\x69\x87\x73\x6f\x19\x42\x45\xba\xdc\x09\x06\x65\x27\x42\x7c\x82\x41\x19\x1a\xe5\xdb\x99\xed\xd3\xca\x99\xe3\xa2\x7d\x35\x2c\xbb\x4f\x7a\xc9\x46\x12\xa7\xd9\xe4\xa1\x87\xe7\xfe\xcc\x3d\xeb\x0b\xb2\x53\x58\x71\x76\x92\x7e\x65\xbc\xb2\x53\x79\x4a\x66\x0f\x5f\x5c\xd4\xfa\x97\xcb\xcb\x14\xaf\xd2\xb8\xc1\xd9\x4c\x98\xa1\x69\x08\xf4\xca\x43\xd1\xb9\x25\xbb\x45\x66\x15\xb1\x32\xc8\x32\x3b\xdb\x95\xcd\xd2\x3b\xe2\x93\xe3\x90\xf6\x08\x94\x25\xbd\xd1\xc7\x9c\xe8\xd2\xd9\x84\xa6\x20\xa2\x74\x82\x39\xb9\xc7\xe0\x0b\xfb\x12\x5e\xd8\x60\x8c\x7a\xa5\xce\x76\xb3\xfb\x60\x73\x60\x4e\x96\x92\xe7\x00\x06\x58\xbc\x49\x04\x67\xb2\x13\xa7\x3b\x1b\xe6\xbc\xf0\x6a\x0c\x68\xc9\xfd\xe2\x57\x12\x58\x04\xcb\x86\x26\x56\xbc\x3b\x6c\xd8\xf3\x48\x8b\x36\x9b\xd7\xec\xe1\x56\x7e\x72\x5e\xf8\x07\xe3\x1e\x01\xad\x53\x6c\xca\xee\xb1\x25\x03\x24\xf1\xac\x53\x6c\xca\xa5\x9e\xda\x74\x58\xb3\xbf\x58\xfd\x86\xcc\x44\x84\xab\x9f\xfb\x82\x2c\xd1\x43\xc6\x42\x9a\xc8\xe2\xfd\x62\x7b\x73\x4e\xad\x8a\xfd\xe6\x99\x7a\x99\xd3\x43\xc2\x8b\x8b\xdb\x90\x20\xa7\xea\x87\x50\x0c\x20\x65\x55\x91\x6e\xaa\x81\x9e\x10\xf9\xa7\x67\xfb\xcb\x35\xa4\x23\x9f\x2a\x5a\xf3\xc5\x45\x70\xa9\x33\xa8\x99\xdd\x0e\x0a\x65\x78\x73\xd3\x81\xc2\x22\xf8\x6c\x02\x48\xd9\x89\x50\x9b\xe2\x51\x12\x3e\x36\xbb\xfe\x6e\x5e\x67\x76\x82\xa5\xc0\x02\x9b\x1d\x7b\x22\x71\x5e\xb3\xff\x5e\x9e\xf9\x06\xd6\xa7\xd6\xd9\x89\x5a\x2e\x5e\x5a\x02\x66\xd9\x09\xae\x9a\xfd\xb0\x05\x7a\x71\xe8\x57\xd6\x2c\xa1\xea\x16\x96\x40\x08\xe5\xcc\x74\xec\x8f\xda\x85\x41\xb2\xac\xc0\x9a\x4c\xd0\x2b\x3b\x81\x59\xb3\x8b\x6f\x85\x20\xd5\x4d\xee\x01\x86\xcb\xec\x66\x8c\x56\x52\x04\xd5\xf2\xa8\x8a\xf9\x5d\x80\x2b\x76\x2e\xb0\x96\xbb\x08\xc3\xc3\xf5\x8d\xec\x39\x13\x8c\xcb\x3e\xf3\x79\x3a\x24\x4b\x98\x8b\x8c\x9e\x03\x70\x55\xc0\xc7\x98\x60\x5f\xee\xaa\xec\x0a\x88\x1a\xd5\x3f\x9c\x41\xa6\xb9\x90\x33\x15\x82\xd4\xeb\x8f\x8b\x48\x9f\x49\x53\x05\x77\x02\xfa\x32\x8f\x49\xdf\x8c\xb9\x48\xa8\x40\xc1\xdc\xad\x31\x6e\xae\xf5\xf1\xda\x98\xc0\x60\x36\x12\x4a\x4d\x60\x30\xf7\x47\xbe\x60\x74\x65\xaf\x08\x83\x59\x1d\x75\xb5\x47\xb6\xe6\x79\x41\xf4\xed\x2d\x67\x90\xd2\xcd\xf3\x6a\x71\xf2\x44\x11\xc0\x34\x3b\xe6\xcd\xe9\xa8\x5b\xce\x0d\x75\x35\xcf\x6e\xb1\xc4\xe2\x2b\x7a\xd8\x4e\x9e\x99\x1a\x0c\x9f\x5a\x3e\xba\x80\x16\xc7\x5f\xe1\x6c\x53\x50\x4d\x62\x92\x26\xa0\x9a\xfb\xb8\x33\x14\xc1\x2e\xdc\xe7\x3d\x7b\x4f\x5f\x3a\xd7\x21\xae\x78\x4a\x05\xd5\x17\x72\x18\xb8\x4c\xdd\xde\xbb\x63\xba\x92\x1d\x6d\x74\x3b\xcc\x54\xe3\x7a\x37\x5d\x7d\x5c\xef\x70\x42\x9e\xa0\x6a\x16\x8d\x25\xa0\x6a\xee\x59\xb4\xd6\xcf\x5a\xa9\x89\x94\x94\xc4\x3f\xcf\x0e\xf4\x45\xf1\x3e\x16\x88\xcd\x8a\x07\xf4\xec\xc3\xd9\x65\xde\xc4\xc1\x40\x8c\x06\x6e\xd3\x7c\x19\x13\x44\xcd\x3e\x9d\xe8\xe1\xdc\xfa\x3b\x39\xfd\xed\x06\xde\xe8\xd3\xe1\xa0\x55\x1b\xb7\x37\x3b\x7e\x7a\x33\x7b\x24\xf3\x63\xf9\x70\x69\x50\xd7\xe9\x6a\xdb\x24\xa0\x98\xa0\x71\xee\x17\x4a\x20\x1e\x68\x47\x06\x9a\xb3\xcf\x7c\xee\x92\x35\x3f\x62\x57\x14\xab\x02\xdd\xc8\xed\x8c\x4e\x3e\x1d\xb3\x17\x7c\xa4\x1b\x98\x82\x76\x06\x2e\x62\xb3\x63\x7c\xd5\xf4\x9f\x98\x9d\xe4\x0b\x98\x1d\x83\xeb\x74\x4d\x49\x50\x52\xbc\x69\x06\x9a\xb3\x4f\xf7\x5a\xb0\x5c\xce\x53\x90\xb7\x6e\x5a\xe0\xb6\x09\x6b\x12\xdb\xc7\xe7\x8f\x67\x2a\x4a\x01\x04\x1a\x0c\x66\xe7\xa1\xdd\xb0\x93\xcd\x7a\xba\x6b\x56\x36\x4d\xe9\xa5\xd9\xd1\xd3\x47\xfc\xf6\x74\xa2\x96\x34\xd8\x8e\x90\xce\x5a\x7b\x40\x3f\x73\x3a\xe9\x2d\xfe\x77\xd3\x15\x13\xc8\x42\x15\x11\x08\xce\x3e\x9d\x10\xc4\x02\xd2\x61\xce\xae\x4d\x16\xf0\xc4\xd9\x89\xcc\xd6\x85\x07\x14\xcd\xda\xdc\x75\x97\xb5\xd2\x41\xed\xb3\x21\xf1\xbb\xac\x95\xa6\x2f\xa5\x28\xf8\x39\x18\x9a\x7d\x66\xad\x0b\x42\x43\x37\x2e\x79\x9a\x53\x4b\xee\x92\x99\x05\x1c\x11\x53\x7b\x21\x8c\x48\x4f\xee\xa4\xb5\xcc\x1a\xce\x77\x53\xd2\x77\xdb\x27\xa6\xe3\xce\x91\xd2\x41\x7c\xda\xbb\x34\xf1\x96\xfd\x7b\x9e\x6f\xef\x8f\x69\x0e\x11\x63\xe6\xef\x3a\xda\x77\xab\xa2\x1f\xf0\x7b\x21\x34\x87\x6a\x35\x10\x9a\xbb\x2a\x5e\x30\xf5\xce\x7c\xae\xfe\x41\xe3\x60\x52\x90\xfa\x72\xf6\xa7\x13\x04\xc5\x90\x1e\xcd\x58\xf9\x87\xd7\x9b\x96\x66\xab\x65\x61\x52\x32\xba\x59\x9e\xec\x94\xa5\xd5\x0b\xf2\x1f\x58\x14\x8c\xb9\xbf\xce\x0e\xcc\x1f\x9c\xcd\xba\xda\x9f\x1a\x2f\x20\x9c\x7d\x5a\xdb\x9b\xcb\xc9\xac\xa8\xbd\x1f\xae\xad\x68\x9b\xdc\x09\x76\x13\x80\x91\xd6\x7f\x76\x62\xb2\xe3\xc8\x22\xd2\x78\xcf\x29\x90\x5b\xfa\xc5\x80\xbd\xb9\xbf\xa2\x08\x51\x63\x5a\xc0\xc5\xde\x6c\x91\x7f\xb0\x0e\x6e\x51\x2e\x27\xf5\x55\x1a\x5e\x42\x92\x30\x60\x0e\xdc\xf7\xf4\x30\x12\x7b\x73\x68\xc4\x18\x3a\xa1\x1c\xf9\x95\x9b\x60\xf8\x59\x8e\xa4\xf3\xa2\xb3\x00\xf4\x10\xc8\xcd\xae\xef\xc7\x48\x25\x9b\xe6\x07\xbe\x7d\x3a\xd0\x00\xb1\xb9\xeb\xb2\x62\xb6\x04\x4b\x07\xac\xe6\xae\x97\xe6\x53\x1e\x81\x80\x08\xb2\x19\x87\x15\x1f\x72\x2b\x2b\x3e\x72\xc0\xd4\x7c\x68\x35\x1d\xfe\x23\xbb\xb1\x6a\xbc\xfa\xf4\x17\x11\x28\xb3\xe8\x34\x01\x50\x66\xd7\x79\x00\xa0\xcc\x23\x0e\x3b\x86\x0b\xbd\xf8\x6a\x13\xa4\xcc\xee\x8d\x03\x48\x99\xfb\x2b\x1a\x49\x49\xa2\xfa\x8f\xea\xad\xbd\xe4\xea\xd3\xdb\xf4\x51\xd5\xd9\x6c\x45\xa3\x33\x00\x25\x53\xb0\xcb\x99\xcf\x2a\x00\x76\xd2\xb4\xd0\x3d\xff\x61\xf6\xd0\xd4\xc1\xb7\xdc\xc5\xa9\xab\x29\xa7\x43\x92\x86\x30\x13\xe0\xd8\x4c\x50\x2d\xab\x22\xbf\xa8\x96\x2d\xec\x3e\x16\xe7\xa2\x2b\xc3\x48\x47\x18\x7b\xa9\x78\x30\xfd\x4a\xfd\x23\x5f\xd4\xae\x6d\x3f\x15\x7a\x77\x02\x72\x40\x76\x52\xf6\x9e\xb3\xc7\x05\xa8\x74\x6c\x74\xa7\x15\x92\x38\xfa\xe0\x5a\xd5\x3f\xa0\x63\xd3\x02\x39\x91\x54\x85\xda\x3e\xb3\x40\x9e\x01\x46\x95\x69\x9f\x51\x0c\xc6\xc8\xf9\xa2\xbc\x5c\x76\xfa\x15\xc5\x51\xd9\xc6\x70\x4d\x5c\x2d\x3d\x04\xc1\x83\x99\x22\x4d\xb6\x70\x22\x51\xb7\xbd\x17\x1b\xa9\x6e\x3b\x2a\x62\xc0\xbc\xb5\x02\x77\x72\xff\xc1\x6c\xc9\x36\xe1\xc0\x43\x56\x09\x4d\x05\x6a\x92\x88\xd7\xfd\x4c\xe4\x65\xb3\x22\x3b\xe5\xef\xdc\xf0\x38\x9f\x93\xa4\x37\x18\x9c\x80\x99\xec\x5e\x7f\x88\x32\x39\xb4\x9c\x8d\xc0\x1e\x69\x8f\xc8\x02\xe6\x6d\x06\x90\x93\x55\xad\x77\x24\x93\xad\xfe\x61\x66\x5a\x7a\x47\xce\x15\xdd\x3d\xc5\xa2\xf4\xee\x61\xa0\xd9\xcf\x6c\x00\xba\x87\xd4\x35\xb4\x6e\x3b\x4a\x42\xb9\x89\x5c\x99\x63\xe5\x3a\xfe\x49\x03\x81\xa6\xec\x5a\xdd\xc7\xc2\xb7\xd0\xe5\x5b\xb8\x2e\x65\xcd\x9a\x41\xb2\x49\xed\x5b\x74\x6b\x29\x85\xc1\xde\x86\x8e\x37\xe0\x02\xcc\x91\x4a\x3e\x46\x11\x30\x27\x43\x3f\xa1\x91\x11\xe0\x36\x78\x4a\x04\xf2\x1f\x66\x57\x1a\x76\x4a\x5e\xdc\x17\x17\x53\xed\x32\x91\xc3\x99\x5c\xae\x73\x5c\x5a\x05\x1c\xf1\x45\x1a\x65\x69\xe3\x95\xd5\xd2\xc6\x95\x18\x8b\xfb\xf9\x56\x38\x84\xab\x0d\x98\xa8\x26\xf3\xa1\x07\x8e\xe3\xb8\xdd\xab\x76\xea\x26\x45\x1b\xb2\x8a\x18\x92\xc5\xed\x79\x7b\xe8\xdc\x6c\xb8\x2f\x16\x0f\x87\xa1\x60\xba\x4b\x0c\xb3\x82\x85\x1d\x81\xa3\x6a\x95\x1f\xc9\x51\xa5\x58\x8f\x1d\xf1\xd9\x53\xe3\x1e\x03\x67\x52\xa3\xfc\x78\x80\x30\xc7\x12\x05\xe6\xe4\x1e\x9f\x7f\x5c\x68\x67\x96\x26\x7f\x97\x07\x13\xf6\xa8\xc5\x1b\x9c\xc9\x9a\xdb\xe7\x95\x0e\xb9\xd3\x81\x6c\xd0\x30\x3d\x5e\x7d\x98\x68\xe1\x45\x80\x97\xf0\x60\xe3\xd6\xfe\x0c\x2e\xe5\xee\x9e\x7f\x4c\xfe\x60\xbd\x5f\x29\xad\xe7\x8a\x48\x6c\xed\xbd\x43\x58\x07\xbd\xf1\x12\xa4\x32\xec\xf8\x66\x9f\x95\x04\x96\x73\x18\x7e\xad\x6f\xdd\xf8\x3c\x4e\x2e\xf2\x07\x75\x42\x8f\x02\xa5\xb2\x26\x05\xfd\xd4\xd4\x60\xde\x42\x53\xe6\xae\xf8\x72\x72\xe8\x22\x3e\x3f\x21\x09\xfb\xb2\x71\x7a\xc2\x65\x2d\x59\x71\x27\xc0\x93\xbb\xc4\xe0\x05\x0c\xd7\xf0\x8f\x46\xe9\xca\x73\xb6\x17\xbc\x30\xf2\x2c\x1d\x3c\x1f\x3c\xe3\x80\x37\x2d\x90\x1b\x7d\xf2\x72\xe9\x1f\xc6\xb3\xfe\x02\x9d\x67\x75\x1a\xce\xcc\x4c\x36\x8a\xc6\x0e\x90\xe4\x9e\x50\x3a\x75\x68\x15\xc2\x8c\x30\x0f\x65\xfa\xb0\x8c\x03\xb4\x88\x92\x31\x67\x40\x28\x49\x67\x17\x28\xc9\x22\x4b\x03\x4a\xb2\xea\x6a\x33\xf3\xd6\x97\x4d\x35\x8b\x83\xf5\x23\x39\x1a\x24\x7a\x72\xb9\xab\xa5\x1b\xc4\xc8\xdd\xb6\x25\xb4\x95\xb1\xf5\x66\x91\xf6\x73\x62\xa7\x79\x99\xc3\x56\xaa\xb4\x88\xdd\x07\x50\xe4\xfe\x87\x66\xaa\x4b\x05\x29\x9f\xa9\x48\xfb\x95\xbc\x8a\x11\xe2\x34\x54\x74\xe7\x00\x0e\x72\x97\x60\x88\x70\x54\x8d\x82\x53\x64\x68\xd2\xdc\xcf\x99\xac\x32\xfe\xbc\xf8\x9d\x66\x60\x9e\x56\xc7\xa2\x16\x9f\x65\xa3\x6c\x67\xc1\x1e\x97\x46\x92\xd9\xb3\x21\x26\xb6\xbb\xeb\x39\xad\x13\x7d\x56\x1b\xf9\x44\x9f\xd5\x88\x3c\x7b\xee\x3b\x5f\x72\x00\xbc\xa0\xab\x0e\x4e\x1f\x30\x8d\x33\xdc\x08\x03\xac\x30\x74\x83\x39\x94\xe6\x5c\x6d\x3c\x42\xd5\x55\xc1\x6f\xac\xea\xfe\x33\x2f\x87\x5d\x16\x2e\x87\x35\xbc\x03\xec\xb8\x19\xbd\x4d\xd8\x29\x9f\x15\xec\x5c\x94\x29\x49\xe8\xbe\x14\xbb\xeb\x0b\x6b\x8f\xf8\x35\xcd\x82\x69\x00\x08\x20\x8c\x7b\xe4\x8c\xc3\x08\x32\x5d\x60\x80\x64\xec\x60\x59\x4c\x20\x19\xbb\xe6\x6c\x21\x19\xa7\x31\x19\x33\xdd\x7a\xe0\x28\x22\x2c\x6a\x9c\x06\x55\xb1\x83\xe9\x30\xc1\x4e\xec\x1a\xa0\xa7\xd9\xc0\x34\x7f\x4e\x2f\x6b\x75\x1f\x00\x2e\x71\x57\xe5\x3f\x9e\x0d\x4c\x47\x73\x59\x17\xe3\xd5\xa1\x9e\x44\xc8\x13\xf4\xc3\xae\xc9\x7a\xaa\x35\x16\x47\x85\xa6\x18\xc5\x3e\x9e\x24\x94\x72\x82\xc5\x34\xd2\x91\x10\xfc\xc3\x3d\xa9\x8c\xfd\xcc\xc4\xe1\x16\x11\x8c\xdf\x46\x1e\xa4\x3a\x7f\xf7\xa4\x0c\x8b\xbb\x9d\xa0\xa1\x60\x26\x76\x4d\xde\x40\x26\x16\x13\xa6\x4e\x50\x12\x6b\xf1\x38\x5e\x8a\x0b\x36\x78\xc1\x14\x10\x1d\x66\xc6\x73\xb9\x0a\x97\x6b\xc5\x64\x73\xb7\xab\x4d\x37\xe1\x10\x75\x4b\x9c\x60\x15\x68\xb8\x06\xf5\x70\x57\xcb\x1f\xe4\x2a\xd1\xbe\x3b\xd3\xe5\x47\x72\x23\xdb\x82\x9f\x09\x47\xb8\x74\x37\x04\x8f\x70\x17\xe7\xab\x27\xbb\xe8\x3f\xd6\x45\xdf\xe5\x55\x5a\x1d\xc0\x1d\xec\x1a\x1d\xc0\x1d\xac\x4a\x81\xc0\x0e\x76\xad\x03\xf3\xcd\x7d\x42\x83\xa8\x72\x39\x3d\x68\x6b\x21\x01\x7e\x73\xa1\x68\xe2\x35\x55\xa8\x1f\x49\x5f\x90\xf5\x80\x1d\xac\x86\x9f\x4c\x03\xb8\x86\xbf\x9f\x96\xb6\xc4\xed\x8b\x8d\x1b\x45\xe1\x33\xdb\x47\x6a\x8c\x76\xa7\x7d\x2a\x01\x09\x43\xda\x20\x2c\x81\xbe\x95\x80\x10\x16\x2f\x82\x66\x5e\xdb\x4a\x34\x3e\x4d\xdb\x88\x14\x60\x0a\xee\x06\x19\x08\xba\x9e\xc2\x37\x70\x81\xc5\x6b\x5b\x60\x01\x8f\x00\x2a\x6a\xc6\x2f\x07\x35\x78\x59\xfe\x73\xf0\x62\x71\x9f\x1f\xff\x28\xbc\xb8\xe3\xe6\x5f\xc9\xfb\x66\x1c\xee\x3a\x68\x60\x90\x83\x4b\x95\x14\xd0\x41\x13\x35\xcc\x20\x2a\xfa\xc0\x18\x06\xb4\xe0\x6e\x87\x7e\x1e\x52\x67\x58\x5e\x14\x36\x33\x94\x1a\x34\xc1\x90\xa1\x27\x9a\x20\xc0\xfb\x33\x52\xa5\xcb\x7f\xc8\x90\x66\x7b\x04\x1d\x68\x75\x0f\x5d\x8d\x90\xc7\x44\x10\x0c\xd2\x79\xcd\xa8\x4e\x3e\x84\x03\xd0\xc0\xea\xa5\x37\x38\x81\x62\x48\xcc\x48\xed\x0c\x19\x33\xea\x74\x85\x68\x03\x26\xa3\x9e\x2c\x06\xa0\xaa\x25\xf0\x7e\x7b\xd3\x51\x55\xaa\x5d\xf0\x28\x00\xfe\x3a\x29\xea\x66\x18\x8d\xe5\xa1\x04\xe0\xaf\x88\x40\x38\xc1\xf1\x2b\xc2\x93\x4d\xb0\xfb\xa2\x67\x71\x53\xbe\x72\x12\x05\xef\x33\xc5\xd9\x8c\x64\x24\x30\x5f\x60\xf6\x76\x27\xe9\x18\x46\x4f\x52\x9a\xce\xe8\xb9\x8e\x8c\x6b\x38\x75\x2e\xc9\xc0\x4b\xcb\xe6\x87\x57\x48\xcb\x3f\xdc\xdd\x87\xff\x10\xaa\x38\xfc\xe3\x46\xb9\xa0\x8f\x22\xee\xfd\x7b\x81\x38\xda\xe0\x24\x97\x5d\x3e\x23\x12\xa0\x95\x03\xa5\x17\x0a\x2a\x80\xe7\x75\x95\xdf\x10\x88\xdf\x40\x29\x00\xf3\xd2\xaf\x16\xf8\xbb\xae\x82\x1d\xb8\xf0\xe8\xe1\x11\x91\xdd\xa3\xd6\xb0\x26\xba\xa7\x13\xa7\x2b\x28\x1b\xc0\x52\x00\x2a\xde\x1e\x35\x5d\xda\x3c\xa1\x36\xb7\x18\x99\x32\x40\x8b\x9a\xa1\x33\x0f\x20\x63\x33\x96\xa0\x9f\x34\xb7\x00\xe4\x86\x33\x86\xb1\x57\x32\xdc\xc0\xa6\xa8\xa2\x0d\x2a\xde\x11\xa4\xb0\x9e\xb1\x34\x46\x78\x0e\x93\x6f\x20\x15\x00\x8c\xb7\xcb\x33\xb3\x58\x18\xd5\x68\x23\xf9\x86\x0b\x7b\xea\x8d\x4c\x5d\xa7\x9b\x04\x5a\x21\x00\x9e\xb7\x76\x71\xda\xba\xcf\x6e\x9e\xfc\x03\x0f\x46\xe3\xe7\x00\xc3\xeb\x6a\xb7\x82\xe1\x4d\xaf\xc7\xe2\xca\x9e\x30\x41\x97\x3b\x49\xf2\x20\x2a\xff\xc8\xcf\xd8\xbc\xb0\x1d\xa0\xee\x0e\x15\x24\xa1\xee\x82\xe4\xb8\x13\xa8\xbb\xae\x4c\x1e\x5e\x52\xea\x2d\x14\x84\x2b\xa8\xbc\xc4\x95\x8b\x40\xb5\xaa\x51\x2e\x2d\xb9\xaf\x14\xaa\x85\xc0\x23\xb1\xd8\x8c\x5b\xb3\x7f\xf8\x51\xee\x4f\x3a\x72\x27\x47\xf0\x1f\xe6\x41\x62\x40\xe0\x97\x17\x34\x91\x9a\x13\x4c\x32\xee\x5c\x11\x06\x48\x54\x03\x49\xb5\x26\x28\x78\x5d\x25\x3f\x92\x1d\xb9\xc9\x1e\x67\xe1\xf8\x33\xd6\x43\x88\x3c\x95\x3d\x20\xf2\xf6\xb4\xd0\x9b\x47\x81\x5f\x22\x22\xe3\x72\xf7\xe7\x1d\xa9\x87\xed\x71\x5e\xdc\x2c\x69\x43\x84\xd3\xc6\xeb\xbd\x02\xe2\x96\x10\x78\x8a\x80\x40\xe0\x55\x0d\xe9\x91\x57\x9b\x4e\xcc\xeb\x42\x58\x80\x3b\x17\x18\x2d\xd0\x76\x47\x23\x0d\xc5\x8c\x4f\x1a\xe0\xc4\x7c\x76\xde\xaf\xb2\xbf\xb4\x41\x2a\xe6\x46\xf8\xf1\x14\xcf\xae\xe9\x0f\x03\x84\x5d\x0f\xa9\x0e\x7e\x3d\xa1\xa0\x19\x5f\x8e\x64\xf7\x6b\x99\x0a\xd2\x8b\xce\x95\x2a\x51\xe3\x39\x5b\x09\x5e\x18\x15\x62\xdf\xd2\x52\x38\xb2\x84\xd7\x00\x54\x45\x06\x8e\x00\x98\x6d\x02\x28\xd7\xe5\x29\xe2\xc9\x29\xc4\x01\x14\xd7\xa5\x40\x00\xc5\xed\x26\x16\x2f\xee\xd4\xea\x57\xb7\xbd\xb2\x38\x94\x51\x37\x94\x65\x80\x84\x4e\xe6\x0b\x70\x9a\xa2\xf7\xc8\xd2\x50\xa8\x7b\xb0\x78\x71\x1a\x53\x97\xe6\x40\xdd\x2b\x04\x8c\x23\x73\xc4\x5c\xa4\x8b\x92\x71\x2f\xee\x15\x65\xf5\x0b\x2f\x9f\xa2\xdb\xc5\x2a\xd2\x4f\x98\xe0\x12\x92\x86\x39\x5d\x7a\xb0\x2e\xbf\xd2\xcf\xc7\x5b\x4d\x60\xe5\x76\x79\x5f\x18\x24\x24\x34\xd1\xe3\xf4\xaf\x5a\x15\xef\x62\x38\x2d\x48\x72\xfb\x8f\xc1\x8b\x41\x5c\x74\xb7\xe6\x70\x29\x01\x7c\xad\xc2\xc1\x6a\xe9\xf6\xcd\x73\xf1\x23\xff\x68\x36\xee\x3f\xdd\x7a\x69\x44\xf0\xb9\x5f\xd6\x05\xdf\x2d\x16\xc1\x5a\xec\x2c\x82\x90\xef\x5e\x06\x93\x6e\xcf\x28\x23\x24\xf0\xae\xe8\x32\xb2\x48\xd9\x51\xf4\x12\x59\x7d\x9f\x53\x0f\xd6\x02\x16\xbf\x68\xfc\x02\xba\xae\xcb\xab\x96\x49\xa1\x75\xc3\x07\xbb\xae\xcb\xb5\x17\xde\xb2\xda\x9a\xc1\xb1\xeb\x60\x3d\xcc\xa5\xc6\x25\xd1\x5f\x6a\x5c\xcb\x26\x1e\x1c\x67\xd9\x34\x30\x4d\x4d\x70\x0b\x8f\xa1\xf0\xf7\xe1\x4c\xd1\x98\x70\x75\x9c\x16\x40\xe9\x4a\x73\xc5\x87\x3c\xbe\xfa\x07\xf9\x76\x9d\xf3\x91\xfb\xc5\x9a\x2e\xfb\x4d\x9f\x86\x51\xc7\xfc\xe1\x9d\x1e\x98\x71\x13\xfc\xb8\xaa\x0a\x0f\x66\xdc\x9e\x66\x5f\xec\x38\x33\x28\x9e\x80\x8e\x2a\x6b\xe6\x29\xb2\x2e\x77\xb8\x47\x4a\x55\x0a\x42\xb1\xb0\x3d\x1a\xa0\xbe\x84\x20\x68\xfe\x0e\x9a\x01\xe4\x70\x61\x62\x9c\xed\x4f\x15\x18\x74\xb9\x2e\xa1\x5d\xa6\xe3\x58\xf6\x85\x28\x3e\x81\x12\x26\xb8\x73\x07\x29\xfb\x27\xb0\x73\x55\xc2\xb8\x36\x73\xae\x9a\x0c\x81\xa0\x2b\xe6\x9c\x9b\x0b\x57\xdb\x8c\xc5\x06\x83\x2e\xd4\xda\xd7\xca\x03\xc9\xd4\xa1\xbc\xb5\xe5\x10\xf5\x38\x5a\x36\xa8\x2d\xd2\x93\xb7\xb2\x27\xf4\x91\x2b\x3f\x79\xc1\xd2\xca\x08\x5a\xc9\x14\x5c\x4e\x6f\x19\xb1\xe5\x24\xc4\x4b\x1e\xac\xc7\xc8\x3a\x15\x5e\x91\x0d\x96\x4c\x58\x42\x23\xe8\x9c\x61\x15\xe2\xcc\x49\x70\xc1\x99\x2b\x29\xfb\x82\x33\x57\x8d\x90\x03\x66\x6e\xe6\x16\xe5\x62\x50\x72\x0b\xcc\xdc\x6e\xc2\x97\x1c\x13\x73\x72\xe5\xf4\xd2\x45\x41\x0a\x9a\x55\xbd\xcc\xae\x1f\x7d\x28\xff\x74\x8a\xac\x56\x64\xfd\x9c\x4b\xa6\xeb\xd1\xbc\xdd\x65\x48\x95\xcb\x4b\x3f\xa3\x46\x40\x93\xdb\xff\x50\x95\x39\x27\x93\x98\x10\x3f\xa8\x4b\xf5\x32\x79\x95\x19\x18\xc0\x96\x2b\x86\x8d\x80\x1b\x57\x52\x08\x17\x2b\x2e\x5b\x7f\xf4\xec\xa1\x57\x4f\x52\x35\x5f\x3a\xd5\x52\x5a\x27\x23\xa0\x2f\xa7\x80\x72\xcd\x6a\x9f\x6c\xcf\x3f\xa4\xa3\x59\x5c\x3a\xea\xb4\x3f\xde\x18\xf3\x87\x66\x4a\x1d\x4d\x16\x66\xca\x25\xf9\x20\x63\x64\xd1\x9d\x04\xe4\xb9\xbe\xec\xd6\x6b\xe8\xac\xcf\xd2\x5a\xc4\xb6\x85\x63\xae\xd6\x24\x01\xe9\x92\xa2\x72\xb1\xa7\x3f\xa7\x18\x74\x6b\x64\x81\xcb\x4e\xd9\xc4\x4d\x09\x4b\x2b\x9c\xf9\x15\x99\x97\x9b\xa7\xfb\x73\xeb\x23\x50\x2d\xb5\x3d\xb2\x38\x4e\xe0\xe5\x0e\xed\xa2\x4b\xf7\xa1\x03\x32\x0a\x8c\xdc\xa1\xc4\x7f\x1a\x2d\x62\xf4\x0d\xc8\x71\x7b\xb2\x26\x2f\xf8\xcb\x28\x14\x9c\xa4\x5e\x2e\x7a\xe8\x9c\xd8\x1d\x3d\xaa\x27\x3a\x61\x33\x01\xc5\x69\xa2\x0e\x90\x3b\xa7\x08\x73\xca\x2a\x67\xb2\x68\xfa\x75\x72\x99\xe7\xc1\x3b\x61\xd7\xba\xa9\x8a\x36\xd7\x4c\x3f\x01\xaa\x5c\x35\x06\x54\x54\xb9\x00\xab\x72\x82\x2a\x57\x75\xab\x04\x49\xae\x18\xb0\x73\x26\xbb\xee\xbe\x90\x97\x2e\x7c\x46\x84\x33\x77\x05\x48\x72\xdd\xdd\x07\x92\x5c\xf7\x48\x9c\x25\x67\x91\x6a\x4b\x0e\x96\x31\x15\x89\x24\xa7\xe2\xf4\xee\xce\x0c\x15\x40\xc3\x15\x50\x8d\xe6\x59\xdc\xbd\x88\x1a\xa7\xe9\xaf\x46\xf9\xf3\x0a\xe4\x24\x37\x56\xce\x77\x35\x35\x1e\xdd\x01\x31\x28\xbb\x5c\xe5\x3b\x6c\xe7\x53\xd7\x5c\x83\x86\x44\x8e\x5b\xf2\x4c\xa0\xe3\x7a\xae\x03\x46\x4c\x90\x4d\xe6\x69\x28\x8a\x63\x21\xd8\x24\x27\x58\x1d\x94\x8d\x7d\x62\xce\xd4\x7a\x7b\x72\x25\x68\x80\xcb\x49\x16\xc8\x1c\x6d\xcb\xb3\x4e\x5f\x93\x8d\xbb\x6b\x9a\xe6\x40\x5a\x4b\x3d\x15\xa5\xf5\x54\x4f\xd5\x05\x04\x34\xb9\xfe\xaf\xc4\x6d\x71\x8b\xe0\x68\xe3\x82\x72\x3b\x08\xe8\xe5\x3c\x53\x7f\xa5\x23\xf8\xfe\xe8\xe8\x01\x92\xdc\xae\x95\xc2\xdd\x73\x8f\xbc\x77\x76\x67\x8d\x61\x74\xa9\x6d\xb7\xb8\x7a\x3c\x07\xf4\xec\xb9\x86\x34\xd2\x55\xb2\x90\x86\x4e\xc0\x1a\x7e\xd5\x8d\x3d\xf4\x8a\xa1\xe2\x91\x4d\x52\x24\xd9\x34\xea\xdb\x39\x1c\x15\x1d\x4b\xed\x17\x4e\x75\xea\xcc\xeb\x6e\x1c\xd9\x22\x75\x71\x87\x68\x6e\x85\x73\x9a\x35\x8c\xd2\xd3\x4d\xee\x66\x26\xe5\x88\x3e\xbe\x40\xce\xed\xd2\x96\xb0\x3d\x06\xa2\x55\x74\x5a\x80\x33\xe5\xf6\x4b\xe6\xed\x6c\x91\x35\x52\x9f\x21\xb0\xe8\xf6\x12\x52\x53\x88\xa2\x47\x9f\x42\xa2\x6e\x7b\xa4\xd5\xd2\xb3\x11\x5c\xba\x72\x60\x88\x3a\x09\xc6\x9f\x26\x92\x38\x45\x98\x1f\x76\x84\xeb\x42\x93\x26\x9c\xa9\x63\xbb\x84\xe1\xd9\xb1\x91\xa5\x34\x8e\x6c\x74\x26\xc3\x76\x75\x49\x0b\xad\x5b\xf8\x09\xf3\x06\xb3\x7c\x0a\x5f\xb7\x8c\x8a\x3b\x89\xd3\x5f\xee\x25\x6e\x0e\x4d\x74\x20\xac\x9d\xe9\x17\xce\x65\x47\x18\xc6\xca\x59\xa0\x87\x66\xce\x82\x14\x9e\x7a\x04\xe7\x1c\xea\xf8\x9b\x13\x77\x32\xb9\xce\xdb\x99\x00\x59\x3c\xbb\x7d\xa4\x52\x84\x56\xea\xc8\x0f\xac\x5d\x95\x59\x9f\x98\x53\x0d\xd6\x07\xe1\x6e\xd7\xca\x8c\xe0\xb1\xbb\x46\xbe\xd8\x73\xda\xd6\x7b\x17\x58\xdb\x79\xa2\x23\xab\x2b\x88\x77\xb7\x46\xbe\xa8\x29\x4d\x8b\x43\xbe\x60\xbe\x00\xde\x1d\xcd\x75\x22\x9c\xd2\x38\xfc\x13\xb5\x98\x6c\xad\x53\x20\xbc\x96\x33\x82\x9d\x55\x47\xee\xf3\x76\xa6\x18\xd1\xad\x78\x99\x25\x4e\x3e\x62\x78\xa6\x87\x76\x0f\x1b\x7e\xe9\x4d\xe3\x89\x61\xd6\x00\xf3\xf3\x4e\x36\x6a\x09\xfb\xf7\x17\x36\xef\x04\x7a\x2f\xbc\xd7\x38\x37\x83\x6f\x7a\x8b\x02\xc3\xd7\x57\x3e\x3b\x10\x66\x54\xcd\x57\xcf\x26\xa0\xf7\xaa\xd1\x8a\x20\xef\x75\x43\xb4\x00\xdb\x9b\x5e\xfc\x9e\xaf\x2c\x92\x01\xbe\x26\x4f\xa6\x2c\xc0\x08\x5a\xa8\x4e\x72\x3b\x9b\xe4\x07\x10\xbe\xf0\x72\xe4\xf4\x46\x11\x64\x97\x79\xbe\x39\x3b\xb4\x80\xd2\x9c\x44\xf6\x55\x4c\xf4\x59\xf6\x8a\xec\x73\xbe\x76\xc9\xaa\xc8\xc5\xe5\xae\xc0\x35\xc7\xb0\xe1\x33\xb9\xb6\x8b\xf1\x29\xb6\xc9\x69\xbf\xc4\xb5\xe0\x19\xd7\x4f\x29\xeb\xa7\xc8\xc0\x20\x48\x09\x93\x5b\xe2\xcb\x99\xb1\x70\x4a\x09\xb4\x6d\xec\x8c\x31\x9a\x27\x2e\xc3\x46\x0a\x02\xf9\xd7\x0d\x46\x06\xe4\xaf\x5b\xed\xf5\x63\x3e\x86\xcf\xaa\xf1\x9c\xb1\x4b\xef\x1d\x4e\xae\x80\x7f\x46\xc8\x00\xf8\xd7\x8d\x12\xbc\x48\xbf\x65\x5c\xf2\x75\xa8\xb6\xd3\x00\xe1\xa4\x53\xa7\xb9\x0b\xc3\x6e\xf3\x88\x01\xfe\x57\xd5\x6a\xc0\xfb\xeb\x2e\x29\x70\x7f\x7b\x44\x7c\x54\x12\x3f\x89\x67\x05\x7b\x8c\xf5\xd7\xd6\xae\x8b\x89\x17\xae\x62\x3e\x00\x9f\xb3\xe3\x7e\xc4\x36\x1f\x3e\xe7\x42\x5a\x95\x64\x0a\x03\x02\x60\x7f\x7b\xa2\x1a\x2f\xa4\x69\xb6\xef\x25\xa7\x93\x97\xaa\x58\xc8\xde\xbc\x52\xd7\xae\xfe\xc3\xa6\x85\xee\x5f\x55\x6d\x17\xb3\x3a\x90\x80\xdd\xe0\x59\x10\x01\xbb\xb1\xa2\x00\xff\x15\x3d\xa3\x04\xfb\x9b\x7a\x30\x5d\xc9\xac\x31\xab\x5c\x6a\xd4\x80\x10\xcf\x0b\x63\xb0\x12\x23\x08\x7f\x35\xa7\xb7\xe5\x70\x2d\x21\x78\xa4\x05\x48\x84\xc4\x01\xb8\xc4\x6b\x75\x42\x49\x51\x63\xb4\x20\x60\x7f\xdd\x88\xd1\x4b\xc7\x1c\xe9\xc6\xd5\x08\x19\xe7\xc4\x08\xfc\x67\xf0\xe8\x85\x36\x9d\x05\x70\xde\xf1\x6e\x55\x0c\xc0\x76\xb8\x13\x70\xc1\xf5\xa2\xf6\xd2\xab\xa7\xe4\x0b\x66\x76\xa7\x06\x8c\x77\xbd\x10\x12\xde\x4f\xf2\x05\x74\xdf\x11\xa0\xc2\x4c\xb0\xfb\xba\xb1\x35\x57\x7a\xcb\x2e\xbf\x82\x96\x39\x4f\x43\x99\xc8\xe5\x07\xde\xb5\x68\x67\x07\xaf\xaf\x7b\x11\x76\x25\x13\x6e\xfe\xc1\x76\x0b\x9f\xe1\x0d\x5a\xe3\x85\xeb\x6b\x12\x49\xe0\xfa\x76\x8b\x94\x9f\x1e\x14\x06\x32\xed\x16\xf3\x69\x56\x82\x51\xff\x14\xf6\xae\x29\xbd\x77\xc6\xd0\xc3\x75\x35\xbe\x4c\x4d\x60\xaa\x19\x20\xfb\xf6\x00\xe8\x41\xe8\x07\xe5\x1f\xe0\x02\x7a\x44\xc2\xbd\xec\x0e\xe2\x12\x53\x17\x19\x71\xfa\x74\xb3\xbb\x42\x0e\x08\x21\xba\xc8\x85\xa3\xc3\xca\x95\x9c\x18\x5d\xf2\x12\x30\x56\x8a\x7f\x91\xb3\x40\x0f\x99\x8b\x24\x39\xd5\x75\x5f\x24\x29\x46\x36\x11\xf2\xaf\x1c\xd0\xb1\x7f\x98\x7f\x16\xe6\xb0\xe5\x33\xac\x14\x9b\xc1\x85\xb9\x5b\x17\x25\xa1\x00\x43\xe3\xc7\xb5\x5c\x1e\xa6\x74\xd9\x71\x0b\x70\x8b\x91\x05\xe8\xb7\x5b\xfa\x54\x7e\x91\x7a\x9c\x19\x76\xc7\xb3\xf2\x99\x14\x8d\x78\xd6\x3c\x10\x42\x23\x19\x82\x0e\x74\x60\xd1\x4b\xfa\x12\xda\x41\x16\x96\x68\x81\xca\xbc\x97\x89\x76\xdc\x33\x9a\xb7\x75\x28\x04\x22\xb0\x1b\x7a\x04\x44\xe0\x1e\x86\x25\x9c\x10\x49\xe2\xe5\x11\x64\x1c\x97\x3c\x33\x8b\xa8\x7b\x3a\x87\x68\xd7\x12\xf9\x0b\x40\x5b\x5d\x4e\xae\xdb\x06\x11\xc4\xae\x5b\x57\x76\xfa\x6e\x9c\xab\xf9\x7f\x80\x09\x1c\xbf\x7c\xd6\xe4\x4f\x13\xb7\xf2\xb6\x5b\x04\xae\x9e\xc7\xd6\x24\x67\xa6\x61\x12\x58\x50\x3f\x1a\xb0\x03\xbb\x8e\x22\x97\xbc\xdb\x21\xa1\x67\x07\x60\xd5\xf3\x52\xb7\x36\x49\x90\x58\x80\xcd\xac\x31\xd7\x93\x27\xcf\x32\xd9\x08\x03\x49\x7e\x2d\xe9\xdb\x3c\x7a\x78\x7b\x7f\xa9\x5c\xbb\xe6\xa8\xcd\x9a\x67\xaf\xcd\x97\x87\xb7\x60\xd7\xeb\xf8\x68\xef\xf5\xe2\xc4\xe5\xdc\xbc\x78\x78\x8f\x7f\xbd\xd9\x1c\x1d\xd9\x2c\xb7\x99\x1b\xe2\xe2\x92\x34\xc0\x30\x9e\xd7\xa7\x7a\x2b\x55\xfb\xea\x2e\x8e\xe2\x79\x7d\xb4\xe1\xc9\xfa\x26\xcf\x54\xfb\xd9\x9e\xfb\xea\x73\xfb\x48\x59\x92\x9d\x42\x40\xee\xad\x42\x0f\xb5\xa7\x9b\xe8\xd3\xa9\x77\x27\x10\x83\xa5\xe8\x12\x79\xeb\x1c\x0b\x4e\xde\x04\x6f\xb0\xa4\x3b\xd8\xad\x31\x5b\x82\x79\xff\x68\x3f\xbf\xf2\x8a\x02\x02\x74\xff\xb4\xda\x34\xff\x51\xc6\x98\xfe\xc3\x94\x1e\x3e\x23\x21\xaa\xb6\xdc\xe2\xb7\x1b\xe4\x08\xde\xe0\xd0\x73\x01\xbc\xc1\x66\x84\xf1\x7d\x38\x11\x3e\x37\xbe\xa1\xa6\xc3\x89\xf0\x7b\x49\x0c\x1c\x07\x18\xc2\xfd\x32\x78\x79\xff\xfb\xdf\xd4\x4f\x1c\x4c\xc2\xf1\x3b\xfe\xca\x64\x3f\x6f\xf9\xb8\x17\x74\x77\x86\xcc\x32\x13\xc5\xbe\x50\x73\xf1\x1c\x43\xef\xef\xa2\xec\xda\xfd\xca\x9e\xf9\x47\x2e\x11\x3d\xdb\x8c\x7c\x18\xc5\x72\x6f\x3e\x3e\xb4\x9d\x80\x83\xb8\xab\xf2\x0f\x8d\xd6\x9c\xf6\x3b\x59\x37\x1c\x42\x50\xc4\x69\xc6\xaf\x3b\x79\x37\x5c\x45\x20\xc4\x66\x4a\x1a\x80\x10\x87\xa6\x22\x80\x10\x2b\xc0\x0a\xf3\xae\x2c\x43\xb1\x34\xb9\xfa\xab\xbf\x7f\xc0\x70\xd2\xc3\xc6\x56\xe1\x18\xdf\x69\x18\x6f\xbe\x30\x72\x94\xe0\xbb\x79\xbe\xd9\x9b\x77\x73\x73\x40\x83\x44\x45\x0c\x70\xbb\xe7\xbd\x99\xf7\x50\x05\xbb\x53\x6f\x66\x80\x8d\x65\x40\xec\x03\x06\x71\x28\xb3\xdc\x3d\xc7\x4a\x47\x3a\x2b\x5d\x7c\x76\xa6\xe1\x80\x77\xe7\x2c\x38\x07\xa6\x1e\xaa\xee\x81\x1e\x94\x60\x3e\xc4\x47\x54\xac\x05\x1f\xb1\x64\x94\xd5\xdd\x73\xff\xf9\x42\x4f\xdc\x66\xc3\x43\xc2\x60\xc9\x2a\x14\xe6\x6f\xba\xbd\x4d\x96\x6d\xdc\x83\x6e\x79\x7a\x06\x54\x00\x89\x55\x88\xc4\xa6\xbc\x7c\x9b\xdb\xb3\xba\x4d\x06\xb3\x80\xb8\x96\xb0\x88\xff\x5e\x94\x61\xe0\x03\xb7\x57\xcb\xd5\x3d\x33\x73\xfb\x31\x14\x83\x63\x75\x5c\x04\x26\xb1\x7a\xb1\x7a\x4f\x9b\xa7\x5b\x69\x35\xcf\x17\x0e\xa2\x97\x65\xf7\x74\x6b\x85\x15\xab\xab\xb9\x4d\xf0\xd2\xd5\x8f\xeb\xd6\x3a\x6e\xbf\xc2\xbc\xe1\x0c\x31\x58\x75\xb7\x49\xe4\x42\xd3\x5f\x33\x55\x9b\x55\x01\x2c\xc3\xda\xf3\x0f\xdc\x2c\xed\x61\x90\xce\x49\x1a\x12\x29\xb8\xf0\xc7\x62\xae\x61\x74\xe0\x1a\x56\xcd\x62\x89\x65\xf8\xef\x8f\x4e\x2a\x31\x16\x07\xce\xad\xaf\x3b\xe8\x85\x55\xca\x0d\x48\x61\x31\xa2\xe9\x5e\x92\x3c\xd7\x1c\x1d\x5a\x69\xe2\x3e\xbd\xa4\x83\x63\x02\x58\x38\xcc\x49\x06\x60\xe1\xd0\x2b\xf7\x3e\x5d\x58\xbf\x21\xbd\x3a\x2c\xe0\x3e\xe5\x27\x9e\xd3\xd3\x88\x10\xd6\xe5\x64\xbb\x49\x60\x4f\xce\x72\xf3\x1b\x4e\x99\x04\x67\xab\xdf\x43\xdf\x4b\x21\x0d\x8b\x22\x28\x90\x86\x43\xdf\x52\x20\x0d\x87\x59\xc0\x40\x34\x1c\x3a\xc5\x02\x5c\x38\x74\xa4\x04\xb8\x70\x8f\xcd\x9a\xa4\x6f\xc8\x50\xb7\x19\x29\x54\x71\xc0\x2e\x1c\x3a\x46\x82\x5d\x58\x72\xa9\x8d\xa3\xdd\xca\xd2\x5f\x94\xef\x66\x65\x24\xc8\x37\x1d\x93\xa4\xdd\xf2\x58\x0f\xed\xcd\xce\x93\x3a\xde\xb9\x11\xe8\x26\xac\x7b\xe5\x47\x8f\x25\xfc\x83\x8b\x4e\xc7\x9b\xb6\x73\x17\xed\xb1\x0d\x7a\x99\x97\xd1\x6e\x7b\x03\x63\x0e\x64\x40\x30\x0b\xf7\x0a\xfa\xcf\x16\x33\x73\xf4\xc9\xe0\x87\xe5\x59\x11\x0f\x4a\x32\x7b\xa4\x0b\x10\x0c\x8f\x65\xce\x08\x60\x0b\x87\x0e\x90\xa0\x16\xee\xaf\xe8\xd7\x03\x9c\x99\xeb\xa3\x85\x1d\xf1\xe2\x36\x41\xb6\x0c\xef\xb5\xbb\x7c\xef\xc5\xb5\x26\x55\x60\x0b\xab\x12\xe1\x9d\x4a\x38\x02\xd3\xfd\xca\x15\xd1\xea\x00\x24\x1c\x26\x9b\x02\x78\x70\xe8\x4b\x08\xd6\xe0\x50\x22\xb8\x3f\x89\xab\x64\x45\xc6\x8f\x92\x7b\x6b\x2e\x97\x34\x7f\x30\x12\x94\xb8\x3b\xfd\xa4\xac\x48\x7b\xcf\x6e\xe0\x49\xc3\x79\xe3\x99\xc6\x86\xcf\xf2\xf9\xea\x0b\xc9\x25\x99\xd8\x87\x4c\xac\x32\xda\xe7\x67\xc3\x95\x67\x1b\x9b\x3c\x93\x3d\x89\x15\x7e\x7e\xb8\xfc\x1f\xd6\x93\x8b\xca\xcb\x81\xeb\x01\xe3\x7f\x74\x9b\x3a\x90\xe0\x1e\xb3\x35\xe9\x78\x0d\x76\xe1\xd1\xd4\xe6\x9f\xc3\x74\xff\x16\x61\x7b\x0d\x3f\x92\xe8\x2c\x5f\x26\x57\xbb\x7e\x14\x74\xd6\xc2\xde\xba\x32\x6a\xbc\x7e\xb5\xd1\x8b\x75\xa8\xf3\xe4\x73\xb0\xec\xc3\x6e\xb8\xec\x10\x26\x40\x10\x77\x9f\x28\xc1\x95\xb8\x41\x31\x0f\x89\x5e\x0d\x75\x7e\xc8\x94\x61\x04\xd3\x53\xb2\xdf\x74\xa3\x64\xff\x2c\x2d\xa3\x61\xdb\x3c\x9a\xe2\x59\x96\x47\x20\x0a\x1b\xcf\xeb\xf1\xe5\x1f\x10\x08\x68\x1c\x08\x88\x4d\x06\xf4\xa0\xbe\x7b\x77\x23\x18\xe2\x94\x4c\x01\x86\x38\x4c\x0e\xf5\x64\x40\x2e\xad\x55\xe6\xcc\x3e\xa1\xb0\x9b\xcb\xfa\x11\xfc\x38\x7c\x56\x40\x74\x74\x95\xad\xe8\x14\x18\x6a\xab\xf3\xd5\x63\x92\x41\x75\xee\xa7\x89\xbd\xc8\x1c\x98\x63\xf0\xe7\x73\x63\x9e\x2c\xe0\x72\xd1\x8d\xc6\xb6\xc9\xb2\x32\x67\x28\xe4\xd3\x48\x22\xce\x99\x7f\x1a\xd4\x12\x61\xff\xc1\xb8\xae\xe3\xec\x63\x82\xa8\x91\xb5\x3a\x33\xcc\x86\x02\x03\x1e\x10\x8f\x81\xb5\x10\xc2\xc7\xeb\x72\x9d\x55\x9f\x9e\xcb\xc2\x24\x77\xaf\x83\xe2\xcf\x68\xde\x47\x71\x02\x59\xf1\x31\x04\x57\x1f\xd7\x27\x45\x88\xfc\x47\xb9\xa6\xd9\x2c\xfd\x0f\x1b\xd2\xd5\xa2\x59\x24\xf7\x95\x5f\xbd\x6c\x50\x06\x33\x80\x8b\xe4\xe8\x3e\xa4\xe0\xd0\x95\x0f\x8c\xc6\xa1\x9f\xda\xa3\xd9\x5e\x9f\x5a\x71\x19\xcd\x10\x22\x2e\x63\x29\x6e\xfb\x01\x8d\x9b\xfe\x91\x9d\x62\xe6\x07\xf3\xe5\x42\xcf\x5c\x4f\xbe\x9a\x80\x1f\x38\xf3\xd3\xdd\x43\x81\x49\xdb\x4e\x57\x06\xcf\xb2\x6c\x73\xa0\xed\x31\xec\x29\xc9\x91\x86\x68\x11\x08\x9f\xbd\xa8\xcc\x9a\xdc\xe9\x3f\xab\x82\x05\x21\x6e\x3c\x9a\x0a\xcc\xd2\xfb\x44\x2e\x16\x15\x87\x42\x8d\xf4\x25\x14\x6b\xdd\x7e\xa1\x01\x5a\x52\x65\xc8\x8f\x96\x93\xc7\x74\x1e\x00\x81\x4e\x80\x1e\x87\xfe\x62\xc2\x39\x2e\xad\xdc\x4f\xb8\x57\x68\x65\xe9\xfd\x25\x25\x59\xce\x35\xa5\xb5\x0a\xe8\xcb\xfa\x98\xcd\xc3\xfb\xdb\x67\xa5\xe8\xc6\xf3\x3e\x3b\xfa\x45\x03\xd4\x38\x74\xeb\x02\xa8\xb1\x18\x10\xf3\xe8\x11\x97\x27\x24\x25\x10\x89\xcf\x96\x40\x86\xce\x35\xcf\x89\xe3\x8b\xc4\x51\xa1\x43\x82\x71\xd2\x27\xd7\xe6\xd4\xbf\xc4\xe3\x72\x66\x9f\xfc\xca\x75\x86\x6d\x3c\x8a\x1a\x92\x53\x1c\xe2\xf2\xd8\xe2\x0f\xa7\x90\xfa\x28\x76\x48\x00\x4e\xe6\x43\x92\xb4\x45\x90\xa1\x27\xcf\x83\x13\xb5\xda\x13\x70\x91\xd5\xe8\x8f\x27\xfd\xe2\x3c\xce\x17\x81\x24\x36\x7c\x71\xcc\x97\x85\x65\x7d\x30\x2f\x70\x24\x43\xbf\x72\x60\x24\x87\xbe\x46\x09\x23\x99\x9b\xf8\x82\x87\x84\xcf\x00\xa3\x49\xcf\x94\x58\x9c\x19\x2e\x0f\x34\x86\x81\x2e\x59\x65\xc0\x8f\xd0\x1a\xfa\x27\x27\xba\xa4\x22\x12\xc0\x91\x43\xa7\x32\xb1\x22\x0d\x52\x15\x2a\xb2\xb9\x28\x7a\xc8\x69\x57\x03\x1e\xb2\x98\x30\x4c\x78\xc8\x65\x82\x20\xe0\x21\xab\x16\x27\xe0\x21\x0b\x90\xac\x13\x78\xc8\xa1\x25\xff\x31\x51\x96\x53\xff\xb8\x40\xd2\xd2\xc7\x51\xd3\x0d\xd3\xfe\xea\x01\x02\x56\x64\x31\xde\xfc\x51\xee\xc8\xa6\x1f\x0a\x30\x86\x2d\x76\x0c\x1d\x83\x80\x7f\xac\x39\x9e\xf7\xe0\x77\xbe\xf7\x2e\x5f\x87\xda\x87\xf8\xa3\x5a\xad\xf5\x6d\x7c\xe5\x1f\x1e\x9d\xbf\x7d\x99\x9f\x14\x5d\x3c\x7e\xf8\xd9\xe9\xd0\x21\x50\xa4\x89\x78\x1e\x7d\xee\xbc\x7d\x78\x52\x8c\xf1\xf8\x90\x49\x32\x67\x11\x4f\xf0\xad\x87\xf2\x62\x06\x04\x4a\x7c\xf2\x11\x8f\x28\xc2\x8e\x7e\x4d\x20\x42\x36\x65\xfc\xc7\xd8\x5e\xcd\x70\xcf\x97\x0d\xfa\xd5\x45\x89\xfd\x95\xa8\x8e\xc5\xab\x85\x17\x03\x86\x19\x26\x40\x78\xac\x85\xbd\x0a\xc0\xe3\xd0\x3d\x08\x50\xc7\x5d\xed\xe0\x65\xf1\x87\x05\x4e\x9e\x0f\x9e\x69\x81\xd6\xde\x23\xb7\x18\x1f\xe5\xd5\x7e\xf8\x42\xcf\x6d\xfa\xf0\x22\x39\x2c\x92\x3b\xc0\x97\x0b\x5d\xc5\x12\xb7\xbd\x5d\xbc\x48\x1f\x86\x2f\xd8\x38\x97\x75\x41\x1e\x98\xdc\x37\xcd\x0d\x9c\x0e\x60\x1e\x87\xce\x41\xc0\x3c\x0e\x3d\x40\x40\x79\x1c\x7a\x19\x81\xe6\x58\x34\xfb\x81\xe6\x78\x84\x7a\xd2\x5b\xf4\x64\x41\x99\x78\x4d\xfc\xe1\x98\x74\x0e\xaf\x08\x0e\xaf\x22\x88\x6e\xb8\xaf\x8e\x01\xcb\x67\x4d\x0f\xf0\xef\xb7\xda\x11\xaa\x42\xec\xd0\xe1\xe0\x45\xec\x28\x3a\x01\xbf\xc8\x1d\xfa\x73\x88\xf4\xb8\xcc\x15\xf5\x62\x84\xd0\x05\x03\xa4\xc7\xa1\x9f\x07\x48\x8f\x43\x6f\x05\x90\x1e\x87\xce\x27\xaf\xc6\x89\xe5\xf7\xa8\x2e\x50\xfd\x97\x9b\xff\xa2\x63\xf1\x0b\xec\xb2\x59\x01\x01\x7d\x1c\xfa\x88\xbc\x79\xdd\x0f\xaf\x7e\xd3\x3a\x31\x2d\x31\xf8\x8a\xd1\xe5\xed\x83\x43\xc5\x6b\xaf\x69\x53\x00\x1a\xb2\xcc\xac\xf7\x52\x6f\xe1\x19\x67\x39\xa8\x30\x30\x91\xbb\x1f\x7c\xd4\xdd\x91\x0e\xa9\x13\xc9\x6a\xd7\x3b\x60\xd0\xc8\xd3\x6f\xd7\xb5\xcc\x6f\xe8\x07\x7c\x45\x90\xc8\xf4\x12\x04\x0d\x72\xe8\x8a\x01\x18\xe4\x30\xe9\xc5\xdb\x73\xdc\xd4\xba\xe5\x87\x69\x06\x9e\x57\x94\x2c\xcd\xde\x6f\x0a\x0d\x2e\xcc\x70\xac\xfe\xe1\xf4\xd3\x8f\xc1\xf4\x57\xbf\x61\xfa\xab\xb5\x5e\xbb\x56\xb7\xc4\x40\x55\x47\x2a\x79\xd3\x30\xb1\x7c\xc9\x2d\x41\xe9\x7f\xc8\xce\x3c\x2b\x6f\xe5\x4b\xce\xb9\x2f\x9a\xbc\x10\x0e\xde\x69\xe3\x8c\x75\xb2\xde\x4e\xce\xbc\x79\xf6\x1b\xe6\x00\x3e\x06\x88\xe4\xae\x89\x59\x9b\x1c\x12\x67\x50\x9f\xf9\xdc\x15\x91\xd8\xcc\x3c\xb3\x11\xda\x9f\x2e\xcc\x6f\x9c\xff\xfd\x2f\x99\x16\x70\x93\xc3\xcb\xb9\x57\x87\x7a\xed\xff\x6f\xb0\x06\x30\x21\xa0\x27\x6b\x6e\x31\x4c\x16\xde\xa7\xbd\x79\x0b\xb1\xfc\x83\xa3\x81\x10\xf6\xae\x5c\x0e\x5f\x58\x0e\xa7\x34\x5d\xf6\xdc\x23\x06\x5f\x55\xe6\x47\x84\x38\x53\x67\x01\x10\x37\x34\x5a\x7c\x9e\x13\xb6\x1e\x60\x71\x47\x98\xed\x54\xb0\xb8\x00\x8d\x76\x7e\x55\xd1\x27\x5f\x9c\x3a\xc8\xc2\x97\xe7\x86\x1d\xf7\x99\xe5\xce\x68\x85\xcf\x2c\x77\xda\xd1\x41\x92\x1b\xde\x45\x7c\x4d\x46\xee\xef\x5a\x0c\x60\xc0\xe0\xc5\x0d\x2d\xf5\x5f\xa7\x00\xe2\x19\x70\x71\x43\xb3\x39\xa0\x70\xbb\x27\xb4\xd7\x25\x81\xec\x64\x60\xe1\xf6\x3f\xbc\x60\x59\xeb\x9a\xd7\xbf\x21\xc3\xb2\x5b\x43\x99\xac\xfa\xc2\xf6\x9d\x7e\x45\x1a\x35\xb6\xf2\x67\xae\xd6\xfc\x46\xd2\x1a\xfe\xf1\x72\x81\x40\xb7\xa6\x69\x6e\xf8\x7d\xba\x6b\xc2\x3f\x64\xec\xf4\x77\x62\x5d\x72\x7a\xf0\x3f\x6d\xce\xf5\x64\x4c\x10\x8f\x6f\xef\xdd\xf4\x16\x03\xcb\x6d\x68\x02\xff\xdc\x71\xd0\xb9\x2f\x48\x91\x03\x89\x06\xca\x6d\x68\xf3\x06\xca\x6d\x68\x1c\x06\xc9\x6d\x68\x8f\xfe\xf6\x26\xac\x7a\x40\x8a\xea\xb6\xcc\x5f\xf9\xb9\x23\xdd\x14\x21\x81\xae\xb6\x40\xbc\x77\xd6\x9a\xab\x4a\x55\xde\x8c\x55\xce\x29\x08\x6f\x7b\x62\x7d\x61\xc1\x38\x2a\xe2\xb8\x85\xd1\xfb\xe2\xb8\x4d\x0d\x4f\x60\xb7\x0d\x0d\xb7\x9f\x49\x5a\x41\xc7\x9c\xe0\xb8\x0d\xa1\x68\xbe\xc5\x79\x70\x83\x9d\xf8\x41\xb8\x27\x4e\x25\xf8\xf0\x85\x09\x71\x1d\x8d\xf1\xf8\x59\x20\xd7\x94\x01\xe2\x5f\x0a\x4a\xe3\xfc\x4c\x41\x57\xfc\x5d\xb6\x5f\xad\xc9\x45\x75\x13\x9e\xb6\xed\x33\xa4\xc0\x75\xc4\x62\xa6\xac\xfb\x01\xb4\x53\x74\x6d\x05\xc4\x6d\x68\xa1\xfc\x14\x45\xdd\x1d\x98\xd2\x24\x17\x40\xb8\x6d\xca\x4d\x07\x71\x5e\x91\x7c\x7e\x18\xc9\xba\x17\x10\xc0\xb9\xed\xaf\x98\x03\x72\xca\x54\xd7\xf8\xf6\x28\xb9\xbb\xbc\xc3\xd2\xbf\x14\xac\xb6\xa1\xd5\xe7\xbb\x71\xfa\x80\xbb\x7f\xf8\x9c\x74\x2f\x2d\x3e\xb3\xc2\x18\xfa\xf8\x3d\x6a\xd7\x74\xf7\x61\xc9\x5c\x25\x85\x4e\xe8\x11\x18\x6e\x7b\xc5\xe8\xe2\x93\x5d\xe4\x2b\xec\x52\xe3\xf7\xa7\xfb\xca\xa7\x24\xe9\xd2\x22\x3c\x86\x97\xe5\xdf\xab\x9d\xf3\xe7\x3f\xcc\x9d\x13\xff\xe6\xb8\x18\x0b\xf7\x58\x1a\x35\x40\x74\x3b\x74\x63\x06\xd1\x6d\x97\xa6\xc4\x27\xd6\x3a\x1d\xe3\x1a\x2b\x9a\x5b\x91\x6b\x2c\xad\x1d\x40\xb4\x0d\xd5\x75\x10\xda\x8e\xae\xb5\xe9\x03\xce\x5b\xfe\x0b\x5c\x5b\xc5\xcb\x30\x00\x65\xab\x04\x64\x04\x98\x6c\x0d\x53\x58\xfc\xf0\x03\x6d\x08\xd3\xf1\xfb\x91\x30\x72\xcb\x29\xf1\xdb\x02\xe1\x40\x55\x0e\x80\xdb\x0a\xb7\x82\x01\x70\xdb\x28\x59\x91\x16\xcb\xe5\x4b\xd8\x57\xbf\x3a\x7d\xb1\xf8\x45\x11\xff\x60\xcf\x64\xdb\x92\xb3\xe5\x47\xae\xed\xe1\x3f\x1e\xce\x46\x91\x2d\x51\x16\x02\x97\x02\x80\xb7\xfd\x15\x2d\x22\x50\xa2\x2c\xc7\xef\x50\x94\x6a\xbe\x34\xbf\xa2\xe2\x43\x5b\x9c\x55\x0d\xbb\xe5\x57\xa0\x3f\xdb\x20\x36\x2d\x02\x24\xe3\x67\x80\x21\x3e\xc5\xf1\x33\x7f\xf9\x58\x14\x47\xa0\x2c\x3f\xe6\xaa\x64\x1b\xfe\x61\x82\x41\x67\x6e\x4b\x8e\x83\x38\xca\xf8\x29\x2c\xb6\x1f\x75\x19\xbd\x5e\x1a\xe5\xab\x28\x87\x3f\x56\x47\x41\x70\x30\x2a\x6f\xa3\x4a\xa7\xbc\x10\xa8\x98\xae\xe3\x47\xae\x56\x48\x76\x00\x00\xb7\xff\xb0\x2e\xf5\xc3\x45\xf3\x35\xb7\x03\x4d\x22\x17\x16\xa7\xcb\x10\xf7\x9f\xfb\x81\x18\x77\x5c\x2f\xe2\x27\x30\x06\xee\xbb\xf1\xc3\x9a\x55\x9c\x15\x13\xc8\xe0\x80\x1b\x09\x19\xd7\x9c\xa3\x96\x9d\xa4\x2f\x48\x86\xc5\x99\xd8\xf2\xdf\x28\xce\x7c\x67\x7d\x9c\x14\x7c\x40\xb8\xe4\x08\x20\xde\x46\xb1\x83\xdd\xef\xe9\x53\xc7\x6c\xec\x76\xe8\x76\x83\xc6\xf0\x13\xe9\xbf\x7c\x39\x30\x19\xd0\xbf\x61\x03\xcc\xc1\xc8\x1e\xd1\x8b\x91\xeb\xec\x3f\x34\x57\x98\xcf\xe1\xda\xda\x8f\x81\x99\xb0\x52\xed\xe6\x74\x03\x91\x34\x7e\x33\x37\x19\xa5\x31\xf4\x20\x34\xc7\x0f\x43\x0f\xe2\x7a\xfc\x26\x0a\xbd\xb5\x4e\x4f\x7f\xbe\x30\x1b\x85\x7e\x6c\x76\x58\xf0\xbe\x8a\x1f\xe2\x1b\xa2\x6a\xfc\xb8\x57\x8a\xe6\x1e\x41\x66\x43\x3c\x8d\x9f\xc0\xdf\x6e\x04\x44\x36\x28\x6a\xfc\xd2\xe4\xd3\xf9\x28\x38\x9a\x85\x7e\x6f\xa6\x39\xb8\x4b\x0f\x90\xe5\x06\x76\xd2\xf8\x11\xff\x58\x83\xd6\x42\x29\x72\x59\x18\xcc\x8c\x60\x0c\x9b\x6b\xb6\xdf\xf8\x2b\x47\x69\xfc\x84\x14\x0f\x6b\xce\x13\x41\xbf\x30\x05\x21\x9d\x84\x08\x74\x80\x3f\x07\x98\x73\x95\x00\xae\xf8\x69\x08\x6a\x6e\x29\x38\x65\x71\x0f\x63\x09\x42\xae\x8a\x9f\x5c\xb3\xb9\x53\x31\x05\x75\x0f\xe0\x92\x2e\x38\xe9\x86\x43\x3a\xf2\x13\x4d\xde\x91\xcb\x29\x9b\xdb\x8e\x28\x7a\xc0\xed\xe3\x77\x7a\x30\x5d\x3e\x4d\x41\xcd\x8d\x6a\x58\x46\xd0\xc6\xe6\x9b\x35\x47\x44\x54\x46\xff\xb9\x13\x4e\xc8\x42\xf5\x23\x96\xa9\x5a\x18\x27\x6a\x77\x70\x9a\x7f\x28\x0c\x42\xd3\x61\x45\xe2\xd6\x59\xf6\x92\x36\x7a\x14\xae\x8c\x6c\xf2\x2b\x12\x02\x35\x5a\x83\x21\xc2\xa4\xe3\x77\xb3\xc6\x9e\x4f\x9d\x40\x9a\x4d\x90\xec\x1c\xa7\xa7\xf8\x25\xd3\x74\xa8\x5a\x6d\x7e\xd2\x8d\x5b\xec\x19\xbf\xca\x3d\xcf\xea\xdd\xe2\x78\xd3\x91\x5b\x85\x64\x51\xdc\x60\x46\x3c\xa2\xe3\xf7\xa8\x05\xca\x15\x9e\x6c\xde\xcf\xd8\x63\xf6\xf7\x61\x47\x57\x3f\x62\x5d\x6d\xf0\x71\x5d\xe9\x2e\xf6\x99\xe2\x09\xe0\x5a\x08\x7b\x58\xfc\x32\xe6\x5e\x9a\x63\x2e\x35\x37\x2e\x11\x8d\x49\x10\x5e\x37\xb7\x05\x3c\xd2\x1e\x4a\xa2\x22\x16\x89\x4d\xe3\xf7\x4a\xbe\xe4\x29\xdc\x0b\x25\x1b\x30\xc5\xcb\x94\x56\x7c\xd0\x6e\xf7\xd4\x97\x63\xa5\xb7\x9f\x36\x53\x89\x1c\xf9\x5e\xb2\x75\xaf\x8f\x9a\x3b\xcf\x58\x47\xdc\xb4\xe3\x47\xac\xe3\x9a\x32\x41\x3c\x47\xa6\x4b\xfb\xb9\xb4\x83\x4d\x02\x5f\x5e\x53\x1e\xe8\xd5\x52\x73\x23\x7e\x6c\x2b\x37\x80\x78\x1e\x59\xfc\xb5\xc4\x2e\x7e\xe8\x51\xc2\xe9\x10\xf2\x6f\x91\x72\x35\x80\xf9\x3b\xc8\x62\x19\xa0\xfc\x15\xa7\x14\x90\xbf\x86\xfd\x3d\xc0\xf8\xab\x00\x49\x05\x10\x7f\x43\x5e\x7a\xfc\xc0\x98\x0c\x7f\xd7\xd8\x3c\xac\xf4\xb1\x7f\xfc\x73\xe4\xa9\xa1\xaa\x23\x07\xeb\x4b\xf8\xcf\xe4\x85\x0b\x22\xe6\xfa\x38\x58\xf3\xe6\xef\xca\x85\xc3\x12\xaf\x15\xf3\x95\x71\x92\x78\x54\xc7\x81\x19\x46\x6e\x78\x98\xb1\xb5\x59\xaf\x76\x98\xc6\x31\x3f\x8a\xbd\xf7\x99\x6c\xa7\x84\x36\xc5\x91\xac\xb5\x58\x9e\x65\x67\xef\x1f\x35\x97\x9d\xba\x2a\x9e\x8b\x4e\x56\x15\x34\xd8\xe7\x5c\xdc\xf6\x17\xed\x3b\x36\x73\xad\xd2\x9f\x23\x79\xab\x3d\xab\x39\x4c\x5f\x9c\x3f\x97\x6b\x33\xd4\x21\x2b\x3a\xbc\x04\x42\x04\x8d\x23\x41\x3c\x06\x7d\x96\x6d\xc2\x42\x0f\x13\xae\x16\x17\xac\x65\x2b\x7e\xc5\xc4\x72\x4e\x0e\x13\xaa\xe1\x65\x11\xe2\x0c\x92\xa5\x25\xc0\x19\xac\x18\x1b\x03\x98\xc1\x21\xa7\x38\x8c\xf8\xc7\x63\x38\x40\x19\x1c\xb2\xbe\x03\xe3\x8a\x1c\x15\xc0\xc1\x86\x41\x39\x00\x19\xdc\x73\xe7\x1f\x4c\xea\x56\xe0\x42\xf8\xc0\xf9\xb3\xb7\x66\x3c\xfd\xf7\x8f\xe4\xbd\xfa\x0f\x5e\x04\xd5\x3f\x74\xd1\xb0\x27\xc3\x29\xa1\x11\x0d\x21\x64\xaa\x8d\x63\x1a\x83\x42\x83\xd3\xae\xfb\xec\x96\x87\x45\x1e\x13\x6a\xc8\x79\x3d\x66\x4e\x15\xed\x6d\x1d\xb3\x4a\xde\xc1\x19\xac\xdd\x29\x9c\x9a\xa1\x18\x2b\xa1\x10\xe1\xb9\x08\xd8\xbc\x3b\x33\x64\xf3\x2e\x19\x4a\x69\x6e\x4c\x94\x52\x8f\x3a\xb0\x84\xfb\x23\x5a\x08\x37\x4d\xb5\xb8\x14\x61\xb2\xb0\xe8\xa5\x9e\x7b\x70\x09\x47\x1e\x2b\xf5\x52\x52\xdc\xc6\xa1\x63\x26\xfe\xde\x01\x48\xa1\x19\x76\xe3\x58\xee\x58\x98\xdf\x21\x4b\x75\x78\x0b\x02\xe8\x76\xc9\x9b\x16\xc7\x21\x2c\x48\x83\x34\x82\x52\x58\xbb\x07\x7c\x65\x83\x16\xc7\xba\x9c\x1f\x01\xfc\x10\x36\x21\x9d\x81\x11\x82\x5e\x38\x72\x17\x9f\xb9\x5f\x98\x86\xd3\x8e\xd0\x75\x7c\x3a\x72\x7b\x9e\x58\xb9\x97\x05\x38\x9d\xce\xc1\x99\xc3\xe3\x0f\x2e\x48\x72\xa8\x97\x5a\x0c\x8c\x02\xdc\xc2\x32\x25\x1a\x57\x4e\x2e\x9d\xe5\x56\x24\x87\x87\xc6\xf9\xaf\x26\xa6\xd3\x8e\x5f\xaa\x70\x50\xce\x83\x0b\x0f\x7c\xa6\x03\x9c\xc3\x91\xfd\xe6\xc2\x03\xff\x9f\x38\x70\xc2\x28\xd2\x3b\x01\xaa\x5a\xf3\x85\xf5\x46\x0c\x3a\x54\x44\x5b\xf3\xc5\x23\x6a\xb5\xc4\x51\x54\xcf\xdb\x4d\x9f\x82\x3e\xdd\x0c\x3b\xe8\xf7\x3f\xbe\xeb\x1f\x39\xfd\x0c\xef\xa6\x83\x08\x41\xa0\x24\x96\xf2\xaf\x27\x2a\x9f\xc8\x12\xc7\xc3\xa6\x47\x52\x03\x27\xb1\x84\x5d\x87\xed\xae\xa4\xf3\xfa\x62\x36\xf8\xeb\x21\xc2\xd5\xcf\xc3\xf4\xd8\x2d\x8b\xd8\x2d\x4b\x38\x6d\x7e\x23\xf3\x91\x3e\xc8\x6c\xe7\x9f\xbe\x7b\x71\xbc\xde\x8a\x53\x85\xe9\x6f\x9a\xeb\xf6\x7a\x27\xec\xf3\xdc\xed\xa0\x02\x1e\xdc\x7f\xe0\x2a\x1b\x87\x77\x1e\x1e\xa2\x57\x4e\xe3\x6c\x9b\xfd\xa6\xc9\x2a\x5e\xcd\xc2\x96\x90\x2c\xc8\x82\x4c\x3a\xe0\xb1\xcb\x14\xa6\x34\xf7\xb9\x3c\xb6\x4d\xcc\xc4\x9a\xd2\xe6\x74\xea\x70\xf4\x42\x98\xe3\xc5\x15\x40\x2f\x1e\x25\x9f\xa5\xd3\xf2\x93\x8f\x5d\xb3\xfc\x43\x73\x02\xec\x48\x20\xc6\xc5\x75\x53\x14\x98\x6f\xc7\xdf\x2a\xca\xcf\x79\x80\x1e\x17\x2e\x4a\xf0\x06\x0e\x20\x1a\x07\x3e\xbf\x51\x7e\x8a\x04\x93\xe7\xf5\xdf\xff\x3a\xfe\x36\x51\xb8\x33\xc1\x99\x37\x8a\x40\x5c\x68\xea\x51\xd0\x8a\x15\x40\x81\x77\x1c\xf8\xec\x46\x31\xa7\x0e\x1d\x2c\xa9\x13\xb3\x01\xc1\x7d\x1c\x84\xe6\x47\xc1\xc3\x93\x8b\xab\x28\x9b\x73\x0f\xfc\x3a\x02\xd4\xc7\x4a\x14\x55\x14\xf9\xf6\xf0\x59\x82\xdd\xfd\x48\x21\x05\x56\x0f\x1a\x64\xf9\xf7\x6c\x62\x29\x5b\x50\x82\x64\x33\x15\xe0\xd0\xc9\x0a\x1c\xa0\x44\x96\x6a\xb5\x25\xc9\x29\x83\x28\x1e\x79\x58\x20\x88\x91\xa5\xe0\xda\x1f\x05\x7e\xae\x2d\x01\xf8\x48\xf3\x74\x07\xf0\x91\xa3\x3a\x0a\x9c\x3c\x5a\xf1\x9b\xbd\x46\x58\x8c\x02\x90\xc8\xdd\x04\x53\xb0\xb9\xf9\xc0\x0f\x38\x44\x8c\xfc\x37\xcb\x64\x3d\xc0\xaf\x21\x44\x8c\xe4\xae\x26\x8a\x69\x79\xb2\x40\x50\x98\x91\xe2\xe4\x41\x76\x8c\x28\x35\xa7\xc3\x17\x77\x2a\x0c\xac\x34\x67\x9c\xa6\xcd\xa1\x4e\x48\x42\x14\x6f\x4c\x48\x59\x1d\xc5\x1b\x13\x95\x0f\x00\x23\x8f\x8e\xbb\x49\x88\x18\xc9\xf5\x6c\x94\x96\x2b\x40\x2b\x4d\x85\xa3\x59\x99\x64\x82\xe3\x54\x9a\x64\x82\x43\x5f\xd2\x43\x03\xed\xb8\x74\x79\x81\xb5\xe9\xba\xd9\x86\x9f\x31\x30\xb8\x26\xa8\x91\x03\x2f\xe4\x00\x35\x72\xe0\x4d\x1a\x02\x45\x46\x1b\x96\x66\xbb\xc1\xa0\xc0\x86\x1c\xf8\x80\x46\x49\x86\x8f\x54\x0d\x1e\xe4\x50\x48\x4d\x3c\xc8\x36\x7c\x69\xfc\x41\x4d\x43\xfb\x3b\x83\x4a\x4f\x0b\x77\xee\xb0\x4f\x4c\xe3\x50\x72\x47\xb6\x29\x98\x9a\xf1\x46\x89\x32\xc4\x86\xa3\x00\x72\x40\x75\x5f\x60\x69\xee\xce\xce\xd4\xa9\xd1\x91\x12\x2b\x99\x87\xcf\x0c\xe4\x2a\x5e\x25\x9d\x28\x50\x77\x13\x16\x92\x40\xa2\x00\x17\x72\xd4\xf2\x57\x86\x82\x48\xd0\xc8\x06\xe9\x2b\xe1\x80\x61\x7e\x89\x0e\x39\x3d\x55\x91\xa3\xf4\xb3\xe5\x3f\xf4\xd4\x70\xc8\xe6\xc6\x43\x08\x28\x6e\xb6\x60\xba\xdd\xda\xa1\x6a\x0b\x59\x2e\x7a\x58\x90\x58\x3c\xc0\x90\x1c\x15\xf1\x05\x0c\xc9\x5d\x95\x7f\x34\x95\x5e\x9a\x57\x22\x48\x52\xb1\xc2\x17\x3f\x43\x14\x6a\x96\xe7\xf0\xba\x57\xf1\xa4\xa8\xee\xee\xf3\x67\x01\x3e\x3a\xf5\x8c\x72\x4b\x9c\xfa\xb0\xf8\xc7\x9e\xe5\xc3\x2d\x78\xea\x1a\x3b\x2c\xee\x49\x81\x77\x17\x5c\x29\xaa\x84\x03\x9d\xb9\xba\xc0\x64\xa4\x53\x1c\x14\x9b\xb2\xe3\x6e\x10\x60\x53\x16\x65\x35\xb1\x29\x17\x2e\xb3\x01\x36\xe5\x51\x11\xd0\x4a\xca\x0d\x08\x11\x85\xec\x74\xc3\x15\x31\xdf\x41\x9b\x7e\x35\xad\xd7\xaf\x52\x2e\xe2\x99\xee\x42\xe9\xcb\x95\xeb\x41\xd7\x2f\x7b\xeb\x1f\x9e\x85\xe9\x0b\x29\x27\xc2\x6a\xb3\xbb\xbe\xe8\x72\xeb\x2e\xba\xb5\xf6\xd0\xc6\x9d\x47\x9c\x7a\x9f\x1c\x08\x3d\x79\xbc\x5c\xa7\xbf\xb8\x66\x56\xa7\x6a\xb3\xf8\xa6\xe4\x5d\xf0\xcc\x0c\x3b\x95\x8e\x99\x0e\x90\xd4\xab\xdd\x53\x0c\x53\xaf\x0e\x0f\x2f\x88\x92\x74\x0b\xae\x5e\x5d\x0d\x5c\x22\x34\x23\x14\xdc\x20\xaa\x27\xe6\x61\xc1\x5d\x80\x37\x17\x9c\x02\x58\xb2\x95\x6c\xc0\xbc\xdc\x73\x40\xd3\x2f\x64\xd5\x5d\xfc\xe6\x6e\xa3\xb3\xaf\x40\xbc\x7e\x24\x5c\x1d\x2b\xf6\x82\x59\xe1\xd1\x33\x82\x12\xa0\xf0\x28\x6f\xee\x10\x3a\xfb\x82\xcb\x68\xa7\x74\x74\x48\xc2\x94\x5c\x5f\xb6\x81\xa7\x83\x52\x38\x60\x9a\xa3\x3a\x99\x78\x75\x56\x77\x48\x32\x7d\x99\xc0\x27\xed\x93\x84\x7c\xce\x14\x8d\xe3\xd6\x59\x6d\x1b\x07\x88\x2a\x73\xc8\x48\x49\x77\xde\x97\x6b\xbc\xab\xaa\x99\x80\x88\x23\x5b\x01\x57\x21\x85\x60\x00\xac\x59\x49\x6b\x1b\xf5\x67\xa7\x2c\xd0\x98\x7f\x9f\xf5\x67\x58\x3c\xc3\x83\x39\x32\xf5\x67\x97\x2c\xeb\x56\x0b\x5f\xbc\x61\xe4\x59\xa6\x6d\x2f\x4c\x67\x40\x8e\x87\x00\x54\xf3\xe0\xc6\x37\xaa\xee\x0f\x44\xb6\x46\x35\x6d\x81\x74\x57\x24\xcd\x89\x03\x62\x54\x94\x6a\xa2\xc5\x42\xc0\x4c\xed\xe3\x55\xf6\xda\xc7\x5f\xa4\xaf\x1a\x40\x21\xad\xaf\x19\x08\x89\x32\x52\x35\x5f\x4b\xc7\x81\xd0\x1c\xa4\xf0\x88\x9a\xa6\x6c\x24\x13\xf0\x34\x47\x45\x13\x07\x4e\x73\xe0\x3c\x17\x55\x13\xb7\x62\x39\x68\x9a\x03\x1f\xc0\x00\x4d\x73\x54\xce\x59\x05\x0c\x05\xaf\xbf\xa8\x60\xa1\x14\x00\x16\xa3\x82\xdc\x2f\xef\x06\x71\x73\x80\x80\x1a\xb5\x2a\x7c\xa3\x80\xd4\xe4\xd7\x61\x7b\x6e\x32\xf6\x6b\x95\x79\x23\xb4\x55\xf3\xb6\xca\x5d\x84\xdb\xec\x9a\xd1\x81\xdb\x3c\x02\x77\xcf\x00\x6f\x73\xe0\xca\x16\x75\x33\xf2\x39\x9c\xe0\xa6\xf0\x0d\x51\xaa\x24\x29\x22\x5d\x72\xd4\x0c\xd8\xf0\x77\x10\x3d\x6d\xaf\xdb\x36\x53\x68\x3a\x3e\x6d\x74\x60\x75\x8a\x27\x12\xb5\x3b\x3b\x1c\xd4\xda\xed\x07\xbc\xb0\x76\xa9\x4d\xd6\x95\x7b\x9f\xee\x26\xdf\x5f\xfe\x13\xf4\xc4\x56\x70\x29\xf4\x8e\xa6\x6e\xd6\x1d\xe4\x54\x0a\xa0\x3e\x8f\x39\xed\xbb\x29\x58\x2b\x02\x68\xc5\xb2\xad\x9c\x04\x0c\xe7\xa8\x8e\x76\x1a\x7c\x48\x7b\x3a\x23\x80\x2c\x11\xc0\x6d\x1e\x52\x7c\xe0\x36\xc7\xbf\x8f\x72\xc7\xf8\xc7\x47\xdb\xd4\x14\xd9\x1c\x13\x1a\xb9\x06\x74\xc4\xc8\xc7\xac\x2b\x9c\x76\xea\x0a\x89\xab\x2b\xcd\x2d\xb0\xd4\x0e\x4c\xce\x51\x5d\x74\xb4\xed\x3c\x85\xb8\x1f\x74\x8d\x14\x60\x72\x0e\x39\x49\x5d\x0a\x8e\xae\xe6\xf2\x0c\x53\x13\x9e\x05\x64\xcc\x08\xa1\x36\xfb\xcf\x3d\xbd\x96\x9d\xf2\x2b\xdb\x60\xe0\x46\x32\xb6\xe5\x1f\x1e\x16\x58\x49\xd5\x81\xb1\x2d\x5f\x20\x2d\x9e\x69\xb9\x2e\x52\x4b\x45\xdb\xae\x1e\x28\xfc\x17\x71\x1d\x8b\xea\xfd\xae\x6c\xb3\x9e\xb9\xc7\x68\x83\xe8\x88\xea\x9a\x89\xdf\xa9\x49\x05\x00\xcf\x81\xdf\x5c\x80\xdf\x59\xf1\x83\x88\x6a\x72\x3f\x69\xbb\x58\x9e\x45\x32\x5a\x2f\x9d\x67\x69\xf0\x72\x95\xf9\x08\x4d\x9a\xdb\xef\xa8\x22\x80\xc8\x00\xea\xcd\x61\x96\x62\xa1\x18\x0f\x97\xec\x9e\x2c\x2c\x15\x99\x97\x3c\x69\x1f\xca\xf0\x70\x1b\xe3\x2e\x38\x3d\x5a\x37\x8b\x31\x7d\x96\x99\xda\xd9\x47\x27\x64\x29\xed\xa3\x14\xe2\x67\xc4\x30\xe4\x96\x34\x2e\xb1\xbb\x8b\x1f\xef\x19\x68\x03\xed\x17\x3f\x8d\xa8\x0f\x40\x9e\xc5\xe7\xc7\x02\xbe\xe0\x7c\xf2\x67\x76\x82\x00\x8d\x73\x54\x49\xec\x6b\x5f\x60\x65\x80\x6e\xee\xea\x18\xb0\x57\xba\xb2\x73\x80\x36\xeb\x90\x7a\xbd\xda\xed\xdc\xbc\x2f\x04\xd7\x41\xc2\xe3\x72\xae\x35\x4a\xbb\x38\x1f\x4e\x58\x98\x11\x2a\x7e\x7d\x55\x1a\x2a\xbb\xf3\x0c\x6d\x76\x17\x43\xee\x43\xc0\xa2\x7a\x77\xfd\xf2\x34\x32\x25\xe2\x6f\xf6\xfc\x8a\x96\x97\x5f\xdd\x7e\xc5\x3c\x7c\x2c\x33\x23\x6a\x19\xbc\x08\xe3\x6c\x72\xb5\x7c\xd6\x02\x1e\x3c\xeb\x48\xcb\xf4\x02\x97\x39\x14\x8e\x80\xc8\x9c\xe4\x61\x8f\xc6\xed\x2e\x0e\x31\xd1\x36\x8b\xab\xf8\x81\x46\x53\x8f\x85\x18\x37\xb8\x1d\xde\x04\xd1\x7e\x6a\x35\x9c\xa6\x96\xf7\xb9\x6c\x62\xe0\x35\x07\xae\x7f\xd1\x8e\x9c\xf1\xce\xcb\xf4\xc5\x7f\x3c\x99\xb0\xce\x56\x58\x31\x48\x20\x18\x9c\x03\xf7\xbb\x00\x51\xb3\x7a\x36\x40\xd4\x1c\xf8\x41\x04\x20\x9a\xc3\x3b\xcc\x66\xee\x1e\x65\x84\x56\xd3\xe9\x83\xe7\x7d\x34\xbc\xaf\x6a\x2a\x8a\x68\x5d\xe2\x63\x46\xb7\x74\x85\xe8\x2d\x9f\x49\xbc\x0c\x15\x68\x9a\x78\x25\x2f\x20\x5f\x0e\xef\x78\x9b\x26\x5e\x65\x87\x86\x13\xff\x70\x74\x44\xec\x93\xbe\x2f\x5a\x9a\x7e\xa1\x15\x00\x62\xee\x12\x4c\xe1\xd6\x0c\x2b\x61\x89\xd1\x60\x2f\x41\x6e\xac\xad\x9e\xf2\x15\x64\x19\x0c\xcc\xb2\xec\x55\xcf\x1d\x42\xc5\x5d\x60\x0e\xc6\xa4\xfe\xd7\x91\x1e\xc0\xb7\xdc\x6b\xcc\x57\x43\x22\xcd\x76\x69\xb8\xda\x83\xec\x13\xa0\x5d\x0e\xef\xd7\x00\xbb\xac\x87\x53\xe2\xad\xab\x82\x67\x1b\xae\xd9\x61\x09\x15\x07\x1a\x54\x1b\x54\x0c\x02\x06\x73\x78\x23\xde\x8c\xda\x57\xb8\x05\x07\x73\x68\x71\x68\x43\xc7\x70\x0b\x48\x9d\x2c\xf0\xf2\x8d\xbf\x7f\x3c\x33\x09\xba\xd3\xe1\xc5\x1e\x20\x62\x56\x35\x43\x30\x30\xf7\x1f\xb4\x30\xb3\xb7\x54\xc5\xa5\xed\xe1\x36\x9a\x72\x1a\x48\x71\xdb\x3c\x6f\xe0\xd7\xb1\xf5\x02\x87\xc4\x0a\x72\x83\xeb\xa5\x6d\x03\xc8\xa3\xbb\x4e\x33\xe7\xd3\x06\x5d\x34\x64\x9b\x04\xd4\xec\x08\x21\x0d\x13\xb3\xbe\x07\x8d\x2b\xdc\xe6\x76\xcb\x04\x3b\x9e\x2c\x82\xfe\x9a\x93\x0b\xd4\x46\x6e\xe2\x25\xc7\x84\xa1\xb4\xa5\x6d\xdc\xf9\x54\x25\x1c\x3e\xbb\xf9\xa0\xb9\x89\xad\xd9\xcb\x5f\x4e\xcc\x01\xd6\x66\x05\x5c\x20\x40\xd7\xac\xdd\x95\x5e\xe6\x78\x81\x20\x82\xae\x39\x9a\x8b\x4b\xe8\x9f\x77\x3a\x22\x65\x46\x87\xee\x8a\x8e\xd9\xd5\x23\x1b\x37\xa6\xfa\x80\x08\x6c\xd9\x09\xdc\x89\x66\x2e\x59\x8d\xc0\xed\xd2\x0b\x93\xaf\xb6\x62\x17\xc3\xbd\xb1\x55\xb9\xd2\x3d\x54\x97\x33\x4f\xad\x97\x22\x9f\xc4\x04\x55\xce\x4b\xc1\x76\xb9\x67\xac\x54\x33\x83\x2b\x6d\x2a\x9d\x5e\x6c\xc2\x61\xf0\xd5\xad\x63\x01\x32\x42\xbb\x1d\x13\xc3\xb8\x95\x17\x90\x36\xda\x8d\xf9\x11\x96\xdd\x08\xc1\x6f\xd6\x74\x7b\x6e\xe9\x14\x1e\x4b\xde\x5e\x37\x6c\xc0\x0d\x0a\x9f\x18\x9a\x8a\x91\x0d\x7b\xb0\xf7\xa8\x60\x68\x0e\xef\x16\x1b\x1e\xf3\x00\xf8\x44\x13\xd2\x8a\xfc\x53\x01\x84\xe6\xd0\x0e\xd6\x1e\xa7\xc0\xdf\x69\x0d\x09\x16\xc8\x4c\xfd\xcf\xa3\xbd\xb9\xe2\x4c\x87\x81\xf2\xdd\x7e\xbc\x12\x66\x9a\x7b\x0d\x58\xf6\x23\x29\x09\xdc\xbe\x7d\x39\x1d\x74\x44\x10\xa9\x0e\x2b\x6f\x5e\x98\x2a\xee\x83\x6e\x39\xbc\x9d\x03\xd0\xb2\x18\xd6\x14\x89\x62\xd9\x61\x8c\x89\x62\x39\x3d\x07\x5c\x78\x02\xee\x11\xed\x53\x48\x43\x5c\x04\xd1\x72\x78\xed\xd7\xf5\x4d\x0f\x9f\x91\xcb\xb0\x6f\xf5\x5f\xb6\xb1\x78\xf1\x0a\x0c\x16\xd3\x35\x8f\x2a\x98\xf5\x43\xda\xc5\x71\x01\xbb\xb2\x82\xe0\x1b\xc0\x55\x56\xb2\x26\x6e\x9a\x47\x47\xfc\x1d\x32\x4f\x6f\x01\xa5\x3c\xbc\xa6\xee\xaa\x60\x3d\x3f\x72\x01\x39\xe8\x40\x54\x1e\x93\x28\x93\x00\xa3\x72\x34\xe6\x07\x58\xca\x81\x3b\x64\x80\x4a\xb9\x4b\x50\xef\x56\xc7\xa6\x77\xa7\x80\x4f\x56\xef\x2e\x12\x7c\x52\xc1\xb3\x1b\xec\xa6\xd2\x06\xc6\xe4\x6e\xdd\xcf\x9c\x37\xda\x43\x17\x93\x31\x03\x38\xb9\x3b\x42\xe3\x55\xfd\x0f\xc6\xd7\x53\xcd\x62\x4b\xf7\x34\x8b\xb2\xec\x5d\xb3\xa8\xe5\x05\x9d\x54\x9a\xee\x70\x2f\x85\xb9\x5e\xdf\xcd\xd8\x9d\x43\xfd\x5e\x15\xad\xc1\x90\x1c\xde\x7c\xf5\xc6\x68\x9d\xac\xad\x40\xd5\x66\x6f\x9b\xda\x49\xb3\x40\x50\x80\x45\x6b\x86\xd1\x31\x58\x1c\xc4\x35\x63\x02\x1a\x39\xbc\xd4\x10\xff\x71\xda\xbd\xe4\x6f\xb0\xca\xde\x73\x5d\xa9\xa9\xbb\x2b\x61\x2b\xdd\xdb\x4d\xe5\xaa\xbe\x35\xa8\x20\x3d\x75\x74\x3c\x6b\xdb\x9f\x99\x48\xa3\xa7\x3e\xd5\xac\x1b\xa3\x8b\xeb\xd6\xed\xbd\x1d\x58\xd4\xec\xb3\xb2\x84\xdf\xbb\x35\x9c\x5d\x5d\x73\x67\xb7\x2f\xda\x15\x50\xa1\x3a\x91\x69\x39\x43\x43\x03\xa6\xa3\x1f\xc1\xbd\x2b\xab\x3e\xc8\xda\xe3\x0c\x01\xfd\xd8\xdd\x27\x9b\x27\x06\x89\xab\x03\xb4\xc7\xd1\x6c\x61\xe4\x0c\xf1\x87\x0c\x8b\x33\x08\x16\xe3\xee\x14\xb5\x26\x7e\x86\xd5\xea\x73\xa4\x51\xb0\x6b\x16\xd5\xc5\xa6\x63\x16\xd5\x1a\x2d\x62\x63\x68\xc5\xed\xdc\x96\x36\xd8\x4c\x4f\x56\xe6\xe2\x82\x2c\xa5\x8a\xd8\x0d\x33\x03\x3c\x2e\x7a\xc8\x0c\x9c\xd0\xb0\x5f\x16\x67\x42\x6d\x2f\xb2\x8f\xbe\x40\xcb\xb2\xda\xcb\x3f\x6c\xdc\x78\x40\xe4\x58\x90\x1d\xf7\x8c\x32\x71\x38\x90\x6b\x63\x07\xd9\x71\x78\x99\xd4\xb5\x94\x76\x67\x08\xc7\x5d\xef\x69\x3a\x9c\x50\xa3\x69\x37\x23\x3b\xfe\xf9\x01\xe4\x63\xd5\x73\xa4\xe3\x8d\xd4\xf2\x77\xce\x1d\xe4\xae\xab\xd6\xf5\xac\xc9\xe9\xf1\xab\xb4\xa0\x22\xe3\x8b\x05\x39\x09\xbb\x08\xf0\x1f\x87\x97\x65\xdd\x24\x35\xea\x3e\x1d\x35\xcf\xbb\x82\x7e\x4a\x03\x90\xc7\xfb\xe9\xfc\xf8\x11\x69\xa2\x24\x07\xb8\xf4\x76\xf7\x18\xae\x49\x44\x72\x45\xdf\x4a\x5e\x0d\xcf\xe0\x29\x45\x75\x3e\xc1\xb4\x8a\x6c\xfa\xc3\x4b\x9b\x02\xd7\x6f\xef\x24\x84\xda\xae\xa7\xaf\x02\x7f\x37\x8d\x8d\x3a\x54\x4f\x63\x2a\xaa\x35\x48\x92\xfb\x1f\x26\x5d\x16\x2c\x1d\xe4\x4a\xb6\x49\x76\x35\xa0\x2a\x26\x02\x19\xd9\x94\xc2\xba\x39\x6d\xd4\xa6\xba\x49\x62\x73\x53\x73\x7b\xda\xa4\xe7\xa6\xa8\xe9\x2e\xe6\xed\xf5\xee\xf2\x2b\x84\x6a\x78\x46\x4f\xc7\x5f\x77\xf5\x0d\xe1\x75\xd1\x64\xa3\x9e\x59\x7c\x7d\xbd\xd5\xe8\x69\x28\x45\x48\x00\xd0\x71\x34\x89\x1d\xfe\x48\x5e\x5e\xf4\xc7\xc5\xb4\xa6\xb4\x8e\xa2\xaf\x08\xee\x28\xc6\x79\x80\xd3\x58\x0f\xf7\xe1\x6b\x1b\x0c\x56\x8f\xa4\x24\x18\xa9\x14\x4a\x84\x51\x0a\x15\x8f\xfa\xcb\x5c\x75\x3f\xd2\x38\xe2\x0a\xe6\x0d\xa7\xcc\x44\xec\x0e\x1d\x50\xfb\x97\x15\x33\x12\x38\xac\x5e\x2e\xe0\x37\x0e\xef\x32\x80\x6f\x1c\xcd\x03\x41\x2e\xb8\x90\xcb\x98\xf1\x75\x2b\xf3\x7f\x11\x3f\x6e\x3f\xbd\x57\xe8\x5f\x32\x94\xdd\x8c\x08\x90\x62\xc9\x06\xa8\x8f\xc3\xbb\xf1\x01\x57\xc6\x7f\x3e\x80\x79\x2c\xa4\x86\x0a\xc0\x1c\x87\xb7\x25\x60\x39\x0e\x2f\x3e\x06\xb1\x60\x93\x30\xc9\xbd\xf5\xac\x75\xf0\xa2\x80\xc5\x49\x07\xbf\x71\x78\xbf\x32\x8e\xf1\xdf\xff\xba\x06\x95\xb1\xd5\xbe\xee\x75\x94\xb0\x8e\x93\x40\xbf\x18\xa9\x02\xb2\x24\xe3\x70\x22\xac\x56\x02\xb2\x7c\x51\xec\x63\xdd\x47\xc9\xd6\xa9\x18\x4d\xd1\x7b\x85\x51\x32\x17\x27\x9d\xd7\xf3\xc8\x7b\x09\xd0\x1b\x77\x1f\x2d\xe2\x6e\xa4\xe2\x42\x62\x6c\x88\x32\x40\x8e\xc3\x7b\x85\x91\x5c\x75\xf9\x92\x1d\xa6\x91\xd4\x1c\x99\xeb\x61\x22\x76\x55\xc7\x04\x6c\x04\xac\x2c\x46\xda\x2c\x5d\x05\x1c\x71\xbd\x98\x18\x2d\x43\xb5\xa9\x0c\x8f\xa2\x01\xdc\x52\x0c\x33\xcb\x00\xfc\x19\x23\x19\x70\xf7\x1f\x76\x3a\x64\x47\xf4\x45\xf2\x52\xc6\x20\xec\x5b\x8b\x05\x40\x8c\x7b\x88\x7c\xd4\x25\x9f\xce\x24\x81\x2a\xea\x8b\x40\x34\x36\x1d\xc8\x86\x89\x57\xbb\x03\xc6\x02\x39\x89\xb8\x8c\x81\xd5\x71\x64\x55\x58\x07\x55\xad\xc1\x6b\xac\xcb\x39\x25\x67\x7a\x5e\x2b\x0f\xd8\xe4\x74\xab\x70\xf5\xa8\x7b\xca\x20\x2e\x6b\x12\xb1\x18\x63\x68\xa1\x85\x4a\x0e\xd5\x4d\x75\x28\x40\x1d\x87\xd6\x93\x61\xaa\x74\xb5\xca\x81\x13\x12\xb1\x85\x31\xc4\x4b\xd6\xce\x21\xa8\x63\xd7\x9e\x01\x90\xe3\xd0\x1a\x3f\xa6\x2e\x75\x2e\x29\x61\xdb\x45\xad\x7d\xcc\xdc\x11\x54\x36\xf5\x9d\xb5\xb8\x9a\xba\xcd\xc3\x5b\xc9\x70\x17\x43\x68\x2a\xdd\xa1\x41\x57\xdc\xc5\xa9\x38\xa0\x11\xd2\x85\x11\x6e\x09\xc7\xc5\x75\x61\xcd\xaf\xa4\xe6\x76\x2c\x63\x51\x10\x12\x80\x5b\x1c\x2d\x9f\x01\x1c\x81\xb8\x8e\x95\x1d\xa6\x8f\x69\xc5\x44\x9b\x1c\xc4\x5d\x17\x75\x64\x00\x12\x4b\x51\x7f\x1d\xa7\x75\xf1\xd5\x29\x90\x8d\xbf\x5b\x17\x7c\x62\x70\xad\xa7\x41\x73\x68\x48\x54\xc5\x01\x2c\x71\x68\x82\x03\x2b\x71\x34\xcf\xe2\xe5\x29\x73\x52\x2e\xf7\x93\x03\x21\x9e\x44\x5b\x35\xc0\x89\xbb\x2a\x8b\x78\x4e\xec\x95\xae\xb1\x2a\x99\xc2\x28\x16\x55\x9e\x71\x7b\xb7\x06\x4b\x1e\x77\x36\xe3\x4b\x36\x43\x19\xdc\x66\x55\x26\x87\x9e\x3c\x5b\xdf\xfa\x83\x12\x0e\xb5\x3a\xc4\xa4\x71\x9b\x19\x83\x31\xcb\xa8\xa4\x26\xb7\xa1\xd6\xd6\x9c\xa1\xa8\x3c\x13\xe2\x07\x23\x1e\x4f\xf6\x8b\x1e\xeb\x50\xab\x6e\x0a\xc8\xe2\xd0\x46\x3a\xf4\xa7\xed\xee\x4f\xa3\x9f\xc9\x95\x12\xa2\x2c\x2a\x2a\x0e\x39\x98\x4a\x1e\x88\x8b\x43\xf3\x1e\x88\x8b\xfb\x0f\xa6\x92\xbb\x3e\xcd\x56\x40\x2e\x0e\x6d\x94\x09\xb9\xa8\x36\x2b\xcc\x62\x90\xbd\x23\x12\x67\xd1\x83\x62\xce\x72\xd5\xd9\x91\xec\xcc\x25\x7a\x5d\x22\x69\x0c\x61\x2b\x1a\x5f\xc1\x53\x1c\xda\x55\xc7\x66\x67\x55\x33\x92\xd0\x8a\x0a\xcc\xe3\xb5\x23\xac\xce\xe7\xc5\x0d\xc3\x83\x7d\x75\x97\x3d\x83\x56\x1c\x37\x16\xcb\xee\x9e\xc3\x62\x39\x8f\x7c\xf1\x2c\xd8\x73\x6e\xeb\x94\x27\x00\x50\x1c\x1a\xc0\x26\xf7\x73\xde\xce\x4c\x2c\x99\x5e\x9c\x4e\x13\xaf\xa9\x95\x4d\xd1\xad\x0c\x2e\x00\x59\x71\x68\x4e\x9c\xc2\x15\x93\x51\x20\x40\x56\x1c\x1a\xf8\x40\x56\x1c\x1a\x42\x40\x56\x1c\x1a\xb6\x12\x58\x51\x25\x70\x62\xe4\x74\x0a\x44\x56\x34\xaa\x3d\xa6\xde\x3a\x6a\xb6\xd3\x98\x68\xe2\x5a\x63\x92\x9c\xad\x73\x8e\xc0\x5f\x1c\xfd\xe7\xef\x12\xba\xe5\x1f\xba\x19\x74\xff\x61\x0e\x87\xcf\x32\x25\xc7\x01\xeb\xd3\xae\x01\x14\x63\x9d\xf9\x91\xe2\x92\x63\x3a\x94\x72\xe0\x4a\x33\xd9\x20\x47\x3a\xc1\x18\x01\x4d\x89\x59\x72\x93\x30\xa5\xa5\x53\x31\x43\x2c\x12\x14\x87\x85\xf7\x8e\xb6\x1e\xc0\x18\x77\x71\xeb\xca\xf1\xf2\x82\x31\x35\xaf\x4f\x67\xf5\x1c\x20\xc1\x00\xd3\x38\x34\xa7\x4d\xe2\x9a\xb5\x8d\x25\x2e\x23\x89\xf8\x03\x5c\xc6\x23\xef\xac\x26\x11\x2c\xbd\x58\x55\x8e\x8b\x41\xc2\x1f\x35\xba\x4d\xf9\xa3\x37\x4d\xd3\x40\x15\x15\xda\xa9\x39\x56\x35\x7d\xa2\x87\xea\xb9\x38\x9b\xb1\x0f\x7e\xc4\xa6\x76\xad\x34\xba\x6a\x16\x98\xa4\x4e\xd1\x06\x35\x7b\x0e\x8a\x49\xc5\x97\x56\x13\xc1\x24\x38\x59\xf7\xcb\xd9\x19\x13\x36\x97\x84\x6a\xd4\xc8\x3b\xf1\xc5\xd1\x34\x32\x53\x57\x1c\x7e\xc5\x30\xe0\x09\x93\xc4\x69\x9d\x43\x27\x52\x63\xd1\x54\x01\x3c\xe3\xe8\xd5\x8f\xf0\x49\x74\xbb\xe3\x59\xa3\xf5\x06\xe0\xc5\xd1\x21\x4a\x13\x33\x69\xaf\x7f\xca\x80\x73\xb8\x6c\xd6\x9c\x71\x2f\xee\x14\x61\x45\x54\x7b\x27\xfe\xb7\xda\x95\xe6\xc4\x8c\xe1\xa6\x23\xc4\xb3\x7b\xc2\xa6\x06\x1f\xa4\xe9\x04\x6b\x54\x71\x05\x93\xb1\x56\xf7\x09\x46\x50\x23\x62\x66\x28\x3e\x78\x14\x22\xb7\x99\x5f\xc1\x1c\x87\x87\x0f\xf7\x99\xd0\x98\x33\xc3\x0b\x8d\x61\x99\x07\xc0\x17\xfa\x6b\x58\x8a\x02\xe9\x5c\x92\x3f\x9b\x51\x2d\x24\x9b\x6a\x4c\x2d\xa4\xca\xb3\x73\xe5\x61\xa2\x97\xe9\x14\xeb\x09\xc2\xd8\xa9\x7a\x3d\x45\x19\x1e\x9e\x7e\xee\xec\xb4\x4c\xcc\x53\x33\x2c\x02\xa6\x78\x8d\x31\x1c\x0c\x8c\x53\x25\x1a\x24\xc6\xfd\x95\x45\xa8\xd7\xd6\x05\x5f\xd4\x2b\x13\xf0\xc5\xa1\xde\x0c\xf8\xe2\xd1\x15\x9b\x27\x01\x22\xcb\xfd\x8f\xb5\x53\xe5\x73\x72\x67\xd7\xb3\xf0\x6b\xdb\x96\xd6\xa1\x02\x81\x76\xe2\xff\x9a\x7b\x53\xae\x39\x3c\xd5\x30\x4a\xb5\xf9\x09\xfb\x53\xc1\x05\x94\x71\xa8\x42\x4f\xc3\x4b\x5a\x96\xf6\x84\x4e\xff\x91\x39\xa1\x65\xce\xdb\xc1\xd2\xab\xdb\x9e\x48\x20\x1e\x1b\xe7\x23\x5c\x60\x54\xa8\x12\xb9\x51\x63\xc0\xc4\xb3\xb5\x1f\x9e\xd6\x47\xfe\xef\xc4\x99\x6b\x4c\xf9\x70\x26\xd7\xb3\xc3\x2a\x6e\xc3\x3d\xc8\xa5\x9d\xfe\x88\xd3\xec\x1e\xaa\xd1\x53\xb6\xe7\x8d\xe5\xd4\x95\x45\xeb\x49\xa2\x31\x0e\xcf\xb5\x81\x98\x6a\x16\x40\x33\x4e\xdd\x77\x41\x66\xdc\x7f\xf8\xc2\xc2\x21\x66\x4f\x93\x78\x6b\x5b\x98\xdc\xdb\x75\x44\x6e\xd1\x18\x8b\x36\x84\x49\xf8\x48\x97\x4f\x27\x1c\x63\xcb\xf2\x89\xe6\xc9\xb3\x33\x99\xe5\x2f\x62\x79\xe9\x16\xda\x99\x7a\xf1\x14\x28\x4b\x7b\x44\x70\x73\xd7\x15\xba\xc3\x88\x4d\xfd\xfa\x40\x70\x1c\x5a\x0e\x05\x70\xec\xe4\x09\x89\xf8\x71\x5d\xcb\x01\x02\xcc\x71\xd7\x65\xf1\xd3\x13\xe8\x3f\x39\x11\x8b\x17\xb6\x57\xb7\x2e\xba\xc2\xc1\x8e\x9f\xf3\x40\xe9\x54\xef\x98\xad\x90\xad\x71\xfc\x42\x58\x61\x2d\x34\x71\xe4\x32\x50\xad\x91\x99\x4a\x7b\x40\x3c\x0e\xd5\xcc\xc0\x07\x46\x95\x37\x0e\x4d\x34\x90\xb8\x38\xb2\xbf\xf4\xe4\xc8\xd9\xb2\x2e\x09\xce\xb4\xc9\xdb\x8a\xe9\xa4\xd9\x41\x34\x50\xc4\xe6\x7f\x33\x8e\x3f\x8d\x81\xe0\x47\x0e\xd5\x45\xf0\x23\x87\xba\x2a\xf0\x91\xc3\x0b\x7f\x50\x22\x87\xe6\x98\x10\xea\x5f\x07\xdb\x28\xd2\x74\x74\xe3\x28\x9e\x02\xe8\x72\x98\x3f\x5c\x7b\x45\x54\xdb\x60\x62\xaa\x14\x16\xd6\x14\x42\x75\x69\x5f\x89\xea\x64\x30\x4a\xbc\x5d\xd4\x48\x23\xbd\x53\x51\x03\x43\xc6\xe8\x24\xa9\x45\x92\xf2\x3d\x22\x95\x45\xda\x68\x6e\x55\x97\xa5\x31\x28\xbb\xa8\x0b\xab\xd6\x12\xe0\x27\x87\x3a\x68\x88\x64\x3c\xd1\x02\x83\x8c\xa4\x1a\xbf\x43\xff\x96\x01\xab\x88\x96\x73\xcf\xa4\x00\x45\x69\x10\x46\x90\x5a\x5c\x2d\x21\xd4\x3a\x27\xba\x53\xf4\xec\x89\x2f\xf6\x84\xaa\x70\x7d\x51\x97\x8f\x9e\x8d\x33\xf2\xee\x16\xb6\x2e\x54\x4d\x2d\xe1\x91\x8c\x15\x56\x17\x32\x56\xbb\xdb\x9d\x1f\x74\xaa\x40\x07\x2d\xd9\x9e\xd4\xc3\x19\x15\xec\x32\x1b\x64\x6b\x3b\x0c\x6e\x42\x3b\xf9\x62\x22\xbc\x09\xd5\x28\x11\xf0\x62\x59\x5e\x0c\xbb\x4e\xb5\xc3\x80\x3d\x6a\x1d\xb9\xb3\x99\xd0\x44\xf1\xb2\x80\xbc\xac\xfa\x95\x8b\xe6\xb3\xd3\x83\x6a\x9a\x80\x98\xe4\x1f\x8e\x98\xc6\xa3\xd3\xc6\x74\xde\xdc\x72\x04\xa3\xaa\xea\x04\x6e\x3a\xaa\x5a\x41\x4c\xcc\xb2\x23\x5a\x80\xb5\xeb\x84\xbe\xb0\x9a\x89\x82\x40\x53\xf5\x31\x40\x34\x47\xb7\x6d\x6c\xbe\x9a\xae\x23\x72\xdc\x7c\x14\xec\x56\xa7\x53\xc6\x8d\xf4\x1d\xe6\x0f\xfb\xf9\x0d\xb6\x27\xe7\x03\xe7\x56\x65\xec\x58\x7e\x4f\x97\x50\x50\x43\xc2\xb4\x38\x41\x28\x3f\xa2\x63\xf6\x24\x20\x8b\x85\x44\xac\x06\x10\x73\x80\xde\x15\x21\xe2\xbf\xd6\x9a\x48\x5e\x0c\xb3\x09\x79\xf1\xf2\x99\x2d\x8c\xc4\x9b\x10\x98\x9a\x84\x80\xbd\xdc\x6d\xf8\x62\x36\x2b\x3a\x45\x4a\x04\x95\x22\x90\x2e\x87\x92\x3b\x40\x97\x43\x71\x39\x70\x34\x25\xdb\x5c\x80\x6c\x39\xd4\x39\x03\x33\xe9\x21\x4d\xba\xa4\x49\xee\x21\xad\xa1\x24\x8b\x0e\x10\x2c\x87\x52\x7f\xdc\xd9\x71\x3a\x08\xb0\xd6\xe1\x7e\xba\x0b\xb7\x71\x74\x03\x8d\x55\xb7\x8a\x10\xc2\xc3\x50\x44\x30\x2b\xf7\x20\xe8\xf8\x2d\xa9\xb1\x27\xc2\x70\xe4\xf0\x6e\x7c\xa8\xe1\xab\xa1\x2e\x3a\xda\x9f\x1e\x7f\xc0\x58\x1e\x9d\xcc\x3e\x21\x8c\x65\x90\xa9\x38\x40\xaa\x1c\x8a\xf1\x20\x55\xd6\x70\x1b\x3e\x72\x8a\xe2\x0b\x57\x8b\x1e\x46\xac\xab\x4a\xde\xf1\x48\x84\xdd\x3d\x64\x01\x55\x70\x8f\x57\x55\xde\x5d\xfc\xe2\x92\x64\x73\xa9\x74\xba\x29\xdf\xa0\x2a\xf6\x49\xfa\x88\xba\xf9\x60\xb8\x4a\x96\x42\x53\xaa\xa0\x83\x4c\x39\xbc\x00\x8a\xcd\x7b\x53\xe2\x8b\x2f\x6b\x65\x9b\x7c\x44\xa8\xd8\x71\xd4\x51\xe5\xf9\xe0\x82\xd2\x8b\x67\xf0\x2a\xcb\x70\x71\x01\xed\x97\x23\x03\x4a\xb9\xa7\x66\xf1\x62\x2f\x3a\xcf\xb4\x0c\x4f\x5b\xc9\x77\x91\xe1\x41\xab\xac\x72\x8b\x85\x0a\xa9\x78\x08\x72\xe5\xd0\x16\xbf\x7e\xea\x1b\x9c\x63\x91\x2b\xed\x2a\x60\x95\x75\x4c\x7f\xaf\x14\xf0\xd9\x0b\x5f\x5a\x3b\x98\x6f\x24\x1c\xd0\x29\x87\x63\x4e\x3c\x4a\xcd\x3b\xe0\x51\x0e\xc5\x57\xe0\x28\x8f\x35\xd9\xf5\x0b\x6b\x67\x3f\x1c\x9d\x41\x1a\xfa\x97\x02\x2f\xb9\xff\x61\xa8\x55\x0a\xc4\x91\x5d\x5e\x36\x92\xeb\x2b\xc0\x97\xdc\xb5\x31\x10\x98\x96\x92\xdf\xaa\x0a\xc3\xdd\x3f\x58\x49\x76\xfb\x42\xcf\x9b\x6e\xe4\x44\xa4\xd4\x5f\x13\x48\xca\xa1\x70\xba\xd4\xf3\x48\xe5\x14\x80\x4d\x1e\xd3\xed\x09\xda\xe4\x50\xd0\x15\x6d\x32\x48\xe7\x1c\xab\x39\x43\x4c\x3b\xec\x6c\x64\x81\xee\x47\xfe\xa1\x71\xcb\xd1\x1b\x84\x61\x4a\x82\x85\x06\x38\x5c\xb5\xcd\xc2\xfe\xbf\x3d\x89\x8f\x23\xf4\xbe\x51\xb3\x17\x70\x91\x87\x46\xb3\x65\xb6\x4b\xcd\x4e\x2b\x99\x50\x7e\x25\xfd\x85\x2e\x2d\x21\x97\x67\x7e\xc6\x72\x41\x5a\x96\x3e\x38\xce\x16\x3a\x20\xd8\x5e\xb1\x52\x07\x84\x2e\x01\x1f\xb9\xfb\x4b\x09\x33\x69\xbb\xf3\xd7\x70\xbc\x4c\xca\x70\x15\x58\x1e\x34\x42\xa5\x90\x84\x8f\x9c\x76\x84\x9b\x44\x05\x97\x35\x3c\xa6\xcb\x6a\x3f\xfe\xa0\xeb\xd3\x63\x6a\xe3\x44\x61\x78\xa7\xbd\x66\xb6\x4d\x1b\x68\x86\x0a\x1e\x6b\x2a\xc3\xa0\x4e\x81\x44\x39\xc0\x56\x09\xc0\x27\x4b\xd1\x4c\x05\xfa\xe4\x5e\x5c\xba\x35\x73\x4a\x18\x87\xae\x33\x1a\x9a\x80\xa2\x1c\x4a\x1b\x20\x51\x16\x12\x23\x07\x48\x94\x87\x28\x9f\x01\x14\x65\x5d\x9e\x42\xa2\x36\xa5\x43\x0b\xfc\x8c\x2d\x1b\xfd\x41\xfb\x96\x69\x12\x5c\x77\xae\x28\xc1\x8c\x88\x95\x0a\x68\x36\xe9\x3c\xfa\x8c\x32\xea\x29\x89\xec\x2f\xd3\xc5\x0d\xa5\x14\x64\x99\x4e\x88\xf4\xcb\x01\x2c\xe5\x90\xfd\x2f\xb3\x72\x4b\x38\x97\xaa\xa8\x52\xc2\xca\x58\x0e\x9f\xe9\x94\x9b\x7c\xd1\x29\x14\xd9\xb5\xc4\x53\xa6\xb3\x5e\x44\x0e\xc9\x80\x17\x91\xda\x91\x40\xa8\x1c\x0a\x12\xeb\xcc\x03\x4a\x77\x4f\xb6\x06\xac\x09\xb4\xca\xba\x1c\x2b\x31\x9c\xb2\xd4\x95\xd7\x8d\x3e\x73\x26\xe0\x58\x40\x52\x0e\x43\xbd\x41\xa4\xdc\x4d\xd3\x02\x09\x84\xbc\x4d\x00\x92\xf2\x50\x87\x5d\x5e\x31\x6a\x63\x5b\x57\x76\x83\x19\xf4\xbe\x51\x23\xdb\xba\x24\x14\x48\x98\x8b\x6b\x45\x59\xcf\xba\x72\x63\x58\x19\xfb\x15\xdd\x0f\x58\xc8\x43\x55\x48\x58\xc8\x7e\xb8\x5f\x8d\x97\x0c\x37\x59\x6a\x95\xce\xe7\x33\x6d\x91\xba\x1e\x85\x47\xb7\x32\x8e\x34\x49\xa6\x4c\x06\xe9\x01\x31\x9d\x8f\xce\x61\x09\xe6\xe8\xfc\x10\xed\x98\xd4\xc4\xe4\xd4\x1a\x1b\x05\x70\x0c\x92\xad\xc6\x32\xc0\x41\x83\x26\x40\x8d\xbb\x2e\x7a\xfc\xc9\x5e\x51\x2c\x96\x1c\xcb\xa1\x70\xe7\x37\xf5\x5e\x05\xce\x71\x90\x7e\x3d\xd6\x97\xad\xf8\xc7\x63\x71\xa6\xe8\xcb\x2d\xb0\xa7\x45\x6c\x47\xf0\x2a\xe3\x84\x51\x55\x8d\x87\x00\x3d\x56\xad\x77\xe0\x3c\x0e\x29\x08\xc8\x8e\xbb\x5b\x7e\x64\x42\x58\xff\x60\x0b\x84\x35\xb1\x05\xd8\x64\x40\x36\x56\x72\x1f\xc5\xa9\x0f\xe7\x61\x01\x62\x11\xdd\xec\x62\x39\x86\x1e\xa0\xe7\x81\xeb\x39\x8c\xe7\x44\x0b\x74\x39\x4f\x61\xfe\xf5\x46\x12\xe4\xb1\x93\xbe\x2e\x4e\xb4\x40\x4f\x1d\x80\x8f\x45\xb7\xc8\xf3\x10\x18\xd8\xe6\x60\x14\xc3\xc2\x6c\x0c\x76\xcf\xa9\xd2\xa7\x79\x19\xbc\xc7\x24\x6a\xa7\xcc\x50\xeb\xed\x59\xb2\x83\x54\x5b\x94\x7c\x38\x9b\xe7\x3f\x03\x28\xcf\xee\xde\xc3\xf2\xf0\xcf\x61\x09\x37\x2f\xec\xef\x2c\xa4\x0d\x41\x54\x06\x21\xb2\x0c\xf8\x44\x82\x42\x6a\x3e\x05\xea\xf1\x30\xe3\xc2\x49\x02\x82\x68\xfe\x6e\xde\x67\x0a\x9b\x8c\x20\x6b\x92\x8f\xe6\x1f\x2a\xee\x74\xa3\x7a\x34\xe9\x46\xe5\x32\x62\x59\x29\x81\x9a\x9c\xad\xd3\x0b\xc4\x5e\xfe\x24\x7c\xa7\x19\xee\xc8\x30\x19\xe2\x40\x16\x0d\xc9\xa7\x2c\x76\xf8\x47\xf5\x0f\x3a\x93\xac\x14\xb1\x1a\xf0\xc7\x91\x7b\xcf\x90\x88\x23\x8b\xb3\x77\xd1\xb4\xc0\x7e\xdc\x47\x92\x01\x37\xf7\x2e\x72\xb2\x80\x8f\x1d\xec\xb9\x00\xe5\x51\x44\xf2\x38\x51\x13\xa3\xfb\x3b\xb4\x85\xcd\x7e\xf6\xec\x09\xdd\x22\x7b\x81\x7c\x06\x58\xc8\xea\xd5\xc8\xa9\x2b\xac\xf6\xc8\xd3\x54\x06\x06\x67\x9c\xa9\x32\xa2\xa6\x9c\xdd\x1d\xe4\x57\xb7\x45\x6c\xe4\x71\x20\x56\xa6\x73\x19\xcf\x04\x43\x1a\x87\x7f\x92\x77\x6f\x1e\xf6\x04\x6d\x30\x77\xd3\xc8\xd4\x80\x3c\x4b\xdb\x8b\x2f\xe9\x6d\xc5\x73\xf6\xca\x12\xde\x63\x5b\x13\xf6\xe8\xf0\x77\x8e\x1d\x54\xf8\x94\x57\x7b\x56\xe0\xd5\xc6\x4e\x82\x27\x79\xc8\x56\xce\x89\xdb\x85\xbd\x10\xc9\x0a\x92\x78\xc2\xa9\x65\xbb\x67\x5e\x71\x3a\x37\x13\x97\x26\x77\xf1\xb4\x31\x3f\x7a\xed\x1d\x83\x9e\x1e\x72\xb7\xab\x7a\xa1\x06\x6c\x70\x23\x47\xee\x9d\x70\x61\x9c\x27\xdc\x5a\x73\x87\x10\xc9\x91\x7b\x5a\xd8\x48\x7d\x33\x4f\x01\x2f\xec\x21\xd9\x88\x40\x67\x8f\x44\x8d\xd4\xca\x7d\x46\x3a\x57\xf1\xfc\xe0\xcf\x6b\xd3\x9e\x2d\x27\x33\xf9\xac\x87\x0b\x4f\x20\xef\x9f\x45\x96\x2c\x9a\xc2\x84\x96\x4c\x22\x06\xcf\x05\xe6\x2b\x40\x93\xdc\x9d\xb2\x2a\x79\x84\xab\x47\xf6\xa2\x70\xfe\x0d\x04\xd1\x14\x7c\x12\x08\x32\xec\xae\xf6\xe2\xee\xb3\xbd\x72\x3b\xc3\x8d\x93\x1e\xca\x8c\xdd\x76\x5c\xb9\x0e\x57\x98\x84\x45\x60\xd1\xc4\x79\x7a\xc8\xfd\x9e\xd3\xe3\x19\x39\x6d\xd9\xf9\x47\x8d\xad\xe1\x50\x4f\xc3\xc5\x19\x05\x21\x96\x0a\x0e\x62\x54\x46\xce\xc1\x99\x7d\xa2\x83\x40\x66\x2c\xf7\x2c\x0e\xb7\x86\xa0\x80\x58\xb9\x3f\xf2\x25\x27\x84\xd6\x93\x33\xa3\x8c\x01\x59\x59\xb5\xa7\x9d\x62\x66\x68\x53\x3e\x61\xd3\x8a\x9e\x20\x56\x86\x62\x37\x80\x95\xf5\xe7\x41\x22\xd5\xc2\x40\x17\x01\xbc\x72\x17\xa6\x23\xd8\xa0\x49\x28\x19\x20\x56\xee\x3f\xfc\x0a\xd2\xdf\xfd\x23\xfc\x83\x4e\xdd\x49\x50\x98\x4f\x8d\xd0\xda\xb0\xc1\xac\x2c\xe3\x4f\x58\x8e\x10\xd0\x52\x03\x37\x78\x96\x63\x84\x9d\x21\x22\xd5\x4d\xf6\xa4\xca\x41\x9b\x28\xd2\x4b\x77\x0f\x30\x2b\xeb\x72\x2c\x5b\xc6\x68\x7a\xa2\x9e\x4f\xce\x16\x93\xad\x54\x11\x96\x86\xd6\x48\x9d\xd1\x94\x7f\x2e\x02\x01\x2a\x8b\x4c\xe1\x71\x72\x8b\x6b\xf8\x3f\x60\x96\x69\xa4\x07\xcc\x72\xe4\x3a\x13\xb0\x69\xca\xa1\x13\xec\x0c\xd3\xbd\x9d\xa4\xad\x4e\xc6\xf3\x72\x35\x23\x8b\x56\x52\x91\x45\x10\x8b\x32\x64\xe9\xa4\x5f\x58\xa6\xbd\x03\xb2\xb2\x46\xf7\x59\x7a\xc7\x47\x9f\xa7\xdd\xcd\x4d\xe6\x24\x93\xfc\x9d\x9f\x7b\x98\xb9\xf8\x94\xbe\xdc\x60\x9f\xd2\xd7\xe1\x0b\x31\x2b\xf2\x83\xcf\x7e\xd0\x27\xac\xe0\x7a\x46\x9f\x66\x47\x72\x56\x3f\xad\x26\x1e\x0d\x54\xee\xe5\xa9\xd4\xf0\xad\xd9\xfd\x22\x85\xa1\x39\xa9\x2e\x53\x57\x43\x68\x80\xb5\x3c\x40\x31\x09\x60\x2d\xab\x71\xe0\x97\x57\xbe\x6e\x3c\x30\x2e\x77\xff\xac\x69\x32\x97\x96\xd0\xac\xc9\x26\xb8\x4c\x89\xa4\x35\xff\x52\xf8\xc9\xf6\x64\x5e\x61\xc5\x2f\x5e\x83\x85\xe7\xcf\x7a\x29\x81\x24\x64\xfa\x26\xb0\x30\xf7\x1f\xd4\x7b\xb8\x48\x34\x8e\x8c\x63\x56\xa8\xeb\xb0\x23\x7e\x63\x42\xb2\xe0\xf9\xe4\xf7\x83\xe7\x0b\xe3\xa3\x95\xe6\x44\xf9\x11\xb9\x33\xb2\xb0\xc2\x4f\xf7\x25\x09\x37\x4d\x14\xfb\xc4\x24\x14\xd5\x25\x9f\xed\x06\xa3\x23\x63\xa1\xe9\x67\x00\xc5\x1c\xa6\xdd\xb9\xcc\xc3\xc0\x3e\x13\x13\x33\x5c\xfa\xc4\xc4\xf4\x1a\x00\x18\xcc\x61\xba\xa5\xab\x2a\x55\x42\x1c\x2e\x95\x7d\x36\xd1\x65\xb2\x24\x2f\x14\x2e\xf2\x23\x99\x14\x07\xb4\xcb\x61\xbe\x9a\xcb\xd0\x4c\x2f\x3d\xae\x96\x3b\x8a\x36\x5a\x8a\xc7\xfe\x23\x49\x80\xc2\x82\x77\x39\xcc\xb5\x01\xc6\xe5\x30\xad\xcd\xe5\x3d\xae\x29\x2f\x00\xb9\x1c\x33\xab\xfa\x78\x66\x50\x79\xa7\xcb\xe9\x01\xd8\x72\x37\x48\x55\xba\x13\x3b\xeb\x3d\x37\xba\x7f\x30\x6f\xb0\xce\xcb\xf4\xd3\x88\x05\x57\xd7\xb2\x51\x7c\x61\xfd\x20\x85\x57\x77\x42\xfd\x9d\xe0\x0a\x88\xdc\x25\x7c\x96\xe7\xea\xe2\x16\xd8\x7c\x23\x97\xba\xbd\xf7\x2d\x89\x7e\x09\xf7\x11\xf0\x72\x6a\x16\xb9\xb0\x24\xcf\xbf\x83\x3b\x00\xc3\x1c\xe6\x19\x11\x0c\x73\xe9\x04\x0e\x00\xe6\x98\x0e\x31\xa5\x09\x6a\x9e\x26\x39\xf5\x99\xec\x0b\x0e\x0a\x55\xdf\x9c\x4a\x17\x01\x33\x91\x3b\x5a\x28\x4c\x0f\x8d\x41\xa2\xe1\x70\x35\x45\x7b\xeb\x77\xa9\xea\x87\x93\x82\x29\xda\x4c\x23\x57\x0a\x1d\x90\xbc\xcb\x90\x51\x1b\xc1\xfd\xd8\x5c\x1c\x57\xe4\x4a\xd1\x08\x32\x87\xe1\x64\x89\x9b\xe9\xc5\xd3\xa5\x2f\x72\x38\x8f\x5b\x6d\x4f\x9f\xd1\x2b\xef\x90\xdd\xca\xe1\x8c\x58\x3c\xb7\x89\xf5\xb2\x4d\x1c\x6d\x0a\x1a\xc8\xc1\x57\x46\xe2\xf0\x11\x21\xa3\xe6\x69\x00\xc9\x72\xef\x0c\xaa\x5a\x4a\x8f\x18\x36\xae\x95\x02\x2e\x75\x2d\x89\x04\x6b\x00\xa6\x5c\xd1\x04\x09\xa6\xdc\x6e\x64\xf0\xa2\xcd\x01\x5e\x71\x93\xb4\xda\x54\x02\xb7\xb9\xc5\xa4\x57\xb7\xc9\x3a\xbd\xa6\x02\x6f\x6e\x18\x3b\x7f\x7b\x90\x10\x8c\x12\x56\x4e\x22\x03\xac\x5c\x3d\xac\xb6\x79\x3e\x61\x7f\x37\xa2\xba\x81\xf4\x77\xcb\xbd\x55\x78\x51\xb1\xa1\x71\x6f\x7a\xf4\x36\x14\x87\xce\xf0\xe3\xdb\x33\xf5\x7f\x84\xbd\x4b\xae\x3f\xbb\xaf\x5f\xd7\xbf\xa3\x38\x33\x48\x95\xde\x02\x0e\xfe\x9d\xb4\x93\x39\xd4\x4b\x81\x1b\xb6\x2f\x6e\xec\xf9\x07\x5c\x4b\x7b\x1f\xdb\x49\xf0\x6b\x6c\xd4\xfe\xb2\xa4\xd2\x9b\xa4\x28\x8a\x9f\xe2\x97\x96\xe5\x91\x88\x0b\xcf\x5e\x4c\x7c\x3c\xf5\xf1\xc0\xeb\xc1\xc1\x70\x0e\x06\xf7\xd9\x8b\xaa\x9a\xac\x92\x85\xc2\xbd\xd6\x2c\x53\x7c\xea\xee\x20\x4a\xac\x4e\xa7\x6e\xb2\xa8\xa3\x11\xdf\x1e\xad\x6c\x1e\x92\x3d\xba\x18\x6a\x75\x05\x7e\x6e\x5b\x94\x1e\x74\x75\xaf\xc3\x3d\xaa\xe4\x9e\x40\x3d\x4d\x17\xb4\xec\x9b\x69\xf1\xf4\x23\xf7\xd3\x0c\x2d\xf1\xa0\xa0\x7b\x4e\x2d\x12\x9d\xf7\xaf\x44\xa2\x1b\xf2\x3f\x50\xe5\xa2\x55\x54\x11\xef\x08\x6f\x39\x3d\x06\x27\xb3\x51\x9d\xb1\x85\x0b\x88\x30\x37\x81\x81\x1a\x20\xcc\x35\xdd\x37\x1f\xd1\xdc\x3d\x68\x02\x48\xae\x79\x97\xe6\x19\xf6\x15\x3d\xc2\x45\x68\x2f\x5c\x3c\x58\xa9\x3c\xc5\x79\xb6\x2a\x8d\xf2\xf6\x10\xbc\x73\xcf\x1e\x1d\x23\x3c\x59\x01\x2f\xee\x1c\xf2\xfa\x47\x2f\x09\x05\x02\xe8\x71\x4d\xa7\x52\x40\xe2\x9a\x8e\x77\x8f\xa1\x3c\xe5\xdc\x8f\x37\xa1\x65\xdd\x8f\x37\xa1\x3d\x5c\x7a\x58\x09\x7a\xbe\x81\x25\x97\x5d\x85\x42\xc9\x65\x4d\x4a\x60\xc9\x65\xf5\x3a\xa0\xe4\x92\x8c\x0d\x28\xb9\xa4\x96\x04\x94\x5c\x74\x27\x45\x60\xb3\x72\x57\x0d\x64\xdc\x99\xfb\x9f\xc0\x77\xc7\x73\xe9\x8a\x4d\xf7\x5e\xf6\x10\xbd\x65\x98\x4f\x67\x9f\xea\xb4\x9d\xc5\x9d\x35\x5d\xa2\xc4\x9c\xd3\xd5\xe4\x41\x9b\x36\xb4\x15\xf8\x73\x79\xaf\x66\x4e\x88\x3c\xa6\x78\xf0\x71\xd4\x03\xe5\xb9\xb1\xe1\x59\x71\xfc\xe8\x47\x37\xaf\x73\x18\x75\x63\x63\xd1\x0d\x38\x1c\x58\x74\xd9\x63\x62\xa0\xe8\xf2\xb9\xe9\xd6\xc8\xdc\x60\xb9\x38\x9d\x1f\x0d\xa1\x94\xcc\xdd\xb5\x0e\xaf\x7a\x3c\x50\x72\x76\x85\xba\x9d\x8d\x97\x04\xee\x5c\xd9\x03\xf1\x6c\x3e\xe9\x0b\xd7\xc2\x30\x87\x97\x12\x28\x8d\x88\x67\x9a\x28\x9e\xad\x79\x27\x5f\x08\xe7\x43\xe3\x9e\x3d\xd5\xa8\x2b\x0a\xb5\x27\x9a\x1b\xa8\xce\x31\x15\xa8\x4e\xa3\xd2\xc3\x75\x37\x23\xa1\x01\x5a\x77\xce\x61\xaa\x37\x33\xc0\xf4\xb7\x4e\x92\x8a\xe9\xc7\xe8\x67\x0a\x76\xf1\xe8\xea\xe9\x2a\x41\xd5\xd6\xb7\xe6\x01\x7b\xd6\xd3\xd8\x67\xbb\x8b\xf8\x59\x19\xc2\x7e\x41\xd4\x44\xd4\x68\xe0\xe8\xb2\x97\xda\x9e\x4f\x2b\xdd\xfe\xc1\xc2\x30\x03\xf1\x50\xf4\xf1\x79\xd0\xb5\xf5\x10\x02\xb3\x2e\xbb\xf9\x78\x74\xfe\xf7\x2c\xf1\x31\xf0\x99\x03\xbc\x95\x6d\x44\xc2\x83\xb2\x7d\xee\x1c\x76\x08\x8a\xc7\xb3\xb8\x9a\xe1\x1c\xf5\xda\x9d\xfa\xcc\xe3\xb5\x3b\x4f\x38\x41\xb6\x1b\x1e\x18\x3c\x5b\xdb\x96\x5b\x1b\x8d\x74\x0f\xc7\xf2\x48\xb5\xfa\x31\x0f\xe6\xfd\x9f\xa1\x91\x91\x1a\xf7\xc4\xf3\xcb\x67\xeb\xd8\x88\xf2\xf7\x50\x6b\x65\x37\x2f\xbc\xdd\x34\xa4\xc5\xab\xce\xdc\xfd\x9f\x09\xcd\xfa\x7e\x8f\xcd\x12\xfc\xc1\x70\x74\x73\xb3\xc2\xe0\xc9\xe0\xdb\x35\xbd\x05\x5e\xdd\x24\x55\x8e\x00\xbb\x6b\x3a\x1b\xbc\x6a\xcf\x30\xbc\x57\xd3\x61\xf2\x7f\x46\x80\xf9\x02\xb8\x5d\xeb\xb0\xaf\x57\x45\x9a\x4d\xc3\x7b\xee\x3e\xf0\x43\x9e\x30\x54\x73\xef\x21\xa0\x6c\xfc\xc7\xdd\xa5\x6d\x94\x30\x8f\x8c\x5f\xe5\x01\xcb\x1b\x94\xb0\xd6\x87\xf4\x3d\xd9\x7c\xc1\xc5\x4e\xba\xf6\xd5\xaf\x1c\xf0\xe7\xf1\x36\xa7\x3d\x7d\xe3\xa9\xbe\x66\x20\xe0\xc3\x92\xdb\x55\xd0\xc3\x9a\xa7\x9e\x22\x86\x79\x9e\xf9\x12\x48\x5a\xab\x39\x88\x61\xdb\x55\xe6\x45\xab\xf2\x9c\x13\xf8\xaf\xa8\xeb\x1f\xf9\x1d\xd8\x60\xad\xb3\xd0\xde\xb1\xa7\x0f\x45\x1a\xc8\xf2\x84\xbf\x00\x0d\x96\x9d\x18\xef\xd8\x93\x97\xca\xe0\x88\x6e\x1c\x45\xc1\xc0\xea\x09\xff\x7b\xb7\xe0\x40\x8b\xd8\x68\x60\x6a\xa5\xef\xd4\x80\x0b\xdb\x03\xf4\xab\xf5\xe1\x0b\x25\x98\x9d\xba\x55\x20\x56\xe4\xeb\x79\x85\x07\xcb\x20\x77\xed\x68\x0a\x22\x77\x55\x30\x31\xc6\xcb\x31\xbe\xf6\x04\xb0\xba\x22\x3b\xb5\x37\xc0\x85\xfe\xa1\xa0\x72\x85\xf0\x26\xcb\x2d\x3b\x41\x91\x00\x7f\x2b\xc9\xb1\x80\xdc\x8a\x2c\xbe\xe8\xfe\xa0\x48\x19\xb2\xc7\xc0\x62\x6b\x79\x74\x27\xb6\x56\xf2\x88\xf7\xbd\x77\xd8\x7a\xb3\x20\x17\x58\xbb\xef\xb3\x9b\x42\x57\x62\xe9\xf0\x70\xf5\x7d\x76\x89\x74\xe5\xb3\xdb\xc5\xb7\x9e\x5d\x3c\x5d\xf9\x0c\x57\x83\x1f\x33\x66\xa2\x63\x8e\x5b\x9d\x67\x26\x20\x6f\x35\x4f\xc9\x5e\xef\x42\x81\x15\x32\x40\xe1\x6a\x9e\x28\xbe\x46\xcf\xf0\xa0\xe1\x15\xf4\xd3\x43\xe9\x77\x1f\x8d\x14\x93\xb1\x6c\xa6\xa9\xb4\xdc\xba\x6c\xc4\xdb\x72\x13\xf2\xca\x58\x5d\x1c\xaf\x35\xa1\x25\xd8\x2d\x94\x95\x2f\x0e\xe7\x5a\x77\xc1\xd8\x4a\xee\xe0\x81\xd5\x6a\x1a\x5e\x41\xd5\x8a\xda\x92\x59\x7f\x73\x0f\xbe\xdf\xcf\x25\x8b\x32\xf0\x0a\xf7\xed\x24\xf8\xf6\xd2\xa2\xe5\x1f\x31\xda\xd1\x12\x5e\xad\x12\x9e\xa1\xbf\x0b\xd1\x96\x7c\x51\xfc\x94\x3f\xc0\x0a\x82\xe5\xbe\x1c\xeb\x6b\x6c\x7d\x3d\x3b\x71\xff\xf2\x2e\xab\x1e\xed\xfe\x36\xcf\x83\x31\x7f\x87\xa2\x26\xf9\x46\x84\x91\xce\xff\x7b\x06\x4e\x7e\x3c\xa6\xca\xfc\x20\xbc\x08\xd3\x1c\xf4\xab\xa6\xad\xe8\x13\xaf\xd3\xf3\x8f\xcf\x33\x0f\x37\x1d\xdf\xb9\x0b\x31\x19\x55\x61\xa0\x84\xaf\xaa\x27\x5c\x1a\x98\xaa\x18\x1c\x8a\xf7\xe0\x5e\xc3\xf8\x06\xaa\x72\x0f\xf2\x11\xde\x42\xfd\xfc\xe3\x36\x92\x46\x0e\x40\xa7\x22\xc7\xc9\x0f\x01\x06\x10\x2b\x1f\x4e\xd8\x9a\x2c\x44\x9d\xd2\x6c\x23\xea\xd4\x70\xd3\xf1\xb9\x1b\x71\x3f\x01\xa4\x54\x54\x85\xda\xe3\x46\xa6\x01\x09\xb8\xa8\xac\xc7\x30\xa0\x50\xcd\xfd\x3a\x98\x50\xcd\xbd\xde\xc7\x0e\xdd\x6d\x35\xf0\x50\x4d\xa3\x88\xf0\x50\xf5\xec\x26\x62\xa4\x4e\x0b\x70\x97\x8a\x84\xdf\x60\x51\x6d\x7f\x4a\x2e\x52\xff\xc8\x07\x81\x95\x6a\x8a\xa8\xcf\x78\x4a\x6e\x93\x80\x92\x6a\xea\xdb\x1f\xbe\x63\x6e\x3c\x3f\xf7\x10\x6d\xff\x50\x68\x54\x53\x71\xfa\x8c\x3c\xf8\x38\x9d\x57\xf5\x03\x4a\x2a\x12\xf1\x59\x4f\xe7\xdd\x4c\x7d\xb8\x6b\xbb\xcf\xf9\x38\x9c\x77\x47\x0a\x7c\x54\xe4\x30\x91\xd3\x9c\x7d\xca\xb7\x37\x11\x70\x54\x81\xa2\x86\x5b\x2b\x81\xa2\x2a\x30\x3a\xe3\xeb\xbb\x48\x92\xe1\x0c\xa6\x0e\xf7\x11\xd9\xc2\x1b\xe4\x22\x48\xcd\xd1\xcc\xde\x48\x44\x1d\xdd\xa7\x7b\xbb\xfb\x73\x6f\xae\x85\xe3\xf3\x32\x13\x98\x3c\x03\x6c\xa9\x18\x6c\x0b\x61\x5c\x9c\xa9\xc8\x16\x75\xb5\x0f\x4b\xbf\x3a\xc7\xc7\x8e\x44\x65\xe4\xe3\xce\xaf\x0a\xcf\x67\x44\xc4\xd1\x7c\xc1\xc8\x3b\xb7\x62\x7b\xd2\x54\x32\x3e\x7d\xb8\xe1\xd8\x9f\x71\x90\x07\xa2\x04\x68\xa8\xa6\xdc\xfe\x8c\xdf\x04\x1e\xd0\xf8\x38\x50\x57\xd4\x7f\xd3\x6a\xd0\x07\x73\xb7\xdb\x44\xf2\x55\x04\xc6\x87\x54\x52\x5c\x09\x19\x35\x85\x13\xf9\xe6\x1e\x74\x0b\x79\xfd\xe1\xc7\xd4\x52\xac\x17\x56\x7c\x85\xcf\x67\x88\x64\x65\xf4\x77\xed\x1e\xa5\x2e\xd7\x6e\x2e\x1f\x63\xaf\xa1\xb8\xfb\x42\x78\x25\xfd\x2e\x3f\x0e\xd5\x77\x73\x2f\xe7\x39\x8c\xee\x33\x3c\x22\x50\x48\xe3\x53\xa8\x59\x47\x7c\xd3\xe4\xdd\xdf\x6d\x45\xa4\xbb\xd5\x44\x77\xfa\x6e\xd5\xe5\x9d\x0a\xd7\x31\xcf\x92\xbe\x7b\xc7\xe1\xa5\x26\xb7\x5b\x36\x78\xee\x87\x18\x1b\x6c\x14\xbe\x10\x63\xdd\x33\xce\xef\x91\x6f\x39\x86\x00\x54\xcb\x59\x3f\xfc\xc4\x65\xd8\xdf\x16\x62\x8e\x21\x1b\x85\xcd\x40\x91\x61\x46\x28\xfc\x10\x61\x9b\x65\x62\x77\x57\x1e\x7d\xde\x9f\x3a\x2c\x00\x83\x8f\x85\xbd\x2a\xe1\xa8\x1f\x1f\x5b\x83\x81\x30\xfd\xf6\x41\x3f\xba\xe1\x87\x38\xda\x9c\x50\x3d\x5f\x37\x91\x8f\x38\x4f\x46\x25\xff\x42\x85\xcf\xda\x0b\x3f\xe5\x91\x8c\x50\x41\x33\xe4\xb0\x9f\x5f\xa2\x0d\x9e\xd9\x7b\xa0\xf6\x69\x0b\xd7\x99\xe4\x33\x62\x93\x1e\x27\xdf\xda\x9d\x43\x15\xd7\xee\x04\x4a\xd1\xc5\xdb\xd2\x0d\x3f\x0c\x6c\xd4\xf8\x96\x4e\xd6\x8e\xf9\xb2\x48\x3a\x5a\xe9\x54\xa5\x1b\x3c\xcc\x32\x18\x18\xb6\x22\xcb\xbb\xb8\x6e\xf1\x97\x90\x00\xed\x8f\x00\x6d\x63\xa1\xba\xeb\x34\xbd\x70\x0b\x1f\xfb\x7f\x27\x2c\x4c\x67\x1d\x7b\x8d\x4c\x7e\x70\xe9\x1c\x76\xb0\x50\xe3\xe5\x7e\x0b\x2b\xb8\xcb\x65\x71\x5d\x49\xee\xb3\xd0\xca\xe5\x25\x2b\x84\x5b\xb6\x4f\xd6\x69\x69\xd4\x57\xc8\x69\x5d\x4e\xd6\xa9\xe9\x09\x3d\x7e\xe9\xe2\xed\x11\xdb\x3a\x59\x9e\xcd\x17\xf4\x0f\x6b\x78\x9d\x16\x6d\x1a\xf4\x8e\xd3\xe2\xf4\x79\xdc\x9f\x45\x7c\x32\x73\x57\x52\xca\x31\xa5\x57\x92\x1d\x74\xdf\x30\x75\x9b\x2f\x76\x1f\x50\x86\x6e\x6f\x3a\x9d\x2c\xa3\x46\x15\x5f\x5c\x60\x48\x53\x29\x63\x72\x68\x5b\x59\x49\xd9\xc0\x42\x5d\x06\x48\x3c\x77\x16\x67\x8d\x63\x95\x0c\x8d\x4c\x89\xd9\xbe\xa2\x8c\xbc\xc3\xf5\xd0\x89\x79\xd7\xd1\x54\x2a\x89\xe8\x56\xcb\xe8\x87\xcd\x22\x33\xe7\x91\x4c\x94\x95\xed\x2c\xb3\xcb\xcb\xba\x1f\xb6\xe7\x28\x1c\x03\xfb\xee\xdd\xbc\x38\x62\xa5\x1b\x74\x0d\xd7\xd3\x6c\xe9\x1b\xde\xf6\x0f\x86\xd6\x79\x21\x3c\xb5\x3e\xbd\x1b\xe3\x6e\x67\x67\x6c\x59\x08\x0b\x07\x80\xdd\x0b\x65\xf7\x28\x95\x52\xdc\xdb\xbb\xfa\x8c\x7b\x04\xb0\x14\xf1\x8e\x47\x61\x2f\x8c\xae\xb0\x8a\x95\xf5\xff\x65\x9d\xc8\x50\x95\x76\xce\x98\xaa\xeb\x14\xbc\x6f\xe9\x27\x3e\xec\x2a\xee\x5c\xed\x4e\xf0\x9c\x5f\xcb\x15\xd8\x79\x6d\x37\x03\x21\xae\x55\x44\xe4\x3c\x77\x5f\xcb\x5d\xa0\x3e\x31\x6b\xca\xa8\x29\x82\x10\x10\x9e\x4c\xaf\x2d\x19\x9c\xd4\x6e\x6b\x5c\x10\x5c\x13\xda\x7d\xcb\xf1\x2e\xa0\xce\x63\x23\xb7\x69\x34\x5b\xd7\xae\xac\x3f\xf6\x20\xf3\xdd\x10\x1f\xc5\x30\xf7\x60\xba\x15\x77\x5e\x40\xb7\xb5\x9f\x0c\x20\xb7\x39\xd7\x2f\x8b\xa3\x11\x9e\xe8\xa2\xc4\x2d\x6e\x12\x79\xa8\x0a\xa2\x5b\x36\x6a\xe6\xba\x77\x35\xcc\x40\x37\xd9\x6a\x23\x3b\x78\x46\xbd\xb8\x61\xa4\xe2\xb3\x30\x42\x1d\x3b\x03\xd6\x03\x97\xa2\x51\x01\x3d\x44\x07\xde\x2d\x01\xd4\x37\x36\xba\x9b\xee\x38\xa2\xbb\x0d\x2d\x6c\x8b\x18\x4a\xa2\x14\xad\xa7\x10\x82\x87\xdc\x6c\x8c\xb4\xc6\xac\x47\x8d\xd3\x7a\xb0\x15\x2a\x1e\x65\x2f\xe3\x42\xf4\xfd\x5d\xc5\x74\xfb\xa3\x5b\xcb\x52\xb2\x68\xb3\x13\x2e\x4e\x79\xb5\xde\x5d\x4f\x3e\xee\x4e\xc9\x49\xe2\x35\x5d\xfd\x6d\x96\xde\xcf\x7d\xa7\x82\xab\xa1\xb9\xad\x6d\x8e\xda\xa9\x60\x8f\xec\xb1\x81\x8e\x8b\xf1\xa4\xc7\x38\x97\x55\x64\x01\x0f\x17\xdf\x65\x50\xf6\x2e\xc8\xce\x27\x86\x84\xd6\x25\xa0\xe2\x4e\x23\xa1\x00\x15\x17\x33\xdc\x44\x5c\x35\x77\x6a\x10\x42\x62\xb0\xdf\x04\x36\x2e\x7b\x78\xbf\x34\x28\x9d\xa6\xdf\x3c\xd1\x0c\xcc\x13\xb6\xb1\xc0\xc9\xed\x88\x08\x6b\x1b\x97\xac\x13\xde\x67\x83\x1d\xde\x5a\xbb\x79\xa6\xda\x53\x94\x4f\x85\x88\xcb\x6e\x69\x17\x6e\x69\x1e\xd9\x2e\xf1\x6c\xb4\x8b\x2d\x30\x6c\x34\x93\xaf\xb5\x67\x4a\xfb\xb7\xbf\x27\xa8\x73\x89\x05\x3c\x41\x9d\x4b\x6c\x8d\xa6\xa8\x73\x15\x5b\xdd\x04\x75\x2e\x83\x65\x37\x41\x9d\x8b\xb5\x62\x6e\x3a\x2a\x76\xaa\x13\xd8\xb9\x13\x36\x3d\x8f\x1d\x5e\xbf\x98\xfb\xa6\x52\x85\xff\xdd\x96\x05\x0f\x9c\xa0\xcb\x35\xe0\x21\x27\xe0\x72\x8d\xc5\x32\xc1\x96\xcb\x49\x3a\x31\xa3\x00\xe8\x9f\x40\xcb\xb5\x31\xc9\x4b\xc8\xa8\x63\xff\xcf\x91\xb2\x85\x29\xdc\xa6\xff\x37\xbe\x9f\xf9\x1f\x9c\xaf\x9d\xde\xb5\xd5\xa8\xea\x89\x44\xa9\xfe\x7f\xd1\x4b\x26\x72\x37\x39\x7c\x81\xef\x58\xcc\xd9\x09\xde\x5c\x03\xa7\x6f\x1e\x38\xb1\xa1\x6f\xcf\x03\x27\x36\x36\x54\x53\x18\xba\x69\x87\xe1\xc2\xc6\xd1\xc5\x3c\x12\xa1\xa5\x8b\xf4\x4e\x1a\xfa\x2e\xb9\xd3\x98\xbe\x50\x62\x55\x7f\x80\x06\x35\xe8\x0b\x11\x8b\x99\xd6\xf3\xc0\xe7\x3b\xdb\x06\x2e\xf0\x72\xc3\x66\x82\x47\xd7\xd8\x11\x4f\xe0\xe8\x1a\xa7\xc9\x53\x38\xba\x81\x79\x71\x1e\xd9\xb8\xc3\xd4\x09\x71\x85\x5f\xe2\x04\x80\x2e\x17\x07\x3d\x3b\x22\x66\x96\xe9\x77\x32\x00\x4c\x4c\xe8\xdc\x79\x70\x1e\xdc\x9c\x32\xde\xea\xe5\x36\xe0\x04\x7e\x2e\x5a\xe4\x0f\x7c\x7a\xac\xab\xae\x68\xd6\x15\x41\x34\x4f\xba\x80\x13\xad\xb1\x4b\xe0\x62\x90\x03\x5a\x14\xe6\xd6\x09\xa1\x84\xdb\xc2\x3c\x70\x50\x23\x12\xd1\x3c\x2a\x13\xf4\x24\x0d\xae\x67\x20\x10\xcd\x03\x29\xb4\x2b\xc1\xb1\x30\x58\x8b\x53\x7c\x3b\xc0\x4e\xe7\x11\x5b\xcc\x5e\xac\x90\xc0\xae\xc3\x71\xc0\xf1\x0c\x55\x7e\x1e\x55\xae\xd5\x19\xf5\x6a\xcf\xfc\x09\x9e\x63\x0a\x8b\x97\x9d\xc8\x9c\x73\x75\x17\x5d\x93\xa3\x39\xab\x75\x4a\xb3\x8e\x0d\x80\x55\xc7\x42\x83\x27\x67\x7c\xf3\x68\x78\x20\x65\x33\x50\x79\x27\x9a\x51\xa9\x4e\xff\x57\xd3\xb6\x25\xc0\xe8\x8d\xfd\x02\xd4\x6b\xa7\x04\x47\xca\x9c\x6d\xce\x43\xff\xf1\x5d\x34\x7b\xd5\x99\x28\xa1\xbb\xc6\x27\xad\xc5\x67\xbc\x38\x48\xec\x55\x67\x92\x4e\x78\x19\xe7\x75\x07\xee\x34\x4b\x77\x93\x35\x7d\x71\x31\x00\xbe\x20\xca\x88\x0b\x8a\xd3\xe5\x99\xa8\x2a\x97\x8f\x8b\x8b\x8b\x03\x65\xe2\x74\x4e\x10\xf5\x1a\x57\x7b\xe6\x31\xac\x1d\x95\x18\xf9\x5f\x7f\x55\xe2\x3c\xcc\x43\x9b\x69\x35\xaf\x2c\xd2\x0e\x73\x97\x6b\x25\xbc\xb8\xbc\x6b\xc1\x81\xdc\x74\xc9\xb2\xe3\x05\xd5\x6c\x1e\x63\x0f\x3d\x1d\x30\x64\x53\x76\xa5\xa0\x40\xcd\x99\x36\xe8\xbf\x4c\x97\xe9\xdc\xd6\x7d\x11\x9b\xe1\x3c\x1c\xd2\x6d\x70\xb5\x74\x61\x68\x4f\xd7\x8b\xb1\xad\x36\xc7\xf4\x72\xf3\x69\x91\x53\x5b\x8b\x6f\xae\x3d\x32\x94\x7f\x29\x13\x3a\x9d\x72\xc9\x97\xf7\x1b\xa6\xbd\xbc\xcb\x20\x56\x6d\xa7\x6a\x1c\x0f\x9b\x88\xe9\xe2\xd8\x5c\x6e\xfd\x68\xf0\x65\x4b\xa8\xa3\x0e\xe3\x5d\x31\xc0\x16\x76\x3a\xd7\xb6\xb9\x76\x52\xc4\xad\xb9\xcb\xde\xbe\xf7\x02\xf7\x0d\x4c\x27\x53\xf7\x5b\x8d\x41\x96\x75\x83\xfe\x24\x3b\x36\xe2\xe3\xe6\xdf\xb7\xd2\xb0\x52\x3c\x5a\xc9\xe9\x0b\x83\x85\x70\x80\x30\x8f\x67\xf7\x1d\x0d\xd9\x86\xd8\x61\x96\x3d\xcb\xf8\xf2\x23\x4a\x09\x55\x79\xf6\x2a\xf0\x85\x60\x8d\x34\x65\xab\x11\xc3\x1f\xf6\x96\x0d\x7e\xdd\xf7\x58\x3e\x7b\xd7\x99\xc9\xfe\x3a\x0d\x06\xed\x7a\x35\xb6\x5b\xe2\x8b\x27\x9d\x0d\xf6\xae\x73\x57\x22\x1a\x97\x4a\xe9\x80\xb2\x41\x44\xa2\x09\x68\x5e\xc3\x9d\x7f\x1e\xdb\xc8\x6a\x43\x40\xe4\xc1\xa1\x66\x1e\xba\xa8\x77\x17\x24\x97\x9b\xcb\x7e\xa1\x09\xdd\x91\x76\xb7\xbb\xa5\x8b\xf8\xb3\x5d\xf6\xa8\xbf\xd7\x16\xd4\xcb\xeb\x60\x54\x71\xed\x31\xe1\x63\xcb\x4e\x35\x07\x0a\x0a\xa2\xe6\xdc\x1b\xd9\xe9\x0f\xea\x5e\xfc\x5f\x25\x95\x79\x2a\xb6\xdd\x0c\xa9\xfd\x07\xee\x77\x6e\x43\x2d\x33\x1a\xb8\xbb\x68\xb3\x3f\xd4\xd6\xe9\xb1\xd3\xa8\x90\x38\x6e\xcd\xf3\xb4\xd8\x93\xff\xdd\x4f\xd0\x03\xe7\xc9\x7d\xb1\x6c\x22\x5d\x8d\x42\x27\x9d\x82\xdf\x55\xb5\x05\xc1\xef\x06\x66\xf8\x79\xb2\x69\x05\x87\x71\x9e\x5e\x4b\xc6\x2d\x6b\x9e\xde\x44\x26\xfa\xfa\xdc\xe8\x77\xd8\xce\xe7\x46\xbf\xc3\x85\x6a\x9e\x69\xb7\x94\x64\x49\x06\x4c\xfe\xa4\x61\xce\x8e\x22\xec\xd4\x79\xf8\xbf\x9c\x82\xf1\x3b\x8d\x00\xc9\xe1\xcc\x04\xf1\xae\xe1\xd5\x3a\x4f\x03\x19\x2b\x7d\xcf\x6c\x83\xfd\xdf\x06\x37\x7f\xc8\xfe\xa7\xd9\x15\xde\xcc\xd0\x73\xdb\x7d\x99\x88\x1b\xef\x0e\xe8\xde\xb9\xf1\xee\xf0\xf9\x99\xe2\xdd\x55\xc0\x05\xe6\xa9\x9b\x78\x73\x08\xcb\xf0\x0d\xbd\x44\x6c\xe3\x64\x05\xb0\xfd\xce\x62\x0e\x70\xe2\x50\xd4\x40\xb5\x13\x56\x60\x9e\x88\xe0\xbc\xd3\xe0\x08\x68\x73\xf7\xbe\xd0\xd1\xe6\x1e\x16\x01\xa0\xe7\x59\x77\xd1\xe4\x46\x38\x63\x63\x9a\xa7\x02\xb9\x48\xa7\x81\xae\x9b\x53\xe9\x8c\x26\x79\x56\x7d\xee\xec\x2c\x2f\x6e\xcd\xfd\xe3\xb6\x15\x24\x6b\xbb\x4f\xa9\x2e\xe2\xb5\x5a\x13\x0c\xbd\xb3\x48\xdf\xcb\x83\x8e\x6b\xb0\xac\xe2\xff\xdd\xef\x52\x5f\xa2\x1f\x4f\x97\x44\x33\xb4\x83\x89\xe8\x84\xe6\xff\x4e\x60\x27\x8d\x92\x13\xae\x08\x26\x5e\x9b\xf0\x7a\x20\xf1\xa2\xea\x7c\x15\x29\x0a\x2c\xe1\x14\x1f\x8f\x18\xf8\x13\x78\xbc\xa4\xe2\x07\x3c\x5e\x64\xa0\xe2\x7d\xb7\xd5\x1f\x6e\xaf\x1c\x7f\x91\x66\x9b\xe3\xaf\x60\xac\xa4\x1a\xf2\x67\xd8\xdd\x46\xc2\x1b\x0e\xb2\x48\x78\xdd\x59\x0a\x26\x4e\x71\x34\x95\x86\xd5\x1c\xbb\x44\x5f\xc0\x06\xad\x23\x1e\x58\x6a\x60\xa7\x88\x38\xc9\x11\xd4\x1a\x6c\xe1\x9e\x38\xaa\x78\x9e\x78\x77\x37\x27\xf2\xdc\xcb\x88\xba\x7b\x71\xca\xb9\x20\x1e\x4e\x77\x34\xf1\x4e\x21\x52\xe7\x14\xfc\xae\x82\x70\x3c\x4f\x63\x62\x75\x7b\xf1\xb2\xb5\x64\x8f\x1d\xbc\x77\xb3\xe6\x79\xed\xf6\x51\x13\x23\x1c\x03\xa9\x3c\x4f\xac\xbc\x53\x56\x71\xd9\x26\x6a\x78\x11\x46\xc2\xda\x2a\x09\xe5\x33\xf7\x66\xae\x64\x08\x49\xd8\x95\xef\x42\xe4\x55\xb0\x92\xe7\x69\xe0\xac\xf1\x47\x3c\xf2\x09\x80\x5e\x9b\x8d\xa6\x28\x25\x1b\x5d\xa7\x94\x1c\xf6\x8a\x81\x94\xb3\x2f\xa8\xb0\x5c\x03\x63\xf0\x9c\x76\xf6\x2d\xd7\x72\xdc\x94\xa5\xd3\x2e\x32\x0c\x57\x77\xe0\xd8\xd4\xcf\x69\xeb\xf5\x22\x51\x19\x06\x2a\x2f\x17\xa7\x20\xc6\xe1\xd3\xc6\xe0\xbf\x0d\xec\xc7\x14\x36\x0f\x20\xb7\x09\x52\x5e\x23\xa8\xd1\x3c\xc5\x78\x77\x19\x81\x56\x4b\xcc\xc9\x09\x68\x5e\x1e\x2e\x74\xef\x36\xcb\x62\x09\x2c\xa2\xc6\x7f\xee\xbd\x3c\x69\x38\xda\x9c\x72\x95\x17\x96\xaa\x88\x79\x07\x5c\x94\xe6\x18\x62\xa4\x3b\x04\xb1\x93\xf7\x6a\xfe\x3c\x15\xcd\xce\x11\x44\x73\x91\x9f\xe1\x3e\x52\x1d\x26\x05\xb3\x02\x84\xd3\xcf\xe9\x8a\xc5\x39\x9b\x10\x77\x13\xd4\xbc\x7c\x58\x09\x9c\x44\xba\x1d\xc1\x79\xa7\x4a\xd0\xc6\xc0\x1b\xf6\x9c\xbe\x20\xdd\x3e\x35\x06\x73\xb2\xbf\x96\x27\xba\x76\xd8\x52\x14\xb1\xad\x38\xbd\x15\xd6\xfd\xc0\x92\x57\x21\x73\x01\xbb\x6b\xb3\xfb\xb1\xd7\x54\xb4\x83\x23\xcf\x89\xd6\xb6\xf1\xed\xdc\x10\x27\xef\x35\x8f\xfd\x03\x0f\x84\x62\x2a\x4b\x64\x2f\x00\x8e\x5d\x64\xa9\xfc\xa0\xdf\x18\x30\xb1\xeb\x12\x1e\x2b\x13\xf0\xba\x0c\xc6\xe8\x04\xbc\xee\x24\xd2\xce\x04\xaf\xce\x5b\xe5\x33\xb1\xd1\x9e\x74\x44\xc2\x9f\x03\xc0\x97\x99\xd8\x5c\x4f\x54\xab\x74\x6e\x63\xba\x89\xd8\x11\xa1\x6b\x24\x0e\x45\xa7\x1b\xc7\x64\x68\x2a\x00\xb9\x27\xc0\x72\xc2\x1f\x4f\x00\xe4\xda\x44\x5b\x05\x27\x2e\x12\x25\x7e\xe0\x04\x45\x4f\x6d\x3c\x38\x66\x17\x78\x70\x91\x28\xf3\x83\xdb\x31\x36\x22\xdb\x52\x33\x3c\xd0\x29\x4d\x37\x4c\x8e\x99\x67\xc2\x0d\xd3\xb9\x09\x4e\xdc\x68\x56\xc3\x1b\xca\x9c\x6a\xce\x54\x76\x3d\x28\x8f\x73\xd3\x73\xbf\xa0\xdd\xcc\xf8\xe4\x0d\x65\xf7\x3a\xa9\xec\xfe\xa7\x22\x9c\xa8\x72\xf3\x60\x26\x77\xb6\xc3\x2f\x5d\x96\x41\x0d\x09\xa8\x4c\x1c\x88\x99\x74\x80\x76\x0b\x05\xae\xdc\xc0\xac\x3a\x37\xac\x1c\x80\xe3\x33\x71\x4e\xca\x4d\xb2\x09\xc4\x9c\x57\xa5\x67\x32\xce\xa3\x06\x07\x10\xe6\xda\x44\x69\x4e\x7a\x64\x76\xbb\xcd\xd0\xc8\xf0\x71\x11\xe6\x26\x72\x31\x19\xff\xf1\x30\x03\xa3\x87\xc2\x2e\xa8\x5c\x05\xd3\x7c\xa6\xe6\xbc\x73\xf4\x1a\x66\xcb\xf9\xa7\x28\x2d\x53\xc4\x39\x70\xe2\x66\x12\x70\x60\x38\xb4\xec\x68\xb9\x08\x36\x93\x1b\x5a\x38\x39\xe8\x73\x91\x88\x4a\x7a\xe3\x8a\xa3\xe0\x09\xcc\x5c\x02\x66\x77\x26\xef\x2e\x77\x67\x2b\xde\xcd\xd3\xdd\x7c\xf2\xa0\x94\x93\xc0\xb9\xb1\xe5\x38\x67\x9b\xc0\xc9\xe5\x6e\x2b\x8d\x9b\x3c\x6c\x19\x77\x94\xbb\xc5\xe3\xab\x9c\x1d\x2b\xdc\x6e\xf6\x7a\x8a\x6d\xe3\x20\xb4\xca\x14\x3a\x6e\x70\x94\x3b\x81\x8e\x8b\x22\xcc\xf1\xfa\x86\x3a\x1a\xe2\x4a\xc3\x02\x78\x71\x89\xb3\xfa\x99\xbc\xee\x84\xa7\xe9\x04\x2f\xae\x4d\xb4\xb4\x34\x9d\x5a\x54\x0a\xbf\xe5\x89\xc6\x97\x84\x06\xd0\xb4\x04\x72\x5c\x76\x5b\x90\x74\xf0\x1c\x4e\x6b\x70\x65\xd5\x2a\x12\xd1\x91\x27\x1c\x31\x61\x1a\x9f\x3b\x83\xed\x76\xc2\xea\xd7\xd3\xe5\x1e\x5e\x6b\x42\x1e\x26\x23\x72\x74\x97\xd1\xe5\x15\x6a\x27\x26\x61\x25\xf7\x6c\xe2\xd4\x73\x4e\xa7\xb2\xe0\x6f\x1c\xf3\x4e\xc0\xdf\xce\xbc\xe7\xaf\x17\x88\xbb\x4b\x0c\xab\x36\x80\x17\x33\x69\xd5\xee\x2e\x50\xe2\x15\x03\x4b\x36\x93\x67\xa0\x7d\x67\x77\x5d\x38\x69\x1f\xf5\x0a\x67\x90\x51\xff\x93\x0d\x7e\x64\x34\x4e\x9b\x2d\xe9\x5c\xbb\x1a\xad\x39\x4e\x9e\xc9\x73\x50\xe5\x4f\x62\x0f\x39\x35\x24\xa4\x67\x97\xe3\x0f\xf6\x01\x9c\xef\xcd\x84\xd3\xce\x44\x4d\x01\x33\xce\xdb\xc8\x13\x98\xb8\xac\x25\x00\x98\x38\x2f\xfa\x4e\xa0\xe1\x06\x96\xe4\x99\x14\x6b\x48\xfc\xf4\xee\xf6\xfa\x21\x96\xa2\xf3\xe9\x75\x85\x3b\x8a\x9f\x25\x90\xe8\x53\xdd\x41\x61\x49\x5a\xa8\x09\x43\x37\x85\x7a\x2b\xae\x0b\xd1\x6e\x86\x6b\xe1\xb3\x40\x13\x59\xa0\xa5\x7f\x76\xb0\x9f\xe2\x08\x61\x97\xa7\x3c\xb0\x26\x6c\x33\xc1\x0d\x9e\xc9\x43\xd5\x6e\x5b\xf5\xe5\xc1\xa0\x3e\x53\x6c\x33\x33\x57\x9c\x27\xb0\x6f\x69\x4f\x53\xd1\xdd\x34\x92\x25\x3c\x1b\x9b\x4c\x28\xc4\xdf\x70\xfb\x00\xd2\x5b\x3f\x10\xee\x20\xbd\x79\xfb\x78\x26\x9d\x1f\xad\xd3\xe2\x90\x19\xf3\x5f\x3e\x76\xc9\x95\x1f\xf8\x19\x76\xff\x07\xcf\x8d\xd8\xb4\x13\x10\xb7\x84\x6f\xca\xcc\xc7\x6e\x76\xe3\x87\x1b\x9f\x6c\xaa\x45\xd9\xa4\x62\xa7\xc9\x09\xe5\xcc\x5e\x83\xe6\x98\x7f\x66\x63\x39\x6a\x8e\xca\x5e\x77\xe6\x90\x63\x66\xa4\x1c\xfe\x4c\x33\x9f\x88\xaf\xe3\x4f\x78\xe4\x33\x9f\xb6\xd7\xaf\xed\xbe\xee\xfc\x78\x69\x4b\xe1\x7f\xf8\x7d\xf7\xcb\x7b\x36\xf0\x82\x3d\x28\x11\x03\x27\x28\x72\x83\xab\xba\x13\x10\xb9\x7e\xa0\xe2\x82\x21\xd7\x0f\xb4\xd7\xec\x4d\x68\x4d\xea\x39\x39\x11\xfd\x9f\x6d\x72\x36\xb3\x82\x2a\x9b\x1b\x93\x83\xfd\x90\x64\x27\x30\x84\x2c\xcc\x41\xdf\xe5\xb1\x01\x3c\xfd\xd4\x83\xdd\xda\x1c\x1f\x65\xd3\x3d\x1c\xa1\x6a\x10\x02\x4a\xae\x1c\xe6\xcd\x7b\x69\x52\x41\xcf\x53\xbb\x23\x95\x2b\xb9\x4d\x25\x13\x67\x35\x6f\x30\x39\xad\xc7\x80\xc6\xf5\xe3\xf0\xc5\x1d\xff\xa3\x03\x83\xff\xd6\x0f\xc7\x7f\xcb\x5e\xd8\x4f\x2e\xf2\x6a\x32\xef\x8b\x12\x4e\x06\x84\x6f\x2e\x4e\x80\x02\xc4\xa1\xf3\xca\xf3\x4d\x38\x51\x16\xc0\x40\xeb\xae\x08\x70\x03\x9f\x88\x99\x0d\xbf\xcc\x2d\xd7\x09\xea\x5b\x06\x3c\x6a\x02\xfa\x16\x59\xe8\x86\x10\xc5\xfd\x40\xf1\x02\xf3\xcd\x3b\xd4\x33\xd7\xcd\x6d\xcc\xa1\x1a\x00\x53\xcc\xd5\x58\xb5\xe6\x78\xc8\x6d\x4d\x5c\x81\x4e\x91\x90\xc5\xfd\x70\xf2\xb5\xdd\x3d\xe4\xd8\x32\x12\x4d\x31\x37\x2d\x00\x8e\x73\x93\x73\xdb\x2c\xfc\x97\xb4\xbf\xe4\xe6\xa2\x80\xbd\xe5\xc6\x10\x9e\x16\xa2\x6e\x6b\x85\x3b\x9c\xc8\xef\x76\xfb\xc1\xc1\xed\x6e\x78\x60\xc9\xb9\xef\x01\x65\x78\xf0\x65\xd2\x54\x9c\x8d\xcb\x4c\x70\xb0\x99\x0d\x29\xa2\x3a\x0d\x00\x5d\x3f\x4e\xb3\xcb\x76\xd1\x37\x72\xd7\xdb\x9b\x3a\x76\xa5\x0b\x32\x0f\x00\xba\xf8\x41\x2a\xc3\x59\xe1\x21\x31\xf3\xde\xa7\xba\xbe\x77\xb4\x0f\x36\x6f\x79\xb8\x29\xe0\x63\x63\x97\x42\x23\x87\x32\xd0\xa1\xdb\xb2\x18\x05\x25\x4f\x66\xd4\xe9\x0b\xc7\x14\x0d\x0e\xdc\xb9\x74\xf8\x2d\xae\x1e\x0f\x47\x68\xef\x5a\x91\xd8\x59\xf9\xeb\xe2\xd1\x80\x9b\x5c\x24\x3a\x27\xe1\x31\x31\xf3\xb5\x7b\x92\xaa\x5c\x7b\x93\x4e\x89\x17\x1e\xe3\x76\xe4\xde\xc3\x0e\x5f\x18\x4c\x8d\xfe\xda\xa2\x79\xfa\xad\x69\x29\xbe\x51\xd7\x41\xce\x67\x60\x05\x0e\xa7\xc1\xed\xcc\xa1\x5e\x37\x6c\x0b\x95\x26\xdf\xce\x15\xb9\xde\xde\x5d\x5a\xc8\xa3\x01\x05\x9d\x26\x3f\xb0\x17\xd9\xe1\xc3\x76\xc3\x21\x15\x23\x60\xb4\x3f\x39\xf7\xcd\x1c\x72\xb6\xab\xb8\x01\x3f\x17\xb5\xa4\xc7\x9e\x5d\x03\xfa\xf5\xd9\xf5\xa7\xfd\xb8\x1f\x4d\xb5\xfd\xbc\x45\x33\xb2\x0b\x04\xba\xae\x96\x03\x00\x5d\x3e\x1d\x0a\xb0\xd8\xd3\x70\x6d\xbf\x96\xc8\x77\xdd\x41\xe2\xbe\x34\xb3\x46\xdc\x21\x3b\x88\xad\x62\xd7\x52\x9c\xdd\x2a\x3a\x3f\x5f\x8d\x75\xf2\x28\x81\xe5\xec\xb1\x4f\x06\xe0\x10\x7f\x4c\x16\xe7\xe7\x07\x23\x43\xdf\xc8\x9f\x8c\x4c\xee\xfa\xed\x4e\xa2\x8c\xcf\x5a\xd1\xc5\x9e\xed\xe2\x39\x33\xb3\xe7\xb9\x43\x8e\xa5\x97\x92\xd6\x2f\x60\xe3\xbc\xd5\x3d\x45\x8d\x9b\x9a\x90\xf3\xda\x5d\xc7\x87\xd7\x8e\x72\x63\xb2\xbd\xb8\xa3\x87\xc0\x8d\x4b\x02\x4d\xce\x72\xec\x55\xd4\xf9\xc1\xb0\xd2\xc1\x80\xc8\x45\x83\x4f\x7e\x74\x5e\x54\xfe\x1f\x66\x37\x95\xd2\xa1\xf9\x61\xa5\x14\x8c\xb1\x9c\x8c\x09\x15\x03\x15\xae\x1f\xcc\xa3\x72\xda\x45\x89\xff\xab\x9f\xe2\xbb\x48\x52\x02\xe0\x4c\x00\xe2\xb2\xf6\xd7\xa2\xb0\x64\x99\x17\x8e\x53\x85\x49\x98\x25\x64\x5f\xf7\xac\xb4\x24\x64\x00\xd6\xd7\x62\x50\xe3\xb9\x5f\xec\x1c\xb4\x2f\x23\x2d\xd1\x3f\x8a\xa1\x1b\x71\xb0\x99\x25\xbb\xe6\xf6\x0f\xad\x80\xf0\xe1\xa2\x38\x62\xd1\x94\x0c\x17\xb7\xab\x36\x9a\x29\x9d\xa0\x30\x62\x5d\x97\xbc\xbb\x9d\xb6\x1a\xcb\x43\x1b\x4e\xc9\xf6\x0e\x9c\xb7\x14\xeb\x4e\x79\x65\xcf\x52\xca\x50\x80\xb1\xca\xc0\xa1\xf3\x4a\xf5\xdc\x68\x73\x43\xba\xde\x68\x96\xe1\xf1\xa7\x16\xf1\x22\x38\x29\x4c\xb8\x54\xd4\x81\xe2\xff\x46\x2d\xa1\xdb\x44\x23\x4d\xb0\xed\xe2\x7d\x3c\x8f\x01\x4b\xa5\x1d\x68\xbb\x80\xcd\x75\xfc\x01\x66\x31\xc0\x86\xec\xad\x54\x44\x83\x33\xa9\xda\xb9\x08\xa0\xa2\x30\xb2\x0c\xa3\x5e\x69\x1c\x01\x78\xae\xe3\xff\x3d\x4b\xdb\x1d\x4d\x3b\x9a\x33\xe9\xf4\x87\x9d\x48\x27\x34\x39\xa5\xed\xd0\xaf\x16\xe7\xa2\x59\x0c\x75\x85\xf7\xf1\x2c\x3a\xd9\xe2\x36\x34\x81\x8f\xeb\x87\xbd\xdb\x35\xba\x20\x0b\x4b\x77\x81\xc2\x5c\x41\x8c\xeb\x87\x6d\xef\x4c\x6a\x0b\x51\xfc\xa0\x86\x03\xff\xd6\x8f\x9d\x9e\xd6\x56\x4b\x40\x53\x44\x44\x80\x0a\xd7\x0f\x84\x4a\x31\x7c\x06\xde\xd1\xb3\x78\x97\x75\x9c\x7f\x8a\xd9\x37\x81\xfc\xc9\x72\xc0\xda\xb5\x5d\xd0\xf5\x75\x5b\x79\x61\xfa\xb5\xef\x06\xf3\x63\x78\x6b\xad\xf3\x3f\xbd\x8a\xfc\xa8\xd4\x00\x3f\xef\x59\x7f\x2a\xc0\x77\xc5\xf2\xc1\xab\x6b\x82\xe5\x23\x1a\xfc\x04\xcb\x27\x66\x4d\xe2\x07\x00\x98\xcc\x65\xb0\x7c\x84\x67\x9f\x60\xf9\x9c\x04\xef\x9f\x75\x78\x1c\xd7\x2d\x03\x6c\x5c\x86\xba\x0a\x6f\x60\xcd\x27\xaa\xf8\xf0\x7f\x6c\x25\xf4\x62\x55\x86\xb2\x6b\xa8\x93\x45\xd4\xa4\x6f\xa6\x4a\x09\x17\x03\xd8\xfc\xdf\x3d\x1d\x93\x57\x58\x1e\x2e\xaa\xcf\x7a\xe9\x14\x49\x7b\xb0\xef\xca\x49\x40\xe8\xd9\x7a\x7f\xd5\x3f\x2b\xed\x0c\x36\xda\x0c\xf0\x5a\x78\x55\xdd\x62\xb2\x5a\xdc\xed\x3e\xc3\xe2\x8c\x5e\x6f\xf7\x5f\xcc\x05\xb8\x7e\xdd\xb8\xe6\x4c\x98\xca\xde\x36\x99\xe8\xde\x0c\x83\x42\x6e\xcf\x9e\xec\x72\x45\x6b\x37\x87\x97\xca\xd8\xa7\xd6\x9b\xe5\xd5\xfd\x9f\xb9\x07\xa3\xad\xb7\x8c\xda\x61\xbd\x99\x7c\xac\x95\x6a\x48\x68\x0f\x88\xaa\xe2\xd7\x6e\x7b\x14\x2d\xac\x54\x31\x7a\x3c\x1f\xaa\x9e\x86\xe2\xcd\x36\xab\xa7\xa1\x9e\xa5\x00\xd8\x23\xfc\xf1\xdc\x78\x3d\xb8\x74\xce\xfa\x58\x13\xaa\xfe\xd8\x72\x1a\xb8\x83\x69\x20\x72\xea\xeb\x12\x86\x8b\xd6\x97\x91\xdd\x2f\x58\x5b\x7e\xe9\x65\x94\x77\x9a\x01\x33\xa7\xe8\x2d\x78\x91\x77\x20\xfc\x44\x63\xcd\x4d\xd9\xc3\x17\xf2\x4d\x64\x67\x7d\x37\xaa\x98\x3f\xe4\x38\x48\xf1\x6a\x14\x4a\x8f\x68\xc0\xfb\x11\x3d\x72\xd6\x8f\xb5\x81\x9a\x06\xf4\xcf\x39\x3d\xae\xa9\xca\x64\x27\xe8\x96\xc9\x70\x0c\xb0\x7f\xce\xe2\xe2\x68\xc4\xe1\x27\xbe\xc8\x6c\xe7\x1e\x90\xc4\x0f\x17\x23\x7a\x4f\x53\xfc\xa0\xe6\x35\x01\xe3\x5c\x99\xc2\xd1\x4c\xcf\x7b\x5a\x62\xce\x61\x57\x6c\xec\x9e\x74\xf4\x69\x49\xa5\xc3\xec\xde\xf3\xf0\x30\xa5\x85\x60\xca\x1e\x7a\x34\xf7\x3c\x1a\x79\x84\xa3\x99\x9e\xc5\x34\xc2\x47\xb9\x03\xde\x00\x34\xba\x69\x00\x40\x13\xa9\x7c\x13\xb3\x06\x17\xea\x09\x00\x4d\x52\xc3\x15\x7f\xa6\x26\x26\x0a\xf8\x33\x22\xe2\xcd\x86\x51\x93\x3b\xb5\xb3\x15\xe6\x28\xf6\xa2\x56\x18\x1d\x94\x78\x50\x69\x92\xd2\xbc\x15\x78\x22\x96\x2a\x51\x69\xe6\xf9\x27\xcf\xe6\xd9\x0c\xc2\xa8\xf5\x08\x94\x9a\xa8\x2f\x7d\x5a\xe5\x83\x70\x07\x10\x68\x32\x97\xb7\x66\x73\x0b\x34\x4d\xc4\xcc\x44\x27\x6c\x4a\x23\x34\x47\xf0\x67\xc4\x3f\x9a\x6d\x1b\x26\xad\x30\x17\x3b\xb4\xad\x83\x45\xe3\x35\xcf\x29\x14\x0d\x80\x17\xb3\x61\x87\x24\xb6\xc5\x6c\x2d\x26\xaf\x27\xb6\x8d\x03\xbe\x6c\xed\x62\xbb\x24\x14\xd2\x6c\x5b\x10\xc1\x73\x1b\x7e\x32\x1a\x05\x5b\x88\x9b\xee\x41\x45\xeb\x9c\x23\x14\xe9\xbb\x9d\x94\xd0\x71\xe3\x41\x93\x07\xab\x26\x7b\xd8\xdb\x14\x49\xec\x29\x5a\x27\xce\xa9\xb3\x90\xb3\x3e\x9d\x55\x04\xaa\x99\x9e\x46\xb5\xae\x68\xce\x7e\x15\x80\xa3\xc3\xaf\xee\xfa\x99\x4a\xe6\xe1\xd8\x0f\x27\x1b\x2c\xa6\x8d\x7d\x4d\x96\x0e\x1f\x6e\xca\x5d\x04\x3a\xce\xb8\x17\x6e\xe2\x9b\xc2\x70\x1a\x81\x19\xa7\x43\x84\x18\x71\xe3\x21\x1a\xce\xf4\x60\x0a\x34\x9c\x84\xeb\xed\x6c\x9c\x14\xaa\x6f\x80\x8c\xd3\x4f\x1b\x8b\x48\x01\x4b\x73\x36\x42\x35\x70\x37\x6f\x02\x98\x13\x55\xa7\xb6\x84\x5b\x2c\x56\x36\xb6\x5f\xc2\x31\xcd\x66\xe4\xa7\xe9\x0c\x8e\xed\x97\x18\x46\x13\xf0\x1c\x41\xa6\x66\x9b\x1b\xed\x97\xff\xdd\x5d\x3b\x85\xf0\x12\x26\xfe\xd7\x6c\x1c\x2c\x12\xe5\x70\xb6\x89\xfd\xc5\xd5\x6a\x40\x28\xed\x7d\xed\x72\x84\xe9\x99\x0b\x1f\x3d\x47\xf8\xda\xbd\xc4\x57\x2f\xe3\x73\xc1\x5e\x36\x0a\x8f\x16\xb8\x76\x59\x41\xbe\xab\xbb\x0d\x1c\xb0\x6d\x29\x84\xd0\x6b\xd7\x45\x22\xff\x57\x87\xb5\x97\x2f\x4c\x5f\xce\x16\x36\x6e\x6e\x6f\x36\x3a\x8f\x2e\x2e\x2d\x84\x90\x40\x0c\x13\xa4\x9e\x7e\xda\x9b\x77\x8f\xda\x3a\x37\x6f\xa7\x91\x33\xfb\x36\xdc\x92\x99\x71\xeb\xb3\x68\x44\xd0\xd0\xeb\x12\xcc\x1e\x2f\xd7\x4c\x21\x7b\x08\xca\x30\x01\xe9\xc9\xea\x64\x80\xf4\x9c\xd9\xea\x71\x11\x1d\x38\xc7\x09\x0c\xcf\xe9\x9e\x07\x18\x1e\x43\xce\xce\xe6\x15\x49\x2d\x6b\x60\xf2\x74\x1c\x60\x67\xd3\x33\xc7\x1e\x43\xfc\x9c\xae\xd9\xe7\xe3\x7f\x0a\x7b\x09\x33\x60\x7f\x1b\xf5\x98\xf8\xe0\x13\x48\x1e\x03\xd8\xcd\xc6\x21\x22\x31\x5a\x66\x33\x58\xa4\x9a\x3a\xe8\x3c\x05\x60\xf4\x09\x3a\x4f\xbc\xa0\x7e\x5c\x3c\x6f\x8e\x2f\x92\xe8\xdc\xff\xef\xce\xf0\x53\x1e\x3b\xdb\xba\x2d\x89\xca\x1f\xad\x7d\x8d\x7b\x2c\x4a\x29\x70\x7c\x72\x42\x21\x68\xc8\x9c\x94\xa4\x3b\x11\xec\x5c\xae\x9f\xeb\x28\xd1\xbe\x7d\x5a\xc1\xff\xaa\x4b\xc8\xb5\xb6\x88\xbd\x20\xd7\x36\x3e\x25\x17\x57\x66\xc3\xe1\xc7\xdd\x4b\x5b\xc4\xb7\xb2\x29\xb8\x01\x6b\xd8\x06\xc6\xc7\x20\x79\xb3\xad\x3d\x1c\xbe\x08\x9e\xcb\xfd\xd3\x09\x40\x8f\xb8\xd0\xb3\xeb\xed\x6b\xc5\xfb\xb1\xf9\x84\xa9\x98\x77\xc9\xff\xdd\xcf\xd1\xf1\x20\xf4\x18\xac\x6e\x82\xd0\x63\x20\x8c\x09\x40\x8f\x81\xb9\x26\x00\x3d\xf1\xd9\xc2\x0f\xae\x6b\xa0\x1f\x01\xca\x63\x28\xcd\x09\x28\x8f\x51\x79\x26\x98\x3c\xc6\x67\x99\xa0\xf0\x18\x4a\x67\x82\xbc\x63\x6c\xa1\x29\xf0\xce\xd0\x9f\xa0\x9f\xd4\x02\x25\x11\xe0\x1d\x63\x84\xcc\x7e\xee\x56\x53\x0d\x5d\x79\x3d\xc9\x06\x85\x67\xef\x69\xfa\xa9\x22\x52\xfc\x94\xfe\xa4\xfc\x6f\xa4\x49\x79\x6d\x4f\x74\x01\xdb\xe6\x9e\x70\xb6\x46\x09\x12\x76\x67\x7a\xbe\xdc\x13\xab\xdb\x9e\xcd\x2c\x62\x64\x47\xdf\xb2\x9f\x49\xd5\x35\x91\x5a\x5c\xe6\xf8\x60\x4a\x6f\xba\x80\xd2\xee\xd0\x03\x8c\xbb\x38\x01\xdd\xf1\x7e\xe9\x04\x66\xc7\x40\x48\xb3\x23\xe0\x87\x87\xfc\x1d\x01\x7f\x3a\x90\xc5\xaf\x4a\xa7\xde\x7e\xa8\xd0\x4f\xc5\xcc\xdd\xcc\x66\x60\xb8\x8a\x19\x28\x0d\x1d\xb4\x97\x1d\x23\xc1\xdc\xf0\xcd\x69\x86\xad\xaf\x51\xa7\x02\xeb\x42\xbc\x74\xcf\x26\x99\xd6\xbd\xea\xff\x21\xbd\xaa\x7d\xfb\xa3\xb1\x53\xe5\x4b\x75\xd7\xc3\x17\x6e\x16\x51\x4d\x80\xe2\xd1\x31\x7f\xf6\xaa\x16\xd9\xfd\x71\x9b\xc5\x1f\x2c\xe4\xe2\xff\x80\x5b\x21\x2e\xc0\xe8\xe9\xa7\xb3\x34\x14\x85\x5e\x9c\x44\x1c\x60\x6a\x2d\xea\x62\xd6\x11\x9e\x6c\xf6\x66\x47\xd1\x22\x95\x03\x87\x68\xbb\x05\xb1\x6a\x01\xf2\xd9\x1e\xed\x9d\x5b\xa2\x04\x02\x99\x80\xfa\x44\x95\xfc\x12\xec\xce\x46\xe0\x23\xe4\x0a\x06\xed\x27\x8a\xa3\x88\xce\xc4\x46\x60\xf6\xbe\xeb\x41\x79\xe8\x10\x9a\x1f\xfb\x3e\xe0\xec\xa6\x62\x60\xd0\x1f\x7b\x67\xa2\x55\xbf\x74\xdb\x69\xf4\x20\x7b\x5c\xc2\x63\xcc\xde\xd5\x12\x5d\xcf\x5b\x3d\x70\x15\x1a\x25\x72\x98\x6c\x58\x13\x0a\x1c\xde\x22\xfa\xa3\x53\x73\x1f\x70\x62\xcb\x1c\xf4\x16\xba\x4a\x17\x33\x76\xec\xaf\xd9\x11\xf4\x16\x27\xa4\x7a\x25\x01\xee\x13\xb3\x87\x1c\x73\x4f\x7b\x52\x19\xde\x51\x13\x6f\x9f\x1a\x8b\x4c\xa5\xe2\xe1\x04\x98\x7b\x36\x98\x85\x16\xa3\x91\x88\x0d\x34\xf4\x8a\xee\x73\xb7\x98\xaa\x5c\x06\xce\xa2\x2b\xdc\x6b\x26\xd7\xef\x05\x53\x71\x96\x5d\x34\xc4\x3a\xb2\x8f\x74\x97\x25\x4c\x50\xb7\x22\x97\xa6\x18\x07\xf1\xd2\x13\xdd\x17\x7b\x49\x50\xa9\x7b\x4f\x64\xde\xdc\xbb\xee\xfe\xd0\xae\xe3\x92\x37\x5c\x81\xfa\xfa\x46\x07\x52\x69\xe8\x7a\xf3\x68\x3a\x16\x11\xa8\xeb\xc1\xde\x1f\x2b\xcc\xc7\x1e\x2b\x4c\x76\x4f\x38\x87\x35\xc6\xf2\xaa\x21\x53\x44\xa0\xae\xe3\xf3\x46\x04\xd2\xfc\xd8\x95\xcb\xce\x6c\x0c\xaf\xc3\xa3\xd3\xfe\xec\x99\xe3\x87\xd5\x32\xed\x22\xef\xe7\x68\x47\xed\x62\x17\x28\x6e\xfa\xab\x2d\x80\x7a\xbd\x72\x67\xe5\xc2\xbb\x2b\x46\x8f\x6d\x49\xad\x64\x30\x44\x4c\x62\x3f\xd8\x5f\x37\xa9\xf2\x17\xc5\xb3\xf3\x7e\x6f\x14\x6d\xf1\x16\xcf\x6c\x01\xfb\xde\x1b\x3a\x90\xdf\xae\x0c\xc9\x84\x11\x1a\xf6\xcc\x87\x9c\x71\x19\x80\x7f\x97\x1c\x24\xe1\x0a\x74\x79\xe8\x6b\x67\xe7\xcd\x82\x99\x3a\xd9\x08\x05\x9d\xb3\x74\x35\xc1\xe1\x0b\x96\x80\xa3\xba\x18\x08\x27\xc5\x96\xb5\x56\x1e\x0b\xad\x4e\x2d\x5d\xf0\x56\x04\x35\xe8\x40\x99\xa8\x13\x73\x18\xfa\x19\xf6\xb4\x81\x82\xe8\xde\xa1\xc7\xed\xdc\x2f\x64\xa0\x85\xff\x1b\xbe\x7b\x66\x96\x3d\xa1\x85\x0f\xcc\xb6\x84\x4a\x99\x62\x06\xd5\x34\xfc\x14\xfd\x39\xfc\x92\xea\x4e\xb6\x1e\xbb\x3f\xfd\x16\x82\x97\x51\x07\x34\x28\x6b\x58\x00\x33\xe8\x24\x9e\xd7\x04\x33\x28\xcb\x4b\x81\x0c\xca\x2a\xfd\x63\x0b\xe4\xec\x0f\xd7\x34\xcb\x6d\x70\xe9\x86\xb0\x39\x13\xc8\xa0\xac\x1b\xcb\x46\x0c\xd2\x8a\x0a\x62\xd0\xa9\x22\x3d\x3c\x2d\xd5\x8b\x7e\x9c\xbb\x82\xd1\xcd\x23\x6d\xe8\xf9\xca\x0f\xf8\x16\x93\x07\xec\x9f\x48\x45\xd5\x15\xd5\xf6\x48\xf2\x60\x2a\x9b\x5d\x76\xba\xb3\x68\x7f\xb4\x2e\xc9\xd8\x5b\x7e\x17\xdf\xa8\x3f\x9f\xf0\x8e\x6d\x83\xb6\x8f\xb6\x0d\x1a\x6e\x03\x96\x50\xf7\xcc\x6d\x60\x69\x76\xf3\xb0\xd1\x83\x34\x66\x8e\xcc\x7e\xc1\xdc\x99\xf5\xca\x4c\x04\x49\xe8\x2c\x5a\x9a\x40\x0f\xca\x44\x7c\x9e\xa0\x07\x65\x57\xe8\xc8\xcc\xe9\x61\x09\x76\x11\xec\x01\x8c\xa0\x24\xd0\xcb\x1c\x0a\x7c\xa7\xc0\x16\xf8\x4c\xe4\xb1\x05\xbb\x43\x8d\x0d\x40\x6e\x2c\x46\x90\x57\x5f\x06\xfb\x7e\x65\xfc\x86\x05\xf2\x8a\xd8\x30\x26\x9c\x03\x57\xed\x60\x2a\x55\x35\x8b\xed\x1f\x1c\x81\x4e\x73\xb3\xe5\x77\x40\xab\x8b\x7e\x27\x0a\x39\xa6\xc3\x07\x40\x40\x59\x15\x10\xbc\x9f\xe2\xd1\xef\x68\x58\xc8\xa7\xff\x3b\xb1\x50\x67\x86\x92\x19\x0d\x6b\x34\x1b\x64\x0f\x2a\x80\x9d\x0c\x86\x6f\x48\x8e\x45\x87\x77\x5a\x74\x67\x96\xc0\x6e\x40\xa2\xc9\x44\x72\x9c\xc3\x1d\x9a\xe9\x75\x81\xd1\xee\x3e\x2e\xd7\x0d\x5a\x12\xa8\x34\x69\x6f\x7e\xc7\x45\x47\xb1\xeb\x1c\x5e\xa2\xd0\xaa\x09\x46\x4d\xf7\x76\xc4\xc6\xa8\xd1\xc9\x67\xb8\x79\xb3\x4d\x46\xf0\xd5\xb8\x37\x6e\x8d\x23\xfb\x5b\x2e\xe1\x9d\xdf\xa3\x05\xf3\x3c\x5e\xba\x2f\xfe\x88\x56\xe9\xef\x3f\x1e\x5b\x45\xd3\xb7\x37\x8c\x03\x8b\xa8\xd0\x41\x7e\x3c\xbb\x44\x53\xed\x12\xfd\x61\x83\xab\xdf\x72\x1d\xba\x5c\x5e\xc3\x9e\xd1\x75\x00\x75\xef\x6f\xb1\x45\xaa\x36\xf7\x33\xd4\x99\xb5\xda\xfc\x18\x35\x68\x70\x80\xa6\x07\xc5\x10\xef\x4d\xd3\xd9\x30\x82\x7f\xb6\xf2\x9f\xdb\x69\x97\xc4\xb7\x2f\x28\xd0\x2d\xb1\x75\xea\x9e\x15\x0d\x51\xe1\x34\xa4\x8d\xd8\x3a\x75\x0d\x2b\x23\xf8\x7c\xd9\x3c\x20\xf8\x7c\xcd\x2e\xfb\x8f\xab\x45\xf2\x3b\x37\x4e\xa8\x8e\x63\xed\x8a\xd0\xd7\xb0\x76\x95\xb6\xb1\x76\x3d\x4c\xb5\x71\x5c\xf9\x1f\x79\xef\xda\xe2\x02\x25\xf1\xb4\xe7\xdc\x07\x6c\x14\x3d\x0f\x87\xc3\x17\x5c\xbf\x38\xa5\x2b\x07\x59\x8d\xd3\x3b\xfd\x5a\x8a\xe6\x61\xeb\x2a\xff\xe3\x6c\xce\x59\x0d\xf8\x33\xa7\xfc\x15\xc8\x99\xa4\x0a\x30\x8d\x59\x2b\x1b\x05\x7f\xa6\x6b\x79\x05\x7f\xe6\xcc\x9b\x5e\xa0\x53\xc0\xe9\x4c\xd8\xb9\x07\x2f\x06\xff\xcb\xb5\x98\x94\xa0\xd1\xf4\xf4\x47\x04\xb6\x39\xe1\xbc\x7a\xd0\xcf\x6d\x15\x65\x92\x4d\x38\xaf\x3e\xd7\x33\xed\x4e\x34\x55\x30\x03\x02\xe2\xcd\xa9\x37\x68\x95\xae\xee\x6a\x8d\x83\x09\x77\x00\x99\xe7\xc4\xbf\xc4\x71\x9a\xc2\x94\xea\x47\x3c\xf5\x23\xd1\x0e\xba\x81\x6d\xf4\x42\x02\xb3\x26\xde\xf0\x83\x1b\xf4\x35\x33\x31\xe6\xde\x28\xa1\xe8\x00\x47\xd3\x75\xcf\x05\x75\xa6\x6b\xd3\x03\x74\x26\x12\x99\xdd\xb1\x9a\x66\x77\x8b\xb7\x7f\x30\x56\x8e\x28\x8c\x53\xe1\x0e\x32\x4d\xd7\x07\x14\x64\x9a\x28\x9c\x96\x14\xd5\x3a\xb8\xe5\xac\x74\x31\x2a\xc0\xdc\x46\x51\xb8\xd1\xac\xd6\x84\x51\x14\xae\xdb\xcf\x56\xef\xd0\x4e\x5f\xec\x16\x9a\x63\x77\x1d\x25\x12\x08\xa7\x66\xa7\x50\x55\x2e\xed\x37\xcb\x37\x7c\xa0\xc9\x9c\x60\xc4\x42\x99\x64\x36\xab\x93\xe8\xe9\xc7\xfe\x7f\x7f\x98\x1c\x5e\xa9\xf7\xea\xd7\x0c\xf5\xda\x68\xa5\x73\x6e\xcb\x19\xec\x68\x5e\xae\x24\xe4\x32\x60\x26\x5d\x93\x07\x58\x26\xf1\x82\x6f\xe1\x92\x5f\xb2\xff\x87\x2c\x23\x9a\xd8\x04\xa8\x24\x3e\x45\x0e\x0e\x60\xaa\xf7\x14\x41\x2d\x49\x49\x5b\x16\xb0\x25\x49\xaf\x71\x60\x4b\xb2\x26\xb5\x69\xcc\x30\x6d\x59\xe0\x91\x74\xbd\xbe\xe6\x36\x72\x75\x53\x2d\x7f\x90\x3d\x14\xea\x0c\x8e\xf7\x9c\xcf\xae\xbb\x3f\x62\x76\xa9\x75\x4f\xd8\xa7\x66\x8b\xc9\x01\x8c\x9e\x65\x13\x86\xa9\x2f\xd7\x44\xb7\xae\xd9\xe5\x8a\x6e\xbc\xa7\xc9\xcb\x12\x61\xcf\x2e\x14\x8a\xae\x59\x53\x6f\x05\xaf\x13\xcd\xad\x26\x0f\x73\x63\x61\x73\x5e\xe3\xc6\xa0\x53\xd3\x34\xdc\x97\x5a\xea\x14\x6d\xda\xbb\x2f\xf3\x65\xfa\xc9\x81\x0c\xb0\xa2\x05\x6c\xe2\xdf\xa0\x9b\xd7\x7c\x9d\x7e\xc3\x02\x17\x2f\xc8\xfd\x6d\x26\x42\x21\x1c\xa6\xe8\x54\x30\x85\xf7\xd2\x66\x36\x97\x33\x06\x96\x0c\xde\x49\xd7\xeb\x04\xbc\x93\x78\x61\x2a\x6a\x02\x8f\x9c\x06\x09\xd7\x03\x1a\xec\x93\x54\xa8\x2e\x70\x27\x5d\xdf\x92\x4b\x53\x53\xc6\xd6\x01\xdc\xc9\xb9\xc5\xe4\x25\x1a\xb4\x76\x89\xeb\x60\x2a\xb1\x89\x17\xfb\xa4\xa8\x48\x5d\x46\x03\x57\x98\x5e\x46\x03\xd7\x84\x00\x14\x4a\x34\xcb\x37\x1f\x62\xc7\x6f\xd1\x76\xa4\x2c\x50\x28\x91\x68\xf0\x43\xee\x30\xfc\x91\x30\x0c\xfd\x91\x07\x0a\x94\xe2\xea\x03\x0e\x25\x5a\x93\xf8\x01\x83\x28\x7e\x6d\x57\x73\xf2\xe3\xb3\x9a\x64\x49\xf6\x2b\x8c\xef\x92\x87\x6a\x3d\xb8\xb6\xe7\x3c\xab\x01\x80\x93\xf8\x32\x2d\xd0\x7d\x4f\x1b\xca\x45\x40\x14\x3d\x47\xae\x64\xf7\x93\x23\x54\xcf\xac\x2c\xb9\x36\xe3\x64\x4e\x5d\x86\x16\xd3\x59\xfa\x52\x11\xd5\x45\xf9\xca\xbb\xfa\xbe\x09\xad\x54\xcb\xe2\xa5\xb7\x7d\xde\xa9\xe0\xc8\x98\x0c\x00\x22\xe9\x1e\xdd\x83\x43\x92\x0e\x9d\x2b\x2f\x99\x2b\x12\x0b\x50\x92\xee\x91\xfc\x55\x9c\xe9\xd3\x17\x8c\x2a\xa2\xf6\x92\xd1\xba\xfb\xbf\xf0\x79\xa8\x79\xff\x70\x54\x93\xc9\x9c\x54\xd3\x12\x99\xde\x88\x4e\x00\x4a\x0c\x68\x3c\xc5\x24\x39\x34\xda\x03\x4a\xd2\x09\x4a\x3d\xc5\x21\x49\x7a\x0f\x5f\x72\x5a\x84\xfe\x25\x74\x25\xe8\x60\x13\x20\x92\xae\xda\xbd\x71\x48\xe4\xcd\x17\xc6\x27\x82\xc8\x4d\x30\x49\x7a\x62\x97\x7b\x19\xc1\x78\xee\x17\x4c\x2f\x38\x07\x68\x23\xdd\x23\xcf\x0b\xb3\x92\x87\x70\xa0\x8d\x74\x8f\x19\xc1\x14\xe9\x1e\x82\x5d\xb8\x45\xec\x99\x8d\xee\xea\x89\x0c\x28\x13\xc9\x73\x7a\x80\x25\xa2\x30\x32\x18\x59\xd1\x8d\x37\xc8\x12\x5d\x5e\x78\xa9\x96\xba\xf1\x06\x59\x22\x1a\xc1\x0f\xce\x14\x34\xa3\x5f\x9b\xad\xda\x39\xf7\xee\x1c\xdf\xa8\x19\xba\x30\x6e\xf9\x35\x25\x6a\xc3\xd8\xa3\x7c\xef\xa1\xa1\xab\xe4\xb8\xcd\xff\x11\x0a\xee\x58\x2f\x62\x55\x69\x48\xbf\x7e\x2c\x18\x7c\xf7\xd9\xeb\x9d\x2c\x8f\x77\x01\x69\x89\xc7\xdc\x7a\x76\x6e\x40\x09\xb7\xa9\x97\xf0\x89\xea\xb8\x40\x40\x74\xcd\xe8\x42\x40\x4c\x1d\x51\x2f\x99\x2e\x12\xfc\x32\x62\xed\xe1\xcc\x30\xb0\xa2\x6e\xb3\xe0\x41\x9c\x5b\x15\xbe\x34\x4e\xb8\x6d\xbd\x70\xd4\xd6\x9d\xe9\xc2\x4f\xbb\xef\x1c\xb6\x37\x5b\xc8\xc3\x0b\x12\x7d\xbb\x74\x7f\xd8\x91\xf6\xd7\xb7\x4b\xa4\x8b\x3f\x74\x6f\x24\xcc\xb5\xb9\x2b\xcc\xf9\xfa\x76\xaf\xd2\x2d\x38\x67\x67\x19\x97\x6a\x2d\x3c\xff\xd2\x51\xdb\x7d\x8e\x48\x10\x80\x35\x4e\x90\x20\x7a\x82\xb3\x5f\x1f\x7d\x22\x7d\xd1\x0d\xb0\x6c\xc0\x1f\xba\x16\x16\xb0\x1f\xe2\x43\xd4\x63\x31\xdb\x61\xdf\x97\x61\xb0\xb2\x13\x59\xf3\xc5\xfc\x63\xf0\xaa\x79\xc9\xf5\x61\xf4\x97\x57\x98\xdc\x29\x6d\x38\x08\x77\x4a\xb7\x7e\xdc\x6e\x88\xc0\x83\x88\x25\x5a\xf8\x91\x1c\x08\x93\x65\xeb\xe0\x1b\x3a\x0c\xee\x7e\x1b\x45\x44\x15\xff\x26\xfa\xd5\xe1\x40\x8a\x02\x71\xd8\xfb\xb7\x7c\x5f\x9f\xe2\x5b\xfe\xae\xbb\xf0\x7d\x3a\x13\x90\x35\xa0\x3a\xc4\x0f\xca\x54\x13\x86\xf1\x03\xeb\x10\x1f\x33\x3f\x0b\x72\xf8\xbf\x83\x8f\x10\x12\xd8\x61\xea\xc2\x2a\xb0\xc3\xe1\xf6\x0c\x30\x87\xae\x35\xe1\x36\x3c\x64\x66\x79\xde\x89\x45\x0f\xe7\xba\xd5\x89\xbd\xd4\x0a\x82\x43\x7c\x8b\x16\x27\x43\x00\xb3\x40\xc4\x70\xd8\x1b\x82\x3b\x98\x78\xcd\x4c\xd0\x3b\x07\x63\x71\xb3\x74\xc3\xc2\x8f\xdd\x46\x7d\x08\xdc\xd1\xdd\x44\x98\xd2\x9f\x09\x3c\x87\xb3\x59\x86\x5e\x03\x7a\x28\x83\xe7\x70\x7a\x1a\x28\x9e\x83\x8e\x1c\x37\x5c\xdb\x2b\x41\x37\x67\x07\x46\xae\x00\xe6\x21\x7b\xa5\x40\x60\x87\x63\xf7\x68\xd9\xcd\xf0\x4b\xce\xd5\x6a\xf6\x45\x76\x5a\x1e\xbc\xb9\xab\x85\x82\xd3\x90\x09\xb1\x39\xef\xba\x5b\x41\x86\xe0\xba\x5d\xd5\x0f\x68\x86\x53\x37\xa3\x5b\x55\x57\x77\x07\xf1\x18\xf6\x86\xe7\xd6\x07\xcd\x2d\x1c\x80\x0c\x51\x13\x3e\xdc\x5c\x80\xc8\x12\xd1\x19\xf6\x66\xe8\x6e\xbb\xf6\xd4\x4b\xbb\x81\xfb\x30\x90\x16\x8a\xde\x74\x20\x2a\x0c\x6d\xbe\x77\xdf\x73\xd3\x1f\x76\x8a\xff\x57\x12\x91\xb9\xcb\xaf\x90\x00\x20\x2a\x44\x0e\x4a\x37\x2a\xb0\x47\xee\x80\x25\x44\xe9\x8c\xc8\xa0\xb3\x1d\x42\x4c\xef\x7b\x5f\x06\x40\x42\x64\xa1\x5b\xb8\xb7\x7b\xec\x71\x1b\x8e\x34\x02\xe5\xd6\xda\xee\x09\x32\x38\x0a\xe7\xde\x96\xdd\x46\x96\xf7\xf8\x6e\x83\x27\x78\xf4\x05\x78\xc2\xa9\xe5\x1e\xf0\x04\x63\xc9\x4f\xb1\x13\x0e\xdd\x85\xef\xc9\x70\x39\xc0\x93\x5b\x1f\xdd\x44\xce\x0e\xff\x97\xdf\x21\x78\xee\x69\x3f\x22\x5f\x40\x58\x88\x4f\xf9\xc6\xf1\xb2\x91\x97\xcb\xcf\x55\x7e\xa9\xcf\x64\xdf\x30\xf6\x96\x7e\xed\x66\x51\x4c\x08\xbe\x4c\x90\xcd\x79\xe3\xc3\xa5\xc1\xfa\xd6\x10\xaf\xaf\xef\xcd\xf5\xa4\xdd\xa8\xcb\x80\xe6\x14\x7e\xef\x46\x51\xad\xd8\x5a\x18\x46\x7f\xde\x86\xb4\xd0\x07\xf8\xe6\x58\x5d\xfd\xe7\x36\xe8\xb0\x47\x75\x37\x12\x70\x1e\x69\xfc\x89\x17\xde\x38\x81\xa9\x48\xdc\x21\x1e\x0d\xbe\x3f\x6f\x2d\xfc\x6e\x3d\x6f\x2c\xfc\x53\x77\xc0\x1b\x59\x79\xec\x09\x8a\xac\x54\xd1\xba\x3d\x82\xf7\x00\xfb\xc6\x6c\x93\x93\xff\xef\xfe\x62\x52\x3c\xce\x62\x4b\xd4\xf3\xcb\x49\x8c\xe3\x57\xde\x9f\xdd\x7d\x6f\x76\x96\x23\x4a\xd0\xad\x19\xdf\xcd\xee\x8d\x7f\xd7\x9e\xdd\x2f\xf7\x69\x1c\xc6\x77\x97\xc7\x54\x7b\xed\x0a\x6b\x85\x40\xd4\x4e\x73\x8b\x90\xa4\x8b\xde\x8d\x07\x75\x51\x36\xdf\x78\x6b\xed\x35\xc0\x06\x23\xa3\x97\xdc\x1f\x93\xc8\x81\xfb\x2c\x9b\x9a\x23\x33\xb7\xf9\xe0\xfe\x76\xe1\x94\xc1\x29\xba\xa7\xd7\xf7\x27\x20\x91\xb5\x22\x56\x46\x75\x13\x7b\x7f\x76\xef\xfe\xb1\xfc\x41\xfe\x45\xf7\x9a\x05\xe9\xb8\x3b\x11\x3b\xff\xee\xe9\x25\xf7\x70\x36\xe2\x98\xed\x69\xea\xbd\x76\x4d\xa8\xfb\x52\x1a\xc9\x3c\xbc\xdd\xeb\xd6\xfe\xd6\x31\x3b\x3b\xef\xf4\xc5\xd6\xfe\x74\x2f\x47\x9a\x41\x7c\x42\x1c\x0e\x2f\x11\x3f\xc4\x89\x3c\x3c\x0d\x7f\x38\x63\xf7\x24\xfe\x41\xfe\x79\xe6\xf0\x70\x94\x9e\x99\xff\x0f\x86\x22\x6b\xf2\x1c\x8c\x73\x31\xef\xee\x06\x33\x3c\x24\x1a\xfc\x4f\xf8\x90\x6e\x22\xd9\x10\x1b\xda\x27\x24\x64\x91\xe5\x3f\x06\x40\x76\xf7\xfe\x60\x4e\xca\xc8\xf1\x87\x03\x77\x5b\xf4\x60\x4e\xb2\xa3\x9f\xb3\xf2\xbf\x1f\x72\x45\x5b\x74\xc8\xca\x6e\x58\x88\x07\x2b\xfe\xa1\xd7\xfb\x73\x3a\x49\x6c\xdd\xde\x08\x61\x14\x78\xb0\x25\x65\xb6\x4b\x4f\x72\x51\xb2\x45\x7c\x0c\xab\xac\x39\xe8\x49\x76\x0e\x35\x41\xa0\xe6\x62\x6e\x05\x6a\xf7\x85\x03\x65\x57\x19\x30\xd2\xfd\xfe\x93\xd4\xb3\xac\x58\x72\xa0\x6c\x22\xc6\x7e\xc0\x28\xe7\x83\xcd\x29\xef\xd2\xf1\x7e\x85\xb3\x3f\x58\xf3\x33\xb2\xf5\xf1\x24\x5f\x47\xe7\x47\x71\xcc\x46\xe6\xd9\xe2\x18\xce\xf6\xec\x1d\x95\x83\xe3\xfd\x65\x0f\xfc\x05\x8f\x29\x88\x35\xb0\x63\xba\xec\xef\xc9\x06\xbb\xf2\x53\xb2\xeb\x6e\x81\x54\x8a\xad\xd6\xa3\x47\xdf\x9e\x23\x7a\x94\x6b\x3c\x78\xb0\xfa\x1f\x32\x43\x51\x65\xa6\x6e\xd6\xa0\xca\xf4\x8c\x40\x06\x55\xa6\xe7\x6a\x0e\x7c\xdb\x1d\x1d\x63\x37\x6b\x62\x78\x2a\xae\x89\x56\xbd\x2a\xf8\xfe\xec\xff\x22\x4c\xcc\xd4\xaf\xfc\xa9\x0a\x2c\x56\x3b\x38\x31\x45\x9d\xfe\xf1\x2a\x94\x2e\xd8\x20\xc3\xf4\x0c\xcf\x7e\x0c\xb9\xa5\xce\xf2\x18\xd5\xd9\x2b\xe2\xc0\xc4\xc4\x0f\x7a\xaf\xee\x8a\xfa\x31\x57\x38\x1b\xb6\x87\xe3\xfe\x6c\xf1\x4d\x25\x13\xa6\xf2\xb4\xdd\x04\xdf\x6c\x0e\xe3\x1b\x7b\x83\xba\x6c\x9d\x00\x1e\xf8\x18\xca\x79\xcf\xb0\xee\x9c\x44\x90\x3e\x86\x6c\xf6\x78\xee\xe9\xf6\x2c\xdf\xea\x7b\xea\xf9\x83\x15\x6b\x8d\x0d\xe0\xa1\xc7\xf3\xe3\x49\xbd\xe7\x4f\xcf\x47\x6c\x7f\x78\xcf\xa3\x9b\xaa\x5e\xcb\xcf\x67\xbd\x68\x16\xe1\x05\xb5\x9f\x3c\xec\x09\x00\x37\x9a\x00\x56\x74\xc0\xc5\xe7\x23\x73\x43\xbb\x00\x89\x22\x3e\x44\x66\x42\xaf\x7b\x69\x07\x54\x8a\x4c\xc4\xfc\xf9\x2c\x9c\x11\x5d\x26\x5e\x3a\xd1\xbe\xf3\x6c\x7e\xc6\xec\x7c\xb7\x89\x86\x69\x0b\xc4\x44\x27\x6e\xf5\x7c\x65\x4e\xf4\x01\x68\x13\x59\x0b\xe8\x2b\xa3\x42\x31\x79\x65\x54\x4d\xba\x63\x8b\x44\x15\x55\x42\x21\xf4\x6a\xc6\xd6\x41\xfa\x95\xef\xc0\x9c\x5e\xf9\x0b\x6c\x55\x90\x08\x95\xc8\xd7\x83\x41\x4d\x4b\x2f\x0a\xb7\xb1\x42\x5e\x6e\x42\xea\x91\xf6\x26\xab\x47\xb5\x31\x35\x03\x2f\x3b\x5f\x7c\x73\x0c\x95\xf7\x6a\x76\xde\xe9\x1f\x6a\xe4\x77\x64\x91\x6c\x3c\xde\xac\xee\x80\xfc\x7a\xb3\x1d\x0b\x3b\x79\x05\x44\xd7\x78\xf3\x66\xfd\xca\xcd\x62\x05\x31\xb8\xbc\x59\x2d\x28\x9b\x8a\x65\xdc\x4d\x65\xcd\x69\x05\x77\x44\x32\xac\xf7\x2d\xbb\xc7\x29\xb0\xc8\xfe\x90\xef\xaf\x8a\xb8\x1d\x55\x54\x0d\xa7\x3f\x68\xac\xb5\xf2\x2a\xa4\xcb\xfb\xc5\xa3\x47\x0b\xe7\x5b\x9c\x83\x70\x8a\x17\x0b\xb4\xf7\xdc\x5f\x95\x72\xa6\xe3\x5b\xdd\x8c\xd9\x0f\x44\xc3\xcb\xce\x03\x56\xa3\x77\x94\xdf\xbd\xe4\x60\x14\x6f\xa3\x7f\x58\xbf\x6f\x2c\xb9\xdc\x37\xdd\xae\x62\x91\xbe\x7b\xf9\x55\xdf\xd0\x8c\xfd\x62\x37\x83\x32\x84\xef\x90\x4b\xbd\x82\x39\xb9\x32\xc0\xf2\x10\x51\x66\x82\xe5\x91\xbd\xaa\xf5\x36\xfa\xd0\x11\xe8\x8a\x54\x9a\x81\x67\x6e\x76\x86\x74\x25\xba\xcd\xc0\x63\x46\xf3\xea\xdb\xdd\x38\xa2\x03\xbc\x5d\xd3\x79\x35\xfb\xe7\x0f\xca\xf3\xce\xc7\x9c\x7f\xbc\xe6\x21\x68\xc7\xd4\x03\xfc\x1d\x1b\xa3\x84\xb1\xe6\x3e\x46\xde\x2f\xec\x55\xe9\x2a\xeb\x2e\x04\x11\x3c\xe4\x5e\xaf\x81\xe6\x34\xc1\xbc\x5e\x59\x84\x19\x03\xe0\x91\xb2\xe6\xad\x77\xba\xa3\x81\x7f\xbf\x3a\xc7\x1c\xec\x57\xdf\x69\x43\xc9\xe2\x15\x8b\xc3\x6e\xba\xe8\x7d\x36\xa2\xef\x45\x55\x30\x6f\xbd\x3b\x1c\xdc\xe1\x0f\x98\x8c\x5f\xf2\x92\x84\x67\x1a\xef\x65\xf8\xc0\xc3\x1f\xf4\x3e\x5c\xe6\xdd\x06\x7b\xf8\x28\xc0\x1e\x3d\x3b\xa8\xd8\xe8\x8f\x9d\x48\xc6\x69\xad\x6e\xe6\xe6\xf4\x85\x55\xb7\x56\x77\x54\xdd\x5b\xba\xc0\x7a\xf4\x6c\x2f\xdc\xbb\x22\x16\xa1\x40\xb0\xee\xde\x98\xd0\xaf\x1d\x8c\x8f\x48\xc6\x9b\x87\xb9\xed\x20\x3c\x89\xef\x52\xc6\xb3\x27\xa4\x2f\xec\x12\xbe\x8b\xa6\x5d\xec\xdd\xad\x69\xc3\xc2\xdf\x67\x57\x91\x46\xed\xb0\xe9\x87\xd9\x17\x59\x68\xd4\x9b\xf9\x9f\x44\xa2\x9a\xcb\xc2\xc1\xee\xe8\x46\x6a\x01\xba\xa3\x17\x7b\xfa\xdd\xc0\x9a\xbe\xb0\x77\xd9\x9b\xbc\x86\x05\x90\xbb\xbf\xdb\xc4\x64\x43\x3e\x67\xb4\xbd\xf2\xa9\x71\xa0\xd5\xbe\x9f\xb5\x37\xd5\x3e\x3f\x32\x95\x76\x0d\x94\xb5\x77\xab\xcb\xc8\x8a\x17\xb7\x98\x72\x98\x6a\x97\xef\x0b\x9b\x45\xed\x0d\x4b\xeb\xfe\xfc\x5d\x78\x2e\xca\x54\xb8\xff\x7f\xa8\x6c\x0b\xec\x51\x37\xbf\xe7\x94\xa0\xb0\x3f\x7f\x91\x28\x1e\xd6\xbd\x18\x96\xf4\x3e\x04\xe4\xa3\x17\x9b\xbb\x76\xd9\xd1\x8e\xcf\x93\x54\x5d\xeb\xbf\x63\x37\x64\xf2\xe3\xf2\xcd\xc1\x8f\xd7\x1f\x89\x1f\xfb\x03\xd1\xc4\xcf\x8b\xfb\x8a\x21\x00\x3c\xe2\xcd\xe0\x07\x16\x3d\x76\x98\x9f\x76\x1c\x7d\xd4\x3f\xaf\x7f\x28\x59\xbf\x50\x4e\x7b\xb1\x32\x5c\x24\x2b\x7e\xb7\x6b\x11\x26\x37\x9e\x78\x06\xc3\x04\x92\x21\xfa\xc1\x17\xb7\x9f\x35\x47\xc8\x68\xef\x80\x7f\xdd\xf6\x9a\x68\x87\x51\x8d\xff\xc7\xbe\x4e\xc1\x0b\x1c\xf1\x74\xeb\xf9\x44\x48\xd4\x51\x1c\xb0\x86\x68\x06\xfd\x30\xe8\x5e\x9b\xc4\x36\xbd\xc0\x04\xc0\x5e\xe8\x05\xfe\x0d\xf4\x42\x51\x4d\x01\x6e\xa1\x17\x18\xcd\xe7\x91\xdf\xb1\x7f\xe8\x34\x6e\xe6\xe1\x0b\x7f\xec\x56\x58\x04\x35\x4f\x7f\xd4\x00\xbf\xbd\xcf\x47\xdc\x7d\x13\x4b\x8a\xdd\x7b\xed\xc9\x41\x77\x5d\xd6\xc6\xff\x43\x0f\xc9\xf0\xf3\xcf\x70\x5d\x6a\x15\x20\x34\x74\xc0\xe0\x26\x00\x0d\xdd\x78\x55\x80\x32\x44\x22\x3a\xe5\xb2\x62\xf4\xc9\x66\x4e\xac\xfc\x0d\xca\xa0\xc4\xfa\xb6\x01\x00\x65\x07\x28\x86\x24\xb2\xef\xfc\xd8\xf4\x7b\x4f\x14\x58\x86\xee\xdd\xe4\x0f\xee\x54\x92\xff\xb3\x78\x8a\xff\x13\x9a\xd6\x89\x49\xf8\xed\x6e\xd9\xc1\x9c\x4a\xdf\x05\x38\x2d\x4f\x7f\xe0\x82\xd0\x2d\x0c\x40\x38\x64\xcc\xf7\xe8\x50\x66\x5f\x3f\x04\xb3\xd8\xff\xef\xd1\xa1\xdd\xcf\x1e\x11\xca\xe6\x8a\xf4\x0e\xf1\x02\x42\x43\xd7\x9d\x41\x84\x86\x86\x7c\x00\x95\x41\x44\xb2\x09\x28\x43\x52\x1b\x07\x94\xa1\x97\xec\xff\xca\x10\x6b\x1e\x5b\xfa\xda\x8a\x2f\x00\xf8\x76\x4a\xef\xdd\x3d\x75\x7a\x2d\x8c\x2a\x71\xac\xe8\x55\x9a\xef\x65\x99\x64\x0b\x5b\xb6\x9a\x5a\x04\xbf\xea\x85\xed\xe0\xf7\xb9\x2b\x61\xc9\x7f\x5c\xcb\x2a\xf6\xd3\xde\xdc\xa3\xa4\x01\xf5\xd0\xcb\x4e\xa4\xfc\x6d\x66\x87\x0f\xd9\xb8\xb5\xc7\xd1\x1f\x44\x3d\x56\x7e\x7f\xcb\x4d\x34\x9b\xa2\x0f\x73\x77\xd9\xff\xdb\xd6\xec\x0f\xbb\x13\x36\x08\xec\x43\x2f\xb0\xe4\x6f\xed\xca\x47\xaa\xb5\xb9\x0f\x2b\x5e\x6c\x86\xe9\x95\x84\xb5\x0d\xcf\xc5\x37\x1f\x71\xca\x12\xff\xbb\xb9\xa7\x17\xd7\xe9\xce\x01\xc5\x72\x9d\xbb\x96\xbe\x51\xb7\x43\x5d\x05\x93\xe1\xf4\x3a\x36\x98\x0c\x91\x9f\x52\x50\x7c\x0b\xd3\x64\x6d\xde\x95\x7d\x61\x87\xa1\x01\x82\xc3\x10\x3f\x4c\xa6\x40\xda\x1f\x53\xb1\x29\xfe\x58\xbe\x89\x4e\x5e\x78\xce\x79\x68\xbd\xd8\x72\x17\x74\x9c\x95\x76\xef\x99\xc8\x7d\x1b\x0a\x28\xf8\x09\xbd\x30\x85\x00\x49\x88\x12\xc9\x92\xad\x31\xca\xda\xca\xbb\x62\x24\xcb\xbb\x62\x54\x59\xd0\x03\x6f\x7d\x00\x7a\x90\xcb\x4e\x45\x90\x3f\x67\xc5\xca\x7b\xc5\x50\x3e\x4a\x32\xc0\x6d\x13\x38\x84\x48\x45\x29\x7b\xe3\x0b\x2f\x05\xdd\x20\x7e\x90\x05\xaf\x8d\xe9\x1d\x12\xf0\x0d\x52\xde\x63\x51\x60\x1c\xd5\x2c\xf7\xbf\xfe\xaa\xfa\x2a\x08\x63\x60\x74\x8a\xa5\x87\x9b\xcd\xe2\xc0\xd0\x48\xab\x4b\x04\xd4\x13\xe5\x1b\x44\x83\x5e\xea\x1f\x7d\xa2\x37\xda\x81\x97\x4a\x56\x75\xf8\x1c\xd7\xba\x7b\x89\x42\xdd\x04\x7b\xef\x61\x55\xc5\x87\x43\xee\x5e\xd7\x2b\x1b\xab\xca\xd3\x1c\xcb\x86\xe4\xf5\x45\x43\xd3\x40\x3b\x58\x4d\xb6\x39\xfc\x31\xcd\x4e\x91\x9c\x29\x16\x07\x9c\x3b\x6d\xa5\x49\xdf\x65\xf8\x62\x97\x41\xa3\x9b\x33\xd9\x79\x61\x54\x68\x2f\x5b\xac\x6e\xf7\xa3\xde\x2f\x34\xec\xc2\x0a\x5d\x5d\x86\xea\x84\xe9\x8e\x0b\x1c\x75\xb1\x39\x2e\x2e\x04\x2e\xbc\x95\xe6\xa7\x9c\xae\xd5\x17\x1b\x19\x9b\xef\x02\x30\xa4\x8d\x7a\x0d\x07\xdf\x29\x36\x5d\x54\xf0\xa3\x35\x15\x26\xec\x5f\x96\xa2\xcd\x35\xb5\x45\x9b\xf3\xd5\x68\xcb\xba\x81\x80\x10\xd1\xb5\x81\x81\x10\x51\x3d\xf8\x14\x20\xe2\xd8\x39\xb8\x98\x5c\x5c\x52\x97\x0b\xd7\x79\xa8\xb3\xb8\x7b\xa1\x25\x06\x9e\x66\x0a\xf0\x22\x22\x3f\xc9\xf0\xee\xdb\xb7\x3a\x96\x41\x1a\x65\xd1\xcb\xdb\xbe\x0a\x2a\xf0\x19\xe2\x0d\xd5\x7f\xcc\x83\xb2\x2d\xc4\x42\xd1\xf2\xba\xf0\xbc\x3b\xf0\xc9\xbf\x3a\xba\x73\xe5\x1a\xca\x75\x6b\x91\xe1\x92\xc8\x3b\xf2\xf3\xbe\xd8\x13\xb9\xd3\xca\x6f\x15\xa8\x83\x3d\xbc\x04\x56\xe8\xc9\xdc\x79\x47\x7e\x5f\xfa\xe3\x4c\x38\x62\xbc\xa3\x1c\xaf\xd6\xc3\xcc\x5d\x3c\x09\xdc\xf2\xd3\x4f\x64\x13\x2e\x2a\x17\x1a\x81\x84\xcb\xdd\x62\x70\xf3\x4d\xf0\xf4\xa2\xfc\x66\xc1\x0f\xb2\x70\x1a\x21\x61\xed\xee\xea\x9b\xf0\x56\x6d\x2e\xbd\xfe\x10\xf8\x68\x1e\xbf\x29\xbe\xd3\x3d\x70\xfd\xf9\x86\x00\x2f\x1e\x79\x4a\x30\x08\x00\xae\xaf\x12\x86\x84\xf1\x9b\x65\xd9\x96\x69\x29\xe7\xfb\x18\x58\x81\x53\x3b\x08\x22\x63\x76\x1c\x20\x25\x70\xa1\xb6\xe0\x10\x2b\xe1\xd6\xa0\x34\x8e\x1f\x82\x47\xc8\xf9\xf8\x49\x01\x86\xdc\x59\x70\x6a\x95\xa0\xe5\x81\x7b\x8c\x12\x3e\xcd\xa1\x23\x6f\x02\xbc\xe7\xec\x38\x8d\x48\xd0\xa2\xcf\x92\x7b\x47\x49\xef\xa3\xfa\x8b\x29\x5f\x02\x2c\xd5\xd3\x00\x09\xec\x9e\x34\x9f\x43\xd8\xe6\x15\xfc\x85\x25\xb0\xbb\xd5\xc4\x2d\xc1\x1b\x1e\xe7\xf1\xf3\xd1\x57\x38\x6c\x0c\xe2\x10\x40\x42\x3b\x33\x01\xd1\x24\x78\x19\x1c\x3b\x30\x04\x41\x7e\xb4\x49\x4b\x10\x30\x98\x68\x23\x12\xf0\x23\xc8\x9c\x92\xbf\xa3\xe4\x17\xab\xc5\xa9\x55\x4b\xc2\x1e\xfd\x79\xfc\x10\x8c\xb7\x82\x54\x83\x60\x3d\xdc\x3b\x6f\x82\xc5\x8e\x9f\x2c\x22\x89\x69\xe5\x80\x00\x7a\xcc\xe9\x2e\xff\x1d\xa5\xbc\x62\x06\xaa\xc2\x4b\x40\xde\x64\x9c\x47\x25\xc0\xb4\x55\xe6\x25\x78\xff\xa6\xfc\x11\xb1\x7d\xa7\xbe\xcd\xde\x7f\x08\x42\x35\xb2\xdc\x25\x7c\xfb\x7b\xe3\x87\xc0\xd9\x80\x0a\x19\x04\xa4\xf6\x29\x22\x9f\x04\xcc\xc7\x6a\x57\x12\x8a\xdf\xc8\x3f\xdf\x90\x75\xf4\x52\x2c\xa5\xbe\xa2\x5b\x77\xe2\xe7\x6f\xc2\x67\x18\xb6\x73\x13\x36\x86\x24\x7c\x10\xc2\x27\x06\x43\xd9\xdd\x59\xdf\x4f\x8c\xe4\xb1\x4b\xa9\xef\x3a\xac\xc7\xfc\xc9\x02\xfa\x50\x10\xec\xbd\xf6\x02\x7a\x7c\x8a\x2f\x07\xc1\xed\x75\xaf\xa9\x6e\xc2\xc7\x51\xfa\xd8\xbf\xfb\xfb\xe8\x23\x5e\x37\xb3\xe9\xef\xeb\x61\x77\xdd\xec\xa8\xff\x4c\x15\x60\x72\x24\x60\x50\xea\x40\x50\x4b\x60\x2f\xd6\xb9\xfb\x29\x61\x9a\xa2\xfe\x43\x78\x24\xa4\x1f\xc2\x65\xf8\xd9\x7a\xfe\x10\x98\xa1\xbd\xd6\xdf\x7a\x7c\x3b\x18\xe4\x4f\x8a\xcf\x78\x31\xb5\xa5\x5f\x82\xfd\xf3\x5b\xb1\x0d\x70\x55\xfb\x2f\xa1\xdb\xb8\xf1\x93\x65\x89\x29\x56\xe5\xc6\x65\xbc\xaf\xf3\xa5\x6e\x66\x33\xde\x4f\x84\xad\x1f\x46\x31\x7e\x3e\xda\xfe\x21\xe0\x77\xde\xdb\x66\x36\xf3\xfd\xbc\x50\x59\x36\xaf\x8d\xfd\x3a\x35\x6d\x7b\x09\x5f\xaf\xe6\xf4\xde\x76\x8f\x5d\xaf\x30\xda\xbd\xed\x69\x7f\xbd\x1a\x96\x7a\xab\x3f\x29\xd8\xf6\x9c\x9d\x48\x86\x10\xd4\xac\x7a\xdb\xd3\xe3\x7a\x85\x44\xea\x6d\x73\xb0\xfb\xf5\x50\xc7\x2d\x94\x04\xbc\xd5\x3a\x11\xdd\x21\xec\x35\xcd\x91\x2b\x84\x4f\x4f\x83\x53\x61\x54\xee\x17\x9c\x9c\x74\x70\xc1\xf3\x1d\xe5\x79\x5f\x43\x6b\xf4\x3d\x1d\x9e\x9f\x19\xc5\x81\xc4\x26\x38\x0c\x9b\x2f\x3c\x2f\x48\xa2\x91\x22\x6f\x02\x2a\xca\xd9\xfb\x1e\xca\xe7\x45\x9e\x9e\xe5\x2c\x3f\xa5\x2c\x83\x5d\xe0\x93\xb9\x09\x3b\x4b\xf9\x25\x58\x6c\xfb\xfd\xe8\xbb\xaf\xc7\xff\xf3\x8d\x4b\x42\xfa\x25\x2c\x09\xbf\xdf\x70\xe9\x13\x49\x4f\x82\x80\xce\x6c\xc6\xdf\x51\xde\x1f\x61\xd4\xc7\x3f\x84\x5b\x42\xf9\x21\x54\xbb\x70\xf7\xfa\xfb\xee\x33\x8c\xbe\x9b\xff\xbe\x8f\xa5\x8c\xf3\x27\xcb\xab\xbf\xda\xd8\x2c\xed\x7d\xdf\x69\x8a\x2d\x26\xde\x9f\x2e\x9c\xc7\x4f\x8a\x0f\x4f\xbf\x3e\x4a\xfe\x25\x4c\x09\xe7\x2f\xc1\x53\xb3\xf9\x9b\x42\xf6\x31\xca\x4f\xd5\x41\xa0\x3b\xfb\x68\x3f\x29\xc0\x85\x3b\x3b\x17\x13\x25\x20\x58\xc5\xf7\x91\x80\x75\x58\x78\x99\x4d\xd8\x97\x1f\x7f\x6a\xba\x76\x34\xe6\xfe\x53\x53\xb0\x91\x42\x35\xfa\x2d\xd6\x5b\x55\x63\xf7\xfa\xf7\x33\x0b\xc7\x9e\xb8\xdf\xfb\x88\x8a\x3a\xf6\x22\xfc\x5e\x41\x27\xfb\xd8\x2a\xc0\x7a\x1f\x2e\x47\xf6\xb9\xe7\xe9\x7a\x1f\xf4\xb4\x92\x76\x6b\xd7\x2b\x14\x77\xc6\xbf\x16\x02\x7a\xd7\xd9\xe7\x66\x6c\x6b\x8b\xde\x91\xe7\x6f\x8a\x62\x8a\xdd\x41\xeb\x7d\x9d\x52\xb3\xfc\x66\x51\x37\x99\xe5\x37\x8b\xec\x62\x96\x9f\x62\x17\xf6\xe8\x3e\x1d\xfd\x7a\x38\x3f\xd2\x71\x3a\x71\x83\xa0\x21\x18\x73\x31\x04\xd1\xc0\xc7\x71\xfc\xc9\x85\xd5\xd4\x06\x49\x3d\x9c\x2b\x41\xa0\xa1\x03\x93\x19\x04\xb7\xe4\x65\xeb\x5c\xf5\x78\xd5\x6e\xc7\x21\x07\x0f\x02\x91\xd9\xb6\xd8\xa8\xa1\xfb\xe0\x1a\x7c\x28\x9c\x82\x40\xcc\x84\x71\xa8\x51\xd4\xd3\x41\x3c\x0d\xc4\xfd\x8e\x9a\x76\x2b\x06\xd1\x6e\x20\x88\x2d\x3b\x4e\xfb\xbb\xa6\x77\x19\xe8\xf8\x3c\x7f\x52\x2c\x03\x43\x9d\x6a\x47\x35\xbf\x9e\x44\x8f\xcd\x5b\x6a\x7e\x01\x21\x3f\xf3\x54\xf5\xab\xf9\xfd\x8e\xbd\x73\x1d\xbf\x04\x1a\x7b\xfe\x43\x10\x62\xe1\x94\xe7\x07\xc1\x8b\xbd\xa7\x13\x32\x08\x86\x1a\x3c\x77\xd5\xf3\xbb\xb6\xfd\x41\x41\x52\xcb\x5e\xd3\x83\xcb\x5c\x12\xbc\x22\x75\xee\x41\x2c\xef\xcb\x39\xf7\x38\x9d\x90\x41\x20\x44\xc4\x38\x55\x86\x82\x20\x3e\xda\x39\x7f\xb3\x18\xeb\xf5\x54\x14\xd7\xf2\x7e\x22\x56\x9c\xf3\xe7\x1b\x9f\x2e\xb2\xa7\x93\xba\xd6\x97\xe3\xec\x73\x6c\x0d\x3c\x08\x86\x77\x3a\x5c\xf5\x41\xd0\xb5\x3c\x9d\x3f\x59\x9c\xc3\x06\xe6\x94\x80\x8b\xce\x48\xe9\x87\x80\xf1\xf2\x2c\x5b\x69\xaf\xf5\x47\x03\xff\x99\x2f\xf5\x5d\xb6\x05\x07\x68\x09\xa2\xdb\xa5\x3d\x1d\xda\xfb\xe0\x41\xd5\x76\x0f\xb6\xcd\x8d\xfa\xde\xa1\x40\x70\xfb\xa3\x6a\x1c\x04\x1d\xe5\xd3\x9e\xf5\x6d\x6b\x59\x79\xa6\x9f\x14\x9f\x97\x8a\xd2\x9e\x40\x6d\xab\x5d\x83\xbb\xdd\x12\xbc\xe0\xc9\x25\x6b\x08\xcb\xc8\xc5\x7b\x8d\xd7\xbe\x79\xef\xc0\xf7\x4d\x02\xdc\x68\xe4\xe3\x27\xc5\xd6\x22\x8e\xfc\x43\xf8\xec\xe3\xbc\x5b\xdf\xdf\xcf\x69\xba\x75\xf6\x20\x08\x38\x9c\x53\xfa\x25\x54\x09\xc7\x0f\xe1\xd9\x29\xfa\x0f\xc1\x3b\xb2\x59\xd6\x12\x84\x6f\x13\x7e\x3e\xba\x8c\x4c\x90\xf3\xcf\x37\x80\x50\x0c\xc2\x4f\x29\xcb\x1e\xcb\xf9\x37\x0b\xea\xcd\xc8\xf9\xa7\xa6\x1b\x19\x2e\xcb\x8d\xea\x78\x1f\x51\xd9\xb2\xdc\x28\x08\x18\x9d\x46\x96\xd5\x06\xc1\xeb\x23\xb9\xfe\x66\x21\x6c\xf0\xc0\xb4\x0b\xe1\x63\x66\xe7\xa6\x02\x1e\x84\xe6\xce\xd1\xfd\x58\x10\xba\xdf\x18\xbf\x59\x0c\x5f\x96\x55\x1a\xea\x78\xc1\x9f\x4c\x47\x76\x8b\x5b\xe7\x8b\x9b\x4c\x70\xd6\xb1\x09\x5f\x17\x30\x50\xb1\x11\x04\x37\x9b\x9c\x0d\x40\x70\x87\x32\xca\xee\xa0\xeb\x7d\x8c\xf1\x51\x76\xe3\xae\xf7\xf1\x16\x59\x51\x87\xac\xd7\xcb\x61\xe8\x99\xdb\x3f\x04\x19\x4c\xa9\x3f\xdf\xf0\x98\xad\x10\x03\x42\xc2\xfe\xe8\xee\xa0\xeb\x67\x51\x96\xdd\x41\xd7\xfb\xd5\xed\xb8\x34\x7f\x08\x62\x4a\x15\x85\x64\x10\xf4\xb8\xc6\x38\x23\x41\x79\x76\xec\x14\xa1\x55\x4d\x15\xf7\xf1\x43\x30\x0c\x6b\x75\x73\x15\x04\x2d\x19\xe9\x1f\x82\x15\xab\x9b\xab\x87\xde\x85\x2c\x3a\xf6\x30\xdc\x3f\xb3\xb0\xa6\x9f\x8f\x6a\x58\x19\x5b\x0d\x0f\x02\x9e\x4e\xa3\xaa\x32\xd6\xe7\xc5\x85\xe0\x34\xae\x0f\x84\xd7\x8b\xc4\x04\x8b\x91\x20\x26\x4d\x55\x14\xd7\x1f\x15\x69\xb4\xf3\xfc\x25\xdc\x12\x8e\x1f\x82\xe2\xa6\x6d\x16\xf4\xbe\x38\x26\x9d\xa3\xa5\x3f\xb9\x1f\x9b\x9a\x28\xbf\xa3\x6d\xd6\x11\x0a\x27\xcd\x68\x7b\x9a\x07\xa1\x4a\xf8\x29\x40\xbc\x75\x11\x27\x24\xe8\x78\x79\xfe\x56\x81\xd3\x93\x48\x51\x37\x61\x29\x26\x5a\xfd\xc9\xb2\xd7\x5f\xdb\x03\x1f\x1a\x68\x92\xe0\x08\x7c\xef\x2b\xf0\x4a\x53\x39\x0c\x02\x6e\xf6\xc7\xb9\x59\xc7\xb7\x8b\x35\xda\x23\x84\x65\xa4\x9f\xe6\xd6\x00\x82\xa0\x44\xc7\xf9\x43\xf0\xde\x66\xdf\x0c\x6a\xbd\x4f\xd6\x6b\x78\xf3\x92\xd0\x5b\x84\x3e\x72\xaf\x50\xd7\xcb\x19\x78\x3a\x08\x21\x28\xe1\x12\xdf\x69\xaf\x9d\xf5\x7e\xe7\x26\xfc\x64\xd9\x7b\xf7\xe1\x72\x6b\x3f\xd6\x9f\xd1\x65\x50\x41\xd8\xf0\xd4\xb6\xa5\x1d\xaf\x88\xe5\x7d\xeb\xd7\x41\x30\xe4\x54\xb7\x0b\x83\xe0\x5d\xcb\x5e\x7e\xbe\x21\x02\xa8\x01\x3a\xde\xd1\xce\x1f\xf6\xd3\xd5\x16\x83\xa0\xd8\xec\x6e\x51\xda\xf9\xbe\x86\x35\xde\x1a\x78\x3b\xb7\x14\x18\x5b\x59\x0e\xc2\xb2\xa6\xc3\x2c\xe9\x7d\xbd\xd4\x37\x94\x24\x10\x8c\xbb\xe8\x8c\x0c\xc2\x8e\x95\x7c\xfe\x66\x19\xdd\xeb\xd7\xf9\x97\xb0\x81\x09\xca\x26\xec\x55\xbe\x95\xe5\x20\xfc\x84\xcf\xfe\x4d\x21\x08\xe2\x50\x06\x06\x61\x87\x51\x2e\x3f\xa5\x7c\x3b\x80\xbf\x9c\x22\x08\x4a\xfc\xe1\x0c\x0a\x82\x6b\x78\xab\xd3\x41\x50\xa2\x8d\xf6\xd3\x96\x0d\xe3\xba\x35\xdf\x20\x7c\x3b\x56\xa6\x1f\xcd\xf2\x81\xde\x54\xe2\x5b\x68\x44\x8c\xf5\x50\x97\x0b\xc2\xae\x97\xaa\x49\x10\x76\x44\xd9\xf1\xf3\x89\xef\xdc\xdd\xd1\x7e\x09\x16\x32\x7e\x09\xc6\xad\x19\x2a\x2f\x41\xd8\x30\x09\xf3\xe7\xa3\x9f\x88\x66\x63\xfe\x7e\x94\x70\x09\xad\xff\x24\x58\x3b\x4e\xab\xba\x4b\x10\xd6\x0e\xe8\x64\x8a\xf2\x7e\x4e\xdb\xb9\x87\xa9\xbc\x40\xac\x07\xc1\x2e\xae\xef\x23\x0e\xdf\xd4\xac\xd2\x82\x39\x78\xfd\x65\x8f\xca\x8f\xee\x92\x87\x8a\x48\x10\xf6\xe5\xb6\xfa\x43\xf0\x64\x65\xcc\xdd\xc5\xf5\x5d\xd5\x14\x72\xe7\xd6\xde\x47\x7d\x79\x2b\xe4\xad\xbd\xdf\xf6\x0f\x73\x91\xb6\xfe\xbe\x68\x11\xb9\xef\x9a\xf6\xf7\x7d\xf5\x7f\x4a\x6d\x13\x64\x49\x93\x93\x1d\x09\x7a\x0a\x65\xd9\x75\x10\x8a\x2e\x07\x72\xb1\x20\x8c\xed\xf4\xfa\xf3\x51\xcf\x0d\xe7\x51\x7e\xbf\xb1\x4b\xd9\xcb\x27\x94\x06\xbf\x51\x7f\x2a\x26\xcc\xee\x3c\xfa\x2f\xe1\xed\xff\x23\x21\x04\xbe\xa5\xa8\x44\x05\x41\xac\xd1\xad\xed\x05\x61\x6c\xdf\x9e\xf2\x43\x58\xdb\xf5\x24\x6f\xc2\x3b\xb7\x13\xc6\xcf\x37\xbe\x5b\xfd\x58\x4e\xd8\xc6\xbb\xc6\x3e\x7b\xb7\xd7\xe7\xbb\x1d\x24\xcf\xbd\x26\x67\xec\x1c\x3d\x7c\xc8\x9b\xf0\xe3\x15\xa0\x46\x14\x04\x4e\xbd\x8e\x2c\x17\x0b\xc2\xbd\x53\xf8\xd1\xeb\xc5\x21\x22\xb6\xfc\x66\x79\xb7\x3d\xc3\xa8\x4d\x12\x14\xf8\x63\x8f\x6d\x10\xe4\x95\xee\xac\x21\x78\x38\x33\xff\x49\xa1\x11\x77\xcf\xd3\xd8\xaf\x0a\xe8\x55\x7e\x09\x04\x3f\x3f\xce\xf3\x4f\xe7\xe5\x3b\xb5\x66\xd2\xbd\x1e\x83\xa0\xe6\x9b\x7e\x6b\x3d\x34\x98\xec\x25\x1c\x84\x69\x10\xcb\xf2\x4b\x70\x47\xb8\x67\x75\x10\x0c\x61\x95\x7e\x53\x4c\x45\xcf\xe6\x68\xb1\xcb\xb4\x94\xfe\xdb\xae\x8b\xa3\x9f\xf3\x9f\xbe\xc1\xae\x57\xce\xfe\xfb\x0d\xc2\x77\x1f\xe7\xfc\x87\xb0\xd4\x39\x7e\x2b\xe6\x91\x73\x3a\x7e\x53\xa0\xc6\xe6\x56\x7f\x53\x78\x86\xbb\x0f\x0d\xda\xf7\xe2\x9d\x9c\x8e\x1f\xde\xf2\xa9\x71\xa6\x23\xb5\xdf\x14\xcc\xc8\xb2\x95\xf6\x5e\x5f\x3c\xe1\x4e\xb1\xa6\xde\xd1\x43\x9f\xd4\xd0\x2e\xcb\xef\xf3\xd5\x97\x2c\x6f\xbe\xd9\xe7\xfb\x7d\x7e\xc3\xf5\xd7\xa3\xd8\x7d\x86\x34\x7e\x09\x2b\x36\xb0\x9a\x25\xe2\xf7\xe9\x51\x85\xf6\x23\x08\x83\x04\xfd\xf7\xf7\xa5\x15\xf9\x37\xc7\xd6\x7b\xc7\x3f\x84\xa1\x45\xfc\x37\x4b\x7a\xfe\x07\xbb\x7b\x10\x30\x2f\xe6\x7e\xfe\x43\x90\x3d\xc9\x05\x82\x50\x3c\x8e\x95\x1b\x05\xa1\x7a\x40\x52\x7e\xeb\xc5\xe6\x22\xef\xcd\x3f\x04\xc7\x2d\xfd\xa6\x40\x57\xcc\x23\xff\x7e\x83\xc3\xb8\xfe\x4f\xcd\x43\x0d\xe9\x3d\xff\xfe\xf6\x26\xf8\x56\x3f\x21\xd8\xd6\xf4\x5b\xc6\xb5\xab\xf5\x9b\x05\xb7\x0c\x61\xc3\x25\xdc\xd6\xb3\xfd\x36\xfe\x76\x31\xa6\xdf\xb6\xe2\x2d\xb5\x2d\xde\xfc\xbe\xff\x07\x03\x1d\x04\x9c\x67\xe6\x6f\x5f\x7c\xfb\x80\xe5\xb7\x61\xdb\xfb\xa9\xfd\x93\x82\x7a\xb6\xfe\x5b\x06\xfe\x4d\xed\x9f\x04\x5c\x4c\xce\x5b\x47\xeb\xdf\xb6\x94\xe4\x6d\x04\x84\xe0\x41\xd8\x71\xfe\x12\x18\x92\xf9\xdb\x7b\xef\x1e\xf8\xdf\x8a\xbf\x49\xdb\xc7\xfc\xfd\x2d\x53\xf9\x1d\x66\xad\xd9\x42\x4b\x6f\x82\xea\xd5\xef\x08\xe0\xd6\x18\x33\xf8\xa7\xed\x38\xfa\x45\x4b\x7e\x09\x58\x2b\xcb\xf1\x4f\x45\x5f\x8f\x2e\xdb\x6f\x35\xbc\x77\x71\xb4\xdf\x62\x77\xa4\xa2\x20\xac\x81\x13\x72\x2d\xc1\xa5\xd6\x40\x0a\xd6\x12\xba\xc9\x22\xf2\xc4\x99\x81\x07\x59\x93\x4d\x53\xc6\x75\x70\x11\x19\xe2\x2c\x70\xfa\x45\xc8\x86\x74\xb0\x11\x5e\x33\x19\x2b\xe0\xa8\xf1\x03\xe1\x9f\xb1\x7a\x2d\x63\x0d\x64\x2e\xbb\xac\xc9\x46\x2f\xb3\x9d\x5c\x93\xa8\xa3\x05\xd6\xba\x08\x36\xd0\x51\xc1\xd6\x64\x76\x15\x38\xea\x9a\x1c\x00\x16\x3c\xed\x16\xf7\xf2\x3b\x61\xd5\x17\x37\xeb\x4f\x11\x03\x17\x57\xdd\x4f\x30\xa8\xfe\x5e\x13\x47\x68\xa6\xde\xf2\x1e\x79\xe6\x32\xd8\xe2\xea\xf7\xc0\xc3\x6c\x71\xf5\x7b\xe0\x1a\xb5\xb8\xfa\xdd\x81\x3e\x5a\xd7\xcf\xa9\x1d\x89\xce\x14\x89\x86\x89\x72\xfc\x4f\xa5\xae\xd8\x51\x8c\x12\x5a\xf9\xba\x64\x0c\xdc\x50\x5b\xdc\xfa\x1e\x95\x7e\xbc\x82\x71\xb9\x13\x5a\xd7\x79\xc7\xff\x21\x11\xd7\x75\x3e\xfc\x6f\xfa\x37\xfe\xdf\x85\x7d\xfc\xff\x27\x9f\x82\x75\x9d\xc4\xd6\xb3\x19\x89\xc8\xdb\x29\xf1\x3f\x21\xfe\xb2\x74\x91\x59\x9b\x3f\x84\x48\xa5\xf4\x04\x6a\x43\xa6\xad\x42\x97\xc6\xa2\x5d\xdc\x1d\x1f\xcd\xda\x26\xf0\x88\xac\x61\xf2\x6a\xab\x05\xbc\x78\x13\xc5\x50\x70\xa7\xfc\xcc\x9c\xec\x2f\x2f\x95\xe7\x6c\x69\x28\x6e\x19\x7f\xd1\x75\xc9\xd1\xd8\xda\xaf\x8b\xc3\x92\x8c\xbd\x61\x71\xdd\xfc\xcc\xb8\x6c\x2c\xae\x9b\x77\xc4\xc2\xe2\xb6\x79\x7c\x8c\x2a\x62\x84\x36\x28\xc4\xba\xd8\x4b\x66\x0e\xfa\xd7\x85\xf1\x39\x67\x6b\xc9\x55\x89\x8c\x13\xe3\xba\xbc\xdf\x48\x6c\xdc\x75\x79\xb8\xc7\x2d\xa3\xc5\x7d\xf5\xf8\x61\x99\xcb\x3c\x7c\xba\xd8\x1c\xd6\x06\xd7\xd7\xe3\xd3\x7c\xad\xd8\x9c\x4c\xa1\xc5\xe6\x54\x5a\xad\xdc\xc1\xcf\x65\x5d\x7b\x4d\x27\x0a\xc5\x05\x1b\x50\xcd\x75\xb9\xb6\x31\xc3\xac\xab\xd8\x9c\x62\x2a\x5d\x63\x26\xb5\xc1\x35\xa5\xef\x54\xb6\xa6\x5b\x19\xa7\xb6\x73\xaa\xd8\x9a\x62\x91\xb6\x26\xfb\xc3\xd6\x4c\xea\x5c\x6d\x4d\xe5\x03\xea\x34\xd9\xce\x55\x5c\x60\x47\x5a\x57\xb5\x35\x0e\x7a\xb5\x35\x85\xee\xa8\x7b\x70\xfc\xe1\x7a\xae\xd4\xa0\xda\x1c\xe7\xbe\xa6\x8c\x3d\x54\xd5\xd1\xe9\xfe\x70\x74\xaa\x1f\x50\x02\xed\x3c\x46\xff\xb5\xd5\x75\x8f\x01\xfd\x21\x28\x3a\xe7\xd2\xeb\x6a\xd6\xda\x45\xd9\x76\xad\x7d\x63\xad\xe1\x4f\x97\x07\xd3\x9c\xff\x2e\xee\xd2\xc7\xd7\x18\x2a\xee\x77\x56\x3c\x7c\xd7\xd5\xac\x75\x32\x99\x83\xd0\x4d\x66\xad\x9d\x2c\x38\xc8\x70\x8c\xb2\xb8\x74\x7f\x7a\xc9\x70\x5d\xf2\xe3\xe4\x8c\x40\xa0\x66\x04\xd1\xe2\x2a\xf3\xb4\x6f\xd8\x36\x6b\x91\x5c\x78\x96\x7a\x9c\xb0\x3e\x2e\x0b\xb1\x79\x5e\x9c\x20\x76\x36\x46\x6b\x1d\xe7\xbf\xfe\xc2\x51\x6f\xe1\x65\x36\x70\x21\x5e\x38\x99\xb1\x19\x5f\x6b\x07\x59\xe5\x5f\xa3\x2b\xf2\xaf\x91\xe5\xf8\xb7\x93\xcf\xc4\x44\xa9\x1a\xfc\x0b\xe4\x9b\xf9\x9e\x7f\xfd\xe5\x7a\x5f\x07\xd8\xea\x99\x7f\xbf\xa0\xfa\x89\xf5\xaf\xbf\x40\x31\x5b\x9c\xce\x60\x6c\x58\x58\xcb\x88\xd4\xb5\x38\x7d\x74\x32\xe3\x3f\xc6\xde\x71\xe1\x3d\x86\xa6\xb2\xf0\xe4\x22\x02\xd2\xc2\x91\x4b\x8e\x82\x1b\x17\xa2\x77\xe1\xc4\x05\xe4\xe4\xe2\xbc\x07\xab\xc9\x5a\xb1\xe6\x5a\xf9\x9f\x3d\xe9\xe7\xff\xca\xed\x56\x8d\x8f\x33\xbe\xa8\xda\x9c\x46\x2e\xdc\xa2\x80\x42\x59\x38\x45\x21\xd2\xd7\xe2\x46\x21\x13\x7d\x7d\x39\x3e\x4e\xe9\xb1\x49\x1e\x98\xb8\xd7\xc2\xe3\xf0\x34\x05\xe1\xe9\xff\xff\x8f\x44\xfe\xe3\xfa\x2f\xff\xd7\xf7\x6f\x7f\x1f\x47\xb4\xf4\xef\xe3\xe0\x00\x35\x7e\x47\xd9\x7f\x1f\x47\x27\xbc\x75\x10\xae\x13\x02\x11\x6f\x0e\x92\x84\xb6\x13\x0f\x3c\x73\x3a\x94\x47\x8a\xd1\x47\x82\xf2\xf8\x59\x42\xca\x44\x8f\x1d\x80\x9a\xff\x7d\x1c\x7a\x92\x1c\x41\x79\xa7\x14\xad\x3e\x41\xf9\xcc\x65\x2c\x81\x0c\xc5\x5c\xcb\x40\x76\x41\x59\xe6\xe2\x8e\x61\xcc\xa3\xe3\x8c\xbd\x73\x3c\xa6\x41\xda\xa2\x7c\x60\x1b\xe3\x41\x1d\xd9\xee\x1f\xc9\xaf\x83\x35\x77\xea\x1c\x77\x00\x29\x17\x0f\xf2\x12\x87\xf5\xc8\x07\x2d\x06\x82\x0d\xb7\xb1\x03\xd0\xb5\x78\xb0\xb6\xa2\xee\x20\xa4\xc5\xc3\x7c\xb1\xda\x0e\x70\xce\xe2\xf1\x49\x4b\xd0\x16\x34\x2f\xc8\x63\xca\x38\x80\xf9\x8a\xc7\x6d\x3a\x4a\x08\xad\x34\x1e\x3b\x6a\xac\x34\xcb\x20\xea\xf8\x81\x3f\xc5\x91\xa7\x75\xc3\x2e\x8f\xf7\xfa\x01\xb4\x52\x3c\xa2\x2a\x87\xa9\xae\x47\x12\x5b\x16\x9c\x59\x8f\x7c\x9b\x13\x1b\x0a\x3e\x9a\x07\x80\x47\xf1\x20\x67\xa5\x6e\x8f\x39\x01\x22\x3a\x70\x45\x3d\x40\xd3\x89\xc7\x23\xad\x43\xfb\xa4\x59\x42\x70\x88\x03\x70\x9c\x78\x54\x3e\x37\x21\xd1\x71\xe0\xcd\x9c\x68\x6f\x07\x78\x33\x7f\x1f\x05\x96\x4e\x5c\xfb\x03\x50\x97\x78\x58\x40\x08\xda\x03\x44\x96\x78\x58\x40\x70\xf1\xf3\x8b\x95\x16\x8f\x65\x74\xc6\xf9\x6f\x7f\x27\xe7\x6f\x3a\x70\xf1\x0c\xee\x9c\x8e\x10\xd1\xf1\x00\x4e\x62\x40\x99\x52\x2e\x1c\xc3\x82\x12\x72\x2b\x1e\x40\xf7\xb1\xdb\x4a\x47\x2f\xd0\xfa\x0c\x9e\x27\x69\xf8\xf1\x01\x29\x24\x73\x02\xd7\x3b\x1e\x85\x54\x15\x52\x93\x74\xfd\xeb\xaf\x09\xbe\x56\x02\xa5\x3b\x1e\x1f\xa9\xce\x20\x35\xbe\x05\xce\xb6\x1e\x14\x09\x9c\xed\x78\x84\xfe\xc4\xad\x93\x74\x76\x53\x45\x25\x06\xb7\x47\x12\x90\xd8\xf1\x20\x55\xcc\xda\x04\x02\x75\x3c\xbc\x4b\x05\xc5\x3a\xe0\x07\x98\xd8\x93\x26\x90\xa6\xe3\x31\xa5\xf1\xb1\x87\x46\x82\x90\x3c\xb8\x87\x9f\x52\x28\x50\xf1\x50\xa4\x84\x66\x93\x52\xea\xd2\xf0\x54\x96\x72\x4b\x71\x9b\x12\x94\xc6\xa7\x92\x16\x81\xbc\x69\x4d\x1a\x11\xff\x4f\x28\x97\x94\x3b\xf2\xe5\xa0\x74\xc6\x27\xb1\x51\x4b\xec\xdc\x12\xc0\xa6\xf1\xc0\x6d\xb4\x1e\x7c\x6b\x98\x8e\x90\x01\xa1\x13\xa4\x34\x2c\x11\x53\x73\xc5\xb1\x27\xa5\x61\x4e\xae\x1d\x15\xbe\x3f\x2c\x91\x73\xcb\x5a\x62\x69\xa6\xf4\x4a\x63\xd7\x55\x3b\x5d\x9d\x0f\xda\xcd\xda\x8e\x74\xd1\xb1\xe0\x02\xc6\xe3\x0a\x06\x1c\xdf\xcf\xf3\x85\x82\xb3\x7f\x22\x4a\x74\x72\xc5\x25\x60\xcc\x4e\x71\x00\x13\xd0\x65\xf1\x88\x81\x3b\xfd\xd8\x75\x4b\x7a\x21\x91\xf3\x66\xe0\x58\x8b\x67\xc3\x15\x2e\xe5\xe0\x9a\x7f\x27\x81\xc0\x1a\x66\xd8\x54\x9c\x2c\x85\xf0\x8d\xc0\xd0\xa4\xe2\xf4\x2c\x03\x99\xc8\x94\x2a\x30\x88\x54\xa6\x1e\x91\xf1\xb1\x02\x7f\x48\x65\xea\x0e\x1f\x5c\x35\x95\xf9\x40\xbb\x63\xcc\x39\x63\x4c\xe5\xa6\xd7\x0a\x16\xc3\x03\x6d\x23\x95\xd7\x32\x61\x85\xc2\xc6\xa4\xf2\xd1\x84\xc2\xe6\xea\xe0\x78\x25\x95\x55\xa5\xc1\xec\xb9\x90\x95\xea\x41\xde\x4a\x7c\xb8\x12\x62\x31\xd5\x46\xc7\xd5\x16\x8a\x3f\xf6\xa2\x54\x3b\x95\xab\xd1\xaa\x41\xb4\xa0\x54\x87\x24\x40\x67\xb9\x4a\x91\xc0\xd5\x89\x47\x25\x63\x14\x59\xad\x9a\x20\x2d\x8d\x08\x65\x09\x38\x94\x78\xf0\x31\xba\xa8\x59\x8b\x76\x40\xa2\xb2\x0d\x06\x94\x1a\x46\xdd\x86\x83\x67\x02\x09\x25\x1e\x2f\xcb\x2e\xca\x6c\x8d\x9e\x6c\xe8\x4b\x89\xeb\x46\xa9\x39\x4f\xc1\x9f\x88\xb1\x8a\x42\xbb\xf3\xb4\x77\x1a\x35\x82\xdd\x10\x9f\x2f\x1e\x48\x3a\xcc\x43\x69\x2e\xa6\x1b\x51\xc2\x82\x16\x8d\xbf\x9d\x6e\x37\x3a\x4d\xfa\x85\x50\x57\x0e\xff\x7f\x89\xe6\x44\x78\x8f\x78\x54\x51\x1a\xa2\xee\xb7\x8b\x82\x38\x1a\xb1\xa6\xa3\xa2\x1c\xb1\xc5\xe3\xd5\xf2\x11\xe9\x3e\xa4\x76\xfa\xdc\x60\x82\xb2\x90\x3e\x27\xda\xf7\x78\x76\x18\xea\x4f\xc2\x1b\x3f\x1e\xf5\x5f\x7f\x15\x02\x9f\x24\xbc\xe5\xe3\x91\xfe\xf5\x57\xa9\xb1\x9d\x49\xeb\x5e\x90\x0c\x70\x14\x3c\x3b\xad\xd7\x54\x6f\xfa\x71\x3a\x4f\x1c\xc1\xc6\xa3\xfe\xb8\x1f\xe7\x83\x11\xc9\x47\x48\x10\xb6\x68\xf9\xa0\x1b\xf2\x11\xdd\x80\x33\x56\x3e\x42\xaa\xfe\x9d\x0f\xd0\xb7\x07\xb9\xa8\x54\x3e\xc0\xdd\x0e\x9e\x9e\x0f\x86\x31\x1f\x0e\x23\x55\xcf\xc7\xb9\xf3\x4d\xf9\xc8\x0c\x5a\x30\xfd\x78\xd0\x65\xb8\xef\xe6\x23\x36\x3c\x7f\xe7\x63\xb2\xc5\xe5\xfb\xd3\xef\x03\xda\x04\xe4\x48\x3e\x82\x49\xc6\x83\x20\x2c\x6c\xa8\xf2\x31\x6f\x69\xa1\x98\x15\x2a\x0f\x33\xc8\x47\x30\x03\x5c\xcb\xb2\xda\x51\x46\x3f\xc1\x35\x26\x1f\xab\x4b\xb9\xe0\xb0\x24\x5a\x66\x5b\x64\x3b\xff\xed\xef\x2c\x03\xcf\x27\x6e\xa4\x8d\x68\x45\x19\x84\xf5\x78\x4c\xa7\x6a\x83\x76\x49\x33\x5d\xac\xa2\x9c\x90\x78\x19\x58\xf1\xf3\xc0\xf9\x3d\xa7\x74\x49\x8b\xcd\x33\xbb\x8f\x9c\x32\x35\x4b\x5c\xd9\x6f\x27\x24\xe4\x6c\x06\x04\x7b\x70\x9b\x23\xa7\x90\xb9\xf1\x80\x11\xe0\x22\x9d\x41\x89\x8e\x07\x05\x10\xef\x3d\xcb\x54\x73\xc2\x8b\xee\x70\x70\x41\x55\x8e\x07\x1a\x45\x19\x54\xe4\x2a\xd2\x06\xa5\x46\xbb\xd2\x6d\x45\xee\x5d\x04\x35\x79\xcd\x0a\x0f\x39\xb8\x7c\x96\x55\xbb\xb2\x6a\xd7\x89\x4a\x95\x33\x6a\x46\xce\xf8\x45\x9f\x84\xd6\xcc\xe0\xcc\xc6\x83\xf8\xea\x84\x4a\xcc\xaa\x59\x19\xe0\xd8\xa0\x91\x37\x0d\x69\x13\x5a\xf0\xbd\x0c\x8a\xeb\xdf\x39\xb3\xbf\x3f\x39\x4b\xc9\x00\xb5\xc6\x83\x08\x18\xc4\x1b\xcb\x39\x9b\xae\x98\x8e\xb1\xc8\x25\x4b\x6b\xd2\xa8\x4b\xb9\xa5\x3d\xd0\xe8\xbe\x5c\xac\x4b\x35\x6f\x21\x6f\xad\xd2\xcc\x1b\xdc\x2a\xa3\xeb\xc5\x03\x86\x1e\x5a\x6b\x56\xe3\xcb\x79\x20\x44\x26\x35\x1e\xd6\x24\x3a\xbe\x37\x1b\x06\x3f\xcf\x88\xa4\xde\x0e\x32\xda\xed\xf9\x0a\x9e\xc9\x6d\xb7\x9c\x5f\xe6\x21\x00\x91\xe7\x49\x60\xf0\x5c\x51\xee\x73\x35\xa2\x10\x01\x21\x32\x58\x01\xf1\xd0\xa3\x34\xf4\xc7\x82\xdf\x50\x3c\xaa\xe6\xa2\x16\xb4\x94\xa1\x89\x03\x85\x7d\xbe\x7c\x31\xdf\xfe\x2e\x6c\x01\xcf\x42\x98\xa6\xc2\xc9\x7b\x3c\x4e\x69\x29\x68\xdd\xef\x81\x65\x7e\x72\x9f\xb2\x70\x7d\xee\xef\xc2\x39\x97\x8e\xf6\xe5\x43\x60\x16\x6f\xbd\x61\xa1\x29\x5c\x64\x89\xc7\x43\x4e\x6a\xc2\x21\x42\x3c\x8c\x4c\x12\xea\x62\xe1\x66\x45\x3c\xd8\x7f\xb3\x97\x2e\xeb\x36\x2f\xb8\xda\x27\x82\xaf\xc0\xc2\xe2\x71\x4a\xab\x41\xfb\xa8\x1d\xbb\xa7\x82\x34\xaf\xf2\xad\x7a\x1c\x36\x22\x36\x01\x55\xbd\xb2\xc2\x62\xd2\x09\xbf\xa9\x47\x3d\xa1\x01\xfc\x70\xe2\x28\x51\x8f\xe0\xcd\xf1\x28\xd0\x0a\xdf\x9b\xe6\x9d\xfa\xf7\x87\x7a\x50\x8f\x58\xfc\x7f\x57\x38\x48\xa4\x83\x76\x49\xe3\x12\x9f\xc1\x79\xeb\x71\x5f\xd2\xf6\x55\x00\xca\x08\x95\x3d\x1e\x57\x54\x59\xd2\xfb\x40\x7a\x6d\x6d\xb0\xd6\x7a\xb2\xa4\xea\x19\x4b\x4a\x86\x5f\xcf\xe3\x91\xc4\xd9\x18\x6e\x5e\xf5\x3c\xa5\x9d\x66\x0d\x35\xbd\x9e\x68\x80\xf5\xc4\x10\x7a\x12\x71\xbf\x9e\xc9\x74\xc9\x74\xa1\x83\xd4\x33\x53\xe3\x33\x46\xbd\x20\x8f\x2a\x2a\x6e\x3c\xa2\x72\x88\xe1\x7a\x86\x30\x8f\x47\x0b\x52\xa2\x80\xcb\x54\x31\xe6\x85\xbb\x8b\xf5\xbc\xad\x6e\xec\x2f\x0b\xd1\x3c\xeb\xf9\xd2\x99\xe7\xeb\xac\x8b\x99\x53\x93\xad\x4a\x30\x8a\x82\x73\x4e\x95\xdb\xd5\x64\xd4\x02\x76\x93\x35\x31\x77\x6a\x8a\xb9\x53\x50\x37\x6a\x8a\x39\x13\x0f\x2f\x0e\xcd\xe8\xb8\x64\xdd\x80\x9e\x4f\x27\xcc\xb3\x26\x36\x50\x15\x10\xf8\x92\x2c\x15\x95\xa9\x8a\xe5\x7e\xa6\xa3\xfe\x51\x80\xd7\xe4\xc8\x25\x47\x8e\x3b\x8f\x15\xb4\xf0\x78\xcc\xf8\x72\xec\x71\x6b\x3e\x48\x96\x31\xc6\x17\x0c\x3c\x35\xdb\xfd\x30\xaf\x74\xda\x63\x40\x53\xc7\xe3\x91\x16\xb5\x82\x7b\xc4\xc3\x5a\xc5\x5e\xa0\x66\x74\xfc\x9a\x8d\x86\x8d\xb3\x5b\xcd\x2f\x13\x50\xec\xd8\x13\xad\xaa\x16\x87\xb3\xc4\x70\x16\x42\xb7\x54\x50\x42\xe3\x61\x56\x6a\x0c\x54\x65\x3c\x3e\xb2\xd2\x8f\x85\x6d\x73\x2d\x5f\x8c\x27\x7b\xa5\xaa\x0a\x58\xab\x17\x10\x6c\x45\x75\xb2\x55\x8e\xbd\x4e\x70\x76\x6a\x65\xb7\x54\x2b\x51\x52\x30\xa3\xd7\x5a\x2f\x49\xe2\x57\x8d\x28\xa1\xc2\xbe\x2a\x30\x7b\x41\x8b\xc6\x36\xa4\x41\x6d\x1c\x52\x14\xae\xba\xd7\x76\x32\xf0\xcd\x98\x77\xc4\xc8\xac\x0d\x4e\x5d\x81\x7d\x0b\xc5\x80\xbc\xcd\x74\x20\xa5\x9d\xb0\xa5\xda\xba\x34\x4e\xb4\x0b\x77\xc9\x6b\x73\xe4\x1b\x3e\xe8\xa5\xc4\x0e\xbb\x36\x5b\xdb\x88\x64\x78\xa2\x09\x56\x40\x88\xe2\xe1\x9d\x82\x60\x2e\xb5\x3b\x31\x81\x15\x8a\x74\xf1\x3d\x20\x79\xe2\xc1\x69\x35\xee\x7a\x15\x68\x9d\x78\xc0\x0e\xf1\x94\xab\x00\xe3\xc4\x83\xdb\x2a\x98\xee\x6b\xcf\x5d\xda\xf8\xd7\x5f\x85\xbb\x84\xb5\xe7\x57\x12\xcb\x17\x1f\xd5\xda\x0b\xd5\xeb\xfa\xaf\x73\x51\xba\x82\xb0\x12\x0f\x2f\x7b\x84\x50\xab\x7d\x9a\xd7\x7b\xcb\x5c\xd6\xaa\xdd\x79\x01\x96\x45\x29\xc1\x5e\x2b\x30\x0f\xf1\xe0\x08\x0b\x8f\xb2\x3a\x9c\x66\xc3\x69\xc6\xd9\x4e\x1d\xa8\x04\x75\x0c\x2f\x84\x84\x3a\x54\xc7\x80\x1b\x0c\xcf\xc4\xb9\xd8\x58\x07\x6a\x42\x1d\x97\xbd\xc2\xfc\x21\x12\x79\x3c\xbc\xd5\x01\xc7\x19\xeb\x96\xf6\xa2\x77\x46\x6b\x89\x26\x1e\x0f\x5b\xd6\xa2\x65\x84\xff\x8e\x87\x03\x19\x9a\x48\x9d\xce\xe4\xc9\x4c\xc6\xa3\xab\xa2\x8f\xc7\xa3\x99\x2c\xe6\xc0\xec\xd2\xbc\xb4\xc0\xc9\x47\x25\xda\x70\x3c\x82\x59\x71\x9e\x51\xe7\x47\xe5\xe6\xe7\x50\x20\x10\x2e\x3f\x87\x29\xbf\x70\xdd\xa1\x62\x21\x8f\x47\xf5\x96\x7f\xf4\xd3\x25\x4f\xbf\x2e\xaf\x56\x1c\xd1\x27\xc4\x97\x8c\x47\x30\xba\xca\xa4\xbd\x9d\xf0\x84\xf9\x2b\x04\x89\xaf\x77\x67\x6e\xdf\xba\x9b\x72\x2f\xaf\x12\xa1\x2e\x1e\x48\x88\x92\x49\x77\xc1\x3f\x8c\x18\x77\x72\xa7\xa6\xde\xf2\x4d\x42\xbc\x05\x2d\xda\x7a\xdb\xae\xfb\x35\x06\x41\x68\x21\x95\xfb\x55\xf1\x88\xf9\x84\xa1\xb3\x3e\x99\xcf\x11\xa5\xa9\x60\xc4\xac\x84\x09\x8a\xc7\xbe\x73\x42\x32\x04\x78\x7d\x14\xe0\xa8\xfb\xf5\x59\x94\x4a\x04\x9e\x74\x3a\x38\xc4\x4b\xf9\xbb\x1a\x29\xe5\x2c\xa1\xbb\xd7\xb7\x53\x13\xe2\x91\xa4\x93\xdb\x37\x95\x88\x18\xf1\x08\x45\xc7\xca\xe1\xc8\x16\x0f\x74\x0e\x8e\x9f\x2a\x9e\x36\xf1\x08\x5e\xc1\xae\xbd\x7e\x95\x3e\xf9\xaa\x7d\xc2\x8c\xfd\x1a\x33\xe7\xd3\x8e\x5d\x43\x49\xaa\x9f\x5c\xeb\x6b\xde\x58\xa1\xdb\x3f\xc7\xff\x8b\xf1\x2f\xd8\x4d\xaa\x7b\xa2\xca\x75\xf5\xc8\x1a\x8d\xf8\x1e\x1a\x86\x9b\x6a\xc1\xa6\x50\xb9\x52\x1e\x0f\x0d\x93\x4c\x89\x0f\x9b\x42\xc5\x0f\xa5\x60\x97\xad\xf8\xad\xc6\x63\x42\x8a\xfa\x2e\x65\xab\xfe\x99\xa5\xc2\x3b\x96\x8c\x7c\xc9\xc8\x6b\x68\xbf\x75\xc9\x16\xb9\x38\x5b\xf0\xd9\xa8\xcb\x4e\x5f\x76\x7a\x85\x4d\x2c\x0c\x08\x75\x71\x41\xef\xac\x2c\x4e\xdc\xd1\xe3\xb1\x69\x7c\xce\x75\xad\x57\xac\xea\x7f\xc5\x3f\x21\x1e\x00\xe3\x0e\x48\x1f\xcd\xd7\x8f\xaa\x73\xd2\xd6\x0e\x6a\xd2\x8e\xda\x8d\x30\xd8\x83\x36\xa5\x11\x41\x01\xb7\xaf\xa6\x0a\xd2\x50\x41\xd2\x59\x5b\x86\xf6\x49\x5b\xd2\x6a\xd0\x96\x59\x17\x59\x5b\x94\x70\x86\x3c\x88\xc7\x17\xa4\x58\x73\xed\x64\x55\xb7\x13\x6f\xc6\x62\xa1\x67\x1d\xd0\x62\xb1\x14\x22\xf6\xb7\x93\xad\x49\x3b\x87\x4d\x8d\x7d\x53\x3b\xd1\xb7\xda\xa9\xbe\xc5\xcd\xa3\x76\x4e\x3f\xa7\xbe\xc5\xbc\x6e\xe7\x63\x5e\x55\x3f\x10\xaa\xda\x69\x85\xcf\x5d\xe1\x99\xff\x28\xd4\xdb\xf9\x3d\x64\xf9\x0c\xc0\x18\xf3\xb4\x25\xb6\xb0\x2d\x1d\x31\xee\x04\x03\x6e\x68\x22\xf1\x08\xc6\x4a\x94\xd8\x96\x06\xcd\x66\x0f\x95\x0c\x51\xda\x92\x15\x4d\xc4\xaf\xc0\xbd\xa2\xa9\x68\xb4\x44\x5c\xc6\x93\xa1\x6b\x89\x69\xda\xd8\x43\xa5\x13\x44\xbf\x86\xfd\x38\x1e\x5c\x3a\x69\x21\x1e\x5a\x2e\x7c\x8e\xad\x4a\x2c\xd3\xa8\x09\x08\xf9\xf1\xc0\xb5\x89\x60\x33\x2d\x33\x9f\x5b\xf6\x8a\x0f\xe6\x81\x96\x3f\xbf\xf7\xf9\xbd\xd8\x7d\x34\x50\xd9\xe3\x31\xcd\x1b\xfd\x5d\x30\x2b\xb6\x62\x0c\x1e\x2e\x02\xb6\x62\xfd\xca\x5e\x46\x31\xb7\x5a\x79\xf8\x5e\xc1\xae\xd5\xb9\x19\xd9\x0a\x26\xf8\x56\xbe\xf3\x5f\x7f\x55\x62\x54\x34\xec\x4d\xf1\xb8\x84\x40\x8c\xac\xd5\xfe\xac\x87\xb4\xe0\xf1\xad\xa2\x9a\xb4\x1a\x8c\xb8\x72\xa3\xa1\xd5\xfc\x48\x7a\x4d\x16\xad\x00\x41\x3a\x1e\x39\x92\x05\x1b\x6d\xd5\x42\xab\x85\x52\xb7\xba\xfc\x18\x57\x74\x4f\x0e\xbb\x5a\x5d\x9f\x34\xfb\x38\x38\x46\x53\xbb\x68\x68\x17\xe9\xe4\x98\xa8\x35\x44\x41\x6b\xc1\x9b\x2a\x3b\x92\x06\xa8\x6b\x3c\x1e\x61\x3d\xe3\x73\x0d\x36\xda\xb0\x2c\x55\xc2\x9a\x34\xa0\x56\xe3\xf1\x7a\x7d\x8b\xac\xdd\x64\x6c\x66\x1a\x3b\xdc\x06\xb6\x68\x3c\xf0\x1b\xe3\x56\x64\x03\xe9\x33\x1e\x8f\x01\x41\xa3\x15\xed\xa1\xad\xed\x41\x14\x12\xaf\xbb\xf5\xc4\xec\x01\xb1\xaf\x9e\x39\x92\x81\xfa\x16\x8f\x12\xa4\x60\x54\x0d\x1c\xae\x78\xd0\x73\x5c\x35\x6b\x60\xf8\xc4\x83\x3d\x0f\xe8\x98\x6d\xb4\x05\xad\xb3\x66\x7a\x8d\xda\x0d\xc7\x7f\x4c\x2f\x5d\xd1\x58\x30\x64\xe2\x71\x4b\x23\x1d\x1b\x92\x36\xdc\x90\xe0\xc4\xda\x06\x5b\xad\x26\x08\x4a\x1f\x09\xda\xb2\xdc\x65\xb9\x4c\x0a\x7c\x29\xe2\x61\xb9\xac\xf3\xd9\xa9\xcb\x24\x82\x4c\xe1\x94\xad\xcd\x97\xd6\x4e\x1c\xfb\x4a\x0b\x8e\xdb\x26\x3c\xad\x4d\x79\x1a\x97\x17\xdb\xe5\x6a\xf4\xc0\xbe\xe3\x84\xda\x38\x47\x8e\x87\xe5\x86\xc2\xda\x2e\xac\xc9\xed\x22\xfe\xcc\x09\x68\x5e\xbb\x50\x9b\x1a\xa2\xfd\x2c\x38\x11\xb4\xeb\xf2\x7b\x57\xcc\x32\xcc\xe8\x8d\x78\xe3\xf1\x38\xcd\x9a\xa1\x7d\xd2\x96\xb4\x18\x70\xc2\x7c\xc7\xc3\xe5\xe3\xe7\x5e\xa6\xd4\x65\x2c\x52\xbb\x8f\xa0\xd6\xf1\xb0\xca\x21\x4a\x1b\x61\xa2\xe3\x61\xf5\xe0\x20\xf7\x41\xb7\xdc\xb8\x76\x74\x3c\x5d\x1b\xa1\x79\xe3\x31\xa3\x7a\x70\xbf\x9b\x0d\x72\x43\xcd\x88\x62\xf9\x9c\x3d\x4a\x84\x5e\xc3\xa8\xb5\x7b\x4a\xba\x10\xe0\x23\x91\xd5\xc6\xde\xc4\x02\x38\x81\x6d\x6e\xb7\x03\x4e\x7c\x5a\xe3\x3e\x35\x62\xc7\xc6\x63\x9a\x8c\xca\x71\xc2\xd4\x6e\x62\x9e\x9f\xe0\x0a\x37\xa2\xba\xc6\xc3\x0b\x77\x30\xd0\xfb\xb3\x61\x5e\x7e\xc3\x0b\xb6\x11\x8c\x33\x1e\x85\xa8\x32\x31\x1d\x1f\x27\xb7\xa1\x2e\x8d\x12\xd6\x1e\xd9\x16\x01\x02\xcf\xc2\xa1\x43\x7b\x4d\xf7\x26\x3f\x47\x2b\x5e\x45\xc7\xeb\x7d\x79\x4c\x3a\xed\x2b\x54\x59\xef\xd3\x8e\x5b\x6c\xfb\xd8\x35\x36\x6f\x17\x75\x62\x18\xb7\x8f\x43\x9f\xf6\xe1\x45\xd0\x89\x3e\xdc\x08\xc7\x13\x0f\xb6\x45\x8a\x27\xd5\x84\x86\x9a\x50\x0b\x43\xa1\x96\xd0\xb6\xb7\x6a\x3d\xa0\x7d\x66\xfd\xcc\x0a\xf7\x59\x9c\x1f\xb4\x25\x64\x08\xa8\xf7\x6d\x39\x55\x96\x3d\xc5\xb5\xae\xee\xf9\x6c\x3f\x74\x34\x80\x87\xf4\x83\x4d\x72\x3f\x10\xf6\x05\x57\xb7\x7e\x30\xa5\xba\xc7\xad\xb3\x9e\x91\xee\x8c\x1d\x42\x3c\xf0\xdd\x89\x85\xd6\x4f\x84\x43\x3f\x8d\x9c\x8f\xbb\x6d\x3f\xb1\xf6\x76\xe4\x65\xd2\xd0\xd5\x95\x70\x1d\x09\x97\x34\x74\xf5\x84\x00\xea\x29\xb8\x70\xc5\x34\xd5\x13\xd6\x80\x9e\xca\x01\x29\x0a\x4d\x45\x92\x38\xda\x35\x91\x0c\x73\x58\x4f\x98\xc3\x0a\xc7\x76\x3d\x35\x6a\x92\xbc\x84\x42\xbc\x8c\x9e\xba\x25\xe0\x24\xaa\xd9\xac\x27\x1b\x96\x5c\x2b\x44\x9f\xee\x9e\xec\x76\x4e\x76\x2b\xe8\x84\x3d\x63\xc2\xea\x59\x13\x56\x1f\xe5\x8f\x92\xbd\x7b\xa6\xdb\x3d\xd3\x1d\x44\xb0\xec\x19\x0d\xb4\xe7\xd0\x40\xf5\xef\xeb\x1e\xdf\x76\x8f\x6f\x27\x06\xf2\x9e\x0b\x95\xc7\xf4\x57\xb1\x15\xf7\xec\x40\x65\x55\x61\x6e\xfe\xf5\x6c\x1b\xf3\x6e\x63\x27\x2b\x66\xc0\x9e\x87\x7d\x11\x62\xb7\x63\xda\xfb\xbb\x67\xb6\x11\x05\x58\xb5\x5e\xd8\x48\xf6\xc2\x46\xb2\x8c\xe0\x39\xbd\x60\x7f\x8b\xad\x9c\x34\xd2\x21\x77\x62\xb3\x44\xb9\xb1\xc1\xee\xc5\x32\x8a\x9e\xfe\x23\xc5\x88\x16\x36\x0d\xbd\x08\x8d\x80\x3b\x77\x2f\xb0\xe2\x5e\x16\xfd\x48\x56\x84\x6b\x3c\xbc\x7d\x17\x3a\x78\xaf\x0e\x4b\x15\xa6\x9b\x18\x5a\xbd\x76\xd3\x79\x53\x09\x4b\x58\xaf\x70\xd3\x5e\xa3\xd8\x8a\x7b\x6e\xaf\xe8\x3b\xbd\xa2\x98\x15\xee\x0b\xf4\xea\x7c\xab\x9c\x4b\x0c\x0c\x66\x1d\x48\xfc\xbf\xbb\x60\xf8\xe3\x34\xdd\x32\x6f\x70\xc4\x8a\x76\xdd\x95\xd9\x1d\x99\x5d\x39\xa8\xec\xed\xa4\xad\x1c\xfc\x9c\x05\x56\xdf\xdb\x79\x4b\xf3\xc6\x20\x73\xa6\x61\x46\xef\x80\xdc\xd7\x1e\x7a\x69\x6f\x9c\x13\xf7\x66\xb4\x4b\xa2\x2d\xf5\xc6\x49\x71\xa8\x90\x24\xa3\x04\x4c\x09\x1d\x00\xf6\xca\xe5\xe7\xee\xf9\x51\x07\x57\xbd\x3a\x9f\x91\xde\xf1\x78\xfd\x58\xb4\x00\xe8\xee\x78\x90\x6c\x46\xbf\x35\x98\x6b\x07\x7e\x3b\x25\x62\x04\x75\xf0\xb7\xe3\xc1\xdc\x05\x07\xb2\x03\xb6\x1d\x0f\x9c\x92\x38\x60\xec\xed\xb6\xd4\xdb\xcf\xc5\xe4\x04\x26\x38\x1e\x04\x9b\x74\x15\x61\x67\x88\x47\x28\x2c\xf8\xf4\x76\x2d\x0b\x5d\xd0\x5d\xc4\x70\x07\xed\x36\x1e\x1c\xeb\x81\xc6\xd2\xc1\xad\x8d\x47\xf7\x6b\x64\x65\x8b\xd7\x81\x9b\x3d\x0b\xde\x0b\x5d\x6b\x43\x07\xc9\x35\x25\xee\xde\xf4\x6e\xfb\x85\x41\x9d\xa8\xdb\x5d\xb5\xa3\xa3\x76\x54\x30\xc8\x3b\xf8\x96\xf1\x58\xde\xdd\x8c\x3e\x01\x90\x30\x1e\xf0\x38\xee\xbd\xf7\xc1\x89\x68\x1f\xc6\xbf\x27\x32\x49\x1f\x2e\x7b\x81\xd7\x0a\x0e\x1d\x7d\xe0\x1e\xd2\x87\x17\x63\x30\x9c\x75\xc0\xb8\xe2\x41\xe4\x01\x4e\x25\x3a\x68\x52\xf1\x40\x6c\x00\xab\xdc\xe7\x4d\xde\x49\x7f\x82\x58\xd4\x27\xfe\x10\x7d\x7a\x59\x85\xf3\x91\x7e\xc9\x27\xc0\xbd\xa9\x9c\x2b\x74\x9c\xff\xe2\x41\xb7\x83\xe4\xdc\x2f\xa7\x09\xee\x5d\x95\x63\x85\x0e\x8e\x48\x3c\x2c\x94\x09\x06\xee\x46\x3c\x28\x94\x01\xbb\x3e\x73\x7e\xe4\xac\x51\xdd\xdb\x32\x6f\xcb\x6c\x90\x38\xcb\xe8\x77\xb2\xe7\x46\x94\x79\xcb\x7f\xef\x42\xb4\x73\x74\xbd\x7e\xa3\x4b\xf5\x3b\x74\xa9\x4a\xf4\xe4\x7e\x63\x98\xec\xb7\xb0\x26\x78\xec\xf4\x1b\x95\xb8\xdf\x62\x66\x60\x18\xee\xb7\x9d\x79\x8b\x90\x81\x11\xb8\x3f\x2e\x92\xc7\x45\x82\x13\x6f\xc7\x4f\x3b\x1e\x44\x91\x62\xbb\xd5\x1f\x3b\x78\x87\x33\x46\x5d\xeb\xb8\x45\xc7\xc3\x7b\x96\x30\x8e\x07\x21\xd7\x1f\x84\x5c\xe1\x26\x4a\x27\xca\x6e\x3c\x36\x2d\xbe\xf7\xca\x88\x5e\x19\x11\xa1\x58\xfa\x8b\xa2\xdc\xdf\x61\x7f\x52\x17\xc2\x27\xc4\x83\xa0\xa4\x58\xa4\x3b\xb7\x8b\xe3\x41\xa4\x51\xe2\xad\x77\x82\x28\xc4\x03\x01\xc9\x1e\xa3\x7f\x95\xb6\x7d\xb1\xe3\x6c\xdc\x5c\xeb\x9f\x3c\x8c\x88\x84\xe7\xc0\xe1\xa3\x13\x91\x30\x1e\x33\x92\x15\x48\x93\x52\xbf\x59\x82\x44\x63\x89\x2a\x18\x8f\x07\x52\x81\xf4\x4a\xb2\x1e\xf0\x61\x8e\x36\xe2\xf1\x91\x0c\x12\x9a\x69\xe7\xbe\x46\xe3\x6a\x76\x5f\xf6\xb0\x71\xba\x8a\xab\x73\xb9\x12\x57\xac\x8c\xe6\x80\x11\x5f\x20\x1e\x5e\x86\x1d\xd2\x86\x34\x6a\xcb\x18\x7a\x5a\xd2\x3d\x2d\x19\x04\x95\xed\xab\xfb\x35\x03\x34\x82\x43\xd1\xd7\x43\x1f\x11\xaa\xa9\x01\xc5\xd7\xb5\x18\x74\x2d\x06\x15\x20\x97\xbe\x96\x9f\x33\xb2\x1c\xbb\xc9\xe1\xe9\xec\xe0\x74\xb6\x71\x51\x73\x1c\x1c\xd2\x8d\x43\x4c\x53\x0e\x33\xc7\x81\x99\x77\x1c\x9c\x52\x55\x6e\x44\x8f\xb3\x45\xa9\xe3\x6c\x51\x2a\xc7\x3b\xe3\x44\xa8\x8d\x53\x9b\xd4\x51\xff\x2c\xcd\xc7\x19\xfb\x8e\x78\xa0\xf0\xe2\x50\x38\x4e\xa4\xca\x38\x83\x6f\x34\xbc\xa0\x87\xa7\xae\xe3\xc4\x8a\x95\x30\xa8\x0e\x4f\x5d\xc7\xb9\xf0\x81\x0b\x36\x3d\x3c\x73\x18\x9c\x39\x34\x0e\xc4\x46\x42\x3f\x1d\x09\x93\xc5\x44\xbc\x0d\xbd\x5d\x06\xde\x2e\x0d\x03\xf0\xc0\xa7\x25\x1e\x23\x48\xb1\x73\x1f\x1e\xb0\xc6\x92\xa5\xcc\x49\xb2\x69\x4e\xb1\xe8\x70\x3c\x1f\xe9\xb2\x04\x43\x4d\xe1\xf9\x3f\xd2\xe5\xe7\x94\x03\xd8\x09\x47\x66\xb9\x0c\xdd\xd3\x06\x7a\xe7\xf0\x50\x61\x64\xa1\xc2\xd8\xa2\x8c\x7c\x9a\xee\xa4\x2a\xc1\xcd\x07\xce\x6a\xf1\x58\x26\x23\x2b\x92\x60\x64\x83\xa4\x5b\xe5\xcc\x91\xf9\xc8\x78\xea\x8f\x12\x1a\xc9\xc8\xc8\xed\x91\x91\xdb\x15\xe9\x30\x0a\x07\x62\xa3\x78\x3d\xb4\x52\x6c\x61\x55\x8d\x82\xd7\xec\xa8\x94\x51\x2e\x69\x82\x3c\xb1\xf7\x18\x85\x8d\xc1\x28\xe2\x20\x61\x64\x1b\x05\x03\xcd\xd0\x51\x65\x10\x65\x67\x54\xfc\xd1\x46\x05\x39\x38\xd9\x8e\x6a\xd3\x2a\x4d\x23\x16\xd1\xa8\x58\xd9\x23\x0f\x59\x33\x59\x59\x32\xa3\xa2\x94\x25\x3c\x80\x47\x85\x4f\x8f\xea\xbd\xf5\x1a\xea\xc7\xa8\x37\x5d\x50\x85\x77\xc2\xf3\x6b\x70\x14\x11\x0f\xef\xfc\xc6\x4a\x1d\x0d\x2d\x73\xb4\x43\x7c\xef\xd8\x2f\x8e\x86\x75\x6b\x70\x58\x91\x12\x5e\xfb\xa3\x61\xca\x1a\x4d\x3c\xc3\x62\x3a\x24\xda\x68\x4a\x34\x6c\x2b\xc3\x9d\xff\x40\x77\x68\xb8\x62\x0d\x76\xfc\xf1\xf0\xee\x71\xb0\xf9\xa1\x32\x30\x54\x06\xea\x11\xcb\x7c\x34\x7b\xb4\x45\x8f\xb6\x22\xe9\xb6\x76\xe2\x05\x72\xca\x3e\x3a\x36\x93\xd1\x0d\xb9\x8f\x75\x7f\x60\x19\x88\x87\x57\x78\x59\xac\x1d\xab\xda\xe8\xc6\x76\xc6\x85\x70\x00\x56\x1e\x0f\xe4\x28\xa1\x63\x06\xf0\xe0\xf1\x20\xe8\x9b\x3d\xd0\x39\x2f\x19\x9d\x1b\x69\x03\x20\xe4\xc1\x71\x42\x3c\xf0\xfb\xa0\xf3\x06\xbb\xaf\x31\x8a\x9d\xc2\xf4\x1e\x2e\x83\x41\x38\xa3\xc9\x3d\xb1\x31\x1c\x8c\x61\x28\x39\xae\x2d\x0f\x20\x60\xe3\x11\xfc\xb6\x86\xe4\x1f\x40\xb9\xc6\x43\xf8\xd2\x0e\xcd\x31\x1b\x31\x66\x8d\xa3\xf2\xa1\xb9\x61\x68\x6e\xa8\x04\x25\x1c\x93\x83\xa5\x31\x39\x58\x9a\xb8\x48\x0f\x20\x44\xe3\x61\x07\x30\x05\xa6\x4c\x6d\x72\x29\xa6\xa2\x0c\x8f\x89\xeb\xc5\x00\xd8\xb3\x71\xad\x7b\x00\x28\x19\x0f\x6a\x82\x3d\x7a\x4c\x17\xcb\x8c\xc5\xd2\x70\xdd\x1d\xdc\xeb\x88\xc7\x8b\x8b\x6f\x54\xe4\x72\x3e\x01\x03\x98\x12\x96\xe1\x01\xd8\x5d\x3c\xfc\xda\x19\x59\x2f\xfc\x90\xc6\xd5\x51\xcc\x6a\x92\x76\x49\x63\xc5\xd7\xd0\x41\xc6\x75\xd1\x88\xeb\x0a\x56\x8a\x9f\xf1\xb8\xd8\x2c\x0e\x4c\x0e\x29\x55\x6a\x02\x06\x52\x3c\xb8\x43\x83\x44\x1b\xa0\xe0\xc4\x23\xff\xeb\xaf\xd6\x99\x27\xb7\x4c\xe0\x96\x09\x34\xb8\xe0\x8d\x4a\x3b\x80\xc3\x69\x5c\x90\x1e\x20\x10\xc4\x03\x6d\x10\xd4\xe4\xc1\xc9\x41\x3c\x9a\xb4\xc8\xfa\x20\x5a\xc7\x23\xc0\x0f\x78\x3b\xe3\xc1\x46\x3a\x88\xdc\xd1\x30\xaa\x0f\x2e\x57\xc5\x83\x8a\x20\x0e\x1e\x19\xf4\x03\x83\xc6\xb2\x34\x5e\x7b\xee\x3d\xf0\x19\x0a\x69\x3e\xde\x8f\x54\xc4\x80\x6e\x3d\x44\xe6\xe0\xa2\x65\x3c\x38\x2d\xc4\x36\x34\x74\x76\x18\x9f\x7d\x8e\x59\x76\x7c\x6c\x77\x07\x81\xa7\xda\x60\x00\x09\x9a\x1c\x8f\x0f\x52\x8c\xf3\x87\xa7\xd4\x30\x06\xc4\xb0\x8f\x38\xab\x88\xc7\xf0\x6b\x31\x95\x74\x89\x18\xba\x44\xcc\xc1\x48\x7f\xd5\xcf\x09\xf0\x80\xe5\x7d\x70\x89\x3c\x1e\x59\x1a\xb5\x73\xa2\x73\xfd\x35\x25\x22\x5e\x0d\x9c\xda\xff\x1e\x04\x5f\x4d\x89\x83\x9c\x81\xc7\x7a\x3c\x4e\x69\x51\x65\x95\x86\xe1\x35\xcf\x84\xc3\xd2\x58\x96\xbb\x76\xb9\xb1\x3d\x1a\x04\xdb\x8c\x47\x2c\x26\x20\xb2\x07\xe1\x21\xe3\x61\x47\xb1\x0e\xd7\xcd\x18\x2e\xee\xb6\x55\xa2\xbb\x0c\xa2\x0d\xc6\x03\x87\x49\x82\x45\x1f\xf8\xdd\xcc\x23\xc1\xda\x31\xe8\x4e\xfd\xb2\xe6\x21\x96\x2d\x36\xb4\x79\x60\x18\x98\xf8\x4e\xb4\x79\x1e\x7f\x14\xe9\xf3\xe0\x60\x7b\xea\x54\xde\x05\x3f\x42\x73\x88\x07\x4c\x04\xa7\xf9\x89\xa3\x55\x3c\x10\x1a\x62\x40\x9c\x31\x48\xf1\x10\x8a\x8f\x60\xa2\xda\x43\xe6\x29\x50\x38\xd6\xbe\xc9\x91\x41\x3c\x8a\x80\x09\xf1\xbd\x13\x53\xcf\xc4\x56\x72\x56\xa1\x70\x3c\x4d\x98\x9c\x26\x34\xc1\xa9\xce\xc7\xac\x8f\xd7\xd6\x09\x27\xae\xff\xc2\xc4\x7f\x21\x3e\xd7\x83\x86\x11\x74\x9e\x1f\x17\x97\x08\xb0\x7b\x62\x04\x9f\x27\x46\xf0\x24\x62\x13\x27\x0c\xf1\xf8\x48\x46\x23\xd0\x59\xe7\x19\xbc\xb4\x89\xc2\x93\x98\xbd\x33\x39\x7b\xb9\x42\x31\x13\x87\x29\x13\x05\x25\x68\x03\x5a\x93\x66\x5b\x77\xba\x47\x1a\xb2\x40\x9c\xfe\x94\xfc\x9e\x38\x33\x62\x40\x26\x76\x1a\x33\x81\x0f\x91\x3a\xe1\x56\x13\x56\xf0\x99\xf2\x4e\x17\x8d\xd5\x99\x6c\x26\x61\x22\x3b\x71\x80\x35\xeb\xcc\xd4\xcd\x4b\x6c\x5e\x55\xa2\x89\x4a\x14\xa2\x11\x92\x59\xbb\x31\x00\x08\x58\xad\x2f\xd9\x4c\x97\x4d\x23\x2e\x2c\xbe\x14\xf1\x10\xf4\x94\x78\xb5\x9c\x8a\xfc\x3d\x93\xf6\x03\x6e\x46\xcd\xf4\x98\xee\x11\x0c\xdd\xea\xbd\x96\xf1\x5a\x3d\x62\x9a\x66\x44\xdf\xcc\xc6\x18\x43\x89\x9e\x19\xf5\x6c\x66\xd5\x33\x64\xd0\xd4\xa3\x7e\xe2\xcb\xdb\xc5\xf9\xca\xb7\x59\x6f\x7b\x80\x59\xa6\xeb\xc5\xc4\xf5\x22\x68\xd1\x8c\x8c\x8d\x7a\xe2\x8f\xd5\xc5\x44\x2a\xa8\x08\xb3\xe8\x84\x23\x56\xbf\xae\xf2\xb3\xec\x01\x22\xdc\x6c\x65\x0f\x3d\xeb\xb0\x57\x08\x7a\x5b\x31\xbf\xcf\xca\x9d\x42\x51\x5a\x2a\xdb\x8a\x59\xdd\x56\xb0\x9d\x9f\x15\xff\xcc\x59\x45\x85\x14\x80\xaf\x61\x08\x98\x6d\x03\x55\x13\xea\xb6\x39\xb6\x2d\x76\x91\x86\x4b\x99\xcd\xc5\xda\xb2\xf3\x18\x28\x07\x4d\x23\x73\x9b\x46\x06\x81\x5e\x1b\xd6\x81\xd9\xb4\x0e\x60\xf0\x9d\x0d\xab\xd2\x6c\xc0\x22\x70\xf7\x77\x6a\xa5\x98\x0d\xc0\x30\x23\x4d\x77\x18\xe7\xec\xc2\x1f\x09\xa8\xa6\x67\xc3\xc4\xb3\xa1\x73\x70\x31\xbb\xf3\xa4\x0b\x34\x07\xdf\x9c\x1d\x0f\x83\xd9\x27\x17\x74\x58\xc6\xdd\x32\xbb\xe1\x8d\xc4\x4f\xed\x77\x96\xc6\x15\x23\x62\xec\x12\x56\x36\x1e\xb0\x2f\xa1\x26\xbb\xe3\xd5\x1d\x2f\xc1\x65\x51\x51\xe2\x61\xa9\x44\xf4\x1d\x9c\x1f\xcc\x91\xc5\xc0\x15\x81\x1f\x35\x79\x0e\x0c\x26\x68\x2f\xc1\xda\x21\x19\xb3\x36\x31\x25\x46\x93\x26\x56\x9f\x50\x33\x1e\xab\x4c\x8e\x55\x3a\x41\xb0\xe6\x70\x62\x0f\x63\x8d\x09\xbe\xa8\xaa\x32\x55\x55\x06\xa7\x83\x73\x3a\x4d\xa6\xd3\x44\xf0\x3d\xf4\x91\x78\x98\x17\x66\xc4\xdd\xd6\x78\x08\x2b\x4e\x32\x1b\x31\xb3\x80\x10\xc2\x47\x67\xb3\xe6\x9d\x15\xc8\x66\x47\x62\x8a\x7f\x7b\x0a\xc4\x4d\x17\x4f\x42\x46\x8b\xc1\x31\x51\x06\xe7\x9c\x40\x4a\x12\x60\x78\xca\x27\xe7\x45\xc6\x2c\x86\x35\xf3\x66\x0a\xec\x2f\x88\xe0\xfc\x2c\x73\xc3\x7c\x0a\xd4\x2d\xb3\x9b\x22\x7c\x32\xfa\x73\x59\xe6\x12\xa9\x99\xaf\x61\xa3\x98\x73\xe3\x7a\x8a\xc7\xbe\xcc\xb9\x36\xd8\xb0\xf8\xc0\xd0\xae\x64\x70\x75\xb1\x56\x1d\xfe\xeb\xde\x08\xb8\xa4\xbb\x4d\x77\x7b\xbb\x58\x18\x56\x39\xf6\x45\x10\x79\x5c\x96\xe6\x85\x8d\x6a\x5e\x82\x49\x77\x81\x4c\xe9\xcb\x0b\x64\x37\xbc\x7a\xe6\xb5\x24\x2d\x41\x54\x84\x45\x93\x3b\xdf\x72\x67\xcc\xe6\xf3\x76\xf1\xdf\xc7\x2e\x54\x68\x4c\xf2\xde\xc0\xfa\x70\xe7\x7b\xde\x18\xad\xe6\x0d\x8a\x0f\x71\x76\xa7\x16\x9f\x89\xc5\xa7\x6f\xe4\x4c\xd7\xea\x9d\xbd\xe1\x2f\xdc\x9c\x6b\xf5\xde\xa0\x3d\x44\x9e\xbe\x9d\xac\x77\x01\x95\x47\x34\x52\x97\xef\xed\xf2\xc5\xcc\x34\x6f\x3c\x29\xe6\xdd\x36\xd4\x20\x59\x9b\x59\x9b\x1d\x5c\xc5\x81\x34\x6f\x37\xa0\x86\x10\x7b\x53\xda\x04\x00\xe6\x4c\xff\xb3\x3c\x6f\xf3\xff\x25\xce\x3d\x6b\x9a\x9c\x35\x75\x41\x9e\x6f\xb9\xd6\xfd\x0a\x9e\x27\x78\x1a\xec\xe3\x27\x54\x87\x20\x4e\x85\x16\x3e\x1b\xe7\x67\x63\x7d\xf1\xb5\xa7\x1a\x8e\x43\x80\xb3\x66\xba\x66\xa8\x10\xd1\xa3\x6c\x8e\xe1\x62\xe7\x21\x7a\x13\xbb\xc7\xf9\x1a\x9a\xf4\xd8\x38\x4c\xaf\xb4\x8d\x28\x28\x0e\x12\xbd\xfd\xaa\xc6\x08\xa0\xfd\x56\x69\x1b\x72\x59\x5c\x97\x6a\xde\x4a\x6f\x8b\xdf\x63\x8f\xbd\xbb\xc7\xc4\xeb\x41\xc5\x9e\xef\xdc\xb0\x3b\xa2\xd9\x58\x95\x8d\x4f\xb1\xa1\x56\x98\x45\xef\xc6\x32\x10\xa6\x82\xcb\x56\xf3\xe3\x64\x3a\x0b\x95\xf9\xc9\x07\x3e\x40\xe9\x70\x5d\x9b\xaa\x94\x93\xd8\x4b\xe9\x30\x68\x3e\x11\xfd\xe2\x41\x98\xf0\x8d\xb1\xf1\x49\x32\x0c\x39\xe3\xfe\x3d\xd2\x5e\xf1\x0d\xc4\x3a\x40\x1e\x71\x7e\x95\xb2\x40\x4f\x84\xb6\x89\x07\x17\x70\x8a\x70\x03\x16\x20\xe6\x89\xf1\xdc\x31\x51\xcc\x05\x64\x56\x31\x18\x3a\x1b\xa7\x89\x33\x4c\x3a\x76\x80\x74\xdc\x38\x27\xe1\x71\xa2\x00\x63\xd6\xd3\xc1\x84\x04\x4e\x59\xd8\x03\x4d\x5f\x73\x35\x02\xfb\xc3\xb6\x17\x57\x8f\xe6\x6a\xc6\x5e\x37\x5c\xba\x5f\x9b\x7e\xcd\x90\xf3\x2a\x0b\xeb\x31\x48\x8b\x11\x06\xf2\x63\xa4\xa0\xfd\xaf\x9e\xf5\x87\x81\x3d\x82\x90\xff\x79\xc7\x51\xe1\x31\x8f\xdf\x70\xe4\xf5\x9f\x77\xdc\x1e\x39\x5a\xfe\x7d\xd7\xff\x79\x87\x33\xfd\x09\x66\xd3\x8e\x36\xbb\x78\x17\xff\x3a\x65\xdb\x0e\x2b\x76\xbf\x8b\x2e\xdd\xff\x76\xad\x0d\x3f\x11\x9f\x5e\xcc\xa5\xfb\xdf\x69\x78\xa8\xdf\xc0\x4d\x98\x75\xf7\xbf\x46\x20\xe2\x62\xb7\xb6\xf3\x85\x24\x3a\x6b\x31\x40\x01\x73\x6f\xcd\x69\xd0\x01\x2f\xfb\xc7\xa7\x17\x18\xee\xa3\x7a\x3f\x9b\x5d\xc5\xba\x42\x5e\x0f\x1c\xd5\xd6\xc5\xb0\x2d\x76\xa5\xc6\xee\x5a\x60\x84\xc7\x63\x5f\xe6\x9e\x5c\x1d\x8e\xbe\x5f\x42\x1e\x93\x11\xc0\xe3\x78\x70\x73\x8e\xdb\xdb\x44\x11\x8f\x47\x2c\x77\x8e\x50\x17\xe1\x97\xe2\x31\xbc\x88\x41\xb2\x6c\x32\xae\x32\x0c\x2e\xfe\x7e\xa8\x9f\x0b\x07\x31\xcf\x90\x97\x3b\xaf\xc5\xce\xab\x13\xe9\x75\x11\xd4\x35\x1e\x17\xa4\x13\xd2\x2d\x29\x26\x3f\xd0\xf4\x8b\x68\x44\xf1\xf8\x48\xe5\xb7\x16\x24\x60\xdf\x27\x17\x97\xd9\xbd\xc5\xa3\x90\x91\x6f\x15\x2b\x81\xe3\x65\x6a\xdc\xd9\x26\x4a\x6c\x3c\xac\x85\xd7\x91\xe9\x57\x10\x35\x1a\xf7\xb2\xd9\xb9\xc5\x83\x6b\xd4\xde\x3d\xbe\xa4\x60\x38\xe4\x62\x2f\x3a\xd2\x5a\xbb\xee\x5c\x29\x96\x52\x63\x7c\xbc\x41\xcd\x32\x58\x58\x80\x4f\x8f\x1d\x16\x6b\xe2\xef\x45\x84\x72\x2f\xec\x13\x09\x31\x1e\x68\x1b\xff\x8b\x8b\x53\xfc\xf8\xcf\xd7\xbf\xff\xdb\xff\xfe\x7f\x5c\xff\xfe\x7f\x5e\xff\xf9\xfb\xeb\xf9\xef\xff\xf1\x1f\xdf\x7f\xf9\x6f\xef\x7f\x7a\xfe\xdb\x5f\xff\x5b\x50\xff\x7a\xbf\xf5\x9f\xfe\xcb\xf7\x1f\xdf\xff\xfd\x5f\xff\xfb\x7f\x3c\xdf\x5f\xff\xfe\x5f\xff\x3d\x72\xf1\xf7\xff\x04\x00\x00\xff\xff\x2d\x58\x41\x22\x3d\xd6\x02\x00"); +func _fedb ()(*asset ,error ){_geff ,_cdgd :=_gffdg ();if _cdgd !=nil {return nil ,_cdgd ;};_bgac :=bindataFileInfo {_ee :"HKm314-B5-V",_ffd :615,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492389,0)};_ceab :=&asset {_da :_geff ,_dc :_bgac };return _ceab ,nil ; +};func _ffa ()([]byte ,error ){return _gb (_egdg ,"KSCms-UHC-HW-V")};func _gced ()([]byte ,error ){return _gb (_bfdd ,"UniKS-UCS2-H")};func _daf ()([]byte ,error ){return _gb (_bbg ,"83pv-RKSJ-H")};func _aegb ()([]byte ,error ){return _gb (_afbff ,"UniJIS2004-UTF32-H")}; +func _cdefb ()([]byte ,error ){return _gb (_eebe ,"UniCNS-UTF8-H")};func _dfdd ()([]byte ,error ){return _gb (_dcda ,"GBpc-EUC-V")};func _eabga ()(*asset ,error ){_dgfa ,_eacb :=_gbgg ();if _eacb !=nil {return nil ,_eacb ;};_dbc :=bindataFileInfo {_ee :"KSC-H",_ffd :9400,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492507,0)}; +_bdgf :=&asset {_da :_dgfa ,_dc :_dbc };return _bdgf ,nil ;};func _fec ()([]byte ,error ){return _gb (_gdad ,"Adobe-GB1-5")};func _fbeg ()([]byte ,error ){return _gb (_gefbg ,"V")};func _ecgd ()([]byte ,error ){return _gb (_cefa ,"ETenms-B5-H")};func _ffeca ()(*asset ,error ){_adfb ,_ffgc :=_fbfdf (); +if _ffgc !=nil {return nil ,_ffgc ;};_faab :=bindataFileInfo {_ee :"UniKS-UTF16-H",_ffd :120685,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493035,0)};_acbd :=&asset {_da :_adfb ,_dc :_faab };return _acbd ,nil ;};func _bdfg ()(*asset ,error ){_ddbd ,_gab :=_eaeb (); +if _gab !=nil {return nil ,_gab ;};_cefg :=bindataFileInfo {_ee :"EUC-V",_ffd :913,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491862,0)};_gbgde :=&asset {_da :_ddbd ,_dc :_cefg };return _gbgde ,nil ;};func _fdd ()([]byte ,error ){return _gb (_accb ,"KSCms-UHC-HW-H")}; +var _eaece =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\x4b\xab\x65\xc9\x71\xfd\xe7\xf7\x53\x9c\xa1\xfe\x03\xfd\x7b\xef\xcc\xc8\x17\x5c\x2e\x98\x96\x84\x1a\x21\xcb\xb8\x2d\xdb\x60\x3c\xc8\x67\x53\xe0\xbe\x55\x54\x55\x0f\xf4\xed\x4d\xac\xdf\x51\xcb\xb2\x0d\xf2\x40\x84\x7a\x55\x46\x66\xe4\x63\xad\x88\xcc\x7d\xee\x37\xdf\x7e\xf7\xab\xef\xde\x3f\x7c\x7d\x7c\xf3\x0f\x9f\x3f\xce\xef\xf7\xd7\xc7\xf9\xf0\xbe\x3e\xef\x2f\x1f\x7f\xfa\x3c\xf7\x63\xec\x1f\x3e\xbc\xbf\xbc\xdc\xe1\xb1\x3e\xcc\xaf\x7f\xfe\x4f\x99\xf9\x63\xff\xf4\xf2\xe2\xfe\xdf\xff\xe9\xcb\xd7\xfd\xe3\x77\xef\xe7\xe3\x23\xd2\x6e\xfd\xf4\xe9\xd9\xf6\xf1\xf8\xe6\x1f\xf7\x0f\x1f\xbe\x7c\xfd\xfc\xa7\xc7\x2f\xfe\x6e\x7d\x1c\xfb\xff\x3d\xd6\x3e\x8e\xff\xe1\xf3\xda\x9f\x3f\xbc\xff\xf0\xf8\xc5\xef\x3e\x7e\xde\xfd\xfe\xf9\x1f\xbe\xff\xe9\xd3\xa7\xff\xd8\x3f\xee\xf7\xaf\x8f\x5b\xd8\x7e\x5f\xb2\x2f\xdf\x7c\xfb\xfb\xfe\xe9\xef\xfb\x8f\xfb\xf1\xcd\xef\xbe\xff\xf6\xc7\x2f\xbf\xfc\xe3\x6f\xbf\xfd\xe5\x6f\xf5\x6f\xfa\xa7\x7f\xde\x9f\xbf\x7c\xf8\xf8\xfe\xb8\xaf\xff\x7f\x5d\xf9\x2f\xf8\x3f\xfd\xe9\xd3\x7e\xf6\xf5\xf2\xcd\x1f\xbf\xfb\xd5\x1f\xce\xf9\xb2\xbf\x3e\x2c\x5e\xb4\xf9\xd7\x3f\x7e\xf7\xab\xc7\xbf\xdd\x8f\xfb\x7a\x84\x64\x57\xfb\xf7\x67\xd3\x7f\xf9\xfd\xc7\xb5\x1f\x34\x7a\x09\x4c\x69\x7e\x5c\xfb\xcb\xa7\x3e\xf7\xe7\xfe\xfe\xc3\x7e\x79\x3c\x5e\xaf\xeb\xed\xf1\x78\xbc\xd6\xeb\xcd\xff\xab\xde\x76\xbf\x3d\x5e\x7f\xf3\xeb\xdf\xfc\xfa\xcd\x23\xff\x6f\xed\x5f\x6e\xba\x79\xff\xf8\x75\xed\x03\xa6\x1e\x5e\xef\xf3\xf6\xb8\xdd\xe3\xbf\xfe\xd3\xcb\x7d\x5d\xcf\x71\x3f\xac\x67\xeb\xe0\xad\xcb\xf6\xd6\x7f\x1e\xad\xde\xa9\xbf\x3d\x5a\x8c\xd1\xa1\x0c\x54\x04\xa5\xe6\x50\x05\x3a\xdb\xa1\x9a\x5e\x5e\x6b\xc0\x31\xc8\x31\xdd\xde\x57\xc0\x31\xc8\x31\xc5\xe2\x10\x8e\x41\x8e\x29\x7b\xf7\x11\xc7\x28\xc7\x5c\xbd\xfb\x88\x63\x94\x63\xb9\xbd\xfb\x88\x63\x94\x63\x31\xef\xde\x70\x34\x39\xd6\xec\xdd\x1b\x8e\x26\xc7\xda\xbc\x7b\xc3\xd1\xe4\xd8\x6e\xef\x3e\xe1\x98\xdc\xf1\xbe\x2e\xf3\xfe\x13\x9e\xa9\x80\x15\x1f\x20\xe1\x9a\xdc\xf5\xbe\xae\xe6\x23\x64\x7c\x33\xbe\x21\xf8\x10\x19\xdf\x8c\x6f\x30\x1f\x23\xe3\x9b\xf1\x0d\xc5\xc7\x28\xf8\x16\x7c\xed\xf2\x31\x0a\xbe\x05\x5f\x0b\x3e\x46\xc1\xb7\xe0\x6b\xc9\xc7\xa8\xf8\x56\x7c\x53\xf1\x31\x2a\xbe\x15\xdf\x7c\xf9\x18\x15\xdf\x8a\x6f\x8e\x3e\x46\xc3\xb7\xe1\x5b\x92\x8f\xd1\xf0\x6d\xf8\x96\xea\x63\x34\x7c\x1b\xbe\xf5\xf2\x31\x3a\xbe\x1d\xdf\x16\x7d\x8c\x8e\x6f\xc7\xb7\x65\x1f\xa3\xe3\xdb\xf1\x6d\xd5\xc7\x18\xf8\x0e\xf9\xde\xf7\xed\x63\x0c\x7c\x47\x01\x8b\x3e\xc6\xc0\x77\xc8\xf7\xbe\xb3\x8f\x31\xf1\x9d\xf8\x86\xe6\x63\x4c\x7c\x27\xbe\xf1\xf6\x31\x26\xbe\x13\xdf\x68\x3e\xc6\xc2\x77\xe1\x6b\xd9\xc7\x58\xf8\x2e\x7c\xad\xf9\x18\x0b\xdf\x85\x6f\x0a\x3e\xc6\xc6\x77\xe3\x9b\xcd\xc7\xd8\xf8\x6e\x7c\x73\xf1\x31\x36\xbe\x1b\xdf\xdc\x7c\x8c\x83\xef\xc1\xb7\x06\x1f\xe3\xe0\x7b\xf0\xad\xc9\xc7\x38\xf8\x1e\x7c\x6b\x29\x2f\xaf\xed\x92\x6f\xbb\xe4\x1b\xae\x2b\x3a\x96\xc1\x0a\x58\x68\x8e\x55\x30\xf9\x86\x2b\xa5\x97\xd7\x06\x67\xdb\x8d\xef\x5d\x6f\xc7\xf0\xbd\xf1\x0d\x97\x8f\x01\x6b\xdb\x8d\x6f\x70\x72\x37\x68\xdb\x02\xbe\x62\x77\x83\xb7\x2d\xe0\x2b\x7a\x37\x88\xdb\x02\xbe\xe6\xfc\x6e\x30\xb7\x45\x7c\x45\xf0\x06\x75\x5b\xc4\x57\x0c\x6f\x70\xb7\x45\x7c\x93\x53\xbc\x41\xde\x66\xf8\x8a\xe3\x0d\xf6\x36\xc3\x57\x24\x6f\xd0\xb7\x19\xbe\xc5\x59\xde\xe0\x6f\x83\xbf\x41\x34\x6f\xf0\xb7\xc1\xdf\x20\x9e\x37\xf8\xdb\xe0\x6f\x68\xce\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\x46\xf1\xbc\xc1\xdf\x06\x7f\xe3\xed\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\x37\x46\xe7\x79\x83\xbf\x0d\xfe\x46\xf1\xbc\xc1\xdf\x06\x7f\xa3\x78\xde\xe0\x6f\x83\xbf\xd1\x9c\xe7\x0d\xfe\x36\xf8\x1b\xc5\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\xc6\xec\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\x37\x56\xe7\x79\x83\xbf\x0d\xfe\x46\xf1\xbc\xc1\xdf\x06\x7f\xa3\x78\xde\xe0\x6f\x83\xbf\x76\x39\xcf\x1b\xfc\x6d\xf0\xd7\xc4\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\xed\x76\x9e\x37\xf8\xdb\xe0\xaf\x89\xe7\x0d\xfe\x36\xf8\x6b\xe2\x79\x83\xbf\x0d\xfe\x5a\x74\x9e\x37\xf8\xdb\xe0\xaf\x89\xe7\x0d\xfe\x36\xf8\x6b\xe2\x79\x83\xbf\x0d\xfe\x5a\x72\x9e\x37\xf8\xdb\xe0\xaf\x89\xe7\x0d\xfe\x36\xf8\x6b\xe2\x79\x83\xbf\x0d\xfe\x5a\x71\x9e\x77\xf8\xdb\xe1\xaf\x89\xe7\x1d\xfe\x76\xf8\x6b\xe2\x79\x87\xbf\x1d\xfe\x5a\x73\x9e\x77\xf8\xdb\xe1\x6f\x12\xcf\x3b\xfc\xed\xf0\x37\x89\xe7\x1d\xfe\xf6\xbb\x5f\xc2\xaa\xb2\xfb\xcf\x79\xfc\x7f\x4b\xed\xfd\xee\xb8\x20\xcb\x1e\x14\x84\xef\x10\x3e\x49\x94\x3b\x84\xef\x10\x3e\x69\xb3\x3a\x84\xef\x81\xc1\xb4\x59\x3d\xd0\x5b\xd8\xe9\xed\x71\xfb\xd2\x76\x24\xa0\xc7\x67\x6f\x4e\x9d\x8e\x04\x74\x24\x20\x29\x45\x76\x24\xa0\x47\x7a\x13\x75\x7a\xa4\x37\xc9\x42\xc8\xf6\xf2\xda\x11\x85\x8e\x28\xa4\xe0\x42\xd6\x11\x85\x8e\x28\xa4\xe8\x42\xd6\x11\x85\x6e\xf4\xa6\x2a\xa5\x1b\xbd\xd9\x8a\x6f\x8f\x98\xaa\x23\x2b\x09\xf1\xfe\xcd\x0f\x79\x47\x38\x3a\xc2\x91\xa2\xe6\x84\x70\xf4\xf4\xec\xdf\x0f\x60\x47\x38\x7a\xa2\x7f\xf3\x03\xd8\x53\x7f\x62\xfd\xed\x61\xda\xde\x34\x2e\x21\xa3\xbd\x3d\x2c\x0b\x99\xb4\x59\xf5\xed\x61\x45\xc8\x06\x39\x8e\x68\xc5\x10\xa0\x8e\x00\x25\xd3\x4a\x20\x40\x1d\x01\x4a\x56\xd4\x8e\x18\x32\x31\x24\xed\x5d\x26\x86\xbc\xed\xed\x91\x5c\xe2\x3a\x92\xd4\x91\xa4\x94\xb4\x12\x48\x52\x47\x92\x52\x4a\x6a\x47\x6f\xe5\xd9\x9b\x4b\x7a\x2f\xf4\x56\xf6\x79\x7b\x24\x27\x72\x47\xa4\x3a\x22\x95\xb2\xe6\x8d\x48\x75\x44\x2a\x65\x27\x5e\x47\xa4\x7a\xa5\xb7\xec\xc4\xeb\xb5\x3f\x31\x7b\x7b\xe4\x9c\x85\x64\x90\xfc\xf6\xc8\xe5\x12\x52\x41\x8e\x23\x3e\xa3\x3a\xf0\xf2\x3d\xca\x2e\x76\x1d\xb1\xeb\x88\x5d\x2a\x9a\x37\x62\xd7\x11\xbb\x54\x5c\x3c\x3b\x62\xd7\x1b\x31\x14\x17\xcf\xde\x88\x41\x02\xa8\x32\xa7\x23\x7f\xbd\x3f\x7b\xd3\xbc\x91\xbf\x8e\xfc\xa5\xea\xa9\xac\x23\x7f\xbd\xd3\x5b\x8d\xf2\xa5\xb7\x7e\xe2\xdb\x03\x42\x23\x88\x1d\x41\x4c\x55\xf3\x46\x10\xfb\x78\xf6\xa6\x3d\x46\x10\xfb\xa0\xb7\x16\xe4\x4b\x6f\xe3\x64\x2f\x99\xfd\xb4\x23\x91\x1d\x89\x4c\x4d\x33\x40\x22\x3b\x12\x99\x9a\x56\x04\x89\xec\x53\xbd\xe5\xcb\xe5\xbf\x4f\x7a\x9b\x7e\xe0\xee\x2b\xf8\xe2\xce\x05\x74\x04\xa9\x37\x84\xb4\x23\xa4\xf9\xd2\xac\x10\xd2\x8e\x90\xe6\x2b\xab\x1d\x23\xac\xe7\x08\x9e\xa0\x3b\x42\xda\x11\xd2\x7c\x6b\x0e\x08\x69\x47\x48\xf3\xed\xa2\xd9\x11\xd2\xbe\xf1\xbd\x5d\x34\x3b\x42\xda\x11\xd2\x1c\x14\x31\x42\xda\x11\xd2\x1c\x3c\x61\x75\x84\xb4\x1f\x7c\x83\xef\xd8\x40\x48\xc7\xf5\xf4\xf5\x58\x06\x42\x3a\x10\xd2\x1c\xbd\x58\x18\x08\xe9\xb8\xf0\x8d\x5e\x2c\x8c\xab\x83\x3d\x0b\xd8\xfc\xf2\x3a\xd0\xd6\x81\xb6\xe6\xe8\xe1\x0d\xb4\x75\xdc\xcf\xee\x5c\xd3\x07\xda\x3a\xd0\xd6\x6c\xae\xe9\x03\xf1\x1c\xf7\xb3\x4e\xbb\x5e\x5e\x07\xea\x39\x50\xcf\x6c\x8a\x18\xf5\x1c\xa8\x67\x36\x4f\xb1\x03\xf5\x1c\xa8\x67\x4e\xae\x3e\x03\xf5\x1c\xcf\x12\xaa\xd8\xcb\xeb\x40\x3e\x07\xf2\x99\x93\x26\x81\x7c\x0e\xe4\x33\x27\xaf\x78\x06\xf2\x39\xe2\xb3\x3b\xaf\x78\x06\xf2\x39\xe2\x33\xdb\xd7\x97\xd7\x81\x7e\x0e\xf4\x33\x67\x4d\x02\xfd\x1c\xe8\x67\xce\x7e\x8e\x07\xfa\x39\xd0\xcf\x9c\x3d\x31\x0d\xf4\x73\x50\x68\x59\x0e\x2f\xaf\x03\xb9\x1c\xc8\x65\x2e\x9a\x04\x72\x39\x90\xcb\x5c\xbc\x4e\x18\xc8\xe5\x40\x2e\x73\x71\x29\x1c\xc8\xe5\xa0\xf6\x4a\xc9\xb7\x02\xe5\x1b\xf9\xd9\x9d\x26\x81\xf2\x0d\x94\x2f\x57\xd7\xb4\x81\xf2\x0d\x94\x2f\x57\x2f\xdb\x06\xca\x37\x28\xc7\x72\xf2\xad\x40\xfa\x06\xd2\x97\x95\x5d\x07\xd2\x37\x90\xbe\xac\xec\x3a\x90\xbe\x81\xf4\xe5\xe6\xd9\x75\x20\x7d\x83\x0a\xad\x98\x6f\x05\xda\x37\xd0\xbe\xac\x62\x67\xa0\x7d\xa3\x3e\xbb\x73\x8d\x1c\x68\xdf\x40\xfb\x8a\x8a\x9d\x81\xf6\x0d\x8a\xb6\x1a\x7d\x2b\x90\xb1\x81\x8c\x15\xdd\x31\x07\x32\x36\x90\xb1\xe2\xb5\xe7\xdf\xca\xdf\x03\x95\x1b\xed\x39\x9a\xe7\xd7\x81\xca\x0d\xca\xbc\x16\x7d\xa7\x90\xb9\x81\xcc\x95\x5b\x73\x44\xe6\x06\x32\x57\x6e\xaf\x20\x06\x32\x37\x90\xb9\xa2\x9b\xc2\x40\xe6\x86\x2a\xbf\x70\x05\xdf\x29\x74\x6e\xa0\x73\x25\x68\x8e\xe8\xdc\x40\xe7\x4a\xf0\x1a\x61\xa0\x73\x03\x9d\x2b\xc1\xf3\xe9\x40\xe7\x86\x8a\xc1\x70\xbb\x32\x0d\x84\x6e\xcc\x67\x77\x9a\x04\x42\x37\x10\xba\x12\xbd\x48\x18\x08\xdd\x40\xe8\x4a\xf4\xd4\x38\x10\xba\xa1\xfa\x30\x84\xdb\x77\x0a\x55\x1b\xa8\x5a\x89\x9a\x04\xaa\x36\x50\xb5\x62\x5e\x25\x0c\x54\x6d\xa0\x6a\xc5\x3c\x37\x8e\x45\x77\x2a\x19\x43\xbc\x7c\xa7\x10\xba\x81\xd0\x15\xd3\x24\x10\xba\xb1\x9f\xdd\x79\x51\x30\x10\xba\x81\xd0\x95\xe4\xc9\x71\x6c\xba\x53\x15\x19\xec\xf2\xad\x40\xfb\x06\xda\x57\x92\x26\x81\xf6\x0d\xb4\xaf\x24\xcf\xef\x03\xed\x1b\x68\x5f\xc9\x9e\xe7\xc6\xa1\xbb\x43\x77\x2d\xbf\xbc\x4e\xe4\x70\x22\x87\x25\xfb\x24\x26\x72\x38\x91\xc3\x92\x3d\xc1\x4f\xe4\x70\x5e\xcf\xee\x3c\xd1\x4d\xe4\x70\x4a\x0e\x43\x6a\xd7\xcb\xeb\x44\x0e\x27\x72\x58\x8a\x4f\x62\x22\x87\x13\x39\x2c\xc5\x33\xfc\x44\x0e\x27\x72\x58\x8a\x67\xba\x89\x1c\xce\x9b\x7a\xad\xda\xcb\xeb\x44\x0e\x27\x72\x58\xaa\x4f\x62\x22\x87\x13\x39\x2c\xd5\x93\xf5\x44\x0e\x27\x72\x58\xaa\x27\xa7\x89\x1c\x4e\xc9\x61\x28\xa5\xbe\xbc\x4e\xe4\x70\xc6\x67\x77\x9a\x04\x72\x38\x91\xc3\xd2\x3c\x5b\x4f\xe4\x70\x22\x87\xa5\x79\x5e\x9b\xc8\xe1\xa4\x9a\xac\x25\xbc\xbc\x4e\xe4\x70\x22\x87\xa5\x69\x12\xc8\xe1\xb4\x67\x77\x9e\xae\x27\x72\x38\x91\xc3\x7a\x79\xaa\x9b\xc8\xe1\x94\x1c\x86\xe6\xf5\xcc\x44\x0e\x27\x72\x58\x95\x61\x27\x72\x38\x91\xc3\x7a\x79\xbe\x9e\xc8\xe1\x44\x0e\xeb\xed\xd9\x6f\x22\x87\x53\x72\x18\xaf\xec\x5b\x81\x1c\xce\x9c\x82\x9a\x69\x12\xc8\xdc\x94\xcc\xc5\x3b\xf9\x12\x23\x55\x53\x52\x15\x83\xf9\x32\x21\x37\x53\x72\x13\xa3\xf9\x54\x21\xf1\x14\x89\xa3\x45\x0f\x17\x22\xce\x31\x8f\x17\xc4\xd1\x87\x1c\xeb\x12\xe4\xc6\xee\x5b\xad\x16\xad\xbc\x56\x8e\xc9\x45\x74\x8e\x95\x81\xf2\xdb\x23\x66\x6d\xcc\x58\x45\xd0\xce\x2a\xae\x7d\xc4\xb1\x9f\x50\x79\x7b\x14\x16\x63\xec\x2a\x48\x41\xa4\xe6\x8e\xd0\x77\x8a\xbe\x31\x6b\x65\xa1\xe0\x5c\xd3\x21\x5d\xfc\xe7\xf2\x18\x9f\x26\x9a\x56\x67\x11\xea\xf2\xee\xa3\x52\xca\x5c\x74\x2f\x53\xda\xa5\x56\xbb\x09\x52\xf7\xaa\xee\x26\x94\x9c\xbb\xcf\xb7\x47\xac\x2e\x04\x73\xf7\x05\xb4\x04\x05\x41\x5b\x90\x1c\x95\x76\x26\xe4\x9b\xe7\xf4\xb7\x47\xa4\xfb\x73\x06\xd0\x10\x14\x04\x4d\x20\x77\x6c\xce\xa9\x05\xcd\x30\xb1\x79\x5a\x5b\x57\x0f\x40\xc1\x21\xcb\x82\xa2\xa0\x51\xd4\xca\x1c\x1a\x15\xa8\xfe\xa5\x95\x5f\x26\x5e\xd7\xe5\x2b\x61\x97\x2f\xce\xba\xb4\x12\x98\x58\x5c\xb2\xd6\xb5\x18\x71\x4d\x6f\x15\x81\x16\xd0\xf2\xad\xf5\xea\x6a\x5d\x6b\x0b\xe2\xfe\xe3\x39\x73\x41\xe1\x75\xfb\x25\xc9\x2e\xaf\x54\xd6\xbd\x0c\xc8\xde\x1e\x16\xbd\x2a\x59\xb7\x2e\x4e\x18\xbb\x3d\x77\xaf\x5b\x67\x62\xdd\x7e\x0e\xec\x8e\xb4\xaa\x40\x55\x8e\x49\x50\x03\xea\x6a\x85\xe3\x10\xb4\x2f\xb5\x12\xb4\x09\xc2\x8d\xdd\x8a\xfe\xde\x01\x28\xf8\x55\xe4\x52\xa8\x3b\x02\x79\x10\xd1\x8f\xdc\xba\x37\x41\xb8\xb1\x58\xe9\xab\x00\x11\x57\x13\x44\x5c\x7b\xa8\x55\x11\x34\x81\x7c\xbd\x6e\xa3\xfb\x05\xe4\xeb\xa5\x5b\xdf\xba\xf7\x06\xda\x6a\x05\x74\x04\x1d\x45\xdf\xec\x6f\x26\xec\x75\x1f\x26\x77\x34\x39\x53\xd8\x87\xc9\xb9\xb1\xd8\x14\xf6\x61\x72\x47\x2b\x6c\xda\x87\xc3\xe4\x8e\x26\xd7\x34\x93\xc3\xe4\x4e\x53\x2b\x1c\x3b\x90\xaf\xb0\x5d\x38\xb2\xc2\x6e\xec\x36\x1c\x99\xef\x59\x6a\x85\x23\x93\xd3\x61\xd0\x6d\x78\x21\xc0\x18\xbb\x75\x3e\x02\xe7\x36\xf8\x59\x35\xbb\x81\x0c\x28\xab\xd5\x2d\xa8\x00\x29\x88\x3b\x08\x1a\x40\x43\x10\xdd\x4f\x20\x2d\xba\x6b\xd9\x0a\x22\x22\xc6\x2c\xd0\xbd\xe2\x0a\x83\x20\xfc\x14\x85\x41\x10\x6e\xcc\x82\x1c\x47\x04\xd2\xe9\x4e\xea\x7e\x3c\x1d\xb7\xee\xe3\x8a\x6b\x68\xb7\xc2\x54\x5f\x45\xdd\x4f\xfa\x9a\x51\xad\xa2\x20\x26\xe4\xc6\x94\xc6\x57\x98\x09\x48\xdb\x51\x68\x95\x81\xb8\xee\x57\x41\xcc\xd1\x8d\x25\xe2\x9a\xcc\x71\x6a\x8e\x05\x88\x39\x4e\xc5\x15\x34\xa1\x49\x5c\xa2\x58\x0a\xea\x0b\x8a\x05\xf1\x29\x45\xb5\x82\x4f\x32\x76\x17\xa0\x06\xa4\x20\x74\x22\x03\x7c\x0a\xf0\x5c\x7c\x0a\xf0\x3c\xac\xa3\x56\x72\xdc\xd2\x0c\x19\xbb\x8b\xd6\x0b\xd6\xc9\xf0\xde\xb5\x02\xac\x93\xb1\xc4\x01\x80\x75\x32\xa6\x2b\xcf\x0a\x9b\xf5\xda\x8a\x3e\x6b\x8e\x9b\xe8\x9d\x69\x96\xb2\x82\xd8\x84\xba\x15\x6a\x51\xa8\x9b\x50\x45\xc4\x44\xa8\x10\x31\x38\xad\x4c\xe5\xe7\x0a\x87\x50\x9d\x11\x96\x2f\x75\x7f\x18\x51\xec\xc8\x9c\x55\xd8\x21\x63\x77\xd5\x1c\x61\x47\xd0\xd3\x4a\xe6\x00\x1c\x82\xd0\x21\xbf\x25\x10\x94\x05\x2b\x02\x35\x3f\xab\xa4\xf6\x65\x52\x96\xa0\x56\x86\xb2\x18\xca\xa2\xdd\x36\x94\xc5\x44\xab\xa8\x83\x69\xd0\x4a\xe6\x29\x6f\x76\x16\xd0\xfe\x59\xde\x48\xf5\x2b\x75\x04\xb5\x0a\x4a\x40\xe9\x67\x79\x4b\x7a\x1c\x59\x3c\x27\x21\x6f\x09\x0e\xc9\x3c\xb5\x2c\xc1\xa1\x24\xc2\xa0\x65\x09\xc2\xc8\x3c\x27\x94\xba\xce\x57\x22\x08\xbf\x31\x2f\x0a\x89\x95\x3d\xdb\x98\xbe\x80\xac\x4c\xb6\x91\xb1\xdb\xaf\x95\x2b\x93\x6d\xb2\x8e\xaf\xa9\xaf\xcc\xf1\x95\xb1\xbb\x00\x69\x44\x15\x25\x96\x44\x77\x8a\x92\x55\x60\x87\x67\xe7\x55\x60\x87\x4c\x4a\x49\xad\x60\x47\xd9\x6c\xad\xd3\xaa\x70\x98\x64\x32\xdc\x2e\x1c\x26\x15\x38\x96\xbd\x5c\x5c\x14\x38\xab\x02\x79\x6d\xb1\xb8\xf4\x2c\x5d\x7a\xac\xe8\xf8\x52\xf3\x2c\xd5\x3c\x56\xc5\x0e\x6a\x9e\x35\xc4\x6d\x7d\xac\x5a\x03\x6e\xcb\x24\xf4\x6b\xc0\xed\xa1\xb8\x9a\xce\xea\x20\x2e\x19\x6b\x21\x08\xc2\xd1\xbb\x4f\x97\x97\xb6\x8b\x6a\x66\x4d\xdf\xda\x74\x29\xd4\xc9\xd6\xca\x14\x74\x62\xb2\xb5\x13\x47\xa5\x62\x6a\x9e\xb5\xe4\xa8\x4b\xd1\x5a\x38\xca\x24\x15\x8e\x6b\xe1\xb8\x16\xad\x7c\x71\x16\x3a\x21\x93\x6e\x51\x61\x91\x8a\x97\x13\x26\xdd\x8a\x7e\x41\x18\x99\x92\xbd\xe6\x59\xeb\xe0\xa8\x20\x82\xa2\xa7\x32\x5a\xdb\x4f\x74\x0a\x22\xcc\xe6\x44\xcb\xa4\xe4\x25\xfd\xda\x9c\x68\x99\x14\xbd\xe6\x59\x9b\xdc\x21\x93\xa2\x4e\x0e\xc5\xd2\x3a\xae\xd1\x29\x6a\x6b\x0f\x1a\x2d\x53\xa8\x2d\xce\x50\x5c\xc7\x65\x28\x45\xaf\xfe\xd6\x41\x86\x64\x52\xcc\x41\x50\x00\x2a\x82\xb2\xa0\x0a\x54\xdf\x1e\xc9\x44\xf7\x83\xc0\x1c\x82\x28\xe1\x6f\xa6\xe2\x4d\x5d\xb6\xaf\xa3\xd1\xbd\xe2\xda\xd7\x79\x42\xf7\xdb\x23\x6b\x4f\xf7\xa5\xec\xbc\x55\x25\x25\x73\x09\xdf\x54\x49\xfb\x76\xf2\x25\x73\xd6\xed\x5b\x99\x0b\x93\x54\xa1\xee\x5b\x44\xdc\x2a\x2a\x92\x79\xc2\xde\x14\x15\x98\xa4\xef\x16\x9b\xa2\x62\x2b\xef\xa6\xe4\xf3\xdd\xe4\xdd\x1d\x80\x7c\xe7\x37\x2a\xb5\xa3\x6f\x60\xd2\x87\x87\x1d\xb5\x81\x98\x72\x5d\x6a\x25\x11\xdc\xd2\xb2\xa4\xf7\xcd\x8d\x96\x61\x4a\xf4\x94\xb7\x4d\x39\x7c\x5b\xf7\xb5\x2b\xbe\x9c\xdb\x7a\x03\x6a\xea\xbe\x0a\xea\x82\xe8\x4b\x23\x22\x5c\x5b\x62\x93\x6a\xaa\x82\x36\xd0\xd6\x13\xb1\x09\x3a\x82\xc6\x25\xc8\x97\x30\x0d\x1c\x9f\x09\x3b\x09\x8a\x40\x55\xad\xd4\xbd\xc4\x06\x63\xfa\x00\xb6\xd3\xe8\x40\x5d\xad\x9a\xa0\x01\x24\x49\x0a\x40\x5a\xd5\xe4\x39\x3c\x55\xcf\x49\x3b\x29\x87\x63\xcc\xa2\x82\x10\xcf\x77\x9a\x8a\x5e\x9b\x96\x26\xd1\x2b\x15\x5b\x54\x5c\x93\xe8\xa7\xde\xbc\xbd\x16\xdb\x49\xf5\x35\xc6\x74\x75\xda\x69\x31\x21\x37\xa9\x36\xf5\xb5\x02\x90\xe6\x18\x81\x98\xa3\xb8\x59\x9b\xd6\x4b\xdc\xc4\x98\x45\x45\xaf\xab\xd3\x4e\x9e\x9a\x52\xd3\x91\x4b\x87\x69\x2b\xb5\x98\xd7\x88\x3b\x89\x88\x18\x0a\x9c\x9d\x0e\xd3\x16\x11\x1b\x71\x1d\x26\x44\x11\x67\xbe\x1d\x08\x3d\xc6\xcc\x75\x71\x67\x0e\x40\xf6\x22\x2e\xe9\x72\xbc\xb3\x8a\x38\x8c\xe9\x9b\xc3\xce\xd2\x9f\x9d\x5d\x73\x52\x8b\x40\x05\x48\x49\xc3\xeb\x81\x9d\xf5\x62\xbf\xb3\xa8\xd0\x5c\x63\x77\x86\x0a\x99\x22\xce\xc5\x79\x67\x8e\x89\x4c\xd2\x45\x66\x67\x8e\x49\x56\x5d\x67\x9e\x3e\x77\x1e\xc4\x25\xcd\x68\x84\xca\x31\x91\x31\xd3\x91\xcb\x83\x50\x87\xe2\x32\x20\xe2\x52\xe6\x32\x2d\x0e\x99\x6b\x67\x3f\x2d\xa9\x25\xc5\x35\x26\x90\x4e\x4e\x56\x5c\x9c\x9c\xac\x93\xd3\x92\xd6\x8b\x93\x23\x63\xb7\x88\x9c\x39\x39\x32\x49\x0f\x7f\x3b\x2b\x43\xec\x3c\x49\x9f\x8a\x7e\xb2\x12\x53\xfb\x28\x22\xe7\xd9\x81\x74\xdd\x79\x3a\xea\xf8\x66\x9d\x9c\x96\x35\x22\x27\x27\x73\x72\xb2\x26\xc4\xc9\xc9\x3a\x39\x4a\x40\x3b\x73\x72\x32\x27\x27\x6b\x8e\x9c\x9c\xec\x05\x61\x6a\x85\xbe\x98\xf6\x12\x87\x44\xf7\xbc\x08\x62\x69\x25\x8a\xd6\x7e\xb1\x12\xba\x1e\xde\x84\xba\x58\x89\xa5\x1d\x2a\x04\xc1\x0e\xa9\x6c\x34\x82\x50\xd9\x88\x49\x4d\x4c\xcb\x9b\xf3\xa5\xb2\xd1\x8a\xfa\xda\x4c\x68\x6b\x55\x2b\x8e\xac\xaa\xd2\x27\x22\x9a\x37\xab\xaa\x2a\xcb\xa4\x00\x79\x33\x47\x55\x59\xfa\xca\xb5\xf3\x66\x8e\xd2\xfe\x56\x69\xc5\x42\xab\xb8\x34\x26\xb4\x99\xf6\xd6\xda\x57\xba\x67\xda\x2a\x2e\x8d\x09\x6d\xa6\xed\x26\x3f\xa9\x80\x20\xe7\xad\x69\x57\x46\x64\xda\x2a\x41\x8d\xe8\x0f\xd3\x3e\x4c\x5b\x8e\x24\x0a\x19\xb3\xaa\x69\x93\x28\x64\x9e\x29\x20\x1f\xf6\x51\xb2\xdd\xaa\x82\x40\xb6\x65\xcc\x98\x10\xb2\x9d\xa9\x5d\x39\x98\x87\x69\x1f\x5d\x5b\xa5\xd1\xf9\x30\xed\xa3\xdd\x6e\x74\xcf\xb4\x75\xff\x33\xa2\x47\x3a\x54\x8b\xa5\xe6\xd7\xd6\x4d\x2d\x86\x31\xb2\x55\x41\x01\x8a\x6a\x8b\x26\x95\x2b\xaa\x2d\x30\x66\x0a\xb5\x40\xf7\xe2\x14\xcf\x97\x57\xa5\xbb\x90\x28\x64\xcc\xbc\x92\xdc\x85\x44\x51\xb8\xec\x3d\x47\x1c\x40\x43\x8e\xff\x87\x54\x5c\x54\xc7\x62\xa8\x3d\x77\x41\x46\x0a\x32\xd2\xa2\xa0\x0d\x74\xd4\xaf\x20\x7d\x63\xc5\x98\x29\x87\x17\xb2\x4d\xf1\x8b\x1f\x5f\xc3\x76\xd1\xc5\x0f\xc3\x37\xff\x5d\x26\x8e\x6e\xf2\x75\x6b\x26\x13\x47\x37\x45\xbf\x84\xd8\x65\xb2\x50\x4e\xfd\xac\xcf\x68\xbb\x40\x7d\x19\x33\x69\x7f\x99\x2c\x14\x6a\xd0\xe8\xab\x02\x75\x39\x2a\x2e\xa8\x5f\xb8\x1e\x4a\xe8\x29\x80\x31\x59\xf5\xe2\x2e\x93\x69\xab\xbe\x4e\x5e\x5e\xed\x42\x9a\x92\xc9\x57\xd0\xd6\x90\xa6\x8a\x72\x52\x62\x25\xc8\x49\xc5\x65\x24\xeb\x37\x02\xbb\x20\x23\x32\x96\x2e\x6d\xb3\x5e\x73\x76\x59\xea\x4b\x89\xb1\xac\x67\x5f\xba\x1e\x5e\xea\x1e\x9e\xab\x30\xcf\x97\x12\x10\x85\x39\xc6\xf4\xbd\x6a\x53\x98\x63\xf2\x25\x55\x2f\x30\x58\xc6\xd2\xad\xf5\x82\xc1\xc5\x4f\x77\xbe\xc4\xba\x72\x9e\x90\x93\xba\xb0\x84\x9c\x6e\x15\xf9\x7c\x74\xdc\x14\xf9\xbb\x6e\x39\x4a\xcb\x2a\x7d\x55\xee\x95\x52\xf5\x0a\xf5\xab\xd3\x35\xeb\xe9\x66\x57\xe8\x2a\x63\x49\x09\xa8\x42\xd7\xca\xab\x4b\xa5\x55\x00\xca\x72\x2c\x82\xe8\x5e\xac\x4b\xca\x49\x95\xb8\x64\xf2\xed\xb7\x96\x5d\x61\x9d\x0c\x97\xb5\x5d\x61\x9d\x4c\xbe\x9f\x23\x0e\x20\xed\x76\xca\x82\x26\xd0\x52\x2b\x13\xb4\x81\x74\x75\x52\xc5\xc6\x45\x66\x37\x7d\x15\xd7\xe3\xda\x6e\x10\x51\xc6\x92\x94\xa5\x91\x77\x9b\x28\x86\x84\x37\x38\x24\xc3\x9d\x6b\x37\x38\xd4\x26\xad\xd4\x17\x47\x4e\xc6\xf4\xf3\xab\xdd\x38\x72\x8d\x95\xd0\x76\x34\x56\x42\xa6\x20\x5c\x8d\x95\xd0\x05\x2b\xeb\xf3\xce\xe6\x82\xb5\xbb\x38\x14\x74\x00\xfa\x7c\x42\x5e\x40\xeb\x57\x51\xbb\xc3\xa1\xae\x2b\x5d\x90\x12\x77\x4e\x8e\x8c\xe9\x51\x79\x77\x4e\x8e\x3e\xa6\xe7\x78\xcb\x51\xb7\x16\x8c\xdd\x15\x08\x47\x85\x1a\x45\x98\x4e\xa8\x9d\x4d\x53\x8d\xd8\x09\xb5\xfb\xda\xe7\x18\x80\x26\x90\xa6\x2d\x55\xef\xd4\x4f\x32\x59\xbf\x11\xd9\x9d\xed\xe0\xc6\xa8\x67\xec\xcd\x8d\x71\x8f\xae\xb8\xa2\x09\x32\x20\x51\xa1\x02\x25\x20\xc5\xa5\x92\x6a\xb0\x69\x83\x4d\xab\x59\x50\x05\xaa\x6a\xd5\x04\x35\xa0\xa6\x56\x55\x50\x07\x52\xd5\xf0\xec\x5e\x87\x69\x78\x51\x93\xa3\x0e\xf9\xa0\x34\x1e\x43\xe7\xab\x01\x4d\x20\x57\x13\xbd\x48\xec\x41\x81\x23\x63\xa9\x69\x42\x7a\x17\xdb\x43\x9b\x16\x75\xbe\x06\x9b\x26\x63\xfa\x78\xbc\x07\x9b\x26\x63\x49\x8a\x39\x66\x04\x4a\x72\x54\xf4\x68\xe1\x90\xf0\xa5\x46\x5f\xcc\x51\x47\x4e\xf7\xb7\x3d\x38\x72\x83\x23\xd7\x70\x24\x2e\x49\x9a\xae\x74\x7b\x20\x69\xfa\xde\x60\x59\xb4\x1a\x54\x46\x32\x3c\x19\xec\x81\xa4\xe9\x7b\x43\xd6\x47\xed\x3d\x16\x23\xea\x5d\x4c\xaf\x08\x7b\x50\x06\xe9\x6a\xce\x37\xfd\xcd\xd5\x7c\xeb\x1e\x9e\xf5\xf3\xc4\xcd\x3d\x1c\x63\xf9\x36\x41\x05\xa8\x08\xca\x82\x2a\x50\x93\x23\x50\x07\xea\x6a\x55\x05\x0d\xa0\xad\x56\x40\x07\xe8\xa8\xb8\xf4\x09\x4d\xb2\xd5\x54\xd1\x9b\x03\x50\x00\x0a\xda\xed\x22\x28\x02\xf1\x06\x12\x04\x25\x20\xbd\x78\xe9\x06\x35\x07\xd1\x7b\xed\xcb\x4b\xc9\x9e\x83\x50\x55\x07\xeb\xa5\x64\x4f\xea\x60\x99\x6c\x21\xff\x75\x2a\x2e\xe9\x7f\x64\xe2\xc9\xb9\x92\xb1\x2c\xee\x4c\xae\x5c\xd3\xb3\x67\xe6\x62\x36\xc9\x9e\xfa\x79\x89\xe5\xa8\x10\x39\x31\x73\x2a\xea\x27\x44\xd4\x7a\x36\xcd\xe2\xce\xe4\xc4\xc8\x58\xd6\xa5\x65\x92\x3d\xa7\x1f\x9c\xcc\x2d\x6c\x4e\xa2\xa6\x70\x16\x2b\x26\xd9\x73\x2e\xba\x57\x10\x8b\xee\x17\xdd\xab\x15\x55\xf2\x5c\x7f\x29\xf1\x26\x95\xed\x5c\x7a\x2b\x12\x77\x26\x19\x6f\x7a\x96\xcb\x26\x21\x9e\x94\xb1\x32\x96\x95\xf1\x26\x65\xec\x54\x12\x34\x11\x65\x92\x04\x65\x2c\x1b\x8e\x04\xa1\x2c\xc5\x0d\x65\x92\xa5\xa6\xb2\x54\x36\x4d\x88\x2c\x35\xa5\x5b\xd4\x86\x13\xdd\x9a\x3c\x4f\x12\xea\x79\xb6\xd2\x66\xa9\x4a\x9e\x64\x16\x19\xcb\x1c\x22\x32\x8b\x9e\x8f\x32\x55\x32\xcf\x47\x7b\xe9\x59\x5e\xef\x61\x7b\x21\x52\xcb\x0b\xdc\xac\x9f\x89\xee\xc5\x53\x83\x4c\x8a\xca\x9e\x8b\x62\x57\xaf\x40\x99\x54\xc9\x2b\xd0\xde\x7e\x6d\xc8\x49\x17\x8d\xad\x37\x65\x4c\xa6\xc8\xda\x5c\x21\xf4\xe4\x93\x39\x6a\x3c\xf9\xec\x03\xe4\xcc\x3f\xbc\xb0\x9c\x8b\x5f\x6f\xf9\x12\x1e\xde\x4e\x8e\xde\x3b\x72\xf5\x09\x1d\xde\x3b\x4e\x90\x6e\x35\x5f\xd5\xa3\x87\xfc\xa7\x49\xc5\xcb\x94\xc3\x7b\xfe\xd1\x13\x6e\x6e\x7e\xd1\x38\x41\x8b\x83\x49\xa5\xa8\x95\x16\xe7\xe8\xed\xa4\x5c\x7e\x0a\x0f\x6f\x27\x27\x3a\xf7\xca\xe5\x47\xee\xc4\xf1\x84\x54\x0e\x78\xcd\x7a\xa2\x78\x78\x22\x8e\xae\x35\x87\xb7\x93\x63\xae\x0f\xfc\x66\xe2\x98\xf4\x01\x93\xcd\xb5\xf9\xe8\x1d\xe5\xf5\x98\x2f\x74\xb9\xfd\xf8\x1e\xd3\x42\x63\x72\xa6\x95\x16\xfa\xe8\x39\xa5\xe8\x07\x4f\x87\xe7\x94\x93\x80\x82\x07\xc1\x65\xfd\xe8\xda\x50\xf4\x33\xa6\xa3\xbb\xc3\xd3\x58\xf0\x7d\x3c\x5c\x21\x30\x25\xb6\x2a\x28\x03\x29\xd4\x48\xab\x02\xb4\xd5\xca\x21\x6e\x02\xa7\xb8\x64\xf0\x1b\x88\x53\x24\x19\x18\x0b\x06\xd4\x04\x4d\xb5\x8a\xbe\x43\x54\xb3\x18\x0b\x2e\xd7\xa7\x4c\x5a\xb9\x36\x17\xf3\x43\x7e\x28\x37\x31\xa6\x2c\x75\x28\x37\x8f\xca\xba\xa2\x5b\xfe\xa1\xac\x3b\xd5\xcf\x57\x31\x45\x5f\x75\xbe\x30\x25\x69\x6b\xab\xce\xd7\x51\x59\x57\x54\x3e\x1d\xca\x3a\x4c\xba\xaa\x1c\x0f\x7d\x3d\x7f\xcf\xe7\xad\x28\x9f\xce\xf3\x27\x7e\x9e\x17\x0f\x65\x0a\xa6\xe8\x57\x4a\xa7\xeb\x02\x84\x89\xc9\x59\x7b\xba\xbe\xbf\x1e\xd5\x24\x85\x4d\xa3\x26\xc1\x44\xd1\xfd\x74\x71\xfb\xa8\x42\x28\xc5\x39\x74\xa8\x10\xce\x00\x72\x3e\x1e\x92\xcd\x51\xea\x28\xfa\x19\xe0\x51\xfe\x78\x9a\x58\x6f\x5a\xe9\xf8\x8a\xc8\x45\xbf\x4f\x3a\x10\xf9\x88\x8f\xa5\xe5\xbf\xbe\x39\xf9\xff\xff\xb1\x7f\x7a\xf9\xf9\x8f\x92\xe6\x4f\x9f\x3f\xef\xf7\xaf\xfa\x13\x28\xfd\xdd\xd1\x63\xed\xf3\xe1\x7d\xff\xfc\xe7\x54\x9f\x3e\x7e\x72\x2f\xfd\xef\x3f\x03\x00\x00\xff\xff\x20\x11\x85\x20\x7a\x35\x00\x00"); +func _efabf ()([]byte ,error ){return _gb (_efgf ,"UniJIS2004-UTF16-V")};var _ggd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9c\x4b\x0f\x1e\xb7\x91\xae\xf7\xfa\x15\xdf\x32\x67\x91\xe3\x2e\x5e\x9b\x80\x20\xe0\x9c\x5c\x10\xe3\x20\x39\x83\xf1\xdc\x80\xc1\x2c\x9a\x37\x43\x40\x2c\x09\xb2\xbc\xc8\xbf\x1f\xd4\xfb\x50\x9e\x4c\x30\x80\xb3\x30\xca\x2a\xb1\xbb\xd9\x4f\x57\x91\x7c\x59\xfc\xf4\xcd\x6f\xbe\xfd\xed\xb7\x1f\xde\x7f\x79\x7d\xf3\x0f\x9f\x3f\x8e\xef\xd6\x97\xd7\x7e\xff\x61\x7e\x5e\x3f\x7e\xfc\xe9\xf3\x58\xaf\xbe\xbe\x7f\xff\xe1\xcd\x1b\x0b\xaf\xf9\x7e\x7c\xf9\xfa\x47\x99\xf1\xc3\xf3\xe9\xcd\x1b\xbf\xfe\xbb\xbf\xfc\xf8\x65\xfd\xf0\xed\x87\xfd\xf1\x15\x69\x37\x7f\xfa\x74\xda\xbe\x5e\xdf\xfc\xe3\xfa\xfe\xfd\x8f\x5f\x3e\xff\xe5\xf5\xab\xff\x33\x3f\xf6\xf5\xbf\x5e\x73\x6d\xf7\xff\xff\xcf\x73\x7d\x7e\xff\xe1\xfb\xd7\xaf\x7e\xf3\xa7\xef\xec\x67\xf7\x77\x3f\x7d\xfa\xf4\xe7\xf5\xc3\xfa\xf0\xe5\x65\xf2\xad\x0f\x53\xf6\xcd\x37\xbf\xf9\xe3\xf3\xe9\x4f\xcf\x0f\xeb\xf5\xcd\x1f\xfe\xdf\xfc\x73\xff\xf5\xff\xcd\xbf\xfe\x83\xfe\x4a\x7f\xf3\x2f\xeb\xf3\x8f\xef\x3f\x7e\x78\xd9\xff\xbe\xae\xf2\x5f\xee\x7f\xfa\xcb\xa7\x75\xee\xf4\xe6\x9b\x7f\xfb\xe7\x6f\x7f\xfb\xfa\x77\x7b\xd9\xf5\x0a\x39\x87\xf8\x1f\xc7\xff\xaf\x7f\xfc\x38\xd7\xeb\xe2\x4f\x81\xbe\x8f\x8f\x73\xfd\xf8\xe9\x19\xeb\xf3\xf3\xe1\xfb\xf5\xe6\xf5\x7a\x7b\x5d\xef\x5e\xaf\xd7\xdb\xfb\x7a\xe7\x7f\xba\x7f\x97\xae\x77\xaf\xb7\xbf\xff\xdd\xef\x7f\xf7\xce\x3b\xf9\x37\xed\xdf\x18\xb7\xf9\xf0\xf1\xcb\x5c\x1b\x9f\xee\xf0\xd6\xf6\xbb\x97\xf9\x15\x7f\xfd\x57\x6f\xec\xba\xce\x73\xdf\xcf\xd3\x3a\x78\xeb\xba\xbc\xf5\xdb\x7b\xe9\x69\x18\xcb\x35\x66\xf9\x0c\x9f\xc9\x17\x92\x7c\x01\x5f\x78\xf7\xb2\x12\xac\xca\x17\xf1\xc5\x77\x2f\x4b\xe5\xf8\x12\xbe\xe4\xd7\xb6\x9b\x6b\x33\xbe\xec\xed\xac\x04\xf9\x0a\xbe\xe2\xbe\x6c\xf4\xa5\xe2\xab\xee\x0b\xc6\xb5\x37\xbe\xdb\x9f\x6b\x99\xfe\x35\x7c\x4d\xfd\xbb\x6e\xf9\x1e\x7c\x8f\xfa\x77\x73\xbf\x8e\xaf\xbb\x2f\x96\x4b\xbe\x81\x6f\xf8\x33\x52\xe5\x7e\x13\xdf\x54\x5f\x72\x91\x6f\xe1\x5b\xba\x5f\xe3\x19\x1b\x9f\x93\xae\x57\x53\xbb\x0c\x3f\x37\x96\x2c\xe9\x7e\x19\x7e\x19\x7e\x29\xca\x07\x3f\x37\x56\x2d\x8a\x41\x86\x9f\x1b\x2b\x81\xbe\x64\xf8\xb9\xb1\x94\x9a\xfa\x9c\xe1\x97\xc5\x2f\x65\x71\xce\xf0\xcb\xe2\x67\x51\xfd\xcb\xf0\x73\x63\xd5\x2e\xf1\xcb\xf0\x73\xe3\xdf\x83\xbe\xc0\xcf\x8d\x33\xa5\x2f\xf0\x73\x63\xe9\x82\x41\x86\x9f\x1b\x7f\x06\xcf\x85\x9f\x1b\x2b\x57\xa0\xcf\xf0\x73\x63\xd9\x6e\xfa\x0c\x3f\x37\x96\xef\xc0\xfd\xe0\xe7\xc6\x99\xea\x7e\x05\x7e\x6e\xac\xc4\x4b\xd7\x16\xf8\xb9\xb1\x12\xa3\xbe\x65\x81\x9f\x1b\xef\x0b\x3e\xf8\x15\xf8\xdd\xdc\x0f\x7e\x6e\xac\x94\x4b\xef\x56\xe0\xe7\xc6\x8a\x95\x26\x1f\xfc\xdc\x58\x4e\xc4\x64\x81\x9f\x1b\x2b\x2d\xd2\x17\xf8\x15\xc5\x5f\xce\xe2\x5c\xe0\x57\x88\x3f\xd8\x17\xf8\x15\xe2\xef\x3c\x03\x7e\x45\xfc\xee\xf3\x6e\xf0\x2b\xe2\xd7\x88\xa1\x02\xbf\x32\x89\x17\x7c\xf0\x2b\x8a\xbf\xbb\x71\x3f\xf8\x15\xf1\xbb\xb3\x7c\x15\x7e\x15\x7e\x59\xcf\xa8\xf0\xab\xf0\xab\x7a\xb7\x0a\xbf\xaa\xfc\x8d\xb7\xfa\x5c\xe1\x57\xe1\xc7\xfb\x56\xf8\xd5\x04\x53\xc5\x4b\x85\x9f\x1b\xcb\xd5\xb8\x16\x7e\x6e\xac\xa4\xd3\x17\xf8\xd5\x4a\x5f\xf4\x8d\x2a\xfc\xaa\xf8\x15\xc6\x97\x0a\xbf\xaa\xf8\x4b\x7c\xa3\x0a\xbf\xfa\x70\x2d\xcf\x80\x9f\x1b\xcf\x19\xee\x07\xbf\x2a\x7e\xa5\x8a\x55\x85\x5f\x3d\xfc\x78\x0f\xf8\x69\x9c\xcb\x35\xe8\xda\x07\x2e\x0f\x5c\x6e\x3d\xf7\x81\x8b\x1b\xff\x96\xba\xf6\x81\xcb\x23\x2e\x91\xd8\x7d\xe0\xf2\x68\x5c\x2b\x8c\x4d\x0f\x5c\xdc\x58\x4d\x17\xcf\x80\xcb\xa3\xb8\x2a\xe7\x19\x70\x79\xc4\xc5\x92\x58\x3d\x70\x79\x6e\x62\x9c\xfb\xc1\xc5\x8d\xd5\x0b\x56\x0f\x5c\x1e\x71\xc9\x8d\x67\xc0\xe5\x11\x97\xc8\xd8\xf4\xc0\xe5\x19\xbc\x1b\xcf\x80\x8b\x1b\x2b\x56\xf5\x2d\x1f\xb8\x3c\x8a\xab\x4a\x4e\x3f\xc4\xd5\xb3\x69\xa7\x3e\x77\xe2\xaa\x6b\x5e\xb8\x88\xab\x0e\xbf\x7e\xe6\x05\xda\xc1\xaf\x2b\xae\x12\xf1\xd2\xe1\xd7\x0f\x3f\xbd\x47\x87\x5f\xd7\xb8\x76\x07\xda\xc1\xaf\x93\x97\x95\x67\xc0\xaf\x13\x57\x8c\x25\x1d\x7e\x5d\xe3\xda\xc5\x5c\xd1\xe1\xd7\xc5\xaf\x05\xbd\x6f\x87\x5f\x57\x5c\x65\xf2\xa8\xc3\xaf\x93\x97\x8c\xbb\x1d\x7e\xbd\xd3\x8e\xfe\xc1\xaf\x0f\xe6\x37\x7c\xf0\xeb\xe2\x17\x88\xab\x0e\xbf\x2e\x7e\xf1\xf4\x05\x7e\x6e\x2c\x19\xac\x06\xfc\xc6\xc5\x58\xa7\xfe\x0d\xf8\x8d\x93\x97\xb4\x83\xdf\x60\x5e\x2d\xfa\x96\x03\x7e\x83\xbc\x2c\x8a\x8d\x01\xbf\x21\x7e\xa1\x69\xa6\xff\x79\x4e\xff\x9f\xa6\xf9\x7b\x0d\xf0\x0e\x85\x62\x08\x3c\x0e\x94\x83\x29\x82\x57\x1a\xa0\x1c\x9a\x22\x52\x14\xb6\x01\xca\xd1\xb8\x16\x1f\x28\x87\xa6\x88\xc4\x10\x37\x40\x39\xce\x14\x21\x6c\x03\x94\x83\x50\x4c\x0a\xb1\x01\xca\x41\x28\x32\x85\x0d\x50\x0e\x50\x9e\xd7\x04\xe5\xd8\x0c\x03\x6a\x37\x41\x39\x99\x62\xab\xda\x4d\x50\xce\x83\x52\xcf\x9d\xa0\x9c\x9a\x22\x22\x4b\x85\x09\xca\x49\x28\x1e\x1f\x28\x67\xa2\x2f\xdc\x0f\x56\x53\x53\x6c\x2e\x7a\xdf\x49\x28\xce\xc2\x7b\xe8\xd3\x4c\xf8\x4d\x96\x28\x17\xfd\x83\xdf\x14\xbf\xca\xb0\x37\xe1\x37\xc5\x2f\x12\x4e\x13\x7e\x6e\x7c\xa8\xe1\x19\xf0\x73\xe3\xed\xf0\xc1\x6f\x12\x8a\x95\xe7\xc2\x6f\x12\x8a\x95\xe7\xc2\x6f\x32\xc4\x31\x65\x4f\xf8\x4d\x85\x62\x81\xfd\x82\xdf\xba\x78\x5f\xb5\x5b\xf0\x73\xe3\xed\x94\x16\x0b\x7e\x8b\xa1\x90\x14\x5d\xf0\x5b\x5a\xe2\x45\xfa\xbc\xe0\xb7\x12\xec\xf1\xc1\x6f\x69\x8a\x48\x4c\x11\x0b\x7e\x4b\xfc\xac\x89\xf3\x82\xdf\xaa\x0c\x99\xe2\xb2\xe0\xb7\x18\x0a\x8f\x0f\x7e\x6e\x2c\x9d\xf8\x5b\xf0\x5b\xa4\xf2\x79\x2e\xfc\x56\xe7\xdd\x78\x2e\xfc\x16\xf1\x77\x9e\x0b\xbf\x35\x89\x5d\xae\x85\xdf\x62\x89\xc7\x52\x75\xc1\xcf\x8d\x4f\x75\x62\xb0\xe1\xb7\xe1\xc7\x52\x61\xc3\x6f\x13\x7f\x45\xdf\x7c\xc3\x6f\xc3\xef\xb4\x83\xdf\x8e\x7f\x15\x2f\x1b\x7e\x5b\x53\x49\x60\xf9\xb5\xe1\xb7\x59\x22\xb3\xec\xdb\xf0\x73\x63\xd5\x32\x7d\x81\xdf\x66\x2a\xb9\xf5\x1e\x1b\x7e\x6e\x2c\x25\x72\x70\xc3\x6f\x37\xfa\xa7\x5c\xdd\xf0\x73\xe3\xf7\xe3\x19\xf0\xdb\xc4\x1f\xb1\xb1\xe1\xb7\x07\xdf\x8d\x3e\xc3\x6f\x8b\x5f\x88\xdc\x0f\x7e\x6e\x2c\x99\x96\x5f\x1b\x39\x21\xe3\x53\xdd\x2d\x9f\xe1\x33\xee\xd7\xe4\x0b\xf8\x02\x7d\x4e\xf2\x45\x7c\x91\xfb\x65\xf9\x12\x3e\xb1\x8a\x95\xfb\x65\x7c\x9a\x36\x82\xa6\xdd\x8d\x9c\xd8\xc8\x89\x58\xe8\x4b\xc5\xa7\x5c\x2d\x31\xca\x77\xe3\xbb\x19\xe6\x79\x6e\xc3\xc7\x72\x58\x53\xce\x46\x4e\x6c\xe4\x44\x4c\xf4\xb9\xe3\xd3\x58\x97\xc5\x7e\x23\x27\x64\xac\x84\x4c\x5f\x26\xbe\x49\x9f\xe9\xcb\xc2\x47\xac\xe9\x9b\x6f\xe4\xc4\x46\x4e\x24\xc5\xc6\x46\x4e\xc8\xf8\x72\x1d\x1f\xfc\x24\x27\x4a\x48\x7a\x06\x72\x42\xc6\x52\xd1\xf4\xb7\x91\x13\x32\x96\x93\xa6\xb5\x8d\x9c\xd8\xc8\x89\x6c\xdc\x0f\x7e\x19\x7e\xca\xd5\x8d\x9c\xd8\xc8\x09\x96\x5f\x1b\x39\x21\xe3\x7d\xe1\xb9\xf0\x93\x9c\x48\xc1\xc4\x0a\x39\xb1\x8f\x9c\x38\xcf\x85\x9f\xe4\x44\x0e\x92\x40\x1b\x39\xb1\x91\x13\x41\xcb\x8c\x8d\x9c\x90\xf1\xe7\xd2\x3f\xf8\x49\x4e\xa4\xd8\xb8\x1f\xfc\x90\x13\x35\xd2\x17\xf8\x65\x72\x55\x63\xc4\x46\x4e\x6c\xe4\x44\x28\xf8\xe0\x57\x4e\xfc\xa9\xcf\xc8\x09\x19\x2b\x8d\x38\x45\x4e\x6c\xe4\xc4\x4d\x0c\x21\x27\x36\x72\x22\x06\x7c\xf0\x43\x4e\xc4\xaa\xbe\x20\x27\x64\x7c\xf9\x45\x3b\xf8\x21\x27\x4e\x8c\x23\x27\x36\x72\x22\x44\x9e\x0b\x3f\xc9\x89\x72\x5f\x62\x85\x9c\xd8\xc8\x89\xd8\xae\x5f\x9e\xee\x37\x6a\x43\xc6\x57\x53\x74\x0b\xbc\xe5\x84\x27\xb7\x06\x2f\x6a\x03\x05\xbc\x51\x1b\x1b\xb5\xc1\xd0\xb0\x51\x1b\x1b\xb5\x11\x09\x77\xd4\xc6\x46\x6d\x24\xad\x60\x36\x6a\x63\x1f\xb5\x41\x4a\xa1\x36\x36\x6a\x23\x68\x48\xda\xa8\x8d\x7d\xd4\x86\x56\xa3\x1b\xb5\xb1\x51\x1b\x91\x50\x44\x6d\xc8\xf8\x33\xb8\x1f\x78\xa5\x36\xf2\xc5\xbb\xa1\x36\x64\x2c\x37\xad\x64\x37\x6a\x43\xc6\x87\x6f\xa5\x05\x6a\x63\xa3\x36\x42\xe0\x7e\xe0\x45\x6d\xdc\x84\x22\x6a\x43\xc6\x3f\x35\xef\x06\x3f\xa9\x8d\x5c\x13\xcf\x80\x9f\xd4\x46\xa9\x99\x77\x83\x5f\x25\xbd\xb9\x16\xb5\xb1\x51\x1b\xc6\xd0\x85\xda\x90\xf1\x50\xd4\x7b\xa0\x36\x64\xbc\xcf\xba\x1f\x6a\x43\xc6\x4a\x25\xcd\x50\x1b\x32\xae\x18\xc4\x0f\xb5\xb1\x51\x1b\xac\xe6\x37\x6a\x63\x1f\xb5\x51\x78\x2e\x5c\x8e\xda\x08\x3c\x17\x2e\x0f\xab\x65\x18\xa0\x36\x64\x3c\xa5\xc4\x0f\xb5\x21\xe3\xc3\x23\xcf\x85\x8b\xd4\x46\x35\xe3\x5a\xb8\xa0\x36\x62\xa1\x1d\x5c\x50\x1b\xad\xf0\x5c\xe2\x4a\x6a\x23\xdd\x52\xc0\x1b\xb5\x21\x63\xa9\x6a\xca\xd9\xa8\x0d\x19\xab\x17\x29\x85\xda\xd8\xa8\x8d\x06\x17\xd4\xc6\x46\x6d\xb0\x13\xb2\x51\x1b\x1b\xb5\x51\xcf\x33\xe0\x87\xda\x48\x0c\xc1\xa8\x8d\x8d\xda\xc8\x91\x76\xf0\x93\xda\x28\x95\xe9\x00\xb5\x21\xe3\xdf\x88\x76\xf0\x43\x6d\xd8\x79\x06\xfc\x50\x1b\x09\x06\xa8\x0d\x19\xab\x76\x89\x29\x6a\x43\xc6\xea\x95\x78\x06\xfc\x50\x1b\x51\xcb\x91\x8d\xda\x90\xb1\xd4\x98\x12\x51\x1b\x32\x56\x2a\x43\x17\x6a\x63\xa3\x36\x32\x7d\x46\x6d\x6c\xd4\x46\x82\x3d\x6a\x43\xc6\xf2\x7d\x71\x2d\xfc\x8e\xda\x38\x3e\xf8\x0d\xf2\xb2\xe9\x3d\x90\x13\x32\xbe\x4c\xc3\x07\x3f\x49\x8c\x12\xb4\xe4\xd9\x48\x0c\x19\x67\xca\x73\xe1\x87\xc4\xb8\x88\x3f\x24\x86\x8c\xc7\x95\xde\x17\x89\x21\xe3\xf1\xcc\x33\xe0\x37\x4e\xfc\x89\x01\x12\x43\xc6\x99\x72\x3f\xf8\x8d\xa3\xd6\x78\x0f\xf8\x8d\xb3\xc4\xe3\x5a\xf8\x21\x31\x72\x50\x3b\x24\x86\x8c\xe7\xb9\xfa\x82\xc4\xd8\xf3\xe4\x2f\x3e\xf8\x21\x31\x32\xe3\x15\x12\x63\x23\x31\x6e\xa9\xdd\x8d\xc4\x90\xf1\xa5\x39\xd7\xc2\x6f\x9e\x5d\x28\x7c\xf0\x9b\x8c\x6b\x97\x62\x08\x89\x21\x63\xf9\x22\x7f\x91\x18\xfb\x48\x0c\xa6\x71\x24\x86\x8c\x95\x33\xb5\x23\x31\x64\xfc\x5b\x2a\xd6\x90\x18\x32\xbe\xcc\xd0\x37\x42\x62\xec\x23\x31\x98\xd6\x90\x18\x1b\x89\x51\xb5\x5b\xba\x91\x18\x32\xfe\x6e\xfa\x1e\x48\x0c\x19\x5f\x16\xa8\xcf\x48\x8c\x8d\xc4\xb8\x99\xc6\x91\x18\x32\x9e\x47\x7a\x2e\x12\x63\x1f\x89\xc1\x94\x88\xc4\x90\xf1\x6f\xa9\xf7\x45\x62\xc8\x58\xbd\x58\x8e\x20\x31\x64\xac\xb0\x93\xb9\x91\x18\xfb\x48\x0c\xf2\x08\x89\x21\x63\xa9\x26\x9e\x0b\x3f\x24\xc6\x59\xca\x20\x31\x64\xac\x64\xa6\x7b\x24\xc6\x3e\x12\xe3\xf4\x19\x7e\x48\x8c\x18\x79\x06\xfc\xd6\xe1\x47\x3b\xf8\xad\xb3\x0b\x25\xf6\x48\x8c\x8d\xc4\x38\xcb\x57\x24\x86\x8c\xcf\x79\xba\x1f\x12\x43\xc6\xf2\x95\xe2\xdf\x31\xdd\xa3\x40\xf6\x51\x20\x84\x31\x0a\x44\xc6\x3f\xbf\x10\xa1\x40\x64\xac\x14\xc2\x13\x05\x22\xe3\x2b\x13\x7d\x42\x14\x88\x8c\xaf\x0a\xd5\x7d\x14\xc8\x46\x81\x5c\x0c\xcb\x28\x10\x19\x5f\x3e\xe0\x03\xef\x66\x55\xc3\xab\xa3\x40\x64\xfc\x5a\x7d\x6a\x14\x88\x8c\xa5\xcc\xaa\x10\x05\x22\x63\xe5\x66\x18\x40\x81\xec\xaf\x0a\x84\x76\xe0\x45\x81\x94\xf3\x6e\xe0\x45\x81\x64\x0f\xd9\x76\x49\x81\x60\xac\x6a\xa8\x69\x97\x14\x08\xc6\xaa\xf9\xfb\xb6\x4b\x0a\x04\xe3\xe9\x58\xe5\x8b\xf8\x50\xbb\x95\xfb\x25\x7c\x67\xe3\x85\x6b\x33\x3e\xa9\xb5\xe0\x21\xd6\x2e\x29\x10\x8c\x33\x88\xf2\x55\x7c\x6c\x5c\xdd\xdc\xef\xc6\x77\x0a\x1a\xb4\x6b\xf8\x60\x55\x9b\x7c\x0f\x3e\x86\x42\x5f\x66\xb4\x4b\x0a\x04\x63\xa5\xdc\xbc\xdb\xc0\x27\x56\xf9\xf4\x6f\xe2\xa3\xa0\x71\xda\x2d\x7c\x6c\xfc\x5d\xbc\xef\xc6\xa7\x50\x94\x6a\x6f\x57\x86\x5f\x26\x95\x13\x3e\xf8\xa1\x40\xee\x5b\x7d\xc9\xf0\xcb\x67\x29\x83\x0f\x7e\x14\x34\xb2\x7f\xcb\x76\x65\xf8\x49\x81\x94\x1c\xf1\xc1\x2f\x9f\x25\x9e\xfa\x92\xe1\x27\x05\x52\xb4\x9b\xd1\xae\x0c\xbf\xcc\x54\x7c\x89\x73\x86\x5f\x66\x43\xb9\x89\x55\x86\x9f\x14\x48\xaa\x37\x7d\x86\x5f\x3e\xfc\xc4\x39\xc3\x4f\x0a\xa4\xb4\x4b\x5c\x32\xfc\x50\x20\x57\xe6\x7e\xf0\x43\x81\xd4\x1b\x1f\xfc\x8e\x02\x39\x5c\xe0\x47\x41\x23\x15\xf9\x0a\xfc\xdc\xb0\x02\x68\x57\x01\x9f\x04\x48\x2e\x7a\x6a\x81\x9e\x9b\x60\xc7\x05\x3c\x37\x29\x25\x31\x29\xb0\x43\x7d\x04\xa3\x19\xec\x4e\x31\x83\xfe\x16\xd8\x49\x7d\xc4\x60\x3c\x14\x76\xa8\x8f\x68\x62\x57\x60\x27\xf5\x91\x4f\xcc\x17\xd8\xa1\x3e\xa4\xe8\xda\x55\x60\x27\xf5\x91\x8c\xef\x53\x60\x47\x31\x43\x9b\xc4\xed\x2a\xb0\x2b\x67\xa7\x4f\x31\x50\x60\x57\x58\xc6\x90\x07\x05\x76\xc8\x8b\x48\xbe\x14\xd8\x21\x2f\x2e\xd3\x7b\x54\xd8\x55\x76\xfa\x88\xe5\x0a\x3c\xc9\x8b\xa4\x31\xad\x5d\x15\x7a\x92\x17\x59\x4b\xd2\x76\x55\xf0\x21\x2f\x62\x13\xab\x0a\xbf\x23\x2f\xb2\x62\xaf\xc2\x8f\x62\x46\x6b\x5c\x0b\x3f\xe4\x45\x6b\x62\x50\xe1\xf7\xb5\x98\x41\xff\xe0\xe7\x26\x9e\xe1\xa1\x82\xaf\x9e\x8d\x16\xba\x0c\xbe\xaf\xb5\x0c\x1e\x01\x3e\xa9\x8b\xdc\x4e\xf7\xc0\x47\x2d\x23\x1c\x1f\xf8\x50\x17\x81\xcf\x56\xc1\x27\x75\x91\x02\x61\xf6\x80\x45\xea\x22\xb7\xa6\x57\x7b\xc0\x82\xba\x08\x84\xed\x03\x96\x87\x0d\xa8\xaa\xbe\x3c\x60\x79\xce\x06\x1e\x3e\xb0\xa0\x2e\xc2\xad\xf7\x78\xc0\x82\xba\x08\x51\xfd\x7b\xc0\x22\x75\x91\x22\x61\xfa\x80\xe5\xa8\x0b\xc2\xea\x81\x0b\xea\x22\x32\xf4\x3d\x70\x91\xba\x48\xda\x54\x69\xd7\x03\x97\xe7\xd4\x68\x15\x42\x0f\x5c\x4e\x2d\x83\xa1\xe0\x81\xcb\xc3\xa6\x00\x4c\x1f\xb8\x3c\x67\x53\x85\x67\x10\x56\xcf\xa9\x31\xca\xd7\x09\x2b\x6a\x19\x21\xe9\x7e\x1d\x7e\x52\x17\x49\x9b\xcf\xed\xea\xf0\xeb\x87\x9f\x38\x77\xf8\x9d\x5a\x46\xd6\xf7\xe8\xf0\xeb\xac\xee\xc8\xf1\x0e\x3f\xa9\x8b\xa4\x0d\xe9\x76\x75\xf8\xa1\x2e\x22\xdf\xad\xc3\x0f\x75\x11\xda\x2f\xcf\xf4\xed\xea\xe0\x95\xf8\x48\xf1\xbc\x12\x78\x3b\x25\xc8\x2c\xe4\x1d\xbc\x5f\x4b\x1d\x74\x0b\xbc\x94\x3a\x42\xa6\x0b\xe0\x3d\xa5\x0e\x06\x9f\x0e\xde\x53\xea\x20\xda\x3b\x78\x29\x75\x04\x3e\x4d\x07\x2f\xe2\x23\x30\x2b\x0d\xf0\x0e\xf0\x32\x3b\x0c\xf0\x22\x3e\x02\x88\x06\x78\x29\x75\x9c\x51\x65\x80\x77\x20\x7e\xf9\x0c\x03\xbc\x6e\xce\x9c\x3e\x80\x3b\x4e\xa1\x4d\x1f\x70\x00\x77\x9c\xa5\x1f\x57\x02\x57\xd2\x23\xa9\xa8\xdb\xae\x01\x3d\x49\x8f\xaa\x9d\x99\x76\x0d\xe8\x21\x3d\xb4\x9b\xd9\xae\x01\x3d\x49\x8f\x72\x05\xda\x41\x0f\xe9\x11\xce\x73\xa1\x27\xe9\x91\xe3\xc5\x73\xa1\xe7\xa6\x56\x96\x1c\x03\x78\x47\x79\x5c\xbc\x06\xf0\xa4\x3c\x92\xea\x8f\xed\x9a\xc0\x43\x79\x24\x62\x7d\x02\x4f\xca\xe3\x6a\x0c\xfb\x13\x78\x28\x8f\xc4\x90\x37\x81\x27\xe5\x51\x23\x53\xe1\x04\xde\x3c\xe7\x2f\xf4\xc1\x27\xf8\xa4\x3c\x72\xbc\x68\x07\xbe\xa3\x3c\xc8\xc5\x09\xbe\xc9\x90\x17\xe9\x1f\xf8\xe6\xa9\x53\x0a\xcb\x04\xdf\x3c\xca\x8d\x6b\xc1\xf7\x55\x79\x70\x2d\xf8\x26\x1b\xa6\xe7\xb9\xe0\x73\xe3\x8b\x2f\xb9\xa0\x87\xf0\xb0\x46\x97\xc1\x37\x59\xd9\x99\x28\x4f\xf0\x4d\x16\xce\xac\x60\x16\xf8\x4e\x6d\x23\x09\xd5\x02\x1f\xb5\x0d\x09\xbc\x76\x2d\xf0\x21\x3c\x1a\xb3\xcd\x02\x1f\xb5\x8d\x0c\x82\x05\x3e\x6a\x1b\xc6\xca\x69\x81\x6f\x51\x1b\xca\xf8\xc0\x77\x84\x07\xe9\xbe\xc0\xb7\xd8\x78\x61\x15\xb7\xc0\xb7\x10\x6e\xe4\xd0\x02\xdf\xa2\x36\x44\x94\x2e\xf0\x1d\xe1\x01\x97\x05\x3e\x09\x8f\x5c\x99\x5a\x16\xf8\x24\x3c\x52\x66\xa8\x5d\xf0\x93\xf0\x28\x89\x4f\xb4\xe0\x27\xe1\x91\xb5\x47\xd9\xae\x05\x3f\x09\x8f\x94\xab\xee\xb7\xe1\x27\xe1\x91\x32\x61\xb5\xe1\x77\x94\x05\xab\x89\x0d\xbf\x8d\xf0\x6d\xea\xdf\x86\x1f\xca\x22\x90\x81\x1b\x7e\x52\x16\xa9\xb0\xc2\xda\xf0\x43\x59\x18\xc3\xef\x86\xdf\x86\x1f\x4c\x37\xfc\x4e\x6d\x83\xcc\xdf\xf0\x43\x59\xa8\x8e\xd6\xae\x0d\xbf\x7d\xc2\x4f\xdf\x77\xc3\x6f\x33\xe5\x5e\xf8\xe0\x87\xb2\x88\xa7\x2f\xf0\x93\xb2\x48\x85\x15\xef\x86\xdf\x51\x16\x81\xe7\xc2\x0f\x65\x51\x14\x2f\x86\xb2\x30\x8e\x4a\x25\x17\xdc\xcd\x50\x16\xc6\x51\x29\x6d\xd0\x34\x43\x59\xc8\xf8\x4a\x31\xc8\x17\xf1\xb1\x49\x75\x73\x6d\xc2\x47\xac\xe9\x7b\x18\xca\xc2\x4e\x6d\x43\x0c\x0c\x65\x21\xe3\xa3\x1f\xbe\x8a\xef\x1c\x29\x88\xf2\xdd\xf8\x8e\x0a\xe3\x7e\x0d\x5f\xa3\xce\x47\xbb\x07\xdf\x89\x35\xfa\xdc\xf1\x29\x55\x4b\xe6\xda\x81\x0f\x15\xa6\x79\xc2\x50\x16\x32\x56\xb4\x87\xdf\x0c\x65\x21\x63\xa9\x14\xae\xdd\xf8\xce\x3c\x21\x1f\xca\xc2\xf2\xa9\xa3\xa9\x2f\x28\x0b\x19\x4b\x85\xfb\xa1\x2c\x64\x3c\xee\xc5\x0a\x65\x21\x63\x76\xd3\x67\x94\x85\x8c\xc5\xc6\xa5\xe0\x43\x58\x5c\xa7\x19\xf8\x24\x2c\xa2\x4e\x04\x35\x43\x58\xc8\xc4\x0b\x2a\xe8\x0a\x3b\x95\x0d\x7d\x70\x64\x85\x4c\xce\x5c\x07\x3a\x37\xa1\x5e\x34\x82\x9c\x9b\x54\x25\x79\x0c\x49\x21\x13\x62\xfc\xe5\xbd\xfb\x66\x08\x0e\x19\xff\xc4\xdc\x05\xac\x99\x19\xa4\xe2\x03\x6b\x3e\x43\xa0\xfa\x84\xe0\x90\x31\x6d\xc7\x34\x43\x70\xc8\x04\x9d\x05\x69\x86\xe0\x30\xce\x4f\x21\x11\x0c\xc5\x21\xe3\xc1\xcb\xdd\x80\x5a\x58\xdb\x04\x11\x44\x72\x18\x92\x43\xc5\xd8\x66\x48\x0e\x19\x4b\x15\xfa\x48\x0e\x43\x72\x04\x18\x22\x39\x64\x3c\xb0\x78\x2e\x5c\x91\x1c\x46\xc0\x20\x39\x8c\x82\x47\x6a\xb4\x03\x6d\x39\x3b\x2f\xb4\x83\x2d\x92\xc3\x4e\x9f\xa1\x87\xe4\xd0\xae\x5c\x33\x24\x87\x8c\x07\x96\xe8\x21\x39\xec\x54\x34\xa2\xda\x21\x39\x0c\xc9\x91\x82\xda\x21\x39\xec\xeb\xf9\x29\xbd\x07\x92\xc3\xbe\x56\x34\x94\x0c\x48\x0e\x43\x72\x5c\x17\x3e\xf8\x1d\xc9\x01\x03\x24\x87\xd5\xb3\x73\x8a\x0f\x7e\x5f\x25\x87\xde\x0d\xc9\x61\xa7\xa2\xc1\x77\x43\x72\x18\x15\x8d\x74\xfa\x02\x3f\x69\x8e\xac\x6a\x4d\x33\x34\x87\xd5\x33\xff\xea\xbb\xa1\x39\x8c\xf3\x53\x2a\x5e\x35\x43\x73\x18\x15\x8d\x56\x69\x07\x3f\x34\x47\x96\x1e\x30\x34\x87\x9d\x8a\x06\xec\xd1\x1c\x32\x96\xaa\x16\x93\x86\xe6\x90\xf1\xe4\x17\x3f\x34\x87\x9d\xf3\x53\x0c\x9e\x68\x0e\x43\x73\x84\xa0\x67\xa0\x39\x64\x2c\xdd\xc4\x06\x9a\x43\xc6\xaa\xe6\x5f\x43\x72\x18\x05\x8d\xa2\x65\x89\x21\x39\x0c\xc9\x71\x13\xce\x48\x0e\x7b\x4e\x1d\x92\x76\x60\xe1\xf8\xd4\x09\x03\x24\x87\x9d\x82\x86\x24\x8c\x21\x39\x0c\xc9\x61\x91\x2e\x83\x85\x82\x46\x21\x24\x91\x1c\x32\x96\xee\x46\xff\x08\x2b\x24\x47\xe1\x53\x22\x39\x64\x32\x1f\x08\xc1\x21\x63\xa5\xd2\x63\x04\x87\x8c\x65\x1d\x1a\x6c\x86\xe0\xb0\x23\x38\x98\x51\x10\x1c\x32\x0e\x54\x3d\x46\x70\x18\xe5\x8c\x70\x9e\x0a\x3c\x04\x47\xe5\x6d\x11\x1c\x32\x96\x1a\xf4\x50\x14\xd6\x4f\x39\x08\x1f\xf4\x28\x67\x54\xc6\x11\x14\x85\xa1\x28\x2a\xc1\x82\xa2\x90\xb1\xc8\xec\x6b\x28\x0a\x43\x51\x44\x92\x08\x45\x21\xe3\xa3\x38\xef\x06\x3d\x29\x8a\x7c\x91\xa8\x28\x0a\xa3\x74\x71\x6b\x35\x64\xa8\x07\xfb\x7a\x50\x4a\xf7\x43\x3d\xd8\x39\x28\xa5\x45\xb6\xa1\x1e\x8c\xd2\xc5\xcd\x57\x43\x3d\xc8\xf8\x73\x69\x07\xab\xc1\x01\x46\x18\xa0\x1f\xec\x94\x2e\x18\x72\xd1\x0f\x46\xe9\xe2\x66\x70\x41\x3f\xd8\x29\x5d\xf0\xdd\xd0\x0f\xc6\xe9\x28\x56\x7a\x86\x7e\xb0\x53\xba\xe0\x9b\xa3\x1f\x6c\x9c\xbd\x4d\xbd\x2f\xfa\xc1\x38\x1d\xd5\x98\xe1\xd1\x0f\x36\x4e\xe9\x87\x3e\xc3\xea\x08\x08\xed\xaf\xd9\x38\xac\x14\x69\x67\xb5\x81\x80\x90\x89\x45\x8b\x67\x43\x3f\x18\x95\x0b\xf6\x06\x0c\xfd\x20\x63\x39\xf1\x79\xd1\x0f\x32\xbe\x38\xe0\x5a\xf0\x71\x38\xaa\x91\x1c\xe8\x07\x19\xbb\xf2\xb9\x16\x54\x68\x85\x00\x02\xb4\x82\x1d\xad\x70\xd1\x0e\x54\xf3\x9c\x69\xa4\x2f\xa0\x3a\x5a\x41\x7b\x03\x86\x56\x90\xb9\x2f\xa6\x51\xa4\x82\xcd\xb3\x0b\xac\xaf\x81\x56\xb0\x73\x0e\xea\xa2\x7b\x90\x9a\x67\xa2\x14\x3d\xb4\x82\xcd\x73\x36\x40\xed\xd0\x0a\x32\x56\x8d\x61\x09\xad\x60\x14\x29\xce\xb4\x88\x56\x90\xf1\x69\x82\x76\xa0\x3a\x45\x0a\x5e\x03\xad\x60\xe7\x1c\x54\xcc\x7f\xc7\x3c\x8f\x94\x30\x6a\x18\x31\xe9\xcd\x91\x12\x32\x3e\x13\xd0\x55\xe8\x72\x4c\x8a\x4d\x3e\x43\x4a\xc8\xf8\x1a\x81\xae\x42\x97\x1a\x46\x64\xc9\x87\x94\x90\x89\x67\x92\x43\x49\x18\x25\x8c\xc0\x47\x45\x49\xc8\x58\xbe\x21\x89\x92\xb0\xa3\x24\x02\xd7\x42\xf7\x9c\x92\xe2\x2b\xa0\x24\x6c\xfd\x35\x5d\x94\x84\x51\xc2\xc8\x52\x3a\x86\x92\x30\x94\x44\xe0\x7e\x28\x09\x3b\x35\x0a\x56\x77\x28\x09\xe3\x94\x14\x7b\x9f\x86\x92\x90\x29\x99\x0f\x83\x90\x90\xa9\x91\x29\x04\x1d\x21\x63\x37\xc9\x8e\x8c\x90\xa9\x39\xe1\x02\xdd\x39\x21\xc5\x2a\x13\x15\x21\x63\x09\x55\x62\xa8\x08\x19\xb3\xeb\xb4\x83\x9d\x54\x44\xba\x32\x7d\x83\x1d\x2a\x82\x3d\x00\x43\x45\xc8\x58\xbe\x49\x3a\x54\x84\xa1\x22\x92\x72\x3d\xa0\x22\x64\x2c\xb1\x69\x15\x50\x11\x81\x13\x52\xa1\xe2\x0b\xf8\xc4\xa9\xe8\x19\x01\x15\x21\xe3\x49\x1c\xe4\x4b\xf8\x98\x58\x1b\xed\x32\xbe\xb3\xbf\xde\xe4\x2b\xf8\x14\x66\x3a\x34\xdc\x02\x2a\x22\x70\x42\x2a\x45\x9e\x7b\xe3\xa3\x3e\xa1\xef\x18\x50\x11\x81\x13\x52\x6c\x52\x04\x54\x44\x38\xf5\x89\x44\xbb\x8e\x0f\x15\x71\xd1\x6e\xe0\xa3\x3e\x61\xf8\x26\x3e\x66\xd6\x42\x9f\x17\x3e\xea\x13\x8a\xa9\x80\x8a\x90\x71\xd5\xa9\x76\xa8\x88\xc0\x0f\x2e\x92\xc6\xc5\x80\x8a\x08\xf9\xcc\x17\xba\x16\x15\x11\x38\x21\x85\x02\x0e\xa8\x08\x19\x8f\x33\x71\x41\x45\x04\x4e\x48\xa9\xd4\xd8\x02\x32\x22\xf0\x83\x0b\xe6\xb8\x80\x8c\x08\xe7\x07\x17\x89\xbe\xc0\x2f\xb3\x19\x1a\xf0\xc1\x4f\x3a\xa2\x9a\xd4\x64\x40\x48\x04\x4e\x48\xe9\x54\x57\x0b\x48\x89\x70\x7e\x70\x51\xe8\x1f\xfc\x54\x9f\xc8\x76\xee\x07\xbf\xcc\x51\x01\xad\x42\x02\x72\x41\xc6\x4a\x0e\xf8\xe0\x97\xd9\x31\xb9\xb8\x1f\xfc\xf2\x39\x2a\x20\xf6\xc8\x85\xc0\x09\x29\x1d\xb5\x68\x01\xbd\x10\x38\x21\xa5\x1f\xd4\xb4\x80\x60\x08\xe7\x84\x94\xe6\xfe\x80\x60\x08\xe7\x07\x17\x01\x1f\xfc\xce\x09\x29\xb8\x20\x18\x64\x2c\xfb\xe7\x7d\x10\xcf\x8f\xe4\x55\x6b\xee\x10\x93\x47\x22\xc9\xa2\x7e\x24\xf3\x20\x83\x1e\x16\x9d\x3e\x5a\x3c\x2c\x39\x1f\x3b\x55\x49\xf7\x28\xe3\x31\x2a\xf2\x3f\x24\x3c\x46\x63\xdb\x43\xbe\x3f\xca\x3b\x55\x23\x1f\xb2\xee\x09\x7e\x67\xa9\xd1\x27\x70\xe7\xe0\x6d\xb4\x44\x7d\x22\x6d\xa2\xb7\x49\x3e\xe0\x3c\x91\x36\xb1\x4b\xdb\xf9\x55\x51\xab\x9a\x27\xfa\xa2\x25\xfb\x10\xfc\x24\xae\x4a\x7e\x55\xf6\x68\x7c\x12\x57\x25\xbf\x73\xf1\x78\x7a\x32\x6d\xb2\xb7\xa9\x2e\x24\x9f\x4c\x9b\xec\x6d\x6e\xf3\xab\x0a\x6d\x8a\xb7\x69\x2e\x11\x9e\x42\x9b\xe2\x6d\x9a\x8f\x45\x4f\xa5\x4d\x15\x9f\xcb\x75\xd3\x53\x69\x54\x35\xc4\x98\xcb\x8d\xe7\xa6\xd5\x0d\x45\x0f\x8e\xe7\xa6\xd5\xbd\x01\xeb\x17\x36\x5a\x35\xb5\xd2\xfe\xfc\xd3\x68\xd5\xce\x70\xe5\x17\x3e\xb4\x7a\xea\xd9\x47\x72\x17\xad\x1e\xb5\x2a\x97\x5f\xd8\x69\xd5\x11\x0b\x9e\xa6\x4f\xa7\x55\x57\x2b\xed\x4f\x3f\x83\x56\x43\xad\xee\x6c\xee\xa2\xd5\xd0\xa0\xd9\xcc\x2f\x1c\x1a\x33\x31\x21\xb9\xce\x7a\x26\x17\x4e\x7d\xbc\xcb\x67\xaa\x67\x72\xe1\x54\xab\xcb\x07\xcc\x87\x5f\xb2\x3d\xfa\xc5\x47\xd0\xf1\x8a\x87\x1f\x7c\x3c\x3a\xa1\x1a\x74\xca\xe1\xe1\x80\xea\xa3\x93\x5a\x21\x86\x5f\x3e\x46\xff\x70\x8e\xeb\xd1\x79\x91\xa0\x63\x39\x0f\xc7\x45\x9e\x7d\xfa\x18\xde\xbc\xed\x94\x9d\xbb\x6a\x34\x41\x23\x6e\xa7\x44\xd3\xb5\x87\x14\xb2\xcb\x91\x4e\x16\x74\x05\x78\x28\x2e\xaa\x3a\x11\xde\x89\x55\x95\x33\x3b\xc1\xda\x09\xd6\xea\x19\xdf\x89\xd6\xae\x68\x0d\xb7\x07\x70\x27\x5c\xbb\xc2\x35\x34\x9f\x47\x3a\xf1\xda\xa3\x62\x5a\x4b\xd5\x4e\x78\x76\x85\x67\x34\x67\xd7\x89\xcf\x9e\x88\x7c\x67\xd7\x09\xd0\xae\x00\x8d\xfa\xc1\x41\x27\x42\xbb\x22\x34\x4a\x3b\x76\x42\xb4\x2b\x44\x63\xf2\x15\x78\x27\x46\xbb\x62\x34\x26\x87\xd3\x09\xd2\xae\x20\x8d\xb9\xde\xee\xa2\x95\x82\x34\x16\x9f\x92\x3b\x41\xda\x15\xa4\x51\x3f\x3b\xec\x04\x69\x57\x90\xc6\xea\x13\x54\x27\x48\xbb\x82\x34\xde\xbe\xf6\xe8\x04\x69\x57\x90\xc6\x96\xfd\x42\x82\xb4\x2b\x48\x93\xb6\xb2\x3b\x41\xda\x15\xa4\x49\xe7\xd3\x3a\x41\xda\x15\xa4\x49\x7b\xf9\x9d\x20\xed\xdd\xd7\xfb\x49\xf2\xab\x77\x2d\xf7\xbb\xe2\x36\x49\xaa\x77\xe2\xb6\x2b\x6e\xa9\x14\x75\xe2\xb6\x2b\x48\x53\x12\x1c\x82\xb4\x2b\x48\x53\x16\x1c\x82\xb4\x2b\x48\x93\xaa\xe1\x9d\x20\xed\xfa\x69\x60\x2a\x82\xc3\x2f\x03\x31\x49\x3b\x97\x9d\x1f\x06\x76\x85\x72\x92\xa0\xec\x84\x72\x57\x28\x27\xfd\xc4\xa9\x13\xca\x5d\xa1\x9c\x6e\x5f\x92\x76\x62\xb5\x2b\x30\xd3\xed\x63\xfb\x20\x30\x87\x02\x33\xa9\xee\x38\x08\xcc\xa1\xc0\xcc\x57\x4e\x6f\xde\x0e\x02\x73\x28\x30\xb3\x8e\x6d\x0f\x02\x73\x48\x3a\x67\xd5\x9e\x07\xca\x79\x28\x56\xb3\x4e\xbd\x0c\x62\x75\x28\x56\xb3\x96\xfc\x83\x58\x1d\xc1\x95\x50\xd6\xd1\xf3\x11\x24\x84\x30\x59\xda\x6d\x04\xe9\xa0\xa1\x88\xce\x49\xb7\x27\xa2\x47\xf4\xa9\x89\x9f\xe4\x8d\xa8\x99\x69\x28\xc8\x73\x72\x12\x83\x20\x1f\xd1\xc5\x6b\xce\x41\x2e\x69\x57\x4c\xd6\x06\xfd\x88\x92\xae\x98\x2c\x05\x3e\x34\x8c\xbf\x1d\xca\x8e\xac\xfd\xbc\x41\x76\x8c\xe4\x13\x7d\xd6\xce\xef\x48\x9a\xe7\x31\x59\xcb\x8b\x91\x34\xcd\x0f\x86\x78\xfd\x56\x62\x90\x43\x43\x39\xc4\xaf\xbc\x06\x39\x34\x94\x43\xb9\xfa\x6c\x31\xc8\xa1\xa1\x1c\xca\x92\xa7\x83\x1c\x1a\x85\xe9\x22\xc6\x37\x6f\x07\x41\x3e\x9a\xaf\xae\xd8\x09\x1a\x4d\x8b\x2b\x4c\xf1\x89\x70\x34\x2d\xad\x46\x2b\xfd\xdd\xab\xe8\xa0\xd8\x68\xda\x0a\x1b\x4a\x8e\xa2\x33\x84\x83\xe4\x18\xcd\x67\xa9\xa2\xb3\x0c\xa3\x49\x73\x63\xca\x15\x71\x6d\xb9\x7c\xe9\x5f\xae\x5b\xb7\xd7\xca\x7f\x28\xab\x8a\x7e\xc6\x33\xc8\xaa\xa1\xac\xe2\x9c\xca\x20\xab\xc6\xe3\x73\x6f\x09\xbe\x94\x1b\x8f\x26\x5f\x4c\x91\x2e\x1a\x8f\x66\xdf\xa1\xdc\x63\x8f\x72\x90\x7b\x43\xb9\xc7\x06\xd8\x20\xf7\x46\xa7\x95\x4f\x6f\x83\x44\x1b\x4a\xb4\xa2\xdf\x68\x0c\x12\x6d\x0c\xe6\x52\x9f\xde\x06\x89\x36\x94\x68\xa5\xf8\xf4\x36\x48\xb4\xa1\x44\x2b\xc5\xa7\xb7\x41\xa2\x0d\xa5\x10\x87\x38\x07\x29\x34\x94\x42\xe5\xf6\xe9\x6d\x90\x42\x43\x29\x54\x74\x84\x78\x90\x42\x43\x29\x54\x2f\x9f\xde\x26\x29\x34\x95\x42\x9c\x64\x9a\xa4\xd0\x54\x0a\x55\xfd\x9c\x69\x92\x42\x53\x29\x54\xf5\x4b\x80\x49\x0a\x4d\xe5\x4b\xd5\xc9\xe8\x49\xbe\x4c\xe5\x4b\x4d\x9e\xed\x93\x7c\x99\xca\x84\x9a\x7c\xa1\x3a\xc9\x84\x19\x59\x30\xf8\x1a\x7c\x12\xf6\x53\xd1\x5b\x15\x13\x93\xe8\x9d\x8a\xcb\xaa\x9f\xe3\x4d\xe2\x72\x2a\x2e\x6b\xbd\xfd\x42\xe2\x72\xb2\xf8\xb8\x7d\x66\x9a\xc4\xe5\x54\x5c\xd6\xe6\x01\x3d\x89\xcb\xa9\xb8\xbc\x2f\x9f\x99\x26\x63\xfb\x2c\x43\x92\xdc\x67\xa6\x59\x94\xb4\x98\x5b\xe7\x6c\x66\xd1\xde\xc5\x2c\xac\x64\x9c\xea\x64\x06\x98\xb5\x36\x77\x35\xb9\xb4\x3d\x89\xb9\xef\xbb\xc9\xd5\x71\xf9\x85\xce\xeb\x97\x66\xe2\xc9\x34\x32\x35\x8d\xdc\xaa\x3d\x4f\xa6\x91\xa9\x69\xe4\xd6\x89\x82\xc9\x34\x32\x35\x8d\xdc\xc9\x87\xfe\x49\x86\x4d\x65\xca\x9d\x3d\x79\x26\x99\x32\x15\xf0\x77\xf6\x41\x6a\x12\xf0\x53\x01\x7f\x97\xe2\xdd\x26\xe0\xe7\x33\xdd\xa5\x5f\x18\xcc\x47\x3b\x0b\x98\x5b\x9b\x8c\xf3\x59\x5c\xa8\x7b\xe9\xb4\xd0\x24\xe0\xa7\x02\xfe\xbe\x7d\x60\x99\x04\xfc\xec\x4f\x11\x82\x28\x57\x95\x4b\x17\xde\xcd\x5b\x91\x03\x53\x39\x70\x37\x9f\x20\x26\x39\x30\x95\x03\xed\xf2\xd9\x73\x92\x03\x53\x39\xd0\x94\xae\x93\x1c\x98\xd3\x75\x6a\x53\x11\x75\x4e\xc9\x54\x4c\xbb\xd4\xaf\x29\x95\x3a\x95\x29\x4d\x27\x44\x26\x99\x32\x95\x29\x4d\x87\x50\x26\x99\x32\x95\x29\x4d\xc7\x66\x26\x99\x32\x95\x29\x2d\xf9\x04\x31\xc9\x94\xa9\x4c\x69\xfa\x05\xff\x22\x53\x96\x32\xa5\x95\x2b\xbb\x4b\xad\x96\x32\xa5\x95\x72\xbf\x79\xbb\xc8\x94\xa5\x4c\x69\xfa\x9d\xd4\x22\x53\x96\x32\xa5\xe9\x0c\xed\x22\x53\x96\x32\xa5\xa9\x62\xbb\xc8\x94\xa5\x4c\x69\xaa\x57\x2c\x32\x65\x45\x96\xc4\x97\x0f\xbb\x8b\x54\x59\x4a\x15\xbb\xb4\x99\xbb\xc8\x95\x95\x68\xa7\xc3\x11\x8b\x64\x59\x89\x76\xda\x42\x5d\x64\xcb\xca\xb4\xd3\x61\x8b\x45\xba\xac\x4c\xbb\xe4\x43\xe1\x22\x5f\x56\xa1\x5d\x76\xd9\xb1\x48\x98\x55\x68\x57\xcc\xaf\x25\x17\xd6\x59\xb2\x57\x97\xf1\x8b\x38\x5e\xac\xd9\x2f\x15\xb8\x16\x81\xbc\x58\xb4\x5f\xda\xc9\x58\x44\xf2\xba\xb5\xb7\x7e\x35\x97\x83\xeb\xd6\xde\xfa\x62\x25\x7f\x35\x5f\x7a\x2c\xc2\x7b\x35\xd5\x17\x4c\x47\xa9\x56\x53\x7d\x61\xb1\xbc\xb7\xab\xfa\xb5\xc4\xfc\x62\x7d\x6f\x97\x87\xe0\x22\xe8\x17\x0b\x7c\xd3\xa1\x8c\x45\xd4\xaf\xe7\x68\x0a\x9f\x59\x16\x01\xbd\xba\xe4\xaa\xe9\xf7\xca\xab\x4b\xae\x2e\x96\xfd\xa6\x42\xf6\x22\xca\x57\xd7\x36\x90\x69\x9b\x61\xf5\x7d\x7c\x9c\x67\xf0\x34\x5a\x5d\xdb\x40\x0b\x7d\x60\xc9\x03\x7d\x11\xfb\x0b\x81\x60\xc9\x43\x71\x11\xfc\x6b\x68\xc3\xcf\xb2\xc7\xe2\x1a\xda\xf0\xc3\xf8\xbb\x45\xf9\xb6\x7c\xdc\xaf\xb8\xa4\x5a\x64\xc9\x9a\xdc\x4f\x3f\x86\x5c\xa4\xc9\x9a\x2a\x12\x98\x7e\x59\xb1\xa6\x8a\x04\x6b\x72\x6d\xf5\x6c\x5d\x64\xc5\xe2\xf7\xe3\x76\x2b\x94\x49\x8b\xc5\x0f\x10\xed\x56\x2c\xf3\x03\x44\x8c\x05\x2d\xdf\x16\x3f\x40\x5c\xfc\x30\xce\x34\xbe\x2e\xf2\x67\xf1\x0b\x11\xd3\x2f\x21\x16\x09\xb4\x38\xbe\x1a\x2e\xff\xbe\x9b\x0c\xda\x1c\x8d\x0c\x66\xb7\xfb\xb4\x24\xc1\x78\x9f\x9b\x7c\x55\x3e\x44\x9e\x4e\x3e\x6f\x52\x6d\x73\x84\x25\xe8\x87\x6c\x9b\x23\x2c\x18\xff\x46\x26\xdf\x90\x8f\xe7\x6a\x1d\xb7\xc9\xc9\x4d\x7d\x30\xe8\x9c\xd8\xa6\x3e\xb8\xa9\xc9\x05\x4d\xdb\x9b\x9a\x1c\xc6\x42\xd1\x73\xa9\xc9\xed\x23\xdb\x55\x9e\xd8\x24\xf4\x66\xeb\x2b\xa8\x76\xb7\xc9\xe8\x1d\x54\x1f\x0c\xda\x6e\xda\x41\xf5\x41\x8c\x85\xea\x31\xb9\x83\xea\x83\x3b\x70\x3f\xfd\xca\x68\x93\xfa\x3b\x68\xfb\x3f\x24\x97\x02\x3b\x68\xfb\x7f\x07\x9e\x91\x3d\x17\x36\xe3\xc1\x8e\xaa\xbf\x85\x7c\xcb\xa7\xfa\xdb\x66\x8c\x08\xd2\x1f\x9b\x31\x62\x33\x46\x84\xe2\xd3\xf5\x66\x8c\xd8\x49\xdb\x16\x41\x5b\x5a\x3b\xa9\xce\xb9\x19\x37\x82\xea\xbb\x9b\x71\x63\x27\x95\x63\xc2\x2d\x2e\x49\xe5\x18\x8c\xf7\xa5\xc8\xc7\xb5\xda\x26\x0c\x77\x50\x3b\x0d\xc0\x9b\x31\x27\xe8\x08\xea\x66\xcc\xd9\x8c\x39\xa1\x5d\xce\x80\x31\x67\xe7\xd3\xce\x17\x43\x9b\x31\x67\x17\x7d\xa3\x78\x15\xe7\x52\xf8\x46\x32\x7e\x2d\xbe\x24\x1f\xd2\xfe\xf2\x35\xec\x66\x6c\xda\x8c\x4d\xd1\xf4\xcd\x19\x9b\x36\x63\x53\xd4\x7a\x6e\x33\x36\x6d\xc6\xa6\xa8\x7d\xfd\xcd\xd8\xb4\x19\x9b\xa2\xce\x0b\x6e\xc6\xa6\xcd\x38\x14\x75\x84\x7c\x33\x0e\x6d\x0d\x3d\x16\xf3\xdf\x16\xbe\xeb\xdf\x4e\xe8\xbb\xa9\xe0\xb9\xcf\x1e\x84\x0a\x0b\x9b\x41\x6a\x37\xd5\x74\xa2\xf6\xfc\x76\x53\x4d\x07\xe3\xed\xb2\x7c\x19\x5f\x56\x59\x5f\x70\x9b\x6a\x3a\x18\x43\x68\xee\x36\x78\x86\x8a\x21\xb1\x28\xe8\x9a\x8a\x21\xbb\x4d\xae\x4d\xe1\xbf\x75\xd4\xff\xff\x87\xe7\xd3\x9b\x9f\xff\x5d\xa0\xf1\xd3\xe7\xcf\xeb\xc3\x17\xfd\x1b\x44\xfa\xc7\x7f\x5e\x73\xed\xf7\x1f\xd6\xcf\xff\x9e\xd1\xa7\x8f\x9f\xfc\x2a\xfd\xf7\x9f\x01\x00\x00\xff\xff\xa1\xe9\x79\xf8\xfb\x48\x00\x00"); +func _gdf ()(*asset ,error ){_gbg ,_eecdd :=_bdgg ();if _eecdd !=nil {return nil ,_eecdd ;};_bbbc :=bindataFileInfo {_ee :"Adobe-KR-1",_ffd :773,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491408,0)};_efb :=&asset {_da :_gbg ,_dc :_bbbc };return _efb ,nil ; +};func _gec ()(*asset ,error ){_ebfaa ,_cfba :=_cfd ();if _cfba !=nil {return nil ,_cfba ;};_ebde :=bindataFileInfo {_ee :"ETenms-B5-V",_ffd :709,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491804,0)};_dabe :=&asset {_da :_ebfaa ,_dc :_ebde };return _dabe ,nil ; +};func _bgca ()([]byte ,error ){return _gb (_caf ,"UniGB-UCS2-H")};var _gce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\xcd\xae\x2e\xbb\x8d\xa6\x39\x3f\x57\xb1\x87\xdd\x83\x6c\x87\xfe\x25\xc0\x30\xd0\xc8\x86\x81\x44\x22\xbb\x0a\xe9\xfa\x19\x26\x24\x51\x72\x19\x28\x1f\x1b\xc7\xce\x41\xde\x7d\x61\xf1\x79\x97\xbd\xa2\x50\xd8\x7b\xf4\x41\xf1\x45\x88\x14\x15\x41\x52\x14\x5f\xea\x57\xff\xf8\x4f\xff\xdf\x3f\xfd\xfc\x87\xbf\x7e\xfb\xd5\x7f\xfe\xe5\x4f\xfb\x77\xe7\xaf\xdf\xee\x1f\x7e\xb6\x5f\xce\x5f\xfe\xf4\xef\xbf\xec\xf3\x6d\x9d\xdf\xff\xe1\xe7\x9f\x7e\x0a\xf1\x9b\xfd\x61\xff\xf5\xb3\xe9\x3f\xfb\x8f\xf3\xcf\x3f\xfd\xf4\xf1\xfc\xef\xfe\xe3\x2f\x7f\x3d\x7f\xfc\xa7\x9f\xef\x9f\xbe\x25\xee\xb3\x7f\xff\xb3\xee\xfd\xf6\xed\x57\xff\x7a\x7e\xff\x87\xbf\xfc\xf5\x97\xff\xf8\xf6\x7f\xfd\xbf\xf6\xa7\x75\xfe\xef\x6f\x76\xee\xc7\xf5\xff\xf4\x8b\x9d\x5f\xfe\xf0\xf3\xef\x75\xfd\xdf\xfe\xf9\x5f\xff\xed\xbf\xfe\xe3\xef\xe2\xdf\xfe\xff\xdd\xbf\xff\xf9\xcf\xff\xf3\xfc\xf1\xfc\xfc\xd7\x6f\xc3\xaf\x9d\x9f\xcd\x7f\x7f\xfa\xd5\x3f\xfe\xcb\xfc\xf3\xff\x3f\xff\x78\xbe\xfd\xca\x1f\xfd\x87\x7f\xfe\xd7\x7f\xf8\x78\xd4\xff\xf5\x3f\xff\xdb\xf9\xe5\x2f\x7f\xf8\xd3\xcf\xdf\xc2\xff\xf3\x3c\xe1\xef\x97\xff\xcb\x7f\xfc\xf9\x7c\x8b\xea\xe4\xbf\xff\xcb\x9f\xec\x7c\x7b\x68\x05\xf8\xdd\x7f\xb2\xf3\x97\x3f\xcf\x7d\x7e\x99\x3f\xff\xfe\xfc\xf4\xed\xdb\xaf\x9f\xe7\x79\x7e\xf3\xed\xd7\xbf\xfd\xed\x6f\x7f\xfb\x9b\x0f\x0e\xfe\xb7\x3b\x7e\x0a\xcf\xc3\xa3\xeb\xee\xff\x31\x7f\xf9\xe9\xf3\x81\x7b\xaf\xfd\xe6\xa3\x55\xf3\x6f\x3e\x7a\x99\x83\x56\xa1\x75\x68\x4d\x6f\x59\xa3\xb5\xbc\x75\x69\xf5\x8f\xe7\xe2\x93\x16\xad\xe2\x2d\xf5\xd2\x2b\xad\x4d\xab\x7d\xb4\xc2\x93\x68\x75\x5a\xba\x73\x78\x2b\x46\x6f\x0d\xef\x33\x06\xb5\xbc\xcf\x58\x1f\x5a\xfe\x5c\x99\x81\x96\x3f\x57\x36\xd4\xc7\xf4\xd6\xa9\xb4\x3e\xf8\x8c\x2d\x43\xdd\xee\x6f\xbe\xfd\x7a\xee\x27\x7b\xeb\x46\x6f\x45\xfa\xbc\xdb\x5b\x89\x3b\xaf\x79\x2b\xeb\xbf\x43\x0b\x0a\x97\x5e\xb2\xcb\x2c\xb8\x04\xe7\x2e\x99\x56\xa0\xd5\x69\x41\xa1\x6c\x5a\xc9\x5b\xb5\xd0\xaa\xde\x6a\x7a\x6e\xd0\x9a\xde\x0a\xfc\x37\x1e\x5a\x8d\x16\x77\x46\xe8\x21\xcf\x10\x79\x6e\x5d\x5a\xd3\x5b\x3b\xd0\x5a\xb4\xf4\x1c\xe3\xdb\x70\x16\x19\xdf\x56\x2f\x8c\xcf\xe0\x2c\xc1\xe7\xe1\xb9\x04\x2f\x07\xce\x12\xbc\x1c\x9e\x4b\x50\xb8\x89\x16\xbd\x5c\x9f\xcd\x90\x5d\x12\xf6\x30\x86\x1c\x69\xd1\x67\x4e\xb4\x2a\x2d\xe7\xda\x02\x9c\xe5\x45\x0b\x0a\xd9\xb9\xb6\xa8\x5e\x8c\x56\xa4\x75\x68\x41\xaf\xd0\x67\xa2\x97\x92\x69\xd1\x4b\x71\xae\x2d\x37\x5a\x9d\x96\x9e\x73\x09\x5a\x81\x42\x81\x17\xcd\x66\x81\x17\xcd\x66\x81\x5e\x65\xb4\xe5\xd2\x42\x66\x95\xf1\x35\x7a\xa9\xf4\xd2\x98\x95\xe6\x33\x66\x1d\x5e\x1a\x72\xd1\xdc\x36\xf8\x9c\xd0\x6b\xf0\xa2\x19\x6b\xf4\xa2\x19\x6b\x8c\xdd\xa0\xde\xe0\x45\x33\xd6\xe0\xc5\xa0\xd0\xa1\x77\xa0\xd0\xa1\xa7\xd9\xf4\xaf\x71\xda\xd5\x9d\xde\xcb\x79\x16\xad\x4b\x8b\xf7\x7a\x3c\xb4\x18\xc3\xf0\x5e\x4e\xe0\xcd\xf2\x6f\x73\x1e\xcd\x98\x7f\x9b\xf3\x68\x1e\xfc\xdb\x9c\x27\x41\xcf\xbf\xbf\x79\x12\x6f\xcf\x74\x29\x9d\xac\x96\xf3\x72\x24\xf9\xd9\x68\xf1\xdc\xa4\x97\xc2\x1b\x32\xe1\x53\xb2\x5e\xf0\x52\x19\xc3\xe2\xbf\x49\x2f\x8b\x31\x48\x9e\xdb\xdf\x89\xb3\xf9\x6f\xc3\xb5\xa4\xbb\x5d\xba\x47\xf2\xdc\xf0\x29\x79\x6e\xfa\x94\x3c\x37\x7d\x1e\x46\x6b\xc8\xe5\x20\x33\x83\x97\x83\xcc\x8c\xf1\x5d\x28\x18\xd4\xaf\x9e\x83\xfa\x87\xe4\xcf\xcf\x26\x0d\xfc\x7f\x50\xc9\xc1\x7c\xe8\x57\xd3\x60\xfe\x4a\xdc\xc0\x10\xcc\x3f\x87\x9b\x68\x9d\x48\x8b\x29\x3a\x2e\xce\x9b\x19\xc2\xe1\x39\x14\x5f\x38\x3e\xd8\x2b\x51\x1f\x1f\xd0\xad\x30\x86\x1a\xbc\x9d\xff\x6e\xa2\xc5\x10\x6e\xa6\xa5\x3b\x7d\x8a\xee\x80\xc2\x85\xcf\x01\x85\xeb\x02\xbc\x4b\x2d\xf8\x44\xf0\x11\x15\x79\x51\xd0\xf1\xa1\x4f\xcb\xb4\x0a\xad\x4e\x8b\x31\x20\xf8\xf8\xd0\xe7\xd5\x9d\xf4\x79\x75\xe7\xc7\x18\xd6\x83\x42\x89\xe1\xa1\xc5\x73\x21\x78\x0b\x99\x7d\x58\x10\x6f\xe9\xce\xe2\xad\x48\x2f\xae\x68\xd7\x93\x74\x67\xa3\xa5\x5e\xa6\xb7\xb2\xee\x5c\xb4\x26\xad\x4d\x4b\x77\x1a\x2d\x37\x94\x31\x42\xbd\x34\x5a\x50\x2f\x83\x56\xa2\x65\xb4\xb2\xb7\x30\x6a\x31\xc2\x59\x85\xcf\xd8\xbd\xd5\xf5\xdf\xa0\xc5\x7f\x89\x3e\x91\x7c\x74\xb5\xbb\x9e\xe5\x9f\x66\xcc\xfc\xb7\xe0\x3a\xc3\xa7\x64\x5d\xe0\xec\x24\x5a\xdc\x79\x0a\x2d\x38\x43\xb1\xc7\xea\x72\x09\x92\x52\x75\x0a\x1f\xfa\xfd\xa3\xe5\x0a\x6c\x85\x4c\x9f\xcd\xf9\x0c\xa8\xc8\xe8\x0a\x6c\x05\x0c\x5e\x74\x05\xb6\x82\xc6\xd7\x5c\x82\x1f\xfa\xcf\x5b\xf4\xd9\xb8\xd3\x1d\x88\x15\x3a\x6f\x88\x3b\x10\x2b\x74\xa4\xd4\xe9\x65\x40\xa1\xd3\x8b\xc6\xde\x7d\x7c\x61\x32\x86\x6e\xb4\x74\x27\x14\x16\xd4\x5d\xb9\xad\xc0\xc7\x1f\x87\x8f\xfd\xe3\x5b\xf6\x56\xa2\xa5\xff\x18\xbb\x5d\x5a\xfe\x4e\x84\x03\xd7\x03\x5e\x24\xa5\x01\x2f\x57\xbd\x40\xef\x32\x86\x01\x3d\x1c\xab\xe8\x8a\x6f\xc5\x07\xce\x5c\xb9\xad\x8f\xd7\xcd\x5b\x83\x16\x6f\xc8\x9c\xb4\xf4\x9c\x53\x88\x98\xbf\x38\x7d\xb4\x11\xd5\x1a\xa7\xd1\x82\x17\x57\x91\x2b\x6a\x1e\xe6\xa5\xc5\x7f\xcb\xbf\x0e\x39\x4f\x71\x41\xaf\x43\x6f\xd1\x27\xce\x45\x74\x85\xb9\xe2\xe4\x0d\xd9\xf0\x22\x09\x6e\x78\x59\xba\x93\xe7\xf8\xde\xe3\x86\x17\xdc\x90\xb8\xe1\x05\x37\x24\xba\x8a\x5c\x11\x57\x23\xba\x1a\x5c\xd1\x22\xad\x46\x0b\x99\x19\xf4\x30\x5c\x1f\x17\xbd\xa5\x3b\x19\x11\x4a\x38\x1e\xe8\x49\xba\xd7\x29\x24\xe9\x02\xd7\x67\x2b\x49\xd6\xd7\x47\x9b\x70\x27\xe2\x75\x0a\x49\xf2\x74\x9d\xb5\x52\x0a\x3f\x50\xc9\xd1\x3d\xbe\x95\x10\x6e\x72\x25\xb5\x52\x6d\xb4\x1a\xad\x41\xab\xd3\x5a\xb4\x9c\xcd\x84\x8f\x97\x9e\x43\x8b\x5e\x82\x0b\x22\xe1\x15\x24\xd4\x52\xc2\x2b\x48\xa8\xa5\xc4\xa4\xa4\xc0\x10\xa6\x9e\x63\x08\x53\xcf\x41\x01\x1f\x21\xb9\x6f\xb8\xd2\x3e\xb4\x10\x0b\x2f\x79\x42\xd9\x24\xfc\xf7\x84\xb2\x49\x06\xd7\x11\x7a\x4c\x43\x8a\x8c\xc8\x8c\x16\x23\x3a\xea\x05\x5e\xf0\x26\x52\x84\x97\x23\xea\x88\x13\xdf\x22\xb9\x4f\xb9\x72\xd0\x7f\x97\x16\xff\x25\xe7\x33\x33\x0d\xc9\x3d\xcc\x95\x79\xad\x53\x72\x0a\xb9\xa8\xb5\x69\x4d\x5a\xf4\x82\x07\x96\x32\xbd\xe0\x15\x24\xf7\x37\x57\xc6\x2b\x48\xa8\xc1\x8c\xfa\x4c\xee\x6f\xae\x8c\x19\x4b\xd9\x25\x91\x07\x63\xcf\x85\x16\xa3\xcd\xf0\x82\xff\x90\x72\xa3\xa5\xe7\x3a\x2d\x51\x80\xcf\x25\xea\x3e\x0f\x79\x8b\x1e\x63\xdf\xea\x05\xae\x35\x47\x05\xae\x35\x2b\xa8\xe4\x8c\xdf\x91\x0a\x9c\x49\xd6\x85\xb1\x9f\x4b\x0b\x0a\x37\xd0\x82\xc2\x55\x9f\x50\x90\xe4\xab\x53\x28\x78\xde\xa9\xfa\xd8\x8b\xe6\xa1\x7a\x2f\x25\xf2\x86\xa0\xca\x8b\x24\xdf\x9c\x5e\xc1\x49\x48\x8d\x3b\x35\x0f\x9d\x5e\xba\x5a\x99\x16\x7d\xa2\xae\x8b\xde\x56\xf7\x30\x57\x91\x74\x7d\x4d\xb7\x8a\xe4\x89\x2a\x2f\x92\xe7\xe0\x39\xc9\x0c\xb5\x5b\x24\xb3\x01\x2f\xa6\x3b\xe1\x05\xb5\x9b\xa6\x8f\xaf\x62\xd0\xd3\x0c\xb4\xb8\x73\x3a\x67\x35\xf2\x86\xcc\x42\x0b\xe9\xa2\x76\x2b\xc6\x3e\xa1\x76\xab\xc6\x8e\x6a\xad\x45\x14\x9c\x5e\xad\xfa\xef\xd0\x82\xc2\x82\x1e\xfe\x66\x5a\x91\x16\x77\xae\x44\x8b\x6f\x6c\x55\x5a\xcc\xdf\xf2\x77\xa9\x62\xa6\xd3\x82\x97\xa5\x3e\xe1\xc5\xd4\x8b\x4b\xa9\x5e\x51\x58\xb4\xf4\x1f\x7c\x6a\xde\xb7\xf3\xd2\x70\x7b\x92\xfb\xb7\xab\x45\xb5\x9c\x5e\x4b\x48\x02\x55\xde\x58\xa1\x27\xf7\x68\x57\xc3\xb5\x49\xee\xd1\x2e\xad\x91\x93\xb9\xcc\x9a\xc6\x6e\x95\x96\xee\x74\x3e\x5b\xa3\x4f\xd4\x75\x6b\x48\xd7\x5c\x66\x4d\x5f\xdc\xe1\x3f\xcc\x74\x42\x25\x37\x0c\x49\x72\x17\x73\xb5\x15\x69\x41\x41\x92\xb8\x70\xbd\xcb\x0f\x54\x72\x72\xef\x73\xb5\x8d\xa8\xd1\xf2\x6d\xf3\xd2\xa1\xe5\x9b\x3e\x31\xb4\x7c\x93\x70\x7d\x29\xbf\x9a\x84\x8b\x62\x6f\xd7\x59\xc9\x8f\x3f\xd7\x11\x67\x76\xef\x73\x75\xbc\xc8\x1c\x9c\xe9\x8e\x47\x94\xf1\x06\x7b\xd6\x7f\x9b\x56\xa6\xe5\x82\xe8\x25\xd0\x3a\xb4\x5c\x64\x19\x95\xdc\xb1\xc4\x19\xb5\xdb\xeb\xa5\xe5\x43\xef\xf8\x47\x19\xd5\xda\xf1\x8f\x32\xaa\xb5\xe3\x11\xe5\x08\x3d\x3e\xb8\x1c\xa1\xc7\x47\x95\x51\xbb\x7d\x89\xc2\xa5\xc5\x9d\xa8\xdd\x8e\xa8\x73\x62\x44\x1b\xce\x52\xa6\x55\x68\x15\x5a\x50\x47\x41\x77\xe4\x99\x13\x7c\x9a\xfa\xec\xb4\xe0\x0c\xe5\xdd\xf1\x9d\x72\x62\x0c\xf8\x4e\x39\xc1\xe7\x51\x9f\xf0\xc9\x3c\x64\x94\x77\xc7\x77\xca\x28\xef\x8e\x75\xcf\x28\xef\x81\x75\xcf\x28\xef\x81\x75\xcf\x28\xef\x11\xd4\x72\x3e\x47\x54\x9f\x8d\x96\x9e\x73\x5e\x86\x66\xcc\x83\x0c\x6b\x68\xc6\xf0\x92\x07\x1f\x40\x46\x95\x8f\xcc\x18\x50\xe5\x43\xb3\x89\xba\x1e\xa8\x89\x8c\x07\x3d\x34\x9b\x05\x5e\x30\xfd\xb9\xc0\x4b\x65\x0c\x1e\x64\x58\x03\xd3\x9f\x0b\xbc\x68\x6e\x51\xec\xa3\xfb\x9b\x9c\x2b\xe3\xd3\xdc\x56\xc6\xa0\xd9\xac\x9d\x96\xfe\x83\xb3\xed\x4b\xe4\x8c\x2a\x1f\x9a\xb1\xc6\x73\x9a\x23\xd4\xf5\xc0\x4c\x67\xfc\xe2\x21\xe9\xfa\xc2\x7e\x4d\x49\x17\xbf\x78\x4a\xba\xf8\xc5\x53\x5f\x80\x2f\xfa\xd7\x0c\xbc\x21\xf8\xc5\x13\xef\x33\xfb\xa2\x7f\x4d\x49\xd7\x03\x72\x6b\x66\xbe\xaa\x49\x2f\x38\x4f\x19\x8f\x76\x4a\x4a\xa8\xd6\x89\x83\x94\x17\x14\x24\x89\x55\x68\x41\x01\x65\x3a\x71\x90\x32\x8a\x6f\x2e\x7a\xd9\x70\xbd\x18\x11\x3e\xec\xc4\x90\x64\x94\xe2\xc4\xf8\x66\x94\xe2\x3c\xea\x05\xae\xaf\xee\x84\x6b\x8c\x68\x46\x61\xae\x47\x77\x2e\x5a\xba\xf3\xd0\xe2\x0d\x41\x99\x2e\x42\x23\x19\x65\xba\xf4\x46\xe2\xfb\x2e\xdc\x9e\xec\xe1\x81\xb5\xf4\x7e\x7a\x78\x60\x2d\xc2\x26\x19\xbf\x78\x45\x46\xe4\x31\x80\xb5\x92\x7a\x81\x02\xe1\xab\x0f\xef\xc0\x5b\x3c\x77\xa0\x40\x30\x32\x1f\x7a\xc1\x68\xe7\x53\x68\xd1\x8b\xc7\x07\xd6\xaa\xf0\x89\x82\x5e\xb8\x4b\xf9\x30\xbe\xae\x3b\x37\xad\x49\xcb\x68\xfd\x28\x70\x91\x0f\x62\xd1\x14\x1d\x98\xc6\x0f\xc8\x17\xa6\x07\xc3\xc3\x61\x5f\x58\xcd\x8c\x75\x58\x52\x60\x58\x87\x85\x97\x95\x2f\x03\xd2\x2b\x7f\x19\xd0\x42\x10\x58\x8e\xb5\x44\xc1\xa7\x6f\x69\xda\x31\x01\x4b\xd3\x7e\x19\x02\xb1\x9e\x8c\x09\x58\xf8\x5c\x19\x13\xb0\x08\x39\x94\x07\x3e\x79\x41\xca\x03\x9f\x44\x77\xca\x03\x9f\x78\x60\xe5\x81\x97\xab\xe7\x7c\xc2\xf6\x13\x69\x1d\x5a\x97\x96\x53\xd8\xbc\x20\x05\x1f\x7d\x33\xd1\x05\x83\xb0\x23\x14\xf0\xca\x37\x3e\x49\x41\xb1\x6f\x26\xba\xa0\xbc\x37\xde\x59\x41\x79\xef\x02\x05\x94\xf7\x66\x6a\x0b\x0a\x7a\x33\x99\x05\x25\xbc\xbb\x7b\x7c\x05\x45\xbb\xf1\x76\x0b\xea\x73\x33\x0f\x05\x3f\x75\xe3\x8f\x15\xfc\x54\x45\x8f\x0b\xea\x6c\x23\xc1\x52\xa0\x80\x04\x4b\x61\xec\xf8\x6a\x05\x55\xb7\x25\x4f\x94\xdb\xc6\x5f\x29\xbe\xa3\xb0\xec\x69\xb4\x2a\x2d\xc6\x87\xaa\x33\x94\x4d\x41\xd5\x19\x3e\x5e\xa9\xfe\x42\x1a\x9e\x4d\xc1\x87\x35\x94\x4d\xf1\xe8\xea\x32\x94\x77\x41\x0d\x2a\x9a\x5b\x3c\xba\xba\xac\xe8\x3f\xa8\xe3\xd9\x94\x06\x75\x3c\x9b\x82\xc2\xb4\xa6\xff\x5c\x66\x86\xb7\x5b\x3a\xbc\xe0\xf1\x15\x3c\x5a\x45\x6c\x0b\x1e\xad\x4d\xe4\x49\x70\xc2\x96\xee\x84\xeb\xa5\x3b\xe1\x1a\xe3\x5b\x50\xc2\xc6\x12\xb9\xa0\x84\x4d\x12\x44\x09\x2b\x9a\x5b\x50\xc2\x46\x98\xa6\xa0\x84\xed\x20\x33\x3c\x68\xc3\x88\x16\x3c\x68\x43\x9d\x15\x14\xb4\x49\xf2\x04\x2e\x0e\xfb\x2e\x85\xc0\xc5\x79\xd4\xa7\xf3\x72\x24\x79\xd4\xf5\x09\xbc\x59\xf8\xd3\x27\xc2\xa7\xc7\x68\xd7\x49\xba\xb3\xd3\x62\xec\x28\xf6\x83\x4f\x59\x50\xec\x87\x90\x58\xc1\xdb\x3d\x92\xfc\x76\x3e\x0f\x9e\x62\x41\x25\x1f\xc9\x1a\x65\x7a\xf0\x1b\x0b\xca\xf4\xa0\x19\x0a\x0a\xf3\x60\xd4\x0a\xa1\x83\xa3\x2f\x95\x60\xc1\x39\x7a\xce\x25\x7f\x24\x17\x3c\xd3\xfb\x30\x06\xd4\xe7\xc5\xc9\x2b\xc7\x39\xbb\x38\x02\xc5\x83\xa6\xeb\x6a\x0c\xa8\xc1\x8b\xeb\x56\x50\x83\xb7\x20\x33\x74\xdd\xc5\x4c\x17\xf4\xd9\xc5\x79\x2a\xe8\xac\x8b\xbb\x54\xd0\x4b\x17\x97\xa8\xa0\x97\x2e\x2e\x51\x71\xd7\x74\x3f\x51\x77\x6e\x6f\x61\x52\x8b\xeb\xac\xfd\x14\xdd\x79\x68\xc1\x99\xeb\xac\xfd\x94\x1f\xa9\xe4\xea\xea\x6c\x2b\xc2\x58\x7d\x03\x6a\x3f\xf8\x24\xd5\xc3\x18\xfb\x61\x08\xd5\xc3\x18\xfb\x21\xca\x56\xdd\x13\xde\x0f\x71\xa0\xfa\xc0\x26\x51\xb6\x1a\x60\x0c\x4f\xa3\x46\x9e\xc3\xb7\xa8\x1e\x2c\xd8\x8a\x22\xd6\xc8\x73\x6c\x12\xd6\xc8\xf0\xd8\x1e\xaa\x91\x5e\xae\xbf\x20\xd5\x95\xdb\x0e\xd8\xd7\x9a\x02\x2d\xfa\xf4\x68\xe7\x0e\xbc\x9e\xd5\x15\xdf\x0e\x78\x21\x35\xf3\x5f\xaa\xb4\x0a\x2d\xa8\xbb\x1f\xb7\x03\x02\xac\x05\x0a\x08\xb0\x16\x28\xa0\x18\xaa\xab\xac\x1d\xf8\xf8\xab\x7b\x67\x3b\x34\xdd\x49\x2f\x1d\x7a\x95\xe7\x30\x71\xd5\x7d\xb5\x1d\x06\xd4\x5d\x81\xed\x30\x2e\x2d\x97\x44\x60\x8b\xb2\x56\x28\x48\x82\xae\xce\x76\xc0\xc4\xd5\x0a\x85\xa5\x3e\x0f\x2d\xe6\xa8\xfa\x44\x2b\x6a\x59\x1b\x63\xc0\xa8\xd5\x06\x2f\x9a\x87\x86\x24\x4c\x77\x22\x09\x3e\x8e\xea\xaa\x6e\x87\xa3\xff\xe0\x53\x33\xe6\x5b\x47\x3b\xe2\xe7\x54\xdf\x3a\xda\x51\xf3\xe0\x8b\xfe\x1d\x31\x63\xd5\xbd\xc8\x1d\x31\x63\xd5\x17\xfd\x3b\x06\xc6\xee\x2a\x72\x47\xfc\x9c\xea\xaa\x6e\x47\x4c\x5c\x75\x55\xb7\x23\x26\xae\x76\xe8\x45\xfa\x74\x55\xb7\x15\xd1\xac\x03\x7a\x7c\x7e\xd5\xd5\xd9\x8e\x45\xff\x35\x5a\xfa\x0f\x7a\x7a\xaf\xdd\xdf\xdc\x91\x40\x50\xf5\xd0\xc1\x8e\x4d\xff\xc1\x8b\xe6\x76\x32\x3e\x36\xe6\xaa\x87\x0e\x76\xec\x8c\x68\x32\x3e\xfc\xcd\x3a\x19\x9f\x66\x7a\xc2\x8b\xbe\x8e\x09\x2f\x38\x33\x75\xc2\x0b\x26\xb5\xba\x1a\xdc\x71\xea\x4e\x46\xcb\x52\xb7\x2e\x46\x8b\xfb\x52\x17\xa3\xc5\x7d\xa9\x8b\x5e\x34\x63\x9b\x3b\xd9\x58\xad\x9b\x3b\x2f\xb2\x76\x9f\x72\x27\x3c\xcc\xea\x3e\xe5\x56\x7c\xb3\xfa\x02\x7d\x27\xf6\x80\xaa\xab\xc1\x9d\xaa\xfe\x73\x49\x24\xc9\xc5\x0e\x2d\x38\x3b\x4e\x21\x75\xb5\x2a\x2d\x28\x9c\x46\x8b\x5e\x5c\x61\x6e\x85\x26\xeb\x81\x1e\xa6\xb1\xba\x4f\xb9\xd3\xd4\x7f\x2e\x89\x44\x80\xac\x1e\x78\x59\xea\x05\x5e\x70\x35\xea\x65\x44\x18\xbc\xea\xea\x73\x27\xe2\xbe\xf5\x42\x1d\x17\xac\x5e\x28\x60\xd4\x2a\xea\x53\x01\xc7\x8a\xfa\xcc\xd2\x1a\xa8\xcf\xcc\xd6\x66\x45\x7d\x66\xe9\x10\xd4\x67\x66\x65\xd8\xd0\x91\x19\xe7\xa2\xb9\xcb\xb7\x33\x26\xae\xb9\xcb\xb7\x15\x9a\x6c\xee\xf2\xed\x9c\xf5\x5f\xa5\xd5\x69\x39\x9f\x1f\x8b\xb9\xef\xab\xe4\x86\x6a\xcd\x55\x8f\x2d\x5a\x22\x0e\x9b\x6d\xd0\x82\x4d\xec\x64\x0b\xb0\x39\xd4\x82\x4d\xa6\xa1\x05\xd8\xc4\x6a\x36\x0f\x55\xec\x3c\x75\x67\xa6\xa5\xff\x18\x02\x5e\x48\x0b\x0c\x61\xe9\x3f\x86\x60\xea\xd3\x27\x3a\xe3\x69\xb4\x00\x9f\x57\xff\x21\xea\xab\x5e\x10\xf5\xf5\xe5\x42\x73\x8f\x76\x17\x3c\x8d\xe6\xdb\x5f\xbb\x60\x6d\x9b\x6f\x7f\xed\xc2\x34\x34\x8f\x48\xef\x82\x8f\xd7\xdc\xf7\xdd\x25\xe8\x4e\x97\x52\xd1\x34\x60\x1e\x0a\x1b\x9d\xcd\x97\xf9\xbb\xe0\x4d\x34\x5f\xe6\xef\x22\x79\xba\x0f\xbb\x8b\x64\x86\xd2\x57\xd4\xb2\xa1\xf4\x0b\xcb\xcb\x56\x78\x8e\xcd\xcc\x86\xd2\x2f\x92\xa0\xef\xfb\xef\x22\x09\x7a\x1c\x76\x17\xf2\x59\x1a\x2a\xb9\xa0\x76\x5b\x63\x0c\x92\x19\x6a\x57\x51\xcb\xe6\x5b\x5c\xbb\xe0\x85\x34\x14\x6d\x91\x04\xdd\x37\xdc\x55\x72\x41\xb9\x55\x82\x4b\x0d\xb5\x54\x13\x7c\xfa\xd6\xd1\xae\x09\xea\xee\x9d\xed\x4a\x1c\xaf\xa1\x96\x2a\xde\x4b\x43\x2d\x55\xbd\x90\xa8\xa5\x8a\x07\xd6\xdc\x1f\xdb\x15\xf5\xd9\x16\x14\x50\x9f\xcd\xa3\x8f\xbb\x12\x8e\x68\x1e\x7d\xdc\x55\x12\x44\x11\x55\x14\x5f\x43\x11\x55\x49\x69\x43\x9d\x68\x67\xdb\x50\x97\x94\x36\xbd\xe0\xfb\x36\xe3\x39\xfc\xa3\xe6\x4b\xdd\x5d\x09\xdd\x35\xe3\x39\xbc\xa5\x66\x70\x2d\x79\xba\xaf\xb6\x2b\xee\x44\x3b\x70\x2d\x79\x1e\x7a\x21\x64\xd4\x7c\xa9\xbb\x2b\x41\x8d\x86\x92\x6a\xa8\x82\x86\x92\x52\x94\xb4\xa1\x6c\x9a\x3e\x7e\x5f\x7b\xee\x26\xc9\xfb\xfa\x72\x2b\x66\xda\x7c\x7d\xb9\x5b\x82\x6b\x14\x51\xd3\xac\xa0\x7a\x9a\x54\x01\xea\xa5\x65\xfd\x77\x69\xf9\xf7\xd0\x7d\xdb\x7a\x37\x5c\x8d\xee\x3b\x42\xbb\x21\xf9\xce\xd7\xd8\x70\x35\x7a\x84\x1e\xdf\x74\xe7\x0b\x68\x83\x5e\x70\x7b\x14\x41\xed\xbe\xde\xdb\x0d\xe9\xf6\x04\x05\xde\xc8\x9e\xa0\xc0\x1e\x50\x4f\x70\x66\x7a\x0e\xce\x78\x3f\xbb\xef\x9f\xec\x46\xe8\xae\x67\xe4\x82\x93\xd0\x71\xac\xda\xd1\x9d\x50\x67\x1e\x7a\x86\xfa\x2d\xb4\x5c\xd6\x1d\x97\xa1\xfb\x3a\x71\x77\x3c\xda\xce\x37\xd6\xa3\xfe\x9b\xb4\x2e\x2d\x97\x60\x4f\x81\xd6\xa1\x05\x05\xdf\xcf\xd8\x0a\xaf\x76\xdf\xcf\xd8\x9d\x70\x52\xaf\x50\xc0\x2d\xe8\x38\x56\xbd\xa9\x05\x05\xc9\xb3\x42\xa1\xcd\x1f\xa8\xe4\x8e\xcf\xd5\xbb\x4f\x7b\xe7\x23\xee\x28\xda\x8e\xef\xa4\x58\x6b\xc7\x77\xea\xd8\xfa\xde\x18\x3a\x1e\x5f\x6f\xb0\x82\xc7\xd7\x1b\xac\xcc\x4a\x0b\x56\xf0\x0a\xba\x6f\xb4\xec\x8e\x4a\xee\x9e\xa0\xb3\x3b\x5e\x5d\xef\x91\x96\xfe\x83\x17\x36\xed\x7a\x87\x17\x36\xed\x7a\x87\x9e\x26\xac\x43\x4f\x93\x82\x07\x36\xf0\xea\x3a\x7e\xd5\xc0\x8f\xeb\xbe\x84\xdc\x03\x3f\xae\xfb\x12\x72\x2b\x82\xda\xf1\xb9\x06\xb6\xb0\xa3\x96\x06\xd6\xaf\xfb\x12\x72\x0f\x09\xde\x97\x90\x7b\x14\x3d\xe7\x12\x1c\x6c\xcc\x75\x14\xd8\xc0\xd3\xe8\x28\xb0\xa1\x29\x42\x81\x29\xf6\xd9\xf1\xb9\x06\x1e\x58\x47\x81\x8d\xae\xff\x5c\xba\x43\xf3\xe0\xdb\x35\x7b\x0c\x5e\x02\xdf\xae\xd9\x03\x0f\xac\x4f\x46\xab\x59\x41\xd5\x0d\xbc\x90\x8e\xaa\x1b\x5b\x2d\xe8\x6d\x3e\xaa\xed\x2f\xd6\xc0\xe7\xea\x9b\xff\x0e\xb2\xde\xf4\x89\x6f\xd1\x3d\xe2\xb7\xa7\xe4\x89\x02\x9b\x18\xae\xee\x1b\x26\x7b\x4a\x82\xbe\x61\xb2\xa7\x5e\x79\x94\xdb\x24\xc6\xd7\x51\x6e\x33\xa9\x17\x97\xe0\x2c\x6a\x6d\x5a\x3c\xe7\x99\x3d\x7b\x62\xd4\x3a\xde\xd9\x94\x3c\x51\x7c\xb3\x31\x5a\x14\xdf\xec\x7a\x0e\xea\x43\xcf\xb9\xcc\xe6\xd6\x73\x8c\x61\xf3\x16\xe0\x65\x4d\x7c\xae\x8e\xe2\x53\x5c\xb4\xa3\xf8\xa6\x3e\x77\x14\x9f\xa2\xa4\xdd\xf7\x5d\xf6\x42\xb5\x76\x5f\xdc\xee\x15\xf4\xdc\xa4\xa5\x3b\x17\x2d\xdd\xe9\xd4\x57\x44\xba\xa8\xc8\xc5\x7b\x36\xf0\xc0\x16\x2b\x84\x81\x07\xb6\x52\xa4\xe5\x92\x58\x39\xd0\x2a\xb4\xf4\x9c\xf3\xb9\x90\xe0\x78\xe0\xa5\x2c\x5a\xf0\x52\xd4\x27\xbc\xe0\x32\x0c\xdc\xac\xd5\xf5\x1c\xbc\x0c\x7f\x77\x07\x6e\xd6\xc2\xc4\x0d\xdc\xac\x85\xbb\x34\x70\xb3\xd6\xa6\x4f\x94\xf7\xe2\xfb\x1b\xb8\x52\x8b\xb7\x67\xe0\x4a\x2d\x9c\xa7\xe1\x5b\xf6\x7b\x23\xa5\x11\x2e\x2d\x9f\x87\x81\xd2\xdf\x92\x04\xab\xe9\xcd\xf6\xec\x60\x35\xbd\x79\x5f\x06\xeb\xe0\x8d\x79\x1f\x18\x84\x2d\x49\xf8\xbe\xcb\xde\x55\x77\x42\x4f\xa3\xf5\x24\xcd\xbd\x6b\xa5\xb5\x69\xa9\x17\x7f\xcb\x77\xd3\x73\x87\x96\xeb\x90\x81\x41\xd8\x92\x04\x06\x61\xe3\x12\x8d\x0c\x05\xc9\x25\x43\x61\xe9\x4e\x7a\xc1\xbc\x0f\x9c\xae\x8d\x01\x1a\x85\x5e\x3e\xcc\xfb\x77\x55\xf2\x28\x0c\x8f\x38\xc9\xc0\xaa\x28\xeb\x74\x60\x55\xf6\x55\x97\x2e\x24\x7b\x74\xe7\xa2\xa5\x3b\x7d\xb0\x8a\x29\x0e\xac\x8a\x05\x5e\x10\xac\x8a\x91\x68\x33\x58\xca\x1b\x7e\xc0\xf0\x38\xe5\x56\xbc\x71\x60\x71\x0c\x3f\x60\xb0\xcc\x37\xfc\xb1\xc1\x32\x5f\xb1\xc8\x81\x35\x52\xbc\x71\x60\x8d\x4c\x93\x82\x35\x52\xf4\x71\x60\x72\x8c\xad\xbf\x81\x4f\x69\x6c\xfd\x0d\x96\xf9\x86\x15\x1b\x2c\xf3\xad\xab\x05\x9f\x43\x2d\xf8\xd4\x14\x61\x8e\x0c\x7f\x6c\x60\x8e\x0c\x7f\x6c\x60\x8e\x14\x99\x1c\x98\x23\xe5\x99\x0e\xfc\x54\xd3\x14\xe1\xa7\x1a\x1e\xd8\x20\x20\x60\xf8\x01\x03\x53\x65\x9a\x07\x4c\x95\xa2\x8f\x03\x53\x65\xf8\x63\x03\x53\x65\xf8\x63\x03\x53\x75\x1e\xf5\x32\x69\xa9\x17\xe7\xe5\x04\xd1\xdb\xb4\xe0\x9a\x60\xc1\x41\x99\x0e\x0c\xd7\xc1\x3b\x1b\x18\xae\xa3\x59\xc1\x70\x1d\xfc\x87\x41\x40\xe0\x68\x1e\x30\x32\x47\x2f\x39\x46\xe6\x48\xba\x18\x92\xc3\x9a\x60\x60\x48\x0e\xa9\x51\xc3\xd3\xa6\xf6\xc1\xf4\x0f\x0c\xc9\x91\xe4\x17\xbd\x4c\xb5\x18\x91\xa4\xbb\x18\x11\xb1\xdd\xb1\xa0\x20\x59\x2f\x46\x24\x79\xe2\x33\x1f\x49\x09\x9f\xf9\xe2\x49\x0d\xdf\x72\xda\x57\x32\xc3\x83\xbe\xac\x8e\x06\x06\xe8\xe2\x65\x0d\x0c\xd0\x95\x94\x30\x2b\x37\xe9\x39\x9f\xdb\x8b\x99\x1e\x18\x92\x4b\xe6\xd2\xc0\x90\x5c\x32\x97\x06\xcb\xfc\x8b\x99\x1e\x78\xd0\x57\x52\xc2\x90\x28\x45\x74\xb0\xcc\xbf\xb8\x4b\x83\x65\xfe\x25\x40\x36\x58\xe6\x5f\x4c\xf8\x60\x99\x7f\x71\x89\x06\x06\xe8\x4a\x66\xbe\x3f\xb4\xaf\x64\xe6\xfb\x43\xfb\x4a\x4a\xf8\xe8\x17\x97\x68\x60\xaa\xae\x14\x2d\xa6\xea\x4a\x82\x98\xa3\x4b\xa0\x64\x60\x8e\x2e\x4e\xd0\xf0\x80\x80\x3d\x8f\x28\x18\x2d\xf5\x72\x68\xc1\xa7\x9b\x23\x7b\x70\x89\xa6\x9b\x23\x7b\x30\x5c\xd3\xcd\x91\x3d\x48\x7e\xba\x39\x32\x45\x6c\xa7\x07\x54\xed\xc1\x70\x4d\x37\x47\xf6\x24\x3d\xd7\x68\xe9\xb9\xe9\x2d\x56\x08\xd3\xcd\x91\x3d\xec\xec\xcc\x07\x3e\x8b\xfa\x84\x4f\x1c\x81\xf9\xc0\x67\x51\x9f\xf0\x89\x46\x99\x01\x5e\x9a\x5a\xf0\x42\x40\x67\xfa\xaa\xdf\x1e\x66\x73\x06\x78\xc1\xcd\x9a\xbe\xb2\x37\x25\x93\x4e\xcf\x2e\xb3\xe7\x43\xbf\x7c\x57\x25\xcf\x00\x9b\x4c\xdf\x0c\xb0\x89\x0f\x3b\x7d\xf1\x6e\x0f\xd3\x37\x13\x02\xc4\x9b\x98\x09\x01\x1e\xfd\x07\x2b\x84\x0e\xa6\x67\x0f\x58\x20\xd7\x79\xba\x15\xb3\x10\x74\xa7\xd3\x0b\x49\x2d\xa3\xc5\x73\xbe\xe8\xb7\x20\x91\x65\x7a\x91\xc8\xdc\x1a\x59\x60\x6b\x6c\x66\x7a\x61\x6b\x6c\x66\x7a\xc1\x16\x4e\xb7\x54\x16\xaa\xfa\xbc\xb4\x18\x91\x87\x0e\x2c\x48\xb8\x6e\x8e\x2c\x48\x64\x9e\xa6\x65\x01\x95\x3c\x0b\xbc\x4c\xfd\x07\xbd\x95\x68\x41\x8f\x18\xd8\x2c\xd0\x5b\x93\x16\xf4\xb0\x9a\xb3\x42\x0f\x5f\x6d\x7a\x9c\xd9\x02\x0b\xb5\xe9\xe0\x02\x0b\x78\x60\xb3\xc2\x8b\x24\x58\xe1\x05\xb5\x3b\xdd\x70\x59\x64\x83\x6d\xba\xe1\xb2\xc8\x06\xdb\x74\xc3\x65\x31\x88\x82\xcb\x2c\x92\x1a\x35\xdd\x38\x59\x4c\xfa\x6f\xd3\x12\x3d\xa3\x85\xcc\xdc\x38\x59\x24\x14\x33\xdd\x38\x59\xc4\x3b\x9b\x1e\x83\x36\xc5\x6f\x67\x73\x3e\x95\x83\x3a\xdd\x70\x59\xc4\xfc\xcd\x06\x9f\x0d\x3e\x1b\xbc\x48\xba\x6e\xb8\x2c\x4a\xba\x0d\x5e\x08\xd3\xcc\x06\x2f\x43\x7d\xba\x3c\x23\x3e\xc9\x74\xc3\x65\x51\xf3\xd0\xe1\x53\xef\x67\x87\x4f\x92\xaf\x66\x87\x17\x49\xbe\x23\x97\xcd\x87\xe3\xc6\xc9\x22\xb9\xea\xb3\x23\x17\x3c\xbe\xd9\xe1\xc5\xd4\x0b\xbc\x98\xe8\xc1\x8b\x66\xac\xc3\x0b\xde\xf5\x1c\xd0\xd3\xfc\x0d\xc6\xae\xf9\xf3\x48\xb6\x25\xc2\x65\xd3\x0d\x97\x25\x36\xe6\xa6\xaf\xa3\x2c\x11\x63\x9f\x1e\x59\xb6\x84\x53\x32\x3d\x3b\xc2\x12\xfe\xed\x5c\xf4\x82\x82\x9e\x8b\x5e\x24\x4f\x37\x39\x96\xd8\xa5\x98\x1e\xd0\xb1\x24\x09\x7a\x40\xc7\x14\xbf\x9d\x1e\xd0\xb1\x34\x19\xbb\x1b\x27\x4b\x6c\x6d\x4e\x37\x4e\x96\xf0\xf8\xe6\x86\x17\x49\xd0\xb7\xe9\x4c\x89\xa6\xd3\xe0\x5a\x72\x31\xe8\x49\x2e\x06\x3d\xdc\xba\xe9\x66\xcc\x12\xf9\xe8\xd3\xa0\x77\xd5\x0b\x23\x92\xcc\x0c\x7a\x97\xb7\xce\xd7\x4a\x96\x1f\xf5\x62\xb4\x90\x99\x87\x8c\x2c\xe3\xd6\x4d\x0f\x19\x99\x22\xb6\xd3\x57\x55\x96\x09\x97\x4d\x37\x86\x96\xf5\x7e\xba\x31\xb4\x2c\xd5\xea\xab\x2a\xcb\x7a\x5b\x7d\x55\x65\xb9\xaa\xcf\x46\x0b\x5e\xdc\x18\x5a\x6e\xea\x05\x5e\x88\xa3\xcf\x0b\x2f\x64\xb5\xcf\x0b\x2f\xe4\x70\xcd\x0b\x2f\x38\x17\xf3\xc2\x0b\xce\xda\xbc\xf0\xb2\x7f\xb4\xbd\x37\x2f\x6c\x4a\xf0\x17\x36\x25\xf8\x0b\x9b\x7a\x05\xdd\x4e\x5a\x66\x17\x72\xba\x9d\xb4\x8c\x0d\x9d\x97\x21\x1c\xdd\xe9\xa2\xce\x9a\x06\x6c\xa8\x22\xbd\x13\x1b\x9a\xa5\x6c\xb0\xa1\xf9\x6a\x40\xfe\x9a\x15\xec\xeb\xc2\x86\x16\xbc\x97\x85\x0d\x55\x14\x78\x39\x00\xc4\x0a\xe9\xef\xcb\x97\x74\x56\xf0\xf8\x16\x36\xb4\x60\x5f\x17\x36\xb4\xe0\xe3\x2d\x6c\x68\xc9\xfa\x6f\xd1\x82\x1e\xd6\xaf\x30\x99\x0b\xeb\x57\x98\xcc\x85\x85\x2b\xa4\x1c\xad\x40\x2f\x4c\xe6\x0a\xf4\xd2\x74\x27\x63\xc0\xeb\x59\x11\xea\x4c\xdf\x8a\x3c\xc7\x84\xad\xc8\x73\x6c\x90\x2e\xdf\xda\xb4\xc2\xf6\xde\xf2\xad\x4d\x2b\xa8\x9e\xe5\x09\x79\xa6\x2c\xd7\x85\x31\x54\xf4\x78\xf9\x92\xce\x8a\xe9\x3f\xc6\x40\x6a\xfc\xc2\x50\x16\x72\xb2\x17\x86\xb2\x10\xab\x5b\x89\x3e\x99\xbf\x95\xe0\x9a\xf9\x5b\x18\xc3\xaa\x79\xf0\x2c\x65\xab\x9a\x07\x4c\x5c\xc5\x97\x59\x98\xb8\x2a\x59\xfb\x42\xcd\x2a\x5e\xe4\xf2\x85\x9a\x55\x3c\x9b\xe5\xa9\x6d\x56\x93\x9e\xf3\x39\xaa\x9a\x07\xcc\x5f\x65\xcb\x69\x79\x8c\xcf\x2a\x48\xc9\xe5\xab\x31\xab\x59\xbd\xb8\x94\x2a\x1b\xb2\x0b\xf3\xa7\x88\xf4\xc2\xfc\x29\xff\x76\x61\xfe\x2a\x1b\x7a\x0b\xc3\x55\xf1\x65\x16\x86\xab\xe2\x7d\xae\xca\xf8\xba\xee\x84\x02\x21\xa3\x85\xe1\xaa\x9a\x31\x5f\x71\x59\x25\x48\xb4\x2a\xd4\x09\xdd\x2d\x8c\x5a\xc5\x4f\x5d\x18\xb5\x8a\xa3\xb3\x30\x6a\x55\xb3\x89\x51\xab\x78\xad\x0b\xa3\x56\xd9\xc2\x5b\x18\xb5\x4a\x52\xda\x6a\x48\x89\x8d\xdc\x85\x51\xab\x78\xb4\x0b\x73\x54\x09\xeb\xad\x0e\x05\xc2\x7a\xab\x43\x01\xe7\x69\x61\xaa\x2a\xce\xd3\xea\x50\xd0\xbc\x77\x28\x5c\xdd\x89\x94\xf0\x7d\x17\x66\xac\x3d\xfa\x6f\xd1\x52\x2f\x2e\xa5\x86\xb7\xbb\x30\x55\x4d\xef\x84\xa3\xfe\xac\xe9\x9d\xf0\xc0\xa1\x35\x36\x72\x17\x66\xac\xe9\x9d\xf0\xe0\xa0\x35\x1c\xb2\x85\x19\x6b\x7a\x43\x30\x63\x4d\xdf\xe6\x80\x17\x7c\xdf\x35\xe0\x05\xdf\x77\x79\xe0\xd0\x1a\xae\xdb\x9a\xd0\xc3\xa8\x2d\xdf\xdd\xb0\x46\x50\x71\x4d\xe8\xe9\x9d\x98\xd0\x63\xed\xb2\x26\xf4\x70\xdd\xd6\x84\x9e\xbe\x69\xcc\x66\xd3\xdb\x33\xa1\x87\x27\xbc\x7c\x4d\x67\x8d\xd5\xca\xf2\xed\x59\x6b\x7a\x7b\x30\xa9\x4d\x5f\xb8\x87\xf5\x9e\xa7\xac\x1f\xa8\xe4\xe5\x56\xec\x11\xc2\x6b\xb9\x15\x7b\x9e\x86\x00\x0d\xd0\x34\x5e\xc8\x72\x2b\xf6\x3c\xec\x06\x2f\xb7\x62\x9f\xf0\xea\xe5\xcb\xb6\x4f\x78\xf5\xf2\xc5\x58\x7c\x62\xa5\x35\xbe\x00\xa3\x97\xdb\x9f\x4f\x60\xf4\x72\xfb\xf3\x09\x8c\x5e\xbe\xe0\xfa\x04\x46\x2f\x5f\x70\x7d\x02\xa3\x97\xdb\xa6\x4f\x60\xf4\x72\x43\x32\xb7\x14\xf4\x05\xf2\x0b\xcc\x76\x81\xfa\xdb\x49\x2d\x20\xc6\xf8\x7f\x0b\xd4\xdf\xc6\xff\x5b\x9f\xc0\x68\xef\x65\x0b\x18\x8d\x0d\xdd\x02\x46\x93\x3a\xbe\x05\x8c\x26\xd2\xb4\x05\x8c\x66\xdb\x73\x83\x0f\xdc\x2c\xc9\x37\xf8\xc0\x3d\xf4\x1c\x9c\x4d\x3d\x07\x67\x53\x77\x76\xa0\xd0\x81\x96\x80\xd1\xa2\x0e\xd7\xeb\xd0\x12\x30\x3a\xd2\x12\x30\x5a\x7d\x0a\x18\xbd\x68\x09\x18\xad\x5e\x18\x1f\x1f\xea\x0e\x8c\xef\xa8\xc5\xf8\x80\x85\xee\xc0\xf8\x0e\xf4\x02\xe3\x63\x36\x37\xe0\x6e\xc3\xe3\xdb\x80\xbb\x2d\xa8\x17\xa0\xc9\xc4\x06\x77\x00\x0e\x4c\x50\x6a\x07\xe0\xc0\x51\x14\x80\x26\x27\xb5\x80\x49\x27\xd1\x03\x2a\x9c\xf5\x1c\x50\x61\xd4\xee\x0e\x40\x85\x41\x27\x6e\xc0\xe4\x0a\x35\xed\x08\x54\xb8\x57\x5a\x40\x9a\x3b\xbc\xf8\x0a\x6f\x1a\x11\xf7\x1d\x19\x83\xe6\x21\x32\x86\xa9\x5e\xe0\x05\xa5\xb8\x01\x9a\xdb\x16\x3d\x78\x21\xfe\xbe\xa3\x60\xcb\x48\x37\xc1\x0b\x26\x6e\x27\xc1\x96\xe9\x33\xc1\x0b\x50\x98\x0d\x40\xdd\x48\xc4\xdc\x09\x08\x35\x99\x44\x1b\x80\xfa\x79\xd4\x02\x46\xcc\xb7\xb2\x7d\x7d\x39\x0f\xb9\x43\x3b\x01\x00\x46\xf1\x6d\xa0\xec\x07\xc5\xb7\x81\xb2\x1f\xa2\xd5\x3b\x01\x00\x26\xe4\xb7\x33\x00\x60\x54\xdd\x06\xe6\x7e\x50\x6e\x3b\x0b\xe0\xac\x3b\x01\x00\x63\x0c\x77\x06\x00\x4c\x3a\xd9\xce\xf0\x59\x91\x44\x86\x4f\x7d\x1d\x19\x3e\x1b\xf3\x00\x3c\xfe\xa0\xb2\x36\xf0\xf8\xc3\xea\x68\x03\x8f\x3f\x5d\x14\x5c\xd6\x67\x88\x17\xc6\x30\xc4\x0b\x63\x60\x25\xba\x0b\x7c\xe2\x6a\x6c\xa0\xf3\xc7\xe0\xa5\x00\xcb\xd6\x7b\x0d\x74\x5e\x89\x75\x1b\xe8\xfc\x91\xe4\x81\xce\x9f\xab\x3e\xe1\x13\xe7\x70\xfb\xca\x77\x5e\x9c\xbc\x0d\x74\xfe\x46\xdd\x09\xfe\x98\xad\xbf\x5d\x41\x07\xb3\xbe\xdc\x6e\xfa\xa7\xc2\x57\xbb\x0a\xe1\x4c\x9f\x15\x6c\xb2\x64\x5d\xc1\x11\xe7\xfb\x03\x95\xbc\x2b\xb0\xe5\xa2\x4e\x80\x11\x4b\x9c\x15\x36\xa5\x6c\x40\xea\x5f\x96\x43\xbb\x01\x4d\x26\x79\x67\x37\xa0\xc9\x40\x1c\x77\xa3\x4f\x62\x7c\xbb\x01\x85\x26\x1f\x76\x83\xe2\xbf\x78\x6e\xbb\x41\xef\x88\x02\xf4\xa4\x0a\x00\xc1\x3e\x52\x05\x4d\x90\x66\x7a\xe9\x82\x34\xf3\x39\x74\x41\x9a\xb9\xb3\x0b\xd2\x0c\x2f\x60\xb3\x1e\x72\x34\x37\xc9\xfe\x0f\xcb\xc4\xdd\x81\x34\xeb\x15\x24\x93\xf5\xc9\xea\x13\x50\xb1\xe4\x42\x26\xeb\x53\xd4\x27\x70\xe7\xaa\x3e\xe1\xb3\xea\x4e\xf8\xd4\xcb\x3a\xe0\x53\xaa\x9c\x4c\xd6\xa7\xeb\x3f\xf8\xd4\xeb\x49\x26\xeb\x33\x74\x27\x7c\x4a\xa1\x90\xc9\xfa\xb0\x78\xdf\x64\xb2\x3e\x93\x17\x92\x4c\xd6\x07\x9f\x6b\x03\x35\x78\x34\x2b\x40\x0d\x1e\x76\xbb\x37\x59\xae\x0f\x26\x6e\x93\xe5\xfa\xe8\x45\x06\x51\x16\x58\x34\x6e\x10\x65\xe1\x11\x05\xa0\xbb\x7a\x59\x05\xdd\x0d\xf4\x49\x06\x6c\xc0\xe0\x6d\x10\x65\x21\x33\xbe\x09\x54\x58\xd2\x25\x3b\x36\xe8\x03\x27\x1f\x36\xe0\x08\x6c\x20\xb8\x81\x45\xe3\x5e\x02\x38\x43\x01\x68\x83\x92\x0a\x37\x38\xb1\x20\x29\x91\x39\x1b\x24\x25\x70\x62\x0a\x35\x6d\x70\x62\x41\xe6\x0f\x9c\x58\x60\x09\xb9\xc1\x89\x05\x99\xbf\xc5\x68\x59\xbc\xef\xc5\x68\xc9\xe5\xde\x8b\xd1\xe2\x6f\xee\x0d\x9f\x92\x20\x30\x8b\x20\xb5\x0b\xcc\x42\x01\xa4\x2d\xa8\xb0\xde\x48\x60\x16\x91\xbd\x95\x0f\x5b\xea\x2d\xc6\x47\xbe\x6f\xd4\xfb\x49\xbe\x6f\x64\x9d\xb1\x05\x23\x4e\xea\x45\x90\x66\xc6\x2e\x18\x31\xf9\xc5\x9b\xcc\xe0\xc8\xaa\x63\x0b\x38\x0c\xac\x7e\x03\x97\x88\x7a\x77\x41\xa9\x45\xbd\xad\x02\x15\xb3\xde\xdb\x02\x15\x6b\x1e\xc8\x13\x8e\x32\x7f\xe4\x09\x47\xe9\x02\xf2\x84\x15\x6a\xda\xc0\x2c\x22\xc1\x90\x7d\x90\x04\x41\xbe\x7d\x90\xc4\xd2\x7f\x48\x82\xf5\xde\x06\x82\xa1\x90\xd1\x26\xdb\x38\x1e\x3d\x07\x9f\x57\x77\xc2\x27\x50\xb4\x0d\x20\x43\x29\x7f\x9b\x4c\xe4\x78\xc5\x8b\xc0\xcf\x48\x97\x4c\xe4\xf4\x88\x6b\x90\xca\x72\x27\x40\x5d\x24\x82\x21\x5b\x30\x69\x49\x5e\x30\x69\x99\x38\x90\x15\x89\xdc\x8c\x0d\xb2\x22\x49\x09\x83\xc9\x4b\x32\x78\x00\xef\x92\x74\x88\xe0\xd5\x9a\x07\xc1\xab\x6b\xfd\x91\x4a\x16\xf2\xba\x8a\xc0\xa6\xc5\xc7\x08\x58\x23\x69\xc2\xae\x40\xd3\x62\x93\xe1\xe1\xa1\x18\x60\x8d\x04\x4e\xc5\x00\x6b\x24\xe2\x2b\x06\x58\x23\xe1\xbd\x98\x7b\x98\x2b\xe1\x45\xda\x03\x14\x9a\xad\x1c\x13\x80\x7b\xe8\x4e\x86\xc7\x67\x64\x0f\xc3\x43\xf5\xd8\x03\x9f\x2c\xf0\x4c\xe0\x6e\xa6\xdd\x82\xa0\xd7\xf4\x12\x04\xbd\x86\x1e\x15\x28\x12\xf6\xd5\x40\x12\x2a\xdb\xd1\x04\xf5\x26\x22\x66\x20\x09\x33\xcb\x36\x03\x1c\x92\x99\x4c\xa3\x92\x44\x46\xe9\x1b\x95\x24\x94\xc3\x68\x80\xbb\x33\x1f\x8e\x01\x23\xc9\x4c\x9f\x81\x24\xcc\x58\x4d\x03\x49\x98\xb3\xfa\x84\x5e\x56\x9f\x40\x8c\x8b\xfe\x03\x62\x8c\x79\x30\x01\xb8\x99\x23\x13\x80\x9b\x39\xb2\x04\x9f\x2c\xb8\x4c\x70\x6e\x72\x6c\x0d\x30\x4a\xc6\xdc\x1a\x68\xc1\xcc\x06\x9b\x09\xea\xcd\xf2\xcb\x04\xf5\xd6\xac\x08\xea\x8d\x87\x69\x82\x7a\x13\x99\x34\x41\xbd\x51\x6e\x26\xa8\x37\xa6\xd8\x04\xf5\x36\xb5\x90\x8b\xe6\x41\x50\x6f\x7c\x4a\x13\xd4\x9b\x7c\x74\x13\xd4\x9b\x08\xa3\x81\x16\x2c\x8f\xe8\x2d\x5a\x8c\x16\xb4\x60\x89\x6a\x09\x50\xcd\x73\x45\x80\x6a\xb5\x9c\xb3\x42\x0a\x9e\x51\x61\xa3\x60\x1e\x0c\x08\x4d\x61\xc9\x6a\x40\x68\x14\x86\x32\x20\x34\x85\x0c\x0f\x2b\x02\x4d\x33\x7f\x05\x5e\xa6\x28\xc0\xcb\x56\x9f\xf0\xc2\xfa\xc4\x80\x88\x17\xbd\x67\x40\xc4\x0b\x01\x40\xab\x70\xc6\x6a\xc5\x04\x11\x27\xc7\xd6\x40\x20\x2a\x51\xd1\x80\xec\x14\x02\x80\x06\x64\xa7\xe2\xa2\x18\x90\x9d\xca\xfe\x82\x01\xd9\xa9\xf8\xda\x56\x81\x34\x63\x52\x0d\x00\x4f\xd5\xbb\x0b\x80\xa7\xb2\x6a\x34\x70\x8c\x55\x6f\xa4\x07\x66\x56\x65\x0d\x69\x00\x78\xaa\xde\x41\x00\x3c\x0a\x0b\x19\xee\x52\x65\x81\x6e\xb8\x4b\x95\x7c\x2b\xeb\x02\x69\x33\x22\xdc\xa5\x8a\xef\x6b\xb8\x4b\x95\xd8\xb5\xe1\x2e\x55\xdc\x3a\xc3\x5d\xaa\x44\xab\x0d\xb7\xa7\xe2\xac\x19\x6e\x4f\xc3\x59\x33\xdc\x9e\xa6\x77\x02\xb7\xa7\xb1\x73\x65\xb8\x3d\x0a\xa9\x18\x6e\x4f\xc3\xfc\x19\x6e\x4f\x63\x35\x6d\xb8\x3d\x4a\x2a\x34\xdc\x9e\x46\x28\xcd\x70\x7b\x9a\xbe\x46\xdc\x9e\x56\x75\xa7\x80\xd8\xc8\x05\xb7\xa7\xb1\x26\x30\x9c\x99\xc6\x3a\xd8\x80\xc7\xb7\xfd\xa3\x8c\x0b\xa3\x44\x49\xc3\x36\x19\x28\xa0\x86\x8d\x31\x7c\xa0\x0e\xba\xcd\xf0\x81\x94\xf1\x67\xf8\x40\x9d\x5a\x5e\x86\x0f\xd4\x49\x35\x33\x7c\xa0\xce\xb6\x92\x81\xb1\x57\x8e\x9f\x81\xb1\xef\x49\x14\x80\x03\xeb\x95\x00\x63\xdf\xd9\xde\x33\x30\xf6\x1d\xe4\x8d\x81\xb1\xef\x98\x0e\x03\x32\xda\xb1\xf5\x86\x5f\xa5\x6c\x40\xc3\x77\xea\x5d\xbd\x40\x4f\xea\x05\x3f\xa7\xeb\xa3\xc2\xcf\xe9\x12\x19\x7e\x4e\xd7\xeb\x82\x9f\xd3\x97\xee\x14\x4c\x1a\x0a\x5b\x30\x69\x5e\x82\x2d\x98\x34\x12\xdc\x82\x49\x33\x5a\xa0\xa6\x1d\x4f\xca\x80\x9a\xf6\xab\x3b\x81\x03\x4b\xe9\x03\x35\x1d\x92\x35\xfe\xd1\xd0\x07\x07\x9c\x74\xe8\xa3\x02\x4e\x3a\x64\x1e\x40\x47\x0d\xbd\x66\xc0\x49\x07\xa1\x03\x33\x81\x9f\xa1\x67\x02\x3f\xc3\x35\x3e\xd0\x90\xac\xf1\x81\x06\x9e\x94\x19\x50\x61\xbd\x66\xc0\x50\x87\xd4\x12\xfe\xd1\x90\x74\xf1\x8f\x06\x9e\xbe\xe1\x1f\x8d\x01\x2f\xf8\x47\x43\x92\x3f\x02\x38\x33\xef\x07\xa0\xb2\x3e\x62\xfc\xa3\x21\xa5\x8f\x7f\x34\x96\xfe\x63\x0c\x4b\xcf\x31\x06\xcd\x03\xfe\x91\xd2\xfa\x0c\xff\x48\x69\x7d\x86\x7f\xa4\xb4\x3e\xc3\x3f\x1a\x52\x75\xf8\x47\x43\x6f\x39\xfe\xd1\x24\x2e\x6a\xf8\x47\x13\xff\xd6\xae\xa0\xd0\x8c\xe1\x0a\x0a\xcd\xdc\xe2\x3b\x4d\x16\xa9\x86\xef\x34\x65\x02\xf0\x9d\xa6\xde\xeb\x2b\x98\xb4\xfe\x03\x70\x4c\xe8\xce\xf0\x9d\xa6\x0c\xec\x15\x4c\x5a\x7c\xfa\xf8\x66\xd3\x7f\x3e\x86\x89\x11\x3d\x38\x41\x13\xb7\xe7\x80\x4a\x9d\x38\x33\x87\x4a\x35\x93\x70\xe0\xc1\xd1\x99\xc8\xfa\x50\xec\x60\x62\x44\x0f\xc5\x0e\xe6\xd2\x73\xd0\xdb\xba\xd3\x68\xf9\xac\x1c\x9c\x99\x49\xa0\xf2\xe0\xcc\x4c\xe2\xd3\x87\x9a\x36\x13\x03\x7b\xa8\x69\x33\x09\x16\x1c\x1c\x9d\xc9\x6e\xd1\xa1\xd4\xd6\x42\x99\x9e\x00\xdc\x99\x37\xf9\x50\xef\x66\x61\x2c\x0e\xf5\x6e\x56\x54\x9f\x00\x95\xa3\x7a\x01\xa8\x4c\x75\xb9\x43\xe1\x85\xc5\x0a\xe1\x50\x78\x61\xb1\x36\x3b\x01\x94\x2f\x41\xb0\x03\x06\x77\x11\x04\x3b\xb8\x59\x8b\x79\x38\xb8\x59\x0b\xc9\x1f\xdc\xac\xd5\xf4\x1f\x68\x64\xf4\xcb\xc1\xb1\x5a\x9a\x07\x1c\xab\xc5\x5b\x7e\x70\x9e\x16\x6f\xf2\xc1\x79\x5a\xb8\x2f\x07\xe7\x69\xad\x1f\xd5\xb8\x38\xf8\x55\x4b\xd3\x40\xd5\xaf\x45\x24\xed\x00\x00\x5e\x54\xbc\x38\x00\x80\x17\xdb\x4a\x87\xea\x0d\x0b\x5f\xf4\xe0\x8f\x2d\xd3\x9d\x08\x9e\x28\xdb\xc1\x1f\x53\x0e\xe3\xc1\x1f\x5b\x47\xbd\x30\xbc\xa3\x5e\x18\x1e\xcb\x93\x83\xaf\xb6\x59\x4c\x1f\x2a\x3b\xa8\xac\xe6\x49\x02\x3f\x1f\x5a\x02\x3f\x23\xc0\x2c\xf0\xb3\x5a\x02\x3f\x43\x0f\x3f\x6e\xe3\x49\x1d\xfc\xb8\x9d\x2b\x2d\x00\xce\x6c\x13\x1c\x7c\x35\x65\x2d\x1e\xca\xf2\x6c\x56\x08\x87\xb2\x3c\x1b\x25\x75\xb2\xc0\xcf\xea\x65\xd1\xd2\x7f\x8c\x61\xa8\x17\xc6\x30\xc4\x0b\x63\x98\x8c\x16\xaf\x6e\x6b\x1e\xf0\xea\x54\x48\xf3\xe0\xd5\x6d\xd3\x9d\xf0\x49\x44\xf3\x50\x11\x42\xf1\xe2\x23\x08\x35\x6a\xe9\x08\x26\x8d\x07\x76\xf0\xf1\x36\x6a\xe9\xe0\xe3\x29\x5e\x7c\xf0\xe3\xec\xd1\x7f\x97\x16\x52\xa2\xd4\x8f\xa1\xb2\x8e\xe0\xd5\x98\xdb\x23\x08\x35\x30\x84\x83\x3f\x66\x59\xcf\x01\x5b\xc6\xaf\x3a\x15\xd8\x32\xa1\x8a\x23\xb0\x35\x5e\xd6\x11\xd8\x1a\x3f\xf5\xe0\xab\x59\xd3\x7f\xf0\x22\xc9\x0b\x88\x4d\x14\xff\x08\x88\xcd\x4e\xf8\x69\x40\x9a\x31\x0f\xa7\x01\x69\x26\xfc\x71\x04\xbd\x1e\xfa\x4f\x60\x6b\x64\xdd\x04\xb6\x86\xba\x60\xd9\xf8\xbe\xa7\x09\x6c\xcd\xd8\x9b\xc0\xd6\xa2\x2e\xb0\x35\xcf\x51\xa0\xc8\x08\xc8\x1d\x0a\x14\xa9\x20\xe6\xc1\xe3\x33\xcc\xc3\x11\xd4\x5b\x2a\x4b\x50\x6f\xcd\x03\x01\xb2\x83\x41\x38\xc0\xb9\x4f\x50\x9f\xc0\x9d\xa3\xfe\x03\xc4\x4c\xb4\xf3\xe0\x29\x2a\x96\x7c\xf0\x14\x8f\xde\x79\xbc\xc1\x83\xe9\x38\x78\x7c\x07\xe3\x7b\x86\x40\xd3\x48\x10\x8f\x4f\x31\xe1\x23\x38\xb7\x64\x2d\x38\x37\x41\xb7\x43\xa0\xeb\x48\xb1\x13\xe8\x3a\x84\x7e\x8e\xa0\xde\xac\x36\x0f\x81\xae\x43\xb0\xe7\x50\x56\x49\xa5\x2c\x0f\x4e\xde\x61\x3d\x74\x80\x7a\x5f\xa9\x64\x4a\x27\x5d\x5c\x8d\x43\xc5\x3a\xa5\x1f\x1e\x1c\x39\xc5\x68\x0f\x75\xe8\x2e\x3e\xec\xc1\x91\xbb\x52\xb4\x38\x72\x97\xed\xbd\x83\x23\xa7\x84\xc3\x83\x23\x77\x59\x43\x1e\x1c\xb9\xab\xb7\x80\x40\xd7\x35\x3d\x07\x48\x1b\x78\xfc\xc1\xc9\x53\x72\xe0\x21\xd0\x75\xa5\xc1\x48\xbd\x54\x02\xe0\x21\xf7\x5f\x41\xd3\x03\xb0\xc9\xab\x34\x7e\x5f\x25\x03\x12\x50\x94\xf4\xb8\xff\xb7\x15\x17\x3d\xe0\xa1\x94\x73\x77\xb6\x00\xd5\x08\x62\x03\x8c\x9e\xfa\x4f\x80\x6a\x3d\x07\x30\x9a\x3a\xcb\x87\xdc\xce\x47\x6a\x9e\xdc\xce\x87\xed\xa8\x03\xb8\x40\x05\x1c\x8f\x09\x7a\xad\xff\xa0\xc0\x42\xed\x00\x04\x7d\xae\xfe\x03\xce\xad\xc9\x24\x43\x34\xe8\xf5\x04\x78\xa0\x52\x8f\x07\x90\x68\x88\x28\x0d\xb2\x47\x95\x82\x77\x0c\x30\x32\xcb\xd9\x73\x04\xa8\xe6\xf5\x3c\x02\x54\xc3\x35\xf0\x85\x20\xf5\x02\x44\x21\x10\x2f\x3e\x64\x96\x2a\xbe\x79\xc8\x1e\x0d\xfa\xdc\x8f\x80\xd1\xbc\x90\x57\x00\x67\xee\x04\xa9\x15\x24\x89\x0b\x0c\xdc\xf4\x1f\x40\x6c\x29\xda\x2b\xf0\x33\x53\x7b\x05\x7e\x86\x33\xc0\x0c\x51\x7e\x07\xd9\xa3\x8a\x4c\x1e\xb2\x47\x15\x99\x3c\x80\x19\xa2\x3e\x5b\xc0\x0c\x91\xc4\xfc\x03\xd4\x54\x51\xcb\x03\xd4\x54\x51\xcb\x03\xd0\x21\x12\x7c\x39\x00\x1d\x22\x1f\xf8\x05\xe8\xa0\x92\x8d\xf7\x11\xdc\xb9\xd1\x02\x7e\xcc\x32\xf8\x02\x74\x88\x45\xff\x01\x3f\x26\x1a\x7f\x01\x3a\x44\xe4\x79\x01\x3a\x44\x4c\xdc\x05\xe8\x10\x09\x7b\x5d\xb0\x67\x91\x2d\xa0\x0b\xb4\x41\x51\xcb\x1b\x04\x3f\x3e\xb4\xa0\x8e\x3f\x7d\x81\x36\x44\x4c\xdc\x05\x09\x1a\x4d\xcf\x41\x1d\xc9\x5f\xa0\x0d\xd1\xd4\x0b\xd4\x81\xee\x5e\x50\xa2\x11\xf5\x72\x41\x89\xaa\x80\xe3\x0d\x48\x89\x20\xc3\x05\x33\x9a\x08\xb7\x5c\x30\xa3\x09\x07\xe2\x82\x19\x4d\x98\xb8\x0b\x66\x34\x05\xdd\xe9\x7c\x2a\x86\x79\x81\x52\x28\x86\x79\x81\x52\xa4\x24\x0a\xc0\x8f\x59\x01\x5d\x8a\x0f\x24\x82\x0c\x37\x02\x85\x66\x05\x74\xdd\x57\xdb\x09\x57\xe3\x82\x3c\x4d\xe4\xa5\x5c\x0a\x13\x24\xcd\x03\x80\x0c\x85\x2d\x2f\x80\x8c\x44\x64\xf9\x82\xd0\x4b\xac\x9c\x6e\x82\xcf\xae\x16\x7c\xf2\x05\x5c\xc0\x1a\x89\xbc\x94\x0b\x58\x23\xe1\xb1\x5f\x40\x17\x0a\x31\x5e\x90\x76\x89\xef\xfd\x66\xa0\xd7\x57\x77\x0a\x18\xad\xff\x04\x7e\x46\x2e\x00\x32\x32\x61\x9a\x0b\x42\x36\x4b\x9e\x20\x64\x33\x81\x8b\x0b\xea\x22\x63\xc6\x6e\x01\x39\x8c\xaf\x7d\x0b\xc8\xe1\xa4\xff\x40\x0e\xb3\xca\xb9\x20\x32\x72\x56\x9f\x20\x87\xf5\x26\x53\x5c\x21\x4b\xd6\xe0\xfc\x14\x54\xbc\x20\x32\x32\xfa\xf3\x82\xc8\xc8\xb8\x13\x97\x52\x0b\xb9\x9d\x1f\xa8\xe4\x5b\x01\x3f\x13\x61\xbc\x95\x21\x90\xfb\x78\x81\x6e\xe4\xa1\xff\x60\x93\x28\xf0\x05\xba\x91\x35\x0d\x40\x37\x54\x06\xf2\x52\xa1\x21\x13\x3f\xba\x00\x32\x32\xbe\xc5\x05\x74\x91\x51\x44\x17\x7c\x60\xde\xba\x53\x10\x6a\x28\x00\xc8\x50\x71\xc7\x0b\x20\x23\x13\x5b\xba\x80\x2e\x32\x6a\xe9\x02\xba\xc8\x78\x1a\x17\xd0\x45\x61\xd1\x7f\xbb\x00\xd5\x50\x00\x74\x51\x82\x5a\x02\x54\x33\x0d\x54\x68\x28\xa8\xb3\x0b\x20\x43\x91\xc9\x0b\x20\xa3\x24\xfd\x07\xf8\x99\xa5\xd2\xa5\x7a\x43\xd1\xc7\x01\x58\xa3\xa0\xd8\x2f\x60\x8d\x42\x21\xee\x0b\xae\xb0\x14\xf5\x09\xc0\x99\x98\xd4\x1d\xf0\xd9\xf8\x6c\xa9\xec\x50\xf0\x49\x2e\x08\xc4\x02\x7a\xef\x02\xe4\x50\x2a\xdd\x05\xc8\xa1\x82\x91\x17\x20\x47\x61\x01\x7b\x41\x20\xaa\x60\xe4\xa5\xea\x43\xc1\x6c\x5e\x40\x1e\x65\xc1\x19\xe8\xc4\xb2\xf4\x1c\x00\x6e\x13\x67\x02\x62\x33\xf6\x21\x20\x36\x9c\x51\x11\x42\xf1\xcd\x2b\xe8\x35\x3e\xc2\x15\xf4\x5a\x1f\x8e\xa0\xd7\xac\x5d\x2e\xa0\x92\x8a\xa1\xbc\x54\x8b\xa8\x44\xf5\xae\x60\xd9\x49\xff\x01\xaf\x96\x9a\x9f\x00\xa3\x8b\xfa\x74\x79\x56\xfc\x9c\x2b\x90\x76\x57\x2f\xce\x67\x95\xcc\x00\xa3\x54\xbc\xe4\x2b\x00\xb7\xde\x56\xea\x4a\x28\x45\xed\x52\x57\x42\xf1\xcd\xbb\x04\xb6\x46\x4a\x0b\x3e\x59\x35\xde\x25\xb0\x35\x63\x07\xb6\x52\xf1\x96\x2e\xb0\x95\x7a\xd5\x0b\xa0\x62\xd6\x7b\x77\x01\x2a\x96\xba\xc6\xaf\x6a\x52\xd7\xf8\x55\x0d\x2f\xf9\xe2\x57\x35\x29\x68\x9c\xa7\xc6\x4e\xff\xdd\xc0\xb2\x25\x09\xc0\x2f\x4d\x6f\x16\x0e\x52\xab\xba\x13\x80\x33\xa1\xa6\x0b\x32\xb3\x49\x4a\x20\x33\x9b\xcc\xdf\x86\x17\x29\x5a\x83\x17\x19\x43\xea\x66\x34\x7d\xfd\xd4\xcd\x68\x7a\xeb\x80\xd7\x34\xc2\x81\x17\xe7\xa9\x91\x1f\x74\x71\x9e\xda\x56\x2f\x70\x66\x7a\x0e\xce\x4c\xf4\xe0\x4c\x0a\x1a\xe7\xa9\xc9\xc4\xe1\x3c\x35\x7d\xe1\x38\x4f\x8d\xbd\x87\x8b\xf3\xa4\x10\xea\xc5\x79\xea\x41\xff\x25\x5a\xf4\x09\x64\xa7\x4b\x41\xe3\x58\x29\xbc\x7a\xc1\x7e\x76\xbd\x83\xc0\x79\xba\x64\x8d\xd3\xd5\xa5\xae\x81\xf3\x28\xd8\x7a\x81\xf3\x74\x7d\xfd\x38\x64\x5d\x6f\x2b\x0e\x59\xc7\xe5\xbb\xc0\x79\xbc\xb2\xe5\xf7\x55\x32\x48\x1f\x15\xbd\xbc\x20\x7d\x14\xbf\xbd\x20\x7d\x3a\x79\x9f\x17\x1f\xaf\xcb\xbe\xe2\xc7\x75\x29\x14\xfc\xb8\x4e\x8e\xdf\xc5\x8f\xeb\xb2\x0e\xf8\x6a\x5d\xca\x1b\x5f\xad\x0f\xf5\x22\xb0\x35\x62\xb9\x02\x5b\xab\x17\x78\xf1\xe5\x50\xe0\xf4\x93\xdd\x7d\x43\x2f\x3c\x8f\x80\xd8\x6a\x31\x0d\xa6\x3b\x11\xa7\x2b\x8d\xf0\x3c\x88\xf3\xea\x4e\xa0\xc9\x8f\xfe\x03\x26\xfd\xe8\x39\x60\xd2\x1e\xb1\x0d\x0f\xfe\x18\x11\xdb\xf0\x50\x0b\x60\x78\x14\x31\x3c\x80\x4b\x47\xa4\x4f\xbc\xb3\xe1\xb6\x37\x3c\x78\x67\xc3\x3d\xcc\xf0\xe0\x9d\x8d\x04\x05\xfc\xaa\x51\xa0\x10\x04\xc4\xd6\x9d\x3e\x5a\x22\xb6\xe1\x89\xc0\x9d\x5d\xd9\x84\x07\x9f\x6b\x74\xb5\xa0\xee\x86\x32\x3c\xf8\x5c\x14\xa1\x0c\x0f\x3e\x17\x11\xdb\xf0\xe0\x73\x11\xa3\x0d\x0f\x3e\xd7\x98\xf0\x82\xcf\x35\x26\x23\xa2\x82\xc1\x58\x70\x46\x31\xa8\xb1\x18\x3b\xfe\xd8\xd8\xa2\xce\x18\x3c\x88\x12\x1e\xfc\xb1\x61\x48\x02\x7f\x6c\x18\xd4\x93\x20\xdb\xd0\xc3\x1f\x1b\x17\x0a\xf8\x63\xe3\xd2\x27\xfe\x18\xe5\x2a\xc3\x93\x04\xd9\x9e\xb4\x04\xd9\x86\xcf\x24\xc8\xb6\xee\x14\x64\x5b\x7d\x02\xd9\xd6\x3c\x00\xb3\x9d\x09\xb9\xe0\xb9\xcd\xc2\xbc\x03\xa5\x9d\x05\xae\x81\xd2\xce\xaa\x5e\x2e\x2d\xc6\x4e\xdd\x85\x59\xa1\x0e\xcc\x76\x56\xb8\xa6\xb6\xc9\xec\xcc\x03\xb5\x4d\x66\x87\x33\xfc\xbf\xd9\x19\x3b\x3e\xde\x1c\x50\xc0\xc7\x9b\x03\x0a\x80\x6e\xe7\x84\x4f\x40\xb7\x53\x73\x84\x1f\x37\x17\x5c\xe3\xc7\xcd\x05\x05\xfc\xb8\xb9\x90\x35\x7e\xdc\x74\xd3\x11\x1e\xfc\x38\xe2\xbe\xe1\xa1\x96\xc3\x34\xb8\xa6\x48\xd6\x3c\x8c\x1d\x1f\x6f\x1e\x64\x86\x8f\x37\x2f\x14\xf0\xf1\xe6\x85\x17\x9c\x35\x4a\x67\x06\x4e\x1f\xda\x4b\xdf\x0a\xee\xd9\x72\xe5\x16\x1e\xdc\xb3\x25\xc9\xe3\x9e\xad\x04\x75\x0a\x68\xad\xcc\xdc\x82\xac\x5d\x59\xff\x01\xee\x2e\xbc\x59\x38\x72\x4b\x5f\x07\xc8\xda\x55\xe1\x05\x47\x6e\x35\xa8\xe3\xc8\x2d\xcd\x03\x8e\xdc\xea\x50\x6f\x02\x8c\x33\x3e\x9c\xb5\x35\xe1\x13\xa7\x6b\x4d\xa8\xe3\x74\xad\x45\x2f\x38\x5d\x4b\x5f\x00\x4e\xd7\x5a\xbc\x05\x38\x5d\x6b\xab\x17\xc6\x27\x4d\x84\xd3\xb5\xa4\x89\x06\xf4\x0e\x63\xc0\xe9\x5a\xe7\x07\x35\x2e\x02\xc7\x29\xed\x75\x19\x02\x3e\xd7\xd2\x34\xe0\x57\x6d\x29\x30\x7c\x27\xe2\xb0\xe1\xa1\x9a\xd6\x4e\x0c\x81\x6a\x5a\x3b\x23\x4e\xfc\x2a\x8e\x45\x0a\x0f\x7e\xd5\xd6\x07\x80\x5f\xb5\x0b\xaf\x12\x7e\x15\x05\x2a\xc3\x83\x5f\xb5\x9b\x5a\x40\xbd\x1b\xd4\xf1\xab\x38\x08\x29\x3c\xf8\x55\xbb\x21\x24\xfc\xaa\x2d\x25\x05\x90\x77\x0f\xf8\xa4\x5a\x04\xb9\xc0\xe1\xc1\xe7\xda\x53\xd4\x85\x56\x87\xeb\x29\xb4\xba\xf8\x64\x7c\x5b\xd4\x19\xdf\x46\x2e\xf8\x63\xdb\xa0\x87\xcf\x45\xfc\x36\x3c\xf8\x5c\xfb\xf0\xdc\x12\x5c\x9d\x57\x02\x9f\x6b\x4b\xd6\x4b\x70\x75\xf8\x5c\x82\xab\xab\x05\x48\x5b\x4a\x1f\x18\xb1\xe9\x25\xc7\x1f\xb3\xc4\x88\xf0\xc7\x2c\xeb\x3f\x40\xda\x05\x7a\xf8\x5c\x1c\x4c\x14\x9e\x0d\x48\xbb\xc1\x27\x05\x7c\x88\xca\x86\x07\x7f\xcc\x24\x4f\xfc\x31\xeb\xba\x13\x00\x77\xd7\x9d\x00\xb8\x3b\x9c\x11\xcc\xb2\x2e\x7a\x8c\x61\xe8\x3f\xc6\xa0\x97\x7c\x0b\x68\x0e\x9f\xf8\x63\x26\xe9\xe2\x8f\xd9\xe6\xd5\x25\x98\x45\x29\xcb\xf0\x10\xcc\x22\xc3\x37\x3c\x04\xb3\x8e\x94\x37\xfe\xd8\x91\x62\xc0\x1f\x3b\x52\xd0\xf8\x63\xc4\x53\xc3\x83\x3f\x46\x49\xca\xf0\xe0\x8f\x9d\xcc\xf8\xf0\xc7\x8e\x24\x88\xcf\x75\xa4\x26\xf0\xb9\x4e\x61\x0c\xf8\x5c\xa7\xf1\xbe\xe0\x73\x1d\xa9\x5d\xfc\xaa\x23\xb5\x7b\x04\xfc\x56\x9f\xd0\x5b\xea\x13\x7a\x7a\x97\x70\x82\xce\x86\x4f\x9c\xa0\x23\x07\x02\x27\xe8\x5c\xde\x56\x02\x5d\xf7\x81\xc2\x15\xf0\x9b\xef\x41\x50\xe8\xc0\xf8\x04\x85\x8e\x48\x17\x07\xe9\x26\xe4\x49\xa0\xeb\x26\xd1\x03\x26\x2d\x49\x10\xa2\xba\x55\x7d\x02\xc4\xae\x4e\x9d\xe3\xcc\x36\xe9\xb1\x81\xe3\xcc\xf6\x65\xde\x39\xce\x6c\x5f\xdf\x31\x09\x01\x97\xe8\xf2\xfd\x05\x5c\xa2\xeb\x6e\x56\xe0\x38\xb3\x4d\xc4\x36\x04\xdc\x9e\xcb\x17\x17\x70\x7b\xee\x52\x9f\xf0\xc2\x3b\x11\xa8\xc5\x71\x91\x52\xc0\x25\xba\x98\x9c\x80\x4b\x74\x0d\x0a\x41\xa0\x70\xfd\x87\x24\xbc\x04\x59\xe0\xf8\x34\x23\xad\x36\x04\x81\x9f\x1f\xe8\x09\xfc\x1c\x18\x83\xc0\xcf\x41\x7d\x02\xb6\x4e\xf0\x09\x18\x8c\x02\x9c\x81\x63\xd7\x8c\x84\xd8\x10\x22\x98\x66\xbe\xb8\x10\x01\x62\x63\x56\x42\x04\x88\x5d\x7f\x00\xa8\x0e\x21\x0a\xa3\x5d\x79\x0c\x08\x35\xde\x59\x88\x0c\x81\x8f\x31\x44\xe1\xb7\x11\x4b\x64\x08\x9a\x06\x90\x68\xe4\xd1\x06\x4e\x79\xb3\x07\xdb\xc4\x29\x6f\x46\x9c\x39\x70\xca\x9b\x3d\x58\xf7\x10\x19\xde\x46\x64\x82\x6c\xe3\x8f\x05\x41\xb6\x4d\xff\xc1\x27\x16\x27\x24\xf8\xbc\x70\x9d\xe0\xf3\xc2\xe7\x27\xb8\x1b\x3e\x3f\xc1\xdd\xf0\x99\x80\x65\x3f\xf0\x22\x70\xb7\xef\xa7\x87\x20\x70\x77\x10\x3d\x60\xd2\x28\xbe\x00\xba\x2d\xf0\x5a\x87\x0c\x4c\x1a\x9f\x8b\x33\xe6\x8c\x03\x86\x02\x67\xcc\x59\xa8\xba\x13\x98\x34\x7e\x55\x70\xbf\xca\x02\x9e\x70\x10\x7c\x1c\xbf\x2a\x08\x3e\x2e\xe9\x82\x98\x0b\xf8\xbe\x9c\x4d\x67\x81\xcf\x3d\x08\x5a\x3e\x44\x41\x00\x6e\xfa\x14\x60\x7c\xf3\x9c\x00\xe3\x92\xa7\x00\xe3\x18\x92\x20\xc0\x38\x1e\x11\xa7\xd1\x59\x90\xcc\x40\xcc\x71\x50\x50\x08\x20\xe6\x28\xb9\x19\x02\x60\xf2\x18\x44\x01\xc0\xb1\x24\x08\x62\x2e\xa2\x0a\x38\x8d\xce\x88\x4f\x87\x00\x60\x9c\xc8\x72\x08\x00\xc6\x63\x86\x9e\x40\xe1\x85\x3e\x2b\xe0\x67\x4c\x78\x10\x28\x1c\x23\x13\x04\x0a\xd7\x4b\x2e\x50\x38\xbe\x53\x10\xb8\xbb\x23\x25\x81\xbb\x07\xd4\xc1\xc1\x45\xbd\x91\x0d\x7a\x53\x2d\x80\xdf\x78\x4b\x41\xc0\x6f\xa9\x89\x26\x20\x36\x63\x6f\x02\x62\xc3\xa7\x40\xe1\x06\x2f\x02\x85\x63\x98\x83\x40\xe1\x52\x0c\x02\x85\x63\x64\x82\x40\xe1\xac\x17\x38\x19\xcf\x92\x64\x0d\x0a\x2f\x3d\xbc\x83\xa0\xf0\x92\xe4\x09\x0a\x2f\x45\xde\x79\x50\x78\x29\xc3\x19\x28\xbc\x94\xd5\x0b\x20\x66\x49\x17\x14\x5e\x2a\xa2\x07\x88\xb9\x88\x17\x1f\x43\xd2\xbb\x0b\x98\x3c\x75\xd1\x3b\xb4\xf8\x52\xbb\x00\xdc\x8c\x16\x84\x5e\x92\xda\x1d\x8c\x41\x8a\x76\x30\x06\x1c\x9d\x00\x7a\x2f\xe1\x6f\x72\x66\x9f\x25\x49\x17\x10\x7a\xda\x70\x36\x18\x83\xde\x4f\x90\x7d\x49\x6a\x57\x00\x75\x49\x57\x00\x75\xe9\x02\x90\x7d\xe9\xc0\xe7\x10\x48\x9b\x31\x0c\x81\xb4\x99\xb1\x21\x90\x36\x12\x04\xf5\x97\x1f\x71\xed\xe3\xcb\x52\xc9\x13\x60\x74\x80\x4f\x10\x81\xa4\xb9\x86\x30\x01\x46\x4b\xf2\x13\xf4\xb3\x24\x0f\x22\x30\x4b\x33\x80\x08\xcc\x05\x3e\x41\x04\xfe\xb0\x38\x67\x08\x80\x05\xb3\xf4\xfa\x64\x08\x2c\xd4\xc2\x64\x08\x4d\xc4\x19\x82\x26\x65\x32\x84\x01\x2b\x40\x07\xc9\x4f\x0d\x01\x34\x3e\x25\x37\x43\x58\xf4\x89\x47\x14\x16\x7d\xca\xfa\x2d\xfa\xdc\x7c\x1c\xe0\xf6\xb3\xd1\xda\x60\xc9\x0f\xd4\x37\x58\x72\xbd\xd6\x60\xfa\x39\x28\x28\x70\xe8\xa1\x65\xa9\xe4\x0d\x14\xfa\x81\xc2\x06\x6c\x2d\x25\x0c\xde\xbf\x48\xf0\xe0\xfd\x89\x1e\x87\xb0\x01\x1c\x4b\xf0\x1b\x08\x75\x64\x0c\x1b\xb8\xb3\xd4\xcb\x06\xee\x9c\x69\x51\x0b\x80\x08\x71\xe0\x78\x44\x2b\xb2\x9a\xd4\x02\x28\x92\x2e\xb5\x00\x88\x1e\x07\x8e\x47\xb4\x22\x59\x1b\x7c\xca\x27\x31\xf8\x94\xe4\x4d\xb0\x6c\xe4\x42\x9d\x80\x32\xf4\x1f\x7c\x6a\x1e\x4c\xb0\x6c\x46\x4b\x9d\x80\x22\x95\x6c\x40\xa8\xf5\xca\x1b\x10\x6a\x29\x14\x6a\x08\x90\x39\x1b\x02\x35\x04\xca\xe1\xa3\xa2\x86\x00\x99\xb3\x21\x50\x43\xa0\xe0\xb9\x05\x6a\x08\x54\x3c\xb7\x40\x0d\x81\x8a\xaf\xc6\xe9\x8c\x56\xa3\xfa\x04\x26\x2d\x4f\xe3\x00\x93\x4e\xba\x13\x10\x33\x8b\xdb\x40\x45\x81\xaa\x57\xfe\x00\x62\xc6\x87\xe5\x1c\x47\x23\xb2\x1c\xc2\x15\x84\x9a\x3e\xaf\x20\xd4\xcc\x2d\xd5\x06\x38\xd0\x28\x70\xc6\xa3\xd5\xca\xc7\x78\x05\xa8\xd6\x7f\x00\x95\xa5\xbc\x29\x0d\x40\xc1\xcf\xc0\x19\x8f\x56\xe5\xe3\x51\x1a\xa0\x4a\x79\x53\x1a\xa0\xea\x2d\xa7\x34\x40\xdd\xe2\x05\x3e\x1d\xa4\x13\x38\x0d\xd2\x2a\xc1\x9e\xf8\x08\xee\x1c\x68\x21\xc1\xab\x16\x90\x5f\xfc\x38\xce\x7f\xb4\xe6\x7b\x1d\x81\xf3\x1f\xad\xf1\xd6\x71\xfe\xa3\x91\x39\x1b\x38\xff\xd1\x9a\x27\x38\x06\xce\x7f\xb4\x56\xf4\x9f\x20\xc6\xf4\x42\xa1\x00\x8e\x37\x0a\x9c\xff\x68\xad\xea\x39\x00\xc0\x4d\x14\x80\x18\x37\x3d\x07\xc4\xb8\xab\x05\xc4\x18\x27\x81\xb3\x21\xad\x11\x10\xe0\xfc\xc7\xb9\x31\xd3\x9c\xf1\x38\x37\xdf\x58\xd4\x21\xbc\x11\xb9\x80\x7f\xdc\xb8\x3d\x11\x74\xe2\x26\xa8\x11\xc1\xdd\x6d\x56\x24\xb1\xe8\xb0\xe0\x4a\x0b\x54\x2a\xeb\x93\x58\xc1\xb6\x12\xac\x8b\x95\xff\x26\x77\x02\x6f\xdb\x7c\x0f\x11\x08\xdb\x5e\x50\x00\xc2\xc6\xe1\x0f\x81\x73\x1c\xa7\x56\xc5\x9c\xc7\x38\xb7\xd1\xcb\x10\xee\x15\x29\x71\x30\xec\xbe\x70\x36\x18\x2d\x2b\x5f\xce\x55\x9c\x1c\xfe\x10\x22\x07\xc3\x1a\x9a\x88\xd3\x12\xa7\x3d\x3f\xd8\xde\x0b\x1c\x96\x38\x4d\x22\xe3\x24\x58\x8b\x30\xbd\x00\xc8\xf2\xe1\x44\xce\x7e\xb5\x0c\x9b\x9c\xcc\x6a\x15\xc6\x38\x99\x95\xea\x6b\x21\x1a\xa0\x54\x62\x3d\xf1\x08\x04\x8b\xc8\x8e\x40\xb0\x08\xe2\x00\x2e\xc5\xb3\x89\x97\x3b\xbd\x26\x6b\x48\x80\x98\xcd\x37\xa0\x02\x67\xfd\x4d\xf3\xad\x95\x90\x80\xfc\x1a\x2f\x79\x12\x78\x16\x3b\x99\x04\x9e\x75\xdc\x4f\x48\x02\xc1\x7a\x5e\x64\x48\x00\x5d\x0f\x5e\x48\x02\xe8\x4a\xa5\xb4\x90\x00\xba\x72\x4e\x43\x48\x82\xa1\xe2\x93\x24\xc1\x50\x51\xd0\x49\xb0\x50\xd4\x0b\x27\xce\xcd\x43\xd0\x86\x13\xe7\x26\xe7\x34\x84\x24\x20\x28\xcb\xe0\x54\x38\xc9\x97\x4f\x25\x71\xfa\xf1\x21\x84\xc3\x69\x74\x93\x33\x1c\x02\x27\xce\xcd\x53\xa1\x50\x81\x8c\x22\xcf\x04\xde\xf2\x10\xc2\xe1\xc4\xb9\x49\x85\xb5\x90\x78\xb1\xa8\xa2\x16\xd2\xa0\xc5\x82\x39\x0d\x00\xa4\x78\x7c\x49\x67\x05\xa3\x34\xd2\x14\x44\x15\xea\x3a\x39\x98\x08\x71\x5a\x8c\xef\x40\x6f\x03\x20\xc5\xd3\x48\x9f\x47\xe4\x32\xa2\x03\x80\x94\x4f\x2c\xe9\xc0\xdc\x04\x85\x03\xa2\x93\x25\x72\x3a\x20\x3a\x51\xb4\xe9\xf3\x30\x5d\xfa\x04\x2c\x7f\xfd\x4c\xc2\x90\x81\x65\x5f\xdf\xa6\x0b\x19\xa8\xf0\x65\x55\x95\x99\x23\x2d\x67\x33\xf3\x70\x3d\x1f\x22\x64\x20\x18\xcf\xc3\x73\x00\x1d\x1e\x47\xcc\x85\xdc\x74\x48\xad\xf3\xa2\x83\x97\xa8\x16\x16\x74\xb8\xd2\x53\xe8\x45\x88\x47\xdf\x4d\x09\x59\x88\x47\x71\x46\x22\x98\x9f\x12\xf1\xd1\x32\x5a\x50\x20\x33\x9f\x5c\xa5\x90\x49\xa2\x7a\xf0\x37\x75\x64\x12\x87\x3f\x04\x1d\x53\xf4\x10\x05\xd6\xc1\x44\x5a\x27\xea\xb8\xa1\x07\xd3\xa8\xe3\x86\x28\xf4\x15\x0a\xd0\x29\xad\xe9\x0a\xd9\xc6\x01\xe5\x5d\xc8\x05\xe6\xd8\x86\x50\xc8\xf7\x0d\xbc\x9f\x85\xfc\x5b\xf2\x8a\x82\x4e\xbd\x09\x38\x02\x85\x84\x58\x8a\x72\x85\x42\xf2\xaa\xd6\x74\x85\xb4\xd3\xd0\xa1\x47\xda\xa9\xd6\x74\x85\xb4\xd3\x80\xba\x2e\x59\x87\xc6\x42\xbd\xe9\xb8\x57\x28\xe8\x90\x5a\x56\x0f\x85\xe4\xc0\x40\x58\x41\xe7\xc0\x68\xa5\xa6\xf3\x55\x38\x00\x21\x14\x92\xf5\xb4\x1a\x2b\x43\x47\xba\xf2\x1c\x73\xc4\xe1\x08\x41\x67\xaf\x44\x49\x02\xbc\x44\x4c\x8c\x56\x47\xb3\x66\x78\xd1\x81\xab\x84\x69\x8a\x90\x92\x38\x48\x45\x48\x49\xc9\xe5\x13\xb9\x08\x2f\x64\xed\x53\x40\x2b\x14\x32\xec\x39\xac\x20\x14\xe1\x0a\x27\xf4\x84\x2b\x64\x9f\x40\x67\x93\x78\x46\xd0\x77\x55\x32\xa7\x8a\xac\xc8\xe2\xa1\x82\x98\x8b\x04\x0b\x2a\xd3\x4e\xe5\xab\xc0\x39\x22\x2b\xb2\x4d\xc0\x39\x22\x2b\x62\xeb\x2b\x49\xe6\x5a\xa8\x55\x0e\x49\x8a\x58\xfe\x4a\x9a\x77\x72\x2c\x51\xa8\x3a\x58\x14\x3b\xc9\x39\x22\x2b\xb1\x31\x50\x99\x4c\x2d\xb1\x38\xf3\x63\x25\x3e\x80\x4a\x16\x2f\x35\xb2\x42\x25\x53\x97\xd3\x10\x42\x2d\x42\x12\x42\x01\x04\x14\x09\x3a\x81\x73\x3d\x96\x96\x5f\x9c\xcf\xb1\x12\x16\x95\x13\x32\x56\xc2\x6a\x56\x70\x46\xd4\xc1\x0a\x95\x0c\xd1\x84\xff\xce\x29\x18\x2b\x61\x35\x39\x05\x63\x51\x07\x2b\x54\x5e\x82\x84\xd5\xac\xe4\x4c\xe6\x07\x0a\x40\x53\x32\x26\x8e\xf3\x1d\x56\x46\xf5\x54\x3e\x46\x2d\x79\x2a\xa0\x8b\x8c\x89\xab\x80\x2e\xa8\x59\x15\x38\xb5\x61\x91\x5a\x13\x2a\xf0\x85\x8c\x89\xe3\x1c\x83\x95\x31\x63\x94\xfd\x5f\x19\x33\xd6\x84\x16\xc4\x70\x35\xa1\x05\x51\xbb\x4d\x78\x3d\xcc\x58\x23\x3f\x9c\x42\x51\xa1\x09\x15\x87\xe1\x6a\x42\xc5\x61\xb8\x9a\xb0\x67\x98\xaa\xa6\xe3\x49\xf1\x84\x5b\x15\x62\x2e\xd1\x02\x15\x87\x2a\x68\x3a\xac\x14\xe3\xd4\xc8\x13\x2e\x28\xb0\x06\xa0\x9a\xa2\xfc\xa1\x91\x3d\x5a\x58\xf8\xb6\xad\x83\x45\xb9\x13\x95\x55\x30\x0f\x94\x71\x5f\x35\x40\x0f\x74\x69\x8d\x3c\x07\xb0\x82\x12\x48\xa1\x73\x1e\x63\xe5\x5d\xea\x8c\xb6\xe2\x73\x51\xa0\x7c\x55\x36\x41\x3b\x6f\x4f\x65\xb7\xa1\x57\x21\xca\x5c\x2e\x5d\xf8\x2b\xd4\x7c\x07\x4c\xd4\xd8\x4d\xe9\x9f\x47\x74\x42\x01\x88\x10\x25\x74\x42\x07\xc4\xd2\xf0\xf8\xa8\xdd\xbc\x28\x62\x13\xba\xce\xb0\xe4\xfd\xec\x3a\xc3\x92\xd9\xa4\x96\xf2\x6a\x7c\xee\x54\x41\x5e\x6d\xea\x3f\xfa\x64\xeb\x6f\x04\x9d\x99\x59\x69\x71\x27\xd1\x6a\xaa\x04\xaf\xc6\xd7\x38\xb2\xe0\x5f\x3c\x97\x05\xff\xf2\xb1\x53\xdf\x77\x75\x54\x1d\x25\x76\x17\x59\x07\x61\x60\xe2\x3a\xee\xd9\x40\x4a\xe4\x20\x04\x4a\xde\xae\x8e\x9a\xa7\xe4\xed\xa2\xa8\x7b\xa0\xe8\xec\xea\x28\x37\x8a\xce\xae\x8e\xd2\x1f\xe0\xf5\x7a\x83\x3a\xd9\xd4\x1d\xa5\x4f\xc1\xd6\xd5\x79\x93\x87\xe0\x5f\x1b\x0a\x80\xac\x3a\x6a\x9e\xe2\xaa\xab\x13\xd4\x18\x40\xa0\x3a\x6a\x7e\xa0\x4c\x3b\x6a\x7e\x08\xe6\xf4\x20\x09\xc1\x9c\x24\x09\x01\x8d\x30\x01\x94\x0d\x5d\x03\x55\x4e\x71\xce\x35\x50\xe5\x13\xe0\xc8\x40\x95\x53\x2d\x73\x0d\x34\xd1\x04\xad\x31\x50\xde\x13\xb4\xc6\x40\x79\x53\x2d\x73\x8d\x1f\x9d\xbd\x17\x66\x16\xe2\xca\x85\x3b\x75\x64\x26\x5a\x7e\xea\xc8\x4c\xb4\xfc\x04\x6a\x3a\x08\x39\x4c\x1d\x4c\x89\x2a\x9f\x3a\x98\x92\x65\xdb\x2c\xc2\x58\x19\x2d\x30\x56\x9e\xda\x16\x28\x57\xb9\x06\x4a\x9f\x72\x95\x6b\xe0\xd9\x4c\xc0\x05\xe3\xaa\x45\x2f\x88\x93\xd2\x92\x4b\x7b\xf4\x94\x7a\x5c\x13\x35\x3f\x49\xef\xa7\xac\x7a\x98\xa8\xc8\xc9\xc7\x31\x75\x88\x24\xcb\xa1\x09\x3e\x70\xb2\x80\x9d\xa4\x95\x6b\x3f\x9d\xe2\x87\x6b\xb2\xe1\x45\xf1\xc3\x35\x51\xf3\x73\x0b\x2b\xc5\x73\x3a\x44\x52\xa2\xa6\xbe\xc0\x44\xcd\x53\xd2\x70\x4d\x16\x71\x94\x34\x5c\x53\xf2\x44\x25\x6b\x77\x9d\x92\x86\x6b\xb2\xf1\x48\x49\xc3\x35\xf9\xe0\x28\x69\xb8\xb4\xd7\x4e\x11\xc3\x35\x97\xfe\x03\x63\x85\xe9\xa0\x88\xe1\xd2\xce\xfb\xc4\x2e\x4f\x4c\xc7\x12\xc2\x0b\x45\xbb\x40\x55\x2d\x8c\xc5\xc2\x93\xa2\x00\x7b\x58\x9c\xd5\xbd\x30\x1d\x8b\xb3\xba\x29\xb2\x1e\x96\x50\x47\xf8\xbe\x4b\xd0\x22\xa2\xea\x4b\xd0\x22\x3e\xcd\x25\xc0\x10\x26\x67\x09\x30\x84\xc9\x59\x02\x0c\x31\x0f\x4b\x80\xa1\x2c\x0a\x00\x86\x78\xe5\x57\xd6\x71\x93\x2e\xb3\xc5\x7b\xb6\x30\x40\x54\x7b\x5b\x0b\x73\xbb\xaa\x90\x53\xf4\x09\x74\x63\xf1\x11\x2f\x2a\xa4\x50\x80\x3d\x50\xff\x6c\x2d\x3e\x69\xea\x98\xad\x65\x6a\xf1\x1c\xa6\x6a\x01\x6d\x58\x98\xaa\x05\xb4\x61\x49\x82\x00\x16\xb4\xdd\x4d\x45\xb0\xb5\x31\x5c\x0b\xe0\xc1\xc6\x54\x2d\x2a\x73\x6c\xc9\x93\xca\x1c\x5a\xae\x53\x1f\x6c\x6d\x0c\xd7\x02\x33\xaa\x8d\xf1\x65\x3a\x9d\x91\x3b\x4d\xa7\x33\x42\x1d\x5c\x21\xe5\xad\x02\x85\xb7\xd6\xc6\x33\x5d\x20\x02\xf7\x80\x3a\xfe\xd8\x46\x95\x53\x6a\x6b\x69\x61\xbf\x40\x04\x6e\x7c\x74\x0a\x6f\xad\x8d\x31\xa4\x48\xd6\xd2\x76\xf7\xe6\x7d\xd9\x18\xc3\x8d\x22\xda\x18\xc3\xad\xf3\x26\x1d\xf0\x15\x28\xb2\xb4\x8c\x95\x13\x45\x96\x96\x11\x1d\xa7\xc8\xd2\xa2\xae\x7a\xd8\x49\xe7\x38\xd2\x27\x30\x2e\xc3\x88\x6e\x01\x94\x48\x0a\xd8\x82\x1d\x61\x44\xb7\x40\x3a\x18\xd1\x2d\x90\x4e\x83\x02\x8a\xdd\x88\x80\xab\x36\x0d\xc5\xa7\x82\x6a\xd3\x18\x6b\x2c\x55\x87\x31\xcc\xad\x6a\xb0\x50\x52\x2a\xa8\x5e\x8a\xa1\x89\x54\x2f\x85\x22\x52\x61\x6f\x9d\x7a\x48\x2f\xf8\xd3\x87\xf8\xb4\xea\x89\x1c\x54\xb9\x6a\x86\x1c\x56\x63\xaa\x19\x42\x69\xa8\xa0\x9a\x21\xe7\x63\xb4\xdf\x55\xc9\x2a\x27\x42\xf1\xf2\xb0\x4d\x08\x21\x08\xe0\x86\x1f\x94\x9b\xca\x7b\x50\x51\x2a\xa8\xdc\xc6\x21\x7a\xa5\x6a\x18\x87\xe5\x9e\xaa\x61\x68\x49\xae\x6a\x18\x87\x78\xaa\xea\x58\x68\xd7\xda\x1e\x21\x84\x26\x2d\xe8\x11\xbd\x32\x5e\x89\x83\xff\xa0\xda\x03\x87\x45\x9c\x70\xfb\xda\x8b\x36\x54\xf9\x65\x0b\xcf\x98\x3e\xed\x45\x1b\xd3\x77\x11\x92\xf1\xa1\x52\x92\x3c\x08\x30\x7e\xb1\xee\x02\x8c\x5f\xac\xbb\x09\x3d\xc4\x2b\x21\x58\xe8\xc5\x2e\x0b\x16\x7a\xb1\xcb\xe0\xa8\xf6\x83\xd5\x04\x47\xb5\x1f\xd4\x3c\x48\x9f\xfd\xa0\x92\x3f\xf1\x3b\x6c\x75\x7c\x82\x74\x50\xa6\x9f\x20\x1d\x5e\x90\x43\x46\x82\xb6\x36\x05\x62\xd1\x66\xa6\x40\x2c\x0f\x7e\x80\x40\x1e\x21\xd2\xe7\x15\x30\x66\xd1\x02\x18\x83\x2a\x10\xc8\x23\x60\xf9\x05\xf2\x08\x28\x86\xcb\x0e\x7a\x20\x00\x71\x1f\x9d\x57\xd8\x68\xd1\x0b\xca\xf4\x06\x41\x68\x78\x2e\x08\x42\x53\x69\x71\x26\x21\x06\x4f\x70\x89\xc0\x4c\x0b\xda\x10\x30\x71\x82\x21\x68\xa9\x7b\x49\x58\x0b\x28\x0d\x41\x0d\x02\x46\x4d\x50\x83\x30\xf5\x9c\xa0\x37\x99\x16\xa3\xc5\xa8\x09\x5c\x40\xdd\xea\x70\x39\x54\x21\x60\x9c\xae\xce\x2b\x64\x25\x73\x3f\xcf\x0f\x84\x1e\x99\xeb\x14\x0c\x0a\xca\x40\x8f\x64\x71\xdc\xcf\x73\x00\xe9\x93\xb9\x8d\x98\x2a\x65\x92\x53\x8d\x3a\x5c\x9d\xe0\x87\x39\x52\x56\x74\xc4\xac\x5c\x72\x5d\x22\x66\xe5\xea\xd4\x3c\x42\x77\x97\x9c\x15\x6d\x4a\x2a\xc3\x37\x62\x64\x2e\x20\x2b\x8a\xfb\x04\xe5\xe6\x52\x1d\x3a\x28\x37\x37\x62\x80\x94\x9b\x1b\x31\x40\xca\xbf\x8d\x04\xac\x94\xbc\x1a\x31\x40\x97\xbc\x0d\xea\x41\x07\x25\xa8\x6a\xe5\xab\x04\x55\xad\x7c\x95\xa0\xaa\x95\xef\x15\x60\x08\x53\xa5\x04\x55\xca\x00\x45\x25\xa8\x46\xdf\x2a\x8e\x4a\x50\x65\xfb\x32\x2a\x41\x35\xfa\xdb\x1a\x95\x76\xca\xf6\x65\x54\x6a\x29\xeb\xe7\xf8\x00\xd9\x61\xfb\x32\x2a\x2d\x33\x65\xfe\x23\x2d\x33\x79\xa0\x2b\x3e\x02\x95\xf8\xaa\x31\x3e\x19\xd0\x8c\xef\xbb\x44\xa5\x11\xa6\x06\x05\x52\x05\xd9\xb0\x8c\x4a\xe4\xa3\xc6\x74\x7c\x38\xa4\x82\x6d\xc8\xa8\x44\xb7\xe4\x06\x28\x3e\xcc\x7b\x32\x28\x80\x12\xa0\xfa\x4d\x54\x1e\x5a\x3a\x50\x20\xbf\x3f\xb9\x71\x8a\xca\xe1\x62\x03\x31\x2a\x87\x2b\x6b\xb4\xe4\x15\xe5\xf4\x83\xc0\x45\x54\x9a\x4f\x2e\x3c\x46\x9a\x0f\x05\xa0\xa3\x92\x69\x72\x83\x00\xc9\x34\xd9\x6d\x53\x7c\x98\x30\x4a\xda\x44\x25\xbe\x64\xb7\x46\x91\x14\x92\x9d\xdd\x1a\x45\xb2\x31\x76\x76\x65\x13\xc9\xc6\xd8\x5e\xc8\xf9\xd7\x91\x2c\x87\x9d\xdd\x36\x45\xb2\x1c\x36\xc5\x68\x22\x59\x07\x9b\x4d\xbb\x18\xc8\xe6\x2c\x0f\x14\x74\xa6\x9d\x5b\xaa\xc8\xde\xfe\x2e\x01\x7a\x08\x9e\x7a\xc9\x91\xfd\xfb\x5d\x22\xd4\x1b\xff\x25\xb5\x00\x5d\x24\x9e\x13\x1c\xa4\x41\x41\x20\x0f\x47\x2b\x45\xf6\xa9\x77\xd1\x68\x05\xd6\xe8\x3c\xf7\x09\xd6\x48\xb4\x04\xd6\x60\x44\xa4\xf5\x95\x09\xbd\x29\x78\x46\xa3\xc5\x88\x36\x14\xf8\x88\x8b\xaf\x2c\x62\x20\xd1\x8d\x0d\xb6\xc8\xb6\xe7\x66\x83\x2d\xb2\xed\xb9\xcb\x81\x17\x3e\xf7\xc2\xc7\xc1\xb6\xe7\x2e\x7c\x1c\x41\x67\xcc\x05\xa8\x93\x32\x56\x23\xd4\x49\x19\xab\x11\xe9\x92\x32\x56\x7d\x11\x1e\xd9\x24\xdc\x35\x31\x06\x52\xc6\x6a\x62\x56\x48\x19\xa3\xee\x71\x64\x93\x70\xb3\x31\x17\xc3\x11\xac\x43\x2d\xc1\x3a\xe0\x8c\xcf\xbd\xfa\x02\x36\xb2\xe1\xb5\xab\x47\xc7\x63\x04\xd9\x57\x3d\xc1\x2a\x46\xf2\xc3\xab\x2f\x60\x23\xdb\x58\x9b\xcd\xb7\xc8\xb6\xd2\xa6\xa4\x4d\x64\x5b\x69\x53\x95\x38\x46\xf2\xae\xa9\x35\x1c\x23\x9f\x74\xf5\xec\x88\x18\x79\x07\xa9\x35\x1c\xd9\x56\xda\xd5\xa0\x47\x76\x73\x35\x38\x23\xbf\xb8\xa2\x42\x22\x59\xc3\x94\xb4\x89\x91\xcc\xe0\x16\xa0\x5e\x75\x16\x5e\xa4\xd5\x68\x41\x8f\xb7\xae\x21\x17\xb6\x9c\x76\xcb\x70\x46\xc6\x6d\x73\x6c\x5d\x8c\x9c\x42\x43\x11\x9b\x18\x9b\x40\x1e\x50\xe7\x8d\x64\x83\x2d\x46\x72\x65\x9b\xa4\x84\x0a\x69\x7c\x71\x91\x5c\xd9\xe6\x5b\xef\x31\xa2\x50\xda\xe4\x3f\x0c\x49\x93\x94\x86\x4e\xcd\xa3\x17\x12\x5b\xdb\x62\xec\xa4\x9d\x36\xde\xc1\x38\x05\xeb\x80\x97\x29\x58\x87\xcf\x7b\x14\xc0\xe5\x22\x09\x01\x5c\x2e\x14\x30\x32\x84\x46\x62\xdc\x3a\x0b\x0f\xce\x00\xaa\x74\x94\x70\x44\x49\x11\x28\x89\x91\xb7\xae\x47\x78\xc1\xe4\xf4\x84\x5c\x04\xd6\xc8\xdc\x29\x40\x06\x6f\x56\x24\x91\xaf\x57\x78\x11\x0a\xc2\xb7\x2f\x63\x02\x41\xda\x7d\xe5\x1b\x13\x06\xa1\xbb\x5b\x10\x13\xef\x59\xf7\x4d\xde\x98\x70\x35\xba\x6f\x9a\xc7\x14\x74\x8c\xdd\xa1\x05\xd7\x6e\xfa\x63\xc2\x2d\xe8\x6e\xec\x63\x42\x2f\x75\xbe\xbf\x84\x5e\xea\x97\x3e\x8b\x50\x10\x3c\x57\x74\x00\xdd\x8f\x54\x72\x22\x59\x7c\xb8\x8f\x10\x13\x2f\xcf\x40\x81\x25\xfc\x87\x91\x21\xae\x53\xec\x2a\xc4\x75\x8a\x5d\x85\xb8\x4e\x8e\x6b\x0c\x41\x27\xc7\x75\xfa\x5c\x02\x33\x24\x5a\xdc\x39\xa0\xb0\x74\xc6\x9c\x4f\x74\xda\x02\x2c\x40\x6f\x0b\xb0\x80\x70\xc9\x56\x1d\x1b\xe1\xa2\x42\x86\xe9\x3f\xc0\x0c\x6e\xeb\x63\x42\x85\x0c\x6c\x1a\x5b\x4e\x7b\x1c\x38\x23\x9b\x73\x62\xb7\x12\x1e\xe6\x0c\xf4\x89\x87\x39\x3d\xf1\x25\x66\xd4\xc4\xc4\x66\xe7\x47\x10\x05\xa7\x97\x01\x48\x4c\x5f\x05\xc4\x2c\x70\x01\x76\x99\x4d\xa6\x3d\x51\xc9\x19\xf3\x30\xb1\xc4\x99\x04\x7b\x4a\xbe\xc4\xcc\x81\x54\x94\x7c\x89\xb9\xea\x74\x38\x7f\x75\xd9\x8e\xda\x13\x9b\xcd\x76\xd4\x9e\x5e\xa6\x3e\x66\x50\x86\x13\x2b\x9d\xf9\x54\x56\x84\x02\xf9\xd3\x4b\x5c\x93\x07\xbd\x50\xb4\x19\xec\xd9\x72\xbf\x38\x66\xfc\xf7\x85\x39\xca\x4b\x49\xfb\x50\xd8\x3a\xe5\x0d\x49\xf0\x51\x51\xba\x25\x66\xf0\x5e\x0b\x13\x9e\xb7\xd2\xfb\x7d\xfe\x32\xbe\xda\xc2\x84\x67\x64\xbd\x50\x1a\x45\x27\xc7\x61\xa6\x8b\x4e\x8e\xf3\x18\x6d\x64\x03\x6a\x2f\x8c\x76\xc1\xd7\xa6\x96\x4a\x2c\x98\xf0\x85\xd1\x2e\x00\x55\x16\x46\x9b\x4d\xa6\xbd\x31\xd3\x6c\x32\x6d\xaa\xa0\xc4\xa2\x73\xcf\x30\xd3\x45\xe7\x9e\x61\xa6\x0b\xc0\x8a\xed\xa0\x92\x58\x00\x48\x6c\xcc\x74\xa9\x3a\xe5\x2d\xd1\x22\x03\xbd\x40\xbd\x2a\xc3\x9e\x3b\x39\xf1\x7b\x7b\x26\x43\x2c\xcc\xd1\xf6\xf4\xbc\xc8\xa6\xd6\xde\x28\xda\xd2\x74\xae\x1b\x7c\x02\x5f\xd8\x0d\x3e\xbb\xf2\xed\x5d\xd6\xe5\x33\x6f\x1e\x0a\xca\x86\x5f\xf0\xc2\xb7\xb2\x37\xbc\x90\xf5\xbd\x31\xda\x1c\xb8\xbf\xf7\x65\xb4\x7c\x01\xf6\x30\x5a\x32\x9f\x0d\xc5\x57\xc8\x7c\x36\xdf\x0c\x8b\x3a\x9f\xde\x78\x27\x2a\xfe\xad\x61\x8a\x2b\xfe\xad\x61\x8a\x75\x7a\xbc\x61\x52\x2b\x92\x37\xcc\x66\x45\xf2\xd6\xe9\x13\x59\x1b\x66\x93\x5d\x9f\x4d\x6d\xea\x58\x75\xb0\x9b\x07\x90\x62\xd5\x81\x69\x18\x43\x76\x6f\xb6\x61\x0c\x2b\x4e\x90\x5d\xfa\x04\xe9\x40\x78\x20\x56\x90\x0e\x27\xd0\x27\xce\xcc\xc1\x34\x56\x1d\x1a\x86\x69\xd4\xc9\xdd\x27\x43\x81\x75\xe9\xc1\x18\x56\xd6\x20\x54\x80\x8e\x95\x42\x0f\xc7\xd3\x55\x63\x45\xdb\x1c\x3c\xef\x6a\x3a\xb2\x0c\x29\x29\x3b\xbd\xc3\x8b\xf2\xd1\x3b\xcf\xf1\xce\x1f\x8c\x61\xc5\x89\x3d\x9e\xef\x11\x1b\xe5\x06\xce\x8f\xb6\xf7\x62\xc3\x8e\x1c\x4f\x05\x89\x0d\xfc\xd5\xc1\xfa\xe9\x24\xe6\x83\x90\x5a\x52\xe2\xfa\xa6\x45\x12\xbd\xc7\x76\x63\xc3\xbf\xbd\x58\xbf\x06\xca\xe9\xa2\xdc\xd8\x1e\xda\x17\xeb\xc7\x86\xd0\xbe\xd8\xbb\xc6\x6b\x7d\xb1\x70\xad\xe9\xc4\xb2\x4e\x8b\x94\x73\x84\xd4\x78\x75\x2f\x16\xae\x81\xbc\xb9\x58\x38\x9d\xa8\x7c\xb1\x69\x6d\x28\x39\x9d\x11\x61\xeb\xef\x82\xde\x54\x72\x3a\x63\xc0\xd6\x5f\xec\x5d\xc3\xd6\x5f\xd4\x7c\x03\x32\x7a\xb1\x7e\x3a\xd3\xf8\x62\xfd\x74\x6e\xf1\xbd\x8c\x8f\x94\xaa\x07\x33\xd6\x74\xba\x18\xaf\x75\xd7\xe9\x62\xd8\xfa\xfe\x79\x2e\x98\xfe\xd3\xb9\x60\x4e\xaf\x2b\x1d\x1d\x83\xd7\x95\x8e\x8e\xc1\xeb\xca\x08\xe7\x05\xe9\xca\x08\xe7\x05\xe9\x91\xa4\x76\xdf\x22\x89\x5d\x79\xde\x98\xc6\xae\x3c\x6f\x4c\x23\xa7\xfc\xda\x83\x31\xe4\x94\x5f\x7b\x30\x86\x9d\x33\x3f\x1e\x8c\x21\x67\xf7\xda\x83\xb1\x60\xc3\xcb\x1e\x83\x33\x4e\xe4\x78\x58\xd2\x71\xea\xae\x3d\x98\xbf\xce\xe9\x19\x0f\xe6\x8f\xe3\x73\x8d\x63\x0d\x62\x27\xab\x96\x1a\xcc\x91\xa3\x6e\x2d\x3c\x50\x27\xe7\x35\x60\x1a\x39\xe0\xd5\xc8\x10\x88\x9d\xc4\xc8\x80\xf9\xe3\xd8\x56\x0b\xa8\xba\x4e\xfa\x61\xc0\x18\x72\x38\xaa\x85\x81\x3c\x39\x11\x27\x60\x0c\x39\xc8\xd4\xa8\x90\x1c\x39\xc8\xd4\x82\x46\x4b\xda\x5b\xc0\xbb\x1e\xa4\xa1\x05\x8c\xe1\x78\x78\x0e\x63\xc8\x31\x9c\x16\x59\x96\x0e\xb2\xcc\x23\xc6\x70\x90\x65\x4e\x3d\x91\xc8\xd1\x97\x46\x95\x90\xc8\xa9\x95\x16\x31\x7f\xa3\x90\xf9\x8c\xf9\x1b\x9f\x59\xd8\x3e\x86\xa1\x5c\x67\x8c\xda\xd0\x31\x53\x18\xb5\xa1\x63\xa6\x06\x14\xc8\x9c\x8d\x98\xb8\x41\xe6\x6c\xc4\xc4\x0d\x32\x60\x23\xef\x3c\xe7\x1c\x5a\xf4\xf4\xae\xc8\xc9\x86\x16\x31\x7f\x83\x53\x30\x22\xe6\x6f\x90\x4c\x4a\x0d\x8f\x38\x90\x35\x35\x3c\xe2\x20\x2d\x33\x61\xfe\x86\x8e\x6f\xc2\xfc\x0d\x23\x33\xd8\xa1\xf3\x71\xe8\xf8\xa6\x07\x79\x92\x96\x99\x1c\x02\x15\xd9\x6e\x33\x85\x2a\x38\xaf\xd0\x52\x40\x4a\x24\x54\x26\x8c\xe8\x60\x36\x93\xa4\x4b\x42\x25\xb5\x3f\xe2\x20\xc1\x31\x61\x44\x81\x81\x87\xf0\x3c\x21\x8c\xe3\xa9\xc1\x1f\x57\xfd\xdd\xf8\x72\x75\x71\x35\xbc\xaf\x1e\xae\xc6\xf7\xd5\xcb\xd5\xf4\xba\x8a\x6c\x09\x26\x7d\xb9\x1a\xb8\x5a\xde\x57\x23\x57\xeb\xfb\x6a\xe3\x6a\x7b\x5f\x15\xbf\xfd\x7d\x95\xb1\xf9\xca\xf6\xcb\x55\xe3\xea\x7c\x5d\xdd\xe2\x6c\x7d\xb9\xfa\x03\xb5\x0f\x96\x3d\x84\x27\xbc\xc5\x63\xef\xab\x12\xc4\x79\x5d\xfd\x1c\xc6\x7d\x5f\x65\x18\xe7\x79\x5f\x65\x18\x27\xbc\xaf\x6e\xae\xc6\x2f\x57\xb9\x22\x91\xc7\x17\x57\x27\xbf\xaf\xc2\xd5\x29\xaf\xab\xe2\xea\xd4\xf7\x55\x71\xd5\xde\x57\xc5\x55\x7f\x5f\x45\xb8\x67\xbc\xaf\x8a\xb3\xf9\xe5\x2a\x57\x24\xee\xf4\x7a\xed\xce\x7e\x5f\xd5\x08\xec\x7d\x55\x3d\x9c\xf7\x55\x8d\xeb\xbe\xae\xea\xb5\xbb\xcf\xfb\x2a\x2f\xd8\x0d\xef\xab\xc8\xe0\xc6\xf7\x55\x46\x7b\xd3\xfb\x2a\x73\x70\xf3\x97\xab\x5c\x91\x5c\xf3\x6b\x5c\xb7\xbe\xaf\x32\xae\xdb\xde\x57\xd5\x43\x7f\x5f\x65\x5c\x77\xbc\xae\x7e\x8e\x60\xbe\xaf\x6a\x04\xeb\x7d\x55\x3c\xec\xf7\x55\x8d\xcb\xbe\x5c\xe5\x8a\xe4\x5a\xde\x23\xb8\xef\xab\xce\xd5\x24\x07\x39\xe1\x73\xcf\x47\xe7\xec\xf9\x13\x13\x28\x54\xf2\x4c\xdf\x38\x01\x23\x25\xbc\xe5\x99\xb9\x13\x6f\x59\x67\x52\x92\x27\x14\x75\x9a\x64\xc2\x77\xd6\x79\x8e\x09\xdf\x59\xe7\x39\x26\x4f\x9b\x8b\x6c\x9e\x5b\x22\xe0\xa5\x53\x13\x13\x7e\xb5\x4e\x4d\xa4\x3a\x78\xd4\xa9\x89\x14\xf9\x89\x13\xf3\x99\xf1\xb2\x27\xa0\x94\x8c\x97\x3d\x17\xb0\x09\x42\x08\x3a\x39\x30\x17\xe8\x6d\x9d\x66\x07\x05\xb2\xfe\xa9\xe4\x1d\x75\x5a\x1f\x95\x75\xe2\x24\xb7\x3e\xe3\x73\x4f\x14\x3c\xb5\xbb\x23\x1b\xd6\x96\xf1\xb9\x75\x14\x5c\xc6\xcb\xd6\x51\x70\x99\xe0\x94\x0e\x6a\xcb\xf8\xdc\x3a\xa8\x2d\xfb\x7e\x4f\x5c\x80\xde\x32\xce\xa5\x8e\x5f\xcb\x38\x97\x9f\x07\xa0\xe1\x81\xb3\xf1\x6c\x05\x0f\x7c\x65\xe1\x11\xa0\xc7\x19\x9f\x05\x0f\x5c\xc7\x8c\x51\x83\x3b\xae\xaa\x63\xe2\x1a\x2d\xfa\xc4\xc1\xd2\x51\x62\x05\xc7\x73\x55\x1d\x13\x07\x2f\x38\x35\x05\xc7\x53\xc7\x8c\x29\x78\xba\x98\x87\x82\x3f\xae\x83\xbe\x0a\x52\x5a\x80\x98\x0a\x52\x5a\x80\x98\x14\x4a\x5d\x9d\xe7\xf0\xd5\x57\xe7\xb9\x09\xd7\x53\x78\x04\xfa\x5c\xc2\x23\xd0\x27\x28\x91\x82\x43\xbe\x36\x99\xf6\x98\xcf\x75\x74\x88\x1b\x14\x0e\x99\xfd\x18\x45\xce\x8d\xb2\x9a\xf4\x1f\xd9\xfb\x38\x9e\xeb\x13\x65\xa0\x3b\x85\x32\x70\xae\x39\xf5\xc8\xa8\x4a\x13\x39\x23\xc8\x2a\xdf\x15\x67\x04\x59\xc5\xb1\x66\x93\xd8\x2a\xef\x3c\x9b\xc4\x46\x1d\x9a\xc8\xa9\x39\x56\x3d\x71\x34\xb2\x65\x6c\x95\xf1\x71\x6a\x8e\x79\x1d\x9a\xef\x9a\x28\x0e\xaa\xb1\x8a\x07\xbe\x39\xec\x94\xc2\x33\x91\x13\x59\xac\xe1\x73\x73\x22\x8b\xb5\x08\x71\x90\x5e\xcd\xb3\x1d\x22\xa7\xa0\x58\x63\xe8\xec\x34\x5b\xc3\xe7\xde\x3a\xe3\x0c\xdf\x92\x53\x49\xac\xf1\x82\xb0\xef\x6c\x0d\x0f\x9c\x73\x41\xac\xe1\x57\x73\x2e\x88\x51\xa2\x26\x72\xa2\x87\x91\x92\x15\xcd\x3f\xfe\x48\x69\xf9\x48\x55\xea\x87\x53\x89\xa3\xf9\x0e\xf5\xdf\x5b\xf3\xd5\x5a\xaf\xd6\x7e\xb5\xec\xd5\x3a\xaf\xd6\xfd\xda\xf2\x35\xcc\xdf\x5b\xe1\xd5\x8a\xaf\x56\x7a\xb5\xf2\xab\x55\x5e\xad\xfa\x6a\xb5\x57\xeb\x35\xbe\xfd\x1a\xdf\x7e\x8d\x6f\xbf\xc6\xb7\x5f\xe3\xdb\xaf\xf1\xed\xd7\xf8\xf6\x6b\x7c\xf6\x1a\x9f\xbd\xc6\x67\x5f\xc7\x47\xc9\xd5\x7b\x1d\xb2\x1f\x29\xb9\x7a\xc9\xc6\x8e\xc7\x55\xf2\xbd\xbc\x4b\xc7\xd5\xc4\x05\x66\x1d\x8f\x87\xcd\xee\x25\xc8\x44\x91\xd5\xbf\xf5\x52\x19\x91\x6f\x3c\x47\x0a\xa2\x3e\x24\xc6\x46\x0a\xa2\x3e\x91\x95\x02\x65\x4e\xe3\x83\x02\xa3\xcc\x69\x7c\x92\xfe\x1b\xb4\xa0\xe0\x4a\x23\x3e\x7c\xa8\x94\x39\x8d\x0f\x1b\x74\xc7\x83\x37\x91\x33\x9f\x23\xc5\x44\x63\x08\xf0\xe2\x9b\x69\x31\x88\x82\x87\x4b\x63\x70\xdc\x44\xa4\xd0\x68\x0c\x51\xff\x15\x5a\x6e\xb2\x8f\xab\x97\x18\x58\xcd\x9d\x45\x9f\x06\x3d\x5f\x0d\xf8\x16\x86\xb7\x1a\x2d\x3d\xd7\x69\x5d\x5a\x3a\x96\x0e\x7a\x8b\x63\xe9\x30\x47\x6c\xd6\xc7\x18\xd5\xcb\xa1\xe5\x3e\x3e\xdb\xf3\x91\xca\x8a\x91\xca\x98\x31\x62\xaa\xa8\x8c\x19\xa9\x7b\x18\xa9\x85\x19\xa9\x66\x18\xa9\x85\x19\xe3\xa4\x17\x83\x33\xcc\x26\xb5\x30\xa3\xd6\x14\x54\x1e\x8c\x14\x1f\x8b\x54\x1e\x8c\x05\x95\xc5\x96\x78\xe4\x44\xcc\xc8\x96\x78\xac\xac\x37\xd8\x12\x8f\x9c\x73\x19\xd9\x12\x8f\x95\x35\x28\xd5\xf7\x92\xde\x2c\x36\xc8\x13\x80\xf3\x78\x1d\x25\x9c\x38\xab\x29\xb2\x45\x9d\x38\x0a\x24\xb2\x45\x9d\x48\x0a\x8e\x94\xc7\x4a\x24\x05\x47\x4a\x60\x5d\x4a\x99\x26\xb6\x7e\xff\xee\x9c\xb8\x1b\x94\xd8\x02\xfe\x72\xb5\x73\x35\xbe\xaf\x4e\xae\xa6\x2f\x57\xb9\x92\xff\x76\x65\xc6\xbf\x3f\x5d\xbe\x5c\xe5\x8a\x5c\xbb\xfa\xc5\xb5\x4b\xd4\x40\xfa\x72\x55\x7d\xf6\xf7\xd5\xcb\xd5\xf1\xba\xfa\xe1\xb2\x7e\x4f\xb5\x27\xf6\xaf\xbf\x3c\xa0\xe1\xae\xf7\x55\x0d\x6c\xbf\xaf\x6e\xae\xda\xfb\xaa\x71\xf5\xbc\xaf\x8a\xe9\xfb\xe5\xaa\x5f\x09\x12\x77\xfb\xe2\x21\xa6\x27\x84\xf7\x55\x04\x11\xe2\xfb\xaa\x7a\x48\xef\xab\x08\x22\xe4\xd7\x55\xf7\xdd\x13\x25\x9c\xbe\x5c\x45\xec\xa1\xbe\xaf\x32\xda\xd0\xde\x57\x19\x6d\xe8\x5f\xae\x72\x45\x22\xef\x6f\x5e\xe7\xfb\xaa\xb8\x5a\xaf\xab\x92\x76\xd8\xef\xab\x92\x81\xbd\xaf\x8a\xab\xf3\xbe\x2a\xae\xee\x97\xab\x7e\x25\x4a\xae\xe3\x25\xd7\x18\xde\x57\xe1\x35\xc6\xf7\x55\xf5\x90\xde\x57\x19\x41\xcc\xaf\xab\xbe\xe8\x4e\x14\xa7\xfa\x72\x95\x71\xc5\xfa\xbe\x2a\x1e\xda\xfb\x2a\xe3\x8a\xfd\x7d\x95\x71\xc5\xf1\xe5\x2a\x57\x24\xd7\xf9\xe6\x6a\xbd\xae\x7e\xd2\xdf\x5f\xae\x72\x45\x32\x5d\xef\xf1\x9f\xf7\x55\xf5\x79\x5f\x57\xd5\x67\x7a\xde\x57\x19\x53\x0a\xef\xab\x8c\x29\xc5\xf7\x55\xc6\x94\xd2\xfb\x2a\xdf\x4b\xca\x5f\xae\x72\xa5\xfc\xed\xca\x87\xd2\xd0\x0c\xa6\xfa\xbe\xca\x08\x52\x7b\x5f\x65\x04\xa9\xbf\xae\x7e\x8e\x60\xbc\xaf\xaa\xdf\xf9\xbe\xaa\x11\xac\xf7\x55\x8d\x60\xbf\xaf\x6a\x04\xf6\xba\xba\x79\x33\xd2\xf9\x72\x95\x2b\x92\xeb\x7e\xbd\x99\xf9\x79\x5f\x65\x5c\x39\xbc\xaf\x22\x99\x1c\xdf\x57\x19\x6d\x4e\xaf\xab\x1a\x6d\xce\xef\xab\xa2\x56\xde\x57\x19\x6d\xae\xef\xab\x8c\x36\xb7\xf7\x55\x46\x9b\xfb\x97\xab\x5c\x91\x5c\xed\x3d\x82\xf9\xbe\x2a\x5e\xd7\xeb\xea\x27\x57\xfb\xcb\x55\xae\x48\xa6\xe7\xdd\xe7\x79\x5f\x55\x9f\xf7\x75\x55\xe3\x2f\xcf\xfb\x2a\x94\x4a\x78\x5f\x65\xfc\x25\xbe\xaf\x32\xd2\x92\xbe\x5c\xe5\x8a\x64\x7a\x5f\x33\x58\xca\xfb\x2a\xbc\x96\xfa\xbe\x0a\xaf\xa5\xbd\xae\x7e\xf2\xda\xdf\x57\x91\x7f\x19\x5f\xae\x72\x05\x99\x86\xe7\x4d\x7f\xbd\xaf\x8a\xfe\x7e\x5f\x55\x0f\xf6\xbe\x2a\xae\xce\xeb\xea\xa7\xac\xee\xfb\x2a\xb2\xaa\xcf\xfb\x2a\xbc\xd6\xf0\xe5\x2a\x57\x90\x69\x08\x2f\x5e\x6b\x7a\x5f\x85\xd7\x9a\xdf\x57\xe1\xaa\x96\xd7\xd5\x4f\xfa\xf5\x7d\x55\xf4\xdb\x97\xab\x5c\x41\xa6\x21\xbe\xe9\x8f\xf7\x55\xd1\x9f\xef\xab\xa2\xbf\x5e\x57\x35\x57\x75\xbf\xaf\xaa\x5f\x7b\x5f\xfd\x41\x79\xb4\x44\xd5\xb8\x2f\x0f\x68\x18\xf7\xcb\xd5\x8f\x2b\xcd\x33\xc9\xf3\x71\x4f\x2f\x35\xcf\x3d\xce\xc7\x33\x66\x52\xf3\x24\x84\x7c\xdc\x03\x4e\xcd\x63\xec\x99\x1c\xe2\xd4\x3c\xff\x29\x9f\xa8\x3b\xaf\xb7\x3c\x60\x91\x9a\xfb\xd8\x19\xb4\x6e\x6a\x1e\x9e\xc9\xc7\xa1\xec\xa9\x2d\x28\x64\xfd\x37\xbd\xe5\xa1\xa9\xc4\xee\x54\x06\x83\x9b\x9a\xfb\x99\xf9\x54\x28\x6c\xfa\x6c\xf0\xb9\xe9\xb3\xc1\xcb\xa6\xcf\x0e\xf5\x0d\xd7\x5d\x7d\x76\x5a\x9d\xd6\xa2\xc5\x73\x06\x85\xc1\x7f\x06\x85\x01\x75\x0f\x15\xe5\x23\x29\x79\xa8\x28\x9f\xa9\x3b\x19\xfb\x82\x82\x31\x76\x5e\x9f\x76\xe8\xc5\x83\x43\xa9\x1d\x7a\xf1\xf5\x53\x6a\x07\x3e\x37\x23\x3a\xc8\xd3\xd4\xa2\x4f\x4f\xb9\x48\xed\xd2\x8b\xe7\xf7\xa7\x76\xe9\xe5\x32\xbe\x4b\x2f\x17\x3e\x3d\x3c\x99\xaf\xc3\x79\x12\x7b\x71\xf9\x7a\xa9\xbb\xd4\xdd\xb7\xce\xd7\x03\x47\xa9\xbb\x4f\x9d\x39\x96\x36\x75\xf7\xa5\x33\xc7\xd2\xa6\xee\x7e\x74\xbe\x1e\x58\x49\xfd\xa1\x4f\xdf\xb2\x4f\x3d\xd0\xa7\x63\xa8\x53\x77\x47\x2f\x5f\xaf\x49\x94\xba\x3b\x6d\xf9\x36\xdd\x39\x68\x41\xc1\x1d\xb5\x7c\x1b\x7d\xba\xd3\x95\x29\xc3\x95\x7a\xa4\x4f\xe6\xa8\x47\xf8\x64\x8e\x7a\x84\x17\x2f\x87\x91\x7a\x84\x5e\x67\x44\xee\xf8\xe4\x3b\xd4\x0b\x7c\x0e\xf5\x02\x2f\x43\xbd\xc0\x0b\xb3\xd9\x23\xbc\x0c\xf5\xe9\x33\xc6\xc9\xb7\xa9\x27\x28\xf8\x6e\x58\xea\x09\x0a\x06\x85\x44\x2f\x5e\x39\x26\x01\x99\xcb\xd7\x18\x91\x9b\xf0\x7c\x99\xbf\x9e\x19\xc3\xe5\xb9\x8c\xac\x2f\x72\xc9\xc8\xfa\x22\xc1\xcc\xf8\x2e\x7c\x66\xa8\x5f\xfa\x74\x43\x59\xc0\x50\xa7\xee\x06\xb2\x3c\x0f\xe3\x73\xc3\x58\x9e\x07\xc9\xbb\x51\x2c\xcf\xc3\xf8\xdc\x18\x16\x4a\x82\xa5\xee\xc6\xad\xb0\x32\x4f\xdd\x0d\x55\x79\x7c\x45\x98\xba\x1b\x9d\xc2\x31\x11\xa9\x17\xee\xe4\x4b\xed\xae\xa6\xcb\xa3\x79\x77\x05\x5b\x9e\x8c\x94\x2a\xcf\xe9\x2d\x70\x85\x5a\xc0\x65\xa7\xee\x8a\xb4\x80\xcb\x4e\xbd\x32\x86\xaa\x3b\xe1\xac\x31\x5a\x57\x79\x85\xdd\xda\xd4\x5d\xd5\x95\xa7\xeb\x4e\x78\xd1\xbc\x57\x78\xd1\x4c\x37\x28\x2c\xee\x6c\x50\x40\x61\xb2\x07\x5b\x48\x8e\x4f\xbd\x21\xa5\xad\x3b\xa1\xb7\x19\x43\x83\x9e\xe6\xd6\x23\x0f\xe5\xd1\x6c\x76\xa4\x64\xf4\xe2\xf1\xb5\x42\x85\xb0\xd4\x3b\x92\x38\xd0\xeb\x48\xe2\xc0\x67\x47\x12\x97\x59\xe9\xf0\x79\x7f\x70\xaa\x7e\xea\x1e\xa4\x2b\xe1\xe1\xd3\xf4\x4c\x8d\x12\x34\xd1\x9e\xa9\x51\x82\x26\xda\x41\x41\x25\x04\x5e\x09\x07\x05\x15\x60\xe7\xa9\xfb\xe6\x69\x09\x9a\x4c\xdf\x3c\x2d\x1c\x75\x91\xba\x27\x0e\x16\x72\xf8\x53\xf7\xc0\x4a\x21\x4f\x3f\x75\x0f\xac\x94\xa0\xcf\xdd\x03\x2b\x25\x24\xa6\x6f\x72\x67\xe1\xb9\xc9\x9d\x9a\xda\xc9\x9d\x55\xff\x65\x5a\x08\x69\xc2\x59\x83\x97\xc5\x73\x8d\xe7\x16\xcf\x69\xda\x17\xcf\xe9\xe3\x77\xf3\x50\x80\xb9\xa7\xee\xe6\xa1\x04\xbd\x04\x1e\x9e\x29\x61\x40\xcf\xc3\x33\x85\x83\x36\x52\x5f\x48\x70\x30\xa2\x85\x04\xa7\x28\x20\xc1\xa9\x3b\x91\xe0\x14\x05\xf8\x9c\x70\xb6\x91\x12\x1e\x59\xdf\x8c\x1d\xe5\xdd\x37\x63\xd8\xf0\xb9\x19\xc3\x66\x56\x36\xf4\x0e\xa3\xdd\xf4\x79\xb9\xd3\xe8\xe5\xd2\xa7\x9b\x95\x42\xc0\x29\x75\x37\x2b\x85\xe3\x3a\x52\xf7\x20\x4f\x89\x0f\x9c\x79\x90\xa7\x80\x35\x48\xdd\x4d\x4e\x21\xfc\x94\xba\xef\x4e\x14\xb0\x06\xa9\xfb\x36\x68\x89\x01\x0a\xbe\x1f\x59\x08\x38\xa5\xee\x11\xf3\x02\xd6\x20\xf5\x43\x9f\xfa\xa4\x0f\x7d\x66\x7a\x71\x93\x53\x28\x95\x96\xba\xef\xc9\x95\x88\x29\xee\x97\x3e\x0b\x8a\xe1\xd2\x67\x81\xde\x65\x44\x15\xce\x7c\x2f\xad\x70\x00\x71\xea\x6e\x9c\x4a\x6c\xcc\xd8\x65\x7c\x8d\x79\xb8\xf0\xd2\xd4\x0b\xbc\x34\x3d\xc7\xf8\x3a\x7c\x5e\x38\xd3\x5b\x70\xe1\x0c\x55\x00\x1e\xb8\x90\x30\x90\xc6\x03\x67\xa8\xf9\xf1\xd0\x27\xaa\x00\xac\x70\xa1\xe0\x5a\x1a\x0f\x32\xf3\x14\x81\x34\x3c\xe2\x52\x22\x6a\x02\x1c\x71\x21\xcc\x99\xc6\x03\x75\x66\x7a\x3c\x50\xc7\x68\x8f\x00\x75\x83\x7a\x60\xec\x06\xf5\x40\x9f\x28\xfd\x11\xe8\x13\xa5\x3f\x02\x7d\xa2\xf4\x87\x47\x00\x4a\x7a\xf8\xcf\x0d\x5e\xa1\x6c\x5b\x1a\x6e\xf0\x4a\x42\x95\x0f\x5f\x7f\x17\x8e\x3f\x4e\xc3\xd7\xd3\x85\x22\x6e\x69\xb8\x19\x2b\x89\xef\x7d\xf8\xfa\xb9\x70\x58\x48\x1a\xbe\x6e\x2e\x29\xf1\x5c\xa2\x97\x4c\x9f\x99\x3b\x0b\xa3\xcd\xdc\x89\x2a\x1f\x6e\xb8\x0a\xc7\x83\xa4\x91\xe1\xb3\x20\xcf\x0c\x9f\x0e\xfb\x4b\xa0\xa6\x8b\x1f\x8d\xfc\xd1\xaa\xb4\x18\x83\xaf\xb7\x0a\x67\x1c\xa7\x81\x39\x4a\x4d\xd4\x19\x03\xf3\x3e\x32\x63\xf0\x24\xa7\x34\x30\x55\x9c\x6a\x9c\x40\x62\x17\x4e\x35\x4e\xa4\x9b\x94\x34\xe0\xd3\xd7\x39\x25\x4d\xfa\xf4\xf5\x4d\xa1\x14\x5c\x22\xf9\xa4\x24\xcd\x34\x46\xcd\x6b\x18\x7c\x57\x25\x03\xf5\x2e\xc9\x60\x05\xeb\x97\x34\xb5\x8d\x96\xa6\xcf\xd3\x0f\x0b\x15\xdd\xd2\xc0\x8e\x64\x3e\xc6\x81\xad\xc8\x11\xb1\x60\x2b\x72\x64\x1a\xb0\x15\x39\xf2\x1c\xb6\x82\xf3\x47\xd2\xc0\x04\x38\xe4\xe3\xa3\xe5\x13\x96\x33\xaf\x19\x26\x80\x22\x09\x69\x60\x02\x72\x46\x10\x98\x80\x5c\x78\xc9\x31\x01\x59\xd3\x80\x09\xe0\x88\xe3\x04\xb4\xbc\x50\xee\x2d\x0d\x4c\x40\xc6\x73\x1b\x98\x80\xcc\x87\x3a\x3c\xd7\xac\x64\xd4\xf5\xf0\x5c\xb3\x92\x51\xd7\xc3\x41\x2c\x85\x6d\xd2\x34\x06\x5c\xe3\x4f\x8f\x01\xd7\x43\xcf\xc1\xf5\x44\x9e\x03\xae\xf1\xa0\xc7\x84\xb3\x05\x75\x4c\x0e\x05\xe5\x12\x59\x3f\x25\xa3\x92\xc7\x44\x4a\xa8\xe4\x31\xe1\x05\xb5\x3b\x26\xbc\x60\xa5\xc9\x08\x2a\xe0\x4f\x12\x19\x41\x25\xe3\x33\x8f\x89\x94\xf0\xb2\x86\xaf\x56\x0a\xf8\x93\x44\x7e\x50\x29\xa8\xdd\x81\xa9\xa2\x84\x5c\x1a\x98\xaa\x82\xef\x34\x30\x55\x45\x9f\x18\xa6\x8a\x03\x48\xd2\xc0\x54\x95\x04\x2f\x98\xaa\xa2\xd9\xc4\x54\x95\x2c\x7a\x93\x16\xf2\xc4\x54\x51\x12\x22\x0d\x4c\x15\x47\x2a\xa7\x81\xa9\xe2\xa8\x92\x34\x7c\x97\xa1\x14\x7d\x8c\x8b\x31\x54\xee\xc4\x8c\x15\xcc\xed\xc0\x8c\x15\xcd\x1f\x66\xac\xe8\x13\xdb\x50\x98\x7c\x9a\x98\xaa\xc2\xe2\x7d\x60\xaa\x8a\x94\x22\xa6\xaa\x48\x29\x1a\x92\xd0\xd7\x61\x48\x02\xdf\x89\xbc\xa9\x42\x79\xb9\x44\xde\x54\xe1\x60\xe6\x44\x6e\x54\xa9\xb8\x36\xe4\x46\x15\x0e\x20\x49\xe4\x46\x95\x1a\xd4\xe7\xa5\x05\x3d\x8c\x5a\x95\xac\x31\x6a\x1c\x47\x92\x86\xaf\xb1\x4a\x65\x5d\x33\x7c\x8d\x55\xc0\xbb\x24\x32\xac\x4a\x95\x04\x3d\x81\xa6\x54\x7d\x0f\xbe\xfe\x2a\x95\xf5\xe5\xf0\x84\x99\x52\x9b\x7a\xf1\x19\xab\x7a\xcb\x31\x94\x94\xc3\x48\xc3\x13\x63\x0a\xc7\x91\xa4\xe1\x49\x31\xa5\x4a\x66\x87\xf1\x2d\xf5\xc2\xf8\x96\xee\x64\x7c\x1b\x29\x61\x60\xab\x0c\x09\x06\x16\x14\x4b\x1a\x97\x31\xe0\x7d\x8e\xcb\x18\x0e\xf3\x87\x81\xad\x57\x2d\xe7\xa5\xc9\x58\x78\x12\x49\xe1\xe0\x92\x34\x3c\x79\xa4\x34\x99\x0e\xcc\x26\x78\x97\x44\x31\x87\xd2\x3c\xc1\x20\x4d\xcc\x26\xa5\xe7\xd2\xf4\x95\x61\x69\x51\xff\x25\x5a\x46\xcb\x79\x69\xb8\x13\x24\x8f\x94\xc6\x7a\x61\xfa\xae\x4a\x69\x59\xff\x35\x5a\x91\x56\xa7\xd5\x68\x0d\x5a\x93\x96\xcb\xa5\xd5\x1f\x1c\xbb\x91\x26\xb6\x97\x0d\xea\x34\xb1\xbd\x9c\xa1\x92\x66\x60\x08\x28\x37\xaa\x53\x94\xe6\x59\x1f\x69\x06\x86\xd0\x60\x2c\x30\x04\x94\xdb\xc4\x66\x37\x3e\x95\x19\x18\x02\xa1\x83\x19\x18\x02\x0b\xd1\x19\x18\x42\x67\xb0\x81\x21\x60\x9b\x66\x60\x1a\xa6\x28\xf8\xb4\x37\x2c\xce\x8c\xf0\xb9\x79\x2e\xc2\x27\xcb\x4b\xea\x66\x94\xc6\x64\x52\x37\xa3\x70\xa2\x4a\x9a\x11\x5e\x2e\x22\x8b\xd0\xbb\xf0\xe9\x0b\xd8\xd2\x1f\x3d\xb7\x68\xc1\x35\xb6\xbe\x13\x98\x99\x1e\x1b\x2f\x9d\x35\xc1\xf4\x98\x78\xe9\x11\x0a\x1e\x0b\x2f\x3d\x42\xc1\x17\xbe\xa5\xe3\x3f\x4c\x7c\x84\x9e\xd4\xf2\x29\xea\xa8\xa5\xe9\x91\xe5\xd2\x31\x32\x64\x09\x15\x6a\x9b\x24\x4a\x73\x94\x8e\xff\x40\x69\x8e\xd2\x51\x52\x93\x05\x6c\xd7\xfc\xb1\x80\xed\x9a\x07\x16\xb0\x80\x7b\xd2\x64\x01\xdb\x35\x2b\x19\x5e\x9a\x7a\xf1\xd7\xba\xe3\x1b\x4e\xbc\x89\xde\xd5\x0b\x7c\x76\xf5\x02\x9f\x9a\x23\xbc\x09\x0e\x51\x49\xb3\x30\x5a\x3e\xdb\xe9\xd1\xd3\xd2\x97\xee\x84\x97\xa5\xff\xe0\x05\xbf\x91\xa2\x21\xa5\xa3\x14\x29\x1a\x52\x3a\x4a\x71\xb2\x7c\xee\x9a\x5b\x3c\x8d\x6e\x7a\x0e\x5e\x0c\x0a\x15\x5e\x8c\x5e\x58\x30\xf7\x83\x5c\x2a\x72\x39\xc8\x9a\x45\x71\x67\xf5\x30\x59\x14\x8f\x87\xff\x3c\x79\xbc\x70\xc0\x4a\x22\x97\xaa\x8c\xc8\x5b\xc0\x12\x79\x68\x6e\x59\xf8\x0e\x8c\xd3\x64\xe1\x3b\x92\xfe\xa3\x4f\x8c\xd3\xc4\x99\x19\x18\xa7\xe9\xa9\x24\x85\xc3\x57\xd2\x64\x95\x3a\x34\xb7\xb8\x28\x03\xff\x6f\xe2\xa2\x80\x5e\x4a\x13\x17\x65\x54\x9e\x1b\x70\xc6\xa2\x7f\x0e\x38\xc3\xff\x9b\x38\x10\x83\xf5\xde\xc4\x81\x18\x9a\x31\x9c\x84\x31\x98\xcd\x01\x67\x28\xe1\xe9\x18\x85\xc2\xc1\x2c\x69\xe2\x40\x70\x30\x4b\x9a\x38\x10\x1c\xc5\x92\x26\x0e\xc4\xc0\x1b\xa4\xd0\x4a\x19\x9a\x5b\xd6\xac\x43\x5f\x2a\xce\xc5\x60\x85\x37\x3d\xf8\x59\x40\x44\xa5\xe9\xc1\xcf\x32\xf4\x15\x2f\xe8\x1d\xee\x5c\xd0\xc3\xd5\xa0\x5c\x4b\x19\x87\x11\xe1\x40\x8c\x03\x67\x38\x10\xa0\xa5\x12\x99\x6a\x65\x5c\x3d\x07\xbd\x2b\x0a\xd0\xbb\xcc\x34\x0e\xc4\x24\xac\x47\x09\x98\x32\x59\x35\x4e\x1c\x08\x8e\xf5\x4e\x13\x07\x62\x4a\xb1\xe3\x08\x70\xf4\x4b\xa2\x20\x4c\x99\xb8\x9f\x13\x47\x60\x62\x28\x27\xeb\xd9\xc9\xaa\x7f\x7a\x72\x4c\xf1\x63\xbd\xbf\xaf\x92\x3d\xf2\x5a\x66\x56\x27\x95\x96\x08\xf8\x10\xa6\x5e\x97\xcd\x10\xf4\x82\x6c\x86\x20\xe5\xcd\xf2\x79\x0e\xfd\xe7\xd3\x4e\xfd\x99\x44\xa5\x9a\x32\xb7\x5a\x0c\x41\x93\x82\x87\x32\x37\x4c\xe3\xa1\x4c\xbc\x41\x2a\xd5\x94\xa9\x29\xc2\x43\x99\x47\xcf\x39\x9f\x8b\x05\x17\x55\x6c\xca\x7a\xf4\x9f\xf3\xb2\x64\x27\x59\x5a\x2f\x29\x45\xbc\x97\x25\x0b\x87\xf7\xb2\x58\x4c\x4f\x3c\x8d\xa5\xd1\xe2\x4d\xac\xc2\xf4\xe1\x31\x2c\xa2\xa4\x13\x8f\x61\xe1\x77\x4c\xbc\x82\x25\x35\x88\x57\xb0\xf4\xa9\xe0\x15\x2c\x62\xa6\x93\x65\xf7\x92\x52\x64\xd9\xbd\xa4\xf8\x58\x4c\x2f\xe2\xa2\x93\xc5\xf4\xe2\x33\x5a\x58\xe2\xc5\xc7\xb1\xb0\xc4\x00\xc5\xd2\xc2\x12\x03\x14\x4b\x0b\x13\x07\x34\x2c\x2d\x4c\xdc\x32\xfd\xc7\x68\x89\x7d\x2e\x96\x9e\x1c\xb0\x92\x16\x4b\xcf\x85\x3f\x4d\x25\x9e\xc2\xe1\xd9\x89\x4a\x3c\x05\xd8\x58\xa2\x86\x4e\xd9\x41\xff\x2d\x5a\x95\xd6\xa6\x35\x68\x39\xbd\x1d\xf5\xdc\xa1\x05\x3d\x0c\x10\x87\xb6\xa4\x85\xb1\xd8\xac\x87\x16\xc6\x82\x43\x5b\xd2\xc2\x20\xec\xa2\x3b\x79\x8e\xa8\xe5\xc2\x20\x70\xa0\x4b\x5a\x2c\x2f\xa9\x62\x93\x16\xcb\xcb\xcd\xdb\xba\x30\x16\xbb\x22\x17\x8c\xc5\x26\xc4\xb1\x58\x7a\x72\xd8\x4b\x5a\x2c\x3d\x37\x66\x6c\x61\x2c\xf6\xd4\x7f\x8c\x6f\xea\x3f\x78\x61\x63\x9f\x8a\x41\x05\x28\x5a\x5a\x15\x5e\x88\x6f\x2e\xa2\xab\x14\xb2\x4d\x0b\x63\xb1\x51\x60\x8b\xe8\x2a\x65\x6d\xd3\xaa\xf0\x62\x50\xc0\x90\x70\xa0\x4b\x22\xfd\xb3\x6c\x94\x14\x29\x9e\x85\x42\xb6\x69\x61\x56\x36\x01\xab\x45\xac\x75\xa3\x88\x56\x85\x4f\x0c\xd0\xf2\x9c\xaf\x62\x0f\x6f\x01\x06\xc8\x34\x9b\x18\x20\xc3\x7f\x5f\xc4\x61\x4d\xb3\x49\x1c\xd6\xa2\x9e\x1b\xb4\xf4\x9f\xf3\x62\x05\x3e\x31\x47\x56\xf5\xdf\xa1\x85\xe4\x59\x5b\x9b\x24\x4f\x8c\x96\xda\xb5\x69\x11\xa3\xe5\x40\x97\xb4\x58\x77\x1b\x11\xfe\xc5\xba\xdb\x70\xcf\x16\xeb\x6e\x63\x9b\x9c\x9a\x4b\xc5\x08\x07\x2e\x4f\x2c\x2e\xc6\xda\x73\x75\xc6\x20\xc9\x63\xf0\x6c\xab\x4f\x9f\x5b\x2a\xe0\x26\x6a\x35\x15\x33\x24\x88\x89\xb3\x03\x2f\x83\x3e\x51\xfa\x8b\x55\x31\x87\x6e\x27\x2a\x37\x95\xc3\x7a\x68\x61\xb8\xa8\x87\x9b\x16\x86\x4b\xfb\x6d\x0b\xc3\xe5\x10\xbd\xef\xaa\xe4\x85\x4d\x3b\x12\x3c\x36\x8d\x73\xbc\xd3\xc2\xa6\x1d\x82\x13\x0b\x9b\xc6\x39\xde\x69\xb1\x98\x3e\x51\x77\x0e\x5a\xba\xd3\x87\x7e\x08\x4e\x2c\x07\x98\x95\x93\xc4\xf4\xa6\x85\xc8\x58\x68\x73\x42\x4d\x5a\xd8\xc2\x83\xdb\xbf\xb0\x85\x27\x33\x3c\x6c\xe1\xd1\xc7\x88\x2d\xe4\x6c\xf0\xb4\xb0\x46\x87\x45\xea\xc2\x1a\x1d\x4d\x34\x26\xe7\xe0\x31\x2c\x4c\x0e\xf8\xc0\xb4\x30\x39\x87\x98\xf0\xc2\xe4\x70\x96\x4d\x5a\x98\x9c\x33\xf4\x1c\x23\xc2\x1b\x5c\x9b\x11\xe9\x05\xf1\x74\xcc\x02\xae\x30\x2d\x4f\xc7\x2c\x87\xd8\x12\xc5\xae\xca\xd1\xe7\x87\x59\x39\x9b\x97\x80\x18\xed\x91\xc2\xc4\x90\x1c\x3c\xbe\x85\x21\x39\x7a\x41\x58\xb2\x1e\xbc\x82\xc5\x92\xf5\x10\x29\x24\xab\xb9\x68\x0b\x8f\xac\xe6\x72\xa5\x3e\x31\x24\x97\x08\xf1\xc2\x90\x5c\xbc\x41\x32\x9e\xcb\xd5\xeb\x82\x79\xb8\x9a\x77\x16\x94\x9c\x6f\x9e\x16\x51\xd9\xab\xcf\x8f\xa8\xec\x95\x32\xc5\x90\x50\x50\x38\x51\xb0\xab\x68\x23\x90\x82\x5d\x85\x33\x77\x12\x05\xbb\xca\x95\xda\x65\xb1\x09\xc8\x31\x2d\x47\x28\x94\xab\x99\x26\x7e\x7b\x33\x32\x63\x21\x7a\x09\x63\x6c\x16\xa2\x17\x0f\x73\xb3\x10\xe5\x3c\xf5\xb4\x59\x88\x5e\x14\xf4\x66\x21\x7a\x51\xc9\x9b\x18\xed\x6d\x7a\x0e\x0a\x4d\xcf\x41\x01\x43\xb9\x59\xfd\x5d\x0c\xe5\x66\xf5\x77\x79\x97\x36\x71\x58\x60\x94\x89\xe2\x61\xe5\x4e\xb5\x7c\x6e\x2f\x4a\x78\xb3\x1a\xbb\x6c\x32\xed\x88\xcc\xf0\x30\x77\x44\x66\x84\xa8\x36\x2b\xb5\x8b\x4f\xb9\x59\xa9\x71\xfe\x4f\xda\x18\x43\xea\x3f\x25\x0a\x92\x95\x8b\x9a\xa0\x20\x59\xd1\xb6\x20\xb9\xe6\xe5\xa2\x76\xc9\x35\x2f\x17\x6f\x70\xfb\xa6\x64\x7d\x1e\xb5\x9a\xb7\xd8\x11\xda\x9e\x8b\x54\xb5\xd9\xb7\xdd\x88\xd6\x87\x2f\x9c\x1c\xf5\x0a\x6c\x33\x91\xa3\x5e\x1f\x42\x2a\xdb\xe3\xb7\xf5\x21\x26\xbc\x33\x14\x50\xc9\x3b\x43\x81\x3d\xa0\x9d\xa1\x50\xd4\xe7\xa0\x85\x24\xdc\x14\xd7\x87\x9d\x81\x5d\xe8\x45\x92\x2f\xf4\xc2\xda\x6c\x17\xee\x74\x68\x5f\xda\x6e\x28\xeb\xc3\xd6\xed\xf6\x60\x6b\x7d\x08\x4a\x6d\xdf\x6a\xac\x0f\x2e\xca\xae\xf4\xb2\x74\x27\xbc\xa0\xae\x77\xa5\x17\xc9\xda\x4d\x5c\xe5\xa0\xf9\xb4\x2b\x92\x60\x35\xb6\xdd\xc4\x55\x6d\xf6\x6d\x37\x71\xf5\x21\x60\xb5\x1b\x92\xe0\x6b\xdc\x8d\x31\x60\x1a\xb7\xa7\x2e\xd7\xc0\xb7\xb9\x7d\x55\x55\x7d\x9f\xee\xbb\x2a\x99\xfc\xfc\x1a\x02\x8c\xb9\xfd\xa9\xda\xb4\xdb\x6e\x7f\x6a\xc0\x32\x6e\xb7\x3f\x35\x10\x5f\xd9\x6e\x7f\x2a\xe7\xd3\x27\xf2\xfa\xab\x36\xed\xc8\xeb\xaf\xda\xa6\xdb\x6e\x7f\x2a\x08\xd2\xb4\x3d\x26\x5c\x03\x8b\xb8\xed\xd1\xdc\x4a\xe1\xad\x04\x02\xa0\x06\x4d\xdf\x80\x82\x26\x6c\x40\x01\x25\xbc\x7d\xc1\x55\x03\x7e\xea\xf6\x05\x57\xa5\x52\x75\xda\x6e\xb7\x2a\x95\xaa\xd3\x9e\xf4\x82\x4a\xde\x93\x5e\xba\xee\x44\x48\x9a\xe8\x49\x2f\xf8\xf6\x7b\xd1\x8b\x26\x7a\x21\x25\xfc\xa3\xbd\xe0\x53\x1f\xe3\x42\x4a\x24\x92\x82\x3f\xa8\x41\x2f\xc1\x82\x3a\x56\x9a\x0a\x79\x55\x89\xb0\x54\xc8\xab\x41\x1f\xe3\x82\x3a\x6b\x82\xbd\xa1\x4e\x4c\x78\x6f\xe8\xe1\xc3\xee\x0d\x3d\xc2\x2d\xdb\x8d\x45\xd5\xc6\xdc\xf6\x35\x48\x8d\xfa\xc4\x7c\x0d\x52\xc9\x04\x4f\xdb\xd7\x20\x35\x6a\x6e\xdd\x58\x54\xce\xdf\x4f\xdb\x8d\x45\x8d\xfa\xfc\x7c\x0d\x52\xb5\x4d\xb7\xdd\x74\xd4\xa8\x99\x36\xe8\x61\x60\xf7\x81\x02\x1e\xed\x3e\x50\xd0\x87\x7a\xa0\xa0\xb9\x3d\x50\x28\x7c\x0e\x07\x0a\x9a\x31\x5f\x91\xd4\x88\x9f\xba\xdd\xc8\x54\x50\xb7\x69\x1f\xa8\x4b\x7d\x1e\xa8\x4b\x7d\x7a\x0c\xb3\x46\x4c\xf1\xbe\xf0\x82\x81\xdd\x17\x7a\x6c\xb7\xed\x0b\xbd\xa9\x16\xf4\xf0\x6f\xf7\x85\x9e\x94\xe9\x85\x9e\xd4\xa7\x9b\x8e\x1a\x31\xa2\x16\x90\x2e\x99\x13\x16\xa0\xc7\xc7\x68\x81\xb1\xe3\x3b\x99\x07\xeb\x6a\x7a\x74\x67\xa3\xa5\xff\x3a\xad\x41\xcb\xe9\x71\xc6\x7e\x32\x0f\xd6\xd5\x84\xa3\x63\x9e\x2a\x5c\xb5\x51\x66\x1e\xac\xab\x89\x15\xac\x79\xb0\xae\x72\xda\x51\x32\x37\x0f\x35\xf1\xe5\x58\x84\x1e\xd2\xb5\x08\x3d\x36\x3a\x2d\x42\x0f\xe3\x64\x9e\x1e\x5b\xb5\xc5\x65\x9e\x1a\x5b\x29\x2c\x96\x2c\x41\x8f\xfd\x13\x4b\xd0\x63\x1d\x6c\x6e\x1e\x2a\x45\xc7\x92\xb9\x79\xa8\xda\xfe\xb2\x04\x2f\x48\xde\x50\xfa\x89\xd0\x88\xa1\xf4\x13\x6b\x02\xf3\x95\x53\x4d\xac\x9f\xcd\x57\x4e\x15\xa0\x5e\xb2\x0c\x05\x53\xcb\x67\x93\x62\x65\xc9\x50\xf3\x89\x15\x82\xf9\xaa\xaa\x66\x62\xc9\xe6\x21\xb8\x9a\x31\x40\xe6\x21\xb8\xca\x19\xfb\x09\x34\x50\x05\x9a\x97\xcc\x57\x55\x35\x13\x94\x32\x4f\x68\xac\x19\x77\xc2\x7c\x55\x55\xb5\xc7\x65\x18\x8b\xcc\xbb\x6b\x18\x8b\xcc\x6a\x8c\x12\x8e\x35\xb3\x26\x30\x0f\xcf\xd5\xcc\x2a\xc0\x0a\xd4\x09\xd2\x5a\x85\xde\xf8\x51\x42\x9c\x61\x63\x32\x96\xdf\x2a\xac\xf0\xea\x1a\x56\x25\x63\x71\xa8\x18\x59\x33\xaa\x87\x8a\x91\x35\x2f\xdd\x89\x58\x88\x0d\x1a\x56\x25\x63\x71\x0c\xab\x42\xa9\xb4\x64\x0d\x7a\x2c\x17\xcc\x17\x4e\x95\xba\xe3\xc9\x1a\x62\x31\x86\x80\xfd\xc9\xa6\xe7\xa0\x80\xa7\x48\x85\xca\xaa\x6d\x2c\x2a\x54\xd6\xac\x29\x6a\x50\xbf\x7a\x0e\xea\x97\xf1\xf9\x52\xa9\x16\xe2\xc5\x86\x39\xd2\x86\x97\xf9\x52\xa9\x82\x35\x4c\xe6\x4b\xa5\xca\xf9\xfb\xc9\x30\x55\x85\x1d\x66\xc3\x00\x69\xc3\xcb\x30\x32\x85\xe0\xbf\x0d\x28\x90\xd6\x67\x03\x0a\xf8\x86\xe6\xcb\xa1\x5a\x58\x84\x1b\x46\x46\x1b\x57\xe6\xcb\xa1\x0a\x2a\x31\x19\x26\xa7\xe8\x33\x9a\xf0\x42\xdc\xd7\x7c\xed\x52\x0b\xde\x84\x61\x72\x0a\x7e\x9c\x61\x72\x8a\x3e\x23\x4c\x4e\x19\xfa\x6f\xd3\xe2\xe5\xc1\x00\x71\xfe\x7e\x32\x0c\x50\x61\x81\x6e\x0b\x7a\x98\x23\x80\x6c\x95\x02\x6f\x09\x20\x5b\x2d\xa8\x2c\xc0\x6a\xb5\x68\xde\x17\x92\xc0\xef\x00\x90\x56\x39\x87\x29\x01\x48\xab\x45\xf3\xbe\x91\x35\x41\x14\x00\x69\xb5\xe0\x0d\x02\x48\xab\xe5\x20\xeb\xcd\x18\xa4\x06\x37\xf4\x34\xd3\x18\xa0\x82\x37\x68\x18\x92\xca\xa2\xd1\x7c\x6b\xac\x56\x3c\x3e\xc3\x3c\x54\x56\x71\x86\xd2\xd7\x46\x99\xa1\xf4\xb5\x51\x66\x1e\x6a\xaa\x55\x8a\xef\xd2\x0b\x26\xc7\x50\xfa\x94\x82\x4b\xe6\x6b\x89\xca\x09\xff\xc9\x2e\x14\x8a\xee\xf4\xf9\xd3\x96\x9a\xb9\xa7\x5f\x29\x13\x97\xce\x03\x05\x3e\xdb\xf3\xc0\x35\xa1\xad\xe3\x21\xaa\xca\x19\x4d\xe9\x78\x6e\x46\xad\x38\x10\x07\x83\x50\x59\xca\x1f\x0c\x02\x88\xcc\x74\x30\x08\x95\xa5\xfc\x09\xf0\xc2\x57\x7c\x7c\x67\xa7\x6a\x63\xee\x60\x02\x2a\xf3\x77\x30\x01\x94\x97\x4b\x07\x13\x50\x97\xee\x74\x59\x53\x6c\x2e\x9d\xc0\x18\x08\x38\x1e\xcc\x03\xb8\xce\x74\x30\x0f\xd5\xf4\x1f\xd4\x99\xcd\x13\xa1\x7e\x74\x27\xa3\xbd\xfa\x0f\x29\xe1\x5c\x1c\xd4\x3c\xa7\x40\xa5\xe3\x9e\x7e\xd5\x16\xde\xc1\xd3\xd7\x16\xde\xf1\xf4\xc3\xda\xd8\x12\x3d\x1e\x4a\xab\x8d\x15\xde\xc1\x63\xa7\xf2\x7e\x3a\x78\xec\x14\xb0\x4b\x07\x55\xde\x98\xe9\x83\xc7\x4e\x55\xfe\x74\xf0\xd8\x1b\xeb\xf5\x83\x9a\x07\x3a\x9a\x0e\x6a\xbe\xf1\x4e\x1c\x54\x79\xc3\xd5\x38\x05\xae\x59\xc5\x1d\x4f\x23\xac\x8d\x3c\x91\x83\x2a\xe7\x9c\xa9\x04\x10\xb1\xfa\x39\x53\xdf\x55\xc9\x87\x45\x80\x36\xe6\x4e\x81\x38\x36\xf4\xa0\xe5\x5b\x63\xb0\x1e\x2d\xab\x8d\x8f\xff\xa0\xf3\x1b\x0b\x0b\x90\x8e\x55\xdb\x74\xa0\x19\xab\xb6\xe9\x4e\x85\x31\xbc\x97\xc3\x52\x82\x63\xad\xd2\x41\xe9\x83\x69\x4d\x87\xe5\x02\x47\x09\xa4\xd3\xa0\xa0\x17\x04\x55\xde\xf4\x82\x34\xc4\x89\xba\x06\xdb\x58\x1b\x59\xa0\x60\x1b\x6b\x23\xea\x7c\x50\xde\x0d\x55\x7e\x50\xad\x8d\x28\xdb\x61\x15\xd0\x50\xd7\x07\x6f\x5e\x5b\x71\x07\x45\xdb\x51\xbb\xc7\xa3\x49\xb5\xa3\x5a\x0f\xfe\x7b\x67\x69\x7d\x06\xcf\x49\xf0\x83\xe7\xf0\xf1\x0e\xaa\xb5\x37\xf5\xe2\xaf\x75\x27\xff\xf6\xe0\xcd\x6b\x13\xed\x78\x14\xaa\x76\x42\x2a\xc7\xc3\x49\xb5\x4b\x4a\x1e\x4e\xaa\x5d\x1f\x23\x2a\xb9\x0f\xdd\xe9\xa3\xed\x53\xff\x41\x41\x12\xc4\x9b\xef\xfa\x8c\xf0\xe6\x3b\x9b\x29\x07\x6f\xbe\x13\x57\x03\x83\x59\x3b\x0a\x13\x0c\x66\xd5\x46\xd9\x59\x50\x90\xac\x51\xb4\x9d\xb8\xda\x41\xd1\x52\xbb\x2f\x51\x22\xb9\x0e\x0c\x1e\x18\xcc\x3a\x88\xf7\x1f\x0f\x0b\xd5\x11\x74\xa7\xcf\x9f\x36\xca\x0e\x9e\xfe\x48\x7a\x6e\xd1\x82\x33\x94\xf0\x48\x8c\xd6\x77\x29\xea\x20\xe0\x71\x50\xc9\xda\x28\x3b\xf8\xfd\x03\x13\x77\xf0\xed\x07\x59\x07\x07\xdf\x7e\xa0\x22\x8f\xe7\x3c\xd4\xa1\x77\x1e\x4f\x7f\xe8\xfd\xc4\x9b\xd7\x86\xd7\xc1\x9b\x1f\x18\xa7\x83\x37\x3f\xa4\xdc\x50\xec\x83\xac\x83\x83\x62\xd7\x86\xd7\xc1\x9b\x1f\x98\xaa\x73\x18\x11\xeb\xa1\xe3\xbb\x0d\x75\x10\xb0\x3a\x98\x00\x6d\x63\x1d\x4c\x80\xb6\xb1\x0e\x26\x40\x9b\x53\x07\x13\x30\x08\x4e\x1c\x4c\x80\xb6\xaa\x0e\x6b\x82\xc9\x66\xf4\x61\x4d\x40\x41\xc0\x74\x58\x13\x68\xab\xea\xb0\x26\x98\x01\x5e\x58\x13\x4c\x29\x37\x0f\x35\x55\x4a\x07\x26\x8a\x53\xd7\x19\xf5\xdc\xa1\xa5\xe7\x7c\x0c\x93\x80\xd5\xf5\x20\x51\x9d\xcc\xd8\xf5\x6c\x85\x3a\x59\x07\xdf\x07\xce\xf8\x72\x2e\x06\x68\x62\xe2\x2e\x26\x67\xb2\xf2\xbd\x9e\x0e\x58\x27\x29\x8d\xf7\x81\x7a\xd5\x9d\x50\x27\x9b\xe6\x3e\x50\xc7\x70\x5d\x4f\x49\xa8\x13\x4d\x74\x31\x4e\x93\x2f\xe7\x62\x9c\x26\x01\xc7\xcb\x6a\x85\x93\x13\xd2\x65\xb5\x32\x99\xb1\x8b\x39\x9a\xa6\xff\xa0\x47\x00\xe2\x62\x8e\x26\xf3\x70\x31\x47\x0b\x47\x8e\xb2\xd9\x75\x21\xeb\xeb\x60\xc3\xba\x70\x0b\xae\xa7\x18\xd6\xc5\x3b\x7f\x31\x55\xeb\x87\xb1\xe4\xcb\x22\x67\x21\xea\xcb\x22\x67\x25\x75\x32\x68\x89\x9c\xb3\xc9\x51\x09\xe9\xfa\x86\x50\xe5\xa8\x84\x74\x59\xe4\x2c\xa2\x49\x97\x45\x8e\xb6\xc6\x2e\x4b\x97\x45\xde\x06\xf5\xbc\xeb\xc2\xff\x03\xa0\x5c\x17\x4a\x1f\x80\x72\x5d\x28\xb0\x4b\x2c\x6b\x91\xa0\x73\x33\xc3\x1b\x6a\x31\x3c\x96\x4a\x97\x65\xcd\xc2\xd3\xbf\xd8\xc2\x85\x37\x0f\xcc\xb9\x2e\x96\xa5\xc0\x9c\xeb\xc2\xe3\x03\xe6\x5c\x17\x61\x85\x8b\x2d\x5c\xa4\xf2\x5c\x96\x3c\x6b\x89\x17\xc6\xce\x27\x76\xb1\x93\x0b\xe5\x76\xb1\x93\x0b\xe5\x76\xb1\x93\x0b\xdf\xf0\x62\x19\x97\xe9\x4e\xef\x73\x93\xca\x73\x3d\x7b\xa0\xee\x47\x77\xba\x3c\xb5\x6d\x76\x31\x7f\x9b\x0f\xe7\x62\xfe\xb6\xe6\x08\xf3\xb7\xb1\xfc\x17\xf3\xb7\x59\x62\x5d\x56\x32\x5b\xb3\xc2\x4a\x66\x6b\x56\x58\xc9\x68\x6b\xec\x12\x3b\xdb\xa8\xb3\x8b\x31\xa4\x2e\x63\xba\x98\xbf\x8d\x3a\xbb\xac\x64\xb6\xe6\x8f\x95\xcc\xc6\x00\x5d\x56\x32\x9b\x20\xd1\x25\x92\xb6\x35\xb7\xbe\x3d\x54\x39\xe3\x31\x5d\xdf\x1e\xaa\x1b\x6f\xf0\xb2\x22\xd9\x78\xf3\x97\x15\xc9\x26\x8d\xf0\x62\x1a\x39\xe3\x31\x5d\x4c\xe3\x46\x0d\xde\x8e\xcc\xf4\x51\xb1\xce\xd8\x98\xe9\xcb\x3a\x63\xb3\xb5\x79\x31\x94\x5b\x9f\x18\x86\x72\x63\x64\x2e\x86\x72\xe3\xa3\x5f\x0c\xe5\xd6\x1c\xb1\x22\xd9\xa4\x18\x5e\x4c\xa3\xb6\xd4\x2e\xa6\x71\x1f\xdd\x89\xac\x09\x5c\x5c\xd6\x20\xda\x28\xbb\xbe\x47\x52\x0d\x55\x77\x3d\x19\xb1\x6a\xa3\x8c\xfa\xef\xd5\xf0\xea\x2e\xeb\x13\x23\x97\xe7\x12\x20\x33\x7c\xfb\xeb\x7b\x2b\x55\x5b\x6a\x17\x93\x6a\xfa\x36\x3d\x27\xa0\x5a\x52\x2f\xd0\xcb\x50\xc7\x6c\x1a\xbe\x1a\xf0\xfd\x6a\x24\x0e\x02\xdf\xaf\xc6\x6a\xec\x62\x36\xb5\xf9\x76\x7d\xa7\xa5\x52\xa1\x32\x51\x7d\xbe\x1a\xe9\x72\x17\x43\x69\xfa\x36\x31\x94\x86\x3b\x41\x51\xb1\x6a\xe4\x6b\x53\x4c\xac\x1a\x0e\x19\x45\xc4\xaa\x0d\xdd\x09\x05\xf0\x70\x14\x0d\xab\xa6\x2f\xd5\xb3\xe1\xab\xe9\x4b\xc5\xa4\x1a\x21\x0e\xea\x72\x55\xd3\x17\x77\x18\x9f\xbe\x31\xd6\x43\x46\xdc\x97\x0a\x5a\x95\x8a\x98\x89\xca\x59\xd5\x8e\xfe\x83\x9e\x66\x13\xb3\xa9\x4d\x3b\x2a\x5f\x55\xbb\xba\x93\xf1\x69\x6e\x09\x90\x19\x71\x7b\x6a\x4e\xd5\xe3\x73\x9b\x29\x72\x50\xd9\x45\xcb\x14\x37\xa8\xc7\x1d\xb9\x4c\x51\x83\x0a\x48\x2e\x53\xcc\xa0\x7a\x5d\xcd\xef\xa9\xe4\x4c\x8d\x83\xca\xe6\x5b\xa6\xb6\x41\x65\xf3\x2d\x53\xd7\xa0\x72\xec\x46\xa6\x8c\x40\x3d\x59\x2d\xa3\x25\x56\xfc\xa5\x03\x69\x97\x29\x17\x50\x4f\xa1\x17\x2c\xd5\xa9\x0c\x81\x65\x14\x28\xbc\x0c\xdc\xbe\x72\xec\x46\x06\x66\x5f\x8f\x7f\x9a\x19\x78\x7d\x3d\x83\x3e\xb1\x54\x67\x30\x58\x2c\x15\x85\x3b\x33\xf0\xf8\x7a\xdc\xb3\xc9\x40\xdd\xeb\x99\xba\x13\x7a\x1e\x37\xcc\x40\xdb\x2b\xd8\xba\x0c\xa4\xbd\x82\xad\xcb\x40\xd9\x2b\x9b\x6f\x19\x68\x7a\x3d\xee\x61\x66\xa0\xe6\x95\xd3\x35\x33\x10\xf3\x7a\x8c\x3e\x59\x70\x9d\x03\x3d\xe2\x6a\xc7\x97\xd6\x19\x78\x78\x3d\x17\x49\x60\x8e\x38\x6b\x33\x03\xdd\xae\x6c\xb7\x65\x20\xdb\x95\xed\xb6\x0c\xfc\xba\x72\x3c\x48\x06\xf6\x5c\xaf\x66\x85\xa5\xd9\x4d\x3c\xc7\xd2\xec\x66\x9e\xc3\x1c\xdd\xa2\x16\xf4\x0a\xbc\x10\x49\x63\xc3\x2b\x03\x25\xae\xb7\xea\x3f\xe7\xf3\x36\xe8\x11\x49\xbb\x9a\x15\xe2\x63\x60\xeb\x32\x20\xde\x4a\xdd\xd0\x0c\x78\xb7\x82\xad\xcb\x00\x71\xeb\xd5\xfc\x61\x64\xee\xe0\x4e\x8c\xcc\x1d\xbc\x05\x6c\xc2\xdc\xa9\x16\x23\xd2\x1c\xb1\x8e\xba\xae\x76\x33\x40\xd8\xca\xd6\x58\x06\x00\x5b\xef\x62\x1e\x08\x90\x71\x7a\x68\x06\x7d\x5a\xaf\xf1\x16\x34\xe8\x19\xff\x61\x48\xee\x81\x17\x0c\xc9\x3d\xf4\x89\xb1\xb8\x9a\x3f\xd6\x5f\x20\xed\xf2\xc3\xfa\xeb\x5e\xe8\xf9\xfa\xab\x3d\x8f\xfe\x3b\xb4\xd4\xcb\xa5\xc5\x7b\xed\x01\xb2\xf6\x68\x6e\x3d\x40\xd6\x1e\xcd\xad\x9b\xa3\xf6\x04\xf8\x74\x73\xd4\x9e\x80\x04\x3d\x27\xa0\x3d\x91\xb1\xbb\x39\x6a\x8f\x3e\xf0\x0e\xbd\x84\xcc\x3a\xf4\x12\x9c\x0d\xe8\xb9\xbb\x94\x9f\x41\x9f\xfa\xfe\x7c\x87\xa6\xb1\x89\x96\x1f\x0f\x9e\xb5\xa7\x42\xc1\x57\x7f\xed\xd1\xd7\xe8\xab\xbf\xf6\xe8\x2d\x70\x83\xd7\xc0\xd6\xe5\x67\x30\xf6\x0e\xd7\x6e\xf0\xda\xd3\x91\xee\x80\xcf\x2e\x5e\xe0\x73\xf0\x9e\x4d\x46\x3b\x19\xfb\x84\xb3\xc9\x3c\x4c\xe8\xe9\x4b\x9d\xd0\xd3\xbc\x4f\x28\x6c\xa8\x4f\x28\x6c\xf8\x9c\x50\xd8\x3c\xb7\x90\xae\x31\xbe\x05\x3d\xd3\x7f\xd0\xd3\x6c\x2e\x24\x71\x99\xb1\xf5\xbf\x08\x3b\x97\x64\x5b\x56\x5e\x3b\xd7\xdd\x8a\xdb\x04\x12\x24\x1e\x11\x7f\x67\x78\xba\xe6\x82\xfb\x5f\x70\x2c\x7d\x63\x1d\xc7\xb9\x61\xef\x5d\x64\xce\x4c\x10\x90\x48\x03\x09\x31\x18\x89\xa7\xf7\x62\x24\x48\x99\xb3\x14\xbb\xc6\xf6\x69\x6e\x63\xd7\xd8\xb8\x6b\xd5\x52\xec\x1a\xdb\xf7\xd1\xdb\x70\xdd\x35\x92\xe4\x2c\x85\x69\x6c\xdc\x1b\x64\x29\xce\xd4\x37\xa2\x6f\x96\x22\x5a\xd4\x82\xc5\xf5\xcf\x2a\x39\x2c\x6a\xfb\x8c\x89\x0e\xaf\x5e\xfb\x34\xb5\xb1\x11\x6d\x9f\xd1\x78\x58\xd4\xf6\x39\x0d\x6c\xba\x20\x25\xbc\xe9\x82\xd3\x85\x4d\x17\x5c\xb5\x0c\x4a\xaa\x05\x31\xab\x9e\x44\xcc\xca\x93\x07\x59\x2a\x4f\xc6\xb6\xb4\x41\x21\x6b\x29\x42\x55\xed\x93\x2a\x38\xc8\xd2\x19\xf8\x83\x2c\xfa\x08\x0e\xb2\x48\x15\x1c\x64\x19\xb4\x77\x90\x45\x8a\x3d\xb6\xb3\xed\x93\x62\x3f\x0c\xf5\x94\x2c\x0c\xb5\xd4\xc4\x41\x4e\xa9\x82\x8b\x9c\x9b\xff\x2e\x72\x6e\x3e\xa5\xcb\x98\x49\x79\x5f\xe4\x3c\x8c\xd9\x45\xce\x43\x7b\x17\x59\xf4\xf1\xc4\x46\xb4\x65\xa9\xeb\xd8\x88\x36\xd8\x79\x0c\xc2\x93\x96\x3f\x3e\xc8\xd8\x88\x36\x42\x71\x96\x62\xb3\xd9\xb2\xa6\x3d\xce\x35\x34\x28\x6b\xed\x0b\x2b\xdd\xb8\xba\xd6\xbe\x44\x2d\xcc\x2d\x44\x29\x8d\xcb\x9c\xec\x4b\xd4\x12\x9e\x50\xfb\x12\xb5\xb0\x88\xbf\x30\xc5\x2d\xc7\x9e\xc7\xbe\x30\xb7\x2d\x63\x60\xbf\xd8\x34\xb6\xcc\x6c\x7e\xe1\xed\x6c\x64\xcc\xd9\xf7\xd1\x7a\xd3\x7f\x85\x12\x75\x7e\xc8\x32\xf5\x24\xb2\x4c\xd5\xd9\x29\x21\x67\xf8\x3e\x5b\x66\xd9\x7e\x1f\x72\x6e\x7a\xf4\x21\xe7\x56\x2d\xc8\x19\x98\xd9\xbe\x38\xf2\xd7\x32\xf3\xf0\xc5\x46\xb4\x71\xdd\x97\x7d\x1f\x7d\x38\xb4\x97\xe9\xc3\x41\xce\x4c\x1f\x02\x57\xd9\x97\xe9\xc3\xd5\x7f\x21\x27\x3c\x3e\xf6\x85\x09\x6f\x25\x42\xa9\x06\x9d\x4c\x2b\x81\x6f\xed\x0b\xdf\x67\x2b\xac\x95\xaf\xf0\x9e\xc6\xba\xf0\x9e\xd3\x7a\x98\xe9\x46\xb6\x99\x7d\x61\xa6\x5b\xa9\xb4\x10\x66\xba\x95\xa6\x5a\x68\x41\xa3\x1b\x3b\xca\x56\x9a\xda\xbb\x94\xa8\x25\x4e\x47\x34\x32\xd1\xec\x8b\x1d\x65\x2b\x9d\x3e\x84\x79\x6f\xb0\xe9\xda\x67\xc8\x89\x32\xfd\x0c\x39\x87\xde\xa3\x75\xd6\xca\x67\xb4\xae\x39\x32\x5a\x9f\xaa\x93\xd6\x27\x73\xeb\xb4\x8e\x11\xfd\x62\x0f\xd9\x8a\x66\x2c\xf6\x90\xad\x68\xc6\x9c\x91\x40\xb5\x7e\xce\x48\x1c\xc6\xd3\x19\x09\xcd\x8a\xd3\xde\xa5\x96\x4a\x8f\x2e\xed\x55\x7a\xf4\x90\xac\xd2\x23\xd4\xee\x17\x26\xbc\x19\x46\x14\x0a\x9e\x66\xe1\xad\xb6\x2f\x0c\x7a\xb3\xa4\x27\xe3\x9b\xb0\x8f\xff\xc2\xa0\x37\xd2\xe2\xec\x8b\xdd\x5f\xb3\xcc\xe8\x62\x60\xad\xa8\x94\x29\x31\x63\x11\x65\x6a\x66\xbc\xd7\x69\xdd\x99\x23\xcc\xad\xfd\xcc\xfb\x1f\x55\xf2\x37\xa8\x12\xec\xf4\x61\x19\x89\x18\xda\x37\xa8\xb2\x31\x61\x58\x46\xeb\x74\x1d\xcb\x68\x9a\x68\x2c\xa3\x69\xa2\x07\xdd\x1b\x08\x3d\xe9\xde\x60\x89\x61\x27\x0d\xab\xf9\xc5\xc6\xb0\xd9\x64\x20\x62\x63\xd8\x0c\xb4\xfb\x61\x35\x6d\xd2\xd9\x89\x2c\x8b\x49\x99\x74\x6f\x21\x75\xf8\x53\x9b\x2d\xbd\x87\x9c\xfa\x24\xb0\xaf\x64\xc5\x19\xec\x43\xcd\x16\xfd\x9b\xc8\xb9\xf9\x08\x16\x72\x82\xb9\x3e\x6c\xaf\xe9\x73\xc1\xf6\x12\x86\xb4\x0f\xdb\x4b\x18\xd2\x3e\x6c\x2f\x61\x48\xfb\xb0\xbd\x76\xe8\x2d\xb6\xd7\xf4\x29\x2d\xfa\x70\xd5\x1e\x7d\xb8\x8c\x2e\xb6\xd7\xf4\x61\x61\x7b\x5d\x9f\x12\xb6\x97\x30\xa4\x7d\xd8\x5e\xff\xf4\xdf\xa3\x44\xdf\x31\xb0\x84\x28\xed\xc3\xc0\xfa\x47\x1f\x30\xb0\x84\x28\xed\xc3\x88\xba\x3e\x33\x8c\xa1\xeb\xc3\xc2\x18\x3a\x66\xfa\xc3\x18\xba\x54\xf9\xa1\x4e\xa3\xce\x43\x9d\xa0\xf2\x0f\x63\xe8\x18\x66\xd8\x95\x9a\xeb\xcb\x3a\x48\x2d\x65\x73\xa9\x45\x2a\x04\x33\xe6\x4d\xff\x39\x25\x5a\xb8\x8c\xc4\xa0\x85\xcb\x48\x0c\x66\xf3\x52\xa7\xbe\x97\xcb\x48\x4c\xbe\xc1\x47\x0b\xfa\x26\xc2\x67\xda\x5c\xaa\x00\x33\x46\x18\xd2\x3e\xcc\x18\xf9\x7a\xf6\x3d\xda\xdb\xb4\xf0\x68\x0f\x23\x9a\x31\x71\x1e\x2e\x0e\xcb\x89\x16\xae\xfe\xa3\x0f\x11\xb8\x32\xb8\x9d\x1a\xfc\x54\x96\x31\x86\x04\x25\x2d\x63\x0c\x3d\xc2\xcf\x96\xe3\x94\x79\xf3\x08\x71\x59\x8e\x53\xe6\xad\x26\xd5\x32\x29\x1d\x4a\x21\x67\x0d\xf7\x87\xc1\x10\xd5\xa0\xa8\xb6\x8c\x31\xac\xa0\xb3\x8c\x31\xac\x05\x39\x31\x86\xdc\x57\x68\x39\xf6\xac\x8d\x2b\x5d\x2d\xc7\x9e\xb5\x55\x40\x57\xc6\x50\xc2\x5d\x65\x19\x43\x59\x5d\x75\x86\x9c\x35\x3c\xbd\x96\x31\x94\xb5\xaa\x75\xe4\xac\x92\x0c\x39\xab\x5a\x88\xf1\xac\x98\x95\x8c\xa1\xac\x4d\x2d\x5c\x4a\xf1\x15\xe4\x8c\x9c\x18\x12\x78\xad\x1a\xa1\x4d\xcb\x18\xc3\xca\xfe\x2b\x63\x0c\x61\xc7\xb2\x9c\x91\x65\xea\x49\x64\x61\xe7\x0b\x03\x56\xab\xac\xf7\x9c\x69\x8f\xf5\x9e\x63\xaf\xdb\x60\xc7\x32\xd8\xb1\x1a\x39\x87\x96\x0b\xe3\xa9\x79\x2f\x8c\x27\xc6\x02\xe6\xac\x56\x31\xda\x19\x23\x5a\xe3\x8e\x0b\xcb\x18\xd1\xca\x9a\xce\x18\xd1\xaa\xaf\x00\x23\x5a\xdf\xdf\x1c\x17\x19\xfb\x5a\x9f\x04\x43\x4c\x7d\x20\x86\x98\x6c\xdb\x32\xb6\xb7\xa1\x26\x72\x1c\x52\x69\x0d\x35\x91\xb1\xbd\xc4\x47\x2d\x63\x7b\xdb\xa7\xf7\xa2\x0b\x8d\x4d\x78\x8e\xad\x75\x6b\x99\xe9\xc3\x12\x13\xf5\xb4\x8c\x25\x86\x8b\xdc\x32\x96\x98\xc4\x45\xcb\x58\xe2\x86\xa3\x24\x47\xca\x40\x6b\xa0\xba\x1c\x5b\xf2\xd6\xf4\xb9\x60\xa5\x1b\x5b\xb3\x8c\x95\x26\x1f\xd1\x32\x56\xba\x55\xbd\x17\x9f\x67\x03\xc7\x65\x47\xce\xae\xff\x90\x73\xa8\xce\x41\x89\x1e\x61\xc1\x1b\xaa\x20\x63\xc1\x1b\xc6\x22\x3b\x72\xb2\xfd\xca\x15\x59\xf4\x49\x54\x64\x01\x9d\x41\x67\xd6\xda\xa5\x96\x4a\x7b\xe0\xb1\x5c\x19\x89\xa7\x5a\xa2\x05\x32\x09\x2d\x63\xdd\x21\xf8\xb2\x1c\x7e\xdf\xd6\x33\x63\x16\x7e\xdf\xd6\x8b\xfe\x33\x4a\xcc\x51\x6c\xd7\x5b\x37\xda\xc3\xf2\x93\x3b\x68\x39\xfc\xbe\xad\x83\x8b\x21\x4c\x6b\xbd\xea\xbf\x98\x23\xb2\xfe\x2c\x47\xb8\xb4\x11\xa2\xb4\xdc\x90\x0c\x33\x9d\xc1\x0f\x5d\x63\x06\x7e\x20\x44\x69\x99\x0d\x7a\xc7\xf8\xe6\x8e\x64\x53\xff\x21\x19\x98\x0b\xa2\xb5\x46\x66\x9f\x65\xb0\x05\x99\x7d\x96\xd9\xca\x93\xcb\x67\x99\xad\x7c\x07\xfb\x42\xc9\xd6\xfa\xe5\x4b\x66\x2b\xdf\x2f\x52\x0f\x24\xc3\x39\x91\x81\x21\xfd\x51\x27\xdb\xfc\xfe\x98\x77\xb6\xf9\x43\x5f\x39\xdb\xfc\x20\x14\xfb\x29\xc5\x98\xc1\xbc\x6e\x39\xb2\xe2\xda\xd0\xb7\xcb\xc6\x9e\x7c\x3d\xcb\x11\xac\x6d\x03\x94\x9c\x81\x13\xe4\xe4\x59\x06\x4e\x8c\x4a\xeb\xc0\x09\xc2\x90\x06\x05\x5c\x1b\x95\x79\x00\x4e\x0c\x4c\x55\x06\x4e\x0c\x4c\x55\x06\x4e\x0c\xcd\x03\x20\x61\x68\xe4\x01\x02\x03\x30\x93\xd9\x84\x0f\xa9\x2c\x36\xe1\x63\xe9\x49\x24\xd3\xd7\x0a\x48\x20\x43\xcf\x32\xbb\xe2\x81\x23\x28\xb3\x2b\x86\x7b\xcc\x20\xa0\x6b\x70\x8f\x19\x04\x74\x6d\xe0\x16\xca\x9b\x1e\xe9\x4b\xde\xf4\x48\xa3\x1b\xe1\xd9\x36\x65\x72\xd8\x31\xcf\xa4\x16\x1e\x25\x5a\x00\x24\x4c\x69\x14\x40\xc2\x94\x71\x02\x24\x40\xd9\x6e\x19\x90\x40\x88\xd2\x32\x3b\xe6\xf9\x31\xef\xec\x8a\x67\xa6\xef\xec\x8a\x67\xa1\xef\x97\x5a\x8c\xd9\x04\x24\x90\x24\x67\x99\xfd\xec\x64\x27\x93\xd9\xcf\x4e\x99\x9c\x4b\x2d\xd2\x21\xe1\x83\x6e\x53\x26\x07\x00\x31\x1b\x92\x01\x20\x66\xa3\x85\x47\x8f\xda\x5f\xee\xb8\xb0\xfc\xe8\xac\x26\xfa\x21\xa6\x26\x1a\xa4\x31\x65\xb7\xd8\x5a\xc3\x25\x6f\x99\xed\xf3\x1c\x0c\x67\xc4\x71\xdb\x1c\xfa\x8f\x2e\x0c\xd5\xc9\xc0\xcb\x6e\x3d\x06\x9e\xed\x65\x49\x88\xc9\x82\x2b\x09\x59\xc0\x2b\x70\xfd\xb5\x79\x54\x72\x4a\x83\x12\x43\x86\xff\xa8\x80\x2d\x66\x1c\x9b\x32\x58\x01\xdb\xbc\xaa\x93\x21\x8b\x18\xb6\x15\x36\xe1\xf3\xea\x3d\x86\x8c\x85\x5a\x12\x72\x46\x94\xd5\xe0\x0f\x6c\xf3\xf1\x1f\xb8\x63\x25\x95\x62\x5c\x16\x38\xb5\x80\x3b\x16\xe8\xa5\x80\x3b\x16\x5b\x9e\x02\xee\x58\x18\xa7\x02\xee\x58\x18\x27\x38\x09\x1b\x44\x72\x56\xc0\x16\xb0\xd5\x5b\x01\x5b\xc0\x4f\x6f\xf0\x15\xb6\xc5\xe7\x52\x32\x2d\xe0\x21\x2e\xa0\x89\x05\x96\x29\xa0\x89\xc5\xe2\x2f\xa0\x89\x05\x5e\x29\xa0\x89\x85\x5b\xa8\x80\x26\xc8\x39\xb4\x02\x9a\x58\xb8\x15\x0a\x9b\xf0\x85\xa2\x2d\x99\xd6\x31\x55\x05\xa4\x41\x96\xa1\x15\xd0\xc4\x42\xed\x16\xd0\x04\x2c\xf7\x56\x0a\xa3\x04\xa2\x2d\x85\x51\x62\x77\x54\x0a\x7d\x98\xfa\x8f\x3e\x2c\xfd\x47\x1f\x16\xfd\x63\x9b\x0f\x3b\xbe\x15\x50\xc8\xd2\xd7\x03\x9c\x58\xf8\xfb\x0b\x70\x02\xae\x7c\x2b\xc0\x89\xc5\xfe\xa4\x00\x27\x16\x4a\xa3\x00\x27\x16\x4a\xa3\x44\xe0\xb8\xed\x44\x1f\xd8\xe6\xef\x4f\xb5\x38\x25\xc6\x0c\xa8\xb1\xf1\x1b\x16\xa0\xc6\xce\x7a\x2f\x46\x09\x52\x3b\x2b\x80\x84\xad\x79\x00\x24\x6c\x30\x65\x01\x24\x6c\xcd\x0a\x20\x61\x37\xbd\x47\xeb\x5d\x25\x5a\x67\x27\x5a\x9c\xd6\x71\xcf\x15\x00\xc4\x66\xfd\x15\x40\xc2\x66\xc5\x95\xf0\xf0\xb7\x3d\xf5\xdf\xa6\x84\x9c\x00\x08\xc2\xa5\x56\x80\x0c\x1b\x25\x5c\x80\x0c\xe4\x15\x5a\xa9\x48\x06\x6e\x2c\x38\x0b\x36\x48\xb1\x00\x20\x36\xd8\xb0\xe0\x1e\x20\x5b\xd0\x0a\xee\x01\x88\xf2\xac\x44\x50\xb9\x41\x94\x67\x05\xa8\x71\x00\x17\x05\xc8\x70\x50\xb4\x05\xc8\x70\x70\xd6\x15\x20\x03\x99\x84\x56\x30\xe1\x90\xe8\x59\xc1\x84\x9f\x42\xff\x30\xd3\xe4\x0e\x5a\xc1\x4c\x1f\xdc\xa4\x05\x53\x4c\x30\xd3\x0a\xa6\xf8\x60\xfe\x20\xdb\x6c\x87\x7d\x1b\x64\x9b\xed\x68\x75\xe0\x2d\x80\xc5\xdf\x0a\xde\x82\x03\x74\x2b\x98\x62\x02\x9d\x56\xf0\x16\x10\xcc\xb4\x82\xb7\xe0\xe0\x11\x28\x78\x0b\xc8\x39\xb4\x82\xb7\x20\x72\x0e\xff\xa8\x92\x61\xfa\x6c\x47\x9f\x3c\x76\xf9\x48\x29\xb2\x95\x3f\x9a\x06\xb6\xf2\x07\x3b\x59\xd8\xca\x1f\xb6\xeb\xb0\x80\xb6\x23\xa5\x88\xb5\x3d\x20\x94\xc2\x96\xfc\x48\xf1\xb1\x25\x3f\x6c\xe2\x0a\x5b\xf2\xa3\xc9\x64\xdb\x7d\xd9\x84\x97\x88\x14\xb7\x2b\xe5\x86\xcd\xbe\x5a\x0e\xd8\xec\xcb\x26\xbc\x60\xb3\xc9\x24\x34\x58\x47\xdb\x2d\x7a\x72\x51\xa2\x47\xd8\xe5\x6b\xfa\xef\x51\xa2\x16\x6c\xef\x65\xdb\x56\xf0\x56\x5f\x4d\x2d\xb6\xf7\x82\xc3\x0b\xd6\x96\xab\x41\x0d\xee\xd2\x76\xb1\x93\x70\x97\xb6\xab\xe9\x8b\x94\xed\x76\x41\x98\x85\xcd\x3b\x17\x85\x5a\xc1\x3f\x7d\x3b\xff\xe1\x9f\xbe\x52\x75\xf8\xa7\xaf\x26\x1a\x7b\xae\x40\x27\x0c\xa8\x8d\x6b\x43\xad\x60\xcf\xb9\x56\xd3\x4a\xc4\x94\x9b\x02\x81\x25\x8e\x69\x35\xb2\xe9\xac\x60\xeb\xc9\x91\xb3\x82\xad\x7f\xfa\x90\xd9\xf4\x3f\x7d\x90\xd8\x73\x05\xfb\x0a\x46\xfb\xb1\xd9\x2c\x18\xed\x27\x55\x8e\xd1\x26\x2b\xce\x0a\x46\xfb\xa9\xef\xf8\xc3\xc9\x83\xb3\x82\x3f\x5c\x81\xc0\x82\x41\x7f\x84\x87\x0a\x06\xfd\x69\x24\x30\xe8\xaf\x4b\x16\xe4\xc4\xbf\x59\x70\x32\x3c\x29\x7d\x9c\x0c\x64\xd3\x19\x7c\xaf\xed\x11\x3a\x32\x8c\xfd\xc3\xb5\x65\x38\x19\xc8\x98\x33\xc3\xd8\x3f\x70\x38\xcc\xb0\x8d\x8c\x39\x83\x19\xb6\x29\x64\x68\x38\x19\x5e\x9c\xe2\x30\xc3\xc9\xc0\x55\x9d\x66\x00\x81\x77\xd4\x02\x23\x88\x9a\x37\xdc\x0a\x64\xda\x99\x61\xde\x1f\x4e\x0d\xc3\xbc\xbf\xa7\x27\x91\x8c\x7d\xa9\x85\x09\xef\x10\x1f\x98\x85\x7b\xa0\x2b\x80\x68\xe1\x1e\xe8\x29\xe9\xc9\x15\xa5\x4f\x75\x6e\x4a\xf4\x21\x7c\xe5\x3d\x71\x0a\xc0\xc2\x57\xde\x13\xea\xcc\xc2\x57\xde\x21\x4f\x34\x0b\x5f\x79\x4f\x45\x4f\x16\x4a\x8f\x92\x45\xc9\xf4\x9e\x53\xd2\x7b\xc8\x49\xa8\xdf\x02\x08\xf4\xe4\xfa\xaf\x53\xea\x94\xe8\x83\xeb\x49\xfa\xc0\xaa\xb2\x8c\x9c\x7c\x3d\x56\xa8\x05\x03\x64\x85\x27\xf9\xe6\xad\xd0\xdb\xc1\x78\x16\x7a\x8b\xb1\x87\xaf\xb7\x27\x0c\x90\x19\x3d\x22\xf6\x60\x86\xd4\x98\x77\x33\xa4\x06\x1c\x9a\x21\x99\xe6\xd6\x68\x4f\x73\x1b\x06\xb6\x73\x1d\xa7\x59\xec\xd0\x3b\x14\x8c\x66\xce\x08\x3e\x95\x68\x0f\x7d\x66\xce\x08\xe2\x73\x30\x67\x04\x09\x20\x5a\x18\xd8\xfe\xa5\xbf\xa9\x64\x0b\xfb\xda\xe1\x71\x34\x0b\xfb\xda\xbf\x4f\x55\x86\x28\x1f\x8a\xcf\x22\x82\xde\x3f\x5c\x0e\x16\x11\xf4\x0e\x0b\x89\x59\x58\xdb\xfe\x11\x1b\xb6\xb0\xb6\xfd\x2b\x7a\xb2\x50\xa2\x7b\x61\x6d\xfb\x67\x7a\x0f\x31\x4d\xff\xc5\x50\x93\x93\x67\xd0\x18\xf7\x8f\x45\x0c\x8d\x71\x27\x0b\xcf\x2c\x6c\x68\x57\x78\xcf\x62\xdb\xdd\xbf\xa1\xff\xe8\x11\xb6\xc9\x1a\x3d\x62\xc3\x6c\x8d\x16\xa6\xea\x8c\x81\xff\x96\xfe\xa3\xb7\x78\x1f\xad\xd1\x5b\x4d\x5f\x47\x16\x7c\x91\xd6\x91\x05\x9f\x94\x75\x64\xc1\xfb\x68\x1d\x59\x30\x5c\x16\xee\xfe\xae\x10\x9e\xc5\x96\xbc\x7f\x18\x2e\xeb\xc8\x09\x9a\xb7\x8e\x2c\x57\xed\x21\x0b\x68\xde\x06\xad\x83\x3b\x2c\x36\xd3\x3d\xb3\xdd\xb3\xb0\xe7\x3d\x6b\xfe\x62\xfb\xdc\x33\x18\xcf\xc2\x2e\x77\x32\xf4\xcc\xc2\xf8\xf6\xac\x59\x99\xbc\x87\x5b\xc8\x62\x6b\xdd\x33\x4e\x0d\x8b\xad\x75\xe7\xea\x4c\xb3\x49\x9d\xae\xf7\x62\x04\x33\x88\x0f\xca\xe8\x9e\x41\x21\x16\x66\xba\x93\x77\x67\x16\x9b\xe9\x9e\xf1\x14\x42\x27\xdd\x33\x71\x09\xe8\xa4\x7b\x06\x79\xdb\x42\x16\xf0\x9f\x2d\xda\xd3\x82\x5b\xb4\x07\xfe\xb3\xf0\x9c\xf7\x8c\x8b\xc3\x36\x75\x82\xae\x21\x9e\xee\x59\xb3\xb9\x79\x0f\x97\x91\xc5\xc6\xb7\x2b\xa0\x67\x07\x39\xf1\x09\xdb\xe1\x3d\x2d\xb8\xc3\x48\x68\xc1\x85\x69\xec\x45\x4a\x31\x4c\x63\x2f\x6c\x91\x2d\x4c\x63\x2f\x78\xe3\x2d\xfc\xe1\xbd\x68\x3d\x84\x3f\xbc\x17\xad\x87\x30\x9b\xbd\x14\xd5\x19\x92\x15\x8d\x7c\x6c\x6e\x7b\xd1\x58\x87\x31\xec\x05\x77\x12\x24\xd8\xbd\x80\xa0\xed\xd1\x82\x14\xd8\xa3\x85\x46\x7b\x61\xd4\xba\xc2\x74\x16\x46\xad\x17\xa9\xb3\x30\x6a\x9d\xdc\x3a\xb3\x30\x6a\xbd\x0c\x3d\x89\x2c\x84\x59\x3d\xd1\x3a\x86\xcb\x13\x7d\xc7\x70\x79\xa2\xef\x18\x2e\x08\xb9\x7b\x41\x9d\x41\xc8\xdd\x61\xc9\x31\x0f\x33\xd6\x15\xa6\xf3\x84\x64\x47\x4f\x22\x19\x86\xcb\x13\x92\x61\xb8\x3c\x8c\x5a\x27\x27\xcf\xfc\x43\x16\x0c\x97\x7f\xc8\x82\x72\xf3\xd8\x97\x76\xe3\x9b\xf7\xd8\x6d\x76\xee\x9d\x34\xe8\xc0\xbb\xe1\xc8\x83\x0e\xbc\x1b\x23\xef\x98\x31\x05\xe6\x1c\x33\x66\x45\x75\xc6\x3c\x98\xa9\x96\x58\x7f\x86\xe3\xc2\x31\x71\x86\x9b\xd4\x31\x71\x06\x3c\x73\x4c\x9c\xe1\x26\x75\x4c\x9c\xb1\x1e\x1c\x33\xa6\xc8\x9c\x63\xc6\xe2\xde\xc9\x3f\xaa\x64\xc7\xc2\x19\xfe\x2a\xc7\xc2\x71\xd1\xa4\x39\x16\xce\x40\x28\x8e\x85\x33\xce\x2e\x78\xa6\x7b\x40\x74\xb8\xcf\xbb\x82\x76\x70\x9f\x77\x05\xdf\x3c\xd3\x3d\x70\xb8\xc7\x76\xb6\xc3\xf8\x67\x5e\x18\x5c\x36\xa2\x5e\xe8\x02\xaa\xce\x0b\x5d\x60\x5b\xea\xd8\x50\xe3\x18\x8c\x17\xe4\x44\x0d\x7a\x41\x4e\x0e\xa5\x39\xf6\x55\xe1\x36\xc7\xbe\x92\xf5\x67\x8e\x7d\x55\x48\xcd\x0b\x72\xea\x23\x28\xc8\xf9\xf4\x64\x4c\x83\x82\x68\x1e\xdb\xd9\xee\x1f\x75\x62\x7b\x9d\xed\xac\x63\x7b\x3d\xeb\xc9\x46\x89\x29\x0a\xcf\x79\x77\xe2\xf0\x1e\x9e\xf3\x4e\xd6\x9f\x79\x78\xce\xbb\xeb\x93\xc0\x2e\x7b\xd1\x7f\x21\x8b\x9b\xea\x44\x16\xf0\x8a\xc7\xa6\xb8\xbb\x3e\x1e\x6c\x36\xac\x85\x06\x7b\x7c\xe7\x9a\x4b\x73\x6c\xb6\xc2\x6d\x8e\xcd\x76\x7d\x3c\x8e\x64\x20\x7d\x0f\x5f\x79\xe7\x2a\x4b\x73\xcc\x34\x19\x81\xe6\x98\x69\xc7\xfc\xb9\x23\x35\x5e\x4b\x77\xa4\xd6\x17\x82\x09\x77\xb0\x0c\x6c\xf5\xdd\x27\xb3\x89\xf1\x75\x4c\x9c\x57\xc6\x4c\xcb\xbd\x32\x66\x9a\xe9\x4a\x7b\xf8\x30\xe1\xae\xef\x4e\xd8\x13\xee\xfa\x4e\xbe\x9e\xc1\x5d\xdf\x2b\xdb\x60\x8f\xe3\x6b\xbd\x6a\xa1\x62\x7c\xab\x66\x0c\xe3\x4b\xf6\x9e\xc1\x72\xdf\xab\xc6\x1a\xe3\xab\x10\x97\xc7\xf1\xb5\x5e\xd9\x3d\x38\x06\xb6\x72\xbe\xc4\x31\xb0\x95\x5d\x80\x63\x60\x2b\x20\xc1\x31\xb0\x15\xa4\xef\x71\xa5\x4d\x57\x00\xca\x31\xb0\x75\xea\x3d\xda\x63\x27\xea\x83\xf6\xf4\x5d\xc7\x46\xbb\x57\xc2\xc8\x1e\x1b\xed\x4e\x56\x9c\x79\x6c\xb4\x7b\x3d\x7a\xd2\x28\xd1\x07\xcc\x74\xbd\x7a\x8f\x71\xc1\xa0\xfb\xa0\x0f\x18\x74\xc7\x84\x37\x1c\x09\x8e\x09\xe7\xd2\x4b\xf3\x08\xe0\x77\xae\xb2\x34\x8f\x2d\x79\x6f\x1a\xc1\xd8\x92\xf7\x86\x8f\xd6\x63\x4b\xde\x9b\xc6\x0c\xd3\xdf\x38\x59\xe0\xe1\x47\xef\x4d\xea\x2c\x0e\xc1\xf5\xc6\x79\x1d\x8f\xe0\x7e\x57\x64\xc7\x23\xb8\xdf\x1b\x8e\x04\x8f\xe0\x7e\x6f\xf8\x61\x3d\x12\xa2\x7a\x6b\x7a\xb2\x51\xd2\x93\xf4\x81\xdd\xa6\x03\x27\x5a\xa7\xb7\xc0\x89\x36\xd4\x1e\xfd\x93\xc9\x01\x4e\x28\xce\xe3\xc0\x89\xa6\x2f\x72\xd2\x3f\x69\xa2\x49\xff\x70\x7b\xf9\xa2\x7f\xd2\x21\x8b\xfe\xb1\xeb\x77\x60\x48\x23\x84\xe7\xc0\x90\x26\x43\x02\x0c\x21\x31\xcd\x1c\x18\x12\x89\x69\x7f\x56\xc9\x11\x0a\xe8\x1d\xcc\xe5\xe1\x80\xe8\xfd\x53\x73\xd1\xbd\x2e\x1b\x03\x7a\xe9\x6c\x79\x1c\xf4\xd2\x8b\x9a\x8b\xee\x75\x53\x17\x2e\x25\x9e\x8c\xb8\x7f\xef\x9a\x22\x90\x4d\x97\x9a\x00\xd9\x74\xd9\x9f\x8d\x2c\x04\x99\x7c\xd3\xba\x26\x6c\xd3\x7a\xd5\x93\xb4\xce\xd6\xda\x37\xad\xb3\xb5\xf6\x4d\xeb\xa0\x09\x3f\xb4\x0e\xd6\xf6\x43\xeb\xa0\x33\x07\x1f\x75\x4d\xe6\xa1\x75\xb0\x9a\x83\x96\x3a\x68\xc2\x0f\xb2\x4c\xbd\x87\x2c\x6c\x87\xfc\xd0\x1e\x67\x33\x1c\x5c\xd5\xb5\x8c\xc0\x4e\x5d\x0b\x07\xec\xd4\xc1\x63\x0e\x76\x52\x38\xca\x2f\x2d\x3c\x95\x68\x41\xa8\x00\x5c\x35\xf0\x76\x3a\xb8\x6a\xb0\x65\xf5\x70\x24\xf4\x21\xa5\x0f\xae\x1a\x1c\x90\x73\x70\xd5\xd0\x8c\x81\xab\x86\x30\x42\x38\x12\xfa\xd0\xfc\x85\x23\xa1\x0f\x99\x00\x30\x17\x97\x49\x9a\x83\xb9\x86\x16\x15\x98\x6b\x54\xfd\xb7\x28\xa9\x3d\xe4\xd4\x3c\x3c\xe4\x6c\x7a\x2f\x46\x49\xe1\x28\x8f\x88\x42\x1f\xf8\x4c\x2b\x08\x6c\x30\x2b\x35\xd1\x07\x4c\x40\x4d\xf4\x61\xe8\x49\xfa\x00\xfe\xab\xa0\xb3\x01\x10\xa8\x20\xb0\x01\x10\xa8\x20\xb0\xc1\x82\xab\x09\x39\xc1\x7f\x35\x21\x27\x07\xb3\x6a\x42\xce\xa3\xf7\x90\xf3\xaa\x3d\xe4\xc4\x68\x57\x90\x1b\x17\x3f\x5a\x05\xb9\x29\x54\x55\x41\x6e\x0a\x4e\xd5\x88\x28\x74\xf2\xe7\xac\xe2\x8e\x98\xb8\x1c\x6a\x44\x14\xfa\x24\x64\x58\xc1\x78\x64\xd3\x59\x05\xb9\x4d\x9c\x75\x15\xe4\x36\x3f\xa4\x06\xb9\x4d\xd6\x66\x05\xb9\x91\x4d\x67\x15\xe4\xc6\x85\x91\x56\x41\x6e\x93\xaf\xa0\x82\xdc\x26\xe6\xa8\xe2\x9c\x50\x88\xab\xe2\x9c\x98\x04\x80\x2b\xa8\x8e\xab\x25\xad\x02\xcf\x26\xc6\xa9\x02\xc1\x26\x2b\xb5\x02\xc1\x26\x0e\x88\x0a\x04\x9b\x78\xce\x6b\x41\x16\xd4\x6e\x2d\xc8\x42\x68\xac\x02\xa5\x26\x6e\xaf\x0a\x94\x9a\x4d\xff\xc5\x8c\xcd\xae\xff\x68\x0f\x58\x50\x81\x4b\x53\x5f\x01\x70\x49\x71\xac\x6a\xb4\xc7\x2e\xa0\x1a\xed\xb1\x6e\x2b\x90\x68\x4e\xfd\x47\x7b\x84\x3d\x2b\xae\x8a\x49\x58\xbe\x02\x97\xa6\xbe\x1e\xe0\xd2\xc4\xc7\x5e\x81\x4b\x73\x31\x7f\x40\xa2\x09\xa8\xac\x40\x22\xc5\xc6\x2a\x90\x48\xd1\xb0\x0a\x24\x9a\x98\xdb\x0a\x24\x9a\x7f\xbb\xc2\xde\x2a\x1e\x8e\x89\x42\xa9\xce\xc7\xa3\xcf\xd3\xf9\x78\xd8\x82\x54\xb0\x13\x57\x67\x5a\xc5\x55\x31\x9f\x4a\xd4\xc2\xc1\x9e\x0a\x06\x9a\xd8\xe5\x1a\xee\xfe\x4e\x02\xa2\x55\x30\xd0\xd2\x07\x89\xab\x62\xa1\x5e\x6a\x9c\x2c\xe8\x0b\x97\x7e\x8d\xd3\x03\x7d\xe9\x83\xc4\x8d\xa1\xd0\x58\x05\x2d\x2d\x36\x8d\x35\x0e\xfb\xf7\x85\xb7\xac\x82\x96\x14\x28\xab\xb8\x31\x16\xca\xa6\xe2\xc6\x50\xa0\xac\x82\x96\x96\xab\x96\x47\x89\x3e\x80\x96\x16\x67\xab\x6b\x9c\x25\xe8\x4b\x9f\x59\x9c\x25\xe8\x0a\x9b\x55\xdc\x18\x0b\xeb\x5e\x71\x63\x2c\x0c\x42\x05\x65\x29\x6c\x56\x41\x59\xab\xd3\x07\x50\xd6\xea\x6a\x0f\x39\x87\xfe\x63\x24\xa4\x7a\x40\x59\x0a\x9b\x55\x50\xd6\xc6\x3b\x5e\x41\x59\x1b\xc4\x57\x41\x59\x5b\xbd\x05\x65\x6d\x4c\x63\x05\x65\x71\x05\xa6\x55\x50\xd6\xc6\x1b\x58\x41\x59\x1b\x3f\x73\x05\x65\x91\xe7\x67\x15\x94\xb5\x35\x2e\xa0\xac\x5d\xd5\x42\xc8\xb9\xc1\x2b\x15\x24\xb5\xd5\x23\x90\x14\x19\x7a\x56\x31\xda\x0a\x16\x55\x8c\xf6\x66\x5f\x53\x71\x47\x90\x69\x67\x75\xd3\x23\x76\x39\x75\xd3\x23\x36\xbe\x75\xd3\x23\x7c\x7c\x15\x63\xcf\xe5\x95\x56\x37\x72\x72\xc4\xb0\x6e\xe4\xbc\xaa\x65\x50\x62\x1e\x30\xf6\x5b\x8a\x16\x37\xc6\x91\xfa\xc4\x84\x2b\xe4\x54\x31\xe1\x47\x0a\x13\x13\x7e\x38\x71\x51\x31\xe1\xa7\xaa\x96\x46\x49\xff\x75\x4a\x2c\x46\xcc\xfb\x01\x40\xd4\x88\x36\xf4\xa3\x2f\x24\xa2\x0d\xfd\x48\x11\x61\xde\x8f\x46\x30\xa2\x0d\xfd\xb0\x2f\xad\x11\x6d\xe8\x07\x17\x5c\xc5\xf4\x1f\x29\x1b\x5c\x2a\x67\xe9\x3f\xfa\x20\x73\x04\x2c\x38\x04\xed\x2a\xb0\xe0\xb0\x13\xad\x17\x39\xb5\xfa\x2f\x72\x82\xc3\x2b\x20\xe1\x10\x42\xaf\x80\x84\xa3\xd5\x0f\x48\x50\xec\xa8\x02\x12\xc8\x8a\xb3\x7a\xe9\xc3\x55\x9d\xf4\x81\xb3\x43\x15\xc7\xcc\xd5\x58\x03\x20\xa0\x87\xb3\x0a\x80\xb8\x32\x24\x00\x88\xcb\x79\xfb\x0a\x80\xb8\x04\xf4\x2a\x00\xe2\x72\xac\xaf\x02\x20\x2e\x00\xa2\x02\x04\x2e\x90\xaf\xe1\x8a\xb9\xac\xcd\x86\x2b\xe6\x82\xbc\x1b\x40\xe0\x02\x12\x1a\x40\x80\xfb\x23\xad\x01\x04\xb8\x3f\xd2\x1a\x40\xe0\x02\xdd\x1a\xa6\xff\x62\xd0\x1b\x26\xfc\xa2\x31\x1b\x26\x1c\x4a\x36\x6b\x98\xf0\x8b\x63\xa6\x61\xc2\x23\x6d\xec\x8f\x2a\xb9\x7d\x08\xf6\xf4\x1a\x82\xa1\x4c\x1b\x96\xff\x11\x6c\x68\x58\xfe\x07\x9e\x6e\x58\xfe\x87\x97\xad\x61\x6d\xe1\x75\xb3\x86\xb5\x7d\xa8\xc8\x86\xb5\x7d\xe0\xb1\x86\x45\x7d\x28\xc5\x86\x45\x7d\xe0\xe2\x86\x45\x7d\xe0\xb1\x16\xf1\xfb\xae\x6c\xb3\x86\x53\xe3\xf1\x41\x36\x9c\x1a\x8f\x4d\x71\xc3\xa9\xf1\xf8\x3c\x1b\x96\xf8\x4d\xd5\x49\x7b\x5b\xb5\x5c\x4a\xf4\x01\x6b\xab\x70\x4d\xc3\xda\xc2\xac\x66\x0d\x6b\xfb\xd8\x42\x36\x82\x06\x70\x97\x5b\xc3\x71\xf1\x58\xe0\x0d\xc7\x85\x82\x37\x0d\xc7\xc5\x63\x23\xd3\xb0\xd2\x8f\x6d\x77\xc3\x4a\x2b\xb0\xd3\xb0\xd2\x5c\xa8\x68\x2d\xac\xed\x48\xa0\xac\x16\xd6\x76\x28\x17\xac\x85\xb5\x1d\xb0\xa7\x59\x0b\x27\xc3\x48\x78\x34\x5b\xe5\x3f\x8e\xf9\xb4\x30\x86\x23\xf1\xe9\xb6\x70\x08\x8c\x04\x2e\x6e\x11\x25\x1f\x70\x9e\x5b\xab\xd4\x52\xf4\xde\x8e\x12\x1e\xcd\xd6\xa8\x45\x9f\x75\xe3\x3f\x1c\x1e\x2d\x5c\x00\x23\x81\x7a\x5a\x47\x6a\x70\x71\xeb\x48\x0d\x06\x6a\x61\xaa\x46\xc2\x25\xd6\xc2\x74\x0c\xe5\x7b\xb5\xc1\x7b\x20\xe1\x36\x78\x0f\x67\x48\x1b\xf4\x08\x0c\xd4\xc2\x74\x8c\x84\x5a\x6a\x83\x1e\x69\xde\x07\x3d\xd2\xbc\x0f\x7a\x34\xd5\x02\x72\x2e\xd5\x72\x29\xe9\xc9\x17\x25\xdc\x26\x30\x4c\x8e\x84\xb1\x68\x13\xc9\x50\xfa\x6d\x22\xd9\xd5\x93\x48\x86\xea\x69\x13\xc9\xf4\x15\x4c\x7a\xcb\xc1\x3a\x78\x2a\x87\x02\x3b\xf0\x54\x8e\x0f\x07\x4b\x8b\x6d\xf7\x80\x30\xcd\x5a\x6c\xbb\x07\x37\x31\x5a\x8b\x6d\xf7\xf8\x38\xbd\xd3\x62\xdb\x3d\xb8\x89\xd1\x5a\x6c\xbb\xc7\x97\x55\x67\xf4\x0f\xfa\x34\x6b\xb1\x45\x1e\x90\xa2\x19\x8c\x96\xe3\xd3\xca\x59\xb4\x07\x80\x68\x8b\xf6\x34\x47\x8b\x3a\xa5\x88\x16\x75\x12\x60\x6b\x61\x36\xc7\xc7\xde\xa5\x85\xd9\x1c\x9f\xd4\x52\x98\xcd\xa1\xe4\x2c\x98\x30\xc7\x87\x13\x13\xb6\xcb\xa1\x24\xab\xb6\x69\x4f\x0a\x6c\xd3\x3f\x50\x24\x6c\x97\x03\xca\x32\x6b\x87\x51\x42\xcd\xb7\x83\xd4\x9c\xe9\x80\xdf\x72\x28\xd2\xd2\x0e\xb5\x68\xac\x63\xcf\x3a\xb2\x56\x47\x98\xb1\x91\xb5\x3a\xc2\x8c\x8d\x8c\xd2\x6f\x61\xc6\x06\x77\x1a\x1a\x4c\x98\x23\x13\xfc\x6e\x61\xaa\x86\xa2\x29\x30\x61\x8e\x2c\x2d\x15\x41\xf3\x91\x5d\x75\x76\x4a\x8c\x4b\x98\xb1\x91\x5d\x2d\x84\x64\x59\x23\x1f\xc6\x69\x64\x20\x58\xbb\x48\xd6\xff\x72\xed\x90\xb5\x87\xd0\x58\xe9\xf6\x10\x5a\x8b\xe3\x21\x34\xdb\x05\x88\x37\x47\x06\xb9\xb5\xb0\x69\x23\xb3\x5d\x68\x8f\x0e\x69\x52\x1e\x1d\x5a\x7a\x0f\xa1\xd9\x04\xb4\x87\xd0\x5b\x4f\x32\x9c\x58\xe9\x16\x1b\xdf\x91\x65\x71\xc2\xde\x8d\x8c\x7f\xac\x3d\xba\xa7\x49\x79\x74\x8f\x2d\x24\x44\x9f\x23\xe3\x05\x86\xe8\x73\x14\x50\x39\x44\x9f\xa3\x80\xc3\x21\xfa\x1c\xe5\xd3\x7b\x46\x69\x52\x0a\xc9\x4a\xd6\x7b\x8b\x52\xa5\xb4\x29\xe9\xbd\x43\x29\x26\x05\x4a\xd0\x51\x40\x9f\xfd\xa3\x05\xce\x4f\xf7\x8f\x16\x38\xb0\x06\x5d\xe8\x28\xae\xf7\x62\x94\xb8\x42\xd1\x7a\x6c\x67\x87\xb2\xb1\xa0\x12\x1d\x85\x93\x1a\x50\x89\x8e\xd2\xf4\x24\x72\x76\xfd\x87\x9c\x43\x2d\x20\x27\x73\x04\xcd\xe8\x80\x25\xcc\x7a\x6c\x7c\x47\xc1\xa8\xf5\xd8\xf8\x0e\x65\x63\xf5\xcc\x28\xb1\x89\xeb\x99\x3e\x90\x8f\x08\x05\xe9\x28\x98\x2a\x28\x48\x47\x41\x65\x41\x41\x3a\xb8\x34\xd1\xa0\x20\x1d\x85\x19\x83\x82\x74\x14\x0e\x15\x42\x41\x3a\x4c\xb3\x12\x71\x89\x61\x9a\x87\xd8\x14\x0f\x63\xdb\xdd\x63\x53\x3c\x4c\xa3\x1b\x26\x7c\x58\xd1\x7f\x97\x92\xde\x8b\x3e\x18\xf8\xa8\x87\x09\x1f\x0a\xc2\xf4\x88\x59\x0c\x63\x7f\xd2\x23\x66\x31\x0c\x27\x0a\x24\xa7\xc3\xc1\xa9\x90\x9c\x0e\x08\xa2\xac\x87\x79\x1f\x8e\x4b\xa5\x87\x79\x1f\x8e\x92\x82\x00\x75\x78\x57\x0b\x93\x92\xea\x0c\x59\x9c\xf5\x00\xc9\xe9\xf0\xa9\x92\x51\x42\x16\xa3\x75\x54\x16\x44\xa6\x43\x89\x2a\x10\x99\x0e\xc7\x3c\x40\x5d\x3a\xa0\x92\x32\xa8\x4b\x47\xfd\x54\x8a\xaf\xbc\x12\xc1\xe8\x98\xf0\x0a\xc2\x84\xd6\x74\x54\xcc\x74\x8f\x0d\xf3\x80\x2e\xca\x7a\xec\x8a\x87\xd2\x48\x7a\x44\x14\x86\xd2\x48\x3a\xc6\xbe\x6a\x3c\x23\x4e\x30\xe4\x55\x87\xc8\x74\x54\x5c\x54\x1d\x63\xaf\x04\x90\x8e\xb1\xaf\x84\x21\xa1\x2e\x1d\x55\x23\x1f\xbb\xd4\x51\xf5\xd5\x61\xd0\x2b\x66\xb3\xc7\x2e\x75\x54\x8d\x44\xec\x52\x47\x5d\x8c\x44\xa7\xb7\x0b\x39\x3b\xed\xa1\xbc\x61\xfa\x1c\xf2\xb1\x77\x0c\xb3\x12\x32\x7a\x78\xc7\x47\x7d\xfa\x6f\x53\xa2\x16\xcc\xb4\xfc\xe8\x1d\x53\xdc\x88\x16\xc1\xf4\x39\x1a\xfb\x21\x98\x3e\x07\x74\x51\x06\xd3\xe7\x68\x18\x4a\x98\x3e\x87\xbc\xea\x1d\x53\xac\x1c\x8c\x8e\x29\x6e\x18\xd1\x8e\x29\x86\x2e\xca\x3a\xa6\xf8\x07\x69\xfe\x59\x25\x77\xac\x74\x2b\x6a\x6e\x52\x62\x38\xb1\xd2\x4d\x13\x86\x95\x6e\x9a\x30\xac\x74\x93\x22\x0a\xe7\xf8\x68\xae\xee\x3d\x4a\x74\x68\xd1\x75\x5c\x00\x7d\xd1\x75\xac\x0a\x84\xa4\xa3\x81\xb9\x20\x24\x1d\x5c\x66\x67\x10\x92\x0e\xb9\xfb\x21\x24\x1d\x4d\xcb\x08\xcb\xdf\x40\x60\x10\x92\x0e\x25\x79\x40\x48\x3a\xe4\xee\x87\x90\x74\x34\x2d\x1c\x50\x01\xe4\x51\x06\x21\xe9\x68\x5a\x38\xa0\x82\x36\x55\x0b\x7d\xd0\x32\x02\x15\x34\xb6\x7b\x90\x95\x0e\x68\xa6\x0c\xb2\xd2\xd1\xd8\x76\x43\x56\x3a\x9a\x96\xd1\xa6\x7f\x4f\xff\xd1\x3f\x29\x29\xd0\x84\x9c\xff\x3d\x3c\xe0\xa3\x83\x92\x7b\x1c\xcf\x1b\x9d\x0d\x5e\x8f\x63\xf3\xa3\xe3\x8b\x84\xba\x74\x74\xd0\x12\xd4\xa5\xa3\x6b\xda\x41\x0c\xf2\xf0\xf7\xd8\x22\x0f\xf9\xf4\x21\x2b\x1d\x5d\xe6\x01\xc4\xd0\x71\xda\x74\x10\x03\x54\x52\xd6\x63\xe3\x3b\xba\xe6\x28\x36\xbe\xa3\x93\xda\xd0\x41\x13\x9d\x80\x57\x07\x4d\xc8\xc3\xdf\x41\x13\x4a\x31\x81\x00\x75\x74\x8d\x2e\x68\xa2\x4f\xfd\x17\x73\xd4\xb5\x18\x2f\x52\x6f\x49\x86\xd4\x52\x52\x60\x0b\x79\xe3\xa1\x3c\x1d\x1d\x97\x03\x44\xa6\x63\xb0\x8b\xeb\x18\xf4\xa1\x51\xc2\xa0\xcb\xe3\x0e\xad\xe9\x18\x5a\x70\x18\xf4\x81\x41\x80\xd6\x74\x0c\x16\x15\xb4\xa6\x63\xe0\x20\x1b\x18\xf4\x91\xf5\x64\x8c\xcb\x00\x49\x0d\x0c\xfa\x00\x49\x41\x79\x3a\x06\xa3\x0b\xe5\xe9\xe0\x8e\x3a\x83\xf2\x74\xc8\x03\x0e\xe5\xe9\x80\x6a\xc9\xa0\x3c\x1d\x83\xf3\x25\x50\x9e\x0e\xee\xa1\x33\x28\x4f\x07\xc4\x4b\x36\x30\xef\x4a\xf2\x18\x98\x70\xa5\x75\x0c\x4c\x38\x37\xcf\x19\x74\xa8\x43\x49\x1e\xd0\xa1\x8e\x71\xf4\x24\xed\xe1\x8e\x18\x18\x66\xa5\x7c\x8c\x4c\x7b\xe0\xfe\x91\x19\x09\x5c\x93\x03\xa3\xcd\xcd\x73\x06\x8d\xea\x80\x24\xc9\xa0\x51\x1d\xf2\xa3\x0f\x0c\x33\xf7\xc9\xd9\xc0\x30\x4f\x0c\xec\xc0\x30\x4f\xbe\xd6\x81\xf1\x9d\xa6\xd2\xa1\x54\x28\x5d\x4a\xf4\x01\xe3\x3b\x01\x3a\x10\xae\x8e\x89\x63\x0d\xc2\xd5\xa1\xb4\x8e\x81\xf1\xe5\x76\x39\x1b\x18\x5f\x98\x90\x6c\x60\x7c\x67\xd5\x7b\xc8\xa2\xd1\xc5\xc0\xce\xa5\x12\xb2\x1c\x95\x90\xe5\xea\x3d\x64\xe1\x88\x00\x94\xae\x63\x01\xeb\xa0\x74\x1d\x0b\x95\x0c\xa5\xeb\x80\xd1\xc8\xa0\x74\x1d\xab\xfc\x85\xe8\xc9\x60\x7b\x1d\x8b\xed\xec\x88\xcd\xf4\x58\x1c\xc2\x19\xe1\xf2\x1e\x4a\x4a\x80\xed\x75\xc8\xd7\x0a\xdb\xeb\x58\x55\x4f\x86\xd0\xab\x4b\xcc\x10\x7a\x81\xb5\x61\x7b\x1d\x8b\x18\x28\x6c\xaf\x63\xa1\xf8\x60\x7b\x1d\x90\x16\xd9\xc0\xba\xeb\xe8\xff\xc0\xba\x2f\x3c\xd9\x03\xeb\xae\xc3\xfe\x23\x7c\xde\x63\xb1\x85\x84\x25\x76\x6c\xb6\x2e\xb0\xc4\x8e\xcd\x62\x84\x25\x76\xe8\xe8\xff\x08\x7f\xf8\xd8\x6c\x13\x47\x9c\x25\x18\x3b\xab\x14\xfd\xdb\x45\x4f\x1e\x4a\x92\x33\xfa\xb7\xd9\xd8\x43\x21\x3b\xb6\x16\x63\x1c\x07\x1c\x5b\x9f\x44\xf8\xd8\xc7\xd6\xf4\xc5\x71\xc0\xa1\x23\xf5\x03\x27\xc3\xbe\x7a\x2f\xfa\x00\x39\x8f\x0d\x70\xc7\x49\xfa\x2f\xfa\xc0\x6d\x61\x36\x70\x32\x9c\xac\x27\x27\x25\xfa\x1e\xbe\xf9\x71\x24\x27\x0e\x88\x83\x69\x1c\xe0\x95\x83\x5b\x68\x44\xde\xfe\xe0\xd6\x2f\x1b\x71\xf5\xe9\x38\xb8\x1c\x20\xbe\x1d\x87\x33\x01\x23\xbc\xf8\x83\xfb\xba\x6c\x84\x17\x7f\x1c\x82\x99\x23\xbc\xf8\xe3\x6c\x95\xa2\x0f\x87\xc3\x65\xa3\xd1\x87\xa7\x3a\x43\xb2\xab\x8f\x15\xf7\x87\xfc\x86\x03\xb4\x74\xd9\x13\x40\xb4\x3b\x74\x96\x1b\xa2\xdd\x71\x41\x59\x03\xb4\x74\xc1\xb7\x10\xed\x0e\x98\x5f\x0c\xa2\xdd\x71\xa5\xce\x70\x94\xe8\x62\xaa\x11\x3e\xfd\xa1\xab\xa8\x46\xf8\xed\xc7\x05\x73\x41\xc2\x3b\xe0\x7a\x31\x48\x78\xc7\x65\x4f\x00\xd1\xee\xd0\x95\x52\x10\xed\x8e\x8b\xfb\x0a\xa2\xdd\x71\xb5\x50\x71\xb0\x5c\xf6\x0b\x03\x07\xcb\xd5\x17\x39\x90\xe5\xe9\xbd\x98\xcd\x97\xf4\x64\xc8\xf2\x30\x0f\x50\xeb\x0e\x5d\x30\x05\xb5\xee\x90\x93\x6f\xe0\x6e\x81\x5f\xc5\x06\xee\x96\x87\x73\x02\x6a\xdd\x21\x27\x1f\xd4\xba\xe3\xe1\xe1\x87\x5a\x77\x3c\xcc\xe6\x00\xe3\x3d\xf0\xed\x00\xe3\x3d\x7d\x05\x60\x3c\x9d\x2b\x1f\x60\xbc\x07\x98\x19\x60\x3c\x5d\x22\x05\x25\xef\x78\xb8\x93\xa0\xe4\x1d\x6f\xa8\x96\x9f\x3e\x14\x1b\x6a\x61\x45\x49\xdf\x44\x00\xb9\xa2\x84\x7f\xe8\x7a\x8b\x4e\x27\x41\xd7\x5b\x74\x7e\x06\xba\xde\x52\xa5\x51\xe2\xec\x42\xe1\x9e\x65\x83\xa0\xb7\x34\x82\x99\x10\xf4\x96\x96\xf5\x64\x8d\x12\x0e\x08\x08\x7a\x4b\x23\x14\x07\x41\x6f\x11\x98\x81\xa0\xb7\x74\x99\xe2\x80\x6e\x05\xbe\x49\x83\xa0\x37\x08\xe6\xa3\x14\x52\x77\xad\xdb\x80\x6e\x45\xc1\x76\x08\x7a\x8b\x72\x31\x21\xe8\x2d\xca\xc5\x84\xa0\xb7\x28\x6c\x0d\x41\x6f\xf0\x33\x47\x29\x47\x69\xfe\xed\x10\xdc\x08\x54\x17\xc4\xc3\x51\x8a\xae\x4f\x30\xf3\x08\x54\x57\xe0\xd0\xb3\x11\xa8\x2e\xe8\xeb\xa2\x14\x5d\x57\xae\xdb\x88\x60\x4a\x59\x49\xa2\x44\xd7\x97\x06\x30\xfc\x47\x41\xd7\x15\xa5\xe8\xfa\x7a\xfa\x2f\xba\xbe\x3f\xb5\x10\x5d\x87\xad\xcd\x46\xe0\xc6\xb2\x41\x83\xb0\x0a\x07\xcd\x43\x94\xa2\x7b\x5c\x7e\x68\xb0\x0a\x97\xa3\xcf\x33\x42\x32\x71\xbb\x7a\x94\xa2\x0f\x07\x5f\x32\xac\xc2\x71\xb1\x6f\x94\xa2\x0f\x50\x2d\xd9\x08\xbc\x59\xae\x30\x42\x78\xaf\xe2\xd2\xd8\x28\x45\x1f\x20\x50\xb2\x11\x58\xd4\x74\x43\x17\x6c\xc4\x71\xe9\x5b\x94\x4e\x94\x64\x97\x23\x5c\x63\x49\xaa\x2e\xfc\x5c\x71\x0f\xd3\x4f\x29\x50\xab\xc1\xc4\x62\xb0\x11\x9b\x2e\x3d\x82\x8d\xd8\x74\x16\x18\x36\x62\x2b\x52\x28\x81\x5a\x23\x3f\x26\x4a\x1e\x25\x7d\x3c\x81\x5a\x23\x0f\x24\x4a\x3f\xfd\x33\x63\xeb\x09\x1b\xb1\xb9\x8c\x53\xa0\x56\xd3\x2d\x0c\xb0\x11\x47\xf8\x3f\x4a\xd1\x3f\x6d\x21\x61\x23\xb6\x2a\x05\x16\xa1\x1c\xd3\x31\x2d\xd8\x88\x23\x9a\x15\xa5\x47\x89\x31\x0b\x97\x98\x35\xcd\x5f\xb8\xc4\xc2\x69\x1d\xa5\xe8\x5f\x93\xda\x0d\x97\x98\xe9\xe0\x12\x4c\xc5\xd6\xf1\x5d\xc3\x54\x6c\xbf\x0b\x27\x5c\x62\xd6\x85\x37\x23\xcc\x13\xbb\xc5\x28\x45\xff\x74\xf6\x64\x04\x82\x0e\xad\x16\xa5\xe8\xdf\x2f\xfa\x0c\x77\x99\x41\xc3\x69\x30\x1c\xdb\xd4\xb8\x04\xba\xb6\xf9\x2b\x75\xf4\xef\x17\x3b\x05\xba\xb6\x09\xa6\x84\xfd\xd8\x26\x4a\x18\xf6\x63\xe3\x4e\x5d\x83\xfd\xd8\x16\x87\x11\x61\x3f\xb6\x15\xac\x29\x06\xc3\xb1\xc9\xdc\xc2\x70\x6c\x70\xb7\x19\x0c\xc7\x76\x3f\xb5\x10\x7d\xb8\x59\xff\x4d\x4a\x7a\x2f\xe4\x54\x0a\x14\xec\xc7\xa6\x14\x28\x28\x8e\x4d\x77\x36\x42\x71\x6c\x17\x87\x0e\x34\xc6\xa6\x7b\x19\xa1\x31\xb6\xcb\xac\x40\x55\x6c\x17\x33\x3d\x03\x6b\x9b\x02\x5e\xd0\x11\x9b\x52\x99\xe6\x47\x7b\x20\xfd\xf9\xd1\x1e\x0a\x1a\xaa\x62\x93\x69\x84\xaa\xd8\x2e\xae\x8a\x19\x58\xdb\x2e\x0e\x32\xa8\x8a\xed\x82\xf4\xa1\x2a\xb6\xcb\xa9\x98\x99\x91\x85\x7d\xe9\xcc\x8c\x0b\x2e\x4d\x68\x8c\x4d\xc6\x10\x1a\x63\xbb\x38\xcf\xa0\x31\xb6\x7b\xf5\x1f\x7d\x40\xdb\xcc\x4c\x1f\xf0\x41\xcf\x4c\x1f\x58\xe1\x10\x1e\xdb\x03\x40\x40\x78\x6c\x0f\x34\x0f\xe1\xb1\x3d\xe2\x2e\x10\x1e\xdb\xc3\x77\x00\xe1\xb1\x29\x36\x36\x03\x87\xdb\x23\xeb\x02\xc2\x63\x93\x31\x84\xf0\xd8\x5e\xfb\xdb\x1d\x17\xd3\xa8\x12\x4f\xda\x34\xaa\xc4\x77\x06\xfb\xb1\x29\x8f\x0a\xf6\x63\x93\xd5\x84\xfd\xd8\x1e\x0e\x7e\xd8\x8f\x4d\x39\x56\xb0\x1f\x9b\x2e\x62\x84\xfd\xd8\x94\x71\x05\xfb\xb1\xc9\xbe\xc2\x7e\x6c\xca\xb8\x82\xfd\xd8\x94\x71\x05\xfb\xb1\xe9\x5a\xc6\xe9\x0c\x19\x6a\x69\x3a\x43\xc6\x46\x6d\x3a\x43\x46\xd0\x6e\x3a\x72\x6a\xfa\x1c\x59\x8e\xde\x43\x16\x4d\xa6\x23\x0b\x01\x05\xd8\x8f\x4d\x61\x3a\xd8\x8f\xed\x81\x73\x60\x3f\xb6\x87\x01\x9a\x15\x59\x08\x82\xce\x40\xc2\x9e\xf0\x50\xcd\x40\xc2\x9e\x08\x82\x4e\x88\x30\x13\xc7\xd7\xc4\x9a\xac\x2b\x1b\xc5\x9a\xac\x6b\x19\x27\x64\x97\x29\x23\x75\x20\x61\x87\x05\xcd\x66\x20\x61\x4f\x1c\x86\x17\xbf\xb2\x02\x7a\xe2\x57\x4e\xfa\x78\x20\xc2\x4c\x26\xa9\x1f\x25\x46\x1e\x22\xcc\x04\xe6\x9a\x81\x92\x3d\x49\x69\x34\xfa\x80\xab\x49\x4c\xcc\x09\x1c\x30\x03\x09\xbb\x8c\xcc\x84\x24\x33\x55\x3d\x49\x1f\xf4\xd1\x41\x92\xa9\xcb\x1d\x67\xa3\x0f\x5a\xe0\xf0\x39\xa7\xae\xf6\xe8\x03\xae\x26\xf1\x39\xeb\x3a\x47\xf1\x39\x27\x7d\x4b\x10\x68\x2a\x8b\x6b\x42\x84\x99\x38\x67\x3a\x21\xc2\x4c\xec\xb1\x26\x44\x98\xca\xd4\x9a\x10\x61\x26\x2d\x70\x58\xa1\x13\x89\x23\x62\x85\x4e\x5b\xb5\x20\xe7\xd6\x7b\xc8\x79\x54\x42\x4e\x7d\x3d\x1d\x39\xaf\xde\x43\xce\x2b\xc9\x90\x93\x1d\xd0\x1c\x8c\x35\x27\x59\xe7\x60\xac\xa5\x26\x06\x63\x2d\xc5\x30\xf8\x5e\xf4\x2d\x41\xbc\xf9\xe9\x7b\x89\x60\xa6\x7f\x04\x79\x67\x60\x6d\xff\xd8\xfd\x89\x31\xfa\xd3\xf7\x02\x83\xa6\x02\x81\x62\x85\x56\x1a\x97\x58\xa1\x3f\x8e\xbd\x89\x15\xfa\x23\xf4\x3e\x61\xd0\xfc\xf0\xd4\x4f\x58\x32\xbf\xa2\xf7\x36\x25\xc6\x0c\x96\x4c\xdd\x03\x29\xc6\xe8\x8f\x1d\xb3\x18\xa3\x3f\xf0\xad\x18\xa3\xbf\xa6\xff\x90\x85\x33\x39\x62\x8c\x56\x00\x51\x8c\xd1\x1f\x51\x11\x31\x46\x2b\xfd\x4b\x8c\xd1\x1f\x3b\x6d\x31\x46\x7f\x44\xb5\xc4\x18\xfd\xe1\xb7\x9f\x0b\x39\x31\xbe\x62\x85\xd6\x9d\x8d\x62\x85\xfe\xa4\x19\xe0\xe1\xfc\xf0\xd4\x8b\xfa\x59\xf7\x32\x8a\xfa\xf9\xd3\xbc\xc3\xc3\xf9\xb1\x43\x17\xf5\xf3\xa7\xaf\x00\x1e\xce\x8f\x73\x3e\x13\x1e\xce\x4f\xf3\xbe\x91\x05\x58\x37\xe1\xe1\xcc\xb8\x77\x44\x0b\x9d\xbf\xbf\x85\xf7\xc4\x18\x0d\x5b\x9b\x89\xeb\x39\x6b\x49\x07\x6e\xf4\x6c\xfa\x6f\x50\xa2\x71\xe8\x3b\x33\xfe\x1c\xf1\x40\x2b\x26\x29\x1e\xe8\xac\x09\x3b\x08\x86\x4f\x78\x5e\x04\x63\xab\x34\x2f\xad\x6b\xfa\xa0\xfd\xcc\x9a\x3e\x68\x3f\x15\x5c\x9c\x81\xff\x5c\x17\x38\x8a\x31\x5a\x21\x43\x31\x46\x2b\x64\x28\xc6\xe8\xac\xa5\x02\x63\x74\xd6\x20\xc1\x18\x9d\xc1\x86\x33\x10\x98\xeb\xb2\xc5\x09\xed\x67\x61\x93\x33\xa1\xfd\x2c\xfa\xc8\xa1\xfd\x54\xfe\x95\xf8\xa3\x0b\xe7\x37\x27\xb4\x9f\x85\x90\xd3\x84\xda\xb3\xe0\x03\x9b\x50\x7b\x96\xaa\xf7\x1e\xa5\x68\x6f\x41\xed\x59\x40\x28\x0b\x6a\x4f\x05\xfb\xc4\x42\xad\x80\x9e\x58\xa8\x0b\xc7\x75\x56\xa2\xbd\xae\xff\xa2\xef\x65\xe8\xbf\x4d\xa9\x52\x42\x16\x36\xf6\x0b\x12\xd0\x32\xd5\x3a\xb2\xa0\xce\x56\x9c\xbb\x71\x5d\xa8\xb8\xa0\x04\x2d\xec\x33\x16\x94\xa0\xca\xdb\x5a\x1f\x63\xb6\xf5\x1f\x63\x76\xf4\x1e\x63\x06\x8a\x14\x5b\x76\x61\x1e\xc4\x96\x5d\xc0\x94\xeb\xa3\x0f\x57\xad\x87\x2c\xba\x42\x71\x05\xca\x72\x43\x11\xad\x40\x59\xae\x6c\xac\x15\x28\xcb\x0d\x73\xb4\xc2\xa3\xe9\xca\xcd\x5a\xd0\x93\x1a\xb3\xb2\xa0\x27\x55\x6e\xd6\x82\x9e\xd4\xf0\x5a\x2e\xe8\x49\xcd\xf4\x64\xa7\xa4\x3a\x43\x4e\x73\xbd\x37\x29\xd1\xa3\x40\x60\xae\x5b\x13\x57\x20\x30\x37\x0e\xc1\xad\x40\x60\xae\xbc\x2d\xf1\x7f\x5b\x55\x1f\xe8\x1f\xa6\x4a\xfc\xdf\xc6\x51\x2c\xf1\x7f\x2b\xf0\xb8\xa0\x3c\x35\x52\x76\x16\x94\xa7\xba\x7b\x71\x41\x79\xaa\xdb\x16\x17\x94\xa7\x86\x93\x61\x15\xfa\xd7\x55\x0b\xfd\xd3\x57\x50\xe8\xdf\x54\xeb\xf4\x0f\xa3\x26\xbe\x71\xdd\xbd\x28\xbe\x71\x9b\xaa\x85\xfe\x2d\x3d\x49\x1f\x30\x6a\xcb\x90\x05\x25\xb5\x0c\x59\x34\xd3\x86\x2c\x28\xa9\x65\xc8\x82\x47\x7a\x19\xb2\x80\x4c\x97\x21\xcb\x53\x9d\x21\x8b\x27\xbd\xb7\x28\xe9\xbf\x90\xc5\xd9\x4d\xaf\x80\x75\xae\x1b\x0e\xc5\x61\xee\x59\xb2\x3c\x4a\xcc\x26\x1c\xe6\x8e\x01\x12\x87\xb9\xe3\x03\x10\x87\xb9\xe3\xb2\x5d\x01\xeb\xdc\xf5\x85\x84\xd3\xd4\x1d\x24\x2c\x7e\x73\x07\xda\x88\xdf\xdc\xd1\x75\xe2\x37\x77\x57\x2d\xd1\x3f\x27\xa7\x52\x1c\xe6\x0a\x07\x8b\xc3\x3c\x92\xac\xfe\xa8\x92\x45\x53\xae\xd8\xb0\x68\xca\x9d\x8d\x85\x68\xca\x7d\xe9\x3f\x86\x0c\x9f\xdb\x02\xb9\x29\xe3\x4a\x14\xe6\x8e\x07\x4e\x14\xe6\xba\xc4\x50\x14\xe6\x30\xab\x99\x28\xcc\x75\xa5\xa1\x28\xcc\x1d\x85\xb9\x40\x6e\xca\xd4\x5a\x20\x37\x79\x9a\x44\x6f\x5e\x71\x1d\x88\xde\xbc\x12\x50\x58\xe0\xb1\xfa\xa9\xce\x45\x89\x0f\x04\x3c\x56\x41\x98\x22\x34\xaf\x5a\xe0\xd0\x94\x2b\xfa\x2c\x9a\x72\xe5\x74\x89\x8a\x1c\x0e\x36\x13\x15\x39\x1c\x6c\x26\xf2\xf1\x8a\x39\x5a\x60\x20\xf9\xc0\x16\x18\x48\xd7\x0f\x2e\x30\x50\xd5\xf2\x1b\x48\x4d\x0e\x92\x88\xc9\x61\x5d\x33\x11\x93\x57\x76\x2b\x0b\x7c\xa4\x8b\x0a\x17\xf8\xa8\x6a\x69\x86\x2f\xd2\xab\x96\xdf\xa0\x7f\x53\xff\xd1\x3f\xce\xba\xac\xf0\x45\x7a\xc5\x29\x25\xf6\xf1\x4a\xd0\x47\xec\xe3\xca\xfe\x12\xc3\x78\xe5\x04\xa5\x18\xc6\x75\xc5\xa0\x18\xc6\xab\x66\x05\xec\x54\xb5\xa8\xc0\x4e\x55\x73\x14\x81\x5c\x6f\x60\x3c\x31\x8c\x2b\x32\x2d\x86\xf1\x06\xee\x5f\xe0\xa3\xa6\x79\x00\x1f\x35\x2d\x23\xf0\x51\x2b\x2a\x85\x2c\x8d\x2d\xf9\x02\x1f\x35\xd3\x7b\x9b\x12\xad\x6f\x5a\xd7\x3c\x84\x1f\xcf\x1b\xce\x82\x15\x7e\x3c\x6f\x9c\x09\x10\x6b\x79\xd3\xc2\x01\x2d\x35\xb0\x9a\x58\xcb\xa1\x25\x33\xb1\x96\xeb\x06\x40\xb1\x96\x37\xf6\x74\x62\x2d\x6f\x5a\x1d\xa0\xa5\x06\x2a\x5f\xa0\x25\x85\x83\x57\x38\xe4\xbc\x69\xad\xc0\x68\xde\x38\x65\xb4\x80\x44\x0a\x07\xaf\x83\x9c\x44\x4c\xd6\x61\x04\xa5\xdc\x0e\x72\xb2\x09\x5f\x80\x27\x85\x8a\x17\xe0\x49\xa1\x62\x71\x9f\x37\xcd\x11\x00\xa9\xcb\xc4\x85\x63\xcd\x3b\x2e\xbf\x15\x8e\x35\xef\x9f\x5a\x78\x94\x78\x0f\xf0\xd4\xf1\x72\x2f\xc0\x53\xc7\x19\x29\xce\xf4\x8e\x4b\x45\x9c\xe9\x0a\x38\xaf\x70\xac\xb9\xd2\xc6\x56\x38\xd6\xbc\x6b\x1d\xc1\xa7\xde\x5d\xff\x0d\x4a\xac\x15\x60\x96\x92\xc8\xc4\xa7\xde\xab\x4a\xf4\xa1\xa9\x05\xe4\xe4\x40\xa5\xd8\xd5\x3b\xbb\x77\xb1\xab\x77\xc1\x90\x87\x2c\x24\x13\x2d\x20\x98\x6e\x23\x14\xf3\xba\xd2\xbf\xc4\xae\xde\xa5\xdd\x80\x59\x1d\xcc\x2c\x76\x75\xa8\xce\x4c\x0c\xea\x4a\xf8\x12\x83\x7a\x47\x83\x89\x41\x1d\x1a\x34\x13\x83\xfa\xc0\x29\x25\x06\xf5\x91\xfe\x76\x2e\x59\xe4\xea\x8a\x4c\xef\x88\x22\xfb\xc0\xcf\xb5\xe3\x88\xb4\x2b\x16\xbd\x41\x6e\x83\x65\xb4\x41\x6e\x03\x7f\xea\x06\xb9\x0d\x42\x63\x1b\xe4\xa6\x3c\xb1\x0d\x72\x53\x9e\x98\xe8\xdb\x61\x56\x33\xd1\xb7\x0f\x53\x9d\xd1\xbd\xc1\x66\x7a\x87\x0f\xcc\x07\x67\x02\xf6\x47\xf7\xb0\x46\x1b\x54\x37\x98\x30\x11\xbd\x2b\x6b\x4c\x44\xef\x03\x35\xb8\x41\x67\x8a\x68\xef\x0f\x59\x50\x60\xfb\x43\x16\x50\x81\x28\xe1\x95\xfd\xb5\x41\x67\x83\x05\xb7\x41\x67\x03\x8c\xb0\x41\x67\x8a\x6f\x8b\x3c\x7e\x6c\x3d\xc9\x98\xb1\x39\x12\x79\xfc\x20\xf1\x5b\xe4\xf1\xca\x13\x13\x79\xfc\xc0\x89\xb2\x41\x59\x03\xa5\xb8\x41\x59\x03\x27\xca\x06\x65\x0d\xb0\xfd\x06\x65\x0d\x54\xa4\xc8\xe3\x07\x3e\x76\x08\xe2\x5d\x97\x18\x42\x10\xef\xca\x0c\xdb\x20\x22\xe5\x7b\x6d\x10\xd1\xcc\xaa\x65\x53\xa2\xf5\x88\x37\xbb\xfc\xa9\x3b\x3c\x62\x0e\xcf\x9a\x41\x1e\xef\x93\x40\x27\x74\xf1\xae\xbc\x2d\xe8\xe2\x7d\xe2\x05\x86\x2e\xde\x67\xd5\x93\xb4\xc7\x69\x9a\x0d\xea\x99\x9a\x31\x50\xcf\x6c\x7a\x92\xf6\xc0\x8d\x1b\xd4\xa3\xdb\x08\x37\xa8\x67\x82\x0d\x37\xa8\x67\xb2\x18\x37\xa8\x47\x19\x5e\x1b\xd4\xa3\x0c\x2f\x08\xe9\x7d\x82\x0d\x21\xa4\xf7\xa9\xaf\x00\x64\xa3\x9c\xae\x1d\xe1\x60\x87\x9f\xcd\x20\xab\xf7\xc9\xe9\xe6\x5d\x69\x4f\x33\x8d\xc3\x4a\xb9\x59\x1b\xf8\xa2\xbb\x09\x37\xf0\x65\x02\x43\xa0\x99\xf7\xa9\xb9\x05\x5c\x28\x0a\x03\xcd\xbc\x4f\xd4\xe7\xc6\x2d\xb4\x70\x82\x6d\xdc\x42\x0b\xe0\xb1\x71\x0b\xe9\xc6\x41\x08\xe9\x5d\x37\x0e\x42\x48\xef\x0b\x83\xb7\x81\x21\x4a\xa4\xda\xc0\x90\xa5\xd9\xc4\x2d\xb4\x8a\x5a\x78\x94\x18\x97\x08\xa5\xfa\x22\x2a\xb2\x23\x94\xea\x8b\xfd\x1e\xdc\xf5\xbe\xb4\x52\x01\x2c\xba\x7f\x10\xee\x7a\x5f\x78\xab\xe1\xae\xf7\xc5\xce\x70\x03\x5f\x96\x56\x23\x6e\xa1\xa5\xb9\xc5\xf5\xa3\x64\xa9\x8d\xeb\x47\x37\x07\x6e\x5c\x3f\x3a\x14\xb0\x81\x3d\x0a\xf5\x6f\x60\xcf\x22\x82\x01\xcb\xbd\x43\xa6\x66\xb0\xdc\xfb\x92\x8a\x04\xf6\x2c\xad\x23\x60\xcf\x7a\xaa\x33\xc6\x73\xb3\x2b\xde\x11\x66\x75\x45\xb5\x36\xd0\x66\x6b\x3d\x00\x6d\xb6\x74\x56\x84\x59\x5d\xe9\x58\xf0\xe1\xbb\x02\xff\x1b\x77\x12\xd4\x6a\xb6\x23\xcc\xea\x10\xa6\xd9\x8e\x30\xab\xef\xbf\xd1\xa1\xda\xc6\x0b\x05\x27\x9a\x6d\x90\xd4\xee\xaa\xa4\x52\xd2\x7f\x8d\x12\x5d\xc0\x0b\xb5\xc1\x6a\x1b\x94\xa5\x8b\x03\x37\x28\x6b\xe3\x0d\x84\x9a\xdf\xb7\x86\x1a\x94\xb5\xb1\x54\x90\xf1\xfb\xd6\x72\xc0\x43\xb5\x39\x78\xb6\x41\x59\x5b\x9f\x3c\x28\x6b\x4b\x9d\xe1\xa1\xd2\xd9\x05\x88\xfa\x5d\xb9\x59\x10\xf5\xfb\x66\xab\x04\x51\xbf\x1f\x59\x2a\x10\x98\x2e\x00\xdc\x20\xb0\x43\x34\x78\x83\xc0\x0e\xbe\xdd\x0d\x02\x53\x10\x66\x47\xcc\xd5\x0f\x5b\xa5\x1d\x31\x57\x3f\x59\xb2\x3c\x4a\xf4\x16\xac\xa6\xd3\x11\x1b\xac\x76\xf4\x91\x83\xd5\x8e\xa6\x16\xac\x76\x4c\xff\x55\x4a\x28\x68\xf0\xd8\x01\xe3\x6d\x30\xd7\x91\x5a\x02\x73\x9d\xae\x16\x90\x45\x23\x0f\xe6\x52\xbe\xd7\x06\x73\x1d\xa9\x1e\x30\xd7\x01\x15\xec\x08\x82\xfa\xc1\x71\xb1\x0f\xb2\xb0\x3b\xda\xe0\xb1\xb3\xf4\x5e\xa3\xa4\x27\x19\xcf\xad\x16\x90\x53\x73\x84\x33\x0b\x16\x34\xdb\x38\xb3\x0e\x87\x03\x37\x58\x4d\x37\x07\x6e\xb0\xda\x91\xca\x02\xab\x1d\x82\x92\x1b\x3c\x06\xd3\x99\x6d\x30\xd7\x91\xc9\x01\x73\x5d\x36\xb7\x1b\x67\x96\x6e\x0e\xdc\x11\xcc\x74\x9d\xf0\xd8\xe0\xb1\x0b\xc6\xdb\xe0\xb1\x2b\x25\x05\x1e\x53\x68\x6c\x83\xc7\x74\x1f\xe0\x06\x8f\x5d\xcd\x43\x04\x33\xfd\x72\xe6\x68\xe3\x12\x13\x81\xd9\x06\xab\xe9\xae\xc0\x8d\x4b\xec\x6a\xf9\x81\xc0\x94\x27\xb6\x71\x82\x89\xce\x6c\x83\xc0\x2e\x5e\xf5\x0d\x02\xbb\x6c\x6e\xf7\xa3\xf5\xa1\xf7\x68\x1d\xb7\xc2\x06\x9d\xdd\xa9\x16\x68\x1d\xd3\x71\x40\x67\x0a\x8d\x1d\xd0\xd9\x05\x32\x1c\xd0\xd9\x65\x8e\x0e\x10\xec\x82\xd1\x0f\x10\x4c\xe7\x4b\x0e\x10\xec\xb2\x8f\x3a\x89\x3e\xe0\x94\x3a\x40\x30\x05\xd1\x0e\xe0\xe9\xb2\xc6\x0e\xe0\xe9\xa2\xea\x0e\xe0\x49\x09\x66\x07\x80\xf4\xc0\xe8\x07\xb7\xd7\x63\x3f\x7b\x70\x7b\xbd\xac\x52\xa3\x44\xeb\xb8\xbd\x1e\x86\xe4\x00\xac\x1e\xeb\xe8\xe0\xf6\x7a\xcc\xdf\x89\x93\xf9\xfe\x40\xe5\x07\xd0\xf5\x70\x4a\x1d\x40\x97\xa8\xce\x0e\xa0\xeb\x31\x7f\x07\x77\x99\xd2\xd4\x0e\xa0\xeb\xe1\x34\x3d\x00\x2b\x45\xbc\x0e\xc0\x4a\x69\x6a\x07\x60\x25\x92\xb2\x83\x6b\xeb\x01\xeb\x0e\xae\x2d\x91\x94\x1d\x5c\x5b\x6f\xa9\x16\xda\xdb\x7f\xbb\xe3\xe2\x80\xb9\x1e\xa7\x0e\x0e\x98\x4b\xfc\x65\x07\x94\xf5\x34\x0d\xf8\xa4\xc4\x5f\x76\xf0\x49\x3d\x7c\x83\x07\x5c\x25\xc6\xb2\x03\xae\x7a\x24\x72\x9c\xc0\x55\x35\xe1\xb1\x3d\x71\x56\xaf\x2a\x13\xed\xc0\x2a\xa7\x4c\xb4\x03\xab\x5c\x02\x07\x1c\x58\xe5\x12\x4a\xf1\xc0\x2a\x97\x50\x75\x07\x56\x39\x05\xbc\x0e\x24\xa7\x0a\x71\x1d\x48\x4e\x75\x19\xe1\x81\xe4\x54\x59\x6a\x07\xfe\x39\x05\xbc\x0e\xfc\x73\xba\x38\xf0\xc0\x3f\x27\x1e\xb2\x03\xff\x9c\x32\xd1\x0e\xf4\xdf\x09\x6f\xee\x81\x8d\x2e\xa1\x14\x0f\xac\xde\xca\x44\x3b\x50\x9e\x2a\x54\x75\x60\xa3\x53\x26\xda\x81\x8d\x2e\x11\xf6\x3c\xb0\xd1\x29\x54\x75\xa0\x3c\x4d\x9c\x3a\x3d\x50\x9e\x2a\xf7\xec\xc0\x54\x97\x08\x6d\x9e\x8a\x9c\xa8\xc8\x03\x1d\xaa\x82\x53\x07\x16\xbb\xc4\x86\xf9\xc0\x62\xa7\x13\x1e\x07\x16\x3b\xf1\x97\x1d\x58\xec\xc4\x5f\x76\x20\x4e\x4d\xa8\xcf\x03\x71\x6a\xd2\x57\x00\xa7\x9d\x42\x5c\x07\xaa\x54\x85\xb8\x0e\x54\xa9\xe9\xa9\x84\x64\x84\x44\x0f\x74\xa8\x09\x65\x7a\x60\xb8\xfb\xc0\x7f\x07\x86\xbb\x4f\xcb\x16\x86\xbb\xef\xd3\x7b\x8b\x12\x7d\x80\x61\xfc\xfb\x54\xcb\xa1\x44\xdf\x03\xf1\x55\x85\xb8\x4e\x20\xbe\xfa\xa1\x76\x0f\x14\xab\x9f\x96\x26\xcc\xe4\x1f\xe7\x5a\x0f\xcc\xe4\x1f\x0e\x8f\x13\x18\xaf\x2a\xf3\xed\x04\xc6\xab\x9f\x16\x71\x47\x6a\x7d\x21\x1d\xa9\xd9\xa9\x1d\x68\x5b\xbf\xaa\xff\x90\x0c\x23\x7a\x02\xd5\x55\x85\xb8\x4e\xa0\xba\xfa\x91\xf8\x73\x06\x92\xa1\x92\xcf\x40\x32\x70\xff\x81\xfb\xfc\x43\x25\x1f\xe8\x5e\x75\x6f\xe1\x19\xb4\xae\xc5\x3f\x18\xb3\xa5\xff\x18\x09\xcd\x3b\x04\xaf\x1f\xfe\xfe\x03\x13\xfa\xa7\x99\x86\x09\xfd\xd3\xdc\x4e\x24\xe3\xc0\xda\x81\xee\x55\xf9\x73\x27\x80\x55\x55\xe6\xdb\x81\x09\x3d\x6b\xac\x21\x7f\xcd\x59\xef\x1d\x4a\x7c\x67\x90\xbf\x66\x29\x53\x08\x5e\x33\x7b\xac\x03\xc1\xab\x6e\x23\x3c\x01\xba\x6a\xc6\x18\x1e\xf8\xd4\xb3\xd6\x26\xe4\xaf\x19\xd3\x78\xe0\x4c\x57\xac\xea\xc0\x99\xae\x8c\xb9\xb3\x90\xa5\xaa\x16\x64\xc1\x34\x9e\x85\x2c\x4d\xff\x3d\x4a\xb4\x00\x69\xac\xee\x26\x3c\x90\xc6\x66\xcd\x0a\xa4\xb1\x59\x2b\x7c\x23\xa7\x56\x38\x3c\xec\x19\xc0\x79\x20\x94\x55\x02\xdd\x81\x50\x36\x4f\x95\x1a\x25\x64\x81\xa3\x3d\x08\xcc\xfe\xac\x92\xa1\x6f\xcf\x53\x82\x31\x0d\x6c\xde\xcf\x41\x68\xd9\x50\x28\xda\xb3\x26\x13\x1e\xda\xcc\x86\xeb\xc0\x43\x5b\x92\xde\xab\x94\xf8\x24\xe0\xa1\x55\xfe\xdc\x81\x87\xb6\xc8\x4e\xc2\x43\xab\xac\xb8\x03\xb5\x7b\xe1\x68\xf5\x09\x94\x55\x8b\xa6\x0f\x8e\xda\xa2\x25\x06\xd1\x7b\xc1\xc5\x71\xc2\x97\x55\xc5\x66\x76\x02\x57\xd5\xa2\x65\x04\x63\x6d\xc1\xc5\x71\x60\xac\x2d\x52\xbb\x30\xd6\x16\x2d\x23\x48\xe0\x4b\x53\x0b\x48\x86\x6f\xf7\xc0\x66\x2b\x36\xb3\x03\x9b\x6d\xe9\x6a\x6f\x53\x52\x7b\xc8\x29\xfb\x0a\x25\xbc\xf8\xcb\x0e\x94\xf0\x65\xea\x3f\xfa\x20\xd5\x0a\xef\xad\x32\xe6\x0e\x94\xf0\x45\xca\x14\x4a\xf8\xc2\x0e\xe1\x40\xfb\x5e\xb4\x70\xa0\x7d\xd7\x75\x87\x07\xda\x77\x5d\x77\x78\x1e\x72\x4a\x61\x3e\xe4\x04\x7d\x1e\x28\xe1\x8d\xdd\xc3\x81\x12\x5e\x3c\x64\x07\x4a\x78\x63\x8e\x2e\x1c\xbc\xca\xb4\xbb\x70\xf0\x1a\xe8\xf3\x42\xa6\x2b\x56\xb2\x1b\x48\xaa\x1a\x58\xe6\x86\x33\xab\x2a\xdc\x76\x21\x88\x57\x6e\xdd\x85\x5a\xd7\x58\x54\x17\x6a\x5d\xc3\xc5\x71\xa1\xd6\x35\x5c\x1c\x17\x6a\x5d\x63\x51\x5d\x08\xe2\x0d\x2f\xf0\xfd\x90\x05\x0f\xe3\x0d\x67\x56\x35\xf2\x50\x2f\xe4\xf1\xba\xd3\xf0\x42\xc9\x6b\x43\xff\x39\xa5\x41\xa9\x52\x52\x9d\x8d\x92\xea\xec\x94\x1e\x25\xfa\x37\xf5\x1e\xfd\x03\x03\xdd\x8f\x3e\x6c\xfd\x47\x1f\x8e\x5a\xa7\x0f\xac\x9c\x0b\x95\xaf\xce\xed\x5e\xa8\x7c\x45\x05\x76\x21\x9d\x37\xe6\xf6\x42\x3a\x6f\xec\xfe\x2e\x34\xbf\xc6\xdd\x11\x17\x9a\x5f\x85\xcd\x2e\x34\xbf\xce\xfa\xbb\xd0\xfc\x7a\x52\x0b\x9d\xd2\xa4\x34\x28\xa9\x96\xe8\x83\xc2\x66\x17\x0a\x60\x07\x12\xdd\xc0\x78\xd5\xb3\xea\x3c\x94\xf4\x64\xf4\xcf\x8b\xfe\x7b\x94\x90\x13\xb6\x7a\xdd\x5b\x78\x61\xab\xd7\xbd\x85\x17\xea\x60\xc7\xfc\xdd\x82\x9c\xae\xf7\x90\x13\xd8\x73\xa1\x0e\x16\xa5\xd7\x05\xd6\x39\x26\xe7\x02\xeb\x94\xe3\x78\xe1\xae\xd7\xcd\x81\x17\xee\x7a\x1d\xee\xbc\x40\x3e\x11\x67\x5d\x60\x9d\x88\xb3\x2e\xd0\x4d\xf9\x8f\x17\x0e\xfa\x8a\xab\xe2\x86\xbb\xac\x56\x0c\xc9\x05\xc8\x55\x50\xf9\x05\xc8\x55\x92\xe4\x2e\xfc\xf4\x22\xce\xba\xf0\xd3\xeb\x56\xc1\x0b\x90\xab\xae\xf7\x1a\xa5\xf9\x17\x95\x7c\x41\x75\x4a\x8d\xbc\xa0\x3a\x5d\x3f\x78\x41\x75\x55\x0b\x00\x54\xa7\x44\xc9\x0b\xaa\xab\x78\x85\x2e\xc8\xad\x72\xd0\xed\x82\xdc\x2a\x41\x91\x0b\x72\x53\x4a\xe5\x05\xb9\x55\xd4\xd2\x05\xb9\x29\xa5\xf2\x82\xdc\x2a\xd8\xf0\x82\xdc\x2a\x38\xe0\x82\xdc\xc4\xa9\x75\x41\x6e\x95\x53\x00\x17\x36\x62\xb1\x68\x5d\x90\x9b\xce\xca\x5e\x88\xec\x2b\x1e\xdb\x0b\x72\xab\xfa\xe4\xc1\x63\x95\xa3\x4a\x37\x3c\x69\xb5\xe9\xd3\x8d\xd0\x5f\x6d\x49\xff\xc5\xc0\x8b\xac\xea\x82\xb2\x44\x56\x75\x41\x59\x4a\x9b\xbc\xa0\xac\x06\x46\xbf\xa0\x2c\x85\xaa\x2e\x28\xab\xe1\x9d\xbb\xa0\xac\xa6\x0f\x12\x94\xd5\xaa\x6a\xb9\x94\xf4\xe4\xa3\x84\x64\x03\x39\x39\xa9\x71\xc1\x63\x8d\x93\x1a\x17\x3c\xd6\xf0\xd1\x5e\xf0\x58\x6b\x7a\x32\xe6\xa8\x81\x03\xee\xa0\x0f\x5d\xff\xd1\x87\xa1\xf7\x90\x73\xa9\x14\xf3\xd0\xd8\x06\x5f\xa8\xf9\x9b\x46\x1e\x6a\xfe\xa6\xc5\x01\xe1\x7e\x03\x41\x5f\x08\xf7\x75\x51\xe1\x05\x81\x35\x36\xb7\x37\xdc\x5e\xb5\x6b\x71\x40\xbf\xdf\x31\xda\x17\x04\xd6\x09\xf6\x5d\x28\xf6\x45\x56\x75\xa1\xd8\x57\x76\xe2\x05\x81\x75\xd3\x7f\x99\x12\xcb\x16\x04\xa6\xb0\xd2\x05\x81\x29\xaf\xf0\x82\xc0\x7a\xd3\x7b\x95\x12\x0b\x27\xdc\x5e\xb5\x83\x9d\x2e\xe8\x4c\xa7\xa2\xef\x42\xce\xae\x16\x62\x5c\xba\x54\x39\xc8\xad\x73\xae\xe1\x82\xdc\x14\x48\xba\x20\xb7\xae\x51\x02\xb9\x75\x30\xec\x05\xb9\x89\xac\xea\x82\xdc\x3a\x3e\xd3\x0b\x72\xeb\xfa\x5a\x41\x6e\xa2\xae\xba\xe0\x31\x11\x52\x5d\xf0\xd8\x20\xf8\x7d\xc1\x63\x0a\x2b\x5d\x40\xd7\xc0\x75\x70\x01\x5d\x43\x2a\x39\x82\x92\x75\x7c\xaa\x65\x53\x62\xcc\xc2\x41\x56\x87\x46\x3e\x1c\x64\x55\xb7\x0a\x5e\xe0\xd9\xe0\x44\xc2\x0d\x07\x59\x1d\xec\x3a\x6e\x38\xc8\xea\xd0\x77\x0d\x74\x53\x2a\xc5\x05\xba\xe9\xe6\xc0\x0b\x74\x1b\xfa\x92\x81\x6e\x43\xc6\x17\xe8\x36\xa4\x7b\x80\x67\x83\x53\x46\xf7\x20\x27\xa7\x8c\xee\x41\x4e\x50\xeb\x3d\xc8\xc9\x01\xb9\x0b\x90\x1b\x32\xa9\x11\xb0\xac\x83\xf0\xec\xbd\xf4\x01\x44\x7b\x01\x79\x03\xa7\xe9\x05\xba\x0d\x5c\x77\x17\xe8\xa6\x5b\x05\x2f\xd0\x6d\xc8\x14\x03\xc8\xc6\xd6\x93\xc8\xa2\x99\x06\x90\x0d\xf6\x9e\x17\x40\x36\xce\xdf\x18\xaa\x2f\x58\x6d\x68\x19\x3d\x44\x01\x73\xdd\x87\x28\xb2\xd2\xa0\x33\x05\x99\x2e\xe8\x6c\x68\xc1\x81\xce\x74\x51\xe1\x05\x9d\x89\x53\xeb\x82\xce\xc4\xa2\x75\x41\x67\x3a\x98\x7f\x41\x67\x62\xd1\xba\xa0\x33\x5d\x4d\xf8\x40\x67\x13\xc5\xf7\x40\x67\x0a\x40\xbd\xf0\x8f\xd5\x59\x54\x8a\x8f\x40\xa9\x98\x0f\xe4\xa6\x54\xcc\x17\xfe\xb1\xaa\x70\xd4\x03\xb9\xe9\xc2\xc1\x07\x72\x9b\xe0\xe9\x07\x72\x53\xf2\xe5\x03\xb9\x4d\x8e\x38\x3d\x90\x9b\x2e\x1c\x7c\x20\x37\x05\xa7\x1e\xe8\x6c\xf2\xf1\x3c\xd0\xd9\xc4\x70\x3d\xd0\x99\x42\x55\x0f\x74\x36\x59\xe0\x0f\x74\xa6\xe0\xd4\x03\x9d\x4d\x3e\xac\x07\x3a\x9b\x43\xb5\x20\x27\x3b\x99\xf7\x21\x27\xe7\x28\x1e\xe8\x4c\x17\x07\x3e\xd0\xd9\x24\x0c\xf9\x40\x59\x4a\x66\x78\xa0\x2c\x51\x5e\x3d\x50\xd6\x64\x81\x3f\x50\x96\xee\xf5\x7b\xa0\xac\x49\x00\xf1\x81\xb2\xe6\xd3\x93\x21\x8b\x48\xae\x1e\x48\x6a\xe1\xcd\x7d\x20\x29\xd1\x5a\x3d\x90\xd4\x22\x1c\xfc\xc0\x47\x4b\x33\x16\x0e\xb2\xba\x38\xdd\xf2\xe2\x78\x57\x5d\x9a\x3f\xb0\x93\x72\x46\x5f\xa1\x3d\x4c\xd5\x2b\xb4\x07\x9e\x7e\x85\xf6\xd8\x01\xbd\x42\x7b\x5d\x4f\x3e\x4a\xcc\x51\xa4\xbd\xd6\x85\x7b\xe0\x81\xb9\x94\x5d\xfa\xc0\x5c\x6b\xea\x49\x24\x63\xd9\x3e\x30\x97\x72\x4d\x1f\x98\x4b\xf4\x54\x0f\x37\xdb\xc2\x6f\xf8\x70\xb3\xad\xa5\xff\x62\xcc\x16\x97\xed\x3c\xdc\x6c\xa2\xa7\x7a\xb8\xd9\x16\x5e\xf5\x07\x56\x5b\x60\xdf\x87\x9b\x4d\x89\x54\xcf\xe8\x1f\x0e\xc0\x07\x8e\x53\x70\xea\x81\xe3\x36\x6b\xec\x81\xe3\x94\xb1\xfa\xc0\x71\x5b\xeb\x08\x1c\xa7\x04\xac\x07\x8e\xdb\x40\x86\x87\xb3\x6e\xa3\x68\x1f\xce\x3a\xdd\x2a\xf8\xc0\x78\xa2\xae\x7a\x60\xbc\x6d\xaa\xb3\x53\xd2\x93\x21\xf5\xe6\xac\xc4\x03\xc8\x6d\xad\x15\x80\xdc\xd6\x1c\x01\xe4\x36\xc6\xf0\xe1\x9e\xdb\x5d\x25\x24\xeb\x7a\x12\xc9\x34\x63\x80\xbc\x8d\xa2\x7d\x80\xbc\x0d\xac\x7b\x00\xb9\xad\xf5\x10\xe7\xbb\xea\xe6\xac\xc4\x03\x9e\xe9\xae\xc0\x87\x63\x4d\x51\xa6\xd7\xa8\x53\xe3\x09\x74\x3b\x49\xef\x35\x4a\x7c\x67\x38\xdd\x74\x57\xe0\xc3\xe9\x76\xd0\x60\x0f\xa7\x9b\x08\xa9\x1e\x20\x4f\x31\xa7\x87\xd3\xed\x10\x50\x7f\x38\xdd\x22\xeb\xf6\x8f\x2a\xf9\x81\x0d\x0f\x98\xe4\x81\x0d\x0f\xc9\x89\x0f\x6c\x78\x38\xb9\xf7\xf0\xce\x1d\x53\x29\xba\x77\x88\xab\x3e\xb0\xe1\xd1\x52\x01\x1b\x1e\x30\xc9\x03\x1b\x2a\x75\xf7\x75\xba\xa0\xa5\xd2\xe9\x42\xd7\x93\x74\x41\x6a\x09\xc4\xa7\x44\xde\x07\xaa\x53\x4e\xde\x03\xd5\x1d\xa9\x1e\x3c\x70\x07\x94\xfc\xf0\xc0\x9d\xad\x27\x69\x1d\x14\xf2\x40\x7c\x07\x17\xc0\x03\xf1\x89\xc8\xea\x81\xf8\x74\x19\xe1\x1b\x0c\xa0\x26\x13\xfc\x27\xea\xaa\x07\xfe\x3b\xc4\xcc\x1f\xf8\x4f\x01\xa8\x17\x21\xd1\x7a\xb5\x54\x22\x24\x5a\x2f\x31\xf3\x07\x36\xd4\xd5\x84\x0f\x6c\x78\x39\x72\xf4\xf0\xdc\x5d\xb6\x89\x0f\xcf\x9d\xc2\x51\x0f\xdc\xa8\x70\xd4\xc3\x73\x77\x4d\x92\x5d\x4a\x6a\xef\x51\x62\x36\xc1\x94\x97\xf4\xea\x07\x52\xbc\xf8\xdc\x1e\x48\x51\x29\xcd\x0f\xa4\xa8\xdc\xac\x07\x52\xbc\x43\xff\x21\xb5\x96\x03\x68\xf0\x82\xa0\x1f\x68\xf0\x2e\x3d\x89\x64\x60\x8b\x07\x1a\x54\xc8\xe9\x81\x06\x95\xb6\xfc\x40\x83\x57\x33\x06\x1a\x54\x58\xe9\x81\x06\x15\x56\x7a\xf8\xea\x2e\x40\xe0\x81\x0d\x95\x7f\xf5\xc0\x86\x57\xa6\x03\x6c\x78\x35\x0f\x60\x43\xe5\x5b\x3e\xb0\xa1\xee\x2d\x7c\x60\xc3\x97\xf4\x64\xf4\x41\x09\xce\x2f\x8e\xf7\xd7\x27\x05\x06\xe2\x7b\xb8\xd2\x1e\x88\x4f\x21\xa7\x07\xe2\x53\x86\xd7\x03\xf1\xe9\xf6\xc3\x07\xe2\x7b\x5a\x39\x20\x3e\x65\x7f\x3d\x9c\x75\x4f\xea\x0c\x67\x9d\xd2\xa4\x1f\x68\xf0\x49\xb9\x81\xf8\x94\x26\xfd\x40\x7c\x4f\xf3\x07\xe2\x7b\x52\x7c\x20\xbe\xa7\x15\x07\xe2\x7b\x38\xe4\x1e\x6e\xbd\x27\x35\x88\x5b\xef\x71\x10\xf3\xe1\xd6\x53\x50\xeb\x81\xff\x94\x28\xf6\x70\xcf\x29\x19\xec\x5d\x64\xd1\x57\x80\x7b\xee\x81\x3e\x1f\x68\xf0\x71\xd4\xec\x81\x06\x1f\x41\xc9\x07\xe4\xd3\x2d\x8d\x0f\xf7\xdc\x23\x9c\xff\x70\xcf\x3d\x29\x53\x00\xe0\xc3\xf5\xf3\x00\x80\xba\x89\xf1\x01\x00\xdf\x51\x2d\x8c\x19\xd1\x8d\x07\x00\x54\xfa\xd7\x03\xe4\xbd\xab\x12\x72\x86\x89\x8b\x6c\xae\x28\x19\x25\xe4\x8c\x55\xec\x09\x90\xf7\xe2\x7a\x61\x4f\x10\x83\x91\xe2\xe5\x09\xf2\x2f\xe2\x58\x91\xf7\xf5\x53\x8a\x79\xf7\x04\xf9\x57\x0a\x17\x8e\x27\xc8\xbf\xb8\x7b\xd1\x13\x2c\xa0\xdc\xbd\xe8\x09\x16\xd0\x48\xe3\xfa\x93\x4a\xf6\x04\x41\x28\x9c\x5a\x9e\x20\x08\x25\xc3\xcb\x13\x04\xa1\x64\x78\x45\xd2\x59\x94\xf8\x0f\x76\x31\xb2\xb8\x3c\xc1\x2e\xc6\x95\x8d\x9e\x60\x17\x4b\xf1\x81\x78\x82\x5d\x2c\x35\xbd\x17\xbc\x67\x04\xca\x3c\x41\x1e\x4a\xa0\xcc\x13\xe4\xa1\x04\xc3\x3c\x41\x1e\x0a\xdf\x56\x24\xb9\xfd\x94\xa6\x9e\xa4\xeb\x53\x75\xd2\xf5\xc5\x20\x41\x2c\x0a\xc3\x96\x27\x88\x45\xb9\x7a\xd1\xd3\x47\x1f\x0e\x83\x94\xe9\xc3\x45\xce\x4c\x1f\x34\x29\xe1\xd5\x6b\x04\xa0\x3c\x41\x68\xfe\x25\x5a\x0f\xbc\xd9\x08\x39\x45\x8a\xdd\x4f\x29\xd3\x3a\xa4\xa3\xe4\x4a\x79\x82\x74\xf4\x33\xd5\xb2\x28\xa9\x96\x18\xdd\xcf\xe9\x2d\x14\xe6\x9f\xf3\x11\x40\x61\xfe\xc5\xe6\xcf\x13\xa4\xa3\x5c\xb6\xe8\x09\xd2\xd1\xaf\x32\xed\x90\x8e\x7e\x9d\xd6\x21\x1d\xfd\x3a\x75\x42\x2c\xfa\x69\x04\xa1\x37\xff\x26\x1f\x24\x14\xe6\x04\x8b\x3c\x41\x2c\xfa\x2d\xb5\x80\x2c\x9b\xf7\x20\x16\x25\x3c\xe4\x09\x62\x51\xf2\x9a\x3c\x41\x2c\xfa\x1d\xe6\x1d\x62\x51\xb2\x9c\x22\x85\xf0\xa7\x74\x91\x0c\x62\xd1\xef\x32\x66\x10\x8b\x7e\x4f\xef\x21\xe7\xa3\xb7\x70\x98\x93\xf3\xe4\x29\x10\x66\xcb\x5a\x1c\x90\x8e\xe6\x8f\x3e\xc0\x5a\xce\x45\x8c\x9e\x60\x2d\xcf\x1f\xf3\x07\x21\x69\xfe\x90\x1a\x42\xd2\x9c\x19\x17\x08\x49\x73\x66\x04\x21\x24\xcd\x85\x39\x82\x74\x34\x1b\x23\x01\xe9\x68\x36\x7a\x04\xe9\x68\x76\xfa\x0e\xe9\x28\x09\x51\x9e\x20\x1d\x25\xc8\xe4\x09\xd2\xd1\xac\x15\x00\x6b\x39\xc9\x52\x9e\x1c\x39\x1b\xad\x57\xe4\xec\xb4\x07\x3d\x69\xee\xf4\x08\x7a\xd2\xdc\x19\x17\xe8\x49\xa1\xc3\xf2\x04\x3d\x29\x61\x25\x4f\x81\x22\x1b\x37\x31\x7a\x82\x9e\x34\x6f\x46\x17\x7a\x52\xee\x57\xf4\x04\x3d\x69\xbe\x2a\x21\xf5\x65\x5c\x60\x42\xcf\x57\x92\x21\xb5\x14\x58\x45\xea\x87\x64\xf0\xa2\x43\x80\xe5\x09\x5e\xf4\xf2\xd1\x77\xd8\xce\x8b\xd6\x43\x20\xcc\x56\x32\xed\xc1\x76\x5e\xb4\x3a\x60\x3b\x2f\x85\x16\x60\x3b\x2f\x5a\x2b\x11\xba\x6d\x45\x9a\x28\x42\xb7\xad\x38\x92\x05\x8c\x6c\xc5\xe9\x2d\xbc\xe8\xa5\xd2\x1e\xbc\xe8\xa5\x52\x27\xbc\xe8\x45\x7a\x29\x5c\x8c\xad\x68\x56\x3a\x72\x36\x7a\xd4\x91\xb3\xa9\xce\x18\xc1\x22\x2d\x05\x4b\x7a\xe9\x6a\x9d\x3e\x68\x1e\x3a\x7d\x90\xce\x82\x9a\x15\x1a\x2d\x4f\x50\xb3\x96\x29\xc9\xe8\xc3\xfc\x8b\xe3\x22\xb2\x58\x7f\x1e\x5c\x74\x01\xd6\xd6\xb2\x10\x73\x20\xf4\xa2\x0b\xb0\xb6\x96\xcd\x47\x00\x6b\x6b\xd9\x88\x09\x6b\x6b\xd1\xb4\xc3\xda\x5a\x34\xed\xb0\xb6\x12\x72\xf2\x04\x6b\x2b\x79\x5b\x9e\x60\x6d\x25\xe4\xe4\x09\xaa\xf5\xf2\xa8\x33\xa2\xc1\x8d\xeb\x1c\x3d\x05\x16\x6d\xf6\xf1\x79\x06\x16\x6d\xa6\x05\x07\xa5\xab\x65\x3d\x19\xb2\x98\x16\x15\xe4\xea\x66\x0c\x35\x04\xaf\xa6\x89\x86\xe0\xd5\xa4\xf8\x20\x78\x35\x2d\x2a\xe8\xd4\x09\x1d\x79\x82\xe0\xd5\xa4\xf8\x02\xff\x35\xeb\x2c\xc6\x45\x0b\x9d\x16\xa0\x74\x25\xac\xe4\x09\x4a\x57\x82\x45\x91\xc1\xfb\x53\x9a\x8c\x44\xc4\x71\x9b\x2d\xa6\x3d\xe2\xb8\xcd\x16\xa3\x0b\xf9\x2b\xe4\x58\x9e\x20\x7f\x25\x90\xe4\x09\xf2\x57\xdb\x6a\xa1\x53\x52\x0b\x48\x7d\xf4\x1f\x52\x1f\x7a\x04\x31\xac\x49\x61\x42\xe6\x4e\x8e\x95\x27\x88\x61\x5d\x06\x08\x1a\x76\xd7\x12\x0b\x6c\xd8\x5c\x06\x08\x9a\x58\x48\xae\x3c\x41\x13\xeb\x5a\x70\x81\x0d\x9b\x6b\x1e\x02\x1b\x36\x2f\xb4\x07\x7d\x3b\x44\x56\x9e\x20\x94\x75\x2d\x3f\x48\x63\x5d\xb3\x02\x69\xac\x4b\xd5\x41\x1a\xeb\x5a\x70\x90\xc6\xba\x16\x1c\xa4\xb1\x5e\xf9\x5a\x21\x8d\xf5\x4a\x7b\x90\xc6\xba\x96\xd1\xa5\x0f\x43\xef\x21\xe7\xa4\x75\x48\x63\x7d\x32\x12\x90\xc6\xba\xd6\x03\xa4\xb1\xae\xb1\x86\x20\x9e\x64\xa9\xc8\x96\x8e\x12\x72\x42\x10\xef\x9b\x3e\x5c\xfa\xa0\x91\x87\x6c\xd6\x0f\xff\x41\x28\xeb\x17\xa9\x21\x94\x75\xe1\x38\x08\x65\x5d\xa6\x0a\x42\x59\x92\xa5\x3c\x41\x28\x5b\x65\xaa\xa0\x89\xad\x89\xde\x42\x13\x5b\x3f\xe4\x84\x26\xb6\x7e\xac\x2a\x68\x62\x6b\x9c\x8e\xf0\x0f\x9a\xd8\x8a\x52\xfc\x40\x83\x95\x79\xf8\x40\x7c\xa4\x40\xf9\x07\xe2\xab\xa8\xc1\x0f\xc4\x57\x51\x83\x1f\x88\xaf\x02\x12\x3e\x60\x5d\xad\xbc\x07\x20\xab\x8d\x16\x00\x5d\xb5\xd3\x02\xa0\xab\xc6\x91\x3f\xff\x00\x5d\x15\xe5\xf6\xc1\xc3\x4e\x04\xca\xbf\x70\xc1\xb5\x0a\x80\xf8\x80\x52\x44\xa0\xfc\x03\x4a\x55\xe6\xe8\x03\x4a\x91\x10\x15\x19\xe6\x51\x42\x6a\x38\xda\xb9\xc6\xd3\x3f\xe0\x52\xc5\x00\x7d\xc0\xa5\x1a\x8e\xbc\xc8\x3e\x8f\x92\x5a\xa0\x47\x8f\x3e\xc0\xd1\xce\x85\x9f\xfe\x01\xa5\xb8\xf0\x33\xf2\xd4\xff\xeb\x3f\xad\x25\xfa\x00\x5c\x22\x59\x2a\xb2\xd6\xa3\x44\x0b\xc0\xa5\x88\x4e\xfd\x51\x25\x7f\xd0\xb7\x37\x26\xf3\x83\xa2\xbd\xa1\xea\x3e\x28\xda\x1b\x68\xe2\x0b\x3f\x5e\x6b\xd8\xb4\x0f\x94\xc5\xa5\x9e\xfe\x81\xb2\x5a\x91\x98\x8f\x12\x83\x0b\xca\x6a\x9a\x76\x90\x54\x73\xba\x00\x92\x6a\x2c\xbf\x0f\xb4\xd4\x34\xd1\xa0\xa5\xa6\x89\x06\x2d\xc1\xd3\xe5\x5f\xf8\xe3\x1a\x21\x2e\xff\x0c\x39\xb1\x77\x9f\x21\x27\xca\xf4\x03\x3b\x35\xd0\xc4\x07\x76\x6a\x03\xa9\xc1\x4e\x5c\xd5\xe9\x1f\xd8\x09\x9e\x2e\xff\xc0\x4e\x6d\x22\x19\x64\xee\x0d\x54\xfe\x41\xe6\xde\x96\x6a\xa9\x94\x68\x0f\x5c\xd5\x36\xb2\x38\x7d\xd8\x7a\x92\x3e\x6c\x3d\x89\x9c\x47\x75\x32\x9e\x97\x8f\x00\x5c\xd5\xae\x6a\xa1\x0f\x0f\x39\xc1\x55\x0d\xc3\xf5\x81\x8f\xba\x3e\x82\xf0\xb2\x35\x6e\xbe\xf2\x2f\x42\xa9\xad\x27\x66\x13\xa2\xf7\xfe\xd1\x02\x48\xaa\xa3\x4c\x3f\x90\x14\xf9\x57\xfe\x81\xa4\xb8\xf0\xd3\x3f\x90\x54\xd7\xfc\x81\x96\x3a\x2a\xf2\x03\x2d\xf5\xca\x28\x81\x96\x7a\xa5\x47\x50\xc2\xf7\xc6\x7b\x50\xc2\xf7\xce\xd7\x03\x25\x7c\xef\x48\x06\xae\xea\x43\x4f\x22\xe7\xd0\x7f\xc8\xa9\xa5\xd9\x90\x73\xd2\x77\x70\x55\x5f\x6a\x2f\xc6\xac\x6f\xfd\x87\x9c\x60\xfb\x0f\x5c\xd5\x0f\x7d\x07\x3b\xf5\xc3\x98\x41\x48\x4f\x6e\x96\x7f\x10\xd2\x77\xb0\xfd\x07\xae\xea\x9a\x07\x70\x55\xd7\x22\x06\x57\x71\x51\x68\x5c\xdb\x10\x25\x3d\x89\x9c\x4f\x4f\x86\x9c\x43\xb3\x02\x76\x1a\x9a\x15\x68\xed\x09\xa9\xf9\x07\x40\x1a\x52\x9f\x00\xa4\xa1\x59\x81\xd6\x7e\x48\x99\x86\x23\xaf\x0d\x36\xc5\x1f\x00\x69\x18\xed\x01\x89\x86\x94\x29\x90\x08\xa2\x2e\xff\x80\x44\x43\x6b\x0c\x48\x34\x30\x6a\x1f\x90\x68\x34\x64\x01\x12\x0d\x70\xe3\x37\x91\x05\x50\xf2\x01\x89\x08\xa9\xf9\x07\x24\x1a\xec\xc6\xbe\x70\xcf\x35\x92\xb3\xfc\x9b\x48\xa6\x19\x03\x2e\x8d\xa9\x27\xe3\x3b\x1b\x4b\x75\x6e\x4a\xd4\x09\x78\x1a\x5b\x25\x24\x03\x0e\x7e\x80\xa7\xa1\x95\xb3\x68\x0f\x58\xf7\x01\xa5\x86\x56\x07\x7c\xf8\x53\x4a\x11\x3e\xfc\xa9\x79\x00\x58\xcd\x4f\x4f\x3e\x4a\xd4\x09\xb0\x9a\x5a\x1d\x00\xab\x09\xd4\xf8\x00\x56\x53\x73\x04\xb0\x9a\x5a\x2b\x00\xab\xc9\x8e\xeb\x03\x58\x4d\xe9\x48\x80\xd5\xb4\xbf\xdc\x97\xec\x1f\x98\x8b\x60\x98\x7f\x60\xae\x09\xa6\xfc\xc0\x5c\x53\xea\x13\xcc\x35\xb5\x18\xc1\x5c\x04\xbc\xfc\x03\x73\xc1\xa9\xe5\xdf\xa6\xeb\x4d\xdd\xa3\xeb\x9a\x4c\x10\xd8\x04\x61\x7e\xa0\xac\x29\x15\x09\xca\x9a\x9a\x5a\x50\xd6\x94\xc2\x04\x65\x4d\x90\xcd\x07\xca\x9a\xb2\x9a\xd0\xf6\x93\x71\xe5\x1f\xb4\xfd\x53\x56\x13\x04\x36\xa5\x3e\x41\x60\x73\xd1\x02\x28\x6b\x6a\x11\x83\xb2\xb8\xe9\xce\x3f\x50\xd6\x04\xe9\x7f\xa0\xac\x79\xa9\xf3\x32\xd4\x5a\x8c\xd0\xf6\x4f\x7d\x04\x20\x30\xb2\xb1\xfc\x03\x81\xad\xa4\xf7\x06\x25\x3d\x39\x29\x31\x12\x20\xb0\xa5\xcf\x05\x04\x06\x1d\x56\xdc\x62\xf2\x53\xfa\x24\xcb\xa5\xa4\x5a\xe2\x53\x22\x6f\xcb\x3f\x10\xd8\xca\x2c\x3f\x10\xd8\xd2\x07\x02\x02\x5b\x45\x4f\x46\x1f\x96\xe6\x1d\x04\xb6\x8c\x3a\xa1\xf4\xe7\x1e\x33\xff\xa0\xf4\x5f\x5a\xd2\x20\x30\x42\x6a\xfe\x81\xc0\x96\x10\xd1\x43\x32\x29\xe1\x87\x64\x6c\xbb\x33\xe8\x8c\xeb\x5b\xe3\x26\x96\x9f\x12\xf8\x28\x27\xa4\xe6\x2b\xc8\x20\xb7\xc5\x26\x3c\x43\xf0\xbf\xf8\x0a\x32\x04\xff\x6b\xa9\x16\xc6\x33\xfc\x8d\x9e\xc1\x71\xeb\xa8\x16\xc6\x93\x3d\x41\x06\xc7\xad\x23\x59\x90\x1a\xf3\x97\x71\xcf\x2d\xe6\x36\xe3\x9e\x5b\xa8\xdd\x8c\x7b\x8e\x70\x9b\x67\xdc\x73\x0b\xb5\x9b\x41\x83\xeb\x21\x0b\xee\xb9\x9d\x90\x13\xf7\xdc\x66\x63\x9f\x41\x8a\x1b\x44\x9b\x41\x8a\x1b\x95\x9c\x71\xb3\x91\xef\xe5\x19\x37\xdb\x66\xc5\x65\x70\xe3\x76\xfa\x07\x36\xdc\xcc\x43\x06\x1b\x6e\x00\x4b\x06\x1b\x6e\x54\x6b\xc6\xcd\x46\x48\xcd\x33\x6e\xb6\xdd\xa8\x13\x37\xdb\x66\x6d\xe6\x8c\x2c\x6c\xd0\x73\x84\x75\xdb\xd6\x8c\x81\x30\xf7\xd4\x7b\x83\x92\x64\x99\x94\x18\x33\x10\xe6\x46\xed\x66\x9c\x6e\xfb\x20\x19\x28\x72\x63\xfe\x72\xa1\x3d\x56\x55\xc6\xb1\xc6\x45\xb6\x9e\x81\x83\x1b\x37\x62\x06\xe4\xed\xa7\x3a\x1f\x25\x66\x05\x90\x77\xd8\xd3\x65\x5c\x69\x90\x71\x79\xc6\x95\x46\xfa\x97\x67\x00\xe0\x61\x87\x97\x71\x97\x1d\x3c\xbd\x19\x00\x78\x8c\xbe\x03\x00\x8f\x31\x66\x00\xc0\x63\x8c\x04\x00\x90\x2b\x6f\x3d\xe3\x3c\x3b\xce\x93\x80\xbc\xc3\xde\x3a\x03\xf2\x8e\x46\x1e\x90\x07\xc1\x97\x67\x40\xde\xf9\x1b\x43\xb5\x67\xf0\xdf\x69\x74\x16\xfc\x77\xba\x1a\xa0\x0b\x78\x7a\x33\xf8\xef\x0c\x3a\x04\xfe\x83\x09\xcc\x33\x88\x8f\xfb\x76\x3d\x83\xf8\xc8\x13\xf3\x0c\xe2\x23\x4f\xcc\x33\x88\x8f\x3c\x31\xcf\x20\x3e\x6e\xdf\xf5\x8c\xb7\x0c\x26\x30\xcf\x78\xcb\x8e\x26\x13\x34\x78\x50\x98\x19\x34\x78\xb4\x8c\x40\x83\x84\xdb\x3c\x83\x06\x0f\xdb\x8c\x0c\x1a\xbc\x9a\x3e\x10\xdf\xd5\xe2\x88\x3b\x35\x1a\x19\x5e\x9e\x41\x7c\x04\xd8\x3c\x83\xea\x60\xfb\xf2\x0c\xaa\xbb\xd8\xbb\x0c\xaa\xbb\x45\xb5\xc4\x84\x5d\xd4\x59\xc6\x5b\x76\xb5\xc4\x40\x67\x17\x4c\x92\xf1\x7a\x5d\x7c\x59\x19\xaf\x17\x19\x5e\x9e\x41\x67\x57\x8b\x03\x04\x06\xf7\x97\x67\x10\xd8\xd5\x52\x01\x81\x5d\x10\x4a\xc6\xb3\x45\x26\x93\x67\x30\xd7\x33\x95\x32\x25\xe4\x04\x57\x3d\x3c\xa1\x39\x02\xa4\x8d\x4c\x26\xcf\xb8\xa8\xc8\x64\xf2\x3c\xa8\x53\x9f\x59\x84\x3d\x1b\x81\x24\xcf\x20\xb0\x57\xf5\x5e\xcc\x2d\xc1\x22\xcf\xe0\x2a\x82\x45\x9e\x41\x4b\x0f\xb4\x94\x41\x4b\x84\x80\x3c\x83\x96\x9e\xbe\x10\xd0\x12\x19\x50\x9e\x41\x4b\x04\x7d\x3c\x4f\xda\x5b\xfa\x8f\xf6\x8e\xfe\x7b\x94\xa8\x05\xec\xf4\xf4\x4d\xc4\x21\xb8\xf6\xd8\x88\xe6\x08\x6d\x36\x82\x3e\x9e\x17\x23\x21\x45\x0b\xca\x7a\x52\xad\x81\xb2\x7a\xc2\x5d\x96\xe1\x08\x4c\x9f\x4a\x8f\x12\x2d\xc0\x11\x48\x62\x93\x67\x38\x02\x13\x28\x2b\xc3\x11\x98\x32\xbd\x85\x23\x50\xe1\xa1\x0c\x21\x70\x62\xef\x99\x21\x04\x4e\x19\x39\x21\x04\x56\xe8\x28\xc3\x26\x98\xf4\x65\xc1\x26\x98\xa4\xae\x61\x13\x4c\x38\x19\x32\x6c\x82\xa9\xaa\xbd\xe0\xc9\x4b\x4d\x25\xfa\xc0\x1e\x24\x6f\xfa\xa0\x55\x7c\xe8\xc3\xe0\x3b\x3b\xf4\x41\x8a\x16\x4e\xc2\xa4\x39\x82\x93\x30\x4d\x66\x13\x4e\x42\x52\x99\x3c\xc3\x49\x48\x82\x92\x67\x38\x09\x15\xbd\xc9\xf0\x0e\x26\x19\x4a\x68\x85\x15\xcb\xc9\xd0\x0a\x27\x76\x24\x19\x4e\x42\x45\x76\x32\x9c\x84\x49\xe6\x0f\x4e\xc2\xa4\x39\x82\x93\xf0\x93\xc1\x83\x77\xf0\x03\xc3\x66\x78\x07\xb9\x13\xcf\x33\xbc\x83\x9f\xc6\x13\xde\xc1\xaf\x20\x19\x74\xc4\x9f\x54\x72\x40\xa9\xae\x38\x4f\x86\x93\xf0\x33\x3d\x19\x72\x7e\x55\xb5\x6c\x4a\x6a\xef\x50\x62\x5c\xe0\x1d\xfc\x88\x1a\x64\xd8\x04\x3f\xe9\x4f\xd8\x04\x83\x38\xeb\xcf\x2a\x19\xa2\x41\xae\xb6\xf3\x0c\xd1\xe0\x27\xd5\x0a\xd1\xe0\x27\xf5\x09\x53\xf1\xb7\xd4\x1c\x82\x69\xe0\x21\x21\x54\x08\x28\xc3\x46\xfc\xb1\x4d\xcc\xb0\x11\x2b\x04\x54\x20\x28\xfc\xd8\x26\x16\x08\x0a\x3f\xd0\x4b\x81\xa0\x50\x01\xa1\x02\x41\xa1\x02\x42\x05\x82\xc2\x0f\xb5\x5b\xc2\xeb\xd5\xf3\xa7\x27\x07\x25\xfd\x37\x29\x75\x4a\x31\x9c\x0a\xde\x14\xb8\x89\x73\xd1\x7f\x87\x92\x5a\x0f\xa9\xb3\xa9\x14\x52\x67\x2c\x63\x81\xd8\x30\xa3\xc0\x0a\xc4\x86\x0a\xec\x14\xd8\x0b\x33\xe8\xa5\xc0\x5e\x48\xf6\x90\x17\x18\x0a\x15\xd8\x29\x70\x13\x73\x0b\x9e\x17\xb8\x89\xc9\x17\xf2\xf2\xd1\x87\xae\x3a\xe9\x03\x1e\xe9\xf2\xd1\x87\xa1\x5a\xe8\x03\x8b\xaa\xc0\x7a\x98\x99\xa3\x02\xeb\x61\x06\x45\x96\x4c\xeb\x71\x86\x38\x2e\xb5\xfb\x29\xe1\xdf\x2c\x30\x22\x66\x16\x47\xc9\xb4\xae\x91\xcf\xb4\x7e\xf5\x24\xad\xe3\x75\x2e\x70\x13\x67\x22\x03\x25\xfc\x63\xbd\x80\xfb\x0b\xac\xc2\xa4\xfa\x78\x81\xe7\xb0\xb0\xb5\x2e\xf0\x1c\x2a\x78\x53\xe0\x39\x2c\x18\xae\x02\xcf\x61\xa9\xfa\x2f\xc6\xb3\x00\x12\x4a\xe0\x9c\x5e\x50\xf3\xc5\x68\x8f\xf0\x65\x81\xcb\x90\x9b\xee\xbc\xc0\x2a\x5c\xc0\x6a\x05\x56\x61\xee\x98\xf6\x02\x8f\x70\xd9\xd4\x02\x8f\x30\xd4\x55\x5e\xe0\x11\x2e\x60\xed\x02\x8f\x70\x39\xd4\x12\xc0\xa3\x17\x7d\x75\x4e\x7b\x4f\x75\x46\x7b\xdc\x58\xe7\x25\x60\x48\x87\x90\xca\x4b\xc0\x90\x6e\x98\xf0\x12\x30\xa4\x9b\x46\x22\x60\x48\xe7\x1e\xba\xb8\x24\x30\x4a\xf4\x36\x02\x7a\xdd\xf4\xd5\x05\x44\xe9\xa6\xef\x0c\x92\x61\x52\x68\xbc\x04\xd4\xe8\xa4\xd0\xc4\xe5\x82\x51\xe2\xcb\x82\x72\xd8\x34\x66\x50\x0e\x2b\xf2\x51\xa0\x1c\xb6\xa1\x16\x90\x13\x27\x51\xa9\xc8\xa9\x11\x6c\xc8\x89\x12\x2e\x0d\x39\x31\x9b\xa5\x21\x27\xba\xa0\x40\x4e\x6c\x4b\x4f\x22\xe7\xa6\x85\x80\x2f\xdd\xd0\x13\x05\x72\x62\x45\x37\x0a\xe4\xc4\x86\x81\x2d\x0d\x39\xaf\x6a\x41\xce\xab\xf6\x90\xf3\xa9\x4e\xe4\x04\x33\x17\x88\x8b\xb9\x5d\x2e\xae\x4b\xfc\xaf\xff\x74\x67\xb7\x52\x20\x2e\x76\x76\xa9\x25\x1c\x56\xdd\xd9\x7b\x96\x70\x58\x75\x2e\xd7\xf7\x02\xa9\x31\xb7\xcb\x79\x81\xd4\xd8\xb3\xde\x6b\x94\xd4\x5e\x7c\x13\x5e\xd4\x42\xcc\x83\x6b\x36\x21\x27\x76\x8e\x40\x14\xc8\x89\x1d\x43\x59\x20\x27\x8e\x38\xc8\x1f\x55\x72\x81\xb7\x58\x41\x91\x02\x6f\xb1\x83\x7a\x0a\xbc\xc5\xae\xc5\x01\x6f\xb1\x37\x35\x87\x98\xb8\x23\x0a\xbc\xc5\xde\x25\xd8\xa2\xc4\x27\x18\x28\xab\xfb\xe0\x73\x81\xd3\xd8\xd9\xa4\x16\x38\x8d\x5d\x8b\x6a\xd2\x05\xec\x72\x99\x74\x01\xaf\x6c\x99\xc8\x49\xe0\xaa\x4c\xe4\x04\x09\x97\x89\x9c\x9a\x94\xf0\x73\xf5\xaa\x49\x09\x3f\x57\xe7\x06\x39\x2f\x81\xdc\xba\x82\x22\x25\x90\x5b\xaf\x52\xde\x81\xdc\x7a\xd5\xa4\x04\x72\xeb\x15\xcc\x5c\x02\xb9\x75\x85\x48\x4a\xa0\xb3\x5e\x71\x0f\x94\xf0\x7a\xf5\xaa\x05\x17\x5e\xaf\x5e\xb1\xbd\x25\x90\x5b\x87\xcd\xcc\x4b\x20\xb7\x5e\x71\x08\x94\x85\x9c\x55\xb5\x20\x67\xd3\x7b\xc8\xa9\x79\x58\xc8\x42\x50\xa4\x2c\x64\x01\x33\x17\x98\x9f\x2b\x11\xdf\x02\xaa\xab\x5a\x54\xa0\x3a\x98\xce\xbc\x80\xd5\x14\x14\x29\x60\xb5\x4a\xe0\xaa\x80\xc7\xe0\x36\xf3\x02\x1e\x23\xbd\xc6\x0b\x78\xac\x4a\x41\x83\xc7\xaa\x14\x34\x78\x4c\x41\x91\x02\x1e\x53\xe0\xa3\x80\xc7\x9a\x96\x03\x28\x0b\xa6\x33\x2f\xa0\xac\x46\xb0\xb6\x80\xb2\x5a\xd6\x7f\x95\x12\x3d\x02\x49\x35\x76\x01\x05\x96\x66\x6e\x82\xf3\x02\x4b\x73\x63\x0b\x59\x40\x4b\x24\xdb\x78\x01\x11\x91\x42\x13\x37\x84\xfe\x94\x64\xfe\x40\x44\x4d\xdf\x27\x88\xa8\xc9\xc4\xc1\xd2\xcc\xdd\x6f\x5e\x60\x69\x6e\x53\xef\x21\x0b\x28\xb2\x80\x96\x9a\x54\x16\x68\xa9\x69\x74\x41\x4b\x4d\x06\x01\x96\x66\x45\x1b\x0a\x2c\xcd\x4d\x23\xff\xe8\x83\xbe\x72\x70\x55\x23\x4c\x5e\x00\x48\x4d\x23\x0f\x40\x6a\x4f\x4f\x86\x9c\x24\xdb\x78\x89\x60\x5f\x57\x9c\xa0\x44\xb0\xaf\x77\x29\x1b\xc0\x53\xd7\xe8\x02\x9e\x7a\x51\x0b\x97\x12\x23\x08\x78\x22\xf5\xc6\x0d\xf0\xd4\x31\x16\x06\x78\xea\x84\x60\x0d\xf0\x04\x15\x98\x1b\xe0\x49\x31\x04\x03\x3c\x71\x6b\x9b\x1b\xec\xce\x24\xd4\xb8\xc5\x71\xb2\xce\x3d\x6d\x6e\x71\x9c\xac\x77\x5c\x23\x06\xcc\xea\x53\xed\xd1\x3f\x46\xc9\x80\x59\x1d\x70\x61\xc0\x2c\x52\x6f\xdc\x80\x59\x7d\xab\x4e\xfa\x77\x54\x27\xfd\xc3\xc0\x1a\x30\xab\xa3\xe6\x0d\x98\xd5\x51\xf3\x06\xcc\xea\x68\x14\x03\x66\x75\x50\xb9\x01\xb3\x48\xc4\x71\x83\x24\x7a\xe0\x70\x34\x48\xa2\x15\x27\x30\x20\x18\xa9\x37\x6e\x40\xb0\xc1\x3c\x18\x10\x6c\x7c\x7f\xc9\xde\x73\x03\x9d\x29\xa0\x60\xa0\xb3\x91\x19\xc0\xf0\x65\xf5\x51\xd4\x78\x74\x6f\x80\x22\x2d\x62\xa0\x7d\xb0\x8d\xb2\xf0\x73\xf5\xc1\xa6\xd8\xc2\xcf\xd5\x15\x5e\xb0\xf0\x73\x75\xee\x70\x73\xcb\x74\x4f\x93\x09\xc6\x83\x34\xc5\x0d\x8c\x37\xaa\xde\xa3\x7b\xa0\x02\x03\xe3\x0d\x14\x98\x81\xf1\x06\xe8\xd3\x60\xbd\x1e\x53\xb5\x20\xe7\x54\x2d\xc8\x89\xd7\xd9\x60\xc4\xe6\xee\x37\xb7\x82\x2c\x4b\x25\x64\x01\x2d\x19\xac\xd7\x03\x34\x6f\x85\x71\xc1\xeb\x65\xb0\x5e\x0f\x36\xbe\x06\x1a\x9c\x04\xd8\x0c\x34\x38\xd9\x54\x19\xa8\x4e\x61\x02\x83\xd9\x7a\xa2\xbc\x0d\x66\xeb\x49\x10\xd4\x60\xb6\x9e\xa8\x72\x83\xd9\x7a\x62\x7b\x0d\x34\x38\x71\x40\x18\xcc\xd6\xd3\xf5\x24\xad\x63\x89\x0d\x34\x38\x09\xc9\x18\x68\x90\x44\x15\x37\xd0\xe0\x04\x3b\x19\x68\x90\x1b\xd6\xdc\x1c\xc9\x30\xa9\xe6\x48\x36\x54\x27\x92\xb1\xb9\x35\x70\xe3\xd4\x32\x02\x37\x72\xa7\x9a\x9b\x23\x19\x8a\xdd\xc0\x86\xf3\xd2\x02\xd8\x70\x12\xa2\xb4\x4a\xeb\x0f\x39\xc3\x29\xd5\x97\x46\x10\x34\x28\xaf\xba\x85\x53\xaa\x2f\x7d\xe4\xe1\x94\xea\xeb\xd3\x7f\xd1\x3a\xec\x35\x6e\x20\xc5\x05\xb2\x31\x90\xe2\x2a\xaa\x73\x53\xd2\x7b\x87\x12\x23\x0f\x52\x24\x51\xc5\x0d\xa4\xb8\x34\xf2\x20\x45\xee\x3f\x73\x8b\xf0\x65\x5f\xfa\xca\x23\x7c\xd9\x17\x06\xc1\x40\x83\x0b\x68\x63\x0d\x39\x31\xb0\xd6\x90\x53\xf3\x00\x52\x5c\x98\x07\x03\x29\xae\xae\x5a\x90\xb3\xab\x3d\xe4\xc4\xff\x6e\x20\x45\xf9\xd8\x0d\xa4\xb8\x30\x1d\x06\x52\xe4\x3e\x32\x37\x90\x22\x44\x64\x6e\x20\xc5\x2d\x65\x0a\x52\x94\xef\xda\x40\x8a\x5b\x3d\x02\x29\x6e\xdc\x6c\x06\x52\xdc\x5a\x8d\x20\xc5\x4d\x40\xdd\x40\x8a\x1b\x8c\x6e\x20\xc5\xdd\xf4\x64\xf4\x6f\xab\x7f\xe1\x58\xeb\xf2\x4f\x5b\x84\x36\x3b\x29\x1f\x71\xbd\x73\x94\x18\x17\x10\xe6\xe6\x20\xa6\x01\x15\x37\xce\x10\x03\x2a\x6e\x76\xda\x06\x54\xdc\x38\xac\x0c\xa8\xb8\x89\x0c\x18\x50\x51\xfe\x69\x03\x2a\x6e\x20\x83\x01\x15\xb7\xd6\x2d\x50\xf1\x24\xd5\x12\xb2\x90\xf2\x11\x97\x4b\x47\x89\xff\x80\x8a\x64\x5d\xb8\x01\x07\x0f\x0e\x47\x03\x0e\x1e\x1c\x8e\x06\x1c\x3c\x9a\x31\xe0\xe0\x61\xaf\x6b\xc0\xc1\xf3\xa3\xa5\xfe\xac\x92\x41\x8a\xf2\xfb\x1a\x48\xf1\x68\x58\x40\x8a\x90\x24\xb9\x81\x14\x0f\xc7\x7c\x0c\x6c\x78\x0e\xc3\xb9\x10\x4c\x16\x07\xfc\x77\xb4\xe0\xc0\x7f\x50\xd9\xb8\xc5\x71\xb2\x7e\xd5\x75\xf0\x1f\xe9\x12\x6e\xe0\x3f\x68\x6e\xdc\xc0\x7f\xb7\xe8\xc9\x4b\x49\xb5\x3c\x4a\xa8\x09\xbc\x7a\x17\x07\x84\xe1\xd5\x23\x95\xc2\x0d\xaf\xde\xd5\xa2\x02\x29\x5e\xa3\x05\x90\xe2\xc5\x1f\x67\x78\xf5\xae\x4c\x07\x48\x11\xd2\x1b\x37\x90\xe2\x6d\x8c\x12\x48\xf1\x76\xbd\x47\x1f\xb4\xa8\x36\x7d\x00\xd1\x1a\xde\x39\x08\x71\xdc\xf0\xce\x5d\x2d\x23\x70\xe3\xc5\xbb\x6a\xe0\xc6\x3b\xf5\x24\xb2\x2c\xfd\x57\x29\xf1\x29\x1d\xc6\x73\xa9\x16\xe4\xd4\xa7\x8b\xe7\x0e\x0a\x1c\x37\x3c\x77\xf0\xc1\xb9\xe1\x9d\xbb\x9a\x15\xf0\xe6\xc3\xa3\x69\xe0\x4d\x92\x20\xdc\xc0\x9b\x24\x41\xb8\xe1\x9d\x7b\x1a\x4f\xbc\x73\xd0\xdc\xb8\x81\x45\x9f\x14\x18\x58\xf4\xc9\x4c\x83\x45\xb9\x85\xcb\x0d\xbc\xf9\x64\x8a\xc1\x9b\x4f\x86\x04\x4c\xf9\xb4\x34\xc1\x94\x4f\x4a\x1f\x4c\xf9\x88\x44\x18\x98\x12\x6e\x19\x37\x9c\x6e\x4f\xf8\x08\x4c\xf9\xd8\x14\x1b\x98\x92\x0b\xb4\xdc\xc0\x94\xef\xaa\xce\x4d\x89\xbe\x83\x1b\xe5\x75\x36\x70\xa3\xd2\x09\x0c\xdc\xc8\x05\x5a\xee\xe0\x46\xa5\x13\x38\xb8\xf1\x31\x9e\x0e\x6e\x7c\x1c\x58\x73\x88\x53\x95\x6a\xe0\x10\xa7\xa6\xa4\x27\x9d\xd2\xa5\x54\xa3\x84\xd3\xcd\x03\x37\x0e\x48\xc3\xdc\x03\x37\x8e\x54\xf4\xdf\x88\x12\x8a\xd6\xa1\x5f\x4d\xa6\xf6\x82\xb3\x4f\x7e\x66\x87\x7e\x35\xb9\xa4\x3e\x94\x16\xa5\xe0\xf3\x4b\x55\x2d\x3c\x4a\x3c\x09\xfd\x6a\x42\xed\x7a\xe0\xc6\x91\x50\x3d\x1e\xb8\x71\x28\xbb\xc0\xe1\x61\x4f\xac\x00\x87\x6b\x3d\xa1\x7a\x1c\x3e\xf5\x34\x55\x42\x4e\xbe\x5d\x87\x70\x35\xa1\x43\x1c\x52\x55\xae\xb0\x72\x87\xed\x5c\xbe\x64\x87\xb5\x9c\x0b\xa6\xdc\x21\x40\xfd\x34\x2e\x10\xa0\x7e\xac\x77\x87\x99\xfc\xc3\xe3\xee\x70\x8a\x7f\xac\x5b\x87\xf2\x54\xbe\x5d\x87\xf2\xf4\x53\x8f\x0a\x2d\x70\xbe\xc4\xe3\x3c\xd9\xe0\x32\x28\x77\xe8\x50\x3f\xf5\x08\x3a\x54\x39\x77\x1d\x3a\xd4\x8f\xef\xd3\xa1\x43\xfd\xc0\xf6\x0e\x1d\xaa\xce\xf7\x3b\x74\xa8\x1f\x87\x57\x1d\x3a\xd4\x6f\xff\xe5\x0a\x7b\x77\xe8\x50\x3f\xce\x5a\x3a\x74\xa8\xd0\x96\xb8\x43\x87\x0a\x6d\x89\x3b\x74\xa8\x9f\x3e\x3a\xe8\x50\x75\x84\xdf\xa1\x3c\xcd\xa0\x17\x87\xf2\x54\xc7\xf4\x1d\xca\xd3\x0c\x7a\x71\x28\x4f\x33\x47\x79\x1c\xca\x53\xee\x89\x8a\x8b\xfa\x7f\x4a\xa6\xff\x3a\x25\x86\x13\x5a\x53\x1d\xda\x77\x68\x46\x33\x68\xd0\xa1\x19\xcd\xfa\x5c\x2a\x75\x76\x3d\x19\x0b\x20\xb3\xb1\x77\x88\x45\x33\xdb\x4b\x87\x58\x34\xa3\xce\x1c\x62\x51\x2e\x59\x72\x87\x58\x94\x4b\x96\xdc\x21\x16\xcd\x84\x1a\x3d\x70\xd5\xc8\x98\x23\x0f\x5c\x35\x74\xdc\xde\x21\x1d\x85\xb7\xc4\x1d\xf2\xd0\x82\x13\xc5\x21\x0f\x2d\x18\x27\x87\x3c\xb4\x10\x79\xf7\xc0\x55\xa3\x7c\xaa\x65\x50\x62\x1e\x20\x5e\x2f\xa0\x41\x87\x66\x14\xbe\x13\x77\x68\x46\xe5\xbf\x75\x68\x46\x0b\xc1\x22\x87\x66\xb4\x68\x11\x43\x33\x5a\x40\xd7\x0e\xcd\x28\x57\x35\xb9\x43\xca\x5e\x88\x0d\x7b\x47\x16\xbc\x8f\x0e\x95\x68\x19\x7a\x12\x59\xd8\x88\x3a\xe4\xa1\x85\x38\xbc\x43\x1e\x2a\xff\xad\x43\xf4\x59\x34\x4a\x10\x7d\xea\xac\xba\x43\xe6\x0e\xe3\x88\x3b\x64\xee\x30\x8e\xb8\x43\xf4\x29\x8f\xad\x43\xf4\x69\x84\x67\x1d\xc2\x4e\xd3\xb8\x40\xd8\x69\xea\x3b\x84\x9d\x26\x05\x06\x61\xa7\x15\xfd\x17\xb2\xe8\xac\xba\xc3\xbc\x2e\xff\xad\xc3\xbc\xae\x93\xeb\x0e\xf3\xba\x61\xa6\x1d\xe6\x75\xae\x47\x72\x87\x79\xdd\xd8\xd3\x39\x9c\xe9\xc6\x29\x23\x87\x33\x5d\xde\x5c\x87\x33\xdd\xf4\x7d\xc2\x99\x6e\xfa\x3e\xe1\x4c\xd7\x89\x69\x87\x33\xdd\x35\xd6\x70\xa6\x7b\xd7\x93\xd1\xba\x83\x8b\x1d\x7e\x73\x27\xec\xe9\xf0\x9b\x3b\x27\x89\x3c\x20\xc3\xd0\x89\x69\x0f\xc8\x30\x9c\x93\x44\x0e\xf7\xb9\x13\xe7\x71\xb8\xcf\x75\x62\xda\xe1\x3e\x77\xf6\x82\x1e\x00\x62\xe8\xfc\xb4\x07\x80\x18\x50\x4f\xb8\x07\x80\x18\xae\xaf\x3c\x00\xc4\xa8\x84\xd4\x1c\x96\xf4\x8a\x41\xf7\x80\x05\x43\x6e\x3d\x0f\x58\x30\x2a\x38\xdc\x61\x50\xd7\x59\x67\x87\x41\xbd\x62\x98\x3d\x20\xc3\xa8\x32\x08\x11\xd0\x1b\x55\xaa\x35\x02\x7a\xa3\x4a\xb5\xc2\xb5\x5e\xa5\x4c\xe1\x5a\xaf\x1a\x6b\xb8\xd6\x21\x7f\x70\x87\x6b\xbd\xb2\xdf\x73\xb8\xd6\xab\xbe\x64\xb8\xd6\x75\xf2\xd9\xe1\x5a\xaf\x53\x75\xc6\xdc\x56\x22\x34\x0e\x9f\xba\x4e\x3e\xfb\x45\x4e\x29\xda\x8b\x9c\x1a\xc1\x87\x2c\x32\xda\xe1\x4e\x1a\x0d\xf8\xe9\xe1\x4e\x1a\x41\xe9\xfa\x67\x95\x0c\xd5\x7a\x93\xc2\x84\x6a\xbd\xe9\x23\x87\x6a\xbd\x11\x0c\x73\xa8\xd6\x1b\x88\xa8\x42\xb5\xde\x58\xee\x15\xaa\x75\xf9\xf8\x2a\x54\xeb\x3a\x7b\x5c\x41\x0c\x8d\x8f\xbc\x62\xf9\xb9\x6c\xc7\x2b\x96\x5f\xfe\xbf\x8a\xe5\x6f\x55\x2d\xd0\x05\x2c\x78\xc5\xf2\xc3\x0b\xe1\x15\xcb\xdf\x9a\xea\x44\x4e\x26\xa5\x62\xc1\xe5\x1b\xac\x50\xad\xcb\x1b\x58\xc3\xf3\x33\xe4\x0d\xac\x58\xf7\x36\xf5\x1e\xb2\xa0\xae\x2b\xc4\xeb\x5c\xb6\xe3\x15\xe2\xf5\xc6\x27\x5f\xb1\xf5\x0d\xbf\x76\x85\x5c\xbd\xb1\xa9\xaa\x99\x3e\x70\x4a\xb2\x62\xeb\x1b\x53\x54\x21\x49\x6f\x78\xa8\x2a\x96\xbf\x83\x8f\x2a\x96\xbf\x7f\xfa\x2f\x46\x50\xfe\xbf\x0a\xf5\x39\x1c\x0e\x5e\xa1\x3e\xef\x38\x97\x6a\x38\x58\x06\x97\xf4\x78\x05\x23\xc8\x53\x58\xc1\x08\x9d\xcd\x7b\x05\x23\x74\x36\xef\x15\x8c\xd0\x49\xdd\xa8\x60\x84\x6e\x7a\xef\x51\xa2\x05\x6c\x7d\xd7\xfc\x61\xeb\xe1\x7e\xf0\x8a\x41\xef\xec\x2c\xaa\x21\xa7\xe6\x0f\xf3\xde\xf1\xb5\x56\xcc\x7b\x07\x3f\x54\xcc\x7b\x5f\x7a\xf2\x50\x62\x94\x60\x3b\xef\x4b\x75\x22\x0b\xce\xa5\x8a\xe9\xef\xec\xdb\x2a\xa6\xbf\x63\x52\x2b\xa6\xbf\xe3\x36\xa9\x98\xfe\x4e\x06\x62\xc5\xbc\xcb\x6f\x58\x31\xef\xfd\xe9\xbf\x90\x73\x7c\xaa\xf3\x50\x42\x16\xd8\xc7\x47\x56\xe9\xa3\x84\x64\xc0\x82\xa1\x91\xc7\xf4\x0f\xc2\xc8\x15\xf6\xf1\x81\x8f\xb6\x02\x04\x86\x46\x17\x20\x30\x40\x75\x15\x20\x30\x70\x24\x54\x80\xc0\xd0\x58\x03\x04\xe4\xf2\xab\x00\x01\xb9\xfc\x2a\x0c\xe3\x03\x75\x5d\x61\x18\xe7\x7a\x1d\xaf\x30\x8c\x0f\xf6\x5f\x15\x86\xf1\xa1\x15\x00\x48\x80\xc4\x21\xe8\x6e\xa2\x44\xff\x00\x09\x3a\x27\x5c\x01\x09\x43\x73\x04\x48\xd0\x39\xe1\x0a\x10\x18\x5b\xed\x21\x27\x1e\xdb\x8a\xb1\xd7\xa9\xe1\xda\x91\x13\x53\x5c\x3b\x72\x5e\x3d\x89\x9c\x1c\x38\xac\xf0\x8d\x8f\xab\xf7\x90\xf3\xe9\x49\x64\x21\x5a\x54\xe3\x9c\xf7\xe0\xd6\x1c\xaf\xc0\x02\x68\x1b\x82\x6c\xe7\xa7\x84\xa3\xab\xc2\x29\x3e\xb5\xc6\x22\xdc\x36\x74\x12\xb9\x46\xb8\x6d\x70\xa3\x8e\x57\xf8\xc6\xa1\x6d\xf0\x0a\xdf\x38\xb4\x0d\x5e\xe1\x1b\x9f\x45\xef\x55\x4a\xc8\x09\xdf\xf8\x04\x38\x56\x60\xc8\xc4\xd8\x57\x60\x88\x8e\x14\x57\xf8\xc6\xe3\x48\xf1\x1f\x55\x72\x85\x8a\x7c\x62\xb7\x2a\x08\x85\xcb\x76\xbc\x82\x50\xa6\x26\x0c\x2a\xf2\xa9\x09\x83\x8a\x5c\xe7\x7d\x2b\x54\xe4\x53\xcb\x08\xf4\x32\xb5\x54\x40\x2f\x53\xd3\x07\x7a\x99\x60\xd1\x0a\x42\x81\xf3\xd7\x2b\x08\x65\x5e\xfd\x47\x17\x08\x6e\x54\x10\x8a\x4e\x06\xd7\x85\x9c\xc4\xfd\xeb\x42\x4e\xd0\x7c\x5d\xc8\x89\xd7\xb2\x2e\xe4\x04\xb5\xd6\x85\x9c\x6c\x4b\x2b\xc8\x46\x67\x88\x2b\xc8\x66\x25\x3d\x79\x29\xe9\xbf\x68\x7d\x71\xc2\xa3\x86\xa3\x64\xe8\x9c\x70\x0d\x47\xc9\x58\x9a\xf6\x70\x86\x8c\xc5\x0e\xa1\x86\x53\x63\x2c\xa9\xc8\x70\x6a\x8c\x05\x72\xab\x71\x7a\x7b\xe8\x2c\x70\x05\xcb\x2c\xa9\x41\xf0\xca\x02\xd1\x56\xf0\xca\xd2\x1c\x81\x57\x96\x14\x1f\x78\x65\x81\x1f\x6a\x38\x3c\x06\x57\xef\x78\x0d\x87\xc7\x90\xd7\xb2\x86\xc3\x63\xac\xa1\xff\x26\x25\x96\x26\x08\x65\x69\xa6\x41\x28\x4b\xca\x14\x84\xb2\x34\xd3\x20\x94\x25\x53\x05\x42\x59\x9a\x69\x10\xca\x22\xec\x52\x41\x28\x3a\x35\x5c\x41\x28\x3a\x27\x5c\x41\x28\x4b\x0b\x15\x84\xa2\xf3\xbe\x15\x84\xb2\x39\xc5\x51\x23\xf8\x36\x76\x52\x9d\x83\x12\xdf\x19\xe8\x65\x73\x22\xb5\x86\x33\x64\x70\xbd\x8e\xd7\x70\x7f\x8c\xcd\x6e\xac\x86\xfb\x63\x6c\x2d\xb1\x38\xaf\x3d\xb6\x16\x55\x84\xd4\x06\x57\xe8\x04\x9f\xd5\x4f\x49\x20\xe1\xd1\x3a\x67\x41\xea\xa3\x75\x7c\x8a\x15\x0c\x24\x0f\x6a\x05\x03\x6d\x5c\x5b\x15\xa0\xb3\xf5\xb5\x02\x74\x74\x8e\xb6\x01\x66\x0e\xfd\x6b\x80\x99\x43\x8f\x1a\x60\x86\x2b\x6d\xbc\x01\x66\x74\xc6\xb6\xe1\xe2\xe0\x4a\x9b\x60\xd3\xfa\x29\x65\xd5\xd9\x29\xe9\xc9\x90\xe5\xb0\x5f\x68\x00\x16\xa8\x12\xbc\xe1\x8e\x38\x28\xf6\x86\x3b\xe2\xf0\x2d\x35\xc0\x8c\x4e\xd5\x36\x00\xcb\x01\xf7\xb7\x8f\xf6\xe8\x5f\xfb\x68\xaf\xa9\x96\x18\x17\x28\x16\x82\xd9\xeb\xa7\x34\x54\x27\x7d\x27\x12\xd1\x3e\x64\xc1\x58\xb4\x88\x47\x8d\x03\x4e\x6d\x00\x9d\x03\x40\x6a\x00\x9d\xc3\x31\xbb\x16\x31\xa7\x71\xd8\x7f\xb5\x88\x39\x0d\x6e\xb8\xf1\x96\x91\x85\x00\x69\xcb\xc8\xc2\x2e\xa0\x01\x90\xb8\xc5\xc6\x1b\x00\xe9\x00\x9e\x1a\x00\x49\x07\x69\x1b\x20\xe8\xe0\x67\x6e\x85\x91\x40\x33\xb4\x42\xeb\xf8\x07\x1a\x00\xe9\xe2\x1f\x68\x00\xa4\x9b\xf4\x5f\x8c\xd2\xd5\x8c\x01\x82\xae\x46\x10\x67\xc8\xed\x7f\xf3\x25\x37\xfc\x24\x97\xa0\x4f\x03\x1f\x5d\x0d\x2e\xf8\x88\xcb\x68\xbc\x81\x8f\x2e\x9b\x80\x06\x3e\xe2\x32\x1a\x6f\xe0\x23\x79\x49\x9b\x21\xa6\x86\x3a\x82\x53\xe3\x4e\xd5\x82\x98\x44\x9f\x1b\xd8\xe9\x6a\x70\xc1\x4e\x97\xb8\x6a\x03\x3b\xdd\xcd\x14\x81\x8f\xae\x06\x17\x7c\x74\xd9\x2e\x34\xf0\xd1\xe5\x28\x5d\x03\x1f\x5d\x36\x5c\x0d\xd7\xc8\x65\xc3\xd5\x70\x8d\x70\x89\x8d\x37\x50\xcf\x4b\x2a\x65\x4a\x48\x0d\xea\x79\x28\xe1\x06\xea\x79\x9f\xfe\x6b\x94\x18\xea\x08\x39\x8d\xc7\x66\xba\x81\x88\x60\x4a\xf0\x06\xea\x79\x6c\xe2\x1a\xa8\x07\x6e\x04\x6f\xb8\x38\xb8\x8c\x26\x68\xe1\x7e\x4a\x38\x12\x1a\xc8\xe6\xa1\x18\x1a\xc8\x46\x27\x83\x1b\xc8\xe6\x69\xe1\x80\x6c\x1e\x61\xa5\x06\xb2\x79\x6c\xf7\x1a\xc8\xe6\x35\xbd\x17\x23\x0f\xdf\xb8\x37\x90\x0d\x9c\xe2\xde\x70\x71\xe8\x0c\x71\xc3\xc5\xf1\xf0\x06\x36\x50\x8f\x7c\xbb\x0d\xd4\xc3\xa5\x32\xde\x02\xf5\x9c\x6e\xe9\x28\x19\xa0\x05\xf2\x89\x5f\x0e\x68\xb2\x05\xfa\x39\xdd\xbe\x73\x50\xd6\x2d\x10\xd0\xe9\x96\xcf\xef\x32\x8e\x50\xd2\xe9\x66\xe7\xb8\x6a\x6e\xbf\xbf\xe8\x3c\x76\x0b\xa4\x74\xba\xf9\x39\x92\x3a\x5c\x2a\xf1\xcb\xcb\x6a\x7d\xf2\x4b\x3b\xcf\xd5\xfa\xe2\x97\x71\xf6\x52\x7f\xf6\x3f\xbf\x5c\xd5\x7c\xf8\x65\x9e\x83\x62\x6e\x81\xbc\x4e\xb7\x75\x76\xd5\x2f\xef\xf7\x97\xdf\x2f\x2b\x10\xd8\xe9\xb6\xcf\xd6\xd2\x0d\x14\x16\xbf\x3c\x82\x85\x6d\x68\x7c\xce\xd1\x29\xf6\x36\x34\x3e\xf7\x5c\xa9\x86\xc1\xf8\x78\x3a\xb0\x74\x04\xf1\x9f\x7e\xf9\x9d\x91\xc1\xf8\x78\x3e\xfb\xa9\xf5\xf6\xfb\xcb\x4d\x7a\xab\xff\xf3\x8b\x54\xfa\x60\x7c\xdc\xce\xd6\xa8\x8e\xf9\xfb\xcb\xef\x77\x37\xd6\x3f\xbf\x48\xfd\x8d\xfd\xcf\x2f\x4f\xcf\x30\x3e\x5e\xcf\x2e\xaa\xf9\xfe\xdf\x5f\x98\xd3\xf1\xfe\xf9\x05\x78\xd0\x66\xfa\xfd\xe5\x60\xb6\xda\xfc\x7e\x7f\x81\xbd\xde\xdb\x64\x7c\xbc\x9d\x2b\x93\x31\x19\x1f\xef\x67\x6b\x2d\x4c\x8d\xcf\x38\xbf\xca\x7b\xfa\xef\x2f\x5c\x44\xe4\x6d\x6a\x7c\xf6\xf9\x35\x3d\x53\xe3\x73\xce\xaf\x2a\x9d\xfd\xf7\x97\x2b\xd3\x35\x35\x3e\xf7\x70\x35\x97\xb7\x39\x7f\x7f\xf9\xd5\x0a\x53\xe3\xf3\x8e\x92\x58\xda\xdc\xbf\xbf\x5c\x4e\x95\xb4\x79\x7e\x7f\x79\x60\xee\x36\x19\x9f\x9a\x8e\xae\x35\x6a\x93\xf1\xa9\xdf\xd9\x1c\x3c\x6d\x8b\xf1\xa9\xe5\x1c\xdc\x56\x6d\x7d\xff\xfc\x22\xa3\xb5\x18\x9f\x6a\xe7\xe0\x42\x6d\xab\xfc\xf3\x0b\x60\xb5\x2d\xc6\xa7\xfa\xd9\xec\x4c\xda\xf2\xdf\x5f\x0e\xc7\x0c\xda\x62\x7c\xea\xcf\x7c\x21\xe1\x62\x7c\x6a\x3f\x17\xe8\xd5\x16\xe3\x53\xc7\xd9\xec\xff\xdb\x1a\xbf\xbf\x5c\x40\x7a\x5b\x8c\x4f\x4b\xe7\x17\x28\x2c\xc6\xa7\x7d\x47\x51\x9c\xb6\x18\x9f\xf6\x63\x09\xc7\xbf\xcc\x8f\x8d\xff\x6e\x7d\xe0\x67\x2a\xed\x9d\xf5\xa3\x31\x7e\xa5\x0d\xfe\x95\x36\x5c\xbf\x32\x13\xe2\xd6\xdc\x57\xbf\xd2\x3e\xbc\x4d\x73\x4d\xfd\x8a\x9c\xa2\x20\xf8\x92\x7e\x65\x0e\xa0\x22\xa8\xfe\xfe\xfd\x2b\x17\x4b\x37\xfb\x77\xbd\x5c\x23\xeb\xf7\xdf\xf5\x72\xdd\x5d\x6b\xff\x7e\x96\x8b\x01\xce\xfa\xf7\xaf\xca\x23\xa8\xff\x6e\x8d\x83\xb4\xeb\xe8\x57\xbe\x5f\x9d\x63\xf3\xfd\xef\x1a\x22\xe2\x36\xec\xfb\xb7\x0c\x9b\x23\x15\xe9\xdf\xcf\x1e\x8e\x56\xfc\x37\x19\x70\xb1\xb7\xfd\xef\x1a\xd0\xef\xe3\xf7\x57\xd6\x59\x38\x4d\xdf\x93\x2e\x0b\x97\x66\x4a\xfa\x0e\x03\xf8\xa7\x04\x64\x6f\x01\xfc\x53\x92\x45\x0f\xb7\x65\x4a\x5c\x61\xd0\xc2\x6d\x99\x74\xc3\x54\x0f\xb0\x96\x3e\xf6\xac\x3d\x20\x58\xfa\xd8\x6d\xf6\xf0\x40\x24\x48\xb0\x83\x1e\xf3\xa7\xc4\x3a\x1c\xe1\xd5\x28\xc9\x54\x1a\x94\x0a\xa5\x49\xc9\x29\x2d\x4a\x8d\xd2\xa6\x34\x28\x9d\x28\x55\xbd\x77\xa3\xd4\x55\x7a\x94\xa8\x25\x64\x29\x89\xbb\x85\x46\xe0\x82\x92\xb0\x94\x23\x02\x21\x45\x23\x31\x02\x17\x94\x84\xcf\x61\x04\x2e\x28\x69\xaa\x96\x46\x49\xb5\xd0\x07\x5c\xa1\xa3\xd2\x87\xad\xf7\xe8\xc3\x55\x89\x3e\x5c\xd5\x42\x1f\xae\x6a\xa1\x0f\xf8\x0e\x46\x43\xce\xf7\xff\xbd\x94\xe1\x7f\xcf\xff\xf5\x3f\xef\xff\xf8\x4f\xe2\x52\xb5\xc4\x85\x4a\x29\x45\xea\x55\xe2\x42\xa5\xc4\x6d\x49\x09\xf2\x9c\x94\xa2\x0f\x29\x85\xf0\x89\x8b\xc2\x52\xaa\x4c\x6a\xd5\x6c\x56\x7e\xdc\x51\x0a\x07\x4d\x4e\x89\xd7\xc3\x41\x93\xb8\xe7\x28\xa7\x58\xc1\x29\x35\xbe\x97\x00\x27\x39\x7d\x7a\x92\x3a\x03\x95\xe4\x14\xbe\x8a\x94\x02\x95\x24\x2e\x3f\xca\x29\x22\x5f\x89\xcb\x8f\x12\x37\x1b\xe5\x5f\xe1\x3b\xc2\x77\x5a\x0f\x15\x9e\xb8\xd2\x28\x71\x97\x51\xe6\xf2\xb7\xc4\x9d\x44\x89\xdb\x81\x32\x01\xc1\x94\x06\xdd\x0c\xbb\x99\x73\xe8\xb3\x94\x06\x0d\x85\x81\xcb\x1c\x4d\x48\xdc\x00\x94\xb8\xa6\xa7\xa4\x84\x9c\x13\xe1\x27\xd3\xf8\xf1\xfa\xa4\xa1\x70\xc0\x17\xee\x35\x4b\x5c\x0f\x93\xb8\x17\x66\x92\x3b\x9a\xb8\x09\x26\x71\xb1\xcb\xdc\xb1\xe2\x52\xba\xac\xa3\x38\xba\x39\xb9\xc6\x35\x71\x33\x4b\x4a\xe1\x02\x9f\xfb\x63\x3c\x1f\x33\xf6\x78\x3d\xf6\x61\x89\xfb\x56\x12\x17\xad\xcc\x9d\x19\xba\xc7\x34\xc6\xee\x71\xee\x00\x9e\x89\xdb\x57\x12\xd7\xae\xcc\x1d\xeb\x2f\x7d\x11\xe1\x4e\x5f\x84\xb6\xe7\x8e\x98\x55\xfa\x62\xa7\x97\xb8\x5a\x65\xee\xd8\x4c\x24\x2e\x53\x49\x5f\x84\x9a\xe7\xee\x3c\x19\x7b\xbb\xc4\x85\x29\x93\xfb\x5b\xd3\x17\x5b\xb5\xf4\x7d\xb4\x1e\x2e\xbc\xf4\x7d\x7a\x9d\x6e\x86\x27\x2f\x71\x7d\x4a\xe2\xa6\x94\x49\x96\x69\xe2\x6e\x94\xc4\xa5\x28\x73\x4f\x9e\x8c\x88\x73\xfa\x32\x0d\x2d\x44\x8a\xc0\x73\xe2\xc2\x94\xb9\x63\xab\x96\xbe\x2c\xfd\x82\x9c\x87\x27\x0b\x75\x16\xea\xbc\x08\x5f\xe8\x7b\xa1\xce\xab\x27\x11\x3e\x36\x52\x13\x6b\x9f\xb8\xb3\x24\x71\x59\xc9\xdc\xe1\xfc\x4e\x5c\x4f\x92\xb8\x97\x64\xee\x47\x37\x8d\x3a\x63\x2b\x34\xd9\x63\xa7\xcf\x90\x33\xf6\x40\xf3\x24\xea\x34\x5e\x8f\x2d\xcd\x04\x26\x27\xae\x12\x49\xdc\x21\x32\xe1\x21\x4c\xdc\x13\x92\xb8\x20\x64\x02\x6d\x12\xd7\x7e\x24\xee\xfb\x98\xa7\xd2\x23\x96\xf6\x17\xaa\x6b\x9e\x4a\x9d\x2c\x74\xee\xf4\x98\x27\x22\x0c\x89\x3b\x3d\x12\xd7\x77\x4c\xf6\xd8\x89\x0b\x3b\xd2\x57\xa9\x33\x0e\x2b\xa5\x2f\xfc\xb2\x89\x0b\x3b\xe6\xe9\xcc\x11\xeb\x9d\x9b\x3a\xe6\xd1\x14\x37\xe4\x6c\x34\xa4\x39\x6a\x34\x14\xcb\x7e\x9e\x8d\x9c\x8d\x86\x62\x85\x4f\x6e\x83\x4d\x1f\xab\x98\x5b\x35\x26\x97\xbb\x26\x6e\xd5\x48\x5c\xa7\x31\xcf\xa3\xf5\x4e\x9d\xb1\xc2\x27\xc8\x2e\x7d\x9d\x3a\x03\xc6\x4f\xf6\xca\x89\x8b\x30\x12\x37\x60\xcc\xfb\xd1\x77\x94\xc0\x17\x4a\x60\xde\x42\xeb\x03\x23\x15\xd8\x78\x72\xb9\x6b\xfa\xd0\x0c\x5c\x84\x31\x39\x98\x94\xb8\x08\x23\x71\xcb\xc5\x84\x87\x30\x71\xaf\x45\xfa\x02\x94\x4e\x0e\x2d\x25\x2e\xad\x48\xdc\x56\x31\x39\x9f\x94\xb8\xad\x22\x7d\x93\x3a\x1d\xe1\x27\x1f\x43\xa0\xc1\x09\x2b\x61\xe2\x7e\x8a\xf4\x2d\x84\xaf\x3c\xb9\x18\x90\x45\x43\x4d\x4f\xd2\xa3\x00\x6f\xf3\x6a\x36\x17\xad\x07\x36\x9b\xec\xe6\x13\x37\x59\x24\xae\xb0\x98\xb7\x23\xd2\xe6\xb3\x09\xbc\x34\xef\xd2\x8f\xcc\x66\x80\x9d\xc9\x06\x3c\x71\xa7\x44\xe2\xfa\x88\x09\x2b\x61\xe2\x8a\x88\xc4\xdd\x10\xf3\x1e\x44\x02\x1e\x70\xf1\xc3\x7c\x9a\x8e\x83\x12\x88\xc8\xe5\x7c\xfa\xe6\x51\x95\x5f\x38\xfd\xe6\x43\x7b\x7f\xa8\x4a\xee\x71\x98\xdc\xdc\x9a\xb8\xb9\x21\x71\x49\xc3\x7c\xc6\xf7\x79\x11\x29\xbc\x76\xf3\x19\xad\x5f\x06\x19\xa5\xfa\x34\xf2\x28\x55\x6e\x59\x98\x0f\xe5\xff\x3d\x1a\x42\xd3\x3e\x8d\x27\x4a\x95\xbb\x13\xe6\xc3\x76\x7c\x8f\xf1\x0c\x35\x3a\xdf\xd2\x93\xd4\xf9\x10\x3e\x3c\x42\x89\x3b\x10\x12\xd7\x1d\x4c\x4e\x39\xa5\x8c\x52\xcd\x28\x55\x8e\x30\x25\xee\x39\x48\x5c\x70\x30\x5f\xec\xea\x12\x97\x18\x24\x6e\x2f\x58\x09\xdb\xc1\x2d\x04\x89\xeb\x07\x96\x4c\x64\x46\xd3\xe6\xd0\xb4\x2b\xa1\x19\x72\x78\xbc\x12\x97\x0a\x2c\xee\x26\x4d\x5c\x07\x90\xb8\x07\x60\xa5\xc6\xeb\xe1\xab\x4a\x24\xf9\xaf\xd4\x7f\xf1\x04\xf0\xe1\xff\x05\x28\x72\x78\xb0\x52\xce\x88\x16\x3e\xa1\x94\xd1\xb8\xdc\x07\xb0\x48\x76\x4d\xb9\x20\x6f\x38\xab\x56\x42\xdf\x73\x2d\x40\xe2\x3e\x80\x95\xa6\x9e\x64\x0c\x42\xb9\x2e\x32\x60\x13\xd7\x02\x24\x6e\x00\x58\x1c\x42\x4a\xe4\xfc\xa7\x6c\x8c\x01\xfa\x3e\x87\xaa\x4d\xdc\x00\xb0\x60\xf1\x4b\xdc\x00\x90\x48\xf6\x5f\x49\xd3\x62\x74\xd7\xe8\x2e\x5a\x87\x9c\xff\x94\x8d\x1e\x1d\x3d\x49\xeb\xce\x10\x62\x2e\x48\xde\x4f\x64\xed\xaf\x0f\x44\x40\xd6\x7e\x22\x5d\x7f\x7d\x09\x91\x9c\x69\x09\x15\xbd\x3e\xf4\x3d\x79\xfa\x89\x04\xfd\xf5\x7d\x7a\x9d\x86\x42\x61\xaf\xef\xe3\xf5\xf0\x41\x25\x92\xf0\x17\xdc\x7c\x89\xb4\xfb\x44\xbe\xfd\xfa\xb2\x9e\x64\xe8\x02\x48\x2e\x0e\x59\xa5\x8c\x16\xcf\xa1\xc5\xd7\x87\x26\xcb\x95\x86\x02\x3a\xae\x0f\x4d\x46\x12\x7e\xca\xa1\xc5\xd7\x67\x3c\x09\x6a\x23\x25\x7f\x7d\xae\x27\xe9\x66\xa3\x9b\x4e\x43\x00\xb4\xdc\x68\x88\xa5\x93\x1b\x0d\x75\x7a\x04\x4c\x20\xfb\x3e\xe5\x4e\x43\xd8\x90\xdc\xa9\x33\xfc\x37\xeb\x0b\x8f\x62\xca\xe1\x4f\x49\xa4\xd6\x2f\xf8\xf7\x52\x1e\x88\x34\x10\xe9\xe8\x47\x06\x79\xf0\xba\xd6\x13\x0a\x9b\xbc\xf9\xf5\x61\x2e\xf2\xa4\xce\x50\xd8\x2b\x27\x84\x47\x61\xe7\x50\xd8\x2b\x6b\xe2\x26\x22\x05\xe8\x5b\x5c\xa2\x9a\xf2\x62\x35\x87\x36\x5e\x24\xb6\x26\x32\xde\x13\xa9\xee\x8b\xfc\xd6\x44\xaa\x7b\xca\xa1\x8d\x57\x46\x0d\xe7\xc5\xc4\x85\x6e\x5e\xb9\xeb\x49\x3e\xc5\xd0\xcd\x8b\x34\xd7\x94\x17\x5f\x48\x68\xe3\x95\x07\xd3\xb1\x69\x7d\xd3\xfa\xe4\xc9\xcd\x80\x6c\x1a\x8a\x8d\x47\x22\x81\x3d\x91\xab\xbe\x72\xec\xd2\x12\x19\xe8\x89\xd4\xf3\x95\x37\xc2\x1f\xa6\x23\xc2\x3a\x2b\xa3\xc5\xc9\x2b\x4f\x24\x94\xaf\x7c\xf4\x24\x83\x7c\xa8\xf3\xa0\xc9\x0e\x83\x1c\xd8\x76\xe5\x4b\x8f\x50\xd8\xe4\x80\x2f\xd2\x63\x13\x39\xe0\x89\x74\xef\x95\x1f\xab\xf8\x52\x67\xe8\xe6\xc5\x7d\xa9\x89\x5c\xee\x94\x1f\x72\x62\xd2\x33\x80\x97\xcc\xee\x05\xd7\x5e\x22\xb3\x3b\x91\x9b\xbd\xb8\x52\x35\x91\x8d\x9d\x48\xbc\x5e\x85\xef\x93\x54\xeb\x44\x8e\xf5\x2a\x71\x8c\x32\x91\x63\x9d\x48\xae\x5e\x25\x82\x12\x89\xe4\xea\x54\x02\x05\x2f\xae\x46\x4d\x64\x55\x27\x52\xa6\x57\xa9\x7a\x32\xc6\x93\x7c\xe8\x05\x91\x5e\x22\x1f\x3a\x91\xfa\xbc\x4a\xec\x2d\x13\xc9\xce\x89\x2c\xe7\xc5\x15\xa7\x89\x4c\xe6\x44\x0a\xf3\x2a\x28\xab\x82\xc2\x2e\x81\x82\x57\xd9\xc8\x99\x91\x33\x53\xe7\xe1\x49\xd4\x6f\x89\x4c\x96\x65\x28\x96\x02\xb6\x2d\x81\x6d\x17\xac\x75\xa9\xa0\x7e\x4b\x60\xdb\x65\xa8\x8b\x82\xfa\x2d\xa8\x5f\x63\x69\x97\x40\xba\x89\xdc\xe5\x65\xe1\x6e\x4b\x25\x94\x71\x22\x85\x79\x71\x48\x2b\x15\xf4\x27\x79\xc6\xcb\xc0\x77\xe4\x12\x27\x92\x88\x97\xb1\x36\x0b\x88\x95\x7c\xe1\x05\xf1\x5b\x2a\xce\xeb\x4e\x43\xe0\x3b\xd2\x7f\x13\x79\xbf\x0b\xca\xb6\x54\x2a\xd3\x81\x02\x74\xb4\x22\xe9\xbf\xa9\x84\x1e\x5c\xdc\xd7\x99\x0a\x3b\x54\x52\x7c\x97\x67\x44\x02\xb1\x92\xbf\xbb\xc8\x53\x4d\x64\xec\xa6\x82\xae\x73\xb4\x62\x41\xd7\x91\xbf\xbb\xdc\xf4\x24\x0d\x05\x62\x5d\x5c\xf7\x99\x4a\xe3\x63\x08\xe0\xba\xdc\x10\xa9\xa9\xa1\x98\x38\x07\x65\x90\x8e\x9b\xc8\xbc\x5d\x0e\xbe\x23\x83\x36\x91\x3a\xbb\x5c\x1f\x03\x88\xb5\x74\x84\x67\xc1\x96\xce\xc8\x87\xef\x79\xf9\xd2\x93\x7c\x75\x68\x45\xc7\x1a\x92\x4f\x9b\xc8\x8f\x5d\x8e\x35\x24\x07\x36\x91\xfc\xba\x1c\xfd\x59\xc0\xb6\xe4\xc0\x2e\x0e\xaf\x25\xf2\x5c\x53\x09\x97\xed\xe2\x16\xce\x44\x82\x6b\x22\xb3\x75\xd5\xac\x1f\x19\x10\xb4\x62\x05\xb5\x91\x9a\x9a\xc8\x49\x5d\x15\xdb\x41\x16\x6a\x22\xfd\x74\xd5\xf1\x77\x40\x51\x80\xb3\x25\x34\xe7\xaa\x18\x7f\x12\x48\x13\x99\xa3\xab\x01\x80\xc8\x1c\x4d\x05\xed\xd8\xd0\xe2\x65\x23\x6f\xf8\xf4\x56\xd3\xb7\x0f\x72\x2d\x68\xc7\xc6\xee\x97\x04\xd2\x44\xe6\xe8\xe2\xcc\x57\x22\x57\x34\x95\x00\xb0\xab\xc5\xb1\xe4\x54\x36\xad\x6f\x5a\xd7\xfc\x1f\xbe\xd3\xd0\x9c\xab\x49\xc1\x1c\x16\x59\xf8\xc5\x56\xd3\x2a\x39\xcc\x40\x68\xce\xd5\x9a\x7e\xa4\xa1\x43\x43\xc0\xaf\x72\x98\x81\x00\xbe\xab\x49\x6d\xa0\x47\xc9\x23\x5d\xe4\x83\x26\xf2\x48\x13\x09\xa4\xab\x01\xbb\x48\x20\x4d\x64\x87\x2e\x6e\xa6\x4c\xe4\x83\x26\x12\x41\x57\x1b\x7a\x92\x1e\x5d\x7a\x04\xec\x22\x03\x34\x91\xec\xb9\x9a\x46\xfe\x31\x1d\x8f\x86\x16\xdd\x44\xb9\x92\xa6\xb9\x1a\x0b\x97\x54\xcc\x44\x0e\xe6\x6a\xa8\x76\x72\x30\x13\xc9\x97\xab\x3d\x3d\x69\xfc\xc8\x74\xa0\xda\xc9\xb3\x4c\xa4\x54\x2e\xae\x9d\x4c\xa4\x4d\x26\xf2\x25\x57\x07\x22\x91\x2f\x99\x48\x8d\x5c\x1d\x65\x40\x6a\x64\x22\x27\x72\x75\x94\x01\x59\x90\x89\xf4\xc7\xc5\x01\xb2\x44\xfa\x63\x22\xef\x71\x41\xef\x96\xc8\x7b\x4c\xe4\x31\x2e\x0e\x90\x25\x72\x15\x13\x49\x8a\x8b\x33\x5f\x89\xb4\xc4\x44\x3e\xe2\xea\x95\x6e\x66\x1a\xca\x34\x54\xf5\x24\x75\x66\x7a\x04\x1a\x32\x74\xb3\xa1\x9b\xc9\x1c\x4d\x16\xaa\x36\x59\x38\x15\x56\xbf\x7a\x92\xd6\x8d\xd6\x41\x2e\x24\xf8\x25\x32\xfb\x16\x97\x34\x26\x03\x9c\x1a\xe0\x94\xf4\xc9\x44\xda\x5e\x22\x5f\x6f\x91\x1b\x99\xc8\xc9\x4b\x24\xe3\x2d\xd2\x20\x93\x39\xad\x03\x4e\x47\xd7\x8f\x0c\x72\xc0\xd1\x35\xf0\xe3\x98\x7c\xb3\xe1\x3f\x58\x23\x02\x70\x89\x2c\xbc\x44\xfa\xdd\x22\x61\x32\x91\x62\x97\xc8\xad\x5b\x30\x96\x25\x72\xeb\x12\x69\x74\x8b\xf4\xc9\x44\xe2\x5c\x22\x63\x6e\x0d\xf0\x88\xa1\x9b\xad\x51\x67\xe4\x18\x24\x92\xe3\x12\x59\x71\x8b\xc3\x57\x89\xac\xb8\x44\x92\xdb\x1a\x87\x29\x06\x72\x92\xb3\xb6\x46\x9c\xe5\x49\x64\xa9\x25\xd2\xd3\xd6\x00\x8f\x90\x9e\x96\xc8\x4b\x5b\xe3\xd1\xf7\x8e\xf0\x1d\x39\xc1\x23\x24\x9d\x25\xb2\xcd\x16\xe4\x66\x89\x8c\xb2\x44\x2a\xd9\xe2\xbc\x54\xb2\x81\x48\x28\xd7\x69\xfa\x91\x2f\x19\xe5\x4a\x4a\x66\x22\x5d\x2c\x59\xe8\xd8\x35\xd9\x98\x91\x27\x96\x48\x10\x5b\xd3\xf5\x24\x1f\x2d\x1a\x97\xb3\x51\x89\xcc\xb0\x44\xa6\xd7\x9a\x15\x39\x27\x0d\x85\x37\x61\x4d\xb4\x8d\xa1\x86\xc9\xf4\x5a\x13\xff\x9d\x01\x63\x2d\x80\xeb\x82\x88\x2c\x91\xe2\x95\x0c\x70\x3a\xd1\x0c\x86\xe3\x80\x84\xaf\x35\xd1\x0c\x24\x7c\x25\xb2\xb9\xd6\xc4\x2b\x47\x36\x57\x22\x8d\x6b\x4d\xb6\xc4\xa4\x63\x25\x43\xfd\x4e\x4d\x1c\x3e\x02\x0b\xdd\xba\xc8\xda\x4c\x24\x4b\x25\xf2\xa2\xd6\xd2\xda\x24\x76\x60\xa8\x4a\x48\xc3\x12\x29\x50\xc9\x80\x9c\x8b\x8d\x2e\xd9\x4e\x89\x34\xa7\xb5\x0c\x91\x70\x07\x18\x5a\x71\x69\xc1\xe2\x0f\x25\xb5\x68\x2d\x2d\xc3\x47\x8f\x1e\x0d\xb1\x1d\x24\xff\x27\x91\xf8\xb3\xa0\xdf\x4a\xa4\xfa\x24\x72\x7c\x16\x2c\x5c\x89\xac\x9e\x44\x3a\xcf\xe2\xec\x50\x22\x9d\x27\x91\xb9\xb3\xb8\x16\x30\x91\x9d\x93\x9c\xad\xfb\x06\xe3\x78\x68\xa9\x44\xce\xcd\x82\xaf\x2b\x91\x73\x93\x1c\x78\x28\x0f\xaf\xe3\x24\x75\xe0\xe1\x06\xe3\x38\x7a\xc9\x33\x75\x82\x71\x48\xc4\x49\xce\x26\x7f\x17\x3d\xd9\xf9\x91\x86\x4c\x4f\xd2\x50\xa6\x21\x6c\x9c\xc7\xae\x3e\x79\xa6\x21\x7c\x58\xa4\xec\x24\x72\x75\xd6\x76\xfd\x88\xf0\x6c\xee\x21\xf1\x4a\x24\xf0\x24\x32\x77\xd6\xee\xf4\x08\x5d\x47\x92\xce\xda\x43\x4f\xd2\x23\x74\xdd\x66\xa3\x43\xce\x4d\x22\x87\x66\xc9\x41\xec\x78\x4e\xdd\xe8\xd1\x6c\x7f\x05\x14\x8e\xca\x74\x54\x26\xd1\xfe\x44\x2a\x4e\x22\xeb\x66\x6d\xf0\x13\x59\x37\xc9\xd9\xf9\x6f\x94\x16\xe9\x36\x89\x3c\x9b\xb5\xb7\x7e\xe4\xa3\x60\xe7\xbf\xc1\x4f\x0e\x9c\x75\xf4\xe8\x46\x97\x38\x7a\x94\x94\x9a\xb5\x1f\x63\x80\x03\x96\x5c\x9a\x45\xf8\x2d\x91\x3d\x93\x48\x94\x59\x47\x53\x5d\xf5\x7a\xcc\xc0\x41\x97\x38\xda\xd1\x41\xae\xc7\xf5\x23\xdd\x44\x3b\x1e\xf6\x21\x64\xb3\x24\x52\x55\xd6\xe9\x8c\x2b\xda\x91\x1c\x95\x45\x96\x69\xf2\x4e\x37\x51\x99\x67\xd0\x3a\xbe\x56\x0f\xcd\xb9\x4e\xa4\x3e\x26\x67\x97\x4e\x52\xcb\x92\xa7\x97\xe4\x94\xe4\x68\xc7\xc3\xe6\xc4\xd9\x90\x3b\x1b\xf2\x8b\xca\x24\x39\x25\x91\x95\xb2\x2e\xeb\xde\x07\xaf\x87\x3e\x5c\x57\x0b\x82\xd8\x9f\xa3\x1d\x2f\x0e\x2e\x9f\x7c\x68\xa1\x0f\x17\x04\x5c\x89\x74\x94\x44\x1e\xca\xe2\xc8\x40\x22\xf3\x24\x91\x72\xb2\x2e\x1a\x97\x24\x93\xe4\x28\xc2\x0b\x6a\x73\x14\xa1\x03\x39\x2f\x1b\x1e\xc7\x83\x4a\x1e\xca\xba\x40\x39\x32\x4f\x12\x69\x25\xeb\x56\x3d\xc9\x67\x83\x22\xbc\x4d\x4f\xd2\x50\x6c\xd6\xd7\xc5\xc7\xee\x80\x53\x72\x4d\x96\xbc\xb2\x0e\x0e\x25\xc9\x64\xc9\x01\x4b\x92\x49\x72\x70\x28\x47\xad\x92\x83\x43\x49\x39\x59\x9c\xb1\x4a\xa4\x95\x24\xf2\x49\xd6\x95\xd2\x22\x30\xeb\x6c\xdd\x2f\x3e\x2c\x12\x49\x12\x39\x23\xeb\xb2\x07\x23\x13\x24\x91\x02\xb2\x9e\x94\xd6\xa5\xce\x50\xa7\xeb\x7d\xfa\x91\x8f\x16\xc8\xf9\xa4\x9f\x80\x9c\x64\x74\xac\x27\x5d\x72\x11\x3e\x90\xe7\x7a\xae\x1f\x19\x10\xf6\xf3\x4f\xcb\xf0\x31\x20\xb1\xad\x5f\x4f\x8b\x8b\xfd\xbc\x87\xaf\x75\x3d\x7d\x4b\x28\x6c\x47\x61\x3f\x76\x95\x64\x61\x24\xd2\x2f\x36\xa9\x8f\xa9\x82\x2e\x6b\x6c\xdd\x37\x99\x8c\x89\x2c\x8c\x44\xfa\xc5\x26\xa1\x31\x91\x62\x91\xc8\xad\xd8\x69\xaa\xce\xcb\x8f\x8f\x1f\x63\xe4\x2b\x0a\x9b\x4c\x8b\x2d\xe7\x23\x99\x16\x89\x14\x8b\x9d\x50\x17\xa4\x58\xa4\x1a\x78\x72\xa7\xa5\xd7\x07\x3f\xce\xf8\x31\x0e\xb2\xa5\xca\xce\x9f\xbc\x8b\x9d\x00\x3e\x95\x9d\x7f\xfd\x68\x1d\xc5\x42\xfa\x45\x22\xef\x62\x27\xec\x67\x45\xdf\xd7\xd0\xf7\x3b\x01\x7c\x6a\x00\xd0\x54\x43\xed\xef\x84\x23\xa6\x66\x5a\xcf\xb4\xfe\xf4\x23\x0d\x85\x6a\xdf\x1f\x6b\xb3\x12\xff\x22\xa9\x62\x43\xd6\x94\x48\xaa\x48\x64\x53\xec\x0f\xbd\x44\x36\x45\x22\x8d\x62\x7f\x91\xa8\x91\x2a\x5a\xbc\x86\x8f\x60\x7f\x59\xaf\xc7\xbc\xd7\xf0\xdb\xee\x8f\xbd\x17\x49\x15\x89\x6c\x8a\x4d\xe4\x3f\x55\x54\x7b\x0d\xd5\xbe\xbf\xa2\x27\x99\xb8\xd0\xde\x9b\xcc\xd0\x44\xa6\x45\x22\xa9\x62\x7f\x2c\x6d\xd2\x28\x12\xf9\x13\x5b\x1e\x49\x72\x24\x12\xc9\x11\x9b\x4b\x03\x53\xc5\x6f\x5b\xc3\x53\xbb\x3f\x56\x71\x05\x1a\x93\x38\xb1\x3f\x56\x71\x05\x1a\x57\xff\x3f\x84\xdd\x5d\xf2\x84\x2a\xb2\x04\xf0\x2d\x09\x08\xe2\x72\xf8\x90\xfd\x2f\xe1\xc6\xe1\x47\x4f\x9c\x79\xb8\xf3\x7f\x6c\xa3\x15\x44\x48\xaa\xb2\x8a\x2c\x0d\xd5\x73\x51\x43\xdb\x18\x1e\xc1\x82\x75\x38\xe2\x2a\x45\x43\xf0\xd3\x19\x89\xcb\xe1\x88\x11\xde\xf3\x4f\x9d\xdf\x38\x3f\x02\x0b\xcb\x09\x86\xcb\xd1\x85\x11\x2c\x58\x07\x12\x2e\x27\x11\x46\x10\x0b\x28\x0c\x5e\x07\x12\x46\xe0\x66\x39\x90\x70\x95\xc7\xc8\x73\xb3\x9c\x44\xb8\x1c\x41\x18\xf1\x3a\x17\x0d\xf2\x46\xef\x41\x12\xf0\x2a\x0c\xde\xb2\xc3\x67\xc3\xc9\xd2\xab\x20\x23\xca\x26\x23\x86\xca\x4f\x97\xf3\x05\x97\x83\x05\xc3\x39\xd3\xcb\xe1\x81\xcb\xa9\x81\x11\xad\x77\x27\x03\x2e\x47\x02\x46\xe4\x12\x39\x12\x70\x49\xf8\x1f\x0e\x98\x5e\x92\xfa\x2f\xd9\xfc\x23\xe2\x82\xe5\xe8\x5f\xa5\xe9\x52\xf3\xe1\x40\xba\xac\xfc\x11\xd9\xa1\xf2\xf0\x2f\x09\xf8\xc3\xe1\xd3\x4b\x92\xfd\x55\xba\x2e\xb1\xef\x0a\x48\x2f\xdd\xbb\x1f\x0c\x01\xe9\xa5\xeb\xe7\x97\xfe\x34\x28\x8a\x88\x99\xec\xfc\x71\x88\x4d\xd9\xf9\x97\x44\xfc\x11\x45\x89\x25\xe2\x5f\x65\xe8\x05\xdb\xb1\x0c\xbd\x18\x7a\xc1\x22\x28\x36\x81\xb2\x37\x81\x71\xd8\xce\x62\x13\x90\xc0\x3f\x48\x0a\x5e\x12\xf8\x2f\x99\xfb\x23\x9d\xaf\x3a\x8c\xeb\x26\x75\xc7\xa1\x40\x25\xe9\x5f\xb2\xf3\x47\xe2\x12\xcb\xce\xbf\xa4\xe5\x8f\x74\xbe\x2a\x86\xa2\xec\x0d\x62\x24\xb6\xa3\xec\xfc\xab\x4c\xad\x1f\x70\x9d\x5e\xf3\xd3\x10\x9f\x56\x06\xfe\x25\xf5\x7e\xa4\xf3\x55\x3f\xef\xbe\xb7\x8b\x91\x58\x84\x05\xa9\x2b\x15\x7e\xa4\x83\x64\x36\x01\x19\xf1\xc3\x89\xd6\xab\xd8\x04\xca\xd2\xcf\xef\xfc\xd3\x28\xed\xb8\xdb\x48\x90\x4c\x86\xfa\xf5\x6c\xd8\x1f\x24\x05\x2f\xc9\xe8\xd7\x03\xef\xef\x72\xfe\x39\x5c\xdc\x43\x77\xf3\x7e\x25\x8e\x5f\x0f\x6c\xbe\x2d\x32\x39\xe2\x97\x74\xf0\x71\xfb\x1c\x0f\x63\xfa\xd9\xc6\xf4\xc8\x86\x4e\xe6\xf7\x25\xe5\x7b\x64\x14\x83\x24\xef\x4b\x76\xf7\xc8\xe9\xfc\x73\xba\xb8\x5c\xf4\x4f\xc6\xb4\xcc\xef\x91\x59\x2e\x32\xbf\x2f\xa9\xdb\x23\xc3\xbc\x07\xe2\xca\xe0\x1e\x99\xaf\x28\x4d\xfb\x7a\xb6\xdd\x3c\x32\xcb\xe5\xb9\x3d\x73\x63\xec\x38\x24\xa4\xc4\xec\x4b\x46\xf6\x50\x88\xe8\x7a\x80\xab\x54\xec\x91\x9f\x73\xb1\xb9\xa8\xf3\x2c\x17\x59\xd7\xd7\xb3\x31\x76\x64\x9f\x58\x82\xf5\x25\xb3\x7a\x50\xd2\xbb\x64\x56\x5f\x0f\x70\xcd\x2c\x97\x47\xfc\xeb\xc9\x1a\x62\xdf\x3f\xe2\x5f\x4f\xf6\xcc\x76\x6e\xdf\x13\xec\x01\xae\x0a\x18\x5d\x32\xb2\x2f\x09\xd6\x23\xf3\x2a\x25\x58\x5f\x4f\x71\x3b\xe6\x5c\xf6\xf4\x25\x6d\x7a\xa8\x63\x74\x49\x8d\xbe\xe4\x44\x0f\x47\x6e\x2f\x39\xd1\x97\xf4\xe7\x91\x59\x43\x0f\x7b\x59\x16\xf4\xc8\x88\x2d\x99\xce\x97\x14\xe7\x91\x77\xe2\xe6\x25\xc5\xf9\x92\x8f\x3c\xf2\x3a\xff\xf4\xcc\x8d\x9c\xa3\xec\x64\xbb\x4b\x1a\xf1\x25\x77\x78\x14\x14\xbd\xbc\xe1\x4b\xb2\xf0\x20\xee\x77\x49\x14\xbe\xe4\x02\x8f\xc2\xc2\x92\x07\x7c\x49\xf5\x1d\xce\x04\x5f\x92\x7a\x2f\x19\xb8\xa3\x9c\x59\x07\x5c\x25\xd8\x8e\x92\xbc\x11\x36\x41\x6e\xec\x28\x0c\x34\x19\xae\x97\xb4\xd6\x51\xf2\xb9\xe8\xdd\x9b\x67\x9e\x09\xc6\x5e\x96\x94\x3a\xca\x99\x4b\xd2\x10\xe4\x9c\x0e\x47\x8a\x2f\xf9\xa6\x97\x94\xd2\x41\x30\xf0\x92\x4e\x7a\xc9\x21\x1d\x94\x02\x2f\xb9\xa1\x97\x84\xd0\x51\xea\xb9\x68\x94\x36\x8c\x0e\x2a\x82\x97\xdc\xce\x4b\x32\xe7\x28\x7c\x45\x89\x99\x97\x4c\xcc\xe1\x80\xf1\x25\xab\xf2\x92\x46\x39\x9c\x2c\xbe\x24\x4a\x5e\xb2\x1d\x47\x11\x9e\x90\xe5\x78\x3d\xdb\x5e\x1e\xa4\x05\xaf\x93\xba\xf8\x40\xc5\xc2\x0e\x3d\x39\x8b\xcf\x34\x4a\xf3\x5c\xf4\xcc\x69\x94\x80\xd5\xc3\x88\x7e\xa6\xce\x03\xab\x07\x19\xf1\x7c\x46\x69\x9d\x8b\xa6\xe2\xb6\x97\xc7\xe1\xac\x1f\xf6\xf2\xb3\xed\xe5\xe1\x40\xf3\xf5\x7c\xc0\x6a\x23\xe6\x78\x82\xce\x33\xa2\x1f\xf8\xf9\x60\xe3\x1f\x41\xb1\x67\x33\xb5\xe3\x49\xe7\xa2\x01\xd9\xb9\x09\xe3\x39\xa8\x88\xb7\x7d\x36\x6f\x3b\x0e\x91\x5d\xf1\xb6\x75\xc3\xe8\x70\xa2\xf9\xaa\x8c\xe8\x7a\xe9\xd2\x4e\xbf\xbc\x2a\xd3\xb8\x32\x8d\x9d\x53\xbe\x2a\xd3\xb8\x6e\xe2\x75\x3c\xfb\xc0\xc1\x55\xe5\x26\xd4\xa0\x4b\x90\xb6\x32\x8d\x25\x7f\x8e\xe7\x39\xff\x6c\x2e\xee\xc9\x70\x28\xef\x8a\xe0\xa8\xe0\xf7\xe1\xb6\x56\x59\x60\x35\xea\x27\xb4\xa9\x88\xd7\xba\xed\xde\xf1\x30\xf6\xeb\x46\xe8\xab\xc2\xe4\xc3\x83\x57\x98\x5c\x61\xb2\xd2\x4c\x57\x85\xc9\x35\x69\xa8\x69\x1d\x26\x57\x98\xec\xb0\xf4\x55\x11\x1c\x75\x13\x1c\xe3\xe9\xe7\xa2\x86\x92\x86\x18\xfb\x55\xf8\xac\x26\x43\x37\xea\x9f\x06\x45\x95\xb0\x50\x19\xbe\x95\x2d\x5e\x37\x28\x5f\x75\x03\xef\x38\x7c\x78\x65\xe3\x56\x36\x6e\x15\xa2\xa9\xd9\x17\x00\xc3\xd5\xe6\x5f\xc1\x70\xdd\x0c\xc5\xa8\x4c\xf9\x0a\x86\x2b\x18\xae\xf1\x5c\x1c\x2e\x6a\xc8\x66\x55\x21\x6e\xdd\x56\xed\xa8\xf7\xb9\xe8\xab\x16\xcf\x64\x76\x57\x69\x08\x75\xa3\xf1\xa8\xf6\x90\x2a\x25\xb4\x16\xcf\xac\xe7\xe2\x9e\xbc\x75\xe7\x89\x8e\xba\x53\x6c\xaf\x8a\xcb\xa8\x0c\xdf\x6a\xdd\x57\xe6\x6c\x65\xce\xd6\x33\xd8\x68\x8b\xba\xd1\x78\x54\x78\x5f\xab\x2e\x55\xb7\xcf\x73\x51\x97\xaa\x2e\xc1\xfb\xca\x9c\xad\xcc\xd9\x0a\xb0\x6b\x35\x9e\x60\x98\x76\xe2\x55\xc1\x70\xdd\xd1\xb4\x41\x34\xf1\xaa\x10\xb7\x6e\x2e\x63\x38\xbd\x7c\x55\x5c\x46\x05\xc3\xd4\x08\xaf\x8a\xcb\xa8\x60\xf8\x85\x8e\x15\x6d\x51\x37\x6d\x31\x5e\x98\x57\x45\xcc\xea\x06\xde\xf1\xbe\xe7\xa2\xdb\x21\xee\x0b\x9f\x2a\xc4\xad\x10\xf7\x95\xbd\x52\x25\x17\x54\x88\xfb\xce\xf3\x4f\xef\xce\x9c\x7d\xa7\xc9\xc0\x62\xad\x5d\x3f\xf7\x01\x93\xab\x76\xef\x0e\x71\x5f\xf0\x56\x25\x17\xd4\xa1\xa1\x7d\x36\xf2\xaa\xf8\xdb\x3a\x34\xf4\x9d\x7f\x6a\x68\xdb\xa8\xe3\x65\xf0\x56\x88\x5b\xb7\x8d\x3a\x9c\x65\xbe\x2a\xc4\xad\x8c\xd3\xc6\x8c\xad\x68\x8b\xba\x6d\xd4\xe1\x64\xf3\x55\x21\x6e\x85\xb8\xed\x40\x11\xa6\xb7\x6e\x8c\x1d\x2d\x9f\x8b\x9e\xb9\x2d\xcf\xd1\xc4\x54\x2b\xa6\xb7\xee\x74\x82\xd1\xce\xb4\x01\xae\x15\xb8\xb6\x61\x40\x80\x6b\xdd\x61\xb0\xd1\xc6\xf9\xa7\x67\x2e\xcf\x9c\x30\x8f\x71\x5a\x19\xa7\x87\xbb\xae\x70\xb4\xc2\xd1\x0e\x86\x5f\x76\xe8\xcb\x0e\x75\xa4\xf6\x7a\x45\xb5\xde\x6d\x8e\x0e\xa7\x67\xaf\x97\x1d\xfa\xb2\x43\xbb\x5d\xf1\x05\x99\x2f\xc8\x74\x62\xf5\x7a\x85\xa5\x5e\x90\xe9\xc8\xe9\xf5\x22\x0e\x5e\x90\xe9\xe4\xe9\xf5\x82\xcc\x77\x1b\xae\x63\x58\xef\x2f\xe2\xe0\x45\x1c\x8c\x2d\xae\x70\xbd\x88\x83\x17\x64\x0e\xae\xfb\x8b\x23\x78\x71\x04\x27\x15\xf8\x05\x99\x2f\x8b\xd5\x09\x91\xeb\x4d\x9e\x99\x3c\x93\xc5\xfa\x22\x0e\xde\xe4\x99\xf9\x5c\x2c\x2e\x56\x17\x1f\x17\xf7\x20\xbf\x2c\x56\x82\x7e\xd7\x8b\x0e\x78\xd1\x01\x27\xeb\xf7\x85\x8a\x2f\x54\x1c\x9c\xbd\x97\xc5\xfa\xb2\x58\x07\xf3\xf0\xbd\x8d\x27\xa8\x1c\xe3\x5c\xd4\x50\xd6\xd0\x16\x49\xb8\x5e\xa8\xf8\x42\xc5\x81\x1f\x71\x8e\xe0\x72\x80\x60\x38\x7a\x71\x39\x24\x70\x39\x1d\x30\x26\x03\xcd\x09\x80\xeb\xe5\xe4\x1f\x8a\x56\x62\xfe\x25\x23\x7f\x9c\x14\xdb\x17\xac\xbd\xec\x50\x07\xd3\xae\x97\x1d\xfa\xb2\x43\x9d\x5a\xba\x5e\x39\x53\x2f\x93\x73\x9a\x8a\x2f\x58\x7b\xc1\xda\x49\x72\x7d\xc1\xda\x0b\xd6\x3e\x60\xf5\xb2\x2e\x5f\xd6\xe5\x77\xa6\x22\x2f\xfd\xe5\xa5\x1f\x92\xf4\x95\x1d\xf0\xb2\x2e\x4f\x92\xeb\x2b\x3b\xe0\x7d\x3d\xf3\xcc\x4f\xae\xfb\x0b\xd6\x4e\x42\xea\xcb\xba\x7c\xb9\xee\x27\x21\xf5\x15\xc0\x7a\xb9\xee\x9f\xcd\xff\x85\x75\x2f\xac\xfb\x6c\xfe\xaf\x58\xd5\xbb\x2d\xcf\x71\xa8\xcf\x17\x00\xbe\x00\xf0\x24\xa4\xbe\x4d\x43\x4d\x43\xb6\xf4\x17\x00\xbe\x00\xf0\x6b\xe7\xa2\xaf\x09\x00\x3f\xbb\xf7\xdb\x35\xd4\x35\x64\xf7\x7e\x59\x97\x2f\x97\xfd\x3b\xdf\x9d\x75\xf9\xb2\x2e\x3f\x7e\xfc\x8b\xa2\x7d\x01\xe0\xb7\xce\x3f\x35\x04\x00\x3f\x01\xc1\x97\xc9\xf9\x32\x39\x97\x5d\xfb\xe5\x9d\xbf\xbc\x73\xc7\x44\xaf\x97\x77\xfe\x02\xc0\x75\x16\x2c\x00\x7c\xd9\xa1\x87\x63\x7d\xa7\x19\xb2\xfd\xf1\x71\xd2\x61\x5f\xbc\xed\x0b\x15\xf7\xa1\xd1\x3f\x0c\x8a\x57\x3e\xd6\xcb\x48\x5d\x67\x39\x82\xcc\x97\xeb\xbe\xc4\x15\x5f\xae\xfb\xcb\x75\x3f\x19\xb0\xaf\x24\xad\x77\xdb\xaa\x63\xd9\xd2\x5f\x40\xf8\x02\xc2\xf5\x9d\x8b\xfa\xbb\xf4\x77\x9d\x8b\xbe\xea\x8e\xa6\x0d\xa2\x7a\x57\x63\x50\xb6\xcd\xca\x4e\xaa\x78\x57\xe3\xa5\xb7\xed\xa5\xcf\x93\xad\xda\x18\x94\x6d\x07\xf4\x27\x05\xbb\xab\x09\x8e\xb5\x6d\x42\xce\x93\xad\xda\xd8\x8e\x6d\xe3\xe1\xbc\xda\xb9\xfd\x73\x71\x1f\xac\xbb\x20\x44\x03\x84\x6d\x43\xdf\xbc\x78\x02\xcd\x09\x82\xb6\x4d\xc8\x79\xd9\x69\x1b\x27\xbf\x6d\xb7\x7e\x9e\x3c\xd1\x06\x1d\xdb\x46\xc7\x79\xf2\x44\x1b\x74\x6c\xdb\x84\x9c\x97\x9d\xb6\xa1\x55\x5b\xd4\xba\x4d\xb5\x6d\x4b\xf2\x6a\xdb\xad\x9f\xd7\x77\x2e\x1a\x90\xe4\x8d\xec\x9f\x8d\xed\xd8\xb6\xed\x38\xd5\x4d\xb9\x1a\x27\xbf\x6d\xe4\x9c\xca\xa7\x5c\xed\xf6\x46\xdb\xd7\x9f\x27\x7d\xb3\x89\x98\xb5\x8d\xa3\x53\x09\xfd\xab\xc1\xd1\xb6\xd9\xd5\x19\x6c\xaa\x8d\x75\xd9\xb6\xaf\x3f\x83\x4d\xb5\x09\x75\xb5\xed\xd6\xcf\x60\x8d\x36\x99\x5b\x2d\xbb\xdd\xca\x6b\x0c\xc9\xb6\x91\x73\x86\x66\x94\xc4\xbf\x5a\xd6\x79\x3e\x58\x13\xd5\x6a\x9b\xf4\x9c\xd1\x8c\x6e\xa2\x5a\x6d\x1b\x84\x33\x72\x4e\x1a\x74\x6c\x1b\x1d\x67\x64\x33\x36\x6c\x67\xdb\x7e\xf9\x3c\x69\x91\x8d\xef\xdd\x9c\x29\x8e\xe8\x80\x26\xbc\xdf\x1c\x19\x8e\x6c\xf1\xc6\x21\x6f\x4e\x04\x9f\x64\xc7\x06\x1d\x9b\x63\xb9\x27\x5b\xb1\x41\xc7\xe6\x1c\x6e\x34\x93\x9b\x73\x01\xcd\xa1\x5a\x3a\x73\x57\x83\x8e\xcd\x79\xd8\x43\xc0\xb5\x8d\x95\x57\x73\x00\xf6\x24\x26\x36\x96\x60\x73\xe2\xf5\xb0\x72\x0d\xdb\xd9\x1c\x68\x4d\x36\xea\xc6\x4b\x6f\xce\xab\x26\x04\x6c\xdb\xc1\xfe\xab\x39\xa0\x7a\xf8\xbb\xc6\x75\x6f\x4e\xa4\x1e\xfe\xae\xe1\x45\x9b\x03\xa7\x29\x9e\xdb\x0d\xb2\x13\xa6\xc9\x96\xde\x90\xa5\xcd\x01\xd2\x64\x4b\x6f\x52\x57\x9b\x13\xa3\xe9\x2c\x43\x64\x69\x73\x20\xf4\x90\x7a\x4d\x96\x6a\x73\xba\x33\xd5\x73\x51\xeb\xdd\xbb\x63\x7c\x1a\x70\x6d\x1b\x5c\x67\xb2\xcf\x37\x38\xda\xb6\x3d\x39\xd5\x25\xb9\x1a\x1c\x6d\x1b\x47\x67\x3a\x0b\x16\x8e\xb6\xe1\x8d\xc6\xb9\xe8\x8d\x86\x37\x3a\x5f\x93\xeb\xde\xa6\xa1\x3b\x8b\x8b\x21\xd9\xa6\x51\x3a\x10\xc4\x4b\x6f\x1b\x07\xe7\x6d\x9f\x6f\x72\x4f\xdb\xce\x0e\x98\xf7\x73\x2e\x5a\xda\xdb\x4a\x9c\xf7\xe3\x8d\x70\x97\xed\x73\x3b\x13\xbe\xcb\x6f\xea\xdb\xf6\x9b\x27\x5b\xb1\x83\xb5\x0e\xd6\xb2\xe9\xdd\x19\x7d\x7d\x1b\x7d\x33\xdf\xe7\xe2\x7e\x66\xdf\x90\x37\xb3\x84\x85\x2e\x95\xa9\x6f\x8f\x7a\x66\x7b\x72\x07\x80\x1d\x00\x2a\x1d\x7e\x75\x19\xa5\x7d\x5b\x89\x33\x97\xf3\x4f\x0d\x6d\x1c\x9c\x87\xbf\xeb\x00\xb0\x6f\x4b\x70\x66\x4b\xbb\xb3\x04\x7b\xd4\x79\xdb\x6f\xe7\x51\xf7\xa8\x21\xbe\x77\xc7\x72\xf6\xe8\x8d\x7c\xe2\x2e\xcb\xbf\x27\x9d\xf7\x39\x3a\x58\xeb\x60\x2d\x0b\x64\x74\x21\xa4\xbe\xd1\x6d\x1e\x02\xae\x23\x34\x7b\x32\x20\x08\xb8\x0e\xd6\x3a\x58\xcb\xb6\xdf\x0e\xd6\x3a\x58\xcb\xb6\xdf\x0e\xd6\xfa\x36\x0f\xa7\xea\xe2\x57\xc7\x5d\xf6\x9d\xd0\x3f\x4f\x0a\x63\x67\x1e\xf6\xed\x3b\xcf\x62\x19\x76\x11\xfc\xbe\x0d\xc2\x59\xac\x8e\x0e\xd6\x3a\x58\x2b\xf7\xb9\x38\x5d\x74\xbb\xcd\xb4\x0b\xf7\xf4\xe2\x76\x21\xa4\x2e\xdc\xd3\x77\xb8\x67\x16\xfb\x66\x17\xee\xe9\x45\x97\x2c\x99\xee\x0c\x54\xdf\x1c\xe4\x2c\xa6\x77\x87\x75\x1d\xd6\x1d\x12\xaa\x33\x0f\xfb\x36\x0f\x67\xb1\xf5\x74\x69\xa6\x7d\xbb\xc2\xb3\xd8\x7a\x3a\xac\xeb\xb0\xae\x98\xf3\x9d\x79\xd8\x09\x17\x3c\xac\x8c\xce\xc1\xed\x54\x08\x76\x8e\xe4\x1f\x06\x45\x97\xe7\xd4\xe9\x0d\xa8\xd4\x7d\x75\xde\x6f\x27\x03\xf0\x70\x89\x3b\xcc\xeb\x4e\xf0\x3f\x5b\x98\xf0\xea\xe0\xad\x3b\xa0\x7f\xd2\x22\x3b\xd0\xea\x40\xeb\x64\x40\x76\xde\x6f\x77\x08\xfe\x39\x8b\x0c\x3e\x75\xf8\x44\xe7\xee\xea\xbc\xdf\x0e\x9f\x9e\xd7\x8c\x16\xcc\xe9\xce\x2c\x77\x80\xdd\x39\xba\xbd\xff\xfb\xcc\x6b\x87\x4f\x9d\xbf\xab\x1a\xdc\xd5\x19\x7f\x7d\x38\x56\x89\x56\xed\x40\xab\x9f\xd3\xcd\x5b\xfd\xec\xea\x00\xa6\xcf\x73\x4c\x75\xba\xa8\xf3\x5f\xf8\xd7\xf1\xd6\x8e\x06\xec\x5f\xfa\xd7\xf1\xd6\x2e\x38\xd2\xb7\xa1\xf5\x3b\xde\xda\x71\x83\xfd\x73\x3a\x36\x9e\xdb\xad\x92\x0d\x45\xbf\xf3\xa9\x7d\xf9\x80\xdb\x24\xfb\x9d\x4f\xed\x68\xc0\x7e\x0e\x83\x3a\x86\xdb\xd1\x80\xfd\x9c\xfb\xdc\xda\x43\x57\xe7\xbe\xf6\xe5\x28\xaa\x4c\xdd\x21\x9a\x3d\xce\xc1\xcd\x2d\xe0\x77\x0d\x26\xd2\xd8\x98\xd0\xd4\x9e\xbc\x06\x30\x18\xd1\x49\x41\x8e\xd9\x90\x3f\x34\xb6\x51\xd4\x26\x14\x1f\x48\xb3\x91\x9c\x18\xdb\xda\x43\xd7\x70\x74\x72\x38\x3a\xf9\xd9\xd6\x86\xd5\x3c\x6e\xff\xdc\x4a\xf2\xd7\x40\x6c\x8d\xec\x5c\xdd\x38\x17\xf5\x33\x3b\xee\x86\x80\x1d\xe2\xb4\x23\x3b\xdd\xc5\x35\x1a\x96\xe3\x70\xcc\x51\xa9\xc5\x6b\x88\x1a\x0c\xc7\x1c\xe9\xa3\x5c\xc3\x1a\x1d\xc5\x29\xb4\xe7\xdc\xfe\xb9\xe8\x20\x97\x88\xee\xd8\xe4\xd5\x35\xb6\x7b\xd7\x56\x3b\x17\x8d\xd2\xe6\xb0\xda\xe2\x72\x0c\xab\x79\x3c\x9e\xc9\xca\x18\x8c\x94\x21\x07\xf1\x82\x3a\xa3\x1a\x10\xe9\x86\x17\x2c\x19\x3c\xab\xe1\x88\x4a\x30\x69\x07\xdb\x61\x48\xc6\x0e\x36\x96\xc1\xb3\x1a\x92\x5f\xc2\xd6\x29\xbc\x86\xc5\x35\x24\xbf\x04\x49\x6f\x83\x45\x30\xf6\x1a\xeb\x81\x65\x3d\x24\xbf\x0c\x87\x59\xc2\xe3\xbb\x5b\x71\xc3\x61\x96\xb0\x25\x96\xae\x61\xa3\x1e\xe7\x38\x89\xb4\xb3\x21\x46\x39\x86\x73\x2b\x2c\xd6\x41\x25\x60\x4c\xe7\x6b\xd8\xa1\xc3\x19\x93\x71\xce\x98\xd8\x00\x87\x44\x95\x71\xce\x98\xd8\x00\x87\x8d\x7a\xc8\x49\x51\x00\xee\x1a\x56\xc7\x38\x27\x47\x60\xde\x30\xe7\xc7\x39\x0f\xc2\xba\x9c\xdb\xc7\xb8\xa6\xf4\xe2\xf4\x9e\x8b\xcd\xc5\xdd\xcf\xc4\x66\x9c\xb6\xdf\x79\x9d\x73\x16\x1b\xac\xa6\x85\x30\x25\x0d\xa7\xad\x9d\x71\x4d\x3b\xed\x3c\x67\x37\x98\x87\x53\xe8\x70\x06\xcf\x14\x8a\x9f\x88\x98\x19\x1c\x94\xb8\xce\xc5\x8d\x0c\x53\x26\xf1\xcd\x66\x9c\x5c\x8d\x29\x39\xef\x66\x8b\x4d\x8b\x6b\x4a\xce\xbb\xd9\x62\x93\x03\x31\x93\x23\x15\xb6\xf4\x69\xa7\x9d\xe7\x40\x07\xfc\x9c\x1c\x88\x79\xce\x6e\xd8\xa8\xa7\xbc\x8c\x79\xce\x6e\x80\xca\x89\x49\x99\xd2\xe2\x32\x6b\x68\xe2\x97\x67\x3e\x07\x25\xf6\x5c\x9a\x56\xdc\xdc\x1e\x40\xcf\xe6\xe7\x94\x0a\x3c\x9d\x53\xcb\x42\x1e\xd3\x3a\x9a\x52\xd8\x8a\x43\xea\x53\x48\x6e\xee\x95\xd3\x8b\x4f\x3c\xf1\x23\x53\x0a\x1b\xc5\xda\x6b\xf2\x00\xa6\x33\x65\xc5\xda\x9c\xe2\x74\x53\x5e\x1b\x8d\xda\x6b\x5a\x5c\x73\x6f\x8e\xbd\xc8\x67\x9d\x58\xe3\x29\xd9\xad\x70\x20\xa6\x15\x37\xad\xb8\xe2\x28\xcd\xb4\x55\x4e\x07\xcd\xca\x3c\x17\x3d\xb3\xea\xbc\x05\x3b\xad\xcd\x69\x6d\x9e\xc8\xce\xdc\x39\x0d\xd7\x94\xc2\xf6\x40\x86\x69\xe3\x9b\x52\xd8\x14\x55\xba\xa6\xb5\x39\xad\x4d\xea\xa6\xd7\xb4\xc7\x4d\x39\x68\x15\xfc\x4e\xe6\xf6\x94\x6e\x56\x1f\x53\xd1\x76\x36\xe5\xdd\x56\xbb\xe1\x14\x3e\x9b\x72\xd0\x0e\x63\x3e\xed\x71\x73\xef\x71\xbd\x9e\x4f\x2c\x5f\x6c\xca\x17\x7b\xaf\x73\x51\xeb\xce\x7f\xbd\x2c\xd6\x69\x73\x9b\x96\xe1\x6b\x15\x4f\x59\x01\x73\x9e\x5c\x73\xaf\x89\x1b\x98\xdf\xc9\xf6\xf6\x4f\x67\x5e\xa7\xc3\x56\xed\x3f\xea\x62\xff\xbf\x41\xf1\xc9\xdc\xfa\x2e\x99\xcf\x86\xf0\xc3\xa0\x7e\x52\x6d\x9b\x85\xfb\x31\xa6\x3f\xe7\x02\x9a\x93\x6d\x9f\x85\xfb\x59\xb8\xcd\x57\xfd\x10\x07\xdf\x36\x9f\x7b\xc3\xa0\x7e\x32\xa2\xbe\xbd\xd6\x7a\xb7\x4a\x3e\x01\xa2\xcf\x22\x53\x5f\xe5\xfa\x1c\xa5\xfa\x1c\xa5\xea\xa7\x75\xfb\xd2\xe7\x2c\x29\xd5\xbd\xeb\x43\x2d\x7e\x56\xc9\x80\x25\x9f\xfc\xa1\x4f\x6a\xfd\xf8\xce\x45\xcf\xdc\x26\x64\x9f\x5b\x40\xf0\xfa\xb0\x88\x9f\x94\xd0\x29\xb2\xf7\x89\xad\x7c\x27\x25\x14\xde\x7f\x4e\x38\x7d\x4e\x38\x4d\x5f\xe0\x73\x44\xe9\x93\x1b\x4f\xe2\xee\xfa\x58\x84\x9f\x83\x47\x54\xe9\xae\x4f\xe0\xfa\x73\xf2\x72\x32\xd0\x3f\xce\xf3\x57\x35\x74\x86\x4e\x70\xe4\x73\xf0\xe8\x3b\x5d\xe2\x12\x7f\xdb\x25\xee\x9f\xcd\xea\x63\x09\x7e\x32\xde\xcf\x09\xf6\x4f\xa6\xe6\x77\x32\x35\x01\xe1\xe7\x3c\xe5\xb7\x6d\xbf\xae\x56\xc5\xf5\xc9\x63\xff\xe4\xb1\x2f\xc1\xf0\x4f\xe4\xf9\xb3\x59\xa9\xa5\x7c\x7d\x3c\xd5\x6f\x6f\x4f\xfd\xd0\x55\x9f\x55\xf2\x59\x25\x0b\xe3\xf3\x59\x25\x9f\x55\xb2\xf0\x38\x1f\xc3\xee\x1b\x52\x03\x6d\x41\xdf\xf0\x4f\x31\x0b\x85\x76\xaf\xcf\x2a\xf9\x44\x89\x0f\x37\xf4\x59\x25\x1f\xca\x8e\x6c\xcd\xf5\xa1\xec\x3e\x31\x8b\x8b\x3d\xf2\x49\x8b\xfc\x3e\x99\x5b\xc8\xd2\xcf\x66\xf5\x09\xf3\xaa\x44\x70\x7d\x9f\xd6\x3f\x89\x74\x92\x20\x3e\x27\x71\x3e\x61\xde\x70\xe6\x92\x48\xc4\x27\xcc\x1b\x60\xc9\xb2\x64\x96\x64\x47\xc2\xfd\xd7\x12\x5f\x58\xe2\x0b\xd1\x3e\xbf\x1c\x17\x5f\xe2\xb4\x71\xd7\xdb\xb8\x16\xaf\x72\x89\xd3\x46\x6f\xb4\x84\x64\x57\x38\x19\x51\x97\x8b\xbb\xf5\x25\xfa\x9a\xb6\x10\xcf\xb5\xec\x4b\x4b\x4c\x35\xf9\x46\x8b\xd1\xb7\xa2\x14\x21\x24\xd4\x12\x14\x5d\x82\xa2\x84\xed\xaf\xc5\xe8\x5b\xb2\x57\x52\x3b\x17\x3f\x17\x77\x3f\x13\xc2\x68\xf1\x00\x97\x7c\xc1\x24\xd5\x72\x09\x10\x2c\x01\x82\xc4\x35\x5a\xd6\xe6\x12\x20\x48\x72\x25\xd7\x76\xfd\xae\x25\x7b\xe5\x66\x09\x2e\xc4\xd6\xda\xc4\xd6\xb8\x4d\xef\x85\xae\x5a\xdb\x74\x1c\xb7\x7d\x69\x59\xb0\x4b\x30\xf4\xb6\x2f\x2d\xa7\x0f\x97\xb8\xe7\xcd\x25\x5e\xf6\xba\x25\x8d\xef\x66\x09\xae\x62\xe4\xb7\xcd\x38\x94\x06\xbd\x16\x9b\x71\x3d\x5a\xef\xe7\xa2\x37\x12\xf7\xbc\xad\xcd\x65\x5b\x5b\x8f\x67\xda\x97\x16\x0f\x70\x09\x10\xdc\xf6\xa5\x65\xc1\x2e\xd1\xcc\x9c\x7d\x4d\x49\x25\x4b\x34\x33\x6f\x01\xf7\x6b\xf1\xd2\xd6\x7b\x52\x5a\x5c\x44\x2d\xad\x26\x2f\xc3\x31\xb7\x65\x19\xae\x26\x2f\xe3\xcc\x25\x2b\x6e\xc9\x99\x2b\xbb\x62\xdd\xb5\xac\xb8\xd5\x65\x46\x9c\x2e\x59\x71\xcb\x8a\x7b\xf8\x34\x4b\xe8\x70\x61\xce\xcf\x21\xbb\x25\x74\xb8\xb6\x3d\x39\x9e\xad\xd8\x74\x2d\x96\xe0\x92\x82\xf1\x34\xfd\xb4\x05\x2d\x89\x69\x4f\xd7\x3a\x26\x7a\x61\xa2\x2b\x97\x68\xc9\x0f\x5e\x4b\xcc\xf7\x3d\xff\xf4\x39\x96\x38\xf2\xfe\x1c\xe1\xda\xbb\x4c\xb8\xc4\xe9\xea\x16\x79\x09\xd7\xb6\x19\xc3\xb5\x6d\xc6\x51\xb7\x7d\x17\xae\xbd\xcb\x84\xcb\x3a\x7a\x83\xdb\xf7\x2e\x13\xae\xbd\x9c\xc6\xbb\x1d\xc7\x70\xed\x75\x14\x2e\xeb\xe8\xdd\xa6\x5c\xb8\xb6\xb1\x18\x2e\xc1\xbb\x77\x2f\xd8\x70\x6d\xce\x3a\x5c\x82\x77\xef\xad\xf5\xe8\x9f\x16\xd7\xdb\xfd\x73\xdb\x70\xe1\x92\x62\xdb\xb2\x7f\x6e\x2a\x24\x5c\x72\xbb\xda\xa3\xf5\xbd\x2c\xc2\x25\xb7\xab\x3d\x5a\xdf\x86\x5d\xb8\x6e\xb1\xd4\x7a\x2e\x7a\xa6\xd5\xd1\x5e\x0d\xed\xed\x2c\x5c\x22\x65\xad\x79\xf7\x6c\x94\xb6\xed\x37\x08\x2e\x87\x2b\xbb\x5d\x3a\x6c\xfb\xb4\xbe\xb7\xb3\x70\x49\x15\x68\x4b\x43\xc5\x78\xca\xd8\x52\x69\x2d\x5c\xc5\xbb\x5b\x32\x8a\xaa\x05\x42\x51\x81\x50\xd4\x50\x07\x2d\x10\x8a\x0a\xd7\x3e\x86\x3b\xb6\xb0\xf0\xff\x36\x28\x02\xf9\xa8\x40\x37\x6a\xf4\x6a\xb4\x1e\xfd\x95\x2b\x4b\x75\x38\x5c\x7b\x21\x85\x4b\x72\x41\x3f\x63\x50\xbd\x84\x5c\xd9\xde\xf4\xb7\x1a\x03\x51\xb8\xde\xf4\xb7\x7a\x09\x39\x5e\x7d\x18\x83\x6a\xa6\xec\x05\x38\x08\x0c\x87\xeb\xf5\x66\x02\x6e\xfd\xcc\xa9\xd7\x4c\x79\x45\x35\xaf\x73\x51\xe7\x5f\xd1\xd7\x9d\x37\x16\xae\xe6\xb3\x48\x04\x20\x5b\x14\xae\x6e\x5c\x85\xbc\x48\x0c\x85\xab\x7b\x23\xd1\xad\x99\x75\x7e\x78\x77\xa1\x78\xda\x3b\xe1\x1a\xfe\x69\xaf\xa3\xbd\x13\xae\xe9\xdd\x45\xa2\xe6\xf4\xcc\xe9\xdd\xb7\x61\x38\xd4\x06\x0b\xd7\xd4\x25\x21\x24\x9a\x36\x81\x5c\x55\xb8\x44\x8b\xa8\x72\x86\xeb\x33\xa3\xbf\x13\x85\x7b\x5d\xd4\xa5\xcd\x65\x0c\xaa\x32\x81\x24\x55\xa0\x45\x35\xa8\xb5\x04\x92\x54\xe1\x12\x60\x5f\x3b\xd3\x24\x04\x0b\x97\x40\xd5\xe0\x90\x07\x3a\x55\x21\x58\xb8\x6b\x5b\x6d\x81\x32\x55\x08\xb2\x97\x08\xb3\x04\x3a\x55\x81\x40\xd5\x70\xac\x20\x10\xa1\x0a\xe1\x84\x90\xe2\xf9\xe7\x70\x51\x64\x27\x6a\x7d\x2f\xce\x10\x4e\x0c\xe8\xf5\xcf\xed\x98\x85\xf0\x8b\xec\x44\x17\xfd\x13\xdb\x49\x16\x24\x90\x81\x0a\x64\xa0\x26\x69\x8c\x10\x6e\x0d\x61\x26\x83\x6f\x44\xf1\x29\x84\x13\x85\x19\xde\x28\x7b\xcd\x13\x85\xf9\xce\x45\x0d\x65\xb1\x95\xcb\x1b\xed\x04\xca\x40\xf8\x69\xc6\x6d\x48\x86\x60\x39\x52\x7c\x9a\xdc\xec\x10\x36\x15\x12\x28\x3e\x4d\x95\xdc\x03\x71\xa7\x10\x4e\x68\xc6\x72\x0c\x8f\xa1\x7b\x44\x4c\x1e\x0d\x59\xb8\x14\x9f\x66\x3c\x6f\x54\x3d\x13\x09\x49\x76\x21\x84\xe6\x76\x3a\x9f\x77\xf0\xcf\x6d\x09\x86\x40\x90\x93\xf4\x40\x20\x77\x14\x02\xc5\x4b\x9e\x6a\xa0\x7a\x14\xa8\x1e\xcd\xbb\x79\x66\x37\x9e\x34\x2d\xef\x66\xe8\xba\x67\xe2\x04\xef\x7e\x9e\xe9\x13\x8b\x59\xdc\xe6\x7c\x18\x2e\xee\x45\x32\x29\x02\x84\x30\xbc\xbb\xf8\x42\xde\xda\xa8\x81\x42\x51\xa0\x50\x34\x1d\xd4\x0f\x24\x86\x42\x10\x35\x50\x8c\x25\x84\xa5\x4b\x3b\x73\x79\x72\x4a\x03\xc5\xa0\x10\xf6\xf6\x34\x39\xa5\x81\x1c\x50\x88\xdb\x94\x9b\x32\x0b\x43\x34\x93\xe3\x85\x3d\xde\x46\x74\x20\x0e\x14\xa8\x02\xcd\xe7\x3a\xff\x6c\x2e\x76\x17\x97\x8b\xd3\x45\x4c\xef\xe6\x04\x43\x0c\x9e\x29\x6a\xf0\x94\x73\xd1\x3f\xc3\x51\xa2\xcb\x2e\xee\x69\x13\x23\x7d\xb9\x2d\x39\x1f\xe2\xa6\xff\x42\x44\xff\x8d\x5d\xaa\x23\x10\x0e\x0a\x84\x7f\xda\x88\x6e\xdf\x71\xcf\x40\xf8\xa7\x8d\xa4\xf3\xc9\x6b\x1e\x8d\xb5\xd3\xa5\xe4\x99\xc9\x33\x93\x86\x92\x7e\x26\x34\xe5\xae\x1b\x11\xa2\x0d\x30\x1e\x39\xb5\x5b\xeb\xb7\x67\xee\x0d\xb0\xd1\xaf\x0d\xf4\x7f\x02\xc5\x9f\x36\x36\x05\x16\x28\xfe\x04\x72\x3e\x6d\x64\x0d\xdd\xfa\xb9\x9d\xb5\x36\xb6\x74\x72\x88\xd9\x78\x66\x03\x62\xff\x8c\x7b\x01\x05\x42\x3c\x6d\x54\xad\xef\x4d\x2e\xc4\xa2\xf5\xad\x50\x13\x62\xd1\x7a\x21\x10\xf7\xea\xd2\xce\x0a\x09\xb1\x78\x66\xf3\x46\x8f\xce\x3f\x47\xc8\x4e\x97\x1e\x03\x82\x3d\x54\xc6\x32\x10\xdb\x09\x54\x76\xda\xe8\x9e\xf9\xe8\x27\x4a\x51\x89\xcb\x40\x73\x27\xd0\xdc\x69\xf2\x5c\x42\x7c\xbc\x66\xf5\xcc\xa1\xa1\xea\xc3\x55\xb7\x4f\x9f\xa3\xba\x9d\x48\xda\x80\x60\xb1\x9e\xdb\x7d\xcd\x4f\xeb\xaf\xd7\x7c\x0f\x41\x6c\x40\x6c\x67\x91\x72\xda\xbc\x0c\x88\xed\x8c\xe6\x4e\xa3\x23\x1a\xe2\x6b\x82\x35\x62\x6e\xc1\x0c\x69\x9e\x49\x24\x6d\x06\x5d\x82\x0c\x34\x77\xda\x0c\x3a\xdf\x3c\x93\x48\x9a\xd4\x9b\x10\x6d\x91\x34\x77\xda\x8c\xba\x64\x8b\xa4\xb9\xd3\x08\xd0\x07\x9a\x3b\x81\xe6\x4e\x9b\xe9\xfd\xd3\xa0\x20\xc8\x13\xe2\xde\x54\xdb\x4c\x16\xd9\x30\x29\x86\xfe\xde\xfa\x3b\xf4\x77\xe8\x6f\x36\x84\xc3\xc2\xa5\x8b\x36\xcf\x3c\x85\x3a\xb4\x77\xda\x3c\xf3\xd4\x4e\x4b\x58\xa7\xcd\x33\x25\xa7\xd7\x9d\x04\xed\x8a\x37\x9b\x16\xc4\x24\x92\xf7\x18\xec\xe9\x5b\x11\x4b\x9b\x8f\x67\x7e\xe6\xe9\x67\xb0\x77\x64\x2f\xd0\xde\x09\xf1\x33\x30\x55\xe7\x21\x19\x09\x9e\x36\xed\xde\xf1\xd3\xfa\xe7\x99\x67\x9a\x2f\x93\x97\x04\xda\x7c\x75\x69\xb9\x7d\xb9\xbd\xe9\xbc\x2d\x3d\xd2\x45\x9b\x36\xff\x68\x4b\x8f\x74\xd1\xa6\xb9\x4f\x90\x27\x10\xe4\x69\x6a\x95\x06\x4a\x3c\x21\xd1\x45\x9b\xdb\x53\x0d\xb4\x77\x42\xa2\x8b\xa6\x8e\x69\x48\x1b\x01\x03\x41\x9e\x36\xf7\xb9\xba\x90\x58\xed\x29\x50\x4c\xdc\x04\x47\x48\x9b\xd4\x0d\x89\x02\x25\x2d\xfe\x90\x6c\xfe\x24\x78\xda\xdc\x4c\x6f\xa0\xc4\x13\x48\xf0\xb4\xb9\xb5\x03\x02\x25\x9e\x90\xa0\xe3\xb4\x20\x08\xf2\x84\x74\x82\x23\xdb\xb3\x0a\x69\x53\x4b\x81\x2e\x4f\x9b\x4b\x3f\x37\xa7\x14\x52\xf4\xcc\xe5\x8d\x92\x77\x4f\xa2\x1b\x60\x98\x3c\x4f\x48\x27\x62\x12\xf4\x33\x79\x26\x74\xfc\x82\x86\x92\xce\x6f\xf7\xa0\x29\xbb\x1a\xa8\xf4\x84\xb4\x3d\xea\xf6\x45\x9d\xe7\x33\xa4\x9b\xba\x61\xd4\xfa\xa6\x7f\x43\xa2\x40\xf9\x25\xfd\xbc\x3d\xf3\x26\x10\x98\x74\xe9\xf6\xcc\xdb\x33\x01\x36\x75\x9f\x90\xb6\x7b\xd0\xc8\x64\x87\xb4\xad\x93\x40\xd6\xa7\x39\x47\x1b\x52\x76\x3b\x70\xfd\x4c\xef\x04\x5c\x69\xfd\xb4\xaf\x78\x26\x70\x4d\xc0\xf5\x33\xbd\x29\xff\x04\xca\x3f\x4d\x32\x59\x20\xf2\x13\x12\xc4\xfd\x1e\x1f\xae\x98\x0c\xc5\x80\x54\x6f\xc4\x9c\x49\x82\x38\x0a\xbb\x06\x3a\x40\x81\x9e\x4f\xfb\x40\x7b\x02\xae\xa4\x7b\xda\xf7\x1a\xa5\xea\x9f\x95\x0e\x62\xd3\x25\x6e\x01\xb5\x9d\xf6\x35\xa3\xf4\x9e\x8b\x9e\xd9\xbd\xe6\xab\x4b\x47\x18\xf2\xcc\x4f\x98\x97\x8e\x30\xe4\x99\x8a\xcd\x27\x6e\x6e\x9f\x06\x04\xe6\xd1\xd0\x69\xdf\x99\x8a\xdb\x36\x0a\xe9\x68\x40\x7e\x3a\xcf\x1a\x4a\x47\x03\xf2\xcc\x3a\xd6\x50\xea\xbe\xfb\xd2\x50\x37\x74\xdd\x77\x5f\x06\x04\xd6\x51\xd2\x69\xdf\xd2\xfa\xf0\x39\x86\xa8\xd6\x65\x40\x86\xf9\x49\x03\x72\x5d\x5a\x1f\x3a\x3f\x44\xdf\x82\x7e\x72\x35\xd2\x14\x68\x63\xf4\x25\xc6\x54\x3a\xca\x8e\x51\x97\x3e\x83\x7c\x94\x1d\xa1\x78\xfa\xbc\xd1\x51\x76\x4c\xfa\xf9\xb9\xfd\x13\x53\x03\xbf\x94\x6d\x02\x49\x9b\xb6\x6e\x9d\xff\x7c\x77\xc1\xd0\x75\xe6\x27\x5b\x2c\xd1\xbb\x55\xbf\x36\xd0\xb2\x09\xb4\x6c\xda\x3a\xf3\x73\x9d\xdb\xf5\x73\xd7\x54\x08\x04\x6e\x02\xd9\x9a\xb6\x4c\x5a\xb2\x35\xe1\x3e\x22\x8e\x9b\xb7\x0f\x44\x6c\x02\xa1\x9a\xb6\x76\x4c\x2d\x28\xec\x1f\xc8\xd6\xb4\x65\x7e\x92\xad\x09\x64\x6b\xda\xda\x39\xf1\x41\x29\xff\xa0\xc4\x7e\x5b\x26\xed\xbd\x51\x2a\x10\xa3\x69\xeb\xd5\x50\x74\x7b\xa4\x2b\xf9\xea\xd2\x06\xa4\x40\x8c\xa6\x2d\x93\x56\x55\xfc\x70\xc3\x25\x75\x1a\x82\x02\xf8\x41\x75\xfb\xa6\x30\x6f\xa0\x50\x13\x6e\x22\xb8\x6b\x13\x70\xe1\x4e\x6e\x4f\xc4\x3b\x61\xf2\xbd\x33\x7b\xc3\x0d\x97\x56\xd7\x3a\x5c\x52\xdd\xbe\x2d\x40\x7d\xb3\xda\x94\xb5\x6f\x6b\xf3\x8c\x41\x59\xfb\xa0\x9e\x7d\x5b\x16\x82\x7a\xf6\x81\xce\x4d\x5b\xd3\xbb\xe3\x32\xe8\xdc\xb4\x65\x75\xa8\x59\x1f\x14\x9d\x6f\xeb\xd3\xa5\xec\xf6\xec\x76\x0b\x41\xb5\xf9\xa0\xcc\x7c\x5b\xcb\xbb\xe3\x32\x6e\x10\xb4\x2c\x04\xca\x36\x41\xb9\xf8\x7e\x5d\xba\x54\xdc\x4e\xcb\x46\xb1\xdf\x40\xcb\x26\x28\x10\xdf\xaf\x10\xfe\x34\x28\xc8\xde\x04\xc5\xe0\xfb\x15\xf4\xe2\x31\xae\x54\xc4\xc4\xfc\x83\x6a\xee\xe1\x68\xda\x5c\x51\xd7\x1e\xd3\x07\x99\x7f\x45\x63\xb0\x81\x29\x1c\xf9\x9a\x2b\xf9\xd4\x55\x7f\xab\xfe\x32\xbb\xd5\x53\x0f\x37\xc1\xb0\x0b\x8a\xdf\x18\x0a\x35\xd3\xfb\x75\x7b\xdd\xd7\x67\x21\x18\xa6\x2a\x71\xb8\x77\x62\x5b\x38\xf2\x35\x57\xd1\x4f\x7e\x9d\x32\xe7\xfd\x2a\xde\xa8\x79\xa6\x18\xf5\x75\x96\x0e\xcc\x3b\x4a\x35\x72\x3a\x03\xa5\x9a\x40\x86\xa6\x5f\x67\xe9\x70\xf6\x8e\x28\x8d\x1a\xc5\xe1\x06\x6f\x4a\x93\xf7\xab\x7a\x4d\xf0\x46\x86\xa6\x5f\x67\xe9\xa0\x42\xc8\xd0\xf4\xeb\xd5\x4f\x56\x9b\x6a\xe2\xfd\x3a\x4b\x07\xbc\x29\x23\xde\xaf\xb3\x74\xc0\xdb\x3d\x88\xa2\x9e\x55\xc2\x94\x53\x38\xbc\x13\x3d\x0f\x0a\x87\x07\x15\xc3\xfb\xd5\xbd\xe6\xf0\x46\xb4\x18\xae\xb3\x20\xa6\xce\xd3\xb4\xb9\x86\xcf\xc1\xbe\x53\xd6\xbb\x5f\x53\x3f\xd9\x77\x47\xe8\xe6\x9a\x5a\x9f\xde\x88\xa6\xcd\x75\x16\xc4\xe7\xdd\x05\xc3\x69\xc2\x87\x1b\xe7\x72\x84\x6e\xae\xb3\x20\x40\xa6\xca\xd8\xfd\xfa\x74\x09\xbc\x29\x89\xdd\xc3\x4e\x15\x09\x4a\x62\x07\x7a\x37\x3d\x60\x13\xc8\xde\x04\x85\xae\x7b\xe0\x16\x52\xbf\x09\x6a\x5a\xf7\x10\xce\x3f\xbb\x8b\x24\x4e\x41\x3b\xd9\x9b\xa0\x52\x75\x0f\x66\xb2\x4a\xd5\x81\xde\x4d\x0f\x66\x72\xde\xd4\x69\xc8\x02\xec\x92\x5c\x03\xf5\x9b\x90\x05\xd8\xc3\x26\x8a\x03\x2d\x9c\x40\x04\xa7\x87\xdb\x33\xb7\xb9\x16\x72\x94\x2e\x81\x99\x52\x94\x3a\x1c\x49\x9c\x90\x75\x69\xc3\x62\xa0\x8c\xd3\x83\x4d\x80\x40\x4e\xa0\x8c\xd3\xc3\x2e\x99\x1a\x08\xe4\x84\xa3\x7e\x13\x4c\x6f\xb2\x37\x21\x27\xba\xa7\x8f\xa1\xc3\xf8\x50\xb1\xe9\xc2\x3d\x41\x01\xe9\x40\xc5\xa6\x07\xb3\x4e\xe5\xe8\x70\x34\x6d\xc2\xab\xf3\x80\x50\x41\xe8\x1e\x4c\x45\x62\x34\xe1\xe8\xce\x28\x4a\x1d\xe8\xce\x84\xa3\x3b\x13\xba\x7e\x32\xbb\x54\x74\xee\x81\xaf\xa8\xa2\x73\xa0\x34\xd3\x83\xf9\x49\x70\x26\xe4\xa3\x0e\xcb\x1e\x21\x38\x13\x94\x64\xee\x61\x18\x10\x60\x45\x7e\xa6\x87\xa9\xa1\xe2\xc3\x1d\x21\x58\xf3\x53\xa1\xe5\xa0\x8a\x72\x0f\x1c\x48\x75\x93\x43\x3e\x42\xb0\xa6\x22\x15\x9a\x40\x7e\xa6\xab\x7b\x1d\xa8\xd0\x04\xa2\x32\x3d\x2c\x0d\x41\x30\xf5\x8f\x7b\xe0\x6a\x92\x98\x09\x47\x62\x26\xc2\xe6\xfc\x1a\xe4\x0d\x64\x3d\x5e\x5e\x93\x2d\x96\xe9\x20\x46\x80\x9d\xc1\x5a\x16\xb8\x8c\x8c\x14\x62\x34\xe1\x88\xd1\x44\xf0\x9b\x61\x1d\x4d\x9a\x1e\x11\x1c\xa4\x69\xc2\xd1\x9d\x89\x67\x26\x6f\x73\x2d\x1c\x89\x99\xc8\xd5\x54\xd5\x38\x50\x9a\xe9\x31\x69\x1d\xb1\x45\x69\xa6\xab\xc1\x1d\x32\xac\xcb\x47\x08\xf6\x4c\x6f\xb6\x18\xfd\x98\x1e\x79\x93\x19\x82\x1d\x35\x99\x98\x8d\x27\x04\xcb\x10\x2c\x22\x38\xf2\xf0\x89\x37\x3c\xf5\x78\x66\x32\x62\x2b\x9f\x7c\x9c\x9d\x98\x18\x28\xc6\x84\x7c\xf2\x71\xc0\x2f\xe1\x98\x90\x37\xed\xdb\x23\x6f\x92\x8c\x4c\x50\x50\xb8\xc7\x47\x43\xb8\xe0\xa3\x11\x13\xab\x15\xf7\x19\xf9\xa3\xf9\x0a\x7e\x29\xc6\x04\x52\x31\x5d\xad\xf0\x90\x81\x15\xa9\x98\x1e\xcf\x9c\xff\xcc\x3a\xb2\x84\x71\xe7\x07\x07\xc2\x31\xe1\x08\xc7\x88\x66\x06\xa5\x80\x03\xfd\x98\x1e\xcf\x42\x58\x5a\x5f\x12\x94\xce\x42\xe0\x77\x2a\xe6\xdb\x23\x7b\x84\x70\x4c\x20\x1c\xd3\x23\x4c\x56\xb7\x37\xd0\x8f\xe9\x11\x69\x42\x46\x26\x94\xeb\xa4\x1d\x65\x17\xa7\x8b\xfa\xc9\xf3\xa3\x11\x13\x8a\xf4\x83\x04\x54\xcb\x36\xec\x42\x39\x42\xb0\x9c\x3c\xc2\x31\x81\x1c\x4c\x4f\xd7\xb9\x7d\xb8\xb8\xe7\x52\x0a\x7f\x0a\x5b\x05\x5a\x31\xa1\x1c\x95\x58\xe4\x09\xad\x98\x40\x2b\xa6\x27\x94\x1d\xad\x98\x40\x2b\xa6\x27\x6e\x21\xad\x98\x40\x2b\xa6\x27\xd3\xbc\x00\x42\x5a\x31\x5d\x7a\x79\x28\xcc\x44\x35\x7a\x7b\xe2\x2b\x16\x3c\x9e\x52\xbd\x3d\x31\xd0\x95\xea\x0d\xea\xe2\xf6\xc4\xca\xa0\xeb\x12\x14\xc4\xed\x09\x8f\x47\xa6\x25\xd0\x67\xe9\x69\xa7\x84\x06\xc2\x2c\xa1\x80\xb7\x04\x5c\xc9\xb4\x04\xfa\x2c\x3d\x3d\xfa\xb9\xc1\x2e\x90\x62\xe9\xc9\x3c\xa5\xc8\x12\x48\xb1\xf4\x24\x06\x44\x83\x25\xd0\x60\xe9\x09\x97\x51\x8a\xd7\xdc\x96\x5d\x4f\xa6\x24\x61\x96\xa0\x24\x6d\x4f\xef\x79\xa6\x41\x66\xb5\x25\x3c\x1e\x99\x96\xa0\xb4\x6c\x4f\xb0\x59\x69\xd9\x40\xb4\xa5\x27\x04\x07\xed\x96\x50\x60\x5e\x32\x4f\x29\xb2\x04\x1a\x2c\x3d\x75\x03\x82\x39\x27\xc5\xd2\x13\x1e\x8f\x06\x4b\xa0\xc1\xd2\xd3\x3c\xb7\x1b\x3a\x40\xa8\xe6\x7b\xa0\xc8\x12\x54\x75\xed\x09\x43\x41\x98\x25\x90\x62\xe9\xe9\xcc\x53\x98\xa7\xb0\x6a\x4f\xdc\x42\x1a\x2c\x41\x0d\xd5\x9e\x78\x80\xa5\x19\x3a\x98\xa7\x22\x4f\x50\x58\x35\xa8\x93\xda\xef\x33\xa3\x11\x71\xe4\x56\xfa\x0d\x5c\xc9\xad\x04\x72\x2b\xfd\x3e\xf3\x93\xff\x49\x75\xa5\xdf\x68\x8b\x02\xf3\x08\xab\xf4\xfb\xcc\x4f\xa6\x1c\x61\x95\x7e\x9f\xf9\x39\xbc\x26\x29\xc1\x9b\xaf\x48\x4a\x25\xd0\x50\xe9\x4a\xd4\x07\x52\x2a\x81\x86\x4a\xbf\xcf\xfc\x14\x14\x53\xda\xb4\xdf\x67\x7e\xc2\x3c\xea\x27\x5d\xdd\xfa\x50\x18\x68\x44\x50\xfa\x0d\x86\x69\xa1\x84\x02\x08\x55\xb1\x0f\xea\x96\x06\x92\x28\xfd\xde\x19\x31\x41\xe1\xd1\xa0\xaa\x68\xbf\x79\x95\xea\x88\x06\x05\x44\xfb\x8d\xd4\x53\x40\x34\xa8\x1c\xda\x6f\xac\x47\xe1\xd3\x52\x46\xe9\xf7\x99\xf3\xe2\x0b\xd4\x4f\xfa\xcd\x81\x54\x01\x34\x28\xfd\xd9\x6f\xa4\x9e\xd2\x9f\x41\xcd\xcf\x7e\x23\xf5\x0a\xa3\xaf\x00\xc2\xdb\x42\x50\x08\x34\x10\x4f\xe9\xb7\x98\x9a\x2a\x9f\x41\x09\xcf\x7e\x63\xfa\x88\xa7\x04\xe2\x29\xfd\xc6\xf4\xa9\xeb\x19\x1e\x79\x58\x37\xa6\xef\x01\x84\x6a\x77\xf6\xdb\x42\x50\xad\x33\x28\xc5\xd9\x6f\x0e\x24\x99\x95\xa0\x06\x67\xbf\x61\x33\xd1\x95\xf0\x44\xef\xce\x48\x79\x98\x72\xcf\x49\x8b\xb4\x3a\xe8\xab\x04\x1a\x2a\xfd\xe6\x40\x92\x52\x09\xcf\xc9\x95\x44\xea\xa9\x9e\x19\x9e\x93\x2b\x89\x49\x51\x36\x33\x3c\x47\xfc\xda\xea\x20\xb3\x12\x28\xaa\xf4\x9b\x03\x49\x51\x25\x28\x7c\xd9\x6f\xfc\x1d\x7d\x95\x40\x58\xa5\xdf\x96\x0c\x7d\x95\xa0\x80\x65\xcf\x96\x0c\xd5\x94\x40\x27\xa5\x67\xf6\x08\x9d\x94\xf0\xc0\xba\x8c\xe9\xa3\x9a\x12\xd4\xa3\xec\x19\xd3\x47\x3c\x25\xd0\x49\xe9\xd9\x92\x51\x96\x32\x3c\xec\xbb\x8c\xaa\x7b\xd8\x77\xca\x52\x76\x07\x4f\x02\x9d\x94\xf0\x1c\x45\x6c\x4e\x1e\xd5\x94\xf0\xd0\x15\xcc\xf8\x11\xe2\x29\x81\x5c\x4a\x3f\xf1\x2f\x3a\x29\xe1\x91\x6a\x99\x79\x7e\x04\x52\x82\xfa\x90\x3d\x8b\x2b\xa9\x0f\x19\xe8\xa4\xf4\x8c\x1f\xa1\x93\x12\x88\xa0\xf4\x6c\x7a\xd3\x42\x09\x84\x4e\x7a\xe6\xe4\x11\x3a\x09\x84\x4e\x7a\xe6\xcf\xa9\x67\x18\x94\x08\xec\x19\x15\xa2\x3c\x60\xa0\x69\xd2\x33\xf4\x56\xeb\x2f\x50\x31\xe9\x19\x7f\xa7\x28\x5f\xa0\x69\xd2\x33\xf4\x56\x85\x2f\x90\x36\xe9\x99\x93\xa7\xc8\x5e\xa0\x69\xd2\x89\xd1\x04\x15\xf3\x82\x82\x77\x3d\xf3\xfc\x14\xbb\x0b\x54\x4c\x7a\x86\xde\xc4\x4c\x02\x15\x93\x9e\x87\xd7\xec\x1a\xda\x26\x59\xcf\x67\x26\x8b\x16\xd0\x26\xe9\x99\xe7\xa7\x78\x5b\x50\xad\xad\x67\xa1\x19\xba\x25\x81\x60\x49\xcf\x58\x0f\x05\xd8\xc2\xc3\x9b\x74\x94\x26\x50\x2a\x09\x64\x48\x7a\xc6\x09\x52\x23\x09\x0f\xdd\xe8\xbc\xf2\x9f\x06\x05\xc5\x92\xf0\x7c\x7a\x81\x12\x21\x40\x12\x48\x8e\xf4\xc2\xec\x7e\x98\x5f\x0f\x89\xbe\x82\x1b\x24\x39\x12\x1e\xf8\x54\x10\x1c\x04\x48\x02\xc9\x91\x4e\xd3\x26\x90\x1c\x09\x95\x57\x59\xf8\x8a\x15\xea\xd4\xeb\x88\x8a\x7f\x2e\x56\x17\x37\x0c\x17\x04\x07\x55\x92\x40\x4f\xa4\x17\x73\xbf\x72\x20\x2b\x5f\xb1\x08\x21\x92\x15\x09\xf4\x44\x7a\x01\xed\x15\xea\x28\x3b\xd7\x0b\xc2\x90\xd6\x48\xa8\xac\xa1\x62\x41\x54\x79\x39\x55\x71\x93\x92\xcf\x3f\xf7\xb8\xd2\x0c\xe9\x05\xb4\xd3\x0c\x09\x34\x43\x7a\xc1\x7a\x54\x26\x12\x79\x90\x5e\x2c\x08\xba\x20\xa1\x02\x98\x82\x1b\xac\x00\xa6\x66\xaf\x09\xda\x2b\x86\x8a\x3e\x47\x2f\x60\x98\x4c\x47\xa8\xc0\xa0\x20\xf7\xd4\xcc\x0b\xd4\x3a\x7a\x61\x37\x93\xe9\x08\xf4\x39\x7a\x11\x5b\x21\xd3\x11\x2a\xc3\xa7\x98\xd1\x95\xe1\x43\xb4\xa3\x17\xbe\x22\xed\x8e\x50\x79\x80\x05\x97\x41\xc2\x23\xd4\x93\x8c\x2d\x96\x5e\x31\xe7\x84\x39\x7a\x61\x37\x57\x09\x35\xf4\x39\x7a\x61\x37\x93\xe9\x08\x95\x9e\x68\xc1\x65\x54\x61\x49\xc2\x1c\xbd\xcc\x73\xbb\xd6\x79\x80\xe5\xd3\x4f\x86\x4f\xe5\xd7\x15\x5e\x65\xe5\xd7\xd5\xd7\x6b\x72\x20\xa9\x75\x04\x6a\x1d\xbd\x60\xfc\xea\xab\x9f\x32\xb4\x8b\xe9\x5d\x61\x49\x95\x90\xfa\x98\xde\x95\x5f\x57\xc1\xc6\x03\xb0\x2b\xd8\xa8\xce\x44\x3c\xa6\x37\x0d\x8e\x50\xb9\x70\x0f\x6c\xae\x1b\x2f\x42\x3d\x6a\xf5\xbc\x4a\x3a\x1b\xa1\x1e\xb5\x7a\x51\x18\x72\x1b\xa1\xaa\xe5\xf1\xa0\x42\x2a\x17\xae\x1e\xb5\xfa\x7d\xd8\x2a\x54\xe6\x4c\xfd\x09\xd3\x2f\x17\x8d\xd2\x4f\x98\x5e\xe7\x87\x86\xd8\x38\x0f\x7e\xa4\x72\xf6\xea\xd1\xa0\x3f\x73\x1e\x6c\xd4\x6d\xd5\x74\x67\xb5\x42\x9d\x96\xcc\x91\x9b\xe7\x6a\x56\xc8\x50\x91\x50\x8f\x4d\xa0\xa2\xe8\xeb\xd1\xa0\xc7\x8f\x54\xcc\x54\x3d\x72\xf3\x67\x21\x70\xe1\x88\x68\xf4\x87\xab\x59\x99\x33\xf5\x28\xcb\xdb\x04\x2a\x8a\xbe\x2e\x9f\x03\xd3\x57\x01\x4b\xdd\x50\xd2\x1f\x3b\x43\xe5\xd7\xd5\xa3\x41\x6f\x67\x78\xf9\x75\x2f\xbf\xee\xe1\x55\x12\xe6\x08\xaf\x0c\xf2\xc7\x92\x79\x61\x08\x29\x8e\xfe\xf0\x2a\x5f\xe6\xcc\xcb\x9c\x79\xac\x8e\x97\x39\xf3\xf2\xeb\x1e\xab\xe3\xe5\xd7\xd1\xe7\xe8\x8f\xd5\x41\x98\x23\x50\xdd\xe8\x0f\xaf\x92\xf8\x46\x78\xe9\xc5\x3f\x4c\xf8\x17\x45\x4f\x44\xa3\x3f\x56\xc7\xcb\x72\x79\xc1\xc5\xb3\xb3\x2a\xc3\x8b\x4e\x7f\x1d\xe8\x78\x40\xfb\x2b\xcc\x47\x36\xa3\x3f\xa6\xf7\xcb\xcd\xa2\x97\xd1\x2b\x4c\xa6\x97\x11\xe8\x65\xf4\x8a\xbf\x7b\x85\xf9\x48\x63\xf4\xca\x5a\x7f\xb3\xd6\xe9\xc5\x57\x8e\x23\xa1\x8c\xf0\x3a\xfa\x51\x01\xf5\x8b\x63\x57\x8c\xb3\x57\x54\x08\x11\x8d\xa0\xee\x66\xaf\x66\xb2\xba\x9b\x81\x88\x46\xaf\xd0\x5b\x51\xcd\x40\x4b\xa3\x57\x4c\x9f\x6a\x9a\x41\x19\xcd\x5e\xa1\xb7\x32\x9a\x41\xfd\xcc\x5e\xf1\x23\xea\x67\x86\x17\x2e\x55\xd3\xfb\x95\x58\x41\x60\xa3\x57\x33\x99\xce\x46\x78\x39\x64\x15\xd3\xf7\x72\xc8\x5e\x74\x55\xc5\x8f\xbc\xf2\x04\x69\x70\xf4\x6a\x26\xbf\xe8\xaa\x97\xeb\x56\xcd\xe4\x97\x39\x43\x9f\xa3\x57\x1e\xea\x5b\x8d\x12\x0e\xab\x82\x74\x6a\x1d\xe1\xe5\xcf\x55\xa4\xc9\x2b\x79\x90\x3e\x47\xaf\xa6\x37\x61\x8e\x40\x8a\xa3\x57\xe1\x48\x8a\x1c\x81\x14\x47\xaf\x6c\x9c\x57\x3c\xf1\x7d\x1d\xfd\xe0\xa1\x92\xe9\x08\xe4\x36\x7a\x3d\x73\x9e\x97\xf6\x42\xb0\xca\x30\xa7\xac\x11\x28\x6b\xf4\x6a\x47\x78\x19\x3e\xef\x39\x78\x72\xa6\x37\x04\xa3\x97\xd1\xab\x4c\x93\x17\x82\x91\xcd\xe8\xff\x80\xce\x5f\x06\x05\x69\x8d\x40\x53\xa3\xd7\x33\xf7\x87\xe5\x88\x4e\xaf\x67\xee\x33\x80\x88\x62\xf4\xca\xa7\xa5\x8d\x11\x5e\x0c\x55\x85\xf7\x2f\x6f\xed\xc5\x50\x55\x2c\x22\xdd\x8c\x40\x37\xa3\x57\x9b\x00\xdd\x8c\xf0\x82\xb7\xba\xac\x27\xe9\x12\xc4\x30\x7a\x45\x2d\x92\xbf\x08\x2f\x78\x7b\x6d\x02\x2f\x78\x23\x86\xd1\x5f\x2c\x0d\x4d\x8c\xf0\x82\xb7\xf7\xac\x27\x26\x12\x69\x8c\xfe\x72\x74\x5f\xf0\xf6\x82\xb7\xd7\x26\x40\x2f\x23\xbc\x54\x8c\x5f\x3e\xed\x2b\x5d\xe2\xe5\x98\xbd\xd6\x53\x83\x64\xed\x3a\x27\x72\x8a\x8b\x8f\x8b\x6e\x47\x2d\x52\xcf\x08\x8d\x89\xf4\xa2\x16\x1b\x78\x23\xa2\xd1\x5f\x4b\xa7\x89\x2b\x36\xa0\xf5\xf2\x69\x5b\x70\x3b\x32\xea\x85\xf7\x24\x35\x42\x23\x3b\xff\x32\x7c\x9a\xbc\x31\xb2\x19\xfd\xb5\x74\xe8\x65\x04\x62\x18\xfd\xe5\xd3\x36\x8e\x19\x69\x8c\xfe\xc2\x7b\xd2\x18\x81\x34\x46\x7f\x51\x36\x4d\x12\x44\x03\x84\xaf\x4d\x80\x5e\x46\xa0\x90\xd1\x5f\xab\xa4\x09\x36\x36\xe8\xf8\xa2\x16\xe9\x65\x84\x46\x4c\xfe\xb5\x4a\x1a\x74\x24\x8d\xd1\x5f\xab\x84\x0a\x46\x20\x78\xd1\x5f\xee\x6b\x93\x0e\xdd\xa8\xc0\xbf\x36\x81\x76\x9f\xdb\x9d\x9a\x42\xd9\x34\x74\x15\x31\x8c\xfe\xa2\x16\x69\x62\x84\xc6\x5b\x7b\xb9\xaf\x8d\x81\xd6\x4e\xe1\x0c\xd3\xbb\xf1\xd6\xda\x29\x9c\xc1\xd5\x6c\x30\x8f\x42\x46\x7f\x41\x7b\x63\x76\x51\xc8\xe8\x0d\x8b\x48\x28\x23\x34\x47\xe8\x1a\xce\xa5\xc9\xbf\x6c\xe0\xad\x99\x9f\x84\x32\x42\xe3\xad\x35\x5e\x65\xe3\xad\x35\x48\xd6\x78\x95\x0d\xf1\x4e\xcd\xa2\x37\x96\x0b\x51\x8b\x40\xcd\xa2\xb7\x74\x2e\xfa\x70\xa7\x4a\xc5\x3e\x4a\x13\x28\x56\x04\x8a\x15\xbd\x49\xdf\xa4\x58\x11\x28\x56\xf4\x06\x86\x29\x56\x84\x76\xaa\x54\x48\x7a\x6a\x4d\x3f\x4f\x95\x8a\x33\xc1\xe0\x53\x3b\x55\x2a\xce\x04\xeb\x26\x2d\xb3\xab\x9d\x09\xc6\xec\xa2\x51\xd1\x1b\x18\x26\x55\x11\xda\x29\x5d\x81\x34\xa1\x58\x11\xda\xa9\x52\x21\xb7\xaf\x61\xce\x1b\xe6\xbc\x21\x4d\x88\x53\x04\xe2\x14\xbd\x81\xe1\xc6\x5b\x6b\x02\x82\x0d\x69\x42\xb1\x22\x90\xa3\xe8\xed\xcc\xba\xa9\x4b\x8e\xd0\x35\xac\x47\x03\x41\x74\x28\x7a\x3b\xd3\x06\x04\x35\x84\x51\x63\x44\xb7\xcf\x7a\x47\xa7\x37\x88\xdb\xb0\x48\x0d\x9d\xde\xb0\x1e\x0d\x9d\x4e\xa3\xa2\x37\xe6\x76\xc3\x9c\x37\x84\x51\xe3\x40\x36\x7c\x78\x03\x41\x0d\xeb\xd1\x40\x50\x03\x41\x0d\x51\xd8\x40\x50\x03\x41\xcd\xfc\xec\x20\xa8\x9f\x33\x7a\xa8\x10\x4a\x17\xa1\x9f\xe3\x78\x4c\x8f\x2e\x21\xb5\x23\x8c\x1a\x50\x25\x78\x11\x08\x5e\xf4\x8e\x0a\x21\x78\x11\xba\xca\x17\xdd\x4c\x26\x63\x11\x08\x57\xf4\x1e\x34\x04\x6d\xc8\x58\xf4\x0e\x54\xbb\x3c\x2c\x6a\x16\xbd\x9b\xb4\x44\x2d\x42\x77\x8e\xb6\x63\x0f\x7b\xd4\x25\x68\xd3\x79\x93\x9d\x43\xd6\xd1\x40\x1d\x54\xd2\xa1\x08\x1d\x86\x74\xa8\x48\x95\x22\x74\x47\x66\x3b\x2a\xa4\x27\xad\x63\xb7\xbb\x99\x4c\x80\x22\x10\x99\xe8\x9d\x3b\xd8\x61\x08\xc9\x89\xde\x4d\xda\x0e\x43\xfa\xce\x5b\xe8\x1d\x15\xd2\x99\x5d\x94\x27\x7a\x37\x69\xbb\x84\xd4\x0e\x43\x3a\x77\xb0\x3b\x67\xd1\x61\x48\x47\xea\x11\xa0\x08\x44\x26\x7a\x37\x3f\xbb\xdc\xd3\x0e\x2e\x3a\xc7\xb1\x83\x8b\x8e\xc8\xee\x00\xb0\x23\xb2\x3b\x22\xbb\x33\x13\x3a\x22\x9b\xf2\x44\xef\x66\x72\x47\xee\x74\xc7\x06\x3b\xfe\xae\x73\xdd\x3a\x22\xbb\x23\x38\xe8\x50\x04\x3a\x14\xbd\x8f\xf3\x4f\x6f\xe4\x70\x6d\x37\x69\xa9\x52\x84\xce\x1a\xea\xb3\xfc\x69\x50\x50\xae\x08\x94\x2b\x7a\x37\xcd\xbb\x70\x5f\xe7\x16\x76\x8c\x1f\xc5\x8a\xd0\x19\x55\xdd\xdc\xef\x8c\xaa\xfe\xfa\x2c\xe6\x7e\x6f\x9e\x89\x4d\xea\xf2\xae\x3b\x36\xa9\x73\x0b\x3b\xc6\xaf\x73\x0b\x7b\xf3\x66\x18\xbf\x0e\xc9\xc8\x58\xf4\x93\x4d\x4d\xc6\x22\x90\xb1\xe8\xe3\xcc\x68\x96\x56\x77\xd2\x5e\x09\xef\x40\xdb\x22\xd0\xb6\xe8\xe3\x4c\x5e\xe6\x57\x77\xa2\x91\x6a\x43\xe8\x5d\x43\x62\x80\x03\xa1\x4d\xaa\x22\xd0\xa8\xe8\xa4\x1c\x42\x97\xc5\xd0\x39\x90\x03\xeb\xd1\x91\xe4\x1d\x49\x7e\xb2\xa9\x3b\xaf\xb2\x23\xa3\x06\xd6\xa3\xb3\xc5\xba\x2c\x86\x93\x62\x4d\xfe\x22\xd0\xbd\xe8\x83\x07\x48\xfe\x22\x74\x48\x36\x98\xc8\xe4\x2f\x02\x35\x8b\x3e\xce\x34\x97\x66\x4a\xcd\xa2\x0f\x87\x05\x88\x5a\x04\x6a\x16\x7d\xd8\xfc\xc9\x58\x04\x32\x16\x5d\x01\xf1\xd0\x81\x16\x35\x8b\x7e\xf2\xae\xfb\xb2\xc8\x9c\x3a\x1e\x78\xbc\x81\x5a\x1a\xa8\xa5\x21\x34\x33\xd8\x4d\x83\xdd\x34\xf8\x75\x83\xdd\x34\x4e\xb9\x9e\x7e\xfe\xd9\x5d\x1c\x2e\x7e\x2e\x4e\x17\x35\x84\xdc\x1b\xb2\x18\x06\x0b\x6b\x98\xfb\x83\x5b\x38\x4e\x61\x1f\x80\x3d\x1c\x0e\x1b\x0a\x8e\x0d\x34\xf5\xc0\x87\x8f\x53\xed\xc7\x4c\x1e\xf2\x1d\xc6\xa9\xf6\x83\x0a\x19\x80\x90\x14\x47\x1f\x66\xf2\x60\x76\x91\xdb\xe8\x83\xed\x30\x98\x5d\x83\xd9\x35\x10\x1c\x83\xd9\x35\x58\x58\xd3\x81\x23\x8a\x1c\x61\xc8\x62\x98\xe6\xe7\x60\x61\x0d\x16\xd6\x44\x70\x0c\x16\xd6\x40\x57\x4d\x93\x76\xc8\x28\x1d\x5c\xcd\xc9\x2d\x1c\x5c\xcd\xc1\xc2\x9a\x3c\xc0\xc1\xc2\x1a\xd0\x71\xf2\x00\x07\x74\x1c\xf9\x1c\x6b\xd6\x10\x96\x7b\xf0\x15\x27\x6c\x1e\x7c\xc5\xc1\x57\x9c\x68\x8b\xc1\x98\xa2\xe4\xd1\x67\x3e\xff\xd4\xcf\x53\x28\x87\xb3\x37\x10\xda\x44\x3b\xfa\x49\xad\xa6\xdd\x11\xa8\x75\xf4\x69\xd2\x0e\xf9\xf6\xd4\x3a\xfa\x44\xd5\x0d\x1e\xe0\x38\x35\x71\xf8\x75\x24\x3c\xc2\x91\xf0\x98\xc8\x88\xc1\xd9\x1b\xf2\xb0\xa6\x60\xf8\x10\xbc\x23\xef\xd1\x4f\xc2\x34\x95\x8f\x30\x10\x5b\x13\x19\x31\x10\x5b\x43\x39\xdb\x79\x66\x32\xea\x7b\xc8\xc3\x3a\xb9\xd1\x43\x6a\xfd\x50\x5b\x6c\xf6\xf3\x4f\xdf\x9d\xd5\x76\x12\xa6\x07\xab\x6d\xbc\xe7\x44\xb8\x37\x92\xc5\x30\x60\xdd\xc9\xa2\x1e\xac\x36\x92\x21\x7d\x4a\x00\xa1\x1c\x12\x48\x86\xf4\x93\x30\x4d\x39\x24\x0c\xb0\x36\xf1\x77\x04\x44\xc2\xe0\x40\xce\x33\x69\x99\x5d\x43\xf0\x6e\x72\xdd\x86\x2c\x86\x01\xc1\x4e\x6e\xf4\x60\x8b\x0d\xb6\xd8\x64\x50\x0c\xb6\x18\x71\x91\x3e\xcf\x4c\xc6\x76\x8d\x53\xe9\x86\x97\x46\x4e\x24\xd0\x11\xe9\x1f\xaa\x6e\x00\xab\xa3\x2a\xf2\x21\x38\x06\x5b\x6c\x40\xb0\x93\x45\x4d\x63\x24\x0c\x08\x76\x72\xa3\x07\x04\x1b\xdc\xc1\xef\xcc\x64\xee\xe0\x90\xb0\xf0\x9d\x99\xcc\xec\x1a\xcc\xae\x8f\x43\x46\x94\x24\x1c\x51\x92\x0f\x2b\x37\x96\x2e\x61\xcc\x3f\xb4\xc5\x40\x6c\x0d\x05\xc7\x3e\xa9\x76\x13\x82\x4d\x75\x14\x3f\x64\xc4\xdc\x46\x58\x38\x9a\x26\x84\x36\xc3\x44\x8e\x4f\xb6\xd8\xe7\xc0\xd1\x64\x76\x4d\x66\xd7\xc7\x79\x22\x74\x12\x48\x9b\xf4\xcf\xa4\x9d\x70\xe9\xc8\x97\x7c\x3c\xaa\x89\x31\xa7\x62\xd2\x4f\x1a\x34\x31\x93\x40\x9b\xa4\x7f\x28\x06\x12\x25\xe1\x88\x92\x9c\x23\x7e\x44\x49\xc2\x54\x07\xec\x33\x3f\xa7\xfc\xf5\x79\x7b\x26\x8a\x81\xd4\x48\x98\xdb\x28\xea\x9f\x38\x08\xe1\x91\x30\x99\x48\x1f\xe7\x69\x32\x91\x26\xb8\xf8\x40\xe5\xc4\x37\x4d\xca\x0a\x9f\x0c\xb8\x99\x3d\x93\xdd\xb4\x73\xa3\xff\x30\x28\xc8\x98\x84\x23\x63\xf2\x21\x0e\x26\x80\x99\x00\xe6\x33\x25\x89\x9a\x04\x6a\x26\x7d\x71\xcc\x88\x9a\x04\x6a\x26\xfd\xe4\x48\x13\x35\x09\x13\xc0\x2c\x1c\xc1\x04\x30\x13\xc0\x9c\x1c\xe9\xc9\xa8\x9a\x98\xf3\x85\x23\x98\x98\xf3\xc9\xc6\x59\x38\x82\xc9\xc6\x99\xc0\x60\x21\xcd\x26\x30\x98\x5c\xb8\x85\x34\x23\x4e\x12\x26\x8e\x68\xdd\xe7\xf6\x3d\x4f\xa7\xa4\xcc\x65\xf6\x4d\x36\x0e\x8d\x92\xbe\x78\x6b\xa4\x4a\xc2\x04\x06\x8b\x63\x36\xdb\xb9\x7d\x83\xc1\xe2\x98\x91\x31\x09\x13\xb9\x43\x3a\x34\x4c\xf6\xc8\x64\x65\x2c\x4e\xfe\x64\x65\x4c\x61\xf3\xe5\x0c\xdc\x14\x36\x9f\xa7\x48\x14\x27\x6a\xb2\x08\x26\x8b\x60\x31\x52\xe7\xf2\x39\xac\xa7\xc5\x1e\x9d\xd6\xd3\xe4\xb1\x2c\xe8\xf8\x59\x3a\x47\x55\xe4\x24\x24\x53\x15\x09\x1f\x8b\xe0\x24\x24\x7f\x82\x4d\x1f\x8f\x65\x71\xb7\x3e\x4b\xe7\xb3\x74\x16\x20\x24\x35\x12\x8e\xd4\xc8\xc2\x61\x91\x1a\x09\x9f\x14\xc6\x93\xba\xfc\xd9\xd2\x3f\x4c\xca\xc2\x61\x7d\x98\x94\xcf\x96\xbe\xbe\xf3\xcf\xfd\xee\x9f\x10\xf7\xe2\x6e\x7d\x42\xdc\x9f\xa5\x43\x4b\x35\x7c\x96\xce\xb7\x17\xc4\xb8\x58\x97\x9f\x05\xf1\x39\x47\x7d\x92\x86\x3f\x46\xff\x47\x5d\xfd\x24\xf8\x7e\xf6\xba\x8f\x76\xc0\x65\x32\xd0\x0a\x09\x5f\x25\x63\xc1\xe1\xa1\x07\x12\xbe\xbd\xbb\x8d\x0b\x0d\xf4\xb1\xef\x3f\x45\x2e\x2e\x93\xe1\x63\xdf\x7f\x14\x87\x2f\x93\xe1\x63\x98\x93\x05\x19\x17\x87\xe7\xb3\x83\x91\xf0\x18\x17\xdf\xe6\x93\xf4\xf6\x51\xf2\x3d\x19\xba\x9f\x04\xdf\x4f\xb9\x9e\xeb\x3d\xff\xd4\xba\x3a\x11\x17\x1e\xe7\x13\x53\xfd\x06\x61\x0e\xa1\x2e\x62\x1f\xe1\x27\xf6\x81\xb2\xf9\xb8\xee\x9f\x3a\x3b\x17\x97\xe3\xe3\xba\xff\xc4\x3e\xce\xd7\x14\x53\xfd\x14\xca\xb9\x38\x10\x9f\x3d\xe4\xa3\x47\x70\x9d\x0f\x37\xbd\x11\x3d\x82\xeb\x7c\x38\x61\x94\x4f\xf5\x87\x93\x62\xfb\xa1\x14\xa9\x83\x8c\xcb\x41\x6d\x22\x21\xe1\x53\x13\xe7\xe4\xdd\xd2\x0a\x09\x1f\xd5\xf2\x70\x3e\xb1\x13\x58\x84\x40\x46\x40\xee\xd0\x03\x09\x1f\xe1\x83\x00\x43\x3e\x3c\xe3\xa7\x26\x4e\xc0\xf8\x7c\xa2\xae\x1f\x09\xde\xc0\xab\x58\x16\xc2\x72\x7e\xfa\xa4\xd8\x2e\xf9\x6d\xcb\xf9\xe9\x60\xda\x50\x15\x09\x74\x44\x46\xb8\xcf\xed\x7b\xbd\xaf\x40\x94\xc4\x66\xb5\x50\x8a\x2b\x1c\xf5\x93\xd7\x45\xcf\x0c\x9e\x69\xda\xd0\x18\x09\x8b\x1a\xc2\x49\xb1\x5d\x56\xc7\x91\x1a\x09\xf2\x08\x96\x6c\xb5\xa5\xb2\x59\x30\x6d\x96\x6c\xb5\x23\x35\x12\x00\xcb\x92\x98\xb6\x54\x6a\x08\x75\xbf\xfb\xb2\x05\x2d\x5a\xe4\x81\xaf\xb0\x18\xbc\xeb\x54\x36\x33\x97\xe8\x8f\x84\xa3\x3f\x72\x52\x6c\xe9\x8f\x84\x75\x7b\x26\xb4\xa1\x3f\x12\xd6\xa9\x42\x66\x82\x91\x1a\x09\x2b\x1f\x95\x96\x3d\x6d\x48\x8d\x84\x23\x35\x12\x00\xcb\x92\xb6\xbb\x88\x29\x04\x6e\xc1\x12\x5b\x39\xfa\x23\xc1\xfc\x24\x3c\x12\x16\x31\x85\x60\xaf\x5b\x4e\x25\x90\x21\x19\x27\xc5\x96\x1a\x49\x58\xa7\xb6\x18\x5f\x76\xc9\x6b\x23\x43\x32\x82\xf9\x49\x8d\x24\x1c\xa9\x91\x20\xe1\x6b\xd9\x8f\xd6\xe3\x76\x94\xcd\x12\x31\x59\x0f\x35\x19\x94\xcd\x12\x31\x59\x0f\x35\x19\xf3\x73\x89\x83\x2c\x70\x11\x39\x10\x8b\x15\xbc\x08\x94\x47\x94\xcd\x92\xcb\xbb\x7e\xb5\xc5\xbc\x26\xd3\x78\xfd\x6a\x8b\x9d\xdb\xbd\x3b\x60\x39\x79\xb7\x4b\x70\x64\x11\x51\x38\x29\xb6\x4b\xaa\xc8\x3a\x05\xc7\xb8\xc2\xcb\x51\x54\x7a\x27\x23\x9e\x99\xcc\x0a\x5e\xa7\xb6\x18\x57\x78\xe1\x2e\x97\x9a\x38\x27\xc5\x76\xd9\x0d\x29\xa3\x8c\xc8\xeb\x25\x90\x12\xd6\x29\x38\x96\xff\x3e\x36\xba\x24\xfa\xae\x53\x78\x8c\xcb\x41\x44\x25\x1c\x11\x95\x08\x1d\x97\x4c\x38\x5a\x2a\x23\xf2\x93\x49\xaa\x84\x05\xde\xe2\x99\xfb\x36\xd5\x23\xa2\x12\xd1\x41\xd4\x53\xc2\x3a\x15\xc3\x70\x98\x6b\x9c\xdb\xbb\x8b\xc6\x80\x3f\xbf\xe8\x3b\xc4\xb3\x20\xc0\xdb\x22\x2a\x1e\x39\x27\x4b\x7e\xdb\x9a\x86\xd0\xf6\xbb\x6c\xd4\x4b\xfd\x85\xc8\xce\x5b\xe0\x6d\x81\xb7\x48\xca\x61\x61\x26\x17\x25\x88\x93\x6a\xbb\x78\xfe\x8b\x12\x44\xe4\x27\x2f\x49\x6f\x8b\xc0\x51\x3c\x0b\x82\xdd\x7c\x24\x5c\xa2\x4d\x75\x49\x65\xa3\xe4\x32\xa4\xda\x46\x12\x2e\xf1\x48\xb8\xc4\x4d\xc4\x44\x12\x2e\xf1\x52\xf2\x2b\x6d\xe1\xbd\x78\xed\x0d\x3e\x5e\x7b\x67\x1f\x69\x1f\x95\x8f\x74\x5d\xe2\xd1\x75\x49\x1b\x32\x23\x5d\x97\x78\x74\x5d\x52\xd0\xd0\xf6\xe7\x23\x25\x97\x91\x82\x86\xf6\x06\x1f\x2f\xa5\x16\xd2\xf6\x19\xe2\xb5\x99\xc9\x78\x1d\xd1\xa4\x9d\x23\x1b\xaf\xcd\x4c\x6e\x29\xcf\x7d\x31\xbb\xa8\xf3\x3f\x25\x25\x0d\x6d\xd7\x3d\x5e\xaa\x2a\xa4\x5b\x97\x92\xd6\x13\xd5\xa3\x5b\xeb\xc9\x6b\x26\xaa\x47\xdb\xfb\x8d\xd7\xc6\xb5\x78\xa9\xbc\x98\xb2\x86\x92\x2e\x41\xb2\x94\xdd\x7e\x6b\xfd\xf6\x46\x45\x3f\x6f\x6f\x74\xd3\x71\x2a\xe7\x9f\x73\x5f\x64\x7a\xa4\xc7\x78\x66\xb7\xab\xee\x95\x36\x65\x13\xaf\xac\x75\x65\x65\x52\xd5\xf9\xec\x99\xe0\x2d\x55\xaf\x99\xbd\x26\x78\x4b\x55\x43\x1b\xd7\xe2\x05\xc9\xd2\x6b\x3c\x0b\x15\x54\x65\x65\xd2\xab\xa1\x1d\x2a\x89\x74\x64\x86\x64\xdc\x48\x4e\x26\x5e\xc5\x27\x6e\xde\xbd\xe8\x3c\x55\x99\xd4\xb4\xfe\x18\x3a\x1a\x31\xa9\xeb\xe7\xe3\x76\x1a\x31\x92\x71\x23\x8d\x98\x78\xd5\x23\x2d\x65\x90\xab\xd6\xe1\x53\x9a\x5a\x7f\x4d\x1b\xa5\x16\xd2\xf4\x46\xaf\x51\x22\xf2\x92\x3e\x43\xf7\x1a\x10\xf8\x94\x3e\x0d\xbd\x1a\x7a\x3d\x73\x9d\x67\xfa\x70\x2a\xc8\xc8\xd0\x8d\x57\x33\x97\x9a\xa1\x5b\xde\xa8\x69\x48\x55\x85\x74\x16\x42\x33\xc8\x0a\x28\x10\x9b\x8c\x64\x64\xe2\xc5\x16\xbb\x83\x86\xba\x09\xc6\x16\xbb\x83\xa1\xeb\x3e\x87\x62\x31\xf7\x59\x08\xdd\x92\x19\xe4\xaa\xa2\x7f\x0e\xe3\x09\x97\x24\xe3\xc6\x6b\xf8\x70\xc4\x9d\xee\x64\xe8\x86\xa1\x1b\xba\x74\x16\xc2\xf4\x46\x2c\xac\xfb\xd6\xa5\xe9\x76\x16\x96\x64\xdc\x78\x4d\xb7\x03\xab\xfb\x2c\x84\xe9\xc3\x29\x01\x73\x9f\x85\xf0\xe9\x3c\xb4\xb9\xb3\x2e\x7d\x46\x5e\x09\x18\xc9\xb8\x91\x0a\x4d\xbc\x94\x80\xb9\x8b\xd7\xfc\xbc\xa6\x52\x5a\xf7\x59\x08\x4b\x97\x28\xd4\xdc\x8f\x2e\x2d\xb7\xc3\x25\xc9\xb8\xf1\x5a\xe7\x76\xaf\xb9\xdd\xec\x18\xb6\x53\x12\x8f\x42\xcd\x6d\x21\x84\xed\xba\xc7\x70\x4a\x11\xee\xc3\x41\x31\xc0\xa5\x00\x97\xe4\xdd\x46\xb2\x35\xf1\xc8\xd6\xdc\x9b\x30\x8a\x01\x2e\x05\xb8\x74\x9b\xf3\xb4\x6c\x62\x50\x3b\xf6\xde\x2e\x51\x0c\xd1\xed\x4a\xc0\xc8\xbb\x8d\x21\xba\x5d\x29\xad\x7b\xfb\x49\x31\x6c\x7b\x2b\x12\xb8\x19\xb7\x39\x1f\xb6\x85\x15\x03\x5c\xba\x87\x2e\xc1\x25\xaa\x37\x43\xde\x6d\x0c\xc9\xed\xcc\xae\x7b\x7a\xcd\x6d\x76\xc5\x40\xc3\xea\xb6\x3a\x02\x5c\xa2\x88\x33\xee\x4f\x97\x76\x50\x25\x86\xdb\x28\x59\x08\x61\x13\x8c\x31\x00\xab\x7b\x79\x4d\x60\x15\x54\x7b\xb9\xb7\xde\x54\x0c\xd9\x6b\x2a\xec\x92\x2f\x5d\xca\x5a\xdf\xc4\xc1\x90\x77\x1b\x03\xb0\x22\x9a\x33\x72\xf0\x9a\x1b\xa5\x62\xd8\x34\xc0\xc8\x16\x42\x80\x4b\xf4\x71\x46\x8e\xba\x54\xce\x3f\x09\xaf\x45\x6f\x04\x6d\x28\xe2\x8c\x0c\xfc\x03\xb4\x09\x2c\xac\x7c\x6b\xe8\xf1\x46\x2c\xac\x9d\x8c\xfb\xbf\x0d\x8a\x18\xb6\xf9\x15\xc3\xa9\x53\xb8\x03\xad\x31\x00\xad\x00\xb4\x24\xe5\xc6\xf0\x9c\x5e\x7c\x2e\x7a\x89\xc7\x60\x33\xd4\xb2\x69\x1e\xaa\x5e\x54\x6f\xf6\x18\xad\x6d\x8c\xc5\x50\x09\xc5\x55\xfd\xad\xa6\x24\x61\xab\x7c\x66\x34\xcc\x0b\x6c\xb2\xbc\x65\x49\x63\x78\x3d\x53\x25\x19\xf9\xb7\x31\xbc\x3a\x4f\xd8\x2a\xbf\x46\xeb\xd5\xf9\x66\xb0\xcf\x8c\x86\x64\x81\x22\x5d\x6e\xbe\x55\xf3\xa9\x95\x24\xcc\xc3\xbb\x43\x32\x1a\x41\x43\x02\x6d\xa4\x11\x14\x69\x04\x8d\x3c\xf5\x13\x92\x11\x00\x1a\xf9\x4c\xc9\xee\x35\x89\x65\xe5\xcf\xbb\x0f\xad\xab\x29\x28\xf3\x35\x86\x61\xfa\x70\x20\xcb\xa5\xa1\x61\xfa\x9c\x42\x83\x97\xd7\x1c\xfa\xc9\xec\x2a\x97\xd7\x1c\x1a\x3a\x85\x06\xcf\x44\x9b\xba\x44\x56\xab\x04\xaf\x39\x35\x04\xf3\x4a\xf4\xcf\xcf\x6b\x82\x37\xf9\xac\x31\x7c\x5e\xf3\xd4\x14\xbc\xbd\x26\xcc\x0b\x1c\xc8\x72\xeb\xfc\x67\x90\x69\x6d\x95\xec\x35\x3f\x33\x84\xd8\x64\xc9\x3a\xff\x99\x21\x6c\xb1\x02\x32\xc3\x66\x60\x62\x58\x3a\x5f\x74\x69\x19\x25\xae\x66\x39\x13\x6c\x69\x08\xe6\x95\x1d\x8a\x8f\x04\x8e\x22\x81\xa3\x21\xc9\x35\x46\x56\x5b\x64\xb5\x95\x9d\x11\x15\xc9\x1d\x45\x92\x46\xa3\xec\xa3\x93\x31\x6e\x73\x2d\x46\x40\x58\x76\x28\x3e\xc6\xe0\x99\x04\x2c\x0b\xc8\x8c\xc1\x33\xf9\x9f\x65\xfb\x75\x91\xea\x51\x8c\x4a\xba\x4a\x9c\x8d\x54\x8f\x22\xd5\xa3\x51\x9a\x2e\xb1\xda\xa8\x1e\x8d\xd2\x74\x09\x3a\x12\x3f\x1a\x12\x67\x23\x0d\xa4\x18\x55\xcd\x2a\x9b\xd8\x8c\x71\x87\x9c\x63\x64\xca\xc9\x91\x8d\x84\x91\x62\xdc\xc8\x39\xca\xd0\xd0\x8e\xc2\x44\xfa\x48\xa3\xc0\x51\xfa\x48\x91\x22\xd2\x90\x23\x1b\x09\x23\xc5\xa8\xd0\xa0\x1c\xd9\x18\xd9\x77\xf4\x91\x46\xf9\x74\x69\x87\x66\x22\x99\xa4\x21\x47\x36\xc6\xa4\x75\x42\x9b\x72\x64\x63\x4c\x5a\xe7\xe8\x96\x4f\x3f\xb7\xa3\x1b\x89\x26\x0d\x89\xb3\x31\xde\x1a\xa2\x1a\x58\x96\x7e\x6e\xbb\x30\x46\xaa\x81\x8f\x85\x40\x57\x29\x12\x54\x1a\x12\x67\x63\xbc\x8d\x27\x97\xf8\xb9\x74\x3e\x1b\x4f\xd8\x4c\xae\x2a\x52\x60\x8a\x51\xb9\xed\x27\xe8\xe7\xb6\x20\x23\x3d\xa6\xf1\x58\x1d\x11\x36\x47\xa2\x83\xb2\x69\x63\xcc\x5a\x57\x9e\xeb\x61\x8f\xc4\xac\x75\x3a\x9d\x4f\xd4\x7a\xf1\x46\x50\x9c\x2e\x56\x8c\x50\x9c\x48\xd3\x78\x60\x73\x84\xe2\x24\x9b\xc6\xb3\x95\xe8\x22\xc9\xa6\x48\xb2\x69\x48\x87\x8d\x24\x9b\x22\xc9\xa6\xf1\xb0\xac\x49\x36\xc5\xa8\x5a\xf7\x63\xc9\x50\x67\x8a\x51\xed\xd8\xa7\x78\xa3\x6a\x40\x10\x70\xd2\x61\x23\xad\xa6\x18\x01\xf5\xf3\xe8\x7c\xf5\x89\x99\x9c\x8a\x1c\xc4\xf8\xea\x92\xfa\x84\x52\x57\x23\x75\xa6\x18\x21\xed\x73\xe6\xe7\xab\x75\x86\xe4\x33\x2c\x2e\x86\x64\x64\x48\x3e\x67\x7e\x36\xb7\xab\x08\x2b\x4b\x35\x12\x5b\x8a\xb1\xfb\xe7\xd4\x50\xf7\xee\x1c\xdc\xe7\xd3\x50\xb7\x8a\x39\xb8\x0f\x2f\x8d\xd8\x52\xa4\xa0\x34\x9e\x33\xeb\x86\xd6\x8f\x20\xe8\xd2\x3a\xf3\x30\xd2\x2a\xac\x2c\xd6\x38\x4c\x5a\x36\x63\xdd\xa2\xad\x31\xb2\x19\x23\x50\xad\x67\x86\x4c\x5d\xc2\xdf\x51\xd9\x8e\x71\xfa\x1c\xca\x57\xd7\x33\x43\xa6\x37\x42\xd5\xd5\x64\x40\xd4\x6b\xa0\x99\x34\xea\x99\x21\xea\x35\x44\xb2\xbe\x35\xe9\xbc\x7a\x0d\x34\x93\x46\xdd\x8a\x9e\x91\x58\x52\x8c\x64\x7d\xeb\x6d\x7a\x9f\x7a\x0d\xac\x4b\x09\xa9\x31\xb2\x2e\x23\xa4\xad\xd9\x28\x41\x5a\x42\x4a\xa3\x9e\xb9\xb4\x7c\x77\xa0\x5a\x37\x2f\x16\x89\x25\x45\x62\x49\x43\xee\x69\x4c\x1b\x62\x23\xcd\xa4\x51\x9f\x3f\x4f\x79\xc4\xc4\x4f\x26\xa8\x34\xea\xce\x88\x8a\x24\x94\x22\xed\xa4\x41\x69\x3c\xa6\x8d\xbf\x31\x61\xfc\x24\xa6\x46\xba\x4a\x31\x91\x3a\xad\x60\x98\xae\x52\xa4\x9d\x34\x2a\xc7\x8c\x84\x52\xa4\x9d\x34\x2a\xc4\x4d\xec\x51\x4a\x4a\xa3\x42\x5c\x4a\x4a\x31\xed\xf8\xd2\xa8\x9b\x5e\x8b\x29\x7a\x26\x7b\x54\x62\x6a\x4c\x9b\xff\x8b\xb4\x93\x46\xe5\xad\x91\x50\x8a\x09\x0d\x28\x5b\x35\xa6\x8d\xaa\x31\x71\x9e\xeb\x70\x3b\xe7\x39\x81\xcc\x3a\xb4\xbe\xb1\x32\x92\x49\x1a\x75\xea\x27\x3f\x39\x31\x52\x25\xa4\xc6\xc4\x48\x4d\x20\xb3\x9a\xfb\x74\x95\x62\x3a\x85\x5a\xcd\xfd\xc4\x1e\xa5\x8f\x34\x2a\x17\x2e\x65\xb7\x73\x9e\xe5\x9e\xc6\x04\x08\x13\x20\x7c\x2f\xef\xce\x79\x4e\x30\x4f\xee\x69\x4c\xe0\x8d\x3e\xd2\x78\xb9\x70\xf4\x91\x22\x7d\xa4\x21\xf7\x34\xa6\xed\x4a\xc7\x44\x7d\xf5\x45\x5b\x10\x4d\x8a\x14\x91\xc6\x6b\x95\x90\x42\x8a\x89\xd0\xea\xcb\x85\x4b\x8f\xdb\x9f\xa3\x66\xab\xf3\x8f\xdb\xc1\xdb\x8b\xb6\x20\x9a\x14\xc9\x24\x8d\xd7\x2a\xa1\x96\x14\x13\xe7\xf9\xe5\xc2\xa5\xea\x76\x26\xa7\xdc\xd3\x98\xea\xb9\xbd\xbb\x68\x3c\xd9\xa1\xe9\x94\x5f\xb5\x4a\xd2\x6b\xe8\xc0\xdb\xcb\x85\x23\xaf\x14\x13\x8f\x5a\xee\x69\x4c\x3c\xea\xa4\x4e\xe1\xfb\x78\xcd\xe6\x35\x4f\xf9\xd5\x47\x43\xcd\x04\x43\xee\xbd\x5c\x38\x62\x4b\x31\x9d\xf2\xab\x55\xe7\xbb\x09\x06\x08\x5f\xb4\x05\xcd\xa5\x98\x4e\xf9\xd5\xd7\x33\xbb\x67\x9e\x4a\xab\xef\x72\xd1\x42\x38\x95\x56\x9b\xce\x0f\x5d\x12\xb3\x78\x31\x14\x89\x1d\x9a\x58\x97\xef\x59\x1d\x0c\xc9\xb4\xa1\x6f\xbc\x5c\xb8\x34\x0d\x32\x2d\x72\xb9\xa7\x31\xb1\x2e\x13\xeb\xf2\x1d\xba\xc4\xa3\x26\xbd\x34\xde\x61\xbd\x4f\x5d\x02\x84\xef\x99\xc9\x4c\xce\x04\x08\xdf\x33\x93\x59\x97\x09\xe6\xbd\x3b\x3d\x2a\xa6\xcf\xd7\xe4\x66\xbf\x50\x9c\x3a\x53\xa4\xce\x34\x5e\x64\x04\x75\xa6\x98\x18\x92\xed\x4c\xef\xe5\x99\x0c\xc9\xc6\x31\x4b\x30\x8f\x3a\xd3\x90\xba\x1a\x09\x31\x45\x42\x4c\x43\x96\x6a\x24\xc4\x14\x6f\x86\x64\xdb\xba\xcc\x91\x10\x53\x24\xbd\x34\x1a\x56\xee\xde\x66\x65\xbc\x09\xc1\x36\xd3\xfb\x86\x75\xd4\x99\x46\xc3\x50\x50\x67\x8a\x44\x93\x46\xc3\x50\x10\x4d\x8a\xb7\x8a\xff\xed\x76\xfb\x46\xa9\x78\x33\xfa\x1a\xde\xe1\x8e\x1a\x12\x9e\x68\xf9\xdc\xae\x21\x96\xa0\xcc\xd7\x78\x47\x0d\x31\xfa\x1a\xd7\xed\x66\xf4\xd1\x5c\x1a\x0d\xde\xd3\x5c\x8a\x34\x97\x46\x43\x46\xd0\x5c\x8a\xe4\x95\x46\x33\xbd\x6f\xa6\xdc\x0d\xc1\x1a\x56\xee\x86\x60\x34\x97\x46\x33\xbd\x69\x2e\x45\x9a\x4b\xa3\xa1\xea\x68\x2e\x45\x9a\x4b\xa3\x61\x28\x68\x2e\x45\x9a\x4b\xa3\x99\xf3\x34\x97\x22\xcd\xa5\xd1\x38\x79\x34\x97\x22\xcd\xa5\xd1\x80\x3f\xcd\xa5\x48\x65\x69\x28\xdb\x10\x6f\xf4\xdf\x7d\xa4\xa2\xcd\xf9\xbb\xe8\x12\x52\xaf\x61\xe5\xe8\x2a\x45\x9a\x49\xa3\x21\x23\xee\x62\xe8\x90\x7a\x6d\xd7\x66\x8c\x14\x94\xe2\xcd\xa3\x56\xf5\x21\xde\x9c\xe6\x9b\xd3\x2c\x1d\x36\x12\x59\x8a\xd4\x95\x46\x43\x46\xdc\x9c\xe6\x9b\x2d\x26\x47\x36\xde\x55\x97\xc4\x2c\x1a\xaa\x8e\x82\x52\xbc\xc5\x2c\x1a\x48\xbf\xeb\xb9\xdd\xe7\xe0\x38\xde\x55\x3f\xd5\x8a\x6e\x16\xc2\x8d\xfe\xa3\x99\x34\x3a\x48\x27\x9d\x14\x69\x26\x0d\x99\xaf\x91\x74\x52\xa4\x99\x34\x3a\x32\xe2\x6e\xba\xa4\x54\x6a\x0f\xe7\xf6\xbd\x3a\x28\x28\x8d\xbe\xd5\x1a\x22\x05\xa5\x48\x41\x69\xf4\x33\xe7\x19\x68\xb7\x58\x6a\x3f\xd3\xbb\xeb\x27\x52\xaf\x73\x31\x6f\x5e\x2f\x09\xa4\xd1\xef\xf9\xa7\x41\x41\x18\x29\xde\x6a\x9e\xf6\x2d\x3f\x1d\xef\x69\x4a\x82\xa2\xce\xab\xbc\x39\xba\xa4\x90\x86\x5c\xd9\x78\x4f\x33\x7a\x73\x7c\xa3\x63\x28\x08\x23\xc5\x9b\xd2\x74\x3f\x73\x9f\xf7\x4b\xf5\x68\x74\x5e\x25\xd5\xa3\x48\xf5\x68\xf4\x33\xcd\xbf\x73\xbb\xd1\x42\x5b\xdc\xa0\xe8\x06\x45\xfd\x4c\x73\x50\x74\x83\xa2\xce\x9c\xb9\x41\xd1\x0d\x8a\x24\xd0\xc6\x7b\x9d\xdb\xbd\x26\xda\x82\x92\x52\xa4\xa4\x34\xba\x69\x4e\x49\x29\xe6\x53\x09\x7a\x6b\x13\xc7\x0c\x9f\xe8\x23\x8d\xce\xab\xa4\x8f\x14\xe9\x23\x0d\x59\xb5\x91\x3e\x52\xcc\x18\xbf\xce\xab\xcc\xcc\x2e\xfa\x48\xa3\x5b\x10\x84\x91\x62\x16\x74\xe8\xbc\x4a\x1a\x48\x31\x0b\x3a\x74\xec\x1c\x29\xa4\x48\x0a\x69\x74\x5e\x25\x29\xa4\x98\x81\x56\xb7\x20\x32\x4f\x95\xce\xd1\xe8\xbb\x2a\x6e\xcc\x8c\xa9\xcc\x98\xea\xd8\xb9\xcc\x98\x22\x85\x34\x3a\x76\x2e\xc3\xa7\x0c\x9f\xba\x05\x41\x0a\x29\xd2\x39\x1a\xe3\x32\x20\x1b\x83\x62\x3e\xf5\x9d\x6d\x02\x99\xff\x99\x4f\x7d\x67\xa4\x49\xc6\xf8\xe5\x53\xca\xd9\x82\x20\x85\x14\xf3\x29\xe5\xbc\x05\x61\x23\x29\xa4\x98\x31\x7e\xc3\x26\x40\x0a\x29\x66\xbe\xe2\xc0\xce\xe5\xe2\x1b\x61\xfc\xc6\x2e\x5d\x11\xa9\x25\x45\x32\x49\x63\x88\xc2\x64\xf8\x94\x85\x27\x06\x7a\x25\x0b\x4f\x90\x49\x1a\x03\x23\x9d\x19\x53\x59\x0a\xc6\xd8\x4a\x10\x31\xf3\x15\x33\x5f\x51\xe2\x6c\x24\x9a\x14\xe9\x23\x0d\x89\xb3\x91\x14\x52\xcc\xa0\x68\x70\x0b\x33\x28\xca\x68\xb5\x81\x34\xc9\x68\x35\x42\x45\x63\xbc\x9e\x29\x6a\x40\xa8\x68\x0c\xd8\x9c\x01\x4c\x06\x30\x03\x01\x97\x01\x0c\xf5\xa2\x31\xcc\xe4\x8c\x6b\xcb\xaa\x3f\x8c\x5d\x2b\x21\xd2\x32\x8a\xb4\x8c\x86\xc4\xd9\x48\xcb\x28\xd2\x32\x1a\x83\x61\x4e\xcb\x28\x66\x1e\xe0\x38\x93\x96\x35\x94\x59\x43\x83\xe9\x91\x59\x43\x04\x8e\xc6\xc0\xdf\x11\x38\x8a\x04\x8e\xc6\x40\x85\x10\x38\x8a\x59\x28\x61\x9c\x49\x8b\x6b\xcb\xdc\xc2\x81\xf5\xc8\xd0\x86\xc0\xd1\x90\x0e\x1b\x09\x1c\x45\x92\x46\x63\x20\x38\x28\x1b\xc5\xcc\x2d\x1c\x67\xd2\xb2\x86\xa8\x17\x8d\x89\xe0\x20\x62\x14\xa9\x17\x0d\xb5\x7b\x22\x11\xa3\x98\x41\xd0\xc4\xf4\xd1\x32\x8a\x64\x8b\xc6\x3c\x93\x96\x5f\x97\x97\xdb\x79\xaa\x79\xb9\x9d\xb3\x27\x71\x36\xe6\xe5\x76\x10\x34\xd1\x16\x19\x04\x91\x2d\x1a\xb2\x69\x23\x85\xa2\x58\x54\x7b\x99\x3c\xd5\xb2\x2d\x9e\x58\xd8\x38\x12\x67\x63\x61\xe3\x14\xd9\x16\x13\x51\x48\x70\x28\x92\x08\x1a\x34\x89\x23\xa5\xa0\x48\x22\x68\x48\x9c\x8d\x05\x5c\x10\x0c\x1a\x13\x97\x41\x30\x28\x16\x70\x31\xcb\xb9\x7d\x23\x18\x6d\xa0\x31\x39\xa5\xb4\x81\x62\x01\x17\x12\x67\x23\xa5\xa0\x58\xc0\xc5\x34\x93\x0b\xb8\x28\xe0\x62\x22\x9d\x0b\xb8\xa0\x1b\x34\x26\xbf\xb3\x30\x52\x0a\x23\x45\xd9\xa3\x58\x18\x29\x05\x5d\x35\xd1\x7f\x84\x86\x62\x11\xb8\x9c\xe6\x3c\x69\xa1\x58\xc4\x28\x27\x67\xb4\x70\xb3\x0a\x23\x45\x8a\x6d\x2c\x8c\x94\xa2\x04\x8c\x14\xdb\x48\x68\x28\x16\xc8\x30\xcd\x79\x9a\x42\xb1\xc8\xc3\x9a\xfc\x4e\xf2\x41\xb1\x9c\x72\xf0\x30\x99\x8a\x50\x2c\x8f\x91\x47\xaf\x14\xd4\x52\x39\xe5\xe0\xcd\x79\x82\x41\xb1\x20\xf1\x27\xbf\x93\x7c\x50\x2c\xdc\x2c\xd9\xb4\xb1\x54\xb7\x2b\x59\x31\xd1\x2b\xa5\x1a\x79\x6e\xd6\x34\xe7\xc9\x07\x45\x12\x41\x63\xf2\x3b\xcb\xf6\xaf\x62\x39\xe5\xe0\xf1\x77\x04\x83\x62\x91\xc6\xf5\x31\x52\x0a\x66\xbf\x9c\x72\xf0\xe6\x7c\xe1\x51\x91\x08\x1a\x1f\xbf\x93\x52\x50\x24\x11\x34\x3e\x54\x5d\x69\x3e\xf1\xa9\xfc\x1e\xff\x66\x28\x0a\x28\x2a\xa7\x2c\x7c\x3c\xcf\xf6\x12\xbc\xb5\xef\x2c\x08\x8e\x59\x39\x15\xe0\x79\xaa\x04\x87\x22\xa5\xa1\x21\x29\x37\x12\x1c\x8a\xa5\x7b\xe6\x59\x25\x62\x01\x85\x0f\xf6\x9d\x55\x22\xaa\x49\x38\x68\x7c\x3c\x55\xc2\x41\xb1\x60\xa8\x3e\x34\x60\x19\xe6\xbe\x64\xb2\x0f\x75\x53\x86\x6f\xc5\x31\xfb\x76\x15\x9d\x48\x5b\x28\x12\x15\x1a\x1f\x68\xa7\x2d\x14\x89\x0a\x8d\x0f\xe3\x47\x5b\x28\x16\x3e\xd8\x77\x56\x09\x28\x2a\xbf\x12\x1b\x5a\x87\x3a\xe5\x94\xd8\xb0\x09\x50\x13\x8a\xd4\x84\xc6\xc7\x29\xa5\x26\x14\xa9\x09\x8d\xef\xac\x12\x86\x4f\x81\x4f\x1f\xa7\xb4\x08\x75\x16\x29\x18\x1f\x6a\x91\xe0\x50\x24\x31\x34\x3e\xec\x0c\x89\xa1\x48\x4d\x68\x48\xf4\x8d\xd4\x84\xe2\x83\xf6\x97\xe8\x1b\x1f\x7c\x13\x51\xa1\xa1\x8a\x67\x7c\x58\x43\x0f\x6f\x8d\x32\x72\x7c\x78\x6b\x94\x86\xc6\x37\xce\xed\x7b\x90\x09\x00\x8d\x0f\x65\xf3\x60\xe3\x1f\xde\xda\x67\x13\x78\x78\x6b\x0f\x6f\xed\xe3\xbe\x3e\xbc\xb5\x27\xfa\x46\x56\x09\x71\xa0\x48\x15\x68\xc8\xe5\x8d\xc4\x81\x22\x55\xa0\xb1\x2e\x5d\x4a\xfa\x89\x4e\x5f\x16\xc4\x23\x80\x49\x23\x68\x2c\x9e\x2a\x71\xa0\x48\x15\x68\x2c\x78\x4f\x1c\x28\x52\x05\x1a\x0b\xe7\xf2\x30\x7c\x1e\x74\xba\x04\xdf\x48\x23\x28\xd2\x08\x1a\x8b\x91\x42\x23\x28\xd2\x08\x1a\xb2\x7e\x23\x8d\xa0\x48\x15\x68\x2c\x9c\xcb\xc3\xc6\x79\x36\x45\x34\x96\xe9\xfd\x6c\xe3\x26\x92\x03\x1a\x8b\xfb\xfa\xb0\x5c\xa8\x02\x0d\x59\xbf\xf1\x91\x58\xf1\xf0\xc1\x16\x4f\xf5\x41\x92\x3f\xcc\x19\xa9\xc0\xf1\x79\x74\x49\x54\x53\xfd\xd4\x48\x23\x28\x3e\xb8\xa1\x65\x13\x78\x70\x43\x84\x83\xc6\xc2\xb9\x10\x0e\x8a\x0f\x1b\x47\x7e\x70\x7c\xaa\x37\x42\x03\x2d\x4e\xe9\x03\xb4\x08\x07\x8d\x65\x13\x20\x1c\x14\x1f\xe1\xc8\xf5\x7a\x4d\xe1\x48\xc2\x41\x43\x26\x71\x7c\x98\x48\x0f\x13\x69\x71\x4a\x1f\x26\xd2\xc3\x44\x5a\x36\x01\xda\x42\xf1\x91\x22\x26\xbd\x38\x3e\xf8\xf0\x07\x1f\xbe\xcc\x79\x32\x42\xf1\x41\x03\x2d\xe4\x23\xc5\xa0\xf8\x74\x73\xc9\x26\x40\x38\x28\x3e\xac\xa1\x75\x66\x32\x3e\x9c\x2a\xd0\x58\x67\x26\xe3\xc3\xa9\x02\x8d\xc5\x53\x7d\xe4\x50\x3c\x0c\x1f\x99\xc4\xf1\xe1\x66\x3d\x70\x69\xa1\x6c\xc8\x08\xc5\x87\xe1\xb3\xce\x9c\x47\x03\xd1\x08\x1a\x8b\xa7\x4a\x23\x28\x3e\x68\xa0\x65\x13\x78\xe6\xb9\x7d\xec\xfa\x35\xd8\x99\x07\x49\xfe\x6c\x6b\x68\x5e\x67\x21\x80\xa0\x67\x5b\x43\x93\x08\x72\x7c\x58\x43\xcf\x46\x9b\xa9\xe0\x71\x7c\xa0\x0d\x15\xa1\x79\xd9\x19\xa8\x08\x45\x2a\x42\xf3\xc2\xe3\x50\x11\x8a\x8f\xda\x28\xd7\x59\x1d\xd0\xe6\xd9\x8e\xd5\x54\x6e\x39\x56\xf1\xc4\xaa\x60\xca\x85\x7c\xac\xac\xa1\xaa\x36\x8a\x8c\xe7\x58\x19\x3e\x75\x3b\x4f\xf3\x42\x3e\x56\xce\x53\x0d\xde\x08\xa4\xd7\x1d\x33\x8c\x54\x84\xe6\xc5\x1a\xa2\x22\x14\xeb\x29\xfd\x63\x21\xd0\x06\x8a\x55\xf1\xf4\x8b\xdb\x5a\x71\xd6\x75\x23\xd1\xa4\x73\x1c\x2b\x13\x89\x8a\xd0\x94\x06\x1d\x2b\x6e\x88\x8a\xd0\xbc\xf6\x31\x8d\x48\x30\x28\x12\x0c\x9a\x17\xb7\x95\x60\x50\xac\xc9\x20\x73\x5b\x2b\x1a\xa8\x26\xa3\x04\xfc\x2b\xbb\xa9\xaa\x31\x74\x61\x67\x48\x0b\x45\x62\x42\xf3\xb2\x3a\x2a\x08\xaa\xb7\x51\xe2\xcb\x56\x1e\x55\x55\x27\x5d\x21\xc4\x58\x6f\x43\x77\x7b\x77\xec\x4c\x85\x4b\x55\x9d\xf4\xcb\xea\xa8\x20\xa8\xaa\x93\xae\x3a\x62\x24\x57\x14\xc9\x15\x4d\xd5\x11\x23\xb9\xa2\x48\xae\x68\x5e\x70\xbe\x22\xb2\xc9\x15\xcd\x8b\x5b\x50\x11\xd9\xe4\x8a\xe6\xc5\x6d\xa5\x53\x14\x09\x14\x4d\x99\xd9\x91\x4e\x51\xac\xaa\x11\xed\xcc\xec\x3f\x0c\x8a\xca\x07\xab\x8f\xcf\xc2\x7d\xad\x40\x8b\x96\xd1\xbc\x70\x98\xb4\x8c\x62\x7d\xbc\x04\xea\xa6\x02\x2d\x5a\x46\x33\x58\x25\x64\x8b\x62\xdd\xa0\x35\x83\x05\x41\xc4\x28\x92\x2d\x9a\x81\xa7\x5a\xe1\x53\xdd\x90\x32\x43\xf0\xba\xf8\x9c\xba\x2d\xa6\x19\xe0\x3d\x15\xa2\x48\x7e\x68\x06\x2c\x4d\x45\x53\xd7\x6d\xff\x4c\x45\x9f\x23\x31\xa2\x58\xd5\x44\x0a\x3c\x55\xd2\x44\x91\x26\xd1\x0c\xf0\xbe\x62\x7e\xaa\x9a\x48\x01\x5d\x49\xaf\x28\x52\x28\x9a\xe1\xcc\x7d\x3e\x58\x1d\x9e\xc9\x53\xad\xac\x21\x62\x44\x53\x86\x76\xac\xf0\xa9\x0e\xfd\xc4\xce\x50\x28\x8a\xe4\x87\x66\xc0\x4c\x52\x21\x8a\x75\xba\x1d\x33\x59\x31\xd2\xc4\x88\xa6\xb4\xed\x48\x8c\x28\x12\x23\x9a\x01\x3b\x43\x8c\x28\x92\x1f\x9a\xe1\x4c\x73\xa1\x39\xf2\x43\x33\xc0\x7b\xba\x43\xb1\x82\xa2\xc0\xfb\xa5\x42\x14\x2b\x28\x0a\x36\x81\x0a\x8a\x68\x12\xcd\x80\xb2\xa9\xcb\xbb\x2f\xfd\x3c\x73\x5f\x6a\x43\x5d\x46\x1e\xde\x13\x1c\x8a\x75\xb9\x1d\x11\xf3\x32\x7c\x5e\xb5\x9b\x08\x2b\x47\x82\x43\x91\xa8\xd0\x0c\x1c\x5d\xda\x42\x91\x2a\xd0\x0c\x7c\xda\x17\x96\xbc\xd1\x37\xe2\xbe\xbe\x2c\x97\x77\xf3\xcc\x53\xda\x76\x7c\x61\xc9\x1b\xbd\xe6\x3a\xb7\xef\xd7\xa4\x1f\x34\x83\x49\xfb\xa2\x94\xa9\x09\xcd\xc8\x7d\xa5\x26\x14\xa9\x09\x4d\x69\xdb\xf1\x4d\xe7\xf6\xcf\x45\x9d\x67\xe3\xbc\xea\x95\x45\x7c\x23\x35\xa1\xf8\x42\x88\xc8\x7d\x7d\x21\xc4\xbb\x89\xe2\x19\x01\x36\x6d\xa1\xf8\x6e\x1f\x6c\x46\x1c\xfb\x8b\xb2\xa1\x1f\x34\xe3\xae\x21\x1a\x5f\x3e\xd8\x9b\xdd\x8e\x84\xa4\x11\x14\x69\x04\x4d\x69\xdb\xf1\x2d\x46\x69\x93\x34\x33\xe2\x5c\x08\x07\xc5\xf7\x54\x36\x33\xbd\x29\x06\xc5\xf7\x57\xd9\xcc\x1b\x31\x67\xde\xed\x83\xcd\xc8\xd1\x25\x1c\x14\xdf\x1d\xde\x9f\xd2\xb5\xe3\x0b\x2e\xde\x6d\xea\xcc\x08\xda\x5f\xe1\x7d\x52\x41\x33\x9a\xf3\x14\x83\x22\x55\xa0\x19\x39\xba\xc4\x81\xe2\x5b\xdd\x0e\xda\x69\x04\x45\x1a\x41\x33\x82\x76\x1a\x41\xf1\xad\xc6\xd3\x9c\x27\x0e\x14\xdf\xd7\xc8\x73\x74\xdf\x6d\xdc\x44\x1a\x41\x53\xba\x76\xa4\x11\x14\x69\x04\xcd\x88\xc7\xa1\x11\x14\x5f\xc5\xd6\xa2\xe9\xfd\x32\x67\xde\x66\x40\x38\xba\x6f\x3b\xff\x1c\x2e\x7a\x23\xc0\xf2\x76\xa3\x74\x66\x32\x1b\xe7\x05\x2c\x91\x4f\xfb\x02\x16\xc2\x41\x33\x9e\xe9\x0d\x58\xe8\x07\x4d\x39\xdc\xf1\xed\x3e\x71\xd7\xd0\x99\xf3\xdd\xd0\x75\xdf\x1d\xf9\x48\x5b\x28\x12\x0c\x9a\x11\x1b\xff\x82\xa0\x77\x78\x4d\xde\xef\xcb\xf0\xa1\x1b\x34\x23\x48\x7f\x39\x64\xef\x30\x93\x91\x3b\x2f\x87\x8c\x60\xd0\x8c\x67\xc9\x70\xc8\xde\x0d\x3a\x33\xf1\x7e\x89\x02\x45\x32\x40\x33\xc9\x38\x78\x3f\xdf\x68\x7b\x5b\xf3\x64\x7b\xbf\x62\xfe\xef\xf6\xb6\x66\xe2\x8c\xbe\x52\xae\xde\x6d\xd5\xcc\x74\xe6\xbc\x9c\x29\x32\x40\x33\x71\x46\xc9\x00\xc5\x97\xe1\x93\xce\x9c\x47\x03\x51\x03\x9a\x27\x05\xfc\x45\x03\xbd\x20\x28\x21\x1f\x5f\x10\x44\x30\x68\x9e\xbc\xf0\x06\x82\xda\xa5\xf3\xf2\x04\xc9\x07\x45\x82\x41\x33\x71\x5b\x09\x06\x45\x82\x41\x33\x59\x08\x04\x83\x62\x8b\xfa\x89\xf1\x21\xee\x13\x1b\x5c\x3a\xd9\xde\x0d\x2e\x35\xb8\x94\xea\xf9\xe7\xee\x27\x39\x9f\x99\x4c\x6f\xaa\x3e\xb1\xa9\x8e\x98\x78\xa8\x8d\x9b\xd5\xb6\x55\x33\x4f\xb6\x77\xe3\x66\xd1\xf8\x99\x09\x65\x43\xea\x27\xb6\xe4\x35\x4d\x6f\xaa\x3e\xb1\x6d\xab\x66\x26\x1e\x6a\xe3\x51\xb5\x5b\x3f\xd1\x94\x0d\x37\x44\xb9\x67\x26\xd3\xbb\x09\x60\x51\xee\x99\x49\xf2\x0b\x01\x9f\xd8\xb2\xd6\xff\x99\xc9\x7f\x18\x14\x8d\xbb\xd5\x54\x5e\x4c\xa8\x9b\xc6\x00\x6a\x40\x2b\x99\xe6\x44\x7e\x22\x91\x9f\x99\x78\xaa\xad\x9c\x7f\xfa\xaa\x58\x1a\xca\x3f\xb1\xa9\xa7\x98\x4c\xde\x26\xba\xd5\x36\x47\x34\x6f\x9e\x6a\xc3\x11\xb5\x6d\xab\xcc\x1b\xb4\x53\xfe\x89\xb4\x7e\xe6\x8d\xa5\x69\x9b\x46\x8a\x0d\x14\xd1\x65\x8e\x0d\xea\xb4\x6d\xab\xcc\x9b\xa7\xda\x04\xb2\xda\x29\xc7\xc8\x29\x25\xe4\x13\x29\xf8\xcc\x93\xa1\x4d\xc8\x27\x36\xb0\x71\xdf\xe7\x9f\x6e\x3f\x35\x1a\xcd\x53\xf2\x3c\xb1\x9d\xca\x8b\x5c\xcd\x86\x73\x69\x5d\x3f\xcf\xec\xc3\x09\x37\x60\x70\x9f\xd9\x07\x0c\x48\xf0\xcc\x1b\xdf\xd8\x58\x19\xb4\x77\xe6\xcd\xd5\x6c\x96\x78\xdb\x2c\xf0\x3c\x19\xda\x8d\xe9\xd1\x36\x0b\x3c\x6f\x4c\x4a\xe3\x1a\xd1\xe5\x99\xb7\x74\xc3\xc6\x0b\x22\xc8\x33\x6f\xae\x26\x41\x9e\x48\x90\x67\x9e\x0c\x6d\x82\x3c\x91\x20\xcf\xbc\x31\x29\x04\x79\x22\x41\x9e\x79\x9f\xc9\x2b\xd5\x92\x20\xcf\xbc\xb9\x9a\x04\x79\x62\x5b\x6e\x07\xc3\xe4\x79\x62\x03\x06\x37\x26\x85\x3c\x4f\x6c\xbc\xa0\x1b\x93\x42\x90\x27\x76\x56\xc6\xcd\xd5\xec\x98\x94\x6e\x89\x9f\x0c\x6d\xf2\x3c\x91\x20\xcf\xbc\xf1\x8d\x04\x79\x62\x0f\xba\x64\xd2\x76\xb9\x92\x3d\x98\x4b\x5c\xcd\x2e\xae\x44\x90\x67\x9e\x0c\x6d\x82\x3c\x91\x20\xcf\xbc\x31\x29\x04\x79\x62\x07\x1b\xb7\x99\xdc\x21\x44\x8f\x3e\x31\x57\xb3\x8b\x2b\x11\xe4\x99\x27\x43\xbb\x6f\xbc\x88\x7d\x03\xc5\xcc\xe8\x95\x2e\xbd\xbc\x6f\x03\x66\x66\x33\x99\x66\x4f\xec\xbc\xa0\x93\xb6\xdd\x99\x33\x74\x79\x66\xe6\x6a\x76\xc1\xf0\xce\x0b\x3a\x69\xdb\x1d\x3b\xd3\xc1\x46\x36\xbd\x09\xf9\xc4\xce\x0b\xca\x88\x77\x9a\x3d\xb1\x6f\x5b\x65\x66\x94\x62\x47\xc4\xf4\x4d\xc4\xcc\x0c\xc5\x3b\x2f\xa8\x33\x67\x4e\x82\x37\x21\x9f\xd8\x39\x3c\xd9\xea\xe8\xcc\x99\xce\xe1\xc9\xfc\x4f\xd2\x3d\xb1\x17\xcf\x84\xcd\x1d\xa5\xdc\x79\x41\x19\xe7\xd2\x21\x43\x2f\x9e\x89\x3d\xec\x82\xe1\x9d\x39\xa3\xd8\x77\x24\xf9\x13\x3b\xb8\xc8\xe6\x3c\x21\x9f\xd8\x21\x43\x06\xc3\x1d\x32\xf4\xea\x76\x46\x74\x47\x29\xd3\xf3\x99\xd9\xf4\x26\xdd\x13\x89\xf5\xcc\xcc\x57\xec\x42\xdc\xb4\x73\x66\xe6\x16\xf6\x66\x90\xb9\x2f\x44\x90\x23\xb5\x9c\xd8\x37\x6a\xcc\x0c\x71\x89\xe6\xc4\x0e\x43\xf2\x38\xb7\x7b\xcd\xa6\xa1\xb9\xd7\x26\xd1\x9c\x48\x34\x67\x66\x1e\x20\xd1\x9c\x48\x34\x67\x9e\x1c\xee\x8e\x73\xe9\x1b\x74\xa6\x42\xe7\xb1\xe3\x82\x3b\xb4\xc9\x67\xd2\x8a\x7b\x77\x56\x46\xe6\xf9\x51\xd2\x89\x94\x74\xe6\xc9\xf6\xa6\xa4\x13\x29\xe9\xcc\x82\x0a\xa1\xa4\x13\xfb\x36\x36\x66\x39\x93\x16\x04\xf5\xe9\x76\x9c\x20\xd1\x9c\xd8\x79\x3f\x27\xdb\xbb\xf3\x7e\x28\xe9\xcc\x93\xed\x4d\x49\x27\x52\xd2\x99\xe5\xcc\x4f\xf1\x6e\xda\x39\xb3\xf0\x11\xfb\x77\xfe\xb9\x27\xed\xc9\x0b\xef\x72\xb8\x29\xe9\xcc\xc2\xf3\xeb\xcb\xed\x1b\x74\x66\x39\xb3\x0e\xed\xdb\x4f\x91\x5a\x98\x4c\x5e\x27\xf6\x53\xa4\x16\xeb\x41\x6c\x27\xf6\x6d\x81\xcc\x72\xa6\x22\x97\x88\xf4\xce\x3c\x79\xe1\x14\x78\x62\x67\x8f\x14\x3e\x22\x21\x9e\x38\xd8\x23\x65\x97\x7c\x8a\x63\x87\xc4\x23\x75\x9e\x79\x92\xc5\x07\x23\x85\x48\xcf\x2c\x88\x42\x5a\x3d\x91\xe6\xce\x2c\xa6\xf7\x70\x16\x66\x04\xb7\x73\x1c\xc9\xeb\x44\xf2\x3a\xf3\x24\x8b\x93\xd7\x89\xe4\x75\x66\x41\x85\x90\xd7\x89\x23\x1a\x64\x73\x9e\xae\x4e\x1c\x1b\xb3\x66\xe1\x23\x0e\xb9\x87\x43\xb1\xe7\x93\x2c\x4e\x6c\x27\x52\xd9\x99\x27\x59\x9c\xd8\x4e\x1c\x6c\x9c\x82\x28\x24\xaf\x13\x07\x37\xab\xf4\x3f\x75\x28\xe2\xe0\x83\x8d\x64\x5c\x41\xfb\x90\xb6\x3d\xc0\x5b\xc1\x22\x0e\x69\x3d\x03\x92\x15\x84\xe1\x80\x64\xe3\x36\xd1\xac\x12\xf2\x3c\x91\x2e\xcf\x3c\x49\xe3\x83\x55\x44\x97\x67\x16\x2c\x22\x79\x9e\x38\x94\x9c\x2e\x96\xce\x80\x79\x03\xc9\x53\xf8\x9f\x83\xb7\x36\xb2\xdb\x41\xfb\xc8\xe7\xf6\xdd\xf9\x07\x3f\x42\xc8\x27\x8e\x8d\x72\xf3\xb1\x74\x06\x78\x1b\xdb\xfe\x99\x0f\xff\x73\xe0\x73\x46\x71\x3b\x14\x1f\xe5\xdc\xbe\x5c\x34\xd8\x02\xec\x03\x8f\xf3\x58\x3a\x83\x35\x44\xac\x67\x3e\xfc\xcf\x21\x62\x36\xc0\xdb\x03\xc5\x87\xc4\x44\x62\x3d\xf3\x41\x18\x0e\xf0\x46\xa5\x67\x3e\x5c\x4d\x2a\x3d\x91\x4a\xcf\x7c\xac\x27\x2a\x3d\x71\xbc\x9e\x69\x3d\x0d\xc9\xd8\x63\x87\xd1\xe6\xc9\x0f\x27\xdd\x13\x49\xf7\xcc\x87\x57\x49\xba\x27\x0e\xde\xda\x49\x05\x27\xe4\x13\x29\xf8\xcc\x07\x69\x42\xc8\x27\x8e\xe6\x99\x67\x41\x88\xad\x8d\x66\xe8\x78\x95\x34\x7b\x22\xb1\x9e\xf9\xe0\x06\x69\xf6\x44\x62\x3d\xf3\x41\x9a\xd0\xec\x89\x83\x0b\xf7\x9c\x05\x01\x1d\x47\xd7\x4f\x5e\xe5\x10\x29\xa3\xe0\x33\xc9\x25\xc7\xd1\xf5\x73\xc9\x18\xda\xe5\x5a\x22\xa5\x9a\x48\xc2\x25\x9e\x53\x68\xb4\x5b\xe2\xcc\x87\xfd\x2f\x2e\xee\xdb\xe7\xfe\x54\x29\x5e\x6e\xc7\xb5\xd1\x1f\x49\xc7\x75\x9f\xb6\x8b\xb9\x7b\x96\x14\xf6\x89\x53\x82\xf7\xdc\xe0\x9a\x0e\x4d\x3d\x81\xeb\xdc\xc6\x5b\xba\x20\x2e\x8d\x91\x38\xb7\x49\xb6\xbe\xa0\x21\xdc\xd0\xdc\x4e\xdb\xfa\xd2\xb9\xa8\xf5\x75\x2e\xea\xfc\x3a\x17\xfb\xbe\xb8\xe5\xd4\xe2\x14\xea\x22\x35\xb2\x96\xd6\x49\x8d\xc4\x6f\x6f\xf7\xeb\x44\x8b\x3e\xaf\xf9\x59\x0f\x9f\x78\xcd\x87\x02\xfd\xb6\x5b\x90\xae\x5d\x08\x33\x7e\x16\xc2\xb7\xf7\xf9\xeb\x6a\xdd\xc5\xea\xe2\xbb\x2f\x32\x0f\xa9\x7c\xc4\x6f\xaf\x87\xeb\xea\xfe\x69\x9f\xff\xf6\x42\xb8\xe2\xf4\x4c\xfb\x3c\x79\x8f\x78\xe9\xfc\x27\xa9\x84\xae\x47\xbc\x76\xfd\xd4\x48\xd7\x23\x7e\xe7\xec\xea\xb3\x73\x3d\x68\x77\xc4\xef\x9c\xe3\x92\xc6\xf5\xa1\x18\xbe\x73\x64\x2b\x6b\xdd\xb1\x82\x0f\x85\x19\x4c\x86\xcf\xfc\xfc\xe4\xcf\x86\xc7\x45\x1b\x35\x79\x8f\x7d\x1c\x68\x5f\xcc\x2e\x9e\x93\x3f\xfa\x69\x82\x11\xfb\x88\x64\x02\xe2\x67\xa3\xfe\xc6\x39\x7b\xe3\x9f\x12\xd4\x28\x79\xec\xe3\x32\xfb\xe2\xeb\xe2\x39\x12\x33\x5c\x34\xf2\xe7\x20\x81\x65\xf8\xd9\xa8\x69\x7e\xc4\x68\xb3\xfa\xf8\x0a\xdf\x3c\x07\x33\xf4\xd3\xac\x23\x0b\x12\xa3\xdd\x86\xd8\x47\xfc\xcc\xb3\x6c\x26\x7f\x22\x26\x9f\xd5\x91\x9d\x5f\x58\x66\xc8\x0a\xfe\xb9\x6b\xc4\xc7\xc5\x5e\x5e\x27\xf3\xaa\xed\x41\x5e\xdc\xec\xe5\x34\x51\xf6\xdd\x17\x23\x7a\xc5\x93\x42\x53\x5c\x6c\x2e\xca\xfb\xea\x1a\x42\xff\x11\xc3\x88\xe7\x94\xdc\x62\x6e\x2f\x2e\x78\xb6\xa1\x10\xca\x88\xeb\x24\x6e\xf1\x15\x48\x63\xc4\xc5\x05\x3f\x36\x0e\xa1\x8c\xb8\xd2\xc9\x2d\x39\xff\x3c\xcf\x14\xe1\xf6\xdd\xe9\x65\x44\x7a\x19\xb1\x88\x77\xd3\xcb\x88\xeb\x3e\x09\x12\x8f\x8b\x8f\x8b\xe2\xd6\x2c\x82\x65\xeb\xa1\x43\x91\xc2\x56\x11\x8a\x74\x28\xe2\xda\x2e\x6d\x4a\x55\x43\xa6\xf7\xda\xae\x62\x4a\x8e\x28\x2c\x33\x84\x5e\x42\x4a\xc3\x20\x9b\x2f\xf4\x12\x52\x9a\xdd\x45\xcf\xdc\x13\x65\xad\xcf\x33\xb1\x48\x14\x12\xd2\x09\x36\x2d\xd3\x66\xed\x69\x73\x2e\xa6\x6b\x6f\x3d\xc9\xd1\xde\x10\xf6\x77\x4f\x8e\xf6\xa6\x40\x60\x23\xbc\x2e\xfa\xa7\xe3\x94\xed\x2d\x2e\xee\x0d\x25\x85\x03\xe9\xdd\xc5\xcd\xca\x25\x67\x02\xe7\xb3\xe3\x20\xc9\xd1\xc0\x14\xfe\xab\xa1\xa8\xa1\x53\x3b\x3f\xc4\xfe\x97\x41\x91\x1c\x23\x4b\x4e\x62\xfd\x7a\x11\x37\x36\xa7\x53\x36\xfd\xf7\xec\xee\xd9\xe3\xdf\xfd\x8d\x7b\x0c\x52\xfc\xaf\x5e\x38\x80\x92\x9c\xc1\x08\x61\x9f\x9e\x49\x2a\x5d\x27\xf5\xa4\x7f\xb7\x2b\x2b\x9d\x4e\x55\xe3\xdf\xed\x80\xfe\x14\x14\xfe\xfd\x73\x5b\xd8\x29\xfd\x57\x43\x12\xbc\x93\xb2\xb6\x21\xa4\x3d\x30\xca\xda\x26\xb9\xce\xbf\xdb\x15\x96\x4d\xea\x92\xfe\xe7\xf6\xe6\xf6\xfe\xef\x37\x52\x19\x34\xdd\xa7\x21\x17\x65\x6a\xa6\x53\xe5\x32\xec\xe5\x98\x14\xbb\x4c\x92\x2b\x7f\xdf\x4a\xd5\xc9\x94\x49\x83\x91\xaf\x49\xf2\x05\x53\x16\x42\xfa\xfd\x73\x6f\x6b\x49\x2e\x5a\x08\x5b\xa1\x28\xc9\x45\x4b\xd2\xb9\x7e\x9f\xba\x68\x5d\x15\xba\xf9\x6c\x66\x32\xc9\xf1\x4a\x52\x93\x7e\xb7\xcb\x50\x4a\xca\x81\xfd\xe7\xf6\x3d\xc3\xd2\x29\x35\xf5\xfb\xe7\xa6\x26\x52\xf9\xaf\x86\xe4\x65\xa4\x27\x98\x68\x5b\x2c\x2d\x3d\xdb\x8a\x4e\xea\x02\xfd\x6e\x7f\xb6\x11\x96\x9e\x77\xfe\xfb\xf6\x1d\x44\x4f\xa2\xe7\xf7\x67\x90\x85\xcd\x93\x22\x3c\xf7\x77\x79\xa6\x4f\x2c\x6c\x7e\x7f\xbb\x32\x68\x52\x92\x27\xa9\xc5\x73\x7f\x41\x43\x66\x9d\xb2\x3b\xf7\x97\xce\xc5\xe4\xe2\xbd\x2f\x6e\xdf\x26\x09\xa2\x27\x45\x78\xee\x6f\xb3\x9d\x49\xf5\x9d\xa4\xec\xce\xfd\xcf\x2e\xbc\x2f\xea\x7c\xd7\xcf\xec\x9f\xc3\x33\x87\x67\x6e\x7b\x24\x89\xa5\x27\xb1\xf4\xfb\xab\x5e\x13\x0a\x28\xbb\x73\x7f\x56\xb3\xea\x3b\x49\xd9\x9d\xfb\x7b\xbd\x11\x43\xe4\x99\xde\x7d\x9b\x48\xe9\xd9\x5e\x5e\x7a\x36\xb5\x74\x7f\xed\xfc\xb3\xb9\x38\x5d\xd4\xd0\xe7\xdd\x3f\xef\x3e\x34\xe4\xc3\x09\xb0\xdf\xdf\xf6\x93\xd3\xf3\x79\xf7\xcf\x6b\x4e\xcf\xfc\x74\x69\xb9\x7d\xab\x4b\xa4\x67\xb9\x7d\xb9\x7d\x79\xcd\xe5\x73\x6c\xab\xe6\x96\xbd\x92\x9e\x65\xe8\xf6\x0c\xb9\xc9\xd3\x25\xa5\x78\x92\x1a\x3c\xf7\xda\xfb\x67\x52\x7c\x27\x29\xbe\x73\xaf\xcd\x48\x27\xc5\x77\x52\xbd\xdc\xee\x73\x08\xb7\x27\x21\xf5\x5b\xfe\x48\x12\x59\x4f\x42\xea\xf7\x2a\xcb\x45\xb7\xef\xe5\x74\xaf\x4d\x29\x27\x15\x79\x92\x8a\x3c\xf7\xda\xac\x5c\x12\x60\x4f\x75\x83\xc0\xbd\xb6\x6d\x9b\x6a\x74\x7b\x74\x7b\x73\xfb\xde\xf9\x92\x00\xfb\xbd\x36\x83\x96\xd4\xe7\x49\x02\xec\x37\xd9\xb7\x24\xc0\x9e\x6a\xd2\xcf\xa1\x9f\x7b\xe7\x4b\x42\xea\xf7\x9a\x5a\xdf\x0e\x59\xaa\xc9\x33\xa7\xce\xef\x9d\x2f\xa9\xdd\x73\xaf\x4f\xeb\xb7\x2e\xed\x8d\x2c\xef\x4a\xd0\xff\xfc\xf2\x46\xdb\x34\xce\x57\xd0\x10\xf8\xad\xdb\xcd\xca\x57\x70\xfb\x76\xb3\x52\xdd\xd4\x52\xbe\xa2\xd6\xb3\xa1\xdb\xd6\x65\xbe\xa2\x91\xdf\x9e\x58\x12\x60\xcf\x57\x34\x20\x59\x97\xb6\x75\x99\x19\x7d\x49\x10\x3d\x89\x9e\x67\x46\x5f\x52\xbb\x27\xd5\xbd\x3d\xe5\xeb\xdd\x4b\x46\x10\x3d\xd5\x47\x97\x9a\xef\xfe\x18\xa5\x1d\xff\xca\xec\xd0\x24\x4e\x9e\x04\xc8\xf3\x75\x86\xee\x31\xf2\xdb\xe4\xcc\x2a\x16\x27\x91\xf1\x54\xab\xce\x2f\x43\xf7\x7a\xcd\x1d\xd5\xca\x61\xe7\x5b\xa7\xfa\xfa\xe7\xb6\x27\x73\xb8\xbd\xfb\xeb\x99\x1b\xc4\x73\xb8\xf7\x92\x11\x2e\x4f\x82\xe0\x39\x14\xaf\xd9\x0c\xf2\xc6\x90\x4c\x28\x2c\x89\x69\x27\xe5\x76\x72\xe8\x86\x6e\x68\x7d\x5b\x04\x39\x80\x35\x51\xec\x24\x6e\x9d\xc3\xf4\xee\xc3\xd7\x1c\x1a\x5a\xfa\xc9\x14\xa8\x53\x97\x96\xa1\x03\x02\x42\xdb\x59\x3d\xda\x24\x60\x9d\xea\x5e\xef\x39\x46\x23\x3f\xcf\xed\xcb\x45\x43\xf7\x99\xde\x7b\x85\x67\xc2\x56\xa9\x6e\xa7\x24\x09\x58\x67\x71\xcf\xa4\x6c\x4e\x52\x2f\x27\x0b\x47\x26\xb1\xe9\x24\x1a\x9d\xe3\xae\x75\x99\xd4\xbd\x49\x0a\xde\xe4\xb8\x4f\x9f\xa5\x77\x6f\x6e\xe9\xdd\x2b\x3c\x47\x7b\x9c\x48\x75\x7a\xf7\x0a\xcf\x5b\xd4\xe9\x0f\x83\x42\xfd\x9b\xa4\xf0\x4d\x56\x08\x35\xbd\x3b\xa3\x26\xbd\x41\xd7\xb6\x1f\x92\x5e\xeb\x5e\x6d\x9c\x2c\xb2\x97\xde\xcd\xc4\x24\x25\x72\x72\xdc\x64\x44\x7a\xf7\x82\x4f\x0a\xe6\xe4\xb8\x89\xb8\x24\x34\x9e\xc4\xc4\x73\xdc\x14\x43\x7a\xa3\x67\x6e\x13\x39\xd3\x71\x4a\x22\xe4\x49\x4c\x3c\xa7\xa0\x4b\xec\x91\x77\x63\x42\x4e\x71\x7f\x40\xa1\xf1\x24\x26\x9e\x53\x72\xfb\x36\x83\xd3\xbb\xed\xdf\x9c\xcc\xbe\x17\x18\x08\x94\xe7\x64\x3d\x89\x90\x27\x31\xf1\x4c\x73\x29\x29\xb4\x93\x94\xd6\xc9\x09\xbc\x29\xad\x93\xde\x8d\x09\x39\x59\x79\xe2\xde\x49\x69\x9d\x9c\xce\x67\xc9\x5a\xcf\x5a\x6f\x3a\x9f\xdd\x9e\x75\x7e\x18\xcf\xcd\x1e\x27\xc1\xf0\x9c\x76\x4c\x35\x89\x82\x27\x91\xee\x9c\x3e\x5d\x2a\x06\x64\x6f\xe9\x59\xbd\xcf\xf4\xda\xd2\x45\xba\x73\xfa\xb4\x6e\x89\x0b\x71\xe7\xfb\xf2\xee\x8f\x2e\x6d\xeb\x3b\xdf\x97\xd6\x1f\xcf\xdc\x2b\x3d\x53\x13\x4a\x6f\xd5\xa5\xcd\x17\xe7\x3b\x78\xa6\x75\x2f\xa8\x9d\x6f\x5b\xfa\x5b\xdd\xbe\x13\x92\xf3\xcd\x94\x7b\x81\x81\xa0\x76\xbe\x9f\x73\xf1\x73\x71\x0f\xf2\x6d\xab\x7c\x9b\x7e\x36\xfd\xb4\x55\x2a\x75\x93\xd4\xb8\xc9\xf7\x19\x25\x56\x86\x68\x76\x16\x9e\x48\xc2\xd8\x49\x8d\x9b\x2c\xe8\x90\x14\xa0\x49\xef\xc6\x84\x9c\xeb\xb9\xe8\xdd\x21\x84\x42\x83\xe9\x85\x10\x4a\xd5\xe4\x0c\x32\xc5\xa1\x93\x00\x74\xce\xaf\x01\x61\x2f\xbf\x10\x22\x37\xb7\x4f\xef\x3e\xdd\x6e\xa3\x7e\x59\x04\xaa\xd2\xe4\xbc\xf4\x73\x99\xf3\x9b\xb1\xcd\x48\xbd\x24\x4a\x9c\x44\x89\xb3\x7a\x65\x49\x94\x38\x89\x12\xe7\xe7\x7c\xb8\xa5\xf5\xcd\xc3\x66\xb4\x5a\x12\xdf\x4d\x02\xbb\x59\xc9\xaf\xd4\x76\x0c\x28\xb5\x9d\x54\x9b\x9f\x1d\x25\x4e\xaa\xbd\x24\xd5\x5e\xf2\xd3\xdc\x6e\x4f\x6e\x7b\x89\xe6\x67\x1f\xb6\x4b\xcd\x9e\xac\x04\x4c\x7e\xec\x8a\xc2\xc3\x49\x5c\x38\x1f\x33\x56\x09\x98\xa4\x04\x4c\xae\xdb\xab\x4c\x4a\xc0\x24\x51\xe2\x5c\x4d\x30\x91\xe0\x24\xf6\x9b\x6b\xf4\xcc\xed\x78\x26\xf5\x5d\x72\xdd\x4e\x7e\x52\xe6\x25\xa9\xef\x92\x2b\x74\x14\x10\x4e\x6d\xfb\x9f\xb9\x66\xfd\xdc\x7c\x68\x12\x17\xce\xaa\x3c\x25\xb1\xdf\xd4\x6c\xbf\x75\xb3\x5d\xa9\x59\x9b\xcd\xda\xac\xac\x60\x01\xe1\x24\x20\x9c\x6b\xd7\x10\x02\x47\x29\x97\x5c\x61\x9d\x8a\x2e\x49\x94\x37\xd7\xe9\x99\xc5\x1b\x59\x9b\x75\x1f\xa1\x4a\x22\xc0\x49\xe8\x37\xd7\x33\x4a\xc5\x80\xd8\x93\x5f\xf6\xb2\x32\x2f\x49\x7d\x97\xfc\xb2\x1d\x04\x82\x93\x6a\x2f\x59\x91\xa0\x24\x10\x9c\x04\x82\xf3\x1b\x7d\xe2\x4d\x7d\xa6\x66\x6d\xbe\x10\xac\x55\x1f\x6e\xd3\x40\xf9\xbd\xf5\xd3\x82\x15\x0f\xce\xff\xc0\xd3\xbe\xb8\xe7\x52\x7b\xdd\x5e\xbc\xfb\xeb\xf6\xcd\x72\xe6\x77\x6b\xc1\xa5\x66\xf7\x6e\xaf\x2e\x55\xd3\xe6\x35\x97\x6c\xe9\xef\x0e\x9b\x26\x71\xe4\x24\x8e\x9c\xff\x59\x24\xfb\xa2\xf9\xb9\xd7\x6d\x7e\x99\x5d\xa2\xca\x49\x38\x39\xbf\xd3\x6b\xda\xe7\xdb\x76\x5b\xf3\x6b\xa3\x16\x47\x4e\xe2\xc8\xb9\x05\x83\x6c\xf3\x17\x47\xce\x4e\x06\xa7\x66\x4b\x6f\xb6\x74\x87\x56\x93\x00\x72\x12\x39\xce\x0e\x98\x26\x61\xe1\xd4\x2c\xd8\x7e\x79\xa6\xdd\xbb\xd9\xbd\xfb\x59\x32\x4c\x78\x41\xe2\xdc\xcf\xd0\xd9\xd2\x05\x89\x73\x3f\x53\xf1\x33\x15\x37\x07\x99\x7b\xd6\xf9\x4f\x43\x9f\x86\x8a\x77\xff\xbc\x91\xcd\xbf\x3f\x1a\xb2\xf9\x0b\x12\xe7\x6e\x9f\x57\xc3\x25\x09\x19\xe7\xce\x7d\x69\xcb\x78\x2e\xfd\xdc\xd1\x8d\xd4\x79\x7e\x22\xc7\xb9\x6f\x01\x91\xa4\xa2\x4b\x12\x47\xce\xdd\x7a\x57\xc3\x25\x29\xd7\x92\x7b\x4f\x2e\x7e\x2e\x7a\x66\xdf\x73\xbe\x07\xcf\x0c\x9e\xd9\x97\x8b\x9e\x19\x74\x69\xfc\x99\x43\x91\x84\x9c\x93\x20\x73\xee\x53\x2f\xa0\x8e\xb0\x72\x56\xcb\x23\x29\xf7\x92\xd4\x79\xc9\x6a\x79\xa4\x0e\x8a\x54\x7d\xc9\x7d\x57\xcb\x4b\x22\xcf\xa9\x47\xe3\x6a\xe5\x29\x05\x93\xfa\x76\x1d\x72\xff\xce\x33\x87\x8b\x5e\x77\x19\x2d\x66\x42\x67\x11\x38\xa7\x98\x84\x9c\x53\xdf\x88\x94\x07\x7f\x49\x90\x39\x89\x27\xe7\x61\xaf\x13\x4f\x4e\x2a\xc2\xe4\x91\x34\x74\xeb\x12\x33\x61\xdc\x1a\xba\xb5\xbe\x13\xe9\xb2\xe3\x83\x49\xc8\x39\x89\x35\xe7\x51\xbc\x11\xa3\x5f\x45\x98\x3c\x38\xa5\x7d\xdb\x07\x49\x90\x39\x0f\x5b\xa5\xe8\x72\x52\x1f\x26\x8f\xae\xf3\xc5\xbb\x43\x9d\x61\xf3\x17\x25\x4e\x2a\xc2\xe4\x79\xde\xc8\xe6\xaf\xf8\x4b\x9e\x9b\x4e\x4f\x1d\x97\xd1\x37\x11\x97\x27\x5b\x5c\x81\x97\xa4\xc0\x4b\x9e\x9b\x84\x4c\x1d\x6c\x88\x12\x67\x55\x00\x92\x28\x71\x52\xe0\x25\xcf\xf3\xe1\x5e\xad\x6f\x1b\x20\xcf\xcf\x80\xbc\x06\x79\x07\x47\xb2\x73\x4b\xa9\xbf\x46\x69\x3b\x04\x79\xda\x2a\x15\x6f\x49\x9d\x99\xf0\x5d\xa6\x0d\x84\x50\x76\x25\x7f\xec\x3b\xd5\x57\x92\x08\x72\xfe\x6e\xe3\xb9\x59\xe7\xd4\x77\xc8\x23\x7f\x76\x06\xf5\x56\x92\x0a\x2b\xf9\x7b\x3c\x13\xc0\xf4\x0d\x29\x99\xba\x7e\x12\x3a\x4e\x42\xc7\xf9\x63\xb9\x28\x98\x92\x04\x84\xb3\xa3\x34\xa9\x4f\xad\x6f\x12\x39\x3b\x20\x93\x44\x82\x53\x9f\x5a\x67\xb9\x74\x3e\x43\xe7\x33\xd0\xb7\x4f\x1d\xea\x74\xa8\xf3\xd9\x69\x85\x87\x93\x0a\x2b\xf9\x63\x44\x77\xc4\x41\xdf\x38\x93\x8f\xe7\xaf\xfa\x4a\x12\x3a\xce\x1f\xcb\xba\x7f\xbe\xd1\xe6\x0f\xf2\x0a\x96\xf8\xf2\xcc\x6d\x81\xe4\x15\xbc\x26\x36\x41\x94\x38\x2f\xfe\xa7\xe0\x6d\x12\xbc\xcd\xab\x9c\x8b\xc5\xc5\xe6\xe2\xeb\x62\x77\x71\x2f\xed\x05\xc9\x04\x6f\x93\x12\x29\x79\xed\xa0\x43\x12\xca\x4d\x82\xb7\xf9\x38\xf9\x82\xb7\x49\xb8\x36\xaf\xf7\xdc\xee\x99\x3b\x0b\x25\xaf\xf7\x71\x71\x7f\x0e\x11\xdd\xbc\x9a\x7f\x72\x20\x04\x76\xf3\xb2\xa5\x0b\xde\x26\xc1\xdb\xbc\xc6\x70\x71\x0f\xc8\x60\x8f\x90\x71\x4f\xea\x9f\x24\x85\x4f\xca\x15\xfc\x33\xb9\x7d\x5b\x20\xe5\xe2\x55\x88\xcf\x26\xf1\xd9\x72\x45\x5d\xda\x86\x48\x12\x9f\x2d\xd7\xce\x0a\x49\xc2\xad\x69\x6c\x56\xa0\x5c\x3b\xb5\x3a\x8d\x5b\xe7\xb7\x59\x52\xae\xa2\x9f\xd9\xed\x1b\x0b\xca\x55\xb4\x8e\x23\x18\xdb\x65\x28\x17\x57\x43\xc1\x94\x24\x3e\x5b\xae\x7a\xfe\x39\x5c\x9c\xfb\xa2\xbd\x4e\x28\x36\x8d\xac\x9f\xfc\x0f\xa5\x55\x92\xd2\x2a\xe5\xe2\x16\x8a\xd6\x26\x61\xda\x72\x3c\xff\xc1\x72\x51\x61\xa5\x5c\xd6\xbb\x50\x6c\x52\x4c\xa5\x5c\xe6\xe7\xe0\x55\x28\xad\x52\x2e\xce\xf3\xd8\xee\x44\x12\xa6\x2d\x17\xc3\x67\x3c\xfa\xb9\xbd\x8a\x12\x58\x82\x42\xb8\x49\xd0\xb6\x04\xb8\x24\x68\x9b\x14\x61\x29\x21\x78\xa3\x1d\xb4\x4d\x2a\xac\x94\x00\x69\x45\x6b\x93\x30\x6d\x09\x0c\x1f\xd1\xda\x34\xb6\x01\x53\x02\x9b\x51\xa1\x95\x34\xb6\x01\x53\x02\xf6\x50\x7c\x36\x89\xc8\x96\x70\xbe\x11\x08\x12\x91\x2d\x87\x77\x18\xa8\xcf\xd1\x3c\x13\xa5\x28\x5a\x9b\xc6\xf6\x54\x4a\x78\x74\x1e\x6d\x21\x76\x5b\x42\x35\x19\x9a\x86\xb6\xfd\x53\x4e\xd4\x40\x24\x37\x89\xdd\x96\xc0\xd5\x18\xdd\xbb\x77\xef\x0e\xe7\x05\x66\xd3\xe8\xfe\xc9\x30\x57\x53\x25\xa9\xa2\x52\x24\x8b\xa7\x21\x00\x32\xb6\x17\x53\x02\x22\x66\x0c\xd3\x66\xfb\x34\x45\xf4\x2d\x0d\x26\x92\x0a\x2b\x25\x72\xf2\x06\x13\x69\x6c\x20\x2b\x31\xe8\xe7\xf4\x35\x37\x82\x95\x98\xce\x45\xb7\x6f\xcc\x2a\xf1\x7c\x8e\x69\x7a\x6f\xb0\x2a\xf1\x7c\x8e\xcf\x3f\xb7\xa9\x53\xe2\x01\x81\x4f\x43\x1b\x97\x8a\x34\xe8\x34\xe0\xd2\x58\x6e\x7f\xc3\x9f\x06\x85\xba\x2b\x49\xdd\x95\x12\x0f\x42\xb0\x8a\xc6\xa6\x4b\x4a\x3c\x93\x97\xbf\x24\x9a\x5d\xa2\x21\x14\xcd\x4e\xea\xae\x94\x08\x21\xd4\x5d\x49\x73\x33\x2a\x25\xee\xf8\x52\x9a\x80\x50\x31\x96\x22\xf3\x39\xcd\x9d\xbe\x92\xe6\x06\xc2\x22\xf3\x39\x4d\x40\xa8\x26\x4b\x89\x3b\x12\x95\x94\x66\x49\x33\x18\xd7\x4f\x43\xc1\x33\x37\x1e\x96\xc3\x7a\x28\xc6\x92\x14\x63\x29\x69\xc7\x93\x93\x62\x2c\x69\x6e\xe8\x2b\x69\x67\x31\xa4\xc9\x1a\x9a\x1b\xf3\x4a\xba\xf5\x73\x47\x19\xd3\xdc\xdc\x49\x49\x26\xef\x64\x0d\xcd\x8d\x87\x25\x3d\x9e\xc9\x31\x9b\xd1\x33\x77\x6c\x2d\x4d\xfc\x88\xea\x2d\x25\x01\xd7\x09\x1d\x27\x20\x4c\xcd\x33\x59\x43\x73\xbb\x62\x25\x9d\x51\xda\x31\xc0\x34\x01\x61\xb2\xad\xcd\xed\x91\xa5\x79\x7b\x26\x2f\x7d\x8a\x16\xcd\xcd\x9d\x14\x7a\xc7\x49\x7d\x98\x24\xb9\xa0\xdc\xec\x11\xa5\x60\xd2\x84\x8e\x77\x34\x74\x48\x93\xb9\xa1\xaf\xdc\x8f\xce\xc3\x3c\xf5\x5d\xca\xbd\xf3\x1d\xd2\xe4\xad\xcd\x8d\x72\xe5\x46\xd1\x4f\xde\xda\xdc\xde\x5a\xb9\x9b\x2e\x15\x23\xbf\xb9\x93\x72\x0f\xff\x84\x79\x8a\xbe\x94\x7b\xf8\x27\xc7\x6c\x3e\x6e\x67\xe3\x4c\xa4\x89\x0c\x87\x72\xb3\x71\x66\x35\x9e\xdb\xdd\x2a\x19\x7f\x3b\xab\x77\xdf\xb1\x9c\x22\xdd\x30\x4d\x48\x36\x21\x99\x74\xc3\xa4\x20\x4c\x9a\xdb\x6e\x2a\x99\xcd\x38\xf9\x60\xf3\xf5\xcc\xec\x76\x48\xa6\x2e\x4c\xa1\x0e\x9b\x14\x84\x49\x2a\xc1\x94\x6c\x63\x99\xdb\x8a\x4a\x73\x73\xad\x25\xa3\xab\x26\x78\x9b\xe0\x2d\x33\x7c\xa6\x58\xe5\xdc\x80\x56\x32\x67\x4f\xb2\x46\x52\x33\xa6\x64\x48\xa6\x58\x4c\x52\x2c\xa6\x64\x2e\xc7\xec\x9e\xd9\x3d\xf3\x8c\x7c\xf7\xcc\xee\x99\xed\xfc\xd3\x1b\x75\x6f\xd4\xcc\x25\x98\x37\xb7\x81\x56\xc4\xbd\xd3\xe4\xec\xcd\x6e\x94\x90\xba\x13\x8f\x33\x37\xf4\x95\x7c\x46\x1e\x8f\xa3\x2a\x4d\xc9\x9f\x19\x22\x06\x34\x87\xce\x9f\x65\x88\xc7\x99\x30\x4f\x6a\x60\x9a\x82\x77\xb2\x50\x4a\xc1\x22\x9d\x64\x14\x59\x28\x45\x16\x60\x9a\xd0\x71\x6e\x8e\xa7\x08\x9b\xa7\x93\xa1\xa2\xe0\x4d\x29\xcc\xae\xc9\xbe\x9b\xdb\xa2\x2b\x52\x03\xd3\xe4\x40\xce\x4f\x43\x0c\x0a\xb9\x2c\x69\x6e\x53\xae\x14\xfc\x88\xec\x95\xa4\x7a\x4e\x29\x07\x19\x38\x90\x13\x8e\x16\xa6\x87\x42\x39\x69\x2e\xb7\x0b\x8a\x4d\x2c\xd2\x5c\xba\xc4\xd5\xf8\x36\xf2\x25\xd5\x73\x4a\xe1\xe4\xab\x9e\x93\x54\xcf\x29\xc5\x5e\xf7\x09\x0c\x7d\xb0\xae\x70\x4a\x55\xcf\x49\xaa\xe7\x94\x62\x32\xa8\x9e\x93\xd4\xcb\x29\x44\x5b\xd3\x87\x20\x56\x2f\xa7\x10\x58\x4d\x6a\xe2\xa4\x6f\xa3\x5b\x91\x01\x97\x54\xc8\x49\x4a\xe3\x94\xc2\xf3\xff\xf0\x4d\xdf\x76\xf2\x4a\x59\x6e\x07\x6b\x5f\xd4\xfa\xd2\xa5\x8d\x67\xe9\xdb\x49\x10\x45\xb6\x5a\xfa\xc4\x80\xbe\xcd\x05\x97\x87\xe9\xa1\xce\x4e\xfa\x36\x09\x55\x1e\x44\xcc\xc7\xe8\xfb\x36\xdf\x54\xe4\xa0\xa5\x8f\xd1\xf7\x6d\xc8\x2b\x0f\xd3\xf8\x43\x42\x7d\xdb\x01\x2c\x8a\xfb\xa7\xef\xf6\x46\xd9\x3f\x71\x2e\x1f\x53\xee\x63\xca\x3d\xf9\x5c\xd4\x3a\x53\xee\x61\xdf\x7d\x10\xec\x63\xb5\xa9\x8f\x9f\x3e\x08\xf6\x41\xb0\xa7\xfa\x27\x03\xed\x63\xa0\x3d\x18\x49\x79\x43\x49\x59\xa0\xf2\xb4\xf3\x4f\xcf\x7c\x74\x49\x70\xe4\x63\xb5\x7d\x8f\x77\x87\xde\x4a\x06\xa5\xef\xd1\x3a\xc7\x51\x32\x51\x52\x39\xa8\x3c\xcb\x0c\xc1\x22\x29\x12\x54\x2a\xf2\x51\x91\xa0\xf4\x6d\x74\x2b\x15\x7a\x7f\xac\xb6\x8f\xd5\x46\xa7\x33\xa9\x23\x94\x3e\x58\x57\x79\xd2\x32\x93\x92\xaa\x42\xa5\x0a\x47\x7e\x00\xf0\xdb\xc6\x5b\xa9\x42\x48\x12\x94\xd2\xf7\x6a\x28\x9f\x8b\x1a\x62\xca\xd5\xac\x9f\xcd\xed\xdb\x4e\x2b\xf5\x4d\x7f\x1a\x14\x5f\xf3\x59\x36\x7b\x55\xaa\x30\xef\x07\xf3\x3e\x98\x57\x6d\x80\x1f\xeb\xed\x83\x79\xf5\x0c\x36\xff\x53\xf9\xa3\x52\x79\x80\xca\x1f\x25\x89\x51\xa5\xda\x58\x3e\xfe\xe7\xd7\x3d\x73\x7a\x26\xff\xf3\xdb\x04\x57\xa9\xf3\x3c\xd3\x68\xc1\xbc\x2a\x92\xaf\xee\x51\xfa\x18\x7f\x87\x5a\x94\x26\x95\x94\x3f\x2a\x2a\x95\x27\xa9\x50\x49\xf2\x53\x79\xcf\xc0\x80\x37\xe9\x4e\x85\xe0\x62\x52\xfe\x28\xa9\x74\x54\x4e\x0e\xc5\x07\xc9\xa4\x3b\x95\xb7\x78\x26\x3b\xef\x63\xe7\xbd\xb6\x0b\x75\x8f\x92\x82\x47\xe5\xb5\x09\x7c\xf0\xe9\xdb\xe6\x5e\xa1\x44\x98\xd4\x28\x4a\xdf\x4e\xb2\x2b\x0d\x10\xca\x9d\x4a\x0b\x14\x35\x93\x42\x55\xa2\xb4\x36\xf8\x94\xb6\xf3\x2f\xd3\xda\x27\x1d\xd2\x02\x45\x8d\x29\xbf\xc4\xaa\x56\x70\xfb\xce\x80\x4c\xaa\x12\x25\x55\x89\x0a\x99\xba\xa4\x1c\x51\x5a\xc1\xed\xe3\x5c\x1c\x2e\xee\xd7\xa4\x1e\x97\xa4\x6c\x25\xb9\x5a\xa5\xf3\x00\xe5\x63\x25\xf9\x58\xa5\xb3\xc5\xe4\x63\x25\xf9\x58\xa5\x0b\x9b\x4b\xbd\x4a\xb2\xac\x4a\xc7\x3b\xac\xe4\xf6\xe4\x76\x43\x27\xcb\x2a\xc9\xb2\x2a\x5d\x30\x7c\x01\x18\x59\x56\x85\x76\x59\x92\x5e\x95\xe4\x55\x95\x2e\x18\xbe\x78\x95\xaa\x12\x15\x35\x79\x93\xca\x43\x69\x65\x9d\x67\xb1\x2e\xa8\xb3\xa0\x0e\xa1\xb0\xa4\x1c\x51\x5a\x8c\xa9\xc3\xa0\x29\x40\x94\x14\x20\x2a\x23\xe9\x27\xbb\x69\xed\x98\x53\xa1\xa0\x95\x16\x80\x59\x4c\xa4\x61\xb7\x51\x41\x28\x2d\xd6\x10\x0d\xab\x74\x92\xbb\x16\x0f\x70\x70\x8d\x16\x0f\x70\x55\xb7\x57\x9d\xaf\x3a\x5f\x35\xf4\xea\x3c\xbb\x49\x21\xa1\x32\x5e\x03\x82\x6f\x5a\x1b\x3d\xca\x40\x57\x2e\x7c\x93\x62\x41\x65\x74\x6f\xc4\x6e\x5a\xec\x26\x25\x5d\xd3\x62\x37\x2d\x76\x93\xea\xad\x69\x49\x26\x5a\xac\x21\xe5\x57\x93\x62\x41\x49\x79\xa0\x42\x6f\x2a\x2d\x84\xf6\xda\x84\x76\x99\xd8\xe3\x25\xa5\x65\x6d\x53\xa7\x10\x77\x4a\xea\x01\x25\xf5\x80\x8a\x02\xa8\x49\x3d\xa0\xa4\x1e\x50\x99\x67\xce\xcb\x73\x59\x1b\x0b\xca\x3c\x13\x0c\x08\xc8\x7d\x2b\xd3\x82\x55\x24\x28\xc9\x7d\x2b\xca\x9a\x26\x45\x82\x92\xb2\x40\x65\x9e\x09\xc6\xc6\x59\xc3\xed\x76\xef\x85\xae\x52\x24\xa8\xa8\x60\x9a\x54\x07\x4a\x4a\xff\x94\x39\x4c\x45\x46\xca\xb2\xb4\xa7\x38\xc8\x42\x68\xab\xf2\x53\x28\x14\xa5\xc5\xaf\x5b\xcb\x33\xed\xc9\x0b\xb5\xb4\x36\x85\x5d\x94\xe1\x4c\x6b\x99\x8a\x3b\xaa\x55\x3e\xbc\xfd\xe2\xba\x29\xfd\x53\x3e\x99\x11\x6b\x9d\x67\x2e\x17\xff\x19\xe4\xfb\xda\xc8\x70\x2b\xfd\x53\xbe\xbd\x5d\xdc\x97\xb4\x15\x15\x80\xca\xb7\xc3\xbb\xb7\x2a\x3f\xb7\x2a\x3f\xe5\xcb\x6e\xdf\x38\x71\x5f\x3b\x98\x5d\xbe\xbd\x27\xdf\xd7\xc6\x89\xfb\xda\xcc\x54\xf9\xca\xb9\x58\x5d\xd4\xd0\x26\x0a\xef\x6b\xe3\xc4\xad\x1e\x50\xf9\x5e\xad\x47\xcf\x64\xb9\x7c\xfb\x04\xc1\xad\xe6\xcf\x7d\x6d\xd4\x28\xdf\x06\xff\x5b\xe9\x9f\xfb\x02\x17\xdf\xd0\xa5\xa4\x9f\x2c\x97\x6f\xea\xfc\x76\xc8\xee\x2b\x19\xba\xa5\x4b\xc9\xbb\xb3\x5c\x64\x27\xdf\x57\xf2\x4c\x96\xcb\x0a\x1a\xda\x88\x72\x5f\x2c\x17\xd5\x26\xef\x6b\x03\xcb\xad\x48\x50\x59\x67\x3c\xb7\xeb\x76\x5f\x5c\xb7\x95\x3c\xf3\x36\x9e\x9b\xca\x2a\x6b\x47\x37\xee\xeb\xd6\xd0\xad\xa1\xec\x35\xb7\xeb\x76\x5f\x5c\xb7\x75\xc6\x33\x1b\x10\xae\xdb\xda\x7b\xc7\xad\x8e\xd0\xad\x80\x50\x59\x8f\xa1\xcb\x9e\x89\xc3\x5a\xd5\x3f\x8b\x7e\x16\xfd\x6c\x06\x64\x03\xd2\x7d\xed\x23\x54\x45\x36\xd0\xad\x3a\xd0\xad\x02\x50\x59\x3b\x64\x7c\x5f\x8f\xdb\x1f\xad\xef\xcd\xf4\xbe\x1e\xad\x73\xdd\xd6\xe7\xdd\x1f\xad\x6f\x5c\x7a\xa8\x9f\xdc\x57\xd5\xd0\x06\x9d\x87\xa6\xc9\x7d\x6d\xec\xb9\xaf\xed\xba\x3d\x9b\xfe\xfb\xdf\x06\xc5\xad\x4a\xd0\x7d\x6d\x43\xe6\xb9\xb2\xae\xbd\x26\xc5\x46\x9d\xe7\x3a\x63\x20\xd7\x4e\xd1\x9f\x47\xb2\xce\x7d\x35\xbd\xd8\xe0\xf3\x48\x1a\xbf\xd5\xfe\xb9\xaf\x8d\x3a\xcf\xd5\x7d\x96\xe6\xf6\x6d\x81\x3c\xd7\x74\xbb\x0c\xba\x6b\x5b\x19\x4f\xd8\x2b\xef\xbe\x86\x2e\x6d\x13\xe2\x09\xf7\xb9\x68\x08\x37\x50\x3c\x92\x72\xef\x6b\x9a\x14\xdb\xef\x79\x08\x34\xdc\x97\xc4\xb6\x6b\x23\xc4\x13\xba\x8b\x9f\x4f\xbd\x6d\x80\x27\x0c\xad\x7f\xe6\xe9\x06\x8a\x27\x4c\xcf\xfc\x34\xb4\x0d\x83\x47\x11\xbb\x5b\x49\x9e\x5b\x2d\x9e\x27\x7c\xbe\xff\xe7\x8d\x36\x2b\xf4\x84\xe5\xdd\xa5\xc0\x5d\x4b\x43\x67\x41\x2c\x6b\x74\x63\xc9\x13\xa3\xf1\x5c\xbe\xea\xc6\x92\x27\x26\x0d\x2d\xf3\x74\x63\xc9\x13\xb7\x13\x75\xcb\xe9\xbd\xc3\x76\x86\x1e\x65\xe4\xee\xb0\xbd\xa0\x3b\x6c\x2f\xe8\x89\x7b\x4b\xbf\xd5\xf0\xb9\xc3\xa5\xa1\x6d\x7a\xdc\x2a\xfa\xdc\x4a\xf9\x3c\x71\xef\xf3\x77\x90\x17\x17\x82\xdb\x77\x3e\xf3\xad\xfa\xce\xad\xec\xce\x13\x97\xdb\xb7\x95\x71\x87\x6d\x65\x3c\x71\x97\x8d\xbc\x03\xd8\x08\xdb\xca\x78\xd2\x0e\x75\xde\x2a\xf3\xdc\x61\xbb\x38\x4f\xda\x1b\xcb\x1d\xc0\x86\x72\x3d\x4f\x4a\xfa\x29\x05\x4e\xb9\x9e\xc7\x11\xf4\x5b\xb9\x9e\x5b\xb9\x9e\x27\xed\xe0\xc8\xad\x32\xcf\x1d\x36\x42\x3c\xb8\xa1\x3b\xdc\x6e\xbf\xdd\x5e\x3d\xf3\xf6\xee\x1b\x13\x9e\xf4\x9e\x8b\x6e\xcf\x6e\xdf\x7e\xdd\x1d\xb2\x86\xb2\x86\x86\x7e\x5a\xf7\x2a\xf3\x3c\x69\x78\xcd\x6d\x7a\xdc\x61\x2f\xff\x47\x29\xad\x3b\x6c\x2f\xe8\x56\x99\xe7\x51\x4a\xeb\x0e\x45\x97\x8a\x2e\x7d\x9e\xb9\x09\x9c\x3b\x6c\x7b\xe4\x51\x0b\xeb\x56\xae\xe7\x56\xa0\xe7\xb9\xad\xe6\x00\x0c\xc2\x06\x83\xe7\x8e\x3e\xc7\xa3\x9f\x3b\x0c\xf6\x38\x00\x7d\x2b\xd7\x73\xab\xc1\xf3\xdc\xd1\x80\x6c\x3b\xe6\x56\x7c\xe7\x51\xf6\xea\x56\x7c\xe7\x0e\xdb\x43\x7a\xee\xa4\x9f\xd5\x27\xae\x9e\xb9\xc3\x52\x77\xa8\xde\x7d\xfb\x4b\xcf\x7d\x9f\x7f\xea\xe7\x76\x86\x9e\x3b\x7b\xa3\x6a\x3c\x37\x6a\x3c\x8e\x4a\xdf\xaa\xee\xdc\x61\xd3\x40\xcf\x6d\x6d\x86\xd7\xb4\x79\x3d\xb3\x98\x4b\xaf\x7e\x6e\x2f\xe8\x51\xa2\xea\x56\x75\xe7\x0e\xdb\x9c\x79\xd4\x98\xba\x43\xd3\xa5\xe6\xf6\xed\xd3\xdc\xa1\x7b\xf7\x6d\x96\x3c\x4e\x06\xdf\x01\x5c\x04\x70\xe1\xc4\xed\xad\x6c\xce\xad\x5e\xce\x93\xcf\xd0\x0d\x33\x64\xb3\x2c\x4f\xb6\xb1\x28\x94\x73\x07\xc0\x92\x93\x91\x97\x70\x1b\xb6\x3d\xf2\xe4\xa4\x75\xb9\xb5\x4a\xe3\x3c\x39\x1b\x25\xb9\xb5\x61\x9b\x25\x4f\xb6\x7b\x87\x1d\x3e\xbb\xc3\xf4\xcc\xa2\xf5\x69\xe8\x36\xbd\xf2\xe4\x62\xe4\x25\xdc\x2a\xa2\xf3\xe4\xc7\x3f\x3f\xef\xbe\xe1\xe9\xc9\x67\x7a\x7f\x1a\xfa\x74\xbe\x7a\x4d\x60\xa5\xb2\xce\x93\xab\xa1\x5b\x56\xdc\xf2\xcc\x6e\xbd\x2f\x73\x69\x53\x2f\x4f\xee\x3e\xc7\xd2\xd0\x86\xa7\x07\x87\x75\x07\x10\x24\xdb\xff\xc9\x50\x51\xb6\xff\xad\x88\xce\x93\xa1\xb7\x9a\x38\xb7\x9a\x38\x4f\xd9\x26\xd2\xad\x7e\xcd\xad\x62\xcd\x53\x76\x38\xf2\x56\xaa\xe6\x56\xaa\xe6\x71\x4a\xf2\x56\x95\xe6\x56\x95\xe6\x29\xdb\xd1\xb9\x9d\x27\xb8\x9d\x15\x78\xca\x74\x3b\x2b\x43\x01\x9a\xc7\x59\xc2\x5b\x01\x9a\x5b\x01\x9a\xa7\x58\x86\x91\x99\x10\xb7\x99\xf0\x60\x52\xee\xb8\xc9\xdc\x5b\x05\x99\xe7\xf1\x35\xd5\x7e\xb9\xe3\x5e\xf6\x0f\x2e\xe3\x56\xd8\xe5\x56\xd8\xe5\x79\x76\xee\xe9\xad\x86\xcb\x1d\x37\x6f\xfb\x3c\x5d\x97\x8a\x86\x8a\x86\x4e\x3f\x8b\x67\x16\xcf\x34\x3f\x95\x79\xb9\xd5\x77\x79\xd4\x1c\xb9\x63\xf1\xcc\xbd\xec\x1f\xa5\x40\xee\xf8\x78\x23\x4b\xbb\x16\xcf\xdc\xfe\xc7\xff\x11\x76\xf7\x48\x14\xeb\x38\x76\x80\x73\xaf\xa2\x77\x60\x5d\x09\xe0\x4f\xec\xd8\xde\x83\x7e\xab\x26\x98\x9e\xae\xf6\xcc\xfe\x5d\x0f\x1f\x9f\x83\x0e\xe6\x05\x37\x51\x5d\x89\x14\x45\x90\x00\x88\x73\x4e\xec\xac\x78\x0c\x5d\x62\xb0\x7b\xc5\x1f\x5d\x35\x50\xec\x0c\x76\xb7\xf9\x8f\xdb\xc5\xb2\xbf\xd8\x6b\x47\xef\x73\x5f\x17\x8d\x7c\x25\x5e\xfb\xac\x38\x29\xf6\xa9\xa1\x0a\x2e\xba\x22\x9d\x20\xc9\x12\x7b\x65\x28\xfa\xcc\xbf\x24\xb6\x0a\xb2\x2d\xb1\x57\x1c\xd2\x27\xf7\x0b\xa0\x23\xc8\xb6\x74\x6a\x05\xb1\xab\xa9\x27\xdb\xd2\x69\x10\xc4\x7e\x79\x89\x0a\x24\xfa\xbc\xfc\xf3\x76\x3b\x13\x9f\x16\xec\xfd\xf6\x05\x2a\xba\xe8\xb3\x08\x05\x82\x6c\x4b\xec\x65\xd4\x7d\xbe\x9e\xf9\x68\xa8\xec\xb7\x9f\xbc\x8c\xfd\x31\x30\x65\xbf\xfd\x5c\x93\xf7\xd1\x7a\xd9\x6f\x3f\x8f\x75\xfb\xe3\xe2\xe7\xa2\xcf\xf2\xea\x52\xd9\x6f\x3f\xad\xa3\xa4\x59\x82\x26\x4b\x3f\x43\xe7\x79\x19\x3b\x2f\xe3\xb4\xfd\xd2\x5d\x89\xfd\xf5\xcc\xae\x4b\x2a\xe5\xf7\xb2\xca\x7e\x4e\xd3\x47\xa5\xfc\x5e\x39\x89\x8e\xa0\x3e\x76\xbe\xc3\xce\x77\x38\x79\x99\x74\x57\x82\xee\x4a\x3f\x7d\xff\x43\x1c\x72\x6c\x5a\xe7\x65\x52\x51\x09\x2a\x2a\x1d\x45\x7c\x10\x4c\x89\xa3\xf2\x0e\xfd\xe2\xa4\x10\x4c\x09\x12\x29\xfd\xaa\x6a\x8b\xa0\x94\x12\x07\x37\xe1\x0a\xcf\xdc\x3d\xf3\xf0\xcf\x42\x25\xc4\x71\x78\xe6\xe1\x99\x1c\xdf\x43\x24\x40\xe3\xa4\x5f\x95\x56\x0d\x60\x9d\x80\xd2\xe9\x68\xb2\xe3\xe0\xdf\x1f\xe5\xd1\xf7\x9b\xe3\x73\x70\xe5\x8f\xda\xd9\xfb\x1d\xfa\x99\x6e\x4f\xb7\xd7\x41\x5b\x1c\x36\xea\x83\xe1\xde\x16\x42\xb2\x24\x41\x88\xa4\xdf\xd6\x92\xa3\x36\xe3\x38\x98\xe3\xb3\xe9\x7c\x37\x9e\xf6\x64\x6c\xcb\x41\x81\x24\x8e\x4a\x15\xf4\xe7\xa7\x21\x0e\xfa\x51\xa6\xda\x1f\xbb\xf7\xd1\x0d\x08\xc3\x7d\xec\x36\xc7\x30\x74\xc3\x33\x6d\xd4\x07\x6b\xa6\x4e\xd2\x9f\xc3\xe7\x18\xde\x88\x35\x3f\x05\x3c\x89\xc3\xf6\x7b\x4c\xcf\x34\x97\x08\x91\xc4\x61\xa7\x7d\xfa\xba\x78\xb9\xe8\x76\x3b\xc3\x61\xa7\x3d\xec\xb4\x8f\xe5\xed\x28\xdb\x8e\xa3\xec\xb6\x3f\x6b\x94\x60\x68\xa8\x93\xf4\xe7\x32\x20\xa7\x2e\x95\x7b\xdf\x1f\xab\xce\x01\x58\x73\x9c\x1a\x62\xb0\x04\x4c\x82\x72\x49\x7f\xd6\x54\xbc\x34\x74\x69\x88\x33\x75\x5c\x1a\xba\x34\xf4\x1a\xba\x4b\x43\x97\x86\xea\x70\x24\x48\x96\x04\xc9\x92\x8e\x08\x38\x68\x95\x04\x00\x57\x7f\x7f\x9e\x69\x9f\x27\x59\xd2\xdf\x35\xc8\xb7\x6f\x64\x9f\x7f\xd7\x5c\x82\xa1\xa1\x63\xd2\x5f\x4e\x34\x01\x93\xa0\x5c\xd2\xdf\xf4\xee\x96\x8b\xe3\xf1\xcc\xa6\x75\xf6\x7e\xb0\xf7\x77\xfa\xc4\xaf\x91\x17\x40\x7c\xeb\x76\x01\xc4\x21\x80\xf8\x9a\x01\xb1\xd3\x02\x9a\x75\x55\x21\x11\xb5\xc5\x46\x94\x31\xf7\xef\x5a\x17\x4f\x17\x6b\xd6\x7d\xf6\x64\xa2\x21\x41\x34\xa4\xaf\x00\x32\xf8\xf5\x51\x7e\xfd\xd8\x0a\x18\x15\x01\xef\x12\x95\x2a\x18\x2b\x80\x0c\x39\x82\x28\x0b\x1f\x9b\x99\x4c\x2d\x24\xc8\x84\x0c\x65\x1d\x41\x2d\x24\x62\xf7\x4f\x29\x86\xe0\xd7\x47\x79\xf2\x63\xab\x0c\x5a\x90\x10\x09\x32\x21\xe3\x8f\x10\xb5\x2e\x0e\x17\xa7\x8b\x97\x8b\x9e\x79\x78\x66\x25\xb2\x03\x90\x2e\x20\xe8\x06\xba\xc7\x20\x1a\x12\x44\x43\x06\x25\xfd\xa0\x0f\x12\xf4\x41\xc6\x56\x69\xa0\x88\xd0\xf9\xd0\xf9\x4a\x92\x06\xb5\x90\x88\x8a\x00\xc6\xf6\xea\x12\x67\x9f\x22\xc8\xf8\xad\x01\x11\xe4\x47\x05\xf9\x43\x59\x47\x44\xf3\xcf\x5a\x2e\xc6\x4f\x7c\x1c\xcd\x1b\x35\xb7\xfb\xc4\xd4\x42\x22\x6a\x9f\x1f\x3f\x4e\x1f\xb5\x90\x88\xca\x41\x0e\x10\xe4\x20\x1a\x12\x51\xab\xcd\xf8\x75\x9f\xd8\x6a\x43\x49\x64\xfc\xba\x91\xe7\x11\xd0\x0e\x19\x3f\x79\x9c\x18\x46\x69\xf8\x27\x8b\x23\x05\x12\xa4\x40\xc6\xef\xf5\x35\x2d\x17\x51\xcb\xc5\xf8\x7d\x46\x49\xc4\x1f\xd3\xed\x9f\xd7\x9c\x5e\xb3\xd6\x90\xa1\x04\x23\xa8\x85\x04\x99\x90\xa1\x04\x23\x82\xef\x10\xe5\x3b\x8c\x5d\xe4\x17\x7c\x07\x98\xc7\xb1\x57\xc6\x3c\x28\x89\x04\xed\x90\xb1\x5b\xd2\x49\x88\x44\xd4\xc2\x32\x2a\xea\xfd\x0b\x87\x82\xa2\x48\xc4\xe9\xd9\xb2\x5e\xc1\xa1\x20\x33\x32\x28\x95\x07\x45\x91\x88\xcb\x4b\xf0\x32\x42\x8a\x21\x2e\x2f\x31\xcd\xa9\xcb\x67\xa9\x25\x65\x60\xa4\x8b\xe0\x65\xc4\xad\xbf\x56\x47\xda\x23\x11\xb5\xa4\x8c\x5d\x2e\x83\xbc\x48\x44\x95\xa8\x8c\x9d\x47\x48\x6c\x24\xe2\xf6\x4c\xfe\x48\xdc\xbe\x40\xad\x33\x63\x5f\x86\x6b\x81\x89\x5a\x60\xc6\x6e\x0b\x22\x44\x12\xa4\x47\xc6\x2e\xef\x40\x73\x24\xe2\xd1\x90\x00\x32\x44\x17\x84\x48\xc6\x21\xbd\x46\x81\x24\x68\x8e\x8c\xe3\xd0\x90\xf0\x80\xe6\xc8\x38\x0e\x13\x8d\xeb\x11\xe5\x7a\x0c\xfc\x6d\x11\xd2\x16\x84\x48\x06\x38\x49\x84\xf0\x20\x2a\x13\x3a\xe8\x65\x07\xb1\x91\x00\x5a\x1d\x64\xac\x23\x25\x23\x80\x56\xc7\x8a\xa8\xb3\x56\xab\xa0\x24\x32\xa0\x3c\x82\x68\x48\x64\x25\x36\x07\x94\x47\x64\xad\x56\x91\xb5\x4c\x0d\x80\x8e\xa0\x0f\x12\xf4\x41\x46\xf0\x86\x93\x97\x91\xb5\xf8\x8c\x30\xf2\x59\xb9\x85\xa0\x0f\x32\xe2\xd2\x90\xb5\x84\xce\xc7\xc8\x9f\x86\x24\x0e\xb2\x96\x94\x91\xd6\x3c\xca\x1e\x41\xd2\x63\x24\xc7\x87\x88\x47\x90\xed\x18\x29\x7c\xa5\xd0\x11\x10\xb7\x23\xcf\x75\x51\x3f\x2b\x12\x18\xaa\x03\x22\xad\x10\xd9\x3c\xb3\xea\x32\x22\xeb\xe0\x33\x28\x74\x8c\x7c\x34\x54\x4b\x43\x64\xad\x09\x23\xad\x4f\x64\x3b\x82\x6c\xc7\x40\x1c\x14\x64\x3b\x82\x6c\xc7\x50\x08\x10\x64\x3b\x22\x6b\xa1\x18\x0a\x01\x02\xde\x37\xb2\x9c\x94\x81\xf9\x27\x92\xeb\x91\x55\xbc\x36\x9a\x45\x8b\xb2\x47\x64\x25\x13\x47\x13\xbe\x12\xf8\x88\x2c\xb7\x64\x90\x5f\x8d\x1c\x3a\x5f\x45\xb5\xa3\xc9\x76\x52\xfd\x88\xb4\x42\x90\xe1\x8c\xb4\x7b\x53\xda\x18\x63\x5f\x17\x7d\xb8\xb2\xb1\x31\x78\x6d\xb4\x35\x82\xa8\xc6\x18\xe9\x9f\xb7\x37\xba\xdd\xce\xc7\xa1\xad\x11\x44\x35\xc6\x10\xad\xc1\x33\x07\x20\xf3\x18\xc3\x3f\x6d\xd4\xc9\x8e\x88\x01\x46\x32\x99\x2c\x4f\x7e\x8c\x7b\xfd\xd3\x33\xd9\xd1\x60\x9b\x29\x51\x48\x77\x63\x8c\xf5\x8d\x18\x57\x32\xae\x61\x1d\xa5\xad\x11\xc9\x8e\x68\xdf\x45\x8a\xbd\x29\x6d\x8c\x59\xc0\xe2\x00\xaa\x8e\xb6\xb9\x28\xfa\x6d\x1c\x73\xc2\x19\x83\xd8\x5a\x34\xd6\xd1\x58\xc7\x69\x3c\x29\x66\x44\xab\x6a\xd3\x41\x85\x2c\x5a\xa5\xe3\xa2\x55\xe1\xc1\x38\x25\x0a\x9b\xac\x5c\xab\x64\xfe\x38\x7d\xe2\x06\x83\xda\xca\x72\x06\x75\xaf\x20\x8e\x11\x54\x31\x06\x21\xaf\x20\x8e\x11\xe4\x30\xc6\x69\xb3\x6a\xbc\xf5\x56\xfb\xf5\x38\xc5\x9f\x8d\x1d\x35\x76\x74\x9e\xfe\x19\x6e\x0f\xb7\x9b\x21\x8d\xb7\xde\x42\xeb\x45\x58\x1b\x8d\xb7\x4e\xf9\x62\x9c\x82\x67\x80\xf2\xa0\x75\x31\x4e\xa1\x1b\xc9\x8b\xa0\x75\x31\xce\xd7\x6b\x0a\xc8\x5b\x59\xe3\x38\x45\xd4\x4d\x02\x8e\x1c\xc6\xa0\x85\x15\x4d\x02\xae\xd9\xa8\x2f\xde\x10\xe5\x8b\x68\x2c\xee\x5a\xe3\xc9\xe2\x5a\xed\xc2\x83\x98\x55\x34\xd9\x78\x72\x18\xe3\xe2\xc2\x37\xce\x7e\xab\xec\xda\xb8\xc2\x1b\xb1\xa3\xc6\x8e\x2e\x7e\x13\x6c\x7c\x00\xc5\x8f\x4b\x3c\xd7\x98\x4c\x63\x32\x37\x4f\xb0\xf1\xd6\x5b\xed\xad\xe3\x16\x0e\xd2\xb3\x88\x56\xdb\xe8\x20\x94\x13\x4d\x40\xde\x6a\x1b\x1d\xf7\x1a\x79\xde\x3a\x91\x8a\x71\x4b\x96\xd1\xaa\x08\x22\x15\x83\x7a\x4e\xb4\xd3\x78\xd6\x9e\x3a\xee\xcb\x37\x92\x9a\xa7\x5c\x31\x48\xea\x44\xbb\x34\x74\x69\xc8\x4a\xdb\x78\xeb\xcd\x66\x7a\x5b\x69\x09\x58\x04\xe5\x8a\x71\xdf\x5a\x07\x6e\x6f\xb5\x7d\x8e\x5b\x2a\x84\x64\x45\x10\xa9\x18\xb7\x8c\x39\xad\x8a\x20\x52\x31\x56\xec\xd5\x38\xe6\xad\x2c\x7c\x3c\xfc\x11\xea\x14\x41\x9d\x62\x3c\x5d\xe7\x25\xcb\x5a\x99\xe8\x78\xee\xbf\xe4\xa1\x88\x66\xaf\xa3\x3d\x31\xde\xcd\x4b\x7c\x3e\x4b\x05\xd6\x03\xcd\x4e\x34\x0e\x3a\xe6\x82\xf1\x66\xfd\x93\x6a\x44\x74\x86\xbb\x8e\xd1\xe8\x44\x04\x65\x88\x01\x2a\x1f\x9d\xdb\xdd\x2b\xa2\x1e\x9f\x15\xa2\x97\x19\x47\xaf\x34\xd9\xf8\xf8\x4f\xbd\xe2\xeb\xe8\x15\x58\x0f\xc5\xed\xd1\x9d\xd7\x91\x99\x18\x9f\x74\x3a\x45\x89\xa0\x28\x31\x3e\x5b\x7a\x67\xf7\x9d\xdd\x7f\xd2\xe9\x9d\x2b\xdf\xb9\xf2\x9f\x74\x3a\xd1\x89\xe8\x16\x03\x50\xf9\xa0\x3d\x11\xb4\x27\xc6\x27\x8c\xe9\x42\xf7\x7e\xb8\xdd\xf4\x21\x25\x11\x34\x24\xc6\xc7\x1c\x3b\xb7\x9b\x5c\xc4\x5c\x21\x47\xe7\x76\xf7\x72\xbb\xe7\x0a\x39\x88\x47\x04\xb9\x88\xb9\x19\xf9\x9e\x46\xa9\xd6\x84\xb9\x39\x18\xec\x69\x3c\x6b\x4d\x98\xc0\xea\xd1\x39\xe8\xbd\x2c\x7d\x62\xec\x8f\xee\xc0\xad\x57\x58\x3f\x37\x07\x83\x54\x23\x82\x5c\xc4\x54\xf1\x1e\x88\x24\xa2\x37\xfd\x0c\x9d\xe7\x8b\xf7\xae\x9f\x6b\x40\x64\xe3\x7b\xd7\x10\xa7\xbf\xdb\x7e\x7b\xd7\x90\xf4\x6f\xb7\xfd\x92\x99\x98\x5b\x41\xa9\x82\xcc\x44\xf4\xae\xf5\xb6\x6e\x37\xf2\x43\x43\x56\x5c\xa2\x13\xd1\x6b\xd9\x98\x78\xf8\x83\xf6\x44\xf4\x4a\x07\xcc\x75\xfa\xd6\xa5\x03\x68\x4f\x4c\xfc\x48\x41\x7b\x22\x68\x4f\xcc\x6d\xb8\x5d\x3a\x80\xf6\xc4\xdc\x4e\xb3\x4e\xe2\xbd\xd7\x02\x33\xb7\xf5\x35\x79\xd6\x28\x2e\xe6\x3a\x68\xeb\x9c\x68\x14\x17\xf3\xd7\xd6\x45\xb7\x97\xa5\xcf\xdf\xea\xa7\xd8\x1b\x9b\xc5\x54\x0a\x1e\x8b\xd4\xa2\x57\xfe\x7d\xfe\x64\xa6\x88\x47\x04\xf1\x88\xf9\x93\x4d\xc0\x6d\x11\xbd\x76\xef\x09\x00\x1f\x9d\x6b\x8c\xcd\x62\xfe\x1e\x0d\x49\xbc\x63\xb3\x98\x50\xf1\x41\x20\x22\x7a\x1d\xf3\x4d\xa5\xe0\x41\x20\x22\x10\x57\xcc\x5d\x56\x8e\x16\x44\x50\x7f\x98\xbb\xe3\x09\x0a\x0f\x81\x8e\x62\xee\xd6\x3c\x94\x13\x41\xbe\x61\x1e\xc2\x98\x51\xfe\x6b\x60\x97\x98\x87\x6c\x02\x76\x89\xa0\xe2\x30\x0f\x73\x89\x28\x43\x10\x65\x98\x87\x00\x02\xe9\x43\x10\x57\x98\xc1\xb3\x26\x8b\x10\xa8\x1c\x66\x4e\x17\x79\xac\xa3\xf6\xd6\x89\x88\x29\x46\x15\xd4\xc4\xa8\x4d\x75\xa6\x65\x98\x56\x42\xe0\x77\x98\x2b\x45\x8f\xdf\x21\xf0\x3b\xcc\x7c\x3d\x53\xa0\x3b\xca\xc6\x66\x33\x20\x83\x71\x61\x6d\x98\x4d\x52\x8f\x1e\x42\x50\x40\x98\xcb\x13\x1c\x7c\xdb\xc1\xb8\x1a\xdf\x01\x87\x43\xd0\x3c\x98\xc8\x11\x63\xb4\x75\x7b\xb5\xde\x86\x8b\x36\x55\x8c\x0e\xb3\x39\xb3\x40\xec\x10\x18\x1d\x66\x13\xa5\x21\x76\x88\xc1\xb8\x9a\xec\x21\x71\x84\x18\x5d\xe7\x9d\x38\xd3\x48\x08\xdc\x0f\xb3\x59\xac\x46\x37\x9e\x5d\x97\x6c\x80\x83\xc3\x3b\x86\x37\x92\x7c\xa4\x98\x10\x08\x21\x66\x53\xef\x80\x17\x22\x08\x27\xcc\x66\x2a\x12\x4e\x88\xc1\xe2\x48\xe1\xc7\x10\x51\xd3\x4f\x98\xeb\x78\x62\x88\xa8\xc7\xd4\x90\xbd\x6e\x38\x14\xc3\x2e\x31\x9b\x1c\x16\x76\x89\x18\xd3\x1b\x09\x89\x06\x8f\x60\x94\x89\x4e\xac\x86\x31\x44\xd4\xa3\x22\xea\x49\xcb\x3e\x86\x3d\x99\xc4\xc2\xa4\xe7\x1e\x38\x23\x02\x4b\xc4\xec\x9f\x67\x32\xae\x51\x3b\xed\x84\x75\x0e\xca\x07\x81\x25\x62\x0e\x26\x33\x18\x17\xce\x88\x49\xd3\x3c\x28\x1f\xc4\xa8\x0d\x77\xaa\x80\x0c\x0c\x12\x81\x33\x62\x2e\x17\x1e\x2f\x44\x50\x30\x98\x63\x0d\x08\x2f\x78\xd4\x46\x3b\xc7\x9a\x8a\x9f\xce\x7f\x5a\xe7\xb5\x51\x37\x88\xc1\x0c\x87\xc3\xe5\x21\xe5\x8d\x4f\x62\x92\x9a\x0e\x64\x11\x31\xcb\x6d\x9e\xd3\xa4\x45\x16\x11\x64\x0d\xe6\x64\x5c\x68\x21\x02\x11\xc4\x9c\xcc\x70\x0a\x31\x11\x41\xcc\xc9\xf1\xc1\x00\x11\x18\x20\x26\x10\x70\x4c\xe7\xdd\xe8\x1d\x66\x29\x01\xff\x85\x43\x81\xed\x21\x28\x20\xcc\x75\x6a\x80\xdf\x21\x66\xed\xad\xf3\x74\x0e\x82\xca\x21\x66\x65\xc4\xe6\x69\x71\x25\x7d\x10\x18\x1d\xe6\xa9\xb0\x86\xca\x41\xa0\x72\x98\x97\x1d\x8c\xb2\x40\x4c\xe6\x78\x8b\x43\x26\xcb\x9b\x2c\xef\xb1\xdb\xa0\x48\x88\x59\x3b\xd1\x7c\x9c\xe4\xe3\x46\x08\xd2\x00\x93\x3c\x57\xe0\x46\x08\xa4\x08\xf3\xb5\x36\x4f\x73\x9f\x0a\xc0\xa4\x70\x15\xd3\x34\x9f\xa6\xf9\xeb\x53\x23\x4c\x08\x2a\x00\xf3\xe3\xa8\x4d\x39\xa2\x59\x39\xa2\xf9\x59\x1d\x11\x1f\xc4\x54\x6d\xda\xa4\xec\x30\xe1\x07\x92\x82\x83\x46\x63\x9c\x95\x46\x88\xd3\x17\xbf\x25\x36\x91\x06\x04\xb6\x80\xc0\x98\x18\xa7\x4f\x7d\x0a\x9b\x5e\x4b\xfb\xe9\x53\x9f\xaa\xa5\x56\x99\xd4\xa9\x4c\x0a\xaf\x40\xbc\xea\x08\x90\x06\xc4\xe9\x74\xf2\x35\x29\x4e\x29\x06\x8c\x00\xf1\xb2\x27\x6c\xf0\x71\x2e\x42\x1e\x9b\x3f\x46\x80\xc0\x08\x10\x74\xab\xe2\xf4\x35\x31\x02\x04\x89\xaa\x38\x2d\xed\x88\x01\xe2\x93\xf1\xc3\x0f\x10\x78\xe3\xe3\x73\x52\x0a\xf5\x1f\xa7\xf4\x03\x50\x60\xe0\x86\x0f\x1c\x00\xf1\xdd\xba\x94\x5a\xb7\x98\x7f\x8e\x64\xe1\xfc\x63\xe1\xfc\x37\x59\x0f\xfc\xed\x71\x2e\xf2\x1c\x55\x21\xa7\x2c\xe2\xc2\xe4\x83\xe5\x05\x4c\x7e\x9c\xb5\x48\xe6\x26\xe4\x38\xa7\x2e\x2d\x9e\x1c\x41\xe9\x69\xd1\x82\xad\xcf\xdf\x6a\xc8\x77\x3f\xa1\x63\x7f\xd6\x92\xd3\x4a\x76\x2e\xf2\x1c\x69\xd5\x53\x18\x73\x56\x6e\x30\x7f\xbb\x0f\xa7\x6e\x08\x0a\x3f\x7f\x56\x1d\x48\xfb\x38\x17\xa3\x8e\x98\x16\xc4\x3e\x16\xa8\x9e\x8a\x4a\x20\x67\x8f\x13\x10\xf6\x77\x99\x21\xb2\x72\xb0\xf5\xb9\x52\xa0\x08\xd8\xe3\x04\x84\x25\x1a\x12\x78\xd8\xe3\x5c\xe4\x39\x1c\xc9\xd3\x9a\x07\x70\x9f\x14\x3a\x02\xd7\x7a\x80\xd1\x27\x54\x57\x9c\x72\x04\x0b\x3f\xbf\xb2\x87\xf0\xf3\xb1\xf0\xf3\xbb\xd3\x8d\x53\xfc\x81\x72\x3d\x8f\x6d\x5d\x34\x6d\x3e\x3c\x29\x8e\x27\xa0\xe2\xe3\x42\x9e\x73\x48\xbc\x5f\xac\x03\xc9\x7a\x1e\xe6\x12\x00\x7c\x2c\x00\xfc\xaa\x73\xc1\x99\x1e\x00\xec\x79\x7c\x35\x74\x97\x89\x79\x95\xeb\x91\x2b\x83\x06\x3b\x1e\x08\xca\x33\x1c\xc5\x23\x28\x8f\xab\x7c\xfe\xc4\xed\x1e\xc0\xdf\x71\x25\xae\x10\x69\xff\x8b\x63\xbe\xc0\xdf\x29\x11\x73\x29\x8f\x83\x01\xcf\x9c\x87\x8b\x87\x8b\x88\x4e\xd4\x7a\xe0\x1b\x0f\x44\xe3\xb9\x1c\x1f\xe0\xef\xb8\x6a\x9f\xcf\x26\x27\x88\x22\x3c\x50\x84\x67\x73\x92\x7f\xd9\xd2\xaf\x72\xa2\x13\xc6\x24\x10\x86\xc7\x42\x84\x37\x7e\xfd\x25\x20\xbf\x6a\x75\x4b\x18\x93\x00\x13\x8f\x05\x13\x6f\xd6\x64\x30\xf1\x58\x30\x71\xc4\x90\x01\x0a\x1e\x97\x39\xdf\xa4\x92\xa1\xbe\x03\xd1\x78\x2e\x2f\xe3\x72\xa6\x76\xe1\x88\x69\xca\xcd\xae\x53\x97\xea\x14\x2d\x9b\x04\x07\x98\x78\x2c\x98\x38\xa2\xe2\x80\x0f\x0f\x0c\xe3\xd9\x6d\x80\xc8\xc4\x03\x5a\x3c\xfb\xbe\x2e\xea\x3c\x43\xe8\xcd\x80\x38\x19\xc7\x1b\x9e\xbd\xaf\x8b\xfa\x89\x0e\xa6\x4b\x4f\xe3\x06\x0f\xa4\xe0\xb9\x6a\x13\x10\x7f\xc7\x85\x0e\x66\x48\xd1\x42\x6f\xc7\x42\x6f\xaf\xcd\x1f\x7a\x3b\xae\xda\xfc\x73\x28\x22\x83\xde\x8e\x85\xde\x5e\x05\x0b\x78\xbc\x03\x81\x77\x8e\x6b\xfd\xd3\xb4\x41\x18\xb5\x72\x6d\xd0\xdb\x81\x7a\x3b\xa7\x95\x01\x26\x3b\xf0\x6a\xe7\xf4\x4c\x08\xed\x00\xcd\xce\xc9\x89\x86\xd0\x0e\xd0\xec\x9c\xe6\x12\x4c\x76\x2c\x4c\xf6\x2c\xd8\x43\x20\xd4\x8e\x05\xbf\x9e\xbc\xb6\x5b\x2a\xf9\x3e\x10\x9d\x38\x19\xbf\xe5\xc5\xee\xaa\x42\xc9\x73\x5b\x17\x87\x8b\x35\xc1\x56\x51\x01\xdc\x75\xdc\x65\x4e\xb9\xaa\x02\xc0\xaf\x03\x4b\x76\x9e\xf1\xd7\x19\x0a\x48\xed\x40\xa1\x9d\xa7\xf8\x13\x4d\x76\xdc\xe5\xfb\xe7\xf2\x1d\xc0\xb0\x03\x0c\x3b\x4f\xf6\x84\x0a\x3b\xc0\xa9\xf3\x74\x4e\x7b\xb3\xbc\xbb\xf9\x27\x77\x16\xaa\x3a\xee\xca\x56\xe7\xf9\x78\x66\x5b\xb7\xd7\x57\x3d\xd7\xc0\x70\xe5\x81\xab\x73\xe5\xdc\xa0\xaa\xe3\xee\x9e\x29\x23\x7d\xf3\x32\x80\xa4\xf3\x92\x8c\xb8\x79\xd8\xf7\x58\xec\x22\x5a\xe7\x65\x60\xb6\xce\xcb\xb2\x81\xa8\x3a\x10\x55\xe7\xcd\x73\x85\x80\x0e\xd0\xe7\xbc\x15\x6b\xa0\x98\x0e\x34\xd2\x79\x3b\xc4\x01\x37\x8e\xdb\xdc\x27\x3d\x1c\xe0\xc6\x01\x67\x9c\x8f\xdd\xfb\x56\xf8\x05\x67\x9c\xcf\x6a\x9d\x95\x00\x18\xe7\x23\x0e\x01\x1b\x8e\xfb\x5d\x9c\x11\x66\x9f\x44\xf1\x8d\x59\x65\x79\x58\xa0\xc1\x01\xf6\x9b\xaf\xe4\x1e\xf4\x6f\xdc\x98\x0b\x5e\x69\xd5\x5b\x49\xe8\x8d\x34\xe9\x15\xcf\x03\xec\xc6\x83\x02\xed\x75\x42\x0e\xbe\x1b\x70\xbb\xf9\x3a\x20\x00\xdf\x8d\x67\xc3\x04\xe1\xb8\xef\xe1\x06\x3d\x3f\x2c\x03\x7c\xb1\x47\x50\xfa\x60\x2a\xf9\xac\x79\x40\xb9\xf1\x94\xe3\x93\x5f\x81\x6b\xe3\x29\xa6\x92\x78\x30\x95\x7c\x76\xb0\xc7\xd9\x2f\x34\x6e\x7e\x56\xb2\x87\x95\x3c\xac\xe4\x2b\xec\x46\x3c\xac\xe4\xc1\x54\xf2\xad\xce\xf3\x8d\x60\x73\xf3\x7b\xd7\xc5\x1a\x4f\x10\xdd\xfc\xa4\x01\x61\x73\x63\x61\x73\x57\x1a\xe8\x09\xad\x2b\xdb\xde\x9c\xcf\x43\xdc\xc6\x42\xdc\x6e\xb2\x72\x0f\xdf\xe8\x51\xb6\xbd\x15\x44\x25\xc0\x70\x03\xd5\x77\xa3\x53\x18\x70\xb4\xf1\x34\xc4\x07\x52\x0c\x70\xb4\xb1\x70\xb4\xdb\xea\xbc\x2d\x08\x9c\xb6\x6d\x9f\x7f\xf2\x9b\x9e\x01\x69\x2f\x27\xfc\x0c\x0d\x2d\xf0\x3f\x1f\x1c\x64\x36\x1e\xd0\x8f\x9f\x74\xe5\x23\x3b\xf3\x2c\x9c\x3f\x1f\xfc\x31\xbd\x17\x10\xf6\x67\x4f\x7e\xec\x21\xcf\x42\xef\x3b\x25\x7c\x94\x45\x3e\xe7\xc2\xcf\xeb\xa7\xba\x0c\xd0\xd7\xb6\xaf\xa1\x93\xd4\x7d\x2e\x90\xee\x43\x43\x92\x3b\x0b\xc9\x8a\xdf\x3c\x1e\x27\xa4\x00\xad\x6d\x17\xf9\x3f\x52\xb5\xcf\x82\xdf\x8b\x93\x1f\xa9\xda\xe7\x5e\x20\x75\xe3\xc9\x99\x5a\x50\x54\x0a\x57\x81\xf4\x3c\x40\x4a\x1b\x39\xa9\x80\x2c\x8d\x07\x2c\x8b\x48\x54\x3c\xf6\x90\x07\x02\xeb\x50\xa8\xf2\x08\x0b\x17\x42\xf4\x10\x01\x40\x81\x06\xf8\x67\x0b\x3b\x03\x14\x68\xbc\x80\xef\xab\x1c\xf6\x65\x47\x30\xa1\x2d\x76\xb7\x2f\xd7\xff\x07\x93\xed\x24\x02\xf2\x32\x16\xf2\x32\x79\x97\xaf\x72\xc3\x17\xa8\x21\xf9\xcb\xaf\x99\x0c\x80\xd9\x56\x55\xe5\x7b\xac\x68\x04\x82\x59\x3e\x1c\x1c\x33\x16\x1c\x33\x39\x53\xaf\x3c\xce\x0b\x18\x45\xcb\x23\xde\x58\x04\xb2\x40\xab\x72\xc1\x2f\xfc\x02\xa8\x66\x6b\x85\x31\x09\x18\xcd\x58\x18\xcd\x66\x47\xc0\xf4\x1e\x6f\xba\xbd\xad\x8b\x5e\x13\x5a\x6a\x79\x2e\x6f\x5b\x01\x12\xd0\xaa\x12\x0c\x38\xcc\x00\xc0\x6c\x6d\x75\x5e\xea\xf3\x45\xa2\xd1\x04\xa3\xaf\x75\xfe\xed\x5a\x57\x58\x01\x9c\x59\xa1\xd4\x1f\x17\x25\x38\x10\xbe\x07\xa8\x66\x6b\xaf\x41\xe6\xb5\xfd\x09\xdc\x94\xe1\x87\xd8\x8c\x77\x80\x8d\x3a\x25\x04\xc7\x8c\x05\xc7\xec\x82\x7c\xf4\xef\x01\x56\xd9\xba\x34\xd0\x5b\xb6\x12\x2f\x98\x78\x2f\xa4\x58\xd1\xde\xd6\xc5\xdd\x45\xad\x33\x19\xc8\xc9\xb6\xdc\x99\x77\xd1\x01\x03\x46\x0d\xa9\xe4\xf7\x5c\xcf\x04\x99\x14\x01\x80\x30\xc6\x7b\x83\x78\x5a\xac\x30\xb6\xc7\x9f\xa0\x45\x15\x5b\x78\xd8\xe3\x85\xb4\x9e\x6b\x90\x65\x24\xdf\x8a\x15\xda\xe4\xf8\xbc\xaf\x7f\x82\x4a\xcf\x35\x15\x9d\x27\xbe\xa0\xd2\xf3\x76\xf1\x73\xfb\xe7\x76\x55\x01\xdf\xa2\xc4\xad\x59\xde\xce\xf8\x4b\xa6\xcc\x00\x50\x0c\xc8\xc4\x76\xf2\xde\x3e\x31\x03\x64\x62\x3b\x0b\x69\x1f\xd0\x87\xf1\x27\xfa\xb0\x88\x59\xe2\x5b\x2c\xb8\x3b\xf0\x22\x47\x0d\x0d\x7c\xc0\x1b\xb6\xcb\x8c\xfe\x04\xcf\x38\xde\xdb\xc5\x41\x47\xee\x1e\x58\xdd\xdb\x25\xcf\xfc\xad\x50\x1a\xa7\xcd\xa5\xbc\x1c\xf0\x2f\x20\xfe\xda\xed\x40\xf8\xcb\x15\x4a\xbf\x2e\xd6\xb8\x7e\x4e\xf6\xfe\x84\xfa\x19\xd7\x4f\xda\xff\x6b\x6e\xbf\x8d\x96\x69\xfe\x01\xdf\xdc\xcf\xfa\xa7\x7e\x42\x1d\xdf\x1c\x1f\x10\xc1\xf8\xcc\xfd\x7b\xbd\xa6\xc9\xfb\x99\xbc\xab\x8c\xef\x73\x42\xfe\x55\x16\xb1\x3d\x36\xd5\x4f\x20\xf1\x0d\xd0\x34\x27\xcf\xf0\x7f\x01\xf1\xd7\x88\xfc\xc7\x27\x37\xf8\xe1\x4d\x78\x14\x95\x7c\xe2\xe4\x85\xea\x23\xb3\x1f\x9f\x48\x00\x64\xaf\xbd\x3c\x17\x78\xbc\xf8\x2c\xd8\xaf\x6c\x27\xb0\x5d\x2c\xb0\xdd\xcb\x49\x81\xab\x0b\xbc\xf1\xed\xe3\xa4\xc2\xd5\xc5\xc2\xd5\xad\xc3\xa6\xcf\x82\xfd\x3d\x0b\x35\xe5\x76\x4e\xff\x07\xe7\x4f\x05\x3b\x00\xea\xe2\xab\xda\x92\xf6\x99\xe6\x9f\x40\xf7\x7b\xdd\x3e\x8d\xbc\x7a\xd6\x85\xab\xfb\x04\x90\x1f\xa7\x7f\x41\xe8\x68\x46\xe7\xb6\x49\x4d\x00\xb3\x50\x6d\x4e\x20\xb6\x04\x62\xeb\x5b\x2d\x45\x45\x3c\x5c\x54\xc3\x30\x3b\xc5\x2f\x98\xf0\x6a\x09\xaf\xd6\x7f\xe9\x76\xee\x3a\x68\x5a\xff\xd5\xe1\x48\xc2\xa4\xe5\xa6\x68\xfc\x57\xc7\xa7\xb9\xd5\x9a\x9e\x10\x6a\x1d\xed\x78\xc2\x96\x25\x34\x59\xdf\x0b\x3a\x99\x5b\xae\x14\x0a\xd4\xcc\xe1\x9f\x8b\x12\x39\x17\xe8\x46\x3f\x05\xb3\x1b\xe8\xc7\x7e\xb9\xb8\x88\x8e\x95\x99\x22\x97\x2d\x2e\xe4\xba\x58\xfd\x24\xf1\x98\x9b\xb0\x77\xeb\xc0\x2c\xbb\x8b\x22\xdc\x0d\x76\xe3\x68\xba\x24\x44\x85\xe3\xea\xc7\xe9\x99\x98\xcc\xb6\xe9\x99\xd7\xfa\xa7\xd7\x9c\x0b\xcc\xe2\x99\x32\x30\x70\x5c\x3d\x56\xeb\x42\x54\x38\xae\x1e\xb5\x10\x26\x38\x57\x11\x32\x17\x48\xc4\x87\xc3\x8a\xb8\x9d\x40\x22\x61\x40\x2e\xcf\xbc\x16\x1e\xc4\x37\xba\x7c\x8e\x85\xdd\xe8\x46\x1e\xbd\xd9\x76\xc1\xc2\x54\xbd\x60\xc2\x78\xe5\x76\x7b\xe6\xe7\x6b\xf2\xc8\xb7\x07\xa8\xa1\xd2\x01\xb9\x09\x51\x37\xe5\xda\x19\xde\x5d\x5a\x66\x7b\xc1\x34\x2a\x4a\x4f\x20\xad\x84\xce\xea\x78\x4f\x73\x43\x56\xb8\x60\x59\x6d\xf3\xee\x18\x4b\x17\x02\x0b\xb7\x45\x82\x5e\x55\xee\xeb\x8f\x8b\x05\xa5\xc9\x9f\x49\xfb\xab\x65\xb8\xb7\x72\x4e\x13\xd8\x2a\x17\xd8\x8a\xcc\x44\xfe\x90\x15\xfe\x6a\xa5\xed\xcd\x80\xfc\xb8\xe9\x80\x58\xbd\x55\xf0\x9c\x3f\xc1\xec\xef\xa7\x4b\xd3\x33\xb1\x8e\xfd\xca\x73\xe9\xad\x52\x75\x09\xab\x95\xbf\x05\xa9\xa8\x44\x61\x02\x69\xe5\x6f\xd7\x25\x26\x03\x8f\x95\x80\x58\xbd\x7d\xde\x88\x9b\xfe\xab\xbc\x66\xa7\x70\x94\x3f\xc1\xec\x4f\xb9\x76\x2f\x54\x42\xfe\x24\x85\x60\xae\x7a\x5f\xaf\x19\x8b\x34\x1b\xd2\x21\x3d\x13\x77\xe0\xaf\x0e\xa2\x3a\x95\x9f\xfc\xa1\x09\x84\xa4\xea\xbd\x56\xda\x84\x9d\xca\xdf\x42\x4f\x30\x04\x88\xa8\xfc\x95\x3f\xd2\x47\xad\xf3\x49\xba\x22\x7f\x0b\x28\xb1\xc6\x13\xf9\xdf\x82\x3b\x8d\xd3\xbb\xcb\x64\xfe\xca\x31\xef\xca\x79\x12\x88\x29\x7f\x0b\x13\xf1\xad\x7f\x1a\x10\x55\xd4\xb3\xe8\xd1\xf3\x87\xf9\xf7\x37\xe1\x16\xc2\xed\xc8\xff\x7e\x4c\x06\x39\x41\xd2\xc8\xc8\xdf\x09\xb7\x30\x74\x9e\x21\xfc\xce\x85\x5b\x70\x91\x21\xfc\x18\x82\x14\x43\xfe\x18\x02\x2c\x53\x9f\xef\xfa\xa7\x86\x2e\x55\xfe\x9b\x2e\x61\x02\xfd\x3d\xca\xf4\x87\xdb\x1f\xaf\xc9\x10\xce\xe1\x1b\x3d\xba\xb4\x10\x0e\x6b\xda\x20\xea\x5b\x80\x23\xa5\x37\x09\x1c\x94\x3f\x86\x70\x59\x58\x7e\xa2\xd0\x1f\x8c\x41\x45\xe7\xff\xbd\x43\x51\xdc\xe2\x45\x31\x3e\xd4\xf0\xd7\x4b\xec\x28\xf3\xf6\x9a\xc3\x5d\x94\x9e\xfb\x4f\x42\x14\xac\x00\x50\x3f\x77\x29\x49\x58\xa1\x6e\x4b\x4f\x78\xa0\x5c\x78\xa0\xbb\xd0\x48\xb9\x0b\x3c\x77\x98\x42\x5b\x7a\xee\x02\x4f\x58\xa1\x6e\xf7\x4e\x90\xa1\x84\x15\xea\x76\xef\x84\x0e\xca\xdd\x8c\xbe\x8b\xc4\x31\x77\xeb\xfd\x0e\x80\x70\x57\x5e\x34\x41\x86\x72\xaf\x89\xdd\x1f\x6b\xde\x8e\x34\x7b\xb7\x09\x3c\xa9\xf5\xd0\x25\x00\x84\x67\x75\x3e\x35\x64\x9a\x3f\xa7\x7f\x9a\xe6\x7b\x53\x6f\xcf\x46\xf7\x72\x52\x72\xe1\x81\xa8\x54\xe4\x6e\xee\xef\xe6\x3e\x91\xa8\x04\x12\xca\xbd\x4c\xa0\xbf\xd6\xe6\xbd\x4b\x5a\x77\xd5\xe9\x15\xd7\x25\xe4\x50\x2e\xe4\x10\x5e\xc9\xdc\xbb\xf1\x04\x1b\x7e\xeb\x78\x22\xc1\x89\x72\xef\xaa\xe8\xd3\xd0\xc9\xf7\xef\xc3\x33\x2b\xa9\x9b\x30\x46\xc5\xe3\xfe\xc7\x45\xfb\x27\x70\x51\xee\xe5\xea\x74\x95\x26\xb9\x4b\x9d\xee\xec\xe9\x2b\xf8\x60\xee\x88\x79\x77\xa0\x40\x95\x26\xb9\xcb\xea\xec\x80\xc5\x9f\x65\x63\xc7\x9b\xb9\x03\x16\x43\x5c\x27\xc4\x51\x42\x13\x75\xae\x47\xee\xe7\x22\x8c\xaf\x2e\x7d\xa6\x39\x6c\x51\xee\x97\xdb\x2d\xed\xbb\x2c\xe9\xce\xc8\x3e\x0b\xcc\xce\xc8\x40\x8c\xc6\xb6\x46\xfe\xf2\x46\xb5\x05\x0d\x5a\x09\x49\x79\x26\x49\xce\x8c\xad\xfb\x9a\x8f\xe9\xad\xb2\x90\xb2\x40\xc2\x01\x25\x1c\xd0\xf8\xfd\x74\x69\x1d\x02\x94\x8b\x34\x96\x3f\x02\xeb\x93\xfb\xa7\x18\xbb\xfb\xa7\x2c\xe9\xfe\x29\xc6\x66\xe2\x20\x3f\x09\xf2\x33\x7e\x05\x01\xc8\x03\xc7\x25\x3c\xcf\xd8\xad\x10\x07\x96\xfb\x43\xb5\x3f\xe5\xa8\x3c\xf8\x4d\x87\x0a\x23\x1a\xdc\x09\xc1\x93\xa0\x3b\x63\x2f\x9f\x31\x0f\x84\xf6\xc7\xbe\x2a\x9e\xdd\xfe\x27\x4d\xbd\x3a\xe6\x3a\x31\x49\xe8\x9e\x3c\x0e\xb7\x57\x5e\x34\x0f\x66\x78\x28\x22\xdc\x6d\x2c\x07\xb7\xeb\x50\x44\x08\x19\x9c\x07\xb7\x0b\x0e\x68\x1c\xbb\x67\x1e\xff\xff\xac\xa3\xaa\x93\xeb\xdd\x0f\x1b\xcb\x51\x1b\xcb\x20\xd0\x5c\x9c\xf7\x75\x71\xb8\xa8\x9f\x1c\xb4\x23\x14\x37\x4f\xad\xb3\xcd\x43\xb5\xff\x61\xcd\x3b\x64\x47\x0f\xb5\xbc\xb2\x09\x79\xd8\x97\x8e\x32\xd8\x11\x75\xc0\x9e\x87\x73\x09\x18\xa1\x11\xcd\x6b\x2e\x42\xfb\x72\xe5\xc6\xf2\x5c\xa0\x82\x8a\x4e\xbf\x6a\x8e\xfd\x93\x19\x1e\xca\xf5\xe3\xd6\xd0\xd0\x50\xed\x44\x63\x39\x29\x60\x3d\x09\xcf\x33\xd2\xc2\x72\xd4\x99\x5a\x1e\x4a\x03\x11\xbe\x17\x37\x7f\xb1\xf1\x6f\xca\x8b\xcb\xb4\x0f\xbb\x0d\x98\xcd\x68\xbb\x7f\x5e\x3a\x5f\xfb\xcb\x68\xdc\x43\x18\x9a\x3c\x54\xec\xb5\xae\xf5\xdb\x64\x50\x77\xdb\x4e\xfd\xbc\x8d\x92\x8a\xbd\x66\xa5\x85\x9a\x49\xa8\x99\xd1\x3e\x53\x91\x2f\x76\xa8\xbb\x75\x3c\x91\x00\x32\x79\xb0\x8e\xbe\xaf\x7f\x6a\xfd\x51\x1f\x7c\xe8\xfc\xe3\x99\x8a\x71\xfb\xa1\x4b\x4e\xd8\x8e\xda\xb3\x46\x3f\x74\x49\x72\x15\xcc\x66\xf4\xe6\x76\x8c\xf4\x07\x93\xe9\xb6\x9e\x43\x72\xf5\xa8\x50\x63\xf4\xca\x50\x64\x38\x04\x88\xf2\x9b\xc6\xe4\xca\x85\xf4\x66\xa8\x95\x9b\x95\xfa\x4c\xb0\x97\x5c\xb0\x97\x59\x27\x7a\x19\x87\xd3\x30\x65\xe5\xb3\x4a\x84\x32\x4c\xef\x85\x70\x99\xcf\xba\x38\x5c\x9c\x2e\xde\x2e\x7a\xa6\x02\xba\x59\xcc\xa3\x09\xe1\x92\x0b\xe1\x72\xfe\xd6\xc5\xdd\x45\xd5\xb4\x95\xbf\x4b\x60\x96\x8c\x50\x77\x6b\xf5\x06\x66\xc9\x05\x66\x39\x7d\xe2\x70\x16\x17\xab\x46\xb6\x72\x97\x19\xb6\x9e\x68\x9e\xc9\x89\x86\x38\xc9\x58\x45\xae\xdc\x99\x90\xbd\x8f\x8a\x3f\xc6\x55\x47\x9c\x09\x47\x92\xa1\xda\xfb\x9e\xfe\x89\x80\x3d\xaa\x00\x60\xdc\xe6\x3c\x90\x48\x2e\x90\xc8\xbd\x5e\xd3\x09\x30\x58\xc8\x78\xb6\xef\x2f\x1d\x8a\x70\x7e\xb6\xc0\x22\x0f\x17\x39\x4c\xf3\x05\xfd\x78\xac\xb8\x30\x1f\x19\x0a\x53\xf1\xba\x64\x20\x4f\x06\xf6\x18\xef\xe6\xab\x52\x4e\x88\xca\xfe\x8f\xb7\x79\x09\xd1\xc5\x82\x69\x90\x54\x4a\x30\x8d\x5c\x30\x8d\x77\xbd\xae\xe8\x02\xdc\x62\xbc\xd6\xbc\x30\x4f\xc3\x3c\x95\x63\xcf\x78\xb5\xae\x3e\x1c\x0f\x49\xc6\x6b\x08\x2b\x24\x1e\xdf\x6a\xdd\xe4\x0d\x93\xf7\xbb\x4c\x49\x27\xc1\x51\x73\x78\x7c\xf7\xfa\xe7\xe9\xe2\xa5\xd4\xb2\x26\x45\x5a\xef\xe1\x25\x26\x82\xdd\x04\x9b\xc8\xfc\x29\xa0\x34\x79\x49\x85\x25\x8d\xb0\xb9\x55\x61\x45\xa6\x9d\x21\x7f\xea\x05\x35\x94\x4e\x06\x72\x57\xec\x68\xf2\x42\x5d\x64\xee\x1a\x32\xc8\x89\xd8\x3c\x77\x0d\x7d\xeb\xf6\xe9\x62\x55\x9a\xac\x0d\x30\xb9\x72\x59\x5b\xc9\xfc\x55\x72\x2f\x93\x2b\x07\xc2\x31\x7f\x55\xc1\x91\x59\x9b\x47\xe6\xa1\xe0\xcf\x34\x4f\x46\x96\xc7\xaa\x41\xd4\x90\x9d\x21\x43\x15\xa0\xf5\x29\xed\x0c\x20\x1c\xf3\xb7\x46\xc9\x26\x90\x2a\xe1\xe4\xc3\x13\xa0\x23\x53\xed\xe9\xce\x0f\x4d\x9b\x40\xa6\x7f\x72\x52\xa0\x3c\x32\xcb\x82\xe6\xde\xfd\x73\x1d\x4e\x37\xf5\x82\xa2\x4a\xf8\x8c\x4c\x75\xa2\x6b\x57\x04\xd3\x48\x30\x8d\x09\xb3\x93\xc0\x17\x09\x7c\x31\x8f\x34\xc8\xdc\x2e\xe0\x8b\x79\x58\xde\x80\x2f\x12\xf8\x62\xae\x20\x3f\x85\x31\xc0\x17\x73\xed\x75\x29\xf2\xcf\xa9\xdc\xf0\xd6\xcf\xb9\x8e\xdb\x3d\xd3\xea\x98\x4a\x37\x52\x91\x0e\xb9\x96\xd2\x0e\xa9\x8b\x8a\x1d\xd7\x77\x9f\x86\x4e\xd9\xd9\x61\xbd\x4f\xb6\x99\x65\x9b\x33\x36\xad\x8b\x82\xb2\x5c\xb2\x19\x3f\xdf\x88\x2f\x96\x97\x62\xc7\xe6\xbb\x3b\xc6\x4e\x55\x6b\xc1\x49\x49\x9b\x55\x96\x9f\x36\xd7\xa6\x0a\x24\x92\x40\x22\x33\xd7\x6b\xde\x86\xae\x12\x5b\x93\x8e\x49\x02\x89\x64\xaa\x28\xcd\x35\xbd\x97\xfe\x89\xa2\x37\xec\x9b\x99\xce\xb6\xc1\x42\x26\x02\xcb\x4c\x06\x0b\xd0\x31\x9b\xec\x4c\xbe\x6e\x7f\x15\x11\x72\xbb\xc0\x3b\x12\xae\x63\x36\x8b\x6b\xb2\xe2\xfc\xd4\xe1\x6d\x3e\x1c\x2b\xce\xb2\xe2\x89\x7a\x20\xf3\x33\x6d\x2a\xc0\x9a\x5d\xda\xa2\x49\x1c\x40\x80\xcc\x5e\xe7\x0b\xd9\xe4\x08\x5a\x25\x65\x67\x97\x0e\x68\xea\x39\xc0\x42\x66\x97\x1f\x69\xec\xbd\xb1\x77\x12\x7f\xd9\xe4\x08\x80\x44\x66\xd7\xf9\x26\xcc\x6a\xec\xbd\x8b\x3f\x1a\xa7\xaf\xed\x3a\xef\x8d\x1a\x7b\x6f\xec\xbd\xbf\x9e\x29\x9b\x00\x63\x32\x55\x07\x64\xa3\xa9\x02\x6a\x32\xbb\x88\xaa\xf1\x19\x61\x4c\xe6\xd8\xfc\x93\x69\x43\x95\xcc\xc1\xe9\x83\x23\xc9\xa6\xf2\x75\x54\x9d\x7d\x36\xbb\x62\x0b\xf5\x82\xfc\xe5\x46\x29\x05\x9c\x64\x0e\x33\xa4\x85\xd6\xd9\xfb\xe8\x9e\x29\x2b\xd7\xca\xc2\xe7\xa8\xc2\x8a\x6c\x54\x8c\x9a\xca\xd7\x61\x05\x83\x31\x49\x18\x93\x49\xdc\x24\x81\x4b\x12\xaa\x64\xce\xdd\xed\x34\x0b\xc0\x49\xe6\xb4\x58\x81\x93\x64\xb3\x08\xcc\xc3\x78\x8a\xd2\x00\x48\xe6\xf2\x1d\x1a\xfd\x93\xa6\x04\x7c\xde\x3e\x87\xd8\xab\x75\x0d\x55\x01\x5d\x36\x61\x56\x53\xed\x3d\x45\x2a\x6d\x95\xad\x0c\x25\x81\x9b\x01\x99\x5a\x9f\x8a\x07\xc3\xc8\x3b\x12\x6f\x4a\xed\xce\x42\xa3\x24\x3c\x48\xb6\x53\x09\xa3\x5d\x06\x3a\x24\xc1\x42\xe6\x69\x11\x00\xe8\xc8\xa6\xda\x1b\x13\x40\x82\x77\x24\x5c\xc7\xbc\xea\x08\x3e\xc1\x3b\xb2\x55\x9c\x34\xaf\x4d\x3f\xef\x55\xf5\x52\x73\xe9\xfa\x79\x4d\x8e\x24\xe8\xc7\xbc\x2c\xfe\x8d\xc1\x36\x06\x7b\xed\xeb\x9f\x5e\xb3\x4e\xe2\xe7\xb5\xeb\xbc\xbd\x18\x02\x64\x5e\xd6\xe4\x46\x9e\xa0\x3d\xca\x21\xe7\xbf\x68\x79\xe4\xf1\xaf\xfe\x04\x90\x48\xb6\xda\xbc\xe7\x25\xde\x69\xb6\xe4\xa6\x58\xf5\x96\x3c\x06\x07\x49\x70\x90\x79\x1f\x86\x80\x3f\xd9\xca\x7c\xe7\xbd\x66\xa4\xd4\x20\x38\xc8\x7c\x84\x0c\x9d\x31\xf7\x0a\xcf\xe6\x63\x08\x7a\x1d\xb4\x24\x54\xc8\x7c\x78\x9e\x9d\xf6\x00\x8c\xc8\x54\x9a\x90\x9d\xd9\x77\x66\xaf\x34\x21\xa9\x62\x26\x39\xcc\xf9\x34\xb7\xb3\x70\xf8\x91\xf9\x88\x0e\x60\x44\x12\x46\x64\x3e\xcc\x1e\x46\x24\x61\x44\xe6\x73\x6b\x88\x89\x42\x7e\xcc\xe7\x75\x3b\x99\x81\xae\x38\xfd\xe1\xbc\x75\xde\x2c\x00\xc8\x7c\x45\x70\x9d\x37\x0b\x0e\x32\xd5\x4f\x66\x67\xb7\x9d\xdd\xd2\xac\xcc\x6e\x4b\xee\xa1\xa0\xd4\x7a\x0d\x1c\x92\x50\x21\xf3\x15\x19\x75\x5b\xf2\x82\x83\xbc\x75\x58\x98\x70\x20\x09\x00\x32\xdf\x3a\x4e\x4e\x38\x90\xec\x65\xa9\x93\x76\x44\xf6\x5c\x45\x4f\x9b\x8b\x9e\xc9\x6e\xa1\x42\x26\x7d\xc9\x04\x07\xc9\x05\x07\xc1\x28\x97\x70\x20\x09\x00\x32\x21\x69\x12\xf2\x23\x17\xf2\x03\x78\x3f\x01\x39\xb2\xab\x2e\xff\xa6\xf1\x94\x87\x03\x58\xd8\xb6\xd3\x64\x50\x3c\xd8\x6b\xb3\xd9\xb6\xcb\xed\x8f\xd6\x6b\x9e\x6d\x1b\x6b\xec\xb6\x10\x92\x97\x1b\x3a\xb4\x1c\x05\x14\xcc\x51\x93\x61\xdb\x2c\x64\xa0\x06\x39\x6a\xb9\xdf\x36\x5b\xf2\x30\x19\x48\x57\x6e\xbf\x7d\xfd\xf3\x76\xf1\xad\x8b\x52\x58\x40\x09\x49\xb3\x72\xfb\x09\xac\x86\xe5\x7e\xd4\x44\xd9\x20\x3f\x72\x70\xef\x46\x2d\xf0\xdb\xcf\x52\x32\xb8\x77\xa3\xdc\xbb\x6d\xa5\x32\x48\x5e\x26\xc9\xcb\xed\xd7\xb4\xbe\x74\xb5\x76\xad\xd7\xc1\x73\x69\x67\x95\x5a\x56\xbd\xe6\x61\xe8\x00\x1d\x12\xb4\x61\x3b\xaa\x46\x2b\x21\x1c\x92\x78\xe4\x76\x5c\xfe\x29\x8a\x21\xbc\xb8\x85\x70\x69\x70\x47\x06\x82\x46\xe0\x9e\x1c\xab\xb2\xac\x36\xda\x43\xe5\x6a\x2a\x24\xcf\x51\x83\x7c\x20\x19\xc8\x69\x90\x27\xaa\xd1\xcd\xca\x30\x55\x29\x2e\x09\xbb\xad\xce\xaf\x52\x65\x75\xaa\xac\x3e\xb6\xef\x5f\xd2\xa2\xef\xdf\x9f\xfb\xdf\xcf\x7f\xfc\x8f\xff\xf5\xbf\xcf\x7f\xfc\x9f\xf3\xdf\xdf\xbf\xdd\xff\xf5\xcf\x7f\xbe\x7f\xff\xcf\xe7\xdf\xee\xff\xfc\xdb\xff\xfc\xe3\xea\xdf\x9e\xf7\xfb\xb7\xbf\xbf\xff\x7c\xff\xef\x7f\xfc\xd7\x3f\xef\xf7\x6f\xff\xf8\x8f\x7f\xfc\x71\x57\xfd\xfe\x5f\x00\x00\x00\xff\xff\x9f\x82\x60\xf5\x33\x11\x03\x00"); +func _gfb ()(*asset ,error ){_ddd ,_afc :=_ebfe ();if _afc !=nil {return nil ,_afc ;};_effd :=bindataFileInfo {_ee :"Adobe-KR-9",_ffd :2173,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491457,0)};_cfbe :=&asset {_da :_ddd ,_dc :_effd };return _cfbe ,nil ; +};func _ged ()(*asset ,error ){_ecc ,_egc :=_fbg ();if _egc !=nil {return nil ,_egc ;};_egcf :=bindataFileInfo {_ee :"Adobe-CNS1-3",_ffd :1881,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491185,0)};_aag :=&asset {_da :_ecc ,_dc :_egcf };return _aag ,nil ; +};var _befa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9a\x4f\x8f\x1c\xb7\x11\xc5\xef\xfb\x29\xfa\xe8\x1c\x9c\x25\x8b\x4d\x36\x09\x08\x03\x18\x92\x8c\xe8\x60\x39\x88\xa2\x24\x40\x90\xc3\x34\xff\x08\x0b\x44\xb3\x8b\xdd\xd5\x41\xdf\x3e\x20\x59\xc5\x57\x36\x72\xb0\x05\x43\x54\xd7\x72\xa6\x9a\xaf\x59\xfd\xf8\xab\xbd\x7f\xfb\xe1\xdd\x87\xdb\xc3\xeb\x76\xff\xd7\xe7\xc7\xfc\xa9\xbe\x6e\xed\xe1\x56\x9e\xeb\xcb\xe3\xb7\xe7\x5c\xb7\xb3\x7e\x79\xb8\xdd\xdd\x59\xda\xca\x43\x7e\x95\x7f\x8e\xbf\xf2\xd7\xeb\xd3\xdd\x5d\x9f\xff\xe9\xfb\xcb\x6b\xfd\xfa\xe1\xd6\x1e\x37\x37\x7f\xae\x7c\x7b\xe2\x9f\xdd\xb6\xfb\xbf\xd5\x2f\x0f\x2f\xaf\xcf\xdf\xb7\x1f\x7e\x2a\x8f\x67\xfd\xd3\x56\x6a\xeb\xd7\x7f\x7d\x2e\xf5\xf9\xe1\xf6\x65\xfb\xe1\xed\xc7\x4f\x76\x5d\xfe\xf4\xed\xe9\xe9\xbf\xf5\x6b\xbd\xbd\x6e\x66\x5c\xab\xb7\x32\xfe\xbe\xbb\x7f\xfb\xcb\xf5\xe9\xe3\xf5\x6b\xdd\xee\xdf\x7e\xfc\xf4\xe3\xfb\xcf\x6f\x7f\xfc\xcb\x88\x8c\xc0\x3f\xea\xf3\xcb\xc3\xe3\x6d\xb3\xe6\xcf\xc6\x04\x5c\xff\xfb\xf7\xa7\xba\x59\xfe\x84\xcf\x1f\xde\xfd\xda\xda\x4b\x7d\xdd\x9c\x99\x9f\x7e\xff\xaf\xcf\x1f\xde\x6d\xff\xb6\x9b\x35\x1b\x79\x17\xe3\x7f\xf8\x47\xff\xf9\xcb\x63\xa9\x9c\xc2\x9d\x9f\xb7\x93\x1f\x4b\x7d\x79\xba\xe6\xfa\x7c\xbd\x7d\xa9\x77\xdb\xf6\xc6\x98\xcb\x36\xff\x7b\x13\xcd\xa5\x5f\x89\xef\x7f\xb2\xfd\xcf\x65\x0e\x7f\x7e\xff\xf3\x7b\xb9\x4e\xb8\x4e\xfa\xba\xc3\x75\xb7\xae\xcf\x6b\xe3\x93\xe7\xb5\x7a\x2b\xbf\xfb\xfe\x3b\x3b\xd3\xba\x3d\xbe\x96\xda\xe6\xb5\x91\xd1\x1b\xdb\x2e\x9b\x75\x61\x8f\x7d\x96\x0e\xdf\x59\x63\xf8\x5e\x1e\x0a\xcf\xa0\x3e\xe3\xa8\x32\xe3\x4d\xac\x57\xdb\xff\xf4\x8c\xc6\xb0\xd5\xcb\x96\x12\x07\x08\x01\xea\x01\x9b\x1c\x47\x1c\x22\x2e\xd7\xcb\x46\xf1\xe0\xc8\x8e\xc8\xde\xe7\x38\x27\x73\x3c\x22\xbe\xe6\xcb\xb6\x93\xcc\xf1\xb5\xae\x48\x33\x97\xcd\x1b\x99\x13\x30\x27\x9c\xb5\x47\x02\x47\x0e\x44\xc6\xd0\x27\xbf\x22\x84\xc8\x7e\xd9\xbc\xc3\x1c\x8f\x88\xef\x73\x10\x09\x88\x84\x3e\x27\xad\xc8\x81\xc8\x71\xd9\x82\xa1\x15\x89\x88\xc4\xcb\xe6\x77\xb3\x22\x09\x91\xdc\xe7\xb8\x15\x29\x88\xb4\x3e\xc7\x4a\xe4\x34\x2b\xd2\x87\xc1\x1c\x2b\x82\x3b\x3d\xc7\x9d\xa6\xb8\x42\xb8\xd5\x3e\x0c\x06\x11\x87\x88\xbb\x6c\xc1\xae\xe4\xce\x1d\x91\xbe\x3c\xfb\xbe\x22\x58\x9e\x3e\x0c\x16\xc9\x61\x79\xfa\xd0\xa7\xf5\x8c\x1c\x27\xd6\xa7\x0f\xfd\xbe\x74\x38\xb1\x3e\x67\xea\x1f\xb7\x56\xee\xbc\x22\x72\xed\x73\x96\x0e\xe7\x89\xc8\xd9\x6f\xc8\x20\xef\x8c\x50\xee\x93\xb0\x40\x58\xd4\x3e\x0c\x16\x77\x54\x11\xa9\x97\x2d\xac\x87\xf1\x38\x1b\x22\x6d\x7c\xd1\xca\x3b\x43\x89\x6c\xfb\xa4\xf5\x71\x19\xcb\xdd\x87\x7e\x6d\xa1\x23\x63\xb9\x73\xe8\x73\xd6\x1d\x65\xac\x4f\x1e\xeb\xb3\x56\x2e\x63\x7d\x72\xbf\xd7\x7d\xad\x4f\xc6\xad\xe6\xf1\xfc\xe0\xb1\xcf\xb8\xd7\x3e\x0c\x58\xba\x8c\x7b\xed\x43\xef\xd7\xca\x65\xdc\x6b\xe9\x8f\x16\xd2\x2e\x78\xb4\x4a\x7f\x7e\xfc\x4a\xa1\xe0\x86\x4a\xdf\x2a\x7e\x3d\x0b\x05\xcf\x42\x89\x7d\xce\x5a\x9e\x82\xc7\xbe\x74\x59\x55\x04\xb2\x96\x29\xeb\x12\xaf\xe0\x5e\x4b\xbb\x6c\x07\xad\xb4\x2b\x74\xe8\xc3\x83\x96\x42\x15\x69\xf7\xa1\xf7\x6b\x11\x2a\x14\xaa\xbe\xcf\x41\x04\x69\xf7\xa1\xf7\x2b\x83\x0a\x85\x6a\xb9\x6c\x87\x43\x06\x58\xd2\x3e\x0c\x46\x7d\x1c\xd6\xb4\x51\x9f\xb4\x3e\xae\x61\xe5\xfa\x30\x18\x5a\xcb\xdd\xb0\xf5\x5a\xbc\x6c\x07\x76\x7f\xc3\xd2\xf5\x61\x30\xb4\x1e\x93\x86\xcd\xd2\x7a\x7a\x50\xbc\x21\xbd\x3e\x8c\x6b\xbd\x23\x8a\x63\xec\xe5\x2c\x7a\xbf\x22\x07\x22\xc7\x65\x8b\x81\x56\x24\x22\x12\x7b\x24\xac\x48\x42\x64\xe8\x1a\x57\x64\xe9\x1a\x7b\xfd\x89\x41\x56\x21\xa2\xfe\x8c\x61\x30\xf8\x38\x14\xa0\xd8\x8b\x49\x3c\x56\x72\xa8\x25\xb1\xd7\x05\x6b\xd6\x4e\x8e\xa7\xfa\xa6\xfe\x04\x59\x24\x8e\xc2\x10\xfb\x26\xb7\xc6\xae\xfc\xb0\xcb\x63\xdf\xa1\xd6\xd0\x9a\x95\x91\x45\xdf\x63\x16\x2b\x1e\xb1\xc7\xc6\x30\xd8\xe0\x56\xa8\x22\x54\x47\x68\x7d\x17\x76\x59\xec\x7b\xc9\x9a\xf5\x0e\x89\xd8\x4c\x63\x18\x6c\x40\x08\x69\xf4\xed\x63\x29\xae\x0f\x2c\x57\x84\xae\xbd\xa6\x60\xa1\xb0\x9f\x62\x7f\xe2\x2d\xa5\xb5\x50\x15\xdf\xd5\x87\x3e\x98\x15\xc1\x57\xf5\xa1\x75\x6b\x13\xc6\xea\x11\x3a\x7a\x68\xd5\xea\x58\xf1\x58\xd4\xf3\xb2\xd9\x10\x97\x90\x15\x0b\xdf\x87\x3e\xd8\x15\xc1\x0a\xf6\x17\xba\x0d\xeb\xed\x1c\x1b\x1e\xcd\x76\x5e\x36\x32\xf8\xbc\x86\xcf\xeb\xcf\x33\xa1\x56\x26\x3c\xd0\x63\x78\x1c\xce\xae\x10\x21\x44\x7d\xd6\x2a\x62\xe9\xea\x10\x72\x63\x16\x42\x3b\x42\x7e\xcc\x72\x2b\x14\x10\x3a\x2f\x9b\x33\x3b\xbe\x2b\x23\xd4\xcd\x8d\xb7\x7e\x85\x1a\x42\xed\xb2\x25\xb3\x8a\x52\xc2\xab\x7d\x0c\x13\xb6\x70\xc2\xbb\x3d\xf5\x6d\xe2\xd2\x7a\xd4\x12\xb6\x49\xea\x6f\xe3\xdd\xe1\xbe\xf0\x3a\x1e\xc3\xfd\x58\x2f\xdd\x84\x2d\x94\xfa\xfb\xd7\x9b\x1d\xb3\x12\x42\xe3\x51\x33\x32\x2d\xc3\xe9\x65\xea\xef\x3c\x2f\xbb\x2b\xc3\xcf\xe5\xe1\xe7\xba\xcf\xea\xf6\x54\x2c\xe5\xff\x73\x99\xe3\xa7\x61\xf7\xb2\xef\x13\x43\x64\x31\x33\x4c\x5d\x0e\x3d\x72\x44\xbe\xe7\x0c\x53\x97\x67\x45\x3b\xf8\x09\xcd\xa8\x68\x79\x3c\x1b\xe9\x60\x4d\x32\x1e\x8d\x9c\x86\x49\x35\x41\xee\xea\x8a\xd0\x75\x84\xac\x97\x1c\x4e\x84\xce\x11\x22\xd1\x3f\x67\x84\xf2\x08\x39\x71\x1a\xb9\x20\x54\x46\x68\x97\x47\x23\x57\x84\xea\x08\x79\x27\x69\x34\x84\xda\x08\x05\x29\x35\xc5\xac\x50\x31\x23\x74\x10\xa7\x51\xe0\xca\xcb\x70\xe5\x36\x5a\x4e\xa3\x40\xad\xc2\xbe\x5c\x9c\x5a\x81\x31\x2f\x6e\xec\xa1\xe5\x6b\x0a\x94\x2c\xfb\x0c\x89\x89\x2b\xd0\xaa\x0c\xad\x68\x39\xfd\x02\xb1\xca\x10\x8b\x96\xd5\x2f\x50\xab\x0c\xb5\xc8\x45\x49\x03\x72\x95\xb9\x95\x77\xa9\x5d\x05\x7a\x95\x34\x77\xb9\x14\xc3\x02\xbd\xca\xd0\x8b\x82\xec\x86\x02\xbd\xca\xd0\x8b\x0e\x79\x7f\x17\xe8\x55\x86\x5e\x14\xc5\xab\x14\xe8\x55\x86\x5e\x94\xe4\x89\x2f\xd0\xab\x0c\xbd\xdc\x2a\xd7\x05\x7a\x95\xa1\x97\xb3\x62\x1b\x2b\xf4\xaa\x43\x2f\x47\x72\x88\xa9\xd0\xab\xda\x79\xf0\x21\x4e\xa3\x42\xaf\x3a\xf4\x72\xbb\x94\x8d\x0a\xbd\xea\xd0\xcb\x79\xc3\x69\x54\xe8\x55\xe7\x49\x6a\x1d\x23\x2a\xf4\xaa\x7e\x86\x92\xa4\x01\xbd\xea\xd0\xcb\x1d\x49\xd2\x80\x5e\x75\xe8\xe5\x62\x94\x34\xa0\x57\x1d\x7a\xb9\x74\x48\x1a\xd0\xab\x0e\xbd\x76\x73\x48\x1a\xd0\xab\x0e\xbd\x76\x2b\xef\xff\x0a\xbd\xea\xd0\x6b\x27\x79\x39\x54\xe8\x55\x87\x5e\xbb\x13\x77\x52\xa1\x57\x1d\x7a\xed\xbb\xbc\x01\x2a\xf4\xaa\x43\xaf\xdd\xef\x92\x06\xf4\xaa\x43\xaf\x3d\x88\x19\x6b\xd0\xab\x0d\xbd\xf6\xf5\xde\x68\xd0\xab\x0d\xbd\xf6\x28\xfe\xb2\x41\xaf\x36\xf4\xda\x93\xe5\x34\x1a\xf4\x6a\x43\x2f\x6f\x2c\xa7\xd1\xa0\x57\x9b\x95\xd2\xca\xfb\xb5\x41\xaf\x36\xf4\xf2\x64\x24\x0d\xe8\xd5\xc2\x0c\xc9\xab\xb2\x41\xaf\x36\xf4\xf2\x4e\x4a\x68\x83\x5e\x6d\xe8\xe5\x77\xa9\xa1\x0d\x7a\xb5\xa1\x97\xf7\x52\x44\x1b\xf4\x6a\x43\x2f\x1f\xa4\x8a\x36\xe8\xd5\x86\x5e\xfe\x90\x2a\xda\xa0\x57\x1b\x7a\xf9\x28\x55\xb4\x41\xaf\x56\xfa\x11\xc6\x27\xae\xa2\x04\xa8\x40\x13\x2a\xf8\xc4\x87\x6d\x02\x56\xa0\x89\x15\x82\x49\x86\x43\x0e\xa1\xb1\xbc\xc1\xc6\x9d\x43\x3b\x42\x63\x79\x03\x1d\x91\x43\x1e\xa1\xf9\xaa\x71\x07\x71\x28\x20\x34\x96\x37\xec\x41\xd2\x38\x10\x1a\xcb\x1b\xc4\x2a\x11\xfc\x33\x4d\x27\x12\xe4\x90\x43\x70\x22\x74\x1d\xcb\x1b\x8e\x5d\xd2\xb8\x22\x74\x9d\x6f\xbc\x5d\xd2\x38\x11\x1a\xcb\x1b\x92\x93\x34\x32\x42\x63\x79\x0f\xe3\x24\x8d\x82\xd0\xd8\x0e\x87\x25\x49\xa3\x22\x34\xb6\xc3\x41\x56\xd2\x68\x08\x8d\xed\x70\x88\x99\xa3\x73\x6d\x07\x3a\xc7\x76\x38\x76\x3e\x58\xd2\x09\xbd\xce\xa1\xd7\xe1\xf9\xe4\x4d\x27\xf4\x3a\x69\x86\xd8\x6d\xd2\x09\xbd\xce\xa1\xd7\x11\xd8\xbe\xd2\x09\xbd\xce\xa1\xd7\x71\x44\x49\x03\x7a\x9d\x7e\x1a\x80\x43\xd2\x80\x5e\xe7\xf4\x06\xe9\x90\x34\xa0\xd7\x39\xcd\x81\x09\x92\x06\xf4\x3a\x87\x5e\xd1\x7a\x49\x03\x7a\x9d\x43\xaf\x48\x5e\xd2\x80\x5e\xe7\xd0\x2b\xba\x5d\xd2\x80\x5e\xe7\xd0\x2b\xee\xbb\xa4\x01\xbd\xce\x3c\x4f\x5d\x4e\xd2\x80\x5e\xe7\xd0\x2b\x06\x92\x34\xa0\xd7\x59\xa7\xb3\x21\x49\x03\x7a\x9d\x43\xaf\x18\x2d\xa7\x91\xa1\x57\x1e\x7a\xc5\xc4\x18\x87\x32\xf4\xca\x13\xda\x19\xc3\x69\xc0\xcc\x51\xa6\x19\x62\x60\x44\x19\x7a\xe5\xa1\x57\xb2\x89\xd3\x80\xd1\xa3\x69\xf4\x12\x45\x49\x03\x7a\x4d\x2b\x97\x5c\x94\x34\xa0\xd7\xf4\x72\x69\x3f\x24\x0d\xe8\x35\xcd\x5c\xf2\x41\xd2\x80\x5e\xec\xe6\x42\x90\x34\xa0\xd7\xb4\x73\xe9\xf0\x92\x06\xf4\x9a\x76\x2e\x45\x2f\x69\x40\xaf\x69\xe7\x52\xda\xf7\x3f\x62\x53\x09\x6e\x8f\xd8\xed\x19\xe3\x24\x4d\xe8\xc9\x76\xcf\x58\x27\x79\x42\x50\xf6\x7b\x86\x48\x12\x85\xa2\x6c\xf8\x8c\x63\xaa\x41\x70\x7c\xc4\x8e\xcf\xec\x7c\xc8\x25\x58\x3e\x62\xcb\x67\x3c\x03\x3d\x82\xe7\x23\xf6\x7c\x46\x48\x24\xc1\xf4\xd1\x34\x7d\xd6\x04\x29\xb6\x70\x7d\x34\x5d\x9f\x35\x87\x54\x5b\xd8\x3e\x9a\xb6\xcf\x9a\x28\xe5\x16\xbe\x8f\xa6\xef\xb3\x26\x49\xbd\x85\xf1\xa3\x69\xfc\xac\x35\x52\x70\xe1\xfc\x68\x3a\x3f\x6b\xad\x54\x5c\x58\x3f\x9a\xd6\xcf\x5a\x92\x92\x0b\xef\x47\x85\xbd\xba\x93\x9a\x0b\xf3\x47\xd3\xfc\x59\xbb\x4b\xd1\x85\xfb\xa3\xe9\xfe\xac\xf5\x52\x75\x61\xff\x68\xda\x3f\x6b\x85\xcb\x11\xfc\x1f\x4d\xff\x67\xad\x70\x1f\x82\x01\xa4\x69\x00\xad\x8d\x52\x78\xe1\x00\x69\x3a\x40\x6b\x93\x54\x5e\x58\x40\x9a\x16\xd0\x92\x91\xd2\x0b\x0f\x48\xd3\x03\x5a\xb2\x52\x7b\x61\x02\x69\x9a\x40\x4b\x24\xc5\x17\x2e\x90\xa6\x0b\xb4\x24\x67\x7d\x82\x0d\xa4\x69\x03\x2d\x39\x29\xbf\xf0\x81\x34\x7d\xa0\xa5\x5d\xea\x2f\x8c\x20\x4d\x23\x68\xc9\x4b\x01\x86\x13\xa4\xe9\x04\x2d\x05\xa9\xc0\xb0\x82\x34\xad\xa0\xa5\x43\x4a\x30\xbc\x20\x4d\x2f\x68\x29\x4a\x0d\x86\x19\xa4\xca\x87\xad\x24\x45\x18\x6e\x90\x2a\x9f\xb6\x8c\x54\x61\xd8\x41\x9a\x76\xd0\x3a\x2b\x65\x18\x7e\x90\xa6\x1f\xb4\x8e\xa4\x0e\xc3\x10\xd2\x34\x84\xd6\x39\x29\xc4\x70\x84\x34\x1d\xa1\x75\xbb\x54\x62\x58\x42\x9a\x96\xd0\x3a\x2f\xa5\x18\x9e\x90\x1a\xe5\x41\x4f\x06\x52\x67\x9f\x83\xc6\x09\xbb\x1b\xd5\x30\x61\x53\xa3\x1a\x25\xec\x65\x54\x83\x84\x2d\x8c\x6a\x8c\x70\x53\x44\x35\x44\xd8\xcb\xa8\x46\x08\x5b\x18\xd5\x00\xe1\xe6\x87\x6a\x7c\x70\xd3\x43\x35\x3c\xb8\xd9\xa1\x1a\x1d\xdc\xe4\x50\x0d\x0e\x6e\x6e\xa8\xc6\x06\x37\x35\x54\x43\x83\x9b\x19\xaa\x91\xc1\x4d\x0c\xd5\xc0\xe0\xe6\x85\x6e\x5c\x70\xd3\x42\x35\x2c\xb8\x59\xa1\x1a\x15\xdc\xa4\x50\x0d\x0a\x6e\x4e\xa8\xc6\x04\x37\x25\x74\x43\x82\x9b\x11\xaa\x11\xc1\x4d\x08\xd5\x80\xe0\xe6\x83\x6a\x3c\x70\xd3\x41\x37\x1c\xb8\xd9\xa0\x1a\x0d\xdc\x64\x50\x0d\x06\x6e\x2e\xa8\xc6\x02\x37\x15\x74\x43\x81\x9b\x09\xaa\x91\xc0\x4d\x04\xd5\x40\xe0\xe6\x81\x6a\x1c\x70\xd3\x40\x35\x0c\xb8\x59\xa0\x1a\x05\xdc\x24\xd0\x0d\x02\x6e\x0e\xa8\xc6\x00\x37\x05\x54\x43\x80\x9b\x01\xaa\x11\xc0\x4d\x00\xd5\x00\x60\xf8\xaf\xc0\x3f\x43\x7f\x05\xfc\x19\xf6\x2b\xd0\xcf\x90\x5f\x03\x7e\x86\xfb\x0a\xec\x33\xd4\x57\x40\x9f\x61\xbe\x02\xf9\x0c\xf1\x15\xc0\x67\x78\xaf\xc0\x3d\x43\x7b\x05\xec\x19\xd6\x6b\x50\xcf\x90\x5e\x01\x7a\x86\xf3\x1a\xcc\x33\x94\x57\x40\x9e\x61\xbc\x06\xf1\x0c\xe1\x15\x80\x67\xf8\xae\xc0\x3b\x1f\x1a\x14\x70\x67\xd8\xae\x40\x3b\x43\x76\x05\xd8\x19\xae\x03\xac\xff\xc6\xb4\x24\xff\x7b\xcf\xc2\xc8\x5d\xe1\x76\x46\xed\x1a\xb3\x33\x62\x57\x78\x9d\xd1\xba\xc6\xea\x8c\xd4\x35\x4e\x67\x94\xae\x31\x3a\x23\x74\x8d\xcf\x19\x9d\x6b\x6c\xce\xc8\x5c\xe3\x72\x46\xe5\x1a\x93\x33\x22\xd7\x78\x9c\xd1\xb8\xc6\xe2\x8c\xc4\x35\x0e\x67\x14\xae\x31\x38\x23\x70\x8d\xbf\x19\x7d\x2b\xec\xcd\xc8\x5b\xe3\x6e\x46\xdd\x1a\x73\x33\xe2\xd6\x78\x9b\xd1\xb6\xc2\xda\x8c\xb4\x35\xce\x66\x94\xad\x31\x36\x23\x6c\x8d\xaf\xf9\xc0\xa8\xb1\x35\x23\x6b\x8d\xab\x19\x55\x6b\x4c\xcd\x88\x5a\xe3\x69\x46\xd3\x1a\x4b\x33\x92\xd6\x38\x9a\x51\xb4\xc6\xd0\x8c\xa0\x35\x7e\x66\xf4\xac\xb1\x33\x23\x67\x8d\x9b\x19\x35\x6b\xcc\xcc\x88\x59\xe3\x65\x46\xcb\xbf\xc1\xca\x7c\x0a\x51\x38\x99\x4f\x18\xc0\xc8\x6f\xf8\x60\xa1\xf8\x30\x9f\x27\x14\x17\xe6\x63\x84\xe2\xc1\x7c\x7a\x50\x1c\x98\x0f\x0d\x9a\xff\xf2\x61\x41\x73\x5f\x3e\x24\x68\xde\xcb\xee\x5f\x73\x5e\x36\xfd\x9a\xef\xb2\xd7\xd7\x5c\x97\x2d\xbe\xe6\xb9\xec\xec\x35\xc7\x65\x43\xaf\xf9\x2d\xfb\x78\xcd\x6d\xd9\xbe\x6b\x5e\xcb\xae\x5d\x73\x5a\x36\xeb\x9a\xcf\xb2\x47\xd7\x5c\x96\xad\xb9\xe6\xb1\xec\xc8\x35\x87\x65\x23\xae\xf9\x2b\xfb\x6f\xcd\x5d\xd9\x76\x6b\xde\xca\x6e\x5b\x73\x56\x36\xd9\x9a\xaf\xb2\xb7\xd6\x5c\x95\x2d\xb5\xe6\xa9\xec\xa4\x35\x47\x65\x03\xad\xf9\x29\xfb\x66\xcd\x4d\xd9\x2e\x6b\x5e\xca\x2e\x59\x73\x52\x36\xc7\x9a\x8f\xb2\x27\xd6\x5c\x94\xad\xb0\xe6\xa1\xec\x80\x35\x07\x65\xe3\xab\xf9\x27\xfb\x5d\xcd\x3d\xd9\xe6\x6a\xde\xc9\xee\x56\x73\x4e\x36\xb5\x9a\x6f\xb2\x97\xd5\x5c\x93\x2d\xac\xe6\x99\xec\x5c\x35\xc7\x64\xc3\xaa\xf9\x25\xfb\x54\xcd\x2d\x99\x59\x6a\x5e\xc9\xac\x52\x73\x4a\x66\x94\x9a\x4f\x32\x9b\xd4\x5c\x92\x99\xa4\xe6\x91\xcc\x22\x35\x87\x64\x06\xa9\xf9\x23\xb3\x47\xcd\x1d\x99\x39\x6a\xde\xc8\xac\x51\x73\x46\x66\x8c\x8a\x2f\xea\x37\x64\x1f\x7f\xbd\x3e\xdd\xad\x5f\x17\xcb\xdf\x9e\x9f\xeb\xed\x75\xfc\x6a\xda\xf8\x9d\xb0\xad\xd4\xf6\x70\xab\xeb\xd7\xdc\x9e\x1e\x9f\xfa\xac\xf1\xff\xff\x02\x00\x00\xff\xff\x32\x3f\x1b\xc2\x12\x27\x00\x00"); +func _bdgc ()([]byte ,error ){return _gb (_aebd ,"Adobe-KR-7")};func _fegba ()(*asset ,error ){_cafg ,_bfga :=_gced ();if _bfga !=nil {return nil ,_bfga ;};_bfed :=bindataFileInfo {_ee :"UniKS-UCS2-H",_ffd :163757,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493024,0)}; +_ecdf :=&asset {_da :_cafg ,_dc :_bfed };return _ecdf ,nil ;};func _bafd ()(*asset ,error ){_dbafd ,_befg :=_dgcgf ();if _befg !=nil {return nil ,_befg ;};_cgbc :=bindataFileInfo {_ee :"GBT-V",_ffd :777,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492217,0)}; +_bge :=&asset {_da :_dbafd ,_dc :_cgbc };return _bge ,nil ;};func _dedd ()([]byte ,error ){return _gb (_fcfd ,"HKdla-B5-V")};type bintree struct{Func func ()(*asset ,error );Children map[string ]*bintree ;};var _bbac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x51\x8b\xdc\x20\x10\xc7\xdf\xfd\x14\xf3\x78\x7d\x69\xa2\x59\xdd\x14\x24\x50\x6e\x39\x9a\xc2\xf5\x4a\xb7\xd7\x16\x4a\x1f\xdc\x38\x09\x42\xa3\x62\xcc\xc3\x7e\xfb\x32\x26\xbb\x85\x7b\x88\xe6\xff\x9f\xdf\xe8\x38\x53\x3d\xf6\xa7\xde\xbb\x0c\xd5\xd7\x14\x86\x33\x66\x18\x9d\xb7\x09\x97\xb0\xa6\x01\xe1\x82\x93\xf3\x8c\x71\x01\xd6\x0d\xf9\x26\xcb\x36\xcc\x26\x32\x46\xf9\xe7\xeb\x92\x71\xee\xfd\x18\xa0\xd9\x38\xbb\xc6\x9d\x05\xa8\xbe\xe1\xe4\x96\x9c\xae\xf0\xf0\xd1\x86\x0b\xbe\x03\x8b\x23\xf9\x2f\xc9\x62\x72\x7e\x82\x87\xcf\x26\x1a\xcf\xef\x81\xf3\x1a\xe3\x5f\x9c\xd1\x67\xa8\x8b\x87\xde\x96\x9d\x55\x8f\xcf\x26\x7e\x31\x33\x42\xf5\xc9\x25\x33\x19\x6f\x4a\xa0\xf8\x3f\x30\x2d\x2e\x78\xe0\xf5\xfb\xba\x56\xff\xfd\xef\xd7\x88\xc0\xf7\x03\x5e\xfb\xd3\xcb\x38\x2e\x98\xa1\x55\x62\x63\x7e\xbd\xf6\x27\xf8\xcd\x81\xd7\x20\x64\x73\xf8\xf0\x67\x47\x7f\x3e\x07\x8b\x7b\x05\x8c\x6f\xef\x19\x82\xc5\x25\x9a\x01\x93\xf1\x13\x32\x00\x5d\xd7\x1d\xe8\xa7\xa7\x8e\x8a\x7c\x13\x65\xed\x9e\xe4\xec\x66\x68\x41\x30\x2d\x92\x4b\xa6\x05\x27\x25\x3b\x68\xc4\x91\x69\xa1\x48\x8d\x14\x53\x4c\x37\x44\xd2\xd2\x1c\x04\xd3\x0d\x91\xd2\x76\x20\x85\x62\x5a\x22\xa9\xb1\x83\xa6\x6d\x99\x56\x44\x2a\xd1\x81\x3c\x72\xa6\x15\x9d\x72\x44\x52\x87\x52\xd2\xed\x6e\xfa\xa7\x89\xdd\x3b\x38\xac\x29\xa1\xcf\x65\x5e\xa5\x4f\xf4\x50\xe7\xf1\x3e\xfb\x18\x22\x65\x95\xef\x5f\x00\x00\x00\xff\xff\x35\x0d\x74\x28\x27\x02\x00\x00"); +func _gbgg ()([]byte ,error ){return _gb (_ebg ,"KSC-H")};var _aaafd =map[string ]func ()(*asset ,error ){"78-EUC-H":_df ,"78-EUC-V":_dfe ,"78-H":_ecf ,"78-RKSJ-H":_eec ,"78-RKSJ-V":_dfeg ,"78-V":_ac ,"78ms-RKSJ-H":_acd ,"78ms-RKSJ-V":_cbb ,"83pv-RKSJ-H":_cca ,"90ms-RKSJ-H":_cda ,"90ms-RKSJ-V":_ded ,"90msp-RKSJ-H":_dgc ,"90msp-RKSJ-V":_afd ,"90pv-RKSJ-H":_cfbb ,"90pv-RKSJ-V":_bad ,"Add-H":_ebf ,"Add-RKSJ-H":_ebc ,"Add-RKSJ-V":_edaa ,"Add-V":_gage ,"Adobe-CNS1-0":_fd ,"Adobe-CNS1-1":_ecfg ,"Adobe-CNS1-2":_fa ,"Adobe-CNS1-3":_ged ,"Adobe-CNS1-4":_fgc ,"Adobe-CNS1-5":_gacf ,"Adobe-CNS1-6":_gcg ,"Adobe-CNS1-7":_cea ,"Adobe-CNS1-UCS2":_cag ,"Adobe-GB1-0":_fff ,"Adobe-GB1-1":_fca ,"Adobe-GB1-2":_cfbd ,"Adobe-GB1-3":_bcd ,"Adobe-GB1-4":_ggcc ,"Adobe-GB1-5":_eada ,"Adobe-GB1-UCS2":_geg ,"Adobe-Japan1-0":_bfc ,"Adobe-Japan1-1":_gdg ,"Adobe-Japan1-2":_bbbg ,"Adobe-Japan1-3":_dab ,"Adobe-Japan1-4":_fac ,"Adobe-Japan1-5":_feg ,"Adobe-Japan1-6":_gedg ,"Adobe-Japan1-7":_baf ,"Adobe-Japan1-UCS2":_ccgf ,"Adobe-KR-0":_fda ,"Adobe-KR-1":_gdf ,"Adobe-KR-2":_deda ,"Adobe-KR-3":_agc ,"Adobe-KR-4":_aeb ,"Adobe-KR-5":_gafe ,"Adobe-KR-6":_bga ,"Adobe-KR-7":_bgd ,"Adobe-KR-8":_fcb ,"Adobe-KR-9":_gfb ,"Adobe-KR-UCS2":_bebg ,"Adobe-Korea1-0":_ccea ,"Adobe-Korea1-1":_agdb ,"Adobe-Korea1-2":_ecdb ,"Adobe-Korea1-UCS2":_cgfb ,"B5-H":_afeg ,"B5-V":_ddcg ,"B5pc-H":_ebca ,"B5pc-V":_cad ,"CNS-EUC-H":_gfged ,"CNS-EUC-V":_ccde ,"CNS1-H":_egda ,"CNS1-V":_cccg ,"CNS2-H":_dadf ,"CNS2-V":_cgfa ,"ETHK-B5-H":_baba ,"ETHK-B5-V":_affb ,"ETen-B5-H":_defg ,"ETen-B5-V":_bafb ,"ETenms-B5-H":_dcad ,"ETenms-B5-V":_gec ,"EUC-H":_cceaa ,"EUC-V":_bdfg ,"Ext-H":_ffb ,"Ext-RKSJ-H":_fedd ,"Ext-RKSJ-V":_bed ,"Ext-V":_fggb ,"GB-EUC-H":_ccbg ,"GB-EUC-V":_ebafc ,"GB-H":_gagb ,"GB-V":_cbce ,"GBK-EUC-H":_cbfe ,"GBK-EUC-V":_aae ,"GBK2K-H":_cbd ,"GBK2K-V":_fdc ,"GBKp-EUC-H":_dbeda ,"GBKp-EUC-V":_gef ,"GBT-EUC-H":_cegg ,"GBT-EUC-V":_ggcg ,"GBT-H":_gbdg ,"GBT-V":_bafd ,"GBTpc-EUC-H":_bccc ,"GBTpc-EUC-V":_eaebb ,"GBpc-EUC-H":_beac ,"GBpc-EUC-V":_gbba ,"H":_cadd ,"HKdla-B5-H":_ceee ,"HKdla-B5-V":_fcg ,"HKdlb-B5-H":_defa ,"HKdlb-B5-V":_ddg ,"HKgccs-B5-H":_eggc ,"HKgccs-B5-V":_cbdf ,"HKm314-B5-H":_gbef ,"HKm314-B5-V":_fedb ,"HKm471-B5-H":_fgea ,"HKm471-B5-V":_ecgbg ,"HKscs-B5-H":_eeaa ,"HKscs-B5-V":_aeff ,"Hankaku":_aegc ,"Hiragana":_gfd ,"KSC-EUC-H":_efcg ,"KSC-EUC-V":_fae ,"KSC-H":_eabga ,"KSC-Johab-H":_dcgc ,"KSC-Johab-V":_fgd ,"KSC-V":_dbaa ,"KSCms-UHC-H":_fbb ,"KSCms-UHC-HW-H":_eagb ,"KSCms-UHC-HW-V":_aebc ,"KSCms-UHC-V":_aaede ,"KSCpc-EUC-H":_fef ,"KSCpc-EUC-V":_ecga ,"Katakana":_babd ,"NWP-H":_fega ,"NWP-V":_ccba ,"RKSJ-H":_dfaba ,"RKSJ-V":_bccb ,"Roman":_aeaf ,"UniAKR-UTF16-H":_egag ,"UniAKR-UTF32-H":_gbcf ,"UniAKR-UTF8-H":_ddfb ,"UniCNS-UCS2-H":_ebcdc ,"UniCNS-UCS2-V":_dcac ,"UniCNS-UTF16-H":_deb ,"UniCNS-UTF16-V":_egcd ,"UniCNS-UTF32-H":_fbff ,"UniCNS-UTF32-V":_fbad ,"UniCNS-UTF8-H":_edeg ,"UniCNS-UTF8-V":_aacd ,"UniGB-UCS2-H":_debb ,"UniGB-UCS2-V":_dgcf ,"UniGB-UTF16-H":_bgaa ,"UniGB-UTF16-V":_ddad ,"UniGB-UTF32-H":_cdec ,"UniGB-UTF32-V":_dccc ,"UniGB-UTF8-H":_gffc ,"UniGB-UTF8-V":_gaea ,"UniJIS-UCS2-H":_edgcd ,"UniJIS-UCS2-HW-H":_bfaa ,"UniJIS-UCS2-HW-V":_fege ,"UniJIS-UCS2-V":_aacf ,"UniJIS-UTF16-H":_aga ,"UniJIS-UTF16-V":_dafe ,"UniJIS-UTF32-H":_gede ,"UniJIS-UTF32-V":_dgaf ,"UniJIS-UTF8-H":_befab ,"UniJIS-UTF8-V":_beba ,"UniJIS2004-UTF16-H":_dddg ,"UniJIS2004-UTF16-V":_bfeea ,"UniJIS2004-UTF32-H":_bfeeg ,"UniJIS2004-UTF32-V":_baad ,"UniJIS2004-UTF8-H":_adde ,"UniJIS2004-UTF8-V":_bgfc ,"UniJISPro-UCS2-HW-V":_gebg ,"UniJISPro-UCS2-V":_gabc ,"UniJISPro-UTF8-V":_dfcc ,"UniJISX0213-UTF32-H":_cggg ,"UniJISX0213-UTF32-V":_cgfba ,"UniJISX02132004-UTF32-H":_cegcb ,"UniJISX02132004-UTF32-V":_affd ,"UniKS-UCS2-H":_fegba ,"UniKS-UCS2-V":_dgef ,"UniKS-UTF16-H":_ffeca ,"UniKS-UTF16-V":_gcgbb ,"UniKS-UTF32-H":_fffbb ,"UniKS-UTF32-V":_cgce ,"UniKS-UTF8-H":_gead ,"UniKS-UTF8-V":_eadea ,"V":_aefc ,"WP-Symbol":_dcef }; +func _fbfdf ()([]byte ,error ){return _gb (_gcff ,"UniKS-UTF16-H")};func _dcef ()(*asset ,error ){_aaaaa ,_facc :=_bcdbd ();if _facc !=nil {return nil ,_facc ;};_ffff :=bindataFileInfo {_ee :"WP-Symbol",_ffd :846,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493083,0)}; +_cdcg :=&asset {_da :_aaaaa ,_dc :_ffff };return _cdcg ,nil ;};func _afbd ()([]byte ,error ){return _gb (_abca ,"Adobe-Korea1-UCS2")};var _ddee =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9c\x4d\xaf\x26\xbb\x71\xdf\xf7\xe7\x53\x3c\x4b\x67\xe1\xdc\x26\x9b\x2f\xdd\xc0\xe0\x00\x8e\x6c\xc3\x42\x60\x27\x88\xf2\x06\x04\x59\x34\x59\x45\x61\x00\xdf\x99\xc1\xdc\xd1\x42\xdf\x3e\xa8\xff\x8f\x47\x4a\x14\x03\xba\x0b\xa1\x34\x75\xc9\x6e\xf6\xbf\xab\x48\xfe\xba\xf8\x9c\x9f\x7e\xf3\xdb\xbf\xff\xed\x97\xcf\x3f\x5e\x3f\xfd\xe7\xef\x5f\xe7\xef\xfc\xc7\x6b\x7d\xfe\x62\xdf\xfd\x97\xaf\x7f\xf8\x3e\xfd\x35\xfc\xf7\x9f\xbf\xbc\xbd\xa5\xfc\xb2\xcf\xf3\xc7\xc7\x3f\x65\xe6\xcf\xcf\xb7\xb7\xb7\xe8\xff\xbb\x3f\xfe\xf2\xc3\x7f\xfe\xed\x97\xf5\xf5\x75\xd2\xce\xfe\xf0\x6d\xb7\x7d\xbd\x7e\xfa\x2f\xfe\xfb\xcf\xbf\xfc\xf8\xfe\xc7\xd7\xdf\xfc\x9d\x7d\x1d\xfe\xef\x5e\xe6\x2b\xfc\xff\xe9\xbb\xf9\xf7\xcf\x5f\x7e\xff\xfa\x9b\xdf\xfc\xcb\xef\xd2\x9f\xdc\xbf\xfb\xc3\xb7\x6f\xff\xea\x3f\xfb\x97\x1f\xaf\x24\x9f\x7f\x31\xd9\xb7\x9f\x7e\xf3\xcf\xcf\xb7\x7f\x79\x7e\xf6\xd7\x4f\xff\xf4\x1f\xed\x5f\x9f\xbf\xfd\x0f\xf5\x6f\xff\x49\xff\x49\xff\xe5\xbf\xfb\xf7\x5f\x3e\x7f\xfd\xf2\x4a\xff\xfe\x38\xda\x9f\xdd\xff\xf5\x8f\xdf\x7c\x5f\xe9\xed\xa7\xff\xf9\xdf\x7e\xfb\xf7\xaf\xff\x95\x5e\xe9\x78\xe5\x5a\x73\xfa\xdf\xdb\xff\x3f\xfe\xf9\xab\xf9\xeb\xe0\x5f\x99\xb1\xcf\xaf\xe6\xbf\x7c\x7b\xa6\x7f\x7f\xbe\xfc\xde\xdf\x5e\xaf\x4f\xc7\xf1\xfe\x7a\xbd\x3e\x5d\xc7\x7b\xfc\xeb\xef\x52\x39\xde\x5f\x9f\xfe\xf1\x1f\xfe\xf1\x1f\xde\x63\x90\x7f\xd1\xfe\x2d\x71\x99\x2f\x5f\x7f\x98\x2f\x7c\xba\xc2\xa7\xb4\xde\x5f\x29\x7a\xfc\xdf\xff\xe9\x2d\x1d\xc7\xbe\xef\x67\xdb\xad\x73\xb4\xee\x1e\xad\x3f\x3d\xdc\xed\x49\xf5\x7a\x7f\xdd\x77\x38\xea\x8d\x63\xbe\xbf\xd2\xd9\xcb\x29\x9f\xc9\xa7\x4e\xf9\x0a\xcf\x93\xe4\x59\xf5\xfd\x95\x5a\x0e\xcf\x6a\x78\xda\xfb\x2b\x17\xb5\x59\x1d\x4f\x0f\x4f\x97\xe7\xc2\xe3\xe1\x89\xbb\x65\x6e\x9f\xe3\xca\xb9\xb6\xf0\x70\xe5\x1c\x6d\xce\x14\x6d\x4e\xda\x9c\xd1\xa6\xa4\x18\xcf\x49\x9b\x73\x8c\xf7\x57\xe9\xd1\xeb\x1c\x86\x67\xbd\xbf\xea\x11\x6d\x0a\xbd\x4a\xf4\xaa\x77\x0d\x0f\xbd\x4a\x5c\xb9\xd5\x18\x61\xa5\x4d\x8d\x36\xbd\xc6\x53\x54\xda\xd4\x68\x73\xa5\xe8\xd5\x68\xd3\xa2\xcd\x7d\xc4\x78\x1a\x6d\x5a\xb4\xb9\x7b\xf4\xea\xb4\xe9\xd2\xe7\x68\x31\xa0\x4e\xa3\x1e\x8d\x52\xca\xd1\xef\xa2\xd5\x85\x8a\x39\x06\x79\xd1\xea\x5a\x08\x1b\x1d\x6f\x5a\xdd\x6a\x75\x5e\x47\xb8\x68\x75\xab\x55\xd1\x1b\x79\x68\xf5\xa8\x55\x3d\x43\xdc\x87\x56\x8f\x5a\xb5\x23\x3a\x0e\x5a\x0d\xb5\x6a\x77\x09\x17\xad\x86\x5a\xf5\x1a\x1d\x27\xad\xa6\x5a\x5d\x35\xa2\x62\xd2\x6a\x2e\x7b\x7f\xa5\x3b\x45\xc7\x19\x3d\xb6\xc9\xe5\x8c\x56\x46\x47\xd3\xcb\x3b\x8e\xb8\x96\xd1\xd1\xd4\xea\xe8\x31\x08\xa7\x95\xab\x55\x6a\x71\x2d\xa7\x95\xab\x55\xce\xd1\x71\xd1\x6a\xa9\xd5\x99\xe3\xf2\x8b\x56\x6b\xae\x70\x5d\xd1\x71\x19\xad\xf6\x20\xf2\xdb\xa7\x71\xa8\xe3\x38\xd4\xb1\xf4\x3b\x5c\xea\x38\x0e\xb5\xaa\x25\x5a\x11\xe6\x43\x11\x9c\xdb\xd9\xc2\x45\x2b\x82\xb1\x45\xec\x0f\xa2\x71\x10\x8d\xfd\x3e\xc3\x45\x2b\x85\x63\xbe\x22\x42\x07\xf1\x38\x14\x8f\xf9\xae\x47\xb8\x68\x75\x2a\x68\x8f\x88\xd1\x41\xfc\x0d\xc5\xdf\x99\x42\x9c\x41\x00\x8e\x42\x68\x87\x38\x83\x08\x1c\x8a\xc0\x33\x87\x38\x83\x10\x1c\x0a\xc1\xf3\x0c\x71\x06\x31\x38\x14\x83\x67\x09\x71\x06\x41\x38\x14\x84\x67\x09\x71\x06\x51\x38\x14\x85\x67\xed\x57\xb8\x68\xa5\x28\x3c\x5b\x89\x8e\x44\xe1\x50\x14\x9e\xfd\xac\xe1\xa2\x95\xa2\xf0\xec\x77\x74\x24\x0a\x87\xa2\xf0\xbc\xee\x90\x90\x28\x1c\x8a\xc2\xf3\xae\xd1\x91\x28\x1c\x8a\xc2\x72\x44\x42\x0f\xa2\x70\x28\x0a\x4b\x4a\xd1\x91\x28\x1c\x8a\xc2\x92\x8f\x90\x90\x28\x1c\x63\xf6\x70\xb5\xe8\x38\xe6\x25\x97\x3a\x9e\x91\x68\x83\xc0\x1c\x0a\xcc\x72\x4a\x1c\x02\x73\x28\x0a\x4b\x91\x38\x44\xe1\x50\x14\x96\x2a\x71\x88\xc2\xa1\x28\x2c\x55\xe2\x10\x85\xc3\x6b\x7a\x7f\x95\x26\x71\xbc\x66\x5c\x59\x77\xc4\x75\xca\xa5\x6b\xb5\x3b\x86\x4a\xac\x0e\xc5\x6a\xe9\x25\x5e\x1a\xb1\x3a\x14\xab\xe5\x3a\xe3\xf2\xc4\xea\x50\x60\x96\xeb\xee\x6f\x9f\x26\x81\x39\x15\x98\xe5\xbe\x53\xb8\xd4\x6a\x2a\x30\xeb\x51\xcb\xdb\xa7\x49\x60\x4e\x05\x66\x4d\x31\x6f\x4e\x02\x73\xa6\xe7\x79\x7f\xd5\x9c\x92\x5c\x43\x2e\x75\xcc\x39\xbf\x7d\x9a\xc4\xea\x54\xac\xd6\x33\x54\x9d\xc4\xea\xcc\x33\x3a\x9e\xa1\xea\xcc\x73\xe0\x1a\xea\x98\xe4\x9a\x72\xe9\x5a\x45\x97\x27\xa2\xe7\xd9\x8e\x70\xc5\x74\x3e\xcf\xa6\x6b\x29\xc8\x6b\x09\x25\x26\x41\x3e\xcf\x71\xbd\xbf\x6a\xcd\x72\x8d\x1b\xd7\x1d\xae\xaa\x6b\x8d\x07\xd7\x23\xd7\x21\x97\x06\xa1\xec\xa8\x35\xe6\xd9\x49\x76\xcc\x52\xeb\xfb\xab\xb6\x1c\xad\x4a\x6d\xb8\x9a\xee\x58\xe5\xea\x72\x69\x10\xad\xa8\x23\x83\x50\x0e\xd5\x76\x85\x8b\x1c\x9a\xca\xa1\xda\x63\x39\x98\xe4\xd0\x54\x0e\xd5\xeb\x0c\x25\xc8\xa1\xd9\x58\x0f\xce\xf3\xed\xd3\x24\xc8\xe7\x5d\x62\xf4\xb7\x9e\xf1\x2e\x0f\xae\xe7\xfd\xd5\x62\xa5\x9b\x77\xd1\xe0\xef\x36\xde\x5f\xed\x90\xce\x77\x93\x82\x4a\x8e\x76\x94\x43\xcb\xf4\xc7\xf2\xfa\x6f\xad\xb8\x93\xdc\x99\x77\xac\x52\xed\xa8\x31\x9e\x7b\x38\x2e\x5d\xe4\xc4\xb5\xe4\xf2\x19\xae\x4b\x77\x77\x93\x4b\x6b\x56\x8a\x6c\x9d\x24\xdd\x54\xd2\xb5\x54\xe3\x41\x48\xba\xf9\xc4\xda\xdb\x72\x8a\x31\x3e\x5a\x7c\x31\x2d\x45\x8c\xce\x47\xab\xef\x54\x6a\xb6\xf3\x08\xe9\x48\xcd\xa9\xd4\x6c\x4a\xba\x49\x6a\xce\x41\xab\x58\xde\x26\x79\x38\x95\x87\xad\xc4\xf2\x36\xc9\xc3\x39\x59\x4b\x63\x79\x9b\xe4\xe1\x54\x1e\xb6\x16\xcb\xdb\x24\x0f\xa7\xf2\xb0\xb5\x58\xde\x26\x79\x38\x95\x61\xad\xc7\xf2\x36\xc9\xb0\xa9\x0c\x6b\x57\x2c\x6f\x93\x0c\x9b\xca\xb0\x76\xc7\xf2\x36\xc9\xb0\xa9\x0c\xeb\x47\x2c\x6f\x46\x86\x99\x32\xac\x1f\xb1\xbc\x19\x19\x66\xca\xb0\x9e\x62\x79\x33\x32\xcc\x94\x61\x3d\x47\x8c\x1a\x19\x66\x4a\xa7\x7e\xc6\xf2\x66\xa4\x93\x29\x9d\x7a\x89\xc9\xc0\x48\x27\x53\xa2\xf4\xd2\xa3\x23\x89\x62\x27\x1b\x86\x56\xc3\x45\x2b\x05\x77\x57\xc8\x18\xc1\x6d\x0a\xdb\xde\x23\x5b\x8d\xb0\x35\x85\x6d\xef\x57\x74\x24\x6c\x8d\xcd\xc7\x15\x0b\x97\x11\xb6\xa6\xb0\xed\x77\xc4\xbb\x11\xb6\xa6\xb0\xbd\x8e\x58\xb8\x8c\xa9\xdf\x5a\xe4\xf4\x75\xc4\xc2\x65\x4d\x39\x8d\xb9\x7a\x44\x8e\xb5\x69\x72\xb1\x93\x09\x55\x8d\x05\xc2\x7a\xbf\xc3\x75\xcb\xd5\x1f\x5c\xcf\xfb\xeb\xba\xae\x5b\xae\x81\x2b\x3a\xa2\x17\xcb\x88\x69\x19\xb9\x72\x4c\xfd\xc6\x32\x62\x5a\x46\xae\x33\xa6\x7e\x63\x19\x31\x2d\x23\x57\x89\xa9\xdf\xc8\x30\x53\xa6\x5c\x35\x92\xc7\x48\x05\x53\x44\x5f\x35\x26\x29\x23\xa2\x4d\x11\x7d\xb5\x16\xe3\x22\xa2\xed\xb1\x70\xf5\x98\x6b\xec\xb1\x85\x6b\xe9\x81\xe2\xf2\x8f\xd3\x51\xd7\xea\x1a\x3d\x11\x6d\x8a\xe8\xeb\x8a\x89\xc5\x88\x68\x1b\x4f\xd3\x33\x9e\x72\x75\xb9\xd4\xf1\xba\xa3\x15\x41\x6e\x0a\xf2\xeb\x8e\x05\xc2\x08\x72\x53\x90\xdf\x47\xac\x9e\x46\x90\x9b\x82\xfc\x56\x3e\x1a\x41\x6e\xb6\x46\xb8\x62\xf5\x34\x5b\x13\xd7\x8c\x8e\x1a\x97\x2d\xc3\x15\x1d\xb3\x5c\xa4\x82\x29\x15\xee\x1c\x0b\x84\x91\x0a\xa6\x54\xb8\xcf\x58\x20\x8c\x54\x30\xa5\xc2\x5d\x62\x81\x30\x52\xc1\x94\x0a\x77\x8d\x19\xdc\x49\x05\x57\x2a\xdc\xed\xa8\xe1\x52\x2b\x57\x2a\xdc\xad\x5d\x6f\x9f\x9c\x54\x70\xa5\xc2\xdd\x63\x9e\x77\x52\xc1\x95\x0a\xf7\x95\xa3\x23\xa9\xe0\x4a\x85\xfb\x8e\x2d\xb8\x93\x0a\xae\x54\xb8\xef\x98\x75\x9d\x54\xf0\x93\x3d\xef\x11\xd3\xae\x93\x0b\xae\x5c\x48\x47\x8a\x49\xcd\x49\x06\x2f\xb4\xcb\x31\xf1\x3a\xd9\xe0\x85\x76\x39\x66\x5e\x27\x1d\xbc\xd2\xee\x8c\x77\xe2\xe4\x83\x57\xda\x95\x98\xeb\x9c\x84\xf0\x46\xbb\x1a\x5c\xe1\x64\x84\x37\xda\xb5\x14\x7d\x09\x76\xdf\x7b\xf2\x7e\x94\xf0\xd1\x8e\x4d\xf9\xd1\x5b\xf4\x25\x90\x9d\x5d\xf9\x71\xb5\x50\x93\x48\xf6\xeb\xc9\xe1\xbb\x73\x91\xef\x94\x8f\xbe\x77\x6c\x3d\x9c\xf0\xf6\xbb\x07\x05\xa5\x43\x52\xdd\xbd\xe1\xd3\xc6\xff\xe8\xd1\x97\x98\x77\x36\xf0\xe9\x88\x10\x74\x82\xde\xd9\xc1\xa7\xd4\xe3\x7a\x44\xbd\x3f\x1b\x1a\x62\xb3\xe1\x04\xb4\x8f\xfa\x84\xef\x8c\x99\xdc\x47\x1d\xf2\xd1\xf7\xd4\x8b\x24\xca\x7d\xac\x43\xbe\x88\x43\x1f\x6b\xfb\x12\x63\x6e\xf2\x65\x7c\xea\x5b\x22\xd0\x9d\xd8\x77\x08\x20\x95\x08\x45\x27\xf8\x7d\x5a\x20\x40\xaa\x11\x8b\x3e\x23\x1d\xb7\x89\x67\x3b\xe5\x5b\xf2\x71\xbd\x16\xcc\xe4\x64\x89\x1b\xd7\x6b\x7a\x47\xa4\x89\xdb\x73\x87\xaf\xeb\x1d\x59\x6c\x71\x3e\xb9\xd1\xb7\x47\xb6\x3a\x59\xe1\x4e\xdf\x4b\xa1\x4c\x5a\xb8\xbb\x34\xb8\x14\xcb\xee\x03\xdf\x08\x74\xd2\xf6\xcd\x3d\x56\xce\x4f\xee\x5c\x4f\x13\xa8\x93\x3f\xbe\xb8\xde\xdd\xd2\x5f\x5d\xad\x9d\xfc\xf2\x05\x95\x1d\xf1\xfa\x17\x09\xb6\x8e\xd8\xb0\xa4\x9c\xd2\x15\x3e\xed\x58\x30\xf1\x48\xb7\x7c\x5d\x3e\x20\x2f\xc5\x2b\x5c\x64\xe2\x3a\x62\x5f\x96\x72\xba\xe4\xd3\xc6\x0c\x13\xaf\x30\xc9\x37\xe5\xe3\xbe\xda\xe6\x2d\x52\x76\xa5\x96\xe5\x0b\xc9\x57\x6a\x27\xbe\x87\x47\xbf\xe5\x1b\xf8\x24\x47\xd3\x7d\x93\xf6\x29\x6b\x63\xfb\x99\x7a\xf8\x18\x4b\xe2\x1e\x67\x2c\x28\x8b\x84\x5f\xb9\xf5\xf0\x95\x33\xfa\xe6\x76\xe1\xbb\xc2\xd7\x23\x64\x57\x6e\xb7\x7c\x5c\xaf\x74\xb5\xe3\x7a\x79\x6a\x7c\x25\x48\x61\xe5\xa9\xf1\x65\xee\x51\x23\x55\x16\xd3\xc5\x3a\x7b\x91\xef\x92\x2f\xf2\x26\x8c\x33\xe6\xd0\x80\x29\x64\x31\x85\xe4\x16\xcb\xcf\x62\x0a\x59\xa5\x49\xfb\x5e\x6a\xf8\x9a\xb4\x67\x5a\xc9\x3d\xf6\xf8\x8b\x69\x65\x95\xa1\x7b\x5c\xd2\xa5\x8c\x8a\xaf\x32\x96\x26\x1f\x7d\x63\x7a\x4e\xf9\xca\x6a\xa7\xf9\x79\x31\x25\xe5\xfb\x88\xfb\x32\x25\x2d\xa6\xa4\x7c\x1f\xa1\x01\x53\xd2\xaa\xbb\x5d\x6c\x86\x16\x53\xd2\x6a\x7a\x47\xe7\xd1\x42\x97\xc6\x3b\x92\x89\xbe\xf8\x8a\x7c\xa0\xfd\x11\x5b\xdc\xc5\xd4\xb5\x98\xba\xce\xa4\x77\xce\xd4\xb5\x98\xba\x4e\xed\xe7\x16\x53\xd7\x62\xea\x3a\x73\x6c\x17\x16\x53\xd7\x62\xea\x3a\x4f\xc5\x06\x53\xd7\x62\x9a\x3a\x8b\xde\x2f\xd3\xd4\xd2\xcc\x94\xce\xaa\xf7\x7b\xf7\x8e\x4f\xed\xea\xa5\x76\xf4\xbd\xe3\xf5\xa5\xb3\xc6\x86\x6a\xdd\xb3\xe0\x2b\xb4\xab\xf2\x55\x7c\xa1\xe9\xd9\xa4\xdf\x3d\x1b\x3e\xdd\x83\x77\x79\x4f\xee\x61\x49\x3e\xee\x6b\x19\x1f\x7d\x23\x45\xd7\x53\x74\x5f\x99\xd4\x7a\xe0\xf3\x7a\x4a\xc6\x97\xf5\x35\x23\x56\xda\xf5\x94\x13\xdf\xc9\x17\x8e\x22\x5f\xc1\x57\xf0\x75\xf9\x2a\xbe\xb8\x47\xbd\x3a\xbe\x86\x2f\xc6\xd7\xea\x49\xdf\x8e\x2f\xe2\xbe\x68\xdb\xb4\x9e\x72\xe1\x8b\xb8\xaf\x3d\x73\xdf\x1b\x5f\x4c\x5d\xf5\x8e\x1d\xd7\x7a\x04\x0a\x98\x54\xf5\xdd\x61\x3d\x42\x05\x4c\x82\x15\xd6\x53\x26\xbe\xa9\x6f\x37\x8a\x8d\xa7\x18\x3e\xe3\xd9\xe8\xeb\xf8\xf8\x54\x93\x68\xb7\xf0\x2d\xda\xe9\x7a\x55\xef\x52\x26\xb5\xde\x35\xe6\x8a\x7e\x55\xfa\xed\xb1\x54\xf4\xab\xd2\xaf\x35\xe9\x5c\xd1\xaf\x4a\xbf\x9a\xa5\x73\x45\xbf\x30\xa9\xde\x5d\xba\x54\xf4\xd3\x5c\x57\xef\x4e\x3b\xf4\xd3\x5c\x57\x7b\xe5\x1e\xe8\x17\x26\x35\x7d\x38\x58\x4f\x45\xbf\x30\xa9\xe8\xeb\xc8\x7a\x2a\xfa\x85\x49\xad\x9f\x7a\x1f\x15\xfd\xb4\xac\xb5\x83\xe7\xad\xe8\x17\x26\xee\xc1\xf5\xd0\x4f\x9f\x23\xdb\x41\x6c\x54\xf4\x0b\x93\xea\x45\x1c\x54\xf4\xab\x7c\xfd\x0a\xd2\x5d\x4f\x45\xbf\x30\xa9\xf4\xaa\x77\xd9\xd0\xaf\x49\xbf\x4b\xf3\xc6\xd3\xd0\xaf\x25\xee\xa1\xf1\x35\xf4\x53\x4e\x57\xd1\xd2\x7a\xc8\x69\x99\x54\xaf\xa4\x7b\x90\xd3\x32\xa9\x1d\x45\xef\xa8\xa1\x9f\xe6\xab\x92\xd0\x80\xf9\x4a\x26\x95\x52\xa4\x5f\x43\x3f\xcd\xbb\xe5\x2a\x7a\x5e\xe6\x5d\x99\xd4\xf7\x3b\x67\xde\x95\x49\xed\xbe\x18\x1f\xfa\x35\xf4\x2b\x3c\x1b\xfa\x69\x0d\x68\xad\xe3\x43\xbf\x86\x7e\x27\xf7\x40\xbf\xb6\xe3\x8f\x67\x43\xbf\xa6\x0f\x8a\x1f\x63\x46\xbf\x30\xa1\xb3\xae\xd7\xd1\x2f\x4c\x2a\xcc\x2f\x4f\x47\xbf\x30\xa9\x96\x8b\x76\xe8\xd7\xc9\x5f\xcd\x07\x4f\x47\xbf\xae\xf8\xd3\xc7\xd4\xf5\x74\xf4\xd3\xba\x00\xbb\xae\x87\x75\x41\x26\xde\xa5\xde\x51\x47\xbf\x4e\xfc\x65\x3d\x07\x73\x98\x4c\x12\x88\xc7\x3f\xd0\x2f\x4c\xf4\xfd\xeb\x70\xbe\x9e\x8e\xbc\xfd\xa6\x0b\xc3\x42\xde\xae\xf4\x3e\x12\xb7\x43\xde\x4e\x7a\x13\xc6\x1d\x79\xc3\xa4\x5a\x1b\x43\x45\xde\x6e\x4c\x35\x3c\x12\xf2\xf2\x25\xf6\x38\x25\x07\xd3\xad\x4c\x84\xa2\x64\x7b\x90\xed\x41\x36\x42\xec\x41\xb6\x47\x61\x97\x19\xcb\x83\x6c\x61\x52\x39\x49\x81\x07\xd9\x1e\xa5\xed\xd1\xe9\x8b\x6c\x61\x52\x4f\x59\x12\x3d\xc8\xf6\x20\x1b\xd3\xc0\x83\x6c\x8f\x64\xeb\x5a\x0e\x9e\x07\x5d\xb4\x63\x2b\xa5\x2b\x4c\x1e\x74\x09\x93\xfa\x71\xd3\x0e\x5d\x1e\x74\xe1\x15\x3e\xe8\xf2\x30\xed\x15\x69\xf5\xa0\xcb\x43\xd8\xf1\x0a\x1f\x74\x79\xa4\x4b\x3f\xf0\x11\x76\xcf\x62\x39\xd0\x98\x07\x61\x37\x0e\xf4\xc3\x87\x7e\x83\xb4\x25\x9c\x06\xfa\x8d\x8c\xf6\xd2\x60\xa0\xdf\xd8\x4b\x04\x3e\xb4\xd2\xb6\xa0\x9e\x4c\x7b\x6c\x0b\x64\xa2\x9d\xde\xc7\x40\xab\xa1\x14\xad\x55\xcf\x36\xd0\x6a\x48\xab\x72\x71\x5f\xb4\x1a\xd2\x2a\xa3\xcb\x40\xab\x41\x8a\xb2\x94\x0c\xb4\x1a\x7b\x89\x90\xf6\x03\xad\x06\x29\x8a\x06\x03\xad\x06\x5a\x1d\x3c\x2f\x5a\x0d\x62\x88\x29\x64\xa0\xd5\x40\x2b\xa6\x9f\x89\x56\x53\x29\x9a\x98\x2e\x26\x5a\xcd\xc4\x94\xae\xb1\x4c\xb4\xd2\xd6\xad\xde\xda\xba\x3d\x6c\xdd\x64\x52\xbb\xb5\x05\x78\xd8\x02\xc8\xa4\x72\xf2\x1c\x6c\x01\x64\xc2\x47\x3b\xf4\xd3\x16\xa0\x26\x96\x0d\xb6\x00\x32\xa9\xde\xda\xe6\x3e\x13\xfd\xc2\xa4\xe3\x26\x6d\x27\xfa\xcd\x9b\xa9\x86\x31\xa3\x9f\xb6\xcd\xad\xee\xeb\xa1\x9f\xb6\xcd\xf5\x66\xc9\x61\xdb\x2c\x93\xca\x79\x71\x0f\xf4\x9b\xe8\xc7\xd4\x3a\xd1\x6f\x6e\xfd\xb8\x1e\xfa\x4d\x96\x58\xa6\x3d\x43\x3f\x53\xac\xdd\xcc\x07\x86\x7e\xda\xca\xb4\xcc\xf6\x81\xad\x8c\x4c\x2a\x67\xd3\xf5\x0c\xfd\x8c\x2d\x8a\xb6\x9b\x8f\xa1\x9f\x29\xfe\x6e\x62\xd2\xd0\xcf\x98\xe2\x12\xd7\x43\x3f\x93\x7e\x67\x95\x06\x86\x7e\xd6\x59\xda\x69\x87\x7e\xc6\x14\x47\x6e\x19\xfa\xd9\xcd\x3c\xc4\x73\xa0\x5f\x98\x54\x1a\x73\x93\xa1\x5f\x98\xd4\x0f\xe6\x1c\x43\x3f\x53\xfc\x55\xb6\x41\x86\x7e\xa2\xbf\x7a\xef\xbe\xe8\x67\x5b\x3f\x7c\xe8\x67\x5a\x62\x1b\x73\x93\xa3\x9f\x93\xab\x6c\xf1\x1c\xfd\xc2\xa4\x7e\x92\x5b\x8e\x7e\x2e\xfd\xca\xad\x31\x3b\xfa\x39\xfa\x25\xfa\xa2\x9f\x17\xda\xd1\x17\xfd\x1c\xfd\x4e\x69\xef\xe8\xe7\x8d\xad\x11\xed\xd0\xcf\x99\xeb\x12\x3e\xf4\x73\xe9\x77\x32\xff\x39\xfa\x39\x6b\x00\xef\xd7\xd1\xcf\x77\xfe\x4a\x67\x47\x3f\xdf\xf1\x87\x0f\xfd\x5c\xfa\x95\xc6\x3d\xd0\xcf\x15\x7f\x27\x73\xa2\xa3\x9f\x4b\xbf\x93\x25\xd1\xd1\xcf\xb5\xc4\x26\xf2\x68\xa1\xdf\x22\xfe\x98\xeb\x16\xfa\x89\xe4\x4b\x66\x3b\xbc\xd0\x6f\x31\xd7\x91\x33\x0b\xfd\xc2\xa4\xb2\x97\xd3\x85\x7e\x4b\x5b\xbc\xcc\x96\x67\xa1\x1f\xf5\xdb\xbd\xf5\x58\xe8\xb7\x1a\xb9\x4f\x5f\xf4\x5b\x9d\xe5\x9e\xb1\xa0\xdf\xba\x98\x5f\xe8\x8b\x7e\x6b\xe7\x2f\x7d\xd1\x6f\x29\xfe\x4e\xb6\x5f\x0b\xfd\x96\xe6\xbf\x53\x58\xf9\x2c\xf4\x13\x8e\xd5\xce\x3b\x02\xc7\x64\xe2\x39\x18\x33\xfa\x2d\xb6\x28\xda\xfa\xf2\x75\x04\x93\x4a\x3a\xaf\xbf\xbe\xdc\x0f\x68\x43\x26\x75\x96\xf6\x01\x6d\xc8\xc4\x0e\x26\xcb\x77\xe2\xdb\xbb\x95\x24\x5f\xc1\x27\x29\xf5\x91\x65\x0d\x68\x43\x26\x15\x7d\x8e\x5b\x03\xda\x90\x49\xa5\x69\x5a\x1e\xd0\xc6\x80\x36\x54\x22\x5f\x03\xda\x18\xd0\x46\xd6\xf2\x3c\xa0\x0d\x99\x98\x6a\xba\x7c\x0f\xbe\x1d\x8a\x8c\x6f\xe0\x1b\xba\x5e\xe3\x7a\x13\xdf\x24\x3c\xab\x7c\x86\x8f\x50\x6c\xf4\x75\x7c\xce\xeb\xc7\xb7\xf0\x29\x95\x99\x82\x07\xb4\x31\xa0\x8d\x7a\x9f\xf2\xa1\x9f\x68\xa3\xe6\x44\x3b\xf4\x83\x36\x4e\x85\xe7\x80\x36\x64\xd2\xad\x1d\xc5\x00\x36\x64\x52\x67\x93\x39\x80\x8d\x01\x6c\xe8\x9b\xfa\x1a\xc0\xc6\x00\x36\x6e\x45\xec\x00\x36\x64\xc2\xc7\xf5\x90\x0f\xd8\x48\x15\x1f\xf2\x09\x36\x4a\xba\xb8\x1e\xf2\x09\x36\x6a\xba\x78\x0c\xe4\xab\xc8\x27\x08\x1b\xc0\x86\x4c\x4a\x57\xa1\x2f\xf2\x09\x36\x8a\xbe\x74\xaf\x01\x6c\x0c\x60\x23\xdf\x3c\x07\xf2\x01\x1b\xaa\x56\xae\x01\x6c\x0c\x60\x23\x57\xc9\x0c\x6c\x0c\x60\x63\xcb\x07\x6c\xc8\xa4\x96\x79\x36\x60\x63\x00\x1b\x5d\xab\xcb\x00\x36\x64\x22\xa3\xe8\x8b\x7e\xc0\x46\xd1\xac\x37\x80\x0d\x99\x54\x0b\xba\x00\x1b\x03\xd8\xa8\x1d\x1f\xfa\x09\x36\x4a\xe6\x7d\x00\x1b\x03\xd8\xe0\x63\xd5\x00\x36\x64\x62\xb7\xa4\x50\x03\x36\x64\x52\xa9\x37\xcf\x86\x7e\xc0\x46\x26\x3d\x80\x0d\x99\x54\xda\xc1\x73\xa0\x9f\x60\xa3\xb4\x13\x1f\xfa\x09\x36\x5a\x6a\x7a\x36\x60\x43\x26\xb5\xac\x1d\xe8\x00\x36\x64\x42\x3f\x3d\x2f\xb0\x31\x80\x8d\xac\x0f\x71\x03\xd8\x18\xc0\x46\xd6\x4a\x3c\x80\x0d\x99\x54\xbb\x66\xf9\x01\x6c\xc8\xa4\xd2\x79\x0e\x60\x63\x00\x16\x59\x3b\xd5\x01\x58\xc8\xa4\xd2\xaa\xc6\x0c\x39\xc8\x24\x0a\xa7\x6b\x40\x0e\x32\x91\x46\xd2\x0f\x72\x18\x90\x43\x61\xca\x81\x1c\x64\x52\x4b\xfb\xd9\xd0\x0a\x72\x48\xa4\x34\xe4\xc0\xb7\xde\xd2\x35\x2b\xf3\xad\x17\x13\xed\xf0\xa1\x81\xc8\xa1\x74\xad\x4c\x03\x72\x90\x49\x2d\xdd\x9a\x9a\x20\x87\x01\x39\xa8\x68\xb2\x06\xe4\x20\x13\xe9\x2b\x5d\x20\x07\x99\xd4\x00\x3d\xca\x26\x98\xd0\x45\x63\x86\x1c\x06\xe4\x50\x76\x5f\x74\x11\x39\xb4\xc2\x73\x40\x0e\x32\xa9\x75\xed\x50\x06\xe4\x30\x20\x87\x9c\xe9\x8b\x2e\x0f\xba\x34\xc6\x87\x2e\x90\x43\xe9\x3c\x1b\xba\x40\x0e\x89\xa9\x0e\x72\x18\x90\x43\x16\xd8\x0e\xc8\x61\x40\x0e\x85\x78\x86\x1c\x06\xe4\xa0\x93\x18\x6b\x40\x0e\x03\x72\x28\xcc\x11\x90\x83\x4c\x2a\x57\xc6\x87\x7e\xa2\x89\x52\x79\x97\xd0\x84\x4c\x6a\x95\x78\x81\x26\x06\x34\xb1\x73\x10\x9a\x90\x49\xad\x1c\x8c\x0f\xfd\x06\x1f\x9c\x0a\x63\x41\xbf\x81\x7e\xfa\xd8\x32\xa0\x89\x01\x4d\x14\xed\xa4\x07\x34\x31\xa0\x89\xc2\x1c\x01\x4d\x0c\x68\x82\x9d\xfe\x80\x26\x64\x22\xee\xa5\x1f\x34\x31\xc6\xd6\x8f\xb1\xa0\x1f\x34\x91\xf4\xb1\x60\x40\x13\x32\x11\x1b\x7a\x0e\x68\x42\x26\xe6\x08\xf5\x85\x26\x64\x52\x2b\x2c\x15\xd0\xc4\x80\x26\x2a\x73\x1d\x34\x21\x13\x3e\xae\x87\x7e\xa2\x89\xd6\xd1\x05\x9a\x90\x49\x4d\xe7\x73\xd6\x80\x26\x64\x62\xe7\xd6\x7e\xc5\x6a\x0f\x6c\xc8\xc4\xed\x78\x24\xe4\x15\x6c\x94\xa6\x4d\xf5\x00\x36\xc6\x86\x0d\xa6\x7e\x60\x43\x26\xc2\x84\xbe\xc8\x2b\xd8\x68\xd7\x1e\x16\xf2\x02\x1b\x59\x9b\xa4\x01\x6c\xc8\xc4\x6b\xe5\xd1\x91\x57\xb0\x51\x6f\x52\x0f\xd8\x18\xc0\x46\x65\xa7\x00\x6c\x0c\xbe\x9b\xf2\x66\x60\x0d\x99\x50\x5c\xc3\x83\x35\x64\x72\x22\x20\x40\x8d\x01\x6a\x24\x16\x21\x50\x63\x80\x1a\x55\x5f\xd5\x06\xa8\x21\x13\x2f\x9f\xbb\x22\xae\xb1\x40\x5c\x5c\x0f\xf5\x6c\x6f\x95\x19\x31\xea\x09\x35\xda\xc9\xe4\x0d\x6a\xc8\x24\x0e\x12\xac\x01\x6a\xc8\x24\x8e\x57\xac\x01\x6a\x0c\x50\xe3\x24\xc0\x40\x0d\x99\xd4\xf2\xc1\xa3\xa1\x1e\xa8\x51\x99\x1c\x41\x0d\x99\xd4\x2a\x0b\x04\xa8\x21\x93\x4a\x61\x02\x01\x35\xc6\x46\x8d\x4c\x3b\xe4\x73\x16\x08\x82\x18\xd4\x90\x89\x37\xa4\x31\x83\x1a\x32\x81\x29\xba\x2f\xa8\x21\x93\x0a\x5f\x25\x07\xa8\x31\x40\x8d\xcc\x62\x00\x6a\x0c\x50\xe3\x64\x11\x02\x35\x06\xa8\x51\xd9\xc8\x80\x1a\x03\xd4\xc8\x4c\x2a\xa0\xc6\x00\x35\x92\x3e\xdd\x0c\x50\x63\x80\x1a\x9d\xa8\x02\x35\x06\xa8\x51\x99\xd0\x41\x0d\x99\x54\xae\x3d\x16\xf4\xf3\x1d\x7d\x3c\x2f\xfa\x09\x35\x5a\xd3\x27\xa3\x01\x6a\x50\x34\xac\x9d\x04\x05\x35\x28\x1a\xb6\xca\x7b\x03\x35\x06\xa8\xd1\xd0\x05\xd4\x90\x89\x31\xeb\xbe\xa0\x86\x4c\x2a\x84\x0b\xa4\x21\x13\x43\xd1\xeb\x85\x34\x06\xa4\xd1\x32\x3e\xe4\x13\x69\x74\xa2\x0f\xd0\x90\x49\xad\x31\x9d\x03\x1a\x32\xe1\xa3\x2b\xea\x2d\xd4\x63\xea\x01\x34\x06\xa0\x01\xfc\x0e\x40\x63\x6c\xd0\x40\x29\x40\x43\x26\xde\x86\x54\x06\x34\x28\x91\x56\xea\x7a\x94\x48\x31\xa9\xe9\xf8\xc1\x9a\x90\xc4\xa4\x6e\x91\x94\xe3\x13\x92\x98\xd4\x2d\x98\x5b\x26\x24\x31\x21\x89\x53\x6f\x72\x42\x12\x93\xba\x45\xd3\xf3\x4e\x48\x42\x26\xae\x47\xbb\x86\x8f\x4c\x3d\x19\x4b\xc7\xb7\x97\xe1\x2a\xdf\x85\x8f\x65\xa4\x72\xdf\x1b\x1f\x5b\xb9\x3d\x96\x07\xdf\xf3\xfe\x6a\x55\x9f\xd3\x27\x20\x31\x29\x5b\xb4\x1b\xdf\xc4\xa7\x6f\x2a\xd7\xcd\xf0\x0c\xdf\x9e\xe6\xb8\xad\xe3\x93\x54\x3a\xc9\xb7\x26\x20\x31\x29\x5b\x14\xed\x7a\x27\x20\x31\x01\x89\x9b\xc7\x05\x24\x64\x82\xdd\x74\x3d\x40\x62\x02\x12\xa9\xe1\x43\x3e\x81\x44\x49\x5a\xbd\x26\x24\x21\x13\xe3\x6b\xf2\x21\x5f\xdd\xab\x08\xed\x90\xaf\x52\xf6\xd1\xea\x3f\x21\x89\x09\x49\xf4\x44\x5f\xe4\xab\x4c\x74\x5a\x26\x26\x24\x31\x29\x5b\x64\x7d\x0b\x9b\x90\xc4\xa4\x6c\x51\x32\xed\xd0\x4f\x24\xd1\x7a\xe6\xbe\xe8\x47\xd9\x22\x5f\xf8\xd0\x4f\x24\x91\x8e\x8e\x2e\xe8\xf7\x41\x12\x3c\x2f\xfa\x89\x24\xda\xa9\x65\x62\x42\x12\x13\x92\x38\x35\xff\x4f\x48\x42\xa6\xf3\x19\x63\x02\x12\x93\xaa\x45\x17\x63\x4e\x40\x42\x26\xf7\x83\xab\xa1\x1e\x45\x8b\x8f\x66\xa8\xd7\xd8\x03\x12\x05\x70\xc4\x84\x23\xfa\x89\x0f\xf5\xc4\x11\xf5\x68\xf4\x45\x3d\x71\x44\xe3\xeb\xe7\x84\x23\xe6\x07\x47\xd0\x17\xf5\x28\x5a\xf4\x4a\x3b\xd4\xa3\x68\xa1\x73\x1f\x6b\xc2\x11\x13\x8e\x38\xaf\x5f\xb1\xce\x4f\x30\x63\xb6\xfd\xc1\x45\x2f\x0b\xcc\x90\x89\xd5\x8b\x4b\x23\x6e\x98\x42\xd9\x78\x42\x19\x13\xca\xa0\x4c\x3e\xa1\x8c\x09\x65\x50\x3a\x9a\x50\xc6\x84\x32\x3a\xe9\x04\x65\xc8\xa4\x72\x6b\x8a\x9a\x50\xc6\xa4\xa4\xc1\xf7\xd2\x09\x65\x4c\x4a\x1a\x37\xef\x0f\xca\x90\x89\x76\xf4\x45\x5d\xc8\x23\x69\x51\x9a\x90\xc7\xa4\xa4\x91\xf5\x7d\x78\x42\x1e\x93\x9a\x45\x6e\xf4\x45\xdd\xce\x22\xac\x12\xd8\x84\x3c\x26\xe4\xd1\x89\x7f\xc8\x63\x42\x1e\x2c\x90\x13\xf2\x98\x9b\x3c\x2a\xed\x90\x8f\x9a\x45\xd7\x2e\x8f\x53\x21\x98\x18\x8b\xde\x2a\xe4\x31\xa9\x59\x40\x1e\x13\xf2\x90\xd9\x9f\xff\x27\xe0\x21\x13\xb7\x95\x7c\x80\x87\x4c\x3a\xf9\x94\x34\x01\x0f\x99\x00\x5f\x49\x00\x78\x4c\xc0\xe3\x42\x52\xc0\x43\x26\x95\x2d\x29\xe0\x31\x01\x0f\x36\xec\x13\xf0\x90\x89\x99\x91\x76\xc8\xf2\xb0\xb6\x92\xee\x80\x87\x0c\x1f\xbe\x27\xd8\x21\x93\x6a\xe7\x05\x81\x1d\x32\x91\x12\xf4\x24\xa6\xc0\x8e\x4b\x3b\x93\x09\x76\xc8\xa4\xaa\xcd\xd9\x84\x3a\x64\x52\xe9\x2c\x21\x50\xc7\x84\x3a\x4e\xe6\x13\xa8\x43\x26\x55\xca\xc8\x13\xea\x98\xd4\x30\x12\x71\x0b\x75\xcc\xb1\x57\x56\x7c\x88\x07\x61\x5c\xc4\x05\x84\x21\x93\x7a\x3a\x19\x0b\x42\x89\x30\x6a\xe7\x7d\x43\x18\x13\xc2\xb8\x44\x1d\x13\xc2\x98\x10\x46\x22\x3b\x21\x8c\x09\x61\x70\x0c\x64\x42\x18\x93\x7a\xc5\x55\x91\x00\xa9\x20\x0c\x6a\x2c\x13\xc2\x98\x10\x46\x26\x46\x21\x0c\x99\x90\x54\x63\x86\x30\x26\x84\x71\x31\x57\x42\x18\x13\xc2\xb8\x58\x0a\x21\x0c\x99\x08\x16\xae\x87\x56\x22\x8c\x9a\x3a\xed\xd0\x4a\x84\xc1\xb9\xe1\x35\x21\x8c\x49\xbd\xe2\xd8\x63\x21\xd0\xa8\x57\x50\x6e\x9e\x20\xc4\x04\x21\xae\xdd\x17\xfd\x26\xf9\xa7\xcd\xd4\x04\x21\x26\x08\x71\x11\xcc\x20\xc4\x04\x21\x32\xe1\x02\x42\x4c\x10\x22\x93\xe3\x20\xc4\xdc\x08\x41\xd0\x83\x10\x93\x7a\xc5\xc9\x1a\x02\x42\x4c\xea\x15\x1c\x07\x9a\x20\x84\x4c\xaa\xd4\x35\x26\x08\x21\x93\xf7\x8e\x03\x84\x98\x20\xc4\xcd\xa4\x0f\x42\x4c\xca\x15\x27\x52\xc1\x10\x13\x5e\xb8\x1b\x7d\x91\x0a\x5e\xa0\xc4\x32\xe1\x85\x49\x69\x22\xef\xeb\x21\x95\x78\xa1\x02\xea\x13\x5e\x98\x94\x26\xf8\x40\x35\xe1\x85\x49\x69\xa2\x1e\x5c\x0f\xa9\x28\x4d\x94\xed\x43\x2a\xf1\x42\x6d\xcc\xea\xf0\x02\x07\xd3\xda\xcd\xc2\x02\x2f\x70\x30\xad\xdd\xcc\x37\xf0\x82\x4c\x64\xaf\xae\x07\x2f\xc8\xa4\x5a\xf4\xa1\x6d\xc2\x0b\x32\xd1\x4e\x7d\xe1\x85\x09\x2f\x9c\xa4\x1b\xbc\x30\xe1\x85\x8b\x69\x18\x5e\x90\x89\x76\xf8\x08\xb5\x30\x67\xbb\x71\x21\x9f\xef\xcf\xc1\xf8\x90\x0f\x5c\xc8\xa2\xbc\x09\x2e\xc8\xa4\xa3\xee\xe1\x21\x9f\x70\xa1\x53\x11\x9e\xe0\x82\x4c\xbc\x71\xbd\x36\x70\x41\x26\xf5\x1d\xcd\xe0\x82\x4c\xaa\x54\xb7\x26\xb8\x30\x77\x65\x82\xd9\x05\x5c\x98\xbb\x32\x91\x68\x87\x7c\xbe\x23\x4d\xf7\x00\x17\x26\x95\x89\x4c\x26\x80\x0b\x32\xa9\x73\x50\x67\x82\x0b\x32\xf1\x2a\x69\x87\x7c\xc2\x85\x4e\x85\x65\x82\x0b\x32\x91\x45\xf7\xaf\x58\xe7\xc1\x89\xb9\x7f\x78\xc6\x82\x06\x4e\x4c\x70\xe2\x62\x51\x02\x27\x64\x52\xa5\xb0\x3c\xe1\x89\x09\x4f\x64\xde\x34\x3c\x21\x93\x3a\x67\x08\x26\x3c\x21\x73\x1d\xbc\x7c\x70\x42\x26\x71\xd6\x7c\x4d\x70\x42\x26\xf5\xa3\x72\x0b\xd4\x05\x27\xf8\x52\xca\x2f\xa7\x30\x31\xe4\x50\x88\x13\x92\x98\x08\x9c\x2c\x5f\xc2\xc7\xda\xaa\xc0\x36\x70\xc2\xc0\x89\x53\xc7\xe1\x0c\x9c\xb0\x8d\x13\xba\xaf\x81\x13\x06\x4e\x9c\x7a\xd3\x06\x4e\xc8\xa4\x7e\xe8\x0d\x1a\x38\x61\xe0\x84\x8e\xf7\x2f\x03\x27\x64\x52\x3f\x2e\xfa\x5e\xf8\xd8\x0f\x37\xc6\x72\xe3\x43\x2a\xcd\x47\x06\x4e\x18\xc7\xa0\x7a\xe6\x1e\x03\x1f\x73\xde\x41\xbb\x89\x0f\xad\x6e\xae\x67\xf8\x4c\xeb\xd2\x41\x5f\xc7\xe7\xf8\x8a\x7c\x0b\xdf\x92\x4f\x35\x41\x83\x27\x0c\x9e\xc8\x9a\xa7\x0d\x9e\x30\x8e\x41\x9d\x9a\xb8\x0c\x9e\xb0\x5d\x98\x10\x58\x1b\x3c\x21\x13\xd7\xd3\x7d\xe1\x09\x99\x40\x34\x7c\xe8\xb7\x8f\x41\xf1\xbc\xf0\x84\xc1\x13\xb9\xe3\x43\x3f\xf1\x44\xd7\x6f\x2d\x96\xc1\x13\x32\xa9\x83\x72\x06\x4f\xd8\xe6\x09\xed\x9c\x0d\x9e\x30\x78\x82\xc2\x89\xc1\x13\x32\x71\x3d\x9e\x17\xfd\xe0\x89\x73\x5f\x0f\xfd\x2a\xfa\xe9\xa3\x86\xc1\x13\x32\xbb\xe8\x62\xe0\x84\x4c\x86\x26\x0c\x9a\x90\xf9\xa8\xc3\x18\x34\x21\x13\x3e\x29\x0a\x4e\x18\x38\x41\x6d\xc6\xc0\x09\x99\x68\xc7\xf5\x50\x4f\x3c\xd1\xcb\x41\x5f\xd4\xdb\x3c\xa1\x4f\x10\x06\x4f\xc8\x84\x02\x52\x0f\x9e\x30\xea\x12\xec\x4e\x0c\x9e\xb0\xcd\x13\x8d\xbe\xa8\xd7\xa8\xeb\x14\xc6\x82\x7a\xe2\x89\x92\xb4\x03\x32\x78\xc2\xa8\x4b\xa4\x7d\x5f\xd4\xdb\x75\x89\x4e\x5f\xd4\x03\x18\x32\x91\x01\x30\x18\x87\xa0\xa8\x3b\x19\xc0\x20\x13\x91\xab\x31\x43\x0c\x32\x1f\xb5\x28\x83\x18\x6c\xd7\x25\x76\x3b\xf4\x13\x31\xf4\xa4\x25\xcd\x20\x06\x99\xd4\x29\xc7\x19\xc4\x60\xfb\x10\x94\x76\x54\x06\x31\x18\xc4\xa0\xdf\xcf\x2e\x83\x18\xec\xe3\x10\x14\xf7\x45\xbf\x30\x27\x5f\xd4\x0c\x60\x30\x80\x61\x4b\x05\x30\xc8\xa4\x92\xf6\x6d\x91\x0f\x60\xd0\x8f\xcf\x96\x01\x0c\x06\x30\xa4\x4a\x3b\xe4\x03\x18\xf4\x8b\xb4\x65\x00\x83\x7d\x00\x83\xc2\x00\x60\xe0\xd8\x77\xa3\x1c\xc7\xb1\x6f\x4c\x2c\x2d\xba\x1e\xc0\x20\x93\xce\x9d\xbc\x00\x83\x71\xc8\x89\xf2\x8f\x41\x0c\xf6\xec\xb3\x61\x92\x05\x62\x30\x4a\x15\x49\xdf\x39\x0c\x62\x30\x4a\x15\xfa\xd5\xcf\x32\x88\x41\x26\x15\xca\x2b\x06\x31\x18\xc4\x50\xb4\xc9\x32\x88\x81\x63\xe9\x25\x91\xd0\x10\x83\x51\xaa\x38\x0b\xe3\x43\x17\x4a\x15\x67\xe1\x7a\xe8\xf2\xec\xa4\x94\xce\x30\x83\x51\xaa\x38\x09\x49\x98\xc1\x9e\x5d\xf8\xe7\xbe\x84\x15\xcc\x70\x30\x09\xc1\x0c\x32\x1f\xa5\x4b\x03\x1a\x0c\x68\x60\x03\x6e\x40\x83\x4c\xaa\x94\xe8\x0c\x68\x30\x4a\x15\x7c\xd1\x35\xa0\xc1\x28\x55\xec\x89\x18\x68\x90\x09\x9f\x9e\x0d\x68\x90\x49\x65\xeb\x4c\xa9\x42\xe6\xa3\x64\x6a\x80\x84\x4c\x2a\x94\xd4\x0c\x90\x30\x4a\x15\x14\xf9\x0d\x90\xb0\xb1\xf5\x53\x5c\x01\x12\x36\xb6\x7e\xfd\xaf\x2f\xf5\x06\x67\x18\x9c\x41\xb5\xd3\xe0\x0c\xa3\x92\x01\x3f\x18\x9c\x21\x93\x4a\xe6\xd5\xc0\x19\x06\x67\x9c\x84\x09\x9c\x61\xbb\x92\x41\xc8\xc2\x19\xb6\xcf\x45\x69\x63\x6b\x70\x86\xcc\x79\x92\x8c\x60\x86\x81\x19\x37\xcb\x17\x98\x61\x60\xc6\xcd\x9b\x01\x33\x8c\x63\x51\x14\x95\x0d\xcc\x30\x0a\x19\x27\x93\x19\x98\x21\x13\x13\x83\x14\x02\x33\x64\x02\x65\x18\x32\xea\x72\x2c\x8a\x93\xd1\x06\x66\x18\x98\x71\x32\x51\x83\x19\x32\x11\xc5\xf4\x45\x3e\x61\x46\xdd\x6f\x0b\xcc\x90\x49\xe5\x64\x52\x01\x33\x6c\x63\xc6\xbe\x2f\xf2\x81\x19\x27\xd9\x08\x66\xc8\x7c\x14\xc7\x0d\xcc\x30\x8e\x45\x9d\x44\x22\x9c\x61\x70\xc6\xc9\xa2\x01\x67\xc8\x7c\x14\xd1\x0d\xce\x30\xdb\x5b\x16\x8d\x8f\x5a\x85\xc1\x1e\x99\xe7\x80\x3d\x6c\xb3\x87\x36\x93\x06\x7b\x18\xb5\x8a\xad\x01\xec\x61\xd4\x2a\x28\x66\x1b\xec\x61\xb0\x47\x26\x93\x61\x0f\xa3\x56\xc1\x71\x4a\x83\x3d\x64\xe2\x7a\xf8\xd0\xcf\x76\x31\x9b\xeb\xa1\x1f\xc7\xa2\x32\x8b\x0b\xec\x21\xf3\x51\xf8\x37\xd8\x43\xe6\xca\xaa\xb5\x1b\xe8\x61\x94\x2a\xb6\xa4\xa0\x87\x4c\xec\xf8\x74\x5b\xd0\x43\x26\xd6\x52\x5d\x0e\xf4\xb0\x8d\x1e\x37\x3e\xe4\x73\x4e\xf5\x30\x51\x83\x1e\xc6\xa9\xa8\x0f\x1f\xf2\x51\xaa\x38\xf5\x25\xd7\x60\x0f\xdb\xec\xc1\xae\x12\xf6\x90\x09\x0a\xc7\x87\x7c\xbe\x0f\xbe\xe3\x43\x3e\xd8\xa3\xb3\x90\xc0\x1e\x32\xf1\x1c\x7a\xbd\xb0\x87\x4c\x2a\x90\xaa\xc1\x1e\x46\xa9\x22\xef\xeb\x21\x1f\xa5\x8a\x7b\x3f\x1b\xf2\x6d\xf6\xd0\x17\x39\x83\x3d\x8c\x52\x45\x21\xfc\x60\x0f\xa3\x54\x71\xa2\x33\xec\x61\x6b\xef\xf8\x74\x5f\xd8\x43\x26\x55\x6a\xd9\x06\x7b\x18\xa7\xa2\xf8\x16\x69\xc0\x85\x6d\xb8\x60\x7c\xc0\x85\x4c\x3c\x87\x9e\x17\xb8\x90\x89\xf1\xe1\x43\x3f\x4e\x45\x9d\xfb\x1e\xe8\xc7\xa9\xa8\x8c\xa6\xc0\x85\x51\xac\xe0\xac\x87\x41\x17\x32\xa9\xec\x29\x07\xba\x90\x89\x34\xa2\x2f\xfa\x71\x2a\x6a\xef\x66\xa1\x0b\x7e\x43\xd5\x4e\xbd\x73\x7e\x43\x85\xf9\x38\x3b\xe2\xd0\x85\x97\xad\x55\x97\x2f\xe3\xe3\x04\xa3\xf6\x45\x0e\x5d\x38\x74\x91\x6f\xfa\x16\x7c\xa4\xaa\x76\xae\x0e\x5d\x38\xc7\x9e\xf8\x6e\xeb\xd0\x85\x43\x17\x59\xb3\xa9\x43\x17\x4e\xb1\x82\x67\x73\xe8\xc2\x3f\x8a\x15\x8c\xe5\xc6\x27\xba\x80\x88\x1c\xba\x90\x49\x27\x65\x27\x87\x2e\x1c\xba\xd0\xaf\xdc\x97\x43\x17\x32\x71\xdf\x22\x9f\xe1\xdb\x9c\xcb\xb3\x39\x3e\x48\xac\xf3\x1c\x0b\xdf\x2e\xca\xea\x79\xa1\x0b\xdf\x74\x71\xe2\x43\xbf\x4d\x17\x68\x05\x5d\x38\x74\x91\x35\x6d\xf0\x27\x04\x30\xb1\x77\xd5\x58\xa0\x0b\x87\x2e\xb2\xde\xa5\x43\x17\x5e\x77\xae\xea\x39\xa0\x0b\xdf\x74\x51\xb9\x07\xfa\xf1\x23\x8b\xdc\xf0\xa1\x5f\xe5\xd8\xd8\x85\x0f\xfd\x38\xf7\xc4\x39\x0c\x87\x2e\x1c\xba\xc8\xc4\x01\x74\xe1\x75\x17\xb5\xa5\x3d\x74\x21\xf3\x71\xae\xc8\xa1\x0b\xe7\xdc\x13\x67\x5b\x1c\xba\xf0\x5d\xad\x38\x78\x0e\xf4\xa3\x5a\x91\x75\xde\xc5\xe1\x0b\xa7\x5a\x91\xee\x5f\xc1\xf5\x0e\x7e\x38\xc7\xa2\x92\xb6\xcf\x0e\x7e\xc8\x44\x48\xe0\x43\x5e\xe1\x47\xd1\x8f\xd1\x97\x83\x1f\x4e\x39\x83\x55\xd7\xc1\x0f\x07\x3f\xf4\x57\x27\x96\x83\x1f\x4e\x39\x83\x43\xf3\x0e\x7e\xc8\xc4\x74\x2b\x29\xc1\x0f\x6f\xac\xba\xfa\x8a\xec\xa0\x86\x4c\xb4\xe3\x7a\x48\xb9\x4b\x17\x4a\x6f\x07\x35\x64\x52\xbd\x32\xed\x90\x92\x23\x50\x05\x79\x41\x0d\xa7\x36\x01\xba\x38\xa8\x21\x93\xca\x4e\x01\x50\xc3\xf7\xef\x2d\x08\x3b\x50\xc3\xf7\xef\x2d\x34\x75\x39\xa8\x21\x93\x8e\x5b\x7b\x74\x07\x35\x64\xa2\x9d\xee\x0b\x6a\xc8\xa4\xc2\x31\x17\x07\x35\x64\x22\x05\x14\xc6\xa0\x86\xef\xe2\x04\xaf\x15\xd4\xf0\x7d\x2c\x6a\x5f\x0f\xad\xc4\x1a\x95\xca\xbf\xc3\x1a\xce\xb1\x28\x0e\xbf\x3a\xac\xe1\xfc\xa0\xe2\x4c\x3c\x07\xfa\xf5\xad\x1f\xcf\x8b\x7e\xbb\x38\x71\x72\x0f\xf4\xdb\xac\x71\x71\x0f\xf4\xeb\x3b\x14\xd5\x17\xd6\x90\xb9\x39\x77\xec\xa0\x86\x73\x2a\xaa\x32\x3c\x50\xc3\x3f\x4e\x45\xe9\x71\x41\x0d\x7f\xf6\xa9\x1e\xdd\x16\xd4\xf0\x8d\x1a\x3a\xaf\xeb\xa0\x86\x3f\x5b\x16\xda\x21\x0b\xa8\xc1\xe9\x1f\x07\x35\x64\x52\xd5\x8f\xa8\x97\x83\x1a\x0e\x6a\x54\x6d\x46\x1c\xd4\x90\x09\x1f\xed\x90\xe5\xd9\x19\x8a\x0f\x59\x1e\x4a\xd7\xcc\x02\xa0\x86\x3f\x5b\x16\xc6\x87\x2c\x42\x8d\xa2\xbf\xc8\xb1\x1c\xd4\x70\x50\x23\x11\x42\xa0\x86\x83\x1a\x9c\x17\x77\x50\x43\x26\x55\xc8\xd4\x41\x0d\xa7\x3e\xc1\xde\xda\x41\x0d\x99\xf0\xd1\x17\xfd\x06\xab\x29\x69\x09\x6a\x38\x58\x51\xb7\x0f\xad\xf6\x09\x28\x5e\x2f\x58\xe1\xfc\x9e\x82\x4d\x9a\x83\x15\xce\xef\x29\x38\xad\xe8\x60\x85\x4c\xaa\xac\x7e\x0e\x56\xc8\xa4\x52\x09\x67\xb8\x41\xe6\xe3\x54\xa3\xc3\x0d\x32\x91\xbe\xdc\x17\xad\xe0\x06\xbe\xb6\x3a\xdc\x20\x13\xf7\x50\x3b\xb8\xc1\xe1\x06\x70\xcb\xe1\x06\x9f\x1b\x6b\x75\x5f\xb8\xc1\xf9\x3d\x05\xdf\xfe\x1c\x70\x70\x4e\x40\x9d\xda\xdd\x38\xe0\xe0\x73\x9f\x42\xd4\xfb\x00\x1c\x9c\x13\x50\x69\xb7\x23\xd6\x66\xfb\xf3\x09\x4b\x07\x1c\x64\xc2\x47\x3b\xf4\x9b\x5b\x3f\x7c\xe8\xb7\xc1\xa1\xf1\x1c\xe8\x07\x38\x70\x3a\xd3\x01\x07\xdf\x47\x9c\x2a\xcf\x81\x7e\xd4\x27\x12\xab\x10\xe0\xe0\x73\x9f\xe2\x94\x56\x80\x83\x4c\xf8\xf4\x3e\x00\x07\x99\x8f\xd3\x9e\x0e\x38\xb8\xed\xa3\x13\xea\x0b\x38\x38\xe0\x90\x88\x53\xc0\xc1\x37\x38\x30\x85\x01\x0e\x4e\x81\x22\x11\xa7\x80\x83\x6f\x70\x60\x2a\x01\x1c\x1c\x70\xa0\x90\xe8\x80\x83\x7f\x80\x03\xd7\x43\x3f\xc0\xa1\x91\xe7\x80\x83\x6f\x70\x50\x91\xc1\x01\x07\xe7\x90\x53\x26\xf7\x01\x07\xff\x38\xe4\xc4\x3d\xd0\x0f\x70\xd0\x1f\xb2\x59\x0e\x38\xb8\x6d\xfd\x68\x87\x7e\xb6\x73\x15\x0d\xd0\x0f\x70\x68\xcc\x11\x80\x83\xef\xa2\x05\xba\x40\x0e\xbe\x8b\x16\x02\x16\x87\x1c\xdc\xf7\x09\x50\xc5\x06\xe4\x20\x13\xd3\xb8\x74\x81\x1c\x1c\x72\x28\x3c\x2f\xe4\xe0\x90\x03\x75\x48\x87\x1c\x1c\x72\x68\xe4\x1b\xe4\xe0\x90\x03\xbf\x23\x72\xc8\x41\x26\xee\x41\x5f\xf4\xf3\x5d\xfd\xff\x8b\xd5\x3e\xe7\xff\x7f\xb1\x87\x2b\x64\x42\x35\x3d\x39\x5c\xe1\x1f\x47\xa0\x18\x01\xea\xfa\xf8\xf3\x39\x61\x7e\xe3\x8f\x89\x3d\x8d\x14\x87\x2b\x9c\x9a\x46\x62\x06\x81\x2b\x9c\x9a\x06\xa8\xe6\x70\x85\x7f\xd4\x34\xe4\x83\x2b\x64\x52\xe1\x07\xc9\x0e\x57\xf8\xda\xea\xea\xc9\xe1\x0a\x99\x68\xa7\x7b\xc0\x15\xbe\xf6\x4c\x28\xc5\xe1\x0a\xe7\x08\x94\xfe\xf6\xc1\x72\xb8\xc2\xf7\x19\xa8\x93\xfb\xa2\x2e\x45\x0b\x8e\xef\x39\x5c\xe1\x9b\x2b\x3a\x63\x41\xdd\xb5\xcf\x1d\xd3\x17\xfd\xe0\x8a\xbe\xc7\x82\x7e\x6b\xff\xda\x87\x76\xe8\xc7\x21\xa8\xbc\xfb\xa2\xdf\xda\xe7\x6b\xe9\x8b\x7e\x70\x45\xdb\xf7\x45\xbf\x5d\xb5\xa8\xe5\xff\x79\xab\xf1\xff\x7f\x7e\xbe\xbd\xfd\xe9\x6f\x27\xce\x3f\x7c\xff\xee\x5f\x7e\xe8\xef\x34\xea\x0f\x24\xbe\xcc\xd7\xe7\x2f\xfe\xa7\xbf\xf9\xf8\xed\xeb\xb7\xe8\xa5\xff\xfd\x9f\x00\x00\x00\xff\xff\xa6\xb9\x1e\x14\x1f\x52\x00\x00"); +var _cfg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x9e\x7b\xef\xcc\x68\x04\x22\x50\x12\x1e\x78\xf1\x5e\x4b\xd3\x7f\x50\xba\x70\xa4\x71\x30\x34\xb2\x91\xed\x45\xbe\x7d\x39\xf7\xd8\x29\xbc\x45\x70\x74\x22\x5d\x29\xbf\xe3\x19\x6d\x1e\xb7\x4f\xdb\xe5\x70\x09\x9b\x5f\xd6\xe3\xf4\xdc\x2e\x61\x7f\x58\xe6\xb5\x9d\x8f\xd7\x75\x6a\xe1\xa5\xbd\x1e\x96\xae\x13\x0d\xf3\x61\xba\xdc\x0f\xfd\x63\x7a\xdb\x9d\xba\x0e\xd7\x3f\xbf\x9f\x2f\xed\x6d\xbb\xec\x8f\xc1\x78\xde\x7c\x3d\xdd\xce\x0d\x61\xf3\x6b\x7b\x3d\x9c\x2f\xeb\x7b\xf8\xf4\xd3\x7c\x7c\x69\x3f\x84\xb9\xed\x91\xff\xbc\xce\x6d\x3d\x2c\xaf\xe1\xd3\xe3\xb7\x67\xf9\x88\x9f\xaf\xa7\xd3\xbf\xed\xad\x2d\x97\x20\x9e\xb5\x65\xf6\xcf\x6e\xf3\xf8\x75\x77\xfa\xb6\x7b\x6b\x61\xe3\x93\x3e\xe3\xba\xcf\x3c\xc9\xff\xf6\x47\x5b\xcf\x87\xe3\x12\xe4\xc7\x18\xf3\xff\xf1\x6f\xef\xa7\x76\x9b\xd5\x6d\xfe\xfa\x7d\xfb\x14\xfe\x96\x20\x31\x68\xce\x43\xfc\xe7\x96\xff\xf9\xf5\x38\xb7\x10\xef\x77\xda\x3e\x3d\x1e\xaf\x78\x84\x3e\xc5\xca\x50\xf8\x2f\x4d\xc7\xb9\x9d\x4f\xbb\xa9\xad\xbb\xe5\xb5\x75\x21\x8c\x31\xc6\xf8\x10\xc6\x64\x5f\xbe\x3c\xe0\x69\xbf\x3b\xa3\x2b\xf5\x76\xe5\x61\x66\x72\xbf\x22\xc6\xfd\xfe\x21\xc4\x6e\x8c\xc2\x63\xc1\xb1\xe6\xd2\x8d\x51\x99\x28\x92\x2c\xda\x8d\xd1\x98\x18\x92\xbe\xd4\x6e\x8c\x89\x49\x42\x22\x51\x53\x37\xc6\xcc\x28\x7b\xa4\x15\xb3\x0b\xa3\xe2\x51\x36\x0c\xef\x19\xf5\x1e\xf5\x03\xa6\x57\x46\xd5\x9f\x20\x26\x8c\x1f\x18\x0d\x1e\x59\xc4\xf8\x1d\xa3\xdd\xed\x39\x31\xfe\x85\xd1\x8b\x47\x55\x30\x7e\x62\x34\x21\xb2\xd8\x63\xfc\xcc\x68\xf6\xc8\x14\xe3\x1b\xa3\xe6\x51\xae\x18\xbf\x67\xb4\xf7\xa8\xa6\xd8\x8d\x42\x29\x71\xa9\x14\x87\xd2\x8d\x42\x2c\x71\xac\x64\x59\xbb\x51\xa8\x25\xae\x95\x4a\xac\xdd\x28\xe4\x12\xe7\x4a\xb5\xa4\x6e\x14\x7a\x49\xba\x99\x62\x3c\xbd\xc4\xbd\xb2\xf5\x18\x4f\x2f\x71\xaf\x5c\x0c\xe3\xe9\x25\xee\x95\x6b\xc5\x78\x7a\x89\x7b\x15\x49\x18\x4f\x2f\x71\xaf\x92\x22\xc6\xd3\x4b\xdc\xab\x14\x14\x2b\xf4\x12\xf7\x2a\x03\x9a\x15\x7a\x89\x7b\xf5\x82\x6a\x85\x5e\xe2\x5e\x7d\x42\xb5\x42\x2f\x69\xb7\xfe\x31\x9e\x5e\xe2\x5e\xfd\x80\x6a\x95\x5e\xea\x5e\x55\x50\xad\xd2\x4b\xdd\xab\x26\x54\xab\xf4\x52\xf7\xaa\x3d\xaa\x55\x7a\xa9\x7b\xd5\x01\xd5\x2a\xbd\xd4\xbd\x06\x45\xb5\x4a\x2f\x75\xaf\x21\xa1\x5a\xa5\x97\xba\xd7\xd0\xa3\x5a\xa5\x97\xba\xd7\x30\xa0\x5a\xa5\x97\xd6\xfb\x77\x15\xf3\x09\xa6\x03\xb3\x84\x72\x95\x62\xba\x63\xd6\xa3\x5d\x25\x99\x3a\x19\xda\xc7\x2d\x68\xa6\x13\x33\x45\xbf\x4a\x34\x9d\x99\x65\x14\xac\x54\xd3\xc6\xac\x47\xc3\x4a\x36\xdd\x73\x91\x44\x54\x6c\x74\xb3\xc8\x4c\xd1\xb1\x11\xce\x84\x59\x46\xc9\x46\x39\xd3\xfb\x02\x8b\xdd\x68\xa4\x33\xa7\x13\x8b\xa8\xd9\x68\x67\x5c\x9b\x66\xe8\xd9\x88\x67\x5c\x9c\x96\x51\xb4\x51\xcf\xb8\x3a\xad\xa2\x69\x23\x9f\x71\x79\xa6\x88\xaa\x8d\x7e\x46\xbf\x64\xe8\xda\xe8\x67\xf4\x4b\x19\x65\x1b\xfd\x8c\x7e\xa9\xa2\x6d\xa3\x9f\xd1\x2f\x0b\xea\x36\xfa\xd9\x74\xdf\x15\x70\x0f\xfa\x19\xfd\x72\x41\xe1\x46\x3f\xa3\x5f\xae\x68\xdc\xe8\x67\xf4\x2b\x82\xca\xd3\x6d\x0f\xa4\x5f\x31\x74\x9e\xe8\x97\xe8\x57\x0a\x3a\x4f\xf4\x4b\xf4\x2b\x15\x9d\x27\xbb\xed\x9f\xdc\x8e\x24\xab\xef\xa2\xf7\xdd\x12\xbf\xe3\x5d\xf3\xb1\xfb\x4f\xd7\x75\x6d\xcb\xc5\xdf\x34\xbe\xc1\x63\x7f\x3e\x2c\xed\xe3\xad\x75\x3a\x9e\x70\x95\xff\xfc\x17\x00\x00\xff\xff\x33\x87\xd9\xc1\xe1\x06\x00\x00"); +func _dbeb ()([]byte ,error ){return _gb (_fbe ,"B5pc-V")};var _fceb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x73\xdc\x1e\xb6\xb6\xe2\xd8\x91\x20\x2c\x94\x84\x52\xb3\x6c\x5b\x9a\xcd\xb6\x50\x7a\x90\xa5\x71\x2a\x68\x64\x23\xdb\x87\xfc\xfb\xa2\xd1\xc4\xed\x21\x48\xdf\x93\x46\x79\xcf\x33\xc5\xa1\x3d\xb6\xc1\xcf\x50\x7c\x8d\x83\x3d\xe1\x0c\xbd\x0f\x2e\xe2\x34\x2c\xd1\x22\x74\x78\xf1\x41\x08\xb9\x01\xe7\xed\x7c\x47\x5a\xec\xd5\x8c\x42\x14\xe7\xe0\x9f\x4f\x8f\xe7\xd7\x8f\xea\xf1\x13\x2c\x13\xb2\x7c\x68\x8f\xa7\xdb\x34\xe3\xb5\x0d\xfd\x00\x55\x2e\x77\xcb\xc8\x4f\x00\x14\xdf\xf0\xe2\xa7\x39\xde\xe0\xe1\x83\x1b\x3a\x7c\x07\x0e\xfb\xa4\x7f\x89\x0e\xa3\x0f\x17\x78\x78\x1e\x22\x1a\xb9\x1e\x9c\x96\x71\xfc\x83\x57\x0c\x33\x48\xd2\x30\x38\x5a\x45\x71\x78\x31\xe3\x67\x73\x45\xf8\xdf\xce\x1b\x1d\xd2\xd9\x1b\xc6\xc9\x0f\x01\xa4\x7c\x5f\x96\xf5\x3f\xfd\xf5\x36\x22\x3f\x26\x8a\x1f\xe7\xf6\x08\x3f\x25\xc8\x12\x36\xf5\x56\xd6\xbf\x58\xff\xfe\x32\xb8\xf5\x96\x94\x39\x81\xf5\xce\xfe\x36\x51\xec\x71\xa3\x4a\xdd\x3c\x81\x2a\x1b\x99\xc9\xd4\x89\x6a\x25\xf6\x58\xa9\x52\x57\x89\x76\xb5\xd8\x63\xdf\x59\x25\x89\x1a\x26\x4b\xa4\x99\x30\x91\x2a\x33\x75\x1d\xd1\x8e\xc9\x11\x29\xa6\x9e\x28\xd7\x39\x4d\x75\xcd\x86\xa8\x37\xf4\x7f\xba\x4a\x5f\xe7\x6e\x52\xec\x56\xd3\xd1\x84\x0b\xb2\xeb\xea\x09\xf2\x66\x4b\x86\x75\x36\x9c\x2c\xe6\xcd\x86\xe4\x86\x65\xc5\xb2\xa6\x08\x4d\xcd\xf1\xb6\x77\x99\x52\x37\x15\x67\xa1\xdb\x69\xa3\x29\x22\xc7\xd0\x86\x65\x9d\x13\x48\x4e\xd0\x65\xd9\x69\x8a\xa9\x4b\x36\x9f\xcd\x12\xa4\xa9\x5a\xbb\x6c\x97\x18\x31\xcc\x34\x53\xd4\xc7\xd4\x1b\x1f\x70\x1d\xdb\x71\x18\x53\x15\xfd\xfe\x06\x00\x00\xff\xff\x62\x85\x62\x69\xe2\x02\x00\x00"); +func _egda ()(*asset ,error ){_abgd ,_eccb :=_ebdf ();if _eccb !=nil {return nil ,_eccb ;};_add :=bindataFileInfo {_ee :"CNS1-H",_ffd :3373,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491531,0)};_gdbg :=&asset {_da :_abgd ,_dc :_add };return _gdbg ,nil ; +};func _cdec ()(*asset ,error ){_abbd ,_fdcd :=_ecfd ();if _fdcd !=nil {return nil ,_fdcd ;};_fgca :=bindataFileInfo {_ee :"UniGB-UTF32-H",_ffd :265659,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492773,0)};_bdacg :=&asset {_da :_abbd ,_dc :_fgca };return _bdacg ,nil ; +};func _affb ()(*asset ,error ){_febc ,_gbdf :=_ceda ();if _gbdf !=nil {return nil ,_gbdf ;};_cggf :=bindataFileInfo {_ee :"ETHK-B5-V",_ffd :631,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491827,0)};_babf :=&asset {_da :_febc ,_dc :_cggf };return _babf ,nil ; +};func _eagb ()(*asset ,error ){_efdb ,_ebgb :=_fdd ();if _ebgb !=nil {return nil ,_ebgb ;};_bgef :=bindataFileInfo {_ee :"KSCms-UHC-HW-H",_ffd :13680,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492566,0)};_gbgf :=&asset {_da :_efdb ,_dc :_bgef };return _gbgf ,nil ; +};var _abaa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x31\x6b\xc3\x30\x10\x85\x77\xfd\x8a\x1b\xd3\xa5\x96\x1c\x92\x76\x08\x81\x92\x10\x70\x21\x4d\x89\x9b\xb6\x50\x3a\x28\xd2\xd9\x08\xea\x93\x90\xe4\xc1\xff\xbe\x48\x76\x5c\xe8\x60\xce\xfa\xee\x3d\x74\xef\x54\xec\xaa\x7d\x45\x26\x42\xf1\xea\xad\xaa\x31\x42\x63\x48\x7b\x0c\xb6\xf7\x0a\xe1\x8a\xad\x21\xc6\x44\x09\xda\xa8\x78\x3b\xe6\xa2\x3a\xe9\x18\x4b\xfe\x7a\x08\x11\xbb\x8a\x1a\x0b\xcb\x51\xa7\x7b\x37\x69\x01\x8a\x33\xb6\x26\x44\x3f\xc0\xe2\x49\xdb\x2b\xde\x81\xc6\x26\xf1\x93\xd7\xe8\x0d\xb5\xb0\x78\x96\x4e\x92\x98\x1b\x75\xef\xdc\x0f\x76\x48\x11\x78\x66\x48\x3a\x57\x56\xec\x8e\xd2\xbd\xc8\x0e\xa1\x38\xdb\x4e\x52\xa6\x19\xbe\xa3\x0f\xc6\x12\x08\x7e\xcf\xf9\xfa\x8f\xbf\x0d\x0e\x41\x4c\xee\x4b\xb5\x3f\x35\x4d\xc0\x08\x8f\xeb\x49\xf3\x79\xa9\xf6\xf0\x25\x40\x70\x28\x57\xcb\x95\xf8\x9e\xa4\x1f\x47\xab\x71\xba\x9e\x89\x31\x8c\xb2\x1a\x83\x93\x0a\xbd\xa4\x16\x19\xc0\x86\xf3\x2d\x6c\x0e\x87\x6d\x9a\xf0\x5f\x77\x36\x19\x3d\x82\x4d\x99\xc4\x0f\xb8\x85\x72\x29\xb2\xe1\xd6\x49\xff\x69\x99\x73\x38\xd5\x7b\x8f\x14\xf3\x2a\x73\x8a\x34\x86\x21\x9c\x9f\xc5\x59\x97\x5c\xf9\xfb\x0d\x00\x00\xff\xff\x19\xfc\x17\x6a\xc2\x01\x00\x00"); +var _gbdd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9a\xcb\x8a\x66\x39\x76\x85\xe7\xf1\x14\xff\xb0\x3d\x68\xe7\xd1\x5d\x82\x20\xa1\x5d\xdd\x4d\x17\xa6\xdb\xc6\xe5\x1b\x18\x0f\x74\x4d\x12\x9c\x11\x41\x64\xd6\xa0\xde\xde\xec\xf5\x9d\x2e\xdb\x85\xa1\x06\x85\x2a\x56\x1e\x49\x5b\x5b\x6b\x5f\xf5\x7f\xf8\xee\xfb\xdf\x7f\xff\xf2\xf9\xdb\xe3\xc3\x3f\xbe\xbf\xce\x1f\xf6\xb7\xc7\xf9\xfc\xb2\xde\xf7\xd7\xd7\x1f\xdf\xe7\x7e\x8c\xfd\xe9\xf3\xcb\xd3\x93\xf3\x8f\xf5\x79\x7e\xfb\xeb\x9f\x1a\xe6\x97\xfe\xf6\xf4\x64\xf3\x7f\xf8\xe9\xeb\xb7\xfd\xe5\xfb\x97\xf3\xfa\x08\x7c\xb7\x7e\x7c\xbb\xbf\x7d\x3c\x3e\xfc\xd3\xfe\xf4\xf9\xeb\xb7\xf7\x9f\x1e\xbf\xf9\xdd\x7a\x1d\xfb\x6f\x1e\x6b\x1f\xc3\xff\xe1\x7d\xed\xf7\xcf\x2f\x9f\x1e\xbf\xf9\xee\x2f\x3f\xb8\x9f\xe1\x1f\x7e\x7c\x7b\xfb\xaf\xfd\x65\xbf\x7c\x7b\x38\x61\xfb\x65\x69\x7c\xfa\xf0\xdd\x9f\xfb\xdb\x5f\xfa\x97\xfd\xf8\xf0\xa7\xbf\xff\x34\xe7\xd7\xdf\xfe\x5d\xfa\xed\x9f\xf4\x6f\xfa\xa7\x7f\xdd\xef\x5f\x3f\xbf\xbe\x3c\xdc\xdf\x5e\x57\xfe\x1f\xf8\x9f\x7f\x7a\xdb\xf7\x52\x4f\x1f\xfe\xfd\x5f\xbe\xff\xfd\xe3\x3f\xdc\xc3\x5d\x0f\x9f\x42\x6b\xff\x79\xe3\xff\xf6\xe7\xd7\xb5\x1f\x17\x7f\x79\x84\x9f\xaf\x6b\x7f\x7d\xeb\x73\xbf\xf7\x97\x4f\xfb\xe9\xf1\x78\xbe\xae\x8f\x8f\xc7\xe3\xb9\x5e\x1f\xed\xaf\xfa\xbb\x78\x7d\x7c\x3c\xff\xf1\x0f\x7f\xfc\xc3\x47\x93\xf2\x17\xdf\x3f\x39\x96\x79\x79\xfd\xb6\xf6\x01\xd3\x0a\xcf\xee\x7c\x7c\x38\x9b\xf1\xbf\xff\xe9\xc9\x5d\xd7\xbd\xef\xe7\x75\x7f\xed\xed\xeb\xb2\xed\xeb\xe7\xda\xb5\x5b\xed\xfa\xbb\xb8\x7c\x19\xd6\x9d\xb0\x9d\x0c\xf3\x3e\x3c\x3d\xd7\x11\x85\x8d\xe8\x85\x35\x2f\x2c\x81\xf1\x5d\x8b\xc2\x0a\x58\x01\x4b\xc2\x1a\x58\x03\xcb\xc2\x06\xd8\x00\x2b\xc2\x96\xb0\x74\x81\x55\xc3\x52\x04\x8b\x86\x85\x4b\xfb\xa6\x0a\x56\xc1\x24\x5f\xea\x60\x1d\xcc\x64\xd9\x9c\x6d\x47\x9b\x1b\x9d\xce\xb1\x63\x16\x96\x3b\x98\xed\xb1\xf3\x14\x56\x92\xb0\x6c\x32\xef\x52\xc0\x96\xb0\x02\xb6\xc1\xf6\xc7\x87\xaf\xcd\x10\x34\xb5\x3b\x33\xab\x17\xc6\xcc\x59\xc1\xec\x64\x7b\x4a\xba\xbd\x25\x89\xf7\xa6\xf9\xbd\x91\x64\x6f\x61\x51\x92\x1c\x24\x3e\x60\xc9\xe6\x1e\x4e\x71\x74\xda\xe8\x8b\xed\x71\x38\xed\x49\x7c\x27\xed\x9d\xcc\x77\x39\x1b\x86\xa6\x4e\x96\xa6\x8e\x6e\x37\x86\xcb\x64\x3e\xc8\x7c\xa6\x64\x09\x41\xdf\xcd\x0c\xc6\xdc\x5c\x85\x31\x77\x35\x30\xcd\x5d\xba\xb5\x73\x86\x30\x9d\xed\x9c\x05\xa6\x3d\xa2\xbf\x9e\x9e\xdb\x25\x99\xdb\x95\x06\x98\x37\xcc\x84\x7d\x6e\x57\xe6\xbb\xa4\xef\x0a\xdf\x15\xed\x11\x73\x11\xd6\xc1\x74\x43\x57\x02\x1b\x60\xcc\x2d\xc2\x74\x8e\x76\xa1\xfb\x58\x9d\xb0\x22\x6c\x14\xb0\x6c\xd8\x68\xc2\x90\x2f\x19\x5b\x9a\x43\x3e\x97\xa5\x83\x54\x84\x99\xe2\x6c\xd0\x8d\x67\x77\x09\x3b\xc2\xca\x8d\x55\xc3\xd8\x57\x83\x8b\x39\x68\x6e\x0f\xc2\xd8\x23\x87\xf8\xf4\xdc\x3c\x7b\x78\x64\x2e\xde\x64\xf1\xcc\xf5\x1d\xcc\x38\xd4\x7c\xd7\x1e\x7e\x5c\xc6\x2a\x3b\x85\x1f\x7c\x65\x83\xaf\x5a\x6b\x78\x10\x6f\x48\x10\xa2\x1d\x3d\x8c\xaa\x3a\x95\x17\xa3\x9a\x3f\x92\xac\x26\x61\x87\xef\x90\xac\x1a\xb7\x5b\x40\xb2\x90\xa5\xa5\x2a\x6d\x86\x2c\x2d\x05\xa4\x6d\x4e\x18\xd2\x86\xae\xdb\x69\xa1\x09\xd3\x4d\x84\xa9\x3d\x9a\xb1\xb6\x85\xa9\x3d\x02\xb2\xb4\x62\x67\x08\xc8\x12\xb6\xdd\x62\xba\x2e\xed\xbb\xa7\x30\xc9\x92\x2e\x69\x38\x22\x4b\x94\x0f\x49\x97\x6f\xc2\x74\x8b\xb1\xf0\x5d\xb0\xb9\x11\x59\xe2\x3d\xb7\xd9\x1e\x89\xb9\x29\x4e\xc3\x5c\x4d\xc2\xc4\xb2\x94\x9a\x30\xf3\x21\x2d\x25\xc9\x9c\x58\xcf\x6b\xdf\xc4\x7a\x69\x6a\x5f\x1f\xed\x76\xd2\xd4\xbe\x89\x3d\xd0\x73\x66\x8f\xcc\xdc\x20\x1d\x64\xe6\xe6\x15\x0c\x8b\x66\x69\x2d\xaf\x24\x8c\xb9\x51\xba\x2f\xcc\x2d\xcc\x8d\xe6\x0b\x5b\x61\x6e\xe1\xbb\x94\x4c\xbe\xca\x77\xb5\x98\xfe\x52\x4e\xb6\x5e\x95\xff\x61\x70\xa9\x48\x7f\x15\xcb\xd0\x60\x98\xc9\x5c\x61\x9e\x06\xc3\x8a\xb0\x03\x76\xc0\xb4\xc7\xd0\x7d\x68\x30\xac\x09\x6b\x60\xd2\x55\x91\x5e\xea\x58\x60\x1b\xcc\xf4\x5c\xa7\xd8\xa7\xc1\xb0\x20\x2c\x82\x45\xb0\x28\x8c\x3d\x26\x32\x3b\xc9\xbc\x91\x6f\x23\x9f\x78\x55\x37\x67\xdb\xf7\x77\x92\x6f\xb3\xaf\x0d\x86\x49\xbe\x83\x5e\x6c\x70\xa9\xc8\xb3\xd4\x83\x2c\x07\x59\xbc\xe4\x3b\x13\x6c\x82\x99\xfe\x5a\xd4\xbe\x1a\x0c\x0b\xc2\x12\x58\x02\x8b\xc2\x0e\x18\xba\xf2\x26\x73\xcb\xd2\xb3\x06\xc3\xb2\xb0\x0d\x86\x5e\xbc\x9d\xa3\x15\xd6\x2b\xf7\x7a\x55\x58\x05\xab\x60\x76\x8e\xd6\x25\xb3\x06\x97\x4a\xb8\x84\xb1\x5e\x67\xbd\x60\xe7\x68\xdc\x51\xbb\xef\x28\xe8\x1c\x03\x59\x06\xb2\x84\xa0\x9c\xe0\xaf\xb1\xfc\xff\x0b\xef\xad\x6d\xb6\xdb\xf7\x76\x3a\xe6\xd1\x75\x69\x30\xcc\x8e\xd9\xa3\x96\xd6\x60\x58\x16\x36\xc1\x50\x65\xb0\x63\xf6\x24\x9a\x74\x4c\xaa\x04\x3b\x66\xcf\xa2\xb1\x06\xc3\x9a\xb0\x0a\xc6\xd1\xa3\x1d\xb3\x17\x5d\x83\x06\xc3\x9c\xb0\x0d\xc6\xd1\xa3\x1d\xb3\xe3\xe0\x34\x18\x16\x84\x15\x30\x68\x12\xa3\x30\x64\xb9\x29\x1b\x75\x8e\x31\xc0\x06\x98\xce\x81\x29\xf7\x9b\x8a\x51\xe7\x58\xa2\x93\x06\xc3\x74\x8e\xc5\xbe\xeb\xde\x57\xe7\x58\xec\xb1\x58\x4f\x81\xaa\xa3\xd3\x7e\xeb\x54\xe6\xdd\x77\x04\x43\xa7\x49\xf2\x6d\x74\xb0\xd1\x41\x92\x7c\x50\xb6\xdf\x94\x4d\x92\xef\x64\x30\xae\x5a\x41\xae\x1f\xce\x71\xee\x7d\x4d\xbe\xa1\x74\x85\xc1\xb0\x26\xac\x83\x71\x6f\x96\xb2\xb5\xc1\xbd\x8d\xfb\xde\xb2\xe9\x99\xd4\x89\xc1\x30\x2f\xac\x82\x21\x5f\x0e\xc2\x58\x2f\xdd\xeb\x45\x61\xac\x97\xee\xf5\x92\xb0\x0d\x86\xa9\x64\x3b\xc7\x20\x80\x8f\xfb\x7e\xb3\x64\x2e\xc8\x7c\x9b\x40\xd1\xbe\x04\xf0\x51\x58\xaf\x68\x3d\x78\x30\x6e\x1e\x28\x0c\x0d\xdc\xa3\x06\xc3\xb4\x1e\x2e\x6e\x74\xce\x51\xa4\x03\x02\xfd\xe8\xc8\xac\xb0\x39\x3a\x32\x77\xf6\x50\x38\x18\xb8\xc2\x71\xbb\x42\x25\x04\x03\xae\x8d\x9b\x43\x55\xfb\x0e\x64\xb9\xdd\x9e\x5c\xf5\x98\x9c\x6d\xa2\xfb\xa6\xb9\x13\x5d\x4d\xed\x4b\xd8\x1d\x93\x7d\xe7\x04\x93\xfe\xe0\xda\x58\x0e\x4c\xeb\x2d\xce\x41\xd8\xa8\x72\xd5\x83\xb0\xa1\xc1\x30\x9d\x77\x71\x47\xeb\xde\x43\xe7\x5d\x0b\x4c\xee\xb1\x3a\xe9\x74\x21\xb3\x0d\xc5\x55\xa6\x72\xdc\x75\xf8\x4c\xe2\x6d\x54\xba\x11\x45\x9e\x7a\xe0\x95\x07\x5e\xb9\xca\x53\x0f\xbc\xf2\xc0\x2b\x57\xa7\xe3\xee\x06\xc6\xd1\xe4\xbd\xc7\x66\xdb\xcd\x1e\xf2\xc0\x83\x2c\x43\x83\x61\xda\x17\x8a\x0f\x28\x5e\xe5\x6d\xc7\xe1\x68\xa7\x81\x69\x5f\x68\x3f\xf0\xde\x55\x9e\x75\x12\x11\xa7\xaa\x8d\x54\xe5\x45\x67\x8c\x60\xac\x27\xef\x38\x63\x05\xab\x60\x49\x58\x07\x43\x7d\x72\x6b\x53\x95\x45\x9b\x09\xf9\xe4\xd6\x66\x4a\x60\xa8\x5e\xee\x65\xa6\x02\x36\xc0\xb4\x5e\xba\xe7\xa2\x7a\xb9\x83\x99\x91\x2f\x5f\x60\x4e\x98\x07\x43\x66\x45\xf1\x99\x91\x39\x23\xb3\xdc\xc6\xc4\x4d\x4e\xdc\x64\x95\x3b\x98\x44\x9c\x49\xc4\xa9\x72\x07\x33\x0f\x30\x93\x25\x44\x45\xc9\x99\x91\x25\xdf\xb2\x80\xe9\xce\x67\xb9\xf7\x95\xae\x88\x4c\x93\xec\xa1\xca\xcc\x67\x69\x60\xe8\x5e\xe6\x3b\x31\xcb\x89\x59\x56\xe5\xdf\x13\xb3\x9c\x98\x65\xcd\x5a\x0f\xb3\x9c\x44\xb0\x5a\xa4\x83\xce\x1e\x1d\xfd\xc9\xcc\x67\xe7\x6c\x9d\x3d\x94\x57\x4f\x32\x46\x0d\x86\x49\xa7\x9d\x73\x10\xfd\x6a\x91\x2c\x64\xbd\x93\x48\x57\x65\xfa\x73\xc8\xb4\x26\x99\x47\x15\xc7\x27\x59\xc6\x9c\xe8\x40\xa6\x3a\x27\x3a\xc0\xb4\x9a\xcc\x72\x62\x46\x13\x33\x6a\x32\xad\xb9\x58\x4f\x95\x6d\x6a\xca\x6e\x26\xbc\x9f\x5b\x32\x37\x0f\x86\xcc\xf0\xbe\x89\xbb\x13\xde\xcf\x73\x7f\x27\x99\x0f\xe7\x38\x92\xa5\x29\x34\x2e\x5c\xf6\x82\xa7\x64\xcd\x4b\x15\x70\x5b\x70\xb2\x29\x34\x2e\x5c\xf6\x8a\xcc\x55\x18\x5c\x64\x23\x8b\x6c\xa4\xc5\xf8\xeb\xd1\x7e\x25\xa9\x4d\x83\x4d\x49\xc2\x12\x18\xc7\x54\x44\x5c\x50\x5b\x43\xcb\x99\xcf\x3a\xd0\x2d\x95\xdd\xfe\x82\xc5\x0b\x16\x93\xdf\x2f\x58\xac\xc1\x30\x9d\x08\x36\x2d\xd8\xd4\x64\x15\x0b\xe6\x2c\x98\xd3\x64\x15\x0b\x96\xac\x5e\xc1\x74\xca\xce\xbe\x38\xef\x26\x0b\x58\x38\xef\xd5\xef\xb9\x92\x65\xc8\xca\x34\xb8\xd4\x14\xe8\x16\x75\x8f\x06\xc3\xb4\xc7\x60\x8f\xc1\x71\x15\xe8\x16\xc9\xc3\x22\x79\x68\xb2\x80\x05\x9b\xd6\x40\xe3\x0a\x74\x6b\xa0\xf1\x79\xef\x21\x59\xa8\x67\x16\xb9\x6d\x53\x50\x5b\x24\x14\x6b\x72\x0e\x59\xc0\x22\x18\x2c\x82\x41\x93\x05\xac\x29\x46\x2c\x1c\x7f\x93\x05\x2c\x1c\xff\xc2\xc9\x37\x31\x7b\x2d\xe6\x12\xec\x9b\x02\xd8\x82\x4d\x4b\xb5\x41\xbe\xe4\x95\xe9\x61\xb4\xad\xfb\xc8\x97\x3c\xf0\xe6\x3e\x76\x4e\xc2\xa4\xd3\x8d\x57\xd1\x60\x58\x14\xd6\xc1\x3a\x98\xd6\x2b\xa2\x8b\x06\xc3\xb2\xb0\x00\x16\xc0\xb4\x07\xf5\xc7\x2e\xf7\x7a\x55\x18\xeb\x15\xd6\xd3\x7d\xec\x32\xc1\x26\x98\x13\xb6\xc1\x38\x87\xee\x83\x4e\x49\xdb\x9d\x73\xe8\x3e\x76\xe7\x1c\x3d\x83\x49\xbe\xde\xc0\xee\x3d\xb4\x2f\xdc\xd8\xe6\x34\x5c\xbe\xa4\xfb\x4d\x60\xdf\x83\x73\x48\xf7\x7b\xb0\x9e\x0d\x86\x69\x3d\x72\xea\x2d\x1e\xe4\x4b\x9e\x66\x93\x44\x6a\x30\x4c\x7b\xc0\x0d\x0d\x86\x35\x61\xec\x21\x6e\xe4\xab\x6a\x5f\xea\x9e\x3d\xd1\x7d\xd5\xbe\x70\x43\x4d\x1e\xc3\xa4\x7b\x92\x82\x3d\x91\x59\x9e\x6b\x93\x14\xec\x85\xcc\x4d\xeb\xc1\x0d\x0d\x86\x69\xbd\x85\xcc\x0b\x99\x9b\x74\x05\x5f\xf6\xb9\xe7\xea\x6c\x44\xdd\x7d\x24\x8b\x53\xcd\xb4\x0f\x67\x3b\x92\xc5\xa9\x16\xda\xd4\x47\x74\x95\xb2\x93\x37\xa3\xab\xd4\x8e\x22\x6c\x76\x8a\xba\x87\x08\x7b\xd4\xbb\xcb\x4e\x75\xca\xc1\x73\x9d\xc8\x7a\x81\xb9\xe2\xe9\xc9\xf7\x77\xa6\xd3\x43\xff\xe0\x58\x30\x72\xd9\xe9\x7e\x0f\x5c\xa3\xfb\x94\x9d\xee\x8d\xee\x53\x3b\xdc\x91\x93\xae\x0e\x77\x74\xe4\xf9\xb3\xbf\xc0\x26\xd8\x06\xb3\xb3\x1d\x12\xb2\xc3\x7d\x78\x25\x41\x87\xda\xf4\x28\x93\xc9\x5e\x19\xcf\xd9\xf2\x07\xe7\x88\xbb\x5e\x7e\xed\x9c\x0e\xc6\x7a\x16\xe9\xfa\xa5\x9e\x66\xbf\xe4\xa9\xb3\x3a\x6b\xfd\x52\x46\xd1\x2f\x25\xcd\xd9\x1b\x37\xfa\x95\xb2\xb0\x2c\x6e\xf8\xe6\x0c\x53\x3d\xd8\xe9\x52\xe5\x60\x59\x55\xbf\x64\x0b\x9d\x2e\x55\x0e\x5e\x7b\x74\xf6\x50\x42\x9b\x83\xe9\xb4\x5f\x4a\x68\xfb\x05\xef\x43\xd0\x7a\x9d\x7d\xe5\x73\x72\xb0\x4c\xa6\x5f\x93\x7d\xa7\x74\x1a\xb2\xf6\x58\xac\xa7\x42\x24\x87\x22\x4c\x85\x48\xbf\x36\xeb\x19\x87\x3a\x1d\xae\xee\x2c\xd1\x6f\xcd\x00\x55\x71\xdd\x29\xa3\x0f\xaa\xb0\xba\x53\x6a\xd3\x9d\x04\xb6\xf2\xb5\xd3\xdc\xea\x0e\x4a\x69\x21\xa5\x71\x0c\x6a\x52\x76\x77\x0a\x48\x31\xa4\x08\xa9\x20\xdb\x10\xdb\x8d\xe6\x57\x57\xf3\xcb\x9b\x93\xe9\xb4\xbe\xba\x1a\x51\xc1\xa8\xda\x69\x43\x75\xb5\x9c\xa2\x5d\x5c\xa7\xe1\xd4\x83\x55\x72\xd1\x4c\xb5\x07\xb5\x23\x7a\x30\x4b\x54\xeb\xae\xd3\x30\xea\x6a\x0e\x25\x33\x83\x4e\x6b\xa8\xab\x35\x94\xcd\x51\x75\x1a\x43\x5d\x0d\x9f\x62\xee\xb1\xd3\xee\xe9\x6a\xed\x28\xdd\xed\x34\x76\xba\x1a\x3b\xcd\xe8\xd5\x69\xeb\x74\xb5\x70\xe4\xcc\x3b\x0d\x9c\x4e\x03\xe7\xb2\xd8\xd0\xe9\xdf\x74\xfa\x37\xce\x12\xd3\x4e\xfb\xa6\x57\xb4\x68\xb9\x6f\xaf\x7c\x55\x0f\x8a\xcd\xbf\x1a\xc6\x7b\x63\x91\xa6\x45\x82\xb9\x9a\xde\x58\xa4\xdd\x8d\x55\x5b\x97\x6e\x7d\xbf\x4b\x67\x4b\x63\x3b\xcd\xfa\xde\xef\xa0\x61\x13\x07\x5f\x51\x58\xe5\x66\x14\xa1\xae\xea\x43\x5f\xa9\xdc\xec\xe4\xd8\x9d\x3c\x4f\x29\x6c\x27\xcd\xeb\xa4\x33\x4d\x9c\x9e\x67\x03\xe9\x6a\x45\xd5\xc5\x44\x85\x79\x7f\x59\x19\xd3\x17\x13\x15\xb9\xbc\x1c\x74\x27\x70\x75\x9a\xe5\x4e\xdc\x25\x06\x74\xf9\x21\xef\x65\x1e\xb8\xa1\x2e\x17\xe1\x83\xe5\x5e\x1d\x0f\xd1\x8f\xb1\xde\x07\x73\x10\xfd\x2c\xbe\xba\x85\xf0\x4f\xcf\x83\x0e\xf3\x90\xad\xf9\x68\xee\x7a\x60\x6a\x43\x8d\x5e\x9f\x2c\x9f\x1a\x58\xc1\x10\xc1\x7d\x36\x47\x35\x60\xf8\x80\xab\xd9\x4c\x63\x40\xd6\x01\x59\x8b\xb9\xdb\x01\x5b\x87\xd8\xea\x95\xa3\x0f\xe8\x3a\x44\x57\xaf\x84\x67\xc0\xd7\xa1\x86\x66\xb8\x8c\xc2\x03\x7a\x0e\xd1\x33\x38\x53\xce\x80\x9f\x23\xc2\x7c\x53\xce\x80\xa0\x43\x04\x0d\xde\x94\x33\x60\xe8\x10\x43\x83\x7c\xc7\x80\xa2\x43\x14\x0d\xd1\x94\x33\xe0\xe8\x10\x47\x43\x34\xe5\x0c\x48\x3a\x44\xd2\x90\xcc\x61\x0d\x48\x3a\x44\xd2\x90\xa3\x4d\x84\xa4\x43\x24\x0d\xea\xff\x0c\x48\x3a\x44\xd2\x50\x9a\x4d\x84\x85\x43\x2c\x0c\xd5\x1c\xc9\x80\x85\x43\x2c\x0c\xcd\x72\x88\x01\x0b\x87\x58\x18\x2f\xb3\xf7\x01\x0b\x87\x58\x18\x9d\x79\xe6\x01\x0b\x87\x58\x18\xfd\x65\x2a\x84\x85\x63\x58\xbc\x8c\xde\x2a\x8b\x31\xf4\xca\x30\x44\x4c\x1e\x28\x06\xc4\x1c\x22\x66\x94\xd7\x1b\x10\x73\x88\x85\x31\x4a\x39\xb0\x70\x88\x85\x31\x49\x39\xb0\x70\x88\x85\x31\x49\x39\xb0\x70\x6c\xcb\x8e\x63\x96\x72\x76\xf2\x40\x5e\x3b\x02\x05\x41\x5a\x2b\x5b\xa1\x3f\xe0\xea\x10\x57\xa3\x7a\x59\x03\xae\x0e\x71\x35\x56\x8b\x84\x03\xae\x0e\x11\x33\xd6\x56\x9e\x9e\x27\xc4\x9c\x22\x66\x6c\x16\x2b\x26\xc4\x9c\x22\x66\x52\x6a\x36\x21\xe6\x14\x31\x93\x33\xb7\x3a\x21\xe6\x74\x96\xf9\x24\x6f\xa5\xc9\x74\x2a\x9d\xa6\xb8\x9a\xbc\xc5\xf2\x09\x57\xa7\xb8\x9a\x82\x69\x75\xc2\xd5\xe9\x2d\xfd\x48\x7a\xa7\x99\x7e\x0e\xa0\xa1\x89\x4e\xd0\x14\xa4\xb5\xa2\x96\x87\xd1\x33\x58\x15\x9b\xa2\x79\xfb\x19\xd4\xd7\x9b\x22\x79\x8a\xa6\x89\x09\xc9\x67\x18\xf5\xe3\x23\x25\x2f\x48\x09\x14\x43\x4a\x49\x6b\xa9\x4f\xc9\x90\x92\x59\xc7\x94\x1b\x7f\x9e\xb2\x8e\x94\xcc\x0d\x4f\xac\x63\x46\x2b\x4c\x52\xf6\xf6\x55\x54\x70\x65\xa0\x47\x3e\xa3\x4a\x95\x89\x8b\xcf\x51\x13\x11\x42\x36\x94\xb2\x65\x5d\x13\x1b\x9a\xb2\xa1\x54\x2c\x5a\x4c\x6c\x68\xca\x86\x52\xb5\xca\x6b\x62\x43\x33\x13\x2e\x42\x78\x7a\x9e\x90\x7c\x36\xcb\x6c\x52\xd3\x19\x9b\x7a\x06\x0c\xd9\x02\xe1\x6c\x7a\x9f\x9c\xcd\xaa\xef\x7c\x49\xcf\x4d\xcf\x84\x53\xc6\x91\x2f\xa3\xc4\xc4\x38\x66\xb3\x28\x95\x2f\x2b\xbd\x67\x53\x27\x89\x21\x5f\x01\xe8\x08\xb2\x6a\x92\x54\x70\x36\xb5\xbb\xa7\xac\x2a\x3b\x33\xc7\x89\x55\x4d\x59\x55\x76\xc9\x24\xc5\xaa\xa6\xba\x84\xd9\x3b\x13\xa2\x2b\xf8\x32\x90\x8e\xcd\xae\xe8\x3b\x65\x7b\x59\xef\x7e\x13\xdb\x9b\xb2\xbd\x2c\xab\x9a\xd8\xde\x1c\x7c\x65\xe1\x6d\x62\x68\x53\x86\x96\xa3\x85\xb7\x89\xa1\xcd\x49\x2c\xb5\xf0\x36\x31\xb4\x29\x43\xcb\xd9\xc2\xdb\xc4\xd0\xa6\x0c\x2d\xe7\x6a\x13\x31\xb4\x29\x13\xca\xc5\xe2\xd7\xc4\x84\xa6\x4c\x28\x57\x8b\x5f\x13\x13\x9a\x32\xa1\xdc\x2c\x7e\x4d\x4c\x68\xca\x84\xca\x65\xf1\x6b\x61\x42\x4b\x26\x54\x2e\x8b\x5f\x0b\x13\x5a\x32\xa1\xe2\x2c\x7e\x2d\x4c\x68\xc9\x84\x8a\x37\x12\x2e\x4c\x68\xc9\x5e\x8a\x72\xb2\x85\xbd\x2c\xd9\x4b\x89\x57\xfd\xd5\x48\xbc\x30\xa7\x25\x43\x29\xb1\xd8\xba\x18\xca\x0a\xe4\x13\x56\xa7\x2c\xac\x62\x89\xdc\x45\x94\x59\x90\x7b\x89\xb6\x45\xaf\x10\x0b\xda\x2e\xd1\xb6\xa8\x23\xb9\xa0\xed\x22\x37\xa9\x16\xb8\x16\xb4\x5d\xa2\x6d\x51\x23\x60\x41\xdb\x25\xda\xd6\xcb\x02\xd7\xc2\xf5\xaf\x6c\x36\x5d\x2f\x0b\x5c\x2b\xcb\xa6\x19\x6a\x31\x62\xad\xac\xfa\x73\x65\x12\x1d\x53\xfa\x22\x40\xac\x62\xa5\x7a\x75\x4d\x90\x2a\x39\x86\x5a\x6b\x13\x34\x80\x6c\x22\xea\x24\x8c\x2c\x85\x91\xea\xcd\xf5\x2f\xc2\xc8\x52\x18\xa9\xc1\x5c\xff\x22\x8c\x2c\x85\x91\x1a\xcd\xf5\x2f\x2c\x6c\xc9\x52\x6a\x32\xe3\x59\x58\xca\x12\xe1\x6b\x32\x27\xb5\x20\xfc\x12\xe1\x6b\xb6\x8a\x61\x41\xf8\xd5\x97\x41\x7a\x78\x59\x5d\x2d\x4d\x86\xea\xa4\x9c\xbe\x99\xa8\xb5\xf4\x88\xba\x20\xfc\x12\xe1\x6b\x35\xc7\xb2\x20\xfc\x1a\x96\x65\xd7\x5a\x83\xa0\x22\x48\x13\xab\xd5\x5f\x0b\x1b\x58\xb2\x81\xaa\xd2\x7c\x61\x03\x4b\x36\xd0\x2e\x8b\x9e\x0b\x1b\x58\xb2\x81\x26\x73\x5d\xd8\xc0\x52\x01\xdf\xf4\xce\xb8\x96\xea\x2c\x86\x76\x49\x2e\x4a\xfa\x25\x4b\x69\xfa\xcd\xc0\xc2\x52\x96\x2c\xa5\xa9\x98\x58\x58\xca\x92\xa5\xb4\x60\x01\x62\x61\x29\x4b\x96\xd2\xa2\x05\x88\x85\xa5\x2c\x59\x4a\x4b\xe6\xc1\x37\x96\xb2\x65\x29\x2d\x5f\xc9\x20\x7d\xb5\x65\x29\x2d\x5b\xfd\xbc\xb1\x94\x2d\x4b\x69\x7a\x07\xd8\x58\xca\x96\xa5\x34\xf5\x61\x37\x96\xb2\x65\x29\xad\x59\x86\xbe\x31\x85\x2d\x53\x68\xcd\xbc\xee\xc6\x14\x36\xef\xc4\x97\xea\xe9\x8d\x2d\x6c\xde\x75\x2f\x67\x3e\x6f\x63\x0c\x9b\x37\xdc\xcb\x9b\xe3\xdd\x58\xc3\xe6\x0d\xf7\xd2\xef\x40\x36\xe6\xb0\x79\x9b\xbd\x82\xdd\xc9\xc6\x1e\x36\xef\xb0\x97\xde\x52\x37\x06\xb1\x79\x87\xbd\x92\x95\x1d\x1b\x8b\xd8\xbc\xb9\x5e\x7a\xb1\xdf\x90\x7d\xdf\x29\x7b\xb1\x5a\x72\xc3\xe3\x4d\xce\x7e\x15\xab\xfd\x36\x44\xde\x24\xed\x57\xcd\xa6\x4d\x98\xbc\xab\x7a\x14\x97\xba\x7e\x9b\xf7\xd5\x4d\x26\x7f\x35\x4b\x3d\x36\xf4\xde\xbc\xfb\xb9\x4b\xaa\x6a\x7a\xf4\xd8\xe4\xef\xee\xb2\xba\x6c\xc3\xf9\x4d\x02\xef\x2e\xa3\xe0\x86\xf4\x9b\x0c\xde\xb9\x62\xeb\xc1\xfa\xdd\xef\x9a\xc2\x22\xcb\x86\xd0\x9b\x47\x19\x17\xcc\xd1\xef\xa1\x77\xec\x4d\x5e\xef\x82\x2e\x12\x96\xef\xa1\x37\x52\x17\x8c\x87\x7b\x9c\x1b\x73\xc8\x9c\x85\x79\x30\xcd\x8d\x46\xf4\x0d\xf7\x37\x15\x80\x8b\x46\xc5\x0d\xf9\xf7\xd4\x43\x83\x4b\xc6\xc5\x3d\xf5\xd0\xc0\x60\x67\x0b\xc2\x8e\x30\xd6\xcb\x56\x52\x6d\xac\x64\xd3\xff\x73\x59\x77\x84\x99\xec\xa5\x8e\xb0\xd3\x1b\xf3\xa6\xff\xb7\xe9\x73\x39\xbd\xeb\x6e\xac\x62\xd3\x33\x72\x7a\x30\xd9\x98\xc5\xde\xfa\x0d\x81\xab\xe2\xf2\x56\x67\x96\xc1\x79\xa5\x6f\x7b\xeb\x77\x05\x9b\xfe\x86\x93\x03\xdd\xd8\xcf\xa6\xf7\xe0\xd4\x27\xdc\x18\xd0\xa6\x07\xe0\x2f\xbb\xdf\x83\x05\x9d\x4b\xad\x52\xef\x5c\x35\x4c\x29\x09\x83\xc9\xdc\x84\x15\x61\x14\x79\xce\xee\xe8\x60\x6a\xe7\x52\xdf\xc7\xbb\x2a\x4c\x99\x17\x83\xdd\x91\x13\x36\x85\xb1\xaf\xf2\xb8\x83\x4d\x1e\xa7\xbe\x9e\xf7\xa6\xd3\xe3\x72\x00\xeb\x9c\xad\x09\x1b\x60\x3a\x6f\xd6\xbe\x4e\x89\xc8\xb9\xcb\xf6\xe0\x8a\x61\xc8\xc2\x2f\x50\x7c\xb0\x88\x71\xb0\xe8\xe3\xd5\xa7\xf1\x31\xd8\x5c\xaf\x3e\x21\x83\xf3\xc5\x38\x79\xbc\x7a\x37\x87\x5f\xaa\xf8\x58\xf4\x1d\xeb\x79\x75\xde\x7d\xb4\x52\xe0\x78\xf5\x45\x0f\xbf\x25\xf1\xc9\x6c\xe1\xe0\x0f\x4e\xd0\x6f\x17\x7c\xaa\xc2\xf4\xfa\x70\xf0\x11\x5e\xf5\xc7\xc1\x47\x1c\x7c\x84\xcf\x16\x5f\x0e\x3e\xe2\x44\xf5\x31\xbd\x1e\x73\x4f\xd4\xaf\x70\x0e\x7e\xc3\x17\x4b\xe2\x0f\x7e\xe3\x44\xf5\x8c\x7c\xbd\xda\xff\x0d\xe2\xc9\xff\x32\x86\x9f\xa8\x8e\x30\x83\x49\x9a\x85\xb1\xb2\xde\x99\xbc\xde\x94\x4e\x94\x7b\x3e\x78\x24\xdf\x2e\x93\x0a\x8f\x74\xf0\x48\x5e\x6f\x09\x07\x8f\x74\xd2\xfd\x9d\xa5\x4a\x07\x8f\x74\xb2\x6e\x30\xa8\x1b\x7a\x32\x37\xa8\xc1\xe6\x82\x45\x61\x54\xf6\xea\xdc\x1d\x3c\xd7\xc1\x73\x05\x75\xe9\x0e\x9e\xeb\xe0\xb9\x82\xb2\xbd\x83\xe7\x3a\x78\xae\xe0\x2d\x5b\x38\x78\xae\x83\xe7\x0a\x41\xcc\xc1\x73\x1d\xbc\x54\x88\xba\x7d\xbc\xd4\x91\x63\x72\x21\xe9\xf6\x9b\xba\xba\xe7\xee\x32\xa4\xaa\xef\x98\xdb\xec\x72\x5d\x48\x96\x6e\x9d\xa6\x2e\x27\x83\x7d\x97\x84\x25\x30\xd3\x69\xc8\xd2\x5f\x53\x87\x8a\xc1\x51\x69\x9e\x36\xd9\x43\x5d\xce\x90\xd9\x57\xcf\xec\xa7\x2d\xe6\x9a\x85\x1e\x3c\xe1\xe9\x77\xb7\x4c\x7a\xc1\x13\x9e\xbb\x99\x11\x93\x59\x23\x9e\xf0\xdc\xdd\x0c\xd5\x11\x07\xaf\x77\x78\xae\xcd\xf2\x3e\x87\xe7\xda\xc3\x33\x6c\xce\x11\x6c\x0b\x63\x3d\x35\x87\x0e\x5e\xef\x4c\xfd\x1a\x31\xeb\x17\x33\x67\x2a\xdb\x3f\x33\xea\x3b\xfd\x4a\xe5\x4c\xbd\xc5\x30\x54\x15\x26\x67\x26\xa6\xea\xad\x25\xeb\xc7\x27\x47\x6f\x8a\xcf\x87\x67\xbf\xac\x1f\x9a\x1c\x9e\xfd\xce\x94\x51\x64\xfd\x3a\xe2\x4c\x05\x88\x83\xb3\xcd\xfa\x15\xc0\xc1\xd9\x9e\x39\xd4\xa8\xd4\x2b\xfb\x99\xaa\xad\x18\x62\x8c\x92\x44\xb5\xd5\x99\xfa\x81\x43\x56\xc2\x73\xa6\x1a\x63\x67\xd2\x07\x2c\x4d\xa2\x6c\xb6\xd5\x6f\x68\x32\x0c\x9f\x9b\x53\xa0\x01\xd5\x44\x07\x3f\x7d\x96\x5e\x4d\x73\xb5\xc4\xee\xe8\x69\xea\xf9\xe0\xbb\x73\xb5\xaa\xfb\xe0\xbb\xcf\xa2\xe7\xac\xdf\x84\x9d\xa5\x9e\xf3\xb9\xdf\x28\x9a\xc5\x9b\x83\xef\x3e\xfa\x19\xa5\x2b\xfa\x5d\xd7\xd9\xea\x8f\x1e\x3d\x23\xb8\xa2\xb7\x87\xb3\xf5\x66\x74\xf0\xf1\x45\xfd\xfe\x83\x8f\x3f\x6a\xfb\xbb\x72\x59\xba\x7d\xd4\xfc\xbf\x07\x5f\xb5\x83\x0a\xe1\xb3\x15\x95\x8a\x3a\xf1\x67\x6f\x76\xd5\x1b\x5d\x71\x41\x33\x39\x2d\x91\xa0\xb8\x5f\xbc\x9f\xd9\xff\x7f\xe9\x6f\x4f\x3f\xff\xe2\x77\xfe\xf8\xfe\xbe\x5f\xbe\xe9\xd7\xc5\xfa\x55\xef\x63\xed\xf3\xf9\x65\xff\xfc\x4b\xe5\xb7\xd7\x37\x9b\xa5\xff\xfe\x3b\x00\x00\xff\xff\xa0\x76\xd7\x85\xd5\x2c\x00\x00"); +var _fcga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x96\x4d\x6f\x1c\x37\x13\x84\xef\xf3\x2b\x78\xf4\x7b\x78\x23\x7e\x93\x0d\x2c\x16\x30\xa4\x08\x91\x03\xc7\x81\x15\x27\x01\x82\x1c\xe6\xa3\x47\x58\x20\x9a\x5d\xac\x56\x07\xff\xfb\xa0\xab\xd6\x4e\xe2\x83\x40\x6d\x4d\x75\x4f\xb3\xf9\x90\x9c\x9b\xdb\x87\xbb\x87\xed\x70\x71\x37\x3f\x9f\x8f\xf3\xa3\x5e\xdc\x7a\xd8\x96\xb3\xbe\x1c\x5f\xcf\xb3\xba\x49\x9f\x0e\xdb\x30\x84\xe8\x96\xc3\x7c\xf9\xf2\x13\xc3\xfc\x3c\x9e\x86\xc1\xe2\x1f\x3f\xbf\x5c\xf4\xf9\x61\x5b\x8f\x2e\xd1\xb7\xbc\x9e\xae\x5e\xe7\x6e\x3e\xea\xd3\xe1\xe5\x72\xfe\xec\xde\xbc\x5d\x8e\x93\xfe\xcf\x2d\xba\x9a\xfe\xe1\xbc\xe8\xf9\xb0\x3d\xb9\x37\xef\xc6\xd3\xb8\x85\xaf\x0f\x1e\x5f\x4f\xa7\xbf\xf4\x59\xb7\x8b\x0b\xd0\x74\x5b\x30\x0e\x37\xb7\xef\xc7\xd3\x4f\xe3\xb3\xba\x9b\x8f\x3f\x3e\xbe\xfb\xff\x0f\x90\xa1\xfe\xaa\xe7\x97\xc3\x71\x73\xc1\x7f\xe7\x7d\xfd\x47\xff\xe5\xf3\x49\xaf\x69\x86\x9b\x4f\x0f\x77\x1f\xd6\xf5\x45\x2f\x2e\x06\x4f\xcf\xef\x9f\x1e\xee\xdc\x1f\xc1\x05\xef\x62\x49\xa9\xff\x79\xb5\xfe\xf6\xfe\xb8\xa8\xa3\x69\xc8\x9c\xcd\x7c\x5c\xf4\xe5\x34\xce\x7a\x1e\xb7\x27\x1d\x9c\xdb\x79\xbf\x77\xce\xed\xba\xdf\xdb\xaf\x1e\xb2\xdf\xbb\x9d\xdc\xdf\xdf\xe2\xf7\x5b\x3e\xbd\xbb\xc7\xaf\xef\x3d\x9e\xde\xdf\xda\x53\xdd\x96\x6f\xb2\x0d\x81\x2f\xd9\x8e\x97\x45\x57\x6a\xc8\xbf\x0b\xeb\xde\xc5\x14\x2c\xe6\xdf\x0f\x87\xe0\xfd\xb5\xae\xc3\x72\xf5\x47\xf3\x37\xb5\xd7\x3a\x87\xa0\x2f\x45\xf5\x00\xb9\xa6\x64\x52\xa7\x34\xce\x26\x49\x35\x69\xea\x90\xa6\x75\xef\x5c\xcb\x08\x9c\x29\xcd\x0a\x49\x4c\x5a\x46\x48\xda\x4d\x2a\x08\x5c\x99\x6b\x6d\x26\x35\x04\xae\x33\xa5\x19\x92\x05\xc6\xbc\x9a\x14\x0b\x02\xbb\x37\xa9\x22\x30\x36\x31\x49\x20\xf5\x00\x49\xc6\xbd\x73\x3d\x58\xfa\x28\x0c\x5c\x83\x49\x39\x0e\xbb\x9e\x38\xa1\x84\x09\x49\x2c\x26\x71\x42\x49\xaa\x49\xbd\x9b\xc4\xc0\x34\xd5\xbd\x0b\x3e\x58\x5d\x69\xa2\xb4\x40\x4a\x16\x98\x99\x2b\x5b\x2d\xc1\x17\x2b\x35\x37\x4a\x96\x3e\x78\xb1\x37\x66\xa6\xcf\x12\xf6\x2e\x04\xdf\x4c\x62\x7a\x0c\x2d\x63\x8e\x79\xa4\xcb\x86\x96\x7b\x80\x14\x28\x05\x93\x84\x52\xa4\x14\x21\xa1\x88\x31\x51\x4a\x7b\xd7\x8a\x4f\x90\x32\xa5\x0c\x17\xd3\x17\x4a\x05\x2e\x14\x31\x56\x4a\xd5\xa4\xc8\xc0\x46\xa9\x99\x14\x98\xbe\x53\xea\x26\x25\x16\x21\x94\x04\x12\xd3\x8f\x94\x46\x54\xef\x21\x4d\x94\x26\x48\xe8\xc4\x38\x53\x9a\x51\x57\x86\xb4\x50\x5a\x20\x75\x48\x4a\x49\x51\x6a\x85\xc4\x7e\xd9\xd0\x8a\x47\xae\x89\xfd\xb2\xa1\x95\x80\x5c\x13\xfb\x65\x43\x2b\x09\x45\x4c\xec\x97\x0d\xad\x44\x06\xb2\x5f\x13\xfa\x95\xf0\xc6\x89\xfd\xb2\xa1\x95\xc2\x5c\xec\xd7\x84\x7e\x01\x80\x3c\xb1\x5f\x13\xfb\x85\xba\x26\xf6\x6b\x62\xbf\xd0\x09\x6e\x05\x0c\xad\x24\xe6\x62\xbf\x26\xf4\x2b\xb3\x08\xf6\xcb\x86\x56\x3c\x8b\x60\xbf\x6c\x68\x25\x62\x85\x26\xf6\xcb\x86\x56\x02\xdf\xc8\x7e\xd9\xd0\x0a\x29\x9c\xd8\xaf\x09\xfd\xca\x26\x75\xf2\xd5\x6d\x0f\x85\x00\xc8\x85\xac\x0a\xc0\x8c\x28\x55\x08\xa6\xc0\x15\xb1\x42\x23\x5d\x23\x5c\x19\x98\x8c\x74\x8d\x70\xe5\x66\x5d\x9d\xe8\x9a\xe0\x2a\xa0\x70\xa2\x6b\x82\xab\x16\x9b\xd0\x4c\xd7\x0c\x57\xeb\xc6\xd7\x4c\xd7\x0c\x57\xcf\x36\xa1\x85\xae\x05\x2e\xc1\x09\xb0\xd0\xb5\x98\x2b\x7a\xb4\x50\xe9\x52\x73\xc5\x80\x9d\xa6\x74\x29\x5c\x11\x4b\xbb\xd2\xb5\xc2\x95\xb2\x55\xbf\xd2\xb5\xc2\x95\x83\x1f\x76\xc2\x93\x54\x3c\x5c\x68\xa1\xf8\x4e\x09\xae\x62\x14\xca\xf5\x34\xc6\xc1\x17\x9b\xed\x0e\xe1\xc1\x27\x38\x99\x62\xeb\x75\xd8\x49\xa4\x2b\xc2\x25\x86\x89\x44\xba\x22\x5c\xd2\xf2\xb0\x13\x9e\x39\x82\x33\x27\x79\xdb\x8f\xc2\x33\x47\x92\xb9\x52\xa8\x71\xd8\x09\x4f\x13\xc1\xd1\x91\x62\x6f\x26\xd1\x95\xe1\x4a\xc5\xaa\x2f\x74\x15\xb8\x72\xb3\xea\x0b\x5d\x05\x2e\x10\x2d\x95\xae\x0a\x57\xad\x56\x7d\xa5\xab\xc2\xd5\x0c\x5f\x69\x74\x35\xb8\x7a\xb1\xea\x1b\x5d\x0d\x2e\xb1\x6d\x25\x9d\xae\xde\xe2\xde\x65\x6f\xdb\x5d\xc8\x97\x80\xaf\xec\xed\xf4\x15\xf2\x25\xe0\x2b\x87\x6e\x81\xe4\x4b\xc0\x57\x8e\xb6\x1c\x42\xbe\x04\x7c\xe5\xd4\x6c\xda\xe4\x4b\xc0\x57\xce\x58\x0e\xf2\x25\xe0\x2b\x97\x6a\xe9\xc9\x97\x80\xaf\x5c\xb1\x1c\xe4\x4b\xc0\x57\x6e\xd9\xa6\x4d\xbe\x04\x7c\xe5\x8e\xe5\x20\x5f\x02\xbe\xb2\x24\x9b\x36\xf9\x12\xf0\x95\x05\xcb\x41\xbe\x04\x7c\x95\x10\xad\x7a\xf2\x25\xe0\xab\x04\x2c\x07\xf9\x12\xf0\x55\x52\xb0\xea\xc9\x97\x80\xaf\x92\x6c\x39\x70\x8e\x2f\xeb\xf5\x16\x4d\xd6\x68\x25\x72\x0a\xe4\x4a\xf1\x1e\x37\xf8\x97\x7b\x77\x88\xf1\xdb\x9b\x58\x09\xa4\x02\xc8\x52\x6c\xfd\x94\x40\x2a\x80\x2c\xd5\x6e\x29\x25\x90\x0a\x20\x4b\xb3\xf5\x53\x02\xa9\x00\xb2\xf4\x66\x2f\x27\x90\x0a\x20\x8b\xd8\xfa\x29\x81\x54\x00\x59\x7d\xcd\x26\xd1\x05\x20\x6b\xb0\xe3\x47\x09\xa4\x02\xc8\x1a\x4b\x34\x89\x2e\x00\x59\x93\x5d\x10\x4a\x20\x15\x40\xd6\x9c\xbd\x49\x74\x01\xc8\x8a\x2b\x49\x09\xa4\x02\xc8\x5a\xa3\x55\x4f\x20\x15\x40\xd6\x6a\xd7\x9b\x12\x48\x05\x90\x15\x57\xb8\x12\x48\x05\x90\xb5\xdb\x55\xa9\x04\x52\xbb\xb9\x9a\xf7\x56\x7d\xa7\x0b\x40\x36\x5f\xad\x7a\x02\xa9\x00\xb2\x05\xbb\x89\x95\x40\x2a\x80\x6c\xb1\x58\xf5\x04\x52\x01\x64\x4b\x76\x71\x29\x81\xd4\x91\x77\x6c\xb6\xea\x47\xdc\xb1\x3a\xda\x85\xda\x63\xcf\xff\x59\x3f\xfb\xdf\x3e\x67\xbf\x7e\x5e\xce\xaf\xe7\xb3\x6e\x17\x7c\xcc\xe2\x33\xd2\xbe\x03\x0f\x9b\x7e\xfd\x30\x3e\x1d\x4f\x16\x85\xbf\xbf\x03\x00\x00\xff\xff\x88\xa2\x71\x91\x44\x0b\x00\x00"); +var _ccab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\x41\x6b\xdb\x4c\x10\x06\xe0\xbb\x7e\xc5\x1e\xf3\x1d\xbe\x7a\x57\xab\xd1\x4a\x10\x0c\x8d\x0d\xa9\x09\x69\x4b\xdd\xa6\x85\xd2\x83\xa4\x1d\x19\x41\x2d\x09\x59\x3e\xf8\xdf\x97\x99\x77\xeb\x1e\xc2\x24\x0f\x3b\x3b\xf3\x2a\x48\x9b\xdd\x61\x7f\x18\x87\xd5\x6c\x3e\x2f\x53\x77\xe4\xd5\xf4\xc3\x18\x17\xbe\x4c\xd7\xa5\x63\xd3\xf2\x69\x18\xb3\xcc\xe5\x26\x0e\xdd\xfa\xf7\x4f\x2d\xdd\xb9\x99\xb3\x6c\xf3\xfc\xf4\x92\xbf\xfc\xff\xc1\x5c\x2f\x9c\x64\x77\xd8\x1f\x6f\x97\x95\xcf\x87\xb1\x9f\x8c\x47\x67\xbc\xce\xa9\xdb\x98\xcd\x17\x3e\x0d\x97\x75\xb9\x99\x87\xf7\x71\x6a\xf9\x3f\x13\xb9\x17\xff\xb4\x44\x5e\x86\xf1\x64\x1e\x9e\x9f\xdc\x5d\x8f\xd7\x79\xfe\xcd\x67\x1e\x57\x43\x6a\x3c\x46\xad\xd9\x66\xf7\xda\xcc\x1f\x9b\x33\x9b\xb4\xc6\x9b\xba\xf2\x1b\x2f\x97\x61\x1a\x8d\x7b\x67\x6d\xf9\x8f\xbf\xde\x66\x36\x2e\xb5\xff\xf8\x76\xd8\x9b\x9f\xce\x38\x6b\x72\x2a\xad\xfd\x95\xfc\xfb\xeb\x14\xef\xa7\x0a\x87\xc5\xbb\x21\x2e\xcd\x78\xe2\xec\xb1\x71\x4d\xbe\x35\xa9\x50\x20\x15\x0f\xf1\x22\x85\x4a\x03\x69\xb6\x86\xea\x4a\xa5\x85\x74\x5b\x13\x82\xc5\xa1\x08\x8a\x72\xa8\x16\x69\x71\x75\xdb\x6f\x0d\x55\xb9\x48\xcf\x2a\x52\x42\xb0\x65\xf6\xd8\xf8\xc6\x09\x69\xa1\x50\xa9\x54\x90\x5a\xda\xac\x4a\x07\xe9\xe4\x8c\x57\x61\x08\x2e\x0a\x42\xad\x2e\xe9\xdb\x56\x0e\xe9\xd5\x6d\x84\x44\x3d\xa4\x77\xcb\x2e\xa9\x50\x90\x25\x7d\xd4\x24\x5a\x42\xb0\x20\xf4\x45\xed\x73\xba\x41\x44\x9f\x94\xd2\xaa\xf4\xe8\x93\x42\xb5\x8e\xeb\xd1\xd6\xeb\x03\xd0\x95\x10\xd7\x23\xae\x73\xd9\x63\x53\x20\xae\x96\x3c\xf7\x54\xab\x79\x98\x57\x2b\x71\x8e\x60\xa4\x16\xac\x5a\x80\x05\x9c\x83\xd5\xb0\x1a\x26\x21\x8b\x0e\xf7\x75\xe9\x3e\x9d\xc1\x30\x86\x85\x5c\x0d\x33\x38\xcd\x28\xd4\x30\x83\x31\x43\x1f\x76\xc1\x0c\x63\x98\xec\x47\xc8\x41\x29\x87\x3e\x6f\x42\x0e\x4a\x39\xf4\x9f\x49\xc8\x41\x29\x47\x45\x6a\x01\x96\x66\x04\xb5\x1a\x86\x1c\x95\xcc\x25\xe4\xa0\x94\xa3\x92\xfd\x08\x39\x28\xe5\xa8\xb4\x17\x39\x28\xe5\xa8\x6a\x35\xcc\x48\x39\x2a\xdd\x05\x39\x28\xe5\xa8\x64\xe7\xba\xb4\x62\x5a\xf2\xdc\xd7\x85\xbc\x91\xf7\xd7\x43\x7e\x97\x0f\xc1\xfd\xdd\xec\xae\xcb\xc2\xe3\xaa\x9f\x01\x7d\x07\xe5\xbd\x1a\x46\xbe\x7f\x64\xe6\x69\x96\x2e\xfd\xf9\x13\x00\x00\xff\xff\xa0\x8a\xa9\xe1\x90\x04\x00\x00"); +var _gcff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x4b\xeb\x6f\x4b\x92\xdf\x07\xcf\xeb\x55\xec\xa1\x9e\x81\x9e\x5e\x2b\x2f\x11\x99\xd0\x6c\xb0\xd5\x2e\xdc\x08\xd9\xc6\x2d\xd9\x06\xe3\xc1\xba\xb6\x0b\xdc\x55\x45\x75\x69\xa0\x77\x6f\xf2\xf3\x59\xa7\x64\x8c\x61\x9f\xc9\xc9\x9d\xff\xfc\xe5\xca\x6b\x64\x5c\xbe\x11\xf1\x77\xff\xee\x1f\xff\xe1\x1f\xff\xf8\x87\xbf\xfe\xf8\xbb\xff\xe9\x2f\x7f\xba\xfe\xe9\xf9\xeb\x8f\xf7\x0f\x7f\xbc\xff\xf2\xfc\xeb\x9f\xfe\xf3\x5f\xae\xe7\xc7\xf9\xfc\xf3\x1f\xfe\xf8\xbb\xdf\xed\xe5\xc7\xfd\x87\xeb\xaf\xbf\xfd\x93\xff\x5d\xff\x72\xfc\xf9\x77\xbf\x5b\xbf\xff\xa7\xff\xf2\xaf\x7f\x7d\xfe\xe5\x1f\xff\xf8\xfe\xe9\x47\xb5\xdd\xfd\x9f\xff\xfc\xb5\xfd\xf1\xe3\xef\xfe\xe7\xe7\x9f\xff\xf0\xaf\x7f\xfd\xcb\x7f\xf9\xf1\x6f\xfe\x9b\xfb\x4f\xe7\xf3\xff\xfb\x71\x3f\xef\xaa\xff\x1f\xff\x72\x3f\x7f\xf9\xc3\x1f\xff\xf9\xc7\xbf\xf9\xf7\x7f\xfa\xcb\x73\xec\x7f\xfb\xc3\x3f\xfd\xe7\x3f\xff\xf9\xff\x7a\xfe\xe5\xf9\xe3\x5f\x7f\xec\xd4\x3d\x7f\xbc\xf9\xff\xef\xfe\xee\xdf\xfd\x87\xe3\xcf\xff\xc3\xf1\x2f\xcf\x8f\xbf\xfb\x4f\x7f\xfc\xc3\xbf\xff\xa7\x7f\xfb\x9f\xfe\xe3\xef\xf7\xf8\xb7\xff\x3d\x7f\xe5\x8f\xff\xcb\xf3\x97\x7f\xfd\xc3\x9f\xfe\xf8\x63\xff\xff\x6f\xdb\xf8\xaf\xd5\xff\xf1\xbf\xfc\xf9\xf9\x3a\xfb\xdd\xdf\xfd\x6f\xff\xe9\x1f\xff\xe1\xc7\xff\xbe\xff\xd8\xb7\x1f\xa5\xf7\xd6\xfe\x8f\xaf\xfe\x7f\xfd\x0f\x7f\xba\x9f\x1f\x9b\xff\xaa\x4e\xe0\xfa\xd3\xfd\xfc\xeb\x9f\x8f\xeb\xf9\xcb\xf1\xc7\x7f\x7e\x7e\xf7\xe3\xc7\xdf\x6f\xdb\xb6\xfd\xfc\xb1\xfe\xfb\xfb\x7f\xc8\xdf\xff\xfe\xe7\xaa\xfb\x87\xb1\x6d\xff\xf0\xef\x56\xfd\xdf\xff\xc3\x7f\xfb\xfb\xdf\xff\xc3\xef\xbf\xfa\xff\xee\xbf\xb6\xfd\x3d\x75\xcf\x1f\xef\xff\x57\x8f\xbf\xdb\xfd\xd0\x1f\xff\xf4\xd7\xfb\x79\xad\xfb\xbe\xf1\xf7\xdb\xb6\xbf\x3f\x7f\xec\xeb\x57\xff\xcf\x3f\xff\x6e\xdf\xb6\x6f\x74\x7f\xb8\xaf\xff\xf3\xf8\xcb\xfa\xc1\xb1\xad\x96\xab\xb0\xff\xfc\x51\xb6\x41\xb1\xfd\xfc\x51\xf6\x46\x31\x7f\xfe\xd8\x7b\xa7\x38\x7e\xfe\xd8\xb7\xa4\x38\x7f\xfe\x98\x36\x3d\x7e\xfe\x88\xb0\x78\xfe\xfc\xb1\x67\xac\xe2\xb9\x3a\xad\xd4\x9e\xfb\x2a\x6e\x14\xdb\xcf\x1f\xfb\x9c\x14\xe3\xe7\x8f\xd2\xf8\xc2\xb9\xbe\xb0\x59\x1c\x6b\x08\xf6\x30\x7f\xfe\x18\xad\x50\x5c\x9f\x48\x86\x70\xf2\x09\x86\x70\x5e\x3f\x7f\x64\x67\xe4\xe7\xfd\xf3\x47\x36\xbf\xf6\xac\x5a\x7f\xf6\xae\xce\xf8\xda\x15\x6b\x90\xf4\x7b\x6f\xab\x48\x0f\xf7\xfa\x70\xa5\x87\x7b\xac\x4f\x54\x8a\xcf\x2a\xda\xf6\xfd\xf9\x23\x9d\xdb\x13\xab\x5f\x7e\xf6\x6e\xab\x48\xbf\x2f\x3d\xf0\xb5\x77\xac\xb6\xfc\xec\x5d\x63\x88\xd5\x60\xdf\xf7\xd5\x76\xf5\xb0\x17\xc6\x40\x6d\xc9\xd5\x60\x2d\xc9\x5e\x57\x83\xd8\x29\x96\xf5\x61\x6b\xeb\xaa\x2d\x14\xe9\xb7\x52\x7c\x57\x03\xda\xb6\x35\x86\x68\x14\xf7\x55\x4b\xdb\x56\x56\x6d\xa7\x38\x7f\xfe\xc8\xaf\x96\xe5\x63\x0c\xed\x5c\xb5\xf4\xd0\xf9\x1a\x3d\x74\xbe\xb6\xe6\xb6\xc7\x1a\x64\x5a\x5c\x83\x64\x38\x65\x2d\xf5\x28\xec\x40\xb9\x72\xad\xea\xea\xa2\xdc\xec\x56\xa1\x38\x57\x91\x06\xf7\xb1\x8a\x8d\xe2\xb9\x8a\x49\xf1\x5a\x45\x7a\xbb\xef\x55\x5c\x33\x6a\xdb\x3a\x1b\x5b\x59\xab\xd6\x3a\xe5\xb5\xae\x65\xdb\xb7\x9f\x3f\x66\x52\x8a\x9f\x3f\xf6\x7d\xa7\x78\xae\x51\xac\x43\x55\x38\xde\xa3\x54\x9a\x94\xf2\xf3\xc7\x88\x8d\x72\xdd\xd6\xc1\x0d\x8a\xed\xe7\x8f\xd1\x47\xa1\xdc\x7f\xfe\x98\xb5\x58\x1f\x94\x1b\xe5\x75\x9c\xba\xd5\x6b\x8e\x2c\x74\xd9\xd6\x3a\x8e\x3e\x19\x4a\xae\x6e\x5a\xa7\xc8\x32\x34\x06\x90\x6b\x00\x8d\x5f\x72\x17\x56\x69\xdf\xea\xcf\x1f\x7b\xdb\x29\xae\x05\xd9\xd7\xcf\xf6\xbd\xfe\xfc\xd1\xe7\x46\x71\x9d\xfa\x75\x1c\xca\x5e\xd6\x6d\xe3\x73\xfb\x9a\x40\x09\x1a\x70\x48\x9a\xb5\x6b\x6c\xeb\x02\x94\x7d\x96\x75\xea\x69\x30\xfb\xba\x37\x49\x91\xce\xac\x5d\x9b\xc2\xc0\xf6\xb9\x36\xa5\x33\x86\xb9\xc6\xd0\xd6\x2c\xf6\x75\x1f\xc7\x08\x5a\xac\x0b\x39\x46\x30\xb6\xb3\x50\x6e\x94\x2b\x65\xdb\x37\xca\x7c\x87\xdd\x1f\x83\x36\x17\xfd\x0c\x7e\x7b\xdd\xab\xcc\x62\xef\xd7\x4b\x99\xfa\x9b\x36\x7b\x83\x66\x7d\x74\xe6\xff\x83\xf2\x94\xfd\x66\x20\x9d\x8e\xef\x35\xc5\xe9\xef\x19\x47\xb7\x0c\xc5\xe0\x13\xcf\x3a\x13\xbb\xeb\xf8\xec\x94\x59\x9c\xa7\x50\x66\xc6\x4f\xa5\xcc\xfa\xad\x1b\x3b\xf7\xc9\x94\x9f\xfc\xf9\x63\x72\xfc\xca\xfe\x0c\xea\x99\xe6\x33\xa9\x5f\xbf\x2d\x8b\x70\xee\x1c\xba\xb2\xad\xc1\x74\x6b\xd7\x96\xd2\x49\xd9\x62\x9d\x10\xe6\x58\x36\xa8\x62\xa1\xb8\xa8\x22\xab\x53\xd6\xa6\x8f\x64\xc5\xcb\xb6\xb6\x6f\xd8\x98\xa3\xc5\x4e\x95\x6d\x11\xa5\x7d\x0d\xb0\x2c\xda\x50\x76\xfa\x58\x47\x64\x24\xe7\xb3\xec\xc7\xda\x6c\xbe\xb8\xdf\xab\x0f\x7e\xb7\x3f\x8b\xd2\xd8\xe0\x65\x1c\x8c\xb4\xac\x41\xb3\xf1\x85\x6b\x90\xd5\xf2\x5c\xa3\x66\x02\x65\x75\xc7\xaa\x95\xf2\xac\x0f\x52\xbb\x2e\xc7\xce\xf5\x29\xeb\x6e\xec\xc3\xda\x75\xa2\x76\xda\xd6\xfc\xf9\x63\xd4\x62\xf5\x1a\x46\x32\xab\xb6\x06\xda\x59\xc8\xd2\xfa\xba\x02\xd3\xfa\x41\x3d\xcd\xfb\xc6\x40\xa8\x5f\x97\x7a\x64\x61\xbe\x9d\x55\x65\xa1\xba\xf3\x65\xee\xfd\x60\x75\x68\x12\x3c\x1b\x16\x17\x39\xf8\x6a\x9d\x19\xbf\x4c\x9e\x05\xa7\x36\x1a\xcb\xcd\x8c\x47\xa7\xcc\x8c\xc6\xea\xb1\x0d\x16\x6b\x9c\x94\x69\x73\xf0\x55\xae\x54\x39\xa0\x0e\x1b\xfd\x1f\x6b\x05\xdc\xb5\xe7\x61\xda\xcc\xef\x59\x4f\xe8\x7a\x8c\x4a\x75\xeb\x19\x7b\xdd\x99\xc6\x46\x91\x01\xac\x17\xa4\xf4\x75\x7c\xfa\x3e\x29\xee\x3f\x7f\xf4\xf5\xe2\x95\xbe\x4e\x52\x2f\x16\x17\x19\xf8\xda\x5e\xab\xd6\xe2\xfd\xf3\x47\x87\x22\xf4\xed\x59\xc5\xa4\xf8\xae\xb6\x6b\xa0\x7d\x91\xc2\x5e\x2c\xae\x7e\xbb\xc5\xd5\x2f\x27\xb4\x43\x5e\x58\xb3\xbe\xc6\xd3\xa1\x6c\x7d\xef\xab\x41\x50\x8c\x55\xec\x14\x73\xb5\xb5\x38\x56\x5b\x7f\x36\x57\x03\x7f\x76\xac\xa2\xb5\xe7\x6a\x6b\x2d\xe3\xf5\x67\x6b\xbc\xd0\xbd\xbe\xce\x5e\x87\xda\xf5\xc2\x18\xac\x65\x0c\xcc\xa2\xac\x31\xb0\x3d\xbd\xac\xaf\x41\xd7\x7a\xa1\x5f\x6b\xe9\xd7\x9f\xad\x19\xb3\x35\xbd\xd2\x2f\x3d\x54\xfa\xb5\x48\xbf\xfc\x6c\x9d\xcd\xde\x18\x59\xa5\x5f\x56\xbd\xd2\xaf\x45\xfa\xb5\x48\xbf\xfd\x57\xb4\xa8\x37\x16\x94\x8d\x5a\x8f\x64\x6f\x14\x17\xe1\x2d\xee\x03\x6c\x12\x44\xb3\x2f\x46\x69\x87\x66\xf6\x75\xa4\x8a\x5f\x3a\xd6\xe5\x71\xac\x8b\x67\x2a\x2e\xc7\xe2\x99\x8a\x2b\xbe\xde\x09\x9f\xaf\x0e\x09\x4e\x5b\x2c\x12\xbc\x43\x69\xfb\xa2\xc0\x7b\x58\xcb\x79\xe6\xee\x77\x78\x25\x0f\xd1\xe2\x95\x8a\xa7\x0c\x06\x29\xb9\xb8\x7d\x91\xe8\x3d\xac\x5e\x97\x35\xfc\x0a\x84\x82\x8b\xdb\x2f\x1e\x46\xaa\x2f\xe8\x0e\x1f\xbc\xb8\x11\xbc\x91\x7d\xf1\x48\x3b\x0f\x52\x5f\x6f\xfc\x1e\xd6\xae\xf1\xbb\xec\xd7\x1a\xbf\x3b\x7b\x71\x67\x87\x65\xde\x50\x3f\xb2\x08\x5d\xb8\x07\xd7\x22\x58\xc1\xe8\xd6\xe3\xb0\xf3\xbe\xf5\x87\x8b\x94\xac\xc7\xba\x5f\x23\x38\xb9\xb1\xad\x2b\xc8\x35\x88\x75\xd7\x76\xae\x41\xac\x1b\x51\x38\x61\x01\xdd\x64\x53\x62\x9d\xc6\xc2\x51\x89\x75\x1a\x67\x29\x96\x69\x4c\x6f\x8b\x42\xce\xc2\xe1\x8e\xc2\x57\xd8\xad\x68\x50\x4b\xba\x5e\xfb\xbd\x73\x8e\x23\xd8\x43\x8b\x8b\xef\xe5\x62\x46\xac\x87\x96\xbb\x14\x8b\x13\x2a\x1c\xff\x08\xb6\x73\x52\x5c\xc3\xe8\xd6\x2e\x8e\x86\x8b\x19\xf1\xc2\x3a\xac\xdf\xe5\xba\x78\x23\xb8\xf2\xb9\x2e\xd6\x08\x88\x42\x2e\x7a\x3a\x62\xa3\x4d\xb7\xcd\x1a\xd3\xbb\x48\x48\x34\x16\xea\xdd\xda\xcf\x1f\x51\x87\x65\x98\x02\x1e\x8d\x77\xbd\x36\xd1\x9a\xe5\xc5\xd8\xb5\xf4\xb7\x8b\xb3\x93\x18\xbf\x8b\x4e\xb4\x02\xbf\xf0\x2e\x42\xd1\x1a\x2b\xfb\x42\x1e\xf6\xc1\x6f\xa1\x04\x30\x88\xe5\x85\x14\x6c\xf6\xb3\x16\x37\x7c\x11\xdf\xb5\xba\x75\x7e\xe5\xc5\x0a\x37\x28\xce\xcb\xc5\x77\xea\x2f\x37\xbf\x41\x47\xdf\x75\xf5\x5b\xe9\x96\xfb\xcf\x1f\xcd\x63\xf1\xca\xd4\x40\x83\xdf\x45\x08\x52\x06\xe6\x2d\xd0\x1d\xd6\xe1\x85\x2a\xc4\xb4\xfe\x86\x7e\xda\xff\xfb\xf3\x47\x4d\xe8\xfd\xbb\x08\x43\xfb\xc6\xb9\xf8\xe6\xea\x1a\xbe\x8b\x71\xae\x6d\xd8\x66\xac\x31\x87\xf5\x8b\x0c\xe4\x57\x5e\x73\x19\x5f\xfb\xc5\x9f\x8f\x8d\xf1\x40\x1f\xba\xeb\xbc\x8e\x47\x4c\xe7\xb8\xce\x47\x1b\xcd\xfa\xfa\xf3\x47\xab\x50\x99\xb7\xad\x39\x6e\xdc\x82\x77\x3d\x80\x6d\x76\xdb\xc4\x6a\xbf\xdb\x26\xd9\x47\xbe\xb5\x1e\xc6\xd8\x39\x3c\xef\xe2\xc9\xa3\x38\xce\xc5\x94\xb7\x74\x4d\x16\xc1\x19\xab\xcf\x5f\x10\xa9\xb7\x5d\x0c\x30\x28\xbf\xeb\x83\x1c\xfd\xb7\xfb\xf6\x50\xbf\x5e\xdc\x96\x69\xb9\xb0\xc9\x0c\xa4\x37\x26\xca\xc0\x7b\x5f\x0b\x10\x96\xd7\xe6\x0c\x37\xb0\xaf\x43\xb1\x43\xce\xde\xbe\x36\x6a\x86\xfd\x1f\x08\x55\x0c\xbc\xaf\x8d\x92\x64\xbc\x9d\xc3\x02\xc3\xf0\xf6\xb5\xc0\xde\xfd\xb7\xaf\x05\xce\x66\xfb\x25\xb4\x6c\x4e\x7a\x3d\xef\x75\xf0\xa4\xbe\xeb\x7d\x8f\x1d\x4e\xe2\x5d\x0f\x7c\xfd\xfa\x0f\x49\xbe\xf5\xeb\x12\xec\x83\x3e\xd7\x7d\x0c\xef\xf1\xbb\xa4\x94\x0c\xbf\x1b\x73\x6d\x02\x2c\xdf\x1b\x07\x72\x95\xf5\xe7\x5a\x07\x0f\xe9\xba\xaa\xed\x3b\x44\xeb\xae\xb6\xfc\xc6\xb3\x5e\xdc\xdc\xec\x9f\x87\xc2\x4b\x96\x6b\x3d\xd3\xfe\x73\xc9\x54\xc3\xf1\xe4\x12\x94\xbe\x3e\x97\x5c\xd0\xc2\xc3\x9e\x6b\x6c\xd3\xef\x26\x07\x21\xac\x5f\x17\x0b\xf9\xb0\xbc\xb9\x5e\xd6\xe1\x1e\xe5\xc9\xba\xb1\xf9\x4b\xa8\x68\x32\x0e\x6f\xde\xeb\xe0\x78\xb8\x96\x80\x11\x0d\xca\xfb\x8e\x75\x30\x6b\x58\x5e\xeb\x56\xa1\x8f\xef\x60\x7f\x3d\x98\xa3\xfe\xfc\x11\x7d\xe3\x5b\x8b\x31\x8a\xe9\xfe\x2e\xc6\xa8\x4e\x08\xcf\x3b\x82\xc7\x90\x31\x8c\x25\xde\x49\x72\xdf\xb1\x0e\xe9\xf0\x30\x8e\xb9\x2e\x93\xe3\x5c\x8c\x54\xff\xed\xbb\x8b\xc0\xf8\x16\xbe\x83\xfd\xfd\xfa\x79\x11\x13\x19\xc3\x84\x80\x7d\xe5\xb5\xa7\xc1\x2b\xfd\xce\xba\xfa\xf4\x1c\xce\x75\x0e\xa7\x7b\xbd\x84\x99\xfa\x11\xa1\x25\xcd\xb4\xea\xda\x4e\x88\x93\xeb\xb3\x84\x98\xec\xbb\x6d\xd0\x35\xf0\x6c\xbe\x73\xad\xe1\x98\xd6\xaf\x73\x38\x9c\xe3\x5c\xc4\xe3\xdb\xa3\xb9\xc6\xb9\xb9\x47\xf3\xa5\x9e\xdf\xae\xb7\x3c\x37\xc7\x79\x14\x08\xad\xe5\xca\xda\xd2\xe7\x62\x0a\x5b\xc0\xff\xbc\xeb\x69\x6f\x68\x0a\xca\xbb\xde\xf6\xe8\xae\xc9\x7a\xdc\x9b\x52\xe0\xbb\x5e\xf7\xee\xe3\xf2\x1e\xdc\x0b\xf7\xf1\xb8\xd7\xba\x79\xbf\x8e\x07\x5e\x8e\x71\x1e\xeb\xfe\xa6\xeb\xb3\xa4\xb3\x4c\x5e\xc2\xf7\x64\x7f\x91\x66\xdf\x93\xf1\x20\x44\xbc\x4b\x22\xcb\x74\xdf\x17\x73\x90\x7d\x5a\x1f\xf4\xc9\xd8\x4e\xd6\xed\xeb\x67\x9d\xbd\x90\xf0\x9c\x28\x03\x5c\xcf\x73\x11\x9e\x08\xdb\x9f\x6b\xfd\xbf\xfe\xaf\x55\x86\xc1\x79\x17\x87\x50\xbf\x3b\x75\xad\x33\x36\xbd\x0b\x8b\x5d\x88\xe1\xbc\xae\x75\xfe\xfb\x57\x5e\x6b\x25\x0f\xfa\x2e\x36\xa2\x2d\x51\xe6\x57\xc4\x6c\x31\x19\x2d\xbc\x28\x17\xc4\xe6\xeb\x6c\xf2\xa2\x30\x40\xf8\x8c\xcd\x81\x2f\x71\x33\xd2\x03\xbb\x98\x8b\x8a\xb6\xa5\xbc\x17\x17\xd7\x83\x7f\xcb\x2c\x5b\x46\x2f\xe2\x45\x5f\xd2\x65\x56\x5f\xa3\x25\x5e\xb6\xee\x77\x97\x78\x59\xe7\xda\xc0\xba\x21\xe9\xad\x47\xa1\x6e\x3b\x02\xc7\xba\xcf\x75\x5b\xec\xf5\xbe\x18\x96\xba\xad\x77\x6f\xa0\x80\xa9\x68\x11\x46\x6e\x94\xdf\xf3\x53\x60\xd5\xed\xbd\x7e\xfe\x98\x75\x9d\xc4\xba\x2f\xea\xb5\xd3\xa2\xc0\xb2\xac\xbd\xab\xa5\xc2\xfa\xad\xbb\x56\x4b\x95\x85\x9b\xab\xbc\xee\x7b\x59\xc7\xb3\x96\x75\x8d\x66\xe5\xf3\x65\x5d\x97\xb9\x0d\xcb\x0f\x2a\x0a\x7a\x5c\xc7\x73\x6e\xeb\x9a\xd6\xba\x44\xfe\xbe\xa8\x5b\xad\x17\xaa\x04\x8b\x6b\xb3\x16\xfd\xae\xf5\xf2\xce\x51\xec\x90\x09\x8a\x28\xa4\x3a\xc5\xc5\xe1\xac\xe5\xa9\xf5\xe2\xc1\x6a\x14\x27\xd7\x8d\xe2\xba\x79\xeb\x50\xd6\xba\xf8\xbd\x91\xd3\x2e\x16\x91\xda\xf9\x9c\x7a\x35\x6a\x6f\xbe\x6c\x2d\x4f\x3f\x1d\xa3\x2d\x72\x3c\xf7\xba\xbb\x9d\x6f\xdc\xeb\xaa\x84\xc5\xb5\xc1\x6b\x10\xed\xf9\xaf\x9c\x50\x7b\x36\xf6\x71\x2d\x6f\x7b\xd6\x1e\x65\x0d\xcb\x9c\x9f\xb4\xcd\x1a\x34\xc2\x4a\x7b\x96\x10\xde\x11\xe1\xda\xb3\x41\xc0\xd6\xc5\x6d\x0f\x1c\x52\xec\x41\x79\x11\x89\x7d\xe3\x5b\xa8\xe8\xca\xda\x90\xf6\x2c\x0e\x29\xb7\x46\x7b\x24\x28\x04\xe3\xf6\x20\x42\xb5\xb5\x82\xed\x59\xdc\x52\x1d\xeb\x72\xb4\x07\xc9\xe9\xb7\xf6\xeb\x72\xc7\xa0\xcd\xe2\x60\x62\x16\xca\x70\x27\x63\xb3\xbc\xce\xf9\xb0\xcd\xda\xfc\xb6\xdb\x67\x85\x98\x39\xdf\xc5\x79\xc4\x56\x18\x1b\x9c\x07\x32\x73\x7b\x16\xb7\x51\xc7\xb4\xbc\xda\xcf\xc6\x6f\xdb\x8d\xd0\xc7\x18\x9a\x9c\x8d\xfd\xa0\xbc\xdc\x69\xbf\x1e\xf9\x8a\x4a\xa5\x3d\x1d\xc2\x30\x18\x7f\x9f\xbf\x71\x99\xed\xe1\x01\x1f\xd3\x36\xeb\x7e\xc5\x6e\x9b\x75\xbf\x46\xf0\xad\xf5\xa8\xd6\x6e\xff\x3c\xa4\xd5\x71\x26\x84\xca\xf5\x5c\x0f\x60\xdf\x9c\x57\x22\x6f\xee\xf4\x99\xf4\xb9\x31\xce\xf5\x70\x35\x88\x6e\x7b\xd6\xa3\xd4\x90\x65\xdb\x33\x38\xc9\xee\xe3\x7a\x70\x7a\x71\x8e\xe3\xfa\x8d\x03\x6e\xcf\x7a\x7c\x02\x45\x4d\x7b\x78\x70\xe0\xbc\xdb\x33\xd7\x39\x41\xbe\x6a\xcf\xe4\xd1\xf6\x5b\xeb\x06\xc5\xd6\xf8\xd6\x7a\x70\x22\x37\xc6\xb3\x6e\x4d\xdb\xba\xed\xfd\x56\xfd\x05\xd1\x6a\xcf\x84\x63\x48\x3a\x58\x62\x60\x8b\xc9\x81\x3a\xd0\xbc\x7a\x18\x8f\x45\x54\xd0\xb5\xb5\x67\x5d\xd3\x8c\x61\xfb\xb5\x30\xb3\x31\xf0\xf5\x72\x24\x9a\xd8\xf6\x1c\x2a\x65\xfd\xed\xa2\xc2\xe1\x41\x38\x20\x78\x9b\xfd\x3f\x8b\x8d\x2f\xfc\xf6\xe4\x35\xf2\x00\xa2\x1a\x47\x1c\x68\xcf\x05\xd7\x62\x9f\x8b\x82\x47\x6b\x2c\xe4\xba\xfd\xf9\x5d\x82\x75\xd1\xeb\x70\xcc\xeb\x4e\xb7\xcd\x05\xbb\xd8\x58\xbf\x0b\xa1\x6d\xc9\x82\x2d\x02\x19\xcd\xc3\x72\x77\x16\x89\x3e\xd7\xbd\xce\xef\xe0\xdc\xbc\x88\x95\x39\xde\x70\x3c\xce\xe5\x86\x90\xef\xf4\x7f\x73\x58\x1c\x03\x5a\x75\x94\x56\xed\x79\x2a\x22\x03\xed\x9f\xf5\xa2\x34\x0f\xc5\xd3\xd9\x70\xbe\xf5\xae\x79\x8d\xca\x18\xde\xc2\xc5\xb2\x1c\x1c\x28\x36\xff\x4d\xc6\x4f\xff\x8b\x1c\x47\x5b\xd2\x70\x7b\x17\xf1\x68\x1b\x87\xf7\x5d\x84\x21\x21\xdf\xed\x13\x9d\x38\x98\x88\x4e\x6d\xeb\xd6\xaf\xb9\x6f\x8c\xe7\x5d\xd2\x67\xdb\x16\xfd\x6b\x2f\x0a\x99\x6d\x71\x30\xed\x45\x23\xb3\x71\x88\x10\xb5\xc6\x57\x5e\xa2\x4a\x9b\x10\x92\xb7\xae\xb9\x4c\xeb\xd7\x53\xd1\xda\xa4\x4f\xf4\x15\x59\xad\x3f\x58\x4f\xcb\x68\x2c\xd6\x43\xd4\x14\x55\x5a\xa5\xdc\x20\xa5\xec\xaf\x22\xc6\x0e\x01\x50\xc4\x80\xe6\x37\x44\x8c\x44\x1f\xd2\xde\x45\x0c\xa2\x0c\xcb\x0f\x6d\x98\xfb\x22\x06\x31\x58\x1f\xa4\x85\x40\xed\xda\x90\x16\x02\xfd\x66\x53\x2a\x88\x3d\x29\x4f\x2e\x22\x63\xeb\xac\xd5\xf7\xdb\x75\x51\x76\xd7\x10\xee\xbf\x73\xe9\xe1\xc2\x13\xee\xb3\xc9\x49\x0f\xce\x0f\x9c\x74\x9b\xc3\x32\x5c\x60\xa5\x7f\xb8\xe4\xbd\x58\x86\xab\x73\xfc\x8b\x48\x44\x73\xbf\xd6\x8b\xd8\x11\x15\x1b\x5c\x6f\x4f\xd7\x64\xc8\x4d\x5a\x86\x60\xbb\x8f\x10\x92\x06\xe1\x87\xa3\xcd\xfa\xb5\x3f\xd6\x99\xaf\x8c\x61\x11\x95\xd6\x37\xeb\x6f\x44\x4e\xbe\x35\x5c\x1f\xca\x10\x92\xca\x19\x96\x2b\xed\xae\xf9\x22\x18\xb9\x35\xdb\xc8\x39\xd1\xcf\xe2\x38\xa3\xda\x86\x7b\x8a\xc8\xd9\xe0\xf0\x72\x06\x6d\xe0\xd8\x6a\x30\x17\xee\x6f\x6b\xf4\x7f\xbe\x70\xb7\xac\xff\x7a\xbb\xab\xc4\x09\x4e\x2b\x25\xea\x70\x5a\x3d\x9d\x2f\x4f\xf2\x77\x56\x79\x93\xa7\x6b\x7e\x61\xb4\xe2\x61\x91\xf1\xd9\xf3\x57\xfa\xf7\x06\x27\x54\xc3\x8d\xbd\x61\x2f\xa1\xbc\xef\xba\xd0\xbd\xbb\x51\x37\xec\x22\x94\xf7\x5d\x97\xb8\x4b\x31\xdf\xdb\xcd\xa1\xfc\xc0\xbe\xf2\x72\xbf\x8f\x1b\xc5\x6f\x1f\x14\x9a\x4e\xfa\x79\x21\x0c\x7c\xeb\xdd\x21\x42\xd4\xbf\x8b\x00\x4c\x08\xe7\xfb\xc2\xd6\x3a\xd1\x17\x9d\x04\x44\xee\x7d\x0f\xd8\x97\xfe\xbb\xbf\xef\x1b\x0a\x55\x36\xa1\x6f\x9b\x1b\x3e\x28\xaf\x03\xc8\xab\xd3\xb7\x4d\x62\x66\x79\x11\x9e\xb9\x88\x41\xdf\xd0\x8b\x8c\x75\x28\x3a\x2c\x5e\x2b\x5f\x7d\x20\xc2\xd0\xff\x7a\xd1\x13\xd1\xa9\x6f\xfb\xc1\xc6\x5a\x7f\x2d\xa2\xb5\xd6\xa7\x6f\x3b\x2f\x99\xfd\xa3\x17\xd9\xd6\x05\xed\x5b\xd9\x19\x83\x65\xe6\xb5\x36\xb0\x6f\x45\x02\x4c\x9f\x25\xd0\x4f\xf0\xdd\x92\x88\x2d\xd6\x2f\xae\xa2\x0f\xbe\x55\x60\xb6\x16\x13\xd9\xb7\xc2\x81\x75\x0c\x65\x8d\x81\x83\xd6\x37\x38\x0c\x44\x92\x8e\x15\xab\x23\x72\xf6\xad\x61\x6c\xda\xe9\x73\x11\x89\xda\x2a\xeb\xb3\x88\x44\x8d\x62\xbd\x7a\x08\xfa\x6c\x1e\x40\xc6\x23\x01\x18\xac\x0f\x97\xfe\xeb\x93\x8b\x9e\x1b\xbf\x5d\x62\x78\x8d\x8d\xfa\x74\x5e\x8c\x33\x7d\x59\xf9\xd6\xba\xdc\x81\x85\xa5\x6f\x4b\x04\xce\x16\x7c\x6b\x20\xfe\x77\xfa\x1f\x70\x57\x3b\x6b\x38\xd8\x23\xf7\x74\xa2\xd7\xd9\x99\x23\x7c\x6d\xf5\x5b\x13\xf1\x6a\xd0\x66\x3d\x92\x59\x5c\x7f\x1e\x49\xf8\xf3\xbe\x9d\x70\x4e\x9d\xfa\x53\xc2\x69\xfd\x9a\xd7\x6e\x9f\x88\x48\xb5\xda\xc6\x7d\xa4\x7f\x44\x98\xad\x58\x5e\x67\x00\x2b\x73\xdf\xd6\x25\xeb\xcd\xf5\x41\xd2\xa8\x95\x36\x37\x67\xd8\x7d\xe4\x61\xdc\x1c\xc3\x7a\x18\xc7\x56\x2d\x1f\x70\x36\x7c\x0b\xab\x72\x71\x6d\x79\xdc\xf6\xc6\xba\x3d\x09\x37\xc6\xd8\x9e\x25\x2a\x6e\xce\xf1\x45\x0c\xaf\xf4\xbf\x1e\xb4\xbe\x15\xda\xbf\xde\xbb\x55\xbf\xc3\x25\xd7\xf5\x98\xf7\x1d\x2e\x79\xb2\x56\xfb\x06\xbb\xcf\xda\xee\x1b\x8f\xe4\x22\x48\x1d\x9b\x64\x85\xc0\xaf\x95\x87\xc8\xed\x94\x9d\x17\x6d\xd6\x19\x6e\x68\xea\xfb\xce\x39\xc4\x6a\xd6\x35\x4e\x77\xce\xf6\x5e\x13\x02\xc6\x6f\xd7\x23\xd6\x30\xd9\xf4\x9d\x47\x6c\x16\xc6\x83\x2e\x6d\x1b\x8c\xb3\xa9\xb2\xb0\x5c\xe1\xd8\x3a\x65\x68\x4e\x32\xce\x06\x81\xdc\xfc\x2d\x46\xe8\x41\x9f\xeb\x0c\x8f\x6d\xff\x15\x67\xd6\xf7\x86\x25\x80\x45\xc2\xf8\x5d\x51\xde\x75\x4c\xde\x6d\xdb\xed\x78\x1d\x9c\xc6\xa5\xd9\x1b\x7a\xa0\xea\x40\x16\xdb\xdc\x5c\xd4\x4f\x67\xc6\x22\xad\x83\xdf\xea\x22\x72\x7d\x8f\x02\x97\x40\x1b\x74\x51\xcd\x36\x91\xb0\xe8\xf4\x13\x83\x43\xc7\xb7\xd0\x4b\xb5\x62\x7b\x08\x89\x1b\x12\x7f\x53\xd4\xf6\x3d\x90\xb9\x87\xfd\xdc\x5c\x74\xc6\x16\xe8\x57\x2c\xe7\x4e\x1b\xc6\x90\x1c\x34\x37\x87\x17\x74\x73\x63\x53\xae\xce\x36\x8e\x81\x3e\x13\x6e\xb2\xd3\x66\xa0\x3c\xe5\x22\xee\xe8\x81\xa6\x9b\xb6\x5e\xc7\xdc\xdd\xb4\x81\x04\x96\xac\xdb\x62\xa1\x5b\xda\x7e\xb1\xcd\x8d\xd7\xb7\x63\x6a\x0e\x50\x1e\x7d\x3f\xb8\xd0\x5c\x8e\x1d\x7d\x49\xba\x56\x07\xca\x4d\xfb\x3f\x58\x43\x2e\xdc\x8e\xae\x62\x38\xe6\x93\x43\x54\x2c\xaf\xb9\x7f\xeb\x09\xb7\x0a\x5e\xa4\xef\x48\xa8\x73\xa3\xcd\xc5\x7a\x7e\xf5\x27\x07\xc4\xfa\xd5\x3f\xa2\x69\xc7\x22\xdd\xbc\xa0\xfb\x6d\x3d\xe3\xbc\x7d\xa1\xf9\xed\xba\x88\x63\x73\x2e\x3c\x56\xe8\x81\xfa\x0e\xaa\xe3\xfb\x16\x0f\x14\x2a\x82\xbe\xbf\x5c\xe8\xdd\xfa\x45\xcc\xb0\xd5\xf4\x7d\x5d\xd0\xd8\xbd\x04\xeb\x81\x4a\x09\xd5\xfe\xde\x60\x30\x56\x3d\x26\x65\x15\xf1\x1d\x43\x72\x34\x08\x12\x96\xe4\x8e\xf9\xb8\x63\x49\x0e\x09\x00\xa6\xe4\xd8\xaa\xbf\x3d\xe0\x72\x92\xf2\xc3\xc3\x45\x19\x71\x35\xb3\x52\x66\x0d\x73\x50\x46\xcf\xc4\x38\x0b\x0f\x0e\x1c\x67\x2f\x18\xe1\x36\x7f\x5b\x26\x8f\xb9\x6d\x10\x8d\x37\xcb\x0f\x1c\x12\x63\xab\x8e\x99\x31\x54\x2e\x22\x67\x1e\x83\x70\x87\xc3\xee\x45\x25\xbb\xf3\xaa\x3c\xbc\x8e\xb3\xc2\x29\x3a\x97\xf5\x28\x55\x09\x3f\x56\xe3\x04\x1e\xb2\xf8\x39\x38\x21\x7e\xdb\x1c\x03\x7d\x7e\xf7\x94\x7e\x1a\x67\x66\x5a\xbe\x39\xcf\xcc\xb1\x7b\x36\xe8\xa7\xb3\x86\x3b\xeb\xd0\x79\xf0\xd9\xd3\xb2\xc4\xd8\x36\x20\xb4\xd8\x90\x7b\x63\x1f\xcb\xba\x8f\xd1\x06\xdf\x0d\x39\x4e\xe6\x15\x32\x26\x8c\x19\x5d\xef\x57\xbf\xee\x5a\x6e\xd3\xfa\x1b\xc6\x84\xf1\x2c\xae\x34\x41\x76\xf4\xb2\x38\xd1\x9c\x8e\x6d\x24\xe3\xb7\x0c\xf3\x52\x98\xd7\x58\x6b\xfe\xfd\x76\xa0\x23\xdf\xc7\xaf\x88\x59\x81\x05\x4d\x17\x49\x45\x2a\x97\xac\x2c\xb6\x53\x6b\x4e\x2f\x13\xcb\x08\x14\xb6\x70\x11\x61\x29\x3b\x56\xee\x86\xf8\xd6\xb1\x72\xb7\x8d\x4b\x56\x8e\xc9\xa5\x61\xe0\x5c\x50\x0c\x86\xbd\x2c\xf1\xb3\x86\x6d\x40\x4f\x25\x07\xb9\xa0\x04\x0c\x37\xf0\x82\x9b\xe1\xf2\x95\x4b\x56\x96\xc9\x5d\x12\x03\x26\xc7\x05\x4d\x0f\xda\xc5\x44\x83\x4d\xb8\x0b\x17\x91\xfe\xd7\x4b\xd9\x7c\x69\x0a\xaa\x21\x6c\xa7\x1d\x24\x51\xed\x3b\xfd\x2f\xb1\xb1\x0d\x88\x25\x00\xa2\x9c\xce\x05\xee\x33\x1c\xff\xba\xc4\xad\xf3\x7a\x95\x1b\x45\xaa\xdf\x7a\x0a\x7a\x1a\xc6\xff\xa8\x85\xe2\xb7\x8f\xeb\xc0\x6f\x5f\x36\xcd\x83\xb0\x38\xce\xd6\xe0\x3c\xca\xeb\xa1\xa6\xcf\x75\xa1\xe3\x1b\xcf\xcb\xc1\x84\x48\x94\x97\x8b\x32\x2d\x63\x80\x61\xf3\xeb\x06\xe7\xca\xe5\xae\xeb\x12\x0f\x44\x92\x5e\x37\x0e\x0e\x0f\x42\xdd\xe0\xb4\x20\xcc\x55\x11\x12\x22\x5a\x3f\x3d\x53\xa5\x1c\x18\x66\x2c\x63\x8c\x81\x90\x54\xf4\x4c\xc1\xbc\x6a\xd9\x10\xb7\xf9\x6d\x81\x0b\x81\x08\xd5\xc5\x71\x56\x60\x07\xbd\x72\xb9\x01\xa5\xf4\x5a\x10\x43\xe0\x92\x2b\x97\xd5\xbd\xa8\x75\x8d\x7f\xe7\x61\xa9\xeb\xb5\xae\x18\x30\x7a\x6d\xfb\x6f\x96\xc1\x5e\xb9\xb8\x40\x23\x7a\x6d\xa8\x02\xd2\xf6\x72\x2d\x8c\x01\x0b\x17\x4a\xf6\x5e\x41\x9d\x4d\x2e\x4d\xc5\xc2\x35\x37\xdb\xdc\xe8\xea\x18\xe7\x12\x39\x3b\xc8\x98\x5e\x01\xa1\x0d\xce\x43\x05\x85\x26\xb7\x5d\xb9\xe8\x9e\xff\xda\x79\x60\x5d\xdb\xc5\x95\xb6\xc1\x83\x59\xd7\xe3\xac\xd5\xb2\xd7\xfe\x40\xe4\xe8\x3f\x50\x44\x22\x09\xd4\x50\xef\x65\x19\x06\xa1\xd3\x67\xb0\x77\xce\x37\xd1\x35\xba\x47\x89\x0e\xc9\xfe\x17\x77\x5b\x5b\x58\xcf\xb9\x9d\xb6\x4f\xce\x09\x7d\xa6\x7a\x3e\xdb\xbc\x9c\x79\x7e\xbb\xc4\xd2\x3e\xdc\xbb\xb9\x38\x72\x99\x11\x34\xb5\x2d\x3c\x1b\xf3\x40\xd2\x60\x3d\xd7\x5d\x0e\xb4\xbf\xbd\x62\x9c\xf0\xc1\xac\x07\xc6\x1b\xce\x7f\x3d\x34\x7a\xd1\x7e\x71\xbd\x1d\xb1\xba\x57\x94\xf8\xdd\xbd\x40\x6c\xdc\x3c\x4b\x28\x72\xb1\xe4\x76\x34\xb9\xb9\x35\xd6\x59\xb5\x8f\x6b\xc2\x43\x0a\x84\xaf\x57\x1e\xcf\xc9\x43\x5a\x97\x34\xd8\xc3\x33\xa3\xaa\x07\x06\xaa\x2a\x19\x3a\xe6\x75\x37\xdb\xdc\x7e\x49\xcc\xea\x7a\x65\x63\x73\x42\xeb\x82\x66\x71\x61\xd6\x05\xd5\xbc\xdc\xeb\xba\xa0\x35\x21\x06\xf5\x61\xd2\x0e\xea\x59\x9c\x5c\x7a\xa8\x1f\xe4\x5d\xb8\x9f\xfa\x9c\x58\x28\x98\xd0\x73\x61\x46\xb6\x0d\x17\xee\x2b\xbf\x10\x45\xfa\xe7\x75\x6f\x8e\xe1\x45\x4c\x73\x42\x2f\xf8\x1c\x0f\xc5\x0b\x6b\x0a\xf1\xab\x88\x9f\x8e\xb3\xad\x97\x7b\x28\x1a\xb4\xcd\x43\x91\x94\x45\x7c\x5a\x8f\x32\x97\x05\x6b\xe8\x96\x02\x4e\xb4\x6d\x72\x3f\x9d\x32\x1c\x27\x97\xa9\xad\x17\x3d\x15\x03\xdb\x22\x0c\x0d\xc5\x74\x6f\x3b\xe3\x64\x3c\xcd\x97\x1e\x22\xd7\x76\xe6\xcb\x25\x6b\x3b\x97\x09\xb1\xae\x2d\xd6\x3d\xea\xa0\x4d\x01\x97\xca\x65\x6a\xc5\xd7\x91\xef\x62\x66\xdf\xfd\x6d\x41\x09\xce\xe6\xb7\x5a\xb9\xb8\xb4\xa9\x10\x2d\xd6\xb9\x41\x24\x2a\x2f\x71\x5b\xaf\x78\x1b\x7e\x6b\xb1\xf7\xe9\xab\xdf\xea\xc3\x6f\xf9\x16\xa6\x72\x74\x90\xbd\x41\x0c\xb0\x06\xf6\xb6\x08\x40\x05\x1d\xd5\x01\x77\x66\x43\x3c\x6c\x70\xc9\xc3\x35\x0c\xc5\x4c\xe6\x2e\xa7\xcb\x1e\xb5\x5c\x0f\x8e\x17\xa8\xad\xcb\x57\x25\xd2\x2d\xb1\x3e\x3b\x9e\xc5\xdd\x26\x8a\xf5\xde\x92\xb5\x75\xdd\xb0\x96\xa2\xb3\xe9\x6d\x00\xdb\x85\x48\xb7\x41\xfb\xb0\xfe\xe1\x8c\x31\xe6\x89\xf5\xdc\xf5\x3f\x10\x69\x5d\xcf\x03\xa8\x05\x84\xaa\x1d\x2a\xdc\xf9\x2d\x3a\xda\xe1\x3a\x9c\x40\x67\x21\x18\xed\xe4\x3c\xb8\xce\x27\x3a\x54\x88\x7d\x43\x2f\x2b\x91\x6e\x17\x78\x60\x08\x49\x83\xd3\x1d\xb6\xbf\x3c\x4b\xf4\x8f\x8e\xa7\x43\x2c\x1b\x77\x07\xcb\x51\x6f\x8f\xeb\x40\xfb\x07\x18\x85\x63\x5e\x67\xbe\xa6\xeb\xf9\x70\xae\xec\x73\x9d\xed\x04\x0a\xd4\x1b\x1c\x2a\x40\xa9\xde\xd7\x19\x4e\xa0\x6f\xbd\xc3\x89\xa2\x40\xef\x1d\x4e\xd4\x87\x11\x2c\x5a\x53\x54\x04\x81\xd6\x00\xbd\x74\x90\x60\x2d\x20\x3c\x40\xb6\xa2\xc2\x81\xf5\xaa\xea\xa3\x53\x5e\x0f\xda\x80\xfb\xe9\x40\x2d\x2a\x22\x6d\x47\xdc\x53\x5c\xed\x4b\xc4\xeb\xde\x8b\x2e\x92\xc1\xfe\xd7\x23\x50\xd1\x79\xf7\xbe\x38\xbc\x56\x1c\x43\x57\xef\xbe\xe6\xd2\x83\x35\xe7\xec\xf5\x44\x35\x01\x33\xd2\x51\x2f\x74\x88\x65\x87\x00\x37\xc7\xc0\x19\x90\xd9\xe9\x70\x69\x35\xf9\xed\xe0\xb1\x4a\xdb\x80\x1c\xe8\xbf\xc2\x89\xf5\x8e\x12\x10\xf8\x5f\xef\xd3\xd7\x8e\x49\x40\xcd\x07\x94\xb7\xcf\x8b\xcb\xc4\xc0\xe7\x8d\xc5\x84\x8f\x1c\x49\x7b\x7e\x0b\x37\x56\x61\x3b\xfb\xa1\x95\x8a\x49\xaf\x83\xd6\x80\x0c\xf4\xfe\x1d\x34\x7f\xfb\xa0\xfc\xe5\x5b\x70\x60\xbe\x40\x40\xb5\x7a\x85\x4b\xeb\x28\xeb\x27\x87\xb7\xdf\xe8\x90\x78\x51\x3a\xa2\xd0\x16\x96\xd5\x57\xd1\x7e\x11\xe0\x0e\x5e\xa7\xf7\x47\x5d\x0e\x0b\xfc\x82\x49\x74\xc1\x16\xc7\x13\x18\x33\x3a\xc8\xac\xc4\xbc\xdf\x03\x5d\x02\x06\x86\x1e\x3b\x56\xd4\xcd\xb2\xfa\x95\x35\x77\xa0\x57\xdd\xb9\x87\xe0\x76\x5e\xa9\xa8\x7c\x8b\x97\x2c\x96\x88\xd1\x83\xcb\x1a\x70\x00\x09\xc7\x06\xd0\xaa\x6d\x1c\xea\x08\xf0\x31\x8c\x2d\x12\x0c\x13\x9b\x1f\x6c\xec\xb4\xbc\x5e\xca\x0e\x34\xa6\xc7\x81\x32\x1d\x82\x1d\x07\x1c\x2d\xdc\x64\x9c\x9a\x41\xe9\xf3\x44\x79\x0d\x71\x0d\x5e\x44\xc5\xb1\x00\xd4\xbc\x71\x18\xe3\xc6\x32\x08\xe1\x89\x1b\x60\x24\x97\x3e\x6e\xac\x45\x7e\xf7\xe6\xc2\xf1\x70\xc5\x23\x27\xc1\x38\xd7\x83\x53\x81\xde\xf4\x78\x11\x5d\x11\xe7\xe3\x95\x28\xae\xb1\x25\xd6\x4c\x40\x87\x3d\xd5\xd9\x40\xcc\x72\x93\x13\xb5\x0d\x84\x1f\x42\x92\x9b\xca\xfd\xd5\x7f\xa2\xbf\xc1\x64\xdb\x73\x57\xa7\x62\x3d\x97\x86\xb3\x91\xfb\xe0\xcc\x04\xe5\xbf\xe1\xb7\x7a\x16\xac\xa5\xb6\x29\x60\xbc\x38\x57\x59\xc1\x3f\x35\xcb\x70\xbd\xec\x7b\x8a\x8b\x82\x43\x4a\x5c\x0c\x9c\x4b\x36\x45\x1e\xc6\x2f\xb7\x07\x71\x4a\xb8\x3d\xe0\x2d\x3d\xdb\x03\x67\x4f\xfb\xcf\xf0\x40\xff\x1d\x11\x9b\xb3\x9a\xc1\xe3\xc0\x5a\x65\xc0\x08\xa0\x4b\x4b\x60\x3e\xcd\xfe\x43\x08\x12\xf3\x8d\x07\xa3\x11\xe3\x5f\xdc\x5b\x0d\xc7\x99\x32\x0e\xfc\x36\xd5\x95\xb2\x6e\xc0\x64\x24\xa8\xb9\x44\xb3\xe6\xc3\x9e\x40\x5a\xdc\xa3\x9c\x12\x72\xfa\x39\xd0\xab\xb9\xfe\x47\xa1\x4f\xe6\x0e\x3c\x04\xa0\x7e\xcf\x4b\xae\x8e\x31\x7c\x52\x10\xbf\x85\xeb\xfa\xc6\x70\x01\x41\xda\xac\x7f\x00\xb5\xf2\x2d\x74\xe7\x8a\x8d\xf9\xf8\xf8\x30\x4e\x98\x14\x1f\xed\x7c\x51\xfa\xc3\x44\xe4\xbb\xe8\x86\x0c\x54\x72\x96\x24\x5a\xf9\xc2\xc9\x71\x4f\xf3\xe5\x8e\x73\x3e\xc7\x06\x37\xdf\xe7\xaf\x88\xd9\xd8\x50\x82\x37\x7f\x84\x62\x97\x8b\x3b\xbc\xe8\x1c\xae\xc1\x61\xec\x5f\x3d\x44\x8b\x0d\x1c\x98\xd6\x13\x91\x64\xec\xeb\x12\xec\xbc\x82\xa3\xa0\x53\xf1\xb7\xa5\x41\x9d\x0b\xe5\xe4\x82\xda\xe6\xe0\x50\x58\x0f\x84\x80\x85\x1c\x20\x7f\x27\x07\x67\x54\xfa\x61\xb1\xc7\x22\x18\xf1\x8d\x61\xbd\x2e\xad\xb0\x39\xa3\x72\x99\x60\x59\x07\xdc\xc6\xb0\x7f\xcc\xe3\x1b\x97\x69\xac\xd7\xa5\x76\x5e\xd6\x81\xe8\xd1\xad\x47\xc4\x50\xff\x34\x10\x31\x4a\x5a\xe6\x80\xf0\x5a\x0f\x70\x6f\x1e\xb4\xc1\x0b\x54\x9d\x0b\xd8\x35\x50\x14\x7d\x84\x4a\x67\xbe\xbb\x0e\x6f\x4a\x80\x87\x98\x30\x5e\xbe\x91\xb0\xdf\x88\x63\x83\x17\x4b\xfd\xd0\x48\x20\x03\x1c\xea\x31\x34\xc6\x58\xee\x60\xe0\x98\xe3\x40\xcf\xc4\xab\x36\x26\x5c\x11\x04\x75\x4c\x95\xe0\xec\xc5\x5c\x44\x7a\x56\xeb\xc1\x63\x71\x70\x86\xf8\x24\x38\xc2\xb1\x1e\x9c\x56\x21\xae\xe3\xf0\x55\xa6\xff\xc5\xc1\x74\xf5\x97\xe3\xf4\xd1\x60\xfd\x4f\x30\x1a\xd5\xf2\x83\x2e\x8a\xf2\xc5\xbe\x14\xe6\x05\x98\x64\xe3\x41\x1b\xc0\x79\x30\xcb\xf7\x71\x41\x14\x9d\x3b\x44\x14\xe0\x6b\x1f\x37\x97\xc6\xf9\xde\x60\x10\xe1\x42\xc6\x12\xff\xdb\xb7\x47\xb7\xba\x5b\x7f\x8b\xb8\xed\x78\x10\xf3\x15\x7b\xc7\x83\x78\x05\xa7\x32\x9e\xf3\x37\x30\x6a\x1f\x0f\x30\x01\x2f\xc1\xe2\xfe\x03\x3c\x78\x1f\xe8\xea\xd4\x03\x0d\x38\x21\x80\xa0\x7d\xa0\x58\x97\x1b\x18\x3e\x7a\x10\xc5\xb9\x09\x9d\x58\xbf\x9d\x3b\xaa\x03\x2e\xdc\x44\x54\x07\xec\xda\xe7\x8e\x91\x03\x0e\x66\x2a\x9e\x33\xc7\xb9\xf3\x98\x4c\xcb\x17\xfa\x4e\xda\x14\xf4\xa9\xac\xcf\x2c\xf9\x1b\x50\xb6\xcf\x82\xb1\x81\xf3\x30\xd7\xbd\xc8\x56\xad\xc7\xd2\xca\x5d\x98\x1a\x7b\x9a\xf5\x0f\xd6\xf0\x35\xe6\xc9\x1d\x01\x12\xd5\x67\x05\x74\x0a\x47\x38\xe1\xba\xe4\x8a\x66\xf3\xd1\xa3\x8d\x04\xdb\x39\x36\x1e\x07\x1e\xcc\xd9\x80\xb1\xf0\x08\x4f\x08\xf6\x9c\xd6\x6b\x15\x65\x1d\x16\xf1\x4e\xbc\x80\xfa\x84\x78\x4b\xd8\x66\xf7\x41\xa6\x3d\x06\x24\xa5\xb5\xb9\xee\x54\x2a\x3e\x4f\xee\x91\x5c\xe3\x54\x3c\xe7\x4e\xcd\x50\xfa\xa2\x4d\x24\x67\xcf\x36\xac\x83\x73\x5f\x8f\x7f\xd4\xd8\x7e\x45\xcc\x66\xf0\xa2\x43\xcc\x66\xe0\xa5\xc0\x26\x4f\x40\x9e\x00\xca\xfb\xcc\xfa\x1b\x2a\xb9\x4f\x00\x9c\x78\x55\xf5\x99\x83\x03\x6e\xfd\xcd\x01\x61\xd3\x78\x39\x26\x87\x6e\x0e\x2e\xca\xb0\x0c\xf8\xd3\xcd\x1c\xa2\xb0\x59\x6c\x2e\xe8\xc6\xc5\x9d\x93\x03\x02\x87\x34\x27\x0b\xcf\x61\x9c\x13\xfd\x16\x44\x68\x02\x0f\xa9\x2e\x2a\x97\x55\x11\x63\x62\xe1\x52\xcc\x9c\x27\x7a\x35\xb8\xae\xb9\x2e\x65\x6a\xf5\x9b\xa7\x44\x97\x45\x02\xeb\x05\x84\xa4\x4f\x01\x78\xfe\xf6\x52\xe9\xc9\x98\x2f\x11\xd6\xcc\xeb\x56\x44\xb2\xac\xd8\xc5\x77\xb9\xa0\x2d\xad\x6f\x70\x1b\x7c\xf7\xa6\x1f\x0f\x0e\x9c\xa5\xfa\x98\xb9\x38\xcb\x2a\x91\x98\x28\xd9\x15\xaf\xe6\x13\x20\xb2\x19\xcf\x83\x18\xc5\x0b\x37\x97\x08\x9f\xdb\x57\x86\x4b\x76\xbf\x10\x5b\xc2\xfe\x11\xbd\xa7\x87\x5a\x28\x07\x62\xcb\x7c\x01\xc4\xf2\xc8\x1c\x58\xbb\x0a\x97\xec\x40\xb1\x2e\xc7\x7c\xe0\x21\xa3\xb8\x74\xc8\xfd\x70\xc9\x8e\x9d\x07\x81\xc7\xe4\x40\x84\xd1\x92\x7b\x60\xf9\x9a\x9c\x87\x03\x54\x3b\x6e\x4b\xfd\x40\x69\x8e\xe7\x44\x3f\x54\x9a\x33\xb6\xa3\xaa\x0b\xa1\x1e\x71\x18\x04\x5e\x3f\x1a\x56\x33\x2e\xfa\xd1\x78\x3c\xd3\x32\xc4\x9b\x07\xea\xe0\x12\x0c\xf6\xf7\xe0\xe0\xfb\x60\x1e\xa1\xa8\x4e\x9f\x1a\x5d\xd8\xc7\x63\xa2\xeb\xe2\xa2\x1c\x80\x5d\xc1\xf5\xf5\xe3\x40\x37\xe3\x77\xd1\xd1\x6a\x54\x38\x2e\xb9\x1c\xe6\x7b\xb1\x77\x3c\x56\x87\xba\x1f\x2e\xd3\x71\x5d\x58\xea\x29\x23\x5a\x06\x22\xd2\x81\x77\x6b\xf8\xdb\x07\x55\x06\x8f\xd8\xb9\x09\x14\xef\x94\x27\xfb\x65\x3d\x2e\x32\x3c\x02\xe7\xa6\x94\x42\x19\xfd\x25\x50\xa0\x7e\xa2\x83\xc4\x83\xa2\x9f\x8b\x83\xec\x4a\x17\x27\x16\xea\x61\xff\x70\x84\x78\x06\xf4\x13\x15\x01\x3e\x56\xfd\xec\x70\x81\xec\xef\xd9\x31\xb6\x7d\xed\x21\x72\x9c\xc9\xb3\xa3\x46\x60\xdf\xcf\x8e\xbe\xb3\xd8\x9e\x47\xe0\xfb\xed\x8d\x84\xc0\x78\x3a\x7a\x62\xb8\xff\x33\x14\x33\xe9\x47\x8e\xd3\x31\x03\x63\x09\x7f\xbb\x08\x4f\x57\x77\x7b\x02\x08\xc7\x93\xa3\x9f\xe8\x08\xbb\x73\xc7\x20\xb7\x17\xeb\x75\xd4\xb5\xac\xc1\x8f\x3e\x53\xab\xe8\x5a\xdb\x73\xc0\xbc\xc4\xaf\xc0\xb1\xfd\x5c\x72\x6a\xe0\x45\xdb\x4f\xac\x09\x3d\x2d\x2f\x4a\x3d\x38\x50\x27\x00\x39\x9c\xb5\xfa\x09\x40\x0e\xf4\x6a\x3f\xc7\x8b\x69\x9a\xf6\x28\x1f\x37\x5e\xee\x73\x76\x38\x1e\x7e\x3b\x15\x9d\x98\xe8\x14\x86\x60\x1b\xc0\x8d\x2e\xe4\x22\x54\xa1\x9e\xe3\x04\x79\xad\x2e\xea\xe4\x30\xee\x2e\x1e\xc8\x6b\xd9\xec\x13\x56\x19\x57\x8a\x7e\x1e\x10\x12\x27\xcd\x81\xd5\x8a\x74\x2e\x82\x17\x2a\x13\x4f\x14\x9a\xf8\x92\xf6\x13\x91\x0d\x4c\x4f\x3f\x0f\x5e\x20\x5e\xeb\xf3\x84\x50\xa5\x65\x58\x74\x44\x8f\x53\x51\x8e\x0b\x7d\x9e\xb8\xba\x6d\xb6\x81\xf0\xb8\x69\x20\xa0\xb3\xd9\x86\x8b\xe8\xd8\xce\x97\xcd\x64\x03\x2f\x59\x6e\xda\xaf\x0b\x14\xe1\xc6\x5e\xb2\xfa\xf4\x79\xc9\x01\xb0\x9e\x70\x3c\xea\xe7\x4e\x08\xad\x22\xff\x09\xae\x4e\xe5\xe9\xb9\x2e\x59\xdf\xed\x67\x11\xda\xf6\xad\x1b\x20\xe4\xf0\xa0\xdd\xea\x1a\x2d\xcb\xea\xdb\x06\x2e\x0a\x71\xe6\xc4\xc8\xa1\x4e\xe8\x54\x6c\x77\x1f\x1f\x94\xfe\xce\x17\x7d\x6a\xb5\xfd\x03\xd0\x11\x22\x71\x7e\x10\x03\xe6\xb5\x2e\x77\x57\x99\x7e\x3e\xf6\xcf\x38\xd1\x21\x29\x7a\x9c\xeb\xd2\x77\x39\xf5\xf3\xe3\xa8\xec\x93\xcb\xed\xd8\x1e\x8c\x2e\x9e\x37\xb8\x2b\xc5\xa2\x13\xd8\x8e\xdc\xcc\xf9\x02\xfe\x74\x0c\xef\xdf\x5c\x7d\xfa\x09\x84\x47\x71\xf5\xc2\x3d\x52\x5d\xd1\x85\xd8\xab\x48\x75\xa1\x7f\xc2\xa1\xb0\x5f\x58\x42\xd5\xa5\x5d\x48\x1d\x65\x5a\x8f\xbe\xb0\x5a\x8f\x2e\x30\x2c\x23\x72\x42\x3c\x2e\x74\x57\x78\xab\xf7\x6b\x7b\x7f\x73\x31\xea\x97\xee\x93\xac\xf9\x05\xa1\x52\x64\xbb\xe0\xde\x2a\x84\xff\x42\x62\x21\x02\x41\xbf\x8a\x0f\x32\xed\xd1\x6f\x01\x2a\xee\x17\x18\x3e\x1f\xff\xab\x22\x11\x31\xdf\xab\x62\x49\x87\x59\xb8\xb0\x7e\xe6\x57\xe6\xc1\x19\x96\xb1\xe4\x3a\xaf\xcf\x00\x43\x9f\x1a\x60\x10\x09\x2f\x80\xbe\x78\xea\xf4\x6b\x3d\x26\xd5\x07\xe1\x6a\xba\x36\x59\xe6\x41\x73\xfc\x4d\x1c\x1b\xe3\x6f\x48\x14\x20\x01\x2e\xa4\x1d\x45\xfe\x0b\x22\xaa\xce\xec\x02\xc3\xa7\x31\xe0\x0a\xad\xbd\x8c\x0d\x84\x43\x0f\xcb\xaa\x83\x98\x7b\xe0\x09\xc1\x03\x72\x05\xba\xf6\x6a\xf9\xc5\x63\xe3\x97\x06\x80\x2b\xf7\xdf\xfc\xb9\xfa\x85\xff\xae\x16\xc9\x6b\xea\xcf\x45\xfd\x94\xaa\x32\xe9\x03\xdd\x80\x1b\x82\x5b\x05\x6e\x4e\xfd\x3a\x20\x78\xb6\x3f\xe4\x3c\x98\xdc\x89\xbf\x1b\x54\xfe\x42\x9c\x49\x58\xd9\xeb\x54\xc4\x60\x42\xc0\x0d\x24\x66\x17\x84\x01\xff\xaf\x7e\xe1\x0e\x01\xb2\xbb\x5f\x8b\xa3\x0a\xad\x6c\x17\x4a\xdb\xee\xc2\xdc\x28\xc4\x1d\x0f\xf2\x7a\x85\xa8\x5c\x0f\x04\xc6\x0d\x7c\xc5\xcf\x31\x86\x57\x1d\x0c\x73\x81\x83\x91\x30\x5c\x40\x03\xbc\x64\xf7\x86\x05\x0d\xae\xf1\xe6\xf0\xaa\xac\xbc\x05\x9d\xf2\xdd\x7b\x87\x33\xfb\xca\x0d\x71\xaf\x52\x06\x46\xd1\x2c\x03\x7c\x65\x3c\xf7\x8e\xa9\x19\xce\xe0\x2e\xf6\xcf\xb7\x34\x00\xb0\x6e\x37\x66\x76\xc0\x9f\xfd\x6e\xac\x21\x0a\xdc\x7b\xbd\xc4\xad\x72\x88\xee\x40\x9c\x81\xe8\xde\x70\xd5\x1e\xea\x3b\xd4\x1d\x52\x1e\x12\xbc\x41\xf9\x64\xbe\x94\x27\x10\x0c\x38\x86\x5b\x78\x88\xfd\xe0\x66\x83\x7b\x4c\xbf\xd1\x77\x2a\xae\xde\x27\xd6\x43\x88\xd9\xfd\xed\x85\xe5\x0b\xd1\x8c\x7e\x4e\x5c\x7a\x20\x18\xf7\x25\xee\x8d\x7e\xb4\x2c\xdb\xff\xcd\x9a\x14\xcb\x37\x22\x15\x73\x07\x77\xa5\x0e\xf5\x06\xee\x11\xae\xd5\xa3\xbf\x2f\x73\x41\xb1\x2e\xdc\xe6\x7e\x70\x87\xeb\xd6\x03\xab\x81\xf0\xdf\x8f\xf8\x3c\xe6\xf8\xb0\x86\xae\x1b\x9c\xeb\xe6\xbc\xde\xfd\x37\xff\xc4\x7e\x03\x54\x56\x84\xb9\x5f\xf4\xac\x10\x89\x9b\x73\xe2\x43\x77\xa3\xd7\x09\xfb\x57\xfc\xfc\xfa\x79\x7e\xf3\x6d\xec\x0f\x78\x47\x5c\x51\xfa\xf3\xe9\x0b\x77\xca\x10\xda\xdd\x7a\x39\xe9\x35\x5f\xbd\x19\xc4\x44\x3e\x12\x39\xb8\x25\x3c\x15\x72\xdb\x2d\x63\xb9\x83\xcb\x79\x76\x40\xe6\x9c\xab\x07\xae\x57\xa8\xc2\x83\xf8\x29\x07\x89\x37\x43\x6f\xdc\xdf\x07\xa3\x51\xf7\x5b\x00\x9b\x15\xdf\xf0\x6c\xe8\x15\xe2\xfd\x54\x8c\x31\x3c\x4a\x4f\xc5\xfa\xcc\x1e\x3d\xe8\x11\xd5\xc5\x3e\x88\xa5\xc9\x59\xc5\xb3\x21\xd5\xcf\x3d\x88\xa8\xea\x1a\x1f\xe0\x5a\xea\xd2\x9e\x0e\x11\x0a\xcb\xab\x4f\xef\xe0\x13\x3b\x73\xa1\x7d\xa8\xce\xa2\x7f\x8c\x04\xaa\x0b\x9e\xfc\x9b\x7f\x68\xc7\x53\x21\xb5\x92\x3f\x4a\x80\x61\x39\x21\x8a\xbf\x34\x00\x3c\xb0\x79\x5a\x28\x9e\x44\x09\x8e\x9e\xe3\xc9\x13\x6e\xc6\x7a\x2f\x31\x0b\x80\x2f\x9e\x80\xba\x67\x60\xd2\x1f\xd6\xa3\xf4\x77\xb0\x03\x00\x1e\x87\x42\x17\x05\x2f\xf1\x03\x67\xa6\x72\xfc\x59\x1c\x58\xc5\xc3\xa0\x3f\x53\x0e\x83\x3e\x0f\x09\x92\x65\x09\x0f\x9b\x8c\x9f\x9a\xfa\x30\x3c\x0c\xaa\xd0\x8c\xcf\xab\x80\xc3\xfb\x9c\x5a\x6a\xe8\x1f\x6c\x56\x75\xf3\x4f\x89\x0a\x0b\xc6\x05\x55\x1c\x78\x20\x90\x8a\x3f\x0f\xe2\x46\xe5\x15\x79\xb4\x5e\xf1\x3a\x3e\xe2\xb4\xe0\x8a\xf4\x30\x68\x6e\xf8\x2d\xc4\x80\xdf\x02\x3c\x26\x5a\x48\xc7\x93\xa0\x11\x7d\xa0\x3f\x88\x96\x8a\x12\x0f\x3e\x42\xd1\x6d\xa3\xb9\x9e\x3e\x01\x1b\x6f\xbc\xbe\x0f\xdc\x8f\x7a\x41\x3c\x09\xaa\x44\xf1\x59\x5c\x4b\xd3\x38\xf1\x00\xf7\x50\x2f\x85\xc7\x40\x9f\x5c\x44\x3c\x06\x22\x77\xdb\xb0\xb6\x1e\xb4\x17\xc8\x09\x07\xe4\x95\x53\x81\x53\xc4\x21\xbb\xf9\x2d\xbc\x07\xd2\x57\x50\xcf\x00\x42\x59\x74\xbc\x01\x3a\x4e\x61\xfd\xdd\xeb\x6f\x8e\xc8\x1d\xc7\xeb\x10\xe7\xf7\xee\x72\x90\xb6\xe1\x3c\xa4\xbf\xc5\x35\xa8\xdb\x1e\xb1\x97\x75\xc6\xf1\x3a\xd2\x7e\x0a\x40\x65\x0e\xf5\x4b\x0c\x21\x25\x01\x1c\xa9\x1b\xa8\xfc\x8e\x63\x74\x77\x0d\xdf\xca\x59\x62\x1d\xf0\x36\xa8\x5e\x5c\xbc\x0d\xd2\xf9\xea\x3d\xd0\xe0\x50\x71\x4a\xae\x9e\x55\x7c\x8d\x9b\xca\x7a\x3c\x09\x9a\x84\x0a\x7f\xe1\x86\xc7\x40\xc7\x5f\x38\x93\xc7\x13\x8f\x81\x9c\xac\x33\x5e\x02\x21\x16\x13\xdf\xde\x54\xa1\x8f\xdf\x6e\x9f\xce\x0b\x7d\x4f\x71\x9d\x11\xbb\xd4\x75\xe9\xc3\xdb\xd3\xb2\x38\x3f\xcb\x1a\x75\xec\x07\x2b\x3f\x67\x18\x0f\x83\xdc\x1c\x0f\xa2\xd9\x06\xe1\x7c\x53\x42\xc2\x78\x12\x6f\x06\xd4\x08\xf8\xdb\x66\x77\x9c\x78\x18\xec\x10\x27\x7d\x6c\xc5\x41\xea\x63\x4b\xa4\x97\xfe\x2a\xb2\x71\x8f\xf0\x99\xed\xc1\xbd\xc0\xab\x20\x7d\xc4\xf4\x2a\xc0\xef\xb8\xbf\x43\x2b\x39\x63\xc0\xb2\x5c\x9d\x8b\xc0\x66\xf7\x08\x31\xbf\xc0\x38\xe0\xeb\xda\xaa\xfb\x0b\x3c\x44\xc3\x1e\x7e\xaf\xdd\x07\x1f\x3f\xd6\xd0\x42\x8a\xef\x6a\x53\xf4\x7e\x17\xa3\xd4\xb5\x62\xe3\x8b\x9a\x72\xe4\xfa\xa2\x6e\xf9\x4b\x03\xc0\xcb\x4b\x1c\x1e\x8a\x43\xd6\x94\x0e\xe0\x9c\xb4\xb8\xe1\x54\xda\x0a\x22\x83\x8e\xa4\xea\xcc\x5e\x82\x6e\x4d\x17\x1e\x6b\xc8\x77\x48\xb1\x4e\x0a\xbc\x7c\x2f\xad\x12\x0c\x5c\xb7\x22\x5e\xe5\x17\x4c\x09\xde\x03\x1d\x6f\x83\xf8\x36\x8a\xcb\x5d\x3d\xd4\xeb\x95\xcd\xea\x6f\xc1\x69\xed\x2e\x06\x5c\xd4\x40\x04\x7b\x41\x43\xe3\xc4\x1c\x1b\x17\x11\x10\x63\x88\xee\xe7\x62\x85\xe8\x7e\x50\xd8\x01\x8a\xbf\xb5\x45\x50\x63\x23\x92\x49\x09\xca\x45\x78\x88\x65\x5c\xa7\x16\x37\x16\x1b\x51\x0c\xc0\x36\x05\x68\xfd\x0e\x20\x33\x40\xeb\xc7\x6f\xbf\xd5\xf0\x30\x29\x83\x01\x2a\x8c\x01\xd4\x73\x4b\x7e\x4b\x74\x11\xdc\x78\x42\x84\x7e\x6e\x8c\xa7\xb1\x86\x1b\x7d\x76\x2c\x86\x93\xfa\xae\x3b\x19\xfd\x74\x8d\x01\xf4\x8f\x5b\x0e\xfe\x83\xb1\xe9\xaf\xb7\x88\x41\x6c\x5c\xb2\x59\xa9\x0f\x80\xa6\x93\xf1\x2f\x36\x7e\xc0\x25\x04\xc8\xfd\xe4\x85\x8e\x2d\xd4\x55\xf8\x5b\x44\x98\x64\x2e\x01\xe8\x34\x58\x4f\x9c\xe6\x77\xe7\x18\x40\x0c\x26\xe3\x0f\x09\x1e\xe5\x75\xf9\x06\xb8\xab\x10\xd1\x3f\x07\x63\x1e\x8a\x93\xd6\x6b\xa2\xb7\x1e\x70\x6c\x65\xbe\x13\x63\x49\xa5\x1f\xd4\x11\x88\x69\xb1\x4d\x2c\xad\xdd\xb2\x8f\x00\xe3\x04\x23\x85\x2b\x57\x6c\x5a\xe8\x0a\xf3\x3a\x2a\x0f\x2f\x7d\x02\xdf\x28\xfe\xf6\xc0\x3f\x74\x67\xdd\x50\x23\x80\xc1\x0a\xbc\x04\x3a\x5c\x51\xe0\x25\xd0\x8a\xf3\x3d\xb5\x4a\xd3\x3f\x2e\x3a\x70\x8d\x41\x4c\xba\x8a\x08\x1f\xc4\x9c\x6b\x44\x70\x08\x83\xce\xed\xae\x39\x6a\x81\xdc\x19\x27\x86\x90\x6f\x6c\x18\x3f\x86\x6b\x7e\xa3\xff\xeb\x96\x51\x77\x6c\xb4\xbf\x81\x51\x78\xde\xf4\xa4\x71\x9d\xf5\xa4\x99\xcc\x0b\xcb\x60\x75\x6d\xe1\x32\x11\x5d\x63\x83\xb3\xac\xcd\x7a\x54\x3a\x9b\xf5\x9c\x93\xa0\x7f\x44\xef\xf6\xb5\xe7\x4e\xb1\xe6\x78\x0c\x74\x08\x6d\x7c\x5e\x02\x8c\x67\x47\x1a\xe1\x01\x89\x1d\x98\x52\xdf\x93\x32\xe3\x9c\xb4\xc7\x10\x92\x5f\x59\x2f\x01\xda\x10\x33\x08\x1d\x67\xe0\x55\x50\xfb\x4e\xb9\xc0\x49\x2f\x4e\x2b\xf6\x2a\xd0\x7a\x52\xc6\x7d\x6b\x5a\xd6\x85\xaf\x53\x26\x72\x07\xeb\xb6\x57\x2c\xc8\xbf\xd4\x99\x85\xe1\xf1\x8a\x1d\xe0\x44\x8b\xbb\x48\xe0\x66\xd0\x70\x3c\x0d\xdc\x09\x02\xb1\x22\xf0\x18\x08\x44\xbf\x20\x46\x5e\x85\xdb\x08\x83\xe4\xb5\x6a\x19\x6a\xce\x05\x32\x4c\x1e\xf8\x92\xd8\x61\x47\x89\xf1\x17\x3b\x4a\x46\x0c\x00\xb1\x77\xcd\xec\x2c\x70\x28\x9e\xd0\x0f\x0a\x47\xc4\xd8\xc0\x2f\xbc\x36\x7f\x6b\x90\x3d\x08\x12\xde\x03\x15\x77\xa9\xc0\x4b\x20\x3c\x38\x78\x03\x34\x94\xbc\xb1\x03\x56\x2c\x8e\x39\xd9\x34\x37\x2a\xe5\xd8\xe8\x27\x3d\x98\xf4\x83\x3f\x1d\xfa\xa4\xc5\xc3\x71\x39\xe8\x67\x00\x1f\xd8\xac\x47\x79\x3a\x99\xe3\xd0\x92\x48\x9f\x88\xe7\xcd\xf5\x9c\x28\xd6\xed\x93\x8b\x5b\x3c\x14\x13\xdc\x98\xdf\x9d\x2a\x88\x99\xfb\xd4\x82\x43\x3f\x87\x16\x22\xe6\xcb\xa5\x04\xea\x12\xfb\x81\x3b\x4a\x61\x0c\xc0\x5e\x10\x15\x63\xd7\x07\xf6\x2b\xf3\x28\x79\x88\x4e\x38\x09\x08\x8f\x9e\x04\x73\xb7\x7c\x00\x37\xa0\xff\x53\xb8\x01\x63\x06\xb4\x4c\x70\xc1\xd8\xd1\xcf\xc1\x95\xc6\x2e\xb7\xea\x1a\x62\x20\xa9\x10\xcb\x5d\x1f\xf7\xb0\x8d\x22\x1e\xfd\x3c\x46\x7f\xa0\x0c\xa6\x0a\x43\x4e\xe0\x19\xd0\xbe\xb3\x84\x28\x87\xe3\x72\xe8\x25\x90\xae\x15\xd6\xc6\x6d\x58\x5e\xf3\xfa\xce\xd2\xeb\x65\x5a\xfd\xe8\x25\x80\xa5\x2c\xf0\x06\x68\x44\x31\x0a\xbc\x01\x0c\x59\x13\x78\x03\x34\x62\xed\x05\xe1\xe4\x3a\x40\xd3\x28\x86\x0f\x4b\xfb\x81\x3b\xe7\x5c\x95\xdd\x18\x5a\x96\x21\x24\x10\xad\xb2\xe3\x63\xc8\xbe\x14\xc1\xc6\xcd\xb2\xba\xab\x41\xf9\x05\xd6\xc1\x6f\x01\x18\x77\xbf\x5b\x8c\xf4\xd9\x29\xa3\x0b\x64\x0d\xf1\x18\x88\xe8\x8c\x87\xe8\x06\xc0\x8b\x82\x18\x73\x0d\x3d\x62\xe0\x49\x60\xc8\x9d\x28\xd5\xf3\x4c\x9f\xe8\xc0\xd0\x7b\x45\xc1\x48\xd0\x21\x24\xa5\x81\x93\x83\x88\xe2\x31\xd0\xb1\xd4\x07\x71\xe6\x72\x40\x3c\x0a\x56\x4b\xa2\xdc\x05\xde\x03\x86\xf1\x09\x3d\x06\xd0\x97\x47\x11\x54\x3c\xf8\x16\x11\x6d\x24\x60\x45\xa3\x20\x04\xa9\x24\x62\x3b\x8f\x46\xc1\x79\x7d\xf7\x5b\x69\xff\xcc\x11\x25\x3e\xc6\x98\xc0\x03\xa0\x83\xf9\x8b\xa2\x57\x8d\xdf\x1d\xde\x0b\xfa\x27\x8a\x4a\x38\x2f\x38\x45\x19\x07\x80\xfd\x7d\xfe\x32\x36\x62\x80\xfa\xef\xd5\x8e\x55\xdc\x73\x89\xcb\x54\x67\xc0\x84\x26\x4a\x52\x27\xb7\x5e\xca\x44\x39\x1b\x20\xfa\xb3\x3b\xd1\x93\x85\x74\x72\xa7\xa2\x25\x03\xc1\xaa\x88\xa5\x23\x08\xef\xd9\x09\x9f\x12\x85\x57\xad\x78\x18\x11\xf1\x76\x17\x92\x57\x6d\x70\xe9\xcb\x85\x65\x0d\xc2\x20\xea\xbf\xb9\x21\x70\x7b\xf3\x2b\xeb\x86\xc1\x18\x2e\x14\x9d\x5c\xfa\x82\x18\x88\x23\x72\xe0\x19\x50\x3b\x2f\x71\xb9\x11\xd3\xaa\x65\x9c\xa7\xab\x6d\x74\x34\xe7\xbb\x70\x8a\xbb\x8b\x8a\xc7\xc0\xdc\x6d\x83\xa1\x82\x0b\xaa\xc7\x80\xc4\x80\x98\xa3\x0d\xdd\x43\x14\x15\xd9\x5c\xca\xf2\xa0\x4f\x72\x93\x51\x6a\x13\xf2\x28\x8a\x4a\x6d\x2e\x71\xc1\x05\x48\xc2\x8c\xc7\x40\x9d\xae\x03\x8e\xe6\xe9\x45\x79\x51\xb6\xa6\x65\xe7\xb8\xfa\xaf\xfa\xe2\x31\xce\x2a\xa8\x72\x89\x1e\x51\x37\x8d\x37\x94\x8d\xd1\xc5\x03\x55\x0b\xc4\x9e\x8b\x02\x5a\x3f\x26\x84\xaa\x56\x8d\x2e\xf4\x89\x8f\x27\x46\x91\xa8\x55\x34\x7d\x50\xd6\xd4\x4f\x3d\xe8\x7b\x00\xbd\x51\x79\xb8\xc0\xde\x45\x05\x60\x09\x7c\x20\x2a\xa1\xa2\x08\xeb\x14\x15\x73\x7d\xb7\x7d\xa0\xff\xe0\xcc\x88\x94\xf7\x21\xad\x01\x41\xe5\x9c\x54\xf4\x28\x13\x82\x07\x0a\x3e\xf7\xaf\x1e\xc8\x03\x8f\x40\x4d\xf0\x8b\x9c\x1f\x10\xf1\x1d\x30\x6d\x54\xac\xe7\x1d\x02\x50\x35\x68\x7d\xf5\x93\x75\x60\x6c\x43\x0b\x3e\xfd\x23\x22\xb9\xe6\x75\xa2\xdb\xe3\x6c\x83\xa0\xaf\x88\xf0\x51\x71\xc2\xfe\xea\x3f\xb1\x88\xdf\x2e\xb1\x28\xb1\xa8\x46\x25\x30\x03\xa2\x68\x80\xa6\x8f\x74\x4d\x0e\xf6\x71\xda\x1e\x43\x05\x04\xb5\x22\x3a\x81\xe7\x8b\x7a\x18\x38\x97\xf2\x85\x87\xcd\x60\x3c\x58\x57\x89\x20\x1b\x04\x51\xa9\x88\xbd\x41\x34\x94\x26\xc1\x36\x1c\x4a\xba\x0e\x78\xba\x78\x86\x2b\x38\xc2\xe1\x7c\x6f\x55\x46\xac\xc9\xc7\xed\xf1\x2d\x00\xbd\xe1\x18\x04\xf4\x5a\xff\x6a\xd5\xa5\xcf\x57\x57\x3a\xfa\x7c\xc1\x5c\x96\x55\x6e\x3e\x08\x9c\x3d\x81\xe5\x83\xf1\x37\x62\xbf\xe1\xac\x1f\x4d\xe8\x4a\xb3\xcc\x83\xc3\xbc\x1a\x70\x15\x22\xe6\x46\x2b\x04\x5a\xb0\xbe\x70\x8f\x78\xb8\x5a\x81\xd9\x61\x9d\x5b\x25\x3a\xcf\xf6\x4b\xce\x0c\xb4\x78\x02\x46\x8d\x86\xd9\x36\x78\xc5\x5b\x6c\x70\x24\xd4\xe3\x2f\x19\x5f\x99\x4b\xd0\xf9\x20\xa6\x54\xc5\xa5\x06\x78\x0f\xdc\xd8\x12\x70\xf0\xd9\x64\xd2\x12\x4b\x5e\xa9\x36\x81\x03\xf8\xdb\xa9\x9b\xd3\x4e\x19\xab\x10\x87\x54\x94\x37\xfa\x92\x68\xf8\x2d\xca\xf1\x34\xb9\x10\x28\x78\x3b\xe4\xea\x2c\x3f\x1c\x10\xda\x13\xab\x49\x31\xa4\x9d\x04\x89\xe3\x12\xb4\x13\x25\xb8\x63\x23\xfa\xc6\xc6\xcb\xd4\x8c\x93\x04\xa7\xd2\x10\x8d\x81\x24\x44\xbb\xc0\xc7\x70\xd8\xdb\x05\xf7\x09\x01\x6e\x86\x39\xb2\x4f\xc2\x1c\xa1\x77\x89\x86\xb2\x1b\xb8\x44\x34\x08\x24\x71\xa4\xa2\xdd\xfa\x9a\xd1\xe7\x8d\xfe\xc6\xef\x3e\x1a\x45\xd8\x64\xad\x84\xd3\x32\x2e\x4f\x1b\xbf\xc5\xec\x8f\x78\x1e\x0d\x65\xb7\x2f\x7a\x13\x47\x65\x1b\x51\xe4\x7e\x17\xe5\xf5\xe0\x25\x13\x51\x2e\x87\xd1\x00\x09\x83\x61\x0a\xe2\xa0\x36\x09\xb3\x48\x73\x00\xb1\x61\xbc\x51\xf0\x43\xf1\x05\x11\x65\xfd\x09\x1d\xda\x80\xba\x44\x57\x94\x86\xc0\x10\x26\x34\x07\xeb\x4f\x9c\xd0\x46\x48\xa8\x10\x75\x3e\xfd\x16\xe0\xe1\xce\x65\x22\x28\x68\x05\xbe\x11\x44\x05\x8d\xca\x21\xed\x75\xc2\x55\xd3\x8f\x56\xb9\x19\x94\x1f\x38\x0f\xdb\x1b\x58\x9b\x36\x58\xdf\xb0\x1a\x47\x87\xdb\x00\x54\x1c\x1d\x2b\x1b\x48\xf6\xe8\x60\xa4\x46\x5a\xcf\x25\x63\x8f\x3a\xb8\x28\x1c\xaf\x03\xf4\x7a\xe0\x9f\x1b\x1d\x3d\x19\x96\xc7\x00\xc9\x9e\xc4\xbd\x8b\x6e\xdc\x3b\x08\x7c\x37\xee\x1d\x22\x58\x0f\x38\x4b\x44\xc2\x1e\x72\xc3\xfc\x16\x58\x13\x16\xf3\xe8\x10\x63\x45\xa4\x9e\xe8\x17\x21\x78\x1d\xdc\x21\xee\x7c\xd1\xd3\x78\x7e\xb6\x97\xe8\x5a\x0f\x18\xd5\x7a\x42\xf1\x48\xd8\xfa\x50\x39\x4e\x3f\x03\x90\x39\x5c\x9d\xa8\x79\xc5\xe7\x3e\xd4\xc3\x31\x4e\x3d\x27\x10\x57\xfb\x44\x11\xef\xdc\xd5\x69\xb9\xb6\xc0\x9d\x7c\x64\xba\x51\x33\xdc\x8b\x69\xec\x57\xfb\xc1\xb0\xc4\xf9\x27\xb8\x6a\x97\xd1\xe8\xc7\xdf\x82\x2d\x46\x07\x2a\xb5\x3b\xdf\xc3\x79\xf1\x5b\x3c\x33\xa4\x09\x00\xe6\x73\x83\xa0\xf6\x03\x47\x79\xcf\xd5\x09\xb4\x07\x4e\x97\x08\xaa\x8d\xe0\x04\x41\x08\x55\x03\x38\x06\x21\x54\xfb\xdc\x7e\xc9\x99\x75\xad\x51\x1b\x93\xbe\x98\xb4\x87\xf1\xd2\x97\x90\x0f\x5e\xe2\x63\x18\xe0\x85\xfe\x83\xcb\x4a\x24\xd4\x18\x88\x3c\x9d\x0b\xad\xfc\xdd\x31\xfb\x13\x24\x31\xfa\xb3\xfd\x16\x49\x32\x40\xe8\xb7\xcd\x43\x67\x48\x1c\x0f\x14\x22\x49\xf1\x10\x81\xaf\x9a\xdd\x36\xf8\x78\x4e\xfb\x41\x4c\x68\xb6\x07\x39\x0e\x47\xd5\x5f\x01\x99\x7c\xd7\x17\x85\x57\xa1\xe3\xf3\xb8\xbb\xd8\xaf\xb1\x9d\xe8\xf3\x55\xef\xb2\x36\x10\x0f\x80\x8a\x73\x7c\x84\x16\x4c\x16\x1b\x6f\x80\xe6\x18\x02\xe5\xf8\xe0\xb5\x88\x8d\xa8\x19\x5c\x5c\x82\xb9\x36\x02\xf6\x07\xd1\x5c\x93\xa8\xea\x11\x88\x2a\x12\xe9\x80\x2b\x02\x63\x14\x61\xd8\x74\x36\x07\x0f\x83\xde\x10\x0d\x62\xef\xe8\xb4\x26\x65\xfc\xfe\x10\x25\x08\xfa\xda\xc1\x9c\x45\xe0\x23\x49\x58\x9e\x88\x62\x64\x01\xeb\x13\x38\x06\xe3\x14\x05\x0f\x61\x0e\x2c\x5c\xdd\x31\xe3\xb5\x40\xbc\xb1\x08\x74\x15\x60\xa4\x22\xaa\xf1\xa5\xf8\x2d\xa2\xcd\xb0\x7f\x44\x9b\x7d\xb3\xfe\x60\x3c\x8c\xd3\xa8\x1c\x70\xbd\x61\x8c\x7e\x88\x2b\x91\x67\x7b\xfa\x5b\xf0\x61\xea\xcc\xc2\x98\x5e\xc3\xf6\xe8\x32\x1d\x0f\x31\xba\xd4\xeb\x44\x07\xb1\x5e\x2d\x83\xb7\x83\xbb\x8d\x8e\x53\xbb\xeb\xd0\x5d\x07\xc6\x1c\x42\x42\xa8\x47\xff\xe7\x63\x15\x20\xeb\x09\xef\x13\x44\xb7\xcd\xb1\xdb\x5e\xc8\x0c\x7d\xfa\x20\xbb\xd7\x06\x2d\x70\x0d\x11\x9d\x7c\x00\x89\x76\x5b\xe5\x44\x23\x8d\x04\xcb\xd8\x88\x0c\x82\x91\x20\x82\x68\x20\xe9\x1a\xea\x3b\xe9\x18\x08\x54\x80\xe1\x24\x82\x47\x1e\xb7\xa5\x08\xc4\xa8\xc9\x19\x0e\xac\xcc\xde\xa9\x20\xa4\xcf\xf4\xbc\x0d\x54\x0d\x8e\x07\x95\xc5\x06\xe1\x0c\xe3\x81\x41\x90\x02\x51\x0b\x90\x73\x04\x61\x7c\x7c\xc4\x82\xe0\x92\x03\xe2\x17\xd3\x47\xc9\xdf\xea\x42\xc6\x78\xb0\x5c\x4b\x30\x02\x0e\x72\xe7\xbe\x87\xc4\x86\xfb\x1b\x86\xfa\x41\xfd\x12\x44\x1e\xe9\xae\x3f\x30\x25\x39\x4b\x3c\x4e\xb2\x7f\x6d\x08\x87\xc5\xfd\x0d\x7c\x36\xbf\xb5\x3d\x1f\xee\x1a\xfd\x1b\xa8\x0f\xe2\x14\xc0\x8b\x00\xe1\x47\x20\x7d\x15\xd7\x10\x3c\x1f\xf8\xc8\x08\xad\xde\xde\x23\xc2\x6d\x81\x25\x8d\x20\xaa\xde\xde\xcb\xaf\x88\x59\xdc\x7a\xb6\xf3\xf1\x07\xd1\x0c\x82\x11\xc4\x69\xfe\x0e\xf2\xbb\xfd\x16\xc2\x36\xe2\xe5\xd5\x41\xc7\x10\xf8\x4b\x6e\x28\x13\x63\x11\x92\xaa\x28\x14\xc6\xe2\xf2\x42\x00\xe6\x54\x71\x89\x1b\x4c\x28\x52\xe1\x06\x13\x2a\x3a\x03\xd7\x85\xdf\x7e\xab\xfe\xc9\x7a\x3c\xed\xd9\xd8\xdc\xe0\x14\x59\x3c\xdd\x66\x00\xe5\x06\xae\x32\x86\xd4\x8d\xd4\x3b\xa1\x58\x6f\x9c\x2a\xcb\x84\x2d\x82\x30\x24\x84\xa4\x32\xb6\xdc\x35\x72\xf0\x5b\x23\x29\x40\x0c\x72\xd7\x6d\xc3\xf6\x72\x63\x6b\xfc\x59\x00\xd6\x72\xa8\x13\x42\x82\x05\x30\x70\xa7\x31\x94\x6f\x64\x11\xb4\x99\x94\xb1\x0a\x71\x90\x93\x48\xe7\xdb\x57\x36\xcc\x0b\xfd\x17\x90\xf8\x10\x9b\x84\xc0\xc8\x49\xa4\x04\xc6\xf6\x82\x4e\xed\x1f\x2b\x9e\x6c\x39\x61\xa4\x53\x71\x2c\x9b\x80\x5b\xcb\x06\x40\xe4\xb7\x5a\xee\x78\x7c\xb2\x19\xa9\x95\xb1\x75\x71\x75\xb4\xef\xba\x39\x4d\xca\x70\x00\x8e\x0d\x0e\x06\x48\x42\xa4\x91\x50\xba\xf5\x58\xb7\xfd\x16\xc4\x46\x8e\x21\xb1\xca\x79\xa8\x13\x6c\xd0\x37\x36\x5d\x74\x76\xcb\x3b\xfa\x3f\xda\xe8\xe3\xe9\xfe\xa6\xaa\x09\xe6\x88\x68\x29\x21\x4f\xc5\x49\x2e\x71\xc2\xb5\xc8\x49\x24\x51\x18\xd4\xdd\xa6\x56\x75\xce\x55\xea\x2d\xc1\x05\xc5\xbd\xa7\x49\x54\x72\x28\x02\xf3\x2d\xb8\x16\x55\x16\xb8\xfd\xb4\xca\xa3\x94\xd3\xc0\x06\xd6\x63\x3c\x70\xee\x48\x11\xe9\xd9\x98\xa8\x11\x20\xde\x49\xdc\x2f\xdc\xcf\x22\x0f\x82\x31\x40\x38\xf3\xd4\x0f\x97\x3e\x09\x43\x34\x1d\xf3\xa9\xca\xc2\x36\x46\x1e\x66\x3c\x5c\xfa\x0d\x2e\x39\x11\x21\x25\x7e\x29\x76\x90\xbb\x99\xb7\x7a\x38\xda\x18\xcc\x94\x07\x39\x01\x6c\x4b\x50\xf3\x56\x2c\x65\xcc\x58\xd2\xab\xeb\xc0\x1d\x97\x7b\x4e\xfc\xa9\x27\xfa\xd4\x44\x25\x02\x38\x3c\x52\x5f\x69\xf7\x77\xdd\xf7\xb6\x7b\x86\x5f\xcf\x24\xdf\x22\x54\x97\xba\xc6\xcf\x3d\xc9\xb3\x04\xfe\x4f\xc6\x21\x11\x4b\x35\xa8\xe4\x2b\x84\xc4\xf6\xc4\x27\x83\xc8\x8d\x5d\x63\x58\xa7\x4c\x90\x06\x88\xd9\x00\xd6\xa4\xae\x6e\x70\x1f\x89\xed\x17\xc3\x20\x07\xf9\xab\xf0\xd8\x31\x70\xb1\x98\xd3\x1f\x09\x25\xa0\x33\x44\x86\x02\x51\x19\x55\xf8\x46\xa3\x3c\x61\x2f\xf9\x78\x85\xcd\x66\xd3\x46\x55\x81\xc8\x6f\x9b\x87\xd7\x32\x9c\x13\x84\x6a\x34\x15\xa9\xf4\x49\x94\x4e\xe2\x69\xc5\x20\x0c\x91\xaf\xe9\x20\xac\x10\x71\x9b\x62\x88\xaf\x82\x60\xe8\x86\x54\x39\x8c\x83\x0b\xe7\x45\xc7\x25\xa9\x11\xfa\x26\x46\x70\xb8\xd0\x19\x8c\xd4\x1d\x8b\x31\x13\x65\xa0\x59\x3f\x76\x42\xe2\xf0\x5b\xcc\xd4\xc0\x19\x62\x00\x00\x26\x75\x4f\xe0\x32\x14\x60\x7a\x62\xa0\xb8\x07\x72\x12\x63\x1d\xf0\x1a\x6c\xe6\x98\x12\x39\xc6\x03\x2b\x0e\x22\x3e\xc6\x41\x20\x39\xb8\x90\xc1\x2b\xa8\xc8\x39\x80\x96\xe0\x9b\x19\xba\x18\xc9\x21\x0d\xa2\x12\x14\xbf\x7b\x08\x5b\xa0\xcd\xc9\x6b\xea\xd8\x4e\x31\x6d\xac\x03\x58\xbd\xee\x5a\x01\x45\xd9\xbe\x32\xd6\x37\x0f\x85\xe0\x5b\xe7\x7b\x19\xfe\x88\xb1\x7d\xd1\x46\x6c\x83\xaf\xa2\x07\x87\xc8\x23\xe9\xbc\x6e\x62\xc5\x4d\xcb\x1d\x83\x0a\x73\x47\x8f\xa8\x65\x4d\xd7\xa3\x6f\x8f\xd0\xcd\xec\xae\x15\x90\x13\x30\x7f\x31\xe0\xc8\x8b\x07\xf6\x01\xa4\xea\x41\x7e\xb4\x0c\x5a\x8f\x7b\x18\xdc\xcc\x78\xd5\xdd\xd2\xcf\xab\x7e\x8b\xb1\x01\x33\x01\xa3\x16\x93\xd8\x5d\xc4\xc3\x8b\xb9\xc1\xd9\x6f\x96\xd5\x4d\x76\xca\xaa\x1d\xd6\x1c\xe7\xee\xfa\xd3\x46\x2e\x16\xc2\x36\x71\x99\x1b\xb6\xa9\x44\x85\xe0\x91\x9c\xe0\xae\xaa\x7d\x36\x75\x4e\x6b\x3c\x53\x02\xcf\x1d\xd1\x75\x07\x8b\x7c\xe8\xba\x43\x44\xd6\xc0\x75\xa7\x12\x52\x29\x66\xc7\x5b\x85\xf5\xd1\x8d\x87\xe8\xca\x31\x79\x04\x02\x6e\x0f\x97\x9e\x06\xb6\x2f\x66\xe8\xb8\x4f\x3f\x21\x87\xc7\x78\x30\x68\xe1\x86\x14\x7a\xe7\xa8\x72\xc1\x3b\x27\x48\xb5\x14\x13\xcb\x32\xe1\xb3\x62\xa6\xf1\xd8\x18\x3f\x0f\x02\xb8\xcc\xc0\x53\x27\x25\x2a\x33\x09\x86\xe8\x38\x81\x4d\xf9\x50\xcc\x29\x27\xcd\xb7\x26\xba\x2b\xee\x8e\xde\x36\x12\xe0\xa9\x08\xc9\xc3\x3e\x0f\x39\x48\xda\x9f\xa8\x6b\x78\x7c\xf4\xb6\x51\x8a\x9b\x78\x5a\x10\xae\x3b\xa6\xd1\x70\xec\x87\xc0\xa9\x93\x33\x30\x2f\xbd\x76\xf8\xed\x85\x11\x0e\x3a\x33\x3f\x9d\x37\xf3\xe5\xcc\x8c\xfd\x97\x3a\x33\x5c\x65\x6a\x77\xa2\xaf\xd1\x2e\x18\xe0\xeb\x65\xb5\x8c\xa5\x06\x45\xe1\x01\x50\x90\x90\x26\x71\x60\x2d\x52\x29\x89\x4b\x4c\x23\xf2\x45\x1c\xbb\xa1\xaf\xad\x07\x5b\x66\x7b\xc0\x81\x2a\x64\x0f\x7c\x39\xbd\xc4\xb8\xc7\x84\xca\xc4\xa3\x98\x57\xa0\x51\xd6\x85\x83\xfa\x0a\xfa\x9b\x43\x7d\x54\xfc\x0d\x39\x5c\x47\x25\xb9\x03\x44\xf1\x00\x19\xad\x39\xfa\x80\xb8\x6a\x24\x38\x5a\xe3\x55\xb3\x0c\xce\x8c\x43\x7d\x34\x14\xbb\x10\x89\x83\x10\x31\x44\x1f\x88\x63\x1d\xde\xee\xab\x7c\xe0\xa7\x49\x98\x9d\x38\x38\xa4\xd5\xfe\x71\xf3\x50\x07\x70\x84\x84\x96\xf6\x88\x30\x8a\xea\x07\x56\x1b\x42\xa3\xc4\x31\xe0\x5c\x5d\x1f\xb8\x07\x2f\xdf\x41\x74\x50\x37\xf6\x18\x70\x3c\x10\x8f\x03\xf1\x01\x00\x73\x1c\xf8\x60\x4e\xb8\x99\x03\xef\x07\x39\xad\xe3\x10\x24\xc9\x98\x21\x72\xc4\x82\x8f\xe3\x34\xfa\x06\xe3\xbc\xc4\x00\x51\x7f\x61\x60\x70\xad\x0c\x4f\x0e\xb1\x3c\x08\x20\xa8\xfe\xec\xb8\xbd\x40\xb4\xc7\xd4\xef\xc5\x3a\x78\x65\x25\x96\x27\x18\x35\xad\x99\x27\xf1\xc3\x26\x8f\x18\x2e\x3a\x81\xa3\x79\x9c\x40\x63\x2a\x7b\x84\xbb\x4e\x23\x74\x7a\x9c\x04\x37\x57\xd7\x72\x1a\xc8\x92\xef\x9e\xc5\xe8\x27\xfc\x16\x27\x7e\x22\x29\xc4\x49\xe0\x3f\x02\xfc\xc5\x49\x42\x13\x1f\xd2\x13\x73\x3d\x98\xc2\x38\x1b\x52\x04\xe7\xf3\x24\xee\x57\xda\x3f\xc0\x63\x30\x70\x71\x1a\x7b\x8f\xcb\x84\x3b\x50\x9d\x3c\xb6\xb8\xeb\x74\xd7\xf6\xc4\x41\x5c\x45\xf6\x89\xbf\xad\x3a\x39\xdc\x78\x82\xb4\x59\x81\x1b\x4f\xfa\x38\x9c\xc1\x43\x81\x51\xe4\x44\x97\x86\x07\x43\x9c\x44\x1b\x21\x58\x61\x9c\x69\xa8\x28\xc6\x09\x56\xcc\x8b\x8b\x1b\x4f\x95\x03\x3b\x89\x36\x42\x2c\xb4\x38\x13\xf7\x21\x08\xc6\x89\x31\x43\x63\xd2\x69\xae\x05\xc7\x46\x40\x02\x22\xf7\x86\x9e\x3a\x5a\x00\x4f\x2c\xec\x84\xe8\x09\x3c\x6f\xfa\x37\x66\x0c\x78\xdd\xb5\x02\xe3\x85\x2f\x76\x9c\x46\x7b\xe6\x3c\x9c\xea\xb1\x5c\x5b\xa0\x2b\x5a\xe4\xf1\x7a\x69\xc5\xbd\x3b\x45\x35\xd0\xe7\x09\xae\x14\xfd\xd9\x49\x4c\x7f\xfc\x61\x03\xaf\x97\x20\xbc\x7a\x9c\x44\x21\x01\x34\x1b\x9f\x47\x8b\xfd\x68\xcc\xf0\xb7\x5a\xc0\x8b\xf5\x88\xc6\x70\x81\x27\x1c\xaa\x8f\x1e\x1e\x2d\xad\x6e\xbf\xc2\x99\x85\xee\x2e\xd5\x4d\xc3\xdd\x65\xf7\xe3\xc4\x10\x4a\x07\x0e\xde\x8b\xb8\x5f\xa1\xdb\x09\x8e\xe0\xf1\xb9\x82\xb0\x39\xba\x73\x48\x84\x2e\xa3\xb9\xf2\x5a\x5f\x10\xb6\x64\x91\x2e\x14\xca\x38\x25\xc7\x55\xff\x96\xf4\x24\x2e\x02\xd8\x11\x1f\x3c\x70\xe1\x08\x62\x7a\x05\x2e\x19\x7d\xe3\xbb\x97\x08\x65\x0e\xe9\x85\xce\x46\x4b\xd0\x05\xb7\x07\x70\x31\x74\xb1\xd8\x38\xb0\x57\x37\x05\x16\xdf\x12\xa7\xc5\x6b\x74\xa1\xf0\x25\x19\x4a\x5c\x5d\x58\x01\xdf\xed\xbe\x7c\x96\x89\xd5\x8e\x68\x70\x75\xb0\x32\x70\x18\xb8\x64\x84\x8a\xd7\x0b\x48\x08\x81\x0e\xe3\xf2\xf0\x3a\x1e\xb8\xc3\x0d\x4b\xe5\x95\x62\xd7\x68\x9f\x06\xa9\xa4\x1f\x13\x91\xa0\x4b\xbb\x12\x03\x03\x97\xe3\x22\x54\x8e\xa2\xe8\x95\x9a\xc1\x99\xbb\x21\x96\x39\x5c\x17\x4a\x61\xa2\xe9\xc6\x45\x62\x11\x8d\x04\xd7\xe2\x32\x43\xa5\xea\x35\xf4\x19\xb4\x1e\xe7\xfe\xef\xb7\x98\xd9\x39\x74\xd7\x40\x6c\xe4\x80\xeb\xed\xa1\x35\xed\xd2\xcf\x91\x33\x70\x21\x82\x15\xe7\xb2\x38\xd4\xa6\x12\xff\x22\xe8\xe4\x70\xcc\xe0\xc3\x2a\x2f\xf4\x25\x30\x12\x9d\xca\x35\xd5\x1b\x59\x8f\xd5\x1b\x91\x0a\x4f\x91\x26\xc4\xe3\xe2\x75\x17\xfe\x73\xe9\x42\xc6\xa1\xd6\x0b\x44\x1d\xea\x85\x7b\x18\xe1\xc9\xe3\x82\x48\x03\xa8\x8e\x0b\xa5\xb0\xca\xe5\xeb\x84\xb3\x74\x8f\xf4\xbd\x75\xee\xb8\x93\x11\xe6\x39\x2e\x2f\x16\xc4\xfb\xba\x04\xbe\x5a\x2f\xa7\x45\x9f\x46\x97\xed\xb6\x41\x5d\x30\xad\x17\x94\xcb\xda\x62\x0d\x07\x8b\x19\x97\xd1\x65\xbd\x0b\xc4\xdf\x22\xf8\x41\x5c\x44\x21\xd9\xfc\xd6\xa3\x95\x9f\xf6\x18\x7b\xd4\xff\x5d\x8f\x09\x44\xf8\x2d\x86\x9f\xdd\xbb\x80\xce\xf8\xbb\x3b\x8f\x3a\x45\xe6\x82\x35\xfc\x1b\xff\xa3\x61\x83\xdf\x7e\xe1\xb3\x2c\x73\x1e\x38\xf3\x37\x6a\x16\x09\xf3\x4d\xa8\x2b\xc5\x76\x3c\x57\xba\xc6\x0f\x3c\x54\x7a\x83\x70\xde\x66\x9a\x63\x3c\x37\x6a\x16\x0d\x2a\xf7\x8e\x0e\x0c\xe2\x77\x17\x02\x27\x4c\xcb\x10\x36\x1e\x67\xbd\x58\x94\x82\xee\x22\x96\x6e\x8d\xff\xe6\x51\x72\x9c\x37\xa1\x87\x3c\xe7\x77\x35\x70\x67\x50\x86\xeb\x62\xef\x6e\x5c\xb6\xe4\xaa\xef\x0a\xcd\x99\xb6\x37\xf2\xcb\x2f\x75\x66\x37\xd6\xcc\xe6\xc0\x75\xfc\x65\xb1\x6f\x14\xb5\xe2\x42\x6e\x2e\xbd\x26\xd3\xbb\x6b\x31\xe1\x23\xbc\x58\x84\x3d\x8e\x3b\x04\xa6\xd2\x1e\x04\x34\x2e\x25\x71\x87\xa8\x79\x26\x0a\x08\xd3\x03\x7b\x8b\x59\x81\x38\xdd\x58\x7c\x00\xe2\xc6\xfd\xb1\xc7\xb4\x4f\x2f\x1f\xe3\x21\xea\x44\xba\x09\xe8\x4b\xc4\xd6\xdc\x1f\x50\x93\x85\x41\xc1\x1a\x6e\x9a\x66\x79\xc7\xc0\xeb\x85\xc3\x77\xdc\xfa\x96\x42\x84\x6e\x00\x9c\xf8\xa0\xc5\xbd\xb8\xa2\x4e\xa8\xec\xb8\x51\xb6\x76\x37\x10\x9f\xd3\xe9\x02\xa3\x53\x11\x1c\x78\xf3\x92\x91\x2d\x27\x6e\x5e\xb2\xe1\x66\x02\x36\x16\x3f\x74\x5f\x12\x60\x7e\x2b\x57\x94\xd6\x2b\xba\xd2\x1e\x31\x10\xc4\x7a\xdc\x17\x8a\xec\xb0\x8c\x11\x85\xcb\x74\xf3\x7a\xf9\xfa\xde\x17\xc6\x06\xd7\xf3\xc6\x05\x08\x0e\xe0\x46\xf4\x2b\x1e\x46\x21\x24\xcd\x7a\xc2\x36\x3b\xfe\x5b\x9d\x13\x63\xd6\xa2\xea\x5e\x3c\x8a\x36\xec\xe9\x43\x7b\xb8\x6d\x5c\x83\xe2\x3b\xd4\x9a\xee\xb9\x34\xb8\x06\x75\xe1\x00\xba\x03\x11\x3d\x24\xee\x97\xbd\x80\xa3\xd2\x1d\xe8\x5b\x1f\x23\xcd\x7a\x30\x5f\x63\xf1\xdb\x1e\x9c\x16\x04\xfe\x06\xcc\x89\xff\x60\x3c\x86\x5d\x82\x0b\xd7\xd5\x47\x2e\xfc\x01\x9c\xa9\x1e\x05\xb7\x9f\x2a\xa6\xea\xd1\xab\x80\x3e\x9f\x42\xdc\x2c\xd6\xed\x29\xc2\x52\x26\x65\x38\x57\x1e\xdb\xa7\x08\xc9\xb1\x0d\x5e\x23\x10\xd4\x87\xd4\x6e\x8a\xd8\xba\x0c\x35\xc6\xf6\x18\xaa\xbc\xfa\x5b\x8c\x4f\xd3\xb2\x19\x95\xf9\x6e\x85\x9b\xe1\x3c\x3f\x15\x49\x00\x25\x3b\x6e\x45\xa1\x2a\xe0\xd1\x92\xeb\x77\xe1\x38\xf1\x78\x88\x07\x9f\x4a\x01\xa5\xcf\xa7\xae\x19\x94\x79\x54\xe1\xf8\x4d\x9e\x22\x07\x8c\xbb\x51\x13\x76\xf4\x34\x55\x43\x8c\xd9\x50\x45\x7e\xb7\x83\x51\x83\xb3\x31\x49\x0a\x91\x9f\xe3\xe9\x58\xf6\x5d\x5b\xee\xb2\x0c\x02\x49\x52\x82\xf8\x76\xa1\x4b\x92\xd2\xc2\x83\x67\x03\x01\x2e\x83\x84\x29\x29\x07\xf9\x20\xea\xfa\x08\x3c\xb8\xd2\x11\x1d\x3a\x70\x4f\x0a\x45\xda\xc7\x00\x15\x7e\x97\x8c\x61\x1a\xde\xbe\x44\x27\xdc\xf7\x87\xc0\x12\x5a\xd8\xf1\x04\x6a\x42\x36\x1e\x42\x8d\x4d\xf7\x77\xc2\xa5\xf5\x5f\x5a\x33\x49\x5c\x12\xb2\x94\x24\x2b\xe9\x2a\x4f\x9f\x83\xd0\x3a\x50\x4f\xdc\x87\x82\xa8\x92\xf1\x70\x89\x15\x4f\x1e\x52\x55\xc9\x2a\xe3\x3e\x14\x38\xb9\x06\x49\x49\x9a\x08\x6b\xdc\x84\x9a\x0a\x50\x13\x91\xec\x9b\x65\xc3\x45\xd3\x5e\x8b\x86\xdf\x22\x22\x65\xf3\x30\xf2\x22\x12\x1a\x28\x1e\x42\xca\x68\x79\x7c\x40\x55\x13\xad\x34\x70\x25\x0a\x95\x92\x8f\xb0\x08\x5e\x8e\xe7\xd1\x78\xc0\x5c\xb0\x72\x8a\xca\x7f\xb8\x58\x02\x29\x1f\xfc\xec\xd2\xc3\x88\x28\x2d\x37\xa3\xdb\x0f\x7e\x67\xf1\x6e\xb8\x18\xb1\xc0\xe4\x61\x4c\xc5\x4c\xdc\x7e\x9a\xe2\x39\x6e\x3f\x95\xd8\x60\x61\x8e\xc5\xf9\x95\xc1\x1b\x71\x39\xc8\x99\xd8\xc2\xdf\x16\xc3\x0c\xd3\xe6\x83\x3f\x0c\xca\x10\xad\x61\xbd\xa9\xfe\xf8\x2d\x2e\x3d\xe2\xe4\xc8\x75\x98\x64\xa5\x0d\x92\x89\x04\x11\x3d\x82\x3c\x86\x81\x6f\x60\xbc\x70\xae\x72\xb4\xa6\x03\x14\xd3\x46\x0a\xc0\x2a\xe1\xd1\x75\x47\xe3\x0d\xa9\xfe\x9a\x87\x97\x64\x1f\x3d\xbe\xf6\x5a\xbb\xf8\x6e\x37\xe2\xae\x6d\x4c\x95\x47\xff\x7a\x1e\x20\x32\x98\xae\x8f\x10\x49\x61\x9a\x3d\xa2\x3f\x04\x69\xf6\x42\xd5\x04\xee\x3a\xd5\xc7\xc7\xc4\x1f\xe4\x95\x0d\xd3\xe0\xe9\x9d\x40\x1a\xbc\xae\xd5\x92\x84\x20\x4d\x4e\xda\x24\x20\x2a\xb5\xbf\xc4\x1f\xae\x21\x1c\xa7\xde\x1e\x24\xf5\x88\xe1\x1a\x0e\xd1\xeb\x8c\xc1\x0b\x64\xff\xe8\x41\x85\x18\xe0\x7e\x53\x89\x40\x11\xa4\x7f\xcb\xb0\xcd\x21\x74\x85\x31\x00\x5a\xf6\xf1\xc4\x4b\x26\xa7\xe3\x21\xc1\x87\x62\xa6\x69\xdb\xc8\xa5\x11\xa6\x6d\xdb\x3c\x1b\x40\x0c\x8a\x73\xc4\xd2\x47\xf2\xe7\x78\xc1\x93\xf9\x10\x91\x6e\x2d\x15\xc1\x48\x02\xd2\x54\xca\xe3\x55\xd3\xf0\xdb\x0d\x93\x7d\x90\x57\x20\x5e\x38\x42\x0d\x2d\xaf\x71\xfe\xec\xf3\x56\xe7\xca\x5c\xf0\x24\x10\xca\x44\x4e\x8e\x90\x18\xbf\x8f\x77\x84\x71\x3e\x32\x1d\x8c\x13\x9f\x56\x42\x1b\xc5\x0b\xfc\x47\x28\x07\x79\x3b\xf2\xab\x7f\x05\x81\xb3\xb6\xaf\x20\xde\xf9\xbb\xbf\xcf\x8d\xfb\x82\x65\x39\x37\x22\x86\xa0\xdf\x4d\xf3\x73\x90\x48\x25\xc9\xcf\xd1\x71\xca\xcf\xed\x73\xdc\x4f\xca\xdc\xa3\x45\x5b\x72\x33\x59\xfe\x7a\x70\x72\xc3\xc3\x00\xc4\x42\x6e\xbb\xb0\xaf\x5f\xe9\xcc\x92\x84\x1d\x89\x3b\x53\x6e\x86\x7c\xd9\xed\x8c\x28\x15\xc9\x40\x88\x9e\x4a\x36\x9b\x24\x91\x47\x10\x71\x34\x49\xe4\xd1\x39\xe0\x49\xf2\x8e\xe4\x62\xe5\xf6\x59\xfa\x98\x28\x96\x3e\x50\xf6\x89\xab\x4f\x6c\xb6\x37\xf6\x52\x65\x42\xe0\x8a\xea\x64\x42\xcd\xe8\x09\xb4\x21\x7e\x12\x8a\xe9\xdc\x8c\x43\x16\x7c\xb7\xeb\x7f\x47\x9f\x78\x12\xa0\x6c\x4d\xdc\x78\x5a\x0c\xc6\xc9\x2b\x32\x5c\x30\xc4\xbd\xd9\x68\xa3\xae\xa2\xd0\x26\x0d\x68\x48\x3f\x84\x25\x46\x89\x99\xb8\xe5\xd4\xaf\x1f\x90\xc8\xd5\xf6\x72\x6f\x93\xf2\x54\xb9\xcc\x6f\x45\xf4\xdb\x86\x08\x20\xe8\x48\x12\xb7\x9c\x0a\x77\x92\x1b\x86\x01\x82\x18\x26\x2e\x37\x1d\x84\x78\x6e\x66\xb2\x72\x6c\x3a\xe8\xfb\x5b\xb1\x74\xae\x15\x97\x26\x1d\x1b\xba\x31\xb2\x2d\x25\x89\x39\x62\x38\xce\x53\x68\x06\xed\x11\xcd\x08\x77\x93\x1b\xc0\xe3\x66\x1b\xd2\xd0\xa1\xfc\x4d\x12\x73\xc4\xe6\xfe\xde\xfa\x51\x72\x00\x09\x25\x5e\x3d\x5c\x84\x27\x02\xf2\x90\x9b\x01\xf8\x92\x7e\x00\xfa\x92\xb6\x2d\x71\x9b\xc9\xef\xbb\xaf\x29\xe2\x56\x9f\x24\xd4\x48\x40\xb9\x49\x12\x8d\xce\x2b\x9b\xfb\xe6\x45\xa1\x7e\x37\x30\x5f\x52\xc6\x90\x10\xd6\x6b\xde\x5f\x7d\x9a\x5c\x03\x03\x40\x92\xe9\x3f\x8b\xf5\xc6\xbd\x5b\x1c\x5b\xee\x60\xda\xf0\x01\xcc\x2f\xf9\xc5\xe2\xb4\x92\x9c\x16\x0d\xaf\x91\xc4\x5b\x25\xbf\xf6\x9f\x87\xca\xa0\x8c\xa8\xcb\xb9\xda\xb1\xf0\x22\xfe\xe4\xae\xcf\x66\xa3\x1f\x33\x3b\x25\x63\x30\x7f\xeb\x22\x0c\xb9\x1b\xdf\xce\x7e\x02\x31\xdc\xdf\x7e\xb0\x11\xda\x0b\x1b\x49\xeb\xd9\x2f\xc7\xf6\xe5\x60\xf5\xb7\x80\xc9\xa7\xf5\x70\x3c\xdc\x23\xbc\x52\x3a\x8e\xe9\xb9\x0f\x23\x9e\x58\x46\x1c\xe3\xce\xe2\x89\x12\x44\x12\xc9\x9d\xbc\xa2\x58\xba\x93\x5c\x14\x89\x07\x43\xe2\x7d\x12\x88\xb1\xf9\x9b\xc7\x09\xfd\x4c\xa3\xba\xf0\xad\x03\xe0\xba\x63\x23\x17\x27\xf1\xdb\x72\x3f\x79\xd8\xfd\x2d\x22\x3c\xae\x53\xb9\x8b\xd7\x74\xaf\x71\x65\x04\x78\x9c\x78\x8a\x34\xb2\x36\xa5\xf9\x27\x40\x17\xe4\x7e\x19\x09\x85\x32\x56\x5a\x1e\xf3\xdc\x6f\xb3\xb2\xd3\x5e\x10\xfb\x64\xbf\x20\xd8\x58\xc3\x73\xbf\xa5\x1b\xbf\xb2\x66\xe6\x0e\xde\x8b\x38\x61\xb9\x0b\xd4\x0c\x06\x45\xc6\x18\x10\xd9\xb9\x13\xee\x1a\x77\x91\xdc\x1f\x23\x4c\x52\xd6\x89\x79\xf0\xc1\x57\x5f\x2a\x7e\x0b\xd5\x2e\x1e\x1c\x70\x5d\xe8\x21\x12\x17\x94\x84\x95\x4d\x92\x53\x24\xd0\x80\xc4\x8d\xa4\x39\xa1\xa2\xbc\xce\x85\xd6\x15\x04\x87\xec\x2c\xb0\xfa\xb8\xd6\x64\x29\x12\x1e\xda\x57\x59\x56\xfa\x44\x46\x2f\x1c\x84\xa2\x53\x32\x87\x0b\xb7\x10\x13\x0e\x27\xc9\x23\x3a\xc1\xe6\x92\xe4\x11\x26\x1f\xce\x82\x55\x0b\x30\x61\xe2\x3a\x12\x38\xbf\xa6\xee\x22\x40\x12\xb2\x90\x31\x06\x1f\xcf\x34\xc1\x04\xc9\x84\x53\x77\x11\xb8\xc9\x2c\x1f\x22\x7e\x1d\x96\x82\x7f\x25\xae\x23\x89\x5b\x48\x23\x13\x4e\x16\x2e\x07\x69\xb4\x92\xa4\x12\x26\x37\x4e\x92\x4a\x74\xb0\x5f\x59\x8c\x23\xc5\x45\x27\xc1\x44\xf3\xb5\x2b\x86\x4f\xe1\x40\x15\x92\xc2\x00\xe2\x4d\x12\x4f\xb4\xe1\x38\x51\x3a\x57\xe7\x88\x78\x8e\x88\x9d\x24\x98\xa8\x60\xf2\x12\x97\x92\x8e\xce\x26\x0b\x16\x5e\xc0\xd2\x59\x0e\x94\xad\x3b\xed\x0f\x08\x43\x67\xcc\xba\x4b\xf1\x40\x15\xb8\x73\x1f\xa5\x72\xb9\x3e\xb4\x21\xb5\x18\x62\x51\x96\x4b\x6e\x98\xf5\xbf\x0c\x26\x48\x9b\x1b\x8e\xc1\x75\xbb\xc1\x69\xb9\xce\x88\xc6\xe1\x5e\x1b\x7a\x88\x47\xac\x10\x32\xa8\xbb\x86\xaf\x56\x60\xce\xc6\xab\xda\x81\x31\x00\xed\x91\xf0\x97\xd7\xd0\xec\xeb\xb7\x75\x93\x9b\x59\x63\x30\xe7\x01\x31\xd2\xb2\x0a\xbd\xe1\x3c\x54\xd0\xe8\x04\x19\xcc\x0a\x0c\x67\xd8\x1e\xfd\x10\xae\x4a\x59\xd5\x09\xb1\x5f\x55\xf7\xa4\xad\x51\x46\x79\xed\x6f\x11\x09\x09\x33\x9f\x55\x17\x41\xd6\xdc\x7c\x06\xc0\x70\x16\x19\x80\x3b\xa1\x7f\xa1\x31\x10\x21\xf3\x13\x6c\xb6\xc7\x2a\x3a\x6d\x1f\x9e\x19\xda\xe0\xb0\x4e\xa6\xaf\x34\x97\x00\xba\xba\xc4\x5b\x22\x01\x18\xa7\xf9\x03\xe0\x32\xb3\x0a\xc4\xe5\x0e\xea\x39\x41\xd2\x96\xc4\x73\x22\x31\x3e\x25\xf9\x03\x4c\xa0\x9d\x75\x98\x42\x95\xb1\xa1\x67\xf5\x9c\xe3\x39\x61\x62\xed\xac\x83\x90\x5c\x95\xb1\x0d\x99\x1a\xfa\x84\xd3\x25\x38\x63\xe2\x45\x51\x89\x43\x96\x95\xc0\x12\x85\x33\x6f\x4e\x02\x82\x3f\x26\x79\x08\x9a\xfb\x8b\x87\x44\x54\x1e\x31\xbc\x22\x62\x77\xbe\x5a\xf9\x79\xfc\x2b\x00\xf8\x45\xe0\x7f\x41\xcc\xea\xe7\x68\xcb\x00\xcd\x46\x0c\xc5\xc7\xad\xa2\x0d\x3f\xce\x21\x6d\x4e\x0e\x6a\x3b\x5c\xec\xcb\x2c\x31\x2c\xde\xa7\x24\xb5\xcc\x8b\xee\x42\x5e\xc0\x22\x20\x36\xb8\x5b\x54\x12\x73\x64\x25\x9a\x28\xa6\xfe\x24\xbf\x6c\xfa\x42\x57\x62\x6b\x01\x96\xcb\x4a\xd8\xe6\xe1\x21\x7a\xd4\xcd\xd0\x0f\x51\x46\x81\x39\x64\x15\x7c\xeb\xe2\x41\x8c\xd3\xc5\x80\x85\xce\xef\xb7\x58\xdc\xa0\xf8\xb8\x70\x34\x44\xda\xc4\x3d\xa3\x61\x11\xcb\xfa\x7a\x60\xf9\xad\x96\x5c\x5e\xac\xfa\x9a\x31\x7d\xd5\x37\xd8\x69\x74\x03\x49\xee\x81\x3a\xf9\x6d\xdb\x38\x44\xf4\xd9\x60\xad\x11\x69\xb3\x6d\x3e\x08\xfe\x16\xb4\x35\xf3\x6a\xbb\xba\x46\xcb\x3a\xd3\xaf\x71\x92\x27\x20\xc8\x5b\x90\xad\xa8\x0f\xa3\x4f\xc4\x52\x82\x66\x66\x03\x34\x8b\xf5\x27\xc9\x25\xd0\x88\xd7\x95\xad\x68\x90\xd8\x29\x63\x01\x9c\xfe\x16\xbc\xdd\x66\x7b\xf4\x85\xbb\xed\x11\xfd\x9a\x7d\x12\x97\x0e\xc2\xd3\x3e\x8e\x87\x31\x54\x38\x5d\x2e\x4a\x03\xf7\xb6\xb9\x0e\x28\x73\xb1\xd2\x66\x03\x03\xd7\x9c\x17\x10\x1e\xc2\xd1\x64\x13\x70\xbb\xfb\x5b\x41\xc5\x6b\xdf\x1b\x86\x1c\xbc\x31\xb2\x35\x89\x34\x6d\x48\x68\x52\x1d\x27\x21\x68\xc8\x28\x95\x0d\xf0\x6d\x71\x2e\xa6\xc1\x63\xaf\x1b\x01\x07\x51\xb8\x67\xeb\x46\xd9\xb0\x8c\x02\xfa\x6b\xa3\xa4\x41\xff\x70\x54\xe0\xdb\xb2\xc9\x51\x0d\xeb\xe1\x4e\xe0\x2a\xf0\x7a\x69\x58\xc6\xb3\x85\x7e\xca\x8c\xd9\x6c\xf7\xdd\x7a\x22\xeb\x3a\x5f\x60\x14\xdf\x5a\x85\xe7\xcd\x32\xa9\x19\x3b\xdf\x02\x6f\x47\x90\xcd\x6c\x46\x9f\x71\x5e\x9f\x21\x87\xfa\xc1\x3a\xbb\xfe\x10\x12\xa0\x43\xd9\x70\xc1\xc2\x4a\x98\x0d\x42\x82\xbb\x60\x36\x93\x95\x40\x84\x9a\x96\x6e\xe7\x88\x27\xcd\xf0\x3c\x90\x84\x28\x1c\xcf\xa1\x3a\x88\xdf\x1e\x1a\xe1\x98\xd7\xa1\x04\x62\xbd\xd6\x73\x7e\x8b\xdb\x15\xfa\xad\x6c\x87\x0c\x05\x6d\xc0\xcf\x49\x13\xf0\xb0\xe9\xfd\x2b\xc3\x45\xf1\xd0\xb5\xd3\x88\xbb\xcc\x0b\x40\xbe\x84\xaa\x61\x8c\x01\xed\x90\x0d\xdd\xb0\x92\xcc\xe7\x61\xe3\x9a\x63\xc1\x44\x57\x9d\x78\xd2\x04\xd6\xed\xc4\x93\xa6\x8e\xf2\x4b\xce\x0c\x37\x9b\x44\x3f\x91\xed\x16\x10\x48\x59\x99\xdb\xcb\x6a\x68\x1a\x17\x66\x11\x95\x54\x8c\xc2\xe5\x26\x14\x2b\x48\xd6\x10\x58\xd9\xb2\x11\x8e\xa6\xb1\x51\xdd\xb0\x33\x10\x21\x5c\x68\xaa\xec\x65\xdf\x59\x60\x2e\x6b\xdf\x0d\xbd\x5c\x29\xe3\x38\xce\x44\x3b\xa2\x07\x3a\x80\xec\xbb\x0a\x62\xeb\x0d\x31\x44\x3f\x45\x57\x93\x49\xd9\xe8\x12\xb4\x21\x69\x08\x20\xc3\xec\xc5\xb0\x3f\xb6\xc1\xd2\x64\x9f\x5e\x6e\x38\x9b\xae\xe3\x2f\x5c\x29\x09\x20\x02\x7c\x5b\x76\x32\x5e\x77\x36\xa1\x57\xa2\x5d\xc0\x15\xe1\xa2\xd3\xf0\x3b\x4b\x5d\x74\x88\xe7\x94\x5d\x3f\x47\xe7\xf5\xc5\x94\x67\x3c\x88\xcf\xf8\x3f\x26\x6e\x36\x81\x7f\x68\xe2\x66\x13\xe8\xd2\x92\x84\x11\xad\x40\x44\x3b\xf8\xb9\x69\xfb\x2e\x21\xb4\x0d\xd0\x89\x69\x1b\xc2\x66\x3b\x2f\x53\x85\x71\x18\x71\xc5\xc9\x70\x4d\x08\x78\x07\xee\x27\x71\xc5\x19\x60\x83\xb2\x07\xc4\x86\xbd\xeb\xba\xa8\x41\x5c\xbb\x19\x84\x8a\x65\x23\xa6\xd2\x1e\x0b\x2c\x49\x7d\x13\xf7\x9b\x86\xa2\x3c\x7b\x1a\x66\xc7\x7a\x80\xa9\xf6\xb9\x5e\xfa\x0a\xe0\x36\x71\xb9\x09\xfc\x04\xd3\xe4\x14\x38\x22\x67\x1f\x66\x31\xb7\x3d\xc6\x89\x62\x59\xf5\x05\xfd\x13\x4b\x0f\x9d\x4d\x92\x7f\xa2\xab\x83\xc1\x85\xa6\x76\xf7\x9a\x58\x7a\xd3\x33\xf6\xf9\x08\x33\x66\x9c\xec\xbb\xe3\x3c\xc9\x28\xc5\x23\xd0\xf1\x1d\x6e\xd3\x36\x18\x4e\x20\xf0\xb8\xd0\x04\x50\x82\xc4\x85\xa6\x81\x2f\x4c\xbc\x64\x82\x10\x43\xd9\x4f\x71\x90\xd4\x7f\x8f\x3c\x63\x13\xcf\xd7\xad\xc7\x4f\x96\x0b\xdd\x8d\x14\xe3\xbe\x20\x52\x0d\xe7\x7e\x6b\x04\xe2\x5b\x37\x5e\x20\xf6\x89\x21\xa7\xda\x0f\x0f\x7e\xb8\xef\xf8\x57\x62\x90\xc8\xfe\x10\x8c\xa1\xd0\x3f\x00\xd7\xe2\xfe\xbe\xd4\x3b\xf7\xd7\xfe\x6d\x43\xc0\x4a\x1e\x8a\x8e\xe3\x3e\xba\xea\x8c\x8d\x87\x6b\xb3\x8c\x3b\x16\x77\x30\xb4\x6c\x72\x07\xf1\x44\x09\x00\xd2\x89\x27\x4a\xe2\x7b\x9b\x01\xac\x86\x20\xad\x19\x62\x55\x77\xcb\x62\xce\x92\x32\x77\x90\xb3\x8a\x07\x49\x43\xaf\x9c\x78\x8d\x34\x8c\x85\x19\x0d\x11\x9b\xf1\x07\xae\x68\x44\xc4\xcd\x80\x5b\x05\xb3\x98\x41\x7a\xbc\xad\xfc\x52\x67\x16\x60\x6b\xb0\x74\xa4\xee\x22\xb8\xf4\xa4\xee\x1f\x60\x4a\x32\x90\xe9\x89\x4b\x9e\x21\x8b\x0b\x31\x0b\x2c\x17\x44\x22\x48\xdc\x39\x6a\x3a\x21\x50\xdb\x44\x25\xcd\x40\xb1\xab\xde\x05\xd7\x8e\x70\x13\xc2\xc3\x0e\x47\x82\x9b\x47\xaa\x53\xc1\x9d\xa3\xca\xf9\xe1\xce\x51\x93\x0d\x09\x12\x34\x78\x59\x4d\xea\x01\x76\x2d\xe3\x04\x94\x68\x3f\xa7\x56\x0f\xda\x10\xcd\x15\x65\x6b\x86\x80\x3d\xc4\x34\xdc\x2a\x3a\x61\x6d\x32\x48\xd6\xe0\x0b\x41\x12\x90\xc0\xc4\x9d\x61\xa4\x56\x88\x13\x2e\x16\x15\x0f\x89\x34\xf1\x87\x5c\x08\x2e\x16\xad\xb8\xf9\x04\x19\xec\x6e\x88\xe9\xe8\x78\x59\xe3\xf1\x45\x64\xfc\x8f\x97\x89\xf6\x8f\x84\x8a\x8d\x22\x22\xab\x44\x37\x30\xbf\xe3\xbe\x95\x78\x5a\x34\x2c\x74\x89\x77\x45\xa8\x3f\xf8\x3c\x2a\x38\xec\x7a\x4e\x7c\xeb\xa6\x33\x3a\xf5\x29\x07\xc9\x01\x24\xb1\x48\x53\x27\x87\xb7\x44\x12\xda\x28\xf1\x96\x68\x80\x12\xd3\x24\x23\x84\x4c\xce\x44\x27\xaa\x2e\x27\x31\x5a\x28\x86\x64\x91\x6b\x5f\x73\xcf\x6a\x0a\x34\xda\x54\xbd\x1f\xf8\x6d\xf5\x15\xe7\xbb\x84\x70\x01\xce\x93\x24\x10\x49\x72\x24\x24\xc9\x41\xd2\x07\x21\x21\xcc\x44\xca\x48\x92\x80\x74\xe2\xde\x65\xa2\xfb\x24\x39\x4e\x92\x04\xa4\xe1\x3a\x95\x89\x1e\x14\x7f\xc3\xcc\x44\xb1\xce\x39\xc4\x33\xa0\x92\x7b\x34\xf1\x0c\x88\xcd\x3e\x87\x84\x7f\xad\x73\xe2\x9f\x98\x88\x42\x09\x07\xa3\xce\x2f\x0f\xf3\x63\xf2\x5b\xa2\x10\x13\x75\x36\xf3\x20\x1f\x2b\x84\x01\x44\x7f\x05\xa7\x95\x20\xfa\x1b\xf0\x90\x4c\xc3\xb1\xdb\x0f\x58\xab\x70\x6d\xd7\x39\xac\x24\xac\xce\x5c\xa2\x74\x16\xd7\x4d\xb8\x13\x0f\x72\x7e\x49\x79\x58\xb7\x47\x97\x30\xc6\x09\x64\x43\x2e\x3c\x91\x3a\xe6\xd7\x06\xe4\x3e\x67\x2c\x1f\xad\x96\xb6\xc1\xf7\xb6\x5a\x86\xc3\xb6\x7f\xac\xcc\xe0\xea\x92\x3c\x1f\x9d\x80\xa4\x29\xfa\x1e\x8b\xe7\xba\x4d\xf4\xbf\x53\x46\x0c\xe7\x2c\x91\xab\x23\xc9\x3f\x91\x03\xdf\x5b\xcf\xd5\xc0\xf8\xd4\xfb\xa4\x8c\x81\x84\x33\x36\x1a\x60\x5d\xee\x23\xf9\x36\xba\x3a\xc2\x81\x3e\x5b\x42\x3b\x02\x62\x06\x6d\x19\xfa\xb4\x42\xf0\x46\xd8\x9e\x32\x51\x36\x08\x6d\x94\x82\xdb\xd5\xe1\x0d\x1e\xc3\xac\xbf\x8a\x34\x9b\x03\xbc\x11\xfe\x59\x39\x00\x70\xaa\xf3\x18\xbe\x94\xb0\x88\xc3\x50\x36\x2c\xde\x30\x99\x2d\x22\xd5\x38\xb8\xa0\xd6\x7f\x6c\x2a\xbf\x25\x22\x80\x0a\xfa\x71\xba\x18\x2c\x00\x4a\x43\x12\xf9\x26\xc8\xf4\x06\x28\x31\x07\x98\x1e\x5f\x77\x90\xe9\xa9\x82\x9b\xa4\x18\x15\x27\xdd\x1c\x28\x0d\x55\xdc\x83\x22\x6f\xe0\xdb\x92\x04\x16\x55\x02\x4c\x02\x8b\xa6\x48\x35\x5e\x52\x7f\x41\x18\x48\x5a\xd1\xd4\xcd\xcc\x0d\xd7\x1d\xc6\xf9\xa1\xc5\x99\x3b\xc9\x29\xba\x46\x02\x92\x4a\x34\x5c\x3b\x92\xa4\x12\x8d\xf4\xfa\x39\xf5\xea\x87\x20\x4d\xc4\x28\xc2\x0c\x27\xc9\x23\x3a\xd1\x5c\x73\xa2\x63\x23\xa0\x64\xce\xe6\x86\xd0\x5e\xbf\x45\xfb\xe9\x8a\x5a\x8d\x32\xd1\x53\x79\x1d\x41\x91\x07\x11\x2b\x72\x9a\x4d\x1c\x1d\xcf\x34\x59\x2b\x2f\xdc\x84\x1b\xf3\x25\x9b\x1e\x16\x88\xd0\x34\xdd\x17\x6b\x08\xba\xbc\x13\x2c\x2f\x27\xc0\xce\xca\x05\x05\x5d\x9e\x8a\xba\x20\xca\x03\xb7\xb4\x9c\x46\xa3\x70\x0c\x70\x57\x58\x30\x73\x0e\x7d\x4b\x69\x0f\x8c\x45\x5d\xe3\xfc\xf4\x25\x96\xd1\x9f\x71\x81\x26\x5c\x94\x5c\xce\x3c\x58\x4f\xc7\xff\xe9\xde\x98\x3b\xf1\xf3\x88\x1b\x97\xa0\xc8\x9b\xfa\xc5\x69\x44\x62\xe7\x88\x91\x43\x71\x86\x5c\x0e\x41\xda\xb6\x9c\x24\x3d\x26\x54\x4e\x9a\xcb\x81\xe8\xc4\x39\x79\xc4\xaa\xdf\x35\x0a\x31\x0f\x08\x08\xf4\x5e\x1c\xdb\x45\x80\x3f\xd7\xc1\xec\x55\xee\xc5\x25\xdc\x80\x7a\x33\x94\x3b\xe6\x5b\x03\x0f\x73\xbc\x15\xab\xe9\xff\x16\x03\xc7\x78\x50\x4c\xab\x33\x9b\x66\x03\xe3\x52\x4e\x75\xcf\x5c\xee\x89\xee\x99\x50\xf1\x39\x51\x7d\x6c\x9e\x1f\xf3\x34\xb0\x8f\xc7\x06\x90\x98\xb1\x1d\x1b\x50\x9d\x69\x3d\x39\x36\x20\xe4\xc7\x06\xe1\xe7\x7c\x1e\xe4\x48\xc5\xaa\x98\xc7\x6e\x8e\xd1\x46\x19\x3d\xee\x6e\x3d\xe7\x0d\xa2\x72\x60\xe4\x53\x1f\x6c\x2e\x07\xb9\x76\xc0\xea\xa9\x3e\x92\x5c\x0e\x31\xac\xff\x54\x10\x6b\xbe\x87\x61\xbc\x39\xdb\xe4\x72\x08\x25\x87\x03\x03\x9e\x44\xe8\x80\xeb\x52\x15\x40\x8e\x87\x0a\xe6\x2c\x01\xae\x57\xfc\xb8\xf3\xa8\xba\x7b\xd1\x7f\x33\xd3\x17\xdf\x6d\x3e\x56\xcc\x9d\x68\x2c\xea\xa7\x0f\x93\x18\x73\x37\x0f\x8c\x34\x8b\x73\xfd\x05\x31\x3b\xba\x7a\x1d\x7e\x24\x92\x1d\x91\xe7\x30\xe3\x50\xb5\x5e\x25\xa0\xf5\x86\x13\x61\x20\x24\x2c\x50\x46\x3f\x70\xc6\x95\x2b\x3a\x52\x25\x20\x13\x25\x7a\x2d\xa0\xcd\x3c\x10\x49\xd2\x6f\x61\x3d\xf4\xd5\x3f\xc0\x8d\xe1\x0b\x96\xc7\xd0\x77\x8f\x09\x69\x7e\xe7\x75\x3c\x86\xc8\x7d\xc6\x80\xa5\x06\x74\x7c\x1e\x70\x6c\xbb\x9b\x80\x7b\xc6\x70\x33\x0d\xe1\xe2\xa2\xa2\x3f\x90\x90\x1c\x5f\xdc\x7f\xfa\x39\x34\x4e\xf0\x5d\xe0\x24\x5a\xc1\x48\x6c\x91\xea\xe4\x0e\x53\xf6\x43\x20\x0f\x83\xee\x79\xe8\x2e\xe3\x54\xf1\x5d\x71\x60\xd6\xe3\x64\xff\x1d\x8a\xdb\x8c\x4c\x96\x81\x1b\x38\x9e\x5b\x7d\x06\xf5\x8f\x8a\x60\xd6\x87\x57\x19\x88\x44\x1e\x00\x29\xc1\xa2\xe5\xf1\x80\xec\x9e\xb6\x37\xd5\x9f\x6d\x5e\x5e\x68\xca\x2f\x71\xda\x20\x6c\xc7\xab\x33\xb7\x65\x38\x57\x0f\xec\x8b\xfe\x92\x83\x73\xea\x1c\x0f\x81\x39\x8d\x59\x5f\x2c\xe3\xd7\x99\x96\x09\x8c\xc8\x85\x3e\xf1\xd8\x68\x10\xb0\x53\x98\x09\x73\x39\xcd\x01\xca\x7e\x9d\x88\xed\xb8\x84\xe5\x59\xb0\x80\x73\xc0\x4f\xbc\x34\x54\x3b\x80\xd6\xcf\x40\xf4\x3e\x9b\x1e\x15\xf4\x69\x66\xee\x6a\x3d\xd9\xab\xe0\xec\x4f\xe3\xce\xfb\x2d\x5e\x7d\x9c\xb0\x53\x14\x3f\xc0\xdd\x34\xa9\x87\x06\xa7\x13\xa3\x4b\xeb\xb6\x01\x86\x50\x2d\xcb\x79\xd0\x27\xba\x31\xa0\x2b\x79\x2a\x75\x70\xb6\x4f\xb0\x8f\x24\xe0\x4d\x93\x6e\xc8\x7d\x9e\x9c\x55\x12\xee\x24\x39\x33\xaa\xf0\x01\x72\x63\x44\x38\xfe\x01\x34\x86\x47\xf5\x9c\xfa\xd5\xd2\x27\x00\x63\x0d\x0f\xe4\xc0\xe8\x1a\x81\xc8\x75\x91\xaa\x5f\x4e\x30\x55\xe1\x98\x09\x4b\x3f\x1c\x27\x51\x94\xc3\xf5\xc4\xaa\x58\x5d\x87\xd3\x4c\x65\xd6\xa3\xe2\x70\x4d\x2e\x93\x12\x53\x2f\x48\x98\xc7\xff\xd4\xf7\x73\xb7\x4d\xd0\xa7\xf5\x1a\xb1\x58\x07\xe0\x51\x4a\x1a\x20\xee\xbb\x06\x92\x93\x50\xf4\x4a\x14\xe4\x7e\x68\xd5\x7e\x30\xcc\x10\x5a\x2a\xcd\xa9\x40\xc6\xad\xbc\x70\x21\x53\x8d\x73\x61\x95\x96\xf0\x5f\xf8\x57\xaa\x9e\xba\x8a\x92\x18\xbf\xc5\xa0\x82\x1f\x6b\x5e\xa8\x80\xe4\x80\x2f\xfc\x8e\x71\xb5\x4a\xf3\x19\xb4\xf1\x4b\x9d\x19\xc9\x0e\xfa\x6e\x67\x00\xf3\x64\x71\x2f\x0e\x14\x61\x61\xf2\x92\x4a\xb2\x78\x26\x26\x20\x04\x75\x9a\x8c\x60\xb7\xcd\x07\x88\x65\x12\x3a\x10\xc3\x61\x80\x52\xef\x00\x4d\xf3\x02\xbc\x4a\x7c\xb2\x14\x69\x4e\x60\xc7\xfc\x10\xe5\x1c\xf6\xcb\xa4\x27\x6c\xf8\x65\x1c\xb5\xaf\x1e\x3d\x8a\xdf\x25\x5e\x94\x96\xa3\x0b\x6b\x88\x26\xdf\x4b\xf7\x0c\xc4\x61\x73\x0f\xc8\x01\x5c\xe8\x4e\x84\x21\x5c\xea\x4e\xdc\x04\x95\x95\x9b\xf5\x70\x1b\xe8\x48\x40\x7f\x2f\x66\x7b\x95\x6f\x75\x45\x96\x45\xe5\xf3\x2d\x5f\x65\x2e\x04\xb9\x07\x2a\xee\x58\x79\x21\x36\x12\xa4\x32\xc9\x31\x50\x89\xb0\x90\x17\x16\x5e\xe2\xe9\xe7\x4d\x28\x1e\xf5\x0d\xf7\x06\x4a\x1a\x76\xfd\x26\xe9\x06\x91\x23\xf2\x36\xc3\x0f\x1c\xed\xbd\xf1\x22\xa2\x3f\x23\x3f\xc1\x50\x51\x7b\x23\x36\xfa\x98\x98\xab\x80\xf0\x4a\x79\x63\x1d\x76\x5f\xc8\x4f\xd0\x5d\x67\x11\xdf\xc4\xf4\xca\x1b\xdd\x24\x19\x84\xf2\xf6\x15\x0f\xdb\x9b\x85\x3a\x28\x63\x3c\x80\xa8\xdf\xc5\x43\x4d\xfb\x62\x74\x15\xeb\xb5\x9c\x5a\x46\x49\xcd\x7a\xde\xc5\xf3\x43\x3f\x38\xd3\xcb\xbd\xdd\x05\xce\x8f\xcb\x74\x63\x6c\x50\x77\x75\x7f\xfa\x48\xfa\xc1\x12\x0d\xe2\x3e\x6f\xdd\xd5\xe0\x60\x6e\x43\x65\x3b\x06\x02\x89\x0a\x7b\xb9\x31\x1e\xe4\x57\x6e\xec\x0b\x73\x24\x64\x10\x8e\xfe\x79\xc3\x01\x68\xb0\x21\xa7\x42\xd5\x98\x74\x77\xd5\x1a\x6b\x1f\x6f\xac\xc6\xd5\xbd\x30\x3c\xb6\xe3\x41\xd4\x55\x4c\xbe\x51\xfa\xab\x97\x05\x10\x1e\x72\x21\xf7\x47\x08\xa9\x4f\x70\x63\xb6\xc7\xb2\x5c\xdc\x8b\xe4\xec\x41\x80\x6f\xa2\x6f\x7c\x63\x4b\x83\x12\x5a\x56\x44\x65\x4d\xe4\x80\x11\x69\x6f\x38\x60\xbc\x25\x12\x20\x77\xc5\x8b\x22\x6f\x12\xfd\x28\x4d\x91\xd7\xa1\x49\xe4\xcc\xeb\x80\x6f\x69\xde\x8a\xcf\x3c\xc8\x37\x04\x12\x44\x7f\xde\xf8\xfc\x76\xcf\x0c\x16\xc3\xb4\xff\xd3\x30\x5c\x7c\xf7\xd4\x89\xdc\x7a\x60\x56\xee\x97\x58\x52\x1e\xed\x5b\x7f\x4c\x88\x1c\x39\x21\x42\x64\xc2\x7d\x9a\xac\xd8\xfe\x51\xbf\x70\xbf\x00\x84\xa7\x16\xf0\x5b\x2e\xd9\xfd\x25\x3a\x4f\xf1\x5e\x10\x41\xa3\x3a\xc7\xdb\x04\xce\xbf\x14\x33\x41\x88\x77\x2f\x9f\xc9\x26\x70\xc5\x49\xd0\xe2\x4d\x22\x74\x63\x0c\x28\x0e\x1c\xe4\xb8\x9c\xd9\xfd\x88\x2f\xb1\x1e\x11\x06\x0a\x7e\x3f\x9a\x58\xfd\xed\xc5\x24\xac\xc7\x64\x0d\x71\x22\x79\x44\xd3\xca\x29\xfa\x5b\x3d\xd0\xb3\xc1\xcd\xb0\xa8\x0f\x79\x39\x71\x2b\xca\x47\x23\x01\x9b\x63\xd2\x87\xc1\xa2\x92\xf4\x21\xe5\x9c\x1e\xb8\x07\x5f\x35\x51\xe1\xc4\x45\x4b\x90\xe0\x81\x67\x43\x82\x04\x4f\xf5\x2b\xcf\x67\xe9\xab\x94\x11\x39\x79\x39\x40\x76\x77\xcd\xe3\x8f\x91\x2c\x6c\x8f\xd2\x5f\x3d\x1f\x48\xed\x24\x96\x7a\x82\xd4\x0e\x1c\xee\xf3\x69\x18\x3c\x1c\x3f\xe1\xb1\x71\xad\xc9\xa7\xe9\xbb\x17\x94\x11\xd5\xe1\x38\x1f\x14\x9d\x20\xeb\xf3\xe9\xea\xc6\x2c\x23\x6e\xc0\x55\x88\xce\x26\xea\x6c\x92\x24\xa2\x0b\x61\x78\x4c\x6e\x32\xac\xd7\x74\xcf\xd8\x42\x22\x6a\x99\x57\xdf\x7a\xf4\x9d\x78\x0f\xe4\x63\x1c\x79\xd7\x3c\x51\x0a\xb3\x77\xcf\xf0\x65\xa5\x4f\xe2\x63\x75\x7f\x0b\xe7\x11\xce\x1d\x47\x7c\xc5\x25\x10\xdc\x9d\x88\xaf\xf9\x90\x50\x5a\x7c\xd2\x33\xd1\x9b\x72\x06\x44\x76\x6b\xe5\x7c\x85\xc9\x60\x50\x01\xf4\x9b\xe2\xf9\x8c\xe9\xaf\x6e\xe6\x55\x29\xcc\x7c\x5f\x39\xb0\x62\x19\xfd\x1f\x7b\xfd\x6a\xd9\xe4\x5c\xbd\x66\x5e\xb7\x7d\x18\x48\xb1\x51\x06\x17\x05\xc7\x0c\x58\xb7\x8b\xb1\x7b\x85\xae\x4c\xeb\x0d\x36\x60\xbd\xd1\x3a\x82\x32\x21\x83\xfc\x2e\x01\x09\x14\x21\x01\xe8\x36\x02\x09\x24\x71\xf3\xbb\x1c\x18\xb1\xf2\x2b\xa0\xe5\x04\xac\xdb\xc8\x5a\x96\x00\x74\x2b\xd9\xdc\xf3\x9d\x26\x85\xa1\x9f\x89\x8e\x13\xc6\x01\x80\x6e\x05\x58\x9e\xc4\xbe\xef\xe2\x2f\x89\x7d\x1f\xdf\xba\x2d\x62\x33\xe4\xec\x5f\x88\x8a\xcc\x05\xa0\xdc\xaa\x71\x8e\x30\xf6\x41\xd4\xd6\x7c\xbf\xb8\x7d\xfc\x16\xe3\x04\x61\xbf\xf3\xfd\x74\xc3\xcc\x8b\x70\x5e\x0d\xc2\xf6\x82\x03\xf3\x61\x79\xe1\xcc\x00\x90\xe7\x8b\x8b\x63\x75\x6c\x1a\x2a\x60\x16\x04\xe8\x86\xfb\x68\xa8\xfb\x62\x59\x95\x14\xbf\x45\xac\x96\xd3\x02\x94\x1b\xbb\x63\xc3\x05\x8b\x70\x5e\xf9\xbe\xe4\x48\x75\xfc\xaf\xe3\xd9\x7f\xf7\xf7\x63\x33\xa8\x40\x6c\x94\xf1\x4c\xda\x7f\xe5\x9b\x39\x36\x20\x06\xc4\xe5\x1a\xa0\x77\x83\xa8\xa1\x43\xf4\x2e\x11\x0a\x06\xe8\xdd\x8a\x2f\xe4\xd8\x00\x3d\xe2\xb6\x31\x36\x39\x80\x75\x29\x07\x88\xdd\x8a\x97\xfe\xd8\x08\xdf\x01\x2c\x62\x80\xde\x0d\x30\x6a\x63\x43\xf4\xc0\xfd\x69\x2d\x09\xfd\xf0\x5b\x0e\x38\xfa\x8f\xb1\x55\x23\x4c\xda\x06\x71\x6c\x11\x98\xb1\x19\x65\xc3\xef\x42\x18\xd0\xbd\x8d\x8d\xcc\xd3\x28\x25\xc7\x86\xd5\x83\xe8\x18\x03\x60\x6d\xc7\x71\x7c\x6c\x5d\xe0\x2b\x63\x00\xc9\x0e\x24\x61\x6c\x9a\xcd\x93\x6f\xa5\xc1\x28\x19\x8f\xce\xc1\xc3\x32\x30\x8a\xc9\x3a\xa4\x7a\x02\xfa\x24\xcc\x36\xfe\x83\x63\xc3\xe4\xce\xa5\x1f\x1b\x0a\x68\x8c\x1f\x63\xc3\xe0\xd1\x5c\x37\xdc\xae\xc0\x78\x8d\x6d\x10\x26\x65\x71\x00\x63\xd3\xd2\xb7\x5b\x36\xc1\x32\xe3\xff\x92\x4a\x58\x4f\x2c\xfe\x9d\xf1\xe3\x0b\x09\x32\x7a\x10\x1f\x3f\xc3\x75\x46\x54\x01\x6c\x39\x00\xe8\x56\x62\x59\x8d\x8d\x17\x1a\x31\x7f\x6c\x28\xbb\xc1\xb4\x8d\xcd\xf0\xdb\xee\xcb\x41\xc0\x00\xe7\x7e\xe0\x40\x1f\xf4\xcf\xcb\x8d\xe3\xfe\x20\x6e\x7e\x54\xdb\xf0\x72\xa3\xdb\x1b\x1b\x06\x18\xcc\xe9\x63\x33\x6d\xde\xa4\x0d\x38\xb3\xe1\x77\x8d\x0c\xec\xba\xe1\xc9\xd1\x6c\x8f\xab\x15\x8f\xc6\xd8\x6e\xf4\x82\x95\x3e\xc9\xaa\xde\x3d\xc8\xf8\x36\x0e\xd7\xf0\xd1\xc3\x80\xbd\x7b\xd0\x05\x7a\x36\x00\xf1\x82\xb1\x1b\x1b\x8f\x24\xc0\xce\xb1\xbd\x80\x99\x77\xd6\x93\x98\x76\xb8\xe5\x8c\x7d\x73\x4d\x82\x32\x88\xf5\xaf\x8c\x87\xc7\xba\x7c\x63\xdf\x70\x58\x5f\x1c\xe7\xd8\x37\x8c\x1c\x9c\xc9\x9d\xf8\x76\x44\xbb\x1d\x3b\x67\x9b\x48\xb3\x03\xd0\x6f\xf5\x2c\x11\x07\xbf\x02\x20\x1f\x7b\x11\x52\x44\xff\x45\x49\xc0\x7a\xb9\x19\x7e\x8b\x5b\x54\x67\xcd\xf7\x6a\x32\x94\x8d\x32\xba\x58\xee\x20\x61\xe9\xfb\xb0\x9f\xa6\x7e\x74\xad\xf3\x8e\x57\x07\x98\xb0\x41\x58\xfa\x40\x89\x3f\x00\xee\x76\x2c\x83\x03\xe0\x6e\xe3\x51\x1d\xbf\x85\x96\xa7\x9c\x12\x0c\xfa\x4f\x80\xd0\x1b\x7d\x12\x9b\x0d\x6b\xe3\xd8\x79\xf4\x88\x41\x38\xf6\x94\xf1\xb1\x0d\x9e\x01\xfe\x96\x80\x0a\x78\xab\x8c\x7d\x11\xfb\x8a\x07\xc9\x00\xd0\xdb\xf0\xaf\x1c\xbb\x51\x69\xd6\xc3\x32\x08\x0f\xdf\x09\xa9\x3e\x76\x1e\xba\x70\x9d\xb1\x56\x13\xec\x72\xec\x66\x0f\x1b\xf4\x83\x67\xc6\x92\x46\x7e\x41\xcc\x76\x30\x25\x80\x4b\xc7\x8e\xe2\x15\xaa\x3d\x76\xd8\x4b\x00\x7b\x83\x78\xf1\x01\xcb\x37\xf6\x53\x37\x15\x26\x84\x12\x96\x14\xf6\x63\x87\x8d\x24\x7e\xd8\xd8\xc1\xa8\x55\x27\x47\x48\x6c\x70\x45\x63\xbf\x8c\x41\x6f\x1b\x74\x66\xc9\x62\x60\x8e\x6e\x6e\xe0\xad\x5b\x0e\xfd\x3f\x8a\x1e\xf4\x63\x7e\xc6\x8d\x6f\x19\x52\xc6\xfe\x35\x06\x70\x90\xf7\x07\xf9\x7b\xe3\x5b\x00\x7d\x41\x91\x8f\x1d\x07\xdc\xe9\x82\x69\xb2\xee\x2c\x12\xe9\xe0\x8b\x1b\x02\x77\xb8\xd9\xbf\x71\xe7\x2b\x7d\x12\x87\x09\x37\x9b\x51\xc8\xf8\x4e\x98\xed\x41\xdc\xf9\x3e\xbf\x7a\x2e\x0d\x1b\x58\x8c\x22\xb1\x5e\xac\x61\xdc\x79\xf4\x37\xc3\xb8\xf3\x84\xb5\x19\xc4\x94\xef\x95\xc3\x5e\x84\x9c\x30\xdf\xb2\x6b\x4d\x4b\xca\x10\xdd\x62\x19\x91\x16\xe2\xfa\xc5\x97\xe7\x50\x00\x2a\x4e\xb0\x44\xa3\x60\xa8\xc0\xf2\x35\xca\x67\xa8\xa0\x7f\xa2\x8d\xa0\x07\x1a\x80\x87\x1b\xba\xb4\x51\x2a\x97\x95\xb5\x2d\xea\xb4\x20\x30\x82\x84\x09\x3d\x3e\x0a\x20\x4f\xb8\xbd\x01\x48\x38\xb0\x66\x0e\x40\xbf\xe9\x43\x57\xb0\x80\x93\x98\x63\x14\xd0\xee\x18\x7b\x06\xf1\xe2\x2b\x3a\xb3\x51\x7c\x34\xec\x33\xd5\x9d\x30\xaf\x0f\xdc\xcb\xbc\x88\x23\x0f\x16\x6a\x14\x43\xd6\xb8\x86\x38\xdc\xc3\x19\x8f\x32\x04\x18\xd3\xff\x50\x9c\xb1\x5e\x3d\x28\x7d\xea\x28\xcf\x3e\x16\x1c\xdf\x09\x31\x3e\x0a\x5c\x51\x75\x7d\x8c\x43\xe6\x77\x51\x5f\x48\xc0\xca\x07\xf7\x60\xdd\xcc\xb5\xca\x19\x28\x64\x82\x27\x58\xe4\x00\x3c\xdc\x77\x7f\xab\x97\x06\x8f\x67\x31\x24\x0e\x77\x47\x50\x31\xc6\x95\x61\x38\x79\x12\xa3\x8c\x82\x25\x14\xeb\xe1\x28\xa7\xc6\x1e\xdb\xf8\xe0\x33\x06\xdc\x9f\x36\xe7\x7e\x6a\x9c\xb0\x1e\x09\xc7\xbd\x36\xa0\xea\x57\x36\xc9\x33\xed\x6f\x0c\x30\xb6\x87\xbb\x9a\x9e\xb1\x5b\xd7\x2c\xbe\x4b\x16\x79\xc0\xa8\xa3\xa8\xdf\xe5\xde\x11\x06\xbe\x02\xfd\x18\xe5\x7b\x4c\xec\x13\xb1\xd7\xf6\x58\xe7\x9b\x6b\xc2\x63\x32\xfc\x16\xc9\xab\x49\x44\x3c\xca\x63\x94\x1c\xd6\x87\x58\x68\x9b\x6b\xfb\x62\x0c\xb0\x7f\xb0\x9b\x01\x4d\xf8\x42\xbf\x2f\x31\x76\xd4\x8d\xe8\xd0\xd0\x96\xba\xe1\xe9\xc2\x43\x54\x81\x74\xad\x7b\xf4\x0b\x62\x56\x01\x7c\x12\xfd\x61\x10\x3b\xbe\xc9\x5d\x55\xb9\x2b\x2e\x56\x35\x8a\x29\x07\x44\xd4\x33\xb1\xcd\x06\x71\xe4\x3b\x3e\x9b\xa3\x56\xc5\x9f\xa0\xcc\xcb\xcd\xe6\xd4\x6a\x2a\xb2\x4e\xd9\xb4\x5e\x0c\x1c\x6c\x16\x78\xa3\x51\xab\xa9\xb3\xe8\x87\xcb\x04\x56\x66\x54\xc3\xb9\x6c\x96\x51\x50\x42\x30\x2a\xae\x29\xdf\x98\xc1\x6c\x91\x09\x7b\xd4\xee\x62\xd3\x3f\x8a\x60\x2c\x8f\xa3\xa6\x01\xf8\x68\xaf\x23\x7b\xb1\x8c\x02\x97\x8d\x32\x46\x7c\xf8\x5b\x5c\x44\xe4\x0c\x40\x3a\x77\x42\xe8\x0c\xd1\xcd\xb8\x09\x0d\x10\xcd\x1d\xf1\x61\x54\xc2\xaa\xec\x6e\x08\x31\xcc\xc0\xc6\x0d\xe3\xbc\x83\x22\x1f\xc4\x79\xef\xdf\x98\x8d\x1c\x61\x1b\x1e\x07\x22\xb5\x8e\x8a\xd2\x16\x30\xea\xa8\x4b\x34\xa8\x5e\x26\x81\xca\xdd\xb1\x01\x32\x04\xf1\x3d\xaa\x99\xaf\x78\x70\xaa\xe9\xee\x5c\x2b\xf2\x19\xc8\x01\xd7\x1b\xff\x56\xb8\x0a\x80\xc4\x1d\x11\x72\xd4\x47\x85\x3b\xbf\xc5\xff\x8e\x6c\x3c\xa3\xbe\x58\x9a\x20\xc0\x95\x2c\x40\x28\xeb\x47\x7d\x7d\x94\x68\x4f\x60\x3e\x09\x2d\x60\xe3\xc0\x3a\x36\x00\x1b\x77\xbc\x04\x06\xa0\xe2\x04\x5e\x31\xda\xa6\x3f\x60\x52\x46\xd4\x62\x5f\x1a\xd1\x1c\x70\x8d\x1b\xc4\x94\xcf\xfe\x95\x09\x53\xc3\x8b\xde\x80\x84\xe0\xd3\x37\x8c\x11\x2f\xf1\x6e\xd5\xf0\x32\x96\xd1\x63\x41\x74\x1b\x79\x0b\x08\xf0\x37\x5a\x33\x76\xd7\x1a\xbf\x20\x5b\xf4\x37\xa3\x69\x1d\xe6\xac\x36\xa0\x49\x58\xed\x47\x13\x12\xd2\xac\x27\x9e\x3e\x84\xbf\x69\xf4\x62\xfd\x1b\xb9\x4a\xe5\xa2\x00\xc4\xf6\xe1\xd8\x8c\x25\xc6\xbd\x30\x9c\xbc\x8f\x61\x23\x10\x24\xfa\xbf\xd1\x26\x2e\x49\xec\x4b\x23\x64\x75\x3a\x47\xc2\x54\x57\xeb\x0f\xf4\x91\x10\x92\x26\x4e\x0e\x4e\xb4\x41\xf0\xa6\x6b\x7b\xc2\xa5\xc1\x38\xb4\x93\xfd\x65\x5f\x00\xa6\xe6\x70\x0d\xb5\xea\x72\x4e\x1a\xfe\x9e\x64\x64\x1f\x84\x8a\x4f\xac\xc6\x03\xf0\x6a\xc7\x73\x62\x34\x92\xd4\xec\xae\x27\xf1\xc6\xba\xfd\x5f\x10\x4e\xfb\xbf\xb5\x0e\xd3\x0f\xea\x29\x89\x16\xa1\xdc\xfb\xee\xdc\x81\x17\xe1\x21\x34\x08\xe5\xde\x7d\xdc\x1a\x30\x22\xef\x14\x18\xd3\x86\x3e\x72\xf4\x5d\x17\xc4\x46\x19\x43\xc5\x57\x86\x61\xd9\x2c\x03\x47\xfa\x35\x67\xd6\x4d\x13\xd5\xfd\x08\xe2\x12\x03\xe9\x82\xe2\x8a\x65\x9c\xb9\x59\x60\x80\xa9\x49\xfc\xfa\x01\xe8\xb4\x93\x1c\x78\x74\x5c\x8c\xf0\xe9\x1b\xc4\x82\x4f\x37\xb6\x23\x36\xa2\xb8\x1f\xc6\x73\x27\xf8\xdd\xe8\xcd\xa8\x0d\xf4\x83\x6e\x09\xbd\xd7\xe8\x1f\xd1\xea\x94\x55\xce\x52\xee\x88\x30\xcd\x32\x98\x27\x88\x8a\xf1\xd9\xc3\x45\x22\x2c\xcf\x1c\xf4\x0f\x22\xdb\x57\x04\x80\x68\x53\x54\x31\x56\x3b\x50\x94\xd1\x07\x78\x2f\xc7\x63\x2c\x75\xc4\x22\x40\x9b\x41\x58\xeb\x01\x68\xb3\x82\xbc\x1e\x1d\x1f\x37\x0f\x3e\x31\xd3\x3b\x4a\xde\xd1\x79\xc5\x77\xd7\xc4\x7c\x7f\xc3\x32\x96\xc1\xdd\x32\xc4\x0c\x71\xde\x18\xe8\xd5\xf1\x83\xaa\xc6\xf1\x7a\x74\x38\x60\x42\x17\x8f\x6e\x60\x3b\xfb\xe7\xa0\x61\xc1\x1c\x80\x30\x9b\x9c\x50\xc7\x4d\x48\x71\xd2\x10\xe6\x1e\x7c\x40\x98\x41\x50\xc8\xd1\xc1\x33\x35\xbf\x8b\xaf\x25\xce\xd9\xa3\x6b\x99\x4a\xcb\xbe\xb2\x7c\x4b\x82\xc7\xc3\xd5\x1f\x0f\x2c\xe3\x7f\x25\x06\xf4\x03\x47\x8b\x1e\x6e\x74\x20\x06\x38\xee\x0f\x42\x92\x57\x1c\xb8\x47\x20\xca\x11\x32\x7c\x10\x9e\xbc\x01\x88\x1d\x86\x27\x07\xfa\x31\x42\x77\x23\x2e\x47\x08\x8d\xe1\x91\x89\x5d\x98\x8f\xf5\x88\x36\xf6\x83\x9a\x42\x8e\x36\xc8\x50\x04\x64\x60\x00\xb6\x4c\xb2\x8f\x8f\xc0\x9f\x17\x5d\xce\x08\x1d\xeb\x19\x7f\xa0\x63\xdb\xbf\x36\xba\xf4\xd0\x67\x17\x9a\x64\x19\x22\xfa\x95\x25\x0c\x8c\x27\xf4\xf7\xa4\x1f\xdc\xc3\x88\x70\x31\x42\x31\x8a\x33\x19\xa8\x02\x14\xbd\xc1\x44\x86\x1c\x79\x00\x5f\x92\x68\xc5\xa1\x71\x82\xf5\x39\x84\x21\xf0\xdb\x4b\xc3\x0c\x6d\xb0\x8c\xa3\x04\x1f\x71\xcb\x14\xd0\x06\x77\x2f\x09\x06\x78\xc7\x18\xb6\xbf\xc5\x96\xf1\x2d\xe0\x21\x00\xb0\x47\x20\x99\x90\x65\x6b\x88\x41\x4c\xee\xd1\x17\xb1\xb9\x59\xd6\x1f\xd3\x32\x52\x10\x1c\xbf\xd1\x9b\xc9\xac\x3f\x12\x51\x9a\xc0\x09\x23\xd9\x0b\x20\x45\x23\x81\x78\x28\x06\x12\xcd\xb8\x02\xb1\x19\x89\xae\x17\x7c\xe4\xc8\xae\xd5\x92\x36\xdd\xbb\xbf\xf6\x25\xe5\xe0\x91\x1c\x92\xd0\xe6\x84\x2a\x1f\x09\x22\x82\x84\x41\x23\x0d\x4f\xce\x39\x4c\xc4\xde\x35\xce\x5f\x10\xb3\x34\x69\x02\xec\x7a\xc2\xba\x63\x96\x1f\xf9\x85\xdd\x58\x0b\x96\x72\x1b\x2e\x86\xee\x4f\xb0\xfd\x89\x45\x83\x7c\x8e\x23\x0d\x6b\xe3\xa0\x1e\x31\x61\x96\x11\xb5\x38\xf8\x80\xfa\x02\x7c\xcf\x48\x92\x71\x80\xdc\x1f\x89\x9f\x9d\x1c\x4f\x8a\xbf\x71\x61\xd8\x04\x12\x6a\x8c\x01\xfe\x06\xb3\xf3\x18\xbb\x2e\x22\xeb\xd0\x0d\xb3\xbb\x70\x99\x86\x11\x28\xb8\xdc\xa3\x4a\x0c\x06\x65\x7c\x2a\xab\xf5\x46\xa6\x58\x73\x21\x22\x6e\xca\x85\x0c\xfc\x2e\x5d\xf8\x81\x7f\x25\x20\xc6\x31\x80\x06\x48\x20\x07\xdc\x9e\xdc\xd8\x30\x80\x23\xdc\xd5\xc0\x9f\x4e\xc2\x36\x3e\xbf\x4b\xfa\x04\x14\x5a\xd9\x10\x01\x84\xa0\xd7\xc7\x80\x1b\xf8\xda\x90\x38\x83\xa8\x16\x63\x98\xef\xd2\xef\x7e\x98\x30\xc6\xb9\x38\x83\x8e\xc3\xee\x18\x28\xb2\xc9\x2d\x38\x06\x31\xd2\x48\x56\x32\x06\x1c\x67\x75\x4d\x86\xe2\x06\x6d\xd8\x5f\xb2\x2a\x8d\x81\x3e\xa3\xb9\x26\x66\x3a\x67\x2f\xc0\x17\xe6\xd7\xa7\x09\x5d\x1d\x03\xca\x7d\xb9\x19\xf0\x85\x49\x1e\x82\x31\xa6\xd1\x46\xf8\x2d\x8e\xf2\x58\xd9\xc6\x38\x55\x76\xf3\xdb\x4b\xa3\x0b\x6d\xbe\x48\x10\x96\x89\x4e\xe2\x5e\xe8\xb2\xd2\x2c\x77\xb8\x2b\xc6\x09\xf2\x7d\xba\x2f\xe4\x97\xc4\x12\x3d\x06\xc4\xf8\x1b\x27\x8e\xef\xc5\xf3\x80\x51\x4a\x0e\x1b\x0c\x62\x07\xeb\x36\x86\x39\x25\xed\x07\xbf\x4e\xb2\x90\x8d\xa1\xbb\x1a\x8f\xf6\x84\xb8\x82\x70\x1f\x73\xc7\x2a\xcd\x23\x66\x94\xda\x0e\x61\x98\xe4\x6f\xc0\xb0\x31\x26\x97\x9b\x30\xe7\x63\xea\x28\xcf\x03\x3e\xf5\xe5\xe4\xee\x80\x53\x4c\xb0\x89\x63\xa2\x0f\x26\x12\xca\x98\x00\x8c\x81\x75\x8c\x59\x7d\x0c\xd7\x5e\x80\x47\xac\xc0\x73\xc6\xc4\x95\x0b\xcb\xfe\x98\x06\x00\x85\xbb\x9a\x38\xb2\xfb\xc0\x4e\xdd\xa5\x10\xc9\x27\xa2\x3a\x46\x94\x31\xcd\x52\xe5\x6f\x39\x03\x38\xee\x8f\x39\xf4\x2c\x61\x0c\xe8\x6b\x81\x59\x8d\x39\xc4\xa5\xf1\xdb\x81\x9e\x0f\x69\x0a\xec\x60\x73\xaf\x27\x31\xed\xf0\xc1\x1c\xd3\x80\x8f\x10\xb3\x89\x5e\x16\x27\xf5\x31\x0f\x01\xcc\xcc\xe5\x40\x3f\xed\x77\xb1\x90\xaa\x7e\x99\xa7\x3a\x45\xeb\x7d\x90\x69\x4f\xf4\x10\xb9\x5e\xb0\x7d\xb5\xb9\x3e\x8f\x81\x2b\x98\xcb\xab\x11\xe2\x57\xd0\x8c\x31\x09\x89\x83\x9b\xca\x38\x74\x6f\xe0\x65\x22\xa2\x6c\x80\xd4\x1e\x07\x54\x1b\xf7\x9b\x21\x90\x8f\xe8\xa3\x83\x48\xb3\x5d\x59\xf9\x20\xd9\x07\x31\x96\xc6\x01\x18\x55\xa2\x42\xd4\xd9\xc4\xeb\x7e\x1c\xbb\x11\x41\xf9\x16\x00\x3f\x39\x8c\x63\xd7\x42\x44\x3f\x60\x9b\xf6\xaf\x5e\xdd\x80\xbf\x05\x9a\x01\xc1\x20\x02\x6d\x05\xd7\x35\x8e\x62\x60\x3b\xbe\x05\xd8\x15\x88\xc1\x38\x4c\x5b\xcf\xc5\x12\xf8\xa7\x02\xf7\x30\x28\x24\x1b\x0b\x08\xb0\xfe\xd6\x06\xdc\x8f\xdf\xad\xbc\x7c\x5c\x94\x83\x20\x8f\xe0\xb4\xc6\xd1\x7d\x59\x07\x65\xd2\xa7\x71\x81\x0e\x88\x96\x3a\x80\x03\xf0\x2a\x98\xa7\x71\x10\xcc\x11\x18\xc5\x00\xb7\xd7\xc3\xf5\x81\x68\xe1\xe7\x38\x8e\xf0\x80\xd8\x06\x42\x08\x61\x3e\xb0\x42\x7e\xeb\x46\x24\x05\x72\x62\x8e\xc3\xa4\xbb\x1c\xfc\x23\xd5\xc7\x58\x8f\xd7\x02\x07\xea\x48\x2f\xb1\x65\x14\xc1\x7e\x0b\xae\x42\x25\xf8\x41\x30\xc7\xe1\xbc\xc0\x4e\x81\x8d\x1b\x07\xf1\xde\x88\x8e\x31\x88\x82\x1b\x12\x69\xf0\x7c\xbd\xda\xbf\x29\x09\x77\xeb\x15\xf1\x58\x73\x2c\x74\x24\x2b\x19\xc7\x21\xec\x82\x35\xd4\x20\xe1\x3a\xe0\x1b\xa8\xf8\x7c\xc0\xa9\x6c\x69\x3d\x99\x97\xc2\x7a\xdc\x60\x1c\xbf\x9c\xae\xe7\x53\xc0\xad\x6d\xc8\xea\x23\xa7\x78\x9c\x38\xb8\xef\xd6\x83\x7f\x72\x0d\x4f\x8c\x55\x5f\x3d\xba\x4f\xb8\xcf\xe3\x14\x56\xc3\x7c\x09\xd4\x48\xe8\xaa\x01\xbe\xb0\x13\x41\x63\x88\x29\xd4\xd0\x72\x08\xac\xdd\xac\x37\xc8\x81\xbf\x25\xcc\x14\x0f\xf8\x41\x34\x54\xac\x90\xe3\x30\xab\x3d\x17\xdd\xc8\xbd\x1a\x24\x0e\x45\x7e\x88\xd0\x61\xca\x37\xd7\x10\x90\xad\x86\x99\xe3\x31\x9e\x1f\xfd\xa3\x03\x4e\xe7\xfe\xe8\xa5\xc1\x9a\x3c\xc2\x2b\xac\xc7\xfb\xc4\x73\xfb\x92\x7f\xd3\x71\x12\x8b\x1f\xcc\xdf\x38\x88\x2d\x87\x8f\xf0\x38\x5e\x62\xd7\x41\x30\xc0\x20\xf6\xe9\xbd\x00\x3a\xe4\x1d\x3f\x37\x83\x75\x76\xca\x66\x64\x1a\x94\x31\x02\x6d\xd6\xcb\xd9\xef\x94\xb5\xde\xae\x31\x9c\x18\x05\x95\xa6\xce\x1d\x4e\x91\x3b\x42\xb4\xe1\x4e\x76\xf9\x71\xa2\xc2\xd2\x28\x05\xae\xb1\xaa\x27\x3e\x91\x12\x65\x7c\x4e\xe3\xd5\x75\xfb\x44\xdf\x3c\xeb\xaf\x88\x19\x00\xc8\xc0\xbd\x67\x9c\x5f\x62\x0e\x3a\x28\xea\x93\xac\x37\x68\x1a\x13\xad\x38\x58\xb3\x51\xa7\xf9\x00\x2c\x37\x2f\x16\xed\x45\xbb\x23\xce\x10\xae\x78\xe0\x9f\x38\x4e\xf3\x2a\x72\x71\x4f\xac\x8d\xb8\xfd\x8c\xb3\xa3\x88\xe7\xb5\x3e\xbb\x2f\x31\xe5\x50\x47\xc5\x44\x4d\x67\xbf\x5b\x06\x3a\x01\x31\x3b\xf5\x25\xb4\xff\xd4\xf7\x93\xfe\xe1\x54\x88\x80\x30\x3e\xd0\x23\x17\xee\xc4\xf2\x52\xdd\x1c\x4c\xeb\xea\x8d\x4e\x75\x1b\x10\xa4\x53\x50\x2e\x17\xf1\x9c\xa2\xd1\x69\x8f\x25\x91\x48\xb0\xe3\x03\x3d\x32\xce\xcb\x54\x6a\x5f\x19\xab\x0d\x04\x9b\x88\xb8\x39\x39\x5c\x17\x16\x58\xc5\x8a\xab\x49\xbc\x6d\x83\x35\x90\x03\x2e\xb6\x4f\xfd\x96\xd1\x71\x71\x0f\x1b\x44\xc4\x6d\x24\xaa\x18\x97\xc0\x66\x08\x30\x11\x6e\x93\xb0\xca\xe3\xc2\x4a\x05\x3a\x7e\x5c\x69\x78\x72\xfa\x4f\x3d\x15\x68\x0f\xec\x02\x10\xe9\xb8\x10\x91\x80\x63\x0c\xa3\xce\xfa\x68\x5c\x13\x2e\x8d\x75\xb8\xa6\x38\x27\xea\x21\x4e\x64\x04\x1a\xd7\x21\xd7\xc5\x6f\x09\xe3\x4d\xac\xb2\x01\xe6\xaf\xab\xd7\xbc\x20\x42\xea\x93\x2e\x44\x2a\x2d\xad\x17\x2f\xb7\x3a\x33\xa2\xce\x56\x75\x3c\xd7\xa1\x6e\x8f\x71\x02\x66\x0e\xf4\x34\xd7\x29\x51\xa4\x9e\x38\x61\xe0\x08\xc7\x05\x17\x48\x30\x83\x71\x9d\x44\x60\x41\x2c\xbd\x4e\x33\x56\x59\xc6\xef\x32\x6c\x0f\x86\xe9\xab\x97\xa8\x30\x1e\xe0\x0c\xcd\x31\x60\xc4\x92\x4b\xb8\x2e\x33\x59\xb1\x56\x78\x12\x10\xc6\x7b\x10\xa5\xb6\x75\xd7\x04\xeb\x6d\x4b\xdb\x28\x12\x5a\xaf\xbe\xc7\x32\xdc\x30\x04\xf8\x12\x68\xcd\x7d\xb9\x88\xc9\xb7\xd9\x86\xa4\x24\xe5\xab\xd7\x1b\x86\x71\xc2\x95\x16\xcf\x06\x18\x47\x0d\x18\x97\x92\x0f\x22\x9e\xd1\x6b\x55\x5f\x10\xbd\xb6\x7d\x7b\x8d\xc8\xb9\x7f\xed\x81\xc3\x34\xdb\x70\x6e\x3d\x4b\xba\x45\xb9\xb6\x58\x81\xd5\xb1\x81\x8f\xec\xc4\x11\x1c\xd7\x67\x0c\x63\x8e\xaf\x8e\xe3\xeb\xbb\x60\x22\x83\xb0\x4b\x43\x4c\x24\x1e\x18\x03\x1c\x64\x90\x6c\x65\x80\x83\x0c\x8d\x64\xf7\xe6\x7d\xa9\x94\x61\x34\x90\x6a\xee\x5d\x15\x56\x50\x96\xe0\xd1\xbf\xae\x95\x7c\x17\x9c\x5f\x2f\xbf\x8c\x9a\x31\xee\x30\x34\x2f\x83\x12\x87\x34\x2d\xe3\x5d\x0f\xc5\x27\x12\x6c\xc7\xc1\x74\x10\x09\xb6\x81\x21\x1b\x44\x79\x4d\x32\x76\x8f\xdb\xb8\x4a\x70\x48\x37\x31\xbd\x88\x31\x36\x6e\xcc\xaa\x8a\x48\xb7\x49\x50\x79\x1d\x6f\x0e\xa6\x2f\x34\x00\xbc\xae\xb9\x1b\xa0\x5d\x4c\x27\x8d\x77\xbd\x94\xda\x68\xab\x2e\xea\x4d\x84\x0e\x75\x2a\xb7\x51\x39\xe0\x78\x6e\x9d\x71\xd1\xc1\x80\x99\xab\xf8\xfa\x0d\xb0\x71\x11\x8e\x13\x0b\x69\xf3\x5b\x5f\xa2\x04\x7e\xfb\xe8\xc6\xc3\xb7\xc8\x42\xa3\xf2\x17\xac\x5b\xf8\x9a\x3e\x04\x92\x73\xbe\xcf\x8e\xd3\x2d\xdf\x05\xdf\x56\x71\xa1\x19\x8f\x61\x8b\x10\x45\x1f\x9c\xd7\x71\xf6\x1d\x0f\x86\x10\x52\xf3\x8f\x07\xc0\x27\xfe\xb0\x83\xa8\xa1\x41\xdc\xf3\x01\xfe\xac\x2a\xd6\x3d\x10\x3c\xf5\x8b\xcf\x97\x74\xb7\x50\xc6\xf8\xe1\xb7\xba\xa8\xed\xa0\x2c\xee\x87\x3e\x43\x87\x60\xfa\x4c\x15\xbe\xb4\xd7\x33\x83\x3d\x7a\x10\x43\x08\xc5\x33\x9e\xa1\x3e\x8c\x39\xb2\x8f\x38\x1c\x8f\x47\xf7\x36\xf4\x52\x04\xeb\x6c\x42\x39\x08\xd6\xd9\xb5\x4c\x3d\x84\x06\xd2\x32\xf8\x20\x32\x4c\xd7\xe7\x12\xe1\x4e\x7b\xc0\x90\x72\x42\x04\xdc\xac\x24\xce\x18\x0f\x89\x54\x00\xdf\x8e\xe7\x36\xf3\x3a\x73\x31\x76\x9a\xe3\x7c\xb4\x32\xd3\x5e\x29\x62\x5a\x86\x53\x81\x8b\x7a\xd4\x09\x71\x86\x5f\xa0\x46\x80\x45\xc7\x8b\x71\x0b\xec\xe3\x78\xc9\xdc\x85\x2b\xd7\x78\x77\x43\x33\x05\x65\x15\xd0\x96\x51\x40\x73\xf6\xde\x0f\x6a\x34\x28\xe3\xd2\x56\x2d\x13\x75\xb6\xdb\x9e\x70\xce\x9b\xed\xf1\xab\xdd\xac\xc7\xa3\x85\x87\xfd\x25\xb2\x49\xfb\xca\x88\xb4\xac\xdb\x5b\x14\x51\x2d\x1b\xdd\x77\x52\x36\x4f\x25\xf5\xc0\x97\x70\xeb\x1a\x60\xf2\xba\x04\xfe\xad\xc2\x25\x98\x23\xe2\xaa\x7a\xc7\x57\xbc\xa3\xdf\x02\x0c\xaf\x11\xee\x6d\x70\x48\x9c\xc9\xb7\xa1\x4f\x85\x00\xbf\x30\x1d\x42\x21\x5e\x7c\x66\xf7\xaf\xac\xae\x9a\x3e\x0d\x27\xcf\x59\x22\x28\x67\x25\x46\xe0\x20\x28\x67\x6b\x3c\x14\xef\xf4\x3c\xd0\x27\xd9\xab\x92\x7b\x41\xb0\xcb\x26\x37\xff\xa2\x57\xd6\xba\x2d\x96\x4e\xf1\xf3\x35\xd4\xcf\x57\x8f\x41\xd1\xb9\x9b\x03\x17\x69\xc1\xc0\x97\x7b\xfe\x92\x33\x03\x8c\xd7\xc8\xae\x33\x5e\x9d\xb3\xb9\xd0\x1f\xd0\xae\x5b\xaf\x6f\x14\x1f\xbc\xf1\xd7\xab\x96\x51\xa0\x43\xe5\x5f\xcc\xb3\xdf\xe4\x1e\x5f\x20\x06\x82\xd5\x4c\xee\xe4\xfd\x94\x92\xd4\xbf\x70\x42\x61\xd9\x24\x1d\xf4\x69\x58\x1e\x17\x4c\x4b\x19\xdc\xc0\x4b\x9c\x2a\xfc\x1f\x27\x80\xba\xe4\x5b\xd3\x28\x97\xc0\x34\xe6\xb6\xc1\x25\x54\xdb\x48\x90\x0a\x65\x32\xcc\x7c\xbf\x45\xd1\xbc\x44\xe3\xb9\x81\xa0\x87\x23\x99\x44\xbf\x4c\x92\xb0\xcc\xcd\x6c\xcd\xeb\x85\x9e\x44\xc2\x4c\x02\xfc\x4d\x70\x75\xc9\x4b\x36\x89\x8a\x59\xa7\xdf\xda\x61\xb9\x37\xc6\xf3\x5d\x02\xdb\xe8\xfe\x14\x94\x99\xcb\x7a\xbd\xa6\x01\x31\xd1\x97\x4c\x02\x5f\xf6\xfa\xb5\xd7\x57\x71\xa3\xac\xc7\x03\xed\xf5\x9b\x2b\xcc\x05\x00\x30\xd1\x34\xe6\x56\x54\xe0\xd2\xbf\xfa\xc2\xb4\x3d\x00\xe0\x9d\xf1\x0b\xfa\x9d\xd4\xe3\x28\x4c\x8c\xf8\xb9\x55\xad\x6f\xf4\x83\x35\x10\xe0\xeb\xdc\x2a\xa1\x9c\x1c\x27\x97\x03\x5f\xb9\xb9\x61\xb0\xa9\x41\x9f\xe4\xca\x84\xf8\xcd\x0d\xc8\x06\x61\x98\x27\x98\xbf\xc0\x07\x70\x6e\x86\xee\x69\xf4\xc9\x45\x01\xb9\x3f\x37\x2f\xca\xce\x5c\x54\xd6\x17\xc6\xd0\x75\xbf\xa1\x4d\x77\xef\xe8\x5f\x97\xa4\x9d\x7e\xc0\x51\x55\xe7\x4b\x58\x77\xbc\x49\xe6\x06\x37\xdf\x1d\x27\xd1\x43\x8a\xfb\xd2\x5d\x07\xbe\x15\xc6\xbd\xe3\x5b\x3a\xb5\x57\xeb\x51\x59\x38\xce\xf0\xbc\x31\x47\x7c\x57\x87\xf3\x0a\x13\x65\x33\x1e\x60\x26\x44\xd3\x9d\xe0\x11\x83\xa0\x84\x73\x23\x55\x1e\x91\x23\xe6\x66\x16\xf6\xaf\x0d\x20\x58\xf7\x11\x2b\x27\xc8\xf7\x49\x60\xd0\xd6\x5d\xcf\xf4\xe1\xf5\xb7\x84\xe2\xf6\xdc\x0e\xa5\x26\xc6\x86\x9b\x1f\x7e\x8e\x73\x83\xc3\x4e\xcf\x09\x1e\x36\xdf\x7e\xe1\xfe\x07\x88\x77\x8a\x5f\xc4\x03\x66\x6e\x43\x5f\x66\xf6\xe5\x93\x46\x6c\xc3\x5c\x06\x63\xc0\xaf\x96\xb0\x48\x73\x9b\x46\xb1\xa1\x8d\x56\x57\xcf\xc9\xa7\x3b\x67\x9c\x10\xaa\xdd\x75\x3e\x80\xfc\x38\x4e\x19\x16\xf7\x02\xb5\x00\x0f\xe9\x04\xbf\x58\xf1\xe4\x98\x1b\x84\x0a\xd5\xc7\x14\xcb\x88\x95\x76\x6e\x84\x12\x42\x75\x33\x0d\x36\x1a\xee\xfb\x65\x8e\xd7\x5f\x41\x33\xe6\x86\xa9\x7f\x38\x09\x50\xff\x00\xf9\x26\x60\xc5\x3a\xbd\x70\x28\x55\x77\x37\x04\xdf\xc0\xe1\xa6\xbd\x5a\xcd\x58\x30\x13\xed\x2e\x79\x7a\xee\x5f\x06\xa7\xb5\x21\xbb\xe9\xbe\x72\x52\x06\xa0\xc8\x25\x20\xca\x68\x07\x33\x34\x77\x22\xd3\x62\x78\x98\x7b\xd1\x67\x73\xf5\xbf\x57\x94\xd1\x5c\x3e\xa2\x86\x06\x5e\x02\x93\xa8\xa1\x01\x46\x6a\x02\x26\x4c\x9c\xaa\x27\x11\x44\xa3\xdb\x27\xf1\xd0\xb1\x12\x4e\xa3\x89\xba\xc9\x3b\x88\x7b\x14\xac\x73\x0f\xc5\x2e\xbe\x45\x94\x10\x74\x36\x73\x47\xc1\x4a\xda\xb3\x69\x14\x50\x17\x75\x27\x24\x0e\x3a\xb9\xb9\x2b\xc6\xb2\x21\x80\x0c\x3b\x98\xbc\xb9\x13\x8f\x8a\x98\x64\x93\x88\xa0\x89\x78\x38\x77\xc2\xdd\x00\xe2\x9d\xfb\x50\x01\x4d\x9f\xd3\xec\x3d\x3b\x65\x43\xfa\x50\x26\x54\x39\xa1\xa9\xa7\x91\x3f\x25\xb4\xbb\x19\xdc\x1b\xe3\x34\x02\x2d\x97\x80\x88\xa0\x0d\xae\x68\xee\xa6\xfe\xda\xf8\xd6\x09\x76\x6a\x30\xe6\x4b\x5f\x5a\xea\x71\x29\xd9\x8b\xf5\xae\x2d\x63\x36\xe1\xb3\xf3\x05\xfa\x81\xaa\x61\x8a\x0b\x94\xd8\xec\x06\x5b\x4c\xc6\x79\x89\x21\xa3\x4f\x23\x88\x56\xda\xf0\xe8\xe1\x26\x37\x77\x92\x7d\x20\x4a\x4c\x30\x85\x81\x11\x65\xee\x88\x51\xe4\xb2\x9c\x3b\xde\x27\x15\xc2\x00\xbe\x30\x86\x63\x7b\x24\x0c\x8c\x8d\x47\xb2\x38\x86\x2f\x57\xe3\x2a\x83\xe1\x6b\x28\x9d\x27\x81\x3e\x2b\x79\x26\x66\x21\x0c\x33\x98\xb6\xf9\x61\xfb\xd6\x43\x3a\xcb\xae\x28\x14\x94\x71\x33\xe3\x4c\x96\xea\xba\xed\x94\xb5\xb4\xd2\x4f\xd5\xfb\x81\xf6\x38\x49\x77\xd6\x04\x1c\x5e\x85\xa3\x9a\x05\xee\x19\xcb\xf2\x2c\xa6\x9d\xe3\xee\x10\x7c\xb3\x63\x24\x98\x45\x6b\xa9\x65\x38\x1b\x1f\x43\xb0\x7a\x15\xb5\xcc\x2c\x61\x48\x6c\xcb\x58\xf4\x20\x7e\x04\xd3\x0c\xac\xb7\xb3\x90\xdd\x9c\x18\x84\xb3\xe8\x9d\xd0\x98\x23\x01\x21\x08\xf5\x3d\x0b\x16\x55\x42\x6b\xcf\xf2\x19\x72\x2c\xa3\x4a\x82\x88\x16\xce\x5b\xd8\x8f\xa1\xbe\xfd\xed\x09\x07\x0f\x51\x07\x0f\xd7\xbf\xf9\xea\xfe\xc7\xdd\x2f\x26\x03\x77\xbe\xe8\x0e\xc1\xd5\x4d\xf1\x6d\xf8\xa2\xce\xf2\x98\xec\x9a\xfe\x11\x6f\xc9\x45\x31\x09\xb2\x59\xc3\xfa\x57\xcf\x89\xd5\x1e\x3c\x59\xf3\x91\xa9\x32\x0e\xc3\x32\x04\x72\xfc\x8a\x33\x9b\x15\xa5\x1b\x11\x65\x67\x25\xa3\x36\x31\xbd\x66\xdd\x15\xa9\xd6\xc2\x57\x38\x03\xcc\xb6\xb3\xe2\x97\x87\x5b\xc2\xac\x58\x12\xc9\x89\x39\x2b\x71\x8c\x40\x43\xcf\x6a\xd0\x40\x0e\x2c\x18\xb5\x86\x28\x37\xab\x49\x22\x58\xd4\x5a\xb0\x88\xf1\x7a\x55\x59\x6b\xb8\xab\xda\x0c\xcb\x43\x1b\xd0\xfd\xe8\x24\x66\x35\x2d\x1c\x04\xa3\x36\x09\x27\xf5\xe4\x31\x24\x1a\xed\xac\x26\x6b\xf0\x5b\x21\x57\xc1\x5c\x12\x6e\xc9\xfa\x44\x4c\x80\x83\xa9\x09\x91\x63\x43\x2a\xee\x28\xe1\x18\x0c\x33\x0c\x37\x03\xb6\xac\x77\xd7\x04\x3d\x19\x7e\x76\xb3\x22\x3e\x93\xd1\x68\x12\x2d\xb3\x92\x67\x73\x56\x74\x3f\x72\x87\x44\xcb\xcc\xcd\xef\x9e\xe8\xf6\x20\x48\xf5\x52\xc4\xa6\x1e\xa0\x23\x30\x87\x49\x60\xca\x40\xfc\x99\x95\xc7\xc4\xd7\x97\x60\x94\xad\x3b\x66\xd2\xbf\xf9\xb2\x36\x43\x53\x33\xfe\x86\x95\x6d\xb0\x47\x04\x70\xec\x64\xce\x9e\x4d\xdd\x27\x8f\x09\x41\x15\x13\x60\xf3\xfc\x2d\x90\x22\x6d\xf4\x67\x84\x28\x8a\xc1\x42\x1c\x9e\x0d\x2f\x07\x4c\xf4\xb3\xa5\xf1\xee\xd7\x78\x3a\x9e\x10\x1e\xcc\x8e\x0e\x12\x1f\xc9\xd9\xe1\x12\xe4\x62\x3b\x84\x1c\xaf\x88\x49\xdc\xb2\x4a\x92\x8e\x29\xec\x05\x5f\xce\xd9\xf1\x31\x44\x1f\x36\xbb\xce\xd9\x1c\xde\x4e\x90\x00\x14\xe8\xb3\x03\x6d\x90\xe3\xec\x87\xd0\x03\x7e\x6b\xe8\x9e\x8d\x3e\xc9\x43\xfa\x5b\x19\x4b\x19\xeb\xd0\xbf\x90\xcf\xd4\xa3\x33\x23\x56\xd9\x34\xdd\x3f\x6a\x90\x49\xec\xb1\x0e\x50\x73\x76\x44\xe3\xc9\x59\x32\xde\x58\x38\xc7\x1b\xb0\xf4\xb0\x1e\x71\x29\x2d\x13\xff\x8f\x3b\xd2\xf1\x54\x40\xf7\x3c\x89\x37\xd6\x91\x40\x66\xec\x12\xec\x35\xe6\x2f\x06\x18\xdc\x64\x68\xf1\x64\xcd\xa3\x88\x53\x5c\xfd\x04\x0f\x38\x00\xe0\x19\x1a\xa2\x20\xd8\x40\x51\xba\x5c\x51\x60\x85\xc7\x0f\x74\x12\x1b\x2c\x71\x6f\x9b\xd1\x54\x07\xd9\xc6\xf8\x61\x41\x19\x9d\x28\x8f\x43\x34\xb8\x40\x08\xed\x07\x63\x71\x6c\xc0\x55\x50\xd0\x4f\xe0\x2a\x29\x27\x47\xa6\xf9\x4e\x80\xc8\x09\x74\xa5\x87\xdf\x05\xba\xe2\x43\x14\x04\xa5\x50\x6a\x8a\x00\xad\xcf\x23\x6c\x48\x31\xa2\x25\xcf\x08\xbd\x3d\x28\xa3\xce\x22\x00\xeb\x24\x73\x7c\x82\x95\x9c\x01\x56\x2f\xfc\x2d\xf1\xf3\xc8\xa8\x36\x43\x6c\x68\xec\xbf\x22\x66\xc4\x21\x6b\x58\x3a\x66\x10\x73\x1c\x84\xf8\x0c\x53\x97\xc1\x16\x12\x7b\xac\x7d\x0b\x36\x44\xcd\x33\x90\x75\x48\x7b\x40\xc0\xc2\x4c\x47\x5f\x7b\x08\x15\x04\x29\xa6\xf9\x22\xa9\x87\x7d\x2d\x2e\x9e\xa9\xe4\xe1\xae\x62\x9a\x58\x98\x49\x90\x8c\x34\x5d\x98\x29\x47\x42\x9b\xc3\xa8\xa7\x7c\x17\x25\x32\xf1\xd0\x67\x20\x4f\x03\x0f\x99\x71\x1a\x1b\x8c\xf1\x1b\x6b\xca\x6f\x11\x4d\x00\x9c\xd3\x8c\x4b\xeb\x0c\x73\xc1\xe5\xa6\x40\xf0\x42\xb1\x1a\xe2\x14\x46\xc2\xac\xfe\x16\xe5\x7e\xd8\x5e\x6c\x90\xf5\xc4\xca\x72\xee\xbc\x52\xe0\x6c\x66\xc0\xc1\x10\x41\x74\x06\xe2\xb9\x2f\x62\x98\x50\xd7\xf5\xc1\x89\x56\xee\xc1\x34\xf4\xc0\x04\x26\xf8\xa1\xc4\xcd\x69\x9a\x92\x5e\x96\xfb\xff\x66\xec\x5f\x72\x6d\x07\xb5\x2f\x7d\xb0\xfe\x6b\xc5\x6d\x82\x01\x03\x46\x3a\xba\x7d\x81\x89\x9d\xb5\x2c\x64\xff\x0b\x29\xbe\x6f\x9d\x7f\x48\xa1\xcc\x38\x51\xf2\xda\x6c\x9b\xf7\x63\x32\x1f\x63\x34\xc1\xf8\xec\xc3\x57\xc6\x1b\xbe\x7d\xb5\xee\x31\xb9\xa4\x1f\xb3\xbd\x5c\xe1\x93\x13\xf0\x63\xa2\x39\xc1\x3f\xac\x6c\x48\xcc\xb0\xce\xdf\x5e\xcd\x60\x9a\xbf\x5d\xc4\x0d\xd7\x18\x5c\x09\x06\x3e\x49\x15\x64\xd7\xd1\x2f\xa5\x84\x9b\xdf\xb8\x69\x20\xcd\x74\x40\x36\xd1\x2d\x8d\x9e\x3c\xdd\x3b\xbf\x99\x33\x6c\x8a\x9d\x2b\x36\x3a\xce\x81\x7f\x52\xf5\xba\x0a\x76\x5a\x6f\xa6\x23\x9d\x63\x0c\x18\x9d\x00\xf4\x62\xfe\x2c\x6e\xe2\xfb\x46\x57\x57\x54\xa8\x5b\x51\xba\x3d\xfd\xdf\x6f\xf5\x37\xbc\xa3\x6b\x03\xed\xea\xe8\x1d\x71\xf6\x1e\x3f\xd6\xf6\xdf\x6f\xdb\x52\xf9\xad\x84\xd1\xf8\x8d\x25\x9a\x79\x02\xbe\xda\x0d\x30\xe5\xe8\x48\x51\x44\x3f\x8c\x2e\xa2\x2c\xe3\x02\x83\x7b\x53\x5d\xf0\xf3\x91\x62\xf3\x80\x91\xbd\x61\x25\x1f\xbd\xeb\x46\x41\x59\x48\xe7\xf8\x9c\x8d\xae\x3e\xd2\x36\x12\xea\x03\x37\xc0\xe8\x84\xf1\x0c\xeb\x3f\xd9\xd4\x91\xb0\x3b\xc6\x92\x61\x7f\x4e\xaf\xed\x94\xc5\x5c\xf5\x2a\xda\x43\x57\x20\xfa\x7f\x4b\xce\x42\xdd\xf0\x35\x04\x11\x7a\x80\x73\xd6\x08\xa6\x1f\xb2\x8f\x7b\x68\xe8\x12\x05\xab\xfd\xe8\x1f\x92\x16\x57\xd7\x07\x95\xce\x83\xe4\xfd\x00\x9f\x85\xea\x69\x3c\x7a\x3b\xfc\x7e\xe3\x4b\x47\xfd\x71\xa1\xea\x38\xc1\x8e\x07\x95\x0e\xb8\x80\xe3\xb9\xd0\xf9\x65\xd3\x91\xb0\x8b\xdf\xa2\x22\xe0\x90\x7c\x12\xd6\x7f\xea\xfc\x30\xaf\xbc\x39\x80\xc1\x76\x8f\xfc\xaf\x40\xf3\x01\x3d\xfa\x0d\xe3\xcd\x78\x74\x97\x60\x41\x3f\x32\xa2\xa0\xb7\x78\x74\x56\xb4\xe2\x45\x92\x11\x0a\x87\xf3\x8e\xc0\xdf\x01\xd3\x79\x77\x42\xe1\xcb\x55\xb1\x9a\x0d\xfc\xb7\x8a\x83\x86\xff\x56\x03\xc8\x6f\xe8\xbf\xf5\x98\x27\xb1\x66\x8f\x65\x29\x69\xd9\x91\x95\x30\x0f\x26\xec\x53\x85\xdc\xa1\xc3\x64\x0a\x42\x9a\x7c\x24\x8f\xb8\xfd\xed\xc6\x43\x3e\xcd\x45\x49\xdd\xa0\xc2\x52\xb2\x7c\x0c\xdf\x62\x72\x3d\x3a\xaf\xb2\x38\x60\x0d\xef\x18\x06\x06\x8c\xe0\x1d\x38\x97\xf1\x08\x93\xc2\x89\xf2\x00\xce\x88\x53\xe5\xf8\xf9\x3f\x59\x67\x14\xd6\x4e\x70\x7c\x9e\x2a\x01\xc7\xe3\x61\x13\x22\x56\x6e\x3c\x86\x57\x21\x89\xc2\xe4\xdd\xf0\x52\x1f\x62\xb0\x11\xf7\x3a\x1e\x40\x18\x09\xfa\x1f\xcf\xa7\x25\x8b\x3a\x88\x6b\xdf\x7c\x47\x65\xf7\x29\x77\xa8\xec\xa6\x1f\x06\x01\xfa\xb8\x75\x8c\x81\xcb\x0c\xce\xc0\x63\x18\x4b\xcb\x58\xe0\x47\xd5\x71\x85\x18\xfa\x4e\x75\xbf\xc5\xc3\x1a\xf7\x87\x31\x00\x67\xc4\xcb\x7e\x0c\x90\x32\x40\xd0\x18\x03\x58\xee\xc7\x72\x01\xe3\x03\x5c\x6f\x80\xd3\x76\xbb\xf1\x0f\xa4\x67\x1c\x86\xc7\xc0\x57\xef\x62\x71\x0f\xc6\x1a\x92\xe1\x31\x60\x8b\x22\x5a\x62\x8c\x2a\xd9\x2f\xdf\xe2\xf6\x02\x9c\xf3\x00\xd7\xad\xe3\xb6\x30\xf4\x6d\xc2\xc1\x72\x8c\x61\x1b\x79\x07\xab\x2b\x0a\xf1\x31\x94\xd2\x2c\x97\xf1\xfd\xb5\x6b\x1a\xf7\x47\x59\xd3\x83\xda\x77\x08\xd7\x41\x4a\x03\x47\xad\x13\xaa\x37\xc0\x51\xeb\xb8\xb4\x0c\x58\xba\x2b\x0e\xa8\x43\x4c\x35\xac\x6f\x03\x8c\xb4\x7b\x30\xee\xb0\x6e\x37\xaf\xed\xc3\x6b\x75\x37\x1d\xdf\x41\x0e\x1c\xb0\xd0\x8a\xeb\x62\x70\x70\x81\x4e\x3c\x86\xd7\x6a\x84\x88\xf1\xf3\x99\x23\x9d\x79\xe2\xc6\x30\x3e\x51\x3c\x28\x17\x2e\x0d\x80\x38\xc7\x44\x4f\xac\xaa\x01\x57\xa9\x0a\xa2\xc7\xf8\x91\x6c\x23\x44\xcc\x8c\xdf\x18\x52\xce\x2c\x58\xf0\x39\x30\x71\x47\xea\x84\xd5\x0d\x30\xc9\x6a\x65\x6e\x80\x31\x76\xe3\x3e\x33\x26\x28\x24\x78\x2f\x8c\xc9\x55\x9a\xe8\x9c\x01\xc6\x58\xc7\xa5\x62\xe0\x9a\x54\x70\xed\x19\xd3\xf1\x62\x0e\xcf\x0a\xcc\x17\x87\xc6\xf4\x8a\x5d\x7d\x1f\xb6\x78\xf6\x99\xa9\xf1\x80\x83\x71\x82\x84\xec\xa6\x35\xa5\xa8\x44\x10\x98\x52\x54\xfa\xed\x14\x12\xfe\x5f\xd6\xcc\x31\x17\x83\xcf\x86\x04\xcb\x75\x45\x11\x3f\x26\x62\x36\xe1\x2b\x63\x82\xc1\xdd\x6d\x04\xde\xe2\xc3\x02\x25\x26\x65\xd7\xc6\x47\xa4\xaa\xcc\x5d\xb2\x33\xb1\x70\x97\xe2\x34\x9b\xdf\x42\x19\x9d\x59\xe8\x0b\x10\x37\xc2\x51\x06\x6e\x1d\x05\xc8\xa0\xb1\x10\x9b\x95\xd8\x96\x5c\x81\x0c\xda\xba\x65\x6e\xa9\xfc\x26\x04\x8b\x05\x81\xbb\x47\xf3\xd4\x11\xbf\xaa\x59\x2e\x94\x69\x70\x7d\x0e\x5c\x39\x6e\x15\xd0\x0b\x58\x15\x15\xf4\x6b\x48\x6d\xc5\x3b\xc4\xe8\xe1\xc9\x3e\x96\x2e\x03\x4c\x70\x58\x9f\xeb\x6d\x7d\xc2\x90\x27\xda\xc8\x75\x03\xc0\xca\x01\xce\x53\x21\x56\x6e\xac\xd7\x0d\xfe\xa4\x87\x20\x7a\x2c\xfa\x48\xe8\xab\xd0\x29\x82\xf9\x54\x71\xfd\x18\x91\xc4\xb5\x3f\xf9\x87\xf8\xfe\x2c\xe8\x28\x92\x5c\x34\x7e\xeb\xe8\x4b\x3a\x16\x4f\x0d\x1e\x71\x2b\xa9\xf0\xfb\x4c\xa8\x1b\xb7\x94\x11\x92\xd4\x30\x16\x40\x12\x55\xa0\x81\x46\x88\x56\xca\x86\x0d\x61\x6c\x05\x86\x68\x68\x96\xf7\xca\x1f\x9c\xd6\x98\xfd\xc7\x86\x55\x09\xe4\xdb\x01\x1c\x50\x53\x37\xb9\xc1\x30\xf3\xb4\xde\x19\x09\x1b\x89\xea\x47\xdc\x4a\x3e\xbb\xe2\x54\x89\x94\xb6\xb9\xaa\x80\x16\x3b\x76\x13\x98\xaf\xf0\x1b\xe9\xa7\xf8\x9b\xeb\x98\xf9\xa3\x58\xc7\x2b\x7f\xec\x69\xd8\x0f\xf5\x91\xab\x94\x53\x5c\x98\x1a\xf5\x79\xf0\x90\x16\x25\xf5\x2d\x49\x0a\xfd\xb0\x75\xcc\xa6\x6f\xf7\x2f\xe8\x9c\x3a\x60\x58\x72\x23\x81\xbb\xf3\x56\xca\x81\x97\xb3\xe2\x2b\x39\x5e\x19\xa2\xd8\xf0\xde\xae\x55\xb4\xf3\x1b\x07\x6f\xda\xf8\x7a\x93\x61\xbc\x5e\x41\x2d\x69\xcb\x3b\x3c\xc4\x2a\xbf\x61\x8e\xa7\x9e\xef\x00\x1e\x8a\xc3\xe1\x15\x02\x9c\x5b\x90\xbc\x90\x1a\x21\xa0\x7b\xbc\xbb\xf5\xd1\xfd\x04\x35\xc2\xbb\xa4\x66\x24\xcf\x65\x38\x1c\x65\x2d\x5c\x9f\x98\x6f\x6f\xe0\xd3\x69\x3d\x09\x43\xba\xd9\x14\x5f\x11\x31\xd8\xf0\xa0\x69\x7c\x20\x43\x19\x50\x33\x16\x25\xef\x97\xf8\x68\xbc\xef\xc7\xbb\x75\xa8\xf6\x37\x6a\x99\xcb\xdf\xb8\xea\x58\x67\x62\xa2\x95\xe4\xa0\x72\xbc\x01\xee\x1c\x1f\xae\x19\x17\x57\xcb\xcf\x8d\x96\xf5\xfb\x11\xa2\x86\x13\xfb\xc0\x82\x5c\x08\xee\x1f\x50\x30\x56\x68\xf6\x86\x96\x59\x0c\x90\xe3\x53\x2f\x8e\xf0\xf2\x61\x4c\xaa\xff\xde\xcc\x30\xc3\x36\x7c\x92\xc6\x87\x87\x3b\x3e\x4c\xe3\xd3\xd4\x4f\xa3\x3f\x26\x1d\xe1\x34\xe3\x6b\x10\x2e\x30\x98\x40\xaf\x74\x10\x16\xc6\xc7\x64\x84\xcc\x73\x00\xa5\x52\x41\x4f\x1d\xf0\x18\xde\x84\x00\x0d\xb8\x0b\x6f\xcc\xf8\xe3\x1b\x28\x4f\x99\x68\x9a\x73\x91\x0c\x66\x5c\xf7\x7f\xff\x93\x30\x35\xcf\x38\x12\xc3\x20\xe6\x6e\xc6\x69\x74\xc2\x72\x37\x23\xdf\xfc\xee\xfc\x7e\xcf\x3b\x67\x07\x9f\x71\x36\xc8\x84\x1f\xdb\x84\x01\x3d\xe1\xcb\x35\xe3\x74\x46\xc2\x9d\x64\xe2\xcb\x35\x70\x9e\x9c\xe0\xb4\x25\xf4\x7f\x33\x2a\x79\x9e\x6b\xe3\x8c\x23\x11\x26\x24\xaa\x19\x95\x3c\xcf\xc2\x9a\xd1\x79\xe7\x9c\x22\x13\x5f\xae\x01\x2c\xf1\xc4\x97\x2b\x41\x68\x3c\xf1\xe5\x1a\xb7\xf9\x0c\xea\x50\xc8\x7f\xf0\x6d\x31\xfd\xd4\x19\x09\x6c\xe2\x6b\x35\x6e\xdb\x38\x29\xeb\xe6\xfd\x35\x4f\x7a\x25\xfd\x48\x03\x09\x60\xca\x89\x3f\x53\x02\x50\x72\xe2\xc3\x94\x08\x52\x9f\xb0\x6e\x27\x42\xaa\x26\x4c\xdb\x09\x1f\xa3\x09\x1e\xdb\x00\xcd\x61\xc2\xba\x9d\x70\x27\x99\xf8\x21\x25\x74\x3c\x93\x4d\x6e\x00\x81\x3c\xf1\x43\x4a\x48\x4b\x13\x46\xed\x01\x24\xce\x8c\x97\xfc\x1b\x65\x7d\xb4\xf1\xa1\xac\xb3\x29\xa6\x64\xfe\x67\x52\x0f\x1c\x65\x27\x98\x6d\x09\x2b\xf9\xc4\x27\x29\x01\x87\x3c\xf1\x49\x1a\x28\xd9\x27\x38\x6d\x09\x34\x87\xb9\xcf\x64\x1f\xf8\x66\xcd\x7d\x7d\x27\xfd\x48\xd5\x13\x6c\xb6\xc1\x15\x7e\xc2\xc6\x9d\x00\xec\x9b\xe0\xb1\x25\x30\xdb\xe6\x4e\xd4\x8d\xfa\x6f\xe7\x09\x75\x86\x69\x3b\x41\xb1\x36\x61\xce\x4e\xc4\x02\xcf\xed\x3c\x19\xe4\x73\x6e\x0e\x03\xff\xaa\xb9\x6f\xfa\x67\xf0\xed\xb9\xa2\x0e\xae\xe1\x73\xdf\xe4\x33\xc8\xa7\x92\xff\xa0\x3e\xce\x99\xc1\xb7\xcc\x19\x50\x54\x26\x9b\x74\xca\xb6\xf1\x48\x21\x03\xfc\xb6\x09\x69\x76\xc2\xf9\x76\xe2\x06\x95\x00\xd6\x9c\xbb\xd3\x76\xe6\x3c\x78\x66\x09\x21\x62\xee\x87\xb6\xd3\xcf\x90\x57\x27\xfc\xe4\xe6\x66\x5e\x61\x3c\x9b\x7b\x9e\x3a\xb0\x01\xcc\xbd\x3a\xbf\xf9\x36\x4c\xa7\x2d\xcc\x13\x10\x67\xe6\x3e\x52\xe3\x00\xdf\x6e\xee\x4d\x7d\x0a\x75\xde\xe4\x5f\xa8\xe7\x4b\xfe\x85\x3c\x99\x27\xe8\xce\xe7\xfe\x7c\x87\x3c\x3f\xea\x79\x0e\xf6\x89\xfb\xd2\x40\x40\x98\xef\x75\xd6\x1a\x34\x78\xf3\x3d\xb7\x82\xc1\xe6\x37\xdf\x73\xb0\x27\xd0\x73\xe6\x9b\xc8\xf3\x1c\xaa\x13\xc2\xe4\x84\xea\x69\xbe\xe7\x76\x37\x3a\xeb\x05\x92\xe4\x84\x55\x74\xe2\xca\x34\xce\x35\xff\xff\xbc\x99\x4d\x30\xb7\x12\xbc\x7b\x13\x9f\xa7\xc1\xee\x3f\xf1\x67\x4a\x99\x05\xf4\x9e\xcd\x60\x60\x3d\x9c\xef\x91\x84\x46\xb7\x10\x06\x16\xab\xca\x04\x8b\x2b\x81\x40\x31\xc1\xe2\x1a\xe8\x57\x26\xcc\xca\x89\xb0\x99\x09\x2e\xd7\xe8\xbe\x7f\xc4\xcb\x04\x15\xfb\x7c\x1b\x9d\xc4\x80\xbf\x0e\x32\x8b\x03\x16\xe4\x81\xfe\x6c\xbe\x0e\xe6\xc3\xb7\xeb\xd4\xe1\xb1\xd1\xc1\xfb\x4c\xea\xd7\x01\x64\x52\x73\x1a\x8d\xc7\x3a\x3b\x50\x4c\x5e\x4e\x94\x84\x23\xe2\xc4\x87\x29\x11\x74\x3b\xdf\xb3\x58\xc7\x63\x1d\x5e\x3a\x9e\x49\xcd\xa9\x93\x30\x2f\x4f\xfc\x9c\x12\x57\xbf\xf9\x3a\xb0\x0c\xe0\xc7\x40\xe1\x06\x32\xbf\xb3\xf8\x12\x6e\x1a\xf3\x2b\xfe\x6e\xfc\x4e\xff\xfd\xcf\xe0\x3a\x39\x21\xf2\x4d\xe8\x36\x26\xbe\x44\x83\xa0\xe4\xf9\x31\xb0\x48\x99\x13\x9f\xa1\x81\xb5\x6b\xe2\x33\x94\x08\x55\x9a\xdf\xd9\xa4\x07\xd2\xf0\x04\xeb\x2b\x81\x19\x36\xc1\xdf\x4a\x60\x4a\xcd\xef\x21\x9d\x49\x0d\x59\x6e\x02\x15\x62\x82\xc5\x95\x40\x12\x99\x1c\x26\x09\xb1\x7f\x72\x98\xa4\x62\xdd\x16\xbf\x99\xc8\x10\xd5\x26\x18\xb8\x27\x38\x58\xe9\xc2\xd9\x6d\x7e\xb1\xf8\x07\x05\xb3\x8b\x5e\x78\x94\x4d\x9c\x75\x12\xd0\x7f\xf3\xa3\xd7\xc1\x1b\x99\xdf\x67\x3a\x3d\x41\x2f\x62\x7f\x5b\x17\xdb\x1c\xce\x1f\x0b\x70\xa9\x84\xe3\xc2\xba\xec\xc5\x53\xd8\xc2\xf1\x25\x61\x6b\x5d\xb0\xb0\x26\x9c\x5d\xd6\x75\xfb\x7b\xf0\xfb\xb4\xfe\x4a\xbf\x7f\x9c\xaa\xe2\x5f\xba\xf0\x10\x39\xff\xa0\xb4\x9b\x12\x1a\x25\x70\x90\x5d\x9c\x04\x0b\x7f\x91\x84\x0e\x60\x81\x23\x95\x2e\xec\xa7\xeb\x3a\xf2\x6e\xc2\xee\xb9\x00\x95\x3a\xff\xb8\xf9\x83\xee\x6e\x64\x5b\x19\xfe\x46\x4e\x76\x7d\xa7\x08\xbb\xbe\x93\xeb\xb9\x10\xa4\x0b\xcb\xfc\xc2\x25\x22\x61\x84\x5a\x17\x1b\xd3\x85\xd5\x6a\xe1\x1f\x91\x88\x09\x5c\xe0\x3b\x9d\x7f\x90\xad\x23\xf4\xf0\xf5\x64\x24\xd8\xa7\x16\x5e\x0e\xe7\x0f\x2a\xb2\xf8\x7c\x50\xe0\xca\xfe\x83\xcf\x17\x5d\x35\xfc\x82\xac\x06\x1f\x04\x6d\x85\x1a\x79\x5d\x8c\x1d\xe8\x69\x0b\x26\xd5\x44\x7c\xce\xba\xd8\xda\x30\x15\x2d\x80\x97\x12\x81\x48\x0b\x30\xa4\x74\xb1\x1c\x56\x62\xc0\x38\xdb\x57\xe2\xcc\xb9\x58\x0f\x0b\x68\xa4\xf3\xc7\xf9\x3c\x31\x7c\xb0\xe5\xac\x94\x83\xdf\xa7\x38\x88\x4f\xd3\x55\xfc\xe3\xa6\x1e\x85\xac\x18\x63\x1c\x4c\x56\xaa\xfe\x1e\xfc\xe6\xe3\xfb\xfa\xc7\xf6\xb6\x52\xa3\x5e\x34\x30\x75\x3f\x22\xb3\xc7\x74\x0a\x7c\xac\xef\x43\x7d\x8f\x30\x92\xb0\x08\x2f\x20\x8c\xce\x3f\x68\xe1\xb3\xf8\x07\xc5\xb3\x19\x5d\x38\xb2\x2c\x7c\x13\x12\x20\xfb\x2b\x0d\xea\x58\x29\x82\x31\xe3\xa2\xbc\xc0\x26\x4a\xc8\xe4\x0b\x1f\x81\x84\x9c\xbc\xb0\xff\x27\xb4\xae\x2b\xd9\xff\xcc\xe7\xb4\x99\x2e\x7f\xff\x38\xd3\x05\xf9\x71\x25\x64\x0a\x38\xdb\x57\xfa\xf8\x98\xc9\x99\xce\x65\x23\x61\x5f\x5c\x80\x01\xa5\x0b\xae\xdc\x05\x1a\x50\x42\x45\xb2\x40\x03\x3a\xff\x20\xa7\x8f\x6a\x1f\x71\x7a\x01\xfb\x93\x90\x78\x56\x4e\x8c\x05\x0e\x62\x0b\xbb\x7f\xba\x8f\x48\xb2\x32\xe2\xc3\x85\x1c\xb2\x72\xa2\xbc\xb3\x35\xaf\x8c\xfc\x70\x77\x72\x62\x0b\xbb\x99\xa8\x19\x99\xc1\x6a\x64\x07\x8f\x92\xb3\x83\x77\x64\x92\x95\x1d\x9f\xb3\x7d\xaf\xec\xf8\xd0\xa9\xf9\x21\x7f\xa6\x72\x46\x0e\xc4\xe7\x7e\xc1\x84\x99\x2e\xbc\x4b\x56\x9e\xe7\xec\xfa\x55\x88\x43\xfd\xc2\x40\xb1\x32\x4b\x04\x1d\xe9\xca\x93\x75\x04\x3b\xc7\x02\xf3\x26\x21\x96\xaf\xcc\xd2\x21\x76\x66\xe5\x73\x07\x4a\x88\x52\x0b\x3b\x7d\xc2\xf2\xb2\x20\xc6\x4c\x04\xfc\x2d\x30\x69\xd2\x05\xe4\xe2\xc2\x68\x9f\x88\x2d\x58\x79\x4f\xff\x41\x67\x9c\x5b\x4d\x82\x47\x78\x65\x76\xc0\x0b\xab\xf2\xca\x7b\xf3\x0f\x8a\x7b\xfd\x9a\xe2\xde\xc2\x4b\x6c\x2b\x60\xce\x9c\x3f\xf8\x9c\xa3\xaa\x5a\xf1\x8f\x51\x01\x21\x7a\x65\x04\x09\x74\xdd\x0b\x0f\x80\x54\xcf\x39\xb1\x0a\xc3\x08\x5f\xf5\x2a\xc9\x8e\x3a\x92\xdc\x82\x4f\x33\xe1\xe7\xb7\xe0\xb2\x4c\x17\xa7\xf9\x2a\x0c\x4b\xfd\xfd\x66\x47\xc4\x41\x61\x95\xd6\xfc\x83\xcf\xcf\x05\x26\x11\x8d\xb3\xa0\xbf\x3c\xff\xa0\xc0\x36\xf8\x87\x2f\x4d\xff\x41\x5e\x8d\x5e\xf8\xbd\xf4\xf2\xdb\xf4\x8f\x97\x98\xcb\x85\xbb\x41\xfd\xfd\xa6\x22\x6c\xba\x85\x25\x78\xe1\x7b\xbd\x30\xcc\x27\x54\xac\xab\xb0\x57\xa2\x49\x59\x18\xe9\x13\x42\xe2\x2a\xac\x2e\xc2\x44\x57\x71\x84\xfd\x36\x4c\xa7\x16\x41\xeb\x1e\x3b\x2d\xa8\x12\x33\x13\xfa\xc8\xf3\x0f\x5a\xe7\x78\x33\x4d\x81\x6b\x49\x17\x1a\xec\x55\xb8\x07\x10\x5d\xbc\x0a\x9b\xe3\xf5\xb0\xa9\xc0\x32\x99\xb8\x0c\xae\xe2\x44\x78\x6e\x3f\xa7\x0b\xec\x7f\x27\x02\xbe\x4f\xab\x38\x11\xd8\x54\xe0\x9f\x4c\x88\xab\x0b\x33\x7f\x42\x79\xbe\x8a\x43\x3f\x28\x81\x55\x5b\xc7\xbf\x48\x03\xd6\xcd\x1e\x8c\xf9\x73\xe1\x0f\x90\x88\xc5\x59\xb7\xa3\xcf\xfa\x81\x00\x32\xa1\x61\x5d\x90\x38\xa6\x0b\xed\xd5\xc2\x51\x20\xe1\x99\xb3\x60\x62\x4c\x78\x9b\xac\xbb\xfa\x9b\x4c\x99\x2d\x60\x70\x2e\xd8\x0b\xd3\x85\xbb\xdb\x02\xa1\x25\x81\xa6\xb2\xa0\x32\x3c\xff\x20\x27\xa4\x3c\xe0\x48\x16\x10\x2d\x09\xa4\x84\x75\xb3\xfd\x36\x4b\x46\x2a\xc1\x3d\x63\xdd\x63\xf3\xfb\x74\xe0\xcd\x8a\x46\x91\xbc\xe0\x0b\x4c\x38\x83\xae\x9b\x11\xc6\x19\x71\xc1\x0b\x98\xdc\x0d\xee\xc5\xd5\x08\xc0\xa9\x75\x23\xd7\xbb\x1b\x80\xd1\x72\xfe\x41\x4e\x6b\xf0\x0f\x6a\x14\xd6\x82\x1a\x21\x3b\xb6\x4c\x8d\x98\x37\xee\x18\x37\x33\x02\xfb\xe6\xba\xb9\x24\xa2\xc9\x58\x10\xfe\x25\xb4\x98\xeb\xe6\x54\x4c\x50\x13\x2c\x58\xfe\x12\xaa\xb6\x05\xea\xca\xb9\x75\xfb\xc5\x99\x68\xcd\xea\x7d\x5e\xcd\x99\xb2\xf7\x97\xf8\x07\x2f\x21\x1c\xa1\x70\x5a\xe0\xab\x24\x14\x81\x0b\x7e\xbe\xe4\x65\x7b\x55\xc7\xe7\x5c\x7a\x17\x64\x7a\x09\x06\xcd\x55\x8f\xd0\x9f\x52\xf2\x0b\x84\x43\x37\xa5\xea\x20\x32\x24\xb5\xbe\xde\xf8\x4f\xff\x55\xfb\x98\x8a\x57\xfb\x98\x93\x02\x54\x91\xe4\xbd\x68\xc1\x0b\x77\xfe\xe0\x3f\xf6\x19\x9b\x7d\xb5\xcf\xd8\xec\xc1\x09\x39\x17\xfd\xd3\x21\xb0\xb2\x25\x9c\xf7\x57\xe5\xc4\x72\x1f\x6a\x88\x72\x60\x12\xac\x66\xeb\x98\xe2\x2d\xd3\xb1\xec\xf6\x0d\xb9\x00\xb4\xab\xd5\x6c\x28\xb3\xb8\xdd\xbe\x7f\xaa\x8d\x67\x41\x02\xff\x60\xb5\x66\x3a\xf9\xcf\x53\x39\x6e\x4f\x0b\x20\x8c\x84\xbe\x7e\x61\x58\x4f\xa8\x4b\x17\x80\x17\x09\x64\xa7\x85\x71\x39\x11\x1c\xb0\x20\xda\x4a\xf8\xa0\x2e\x88\xb6\x12\x08\x57\xab\x9f\xdb\x77\x02\x0c\x76\x75\xea\x86\x3b\xe6\x82\xf0\x2a\xfd\x76\x9d\x5e\x16\xff\x38\xbd\x82\xd5\x36\xe1\x44\xbb\xb0\xda\x26\x74\xc8\xab\x23\x7d\x12\x87\xbc\x3a\xc7\x1e\x4a\xfd\xd5\x9b\xef\x37\x7e\xfb\xfe\xa9\x44\xef\x59\xd5\x03\x99\xf6\xb3\xc2\x80\xbc\x58\x5d\x9d\x8a\x73\xb5\x77\xaa\x57\x28\x81\x55\x85\x09\x6a\x75\x84\x4f\x18\x66\x57\x47\xf8\x4c\xf8\xca\xaf\x8e\x58\x42\x58\xe9\xea\xf6\x17\xa2\x78\x9f\x6a\x31\x98\x17\x9d\x25\xd3\xfd\x1d\x9d\xdf\x7c\xa0\xfa\x04\x9f\xaf\xd5\x63\xf0\x0f\xbe\xb6\x27\x91\xb9\xbb\x3d\x89\x98\x0d\x22\x45\xfa\xdb\x52\xce\x2d\xcc\x80\x0b\x5b\x69\xc2\x5c\xb9\xb0\x95\xa6\xde\xff\xe5\xe0\xb1\x1e\x84\xc9\x04\x3a\xf6\x7a\x12\x7d\x4e\xff\x3f\xaa\x33\x30\x6b\xaf\x27\x6d\xfe\x71\x8a\x7c\x90\x38\xb9\x42\xae\xc7\xd1\x63\xea\x82\x70\x91\x12\xbe\x10\x0b\x58\x8b\x44\xc4\xeb\x7a\x1c\x3d\xa6\xee\x53\x99\x36\x4c\x5d\xa0\x2c\xd2\xdf\x97\x2a\xa3\xc1\x16\xfe\x38\x94\xcc\xe3\xc7\xa1\x64\x1e\x3f\x1c\x7b\x09\x95\xde\xc2\xd0\x99\x3a\x93\x17\x40\x8a\xf3\x0f\xb2\xed\x14\xc1\x4c\x7e\x38\x03\x09\x21\x5a\xd0\x61\x25\x1c\x55\x17\x68\x13\x09\x53\xfb\xc2\x4a\x9a\x88\x51\x5c\x0f\x02\x0c\xa6\xf6\x05\x92\x44\xc2\x81\x78\x3d\xcb\x77\x68\x5a\x64\xf5\x39\x7c\x1c\x85\x7f\x50\x98\x4a\x31\xc8\xf6\x16\x1c\x56\x7f\x6b\x84\xf8\x03\x62\xd9\x82\xab\x2a\x11\x1a\xbe\xc0\x9e\x48\x84\x59\x2f\x70\x25\x12\x5e\x7d\xeb\x41\x54\x4d\xc3\x6a\x20\xaa\xe2\x78\xbf\x9e\x57\xb5\x8f\x75\x7a\x13\xff\xa0\x4e\xec\x08\x18\x41\xd6\xc3\xbc\x01\xae\x66\x3d\xc8\xad\x09\x04\x82\x05\xd5\x55\xc2\x49\x6b\x61\x72\x3d\xff\x20\x27\xe4\x56\x02\xa4\xd6\x40\xf8\x21\x66\x61\x61\x2b\x4d\xf8\xd2\x2f\xec\xa3\x09\x77\xd8\x05\x8f\x55\xc2\x4c\xb1\xc0\x8a\x48\x78\x7b\x2d\xec\xa0\x09\xc0\xa6\x35\x6e\xaa\xcd\xea\x1a\x3f\x6d\x15\x43\x82\x51\x34\xe1\xaa\xb7\x20\xac\x4a\x18\x5a\x17\xc4\x54\x49\x61\x02\x70\x89\x94\x61\x5e\x5f\x03\xc1\x07\xd5\xc4\x1a\xaa\x35\x60\xf8\x58\xd0\x54\x25\xac\x19\x6b\x30\xd0\x8a\x09\x83\x81\x56\x32\x00\x6a\x22\xe5\xcb\x6c\x9f\xce\x3f\xf8\xf8\x51\x53\x86\x8c\x32\x1c\x76\xee\xc3\xc3\x61\xe7\xbe\x01\x91\x54\xca\xb0\x9a\x2f\x98\xa4\x12\x56\xfc\x35\x54\x91\x40\x8e\xb0\x30\x93\xa6\x87\x63\x61\x38\xd4\xcd\x74\x74\x1e\x98\x8b\xd6\xd8\x36\xc9\x3e\x40\x90\x41\xef\xbe\x86\x9a\x14\x5c\x82\xd6\x70\x4c\xb9\x35\x0c\x24\xda\x0c\x99\xe9\x1a\x48\x2f\xf8\x8f\xac\xe1\x60\x73\x83\x18\x08\xb1\x19\x54\xb4\x85\x7d\x34\x01\x2a\xb4\x66\x62\xfe\xb1\xd0\xe0\x5d\x4a\xd8\xce\xd7\x74\xec\x58\x5b\xf3\x46\x43\x88\xfb\xe2\x9a\x9c\x74\xd8\xce\xd6\x54\x53\x85\xee\x73\x4d\xee\xfb\x44\xa2\xac\x79\xff\xf4\x7f\x14\x87\xec\xe2\x2c\x9d\x8c\xa4\x13\x13\x04\x86\x94\xd1\x42\x2e\xe8\x92\x92\x02\xd1\x64\x90\xd0\xce\xaf\xe9\xc0\xa0\x32\x5c\xe0\x25\x24\xf8\x80\x16\x78\x09\x09\x30\x9d\x05\x3e\x41\xca\xb8\x60\x2d\x00\x0a\x7e\x53\x79\x72\xfa\x64\xe0\xa5\x17\x68\x05\x4c\xe5\x7f\xec\x75\x50\x1f\xa5\x8c\x77\xda\x9a\x6b\xf1\x15\x65\x72\x81\xcf\x18\x4e\xd6\x5c\x9b\x7f\x50\x01\x96\x34\x86\x99\x35\xd9\xa8\xe1\x78\x58\x93\xe5\x03\xd8\xeb\x22\xb8\x3f\x01\xea\xba\x08\xe2\x4f\x00\x62\xae\x85\x0a\x0b\x54\x9d\x45\x40\x7f\xca\x10\xfa\x2e\x18\x89\x12\x41\xf2\x8b\xe8\xfe\xf3\x8f\xc1\x1f\x89\x7f\x34\x7e\x53\x1a\x72\xc7\x4a\x96\xc6\xc7\xd9\xd2\x78\x1f\xcd\x32\x66\xd6\x85\xb9\x36\x65\x55\x34\x84\xe7\x27\x7c\xa7\xd7\x2a\xdd\x7f\xf0\x05\xa2\x0d\x46\xb6\x05\x41\x51\xca\x18\x21\xd6\x42\xe9\x8c\xc5\x6a\x2d\x4e\xd8\x8c\x9b\xf7\x22\x5a\x3f\x11\x4d\xbf\xa0\x28\x4a\xc4\x60\x2d\x22\xf7\x53\xf6\x86\x8f\xfd\x36\x11\xdd\xb8\x96\xb3\x82\x91\x59\xa8\xa0\x95\x5b\x17\xd2\x6d\x56\x4b\xb2\x90\x6e\x87\x95\x65\x4d\x03\x7c\xba\x16\xab\x12\x4c\xc0\xb5\x9c\x08\x1c\x27\xc4\xdf\x27\x82\x1e\xd6\x42\x0a\xc1\x32\xbf\xd6\xf4\x7d\x7a\x6c\xfa\x3e\xf9\x2f\xdf\xa1\x12\xc8\xad\xc3\xf6\xb3\x6e\x81\xc5\x5a\xcb\xb1\xe5\xba\xb3\x1c\x5b\xd6\xdd\xda\xbe\x43\xb9\xe8\xa6\x89\x14\x5a\xcb\x31\xb7\xbb\x38\x76\x89\x4c\x5b\xe1\xf8\x73\x1c\xc4\x95\x54\xfd\x36\xfe\x60\x5e\xb2\x79\xc4\xa5\xee\x97\x0d\x2a\x9c\x0d\xb8\x86\xae\x70\x36\xb0\x68\xc3\xd9\x40\x8c\xf3\x0a\x67\x03\x2b\x38\x90\x55\x33\xc8\xbe\x0b\x56\xa1\x0c\x85\xdc\x0a\x0e\xe3\x0c\xd0\xdd\x8a\x33\x1f\x32\x28\x90\x2b\xf2\xe6\x37\xe5\x1d\x99\x2f\x83\xa5\xb3\xe2\xcc\x80\x4c\xb0\xf3\x0a\x96\x7c\x86\x4d\x62\x61\x93\xce\xd8\x59\x57\x9c\x0d\xfb\xb7\xfd\x46\x25\x23\xd6\x63\x3c\x7c\x8c\xf8\x14\x1c\xa1\x59\xb9\x3a\x8e\x38\x94\x71\xd1\x5c\x31\x54\x4f\x33\x2d\x21\x06\xca\x20\xb6\x2c\x88\x81\xce\x3f\xa8\xdf\xa4\x4e\x9c\x0f\x30\xfd\xa4\xac\x60\x4d\x68\x7d\xbe\xfc\x3a\x78\xc9\x0f\x82\x7a\xd8\x81\x48\xc6\x59\x99\x09\x3b\x53\x26\x68\x60\xc5\xa6\x82\x48\x5f\xc4\xc7\x67\xdc\xc5\x56\x7c\x5d\x75\x38\xb9\x7e\xbc\xc4\x5c\x27\x80\x3d\xa3\x69\x5d\x1a\x82\xb2\xa2\x25\x91\xea\x19\x7f\xa0\x45\xa4\xfa\xf9\x47\xe6\x0f\xfa\x89\xb9\x8e\x59\x28\xc3\xdb\xb6\xa0\xec\xc9\xb8\xdc\xaf\x9d\xf9\xcd\xf4\x86\x52\x27\x63\x9e\x5c\xfb\xe6\x7d\xa6\xf7\xbe\x4d\x3f\x3d\xb3\xed\x6f\xa6\x31\xa1\xed\x19\xe8\xd2\x05\x6d\x4d\x06\x78\x6a\xed\x87\xf4\x7f\x46\x86\xae\x3d\xe8\x4d\x80\x1f\x16\xa4\x33\xbf\x03\x6c\x0f\x75\xf9\xec\x23\x7b\xd0\x6b\x1c\x60\x1b\xbd\x68\xf6\xf4\x84\x9a\x26\x03\x4d\xb9\xb6\x83\x84\x80\xb6\x17\x75\x64\x9e\x42\x29\x93\x89\xca\x5d\xdb\x2e\xe7\x70\xd9\x76\x39\x87\x0b\x0c\x2c\x19\x3a\xf6\xb5\x3f\xbe\xe5\x02\x02\xeb\x4a\x86\xf1\x78\x6d\x47\x82\xa3\xe5\xbd\x7c\xa7\xf1\x9b\x5a\xb3\x55\xbc\x97\xd6\x02\xf6\xd4\xf7\xa2\xd6\xc8\x70\x84\xa5\x67\x28\x4d\x17\xb6\x9c\x0c\xbb\xe7\xc2\x01\x20\x65\xf7\x32\x38\x58\x32\x58\x79\x8b\x38\xf3\x8c\xe7\xc4\x7a\xe9\x7d\x88\x70\xd6\x7b\x6b\x9b\xa0\x4a\xef\xd9\xd7\x32\x78\xf1\x4b\x43\x4b\x71\xa5\xbd\xb5\xf3\x0f\xaa\xc1\x1e\x57\x5c\x69\x2f\x03\xe6\x35\xf2\x65\xc0\xb0\xd9\x2e\xa8\x51\x52\x21\x58\x61\xc1\x8d\x92\x31\xe0\xae\xb7\x6b\xab\x40\x42\x7b\x1f\x5a\xc1\x3a\x78\x19\x62\xc2\x95\xd6\xcb\x05\xa3\x28\xb8\xbc\x93\x6c\xd9\xf4\xb1\xfd\x67\x3c\x7c\xd7\xfb\xf2\x31\xdb\x39\xd6\x96\x8c\xc3\xd5\xfa\x2e\xad\x18\xf4\xd9\x77\xf6\xa4\x8c\x23\xc9\xfa\x90\xf6\x4b\x62\xbb\x20\x56\x3a\x63\xa0\x5d\x9f\x7d\xc3\x2c\x85\xd7\x24\xab\x94\x87\x3b\x24\xe3\x60\xbf\x88\x53\xce\xf8\x92\x2e\xc2\x8c\x33\x06\xda\xf5\x6d\xd2\x99\xa5\x9f\xb5\x63\x53\xc5\x5a\x91\x31\xca\x2e\xb8\x3a\x32\xe4\x44\x0b\xae\x8e\x54\x8a\xb5\x7b\xa9\xdd\xd9\x61\x83\x18\xd6\x4c\x60\x76\x10\x57\xaa\x68\x12\x98\x09\x32\x56\xdc\x20\x66\x34\x63\xc5\x0d\x62\x43\x33\x96\xdb\xb8\xac\xe8\x43\x3e\x83\xf7\x1f\xf2\x41\xbb\x59\xea\x19\xb7\x20\xf8\x31\xa7\x87\x8f\xa7\x36\x90\xc4\x17\x93\xe6\x3c\xe4\x34\x5f\x0d\x25\xe9\xfc\xb1\x7e\x7f\xf0\x1f\x1a\x8d\x93\x70\xc0\xc1\x90\xa1\x7c\x8b\x8b\x0e\x80\xa8\x28\xe0\x60\x48\xd2\xce\x07\x31\x8b\x19\x20\xb8\xb8\x18\x1f\x02\x62\xe3\x42\x6a\x2b\x04\xa3\xc5\x75\xf6\xa6\x8c\x1d\x35\xae\xef\x67\x8c\xe1\xeb\xef\xac\x20\xfc\x8d\x23\xb1\x3a\x70\xc7\x8c\x74\x56\x84\x92\x53\x40\xa5\x90\x51\x2a\x04\x06\x83\x4c\x24\x64\x10\xe5\x98\x89\x52\x8b\x84\x2a\xc0\x10\xb1\x48\x59\xbb\xcc\xc5\x5b\xe7\xca\x96\x71\xae\x8b\x54\xb4\xcb\x5c\xbc\xc5\x48\x60\x27\x8d\xc4\xa6\x85\x9d\x34\xd2\xcf\x0e\x64\xd9\x0c\x4b\xae\xfe\xe6\x83\xca\x07\xc8\x7f\x32\x63\x05\x9c\x08\x19\xe0\xd9\x48\x9d\x8a\x37\x8a\xeb\x7c\xdc\x78\xe7\xa1\xb2\x8d\x8c\x34\xe4\xb4\xfe\x2f\x69\x2e\xd2\x20\x67\xfa\x30\x0d\x73\xee\xfc\xae\xe6\xe0\x3f\x68\xe1\x11\x04\x22\x0d\x9b\xfe\x50\xce\x38\x13\x12\x03\x69\xc0\x8d\x70\xfe\x41\xed\x67\xe2\x1f\xbc\xc4\xb4\x80\x00\x36\x88\x7f\xcc\xd9\x5c\x59\x09\x04\x25\x07\x9c\x07\x99\x50\x8d\x48\x9c\x57\x38\xf1\x46\x0a\x1a\xf8\xd0\x58\x27\xcb\x43\x61\xac\x90\x6c\x25\x58\xbf\x58\x57\x23\xbd\xa6\x93\xbf\xf3\xe6\x21\xff\x8f\x09\x8c\x46\x21\x20\x2b\xc8\x20\x0e\x46\x76\x4a\x9c\x4d\x35\xb2\x53\xe2\xec\x60\x91\x91\x2e\x0a\xc0\xdc\x91\x2f\x9a\x79\x76\xd2\xc8\x5a\x00\x09\x91\x0b\xc2\x12\x33\x96\xa6\x80\x5a\x20\x03\xc0\x11\xd0\x06\xa4\xc2\x0d\x3d\xe0\x0d\xc8\x58\x5b\x03\xde\x80\xf3\x0f\xbe\x40\xba\xc0\x02\x15\xd9\x19\x45\x6c\x44\xe4\xfc\xf1\x0f\x5e\xd2\x56\xdb\xad\x6d\x29\xfe\x41\x21\x08\x24\x58\x5f\x23\xb3\xf3\x00\x09\x1d\xb9\x9a\x5e\xf9\x6d\x3a\x65\xb3\xd0\xb1\xca\x06\xb1\x89\x19\x88\xa6\xc8\x4c\xae\xc2\xaa\xc8\x4c\x2e\xac\xb5\x01\x2f\x40\x2a\xc4\xa1\x45\xee\x54\x89\xa5\x90\xb5\x25\x72\xd3\x8b\xfc\x24\xfe\x41\x09\xc3\x9c\x68\x03\xdb\x07\xae\xd2\x91\x07\x3d\x50\x28\xe1\x67\x31\x64\x7f\x82\x26\x20\x63\xd4\x8d\x3c\xfd\x80\x74\x54\xa6\xe5\x71\x58\x8e\xe8\x99\xb1\xdd\x46\xd6\x60\xf8\x38\x46\x6b\xf0\x0f\xb2\x65\x12\x00\xf8\x16\x19\xed\xa6\x61\xd5\x91\x5f\x2a\x5e\xf9\x9a\x4b\xbd\xe1\x99\x01\x74\x7e\xc6\xac\x1b\x58\x31\x72\xb1\xa5\x48\x39\xfa\xd0\x45\xe6\xea\xaf\x3f\x53\x14\xe6\x0a\x5e\xed\x41\x20\x63\x06\x83\x27\x8a\x23\xcf\x1a\x2a\x37\x1d\xcb\x8a\x28\x8d\x74\x76\xe5\x62\x27\xd3\xea\x82\x6e\x45\xda\xe7\x28\xe7\x1c\xcb\x98\x56\xa3\x70\x74\x11\x92\x1e\x05\x29\x91\x9b\x41\x60\x6b\xc8\xe0\x4b\x47\x41\xb2\x23\x48\x29\x50\xdf\x67\xa2\x9b\x83\xc0\xbc\x64\xd0\x4a\x94\x97\x4c\x99\x33\xe5\xa5\x8f\xe9\xca\x82\xa8\x80\xbd\x35\xee\xcb\xdf\xe7\x63\x34\xf4\x19\xe0\x8d\xb8\x11\xbb\xc0\x64\x08\x10\xd4\x33\x61\x9f\x71\x9f\x89\x98\x71\xa9\x0b\x14\xf1\x19\xb7\xb5\xb8\x99\x7a\x98\x67\xe3\x6e\xfe\x26\x9f\xe6\xb7\xe4\xd3\xcf\x48\x11\x02\x1d\xa8\xd8\x33\x16\xd9\x00\xe1\x3c\xc3\x63\x1e\xa0\x9a\x67\xd0\xc5\x03\xcd\x78\x26\x74\x39\x40\x2c\xcf\x44\x67\xc6\xfd\x9a\x0f\xf9\x23\x02\xdd\xf9\x5f\xca\xb9\x40\x75\x9d\x21\x6f\x8a\x5b\x73\x24\x06\xd2\xb8\xcf\xe0\x66\x70\xb2\xe2\x3e\x77\x91\x8c\x05\x38\xea\x45\x89\xe7\xbe\x1a\x95\x9e\x81\x11\x2a\xc0\x1b\xcf\x30\x27\x45\x65\xcc\x81\xd8\x8e\x6a\x2f\x9d\x93\x38\xaa\xbd\x54\xc8\x07\x4d\xec\x0d\xeb\x47\xd4\xb2\xf8\x07\x99\x96\x9f\xc1\x37\xf1\xc7\xe6\x1f\x94\x70\x6b\xcb\x65\xb6\x56\x04\x27\x3d\x9a\xa3\xd6\xcf\x3f\x28\x1c\x61\x09\x4b\x6d\x54\xbb\xbc\xf2\x79\xd7\x46\xcc\xb6\x5b\xed\x67\x66\x25\x60\xdf\x19\x2b\x6c\x00\xf6\x9d\x31\xbc\x46\x45\x3e\xba\x71\xf3\x0a\x42\x20\x33\x4c\x7e\x51\x87\x66\xe8\xe1\x1f\x89\x7f\x90\x2b\x12\x2f\x71\x86\x51\x87\x15\x1c\x54\xd0\xe1\x63\x1e\xd7\x49\xd1\xec\xec\x68\xec\x33\x06\xd9\x00\xe3\x3b\x09\x9a\x14\x15\x5f\x0d\x89\xf1\xa3\xb2\xb7\xc3\xf7\x1a\xa0\x7c\x27\x19\xd2\x03\xf5\x7d\xfe\x15\x81\x45\x4c\x92\xc7\x20\x10\x32\x13\xa8\x18\xa8\xf5\x33\x01\x9b\x41\x90\x63\xba\xb9\x16\x46\x7d\xcf\x4e\x4f\x30\x56\x00\xfa\x7d\xfe\x41\x19\x6f\xe5\x1f\xbe\x64\xb6\xec\x04\x15\x21\x1b\x83\x6b\x54\x66\x18\xfe\x6a\x51\xbf\xea\x4b\xa7\x22\x8d\x09\xa2\x6c\xd3\x98\x20\x36\x09\xbc\xee\x64\x74\x63\xb4\x73\xa9\xcc\xb6\xa2\x65\x8b\x60\xda\x35\xa6\x08\xbe\xb2\xd1\x50\xf7\xde\x75\xf0\xf9\x11\x1e\x72\x65\x8a\xb4\xa2\x61\x7e\xf8\xd6\xe0\x1f\x0f\xbf\x2d\x83\xae\x22\x12\x33\x63\x58\x0d\xa2\x2c\xbd\x1b\x07\x36\x09\xaf\xc6\xd1\x50\x10\x4b\xcb\x10\x8d\x33\xc0\xa6\x36\x16\x28\x24\x4d\xd1\xda\xc7\x6f\x3e\xe8\x9a\xef\xad\xe0\xd9\xab\xbc\x19\x47\xeb\x7e\x40\xfd\x1e\x33\xa2\x4a\xb8\x23\xdc\xcd\x9c\x1e\xaa\x84\x48\x02\x2e\x78\x92\xea\x3a\x08\x5e\xcc\x58\x55\x83\xc0\xc4\x0c\xfe\x6f\x10\x80\x98\x95\xe2\xda\x6c\x7a\x0b\xf0\xd2\xa4\x3b\x38\x68\x9b\x7e\x0a\x80\x8d\x06\xf0\xe1\x19\x73\x6b\xb4\x45\xab\x4d\x0f\x5b\xca\x6c\x6e\xc1\xd0\x23\x45\x10\x83\x78\xfe\x41\xa5\x90\x3f\x2b\x22\x45\x43\xe6\x04\x65\x2f\xb0\xbf\x64\xe0\x15\xa2\x21\x66\x56\xdf\x77\x46\x38\x42\x1f\x6d\x60\x36\x02\x14\x9e\xc1\x2d\x89\xee\x84\x60\x02\x12\x94\x97\x6e\x62\xfd\xa3\xa7\xd3\x06\x00\x4d\x02\x34\xf1\xf3\x0f\xff\x18\xfc\xe3\x94\xdc\xd9\x71\xe1\x42\x89\xce\xac\xc1\x62\x19\x84\xe5\xa5\x1b\x06\xa7\xe8\xe7\xe8\xcf\x2d\xfd\xcb\xb3\x24\xba\x9e\x0e\x40\x25\x46\x2f\x95\xaf\xcc\xc1\x8a\xd1\x57\x9d\xb9\x86\x41\x33\x3a\xb2\x29\x86\xcb\xc0\x48\x94\x31\x5c\x46\x3f\x72\x6a\xc6\x56\x19\xdd\x9d\x49\xc1\x05\xcc\xf3\xf3\x07\xed\xbd\xcf\xd4\xc1\xe8\x13\xbd\xfe\x3c\x2e\xfc\x23\xf8\x07\x2f\x31\xef\x60\x3a\x0c\x6c\x49\x19\xea\x94\xe8\x6d\xf1\x9b\x6a\x74\xd3\xa9\x06\x8a\xcd\x1b\xad\x79\x60\x26\xca\x38\x88\x07\x61\x7c\x49\xd6\xa6\xe8\x1c\x1f\xd8\x18\xa3\x23\xb0\x0a\xe1\x1a\x7d\x0c\xff\xa0\x8c\x41\x33\x98\x84\x00\xa0\x9f\x7f\xf0\x39\x02\x28\xce\xec\xd1\x99\x47\x38\x95\x47\xe7\xba\x72\xc3\x57\x1a\x9d\x9d\xa9\x39\x06\xee\x4c\x10\x42\x46\x67\x67\x72\xaa\x76\x77\x26\x18\x14\xa2\x33\xa9\x9c\xaa\x9d\x9d\x09\x84\xad\xe8\x7b\xf3\x9b\x77\x90\x53\x95\xae\xfb\xeb\x3b\x54\xe9\xb5\xb4\xd3\xcb\x0f\xe2\x28\x01\x6c\x41\x64\x5f\x56\xe8\x7e\x2e\x5d\x50\x38\x41\x09\xf3\xcb\x0a\xdd\x84\xf0\x9d\x7f\x0c\xfe\x60\xbe\x20\x09\x3f\x49\x47\x15\xc6\xe8\xc9\x54\x8f\xb9\xfd\x38\xf3\x98\xdb\x0f\x12\xa8\x38\x16\xf1\x20\x81\x62\xd4\x0c\x02\xf8\x92\x81\x2e\x01\x1a\x7b\xc6\xc2\x19\x44\xf3\x65\x2c\x9c\xf1\x70\xd7\x21\x44\x35\x1e\xe7\x13\xab\x81\xe8\xbc\x8c\x85\x33\x9e\xee\x6f\xde\x67\xb0\xb1\x64\xc6\xd3\x6d\x90\x1f\xf4\xc9\x3f\xf8\x8d\xc3\x45\x45\xe7\x16\xcf\x73\x1a\x04\x1b\x4a\x3c\x8f\x6e\x31\x2c\x99\x87\x59\xd0\x6d\x35\x02\x65\xb7\xa1\xdc\x54\x2a\xe4\x48\xf1\x70\x53\x41\x2b\x15\xcf\xd4\xc1\x06\x61\xf6\xe1\xa6\x82\x56\x2a\x30\x62\x65\x00\x3b\x03\x3b\x54\xc6\xfa\x19\x4f\x98\x4e\xc5\x99\x0f\x44\x5b\xc4\x83\x27\x86\x98\xe6\xf1\xec\xb3\xa2\x30\x78\xc6\x83\x9d\x59\xa0\xf1\x00\x04\x3d\x83\x36\x17\x0f\xe3\x8e\xf5\x33\x9e\x73\xa4\xe4\x5e\x4e\x09\x03\xd1\xb2\xd3\xc5\x83\xab\x47\x85\x8f\x27\x06\x57\x0f\x5c\x5f\x63\xa4\x9f\xd3\x4f\xe1\x0f\xea\xcd\xa2\xc0\xc4\x94\xbd\xdc\x0c\x84\x11\x50\x77\x62\x20\xa6\xe1\x51\x13\xc3\x81\x60\xf3\x19\xdc\x0a\x08\x6f\x8c\xd1\x74\xf9\xe1\xfa\x34\x1a\x7d\x5c\xc9\x94\xe3\x01\x2b\x6a\x0c\xa4\x57\x7c\x6b\x62\x38\x8a\x08\x22\x18\x89\x32\xd6\xd5\x18\x8f\xbf\xc9\x94\x8b\x00\x06\xd5\x18\x03\x9f\x27\x5c\x93\x63\x70\x13\x80\xc0\x30\x06\x37\x81\x8a\x9f\x72\x0c\x07\x0e\xa9\x64\xd8\xf5\xff\x34\xbb\xc6\xc0\xd0\x5b\x33\xfd\x3f\x82\x89\xc3\x52\x1b\x7a\x41\x79\xcf\x1c\x9b\x46\xb1\xbe\x06\xc6\xc2\x9a\x7f\x7f\xe0\x5a\xe2\xed\x72\x70\x81\x80\x70\x29\x34\x20\xc9\x16\x1e\x58\x90\x72\xb7\x7f\xf0\x89\x92\xd2\x3a\x86\x63\xc9\x0a\x1b\x2f\x83\x8f\x24\x3e\xb8\x7e\x08\xce\x1d\x03\xd5\x28\x06\xd6\x98\x0e\x32\x6b\x07\x90\xf2\x54\xa1\x11\x88\x89\x60\x89\x91\x34\x40\x1d\xcf\x18\x49\x63\xa2\x8a\x26\xcc\x35\x40\xfc\xce\x98\x42\x03\xc4\xef\x8c\x29\x34\x40\xf6\x4e\xd5\x8b\xc2\x64\x6b\x25\x76\x36\x66\xdf\xfc\xa6\x64\xe4\x3f\x2c\x9b\x01\x34\x76\xc6\xb2\x19\x93\xcb\x04\xc6\xcc\xc0\x4a\x93\xb1\x5f\xc6\xd4\x0f\x09\x17\xb9\x00\x4f\x3a\x63\xb4\x8c\xa9\x1f\xd2\x6d\x69\x3b\xf1\x0f\x4a\xb0\xc7\x71\x9e\x0b\x22\xe9\x32\x71\xf8\x31\x5f\x8b\x18\xfc\x3e\x9d\xe1\x16\x3d\x11\xae\xdc\xa1\x17\xbb\x1b\x51\x54\x81\x2d\x27\x13\x15\x15\xcb\x7e\x41\x98\x5e\xf6\x0b\x2b\x87\x88\x39\x55\xb0\xb1\xd0\x41\xe2\xf3\x14\xcb\x3e\x42\x04\x5a\x68\xdc\xe1\x27\x89\x85\xbc\x8c\xc9\x32\xd6\xf0\xfd\x53\x9f\xc5\x35\x83\x38\xf6\x58\x1c\xff\x00\x8c\x04\x11\x6d\xd9\x8b\xef\x62\x64\xbd\xeb\x2e\xbd\x9f\xba\x95\xe3\x2e\x82\x89\x33\xc2\x4a\xb3\x56\xc2\x4a\xb3\x56\x82\xc5\x08\x04\x75\x60\x4b\x48\xa2\x1f\x04\xa1\x2e\x19\xa0\xbf\x08\x84\x43\x23\x6b\x23\x10\x0e\x09\x89\x8f\x40\xd4\xab\x18\xdb\x03\x40\xe3\x8c\xbd\x32\xc2\x36\x73\x4a\x04\xb7\x04\x43\xf7\x22\x38\x66\x21\x26\x89\xb0\xd1\xcc\xdb\xc0\xdd\xa9\x3a\x22\xd1\x1a\xff\xf0\xb7\xee\x63\x6c\x6d\xe1\xec\x61\x12\x47\x37\x27\x8a\xe8\x95\xdf\x54\xdc\xee\xe3\xc4\x00\xaf\x38\x7b\x49\x0f\x3d\x1b\x7f\xc5\xd1\xaf\xd8\x34\x03\x20\xe0\x8c\x4d\x33\x02\xb7\xde\x4a\x2c\x6c\x80\xe0\x9b\x07\x7b\xbb\xd1\x2f\xf5\xef\x1f\x83\x7f\x50\x3f\xce\xd2\xc1\xac\x0f\x46\x08\x1c\xf7\x20\xe4\x25\x13\x9c\x1b\x84\xb3\x64\x8c\xa3\x11\x08\x6b\x18\x47\xc3\xb0\x15\xa3\x49\x63\xa3\xbf\x1d\xec\xa9\xfb\xf2\x03\xd2\x93\x1f\x34\x7e\xd3\x06\x0c\x55\x41\xc4\x5f\xf6\x2c\xdd\x3f\x47\xb5\xee\x17\x67\x62\x79\x96\x6a\xa2\xc0\x9a\x1a\x84\x02\x66\x7c\x01\x42\x73\x05\x6c\x72\x01\x8b\x7f\x86\x8f\x24\x76\x35\x9d\x7c\x18\xab\x91\xff\x85\xeb\x16\xda\x32\x30\x9f\x06\x54\xfb\x49\xf8\x87\xd8\x08\xed\xb8\xe8\x87\x31\x28\xc6\xf5\x07\x24\xfc\x19\xc3\x6a\x6c\x0e\x5a\x0c\xab\xb1\x1f\x7f\x53\xad\xe1\x6f\x1a\xce\xa0\x62\x26\x8d\x8d\x08\xde\x30\x33\xc4\x46\x04\x57\x5f\xb2\x75\xc3\xc2\xe6\x10\xc4\x25\x66\x6c\xa3\xa1\x4d\x83\xe0\xe5\x20\x54\x25\x13\xfc\x1b\xa0\xee\x66\xe2\x2d\x63\x3b\x8e\xac\x46\x50\x74\xb3\x2a\x95\xed\xd8\xd9\x1c\xc7\xce\x16\xa0\x77\x11\xfd\x2f\xa0\x95\xcf\xc0\x32\x84\x71\x2b\x86\x80\xc7\x46\x1c\xc7\x46\x11\x58\x38\x32\x26\xd6\x78\xd9\x4f\x30\xb1\xc6\xeb\x60\x33\x09\x34\x70\x40\x47\x12\x2f\x02\x38\xd6\xd6\x78\x1d\x46\x8e\xb1\xd7\x61\xe4\xfe\xf2\x22\x80\x37\x38\x54\xe2\x45\x00\xc7\x7a\x1a\x46\xba\x34\xbc\xe6\x03\xa4\xde\x8c\x29\x35\x5e\x07\x98\xe5\x8b\xb5\x22\xb5\x6c\xd1\x08\xba\x4e\x2d\xc3\x4a\x5a\xb6\x1e\x8d\x36\x30\xb5\x5e\xc7\x8a\x75\x0d\x97\x7b\xc6\x20\x1a\xef\xa3\xeb\x9e\x2f\x71\x7f\x07\xec\x36\x5e\x5d\x14\x3d\xe7\xde\x87\x16\xb1\x03\xbf\xc8\x44\xd8\x43\xe3\x75\xa4\x59\xd6\xef\xb4\x45\x9c\x47\x6f\x30\x4d\xfc\xed\xa0\xb0\xd5\xbc\x28\xd6\x45\x55\x8b\x0f\x66\x48\x40\x8c\x82\x88\xc6\x02\xc6\x6a\x80\x89\x9b\x04\xb9\x08\x43\x1a\x31\x7b\xc6\xa7\x2f\x1d\x60\x05\x21\x2a\x2e\x30\x3a\x01\x12\x6e\x01\xd1\x24\x88\x7b\x2c\xd8\x46\xe3\xcb\x94\xc0\x12\xfc\x10\x42\x25\x3b\x0d\x20\x6c\x0b\xf6\xd0\xf8\xaa\xbf\xf9\xa0\x92\x11\x9b\xd9\x87\x9a\xbc\x11\x5c\x17\x04\x34\x16\x00\x8e\xe2\xd3\xfd\x0e\xc4\xa5\xf8\xda\x38\xff\x60\xa5\x7c\x20\xd8\xe3\x74\x19\x5f\x27\x57\x0e\x18\x82\x53\x34\x15\x05\x44\xf1\x05\xb7\x96\x90\x10\x1e\xbc\x82\xf8\xa0\x8c\xb8\x38\x78\x00\xa5\x2d\x84\x1f\x07\x46\x9d\x82\xb9\x35\x3e\xc2\x71\x31\xb7\xc6\xf7\xfa\x9b\xfc\x09\x8d\x06\x3d\x3e\xc0\x7c\x4d\xcd\x6b\xeb\xf7\xd1\x79\xcc\x7b\xe3\x51\x1a\xce\x7b\xf1\x7d\xd4\x82\xa3\x0a\x4a\xf5\x02\x76\xd9\x06\x01\xb6\x5c\x67\x3d\xec\xcb\xe1\x39\xcd\xdf\xa2\xb2\x62\x86\xdd\x30\x9c\x17\x50\x3b\x37\x0c\xe7\x05\x18\xe1\x7d\xd9\xa7\xe7\x74\xda\x58\x8a\x0a\xc6\xd6\x0d\x7b\x79\x6a\xe0\x35\x6f\x60\x4d\x0b\x16\xd6\x6d\x34\x4b\x03\x14\x68\x13\xce\x52\xae\xc6\x4b\x10\xfa\x5f\x8d\x74\xc8\xc6\x30\xc3\xee\xcb\x91\x3a\x93\x67\x63\x5b\x2a\x57\xfb\x17\xdf\xcb\x86\xe8\xbc\x20\x48\xef\xcb\x01\xea\x34\xef\xa1\x49\x9d\x42\xec\xf0\x73\x02\xee\x0b\x14\xe9\xab\xd3\x0c\x94\xc5\x0d\x41\x7a\x5f\x8b\xaa\x3f\x7c\x8c\xb2\xb8\xf5\xc2\x17\xf0\xeb\x83\x02\xb8\x2f\x87\xe8\xa1\xba\x08\x2e\x02\xd5\x6c\x42\x4a\x0a\xa6\xd4\x7d\x39\x76\x83\x5c\x11\xe9\xe4\xa7\xd8\x98\x97\x0a\x66\xd2\x9d\xae\xcd\xef\xd3\x21\xe9\x6c\x0a\x85\xb0\xd6\x9d\x8a\xef\x74\x7e\xe3\xd9\x8b\xbf\xf6\x4e\xe7\x4c\x2f\x98\x4f\x77\xc2\x73\xa0\x21\x97\xec\x44\x77\x12\xe4\xba\xa5\xcf\x26\xc8\x75\x27\xe4\x3b\x39\xcb\x77\x02\x50\x19\xcb\xe8\x36\x82\xa4\x21\x5c\xec\xd4\x12\xff\x48\xfc\xa6\xec\x4c\xfd\xce\x56\x53\x80\xf0\xda\x84\x99\x14\x42\x5e\x77\x7a\x28\x21\x93\xe9\xe3\xfb\xe4\x33\x4d\x1f\xfc\x26\xbd\x50\x18\xce\x05\x8d\xe3\x62\x43\x62\xad\x5d\x74\x03\x50\x79\xfe\x41\x5d\x41\xa8\x4c\x85\x12\xa0\x09\x82\x4e\x7b\x27\xbc\x84\x1a\x47\xc4\x4e\x8b\x6a\x98\x13\x00\xe0\xc9\x8f\xb7\xc5\xd1\x33\x1f\xd5\x28\x54\xc3\xee\xa6\xf7\xa0\x84\x2e\xa0\xec\x6f\x63\x43\x84\xe8\xda\xf9\xdc\x89\x0b\xca\xef\x2d\x6e\x24\xe8\xf3\x1b\xeb\x49\x01\x0e\x6c\x67\xc7\xe7\x9c\x35\x3b\x97\x57\x67\xdb\xc1\x1f\xf4\x2a\x6b\x2b\xdf\x3f\xcf\x5b\xff\xa0\x57\x59\x68\x58\x58\x4a\x62\xa1\x11\x28\x52\x12\x0b\x4d\xc4\x47\x6c\xc1\x3b\xdb\xab\x95\x12\xec\x55\x16\x5a\x26\x40\x1a\xbb\xf0\xc6\xfe\x51\x80\xc7\xdd\x19\x1c\x22\x22\xba\x76\xb6\xe7\x59\x4e\x44\x83\x14\xec\xc5\x1b\x76\xe3\xc2\x41\xb8\xb3\x5d\xd7\xa8\x34\xfe\x72\x9d\x28\xde\x9d\x23\x9f\x7f\x74\x32\x25\x20\x4e\x34\xf1\x9d\xa1\xe6\xc4\x18\xbc\xe1\x28\x2e\x18\x83\x77\xb6\xb3\x59\x4b\x44\x83\x14\x8c\xc1\x3b\xdb\xf1\x0f\x35\xb2\xe3\x8f\x30\xb9\xe1\x0d\x4e\x9d\xa0\xaf\x0d\x71\x70\x21\x16\x77\x1b\xe6\xd1\x31\xbc\x6e\xc8\x81\x0b\x96\xe1\x5d\xf0\xc8\xe9\x44\x83\xed\xe2\x90\x1c\xa9\x71\x97\x44\x11\x47\xbe\xd8\x05\xff\xba\xce\xdd\x70\x97\xd4\xf8\x07\xe5\xe1\x7e\x20\x8f\xc6\x2e\xf9\x64\x8b\x27\xdc\x2e\x47\xb2\x2a\x58\x8f\x77\x61\x70\x01\xa1\xd8\x05\x59\xb9\xe3\xe4\xb6\x0b\x5b\x39\x5c\x7d\x1b\x9b\x4a\xc1\x7a\xbc\x21\xe7\x4d\xc2\xb8\xee\xc2\x40\x60\xf4\xdd\x85\x81\xc0\xe8\xbb\x61\xde\x4d\x9d\x98\xc0\x0d\xf5\x6e\xc9\x7e\x80\x6b\x54\x27\x40\x70\x83\xa1\x58\x70\x3d\xdf\x05\xa0\x82\x9c\xc7\xbf\x76\xb9\x72\x36\xa4\xf2\x6b\x2d\x63\xc9\xe5\x77\x13\xdd\x51\x7e\x8d\xdd\xbe\x43\x21\x80\x2d\x82\x6a\xbb\x31\xe9\x24\x69\xc6\x77\x39\xf7\xd0\x02\x04\xed\x96\x81\x97\x28\xdd\x0d\xd3\x6e\xc1\xe2\xbc\x0b\x1e\xce\x1d\xda\x96\x5d\x60\xa7\xc4\x09\x7e\xdf\x97\xce\xd5\xe7\xb4\xde\xf7\x45\x11\xb4\x09\x8b\x50\x01\xc6\x6c\xdf\x89\xf6\x9d\xb3\x67\xdf\x00\xa5\x12\xbf\xbb\xc1\x64\x2c\x80\x98\xec\x9b\x65\x80\xe9\x7a\xdf\xcd\x77\x0a\xbf\x7d\xe7\xe6\x37\xf9\xb0\xbb\xde\x08\xaf\x1d\x2f\x82\x0d\x19\x6e\x41\x06\xda\x77\x37\x23\x0a\x23\xe8\x4d\xe0\xad\x7d\x3f\x67\x5e\x63\xd3\xde\x37\x5a\x66\x29\x7f\xf7\x0d\x74\x23\xae\x86\xfb\x46\xcb\x2c\xe9\xd5\xbe\x1f\xca\x63\xb9\x60\x5d\x2a\xd8\xb3\xf7\x7d\x04\xd6\x82\x09\x7b\xdf\x50\x0a\x64\x96\xd1\x6d\xd7\x73\xf0\xdc\x2c\x10\xac\xd9\xfb\x66\x51\x60\xc0\xde\x37\x34\x93\x18\xb0\xf7\xcd\x29\x0e\x01\xf8\x86\xc7\xb6\x20\x95\xed\xdb\x51\x60\x71\x61\x70\x2a\xe8\x18\xf6\x0d\xed\x00\x86\xed\x0d\xa7\x6d\x92\x9f\x73\xdf\xb0\x75\x63\xe5\xde\x95\x43\x1c\x3d\xc4\xae\x0e\x02\x07\x18\x86\xa8\x82\x95\x7b\x57\xd4\xca\x1d\x25\xfb\x86\xed\xb6\x60\xf2\xde\xd5\xd1\x61\xd1\x55\x47\xe7\x21\x53\x94\xb4\x02\x03\xed\x7a\xd3\x04\x16\xa0\x01\x18\x82\xde\xec\x0a\x50\x09\xf6\xef\x5d\x1d\x4f\x4e\xbc\xea\x78\x8e\xce\x6f\xd6\xdf\xa0\x04\x84\xda\x8e\x86\x6d\xd7\x23\xd4\x96\x62\x09\x4d\x27\xf6\xec\x1f\x9b\x7f\x50\x02\x32\x16\x10\x1a\xbb\x32\xd0\x98\xc2\x77\x45\xa8\xed\x9d\x8d\x1d\x7b\x53\xc1\x7e\xbd\x81\xd0\x2c\x60\x30\x6f\xec\x42\x05\xfb\xf5\xae\xdb\x77\xa8\xd2\xd6\x03\xde\x9c\x40\x4f\xc2\x98\xbd\x2b\x9e\x23\xfd\x31\x27\x18\xd7\x8b\x55\xc2\x43\xb8\x3f\x66\x0b\xd9\x07\x66\xee\x5d\x19\x51\x2c\xdb\x9b\x98\x90\x82\x31\x7b\x57\xa4\x60\xe9\x91\x37\x0c\xb0\x05\xcb\xf6\xae\x06\x61\xa0\xa2\xd8\xf5\x3b\xf3\x0a\x33\xf7\x6e\x0c\x23\x1e\x39\xbb\x31\x8c\x85\xa3\xb0\x21\x2a\x77\xf4\x09\x1b\xe0\xcd\x82\x35\x7b\x37\xa4\x60\x0c\xd8\xbb\x21\x05\x03\x90\xb1\xe1\x7a\x2d\x50\x28\xee\x56\x7c\xff\x54\x09\x80\xcd\xe2\x06\xd4\x80\x59\x82\x13\x64\xb7\xdb\x46\xb3\x75\x82\xb0\x59\xb0\x6b\xef\x66\x68\x07\x6e\xc7\x5b\x88\xcd\x62\x2d\x18\x76\x62\x97\x77\x43\x60\x23\x76\x79\x03\xb1\x59\x30\x71\x6f\x98\x5f\x0b\xe0\x56\xdb\x60\x96\x7e\xee\xc9\xff\xd8\xe3\x1a\xa2\x36\xd1\xcf\xbb\x21\xc9\x11\xbe\xbc\xdb\x53\xf8\x4d\x89\xc6\x80\xa0\x51\xde\x80\x60\x16\x18\x6f\x76\x73\x1a\xb0\x62\x05\xb5\x24\x7a\x79\xb7\x41\xd5\x59\xb1\x0d\xb5\x6e\x1f\x96\x30\xce\xbc\x86\xc9\x77\xff\x82\x6c\xb8\xc6\xed\x86\xa4\x8e\x1d\x7e\x63\x3c\x2a\xc4\x3b\xef\xc6\xd1\x0a\xb2\xd5\x6e\x48\xed\xd8\xe7\x77\x43\x3c\xc4\x3e\xbf\x1b\x66\xca\x0e\x55\xe8\x06\xe3\xb2\x60\x9f\xdf\x2d\xcc\x88\x92\x9d\x99\xac\xd9\xb6\x29\xcc\xf7\xd9\x44\x50\xc7\xed\x06\x1a\x0f\x76\xfb\xdd\xf6\x2f\x40\xc2\x3f\x28\x8d\xa3\xb5\x21\x73\x72\x8f\xda\x90\xd8\x16\xae\x4e\xbb\x39\x2f\x39\x65\xb1\x41\x15\xe2\x7d\x77\xe3\x56\x80\x05\x7b\x03\x1e\x59\x08\xac\xde\xdd\xd9\xc7\x4a\x06\x30\xb2\x14\xe6\x43\x77\xc2\xb1\x92\xbb\x13\x8e\x95\xdc\xf1\x51\x79\xae\xe6\x1f\xb0\xa3\xb0\x92\x0d\x26\x7a\x70\x9e\xdc\x9d\xa9\x88\xa5\x7f\x77\x84\x5a\x2c\xfd\xbb\x33\x2d\xb9\xa7\x6d\x6c\x46\x85\x40\xec\xdd\xb9\x3a\xe0\x01\xb0\x0d\x32\x7a\xf0\x6a\xdc\x9d\xab\x03\xee\x00\xbb\x23\xdf\x7a\x00\xc1\x99\x7b\x5e\xe2\x1f\x28\xa3\x1f\x65\xe8\x0e\x39\x01\xf0\x2b\xdb\x58\xa4\x47\x81\xba\xb3\x1f\xdd\x6c\x41\x40\x45\x96\x9b\x25\xde\x11\x76\x31\xf4\xef\xce\x85\x02\xdb\xfe\x26\x2e\xa9\x60\xdb\xdf\x9d\x0b\x05\xb6\xfd\xdd\xb9\xd9\x61\xc3\xdf\x9d\x99\x77\x73\x1c\x63\x30\x4a\x8f\x92\x62\x1f\xf4\x0c\x0b\xd9\x10\xa5\x07\x54\x97\xdd\x99\x93\x20\xbf\x7c\xa8\xef\x65\x1b\xfb\x06\x27\x2a\x26\x9c\x6f\x5c\xf9\x2f\xa9\xcd\x27\xf6\x1e\x2c\x55\xdf\x10\x21\xf9\xf2\x37\xb8\x68\xa7\x87\xbf\x71\x01\xd7\xfd\xfb\xdd\xff\x22\xe9\x7c\x83\xdd\xe4\xef\xef\x01\xc4\x96\xf9\xcf\xbf\xd0\xec\xdf\xb8\x16\x98\x6d\x37\xbf\x03\x3e\x59\xde\x4f\x22\x51\x53\x16\x28\xd9\xf8\x76\x7c\x23\x83\xa9\x76\x51\xb7\x0c\x44\x52\xe6\xdb\x0c\x94\x53\x22\x4f\xb0\xfa\x40\x4e\xf9\x06\xa8\xd7\x20\x4e\x7f\x62\xf2\x61\xe7\xfe\x86\xcc\x69\x89\xfa\x80\x74\x8d\x6c\xff\x11\x96\xf2\xb7\x5c\x78\x29\x90\xe7\xbf\x01\x16\x23\xb2\xe0\x27\x2f\x2a\xca\x9c\x8f\xd0\x95\x1b\x19\xf6\x1b\x72\x54\x54\x7f\xe7\xff\xfe\xa7\xfd\xea\x06\xe1\x39\x02\xf9\x27\x8f\x2a\xfa\xb6\x6f\x80\xe9\x58\xad\x03\x4c\x56\x57\xa7\x2c\x10\x8e\x70\x50\xfd\x06\x3c\xbc\x58\x56\xbf\x01\xa5\x25\xb6\xde\x8f\x30\x99\x5a\xfe\xb7\x3b\xea\xd3\xfe\xb7\x8d\xed\x23\x82\xa6\x5f\x0f\xfd\xd5\x04\x58\xb5\x6c\xa0\xa6\x1e\xe6\x01\xe8\xde\x78\xb4\x7e\x03\x06\xbd\xdf\x78\x77\xc1\x56\x29\xbb\xa7\xbf\x44\x35\x1f\x9c\xaf\x9d\xed\xeb\x1b\xd0\x63\xfe\xe6\x0d\x04\x5a\x8f\x63\xd9\xdf\xbf\xb0\xfc\x1f\x5c\xb0\x37\xc8\x40\xdf\x90\xef\xf9\xe6\x1d\x78\x61\x41\xd6\xfe\x08\xd6\x11\x69\xfa\x1b\x20\x36\xc1\x15\xf3\x8d\x87\x7e\xb7\x3e\x83\x7c\x1a\xf5\x1c\xe0\xe9\xd9\x16\x20\xe5\x6f\xcb\x05\x30\x18\x4f\x8f\x6f\xc0\x52\xf7\xcb\x7f\xa6\xff\xd5\xae\x29\x1f\x30\xef\xc8\x89\x61\x59\x13\xd4\xf5\xc6\x3c\x00\xd2\xeb\xd7\x3f\xc0\x99\xe1\x55\xf2\xc1\x2f\xfb\x77\xec\xc1\x57\xec\xbf\x7c\xa0\x21\x18\xa4\x9f\x1d\xfa\xbe\x9d\xaf\x40\x80\x11\x16\xff\x81\xaf\x58\xfb\xef\x1d\xe6\xd6\x43\x7d\x16\x38\x9f\x95\xb2\xd6\xf7\xbf\xe6\x5f\xdc\x7f\x91\xab\xbe\x11\x50\x3f\x3c\xf4\x73\xb4\xbf\x08\xd7\xdf\x80\x5a\x13\xb4\xf4\x6f\x04\xec\x81\xd6\x07\xd8\xbb\xea\x7c\x0a\x59\x1a\xe9\x1f\xc8\xe8\x09\xb0\xfe\x06\x10\x63\xf5\x97\x27\x73\xda\x77\xc0\xff\xfc\xcd\x63\x00\x62\x9b\xeb\xed\xc8\x1f\x37\x61\xc3\xdf\x80\xaa\xa3\xb9\x77\x6c\xa0\xd0\x9c\xc7\x2f\xb4\xb7\xae\x3d\x01\x89\x1f\xea\x06\xea\x3a\xf8\x96\xdf\x78\xc1\xd5\xcc\xa6\x03\x06\x9c\xa9\xe7\x3b\xff\x82\x19\x7f\xe0\x43\xde\x10\x7d\x7d\x04\x3a\xdd\xcd\x3c\xa1\xd9\x2c\xae\x25\xb9\xba\x07\xf5\x01\x47\xb4\xbb\xa7\xc0\x46\x87\x03\xc2\x37\xa4\xe2\x74\xec\xc0\x96\x04\x1d\xe1\xc3\xaa\xd5\xda\xef\xf7\x99\x57\x08\xb5\x1f\x54\xbd\xdd\x35\x0f\x55\xef\xcd\x2d\xe3\x9b\x50\x03\x20\xa1\x7f\xf3\x92\xf2\xe0\xe2\x37\x0c\x83\xac\xff\xf9\xe3\x72\x7e\xf8\xfd\xfc\xe5\xf0\xfe\x26\x7b\x1f\x5e\x27\x1f\x16\x34\x79\x8e\xbf\x79\x89\xc2\x7f\xfa\x64\xe6\xff\x87\xfa\xe4\x9b\xbf\xbd\xec\xe4\xff\x89\x14\x75\xb2\xff\x0c\x35\x3e\x23\xf1\x71\xad\xa2\xe1\x1f\x97\xaa\x23\xfa\x7c\x9f\x70\x22\x95\x9f\x8d\xab\xd6\xff\x5f\xb9\xe7\xff\x33\xff\xdf\xff\xaf\xf7\x7f\xfe\x5c\xf0\x14\xfd\xb9\x2e\xbc\x26\xcf\xdf\x2b\xf3\xf7\x2a\xff\xfd\x0f\x61\x74\x57\x39\xab\xee\xcf\x55\x26\x64\x36\xe7\x1d\xd0\xfa\xcf\x63\x00\x32\x7f\x52\x96\xef\x08\x1a\x5a\x4f\x4a\xf8\x4e\x00\x05\x9a\xff\xe7\xcf\x85\xb7\xde\x79\x54\x70\x4e\x2e\x92\x1a\x49\xc5\xa4\x7e\x92\x8a\x49\x84\x10\xa2\xcf\xc8\x57\x3a\x59\x65\x81\x6b\x4e\x87\x66\xd4\x84\xe7\x41\x58\xf5\x4d\x4a\x98\x02\x9e\x5a\x3b\x29\x34\x2c\xc3\xbd\x04\x77\x7e\xbe\xce\x85\xfc\x3c\x44\xe4\x38\x29\x25\x93\xa2\x7f\x2a\x39\x97\x61\xca\xfc\xef\x7f\x1e\xfc\x4c\x32\x0c\x40\xe7\xb1\xfe\xfb\x9f\x27\xfb\x56\xdf\x26\xbd\x27\xa9\x52\xc9\xb3\xc7\x9d\xc7\x7d\xfa\xad\xff\xcf\x9f\x9c\x2a\xd5\x46\x2b\x86\x31\x3b\xa7\x73\xce\x9c\x07\xb0\xac\xe5\xa4\x34\x2a\x29\xf7\xcb\xd9\xd7\x32\x3e\xd3\xe7\xc1\xf2\x25\x65\x98\x32\xd4\x9c\x90\x62\xce\xc3\x98\xe4\x93\x72\x76\x8a\xf3\xa8\xff\xfd\xcf\x03\xcf\x4c\xce\xb6\x36\x9f\xd6\x3e\xb8\x19\xe4\x9c\xbb\x49\x06\xb3\x91\xb2\x4c\x31\x78\xf3\xa4\x34\x72\xc2\xd3\x16\x95\x58\x86\x04\xe4\x3c\xfa\xc9\x28\x9b\xf4\x9a\xf4\x9d\x24\x3a\x37\x5b\xef\xdc\x99\x37\x47\xa6\xcc\xb9\xfb\x61\xef\x24\x51\x03\xfb\x32\xd3\x97\xd0\x10\x64\xdc\x72\xcf\x23\x91\xc4\x5b\x4f\x36\x89\xf8\xda\x87\x14\xb3\x32\x88\x93\xe6\x0d\x9b\x37\xac\xd5\xe9\xf0\xbc\x6c\xcc\x8a\x93\x44\xdf\xe5\xb0\xa2\x67\x73\x7b\xf0\xec\xcb\xc0\x8b\x9c\x07\x55\xa0\x17\x6e\x47\x81\x8b\x3e\x56\xd2\xcc\x35\xff\x4f\xbe\x69\x0d\x7e\xcb\xf9\xee\x74\x0c\x77\x7b\x0c\x8f\xf9\x7e\x8a\x29\xfd\xbf\xff\x19\x04\x27\x65\xbc\x41\xff\x64\x70\x14\x88\x24\xce\xc0\x28\xfc\xc9\x37\x35\x40\x14\xce\x5c\xde\xff\x64\xbc\x42\x71\x2b\xc9\x35\x51\xcd\x2a\x7f\xd8\xe9\x82\x9a\x99\x4e\x35\xcb\xda\x45\x4a\x33\x05\x7a\x9f\x42\xca\x30\x05\x10\xd7\x4a\xca\x36\x05\x66\x01\x72\x2e\xe6\x53\xc8\x87\x9c\x4b\x35\x45\xaa\x6c\x52\xcc\xa7\xc0\x07\x4b\xce\xc5\x7c\x0a\x18\xcc\xe4\x7c\x53\xe7\x7a\x43\xb4\x4c\xce\x77\x31\x85\xaf\xc8\x79\xd2\x43\x5c\x84\x81\x6b\xcb\xd5\x96\x72\xed\x45\x7f\x94\x9b\x5d\xdd\x1a\x1e\xe8\x99\x94\x61\xca\xc4\x27\xf0\x7f\xfe\xe4\xee\xbc\xe9\xfd\x74\x19\x0e\x49\xb9\x3f\x0c\x5a\x3f\x13\xff\xe1\xb6\x59\x30\x27\x9c\x07\xc0\x19\x89\x94\x87\x94\x24\xf6\xdd\x49\x39\x5b\xc6\x79\x00\x28\xf1\x90\xd2\x4c\x19\x67\x14\xcf\xaa\x28\x30\xb8\x9d\xc7\xf7\xdf\xff\x0c\x2e\xd7\x05\xe2\xb4\x3f\xe5\xa2\xb8\x4a\xde\xd3\x94\x73\x12\x11\xd6\x59\x12\x3d\x5b\x12\xe2\xfe\xd9\xda\x4b\x3a\x6b\xe6\x4f\x49\x48\x2c\x67\x9f\x2a\xd9\x3a\xe6\x24\xf9\xe8\x49\x69\xa6\x74\xa8\x0c\x78\x87\xa6\x95\xfc\x50\x3c\x0d\x41\x11\x78\x1e\x70\x10\x74\x52\x1e\x53\x20\x50\xcb\xa4\x4c\x53\x80\xbd\x6e\xa4\x6c\x53\x3e\x78\x83\x4e\xca\x30\x1f\x08\x58\x8a\x29\xd5\x14\xe0\x31\xc9\xf9\xc8\x4b\x7f\x4a\x39\x22\x11\xd4\x9e\xc5\xdd\xbd\x14\x78\xc3\xcf\xbd\xac\xc0\xc8\x72\x1e\xcf\x29\xbd\x92\xf2\xfb\x0a\x26\x02\x53\x2c\x1d\x82\x5e\xba\x0c\x8e\x96\xf3\xa0\xce\xe4\xbc\xac\x33\x8c\xe1\x85\x56\x84\xef\x40\x16\x76\xce\xc4\x1a\xef\x59\x79\x15\x8b\x78\xc5\x8c\x51\xb1\x29\x9e\x07\x44\xdd\x27\xa7\xfa\x9d\x6b\xe9\x79\xb0\x6f\x9e\x8b\x61\x23\x1a\xe6\x3c\x80\x89\x3d\xc3\xd8\x08\x52\x39\x0f\x16\xda\x11\xe5\xda\xdd\x49\xc2\xb3\xfb\x06\x2e\xa1\xd5\x23\x45\x9c\xc7\x11\x74\x70\xf0\x6f\x8d\xb9\xdd\xf0\x4d\xed\x23\xfd\xf5\xe8\xf1\xcc\xfc\xff\x75\x8c\x36\xf8\x0a\xce\xe3\x9c\xdc\x48\xdb\xad\xb3\xf2\x5b\xc7\xb4\x03\x28\x78\xe3\x82\x70\x1e\x10\xa3\x1e\x99\xa7\x01\x49\x7c\x1e\x30\x9c\x9d\x01\xe8\xe9\xf4\xd8\x79\x9c\x33\x08\x3b\x5a\x2f\x9c\x8a\xbd\x14\x78\xa3\xce\xe5\xad\xc3\xc8\x71\x1e\xc0\x39\x9f\x71\xea\x0f\xfd\xdb\x1f\xf8\x2d\xc0\x28\xe8\xe3\x5c\x6c\xcf\x03\xc9\xf0\xba\xff\xe7\x4f\x9f\x8c\x5d\x27\xbe\xba\xb1\x72\x3a\x14\xbc\xe7\xb1\x20\x8a\xc8\xff\xf3\xe7\xc1\xb0\x73\x1e\x10\x1c\x43\xac\xfc\x9c\xa2\xce\x83\x36\x42\xf7\x0a\x92\xfb\x79\x54\xe8\x48\xa0\xb9\x39\x5f\x9c\x47\x06\x5d\x55\x66\x1a\x92\x2a\xe4\xd9\xa2\x1d\xe3\x25\x7b\x1e\x42\xff\x43\x35\xf1\x3e\x24\x9d\x6d\xb1\x65\xc1\xbd\xaf\x53\xe2\x98\x10\xd2\x62\x1a\x9a\x44\xdc\x9e\x07\xe8\x51\x02\x83\x9e\x2d\xe0\x3c\xca\x59\x41\xc0\xeb\xc5\x91\xd0\xce\x83\xe5\x2a\xcc\xe9\x11\xce\xce\x43\x50\x21\x90\x43\x4f\x7b\xcf\x83\xa5\x07\xfc\x1e\x2e\x31\xe7\x01\xaa\x13\x10\x87\x71\xf6\x8a\xf3\x40\xb4\x00\x52\x33\x18\xed\x19\x6e\x19\x20\x4a\x06\x1b\xf6\x8c\x4c\x25\xc0\x7c\x04\x19\xfa\x3c\x16\x49\xe0\x96\x9e\x83\xf6\x3c\xcc\xcb\xa4\x8f\xa4\x02\xb2\x68\x02\x31\xb5\xd8\xa0\x33\xda\xa3\x08\xba\x5a\x1e\x93\x86\x90\x34\x24\x4d\x93\xc8\x1e\x44\xc8\x60\xdf\x9e\x30\x8d\x8f\x22\xb2\xea\x6d\xbd\xce\x36\x3d\x8a\xa0\xaa\xb7\xb5\xaf\x54\xb5\x8b\x3d\x6b\x55\x2b\x25\x82\xfe\x18\xd5\x66\x57\xb2\x07\xc1\x94\x70\xe0\x3f\x33\x1a\xd9\x03\xb2\x8a\xc3\xcd\x79\x24\x31\x6d\x48\xb2\xf6\xe7\xec\x1c\xec\x83\x13\x57\x9c\xf3\x00\x09\x36\x89\x64\xeb\x70\x74\x81\x6e\xe9\xaf\xee\x70\x9c\xf9\x35\x88\xae\x98\xf1\x98\xfd\x63\xf6\x54\x95\x53\x77\x06\x7a\x58\xcc\x7c\x33\x1e\xf3\x3a\x9b\xe4\xb8\x05\xcd\x7d\xac\x3d\x4a\x76\xe4\x98\x49\xd0\xf2\x79\x90\xbd\x55\x1d\x76\xce\xa0\xaa\x56\x62\x58\xd5\x01\xf0\xac\x25\x0e\x07\x0d\x30\x25\x2c\x7a\x33\x86\x83\x36\xa9\xd7\x0f\x3a\xd7\x66\x9f\x89\x3d\xe0\x21\x98\x30\x9d\x9f\x07\x40\x1c\xce\x89\x69\x25\x26\xf8\xbb\xce\x9c\x69\x5e\x40\x1c\x10\xc3\x39\x63\x59\xaf\x45\x5e\x7e\xb8\xcc\x0b\xbc\x25\x54\x09\x13\xe2\xf2\xf3\xa0\x5e\x00\x46\xc6\x72\x68\xcf\xb6\x3a\x6e\x93\xc2\x7a\x05\x6d\xfc\x21\xf8\xda\xc6\x20\xfb\x1f\x78\xaf\xfd\x15\x34\x5b\x7c\xde\xb0\xaa\x1b\x48\x5d\x27\xd3\xb6\x12\x9b\x2e\xec\x64\xff\x3a\x42\xf8\x1e\x26\x67\xe1\x6b\x89\x2f\x25\x3e\x62\xfd\x5a\xe2\xcb\x04\x78\xfc\xd0\x41\x7b\x85\xc0\x11\xf9\xd7\x12\x5f\x3a\xc7\x29\xf7\xda\x39\x9f\xd9\x8b\xf7\x6b\x5e\x9f\x90\x33\xe4\xf5\x99\xd7\x47\xed\x07\x25\x7e\x0e\x1a\xf0\x26\x58\x12\x67\x7c\x76\xce\x47\xed\xc5\xd8\xbd\xe8\xe8\xcd\xd6\x71\x0b\xa9\xeb\x3e\xc1\x5e\x38\xaa\x48\xb9\x57\x98\xb4\x45\x9a\x01\xf0\x97\x36\xee\xb3\x4f\x0c\x68\x58\xe6\x76\x9f\xc0\x03\x6b\x80\x58\x37\x71\xba\x3a\x8f\x8f\x24\xb2\x77\x9f\xc0\xed\x6a\x10\x8b\x31\x77\x9e\x26\xf1\x21\xb0\xa1\xdb\x7d\x62\xbb\x4f\x08\xcb\x9b\xa9\xfd\x06\xe0\xb4\x8a\x92\x5b\x6e\x93\xaa\xc8\x30\x24\x35\x93\xa8\x57\x11\x77\xd8\x7a\xb1\x4f\x10\x74\x31\xb7\xfb\xc4\xbe\xc9\x8b\xe9\xbb\x6f\xf3\xba\xcd\x0b\x50\xe3\xdb\x7a\x01\x51\x4b\xf0\xc5\x04\x20\xfe\x3c\xf8\xb0\x0a\x47\x5c\x4d\xa2\x44\xc0\x68\xb7\x5b\x07\xae\x62\x03\x59\x75\xe2\x0d\x76\x1e\x54\x02\x38\x5a\xc0\xe3\xcf\x43\xa4\x14\xdf\xb2\x8d\x6c\x30\xd5\x8e\xee\x96\xd8\x01\x31\x7e\xf2\x3f\x8f\xe2\x09\xa5\xfb\x79\x88\xfe\xc2\x30\xbb\xd9\x6c\x00\x70\xab\x88\xcd\x6e\x36\xbb\x6f\x81\x56\x00\x38\xb6\xa8\x47\xec\x15\xde\x72\xb3\xd9\x88\xf8\xd5\x1e\x46\x14\x9b\x1b\x44\x45\x42\x7a\x27\xa4\xf0\xe7\x41\xe3\xc0\xbf\xdd\x6e\x36\x9b\xcd\xa6\x8a\xdb\xec\x66\x43\xc0\xfd\x68\xc2\x34\xbb\xb3\x6c\x76\x16\x82\x7d\xe7\x1e\x76\xc1\x11\xc2\x06\x11\x10\x73\x4f\x7b\xf8\xc8\x13\x03\x49\x6a\x6e\x77\x83\x0d\x72\x2f\xb1\x07\x73\x23\x4a\xcd\x1d\xa2\xa3\x50\x7b\x97\xfe\x66\xe9\xe3\x23\x33\xb7\x4b\x7f\xb3\xf4\x39\x8a\xe7\x76\xe9\xc3\x30\x3f\x40\x41\x9b\xf8\xbd\x9d\x87\x79\x99\xe4\x00\x6e\x6a\xcf\x36\x02\xf7\xfc\x79\xf0\x21\x1b\x04\x14\xf4\xe7\x41\x89\x9c\x36\xdb\xa5\xbf\x3f\x4a\xec\xb4\xf1\xb3\xf6\x44\xb5\x65\x36\x67\x3c\xe7\xce\x83\xec\xc5\x9b\xfe\xcc\xfe\xac\xda\x81\xe3\xff\x7c\x3d\xfc\x5f\x91\x36\x04\x2c\xf6\xf0\x7f\x2f\xb2\x17\x93\x18\x49\x70\xbe\x04\x1c\x10\xe0\x3c\x5f\x04\x89\xf9\xa6\x02\x1c\x34\x79\x25\xea\xf5\x66\x00\x98\x2f\xd1\x9f\xcd\x9e\xa3\x38\x8b\xdb\xec\x51\x8c\x17\xdd\x00\x0a\x6c\xe2\x38\x77\x1e\x8d\x24\x50\x8d\x4b\x37\x09\xac\x88\x5b\xf4\xe8\x65\x12\xd9\x17\xb1\x9e\xcd\x5e\xe4\x1d\xd6\xd3\x7b\x9b\x97\x70\x2c\x22\x3c\xdf\xe6\x75\x83\x44\x7d\x0b\x18\x1d\x26\x09\x1d\x42\x55\x5d\x88\x2f\x0b\xb1\x9b\x57\xf5\x43\x0e\x6c\x1c\x83\x26\x7e\x7d\xe7\xf1\x83\xeb\x20\x89\x0d\xf5\x15\x20\x9c\x6d\xf7\x6d\xb6\xb1\x01\x57\x2d\xe4\x34\x77\xfe\xf9\x9e\x3b\xff\xc0\x21\x7e\x02\x6f\x70\x1e\xf4\x2a\x3b\x31\xae\x82\xe7\x41\x89\x8d\xaa\xb6\x6d\x12\xcd\x16\x8e\xda\x15\xfc\x76\xf2\xfa\xa1\x52\x9b\x17\x11\x14\x58\xa8\xe7\xeb\x7a\x7c\x5d\x8f\xec\xd7\x6f\x77\xd0\x1e\xda\x08\x46\x3b\x28\x09\xe7\x01\xda\xf5\x0f\xc9\xda\xaa\xb2\xf8\xba\x60\xd5\x2e\x3e\x18\x17\x46\x77\xe6\x2c\x7b\x42\x50\x27\xce\x24\xfc\x08\xcf\xa3\x80\x7e\x4d\xf6\xae\x0e\x88\xfc\xc7\x23\x82\x78\xf8\xa1\x78\x4e\xc8\x9b\x6f\xd8\x85\xae\x0e\x36\x67\x68\xfd\xcf\xe3\xb4\xf1\x11\xcd\xdb\xb3\xf2\x05\xd0\x32\x5b\x89\x6d\x7f\xb1\x86\x1e\xb1\xc0\x5d\x43\xef\xeb\x87\xe4\xf5\x0e\x93\xce\x66\xf5\xd8\xd1\xaf\x3d\xf1\x51\x55\xc1\xbc\x3d\x05\x5f\x96\xd5\x63\x4f\x7c\x7e\xc8\x1a\x7a\x6c\xa3\x6b\xe8\xe5\xc8\xc3\xc1\x7a\x7e\xae\xa1\x0f\xd1\x18\xaf\xe9\xf9\x79\xe4\xe1\x27\x99\x60\xb7\x98\xdf\x35\x4c\x02\xc6\x7b\xf8\xe1\x6b\x12\x79\x71\x56\x7e\x89\x2e\xfc\x38\xb9\x86\x1f\x7a\x72\x7d\x59\x0c\x6f\x3e\xf4\xe4\x82\xf2\x7f\xe0\x10\x3c\x3f\xd7\x10\xdc\x11\x03\x8f\xdf\x89\xa2\xf3\x3c\xfc\x10\xf0\x6c\x65\xd7\x0f\x4c\x75\xac\xec\xf3\xf3\x98\xfa\xce\x22\x19\x43\x60\xec\xfb\x31\x69\x08\x6f\x41\xd2\x34\x89\x12\x41\x79\xff\x5c\x30\x1f\xab\x03\xf5\xf4\xfc\x5c\x1d\x9f\x78\xd3\x9c\xce\xa8\x58\xff\xcc\xaf\x81\x22\xce\x52\xf8\x3c\xb9\x3e\x15\x62\xec\xd1\x9f\xab\x03\x37\xcc\x01\xe8\xd0\xfc\xba\x25\x22\xbb\xe2\xc0\x3a\x3f\x8f\x93\x8f\xe9\x3b\x86\x48\xe2\x36\x9b\xe3\x04\x0f\xd6\xf9\x29\xa8\x7e\x1c\x14\xc3\x5e\x1d\x8e\x90\xe8\xd5\xe0\xe7\x7f\x23\x9b\x84\x0a\x94\xc8\xa2\xf9\x0d\x6b\x21\xb0\xf5\x25\xcc\xf9\x60\xbc\x3f\x60\x8f\x2e\x9c\x56\xe7\xe7\x59\xf1\x21\x39\x16\x91\xd1\x97\xb5\x5d\x7e\x2a\xa6\xf8\xfa\x7d\xfa\x99\x26\x4a\xb9\x4d\x10\xd7\xfa\x12\x6f\x3c\x9c\x2c\x61\x76\xf7\xbf\x0f\xe4\x4f\x41\xf2\x23\x3a\xa3\x08\xc1\xee\x12\xfa\x80\x58\xba\xf0\xf7\x9c\xdf\xb6\x73\xb6\x95\x82\x47\xe2\x73\x79\x7c\xe2\xf8\xe2\x9d\x39\xf1\x48\x3d\x0f\x2a\xc0\x22\xfd\x5e\xdb\xf3\x5a\x77\x28\x1f\xbe\xcf\x5e\x44\x72\x2c\xce\x81\xcf\x5e\xfc\x2c\x15\x31\xf4\x73\x1d\x7d\x9f\x25\xb0\x7f\x7c\x2e\xa4\xef\x33\x3b\x70\x09\x55\x37\xad\xeb\x32\x3b\x93\xb2\x49\x66\x07\x92\xcd\xc5\xc5\x73\x5d\x97\x8d\x10\x16\xfc\xc8\x8d\xe7\x41\x76\x5c\xc2\x17\x4a\xaa\xf3\x28\xa6\xf1\x5e\xf2\xdb\x24\xc6\xba\xd8\xe6\xe8\xb5\x97\x7a\x6d\xf8\x77\x97\xfa\xaa\x75\xe5\xee\x6b\x7c\x8a\x2a\x70\x5d\xb7\xd9\x09\x5f\xce\x52\x59\xd7\x2d\x02\x88\x49\xcd\x24\x3f\x35\xbb\xb3\x48\xfe\xac\xab\xaa\x47\x13\xff\x1d\xd5\xf5\x82\xbb\x3f\x95\x1f\x74\xfb\x34\x29\x44\x6d\xa7\xb1\xd5\x9a\x74\x2b\x2c\x62\x7b\xb7\xc2\x5d\x10\x77\x72\xeb\xbf\xd7\x6c\xff\x10\xd8\xdd\xf6\xa3\xe2\xbd\x84\x8b\xbb\x1e\xdb\xff\x88\xd4\x0e\xe0\xe2\xf5\x98\x1d\x80\x53\xf8\x3f\xac\x6b\xd8\xed\xa3\x0b\xe8\x0e\x3c\xfb\x78\x4c\x13\xc0\x82\xb6\x0e\x7b\x7d\xfc\x90\xe2\xa9\xc9\xb0\xad\xe2\xc2\x80\x7f\x04\x2c\xcc\x79\x98\x5b\x36\xcd\xdc\x40\x6d\xc5\xc5\x61\x5d\x73\x99\xf4\x09\x03\x01\xf2\xbb\x5f\x82\x99\x8b\x03\xc3\xc2\xa7\xf7\x3c\x7e\x99\x51\xe6\x72\x68\x5c\x6b\x78\xce\xad\x6b\x59\xb7\xb0\xf5\xc0\x68\xe1\xdd\x7b\x1e\x66\x47\x27\xb1\xd4\xd6\xc5\x52\xbb\xed\xa3\x70\x18\x44\x59\xc6\x7d\x6e\x01\x41\x73\x1e\xe2\x33\x50\x91\x6d\x1f\xb9\xbe\xb2\xd3\x75\xdb\xbd\xdb\xca\x49\x12\xb0\xad\xdc\x36\x3b\x49\x01\x5e\x87\x86\xc0\xf3\x2b\x8b\xfb\xff\xda\x30\x57\x84\x20\x7a\xc9\x15\x91\x2e\xf3\x03\x04\x4a\x25\xdc\x4a\xc6\x7a\x82\xb0\x94\x50\xb2\xac\x04\x40\x29\x77\xff\x95\x5c\x10\xc9\x05\x01\xe9\xc3\x82\xa6\xff\x3c\x8a\x78\x10\x24\xdd\x26\x75\x21\xef\x05\xc3\xb7\x00\xf1\xd2\x01\x26\x4b\xc9\x02\x58\x22\x80\x2c\xac\xe4\x12\x49\x39\xfb\x25\x69\xb9\x98\x86\x8d\x8c\x71\x4e\xa8\xd4\x57\x72\x25\x15\xd1\xf6\x5d\x49\x09\x14\xbd\x8b\xe3\x64\xa5\x6c\x7d\x31\x13\x5d\xc5\x22\x8a\x95\x2b\x66\x47\x45\x90\x02\x97\x8e\xd3\xa8\x0e\x16\x7e\xd3\xe7\xf1\x09\xc8\xcf\x6b\xb7\xfd\x86\x18\x88\xeb\xc6\xc2\xa5\xfa\x3c\x2c\x00\x38\xc1\x84\x68\xb8\x92\x6b\xb5\x88\xd9\x7f\x5b\x39\x8d\x63\x68\xac\x96\x8a\xba\x85\xa2\x2e\xe1\xd7\xb1\x52\x35\xbb\x6a\x76\x22\xf4\x57\xeb\xcb\x92\xbe\x7f\x5f\xda\x7c\x11\xcc\x8b\x18\xfd\xd5\x12\xaa\xcd\x67\xe2\xa4\x6a\xf3\xab\xa5\xc2\x28\x81\xe7\xf6\x9f\x95\xba\xdf\x8a\xd0\xdf\x1d\x1b\xe3\x62\x99\x9a\xa9\xdb\x7e\x77\x08\x17\x66\xea\x66\xe7\x76\x80\x5b\xd2\x4a\x8f\x83\xf3\x98\x1d\x10\x93\x38\x78\x9f\x87\xd9\xf1\xe9\xe3\xb8\x0e\x19\x06\x9c\x72\x6e\x07\x1a\xc3\x6e\x2b\x37\xec\x3a\x77\x08\xfc\x89\x56\x1a\x36\xcc\xd3\x52\x24\xc2\xe4\x16\x91\x5c\xfb\x2e\xb0\x34\x7d\x0f\x98\x87\xeb\x37\x5f\xc3\xf7\x5c\x74\x3f\x32\x83\x6d\x07\xb8\xc2\x7e\x3c\x06\xae\xb0\xe4\x09\x46\x70\xc7\x4a\x3b\x4c\x93\x1e\x80\x22\x5e\x47\xcc\x43\xed\x6f\x9a\x8d\x7d\xe5\x1d\xa0\xfd\xaf\x7d\xf7\x9a\x9b\x94\x03\xaf\x35\xf1\xa0\x83\xa0\x6f\xa5\xcf\x9a\xe0\xdf\x77\xa1\x95\x59\xe9\xb3\xa3\x5c\xaf\x3f\x6e\x00\xd7\x6b\xf6\xb8\xc2\xb3\x61\x81\x1d\x74\x1e\xcc\x8a\x7e\xfd\xf3\x30\x5f\xf9\x6a\x7e\x61\xe5\x65\x17\x40\x58\x5c\x59\xd5\x2a\xfa\x97\x95\x5d\xf6\xd9\x65\xdf\xad\x00\x95\xcf\x9e\x79\x37\x3b\x66\x76\x8d\xe7\x64\x05\xa8\x53\x9a\x26\x7d\xf2\x23\xc0\x09\x80\xd6\x64\x09\x24\x74\x81\x6d\xb1\x32\x32\xe4\xca\x60\x45\x5f\x68\x9a\x57\x2e\x16\xe1\x94\x86\xc0\x6d\x65\xa7\x74\x76\x4a\x63\x4c\x5b\xb9\xfe\xde\xb3\x0c\xc9\x02\x9c\xd2\xd8\x39\x4f\x1a\xf9\x71\xe9\x59\xb9\x19\x98\x4f\xf5\x9a\xd5\xeb\x56\xa5\x4b\xb5\x60\x2b\xba\xc1\xfc\x7c\xd9\xed\x27\x67\x7e\xfd\x31\x32\x58\xaa\x87\x9e\xd0\xf4\x38\xdf\x9f\x07\x9f\xfe\x92\xfc\xf4\x91\x20\x82\xa9\xaa\x95\x68\x61\x25\x4a\x97\x58\xf2\xe0\x16\x9d\x47\x32\xd0\x9d\xa4\x6c\x92\x24\x08\x92\x31\xb8\x1a\xb2\xab\x41\xf0\xf8\xec\x79\x99\x39\x2f\x51\x85\x2d\xd0\x8e\xce\xc3\x12\xe4\x68\x98\x96\x30\x2d\x81\xb1\x9e\xe6\x36\x8d\x21\x67\x70\xd0\xe5\xaf\xcc\x71\x79\x89\x05\x9f\xa7\x4d\x9d\xe6\x06\x7a\x22\x31\x01\xe7\x61\xe5\xb2\xac\x11\x66\x17\x56\x8e\x4d\x33\x87\x95\x33\x4c\xda\xfa\x7a\xec\x65\x57\x25\x04\x85\x2b\xbb\x2a\xb3\xab\x52\xc8\xf6\xbc\xd9\x47\xb2\x67\x1c\xe0\x09\x8b\xa0\x81\xf3\x20\xbb\x64\x12\xcb\x23\xbf\x52\x50\xb0\x02\xf3\xeb\x40\x80\x37\x5f\x6d\xc4\xeb\xcc\x79\x25\xa4\x68\x72\x4d\xd8\x4d\xac\xc0\x6a\xbb\x3e\x7b\xe9\x93\x22\x82\x85\x9a\x3f\x2b\x02\xfe\xca\x6f\x6e\x7e\x76\x13\x48\xcc\xa0\xc1\xac\x8c\x92\x72\x65\x7c\xde\x2f\x40\x19\x56\x71\x99\x16\x04\x4d\xc1\x44\x8b\x82\x66\x71\xe5\x36\xc9\x18\x14\x34\x8b\xeb\x10\x18\x86\x55\x5c\x87\xc6\x30\x5c\x02\xc9\x13\xc3\x70\x1e\x64\x27\xf9\x02\xfe\x14\xcb\x28\x06\x51\x49\x09\x62\x38\x0f\xfb\x57\x32\x05\x94\x97\xab\x78\x8a\x88\x1a\x5f\x3c\x45\x8a\xd1\xbb\x6c\x84\xc5\xe5\x55\xea\x8f\xaf\x82\x12\x70\x74\x58\x05\x61\xb1\xfe\x92\x5e\x93\xe8\xb7\x1f\x29\x86\x55\x03\x0f\xf6\xc2\x21\x62\x95\x66\x01\x46\xfe\x72\xac\x80\x47\x75\x1e\xf2\x69\x30\x58\xe0\x52\x9d\x07\xad\xfa\x25\xd9\x49\xae\x4b\x91\xc8\x4b\xb7\x93\x3c\xa5\xe0\x42\x5d\xa5\x5b\xdf\xfe\xa3\xce\xa0\xa9\x8f\xd9\x3d\x66\x47\xa9\x9e\x48\x85\x75\x09\xcc\xcb\x2a\xae\xcb\xa2\x7c\xda\xbb\x69\x76\x92\xeb\xb2\xcb\x74\x81\xa2\x6f\x15\x17\xa1\x10\xe7\x1a\x5e\x57\x19\xbf\xf7\x28\xd5\xd5\x85\x63\x4d\x12\x88\x15\x33\xec\x79\x58\x61\x56\x9c\xb6\xd6\x55\x24\x5e\x81\x8c\x74\x69\x6d\x5d\x45\x01\x52\x74\xf1\xa2\x00\x59\x10\x20\xab\xb5\x0b\x6b\xec\xea\x12\x77\x1b\x8f\x9c\xf3\xd0\x0e\x06\x10\x63\x09\xc7\x4b\xaa\x16\x4e\xe4\xe2\xf9\x56\x3c\xdf\x04\x14\x2d\xdb\x12\xb6\x61\xd9\xb2\x6f\x38\xac\x0a\x90\x0f\xa2\x46\x51\x80\x2c\x32\xb1\x08\xb9\x5d\x5e\xdb\xef\x99\xf7\xc8\x90\xe2\xf2\x2a\x9f\x0d\x73\x4e\x7c\x36\xcc\x83\x0b\xfe\xb0\x75\xbb\x22\xee\xeb\x97\x26\x09\x07\x65\xdc\xca\x86\xc2\x5b\xdf\x28\xe0\xd7\xed\x24\x86\x5e\x77\xdd\x4e\xe2\xdb\xc3\x64\xc8\xc1\xe1\x61\x72\x2b\xf6\x0d\xb9\x38\xf2\x63\xda\x30\x64\x9a\x24\xe6\xdd\xed\x99\x23\x72\xf5\xed\x99\xf3\xf3\x4e\x1a\x52\x5d\x28\x80\x61\xf7\x4c\x0d\x58\xd0\x5b\x01\xec\x76\xe9\xe0\x00\xbb\xee\xea\xa7\x1e\x4d\xc4\x0b\xaf\xdb\xb5\x73\x7b\x0c\x11\x2a\xbc\x74\x46\x59\x77\x33\x3b\x68\x39\xd0\x37\xac\x1b\x30\xf4\x4b\xe4\x64\x22\x54\xfe\xac\xdb\x69\x2c\x0a\xf2\xed\xa5\xea\x56\x8a\x1a\xff\x0f\xf5\xe6\xff\xe1\x38\xbf\x1f\x6b\x80\x8b\xf0\x85\x96\x62\xdd\xa8\xa0\xd7\x0d\x1d\x50\xba\x7e\xec\x21\xd6\x9e\x89\x99\x2e\xf9\x3e\x9c\x98\x37\x13\xf3\x5c\xb1\x48\xb3\x5a\x4b\x7e\x4c\x20\xe3\x6f\xb4\x0d\xeb\x46\xb3\x90\x08\x5b\x5d\x77\x58\xd5\xb0\x8c\x5b\x9e\x10\xcb\x08\xcb\x00\x21\xf9\x76\xb6\xe2\x3e\x73\xd2\x68\xa6\x53\x93\xb8\x97\x94\xc4\xef\xbd\xb7\x5d\xb4\xad\x0b\xb7\xdd\x5b\xd1\xeb\x46\xf4\x6a\x56\xc5\xe9\x4a\x68\x4c\x4a\x44\x84\xae\xdb\xe9\x7a\xe3\x52\x97\x04\xe5\xbd\xdf\x62\x9a\x01\xd3\x12\x91\x74\x93\x2c\x81\x7d\x83\x50\x9a\xf3\xa0\x04\xb6\xf4\xfb\x73\xe8\x3f\x1b\xc1\x5e\x0d\x7c\xdb\x79\x58\x2a\xf7\xce\xea\xa4\xae\xc9\x0e\x60\x43\xa8\x0a\x43\x95\x8d\x19\xad\xfe\xaa\x6e\xcc\x44\xce\x24\x2d\xc6\xab\x3a\xcf\xab\xec\x0d\xea\x09\xaa\x97\x20\xf0\xdd\x12\xbe\x1e\xab\x3a\xf5\x6b\x2e\xbe\x96\xe1\x3d\xb1\x04\x09\x42\xe8\x75\x1c\x8a\xce\x83\xb0\xef\xdb\xb7\xcc\x0c\x84\x07\x59\x48\x17\x08\x71\xe7\xc1\xb4\x94\x96\x04\xdd\xf8\xaa\xc5\x02\x38\xcf\xf5\x2e\x5a\xb5\x58\x5f\x7a\x4e\xff\xa2\x55\x8b\xd9\xd1\x4d\xfa\x13\x2d\xfc\x89\x12\x9e\x9d\x4b\x87\xa2\x55\xd1\x57\x48\x0b\x55\xd5\x57\xe0\x63\x94\xa4\x31\x5d\x80\xcd\x9d\x07\x7d\x2e\xed\x0a\x06\xed\x45\xb4\x50\x4a\x84\x50\x2e\x22\x84\xce\xc3\xca\x01\x93\x5b\x5d\x82\xb5\x4a\xc6\x2a\xe1\x0b\x4a\xc0\x55\x51\x02\x2a\x09\x00\x5a\xf7\x67\x55\x57\x20\x80\xcd\xb5\xd9\xd4\x61\x09\x20\x43\x57\xb7\xef\x3a\x7d\x4d\xfe\x17\x5f\x73\xe5\xc8\x35\x57\x5d\x39\xd5\x95\x93\xed\xcc\x39\x4d\x23\xc0\x14\x25\x49\x9d\xd6\x03\x81\x49\xfb\xcd\xaa\xcb\x12\x00\xbc\x97\xab\xaa\xaa\x74\xa8\x12\xf5\x74\xf9\x64\xec\xa4\x25\x05\x2c\x4a\x87\xba\xec\x24\x4c\xc3\xe0\x35\xad\xba\xec\x24\x57\xa1\x3a\x87\xea\x2a\xac\xae\x42\x22\xf9\x56\x75\x15\x8a\x73\x97\xf0\x77\x5c\xc4\x33\x9d\x07\xd9\x39\x7f\xc3\x4e\x42\xe9\x00\x90\xd3\xaa\x2a\x1d\xaa\x1c\xaf\xb8\xcd\xae\xaa\x82\xa1\xba\x6a\x54\x30\x54\x2f\x31\xd5\xe5\x40\xb0\xda\x6a\x2e\x87\x26\xef\x6a\x96\xc6\x46\xd1\xa5\x25\x8b\x78\x48\xca\x26\x15\x8d\xff\xb2\xe0\x54\xd3\xba\x69\x83\x34\x8a\x6d\xd2\xf4\xa2\x3a\x5e\xcd\xdb\x7e\xe3\x66\x2f\x85\xe3\x6a\xde\xec\x9b\x53\x18\xe5\xe8\x6a\x4e\xe1\x26\x15\xab\x97\xec\xe6\xc5\xbb\x35\xdf\xab\x32\xe5\xf8\x5e\xf3\x3d\xba\x40\x67\xb6\xd5\x86\x65\x00\x98\x0d\x52\xdc\x79\xd0\x79\x28\x76\x9a\x3b\x6c\x73\x3a\x79\x1b\x27\xf4\xe7\x3c\x8a\x69\x34\xc3\xb9\xd3\x7e\x0e\x04\x2c\xce\xa6\x26\xaa\x19\xd6\x79\x99\x64\x2b\x7e\x1e\x04\xcc\xeb\xb6\xec\xa9\x6d\x76\x2c\xa7\xe6\xfd\xb4\xbd\x16\x6b\xed\xbc\x3d\x36\x49\x74\x15\x8f\x89\xd5\x39\x8f\x6e\x9a\xef\xd9\x32\x07\xad\xca\xa2\xe3\xa0\xf5\x4b\x3a\x20\x93\xb2\x49\x72\x04\xcb\xc2\xe3\x95\xb1\x67\xb3\x63\x82\x76\xcf\xdb\xce\x79\x0b\x3a\xd6\x22\xb2\xe7\x3c\xe8\x3b\xb9\xcb\xba\xe3\xd3\xc1\x57\x48\x38\x39\xae\x8e\xc3\xcc\xea\xe0\x7b\x75\x14\x34\x1d\x5f\xbc\xd5\xdd\x75\xbc\xba\x11\xf6\x73\x1e\x96\x60\x12\x23\xd1\x6f\xdb\xca\xde\xdc\x55\xb3\x74\x47\x5b\xa1\xa6\x3b\xda\x82\xc7\xfd\xc8\xc8\xfa\x6d\x4d\xdc\x4f\xa4\x18\xeb\x4a\xc3\xc6\x02\x81\xbf\xb5\xba\x3a\x95\x5e\xed\xa6\x21\x0b\x91\xb5\x73\xf2\x78\x29\xeb\x4e\x9e\xee\xe4\x91\xc5\xab\x3b\x79\x3a\xe4\x36\x3f\xd6\xae\xae\xa0\xdb\xe5\xb5\xc9\xcf\xbf\x4f\x74\xbd\x27\x57\xe7\xe2\xf9\x63\xdd\xea\x2a\x65\x3b\x4a\x59\x20\xbd\x56\x57\x29\x8b\x93\x65\xfa\x1d\x71\x5d\xf9\xa1\x3f\x56\xd4\x81\x52\x29\xdb\x1f\xb3\xf3\x5b\x95\xb2\x5d\x22\x1d\x76\x0d\x00\xee\xfe\xac\x3e\x0c\xf7\x85\xcf\x08\x2f\xe5\x25\xc2\xdd\xef\xb0\xe9\xc3\xca\x01\x74\xd7\x99\xcf\x84\x2d\x9d\x87\x05\xb0\x79\x77\x15\x33\xdd\xf5\x81\x99\x7a\x75\xd7\x47\x77\x1f\x95\xad\xab\xab\xa8\xed\xd3\xec\x4c\x5a\x26\x51\x37\x0e\x96\x3e\x6d\xea\xb2\x59\x32\x2f\x2d\x87\x8e\x7d\xd4\xab\x87\xfe\x7a\x0b\x7f\xbd\xf4\xdb\xf7\xbb\xca\xdb\x8e\x01\x24\x49\x2a\xd8\xbd\x8b\x76\xb7\x34\xa9\xbb\xba\x82\x40\x7f\x2d\x95\x8a\xbc\x96\xea\x62\xeb\x2c\xac\xee\x62\xeb\x3f\xc6\x6a\xe7\xae\x8b\xad\x23\x05\xa7\xce\x99\xd1\xbd\x17\x76\x9c\x57\x64\xf7\x7b\x5c\x6b\x8f\x6b\x8d\x85\xf0\xb8\xd6\x9e\x1f\x87\x35\x6b\xed\xc1\x94\xb7\x04\xdb\x03\xb0\x6c\x81\xb5\x77\x1e\x16\xc0\x25\xe0\x51\x15\xf3\xb8\xdd\xe2\xf3\xbc\x1e\x45\xea\xc7\x7d\xd4\x61\x7d\x54\xb7\x3e\xa8\x5b\xc1\x66\x5c\x8f\xba\xd5\x47\xb1\x02\xe7\xef\xf5\x28\x56\x3c\x88\x15\x5e\x8c\x1e\x77\xdb\xc7\x45\x8f\x85\x7a\x3d\xea\x56\x1f\x57\xb8\xbd\xfe\xb8\xc2\x1f\x77\x60\x69\xb1\x1e\x75\xab\x0f\xba\xd5\x2e\xa5\x92\xba\xd5\xc7\xd5\xcc\x35\xeb\x51\xb7\xfa\x28\x56\xfc\x68\xb0\x6e\xdb\xe0\x0a\xff\xd1\x61\xb9\xc2\x9f\xfa\xa3\x03\xa7\x54\x57\xee\xa3\x24\xf0\x97\x9e\x2a\x4c\xdb\x06\x9f\x92\x64\x5b\x5d\xcd\x9d\x2b\xf0\xe3\x6a\x7e\x5c\xcd\x3f\xaa\x29\x57\xf3\xd3\xcc\x4e\x6a\x29\xaf\xad\x4f\x93\x6d\x8a\x52\xbd\xa2\x3e\x5c\x47\xff\x72\x42\x79\x1d\x7d\x5c\xae\x60\xa0\xad\x47\x3d\xd1\xa3\xf3\xda\x8f\xcd\x49\xd5\xe7\xe3\xf4\xf7\xda\xf6\x28\x80\x3f\xca\x0c\x0f\xa6\x9b\x47\x25\xcb\xe3\x64\x07\x66\x63\x3d\x2a\x59\x1e\x67\xb6\xd4\x43\x8f\x33\xfb\x51\x1c\x90\x75\xe8\x09\xe7\x98\x9c\x46\xd8\xa9\x1e\x6f\x90\x8f\xd2\x00\x46\xe5\xf5\xa8\x78\x79\x94\xc9\xa5\x19\x7a\x94\xc9\x1f\x8f\x1b\xef\x63\x8f\xc7\xcd\xb3\x6d\x86\x5d\xf0\xda\x05\xaf\x3c\xe7\x92\x6a\xa9\xfb\x7c\xd0\x7d\xfe\x7a\x40\xdd\xe7\xe3\x1a\x1b\x32\x66\x29\x36\x3c\x2e\x28\xef\x63\x8f\x0b\xea\xf1\xa4\x1a\x7e\xfb\x99\xdd\x67\x76\x74\xb2\xea\xd0\xc7\xc3\x6b\x48\x6a\xe5\x82\x22\xbe\x31\xfd\xb8\x80\x86\x4a\x95\xe1\x12\x18\x92\x59\x29\x4a\x8c\xe4\xb7\x6c\x32\xc3\x1b\xe4\x28\x56\x0f\x21\x74\x78\xb8\x8c\x22\x9f\x96\x49\xaf\x49\x7e\xca\xac\x1d\xce\xd0\xe1\x0c\x1d\x8f\x9c\x5a\x16\xeb\x79\x23\xeb\xcb\xf0\xbc\x19\xb7\x74\x60\x4c\xbd\xe1\xb5\x72\x54\xab\x27\x6b\x14\x3e\xce\x6b\x40\xa0\x4c\xd4\xf7\x1a\x9a\xea\x88\x6a\x4c\x99\xd0\xdd\x35\x54\x78\x12\xb9\x98\x7e\x74\x30\x7a\x23\x2f\xa2\x0d\x4f\x9a\x24\x5b\x66\xd7\xcc\x4e\xaa\x2d\x5b\xd1\xa5\x8e\x67\x36\x0e\x15\x9e\x03\x85\xa7\x94\x9e\xc3\x73\x67\x74\x73\xb3\x8f\x9d\xdc\xa3\x5b\x13\x3b\xc5\xc9\x4d\xec\xdf\x49\xa3\x54\x95\xa0\xe3\x31\x3b\xda\xea\xc5\x74\x00\x9f\x40\x40\xcd\x1a\xcf\x32\x49\xd2\xac\x62\xda\x2f\xb7\x97\xd7\x18\x30\x8f\xa2\x31\x2d\x54\x8a\x30\xa5\xeb\xc1\xa9\x80\x47\xff\x1a\x9e\x0a\xc4\xed\xa5\xec\x7d\x6e\xb8\x78\xc6\xb2\x6e\x5d\xea\x2f\x07\x67\x99\x5d\x97\x27\xcc\xec\x96\xd9\xd1\xac\x70\x6c\xc2\xe6\x3b\xd6\x2a\x32\xc5\x7b\x74\x79\x0e\x0f\x8f\x11\xe6\xf6\xfc\x5f\x1c\xe8\x44\xe9\xfd\x59\x82\x43\x3e\x1c\x06\x43\x35\xe7\xd8\x16\x86\xb4\x3c\x54\x73\x0e\xd4\x9c\x40\xf4\x2d\xe2\xf5\xce\x83\xce\xb1\x35\xdb\xce\x91\x5f\x5f\x32\x95\xe1\x65\x97\xa8\xbc\xf4\xd8\x40\xed\x7d\xe0\x43\xa6\x1f\xcf\xca\x50\x5d\x33\x64\x79\x4f\x4e\x2b\xd7\xe4\xe0\x40\xcb\x04\x40\xaf\xf1\x39\x98\x9f\xd9\x51\x82\xaa\x4f\x62\xf7\x7e\x1c\x79\xc4\xee\x9d\xc7\x27\x87\x19\xb4\x5c\x2e\x49\xc2\xf1\x12\xde\x2a\x6b\x7a\xc6\x11\x59\x97\x7e\x44\x2b\x53\x35\xe7\x94\xc3\xdf\x7b\xe7\xf4\x9e\x3c\x25\xbc\x92\xb2\x73\x2a\x01\x4e\xce\x0c\x30\x01\xd7\xf4\xcc\x98\xc5\x36\x70\xa5\x9a\xda\x0c\x66\xb1\x26\xb4\x7f\x7a\x17\x9d\xb7\xd9\xa1\x5d\x9d\xb7\xd9\xe1\x67\xe2\x6e\x36\x5d\xa4\x93\x45\x4a\xd8\xd5\x9a\x9a\xd3\x67\xd5\x89\xd0\x46\x68\x4e\x9f\xc6\x8c\xd3\xe7\x53\x39\x71\x56\x0b\xb0\x72\x6a\x83\xa6\xeb\x36\x49\xd9\xe6\xba\x9d\xcd\x0e\xb6\x54\x75\xa4\x13\x1d\xa9\x5b\xe8\x6c\xdd\x24\x08\xbb\x58\xdd\x53\x3b\xc5\x44\x9a\xcc\x59\xa6\x36\xa5\xc9\x89\x34\x09\x24\xe1\x9a\x9e\x49\xd3\xd5\x0d\x8f\xc9\x9a\xaa\x4d\xa7\x4b\x19\x1c\xb9\x35\x5d\xca\x53\xe7\x48\xad\xee\x53\x1d\xe9\x64\xd9\x8e\x5f\x92\x9d\x84\xb8\x28\x37\xc9\x9a\xae\xd1\x39\xcd\x4e\x42\x35\x25\x37\x62\x11\xd2\x48\x26\x2d\x93\xe4\x80\xa3\xd0\xf9\xfb\xd2\x36\x54\x29\xda\x2c\x74\x99\x1b\xab\x6a\x2e\x73\xc3\xc5\xc5\xed\x7d\x7a\xdd\x9d\x61\xbb\x9a\x8c\x6e\xb6\xcb\x35\xea\xc5\x73\xaa\x60\x9a\xfb\x97\x46\x11\x2e\xa5\xb9\xcd\x8e\x12\xb6\xbd\xf9\xd9\x2e\xc7\x46\x5d\xe5\x74\x0a\x7b\xa1\x5c\x38\x14\xaf\xc5\xa9\x92\x81\xec\x59\xcb\x53\x65\x61\x0a\x93\x5b\x62\x2d\x2f\xb2\x2b\x49\xd0\x26\x8d\x9b\x27\xcd\x42\x7f\x99\xb5\xc7\x2e\x95\x38\x2b\x59\xc6\x2d\xf5\x9b\x65\x48\xff\x25\xab\xff\x52\x59\xb9\x8a\xe5\x4a\xa8\xa6\x18\xb5\x00\xd0\x06\xc5\x6a\x2d\x55\x31\xab\x48\x18\x27\x17\x1a\x9e\x8a\x6b\x81\x2d\xa5\xae\x72\x15\x26\xf1\xba\xcd\x4d\x6a\x34\xdd\x49\x16\xea\x19\x1c\xa8\xd6\xc2\xcd\x6a\x2d\x89\x01\xb5\xe4\x2e\xe7\x3f\x98\xa6\xbf\x93\x71\xa9\x8a\x59\xd5\xdc\xb8\x62\x2d\x55\x31\xcb\xf9\xef\x45\x79\x39\xff\x57\x93\x16\xef\x91\x39\xce\x52\x9b\x7d\x32\x64\x96\xb3\x4f\x50\x73\x66\x59\xf5\x97\xc7\xc5\x72\xde\xc9\x76\xbf\x9e\xdf\x7b\x9f\x69\xbc\xa7\x6e\x7e\x71\xcb\xce\xde\xb2\x97\xb7\xec\xe5\xfc\x94\x3d\x7e\x29\x5a\x2d\x0f\x91\xdb\xfe\x74\x36\x2e\x4f\x87\x5b\x42\x3a\x4f\x87\x05\x98\x9b\x2c\x04\x6b\x39\x1b\xd7\xb2\x5c\xc9\xe4\xd4\xb4\x2c\xa7\xa3\x24\xee\xcb\xe9\xb8\x9c\x8e\x92\xb6\x2f\xa7\xe3\x0a\xbf\x45\x14\x58\xca\x56\x8b\x03\x40\xb6\x81\xb5\x54\xc5\x2f\xb9\xcd\xb4\xe0\x2d\x05\x9f\x85\xe0\x03\x34\xe3\x5a\x9f\x23\xe4\xb4\xad\xf2\x14\x3a\x6d\xd7\xa7\x37\xa9\x1c\x6e\x17\x8b\x2a\xdc\x66\xf1\x1b\x5f\xa1\x2f\x47\x70\x95\x20\xb6\x67\x19\x30\xb3\x42\x76\x43\x06\x32\x9c\xc8\x81\x46\x26\xcb\x89\x1e\xea\x31\x43\x1a\x43\xf6\x36\x83\x68\x56\xa4\x1f\x15\x1e\x05\xa8\xb3\x24\x8a\x26\x11\xc1\xb4\x82\xa0\xdd\x45\x14\xcd\x79\x0d\xb2\x39\x2f\x17\x44\xd3\x24\x3c\xe4\x56\xa8\x2a\x20\x9a\x26\x65\x02\xe7\x17\xd8\xb4\xe7\xf1\x99\xc6\x7b\x2a\x2d\x89\xad\xf9\x09\x42\xc6\xd6\xac\x70\xa1\x68\x3a\x0a\x35\x3e\xe1\xe1\x21\x83\x7a\xb8\x52\xc2\x53\x41\xcd\x43\xa8\xb4\x24\xa4\x26\x5f\x6c\x95\xe1\x41\x11\xf0\xa7\x5c\xd7\xf8\xf7\x71\x1e\xea\x34\x43\xa2\x45\xe2\x2d\x57\xb8\x90\xe2\x76\x98\xba\x04\x7d\x61\x9a\x14\x7c\xbe\x66\x13\x6f\xeb\x24\x03\x9e\x8b\x2b\xaa\x5d\x21\xe1\xa0\xd7\x96\x50\xc4\x82\x03\x60\x85\x22\x56\x40\xb7\xa4\x10\x17\xda\xb3\xc2\x75\xa4\xfa\xda\xb8\x99\x15\x88\x5d\x22\xdc\xaf\x50\xee\x22\x96\x26\x13\xb8\xbd\x42\x19\x8b\xc0\x99\x24\xf8\xfd\x8a\x61\x09\x92\xcb\xb1\x09\x87\x4e\x17\x01\x94\x3d\xc8\x97\x2b\x34\x33\x13\x40\x93\xb2\xfa\xe6\x50\x93\x4a\x34\xcd\x4f\x22\x34\x9a\x66\x85\xeb\x54\x83\x6f\xb8\x4e\x63\xfe\x38\x06\x99\x1c\xda\x9e\x89\xb4\xc9\x57\x91\x5d\xd0\x42\x3d\x34\x88\x45\x5c\xa1\x26\x95\xb8\x9a\x2c\x73\x79\x78\x8e\xc4\xa2\xba\xb6\x40\x0d\x40\x28\xea\xc9\xef\x1d\x8a\x7a\x04\xd9\x64\x20\x34\x97\x41\x36\x2b\x5c\xdf\x6a\x7e\xc3\xf5\x1d\xae\x6f\x19\xc0\x0d\xb3\x59\x81\x55\x2d\xe3\xfa\xbe\x42\xb5\x69\x10\x11\xab\x89\x23\x54\x9b\x12\x67\x73\x5e\xa3\x54\xcd\x19\xe1\xa9\x04\x80\xfe\x0a\x55\xa9\xb1\xad\x1d\xdb\x45\x28\xe1\x85\xf2\x97\xac\xe0\xa1\xfc\x45\x7c\x4c\xbe\xec\x25\x95\x77\xe1\x36\x20\xf9\x76\x7c\xbf\x4f\x3f\xd3\xe0\xe4\x53\x00\xdb\x9e\x5e\x2a\xcd\xb6\x2e\x22\x5b\xf6\xbd\xea\x6b\xd3\x24\x3f\x65\xa8\xb7\xda\x83\xed\x3e\xd0\x39\x34\xb7\x9a\xd9\xed\x6a\x56\xef\xb4\xf3\x2f\xcd\xaa\x30\xb0\x5b\x1d\xc0\x76\xad\x75\xcb\xf0\x9e\xb4\x95\xc0\xbc\xb5\x6f\x25\xb0\x2d\x5b\x65\x33\xc9\xaa\xb8\x72\xd4\x15\x6c\xa5\xb2\xed\x32\x51\x59\x60\xe0\xca\xda\x9e\x37\xda\x64\xb7\x57\x27\xa2\x55\xb2\x6c\xf3\xdb\xab\xd3\x56\xdc\x92\x79\x7a\x7b\xb9\xdf\x5e\x93\xe4\x84\xde\xaa\xea\x36\xda\xb3\xac\x4d\x76\x6b\x44\x26\x8a\x24\x83\x03\xba\x08\x25\x39\x0f\xb2\x93\x28\x79\xab\x50\xdb\x72\xe0\x4a\x92\x4c\x7c\xc9\x79\xb0\x4e\x30\x70\x6e\x17\xdd\xf6\xf0\xf2\x62\xb7\x75\xf8\x20\x90\x24\x83\x22\xba\xb6\x0a\xb5\x2d\xbd\xa6\x7c\xc8\xdb\x55\xb7\x5d\x75\x36\x5f\x85\xda\x76\x39\x49\x8f\x6c\x58\xc9\xda\xae\x13\x9c\xd6\xd7\xf6\x02\xb4\x15\xae\xa4\x32\xde\x6a\x0a\xf6\xf6\x5b\x2e\x4a\x46\x83\xac\x2d\xfd\xe6\x63\x92\x35\x71\xca\x4a\x19\xbc\xf7\xef\x53\x39\x26\x87\x9c\x91\x56\x85\xb8\xaf\xac\x45\x76\x7b\xdd\xdf\x5c\xed\x85\xbb\x5e\xdb\xab\xfd\x76\x6a\x0f\xee\xf1\x5b\x5d\xd9\xf6\xd4\x93\x0e\x78\x3b\xb7\xb7\xf3\x18\xc0\xea\xf5\x2a\x85\x11\x1b\x92\x44\x94\x5e\xaf\x5a\xe8\x17\x35\x58\x96\x9a\x17\x94\xe5\xf3\x60\x71\xa3\xb6\x31\x52\x64\xbd\xce\x6d\xf9\x75\x5f\xe7\xf6\xeb\xdc\x56\x92\x32\x7c\x64\xbd\x0a\x6b\xb2\xea\xbe\x3a\xeb\xbe\x40\x6d\x7b\x41\x7a\x3d\xd0\x5e\x25\x29\xa9\x74\x5f\x25\x29\x62\x3f\x7e\x77\xa6\xd7\x43\xe1\x75\xb6\x8f\x47\x6a\xca\x61\x9a\x25\x70\xc9\x7b\x95\xae\x5e\x45\xa9\x21\x79\xa6\xba\xac\x57\xe6\x46\x19\x27\x95\xa4\x08\x05\xf9\xdd\xad\x0c\x05\x59\x84\x7f\xa4\x22\x37\xec\xab\xa9\x99\x58\x90\xac\x23\xb1\xb1\x20\xeb\x65\x01\x14\xa9\x62\x5f\x17\x00\xc1\x20\x49\x4c\xe5\x45\xcc\xc7\x79\x98\x1d\x23\xf6\x7a\xbb\x20\xde\x23\x13\x0b\xba\x5e\x62\xb1\xd6\x0b\x14\x7b\x72\x6c\xd4\x13\xbc\x7d\xfa\x25\xb9\x75\x73\x03\xfb\x5f\xa3\xa1\xc1\x1f\xeb\xed\x16\xc0\x1e\xf3\xaa\x9f\x26\x20\x24\x89\xaa\xbc\x5e\x97\x13\xe1\x1f\x27\x8d\xec\xd4\x4f\x13\x06\x92\x13\x4b\xe7\xf5\xc0\x7a\x59\x3a\xc9\xc1\xd7\x57\xea\x1d\x36\x0b\xf1\xf0\xd5\x2f\xea\x3d\x2b\x88\x5b\xe4\x3f\x8f\xf3\x57\xf5\xf5\x3b\xcd\xc5\xb9\xe1\x09\x44\x9c\x48\x2a\xf2\xc8\xbe\x3a\xe9\x12\x34\x92\x93\xd3\xca\x8d\xff\xdd\x36\xc7\xc1\x54\x67\xf6\x6e\xd9\x47\x65\x41\xdd\xdd\x34\x98\x2d\x59\xbb\xaf\x0b\xeb\xdd\x96\xe0\xcc\xd5\x8e\xfd\x62\xc7\x2e\xbf\x79\xe5\xd5\xfe\x85\x37\x0a\x3c\xd9\xf5\x7a\xb5\x7f\xb9\xc6\x97\x1f\x23\xaa\xd7\x78\xc2\x44\x52\x71\xc2\x7c\xde\xbc\x89\x0d\x49\xa2\xe3\xae\x4f\x91\x90\xe0\x90\x4c\x10\xea\xfa\x3c\x0b\xbe\xe4\x6b\xb7\x4c\xa3\xbe\x96\x7c\x0d\xaa\x4f\x65\xbd\xcf\xa5\x81\xc0\xf6\xa9\x48\xfe\x8a\x85\x9a\xa6\x84\x45\xe0\x47\x06\x85\x76\x7d\xfa\xc6\xfe\x0d\x02\x61\x69\x7c\x2a\xcc\x88\x02\x49\x05\x70\x9f\xf5\xb9\x5c\x88\xf9\x48\xe2\xb1\xae\x4f\xd7\x8c\x4f\x3e\x51\xe4\xba\x4f\x1d\xda\x07\x6b\x75\xf1\x5a\xfc\x79\x19\xff\x90\x66\x44\x66\x5d\x9f\x0e\x3b\x9f\x0e\xdf\xde\x1f\x3f\x77\x47\xa0\xb2\x93\xe8\x93\xeb\x53\x41\xfa\xa1\xd0\x11\xfe\x71\x7d\x9a\x4b\x89\x7b\xc8\xba\xc5\x7f\x2a\x71\x3e\xa7\x44\xe1\x76\xfb\x29\xd7\x1b\x04\x21\xde\xe3\x32\x08\x62\x19\x04\x51\xbc\x53\x1a\x04\xb1\xbe\x6d\xfc\x04\xbb\xd9\xa7\x1e\xd5\x10\x05\x01\x1b\xc3\x10\x85\xb8\x8a\xdf\x36\x69\x55\x37\x69\x5c\xc7\x04\x93\x0b\x5c\xfd\xcf\xa3\x1b\x19\x61\xda\x30\x8d\x6f\x65\x72\xbb\xea\xef\xdb\xcf\x34\xa8\x4f\xd1\x19\xc6\xe5\x5e\x40\x38\x71\x5c\xe8\x0c\xe3\x6a\x0c\x37\xb4\x24\x17\xca\x87\xb8\x24\xf4\xc4\x9f\x35\xae\x61\xf5\x5c\x82\x00\xc1\xeb\xca\x1f\x97\x1d\x5f\x61\x5e\xb8\xe8\xf8\xd0\xbd\xbf\xc8\x75\x76\x0d\x6b\x87\xd0\x58\xaa\xc4\xab\xd3\xec\xa6\xd9\x99\xd4\x4c\x5a\xb2\xbb\xca\x01\x1b\xa6\x31\x16\x90\x55\xe0\xc4\xff\x27\x2e\x29\x6d\xe1\x84\xb8\x96\xcd\x5a\x12\xc6\x66\xd3\x8a\x69\x8d\xd7\xe8\xa5\x73\x2e\x9e\x87\x05\xd8\x9b\xcb\x02\x96\x05\x40\x2f\xbb\x2c\x00\xa0\x7a\x62\x1b\xe2\x0a\x5b\xea\xd4\x91\x0b\xee\x0a\xab\x1b\xb6\xb4\x48\x2d\x6b\x5f\x42\x26\xc1\x4c\x0c\x5d\xfe\xe3\x72\x86\x55\x90\xde\xaf\x70\x68\x9c\x4e\x72\xaf\xe1\xff\x7f\x1e\x66\x07\xaa\xfb\xb5\xcd\x6e\x9b\x1d\x95\x3b\x53\xeb\x3c\xa0\x2e\x4d\xbe\xf5\x92\xf4\x3a\x0c\x40\xba\xe3\xfe\x7f\x1e\xb0\xa0\xca\xa0\xfb\x5a\xdf\xd7\x02\xe0\x29\xb8\x5e\x47\xc6\xdd\xa4\x3a\x1f\x5e\x2b\xf7\x99\x5d\x95\xdc\xd6\xec\x3e\xb3\x93\xe2\xd6\x76\x39\x85\xab\x34\xad\x1c\xdc\x91\x2e\x3f\x05\x4f\x3e\xa1\x3e\x09\xe3\x0c\x4a\x95\x78\x15\x15\x60\x18\x41\x50\x64\x45\x4b\xc9\x6f\x93\x5d\x2c\x81\x2a\x6a\xc1\x20\x44\x20\x15\x99\xd1\x12\xa7\x74\xa4\x2c\x63\x2e\x9c\xab\xd9\x4f\xb3\xc3\x0f\x35\x94\xf1\x02\x91\x20\x59\x90\xed\xc7\x78\x81\x20\x5e\x20\x83\x70\x13\x09\x3b\x76\x18\x2e\x50\xf0\xcb\x8d\x94\x7f\x05\xd0\xc3\x45\x1a\x5e\x66\x04\x98\x31\x19\x94\xe4\x48\x5c\x44\xc3\x00\x82\x82\xa3\x57\x80\xbf\x7e\x1e\x0c\x97\x1c\xba\x68\x2c\x23\xb9\xa8\x5b\x92\xae\x77\x9b\x26\x5d\x2e\xfc\x05\x84\x13\x9c\x87\x4c\xbe\xcc\xfd\x74\x9b\xdd\x6d\x76\x26\x2d\x93\xa8\x9b\xbc\xb2\xdc\x2a\xc3\x68\x81\xd2\xa4\x13\x46\xa6\x08\xa2\x05\x32\xa1\x22\x61\xb4\x40\x18\x2d\x50\xe4\x47\x33\x5a\x20\x8c\x16\x28\x72\xa3\x19\x2d\x10\x49\x09\x02\x8a\xf8\x48\xcd\xec\x9a\xd9\x99\xd4\x4d\xa2\x6e\xcc\x9b\xe4\xa6\x91\x94\x29\xb8\x1a\x46\xea\x36\xab\x9b\x1b\x53\x33\x75\x27\x44\xb7\x26\x55\xaa\x61\x6b\x02\x44\x6b\x69\x16\xf1\x58\x63\x45\x83\xd6\xda\x3f\x4f\xf3\x48\x8f\x43\x07\x75\x1b\x01\xb3\x41\xb0\xc1\x79\x58\x03\xf9\x80\x87\x95\x1f\xe6\xec\x94\x1c\x7e\x0a\x23\x14\xf1\xb1\x91\xa6\x43\x2c\xdb\x34\x37\xb6\x48\xee\x51\xc6\x1c\x94\xe6\x2c\x9d\x8e\x13\xec\x24\xd9\x49\x3f\xed\x0b\xb7\x32\x02\xa2\x23\x4d\x7b\xd6\x23\x49\x2a\xb4\xe4\xc6\x05\x3a\xfd\x49\xe3\xdb\xe5\x80\x86\xac\xbb\xec\x96\x20\x83\x9d\x07\xc5\x4a\x47\x96\xc2\x3e\x73\x63\xe9\x4e\x19\x37\x16\xc3\x1a\x0a\xd6\xe8\x30\xac\x21\x92\x32\x49\x97\x57\x7a\xdb\x03\x5b\xb2\x62\x3a\x65\x9b\x9d\x32\x89\xb4\x63\xe9\xb5\x7a\xee\x2c\xdd\xc9\xf0\x9a\x9d\xdb\x48\x77\x31\xb8\x8d\x18\xd7\x50\xba\xa4\xd4\xb8\x55\x07\xe1\x0d\x99\x30\xdb\x48\xee\x22\xe9\xb3\xc6\xce\x86\xcf\x7e\x87\x54\x45\xf6\x2a\xa3\x1f\xc2\xe8\x87\x22\x2f\x58\x76\x67\x31\xfa\xa1\xc8\x09\x96\xdd\x59\x08\x55\x48\x85\xc8\xe7\x20\x60\xe1\x3c\xcc\x0e\x36\x5d\x54\x5c\x91\x15\x71\x30\x2a\x47\x46\xc4\x89\x8c\x88\x43\x04\x53\x18\xb7\x10\xd9\xbd\x06\x2b\x78\x64\xd4\xb7\x91\x93\x34\xc9\x5d\xc6\x65\xf6\x82\xcc\xfe\x03\xd8\x74\x18\xde\x10\xe0\xb3\xa5\xc2\x2d\x36\xb2\x3b\x4b\x86\x4c\x8b\x40\xda\xc8\xc5\xd7\x0a\x34\xb9\xf0\x99\x18\x04\x11\xd9\x65\xcf\x85\x35\x32\x92\x50\x64\x25\xa1\x47\xa6\x65\x24\xa1\xc8\x48\x42\x48\x29\x91\x15\x03\xb2\xeb\xfe\x91\x54\xb9\x9a\x9d\x8b\x5c\x86\x2d\xe3\x27\xc2\x58\x89\x22\xb7\xa1\xb1\x12\x01\x58\x5c\x2a\x52\x63\x89\x13\x17\x19\x55\x6d\x91\xfe\x2a\x37\x7b\x13\xb6\x18\xa4\x9e\x10\x3b\x2e\xb2\xab\xfc\x91\xd4\xd8\x55\x6e\x4c\x45\x91\x09\x2b\xbb\xca\x0d\xa0\x28\x32\x62\xe5\x6e\x76\xdc\x13\x8a\x35\x79\x6c\xc5\x63\x8d\x59\xf8\x44\x4e\x9c\x07\x5d\xc7\x44\x34\x7e\x22\x8c\x9f\x28\x4f\x93\xdf\xd9\x52\x95\x34\xa4\xbb\xca\x4a\x1a\x06\x46\x14\x8c\x61\x91\x87\x35\x9e\xd6\xce\x81\x05\xeb\x2c\xf2\x0f\xeb\x8c\xd7\x5c\xd9\xd9\x95\xfd\x3c\xb2\x43\x9b\x9d\xcb\x58\x86\xab\xac\x44\x42\x84\x44\x2e\xc5\xdc\x2c\x61\x59\x82\xfc\xdb\xcb\x12\x96\x25\x30\x3a\xcb\x46\x28\x1c\x3e\x4e\xce\x6d\x6e\x1c\xe7\xc5\x9e\xf3\x38\xcf\x2e\xc4\x21\xaf\xb5\x0b\x31\x7b\x39\x90\x63\x29\x73\x39\x08\x02\x1f\x72\xb1\x83\x5d\x9b\x46\x3c\x14\x29\x97\x8c\x78\x88\x2c\x21\x33\x47\x06\xa1\x0e\xe7\x61\xac\xa2\x54\xd6\x9f\x9d\x0e\x71\x7d\x91\x64\xfb\xf3\x4b\xc8\xe4\x4a\x95\x99\xda\x05\xe1\xd2\x94\x41\xa9\xb8\x34\x0d\x65\x28\x98\x16\xa2\x70\xd3\x08\x22\x1a\x32\xf0\x6a\x51\xb8\x69\x44\x71\xb5\x4a\x81\x54\x5c\xad\x85\xd5\x5a\x9a\x5f\xd2\xfa\x92\x6c\x29\xd2\x87\x11\x0f\x41\xc4\x43\x06\x2a\x29\x8c\x78\x88\xe2\xa2\x96\x1f\xa9\xa0\xa4\x0e\xa3\x20\xca\x90\x19\xdb\x15\x5c\xb2\x10\x91\xec\xeb\x05\x8d\x74\x40\xf0\x90\xc1\x54\x8a\xa2\x68\x50\x5c\xc1\x43\x5e\x6c\x57\x70\x71\x05\xff\xbe\xb4\x0d\xf7\xed\x6b\xb4\xeb\xf6\x53\x44\xea\x5b\xd6\xc8\xa2\x48\x5d\x38\x1d\xb1\xbf\x44\xf1\x74\x2c\x2c\xaf\x5b\x02\x1f\x62\x22\xce\xe3\x93\x99\x1b\x06\xee\x6e\x5b\xbb\xd9\xdd\x52\x77\x9b\x5d\x37\x3b\x2a\xdc\xcd\xae\x9b\x9d\x9d\xee\xf2\x2a\x2e\x2f\x38\x9c\x4a\xb7\x37\xb9\x72\xdf\x10\xf6\x04\x31\x11\xe7\x61\x09\x0e\xce\x63\xd7\x3d\x66\xd7\xe4\x02\xb7\x76\xcb\xda\xd9\xc5\xe1\x58\x23\xa4\xde\x89\x33\xa7\x28\xa4\x16\x84\x54\x99\x99\xca\xb6\x76\xcc\xf4\x1b\xc7\xdf\x28\xdb\xec\xb8\x06\xdd\xe7\xa6\xf9\xcf\xe3\x9c\xb0\x84\x3f\x51\x64\x59\xe7\x08\x29\x4e\x7a\x03\x11\x6e\x6e\xd3\x51\x5e\x2b\x00\x35\x5e\xe1\x08\x29\xaf\x15\x78\x8d\x5a\xbd\xfd\xd4\xbe\xf8\x0c\x51\x45\xee\x28\x9e\x48\x05\xb9\x96\x48\xc3\x28\x9f\xe3\xf9\x59\x82\xf3\xf4\xb3\x7b\x98\xf6\x22\x21\x87\x61\x0d\x71\x5f\xbe\xd7\x64\x37\x1f\xa6\xf9\x1e\xa2\x80\xa1\x0e\x71\x67\x8b\x85\xdc\xf0\x46\x8b\x1a\x37\x62\xe7\xed\x15\xe3\x46\x8b\x1a\xb7\xa4\xcd\x58\x72\xe3\xf6\xc4\x30\x86\xe1\x56\xda\x37\x86\x21\xee\xe2\xb7\x32\x9a\xe3\xbc\x12\xb7\xa4\xde\x97\x49\xb4\xf6\xe6\x64\xb9\xf1\x5b\x8e\xdb\x93\xe5\x6e\x66\xc7\xb6\x7f\x2b\xdb\xdd\xc8\x76\x32\x60\x19\xaf\x10\xb7\x33\x1a\xc0\x92\xb8\xdb\xef\x53\x4b\xb5\x07\x9c\xbe\xa0\x6c\xa6\x1b\xbe\x8c\x10\x66\x33\x6e\x34\x46\xb7\x15\xee\x66\x07\x54\xd8\xad\x68\x75\x3b\x7d\x0d\x7f\xb8\x31\xe5\x86\xe1\x0f\x71\x0f\xb3\x63\x71\xdd\xde\x26\xef\x61\xb1\xd2\xc6\x0f\x8b\x45\xc9\x79\x7b\xb4\xde\xcb\xea\x71\xb3\xbb\xe5\xfc\xbf\x97\xef\xa1\xa9\xbc\xbd\x63\xdf\xce\x8b\x5b\xf2\xed\x62\x19\x0a\x2a\x37\x82\x0a\x08\xbe\x61\x14\x40\xdc\x4e\x15\x69\xef\xef\xcf\xaa\x38\x2f\x24\x1a\xbb\xdd\x21\x6f\x6c\x71\xb7\xcc\xf7\x46\x06\x44\x85\xfa\x0f\x50\xb2\xa8\xe8\x62\xa2\x5e\xd6\x4e\xbe\x71\x5c\xf8\xa2\x3a\x55\x6e\x5a\x51\x9d\x2a\x06\x15\xdc\xb7\x74\xe0\x28\x2a\x83\x00\x81\x74\xdb\xa3\x86\x06\x04\xae\xff\x27\x8d\xf7\xdc\xad\x00\x15\xcd\x84\x25\x47\x75\xb7\xaa\xce\xb2\x1f\x9b\x7c\xfe\x7d\x6a\xb1\x92\x9a\x3b\xcb\x74\xfa\xbf\xff\x32\xca\x9b\x5d\x31\x3b\x5a\xe1\x8c\xc2\xcf\x3f\xdd\x78\x33\x07\xd4\x1f\xe7\xc1\x70\xb3\xa9\xe9\xf4\x1f\xd5\x89\x87\x37\x73\x54\x6f\x32\x04\x02\xe4\x1f\x01\xfd\x1d\x26\xc1\xb4\x2e\x3d\x3a\xda\xd1\xa8\x52\x87\xdf\x32\xa3\xe3\x7b\x11\xb8\xfe\x67\xa2\x88\xa3\x02\x94\x13\x15\xbd\xff\x5f\xd2\x7a\x5b\x5a\x65\xb8\x47\x62\xac\x5e\x64\x6a\xa5\x00\x0e\x34\xe8\x45\xce\x43\x4c\x61\x1a\xd5\x1c\x1a\x97\x04\xc1\xbc\x01\xf3\xc8\x79\xd8\x02\xe6\x75\x75\xfe\x57\xb7\xea\x1b\xda\xbd\xda\xcd\xae\x9b\x1d\x8d\x77\xf7\xae\x4e\x7f\xb6\xd1\xea\xf4\xaf\xee\xd4\x3f\x0e\x7b\x77\xea\xca\x4e\x8d\x25\x3a\xaa\x3b\x75\x75\x45\x00\xa4\x1b\xd5\x15\x51\xdd\xbd\xe5\x45\xad\xee\xde\xf2\x98\xdc\x58\x9d\xa3\x2a\x30\x55\x77\x6f\x1c\xc3\xa3\x7a\x15\xaa\x8f\x45\x90\x9d\xea\x9a\x6a\xa8\x35\xd8\xb9\x51\xbd\x0a\x55\xd8\xfa\x80\x60\x8f\xaa\x0c\x55\x5d\x73\xd8\xa6\xa3\xba\xe6\x0c\xa0\xb8\x7f\x9c\xf7\xd3\xda\x49\x92\xfe\xa3\xbb\xf7\xde\x43\x98\x43\x12\x02\x3b\xaa\x92\x10\x31\x0f\xf9\xd7\xb0\x65\x9f\xb8\x84\x6b\xf6\x35\x1b\xb1\x18\x56\xdb\x4a\x18\x44\x10\xfa\x90\x25\x79\xad\xea\x66\x0c\x79\xb8\x2b\x32\x64\x0d\x0b\x80\x8a\x17\x9b\x7b\x88\x5c\x1b\x22\xd7\xfe\x9a\xb0\x6d\xfd\xf6\x4b\x57\x88\x57\x23\x43\x1e\x6e\x55\x38\x86\x3c\x44\x45\xfc\xba\x89\xe0\x8c\xfa\x9a\xdd\x0b\x2d\x3d\xdb\x75\x55\x9b\x62\x64\xc4\x8d\xe1\x3c\x20\x72\x39\x8f\x97\xd7\xe8\xcc\xcf\x4e\x72\x27\x91\xf6\xbe\x7a\xc2\xc0\xee\x92\x01\x9f\x8b\xaa\xf4\x05\x96\xe9\x79\x8d\x42\xbd\x19\x11\x67\x91\xab\x44\xfa\xee\x2d\x8d\xbd\x45\x05\x59\x73\x6f\x81\x05\x26\xdd\x18\xc4\xa3\x79\x31\x6a\x72\xc5\xb3\x3d\x34\x4f\xa6\xe6\x16\x84\x77\x7e\x34\xb7\x20\x83\x36\xee\x1f\x17\xbe\x5b\x90\xd1\x18\xf7\x8f\x06\xdf\xcb\x12\x41\x19\xd9\x2e\x6f\xe8\x83\x03\x5a\x99\x5c\xf3\xbf\x23\xd5\xa2\xb9\x67\x35\x8f\x41\xd5\x40\x4d\x41\xac\x21\x88\x11\x65\x1b\x46\x79\x44\x73\x6b\xfb\xf1\xe2\x67\xeb\xee\x3e\x86\x3f\x7f\x34\x95\x34\x0d\x46\x5b\xf5\x71\xcd\x6d\xac\xc9\x5f\x5f\xe5\xe3\x2f\xc5\x34\x4a\xe0\x08\x68\x9e\x95\xad\xd8\x6a\xa4\x70\x28\x6e\xce\x83\x7e\xe5\x4e\xd3\x6e\xfb\xd5\xdd\x4e\x92\x7d\xd8\x6f\xce\xa3\x0b\x06\xc0\x90\x78\xa6\x36\x6e\x6b\x77\x63\xd0\x9b\xb7\x35\xe8\x6e\x72\xbd\x4d\xb2\x22\xec\x63\x44\xde\x46\x53\x23\xd3\xd0\xbe\xdc\xaa\x81\x60\xc2\x39\x0f\x18\xff\xe1\x60\x6c\x78\x03\x44\xab\x16\xc0\x3d\xaf\x79\x7f\x6b\x9e\xc6\xb2\xe0\x37\x4f\xe3\x06\xdd\xd5\xad\x32\xa7\x75\x1b\xa1\x30\xa9\x32\xa7\x29\x4c\x36\x84\x49\x7c\x2f\xa2\x79\x1a\x37\xb7\xa8\x66\xfb\xbb\xd9\xb9\x1f\xa9\xcd\x69\xee\x47\x4d\xc9\x11\xbf\xfe\x68\xee\x3d\xed\x31\x3b\x6a\xfc\x58\x63\x0f\x72\x95\x39\xf0\xea\x9c\x07\xed\x77\xfa\x0d\xdb\x3f\xcc\xcd\x99\xeb\xde\x63\x00\xce\x2d\x49\x7e\x73\xef\x31\xb2\xe6\xc6\x5e\x1f\xcd\xfb\x1b\x01\x36\x99\x80\x91\x68\x6e\x3d\x6d\x5a\x61\xb6\x32\x42\x6a\xce\x83\x81\x80\x17\xdd\xc0\x9a\x68\xee\x50\x04\x59\x47\x5b\x8e\xab\xdb\x91\x7c\xf7\xcd\xed\x08\x56\x9e\x5c\x7f\xb9\x39\xe9\x15\x88\x1b\x92\x6e\x0b\x4b\x08\x4b\xa0\x22\xea\x85\x5b\xd8\x06\xb6\x59\x78\x7b\xce\x83\x71\x65\x73\x6b\x61\x2f\x49\xe2\x2f\x87\x7d\x53\x07\x6c\xd4\xcf\xdd\xd9\x68\x8c\xfa\x89\xa6\x2c\xdd\x11\xee\x9a\xb7\xc6\xb6\xcd\x8e\x8a\x78\x6b\x6c\x6e\x5b\x9d\x9d\xb7\xb9\x6d\x35\xb7\x2d\x36\xc6\xf6\xda\x7c\xe5\x67\x15\x49\x22\xf7\x06\xc8\xbd\x99\xd0\x98\x68\xca\x49\xcd\xdd\x4d\x3d\x52\x53\x2f\x6c\xf8\xd1\x2d\xdb\xbd\xe1\x47\x61\xa8\xd1\x2d\x87\x7d\x73\x2f\x23\xe2\x28\x83\x40\x1d\x4d\x5d\x71\xfb\x7e\x68\x12\x7e\x6a\x85\x95\xa9\x65\xb7\x36\x22\x29\xfa\x65\xfb\x11\x3b\x88\x45\x3a\x0f\x86\x9a\xad\xdc\x88\xa4\xe8\x8a\xde\xf2\xd7\x77\x37\xb8\xee\x06\xd7\x91\x31\xba\x1b\x5c\x57\x9e\xea\x2c\xc4\x9e\xcc\x8e\xbb\xa4\x0a\xdf\xae\xe6\x07\xf0\xe7\x74\x4b\x50\x0f\x67\xd1\x79\x24\x5e\xe3\xcb\x9c\x4d\x32\x37\xa6\x7a\x57\x90\x37\x36\xea\x56\x05\xd5\xdd\xae\xba\x22\x96\x74\xf4\x44\x3b\x9d\x87\xd9\x3d\x24\x3d\x26\x59\xe1\xee\x6b\x61\xda\x19\xd7\x86\x68\xdf\x95\xba\xba\xdb\x95\x2a\xa8\xae\xb2\xd8\x40\xa8\x5b\x7d\x93\x81\x50\x41\xec\xd3\x49\xe3\x5b\x65\x2c\x62\x9f\xb2\x3b\x47\xaf\x7e\x0a\x17\x3f\xd1\x45\xd1\x55\x10\x75\xf7\x21\xf0\xf6\xa2\x2b\x3c\x19\x07\x75\x13\x39\x11\xc6\x41\x85\x31\x4f\x37\x34\x28\x61\xcc\x53\x74\xf8\xd9\x6e\x39\xe3\xbb\x4a\xa3\xee\xb5\x00\xb2\xb4\xe8\x5e\x0b\x3a\x72\x51\x73\xac\x95\x8b\xba\x7b\x93\xec\xf1\x5d\x35\xb0\xc1\x4f\xb7\xec\xe2\x06\x3f\x05\x01\x4f\x19\x72\x91\x20\xea\xe9\x4f\x74\x9c\x59\xef\x07\x91\x9d\xa8\xa7\xf3\xb0\x04\x93\xba\x49\x67\x09\xbb\x83\x11\x07\x75\x1e\xc0\xb9\xc8\x2e\xdf\x35\x6c\x75\x0c\x5b\xb8\x2a\x45\x57\x52\xea\xee\x60\x38\x7e\x84\xb1\x4f\xd1\x91\x94\x08\x79\x0d\x82\x9e\xce\x83\x5e\x92\x49\xbe\x6b\xd7\x22\xdc\x29\xbb\xf7\xf5\x69\xd5\x66\x23\x89\x16\x4c\xab\x36\x6d\x28\x17\xe4\xae\x62\x89\xd0\xa7\xec\x76\x68\xe8\x53\x74\xf7\x34\xfc\x3e\xa2\xab\x32\x36\x1c\xea\x56\xb1\xd6\xdd\xc0\xba\xd7\x9f\x07\x99\xbb\x6b\xd8\xea\xcb\xec\xa8\x88\xc2\x53\x67\xb3\x02\x0f\x23\xba\x86\xad\x1e\x8e\x42\xfd\xbf\x50\xb2\x77\x6d\x5c\x1d\x1b\x17\xd1\xaf\x61\x4c\x55\x74\xb7\x3c\x9c\xdc\xa3\xbb\x97\x75\x65\x2b\xd5\x73\x5d\xd9\xaa\x13\x52\x72\xab\x9e\xeb\x6e\x5c\xfd\xb5\x3d\x6c\xa1\x5d\x3d\x56\x77\x97\x7a\x9c\xcc\xea\x98\x8d\xdb\xba\x25\x92\xef\x6e\x49\xdd\x3d\x44\xae\x78\x23\xad\x82\x48\x2b\xdd\xb1\xc2\x48\xab\x78\xdc\x56\xe4\x72\x7f\x94\x91\x1e\xf7\x10\x79\xdc\x89\xb1\x3a\x8f\xcf\xb4\xd3\x67\x4f\x32\xbb\x44\x76\x8f\x49\x7e\x9a\x18\x4f\xb6\x55\xa2\xae\xce\x83\xca\x49\xcd\xfe\x68\xa8\x7a\xb0\x99\x6b\x02\x30\xf8\x2a\x1e\x77\x9a\x81\xf1\xea\x51\x79\x6c\x40\xd6\x3d\x98\x6b\x8f\xdb\x8a\x91\x56\xb7\xea\xbe\x47\x89\x87\x80\xab\x0c\x52\x6a\x3c\xda\xa0\x1e\x2f\x6e\x12\xa6\x13\x62\x75\x1e\x7e\x8a\xa4\xf1\x68\x70\x32\xd4\xea\x1e\x88\x15\x86\x5a\xc5\xa3\x2c\x23\x9b\xf9\xe3\x35\xed\xc1\xe0\xe4\xe9\xf3\xe0\xa0\x15\xcf\x6d\x76\xd5\x4f\xad\x09\xdb\x0a\x21\xac\xf1\x68\x84\x7a\xaa\x8d\x60\x1f\x7c\x54\x46\x3f\x5e\x99\xc0\x59\x8c\xc7\x2b\xd3\xc3\x95\xa9\xa3\x2b\x33\xaa\x2a\x1e\xb7\x0b\x22\x65\xe2\x51\x79\x6c\xa4\xd5\x3d\xd8\xf4\x09\xb1\x3a\x8f\x0f\x58\x19\x6b\xf7\x98\x1d\x3e\x5b\x9e\x79\x8f\xf7\xa3\x07\xbe\x72\xc2\xf6\xe2\x51\x44\x79\x70\x8a\xac\x38\x7e\xc6\xe3\x46\xf0\x70\x3d\xea\x6c\x34\x86\x68\xc5\xc3\xa2\xaf\x97\xb9\xa9\x7f\x78\xc0\x57\xa8\xb2\x85\x3f\x9a\x85\x0c\xe5\xaa\x12\x82\x1b\xca\x15\x40\xf7\xa7\x7a\xb1\x13\x3c\x2e\xc0\x87\x05\x08\xf1\x4a\x3c\x9a\x76\x9e\xb0\x08\x6e\xb8\x8f\xa6\x9d\x27\xcc\x0e\x6d\xcb\xa3\x69\xc7\xb0\xad\x0a\x8d\x4e\x18\xb6\x15\x86\x68\x55\xdc\xe7\xe2\xc1\x8f\x2b\x88\xd4\xd2\x69\x2f\x1e\x55\x6f\xcf\xb6\x9b\xd0\xac\x3c\xca\x01\x0f\x72\x80\x27\xad\x81\x5c\xf1\xbc\xe6\xc6\xb1\xf2\xb8\xea\x20\x05\x48\xf5\xe2\x58\x79\xbc\xab\x3c\xa2\xde\x5c\x8e\x84\x17\x93\x07\x93\x8d\x06\x20\x23\xb4\xc2\x08\xad\x0a\x4b\x75\x0c\xf5\xc2\x46\x68\x55\x70\x13\x63\x78\x98\xc3\x38\x97\xb5\x13\xc1\x38\x77\x1e\xcb\xd7\x3a\x69\x61\x1a\x25\xb0\xed\x0d\xad\x38\xc6\x76\x55\x7c\x5c\xc2\xd8\xae\x18\xd9\x4f\x91\x48\x86\x0a\x8e\x51\x2c\x95\x83\x60\xa8\x32\x1b\xb7\xb5\x63\x4d\x0c\x65\x74\x38\xe5\x32\x81\xa6\x61\x7c\x56\x8c\xea\xa7\xec\x4e\xc3\x49\x6c\xcc\x56\x05\x88\x3c\x86\x07\xa6\xc1\x58\x15\x0a\xe3\x18\xaa\x16\x88\xc9\xd2\x05\x32\x86\x9a\x35\x18\xdc\x52\xd5\xc5\x61\x28\xa4\xc3\xd2\x96\xaa\x5e\x09\x43\xeb\x89\x01\x5a\x72\x48\xc4\x70\x01\x18\x79\x55\x55\x10\x1a\x79\x15\x03\xe9\xbb\xaa\x20\x1c\x4e\x6d\xa2\xad\xb2\xe2\xc7\xd0\x54\x42\xb4\x55\xaa\x80\x18\x84\x61\x56\x41\x68\x55\xaa\x2a\x03\x87\xe6\x93\x31\xcc\x0e\xd1\x0d\x26\xb6\xf3\x30\x3b\x1a\xab\xf5\x04\x5e\xb3\x54\x33\x33\x7b\x28\xf4\x0e\xce\x91\xce\x09\x60\xfc\x54\x0c\x67\x36\xfe\x36\x31\x9c\xd9\xd0\x9d\x9d\x34\x6a\x12\x8e\xf6\x39\x43\x32\x11\xa9\x41\x30\xd5\x79\x58\x02\x52\xfa\xf0\xfe\x3e\xb8\xbf\x77\x7b\x5d\x39\x78\x6c\xa6\x8e\x9d\xae\x15\x93\xd0\xa9\xf3\xa5\x69\x0e\xce\x59\x06\x3a\x94\xc6\x50\x5a\x26\x9c\x4a\x7f\xd2\x18\x1e\x3a\xc3\x55\x02\xa0\x70\x0c\xa7\xff\x10\x41\x0a\x9a\xdb\x18\x8a\xc6\x06\x4d\xd5\xcc\x5e\x3f\xbc\xe5\x13\x3b\x95\x81\x02\x8a\x01\xcc\x7d\x0c\x54\x88\x9d\x9b\xe7\x50\x85\x48\xe8\x54\xaa\x70\xe0\xc6\x50\x32\x1e\x48\xc6\xc4\x94\xc6\x50\x32\x1e\xae\x2f\xd8\x6e\x63\x68\x64\x31\xb6\xaa\x02\xe8\x1b\xd3\xc5\x64\x20\x55\x05\x4c\x31\xa6\x46\x16\xe2\xa9\xb2\xf2\xd8\xf4\x04\x9b\x2e\x9c\xf1\x6f\x7f\xf6\x90\xa3\x23\x26\x32\x72\x2d\xa8\x19\xa6\x07\xdc\x74\xad\x41\xd9\x12\xd3\xb5\x36\x89\x5a\xa9\x00\xe9\xc6\x54\xc1\x38\x39\x1c\xaa\xb6\xb0\xe9\xe1\x40\x68\x95\x9e\xb5\x31\x3d\x1c\xa6\xcb\x8f\xa8\x95\x98\xca\xa1\xd3\xb5\xa6\x89\x64\xba\xd6\x0c\xa0\xaa\xb0\xa2\xc6\xf4\x42\x4c\x1c\x55\x7e\xd0\x95\x4c\xf0\x3d\x62\xb2\xd4\x34\x8f\x4e\xb5\x78\x84\x51\xa5\x4a\x88\x4a\x4c\x45\xd3\xd9\xc3\x34\x3e\x55\xc9\x46\xe0\x53\xaa\xb7\xd9\x79\x60\x4c\xd7\xc1\x8d\x52\x65\x7a\x0d\x9d\x6e\xe7\xd0\x70\xc6\x74\x3b\x9f\x6c\xe7\x9a\x5b\x0d\x52\x8a\xe9\xda\x50\xc9\x36\xb5\x90\x18\xb8\x54\x89\x28\x09\x03\x97\x62\xba\x9d\xab\x65\x9b\xde\x08\x27\x37\xc2\x07\x8f\xa5\xe9\x6e\x6e\x2c\x53\x55\xb5\x67\x2c\x53\x10\xcb\x94\xe1\xad\x0a\x63\x99\x62\x3a\x77\x21\x70\x8b\xa9\x7d\x70\x3a\x4f\x89\x31\x89\xa9\x70\x34\x51\x3d\xd5\xea\x50\xa8\xc4\x36\xe6\xa9\x42\xec\x16\x4b\x81\x69\x39\xb5\xd4\xef\x2c\x6f\x53\xeb\xf2\x3d\x04\x90\xa5\x6a\x68\x39\x53\x2a\x32\xeb\x72\xa6\x18\x07\x55\xeb\xed\x7b\x7e\x9b\xfc\x96\x5b\xd7\xf2\x3a\x45\xe8\x53\x26\x2e\x35\x96\xd7\xa9\x05\xf5\x7d\x85\x9f\x20\xd6\xfd\x4b\x33\x3b\x96\xea\x52\x28\x59\x08\x25\x78\x48\x87\x81\x4b\xb1\x9c\x77\x10\x20\xc6\xc2\x6b\x3c\x96\x93\x4c\xed\x8f\x91\x4b\x61\x94\x52\xf5\x2a\xba\xaa\xd9\xa1\x3d\x56\xa2\x5e\x6a\x8f\x97\x70\x67\xde\x09\x97\x5a\x97\x85\x5e\xb8\xc2\x9f\x18\x4b\xbd\xf0\x42\x2a\xa9\x80\x3e\xc4\x52\x9b\xb2\xba\xd9\x75\x92\xcc\x0e\x1d\x46\x05\x13\x2f\x96\x3a\x8c\xb5\xfc\x14\x01\x79\x69\xb3\x58\x1e\xe8\x0a\x88\xcb\x4d\x6e\x79\x2c\x2b\x97\xac\xf7\x97\xc6\xbe\xd4\x1d\x0b\xef\xe7\xcb\x71\xd4\x31\x43\x6a\x9d\x08\x0f\x52\xdd\x26\xc2\x83\x94\x88\x9f\x4c\xa4\x6b\x84\x0b\x3e\x1c\x5a\x00\xd4\x22\x1c\x5a\xa3\x80\xaa\x2e\x12\xe1\xd0\x12\xe5\x73\xd2\x0a\x69\x66\x97\xcc\x6e\x90\x64\x76\x99\x61\x74\xc3\x95\x4c\x27\xe2\x8c\xb0\x5e\xe8\x11\xba\x63\x45\xb6\x11\xac\xd0\x00\xba\x28\x02\x93\xc5\xd3\x4c\x9a\x26\x59\x28\xfb\x6d\xa8\xd7\x33\xbc\xa7\x7a\x3f\x95\x4f\x27\x88\xf2\xc9\x44\xc4\x07\x44\x3a\xe7\x71\xee\x89\x20\x8f\x05\xd1\x3f\x7f\x82\x20\x9f\xf3\x25\xaf\x69\xb1\x30\xe2\x07\xba\xa8\x30\xa4\x27\xc2\x59\xe7\x25\x36\x54\xeb\x19\xd2\x53\xbd\xc4\x86\x53\x2c\xdc\xb3\xdc\x8c\x42\x4f\x2b\x08\x78\x32\x9c\x4d\x11\xda\x27\xc2\x19\xc6\xd1\x12\xce\xb0\x50\x62\x00\x11\x20\xc2\xeb\x74\x38\xc3\xf4\xcb\x08\xf7\xac\x50\x3c\xf0\xde\x19\x8a\x07\xd1\x6f\x51\xdb\xa8\xb1\x77\xe7\x70\xcf\x72\x51\x84\x67\x37\x31\x3b\x99\x08\xfe\x20\x70\xe7\x3c\x6c\x84\x43\xe8\x4c\x34\x80\xa7\xfe\x3a\x40\x4d\x7e\x28\xd1\x12\xf3\x1b\x92\xdf\x04\xd1\x38\x19\x04\xf9\x88\x69\x0f\x73\x41\x25\x5c\x36\xc2\x0b\x2a\xc1\x38\xa9\x7a\x29\x0b\xf5\xfd\x46\xe6\x3c\x76\xba\xfa\xfe\x70\xfa\x3f\x1c\x86\xe1\xf4\x37\x5a\xa7\xfe\x4a\xd0\x64\x67\x18\x4e\x25\xe0\x20\x42\xed\x3e\xd1\x38\x99\x70\xd9\x08\xaf\x9b\xa1\xc4\x30\x1c\x1c\xaf\x9b\xe1\x6a\x22\x06\x21\xc2\xd5\x14\xef\x2f\x8d\xb6\xbe\xbf\x34\x8a\x1d\xa8\xa2\x24\xae\x89\x10\x14\x72\x20\xd1\x86\x9a\x2d\xe3\x6b\xaa\x77\xab\xed\x3d\x72\xbb\x53\x0e\x56\xd8\xf6\x10\xde\x1c\xc2\x83\xfb\x86\xf1\x35\xb1\x5d\x88\x83\xc5\xbe\x55\x45\x19\x73\x53\xf5\x57\x30\xe6\x26\xb6\x9b\xa7\x17\xa4\xad\xae\x1d\x32\x9a\x4c\x60\x6d\x6c\x57\x98\x61\x38\x75\xf4\xff\x8b\x2b\xba\x51\x3a\xb1\xb3\x39\xb3\x8f\x6e\xd5\x52\x46\xee\xd4\x81\x78\x63\xe4\x4e\x6c\x88\x2f\x2a\xa1\x7e\xb1\xf5\x58\xdc\x9c\xc2\xcd\x7b\xd6\x56\x1d\xb4\x99\xbf\x0d\x08\xb8\xd8\xce\x5f\x63\x6d\x1a\xe1\xfc\x61\xac\x4d\x40\x13\x93\xda\x65\xa7\xa9\x0e\x82\x27\x26\x7b\xbd\xdd\x5e\xf9\xa0\x75\x39\xaf\x0d\xd2\xac\xde\x63\x1a\x5b\xd5\xd6\x2b\x61\x0f\x8b\x60\x5b\xda\x2a\x92\x37\x8a\xe4\x61\x4d\xd4\xcc\xec\xe1\xa7\xac\x38\x83\x68\x02\xb6\x96\x93\xc6\xb8\x38\xf5\x8d\xa2\x69\x90\x8f\xc5\x56\x91\x4c\x30\x4d\x1e\x9c\x69\x5b\x45\xb2\x81\x35\x0d\xbf\xfe\x30\xb0\x26\xa0\x62\x49\xb2\xae\x85\x5c\x2c\xb1\x39\xd5\x9b\xb7\x8f\xed\x25\x0d\x32\x96\x93\x46\xa7\x38\x33\x37\xca\x8c\x06\x7e\x5a\x6c\x95\x19\xfb\xf5\x5b\x54\x8e\xdb\x59\x68\x14\x4d\x4b\xce\x2e\x67\xa1\x11\x33\x4d\xc7\x03\xe9\x57\x82\xc0\x99\xec\x65\x7e\x7b\xfd\x32\x88\xa6\xe1\xb2\x1e\x92\xad\xc4\x7b\x59\x65\x3a\xef\x55\xe9\x01\xdb\xca\x49\xbb\x49\x1b\xa6\x59\x15\xf4\x2f\xaf\xb3\xd5\x88\x99\xa6\x4f\xb8\x11\x33\xf1\x12\x15\xda\x60\x05\x8e\x57\xcd\xe9\x9b\x2c\x97\xad\xd9\x90\x99\x78\x39\xea\x07\xde\x25\xaf\x47\xfd\x9b\xcd\x8e\x65\xfd\x3a\x45\xdf\x6c\x55\xd8\x26\x5e\xa7\x28\x9c\x2e\xa9\x65\x6e\x91\x92\xba\x04\xa4\x2e\xd9\xb5\x04\x75\xcb\x9f\x80\x30\x25\xb5\x8c\x04\xf8\x7a\xac\x13\x39\x93\x75\xfd\x79\xdd\x74\x5f\x27\xb2\xfe\xb3\xaf\x13\xf9\x85\x8a\xb7\xe9\x40\x2b\xa5\x4a\x18\x46\xa3\x87\x90\x61\x34\x61\xc8\x4c\xcb\xb7\x69\x96\x80\x4f\xcf\x40\x60\x7d\xf5\x85\x23\x4a\x26\x35\x1d\x25\x5e\x35\x9d\x86\xcc\xe8\x48\x64\xc8\x4c\xbc\x4e\x77\xdd\x52\x5f\xa7\x3b\x91\x33\x27\x8d\xca\x79\xc1\x33\x3e\xa6\x79\x5f\x92\x31\x25\x08\x93\xc9\xc3\x81\xf0\x82\x47\x48\x4c\x6a\xd9\x01\x53\x87\x69\x7c\x0c\xa8\x24\x61\x7c\x4c\xbc\x2e\x1e\x7d\x3c\x5f\xd5\x19\xc6\xcc\x34\xaf\x38\xaf\x2b\xe5\x1d\x66\xc7\x1e\xf0\xaa\xc4\x7c\xa7\xd9\x99\x54\x4c\xa2\x22\x1c\x2f\xaf\x1e\x73\xaf\x30\x78\x99\x03\xe1\x55\x89\xf9\x72\x46\x10\x14\x1c\xaf\x67\xc4\x7b\x2e\x8d\xa9\xe9\x31\xf9\x7a\x5d\x24\xbe\x25\x35\x62\x27\xe2\xd5\x65\xdd\x60\x17\x75\x3e\x06\xbb\xc4\xeb\xd2\xd1\x05\x4d\x7e\x95\x80\x5f\xe5\xa4\xd1\x7c\x7d\xdc\xde\x73\x33\xcb\xc3\xb9\xe4\x6a\x82\x73\xe5\xbc\x46\x9a\xde\x3e\x70\xaf\x14\xf8\xd2\x03\x02\x96\xf3\x18\x24\x51\x5f\xaf\x64\x46\xd3\x34\xfd\xc3\x64\x5d\x89\x0f\x96\x7d\xc2\xaa\xc2\x00\x9b\xf8\x5c\x5f\x70\x1b\xc4\xe7\xfa\x32\xe8\xa6\x79\x83\x91\x8a\x25\xe0\x5d\x39\x69\xa7\x33\x3f\x95\x8a\xf0\xaf\x14\x35\x4d\x9f\x0e\x6d\x04\xda\xa4\x06\x45\x41\x7c\xda\x4c\x3f\x97\x17\x1c\x05\xf1\x29\x5b\x7d\xae\xa5\x42\x37\x7d\xae\x25\x78\x5c\x4e\xda\x20\x2d\x4c\xdb\x14\x41\x76\x7a\xb1\x7f\xc5\x52\x79\x4b\x0d\xe2\x87\x6c\xd5\xf4\x38\xf9\xd4\x20\x7e\x88\x39\xed\xe6\x48\xfb\x14\x73\xbe\x4a\xcf\x65\x93\xac\xb0\xab\xf0\x66\xaf\xff\xea\xef\xd3\x65\x5a\x26\xcd\x46\x78\x4e\xc0\x86\x17\x92\xb2\x04\xa4\x2c\x05\xe2\xe8\xf8\xf4\x8f\xfb\x10\x7d\xda\x8d\x06\xe5\x53\x5b\xf8\x75\x2a\x8c\xe0\xfb\x79\x74\x7c\x2e\x39\xfd\x35\x3e\x95\x25\x9f\xeb\x4b\x7f\x8d\xcf\xf5\x05\xa1\xcb\x49\xa3\x54\xcd\x97\x1f\x4e\xe6\xed\x66\x09\x7f\x3a\x99\x7f\x8f\x35\x66\xbd\x7e\x6a\x4b\xbe\xc9\x84\xbd\x39\x3d\x3f\x95\x7e\x1f\x22\x52\xd3\xd9\xe1\x53\xe9\x67\x8c\x51\x03\xe9\x3a\x8c\x31\x8a\xcf\x83\x42\x13\xfd\xe7\x41\xf1\x6d\xdf\xe3\xcc\xfa\x54\xc9\x7d\x2f\x4d\xbb\xff\xcd\x8b\x16\x86\x0c\xc5\xe7\x92\x01\x07\x3d\x3e\x85\x19\xf9\x55\x9a\x66\xd5\xcf\xf5\x21\x99\x4a\xd3\xaa\x2f\x99\x4a\x40\xa6\x52\x40\x61\x8d\x4f\xc5\xde\x87\xe2\xa1\x55\xa7\xaa\x8a\x07\xa3\x92\x1a\x66\xca\x0d\x63\xca\x79\x58\xec\xd9\x5a\xb6\x2c\x29\xfb\x4a\x97\x69\xfd\xa4\xa1\x9f\xdb\x57\xb2\x2a\x67\x0e\x6e\x68\x7a\xff\xec\x8b\x38\xff\x46\x8c\xc4\xbe\x88\xf3\xdf\x72\x76\x37\x50\xc4\xf7\x05\xd2\xc5\xbe\x0a\xd3\xe1\x1c\x7c\xfb\x62\x8f\xdf\x97\x13\x13\x6b\xf6\x96\xdc\x7b\x1b\x20\xd5\xb0\x22\x6d\x03\xa4\xb6\xcc\x29\x0d\xf3\xd0\x96\x39\x65\xc3\x9c\x52\x50\x9e\xee\x8b\x1b\xe3\x86\x2c\x25\x35\x2c\xd7\xfb\xaa\xb6\xcc\x79\x4e\x1c\xc2\x86\x32\xe5\x3c\x2c\xb6\xd2\xda\x6a\xb1\x0a\x3f\xad\xd2\xda\xe6\xb7\x0a\x3a\x58\x57\xf6\x85\xa0\xb3\xaf\xc6\x8a\x3b\xbb\xf7\xbe\x9a\x8d\x75\x52\x83\xfc\xbd\xaf\xee\xa7\xce\x60\x82\x0f\xf6\xd5\x2d\xd6\xd3\x00\xa3\xf4\x96\x89\x65\xc3\xc4\x52\xd0\xe3\x6e\x99\x58\xf6\xf5\x5c\xbe\xc6\xa7\x8f\xfd\xae\x50\xd3\x06\x9f\x4e\x3b\x60\xd2\x01\x96\x3a\xed\x4f\xe7\x2f\xda\xe8\x0d\x41\xca\x79\x2c\xd3\xe8\xbb\x69\x7f\x22\xd0\x37\x54\xca\xfb\x5a\x66\xb7\xcc\xce\x24\xfb\x13\xcd\x47\x03\x30\x70\x5f\x68\x05\x37\x61\x53\x05\x89\x6b\x1b\x36\xb5\x25\x4a\x69\x18\x60\x37\x0c\x29\xe7\x61\x4d\x6e\x4a\xc5\xa4\xb4\x09\x9b\x2a\x08\x66\xdb\xb0\xa9\x6d\x88\x54\x83\x80\x7d\xcb\x94\xb2\x89\x94\x2a\x84\x2d\x6f\x28\x52\xce\x83\xba\xd9\xfa\x6d\x53\xb7\xcd\x72\x3a\x6d\x3b\x73\xd3\x99\x83\xba\x6d\x3b\xd3\x55\x09\x4a\xdf\x96\x3b\x65\x1b\x49\xd5\xba\xc3\xfa\x5a\x5f\x45\x35\x30\xf9\xf6\xf5\x9a\xdd\x6b\x76\x26\x7d\x24\xb9\xc4\x9c\xfe\x9f\xad\x57\x78\xeb\x8e\xc3\x67\x9f\xbb\xc4\x3a\x4b\x4c\x26\x96\x2d\xc5\x4a\x43\xa3\xb8\x13\xb7\xf4\x9d\x14\x85\xe0\x22\xdf\xa9\xf8\x1e\xfb\x37\xfa\xf4\x6d\x14\xd2\x96\xda\xa4\x71\x39\xdc\x84\x24\x9d\x47\x37\xad\x93\xb6\x4c\x33\xbb\x9b\xec\x6e\xb3\xbb\xcd\x6e\x90\x54\x4c\x3a\xbd\x49\x2c\xf2\x4e\x5c\x8e\x37\x81\x47\xe7\x4b\x72\x43\xc7\xb7\x89\x42\x32\xdc\x74\x1b\x85\xb4\xa5\x36\x69\xcf\x11\x68\x77\x72\x81\x19\x99\xd4\xd0\x3e\xec\xe4\x02\x33\xe4\xa8\xc1\x98\xb6\x53\x35\xbb\x6a\x76\x24\x35\xdb\xa5\x00\x06\x1c\xd6\x26\xd6\xe8\x3c\xfc\xb4\x53\x04\xfa\xf4\x2d\x41\x49\xc3\xb7\x7f\x4b\x50\xb2\x93\x62\xd4\x33\x68\xc5\x63\xb1\xde\x2e\xc0\x70\xda\x30\x93\xfc\xd9\x49\xc1\x67\xd8\xc5\xd3\x3e\x99\xf4\x49\xa6\xd8\x69\x55\x5c\x60\x04\xa8\xef\x34\xcd\xce\xd5\x84\x1d\x6f\xcb\x3c\xb2\x0d\xef\x69\xb8\xed\xef\xb4\xcc\x6e\x91\x1d\x9b\x58\x5a\xf6\x27\x58\x47\x8d\x1b\xc7\x4e\xcb\x1a\xbb\x9a\xc6\x4d\xcb\xc2\xce\xdb\x16\xc1\x32\x31\x44\x67\x27\x65\x1a\x44\xd5\x9d\x3e\xab\xe2\x24\x43\x6c\xda\xe9\xfb\xbd\x67\x7e\x4c\x46\xe9\x43\x36\xfc\x1f\xa9\x23\xc2\x6c\x18\x3f\xce\xe3\x23\x8d\x81\xcc\x5c\x4a\x77\x46\x96\xe8\xc0\x85\xec\x8c\x2c\xb1\x33\xb2\x44\x62\x15\x67\xb7\xf1\x9c\xfd\x94\x69\x61\x7c\xcb\x96\xe5\xa3\x73\xad\xdb\x06\xb8\x6c\x59\x3e\x3a\x0e\xe8\x3b\x17\xb3\x2b\x66\x77\x7a\x20\xa3\xf8\xdb\xc6\xc1\x74\xfc\xcf\xb7\x71\x30\x5b\xe2\x8f\x0e\xc0\xc3\x96\xf8\x63\xe7\x66\x11\xec\x14\xb9\x59\x44\xb7\x2a\x2c\xee\xfc\xd8\xda\x87\x8e\x67\xe6\x19\x69\xb2\x65\xef\xe8\xc9\x86\x39\x2d\x8c\x3e\xe9\xc4\xbc\xef\xec\xb4\x30\xd4\xa4\x03\x4f\xb6\xa5\xea\xd8\x44\x9c\x14\x6e\x61\x5b\xaa\x8e\x9d\x71\xa6\xec\x44\xa9\xef\xcc\x45\x74\x43\xc5\x71\xd2\xfe\xed\x16\xb7\xf3\xb0\x41\xc3\xd2\x58\x98\xf0\x75\x9c\x87\x35\xb5\xbf\x9d\x71\x46\xa2\xf4\x64\x7f\xbb\x57\xe7\xf5\x43\xd2\xe5\xbd\x65\xb5\x96\x2d\x62\x7d\x65\x5c\x99\x76\x3e\x53\xae\x24\xfb\xd1\xfd\x3b\x2f\xb3\x6b\x7e\xfa\xcb\xee\x35\x8d\xbe\xc5\x63\x60\xe7\xb3\xb5\x17\xee\x90\x3b\x47\x31\xc9\x12\x98\x84\x52\x7e\x6c\x28\x3f\x0a\x86\xb3\x9d\xc3\x41\xde\x36\x82\xcd\x2f\x6f\x1b\xb1\xfd\x94\x23\x22\x3b\xa7\x0d\x8a\xe9\xc9\x11\xdd\xd6\xe4\xf5\xdb\x87\x22\xb8\x1d\x6c\x22\x5c\x4a\xea\x26\xd9\xdd\xaf\x7d\xc7\xd4\x97\xcc\x63\x67\xb6\x61\x9c\xed\xb7\xd1\x2e\x1b\x4a\x8f\xd4\xb3\x33\xdf\x55\x03\xa7\xc7\x49\xa3\x9b\x5c\x35\xc6\xb6\x74\xae\x95\x5b\x36\x8f\x4d\x88\x4b\x49\xe7\xbe\xb4\xff\xbf\x84\x9d\x3b\x8e\x64\xb9\x11\x45\x7d\xad\xa2\x77\xa0\xca\xe4\x27\x48\xa0\x3d\xd9\xd2\x1e\xb2\xea\x26\x81\x31\x66\xa6\xd1\x9a\xd9\xbf\xc0\x73\x64\x8d\x0c\x19\x85\x87\x0a\xe4\x23\x83\x8f\x0c\xc6\x87\x71\x19\x8d\xe4\xa3\x88\x63\x29\xce\xd2\x22\x8e\x25\x60\x57\xc4\xb8\xa7\x29\x47\x40\x57\xee\xcf\x0a\x5a\x49\xf3\x55\xf6\x83\xf6\xf0\xd5\x07\xc2\xb0\xe9\x01\x84\x59\xda\x93\x4e\xd1\x2e\x0d\x0f\x3a\x20\x57\xee\x9b\xd2\x64\xe4\xe9\x18\x3a\x8c\x90\x05\x1e\x30\x2b\xa2\xe3\x23\x66\x25\x4d\x81\xa6\xe4\x58\x1a\x71\x9f\x34\xa5\xf7\xc9\x0a\x6b\x4a\x2f\x35\xea\x2f\x8d\x2e\x9a\xcd\x35\x9b\x83\x39\x35\x49\x43\x78\x39\x84\x4c\x23\x45\x29\xad\x3b\x54\xa4\xad\x69\x83\x35\x34\x09\xc0\x85\x08\x94\x89\x90\x95\x7a\x22\xe3\x42\x56\x02\x64\xa5\x71\x2b\x5d\x84\xac\xc4\x02\x1f\x45\x05\xaf\x50\xd9\xe3\x3e\x9a\x34\x7a\x55\x76\x85\xac\x54\x73\x1e\x96\xcd\x2d\x9b\x9b\x90\xfc\x98\x88\x2e\xa7\xa1\x69\x8a\x6e\xc3\x0b\xae\xf6\x94\xe6\x48\x37\x23\x7d\xc2\xdb\xf6\xc3\x29\xcd\xe0\x07\xd2\x14\x57\xeb\x80\x14\x27\x5e\x69\x8a\xab\x45\x3f\xaa\x35\x66\xff\x65\x73\x2f\x9b\x63\x0c\x2f\xc7\xf5\xe9\x18\xd8\xf6\xda\xa7\x63\x50\x5a\x29\xc3\x95\x46\x5c\x34\x4d\xd1\xc4\xbf\x4d\x53\x34\xad\x17\x52\x00\xa5\x62\xbd\x90\x50\x2f\xa4\x71\x2e\x1b\xeb\x85\xc4\x7a\x21\x85\xe7\x9a\xa6\x68\x52\x36\xa4\x3d\x1d\x84\xa6\x55\xfb\x72\x10\x48\xb0\xf5\x42\x22\xb0\xa7\xf0\x5c\xd3\x14\x4d\xe0\x37\x8f\x6a\x8b\x2e\x14\xc3\xf6\x96\x3b\x94\x6b\xd3\x1a\x6a\x58\x43\xff\x5d\x87\x6f\x07\xab\x68\xe2\x91\xa6\x1d\xbb\x50\x0e\xbb\x8b\x53\x39\xb4\x86\x48\x81\x82\x48\x3b\x36\x77\x6c\xee\x92\x3a\xbe\x76\xc4\xda\x14\x2e\x69\xc4\xda\xa4\x53\x32\xa1\xc0\x6d\xa4\x13\x2a\x4d\xc7\xcc\x29\xf0\x08\xe9\x24\xba\xa4\xbb\x3a\xc9\xbf\x4f\x27\x59\x2e\x5d\xd5\x82\xd7\x97\xae\x6a\xb1\x98\x47\x91\xe2\x9e\xae\x99\x2f\x60\xa6\xf0\xfa\xd2\x55\x37\x7d\x7e\x49\xbb\x5f\xaa\xe3\xa8\xa6\xe3\x81\xd6\x40\x91\x82\x77\xb9\x0f\x3e\x3c\xd3\x28\xea\x25\x5d\x09\xe0\x9a\x82\x74\xad\x95\x5e\x6f\x69\xbe\xca\x9a\xed\x57\x89\x35\x2a\xf8\xa5\x93\xde\x16\x6b\x83\x14\xb9\xd2\xe9\xcb\x1e\x16\x3d\x4c\x06\xb6\xfc\x00\x5b\x86\x99\x6e\x31\x34\xe9\xe4\xe9\x17\xd9\xcd\xe9\x2f\x39\xf9\x92\x13\xbb\xf8\x92\x13\x97\xc5\xd8\xbc\xeb\xb2\xe8\xee\xe2\x20\xeb\xd3\xdd\xc5\xad\xd5\x51\x1c\x97\xa5\xbb\x63\x53\x9f\xe3\xd2\xf8\xdd\xdb\x8f\x82\x73\x5a\x1c\x97\xa5\xbf\x9d\x34\x97\x0f\xc5\xb0\x43\xf9\x8d\xfb\x38\xde\x96\x4d\x7b\xae\x15\xc1\x36\x05\xa8\x3d\x96\xe1\x48\xe7\x16\xd2\xe2\xbe\xb3\x80\xbc\xb9\x0f\xdf\xc5\x25\x14\x80\x93\x81\xc7\x5a\x5c\x6e\x96\xa1\xc7\x3a\x5c\x40\xa4\x07\x66\xb8\x80\x44\xe5\x14\xf9\x81\x11\x95\x13\x11\x38\xa5\x9f\x68\x59\x8f\x00\xc4\x69\xcf\xd5\xfe\xbf\x52\x1f\x04\xf1\x33\x34\x7a\x28\x63\x95\xa1\xd1\x33\xdc\x37\x51\x73\x02\x6a\x62\x61\x8d\xe2\x00\x30\xc3\xd5\x2a\xc8\xa6\x00\x89\x67\xb8\x5a\xa9\x9c\x71\x69\x1d\x9a\xcd\x61\x82\x73\x9f\x65\xc0\xcd\xdc\x07\x63\x24\x51\x38\x63\xc8\xc9\x60\x89\xf8\x26\x61\xd1\x58\x45\xa3\xb8\xf6\x3f\x62\x65\x32\x5c\xfb\x5c\x30\x96\xe1\xda\x1f\x60\x84\x8b\x0b\xc6\x32\x40\x86\x45\x64\x4c\x91\x16\x9c\x31\xed\x62\xda\x05\xcd\xe9\xf6\x02\x86\x79\x54\xb1\xce\x47\xf9\x15\xaf\xa7\xdb\x9a\xcc\x95\xad\x29\x35\xc5\x3e\x3c\xca\x49\x51\x44\xc8\x14\xce\x50\x44\x84\xc1\x54\x39\xc9\xcb\xe6\x96\xcd\x15\xa4\x92\xb4\x21\xc1\xc8\x72\xac\xda\x72\x24\x05\x67\x6c\xc7\xf5\x72\x5c\xe8\xb9\xa1\x77\x3c\xdc\x38\xf5\xf1\x86\x1b\xe7\x60\xe3\x6c\x0e\xdf\x8d\xd3\xda\x1a\xa5\x53\x36\x94\x9a\xa1\xd4\x2c\x07\xa6\x53\x2a\xac\xa4\x96\xdc\xc5\xe6\x62\x73\x70\xa7\x07\x3a\x34\x73\x96\x5d\xb8\xbf\x0e\xcc\x1c\x20\xd2\x11\x69\x92\xa1\x1c\x01\xea\xce\x50\x8e\x44\x9f\xd4\xf2\x0b\x2b\x47\x42\x4d\x8a\x2b\xac\x33\x8e\xcd\x1d\x9b\x83\x91\xe3\x20\x14\x19\x70\xde\x11\x57\x12\x70\x25\xde\x50\x13\x71\x25\x99\x4a\x11\x38\xef\x88\x2b\xc9\x54\x8a\xc0\x79\x47\x60\x49\x04\x91\x14\xe9\xa8\xb1\xf2\x47\xc0\x92\xb4\xd6\x24\x35\x49\x30\x82\xfd\x32\x89\x78\x66\x6a\x0d\xe9\x32\x8a\x12\xc9\x7c\xd8\x1a\x96\xf6\x24\xe2\x19\x91\x23\x45\x72\x69\x80\x8c\xdc\xc7\x97\x34\xba\xd0\x25\x99\x1a\x30\xfa\x87\x53\x03\x66\x62\xc0\x50\x49\x33\x93\xf3\xad\x4c\x85\x93\xdc\xd2\x4c\xa3\x48\x62\x42\x6a\x61\xe7\x4d\x25\x71\x82\xf5\x2d\xee\x1f\xce\xd4\x84\x11\x00\x52\x9c\x63\x66\x76\xbb\xe8\x76\x01\xc7\x3a\xc3\xc0\x40\xee\xcf\xae\xb0\x4f\xa5\x13\x1c\xc8\xa5\xf1\x3b\xa2\xaa\x01\x14\xd2\xd4\xfe\x82\x42\x32\x15\x62\x9d\xd2\x69\x00\x4a\xa0\x48\x71\x04\x9a\xa9\xc4\xce\x39\xa5\xd1\xc5\x74\x64\x44\x9b\x8a\xc3\xc3\x4c\x35\xd3\x24\x84\xaa\xe1\x20\x28\x24\x53\xe9\xe4\xba\xdd\x4c\x03\x50\x93\x8c\xea\xe2\x36\xf5\xcc\x25\x2b\x1a\x58\xdb\x15\xa0\x81\x35\x31\xb0\x9a\x9f\x5d\x95\x33\x95\x31\x1d\xd5\xa9\x8c\x89\x00\x29\x2e\x5d\xcf\x54\x0d\x51\x4e\xe5\x51\x14\xcb\xca\xd4\xb7\x9e\x9a\x4e\xa4\x8d\x66\xea\x47\x4f\x3d\x1d\x4e\x45\x63\x85\x94\x88\xed\xa8\x8d\x1f\x02\xa8\xe3\x3e\x96\x34\x86\xf1\x29\x7b\xda\x49\x9c\x7b\x66\x6a\x27\x4d\xec\x24\xc0\xd3\x11\xa1\x91\xa9\xb8\x73\x98\x91\xf9\x65\xb7\xca\xf6\x76\x6a\x95\xed\x99\x0f\x69\x0c\x37\xb2\xac\x46\xd4\xb7\x16\xa2\x91\xc9\x0d\x1b\xeb\xc3\x49\x8b\x93\x41\x78\x69\x7d\x60\xd9\x4c\xc3\x4b\x13\x81\x5f\xc4\xfd\x33\x0d\x2f\x09\xc8\x58\x5c\x14\x9a\xa9\x74\x8b\xb4\x58\x64\x9d\x46\xa4\x45\x26\xc9\x99\xeb\xc3\x59\x3b\x8e\x03\xeb\x69\x11\x47\xcf\xd4\x7a\x9a\x58\x4f\xcd\xa1\xa9\x24\x45\x5a\x2c\xae\xcf\x4c\x19\xd6\x15\x69\xb1\xb8\x3f\x33\xa5\x78\x17\x61\xdd\xc5\x65\x99\x29\xc3\xba\xf5\x90\xbd\xf1\x01\x6d\x49\x63\xc5\xf3\x55\x84\x50\xa4\x1e\x72\x42\xcc\xad\x94\x65\x61\x15\x0b\x9c\x79\x4a\x59\x16\x2f\xb1\xf4\xf3\xad\x25\x13\x60\x13\x4d\x53\xb1\x14\xe5\x6a\x72\xc7\x7c\x97\x41\xe2\x22\x48\x0c\xc6\x39\x65\x90\xd8\xba\x31\xeb\x03\x33\xae\x0c\x12\x0b\xab\x58\x24\xb6\xa6\x14\x6f\xf1\x12\x8b\x03\xe2\x88\x97\x48\x75\xe7\xec\xaf\x37\xb9\xd7\xff\x6a\xf5\x32\x86\x5c\xdd\xf1\xa0\x9a\x8b\x2c\xd2\x80\xaa\x68\x80\x73\x53\x0a\xba\x95\x66\x96\xc1\x41\xcb\xca\x04\xa4\x45\xd3\x7c\x2d\xd5\xb0\x08\x8b\xf5\xc0\x8a\xaa\x69\x6b\xd3\xd6\x78\x53\x8d\x5b\x57\xc9\xde\x9f\x31\x1c\xe5\xbc\x08\x84\x2d\xc3\x74\x65\x20\xcc\xe2\x33\xeb\x61\x17\x46\x9a\x05\x62\xac\x07\xcb\xa8\x14\x74\x11\x16\x8b\x0b\xd9\x23\xc2\x22\x94\x97\x69\x20\x96\x63\x79\x99\x14\x91\xe6\xf5\x20\xc0\x55\x06\x50\x40\x55\x5c\x1a\xaf\x6a\x82\x16\x3a\x17\x84\x71\x4a\x9d\x6b\xc5\x99\xf5\x70\x65\x2d\xb9\x5b\x72\xc7\xf6\x5f\xee\x11\xb5\x6d\x8e\xed\xa5\xf4\xc2\xa8\x2f\xd3\x3a\x3e\x4d\x6d\x39\x79\x39\x88\xbb\xbf\x1e\xf2\x82\xbf\x9f\x7d\x75\x4a\xc7\x57\x39\x9b\xd3\xe9\x43\x7a\x70\xc7\x55\x39\x9b\x65\x7a\xf6\x5d\x86\xe2\xb5\xcf\xc6\x3f\x38\xfb\xf9\x71\x49\xd7\x1c\x3a\x9b\xc4\xa4\xb3\xaf\x67\xdd\xc1\xbf\x9f\xfd\xb4\xad\xeb\x31\x77\x92\x04\xcf\x26\x02\x76\x48\x2e\xee\xf8\x1a\x67\x13\x8d\x3d\xfb\xba\xcd\x9d\xc2\x4b\x67\x13\x8d\x3d\xfb\xae\xc7\x0e\xee\xf2\xec\x26\x13\x57\xe9\x74\xac\xfb\x43\xd9\x89\xef\x67\xf7\x0f\x48\xeb\x92\xd0\x35\x87\xaa\x12\x9d\x2b\xc2\xce\xc6\x81\x3e\xd4\x96\xe8\x24\xd6\x9d\x8d\xf6\x39\xfb\x2a\x1c\x11\xa7\x87\x9a\x13\xf7\xf1\xbe\xa4\x09\xf7\xa0\xa8\x0f\xf9\xcd\x1d\xcc\xdb\x31\xb1\xf9\x90\xcb\x2c\x44\xf1\xec\x61\x5b\x77\x45\xf6\xe9\x18\xcb\x61\x5f\x73\xac\xb3\x0c\xce\x2e\xb9\xbf\x7e\x4b\xef\x4f\x7f\x65\x8f\xc5\x97\x90\xd5\xb2\xc7\xbb\x58\xc4\x85\x1f\x2b\x42\x1c\x2a\x42\xf4\xee\xa4\x61\x9e\x1d\xca\x3f\x74\xc0\xd7\xc7\x52\x0f\x67\x6f\x5e\x9c\x90\xb6\xac\x6e\xa6\x63\xf2\x71\xb6\xac\x6e\xf8\x72\x40\xb8\xe6\x67\x6f\x66\xc8\x05\xb0\x9d\xa1\x0d\x5f\xe5\x8b\x36\xff\xa2\xf9\xc5\x8b\x2f\xdb\xba\xbe\x50\x07\x2a\x7c\x28\x34\x71\x1f\xbc\xb8\x99\xc7\x4f\xa7\xe3\xf3\x32\xc1\xb5\x76\x67\x7f\xfa\xe2\x27\xdf\xfe\x83\xe6\x3f\x65\xe2\xea\x9c\x4e\xfe\xe2\x31\x31\xfa\x90\x18\x2d\x8a\xf7\x98\x18\x7d\x48\x8c\x16\x9e\x7b\x2c\x22\x71\xc8\x7b\xee\x43\xbe\xe2\x8b\xe1\x57\x9b\x5f\xc5\x4f\x78\x95\x8a\x30\xd5\x63\xbe\xf3\x21\xb7\x59\x48\xea\xd9\x6f\x59\x7d\x3f\xef\x3c\x3e\x79\xf1\xed\xaf\xde\x4c\x6d\x63\x3a\xde\x8e\xf1\x3a\xea\x9d\x6a\x05\x67\xbf\x15\x85\x73\x3f\x0e\x90\xcf\x43\xfa\xf2\x7d\xb0\x4c\x3a\xcb\xe4\xd8\xd6\xa1\xad\x6b\xa2\x1d\xce\xc0\xbf\x9f\x73\x57\x31\x95\xe4\xcf\x61\x7b\x3d\x1c\xf4\x72\xe5\xe1\xf1\x74\xf3\x70\xba\xf9\xe8\x7f\xf1\x98\xee\x3f\xbf\xbe\x7e\xfc\xed\x1f\xff\x7c\xfd\xf8\xd7\xeb\xd7\xf7\xb7\xaf\x3f\x7f\xfe\x7c\xff\xf6\x47\x7e\xf9\xfa\xe3\xdb\xdf\x2f\xf5\x5b\xde\xe7\x97\xdf\xde\x3f\xdf\xff\xfe\xfd\xcf\x9f\x5f\xef\x6f\x3f\x7e\xff\x71\xdf\xe2\xef\x3f\x01\x00\x00\xff\xff\x4d\x4c\x2d\xc1\x6d\xd7\x01\x00"); +func _fbac ()([]byte ,error ){return _gb (_fce ,"Adobe-CNS1-6")};var _efgg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\x4f\x6f\xdb\x30\x0c\xc5\xef\xfe\x14\x3c\x76\x87\xce\x92\x3d\x47\x0e\x50\x14\x58\x93\xa1\xf3\xa1\xeb\xb0\x36\xdd\x80\x61\x07\xfd\xa1\x02\x01\x8b\x2c\xc8\xf6\x21\xdf\x7e\x10\xe9\x79\x3b\x04\x2f\xf9\xe9\x3d\x8a\x8c\x58\x1f\x86\xe3\x10\xc3\x0c\xf5\xd7\x3c\xda\x17\x9c\xc1\x87\xe8\x32\x4e\xe3\x92\x2d\x82\xc1\x73\x88\x55\x25\x1b\x70\xc1\xce\x7f\x7f\x92\xd8\x8b\x4e\x55\x55\x3f\x3e\xbc\x26\x7b\xfb\xe9\x74\xb8\xfd\x0c\xcb\x84\x2b\x3d\x0c\xc7\x97\xeb\x34\xe3\x65\x88\x7e\x84\x96\xd3\x6e\x49\x6b\x05\x80\xfa\x1b\x9e\xc3\x34\xe7\x2b\xdc\x7c\x74\xa3\xc1\x77\xe0\xd0\x17\xfe\x9c\x1d\xe6\x10\xcf\x70\xf3\xf8\x20\x37\xfa\xb2\xa4\xf4\x1b\x2f\x18\x67\x90\xc4\x30\x3a\xd2\xaa\x3e\x3c\xe9\xf4\x45\x5f\x10\xfe\x6b\xe5\x8d\xce\xe8\xe8\x0d\xf3\x14\xc6\x08\x52\xbc\x17\x62\xf7\x8f\xbf\x5e\x13\xae\xb5\xaa\xfa\x34\x1c\x9f\xbd\x9f\x70\x86\x5d\x2f\xd8\xf3\xe3\x34\x1c\xe1\xa7\x04\x29\xa0\xe9\x5a\xd5\xfd\x5a\xad\xdf\x9f\x46\xb7\x05\x1b\xc1\x03\xd9\xe0\xb2\x8e\x67\xac\xee\xb4\xd4\xcd\x3d\xac\x02\x9d\xea\x08\xb5\x8c\x5a\x42\x1f\x08\x69\x46\xba\xa0\x7d\x4f\xc8\x30\xb2\xf7\xa0\x94\x60\x97\x63\xe4\xc8\xb5\x2f\xc8\x70\x79\xe3\x0b\xea\x9b\x82\x3c\x12\x2a\xa2\x94\xd8\x55\x77\xba\xd5\xb2\x20\x12\xe8\x54\x4f\xa8\x67\xb4\xa7\xa0\x20\x64\x19\x59\x72\xb5\x84\x90\x11\xd7\x52\x05\x19\x6a\xb5\x35\x86\x5c\x54\xde\x38\x46\x8e\x5c\x54\xbe\x34\xb4\x0a\x74\xaa\xb4\xda\x3a\x1a\x88\x44\x29\xc1\x88\x83\x8e\x82\x92\x9a\x70\x1c\x2c\x02\x3b\x41\xc8\x73\xd0\xd3\x8d\x7b\xba\xd1\x73\xd0\xf3\x3f\x41\x7d\xf1\xd8\x2d\x8f\x2d\x65\x59\x89\xed\x1d\xca\xf7\xb2\x89\xdb\x72\xd8\x25\x67\x8c\x33\xed\x21\xbd\x7f\x79\xc0\x10\x71\xdb\xf4\x34\xa6\x92\xa2\xcf\x9f\x00\x00\x00\xff\xff\x3c\x9a\xd2\xc8\x15\x03\x00\x00"); +var _bdge =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x4f\x6f\xd4\x30\x10\xc5\xef\xf9\x14\x73\x2c\x87\x12\x3b\x26\x75\x56\xaa\x2a\xd1\x5d\x54\x22\x54\x40\x2c\x2d\x48\x88\x83\xff\x8c\x57\x96\x88\x13\x39\xc9\x61\xbf\x3d\xf2\x4c\x08\x87\xd5\xdb\xfd\x79\xde\xf8\x79\x67\xea\x63\x7f\xea\x53\x5c\xa0\xfe\x9a\x47\x77\xc6\x05\x42\x4c\x3e\xe3\x3c\xae\xd9\x21\x58\xbc\xc4\x54\x55\xb2\x01\x1f\xdd\xf2\xef\x27\x89\x1b\xcc\x54\x55\xf5\xd3\xe3\xa7\xdb\x0f\x2f\xc7\xdb\x8f\xb0\xce\xb8\xb1\x63\x7f\x3a\x5f\xe7\x05\x87\x3e\x85\x11\x14\x7b\xfd\x3a\x6d\x7e\x80\xfa\x1b\x5e\xe2\xbc\xe4\x2b\xdc\xbc\xf7\xa3\xc5\x37\xe0\x31\x14\xfe\x25\x7b\xcc\x31\x5d\xe0\xe6\xe9\x51\xee\xf4\xbc\x4e\xd3\x1f\x1c\x30\x2d\xd0\x10\xc3\xe4\x49\xab\xfa\xf8\x6c\xa6\xcf\x66\x40\xd8\x83\xbc\xd2\x09\x1d\xbc\x62\x9e\xe3\x98\x40\x36\x6f\x85\x68\xff\xf3\xef\xd7\x09\x41\x6e\x1d\x7e\xbe\xf4\x27\xf8\x25\x41\x0a\x68\x5a\xa5\xbb\xdf\x1b\xff\xf1\x3c\xfa\xbd\xaa\x11\x9c\xdd\x45\x9f\x4d\xba\x60\x75\x6f\xa4\x69\x1e\x60\x13\x68\x75\x4b\x48\x31\x52\x84\xde\x11\x32\x8c\x4c\x41\x87\x8e\x90\x65\xe4\x1e\x40\x6b\xc1\x55\x9e\x91\xa7\xaa\x43\x41\x96\xdb\xdb\x50\x50\xd7\x14\x14\x90\x50\x11\xad\xc5\x5d\x75\x6f\x94\x91\x05\x91\x40\xab\x3b\x42\x1d\xa3\x03\x19\x05\x21\xc7\xc8\x51\x95\x22\x84\x8c\xb8\x97\x2e\xc8\x52\x54\x65\x2d\x55\x51\x7b\xeb\x19\x79\xaa\xa2\xf6\x25\xd0\x26\xd0\xea\x12\x55\x79\x7a\x10\x89\xd6\x82\x11\x1b\x3d\x19\x25\x85\xf0\x6c\x2c\x02\x77\x82\x50\x60\x63\xa0\x1b\x0f\x74\x63\x60\x63\xe0\x7f\x82\x72\xf1\xb3\x15\x3f\x5b\xca\x32\xfd\x7d\x0e\xe5\x7b\x59\xba\x7d\x0f\xdc\x9a\x33\xa6\x85\x56\x8e\x86\x5d\x06\x18\x13\xee\x2b\x3d\x8d\x53\x71\xd1\xe7\x6f\x00\x00\x00\xff\xff\xbd\xdd\xac\xdd\xfe\x02\x00\x00"); +func _dcac ()(*asset ,error ){_cgd ,_fffad :=_dfede ();if _fffad !=nil {return nil ,_fffad ;};_gddd :=bindataFileInfo {_ee :"UniCNS-UCS2-V",_ffd :631,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492690,0)};_acgcd :=&asset {_da :_cgd ,_dc :_gddd };return _acgcd ,nil ; +};var _aeab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x4b\xcf\x27\x41\x76\x9f\x89\xed\xfb\x53\xd4\x52\x5e\xc8\xcc\xb8\x9d\x88\x00\x1a\x05\x58\xa2\x29\x73\x21\xdb\xb0\x24\xdb\x80\xe1\x45\x5e\x39\x0d\x0c\xbb\x89\x26\xb5\xd0\xb7\x1f\xc4\xf3\x44\x91\x83\xc1\x60\xaa\x36\x15\x6f\xfe\x33\xe3\x1e\xe7\x16\xe7\x9c\xdf\xdf\xfc\xc7\xbf\xff\xdb\xbf\xff\xf3\x9f\xfe\xe5\xc7\xdf\xfc\x3f\xff\xfa\x97\xfb\xbf\xbc\xff\xf2\xe3\xfb\xd3\x9f\x9f\xbf\xbe\xff\xfc\x97\xff\xfe\xd7\xfb\xfd\x71\xbd\xff\xf0\xa7\x3f\xff\xe1\x0f\x29\xff\x78\xfe\x74\xff\xcb\xaf\x3f\xf9\xef\xfe\xc7\xf3\x9f\xfe\xf0\x87\xf5\xfd\x7f\xf9\x1f\xff\xfc\x2f\xef\x3f\xfe\xfd\x9f\xbf\xbf\xfc\x28\xbe\xf7\xfc\xf7\x7f\xda\xef\xfe\xf8\xf1\x37\xff\xaf\xf7\x1f\xfe\xf4\xcf\xff\xf2\xd7\xff\xf1\xe3\xdf\xfd\x5f\x9e\xbf\x5c\xef\xff\xe9\xc7\xf3\x7e\xeb\xf9\xff\xe3\xaf\xcf\xfb\xd7\x3f\xfd\xf9\x1f\x7e\xfc\xbb\xff\xf4\x1f\xd2\xbf\x3e\xfd\x2f\xff\xfd\x9f\xfe\xe9\x7f\x7e\xff\xf1\xfd\xf3\xbf\xfc\x68\x3c\x7b\xff\xfc\xf0\xff\x1f\xfe\xe6\x3f\xfe\xe7\xf3\x9f\xfe\xef\xe7\x3f\xbe\x3f\xfe\xe6\xbf\xfd\xf9\x4f\xff\xe9\x3f\xfc\xfb\xff\xf6\x5f\xff\x2e\xc5\xbf\xff\xbf\xf1\x2b\x3f\xfe\xbf\xdf\xbf\xfe\xf3\x9f\xfe\xf2\xe7\x1f\xe9\xff\x7c\xa4\xf8\xb7\xc7\xff\xf5\x7f\xfc\xd3\xfb\x23\xed\x4a\xfe\xbf\xff\xed\xef\xff\xf6\xc7\xff\x2f\xfd\x48\xc7\x8f\xdc\xe2\x48\xff\xff\xfd\xfc\xff\xf3\x9f\xff\xf2\xbc\x3f\x0e\xff\x2a\xf6\xfe\xfe\xcb\xf3\xfe\xf3\x3f\x9d\xf7\xfb\xd7\xf3\xcf\xff\xf0\xfe\xe1\xc7\x8f\x3f\x1e\xc7\x71\xfc\xfc\xb1\xfe\xfd\xf1\x6f\xfb\xdf\xfd\xdd\xcf\xf5\xec\x6f\xc7\x71\xfc\xed\x7f\x5c\xcf\xff\xf8\xb7\xff\xe1\xef\xfe\xee\x6f\xff\x6e\x3f\xff\xbf\xfe\xdb\xbb\x7f\xc7\xb3\xf7\xcf\xcf\xff\xa6\xc6\x3f\x24\x1b\xfa\xf3\x5f\xfe\xe5\x79\x3f\x9f\xed\x36\xfe\x78\x1c\xe9\xfb\xf9\x23\xad\xaf\xfe\xd7\x3f\xff\x21\x1d\xc7\xee\xdd\x9f\x9e\xfb\x7f\x3a\xff\xba\x3e\x38\x8f\xf5\xe6\x2a\xd4\x9f\x3f\x52\x74\x8a\xed\xe7\x8f\x9c\x4b\xab\xfc\xd1\x7f\xfe\x48\xdd\x57\xc6\xcf\x1f\xe9\xc8\x14\xe7\xcf\x1f\xbd\xa7\xb2\xca\xd7\xaa\x22\x78\x7c\xa5\x9f\x3f\x52\xa6\x92\xab\xff\xfc\x31\xe7\x2a\x3d\xab\x86\x3c\x56\xf1\x3d\x7e\xfe\x08\x2b\x7b\xd3\xcf\x1f\x11\xbc\xf0\x8e\xf5\xb4\x51\x9c\xab\x48\xb5\xef\xf9\xf3\x47\x4c\x8b\xf7\x7a\xea\xbb\xcf\x2a\xd2\xc2\x97\x7f\xfe\x88\xc1\x0b\x5f\x59\x45\xea\xfd\x68\x8d\x77\xbf\x55\xd9\xf0\xdd\x55\xd9\xa0\x89\x6f\x55\x36\x57\x77\xd3\x41\x1f\x56\xcf\x52\x5a\x35\x74\x9e\xa6\x6b\x15\xd7\xe0\x53\xa6\x18\xab\x58\xeb\xfa\xcc\xe2\xea\xef\xec\x14\x57\x77\xc6\xb1\x8a\xb1\xde\x1d\x7c\x76\xbf\xeb\x33\x9e\x3e\x8c\x98\x26\x1e\xfa\x4b\x13\xcf\xaa\x6c\x50\xd9\x13\xab\xe8\x0b\xab\xde\x31\x29\x32\x78\x6b\xa0\xbf\x6b\x6c\x89\x01\xcd\xf5\x6e\x6e\xab\xeb\x73\xb5\x96\x83\xe2\xfa\x2c\xdf\x6b\xf0\x47\xa2\x38\x57\x71\xd5\x90\x9f\xb9\x96\xe2\x58\x6f\x54\x86\x7c\xac\x2a\x2a\x55\xd4\xf4\x87\x3f\xa6\xb7\x7c\xab\x8a\xf6\x87\x3f\xe6\xe3\xc8\xac\x6c\xac\x72\x3a\xa8\x23\x0d\xfe\x28\xab\x96\x74\x50\x5e\x9b\xe5\xe0\xfd\xd4\x78\x9c\x28\xc7\x7a\xdc\x57\x31\x67\x97\x3f\x1f\xd9\x17\x32\x65\x5e\xa0\xba\xb2\xea\xee\xd4\x56\x7c\xa3\x50\xbe\x7e\xfe\x48\x6b\x16\xf3\xd1\x9e\x9f\x3f\x9a\x75\x9c\xb7\x3b\x72\xbd\x92\x8e\xb2\xf6\x5b\xa3\xe8\x97\x95\x32\xa3\x4c\x3c\xa7\x23\x6b\x35\x73\xca\xc9\x31\x04\x7f\x38\x38\xde\x9f\x79\xb5\xc4\xeb\x73\xd5\xb8\xd6\x20\xe7\x63\xed\xf1\xd2\x29\xae\x43\x54\xd6\xbb\x39\xad\x4a\x4a\xa1\x48\x93\xf9\xa0\x7c\xae\xc7\x93\xe2\xf3\xf3\x47\x6a\x89\xe2\xbb\x8a\x54\xb1\xce\xe1\x9c\x99\xc7\x79\x0d\xb8\x66\x8a\x4c\x65\xb6\xdc\xd6\x63\xdf\x58\x4b\x56\x82\x22\x35\x37\x8a\x6b\x46\xaa\xc5\x55\x73\xe5\x85\xb2\x56\xa0\xd1\xf4\x9a\xbe\xd4\xe8\x7d\x59\xe3\x2e\xf4\xad\xac\xad\x50\x7c\x4a\xdf\x78\xba\xb6\x6e\xaa\x7c\x56\xef\x55\xe4\x85\xc6\x62\x65\xc6\x17\xab\x9b\x8d\xae\xad\x8d\x95\x2a\x03\x99\x8c\xda\x29\x9a\xab\x9b\x95\x79\x39\xe9\x3c\x35\x5f\x0e\x95\xce\xbd\x9f\xcb\xbc\xc8\xd6\x26\x35\xff\x3b\xc4\x27\x97\xb4\x96\xa0\xae\x66\x1b\x74\x68\x9d\xe0\xdc\xce\xd5\xec\x3a\x53\xb9\x5d\xac\x11\x2f\x5c\xac\xd1\xea\x57\xbb\x59\xdd\x49\x11\xea\x34\x28\xae\x79\x5a\x54\x24\xb7\x75\xfe\xd2\x22\x12\xb9\xdd\xab\x2b\xeb\x04\xe7\x58\x9b\x25\xad\x73\x9d\xe3\xa0\x86\x42\x91\x6d\xb3\xa8\x44\x8e\x0a\x25\x4b\x14\x57\xcb\xb1\x3a\xf1\x8e\x63\x6d\xbe\xba\x28\x58\x7e\x47\x5a\x7f\x1c\xcc\xca\x3b\x2a\x7f\xb0\xec\xef\x18\xfe\x51\xf9\xe3\xf2\x8f\xc6\x1f\xec\xde\xc3\xda\x66\xf7\x0f\xbe\x39\xfd\x83\x4e\xbd\xe7\xe9\x1f\x54\x7d\xbe\xfc\xc1\x34\xbc\x6b\xec\xeb\x8f\xcc\x1f\x56\xcd\x5a\xbc\xb7\xdf\x2c\x9a\x90\xbf\x45\xfc\x2b\x94\x38\x7f\xeb\x9c\xd7\xce\x59\xfc\xd6\x91\xae\x3d\xfb\xbc\xf0\x7c\x52\xae\xeb\x7d\x8e\xc0\xc7\xe4\x1c\xa9\x24\xfe\x08\x36\x97\x1f\xf7\x9f\x3f\xea\x08\xcb\xe3\xe7\x8f\x92\x8b\x8d\x4d\xde\xb1\xd2\x73\x3d\xe7\x30\x7f\xc7\xf5\xf3\xc7\x1c\x3e\xbe\x57\x5b\x61\xfd\xcf\xaa\x86\x83\xfd\x1d\xef\x2a\x77\xfb\xf0\xfd\xfc\x91\x8f\x49\xb3\x8b\xdc\xb4\x23\xd1\x14\x27\xae\xda\x9d\xb5\x4d\x72\x63\x9f\x7c\x8b\x0a\xd5\xc1\x54\x7e\x8b\x0a\xd5\x9e\x2c\xb7\x55\xae\x96\x25\x43\x6c\x8b\x2f\xf5\x9f\x3f\x4a\x71\x2c\x69\xed\x7e\x4f\xc2\x97\xe6\xcf\x1f\x75\x72\x98\x3e\xce\x71\xce\xbe\x7f\xad\x4e\x64\xdf\x59\x03\xc8\xc3\x86\x9f\x9f\x3f\x72\x75\x42\xd7\x09\x6f\x2d\xfb\xfc\xfb\xf9\xa3\x84\x0b\xb0\x8e\x78\xa9\x90\x97\x6f\xd1\x9d\x16\x76\x74\x91\x9d\x94\x9a\x33\xb1\x0e\x7f\x19\x1c\xdd\x2f\x57\x08\x88\x1f\x2f\xae\x3b\x33\x0d\x2c\x3a\x59\xa3\xd1\xb9\xdc\x17\x19\x2c\x56\x0a\x75\x1a\x3e\x9f\x3f\x7f\x94\x59\xfd\xf6\xfc\xf9\xa3\x95\x83\x59\x5f\xf4\xa2\x94\x69\x5b\x8b\x77\x1c\x87\xdf\x3e\xeb\x79\xf2\xfd\xc5\xa0\xd2\xee\x0f\x27\x64\xd0\x9f\x45\x94\xf3\x31\x19\x58\x61\xa7\xbb\xd8\x25\x73\x5e\xa8\xbf\x14\xbe\xf5\x9d\x0a\x0d\xf5\x79\x63\xf5\xe8\xdb\xa2\x43\x2d\xef\x7a\x56\xff\x4b\xf8\x7c\x70\x72\xad\x73\xae\x71\x39\x96\xb2\xfa\x1f\x4e\xdc\xe2\x00\x2d\x0e\x26\xae\xdc\x6b\x8c\x2e\x00\x54\x6c\xef\xa6\xf2\xc2\xe4\x5d\xbd\xc5\xbc\x4a\x85\x66\x7f\xeb\x04\xd7\xe6\x20\x2b\xfc\xcd\xad\xbe\x8e\x73\xe9\x4e\x4a\x2d\x50\x38\xbe\xad\x9c\x60\xb7\x4d\x6d\xc8\x31\x3e\x8f\xb5\x48\x10\xee\xaf\xae\x1d\x94\xeb\x6f\xc9\xd9\xb7\x88\x6b\x2d\x6e\xaf\x3a\x29\xdb\xa9\x75\x48\x47\xb5\x23\x6b\x75\x52\x66\xa4\x8b\x02\xd7\x56\x6c\xf0\x81\x92\xfa\xed\x5a\x9d\xe6\x8a\xd4\x8f\x8e\xf0\x4e\x83\x1d\x43\xb6\xbe\xc5\xbc\x73\xf7\xdb\x45\xbe\x4b\x85\xec\x7f\x6d\xed\xae\xc3\x81\xb6\xba\x9e\x7b\xb6\xda\xda\x5d\x47\xf3\x5b\x76\x57\xf2\xb9\xe2\x9d\xef\x0f\xce\x93\xef\xac\xd5\xd9\xbb\xa2\xad\xe3\x7d\x24\xcb\xd7\xcf\x1f\xf5\x57\x1f\x16\x5d\x9b\xae\xf8\x62\xd6\x25\x3b\xd9\x6d\x9d\xef\xa3\x5a\xff\xb7\xe6\xc1\x33\x0a\x6b\x19\xee\xa2\xc5\x5b\x4a\xf7\xc8\x85\xbb\x8b\x3a\x63\xf5\xbf\x48\x1b\x62\x9d\xef\x1c\xcc\x55\xb4\x75\xcc\x9c\xdb\x88\x9f\x3f\x7a\xda\x75\xf6\x9f\x3f\xfa\x71\x58\xcf\x80\x66\xbb\x35\x03\xba\xee\xb7\xf6\x9f\xfe\x2c\x29\x2d\x8f\xfd\xfe\xea\xff\xd8\x75\x3e\xcc\x27\xeb\x15\xef\x9a\x37\x8f\x7a\x7c\x9c\x26\xde\xef\x1e\x6f\xaa\xef\x09\x21\x04\xbe\xf1\xf5\x35\x00\xf9\xe7\xd7\x0b\x83\x67\x00\x7d\xed\xae\x56\x2c\x2f\x02\xb5\xe9\x65\x8f\xd5\x18\xb4\xfd\xeb\x6b\x00\x65\xfa\xce\xf8\xf9\xa3\x67\x09\x78\x5f\xc7\xbb\xbb\x60\xfd\x5c\x84\x7a\xd7\xbf\x16\xa0\x38\xd1\x7d\x0d\xa0\x4e\xeb\x81\xc9\xbb\xd8\xfd\x65\x82\x58\xd4\xfe\xf1\x9c\x6f\x17\x27\x8b\xf0\xc8\x2d\x46\x56\x32\x6c\xe8\x1b\xab\xff\xd9\x3e\x8f\x02\xe9\x61\x5c\x8b\xbf\xd5\x06\xab\xff\x06\x4a\x81\x74\x74\xac\xd3\xa1\x34\xf6\x8d\x75\xbc\x37\xa9\x5a\x2c\xb0\x36\xf9\xc0\x58\x1a\x42\x81\x4b\x7d\x63\x2d\x40\x71\x73\x0f\xd8\xf4\xde\xd1\x8b\x33\x76\xa5\x8d\x6f\x3c\x9c\x69\x3b\xc4\x0e\x6a\x96\xd7\x0a\x4c\x77\xf4\x94\xc3\xd1\xd1\x89\x98\x30\x5d\xca\x25\xcc\x8d\xc3\x91\x4d\xb9\x25\xad\xcd\x35\x82\x4d\xd0\x96\x0c\x93\x46\xb6\x22\x38\x9c\xdb\x6f\x71\xe4\x5e\xab\xcf\xd7\x0a\x34\x09\xe6\x44\xc7\x71\xf5\x26\x1c\x42\x56\x39\xd7\x0a\xa0\x36\xe4\x6f\xae\x23\x8c\xde\x90\xbf\x09\x81\x95\xd0\xcd\xb5\x02\xe3\xb0\x5d\x06\xe0\x6a\x23\xe6\x64\xb7\x1c\x72\xce\xec\xf2\xb8\x73\xf1\xe8\xe4\xe8\xcf\xb5\x04\x19\xa1\xe5\x43\x2d\x9b\xd3\x7d\x83\x62\xd6\x64\xe4\x67\x40\xb9\xfc\x60\x8d\xa0\xbb\x36\x4b\x49\x1b\x45\x26\xba\xb4\xb4\xa4\xb8\xfb\x21\x5d\xb4\xea\xb7\xd7\x1a\x65\x6d\xbf\xa5\x68\x4b\xee\xae\xc5\x61\x9c\xeb\x84\x1c\xbf\x6a\x5b\x04\x38\x24\x3f\xe7\x62\xe1\x9b\xb6\xa2\x0b\x76\x77\xc0\x52\x06\xc7\x26\x63\x4b\x90\xcb\x79\x97\x19\x9e\xe4\xe4\xaa\x3f\x7f\x8c\x4d\x72\xae\xf6\xf3\x47\x9f\xd6\x79\xad\x23\x3e\x25\x93\x4b\x93\x2c\x55\xe6\x76\x0d\x48\x1d\x73\x7f\xc1\x00\xe5\xd4\xd7\xb9\x46\x7d\x30\x1b\x17\x2a\xc4\xfe\xf6\x46\x28\xb4\xfc\xfc\xfc\xd1\x37\x47\xbe\x58\x1f\x77\xe7\x92\x5c\xdb\x26\x6f\xf7\x81\x78\xc4\xfb\x37\x1b\xcc\xd3\x78\xaf\xfd\xd5\x3d\x2d\x77\x59\x6d\xc9\x78\xef\xba\xa4\x1d\x49\xd4\xbd\x56\x67\x9f\x84\x25\xa2\x8e\x82\x86\xf4\x2d\x19\x35\xff\xaa\x73\x09\x89\x69\x48\x97\x96\x8a\x56\xaa\x1c\x6d\x09\x72\x69\x4a\x7f\x6e\x15\x50\x1b\xbb\x7f\xfe\x98\xdd\x13\x72\x2b\xc7\xdb\xd1\x97\x41\xfa\x0e\x0c\xd0\x8d\xf7\xc8\x23\x78\xff\x59\x0b\x50\x24\x0f\x4b\xf9\xec\xc3\xc5\x7b\xd6\x00\x32\x22\xec\xb7\x34\xd1\xae\x60\xff\x3d\x8b\x44\x8d\x75\xea\xca\x81\x92\xb5\x16\xbe\x1c\x8a\x86\x95\x22\x92\xd5\x91\xfd\x83\x5d\xe7\x3b\x09\x0d\x62\xad\x6f\x41\x51\x4c\x16\xe1\xd3\xc7\xd1\xfc\xe3\x53\x89\xeb\xeb\x8f\x09\xe3\x2d\x4b\x5e\x5f\xec\x8a\x3f\xd6\x54\x97\x63\x86\x7f\xd0\xc6\x87\x80\xcc\x18\xca\xf1\x0d\xff\xe0\xb5\xa5\x0b\xaf\x3f\xe8\xed\x77\xfa\x07\x7d\xf9\x2e\x55\xcf\x82\xaa\xbf\x74\xbf\xf5\x47\xca\x10\xda\xd5\x78\x2e\x5b\x27\xe4\x8f\x93\x91\x1e\x6b\xef\x94\x72\xfa\xcb\xa2\xfd\xa5\xdc\xd5\x3f\x06\x7f\x38\x94\x35\xfb\xa5\x3c\xcd\x0a\x56\x4f\x6a\x55\x88\x5f\xe4\xb0\xd4\x2e\xf1\x59\x0b\x56\xda\x54\x88\x67\xc4\x71\xec\x3f\x56\x05\x91\x94\xdb\x97\xd6\x56\x66\x52\x73\x58\x7c\xab\xcc\xf0\x35\xe6\x62\xde\x9f\x7f\xac\x59\x9a\xcf\xe1\x1f\x7c\xf3\xec\x5f\xe2\x0f\x7f\x2c\xe7\x6e\x74\x09\xe9\xe5\xaa\x56\xd0\xd7\x78\xee\x5d\xdb\xda\x0f\xe5\x7e\xad\x60\x31\xef\x7a\xb4\xf0\x8f\xf1\x87\x3f\xd6\xd4\xac\x6d\xb1\xdd\x5a\x8a\xe3\x59\xca\x58\x2d\x6a\xde\xc7\xe2\x73\xb5\x5c\x2a\x3f\x8b\xcc\xd6\xf2\x3c\xfe\xb1\xbe\xa9\x8f\xb5\xad\x75\xaa\x51\xfd\x66\xad\x53\x8d\xf0\x9b\xb5\x4e\xb5\x67\x3b\xba\xb6\x7f\xed\x79\xfa\x47\x5b\x7f\xf4\xfd\xcd\xaa\xba\x0f\xab\x5e\x04\xad\xce\x3d\xbd\x6b\x45\xeb\xec\xcc\x1b\x76\x8d\x3a\xfb\xe3\x1f\xab\xea\x89\x2e\x36\x8e\x75\xe4\xea\x9c\x97\xbf\x50\xc1\xfc\xfc\x63\x55\x3d\xaf\xf0\x8f\xf9\x1b\xda\x57\xe7\xd5\x7d\x73\x4d\xd0\xdd\xfd\x63\xc9\x3a\xf5\x3e\xb3\x7f\x74\xfe\x28\xfe\xb1\x06\xfb\xa8\xb5\xa5\xc5\x63\xea\xfb\x6f\xea\x58\x7d\x97\x3a\x96\xe0\x2b\xf5\x5d\xea\x58\x3a\x58\x93\xfa\x1e\xc8\x6b\x8b\x60\xd6\x77\x1d\xa8\xd2\xd7\xb9\xac\xef\x52\xb5\x6a\x5d\xfb\xa3\xbe\x4b\xd5\x2a\x79\x58\x86\x95\x2e\x22\x59\xdf\xa5\x6a\x95\x31\x7c\x1f\x46\x34\x7d\xfe\xa0\x6e\xd8\xd8\x0b\x05\xb7\xfc\xd9\x30\x2f\x2d\x65\xab\xa2\xb7\xd4\x57\xf3\x86\x2f\xa5\xdd\x3b\x6a\x45\xdb\x8a\x45\x9e\xeb\xbb\xb4\xad\x82\x89\xa3\xbe\x6a\x5b\x87\xe5\x40\x2a\x62\xc8\xa9\xfb\xb1\xb5\x2e\x5a\x8d\x4e\x5f\xdf\xa5\x6d\x25\xc4\xde\xfa\x26\xa4\x99\x66\x2f\x2e\x4c\x1e\x36\x76\x63\x42\xf1\x9d\xc5\x4b\xdb\x61\x3d\x2f\x8d\xd1\x09\x34\xa9\x66\x87\xb2\x07\x77\x30\x8f\x19\x51\x2b\xa8\x74\x69\x52\xf5\x70\xbe\xb4\x38\x1d\xc3\x2f\x90\xe4\xd9\x7d\x6f\x1e\xbf\x14\xe4\xfa\x66\x6d\x65\xc3\x1f\x4e\x58\x98\x3f\x28\xed\x32\x84\xa5\x4b\xb5\xbe\x6b\x5d\xda\x6c\x5b\x47\xb9\xbe\x18\xb2\xc2\x65\xde\x84\xc5\x25\x41\x69\x2a\xd9\x97\x76\x5f\xf9\xba\xd0\x57\xbb\x51\xa4\x24\xc3\xb7\xe2\x97\xa2\x5e\xdf\xe2\x54\x72\xa2\xde\xa5\x37\x15\x88\x57\x7d\x0b\xe6\x17\xa7\x60\xe9\x4d\xa5\x87\x1f\x5f\x08\x98\xb6\x20\xe1\xe3\xd0\xbd\x4b\x71\xca\x6d\xf7\x63\x6d\xd0\x92\x6c\xe1\xfb\x65\x0a\xa8\xef\xd2\x89\xf2\x70\x10\x55\xb2\xc7\xb9\x7c\xab\x62\x1f\xbd\xa8\xce\xa5\x9b\x6c\x1d\xcb\xda\x13\x2d\x2c\xc5\x27\xf7\xea\x07\x4b\xf1\xc9\xee\xa5\xa5\xf8\xac\x0f\xe8\x77\xa5\x7f\x1e\x8d\x45\x21\xca\x48\x3e\x5f\x73\x59\xdd\x1a\x8b\x76\xa5\x19\x96\x3f\xa4\x79\xc6\xb9\x34\x9f\x5c\xad\xa7\x39\xc7\x0e\x14\xd5\xe7\x28\xf4\x7b\xa9\x3e\x79\x86\x1f\xb0\x59\x2b\xdd\x6e\x4e\x31\x04\xe4\x5d\x64\x2f\x0d\x67\xb2\x69\x2d\x3d\x7c\x6b\x29\x0f\xd9\xa6\x97\xf2\xa3\x61\xa4\xbe\x0d\x23\x86\xdd\x6e\x10\x9c\x69\x6b\x4b\x49\xd8\xeb\x86\x92\x93\x1a\x2d\x2f\x25\xa7\x0c\x97\x04\x25\x67\x3a\xb4\xe0\x98\xb8\xeb\x97\x6e\x52\x7b\xa6\xbc\x94\x8a\xdc\x5d\xce\xa5\x54\xe4\xf0\xc4\xa0\x53\x1c\xc9\x73\xb5\x08\x7c\xc9\xc1\x90\x97\x70\x5f\x92\x1f\x2c\xc1\x7d\x64\x3f\x58\x42\x79\x6e\x83\xc1\x0c\x47\x56\xf2\xef\xa8\x1c\x56\xab\x5a\x3c\xc9\x4b\x64\xaf\x0d\x3a\xf9\x8e\xd3\x1a\x6c\xe6\xe2\x88\x33\x69\xe3\xfe\x65\x1b\xaa\xef\xa2\xd3\x35\xdc\x28\x88\xec\xd9\x9d\xbf\x44\xf6\x5c\x25\x52\xf3\xb0\x22\x26\x61\xc9\xec\xb5\x04\xad\x61\x7f\x9d\x92\x8a\x89\x55\x2a\xf3\xf1\x92\x0c\xca\xc8\x3e\x67\xf7\x39\x99\xd3\x03\xcb\xe4\x63\x82\x3c\x92\xcb\xb8\x64\xf3\x7a\x38\xf0\x45\xf8\xcb\x74\x96\x17\xf7\x1d\xe1\x0a\x4d\xf6\x7a\x66\x34\x4b\x06\xd7\xa2\x55\xdf\x13\x35\x54\xa2\x06\x59\x47\x22\xa9\xaf\x42\xc1\xde\x40\x4b\x06\xcf\xc9\xb3\x8b\xc5\x73\x48\x29\x96\x08\x5e\x93\xfb\x8a\x6b\x92\xec\x14\x71\x4f\x32\xab\x8d\x4d\x74\x7f\x1b\x70\x4e\xf7\x1f\xf4\xb4\xd8\x00\xcc\xcf\xbd\xb7\xc4\xec\x12\x0e\x19\x76\xd2\x64\x0e\x4b\x82\x2e\x9b\x6a\x5e\x1a\xc1\x78\xe7\xaa\x56\x4a\xb7\x2f\x24\x38\x39\xcb\x75\xfe\x32\xd6\x55\x6c\x86\xb5\x3b\xe4\x8b\xcd\x3a\xe9\xdd\x8d\x46\xeb\xea\xdf\x28\x84\x4e\xe9\x8d\xc5\xd0\x86\x6f\xd6\xc6\xbd\x77\x63\x71\xf3\xb8\x21\xee\x66\xb9\xd5\x12\x77\x0b\x42\x4f\x7d\x31\xc9\xee\x1d\x75\x73\x63\xb4\x4f\xc6\xcd\xae\xb7\xd7\xda\x2d\xab\x1f\xc0\xac\xdd\x20\xf7\xed\x07\xfe\x81\x4d\x61\xb7\xf0\xc2\x28\x18\xfe\xe3\x31\xe1\xf9\xe3\x31\x69\xfe\xb1\x56\x6d\x73\x9c\x25\xd8\xd6\xb0\xe5\x25\xae\x95\xea\x79\x5b\x92\x4a\x69\x0e\xe7\x59\x34\xac\xba\x1d\x1f\x4c\x53\x1e\xab\x67\x31\xdc\x21\x81\x7e\x30\x5c\x56\xbf\x85\x13\x75\x9f\x7f\x1c\x43\xbe\x7d\xdd\xe3\x56\xf4\x62\x79\x75\x0d\x5e\x7b\x27\x5d\x7d\x0b\x26\x1e\x16\xea\x5d\x5b\x2a\x3c\xdc\x6f\x83\xda\x30\x82\x97\x4d\x2e\xc3\x79\xdd\xe4\xe1\x4b\x30\x4d\x9b\x7e\x59\x4d\xc4\xb8\xf7\x5d\x5b\xa7\xbb\x75\x3e\x04\x0e\x4f\xd1\x97\xfc\x98\xd9\xfe\xd6\x72\xee\x31\x7f\x2c\xa7\x32\xc0\xe7\xde\x71\x9d\x3f\x78\x7a\xf7\x83\x45\x4b\xf6\x78\x10\xc1\x93\x93\xb7\x44\xeb\x92\xdd\xc0\x0a\xd7\xbb\x4b\xdf\xa3\x39\x84\xf2\xeb\x0f\xf4\xfb\x83\x8a\x2f\x1d\xb7\x62\x9f\x5e\x3f\x04\x7f\x24\x0c\x55\x07\x65\x76\x06\x8c\x1c\x5b\x72\x4d\xf4\x15\xa3\x71\xc1\x60\x54\x31\x1a\x6b\xe8\xae\x18\x8d\xd3\x3a\xd9\xbf\xa1\x6e\x58\x94\x53\x40\x33\xb0\x28\x57\x84\xf9\x8a\x51\xb8\x36\x26\x07\xa3\x70\xcd\xec\x2c\x8c\xc2\x0a\xef\x15\xa3\x70\x3e\x8a\xef\x3b\xe3\x8d\xf2\x8b\x10\x41\xc7\x31\xfe\xee\xe7\xdc\xef\x14\xe6\xe9\xf3\xd2\xc9\x43\x86\xf5\xb7\x2a\x50\x7c\xca\x2c\x89\xad\x85\xf5\xb7\x14\x87\x87\xcc\x82\x49\xa8\x62\xfd\xcd\x98\x69\x2a\xd6\xdf\xda\xd9\xd2\x58\x79\x8b\x4b\x87\x95\xb7\xf6\x61\x03\x6b\x3a\x24\x2b\x58\x70\x93\x9c\xf5\x53\x1a\xc1\x12\x52\x31\xe1\xd6\x3e\x7d\xa9\xf8\x83\x7f\xb8\x09\xe8\x85\xd2\x48\x76\xc2\x0a\xdd\x38\xac\xaa\xfb\x03\xed\x21\x8d\x14\xf6\x25\x56\xdc\xf5\x03\x03\x42\x1c\x51\x82\xc3\x8c\xbb\x7e\xf0\xad\x9b\x1f\x2c\x3f\x74\x84\x26\x30\xc5\x56\x47\x87\x74\x51\x33\x9d\x5d\x32\x41\xe9\xce\x00\x32\x41\x85\x22\x60\x0d\xad\x01\x87\xc2\x1a\x5a\x25\xef\x58\x43\x6b\x76\xf6\x1a\x67\x0e\xfb\x42\xd5\x1c\x1a\xd5\x1f\x18\x68\xb6\x05\x84\x82\x09\x5b\xc7\x1e\xba\x7e\xa0\x1b\x8d\x09\x77\x79\x31\x88\x8e\xca\x16\x40\x26\xc8\xae\x68\x3b\x99\x7c\x66\xa6\x5d\xdc\x9b\x5b\x56\x08\x67\x68\x8d\x61\x0e\xbf\x85\x6e\xc0\x34\x34\x88\x76\xbb\xbd\x64\x85\x3c\x1c\x66\x60\x15\x81\x13\x69\xf8\xe4\xfe\xa2\x62\xf8\xac\x18\x8f\x2b\x86\xcf\xd5\x51\x2a\x0a\x77\x06\x23\x08\x6f\xe6\x1d\xce\x92\x2e\xf2\xf4\x34\x85\x16\x42\x6b\x85\xf0\x3b\xca\x25\x75\x4c\x0f\x13\xca\xa3\x9a\x0d\x06\xcb\xda\xdd\x9d\xdd\xbd\xe0\xf6\xec\x48\xa6\x8e\x1e\x0b\xe4\x70\x57\x2d\xb5\xad\x0e\xf7\x0b\x16\xc8\x43\x0e\x82\x09\xb2\x76\x78\x23\x26\xc8\x52\x3d\x79\x98\x17\x31\x55\xd5\x6d\x5e\x44\xc4\xc0\xbc\x98\x0e\x49\x0b\xf6\xc5\x91\x1c\xbf\xa2\x8c\xac\x02\x03\x63\xca\xee\x7a\xa4\x95\x8e\x30\xfa\x29\xad\xe4\xea\x0f\x17\x56\x57\x7f\xb8\xfd\x81\x11\x2d\x71\xa5\xd4\x6c\xdb\xaf\x3f\x30\x63\x83\x35\x71\x3a\x94\x57\x32\x04\x1f\x1b\x63\xc5\xb4\x55\x35\x25\x0e\x37\xfa\xdc\xbd\x65\x78\x33\x10\xc2\x7c\xa9\x63\x57\x64\x6e\x26\x96\x4e\x27\x73\xda\x0f\xd8\x11\x86\xc2\x8a\xaf\x45\xc5\x20\x58\x86\x1f\xa3\x4a\x86\xe7\xea\x74\xb3\xb6\xdf\xdd\x3a\x54\x8d\x82\xc9\x19\x45\x22\xa9\x2e\x13\x12\x49\x72\xe9\x4f\x54\x31\x27\x17\x89\x44\x79\x1b\xa3\x60\x1d\xd2\x81\xd3\x03\x8b\x52\xa3\xe1\x6f\x78\xdc\x4f\xd7\x35\x18\xd4\x12\x49\xca\x70\xcd\xce\x45\x77\x26\xac\x17\xe3\x5d\x49\x8d\xbe\x5f\xd0\x23\x37\xc8\x92\x24\xa6\xf2\x12\x86\xb3\x54\xe0\x8c\x18\xce\x92\xd2\x2a\x86\xb3\x3a\xdc\x1f\x08\x06\xdc\xa1\x54\x6c\x5c\x75\xec\x32\xec\x16\x59\x00\x1b\x57\x6e\xee\xb3\x25\x0b\xd4\x21\xf5\x5a\xec\xbc\x34\x37\x2c\xec\x3c\x3c\xc6\x8f\x34\xca\x33\xf7\x38\x64\xcb\x0e\x79\xbf\xc5\x90\x61\xe8\xdf\xc3\x90\xdd\x42\x30\x7d\x95\xc6\x6f\x31\xfd\x3a\x10\x12\xbe\xc5\xf4\x47\xa0\x56\x7d\x2f\x82\xbe\xa3\x94\xe7\x67\x27\xfe\x45\x52\x4b\x34\xf0\x06\x2d\x33\x45\xaf\xbb\xda\x5a\x61\xfa\x43\xaa\xb6\x98\x7e\x6e\xee\xbe\xd7\xae\x32\xce\x77\xa9\x1e\xc9\xb9\x78\xb1\x8e\x3b\x04\xae\xda\xbb\x73\xfd\xb9\x75\xdd\x0a\x4b\x00\xc8\x05\x5d\xf2\xfb\x76\x97\x98\xe1\xcf\x2e\xf9\x12\x2d\x4b\xb0\x3f\x66\xa9\xb8\xe6\xdf\xf9\xf3\xc7\x6c\xbe\xcf\x2a\xec\x8a\x3e\xdf\xe9\x7f\xf8\x63\xc3\xd7\x48\xfb\x7b\xc3\x30\x38\xf2\xaa\xa8\x1d\x07\x76\xf3\xee\x73\x0e\x66\x59\x94\xbf\x1d\xc7\xf5\xf3\x47\x9f\xe1\x0f\xcc\x76\xf6\x03\x66\xbb\xf9\xce\xeb\x07\xc1\x1f\x4e\xf7\x5c\x65\x7d\x51\x30\x6c\xb7\x23\x61\xd9\xdc\x3f\xe8\x44\x40\x4d\x49\xab\x65\xa2\x89\xb4\x64\xac\x52\x2c\xaf\x03\xc0\x95\x57\x3b\xb0\x45\xcc\xb0\x8c\xb4\xb1\x08\x4a\x3b\xb0\x45\x1c\x4c\x59\x3b\x92\xfd\xf3\x07\x0d\x97\x94\xb3\xdd\xc8\x74\x16\x36\x0f\x85\x6c\xb8\xb9\xd4\xb1\x9f\x07\x2d\x1f\x94\xbb\x1f\xd0\x57\x8c\x0e\xdc\x7d\xb4\x23\x4f\x06\xe7\x07\xdc\x10\x0e\x2b\xba\x20\x27\x8c\x27\xbb\x27\x19\x02\x36\x07\x2c\xbe\xed\xc8\xae\x09\x0d\x2c\xa6\x5b\xb9\x29\x6f\x7a\xcf\x1c\xa5\xfa\x87\xd7\x8b\x54\x5a\xdc\xd0\xd5\x3f\xd0\x20\x5d\x87\xca\x6e\xc8\x96\x95\xf4\x68\x99\xbb\xcc\xe1\x10\x96\x4a\x3f\xda\xa4\xd7\xd5\x1e\x59\xb6\xd2\x46\xa5\x95\x2e\xd9\x0d\x2e\x2d\x0f\xbb\xdd\x9c\x17\x86\x0f\xdf\xc4\x97\xa9\x1d\xcd\xae\xc6\xef\x54\xd4\x76\x2c\xae\x5a\xc2\xee\x06\xc4\x2e\x68\x31\xe8\x8a\xe3\x5b\x8c\xab\x23\x26\xb5\x63\x31\xae\x31\x5c\x2e\x6e\xda\xa6\xf3\xd1\x17\x79\x40\xac\x6a\x87\x3c\x6c\xbf\xe3\x64\xb2\xb1\xb8\x2d\xcb\x2e\x10\x7e\x1f\xb5\xf2\x0e\xec\xa9\x27\xda\xc2\xd1\xa3\x15\x16\x6e\x48\x1b\xf9\x16\x3e\x80\x9b\x55\x3b\xe0\x03\x47\xf5\xa0\x2c\xcd\x75\x60\xcb\x6b\x87\x97\x4a\xae\xc3\x09\x6d\x74\xdf\x9f\x2a\x07\x74\x54\xda\x5f\x9d\xe4\x93\xf9\x73\x7b\x9f\xe1\x0f\xd4\x7a\xe2\x98\x61\x37\xd0\x38\xf7\xd9\x38\xd9\x57\xc5\x8f\x6f\x28\x2e\x2d\x2f\x32\x3e\x7a\x63\x45\x97\x32\x39\x3b\x9d\x58\xba\x64\xdf\x0b\xcd\x6d\xcc\xb4\xd3\x17\xb3\xe8\x88\x2f\xdb\x75\x67\x5c\x7d\x8d\xa6\xd3\xd3\x0b\x0a\x55\xfc\x00\xbf\x83\x64\x45\x4b\xf5\xde\xef\x73\x75\x32\x1d\xcc\xa2\xf4\x23\xb9\x87\x97\x3a\x38\xa6\x7b\x18\xea\x3e\x1d\xa4\x37\x18\xd5\x29\xe2\x0a\xa3\x7a\x48\x96\x16\x37\x8a\xeb\xf7\x40\x4b\x3d\xdb\x0f\x37\x5b\xdd\x8f\x5f\xb6\x2a\x1d\x7a\x69\x4c\xfa\x24\xed\xb5\xce\x17\x8f\x90\x83\x75\x5d\xa4\x77\x4c\xeb\x7f\xd9\x4f\xee\x95\x57\xad\x8f\xce\x41\x6e\x87\xfb\x60\x11\xcf\xd2\x9c\x5c\xb5\x27\xee\x6f\xda\xf1\xb1\x31\x3b\x1f\x2c\x4a\x3a\x8e\xfd\xfc\xf4\x25\x76\x05\xea\xd3\x01\x95\x4c\x50\xcf\xce\xf0\xf1\x43\x4c\x47\xed\xfe\xe0\x7c\x25\xca\xc5\x1f\x1a\x7f\x70\x57\x06\x49\x4a\xfb\x4e\x66\xe9\x02\x2d\x1d\x4e\xc6\xa4\xcc\xae\xa8\xd6\xb4\x06\x97\xc2\x32\x7d\x1a\x36\x67\x9f\x96\xcc\xda\xd2\xc1\x49\xa8\xb4\x90\xa0\xe8\x9c\xdb\x94\xec\x13\x34\x29\x2d\x1a\x5b\xb2\x35\x49\x63\x2b\x34\x33\x25\x76\x4c\xf2\xa5\x46\x99\x26\x16\xbd\x9d\xa3\xd1\xc2\x22\x9f\x1d\xe9\xaa\x25\xc9\x67\x9d\x7c\xb0\xc8\x67\x6e\x2c\x44\x5a\x14\x70\x70\xdd\xdd\x52\xe1\xae\x8a\x43\x95\x96\xe2\x31\xa6\x53\xb6\x28\xdd\x98\x50\xfd\xb4\x28\xdd\x98\xc9\x77\x6e\xca\x7e\xfb\xfd\x72\x4b\x6a\xa9\x6a\xe2\xe6\x9d\xaa\xe5\x89\x61\xe2\xdb\x75\x34\xb6\x64\x82\x00\x16\x28\x01\x3e\x9e\x95\x9b\xa0\x96\xf0\x06\x41\x66\x68\xa9\x22\x56\x75\x2b\xed\x7e\x6c\xad\x03\x43\x81\x1f\x4f\x7c\x61\xfc\xf8\xf4\xa5\xdf\x49\x6f\x2d\xd5\x25\xac\x96\xdd\xdf\xdb\xaf\x6c\x13\x87\x04\x68\x65\xc2\xe4\xd9\x9c\x9c\xa5\xde\x74\xa9\x4c\x6a\x2c\x45\x73\x4b\x60\xf2\x44\x12\x68\x49\xa2\x1b\x0c\x10\x6f\x8f\x01\xf9\x4c\x8b\x00\x27\x3c\xd9\x5a\x92\x00\x37\xa7\xb9\x61\xd5\xe3\xc0\xa6\xe0\x7a\xa3\xd1\x02\x6e\x17\x78\x76\xb5\x14\x78\x7f\x1d\x54\xba\x74\x8c\x91\xb3\xef\x38\x58\xa8\x00\x5e\xb0\xd3\x4d\x13\xdc\xbd\x4e\xdf\x5f\xa3\xc1\xb7\xa6\xa5\x50\xac\xb3\xad\xcf\x6f\xe9\x11\xa6\x50\x29\x4b\xea\x3a\x01\x32\x32\x4d\xa1\xcd\x0d\xde\xb9\x5d\xac\xbe\x54\x71\x0d\xa0\x77\xa8\x2b\x92\x96\xd4\x31\x47\x79\x6a\xb8\xb9\x51\x22\x48\x1d\xef\x47\xf7\x7d\x5f\x64\x32\xdc\xf7\xdd\x11\x54\x2b\xba\x50\x93\x6c\x6c\xa9\x4f\xc9\x91\x75\xb4\x07\x3f\x18\xfa\x49\x31\x9c\x81\x04\x0a\x75\x4f\x23\xff\xf2\x78\x6b\x09\x87\x89\x61\x63\xe8\x2d\x1d\x12\x92\x06\xb7\x39\x4e\x35\xea\x49\x72\xf5\x31\xa6\x16\x4f\xe8\xcc\x18\xd4\x19\x0c\x36\xd0\xee\x20\x67\xfc\xf2\xa2\x6b\x69\x72\x99\x61\xbb\x73\x28\x41\xd1\xf0\xe4\x5e\x3c\x68\x78\x3a\xb2\x46\x4f\xb9\x15\x2b\xd5\x1f\xf0\xdd\x41\xd6\x49\xfa\x5e\xda\x3b\x2f\x40\x5b\xd0\x1c\x4e\x09\x28\x27\x2d\x69\x11\x6d\x88\x4d\x69\x71\xa8\x8a\xe5\xa2\x25\x19\x14\x64\x39\x9d\xd7\x2f\xcf\xbe\x96\x4e\xaf\x73\xfc\x18\x83\x8d\x07\x08\x17\x81\x64\xcb\x17\x73\xe7\x98\xf1\xf5\xcc\x8e\x13\x87\x47\xc5\x98\xa4\x81\x13\x63\x4d\x4b\x8b\x2b\xe5\x0a\xd3\x4b\x17\xe6\xd7\x66\x45\x6b\x95\x9b\x44\x93\xfb\xff\xb6\x1b\x80\xa6\xbb\x1f\x2f\x5d\x10\x79\xe7\xe6\x2a\xd4\xe7\x4b\x15\x29\x87\xdb\xee\x86\xae\x36\x38\x66\xba\xf1\x93\x92\x34\xdc\xd0\x55\x89\x9e\x56\xcd\xe6\x30\x6f\x04\xf6\xb0\x26\x67\xdb\xf1\xe0\x8f\x5a\x3d\xc0\xf7\x8d\x29\xc5\x0f\x1e\x5c\x0f\x58\x05\x2f\x95\xdb\xee\xd3\x87\x88\x4f\x4d\x32\xc1\x66\x07\x1f\xae\xe7\x3c\xc1\x0f\xca\xad\xc4\xf4\x91\x5e\xb8\x7d\xb8\x8e\xdd\x94\xf8\x3d\x7e\x39\x55\xb6\xf4\xe2\xa8\xe4\x32\xbc\xfa\xf8\xb3\x54\x18\x11\x87\x24\xfd\xa5\xa2\xf0\xb4\x2d\xd6\x57\x0e\xf7\xfc\xfb\xfa\x83\x6f\xad\xfe\x15\x47\xfa\xd1\x42\x8a\xdf\xd2\xb7\xa5\x86\x8c\x24\xe9\x52\x0d\x89\x83\xbe\x7c\x08\x3c\x92\x4b\x39\x69\x48\x5a\xbe\xf6\xcb\x0b\xb4\xa5\x2f\x20\xc8\x36\xd9\x7d\xc9\x1f\x90\xe7\xdd\x2c\x8b\xdd\xee\xed\x0e\xb7\x2d\xfb\x95\x35\x53\x87\x1b\xf9\xbb\xa9\x93\x59\xc3\x54\x89\x71\xb7\xa5\x6f\x8f\xcf\x1f\x70\x55\x63\xd6\x32\xa6\x4a\x85\xea\x0c\x77\x96\x65\x65\x5d\x69\xeb\xa0\xcc\xa5\x0c\xc7\x26\xe3\x18\x11\xcd\xf7\x3b\xaa\xea\xa4\x8c\x3d\x77\x97\x51\xb0\x54\x42\xf2\x81\x9e\xcb\xf4\xe7\xa5\xff\xb4\xe3\xb0\x22\xec\x26\x48\x69\x78\x9d\x97\x69\x87\xd0\x72\x70\x53\x6e\x39\xc5\xcf\x1f\xd1\x92\xef\xb0\xf1\x39\xa2\x19\x3f\x82\x60\xe3\x67\xdc\x5b\x31\x36\x37\xdd\xd4\x3b\x32\x41\xf6\xc2\xb5\xf8\xdc\x65\x87\xdf\xe8\xc0\x5e\x58\x02\x5c\xd5\x8b\xea\x55\xe6\x62\x55\x6d\x29\x2f\xf5\x25\x4f\xb8\x01\xce\xea\xb9\x21\xb2\xe9\xad\x7e\x04\x7c\x45\x7f\x75\xee\xa7\x5a\xce\xb6\x90\xad\x09\x8b\x98\x73\x84\x27\xbb\xda\x42\xc6\x7c\x79\x04\x22\x68\x2e\x4e\x3c\x35\x15\x6c\x45\x1c\x08\x3c\xdb\x6b\x73\x22\x0b\x0e\x41\xdd\x32\x4c\xc9\xb9\x28\x13\xc1\x8e\x39\x2a\x3a\xd0\xfb\x8e\x3c\x96\x1e\x79\x33\x1a\x4e\x00\x5a\x11\xf7\x28\x2d\xeb\xaa\x82\x4b\x53\xcb\x15\x86\x8b\x3c\x96\x97\xb4\xa0\xc7\x41\xcb\x55\x73\x22\x1f\x57\x85\x65\xdf\x59\x52\x8a\xdc\x2a\x2f\xde\x5f\x66\xf5\x7d\xb8\xa1\xbd\x40\x73\xea\xcd\x6f\x1f\x2e\x0f\xe8\x69\xd3\x2b\x92\x6f\xf1\xea\x54\x62\xcb\xf0\xf3\xd8\xcf\x21\x4b\xbb\xe1\x06\x77\x73\x2a\x1a\x2a\xb5\x0d\x78\x53\x09\x43\xc8\x0d\xbd\x24\xdc\x47\x9a\x1f\xe1\x01\xf8\xf4\xd7\x8e\x60\x96\x83\x5a\x6d\x41\xd3\x62\xec\x97\xe0\x99\xd9\xf2\xf0\x07\xbf\x60\x86\x87\x3f\x9c\x90\x2b\x96\x70\xb1\xf4\x3e\x5d\x91\xd0\x22\x41\x37\xe0\xdc\xdd\x09\x86\x71\x1f\x11\x34\xd7\x9d\x3c\x2a\x5a\x9c\xbb\xef\x09\xe8\xec\x11\x0e\x6d\xee\xae\x08\x84\x39\x77\x3d\x54\x98\x99\x71\xf8\x03\x1b\x03\xf6\xdb\xc3\xb2\xec\x97\x0f\x46\x59\x02\x2f\x74\x2f\x8f\xb5\x3c\xc9\x93\xba\x58\x71\x39\x3c\x18\x03\x29\xa6\xd2\x8b\x71\xae\x21\x4c\x1b\xb8\x6c\xe0\xb7\xe4\x2d\x0f\x44\xcf\x5d\xdb\x83\x88\xcd\x60\x71\x54\xec\x8e\x75\x2e\x12\x88\x7b\x50\xcb\x53\x12\xe8\x4c\x79\xeb\xe9\x6a\xc3\x9b\x9b\x5d\xd4\x58\x18\x1e\x76\xbc\x0a\xb3\x44\x63\x7a\xb3\x42\x6b\x93\x69\x96\x38\x2c\x06\x9e\x13\xe4\x2d\x73\xa3\xa9\xe6\x92\x17\xff\x6e\x7b\xac\x18\x17\xdb\xf0\x9d\x01\x6b\xb6\x8c\x1c\x74\x58\xcf\x89\x50\xe0\xfb\xba\xd0\xf0\x0e\x7e\x3f\xcd\xd3\xaa\x27\x9f\xdb\x01\x36\x5d\xad\x73\xa9\x7c\xed\x70\xd9\x2f\x0c\xbe\xc8\x62\xf9\xd6\x21\xcd\x4e\xdc\x70\x03\x37\xd6\x9d\xfd\xc1\x3f\xb8\xb9\x83\xe9\x10\xc4\x54\xb3\x73\x27\xab\xed\x9e\x6f\x58\x6d\x97\x10\xcb\x6a\xbb\xf3\x72\xe3\xa6\x21\xa1\x78\x0c\x22\xe0\x03\x18\xe7\x41\x30\x53\xcb\x4f\xc6\x14\x6e\x99\x2d\x27\xd5\x5c\xaa\x64\x3b\xac\x88\x50\xb5\xa3\x4b\xf9\x9e\x01\x89\xf6\x83\xb5\x53\xc2\x03\xfb\xd8\x74\xb6\x89\xa5\x87\x10\xe0\xd5\xb2\xfc\xb8\x3b\xee\xc5\x8f\x47\x75\x0d\xd1\x4a\xd3\xb4\xb9\x8f\x0b\x61\x9e\xbf\x4b\xd5\xab\x30\xf3\xcc\xed\xe0\xd1\x91\x0b\xf3\xab\xaf\x0d\xdd\xf8\x1c\x10\x83\x83\x9b\x4e\x2b\x5a\x7c\x72\xe0\x71\xdd\xf2\x87\x85\xc1\xe9\xfb\xe6\xaf\x08\x89\x96\x3f\xbc\x85\xa4\xfc\xf0\xba\xe1\x3a\x7c\x78\x95\x23\x50\x17\xdc\x94\x0a\xd3\x5d\x54\x2b\x59\xe8\x02\x4b\x53\x63\x2a\x87\xf3\x02\xdf\x2b\xf0\x34\x82\x0a\x5a\x31\xac\x23\xfc\x80\xdd\xa9\x0e\x57\x8e\x8f\x88\x04\x7e\x48\x5e\xb8\xf3\x5c\xcf\x21\x96\xa7\x10\xa7\x81\xef\x61\x2b\x7a\x0e\x35\x9f\xbb\xe8\xcd\x1f\x26\x21\x85\x41\xf9\xfc\x15\xe4\xd1\x4a\x42\x5c\x86\x06\x94\xcc\xfe\x47\xec\x2a\x28\x95\xaa\x38\x25\xbb\xc5\x6c\xd9\xb8\x8b\xfd\x12\xd7\x19\xd5\x8f\xd7\x72\x86\x95\x2e\x16\x35\xa6\xbd\xc6\xc6\xa6\xcc\x5e\x16\x8b\x1a\x07\x1c\xaa\x14\x37\x34\x64\xa9\x14\x16\x04\x01\xa5\xc0\x7e\x5c\xa8\xc2\x4d\x18\x4e\x90\xad\xe0\x98\x23\x51\x2f\xc5\x4a\x2d\xb3\x13\xd8\x21\x65\xa9\xaa\x43\x79\xa3\x2c\xe6\x63\xc4\x4a\x2b\xaa\xaa\x1a\xb6\x0a\xdc\x47\x83\x46\xd1\x49\x87\x3b\xd3\x56\xaa\xee\x58\x74\x4f\x27\x1d\x6e\x06\x5b\x21\x74\xa1\xec\x97\xd0\x55\x1d\x43\xe5\x9e\xb3\x94\xdf\xd1\xb7\x52\xb7\xcb\x02\x65\x9c\x73\x76\xc5\x18\x6c\xd8\x64\x65\x87\x25\x38\x10\xbd\x73\x60\x4e\x65\xa9\xaa\x95\x68\xce\x56\x1a\x9e\x64\x70\xd7\xb2\x38\xdb\x90\xd5\x94\x66\xf8\x1b\x0d\xe0\x92\x48\x2c\x42\x2b\xad\xe3\x90\xe4\x3b\x27\xc4\xc1\x32\xa4\x59\x75\xa8\xa0\xb5\x26\x37\x8d\x1c\x4f\x82\x58\x16\xc7\x4b\xc9\x65\x69\xec\x44\x84\x96\x12\x6b\x27\xaa\xc3\x15\x1c\x13\xf1\x46\x6d\x05\x95\x37\x5c\x6b\x2e\xe2\xf0\xc2\x6b\x25\xb8\xa6\x77\xdb\xcb\x2d\x25\x3f\x25\xdc\x40\x74\x69\x71\xcb\xc2\xc5\x41\x2b\x72\x4b\x2e\xca\x5a\x89\x7f\x0d\x31\x6a\x45\x25\x99\xdb\xa0\x56\x96\x92\x5c\x76\x57\xd1\x86\xbb\x13\x10\x78\x52\x7b\x2c\x97\x32\x5c\xb3\xcb\xd5\xf1\x52\x81\xc7\x15\x95\xe1\xee\xf6\xe0\xee\xee\x70\xe6\x51\x86\xb3\xb3\xd7\x71\x45\x76\xaf\x77\x37\x04\x54\xa6\xa8\x0d\x17\x6b\x1a\xac\xa1\xad\x4d\x5f\xf2\x8f\x93\x7e\x5b\x2b\xf7\x2e\xbe\x64\x98\x80\x47\x6b\x40\xae\xb8\xb4\x68\x65\x78\x99\x43\xd3\x83\x40\x0d\x8f\x9c\x2e\x49\xc5\xb2\xf2\x22\x5d\xf2\xba\x8e\x4b\x98\x56\x06\xc4\xdb\x95\x5e\xec\xb4\xa6\x5d\x29\xa2\x80\x1f\x73\xdf\xb6\x8f\xd3\xc4\xfc\xea\x31\x5b\xaa\xee\x18\xce\x05\xaa\xee\xde\x92\xd3\x6f\x99\x54\x99\xa6\x86\xf3\x82\x1f\x50\x71\x2b\x2d\xae\xd9\xbb\x93\xa4\xda\xcb\x2d\x47\x2b\x8b\x6d\x16\xcd\x60\x05\x5f\xfc\x8e\xb8\x58\xb4\xcb\x7a\x29\x50\x50\x7b\xfb\xae\x89\x68\x21\x09\x19\xd7\x6e\x87\x37\x1b\x45\xbb\xac\xe3\xe4\xde\x2d\xbb\x01\xb0\xc5\x6a\x99\x2a\x27\x1b\x00\xda\x5d\x2e\xfc\xb9\x3c\xe1\x97\x33\x2c\x4d\xc0\x32\x3b\x5c\xc3\xab\xf9\x03\x7d\xbd\xe2\x57\xb8\x5a\x2b\x58\x60\xb3\x64\x00\x16\xac\x99\xa8\xc8\x82\x95\x09\x8a\x6e\x3e\x4e\x25\x2c\x38\x79\x40\x17\x07\xee\xdd\x63\x72\x8f\x5f\x71\x6f\xad\x10\x47\x9c\xec\x2a\x97\x73\xc7\x7e\x7e\x11\xa4\x40\x8f\x96\x7a\x5b\x94\x03\x0a\x4e\xea\x72\xca\x02\xff\x6d\x6e\xaa\x87\x60\x24\x78\xf4\x76\x9f\x1e\x1e\x5c\x1c\x72\x12\x7c\xb9\x70\x83\xa7\xc9\xbd\x70\x83\x97\xa4\xc5\x8b\xfd\x56\xcd\xec\x45\xf6\xab\xa1\xad\xa0\x0e\x4f\x4f\xc6\xa3\x1f\x3f\x1f\xe3\x91\xd3\x8e\xdf\x13\xb8\xd7\x85\x47\x2c\x2f\x2f\x86\x47\xd9\xc2\x5b\x7e\xc5\xfb\xb5\x82\xde\xbc\x37\xc7\xdb\x90\x8d\x6d\x05\x0f\x09\xcf\xae\x37\x7a\x43\xaa\xf6\x0e\x68\x8e\x3f\x4c\xca\x7e\x70\x72\x25\xc3\x44\xbd\xc6\x71\x32\x39\x98\x9e\xeb\x7e\xff\xf9\xf9\x43\x51\xba\xa0\x7e\x37\x8f\x83\xda\xb7\x74\x6f\x89\x04\x45\xfb\x43\x59\x22\xc1\xa2\x10\x94\x09\x04\xf3\xfd\xcf\x20\x12\xdf\x71\xe3\x4a\xeb\xf4\xf3\xa9\x7e\xa0\x09\xc5\xe7\x6b\x00\xda\xe9\x0b\xea\x75\x73\xf0\x4b\x9e\x28\x0a\x88\xe5\xdb\x73\xcf\x00\x96\x82\xdd\xf0\x97\x6b\xe5\x33\x98\xd8\xd6\x1e\x9e\xaf\xd9\xaa\xba\xfc\x28\x20\x10\x7b\x5e\x0b\xd3\x55\x75\x82\xc6\xe3\xb4\x55\xcc\xdc\x99\x29\xaa\x47\xc5\xfd\x76\x50\x76\x9f\x84\x3f\x04\xd5\xfa\x83\x93\x1d\x56\x85\xbb\x1d\x42\x65\x3d\x60\x6c\x18\xdd\x2a\x66\xee\x3a\x7d\xe7\xf2\x83\xc6\x1f\x5c\x28\xed\x97\x9e\xc5\x67\x92\x1f\xeb\x7d\x6a\x97\x3e\x9c\x66\x79\x67\xc9\x2f\x85\x08\xfb\x56\xd5\xc9\xa1\x07\x75\xe9\xe4\x8b\xbe\x52\x46\xba\x60\x79\xaa\xd1\xf1\x32\xaf\x9a\x20\xc5\x0e\x21\x39\x04\x2b\x25\x2a\x04\xae\x51\x93\x86\x39\x86\xa6\x52\x3e\xba\x35\x61\x36\x3d\x2c\xbf\xd8\x77\xed\xc5\x22\x63\x99\x0d\x59\x31\xa9\x47\xb5\xcc\x66\x80\x10\x57\x85\x9f\xc1\xce\xa8\x4b\xf8\x69\x44\x63\xb5\x8a\x4b\xb4\x22\x6b\xcd\x7d\x29\xa8\xd4\x4f\x6c\x69\x63\x2f\x54\x1c\xa2\x03\x2e\x5e\x55\xee\x07\x9b\xb3\xa2\xdc\x8f\x69\x9d\xde\xcb\xf9\xdc\xe8\x58\x9f\x13\x3e\xe7\xbc\x67\x6e\x02\x7d\x5f\xc1\x69\xb0\x61\xea\x12\x9c\xaa\xa6\xee\x5a\x98\xc7\x61\x59\xaa\xe7\xa4\x16\x5d\x41\xfd\x00\x7b\x3c\x34\xac\xa2\xf4\x4b\x01\x2a\x0e\x48\x52\xf4\x5a\x76\x57\xad\x49\x26\xcb\x30\xd1\xfa\x55\x93\xab\x57\xa1\x0a\x82\x95\xab\x50\x89\x75\x2d\x46\xad\x23\x6b\x55\xee\x0e\x0e\x57\xa1\x3a\x79\xbc\x84\x78\x55\xdc\x0b\x5e\x05\x68\xfa\xac\x55\xff\x61\xd6\x99\xab\x80\x43\xd1\xae\x22\x42\xa9\x94\xd6\xea\x91\xe1\x6b\x7c\x9a\xa5\x17\x55\xa9\x69\x20\x5b\x54\x42\x35\x35\x20\xd4\xc6\x8e\x81\xe2\xd6\x46\x20\xad\xad\xe1\x99\x54\xea\xf1\x3b\xfa\x56\x89\xe3\x2c\xf6\xa4\x39\x3d\xd3\xda\x0c\x44\xf5\x07\xdd\xb1\x99\x67\x44\xa1\xbd\x48\xe1\x62\x38\xda\x25\x0b\xb5\xe2\xb2\x2a\x0b\x4d\x37\x66\xd0\xc7\xfd\x52\xf7\x07\x46\x1b\x86\x03\x52\xee\xec\x4c\x9b\x5e\x22\xcc\x3a\x55\x94\x0b\x9e\x5e\xbe\xc3\xb9\x99\xfb\x07\x1c\xb4\x60\xc2\xb5\xdb\x82\x65\x66\xc1\x99\xea\xda\xa3\xe8\x6b\xe7\xfa\xd1\xdd\xd8\x59\x6e\xd7\xa2\x7b\xc0\x19\x27\x66\x7b\xaf\x28\xeb\x48\x36\xc6\xc7\x83\x1d\xe8\xe9\x55\xb2\x91\x10\xd6\xe1\xa0\xfd\xda\x41\xef\xaa\xb8\x58\x46\x2e\xaa\x48\x30\x15\x96\x50\xb1\xe8\x4f\x37\x94\x97\xc3\x1a\xd9\xeb\x20\x34\xc4\x59\xc2\xdf\x48\xd3\x7d\xc5\xdf\xc8\x5b\xbd\x3a\xed\xd3\xfe\x03\xa7\x4d\xf7\xca\xb4\x4f\x56\x3b\xed\x13\x53\x66\x4c\xa3\x83\x20\x70\xaa\xb8\xa1\x96\x60\x94\xb5\xbb\x55\xcd\x09\xd3\xa5\x5e\x92\x51\xab\x2e\xdc\x92\x6d\x16\x45\xa3\xbc\x2a\x55\x65\xaf\xa7\x03\x45\xf4\xaa\x4b\xb6\x69\xf2\xc1\xba\x64\x9b\x26\x7f\xa9\x4b\xb4\xa9\x51\x2d\x5f\x64\xea\xf0\x63\x44\x38\xc9\xd1\x69\x63\x96\x5f\x2b\x65\x08\x84\x0c\x16\x27\x80\xfb\x80\x63\x93\x54\x2e\x04\x54\x58\x2a\x17\x02\xc7\xf4\x68\x7b\x23\x20\x8d\xb8\xe8\x2b\x0a\x68\xbd\xbc\x81\xa3\x7b\x4b\xfe\x69\x44\x46\xb4\x7a\xdd\x3f\x7f\xcc\xc3\xf5\xc1\xf0\xaf\xd8\x52\x2f\xbb\x61\xff\x88\xfc\x53\xf9\xa8\x4b\x48\x52\x56\xaf\x88\x48\x6a\x7b\xf5\x66\xaf\x62\xd9\xab\xb7\xab\x50\xfd\x83\xc0\x4c\x69\xb6\xb7\x06\xb3\x5a\x11\xa1\xa5\x12\xff\x9b\x88\x1e\x97\x0d\x53\xc6\xa6\x4d\xb8\x42\x6f\xce\xb1\x84\xa7\xe6\x15\x77\xc5\xe3\x79\xba\x6c\xf7\xbb\x3a\xe4\xa7\xf4\xd3\x6d\x81\x7d\x63\x53\x5a\x9c\x9f\x0e\xab\x7c\xec\x28\xd5\x2c\xf9\x6a\xb1\x27\xca\x61\xdf\x98\x21\xec\x1b\x5e\xcf\x55\xe4\xab\x63\x8f\x40\x4f\xa8\x29\xc5\x7f\xec\x91\x3f\xb0\x84\x6e\xe1\xe7\xa5\x4c\x97\xf0\x84\xca\xbe\xaf\xfb\xf3\x44\x9c\xab\x4b\xa0\x1a\xdd\x33\xf9\xe2\x35\x21\x43\x45\x56\xda\xab\xfc\xb2\x8f\xe4\xd8\x2f\xce\xa4\x76\x6f\x3b\x3f\xf9\x0e\x2e\x31\xed\x77\x31\xaa\xad\xe2\x19\xb5\x77\xf1\x12\x98\x8a\xee\x1e\x15\xa7\x67\x2f\xfb\xea\xc7\x4e\x77\x45\x91\x61\xb4\x5b\xd6\xcf\x61\x2b\x16\x20\xc3\xec\x9d\xf1\x39\x6c\xa6\xc0\x4b\x82\xe9\x8a\x7e\x08\x99\x70\xe1\xa6\x70\xe3\xd5\x43\x43\xb8\x49\xfb\x87\xca\xe6\x1b\x94\xdd\x1b\x70\x92\x76\xe8\x7c\x9e\x28\xe3\x27\xcf\x02\xb7\xc3\xb5\xe8\xfe\x30\xd7\xc2\x37\x8a\x2c\x3c\x07\xb1\x29\x85\xd8\xc0\x92\x42\x9a\x3e\x4f\x2d\x79\x72\x7d\xce\x09\x80\x61\xb6\xcc\x46\xe1\xd4\x37\xfd\x91\x89\xcf\x6c\x0d\x8b\xbe\x97\x2a\x8d\xe4\x12\xde\xa7\x35\x92\x48\x10\xb5\xd1\x5a\x76\x62\xa0\xf6\x0d\x2b\xfe\xec\xfe\x20\x4d\x9b\x7e\x01\xa7\xaf\xd6\x84\x2b\xb4\x73\x51\x68\x1a\x43\x50\x2b\xfa\x48\x31\xb2\xe2\x89\x46\xd6\x6f\x85\x35\x41\x21\x68\xe4\x88\xa8\xd5\x8f\xd9\x7d\xd5\x77\x1e\x3d\x09\xe9\x06\xbc\x9a\xe8\xa8\xd6\x0a\x13\xe3\xe4\x91\xb5\x25\x69\xe6\x6c\x95\x99\xb1\x4b\x18\x4f\xd2\x01\xbd\x6a\x44\x38\x49\xc9\x1b\xf7\xfc\xa4\x3e\x6a\x8d\x7b\xfe\x44\xc4\x67\x6b\xa4\x7d\xd0\x19\xa0\x2d\x26\xbe\xe4\x00\xca\xe7\x5a\x12\x8b\xdf\x52\xdd\xec\x51\x63\x9c\x2e\x55\x23\x2a\x18\x06\xd7\xf0\x34\x4e\xe4\xc2\x68\xad\x71\x18\xab\x3f\x40\x4c\x39\x72\xad\x31\xce\x66\x45\x8e\xd3\xb1\x35\xe3\x56\x78\x89\x14\x3c\x81\x72\xd8\x82\x7b\xca\xc3\xe7\x8d\x1b\x1a\x46\xb0\xf8\x6f\xae\x6e\xaa\x70\x3d\x7d\x1f\x6b\xae\x0d\xc7\x65\x03\x6c\x00\x1c\xa7\x3a\xa7\xa1\x05\x1b\xdd\xa9\x20\x58\x54\x63\x76\xd3\x38\xe0\xea\x74\x76\x15\xfb\xbf\x75\x84\x3e\x4c\x14\xad\xdb\x6b\xd4\x99\xd6\x21\x0e\xf0\xdc\xd6\x75\x00\xf5\x2d\x99\x2e\x0a\x56\x1b\xac\x8e\x5d\x1d\xa4\xe4\x40\xaa\x6a\xc3\xbd\x40\xb7\x07\x5e\xf1\xee\xdb\xb1\x84\xe4\x5f\xcf\x07\xdf\xd2\xeb\x81\x0b\x1f\xac\xae\x61\x4c\x18\x6e\xc8\x41\x4f\x77\x5b\x9e\x1d\x3a\x37\xdd\x22\xae\xd4\xb4\x13\x96\x39\x3c\x1e\x4e\x2e\xd1\x4b\xf6\x03\x16\xdf\xf3\x38\x91\x8e\x76\xf9\x41\x2a\x61\x60\x53\x23\x93\xdb\x7c\xd2\x1a\xa4\xae\xe1\x99\xe5\x0d\x6a\x3b\x4f\x7c\xbf\xf8\xe0\x74\x11\x9c\xa3\xc5\x27\xc7\xe2\x3d\xbf\xa1\x6f\xed\x74\x96\x91\x6c\xda\x49\xdc\x3a\x94\xb6\x5d\x8c\x03\x26\x4a\xa2\xa4\xa1\x7d\x96\x4c\x49\x55\xae\xd6\x2e\x77\xa2\xc7\xf2\x62\x27\xba\x2a\xb8\x74\xa5\x4d\xa3\xb8\x3d\x9f\x2e\xc5\xa5\xda\x1d\xbe\xc5\x34\xd8\xfb\x0b\xba\xa9\x48\xdc\x08\x28\xd2\x4b\xb3\x11\x63\x9f\xbc\x40\x6f\x37\x13\x0a\x87\x69\xf8\xf5\x6a\x10\x25\x67\xd3\xa8\x6e\xde\x9b\xdb\x32\xa9\xc0\x6d\x73\x90\xe9\x76\x3b\xeb\xf4\x63\xb1\xbf\xa1\x97\x56\x7b\x18\xa9\x04\x48\x3e\xe7\xd2\x3f\xdc\xc0\x7a\xe6\x1e\x57\x92\xae\x3e\x9e\x69\x7b\x81\x7d\xbf\x3a\x7d\xcf\xc9\xe1\xf5\x25\x57\x63\x58\x13\x16\x8c\x6c\x4d\x1c\x09\x44\xd2\xf6\xb8\xc6\xc8\xcf\xed\x71\x8d\x29\xbf\xee\x28\x4f\x29\xee\xbf\x43\x8a\xfa\x4a\x74\x24\xb5\x2f\xee\x62\xce\xc0\x4b\x07\x11\x92\xda\xcb\x4a\x38\xe1\x2f\xfd\x43\x1d\x69\x18\x11\x12\x51\x31\xad\x61\x44\xa8\xbb\xa2\xc5\x13\x0e\xfb\xf4\x42\xa7\xbb\x95\xd2\x25\x44\x9b\xf6\xb9\xd6\x9e\x04\x6e\xd1\xab\x15\x2d\x2d\x7f\x1e\x4e\xeb\x07\x81\xe8\x7e\x40\x90\xad\x34\xe1\xe3\xf8\x4e\xcb\x1c\x5f\x4d\x2f\xb1\x98\xdc\x62\x75\x94\x59\x07\x16\x8e\x14\x5a\xa3\x41\xbe\x02\x56\x96\xb4\xdb\xc5\x41\xb7\xa7\x3f\x4c\x2e\xa6\x0a\x65\xe8\x1d\xbd\x8b\xa5\x75\x4f\xe2\x6d\x1b\x71\xf1\x89\x00\xcb\x16\x38\xfc\x92\x11\xa3\x05\xae\x65\x7a\x3d\x44\x62\x41\x77\x45\x89\xe1\xb0\xb8\x91\xcc\x7c\x41\xc3\x04\xf2\x1c\xd9\x8f\x2f\xb4\x6b\x7a\x9d\x10\x05\xd9\x19\xc1\x2d\x77\x22\xda\xa1\x45\x72\xcc\x56\xca\x44\x22\xb6\x04\xca\xb2\xd7\x32\x91\x5d\xb5\x4e\xb9\x33\x15\x34\x80\xb6\xbc\xdd\x58\x22\xe3\x5c\x97\x2c\xdf\xbc\x44\x03\x8b\x59\xb6\x76\xf8\xfc\xa5\xd7\xf4\x88\xeb\x84\x80\x4c\xc5\xe2\x95\xd3\xd3\x1d\x2a\xc5\x36\x06\xaf\x24\x98\xa2\x05\x4a\x71\x4a\xce\x51\x81\x79\xb1\x15\x82\xcc\x79\x04\xf4\xb7\x28\xc8\x16\x87\x15\xb9\x20\x48\x58\xb1\xb4\xe5\xa9\x3b\x62\x90\x74\xe9\xd7\x4b\xa7\x2f\xd9\x04\xb1\xe4\x10\x96\x40\x11\x56\xee\x36\x25\x5a\x4a\x2e\xc9\x62\xae\x53\xe7\x42\x82\xfc\x9b\x1e\x37\x51\x1d\x27\x15\xe1\x07\x4c\x5e\xb9\x16\x8b\x0f\xb6\xb5\xfd\x7f\x43\xe3\xa2\x39\xb3\x74\x71\xa9\xb6\x4d\xaf\xc0\x68\x76\x97\xa5\x6b\x36\x48\x0f\x1b\xfb\x07\x8a\x13\xc1\x04\x72\x1c\x48\x36\x90\x92\xee\x26\xb1\x34\xd9\x46\x0c\x79\x8b\x70\x06\xdd\xae\x61\xb7\x2c\x3b\x83\xbe\xe4\x39\xa1\x17\xe1\x0c\xba\x46\x78\xbe\x1d\x6e\x69\x63\x77\x5d\xdf\xc5\x61\xab\x7a\x69\x2c\x0e\xdb\xf4\x29\x8c\x90\x9a\xf8\xfe\xc7\xba\x33\x37\xdd\xc9\x84\x64\x07\x1a\xb1\xfe\x51\xb1\x34\xe2\x49\x60\x7e\x8b\xbe\xbb\xca\xa0\xb9\x27\xd7\x78\x18\x7a\xb8\x91\x94\xae\x45\x37\xc3\x21\x4d\x74\xfb\x0a\x5b\x0d\x72\x08\xa9\xb2\x47\x9f\xac\x17\x53\xd3\x5d\x6d\x38\x54\x0c\xe7\x8c\x9a\x96\x5a\xdb\xb4\xc4\xc4\xd2\x6a\x5b\xf3\x98\x71\x69\x1e\x2e\xfc\xf0\x08\x31\x88\xe1\x11\x82\x9c\x04\x61\x34\x6a\xec\x41\xa2\x1e\x0d\x51\xb1\x14\xd6\x46\x1c\x4c\x8b\x59\xfd\x80\x51\x93\x48\x50\x02\x17\x58\xef\x8b\x7b\x6e\xe9\xa2\x45\xe1\x3b\x4e\xd6\x01\x3a\x1b\x46\xb1\x24\x0f\x29\xb9\x6d\x54\x3a\x62\x71\xc2\xa9\x89\x25\x96\x3a\xb9\x84\xdc\x55\x5e\xdc\x6f\x1e\x98\xc0\x02\xab\x79\xf8\xed\xa5\x7f\xa0\x87\xf1\x92\x84\x50\x11\xe9\x65\x74\x65\x8c\x0b\x7f\x3f\x3f\x40\x21\x54\x6b\x8c\xa5\x11\x4e\x59\x45\xe0\xcf\x1c\x48\x46\x81\x3f\xb3\xfa\x7a\xdc\x1e\x33\xdf\x61\xe2\x3d\x72\x18\xcd\x75\x32\x09\x7c\xc2\x92\x71\x12\x41\x6a\x17\x15\xc2\xc0\xcf\x79\x7f\x00\x27\xd3\x7f\x2d\x9e\xfe\x2b\xd3\x5c\x8b\xc7\x3b\x45\xdf\xb9\x60\x2c\x3e\xbf\x75\xa8\xf3\x07\x8e\xa2\xfb\xe2\x21\x64\xd2\x91\xa1\xaf\x79\x13\x1e\x2f\x57\x4b\xd8\x31\xe2\x65\x17\xfa\xed\x8b\x44\xe6\x0c\x71\x1d\xbd\x3d\xe1\x03\xfb\xb7\x6a\x4b\xbc\xec\x73\x89\xc6\x6b\xcb\xc8\xcb\x81\xcb\x74\x41\xba\x08\xdc\xc3\xaa\x2b\xfb\xe9\xbd\x46\x8f\x3e\x7c\x54\x9d\x23\x38\x54\xb3\x81\x8f\x73\x8e\xe8\x15\xe8\x67\x06\x0c\x84\xbe\x5a\x9e\xc8\xc5\xa1\xca\x5e\xcc\xcf\x05\x5f\xef\x74\x33\x68\x34\xcb\x4c\x1d\x92\x6d\x3f\x5c\x70\x14\x89\x8e\x8b\xb4\x0e\x85\x7d\x71\xab\xa9\x4d\xb2\x9b\xd1\xf0\xb0\x4c\x27\xb8\x56\xe9\xc7\x49\xd9\xe7\xf8\xd8\x40\x95\xfb\xe1\x88\xab\x7f\x3c\x38\x9b\xa7\xdf\x91\xb7\x9e\x90\xce\x38\x31\x3d\x15\xca\xf4\x2a\xc1\x43\xf7\x73\x36\x7a\x6e\xfe\x31\xf8\xc1\x97\xa0\x7b\xcc\x71\xff\xb7\x64\x83\x8d\x5c\x2a\x45\x93\x6e\x27\xae\xa4\xc0\x13\x48\xab\xd2\xbc\xc3\xef\xa8\x74\x7a\xf8\x74\xfd\xb2\x32\xc7\xaa\xc3\xa5\x0e\xc7\x8a\x4a\xa7\x21\xb2\xeb\x7e\xc5\x3e\xec\x28\x68\x07\x4a\x66\x2f\x56\xea\x73\xb3\x25\xf2\x2d\xc9\xfa\x14\xf4\x3b\xb9\x25\x48\x6c\xd9\x3a\x2c\x24\x65\x28\x46\x37\x29\x9f\x15\xe1\x59\x95\xbc\x37\xea\x15\xff\x14\xf4\xaa\x4e\xf0\x89\xea\x70\xc7\x64\x1a\xd9\xb2\xdd\x66\xdb\x77\x98\xce\xb1\x7f\x40\x7a\xd9\xcf\x49\x6b\xe1\xd0\xc8\x1b\xa1\xe6\xda\x8d\x11\x65\xcf\x74\x7c\xab\xb4\x7c\x75\x6e\x97\xb5\x6a\xf4\x86\x1f\x93\x53\x81\x51\xb4\x4d\xdf\x71\x8a\xe8\x28\xfc\x66\x3f\x36\x00\xce\xea\x71\x6b\x85\xdb\x74\xae\x96\x75\x62\xeb\xe4\x7d\x38\xdc\x6d\x5c\x21\xab\xda\xf6\x70\x4b\x22\x03\x75\x12\x42\x18\x55\xd3\xe5\x36\x79\xff\x31\x98\x15\xbf\x60\xde\x77\x4d\xa4\xb1\x73\x31\xe1\x36\x47\xb5\xec\x9e\x74\x83\xa2\xcf\x1d\xb0\xdf\x1e\xaf\x3f\xf8\x07\x96\x78\x87\xdf\x59\xd9\x66\x99\x0b\x44\x68\x6a\xf7\x76\xd8\x6d\xd4\x6d\x81\x1e\x75\xa6\x02\xed\xa9\x73\x09\x5c\x5c\xb3\xc1\x1d\x59\xf3\x39\x57\xe5\xf6\x0e\x96\x72\x40\xcc\xfb\xb0\x7e\xe6\x8b\x3c\x12\xe4\x32\x6b\x7d\x50\xa7\x73\x87\xbb\xb3\x52\x49\x9f\xf6\x8d\x3e\x13\x41\xa9\xe7\x6f\x3f\x71\x83\xf1\x98\x9f\x89\x6d\x40\xdf\x4e\x52\xc4\x1e\x3e\xd7\x97\x9f\x7a\x30\x68\xea\x13\xd4\x31\x68\x26\xaf\xbd\x3b\x89\xd3\x64\xda\x1d\x83\xe6\xe1\xd6\xe7\xae\x36\xa9\xfc\xf7\x93\x79\x87\x2c\xf6\x53\xf7\x83\x5d\x2d\x5e\xbd\xdd\xe6\x6e\x7f\xf0\x2d\x26\x1e\xb3\x52\x27\x6f\x83\x06\xb4\x7e\xb1\xc7\x3d\xd6\x97\x5e\x4e\x1e\x97\xcb\x0e\xb2\x6a\x17\x4b\xee\xb1\xe3\x52\x96\xd8\xe7\xd6\xef\xc5\xcc\x9c\xc7\x5b\x89\xd6\x32\xe9\x2f\x11\x04\x3a\xb6\x41\x83\xe7\x3a\xba\x91\xb2\x64\x37\x17\x82\x7e\x3d\x9d\xcb\xd7\xdd\x16\xc6\x41\xfd\x62\xfb\x63\xbb\x74\xfa\x61\xc8\xfb\x7d\xe8\xc6\xef\x63\xb3\x3a\xec\x46\x41\xa2\xab\x2b\x29\xb1\xf7\xc7\xbc\x8f\xd4\xac\xae\xe4\x52\xbf\x70\x52\x78\x4c\x47\x23\x52\xd3\xec\xaf\x15\xd1\xf5\xd7\x8a\x9c\x64\x34\x1c\x85\x81\xfe\xf9\x01\x53\xf3\xa1\x44\x7a\x02\x3e\x87\x41\xc3\xe4\x05\x9b\x12\x1e\xd2\x82\x91\x4a\xab\xf5\xcf\x06\xd6\xfb\x03\x9d\x46\x41\x6f\xe0\xdd\x9b\xb4\xfd\x8f\x23\x63\x63\x0b\xca\x8d\x28\x9e\x49\x19\x9b\x2e\x9b\x69\x2c\xf6\xd1\xbc\xaf\x1e\x07\x11\x29\x9c\xbc\x71\x70\x60\x90\x49\x87\x6c\x82\x24\xac\x6d\xe8\xde\x8b\x80\x3a\xb8\x3e\x54\x6b\x18\x28\x35\x12\xf9\xa1\x4e\xc3\x09\x18\x89\x85\x60\x04\x23\x21\xe8\xda\x21\xd4\x95\x63\xbf\x6f\xc8\x3f\x22\xf7\xc8\x0e\x87\x9e\x6a\xe9\x2b\x3e\xaf\xb8\x58\x33\xe4\xac\xbf\x31\x1d\x42\xfd\xf0\x26\x71\x14\x72\x46\xd8\xf0\x52\x3f\xba\x2e\x0d\xa3\x10\x50\xe7\x00\x4c\x30\x6d\x9d\x95\x25\x80\x7c\x8f\x45\xa6\x07\x99\x60\xdb\xc0\xd3\x55\xaf\xed\x41\x76\x9f\x16\x96\x9f\x9f\x3f\xa2\xed\x77\x58\x57\x4d\x6a\xa3\x22\x17\x23\xe6\x0f\x3c\x88\x92\x56\xa8\xb1\xe8\x74\xd9\xad\x91\x98\x5a\xcb\xde\x20\xd8\x25\x69\xda\x1b\x38\xc7\x7a\xb5\x34\x16\x31\x1f\xcd\xd5\x6c\xf8\x85\x3b\x1c\x28\x75\xe6\x20\x8d\x40\x68\x43\xd8\x1e\xea\x02\x7b\x5e\x02\x53\xad\xf3\x18\x9c\x0c\x54\xb4\x81\x8b\x8e\x37\xa0\x23\x20\x55\x90\xc5\xa1\xb3\xaa\x3d\x5a\xe2\xf5\xf0\x3a\x64\x60\xfe\xd2\x43\x61\x68\xfe\xd2\x8e\x31\x06\x8b\x03\x9b\x1a\x98\xbf\xd4\x5c\x07\x74\x34\xa9\x71\x0e\x08\x69\xde\x1f\x54\x7f\xa0\x5a\xbc\x69\x7e\xd5\xc4\xbe\x40\x20\x1d\x78\xab\x7a\x27\x3b\x16\xf5\x2c\x05\x86\x3f\xc8\x7d\xa9\x86\x36\x88\x03\x21\x1b\x78\x1b\x93\x03\x3d\x7c\x0e\x47\xd5\xa1\x7d\xcc\x7b\x1d\x23\xbb\x84\x71\x2b\xa9\x10\x8f\xf9\xe2\x40\xce\x04\xe0\x35\xb3\x17\x77\x91\xc9\xac\x1b\xd9\x20\xbf\xa4\xc1\x25\x03\xcb\xd4\x74\x3d\x89\x29\xf4\x1a\x63\x5c\x17\x93\x64\x59\xf6\xcd\xe6\xb9\x4c\x52\x66\xa5\xc4\x0b\xea\x87\x30\xee\x7d\x31\x47\x99\x15\xb1\x22\xee\x55\x92\xb2\xf0\xc0\x84\xd4\xa0\xb6\x03\xeb\x90\xd7\x35\xe3\x31\xd3\x32\x44\x7c\x90\xe7\x30\x9c\xfa\xa7\xfa\x03\x33\x80\x7d\x68\xfe\x36\x07\x5c\x1b\x0f\x11\x74\x28\x53\x03\x17\x50\x72\x26\xb4\xb1\xe8\xe3\x34\x50\x6c\xe0\xdc\x69\x6c\xc1\x58\x54\x6f\x64\xbb\xf5\xa2\x3f\xc0\x70\x07\x5e\x26\xc9\x00\xa3\x81\xd7\xe7\xb4\x52\xc5\xec\xe6\xce\xc7\xeb\x33\xbb\x87\x5e\xe2\x44\x1d\xec\xeb\x8d\x05\xbc\x78\xbc\xd7\xaf\x1c\xd3\x6d\x2c\xf9\xbb\x64\x0f\xec\xbb\x93\xbe\xf9\xf5\x5a\x3c\x05\xa8\xb1\x08\xe8\x18\x9e\x58\x1c\x47\xca\x2e\x7b\xa3\x66\x19\x4f\x4c\x4f\x2c\xfe\xa3\xfb\x54\x2f\x02\x3a\xbc\xed\x18\x1f\xd2\x2e\x47\x6b\x2e\x3a\x69\x72\xeb\x36\x0f\x87\xb0\xff\x20\xa1\x35\x9a\xd8\xd4\x49\x83\x45\x9d\x84\x78\xeb\xed\x30\x31\xf8\x24\xd2\xd1\xb4\x79\xe0\x89\x8a\x26\x36\xc9\xe7\xad\xb7\xfc\x5c\xc4\xb1\xfc\x2a\x07\xd9\xcf\xf8\x38\xe9\xdd\xda\x28\x9f\x88\x07\x34\x40\x5c\x43\x92\x0a\x4c\x82\xb7\x55\x94\x27\x94\xd2\x38\xd6\x99\xd7\xcc\xef\xde\x65\xbb\xcd\x69\x9f\x58\x79\xc2\xd6\x72\xa3\x4c\xad\xd9\x3d\x37\xfc\xa2\xff\x4a\xd6\xdd\xa6\xe6\x1f\xe3\x73\x26\x99\xb8\xa3\xfa\x05\x29\x50\xf6\x73\x53\x83\x58\xab\xae\x8a\x9c\xde\x69\x24\xc4\xee\x13\xf6\x12\x14\xb3\x49\x24\x84\x5e\xf1\xb3\xc8\x34\x39\xb2\xb3\xe8\x12\x4a\x5f\x71\x8a\xf0\x7a\x60\x96\x4e\x56\x20\xba\x57\x06\x42\x07\xbd\x28\xda\xdd\x98\x8c\xe2\x2c\xf9\xbe\xb3\xe4\x74\x73\xd1\xa2\x30\x3a\xbd\x68\x69\xbb\x05\x76\xb4\xd3\xc7\x7d\x8a\x82\xe9\x54\x5c\x77\x07\x54\xa7\x0f\x5a\x31\x8d\x9b\x74\x66\x70\x39\x95\x7b\x4d\xf2\xc2\xed\xc5\xc2\x27\x22\x5c\x9f\xea\x86\xde\xb5\x32\x4b\xce\x37\x72\xbc\x7c\x60\x9a\xeb\x05\xfe\x3b\x65\x10\x7a\x92\xcd\x66\xe6\x20\x66\xcf\x9c\x2e\x08\x30\x93\x8b\x16\xa5\xdd\x89\x2b\xa9\x26\x87\xd9\x88\xfb\x46\x5a\x9c\x18\x97\xc8\x44\xdc\x66\xc3\xb3\x8d\xec\x40\x6d\x2e\x2d\xa0\x79\x3d\x3f\xc9\x53\x5d\xa1\x1b\x53\x8b\x92\x11\x42\x33\xa0\xb4\xc8\xcd\x13\xc3\x11\xe2\xc4\x24\xd5\xb4\xa2\xdf\x0c\xc2\x08\xac\xd3\x4b\x17\xfd\xc3\xe6\x62\x22\x63\xcf\x51\x3c\xfe\x60\x0b\x10\x4e\xc8\xd7\xc4\x9f\xd3\x9b\xfa\x49\xf2\x68\xaf\xfc\xa7\xa6\x9f\xc8\xbe\x14\xcc\x2a\x4d\x6b\xfa\x09\xb7\x34\xee\x10\xe4\x2c\x6b\x93\xf4\xd1\xad\xff\xd6\x41\x84\x24\x9a\xc9\x00\xdb\x39\x00\x07\x81\xb9\xcd\x61\xc8\x2f\xb3\xb6\xd8\x53\x28\x85\x90\x67\xb3\xe8\x9b\x3d\xc7\xee\x96\x7f\x10\x2d\x87\x68\x33\x49\xda\xa2\x23\xfc\x24\x5c\x9e\xf4\x8d\x6d\x0e\xa7\x1c\x82\x3e\xc9\x0a\x4d\x6a\x96\x36\xc7\x43\x0b\x0c\x9c\x18\x09\x6f\x81\xe7\x34\x39\x0d\x43\x22\xf8\x91\x44\x72\x6d\xce\xbe\xde\x97\x9e\x70\x6f\x93\x02\x4d\x6d\xe2\xf8\x60\x24\xce\x5c\xfc\x6c\x18\x81\x39\x17\x3b\x0b\x1d\x99\xe7\xc9\x70\xac\x74\xa9\x09\x61\x48\xc5\x5c\x6a\x42\xd1\xaf\x7f\xa2\x0d\xa8\xce\xcd\x25\xf3\x87\x8e\x85\x13\xd1\x5e\xe7\xa1\x79\x7e\x3c\xa7\xdd\x25\xe6\x87\x2c\x72\x5e\xc4\x29\x78\x7e\xbc\x35\x09\xe7\x0b\x07\x4d\x45\xca\x79\xd1\x21\x1b\xbb\x59\x51\x24\x9b\x79\x9f\x54\x64\x59\x5a\xcf\x28\xcd\xfe\xea\x54\xe3\x57\x69\xfa\x87\xf9\xd8\x30\x6b\xf3\x90\x7b\xdc\xdd\x8d\xc8\xaf\xcd\x61\x3e\xce\x16\xed\x02\x32\xa3\xee\x34\x1f\x97\xc3\x19\x22\x31\x4a\xf2\xec\x79\x37\xa2\x8f\xd8\x7c\x30\x8a\x49\x64\x1e\xd6\x09\xb6\x34\x5f\xa6\x11\x1d\x69\x62\x21\x4a\x21\xb5\xc2\x45\x52\xf9\x62\x92\xdb\x24\x49\x03\xc9\x55\xa6\x8c\x3f\x81\xb2\x51\x5e\x9a\xde\xc8\x6b\x78\x9a\x1f\x7e\xa5\x6e\x1d\x22\xf2\x74\xbf\x3e\xb9\x6c\x4f\x1a\x5e\xcf\xc3\xb4\x7d\x93\xb2\x4e\xac\xec\x9d\x13\x63\x10\x89\x04\xdb\x79\xa8\x91\x5a\x26\xb5\x05\x5d\x3a\x0f\x67\xa0\x52\xb6\x1b\x56\x04\x58\x02\x33\x7c\x26\x4e\x02\x0a\xe3\x99\x6c\x80\xbd\x73\x82\x13\xa4\x51\xe4\x24\xde\x4e\xa7\xdc\x33\x99\x4b\x9e\x8a\xc8\x17\x62\xc6\x8f\xd3\x50\x3a\xa8\xef\x99\xfd\xb6\x50\x66\xc2\xc8\x01\xd9\xce\x2c\x82\x8b\x3f\x18\xe4\x42\x99\xfb\x00\x60\x1d\xda\x59\x58\x67\x36\xe4\xe9\x7d\x80\x3e\xc3\x67\x61\x07\xc3\x1d\x4f\x24\xf5\xd4\x39\x0a\x67\xd1\xb1\xd6\x97\x18\x1b\x8a\xe7\x59\x0f\xca\x8d\x72\x42\x60\xb1\x6c\x5c\x19\x43\xab\x64\x9f\x47\xe2\x38\x2b\x3b\xd2\xc6\x16\x8d\x0d\x8d\x22\x27\x86\x13\x2d\x04\x67\xd0\x3b\x48\xcf\x49\x7a\x7e\xbd\x41\xce\x60\xe7\x15\xdf\x39\xb9\xa7\xb6\xbc\xf4\x1a\x9d\x5f\x4f\x92\x4e\x69\x44\x3c\x3b\xf5\xb3\x09\x4f\xa2\xb8\xb5\x7d\x9f\x9d\x7a\xa0\x09\x67\xa7\x3f\xf5\xb7\xc1\x59\x67\x47\x6c\xb5\x62\x23\xaa\x51\xc3\xcf\x25\x0c\x67\x3d\xf2\xce\xc9\xd9\x76\xd0\x67\x5f\x9d\xe2\xe8\x9d\xa7\x8d\xf0\xad\x67\x1b\x5d\xe0\xbc\xf0\xf3\x44\xe1\x3d\xbd\x5c\x35\x0b\xc5\x79\x35\x14\x1d\x2a\xba\xd8\x61\xa8\x8b\xe7\x92\x73\x87\xc6\x99\xd3\x33\x8f\xa0\x70\xde\x84\xfa\xb9\x49\x6e\x68\xad\x1b\x89\x20\x27\xef\x15\x4f\xfc\xaa\x0d\x31\x3c\x3d\xe7\xce\xea\xce\x73\x18\xfe\xc1\xfa\xc3\x7d\x4e\x2f\x3e\x75\xb7\x3d\x41\x96\xd2\xb8\x71\x3e\x0c\xcd\x33\x22\x05\x80\x22\x9d\x80\x4b\x69\x55\x39\x01\xe7\xd2\x22\x73\x22\xb0\x7a\x9d\x7d\x7a\xa3\x69\x06\x81\xd3\x43\xef\x3c\xbe\x36\x40\xa5\xb8\xee\x28\x65\x9e\xca\xab\xc3\x95\x7b\x9d\x60\x7e\xf8\x38\x55\xee\xb6\xaf\xd1\x23\x7a\x47\xc6\xee\x0c\x81\xbd\xd6\x39\x9f\xba\xc0\x5f\xeb\xa4\x4e\x83\x3b\x2f\x4f\x6a\x58\xb6\x81\xe9\x4b\x7e\x5c\x29\xdf\xa4\xfc\xa0\x4c\x94\xac\xca\xff\x95\xd8\x3e\x4c\xcb\x25\x08\x8c\x79\x8b\xae\x25\x4e\x4e\x4d\xe1\xd7\x52\x9d\xa7\x01\x14\xd7\x12\xe3\x66\x86\xaa\x5e\x85\x4c\x1d\xec\xff\x0b\x6f\x96\xa4\x6a\x73\x79\x24\x61\xc4\x97\x47\x52\x36\x7e\x71\x45\xa7\x0f\xeb\x55\x6c\x9a\x2e\x15\xc2\xb4\x10\x0e\x2f\x4f\x21\xb2\xd1\xb5\x14\xe6\x69\x8c\xdf\xa5\xc9\x92\x55\xbb\x40\xe8\xd2\xa4\x70\x91\xd6\x2e\x4d\x66\xfe\x6a\xac\x02\x26\x85\xab\x61\x60\x74\xcc\xe4\x7d\x28\xfb\x83\xf0\x03\x5a\x20\xab\x9d\x02\xee\xd5\x04\x91\xf1\x39\x62\xc2\x6e\x8d\x2d\xcf\x32\x5f\xc0\x7c\x74\x87\x69\x56\xbb\x66\xa5\x38\xa8\x55\x9f\xbf\x36\xe0\xc7\x84\xae\xd8\x23\x89\x01\xcb\x7f\x05\x11\x2a\x6c\xff\x2b\x70\xa3\x87\x0d\x5d\xc1\x41\x0f\xcb\x44\x79\xb3\x45\xae\x20\x8b\x06\x02\xf7\x05\xc1\x90\x09\x5d\x4b\x96\x1a\x7a\xce\x5f\xfa\xaf\x20\xa6\x5c\x62\x72\xb0\x99\x2f\x6e\xd4\xb4\xfc\x5e\xdd\xe9\x72\xde\xbb\xd3\xc5\xda\xe0\x64\x9a\x74\xf9\xba\x90\xab\xc2\x05\x59\xd2\xd3\x90\x17\x5e\xdd\xa0\x07\xe7\xa2\x23\xa7\xec\x0f\x88\xb2\x77\xb2\xbb\xe3\x77\xb6\x3b\x9a\x1f\x7c\xee\x42\xe5\xd7\xd3\xf1\x02\x2f\xca\xdc\x24\x97\x2a\xbf\x79\x77\xae\x81\x6b\x80\x13\x80\x97\xa9\xbe\x71\xd7\x92\xa9\x6a\xcd\xbf\xd5\x4d\xaf\xe1\xfa\x3a\xcd\x4b\xe0\xaa\x86\x3e\x5f\x43\x8c\x04\x6b\x5e\xfb\xbb\xf9\xf8\xf4\x7d\xbb\x85\xa1\x3b\xfb\xed\x8d\x7a\xe5\xfb\xa6\x74\xe3\x39\x96\xd8\xe9\xbe\xf7\x0e\x4f\x4f\xf1\x6b\x36\x7e\x60\xdd\xa7\xbd\x70\xc1\x26\xbb\xcc\x03\x81\x54\xa6\x4c\x73\x4d\x12\x0b\xef\x77\x50\x47\xdc\xeb\x64\xeb\x25\x6f\x74\xbb\x40\xd2\x50\x62\xbf\xa6\x89\xa5\xe8\xd1\x14\x8c\x85\x5e\x13\xf3\xba\xfd\x17\x2f\xa1\x34\x60\x94\x17\x41\xaf\x86\x1c\x5c\xa6\xf1\x75\x17\x60\x10\x96\x5d\x5d\x27\x01\x28\xc5\xf7\x1d\x81\xcf\x03\x77\x38\x86\x79\x12\xbb\xed\x6a\x9d\xa6\xef\xe3\xf9\x45\x8c\xa4\x9d\x13\x88\xcc\xe3\x73\x81\xa0\x05\xc7\xb8\xc8\x80\xa7\xdf\xde\x45\x96\x79\xe3\xbb\xaf\xcb\x3c\x7c\xd3\x97\x06\x0d\x33\x32\xf0\x2b\xb2\xc7\xe7\xc2\x89\x31\x5b\x7e\xbd\xf2\xa4\xfc\x61\x0c\xa3\x7c\x1b\x88\xce\xc0\x8c\x97\xd5\x1a\x71\xdd\xe4\x27\x46\xe6\xbd\xf0\xb9\xf1\x2e\xf0\xba\x85\x99\xb1\xcc\x8d\xc7\x61\x45\x24\x66\x41\x6e\xbd\x10\x2b\x95\xa4\x2e\xc4\xca\xac\x9c\x7f\x61\x49\xd1\x57\xfc\x42\xae\x34\xe7\xd9\xf5\x10\xba\xee\x1a\x73\xc1\xe8\x5d\xc8\xf5\x90\x39\xcb\x4e\x60\xf0\xcd\x0a\xa5\x17\xac\x64\xbf\x64\xc0\x2b\xc2\xdd\x85\xe9\x23\x2b\x32\x5f\x98\x82\xf5\x55\xbb\x10\x1f\x9b\x07\xf1\xc5\x6d\x08\x1d\xf5\x7a\x3b\xd7\xc5\x96\x49\x8f\x8f\x7c\x76\xbd\x98\xe1\xdc\x5d\xb0\x9e\xac\x4c\x7e\xbd\xc4\xe6\xca\x32\x5e\x38\x83\x87\x18\x53\x49\x56\x1e\xbe\xde\x97\x96\xed\x9e\x63\x40\xb0\xbe\x88\xbb\xd5\x23\xf8\xfa\xb0\xfa\x59\xeb\x17\x58\x49\xa9\x49\xb0\x49\x65\xe0\xeb\xfb\x57\x70\xae\x76\x7d\x5a\xc6\x7c\x6e\x56\x54\xfa\xf7\x19\xa9\xcc\xd8\x8c\x99\xf1\x7c\x11\x90\xab\x65\xf4\x3e\x9c\x3d\x04\xd1\x1b\xf3\xb4\x47\xea\x3e\xf0\x8c\xe3\xe3\x9b\xdb\xcd\xac\xd8\x77\x1f\x6a\xbb\x99\x72\x47\xcf\xac\x94\x07\x0a\x90\xb5\x22\xd1\xa1\xf9\xdf\xe4\xd8\xd5\x30\x76\x1f\x4c\xd2\xf0\x9d\xdb\x4a\xad\x88\x3c\x25\xd3\x5e\xe0\x76\x16\x7e\xf0\xfd\xc2\x1d\x6b\x77\xb2\xab\x1c\xaa\x1b\xdb\x76\x61\xc2\xee\x24\x3c\x21\xbd\x48\x92\x7a\x9f\xd3\xd3\xdf\x07\x9e\xde\xc9\x99\x2d\x7e\x45\x6c\x05\x1c\xe8\x36\x1e\x58\x71\xf4\x4e\xa2\x21\x58\xbe\xfc\xc1\x8e\x21\xd7\x84\x3f\xb0\xdc\xd0\xba\x3b\xe7\x5f\x40\x69\xed\xce\x6e\xc0\xea\x0f\x62\x4d\x31\x3d\x58\x80\x74\x3d\xbb\xb1\x00\x65\x05\xc4\x9b\x64\xbc\x46\xa9\xdf\xdc\xa0\x82\x99\xd0\x6e\xa0\xd2\xb4\x2a\xdc\x05\xef\x7c\x98\xd3\x5d\xb8\x69\x46\x0e\xbc\x4d\x9a\x3b\x7d\x4e\x2e\x59\xb4\x94\xdb\xdb\xd4\x61\x3d\xfa\xd1\x5b\x0f\x0a\xc5\x7e\x4e\xde\x79\x28\xc5\xad\x17\x6c\xf7\xdb\x0f\x6e\xc4\xbc\x54\xdc\x2c\x39\xe0\x37\x11\xc4\x2a\xb5\xb7\x4e\xb0\xae\x04\xc9\xfc\xcd\xf1\x71\x13\x0e\xac\xab\xc3\x5d\x35\x60\xf9\x5c\x28\x15\xea\x07\xac\x4c\x3d\xf3\xae\xd2\x61\xeb\xe7\x2e\xd1\xdd\x8a\x0f\xac\xd4\xed\xc6\x32\x63\x3c\xc6\x8d\x28\xa2\xb5\xfe\xc6\x8d\x67\xda\x16\x56\x79\x9d\xe8\xee\xe6\x79\x83\x85\xdd\x61\x94\x15\x3f\x10\x9b\x6b\xca\xbf\x1b\xd3\x7d\x76\x73\x07\x2c\xc9\x49\x0c\x53\xfe\xf9\xad\x41\x56\x7e\x1b\xbc\xc3\x60\xc2\x5d\x04\xcf\xbb\x03\x69\xd2\x15\xc3\x1a\xa3\x33\xd1\x1d\x92\x83\x6e\x6b\xef\x2f\xc4\xbc\x76\x73\x65\xaa\x13\xd9\xdd\xdd\xe9\x30\xf8\x9b\x78\x5c\x73\x4a\xdd\xe4\x91\x52\xb3\xbc\x3b\x5e\x03\x1e\x0d\x94\x8f\xbd\x0f\x86\x1f\x63\xd3\xbe\x01\xde\xd2\x74\x7d\x63\x64\x51\xd8\xbf\xf1\x6f\xf5\x8e\xe9\xe6\x72\x54\x5b\xee\x3d\xf0\xe8\x40\xe4\xba\x27\xce\x78\x28\x01\x37\x6e\xac\x92\x98\x1b\xf6\xbc\x87\x46\x48\xc8\xe6\x13\xf7\xc4\xa1\xc7\xc6\xc8\x49\xd8\x77\x45\xf4\xd4\x1d\xc5\x7d\x80\x3e\xe0\xf7\xa4\x61\x49\xcc\x62\xaa\x9d\x24\xa0\x0d\xc8\x93\x06\xe0\x45\x03\xf1\xa4\xa9\xe9\xdc\x64\x8f\xd8\x03\xe3\x9e\x34\xa7\xe4\x0f\xb8\x89\x20\x7d\xdf\x27\x95\x86\x2f\x11\xd1\x06\xc7\xbc\x71\x60\xf5\x6e\xe8\x36\xfb\x93\x39\x2c\x6e\x3c\x58\xa5\xf4\x37\x4a\x56\x96\x1d\xde\x78\xb0\x36\xbb\x84\x07\x6b\x4e\xee\xce\x0b\x3f\x19\x69\xcc\xe2\xb1\x26\xac\xb9\x2f\xe6\x2e\x7c\xe5\xf5\x7d\x6b\x15\xa1\x80\x8a\x08\x8f\x35\xc3\x79\xbb\x6f\xfb\xc4\x4b\xf8\xb2\x6a\x5f\xbe\x6f\xc6\x23\x29\xe5\x9a\x55\x8b\xea\x4d\x64\xea\x5e\x72\xdd\x40\xc7\x6f\x5d\x7a\xef\xd7\x8a\x19\x12\xae\xa0\xde\x64\xdd\xc6\x93\xa2\x37\xdc\xaf\x80\x02\x2e\xd1\x4b\x6c\x9e\x3b\x94\xb4\xf0\xd9\xcb\x92\x9b\x80\x52\x13\x3f\xde\x24\x6e\x4a\x9e\xe2\x4f\x50\x12\xcb\x5c\x71\x79\xb0\x3e\x37\x87\xe3\x83\x93\x69\x48\xbc\x3f\x43\x10\xe9\x12\x8c\x69\x27\x33\xbc\x31\xfb\x6b\xe2\x7b\x08\xc1\x34\x24\xe9\x39\xc4\x59\xce\x94\x97\x36\xaf\x00\xf2\x1c\xe2\x62\xac\x6f\x1f\xb8\x80\xf1\x8e\x4f\xb2\xe5\xe1\x1f\x48\xfc\x10\x8a\x07\x17\x4e\xa3\x2e\x1f\xe2\x17\xda\xfe\x18\x90\x4d\xc6\xfc\x60\x9f\x57\x24\x78\xb2\x15\x4d\x7f\xb0\x47\x54\xa4\x7b\x26\x67\xfd\xc1\x3e\x9f\xbd\xb9\x79\x84\x77\x09\x5f\xc2\x93\x6d\x3f\x07\x79\x04\x63\xc3\x93\x6d\x6d\x4d\xd8\x03\x09\xd7\x1c\xf3\x14\x76\x10\x64\xf8\x29\xbc\x83\xf4\xf9\xd4\x0e\xfe\x32\xef\x57\x0e\x13\x87\xe0\x21\xc2\x4f\x3b\xfa\xc3\x3d\x28\xb0\x7d\xed\x69\xdc\x06\xd9\x69\x3d\x1c\x11\x58\x9e\xe6\x88\xa9\x87\x74\x06\x9b\xf6\x3e\xcd\x86\xf9\x00\x2f\x10\xf3\x7c\x3d\xa1\xf7\x0d\x2b\xf5\xe8\x74\x38\x2c\x73\xca\x60\xea\x4f\xe0\x1f\xe5\x5c\x77\x46\x03\xf1\x7d\x16\xed\x99\x00\x37\xb7\x87\x98\x37\x59\xf4\x43\xcc\x5b\x06\x60\xa4\x3d\x83\x58\x73\xf6\xd4\x33\xf4\x95\xa2\x7b\x8b\x7e\x4c\x93\x2a\x3c\x48\xf7\xd9\xcb\xd5\x67\xda\x3d\x6a\x25\xbe\x4c\xcb\xfe\xb3\x24\xf4\xa9\x1b\xf1\x73\xfa\x31\xf3\xe2\x61\x75\x2e\x38\xac\x12\xab\xe7\x9a\x86\x8a\xd0\x55\x10\xdd\xcc\xae\xf5\x90\xd1\x2d\x1b\x39\xfc\x5c\x37\x50\x6c\x94\xb9\x1f\xf4\x5a\xe0\x59\x27\x74\x98\xa9\xe0\x41\xc2\xcd\xfa\xf2\x3f\x04\x55\x69\x8e\x7d\x1e\x99\x09\x63\xc3\x8a\x92\x75\xf8\x78\x9e\x4a\x3f\xe8\xf7\x73\xfd\x42\x47\x6d\xcf\x63\x4d\xd5\xaf\xc9\x91\xe5\x82\x92\x16\xba\xc1\x96\x1e\x20\x1f\xb4\xa2\x3c\xaf\x7e\xbb\x96\xdb\x2f\x68\xd5\xf6\x90\x81\xd4\x6b\x9b\xe7\x35\x43\x98\xdf\x92\x65\xc6\xd9\xe6\x68\x9b\x84\xe1\x51\x92\x2d\xe8\x13\x0f\x97\x7e\xc3\xf1\xe3\x1d\x91\x5d\x43\x9d\x23\xec\xd0\x47\xf2\x4e\x67\x9e\xe4\xcf\x87\x6b\x4e\x1c\x54\x72\x07\x9b\xbe\xd4\xc6\x20\x0b\xfb\x71\x27\xa8\x99\xfe\x7c\x64\x74\x81\xf6\x3e\xdf\xfb\x0b\x02\xb6\x3d\x38\x85\x13\xc7\xf1\x1b\xea\xf6\x2a\xbf\x1a\x88\x28\xf0\x95\x97\xd6\x00\x5f\x15\x93\x9c\xbc\xfb\xd6\xb0\x51\xae\x7e\xd0\xf9\x83\x1b\x6f\xfa\xf5\x9a\x55\x0d\x4b\xcd\x2b\xbd\x31\x66\x10\x74\xac\x62\x34\x20\xc8\x57\x65\xec\xd6\xd8\xf7\xe8\x1a\x02\x5c\x19\xbb\x00\xc0\x55\xd3\xa7\x00\x1c\xab\x66\x0a\x57\x70\xac\x84\x91\x6d\xe2\x58\x81\xe3\xd4\xc4\xb1\xda\xb9\x7f\xc0\xb1\xca\x7a\xba\x83\x63\xd5\xcc\xfd\x2b\x8e\x95\x04\x4a\x1c\x2b\x57\x14\x1c\xab\x2a\xf3\x06\xc7\x2a\x55\xce\x15\xb0\x54\x43\x87\x5f\x61\xa9\x0c\x2b\x04\x95\xaa\x1a\x24\x00\xe0\xd4\xd0\xe7\x1f\xc0\xa9\x94\x25\x9f\x20\x4e\x95\xb1\x2b\x32\x0d\x14\xe5\xe2\xc8\x2c\xbb\xf5\x20\x9f\x20\x4e\x0d\x73\x55\x80\x2b\xd5\xcd\x39\x04\xae\x54\xf3\xc2\x19\x58\xa9\x64\x2a\x4a\x51\xa2\x4c\x89\xf3\x92\x8d\xc6\xb4\xbe\x6f\x35\x7e\x6b\xf8\x07\x56\x54\x4e\x3d\x90\x51\xd3\x6b\x38\x20\xa3\x5a\xdb\x1f\x6b\x53\xf1\x1d\x2c\xfe\xb0\xe8\x57\x67\x70\x0e\x34\x90\x4c\x79\x38\xef\xd8\xa9\x76\xec\x38\x90\x4c\xd3\x10\x06\x10\x99\xa6\x9a\xcc\x2b\x99\xac\x96\x21\xc3\xd5\x77\xb8\xdc\x86\xfd\x82\xbc\xb4\x2a\xa2\xd6\x60\x5e\x6c\x01\x7c\x59\xbd\xbf\xde\x20\xcd\xc5\xfe\xe0\x42\x93\xa3\x77\x21\x5f\xa0\x77\xfd\x5f\xd1\x8e\x9b\xc8\x4b\xaa\x21\x2f\x37\x72\x63\xbf\x63\x38\x3a\x62\xc9\x8b\x33\xb6\xb6\xdc\x97\x1b\xb9\x5c\x1d\xb3\x51\x54\xb0\xde\x77\x09\x8a\x5d\x73\xdc\x8b\x09\x5b\x25\xfa\xed\xe4\x29\x74\x93\x77\x01\xa7\x19\x26\xa9\xd0\x34\x3b\x81\xf9\x34\xb4\xf1\xbe\x78\x97\x80\xb9\xdc\x80\x26\x6f\xc6\x02\x00\x46\x5e\xbd\x22\x7c\x87\xbd\x73\x65\x41\x6b\x4d\x6e\x23\xd1\x14\x6c\x00\x83\x90\xe4\x0f\x84\xa7\x16\x1e\x53\xa2\x93\xbd\x13\x01\xbd\x29\x9b\x77\x0e\xf0\xa6\xa6\xb1\x4c\xf0\xa6\x6c\x44\x25\xe8\x4d\xd9\x08\x56\xd0\x9b\x6a\xf6\x80\x20\x89\x1a\x79\xf3\x22\x88\x7a\x3f\x04\x04\x7a\x32\x68\xe5\x95\x91\x6c\xa2\xb0\x2f\xef\x6c\x81\xb0\xf9\xfd\xc1\xe5\x4b\xfe\x80\xf5\xe2\xb0\x85\xc7\x1f\xac\x8a\xf0\xb5\xdd\x1c\x9e\x99\xee\x97\xd3\x49\x62\x09\x31\xfc\xa8\xf9\x02\xdf\x94\xf6\x86\x24\x64\x2b\xe6\x6f\x45\x37\x60\x9b\x86\xae\x05\xc0\x36\xa5\x7d\x5d\xbd\x71\x9b\x90\x99\xc0\x67\x6a\x66\xa7\x14\x9f\x69\x3b\x80\x82\xcf\xd4\x64\x02\xef\x05\x20\x18\xa2\xcb\x4b\x00\x56\xd9\x1f\x93\x7c\x45\x72\x43\xfc\x95\x89\xe0\x5e\x12\xac\x85\xa4\xc1\xa4\xa3\xee\x07\xfc\xcb\xf7\x6c\xe2\x0a\xa3\xbf\x2b\xc8\x48\x2d\x3c\x9f\x8f\x8e\x9a\x3e\x17\x27\xcc\x32\xcb\xee\x11\xc3\x77\xc5\xb8\x3b\x00\x8d\x3a\x10\x1f\x0d\x3c\xa3\xe9\xb5\x2b\x78\x46\xdd\x54\x1b\xc0\x19\xf5\xe9\x54\x12\xaa\x14\x1e\x5b\xe5\x53\xed\x31\xc0\x16\x35\x60\x09\x1b\xb0\x45\xeb\x07\x7a\x84\x3d\x06\xf8\xe1\x06\x24\xd1\x50\x9e\x7e\x75\xf1\xc3\x72\xf4\x2a\xac\x6e\x6a\x68\x2a\x50\x87\x03\xbf\x52\xdd\x7b\xf1\xf1\x93\xed\x83\x3c\x24\xec\x78\x7b\xbd\x3b\x84\x97\x02\x3c\x94\x4d\x06\x09\xee\x50\x33\x4a\x48\x60\x7c\xed\xee\x9f\x6e\xe4\x1c\x55\x80\xf1\xb3\x6e\xfd\x60\xde\x37\xd3\xf6\x88\x79\x9f\x8d\x0c\xfa\xcc\xa2\x3d\x2c\x5f\xbf\x30\xce\x1b\xe0\x44\xc5\xe0\x6b\xf1\x87\xb2\x11\x40\x00\x10\xb5\x42\x4f\x81\xb4\x4f\x3b\xf7\x35\x98\xf6\xa2\xa2\x37\x30\xed\xd3\xf6\x85\x15\xd4\xde\x3b\x5f\x41\xed\xb3\x31\x32\xe0\x17\x25\xa7\x55\x50\x7b\xef\x05\x3e\x6d\x20\xdd\x26\x3e\x4e\x1f\xe5\x2c\x2f\xe4\x1d\x70\xe6\xbb\xef\x2c\x36\x54\x74\xda\x02\x69\x68\x9b\x87\xc5\x99\xcf\xf2\x2a\x80\xe6\x9b\xfe\x4a\x02\xcd\x6b\x76\x04\x50\x3e\xbc\x6d\x06\x50\x7e\x7d\xe0\x0f\xe8\xcd\x1c\x4a\xf1\x88\xb2\xe1\x25\x00\x12\x15\x60\x7a\x9a\x90\xf2\xd9\x10\x11\x00\x89\xa6\x32\x8d\x78\x44\xd9\x68\x0e\x00\x89\xc6\xd8\x65\x80\x0f\xa1\x69\x22\x0d\xe9\xb4\x2d\xd2\x50\x36\x86\xe1\xf3\xa2\xd3\x09\xe7\x8a\x45\x59\x1c\x74\xa1\xe9\x55\x1d\x80\xee\x69\xe7\x2e\x05\xb4\xbd\x2b\x3e\x00\xc8\x3e\x94\xef\x04\x64\xcf\x6d\x7f\x41\x5a\xf9\xe1\x07\x9f\x3f\x30\x22\xad\x1f\xd0\x16\x40\x88\x52\xd6\xc9\x4b\x14\x22\x13\xe5\x00\x42\x94\x34\xee\x0a\x42\x94\xe5\xbf\x82\xb2\x7b\x2b\x03\x08\x51\x33\x19\x1e\x18\x44\xcd\x64\xaf\x60\x10\x35\x23\xb7\xc1\x20\x9a\x92\x7e\xf1\x85\xcc\x79\x07\x98\xba\xf0\xf9\x0d\x30\xf5\xa2\xad\x05\x4c\xa1\xd5\x18\x95\x12\x3e\x1c\xfd\xb7\x17\x0b\x20\x0e\xad\xaf\x68\x92\xbb\x19\x1d\x30\x00\x16\x4a\x1e\x35\x30\xd5\x93\xb9\xe8\xc0\x54\x4f\x59\xd3\xc5\xa7\x37\xba\x3b\x87\xac\xdf\xda\xb3\x40\x1c\xaa\x86\x7b\x03\x9e\x5e\xc1\xde\x69\x62\xa7\x67\xed\x18\x60\x11\x89\xfd\xdf\x00\x46\x6f\xe6\x1d\x02\x18\x7d\xbd\x44\xd3\xdb\xe2\xc2\x68\x89\x6a\xca\x6a\xf8\x00\x13\xed\x80\x0f\x80\x89\x92\xce\xb2\xc0\x9e\x17\xef\x7e\x81\x3d\xaf\xfb\x78\xa1\x01\xe9\xff\xf3\xa9\x01\x69\xd5\x00\x98\x28\xab\x25\x08\x4c\x64\xe0\x2a\xb8\x44\xeb\x25\xfa\x2a\xf0\xb9\x67\x87\xfc\xde\x9a\xf5\xc1\x25\x6a\xb1\x5b\x20\x27\x19\x9a\xa1\xb0\x44\x26\x2d\x05\x96\xa8\x99\x08\x59\x4c\x73\x65\x78\xf0\x86\x46\xf2\xe4\xe0\xd6\x29\x6d\x06\x6f\xa8\xe9\x97\x2c\x74\x79\xd6\x62\x20\xde\x90\x71\xf0\x60\x97\x67\x43\xb6\xc1\x2e\x6f\xe6\x4a\x06\x7b\xa8\x29\x45\x7f\x32\x4c\x95\xe4\x0d\x52\xee\x56\x9c\xee\x6a\xd8\xd1\xb7\x15\x37\xbe\x3e\x4d\xda\xc4\xd7\x27\x64\x1e\x1b\x20\x30\x42\xdd\xb4\x12\xc2\x08\x79\x29\x0c\x5a\x50\x0b\x37\x0c\x60\x41\x5e\xb4\x7f\xb2\x3e\x69\xad\xa6\x9b\x7d\x32\x2f\x87\xc0\x98\x2f\xd7\xd9\x09\x5b\xcc\xaf\x0f\x27\x12\xcf\x51\xcd\x46\xe0\x78\x67\x3d\x58\x80\x14\x2a\xe6\x24\x04\x52\xa8\x19\x1c\xf3\x99\x91\xc3\x53\x43\x1a\x6f\x6f\x26\x80\xdc\x6e\x9b\x2b\x90\x94\x7b\x6f\x61\xa1\x06\x5d\xc0\x5f\xde\xf5\x7e\xb0\x34\x8a\xee\x2e\x7c\x80\xcf\x87\x4f\x81\x3b\x14\xb2\x20\xb0\xb5\x5b\xd9\xe5\xe0\x7d\x46\x06\xbc\xe0\x3e\xea\x0f\x08\xae\xcd\x77\x70\xf1\x28\x3e\x5f\xd3\x65\x86\x4a\x10\x85\xaa\x76\x32\x10\x85\x9a\x52\xce\x87\xb9\x48\xcf\x17\x80\x83\xaa\x8a\x3a\xf8\x40\x4d\xfb\xe4\x47\x36\x31\x33\x3f\x7c\x84\x65\xe5\x70\xcd\x70\xac\xd7\xf3\x12\xe0\xa0\xa6\x2b\x16\xf8\x40\x09\x40\xaa\xf6\x01\x5e\x61\x12\x15\x20\x81\x9a\xbe\x89\x1f\x78\x15\x5e\xb7\x7d\x1a\x85\x34\x04\x7d\xc4\x65\x79\x87\x0a\x3e\x50\xd3\xfd\x46\x7c\x20\x08\x5a\x00\x0f\xe4\xb5\x57\x1c\xf8\xeb\x20\x73\x2c\xda\xcc\xd5\xe3\x41\xb9\xf0\xad\xef\x38\xca\x4a\x99\x91\x2d\xb2\x1f\xa0\x03\x35\x6e\xab\x02\x74\xa0\xca\x61\x0c\xc0\x81\x5a\x5f\xba\x6c\x80\x01\x94\x97\x5c\xf2\x7f\x4c\xdb\x42\x80\xa0\x4c\x1e\xca\x00\x20\xa8\x12\xb6\x1a\xc7\xd6\x04\x2d\xeb\xf5\xc9\x28\x50\xf8\x80\x85\x0c\xc0\x82\xd6\xc7\xfe\x70\xf1\x83\x15\xdd\x88\x63\x0c\x63\x23\x17\xb7\x55\x26\x35\x17\x89\x8e\x02\xac\xa0\x86\x43\x6f\x80\x15\x94\x91\xc2\x03\xac\xa0\x46\xd2\xcb\x00\x2b\xa8\xc0\x69\x43\xa8\x20\x72\x82\x05\x50\x41\x8d\xac\xb4\x01\x54\x50\x1a\xf6\x21\xd3\x07\xa7\x12\xa6\x9b\xec\xc3\xe2\x9a\x0d\x87\xa5\x00\x12\xa8\x02\x2a\x16\x20\x02\x05\x2e\x95\x01\x1a\x7b\x23\x9b\x46\x1c\x04\xf9\x66\x6e\xca\xe2\xa8\xec\xec\x4e\x47\xf1\xf8\xec\x99\x4e\x90\x7d\x14\x19\x3c\x0e\x50\x2b\xb0\xc3\x06\x88\x40\x49\x63\x7d\x00\x09\x94\x0f\x17\x4e\xd0\xde\x83\x8a\xe4\x8d\xe4\x72\x8e\x03\xde\x88\xd6\x1d\xc0\x03\x95\xda\xf9\x78\xb1\xb7\x88\x4e\xb7\x71\x46\xf8\xf5\xfe\x43\x99\xde\x91\x9e\x0a\xbf\xb1\x38\x16\x7b\x0b\x5c\x4a\xe3\x00\x32\x8f\xeb\xb0\x38\x70\x3a\x82\xd2\xc6\x11\x62\xb1\xfa\x9c\x4b\xb9\x69\x3d\xee\x30\xa6\x22\x04\x0c\xf0\x1d\xf2\x5b\x38\x8d\x5c\x0c\x74\x77\x70\x48\x14\x86\x8d\xe1\xb4\xdc\x28\xe3\x80\x90\xdc\xc2\xdd\x1c\x23\x54\x8a\x4e\xd8\x5c\x63\x75\xc2\xb0\xe5\x6e\xcb\x8c\xa0\xbb\x80\xcc\x04\x58\x13\xc3\x5e\x77\xf6\x7c\xf1\x7d\x5b\x9e\x74\x8f\x5b\x85\x1c\xbc\x44\xd2\x0c\x2e\x22\xe3\xc0\x2b\x93\x9b\xa9\x38\x00\x98\x20\xd9\x5f\x1c\x30\x9a\xbe\x9f\x73\x68\xed\xe9\x64\x61\x3d\x06\xd3\xec\x7b\x6e\x59\x70\xf9\xf7\x3c\x7a\x93\x00\xe1\x09\xd0\x8d\x5a\xdf\x3f\x30\x04\xb7\xc2\x64\x08\x85\x05\x44\x35\x33\xec\x3e\x8e\xe9\x18\x98\x00\x52\x65\x98\xed\x2e\x8e\xc9\xec\xb9\x24\x60\xf1\x12\x93\x18\x40\x20\x65\x9c\xea\x03\xa4\xa3\x5a\xdc\x60\x42\xeb\xee\xa3\x46\xf8\x01\x79\x2d\xe3\xc0\x2f\x13\x73\x79\x80\x74\x54\x0f\x8f\xc5\x69\xcb\x6c\xbc\x73\xb7\xec\x0f\x64\xdc\xb5\x7b\xa4\x9d\xca\xfb\xf0\x70\x13\xd1\xed\x92\x69\xa7\x3c\x78\x97\x53\xe3\xd6\x20\x60\xab\xbb\x6d\x17\x37\x9b\xb8\xda\x06\xe8\x48\xa3\x48\xa0\x2e\xfb\xea\xb1\xba\xf0\xc7\x75\x40\xe4\xa6\xea\xfb\x03\x2e\x7e\x2d\xdf\xe0\xe6\xb9\xe7\x6f\xa6\xb8\x5a\xe6\x1a\xce\x63\x7b\xeb\x26\xf1\x3b\xe5\x34\x40\x4b\xca\x78\x7c\x05\x68\x49\x85\x94\xb6\x71\x10\xe6\xd5\x77\xd9\x7c\xca\x0e\x83\x38\x2f\x1c\x30\xe2\x78\xd4\x1d\x24\x81\xe4\xc3\x18\x12\x04\x59\x54\x65\x48\x8f\xd3\xe9\xec\x3c\xa6\xfc\xa1\x2c\xe4\x84\xab\xfd\x72\x71\x24\x5d\x7d\x31\x74\x79\x0c\x5e\xd3\xca\x5b\xc6\x0b\xab\xfb\xce\x94\x82\x50\x86\xc6\x92\x44\x3a\x8e\x57\x88\x1a\x1b\x70\x27\xb3\x8e\xc6\x3a\xb8\xf0\x98\x43\xab\x2b\xc4\xfd\xfd\xb0\x73\xdc\x80\x34\x89\x03\x69\xb3\x8b\xcb\xfb\x65\x56\x8e\x86\x31\x87\x4e\xc9\x1b\x8a\x27\xe8\x04\x71\xa8\x78\x22\x31\xc6\x01\x16\xee\x21\x9f\x21\x17\x66\x76\x94\x5c\xeb\x23\x98\x07\xc0\x4e\x13\x0c\xe6\x00\xd8\xa9\x81\x5a\x10\x02\x3b\xe1\x55\x1e\xa0\x34\x05\xfe\x45\x91\x34\x66\x02\x14\x13\xc0\x34\x55\xd0\x16\x02\x98\xa6\x8a\xb7\x60\xa4\x43\xb2\x37\x28\xc3\x64\x99\x95\x44\x92\x0c\x62\x96\x03\xcc\xa5\xc6\x9d\x5e\x24\xec\x91\xe0\x0e\x46\x4a\x98\xb6\xd8\xdc\x89\xfc\x17\x69\xbf\x43\xd6\x78\x66\x11\x2c\xa6\xe6\x7a\x27\x52\x5e\x00\x3b\x11\x09\xd7\x54\x99\x41\xf2\xb2\x85\x34\xd3\x91\x64\x55\x4c\x6f\xca\xf8\x93\x38\x62\xd9\x10\xb3\x95\x0a\x76\x74\xa6\x1a\xec\xa6\xc9\x85\x54\xa4\xf2\x62\x45\xa0\x61\x80\xe7\x8b\x0d\x93\x36\x91\xab\xbe\x10\x41\x69\x9f\x4f\x20\x94\x5a\xdf\x3f\xe0\xfc\x65\x45\x9a\x14\xf7\x3b\x8f\x1f\xd0\x1a\x17\xd4\xe4\x54\x0b\x00\x93\x8a\xe4\x23\x6d\x5b\xa3\xe5\x41\x92\x5b\x7a\xda\x76\x6b\x74\x69\xb1\x9b\x0e\xa4\x72\xa4\xcd\x6e\x7c\xce\x7e\x27\xf5\x6b\xa4\xf6\x31\x1e\x5e\x82\x0f\x91\x7f\x21\x52\x68\x09\xf1\xf9\x1a\x7f\x75\x9c\xc0\x28\xe0\x4d\x11\x80\x27\x65\xa2\x31\x03\xf0\xa4\x55\x29\x13\xb0\x18\xd1\x4c\xd0\xcf\xa4\x93\x1b\xec\x00\x94\xa4\x91\xed\x2a\x90\x0a\x06\x5d\x05\x28\x49\x85\x04\xd8\x01\x18\xd2\x4c\x8e\x0d\xc7\xb6\x0c\x8e\x42\x80\x86\xd4\x80\x7c\x08\xd0\x90\x46\xb5\x35\x23\x7c\x61\xab\x80\x15\x8d\xbd\x6c\xc4\x93\x49\x21\xd2\x10\xc0\x83\x6e\x83\xea\xae\x04\x93\x86\xbd\x70\x13\x2e\xad\x65\x64\x27\x0f\xad\x05\xb3\x73\x80\x5c\x34\x93\x1b\x49\xc6\x32\x6c\x61\x7a\xbe\xe8\xea\x24\x7a\x6d\x3f\x67\xb6\xc7\xef\x82\xe8\x03\xcc\xa1\x3e\x61\x40\x89\xb8\x5d\xbc\x96\x22\xe1\xa9\x4f\xf2\xe5\x48\x27\x12\x84\x3d\xf1\x3a\x1a\xef\x97\x00\x98\x68\xe0\x92\x1d\x00\x13\x35\x44\xf1\x48\xa7\x3b\xc8\x09\x39\xdd\xa3\xfc\x40\x42\x25\x0c\x88\x01\xd0\xd0\xd8\x6b\xcd\xdd\x55\xf7\x70\x70\xa3\x3c\x3d\x88\x44\xed\x72\xb3\x12\x60\x05\x8d\xe4\x50\x6f\x2c\xc0\xd6\x0f\xe2\xdd\x3e\x7c\x8b\xbe\x4f\x57\xf7\x86\x8d\x79\xc4\x6e\xcf\x2a\x65\x55\x0c\xb7\x95\xe0\x05\x6e\x6e\xef\xad\xc8\x78\x15\x89\x64\x11\xa8\x58\x91\x1e\x52\x62\x40\x8f\xd3\xa2\xcd\xb3\xba\xad\x5e\xa2\x88\xe1\x37\x69\xa7\xe1\xa3\x01\xaf\x98\xa7\xab\xfb\x72\x11\xe7\x80\x3f\xf2\x20\xc3\x64\x85\xe3\x21\x87\x5f\x00\xc7\x33\x92\x5b\x8f\xf8\x5b\xc9\x22\x68\x3c\x43\x91\x11\x34\x9e\x24\xb2\x54\x80\xc7\x33\xc9\xdc\x1e\xe0\xf1\x24\xad\x6a\x01\x20\xcf\xd8\xe3\x44\x99\x30\xd2\x25\x40\xe4\x19\xca\x83\xc9\x5c\x7b\xac\x2c\x80\x3c\x03\xbf\xb6\xc8\x52\x52\x78\x0a\x60\x3b\x13\x13\x6c\x00\xb6\x93\x24\xaa\x82\xed\x64\xfc\x71\x03\xb0\x9d\x02\x54\x62\xe4\x63\xcd\x36\x79\xda\x22\x03\x42\xca\x45\x4a\x00\xc2\x53\xc8\xaa\x14\x80\xf0\x14\xae\x58\x23\x1b\xa0\xc6\xcc\x67\xcd\x79\xcc\x85\xe0\x3c\xce\x11\xe0\x3c\x99\x14\x22\x91\xd5\x30\xdc\xa7\x79\x69\x18\x93\x40\xe6\xc8\x92\x6a\x26\x0f\x04\x9f\x8c\x23\x74\x80\xe0\x13\xf8\x2b\x06\x08\x3e\x95\xdc\x77\x91\xd3\x1e\x81\xad\x11\xfb\xcf\xd2\x02\xe1\x13\x78\x12\x45\x5e\xf4\x3c\xca\xe4\x83\xbc\x1d\x22\xfd\x23\xf1\x03\x1f\xe4\x4c\xb9\x53\xde\xdd\xf3\x8f\xfa\xf3\x47\x90\x12\x21\xf2\xa2\xf4\xa1\xec\x9a\x75\x7a\xc2\x3f\x32\x32\x29\x82\x3d\xdd\x00\xfd\x64\xdc\xa5\x43\x9c\x1f\xb1\x35\x03\xa0\x9f\xe0\x0e\x27\xc0\xf9\x59\x3f\xd0\xf1\xfc\xe2\x99\xe3\x0f\x9f\x3f\x30\xf7\x78\x55\x4b\x7d\xb3\x39\x02\x71\xc2\x8b\x5c\x38\x79\xd9\x32\x88\xc1\xd0\xb7\x8c\x5d\x90\x64\xa2\x01\x02\x90\xde\xa8\x01\x88\x4f\xc4\xfe\xf6\xa5\x6c\x03\xe8\xa2\x30\xf7\x5c\x49\x98\x8d\x84\x21\xb6\xcf\xe1\x40\xab\x98\x63\x30\x6b\xc0\x7d\x82\xbb\x8e\xc8\x02\x27\xb8\xa2\x44\xab\x65\xfc\x9c\x03\x44\x9f\x52\x9d\xbe\xaa\x0b\x98\xcf\x0d\xe9\xa2\x17\x55\xa2\x49\x2f\x0c\x56\x6b\xbf\x8b\xc3\x8a\x4c\xa8\x33\xfb\x3e\x63\x2f\xdc\xeb\x45\xa0\x73\x76\x47\x10\xdc\xdc\x77\xbd\xf8\x6b\x70\xe4\x72\x98\xaa\x9c\x6f\xc9\x2a\xc1\x0d\x7f\x00\xe3\x53\x9b\x3b\x11\x3d\x28\xcf\xfd\x01\x10\xd0\x8e\x1a\x45\x08\xcf\xe1\xc8\x04\x3d\x2b\x7d\x64\x9c\xac\xf1\xae\x89\xac\x1d\xcf\x65\x0f\x2f\x1f\x7d\xfe\x79\xfd\xb2\xca\xb0\xa5\xec\x6e\x15\xea\xc7\x4e\xa0\x07\x49\xc5\x32\x41\x69\xc4\x7c\x47\xc6\x40\x87\xe3\x43\x80\xfa\x93\x84\x2c\x0f\x60\x7f\x2a\x0e\x62\x91\x85\x63\x45\x61\xcd\x1b\x73\x8f\x4a\x87\x37\xc6\xcc\x36\xc0\x02\xc5\x5d\xbf\xd8\xd8\x94\x60\x00\xdd\x0d\x64\x40\x80\xba\x53\x48\x47\x13\x82\xee\x84\xfd\xd7\x6d\x6a\x7a\x7c\x26\x02\xf3\xa0\x5d\x6c\x6c\x4d\x6a\x33\x65\x99\xb4\x35\x39\x9f\x12\x83\xe9\xf9\x74\xb6\xb8\xad\x0a\x8f\xdb\x34\x27\xbd\x65\x61\x50\x28\x9f\xea\xc3\x7c\x7c\xe2\xe0\x26\x09\x03\x6e\x00\xa3\x5f\x80\xd2\x93\x8a\x4a\x50\x06\x6f\x80\x54\x06\x91\xcd\xc9\xeb\x61\x53\x07\xb2\xa7\x27\x21\x65\x87\x15\x11\x77\xef\x1e\xba\xc4\xe1\x60\x98\x97\xf7\x70\x34\x40\x6c\x9a\xa2\x47\xbe\x44\x4b\x43\xb1\xca\x28\x28\x45\x7a\x06\x6a\xde\xe1\x12\x5c\xfb\x34\x53\x7e\xfd\xc0\x1f\x50\xa6\xdc\x38\x70\xbf\x3d\x1c\x51\xbe\x0f\x77\xce\x8d\x89\xc5\x45\xbb\x85\xfa\x60\x91\x6f\xdd\x2a\xfd\x18\xa8\x0f\xd8\x22\x78\x3f\x99\x3c\xd8\x21\xdc\x4f\xf5\xd8\xdd\xec\x52\x57\x8d\x24\x4a\x45\x23\x43\xc6\xd3\x83\x40\xc0\xc8\x37\xdb\x54\xb2\x7d\x43\x77\x9c\xc7\xfb\xf3\x03\x6a\x7d\x84\xdb\x62\x92\x04\xd6\xc3\xf6\x1a\xe2\x03\x81\x54\x1d\xf9\x31\x8c\x8c\xaf\xf1\x0c\x19\x3e\x6e\xbe\xcf\x38\xc1\x2d\xe8\x0e\x87\x34\x4d\x65\x97\x91\xf4\xdc\xe4\x78\x87\x85\x8c\xe7\x71\x08\xd6\x49\xc6\x68\x39\x95\xa8\x41\x12\x61\xc1\x81\x6c\xec\x05\x93\xc4\x3d\x0e\x18\x81\x4a\x0b\xd8\x40\xab\x13\x0c\xf3\xe5\x86\xc8\x9d\xfd\x9a\x07\x94\x91\xa1\x6a\x11\xd5\x19\xf9\xdd\x89\x4d\x28\x0b\x0b\xe7\xf3\x9b\xf9\xa5\x43\xf8\x8e\x55\x39\x21\x56\xc2\x22\x99\x59\x1a\x55\x6d\xee\x0a\x34\xaa\xa2\x3c\x0b\x12\x51\x1a\xc7\x6f\xc5\xb6\x0c\xe8\x9f\x69\x6b\x22\xa3\x70\x65\x8f\x03\xb9\xa0\xaa\x04\xe0\x73\x62\x1d\xec\x47\xb6\x6f\x17\xe2\xf3\xf0\xf9\xc1\xda\xde\x9a\x7e\x32\x5e\x2a\xe1\x84\x93\x18\x6a\x73\xae\x8f\x09\x44\xb2\x04\xd8\x68\x55\x3a\xf9\x23\xa9\xd2\x51\xe6\x6e\xa6\x58\x96\x46\x5a\x1e\x8b\x89\xd1\x58\x21\x09\x6f\xf3\x53\xb3\xb9\x50\x86\xeb\x93\xb9\x2f\x8a\x61\xe9\x6c\x1e\x91\x89\x70\x80\x88\x92\x34\xf4\x77\xca\x00\x30\xe3\xf0\x1d\x40\x16\x15\x72\x47\x44\x21\x9b\x7f\xeb\x7e\x2c\x98\xce\x5a\x08\xa1\x8c\x14\x5a\x81\x32\x4a\x0a\xee\x45\xc7\x65\x16\x14\x24\xa3\xca\xa5\x62\x14\x93\xf9\x4e\xdf\xc7\xac\x98\x7d\x67\x20\xff\x51\x9c\x22\xfb\xf9\x0e\x49\x61\x8b\x6d\x71\x90\xa6\xe5\xb5\xd0\xdc\x6c\x46\x21\xae\x89\x1c\x37\x01\xa8\x51\x23\xd1\x67\x08\x6a\xa4\x4d\xae\x14\x9c\xaa\xaa\x65\x12\xd6\x3a\xc6\xc5\x51\x0b\xd9\xbb\xa2\x98\x37\x9f\x4d\x25\x5e\x91\x71\xe1\x01\x5e\x51\x51\xe2\x05\xaf\x28\xd7\xea\x07\x1e\x17\x06\x50\x25\x4e\xf0\xf8\x62\xde\xfc\xe4\xc7\x4b\x44\xde\xf5\x08\xe5\xe8\xb7\xec\x82\xea\xeb\xfa\x45\x53\x3f\x56\xc8\xe2\x24\x02\x36\xa4\x26\x0c\x44\x50\x06\x9f\x2b\x80\x08\x2a\xcd\x01\x84\xbb\x06\x01\x51\x8c\x20\xf5\x2b\x31\x82\x3c\xa7\x60\x04\x25\x6d\xa1\xc0\xff\xe4\xe9\xcc\x05\x01\x5e\xf0\x07\xd0\x7f\x1a\x2e\x68\x21\xfa\x8f\xb7\xcb\x01\xfa\xcf\x24\xce\x2e\x4a\xb8\x3f\xf6\xd7\x00\x67\xc0\x75\x80\x05\xca\x7b\xde\xcd\x9d\x0f\x35\x02\xfe\x67\x72\xaf\x18\x22\xfb\x00\x70\x1f\x02\xfb\x90\x94\x2b\xc0\xef\x69\x65\x97\x2f\x08\x2a\xf5\x70\x0f\x36\x5c\x6f\xd2\xdf\x17\x2e\xf6\x42\x60\x9f\xea\x66\x04\x37\xaf\xba\x19\xf1\x04\xcc\xae\x13\x9e\x23\x5c\x7d\x45\x31\xc2\xc8\xc5\x27\xa4\xbb\x3a\x5d\xc3\x86\x19\x25\x5a\x64\x21\x65\x67\x88\xeb\x53\x3d\x36\x98\x21\x4b\x72\x2b\x0f\x68\x8d\x67\xc8\xfc\x81\x0e\x79\x6a\x55\xa5\x85\xb9\xbb\xca\xd7\xc4\x71\x12\x5c\xba\xc4\x5e\xd0\x4b\x7c\xde\x7d\x89\xb5\xe5\x26\x8c\xb0\x80\x00\xe5\x27\xef\xbd\x76\x5a\x93\x1d\x3c\xcd\xf5\x43\x4d\xb0\x5d\x2e\x24\x43\x94\x9f\x92\xf2\xef\xb0\x9b\x03\x08\xa0\x4c\xbc\x68\x00\x01\xb4\xbe\xa2\xfd\xd3\x60\x1b\xab\x43\x68\x83\x1d\x94\xed\x2d\xed\x3b\x6c\x09\x0f\xee\xe9\x5c\x15\xff\x40\xaa\xc4\x08\x00\x4e\x50\xd3\x34\x04\x4e\x50\x2b\xbb\x81\xcf\x0f\x98\x9f\xeb\x58\xc7\xd5\x83\x42\x9a\x7c\x52\x51\x04\x98\x41\x4d\x73\x5b\xb9\xbc\x8a\xa2\x17\x5c\xb2\x55\xe7\x19\x97\xcb\xa2\x86\x56\xae\xed\xc0\x4d\x79\x77\xc9\x9a\xe8\x92\xdd\xbb\x5c\x3e\x77\x1d\x3e\x29\xfb\xd0\x5d\xbb\x4f\x74\xf0\x5e\xd2\xfd\x3e\xed\xdc\xcb\x15\x49\x2c\x32\x40\xd1\x86\x52\xb0\x77\x96\xfd\x81\xc1\x50\x96\x21\xee\xd2\xc0\x9b\x16\xec\x06\x00\xb9\xdd\x43\xf4\x10\x2d\x60\xbf\x65\xe3\xfb\x5c\x3f\x3b\xf0\x8f\x32\x1b\xc4\x3d\x4b\xea\xdf\xbd\x0e\x8f\x95\xfa\x8e\xdd\xb6\xe5\xf7\xe0\x07\x5e\xd2\x9b\xdb\xd5\xc5\xa9\xb3\x24\x49\x28\x81\x4b\xfb\x78\x11\xf6\x5a\xf6\x73\x94\x23\x98\x37\x20\x3e\x79\x4f\xe5\x8b\xf3\x96\xeb\xf0\x41\xc6\x5d\x37\x10\x70\x4b\x92\x9e\x7e\x22\x2a\x33\x36\xb9\x21\xf1\x3c\x51\xe4\x86\x48\x53\x42\xf4\x94\xe4\x41\xe5\xa2\xae\x48\x83\x3e\xc2\xc7\xba\x4d\xbc\xbe\xc4\x02\xa1\x42\x93\xba\x2c\xc4\xe2\x21\x9a\x36\x80\xe2\x49\x38\xd1\x06\x50\x3c\x99\xf4\x09\x01\xe2\x4e\xe6\x6e\x3d\xaa\x4e\x2d\x2c\x15\x90\x39\x8d\xd8\x9e\xa8\xa6\x3d\x64\xd9\x84\xcc\x29\x69\xf8\x03\xe1\x79\x56\x84\xaa\xec\xce\x05\x1b\x27\xe1\xad\x19\x60\xe3\x14\x92\x8e\x04\x10\x38\x1d\x08\xa0\x00\x02\xa7\x91\xfe\x2f\x80\xc0\x29\x9a\xc1\xaa\xb0\xb4\xbb\x47\x89\x54\xc1\xcd\x06\x5c\x37\x6b\xc2\x94\x89\xaf\x6c\x6c\x0c\x1c\x68\x36\x50\x37\x4d\x4b\x23\x38\x36\x85\x3b\xf7\x10\xc6\xa6\x70\x27\x1c\x55\x90\x5a\x64\x22\x70\x6c\x92\xd6\x01\xd0\x67\x9a\x6a\xac\xe8\x33\x65\x4f\x5e\xc1\xa0\xc6\xe2\x02\x39\x53\xa6\x63\x28\x06\x92\x58\x7e\xfd\x80\x41\x2c\x55\x34\xf0\x88\x0a\x80\x65\xd6\x0f\xf4\xa9\xda\x57\xbe\xa8\x46\x77\xf1\x41\x25\x02\xa9\xfa\x41\xfc\xfc\xa1\x96\x01\xe0\x4c\xf5\xb0\x8a\x37\xa3\x7e\x26\xde\x4c\xc9\xfb\x0f\x33\xd0\xf0\x52\x23\xdb\x9a\x75\x36\xb7\x1e\xf3\xd2\xf6\x16\xee\xbf\xa3\x71\xb5\x29\xa5\xd1\x13\x40\x67\x94\x47\x80\x8c\x99\xca\x35\xb5\x6d\xb7\x68\x66\xb0\x49\x12\x58\xec\x66\x3a\x24\x9a\x27\x14\x47\xf3\x2c\xc0\x30\xa9\x64\xc7\x1d\x6a\x24\xac\x8b\x1c\x10\x91\xb4\x86\x33\xe8\x9e\x0b\xfd\x3c\x29\x2f\xed\x72\x78\x60\x41\x86\x99\x78\x1e\x04\xc8\x30\xa9\x64\xd4\xda\x2a\x0f\x84\xc9\x02\x0d\xd3\xbb\x33\x32\x48\x35\xe8\x78\x86\xb3\x60\x4d\x22\xbd\xc0\x58\x40\x7a\xc9\xfb\xd4\xe0\xf3\x51\x48\xb6\x17\x75\x90\xdc\xc6\xbe\x0e\x73\x43\xf1\xd2\xf4\x32\x9d\xb9\x45\xd9\xcc\xb6\x30\x01\x05\xf0\xa8\x4c\x53\x23\x85\x7f\x34\x6e\x89\xe9\x1e\x37\x6b\xc5\x6e\xe3\xb7\xb1\x37\xc1\x34\x89\x93\xef\x90\x2d\x0d\x56\x07\x6c\x4b\x1f\xbe\x7f\x6e\xef\x42\xca\x6d\x0d\xd3\x33\x0d\xd8\x1c\xde\xe9\x51\xe5\x34\xb2\x71\xa0\x5a\xfa\xdc\x1f\x10\x9f\xb0\xcb\xd8\x2f\x8a\xef\x30\xf3\xa8\xd1\x55\x4e\x03\x16\x5c\x00\xd5\x52\xe5\xd0\x20\xb5\xac\x1f\xf8\x1a\x6b\x69\xd9\x65\xfc\x82\x9d\x8b\xcb\x31\x43\x13\xeb\xa5\x97\x81\x65\x67\xd5\x35\x91\x09\x65\x64\xb1\x7a\xb9\x70\x96\xb5\xfb\x5b\xed\x8d\xac\x67\xb5\x6e\x38\x7b\x48\xee\xb0\x7d\xae\x2f\x70\x3a\x21\x7d\x00\xba\x34\xef\x00\x40\x74\x19\x5e\x93\x80\xe8\xa2\x1f\x5d\x88\xe8\x22\x1a\x5e\x80\xe8\x32\x40\x70\x0a\x10\x5d\x8a\xbc\x53\x40\x97\x02\x32\x7d\x54\x73\xd7\x7b\xc6\x6f\xb2\x63\xb9\xba\x4b\x29\xed\x63\xb7\x76\xfb\x81\x35\x31\xb1\x4e\xcd\x62\x66\x9b\xe0\x57\x95\x52\x15\x6b\x41\x5d\x8a\x1b\x51\x6e\xb6\x49\xe4\x83\x6d\x00\x69\xac\x3e\x76\x16\xd6\x56\x97\x56\xda\x87\x23\x52\xfb\x74\x87\x92\xdc\xa1\xba\xd6\x8f\xf3\x3a\x7d\x89\x64\x7d\xd5\x97\x50\x3e\x10\x4d\xab\xfc\x4f\x7d\x15\x24\x97\x71\x78\x08\x88\xdb\x2d\x45\xba\xf8\xea\xe2\x42\xb5\xf2\xbf\xe2\x0c\xe2\x9b\x52\xec\x20\xe1\x0e\x45\x83\x18\x78\x2f\x26\xab\x8e\x8a\xb3\xe7\x26\xee\x4b\xa3\xec\xda\x93\x2b\x21\x0b\x7b\xb7\x7f\x5c\x1a\xba\x7b\x17\x97\x1c\x43\xb2\x2d\x97\x54\xf3\xa9\x8b\x4b\x0e\xf9\x5f\xfd\x70\x15\xb7\xe5\x8f\xeb\x0b\xcf\xe5\x67\xa6\x00\x1a\xfe\x44\x01\xfa\x5d\x1e\xcb\x00\xef\x25\x95\xcd\xaf\xb4\x41\x4b\x9d\x3e\xa7\x07\xd2\x0a\xe0\x4b\xc6\x85\x3b\x36\xc6\x0b\x4b\x26\xc6\xcb\xde\x2e\x60\xbc\x0c\x59\x25\x50\x2e\xcd\x5b\x1f\xb0\x5c\x86\xd4\xa9\xa5\x4c\xbe\x5e\x9e\xcb\x1d\xa5\x36\x80\xb9\x8c\x34\x7c\xc9\x5a\x11\x9c\x9a\x09\x22\x99\xce\x86\xf7\x67\x51\x7e\x69\x89\x0c\xc6\xac\x65\x4b\x24\x8d\x1b\x7e\xb0\xbd\xbb\x3b\x7f\xa0\x72\xd8\x0f\x55\x52\x19\x41\x4b\xa0\x14\x23\xa7\x35\xb2\xa3\x91\x79\x26\xda\x52\x31\x07\x59\x7a\x03\xbc\x98\x41\x3c\x43\x34\x43\x63\x59\x25\xf0\x62\x86\xa6\x46\xf0\x62\xf2\xee\x6a\xc6\xb6\x3f\xfc\xd6\x79\xdd\x1f\xc3\x1a\xc2\x97\x30\x2c\xa0\x1b\xb6\xa2\x19\x9a\xa9\x2c\xa4\x51\xe1\x7c\x35\x12\xd8\x54\x87\x59\x1c\xb3\xd3\x57\x40\xd5\x1f\xfe\x40\xcc\x0c\x4c\xa9\x09\xfa\x2e\xd5\x6f\xc5\xf8\x7d\x66\x0c\x6e\xac\x62\x09\x74\x4c\x25\x1c\x3b\x04\x7f\xd1\x1a\xd6\xaa\x88\x27\xbc\xb3\x18\x6a\xf7\x9a\xac\xe1\xdf\x02\x06\x49\x00\xfe\x92\x35\xfa\x03\xfe\x92\x0a\x6e\x5f\xd1\x48\x2e\xec\x99\x05\xf0\x25\xa4\xed\x00\xbe\x68\x0a\x6c\x0d\xa8\x02\xa4\x9a\x66\x0a\x8e\xdd\x40\x03\x18\xd4\x79\x6c\x8e\x00\xc2\xdd\x9a\x5e\x36\xfe\xe0\xaa\x75\x6b\x15\xc2\xce\x96\xb9\xa1\x44\x2d\x68\x04\x3a\xa8\x94\xb7\x10\x1b\xc3\xb2\xe9\x4b\x7d\xe7\xa2\x77\x0c\x73\x69\x9f\x59\xa3\x48\x33\x91\x06\xfc\xb9\x75\x8f\xbe\x13\xdc\x35\x4f\x5a\x76\xaf\xda\x72\xd7\x7d\x8a\xc1\x99\x16\xd3\x81\xfe\x52\x4b\xfd\x03\x4f\x65\x94\x13\x30\x65\x06\x79\xf7\x03\xf4\x97\xa1\xbe\x0a\xfa\x4b\xf7\x22\x1a\xc4\x97\xd2\x9d\xc8\x8d\xab\x46\x3d\x43\xb7\x52\x7a\x31\xf5\xeb\x65\x2a\x84\x4c\x73\xbf\xcc\x9d\x9a\x98\x8a\x16\xeb\x0d\x2d\x8f\x4d\xd6\xab\x85\xbc\x91\x81\x7e\xd7\x8a\x9d\xb7\xec\xad\x87\x0a\xa9\xd8\xb9\xb1\x60\xbc\xf8\x04\x0c\x26\xeb\xca\xd3\x30\xf4\x9a\x93\x2b\xda\x5c\x44\xbf\xed\x97\xc8\xd5\xe3\xc9\x20\x5f\xa6\xa6\xad\x46\x9a\x0a\x13\x36\x46\x13\x9c\xdd\x0f\x4e\x9c\x4c\xab\xe5\xe6\x35\x24\x65\xfb\x94\xfc\x83\x98\x5d\x87\x77\xee\x3e\xd1\x73\x54\x49\xef\x99\xdb\xb9\xfb\xf4\x3b\xd7\xde\x68\x7a\xcc\x4c\xab\x26\xf3\x27\x5a\xb5\x18\x33\xc4\x15\x47\x93\xfb\x57\x29\xde\x89\x65\xc4\xf6\x17\xf7\x2f\x64\xfa\x08\x10\x63\xba\xbc\x5c\xc4\x98\xa2\x5c\x08\x62\x4c\x0a\x27\x71\xb1\xec\x20\x16\x30\xda\x62\xd9\x05\xd8\xbe\x68\xa4\x3e\x9a\xd2\x81\xdb\x35\x43\xe5\x6a\xb7\x6b\xc6\xa0\x16\x37\x0e\x82\x04\x03\x20\x99\x4c\x34\x6b\x00\x24\x13\xcd\x21\x88\xfb\xee\x14\xde\xf8\xb6\x1d\x96\x1f\x2b\xf5\x63\xee\x84\x30\x25\xb4\x9b\xa0\x00\xf4\x24\x80\x64\x22\x1c\x1a\xa9\x92\xc2\x23\x0b\x06\xed\x21\x6d\x7e\xb1\x98\x60\x79\x69\xf2\x43\x6f\x4d\x40\x79\xc9\xc9\x9d\xb6\xd8\x5e\xc9\x28\x1c\x4d\x77\x17\x97\x08\x1b\xac\xec\x1a\x2c\x97\xaa\xce\x04\x96\x4b\xf5\xc2\xaf\x01\xfc\xaa\x5c\xd7\x48\xa0\x7f\xb8\x31\x31\xaf\x4e\x47\xf3\x41\x06\x77\x19\xcb\x82\x84\x0c\x07\x14\x3d\x24\x40\x69\x09\xdb\x05\xa5\x25\x15\x0d\xc1\xb1\x94\x3b\xa7\x3a\x8e\xc2\x3b\x41\x59\xab\x9b\xaf\x9c\x3c\x2f\x94\x51\x8c\xd4\x24\xc3\x74\x10\x6c\x04\x10\x5b\x92\xe1\x2a\x01\x64\x4b\x56\x35\x06\xb2\x25\x93\x99\x2b\x62\xb1\xb2\xea\xfd\x30\xf0\x2d\x85\xfc\xcc\x01\x7c\x4b\xb8\xa3\x63\xf1\xa8\xf0\x38\x80\xc6\x12\xfa\xee\x00\xc6\x92\x0a\x59\x17\x23\xb4\x88\x72\x80\x82\xd8\x05\xa7\x37\x70\x47\x51\x2f\x8a\xec\x39\xb1\x35\xdc\x51\xd4\x0c\x81\x66\xa9\x5e\xe4\x84\x21\xbe\x61\x45\xb6\xc0\xa6\x05\x82\xa5\x90\x01\x3e\x80\x60\x59\x3f\xf0\x56\x49\xf4\x89\x7e\xcb\x98\xf6\x4b\x8c\x01\x11\x03\xa8\x95\x20\x12\x21\xa2\x10\xed\x37\x7c\x87\x49\x92\xb8\x06\x89\x1a\x40\xd3\x0a\x80\x53\x02\x8c\xb6\x88\x2a\xe8\x3f\x0d\x00\x4a\x46\x22\x92\x08\x7c\x2a\x49\x72\x11\x80\xab\x6c\xce\x1f\x15\xe5\x11\x79\x26\x1a\x09\x28\x9d\xbc\x26\x62\x06\xc3\x6c\x76\x94\xe1\x9b\x03\x0a\x35\x23\x1a\x1d\xc5\xdc\x00\xc6\x4a\x78\xd0\xa2\xb1\x75\x90\x70\xc0\x52\x19\x64\xae\x8b\x80\x99\x94\xe6\x88\x1b\x0d\x73\xac\x43\xab\x68\x73\x5a\x82\xd1\xa0\x2b\x80\xa5\x52\x08\x15\x0c\xb0\x54\xd2\x56\xdc\x01\x53\xc9\x87\x43\x50\xf7\x6b\xbb\x2a\x7d\xbc\xfd\x9a\x60\x71\xa4\x1a\x80\x52\x72\x86\x25\x02\x94\x52\x94\x6e\x81\x40\xc1\x18\xf2\x1b\xe2\x26\x3e\x4a\x21\xb2\x33\xc0\x47\xc9\x5e\xd5\x83\x8f\x12\x1e\x1a\x60\x50\xaa\x94\x2e\xfa\xda\xc6\xcd\x99\x1a\x4a\x64\xbc\xa3\x5e\xd8\xdc\xd3\x83\xa9\x75\x1c\x30\xa7\x01\x69\x08\xd4\x3f\xc5\x8b\x20\xcb\xd2\xaf\x8f\xb9\x09\xb7\x13\x8b\x39\x15\x6d\xa9\x01\x3a\xa7\xbe\x66\x41\x24\xb5\xa3\xc6\xfd\x45\x4a\x15\xa7\x6e\x17\xbc\x7e\xda\x67\x66\x6c\x11\xfe\xae\xfd\x24\x70\x64\x01\x46\x3e\xc2\x5c\x94\x76\x13\x4d\xeb\x70\x45\x89\x1a\x03\x42\x3a\x82\x94\x73\xf2\x89\xb8\xf1\x46\xb0\xfb\x1a\xe2\x64\xa2\x71\x13\x1c\xe3\x64\xdd\x5e\xf7\x5b\xd6\x39\xcb\xd6\xf0\x5e\x09\xe4\xa3\x58\xf4\x72\x16\xcf\xea\xd2\x32\x4a\xf5\x63\xb0\xb9\x05\x29\x0c\xa0\x48\x8a\x42\x27\x90\x23\x23\x21\x2b\x05\x69\xe3\x14\xaf\xe3\x85\x1a\x48\x25\xd0\x12\xf6\x59\xfd\x48\xb8\xe4\x32\x6d\x00\x11\x8f\x1b\x10\xd7\x09\xb1\x26\x80\xb8\xd6\xcf\x06\x64\x91\xd4\x1d\xdb\xc7\xdc\x49\xb7\x70\x4d\x51\x48\x01\x65\x24\x25\x09\xc3\xd2\x0c\xb2\x97\x37\xa2\x8c\x94\xf0\x78\x7e\x5e\xde\xdb\x80\x88\x36\xab\xdc\x0f\x74\x5f\x1a\x00\x72\x64\x48\xa9\xbb\xde\x7b\x88\x87\x5d\xef\xbd\x6e\x79\x51\x55\x22\xa8\x02\x04\x91\x7d\xcd\x2c\x82\xc8\xb6\x5c\x82\x20\x92\x74\xed\xed\x09\xa9\x86\x53\xd5\x21\x9e\x80\x6e\x45\x87\x78\x7a\xb5\x04\x60\x48\x12\x63\x27\x40\x0c\xc9\x12\xcc\x9e\x70\x11\x45\x93\xea\x0a\xf8\xa4\x73\x89\x6e\xf2\x1b\x5b\x93\xc4\x6a\x1d\x16\x4a\x84\xa4\x08\xd1\x33\x3c\x15\xa1\xb3\xe3\xee\xe1\x2d\x2d\xb0\x22\xd9\x63\xd8\xbd\x45\x72\xfd\xc1\x15\x29\xc4\x90\x05\xb8\x22\x79\x38\x19\x9a\xd2\x58\xf2\x2e\xe9\x85\xdd\x74\x49\xaf\xf7\x66\x5d\xd2\x0b\x7b\x12\x6f\xa4\x84\x1d\x17\xfe\x8a\xf5\xe9\x45\xc4\x02\x5f\x32\x51\x3e\xb3\x54\x4c\xe9\x4f\x0b\x05\x86\xc9\x52\x81\x31\xb2\x55\x4f\x31\x46\x8c\x0f\x0c\x30\x46\xaa\xd7\xf7\xbd\x7a\xfd\xc8\xc7\x00\x39\xeb\x9e\x0c\xf6\x48\x32\x78\x33\xfa\xd2\x03\x42\x85\xaa\x93\x18\xc7\x7b\x27\xb0\x47\x42\x0f\x24\xb0\x47\xd6\x07\xd6\x04\x19\xc9\x76\x03\xc6\x85\xd4\xd2\x4d\x5a\x6c\x57\xf1\x7f\x97\x42\x74\xdc\xdf\x8b\x52\x48\x27\x93\x5f\xfe\x7d\xe4\x42\x5f\xa4\xbc\xaa\x86\x00\x4d\x62\x36\xf1\xe8\x1a\xdf\xbc\xe0\x00\x9c\x24\x48\x2c\x14\x80\x93\x94\xea\xac\x41\xbe\x75\x6e\x15\x9c\x64\xcf\x38\x79\x73\xf4\x0c\x00\x76\xa4\x7a\x81\x02\xec\x48\xa8\x54\x00\x3b\x12\x3a\x76\x80\x2e\x92\xf4\xec\x15\x5d\xa4\xe8\xd4\x0e\xba\x48\x3a\xdc\x72\xdd\x4c\xb5\x34\xb6\x34\x89\x3e\x1c\x77\xe7\x5a\xd1\x13\x41\x46\x3e\x72\x7e\x46\xc7\x71\xb1\xec\x53\x40\x02\xd0\xbd\x5f\x55\x24\x08\x61\x0d\xb0\x49\x22\x7b\x16\x3b\x4b\xe1\x29\xe8\x8e\x1f\x81\xb0\x77\x0c\x1b\x88\x41\x1d\xdf\x11\xe2\xaa\xa3\x0f\xb7\x99\xeb\x42\x4a\x3e\x8d\x44\xa0\x96\x24\x05\xf2\x3e\x68\x01\x66\xd9\x09\xe8\xda\xd7\x36\x1d\x87\x7a\x3d\x7a\xbb\x41\xd3\x86\xa9\x80\x67\x12\x8a\xf0\x7d\xca\xb2\x18\xdd\x24\xf7\x11\x64\xb3\xab\x62\xe8\xb5\xd3\xf1\x25\x69\x8e\x74\xb2\xcf\xdc\x80\xf8\x92\x14\x23\x36\xba\xe9\x49\x3d\xa5\x44\x3e\x17\xc3\x43\x3a\xee\xf5\xba\xa2\xf5\xc5\x37\xaa\xfe\x86\x9d\xdc\xc6\xa4\x69\x08\xe0\x50\x4a\xf5\x63\xe1\x50\x20\xf1\xdd\x5b\x2d\xfd\xe0\xc1\x43\x89\x8c\x48\xd1\x55\x37\x74\x15\x06\x0f\x25\x88\xde\x0e\xf0\x50\x82\x64\x24\x01\x1c\x4a\xda\x0e\x11\xe0\xa1\x14\xd2\xe5\x84\x70\x28\x60\xc0\x87\x70\x28\x02\xb4\x06\x70\x28\x41\x40\x55\x74\x35\x0a\x89\x6d\xc7\x07\x5f\xc5\xaa\x73\x73\xa5\x68\x07\x36\x4a\x10\x8f\x14\x5d\xb3\xa1\xba\x72\x27\xb1\xaa\x72\x51\x37\xaf\x9e\xfb\x9b\x98\x69\xaf\x11\xc1\x4f\x89\xec\xe1\x58\xda\x45\x68\xaf\x15\x4b\xa5\x18\x23\x01\x98\x4a\x68\x8d\xee\xa0\x37\x27\x7b\xb4\x94\x02\x72\x4a\x45\x27\x1b\x9e\xce\x21\x1d\x3b\xdc\xfe\x14\x33\xdc\xe1\x71\x17\x74\x52\x3a\x40\x92\xe5\xdd\x16\x96\x37\xef\x10\xc1\x52\x09\xdd\x32\xc0\x52\x09\xe5\x9d\xfe\xb8\x9c\x52\x54\x1c\x3f\x06\xfc\x0e\x1c\x95\xc8\x12\x57\x32\x8b\xec\x73\xa5\x75\x4e\xc7\x6c\x70\x54\xb6\xbb\x66\x57\x1b\xd9\x47\x7a\x69\x23\xa1\xf9\xb9\xbf\x26\x86\xf3\x25\xba\xe1\x66\xc0\xdb\x43\x63\x2f\x98\x2a\x59\x41\xa0\x7f\xae\x81\xe5\x45\x80\xd5\xa1\xba\x7e\x1b\x7a\x96\x76\xb0\x02\xc2\x31\x7f\xe6\x9a\xa2\xb1\x8f\x6e\xef\x77\x5c\x65\x89\xa8\xf9\xec\x20\xfe\xa0\xad\x44\xfe\x6d\xe2\x90\x00\x71\xa5\xaa\x0e\x88\xb8\x52\xc0\x91\x8e\x21\xbe\x24\x64\x67\x1c\xba\x48\x56\xca\x8e\xcf\x32\xd3\x5c\x6d\x91\x80\x1e\xf6\x3a\x50\x2c\xa1\x2f\xe7\x50\x89\x01\x7c\x2b\xc6\xc1\xa9\x69\xfe\xc0\xa6\x84\x61\x0c\x6f\xae\xc8\xb0\x16\xe2\xb5\x80\x0f\x1b\x23\x39\x23\x10\x8e\x91\x88\x86\x82\xf9\x02\xde\x52\x8e\xfd\x35\x27\x3c\xfb\x0e\xb3\x03\x05\x06\x97\xa5\x78\x6f\x3d\x32\xdd\x1e\x96\x91\x47\xad\xc7\x6c\xfe\x1c\xcb\x41\x6a\x0e\xbd\x68\x87\x26\x2e\xdf\x2f\x64\x3f\xe8\x3e\x07\x71\xcd\x29\xc2\xf3\x51\xd1\x63\xe0\xf9\x58\x06\x4b\x34\x08\x82\xce\x0e\x19\x35\x44\x9f\xf2\x81\xeb\x23\x29\xfd\x62\xc0\x17\xc3\x89\xaf\x95\x25\xf5\x5b\x12\xa2\xef\x77\xd0\x18\x8b\xef\x74\x1b\x60\xee\x2a\xe9\xb6\x0a\x45\x06\xd6\x7d\xcc\x7a\x38\x59\xa4\xf8\xdf\x76\x0f\xd0\x61\x2a\x69\xb9\x63\xc8\x47\x75\xe0\x07\x1e\x26\x0c\x03\x01\x1d\x26\xed\xdb\x57\xe0\x61\x36\xbf\x14\x1d\x86\xb4\x53\x31\x64\xa4\x03\xd2\x2a\x3c\x8c\xf7\x64\xa0\xc3\x64\x15\xd7\x81\x35\x2e\x3b\x61\x24\xa6\x35\xda\x68\x6c\x17\x0e\xde\x09\xc7\x4c\xbf\x41\x56\xf6\x12\x73\x2c\x1d\x26\x32\xc7\x7e\x10\x54\xa6\xad\x6c\xe0\xcc\x6f\xf0\xca\x00\x0f\x32\xdc\x6b\xba\x79\x0c\x24\x55\x10\x64\xc2\x1b\x8e\xd1\x69\x80\x03\x37\x54\x53\xf4\xd3\x1f\xe4\xb8\x26\x81\x47\x0c\x39\x1c\xbc\x12\xa4\x98\xdc\x9c\x55\x11\xb7\x54\xa5\x41\x8a\x89\xec\x86\x84\x79\x95\xe1\xfe\xe7\xce\xca\xe0\x8c\xc1\x9d\x95\x6a\xe5\x18\x1f\xb5\x32\x7e\x6c\x62\xde\xc6\x0c\xb3\xc1\x61\xa4\x1b\x8b\x15\x4d\x6f\xb4\x01\x81\x19\xfa\x79\x80\x01\x93\xca\xb0\x1b\x5c\x41\xe9\x9d\x32\x4e\x21\x67\x68\x80\xfc\xa9\xdd\x5d\x7e\xa2\x20\x41\x56\x05\x8a\x69\x2e\x0e\xc9\x31\x88\xd2\x8e\xb1\x6f\x97\x9c\x55\xec\x4b\x81\x70\x31\xb4\x2f\xb9\xf3\x48\xb3\xad\x7d\x62\xc8\x0d\xe4\x7b\x43\x6e\xe0\x84\xdd\x07\x24\x8d\x8a\x6e\x05\x2c\x84\xc7\x71\xb3\xce\xbb\x4c\xb0\xed\x2e\xbb\x3e\x30\xe6\x41\x54\xd5\x61\xad\xde\xd8\x68\xcf\x1a\xb7\xa0\x83\xf4\x09\x6f\x02\x1d\x04\x41\x8d\xa9\xba\x32\x0f\x15\xa0\xfd\xbc\xa3\x92\xfd\xd6\xfa\x06\x9a\x8c\x29\x04\x63\x78\x37\xa3\x8f\x12\x70\x32\xd9\x50\x59\x20\x64\xfa\x70\xdb\xbc\x42\xbe\xd3\x77\x12\x6f\x93\x23\x3c\x06\x99\x50\x49\x47\x1a\x40\xbd\x94\x62\x3d\xc4\x3f\x95\xe9\x0f\x12\x76\xc7\x4a\x3e\x28\xdd\xf8\x06\xc1\xbe\x8a\xa2\x60\xbd\xc4\x3e\x4d\xe2\x2e\x22\xcc\x8c\x4f\xcf\x30\x17\xfb\x83\x82\xa2\x7e\x4e\x7d\xea\xc8\x7f\x1d\xf3\x80\x9c\xa0\xd6\x4c\x68\x77\x62\x5d\x26\x2e\xf6\x1a\xc3\xa7\xea\x8e\xae\xe4\xa0\xc0\xd4\xb6\x3f\xf6\x76\xd3\x8f\xd9\x5a\xd0\x96\x99\xec\x36\xef\xa4\xe4\xc7\xfe\x81\xc9\x8d\x7e\x83\xd7\x12\x5e\xb0\x01\xa6\xb2\x05\x9b\x29\x9a\x15\x0c\x0f\x9c\x94\xd0\x65\x14\x3c\x94\x28\x68\xd6\x42\x9d\xb8\x8f\xa7\xb7\xf4\x64\xac\x8c\x29\xd9\x44\xaa\x04\xea\x24\xbc\x14\x03\xad\x64\x68\x83\x9d\x8d\x50\x1f\x84\x36\xb0\x47\x8a\xb7\x41\x60\x8c\x84\x9e\xd3\x53\x1b\x7e\xf2\xf9\x43\x3d\xbe\x8f\x9e\x60\x87\x9a\x2b\xe5\x30\x97\x74\x1e\x2e\xe1\x24\xa6\x55\x8d\x63\x42\x7e\xf4\x01\x9b\x98\x50\xaa\x5e\x0a\x93\x4c\x96\xba\xa9\x00\x32\x12\x2a\x3e\x60\x8c\xac\x97\xfc\x7a\x1d\x64\x45\x4a\x30\x46\xc2\xfb\xd2\xd9\x89\x0c\x80\xc9\x83\x2b\x32\x0e\xe7\xab\x9b\x92\x8a\x03\x3b\x8d\x13\x62\xaf\x03\x2b\x12\x7a\x06\x03\x2b\x12\xba\xf4\x4d\x02\x56\x55\x64\xe7\x70\x08\x54\x84\x6b\x59\x95\xfc\x00\x23\x92\x8c\x20\x06\x46\x24\x55\x3d\x83\xc1\x11\x09\x2f\x11\xe7\xce\xb1\x00\x03\x12\x47\x64\x6f\xb7\x61\x73\xbe\xc4\x54\xba\x49\x88\x52\xd5\x2b\x61\x4e\x02\x17\xdc\x54\xd3\xae\xd2\x1a\x99\xfd\xbd\xd1\x9b\x48\xce\xbb\x61\x64\xdc\xb2\xcb\x7a\x34\x30\xf3\xc8\xb8\x55\x4b\xe6\x5c\x32\xee\xfc\xf5\x12\x15\xed\x97\x9c\x61\xc4\x8c\x89\x8c\x2b\x11\x00\x17\x64\x48\xb0\xe6\xc5\x0c\xbb\xc3\x2e\x40\x28\x9c\x30\x91\x66\x5d\xdb\xcb\x4a\x19\xc1\xe5\xf6\x67\xa5\x48\x46\x69\x2e\xb9\x98\xb7\x15\xd1\x18\xb8\x20\xfa\xd6\x81\x0b\xd2\xf7\xae\xc5\xee\xad\x5b\xf1\xbc\xb9\xcd\x73\x15\x30\x7b\x6b\x2a\x9c\xdc\x35\x57\xc3\x47\x00\x12\x49\x24\xe5\x08\x40\x42\xc2\x7b\x4b\x30\x3f\x32\x08\xc9\x31\x1f\xc2\x4a\x5c\x35\x60\x01\x4a\xf9\x6d\x04\xc3\x7c\xb1\x1c\x41\x40\xe6\xeb\x62\x51\xd9\xc7\x59\x92\x02\x90\xea\x47\x3f\xc8\xf9\x79\x33\xce\xe8\x10\x1e\xab\x97\x89\xc0\x7e\x84\x9e\x4d\xc2\x7e\x54\x12\xf3\x05\xb0\x1f\x03\xd4\xb3\x00\xf6\x63\x80\x6e\x11\xe7\x22\x3e\xd3\x61\x9c\xa4\xe5\x21\xcf\x44\x00\xd6\x31\x94\xaa\x4f\xef\x46\x91\xfe\xcf\x44\x3a\x17\xeb\x4c\xdc\xd5\x20\x98\x9d\x3b\x5e\x9f\x71\x9f\x4b\x62\xdb\x91\x7f\x67\xce\xfe\x30\xf9\x03\x04\xd7\xc3\x97\xd8\x70\xd5\x32\x1b\x88\x4c\x49\x71\x12\xa6\xaf\x9f\xc5\x99\x1d\xcf\xda\x27\xa7\x00\xab\x7a\xc9\x89\xef\xa1\x6a\x0d\x74\x47\x78\x47\x7e\x82\x13\xe0\x2d\xdb\xb9\x48\xd7\x20\x3b\x5c\x9c\x85\x5d\x89\x4a\x72\x12\xf6\xe2\xc5\xea\x89\xf0\xe7\xcc\x9f\xc8\x6f\xb2\xe6\x93\x28\x96\xdd\xa1\x2a\xcd\xa0\x1e\xe2\x29\xb5\xf8\x9f\x8d\xe5\x85\xea\x9d\xcd\xd1\xf0\xad\xe1\x91\x50\x00\x90\x3e\x52\xd5\x7c\x77\x36\x76\x6e\xf5\x63\xfc\x2d\x6c\x58\xd4\x24\xbd\x1b\x4e\x8c\x0c\xd3\x21\x93\xc0\x57\x97\x9b\x93\xb4\xff\x5e\x4a\x9f\xde\x32\x3a\x8f\xd2\x15\x8e\xd5\x89\x76\xaf\xed\xef\xc4\x65\x55\x85\xf9\x24\xc6\x5d\x7d\xe9\xd4\xe2\x5a\x7c\xc7\xd1\x33\x2b\xc4\x28\x56\xb5\x93\x93\x7b\x42\xaf\x8c\xcf\xc9\x51\x42\x5d\x3a\x27\xbe\x13\x0e\x0d\x20\xa1\xe2\x16\x59\x54\x62\x7a\xad\x7e\x9e\x4e\x0b\xef\x9c\xfa\x61\x43\x0d\xce\x25\xfa\x0c\x52\x97\xc6\xb9\x14\xec\xb9\x57\x9f\xd0\x43\xaf\x9e\x01\x0f\x59\x1f\x58\x13\xf3\xd5\xfc\x00\xab\xa3\xf3\xb8\x44\x9f\x39\x9c\x96\xcb\x8a\x78\xff\x62\xf1\xad\x08\x07\x18\x00\x03\xe3\xbc\x61\x3d\xf0\x6a\x00\x40\xe6\x5e\x28\xb0\xe8\xf6\xc6\x59\x67\x78\x4a\x30\x80\xf6\x48\x55\x79\xfa\x5c\xfa\xe5\xdc\xbb\x82\x30\xc1\x3d\xbf\x8f\x42\x1d\xcf\xf7\xf9\xa5\x73\xaf\x12\x21\x23\x7b\xcd\xbb\xe4\xb1\x7b\x25\x8c\xf4\x9a\xf0\xec\xaa\x4c\x7c\xbe\x4c\x9e\xdb\xe2\xa3\x7b\xd0\xaa\xf3\xa3\x26\x57\x07\xd7\x0c\xb3\x0e\x5c\x87\x9e\x0e\x89\xf2\xe2\xb0\x75\x3f\xa7\x47\x4c\xfc\xb5\x58\xfe\x74\xb7\x00\xe7\x31\xdd\xa7\x57\x62\x04\x50\x94\xcb\x34\x57\x72\xcc\x0b\xb4\x9d\x04\x21\x00\xce\x23\xc9\xc2\x2e\xce\xaf\x3a\xfe\x05\x6e\xb2\xd6\xf1\x0b\x39\xa2\xf5\xdf\xba\xc1\x5d\xdc\x2f\x19\x5a\x07\xec\x47\x95\x37\x88\xee\x61\xc8\x0d\xe8\x1e\x49\xf8\xd9\xb8\x90\x38\x9a\xad\x14\x83\xf7\xfc\x18\x12\x9d\x7c\x8e\x0b\x3a\xd3\x74\x11\x7c\x46\xe6\xdb\xb8\x2a\xe6\x58\xa7\x86\x23\x0c\x82\x43\x5c\xd5\x06\x98\xe3\x0b\xd3\x24\xd9\x8c\x03\xfc\x90\x44\x12\x99\x00\x3f\x64\xe8\x64\x01\xba\x47\x78\x37\x05\x40\xc7\xdc\x0d\x7b\x54\x75\xe7\xb9\xd6\x51\x1d\xc7\xfe\x21\x73\x4d\x49\x4f\x83\x28\x03\xc4\x15\x91\x3b\xf4\xa5\xba\x04\x31\x6e\xbe\x13\xc8\xfb\xf4\x2e\x04\x7e\xf3\x1d\xec\xc3\x1c\x4f\x90\x38\x46\x73\x11\x97\x58\x31\x74\x8b\x05\x6f\xa3\x1b\xc5\x24\xde\x86\x57\x9c\xc0\x6d\xa4\xaa\xa7\xe0\xd5\xc1\xa9\x40\xf6\xb8\x90\x37\x54\x8f\x41\xcf\xa8\xba\x84\x5f\x4a\x12\x2e\xb4\x92\x44\x71\xee\x86\x12\x0d\xeb\x81\x71\x4f\x1f\x29\x00\x32\xd6\x4b\x0c\x7f\xe0\x93\xbd\x7f\x38\xd1\x3a\x68\xcd\x28\xe8\x6e\x0b\x66\xea\x47\x7f\xbb\x94\x43\x30\x79\x81\x7e\x51\xf5\x35\xba\x4c\xc5\xa4\x47\x37\xe8\x17\x5d\x35\x1d\xf4\x8b\xf5\x03\x7d\x9a\x1e\x3e\x7e\x38\xa1\x49\x50\x03\xd0\x29\xa6\xf4\x09\x14\x8a\x00\x33\x2a\x40\xa1\x98\xd2\xa7\xeb\xf4\x5b\x7a\x01\xf5\x90\xaa\x5c\x78\xdf\x69\x7f\x00\x9d\x22\xc8\x08\x1c\xa0\x53\xec\x28\x4e\xd0\x29\x52\x73\x68\x38\xdf\x55\xe5\x04\xe0\x29\x6a\x4e\xbe\xc4\x39\x74\x1f\x41\x7a\xd2\x6e\x80\x33\xe6\x52\x29\xa0\xc8\x3c\x2e\x6e\xf2\x0f\xc7\x8f\xd2\x25\xa9\xde\x28\x14\x48\xb4\xa0\x50\x8c\x3d\xca\xdb\x84\xf2\x2c\xed\x6d\x16\x0c\xcf\x11\xa1\x5b\xaa\xb8\x17\xf9\x97\xb6\x1d\xe8\xd2\xe7\xdb\xdd\x86\x32\x06\xb6\x67\x08\x49\xa1\xd4\x7f\x81\xed\xa9\x75\xee\x7a\x4c\xfc\x44\xa5\x0f\x6a\xb0\xcb\xec\xad\xbe\x43\x7e\x86\x0d\x30\xa9\x28\x62\x87\x1b\x86\xeb\xab\xea\x25\xef\x85\x3c\xb4\x89\x15\x09\x7e\xbd\x41\x04\x62\x22\xcc\x68\x01\xc2\x44\x9a\x30\x67\xc0\x23\x8a\x8e\x09\xd7\xc7\x55\x3b\x8a\xf6\x85\xbd\xac\x9a\x2a\x01\x20\x89\xd8\x33\x89\xf2\x55\x11\xca\x2f\x0c\x69\x7a\x8c\x5c\xca\x42\x3a\x1a\x00\x0c\x31\xf5\x5c\x01\xf3\x21\x48\x87\x18\x40\x3e\x44\x65\xb6\x81\x7c\x08\x2f\xc2\x37\xe4\x03\xab\x03\x9c\xc3\xac\xbf\x85\x39\x0d\xa0\x1e\x02\xc0\xb6\x00\xea\x21\x55\x2f\x2d\xc5\x7a\xd0\x48\x02\xd6\x43\xd5\x12\x0d\xd4\x43\x1e\x08\x50\x37\x66\xb1\xea\x05\xe0\xbd\x24\xae\xdc\xf7\x07\x5c\xe1\x4c\x3f\xa0\xeb\x28\x6c\x62\x40\xc8\x7e\x85\x79\xa8\x6e\x39\x11\x1c\xa2\xf9\x31\xd1\xbb\x4c\xd4\xad\x58\xa6\x79\xee\x26\xb0\xb9\x4e\xcb\x7a\x47\x5a\xc6\xd5\x16\x75\xf7\x36\xae\x19\xe5\x0a\x30\x87\xf5\x31\x33\x88\xcf\x80\x17\xb8\x1b\xcc\x81\xbd\x78\x13\x2d\xd5\x2c\xb2\x2a\xd3\xd7\xb9\xc3\x83\x2c\xdd\x66\xe6\xcd\x7e\xca\xc4\x26\x9f\x3f\xd6\x6f\x63\x8a\xb1\x96\x3f\xc2\xc0\x18\x66\x81\x2f\xb1\x43\x01\x8b\x48\x55\x9b\xe2\x4d\xa8\x55\x3b\x7c\xa9\xf8\x83\x7f\xe0\x77\xed\xfa\x9a\xce\x69\x97\xc9\x0e\xea\xe4\x61\xff\xd3\x4d\x12\xf8\x87\xa2\x8b\x0c\xf0\x0f\xb5\xb1\xbd\x81\x7f\x28\x6a\xcd\xf7\xe2\x2b\x55\xc7\xe1\x1b\xb8\x7d\x25\xb7\x5b\xbe\x52\x9d\x16\x7c\xc9\x75\x5b\xb8\xcd\xc1\xe1\x9c\x62\x84\x1b\x61\x99\xa4\x03\xee\x97\xa6\xa7\x2c\xf3\xd5\x24\x2c\xfb\x07\x62\xb4\x0f\x3f\xc0\x51\xc7\x5e\x83\xab\xaf\x9b\xe1\x0d\x9c\x94\x86\x37\x80\x21\xd2\x70\xb2\x41\x93\x32\x2b\xce\x6d\x5a\x5f\x8c\x6d\xe0\x42\x14\x0d\x1f\xb7\xf9\x0c\x51\xd1\x6f\xf9\x0d\xd4\x0d\xa4\x86\xa2\xb7\x16\x40\x0d\xa9\x2a\xe9\xdf\x9d\x00\xae\x61\xb9\xf8\x03\xb5\x92\x21\x5d\x9f\xde\x1b\xeb\xdc\xf6\x6a\xbb\xc1\xc6\x1f\x36\x41\xd6\x41\x63\x9a\xef\xce\xcd\xb6\x7b\x84\xf4\x4c\xde\x6c\x0a\xed\x60\x10\x38\xd0\x0e\x55\x1b\xe1\x0d\xd6\xd3\x3e\x94\x43\x50\x6e\xb4\xfa\x7b\xb8\xb2\x96\x6d\xcc\x8f\xbb\x2f\xf9\x35\xc9\xae\xdd\x16\x44\x5b\xa9\xd1\x08\x12\xd1\xdd\xe5\xc4\x4e\x1d\x4e\x18\x20\x11\x86\xc9\xdc\x58\xfc\xf6\x31\x32\x03\x87\xbd\x06\x1b\x5a\xd9\x1b\x2c\x88\x54\xb5\x59\xdf\x06\x2f\xbb\x15\xc8\x09\xb8\x4f\x39\x6e\x6c\xd5\xeb\x69\x90\x21\xb2\x17\x62\x20\x43\xac\x1f\xf8\x02\x68\x08\xbd\xf7\x6e\xfc\xdb\x0c\x9f\xb8\x89\x94\x22\x13\x5e\xdc\xd8\x0b\xc9\x81\x1b\x37\xee\x6d\xba\xbb\xde\xb8\xb7\x55\xb2\x72\x06\xb8\x12\xcd\x50\x49\x71\x25\x14\xd8\x80\x95\xc8\x63\xf7\x42\xc7\xcc\xf2\xdb\x8b\x05\x40\x27\x9a\xf6\xf0\xfb\x34\xb0\x8e\xee\x92\xf6\xc9\x1c\x04\x00\x50\xb4\xbd\x46\xa4\x7d\x32\x77\x04\x68\x12\xc9\xac\x00\xf7\xe5\xfd\x3e\x3d\xbc\x9c\x35\xc7\xb7\x98\x65\x35\x80\xf0\x26\x78\x7a\xd3\x1b\x1c\xd5\xf7\x7e\xbd\x70\x2c\x28\xbe\x43\x8a\x65\x97\xe8\xc6\x8c\x84\xa8\x70\x9b\x0d\xca\xe5\x32\x22\xca\x29\xc0\x70\xa9\x5d\x0b\x24\x8a\xb4\x5d\x58\x6e\x72\x18\xea\xf6\x70\xe3\x44\xbe\x97\x6b\xb1\xc7\x06\x72\x4b\xdc\x8f\xdb\x9b\x8f\x61\x8f\x3a\xcb\xdf\xa4\x2a\xd4\x01\xf0\xc6\x85\x5c\x73\xfb\xcd\x25\x95\x71\x07\x37\x08\x4f\x73\xbf\x83\x14\xd0\x3c\xc5\x44\x4a\x91\x91\x3e\xc0\xbd\xc8\x26\x33\xb9\x05\x0b\x44\x45\xbd\x5f\x53\xea\x32\xbd\xaf\xdb\x5e\x2e\x01\xc2\xd3\x26\xc3\x78\xc6\x69\xe3\x14\xda\xa2\x6a\x7c\x06\xda\x22\xef\x83\xb8\xf8\x6c\x1b\x1e\x07\xc2\x93\xf7\x9c\x92\xff\x5e\xff\x3c\x20\x2f\x8a\x12\xf4\xfd\xb9\xb0\x3e\x77\x83\xba\x20\xb8\x8c\x78\xe9\x73\x7f\xbb\x4b\xfe\x81\xdc\xb0\x5f\x32\xbf\x88\x65\xbb\x24\xb5\xfe\x4e\xaa\x65\x86\xcd\x8d\x28\x49\x37\x32\xd9\xad\x40\x64\xb2\x51\xfe\x37\xa9\x11\x35\x21\xdc\x9f\xb3\xc7\x31\x7e\xb4\x6a\xe8\x71\xf1\x1c\xf8\x0e\x23\x74\x3c\x24\x41\x34\x7c\x16\x84\x8d\xa6\x63\xc5\x73\x5c\x30\xab\x4a\xf9\xe6\xb9\xef\xc3\x7d\x1c\x35\xd0\x1b\x6d\x60\x21\x7b\x92\x51\x28\x34\x90\xb0\xca\xd3\xd5\x27\x79\xca\x18\xdc\x43\x72\x43\xd3\x0a\x3d\x89\xb1\x21\xee\x00\xc3\x91\x49\x62\x19\xc0\x70\x88\xba\x1e\x40\x6f\x64\xef\x0a\x1f\x33\xd8\x2b\xef\x08\xbd\xe1\xbd\xc7\xa3\xe5\x03\xe2\xf0\x90\x19\xca\xe3\x2a\xc2\x06\x38\x60\xf1\xc0\x03\xf5\x0c\x7d\x50\xa7\x8c\x84\x7e\x0a\xdb\x16\xae\xf4\x98\xef\x83\x44\xaa\xf1\xc0\x02\x0d\xd9\x7e\x08\x49\xf6\x92\xe1\xc1\xe3\xbb\x92\xdc\x34\x9e\x42\x26\x75\x64\xe8\xa7\x00\x6a\x97\x6d\x01\x60\x94\xc3\x0f\xd8\xd0\x10\xd0\xa7\x92\x84\xc1\x5e\x73\x1d\x56\xb5\x1b\x3d\xd5\xd3\xc3\xc7\xd5\x6e\x70\x34\x1e\x2e\xc4\x0c\xba\x7a\xaa\xa0\x5b\xd4\x5a\x85\x97\xf5\xf9\xe0\x63\xe6\x05\x66\x5a\x23\xf9\x12\xa8\x5b\xd5\xe6\x2e\xe1\x22\x29\xdf\xbe\xe4\x0f\x90\xaa\xe2\x0f\x2f\x4e\xa6\xbf\xf5\x7c\x7b\x2a\xc7\x00\xd2\x02\xd0\xc8\xaa\x8d\xa9\xc2\x2d\xdd\x5c\x76\x0f\xf1\x5f\xde\x6d\x3f\x4d\x9c\x69\x06\x0b\x33\x37\xfd\xc2\xd3\xf0\x2a\x86\x77\x3e\xc0\xbb\xaa\xa9\x80\x52\x92\x4c\x2e\x1f\xc0\x94\xb4\xb1\x2b\x15\xdf\x60\xd7\xc4\x0a\x57\x5b\x36\xfb\x34\x7b\xff\x09\x88\x05\xec\xf9\x01\xc2\x69\xb8\x48\xe1\xc5\xa9\x65\xe4\x0e\x8e\xf8\x23\x52\x2c\x9c\xfa\xc1\xcd\x44\x1f\x10\x61\x4d\xc0\x14\x0c\x60\x4d\xaa\x36\xbf\x07\x27\xf3\xe1\x66\x07\x04\x1b\x44\xdb\x78\x16\xcf\x9e\xc9\xc3\xd1\xe9\x35\x54\x13\xe8\x93\x12\x6e\x3f\xee\xcd\xa6\x1b\x48\x85\x51\x07\x29\xa1\x4f\x40\x2e\x8e\x07\x16\xac\x35\xef\xc1\x1b\xc4\x58\x9d\x87\xb8\x66\xef\xff\x9f\xe1\x54\xec\x16\x74\xfe\xa4\x47\xe4\xcd\x37\xdf\xe1\x33\xdd\x66\xe8\x70\x8f\x19\x47\xac\x15\x28\xc4\x70\xf8\xd3\x0d\x61\x13\x93\xd0\x4e\x58\xea\x33\x9d\x60\x3f\xfe\x08\x0e\xa0\x7c\x3a\xbf\x54\xa4\x8b\x39\xf4\xf4\x91\x37\x9b\xca\xed\xd9\xe9\x15\x19\xf4\xb9\xcf\x16\x65\xb3\x83\xb8\x0a\x8b\x39\x17\x6f\x6d\x81\x6c\xc9\x29\x2c\x63\x28\x6f\x7e\xac\xec\xe0\xfb\xe6\x3d\xb1\x17\x1c\xf6\xb0\x17\xf4\x34\x7c\x1f\x66\x87\x24\xf4\x5c\x48\x45\xb6\x85\x4a\x6a\xae\x0f\x60\x60\x92\x69\x09\x9e\x8b\x55\x86\x99\x3e\x6a\x9b\xee\x04\x72\x89\xec\xf9\x05\xf8\xc5\x3c\x0f\xcf\x4d\x12\xf3\xea\x3b\x10\x22\x67\xe5\x26\x7c\x42\x02\x05\x92\xee\x3e\x87\x0f\x77\xfa\x7e\x4b\x32\x7c\x2d\xca\xcf\xd3\x4d\x98\x4e\x03\xe4\xeb\x95\x09\x3e\x0f\x04\x07\xd6\x05\x04\x4c\x53\x79\x01\x02\xa6\x99\x06\xf4\x79\x76\xb6\x75\x6a\x92\x39\x62\x2e\x79\xde\x6d\x3c\xa4\x0c\x38\x82\xa3\x79\x9d\x76\xbb\xf7\xc2\x8a\x5d\x8f\x17\xe0\x9b\xfd\x92\x60\xd8\x56\xea\x1d\xa5\x15\xb1\xd7\xba\x6b\x40\x06\xc4\xe9\x1a\x7c\x24\xbe\x43\x23\x7a\x64\x7c\xba\x2a\x3d\x86\x51\x79\x36\x65\x7c\x26\xfc\x7c\x16\xe3\x1b\x5a\x2a\x9e\xc5\xf8\xa6\x16\x79\x30\x61\xf2\xe1\x99\x05\xd9\xb0\x9a\x08\xf4\xf9\x10\x84\xf7\x4b\x18\x0c\x76\x0b\xec\x60\xc9\x02\x57\x86\x60\x15\x84\x80\x2e\x80\x49\xc5\x0b\xf0\xa0\x77\x38\x2f\x4e\x1a\xa8\xf0\xbf\x21\x6f\xaf\x0c\x0f\xa9\xe0\xe5\x0a\x11\x38\xf5\x78\xe5\x77\x6c\x4a\x90\x5f\x52\xd5\x8d\x09\xe8\x97\x9c\xd8\x7d\x42\xbf\xe8\xde\x0c\xf4\x4b\xf5\x6e\x11\xe8\x97\xf5\x41\xe1\x0f\xe7\xdf\x32\xa9\x9f\xd8\xae\xaf\x4c\x11\x1a\x08\x94\x4b\xf5\x02\xf6\xd5\xce\xc8\xa1\x7c\xb1\x33\x1a\xa4\xf8\xe6\x9d\x48\x81\x5e\x90\xa6\x43\x7f\xb7\x57\xb8\x6f\xf6\x28\x38\x30\x6d\xd8\xc0\xe2\xa2\x43\xe9\xe7\xcd\xb8\x99\xb1\x8e\x2f\x4c\xb4\x9a\xc3\xf4\x95\x8b\x86\x2f\xdd\x84\x78\xd1\x23\x6f\x3e\x87\xcf\x5f\x3f\xb0\x1b\x64\x79\xe4\xa4\x00\x0a\xd3\xbc\x3c\x7f\xd5\x30\x4d\x07\xfb\x2e\xfe\x9a\xb5\x4a\xbd\x6a\x95\x18\xbb\x5e\xd3\xec\x1b\x45\xf4\xe2\x6e\xa9\x4b\xf2\x4b\x9a\x0f\x3d\xba\x01\x7f\xc9\xe0\xc4\x86\xe0\x2f\x40\x3f\xc7\x5b\xe9\x92\xef\x57\x69\x00\xb3\xdd\x9c\x6d\xce\x8d\x88\x2f\x8a\x4e\x00\xbe\xac\x1f\x18\x10\x09\xae\xcc\x10\x07\xe2\x4b\xf5\x42\x0d\xc4\x97\xa9\xad\x18\xc4\x97\xe6\xed\x3c\x00\x2e\xcd\x64\x29\x6f\xd8\x1a\xef\x13\x2d\x6c\xe0\x14\xd0\x29\x65\xcf\x4b\xff\x08\x42\xa1\xfe\x41\xd2\x2c\x57\x44\x9d\x4c\x95\x09\xec\x94\xac\x51\xe1\x55\x27\xb3\xa7\xa8\x5e\x26\xc0\x05\x22\xa5\x0d\x2b\x22\x7f\xbb\x46\x59\x50\x4e\x86\xf9\x7b\x7e\xa1\x9c\x60\x25\x00\xe6\xa4\x69\xec\x07\xc0\x24\x1b\x45\x0b\x80\x49\x57\x74\x06\xbf\x64\x7d\xe0\x1f\xb6\x40\x4d\x27\x30\x15\x9c\x3e\x01\x4c\x76\x0b\xa7\xb9\x55\xd1\x5f\x40\x30\x69\xfa\x0d\xbc\x78\xe8\xed\xed\x6c\x04\x0f\x6c\xff\xbd\xa4\xa6\x08\x36\xaf\xca\x0f\xcc\xf1\x55\xf9\x41\x36\x05\xbc\x64\xbd\xc4\x04\x90\x43\xc2\x94\x21\xaf\x69\xa4\x14\x48\x45\x2f\x91\xcd\x82\x5e\xd2\x86\xa7\xfd\x62\xc3\x4c\x6b\x65\x79\x86\xef\xc3\xd3\x14\x4e\x5f\x60\xf9\xf4\xd5\x78\x75\xdc\x80\x32\xbf\x37\xdd\x80\x86\xbe\xb7\xdd\x70\xbb\xdd\x60\x3d\xc2\x8b\xdf\x45\xfa\x87\x06\x87\xf7\x76\x06\x90\x5a\xdf\xdb\xad\xe4\xd7\x64\xbd\xae\x7e\x70\x73\xdd\x63\x19\xc2\xa9\x84\xf9\xde\x6b\x5b\x19\xcd\xfd\xde\xce\x37\xdb\xea\x71\x9a\x3c\x01\xb8\x01\x9a\xff\x09\x48\x95\xf5\x83\x6f\x91\x48\xcc\x19\xc0\x0f\xd0\x5b\xde\xf7\x11\x08\xde\xf2\xce\x7e\xfb\x3b\xbc\xd3\x78\x55\xc0\x9c\x37\xcc\x90\x7b\x35\x84\x19\x93\xc6\x3d\x6e\x7d\x06\x22\x8b\x91\x0e\xa0\x7f\xe9\x9c\x09\x42\x4b\xd3\xe1\x16\x84\x96\xd5\xba\x1f\x70\x11\xed\xec\xa0\x7f\xd5\x5d\x91\x98\x83\x96\xdd\xb2\x12\x0e\xd3\x46\x39\xa6\x17\x98\x70\x57\x18\x37\x7d\xbd\xae\xdf\x97\xb0\x7c\xdf\x27\x68\x57\xd9\x11\x44\x97\x55\x11\x2b\xbc\xf5\x2c\x26\x8a\xac\x91\x39\x7c\x89\x8c\x93\xfb\x03\x42\x16\xa4\x1b\x1f\x40\x34\x34\xf0\x1d\x9b\xff\x37\xfe\x20\x8a\x1b\x52\x01\x74\xcb\x4e\xe9\xf5\x1d\x88\x91\xdd\xb2\x15\x75\xca\x58\xe0\x58\x6b\x30\x56\x84\x21\x09\x30\x56\xaa\x29\xbb\x81\x58\x69\x06\x5a\x7d\xff\x0b\x61\x67\x72\x34\x2d\xcf\x6c\xdb\xf9\xb5\xe2\x37\x01\xb5\x99\x8a\xb8\xf1\xf9\x02\x14\xf8\x6f\xc2\x09\xd6\xd2\x3b\x7e\x66\x14\x05\xa8\x4f\xa5\xb2\xd9\xfb\x93\xf6\x69\xe6\xcc\x2b\x0e\x13\xf2\xf7\x15\x87\xc9\x89\xfc\x92\x25\x2b\x40\xdb\x6b\x96\x2c\x7b\xce\x5b\x5d\x29\xbe\x6c\x25\x7c\x1e\xc6\x14\x16\xef\x4b\xa8\xbc\x69\xca\x2f\x59\xb2\xff\xbe\xe9\x7a\xb0\x30\xa5\xc0\xf2\xc7\xcb\xcb\xd4\x54\xcf\xb1\xab\x43\x26\x15\xf3\x76\x61\x52\x49\x4f\x99\x10\xa9\x74\x88\x7e\xe6\xdb\x60\x14\x39\xbc\x76\x64\x97\x2f\x24\x4e\x78\x9a\xf0\x09\xf5\x2e\x90\xcc\xdb\xf0\xe6\x22\x73\xe0\x4e\x29\x7d\xbf\xfd\x1d\x94\x96\x73\xe7\x05\x8a\x49\xb3\xde\xeb\xc9\x65\x39\x54\x8a\x7e\x84\x31\x54\x28\xa9\xae\x02\xe3\x49\x9a\xb9\x09\x99\xc9\x46\x52\x94\xcc\x44\x07\xcb\x3b\x40\x22\x60\xae\xbd\x1e\x29\x0c\x7d\x7c\x89\x99\x11\x5a\x0a\x66\x93\x21\x94\x91\xcc\x26\x1d\x26\xa2\x09\xb3\x49\xee\x46\xe3\x9d\xea\xab\xfa\x06\x54\x47\xcc\x6d\xb8\x48\x76\xbe\xcb\x2b\x98\x3b\x32\xf1\x9d\x80\xfa\xb2\xbe\xe1\x28\x49\x71\x57\x5e\x4d\x87\x86\xfa\x40\x52\x32\xe0\x05\x9f\xaf\xa6\x43\xd8\xda\xe7\x8b\xe9\x50\x6b\x29\x84\x25\x4b\x40\x08\x08\x4b\x86\x8e\x81\x37\x36\x42\x12\xc5\x81\x4b\xa1\x41\x45\xbe\x92\x6e\x78\x13\x84\x25\x43\xc4\xb6\x37\xac\x13\x6d\xc8\x03\x9f\x0c\x5f\x12\xf6\x70\x7a\xdf\x86\xa2\xd1\x41\x4c\x92\x7b\x46\x27\xe8\xb3\x76\x53\xca\xae\xe5\x0b\x4e\x4a\x0a\x4b\x0b\x63\xdc\xe0\x97\x35\xaa\xf8\x4d\x4e\xc7\xac\x73\xa8\x45\x52\x1c\x2c\x28\x44\xaa\xe0\xa8\x9b\x1c\xc4\x67\x24\x07\x59\x7f\x5a\xe0\xde\x13\x4e\x49\x67\x0d\x3b\x95\x41\x6a\xaf\x46\xbf\x65\x93\xbe\x83\xc5\x32\x31\xe8\x15\x8b\xd7\x19\x74\x91\x44\x80\x0a\xf3\x82\xce\xde\xdd\x31\x5f\xdc\xe6\xce\xa0\x8b\xc9\xee\x52\x34\xff\xc9\xb5\x4e\x8c\xe0\x81\x2c\x7d\x41\x81\x70\x8b\x7c\xd9\x6a\x3c\x01\x43\x22\x92\x3a\x10\x25\x08\xf1\x18\x0a\xc7\xc7\x58\xce\x5c\x61\x85\xf6\xfd\x41\x06\x1f\xcf\xff\xf4\xd6\x7b\xff\x22\x8d\xca\x6b\x68\xc5\xd1\xdc\x5f\x98\xb5\x04\x29\x81\xe3\x63\x18\x58\x27\xc7\xc7\x9e\xe8\x0f\x49\xf6\x7e\x07\xde\x72\x8d\x03\x52\x76\xa8\x12\xbd\x58\xbb\xf6\x9c\x07\x3a\x61\x4f\x67\xa0\x13\xc4\x24\x7e\xd1\xc8\xa1\xc9\x9a\xd0\x77\x14\xe9\x21\x27\xfc\x1d\x4b\x54\x20\xe9\x3b\x86\x90\x44\xf0\x77\xa4\xba\x9f\xfc\x1d\x83\x2d\x31\x0e\xa2\x6a\xa8\x46\x1c\x87\x27\x83\xe4\x9a\x44\xb0\xaf\xbb\x02\xa2\x8e\x32\x40\xf7\x8b\xe3\x00\x05\xfd\xdb\xc3\x02\x76\x8e\x55\x92\xfb\x44\x54\x0f\x28\xbb\xe3\x20\xa2\xfa\xf8\x76\x80\x80\x74\x23\x80\x71\x8e\xa3\xb0\x1b\x84\xcf\x40\xd4\x00\x33\x77\xc0\xba\x31\x58\xd0\x21\xe9\x06\xd1\x87\x01\xe9\xc6\xf7\x90\x5f\xfa\xe1\x58\xae\x5c\x3f\xfe\x41\x23\x0a\xf5\xf8\x56\x43\x40\xc7\xb1\xd0\xda\xe3\x00\xf0\x9c\x74\xbc\x80\x76\x63\x01\x27\x1f\xd0\x6e\x2c\xc8\x65\xe3\xf8\x24\xee\x42\xbd\x8c\x43\x8b\x15\x09\x49\x71\x34\x40\xae\x17\x55\xc2\x32\xc5\xc9\x35\x0e\x2c\x53\xd8\x8d\xe3\x40\x5b\xe6\x2c\x15\x50\x67\x2c\xdc\x19\x71\x74\x00\xd2\x17\x35\x45\x7e\xb2\x3f\xc7\x81\x0d\x07\xb4\xdf\x80\x39\xa3\x0c\x9c\x92\x01\x75\x46\x72\x5c\x0d\xd8\x32\x92\x04\xa6\x38\x06\x99\x6d\x83\xc2\x06\x04\xbc\x8b\x0f\x61\x85\x59\x8e\xc8\x84\x59\x2d\x69\xf1\x14\xcc\x8d\xe7\xa7\xa2\x8a\xef\x4f\xad\x66\x3e\xcf\xb9\xad\xf1\x1d\x40\x5f\x31\xc1\x87\xec\x17\x03\xfa\xd6\x80\xfd\xa2\x90\x62\x12\xb0\x5f\x54\x66\x58\x1c\x41\x96\x76\xe1\x99\x20\x5b\xe9\xa0\x00\xac\x33\xa3\xf8\x25\xcd\x33\x96\x0c\xdb\xe1\x74\x94\x49\xe3\x19\xe5\xa0\x68\x20\x60\x9b\x73\x81\x34\x1e\xe6\x6d\x1c\x44\x19\x62\x11\x8c\x23\xcd\x29\xe6\x79\x20\x60\x49\x78\x8b\x63\xb3\x1a\xf2\x2e\xe8\xe5\x87\x83\xbf\x19\x0b\x29\x18\x60\xf2\x51\xac\xf6\x22\x87\xa3\x78\x4d\x6c\xac\x33\x61\x99\x13\xfe\x57\x66\x56\x1c\x0b\x0a\x68\x07\x68\x99\x85\x4e\x53\x45\x36\x3f\xa8\x89\x89\xf7\x85\xd2\x09\x02\x6a\xae\x31\x59\x03\x0f\x46\x1d\xcf\x04\x50\xe1\x21\x53\x45\x75\xf9\xa0\xb5\x8f\x62\xd5\x89\x2d\x9c\x4e\xf4\x4b\xcc\xf1\xee\x0f\x08\x55\x5d\x26\x17\x04\x28\x8e\xc4\x65\x88\x23\xa5\x5d\x1e\xed\x68\x1e\xfe\x8b\x51\xec\x34\xa2\x11\xb1\xa2\x06\xec\x14\x52\x6d\xc5\x21\xf8\xab\xcb\xfe\xb6\xf3\xb9\x7f\xc3\xe7\xe3\xf0\xde\x42\x93\xfb\x0c\x89\x04\x93\xc2\x80\x72\x25\x9b\x2f\x8e\x9b\x05\x5d\x9c\x64\x44\x32\x62\xee\x8c\xe3\x53\xbb\x73\xf7\xcb\x4f\xaa\x16\x0a\x80\x22\x89\x0c\xaa\x80\xa4\xa2\x0c\x8e\xf3\x01\x4b\x45\x1f\x0a\xa5\x1f\x86\x25\x67\x37\xea\x2d\x48\xdb\x71\x60\x5a\x19\x7b\xbd\x91\x91\xcf\x69\x2b\x20\xa0\x68\xcd\xfe\xfa\xd4\xdb\x39\x1d\x76\x50\xdc\x0e\xa7\xfd\x63\x69\xe1\x57\xb5\xca\x79\x0d\x58\x86\xc3\xfc\x48\x17\xe5\x7d\xd7\x86\xbd\x4a\x10\x00\xa6\xa2\x80\x51\x22\x87\xe2\x03\xc6\x42\x58\x52\xe2\xc0\x9a\x32\xb6\x6c\xfc\x14\xdf\xba\xec\x61\xc4\x32\x59\x88\x21\x11\x04\xb1\x0b\x51\x10\xb2\xa8\x62\x51\x08\x8f\xb6\x46\xa5\xe0\xdc\xa3\x69\x05\xde\xc0\x81\xbb\x28\x60\x85\xa8\xc7\xbe\x66\x1a\x7f\x1b\x57\x94\x22\xc2\xc5\xe1\x1b\x74\x40\xa7\x34\x04\x2e\x41\xa7\x01\x8d\x44\x21\xcf\x33\xca\xa7\xf9\xa6\x9d\x04\xfb\x43\x55\xa0\x15\x22\x1a\x39\xef\x44\x31\xe6\x9a\x21\x2c\xcd\xd9\xc9\x77\x40\x6f\x01\xe1\x23\x4a\xff\x16\x2b\xd6\xb4\x80\xe5\x21\x89\x8d\x0b\x48\x1e\x26\x79\x45\x01\xc9\x43\x19\x64\xf0\xc4\x3f\x96\x07\x0a\x20\x49\x64\xa0\xc5\x44\xd1\x26\xde\x78\x08\xc8\x6c\xa2\x13\xa2\x0c\x16\x5e\xa5\x16\xc3\x17\xa6\x7f\x10\x1f\xcf\x82\x81\xb4\x61\xed\xaf\xa2\x41\x0e\x8e\x22\x01\x6b\x43\x25\x99\x2a\x0a\x1a\xe4\x80\x7a\x25\x0a\x21\xd8\x64\x00\x07\x74\x0e\xfa\xed\x03\x3a\x87\x39\x6d\xdc\x84\x09\x6d\x7f\x95\xc8\x00\x36\xa8\x32\x77\x35\xfc\x83\x73\x1c\x13\xba\x90\x08\x89\xdf\x21\x60\x70\x98\x18\xd6\xa3\x84\x1f\xa5\x6d\x28\x8d\x83\xbc\x9d\x28\x61\x37\xd1\x01\xf8\x9e\x9b\x2f\xec\x88\x48\x6a\x97\x70\xb0\x21\x6d\x8a\x0c\xae\xac\x36\x08\x19\x12\x52\x99\x90\x90\x61\x10\xb1\x1f\x45\xb9\x37\xfe\x62\x95\x89\x42\xb6\x3a\x99\x3f\x51\x96\x55\xa4\x49\xf8\x90\x73\x7f\x99\x40\x11\x27\x10\xa1\x93\xe4\x74\x04\xe4\x0c\x73\xfa\xee\x27\xf7\xd6\xe4\x91\x8b\x3d\xcd\x57\x95\x62\xcd\xfe\xbb\xec\x0e\x1f\xea\xfe\xe1\x0f\x66\x90\x63\x7d\xc1\xf2\xc0\x32\x86\x83\x21\xd2\xf5\xf0\x49\xa5\xd5\x2d\x58\x3e\x86\xe6\x97\x6e\x53\xf6\xe8\x8f\x1b\xbe\x47\x84\x49\x01\x24\x7a\xd8\xc7\x30\x83\x83\x81\x1a\x32\x2c\x88\xcb\x17\x30\x2c\x4c\xb0\x83\xa2\x90\x02\xe2\x4e\x56\x7e\x04\xe6\x0e\x5f\x66\xd8\x9b\x2f\xbf\x74\x38\xd7\x8f\x5d\xe1\x35\xd9\x6d\x88\x7a\x58\x18\x82\xe4\xb6\x80\x85\x61\x82\x11\x1d\xe5\x01\x8b\x61\xfa\xfc\x03\x13\x2a\xe5\x22\x4a\x0e\x1b\x43\xd8\xd0\x74\x05\x48\xa3\xe0\x4c\x52\xa9\x6b\xce\xcf\x4f\xa9\x5b\xdd\x4a\xab\xd4\x11\x40\x10\x70\x27\x14\x75\xa3\x2a\x90\x23\x6b\x06\x6a\x83\x04\x2f\x21\x20\x18\x48\x55\x94\xaa\x96\x05\xc3\x40\x54\x12\xda\x48\xdd\x8a\x5a\x1d\xd9\xe4\x7a\x99\x8f\xec\x1f\xb8\xb9\x90\x07\x72\x04\x0c\xc2\x97\x02\x8e\x80\xba\x2c\xba\x91\xec\xee\xfd\x4f\x68\x60\x4a\x0c\xb1\xff\x87\x25\x37\x41\xf8\x16\xd7\x24\x6b\x17\x5f\x25\x6e\x07\xbd\xa7\x7e\x27\x59\x2c\xdf\x51\x35\x5b\x2e\xbf\x48\xc6\x46\xf1\x33\x17\x61\x4b\x3e\x63\xde\x34\x7d\x0a\x6f\x40\x23\x9a\x2a\xe0\x0d\x08\xce\x40\x51\x25\x46\xf3\x3e\xd1\x97\xc4\x46\x46\x25\x4a\xe6\x38\xbc\xa6\x29\xc8\x0b\x90\xff\x27\x78\x72\x01\x88\xff\x24\xdc\x24\x2a\xd8\x1b\xc3\x3e\xc1\xca\x39\x9c\x9a\xc0\xf8\xaf\x6e\x07\xe1\x70\x23\x74\x2d\x2a\x51\xd6\xc3\x59\x24\xbe\x3f\x67\x8f\xa8\x3b\xdd\x9b\xd1\xac\x64\x94\x10\x5e\x10\x95\x90\x99\x01\x38\x45\x54\x62\x66\xd2\xc1\x21\x66\x66\x10\x51\x1b\x15\x10\x63\x4c\x5e\x51\x01\x31\xde\x8d\x46\xb6\x11\xb8\x14\x50\x05\x54\x0c\xdd\x21\x55\xc0\xe8\xfb\x05\x16\xb9\xc3\x4c\x16\x09\x00\x0d\x01\xf4\xff\x54\x18\x56\x10\xa2\x88\xb9\x8c\x1a\x58\xfb\x51\xd1\x84\xfb\x57\x6c\xd5\xc0\x24\xe9\x28\x7f\x22\x2c\xf7\x94\x12\x93\x18\x61\x5b\x4d\x7a\x73\x74\x84\xdd\xb0\x63\x50\xe9\x86\xcd\x27\xe5\x1a\x23\x5f\xd4\xb4\x5f\x90\x7f\x95\xb0\x4c\xf0\x69\xa2\xa6\xfd\xf2\x27\xee\x5b\xd4\xb4\x19\x54\x65\x09\x7b\x4d\x75\x17\x70\x6b\x2c\x2c\x30\xfc\x27\xd1\x67\x51\x85\xe8\xb0\xff\xbe\x73\x6c\x2a\xba\x85\xde\xaf\x4e\x8e\xcd\x80\x49\x4d\x4e\x6b\xc2\xae\x59\x4f\x19\x29\xa8\xee\x05\x29\xb5\xe3\x8b\x91\xd5\x2d\xba\xfe\x8b\xd3\xe4\xab\xdf\xa1\xb6\xbb\x3d\xd6\x1d\x7b\x42\x87\x80\xae\x8b\x21\x30\xea\x0d\xf7\xab\x1f\x55\x15\x43\x48\x02\xc3\x3f\x76\xed\x6e\x2d\x70\x3e\xcf\x34\x46\x6c\x01\x98\x3f\xdc\x96\x01\xcc\x1f\xee\x68\x02\xe6\x8f\xe1\x28\x9a\x2f\xa2\xf4\xc0\x18\x3a\xf6\x64\x97\x60\xda\x3e\xc2\x77\x96\xae\x67\xf4\xb8\x31\x5c\x4d\x28\x72\x6d\x7f\xc9\x60\x12\xbf\x64\x11\xf6\xd2\x43\x11\x4e\x38\x8c\x99\x1e\x65\xaa\xb4\xd2\xb6\xff\x81\xb9\xd3\xc9\xf4\x28\x94\xbc\x0f\xa8\xba\x1d\x6c\x2e\x1c\x87\x0b\x90\xeb\x87\x9b\x29\xc8\xf5\x7d\xd7\x9a\x1c\xe7\x66\x7f\xbd\xb6\x80\x5a\xbf\xf4\x97\x2b\x14\x2e\x30\x77\x21\x10\xe8\x87\x1b\x4f\x7d\x4d\x69\xa4\x0e\x2f\xa7\xe0\x7d\x1f\xf3\x48\xfa\xee\x0f\x30\xb3\xef\xfb\x22\xd0\x0f\x22\xab\x02\x04\xfa\xe1\x56\x28\x02\xfd\x20\x13\x2e\xda\x61\xc9\x8d\x6b\xf8\xb2\x9b\xf7\xd9\x9d\x98\x6b\xad\xf8\x4c\x70\xcd\xbe\x08\x98\x73\x34\xec\x97\xee\x85\x4d\x8a\x68\x9a\xd6\x8a\xd5\x9e\x5c\x63\x76\x64\xad\x0a\x48\x8f\x03\x36\xc0\xa3\x1f\x2a\x37\xe0\xd1\x0f\xb5\x41\x70\xe7\x87\xa2\x5d\xdc\x79\xcf\x68\xe0\xcb\x0f\x42\xa1\x02\x50\xf9\xa6\xde\xda\x76\x0e\xb3\xd7\x46\xcd\xfa\x3c\xa4\xad\x28\x74\xad\x8a\x30\x86\x5a\xd9\xaa\xde\x71\x5e\x68\x14\xd6\xbd\x86\xf0\x62\x78\x3d\x7c\x81\xe6\x83\xb8\x0b\x65\x53\xb4\x66\xc6\x06\x5f\x6d\x4c\x90\xee\x7d\x26\x08\x3a\x05\x48\xf5\x65\x90\x70\x1a\xad\x61\x96\x60\xda\x01\x55\x5f\x56\xfa\x90\x34\x64\x74\x5d\x77\xa4\xd8\x79\x1b\xe6\x4e\x8f\xa2\xe0\xd6\x27\x19\x1b\x01\x6c\x7d\xba\x34\x81\x9e\x1f\x38\xa3\x03\x88\xf9\x81\xb3\x21\xda\x70\x85\x20\x87\x1a\xdb\x41\xb3\xda\x70\x3a\x4f\xb6\x0c\x30\xe6\x07\x24\x93\x01\x64\x7c\xa4\x1f\x95\xa0\x12\xd0\xba\x68\x12\x83\x15\xff\xb0\x09\xbe\x40\xaf\x8e\xbf\x5c\x0a\xd1\xb4\x78\x86\x2f\x3d\x7e\x99\x5e\x23\x8c\x42\x0d\xbf\x85\x10\x9c\x5e\x5b\x77\xec\x1a\x00\xcd\xe7\xe1\x04\x22\x4d\xd0\xe3\x8e\xa0\xf3\x72\x34\x47\xd3\xe4\xe9\x40\x8a\xee\x77\xf8\xd0\xf2\x21\x5a\xfb\x89\xfe\xdc\xd3\x35\x2e\x68\xb5\xbc\x8f\x45\xaa\x58\xf4\xcf\x17\xa8\x6c\x30\x17\x87\x5f\x7a\xfd\x83\xb7\x13\x03\x4e\xf1\x1a\xc2\x4f\xbf\x94\x81\x0f\xc3\xfb\xe9\x0b\x8c\x06\xc1\xfd\xcd\x3e\x74\x17\x99\xfb\x87\x78\x39\x5e\x7f\xdb\x1a\x71\x0e\x01\xd6\xfc\x84\xe2\x3a\x80\x97\xaf\x1e\x7e\xdb\x32\x22\x8a\x2a\xb1\x1f\x14\xfb\xf5\xdb\x0f\x26\x39\x4f\x01\xba\xbb\x58\x13\x21\xba\xfb\x50\x6b\x04\xde\x5d\xc6\xc5\x00\xc5\x7d\x16\xd7\x22\xfb\xc1\x72\x4c\x4c\x7e\x46\x5b\x68\x40\xeb\xfe\x5b\xed\x17\xe8\xdc\x76\x0c\xda\xb1\x36\x32\x10\xdd\xa7\xa7\x4e\x80\xdb\xa7\xd6\x39\x81\xdb\xc9\x92\x08\x50\xd8\xa7\xb6\x93\x76\xfb\x51\xd7\xca\x6d\xb5\xa9\xdd\xb7\x21\x4c\x82\x64\x02\x14\xf6\x49\xcc\x4b\xb4\xef\x98\xde\xc8\xbd\x0c\x11\xd9\x89\x67\x0f\x10\xd9\xcb\xbf\xe1\xb9\xed\x0b\x7a\x9e\x8d\x02\x92\xea\x00\x92\x7d\x7a\x88\x6e\x80\x61\x60\xca\x0d\x90\xd7\x27\x96\xed\x10\x79\x7d\x4c\xd7\x96\xdc\xc7\x2e\xcc\x4f\x53\x9e\xb8\x7b\xa3\x3d\x4e\x37\x7b\x1b\x55\xd9\x23\x68\x7b\x1c\x67\x8b\x7e\x2c\x82\xe2\x88\x8d\x38\x9c\x30\xa4\x1e\x16\x45\x28\x76\xce\x2d\xe1\x54\x89\x89\x2a\x8a\x0e\xf3\xbf\xc7\xf1\x7e\x74\xff\x98\xfc\xc0\x4d\x46\xcf\x74\x00\xf3\x60\x2d\x8e\x7e\x60\x6e\x62\x1b\xe8\x87\x5d\xdf\xb9\xa6\x33\x58\xca\xe0\x9f\x37\xe5\x49\x2f\x40\x21\x1c\xde\xbf\x78\xe6\xab\x51\xff\x64\x6b\x57\xce\x76\xe8\xb7\x70\x1e\x04\xa8\xe5\x53\xc3\x6b\x87\x95\x5f\x8e\xdf\xe8\xe8\xdc\x1a\x30\xbb\x3a\x37\x5e\xbf\x00\xdb\x7c\x6a\xcf\x13\xdb\x5c\x66\xdf\x00\xdb\x7c\x6a\xce\x14\xdb\x5c\x0a\xe2\xe8\x95\x81\x60\xa9\x77\xc2\x05\x06\x04\x77\xd1\xd1\xcc\x35\x98\xf6\x86\xd3\xcc\x06\x11\x90\x0e\xd8\x56\x80\x86\xde\x08\x25\x0a\xc0\xd0\xeb\xea\xde\xc7\x8d\x13\x5e\x93\xa0\x82\xc8\x12\xf3\x5c\x2e\xd8\xe8\x82\x50\x20\x1a\x7a\x27\xbb\x05\xf9\xd1\x05\x6a\x40\x53\xe8\x44\x08\xc0\x77\xf9\x87\x90\xeb\x26\x5e\x33\xda\xe0\x93\x17\x89\x28\xa3\x93\xfb\xa4\x3d\xa4\xa3\x59\x2f\x14\xd7\x3e\x1c\x00\xea\x85\xd1\x80\x34\x95\x10\xc4\x5c\xc2\xc9\x00\xc4\xbc\x61\x13\x0f\x40\xcc\x05\x51\x8e\xae\x3d\x15\xa1\x03\x6e\x79\xc6\xbe\x26\x66\xc7\x6e\x9e\xa0\x7e\xb0\x92\x7b\x40\x36\x64\x85\x30\x89\x12\x19\x1b\x5d\xa8\x07\x3b\x30\xc8\xcd\xb6\x0f\x94\x76\x38\xba\x03\xa8\xf2\x32\xc2\xf9\x47\xb8\x02\x51\x26\xd1\x05\x2a\x42\x0c\x76\xc5\x5d\x38\x01\xcd\x8a\xdc\x7f\x9c\xfe\x41\x79\x02\x15\x15\x1f\xa2\xbc\xe2\x57\x2d\x0f\xc9\xd1\x49\x97\x24\x13\x28\xfa\xb2\x67\xa8\x07\x9c\xf1\x23\x9d\xbf\x62\x0d\x21\x15\xba\xe9\x8f\xb6\xf4\x24\x3d\xcf\x12\x44\x11\xe2\xd4\x04\x64\x78\x1e\x4e\x5f\xc4\x94\xfa\x09\x10\xde\x0b\x27\x6f\x88\xa3\x0d\x7a\x61\x00\x8b\xbd\x9a\x05\x83\xd0\x59\x7d\xd7\x23\x39\xae\xf7\x00\xfc\x7a\x29\x9a\xba\xe9\x8f\x28\xd2\x9d\xc8\x65\x43\x13\xa3\x0b\xaf\xd3\x7c\xc1\x26\x74\x3f\xfb\x35\x01\xc8\xfe\x10\xfd\xda\xb0\xc0\x00\xfd\x7a\x2e\xd7\x2c\x61\x5b\xc6\x29\x06\xe8\xd7\xd2\x44\x85\xe8\xd7\x87\x7d\xfc\x60\x42\x41\xc7\x14\xfc\xda\x58\xa1\x00\xfc\xba\x85\x2d\x42\x29\x4d\xe7\xf5\xc3\x51\xc2\xd9\xfa\x8a\x7a\xcc\xfd\xd7\x97\xa7\x3f\x70\x67\x2b\x16\x64\x7c\x40\xd9\x01\x8a\x7a\xc2\x2a\x12\xa0\x4f\x77\x72\x87\x62\x90\xe6\xe3\xf1\x6b\x40\x96\x0e\x8a\x52\x0c\x32\x79\x74\x2b\x07\xe8\xd3\x93\xb0\xe4\x18\xfa\x63\x08\x12\x88\x51\xc8\xa7\x61\x10\x81\xa5\x2e\x46\x97\x04\xb8\xd4\xd3\xa3\x3b\x20\xd3\x45\xad\x0e\x90\xe9\x41\x76\x5a\x00\x32\xdd\x00\x57\x0b\x30\xa6\x8b\x21\x0c\x01\xc8\x74\x53\xdb\x19\x20\xcd\x69\x9a\x05\x57\x3a\xc8\x1c\x09\x70\xa5\x8b\x0e\xdd\x00\x58\xba\xc1\x32\x18\xa3\x9a\xe3\xc2\x57\xd1\x33\xbb\x6d\x20\x28\x4a\x1f\x7b\x80\x38\x5d\x08\x9f\x0b\x10\xa7\xe7\xda\x2f\x20\xfe\xa7\xf7\xe9\x01\xbc\xfb\x31\xf4\xa5\x23\xff\x07\xf9\x38\x6a\x6f\xc3\x24\xec\xf0\x1a\x8c\x09\x44\xe7\xf8\x84\x5f\x03\xbb\x3b\x40\xa8\x2e\xc6\x27\x04\x10\xd5\xc5\x6d\x01\x88\xea\xa2\x87\x3e\xc0\xa8\xae\x69\xd1\x26\x83\xa6\xf7\x37\xef\xb8\x9f\xfa\x16\x01\x10\x44\x21\x44\xf5\xca\x3f\x5d\x0c\xe0\x57\x4f\x2d\xe0\xe0\x57\x17\x23\x0a\x62\x80\xee\x03\x56\x51\x08\x66\x0d\xaa\x57\x00\x66\x3d\x15\x1d\xe3\x13\xb2\x53\x99\x02\x98\x75\x25\xe3\x3c\x86\x76\x55\x7c\xd1\x31\x00\xdf\x01\xdb\x28\x40\xb9\x6e\x61\xdd\x81\xd2\x01\xab\x32\x04\xaa\xf6\xa8\x09\x50\xf5\x38\xec\x29\x44\x6a\x38\x01\x87\x3c\xdc\x3e\xcf\x39\x1f\x89\x07\x34\x75\xa8\x03\x0d\x50\xe7\xa6\x63\x6a\x08\xb0\x95\x03\x3e\x47\xcd\x0d\x98\xea\xd4\xfa\x05\x02\xf5\xdc\xf5\xc1\xfb\x3e\xf0\x99\xc7\x90\xf2\xd6\x09\x44\xe2\xce\xbf\xf1\xfd\x64\x6d\x10\x7e\x12\x22\x50\x0f\x78\x2a\x03\x08\xea\xaa\xf7\x71\x90\x73\x1e\x56\x23\xd8\xba\xbd\x0f\xc4\x8e\x12\x75\xa4\x41\xde\x34\x21\xc1\x3c\x46\xac\x01\x4d\x1d\x2a\xe7\x23\xb5\x7d\xf2\xcc\x62\x69\x79\x84\x19\x52\x10\x3a\xd4\xeb\x6b\xff\xe1\x6a\xd2\x0c\x0b\xbb\x58\x80\x4d\x1d\x9a\x95\x80\xa6\x2e\x63\xf7\xf6\xa7\x7e\xc6\x61\x11\xe2\xc6\x59\x0d\xa0\xa9\x07\x74\x61\x01\x34\x75\x09\x17\x23\xb8\x71\xcd\x39\x4a\x5c\xd9\xc1\xee\x3b\x96\xab\xc0\xc6\x11\x36\xac\x8b\x12\x68\xea\x20\x92\x27\x40\xa6\xee\x7b\xe6\x13\x36\x3c\x40\x0d\x8e\x01\xdb\xc4\x1e\x08\x92\x54\xed\x30\xb9\x8f\x1c\xdb\x93\xe4\x04\x76\x3f\x50\xa5\x43\xf1\xb8\x51\xa5\x35\x1d\x6c\x58\xe9\x5d\x30\x86\x10\xb4\x6c\x50\xa5\xc3\x0d\x62\xe0\xe8\xd7\xdc\x36\x2e\x64\xae\xcd\xbf\x04\x2b\xf5\x3a\x79\x86\xa1\xc5\x26\x42\x6c\x74\x00\x36\xdd\x3c\x8f\x03\x36\x5d\x9b\x92\xf2\x7a\xc8\xfa\xe2\xfa\x66\x10\x6c\x24\xe9\xf4\x87\x93\x99\xf0\x32\xfd\x02\x60\x4d\x17\x20\x20\x02\xac\xe9\x22\x92\x6a\x8c\x1b\x0a\x25\x5b\x76\x23\xa1\x14\xb3\x00\x0c\x55\x57\x0e\x3a\xb3\x7b\x3f\x20\xd4\xa1\x09\x09\xac\xe9\xbe\x3f\xea\x4e\x06\xb8\x71\x8c\x1f\x18\xea\xce\x1d\x72\x73\x08\x13\x09\x00\xa9\xc3\x1d\x07\x40\xea\xef\x05\xbe\xaa\x71\xc5\x66\x62\x81\x06\xde\x21\x86\x4e\x32\x0f\xe4\xe3\x87\xdb\xca\x36\xc3\xf5\xb0\x07\x04\xd4\xea\x61\x09\x8f\xed\xe7\x99\x87\xf6\x5b\x3d\xf7\xb1\x85\x26\x0a\x9c\x75\x40\xb9\x17\xc0\x59\xc7\x5e\xd9\x0f\x83\xc0\xc6\x07\x9c\xf5\xf7\x82\x5f\x02\x9e\x53\x49\xf7\x5c\x3c\xf4\x57\x7c\x6f\x0c\x33\x77\xdc\x14\x88\x65\x38\x14\x50\x22\xcd\xb9\xbb\xbc\xa6\xe9\x52\xc8\xcb\x1c\x73\x37\xfa\x36\xc5\x80\x38\x30\x00\xc1\x0e\x8f\xac\x1b\x04\x1b\x01\xb8\x31\xb0\xbb\xf7\x69\x36\x56\x98\x89\xb2\x3f\x9d\x63\xf3\x53\xf6\xc3\x18\x05\x10\xb1\x83\xe4\xc8\x00\x11\x3b\xd6\xbe\x6f\xc1\xc9\x35\xf0\x3a\x6c\xdf\xb3\x58\xf0\xe0\x9a\xef\x70\xda\x9d\x18\x64\xa6\x93\x6c\x16\xfb\x6f\x71\x4d\xff\xa1\xcc\x00\x88\x1d\x86\x31\x4c\x7d\x6f\xce\xd0\x09\x87\xbb\xa6\x7a\xd0\xb1\x97\x1b\x96\xe0\xd8\xee\xa1\x80\x63\x07\x09\x1e\x31\x2b\x61\x32\x36\xad\x32\xd3\x39\xec\x4d\x28\x7f\xa7\x43\x3d\xe1\x0b\xd4\xe4\x07\x9a\x76\x78\x84\x06\x4d\xbb\xe9\x91\x01\x4c\x3b\xdd\xf9\x00\xd3\xfe\x5e\xa6\xf3\xc4\x80\x5d\x5e\x93\x92\x56\x7c\x81\x2c\xfd\xb4\x16\xb7\x2f\x58\x34\x6b\xc0\x6a\x37\xaa\x8a\x4a\x30\x1b\xa3\x80\x5a\x03\xc8\xb6\x19\xc0\x01\xc8\x76\xe8\xb8\x9a\x0d\x62\x0b\x0b\xc0\x84\x33\xf7\xbb\x0c\x82\xa3\x09\x96\xd3\xdc\x43\x8e\x11\x1f\x2c\xf5\x98\x8d\x69\x81\x32\x36\xbb\x7d\x44\xc7\x03\x0d\x3b\xf7\x30\x83\xc4\xed\x66\x08\x12\x77\x10\xa3\x13\xb3\xdb\x66\xc7\xbf\x2f\x26\x8f\x6f\xe3\xe6\xa1\x99\xdd\x96\xf1\x9d\xc1\xf2\x41\x9c\x83\xbe\xfd\xbd\xeb\x0f\x96\x0f\x92\x1a\xf8\xed\x32\x77\x5f\xe0\x02\xd0\x56\x35\x07\xed\x99\xde\xb7\x3d\x56\x63\xd8\x1e\x8a\x1b\xb0\xa6\x78\x0d\x9e\x0a\xc1\xf8\x31\x01\x69\xd8\xb3\x0d\xea\xf9\xb9\xaf\xc7\x7f\xff\x4b\xcd\xf6\x20\x71\x7f\x1f\xa5\xae\x44\x7e\x68\xc3\x13\x89\x7b\xee\x12\x26\xed\xb4\xe4\xbd\x11\xdb\xa2\xc9\x34\x44\x5d\x9e\xf3\x86\xe8\xdb\xb7\xe9\x62\xc7\x0d\x2b\x92\xfe\xd3\x19\x85\x33\x12\xef\x86\xe8\xf3\x3c\x1f\xf0\xb4\xb3\x0b\x4d\x23\xdf\xec\xc9\xb8\xf1\xbd\xf8\x9d\xef\x54\xb0\x7c\xe4\x9b\xf1\x4e\x35\x52\x69\x41\x87\x08\xb1\xb9\xe7\x11\xfe\x30\xb5\x9e\xcf\xa7\x1d\xcf\x66\x33\xd9\xb6\x3d\x21\x01\xda\x5d\x8f\xe2\x43\x9f\x5a\xb4\xec\x09\x00\x1e\xc2\xb9\xc6\x99\xc8\x5d\x1b\xd0\xee\xe5\xca\x21\x66\x64\x82\x69\x11\x93\x54\x5a\x37\x6d\xc0\xbc\x5b\xfc\x19\xd6\x1b\xf3\xdb\x9f\xa7\x1b\xfa\x84\xf5\x3e\xd8\xb9\xe6\xb7\x93\x4e\xf7\x70\x60\xbc\x9b\xdb\xf0\xbc\x84\x40\xe6\xf9\x6f\x07\x0c\x8d\x7e\x93\xe8\x8e\x49\x0e\x5b\x80\xf5\x1d\x9a\xc1\xe6\xc5\x4c\xb2\x57\xe5\x5e\x00\x27\x33\x26\x58\x0e\x69\x93\x36\x55\x2f\xd7\x37\xc1\xe4\xae\x55\x60\x1a\xb4\x92\x82\x01\x5e\x89\x73\x0e\x30\xc0\xcb\x24\x66\x33\xa6\x7b\x9d\x73\xf5\xb6\x04\xdb\xf0\x6d\x76\xdd\x13\xf6\xfc\x36\xbb\x49\xe2\x6f\x4c\xc2\xaa\xa7\xef\x02\xae\xe4\x34\xfc\x1d\x44\x34\xf0\xea\x0f\x23\xbf\xa2\x8a\xc8\x3a\xe3\xbb\xe6\xcf\x66\xa2\x0d\xcc\x1f\x20\x5f\x2e\x55\xf3\x56\x8b\x92\xf4\x27\x74\xb3\x0f\x09\x20\x40\x27\xfd\x8c\x2e\xf5\x85\x8b\xf3\x04\x15\xfa\xb6\xc0\x4c\x25\x09\x0c\xbb\x2a\x4c\x80\x92\x7f\x1f\xa5\xaa\xdf\x81\x2f\x8b\x42\x92\x24\xd6\x69\x30\xcd\x7c\x80\xac\xda\x6f\xf4\x4f\x32\x3a\xf9\xb0\x52\x85\x33\x74\x07\x99\x54\x1f\x22\xc6\xd9\x89\xf2\x00\xd1\xee\xa2\x7f\x0c\xae\xa3\x84\xd7\xa2\xdd\x32\xbe\x3d\x6f\xea\xa2\x07\xdf\xbc\x06\x8e\x01\xf0\xcd\xbf\x87\x28\x02\x82\x40\x5d\x09\x80\x9a\xb7\xe5\x28\xe0\x0e\x0e\xe7\xeb\xab\x5b\xd2\x97\x11\x25\x06\x07\x01\x6a\x5e\xb4\x46\x01\x6a\xfe\xfd\xf1\xfd\x00\xd5\xfc\xfb\xd1\xf9\x41\xf2\x50\x7a\xdd\xf9\xec\xe0\x1a\x08\xc5\xe1\x0b\xc2\x6b\xb1\xbc\xc5\x35\x27\x60\x3a\xc4\x35\x9f\xfa\x65\xc1\x35\x9f\x6a\xfb\x01\xe1\x03\xc9\xe2\x11\x58\xc2\x34\xbb\x86\xc0\x5b\xcc\x87\x20\xda\x5a\x33\x44\x10\x6d\xbd\x0f\x3b\x01\x75\xbd\x82\x45\x94\x72\xad\x3b\xa0\x94\x97\x6d\x47\x05\xa6\x5c\x20\x91\x00\xa6\xbc\xbb\x9b\x82\x40\x3e\x77\xbd\x39\x0a\x6e\x93\x27\x08\xe4\x35\x30\x1d\x02\x2e\x3e\x35\xfb\x44\x13\xe3\xd4\xfb\x20\xe0\x31\x45\xa3\x71\x9a\x62\xbb\x8a\xe6\x12\x60\x89\x86\x8c\xb8\x2c\xb2\xe0\x30\xb7\xcd\x96\x01\x2b\x84\xf1\x72\x40\x93\x77\x5d\x34\x21\x34\x03\xcb\x18\x64\xf2\xb2\xad\x96\x40\x93\x4f\x62\x38\x03\x38\xf2\x69\x58\x24\x80\xe2\x2b\xbd\x3f\xe8\x3d\x84\x46\xe0\x1f\xae\xfb\x1a\x67\xbf\x4d\x00\x21\x01\x04\x86\x08\xe0\x4e\x81\x05\x8a\x30\xdc\xa5\x79\x1f\xbd\x47\x93\x13\x10\xe0\x13\xd6\xb8\x08\xe2\xa5\xb5\x79\x04\x80\x83\x98\x80\xfe\x90\x71\x00\x87\x4f\xc2\xf2\x23\x08\x26\x34\xd2\x22\xa6\xae\x26\x7a\x4d\x87\x00\x82\x00\xc4\xee\xa9\x4b\x05\xc0\x6e\xb3\xb6\x02\xc0\xee\x09\xda\x6c\x00\xd8\x3d\x5d\xa6\x60\x74\x57\x70\x0b\x22\x72\x13\x45\x73\x7d\xf3\x0c\xdd\x94\x7e\x93\xb2\xc8\xbd\x24\x1f\x29\x02\x7b\xbe\xae\xaf\x80\x3a\x36\x8a\xf7\xf1\xc1\x3b\x97\xbe\xf3\x51\x6a\x84\x0c\xa0\xbe\x84\xa4\x0e\xb0\xb4\x47\xb5\x80\x13\x93\x27\xa2\x42\xc8\x6c\x21\xa9\x03\xc8\x6c\x59\x4f\x03\xc8\xec\x22\xd6\x73\x80\x99\xdd\xf5\xb8\x84\x80\x60\xce\x7b\x21\xb3\x3d\x3c\x80\x99\x2d\x25\x49\x00\x99\xbd\x0c\xfe\x10\x19\x7b\xcf\x50\xb0\x50\x27\xc7\x48\x91\xb1\x85\x7a\x0e\x91\xb1\xc3\x29\x0d\x02\xc1\x9e\xba\x17\x6a\x8a\xd3\xf5\xa2\x63\xd8\xb1\x03\xfa\xf6\xa9\x61\x25\xbe\x3d\x21\x0c\x1f\x0d\x38\x1f\xd2\x86\xe2\x13\x76\xbb\x8c\x9f\x7c\xa3\x14\x06\x7f\x9c\xdb\x77\x6c\x68\x1c\x46\xf0\x77\xb3\x19\x71\x1f\x3b\x99\xb6\xa4\x78\x40\x68\xe2\x94\x13\x8f\xb5\xc6\xa2\x0d\x40\x75\x37\xea\x24\x94\x9b\x80\x94\x46\x60\xdd\xf7\xfc\x13\x8f\x3d\x69\xc7\x48\xb2\x5a\x7c\xe3\xf4\x0f\xbf\x0b\x64\xe1\xbe\xc6\x06\xe4\x38\xe0\x02\x80\xb1\x2c\xe2\x93\xc0\xcb\x66\x92\xad\xe2\xf6\x08\xa2\x75\x6b\x4e\x2a\xf3\xfd\x31\x5c\x05\x06\x37\xc1\x38\x23\x5e\x62\x5c\x30\xab\x03\x75\xdd\x34\x2d\x0a\x75\x6d\x10\x26\x48\xd7\xd5\xc8\x0e\x91\xae\xf5\x2a\x24\x59\xfd\x6a\x69\x49\xb2\x8a\xe7\x51\x31\xab\xc9\x98\x0d\xb0\xa9\xa5\x9a\x0e\xb0\xa9\xab\x66\x35\x50\xa7\xa7\x4e\x08\x50\xa7\x1b\xf9\x26\x01\xe8\x74\x11\x7e\x33\x92\x2c\x96\x03\xdf\x46\x92\xcc\x28\xd8\x65\x00\x47\x6d\x3a\x79\x24\x81\x7d\xa2\x5d\x46\x42\x52\x6e\xfb\x53\xac\x1d\xfd\xe0\x59\xa4\x47\xe3\xd8\x91\x85\x65\xc8\xc1\x26\x2b\x52\x89\xa5\x91\x98\xeb\x44\xa3\x8c\xc4\x5d\xb1\x5b\xa7\x5c\xb6\x3c\x40\x75\x8c\x2f\x49\x8f\x0e\xc0\xc0\x85\x98\xd7\x71\xf8\x07\x0b\xd7\x7a\x20\xa3\x01\xe6\x8f\x6c\xe0\x9b\x33\x65\x52\xfe\x07\xf6\x1f\x70\xb1\x1b\x68\x65\x01\x2e\x76\x87\x06\x2d\xc0\xc2\x9e\x3a\xe5\xd2\x93\x80\x71\xbf\x80\x61\x57\x85\x9d\x60\xd8\xc2\x4f\x46\x4a\xbe\x8a\x5e\x03\xe8\xf5\xca\xf5\xa7\xf1\x0d\x44\xec\x22\x16\x60\xa4\x8c\x71\xe8\x18\x40\x62\x17\xb1\x13\x23\x15\xda\xfb\xd3\x54\xac\xf8\x90\x15\xeb\xfe\xc0\xca\xc6\x81\x53\x88\x6b\xb1\x23\x03\x88\xeb\x69\x80\x13\x10\xd7\x45\x18\xc6\x00\xe3\xba\xa5\x6f\x03\xb5\x03\xac\x51\x24\xc8\x39\x2e\x16\xe0\xab\x57\xf7\x79\xa0\x61\x55\x89\x81\xa6\x2e\xb3\x21\x15\xc1\xa6\x9e\x4a\x3f\xa0\xa9\xab\x61\x9a\x39\x49\x61\xb7\x00\x5c\x17\xc1\x42\x4b\xa8\x79\xea\x7e\x9e\x28\x5d\x07\x09\x64\x58\xc3\x86\x13\x44\x36\xe3\xaf\x12\xa7\x84\x5e\xa7\x4c\x47\x9e\xfd\x3c\x25\x08\xdf\xd7\xa4\x3e\x0e\x1f\xfa\xc4\xdd\xbe\x84\xb6\x81\x45\x9a\x12\xba\x59\x1f\xf5\xef\x66\x01\xe8\xdf\x6e\x15\x80\x57\xb7\xe8\x5e\x9b\x9c\x4c\x8b\x97\x2d\x5e\xbe\x4d\x8b\x9d\xe1\x80\xc1\x86\x2d\xc6\xb7\xa1\x1b\x0c\x50\xeb\xb2\xbb\x14\x88\x9b\xe9\x39\x23\xc1\x66\xd3\x25\x06\xda\xf5\xf7\x07\x5f\x3a\xad\x06\xc5\x91\x46\x3f\x8d\xe9\x4b\x48\x15\xb4\xf9\xa7\x3b\x84\x86\x7e\x40\xb1\x0b\xf9\xef\x91\xee\x10\x5a\xfd\xf3\x24\x82\xd0\x16\x21\xfc\x3d\x7f\x03\x84\x5d\x97\x95\xba\x64\xa0\xa7\xb8\x8b\xfd\xdc\x05\xc8\xa6\x30\xf6\x33\x22\xf2\x53\xbd\xcb\xf1\xf7\x19\xd6\x9c\xeb\x4f\x68\xb7\xe6\xf3\xac\x7d\x20\xdc\x22\xbf\xcd\x22\xeb\xfe\xd0\xcf\x3f\xac\x05\xaa\x2b\xa2\x79\xa3\x6b\x3b\x58\x18\xc8\xb4\x6b\x01\xae\x3d\xc9\x89\x0d\xc0\xb5\xab\x31\xe1\x60\x6b\x17\x00\x4c\x23\x7f\x92\x66\xd2\x2f\xc4\x52\xaa\xdd\x02\xa7\x5d\xd5\xd0\x41\xc3\x9e\x6a\xf4\xe9\x46\xc3\x39\x0e\xd0\xeb\xd5\x2d\x17\x78\xca\x3e\xbc\x0f\x31\x8d\x75\x40\xf0\x87\x8b\xfd\x01\x2d\x0d\xd5\x36\xf1\xfd\xea\xb3\x48\x35\xe9\xfd\x32\x8e\x17\xfd\xf4\xf9\x4a\xc8\xc1\xcb\x2f\xb6\xab\xe2\x35\xc3\xc1\x8c\x14\xf3\x7a\x82\x96\x10\x60\x5e\x57\x75\x36\x30\xaf\xa7\x5e\x4d\xe0\xac\x83\xcc\xda\xef\x2c\xcb\x7d\xaf\x81\x9d\x65\xe2\xad\xc2\xea\x67\xcd\x8a\x60\xed\x16\xba\x80\x28\x13\xc0\x2d\x16\x19\xe1\x6a\x4d\xab\x9e\x34\xc7\x87\x2e\x32\x5c\x7c\xc6\x23\x33\xcf\x10\x3d\xe9\x51\x5a\xc8\xeb\x60\x90\x17\xaa\xe9\x37\xc6\x7f\x88\xb7\xd5\x88\xfd\xdf\x1f\x20\xf6\x9f\x7e\x15\x27\x7b\x07\x36\x02\x94\xdd\x9a\x5d\xa0\x44\x35\xca\x71\xe1\x80\xd0\x3c\xb2\x3a\xa9\x3d\xf6\x0d\x18\x96\x1a\xac\x16\x74\x01\x13\xca\xcd\x58\xd0\x6c\x1e\x1c\x32\x16\x7c\x01\x9a\x75\x40\xd6\x9e\xda\x1f\x16\x5c\x37\x9a\x19\x44\xd6\x26\x03\x30\x40\xd6\x9e\x9a\x13\x40\xd6\x16\xf8\x25\x96\x31\xde\x68\x79\x20\x6b\x37\x2d\xaa\x02\x6b\xab\x9e\xaf\x89\x54\x1d\xd5\x3f\x88\xc0\x46\x43\x5a\x00\xfe\x2f\x47\x4e\x53\x89\xa7\x2c\x20\xb7\xe7\xb4\xcd\x93\x5a\xdb\x31\x24\xc6\x00\x6b\x14\x4b\x74\x12\xd0\xaf\x62\x11\x13\x09\x6c\x47\x00\xa0\x5d\x0c\xc0\x5c\x3a\x1d\xf6\xfd\x65\x74\x3d\x6d\x36\xae\x1b\x25\x1e\x04\xed\x9e\xb6\x99\x40\x48\xd5\x48\x70\xb2\xeb\x6e\x03\x39\x2f\x73\x7a\xdf\x77\x29\xf8\x13\xa5\xa9\x5d\x72\xa5\x91\xbf\x14\x8c\x7b\x17\x4c\x8a\x58\xcb\xe7\xb9\xc6\x59\xab\xa7\x4e\x38\x6c\x53\x36\x44\xbd\xf6\xc4\x2d\xa0\xb5\x2e\xea\xa5\xbd\x1e\x44\xd2\x58\x9f\x74\x5a\xc6\x9c\x2e\x33\xf3\xfc\x28\x71\xdc\xa2\x8d\xc6\x32\x8e\xdb\x59\x8c\x95\xbe\xf9\xa5\x4f\x0c\x75\x15\x0a\x20\xb0\x2b\x64\x3d\xb1\x48\x0f\x9f\x9a\x10\x17\x5c\x91\xc5\x66\xa2\xb3\x92\xff\x16\xe0\x64\x17\xc1\x2d\x03\xa0\xec\xae\x5f\x62\xed\x74\x14\x4a\xb8\xad\x86\x8d\x33\x1f\x05\x05\x6e\x61\xcc\x77\xcf\x58\xd8\x31\x3c\xec\x03\xac\x5d\x64\x0a\x0d\x90\xb5\x9b\x87\x3b\x90\xb5\x8b\xfc\x95\x01\xb4\xb6\xc8\x54\xb1\xb0\x5e\x28\xdd\xd6\xaf\x62\x5a\xe1\x05\x32\xbf\x75\x34\x2d\x6c\x11\xfa\xc4\x40\xd3\xee\x20\x01\xc6\x02\xc6\x7f\x21\xa1\xd6\xa3\x7d\x9b\x76\x62\x76\xdf\xf9\x28\x0b\xf7\x71\x71\xce\x3f\x84\x3b\xdb\x4b\x6a\xc5\xaa\x76\xeb\x31\xed\xc8\xaf\x9e\xfe\x41\xf5\x3e\xad\x78\x02\x56\x13\x8b\x48\xc9\x9d\x23\x22\x28\x37\x88\x6c\xb1\xc8\x5a\xd9\x79\x21\x0b\x3e\x98\xc3\xd1\xc2\x32\xa1\xf5\x62\x11\xef\xa8\x09\x76\xbd\x38\x79\x50\xbc\xd6\xeb\x57\xd9\x59\x80\xf1\xae\x5a\x54\x41\xeb\x6e\xc6\x3b\x00\xd6\x5d\x76\xc8\x3e\x68\xdd\x53\xd3\xe9\x79\xd8\x05\xbe\x30\xb9\x1e\x5c\x5f\x64\xb7\x7a\x6d\x09\xfb\xab\xa4\x3c\xd0\xaf\xe7\x27\x67\x1b\x40\x92\x71\x16\x8c\x68\xe3\x2f\x64\xf2\x38\xc9\x7b\x51\x87\x3e\x8b\x04\x80\x95\x6b\xcc\x7e\x08\xaf\x53\xc0\x49\x25\x96\x40\xe0\xc6\x73\x00\xf7\x1d\x83\xe3\xea\x59\xb1\x24\x71\x74\x03\xbc\x3b\x34\xaa\x9d\x8d\x49\xe7\x2a\x3a\x71\x1c\x83\xcb\x17\x27\xc1\x8a\x6a\x39\xa0\x7a\x7f\x0f\xf9\x07\x86\x41\x46\x0f\x58\xef\x32\x4d\xfc\x39\x31\x23\xb8\x51\x9f\x88\x63\xa7\x29\x78\xdf\xf5\xd8\x25\x38\x78\xe1\xdb\x80\x7d\x20\xa6\xce\x4e\xc6\xa2\x5d\xdb\x3d\xcc\x53\x57\x0c\xd7\x1e\xf2\xcf\x8e\xb0\xb0\x37\x3f\x7d\x34\x35\x1e\x9d\x9f\xda\x39\x8d\xc3\x3f\x3f\xa1\xdb\x76\x27\x4d\xc2\xf3\x6d\x0e\xa6\x67\x6d\xfb\x27\xf1\x2f\x06\xe6\x9d\x1a\x8c\x3d\x34\x9c\x04\x2b\xee\x82\x83\x90\x0a\x04\xed\x19\x46\xec\xf1\x21\xbc\xb5\xd3\x10\xfd\x53\xae\xc6\xf4\x21\x8e\xd3\xe1\x43\xc0\x40\x1d\x3e\x23\x5d\x3a\x05\x24\x06\x7d\x8e\x4a\x27\x90\x8b\x1e\xb9\x4e\x02\x66\xb6\xde\x7d\x82\xb9\x68\xc6\x19\xc8\xe1\xdd\xb8\xe8\x33\x77\xc9\xbe\xad\x81\x9e\xd2\xc0\x5c\xdc\x3a\xe2\x99\x38\x68\x1c\x91\x44\x1c\x39\x77\x75\xe9\x3a\x3a\x0b\xe0\xb2\xe1\x7d\x1c\x17\x0e\x88\x71\x83\xec\xd4\xc0\x8b\x17\xad\x48\xe7\x62\x35\xb1\xf3\x01\x35\x5e\xa0\xee\x89\x73\x71\xb2\x74\x22\xe1\xab\xdd\xda\xcc\xb9\xa4\xca\xe2\x5a\x5f\x2d\xcb\xef\xc4\xf7\xba\xa7\xc8\x49\x0b\xc2\x67\x6c\x81\x8b\xe6\xb4\x05\x94\x70\x3a\x54\x94\x70\x12\x8d\x99\xbe\x70\xf9\x82\x7f\xe0\x87\xc0\x9a\x70\x9e\x78\x37\x30\x39\x9c\x32\x1b\xa0\xb3\x81\x53\x1e\xaa\xb2\xe7\x05\xb5\xf5\xf0\x1a\x2a\x70\xbb\x0b\x63\xb3\x71\xce\xe7\x2d\x4b\x3d\xdf\x04\xb7\xa3\x3b\x38\xc8\xe2\x6d\x51\x3b\xb1\x3e\xcc\x7d\x0d\x7c\x2d\xe2\xf4\xd4\xd8\x6c\xd4\xef\x69\x8c\x90\xa3\x26\xb0\x93\xed\xff\xe1\xb7\xb2\x5f\x7e\xb8\x83\x9d\xcd\xc4\x9a\xc3\x13\x13\x80\x9c\x57\x33\x5f\x4f\xe2\x0c\x55\x04\xcf\x4f\x16\xd7\xb6\xaf\x51\xe5\x8d\xcb\x38\x61\xf4\x9d\xfb\x05\xa7\x08\xfd\x08\x34\x93\x2e\xe0\xf3\x13\xa6\xb5\x3a\x21\x15\xa6\x46\x28\x9c\x9a\x79\xd1\xc0\xcf\x17\x65\x8e\xbd\xf2\x7c\xb5\x07\xf1\x0c\x7c\xf5\x55\x99\x42\xc0\xb8\x59\x62\xa7\x86\x85\x50\xbc\x61\xa8\xfd\xd4\xc8\x3f\xc4\xdb\x75\x38\xa5\x39\xf5\x5c\x64\x6a\xd3\xee\xeb\x70\x3e\x20\xc6\xae\x23\x29\x66\x71\x6d\xcf\x2e\x7f\x50\x17\x7a\xf0\x3a\x70\xe4\x0d\x5f\x78\xb9\xff\xd5\xfd\x22\x62\x68\x82\x84\x1a\x57\x91\xca\xca\x6b\xa1\x97\x7d\x68\xf0\x42\xe5\x7a\x71\x4d\x01\x3a\x35\x61\x8b\x8a\xab\x88\x5e\x49\x09\x9f\xf8\x0d\x68\x7a\xe2\xda\x78\xbf\x4c\x76\x60\xdc\x03\xf0\xc2\x00\xa2\x3d\x5c\x35\x17\x0e\x4b\xb3\x62\x2f\xf0\x07\x01\x69\x8c\x4b\x6b\x30\xc0\x8c\x71\x61\x76\x30\xc4\xe3\xc2\x61\x39\x01\x8e\x8c\xab\xda\x50\xdf\xb8\xb8\xf6\x21\xe1\xd6\x7c\xe6\xe7\x0b\x3e\x64\xfd\xbe\x69\x70\x21\xed\x9d\x4f\x97\xd2\x1e\xd8\xc9\xb8\x70\x65\xc2\xa9\x14\x20\xc0\x07\x50\xb5\x71\x69\x27\xf6\x44\x00\x02\x7c\xd5\x53\x7f\x69\x27\x06\x5f\x27\xae\x26\x87\x8a\x45\x58\x36\xca\x27\xd8\xf0\xa1\x4c\xbc\x3a\xcd\x46\xa3\x01\x1b\x3e\xb4\xcb\x83\x0d\x1f\xa6\x08\x8a\x0d\x3f\x81\xcb\x89\x4b\xd8\x41\x24\xed\xd5\xed\xfd\xe6\x53\x98\x67\x9b\x7f\xdc\x7c\x95\x4e\xd6\x16\xc1\x06\x09\x80\x7c\x75\xbd\x5f\x43\x42\x38\x3e\x8a\x25\xc2\xa8\x9d\x0b\xb2\xad\x99\x7e\x68\x00\x0e\xbf\x7c\x88\xa9\x68\xb2\xd1\x45\x14\xa7\xf1\xb0\x97\xee\x4f\x30\x75\xe2\x1a\xf4\x93\x63\x37\xec\x27\xb4\x92\x6b\x30\x44\xe9\x67\xf1\xe0\x14\xcb\xbb\x7d\xc8\x1f\x2c\x18\xd6\x08\x48\xf6\xa1\xfd\xf0\x52\xc3\x4f\x56\x1e\x48\xf6\x51\x5d\x12\xf8\x3c\x81\xb3\x8c\x6b\xd2\xaf\x56\x16\x72\x4a\x8f\xbe\xa0\xd4\x87\x3b\xfe\x15\xf6\x37\x55\x0d\xa7\xd9\xf4\x07\x8c\xab\x28\xa3\xc0\xd7\x7f\x7f\x50\x6f\xb4\xfa\x66\x09\x61\x87\x4f\x9f\x62\x9e\xa1\x42\x5e\x20\x51\x19\x33\x74\x85\xd3\x1d\x95\xeb\x4a\x79\xac\xa8\xc7\xb7\x3d\x85\x31\x95\x40\xd0\xa7\x9b\x90\x10\xf4\x33\x1d\xec\x14\x56\x96\xeb\x75\xf0\x02\x0f\x2d\x51\xc6\xbc\x26\x07\xd8\x59\xbd\xf6\x5a\xa1\xae\xd8\x4e\x8c\x24\xbd\xbe\x6d\x28\x8c\xb6\xbc\x08\x19\xd2\x48\x09\x32\x7d\x49\x67\x19\x29\x4f\xc6\xd0\x5f\x32\x11\xa3\x68\x5f\x27\xd1\x60\x36\xed\xdb\x54\x42\x13\x3a\x88\xf5\xa1\xb5\xf6\x3a\xfd\x3e\x65\x7d\x7b\x4a\x2d\xe8\x29\xd7\x85\x08\x71\x01\xe1\xcd\x6c\xe5\xcf\x5c\xad\xeb\xb2\x70\xfa\x95\x0c\x28\xf0\xff\x03\x10\xfa\x30\xf4\xf4\x62\xc3\x01\xfa\x23\x00\xa1\x2f\xd3\xac\x3e\x50\xe8\xbb\x19\xcb\xd7\x6d\x56\x1f\x5d\x43\x3a\xd4\x34\x29\xe9\x82\xe2\x18\x0c\xb1\xb8\x3c\x16\x2c\x05\xd2\xb7\xe3\x2c\xd5\x1b\x70\xeb\xc3\xe0\xd3\xeb\x67\xd1\x54\x09\x3f\xe6\xd4\x2b\x07\x3c\x7d\x35\x8f\x47\x84\x79\x1d\x60\x20\xcc\x47\xdb\xcf\xd0\xe1\x8e\xe2\xa6\x73\xa4\x80\x07\x3f\xbe\xd3\xf2\x53\xf2\xb3\xb3\xfb\x00\x3c\x1f\x9a\x72\x2f\xfc\x8a\xe6\xee\x5d\x92\x7b\xf9\x9d\xd7\x4a\xa0\x02\x80\x42\xbf\x20\xae\x8a\x0b\x43\x87\xae\xf5\x8b\xf8\x99\xe6\x34\xd6\x4d\xa8\x06\x0e\xf2\x7c\x68\x06\xbe\xde\x7d\x76\xfc\x3e\x7b\x7f\x7a\xfd\x82\x0d\x35\x40\x9b\x2f\x66\x93\xde\x04\xc7\x68\x12\x06\x6d\x3e\x34\x28\x03\x28\x9f\xf0\x71\x86\x80\xf2\x5b\x07\x04\x50\x3e\x54\xe3\xc0\x81\x0f\x71\x10\x6e\xe2\x5b\xb4\x27\x03\xfd\x1e\x9a\x8d\x85\x7e\x9f\x8b\x35\x00\xf4\x7b\x1a\x2b\x08\xf4\xfb\xf7\x07\xc5\x55\x1b\x9a\x5c\xfb\x55\x1f\xd2\xf5\x4f\x69\xd5\xde\xf3\x19\x87\x93\x12\x90\xd9\xc6\xa5\xdd\x92\x73\x1c\x5e\x73\xfe\xb5\x39\xa8\xd8\x9e\xc7\x00\x5a\x0f\x78\x74\x02\xa0\xf5\x50\xbb\xbb\xf5\xe6\xc1\xcf\x12\x77\x6f\x80\x7f\xd0\x5f\xc8\x59\x37\x8b\xbb\xa3\xc4\xb3\x8b\x80\x83\xbe\xb4\x5e\x83\x77\xbe\xb4\x0b\x83\x77\x9e\x70\x87\x06\x18\xe7\x4b\xa3\xc0\x4d\x80\x06\xd0\x7a\x01\xde\xf9\xd2\x9a\x7e\x4f\xe2\x18\xb4\x4d\xdc\x04\x68\xd4\xfd\xd0\xcf\x3f\x7c\x9b\xe6\x20\x34\x01\x42\x5f\x80\xba\x05\x40\xe8\xd5\x40\x51\x70\xd0\xbb\x8a\xfb\x1d\xe8\x58\x76\x11\x11\x1a\x9a\x57\x80\x3e\xef\x9a\x69\x04\x23\x57\x71\xbb\x17\x5d\xc1\xe6\x7f\xe3\x68\x83\x9e\x38\x6e\x30\x4e\x0d\x50\xba\x11\x43\x3b\x42\xe7\x56\x33\x66\x06\xdf\x0b\x07\x6e\xf3\x43\x16\x46\x01\x8a\x24\x54\x93\x7b\x31\x37\xed\x8a\x25\xa6\x1d\xd7\x8a\x27\xe4\x22\xf0\xe3\x65\x07\xdc\x80\x3f\xde\x0d\x9d\x06\x7f\xbc\x1b\x3f\x29\x9c\xf8\xdc\xcf\xc8\x00\xcf\xf5\x25\xe5\x22\x05\x5f\x7e\x94\xd6\x7f\x3a\x6f\x55\x57\x03\x00\xbc\x18\x6a\x0d\x9e\x77\x85\x5e\x27\x6e\x45\x90\xbd\x78\x23\xc1\x51\x08\x6e\x6d\x0e\x47\xfe\x69\x85\xbb\x3f\x99\x14\xfb\xcb\xb7\x7c\xef\xd4\x04\x25\x38\x8e\xfd\x43\x24\x74\x3a\xf9\x76\xd8\x2d\x87\xf0\x08\x35\x65\x60\xbd\x9b\x69\x4e\xc0\x7a\x47\x43\x8b\xb8\x89\x1c\x0c\xbd\x4d\xf7\x4f\x2a\x74\x5f\x06\x43\xdc\x1e\x84\x27\xc8\x13\x14\xd8\xdf\x21\x22\x0d\xd8\xdf\x72\x9b\x04\xd0\xdf\x75\x0f\xb5\xb1\x0e\xae\xaa\xc7\x6a\xf3\xee\x63\x98\x29\x65\xbd\x1c\x4a\x5d\x0c\x70\xb9\x87\x19\x63\x20\x73\x2f\x9d\x1e\x00\x73\x7f\x7f\x30\x1f\x48\x77\x77\x7b\x10\x98\x7b\x87\xda\x82\xcc\xbd\x74\xb2\xdc\x78\xea\xc2\xbc\xbe\xfb\xa5\xec\xe5\xdb\xdf\x42\x01\xa5\x3a\x40\xec\x2e\x3b\x88\x46\xc8\xee\x74\x6a\x91\x0d\x64\x68\x85\xd0\xdc\xe1\x6e\x02\x34\x77\x6a\xac\x03\x99\xfb\xfb\x63\xf2\xa3\xf2\x59\x1f\xb2\xb6\xf4\x13\x98\xdd\xe9\x12\xfa\x1d\x10\xea\xd1\xbc\x1f\x9a\xb8\x81\x33\x3f\x30\x93\x3c\x9a\xfc\x0e\x52\xa1\x0f\x9f\x27\x1f\x0e\x11\x0d\xae\xf7\xf7\x51\x5f\x36\x76\x9a\x17\x8a\x39\x7a\x54\xa9\x7c\xa2\x4e\xd7\xf3\xaf\x70\xba\x62\x19\xfc\x3e\xe5\x7b\x29\x35\x7e\xc5\x6c\x79\x04\x3c\xe0\xdf\xd9\x99\xd6\x82\x7f\x87\x78\x01\x80\x7f\xa7\x7b\x3c\xe0\xdf\xe9\xd1\x1c\xf0\xef\x10\x19\xe9\x57\x6e\x9a\xc0\x7d\x30\x4f\xb5\x74\xfe\x08\x35\xd4\x2a\xf7\x83\x84\xc3\x75\x03\x0e\x78\xdd\x7d\x54\x81\x60\x64\xdb\xfb\x11\x70\x31\x6c\x66\x3b\x48\x9b\xe6\x19\x8c\xd7\x62\xaa\x80\x03\xbe\x74\x8b\x83\x03\x9e\x86\xd8\x03\xf7\x9d\x66\x7c\x03\xf7\xbd\x34\x8c\x82\xf6\x5d\xc2\x38\x16\xe0\xbe\x17\xdc\xce\xf1\x23\xf3\x48\x17\xf9\x0f\x83\x88\x1b\x11\x70\xdf\xdf\x0b\x3c\x44\xec\x9f\xd9\x1a\xc0\x7d\x7f\x7f\xf8\x14\x48\x65\x6c\x94\xc0\x7d\x7f\x7f\xf8\x29\x34\x6f\x36\x16\x90\xb9\x97\x00\x23\x80\x6f\x97\x28\x96\x3d\xd4\x4b\xf8\x12\xa0\x4c\x5a\xd2\x80\xc6\x4e\xe7\xea\x0f\xc2\x25\x75\xc2\x1f\x06\x15\x7d\xfb\xa0\x61\x87\x00\x19\xbf\xe9\xe4\xb6\xd5\x33\x99\x3c\xfe\x01\xa4\x11\x8b\xf2\x67\xa4\x5d\x78\x0d\x72\x42\xf5\x9a\x39\x82\x54\xfb\x05\x27\x50\x5b\xf0\xa9\xaf\xe1\xf6\x06\x4c\x76\x09\x13\xd7\xc0\xc9\x4e\x9d\x4c\xbf\x04\x4c\x8c\x3d\xed\x27\x79\xa3\xc9\x52\xbf\xf4\xab\x74\x77\x32\xb5\xa7\xf7\xad\xea\x9f\x20\x70\x01\x8a\xf6\x32\xfc\x00\x14\xed\x34\xf7\xef\x97\xc0\xb5\xb2\x16\x7f\x8b\x9d\x93\xed\x18\x1c\xec\x34\xd9\x1e\x18\xec\x12\x22\x7c\x81\x83\xbd\x4c\xd9\xf8\x99\x91\x6f\xc3\x49\x48\xf2\x28\x0b\x92\x75\xe8\xb3\x03\x99\x3a\x0d\x7a\xfc\x81\x42\x02\x29\x73\xfc\x4e\x00\x30\x1c\xeb\x6f\x2b\x08\x8d\x4d\x20\x56\x97\x10\xbb\xe6\x87\xbd\xdb\xa3\xe2\x0f\x7b\xb7\x61\x7b\x40\x59\xa7\x16\xeb\x1f\x76\x11\x23\xb8\x7e\x17\x13\x08\x71\x07\xac\x75\x7a\xc2\xfd\x5d\x88\x25\x47\xeb\x62\x1e\xb3\x77\xfc\x20\x5a\x82\xaa\x21\x7e\x98\xc1\xc3\x8c\xa2\xdf\xf5\x63\x79\x7b\xed\x84\xa3\x05\x17\xf8\x98\x2e\xa0\x4f\xdf\x5d\x9e\xea\xc1\xbe\x5e\x1e\xd8\x7f\x98\x4b\x20\xf3\x0f\x70\xb0\x97\x1b\x18\xd8\xd7\xe9\x91\xf1\xf7\x73\xee\x51\x30\x81\x77\x01\x95\x7d\xfc\x7e\x7e\x94\x96\xfd\xfc\xa8\x2f\x83\x1b\x69\xf7\xfe\x6c\x8d\x1f\xd2\xa2\xe8\x35\x7e\x30\x27\xf7\xcf\x6e\xf4\x8f\x6f\xd7\x08\xdd\x7a\x60\x62\x2f\xcf\xcc\xbf\x47\x82\x50\x17\x1f\xb1\x76\xa6\xb3\x80\x89\xbd\x3c\x71\xff\x00\x26\x8d\x2d\xde\xd8\x67\x8c\x09\xfb\xa1\x1f\x1b\x2f\x0d\x40\x76\xaa\x8c\xfe\x08\xf5\x18\x1c\xe7\x7e\x58\xb4\x03\xac\xda\x00\x20\x7b\x69\x42\x00\x20\x7b\x69\xa4\x10\x1f\x3b\xb6\x04\x61\xff\xa9\x68\xa0\x3f\xf7\x9f\x2d\x42\x5e\xeb\x44\x71\x6e\x33\x61\x11\x6c\x33\x5b\x20\xbc\xd8\x3f\x99\x55\xcf\xf1\x4d\x79\x3d\x33\xcf\xc1\x0b\x6c\xc6\x00\x61\x2f\x8f\x98\x00\x61\x2f\x2d\x1c\x20\x57\x2f\xab\x0a\x72\xf5\xf2\x80\xfe\x28\x94\x69\xf3\x53\x9c\x24\x7e\xa8\x20\x64\x98\x61\x0f\x4a\xb4\xa7\xe7\x07\xdc\x3b\x8f\xd8\x00\x51\xa7\x01\x68\x0f\xb1\xdd\x5a\x78\xc0\x95\x0e\x43\x66\xc0\x95\x2e\xfb\xa4\x0a\xb0\xf4\xd2\xe0\x00\xb0\x74\xaa\xcc\x3d\x0d\x00\x45\x6b\xad\xb8\xf6\xf9\x66\xe7\xb1\xfd\x82\x2b\xbd\x3c\xa8\x3e\x8d\x5d\x89\xd3\xf6\xd3\xdc\xbb\x29\xb9\xa1\x36\x30\x93\xc0\x9e\x2e\xfb\x04\x0b\xf8\xf4\xf2\x3c\x0f\xf6\xf4\xf7\x87\xc5\x7d\x75\xd5\x25\xf8\xc8\x81\x6e\x8c\xce\x83\xce\xae\x2f\x6b\x23\x54\xb3\xce\x1f\x23\xbd\xd1\xfd\x9f\x6e\x35\x28\xba\x33\x84\x18\x06\x9e\xae\x40\xa4\x1a\x80\x49\xed\xc2\x30\x6f\x84\x71\x36\x0f\xf8\xa5\xd9\xcb\x5f\xe2\x0d\x8c\xeb\x14\x12\xe5\x19\x64\x25\xda\xa6\x21\x35\x2c\xa5\x80\x40\xa5\x49\xe9\xc1\x80\x2e\x34\xc8\x43\x02\xa9\x29\x0d\x8f\xf6\x73\x56\xc7\x33\x6d\x6a\xf3\x07\xeb\x0c\x49\x04\xdc\xf5\xda\x5d\x30\xcd\x99\xe4\x99\x38\xb8\xe6\x99\x40\x96\xa2\x39\x3d\x88\x78\x3d\xec\x4f\x80\xe0\xeb\x1c\x08\x87\x9a\x82\xc3\x6f\x72\x4d\xcc\xb5\x26\xd0\x47\xb9\xed\xe8\x6e\x14\xec\xe1\x43\xcc\x62\x36\x97\xc7\x70\x6a\x91\x04\x9e\x34\x4e\x9c\xce\x4c\xc3\xda\xbc\x7e\x7c\x88\xaa\x26\x31\xed\x8e\x1c\x62\x5f\xe7\xdc\xb3\x98\x40\xfb\x7a\xf8\x02\x65\x83\xae\x6d\x4e\xbd\xe8\xda\xa1\x47\xfa\x91\xbf\x9c\xd3\xe3\xb3\x2e\xc6\xd4\x87\x80\x47\x72\xbe\x92\xb5\xaf\xd7\xf6\x39\x0f\x0c\xc2\xcc\x01\x02\x3d\x8c\xd4\x04\x68\xbb\x2c\x6b\x47\x9c\x47\x71\x3e\x9c\xe0\x6c\x39\xd7\x09\xf3\x28\x76\xfc\xb7\xc7\x74\x0d\xc8\xe0\x6f\x57\xc3\xb1\xc0\xdf\xae\x2a\x9d\xcf\xb7\xf7\x34\x55\xa2\x87\x68\x3f\x93\xec\x1e\xc8\x83\x85\x92\x7a\x4e\xbb\x65\xfa\x43\x1a\x6a\x0a\x23\x0c\xb0\xd8\x30\x6c\x26\xda\x6a\xc0\xeb\x2e\x61\xc7\x73\x3e\x31\x42\x14\xb8\xee\xef\x43\xbe\x20\x5f\xb9\xd7\x92\x2e\xf9\xb2\xee\x78\x6a\x07\x3a\xe0\x5e\xdd\x97\xf8\xf3\xf4\x0a\xe8\x80\x62\x92\x80\xd6\x5d\xb5\xa9\x3c\x17\x89\x88\x87\xcf\xbc\x44\x21\xf3\xfd\x9b\xf4\x64\x2b\x21\x4f\x83\xad\x84\xd0\xc8\x53\x1e\x60\xdd\x0d\xdc\xfb\x78\x4c\xa6\xaa\xbe\x4b\x1d\x50\x0b\x1e\x01\x08\xd0\x93\x1e\x4e\x3b\xc7\xfe\xbe\x2e\x40\xbf\xf3\xc0\x58\xe8\xf3\x98\xf6\xd9\xaa\x80\xed\x9e\x46\x22\x8a\xda\xed\xbe\x00\x6a\x77\x53\x80\x03\xda\x5d\xdd\x5f\x01\xed\x9e\x6a\xfd\x80\x76\xb7\x6a\x7b\x77\x78\xb9\x95\xfe\x01\x39\x60\x25\xe4\x6f\x77\x21\x6b\xd4\x09\x9f\x01\x7a\xcd\x21\xfe\x91\x5e\x5e\x2c\x8c\x83\x95\x53\xe5\x47\x78\xdf\x7e\x97\x93\xa3\xeb\xec\x07\x01\xbe\xc2\x9f\xf4\xac\x66\x25\x08\x9f\xdc\x8d\x7f\x1c\x55\x25\x0b\xbe\x89\xe1\xd0\x3f\x1e\xf5\xa8\xc4\x43\x5c\x96\x3d\x07\xb6\xa1\x51\xf4\x8f\xd8\x86\x0a\xce\x87\x8a\xba\x80\xf0\x12\x97\xfa\xb7\x58\x7b\x14\x41\x2e\xe6\xe7\xc7\x17\xf8\x1a\xfb\xea\x1e\x13\xc3\x29\xd9\x56\xc1\xfb\x6e\xe1\xf3\x90\xcd\x0b\xa6\xf5\x10\x66\x69\x50\x3d\x38\xe0\x45\x8f\x33\x38\xe0\x65\x8b\xb2\x57\xf1\x12\xfe\x00\x1f\xd4\x89\x21\xad\xd2\x2e\x8c\x49\xa8\x2c\x7b\x65\xd9\xfb\x2a\x04\x58\x78\xd7\xf3\xf4\x7e\x87\xb2\x2a\x66\xe6\x0b\x8e\x03\x34\x76\x01\x56\x78\x15\xe4\x09\xac\xf0\xaa\x97\xeb\x3d\xdc\x6c\xd8\x92\x5e\xc2\xd7\xcd\x0b\x78\xcd\xa2\x1e\x7e\x88\x2c\x51\x76\xf3\x17\x97\xc8\x36\x54\x80\x2e\x5e\x8c\xd8\x02\x5d\xbc\xc0\xe2\x17\xa0\x8b\x57\x3d\xbe\x2f\xa7\x32\x38\xbf\xe2\x2d\xcc\x2a\x6b\x57\x88\x68\xec\x7e\x87\xe9\xcf\x4e\x0d\x1a\x79\x31\xa0\xee\x15\x35\x62\x3f\x03\xa4\x03\x33\xe9\x2d\x22\x46\x7a\xad\x10\xb1\x2b\x08\xe2\x54\xa3\x7f\x75\x66\x17\xaf\x49\xe6\x40\xa7\x04\xa5\xbc\xc1\xc8\x15\xa0\x8e\x37\xad\x60\x2f\xc4\x10\x95\xf1\x78\x89\x8e\x37\x14\x03\x3c\xf1\xa8\xfb\x5a\xf1\x6b\xdf\xb9\x83\x77\xaf\xf7\x00\xd2\x4c\x62\x90\xd4\xd9\xdf\x8e\x81\x9d\xe3\xc3\xeb\x81\x4b\x1b\x09\x20\xe2\xcb\xe0\x42\x30\xc4\x4b\xb4\xe5\x1b\x0f\xfb\xa0\xd7\xfa\xc2\xd8\xa7\x5e\xe0\x71\xf5\x72\x83\x34\xde\x8c\xf1\x07\x69\xbc\x1b\x04\xfe\x0e\xc9\x65\xbc\x76\x41\xef\x1f\x60\xc5\xec\x0f\x99\x25\x4d\x35\x86\x15\x77\x7c\x86\x09\x50\x74\xc7\x20\x1e\x96\xcd\xe2\x05\x57\x6d\x9f\x12\xde\x49\x88\x20\xfb\x37\xd8\xe4\xda\xfe\x5e\xc3\xe1\x99\xf2\xef\xc4\x23\xe9\x5c\x98\xe0\xe2\xb1\xd2\x5f\xd1\x20\xed\x31\xe0\x74\x43\x3c\x38\x10\xc8\x03\x14\xf0\x00\x81\x7c\x42\xfb\x18\x00\x90\x37\x93\xe4\x04\x20\x0f\xfd\xc2\x00\x90\x4f\x37\x51\x00\xc8\xc3\x98\xc5\xd7\xf3\x5d\x77\xd4\xcd\x74\xb6\x7a\xc0\x4d\xec\xc5\x90\x96\xc0\x57\x13\x8c\x1f\x3f\xc4\xf1\xae\x23\x31\x5f\x8f\x77\x02\xc8\x82\x27\xbe\xf4\xde\xbd\x6a\x02\xdd\x55\x02\xfa\xa4\x16\x87\x57\x4d\x00\x5e\xe3\x00\x69\xbc\x41\x9c\x1e\x20\x8d\x7f\x7f\xf8\xfa\x43\x52\x09\x0f\xe1\xb7\xd0\x1b\xfc\x92\xc5\xac\xaf\xfa\xd5\xfe\x87\x00\x78\x17\x07\x5f\x94\x99\x77\x61\x21\x66\xbb\x04\x8e\xbc\x44\x77\x2d\x41\x7e\xa4\xcd\x1e\xc8\xf1\x56\xff\x16\x70\xef\xb7\xa3\x2f\xe3\x97\xdf\xd3\x20\x21\x57\xda\x89\xf5\xcc\xf9\x74\xda\x9f\xae\x28\xfc\xe9\xc6\x80\x02\x4e\x5e\x42\x8f\xf2\xab\xdd\xd0\xf5\xce\xd6\x6a\x1a\x02\x88\xe4\x65\x4f\xb4\x0b\xec\x75\xe7\xd9\xb7\xb5\x76\xf7\xf4\x97\x48\xa7\x10\xa5\xed\x25\x3a\x5f\x7b\x1b\x10\xe6\xdf\xf2\xf2\x87\xf4\x4e\x74\x34\x0e\x0e\xcf\x01\xef\x4d\xca\xaa\x5d\xa5\x69\x50\x8c\xc0\xf7\x26\xbe\xb7\xf8\x82\x03\x60\xfd\x6e\x0c\xaa\x4e\x2f\x8f\x82\xca\x1a\x8f\x82\xba\xd4\x5f\x88\x2d\x96\x2d\xfd\x61\xd8\x74\x16\x41\x8f\xb4\xe5\xcb\xa6\x3e\xe2\x43\xa4\x54\xb9\x0f\x00\x6f\x1e\xcd\x99\xf6\xf8\xae\xf7\xb1\xd0\x73\x28\x78\xbf\xdd\xe9\xdf\xca\x7c\xac\x10\x1d\xf3\xb8\x28\xac\x1d\x1b\x4d\xfa\x07\xe7\x37\x76\xc2\xf7\x55\x09\xb2\x42\xdf\x06\x14\xc6\xf3\xbf\x40\xb3\x75\xf6\xce\xd7\x93\x59\xdf\x7f\x98\xa2\xe3\xdb\xf6\x4b\xfd\x7f\xff\x3f\x0f\x36\x0e\x0c\x43\x79\x10\xe0\x49\x2c\x66\x1e\xc0\xb4\x05\x76\xab\x3c\x0e\xa2\x05\x3e\xc1\x96\x07\xd9\x51\xa0\x52\x24\x30\xe9\x1d\x5b\x55\x1e\xb2\xf2\x56\x3f\x04\x44\x40\xf5\xf9\x5b\xa8\x05\xae\xc5\x9d\xe4\x79\x88\x8a\x88\x9f\x4b\x80\xd1\xbf\xc2\x16\x3f\xcc\xfd\x1b\x5c\x33\x20\xe0\xe9\xe5\x51\xcc\xfd\xa3\x04\xa2\xfe\x89\x3a\xc8\x03\x67\x0a\x7a\x47\x1e\x84\x3b\xad\xfd\x32\xbb\xcb\xf4\xdd\xc5\xc1\x94\x4b\xb3\x36\xf2\xbb\xc6\xdb\x8e\xad\x20\x8f\x6a\x25\xfc\x3e\x49\xc4\xa8\x11\x09\x2e\x7a\x10\x8a\x94\xc7\xb7\x71\x68\x45\xcc\xa3\x9e\xe0\x43\xf8\xbc\x19\x95\xfb\x4b\x88\xf5\xfd\xc7\x4f\x0f\x98\x5f\x32\x3d\x90\x2f\xe1\x55\x2f\xf6\x57\xb3\xb3\x2b\x9d\xda\x36\xcc\x03\xd7\x4a\x07\xcb\x23\x43\x98\x44\xbb\x3c\x1a\x88\x3a\x9d\xe2\xbe\x0d\x69\x70\xac\xcb\x83\xcc\xe1\x5d\x0d\xac\x84\x58\x11\xf2\xf0\xdc\x38\x1c\x12\xbc\xed\x48\xdd\x04\xab\xfd\xfb\xc3\xaf\x32\xf5\x92\x87\xbe\x4d\xab\x02\xdc\x91\x80\xb8\x07\x92\x2c\x0f\x6c\x81\x68\x20\x79\x74\xe2\x9e\xc3\x67\x08\xac\xf7\x3b\xdf\xbe\xd6\x77\x61\x64\x0b\x93\xef\x98\xc7\xa0\x57\x1b\xa3\xe6\x41\x13\xfd\x3b\x0f\xa0\x36\xc8\x5a\x49\x80\xde\xbf\x3f\x7c\x63\x72\x50\xe4\xab\xf8\xd1\x03\xda\xd1\x04\x02\xbe\x1d\xed\x2f\x11\x97\x87\x9b\x1b\x18\x6c\x79\x48\xec\x57\xe8\x4e\xce\xa6\x38\xfe\xf3\x00\xc7\xb8\x34\x9e\x21\xa0\x8b\x94\x8b\x04\xef\x3d\xab\xd3\x89\xfd\x29\xad\x2f\xee\x73\x82\x1a\xf2\x08\xc9\x5f\x7c\x06\x90\x24\xa7\x4a\x6c\xc9\x4e\x01\x31\x18\x79\xda\x81\x5d\xb2\x39\x76\xb0\xc2\xa7\x4d\x72\xdf\x1a\x96\x0c\x7f\x1f\x46\xc2\x04\x20\x3e\x21\xeb\x4c\xf0\xe1\x93\x73\x67\x82\x0f\x3f\x67\x32\x85\xc4\x87\xb7\x16\xc4\x7f\xed\x0e\x24\xfe\xab\x38\x39\xd8\xe7\x86\xad\xfc\xf6\xb9\xb6\x17\x56\x8a\xee\xec\xfd\x5d\x09\x0a\x80\xef\xaf\xda\x02\x40\x95\x62\xd7\x22\x75\x91\x59\x32\x78\xd5\xbe\x40\xa2\x02\x51\x42\x09\x88\x7c\xc3\x6e\x93\x87\x47\xd6\x11\x3e\xc4\xa1\x47\x69\x22\x88\x07\x3c\x25\x79\x2c\x51\x60\x69\xff\x52\x90\xfb\xd0\xcd\x57\xbd\xaf\x9a\xe4\x7d\xe7\xae\xf2\x84\x43\xee\x70\x52\xb3\x31\x56\xe7\x9f\xfe\x7c\xd7\x19\x6c\x52\x58\x8a\xf3\xd0\x61\x36\x5c\x1e\x66\x33\xec\x6b\x13\x8a\xa8\x11\x8e\x7e\xb4\xde\x3c\x74\x9e\xed\x8f\x5e\x14\xe6\x7d\x97\x96\x5d\xcf\xd1\x76\xaf\x3f\x78\x3c\x14\x70\x60\xda\x23\xeb\x53\x4c\xfb\x18\x0e\x1b\x98\xf6\x43\xd9\x05\x41\x60\xb3\x76\xd7\xae\x9d\x7f\x7c\x22\x77\x8b\x10\xb0\xef\x48\x21\x4b\x71\xec\xa7\x33\xfb\x52\x00\x2d\xdf\xb6\xc3\x28\xfa\xb2\x46\x96\x66\xb0\x38\x35\x85\x87\x77\x28\xa4\x08\x28\xee\x4e\x3c\x76\xd9\xa5\x8c\x92\xd7\xde\x26\x13\x4f\x1c\xca\xfd\xdb\x0a\xd1\xfc\xdb\xe5\xaa\xbc\x92\x94\xca\xe6\x10\x43\x0c\x0e\x41\x1e\xe4\x48\x0f\x85\xc6\x4d\xc6\x4b\x50\x30\x1c\x84\xcb\x59\xce\x71\x73\x28\x28\x74\xd8\x4d\x27\x18\x19\x12\x43\xe9\xf3\x43\xe6\xee\x97\x19\x04\x47\xf6\x3b\x6f\xb6\x66\x77\xfd\x2c\x8c\x0a\x7d\xe7\xcd\x72\x58\x30\x81\x06\xcb\x09\x0c\x1d\x61\x58\x51\x36\xe8\xe2\xcc\x21\x2b\x2f\xe6\xfe\x41\x01\xae\x72\x52\x2d\x0e\xe7\xe6\x63\x01\xbe\xfc\xf8\x82\x7f\x10\xb5\xe8\xe0\x00\xbc\x5a\xec\x6b\xb2\x9c\x71\xda\xe6\x41\x6e\xc6\x16\x7b\x5a\x5e\x6d\x3e\xa9\x19\x78\x02\xf2\xd0\xf0\x3a\xff\xcc\x60\xc8\xe3\x15\x99\xde\x2f\x84\x6f\x51\xdf\xef\x64\xd9\x0f\xc5\xb7\x27\xcb\xa9\x18\xfb\xb4\x82\xe5\x50\xa3\x13\xc4\x74\x6e\xc0\x5b\xb8\x85\x06\x71\xcd\x80\xec\x66\x39\x5c\x33\x8d\xeb\x4f\x80\x10\x90\x9f\x05\x34\xed\xb6\x9f\x21\x4b\x9a\xde\x04\xb1\xbf\xc2\xc2\x92\xe5\xc0\x75\x4a\xed\x40\xef\x6f\xf8\xff\xb3\xc8\xa1\x1f\x5e\xdb\x1f\x7c\xbf\xc8\xcd\x7a\x70\x8d\x47\x3e\xbc\x6f\x7f\x54\x3f\x44\x68\xd5\xa7\xa6\xa6\xa8\xfe\xe1\xae\x23\xaa\x3f\xe6\x81\x14\xd5\x3f\xc0\xb1\x4d\x60\xfd\x2b\x20\x3d\x59\xbe\xe3\xe4\xe2\x6c\x90\x85\x18\x68\x8e\x22\x59\xaa\xcd\xa7\x04\x39\x04\xe9\x3b\x20\xfe\x4b\x4c\xff\x80\x7a\x0a\x75\x39\x8b\xf4\xf5\x48\x71\xf0\xfe\xe7\xe8\x7c\xd4\xe3\x21\x99\x1d\x59\x1a\xa8\xb9\x83\x12\x70\xe6\xc1\x5d\x9c\x85\x9c\x12\x90\x8f\xb2\x74\x2c\x19\x83\x8f\x76\x5f\x9e\x14\x0d\x90\x15\xa9\x61\x09\x73\xc0\xf7\x87\x4f\x11\x1c\x3c\x7c\x9b\xd8\xf4\x7d\x4d\x1b\x2c\xd9\xe3\xa4\xba\x06\xcc\x01\xa9\xce\x56\x3c\x4e\xaa\x9d\x14\x8e\x93\xc4\x9e\x64\x21\xf7\x8e\x40\x9f\x84\x5e\xe0\x7b\x88\x56\x93\x9e\x42\x44\x74\x96\x01\x14\xa2\xfd\x4d\x4e\x5e\xd8\xdf\x83\x63\x13\x82\xbf\x90\x7a\x02\x9f\x4f\x16\x22\xa8\x15\x08\xc5\x6c\x13\x67\xc3\x74\x0f\xa4\x6d\x24\x9b\xb8\xed\x41\x2e\xf0\xad\x08\x3e\x3a\x59\xf8\x4e\x37\x76\xe5\x98\xce\x37\x10\xb2\xd2\x2e\xd3\x4c\x8c\xb9\x36\xe1\x1d\x98\x6e\xb9\xc5\x2c\xbe\xf4\x21\x1b\xed\xec\x0b\x56\x26\xf2\xa1\x70\xd0\xdc\x03\xc4\x79\x12\x5a\xd9\x84\x8f\x20\x88\x12\x4d\xf9\x08\xf0\xbc\x27\x74\x04\x8d\xb8\xaa\x2c\xc4\x89\x40\x63\x96\x85\x00\xb7\x3d\xdd\xa0\x5a\x24\xba\x25\xcb\xb7\x2d\x17\x50\x70\xb2\x64\xb1\x12\x74\x40\x32\x7d\x1c\x05\xa0\x39\x86\x43\xe5\xd1\x92\x43\x7a\x42\x6c\x50\x8a\xf3\x2a\x25\xb6\xe4\x7a\x39\x29\x9d\xd1\xe4\x79\x0f\x87\x8a\x84\xc0\xe2\xbc\x72\x6b\xdd\xf5\x00\x80\x83\xfc\x87\x2c\xf2\xed\x1e\xbe\x7c\x93\x4d\x46\x69\x06\x63\xdb\xdd\x27\xce\x5c\x94\xa3\x82\x39\xd8\x8d\xbf\x9c\xcc\x74\xe4\x6f\x21\xe6\x3a\x08\x64\x4f\xd8\x0e\x2a\x48\x48\x59\x38\x23\x36\xab\xfd\xed\x9a\x13\x26\x90\x84\xe1\xa0\xe1\xa5\xca\x72\x81\xf6\xbc\xe2\x2f\x09\x57\xe0\x67\x19\xc1\x30\xea\x23\x0c\xe5\x80\x3e\x42\x87\x0b\x1f\x61\x77\x88\xf4\x11\xa2\xf6\x97\x6f\x63\x6b\x64\x75\x26\x14\x09\x93\x40\x98\x94\x22\x61\x0b\xa9\x5b\x5e\x74\xaf\x51\xab\x6d\xc5\x2d\x59\x07\xdf\xbf\x6d\x85\xd7\x48\x4d\xe2\xd4\xb3\xdc\x2c\x39\x25\xd9\x4d\xdc\x02\x87\x0c\xe8\x15\xbe\x87\x7c\x83\xd4\x3c\xb4\x85\x82\x23\xb1\xd8\x81\xdb\x90\xea\xa8\x00\xe6\xd8\x95\x2d\xf2\x28\xa0\xb4\xc1\xa3\x90\xcb\x4e\x03\x80\xb1\x2a\x73\x48\x19\xc7\x1c\x93\xe5\xc1\xd7\xda\x7c\xc6\x8f\xda\x1e\xac\x9e\xd3\xa5\xf8\x58\x6f\x3b\xec\x21\xd4\xa8\xf9\xc7\x0f\x23\x24\x8d\x7e\x05\x2c\xf6\x9a\xbc\x7a\x8e\x83\xb0\x2d\x54\xcf\x18\xb2\x2d\x44\x28\x8b\x8c\x9b\xb3\x9d\x06\x93\x00\x63\x90\x75\x1f\x2c\x1b\xd7\xcd\x3f\x26\x3f\x08\x7a\x6c\x5e\x03\xa5\xc6\x3c\x86\x9e\xa1\xe3\xf3\xcb\x7a\x04\xd0\xd3\xbe\x9c\xb8\xcb\xfd\xa8\xb0\x5f\x8b\x6b\xfc\xbc\x34\xa1\x1e\xb6\x8d\x45\x00\x9f\x43\x54\x0b\xf3\x64\x09\x0a\x42\x56\xf2\xc9\x21\xcb\xcb\xea\xc9\x12\x53\x6d\xd6\x02\x87\xe5\xfe\xe3\x02\x81\xd9\xb7\x85\x28\xf0\xab\xb6\x1a\xc9\x54\x0b\x38\x0b\xcd\x97\x51\xa4\x2c\x01\x7b\xa3\x6c\x9d\x09\x4d\x44\x60\xdd\x4c\x69\x22\x02\x64\xbd\xac\xd2\xc4\xb3\x00\xa1\x89\x08\xd7\x0a\x2c\x11\x05\x6c\xd9\xac\xc0\x47\x91\x5f\x9d\xb5\x3a\x99\xd2\x87\x30\x8f\xd8\xaf\x4d\xb2\x5f\xaf\x0b\x61\x4d\x54\xc3\xf3\x24\xf6\xb9\xac\xa2\x89\x87\x0f\xb9\x77\x7a\x1d\xc0\x2e\xfb\x82\x55\xf5\x79\x02\xbd\x58\x63\x55\x3f\xa4\x27\x42\xe8\x24\x82\x6c\xee\x94\x35\x02\x58\xba\xac\x9d\x01\x65\xdb\x91\x35\x02\xc8\xe2\x94\x35\x22\x9c\xc6\xb5\x63\xed\x18\xfe\xe1\x57\x1d\xf6\xce\x57\xed\xfb\x4e\xdb\x90\xeb\x50\x45\x34\x75\x4f\xa8\x22\x02\xdf\x78\x42\x15\xa1\x1b\x2d\xe1\x7d\x88\xe6\x58\x11\x2f\xe8\x52\xaf\x53\xeb\x00\x2b\x0e\xae\x87\xef\x5c\xc3\x75\xf8\x07\xe3\x03\xfc\x38\x10\xe5\x59\x71\x3c\x2a\xca\xe0\x7a\x88\xb6\x5f\x20\x7a\xc7\xc9\x07\xe1\xd7\x9e\x7c\x61\x3c\x26\xcf\xcb\x01\x61\x47\x06\xd0\x0f\xa8\x0e\x95\xfd\xe4\x38\xfe\x3c\xa2\x56\x0e\x81\x84\x13\x67\xf5\x10\xe8\x79\x05\x16\x89\x81\x63\x2d\x61\x91\xe8\xc5\x5a\x05\x40\x15\xcb\x12\x01\x79\xa0\xd9\xdf\xc6\x33\x20\xb7\xcc\xfa\xed\x2f\xb5\xda\x50\x80\xa3\x62\x4f\xd7\xef\x40\x38\x60\xba\xcc\xfa\x6d\x3c\x9d\xbc\xed\xac\x6e\x3c\x84\x54\x25\xb4\x13\x83\x78\xb9\x84\x76\xa2\x37\xbb\x86\x50\x6c\x03\x33\x12\xda\x89\xb6\x67\x62\xc2\xd8\x62\x13\xd2\x6a\xf0\x82\x3b\x55\xba\x4a\x61\x83\x3f\x9c\x0f\x22\x92\x38\xbc\xdf\xe9\x70\x1c\x4e\x07\xd8\x82\xf1\xb2\x65\x5d\x34\x9f\x4d\xb8\x7e\x1b\x55\x23\xd6\x25\xeb\x22\x21\x11\x69\x5f\x3d\x03\xa6\xab\x0c\xe6\x60\x2d\x41\x55\xe3\x68\xba\xb2\xbe\x43\xe0\xd0\xa6\x54\xbf\xb3\xde\xd0\xb4\x53\x37\x94\x23\x1d\x73\xe2\x27\x74\xc5\xb9\xb5\x01\x79\x91\xf5\xdb\xda\xc6\xb1\x28\xe1\xdb\xda\x06\xf8\x53\x59\xbf\xad\x6d\x68\x8f\xaa\x10\xc0\x17\xe7\x00\x07\x42\x35\x46\x08\x31\x3c\xae\xc0\x87\x21\xcb\x5b\x42\x87\xd1\x96\x13\x1a\x3a\x8c\x3d\x65\x2e\x19\x77\xa9\x8f\x8e\x4e\x80\x7b\xb3\x0a\x82\x85\xf2\x28\x67\x06\xce\xbe\xac\xf0\x0f\x17\x45\xc9\x65\xd7\xf9\xf2\x22\x8f\x94\xfa\x70\x4c\x8c\x74\xed\x11\x72\xb3\x6c\x8c\xdb\xa9\x5b\x68\xc5\x1e\xbb\x67\xf4\x65\x55\xb9\xbe\xed\x3a\xaf\x2d\x99\xd2\x88\x24\x0f\x9f\xbf\x2d\x99\x8f\x1a\xb5\x99\x16\x7d\xd3\x45\x6c\x2d\x30\x6e\x94\xa2\x68\x84\x71\x43\xbb\x1b\x8c\x1b\xcd\xb3\xa1\x84\x1b\x81\xc7\x3c\x61\xdc\xe8\x5b\x28\x41\xb8\xa1\x05\xaa\xfe\xda\x77\xcd\x96\x53\x31\xd2\x6a\x4b\xa8\xbf\xf1\xdd\xef\x7e\x68\xfa\x21\xaa\xf7\x9d\x2c\x6b\x38\x39\x7f\x54\x75\x97\x06\x86\x53\xfa\xcc\x4d\x01\x7e\xe8\xe7\xcb\x54\xdb\x13\xe4\x2e\xf9\x85\xea\x83\x87\x60\xb3\xdc\xd2\x00\x36\x4b\x10\xba\xb2\x1a\xd4\x93\x6e\x3f\x0f\x55\x55\xa2\x3f\xce\x3b\x3a\x09\x4f\x66\xb5\x2f\x60\x21\x56\x75\xae\x24\xfa\x1f\x0e\xed\x63\x12\x88\xef\xbe\xf8\x0c\xa9\xa9\x31\x3d\x9e\x8c\xa4\xf4\xd8\x13\xf8\xb5\x00\x46\x07\xea\x0e\x9c\x12\x09\x75\xc7\xf7\x82\x7f\x2c\xec\x66\x94\xa0\x81\xd8\x73\x5e\x7d\x99\xc1\x68\x35\x92\x77\x04\x28\xc9\x09\x79\x47\xd7\x1e\x02\x79\x47\x25\x56\x21\xe1\xee\x28\xf3\x4f\x0e\xfb\x6c\x87\xf0\xe9\xbe\x84\x3f\xb2\xf9\xe1\x49\x89\x93\x6b\xeb\xeb\x35\x43\xc4\xc2\x6d\x70\x1a\x83\xcd\x9a\x0d\x2e\x7c\x2d\x89\xed\x70\x88\xd8\x98\x64\x0b\x21\x02\x29\xdb\x81\x08\x60\xa1\xb4\xb2\x9b\x91\xfc\x60\x8c\x2c\xd9\x28\x51\xa2\x79\x52\xba\x10\xd0\xdd\xb3\x41\xb8\x49\xd2\x5a\x42\x1d\x22\xf5\x5e\x42\x1d\x22\x0d\x61\xb6\x2a\x0a\x08\x55\x22\xe1\xca\xad\x6f\xd3\x7f\xd0\xfd\xd0\x7f\x14\x4f\x9c\xd0\x7f\x0c\x97\x62\x73\x27\x07\xc0\x38\x1b\xa8\xcc\x85\x65\xd9\x3c\x66\x42\x82\x90\xf2\x82\x68\xdc\x6d\x6e\xe5\x2a\x0b\xad\x31\x9d\xa6\x6f\x30\xda\xdd\xfb\x03\x83\x3e\xd5\x76\x8b\x5f\xbe\x1c\xbe\xec\x0f\x40\x25\x1d\x86\xa6\x61\xcf\x0f\xd1\x66\x96\x5c\x33\xb0\xd4\xf3\x4d\x6b\x36\x9a\x2a\x75\x66\xfb\xf0\x9a\x5a\xb0\x03\x37\x32\x6d\xab\x9d\xd7\xed\x48\x7a\xd8\xbd\x1f\x66\xb8\x6c\xdd\x88\x6b\xaf\x6d\xf4\x37\x31\x21\x0f\xa9\xff\xae\x6d\x33\x35\xfa\x4e\x9f\xd5\xd3\x71\xd3\x4c\x0c\x9b\x6c\x36\xcd\xc4\xce\x92\x61\xa0\x89\x0f\x31\x1b\x80\xf6\xcd\x06\x09\x68\x71\x4c\x86\xa5\xf1\xc2\xb4\x09\xbc\x40\xbe\x14\x89\x5e\xd9\xa6\x3d\xec\xbc\x9a\xd0\xa5\x39\x26\x30\xe3\x81\xa7\x96\x6d\x22\x5b\xa6\xd7\xcc\x5b\xb4\xae\x06\x31\x5e\x75\x41\x4c\xe6\x2d\x52\x03\x3a\x93\x01\x93\x7e\xc2\x66\x32\x20\xd6\x48\xd8\x4c\x7a\x2d\x56\x88\xfe\xc5\x70\x0a\x2f\x49\xd7\xa8\x01\xb3\x48\xd1\x0a\x02\xb3\xc8\x20\xf5\x3c\x21\x10\x19\xc0\x4a\x25\x04\x22\x03\xc0\xb5\x84\x40\x64\x14\x17\x6b\x52\x4f\xb4\xc0\x86\x89\xf7\xb0\x7b\xa1\x09\xd5\x30\x0d\x1b\x48\x92\x59\x91\x10\x80\x34\x62\xa6\xb2\x2d\x64\x2c\xf2\xb6\x2d\xc6\x18\x91\x01\x19\x48\x2a\x1a\x9b\x86\xdc\xe5\x80\xbb\x57\xbb\x06\x17\x95\x73\x76\x2d\x2a\x87\x58\x69\xda\x6b\x97\xd3\x6b\x31\x34\x4e\x04\xe0\x67\x42\x4b\x54\x3b\x19\x1b\xf6\xc9\x86\xc1\x36\x96\xfd\x7b\x92\x75\xed\xdb\xa7\xc2\xd1\x6b\x8b\xa6\x08\xf7\xe4\xf4\x79\xfa\x9a\xfd\x40\xee\x91\x74\x90\xdd\x64\xd9\xad\xe0\x18\xa9\x5a\x3b\xa5\x18\xd1\x66\xd4\x80\x5a\x8e\xb5\x1f\x62\x90\xf3\xaf\xd4\xac\x84\x8c\xa4\x1e\xce\x7a\x77\x60\xf4\xf4\x26\x69\x15\x8a\x0f\x24\x25\x83\x6c\xc0\x94\xa4\x24\x96\x43\x8a\x43\xb4\x28\x87\x88\x35\xf2\x58\x09\x7b\xc9\x20\xce\x27\x9b\x1b\xf0\xf2\xfe\xe0\x3e\xef\x9a\x60\xb1\xec\x66\x60\x2b\x73\xbf\x20\x18\x36\x6d\xf2\xb0\xba\xd2\xb7\x61\x5f\x55\xb0\xc2\x73\x45\x9e\x41\xb6\x6f\x13\x95\x1a\x33\x9b\xe9\x14\xba\xca\xda\xb7\x8b\x0e\x52\x6a\xb2\xfd\x1c\x79\x1b\xe1\x2e\x8a\x12\xd9\x20\x1b\x20\x01\x3a\xdb\x8f\xa9\xa8\xf0\xf9\x29\xeb\x50\x35\x20\x3c\x19\x55\xf1\x86\xa3\x74\xcb\x71\x76\xce\x5a\xbc\xcf\xdc\xf5\x79\x58\xf7\x0f\x65\xcc\x77\x88\x1d\xba\x2b\x1b\xc1\xad\x87\x1d\xf0\xda\x49\x54\x9b\x44\x30\x32\xf2\xb3\x99\x08\xa6\x10\x7f\x21\x05\x40\x2f\xeb\xec\x6a\x09\xbe\x5b\xf6\xc3\x5e\x6d\x5c\x57\xff\x98\xfc\x68\xbc\xb1\xb8\xe6\x5c\x58\x7d\x7b\xf8\x50\xf0\xc3\x8e\xf1\x4b\x4e\xcb\xca\xb5\xc9\xe0\x3e\xc3\x8a\x60\x0f\xe8\x07\xe1\x50\xd3\xe7\x7f\xec\xc0\x5e\x3f\x28\x51\xd6\xc2\x2e\xe2\xf9\x62\x55\x2d\x99\x9d\x0b\x76\x90\xec\xc5\x8e\xa7\x00\x36\x25\x82\x55\xb2\x7f\xa7\xd3\x0a\xda\x47\xc2\xa1\x32\xdc\x0d\xe0\x50\x69\xe4\xc4\x25\x14\x2a\x8d\xf8\xdf\x84\x1c\x25\x75\x2f\x74\xb6\x9b\xca\xce\x08\xbd\xc9\x22\x18\x33\x3b\x0c\x53\xc4\x6a\x25\xf4\x26\x83\x64\x97\xec\xcd\xb2\xe8\xa1\x4e\x59\xd5\x6b\x42\x03\x2c\x77\x38\xae\xdc\x27\xbc\x54\x1b\x3c\x9c\x25\x7d\xf8\x2e\x9c\x25\xfb\x10\x05\x67\xc9\x20\xe7\x2c\xe1\x2c\x19\xd5\xc6\x0f\x4f\xf6\xde\xa7\x12\xec\x29\x1d\xb0\x47\x97\x5d\x9f\x8e\x9f\xdd\x2e\xda\xa3\x63\xc9\x99\x10\xc4\xeb\xec\xd3\xf1\x0b\xdf\x9e\xc4\x48\x53\x55\x44\x75\xb5\x7a\x58\x19\x53\x2b\x75\x27\xbb\x6c\x4d\x5f\xb8\xb1\x64\x7b\xcd\x9c\x72\x00\x01\xc1\x49\xc8\x6a\xb3\x13\x8c\x4a\xd0\x7e\x6e\xfa\x93\xc3\xde\x86\x5d\x0a\x54\xe9\xec\x61\x65\x11\xd7\x3d\x98\x6c\xa8\x37\x1d\x7f\x61\x92\xd5\x94\x1d\x42\x69\x78\x08\x13\xf6\x94\xa1\x8e\x07\x7b\x4a\xaa\xbe\x75\xf6\x06\xbd\x5c\x1d\x1b\x65\x1e\x6c\x0e\x3d\xec\x3f\x3e\x44\x1e\x03\xc4\x85\x09\x47\xca\x20\x02\x30\xe5\x48\xc9\xef\xd0\xf5\x87\x80\x83\x40\xa5\x2a\x9b\x3b\xe4\xf9\xc0\x46\x67\x37\x13\xd7\xe3\x19\xcc\x2a\xa3\x3a\x6f\xbe\xbd\x63\x1d\xce\xb9\xe5\x08\xf0\x02\xc7\x3c\xad\x57\x1d\x43\x65\xaa\x19\xf7\x85\xfb\xc0\x3a\x72\xce\xd3\x1d\xd0\x39\xb5\x11\x43\x9f\xfd\x3b\x31\x75\x80\x41\xb3\x8b\x8f\xcf\xae\xde\x39\x18\xa5\x5a\x6f\xe7\x64\xa4\x73\xb4\x1b\xde\x89\xec\xea\xb0\xe2\x13\x67\x9f\x30\xb1\x0c\x52\x93\xb2\x23\x8b\x53\xa5\xb7\x7f\xb2\x38\xc2\x76\x5e\x0c\xb1\xdd\x4f\x70\x4a\x7a\xde\xe8\x17\x8b\xd4\xea\x7d\x42\x7a\x79\x32\xe8\xb7\x6b\x88\x97\x09\x02\x3d\xec\xfe\x1b\x45\x0b\x65\x04\xae\x97\x51\x51\x71\xfa\x6d\x50\x3b\xb5\xc0\x51\x96\x1e\x5c\xfa\xed\xe4\xa2\xaa\x3f\x04\x1c\xde\xc7\xfe\x03\xe7\xc7\xf6\x93\x6e\x9b\x9a\x71\x60\x87\x19\x90\x7b\x67\xe7\xd4\xb3\xa7\x38\x51\x97\x5d\x91\xf3\xb3\x09\xa8\x35\xf0\xbe\x54\x8f\xb3\xd0\xbe\x0c\x22\x74\x13\x76\x97\xb1\xab\x4a\xd8\x65\xaa\xe3\x41\xef\x32\x54\x1c\x61\x77\x19\x64\xd1\x67\x7f\x84\xc0\xf3\x85\x9d\x96\xed\x0f\x7c\xd4\x2e\x41\x60\xc9\x14\xd8\x5d\x81\xed\x47\x5f\x66\x12\x9b\x70\x07\x71\x6c\x0b\xbb\xd7\xaa\x2a\x12\x5f\x7a\x9b\x8f\x42\xf5\x32\xd4\xcc\x86\xfe\x23\x24\xa2\xc4\x2d\xe9\xe6\x0a\x71\x4b\x25\x70\x30\x47\x91\xb1\x61\x71\x2d\x36\xa3\xf7\x4f\x1c\x99\x3e\xff\x7c\x25\xd3\x79\x70\xb5\x0c\x62\x65\x73\x60\xc7\x4b\x85\xf7\x20\x30\x04\xa2\xb3\x1c\x75\x97\xc6\x57\x49\x2e\xd0\xe8\x31\x2a\xac\x99\xc5\x6b\x14\x8f\xe5\x0b\x98\x10\xbb\xf7\xc1\xcd\x67\x21\x43\x98\xd2\xca\xbe\x66\x21\x33\x19\x20\x4c\x19\xe4\x62\x24\x7c\x29\x43\xe5\x1a\xbe\x14\x79\x9d\x73\x90\xf1\xc5\x3a\x1a\x84\x72\x90\x17\x9c\x03\xee\x3e\x70\x5a\x73\x90\x92\x9b\xca\xca\x81\xc2\x4e\xce\x50\x0e\x72\x00\x0e\x7b\x05\x6f\x93\x89\xbe\x09\x6d\x8a\x9c\xd0\x39\x3a\x6e\x6f\x64\xd7\xe8\x04\x32\x86\xf7\xe9\x2e\x9f\x57\xaa\xb3\xee\xc6\x60\xc5\xb3\x67\xc2\x9a\x52\xcc\x8b\xcc\x31\xdc\x4e\x06\xd7\x4c\x9d\xe1\x43\xbb\x64\x7f\x90\x28\x52\xbc\xa6\xf9\x48\xca\x81\x22\x4f\xf2\x4e\x0e\xe9\xab\x59\x22\x03\x09\x9f\xae\x91\x31\x59\xf2\xc8\x8e\x31\x6d\x02\xa5\x11\xd1\x91\xf3\x2f\x80\xa4\x84\x79\x25\x75\x9a\x0e\xb2\x0c\x74\xdd\xc1\xbc\x32\xaa\xa3\x1e\x96\x88\x00\x81\x79\xa5\x37\xab\x05\x09\x20\xe1\xcf\x39\x04\x79\x77\x9d\x40\xb0\x32\xc8\x1d\xca\xa1\x38\x66\x1f\x19\xe8\xf0\x64\x42\xe5\x08\x32\x70\xd1\x4d\x06\x70\xee\xca\xf5\x81\x0e\x5f\x9d\xa0\x9f\x0e\xff\x7d\x94\x97\x13\x01\x8a\xe2\x3e\x08\x47\x3c\x9c\xe9\x98\xee\x72\x77\x2d\xda\xbd\x6e\x77\xa8\x5a\x4a\xee\x59\xf3\xc9\xee\x45\x7e\x66\xc2\xdb\x22\xc3\x76\xca\xdb\x92\xbb\xcf\x41\x80\x4f\xa7\xdf\x27\xbb\x3f\x55\x84\xeb\x8b\x38\x6f\xda\x83\x7a\xaf\xf1\x02\x4e\x95\xb5\xeb\x8d\x61\x8d\xcc\x96\x84\x23\xa5\x24\x29\x42\x39\x4e\x2d\xb0\x74\xe5\xe9\xc8\xfb\x36\x5a\xfc\x9e\x5b\x38\x8d\x40\x72\xce\x71\xe2\x65\xb3\x7a\x98\xcd\xfe\x7d\x08\xba\x19\x9b\x83\x46\xaf\x36\x33\xb0\x82\x55\x97\xf7\xe5\x30\xb0\x0b\x0f\x05\xbf\x25\x93\x78\x06\xaf\x48\x0e\xc5\x35\x5b\xed\x26\x31\x61\xff\x87\xb8\x24\x3d\x3e\x8d\xdb\xc9\x4e\x93\xd1\x96\xf7\x82\x00\xd4\x51\xd7\xe0\x50\xf8\xb2\x97\xc3\x67\x52\x04\x53\x4e\x08\x4d\xea\x72\x99\x61\x5a\x22\x56\x31\x07\xf9\x62\x5b\x40\x3d\x6a\x97\x3c\xff\xc9\xd8\xd4\x7a\x2d\xab\xc8\x44\x57\x86\x54\x64\x1d\xae\xf5\xd7\x64\x5b\x9e\x27\x42\x20\xf5\xbb\x8c\x57\xd9\x43\xad\x5f\x41\x17\x7d\xc8\x97\xf9\x10\xce\x1c\x22\x18\x73\x28\x56\x51\xfe\x20\x02\x59\x24\xa9\x27\x3c\x20\xc3\x9e\x9b\x9f\x86\xbb\xe7\xdd\xc4\x1b\x63\x64\x06\x9c\x20\xa9\xdb\x7f\x2a\x86\x11\x07\xf0\x7d\x0c\xb2\xba\x12\x2a\x8f\x05\xdd\x43\xce\x2d\x61\xbf\xc6\xc3\xcc\xb1\xd4\xbf\x21\xda\x18\x24\x69\xa5\x44\x1b\x09\x00\x70\x42\xb4\x31\x08\xc6\x4d\x38\x34\xd2\xf3\x14\x9c\x18\x9d\x54\xa2\x9c\xb8\x28\x52\xcb\xdd\x6c\xb6\xd2\x3f\x2e\xff\xf0\x07\xfd\xbe\x7c\x88\x40\x2e\x9b\x66\x44\x1a\x2b\x64\x76\x30\xf6\x58\x52\xb3\x13\x4f\x4f\x5f\x4f\x4c\x13\xab\x7a\xcd\xd9\x02\xf1\x29\xdf\x85\x26\x0b\xf8\x2e\x22\xf7\x33\xa4\x17\x54\x9f\xa1\x12\xb0\x95\x25\x14\x17\xa9\x4c\x92\xe2\x22\x61\x22\x4b\x28\x2e\xfa\x6e\xe7\xe0\x54\x83\x26\x0f\xc5\xc5\x34\x14\x12\xc6\x8a\xd4\x42\x00\x17\x45\xd9\x1d\x3c\x09\x61\xfc\x93\xbf\x3e\xe7\xb4\x44\xb6\xa5\x89\x5f\xc3\x3d\x1d\xa6\x8a\x66\x40\xd2\x44\x77\x5c\x0e\xd7\x27\xab\x42\x3b\x0f\x4c\x15\xa1\xc1\x44\xa6\x0a\x8d\x64\x30\x55\x34\x7d\x84\x50\x55\x34\x2d\x88\x33\x5e\x9e\xe1\x9b\x70\x5b\x93\x5e\x96\x33\x01\x0e\x73\xb0\x70\x4b\x00\x3f\x91\x33\xd9\x88\x51\x44\xa6\xa4\x52\xd3\x67\x70\x83\xa1\x3f\xcd\x64\xac\xd0\x00\x60\xa1\x88\xdd\x1b\x84\x4d\x27\xf4\x0a\x39\xc9\x94\x22\x61\x38\xe7\x82\x84\x6b\x5f\xfb\x32\xd7\xa7\x2f\x53\x39\xe1\x11\x6c\x3c\x81\xce\x1a\x6d\x26\x10\x2f\x5a\xea\xe6\x49\x44\x20\x46\x9b\x09\xc4\x8b\xc6\x9c\x79\x3a\xb8\xce\x1e\x30\x5e\xb4\x04\xcd\x93\xd6\x23\xf1\x27\xc4\x4e\xbb\x42\xe4\xcd\xaa\x3e\x6f\xf6\x0a\xc4\xcb\xbc\x88\x3a\x62\x27\x98\x17\x31\x95\xce\xb0\x8b\xc2\x9c\x91\xc4\x65\x4d\xe7\x05\xf0\x2e\x6a\x21\x90\x57\x94\xec\x76\x05\xb9\x45\xea\x3f\xb0\x57\x34\xbd\x6c\x90\x57\x7c\x0f\xd1\x84\x9b\xe6\x84\x2f\x9c\xee\x9f\x5c\x83\x49\x65\x5f\x13\x15\xad\xe6\x05\x7b\x45\x68\xc2\x81\xbd\x22\xb4\x3b\xc1\x5e\x61\x56\x74\x4a\x52\xa1\x06\x00\xff\x44\x68\xc8\x98\x3f\x92\xa9\xfc\x26\xdc\x4c\xd9\xed\x96\xdf\x05\xc3\x87\x1f\xa2\x30\xd7\xff\x8f\xc2\x6c\x81\x09\x3f\x56\x82\x08\x69\x8d\x5c\xf3\x61\x2c\x91\xb4\x32\x4b\x84\x8b\x0d\xcb\x78\x76\x4b\x26\xe6\xaa\xdb\x4a\xa2\xa2\xb7\xec\x78\xed\x77\x5a\xf3\x5a\x53\xef\x63\xa3\x71\xb6\x1b\x17\x65\x25\xe4\x8c\xb0\xd2\xef\x2e\xe0\xfb\x28\x9c\x11\x0d\x44\x81\x84\x32\xe2\xfb\x63\xf1\x43\x14\xc4\xc1\x35\x25\x63\x5a\x08\x80\x10\x0c\xf9\x88\x83\xa9\xb6\x7c\xd9\x5a\x4c\xae\x69\xe6\xfe\x0e\xa3\xbf\x7c\x9e\x26\x5b\xf0\xa7\xe5\x76\x3d\x7e\x51\x6c\x19\xcf\x90\x71\x93\xe3\xf0\x21\x02\x72\x10\x2f\x81\x89\x3b\x95\x23\xf1\xa9\xbf\x2d\xf7\x1f\x9c\x8b\xaa\x5f\x42\x8e\x1a\x05\x0a\x41\x45\x68\xd3\x08\xa0\xca\xd2\x68\xca\x28\x18\x2f\xe8\xfa\xc0\x0b\x9e\xc6\x62\x86\x20\x66\x4c\x4f\xa8\x2b\x2a\xe9\x11\x09\x73\x45\x68\xbd\x0a\x20\x24\x35\xc0\x44\xb5\xb2\x6c\x00\x21\xa0\x19\x12\x02\xe6\x8a\xa8\x56\x43\xe4\xb1\xe3\x4f\xd9\x16\xc2\x92\xd9\xc0\x06\x52\x9a\xbd\xd0\x80\x06\xb3\xea\xb8\xac\x35\x60\x85\xb0\x62\x76\x02\x1c\x49\x9a\x94\xa0\x9c\xe8\x1e\xa0\xa2\x83\xce\x85\x78\x0a\xac\xd6\xff\x9e\x01\x30\xcc\x4e\xeb\x76\x01\x1b\x4e\x74\xe8\xbc\x6d\xf6\xa0\xa9\xac\xab\x50\x0b\xd6\xb0\x18\x66\xc7\x3a\xf0\xc3\x71\x61\x97\x89\x21\x48\x8f\x6f\xb0\x5c\x0d\xf7\x0a\x1c\xde\x1e\xed\x43\x9c\x2f\x76\x74\xa8\x2c\x02\xe4\xbd\x84\xca\xc2\x7c\xf9\x84\xc9\x22\xd4\xb9\x61\xb2\xc8\xb9\xef\xd3\x66\x76\xe8\x20\x06\x2a\x0d\x39\x8a\xf0\xa3\xd4\x02\xc3\x03\x89\x05\x19\xb1\x31\xde\xfd\x01\x07\x9c\x63\x87\x51\x3a\x8d\x74\x09\xf8\xae\x8d\xce\x0c\x61\xbe\x30\x8b\x45\xd8\x4d\x8c\x6f\x3a\x09\x68\x5b\x52\x6d\x84\x35\x94\x16\x0b\xd4\xca\x84\xd2\x22\xb4\xa4\x04\xb0\x93\x5a\xa1\x82\xdd\x40\xb3\x08\x54\x17\x25\x8d\xd3\x85\xeb\xa2\x01\x94\x91\xb1\xec\x0b\x9a\xb0\x18\x73\x4e\x04\xff\x38\x2d\xa8\x35\x30\x92\x69\x25\x30\x25\x1b\x6c\x03\x5b\x45\x68\x52\x81\x94\x22\x3c\xd2\xc2\x49\x11\x7b\x2e\x00\x04\xe9\x91\x3e\xc8\x52\xcd\xe9\xe2\x40\xd2\xab\x30\x42\x50\x11\xda\x03\x24\xa8\xc8\xe9\x8c\x44\xbc\x7b\xd8\x8f\x8b\xbc\x1e\x9b\x7c\x41\xe7\xe5\xc2\xc7\xff\xba\xcf\x1e\xb0\x55\x08\x18\x90\x71\x33\x3a\x4e\x9e\x9b\x1c\x6c\xa7\x82\x72\x5f\x83\x64\xdc\xe4\xa4\xa1\x01\x86\xe6\xdf\xe9\x40\xdf\xf0\x22\x39\xdd\xf0\xc6\x9a\xde\x92\x41\xa2\x8c\x06\x98\xc0\x00\xa1\x19\x24\x64\x2d\x52\xe8\x20\xe0\x3d\xe9\xc4\x8f\x21\xc4\x3a\x12\x3f\x1b\x4a\x07\xfc\x78\xd7\x99\x0a\xb6\x81\xc7\x72\x78\x2f\x96\x31\xe8\xf2\x5e\xc8\x39\x9d\xf0\x5e\x88\xb0\x90\xb0\x58\x84\x66\x06\x48\x2c\x8a\xe8\x14\x09\x8b\xc5\x0e\x35\x91\xc5\x22\xa7\xbd\x41\x72\xcc\x1e\x74\xcc\x09\xda\x39\xe3\x05\xfe\xc2\x99\xf7\x2a\x67\x69\x1a\x2e\xce\x3d\x9f\x71\x71\xa6\xd1\x95\xf1\xe9\xc0\x19\x76\xd2\xeb\x47\x29\x40\x11\x6f\x98\x54\x7e\xd2\xbb\x93\xaa\x9b\x79\xd8\x08\xd4\x8f\x24\xf8\x15\xf8\xc1\xcc\x2d\xd6\x27\xd7\x36\x88\x17\xc0\x30\x30\x78\x0f\x26\x8b\x35\xd9\x68\x52\x23\x85\x3a\x24\x54\x16\x60\x32\xfc\x21\xe1\x52\xe1\x4e\x2e\x79\xc2\x73\xd1\x3c\xa5\x41\x73\x11\x1a\x0c\x60\xb3\x08\x15\x75\xf8\x2b\x52\xdd\x21\x35\x61\x18\x30\x99\x80\xd6\x78\x40\x4c\x4c\x18\x86\xf1\x40\x72\xb1\x40\x92\xcc\x44\x9e\x1a\x93\x90\x04\xb7\x1a\xb9\x93\xe4\x3e\x6a\x81\xcd\x86\x5c\x42\x43\xca\x66\xd7\x2e\x5f\xe6\x58\x50\xfc\x83\x45\x64\xa7\x41\x00\x04\xf3\x5d\xa6\x71\x42\x48\x01\xb8\x24\x1a\x94\x5b\x09\x97\x44\xe6\xf0\xfa\x04\x41\xa1\x72\xcd\xec\x00\xdb\x2c\xe1\x95\x68\xc6\x17\xc2\x2b\xd1\x0d\x74\xc8\x41\xc6\x45\xf1\xda\x5c\x75\x5a\x89\x68\xd5\x08\x9e\x8a\x56\x23\x38\x73\xc0\x92\x14\x5e\x9f\xfe\x41\x3b\x87\x78\x44\x34\x01\xd0\xc5\xf4\x18\x05\xdf\x44\xa4\x6f\xe3\x38\x5c\x4e\x82\x4f\x53\x1f\xc0\x56\x67\x42\x46\xa7\xba\x08\x27\x45\x68\x85\x4b\xac\xce\x9e\x35\xe0\xa7\x28\xc5\x3e\xc2\x3c\xa1\xdd\x26\x35\x3a\x93\xbc\x98\xf0\x53\x34\xa0\xe4\x12\x7e\x8a\xb2\x67\x96\x9a\xbc\x5a\x15\x04\x15\x3d\x9d\x4d\x8a\x75\xa8\x11\x32\x03\xfd\x04\x55\x3b\x31\x3a\xa7\x21\x36\x09\xc6\xe3\x81\xe6\x09\x8d\x45\x1f\xce\x24\x8d\x16\x7a\x9d\x32\x84\x45\xa2\x1e\x01\x0c\x2e\x52\x37\xc3\x60\x2f\x1a\x84\x92\xaf\xbd\x3b\x09\x6e\x4d\xd0\xfe\x33\xd1\xf2\x41\x6b\xc8\x4c\x4b\xa3\x04\x82\x8f\xd2\x8c\x8d\x4c\x83\xb4\xb8\x24\x2d\xce\x29\x89\xec\x37\x64\x33\xb1\x59\x40\xa4\x93\xa9\xec\x57\x66\x43\x9a\x51\xf5\xce\xc1\x8e\xd1\x86\x53\x6f\x4d\xb2\x23\x29\x18\xeb\x31\x40\x45\x09\x75\x85\xe8\x61\x09\x73\x45\xc9\xb0\x84\xd3\xc8\x72\x6a\x81\x3a\x7f\xec\xfb\x96\x86\x9e\x0f\x29\x45\x4b\xaf\x89\xca\xd9\x2b\xf9\x82\xca\xd2\x95\x8f\xc5\x18\x5a\xb7\x94\x26\xc2\x03\x4c\xde\x38\x15\x7d\x06\x9e\x39\x05\x73\x22\xb1\x35\xf0\x43\x1f\x11\x46\xa5\x41\x1f\xb1\xc2\x89\x84\x12\xae\xa2\x97\x37\x87\x56\xcc\x9c\x09\x8d\x2a\x00\x5e\x99\x3f\x5b\xa3\x98\x81\x46\x55\x05\x0b\x5e\x89\x6e\x80\x6d\xfe\xec\x53\x0a\x46\x23\x57\x7d\x49\x48\x8b\xa0\x97\xca\xc4\x1a\x91\xae\x05\x6d\xc4\x06\xe5\xe5\xcf\x2c\x53\x5a\xf3\xd8\x8f\xf4\xa9\xcc\xa9\x88\xdf\x7c\xe0\xa8\x73\x59\x20\xe0\x0d\xf9\x4a\x09\x52\xff\x24\x97\xc9\x7c\xc1\x75\xb6\x40\xb9\x4f\x6d\x11\xfe\xbb\x4f\x96\xf2\x83\x98\x61\x85\xc6\x0b\x21\xb3\x0b\x0b\x7c\xf6\x2d\x7c\xc8\x6f\xd8\x22\x5b\x82\x54\xc7\x0a\xbb\x72\xee\x6b\xfb\xd5\x67\x5e\x0b\xf8\xaa\xbe\x74\xfe\x35\xaf\x21\x83\xea\x5e\xa3\x89\xa3\x9f\x2e\xdc\x71\x40\xba\xe5\x22\xa2\x34\x93\xed\x7f\x21\xd7\x75\x6f\x2c\xd5\x72\xa4\x92\xd4\x17\x86\x83\x2d\xf4\x6a\xed\xed\x0b\x61\x6d\x60\xd5\xaa\x36\x79\x71\x6d\x3c\x10\xef\x56\x8e\xc5\x2c\x00\x98\x2f\xc2\xf8\xa9\xd5\x0e\x48\xbc\xbd\xb6\x12\xc8\x95\xf5\x09\xeb\x6d\x7a\x5f\x0d\x81\xce\xaa\x82\x12\x23\x8c\xca\x5a\x04\x81\x0a\xdf\x9e\x0b\x89\xae\xef\x65\x11\x22\xb2\x63\xe9\x57\x93\x51\xd1\xaf\x12\x28\x86\xbc\x81\xdd\x22\x0c\xca\x5b\xdd\xb4\x58\x9e\xe9\xc0\x57\x5b\xf2\x10\x23\x8c\xfb\xc0\x7f\x41\x1f\x91\x10\x54\x84\xbe\x2f\x08\x2a\xaa\x4a\x07\x04\x15\xcb\x5c\x92\x25\x7d\xa7\xcf\xe8\xa7\xd3\x8b\x06\x29\x85\x90\x79\xb9\xa6\xe8\xdd\x3e\xc4\xd6\x90\xcb\x1f\x37\x86\x7e\x6a\x0a\x33\xa7\x11\x5a\x2b\xcc\xec\xa5\x76\xda\x32\x50\xcd\x16\xf1\xf9\x7b\x94\x15\x61\x46\xc8\x2c\x0d\x15\xf6\x30\x7e\xb3\x34\x12\x66\xa1\xbf\x1a\x16\xb4\x52\x5c\x43\x5f\x00\xa5\x36\xfd\xd2\x57\xf2\xf2\x1a\x48\x17\xa0\x3e\x73\x11\x3d\x61\x1e\xed\x22\x7a\xe2\x5f\xa7\xca\xc3\xe6\x1c\x39\x49\x93\xf0\x21\x18\x2a\xba\xc3\x06\x62\x39\xf4\x7e\xb9\xb4\x3c\xc0\xb1\x90\x0b\x28\xaf\xee\x64\x3b\x09\x2f\x77\x92\x5c\x95\x6b\x6a\x71\xc1\x1a\x63\x5f\x88\x52\x6e\x9b\x2f\xad\x6a\xb4\x40\xe7\x96\x8e\x28\x48\x26\x96\x46\x1b\x38\x26\xc2\x48\x44\x38\x26\xaa\xc6\x1f\x39\x26\xdc\x23\xa0\x98\xf8\x5e\xa6\xe4\xdb\x13\x8f\xd7\x42\x5f\xd0\x1c\xcc\x13\xbd\xf9\x02\x31\xeb\xfb\x43\x09\x1a\x85\xcf\xc3\x72\x86\x7e\x08\xdb\xc4\xf7\x51\xaa\x0a\xc5\x84\xc2\x6d\xc1\x0b\xed\x4e\xbf\xc0\x92\x35\xcf\x70\xfd\xec\x17\x67\x0f\xd2\xcd\xcc\xb7\xf5\xf3\x4b\xd3\x1f\x0f\x7f\x50\xa5\x47\x24\x14\x3a\x46\x3d\xd5\xac\x30\x98\x28\xc2\xf3\x29\x44\x14\xa5\xd9\xf5\xd0\x39\xeb\x53\x86\x30\x22\x46\xf9\x33\x71\x61\xbd\xa4\x4d\x20\x13\xd7\xcb\xbe\xc7\x1e\xb8\x34\xdd\x2e\xf6\xe2\x25\xaa\x23\xe2\x6d\xbd\xce\x0e\xfb\x1c\x33\x05\x80\xd8\x09\xb5\x44\x57\x38\x42\x2d\x91\x50\x86\x26\xcc\x12\x01\xdc\x5a\xc2\x2c\x11\x3a\x85\xce\x4f\x8c\x75\x63\x1f\x4f\xa2\xe7\x0d\xa4\x38\xc1\x3e\x4f\xb0\x1a\xf2\x24\x54\x61\xee\x97\xed\xc2\x5d\xc2\x4d\x09\x7e\xc9\x2e\x44\x78\xc1\x3f\x91\xba\x20\xcf\xe3\xf5\x0f\xbe\x5b\x4c\x51\xa0\xae\x05\xc0\x2d\x86\xfe\x54\x7f\x5d\xcb\x3f\x3e\xf5\xd9\x10\xad\xb3\x90\xfd\xb3\x5f\xb6\xd5\xc8\xc1\xb3\x58\xdb\xc9\x35\x2e\xd2\xc3\xeb\x9b\x88\xf9\xc3\xcf\xe2\xa5\x59\x7e\xe9\xf1\x0f\x6a\x8e\xfa\x6b\x5a\x22\xd4\x15\x69\xf0\xda\x89\xdd\x61\x1d\x87\x3f\xac\x07\x2f\x00\x8c\xab\x2c\x3b\xb1\x35\x77\x34\x32\xf8\x2d\x12\xec\x92\x3c\x3f\x29\x9a\x10\xaa\xe5\x89\x14\xdd\xae\xaa\xf3\x93\xa2\x9f\x60\xe5\x9a\x90\x2a\x26\x39\x0c\x15\x61\x6e\xe8\xd9\x19\x2d\xef\x77\x9f\xa7\x3d\x78\xde\xb6\x5f\xfc\xec\xa2\x66\xf8\xc2\xc3\x43\xde\x7f\x7d\x88\x3f\x40\x57\x74\x4f\x84\xae\xa2\x6c\x27\xde\x39\x2a\x6f\x78\x0d\x16\x8b\x6e\xb2\x13\xf0\x2e\x43\x3f\x4e\x2c\x10\x40\xac\xe6\xf9\x69\xc3\xb9\xf6\x57\x49\xa4\x72\xdc\x11\xd4\xe9\x7d\x70\x1a\x35\x09\x9f\x1b\xa7\x91\x02\x26\x58\x55\x28\x18\xa7\x31\x14\xf6\xbc\x78\x5e\x4e\xac\x69\x76\xc3\xf0\x8f\x8b\x43\x1d\x1d\x00\x40\x2f\xa8\xca\x79\x7e\xea\x6c\xe8\x3b\x3e\xc1\xe7\x5d\x0e\xd5\xb4\xcd\xc8\x23\x18\x34\x12\xc2\x98\x3c\x0d\xb8\x67\x09\x9e\x28\xb3\x30\x8b\xe4\x19\x02\xbc\x51\x6b\x0d\x19\x7b\xb2\x07\xe3\xdc\xbd\x06\x8b\xc4\xa1\x0a\x6b\x61\x01\x2f\xd7\x7c\x28\xe9\x2e\xa4\x2b\x44\x19\xb9\x17\x50\x32\x6c\x76\x69\x6a\x8f\xf7\x7e\x52\x18\x1a\xe2\x99\xf0\xfc\x60\xfa\x39\x31\x6b\x03\xc5\x93\xf0\x67\xa4\xde\xdf\xf3\xdb\x14\x5a\x77\xee\x2c\x6b\x8a\x99\x53\x02\x0d\x25\x27\x44\x19\x09\xd9\x75\x9e\x24\x70\x2d\x8f\x2a\xe7\x3a\x19\x11\xbe\x8a\x85\xc3\x68\x22\x88\x32\xca\x52\xb3\x97\x29\x63\x4f\x92\x13\x52\x5f\xa7\xa1\xe0\x5e\x6a\xf3\xe7\x49\x8f\x21\x09\xcf\x4f\x15\xce\xb9\x1f\xa2\xc3\xec\x55\x3c\x76\xe3\x4f\xfe\xfa\x94\x77\x63\x79\x1e\x80\x77\x23\xf7\xa4\x3e\x09\x30\xb2\xb5\xd7\xc1\x35\x3d\x65\x84\xbb\xea\xe4\x09\x8e\xa4\x1e\x03\x38\x35\xd2\x38\xc1\xf3\x5a\xac\x4b\x1a\x08\x49\x9b\x61\xb5\xf0\x6b\xec\x40\xe6\xf3\x66\xde\xa3\x63\x9c\x6c\x44\x4b\xdd\xeb\xd4\x60\xe2\x94\xbb\x85\xfc\xa3\x9b\xb1\x87\x2f\xf5\x21\x08\x36\x12\xbe\xe4\x3c\x85\x16\x56\xcb\x82\x60\x23\x85\xb1\x38\x09\xcc\x58\x2a\x4a\x27\xae\xc1\xe5\x44\x23\xbb\x6b\xa9\x10\x9d\x68\xe9\x6e\x82\x27\xf1\xeb\x4b\x85\xe5\xfc\xb9\x88\x78\xfb\x27\xdf\x3a\x15\xfc\xe1\x5a\x73\xbd\xff\x82\x67\xe8\x8d\x1f\x1a\x97\x63\xcf\x3e\xa6\x5f\xe5\x64\x1f\x5b\x66\x2f\x40\xee\x91\x9e\x82\xce\x87\x2e\x50\xe6\x3f\x76\x81\x1d\x0e\x57\xb3\xc8\x14\x10\x7a\x94\x65\xbe\x03\x8c\x1e\xa9\x69\xe4\x04\xbf\x58\x55\xf1\x7c\x28\x9a\x2d\xf4\x7c\x6c\x35\xda\x0b\x54\x1f\x69\x82\x36\x54\x1f\xe9\xe9\xed\x7c\x59\x8e\xb6\x07\x7d\x7d\x19\x20\x7a\x7e\xbb\xde\xde\x4e\xa5\x00\x31\xc2\xf3\xfc\x36\xb7\xd8\xcb\xe8\x85\xe9\xc4\xa1\x46\x77\x5f\x06\xe4\xc3\x0d\x92\x46\x96\x9d\x24\x27\xaf\xb2\x8b\x60\xd1\x72\x68\x81\x34\xe4\xfb\xc3\xcf\x62\xec\x63\x8b\x97\x34\x64\x19\xa8\x73\x81\x65\xdc\x90\xbc\x97\x7b\x26\xeb\xe5\x3a\x80\x2e\xa5\x88\xeb\xb0\xcf\xf6\x43\xc8\x79\x2a\x05\xab\x48\xea\x05\x87\x54\xe4\x7b\xc8\xb7\x03\x1d\x3c\xb9\xc6\xd1\x5e\x2d\x8d\x6a\xb0\x91\x40\x1e\x52\x96\xc1\xe2\x97\x5b\x23\x47\x13\x08\x43\xb6\x3a\x02\x61\xc8\xf7\x10\x5f\x2d\x8e\x8a\xd7\x00\x19\xd9\x86\xe2\x8c\x45\x7c\x40\x2b\x92\x6a\x7c\xd0\x8a\xa4\xfe\x71\x58\x45\x76\x14\xd6\xe5\x36\xe9\xae\x77\xb9\x4d\xd2\xfb\x17\xf0\xf1\x80\xac\x27\xec\x21\x1b\xa9\x44\xf6\x90\xa5\x4f\x10\xf6\x90\x34\x30\x15\x92\x90\xf4\xa8\x05\x49\xc8\x76\x35\x43\x12\x92\xc6\x9c\x42\xff\x91\xc6\x4d\x43\xf9\x91\xc6\xe9\xc3\xdf\x91\x26\x0c\x41\xc7\x91\x82\x66\x5c\xee\x6d\xe9\x7d\x3c\x9e\x88\x76\xb8\x32\xb6\x3e\x24\x57\xc6\xd2\xc1\x04\x57\x46\x76\x6c\xa5\x70\x65\x6c\xdd\x08\xaa\x8c\x34\x21\x19\xaa\x8c\xef\x05\xbf\x44\x4d\x59\x59\x17\x84\xce\x06\xbd\x5c\xe4\x0b\x2f\x44\xc2\x35\x21\x9e\x65\x23\xb9\x80\xf7\x88\xbf\xc5\xdc\x25\xc9\x3f\x33\xfc\x0a\xc2\x22\x90\x16\x97\xe1\x78\xf6\x2b\x28\x1d\x1e\xac\xa1\xb5\xd8\xf9\x05\x57\xc2\x7d\x8f\x0c\xba\x60\xa8\x33\x89\xf7\x5a\x95\xad\x91\xae\xe4\xc0\x60\xb8\x9f\x4c\x16\x4b\xc3\x33\x54\x16\xa9\xaf\x07\x2a\x8b\xd4\x66\x06\x7b\x45\x2e\xcc\x01\xb0\x57\x94\xa5\xad\xf9\x5a\x76\x32\xa5\xb9\x37\x68\x9d\xbe\x4e\x48\xf6\xfc\xd2\x89\x42\x6f\x13\xd8\x1b\x54\x8c\x2f\x31\x31\x9c\x1a\x62\x48\xf9\x51\xd2\xa4\x0c\xd4\x84\x07\xa3\x99\x89\x04\x0f\x46\xd3\x12\x0e\x0f\x46\x07\x8c\x34\xe1\xc1\x68\x1e\x7f\xe1\xc1\x28\x62\x81\x27\x44\x18\xdd\x3c\x96\xeb\xc4\x01\x8e\xa8\xbc\x88\xee\x3b\x90\x3f\x17\x14\xa0\x0a\xdd\xcb\xdd\x42\xb3\xf3\x45\xac\xb6\x3e\xc9\x0b\xe4\x47\x03\xb7\xae\x0b\x03\x90\x53\xe3\x42\xf5\x75\x36\x10\x01\x08\x39\x40\x5e\xa0\x50\x0d\xe7\xde\x36\xc7\x53\x3b\x22\x00\x97\x66\xf7\xeb\x22\xf6\x70\xbf\x20\xbc\x9c\xd7\x32\x40\x5a\x80\xd4\xb5\x7c\xe8\x06\x0d\xde\x2e\xba\x61\x37\x47\x46\xc3\xc4\xd1\x54\xcf\x2e\xed\x3f\x2e\x55\x8f\x42\x76\xfb\x6d\x90\xbf\x4b\xf5\x96\xc5\xdd\x87\x80\xa6\x73\x2a\x7c\x3b\x53\xdf\x0b\xe0\xdb\x98\x7a\xee\x6b\xf0\x75\xac\x1c\xe7\x25\xb3\x18\x2f\xe0\x21\x13\x7d\xfb\xfa\xb6\xa5\x0e\x72\x54\x5e\x6e\x4b\x3a\x14\x20\xee\xe8\x3a\xdb\x2e\xb0\x1f\x55\x8c\xae\x6f\x5b\xea\x0b\x15\xfb\xfa\xe1\x47\x46\xed\x87\xb7\xa3\x18\xbe\x74\xe9\xc1\xb5\xeb\xbe\x2d\xaa\x2f\x5b\xe3\x16\xe5\x5c\xc6\x90\xd4\x95\x8b\x40\x6e\xa4\xe3\xfa\xe0\xc2\x54\xa8\x02\xf1\xa8\x9f\x0d\xce\x8f\x6e\x82\xcb\xf5\x88\x38\xec\x33\xe0\xc7\xb8\xe6\x00\x41\xd6\x77\x07\x17\x48\x11\x99\x3d\xaf\x47\x56\x1f\xff\x20\x45\xd0\xd9\xfb\x88\x2e\xe6\x47\xbf\x5e\x81\xe6\x24\xaf\xc7\xb3\x3f\x8d\xc4\x5b\xbc\x9c\xf9\xe6\x51\x39\x3f\x5e\xd2\x4f\xf6\x33\x8d\x67\x68\x00\xe0\x8e\x3a\x82\xaf\x17\x28\x4a\x57\xc1\x4b\xc7\x71\xe6\x84\x6b\xa4\xe9\xed\xbf\x80\xe0\x18\x76\x0a\x9e\x66\x71\xa9\x2e\xc8\x56\x3d\x14\x5c\xec\x72\xa2\x7e\xc0\x4d\xd2\x97\x92\xe9\xdd\x74\xb4\x5c\x3f\x80\xc7\xf8\xee\xcb\x33\x5f\xa7\xc0\x4c\xd2\x4d\xb1\xb9\x0f\xb9\xef\x0f\xae\x2b\xf7\xff\x94\x6a\x37\xfb\x9f\xd3\xeb\x3e\x18\x85\xea\x07\x06\xb0\x4e\x85\x6b\xc8\x63\x98\xef\xd0\x9f\x74\x73\x06\xee\x83\xf4\x5c\x2a\x75\x73\xae\x14\x81\x3f\xef\x6f\x5b\xec\xba\x65\xe1\x48\xa9\xda\xd6\xe0\x48\xe9\x9e\xb5\xe0\x48\x29\xda\x44\xe0\x48\xa9\xc7\xbe\x4f\xeb\x98\x3a\x37\x78\x21\xea\x30\x77\x11\x7b\x86\x96\x72\x5e\xd4\xb9\x7c\xe3\xcb\x76\x07\xba\x0b\x3d\xcc\xb1\xf5\x96\xed\xbb\xf8\x9d\x8b\x67\xa8\x9b\x9e\xec\xf0\x3b\x3f\xee\x53\xae\xa7\x48\x9d\x52\xd0\xab\x34\x45\x2b\xec\x2a\xdd\xc8\xdc\x9b\x53\xa4\xe1\x0e\xf7\x77\x88\xec\x9e\xe5\x60\x5d\x69\x26\x48\xc2\xba\xd2\x3d\x73\xdd\x15\xce\xbb\xee\xf3\x44\x38\x57\x9f\x07\x72\xc1\x61\xab\x84\xd2\xb0\xce\x6e\x92\xb9\x45\x61\xba\x01\x1a\x51\x4e\xde\x4d\xc8\x0d\xea\xa6\xb5\x8e\x69\x07\x03\x4b\x35\xca\xea\x86\x8e\xdb\x93\xef\x2d\xb2\xb3\x1d\xf4\x1d\x2d\xd3\xa8\xaf\x9b\x0c\x6c\x91\x4f\x20\x66\x69\x5a\xfd\xef\x81\xa5\x87\xed\xfd\x26\xa4\x09\xa4\xbf\xbc\x61\x9c\x85\x2c\x29\x6f\xa2\xed\x77\x7b\xa7\xd9\x59\xde\x57\x75\xa6\x6e\xa4\x36\x35\xeb\x40\x5c\xfb\x40\xf8\xdc\x40\x69\x0c\x9f\x27\xd4\xc8\x6d\xff\x86\x2c\x6a\x4f\x14\x1c\x06\xf0\xed\xe6\x8d\x63\x00\xfa\x95\x94\x66\x45\xcb\xc2\xcd\x3e\x2a\xe6\xd4\x8d\x93\x60\x09\xe4\x75\x03\x40\x15\x7e\xf4\xdb\x3c\x37\x90\x1c\xd4\x2a\x61\x68\x84\x74\x2a\xd0\x03\x27\x74\x2a\x69\x36\xf4\xed\x16\xd9\x9c\x36\x1c\x9f\xd4\xee\xee\x13\x2e\x80\xe9\x7d\xce\x9b\x6c\x7f\xf7\x77\xe0\xc9\xe6\x14\xda\xe7\x1d\x6a\x7a\x7a\x64\x61\x34\xe4\x19\xdc\xdf\xc1\x8a\x81\xea\x71\x73\x26\x4a\x54\xb8\xfb\xdb\xf1\xd2\x2c\xd1\x1b\x98\x7d\x61\x72\x6e\x77\x3c\xe1\x11\xe0\x62\x59\xe0\x14\x26\x5c\x2c\xa1\xb4\xba\x89\x23\xd2\x5c\x73\x93\xb5\xb4\x84\x72\xb8\x09\x24\x12\xfb\xe1\xbe\xa8\xa9\xfd\x0e\x7f\x94\xe9\xcc\x12\xb9\x2c\x4d\xea\x37\x41\x91\x6a\x4c\xf7\x25\xfb\x85\x1f\xe2\xf8\xb6\xab\xf7\xe3\x19\xba\x42\x4e\xda\x66\x47\x8a\xb4\xe1\x8c\x82\x95\xea\x70\x04\xbf\xbd\x70\x41\xbd\x92\x37\xc7\x34\x83\x78\xef\xef\x98\x96\x7a\xda\x6f\x4e\x69\x06\x2b\x43\x1b\xb3\xf6\x2c\x25\xab\x69\x69\x0b\x84\x19\x26\xd5\x59\x60\x86\xc9\x4f\x45\xf8\x4b\xaa\xdd\xb6\x0f\xd9\x09\x6d\x4c\xa6\xd5\xfa\x51\x2d\x17\x1b\xe7\x31\xad\x8f\x37\xae\xed\x60\x7b\xbf\x09\xe2\x5c\xcd\x9e\xfa\x59\x2f\xea\x08\x3c\x87\x42\xf8\xfe\x39\xfb\x50\xe9\x6e\x4f\x6a\x36\xca\x6d\x50\x00\x03\x38\x64\xb2\x3b\x6b\x7e\x4e\x33\x14\x3f\x48\x64\xb2\xf9\x07\x74\x00\x1e\x2e\x6e\x8e\x73\x73\x5f\x63\x41\x76\xb2\x73\x9a\xd3\x6d\x74\x7b\x9a\x13\xf2\xe0\x06\x4d\x52\x83\x0a\x6c\x34\x0b\x10\xc8\xbc\xe1\x6a\x34\x71\xfc\xfe\x36\xc8\xd5\x5c\x89\xb0\x04\x40\x1d\x9e\x37\xf1\x54\x69\x9f\x13\x58\xaa\x62\x05\x6b\x4c\x9a\x5c\x0c\x69\xcc\x82\x59\x26\x6f\xfc\x2a\x1e\x39\xee\x17\xab\x06\x2a\x87\x64\x32\xc2\x04\x4a\x26\xb3\x00\x6b\x4e\xa8\x61\x16\x30\x9e\x29\x35\x4c\xa2\xa1\xfd\x0e\x69\x2e\x27\xd7\x0e\x15\xc7\x23\xb8\x61\x32\xe8\x61\xb9\x61\xc4\xa6\x90\x1b\x66\xb9\xe4\xe4\x86\x31\xa6\xed\x77\x38\x17\xc3\x1f\xa8\xf2\xf4\x05\xa4\x31\x0b\xc4\xcd\x84\x10\x66\x87\x41\x6d\x7a\x17\xea\x0d\xbd\x4b\x9a\x13\xfe\x23\xa8\x49\x83\xd5\xef\xdb\x0a\xba\xe1\x64\xbf\x22\xbd\x09\xcf\x57\x5d\x40\xac\x02\x38\x60\x4a\xb2\x7f\xc1\x01\x53\x0c\x20\xfc\xb1\x5d\x68\x40\xff\x55\x9d\xd1\xd4\xfa\xdb\x2e\xb4\x70\xfe\xbe\xdd\xa2\x1b\xc2\x2c\x65\x0c\x60\xf4\xf9\x03\x9d\x58\x4b\xc5\x4f\xea\xc6\xea\x33\xe7\xb7\x43\xa4\x75\xb8\x60\xe2\xf6\x3b\x04\x49\xee\xcf\x9b\x7c\x41\x9d\xeb\x43\xc8\xa0\xdf\x31\xe2\x87\xef\x90\x60\xac\xc7\x14\xea\x99\x6a\x90\xe7\x8f\xdd\x45\x57\xcd\x4f\x27\xd1\xf4\x19\xe0\x3c\xed\x4f\x76\x1d\x9d\x0a\x3f\x10\xad\xa0\xfb\xc8\x9f\x3c\x8f\xfb\x99\xd3\x89\xc9\xf5\xc5\xbb\x7e\xff\xa6\x4b\xbc\xfe\x71\xdf\xef\x3f\xf0\xfb\x52\xe7\x46\x46\x0a\x22\x0f\xd6\x9a\x09\xd8\x75\xc2\x5a\x53\x3d\xab\x43\x5a\x53\xe1\x3f\x4f\x48\x6b\xba\xf2\x05\xce\x9a\x2e\xd8\xc2\xaf\xeb\x5e\xa0\x6e\xa4\x2d\x98\x99\xfd\xeb\xd2\xe5\xd0\xc6\x0e\x1c\x69\xf3\x9b\xd4\x67\x7f\x13\x72\x65\xfb\xe4\x3b\x9c\x36\x6d\x07\xb0\xda\x14\x5d\xd3\xbf\xd1\xc0\x2c\xe2\x9b\x43\x5f\x24\xdf\xf9\x76\xcd\xd9\x59\x93\xbf\x41\x36\xff\xf4\x5d\x74\x7c\x05\xdb\xef\x3b\xcc\x76\x11\xa2\x7e\xdf\x61\x76\xee\xc2\x88\x1c\x9e\x7f\xfb\x13\x7e\x90\x42\x1a\xb5\xfd\xfb\x0e\xba\xdd\x58\x14\xb8\x76\xba\x5b\x1b\x5c\x3b\x1d\x70\xe9\xfc\x0d\x57\xa3\xcb\x60\x12\x19\xc9\xee\x01\x09\x4f\x83\x44\x25\x21\xe1\xe9\x9e\x10\x7f\x53\xf4\x5b\x9f\x81\x9f\xdb\x0f\x4d\x65\x0e\x82\x13\xa6\x9e\xa6\x20\x83\xa9\x27\xfe\x7d\x54\x99\xe8\xb5\x2b\xd6\xc9\x86\xa5\x57\x78\x83\x1f\xc8\x5b\xa2\x60\xc2\xd4\x13\x7b\x62\x08\x95\xb9\xaf\xc1\x94\x75\x85\x87\xe8\xd5\x3e\x0f\x73\xa1\xcd\x07\x49\xcb\xe0\x9d\x5f\x76\xbe\xc3\x33\x10\x1c\x1b\x12\xf5\x03\x96\xd9\x50\xd8\x5f\x4a\x6d\xce\x33\xb0\xb5\x99\xd5\xf0\x5b\xbe\x4b\x59\x58\x61\xb5\xd6\xfd\x96\x50\x6d\x5e\x83\x52\x8f\xa6\x01\xc9\x4e\x33\x52\xf3\xc7\xe6\x0f\xb1\x72\xca\x8d\x23\xa0\x2a\xdc\x38\xcb\xe0\x54\xb8\x71\xba\x68\x38\x70\xe3\x54\xed\xce\x3f\x82\xc3\x8c\x21\x86\x27\x27\xf6\x62\x71\x6b\xee\xae\x58\x02\x81\xf7\xec\xf4\x98\xda\x9d\xce\x84\x1d\xec\x69\xce\x31\x75\xfd\xfb\x14\xd0\xda\xcd\x4f\xbd\x3c\x44\x57\x80\x70\xd5\xf6\x35\x4d\xb6\x99\x84\x93\xad\x7f\x3f\x20\x0d\x72\xe2\x42\x9b\xe3\xfa\xc2\x06\x2a\x04\xd2\xef\xb6\x30\x76\xca\x9f\x67\x4a\xd3\xa8\xe1\xd6\xa9\x9a\x8e\x7e\x3f\xeb\x4d\x27\x11\x29\x06\x76\x77\xfe\xc8\x13\x5e\x7b\x64\xe5\x04\x28\x5e\x43\x3f\xe4\x12\x93\x37\xc7\x9d\x82\x60\x03\x83\x9c\x7f\x0f\xd5\x0e\xef\xe3\x39\xb4\x87\x1f\x7b\x8c\x7d\xe9\xf7\x18\x91\x44\x5d\x71\xd9\x6d\x59\x43\x64\x99\xa9\x70\xb0\xe3\x54\xe3\xc1\x20\xbe\x69\x5a\x40\xe1\xbd\x29\xcb\xd0\x19\x88\x6f\xaa\x76\x69\x78\x6f\xbe\x3f\x68\x03\xd9\x15\xbb\x09\x84\x96\x0d\x07\xf7\xa5\x34\x37\xbe\xd7\x76\xa6\x45\x30\xfb\xe9\x98\xe7\x50\xb9\x5e\x5c\xf3\x21\x5e\x7e\x3c\x31\x51\x1a\x84\x38\x65\x75\x76\xc1\x87\x9d\x4f\xd0\xad\xe7\x00\x25\x05\x85\x05\xa6\x9c\x9d\x41\xfa\x14\x3b\xc6\x6b\x0b\xf3\x19\x0e\x8d\x74\x12\x84\x38\x61\x1f\x3d\x9c\x6e\x20\x12\x49\xc8\x71\x42\x97\xd7\xc3\x9e\x63\x8c\xfb\x53\x11\x49\x8c\x2c\x44\x39\x65\xe9\xfb\x84\x29\x27\x0c\xe6\x86\x28\xe7\xfb\xc3\x1f\x0c\x21\x5b\xf4\x03\x40\x95\x20\xcf\x0f\xbb\xce\x1a\xe5\xcf\x2c\x53\xf8\x75\x02\x46\x98\x84\x46\x27\xd5\x62\xa1\xd1\x09\x3b\x13\x86\x9c\x70\x24\x60\xc8\x89\xce\x44\x81\x07\x27\x44\xe0\x7d\xe0\xa8\x74\x18\x1f\xb0\xf6\x97\xc7\xa2\x87\xb8\x85\xd9\xbc\xd6\x8c\x4b\xd5\x41\xaa\xe8\xc8\x8c\xc7\x23\x52\x7a\x9f\x02\x96\x1f\x82\x1b\xda\x4e\x96\x4f\x1e\xe9\x09\xed\xcd\xd2\x37\xf1\x10\xb2\xeb\xd2\x7d\x26\xa4\x9c\x76\xf2\x24\x27\x93\x29\x03\xed\x8d\x78\xe9\x29\xbd\x8d\x1b\x2c\xec\x36\xc5\x98\x74\xd8\x6d\xca\x1a\xc3\x1f\xf4\x25\x5a\x0a\xf4\x36\x01\xfd\x7f\x3e\xc4\x76\x2d\x71\x0b\x1f\x32\x8a\x85\x49\x84\xf7\xe6\xfb\x83\x26\x04\x73\xc3\xf9\x43\x60\xef\xfa\xf7\x14\x6b\x1d\x81\xfe\x04\xc1\x47\xd5\x87\x1c\x6c\x47\x9e\x60\xde\x3d\x13\xa5\xa0\x77\x1a\xa7\x63\xca\x72\x7a\x8c\xfa\xb2\x08\x0e\x6e\xda\x47\x1e\xa2\x24\x96\xa0\x81\x0f\x38\xfa\x06\x07\x3e\xba\xcd\x0c\x30\x86\x51\x67\x19\xf8\x06\xa1\x4e\xa4\x13\x36\x41\xe3\x6a\x5e\xdf\xbe\x40\xa7\xe1\x4f\x53\x3c\x48\xa8\xb3\x5c\x80\x12\xea\x18\x8b\xff\x40\x0b\x6c\xe6\xef\x43\x3e\x9b\x07\xdd\x67\x29\x99\xe9\xb3\xe5\x08\xf9\x8c\x67\x46\x4a\x5b\xf6\x86\xdf\xb1\x37\x9c\xd5\x70\x73\x6a\xb2\x78\x34\xb8\x0a\x5a\xfc\x40\xce\xa9\x1b\x14\x42\x9d\xa5\xf1\x1e\xb2\x9c\x80\xb6\x39\x21\xcb\x59\xc6\xc9\x41\x90\xb3\x02\x45\x49\x82\x1c\x50\xf6\xf3\x11\x46\xd8\xee\x26\xcf\x4d\x23\xb8\x7c\x37\xbb\xbf\x2e\x5c\x8b\x6c\xb8\x0f\x07\xae\x6e\xcb\x08\xec\x4d\xeb\x80\x03\xcb\x08\x98\x07\xbe\x5e\x21\x1b\x1e\x53\xdb\x9c\x9f\xf7\xf3\xdf\xff\xa6\x7a\xc9\xb3\xa9\xd0\xbc\x66\xf6\x08\x08\x0b\x47\xcc\x3e\x69\x40\xed\xb2\x34\x32\x42\xdb\x92\x7b\xa2\xc3\xd7\xab\xfb\xe5\xf1\xa4\x81\xac\x7f\xa0\x17\x33\x62\xf0\xd1\xdb\xe3\xbb\x10\x87\x69\x49\x7d\x48\xb8\xd8\x8d\xf7\xa4\x81\x24\x86\xfa\x64\x19\x7b\xf6\xe8\xeb\x51\xbd\x83\xfb\x64\x99\x78\xf9\x78\xd4\xd0\xef\xfb\x1e\x92\x3d\x35\xae\x91\xe3\x50\xfc\x24\xec\x27\xfb\x3c\xf2\xea\xc7\x11\xe4\xef\x25\xd0\x0b\xb2\x82\x7c\x8f\xf4\x8f\xce\x0f\x30\x0c\x96\x6f\x5b\x41\x8a\x28\x34\x88\x49\xb8\x19\x4f\x94\x8f\x50\x9e\xc4\xea\x7f\x06\xf3\xc2\x87\x92\xbd\xfa\xd2\xc5\x41\x98\x7a\xc1\x33\x29\x26\x33\x9c\x26\x69\xe6\xd3\x4b\x7e\x84\x01\x16\x2f\xc9\xc5\x9e\x18\xa1\x2e\x09\x75\xa2\xf7\x13\xd4\x69\x0e\xe4\x5b\xf5\xa8\x70\x9f\x28\x30\x18\x4a\x12\x86\x92\xd4\x9c\xf2\x92\x0e\xa1\x43\xfd\xc5\x4b\x63\x0c\xdc\x4b\x76\x9c\xc9\xf5\x90\x95\x2c\x6d\xd1\x92\x95\xec\x60\xfd\x17\x76\x48\x31\x78\xdf\x4e\x2c\x34\xf2\xe0\xed\x56\xce\xfb\x28\x4e\x56\xb4\x13\x5c\x88\x70\x84\xcf\x24\xb5\x91\x41\x55\xb2\x8f\x73\xef\x4e\x7c\xa3\x30\x08\x46\x76\x18\x24\x04\x23\xcb\xf0\x48\x09\x46\xa0\xbc\xc8\x17\x1d\x55\xc6\x8a\x7c\xa7\xb3\x8f\x6e\x54\x49\x15\x7d\xe2\x45\xe6\xea\xbb\x78\x41\xe8\x11\x81\x16\x7e\x92\xa2\xe3\x51\x7e\x12\x0f\x1d\xaf\x66\x2c\x03\x84\xdf\x4f\x93\x9d\x7b\x6e\x00\xfb\x30\xf7\x47\xbf\xd3\xc2\x9e\x4c\x9f\x90\xae\x46\xba\x43\x62\xd2\x4c\xe9\x85\xc3\xa4\xb8\xb1\x40\x4f\xd2\x85\x4a\x85\x9e\x64\xee\x3e\x8a\xe4\xda\xfb\x28\xa6\xd3\xeb\xfb\xbb\xcf\xbe\xf9\x42\x35\xec\xc9\x56\xd6\x12\x63\x37\xde\x20\x80\xce\xc1\xcc\xdd\x5f\xfe\x20\xa4\x09\x2d\xf8\xfd\x34\xe2\x09\x87\x6e\x42\x6d\x52\xf4\xa8\x42\x6d\x52\x05\x8a\x85\xda\x64\x7a\x50\x80\xd9\xa4\x18\xa3\x0d\xb3\x49\xdd\x33\x50\x88\x08\x1b\x9c\x74\x0a\xdb\xf3\xab\x44\x36\x38\xfa\x25\x7b\x78\xf7\xc4\xc2\x22\x69\x0b\x56\xf5\x21\x4a\x36\xf4\xc1\x12\x3e\x69\x3b\xdc\x57\xdf\x45\xbc\xaa\x73\x19\xb8\x78\x28\x6f\xf2\x5d\x8c\x59\xf7\x43\x74\xd7\xf2\x5a\x4e\x19\xbf\x79\x72\xdf\x6f\x5e\x44\x93\xfb\x8c\x68\x0a\xcc\x22\x05\xb5\xca\x38\x2c\x2a\x45\xdb\x0c\x2c\x2a\xc5\x28\xdb\xf7\x53\xea\xab\xea\x27\x1c\x28\xe1\x86\xfe\x1a\xda\xe0\x7e\xf1\x9e\x9b\x7e\x98\xce\x23\x12\x4f\xf7\xd9\xab\x7b\xeb\xdf\x2b\xd2\x56\xfa\xd0\x83\x29\xce\x87\xa0\x7b\xb3\x68\xe0\xdf\xb5\x95\x43\xa0\xd2\x34\x8e\xc1\x9f\x92\x8a\xbd\x17\xf0\x21\x1d\xfb\xf2\xa7\x08\x32\x00\x67\x4a\x75\x43\x92\x33\xc5\x43\x99\xcc\x28\x46\x37\xbe\x37\x27\x3a\x07\xc4\xb8\x08\xcf\x86\xaf\x5e\x29\x3f\x84\x57\xea\x70\x49\x69\x71\x13\xd4\xed\x35\x91\xc4\x12\x88\xd0\xfb\x16\xc5\x5f\xa2\x4d\x56\x32\x97\x9b\xb8\x42\x1a\x62\xde\xef\x8c\xd0\x15\xf1\x2f\x47\x04\xb3\x38\xe0\x5c\xf9\x1e\xa2\xe1\xe4\x50\x1b\x6b\x04\xe7\x4a\x31\x1e\x05\xce\x95\x61\xc4\x0b\x9c\x2b\xc5\x40\xb2\xf7\xc7\x24\x50\xe8\xfd\x1c\x96\xfd\x32\xbe\x20\x7b\x0d\xe7\x94\x50\x47\xef\x77\xd6\x68\xc2\xd5\xbe\xf0\x8f\x8d\xfd\xcc\x57\x55\x33\xcb\xdf\x07\xb5\x98\x4d\xea\x35\x94\x42\x8f\xed\x0b\x6a\x9f\xf1\x91\x30\xb9\x0c\x23\x64\x60\x72\x19\x1e\x17\xdf\xc7\x99\xb2\x1f\x4a\xfe\xf0\xab\x8b\x6b\x6a\xc1\xe1\xa4\xef\x17\x30\xe4\xd8\x7c\xc3\x2d\xf6\x44\x79\x74\x8c\xd0\xe6\xe7\xe1\x65\x6b\x61\xaf\xfa\xf6\x6b\x12\x22\x6d\x78\xed\x3c\xbe\x44\x90\x61\xda\x61\x70\xde\x8b\x98\xfa\x82\xff\x77\xb8\x8e\x5f\x79\xbf\xbc\x86\xcf\xfc\x9b\xb9\x0b\x1a\x98\x46\xaa\xc5\x82\x06\xa6\xc1\x92\xb0\xa0\x81\x69\xe4\x87\x2e\x58\x60\xda\xdc\xf7\xe9\x96\x6f\xd1\x2c\x58\x60\x06\x31\x2c\x0b\x16\x98\x4a\xf0\xee\x3a\x0e\x24\x6c\xf7\x79\xf2\xa3\xbf\x31\x58\xb0\xc3\x0c\x22\x7d\x96\xec\x30\x0b\xaf\xf9\x82\x1e\x66\xac\xfd\x90\x89\xd9\xd3\x2f\xc9\x14\xc7\xf5\x77\xf8\xe9\xf0\xc9\x2c\x78\x63\x06\x61\x2b\x0b\xda\x98\xc2\x11\x6c\x49\x1b\xb3\x62\xff\x40\xf1\x5f\x34\x41\xaa\xe8\x83\x2a\x91\xb1\x4e\x54\xc8\x92\x36\x06\x8a\x81\x75\x18\x75\x41\xc2\xcb\x3a\x64\x8a\x6e\x7e\x08\xed\x2b\x2c\xcd\x04\x49\xaf\x6d\x43\xf8\x55\x28\x6e\xaa\x2f\x3c\x4c\x30\xaf\x45\xb9\xa4\x6d\x95\x65\xb1\x28\xad\xda\x84\xc9\x35\x49\xa4\x16\x4c\xfc\x22\x69\x75\xeb\xa8\xd6\x94\xef\x57\xfb\xc8\x77\xf1\xb4\x1e\x5e\xbf\xdf\x7d\xcb\x32\x20\xbc\x52\xb9\xe6\xdc\x4c\x9a\x49\x0e\x3d\x59\xa7\x0b\x76\x98\x4a\x96\xd8\x92\x1d\xe6\xb0\xe0\xa6\xcc\x4c\x46\xa4\x99\xa4\xce\xcb\xb0\x8a\x0e\x47\xa7\x93\x7f\x61\xf3\x55\x12\xc2\x11\xe9\xcc\x0b\xbf\x44\x62\x25\xee\x81\x05\x3b\x4c\x92\xdc\xb5\x60\x87\xf9\x5e\xf0\x07\x47\x9f\x83\x2a\x75\x58\xd7\x17\x25\x13\xfc\x38\x7c\x61\x10\xf9\x1e\x94\x4c\x88\x23\x94\x57\x0b\xd6\x98\x20\x90\x7b\xc1\x1a\x93\x78\xa6\x17\xa4\x31\x5f\x01\x7c\x08\xc4\xa9\xe2\xe0\x0c\xd6\x66\xf8\x02\xb3\x30\xfe\x3a\x99\xae\x83\xa0\x12\xc8\xcb\xd6\x31\xf4\x73\x1f\x16\x4f\xc0\xa4\x5d\xae\xb1\x2d\x9d\x59\x93\x68\x91\xa0\x78\x13\x86\xd0\xcd\xd7\x41\xc6\x10\xd1\x40\xeb\x00\x69\x90\x78\xad\x75\x60\x6d\x5b\x00\xda\xac\xe3\xd3\x64\x3a\x9c\x23\xeb\x98\x56\x98\x2e\xdc\x31\x96\xbe\x80\x7e\xe0\x82\x20\x19\xa8\xfb\x4c\x98\x12\x47\x2d\x3c\x0a\xb2\x13\x2e\xc8\x68\x06\x3b\xe4\x82\x8b\xa6\x93\xbc\xb6\xe0\xa2\xf9\x1e\xa2\x64\xa2\x59\xf6\xbc\x34\xc5\xd3\x3e\x17\x20\x20\x1d\xc9\xc0\x4c\x6f\xbd\x3d\x2f\xa2\x44\xae\x83\xc0\x4a\x8c\x6f\x0b\xc6\x9a\x41\xb4\xce\x82\xb1\xe6\x7b\x88\x56\x87\x1b\x2f\x0f\xa5\x38\xfc\x54\xf6\x3b\x47\x66\x3b\x78\x26\xe9\xa5\xf4\x3e\xf2\xcd\xce\x4f\x5d\x46\x7c\x34\xe1\x66\x76\x1c\x92\x4e\x4a\xbf\x69\x55\x5d\x7f\x3b\xf2\xc6\x6b\x86\xdb\x65\x00\xe9\x76\x75\xc2\x2e\x58\x87\x1d\x9e\x45\xfc\xff\xbe\x5f\xfd\x10\x25\x2f\x26\xdd\xa0\x46\x86\xe7\xa4\x22\x71\xc9\x11\x48\xb5\x97\x5d\x59\xe9\x0c\x34\x98\xb5\xff\x48\xff\xf0\x07\x6e\x6a\x27\x0d\x7c\x37\x2b\x95\xc0\x20\xac\x2c\x05\x21\x3a\xcc\x4a\xe5\x11\x68\xc7\x7b\xc5\x7f\x07\xcc\xbe\x9c\xcc\x27\x7e\x6a\x17\x30\x3a\x0c\xd0\xfd\xeb\x80\xc7\xed\xb0\xbb\x05\x52\x51\x40\x9e\x0e\x96\x13\xeb\xc4\x1b\xef\x3a\x3d\x9d\xd4\xcd\x12\x58\xf1\xfb\x0f\xf3\x64\xb8\x7f\x11\x6c\xe0\x9c\x46\x6d\x29\x0e\xd0\x65\x3f\x75\x1a\x84\xbd\x73\x2f\xd4\x8b\x80\x02\xa5\xe5\x05\x15\x6a\xf7\x65\xa2\x25\x9c\xae\xd0\xb1\xae\x74\x35\x13\xae\xb3\x17\x07\xe0\x89\xd3\xee\xfb\x0e\xbd\x7d\x2f\xda\x0b\xde\x21\xe5\x11\xd6\xce\x3d\xc7\x88\xbe\x69\x4e\x75\xe0\xb7\xf6\x74\x40\xcf\xd9\xd3\x5e\x3d\x27\xad\x05\x24\xac\x7b\x5e\x81\x97\x58\x6c\xe6\xa7\xca\xd4\xbe\xef\x13\x8d\x10\xdc\x47\x93\xd9\x73\xf2\x67\xa8\x0f\xcf\xa8\xc9\x90\x3e\xb3\x8e\x1f\xcd\x77\x8e\xfd\x2c\xc0\x97\x19\x5a\x65\x93\x51\x33\x4a\xd7\x1d\xd8\x49\x4d\x7f\xae\x12\x77\x45\x8e\xd8\xfb\x05\xd0\x12\x57\x2a\xfd\x9f\x4f\x89\x6a\xca\x5d\xe2\x69\x96\x12\xf2\xa1\x53\x5d\xd2\x0f\x62\x77\x3f\x4f\xca\xe1\xf8\x5b\xc8\x3d\x56\x91\xd2\xd5\x48\xd2\xa9\x68\x26\xae\x43\xfa\xec\x3a\xd2\xa8\x87\xde\x59\x14\x83\xf1\xb4\xda\xb3\x2f\x47\xc3\x41\x27\xa0\x79\x74\xe5\x06\x47\x79\x40\x64\xd6\xf1\x32\x74\x4a\x01\x4f\xf2\xc9\x18\x41\x36\x53\x20\x96\x5f\xc5\xe8\x4c\xd2\x1b\x56\x31\x3c\x85\xc9\x0e\x0b\xcd\xf7\x87\x3f\x08\x8a\xa3\x1a\xd0\xd0\x24\xc6\x82\x05\xad\x4c\xa6\xf7\x55\x07\x48\x04\x5b\xc5\x28\x4c\x8b\x30\x0a\x93\xa0\xaa\x05\xaf\x4c\xba\x51\x4a\x1f\x03\x8a\xc8\x82\x25\xa6\x2f\x9f\xa9\xf4\xb9\x1f\xc2\xd9\x07\x99\xe1\x2a\x35\x40\x9b\xf2\x9a\x73\x2f\xab\xa9\xb0\x43\x2f\x62\x83\x16\xb4\x32\x1d\x37\xe0\x82\x56\x46\x08\xab\x05\xab\x4c\x77\xdb\x83\x55\x26\xd0\xe1\x56\x69\x32\xab\xd2\x7d\xa5\x59\x6d\x5f\x1e\xfe\x41\x95\x4c\x43\x58\xbe\x01\x60\xfa\x41\x57\x92\x92\xe0\xf4\x28\x00\x80\x1d\x48\x4b\xe8\x66\x06\x99\x14\x4b\xba\x99\x45\xd0\xcc\x82\x6e\xc6\x1c\x90\x05\xdd\x4c\x07\x1f\x6a\x15\x0d\xa1\x16\xd6\x75\xa4\x78\xcd\xd9\x98\x85\x0f\xdb\x4c\x75\x2d\xc2\x29\x13\x1c\xb8\x97\x9c\x32\x8b\xe8\x9b\x05\xa9\x4c\xad\x16\xc0\xae\x8c\xfb\x7f\x15\x19\x47\x99\x3d\x05\x67\x16\x36\x97\x55\x06\x44\x51\x7e\x74\x62\x1e\x46\xf7\x2c\xdf\x2e\x1a\xb0\x2c\xad\x22\x16\x98\xad\x24\xef\x56\xd5\x4b\xae\x19\x67\x5b\xd1\xea\x8a\x24\x87\x46\xa6\x76\xeb\xa0\xcb\x0a\x97\xcc\x92\x46\x46\x4d\x07\x16\x99\xef\x0f\x7f\xc0\xec\x12\x5e\x63\x65\x44\xf4\x17\xcd\xb1\x28\x59\xb0\xc8\xd4\x62\x4d\xc3\xda\xd1\x02\xb7\x60\x3c\xf4\xab\x68\x8d\xb5\xaf\x81\x77\x24\x9e\x6d\x95\x6f\x0b\xae\xd1\xbd\x1f\xe4\x54\x52\xa3\x20\xc2\x0a\xf5\x19\x0a\x9a\xe8\x76\x23\x36\x80\x74\x1a\x69\x72\x65\x0b\x2d\x9a\x5c\x39\x6d\xac\xa2\xc9\xb5\x53\x3b\x4d\xae\x9c\x55\x16\xfc\x32\x9d\xfc\x9c\x25\xbd\xcc\xe2\xf4\xb0\x0a\x21\x35\x98\x37\x56\x49\x4c\xbf\xf6\x1e\x08\x3c\xe4\x6f\x2d\x78\x67\x02\x5b\xf9\x2a\xfa\xd1\x1a\xa5\x2d\xb7\x22\x0a\x58\x2e\x23\xaa\x07\xa1\x69\xb8\x8c\x38\xa3\x93\xcc\xba\x60\x9d\x89\xb4\xef\x00\xd7\x01\xc8\x67\x95\x13\x2d\xd1\xa9\x46\xb0\x4c\x71\x2e\x13\xef\xd2\x6d\x8d\xbe\x33\xbb\x45\x17\x59\xff\x0b\x2b\x64\xc1\x03\x93\x4d\xc9\x70\x9b\xdc\x43\x45\xc8\x66\x5b\x4a\x5a\x88\x60\x56\x38\xc7\xc8\x66\x5b\x7b\x59\xdd\x9a\xf9\xbd\xb6\x97\x15\x2c\x9c\x96\x8b\xb3\xd5\xf4\x82\xbd\x7e\x6e\xd6\x8f\x13\xe2\xdb\x5e\xda\x9e\x10\x18\x67\x87\x8d\x02\x8d\x77\xec\xe2\x60\x34\x50\x7e\x70\x9a\x2e\x8a\x80\x5b\xfa\x09\xde\xd5\xe1\xb6\x65\xa0\xa7\x69\x36\xce\x42\x98\x4a\xb7\x41\xbf\x5d\x3d\x86\xe5\x47\x02\x20\xbb\x3f\xbc\x33\xb1\xa5\xec\x77\x82\xd6\x73\xb7\x0a\x5e\xb9\x50\x34\x98\x0e\xec\x6c\xc2\xf9\x46\x4e\xed\x2a\x58\x79\xbb\xb5\x7b\xfc\x26\x43\x84\x23\xee\x20\xe8\x67\xc1\x3b\x13\xcb\x65\xff\x5a\x23\xe6\x00\x0c\x65\xc7\xb1\xff\xf0\x6d\x5e\x78\x7d\xbb\xd0\x38\x0c\xc3\x9e\xde\xe4\xa0\xc1\xa7\xb0\x60\x91\x59\x38\x93\x3e\x6d\x8f\x67\x26\xd7\x54\x09\x75\x04\x82\x98\x85\x6f\x70\x49\x10\x43\xf4\xd4\xaa\xe0\xe7\xac\xc3\xfb\x1c\x2d\xd0\x46\xea\x41\xb8\x01\x79\x2a\x0b\xb2\x98\xa5\xf6\x0c\x59\xcc\xc2\x97\xb6\xa0\x84\x09\xf5\xf9\x8a\xe9\x16\x6b\xf6\x82\xf9\x25\xc1\x66\x5f\x15\xff\x19\x27\xf4\x55\x6b\x37\x2a\x8e\x5a\x13\xef\x81\x9d\x6a\x55\x6c\xb7\x78\xfa\x56\xad\x34\x3f\x7c\x06\xca\x22\x5b\x59\xad\x11\x5a\x04\xa4\x2e\x4b\x11\x55\x31\xe4\xaa\x8e\x54\x76\x00\x87\x1c\xee\x16\x7d\x92\x0b\xee\x96\x85\xd3\x6a\xc1\xdd\xb2\x70\xc1\x2c\xb8\x5b\x16\x1e\xb2\x55\xbf\x43\xdd\xc2\xbb\xb6\xa0\x6e\x49\x4c\x09\xab\x36\x32\x3e\x99\xe5\xb5\xe3\x55\x64\x1a\xd5\x6e\x03\xf8\x7e\xe7\xfb\xcc\x28\x58\x5c\x16\x8e\xa3\x55\x3b\xdf\x64\xd1\xd7\x61\xb4\x9c\xd7\xbc\xcb\x3e\x5a\x87\x83\xef\x98\x7d\x32\x3f\x89\x8e\x59\xb0\xb8\x24\xf1\x7b\xab\x92\x84\xd6\xac\xf4\xa0\x57\xd8\x9d\x2b\x72\x9e\x34\xa7\x05\x89\x8b\xde\xd9\x05\xaf\x4a\x25\x67\x61\x41\x97\x22\x8c\xec\x82\x2d\xa5\x1e\xc5\x01\xc7\xad\x35\x1c\x3f\x92\x7f\x55\xc6\xe1\x48\xd1\x6b\xb9\x6a\x72\x4e\x43\x9c\xc1\x91\xb2\x5c\x8d\x50\xa4\x7c\x1f\xf2\x21\x0e\x96\xce\xae\xc4\xd7\xc3\x39\x00\x32\x93\x9c\xc8\x30\xc9\x4c\x0e\x92\xad\x56\xc5\xb5\x84\xc3\x74\xd5\x4f\x18\x2e\x82\xeb\x17\x2c\x27\xf5\x20\xe4\x65\x41\x73\x92\xcd\x29\xb8\xac\xb7\x65\xe3\x80\x22\x3b\x63\xd5\x4f\x64\x7e\x7f\xfc\x15\xf3\xb6\x60\x47\xc9\xe9\xb4\x3f\x0f\x5a\x4e\x31\xa7\xad\xa2\xab\x4e\x5b\xc5\x06\x04\xf1\x89\xc0\x17\x0b\xe2\x93\x05\x08\xd4\x82\xf8\xa4\x1e\xa4\xe3\x2c\x88\x4f\x16\xf1\xf0\x0b\xe2\x93\xa5\xd2\x0b\xf1\xc9\x1a\x0e\xe4\x27\xb2\xd7\xb0\x51\x24\x25\x2b\xdd\x20\x3e\xf9\x3e\xe4\x1f\xf6\x1b\x2f\x7c\x87\x87\x45\x40\xd6\x82\xbd\x24\xe7\xbe\x9f\xbe\xe0\x1f\x68\x72\xce\x27\xc2\xf5\x0f\x82\x70\x97\xf4\x25\x38\x28\x17\xf4\x25\x4b\x93\x0a\x2c\x25\xe9\xb1\xa5\xde\x8e\x06\xdb\x77\x45\xa8\x0f\xbf\x7a\xdb\x03\x6c\xc7\xf5\x86\xcb\x10\xe1\x58\xef\xe9\x1f\x74\xc7\x4d\x06\x8e\xc5\xdd\x84\x90\xba\x2e\x6f\x8a\x2b\xbe\xc0\x2c\x42\xf0\x41\x4d\x12\x44\x3e\x2d\x98\x43\xd6\xd8\xd7\x04\x36\x17\xe7\xef\x8f\x17\xfc\x28\x30\x39\xc3\xd9\x45\x5c\x83\xa7\x4c\x48\x41\xd6\xb0\xeb\x1f\xc6\xc4\xc5\xfe\x38\x26\x88\xd3\xfa\x30\x26\xce\xd9\xc7\x89\x13\xbe\xc1\x8a\x72\xd9\x3d\x06\xe8\xf9\x36\xfc\x40\x87\x25\x50\x0b\x67\xdd\xcb\x34\x71\x7c\x60\x96\xc6\x4f\xbe\x2a\x19\xc9\xc3\xa9\xf4\x5a\xb2\x02\x0b\x3f\x5e\xb1\x4a\x46\x03\x62\xfe\x83\x2c\xa4\x1e\x40\xb3\x2d\xc8\x42\x16\x34\x8a\x0b\x7e\x8f\x05\x4e\xd6\x82\x8a\x23\xdd\x7e\x60\xe2\xa8\x87\x66\xa8\x86\x63\x4d\x2d\xa7\x61\x9d\x23\x6e\x76\xb5\xc2\x7e\xc5\xe0\x36\xc8\x9b\x1d\x05\x18\x3a\x16\xf0\x65\x0b\x86\x8e\x05\x10\xe1\x6a\x85\xa6\x31\x95\x1a\xac\xce\xb8\x12\x56\x03\x97\xec\x50\xef\x68\x95\xa8\xcf\xc3\x3f\x64\x35\xe0\x43\x06\xe2\xe1\x3e\x59\x70\x7a\xa4\x67\x49\x38\x3d\x72\xb2\x1a\xe1\xee\x58\x98\x8e\x17\xd4\x1d\x72\x0b\x2d\x18\x3a\x92\xfc\x88\x05\x41\x47\x36\x3f\xfa\x29\xe6\x0b\x67\xc0\x82\x88\xa3\x1e\x9a\xf3\x20\xe2\x58\x30\x5b\xad\x66\xb2\xf0\xf0\x43\xaf\x91\xf0\x94\xdc\x19\x1e\xa6\x6a\x23\x8b\x98\x18\xfc\xd5\x88\x83\x3b\x80\x00\x5b\x30\x71\x2c\x20\xc3\x16\x4c\x1c\xab\x5b\x0d\x70\x19\x88\x0e\x58\x0d\x7e\x2d\x75\xb3\xd6\xa1\xea\xc5\xf1\xb8\x5a\x37\x02\x94\xd2\xf0\xc9\x11\x1c\xb0\xda\x30\x40\xd3\xeb\x8b\x67\x28\x6c\xfa\x0c\xed\x9f\x8c\x94\xd5\x9e\x8c\x4e\xf7\x19\x62\xb4\x2d\x78\x5e\xba\x92\x28\x80\xdc\x5f\x42\xc5\x56\x0b\x9a\xc6\x49\xb7\x91\xa5\x7b\xe4\x5f\xd1\x6f\xab\x05\x93\x09\x55\xb5\x61\x82\xd2\x3a\xd2\xa4\xbf\x62\xf3\x68\x89\x0b\x05\xc9\xdb\x70\x88\x1d\x1a\x5f\x1b\xb0\x33\x4a\x8d\x86\xe5\x88\xc8\xe6\xd5\x34\x10\xd9\xb1\x44\x10\xec\x2e\x10\xb3\xc1\x49\xa9\xd8\xc6\xa1\xb2\x60\xbc\x58\xea\x63\x52\x53\xc0\xa8\xbe\x1a\x72\xf6\xb0\x0f\x14\xa7\x88\x22\x29\x2b\xc0\x2c\x58\x50\x56\xd4\x83\x70\x9e\xd5\xb6\x38\xf5\x43\x4c\x69\x17\xd3\x69\xa7\xd9\x9e\xd3\x55\x46\x07\x2a\x4f\x2b\x6a\x7f\x3b\x8d\x60\xa7\x4a\xa7\xc1\x93\x48\x5d\x68\x2e\x0c\x89\x58\xed\x62\x2e\x0e\xaf\xbb\x0f\xf1\xa9\x8b\xc1\x0b\xaf\x6d\x10\x5f\x05\xfe\x61\xd8\x63\x8a\x4d\xd7\xeb\x4d\x23\x50\x24\x1a\x51\xd8\x7b\xf6\x81\xda\x70\x34\x1b\x71\x3b\xf2\x34\xee\xbe\xfc\x83\xaf\x2a\x36\xa7\x7f\x20\x1e\xd1\xda\x1a\xd1\xd8\xc3\x45\x0a\xb4\xc3\xb4\x04\x94\x56\x4d\xf1\xd0\x4c\x2c\x4d\xce\xd0\x49\x18\x73\xb1\x60\x93\x08\x2d\xce\xb0\x49\xd4\xa3\x39\xa7\x1f\x92\x9e\x1d\xd0\x07\xc9\x82\x66\xd7\x40\x7c\x38\x5a\xf3\x0d\x67\x03\xed\x47\x9c\x86\xd5\x46\x6b\x25\x85\x6b\x35\xb5\x56\x4f\x0c\xed\xb5\x03\xfc\x23\xfd\x83\x36\xa0\xb5\xea\x8b\x80\x37\x62\x91\x9e\xb0\xa0\x7e\x58\x70\xe6\x2e\xa8\x1c\x12\x5c\xbb\xd5\x95\x7c\xf8\x96\x57\x57\xf2\x71\x04\xee\xc5\xee\x0e\xae\xa9\x5e\xfa\xb2\xb1\x13\x14\xa0\x14\xe4\xe0\x01\xdd\xc3\x1a\x88\xdc\x5e\x19\x73\x0e\x5c\x50\x3c\x18\x9a\xb3\x7a\x15\x85\xfd\xab\x68\x6f\x94\xc5\x3a\xee\xc8\x28\x60\x25\x57\x6f\xce\x0b\x5b\xd0\xd0\x74\x18\xa9\xae\x52\xc9\x6c\xeb\xcd\x71\xde\x6f\xbb\xf7\xfb\xb6\xc2\xcb\x87\x98\x3c\x68\x89\x9d\x48\x01\xad\x21\x1d\x40\x2f\xd8\xa1\x57\x87\x22\xfe\x20\xe6\x73\x75\xe2\xa8\x88\xa9\x5a\x30\x44\xc8\x95\xb0\xfa\xd8\x99\x7d\xfe\xa0\x2f\x10\x5e\x7d\xaa\x17\xd3\x7e\x02\xac\xc8\x2f\x59\x7d\xd3\xf4\x54\x7f\x30\x86\xe9\x0b\xa0\x76\xb0\xae\xe0\x6f\xa8\x87\x47\x57\x08\x1c\x96\x56\xa6\x6e\x66\x27\xd3\x10\x9a\x86\xef\x21\xde\x16\x3d\xa6\x7b\x8d\x61\xdc\x61\x88\x94\x15\xc8\x1f\x8e\x09\x45\x68\xff\xb6\x7e\xe4\x82\x6a\x70\xea\x61\xce\xe7\x5f\x6e\xd4\xd5\x43\xd6\x4f\xaa\x05\x33\xdf\x6e\x2c\x36\x6d\xf5\x05\x68\x1b\xa6\xc7\x12\x88\x19\xa6\xbe\x08\xf8\x17\x9a\x7a\x70\xd7\x0d\x4f\xa0\xe1\xd7\x5f\x78\x54\x69\xb7\x66\x6c\x6b\xb5\x3a\x2f\xf3\x51\xac\xd8\x79\xf8\x3c\x13\x9f\xf0\x9e\x05\x63\xc3\x74\x2b\x80\xb1\xe1\xfb\x83\xe2\xe4\x96\xad\xbe\x81\x61\x0f\xe1\xda\xf1\xb1\x03\xe8\xb8\xfa\x92\x60\x9c\xfb\x9f\x4e\x5a\x89\x01\x5a\xb0\x3a\x14\xcf\x3a\x9d\xe4\x53\xe2\x98\x57\x3f\x09\x06\xd8\xf7\xc9\xa9\xda\xd7\x41\x96\x25\x4d\x23\xf9\x54\x7f\x43\x3f\xa5\xbc\xf0\x19\xba\x65\xdf\xa7\x5b\x8a\xdf\xbc\xb9\xa6\x01\x50\xb3\xeb\x86\xe8\x9f\x00\xad\xcb\xfb\x5a\xb3\x7d\xfe\xaa\xdf\x33\x68\xb3\x30\x4b\xb4\xe2\x37\x61\x60\x87\x7d\x70\x75\x12\x6e\x8a\x0b\xfa\x53\x47\x3b\xd8\x18\x0b\x9e\x88\xaa\xd7\x0d\x9a\x88\xa9\xdb\x10\x9a\x88\x4e\x7c\xc8\x82\x26\xa2\x01\x98\xb4\x3a\xb6\x07\xf5\xdd\xfe\x89\xdb\x3a\x1d\x3e\xc8\xd5\x49\x4f\x5a\xfd\x53\x52\x9b\x07\x91\x8e\x92\x4a\xe0\xcf\xea\x77\x38\x18\x7e\xf4\xf5\x07\x25\x7f\x22\x73\xea\x13\xeb\x10\xa7\xab\xa5\x74\x88\xd3\x0f\xfc\xcf\xab\xc3\x9c\x9e\x08\xb7\x0e\x73\x3a\x84\xcb\x4b\xce\x08\x4d\x23\xfd\x13\xa5\xbd\xdb\x45\x0f\xdd\xe2\xd0\x7f\xa2\xb4\xa5\xcd\x79\xf6\x64\xe1\x43\x0f\xa5\xed\x6b\xc6\xc3\xc2\x60\x51\xd7\x37\x01\x65\x44\x81\x63\x63\x41\x19\x51\xf7\x38\xbd\xe4\xfc\x3a\x33\x49\xc5\x24\x26\x66\x75\xa0\x05\xaa\x63\x40\x9a\xa5\xda\x51\x7f\x99\x98\x56\x94\x34\xcb\xe9\x3c\x78\xa9\x83\xf2\xef\x3d\x61\x09\xa1\xd2\xaf\x92\xc7\x4a\x90\x4f\xe9\x56\x05\xc3\xc4\xd4\xd4\x3d\xf0\x81\x13\x1d\xf5\x1d\x9f\xfe\xfb\x5f\x53\x90\x8e\x83\xd6\xb3\x2f\x8e\x4f\xca\x4f\x2d\xe0\x83\x50\xb3\xc6\xe6\x3e\x64\x07\x0a\xdf\x25\xef\xb8\x78\x7d\x81\x0b\x1c\x5c\x03\x61\x48\x4f\x0f\xb2\x1b\x35\xb0\xc2\x66\xd1\xc8\xfb\x59\xff\x88\x2a\xf8\x26\x7c\xe6\xda\xbf\x07\x06\x69\x22\xf6\x16\x04\x16\x35\xf6\xf3\x74\x2e\x1b\xc1\x28\xca\x38\xe4\x31\x0c\x16\xf5\x20\xac\x65\xc1\x60\xd1\x40\x0b\x5b\x30\x58\x4c\x38\xf1\x16\x04\x16\x55\xd7\xf8\x20\xbd\x91\xc4\xae\xef\xc0\x48\x64\x00\xb5\xae\xe4\xd1\x33\xa1\x86\x7a\x32\x01\xe0\xdf\x71\x81\x04\x97\xbf\x18\xb2\xbe\xbd\xfc\x2b\x71\xf9\x12\x0b\xd2\x76\x10\x41\xec\xb9\x73\x54\x16\xcf\xae\xfa\x4b\xe8\x32\xcf\x93\x14\x69\x14\xc0\x68\xee\x0c\x48\x94\xd1\x58\x25\x56\xfd\xdb\xb8\x26\x39\x48\x0b\xfe\x8c\x56\xec\x9c\x6f\xaf\x9a\x64\x63\x2e\xf8\x33\x8a\x67\x0b\xf8\x33\xa6\x16\x54\x08\x34\xbe\x8f\xf2\x72\x27\x49\x06\xd1\x0e\x9b\x46\xd5\x8f\x01\x9b\xc6\x24\x35\x7a\x41\xa6\xf1\xbd\x40\x97\xe3\xe2\x76\x9b\x84\x40\xe3\xfb\xc3\x37\x16\x6f\x50\x34\x74\xed\x00\x19\xad\xb1\xb7\xc0\xe9\x8f\x9b\x87\xa8\x93\x16\x74\x5f\x90\x95\xdd\xce\xc0\x82\xae\xa1\x1c\x36\x8d\xef\x65\x1f\x72\x41\x3b\x75\x3f\x3d\x7d\x2a\xcf\xc6\x80\xaa\xd9\xa9\x35\x3e\x99\xb7\xec\xca\xb9\x67\x04\x9f\xfd\x36\xd0\xaa\xf6\x05\xeb\x45\xdd\x8d\x20\xb0\xed\xd0\x10\x37\xe6\x4b\xff\xd1\x35\x90\xdf\x7a\xd4\x18\x41\x66\x36\xea\x1d\x0c\x18\x72\xfc\xae\x81\x73\x17\xf8\xdf\x4f\x75\x44\x17\xe7\x7e\xba\x21\xa1\x4d\x8e\x4f\x49\x5f\x9a\x37\x47\x02\x7b\x60\x7b\x72\x72\x9f\x1a\x25\x31\x8e\x6c\x60\xf0\x59\x7c\x2f\xfb\xd5\x8b\x20\x56\x1f\xba\x79\x81\x76\xa6\xa3\x98\xfe\x78\xf8\x83\x01\x4a\x83\x55\x79\x61\xd9\x01\x68\x59\x43\xf3\x8d\x73\x43\xf3\x8d\x56\xa7\x01\x14\x83\xb1\x10\x30\x60\x88\x8e\xf1\x1d\x31\x38\x16\x51\x27\xb0\x75\x0e\x27\xdc\x59\x4d\xc3\xa5\x71\xa0\xcc\x1b\xcd\x01\x1d\xc6\x4a\x1b\x41\x30\xb0\x9e\x1c\x48\x2f\x24\x58\x5b\x92\x5e\xa8\xbb\x42\x7a\xf1\x7d\xc8\xaf\x5e\x94\xec\x43\x34\xd4\x45\x07\x9f\x2c\x50\x6c\x6b\x10\x31\x16\xca\x87\x8b\xde\x73\x16\x6b\x3c\x71\xbd\x69\x3c\xd1\x6a\x31\x30\x9e\xec\xe5\x7e\xf9\x51\xda\x4f\x82\xa7\x12\x77\xc0\xa4\x5e\x5c\x63\x1c\x08\x34\x60\x0c\x0e\x04\x9a\xba\xc7\xed\xc9\x96\xe7\xdd\x89\x34\x58\x0d\x90\x87\x61\x47\x58\xd2\x6a\x1c\x9e\xd4\xc7\x2d\x2f\x1a\x43\x42\x72\x89\xd6\x8c\x71\x63\xe4\x57\x7c\xfd\x3e\xfd\xae\xd8\xf1\xc4\x1e\x6b\xd8\x80\x4a\x63\x19\xc0\x31\x38\x28\x68\xa1\x86\x56\x23\xf4\xed\x42\xab\x51\x8f\xb1\xff\xa0\x09\xca\xe2\x07\xc3\xe4\xf2\xba\x82\x2d\xeb\x35\x1f\x65\x0f\x18\x98\xb1\xc3\x26\x13\xb1\xa5\xcd\x11\xee\x8d\xd6\xea\xdf\x02\xee\xdb\xe1\x86\xd6\xcf\x01\x29\xd2\xa1\xc1\x69\xe0\x3c\x3d\x9c\x95\x0f\x4c\x09\x68\x6b\x83\x70\x2e\x12\xcc\xd6\x78\xdd\x09\xa8\xc9\xb7\xf5\x8d\x70\x50\x5e\x7c\x2a\x3e\x4f\x94\x97\x41\x52\xb0\x80\xd4\x2d\xe0\x8c\xf2\x72\xd4\xd9\x06\xbb\xe3\x40\x94\xd7\x6e\xe9\x46\x40\xa6\x9b\xbe\x6d\xb0\x91\xf4\xb8\x06\x04\x4c\x46\x39\x8d\xd7\xad\xd8\xeb\x87\xfb\xf4\xc6\xfb\xca\x6d\xf8\xbd\x3c\xa1\xcf\x73\x9f\x9d\x87\xb4\xea\x5e\xe3\x43\x41\x17\x84\x41\xa4\x13\xc7\xbd\x60\x10\x19\xc1\xf9\x0b\x06\x91\xef\x43\x85\x1f\xc9\x1f\x93\x6b\x62\xc4\xd2\x0f\x3d\xc0\xdc\xf9\xc2\xfb\x3d\xc3\x3e\x38\x41\xdf\xf4\x20\x23\xe5\x88\xe2\x69\x7e\x07\xa8\xa1\xea\x3e\x21\x7e\x3a\x3c\xb2\xcf\x02\x32\x29\x02\x60\x96\xf4\x8f\xc6\x8f\xcb\x1f\xfe\x83\x2e\x52\xbc\x26\xc6\xa2\x5b\xc4\xe3\x43\xd4\x83\x14\x50\x4d\x4f\xd3\x2d\x55\x9b\xcc\xac\x38\x6d\x91\x87\x53\xaf\x30\x2b\x7d\x92\x3b\x43\x8c\xe0\x9a\xdf\xa6\xd6\x20\xc4\x59\x53\x27\x2f\x62\x6f\xc2\xe9\x3a\xed\xb1\x06\xc2\x00\x32\x73\x36\xa0\x5c\x59\x31\x13\x4a\x57\xa5\xca\x6c\x6c\xc1\x68\x41\x30\x9c\xf4\xc9\x74\x81\xe0\xa4\x2f\x2b\xd7\x68\xc1\xb0\x2c\x5b\x30\xfd\x81\x89\x9f\x72\x3b\x41\x7e\x7e\x67\xa3\x07\xb0\x8d\xcd\x4e\x03\x90\x73\xd3\xfd\x4d\xd5\x67\x76\x12\xf3\xac\x51\x27\x29\x0a\x01\x38\xa1\x7d\x25\x6b\x74\xcd\x6f\x0f\xac\xaa\x2f\x93\x64\x9a\xba\x3f\x44\xa4\xcb\xb0\x34\xc5\xd0\xf4\x07\x91\x67\xbb\x4a\x80\x21\xec\x97\x7f\x78\x51\xe9\xba\x81\x2e\x86\xc0\x84\x73\xa5\xeb\xa5\x84\x73\xa5\x01\xb4\xb6\xa6\x40\x76\xac\x2e\x39\x57\x00\x59\x5d\x50\xae\xd4\x63\x38\xc1\x86\x09\xc3\x8c\xec\xb0\x5f\xec\xbc\x81\x37\x1e\x49\x3a\xdd\x1a\x35\x4c\x4c\x22\xb6\x34\xcf\x41\xc6\xd2\x9b\x23\x0b\xf6\x9d\x52\x6f\x4e\x55\x3f\x8a\x23\xc0\xdc\xf0\xc7\x39\x13\xf7\xb5\xf7\x81\x21\x3f\x7c\x1e\x15\x00\x59\x35\xb5\x8b\x69\x4f\x81\xc9\xa5\x6b\x48\x9d\x1e\x45\x91\x61\xd3\xa3\xa8\x36\x87\x19\x0c\x0f\x1b\xc0\x24\x6d\x32\xfd\x2a\x11\xe6\xc6\x05\x4e\x3c\xca\xb3\xf8\xcc\x24\x50\x93\x5a\x90\x36\x69\x00\xc2\xc4\x59\x52\x91\xbc\x53\xb4\xa2\xe3\xaf\xbc\x85\x35\x93\x25\xed\x44\x24\x82\x5c\x43\xe4\x4c\x97\x34\x3b\xff\xe4\xb8\xaa\xa5\x6a\x1a\x42\xae\x49\x6e\x9a\xd5\xb3\x1f\x22\x8b\xca\xe5\x93\x8e\x11\x4a\x07\x24\x2f\xdd\xb8\xcf\x99\x66\x0a\x78\x4d\xcc\x24\xc7\x94\xb9\x38\x45\xb9\x66\x96\x1c\x21\xf4\x0d\x00\x49\xe1\x24\xf0\xec\x4a\xf2\xf3\x9a\x3b\x02\xcb\x87\x30\x8b\xf0\xcd\xef\xe4\xda\x72\xbf\x7b\xfa\xbc\x7f\x80\xa3\xe5\x2c\x83\x44\x46\x15\x0f\x82\x98\xb6\x25\x00\x39\x9f\x9a\xf7\x21\x88\xa9\xc7\x74\x8a\x82\xf8\x00\x47\xf6\x9a\x46\x4a\x39\xd5\x2f\x70\xb7\x7c\x01\xf8\xa2\x03\x3c\xda\x35\x2f\x25\x3a\x5f\xbd\x70\xec\xb9\x74\xaf\xe1\x43\x74\xf1\x45\xc0\xbe\x32\x4d\x9a\x59\xfd\x4d\xf3\x62\x20\x8b\xd7\x9f\xae\xb4\xa5\x95\xbb\xfd\x1e\x79\x98\x06\xb4\xef\x4e\xce\xa6\x1e\x73\xe6\xf5\xfa\x10\x6f\xdc\xec\x3e\xec\x1a\x93\x20\x2a\xb0\xeb\xd6\x94\xc3\xd0\x69\x66\xb0\xb8\x8b\x43\x4f\x89\x6b\xd4\x58\x71\x94\x17\xc8\x66\xbe\x8f\xfa\x10\xca\xaf\xbb\x06\xf9\xa3\x46\x2c\x4d\xbc\xdc\x5b\x3a\x80\x73\xad\x3e\x0e\xd9\x4c\x01\x30\x6c\x4d\xbc\x29\x5a\xd9\x27\x5c\xb4\x80\xda\xac\x09\x68\x9e\xce\x1e\x08\x66\x52\x0f\xdb\xf4\x5c\xab\x22\x07\xc1\x4c\x18\x9a\x37\x7f\x26\xf8\xd3\xdb\x90\x14\x0c\x85\x2f\x21\x54\xc7\x16\x3f\x40\x2e\x18\x0f\x3c\x85\x5c\xe0\x7c\x3d\x1f\xd6\xb1\x13\x09\xc7\xb6\x1e\xae\xf9\x10\xc6\xac\xd4\x17\x08\xd6\x01\x79\x55\xc5\xa8\x1d\xc4\x33\x7a\x12\x27\x66\xc4\x3d\xc1\xd8\xac\xf5\xcd\x4e\xad\x88\xd3\x59\x05\x04\xde\xe1\x24\x79\x6d\x8e\x7d\x44\x56\xe9\x9e\xab\x2f\xea\x83\xd2\xc7\x6d\x19\xec\xe4\x15\x82\xc3\x32\x82\x50\xd2\x84\xee\xbe\x80\xbb\x16\x5c\xd0\x15\x87\xb3\x0a\x09\x02\x25\x4d\xe8\xd5\x83\x92\xa6\xeb\x84\x96\x92\x46\x7b\x24\x94\x34\xd5\xc8\x49\x68\x68\xaa\x0b\x23\x70\xa3\xeb\x28\x8a\xc3\xf6\x73\x9f\xed\x17\x80\x87\x05\xf3\x4c\xd5\xe2\x07\x75\x4c\x53\xe3\x86\x3a\xa6\x1e\x46\xd2\x40\x1d\xd3\xf6\x0b\x15\x2f\x20\xc3\x19\x20\xb2\x6a\xfd\x8d\xef\x7c\x18\xfa\xc3\xa2\x31\x82\x18\x45\x20\x7e\xa9\x07\x00\x5e\x2b\x9a\xb8\x00\x94\x86\xd1\x72\xf9\x0c\xfc\xc1\xc7\x9f\xba\x5b\xe0\x19\x8f\xee\x4b\xb4\x0e\xf1\x16\xa4\x41\xe9\x05\x0c\xb7\xc4\x38\xfc\x03\x28\xdf\xee\x35\xeb\xd0\xeb\x51\x49\xe5\xa1\x75\xc3\x29\xc0\xcb\x43\x1c\x3a\x5a\x34\xa0\x9a\x43\x21\x88\x61\x1e\xa0\xf7\xc1\xbc\x67\x85\xc5\xb7\x49\x15\x5d\xb9\x01\x5e\xf6\x61\xe4\x09\x3c\x30\x95\xfc\xa0\x15\x93\xc3\xa9\x5d\x09\x1e\x0f\x89\x83\x0b\x1e\x98\xae\x8d\x28\x26\x07\x16\x24\x6c\x4c\xec\x75\xa8\x4d\x11\xa4\x0a\x39\xb6\xec\x20\xb0\xb3\x2d\xa8\x5f\xea\xa1\xb0\x82\xfa\xc5\xe0\x31\x49\x5d\x94\x29\x12\xb6\x28\x3a\x20\x69\x69\xee\x7b\xa1\x38\x27\x03\x62\x41\xd2\xa2\x32\x11\xf9\x78\xdf\x1f\x20\x64\xa3\x71\x86\x67\x31\xa3\x10\x60\x72\xf9\x7e\x50\x1c\xd9\x98\x0a\x92\xf8\xe4\x76\x83\xe7\x74\xc5\xff\x31\xf6\x3e\xb9\xba\x84\xbe\xba\x5e\xff\x37\x8a\x3b\x84\xa2\x0a\x6c\x23\x2d\x9d\xb9\xd4\xdf\xf4\xd2\xc8\xfc\x1b\x11\xcf\xf3\x9d\x28\x52\x72\xb5\x4f\x8b\xb5\xbd\xab\x3e\x28\x30\x60\xcc\xeb\xd7\xb8\x10\x0f\xc7\x80\x63\x56\xa8\x0d\xa7\x2d\xe5\x5d\xc8\x76\x42\x8d\x39\x6d\x12\x56\x00\xb9\x5c\x9a\xa6\x25\xb9\x5c\xd6\x7f\xf8\xc6\x47\x6d\x7c\xc4\x5a\xa0\xd3\xdd\x2d\xe5\x97\x4b\x7b\x1b\xf8\x51\x70\x0e\x26\x4d\xcb\xd4\x13\x98\x9c\x89\xf4\x16\xa6\x67\x22\x2c\x62\x92\xae\x4c\xe1\x4d\xe4\x5c\xd9\x37\xbd\xba\x29\xfc\x87\xa3\x5f\x72\xf4\x81\x6a\x69\x92\x5c\xa5\xc4\xed\x25\xe0\x1c\x0f\xce\xf9\x10\x1b\xe8\xdc\xf6\x88\x23\xb6\x3b\x39\xe2\x78\xf3\x92\xf0\xa4\x79\x08\xc8\x37\x21\xed\xe3\x87\x44\xe7\x08\x85\xce\x57\xea\x67\xff\x5e\xbf\xb4\xdb\x0a\xf8\xcd\x5c\xff\x93\x93\xc5\x26\x80\x39\x3f\xb6\x7d\x35\xe6\x83\xf3\xc1\xa6\xae\xb5\xa7\x48\x92\x37\xcb\x9b\x5f\xad\xb7\xda\xa4\x98\x3c\xf8\x5b\x62\xea\xc6\xdf\x9c\xf1\x77\x9f\xb1\x06\x94\xdb\x7c\x2a\x81\x1e\x92\x4f\xa5\xbc\x0e\xab\x4d\x52\x79\x6b\x00\x85\x1e\xca\xa7\x2f\x27\xff\x20\x36\xb3\xf9\xf2\xe5\x7f\xf8\x14\xc4\x45\xbb\x0f\xd9\x65\xcc\x31\x52\xb3\x94\x9e\x24\x52\xb3\x94\xb7\x04\xa4\x66\xc9\xf4\x05\x28\xfc\xa1\x9d\x99\xd5\xf0\xf9\x73\xba\xae\xe6\x3c\xef\xfc\xbd\xc6\xc4\x28\x10\xd2\xaa\x4c\x62\x67\x67\xed\x04\xad\xfb\x09\x3b\x53\x49\x87\x5b\x01\x00\x72\xd9\x2b\xb0\xa1\x5e\xbd\xd5\x21\xde\x86\x67\xc0\xf3\xc0\x12\x38\x8b\x80\x4d\x81\x13\xbf\xb4\x2a\xa8\x2a\x69\x55\xf6\x4d\xdf\x63\x1d\xfe\xd0\x3f\xef\x4d\x4d\xae\xa2\x33\x84\x1c\x2a\xe5\xb1\x80\x1c\x2a\x09\x7b\xdf\x2c\xd2\xba\x7a\xa6\x20\x9f\xca\xd4\x1d\x4c\x3e\x95\x32\x44\x84\x1c\x2a\x95\x2c\x63\xa4\x50\x99\x5e\xd7\x95\x6e\x28\x35\xab\xbc\x2e\xb6\x3f\x06\xd7\x4f\xf6\x25\x11\x9c\x51\xfe\x3d\xf8\x9b\x67\x42\x6b\x82\xc9\x51\xb0\x89\xe8\x1e\x2d\x69\xa3\xad\x19\x7a\xff\x70\x20\x20\xec\x0c\x47\x9a\x6b\x64\xe3\x32\xc8\x75\x62\x9e\xd3\x49\xaa\x93\x7d\x9b\x9b\xff\xe1\xe7\xd0\x6c\x89\x3b\xd5\x56\x62\x20\x7e\xdd\xf2\x4b\x73\xe5\x8f\xca\xdf\xe7\x33\xe4\x68\x53\x59\x13\x63\xde\x41\x49\x00\x7d\x53\x39\x79\x51\x59\x0e\x8a\x00\xce\x66\x43\xc9\x91\x98\xbf\x77\x5f\x33\x92\xf2\x37\xe7\x49\x1b\x0a\x49\x68\x53\x9f\x61\x34\x81\xa1\x7c\x92\x3d\xe5\xd0\xe0\xa8\x5f\xe6\x01\xde\x2d\xd2\x16\xaa\xa9\x85\xb9\xaf\x46\x6a\x95\x3b\xf3\x0a\x96\x94\xee\xdf\x10\xd0\x39\x1a\x78\xd4\xbc\x6c\x28\x3c\x6a\x22\x1f\xc8\xb6\xb2\x3a\x8b\x0f\x76\xb5\xf6\xc8\x52\xac\xd6\x8d\xbd\xad\x30\xbe\x75\xc7\xd4\x84\x9a\xce\xaf\x99\xbf\xae\xa6\x49\x04\x79\xa6\xdd\xce\x22\xee\xc2\x5d\x73\xf8\x90\x6f\xe0\xc4\x67\xc3\x29\x6e\xd6\x0f\x67\x21\x2b\xbd\x56\x5c\x89\x87\x22\x27\xc3\x2c\xf3\x39\xaa\x09\xde\x34\xa9\x77\x6b\x3b\x68\xc2\xea\xc8\xee\xb2\x6f\xd3\xd5\xe0\x04\x8b\xce\x8a\x56\xd8\xee\x9a\x77\xa5\xdb\xcd\x11\x81\x62\x74\x13\x40\x4d\x76\x97\x1f\xfe\xbc\xb4\xd1\x45\x31\xd6\xc5\xf2\x8e\x89\x5a\xf8\xd7\xc4\x1f\x93\xf6\x65\x8a\xfc\x2d\x68\xcc\x0e\x27\xee\xed\x87\xb2\x81\x90\xeb\x65\x0a\x3a\x2e\x7d\x64\x3a\x52\x0b\x1f\xd9\x6f\x3d\x84\x47\xfa\xb7\xbc\x99\x4d\xd1\x93\x3a\x89\x5c\xe2\xb7\x40\x3d\x45\x87\x2b\x97\xa2\x8d\x5f\x7d\x34\x14\x7c\x99\xc4\xb8\x7e\xe8\x8b\x1f\x8d\x73\x49\x69\xec\x0a\x40\x2e\xfd\x5f\xea\xfc\xda\x28\x86\x16\xa4\x09\x5b\x34\x39\x6b\xed\x13\xb3\xf9\xfd\xba\xb2\xf4\x59\xd4\x8b\x8f\xd0\x56\xbc\xea\x89\xcb\x1b\x66\xb0\x2e\xe6\xd2\x0c\xc6\x48\x27\x71\xcb\x7a\x88\x9f\x25\x34\x51\x84\x1b\x19\x5a\x4a\xbb\x99\x0c\x2d\xf9\xdf\x2f\x90\x5e\x60\xf3\x87\xcc\x51\xfe\x4f\xb6\xb7\x39\x8d\xfd\x47\x57\xa6\xdb\x8b\x40\xbf\x09\xdb\x8a\xdb\xe2\xdc\xf8\xaa\xdd\xbf\x89\x5f\xda\x7c\x46\xed\xc7\x24\x99\x1b\xfe\xc4\xe6\xdf\x0f\x5d\xb2\xba\xcd\xe4\x2f\xfa\x1f\x49\xfe\x22\x35\xf6\x24\xf7\x4b\x09\xb1\x9e\xbf\x8d\xa3\xf8\x9b\x95\x92\x29\x4e\xbe\x97\xa9\x77\x67\x82\x1c\x25\xe6\x78\x92\xfb\xa5\xc2\x77\x77\xfd\xc1\xfc\x3e\x3c\x2a\x84\xa1\x4e\x53\xb9\x78\xff\x48\x96\x96\xd9\x76\xff\xc6\x73\xcb\x46\x33\xb9\xbd\x68\x9e\xd3\x26\xc0\x4e\xb8\x72\xe7\xc4\xeb\x03\x25\xf7\x9c\xa0\x84\xc8\x90\x3f\xc9\xde\xb2\x37\x18\x8b\xe7\x24\x8a\xff\xb0\xef\x08\xd0\xd3\xfb\x3a\xb9\x9a\x17\x45\x31\x07\xae\xee\xee\xdf\xc0\xa7\xd0\xd0\xc9\x35\xfd\x2f\xcc\x68\x12\x88\x07\x91\xce\x9c\x50\x48\xaa\x59\xe4\x84\x59\x0f\xf9\x0f\x92\xeb\x60\x9c\xcd\x61\xca\x16\x7f\xc9\x6f\x70\x74\x88\xa9\x33\xf8\x70\xb2\x6b\x40\xe7\x3d\x67\x40\xbd\xc5\x01\x86\x6c\x31\xeb\x05\xaa\x0e\x8f\x36\x54\x1d\x56\xe7\x97\x02\xe2\xf7\x20\x3d\x09\x91\xdb\xed\xbe\xb5\x85\xec\xda\xe9\xd3\x74\x59\x58\x7f\x13\x4a\x15\x92\x2d\x4c\x32\xc7\x1c\x1e\x30\x67\xfa\xa1\xbf\x87\x3a\xcd\xf0\xa1\x01\xa3\x9a\x3f\x14\x10\x21\xd3\xbc\x64\x6a\xd9\xa2\xb5\x55\xec\x86\xa9\x91\x82\x66\x37\x59\xd0\x9c\x6b\xaf\x68\xbf\x01\x25\x58\x8e\xdc\x70\x73\x92\x13\xbc\x6d\x7e\xb4\x9b\x05\x86\x1a\x89\x6a\x86\xb1\xa1\xe4\xa9\xd9\x49\xdb\x34\x67\xd1\x22\xb5\xb3\x48\xaa\xa6\x06\x9b\x38\xbc\xfb\x0c\x2d\xc2\xea\x98\x6c\x0a\x9d\x8d\x63\xe2\xa9\x69\x70\x20\xcc\xb9\x76\x85\x61\xc0\x1f\x79\x6d\x9a\xfe\x85\x89\x69\xdf\x60\xb9\x9c\xb3\x6c\x2a\xdf\x5c\xbf\xa6\xd2\x19\x05\xad\x12\x7b\xca\x64\x57\x30\x42\x90\xec\x37\x87\xe8\x7e\xb2\xdf\x74\x2d\x24\x92\xdf\x74\x2f\x8b\x27\x2e\x99\xe9\xbb\x27\x57\x79\x2c\x1a\x93\xec\xe0\x7a\xcf\xc9\x77\x53\x87\x1d\x79\xe2\xba\xb2\xbf\x40\x96\x4e\x7f\x1f\x67\x8b\x08\xa1\x29\x57\xb4\xa7\xd6\x09\x75\xa6\x81\x90\x13\x67\x8b\xb6\x0b\x79\x6d\x52\x77\xfb\x7c\x00\x28\x3a\x6a\x40\x93\xbc\x69\x26\x03\x4d\xb9\x01\xcf\x47\x55\xc0\xe4\x98\x5c\x51\xe8\x95\x9e\x0f\x28\x36\x5c\x3e\x13\xcc\x92\x08\xa9\x89\x2d\xaf\x43\x97\x94\x35\xeb\x65\x6b\x23\xcb\xc0\xfc\xa7\xf9\x46\x3e\x9b\xf5\x96\xd5\x60\xf4\x95\x3f\x67\xef\xab\x1c\xa0\x4b\xdd\xf3\xe6\x2b\x7d\xb6\xeb\xcc\x6b\x58\x25\xda\xc1\xf2\xbf\x3b\x6b\x5e\xd3\x6f\xf0\x02\x54\xfe\x46\xbe\x4c\xac\x7b\x2f\xe7\xc8\x3a\xb3\x37\xf7\x02\xd2\xce\xa4\x37\x04\x27\xac\x2a\x2a\x3b\x09\x62\xa6\x80\x42\xf3\xc3\x88\x25\x22\x3f\xcc\xd4\x5d\x47\xb6\x97\x29\x02\xea\x24\x9e\x1a\xb6\x93\x79\xee\x17\xa1\x97\xbc\x0b\x29\x6e\xf3\xea\x88\x54\x2c\xd3\x48\xd2\x13\xd4\x25\x04\xcf\xf3\xe4\x62\xb8\x69\xb5\x9d\x98\xcf\x5a\x52\xa4\x62\x99\xa4\x39\x9d\xe7\x01\xca\xfc\x27\x67\x2c\x50\xdd\xd3\xd5\x71\xfa\xae\x3f\xc4\x22\x70\x82\xb4\x74\x85\x23\x5f\xcb\x14\xbf\x72\xe2\x01\x20\xfb\xe5\x3c\x59\x29\x45\x0f\x9d\x20\x9a\x5c\x4c\x4e\x30\xf0\xde\x78\x92\xba\x65\xff\x6d\x14\xe4\x6e\x99\x1e\xc4\x4c\xbe\x42\x26\xb1\x79\xba\x22\x92\x88\x79\x9e\x00\xe2\xd3\x0e\x00\x10\x2f\x38\x9b\xac\x2c\x93\xf4\xa7\xf3\x1c\xf2\xc4\xf2\x0c\x99\x58\x84\x34\x92\x89\x65\x6f\x86\x62\x9d\x40\x33\xf5\x43\x9c\xd8\xd7\x86\x09\x90\x8a\x65\x92\x16\x76\x92\x89\x65\x6f\x46\xb7\x92\x8a\x65\x37\xdc\xff\x34\x96\xd8\x9a\x09\x76\x12\x16\x4e\x2a\x96\x0e\x3b\xe5\x24\x13\x4b\xdb\xd1\x3c\x32\xb1\x1c\xcd\x8e\xc4\xd6\x6e\x30\x15\x4d\x52\xb1\xb4\xd6\x7d\xa1\x73\x41\xa0\x7c\xcd\x69\x83\xe9\x4e\x16\x4a\xd8\xf7\x26\x59\x59\x76\x63\x7e\xcf\xb5\x50\xc6\x96\xfe\xcd\x15\x07\xdb\x12\xd9\x5a\x0e\xd7\x8c\x73\xad\x93\x41\xce\xc4\x79\xba\x4e\xfa\x65\x6b\x99\x0c\xfd\x93\xe7\x2f\xbf\x38\xcf\x94\x5d\x84\x27\x8a\xf4\x2e\xfb\xef\xeb\x8b\x06\xb1\xe3\x92\xde\x65\x37\xfe\x85\xf4\x2e\xad\xec\xd2\xb5\x4e\x86\x90\xb4\xd3\x75\xf2\xf7\xc9\x20\xb0\x5c\x03\x4e\xd7\xc9\xf4\xe5\x1b\xce\x69\xe5\x20\x18\xd4\xd3\x65\x3b\x07\xec\xad\xf3\xd4\x76\xb6\x82\xb5\x32\x86\x13\xfb\x9c\x58\xed\xac\x13\x64\x80\x09\xe7\x35\x19\x60\x56\xc5\xfe\x63\x1d\x3b\xf6\xe9\xcb\x70\x43\x38\xc8\x90\xf9\x93\xbd\x75\x92\xcf\xa5\x8b\x1d\x24\x9f\x4b\x6c\x3f\x79\x68\xf2\x53\xc3\xb2\x8a\x03\xea\xd0\x49\xca\x96\x26\xfe\xfc\x94\xa5\xc4\x59\x44\x06\x73\x2f\x75\x48\xd9\x92\xe1\xfc\x85\x60\x58\xa3\xf3\x24\x15\xa2\x9e\xaa\xf3\xe2\x77\x54\x90\x6b\x4a\xed\xd9\xfe\xb5\xba\x9d\xc4\x6f\xe9\x36\x3f\x09\xed\x35\xdf\xf2\x24\xe9\x4b\x1a\x5b\x78\x92\x89\x2c\x54\x6e\x56\x6c\x7d\xb7\x24\x80\x49\x8f\x40\xe7\x8d\xd1\x81\x3d\x45\x3e\x96\x5f\x7c\x36\xf9\x58\xf6\x1f\x24\x81\x7c\x2c\x69\x78\x28\xf9\x58\xa6\x38\x94\x73\x2d\xeb\x87\x2e\xe7\xf3\x31\x0b\x08\x3f\xca\xc5\xb3\x61\xdb\xe4\x6c\xf9\xc5\x76\x93\xb3\x65\xfd\xa8\xff\x28\xb0\x1a\xbe\x80\x33\xc9\xb9\xea\x32\xfc\x5b\xc4\xb8\x85\xd6\x7a\x21\x05\x4b\xfe\x66\x06\x24\x85\xe2\xad\x48\xbb\xb2\xb7\xdf\x24\x66\x7d\x36\xfe\x81\xb4\x2b\x53\x14\xd7\xf9\x5a\x03\x3f\x0a\x17\xa1\xd0\x22\x12\xa7\xec\x8d\x34\xbc\x93\xcc\x29\x49\x2e\xf2\x49\x8a\x93\x6e\x93\x2e\x9d\x2c\x8c\x35\x89\x4c\xf6\xb6\xd3\x8c\x0b\xcf\xaf\x56\xcd\xc5\x82\x0e\x67\xec\x24\xab\xc9\x7a\x28\xf9\x87\x55\xaf\x5e\xba\x30\x77\xb5\x58\xc8\x45\x32\xc5\x13\x5d\x10\x0d\x6a\xa4\x5c\x3b\x3d\xcc\xf2\x79\xed\x3e\xef\xdf\xdd\x99\x7b\xf0\x0f\x48\xd2\x7c\x79\x57\x47\x99\x59\x24\x26\x29\x52\x2b\x4c\xf2\x92\xec\x92\x91\xce\x6b\xc7\x94\x0f\x1f\x12\xab\x40\x33\xe0\xbf\xd0\x0d\x7e\x1d\xf6\x3d\x5b\xe0\x45\x2e\x2f\x2f\xe7\xaf\x63\x5f\x16\x08\x47\xd4\x0b\x92\x5a\x31\x1c\xd7\x61\x22\x66\x6a\xe3\x62\xd4\xf8\xc2\x4b\xb0\x3d\x1a\x73\x75\xbe\x01\x2d\xb9\xe0\x12\xd4\x6d\x7a\x75\x55\x8f\x4f\xe0\x5a\xb4\x79\x6f\x70\xc1\xc3\xae\x7f\xeb\xea\x1e\xb1\xfc\x51\xc6\x8d\x3d\xf6\xea\x9e\x33\x7c\x9e\x71\xde\xad\xe0\x83\xf0\x9e\x2f\x1e\x9b\x3f\x4a\x2b\x08\xb4\xf2\xde\xe0\x82\x82\x56\x9d\x24\x55\xca\x8f\x49\x80\x54\x29\x7b\x33\x82\xc1\x5c\x29\x90\x5b\x4f\xd3\x9d\xec\x76\x45\xe2\xc6\xc6\x64\x27\x8b\xc9\x24\xe9\xd4\xbc\x0a\x0a\x3b\xfb\x94\xc5\xb4\x79\xfd\x79\x11\x20\xf5\xfb\x21\xd3\x98\xd8\x5f\xac\x75\x32\xe4\xce\x0b\x36\x05\x2d\xaa\x8b\x00\x51\x72\xde\xcd\x4b\xea\x3d\x55\x52\x8a\x3d\x15\x69\xe2\x7d\x67\x6b\x20\x73\xc9\x8f\x76\xe5\x92\x24\x4f\x05\x03\x0a\x03\xd7\xd8\x24\x99\xc8\xde\x20\xc3\x9a\x24\x13\xf9\x51\xc7\x90\x4c\xa4\x74\xd1\x92\x96\x63\x8a\x0b\x20\x2d\xc7\xd4\x09\x4c\xca\x8d\xe9\x25\x0d\x19\x37\xf6\xd6\x55\x05\x92\x41\x91\xf9\x7e\x5e\xe6\x62\x55\x3b\x31\xf1\xc4\x36\x91\x29\x63\x6f\x86\xe6\x92\x2a\x63\x66\xfd\x13\xd2\x4b\xbe\x8c\xa9\x6f\xfe\xd2\x94\x13\xa1\x41\xc2\x8c\x09\xcf\xdc\x24\x49\xc6\x34\x62\x96\x24\x19\x53\xbc\x0a\x49\x32\x76\x33\x69\x4c\xb2\x64\xcc\x54\xa5\x89\xc1\xf4\x6a\xeb\x7a\xf1\x16\x3a\xf0\xc4\x03\xb5\xae\x46\x10\xdf\xa3\x0b\xed\x32\xfd\xe0\x54\x4e\xcd\xaa\x16\x48\xc8\xf6\x53\xf6\x8f\x75\x93\x1e\x21\xbb\xc3\x4c\xf6\x1d\xb2\x3b\xfc\x08\x4c\x6e\x57\x07\x76\x4b\x12\x34\xcc\x62\x4b\xb9\x81\x65\xc8\x6e\x34\x6f\x80\xed\x62\x94\xc9\xdc\x50\x3f\xf9\xee\x0b\x83\xbf\xd1\x26\xf6\x8b\xdb\x15\xc1\x00\x4e\x32\x2b\x4c\x61\x56\x64\x50\x98\xc2\x8f\xc9\xa0\x30\x49\x6d\x36\xc9\x9a\x30\xc5\x2e\x93\x29\x61\xca\xb5\x72\x1f\x56\x4c\x65\x9c\x9e\x35\x58\xc9\xa0\xb0\x37\xf1\x67\xf7\x41\x05\xb8\x47\x6e\x80\x15\x4d\xb8\x25\xb9\x15\x66\xfe\xfe\x56\x3d\xd0\xa1\x9b\xa0\x4a\x5d\x9f\xf7\x71\xfa\x1f\xf4\xc6\xc1\x0d\x2b\x2a\x71\x1f\xcc\x5e\x76\xaf\xbb\x5b\x05\xed\x20\x7a\xd2\xb3\x87\x19\x18\xbc\xe6\xb8\x07\x6d\x45\x19\x6e\xcf\xd2\x06\x2b\xde\x40\xde\x85\x2c\x93\x8e\x61\xfd\x07\x6f\x0f\xb6\xa0\xe6\xdb\x49\x50\x81\x0f\x31\x56\x98\xd4\xf7\x50\xad\x94\x0b\xa9\xb4\xfb\x96\x19\x39\x5d\x05\xef\xe0\x20\x8e\xb5\x71\x87\x13\x90\x9a\x93\x1f\x62\x73\x21\x51\xc3\xfe\xa3\x6b\xb8\xa5\x08\xc5\x38\xbb\x3d\xc5\x7a\x49\x76\x2f\xeb\xac\x6b\x92\xdc\x24\x86\x36\xaa\xe7\xae\xcd\x87\x68\x13\xa7\x55\xd7\xc1\x5f\x9e\x07\x16\x0e\x72\x38\xa4\xb1\x34\xa6\x70\x68\x02\x8d\xee\xe2\xb2\x86\x8d\xfd\x36\xe2\x92\xc5\xe2\x76\xa5\x11\x44\x74\x4f\xfb\x0c\xd5\xbd\x49\xfb\x2c\x18\x94\x4c\x0f\xeb\x3f\x68\x2d\x31\x8f\xfa\x9a\xc8\xca\xb0\xff\x20\xa0\xa6\x65\x30\x04\xe0\x3e\x7f\x95\x53\xc9\x69\x25\x36\x97\x98\xc4\xdd\x1e\xd1\xaa\xf1\x12\x99\x4c\x06\x87\x3b\xd2\x4d\xc8\x75\x53\xd3\xa4\x17\xb3\x43\xb4\x06\xb0\xe2\xa1\xf6\x4f\x2f\xef\xa1\xf0\x2f\x03\x48\x6e\xdc\x6d\xe1\x1c\x7a\xcd\xbb\xc9\x67\x7f\x66\xf3\xe4\x37\x61\xe7\x37\x74\xe5\xfe\x11\x13\xab\xee\xe6\xbc\x67\x32\x3e\x26\xa4\x47\x51\x1e\x2f\x50\xd0\x26\xd8\xf6\xf7\x66\xe4\xc7\x23\x3f\x06\xe6\xe7\xd3\x0c\x6b\x2d\xfe\x26\xec\x9e\xf9\x07\x2f\xfe\xde\x04\x92\x40\x8c\x3f\x63\xfb\xe7\x31\x15\xd6\xfc\xf5\x16\x75\x12\x8a\x17\xe8\xdd\x63\x82\x79\x16\x15\xa8\xef\x4b\x53\x5b\xea\x7b\x99\xde\x26\xdc\xf7\x15\x9c\x8c\xe1\xac\x9f\x46\x55\xc1\x59\x3f\x7f\x3f\xca\x4d\x88\x0e\x72\xf8\xe2\x53\x68\x07\xbc\xf0\x53\xe7\xf7\x83\xaf\xaa\xa1\x38\xcf\x50\xce\xef\x7b\xa7\xc1\x94\x87\x39\x7d\xea\xa8\x80\x39\x3d\xbd\x28\x78\x4c\x47\xcc\xec\x82\x20\x7d\x0a\xd4\x78\x38\x42\x39\x72\x8f\x47\x28\xed\x18\x48\xce\xeb\x48\x5f\xa6\xd1\x0c\xdd\x43\xdc\x88\x1e\x8f\xa7\x1c\x09\x2a\xc6\xf1\xd2\xb4\xd3\x1f\x88\x6f\xbd\x47\x7d\x88\x17\x56\x4f\x1e\x80\x2a\xc1\x02\xfe\x68\xfc\xa7\x23\x31\x6d\x06\x2f\x9f\xdc\xa0\x60\x28\x3c\xc4\x91\x79\xe3\xf9\x90\x07\x58\x6f\x0e\x6c\xe3\xb5\xf9\x69\x02\x41\x6c\x1d\xbe\x6b\xef\x38\x1f\xf6\x49\x6f\x5a\x1f\x53\xfc\x92\x44\x65\x3e\x37\x7d\x87\xc6\xc1\x1d\xbe\xfe\x83\xb7\x4d\xda\xe1\xdf\x0f\xcd\x3e\xfc\x1b\x6b\x8d\xd5\xe5\x79\xf8\x4e\x8d\x83\x07\x07\xc8\x4f\x99\xc8\xa0\xe1\x91\xe2\x01\x7e\xe9\x11\xef\x21\xd4\x55\xd7\x3f\xec\xdc\xd3\x23\xc5\xf3\xd9\x0a\x9a\xf7\x39\x82\x3c\xff\xd1\x47\x87\x7f\x43\xd7\xfa\x7b\x86\xdf\x67\xce\xc0\x9c\x3d\x3d\x3f\xbc\xcd\xba\x82\xbf\x6d\xc3\xc1\xdf\x17\xcf\xec\xfc\x7d\x4b\xe0\xe1\x43\x68\xfd\xef\x6f\xae\xc6\x58\xe2\xa1\xd1\xde\xbd\x1d\x7c\xd7\x5e\x16\xaa\xe0\x6b\x88\x29\x06\x0a\xf4\xda\x21\xf8\x07\x7a\xed\xdd\xed\xe1\x75\x8f\x73\xf5\x7e\xb9\x1e\x14\x97\xfe\x92\x0f\x62\x63\x15\x7c\x9d\x14\xae\xfd\xf0\x6b\x77\x1d\x9b\xaf\xe8\x78\x77\x0b\xf8\xb5\xbb\x6e\x99\x57\x4b\xd7\xb5\x1c\x0a\xed\x90\xe3\xe0\x3d\x68\x07\x9a\xfa\x02\x31\x14\x64\xfc\xba\x15\x7a\x67\x0d\xb7\xf6\x01\x65\xea\x7c\xc9\xf7\x20\x75\xd3\xbb\x76\xc2\x90\x71\xe9\x5d\x3b\x61\x48\xd7\x04\xcf\x76\x73\x13\x79\xd7\x7e\x17\x92\x23\xbd\xc7\x27\xcb\xf7\xfa\xbb\xff\x5a\xc4\x0f\x01\x9c\x20\x25\xd0\x84\x7f\x3b\x74\x73\xbf\x1d\xd7\xa9\x2f\x93\xa8\x41\x70\xe3\xfb\xdf\x08\x40\x6a\xeb\xd4\x50\x3e\x44\xd7\x33\x77\xde\xf1\xab\x81\x37\x06\xdf\x8c\x59\x04\x1b\x77\x88\xff\x78\xf5\xb3\xe8\x6d\x7e\x07\xdf\x83\xb1\xf5\x0e\x2c\x71\xfb\x5e\x43\xb9\x8e\x7f\x1e\x54\x5f\x7d\xd4\x9e\x66\xde\x41\xc3\x58\xe4\x61\xfa\x8e\x5f\xc3\xe2\x97\x3b\x86\xbf\x87\x2f\xf8\x1f\x6b\x9d\xd1\x49\x0f\x8b\x77\xd7\x19\x06\x8b\x77\x4a\x9f\xf1\xea\x49\x91\x47\x0b\x16\xef\x74\xb1\x7b\x65\x3b\x90\x23\x0b\x16\xef\x69\xdc\xcb\x4b\xec\x99\xde\x8a\xff\x26\xf1\x66\xe8\xdd\xa1\x3d\x30\x42\xe2\x5d\xf2\x2f\xbc\x69\xde\x64\xbe\x21\x21\x6c\xef\xca\xa5\xc4\xe7\x6f\x36\x68\x2f\xa2\x61\xe1\x4e\xef\x4e\xe1\xce\x4e\x6f\x70\xe1\xce\xde\x3d\xc0\xbc\x13\x43\xc4\x96\x92\x63\xc9\x9b\x5d\x58\xb1\x77\x73\x89\xcc\x77\xb2\x13\x62\x33\x41\x8b\x5d\x87\xdf\x8c\x57\x42\x04\xee\xcb\x42\xa6\xd3\x18\xfa\xeb\x09\x09\xe9\x7c\xa5\x7e\xb1\xef\x08\x5c\x2d\xf6\xa9\xd7\xb4\x09\xfe\x0e\xae\x03\x8f\x75\xef\xe5\x4c\x56\x6d\x7e\x01\xff\xbc\x00\x25\x8b\x21\x49\xf0\x62\x17\xb9\xc8\x26\xbc\xd8\x87\x51\x1b\xf0\x62\xef\x46\x80\xbe\x37\xc1\x0f\x9c\xb4\x5e\xdd\x08\x82\xb1\xdf\xc7\x0c\x4d\x7c\xf2\x43\x6e\x2e\xbf\x80\x85\xcf\x3b\x8d\xf7\x91\x1a\x90\x2f\xd6\x0e\xc0\xd4\x78\x01\xa2\xb9\xd3\xbd\xdc\xcd\x35\xaf\x39\x5f\x0d\x04\x5b\x4d\x16\xf2\xdf\x38\x11\x61\xd5\x48\xfb\x34\xdf\x97\x13\xa5\x0a\xce\xa5\x5d\x0d\x5f\xe0\x44\xe9\x24\x78\x71\xa9\x70\x80\x78\xf5\x16\xb0\xf7\xcb\xc8\x6d\x3c\xfd\xcb\xd5\x5c\x33\x80\xe3\x95\x35\xd4\x49\xfd\x79\x45\xc3\xcb\x40\xd4\xda\xaf\x93\x88\xab\x12\x25\xf5\xea\x6b\x98\x2a\x9b\xa7\x89\xe1\x43\x42\xfa\xfc\x1b\x7b\x93\x83\x2d\x9c\xda\xb2\xa3\x4e\x38\xb5\xf7\xe6\x55\xe8\xb7\x61\x84\x75\xff\xbe\xfd\x0f\x9f\x02\xf9\xd5\xfd\xfb\xe5\x76\x7e\xf2\xf7\xe7\x43\x6b\x80\x3e\x88\x40\x21\x8f\x9f\x52\x72\xbb\xaa\xc1\xc8\xbd\x1e\x2a\xfe\x81\xca\x58\x45\xb3\x2f\xd9\x39\x3e\x02\xad\xf2\xf7\x86\x9f\xca\xdc\xfb\x1a\x1c\x5a\x0c\xd1\xb7\xcb\xb4\x1a\xfc\xed\x70\x75\xff\x83\xe1\xc2\xe0\xfc\x48\x8a\x10\xd3\x87\xec\x71\x9e\x39\x1c\x2d\x6a\xf3\x3c\xe1\xbe\xf0\x1d\x0e\x17\xed\xf3\x3c\xe1\x95\x25\xf4\xdc\x8d\x34\x9b\xf3\x3b\xec\x0f\x26\x10\xd4\xdb\x29\xfe\xec\xeb\xb2\xe3\xd0\x56\x2e\xed\x3c\xe4\x7c\x78\x9c\x8d\x82\xfd\x40\x4f\xeb\xe0\xfc\x58\x21\x97\x01\xf8\xff\x5e\xe3\xf2\xff\xb3\xc4\x7d\x43\xea\x48\xba\xd3\x03\xc9\xfc\xfd\x80\x80\x37\xba\x10\xe4\x87\xf1\x9a\x1f\x96\x54\xda\x1f\x1e\x2f\x1c\x30\x2c\x29\x08\x80\x27\x34\xde\xa5\x1b\x1c\x1a\xef\xbd\xb9\x3e\xc3\xe3\xfd\x23\xfe\x83\xad\x7b\x26\x06\x31\x4c\xdc\xf2\xf9\xce\x4f\x73\xcb\xc5\x15\x26\xee\x69\x48\xd0\xf7\x33\xb1\xa8\xed\xe7\xbb\xe0\x87\x8c\x3f\xb2\xd5\x25\x60\x90\x56\x03\xa2\x10\x3b\x0a\x39\xf6\xae\x49\xf6\x99\x16\xc6\x81\x80\xf2\xca\xb3\xc5\x47\x96\x81\xdd\x2f\x9b\x26\xeb\x42\x0e\xaa\x41\xee\x46\xa8\xab\xa7\x31\x97\xd0\x52\xef\x1a\x67\xd0\x52\x37\x0f\xf0\xd0\x52\x87\x18\x42\x68\xa9\x53\xda\x39\xd9\xa7\x9d\xbb\x9f\x69\x59\x6d\x3f\x51\xfa\x3b\x29\x32\xe7\x77\xfd\x28\xc2\x68\xb5\x07\x11\xd7\x71\x18\xa1\xf7\x5d\x12\xcd\x0f\xc8\xef\xde\x30\x98\x3f\x16\xc2\x9d\x6b\xc5\xa7\xfa\xf6\xdc\x80\xb4\x77\x58\xe1\x7f\x02\xdf\x5d\xfd\xa8\x00\x16\x2a\xd3\x08\x3e\xd5\xdb\xc3\x21\xe1\xf7\xeb\x4f\xf5\xfd\x79\x38\x50\x59\xc3\x53\x7d\x3c\x58\x7b\xab\x31\x03\xc1\xf9\x3c\x25\x2b\x79\x21\x18\xdb\xf3\xe0\x57\xd8\x39\x13\xbd\xc9\x5d\x83\xa4\x85\x6f\x4e\xa8\x6c\xe7\xfa\xf3\x66\x57\x1e\xfc\x89\x91\x51\xff\xf9\xfb\xe6\x6e\x7b\xd6\x32\xfa\x4d\x4e\xa1\x1c\x17\xbf\x39\x61\x32\xe7\xbe\xf5\x9b\xaf\xdb\x4e\x5f\x7f\x7f\xc2\x41\x57\x65\xdf\x49\x96\x49\x26\xe0\x77\xe2\x94\xd8\x01\xd6\x7e\x67\xb3\x07\xd7\xaa\xf0\x91\x40\x05\x14\xd6\xf7\x42\x21\xbc\x3e\xe5\x7b\x8d\x27\xe9\xfc\x39\x7f\xcd\xfc\x4c\x61\xb2\x11\xce\xf9\x61\x62\x81\x6c\xff\x4c\x34\xb0\x26\xf4\xf7\x01\xd9\xdc\xf8\x73\xad\xe3\xeb\xe9\xce\x3f\x70\x2c\x0f\xfe\xec\xca\xfd\x07\xe0\x9d\xff\x3d\xf4\xfe\xff\x3a\xff\xcf\xff\xe3\xfd\xcf\xdf\x06\x51\xf0\xdf\x26\x83\xea\x7f\xfe\xb6\xfd\x3e\xd7\xbf\x77\x22\xa8\x40\xdd\x6c\xc7\x6c\x4b\x74\x9c\xab\x61\xcb\x6e\xda\xe0\xa2\x58\xc5\xfa\x84\xb5\x18\x6f\xc7\xe5\x33\xcb\xc6\xe7\x94\xbb\x41\xef\xb0\x8a\xc9\x55\xf5\x7f\xfe\x36\x68\x0a\x56\xc1\xa5\xc1\x8e\x24\x90\x1c\x5e\x23\x2c\xc9\xa1\x64\xad\x34\xd8\xcd\x3b\x5c\xc9\xab\x90\xa3\x1c\xc9\xad\x04\x5a\xdf\xb6\x24\xcb\x14\x5d\xc5\x01\x5c\xe5\x3f\x7f\x7b\x5b\x2b\xc4\x2a\x20\xf3\xdc\x96\x24\x95\x68\xd2\xac\xd1\xdb\xe1\x9a\x5b\x85\x19\x64\x91\x84\x92\x09\xca\x77\x89\x20\xd4\x5a\x45\x01\x20\x5f\x92\x65\x84\xad\x02\x0b\x73\x20\x09\x25\x6b\xa1\xe0\x78\xbd\xef\xf1\x2a\xe2\x7e\x7d\x35\xe9\xd8\xe7\x92\x1c\xfb\x09\x5f\xe6\x7f\xfe\xf6\x6e\x23\x7b\x78\x49\xb5\x24\xc9\x4f\x77\xe6\x54\x43\x52\x7c\x7e\x37\x51\xc8\x92\x10\x43\xfc\xb7\x13\xe6\xc9\xb1\x64\x27\x98\xf3\x6f\x1f\x00\xd1\x48\xae\xb8\x13\x0f\xb9\x8a\xb5\x68\x12\x34\xb1\x13\x75\xb8\x0a\x12\xc5\x25\x2f\x5e\xf4\xa4\xc1\x79\x50\x2b\xee\x44\xb0\xad\x82\xa7\x96\x3d\xb5\x63\xb0\xad\x02\x50\x2f\x50\x86\x9d\x44\x2c\xab\x60\x9e\x42\xe3\xb7\x93\x6a\x65\x15\xa7\xb2\x8e\xec\x41\x36\x8d\xf0\x5d\xa7\xae\xfd\x9d\xa5\x8c\x55\x00\x03\x71\x27\x11\xca\xdf\xae\xb9\xb6\x93\x53\x69\x7f\x4f\x9f\x3b\x7d\x2e\x36\x64\xbf\xe7\x1e\x65\x3b\xb2\x0f\x19\xf7\xf1\x3b\x66\xd6\x8e\x4d\xb7\x8a\xa1\x8c\x36\x5f\xa1\xcc\xb5\xc5\x6f\xbb\xac\xc3\x25\x0e\xff\xe0\xfe\xda\x2b\x58\x73\x4b\xc6\x77\xdc\xd6\xfb\xd9\x07\x6b\x8d\xdd\x21\x49\x5f\x05\x5b\xea\xb6\xda\x77\x40\x72\xbe\x0a\x0e\x96\x08\x4a\xc1\xf7\x1b\xf5\x03\x76\xf1\x55\x98\x60\x0c\x49\x57\x62\xd4\x3f\x92\x50\x42\x22\x5a\x25\x8f\x92\x97\x34\x7f\xd4\xb5\xcc\x85\x55\xa0\xac\xcb\x96\x3b\x98\x01\xab\xe0\xb3\x49\x25\x79\xc0\xc8\xbd\x8a\x53\x59\x2d\x59\xf7\x55\xf0\x74\x83\x76\x32\x00\x87\xb4\xc0\x1b\xf7\x84\x07\xb4\xc0\xab\x78\x95\xf1\x6b\xa7\x6f\x12\x29\xbf\xcc\x9c\x03\xd6\xd5\x55\xfc\x9e\x5a\xed\x80\x3f\xf5\xef\x68\xe4\x81\x5f\xa7\xd9\xa3\xed\xa5\x64\x19\x26\x6b\xb9\x3c\xda\x9a\x08\xab\x60\x35\x26\xeb\xfc\xd1\x4e\xfa\xa6\x39\x44\xb8\xce\x8f\x9d\x15\xea\xd8\xc9\x6f\xbb\x36\xba\xe3\xa8\x35\xb7\x0e\xe8\x74\xda\x06\xcf\xe8\x71\xac\x86\xaf\xc2\x56\xf0\x26\xfc\x2f\xab\xf8\x2d\x98\xeb\xdd\xee\x00\x75\xae\x51\x76\xa2\x00\x8e\xde\x69\x1b\x74\x1c\xfb\x8e\xab\xec\x70\x26\x1e\x04\xef\xaf\x19\xbf\xc6\xc0\x99\x77\x0c\x77\x2b\x1c\xf8\xc7\x58\x1b\xed\xdf\x61\x18\xe3\x8e\x3b\xed\x08\x9f\x0b\xb0\xc1\x07\xfb\xc1\x41\xb4\xe1\xdf\x11\xcd\xb9\xbe\xac\xd9\x83\x58\xc1\xbf\xc3\x58\x8b\x83\xd4\xe4\x47\xfa\x6e\x2a\x83\xea\xe3\x28\x65\x22\xd6\x0e\xbc\x8b\xc7\x54\x36\x9b\x00\x47\xbe\x77\xae\x1f\xff\x3b\x80\x25\xed\x07\x37\x35\x07\x58\xa4\xbf\x63\xde\x26\x78\x46\xbb\xa6\xfd\x22\xbe\xa3\x6f\x6b\x51\x3d\xc0\x74\xfc\x1d\xa0\x33\xf6\x0e\x52\xea\x38\xad\xc3\x1b\xf8\xbe\xad\xa5\xee\x38\xed\x97\xd3\xe7\xc0\x6b\x1e\x97\xcf\x71\xd3\xb4\xd6\x02\x64\x9d\x7a\x2f\x9f\x23\xfb\xeb\x71\xfb\xdc\x6d\x30\x38\xe1\x7f\xc7\x6d\xfb\xf0\x64\xee\x1d\xd8\xcf\x41\xc6\xd2\xbf\xe3\xf6\x5d\x90\x5a\xc7\xe3\xbb\x8f\x32\xdc\x14\xc7\xab\x8c\x83\xc0\x3e\x30\x16\x8e\x4f\xd9\xa7\x0c\x97\x66\x77\x52\x76\xf8\xdb\xf7\x01\x05\x4e\x87\xb3\xfd\xaf\x6f\x3e\x07\x70\xa9\x37\x9f\x83\x14\x76\x1f\x64\xf0\xee\x6e\x24\xbd\xf9\x1c\x47\xb2\xbe\xfb\xdc\x8e\xcc\xeb\xef\x7e\x28\x83\x91\x6b\x0f\x2c\x91\x0e\x0b\xd7\x5f\x97\x70\x29\xc8\x1f\xd8\x21\x59\xfa\xeb\xb0\x28\xed\x31\xf6\xff\xb6\x99\xdd\x8f\xff\xff\xb6\xe8\x7e\xac\x85\xed\xaf\x1f\x5c\xee\x04\x91\x31\x1d\xaa\xa2\xbf\x7e\xd8\x04\x98\xa0\xba\xaa\xdd\x3b\xd7\x48\x81\xfd\xd9\xfb\xc3\x67\xaa\xc6\x41\xb7\x75\xd5\xb8\x8f\x9f\x6c\xad\x5b\x5d\x95\xed\xc6\x4d\x26\x88\xc0\x4e\xb0\xe4\x5f\x37\x72\x31\x01\x60\x74\xa2\x15\xff\xba\x2a\x9b\xdc\xa4\x77\x55\xb6\xe7\x0e\x2e\x02\x3c\xff\x3a\x33\x29\x33\x95\x27\x6d\x21\xf0\xe6\xaf\x27\xce\x03\xd3\x23\xf6\x4c\xea\xc8\x5f\x7e\x65\xea\x20\xa2\xe3\xaf\x3b\x05\x4c\xae\xdc\x9d\x02\xdd\x29\xa0\xc7\xbb\x3b\x05\xfa\x64\x2a\x27\x67\xf9\x3e\x99\xca\x5d\xab\x2e\x89\x97\xed\xa0\xe2\x56\x41\x1d\x20\x92\x3a\x20\xb8\xbf\xfe\x83\xb9\x41\x5b\xdc\x27\xfb\x5c\x9f\xee\x73\x6d\xa3\x0e\xf6\xb9\x0e\xd4\x6d\xc9\x3a\x32\xfa\x74\x12\xda\x67\x66\xa1\x3e\x59\x7e\xfa\xc4\x27\x61\xce\xe1\x3e\x4f\xdb\xc7\x1e\x54\xa0\xfb\xfa\xbc\x6c\x1f\xdf\x51\x30\x87\x74\xa7\x59\x77\x4a\x99\x53\xa1\x3b\xa5\xba\xd3\xa7\xc8\xd2\xd3\x9d\x3e\xfd\x86\xcc\xd7\x24\xbe\x9d\x0b\x95\xbf\x7e\x5b\x2f\x07\xe0\x4e\xc2\xe9\xbf\x4e\x7a\xe9\x65\x21\xaf\xdf\xe3\x96\xe2\xaf\x3b\xa5\x8a\xb3\x43\x77\x4a\xf5\x67\xd9\xa4\x7b\xd5\x32\xad\xfb\xb3\x4e\xb9\xab\x98\xbe\x5b\xc8\x18\xb7\x87\x3d\xb7\xf0\x65\x77\x1c\xc1\x7f\x9d\x2c\x93\xfb\x64\x39\xeb\xef\x46\x1d\x2f\x59\xb0\x36\x9c\x95\x1d\x87\xe6\x5f\xc7\x7f\xb9\x64\xeb\x3b\x70\x35\xae\xc2\xe5\x9b\x7a\xf1\xe9\xad\xc2\xa5\x1a\x3d\x78\x07\xf5\xbe\xc6\xdd\xc2\xb9\xd9\x5f\xf5\x0f\xdf\xd7\x92\x51\x47\xa4\xb2\x52\x96\xc8\x7c\x17\xf3\x6b\xc3\x6e\xec\xb8\xb9\x56\xc1\xdd\x8f\x3a\x8e\x63\xea\xaf\xbf\x62\xe3\x39\xd5\x74\x0c\x9d\x55\x58\x07\xe3\x86\x01\xb3\x8a\x44\x46\xdf\xbf\x8e\xb9\xa9\xda\x36\xf0\x7b\x5d\x5b\xa4\xbf\x97\xbf\xc7\x12\xa2\xdd\xd1\x5f\xb3\xec\x40\x0d\xd9\xb5\x31\xfa\x4b\x86\x9d\x8d\x94\x69\x1d\x77\xd0\x5f\xc7\x13\xb4\x64\xd4\xf1\xf8\x1d\x50\xe8\x6e\x90\x32\x74\x1c\x36\xab\xb0\x2d\x41\x1f\xbc\x8f\x32\xbf\x37\xa8\xe3\x43\x37\x70\xa6\xb4\x0d\xdc\x6d\xff\x36\xfa\xcf\x84\x64\xb2\x2e\x76\x7c\x24\xab\xb0\x8e\x5a\xe3\x4b\x32\xb2\x55\x48\xf4\xbf\x8c\xe3\x4e\x1a\xb1\x55\xf8\xbd\x93\xdf\x63\x5b\xef\x64\x0c\x5b\xb2\x81\xcc\xe7\x76\xbf\x8d\xe5\x91\x54\x60\x7f\xfd\x73\x7c\x61\xa5\xee\xb8\x1c\x56\x41\x3f\xef\x8d\xdf\xeb\xa9\xec\x56\xb6\xbe\x8d\x13\xfe\x2a\x7c\x97\xb9\xff\x39\xbe\x9c\xdf\x97\x8c\xdf\x8b\x47\xd9\xab\x6c\xf5\xd5\x97\xbe\x9b\xbe\xbb\x8c\xec\xce\x79\x7e\x15\xa7\x32\xea\x28\xf4\xef\xab\xdf\x73\xbc\x3b\xed\x03\x28\xad\x36\xce\xea\x9d\x54\x51\xab\xf0\x5d\xc6\x8d\xac\x4f\xab\xf8\x94\xd1\x7f\xa7\xf5\x9e\xfe\xde\xa0\x7d\x97\x75\x5c\x26\xf9\x0f\xbe\x57\xdd\x30\xd3\xd2\x06\x6e\xa2\x7f\xb7\xcf\xdd\xd2\xb2\x24\x7d\x7a\xfb\x1c\x89\xc7\xb7\xdd\x71\xbb\x1d\x37\x52\xa6\x6e\x30\x41\x77\xd2\x1e\xad\x22\x94\xd1\x96\xd7\x7e\x7e\xed\x67\xe6\x16\xe9\x81\x56\x61\x3f\x3b\x6e\x9f\xcf\x7d\xa9\x6c\x22\xf3\x39\x98\xf5\x37\x32\xbd\x0f\x92\xf7\xac\x62\x28\x2b\x64\xa9\x0c\xbd\x02\x17\x32\xb0\x67\x57\x91\xca\x26\xb2\x47\x19\xdf\x4b\x90\xfd\x20\x27\xcd\x2a\xba\xb2\x40\xf6\x21\x3b\x8c\x5b\x5d\xe3\x36\xb6\x43\x99\x3a\x04\x2a\x7e\x90\x0c\x66\x15\xa1\x2c\x91\x9d\xca\x2e\x63\x5e\x79\x97\x23\xd2\x20\x9d\xcb\x92\xf1\xee\x08\x65\xbf\xd8\x58\xbe\x63\xd8\xbe\xf0\xb9\xe0\xb9\xf0\x39\x75\x0d\x3f\xcd\x20\x3b\xca\xdf\x30\x01\xca\x46\xf4\xd4\x20\x9f\xc9\x2a\x4e\x51\xde\xf4\xd5\xda\x74\x56\x61\xff\xfd\x3f\x24\x94\xff\xfb\xed\x7e\x90\xa7\x64\x15\x36\xa1\xe8\xb6\xb2\x09\x65\x57\x4e\x9a\xc5\x71\x6b\x6c\xa4\x4a\xdb\xb0\xf5\xc7\xc6\xd6\x39\xc8\x19\xb2\x64\xbc\x3b\xed\x0e\x39\xd1\xba\xc3\x75\xfe\x64\x7c\x12\x0c\x5c\x83\xb4\x1c\x7f\x63\x73\xe9\x82\xe3\x7e\x90\x30\x63\x15\x53\x19\x75\x5c\x7e\xd2\xe5\x15\xfa\xce\xa7\x5f\x0e\xcd\xfd\x7b\x97\x7a\x71\x00\x0c\x72\x65\xb4\x0d\x02\xf9\x41\x82\x8c\x55\x94\x32\xba\xe8\xb6\x2d\x04\xaa\x6c\xfd\xe0\xf7\x1e\x55\xe2\xf1\x5d\x87\xfa\x51\xc5\x1e\xdb\xd2\x51\x93\xe7\x52\xf6\xbb\xce\xa7\xde\xc7\xb6\xe8\x0e\x81\x97\x67\x6c\xaf\x7d\xf5\xfa\xbd\x0e\xf5\xeb\x73\xf0\x7f\x49\x38\x35\x38\xd6\xac\xc2\xf6\x05\x75\x7c\x7e\x2f\x49\x24\xa4\x2d\x1a\x6d\x43\xd6\xb6\x9f\x6c\xfd\x1e\xc9\x1d\x56\xc1\x18\x41\xa8\x3d\x48\xf2\xb0\x0a\xbf\x6d\x2d\xa3\xa3\xa9\xee\xcd\x25\x13\x12\xee\xd1\x76\xbe\x83\x34\x0d\x6d\x23\x40\x65\x90\x9b\x61\x15\xa1\x8c\x3a\xb0\x28\x47\x73\x5a\x40\xfa\x3c\xda\xf1\x28\x7b\x95\x51\x6f\x67\x2c\xc9\x93\xd0\x24\xc8\x19\xe4\x43\x58\x85\xef\xee\x3c\xa7\xba\x93\xfa\x60\xc9\xa8\x23\xac\xd7\x29\x80\x7b\x73\x34\xa7\x40\x8b\x54\xb6\xf4\xa0\xa5\x75\x98\x6e\x07\xb7\xe6\x68\xe5\xbb\xea\x2e\x6e\xf7\xd1\xd4\x5d\xd3\x05\xc8\x79\x32\x48\x0b\xb0\x8a\x4b\x59\x22\xf3\xf7\xe6\x8f\xbb\x6f\x8d\x65\x9b\xfe\xde\xf4\xf7\x98\xb6\x6d\xda\x66\x97\x5b\x38\xd6\x46\x3b\xad\x83\x14\x7a\x1b\xde\xbc\xd1\x4e\x9f\x3b\xed\x97\xe0\x39\xf5\x19\x52\xff\xb6\x0d\xc7\xf2\xb2\xde\xcb\xdf\x4b\xea\xb8\x99\x83\xd0\xf5\x2f\x19\x6d\x56\x27\xdb\xe3\xbb\xc5\x73\x8f\xef\x3e\xbe\xeb\x58\xbe\x3e\xf7\xfa\x2e\xf3\xb2\xbd\x43\x99\xef\xae\x2d\x71\xc0\x2f\xbf\x0a\xe6\x2a\xee\xaf\xb1\xb3\x15\x8f\xdd\xad\x18\x58\xc2\x80\x4b\xfe\x6f\xc0\x22\xbf\x64\x6b\xdc\x76\xcc\xb4\x01\x6b\xfc\x92\x05\xb2\x57\x19\x6d\x01\x7e\x30\x76\x5c\x04\x03\x16\xf9\x26\xe5\xc3\x80\x39\x7e\x15\xa9\x6c\xb5\x6f\x3f\x7c\x0e\xd6\x98\x8d\x6b\xf9\x01\x19\xfc\x2a\xac\x03\x3d\xd8\x5d\x82\xe1\x71\xef\x5c\xbd\x0c\x78\xdc\x57\x61\x0e\x62\xa6\x2f\x7c\xee\xab\x98\xca\xf8\x34\x55\x72\xef\x36\x0f\x75\xd9\x07\x5d\xb5\x0f\x9b\x87\xba\xec\xaa\x29\xec\xed\x4b\xc6\xa7\x0d\xab\x0d\xbb\x60\xf0\x6e\xf8\xae\x6a\x1a\xb6\x25\xec\x3e\xe2\x72\x24\x2f\x18\x3b\x7e\xbf\xb1\x1b\x7b\x03\x40\x76\xec\x19\xca\xec\xe6\xa0\x4b\xcb\xcf\x2d\xbf\x03\x35\xd8\x55\xc9\x5d\x47\x03\xd1\xab\x63\x9f\x3e\xa7\x05\xc0\x75\xe5\x80\xf7\x7c\x15\x76\x69\x51\xef\x79\x2b\x7b\xc8\x85\xc2\x67\xb8\xc2\xee\x97\x9f\x31\x19\x8d\xcb\x57\x5d\x4d\xf1\x55\x0f\x48\xc4\x57\x41\x53\x88\x23\x1b\x50\x83\xaf\x82\xa6\xa4\x9a\xf1\xa8\x05\xae\x92\x40\xea\xc7\xfe\xfa\xb9\x2f\x9f\x9b\x8e\xb8\xda\xb7\x6b\x1c\xa6\x23\xfe\xd9\x7d\x9f\xef\x1e\xb4\xcf\xd5\x6f\xd7\x00\x48\x87\xed\xb3\x4b\x35\x00\xb8\x9e\x1b\x87\x06\xc0\xb1\xf9\x6e\xef\xc8\xa6\x32\xd3\xbc\x31\x7b\x61\xe1\x5e\x85\xcf\x0d\x9e\xc3\xe7\x31\x8e\xe6\x73\xc3\xe7\x5e\x65\xb6\x8f\x21\x3a\x38\x40\x8e\x63\x1f\xca\x78\x17\x57\xec\x38\x5c\x39\x01\x09\x8c\xc3\x95\xf3\xd8\xfd\xbd\xe0\xf7\x70\x07\x0f\x8e\xdf\x6d\x03\x79\x36\x8e\xe3\x56\xe6\x77\x24\xcf\x75\xdf\xed\xca\x58\xb1\xa1\xa6\x5e\x85\x75\x30\x94\x30\x4b\xaf\xc2\xe7\x18\xa3\x23\x7d\x17\xbf\xf9\x06\x44\x71\x1c\x18\x91\xe3\xf0\x30\x51\xdb\xbf\xcf\xf6\x03\xaa\xe8\x55\x94\xaf\x24\x32\xbb\xc3\x45\x0f\x3c\xe2\x80\x2e\x7a\x15\xa9\x8c\xe7\xa6\x4d\xd0\x65\xc7\xd9\x7e\x1c\x6e\xec\xd0\x3a\xb7\x0d\x94\xc3\x80\xbe\xf9\x6f\x1c\x6e\xec\xb8\x85\xc6\x71\x59\xaf\x0b\x21\xd7\xb1\xe3\x70\x63\x3f\xb4\x45\xc1\x15\x8c\x43\x55\x84\x9f\xb9\x6d\xe5\xf0\xdf\xb6\xcf\x73\x0a\x20\x80\x71\xb8\x38\x1e\x64\x77\xde\x08\x68\x1d\x38\x2c\x56\xe1\xef\xb1\x11\x1f\x9f\xef\xba\x99\x72\x3f\x35\x60\x20\x5e\x85\x6d\x61\xa1\xee\x0e\x7f\x77\xf8\x09\xf7\x1e\xde\x0d\x8c\x7e\xd8\x16\x66\x63\xc7\x91\x39\xba\x36\x21\x7c\xec\xa3\x6b\x13\x76\xcf\x15\x10\x57\x0e\xa8\x80\x57\x61\xbd\x0c\x6b\x77\xf5\x81\x00\x78\x40\x7a\x31\xba\xfb\x61\x77\x3f\x84\x94\x7c\xe0\x9e\xff\x1b\xb0\xf8\xb6\x0d\x86\xc6\x01\x29\xef\x2a\x68\x32\xe1\x70\xa3\xbb\x1f\xf6\x5f\xfa\x39\x4c\xe0\xee\xf0\x42\xa9\xbb\x64\x54\x3b\x95\x91\xb2\x6d\x9b\x0c\x51\xd7\x46\xc3\xcb\x3f\x34\xe5\xe0\xb9\xfd\x1b\xd2\xd7\x6e\x93\x51\x83\x8f\x76\x15\xe7\x7f\xfd\xaf\x01\xca\x77\x40\x15\xbb\x0a\x3a\x05\xff\xd4\xe8\x97\x8f\x39\xb8\xdc\x39\x8f\xae\x95\xd5\xef\x1f\x89\x15\x55\xb8\x7e\xf4\x87\x74\xb9\x18\x18\xf0\xb9\xae\xc2\x1a\xd6\x0c\xeb\xee\x67\x5d\x7b\x0a\x08\xce\x80\x70\x75\x15\xb7\x32\xfa\x49\x7b\x0a\x6e\xd5\x25\xe3\xdd\xcf\xa1\x90\x7e\x06\x22\x8f\x01\xd7\xe9\x2a\x50\x15\x6e\x9f\xc7\xd8\x4e\x65\xa8\x0a\x98\xa2\x31\x9a\xcf\x35\x9f\x63\xb8\x87\x47\x8a\xa1\xaa\x00\x0d\x1a\x70\x92\xae\xc2\x7e\xaf\xf5\x65\x43\x1b\x0b\xf2\xd1\xc1\xed\xc4\x18\x6e\x7b\x70\x8d\xb6\x0d\x0f\xfa\x80\x5f\x74\x15\x36\x8f\x05\x79\xb8\xed\x8d\xe3\xf7\x1c\xd5\x6a\x76\x49\xf0\xd9\x20\xd1\x18\xf0\x72\xae\xa2\x94\xf1\x19\x2e\x28\x63\x6d\x75\xcd\x08\xd8\x01\xbb\xe6\x2a\x76\x65\x1d\x99\xef\x0e\x7f\x8f\xd9\x3c\xdc\xe3\xa0\xd0\x6c\x86\xaa\x8e\xe1\x1e\x07\x93\xe6\x92\xf1\x69\x61\x5b\xa0\x5b\x31\x42\x75\xc0\xa2\xf9\x37\x46\x76\x64\x9c\x96\x46\xfa\xbd\x84\x8a\x6a\x19\x0f\xb5\x76\xa0\xb5\xc6\x64\x8e\x51\x3e\xc6\xb6\xb7\x8e\x07\xc8\xec\xd1\xf2\x33\x3a\xdd\x32\x6d\xca\xb4\x29\x6c\xcb\x5c\x25\xad\x22\x95\xd1\x05\x6a\xf2\x98\xbf\xfc\xc5\x74\x3d\x8e\xb0\x31\x4e\xeb\x40\x5b\xa0\xa8\x5c\x85\x9f\x11\x3e\xe7\x67\x5c\x76\x41\xf0\xb9\xd7\xa3\xec\x5d\x9f\xa1\xb2\x78\xd8\x80\x2e\xb2\x89\x65\x18\x43\xf5\x86\xf8\x71\xc9\x78\xce\x2d\x73\xac\xf3\xf1\x80\x20\x68\x8c\xdb\x57\x1f\x6b\x60\xce\x0f\xcf\x15\xe3\xb1\x25\xd8\x75\x43\xfd\x86\x69\x71\x74\x55\xef\xb5\x21\xaf\x9d\x32\x69\xf0\xe7\x87\xa1\xf2\xa6\x9c\x1c\xc3\x8d\x55\x3e\xc5\xae\x36\x7e\x7e\xeb\x77\xfb\xd8\xea\xbb\x70\x16\xc0\x66\xd8\x1a\xce\xc6\x11\xce\x82\x80\xd0\xb7\xe1\xc8\x1a\x30\x13\xae\xe2\x50\x36\x91\x4d\x65\xa7\xa8\xe0\xd5\x9f\x30\x07\xae\x62\x57\xc6\xbb\xaa\x7c\xec\xa2\x87\xb1\x08\x21\x0f\x5c\x85\x75\xa0\x66\xe1\xde\x08\xa7\xdf\x92\xad\xce\x83\xaf\x6f\x15\x3e\xc7\xe9\x2d\xf0\xe9\x8f\x18\xb6\x05\xbd\x80\x2d\x6f\x15\xd6\x81\x25\x1f\xc3\x3a\x54\x6f\x12\x19\x0d\x88\xf1\x56\xc1\x3d\x18\xe1\x9f\x23\x3c\x44\x47\x58\x2f\x2b\x46\xb8\xaf\xc6\x32\xcd\xc6\xf0\x33\xd2\xc7\xd2\x57\x39\x93\x87\x87\xe4\xe0\xa0\xd1\xf0\x77\x0d\x18\xe2\x56\x61\xb5\x18\xf7\x70\xba\xad\xc2\x6e\xc1\x90\x0f\xf7\x52\x18\xdb\x96\x8c\xe6\xa9\xb6\x71\xfa\x1c\xfb\x48\x68\xd5\xc5\xe9\x10\x31\xe2\xe1\x0a\x1c\xa7\x77\xcf\xf3\x7f\xb0\xc5\x43\xd6\xb6\x0a\x7f\x9a\x33\x79\x78\x0e\x81\x3f\x6d\x0d\x0c\x9f\xa4\xa6\xc3\x9d\xb6\x64\x7c\xba\x67\x68\xa8\xd2\x5a\xe3\x46\x78\x84\x67\x68\xa9\xd1\x0c\x66\x1b\xd0\x9e\xfd\x8d\x50\xaf\xf7\xc6\x67\xba\x25\x07\x5b\xb2\x6c\x15\x03\xba\xb3\x55\x30\x5a\x44\xb3\x8e\x78\x6c\x8b\xfa\xbf\xab\x11\x5a\x8c\x70\x91\x2d\x19\x6d\x79\x1d\xc1\xd7\xf6\x71\x76\x0f\x95\x1d\x3e\xb2\x25\x63\x18\xb4\x22\xe1\x1f\x5b\x32\xb4\x49\x2b\x32\x9c\x01\x44\x8e\x0e\xaf\x0d\x46\xc2\xed\xd9\x76\x8c\x7f\xc8\xbf\xfe\x46\x72\x37\x6a\xb6\xc7\x91\xdc\x8e\x8e\xf4\x76\x94\xf8\xb3\x91\xce\x80\x6c\xf6\xdf\x18\xc8\x1e\x65\xaf\x32\xde\x75\x56\xa4\xb3\x02\xf2\x96\xe1\xd5\xc4\x80\x12\x6c\xc9\xa8\x77\xb7\x5e\x23\xbc\xf8\x8c\xf4\x48\x04\xf9\xd7\x7a\x8c\x9f\x73\x6f\x80\x04\xac\x99\x75\x79\xa4\x93\x07\x92\xaf\x25\xa3\x29\x9d\x61\xcb\x6e\x37\xa3\x61\xe9\x99\x28\xbb\xdd\xcc\x32\x93\x5a\x20\xe9\xe4\xd9\x71\x0f\xa4\x06\x28\x3c\x5e\xad\x91\x41\x76\xa4\xfb\x40\xba\x0f\x90\xde\x70\xa4\xe7\x9a\x4c\xdb\x87\x5a\xc1\xb5\xb5\x0a\x2f\x92\x59\x54\x52\xaf\x54\xba\xe8\xeb\xc1\xf3\xd6\x65\x24\x86\xaa\x61\x5f\x23\x35\x55\xb2\x7c\x0e\xb5\x82\x66\xeb\x6f\xe4\xf4\x39\xcc\x81\xf4\xfc\x93\xd3\xe7\x50\xa1\x9c\xf6\x01\x47\xf2\x06\x18\x77\xa4\x8b\x79\x5e\xbe\x6b\x9f\x6a\xac\x24\xc6\x4a\x3b\xd8\x6c\x52\x63\x25\x6f\x9f\x53\x0d\xb4\x3a\x21\xb6\x6a\xed\x70\xc8\x5d\xcd\x13\x6f\x67\x83\xff\x75\xe4\x63\x1f\x3c\xbe\xcb\x26\x92\x4f\x28\xb3\x0e\x0e\x0e\xa9\x9b\x08\xae\xab\x25\xa3\x2d\x9a\x35\xc9\x31\xbd\x91\x2f\x63\xa4\x6a\x9f\xaf\xcf\xe1\xe9\x4b\xd7\xf8\x54\xc5\x35\x13\x61\xae\x5a\x45\x28\xa3\x0e\x55\x3c\x55\xf1\xc3\xb1\xd4\xda\xe5\x26\x6b\xc9\x56\xbf\x40\x56\xb5\x8a\x2e\x35\x7f\x43\x56\xca\xa6\xb2\x03\x19\xef\x96\xd4\x20\x07\x9b\x46\x69\x12\x55\xfb\xbd\x3b\x91\xa5\x32\x74\x12\x7e\x96\x51\xdc\xd8\x0c\x78\xa4\x9a\x11\x68\xa3\x34\x89\x6a\x37\x82\x1a\x7b\xa5\xdc\x20\x0a\xfb\xa7\x71\x23\x37\xca\x03\x55\xe1\xbd\x37\xb1\xea\x28\x0f\x54\x75\xf8\x2e\x4b\x49\x69\x8d\x57\x57\x86\x1e\x94\xbe\x80\x52\xc7\xa1\x41\x1a\xe5\x06\x51\xea\xb8\xae\x3c\xd8\x9d\x56\xf1\x28\xf3\x39\xf4\xa5\x30\xbd\x1b\xc9\x21\x46\xe9\x76\xaa\x38\x95\xf1\x1d\x6e\x1a\xa5\xad\x03\x13\xfd\x28\xcf\xf3\xb0\x29\xb5\x06\xd9\xf7\x80\x42\x69\x15\xd6\xc1\x5c\x2d\x5d\x51\xb0\x16\x2d\x19\xcf\x95\xdf\xab\x8e\x13\xc0\x35\x4a\x1d\x2f\x77\x08\x4d\x87\xd2\x88\x81\xef\x67\xed\x69\xb4\xc5\xd3\x56\xb9\x1b\x0c\xfb\x5e\xbd\x2f\x97\x7b\x92\xb5\x8c\xf2\x90\x5f\x97\xd0\x1f\xfb\x59\x2b\xa6\xee\x4d\x19\xe3\x71\xdb\xcf\x2e\xf7\xba\xed\x20\xf3\xf9\x1b\xe5\xd2\xae\xdb\xae\xd4\xf1\x52\xc7\x75\xc7\x95\x3a\x5e\x8f\x6d\xe1\x20\x50\xea\x73\xfd\x52\xf4\xb2\x61\xd7\xc7\xba\x06\x8f\x4e\x33\x54\x69\x94\x66\x7a\x7d\xac\x1b\xc3\xbe\xff\xd4\x2b\x97\x71\x12\xd2\x8d\x52\xc7\x4b\x1d\x1f\x8e\x87\x3a\x5e\xea\x38\x79\x99\x86\x37\xb3\x63\x42\xe1\xdc\x48\x78\x34\x20\xcb\x59\x05\x7a\x40\x10\xd7\x98\xea\x3d\xb4\x38\x4b\xb6\x74\x63\x6a\xf0\x4c\x0d\x1e\xc2\xb2\xc6\x54\xc7\xa7\x3a\xae\x8b\x6e\xba\xdc\x4f\x97\x7b\x98\x78\xc7\x74\xb9\x87\xfa\xa6\x19\xc2\x34\xa6\xba\x3b\xd5\x5d\xd8\x6e\xc7\x3c\x6c\xcb\x61\x5b\x18\xdf\xa9\x6b\x6b\x76\xfb\x99\x79\x39\xd5\xe7\xe9\x3a\x3e\xfe\x27\xbb\xfd\xf4\xa0\x39\xcd\x39\xaf\xa7\x6f\xba\xcc\x4f\xed\x26\xf0\x25\x63\x8e\x4b\xd9\xa7\x8c\x4f\xd2\xf3\x0a\xf9\xcc\x92\xf1\xe9\x4e\x81\xc9\xe5\xa6\x31\x53\x43\x4c\xc7\x98\x2e\xfd\x7a\xff\xa6\xea\xfe\x23\x7d\xd1\xd3\xe7\x25\xf7\x80\xd7\x65\xc9\xf8\x74\xd5\x1d\xca\x95\x65\x4b\xd1\x16\x1d\x0e\xd3\x29\x40\xe4\xce\x98\x4e\x01\x21\x91\x72\x45\x8e\xa9\x91\xc4\x5d\xf7\x92\xd1\xbe\x69\x5b\x34\x9c\x80\xec\x8d\xa9\x37\x76\x3a\x55\x74\xe1\x4d\x0d\xa7\x49\x16\x15\x4f\x4b\x53\x0f\xd9\x74\xf6\x10\xde\x3c\xa6\xc6\xd2\x74\xd7\x20\xa2\x6f\xc0\xad\xb2\x0a\xbb\x00\x4d\x9c\xfa\x2a\xe6\xe5\xbb\xac\x02\xd3\x19\x35\x6f\x9b\xac\x86\xdd\x6a\x0e\xf7\x66\xd2\x60\x8d\xe9\x4e\x32\x6f\xbb\x9e\x55\x7e\x6a\x18\x4d\x0d\x23\x60\x28\x63\xea\xdc\x85\xd4\x64\xc9\xa8\xe3\xf5\xd3\xde\x5f\x56\x56\x9e\xf3\x72\x61\x72\xb9\xd0\x42\x6d\xf2\xb4\x30\x9d\x3d\xe0\xe6\xc7\xf4\x22\x61\x02\x94\x6a\xc9\x90\x9f\xce\x8a\x73\x83\xa9\x81\x45\xf4\xf4\x14\x70\x7a\x0a\x80\x40\x63\xc0\x81\xf2\x37\xce\x1f\x4f\x14\x0b\xc8\xa9\x5d\x74\x72\xdf\xd0\x08\xb1\x19\xa7\x76\xd1\xa9\x5d\x44\xa8\xc3\x38\xdb\xef\x5d\xab\x45\x33\x4e\xfd\xc2\xa7\x76\x11\x00\xf7\x71\xee\xa1\xac\x94\x25\x32\xdb\x72\x58\x2f\xda\x02\xfb\xc9\x2a\xac\x03\x2d\x38\xbd\x83\x80\xf4\xa4\x19\xc9\x35\x4e\x4f\x10\xf0\x9a\x2c\x19\xbf\xe7\xa1\xf9\xf4\xd0\x0c\xa4\x7a\x9c\x1e\x9a\x4f\xae\xe6\x9a\x4e\xe5\xd3\xab\xb9\x53\x23\x88\x78\xd1\x71\x3a\x63\x4e\x37\x08\x02\xc0\xc7\xe9\x8c\x81\x90\xa4\x49\x16\x3f\x4e\x0f\xc8\xa7\x07\x64\x42\x4a\xc7\x19\xbf\x77\x6f\x65\xb4\x19\x84\xe6\xf8\x51\x8a\x10\x94\x3b\x4e\x8d\x25\x68\x43\x96\x8c\x77\x3d\x91\x40\x07\xb2\x64\xbc\xab\xa7\xef\x74\xc6\x00\xa7\x18\xa7\x77\x15\x10\x6a\xb4\x06\x62\x7e\x9c\x1a\x46\xa7\x27\x5f\xa2\xae\xc6\xe9\xc9\xf7\xf4\xe4\x4b\x30\xfe\x38\x4f\xeb\x50\xed\x09\xf0\x18\xf0\x60\xac\x22\x95\xf1\x9c\xc6\x12\xdc\x15\xcd\x80\x9d\x71\xaa\xf6\xa7\x1b\x89\xee\xb8\xd3\x73\xc3\xc9\x3d\x5b\x2b\xfb\xde\x23\xf2\xe9\x11\xb9\xec\x67\xcf\x0d\xa7\x06\x54\x61\x47\x9f\xba\x80\xce\xc7\xe7\xb8\x4b\x39\x9f\xdf\x73\x9f\x32\x9e\x7b\xd5\x3f\xae\x95\x1b\xb4\x46\xe3\x7c\x1d\x5f\x37\x1c\xc2\x68\x06\xac\x13\x7f\xe3\xfc\x6c\x9f\x63\xe4\xb9\xe1\xc4\xfb\xdc\xca\xf1\xf0\xdc\x00\xcf\x44\x6b\xba\xf2\xce\xef\xf7\xae\xf5\x32\x1e\x97\xde\x67\xe8\x25\x5a\x23\xe7\xcb\xb8\x9c\x1f\x97\x67\x04\x08\x69\xc7\xa5\x11\x74\xed\xd4\x4b\x0c\xcc\xb8\x34\x82\x2e\x0d\x1e\x00\xbe\xe3\xd2\xe0\x81\xdd\xa1\x35\xd0\xbb\xe3\x72\x83\xb8\xdc\x20\xe0\x64\x1c\xd7\x31\x95\xf9\x1c\x2e\xd3\x4b\xf7\xe3\xe5\x29\x59\x4f\x1b\x30\xb8\x55\xf8\x1c\x3a\x7e\x81\x22\x1b\x97\xba\x0b\xcf\xfc\xb8\x80\xad\x8c\xcb\x95\x5d\xdf\xd8\xa5\x71\x03\x8b\x42\x6b\xd0\xb1\x8f\x4b\xe3\x06\x06\x85\x66\x7c\xc7\xb8\xd4\xc9\xcb\xd5\x7e\xd2\xf7\x97\xc6\xfa\xa5\xd7\x86\x70\xba\x71\x79\xfc\xbd\x3c\xfe\xea\x43\xbb\x4e\xeb\x55\xff\x80\xf8\x8e\xcb\xa5\xf8\x3a\xad\x17\xe3\xf5\xba\xfc\x36\x0d\x19\x1d\x66\xd7\x65\x9f\xaa\x7f\x24\xa2\x1e\x70\x21\xac\xc2\x6f\xc3\x50\xbd\x34\x5a\x2e\x75\x6d\x3a\x1e\xea\xda\xc5\xb2\xbb\xc3\x8a\x31\xa0\x3f\x58\xc5\xad\x8c\xf6\x69\xa0\x5c\x26\xfc\x77\x4d\x84\x51\x60\x15\xaf\xb2\x55\xc7\xad\x07\xe5\xc6\x8f\xb8\x03\xaf\x1a\xb7\x06\x32\x94\x00\xeb\x58\xdd\x91\x31\xcf\x6f\x8c\x82\x7d\x63\x1e\xdd\x3a\xfe\x6e\xbc\x20\xfb\xc6\x9c\x21\xe4\xff\x6f\xdc\xac\x75\x84\x2f\xfc\x73\xb3\xbf\xb5\x2d\x20\x02\x68\xfb\xc6\x94\xba\x55\x1d\xe2\xfe\x97\x8c\x9f\xf6\x3c\x78\x77\x3f\x89\xe1\xbf\x7b\x28\x4b\x65\x34\x4b\xe3\xe1\xc6\x78\xd8\x75\x8a\xdd\x1a\x0f\xc4\xec\x2f\x19\x75\xb8\x3c\x12\x96\xbf\x64\x74\x87\x4e\x17\xc2\xf3\x9b\x6c\x75\xe3\xd6\x75\x7d\x87\x9f\x89\x4a\xdc\xe9\xef\xa5\xef\x62\xef\xde\xaa\xd3\x9d\x76\x2f\xd3\xec\xf6\x2a\x97\xf0\x8e\xb6\x83\xc8\x1a\xb7\x90\x83\x5b\x4e\x22\x80\x8f\xe3\xd6\x78\x20\x72\xbe\xed\x24\x53\x1f\xb7\xce\x42\x02\xe8\x9b\x48\xba\x71\x4f\xbb\x7c\x2d\x8f\xc3\x9b\xdc\xdb\x9b\xdc\xfb\x34\xf9\xc6\x46\xf3\x74\xba\xdc\x90\x06\x99\x0a\x62\xdc\xde\x9b\xdd\x97\xcf\xb1\xd3\xdd\xae\x84\x37\x9a\xb8\x43\x1a\x39\x6e\xcd\x67\x22\xe7\x97\x8c\xe6\xdd\x0e\x07\x47\xc9\xbd\xa9\x25\x1a\x00\x37\xab\x9e\x79\x4e\xc6\xad\x2f\xfc\x7e\xac\x97\x95\xf5\x7e\xec\xd2\xd7\x7a\x59\x45\x6f\x8f\x8d\xf7\x6b\x1d\x98\xc0\xb7\xde\x42\xa2\xeb\x97\xac\x90\xd9\xe6\xd7\x6e\xc1\xf3\x70\xab\xd9\x44\xde\x2f\x19\xdd\xa2\x99\x7d\x7f\xb6\xcf\xa1\xd4\xa4\x06\xac\xd7\x76\x80\x5b\x43\xb0\xde\x78\x36\xdb\x8c\x09\xfc\x38\x03\x9e\x35\x03\x06\x19\x39\xc7\xe3\xa5\xf2\x83\x5b\x71\xd7\xdf\xf5\x68\x65\x3f\x9b\xcd\x63\x11\x78\xbc\x54\x7e\x9c\x28\xfa\xbb\x1e\xef\x61\x80\xfb\x2d\x59\x21\xbb\x95\x3d\x32\x9e\xd2\x94\xe6\xbb\xbb\xef\xb2\x08\x3c\x1a\x0a\x8f\x13\x0a\x12\xa8\xf1\x88\xe1\x79\x9c\x1d\x50\xa4\x8e\xc7\xd9\xf1\xc0\x86\xb3\xeb\xe4\x7a\xb4\xbc\x1f\xac\xec\x5d\xe7\xd5\xa3\xb7\xe4\xe1\x24\xb9\xeb\x94\x7a\x5c\x58\x9f\x6e\x0a\x28\xcc\xd9\x47\xef\xfa\x33\x52\x19\x6d\xf6\x74\xf9\x70\x83\xbc\xc3\xb4\x36\x1e\xdd\x8f\x0f\x8b\xed\xae\x53\xea\x71\xb1\x7d\x70\x3f\xca\x56\x3e\x1e\xbd\x2a\x4f\xda\x66\x6c\xcd\x47\x4f\xfa\x83\x19\xbd\x83\xe5\x1a\x4f\xfd\x64\xb6\x99\xd9\xf6\xe8\x7f\x7c\xa6\x32\x87\x4d\x93\xf9\x99\x7e\x2f\x33\xeb\xf1\x66\xe7\x99\x7e\x07\x0b\xeb\x73\xfa\x1d\xa7\xef\x32\xdb\x1e\x0d\x85\xe7\xfa\xc9\x68\xb3\x4e\x42\xa2\xe4\xdb\x7e\xd8\x57\x3a\x04\x1f\x55\x5c\x4c\xd5\xe3\x1d\xdd\xa3\x8a\xc3\xbc\x36\x1e\x6d\x5c\x82\xe4\xdb\x4e\x6a\xa0\xf1\x08\x96\x79\x54\xf1\x03\xb5\x7f\xde\x43\x99\x75\x70\x62\x7f\xdc\xc4\x1f\xb2\x0d\x99\x29\x71\x3c\x7a\x41\x1e\xbc\x20\x3b\x6c\x13\xe3\xd1\xd5\xfd\x70\x42\xdc\xc5\x5e\xbd\x5e\x0d\xbf\x18\xb4\xbb\x9e\x9b\xd7\x0d\xfb\xdd\x4c\xe6\xc8\x54\x78\x5d\xbc\x5f\x75\x52\xcf\xcd\xeb\xe2\x4d\x6c\xfb\x92\xad\xfe\x7b\x5d\xbc\xdf\xdd\xef\xc0\xa0\x78\xd5\x35\x23\xa9\xf6\x83\x93\xdf\xab\xb7\x8e\x10\xf4\xb6\x43\xe8\x33\x5e\x37\xf1\xf7\xf0\x5d\x36\xbf\xf7\xb8\x94\xe1\x72\x66\x7f\x20\xf4\x7c\x15\x9f\x8f\xad\x6e\x7e\x5d\xb0\xdf\xee\x67\x30\x3d\x5e\x55\xf2\x1d\x36\x19\xa7\xc0\xab\xfa\xbd\xaa\x9f\x0e\x99\x77\xdc\xca\x1e\x65\x3c\x17\x36\x2f\x7e\xcf\xf1\x69\xaa\x24\x51\xdb\x6d\x87\x09\x68\xbc\xba\xba\x41\xa5\xb6\x5d\x47\xcb\xab\xaa\x11\x71\xb3\x64\xb4\xcf\x5b\x9b\x97\xfd\x7f\x17\x97\xf5\xaa\x56\xaf\x84\xc5\xe2\xad\x0c\xab\x19\xef\x69\xbd\x4c\x85\xd7\x15\x96\x10\x9a\x26\x33\xd5\x78\xdd\xeb\xdf\xcb\x36\x33\xbc\xaf\xb6\xe6\x8b\x5d\xb9\x8b\xad\x32\x34\x66\x08\x5b\x35\x24\x67\xbc\xee\xeb\x2f\xd9\x35\x76\xaf\x6d\x5e\xef\x59\x5e\xd5\x4f\x87\xcc\xeb\x15\x31\xb1\xcc\xcd\x50\x9b\xf1\x6a\x57\x0a\x6f\xdd\x75\xd2\x08\x6f\x1d\xaf\xb9\x1a\xbb\xc3\xa6\xaa\x11\x37\xdc\x76\x52\x78\x8c\x57\x07\x05\x21\xc3\x4b\xb6\xda\xf2\x79\xc4\xfa\x36\x7f\x8f\xcb\xd5\x4f\xfc\x96\x81\xbf\xe4\xa5\xfb\xe7\x5e\xff\x79\xb4\xfa\x5c\x1d\xf5\xeb\x88\x88\x1d\x1f\x47\xab\x5d\x88\xd6\xe7\xd1\xea\x53\x63\xc9\xcb\x3c\x3e\x4d\x4c\x80\xb1\x4b\xc6\xbb\xfa\xcf\x08\xdb\x6d\x3b\xb9\x3c\xc6\xe7\x31\xea\x53\xed\xc8\x93\x31\x3e\x4d\x4c\x51\xb2\x06\xac\x8c\xaf\xdb\x16\x55\x51\xff\xcf\xe7\xfe\x4f\xc8\x6c\x33\xa3\xcb\xf8\x5c\xf5\x08\x97\x5d\x32\x9e\xd3\xec\xfc\xe2\x97\x46\x69\x43\xf6\x7b\xce\x7a\xd9\x9c\x3f\x7d\xc9\x1f\xcc\xe5\xbb\x7e\x9d\x4f\xbf\xf1\x2f\x08\x56\x1f\xce\xa7\xd9\xf9\xd5\x4f\xc6\x73\x1e\x85\x08\x66\x5d\x32\xda\xec\x4a\x48\xc0\x6a\xdb\xdd\xad\x80\xc7\xae\x22\x95\xf1\xae\x47\xa1\xef\xf4\x3b\xca\xe7\x50\x3b\x91\xb3\x3b\x39\x89\xc7\xa7\x7a\x12\x8f\xda\xf6\xe1\x50\x0b\xe5\xfa\x48\x7b\xba\xc3\x48\x33\x3e\x3d\x00\x9f\x2a\x4b\xc0\xe5\xf8\x3c\x0a\x01\xa0\x6d\x3b\xf4\x36\xe3\xd3\x00\xf8\x54\x59\xe8\x64\xc6\xa7\x01\xf0\x69\x9e\x06\x53\xf4\xd3\x2b\xf0\x71\x14\xda\x61\x91\x19\x9f\x46\xc1\xa7\x51\x20\x6c\xeb\xd3\xf7\xf6\xbd\xa1\x8c\xdf\x7b\x4b\xd9\x54\xc6\xf7\x7a\x6d\x4e\x30\xd9\x92\xd1\x3e\x8f\x47\x9f\x26\x30\x2c\x31\xe3\xf3\x78\x24\x3a\x77\x87\x08\x66\x7c\x9f\x7a\xa0\xf1\x00\xa7\x4b\x00\xcb\x5d\x05\xa9\xd1\x96\x4a\x86\xe0\xdc\xd8\x36\xab\x5d\x2a\x14\x1b\x48\xb3\xd8\x34\x0a\xf0\xf9\x84\x91\x69\xf1\x8b\x4c\x83\x77\x25\x40\xef\xae\xa2\x94\x25\xb2\x57\x99\x5d\xb0\x4e\x3d\x21\x88\x37\x04\xf1\xee\xf8\x81\x62\x03\x08\x1e\x1b\xae\xe4\x3d\x96\xfa\xc5\x76\x58\xc7\xf1\x7b\x8e\xf6\x31\x15\x62\x73\x51\x06\xca\x15\x1b\x53\x21\xb6\xc3\x77\x07\xcf\x01\xec\x08\xf0\xbd\x6d\xc7\xc1\x13\x5b\xb7\x2d\x1a\x05\x70\x07\xc6\xb6\x96\xe3\x55\x58\x47\xd2\x96\x61\x1d\x9a\xcc\x70\x10\xc7\x36\xec\x03\xa7\x0c\xf0\xae\xd8\x86\xbf\x17\xf6\x41\xf2\x7b\x61\x97\x86\x43\x59\xb4\x0f\x60\x79\x6c\xf8\xe0\x76\x08\x8f\x62\x4b\xdb\x97\xaa\x50\xd1\x66\x3c\x0a\xb1\x25\x49\xff\x76\xaa\x2d\xbb\xa0\x7c\x75\xd2\xbc\xb2\x8a\xb2\x79\x93\xae\x02\x24\x19\x9b\xd6\x36\x51\xfe\x21\xc0\x37\x36\x1c\x0f\x72\x8a\xc6\x36\x1d\x22\x1c\x0f\x3b\x70\xb1\x30\x4c\x2f\x36\xdc\x72\x3b\x70\xb1\xd8\x4e\x9b\xc7\x7d\xa6\x9c\x18\xb1\xe1\x96\x8b\xcd\xcd\x00\x08\x59\x80\xf6\x5d\x85\xb2\x9d\xcf\xbd\x1c\x0e\xed\x0e\x20\x64\xb1\xdd\xd6\x7b\x5b\xef\xc1\x73\xb7\x43\xee\x66\x00\xac\x2c\x04\xf3\x86\x60\xde\x1d\x08\x59\x6c\x8f\xc3\x81\x07\x7b\xc7\x61\x14\xdb\xeb\x73\xaf\xed\xeb\x7c\xef\x67\x1d\xf8\xd1\x4c\x95\x1a\x02\x72\x43\x40\xee\x0e\xd7\x59\x34\x4c\xe1\x68\xda\xbd\x40\xc8\xa2\xe1\x48\x8b\xa6\x8a\x03\x17\x8b\xa6\x8a\xb7\x66\x5b\x50\x17\x81\xbb\x01\x56\xb7\xed\x38\x91\xa2\xe1\x34\x0b\x81\xbb\x3b\xdc\x6f\xd1\x58\xd9\x03\xfc\x6e\xdb\x21\x96\x0b\xc3\x1a\xa3\x69\x8b\x10\x12\x18\x4d\xb5\x6f\xda\xbd\xe4\x0d\x8b\x86\xdd\x1b\x82\x79\x77\x28\xf3\x42\x30\x6f\x80\xdf\x5d\x32\x9e\xeb\xb6\xcf\x53\x21\x04\x77\xd1\xb8\x76\x0f\xc1\xbc\x3b\xfc\x6f\xd1\x86\xdf\xab\x8a\x43\xa9\x10\x4d\x15\x6f\xda\xc2\x60\xc4\xa2\xa9\xe2\x4d\x15\x87\xc4\x27\x0c\x69\x0b\x41\xbf\x3b\x39\x64\xa2\xa9\xe2\x4d\x15\x07\x37\x16\x2d\xfc\x0e\x60\x6f\x3b\xb8\xb1\x68\xaa\x7d\x53\xed\x71\x54\x45\x53\xc5\x5b\xf9\x7b\x2c\x1b\x02\x81\xa3\x69\xa0\x54\x57\xe6\xef\x95\xbf\x37\x78\x77\x5a\xaf\xba\x8b\x03\x2a\xda\xb4\xcd\xda\xcc\xc4\xa7\x45\xc3\x66\x8e\x76\x1e\xca\xe8\x83\xd3\x77\xb5\x99\xe1\x81\x89\x76\xda\x57\x97\x6d\x61\xea\xb7\xcb\xb6\x90\x54\x7b\xaf\x1c\xff\xdc\xec\x43\x9c\x70\x34\x6d\x9f\x72\xf8\x2f\x7f\xfa\xf6\xa7\x8b\x4f\xba\xfd\xe9\xdb\x26\x14\x5d\x7e\xab\x3a\x4e\x01\xfc\x53\xd1\x1e\x9b\xfa\xf8\x7b\x0e\xf5\xeb\x30\xe0\x5e\xde\x49\x8f\x11\x0d\xdb\x27\x9a\x53\x00\xb2\xff\x68\xb8\x97\xa3\x01\x32\xd9\xc1\x9a\x45\xfb\xac\xd7\x0d\x02\x5e\xf3\xd8\xf1\x8b\x85\x78\xe2\x1d\x5c\x59\xec\x18\x28\xb1\xab\xc6\xf8\xac\x62\x57\x65\x89\xa7\x5d\xb2\x35\x05\x76\xd5\x73\x57\x3d\x41\x87\xc5\xae\x7a\xee\x1e\xd5\x20\x25\x89\xdd\x15\x58\xb0\xef\x4e\x2a\xc8\x10\xec\x1b\x80\x7d\x03\x67\x7f\xec\x6a\xec\xae\xc6\xe2\xee\x8a\x7d\x58\x85\xda\x89\xbb\x2b\x76\x4c\xe5\x10\xeb\xbb\x93\x65\x30\xf6\x61\x93\xc3\x6e\x59\xa7\x80\x30\xe2\x3e\x8c\xb8\xdf\xc9\xa5\x10\xbb\x9a\xb8\xab\x89\xb0\x4a\xc5\xee\x02\xbc\xe7\xef\x39\xda\x42\xb4\x4f\xec\xfa\x3b\x88\x7b\x8f\x9d\xcb\x92\xd8\x93\x95\x95\x9c\x89\xb1\x97\xbf\xa7\x99\x8d\x5b\x2c\x76\x57\xe5\xdd\x55\x19\xb7\x58\xec\x5c\xa0\xc4\x3e\xfd\xb6\xc9\xbb\xd3\x36\x9b\x9a\x7e\x4e\xea\xe0\x12\x24\xc4\x04\x93\x26\x6c\xfd\xc3\xef\x65\xb5\x3d\x08\x52\x0e\x00\xc2\x7f\x21\x28\xf8\x00\x28\x1c\x3b\x11\x9f\x01\x36\xb8\x1d\xe0\xc8\x62\xbf\xfc\x3d\x6e\x41\x0e\xb8\x22\x62\xc7\xf5\x16\x3b\x2a\x79\x90\x03\x21\xf6\xc7\xdf\xc3\xa4\x3e\x36\xd5\x40\x55\x13\x14\x7c\x80\x19\x8b\xfd\xb5\x0f\xb8\xb5\x38\xc0\x8c\xc5\xfe\x39\x94\xdf\x4f\xb6\xde\x3d\xb8\xaf\x8e\x83\x7b\xbb\x03\x80\x58\x1c\xae\xac\xc7\x3a\xc4\x2d\x59\x47\xc6\x98\x1f\xcd\xef\x60\x63\x3f\x38\xd1\xc5\x81\x5b\xf6\x80\x00\x24\x0e\x0d\x8a\xc3\x6c\xe3\x80\xc1\xe2\xe0\xea\x21\xc0\xf7\x2e\x19\xef\xba\x8a\x1e\xbb\xdf\xc1\x8a\x7e\x68\x3c\x1c\x87\xdf\x81\x6e\x1c\x87\xed\x3b\xec\x17\x56\xf9\x83\x13\x5d\x80\xf9\x6d\x07\x08\xb1\x38\x0e\xdb\xd7\x7d\x17\x7d\x39\xba\x6d\xe9\xbe\x8b\x6e\x1c\x78\x14\xe2\x18\xf6\x7d\x51\xaf\x2b\xeb\x31\xfc\xde\xa2\x5f\xd4\xc9\x23\xec\x17\x56\xf4\x23\xac\x23\xed\x03\x76\xec\x23\x6d\x1f\x3a\x79\x10\xc5\x18\x87\x2b\xe6\xc1\x35\xc3\x41\x54\x69\x1c\xe9\xf7\xa6\x89\x0a\xd1\x83\x43\xfd\x3b\xf0\x32\x1c\x70\x5d\xc4\x31\xfd\xbd\xe9\xef\x35\x9e\x9b\x53\xd9\x2f\xc9\x21\xfd\x7c\xf9\x1d\x1c\xe9\x0e\x00\x5c\x71\x5c\xfe\xde\xe5\xef\xb1\x52\x43\xd9\xb1\x8a\xc3\x74\xa3\xbc\xeb\xce\x7e\xdc\x72\x5e\x38\xbe\xb7\x63\x6e\xb2\x45\xa2\x18\x03\xb8\xef\x2a\x6c\x8b\xe3\xfb\xf8\xee\xe3\xb7\xb1\x44\x1c\x8f\xe3\xc1\xf2\x77\x00\xf4\x8a\xc3\xa5\xee\x78\xad\xc3\xf1\x7d\x7d\xee\xb5\x0e\xc7\xf2\xb5\x4f\x59\xfe\x0e\xb2\x43\xc7\xf1\xf9\xbd\x9f\xcf\x31\x96\x5d\x3d\xed\xbf\x8c\xf9\x18\x6e\x7d\x0b\x65\xcc\xb7\xc6\x58\x76\x40\xe9\xd1\x9b\xfd\xc2\x92\x0d\x25\xc9\x2a\xec\x97\xe2\x5d\xbc\x61\x21\x2a\xf9\xc0\xf3\x15\x5d\x23\x57\x54\xf2\xd1\x58\xc6\x3b\xa0\xf4\xe8\x2c\xa7\x07\x9e\xaf\xe8\xc0\x89\xa2\x63\x01\x1c\x70\xc8\x04\xb0\xe5\x55\xf8\x1c\x63\xd9\xd5\xd3\xae\x9e\xee\xec\xe2\x40\x99\x57\xe1\xbb\xcc\xe9\xde\x7d\x8e\xf5\xf4\x00\xb6\x15\xdd\xf5\xb4\xb3\x9e\x1e\x78\xbe\xa2\xbb\x9e\x76\x80\x77\xe6\x0a\x09\x49\x46\xa2\xab\xa7\x78\xc3\xa2\x13\x3d\x19\x3d\xac\xb7\xaf\x31\x02\xdf\xbc\x8a\x5d\x19\xfd\xe2\x7a\xda\xd5\x5d\x3c\x64\xd1\xd5\x5d\x10\xd0\x3b\xa0\xf3\xe8\xaa\x6e\xc7\x00\x38\xc8\x32\x1a\xbd\x6c\xca\xb4\xc9\x0c\xaf\xc8\xe7\x10\xf9\x7c\x00\x9f\x0a\x91\xcf\xd1\x09\xa2\x3d\xc8\x24\x15\xfd\xb4\x29\xa7\x4d\x61\x19\xef\x2e\xa7\xfd\xfc\xbd\x4b\xbd\x97\xbf\xb7\x96\xc4\x01\x15\x7e\xf4\xdb\xd6\xdd\xf6\xf2\x6c\xff\xde\xeb\xbb\x7b\x73\x7f\xec\xa0\xc9\x87\xab\xb0\x5d\x85\x3d\x1c\xd4\xd7\xda\x5c\x30\x01\x4d\x45\xc7\x2f\x11\x1d\x50\xe8\x01\x68\x2a\xfa\xe7\xef\xe1\x16\x3b\x70\xd1\x45\x77\x61\x15\x07\x7d\x90\x79\x2f\x86\xfb\xb5\x38\xe8\x03\x20\x55\x0c\x4f\x6a\x83\x30\xca\xe3\x60\xf1\x16\x1b\x1d\x62\xa3\x0f\x72\x73\xc5\xd0\x8c\x1d\x9c\xd4\x8e\x83\xc9\x3d\x3c\x95\x8d\xfd\x27\x5b\x3d\x34\x5c\x58\x05\x38\x1f\xb8\xf2\x62\xb8\x88\x0e\x95\x13\xb7\x5d\x0c\x40\x6c\x31\x0e\xbf\x97\xae\x1c\x9a\xa2\x83\x4b\x8b\x03\x96\x90\x18\xdd\xdf\xc3\x3c\x3d\x00\x5c\xc5\xe8\xb6\xaf\xdb\x2f\x41\x1d\xf8\xc5\x42\x20\xf4\x71\x04\xdf\xa1\xc9\x3a\x5c\x58\x0f\x26\xb2\xa0\xe7\x18\x61\x9b\x99\xc8\xc3\x85\x75\xb0\xd9\x1f\x84\x56\xc6\x08\xfb\x05\x5f\xd9\x41\x38\x7c\x8c\xb0\x8e\x30\xd1\x39\x1b\xb6\x08\xe7\x18\x6a\x22\xb1\x93\x31\xca\xdf\x73\x11\x85\xff\x24\x06\xfe\xb3\x20\xf1\x7f\x3b\xe0\x1e\x09\x12\xfc\xaf\xe2\x53\x46\x5b\xa6\x32\x36\xf6\xa3\x33\xbe\x64\xe3\x5f\xc5\xa1\x8c\x6f\x73\xb1\x1d\x2e\xac\xdd\xb1\xbc\xec\x17\x1c\x14\x47\x67\x82\x02\x63\xfe\x8b\xc1\x5d\xed\xd1\xd9\x74\x87\x8b\x2d\x08\xe6\x25\xa3\xde\xc7\xbe\xc7\x7d\x7b\x74\xc7\xd2\xc5\x76\xb8\xd8\x92\x22\x29\xc6\xe3\x77\x3c\xb6\x99\x85\x7a\xbc\x3e\x87\xfb\xf6\x80\x3e\x2c\x86\x9b\xfd\x50\x77\x3b\x66\x36\x48\xe6\xbf\x00\xc3\x1c\x60\xbf\x42\xec\x72\x8c\xcf\x2a\xb0\xdb\x04\x2f\xc7\x50\x75\xbb\x43\x8e\x9b\x2d\x60\x90\x58\xb2\x55\x45\x70\xf3\x10\x02\x9a\x0f\x18\x77\x22\x54\x67\x32\xb0\xb7\x03\x76\x9d\x10\xd0\x1c\xe1\xfa\xdb\x99\xdc\xe1\x09\x8c\x44\xea\x4b\xc6\xbb\x5c\xdf\x86\x29\xd4\x0f\x68\xb2\x23\x3c\x81\xc5\xee\xa7\x61\x8f\x05\xb4\x4a\x11\xbb\xcf\xb1\x4e\x93\xfd\x7c\x15\x0e\x11\x53\x3a\x5c\x7f\x49\x6e\xbe\x64\xd4\xa1\x4d\x40\xd2\xf2\x76\x0c\x4c\xf0\xd0\xc4\x25\x9d\xf8\x92\xf1\xae\xea\x1c\xaa\x33\x21\x96\x41\xfa\xf0\x55\x34\x65\xb4\x05\xec\x66\x04\xb0\x85\x03\x4c\x57\x84\x27\x30\x32\x86\xb7\x03\x4c\x57\xc8\xa2\x11\xa4\xfb\x5e\x32\x7e\x2f\xfc\x0e\x4e\x5b\x07\xa1\x98\x11\xda\xb8\x24\xe4\x6e\x07\xa1\x98\x11\xae\xbf\xa1\xed\x00\xce\x2b\x04\x4d\x07\x40\xe9\x25\xe3\xdb\xd2\x6f\x73\x2a\xe0\x0f\x8c\xd0\x9e\x08\xa7\x02\x69\xb2\x23\xf4\x32\x88\x9a\x96\x5c\x26\xc2\xa9\x10\x2e\xde\xf8\x08\x03\x08\xf5\x2a\x86\x32\xda\x3c\x6d\xcb\xf4\xdb\xb0\xdb\xc2\x93\x5a\x9c\xd6\xab\x6e\xc0\x17\x16\x71\x5a\x6f\xd0\x66\x6d\xe1\xd0\x16\x1e\xea\x06\xd7\xd0\x21\xba\xfa\x00\xe7\x15\xe1\x89\x8e\x6c\xd6\x4b\xc6\x18\x69\xc7\x84\xb6\x30\xd9\x8a\x22\x9c\x6e\xa0\xa8\x97\x8c\xf6\x79\x64\x0b\x6d\x1b\xa8\xb8\x23\xb4\x63\x4c\xfc\x7c\x10\x9e\x19\xa1\xcd\x02\x12\xba\x1d\xe1\x98\xbb\x05\x90\xe3\x39\x3a\x66\x51\x3c\x7e\x9a\xb3\x0d\xd7\x5f\x90\xeb\x79\x15\x43\x19\xdd\xec\x4e\x11\x9a\x36\x10\x3e\x47\x38\x03\xc3\x19\x88\x9b\x2f\xc2\xdd\x43\x44\xf5\x81\x9b\x2f\xc2\xdd\x23\xdc\x3d\xc0\x6c\x05\x19\x9b\x57\xe1\xbb\xec\x00\xe9\xee\x21\x7a\xfa\x00\xc7\x15\xe9\x14\x24\xe3\xf2\x92\xed\xc8\x5e\x65\xd6\x81\xba\xa4\x26\x10\x19\x95\x97\x6c\x22\x2b\x65\x0c\x07\xa1\x98\x21\x7a\x3a\x52\x73\x47\x5f\x5d\x3a\xb5\xd2\xa9\x45\x1a\xb9\x48\xfd\x77\xa9\x69\x03\x18\x2b\x52\xd3\x26\x35\x6d\x48\x27\x12\x24\x3f\x5e\x85\x6d\x61\x57\x48\xa7\x5b\x76\xeb\x60\x57\x48\x77\x94\x74\x47\x01\xa0\x15\x39\x7c\x6e\xf8\x1c\x6a\x90\x84\xd1\x84\xa9\x8d\x8f\xc8\x7f\x07\xd7\x87\x48\xea\x48\x93\xeb\xeb\xca\xcb\xb0\xf9\x61\xb7\xb1\xaa\x64\xd8\x7c\x2d\x24\x5d\x79\x22\xa9\x03\xfe\x9a\x76\xc0\x7f\x1a\x59\xfe\x5e\xd9\x1d\xac\x2a\xe9\x2c\x4b\x67\x99\x3e\xba\xd4\xf7\x91\x6e\x2e\xc9\x4a\x03\xac\x7a\x15\x5d\x19\xef\x02\xa7\x8b\x74\xf6\x24\xab\x4a\xba\xb9\xa4\x96\xbc\x3e\x44\x51\xd3\x91\x6e\x24\xa9\x4a\xdc\xd6\x4b\x20\xbd\x89\x41\x23\x35\x6e\x44\x43\x1f\x30\x66\x46\xba\x41\xa4\x1b\x04\xc4\xaa\x41\x86\xdf\x55\x94\x32\xea\x50\x65\x53\x95\xd5\xcf\x96\xaa\x6c\x6a\xf0\xa4\x43\xad\xca\x8a\x7c\x3e\x60\xe5\x8e\x52\x3d\x45\x39\x1f\xf0\xbe\x07\xb0\xe5\x55\x0c\x65\x13\x59\x29\xf3\xdd\xf2\x39\xd4\xa4\x76\xbf\x8d\xf1\x10\xbd\x1c\x25\x0b\x1f\x20\xac\x10\xa9\x1c\xe5\x69\x50\xff\x99\x48\xe5\x00\xa9\x1c\xbb\x4d\x39\xac\x16\xdf\xc6\x41\x92\x89\xa8\xe3\x54\x76\x29\xe3\x55\x0f\x79\xe0\x90\xdb\xa1\x4b\xad\x34\x9e\x01\x25\xc7\x1e\x8a\x18\xc9\x72\x4d\xd6\x53\x56\x6a\x06\xd9\x56\xdb\xa1\x07\x8c\x34\xa9\xab\xa0\xa7\x80\x65\x05\x49\x4e\x57\xc1\x48\x02\xc1\x0a\xb1\xc6\x41\xd6\xd2\x25\xa3\x29\x9e\xe7\xca\x75\x95\x28\xc9\x10\x7f\x1c\xa5\x66\x94\x6d\x71\x5d\x2d\x3c\xba\x07\x04\xbb\x51\xae\xab\x75\xfa\x2e\xfb\x70\xa9\x41\x62\x92\x0f\x20\x58\x51\xfa\x13\x80\x21\x2f\xd9\x1a\xdd\xd2\x9d\x55\x9e\xfb\x88\x92\x0c\x12\x88\xfe\x45\x69\x8a\xe8\xba\x2a\x4d\x11\xf2\x89\xb6\x03\xba\xf2\x10\x7f\x1c\xa6\x0c\x3d\xa6\xdd\xec\xe2\x48\x56\xd0\x25\xa3\x0e\xcf\x7d\xc5\xbd\xc8\x01\x2c\x2b\x00\x28\xaf\x82\xb5\x1b\x26\xe2\x28\x6d\x11\xa0\xc9\x4b\xc6\x73\x9f\x6d\xc6\x1b\x7c\xc0\x1b\x1c\xe4\xf7\x5c\xc5\xa7\x6c\xb5\x6f\xea\x0d\x9e\x6a\xdf\x64\x71\x9c\x9e\x05\xa7\x67\x41\x5d\x61\x80\x8c\x57\x61\x9b\x59\xe4\x27\xe8\x86\x00\x4a\x1c\x5c\xce\xc7\xd4\xec\x98\x00\x1e\x0e\x72\x92\xc6\x04\x3a\x1f\x53\xb3\x83\x6c\x82\x31\x3d\xf6\xcd\xdd\xa6\xb0\xe6\xcd\xc3\x77\x5d\x2f\x61\x73\x0f\xe1\xc7\x31\x75\x59\x10\x01\x19\x53\x8d\x9c\xae\x97\x44\x40\xc6\xd4\x02\x9f\xba\x2c\x74\x67\x91\x69\x73\x15\x53\x19\xef\x7a\x3c\x04\x66\xdc\x0e\x22\x20\x63\x7a\x3c\x24\x3d\x66\x3b\x40\x6a\xc5\xd4\x3c\x99\x9a\x27\x73\xfa\xdc\xef\x5d\xeb\xc5\x54\x9a\x61\x9b\x71\xc1\x75\xc2\x1d\x63\x6a\x95\x93\x0b\x73\xc9\x68\x9f\x26\xcb\xc4\x2a\xef\x90\x8c\x87\xd8\xe4\x20\xed\xe5\x92\xd1\xbe\x74\x38\x80\xec\x77\xdd\x59\xe2\x95\x03\x6e\xae\x25\xeb\xc8\x1e\x65\x9f\x32\xbe\xd7\x69\x44\x4e\xc9\xf0\x80\x35\xb5\x58\x84\x30\x9b\x18\x39\x84\x30\xc7\x04\x71\xd4\xf5\x7a\x91\x18\x72\x15\x89\x8c\xd3\xf0\x74\x66\x81\x64\x5e\x32\xba\x45\x23\x1f\xd4\xf2\x92\xf1\xae\x56\x07\x70\xe4\xd6\x49\xcf\x14\x53\xaf\x1c\x70\xe4\x25\x9b\xc8\xec\xe6\xcb\x77\xf1\x69\xcb\xf1\x15\xf3\xb2\x0e\x66\xb9\x78\xe5\x98\xc4\x56\x77\xe8\x77\x63\xde\xfe\x1e\x67\xd5\x0e\x7f\x64\x48\xcd\x17\xa4\x81\x6c\x52\xf3\x87\xd8\xe4\x20\xbb\x63\xeb\x7a\xb3\x48\xda\xb8\x0a\x7f\x4f\x35\x70\xb6\x01\x51\x6e\x5d\xcf\xd5\x74\x66\xcd\xd7\xbe\xc2\xdb\x31\x35\xfc\x21\xb5\x6d\x1d\x64\x57\xcc\xcf\xe1\xfd\x7c\x8e\x59\x7e\xea\x51\x39\x99\x45\x9d\x70\xc4\x38\x9d\x45\x27\x16\x7d\x07\x9e\x15\xa7\x57\x89\x27\x16\x7d\x87\x6f\x2c\x04\x27\x07\x79\x19\x5b\x07\x9e\x15\xa7\x9e\x3f\x68\x72\xe3\xa0\x9b\x4f\x8d\x7c\x20\xca\xeb\xb1\xa5\x05\xe7\xee\xab\x38\x03\x7b\x63\xf2\x9e\x2e\xf5\x64\x6a\x5c\xb2\xff\x81\x0b\xff\x74\x27\x38\x0f\x5b\xcf\xdc\x3e\x35\x54\x40\x30\x2f\x19\x2d\xd5\x50\x39\x99\x78\xbd\xb1\x4e\x9f\x9e\x0b\x4e\x7c\x30\x1d\xe0\x57\x80\x63\x5e\x85\x5f\xc4\x22\x70\x72\x0f\x1f\xa4\x6b\x6c\xa6\xfa\x8e\xb3\xdf\xca\x3e\x65\xf4\xa4\x3e\x45\x92\x31\xb6\x0e\x18\x2c\x4e\xfd\xdc\xe7\xf0\x93\x58\x04\x84\x33\x07\xb9\x16\x5b\x27\xcd\x63\x9c\x5a\x27\xa6\x47\xec\xfa\xba\x4e\x27\x14\x68\xe5\xd6\x1b\x13\xfe\x74\x42\x9d\x4e\x28\xd8\xfa\xe2\x74\x42\x9d\x4e\x28\x92\x0b\xc6\xa9\x9f\x9b\xcc\x85\x4b\xc6\xb7\x69\xb1\x90\x90\xb0\x75\x7d\x58\xa7\xb3\xec\xe4\xb6\xa6\xeb\xc3\x3a\x3d\x03\x9c\xce\xb2\xdd\xd1\xf7\x06\x87\x5c\x83\xad\xeb\xd7\x3a\x3d\x17\x9c\xdc\xf5\xf7\x5d\x8d\x70\x96\x9d\xf8\x28\xfb\x8e\x51\x7c\x7a\x23\x69\x86\xc0\xae\x5f\xeb\xd4\x1f\x7e\x42\xdb\xd2\x09\x3d\x0c\x52\x05\xae\x62\x57\x46\xbd\x97\xef\x02\x8f\xee\xe4\xd0\x0c\xe1\xd1\x71\x3a\xf3\x08\x47\x8c\xd3\x99\x47\x2a\xbf\x25\xa3\x9f\x6f\xdf\x7d\x94\x39\xe6\xcf\x4f\x86\x66\xef\x8e\x91\x7e\xf3\xd3\x19\x45\x92\xba\x38\xb5\x80\x40\x30\xb7\xae\x73\xea\x74\xf6\x9c\x9f\x6d\xe1\xac\x7a\xea\xa3\x14\xce\xdc\x89\xed\x0b\xe1\xcc\x21\x9c\xb9\xef\xec\xaf\x32\xfd\x05\x59\xf4\x5a\x07\xf9\x15\x97\x77\xf8\x97\xb3\x8c\xe4\x47\x71\x39\xcb\x48\x98\xd7\x3a\x69\x6a\xe3\xf2\x2c\x7d\xe1\x06\xea\x64\x3c\x88\xcb\x3d\x4d\x28\x74\xd7\x4d\x75\x39\xf3\x2e\xa7\x19\x04\x9d\x71\xb9\x81\x91\x12\x6f\xc9\x68\x8b\x57\x43\xe4\xb3\x6b\xfd\xe0\xac\x7a\xe9\x5f\x17\x0a\x6d\x8a\x8f\xb8\x9c\x33\xe6\xb4\xeb\x4e\xe5\xcb\x39\x43\x3e\xbb\x25\xa3\x5e\x8d\x7b\xf2\xd7\xb5\x0e\xba\x2c\x2e\x8d\x7b\x21\xd3\xfd\xc0\x65\x21\x64\x3a\x84\x4c\x77\xd0\x65\x71\x39\x67\xc8\x3a\xb7\x64\x13\x99\xef\x3a\x67\x0e\x2c\x52\xf0\xd3\xab\xa0\xaf\x74\x3f\x5d\x5a\xef\x57\xfa\x1d\x6c\xba\x97\x7e\x78\xd0\xd4\xad\x1f\xcc\xad\xcb\xf9\x71\x61\xb7\x75\x5d\x4d\x97\xf3\x83\xc4\x74\x01\x29\x58\x5c\x6e\x2e\x64\x9b\x6b\x9d\x70\xbf\xb8\x9c\x0a\xd7\x9a\x0a\x01\x7e\x2d\x2e\x2d\xb9\x6b\xfa\xb5\x8e\xae\xee\xcd\x0b\x9a\xf6\x5f\x43\xbc\x2c\x22\x2f\x5d\xeb\x87\x03\xae\xd9\x7f\x99\x71\x1e\x1c\x59\x5c\xfa\x99\x2e\xfc\x4c\xfd\x50\x09\xbc\xf2\x14\xbb\xdd\xf5\x65\x89\xdd\x0e\x52\xd5\xb5\xde\x31\xbc\x2e\x27\x0c\x10\xee\x25\xa3\x5e\xb7\xa5\x0b\x2e\xaf\x4e\x00\x60\x5c\x4e\x8e\xcb\x6d\x49\x27\xd0\xa5\x11\x78\x71\xd5\xdf\xc1\xa0\xc5\xa5\x8f\x8a\xcc\x75\x4b\x46\x5b\xf4\x51\x5d\x8f\x75\xb0\x0d\x5f\x6e\x4b\x17\x70\xc2\x4e\x96\xb8\xb8\xbc\xd6\x27\x73\x5c\xeb\x90\x31\xc4\xf5\xfe\x9e\xb3\x5e\x4e\xa0\x64\x93\x5b\x05\x0a\x04\x06\x2d\x2e\x0d\xbe\x0b\x83\xaf\x77\x15\xc3\xd3\xf0\xe5\x56\x05\xb3\x41\x48\x8d\x19\xb7\x5b\x95\x3e\x2f\x92\xca\xad\xe2\x52\xb6\xbe\xf7\xf6\xb8\x71\xaf\x6d\x27\x88\xe1\x8b\xdb\x2b\x52\x50\xe2\xad\x77\xec\xea\xdb\x7d\xe2\x76\x9f\xe8\xe8\x0a\x29\xda\x56\x61\xb5\xe9\x73\xaf\xb2\x4f\x19\x55\x68\xa0\xdd\xea\x3c\xf1\x84\x71\x6b\xa0\xdd\xea\x37\xd4\x60\x71\xab\xdf\x24\x66\x5b\x32\x3e\x43\x03\x0d\x28\x77\xeb\x50\x83\xc5\xed\x89\xf5\x0e\x9f\x43\x0d\x6e\x6f\xeb\xc9\xb2\xb6\x64\xd4\xeb\x3c\x00\xf2\x3d\xe0\xa3\x89\xdb\x69\x00\xc5\x6e\xeb\xb0\x8a\xc5\xed\x75\xa8\xf0\xef\x4e\xce\x8b\xb8\xdd\x3a\x48\xb5\xd6\x3a\x90\xb5\xb8\x75\x1f\xdd\x4e\x0d\x5d\x5e\xb7\x5b\x82\xf0\xef\xae\x7b\xeb\xd6\x55\x04\x0a\xbc\x75\xdd\x5b\xb7\x07\x5b\x50\xe0\x4b\x46\xf7\xb9\x4d\x80\x02\x5f\x32\x7e\xcf\x99\x00\x79\xe9\x92\xd1\x16\x0d\x2f\xb1\xde\x7d\x1c\xf1\xef\x9d\xfe\x76\x27\xb8\xdd\x09\x06\x2b\xfc\xed\xcd\xa8\x50\xf0\x0e\x11\x59\xdc\xb7\xa3\x7a\xdb\x04\x76\xf5\xdb\xcb\xfa\xfb\xb6\x8b\xb0\xdf\x6e\x6d\xb0\xdb\xdd\x41\x4f\xd7\xad\xa3\xf5\xd6\x06\x03\x0d\x17\xb7\xca\x7e\x73\x49\xd0\x07\xa7\xb4\xdb\x73\xf4\xfd\xda\x16\x56\xa3\x5b\x65\xbf\x5f\x9f\xe3\x94\x26\xec\x3b\xee\xa5\xd8\x83\x54\x84\x21\x9a\x3b\x1e\x37\x02\x9d\x5f\x8f\x1b\x01\xa9\xd7\x96\x6c\x20\x2b\x65\x36\x85\x45\x4b\x38\x77\x3c\x6e\x04\x03\xd3\x4f\x2a\xd7\x78\x34\xc1\x74\x88\x09\xe7\x0e\xe1\xdc\x9d\xb4\xef\x21\x9c\x3b\x1e\x9c\xaa\x9d\xc0\xc7\x78\xdc\x08\x1e\xee\x0d\x3a\xd9\x08\xe2\xf1\x42\xf6\xd9\x79\x97\x28\xc6\x10\xe2\x1d\x64\x51\x5b\xb2\x35\xd2\x8f\x93\xe7\xe1\x74\xd3\xa1\x21\x0e\x21\xde\xf1\xf4\xdf\x73\xd4\xeb\x09\xe5\x71\x81\x07\x0c\x17\x8f\x27\x8f\xc7\x93\x07\x29\xd1\xe2\xf1\xe4\xf1\x78\xf2\xd0\x23\xf6\x78\x1f\x20\x9c\xbb\xeb\x11\x7b\xd4\x76\x50\xdd\x4b\x46\x1d\x5e\x6a\x09\xe7\xee\x7a\xc4\x84\x73\xc7\xe3\x46\x40\x64\x63\x3c\xce\x80\x47\xe3\x89\x84\x60\xf1\xb8\x39\x3c\x38\x50\xbb\x28\xb7\x47\x58\xcb\x03\xed\x44\x17\xd1\xf6\x38\x2b\x1e\x67\x85\x5e\x32\xd2\x55\xfc\xc5\x33\xfd\x5e\xd4\xea\xf1\xe2\xf6\x59\xbb\xc4\x20\x6b\x7e\x3c\x9e\x50\x1e\x4f\x23\xa4\x5c\x8d\xc7\xe5\xfc\x71\x39\x27\x89\x6f\x3c\x2e\xe7\x8f\xcb\x39\x7c\x65\xf1\x88\x6a\x21\x0b\xdb\x92\xf1\x7b\x9e\xe9\x1f\x67\x82\xce\xb4\x47\x9b\xe8\x71\x89\x27\xa1\x6e\x3c\xde\xf9\x3e\xce\x0e\x52\x31\xc5\xe3\xcd\x99\x28\xf2\x2e\xf0\xed\x71\x76\x3c\x8f\x9f\x81\x5d\xf3\x88\xe6\x02\x4c\xbe\x64\xbc\xfb\xd8\x05\xe0\x24\x7b\xa8\x42\x2e\xfb\x80\xc9\x97\x8c\xae\xd2\x31\xfa\xb8\x15\x84\x6a\xe5\xfd\xee\x03\xfe\xb1\xa7\x2a\xe4\x99\xfe\xd1\x4e\x12\xd1\x26\xd9\x77\xbc\x2e\xf1\x84\x40\xc6\xeb\x69\xe4\xd5\x4e\x22\x04\x32\x44\x91\x87\x28\x72\xb3\xef\xc4\xeb\xb2\x4f\xca\x8d\x66\x3e\x9f\x20\x37\xdb\x2a\x6e\x65\x81\xec\x55\x66\xbd\xf8\xe0\x5f\xef\x77\x01\x9d\xb7\x9e\x6c\x5f\xaf\x57\x68\xaf\x76\x12\x74\xf6\xf1\x7a\xa8\x7f\xdd\x33\x48\xcc\x10\x22\xcb\xc3\xa4\x66\x3d\xd9\xd2\x5e\xa7\x82\x4c\xc7\x9d\x3c\x37\xf1\x7a\xb6\x78\xbb\x6d\x61\x4b\x7b\xc5\xd0\xbc\xc3\xe7\xb0\x75\x5e\x81\x8d\x2f\x8c\x55\xba\x71\x44\x9b\x87\x68\xf3\x4e\xa4\x64\x88\x36\x0f\xd1\xe6\x9d\x94\xb8\xf1\xea\xc9\x12\x6d\xde\x89\x9e\x8c\x57\x57\xd6\xeb\x8c\x11\xe4\xf6\x3a\x63\x24\x49\xee\x82\xdc\x5e\x01\x8b\xe4\x81\x68\x5d\xf0\xda\xeb\xb9\xfc\xf5\xc8\x40\x3a\xd0\x78\x9d\x09\x22\xd0\xbb\x7b\xd0\xeb\x5e\xf0\x6a\x14\x91\x99\x35\x5e\x0f\xe1\xaf\xc7\x03\x22\x25\xe3\xd5\xbd\x05\x60\x7d\xc9\x78\x4e\xf7\x96\xe8\xf5\x2e\xa0\x4d\xf4\x7a\xbc\x5a\x40\x02\xda\x4c\x0a\x11\xaf\x47\x86\x62\xbf\x31\xb1\x43\x48\xba\xdc\x89\xb2\x8c\xd7\xdb\xb7\x17\xa7\x69\x27\xd3\x5a\xbc\xaa\xfd\xab\xda\x43\x7a\x16\xaf\x8b\xfd\xeb\x51\x40\xf0\xda\xab\x7b\xeb\x75\xb1\x77\xfa\xbe\x3a\x48\xdf\xd7\xef\x60\x96\x8b\x54\x8f\x57\xcb\x46\x17\xdf\xab\x65\xf3\x7a\xe0\x16\xe4\xf6\xea\x34\x7d\xf1\xf3\xf7\xc2\x3a\x79\xb5\x6c\x48\x72\xd5\xba\xc0\xb7\xcf\x43\x38\x20\xf6\x25\x0b\x64\xa9\xac\x94\x4d\x64\xa7\x32\xdf\xc5\xe1\xfa\x79\x3c\xf8\x3c\x98\x17\xd3\xfc\xf3\xaa\xed\x73\x2a\x10\x79\x19\x9f\x53\xe1\x53\xed\x0b\xa7\xf8\xe7\xf1\xe0\x53\xed\xc9\x75\x16\x9f\x9e\xd4\xef\xb0\x2d\x4c\xe9\x4f\xb3\xe8\x53\xc5\x0b\x3d\xf8\x84\x30\x08\x59\xef\x10\x86\xc7\xe7\xcd\x31\xfc\xce\x83\xf4\x2b\xf1\x09\x1c\xfb\x3c\x3d\xcf\xad\xfe\xbd\xd5\x7f\xa2\x7d\x49\x3e\xd5\xba\x8e\xc2\xcf\x7b\xe5\x4f\x43\x6a\xa2\x39\x9f\x7b\xcb\xe7\x81\x7b\xa2\x39\x02\xe4\xe3\xe3\xb6\xa0\x8b\x99\xfb\xbc\x7f\x86\x61\x7a\xc9\xf8\x72\xf7\x16\xb2\x41\x2d\x19\x5f\xe4\x9e\x21\x18\xbe\x4f\xf6\x0c\xc1\xf0\xf1\x11\x34\xd7\x75\x1e\x7e\x1e\x1e\x3e\x0f\xd7\x93\x09\xff\x39\x2b\x3e\xf7\x87\x89\xe6\x7c\xee\x0f\x9f\x87\xe6\xc9\x9e\x21\xb5\x74\x08\x90\xef\xf0\xa7\xc5\xe7\xa1\x59\x6a\xe9\x3e\xd5\x08\xcf\x05\x9f\xe7\x02\xbd\x8c\x9f\xe7\x82\x4f\x17\x96\x5e\xc6\xef\xb4\x5e\x37\x12\xbd\x8c\x02\xe9\xe3\xd3\xba\xd2\xcb\xf8\x69\x3e\x91\x0c\x6a\xc9\x78\x57\x64\x05\x39\xa1\x96\x8c\xfe\xf3\x82\xed\xbb\x6c\x8b\x9a\xe3\x41\x5a\x70\x7d\xd7\xf3\x28\xb8\x3e\x3e\x37\x0d\x01\x72\x82\xeb\xe3\xc3\x61\xdc\xf5\x32\x7e\x42\x80\xbf\xc7\x31\xe2\xea\xe4\x7b\xd4\x26\xcc\xac\x01\x2d\x7f\x7c\x9a\x59\x1f\x33\x6f\x10\x37\x1a\x02\xee\x43\xc0\xfd\xd0\xf3\x28\xe0\x3e\xbe\xf7\xf7\x2e\x75\x68\x7a\x7d\xaf\xef\xe2\x88\x10\x5c\x1f\x60\xe7\x97\x6c\xfc\xe7\x2f\xcd\x10\x91\x1b\x9b\xcb\x20\xbe\x34\x45\xcd\xa7\x94\xd6\x03\xf7\x61\x02\x97\x5f\x85\x09\xe3\x8e\xbe\x64\x6c\x38\x49\x12\x97\x25\x2b\x64\xa1\x2c\x91\x75\xde\xc5\x8b\x9c\x00\xe5\x97\x8c\x3a\xf0\x75\xe5\xc6\x21\x7c\x00\x9a\x4b\xf2\xb9\xac\x82\xcc\x41\xb8\x14\xd3\xbc\x2e\x29\x6a\x7e\x10\x2c\x9a\xa2\xe6\x93\xf4\x2e\x6d\x00\x90\x4b\x20\xf4\xab\xf0\x7b\x83\xf6\xb1\xe1\xa4\xb4\xd9\x83\x34\xa0\xb9\xb1\xe1\xa4\x14\xd9\x03\x97\x62\x6e\x1c\xc2\x13\x40\xfd\x92\x51\xc7\xf0\xdb\x86\xf5\x16\xcf\x0d\xeb\x1d\x7e\x5b\xd1\x7f\xc3\x36\xe3\x45\x36\xb3\x5d\x6e\xc3\x7a\xc3\x7a\x27\xed\x0b\xeb\x0d\xbf\x77\xf2\x2e\x07\x97\xdc\xc2\x71\x9b\xbc\x9b\xf6\x15\x1e\xe3\x01\x68\x2e\x81\xd0\xaf\xe2\x52\x46\xff\x95\xcf\x95\xcf\x2d\xa3\x20\xe5\xca\x4e\xa1\xf4\x03\x76\xb4\x04\x43\xbf\x8a\x47\x19\x75\x94\xed\xe3\x54\x3f\x00\xcd\xa5\x50\xfa\xdc\xa6\xef\xee\xbc\x3b\xed\xd3\x69\xbd\xea\x06\x97\xdc\x29\x6c\x7e\xc0\x98\x96\xdb\xe5\x58\xe2\x0a\x1e\x38\x17\x73\xbb\x7c\x8e\x39\x33\x70\x24\x26\x18\xfa\x55\xa4\x32\xfa\xf9\xb6\x7d\x5c\xdd\x0d\x1c\x89\x09\x86\x7e\x15\x3e\x37\xa8\xe3\x51\xff\x1e\x9f\x0b\x7e\xef\xf5\x39\xe7\x02\xb4\x67\xb9\x7d\xca\xbe\x9f\x8c\xe7\x3e\xfb\xfe\xb3\x7d\x45\x9f\x7e\x7e\x1b\x67\xe9\x01\xf5\x7f\x92\xc8\x67\x15\xb6\x99\xb1\x34\x33\x4a\x36\xe7\x02\x00\xb9\x6c\x38\xa4\x52\x0e\xec\x41\x8a\xbb\x6c\xdc\x2c\x67\x63\xc7\x19\xf0\x9a\x65\x6b\x3e\xc7\x75\xde\x20\xe4\x33\xe5\xc0\xce\xc6\xcd\xf2\xc0\x41\x98\x0d\x43\x2b\x1b\x3e\xde\x81\x83\x30\xdb\xe1\x73\x87\xcf\x2d\xdb\x3f\xdb\xe1\x73\xe0\x92\x06\xce\xc0\x6c\xec\x2e\xd9\x00\x72\x0e\x00\x6d\x29\x6c\x3e\x1b\x00\x8d\x01\x97\x58\x36\x0c\xa8\x04\x15\xdf\xc6\xce\xdc\x6a\xea\xa9\x70\xf8\x01\x52\x2d\x1b\x00\xb9\x24\x7d\xd8\x92\x05\x32\x9f\xcb\xdf\x73\xd4\x0b\x40\x2e\x1b\xb1\xf9\x03\xf4\x5a\xb6\xf4\x7b\x39\x4d\x0f\xa8\xfa\x53\xae\xec\x04\x15\xbf\x64\xbc\x8b\xd3\x35\x85\xc8\x0f\x12\x7d\x67\x53\x4f\xa1\xc2\x6e\x83\xdb\xa7\x34\x4b\x59\xca\x8b\x3d\xf6\x65\x7d\xa5\xb0\xf9\x24\x5d\xd9\x92\x51\x87\x7a\x0a\x52\x7e\xc9\xa8\xe3\x74\x3c\x00\x21\x0f\xc8\xbf\xb2\x71\x41\x98\x0d\xee\xf7\x71\x34\xbe\x17\xa7\x6b\x36\xf6\x85\x71\x30\x67\xda\x65\x9f\xb2\x07\x0c\x9c\x81\x09\x71\xf6\x2a\x1e\x65\xf4\xf3\x65\xbf\xdc\xbe\xbb\xd3\x16\x75\xbc\xa9\xe3\x38\x0d\xb3\xdd\xd6\x7b\xfb\xee\xf1\x6f\x32\x9d\x6c\xb7\x3f\x8d\x8b\x69\x00\x69\xcb\xf6\xd8\xac\xc7\x66\x39\xd4\x8f\xcd\x7a\xfc\x24\x96\x56\xb0\xf6\xab\x78\x95\x31\xfc\xaf\xdd\xc1\xcd\xf7\x20\x3a\x35\x1b\x37\x24\xd9\xb8\x21\x11\x45\x98\xed\xb5\x5e\xa7\x0f\x11\xab\xd9\x9c\x3e\xed\xb3\x5e\x96\xd6\xe6\xf4\x69\x9f\xf5\xb2\xb4\x9a\x1c\x28\x85\xe1\x0f\xfc\x8c\xb9\xbb\x95\x48\xeb\x3d\x88\x4e\xcd\x1d\x60\x46\xee\x4e\x1f\x9c\x8a\xb9\x3b\x7d\x76\x40\x18\x03\x0e\xb1\x94\xd6\x3b\xa5\xeb\x1e\x07\x43\xbd\x43\x55\x90\xbb\x5b\x44\x5f\xc7\xe9\xdc\xdd\x22\x76\xb7\x08\xa0\x6a\x09\x4f\xf7\x2a\x42\xd9\x40\x36\x95\xd1\x66\xdc\x76\x29\x37\x77\xee\x4e\x15\xc2\x49\x73\x77\xaa\x00\xdb\x5f\x32\xea\x08\x65\x66\xbe\x83\xaa\x3f\x77\xa7\x8a\x9c\xdb\x03\x58\x5a\xca\xb9\x9d\x72\x6e\x0f\xf8\xbd\x72\x4f\xdf\x75\x49\xef\x2c\x85\xf2\x70\xa7\xd8\x7c\x49\x4a\x73\x77\xfa\xc8\xcd\x3d\x08\x31\xcd\xdd\xe9\xb3\x27\x59\x01\x93\x2a\x00\x5e\xa4\x70\xfd\x01\x35\x58\x0a\xd7\xcf\xdd\x19\xd5\x07\xdd\xe7\xec\xd9\x9d\x3d\x40\xd5\x72\x9f\x36\x65\xfa\x19\x41\xf3\x5c\xf9\x85\xf0\x4b\x34\x9a\xfb\xe9\xbb\xa7\xef\x26\xbf\x77\xfa\xee\x69\x97\x3a\x94\x9c\x49\x72\x77\x46\x01\x55\xcb\xfd\x72\x28\x2f\xdb\xc7\x2a\xba\x5f\xd6\x01\x5e\x95\xbc\xf1\xb9\x3b\xa1\x76\x37\x08\xd0\x6b\xb9\xdf\x7e\x86\x93\xa7\x3b\xe2\x4e\x1e\x58\xc0\xdb\x18\xeb\x68\x95\xd2\x7f\xe7\x0e\x70\x75\x10\x91\x9a\xbb\x33\x61\xd7\x58\xc2\x95\x97\xfb\x6b\x57\xe1\x93\x1a\x20\xd5\x52\xf4\x7f\x8a\xfe\x1f\x43\x2d\x50\xc3\x77\x37\x08\x5c\x74\xb9\xab\xe1\x44\x04\x0c\x22\x02\x73\x77\x7f\xd8\xdd\x1f\x08\x52\x4d\xa8\xc0\x57\x41\xcf\x0f\xe6\xfb\xe1\xfe\x60\x90\xc0\x18\x87\xcf\x31\xb1\x0e\xf7\x07\x80\x6a\x79\x70\x38\xcf\x43\xa5\x27\x23\x6f\x42\x05\xfe\x97\x87\x7b\x06\xae\xba\x3c\xf6\x43\x59\x57\xc6\xbb\xe0\x5b\xf3\xe0\x94\x32\x70\xdf\xe5\xb1\xfb\xee\xe1\xbb\xeb\xb4\x95\x32\x82\x27\xb1\x02\x4b\xc6\xef\x81\x79\x4d\x19\xc1\x07\xc1\xac\x79\x74\x9f\xeb\x3e\xc7\x24\x3f\xdc\x5b\x8e\x6e\xd7\xb3\x17\x1c\x4e\x98\xa3\xdb\x07\xb9\xb4\xea\x70\xc2\x10\x2b\xb0\x64\x3c\x37\xfc\xb6\xe1\x73\x45\xbf\xe0\xe3\xca\x23\x1c\x8e\x5a\x6a\x60\x90\x40\x1e\x4e\x0e\xfc\x6d\x79\x68\xdb\x1c\x6a\x38\x01\xa9\x69\x40\x40\x1a\x10\x30\x00\xaa\xe5\x51\x7e\x87\xb6\x0d\x0c\x61\x79\x68\xdb\x1c\xf8\x9f\x46\xb0\xbf\x1e\xd3\x6f\x53\xeb\x83\xc5\xe0\x50\xeb\x0f\x1c\x50\x03\x54\x5a\x9a\x49\x2f\xcd\xa4\x37\xf0\xc1\xe5\xe1\x4c\x38\x9c\x09\xe1\x98\x3b\x13\x0e\x2e\xef\x06\x39\xfe\x13\xde\xf1\x55\xd8\x96\x83\x3a\xb4\x8b\x0c\x3a\x18\xf8\xd6\xf2\xb8\xec\x17\x4e\xe7\x83\x64\x00\x29\xfd\x78\x1e\x4e\x05\x10\x68\x69\x12\xd1\x94\x7e\x7c\xe0\x5b\xcb\x43\x5b\xc9\x40\x84\x41\xb4\x68\x4a\x3f\x9e\x87\x9b\x02\x79\xc6\xf3\x70\x2a\x18\x74\x30\x40\xa0\xe5\xe1\x06\x70\xb8\x01\xe0\x20\xcb\xc3\xa9\x60\xd0\xc1\x20\x32\x34\x8f\xd7\xf1\xfd\xfc\x5e\xf6\xf0\xe3\xb3\x2d\x9f\xbf\x87\xfd\x64\xca\xb5\xec\xa0\xf0\x06\x90\xb0\xec\x2e\xf6\x5d\x5b\x89\x3c\xb1\xd9\x9d\x0b\xdd\x73\x03\x30\xb1\x34\x10\x21\x3b\x27\xf1\x01\x1d\x58\x76\xfc\xb3\xd9\xc1\x70\x0f\xc2\x36\xb3\xab\xf7\x5d\xbd\x4f\x96\x8d\x7e\xf8\x2e\xe4\xa4\x83\x70\xcc\x34\xc0\x20\x89\x29\x58\x32\xea\x25\x8a\x36\x3b\x51\xb4\x23\x0f\x7e\x4f\x1d\xef\x1c\xbb\x07\xce\xab\x94\x1e\x3d\xbb\x76\x3e\xe1\x98\x69\xe0\x40\x76\xed\xf7\xa4\x4f\x3b\xbe\xd8\xec\xf8\x5d\x07\xf0\xaf\xec\xe1\xb7\x71\x5e\x1e\x30\xf5\x67\x27\xa0\x3c\xbb\xd9\x4f\x33\xfe\xed\xc5\xcf\xae\xc9\x6f\xac\xc1\x48\x86\xc6\x58\x83\xec\x38\xa3\x46\x32\xcd\x7a\xd9\xac\x02\x92\x85\xb6\xf7\xb2\x55\xce\x8a\x74\x64\x9c\x15\xdd\x59\x01\x88\x2c\xfb\xb4\x0a\x2d\x79\x40\x64\xd9\xb9\x79\x4b\x63\x0d\x46\x71\xd2\xe8\xa7\xbf\x07\xac\x6a\xe0\xb3\xca\xee\x1a\x0f\x03\x7b\xec\xac\xa1\xd0\xb0\xaf\xe2\xf3\x31\x3a\xdc\x65\xbf\xab\xd8\xc5\xc4\xeb\x97\x1d\x04\x55\xcd\xc0\x3d\x95\xdd\x83\x81\x71\x0a\xa3\x58\x6b\xbb\x8a\xdd\x3d\x04\x14\x0b\x66\xf7\x10\xd0\xb5\x80\x48\xdd\x9f\x06\x2c\x24\x54\xed\x4b\x46\x1d\xaf\x83\xef\x41\x17\xb7\x53\x76\x0f\x01\x5d\x2b\x06\x77\x52\x1a\x88\x90\xfd\xb3\x0e\xb6\x3e\xf3\x01\xa6\x81\x08\x83\x98\xc9\x1c\x5c\x3c\xe4\xe0\xf2\x6c\xe0\x3a\xca\x01\xa6\x23\x87\x87\xda\x2a\x65\x8f\x32\x7f\x8f\xfd\x6b\xec\xfe\x9e\x07\xdd\x62\x52\x18\x88\x90\x43\x2b\x06\xff\x4f\x1a\x74\x90\x06\x1d\x0c\xdc\x44\x39\x60\x3b\x48\x83\x0e\x06\x88\xb1\x34\xe8\x20\x0d\x3a\x18\x04\x40\xe6\xd0\x8a\x19\x2a\x31\x64\xfb\x69\x1a\xdc\x1c\x38\x82\x06\xe4\x5e\x39\x86\xdf\xc1\x25\xc3\xc0\xe9\x93\x83\x10\xef\x34\xe8\x60\x40\xf8\x95\x43\xcb\x86\xd8\x83\x25\x2b\x64\xa9\x8c\x7e\x06\x45\x96\x23\x6c\xb3\x96\x0d\x28\xb2\x84\x4f\x7d\x15\xf4\x01\x4e\x9f\x1c\x6a\xe9\xc0\x65\x3a\x08\x9e\x4c\x03\x11\x12\xc6\xf5\x36\x26\xd6\xa7\x81\x08\x69\x20\xc2\x00\x5a\x96\xd2\xaf\xa7\xf4\xeb\x03\x68\x59\xc2\xa7\xbe\x0a\x74\x88\x48\xc9\x84\x4f\x7d\x15\xbe\xcb\xc6\x34\x2e\xbf\x63\xad\xb9\xa9\x6f\x63\x68\xc7\x8f\xcb\xee\x73\x78\x35\x3b\x8c\x4d\x18\x04\x4f\xa6\xb4\xea\x39\x6e\x3f\xcd\x21\x57\x25\x87\x6b\x2d\x81\x92\x39\x6e\xbb\x4f\x95\x24\x81\x7b\x0e\xcf\xa5\xc3\xb5\x76\x32\xb3\x08\x4a\xf8\xcb\xf1\xfa\x9c\xaa\xf1\xfa\x1c\x88\xe7\x01\x57\x58\x1a\x74\x90\x10\xa6\xb7\x00\x6d\x96\x43\x53\x84\xd8\x83\x25\xa3\x0e\x4d\x11\x62\x0f\x96\xcc\x77\x55\x3f\xd4\x59\x5a\xc9\x0c\x2e\x05\xd2\xa0\x83\xd8\x50\x97\xd0\xd8\x26\x09\xeb\x92\xad\x7e\x09\xd7\xdf\xc0\x6f\x13\x90\xf0\x67\xb8\xfe\x06\xf7\x63\x01\x09\x7f\xc6\xee\xbb\xbb\xef\xa2\x1a\xe1\xfa\x4b\x9c\x41\x0b\x82\x27\x33\xf4\xc7\x10\x67\xb0\x64\x3b\xb2\xa9\xec\x54\xb6\xfa\xd9\x00\x83\x0c\xbc\xa3\xa1\xbf\x28\x54\xf1\x58\x2a\x3e\x03\x6d\x21\x00\x61\x15\x7e\x2e\x5b\x64\x68\x76\x48\xc0\x1e\x1b\x33\x3f\x74\xbd\x48\xb6\x1e\xba\x8b\xc2\xa5\x3b\xd0\xf0\x80\x83\x2c\x25\x5b\x4f\xc8\xd6\x27\x24\x9a\x19\x5a\x1d\x91\xb6\x98\x05\x22\xf4\xb2\x44\xda\x62\x16\x08\x43\x09\xd2\x50\x82\xd8\xf0\x3a\x44\xf9\x5c\xf9\x1c\x5a\x15\x2a\x2e\xd1\x03\x4b\xc6\xd7\x6a\x89\x18\x4a\x10\x64\x97\xcf\x98\xf6\x80\xe9\xd6\xf5\x34\x85\x96\x88\xa4\xec\x01\x78\x2d\x43\xa5\x27\x7a\x60\xc9\xf8\x5c\x3c\x9d\x69\x88\x40\x00\x5e\x4b\x43\x04\x12\xa2\xf5\x16\x7a\x8b\x0c\x11\xc8\x40\xeb\x83\x10\xcb\x0c\x17\xe2\xe0\x2a\x2c\x9a\xda\x72\xdb\x55\x68\x7d\x34\x76\x5c\x59\xd7\x53\xd6\xf5\xd0\x83\x14\xce\x84\x60\x26\x04\x89\x31\x13\xca\xf4\x55\xd0\x07\x8d\x85\x3d\x9c\x09\xc1\x4c\x08\x3d\x48\xe1\x11\x13\xb8\xff\x92\xf1\xbd\x6a\x78\x7c\xb6\x8f\xa3\x94\x38\xff\x14\xe7\x1f\x40\xd6\x12\x80\xff\x2a\x0e\x65\x03\xd9\x50\x16\xca\x12\x59\x2a\xab\xff\xfa\x5f\x91\x18\x4a\x42\xff\x13\x64\x7f\x0b\x28\xf7\x33\x75\xc6\x48\x92\x1e\x50\x90\x65\x6a\x60\x08\xf3\x0f\x9d\x4a\xe6\x6a\xcd\xdc\xfd\x5c\x8e\x5c\xc9\xad\x57\x42\x82\xbe\x64\x34\x45\x03\x43\x48\x7f\xb4\xda\xff\xbd\xd1\x8b\xf8\x4f\xc9\xd1\x83\xd4\x92\x29\x39\x7a\x66\xb7\x59\xac\x1f\xe9\x72\x9e\xeb\x50\x1a\xdc\x7f\xa5\x7c\xe9\x29\x37\x7a\x10\x7f\x99\xc9\x65\x57\x26\x97\x5d\x01\x4e\x2d\x53\x97\x4e\xc2\x7b\x13\x64\x9b\xcc\x04\xac\x9a\x89\x9b\x31\xa0\xd2\xcf\x74\x4e\x00\xec\x5f\x32\x7a\xc3\xd5\x3c\x39\x7f\xc6\xce\x00\xa6\xa6\xb8\x28\xff\x00\x93\x96\xa9\x9b\x31\x71\xeb\x07\x99\x25\x33\x55\xf6\x54\xd9\xc1\x9f\x65\x7a\xd8\x4c\x50\xa8\x01\xfe\x2c\x73\xda\x96\x69\x9b\x99\xc7\x22\xff\x33\x97\xa5\x1d\x69\x87\x6b\x61\x27\xf7\x5f\xb1\x73\xe2\xc9\xd3\x41\xc5\xe8\x08\x92\x4d\xa6\x01\x02\x69\x80\x40\x40\x50\x96\xe9\xaa\x9f\x97\x9f\x8b\xa5\x96\xea\x7a\xc2\x56\x10\x3b\x73\x3b\x6f\x7b\x5e\xbd\xd6\x83\x95\xae\xf0\x30\xa9\x2f\x19\x9f\xfb\xf8\x1c\x46\x47\xec\x8e\x9a\x2e\x96\x64\x85\x0f\xe0\x6c\x29\x5d\x7a\xe6\x67\x5b\xd8\xe8\xf3\x73\xc4\x09\x2b\x0b\xa2\x29\x33\x3f\xbb\x00\xcf\x63\x1c\x58\xbf\x52\xa3\x27\x6c\xe8\x4b\x96\xc8\x4e\x65\x74\x33\x89\x25\x53\x6a\xf4\x94\x1a\x3d\x88\xb0\x4c\x69\xd0\x93\x78\x82\x08\x9c\x64\xe5\x62\x5e\x6b\x31\x0f\x6d\xee\xd2\x34\x21\x9a\xa0\x85\xfe\xab\x52\xd5\x89\x26\x58\xb2\x42\x66\x0d\xae\xf9\xfa\xaf\xca\x35\x5f\x12\xf4\x20\xe6\x32\x8b\x4b\xdf\x34\xb6\x40\x4c\x6b\x96\x6b\x3e\xb1\x05\x41\xf4\x47\x96\x56\x4d\x75\xab\xe5\xd8\x5b\xaa\x7c\xb9\xbe\xeb\xc7\x2a\x8f\x90\x85\x19\x1e\xfa\xa7\x0c\x4b\xc8\x1a\xb9\x7e\x0e\x15\x2d\x4f\x95\x35\xec\xbb\xa1\xcc\x16\x87\xad\x63\xba\x94\xde\xf6\xe2\xa4\x19\x40\xe3\xb2\x74\xcd\xc0\x98\xbe\x64\x3c\xa7\x99\x5d\x69\x53\x58\xb7\xe1\x4d\xff\x4b\x18\xd3\x97\x8c\x5e\x29\x7b\x4a\x95\x27\xba\x32\x4b\x95\x2f\x55\x1e\x3a\xfb\x34\xa4\x21\x0d\x69\x88\xc3\xc1\x98\xfe\x1e\xa7\xca\x00\xb9\x96\xd2\xa7\xa7\xa1\x0a\x01\x4a\x2d\x4b\xfd\x2e\xf5\x1b\x94\x5a\x96\x6b\x79\xb9\x96\x83\x52\x4b\xe9\xd3\x53\xfa\xf4\xd0\xb5\x25\x7d\x7a\x4a\x9f\x1e\x9d\x1d\xbd\x6e\xbb\x8f\x1b\xaa\x20\xab\x65\xd6\xad\x62\xdc\xd6\xa1\x16\x3c\x0e\x11\xc0\xeb\x80\x3d\x2d\xa5\x59\xcf\x7a\x7c\x57\x2d\xe0\x1e\x38\x0d\x69\x88\x8e\x01\x68\x48\x43\x1a\xd2\x10\xba\xc0\xea\x55\x0b\x70\xb0\x04\x91\x99\x49\x7c\xc3\x2a\x5e\x65\xd4\xe1\x7c\x81\x95\x7d\xc9\xe8\x53\xf7\x06\xa2\x1d\x5a\xe8\x02\x2b\x0d\xf7\xe2\xd6\x2a\xf4\x77\x49\xc7\x9e\xd2\xb1\x87\xfe\x2e\xe9\xd8\xd3\x70\x88\x00\xf5\x96\x86\x43\xa4\xe1\x10\x41\x08\x67\x1a\x0e\x91\x13\xef\x4c\x00\x7b\xcb\xa9\x77\x66\x36\xbf\x8d\xb5\x60\x6a\xf4\x4b\xbd\x1e\xfa\xc0\x26\xa8\xed\x9c\x5a\x49\x9d\xbd\xda\xb0\x89\x34\x46\x22\xc8\x7b\x93\x53\x8f\xfe\xdc\x6d\x33\xba\x31\x75\x5d\xce\xc3\x71\x43\x37\xa4\x68\x4f\x63\x24\x02\x38\x5b\x1a\x23\x91\x93\x98\xb2\xd0\xe1\x35\x3d\xb9\x4e\x2d\x27\x42\x33\x73\x6a\x26\x19\xfb\x10\x64\xc4\xcc\x39\x6c\xf3\xf0\xb9\x9d\x7a\x9d\x33\xc6\x3e\xc4\x60\xcc\x8d\x7d\x48\x62\x1f\x42\x93\x48\x0a\xf6\x94\x82\x3d\x74\x6e\x19\xe6\x90\x93\x03\x6e\x00\x53\xcb\xe9\x34\x9a\x4e\xa3\x81\x61\x67\x9e\xf1\x34\x7c\x21\x88\xb8\x4c\x73\x8a\xe7\x74\xe7\xd0\x91\x35\xdd\x39\x66\xd9\x14\x86\x5c\x5a\xf6\x34\xa6\x21\x60\x60\xcb\xa9\xeb\x92\x90\x85\x25\xa3\x4b\x35\x89\xe6\xe9\xa7\xb1\x84\x4f\x8f\xa6\x30\xac\xb7\xd0\xf1\x34\xcf\xdf\x73\x8f\x32\xba\x54\x47\x8c\x3c\xea\x41\x02\xcb\x9c\x3a\xea\xe5\x4c\x8f\xe1\x10\xdd\x0e\x9b\x53\x86\xa4\x96\x39\xdd\x12\x26\x97\xba\x31\xe6\xbf\x43\xed\x72\xea\x9e\x9c\xdc\xf9\x46\x38\x82\xce\xa8\xc9\x9d\x56\x80\x17\xcb\xa9\x15\x65\x28\x43\xe8\xe7\x9a\xde\x69\x49\xbd\x1e\x44\x5a\x26\xf1\x0a\xab\xf0\x5d\x2c\xb0\xe9\x2e\x32\x01\x59\x07\xd8\xb0\x9c\xce\x80\xe9\x0c\xd0\x2f\x75\xea\x9f\x84\x6d\xbd\x05\xf9\x2d\xf3\xd4\x62\x82\x6e\x7d\xc9\x0e\x64\x68\xf1\x09\x78\x28\xf4\x55\x9d\x90\x43\xa4\xa1\x0c\xa1\x5f\xea\xd4\x67\x09\xdd\xfa\x92\x0d\x64\x97\xb2\x47\xd9\x1a\x6a\x79\xd6\x53\x9e\xf5\x00\x07\x96\xc6\x37\xe4\xb9\xfb\x1c\x43\x7d\xea\xb3\x94\x67\x3d\xf4\x55\x11\xb9\xb0\x0a\xeb\xe5\x78\x77\xba\x91\xc8\xa9\x1e\x30\x9b\xa5\x9c\xea\x79\xba\x91\xe8\xab\x3a\xbd\xfb\x3a\x87\xbf\xc7\x19\xed\xd4\x78\x82\x5a\x7d\xc9\x3a\x32\xbf\x23\x7e\xcf\x2d\x55\x34\x08\x21\xa1\x51\x6f\x01\x48\x2b\x4f\x8f\xbd\x27\xfe\x9c\x20\x7c\x31\x4f\x1d\x36\xf2\xa7\x07\xe1\x8b\x29\x7f\x7a\xc2\x9f\x9e\x9b\x4d\x76\x56\x48\x9f\x1e\xc9\x06\x7e\x7a\x78\x38\xd5\xf6\x64\x51\x3e\x01\x59\xe7\xe9\x46\x02\x46\x2b\xa5\x54\xcf\x93\x08\xc9\xd0\xa5\x75\x6a\x3b\x19\x5b\x10\xc9\x6c\x3c\xbd\xe6\x3a\x35\x94\xd2\xa1\xf4\x50\x60\xcc\x40\x40\x53\x9f\xc6\x0c\xe4\x09\xd4\x21\xd2\xa1\xd4\x29\x4f\xe8\xc0\x92\xf1\x69\x1e\x14\x4e\x0f\x0a\x5a\xd3\xa7\xc6\x13\xcc\xea\x2d\x88\x9a\xcc\xd3\x8d\xe4\x7c\xfc\x3d\x16\xdb\xf3\xf1\xf7\xdc\x34\xf4\x63\x9d\xba\x22\x4f\x0f\x05\xc9\x15\xed\xa9\x2b\xf2\x54\xc5\x61\x1d\x4b\xe9\xd3\xf3\x7c\x6d\x8b\x43\xf9\xda\x96\xd7\xbe\xe2\x08\x7e\xba\x69\x9c\x1a\x54\xb0\x8e\x25\xc1\x07\xab\xb0\x5e\x87\xd2\x0d\xe2\x74\x83\x48\x66\xb7\xf1\x06\x79\x6d\xd6\xcb\x02\x7c\x69\x78\x5d\x6b\x96\x24\xbc\x1c\x79\x89\x74\x30\xdc\x20\xc0\x72\xe5\x25\xd2\xe1\x72\x76\x14\x33\xf5\x12\xe9\x70\xb9\x3f\x10\x49\x99\x97\x86\x97\xe1\x06\x41\x02\xcb\xbc\x9c\x09\x97\xfb\x83\x8e\xb1\x4b\xad\xbf\xd4\x7a\xb8\x44\xf2\x52\xeb\x2f\x4f\xd1\x3a\xcb\x0c\x2d\x48\xa2\x09\x96\x8c\xe7\x44\x2b\x5c\x9e\x18\xc0\x6d\xe5\xa5\x0d\x74\xe1\x6d\x0f\x70\x5b\x79\xa9\xcd\x17\x88\x83\x80\x09\x3f\x0d\x19\x48\xc8\xd6\x5b\x80\xdb\xca\xcb\xdb\xdd\x2b\x6d\x0b\xf6\x93\x21\x03\x79\xa5\xf5\x62\x43\x43\xb9\xbe\x0a\xdf\x65\xdf\x34\x64\x20\xaf\xf2\x39\x6c\xaa\xcb\x45\xfe\xf2\x7c\x0c\x1e\x2b\x8d\x23\xc8\xab\x6c\x1f\xc3\x7b\xe9\x93\x24\x8e\x60\xc9\xa8\x63\xda\x3e\x55\x1c\x3c\x56\x5e\x22\x0e\x8c\x10\x08\x98\xc6\xf2\xf2\x7c\x70\xb9\x19\x14\xb7\xc5\x97\x4e\x21\x48\xde\x93\x28\x91\xbc\x34\xa9\x2e\x8f\xc7\xfa\xe3\x60\x75\x5f\x85\xd5\x72\x92\xba\x34\xb3\x2e\xcd\x2c\xa0\x5c\x49\xb4\xc0\x2a\x68\xf2\xf4\xf7\x34\xb3\x2e\x67\x02\x24\x65\x29\xb9\x7b\x5e\xee\x0f\xfa\xe3\x24\x77\xcf\xcb\x99\x40\xf2\xcb\xbc\x34\x9f\x24\x7c\x0f\x00\x57\x79\x3d\xb6\xef\xf5\x5d\x16\x71\x83\x06\xf2\x7a\xad\x83\x45\xfc\x7a\x6d\xdf\x32\xb3\xf2\xf0\xe7\x9c\x30\xd7\x6b\x15\x58\x68\x97\x13\xe6\xf2\xb4\x3d\xb1\xd3\x2f\x2f\x74\x09\x31\x58\x32\xaa\xf0\x54\x72\x69\x65\x4d\xd6\xfa\x4b\x2b\xeb\xf2\x04\x3e\xb1\xe4\x6e\x42\x99\xf3\xf6\xb4\xad\x2b\xef\x06\x83\x9d\xb7\x7b\x07\x3c\x68\x79\x83\xb6\xcb\x9b\xc0\x9b\x80\xf4\x2c\x6f\x4f\x25\xb7\x33\x01\xac\x56\xde\xae\xff\xb7\xc7\x6d\xfd\x71\xf2\xd1\xe7\xad\xa5\xa4\x3f\xee\x06\x6f\x9d\x06\x21\x84\xfe\x38\x83\x10\xd2\x20\x84\x98\x9c\xb8\x6e\xcf\xd3\xb7\xeb\x3f\x91\x9e\x79\xeb\x28\xba\x71\x0a\x25\x38\xaa\x84\x19\x7e\x15\x2f\x32\x2c\xe6\xdb\xbb\x28\x83\x0b\x52\x1f\x98\xc1\x05\x49\x3c\x41\xcb\x6d\xdf\xfe\xbd\xd5\xdf\x4e\x9e\x1b\xaf\x68\x0a\x9f\xba\xd3\x9f\xc1\x91\x94\xd0\xf3\xe7\xed\x3d\xee\x5d\xfe\x34\xc3\x60\x50\x41\xde\xac\xfb\x29\x2c\xea\x76\xdd\xbf\x59\xf7\x73\xb3\x7b\x5d\xf7\xef\xe9\x27\x61\xec\xde\x5e\x4b\xdd\xa7\xf5\x32\x41\x6f\x27\xc0\x8d\x35\x94\x1b\x1e\x8e\x5b\x6b\xe8\xc6\x1a\xfa\xed\x4b\x06\x1a\xa4\x81\x06\x49\xa4\x65\x1a\x49\x90\xf7\x65\xfb\x98\xb4\xb7\xae\xd2\xfb\xb2\x5e\x87\xc1\xab\xaa\xfb\x7a\x96\x26\x62\x5c\xdd\x9e\x47\x88\x3b\x58\x8f\x21\x73\xa2\xdc\xb7\x9f\xc1\xd2\x2d\xf7\x7c\x12\x77\x90\x07\x1b\xf3\xad\x6d\x75\x3f\xbf\xc7\xa8\xc1\x1d\xe3\x7e\xac\x95\x55\xfa\x76\xc7\x20\xc4\x60\xc9\x78\xce\x63\x06\x6c\xf3\x2d\x61\xda\xcf\xfb\xb3\x0a\x2e\xaa\x92\x78\xcc\x7c\x34\x76\x88\x1d\x98\x3b\x9d\xfc\x78\x8a\x26\x74\x60\x3d\xb6\x3a\xe0\xd1\x27\xfa\x70\x02\x48\xc2\x36\xf3\xd1\xc5\x4f\x98\xc0\x92\xad\x41\x7b\x74\x19\x3d\xe0\xd6\x52\xfc\x93\x31\x03\x09\x13\x7c\x4b\x08\xc7\xd2\x98\x81\x7c\x76\x9b\xc7\x80\x3f\xae\xf0\xc6\x07\x64\x63\xde\x3d\xba\x91\x9e\xc3\xe7\x58\xb9\x1f\xed\x1a\x58\xdf\x97\x8c\xf6\x0d\xdb\xc7\xc9\x37\x1b\x73\xec\xd1\xd9\xf3\x60\xc3\x64\x63\x20\x1f\x57\x7d\x63\x06\x52\xf7\xd5\xa3\x19\x6f\x7c\x40\xea\xbe\x7a\x54\x5c\xc2\x04\x5a\x36\x46\xe8\x11\xd3\x43\x98\xc0\x92\xf1\x1d\x3a\x85\xa4\x80\x4f\x02\x2e\xf3\xd1\x9d\x0f\x13\x7c\x4b\x68\xf0\xd3\x58\x80\x7c\xca\xef\x60\x88\x1e\xcd\xf8\x87\x68\x98\xdc\x99\x8b\x8f\x27\xe4\x47\x65\xd6\x69\xf5\xe8\x00\x7a\x54\x66\x31\x51\x8f\x37\x51\x0f\x2b\x7c\x7a\xed\xf4\x9c\xf6\x0b\x6e\xff\x84\x20\x2c\x1f\x97\x6e\x81\xff\x09\x5d\x7e\x3e\x1a\x2c\x82\xfc\x53\xa7\xd5\x23\xb4\x00\xc6\xf8\x96\x10\x84\xa5\xc0\xff\x7c\xb8\x8a\xca\xfd\xf0\x5d\xc7\x8d\xe5\x3c\x77\xc7\xcd\x6b\xa7\xe7\xf1\x5d\xd6\x46\x81\xff\x29\xf0\x3f\x75\x64\x3d\x9e\x86\x9f\xd7\x36\x63\x3c\x3d\xde\xb1\x3e\xaf\xdf\xcb\x8e\xfb\x78\x1a\x7e\x54\x5d\x58\xc3\xf2\xd1\x88\x81\x45\x7e\xc9\x78\x57\x75\x36\x18\x20\xc5\x67\x19\x0c\x90\xef\xe6\xf7\x72\x0c\x7a\xb5\x58\x5e\xf5\x79\xe7\xb2\xd0\x60\x80\x7c\x9b\x7d\xc5\x8e\xfb\xea\x03\x7a\x77\xc7\xa3\x94\x75\x65\x7e\x1b\x3b\xa9\x34\xf3\x29\xcd\x7c\x92\x74\x31\xa5\x99\x4f\x69\xe6\x53\xef\x96\x80\xfe\x7c\x89\x6d\x49\x3d\x59\xaf\x27\xd5\x17\x8b\x25\x09\xcc\xcc\x57\x87\xcf\x0b\xc8\x26\x0f\xb6\xcd\x57\xe7\x0e\x20\xfe\x96\x07\x73\xf0\xf5\x54\x2a\x7a\x3f\xf5\x51\xbd\xea\xf8\x1b\xbe\xcb\x02\xfb\xaa\xe3\xaf\xeb\x34\x14\xff\xf9\x6a\x93\xbf\x90\xb8\x25\x49\x17\xf3\x55\x9f\xdf\xf4\x39\xe6\xdb\xab\x3e\xbf\x78\x7c\x52\xe7\xd3\xab\x97\x1f\xba\xf9\x25\xa3\xcd\x65\x1d\x24\x01\x49\x41\x54\xaf\xfa\xfc\xaa\xcf\xf0\x82\xa5\x88\xfe\x7c\xc1\x11\xe4\xe1\x18\xe9\xf1\x79\xf1\xf8\xa4\xde\x27\xd1\xfb\x09\x7a\x3f\x9a\x5d\xa5\xad\xfd\x72\x3b\x9a\x3a\xa4\x5e\x55\xf7\x5d\xeb\xe7\xcf\x4f\x2f\xcb\x7c\xbe\x4b\x31\x7f\x6e\xfa\xd7\x43\xe2\xbb\x96\xc5\x9f\x47\xfe\xf5\xde\xfe\x5d\xdb\xfd\xcf\x21\xff\x7a\x6c\x84\x3a\xfe\xe7\x8f\x17\x67\x9f\x90\xc5\x87\x8b\xd7\xe7\x26\x0f\xda\x3e\x1a\xf3\x42\x94\x7d\x82\xb2\x0f\xb8\x12\xf3\xf3\x1a\x1f\xf6\xf8\x68\xf4\xee\xe7\x8a\x09\xc6\x3e\x1a\xa7\x0c\x19\xe0\xf3\xdb\x73\x89\x58\x6b\x3f\x7d\x8c\xdf\x3a\xf3\x05\x9c\x88\xf9\xa9\x4a\x1f\x4c\x25\xae\x64\xdf\xe1\xcf\x77\x47\x80\x3d\xe4\x73\x77\x07\x4b\x9f\x30\x90\xa4\x50\xfa\x94\xfd\x3d\x45\x89\x09\x82\x4f\x41\xf0\xa9\xcb\xed\x53\x91\x3e\x37\x7c\x5d\x6e\x9f\x4a\x03\xc6\xbd\x65\xdf\x8e\x7f\x6f\xee\x9f\xf7\xfb\x9f\xeb\xa6\x1e\x39\xf1\xf0\x29\x1e\x3e\x3b\x6b\xd5\xa7\x4e\x01\x8b\x5f\x32\x9a\xa5\x4e\x7d\xae\x9b\x7a\xdf\x3e\x5d\x22\x1f\xd6\x72\x0a\x40\x13\x0f\x9f\xf0\xc6\x2f\x19\xdd\x28\xc6\xf1\xc3\xfd\x91\xdd\x01\xd0\xfd\xf1\x71\x0d\x9a\xdd\xee\x3e\xfd\xbd\xd3\x77\x71\xbb\x88\x7d\xcf\x8f\x88\x90\xec\x8e\x81\x1b\x3e\xd8\xf7\x9f\x9e\x7d\xde\x96\x7e\x2e\x9b\x3a\xda\x84\xb9\xa7\xbc\xf2\xd9\x1d\x18\x37\xf2\xcf\x8d\x5c\x07\xda\xa7\x63\xf1\x73\xd9\xd4\x81\xf6\x89\x57\xfc\xb8\x1a\x4d\x52\x1c\xa4\x30\xf7\x14\xe6\x9e\xc4\x8d\xa6\x30\xf7\x84\x4a\x7e\xc9\x68\x9e\x16\xef\xf7\x5a\x07\xdb\xce\xa7\x79\x0b\x6d\xfc\x92\x0d\x64\xb6\xef\xb5\x9b\x59\xbe\x3e\x4d\xd9\xcf\x65\x93\xb8\xd1\xfc\xbc\x1a\xfd\x5c\x36\xe1\x3b\x2b\x21\xed\xb5\x61\xb6\xe6\x58\xf3\xaf\xc0\xb2\xaf\xe2\x53\x96\x4b\x86\x83\xaf\x36\xd2\xc8\x25\x28\xb2\xda\x30\x03\x4a\xd2\xf7\x1c\x8d\x77\x31\x03\x4a\xd2\xf7\x24\x5b\x73\x6d\x04\x8e\xd4\xb6\xb4\x5f\x0b\xa2\x80\xb2\xff\xd5\xe6\xaa\x39\x94\x61\xc9\x96\x9c\xef\x39\x96\x55\x51\x1b\x70\xc5\xda\xd4\x7f\x1c\x6d\x25\xe7\x7b\x01\x58\x6f\x39\x0e\xde\xed\x7e\x06\x1c\x28\x09\x2d\x5a\xc9\x03\x5f\x9b\xab\x2b\x68\xb3\x92\xdf\xbd\x36\x57\x52\x90\x65\x25\x2a\xbd\x36\x57\x4d\x1c\x72\xb5\x85\xcf\x91\x08\x26\x41\x87\xd5\x96\x76\x01\xd7\x40\x49\x20\x67\x89\x36\x2f\x89\xdb\x13\x24\x58\x01\x29\xff\xab\xcd\xd5\x70\xac\x21\xaf\x6d\xda\xe6\x69\x9b\x93\xe7\x30\x4b\x6b\x3b\xad\x77\x0d\x6f\x6d\x97\x5d\x05\x32\x2a\x41\x82\xd5\x06\x32\xaa\xe0\x60\x6f\x39\x26\xbf\x77\xfb\xbd\xb7\xc3\x31\xf9\x8e\xdb\xef\x78\xac\xc3\xe1\x7d\x94\x71\x90\xca\x70\x28\x51\xab\x12\x1d\x9e\x44\x5e\xd6\xf6\xfa\x7b\x4b\x93\x02\xec\x5f\x09\xfa\x2e\x41\xdf\x09\x65\x59\x09\xfa\xae\x46\xca\xa1\x04\x1c\x56\x0d\x4f\x41\x35\x5c\xc9\x09\x65\x59\x35\xb5\x4a\x70\x78\x02\x18\x2b\xc1\xe1\x25\xf7\x7a\xe2\x98\xab\x46\xce\x97\x6a\x4b\xe1\x82\x30\xdd\x6a\x78\x0a\x0a\xb6\xf5\x96\xb0\x98\x55\xc3\x93\x5c\x8d\xfb\x98\x24\x66\xb3\xda\xee\xab\xda\x91\xf8\xdb\x0a\x7e\xf5\x55\x0c\x65\xfc\x1e\xf1\x0f\x25\xa5\x7a\xe2\xd2\xad\x76\xf8\x7b\x6a\x10\xd8\xb0\x82\x23\x7d\x15\x36\x39\x78\x97\x8b\xf4\x6a\x83\x5e\x19\x1d\x91\x5f\x31\xec\x15\x06\xb7\x11\x8f\x5d\x2d\xec\x81\xa4\x29\xa9\x2c\xed\x64\x06\xb7\xb1\x44\x96\xd0\xf0\xc4\xdd\x56\x60\xc2\x57\xf1\x50\x05\x1d\x5a\x7e\x45\xfd\x1e\xa3\x25\x65\xb5\x5a\x91\x5c\x66\x55\x9b\x56\x31\x7d\x8e\xf1\x96\x14\xbd\x1a\xd1\x41\x99\x1b\x5f\x86\x2b\xac\x1a\x78\xa6\x24\xff\x43\x35\xac\xc8\x6a\x5a\x91\x84\x4e\x16\xf0\xef\xbf\x6a\x97\xcf\x31\x9d\xdb\xe5\x73\xea\x5e\x3a\xb8\xb7\xb2\xdb\x77\x77\x7e\x4f\x7d\x6c\x38\x88\x33\x1d\xb5\x47\x65\x71\x99\xcb\x83\x36\x3f\xd6\xe1\x32\x87\xbb\xad\x84\x60\x97\xac\xe7\x49\x56\xc8\x92\xf5\xbc\x9a\x07\x1b\xc2\x1f\xab\xbd\x7e\xdb\xe7\x73\x0e\xc7\x67\x5f\xad\xd5\xae\x3b\x9d\x45\x65\x57\xfb\x6c\x32\x5d\x2a\x11\x7a\xed\xdb\xbe\x16\x7a\x5a\x02\xf2\x7a\x15\xcf\x7f\xfd\xaf\xe3\x58\xfb\x6f\x89\xbf\x2e\xf1\xd7\x89\x9f\xae\x76\x5c\xbd\x25\xfe\x3a\x73\x1d\xcd\x6b\xdf\xfd\xb5\xb5\xd4\x25\x57\x77\xb5\x63\x2d\x96\x90\xec\xc4\x25\x57\xc2\xaf\x0b\xf8\xb5\x86\x52\xc1\x9c\xbe\x8a\xc7\xc7\x94\xa1\x8c\x3b\x00\xd3\x4c\xa6\xf7\xde\xad\xb5\xfb\xf9\x73\x20\xf3\xdd\x6e\xd7\x31\xdc\xd0\xa9\xaf\x82\x6a\xc9\x0d\x50\xbb\x1a\xba\xbb\xc7\xe3\x6a\xab\x3d\x7c\xce\x43\x7d\xb5\x7f\x03\xed\x6b\xe7\x6c\x54\x60\xb9\x5b\x12\x55\x59\x7b\xd8\x04\xf7\x7d\x3c\x71\xb5\xab\xd4\xbb\xfb\x3e\xb0\xb5\x12\xb0\x5d\x02\xb6\xb3\xd6\x39\xa3\xf6\xb2\x09\xda\x92\x78\xec\x4a\x74\x76\xed\x6a\x3a\xd1\x97\x25\x12\xbb\xf6\xe9\xef\xb1\x26\xec\xc4\x31\xd4\xee\xd9\xa8\x3a\xcf\xb1\xc7\xd7\xee\x1e\x4f\xf4\x65\xed\xae\x9e\xbb\xab\x67\x0d\xda\x7c\xd9\xbd\x9e\xc2\x0b\xad\xd9\x6f\xdf\xf5\x1c\x04\xc1\x5a\x09\xb1\xae\xfd\xfe\xbd\x4b\xbd\xb7\xdf\xb1\x2c\x4c\x43\x89\x6a\x7f\xec\x96\xc7\x6e\x61\x13\xd8\x01\x73\x14\x00\xea\x25\xe3\x73\x5f\xbb\xca\xa3\x4c\xb1\x4e\xec\x9f\xd5\x7e\x56\x9b\x34\x45\x6d\x15\x61\x9d\xa0\xea\x6a\xff\x7c\xd7\x95\xb7\x50\x26\xf9\xd5\x0b\x04\xf5\x92\x2d\x8d\x90\x4b\xbd\x8e\xe6\xef\xd5\x44\xd6\x95\x8d\xd5\xe4\x23\x11\x95\x22\x26\x44\xcd\x1d\x19\xab\xe7\xe1\xe9\xa6\x58\x4f\x0e\xa2\xcc\xea\xf0\x74\x03\xf8\xae\x80\x42\xaf\x82\xa6\x00\xb4\x2b\xf8\xd2\x57\xb1\x2b\xe3\x39\xf7\xe4\xc3\x15\x15\xa0\x5d\x1d\xdd\x26\xab\xb0\xd0\xb5\xd5\x01\xf8\xae\x0e\x4f\x37\x38\xf6\xea\x50\x61\x8f\x41\x2f\xb3\x24\x1c\x61\xb5\x6b\xfb\x35\x7e\xa9\x60\x50\x5f\x05\x2d\xc6\x87\x57\xb0\xa5\xaf\xc2\x16\x33\x13\x0f\x1c\x4a\x75\x68\x4b\xe2\xaf\xab\x83\xc8\xe4\x3a\x74\x32\x11\x5b\x59\x87\x2b\xaa\x18\xe9\x04\x7a\x57\x62\xa4\xeb\x20\x32\x20\xf1\xe1\xd5\xe1\xce\x2d\x46\x3a\x89\xc1\x2c\xc9\xd5\x4b\x8c\x74\x92\xb8\xa0\xc4\x3e\xd7\x71\xda\xbe\xa0\x57\xc0\x3e\xd7\x71\xda\x7b\x2c\x28\xc7\xe5\x73\x6b\x61\x1d\x70\x37\xd5\x71\xd9\xe4\xcb\xc7\x94\xa9\xa2\x87\xf6\x25\xae\xbe\x82\x7c\x7d\x15\x76\x9e\x7a\x71\xdb\x53\xb7\x9d\x5c\x34\xd9\x85\x17\x2a\xf6\x25\xa3\x93\xd5\xdb\x43\xef\x11\xd0\xbb\x3a\x34\x04\x84\x3e\x27\xe4\x6f\x75\xc0\x56\x51\x72\xb0\x27\x79\x0b\x4a\x0e\xf6\x02\x01\xdd\x0a\xd7\x61\x09\x7d\xae\x83\xab\xb7\x22\xdc\xb2\x8e\xcf\xf6\xad\x95\x77\x00\xa7\xa9\xe3\x53\x07\xb8\x6e\xa8\xed\x27\xf3\x73\x51\xef\x22\x02\xb3\x80\x46\xaf\x62\x2a\x5b\xd5\x76\xd5\xbb\x37\xab\x60\xef\x01\x1a\xbd\x8a\x4b\x59\x22\xe3\xf7\x00\x45\xb7\x02\x79\x57\xdd\xf5\x18\x5a\x76\x19\x9e\xaa\xab\xde\x7d\xf7\x55\xcc\xc1\xae\x11\xd1\x31\x43\x8b\x44\xa0\x05\x82\x7a\x15\x1d\x19\xfa\xd8\x01\xf2\x15\x78\xea\x25\xe3\x5d\xcd\x55\xc1\xd5\x45\xa0\x66\x81\xaa\xfe\xab\xce\x34\x28\x90\x77\xd5\x35\x4d\x3b\x81\x68\x85\x47\xb2\xba\x53\x43\xf6\xf6\x22\x50\xb3\x3a\x48\x8f\xea\x5c\xc6\x15\x41\x99\xd5\x87\xed\x0b\x9f\x4b\xda\x12\xfe\x5e\xf8\x7b\xc9\xef\xb9\xe0\x4a\xb7\x5e\x04\x5b\x56\xd7\x8c\x10\x02\x5d\xf8\x0b\xab\x3b\x11\xfa\x9a\x08\x03\x9f\x50\x75\x75\xbe\x63\xad\x16\xc9\x3a\xab\x73\xce\xaa\xce\x1a\x5c\x20\xe5\x4a\x56\xf6\x12\x29\x5d\x50\xbf\x15\x14\xed\x7f\x05\x39\xfb\x92\xd1\x14\xd7\xe5\xce\x39\xab\x9a\xa3\x0b\x59\x45\x81\x84\x6e\x45\xbc\x64\x75\xd7\x6a\x08\xdb\x97\x8c\x77\x55\xfa\xce\xba\x5c\x1c\xb0\xab\xbb\x2e\xc3\xe2\xbe\x64\xbc\x7b\xdb\xcd\xa0\x35\x8a\xcc\x9c\xd5\x1f\x47\x1c\xeb\xb7\xf0\x17\x56\x7f\xfc\x5c\x7c\x51\xd5\x1c\x36\xad\x8d\xfe\xfa\xbd\xcc\x71\xa1\xd2\x25\x8f\x7b\x41\xd0\x56\xfd\xf3\xb9\x4f\x59\xac\xf5\x46\x58\x74\x09\x81\x2e\x27\xef\xd0\x84\x85\x7e\xbd\x15\xd8\xb5\x1a\x1a\x0d\xa3\xd9\x7f\x4c\xb6\xe1\x2a\x3c\x58\x85\x0b\xdf\x60\x0d\xee\x87\x0b\xc4\xf4\x92\xad\x49\x34\xd4\xdc\xc1\x5d\x40\x41\xbc\x56\x60\xa4\x57\x71\x2a\xa3\x2d\xe0\x91\x6a\x70\x17\x5c\x00\xda\x6a\xa8\x7e\xd0\xb4\xb7\x65\xba\xfc\x7b\x9b\x1f\x2e\xdc\x43\x8d\xdd\x59\xa4\xe1\x6d\x5f\x05\xcd\xda\xd9\xe6\x07\xd7\xc7\x35\x38\x4c\x15\x61\x97\x35\x08\x9f\xaf\x31\x7c\x8e\x89\x27\x7d\x7b\x89\xa4\x5e\xb6\xcf\x92\x85\xdd\x81\x87\xa1\x9c\x8d\xc3\x03\x16\xe0\xe9\x56\xb8\x0e\x6b\x84\xcd\x4f\xdf\x65\xe6\x0d\xcd\x8b\x91\x7e\x26\xb3\x6c\x68\x33\x8f\xb4\x5e\x66\xd9\x48\xeb\x05\x55\x51\xb8\x0e\x4b\xfa\xf6\x12\x35\x5d\xb8\x09\x6b\x68\x34\x8f\xe9\x73\x2c\xd3\x43\x75\x1f\xd3\xee\xe5\x10\x27\xcd\x7b\x49\xf3\x5e\x80\xe0\x6a\x9c\x0e\xff\xe9\xbb\x0e\xbf\x46\xf3\x38\x6d\x0b\x6b\xb2\xd4\xef\x25\xf5\x7b\xed\xac\xc9\xe0\xaa\xff\x4a\x9a\xf7\xc2\x9d\x58\x43\x75\x1f\xaa\x36\x9c\x6e\x05\xe7\xfb\x2a\xe8\x17\x5c\x87\x05\xae\x7a\x15\xbb\x32\x9e\xc3\x87\x50\x83\xf5\xbc\x0e\xa6\xde\x78\xec\x3f\x0e\x76\x05\x08\xae\x86\xeb\xf9\x60\x3d\x2f\x52\x0a\xd4\x70\x3d\x17\x5e\x5d\x07\x26\xdb\xf8\x54\xb1\xcf\xe7\x1c\x37\xed\x10\xa1\xd4\x85\xeb\xb0\xc2\x29\x10\x9b\xef\xb2\x62\x86\x8b\x77\xe0\x43\x28\x5c\x87\x15\x9a\xd7\xe1\xb4\x20\xfe\xb2\xc2\x05\x3d\xb8\x0e\xab\x83\x71\x0b\xae\xc3\x2a\x9c\x16\xc7\x18\xc8\x2e\x65\x8f\xb2\x42\xc6\xf8\x42\xf7\xde\x0a\x77\x62\x85\xbe\x86\xc0\x88\x29\xe2\x2f\x2b\x70\xab\x95\xdc\xef\x75\x04\xed\x73\xaa\x08\xc3\x2e\xe2\x2f\x2b\x34\x6c\xe2\xf0\xdb\x38\x8b\x85\xce\x86\xe8\xbe\xcb\x54\x8e\x61\x9b\x87\xdf\x8b\xd5\x1d\xb8\x68\x4b\x4e\xf7\x22\x55\x40\x89\xaf\x2e\xf1\xd5\x45\xea\xce\x82\xcc\x7d\x15\xa1\x8c\x77\xc3\xbe\xc2\xac\x2e\xdc\x64\x15\xe1\xb7\x71\xe5\x50\x80\xd4\x2a\x3c\x3f\x42\xed\xbe\x64\xbc\xeb\x8a\x0e\xce\xba\x15\x54\x6a\x15\xe5\xb7\xb9\x7c\x03\x3e\xab\x98\xb6\xcf\xa5\xba\x3b\x46\x1e\x0c\xe3\xf4\x39\x8e\xcb\x02\xa7\x4b\x0e\xf6\xb5\x19\x21\xb3\x5f\x5c\xbe\xa1\x4d\xab\xb8\x6c\x0b\x37\xc3\xd5\x1d\xa3\xcb\x71\xbb\x6c\x0b\x0e\x12\xc1\xd4\x05\xc5\x7a\x5b\x9b\xd6\x92\xc1\x2b\x54\xf2\xad\x17\x81\x95\x05\x62\x7a\x15\x8c\x2f\x3e\xb1\x8a\xc7\x3a\x1e\x9f\x73\x8c\x1e\xdb\xc7\x01\xb2\xf0\x93\x95\x60\xea\x12\x4c\x5d\x04\x5b\x56\xbc\xf6\xbd\x7a\x0f\xbf\x5a\xc1\xbe\xbe\x0a\xfb\xcf\xf1\x7d\xd5\x0d\x70\x13\x6b\x13\x5c\x32\x97\xf9\x58\xa6\xb9\x37\x3b\x25\x0e\xbb\xc4\x61\x17\x19\x43\x0b\x00\xf6\x2a\xac\x96\x95\x5a\x6e\xf5\x02\x7a\xdd\x0a\x3c\x5a\xa5\x4e\x8e\xc4\xc9\x51\x83\x95\x5a\xd0\x75\x41\xb1\xbe\x64\xab\x29\xa9\x3a\x43\xa7\xde\x4a\xd7\x59\x12\x10\x53\x49\xe4\x62\x11\x94\x59\x82\xae\x2b\x41\x06\xad\xcd\x03\x99\xef\x6a\xb4\x80\x5b\x2b\x39\xd8\x4b\x0e\xf6\xd2\x77\x96\xe0\xe5\x2a\xdd\x21\x06\xb6\x52\x92\xc1\xab\x12\x1f\x5b\xe9\x4f\x4b\x0f\xa5\xe0\xb6\x5b\x0d\x2c\xeb\x74\x2a\x88\xc8\x2e\xc0\x6c\x25\x07\x7b\xc9\xc1\x5e\x83\x25\x3b\xdd\x16\x40\x61\x2f\x19\xcf\xb9\x2d\x80\xb8\x6e\x45\x04\x66\x25\xb7\xca\x05\xd7\xfa\x92\xd1\x16\x0d\x19\x10\xd7\x4b\x46\x5b\xd2\xe7\xd2\xef\xe0\x28\x95\x5a\xf9\xa0\xb0\x5b\x91\x26\xb4\x12\x2c\x6a\xe5\x32\xf6\x93\xfc\xd0\x95\xee\x00\xa9\x0d\x34\xd0\x16\x11\xd9\x95\x1c\x30\x0b\x62\xb4\xca\xf2\xe7\xea\xf7\x73\x54\xeb\x2c\x4a\x67\x91\xae\xb8\xd4\xf0\x4f\x8d\xa0\x81\x4d\x95\xd3\xee\x9b\x36\x99\x55\x3c\xdd\x15\xe4\x67\xaf\xc1\x2a\x2e\x4c\xbb\xf2\xb4\x5e\xac\xe8\x3c\xad\x97\x4b\xba\xb5\x80\x2e\x99\x86\x91\x30\xed\x0a\x56\x76\x61\xda\x95\xce\x2c\x80\x6e\x95\x9e\x10\xd2\x99\x15\x7e\xaf\x33\x2b\x9d\x59\xd1\xfe\x8d\xbf\xab\x74\xe2\xa5\x13\x4f\xb7\x5c\xea\x35\x4c\xee\xf5\x4a\xb7\x5c\x6a\x4b\xe5\x63\x53\xd5\x1c\x27\x5e\x3e\x36\x41\x8d\xd0\x96\x4a\x6d\x29\xb0\x71\x25\x6d\x7c\xe5\x6b\xf3\xd5\x92\xcf\xcf\x04\xd1\x5a\xe0\xe0\x2a\x3d\x40\x88\x00\xaf\xc0\xc3\x93\x6e\x42\xe9\x26\xa4\xaf\x2e\xdd\x84\xd2\x99\x17\x2c\x3e\xe5\x26\x54\x9b\xf5\xb2\x41\x94\x2e\xc7\xf2\x04\x01\x49\x5a\x95\xb3\xb1\x36\xdb\xcc\xe2\x23\x2a\xbc\xaa\xf9\x6d\x68\x93\xb0\xf0\x82\x65\x7e\xc9\xd6\x30\x94\x76\x58\x39\xcb\x82\x45\xa5\xf4\xe8\x00\xf1\x6e\x45\x6c\x67\xd5\xe1\xef\x1d\xb6\x99\xe1\x2f\x37\x97\x3a\xac\x97\x4d\x43\xc0\x77\x15\x6e\x9e\x82\xd4\xac\xca\xa3\x41\xe1\xb5\x2e\x30\x74\x55\x7a\xad\xcb\x19\x05\x86\xae\xca\x53\x73\x79\x34\x20\x4d\x67\x89\xee\xae\xf2\x68\x90\xac\x0c\x05\x31\x70\x89\xee\xae\xc4\x70\x83\x95\x7e\x15\xbe\x8b\xb7\xae\xf4\x64\x17\xfe\x99\x02\x1c\x57\xe5\x54\x29\xa7\x0a\x64\x65\x55\x4e\x95\x72\xaa\x64\xa7\x0f\x9c\x2a\xc5\x19\xb9\xf4\xe0\x95\x3e\x9b\xe2\x8c\x5c\x7a\xf0\x6a\xfa\x6d\x6e\x42\xc9\xe6\x22\xe2\xbb\x24\xac\xaf\x74\x2c\xdd\x84\xca\x69\x41\x9a\xce\x12\xf1\x5d\x75\xf9\x6d\x1c\x85\xca\x4d\xa8\x34\xaa\x88\x86\xa8\xd2\x33\x5e\x97\x75\x38\x6e\x97\x75\x68\x68\xe9\x89\x93\xc4\xbe\x44\x81\x57\xb2\x19\x94\x1e\x4b\x51\xe0\x45\x34\x68\x95\xfe\x9e\x72\x7e\xe8\x9e\x2b\x0f\xd3\x92\xdd\x17\x80\xb9\x12\x05\x5e\xe5\xc6\x04\x60\xae\xea\xb1\x4f\x35\xc8\x52\x3d\x70\x63\x82\xf3\x7e\xc9\x18\x23\xe7\x47\x11\x7a\x5f\x44\x97\x96\xc8\xf0\x2a\x62\xe0\x8a\x7c\x04\x25\xe2\xbb\xca\x5d\x08\x46\xb4\x2a\x4f\xd3\xe5\x99\x84\x7c\x04\x35\x9d\x0b\x13\x97\x7c\xc1\x88\x56\x53\x97\x3c\x80\xee\x25\x9b\xc8\x4a\x19\xba\x46\x8a\xcf\x9a\xce\x8f\xe9\xfc\x20\x71\x41\x89\xee\x2e\xd1\xdd\x45\x3a\xcf\x9a\xce\x8f\xe9\x6e\x45\x18\x6a\x4d\xf8\x5a\x6a\x72\xd1\xb3\xb4\x1b\x59\x28\xb3\x0e\x76\x03\xe8\xf0\x57\x61\x1d\x18\xf0\xd3\xa3\xf3\x74\x17\x82\xfd\xac\xa6\xbb\xd0\xf4\xec\x02\xda\xae\x44\x77\xd7\x74\xce\x90\xe2\xb3\xa6\xae\xd1\xe9\xce\x04\xda\xae\x66\xf7\xdb\x40\x77\x17\x8c\x68\x35\xf5\xe7\xcb\x62\x5f\x3a\xd1\x64\xb1\x2f\x10\xdd\x4b\xc6\x73\xee\x42\x20\xba\x5b\x81\x98\xab\xa9\xfb\x69\x72\xfb\x53\x7a\xc7\x84\x77\xd7\xf4\x70\x02\x3c\xae\xa6\x73\x6b\xba\x33\x01\x8f\xab\xe9\xe1\x64\x02\x6e\x5d\x43\xb0\x64\x65\x9f\x82\x0b\x29\xbd\x68\xb2\xd8\xd7\x74\x6e\x01\x8f\x2b\xb0\xde\xab\xf0\x5d\xc7\x72\x5a\xaf\x5b\x13\xe1\xaa\x35\xdd\x9a\xa6\xf3\x6d\x3a\x96\xfa\xa4\xa6\x67\x71\x92\x1e\xd4\xf4\x2c\x2e\x34\xbc\x26\x6b\xf6\x3c\xad\x17\x30\x54\x81\x71\xab\xa9\xd1\x37\x35\xfa\x08\x57\xad\xe9\xd6\x34\x3d\xb3\x4f\xc7\x52\xdf\x95\xd4\xf6\x05\x6f\x59\x49\x6d\x5f\xd3\xed\x4a\x3f\xda\xd4\x10\x84\xe1\x7e\xc9\xf8\x3d\x0f\x36\x93\xdb\xfa\xce\x66\x2f\x82\xbc\x20\xb8\x8f\xee\xe8\x3e\xd6\xe0\x29\x7e\xaa\x05\x9e\xe2\x01\x85\xb7\x82\xf1\xac\xa6\xf7\x5a\xa2\xc1\x0b\x76\xb3\x9a\x9e\xe2\xe7\x6b\x8f\x62\x56\x4e\xdd\xb0\x53\xd7\x95\xae\xb5\xe9\x6e\x34\x3f\xdf\xc5\x28\x10\x35\x5e\x22\xc4\x8b\x08\xd6\x12\x21\x5e\xa7\xb3\x88\x08\xd6\x3a\xb9\xdb\x2f\x89\xed\x8b\x68\xd5\x3a\xf5\x49\x41\x5c\xdf\x26\xd1\xaa\x75\x82\x28\x29\x51\xde\x93\xb4\x9e\x75\x3a\x3b\x4e\x66\xc7\x24\x32\xb5\x64\xb1\xaf\x93\xe3\xca\xdc\x1a\xf5\x7a\x5c\x11\xf9\x3d\xc9\x83\x50\x52\xd7\xd7\x89\x7d\x37\xb7\xff\xc9\x66\x7f\xba\x31\x9d\x87\xd5\xa1\x38\x32\xdb\xd7\x89\xa9\x37\x09\x66\x2d\x99\xed\xeb\xec\x56\x87\xe2\x9c\x4e\x3c\x41\xe5\x93\x00\xd7\x92\xd9\xbe\xce\xee\xbb\x6c\x1a\xa7\x27\x21\x59\xec\x27\x11\xa9\x75\x7a\x69\x76\x0e\xbb\xa3\xfb\xdc\xad\xcc\x77\x39\x7d\x9c\x7a\x0a\x04\x9a\x4f\xf2\x29\x14\x34\xf7\xab\xb0\x5e\x8c\x82\xd3\x09\x2a\xf8\x7c\xea\x53\x3b\xd3\x7a\xf3\x27\xa3\xcd\x6e\x6a\xb2\xdd\x4f\xfd\x6c\xb2\xdd\x97\x48\xf3\xa9\x9f\xed\xf4\x22\x42\xb6\xfb\xb9\xe1\xc1\x3f\x75\x06\x8b\x3e\x9f\xfa\xde\x44\x9f\x97\xe8\xf3\xb9\xa1\x4e\xe7\x74\xf8\xd7\x64\x2c\xfd\xc3\xa7\x87\xad\x73\xda\x05\x68\x18\x48\xf4\x55\xf8\xb9\x68\xd8\xa9\xf9\x77\x9e\x36\x0f\xa7\x80\xc4\xf6\xff\x37\x63\xe7\x92\xeb\x3f\x6e\x44\xe7\x79\xaf\xa2\x77\x10\x89\x7a\x90\x07\xf8\x23\x93\x8c\x93\x3d\x48\x14\x09\x78\x60\xbb\xd1\xb1\xf7\x1f\xf0\xfb\xee\x24\x9e\xb4\x07\x17\xc2\x2d\x88\x3f\x3e\x54\x2c\x56\x15\x0f\x0f\x1b\xb8\xf4\x25\xa3\x1b\xce\x31\x01\xe9\xd9\xb0\x47\x02\xd2\xdb\xf3\xda\x5d\xfc\x0e\x18\xed\xd7\xc3\xdf\x23\x22\x79\x5c\xfb\x04\xa9\x07\xde\xb4\x26\x48\xbd\x3d\x9c\x66\x0d\x17\x90\xb6\xc7\x9c\xda\xc3\x5e\x47\x80\x08\xb6\xc7\x99\x27\x70\x3d\xe6\xf2\x40\xac\xaf\x07\x9f\x72\x57\x3b\x9d\x79\x60\xd5\x97\x8c\x36\xbb\x01\xf2\x0c\xdf\x23\xc9\xf0\x0c\xdf\x03\x5f\x1b\x30\x82\x4d\x52\xfc\x26\x48\x3d\xc0\x6c\xda\xeb\xba\x24\xb1\x7d\xcc\xef\x49\x6c\xdf\x5e\x4e\x22\x05\x3c\x60\x7b\x9d\x79\x22\xcd\xb3\x63\xa3\x5e\x33\xbf\x6f\xb1\x0e\xd6\x96\xd7\x75\x09\x2e\xfb\x3d\x1c\x71\x6d\xaf\xa9\xdf\xb7\xd8\x3e\xd4\xe5\x75\x96\xbd\x9c\xd7\x0e\x5c\x6a\x4d\xa4\x79\x7b\xf1\xe5\xb2\xa3\x1a\xaf\xfb\xc7\xaf\x53\x86\x4b\x19\x9a\xe8\xf3\xf6\x9e\xbe\x87\x0f\x29\x89\x7d\x7b\x9d\x1e\x46\x92\xaf\xdb\x73\xef\x65\x5b\xf8\xbe\xaf\x29\xdd\x57\x15\xe7\x02\x86\xf6\xaa\xe2\x2f\x49\x81\xc0\x91\xd6\xde\xfb\xe7\xbd\xa1\x6c\x7d\xcb\xd7\xe8\x08\x10\xfa\x92\x05\xd9\xa5\x8c\x6f\xc9\x81\xd5\xf6\x56\xc7\x14\xff\x2e\x5c\x22\xda\x5e\xf7\x45\x5e\x8e\x22\xc5\x44\x9f\x28\xf5\xf6\x92\x50\x08\x97\x2d\xb4\xd7\xa9\xf0\xb2\x2f\x12\x93\x7a\xaf\x39\x62\xd9\xee\x03\x1e\xb0\xbd\xfa\x77\x22\xd2\x53\xd8\x69\x12\x69\xde\x40\x9a\x9f\xdc\x15\xd4\x5e\x37\x90\x01\x92\x9f\x90\x41\x34\xc1\xe2\x0d\xb0\xf8\xe9\xe2\xfa\x1a\xfd\x03\x0f\x3f\x1b\x3a\xfa\xaa\x7b\xef\xb2\xfa\x67\x1c\x12\x55\x0f\x54\xf8\xe9\xca\xfa\xaa\x79\x30\xc9\x9f\xdc\x1c\xd4\xba\x8a\xd2\x97\x89\x3e\xa1\x72\x68\x5d\x9f\xa6\xef\x37\xa2\x1b\x11\xbf\xd5\xcb\xbe\x44\xf4\xa8\x1b\x6b\xf7\x65\x92\x4f\x17\xc6\xae\x92\xf4\xe5\xbc\xc8\xe7\xd9\xba\x96\xb8\x2f\x4b\x2c\x9d\x67\xeb\x06\xda\x50\xc4\x9f\xae\x94\xdd\x38\xbb\x6b\x54\x0b\x2b\x60\xd7\xa8\x4a\x03\x1f\xd3\x91\x5d\xad\x11\xa9\x1d\x50\x8b\xad\x73\x8e\xa1\x49\x0d\x1f\xae\x98\x68\x52\xc3\xb7\xce\x31\xd0\x70\x1e\xa3\x75\x8d\x6f\xbf\xfc\x7a\x58\x9e\xee\x5e\x5a\xd7\xa8\x16\xd2\x23\xdd\x34\x14\x34\xf0\x7b\x0a\xde\x6f\x77\x27\xb7\x83\x0a\x4c\xe1\xbb\xf4\xea\x28\x01\x4f\x48\xc1\x9b\xe9\x6e\x2c\x74\x82\xea\x1c\x58\x8a\x6e\x1a\xaa\xb3\xc3\x16\x53\x8f\xdd\xe8\x41\x18\x77\x60\x90\x6b\xf2\xc0\x37\x90\xdb\x4b\x46\xdf\x4c\xb5\x76\xad\xe5\x41\x84\x22\x8c\xbb\x41\xfd\xbe\x64\xbc\x67\x00\x0d\x72\x7b\x0f\xa7\x6d\x5b\xd7\x5a\x76\xbc\x94\x98\xa2\xec\x7a\xec\x9d\xe8\x35\x87\x9f\x43\xef\xbc\xe3\x2f\x84\x6b\x22\x5a\x57\x4f\xc0\x46\xef\xe1\x2c\x6c\xeb\xe2\x09\xfa\xb4\x7d\x2c\x18\x5d\xaf\xbb\x4f\xdf\xe3\x7b\x7c\x7a\xd8\xb2\xb0\xe7\x20\xf2\x80\x7e\x7d\x3d\xec\x07\x90\x0f\x91\xd2\xed\x23\xbd\x99\x03\x8f\xf3\x33\xda\xfc\xf4\x0d\x0e\xb6\xe2\x3e\x35\xe8\x03\xe6\xc7\x31\xd0\xf6\xe9\xd4\x7e\xcb\xa9\xbd\xcf\xeb\xaf\xf1\xf5\xed\xd3\xe5\xfd\xb8\x62\x1d\x98\x5a\x13\x09\xdd\x3e\x22\xc7\x1c\xac\x1c\x9f\xe9\xc6\x4f\xcb\x72\xb0\x4a\x7c\xa6\xd9\x01\x3a\x2f\xd9\xea\xf7\xa7\x65\xf9\xd4\x07\x53\x9a\x9f\x56\x44\x84\x73\xb8\x45\xa2\x7d\xcd\xb6\xbb\x78\x42\x29\xd7\x3e\xbf\xfd\xa7\x15\xe1\x76\x88\xf6\xe9\xc9\xca\x76\x9e\x93\xfd\xbc\xcf\xd4\xfb\xa7\x3e\x70\xc6\xb6\x49\x77\xde\x3e\x38\x1e\x02\xcd\x5c\xfb\xdc\x69\xfa\x48\xbd\x87\x5b\x52\xdb\x67\x92\xe5\x7b\x6c\x1f\xf3\x55\x24\x74\x03\xfc\xbc\x64\x37\x32\x74\x09\x76\xf4\x3d\xdc\xd1\xd8\xa4\x40\x6f\x22\xa1\x73\xb2\x4a\x88\x84\x6e\x5f\xf7\xf7\x58\xc9\x3f\x23\x42\xe9\xce\x63\x4a\xf3\xd3\x45\xfd\xfa\xfc\x9f\xbf\x8b\xf2\x6b\xb2\x9d\x37\xd9\xce\x03\x7d\x5c\xfb\x54\xb9\x6f\x79\xaa\xf5\xa7\xa4\xf6\xeb\x53\x0b\x4f\x66\xf1\x67\x3c\x08\x0f\xfa\x1e\x13\x9f\x9f\x89\x4a\x78\xd0\x97\x8c\x9f\x03\x07\xdd\xc4\x41\xe7\xc4\x7f\xf8\xf4\x5a\xbf\xf9\x53\x96\xaf\x66\xbe\x04\x6c\x74\x3d\x09\x7b\x3e\x37\x57\x85\x46\x07\x7c\x60\x13\x1a\xdd\xe4\x49\x0f\xf8\xc0\x26\x4f\x7a\x1b\x9b\x03\x4f\x92\x73\xb8\x95\x35\x36\xab\xc5\xb9\x1d\x2a\xb5\xdc\xe9\xe1\x20\x6e\x1b\x6e\x6f\xc9\x93\x1e\x2e\x91\x68\x42\xa8\xdb\x20\x3f\x1f\x2e\x91\x68\x42\xa8\x9b\x3c\xe9\x11\x33\x38\x54\xfe\xa1\x23\x6b\x42\x73\xb8\xbb\x3a\x5c\x76\x05\x03\xca\x93\xde\xc6\x61\x1d\x98\xf1\xe1\xf6\x16\xe8\xea\x25\xa3\x7d\xa6\x55\x40\x57\x57\x53\xba\x52\xa7\xb7\x41\x84\x18\x73\x9c\x43\x9b\x3a\xd8\x70\x8d\x98\xc1\xe1\x7c\x81\x4e\xbd\x9e\x4c\x17\xd9\xd4\xdb\xd0\xcc\x5e\x07\xa3\xa7\x99\x1d\x97\xad\x63\xa1\x1b\xa6\x38\x07\xe9\xcc\x5c\xa8\xd9\xd0\x77\x1d\x2e\xec\x9c\xe1\x6d\xc3\x85\x5d\x40\x76\x4c\x85\xc2\xb7\xbe\x1e\xaf\xb2\xf5\xc1\x47\xf5\x3d\x6e\x70\x8d\xa9\xd0\xa1\xef\x3a\xf4\x5d\x85\x1b\x0e\xa7\xdf\xd0\xf4\x0a\x37\x1c\x9a\x54\xf0\xd6\x7b\x20\x9e\x6b\x83\x83\x03\x0d\x06\xf5\x3d\x90\xcc\xb5\x61\x30\x28\x75\x7a\xcc\x71\x0e\x83\x41\xa9\xd3\x73\xa9\x2d\x9a\x59\xa9\xd3\x23\x04\x71\x18\x0c\x8e\xd7\xaf\xeb\x58\xe9\xa8\x4a\xa7\x9e\x4b\x0d\x32\xf0\x1b\xaf\x5f\x08\xd3\x32\xcc\x53\x0e\x50\x0b\xe1\x30\x6f\x1b\x26\x1d\x07\x49\x95\x40\x46\xd7\x86\xd9\xfe\xa1\xb3\x29\xde\x70\x98\x74\x1c\xc0\xc5\x62\xc2\x52\x8c\x77\x1b\x64\xfb\x73\xab\x05\x4e\xa2\xa1\x03\x2a\x68\x70\x18\xfa\x49\xb1\x1e\x2e\x75\x68\xc3\xa4\xe3\x20\xa9\x92\x9b\xe5\x62\x3a\x3b\x26\xc9\xc4\x98\x88\x14\xd5\xdd\x40\x72\xef\x31\xe9\x28\x4d\x7a\x9b\x9a\x72\x0e\xe4\xb6\xa9\x03\x0a\x4d\x7a\x0e\x86\x7e\x3a\x11\x26\x79\x91\x88\x23\x9c\xee\xdf\xca\x9c\x9e\xfb\xe7\x3d\xab\x28\x76\x8d\x15\x64\x1e\x96\xd5\x27\xe5\xc2\x85\x26\xc3\x7a\x9b\x87\x4d\xe6\xb3\xc9\xb0\xde\xe6\x61\x53\xf0\x2b\xa7\xf9\x13\x59\xd7\x23\x6a\x70\x9a\xc5\x17\x3d\x9e\x9b\xcf\x36\xcd\x39\x4e\x7d\x57\x73\x98\x53\x2f\x64\xb2\xf1\x15\x2e\x66\x68\xd3\xcc\xbe\xf0\xf1\x70\xe6\xb7\xc9\xa1\xde\x84\x8f\x07\x7e\xba\x36\x5d\x39\x66\xe5\xd6\x23\x16\x47\xa1\xe0\x0d\x28\xb8\xdc\x11\x6d\x9a\xc3\x07\x10\x2e\x75\x44\x93\x18\xbd\x4d\x6f\x55\xb2\x5f\x7a\x0c\x40\xbf\xef\x03\x3b\x35\x35\xfc\x53\xc3\x2f\x00\x71\x6a\xf8\x61\x38\x5f\x32\x2a\xe0\x18\x41\x9b\x68\xf2\x6e\xcb\x54\x50\x59\xcc\xc3\xb1\xe0\x26\x8b\x79\x93\xc5\x3c\xb0\xdf\x35\xe1\xdd\x6d\x92\xad\x88\x38\xc5\x29\x6a\x6c\x92\x45\x4c\x65\xd2\x83\xeb\x5e\x0f\x46\xb8\x12\xec\x0a\xe5\x6e\x42\xb9\xc3\xb1\xe0\x36\x55\xd0\x69\x84\x54\x99\xf4\xd3\x6d\xa6\xa9\xf5\xae\xd7\x7f\x11\xbf\x4f\x5d\x91\x09\x32\x2c\xe2\x18\xa7\x09\xc0\x39\x6d\xea\xed\x4f\xab\x83\x5a\x7c\xc8\xf6\x22\xaa\x3b\x12\x95\xa7\x2e\x3b\x11\x89\xc5\xb3\x19\x18\xc1\x9c\x17\x20\xd9\xeb\xe1\xef\x2d\x25\x0c\x98\xec\xf5\xb0\xf9\x6d\x47\x76\x28\x3b\x95\x51\x16\xaf\x37\x70\x8e\x5f\x59\xeb\x5b\x44\x70\x47\x04\x77\xc8\xa9\x46\xae\xf1\x6c\x7a\xc2\x1c\x42\x8e\x5c\xe3\xd9\xb4\xd0\x75\x99\x8e\x6c\x38\x34\xd9\x4e\xcb\x86\x6e\x60\xa1\x03\xe5\xb8\x34\x65\x91\x56\x3c\xdb\xf5\xf3\x1a\x3f\x47\xda\x3b\x1b\x69\xef\x40\xce\x17\xb8\xc3\xd7\xa3\x2b\xa3\x79\xb7\x4d\x21\x85\x17\x90\x91\xd9\x9a\x4d\x01\x25\x93\xb6\x1c\x95\x6c\x38\x2f\xd9\x48\xc3\xa5\x15\x46\x80\xfd\xd3\x6c\x5a\xd4\x76\x50\xf6\x71\x44\xd5\xc3\x76\x30\x2a\x8f\x23\xaa\x45\x6d\x07\x6d\x79\xfd\x3d\x28\x92\x03\x7c\x31\xf0\x7f\xff\xca\xa6\x82\x91\x2a\xcd\x46\x60\x94\x8d\x1d\x9d\x00\x69\xcc\xd6\x1d\x16\xad\x67\x3b\xe9\x2f\x4e\x6f\x36\x15\x91\xc3\xca\xd9\x3e\xdb\xf2\xd9\x8f\x8b\x7a\x3f\xcb\x6a\x51\x81\x34\x06\xd4\xf7\x7a\xd8\xe6\x9b\x36\x0f\xc7\x54\xeb\xd9\xd4\x96\xa9\x16\xe8\x1c\x83\x5f\x0c\x3c\xe1\xeb\xe1\x38\x57\xda\x3c\x2d\xab\x46\x82\x5f\x8c\x28\xf1\x88\x12\x4f\x43\x83\x44\x84\x47\x44\x78\xc0\x2f\x66\x07\xd3\x98\x7d\xff\x79\x6f\x7d\xa3\x7d\xf7\xbd\xdd\xf7\xa2\xec\xe7\x3d\xfb\xcb\x37\x17\x12\x9e\x5d\x7f\x83\xf8\x30\xbb\x1a\xbe\x83\x07\x08\x01\x62\x76\x8e\x6c\x65\x57\xc3\x89\x10\x23\x5d\x78\x76\xfd\x0d\xd2\xac\xd9\xf1\x37\xb2\x03\x6a\x0c\x60\xc5\xc0\x27\xbe\x1e\x8c\x55\x0a\xef\xb1\x3d\x13\x98\xc4\x2b\x7e\x6d\x64\x10\xcf\x7e\x59\xed\x41\x77\x2f\xab\x35\x36\xe3\x74\x71\x84\x8e\x67\xbf\x6c\xca\xc1\xcf\x5d\x76\xc3\x78\x0d\x04\x63\x76\xd5\x79\xd7\x69\x00\xc1\x98\xbd\x3a\x04\x46\xf4\x9c\x38\x0e\x98\xf1\xf5\x18\xab\x29\x85\xde\x36\x47\x5e\xff\x80\x64\x6c\xc0\x8c\xaf\xc7\x54\x46\x93\x63\x93\x63\xcf\x6e\xde\x8b\xa3\xa2\x1f\xc1\xc1\xe4\xec\xb1\x8a\xc7\x51\x46\x33\xc0\x91\xaf\xc7\xb1\xaa\x3d\x14\x39\x50\x2a\x7d\x2a\x2d\x7e\x7e\x8a\x32\x50\x76\xec\xb5\x75\xe0\x08\x42\xe2\x35\x52\x8a\x47\x80\x79\xa2\xae\xbc\x0e\x94\x5e\x44\xd4\x95\xcf\x5a\x97\x9a\x87\xf4\x71\xa4\xf8\x8e\x14\xdf\x21\x17\x1b\x80\xe5\xbf\x22\x96\x3c\xc0\x17\xb3\xe3\x1c\x04\x2c\x79\xd9\x36\x55\x65\x58\x76\x9e\xca\x28\x3b\xad\x76\x19\xd2\xb2\x6d\xa8\x00\x88\xf1\xf5\x38\x90\xad\xa5\x26\xf0\x78\xaf\x47\x55\x76\x23\x7b\x94\x75\x65\x94\xdd\x2d\xbb\x5b\x16\xf3\x50\x70\x22\x52\x96\x2a\x2f\xd9\x85\x0c\x1d\x28\xa5\x20\x3b\x79\x4f\xb5\x85\xd5\x7b\xc9\x56\x3f\x0a\x6c\x53\x29\x87\xef\x31\xc5\x8b\x46\xb8\x1c\xf6\x6d\x45\x1e\x29\xaa\x32\x58\xf3\x25\xa3\x2d\xa7\x65\x4f\xfb\xbb\x16\x8e\x80\x2e\x5f\x0f\xfb\x71\xf3\x7b\xa7\xfd\x38\x2d\x8b\x55\x97\x0a\x3c\x60\xcd\xcb\x46\x22\x34\xe5\xb2\x6f\x97\xbf\xc7\x62\x52\xd4\xf9\xb2\x74\x7e\xc9\x28\x4b\xe2\x37\xe5\xb2\x1f\x95\xb6\xa8\xf3\xe5\xde\x91\xf1\xc9\xa5\x11\x0f\x34\xe2\x4b\xc6\x38\xe3\x3c\xa7\x2c\x47\x79\xc9\xf8\xbd\xdb\xdf\xbb\xbf\xa5\x06\x2c\x26\xe5\xb6\x79\xd5\x61\x66\x31\x11\x94\x9e\x52\xed\x1a\x6a\x00\x1a\x7d\x3d\xc6\x92\x91\xf4\x0c\x68\xf4\xf5\x28\xca\x18\x82\xe6\xb0\xb4\x4f\x19\x65\x9b\x4d\x0e\x43\x40\xd2\x33\x85\x4d\x98\x40\x19\xbe\x64\xb4\xc5\xf9\x52\x82\x0a\xed\xe5\xaf\x71\xf6\x81\x4a\x7c\x3d\x6c\x02\x46\xa6\x3c\x56\xf7\x5a\xdd\x41\x53\x5f\x47\xfc\xbd\x95\x31\x42\xaf\xd5\x75\xdf\xc3\x52\x48\x0b\x1e\xa0\xeb\x4b\x46\xf3\xfb\xcf\x7b\x76\x9d\x05\xa3\xb0\xaf\x99\xf2\xed\xca\xf8\x82\x9f\x5f\xe1\xeb\xca\x18\x8e\xe1\x7b\xc3\xf6\x61\x02\xe0\x08\x5f\x0f\xdf\x63\xbe\x0b\x6e\x0f\x78\xf6\x25\xe3\xf7\x5c\x1c\xa0\x0a\x5f\x32\xda\x32\x6d\x8b\xb3\x8c\x3b\x27\x72\x38\xcb\x8e\xcd\xb2\x4c\xf8\xc3\x05\xe3\xe0\x78\x3a\x91\x53\xe0\x12\x5f\x8f\x9f\xa2\x6b\xc4\x01\xbf\xaf\x07\x8a\xc8\xdd\xb5\x39\x9c\x64\xc7\x5e\x95\xf9\x5e\x57\xc6\x10\x70\xe4\x3a\xd2\x87\xe7\x28\x97\x32\xaa\x2d\xd6\x51\x1e\x65\x94\x2d\x96\x75\x32\x42\x30\x9c\x43\x2f\xe9\x38\x76\x65\x07\xb2\x53\x99\xbf\xb7\xf3\x7b\xba\x44\xe0\xe8\x97\x6c\x0d\x81\x60\xf9\x00\x96\x2f\x1b\x58\xca\x1c\xba\x3f\x60\xe6\x97\x8c\x7e\x38\xf1\x60\x11\x2f\x1b\x47\xb3\x23\x80\x3e\xc7\x55\x95\xf1\x9e\x3e\xd1\x71\x59\x76\x45\xa3\x39\x9c\x78\xc7\x6d\x59\x7c\x8e\xc3\x85\xe5\x58\x0b\x4b\xd9\x0a\xab\x83\x48\xfb\x1c\xf7\x54\xb6\xd4\xea\xc0\xa5\x0f\xd4\xe3\x4b\x46\x1d\xd5\xcf\x51\x99\xdc\x24\x2f\x73\x90\x1c\xcc\x51\xed\xdb\x6d\x59\x54\x17\xa6\xf2\x25\xa3\xac\x3e\x16\x14\xe5\x65\x2b\xa8\x0b\x58\xfc\xf5\xf0\xf7\x50\x17\x21\xf9\x39\x9a\xdf\x08\x6f\x14\xbe\xf2\xf5\x70\xac\x30\x20\xc2\xef\x03\xf5\x78\xd9\x20\x1e\xcc\xe1\x12\x74\x3c\xbe\x17\xca\xbe\xf6\xe3\x45\x75\x0f\xbf\xb9\xeb\xcd\xf1\x56\x65\xb4\xf9\xf5\xf7\xde\xa1\x8c\xdf\xeb\xd6\xdb\x2d\xbb\x33\x7e\xdd\x3a\xfa\xad\x8c\x3a\xba\xdf\xe8\x63\x0a\x72\x25\x46\xa4\x1e\xcf\xf1\x5d\xca\xe8\xdb\x67\x1d\xdf\xab\x8c\x71\xf9\xfc\x46\xdf\x32\x66\x9c\x09\xcc\xe1\x5a\x75\x0c\x9b\xc7\xcc\x3f\x74\xcf\x0e\xd7\x2a\x18\x05\x23\xae\x3e\x87\xb3\x88\x1c\x67\x64\x1e\x0f\xcc\xe3\x65\x03\x4a\x99\x93\x3d\xcc\x9c\xdb\xa3\xac\x21\xeb\xca\x2c\x8b\xdd\x3f\x49\xe9\xe4\x74\xca\x1c\xd8\xf8\x53\xb7\x0b\x02\xf2\x25\x3b\x90\x0d\x65\x96\xa5\xcd\x50\x93\xaf\x87\xdd\x65\x96\x9f\xec\x75\xe6\x5c\xf1\x85\x39\x93\x88\xbf\xcf\xe9\x2c\x3a\x88\x21\x4e\xa0\x6c\x39\x9d\x45\xdc\x8f\x1b\xb1\xf6\x01\x6b\x5f\x36\x2e\xc3\xcd\xe9\x92\x76\x3a\x8b\x48\x63\xe6\x3c\xed\xee\x79\x28\xa3\xac\x81\xc5\x79\xa2\x55\x27\x36\xfe\x24\xf5\x93\xf3\xda\x95\xf1\x9e\xb3\xe8\xbc\xe8\x06\x29\xcb\x9c\xb7\xdd\xb8\x19\x3e\x52\x91\x39\x9d\x31\xe7\xfd\x28\xa3\xac\xeb\xcd\xe9\x8c\xe1\x10\x72\x4e\x80\x00\x39\xeb\xad\x8c\xfe\xea\xb2\x01\xcd\x2f\x1b\x87\x90\x23\x53\x79\x60\x27\x5f\x32\xca\x3a\x3b\x80\xe6\xdf\xd5\x6e\x18\x80\xc0\x54\x7e\x03\x07\x89\x30\xfd\x9c\x6b\x3a\xdc\x86\x38\x22\xf2\x73\xa6\x2f\x11\xd1\xcc\xf9\xd8\x8e\x35\x19\x64\x54\xca\xe9\x5a\x02\x04\x5f\x42\xa5\x9c\xce\x81\x73\xc5\xbd\x37\x48\x90\x9c\x86\x28\xe7\x4b\x8d\xf6\xd3\xc8\x03\xac\xfd\xcd\xd9\xac\x48\x3d\x9e\x73\xe9\xf7\xdd\xf0\xe9\x4e\x97\x0c\xd0\xf7\x65\x83\x84\x30\xb2\x91\x07\xf4\xfd\x6d\xb8\x73\xea\x97\x9d\x83\x56\xb0\x28\x9d\x43\xd5\x5c\x1a\x7f\xb7\x8b\xb7\xd8\xc1\xcf\x39\x1a\x22\x7e\x6b\xfc\x14\x9c\x88\xa8\x72\x5a\xe5\xa4\x20\x96\xe8\x9c\x36\x7f\xd2\x7c\xd6\xa8\x8b\x04\x67\xae\x8d\x46\x60\x73\x2e\xd7\x8f\x6b\xa3\xdf\xe8\xb3\xe8\xfd\x5c\x1b\x3f\x8f\xc5\xb9\x74\xdb\x00\xef\xdf\x0d\x6d\x96\xd2\x3c\xd7\xce\x5b\xed\xaf\x61\xf5\x01\xaa\xbf\x1e\x2f\x25\x56\xb3\x2f\xdd\xb7\xeb\x60\xf0\x42\xed\xaa\xfa\x75\xd0\x5f\x1c\x58\x21\xfc\xb9\x56\xd4\x7c\x67\x5b\x1f\x55\x88\x7e\xe0\x3c\xbf\x39\x96\x95\xcb\x95\x01\x50\xfe\x6d\x50\x73\xe9\x91\x5d\xcb\x23\xbb\x81\x98\xe4\xba\xfc\xf9\xb5\x3c\xdc\x9c\xd3\x8a\x44\xe7\x01\xa5\x7f\x1b\xe5\x5c\xea\xfd\xb5\xf4\xfe\x4e\x29\x88\xac\x71\x39\x5b\x37\x5b\x68\xb9\x5c\x13\x2e\xd2\x3c\x20\x49\x72\x55\xdf\xaa\xcc\xfb\xd3\x21\x66\xcf\x20\x97\x4e\xd6\xe9\x18\x37\xdf\x6b\xbe\xc7\x8a\x7f\x81\x7e\x09\x5c\xe7\x4b\xc6\x7b\x24\x32\x73\xa5\x2a\xa3\x71\x9a\x7a\x90\xf7\x65\x23\x4d\x1d\x49\xce\x73\x3d\xbc\x47\xfa\x39\xd7\x63\xbf\xde\x5d\x19\xed\x23\xff\x93\xeb\xbd\x94\xf1\x25\x5f\xeb\x7d\xa9\xf7\x72\x98\x34\xf5\x97\xa6\xfe\x72\x9c\x34\xf5\x57\xb7\x2c\x21\xe2\xa5\x17\x75\x75\x26\x3e\x69\xea\x08\xcd\xcf\xf5\x1d\xca\x28\xfb\x59\x87\xa6\x1e\xdc\x6d\x64\x3e\xcf\x35\xe8\x07\xe7\xd3\x73\x19\x8a\x5f\xe3\x54\x86\xf2\x0d\xfb\xa6\xfd\xd7\x70\xca\x7c\x9e\x6b\x45\xdf\x57\xbd\xd7\xb0\x00\xbf\x5f\x8f\x73\x89\x18\xe5\xdb\x08\xe4\x5e\x0a\x7d\xc1\x13\x97\x5b\xa3\x0e\xc4\xfe\x32\x69\x03\xce\x7e\x3d\x1e\x44\x4b\xe3\x44\xd1\xe7\x2e\xd8\x4c\x8e\xbf\xe7\x26\x39\x99\x5b\x5b\xcd\xc9\xe7\xdc\xda\xea\xfb\xb0\x0b\x78\x05\xb7\x91\x34\x64\xe6\x4b\x46\xdb\xd4\xcd\xfb\x74\x98\xf0\x00\x6e\x13\x39\xb7\x9e\xcc\x65\x1f\xd4\xce\x5b\x4f\x06\x58\x6f\x64\x2e\xcf\xad\x27\x03\x86\x37\xf7\x6d\x2f\xee\x5b\x19\x65\xf5\x5a\x6e\x6d\x30\xb9\xec\x48\x53\x9e\xbb\x76\x65\xf4\xad\xda\x16\xed\x2d\x79\xeb\xdc\xb1\x2d\xa1\x2d\x90\x50\xe6\xd6\x6f\x07\x09\xbf\x64\xeb\x53\xdc\x8f\x63\xf0\x50\x07\x97\x11\xe7\xd6\x4c\xde\xb0\x3c\x5d\x24\x68\x6e\x93\x36\x00\xdc\xcb\x46\x3a\x3a\x77\xf7\x5b\xe8\x83\x73\xef\x70\x6e\x6d\xe7\xad\xbf\x0d\xdf\x64\x6e\x8d\xe7\xad\xf1\x84\x6f\x32\xb7\xda\x73\x7f\x4d\x19\x4d\xf9\x6c\xde\x67\x53\x8e\xa5\xc9\xb7\xe6\xf3\x56\x53\x48\x65\xe7\xd6\x2f\xbf\xc7\x50\x46\x5b\x4c\xe4\x80\x73\x2f\xdb\x8d\xd3\x77\x4f\xcb\xea\xab\x83\xb3\xcd\xad\x09\x05\xe1\xbe\x64\xab\xac\x4c\xe3\xa9\x46\xbf\x37\x9f\xb7\xaa\x67\xd5\x48\x17\x9c\x6d\x2a\x3c\x67\xa9\x7b\x51\x76\x21\x3b\x95\x59\xc7\xdd\x90\x55\x65\x8e\x0b\x5e\x86\x48\xf8\x00\x7e\x5f\x32\xea\x35\xfa\xad\xaa\x24\x07\xe5\x53\x55\x49\xe8\xc7\x97\xcc\xf7\x86\x32\xc7\x05\xf7\xa1\x9a\xaa\xac\xba\x0f\x5c\x3c\x1c\xe0\xee\xeb\x61\x59\x0c\x6d\x35\x2f\x59\x4f\xc7\x85\x20\xa1\xea\x3e\x54\x23\x62\xf2\xdb\xa9\xc0\x9e\x52\x75\x1f\x38\x51\x9f\x7a\xd9\xb7\x8b\xbe\x71\xc9\x70\xea\x65\xdf\xae\xa6\xac\x22\xeb\xca\x3e\x65\xd4\x61\xa4\x5b\x6f\xbe\x39\x18\xdd\x54\xdd\x0c\x00\xf1\x4b\x46\x7f\x4d\x60\xd6\x5a\x94\x51\xaf\x4e\x78\xd5\xa5\xa8\x87\x32\x74\xa3\xaa\xe2\x64\xa5\x23\xec\x3d\x40\xdc\x97\x8c\x7a\x55\x7b\x20\xee\x55\x35\xad\x1a\xdc\xaa\xc1\x85\xab\x32\xf2\x90\xa7\x1a\xc1\x92\x61\x4e\x35\x44\xad\x86\xa8\xd5\x4f\xa9\xbf\x5d\xf5\xb7\xab\x9f\xd2\xdc\x27\x08\xf7\x25\xa3\x6b\xe6\x7c\xaa\x86\x99\x0b\x85\x53\x5f\xeb\x7d\xf9\x1c\x66\x98\x45\xb8\xa7\x6a\x84\x4d\x13\x57\x8d\x70\xd5\x08\x9b\x12\xae\xdd\x3a\xba\xc3\xec\xa7\xd4\x30\xd7\xcf\xb2\x7e\x4a\xf3\xa1\xd5\x69\xa4\xc3\x54\x4d\x18\x55\x0d\xb3\x1e\x53\xd5\x30\xd7\x71\x29\xfb\x6b\xf6\x9b\x54\x73\x47\x75\x45\xbf\x77\xf1\x03\xea\xa5\x40\x71\x5e\x36\x33\xc6\x82\xd9\x53\xe7\x50\xb6\x14\x42\x9a\xf2\x00\x48\x8f\xfa\xdf\x9c\x27\x6d\x47\xff\xb9\xce\x25\x4d\x2b\xdd\x9c\x27\x5c\xe7\x92\xa6\x0f\x02\x5d\xf9\x92\xad\x8e\x43\x5a\xbe\x1e\xcc\x4f\xce\xbb\xa7\x99\xd2\x6f\xce\x13\xae\x7d\x89\xdc\xe5\x69\xce\x13\xbd\x28\xb9\xcb\xd3\xcc\x1c\xe9\x46\xc9\x53\x9e\xa6\x39\xe7\x20\x7b\x9a\x0e\x49\x33\x58\x35\x11\x2c\x6e\x3d\x10\x95\x2f\x59\x43\xc6\x40\x82\x5b\x2f\x1b\x0c\x95\x11\xb7\x9e\xa6\x89\x37\xc1\xdb\x9c\x13\xcd\x39\x01\x22\x28\xcd\x8c\x50\x33\x23\xa4\x6f\xd4\x9c\x27\xcd\x79\xa2\x73\xd4\x40\x33\xa4\xe9\x8e\x9b\x08\x6e\x2e\x05\xed\x66\x98\x83\xcb\xdf\xf4\x9f\xdb\xf2\x9f\xeb\xee\x90\xea\x2c\x03\x47\x97\x4d\x2e\xcd\x94\x7e\x5b\xaa\x5e\x77\x07\x54\x4d\x6f\x0f\xa7\x81\x70\x53\xc5\xa7\xa7\xad\xa5\xa1\xee\x0e\xf1\xe3\x30\x3d\x74\x41\x5f\x4b\xc8\x7a\x20\x29\x0f\xac\x46\x69\xaf\x5f\x56\xff\x03\xb2\xcb\x34\xfd\x0f\x10\xeb\x65\xcb\xcf\x7b\xf6\xc0\x15\x84\x33\xf1\x69\x66\x71\x40\xa2\x97\x4d\x7f\x0b\x72\xf2\x5f\x69\x86\x9a\xe6\x8a\xe5\x28\x0f\x1c\xe5\xf2\x37\x47\x70\x7a\x00\xa7\x97\x0d\x84\x52\x9a\xd1\x27\x18\xf5\xfb\xf2\x3b\x18\x7c\xb6\xcf\x1a\x1c\x11\x3d\x92\x66\xa6\xd4\x2c\x73\x53\xdb\x61\x2d\x8f\x59\x2e\x09\xca\xd3\x5c\x52\xa2\x8a\xe9\xa4\x34\x53\x3d\x1c\x93\x8f\xd0\xf4\xc4\x80\x94\x23\xf1\x91\x64\x3c\xa0\xd1\x97\xac\x21\x1b\xca\x50\x4f\xf7\x79\x84\xa1\x27\x06\xa4\x00\x77\x13\xa7\x05\x5c\xe3\x4b\x46\x59\xf3\x3a\x31\xa1\xca\x99\xf8\x48\x3c\x9e\x38\x55\x00\xf3\x46\xb8\x7a\xe0\x1f\x5f\x32\x7e\xcf\x88\x34\x7a\x39\x5c\x4b\x9c\xe8\xe5\xc4\x24\x2b\x67\xe2\x13\xf3\x3a\x71\xaa\x70\x2d\x71\x02\xc0\x2b\x59\x81\x69\xd9\xb9\x8e\x26\x31\x22\x05\xb5\xbe\x64\x15\x99\xfd\x65\x49\xd9\xb9\x7a\x26\xc2\xd5\x03\x4f\x79\x38\xf9\x9c\x18\xa4\x86\x1c\xeb\xce\x99\xf8\xc8\x4f\x1e\x28\xc9\x97\x8c\xf7\x9c\x29\x00\xd9\xcb\x6e\x3e\x5a\x04\x7b\x20\x23\xbf\x5c\x90\xa3\x1b\x1e\xb2\x35\x3b\x47\xe2\x23\xef\x78\xe0\x1d\x5f\x32\x8a\x9a\x5d\xc9\x5a\x1b\x2e\xd7\xde\xb8\x35\x00\xb6\xfc\xba\x1d\x63\xe7\x4e\x96\xc9\x5f\x25\x69\x88\x4e\x38\x68\xf2\xb2\x6f\xcc\x8b\x38\x2f\x20\x1a\x5f\x32\x5a\x62\xf8\x09\x9a\x7c\xc9\x18\x4f\xed\x7f\xfa\x8f\x8c\x3a\x74\xa3\x82\x73\xbd\x9b\x64\x96\x1a\x3c\xe0\xbf\xcb\xce\xb5\xc2\x89\x2a\x0a\xae\xbb\xec\x5c\x21\x9c\x68\x7d\xc1\x75\x97\x9d\xcb\x5e\x12\xd3\x91\x30\x7f\x2f\xd9\xea\xed\xa3\x3b\x03\xae\xbb\xec\xd0\xc3\xe5\x51\x1f\x1f\xdc\x99\x1d\xe8\x6a\x1e\xdd\x19\x58\xbe\x97\x8c\xf7\x74\x5d\x60\xf9\x2e\xbb\xe9\xd7\xc7\x04\xc9\x43\xae\x70\x07\xba\x9a\x47\xb3\xfa\x1c\x96\xa5\xbf\x8f\x66\x15\xd4\x75\xd9\x77\x76\x5b\x9e\x93\x7e\x3c\x2b\xb6\x0b\x47\xa2\xf3\xa8\x2a\xe0\xac\xd7\x6b\xfc\x1c\x47\xb1\xf3\x9c\x36\x8f\x61\x81\xc2\x7b\x3d\xec\x06\xde\xbf\xac\xdd\x01\x7b\xbd\x64\x41\xd6\x95\x39\x04\x2c\xb3\xa0\xad\xd7\x63\x57\x46\x37\xf4\x3e\x9e\xdb\xb2\x58\x87\x47\x4f\x03\x80\xf5\xbd\x11\x17\x8b\x9b\xce\xc3\x2d\x6b\x30\x97\xe6\x61\xbf\x3e\x20\xa5\xcb\xce\xf9\xf5\x80\x8d\x5e\x8f\x83\xd7\xe8\x84\x99\xf2\x27\x8e\x09\x39\x5a\x21\xd2\x01\x22\x7d\x83\x72\xce\x03\x68\x25\x0f\xd7\x9d\x00\x72\xce\xe3\x5e\xd3\xf3\xf0\x63\xfe\xbe\x4a\xf6\x3c\xd4\x69\x22\xf7\x31\x37\x0e\x66\x7a\xc9\xa8\x40\xab\xfa\xbc\x28\x54\xf9\x6f\x16\x76\x88\xbc\xd7\xe3\xb4\x08\x6d\xef\x0e\x4e\x7f\x94\xf1\xa1\xdc\x7f\x85\xea\x5b\xe6\xa9\x3c\xba\x20\x4f\xb7\x55\xe4\x54\x1e\x8d\xee\xf3\xfd\xc8\x68\xd5\xb0\xa5\xc3\x96\xaa\x46\x66\x3d\x40\x4f\x2f\x19\x55\x68\x62\xa1\xee\x2e\x3b\x47\xe1\xf3\xe8\xa1\x3f\xd3\x1e\x61\x76\xa5\xee\x0e\xd4\xdd\x4b\x56\x91\x9d\xca\xac\x03\x75\x7b\x4d\x7d\xbc\xaa\x79\x61\x73\xef\x55\xcd\xa1\xf0\x5e\xb2\x86\xcc\xb2\x3b\xba\x60\xaa\xf6\xe5\x38\x76\x00\x5b\x2f\x19\x75\x14\xcb\x16\xf4\xa8\xa0\x5b\xaf\x39\x8f\x17\x73\xba\x9b\x96\x7d\xf5\xc6\x01\x51\x97\x1d\x9c\x69\x80\x52\xff\xca\x7b\x6e\xca\x96\xae\x8a\x9e\xce\xab\x9e\x9b\x96\x7d\xcd\x68\xbc\x04\x8d\x3b\xec\x98\x79\xf5\x28\x5e\x3c\x8a\xfd\xc0\x85\x7b\xdd\x57\x05\x29\xbd\x64\x94\xad\xb6\xaf\x5a\xf6\x50\x66\x59\x92\x74\x3b\xac\x97\x11\x29\x9d\xb7\xd1\x96\x03\x57\xe1\x35\x5f\x01\x02\xba\xec\x5c\xb9\x92\x57\xab\xf8\x86\x71\xe1\xf8\x79\x5e\x55\xf8\x8d\x6d\x76\xfc\xd4\xe1\xf7\xf1\x3d\xe6\xeb\xab\x09\x7c\xd5\x44\x90\x2e\x11\x03\x9d\xb7\xdb\x16\xc7\x40\xb5\x7a\xc9\x25\xec\xdc\x7d\x92\xd7\x68\xf0\xfd\x18\x3f\xee\x34\x89\xe4\xd8\x01\x06\x5d\x76\x7d\x0d\x89\xb0\x03\x11\xf6\x92\xd1\x5f\x57\x6e\xc8\xaf\x53\x99\xd6\x2f\x98\xa8\xc0\x7d\xbd\x5e\x43\x06\x34\x25\xef\xb4\x5a\x02\xd3\xd7\xd5\xfc\x9d\x5d\xd9\xfa\xb9\xae\xaa\x75\xb6\x3d\xf7\x13\x95\xec\x06\x83\x5d\xb5\x3a\xd9\xa5\xe9\xae\xe6\x7d\xb3\x0e\x72\x07\x02\xb0\x03\xe8\x7a\xc9\x56\xbd\xdd\xb4\x71\x67\xdb\x73\x3f\xc9\x09\x74\xd3\xc6\xbd\x58\x07\x9e\x80\xb0\xec\xc0\x7d\xbd\x64\xfc\x9e\x0e\x6d\x3f\x1c\x02\x54\x12\x06\xec\xf5\xe0\xb3\x71\xe2\x3b\xdd\x20\x0f\x3e\xec\x25\x5b\x2a\xd9\x35\xb3\xdd\x15\xd9\x94\x92\x30\xec\x80\xb2\x5e\x32\xca\x9a\x8b\xe8\x17\xf5\x9a\x52\xea\x9a\xcf\x4e\x2e\x62\x07\xe5\x98\xae\x53\x0a\xa2\xba\xec\x1c\xdb\x4e\x37\x47\x0c\x94\xba\xec\xa6\x8a\xba\x81\x1a\x84\xd7\x65\x37\x05\x24\x94\x3a\x40\xa9\x97\x8c\xb2\xe6\x83\x81\x52\xcb\x32\x98\xde\x6c\x0a\xf1\xdc\x0e\x4f\x5e\xba\x4b\x77\x27\x9e\x83\x64\x30\x5d\x3b\x0b\xc6\xba\x02\x04\x4c\x8f\x9d\x55\x6f\x2f\x3f\x9a\xcb\x39\xb4\xd9\xf5\xc2\xb6\x77\x5d\x61\x50\xd7\xf5\x72\x38\xf5\x7b\x21\xcd\xae\x7a\x96\x02\xb0\x03\x00\xbb\x5e\x84\x68\xdd\xf0\xae\x2f\xb7\xb6\x72\x57\x48\x64\xc7\x8e\x4c\xd8\x40\x00\xd3\x0d\xee\x20\xbf\x2e\xfb\x85\x63\xd0\x0d\xee\xfa\x8a\xe7\x2a\xa7\xa1\xd3\xcd\x38\xf7\x6e\x63\xd5\x12\x53\x29\x00\xbc\xe5\x2f\x4c\xd7\xe7\xed\xdf\xcf\xaf\x51\x83\x99\x94\xfe\xad\xae\xdf\x98\x80\xee\xd4\x01\x06\x2e\x7d\x61\xa4\xd0\x0e\x14\xda\x65\xe7\x7e\xdf\x74\xfd\xe0\xbe\xfc\xe0\x7a\x33\x99\xba\x5b\x9e\x90\x6b\xaf\xd7\x68\x9b\x7e\x47\x1f\x7e\x29\x52\x1c\xdd\x64\x1d\xd8\xf2\x25\xa3\x0a\x27\x5d\x1f\x56\xe1\x77\x19\x8e\xdb\xb4\xc1\x6a\xb5\xd1\x61\xd7\x98\x9b\xd5\x12\x68\x9e\x4f\xc3\x0d\xf2\x32\x9f\x33\xec\xdb\xad\x97\x25\xf0\x73\x7f\x13\x50\x79\xd9\x39\x35\x9e\x4f\x83\xfc\x39\x9b\x40\x54\xe6\x13\x0f\xf3\xb1\x31\xb3\x9b\xc1\xfa\xf4\x79\xa1\xdf\x5e\x32\xea\xd5\x67\xf9\x34\xd2\x1c\x01\xcf\xe7\x6c\x82\x7e\xbb\xec\xa6\xa1\x3e\xfd\xdb\x8f\x94\xc9\x6e\x1a\xea\xd3\x8f\xf9\x74\x5c\x6f\x0c\xe8\x67\x7a\xe4\xd3\x71\xbd\xb1\x00\x9f\x89\x67\x98\xb9\xcb\xae\x97\xfa\xc1\x9b\x98\x4f\xc7\xe3\x26\x3e\xf8\x0c\xe7\x3e\x8d\x39\x50\xc9\x7c\x1a\x73\x30\xea\x4b\x46\x5b\xdc\x71\x01\x7b\xbe\x64\x7f\x0d\xa8\x8b\x4c\xdc\x01\x86\x5e\x76\x10\x8d\x91\x75\x3b\x1f\x29\x90\xbd\xa2\x5f\x9f\x76\xfd\xd3\xdd\xe5\x7e\xad\x7c\xba\xbb\xdf\xc3\xa7\x36\x6b\x03\xdd\xf6\x7a\x0c\x65\x34\xcb\xf9\xf0\xbd\x18\x53\x78\x10\x23\x13\x77\xbe\xf7\x51\x46\x37\xf5\x4e\x3e\xd7\x84\xea\xb0\x75\xdf\x53\xaf\xb9\x76\x24\x9f\x69\x0c\xf0\xe5\x65\x07\x04\x98\xef\xb3\x7d\xaa\x62\x45\x3d\x3f\x7d\x08\x10\xe3\x65\x37\x23\x2c\x62\x3c\x1f\x61\xda\x6e\x9a\xe5\x33\xf3\x07\x70\x7c\xc9\x7c\xcf\xdf\x53\x15\x5d\x28\x84\x8c\x67\x6c\x7c\x42\x11\x7a\xc2\xc3\x33\x54\x45\xee\xfa\xc8\x50\x15\x87\xfe\x42\x63\xac\x64\xc9\xce\x28\xec\x1e\x30\x2b\x86\x1e\xf0\x58\x1a\x76\x0b\xfc\x11\xe0\x1d\x00\xde\x65\x87\x4b\x30\x82\xb9\x03\x98\xfb\x36\x96\x1b\x5a\xeb\xc1\x39\x07\xe8\xcd\x32\xf4\x89\xc7\xc9\xef\xdb\x5c\x5d\x85\xa1\x4b\x6c\xae\x45\x8c\x76\x06\x57\x39\x71\x07\x42\xe4\xcc\x0e\xb0\xed\xb2\x0b\xd8\x1b\x7a\xbf\xc3\xbd\x0e\x94\x62\x68\xbd\x07\xd9\xe5\x1d\x0a\xc2\x8c\xea\x6b\x15\x05\x70\x53\x6b\xe8\x11\x43\x8f\xbd\x64\x37\xb2\x43\xd9\xad\x8c\xb2\x6e\x76\x0c\x2c\xfa\x6d\xef\xb5\xe8\x43\x8b\xee\xee\xd7\x30\x6b\x31\xe2\xcf\x31\x6d\x86\xfa\x39\xe2\xcf\xe1\xcb\x8d\x38\xbe\xfa\x1d\x42\xf8\x40\x7a\xaf\x87\x03\xc0\x62\x2a\xb8\x3b\x43\x9d\x15\xae\x37\xd4\xd9\xa1\xce\x0a\xd7\x13\xdc\x9d\xa1\xce\x0a\xd7\x1b\x6e\x11\x0e\xb6\xc9\x77\xe1\x7a\xc3\x6d\xf2\xa1\x1e\x9b\xcd\x19\xea\xf1\x58\x06\xbe\x3a\x5b\x87\xc8\xc6\xd1\xfd\x39\x5c\xfb\xa1\x6a\x8f\x6e\x53\xb0\x62\x43\xcb\x0e\x8b\xf7\x92\xd1\x64\x77\xce\x87\x2e\x90\xc9\x1c\x71\xe1\x19\x46\x81\xee\x7f\x0d\x5d\xeb\xa1\x5b\xc4\x9d\xc0\x19\x4e\x8b\xa1\x21\x67\xf9\x1f\x1a\xed\xe1\x4c\x09\xde\xe2\x30\x47\x3e\x9c\x29\x9c\xbb\xce\x70\xa6\x0c\x67\x8a\x80\xc0\xa1\x0b\x34\x26\x23\x6f\xa6\x66\x38\x53\xc6\x72\x8b\xee\x8a\x0e\x88\x1e\x0f\x94\xe0\xeb\xb5\x55\xad\x04\xe0\x99\x3a\xd6\x61\x55\x9f\xc6\x8a\x53\x0f\x48\x50\xdf\x74\xe7\x05\x24\xf8\x92\x35\x64\x9f\x32\x9b\xc7\x1a\x28\x2c\x3c\xf3\xb0\x29\x18\x81\xa9\x13\x3d\x97\x7d\xae\x95\x4d\x8c\xa9\xb3\x33\x4f\x07\x0f\x1d\x98\x66\xb4\xa7\x31\xa5\x69\x14\x60\xde\xeb\x61\x15\x2c\x3d\x22\xbb\x33\x2f\xbb\xc1\x3c\x9b\x4e\xa0\xa9\x19\x77\xa2\xcd\xcb\x6a\x8d\x29\x39\x13\x9d\xe9\x6e\xe1\x04\xbb\xb5\x07\x5b\x31\xcd\x49\x4c\x4d\x7b\x70\xa8\xa6\xa6\x7d\x6a\xc6\x9d\x6a\x53\x33\x0e\x54\xbc\x14\xb1\x79\x53\x9f\x7c\xe2\x28\x15\xd3\x28\x82\xc5\x03\x58\xbc\x14\xce\x44\x67\xea\x28\xcd\x35\x87\xaa\xdb\x67\x53\xac\x23\x00\xf2\xf5\x1a\x23\x6f\xe2\x1b\x22\xf1\x25\xa3\x5a\xdd\xa2\xb9\x66\x52\x29\x50\x0b\x66\xba\x07\x34\x63\xb5\x7e\x49\xf3\x81\x20\xcd\x97\x8c\xdf\x73\x6a\x80\x24\x2f\x85\x5b\x42\x9e\x0d\x2d\x78\xe0\x4a\x2e\xd9\xd6\x4a\xf6\x88\x82\x7d\x84\x13\x06\x64\xc8\x53\x94\x09\x7e\x12\xf2\xf1\x1c\xca\x84\x72\x84\x8d\xf6\x47\x28\xc7\x03\x0e\xe0\xd8\xb6\xe5\x09\x3c\x6c\xfd\xff\x7a\xce\x15\x32\x1c\x5b\x29\xf9\xed\xd7\xa8\x04\xe0\x83\x0b\x45\x71\xf8\x86\xac\x35\x83\xd4\x3e\x67\x32\x46\x65\x69\x18\xf0\xad\xec\xc2\x01\x47\x63\x67\x70\x98\x5c\x2d\x9c\xbd\x9e\x0f\xe6\x7d\x72\xdf\x59\x29\x5c\x56\x3c\xb9\xf5\x6c\x3d\x7c\x6f\x69\xf2\x7c\xc8\xae\x4d\xee\x31\x5b\xb2\x2c\x59\xf1\xbd\xf2\xf3\x7b\x94\x25\x11\x3d\x39\xee\xbe\x64\xe7\x6f\xbf\xe6\xf0\xf7\x58\x35\xe8\xfd\x1c\xe4\x55\xe6\xd8\xdb\x4f\x7b\x27\x47\x83\xd6\xe3\x5c\x31\xff\x7f\x1e\x85\x3b\xff\x73\x59\x9f\x03\x08\xe4\xe4\x10\x11\x27\x5d\xe6\x38\xfc\xcd\x83\xdf\xa4\x16\xd6\x9f\xc9\xfa\xc3\x6e\xe1\x74\xf9\x99\x2c\x3f\xd0\x67\xcf\xc1\x8c\x9a\x1c\x32\x62\xf7\x70\x7a\x8d\xc3\xe4\x1a\x87\xab\xf1\x0e\x0b\xd4\xe4\x12\x07\xfc\xb3\xc9\xc2\xf4\x6b\xb2\x00\xed\x1b\x84\x94\x93\x65\x68\x3d\x2a\xb2\x43\x99\xef\xc1\x05\xb6\x71\x52\x7e\x72\x2c\x68\x3d\x5e\xbf\xcc\xf5\xdb\xaf\xe9\xad\x03\x93\x5b\x07\xca\xf2\x92\xe6\x04\x6e\x3a\x99\x79\x70\xd3\x4d\x0f\x18\x4c\x0f\x18\xdc\xed\xff\x1f\xa1\xf5\xcf\xdf\x9f\x3f\x7e\xfb\x5f\xff\xfb\xf9\xe3\xff\x3c\x7f\x1f\xbf\xf7\x7f\xff\xf9\xe7\xf8\xc7\xbf\xbe\xbf\xf5\x7f\xfd\xfe\x3f\x96\xf4\xf7\x6f\xcc\xbf\xfd\x63\xfc\x39\xfe\xef\x3f\xff\xfd\x67\x1f\xbf\xff\xf1\xcf\x3f\x56\x29\xfe\xfe\x5f\x00\x00\x00\xff\xff\xdd\x4e\x8e\x02\x63\x04\x03\x00"); +func _gbd ()([]byte ,error ){return _gb (_fag ,"Adobe-Japan1-2")};func _aegf ()([]byte ,error ){return _gb (_abga ,"KSCpc-EUC-H")};var _afb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x2c\xde\x6b\x69\xfa\x0f\x4a\x17\x8e\x35\x0e\x86\x46\x36\x8e\xb3\xc8\xb7\x2f\xe7\x1e\x3b\x85\x2e\x82\xa3\x13\xe9\x4a\xf9\x1d\x8f\xe6\xe6\xee\xe1\xfe\x61\xdd\x9f\xd3\xcd\xcf\xa7\xc3\xf6\xb1\x9f\xd3\x6e\xbf\x2e\xa7\xfe\x7a\x78\x3b\x6d\x7b\x7a\xea\xcf\xfb\x75\x18\x44\xd3\xb2\xdf\x9e\xaf\x87\xf1\xb1\x7d\xd9\x1c\x87\x01\xd7\x3f\xbe\xbf\x9e\xfb\xcb\xc3\xba\x3b\x24\xe3\x79\xcb\xdb\xf1\x72\x6e\x4a\x37\xbf\xf4\xe7\xfd\xeb\xf9\xf4\x9e\x3e\x7d\x59\x0e\x4f\xfd\x87\xb4\xf4\x1d\xf2\x9f\x4e\x4b\x3f\xed\xd7\xe7\xf4\xe9\xee\xfb\xa3\x7c\xc4\x8f\x6f\xc7\xe3\x3f\xfd\xa5\xaf\xe7\xe4\x91\xf5\x75\x89\xcf\xe1\xe6\xee\xdb\xe6\xf8\x7d\xf3\xd2\xd3\x4d\x4c\xfa\x8c\xeb\x3e\xf3\xa4\xf8\xdb\xef\xfd\xf4\xba\x3f\xac\x49\x7e\xcc\xb9\xfe\x17\xff\xfa\x7e\xec\x49\x2e\x33\xfe\xfc\xed\xe1\x3e\xfd\x25\x49\x72\xd2\x52\xa6\xf2\xf7\x25\xff\xe3\xdb\x61\xe9\x29\x5f\xef\xf4\x70\x7f\x77\x78\x5b\xcf\x49\xda\x54\x0b\x43\xe1\xbf\xb4\x3d\x2c\xfd\xf5\xb8\xd9\xf6\xd3\x66\x7d\xee\x43\x4a\x73\xce\x39\xdf\xa6\xd9\xbf\x7c\xfd\x7a\x8b\xa7\xfd\xdf\x19\xc3\x58\x2e\x57\xee\x17\x26\xd7\x2b\x72\xde\xed\x6e\x53\x1e\xe6\x2c\x3c\x16\x1c\x6b\xa9\xc3\x9c\x95\x89\x22\x29\xa2\xc3\x9c\x8d\x89\x21\x19\x6b\x1b\xe6\xec\x4c\x1c\x89\x64\xf5\x61\xce\x85\x51\x89\x48\x1b\x66\x57\x46\x35\xa2\x62\x18\x3e\x32\x1a\x23\x1a\x27\x4c\x6f\x8c\x5a\x3c\x41\x76\x8c\x9f\x18\x4d\x11\x59\xc6\xf8\x0d\xa3\xcd\xe5\x39\x31\xfe\x89\xd1\x53\x44\x4d\x30\x7e\xcb\x68\x8b\xc8\xf2\x88\xf1\x0b\xa3\x25\x22\x53\x8c\xef\x8c\x7a\x44\xa5\x61\xfc\x8e\xd1\x2e\xa2\xe6\x79\x98\x85\x52\x12\x52\x9e\xa7\x3a\xcc\x42\x2c\x09\x2c\xb7\xa2\xc3\x2c\xd4\x92\xd0\xf2\x9a\xdb\x30\x0b\xb9\x24\xb8\xbc\x55\x1f\x66\xa1\x97\xf8\xc5\x14\xe3\xe9\x25\xe1\x55\x6c\xc4\x78\x7a\x49\x78\x95\x6a\x18\x4f\x2f\x09\xaf\xd2\x1a\xc6\xd3\x4b\xc2\xab\x8a\x63\x3c\xbd\x24\xbc\xaa\x67\x8c\xa7\x97\x84\x57\xad\x28\x56\xe8\x25\xe1\x55\x27\x34\x2b\xf4\x92\xf0\x1a\x05\xd5\x0a\xbd\x24\xbc\x46\x47\xb5\x42\x2f\xe9\x97\xfe\x31\x9e\x5e\x12\x5e\xe3\x84\x6a\x95\x5e\x1a\x5e\x4d\x50\xad\xd2\x4b\xc3\xab\x39\xaa\x55\x7a\x69\x78\xb5\x11\xd5\x2a\xbd\x34\xbc\xda\x84\x6a\x95\x5e\x1a\x5e\x93\xa2\x5a\xa5\x97\x86\xd7\xe4\xa8\x56\xe9\xa5\xe1\x35\x8d\xa8\x56\xe9\xa5\xe1\x35\x4d\xa8\x56\xe9\xa5\xed\xfa\x5d\xc5\x7c\x82\xe9\xc4\xcc\x51\xae\x52\x4c\x37\xcc\x46\xb4\xab\x24\xd3\x20\x43\xfb\xb8\x05\xcd\x74\xcb\x4c\xd1\xaf\x12\x4d\x17\x66\x05\x05\x2b\xd5\xb4\x33\x1b\xd1\xb0\x92\x4d\x77\x5c\x24\x19\x15\x1b\xdd\x2c\x33\x53\x74\x6c\x84\x33\x61\x56\x50\xb2\x51\xce\xf4\xba\xc0\xf2\x30\x1b\xe9\x2c\xe8\xc4\x32\x6a\x36\xda\x19\xd7\xa6\x19\x7a\x36\xe2\x19\x17\xa7\x15\x14\x6d\xd4\x33\xae\x4e\x6b\x68\xda\xc8\x67\x5c\x9e\x9e\x51\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\x2f\x28\xdb\xe8\x67\xf4\xf3\x86\xb6\x8d\x7e\x46\xbf\x22\xa8\xdb\xe8\x67\xdb\xeb\x5b\x01\xf7\xa0\x9f\xd1\xaf\x54\x14\x6e\xf4\x33\xfa\x95\x86\xc6\x8d\x7e\x46\xbf\x2a\xa8\xdc\x2f\xef\x40\xfa\x55\x43\xe7\x4e\x3f\xa7\x5f\xad\xe8\xdc\xe9\xe7\xf4\xab\x0d\x9d\x3b\xfd\x9c\x7e\xa3\xa0\x73\xa7\x9f\xd3\x6f\x74\x74\xee\xf4\x73\xfa\x8d\x15\x9d\x3b\xfd\xbc\x5e\x5f\x65\xb8\x07\xfd\x9c\x7e\x4d\xd0\xb9\xd3\xcf\xe9\xd7\x1c\x9d\x3b\xfd\x9c\x7e\xad\xa2\x73\xa7\x9f\x6f\xc4\x91\x4d\xee\xf1\x46\xbf\xbe\xb9\xf1\x3b\xf6\xbd\x8f\x9d\x68\xfb\x76\x3a\xf5\xf5\x1c\xbb\x5e\x6c\x36\xd8\x2b\xf6\x6b\xff\xd8\x41\x8f\x87\x23\xae\x8a\x9f\x7f\x03\x00\x00\xff\xff\xcd\x63\xbe\x49\x6d\x07\x00\x00"); +func _cfbd ()(*asset ,error ){_cdeb ,_eba :=_gaff ();if _eba !=nil {return nil ,_eba ;};_ebd :=bindataFileInfo {_ee :"Adobe-GB1-2",_ffd :2159,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491257,0)};_efec :=&asset {_da :_cdeb ,_dc :_ebd };return _efec ,nil ; +};func _dfaba ()(*asset ,error ){_ecgbb ,_eaddg :=_efafg ();if _eaddg !=nil {return nil ,_eaddg ;};_beef :=bindataFileInfo {_ee :"RKSJ-H",_ffd :2884,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492632,0)};_dfbc :=&asset {_da :_ecgbb ,_dc :_beef };return _dfbc ,nil ; +};var _daad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x58\x41\x6f\x1c\x37\x0f\xbd\xef\xaf\x98\x63\xbe\x43\x3e\x4b\xa2\x34\x23\x01\x85\x81\x22\x41\x51\x07\x48\x5b\xd4\x49\x1a\xa0\xe8\x61\x76\x57\x72\x17\xa8\xd7\x8b\xb5\x7d\xc8\xbf\x2f\xf4\xb8\x7a\x74\x8d\xf6\x10\x64\x1e\x49\x51\x7c\x94\x48\xca\x7b\xf5\xee\xe6\xfd\xcd\xf1\xf0\x34\x5d\xfd\x72\x7e\xd8\xdd\xd6\xa7\xa9\x1d\x8e\xfb\x73\x7d\x7c\x78\x3e\xef\xea\xb4\xad\x77\x87\xe3\x66\xe3\xc3\xb4\x3f\xec\x9e\x06\xc4\x7f\xbb\xfb\xf5\xb4\xd9\x5c\x7d\x3e\x1e\x3e\xdc\xdc\x7e\x75\xc1\x4b\x70\x2e\xbe\xfd\xfc\xe9\x07\x09\x6f\x7f\x9c\x9e\x1f\xeb\xc5\xe2\xdd\xcd\xfb\xdb\x6f\x8f\x4f\xf5\xfe\xe6\xd8\x1e\x26\x51\x4f\xfb\xe7\xd3\xc5\xdb\x34\x5d\xfd\x5a\xef\x0e\x8f\x4f\xe7\x6f\xd3\x9b\xef\xf7\x0f\xdb\xfa\xbf\x69\x5f\x5b\x97\xff\x7c\xde\xd7\xf3\xe1\x78\x37\xbd\xf9\xb0\x9e\xd6\xa3\xa7\xe2\xf6\xf9\x74\xfa\xab\xde\xd7\xe3\xd3\xb4\x40\x56\x8f\x7b\xfc\xbf\xb9\x7a\xf7\x71\x3d\xfd\xb4\xde\xd7\xe9\x3f\x22\xfb\x02\x3b\x98\x7d\xa9\xe7\xc7\xc3\xc3\x71\xf2\xff\x77\x6e\x36\xf1\xa7\x6f\xa7\x3a\xf9\x8b\xbb\xaf\x9f\x6f\xde\x4f\xbf\xfb\xc9\xbb\x29\xa4\x59\xe2\x1f\x17\xf9\x6f\x1f\x1f\xf6\xb4\xf2\xce\x29\x99\xdd\x61\xbf\xfb\x73\x3d\x6f\xbe\x73\xce\xb9\xe0\x7c\xba\x9e\x96\x5c\x02\xf1\x0c\x9c\x06\x0e\xaa\xcf\xc4\xaa\x5f\x2e\xd8\x17\x77\x3d\x2d\x92\x09\x7d\x87\x33\x61\xe8\xb0\x10\x4a\x87\x5c\xbb\x8b\xd7\x53\x16\xef\x89\x13\xb0\x23\x9e\x81\x47\x6c\xbe\x76\xec\x5e\xe0\x05\x38\x12\x67\x60\xfa\xab\x05\x58\x2e\x58\xca\xf6\x7a\xf2\xc1\xc7\x4c\xc1\x0e\x82\xd9\x04\x7b\xb5\x58\x28\xa8\x10\x24\x47\x41\x7b\xb5\x64\x75\xba\xa4\x50\xe0\x75\xc9\x4c\x41\x78\xbd\x44\xd4\x22\x51\x10\x55\x60\x16\xe9\xf5\x92\x59\x2d\x18\xd8\xda\xb9\xbf\x34\xc8\xc0\xa6\x2f\xc0\x16\xc4\xfa\xda\xe3\xb6\x1b\x2c\x81\x78\x07\xec\x89\xf7\xc0\x83\x78\x72\xbb\xeb\x69\x89\xbc\x18\xc9\xed\x81\x17\xe2\x0a\x3c\x13\x37\xe0\xb1\x5f\xf2\xfd\xa2\x24\x27\xc4\x1e\x98\xfe\x7c\x00\x8e\xc4\x02\x4c\x7f\x3e\xc2\x9f\x27\x4e\xc0\xe6\x6f\x06\x0e\xc4\x0b\xb0\xf9\xcb\xc0\x85\xb8\xc0\xbf\xf9\x5b\x81\xc9\xd7\x6f\x81\xcd\x5f\xe7\x9f\x82\xed\xb7\x07\x26\x7f\x5f\x81\x8d\x4f\x03\xe6\xfe\x01\xfc\x03\xf9\x04\xf0\x0f\x8c\x27\x80\x7f\x60\xbe\x50\x78\x49\xe8\x0f\x85\x97\x84\xfb\x87\x05\x98\xf1\x85\x0c\x6c\xfb\x81\x1f\x8b\x2d\x05\xf0\x13\xdb\x1f\xfc\xc4\xf6\x03\x3f\xcf\xfd\x04\xf1\x7a\xda\x4b\x44\x3e\xe8\x4f\xb0\x9f\xe3\xfa\x08\xfb\xc8\x7c\x46\xf0\x8b\xcc\x67\x04\xbf\xc8\x78\x23\xce\x97\x95\x96\x22\xfc\xb3\x8c\x52\x04\xff\xc8\xfd\x23\xf8\x47\xdb\x0f\xfc\x13\xf3\x11\x11\x4f\x1a\xfe\xe7\x7e\x5e\x39\x04\x4f\xdc\xef\x73\xf0\x85\xb8\x42\x6f\xf6\x0d\x78\xc4\xbb\x38\xad\xda\x65\x6c\xb8\xf4\xba\xce\xc1\x5d\x1c\x88\xc3\x85\xc8\xe3\x82\x89\xc3\x85\x28\xa3\xec\xc5\xe1\x02\x94\x51\xb1\xe2\x90\x90\xe2\x33\xb1\x00\xd3\x1f\x08\x97\x11\x80\x38\x10\x2c\x83\x80\xb8\x58\x80\xc3\xc0\x33\xd6\x8f\x0b\x29\x2e\x2b\x66\x3c\x59\xfd\x25\x62\xf5\xc7\xf8\x72\x05\x66\x7c\xbd\x3b\xe6\xb0\xd0\x7f\x41\x02\x17\xee\x8f\x46\x37\x8b\x98\x00\x84\x42\xee\x93\x6d\x4c\x95\x4d\xfe\xb7\x31\x23\x6e\xd5\xe0\x48\x76\x45\x70\x42\xb2\x2b\x82\x7b\xe1\x1b\x64\x85\xc1\xec\xb0\x5e\x48\xb6\x2a\x26\xd9\xaa\xfe\x48\xb6\xaa\x3f\x92\xad\x20\x2b\x24\xdb\xf4\xf0\xc6\x7e\xa1\xb5\xeb\x29\x88\x4b\x23\x40\x71\xae\xcf\x9e\xd1\xf7\x45\x9c\x74\x3c\xca\x45\xc4\xf5\x96\xed\xcb\x6c\x06\x18\x5e\x8c\x50\xdc\xac\x06\x9e\x82\x45\x05\x89\x82\xac\x02\x5b\x52\x54\x60\x9b\xac\x2a\x98\x29\xd8\x42\xb0\xd8\xae\x3b\x15\x04\x0a\xf4\x16\xd2\x00\x6d\xb3\x44\x46\xe1\x11\x66\x34\x3d\x66\xac\x18\xd6\x28\xb3\x09\x32\x0c\x98\x18\xaf\x41\x66\xee\x88\x42\x92\x44\x16\xbd\x91\x65\xe1\x51\x4b\x40\xe6\x22\x49\x05\xcd\x1c\x73\x2f\xbd\xd3\x75\x81\x79\x98\xc1\xc1\x0c\x70\x98\x91\x89\xeb\xad\x2c\x0b\x2b\x4d\xd0\xca\xca\x8b\x08\xf6\xea\x90\x21\x88\xc7\x02\x86\x20\xa8\x6d\xe7\xe8\x51\xf4\x74\x23\x31\x22\x18\xcd\x49\x44\x16\x2c\xf0\x66\x90\x55\xc0\x18\xa4\x80\x25\x63\x90\x55\x0d\xcc\xc5\x16\x06\x16\xd3\x4e\x0d\x98\x68\xd9\xab\x80\x51\x46\xaf\x02\x2e\x89\xc8\xac\x45\xd5\x3b\x44\x96\x64\x58\x83\x0a\x26\x40\x15\xd9\x61\xc7\x15\x89\x22\x8b\x88\xcb\x62\x41\x47\x1c\x25\xab\x44\x12\x2a\xdc\x8e\x2e\x69\xde\x2c\x4f\x49\x54\x60\x16\x51\x05\xcc\x6c\x42\x8c\x91\x2b\x16\xbc\xc1\xdc\x0b\x81\xe6\xc1\x82\x58\x34\x0f\x91\x17\x6c\xa9\x2a\xe0\x7d\x58\x1a\x6e\xd8\xc5\x45\x6b\x0e\x9d\x6a\x94\x4d\x6b\x0e\xad\x7d\xa1\xde\xeb\xdb\x67\xcc\xfa\xd6\xb4\x55\x8f\xb3\x69\x4d\x70\x81\xc6\xdb\xa4\x35\x81\xde\xd1\x81\x34\x74\x0b\x37\x70\x52\xfb\x44\xac\xdd\x64\x26\xd6\xf5\x86\xeb\xcb\x51\xd1\x1a\xba\x57\xce\xe5\x1f\x9d\x53\x16\x76\xce\xf3\x7a\xbc\xab\x97\xb9\x23\x5b\x77\x3d\x8d\x4f\x8f\x16\x9c\xec\x51\x46\x5d\x72\xfd\xac\x62\xe6\xfc\xed\xf3\x6b\x7c\xf6\xed\xe2\xc2\xd1\xda\x7b\xd7\xf8\xc4\x2b\x2a\xdb\xab\x6e\x36\x15\x1e\x50\x99\x03\xb6\xb7\xab\xf1\x59\xa0\x32\x87\xab\xa9\xb6\x50\xd9\xb3\x43\xa8\x0a\x98\xf0\xc2\xe0\x7b\x99\x8e\x4f\x3c\x96\xbc\x3d\x2e\x3c\x55\x82\x77\x02\xe7\x72\x92\x64\x2a\x3c\x01\x1c\xc3\xe8\x35\x38\x3e\xf1\xba\xe1\x9f\x0a\x49\x6c\x2f\x1c\x66\x8a\xf6\x70\xb0\x55\xa8\x8f\xc4\xe6\xe9\xdc\x08\x43\x5c\x4f\xe7\x92\x33\x07\x08\xb3\x21\x0e\x2f\xd9\xe2\xa8\xf2\xd1\x54\x18\x4b\x8e\x63\xcd\xcf\xa6\x5a\x70\x96\x36\x12\xfd\x0b\x8f\x05\x17\x96\x4d\xd7\x95\x44\x5d\x99\x71\xd9\x39\xf9\x9a\xa9\x1a\xba\x16\x8b\xd1\xb7\x71\x3b\xc4\xb7\xa2\xc3\x5b\xa8\x5b\x4d\xd7\xa0\xb3\x92\x34\xda\x82\x57\x90\x2f\xd6\x3a\x7b\x6d\x8d\xc6\x2f\x3a\x7b\x58\xb9\x7e\x35\x9d\xb6\xe0\x4c\x9f\xfd\x35\x34\xda\xb3\x57\x9d\x4d\x84\x6c\x3a\x9d\x2e\xc5\x7a\xbb\xed\x27\x4e\xbb\x36\x1b\x83\x44\xd3\x25\xd5\x59\x8b\xb7\x75\x51\xd7\x05\x6b\x83\x62\xba\x59\x75\xd6\x02\xb7\xa6\xd3\xce\x14\xac\x21\x1b\x87\xa4\x3e\x6d\x6e\xa6\x64\x3a\xf5\x39\x4e\xaf\x35\xde\x95\xd6\x50\x39\xb9\x50\x95\x1a\x55\xf3\xe5\x0f\x49\x7f\xe9\x0a\xda\x04\x00\xee\xd7\xd3\x86\x3f\x1a\xec\x9e\xcf\xe7\x7a\x7c\xc2\x4f\x14\xf8\x31\xa0\xff\x81\x7f\x38\x56\xfe\x20\x72\x7a\x38\xf5\x55\xf8\xf7\x77\x00\x00\x00\xff\xff\x51\x4f\x67\x1f\x3c\x11\x00\x00"); +func _gaff ()([]byte ,error ){return _gb (_fffb ,"Adobe-GB1-2")};var _daeb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xcb\x3d\x3b\x96\x67\x37\xbf\x9f\xe2\x3f\x6c\x0f\xda\x75\xb6\xa4\xad\x17\x48\x2e\x98\x6a\x17\xae\x41\xb7\x8d\xd3\x65\x1b\x8c\x07\x71\xce\x89\x28\x12\x5c\x37\x93\xac\xac\x41\x7d\x7b\xa3\xb5\x74\xdb\xc6\x18\xee\x1d\x2d\x9e\xfd\xc4\x89\xd0\x5b\x48\xfa\x69\x6f\x29\xfe\xee\xef\xff\xf1\x3f\xfd\xe3\x2f\x7f\xfa\xdb\x8f\xbf\xfb\x9f\xfe\xfa\xe7\xcf\x1f\xef\xbf\xfd\x78\xfe\xf4\xcb\xf7\xaf\xf7\xbf\xfe\xf9\xdf\xfe\xfa\xb9\x7f\xbc\xef\x7f\xfe\xd3\x2f\x3f\xfd\x14\xe5\xc7\xf7\x4f\x9f\xbf\xfd\xfa\x27\xf8\xfc\xcb\xf5\x97\x9f\x7e\xda\xbf\xff\xe3\xbf\xff\xeb\xdf\xee\x7f\xf9\xc7\x5f\x9e\x3f\xff\xa8\x5e\xf7\xfd\xb7\xbf\x9c\x6b\x7f\xfc\xf8\xbb\xff\xf9\xfe\xe7\x3f\xfd\xeb\xdf\xfe\xfa\xef\x3f\xfe\xc3\x7f\xf7\xfd\xf3\xfb\xfe\x6f\x7e\x7c\xef\x67\xdb\xff\xc7\xbf\x7e\xef\xbf\xfe\xe9\x97\x7f\xfe\xf1\x1f\xfe\xfe\xbf\xfc\x31\xfe\xab\xf9\x8f\xff\xf6\x97\xbf\xfc\x5f\xf7\xbf\xdc\xbf\xfc\x6d\xdf\xed\x7e\x7e\xba\x7f\xf9\xc2\x9f\xfe\xee\xef\xff\xf3\xf5\x97\xff\x72\xfd\xcb\xfd\xe3\xef\xfe\xe9\x97\x3f\xfd\xfd\x7f\xf9\xe3\x7f\xfc\xa7\xbf\xff\x63\xf9\x8f\xff\x03\xff\xe5\x9f\xff\xeb\xfd\xd7\x7f\xfd\xd3\x9f\x7f\xf9\x11\xe5\xbf\x7d\xbd\xfa\xff\x63\xff\x5f\xfe\xfd\x2f\xf7\x8f\x38\x77\xf9\xdf\xff\xe9\x1f\xff\xd3\x8f\xff\x23\x7e\xc4\xeb\x47\xc9\xba\xca\xff\x79\xec\xff\xdb\x7f\xfe\xf3\xf7\xfe\xf1\xf2\xaf\x62\xfa\x3f\x7f\xfe\xde\xff\xfa\x97\xeb\x73\xff\xf5\xfa\xe5\x9f\xef\x9f\x7e\xfc\xf8\xc3\xeb\xf5\x7a\xfd\xfc\xe3\x0f\xff\x69\xfc\xc3\x3f\xfc\xbc\xff\xfe\xef\xfd\xfb\x1f\xfe\x61\xff\x7d\xff\xf2\xfd\xff\xfc\xe2\xa7\xf0\x46\xbf\xfc\xf9\x6f\xdf\xfb\xd1\xf6\xeb\x3d\x5e\xaf\x78\x7e\xfe\x11\xfb\x57\xff\xef\x7f\xff\x14\xaf\xd7\x79\xfa\x9f\xbe\xff\xf5\x17\xc5\x5f\x8c\x7b\xff\xe2\x0f\xaf\xd7\x55\xf8\xfb\xaa\x3f\xff\x28\xbd\x60\x49\x2d\xb9\x2d\x2f\x2c\x43\xcb\xf8\xf9\x47\x8c\x89\x65\x6a\x99\x3f\xff\x88\x3a\xda\xc0\xf6\xd1\xf6\xf9\xf9\x47\xb4\x57\x5b\xdb\xf6\xf6\x69\x1b\x65\x72\xaf\x77\x68\x89\x9f\x7f\x94\xe0\x79\x6f\xef\xbe\x11\x91\xdb\xf2\xf1\x57\x1b\x31\xc7\xe4\x89\x1f\x7f\xb7\xb1\x6d\x1d\x9b\xa9\xd8\x88\x39\x16\x77\xfb\x2c\x6d\x4b\x1b\xcf\xfc\x5c\xda\xae\x6d\x9b\x2f\xf2\xfd\x35\xdf\x1b\xfb\x3a\xee\xf7\xad\xda\xaa\xb6\x86\xcd\xd4\x6d\x94\xe0\x6e\xb7\xa9\xbb\x5f\xde\x8d\x14\xdf\xa6\xee\x0e\x6d\x15\x9b\xa9\xbb\x49\xdd\x3c\xbf\x35\x75\xf7\xf2\x3a\x72\x76\x9b\xba\xdb\xd4\x55\x72\x71\x5b\x96\x1b\xfb\xb7\xa4\xe4\xfe\x6a\xfb\x6a\xe3\xba\xc7\x5c\x3c\x45\x1b\xf7\x7b\xcc\xc5\x53\xb5\x91\xb3\xc7\x5c\x3c\xe4\x82\xfc\x3f\xa6\xee\x31\x75\x8d\xd4\x3d\xa6\xee\x31\x75\xc5\x27\x98\xba\xc7\xd4\x15\xaf\x33\x75\x8f\xa9\x2b\xbb\xf6\xc3\x96\x08\x76\xfd\x24\xb6\xd0\x76\x4a\x65\xdf\x2f\x82\x14\x83\x7d\xdd\xc2\x56\xb5\x99\xe2\x17\xf7\x8b\x4b\xdb\x65\x5d\x04\xb6\xb7\xb6\xb7\xd7\xf1\xdb\xa2\xad\x68\x23\x6f\xd1\xb4\x35\x6d\x4d\xdb\x47\xdb\xc7\xfb\x55\x6c\x5f\x6d\xa7\x44\x49\x73\x9a\x96\x34\x2d\x95\x67\x74\xef\xd7\xcf\x33\xb0\x7d\xfc\xed\xe7\x6b\x3e\x48\xf3\xe7\xd6\x76\x9b\xbe\x5d\x6b\xf1\xb5\x5c\xbe\xb6\x96\xe0\xb9\x5f\xcb\xe5\x6b\x5b\x5e\x3c\xd7\xf6\x18\xdf\x53\x93\xdc\xef\xdb\xb4\x35\xcb\x99\x7c\x7c\xbb\xb6\xae\xcd\xfb\x4d\x6d\xd6\x65\xf1\xb9\x96\xdf\xf7\xd4\x9b\xcf\xb0\x0c\xbe\xa7\xde\x76\xcb\x28\x49\xfa\xc0\xce\x6f\x62\x0b\x6d\xa7\xde\xbc\xae\x69\x33\x2d\x75\x60\x7b\x6b\xb3\x5c\x2a\xd7\x75\x7f\xdb\xfd\x6d\xad\xd8\x2e\x6d\xa6\xa5\x61\x1b\xf4\x32\x60\x5f\xb7\x5b\x6e\x99\x94\x3d\xd8\xb6\x86\xcd\xdf\xce\xf3\xdb\xdd\x86\xca\x87\x32\x00\xbb\xf7\xe1\xb7\x9f\xa1\x6d\xfc\xfc\x23\x29\xf9\xe2\x5b\x0f\x92\x37\xb2\x7c\x4c\xef\x46\xf2\xde\x96\x2f\x2d\x1e\x24\xed\xb3\xbe\x28\x4b\xf0\x6b\xcf\x56\x17\x79\xaa\x57\xfc\xfc\xa3\x51\x33\xf5\xaa\x5a\xd6\xcf\x3f\x1a\xe9\xac\xf6\x6b\x75\xf7\x4f\x8d\x16\x57\x3f\x5e\xb3\x7b\xa2\x96\x3b\x8d\xcd\xf7\x01\x44\x5d\x94\x57\x0b\xca\xbf\x45\x6a\x7b\x61\x23\x7f\xad\x1e\xdb\x7e\x62\xab\xda\xda\x83\x6d\x70\x9d\xf5\x04\xa2\xae\xbe\x7e\xfa\x43\xdc\xef\xdd\x06\xc5\x6e\x5b\x13\xdb\xa3\xed\xb1\xde\xb9\x8e\x3e\x56\xec\x3a\x7e\x61\x0b\x6d\xa7\xee\xe2\xa7\x3f\x94\x17\xef\xa6\x88\xa2\xa5\x69\xd9\x2d\x61\xb7\xbf\xf2\x8a\xa9\x65\xf7\x1b\xbd\x63\xf9\x68\xd9\x6f\x47\x9f\xdb\x52\x0a\x96\x8d\xd8\xf5\x53\x5e\x25\xb5\xec\x5c\x06\x77\x2e\x5d\xcb\xae\xd7\xdd\x5f\x96\x57\xf5\x57\x1b\x31\x78\x56\xf5\x57\x94\xcd\x28\x58\xde\x5a\x76\x2b\x1c\x03\xcb\xad\x65\x97\xc1\x7e\xbb\x8a\x63\x93\x88\xd1\xf7\x08\x50\xe2\x45\xce\x40\x21\xd5\xf1\x4a\x2d\xfb\xde\xbb\xf7\x2f\xf1\x5a\x5a\xd6\xbe\x66\xdf\x3b\xa8\x1b\x11\xed\x95\x5c\x55\x02\xdb\xc6\xb6\xed\x27\x46\x7f\x61\xeb\xeb\xe7\x1f\x75\xb7\xf8\x12\x43\xcb\xd8\x6d\xad\x74\xc6\xf8\x5f\xc7\xe5\xff\xbf\xa1\xba\xc4\xf2\x07\x1b\x65\x37\xf2\x12\xcb\x07\x6d\x94\xc6\x63\x56\xd1\x52\xb6\x85\x04\x2e\xb3\xb5\x51\x1a\xd9\x5a\x26\x79\xed\xce\x7f\x0f\xcb\x25\xd6\xd4\x32\x7f\xfe\x51\xb2\x60\x31\xa3\x1b\x25\x29\x9e\xb7\xd7\xbc\x17\x8d\x6b\x71\xef\x7b\x60\xdb\xd8\xb6\x7d\xf7\x42\x47\x2d\xca\xee\xde\x4a\x89\x5b\xcb\xfd\xf3\x8f\xb2\x07\x8c\x52\xf6\xfc\xe4\xa0\x54\xae\x61\x1a\x22\xca\x1e\xf2\x4a\x29\x55\xcb\x4e\x37\xc5\x5a\x6c\x20\xa0\xa4\xbf\x5a\x5a\xf6\xb3\x76\x33\x2e\x85\xee\x5f\x94\xfd\xa2\x94\x52\x7c\xfa\x46\xd9\xdd\x4a\x29\x95\x06\x0b\x4a\x23\x3d\x36\x22\x50\x2a\xf7\xa9\x1f\x2d\x9f\x7d\x67\x7e\x95\x94\x2c\x28\x34\xfc\x62\x95\x82\x12\xfc\x8a\xce\x4e\x94\x42\x2e\x7a\xd7\xc2\x40\x4b\x7a\x2e\x9f\xc5\x74\x8a\x57\xaa\xbc\x2d\x8d\x37\xa5\xb1\x73\xda\x18\x3c\x4b\xdb\xe5\x93\x7b\x12\x56\x9a\x4d\x0a\x24\x4d\xb1\xf9\xf4\xd6\xe9\xaa\x76\xc9\xb7\x41\xbe\xda\xf8\xfe\xfc\x23\xf7\x30\x5f\xd2\xfb\x80\xca\x2b\x95\xaf\xa2\xa5\x6c\x4b\xc1\xf2\xd1\xf2\xd9\x96\x7d\xe7\x0c\x7f\x15\xfc\x2a\xb1\x34\x2d\x6d\x5b\xb8\xb3\xaf\x38\xa8\xe4\x2b\x7d\xc5\x41\xdd\x43\x71\xc9\xe2\xaf\x36\xea\x9e\xda\x94\x2c\x5e\x53\xb8\x86\x5f\x59\x17\xa0\x92\x8b\xb4\xe4\x41\x7d\xf1\xf4\x34\x3d\x1b\x95\x52\x4d\x3a\x3a\x11\xed\xb5\x27\x75\x25\xad\x1f\x10\xed\x35\xbc\xae\x6a\xab\xd8\x26\x25\x90\x3e\x91\x81\xab\xbd\x7a\xc5\x96\xda\xd2\xdf\x52\x0a\xd9\xb5\xf9\x62\x4f\xaf\x1b\xda\x86\xbf\x35\x75\x96\xc4\xc6\xfe\x2d\xf9\xcc\xa5\x6d\xf9\x5b\x72\x9a\x97\xb6\xcb\xdf\x52\x42\x0c\x98\x62\x5f\x67\x3e\xcc\x7f\x3a\x6d\x9e\x5e\xf7\xd5\xf6\xf5\x19\xe6\xe3\xd6\x76\xef\x52\x31\x75\x8f\x96\xc7\x5f\x92\x0b\x5b\x09\xd8\x4f\xa5\x84\x6d\xa5\xa0\x16\xf2\xd0\x2d\xbb\x6e\xd9\x4d\xaf\xb2\xec\xba\x65\x47\xa7\x9d\xdd\xb2\xeb\x96\x1d\x1d\x70\x76\xcb\xae\x5b\x76\x93\x72\xb7\xd5\x83\xfd\x5b\x53\x62\xd9\x75\xcb\x6e\x90\xaf\x6e\xd9\x75\xcb\x6e\xfa\x0c\xcb\xae\x5b\x76\x83\x32\xe9\x96\xdd\x46\x2d\xde\xcd\x92\xeb\xa7\xe4\xcc\x85\x25\xd7\x2d\x39\xba\xe7\xec\x96\x5c\xdf\xa5\x14\xde\xdf\x52\xda\xa8\xbc\xc7\x69\x47\x0c\x2a\xfd\x53\x0e\x4b\x68\xd4\x9f\x7f\xd4\x8a\x65\x6a\x99\xbb\x87\xb4\xbd\x4d\xd3\xb9\x51\x19\xc0\x72\x9a\xca\x8d\xfa\xa2\x6c\xa6\xa9\xdc\xa8\x2f\x4a\x66\x9a\xc6\x49\xeb\xe6\xe9\xd3\x14\x6e\xd4\x97\x77\xb6\x66\x37\xca\xa2\x9c\xa6\x69\xde\x28\x8b\x5c\xd8\xab\x83\xfd\x06\x50\x63\xcb\xda\x59\xbc\xa5\xdc\x69\x59\x37\x1b\x95\xbe\x38\x2f\xf3\xba\x11\xe6\xe3\x32\x67\x17\x83\x3c\x4f\x7b\xdb\x1a\xde\x4c\x3d\xf9\xd5\xdb\xa7\xbd\x99\x88\x91\x8f\xb7\xf9\xd8\x88\xa5\xc5\x7c\x6c\xc4\x22\x67\x1f\x5b\xc1\xc7\xa9\x29\x16\xdb\xc0\x46\xf8\x56\x7c\x2c\xa1\x0f\x53\x46\xd2\xf3\x31\xf7\x4e\x9a\x29\xd7\x8f\xb9\xff\x30\x5d\xe1\xce\xb7\x29\xbc\x77\xfd\x14\xf2\x7e\x9b\xf7\x8d\xca\x48\x90\xb7\x79\xdf\xa8\x65\xfe\xf6\xf0\xda\x1d\xed\x41\xf0\x0a\xf4\x57\xd7\x42\x06\x12\xcb\xd2\xb2\x87\xc5\xb6\x13\xd7\x1b\x05\x0a\xca\x9e\xe7\x95\xde\x42\x0b\x83\x72\xc5\x52\xb4\x30\x28\xef\xc2\x1a\x95\xc2\x02\x51\xc7\x56\xd5\xe5\x9e\xdc\x09\xec\x39\xc9\xc4\xd6\xb4\x35\x6c\x14\xf4\x3d\xbb\xb6\xa9\xad\x62\xbb\xb4\x5d\xda\x3a\xb6\x8f\xb6\xaf\xb6\x5d\xdc\xb7\x0d\x02\x6c\xdb\xc2\xe6\x75\x8b\xb9\xd0\xa0\x09\xde\xeb\xab\xed\xfb\xf3\x8f\xc1\x70\x7c\x3b\x6c\x81\x7d\x55\x60\x1b\xda\x86\x36\xaf\x33\x25\xd7\xa5\x8d\xd4\x39\xdb\xba\xaf\xf3\x84\x86\xed\xd6\x76\x6b\xdb\xa5\x7b\xbf\xcd\xd9\xc6\xb6\x91\x0b\x1b\x1a\xd8\x36\x72\xf1\xf6\xb7\xef\xf3\x5b\x4a\xca\xc6\x06\xa2\xd0\x8e\xef\x8f\x49\xf9\x9c\xa4\x68\xf3\x76\xc8\xb4\x31\x78\x4b\x6e\xdb\x17\xd8\x36\xb2\xf1\xf5\x76\x5f\xb3\xc6\xbb\x73\x7f\x7d\xec\xd7\xc7\x32\x32\xde\x37\x6f\x06\xd8\x23\xd4\x4f\x7f\x28\x4f\xc5\x04\x72\x4f\x9d\xaa\xab\x32\x62\x17\x79\x7d\x31\xf1\xaf\xaf\x17\x93\x5f\x2f\xa9\x5a\xf6\x1b\x36\xbc\x26\xb5\x30\xb7\x1a\x7b\x06\x54\x5f\x88\x91\xfa\x7a\xd1\x37\x4e\x2c\x97\x16\xfa\x41\xaf\xf9\x68\xd9\x39\xdc\x73\xb9\xfa\x7a\xdd\x5a\x76\xfe\xb2\x6f\x4b\x98\xa0\x70\xfc\xc4\x52\xb4\xec\x26\xda\x49\x11\x63\x7e\x7d\x29\x44\xfc\xd5\x57\x0b\xf9\xe7\x57\xc5\x7c\xec\x69\x58\xdd\x33\xb2\xfa\x6a\x5a\xe8\x97\xea\xf0\x4e\xeb\xad\xed\x4c\xb6\xb9\xd7\xf2\x5e\xeb\x36\x77\x5c\x77\xf9\xdb\x07\x19\x37\xcd\xcd\x63\x6e\x58\x5a\xa8\x23\x07\x36\x7f\xfb\xf8\xdb\x3d\x83\xad\x4e\xd5\x6b\xec\x94\xb4\x3d\x2e\xd7\x52\xb9\x1b\xd8\x93\xf0\x9d\xba\x82\x4c\x13\xb1\x5f\x9c\x5a\xe9\x6b\x6b\xa5\x67\xdd\x62\xa1\x56\x5e\x87\x5a\x77\xca\xca\x9e\x45\xd4\x6a\xba\x40\x19\x3b\xf5\xf5\x43\xd9\x80\x42\x6d\xd5\x8f\xf7\xf9\xf0\xab\xfd\xfc\xfa\xf5\x57\x1b\x85\xf2\xab\x48\x7a\x51\xaa\xd7\xa4\x96\x3d\x17\xdc\xa3\x7a\x45\xe3\x1d\x44\x1b\x13\x1b\x5d\x8c\x88\x6c\x7b\xc6\x52\x1b\xcb\x17\x22\x06\xcb\x1c\xb5\x31\x3a\x8b\x68\xcb\xdf\x0e\x72\x0c\x22\x59\x6e\xa8\x6d\x5c\xda\xf6\x7b\xd1\x1b\x29\x61\xd2\x78\xb0\xef\xa7\xed\xd6\x46\x4f\xcc\x0c\xa8\xb6\xe5\xfd\xa8\xdf\xc1\x28\x53\x1b\x7a\x42\x44\x63\x0c\xab\xed\x32\x1f\x76\x17\x2c\x3a\xd5\x76\x3d\xda\x68\x87\x6d\xf7\xff\xb5\xbd\xcd\x87\xaf\x37\x4b\x82\xb5\x21\x3b\x45\x8c\x9e\x0b\xdb\xd4\x36\x69\xc3\xde\xef\xeb\xfd\x36\xa2\xbf\x28\xe3\x76\x5b\x06\x1b\x91\x8b\xd6\xde\x1e\xda\x1f\xd8\x65\xb0\xdf\x9b\xa4\x6b\x17\x31\x0a\x6d\x32\x91\x89\x22\x46\xdf\x3a\xa0\x3a\xd3\x14\x31\x58\x36\xa9\xce\x2a\xc5\x2e\x83\x9d\x0f\xe7\x54\x22\x7a\xa7\x0c\x9c\x7b\x88\xfd\x5b\x9e\xcb\x5c\x43\x44\x06\xed\x3e\x47\xd1\x56\xbc\x8e\xe7\x8e\xa1\x6d\x90\x37\x5a\x54\x8e\xa9\x8d\x8e\xbf\xec\xd9\x57\x4d\x06\x08\x11\x8d\xa5\x94\x9a\xcb\xdf\x6e\x44\x06\xef\x47\x2e\x7f\xbb\xf8\x2d\xcb\x7b\xd5\x91\x5f\x44\xef\xa1\x2d\xb5\x59\x6f\x8d\xf4\x5d\xe6\xe3\x42\xbc\xc7\x9e\x7f\xd5\x44\xb3\x88\x7d\xdd\x7e\x4f\xd2\x7a\x4b\xeb\x8d\xe5\xd7\x9a\x1f\xef\xf7\x39\xf7\xe3\xb7\x1f\xd3\xf7\x71\xf9\xb8\x90\x66\xfa\x6a\x11\xb9\xea\xfa\xcd\xf1\xba\x3a\x51\x10\xd1\x5f\x74\xa3\xe9\x2b\x06\xa2\x57\x8b\xf2\x6b\x55\xb3\x42\xd6\x91\x26\x35\xbf\x6f\x6d\x4c\x3b\x98\xf6\xd4\xfc\x9a\xcd\x2f\xd5\x55\xcd\xe6\x63\x96\x1e\x26\x47\x4c\x46\x6b\x3e\x3e\x83\x35\xd6\xb1\x68\x9e\xf9\xd8\x24\x58\x63\xed\xbe\xee\x69\xb3\x03\x31\x66\xf7\x7e\xa6\x99\xae\xab\x23\xf6\xaa\x73\x0a\x11\x63\x91\xbe\x8e\xbc\x12\x31\x73\x4b\xfb\xda\x11\xd6\x22\xc6\xda\x52\xbe\x76\x44\xb2\x88\x9e\x7b\x6a\x56\x7b\xf9\x6a\xfb\x5a\x2e\x5c\x67\xb7\x02\x62\x0e\x9f\x5b\x7d\x6e\x65\x95\x66\x50\xd5\xdd\x57\x00\x44\x9b\xbc\x3e\xbd\x51\x5d\x20\x66\xdb\x12\xba\xf6\x66\xfa\x1a\x13\xf7\x4a\xf5\xf7\xe6\xfd\x1a\xf7\x6b\x7b\xe4\xaf\xbd\x79\xbf\x66\x17\x42\x77\xda\x91\x29\x22\x72\x52\x7e\xdd\x2e\xa9\xdb\x25\xbd\x18\x24\x3b\x53\x6e\x11\x63\xee\x69\x78\xed\xcb\xeb\x16\xcd\xa4\xf1\x0a\x74\x9b\x2c\x88\xd9\x17\xd7\x5d\x5e\xc7\x2c\x24\x1d\x06\x3b\xb3\x10\x11\xb3\x4f\xf2\x81\x3f\x42\x44\x26\x5d\x5c\x7f\xfb\xdc\x77\x58\xa6\xa4\xe5\xed\x33\x36\x22\x99\x82\xd7\xfe\x36\xbf\x2c\x88\xcc\xdc\x72\xa3\x76\xbb\x33\xb0\xbb\x29\xea\xcd\xd7\x02\x44\x73\x90\xe9\x1f\xeb\xed\x53\x7d\xf5\x78\xae\x83\x0a\x88\x96\xcb\xeb\x7c\xae\xaf\xcf\xcb\x3a\xf7\xf5\x01\x91\x7d\x50\x97\x76\x8f\x5d\xcf\x47\xa3\xad\xf5\xaf\xcf\xc0\x7b\xd1\xd6\x4b\x9b\xcf\x60\x05\x39\x8b\xf9\xf5\xfd\x00\x91\x9d\x6e\xaa\xfb\x2e\x80\xfd\x5b\xca\xef\x36\x1f\xf8\x34\xda\xa0\x0b\xee\x4c\xc4\xc5\x2e\x3f\xda\xd0\x6d\x9a\x37\xa2\x2f\xba\xdb\x7e\xfb\x8c\x9b\x77\xb0\xf3\x7e\xf4\xc7\xeb\x1e\x86\xba\x49\xdb\x18\x4e\x8c\xc0\x7e\xee\x0b\x5b\xd5\xe6\xd4\x88\xe1\x6a\x38\x11\x02\xfb\x7e\x0b\xdb\xa5\x8d\x3a\x4f\xda\xc6\x78\x7d\xb5\xf1\x2e\x2c\xda\xc1\x60\xa1\x42\x44\x4e\xde\xe9\xc1\x6a\xa4\xd8\x79\xe3\xb7\xbe\x5b\x20\xda\x28\x5e\x97\xda\x48\x73\xe3\x5d\x1d\xc5\xfb\x15\xee\x97\xa6\xd9\x77\x10\xec\x3a\xda\xe5\x32\x2a\x6d\x0d\xc4\x1c\x0c\x75\xa3\xfa\x5c\xd6\x33\x7b\xa7\x7e\x47\xf5\xb9\xd5\xe7\xd2\xa5\x8f\x6a\xde\xaa\xdd\x63\xee\x32\x1d\x4e\x0b\x40\xf4\xb9\xb4\xf9\xdb\x56\x1d\xda\xb1\x75\x9f\x81\xb8\xcf\xe1\x75\x88\x60\x11\xb3\x32\x85\x19\x0e\x1b\x60\xf7\x43\xa4\xf9\xf2\x19\xc8\xc5\x36\x79\x67\x86\xed\x1e\xc4\xa8\xd6\x07\x33\x72\x11\xad\x33\x59\x1d\xf6\x93\x20\xb2\x30\x29\x1b\x8f\xf5\x86\x97\x69\x04\x7d\xd3\xb0\x9f\x04\xd1\x83\xe1\x74\xbe\x48\x1f\x88\xb1\x68\xcf\x33\x78\x2e\x88\x36\x78\xdf\x26\xcb\x86\x62\x5f\xa7\xed\xab\x8d\x3a\xef\x5b\xc9\xd5\xc9\x6a\xb9\x88\xde\xb7\x3c\xad\xb3\x4e\x6d\xd3\x7c\xec\x32\x98\x2c\x7a\x88\x98\x78\x1f\xeb\xb4\x0c\x40\x74\x64\x44\x9d\xbe\xbf\x20\x9a\x43\xe7\x44\x5a\x88\xe8\x78\x0f\xea\x74\x12\x08\xa2\xb1\x68\x5a\x27\x1e\x34\x11\xa3\x53\xbf\xcb\xf6\x0c\x62\xb0\x9a\x5f\x97\x13\x70\x10\xc3\x3e\x76\x15\xea\x08\x44\xda\xfe\x96\x6d\x68\xd9\x86\x86\xbf\xad\x8f\x36\xcb\x8f\xf6\xb7\xf0\x6e\x89\x6d\xe3\x7e\xe6\x17\x44\x1f\x94\xc1\x42\x87\x8a\x68\x8d\x77\x66\xb1\xd8\x21\xf6\x6f\x3b\xb6\x4b\x9b\xef\x1b\xc3\xfd\x5a\xa6\x65\x15\xa7\x28\xa4\x65\xf9\xdb\x65\xbd\x8d\x89\xed\xad\xed\x6d\x9b\xcc\xdf\x1e\xee\x97\xb3\x15\x10\x39\x29\xca\x75\x59\x44\x17\xdd\xd9\x64\x46\xb9\xde\x16\xe5\xfb\x14\x25\x59\xc2\xd1\x25\xf6\x6c\x8a\x24\xd8\x75\x81\x98\xc1\xeb\xbd\xec\xba\xc0\x6e\xc6\x14\xdb\xed\x6f\x71\xbd\x0e\x9c\x17\x75\xd9\x8c\x97\xcd\x78\x31\xec\x2e\x9b\xf1\x72\xb8\x67\x85\xb8\x2e\x87\x7b\x10\xa3\x30\x9c\x5e\x76\x71\x20\xba\xd3\x82\xcb\x2e\xee\x3a\x5d\xdc\xd4\xd6\xb5\x39\x43\xa5\x0a\xaf\xa0\xfa\x41\xf4\xe1\x75\x4e\x15\x40\x8c\xb2\x76\x93\xbd\x58\x17\x17\xd1\x16\x4d\xe7\x2a\x97\xb6\x33\xc4\x72\x1d\xab\xaf\x22\x06\xce\x92\x7a\xe1\x2c\x15\x3b\x2d\x3b\xbf\x17\x6b\xab\x22\xba\x4a\xe0\x4a\xd3\x92\xa6\x65\x79\xdd\x47\xdb\xc7\xe9\x17\xe9\x63\x9d\x52\x44\xe2\xd8\xa9\x57\x37\x6f\xac\x0f\x76\x9c\xed\xf5\xea\xde\x8f\xf5\xc1\x51\x98\x3e\x5c\x76\x49\xd7\xe9\x92\x78\x6d\xaf\xcb\xf4\x5d\x74\x17\xc9\x14\xef\x62\xed\x49\xec\xeb\xf8\xed\xd7\xe7\xa2\xd6\xbb\xc3\xd5\x85\xab\x5e\x44\xf3\x35\xbb\x1e\x6d\x0f\xdd\xf2\xcb\x7c\xd8\x75\x5d\x67\x8a\x67\xfa\xac\xdf\x4b\x15\xc1\x9a\x73\x7d\xab\xac\x41\xb4\xa4\x6d\xbc\xed\xa6\xc0\xee\x42\x76\x99\xbe\x1d\x5e\xc0\xbe\x1f\xd7\xe1\xa9\x10\x31\x07\xc3\xf8\xdb\x29\x19\x88\x89\xdf\xa5\xbe\x9b\xbf\x6d\xb4\xd3\x17\xc3\xcb\x9b\x35\x67\xb1\x6d\xbb\x7e\xdf\xac\xf4\x8a\xdd\x76\xb9\x8e\x75\x4c\xb1\xaf\xeb\xd8\xbc\xdf\x38\xf7\x4b\x6c\xa6\x65\xb8\x0a\xf7\x22\xcd\xe3\xa3\x8d\xd5\xd4\x56\xf8\xad\x5d\x03\xd8\x6d\x17\x9b\xea\x0f\x44\xbe\x98\x66\xbc\x7d\xe5\xc1\xb6\x91\x16\xdf\xdf\xb7\x6a\x63\x32\x3c\xbf\x9d\x2e\xbd\x55\x7f\x95\xae\xe6\xed\x50\x02\x76\xd7\xc0\x75\x1f\xd3\xfc\x71\x98\xa4\xab\x79\x3b\x5d\x02\xfb\x19\x94\x29\xc1\x19\x22\xf2\xc5\x3b\xfd\x76\x2a\x03\x62\xbe\xe8\xd2\xdf\xbe\xd3\x6f\xc3\x29\xce\x75\xd6\xf9\xdb\xd0\x89\x57\xe1\x19\x4e\xeb\xdf\x4e\xeb\x27\xed\xfe\xfd\xf8\xdc\x47\x95\xcd\x50\xfc\x71\x9a\xf1\x71\x9a\x61\x3f\xf4\x09\xf2\x0b\xb6\xa2\xe9\xd8\x52\x9b\xea\x1e\x35\xf4\xc1\x1f\x21\xf6\x74\x64\x3f\xf7\xc3\xaa\xa8\x88\xf9\xaa\xda\x7c\x06\x2b\x57\xe9\xb4\xf4\xe3\xf0\x02\xa2\x57\x9f\xeb\x74\xee\x73\xa6\x73\x2f\x6d\x1f\x6d\xbc\x97\xad\x73\xbf\xdb\x67\xdc\x6f\xa7\x69\xdc\xef\x7e\xb4\x3d\x3e\x77\xff\xf6\x8b\xc3\x57\x44\xc3\x7d\x5a\xbf\xae\x04\x81\xdd\xd6\xf6\xfd\xbe\x0e\x43\x60\xb7\x67\xae\xc3\x15\x2b\xa2\x2f\xa6\x00\xdf\x46\xfa\x40\x4c\xd7\x65\xbe\xae\x66\x80\x3d\x94\x78\xdd\xad\xed\xf6\xb7\x3c\x43\x35\xfe\xd5\xef\x93\xbc\xbf\x5f\xe5\x04\x88\x3e\xe8\x0f\xbe\x4e\x79\xbe\x4e\x79\x1a\xd3\x91\x2f\x7e\x05\xb1\x9f\xa1\xed\xd2\x76\x99\x16\xf2\xeb\xd4\x08\xec\x29\x3c\xcf\x25\x38\x41\xec\xeb\x26\x36\xcb\x80\x15\x93\x6c\x94\xf3\x77\x7a\xdd\x54\x66\xb1\x52\xf3\x75\x98\xfc\x1a\xb0\xf0\x62\x45\xec\x3b\x7d\xc6\xe4\x19\xa7\x9c\x97\x79\x5b\xbe\xab\xfe\x56\x69\x03\x22\x59\x60\xad\x5f\xd5\x38\xd8\x92\x8a\xeb\xde\xb4\x21\x10\x9d\x65\xc8\xfa\x55\xa1\x83\x68\x85\x7e\xfc\xfb\xb1\xec\x5d\x91\x77\x9a\xf6\x55\x4e\x80\x2d\x03\xf9\xad\x53\x19\x10\x39\x0a\xe9\xb3\xfd\x7d\x6d\x7f\x2f\xfa\xe2\xaf\x12\xe3\xab\xc4\xc0\x5b\x57\xbf\x4a\x6b\xb0\xdb\x24\xe9\xbb\x7d\x06\x7e\xe2\x36\xda\xef\x18\xee\xbf\x44\x4b\x89\xe8\x8b\xe6\xfe\xb5\xc9\x82\xc8\xd3\x24\x7c\x45\xbf\x46\x37\x45\xd5\xe6\xe3\x1e\x14\x6b\x67\x28\xf9\xba\x90\x08\xf6\x4c\x51\x9b\x59\x7a\xc8\x52\x65\x46\x7e\x3b\xec\xde\xae\xf9\x0f\xba\xef\xdb\x99\xf6\xed\x4c\x7b\xa0\xc6\x6f\x67\xda\x20\x86\x4b\xa6\xb7\xaa\x18\xc4\x70\xb1\xed\xc6\xb5\x28\x62\xbc\x58\xec\xb8\x71\xd4\x8a\x3d\x14\xef\xaa\xb9\x2f\x7f\x7b\x39\x33\x66\xaa\x70\x5f\x4b\x9b\x43\x09\xcd\xd3\xf5\x75\xb1\x67\x99\x3c\xd7\x26\x01\xf6\x4c\x1b\x9b\x2a\x16\x44\xe2\x82\xab\xb7\x53\x23\x10\x6d\x99\x16\x9b\x89\xb1\x20\xe9\x8c\xf7\xb6\xbb\x05\x91\xb8\xc4\xea\x6d\x33\x01\xd1\x9c\x05\xbb\xc0\x2e\x62\x86\xcf\xb5\xe9\xdc\x36\x1d\x9c\x67\xf5\xfe\x5a\x7e\x5f\x67\x94\xde\xcf\xae\xeb\x36\xe6\x29\xa8\x4b\x17\xdd\x45\x64\x56\xd2\x67\x97\x7e\x16\xe2\x89\xa5\xa8\xf7\xd7\xe7\x12\xcb\x94\x1d\x85\xe9\xe2\xbc\x88\x46\xac\x50\xbd\x55\xac\x20\x32\x51\xb6\xb7\xd3\xbe\xfb\x4c\xfb\x18\xc2\x6e\x9b\x27\xd8\xf9\xf5\xb7\x96\xfd\x6d\x77\x71\x6c\x6f\x6d\x2c\xb6\x77\xeb\xcd\xe9\xc3\xed\xf4\x21\x50\x20\xb7\x6d\x12\xec\xb2\xa7\xac\x1c\x36\xc0\xbe\xce\xdf\x9a\x8f\xe7\x94\x9f\xd7\x59\x7e\xcf\x29\x3f\xd2\xf7\x58\x47\x8f\xdd\x05\x43\xe2\xa3\x4f\x01\x44\xd6\xa1\xad\x69\x63\x3a\xe7\x2b\xfa\xd8\x9e\xc1\x4e\x8b\xd7\xdd\xda\x58\x95\x09\xa6\x96\x8f\x8b\x9a\x8f\x71\x6e\x44\xd2\xd4\xc7\x69\x06\x88\xc4\x7d\x5e\x1f\x5c\xdb\x62\x4f\xbf\xb0\xa9\x22\x40\xa4\xd3\xeb\xc7\xe9\x03\xd8\xf7\xdb\xf9\x78\x5c\x3c\x7e\x5c\x3c\x9e\xe4\xf7\xf9\x98\x0f\xe2\x8e\x46\x65\x35\xe8\xb1\xce\x1f\xeb\xbc\xd2\xae\x1e\x87\xb0\xc7\x58\x35\x5c\x85\xf5\x71\xba\x0e\x62\x06\x4a\xea\x21\x2a\x52\xec\x69\xe4\x6e\x2f\xcf\x63\x9a\x89\x63\x1c\x13\x49\xf0\x58\xf6\x8f\x2a\x8c\x15\xbb\xf6\xa2\xfc\x44\x74\xba\xc7\xa6\xd3\x43\xec\xe7\xe6\xb6\x31\x4d\x13\xdb\x36\xb6\xad\x25\xb6\x66\x5a\x76\x77\xdb\x5e\x94\xa9\x88\x31\x1b\xcf\x60\xda\x2c\x76\x57\xb8\xb6\x8d\xe1\x4a\x44\x12\x18\xd1\x5e\xdd\xfb\xe1\x56\xef\xa8\xd3\xf6\x62\xb8\x12\x31\x71\xb2\xb6\x17\xc3\x95\xd8\xb6\xb2\x6d\xf4\x25\x62\x97\x1f\x69\x7e\xbf\xb1\xbd\x5d\x8d\x4c\xd2\xf2\xf6\xb7\xbc\xfb\x3d\x5e\xa4\xf9\xe3\x6f\x5d\x68\x8f\xc0\xf6\xd5\x46\x3c\x61\xc7\xd9\xd0\x5e\x5f\x7f\xfb\x75\x15\x6f\xf1\x8c\xc7\xf4\x3d\x4a\x8c\xfd\x4e\x37\xa3\xaa\xc4\x4e\xcb\xc0\xd6\xb4\x35\xfb\xf6\x89\x6d\x69\x73\xea\xbb\xa7\x91\x2d\x68\xa7\x22\x32\xea\x7e\x6e\x30\xcd\x10\x91\xd1\xb0\x21\x1d\xc4\xfe\x2d\xcf\x20\x18\x40\x44\xcb\xad\xd0\x5b\x74\xef\xd7\xcf\xfd\x76\x99\xc6\x20\x1f\x20\x92\x15\xd9\x66\xa0\x95\xd8\x53\x78\xf2\xf1\xf6\xb9\x3a\xc5\x0b\x65\x15\x1f\xf3\xc1\x14\x74\x12\x47\xdb\x82\x3e\x51\x44\xa3\x4d\xb6\xf8\xf8\x0c\x1d\xd8\x25\x78\x06\xc3\xa4\x88\x86\xbc\x6b\x71\x7b\x1d\xd3\xaf\x16\x8d\x7c\x3c\x96\x0b\x6d\x37\xe9\xaf\x5a\x61\x6a\x29\xb6\x6d\xe7\xa3\x30\x46\x89\x68\x04\x36\x34\x03\x94\xc4\x7e\x2e\xd7\xd9\x86\x8c\xbd\x4c\x56\xbe\x5b\x19\xda\x58\x7d\x9d\x84\x68\xb5\x82\xf7\x58\x6c\xdb\xce\x47\x21\xc0\x40\x6c\xdb\xae\xf3\xc2\xca\xa8\x88\xde\x5e\xfc\x96\x15\x22\x11\x2d\x5f\xe5\x37\x87\xfb\x56\xde\x3e\xce\x85\xd3\xb6\xbb\xd6\x56\x1e\x1f\xf7\x9c\xc5\x4a\x92\x8a\x0a\x13\x7b\x16\xe7\x75\xfe\x96\x2e\xb3\xb3\xa0\xd7\x2a\xea\x4a\x44\xa3\x1b\x68\xd5\xea\x07\x5b\xf1\xef\x6a\xad\x28\x4c\x11\x13\xaf\x5c\xab\x6f\x8a\x03\xc4\x20\x8a\xae\x11\xc7\x79\xb0\x67\x67\x3b\x2d\x95\x60\x51\x11\xc3\x6a\xad\xbe\x16\xd5\xd7\x62\x35\xee\x47\x97\x24\x62\x16\x6d\xa8\x0d\xb1\xaf\xdb\xbf\x35\x1c\x54\x6c\xf5\xf7\xc2\x56\xb4\xb9\x88\x46\x15\x36\x66\xe4\x62\x5f\xb7\xef\xd7\x58\x98\x14\xdb\x36\xb0\x7d\xb5\xf9\xdc\x3d\x6b\x6d\xfa\xfe\x44\xb4\xf3\x5b\x66\xa3\x22\x66\xe9\xa4\x65\x69\x5b\x0e\x39\x03\x1b\x0b\x61\x22\x1a\x7e\xaf\xd6\x2e\xd3\x77\x15\xa7\x23\xdc\xef\xed\x75\x6f\x9b\x5d\xe7\xb9\x04\xf5\x8b\xe8\xd6\x65\xfb\x78\xdd\xc7\x21\x8c\xae\xa1\x7d\xcc\xc7\xe7\x2c\x1e\x17\x6c\xb7\x36\x5e\x5b\x56\x65\x5a\xfb\x9a\x37\x17\xa8\x99\x6a\x35\xfd\x81\x62\x5f\x47\xf9\xe1\x0f\x14\x7b\x86\xda\xb1\x2d\x6d\x0c\x61\x93\xfa\x6d\xb7\xe5\x42\xd0\x7d\x16\xf3\xc6\x70\x2f\xb6\x92\x22\x2d\x28\x47\x11\xfd\x95\xd8\x6c\xa7\x4d\x45\x38\xea\xce\x6f\xda\xed\x81\x3d\x4b\x5f\xd8\x9a\x36\x5f\x9f\xad\x90\x5a\xda\xed\x81\x48\x16\xa8\x5b\xbe\xde\xda\x6c\xbb\x74\xe9\x49\x98\xa9\xd8\xaf\x37\xf7\x73\x68\x4a\x55\x18\x91\x3a\x2d\x59\x20\x14\xfb\xba\x81\xed\xd6\x76\xbb\x30\xbe\xcb\x2f\xab\xe9\x63\x91\x39\x09\x50\x6e\x59\x7d\x2e\x6a\x6d\x96\xc9\x73\xab\xcf\x20\x50\xa5\x65\xd5\xf6\x68\x3b\x5d\xff\x2e\xe7\x6c\xde\xaf\xa9\x04\xe8\x2e\xf4\x9d\x8a\xdd\x86\x3a\xb6\xa2\xcd\xf6\xd2\xbd\x2e\xb5\x59\xe7\xb4\x53\xa3\xe0\xda\x89\x82\xb3\xdd\x1b\xa5\x26\x62\x0e\xcb\xca\xee\x0c\x44\xab\x8d\xb4\x0c\xcb\x60\xf8\x4e\x4f\x9e\x3b\x7d\x06\xca\xac\x31\xb5\x6c\x69\x3b\x48\xdb\x41\xd0\x75\x19\xf2\xd3\x4e\xc8\x4f\x61\x88\xed\x2c\x46\x8b\x68\x95\x77\xab\xa3\xe4\x45\x34\x9c\x5d\xad\xb3\x3a\x27\xf6\x6f\x77\xfa\x3a\x11\x7e\x22\x9a\x43\xb1\xce\x2e\x11\x0d\x9f\x72\xeb\xac\xac\x88\x3d\xa5\xe5\x19\x0e\x1b\x60\x4f\xeb\xf7\x3b\xd8\xbf\x5e\xc7\x54\x3a\x59\x81\x69\x3a\x52\xc4\xbe\x6e\xa7\x65\xd8\x47\x0c\x55\x3b\x2b\x03\x6d\xb0\x52\x28\x22\xf1\xf1\xb7\x81\xca\x16\x7b\xc8\xde\x65\x30\x98\xba\x89\x48\xb6\x19\xb4\xb1\xfc\x2d\xfe\xe3\x89\xd2\x6b\xe3\xa2\xac\x40\xf4\xe4\x3d\x1a\x6f\x6d\x84\xf0\x74\x16\xf8\xdb\x20\xca\x41\xc4\x60\xc3\x50\x1b\xf6\x89\xc3\x3e\xd1\x29\xcf\xf0\x3d\x02\x31\x62\xed\x3a\x9f\x4c\x73\x45\x8c\xc5\x3b\x3d\x7d\x3f\xc0\x9e\xba\xed\x72\x99\x95\xb2\x07\x31\x89\x75\x6d\x93\xa8\x49\xb1\xa7\x73\x3b\xcd\x93\x15\x31\xb1\xcb\x99\x67\x2c\xef\xe7\x62\x74\xd9\xd3\xeb\x36\x2f\x7f\xab\xca\x76\x38\x9d\x84\x2c\x89\xad\xee\xb9\x9f\xf5\x31\xad\x8f\xc1\x3b\x38\xed\x9b\x40\xf4\xbe\xa7\xd2\x6d\x9a\xdf\xe9\xb4\x94\x15\x9d\x36\x91\x09\x62\x97\x3d\xf7\x73\x0a\xa5\x73\x20\x17\xed\x79\xd9\x26\x97\x53\x78\x22\x0b\xdb\x72\x0a\x00\x62\xb0\x82\xda\x16\x71\xd6\x62\xa7\x79\x97\xcb\x72\x5c\x00\x5b\x26\x24\xb6\x4b\x9b\x2b\x12\xcb\xeb\xbe\xda\x9c\xe6\xd2\x26\x57\xf5\xb7\x38\x8d\x33\x53\xdb\x47\x9b\xf2\x84\x77\x70\x55\x9f\x5b\xed\x9f\xcb\xef\x18\xee\x97\xb3\xe5\xe5\x6c\xd9\xd9\xed\xb2\xbb\x58\xee\x32\xf1\x55\x5e\xce\xa0\x97\x33\x68\x87\xdd\xe5\xcc\x78\x19\x70\xda\xa6\x36\xb3\xe4\xcc\xb8\x32\xc4\x2e\x16\x3a\x45\xb4\x39\xc9\x26\x7e\x0c\x11\xcd\xe1\x5e\xc7\x82\xd8\x33\x45\xee\x47\x64\x9b\x88\x59\x69\x76\xcb\xe1\x05\xec\x59\x0d\x45\x7e\x9b\x16\x15\x08\x21\x50\x6d\xdd\xfe\xf6\x76\xd1\x1a\xdb\x65\x17\x72\xd9\x85\x24\x33\xd9\xcb\xee\x1b\x44\x9a\xdf\x8b\x90\x69\xb1\xef\xb7\xd3\x7c\x59\x0d\x57\x3d\xcf\xd8\xcf\xbd\x58\x74\x15\x7b\x1a\xc4\xfd\xde\xfe\x96\x45\xa0\x41\x60\x7f\xbb\x50\xfc\x62\x37\x4f\xee\x87\xf2\x16\xd1\xec\x82\x2f\x87\x49\xb0\x9f\xc1\x6f\x1f\xd3\xfc\x98\x66\x5e\x5b\x17\xb7\xdb\x59\xdc\x46\x99\xb5\x37\xfe\x4f\xb1\xf3\x8b\xcd\xd7\x11\x44\x67\x67\x56\x7b\xab\x54\xde\x2e\xac\x55\x86\x97\x37\xe1\x30\x62\xdf\x8f\x67\x58\x6f\x2e\x50\xb7\x9c\xda\xde\xda\x9c\xf6\xbd\x78\x06\xe1\x49\x22\x7a\xa5\x19\xbf\xa7\xb6\x79\x56\x01\x78\xae\xb3\x79\x10\x59\xe9\x96\xdf\x28\x51\x11\x4d\x05\xe2\x42\xb6\x88\xd6\x53\x9b\xf9\x30\x94\xa6\xf2\x9a\xbd\x09\x5d\x13\x31\x2b\xd3\xcd\xf7\x5b\xdb\xdb\xba\x44\x0d\xb9\x90\x2d\xa2\x75\x86\xbf\xb7\x53\x9e\xb7\x53\x1e\x76\x48\xb5\x8f\xd3\x82\x8f\x6a\x88\x80\xfb\xf6\x79\x0d\x6d\x43\x5b\x60\xbb\xb5\x79\x3f\x14\xd2\xc7\x21\xfb\xe3\x02\xab\xaa\xf3\xe3\xeb\xf8\x31\x8c\x89\x9d\x68\xed\xe3\x30\x04\xa2\x13\x54\xde\x3e\x84\x27\x89\x9d\x0f\xae\x1b\xda\x5c\xd4\x5c\x4c\xfb\x3e\x97\xe9\xc3\xc9\x36\x3b\xd3\xe6\x8f\x5d\x21\x88\xc4\x39\xd0\x3e\x4e\xfb\x3e\xc6\x52\x34\xa6\x28\x1f\xa7\x7d\x20\x72\x31\x6c\xb8\x90\x2d\x76\xfa\x78\x06\x2b\x35\x22\x7a\x58\x06\x76\x99\x20\xba\xdd\xcf\xd7\xe9\x12\xd8\xf9\xd8\xcf\xfd\x12\xcc\x28\xa2\x77\xda\xf3\x17\xc7\x96\x88\xd6\xe9\x0f\x5c\x60\x15\x31\xea\x1a\xd8\x3e\xda\x8c\x09\x29\xbb\xfc\x6e\x87\x1c\xc0\x52\x74\xbb\x9d\x98\x03\xe2\x32\xda\xed\xf4\x0e\x28\x42\x6e\x6b\xf1\x76\x72\x87\xd7\xb9\xdd\xd6\x22\x30\x40\xa9\xdd\x38\x7a\x85\xa3\xfc\x6d\x96\x00\x01\x23\xed\x26\x90\x41\xb0\xb8\xd5\x6e\x47\x3c\x40\xec\x5b\xbb\x89\xf2\x14\x1d\x07\x50\xbb\x71\x42\x88\xce\x40\x7e\xdb\x62\x40\x7f\x85\xa6\x47\xd3\xc3\xef\xb8\xb9\xe5\x07\x08\xb6\x6b\xb7\x83\x0b\xf0\x3d\xb8\xc3\xdc\x6d\x10\x8a\xda\x6e\x27\x40\x60\xd0\xc7\xdd\x4e\x51\x81\x93\xb3\xdb\x09\x07\x18\xd4\xdf\x6d\xff\x01\x08\xfa\x6c\x77\x98\x59\xf7\x75\xf6\xe9\x55\x66\x2e\xac\x15\x7a\xbc\xdb\xc1\xed\x8e\xe7\xe7\x1f\x93\xbe\xe8\x2e\xa6\x92\x5d\x56\x39\x18\xb2\x6e\xfb\x4f\x10\x83\xbd\xb8\xed\x2e\xa6\x8b\x5d\x64\x2c\x66\xb6\xbb\x98\xb0\x8d\xe4\x25\xbc\x1d\x13\x6f\xbd\xa3\xc5\x7a\x50\x43\x02\x67\x0a\xb7\x5d\xdd\x6d\x57\xa7\x12\xb9\x1d\x39\x41\xef\x5a\x4c\x6a\xb1\xd8\x31\x55\xcb\x78\xa3\xb3\x2e\x72\x57\x53\xbf\xd1\x5f\x95\x54\xb9\xb4\x01\xe2\x45\x9b\xbd\x9d\xa6\x83\x5e\x79\xbd\xef\x6a\x76\x36\xb2\xd2\x82\xec\x6c\x41\x8c\x3e\xb5\x99\xc3\x8d\x6e\x9e\x5d\xb4\x02\xbe\x24\xb7\x9d\x07\x18\xf9\xdb\x1b\xd0\xda\xed\xe0\x0f\xfa\xab\x9a\x31\x73\x5f\x4f\x3c\x35\xa5\xa4\x3e\x00\x89\x1a\xba\x9b\x99\x6d\x6e\x4c\x64\x66\x77\x37\x73\xbb\x91\xb8\x58\x9b\x6b\xea\x22\xcf\x45\xb6\xb2\x0d\x7b\x9e\xbb\x99\xd9\xe6\x3b\x45\x3e\x9a\x79\x6d\xe4\x55\x8b\x79\x6d\x67\x91\xd2\x9b\x9b\xdb\x8d\xce\x5c\xfa\x6e\xa6\x7d\x83\xc8\xe2\x76\x3b\x1b\x06\xc3\x57\xa1\x99\x97\x8d\xe1\xab\xa0\x82\xb9\xf7\x94\x64\x4e\x4a\x36\xad\x91\xb4\x81\x51\x2c\x69\x92\x36\xca\xcb\x2e\x23\x4d\xd3\x46\x9a\xdd\xb4\xcd\x9d\x1d\x41\xf6\x0f\x76\xd4\x20\x46\xb7\x7e\xd5\x42\x20\xd7\xb9\x99\x49\xdf\x20\xd8\xb4\xdd\x69\xd2\x37\xba\xef\x42\x9a\xf4\x8d\xce\x64\xf0\xee\x26\x61\x63\x32\xfe\xde\xce\x9b\x6e\x57\x83\xa6\x6d\x6e\x58\x0b\x84\x0c\x57\x0b\x7d\x98\x9d\xe1\x34\xc2\x72\x70\xf8\x05\xc5\xde\xf9\x76\x2d\x0d\x8c\x81\xc6\x72\x53\x43\x3b\x9b\x1a\xd8\x3a\xdc\xee\x69\x6b\x30\xb0\xcf\x89\xcf\x3d\x2d\xd5\x8d\x9a\x76\x7a\xd3\x74\xcc\xf6\xf3\x8f\xf5\xb2\x7e\x54\x71\x20\x19\xdc\xdd\x0c\x21\xba\x25\x38\x6d\x20\xd3\xe8\xd2\x97\xbf\x33\xfd\x1b\xbd\x9b\x06\x8b\xc2\x80\x96\xe9\x1b\x32\x2d\xfb\x8d\x50\xc2\xba\x87\x42\xb8\x00\xc0\x76\x8a\x83\x8e\xb7\xbb\xdd\x4e\x3a\x40\xb7\xad\x39\xd4\x80\xce\xba\xc6\xbd\xcc\xdf\x46\x67\x1a\x7b\x3b\x05\x01\xfd\xc5\x42\xc7\xed\xfa\x1a\xe8\xcc\x2b\xdc\xaf\x21\x3a\xb3\xa3\x5b\x21\x06\xa2\x0d\xbb\x84\x65\x66\x16\xf5\x4a\xba\x97\xf5\xba\xec\x55\xad\x57\x65\x0e\x08\xd5\xc1\xbd\x4c\xb9\x51\xf8\xb6\x1a\x17\x7e\x40\x74\x5f\x42\xd7\x7d\x40\x5a\x5b\x4e\x99\x41\x67\x8d\xe1\x76\x1d\x08\x10\xee\xd6\x6e\xa7\x0d\xc0\xc9\xb7\x5b\x48\xc4\x74\x80\x54\x41\x82\x69\xd7\xef\xd2\xb5\x6e\x30\xe2\x1d\xdb\x7d\x99\x6e\xe2\x36\xab\xe5\xab\x3a\x3b\x9b\x47\x6c\xff\x6f\x8b\x73\xa3\xbc\x1c\x92\xd5\xa2\x60\xbd\x7c\x9d\x9d\x8f\xdc\x2e\x43\xfd\xfa\x4b\x4b\xcf\x8d\xad\x81\x44\xba\x5d\x02\x04\xdd\x4e\xc6\xf5\xf3\xfb\x7d\x5e\x4c\x1f\x60\xeb\x60\xd1\xb2\x0d\xab\xd5\x35\xf5\xfb\x04\x46\x3b\xc2\x3a\xeb\x03\x7d\x70\x37\x97\x13\x81\x02\x51\x9f\x9b\xe8\xaf\xf0\x22\xb3\xb4\x41\x98\x67\xbb\x5d\x70\x06\xdd\xbe\xe7\x63\x1e\x3f\xbb\x3b\x34\xe9\x2e\xe0\x83\xfe\x72\x20\xfb\x98\xc3\x8d\xfe\x0a\xef\x64\x06\x3f\xbb\x37\x74\x38\x75\x5a\x06\x3a\x93\xc1\xdb\x75\xb7\xdb\x00\xeb\x62\xc9\x7f\x4d\xc1\x77\xfc\xfc\x63\x38\x90\xe9\x1c\x00\xc3\xf1\xcf\x75\x51\x30\x6c\xb4\x5f\x9f\xf6\xb5\x38\xb9\xf9\xd7\xb2\xfb\x3a\x96\x90\x5f\x75\x33\x30\x9c\xbf\xe9\xd5\x13\xa7\x7c\x55\x61\x60\xd8\x64\x9c\x3b\x82\xfe\xaa\x9a\x2c\xb9\x2d\x67\x86\xef\xbb\x42\x0d\x0c\x27\x47\xb7\xe9\xbe\x29\x27\x04\xb9\x3e\x3f\xd1\x5f\xac\x2b\xdc\xae\x0b\xde\x1e\xc6\xd1\xcf\xdd\x6d\x0a\xb7\xae\x14\xc4\xcd\x7d\x9b\xd0\xdb\xa8\x15\x7f\xfb\x58\xed\x1b\xd3\x37\xe9\x31\xa9\x0f\x49\x1d\xed\x77\x0c\xb9\xae\x13\x83\xe9\xa8\xe1\xaa\x01\x58\x36\x60\xd7\x4d\x40\x7f\xf9\xaa\xb9\x24\x04\xfa\xcb\x06\xf6\xd8\x52\x36\xa6\x83\xc8\xe3\xcb\xf0\x30\x94\x0e\x6f\x6e\xa1\x3c\xf6\x2e\x2c\x49\xdc\x2e\xb9\x83\xe9\x8b\xf5\x58\x51\x1b\xcb\x4e\x57\xad\x08\x08\x7f\x69\xfa\x27\x85\xfb\x17\xda\xe3\x34\x1a\x10\x52\xdc\x1e\x57\xb7\x41\x77\x91\xf4\x71\x66\x0d\xa2\xb1\x89\xa0\xe9\xd7\x14\x46\x9f\xb5\x87\xfd\x3e\xa2\xb3\x71\xb6\x3d\x4e\xad\x41\x7f\x0d\x13\xb1\x34\xd1\x31\x4e\x2c\x97\x96\x6b\x67\xc6\x9f\xbd\xb5\xbc\x77\xaa\xbc\xf7\x57\xcb\x77\x5f\x63\x02\x6e\x2d\xcc\xe8\xba\xe9\x7c\x34\xed\x1c\xa3\x12\x1e\xe7\xd1\xcf\x9e\x35\x4f\x16\x91\x9e\x30\x7b\x41\xf6\xa6\x17\x99\xbd\xa0\xd7\x67\x0c\x7e\x9c\x5b\x83\x4e\x3c\x47\x7b\x9c\x5c\x83\x89\xb8\x7f\x9c\x4a\x83\xce\x3e\x84\xf6\x38\x97\x06\x13\x45\xf7\x38\x97\x7e\xdc\x21\x30\xe8\xe2\x1f\x57\x19\x80\x91\x8f\xed\x29\x26\xab\x98\x2c\x6e\xef\x84\x18\xec\x5f\x92\xd4\xe2\xfd\x0d\x22\x1c\xa6\xd5\x09\x30\xe8\xec\x43\x6e\x8f\xf3\x5f\xd0\xf5\x49\x3e\xc5\xb2\xd9\x08\x76\x0e\xb7\xc7\x09\x30\x08\xbc\xf8\xed\x71\xba\x0b\xb6\xde\x26\xe3\xce\x77\x41\xd7\x99\xf9\x28\xe5\x40\xb8\xe0\xfe\x38\x05\x06\x71\x0a\xc3\x39\xf0\xe3\x1c\x98\xc3\x75\xda\xe3\x1c\x18\x84\x4b\x9b\x8f\x93\xe0\xc7\x3d\x0f\x1c\x19\xd0\x9e\x6a\xa9\x11\x5b\xed\x30\xf1\x38\x33\x06\x3d\x6c\x5d\xce\x7d\x41\xe0\x46\x6f\x8f\x73\x5f\x10\x04\x05\xb5\x47\xed\x0d\xba\xce\xe2\xc7\xd9\x30\xe8\x61\xbb\x70\x3a\x0c\xba\x2e\xb8\xc7\xd9\x30\xd8\xcd\x9e\x5f\x3a\x1d\x06\x41\xe0\x50\x7b\x9c\x0f\x83\x48\x5d\x53\x4f\xb3\x34\x08\xa8\x22\xd0\xa3\x3d\x4e\x92\x41\x70\xf2\x52\x7b\x9c\x24\x83\x38\xad\xcc\x59\x32\xe8\x61\xfd\x3a\x49\x06\xd1\xc6\xd0\x66\xce\x37\x8e\x83\xef\x71\xe6\x0c\xe2\x75\x52\x61\xce\x59\x48\x3e\xaf\x88\x73\x67\x10\xaf\x46\xf9\xa4\xcd\x80\x35\xbe\x17\xc2\xee\x71\x3e\x0d\xba\xbe\x74\x63\x11\x44\xd7\xaf\xf1\xa4\xad\x80\x28\x39\x3d\xcb\x8f\x6e\x03\x10\x1c\xbc\xd1\x1e\x67\xe2\xa0\x87\xfd\x89\xfe\x76\x10\x2f\x16\xf2\x0c\x6b\x10\x3d\xec\x04\x9c\x9c\x1b\xd5\x70\xda\xb5\xb3\x73\x10\x3a\xc0\x1e\x27\xe7\x20\x5e\x36\x58\xe7\xe6\x20\xd8\x5e\xdf\x1e\xe7\xe6\x20\xec\x7b\x1f\x27\xe7\x20\x5e\xe9\xed\x2d\x1c\x66\xe7\x2e\xdc\x3c\xba\x6b\x41\xb0\x7d\xbd\x3d\xdd\x96\xd2\x69\x29\x2c\x71\x3d\x7a\x41\x40\x0f\xdf\xde\x6e\x79\x75\x1b\x0a\x6d\xa7\x5b\x5e\x1b\x9d\x6d\xd4\xed\xd1\x4b\x0e\x3a\x1b\x9c\xdb\xa3\x20\x00\x51\x9b\xf7\x32\xdb\x1b\xbd\xd9\x4b\x77\xb3\xbd\xd1\x5b\x78\x2f\xb3\x8d\x77\xbd\x32\x7a\x3f\x7a\x57\x41\x6f\x61\x22\xcc\x23\x2b\x7e\x95\xc5\x95\xc7\x05\x3f\x10\xb5\x6a\x32\x43\xc3\x60\x3d\x4b\x5a\x0d\xf2\xa8\x41\x50\x9a\xcf\x30\x47\x1b\xdd\x95\xb8\x67\xd8\x02\x08\xcb\x73\x11\xf9\x19\xb6\x80\x8d\xee\x3a\xdc\xa3\x3b\x08\xf4\xba\xbc\xca\x16\xb0\xd1\xdb\xeb\x77\x48\xdf\x67\x58\x52\x1b\xbd\xbd\x4c\xa3\x25\x85\x1b\xa7\xfa\x12\xb8\x4c\x09\x82\x88\xfd\x66\x1c\x8c\xe8\xd5\xc6\xe6\x22\x1b\xe8\xae\x47\x3e\x8a\x29\x10\xb5\x79\x7b\x0b\x8f\xc0\x84\xca\xfc\xe4\x51\x4c\x81\x5e\xed\x4a\xd4\x52\xa0\x37\xd6\x3b\x1e\xa5\x14\xe8\x2d\xfc\xa1\xc5\x39\x2d\x4e\x92\x3a\x2d\xce\x69\x71\x52\x11\xaa\x2b\xd0\xab\x3d\xb9\xf2\x0a\x04\xc1\x48\xed\x51\x5f\x81\xb3\xea\xfa\x28\xaf\x40\xa8\xe7\x1e\xf5\x15\xe8\xae\xb5\x3d\xd3\xf2\x22\x10\xb2\x0d\xbb\x20\x25\xd7\xa3\xe4\xaa\x26\xdf\xd2\x61\xdb\x3a\xf1\x63\xed\xd1\x41\x0d\xc2\xc5\xfd\xc7\x45\x5d\xd0\x09\xbe\x6c\x8f\xa2\x0b\x44\x45\x3a\x3c\xaa\x2e\xd0\x1b\x2b\x31\x8f\x1a\x0b\x74\x36\x50\xb4\x47\x91\x05\x7a\x63\xea\xfd\xb8\x16\x0c\x82\xe3\x7a\xda\xe3\x52\x30\xe8\xed\xe5\xbd\xcc\xf7\x46\xaf\xf6\xe3\x0a\x2f\xe0\x1e\xb8\xf6\xa8\xbb\x1e\x75\x17\x33\xc3\xc7\x65\x47\xd0\x1b\x1a\xe1\x71\x55\x19\x84\xfe\xdd\x47\x75\x06\x7a\x73\x48\x53\x66\x81\x3d\x4c\x90\x0a\x25\xd3\x73\x9d\xb1\x9b\x8c\xab\x99\x1e\x83\xe4\x1b\x7a\xfa\x71\xcd\xf6\x51\x34\x85\x97\x59\xb0\xec\xc8\x1d\xb6\x6a\x57\x71\x1f\x57\x71\xbb\x0d\xd6\xd8\x17\xd0\x0d\x59\x7a\x94\x5b\xa0\xbb\x78\xf2\x18\x09\x02\x62\x98\x75\x15\xd8\xe3\x86\x7e\xcb\x5f\x05\x06\x62\x14\xaf\xb2\xad\x6c\xf4\xe1\xd0\xaa\xfe\x02\x5d\x55\xf1\x28\xc0\x40\x1f\x0e\x1d\xae\xba\x3f\xef\xb3\x69\x99\xa6\xae\xfe\x7a\xd4\x5f\xbe\x10\xca\xaf\x47\xf9\xe5\xd8\xa1\xfe\x7a\xd4\x5f\x4e\x2a\x14\x60\x20\x5c\xc8\x7a\x14\x60\x20\x86\x15\xa0\x02\x03\x31\x2c\x57\x43\x16\x40\x1f\xf6\x03\x1f\x33\x79\x54\x99\xf7\xb2\x96\xdc\xa1\x17\xe7\x91\x66\x1c\x5d\x36\x1c\x9b\xd4\x65\x8f\x67\x16\xd8\xd7\x7e\xcc\xb8\x52\xcd\xc1\xe3\x63\xfb\xf9\x28\x3c\xed\xd3\xd4\x6f\x8f\xfa\xcd\xe6\xaf\x80\x03\x31\x8a\xbf\xb4\x78\x3c\xeb\xc0\x96\xa7\x0b\x13\x04\x01\xaf\xed\xd1\x45\x04\x62\xf8\x76\x7d\x2d\x8b\xaf\x62\xd4\x1f\x5a\x16\x5f\x96\x2b\x1c\x0e\xbf\x56\xf8\x46\x57\x67\x19\xcc\xd7\x4e\x30\x9f\xe3\x82\x92\x11\xc4\xb0\xda\xd4\x8c\xa0\xbb\x56\xfc\x28\x1a\x41\xb0\xfd\xae\x3d\x06\x4d\x81\xee\x32\x94\x71\x81\xa2\xbb\x34\xfd\xa8\x23\x1f\x37\xf2\xfa\x8a\xab\x23\x1f\x8f\x6e\x28\x3e\xd1\x92\xc0\x9d\x37\x7c\xeb\x6f\x4b\x82\xed\x21\x1c\x3f\xd1\x1e\xc5\x25\x88\xe1\x70\xa8\xaf\xec\x71\x8b\x79\xb3\x3d\x29\x2f\x8d\x44\x6c\xd3\x49\x92\xa1\x22\xa0\x0f\xe7\x65\xaa\x44\x50\xc2\xf9\xb9\x31\x5f\xa0\x84\x0f\x50\x25\x82\x62\x04\xde\xa3\x0c\x04\xd1\xc3\x29\xb5\x42\x10\x94\xf0\x4d\x52\x09\x82\x61\x0c\xdd\xa3\x12\x04\xee\xaa\x69\x8f\x4a\xf0\xd9\xba\x6f\x18\xc9\xf6\xa8\xfb\x40\x09\xdf\x1a\x03\xcf\x0c\x9a\x6c\xc5\x46\xac\x77\x1a\x94\xb0\x75\xaa\x05\xc1\x4e\x19\x85\xf6\x98\xcd\xc7\x6c\x8e\x9f\xfe\x90\x1e\x81\x21\x0a\xfe\x9d\xf4\xc8\x8b\x3c\x47\x5e\x70\xa6\x65\x7a\xe8\x85\x18\xb1\xc6\x6f\x0e\xcc\xf9\xc2\x39\x2e\x0a\x21\x8c\xc9\x91\x19\x07\x23\x96\xa6\xa9\x89\x08\x46\x22\x90\x93\x53\x34\x0e\x4a\xec\x1e\x37\x39\x46\xe3\xa0\xc4\xb9\xea\xa3\xe9\xcb\xba\x92\x57\xdd\x9a\xee\x5d\x7e\x61\xf6\x1e\x4d\xbb\x16\x73\xcf\xf9\x92\xc3\x35\x0e\x4a\xec\xf6\x95\x1e\xb2\x21\x0a\x61\x85\xe9\x71\x7a\xc2\x90\x87\xf4\xe0\x0d\x51\x62\xf7\xd3\xc9\x21\x1c\x07\x83\x0e\x38\x5f\x61\xbe\xc3\x7c\x93\x88\x30\xdf\x41\xbd\x06\xa9\x0f\xf3\x1d\xd4\x6b\xf1\x89\x66\x3b\xcc\x76\x60\xba\x34\x59\xad\x9a\x2c\x89\x8d\x51\x5e\xfe\xd0\x92\xd8\x18\xe5\x5c\x65\x49\x6c\x8c\x58\x26\xd5\x92\xe0\x68\xb7\x30\x11\xc5\xba\xdf\x18\xc5\x6c\x17\x0b\xa7\x58\x38\x64\xa8\x58\x38\x1b\xa3\xbc\xfc\xa1\x85\xc3\x11\x70\x9c\x93\x92\x1e\x12\x28\x0a\xe7\x06\xa6\xa7\x04\x8a\x12\x2f\x0a\xba\x58\x12\xc5\x92\xd0\x64\x49\x14\x4a\xc2\x4a\x2b\x96\x44\xa1\x24\x5e\xa4\xbe\x58\x12\x1c\x28\x17\x45\x93\x25\x51\x6c\x13\xb4\xa6\x62\x49\x14\x4a\xc2\xb2\x47\x05\x8b\x42\xf8\x44\xbe\x8a\x85\x43\xd8\x55\x1b\x96\x4e\xb1\x74\x36\x46\xf1\x35\xa8\x96\x4e\xa5\x74\xcc\x64\xb5\x74\x36\x46\xb1\x05\x54\x8b\x62\xc3\xa8\xe6\x7c\x55\xdb\xc9\xf1\x71\xda\xf4\xab\xc5\x53\x79\xdb\x7d\xa5\xaa\x65\x51\x7d\xdb\xbd\x99\xe9\xe7\x70\xbb\x78\x51\xfa\xcd\x54\x6c\x0c\xc6\xf3\xf4\x28\x17\x31\xd8\xf4\x90\xaf\x66\x2a\x1a\xa7\xdd\x74\xea\xa8\xf9\xc4\x46\xd3\x4c\x4d\x56\xc8\xc6\x60\xa4\xce\x57\x33\x11\x1b\x25\xd3\x27\x5a\x21\x1b\x83\x5d\xce\xf9\x6a\x56\x48\xe3\xd0\xc1\xae\xc9\x0a\xd9\x18\x0c\xae\xf9\x6a\x56\xc8\xc6\x60\xbf\x4a\xbe\x9a\x19\xda\x28\xd9\x29\xc3\x66\x85\xe0\xdc\x61\xa7\x55\xbe\x9a\x15\xd2\xf0\x58\x74\xd3\x65\x7d\x34\xdf\x5b\x7e\x98\x66\x3b\xc9\xb6\xf7\x4a\xb3\xbd\x31\xd8\x24\x9b\xaf\x34\xdb\xc9\x59\x84\x9d\x74\xa5\xd9\x4e\x43\x9f\xec\x04\xd2\x7c\x6f\x8c\x61\x81\xa5\xf9\xf6\xbc\xb8\x69\x85\xa7\xb9\xdc\x28\x1c\xf8\x97\xaf\x34\x97\x69\x2e\x49\x6c\x9a\xcb\x24\x97\x49\x7d\xa7\xb9\x4c\x73\xe9\xbd\xcc\xe5\xc6\x18\xd5\x94\x99\xcb\xc4\x2f\x93\x5c\xd5\xad\xef\x4e\x7d\x57\xee\xd5\xcd\x78\x27\xe3\x95\x27\x76\xdf\xc9\x8d\xc1\xa0\x9f\xaf\x6e\x59\x6c\x61\x39\x18\x6f\xd3\x50\x75\x51\xb2\x6b\xb2\x2c\xd8\xe0\x99\xd3\xd7\xad\x9b\xf1\x8d\x59\x87\xf7\xb7\xc2\x37\x06\xd3\xb0\x34\xc6\x5d\x8c\x51\x69\x75\xdd\xa2\xe8\x14\x45\xd2\x2c\xba\x45\xd1\xcf\x04\xc8\xfb\x5b\x16\x1b\x25\x87\xc9\xb0\x2c\x3a\x65\x61\x89\x75\xcb\xa2\x5b\xe3\xdc\x6c\x58\x16\xc3\xb2\xe0\x87\xc3\x8c\x0f\x33\x4e\xc2\x86\x19\x1f\x34\x02\x9b\xf0\xf0\x0d\xdc\x28\xd9\x35\x59\x16\xc3\xb2\xe0\x89\xc3\xb2\xd8\x28\xd9\xc9\xd1\xb0\x59\x0c\x5e\x87\x41\xb3\x18\xe6\x7b\xd0\x04\x7c\x69\x86\x19\x1a\x64\xc8\x77\x72\x9a\xd4\x8d\xfa\xb2\xc0\xa6\xd5\x36\x3d\x96\xc1\xe1\x6e\x9a\xfc\x0d\x77\xf7\xe7\x6b\x9a\xfc\x8d\x59\x6d\x9c\xd3\xb4\x6e\xd4\x97\xa3\xca\x34\x61\x1b\x93\x0d\x51\xf9\x9a\x56\x9b\xc7\x8d\xd5\xd7\x6f\x9f\xa4\x96\xaf\x69\x85\x6d\x18\x20\x93\xaf\x69\x85\x6d\xcc\x6a\xb1\x4f\xb3\xe7\xc1\x77\x36\xae\x69\x7d\x6d\xcc\x6a\x15\x2e\x73\xbc\xdc\x72\x6a\xb3\x59\x66\x79\xa3\xbe\x6c\xcf\xcb\x1c\x2f\x73\xcc\xcd\x96\xb5\xb3\x61\x68\x51\xbe\x96\x39\xde\x98\xd5\xb7\x76\x59\x3b\x1b\xf5\x65\xe3\x5a\xe6\x78\xa3\xbe\x6c\xe2\xcb\x86\xba\x38\xec\xcf\x5e\x6e\x59\x61\x8b\xd3\xfe\x92\x6a\x5d\xe6\x7b\x91\x6f\x3b\x98\x65\xbe\x97\xf9\xf6\x89\xe6\x7b\x63\x12\x91\x97\x1c\x83\x75\x30\xab\x0d\xe9\x32\x43\x1b\xf5\x65\xc7\x77\x59\x85\x97\x55\x48\xb6\x2f\x53\x6f\x08\x26\xab\xaf\xe9\xd9\xb6\xa2\xa6\x43\xd1\xe5\x23\x37\x6a\x3a\xdc\x5e\x3e\x72\x63\xbd\xec\x6b\x2f\x5f\x8d\x8d\x9a\x8e\x74\x6f\x4b\x7f\x63\xbd\x4c\xd8\xdb\xc2\x7f\xb3\x8a\x6f\x43\x7a\x9b\xd6\x2d\x06\x6b\x3a\xa5\x78\x5b\xf8\x6f\x9c\xb7\x16\xc5\xdb\xc2\xdf\xa8\xe9\xe4\xea\x6d\xf2\xf5\xd0\x59\x14\x6f\x5b\xe0\x46\x4d\x47\xe0\xb7\xf5\xb1\xb1\x5e\xb6\x80\xb7\x85\xbf\xb1\x5e\x16\xc5\xdb\xc2\xdf\xa8\xe9\xa4\xf3\x6d\xb6\xdf\xf8\x29\xec\x7d\xdf\x66\x7b\xa3\xb2\xab\x2b\xdd\x05\x23\xd6\xcb\x0e\xff\x63\x1e\x3f\xe6\x91\x1f\x7e\xcc\xe3\xc6\x7a\xd9\x9a\x3e\xe6\xf1\x63\x1e\xb9\xd7\xc7\x3c\x7e\xcc\x23\xa5\xfa\x31\x8f\x1f\xf2\x68\xdf\xfe\x31\x8f\x1f\xf3\x48\xa9\x7e\xcc\xe3\x87\x3c\xda\x32\x3f\xb6\xb9\x8d\xf5\xf2\x65\xf8\x98\xed\x0f\xd9\xb6\x2b\xf9\x98\xed\x0f\xee\x0b\x5f\xac\x8f\xd9\x26\xc0\xaa\x71\xa4\x7a\xbe\x3e\xe6\x7b\xa3\x2e\xcb\xf0\x63\xbe\x37\xea\xf2\x97\x5f\xab\xdb\x8d\x7a\xe9\x98\xff\xb5\x2c\x36\xea\x32\x19\x5f\x1b\xe2\xc6\x3a\x03\xfc\xd7\xb2\xd8\x58\x67\xa4\xf8\x5a\x16\x1b\x75\xd9\x50\xbe\x96\xc5\x86\xe7\x53\xa7\xe7\xe9\x8b\x75\xa6\xb6\x5f\x33\xce\xbe\x8a\x5e\xed\x90\xbf\xe6\x7c\xa3\x2e\x2b\xfc\x6b\xce\x37\xd6\x19\x3c\xbe\xe6\x7c\x63\x9d\xc1\xe9\x6b\xc6\x3d\x06\xa0\x55\xb3\x69\xce\xdd\x28\x70\x26\x96\xb7\x59\xdf\x58\x67\xd8\xbf\xcd\xb9\x41\x69\x67\xe0\xb9\xcd\xfa\x4d\xd6\x6d\x52\xb7\x59\xbf\xc9\xba\x1d\xc1\x6d\xd6\x39\x7b\x72\xd9\x58\x6e\xb3\xbe\xb1\xce\x44\xe6\x36\xeb\x1b\x75\xf9\x8e\xdc\x36\x83\x8d\x75\x66\x53\xb7\xa5\xb1\x51\x97\x3d\xc8\x6d\x61\x6c\xac\x5f\xd3\xe5\x4b\xbf\xb1\xce\xfc\xed\xb6\x30\x36\x3c\x20\x3c\x5f\xb7\x85\x71\xd3\x0a\x6c\x65\xb7\x65\xb1\xb1\xce\xb0\xf6\x58\x14\x0f\x45\xe1\xa8\xf9\x58\x14\x8f\x8d\x80\x3c\x3e\x96\xc4\x63\x23\xa0\xc0\x1e\x4b\xc2\x0d\x3b\xb9\x48\xd8\x63\x51\x6c\x18\x3b\x9f\x1c\xf0\x77\x10\xaf\xd3\x91\x3d\x66\x1c\xc7\xe3\xeb\xf4\xd6\x8f\x39\x7f\x38\x54\xfd\xa4\xc3\x3a\xdf\x68\xd5\x96\xf7\x98\x73\x76\xff\xb4\xa9\x54\x79\xcc\x3a\xa2\xf4\x75\xfa\xd8\xc7\xbc\x73\x16\xc7\xeb\x8c\x80\x8f\x99\x27\xc4\xf5\x45\x74\x7e\xfa\xe1\x02\xd1\x6a\x6a\x0a\x4d\x61\x1b\x6a\xd8\x8a\xb6\xc2\x65\x0b\x53\xd5\x54\xbd\x5b\xc7\xd6\xb4\x35\x2e\xf3\x97\xa9\x89\x12\xa1\x43\x08\x45\x6c\x10\xee\xf9\x72\x00\x08\x25\x2b\x1b\xe2\x5a\xa5\xa5\x05\xce\x4b\xb1\xb3\xe0\x03\xde\xda\x3e\xda\xea\x6f\x0f\xcf\x81\x7f\x53\xec\x19\x83\xb7\xbe\xb5\x9d\xd7\x84\x5b\x87\x25\xb1\xe1\x4e\xc5\x0c\x45\x2d\x88\x20\x6a\x25\xfd\x82\x83\x68\xce\x54\xfd\x80\x83\x88\x78\xbd\xfc\xa9\x25\xb1\xd1\xec\x21\x42\x59\x0b\x9a\xad\x3d\xd4\xb0\x60\x3f\x40\x9b\x25\xb1\xd1\x7c\x75\xfc\x1a\x84\xd8\x97\x05\xb6\x8f\xb6\x8f\x0f\xf5\x09\x8f\xb6\x87\xaf\x00\x50\x99\xaa\x51\x10\xc1\x91\x69\xe9\x81\xed\x22\x5f\x66\x41\x39\x0a\xf6\x65\x24\xa4\x98\x05\xa2\x0b\x83\xd3\xae\x32\x14\xa4\xe1\xa9\xf5\xc9\x5c\x2b\x54\xa4\xe1\xb9\xf5\x44\x4e\x67\x28\x36\xc1\xfe\x6d\xc5\x66\x2e\x0a\x5f\x24\x40\xa3\xf8\xf9\x0a\x11\x6d\xd8\x86\xd4\x96\x81\x90\x2c\xce\x05\x42\xd5\x18\xfa\x53\x9d\xca\x84\xb2\x11\xec\xeb\xf8\x6d\x35\x1b\x1b\xf9\xeb\x4f\xad\x1c\xce\x27\x6d\xbc\xa4\xa1\x94\x0c\x42\xcc\x4b\xb3\xd4\xd5\x8d\x51\xe7\xcf\x3f\x52\x39\x10\xd5\x3c\xe0\x3d\x2d\x1c\x63\x92\x51\xcd\x03\xde\xd3\x42\x74\x5a\x46\x35\x13\x1b\x49\x6c\x55\x86\x92\x13\x24\x5f\xcc\xc8\xa8\x66\xcb\x33\x70\x09\xec\xc9\xa8\xd6\x17\xce\x52\xd4\x7d\x28\x4c\x01\xf1\xb9\x19\xea\x52\xd0\xad\x3e\x65\x29\xe8\xd6\x4a\x33\x43\x0d\x95\xa2\xc5\x7a\x52\xa7\x92\x24\x65\x2a\x58\xe8\xe2\x50\xa5\x02\x62\x95\x33\x14\xa9\x60\x21\xf4\x43\x8d\x0a\xd6\x49\xa1\xb9\xc5\x67\xea\xf4\xc4\x8f\x8b\x88\x70\x5e\xe3\xb7\x45\x44\x10\x9d\x90\x91\xd6\x0d\x7b\xa1\xaa\xef\x57\x9a\x6e\xdc\x9c\xd5\x97\x44\xa5\x09\xa2\xfa\x92\xa8\x34\xc1\x9e\x92\xf3\x48\x95\x26\x08\x5c\xff\x19\x69\x52\x37\x8a\xc5\xa2\xce\x04\xa3\x84\xb7\x37\xf5\x1b\xc5\xd2\x54\x66\x86\x32\xd3\xc4\x2b\x33\x41\x99\xde\xdb\xfe\x62\xa3\xd8\x98\x15\x99\x60\x56\x1f\xa7\xc8\x04\xd1\x1b\x32\x2a\x54\x99\xa0\x4c\x6e\xae\xc8\x04\x75\xf9\xb2\x28\x32\x01\xfb\xb7\x32\xd4\x98\xa0\x5b\x35\xdd\x0c\xe3\xce\x34\x05\x0a\x4c\xb0\x7c\xfd\xd5\x97\xa1\x7f\x33\x4d\x93\x45\xd0\x3d\xfc\xd4\x97\x4e\x81\x09\xba\xa5\xa9\xbe\x04\xfd\x24\xc0\x22\xc0\xbd\x69\x11\x0c\x73\x32\x98\x24\x52\x7b\xea\x41\x10\x83\x63\x33\x32\x14\x84\x20\x5e\xe6\x4e\x41\x08\x82\x3d\x23\x19\x0a\x42\x10\xec\xaa\xc9\x18\xe6\x86\x98\xcb\x33\x72\x0c\xb3\x33\x3c\x56\xe7\xd8\x4c\xe9\x60\x2d\xa7\xd2\x3c\x14\x89\xa0\x39\x32\x87\x82\x10\x64\xd3\x62\x22\xa6\x6d\xc8\x1e\x54\xf5\x07\xfa\xe9\xb5\x55\x7f\x20\xda\xcb\xc2\x99\x26\x63\x22\xd1\x49\xab\x52\x0e\x2c\x7b\x8f\x69\x6b\x98\x46\x3d\x50\x61\xaa\xb6\x30\xfe\xde\xd7\x5d\xd5\x16\xe7\xb8\x30\xaf\xb2\xea\x17\x0b\x5d\xf6\x1d\x0a\x39\x30\x8a\x7d\x87\x42\x0e\x94\xf4\x9d\x53\xc8\x81\xb4\xa9\x2d\xb3\x83\xc7\x6e\x52\x19\x2a\x3b\xd0\x5f\xe1\xcf\x6c\x0f\xcb\x3d\xeb\xd5\x34\x58\xa6\xe7\x44\x6c\x7b\x1d\x25\x5a\x1c\x67\x1c\x3f\xbd\x2c\x67\xf6\xc3\x9e\xda\x56\xb5\x81\x12\xf5\xf7\x0c\xc6\x97\x99\xe3\x73\x10\x6c\x71\xcf\xb8\x4c\xf7\xe5\xd9\xaf\x2c\xce\xc4\x65\xca\x2f\x57\x8d\x2c\xe3\xcb\xa4\x6f\x34\x27\xc0\x71\xd9\x92\x37\x92\x35\xb5\x50\x0d\x02\x0e\x99\xca\x50\xd3\x81\x65\xbd\x2b\xe9\x80\x9b\x2a\xd2\xed\xee\x22\x7a\x4b\x6d\x56\xcd\xdb\xc3\x05\x9d\x2d\xa9\xf3\x40\xa4\xab\x71\xa1\xd0\x8b\x5f\xb7\x84\x93\x30\x95\x5e\xe0\xf6\x7b\x39\x4a\x2a\xeb\xc0\x7e\x04\xe5\xf7\xb6\x69\xe1\x0a\x74\x41\x39\xde\x66\xe0\x8d\xaf\x34\xbc\xca\xe6\x86\xdf\xef\x4c\xd1\xd4\x75\x40\x7f\x67\xc6\xc7\xe4\x7a\x46\xdf\x34\xa7\x4a\xb6\xf8\xb0\x3e\xca\x7a\x78\xa8\xcf\x40\x09\xc7\x39\xf5\x59\x78\x24\xce\xb2\x02\x14\x68\x60\x14\xfb\x57\x05\x1a\xd8\x19\x20\x53\x2a\x34\xe0\x21\x70\x19\x2a\x34\x50\x82\x05\xb9\xf8\x98\xa7\x8f\x2f\x2d\x19\x50\xb4\x81\x12\x4e\x31\xd5\x6c\x60\x14\xdf\x0e\x35\x9b\x27\x09\xf4\xe6\xac\x50\xd1\x06\xc6\x70\x3e\xa9\x66\xf3\x83\x52\xbd\xa1\x66\xfc\xa0\x94\xd8\x73\x12\x52\xab\x90\x03\xfb\x3a\x1a\x8c\x4a\x0e\xcc\xea\x88\xa0\x46\x03\xeb\x8c\x5d\x5f\x8b\xe3\x8b\x50\x39\x0f\x35\x9f\x5f\xc3\x22\xad\x83\xaf\x19\xdd\x68\xf5\xdc\xdf\x8c\x6e\x34\xc5\x4b\xa8\xd1\xc0\x9e\xcd\x69\x33\xa7\x1e\xee\xac\xe4\x08\x35\x1a\xe8\x8e\xc6\x4a\x34\xd0\x2d\xed\xdb\x6c\xde\x36\x5c\x27\x50\x2a\x34\xb0\xdf\x67\xb2\xae\x3a\x0a\x77\x17\x35\x04\x47\x28\x7c\x40\x49\xf3\xa9\xf0\x01\xf5\x65\x1b\x55\xf8\x80\xba\x6c\xca\x0a\x1f\x10\xfa\x3d\x33\x14\x3e\x20\xcf\x5c\x49\xe1\x03\x38\x7f\x36\x43\xd9\x03\xc6\x79\xa0\x8d\xea\xa1\x73\x25\xd7\x0a\x9c\x78\xce\x51\xdf\x3e\xd0\xd4\x3f\xbe\x01\x64\x52\x7d\x13\x1e\x2d\x1c\x34\xda\xa2\x96\x29\x2f\x5f\x6c\x2c\x45\x8b\x5f\xfa\xc0\x5b\x52\xd4\x2d\xa0\x53\x38\x45\x89\x02\xf6\xe0\xe0\x55\x5d\xdb\xee\x3b\xa7\x57\x2d\x2d\x86\xcb\x6a\xba\x34\x91\x7a\x1f\xf8\xd6\x62\x24\xc2\xf0\x56\x1f\x6d\xc6\xfe\x7a\xd9\xad\xe9\xde\x9d\xd2\xce\x76\x51\x7d\x80\xce\xa7\x41\xd2\x73\x2f\xb2\x6c\xa5\xb1\x4c\x94\x42\xa3\x9c\x70\xca\x81\xc9\x74\x6e\x2c\xfa\xe9\xa2\xa6\x00\x9c\x28\x90\x45\xa9\x00\x7a\x2c\x7f\xf6\xd5\xf4\x55\xec\x63\x32\x4d\x41\x30\xdf\x32\x05\x8f\xa6\xc7\xf8\xc1\xfd\x9a\xfa\xe9\x22\x11\xd3\x99\x72\x51\x50\x80\xae\x5b\xaf\x28\x1e\x40\x10\xf9\x99\x7e\xd0\x48\x04\x81\x98\x59\x94\x0e\x60\x17\x97\x0f\x30\xfd\xc5\xe3\x70\x42\xdb\xd4\x86\x5e\x66\x1e\xe5\xc7\x90\x92\x8f\x21\x05\x51\xb2\xe9\xb7\x8f\x44\x28\x35\x8b\xc2\x01\x04\x1b\x38\xd3\x93\xf2\x45\x6f\x2c\x5a\x15\x65\x43\x21\x0e\x53\x77\xa9\x5f\x4d\x12\xd1\xe3\x5c\x66\x06\xaa\x91\x33\x64\xb3\x9a\x01\x62\x33\x7d\xe3\x8b\x4a\x02\x84\x52\xb9\x54\x93\x5f\x9d\xdc\x50\xb4\x0a\x09\x10\xea\xdd\xa2\x8e\x00\xe1\xda\x81\xdf\x65\x12\xbb\x7c\xc8\xb8\x82\xa0\xb8\xbb\x88\x75\xb8\xa2\x22\x28\xe7\x74\x2e\x1e\xa9\x24\x00\x7d\xf4\xdf\x3e\x82\x2c\x8b\x02\x01\xf4\xc6\x60\x51\x54\x08\x20\x74\x15\x14\x05\x01\xe8\x0a\xb6\xa2\xd3\x0a\xec\xf9\x39\x26\xb3\xe2\xa9\x9a\xac\x42\x15\x45\x42\xf1\x08\xff\xea\xed\x6d\x84\x1e\xd1\xca\x64\xa0\xe8\xb4\x02\xe1\x54\xc4\x2f\x51\x89\x51\x8e\xc9\xcc\x25\x3e\x63\x46\xe1\xa2\x6e\x00\xa3\x78\x2f\x75\x03\x28\xa7\x87\x50\x36\x14\x4f\xf1\x6c\x74\x41\x45\xdd\x50\xfc\x7a\x91\xfa\xad\xa8\x1c\x8a\xca\xa1\x78\x99\x59\x42\x39\x70\x10\x4f\x16\xa5\x03\x28\x61\x8f\xa0\x74\x00\x25\x98\x97\x15\xb5\x43\xc1\x1d\x55\xac\x1c\x95\x82\x27\xd5\x74\x4e\xb4\x49\x3f\xa6\x25\x06\xbb\x0f\xb2\x28\x15\xc0\x28\x16\x99\x93\x7e\x10\x83\x03\x57\xb2\x38\xed\x07\xd5\x15\x5d\x8f\xbd\x11\x45\x45\x5e\x9c\xf5\x17\xdd\x4a\xb6\x54\xa7\xfd\x60\x10\xfd\x9e\xc5\x79\x3f\x18\xc3\xc6\xa5\x57\xa9\xe8\x55\xb2\xc6\xf5\x2a\x95\xe3\x55\x22\xf9\xba\x90\x40\x7d\xd9\xc4\x75\x21\x81\x38\xb3\xe2\xa2\x66\xe0\xbb\x87\xf5\xe5\xcb\xa1\x18\x00\x35\xad\x39\xc5\x00\x58\xaf\x73\x7f\x33\x39\x3c\x86\xd9\x3e\x53\x27\x12\x58\x8a\x8d\x32\xcc\xe5\xd6\x07\x8b\x40\xf9\x2c\xfa\x95\x40\x4d\x4b\x71\x98\xfe\xc1\xd2\xbf\x2d\x56\x15\x51\x66\x30\xc2\x53\x3c\xaa\x08\x50\x97\xfd\x95\x6e\x25\x50\x97\xb7\x9f\xe6\x88\x4f\x12\xbc\x08\x69\xc9\xa2\xb2\x28\xd3\xc5\x2c\x4a\x71\x9a\xd6\x8d\xe6\x82\x5f\xd1\x6f\xe4\x99\x43\x2f\xbd\x25\x45\x69\x01\x9a\xeb\x1c\x45\x6d\x51\x3c\x3d\x91\x1d\x5e\x59\x74\x13\x81\x18\x9c\x59\x91\x45\xc1\x01\x9a\xab\xc1\x45\x75\x01\x9a\x6b\xb5\x1e\x6a\x24\xf6\x1b\x40\x42\xd4\x12\x20\x4a\x73\xcc\x50\x4d\x80\xa8\x9c\x69\x9a\x45\x3d\x01\xa2\x2c\xfb\x79\x5d\x45\x20\x6a\xf5\x55\x51\x64\x14\x45\xc6\x69\xb8\x3a\x8b\x00\x07\x48\x67\x59\xe6\x6b\xb1\xb5\x05\x8b\x0a\x03\x0c\x6b\xfd\x32\x4f\x97\xe7\x3e\x58\x53\xfa\x85\xc0\x62\x82\x5c\x14\x15\x60\xbf\xc1\x94\x86\xae\x22\xe0\x0e\xf0\x2c\x8a\x8a\x72\x22\x07\x6d\x69\x97\xc9\xbf\x1c\x45\xbc\x9b\x29\x25\x98\x50\x79\x50\x54\x15\x20\x7e\xbd\x99\x15\x75\xb1\x0b\xce\xe2\x51\x08\xfc\x7a\x36\x14\x32\xcd\xb3\xa1\xc4\xb6\xf1\x53\x5d\x37\x20\x5c\x37\xf5\x3c\x28\xd1\x9b\xe3\xac\x53\x7c\x10\xae\xd5\x96\x8f\xe5\x73\x22\xfb\x48\xac\xae\x9b\xe2\x47\x28\xec\xe3\x74\xdd\x80\x3e\x6c\x69\x6a\x83\x62\x64\x5f\xf5\x87\x26\xd6\x93\x87\x9a\xe5\xaf\x10\x28\x7e\xa9\xa2\xfa\x48\xd3\xff\xf1\xb5\x23\xad\xce\xe6\x8b\x07\x7f\xbf\x9c\x4e\x38\x9d\x07\xa3\xd8\xdf\x3b\x4f\x07\xd1\x3b\xeb\x3d\xc5\x89\x7a\x71\xa2\xce\x47\x75\xb2\x38\x51\x07\xc5\x85\xc7\xe2\x3c\x1d\x8c\x93\x03\xbd\x2b\xa0\xb8\x9c\x58\xf4\xae\x80\x71\x4a\xc3\x99\x3b\x28\xbf\x9a\xac\xf4\x2f\xdf\x7a\x74\x1e\xa2\xc3\x05\x14\x97\x35\x8b\x93\x79\x50\xf5\x6d\x15\x27\xee\xa0\xea\x31\x2c\x4e\xdc\x41\xd5\xb7\x55\x9c\xb7\x83\x9a\x66\xdc\x69\x3b\xd8\x25\xab\xcd\x8c\xfb\x31\x81\xe9\x6c\xc2\xa9\x7b\xe1\xab\x5e\x59\x7f\x3b\x2a\x3b\x8b\x13\x7b\x50\xd3\xfa\xd1\xcf\x02\x6a\x3a\x42\xeb\x41\x01\xeb\xf4\xea\xb7\xd9\xbb\xf1\x1d\xd9\xe2\x74\x84\x80\x78\xe9\xfb\x2e\x0a\x02\xd0\x5c\x96\x2f\x0a\x02\xb0\xfb\x28\x6d\x56\xcf\x63\xaf\xc2\xdd\x54\x04\x9e\x5d\x16\xc9\x82\x51\x51\x11\x80\xd4\xe1\x5d\x1e\xeb\x87\x93\x4a\x4b\x73\x4e\xab\x26\x00\xd9\x1d\x57\x15\x05\x20\x9b\xf7\xb2\x47\xd9\xe8\xf6\x02\xba\x46\x00\x27\x24\xa7\xe7\xa2\x89\xfe\xb2\x63\x50\x24\x94\xe7\xd9\x17\xed\xa7\x55\x7d\x1b\x20\xd2\x57\xa1\x3a\xfd\xaf\x7b\xc6\xcf\x27\x88\xd2\xaf\xe0\x0a\xbe\xe8\x90\xd5\xc9\x3f\xe8\x06\x88\x55\x27\xff\x95\x53\x0a\x1a\x7a\xb5\xea\x6a\x00\x61\xe4\x4c\x75\xa6\x5f\x8d\x9e\xa3\x82\xaa\xd1\x73\xd5\xe8\x39\x26\xb3\xd5\xd9\x3f\x28\x16\x5f\x75\xf6\x0f\x66\x3d\xa6\xa2\x09\xaf\x3f\x0d\xab\xea\x53\x00\x1d\xcd\x5f\x15\x04\xa0\x2f\x6f\x3e\xb4\x8c\x9d\x3f\x7f\x65\x6e\xc2\x37\xa0\x63\x32\x37\x1b\x69\xd7\x5e\x95\x0d\xa0\xbf\x98\x65\x55\x65\x03\x18\x27\x4d\x66\x26\x58\xc2\xc6\x23\x5f\x55\x08\x60\x31\x9d\xaa\xea\x03\xc0\xd1\xcb\x59\xf5\x37\x54\x37\x65\x2d\x2f\xaa\x9a\xf0\x27\x1d\x93\x29\x2f\xe7\xd3\x39\x14\xbb\x5e\x84\x6a\xcc\x1a\x8b\x3e\xd5\x00\x35\x10\x6e\xed\xc9\xaa\x17\x01\x0c\xf6\x52\x66\x35\x1a\x0d\x54\x76\xea\x67\x55\x1e\x80\x65\x87\x51\x95\x07\xa0\x2e\xef\xa5\x3c\xa8\x7e\x72\x80\x7d\x01\x59\x75\x2b\x80\xe8\xfa\x15\xaa\x9a\x01\x6c\x61\x4f\xf9\xa8\x06\x40\x14\x03\xbf\xaa\x72\x00\xe8\x75\xae\xba\x1a\x00\x9f\xb3\xcb\xaa\x18\xa8\xe7\xb3\xbe\xd5\x74\x98\xcf\xea\x28\x61\x6a\xcd\x66\x25\x0c\xda\x6c\x56\x5b\x5c\x25\xee\x6b\x6a\x32\xe7\xcd\xe6\xc5\x0f\x55\x11\xd5\x4d\x59\xdc\xbd\x99\xcb\x76\xce\x1b\xe3\x87\x0a\x0b\xd0\x19\x30\xab\xba\x02\xa8\x77\xaa\xae\x06\xd0\x6d\x38\xca\x06\xc0\xb1\xb1\x59\x75\x2c\x00\x3e\xcd\x97\x55\x1d\x01\xc6\x49\x91\x15\x4b\xec\x9b\x6d\x52\xc9\x00\xfa\xab\xf9\x78\xf3\xdb\xd8\xdf\xb7\x4c\xb7\xf9\x55\x32\x28\x36\xaa\x51\x6d\xd5\x4f\x43\x33\xce\x54\x65\x44\xd5\xfd\x60\x55\x1b\xe8\x06\xc2\xfe\xae\xaa\x2c\xaa\x1e\x09\x86\x9e\xaa\x66\xa8\xba\x1a\x7c\x0d\x94\x07\xa0\x1a\x98\x50\xd5\x02\x80\x0f\xdc\x64\x55\x0a\x80\x18\xfd\x5c\x65\x5a\x89\x56\x7b\x79\x2b\xab\x86\xf3\xbc\x47\xf5\xe5\x50\x1e\x00\x57\xae\xaa\xe2\x00\xb0\x09\x3e\xab\x3e\x03\xd0\x09\x74\xce\xda\x4d\x3b\x1f\x44\x9b\xfa\x1f\xaa\x91\x69\x20\xf4\x3d\x57\x3d\x09\x20\xdc\x39\x9a\x55\x09\x01\x12\x4f\x5a\x55\x1b\x80\xfe\xb2\x0f\x54\x1b\x80\xe8\x9c\x08\x95\x1e\x32\x29\x86\x6f\xbf\xda\x00\xe8\x6c\xad\x06\x9c\x55\x3c\x07\x4c\xce\xaa\x62\x01\x74\x02\xb7\xb3\x2a\x16\x40\x9c\x7e\x44\xad\x50\x3d\x37\x3a\x99\xf8\x56\xfd\x0b\x55\xff\x82\xf5\xaf\x7e\xa8\x28\x03\x1d\xdd\x55\x15\x00\xc2\x38\xc1\xaa\xe3\x00\xf8\xd5\x90\xac\x0a\x03\x10\xb3\xcf\xdf\xfe\x08\x57\xd6\x61\x76\x3d\x84\x29\xf1\x19\x54\xc5\x04\x28\x7c\x94\x30\xab\xca\x01\x74\xe7\xce\x55\x99\x00\xf8\x9c\x64\x56\x15\x01\xe8\x2f\x3b\x10\x03\xc2\xf8\x3c\x5f\x37\xec\xb5\xea\x33\xa8\xee\xe9\x41\xfd\x56\x67\xf5\x20\x7a\xda\xcd\x38\xad\xaf\xee\xf3\x41\x64\x56\x67\xf5\xa0\xeb\xb8\xf0\xf8\x4f\xd1\x75\x14\x56\xe7\xf4\xa0\xbb\x62\x5e\x9d\xd2\x83\xce\xc6\xa5\xac\xce\xe8\x41\x18\x20\xe8\x87\x03\xc5\x38\x05\x6a\xa8\x17\x28\x61\x33\xd2\x8f\x00\x06\x07\x90\x65\x75\xde\x0f\x4a\xd8\xfd\x39\xf1\xaf\x7e\x73\x86\x8f\x39\x67\xd5\xb7\x00\x22\x5d\x24\xab\x4e\xf4\xc1\xac\x8e\x9c\x97\x0d\xe2\x42\x50\x76\x7f\x69\xc6\xaf\xf3\xf5\x1b\x0a\x43\x27\x03\x98\xd5\xde\x45\x39\x00\xa2\x0f\xc7\x74\xe5\x00\xd8\x03\x0e\xc5\xa1\xdf\xa1\x7a\x04\xb9\x8e\xdb\xaa\x46\xa8\xe7\xab\x1c\x4c\x36\xaa\x22\x01\x2c\x67\xad\x55\x91\x00\xea\x72\xe8\x35\x10\x0d\xec\x5f\x72\x99\x2e\x0a\xb0\x9f\xca\x13\xf4\x48\x80\x76\x7a\x30\x9d\x0f\x60\xcf\x9e\x48\x9c\x8e\x06\xc0\x91\x84\x59\x55\x1c\xa0\xbf\xec\x4f\x14\x1c\x60\xf8\xce\x28\x1b\x3c\xdf\xb5\x1b\xb9\x55\xd5\x0d\xd5\x1d\x41\xd5\x94\x29\x1c\x40\x49\xdf\x66\x85\x43\x55\x38\x18\x53\x56\xf5\x16\x80\x6e\xba\xd4\x0d\xa0\x3b\x78\xe9\x2a\x00\xc3\xfe\x4a\x4f\x01\x38\xc5\xaf\xb4\xa8\x9f\x73\x8a\xb1\x49\xb0\x0c\x91\x16\x76\x15\x2a\x8b\x6a\xd8\xd6\xb4\x35\xaa\x2c\xea\xf7\x08\x45\xaf\x33\x43\xba\x00\x96\x03\x83\xcb\xfd\x20\x0c\x29\xa9\xea\x08\x10\x06\xcf\x54\x75\x04\x08\x85\x79\x55\x47\xd4\xef\x11\x8f\x5e\x66\x26\xbf\xe7\xdc\x1d\x92\x6b\xe4\x16\x08\xf7\x44\x67\x55\x5d\x54\x5d\x05\x4e\x01\xd4\x0d\xa0\x84\x15\xa7\x6e\xa8\xea\x06\x17\x42\xaa\xba\x01\xec\x19\x05\x77\x53\x37\x80\xac\xf6\xa7\x86\x69\x81\x6e\x3e\x95\x0a\x60\x2c\x4a\xc3\x20\x2d\x30\xed\xb8\xd4\x0e\x60\x5a\xb2\xc6\x63\x81\xe1\x7b\xa3\x98\x00\x06\xdb\x56\xa3\xb1\xc0\xb4\x8b\x52\x5d\x80\x69\xcd\x1a\x9e\x05\xdc\x09\xe0\xa1\xc0\x42\x77\x5e\x35\x38\x0b\x18\xd1\x5c\x95\x24\x60\xd8\x1f\x2a\x48\x00\x67\x8b\x64\x55\x8f\x00\x97\x42\x3c\x5a\x58\x4c\xc7\x24\xf5\x09\x18\xce\x80\x95\x22\xc0\x90\xa9\xaa\x6f\x02\xec\xc2\x26\xf7\xaa\x13\x10\xad\xda\x93\xab\x4e\x80\xc1\xeb\x55\xe1\x01\xf4\xb2\x55\x85\x07\x98\x76\xf6\xea\x8e\xaa\x73\x42\xd7\x8a\xc7\x1d\x8b\x45\x53\x69\x3a\x22\xc0\x22\x05\xcd\xf0\x29\xb0\x90\x39\x4d\x37\x04\xe0\xa3\x2a\xd9\xdc\xee\xd3\x3c\x65\x6d\xf9\xb3\xa9\x69\xcb\x15\xaa\xbf\x29\x57\x00\x1f\x3e\xc8\xa6\x5a\x01\xab\x78\xa3\xb7\x96\x2d\x0a\x19\x31\x9a\x8e\x0a\xb0\x10\x34\x4d\x41\x03\x16\xaf\x71\x53\xcf\x00\x3e\x4e\x97\x4d\x39\x03\x16\xdd\x41\x53\xcd\x80\xc5\x34\xb5\x29\x66\xc0\xa2\x65\x37\xb5\x0c\x58\xf5\x77\xec\x7c\xf2\x18\x68\xb1\x6b\x8c\x2c\x18\x64\x05\x22\x5d\x5d\x69\xea\x1f\x10\x47\xc9\x34\x43\xaa\x80\xa7\x9d\x65\x53\x02\x81\xee\x2e\x9d\xa6\x04\x02\x91\x86\x70\x36\x37\x06\x81\x60\xa7\x58\x36\x65\x11\xe8\xee\xb6\x69\xca\x22\x10\x0e\xe5\x4d\x6f\x0a\x08\x3e\x3f\x95\x4d\xa9\x04\xc2\x5d\x40\x4d\xa9\xd4\x8c\xce\xa2\xe7\x6c\x6a\x25\x10\x7d\x9a\x7e\xa5\x11\xd8\x03\x04\x45\xaa\x83\x05\x74\x23\x07\x3c\x15\x5b\xf4\x72\xee\x66\x69\xe0\x60\x71\xad\xa6\x29\xaa\x40\xbc\xce\xfd\x2d\x9f\x62\xf9\x68\xb2\x7c\x0c\xe0\xe2\xbd\x6a\x2a\x2f\xd0\xcb\xcb\xab\x2c\x1e\xe2\xb7\xd8\xbb\x97\x4d\x31\x06\x22\x4e\xba\x2c\x9e\x62\xf1\x98\x2e\x8b\x07\x57\x8d\x7b\xb0\x9a\xf2\x0c\x44\x77\x4f\x40\x53\x9f\x81\xee\xd6\xa3\xa6\x3e\x03\xe1\xce\xa6\xa6\x3e\x6b\x1e\x92\xcf\xc7\x53\xb2\xa9\xcf\x40\xb8\x2a\xeb\xc7\x86\xb3\xe1\xab\x71\x3f\x5a\x53\x9d\x81\xce\xde\xc0\x6c\x8a\x33\x10\xee\xe8\x6a\xaa\x33\x10\x71\xae\x32\xe3\xd5\x76\xe1\x13\xcd\x38\xbe\x1a\xf7\xfc\x35\xd5\x19\xe8\xee\x6c\x6a\xaa\x33\x10\x7c\xc8\x3e\xfd\xe0\xb1\x08\x77\xc0\x35\xd5\x19\xe8\x46\x2e\x35\xe5\x19\x08\xb7\x82\x35\xd5\x19\x08\xe3\x7a\x9b\x62\xac\x79\x82\x9c\xe5\xaa\x5f\x07\x04\xc7\x3e\x67\x53\xa0\x81\xae\xdb\xbe\xa9\xd0\x40\xb8\xad\xac\x29\xc8\x40\xb8\xe7\xae\xe9\xd7\x01\xe1\x61\x2a\xd9\x94\x64\x20\x8e\x63\xb4\xa9\xc9\x9a\xc7\x63\x2c\xd3\x6f\xf5\x36\xe6\xb6\xd6\x9b\x62\x0b\x74\x77\xf0\x35\xa5\x0f\xe8\x8d\x29\x64\x53\xfb\x80\xde\x98\x2f\x36\x1d\x23\x20\xaa\x2f\x97\x7a\x08\xf4\xc6\x6a\x93\x1f\x88\x16\xbd\xa5\xb7\xb7\x78\x88\xab\x6a\x26\x55\x85\x04\x4e\xd0\x56\x53\x21\x81\xde\x9a\x57\x59\x3c\xf8\x5d\xaa\xd5\xa6\x66\x02\xd1\x39\xe7\x39\x9b\x7e\x97\xe6\x01\x73\x06\x6f\x36\x1d\x2f\xcd\xf3\x24\xec\xb7\x14\x57\xa0\xb7\x66\xca\x2c\xc5\x23\xae\xd0\x2c\x4d\x29\x05\x4e\xec\x56\x53\x4b\x81\xae\x36\x6c\x06\x66\x81\xe0\x1c\x83\x6c\xea\x2b\xd0\x1d\x4a\xfd\x32\xb6\x08\x77\x8c\x34\xf5\x15\xe8\xcd\x27\x2a\xaf\x9a\x47\x4c\xd8\x9f\x1a\xbe\xd5\x0c\xdf\x62\xf6\xd8\x54\x5c\xcd\xf0\x2d\xa6\x38\x4d\x8f\x4d\x33\x7c\xcb\x76\xa1\x77\x06\xf4\xc6\x4a\x5b\x53\x97\x35\x0f\x8c\x98\x66\xc8\xa2\xe0\xf4\xed\x7a\x32\x64\x51\xa0\xcb\xaa\x8d\x47\xdd\x05\xfc\xce\x67\x36\x65\x17\xe8\xcd\x31\x45\x1f\x0e\x08\xd7\xc7\x9a\xdb\x85\x9a\x07\x46\x38\x82\x29\xce\x9a\x07\x46\x38\xee\x2a\xce\x40\xa8\x0e\x9a\xbb\x85\x9a\xdf\xb6\x32\x8e\xa5\x19\x44\xd6\x3c\x1e\x02\x19\xde\xf4\xf4\x80\xde\x1c\xb2\x8d\x21\x03\x7e\x6e\x3c\x9b\x9e\x9e\xe6\xb9\x0f\xf6\xc2\xee\x10\x02\x51\xad\x22\x7d\x3f\xa0\xb7\xa6\xc9\x7c\x73\xc0\x6f\xb5\xaf\xd6\x1d\xe4\xe7\x0b\xba\xcb\x47\x4d\x77\x10\x08\x4e\xdd\xc8\xa6\x37\x08\x9c\x7d\x00\x4d\x29\x09\x82\x33\xd2\xd3\xef\x9b\xe7\xf9\xbe\xf9\xb4\x14\x95\x92\x4d\x0f\xd1\xab\xfc\xf6\xb1\x5d\xd9\x8c\x4f\x03\x61\x10\x8d\x5f\x49\x17\xe1\xf2\x72\x53\x7d\x82\xf0\x80\xd6\x6c\xca\x4f\xd0\x9b\xef\x8b\x5a\x13\x44\x75\xb4\x50\x6b\x82\xe8\xc5\x62\x56\x59\x82\x98\xae\x25\xfb\xc9\x06\xd1\x5d\x27\x69\x7a\x90\x40\x1f\x4c\xf8\xfd\x88\x83\xe8\x2e\x5a\x34\x7d\x4a\x60\x97\x03\x39\x50\x6c\x82\x5d\xd0\xfe\xd4\x8c\x5e\x1c\x7e\xe0\x5b\xa4\xda\x04\x61\x54\x77\x53\x6c\x82\xd0\x89\xda\x14\x9b\x4d\xdf\xd3\xb9\x97\xfd\x87\x5a\xb3\x9b\x7e\xb3\x8e\xd4\xd4\x5f\xd7\x54\x9a\x20\x0c\xb5\x69\x0a\x4d\x10\xee\xf5\x6c\x0a\x4d\xd0\x8d\xac\x69\x0a\x4d\xd0\x5d\xf6\xf5\x8b\xf4\x22\x5c\xe0\xf3\xe3\x15\xa2\x3b\x59\x6e\x86\xc7\x81\x70\x6b\x48\x53\x8c\x82\x68\x61\xef\x6a\x78\x1c\x08\xc3\x2e\x9b\x02\xb5\x79\x24\xf7\xb4\xd1\x29\x50\x41\x1f\xf6\x15\xee\x79\x02\x7d\xd8\x5a\x0c\x8e\x6b\x7e\xc5\xd4\x1e\x57\x1d\xdb\xfc\xee\xee\xf4\x3d\x75\x1f\x54\xf3\x9c\x8c\xe1\xcd\x2c\x9f\x73\x50\xa1\x37\xb3\x7c\x70\xa6\xb9\x04\xd5\x0c\xa1\x6b\x1e\x9d\x91\xde\xcb\xf2\x21\x84\x4e\x55\xdc\xdc\x1a\xd5\x3c\x4c\x83\x05\x3b\x3f\xda\x21\xc2\x5d\xc1\x7e\xaf\x3f\xcf\xf7\xfa\x9d\xa6\x28\x9d\x9b\xd2\x99\x20\xaf\xa6\x72\x6e\x9e\x66\x68\xfb\x37\x1a\xaf\x79\x98\x06\xf1\x1d\x7e\xff\x23\xdb\xc7\xd2\xf1\x5e\x96\x8e\x4e\x38\xc2\x1c\x9b\xf2\x1a\x84\x3b\x54\x9a\xfa\xba\xe9\x97\xb3\x42\x94\xd3\x20\x8e\xb7\xb7\x29\xa8\x41\x8c\xea\x6c\x4c\x41\xdd\xdc\x2f\x35\xcf\x6f\x2d\x0c\x8f\xce\xf0\x35\x34\xf6\x0e\x74\xbd\xb1\x4d\xe1\xdd\x3c\x3a\x63\xda\xb5\xa9\x9e\x9b\x47\x60\xd8\xa5\x2b\x81\x41\xcc\xa1\xfc\xd0\x75\x06\xba\x82\xb4\xa9\x77\xc1\x28\x26\x57\xb9\x0b\x4a\xd8\xd8\x55\xbb\x60\x14\xbb\x61\xd5\x2e\x88\x73\x22\x81\x1f\x3e\x11\xa3\x38\x8a\x2b\x78\x41\x09\x2b\x45\xc5\x0b\x4a\xf8\x62\xba\x2b\x09\x8c\xe2\x50\xac\x0a\x06\xe5\x34\x76\x65\x30\x28\x61\x0d\xa8\x83\x41\x09\x5f\x5f\x85\x30\xf0\x43\x3a\xd9\xd4\xbd\xa0\x84\xaf\x9c\xc2\xb7\x79\x2a\x86\x2d\x56\xe5\x0b\x76\xc1\xd2\x0e\x54\xba\x60\x14\xfb\x15\xa5\x2e\x28\x61\x2b\x56\xeb\x82\x51\x1c\xc3\x95\xb1\x8d\x20\xbb\x62\xbe\x75\x9f\x35\x0f\xb2\xb0\xc9\x2a\x63\xc1\x28\x36\x33\x75\x2c\x28\x71\x4c\x26\xff\x21\xf9\x2c\x9a\x37\x37\x11\x81\x51\xe8\x7d\x52\x69\x0b\x4a\x90\xd4\x34\xf0\x2e\xfd\x90\x8f\xbb\xa4\xfd\x48\x8c\x18\x7c\xb3\x27\xfd\x46\x8c\x18\x7c\x2a\x28\x53\x6f\x1c\xf0\x58\xff\x4c\x45\x70\x7a\xe8\x45\x7a\xd5\xd0\x34\x48\x58\xc7\x34\x35\x91\xef\xa6\x69\x69\xa2\xda\xe8\xca\x52\x1d\x0c\x06\x9f\x9c\x4d\x3f\x40\x23\x06\xdf\x0d\xca\x54\x09\x83\x61\xaf\x95\x4a\xe1\x74\x1b\x11\x5f\x54\xcc\x54\x0c\xa7\xce\xbd\xf4\x91\x8f\x26\x16\x76\x58\x05\x4c\xe5\x30\x28\x61\x8e\xd4\xc3\x60\x94\xe6\x55\x96\x58\xd8\xd0\xbd\xca\x02\x53\xf2\xea\x00\x49\x25\x6f\x7a\x5c\x46\xfe\x0e\xe1\x9c\xba\xff\xd2\x73\x32\xaa\xcf\xb2\xa8\xfc\x88\xf2\xe4\xad\x4a\xd5\x2f\x18\x85\xd9\x47\xaa\x61\x41\x1c\x0f\x60\x2a\x45\xf3\x48\x51\x6f\xa7\xee\x04\x31\x4e\x39\x2b\x3c\x81\xdf\x9b\x4b\x3f\xd6\x23\x4a\xd0\xbd\xa6\xc2\x33\xcb\x49\x08\xb9\x56\x66\x82\xe1\x58\x96\xca\x4c\xb0\xb5\xbf\x0f\xb5\x8a\x36\x4a\x7f\xf9\x4b\xab\x48\x9f\xdf\x32\x19\x66\x61\xa3\x18\x44\x9b\xea\x4c\x50\xdc\x75\x93\xca\x4c\x30\x1c\x91\x52\x99\x09\x0a\x67\x4e\x67\x2a\x33\xc1\xb0\xb3\xf6\xbb\x42\xa2\xe8\x7f\x4d\x9d\x80\x60\x38\xe1\x48\x85\x27\x18\x7a\x98\xd3\xb8\x41\x30\x1c\x1e\x52\x2d\x0a\x4a\xd8\x32\xd5\xa2\xa0\xb8\x55\x23\xd5\xa2\x60\x28\x00\xfc\x90\x91\x18\x8e\x64\xa9\x16\x05\xc3\x25\xfc\x54\x78\x82\xca\xb1\xa9\xe9\x97\x8d\xc4\x1e\x1d\x78\xa4\x62\x34\x3d\x19\x83\x79\x69\x2a\x46\x41\xd1\x57\xe8\xf7\x8f\x44\xe1\x8b\x00\x99\x3a\x06\x41\xe1\x43\x02\x99\x8a\xd1\x74\x13\x92\x8f\x54\x8c\x82\x92\xa6\x55\x31\x0a\xb6\xee\xf7\x32\x33\xee\x69\x19\x0c\xe1\xa9\xc3\x30\x3d\xe4\xbc\x4d\x9f\x69\x53\x69\x84\xb9\x31\x3d\x4e\x15\x6a\x7a\x5c\xc6\xf2\x66\x36\x0b\xcf\xc6\x18\x9a\x2c\x0c\x4e\x3e\x1f\xe7\x5e\x16\x46\xb3\x59\x90\xb2\xb4\x2c\x92\xb2\x60\xba\xe1\x47\x9e\xc4\x70\x02\xe8\x37\x9e\xc4\x70\xa2\x95\x3a\x16\xd3\xef\xb8\xe8\x32\xf0\xb3\x4f\xa2\x70\xc8\x72\xa6\x01\x8a\xa0\x70\x9c\x77\xa6\xce\x46\x50\xf4\x23\xfa\x6d\x28\x51\x0c\x6b\x4e\x5d\x8b\x99\x47\x2c\x92\x25\x5d\x8b\xa0\x70\xe2\x7a\xa6\xbe\x45\x50\x9c\x24\xa4\x62\x1a\x14\x3e\xee\x90\x7e\x67\x4a\x0c\x07\xfa\x54\x4c\x83\x62\xb4\x56\x2a\xa6\x41\x71\x4b\x52\x2a\xa6\x81\x1f\xde\xc8\x54\x4c\x83\x92\x96\xbe\x32\x39\x95\xc9\x1c\xa3\x9f\x7e\xc6\x4a\x14\x37\xce\xa6\x2a\x19\x44\x9e\x41\x44\x65\x9b\x7e\xbd\xa8\x5a\x27\x4a\x5b\x10\x7e\x6e\x20\x53\x6d\x9b\x27\xd0\xd0\xc1\x46\x25\x9b\x83\x17\x6c\x78\x99\x65\x3b\xf0\x01\xd9\x3d\x18\x55\x98\x46\x15\x9e\x01\x48\x91\x0a\xaa\x7b\xd3\x53\x91\x0a\xaa\x1b\xe4\x53\x91\x0a\x66\x3b\x49\xb3\x06\x06\x6f\x98\x8d\x56\x91\x0a\x66\xb3\xd4\x14\xa9\xe9\x99\x16\x0e\x10\x8a\x54\x30\x15\xbc\xa9\x48\x05\xd5\xdd\xf0\x69\xec\x21\xa8\x86\x36\xa6\xba\x15\x54\x77\x86\xa4\x1a\x15\xec\xb7\xc9\x9b\x99\xf1\x8d\x6a\x9c\x64\x2a\x52\xc1\x74\x05\x25\xdd\xe7\x04\xaa\x1e\xd8\xd4\x45\x09\xaa\xe7\x0e\xa4\x52\x16\x54\x43\x33\x53\x29\x0b\x66\xb3\x65\x2b\x65\xc1\x7a\x9d\xdb\x5b\x3a\x1c\x76\xd1\x6c\xc6\x4a\x59\x30\x5d\x54\x49\x95\x6c\x1a\xd8\x78\x06\x76\xa5\x2c\x98\xea\xd6\x54\xca\x82\xd9\xec\x9d\x95\xb2\x60\x2a\x1b\x53\x25\x0b\xaa\x8e\xee\x54\xa9\x82\xd9\xec\x51\x95\xa0\xe9\xf9\x17\xf6\x95\x7a\x40\xd3\xf3\x2f\x6c\x9f\xaa\xd2\xf4\xfc\x0b\x3b\x7f\x55\x29\xa8\x6e\x7b\x4c\x3d\xa0\xa0\xbe\xc6\x6f\x7f\x1a\x2a\x53\x6f\x28\xa8\x86\xb1\xa7\x92\x15\xcc\xe6\x98\xa5\x64\x05\xd3\xd5\x82\x54\xb2\xa6\xc7\x63\xd8\xf7\xa9\x58\xc1\x6c\xf6\x27\x0a\x56\x30\x5d\x5e\x49\x05\x2b\x98\xcd\xf1\x4f\xc1\x0a\xaa\xe7\x5e\xa4\x82\x15\x4c\xd7\x3a\x52\xc1\x0a\x76\xd3\xf2\x32\x8b\xe5\xb2\x85\x50\x2c\x2a\x56\x50\x75\xd1\xa7\x8a\x15\xd4\xd7\xb9\x99\x25\x75\x71\x2c\x88\x2f\x8b\x8a\x15\x54\xb7\x0c\xa4\xf2\x14\x44\x33\x56\x2f\xd5\xa7\xa0\x1a\x8c\x99\xea\x53\x50\xdd\x1e\x90\xca\x53\x50\x5f\xe7\x87\x16\xcf\xdb\x30\x51\x67\x88\xc6\x6c\x82\xe9\xca\x4c\x2a\x3c\x53\xe1\xc9\x17\x21\x32\x15\x9e\x20\xce\x5e\xc1\x54\x79\x82\x6a\xe8\x68\xaa\x3c\xd3\xcf\x7a\xea\x1d\x4a\x45\x65\x7a\xde\x86\x55\xa7\xa8\x04\xeb\xe4\x40\x51\x09\x22\x97\xa3\xbf\xaa\x12\x2c\x57\x7c\x53\x55\x09\xd6\x29\x22\x55\x65\x7a\x2c\x87\xaf\xad\xaa\x32\x3f\x04\x05\xa6\x57\x59\xc3\x9e\xc1\x61\x3f\xa7\xaa\x04\xcb\x75\xe1\x54\x55\x82\x9a\xf6\x27\xba\x6d\xd3\x33\x38\xcc\xa5\x42\x33\x3d\x83\xc3\x57\x41\x9d\x09\xd6\x99\x5c\x28\x33\xc1\x72\x01\x3e\x55\x99\xa0\xba\x5f\x2f\x55\x99\x60\xb9\x1c\x9e\xaa\x4c\xb0\x4e\x65\xea\xdd\x05\xd5\x95\x98\xd4\xb9\x0b\x96\x3e\x85\x34\x6c\x14\x54\x57\x50\x53\x77\x2f\x58\xa7\x4b\x36\x92\x14\x2c\x3d\x22\xa9\x86\x05\x4b\x8f\x48\xea\x01\x4e\x8f\x71\x9c\xa6\x55\x17\x70\xea\x02\xe6\x8b\x19\x99\xba\x80\xc1\x72\xd9\x3c\x95\xbf\xa0\xa6\x03\x99\x0e\x60\xb0\xce\x4b\xee\x56\x31\x50\xcf\x08\x6e\xc4\x29\x58\xe7\x2d\x51\x36\xa7\xc7\x79\xbc\x8a\x37\xb3\xc8\x4e\xc8\x29\xa9\x55\x37\x83\x9a\x36\x1e\x75\x33\x58\xae\xc0\xa7\xba\x39\x0d\x1f\x45\x9e\xa6\x1a\x19\xd4\x33\xf5\x52\x23\xa7\x11\xa5\x28\xe9\x54\x23\x83\x62\x13\x50\x22\x83\x9a\x0a\x03\x25\x32\x58\xe7\xb5\x57\x22\xa7\x5f\x19\x5d\xd6\xae\xae\x61\x10\xad\x58\x25\xca\x5f\x50\x53\x81\xa4\xe7\x17\x84\x5f\x6e\xca\x54\x11\x83\xf0\x63\x38\x99\x4a\x62\xb0\x74\x81\xa4\xce\x5e\x10\xb3\x3a\x7b\xd1\xdd\x0b\xfc\x20\x4f\xa6\x32\x19\xd4\x65\x03\x32\xee\x14\xac\x33\x93\x53\x39\x83\x75\x26\x47\x2a\x67\x10\x63\x39\xc2\x2a\x9d\xc1\x3a\xf3\x6d\xa5\x33\xa8\xcb\xda\xd4\x2d\x0c\xea\xf2\x2d\x51\x4d\x83\xa5\xf2\xe8\xee\x62\x03\x75\xd1\xfe\xbb\x02\x1b\x2c\x35\x45\x57\x60\x83\xe5\x44\xb4\x2b\xa6\xc1\x52\x66\x74\xc5\x34\x08\x3f\x9c\x95\x7e\xf3\x53\xd4\x45\x05\x74\xa5\x33\xa8\x1e\x6a\xd0\x95\xce\xa0\xae\xe5\xcd\x3e\x9a\xcc\xa4\xa6\xaf\x26\x72\xb4\xbc\xfd\xa3\x89\x1c\x31\x73\xe9\x0a\x60\x50\xdd\x1b\xd8\x15\xc0\x20\x4e\xa8\x53\x57\x01\x83\x65\xc0\x52\x57\x01\x83\xa5\x16\xec\x0a\x60\x50\xf5\xf5\xf9\x75\x52\xb1\x0c\x45\xea\x7a\x81\x41\x5d\xcb\xdb\x0f\x4d\x54\xf8\xfc\x1d\xca\xb9\xeb\xfc\x05\x75\xd1\xd1\x75\x9d\xbf\x60\x29\x09\xba\xce\x5f\xb0\x94\x72\x5d\xe1\x0c\x22\x3d\x7f\xa8\xeb\xfd\x05\xd5\x77\xa1\xeb\xfd\x05\xd1\x5d\xaa\xe9\xba\x7f\xc1\xee\x64\x78\x82\xc1\xb2\x60\xdf\x4e\x9b\x25\x53\xfc\x80\xfd\xf4\xb7\x96\x83\x5f\xbf\x3c\xd5\xa1\xe8\x06\xcb\x00\xd1\xae\x6b\x17\x34\xa3\x5b\xba\x9a\xbb\xbb\x99\xce\x71\xb0\x2b\xb0\xc1\xb6\x51\x93\x2a\x6c\xb0\x53\x42\x1b\x50\x62\x83\x56\x8f\xc9\xbc\x56\x02\xc9\x4d\x9b\xe2\x19\x34\xcf\x3a\xeb\x8a\x67\xb0\x1f\x40\x72\x55\xcf\xa0\x19\x9f\xd3\x55\xcf\x20\x5e\x7a\x8d\xba\xf2\x19\x34\x1d\x0e\x5d\xf9\xdc\xfd\x06\xa3\x67\x14\x76\xf5\x73\xf7\x93\x08\xce\x30\xbb\x02\x1a\x34\x8f\x66\xeb\xee\xc5\xeb\xf5\xe4\x9e\x06\xaa\xa8\x06\xcd\xa8\xc2\xae\x37\xb7\xfb\x01\x04\x67\x61\x5d\x55\xdd\x75\xe7\x3a\x91\xee\xf5\xe4\xfe\xe1\xa7\x98\x54\xd5\x60\x5f\x46\x21\x29\xab\xc1\xce\x97\xd7\x59\x4a\x38\x79\x5f\x27\x63\x6a\x6d\x10\x67\x6b\x6d\x57\x59\x83\x79\x4a\x4e\x65\xdd\xfd\x2e\x82\x33\xb6\xae\x8c\xee\x7e\x05\x41\xb7\x5c\x57\x47\x83\x6d\xa3\x9c\xd4\xd1\x60\xdb\x28\x27\x83\x6f\xbb\x87\x7a\x9c\x4a\x54\x49\x77\x5d\xbd\x1e\xfc\xda\x95\xd2\xa0\xe9\x32\xec\x4a\x69\xb0\x2f\xe3\xa7\x6a\x69\x10\x27\x78\xbd\xab\x9c\x41\x8c\x49\x4f\xda\x95\xce\xa0\xe9\xa7\xec\xba\x89\xc1\x7e\x25\x48\xb1\x3a\x19\x34\xdd\x4b\xdd\x93\x26\xc1\x4e\x30\x29\x71\x6f\x1f\x68\x2e\xb9\x77\x63\x77\x7b\x9e\xca\xf6\xa7\xe6\x4b\x3d\xed\x29\xb1\x5d\x3d\x0d\x22\x5e\x04\xb6\x74\xbd\xd3\x20\xc2\x3d\x06\x5d\x45\x0d\xe2\x9c\x79\xd4\x95\xd4\xa0\x9d\x97\x4e\x49\x0d\xf6\xed\x78\x84\x9a\x1a\x34\x3d\x2d\x5d\x4d\x0d\xfc\x20\x4d\x76\x35\x35\xd8\xbf\x24\xc1\xba\xa3\x41\xd3\xc3\xd4\xd5\xd9\xa0\xe9\x28\xea\xca\x6c\xd0\xf4\x30\x75\x65\x36\x68\xba\x12\xba\xce\x68\xd0\x8c\x5b\xec\x3a\xa3\xc1\x7e\x24\xf5\x6c\xa4\x2f\xd8\x79\xf7\x3a\x2b\x7a\xa3\x19\x3e\xdf\x75\x50\x83\x7d\x19\x4d\x49\x1d\x0f\xce\x21\x3f\x5d\x19\x0f\xf6\x13\x48\x9b\x32\x1e\xec\x9f\x52\x6c\xfa\xa8\x41\x3b\x0d\x58\x87\x34\x68\xa7\xb7\x57\xd9\x83\x7d\x37\x8a\x4d\x8f\x34\x68\x3a\x86\xba\x6a\x1f\x34\xfd\x5f\x7e\x9c\x5a\x44\xea\x79\xea\x2e\x00\x80\xe8\x9e\x75\xd8\x5d\x01\x00\xd1\x0d\xf8\xe8\xea\x7d\x10\x91\xbe\xd4\x0a\x7e\xb0\x6d\xe4\x4b\xc5\x0f\xd2\xd3\x14\xbb\x8a\x1f\xec\xcb\xa8\x40\x25\x3f\xd8\x36\x52\xac\xe6\x07\xdb\xe6\x6f\x2d\x92\x79\xf6\xda\x90\x14\xbd\xd5\x20\x3d\x28\xb3\xbb\x10\x00\xf6\x65\xd4\x97\x0b\x01\x20\x3d\xfd\xb1\xab\xfa\xbb\x5f\x86\x5b\xb6\x1b\x65\x7f\xf7\xd3\x05\x46\xae\x77\x75\x3f\xd8\x09\xf6\x76\x16\x0a\xdf\x2e\x08\xf7\x91\x74\x65\x3e\x48\x4f\xd9\xec\xca\x7c\x70\x8e\x71\xe9\xca\x7c\x90\x1e\x69\xd9\x95\xf4\x20\x7e\x6d\x9a\x6a\x7a\xb0\x1f\x40\x42\x54\xf0\x20\xeb\xef\xf8\xfa\x72\x76\xfd\xce\x20\xca\xaf\x4f\xb3\x75\xb8\x95\xf1\xa4\x53\xd5\x0f\xf6\x75\x26\xd4\xa2\xc0\x19\x5d\x4e\xc9\xaa\xfb\xc1\xb6\x51\x64\x0a\x7f\xb0\x6d\x14\xad\x1e\x6a\x10\x67\xa3\x54\x57\xee\x83\x5d\xb4\x3c\x43\xbd\xdf\xdd\xe4\x58\x6c\x97\x4a\x79\x10\xe9\xd9\xc3\x5d\x2d\x0f\xb2\xd9\x66\xd4\xf2\xfd\x3a\x1b\xaa\x78\x03\x55\xee\x20\x9b\x23\x92\x2a\x1d\xec\xcb\x7c\x82\x15\x8a\x63\xb9\xf0\x05\x93\xec\xea\x74\x10\xc5\x8d\xf0\x5d\xa1\x0e\xf6\x75\xe4\x42\xa5\x0e\x52\x21\xd4\xf5\x2d\x77\x7d\xcb\x1e\xb4\xd2\x55\xea\x5d\x4f\xb2\xf1\xcf\x5d\xa9\x0e\xa2\xe8\xbd\xee\x6a\x75\xb0\x6d\x3c\x42\xb1\x0e\xb2\x9f\xcb\xcc\x3f\xfb\x2b\x8b\xce\xd8\xae\x7b\x19\xec\x21\x12\x93\xd5\xbd\xb1\x47\x52\x4c\xd6\x2c\x92\x7e\xe6\xb9\xcc\xbc\x6e\x64\x3f\x37\x33\xab\x6e\xb9\x3c\xb3\x65\xe5\x3b\x88\x5c\xbe\x0b\xea\x77\x90\x6e\xf3\xea\xea\x77\x90\xee\xc3\xec\xca\x77\x70\x8e\x8a\xe9\xca\x77\xb0\x1f\x40\x21\x29\xd6\x41\xd4\x70\x3a\xe6\x21\x2d\x60\xdb\x28\x10\xe5\x3a\xf0\x2b\xf5\xd9\x95\xeb\x20\xdd\x54\xd8\x95\xeb\x20\xdd\x30\xd5\x95\xeb\x60\xdf\xcc\xb4\x99\xf9\x0f\xe7\x93\x1d\x93\x99\xc7\x2d\x5c\x0d\x07\xea\xea\x6e\x90\x6e\xdc\xea\x8a\x6c\xb0\x2f\x23\x5b\xaa\xec\x6e\x50\x75\xb2\x6a\xdd\xd5\xd4\x20\xa6\x87\xfe\x76\x45\x35\xe8\x2f\xe7\xfc\x8a\x65\x30\xcf\x0f\x4d\xee\x97\xf8\x5a\x32\xa0\x2e\x06\xeb\x3c\xd0\xf6\xf7\x25\x08\xd5\x64\x59\x4d\x5f\xb7\xa1\x51\x60\xfa\x97\x81\x87\xda\x74\x65\x72\xf7\xd3\x79\xbe\x19\xca\x64\x10\xe7\x18\xe8\xae\x2f\x19\x84\x27\x3f\x74\x75\x32\x38\xe7\x60\x74\x45\x31\xe8\xe5\x5c\x65\x66\xd0\xbb\x67\x16\xa1\x4b\x18\x44\x9c\x1f\x9a\x9d\xf3\xa1\x67\xe7\x2e\xfa\x84\x41\xf7\xa0\x9e\xae\x28\x06\x7b\x12\x45\x2e\x55\xc5\x20\x3c\xdf\xbe\x2b\x8a\xbb\xa2\xd8\xf3\xcb\xba\xd2\x16\xf4\x66\x7f\xa7\xb4\x05\xbd\xd9\x8d\x29\x6d\x41\xb8\x86\xda\xd5\xac\x20\x72\xf8\xae\xab\x50\x41\x38\x78\x0f\x15\x2a\xd8\xcf\x9c\xd8\x42\x1b\xee\x4b\xfa\xb0\xa1\xbf\x77\xbc\x70\x55\x76\x4d\x43\x13\x07\x84\x2f\x6f\x36\x35\xe1\xe3\x22\x68\x75\xa8\x3d\x41\xe1\x03\xd0\x39\x74\xdb\x0e\x4f\x5a\xa1\xea\x86\x6e\x5b\x50\xf8\x94\x74\x0e\x15\x2a\x98\x7c\xed\x26\x87\x0a\x15\x54\xd7\x89\x86\x3a\x73\x04\xeb\x44\x74\xcb\x43\x51\x09\x96\x61\xbe\x43\x51\x09\xf6\x68\xec\x65\x5d\xdb\x9e\x7a\xf8\xfa\x0e\x5d\xa9\xa0\xb9\xd5\x67\xe8\x49\x05\x7b\x86\x49\x32\x94\x92\xe3\xc4\x11\x33\x87\x1d\x6a\xc9\x71\x4e\x70\x3c\x4f\x30\xb9\x61\x70\x46\x7a\xbf\x5b\xdb\xed\xb9\x20\x15\xdb\xa3\x6d\xb7\x77\x62\x63\x86\x62\x12\x9c\x95\xa2\xa1\x6e\x1c\x85\xe3\x62\xe8\x09\x87\x0e\x57\xb0\xe8\x07\x87\x6a\x10\x2c\x16\x85\x86\x62\x10\x74\x97\x8e\x86\x5a\x10\x78\xe8\xc4\x50\x09\x82\xd5\x4c\x80\xc9\xf4\x3b\xd0\xcb\x3b\x99\xca\x8d\xd5\x7e\xc7\x0e\xe7\xa1\x23\x16\x2c\x13\xac\x6e\x1c\xc6\xf6\x9e\xdb\x2a\x1c\xc1\xa2\xa3\x1a\xca\x46\xd0\x5d\xc1\x1b\x0a\xb8\x61\x84\xae\x45\xa4\x58\x03\xe1\xe1\x63\x43\xad\x06\x62\xba\x91\x67\x28\xd6\x86\xf1\xb8\x56\x95\x5a\x6d\x18\x8f\xcb\xfc\x72\x28\xd5\xc0\x7e\x8d\x29\x26\xa5\x1a\x88\xae\xc3\x76\x28\xd5\xc6\xf9\xa6\xb3\x26\x9b\x51\xd3\x47\x83\xa2\x1d\x7a\x41\x41\xf8\x79\x8e\xa1\x52\x03\xdd\x83\x4f\x86\x42\x6d\x18\x92\x7b\xd2\x61\x3e\xf9\xd0\x73\x39\x3f\xb4\xb6\xd8\x37\x59\x4e\x06\xac\x2e\x94\x5b\x9c\x7b\x59\x1a\xcd\xd2\xa0\xc1\x28\xdc\x40\x04\xf1\x5b\x43\xdd\x06\x22\x08\x8c\x1b\xfa\x40\x41\xf8\xd5\x88\xa1\x92\x03\x27\x3e\x6f\xa8\xda\x40\xcc\xea\xcb\xa8\x6a\x03\x71\xdc\x2f\xc3\x73\x55\x40\x34\x3e\x56\x93\x43\xc7\x25\x88\xee\xa6\xc8\xa1\xce\x1a\xea\x2c\x5f\x51\x65\x16\x38\x07\xb4\x0d\x25\x15\x08\x7d\x27\x43\xfd\x04\xe2\x3c\xd3\x00\xdf\xe1\x16\xc8\x60\xcd\x62\x28\xa9\xc0\x39\x48\x6b\x28\xa9\x40\xe8\x29\x19\x4a\x2a\x10\xfa\xba\x86\x92\x6a\x18\xdf\x6b\x77\xa2\x7e\x02\xbd\xa5\x09\x33\x4b\xc6\xf2\x32\x3f\x1c\x4a\x25\xd0\x1b\x13\xde\xa1\x52\x02\xe7\x8c\xb8\xa1\x52\x02\xbd\x31\x29\x1d\x0a\xa5\x61\xe0\x6e\xf7\x5e\xb6\xb2\x41\x60\x33\x52\x72\xa8\x93\xc0\x39\xae\x6d\xa8\x93\x40\xe8\xb4\x1c\x0a\x20\x10\x67\x1c\x1b\x0a\x20\xd0\xf9\xe2\x4f\x0e\xf5\x0f\x08\xbd\x77\x43\x0f\x28\xe8\xad\x9b\x56\x9b\x14\x8a\x68\x7a\x30\xcf\x50\x11\x81\xdd\xa3\x51\x18\x2a\x22\x70\x8e\x75\x1b\xaa\x1f\x10\x4a\xc9\xa1\xf8\x01\xa1\x3b\x6b\xe8\xb6\x04\x31\xdd\x12\x3a\x54\x2b\x20\xd2\xf3\x16\x86\x6a\x05\x84\x9a\x76\x28\x56\x40\x77\x9b\xce\xd0\x4b\x09\x76\xd2\x28\x5b\xc5\x0a\xe8\xee\x27\x1a\x8a\x95\xe1\x99\xfc\xee\x7e\x1c\x2a\x93\x61\xe0\x2c\xcb\x59\x43\x6f\x23\xe8\xee\xa7\x1a\x6a\x15\xd0\xdd\xf6\x34\x14\x23\xc3\x53\x1a\xcd\x94\x5a\x04\x74\xb7\x54\x0d\xa5\x08\xe8\xee\x73\x1a\x2a\x11\xd0\xdd\xc0\x35\x3c\x53\x05\x74\x77\x5e\x0d\xb5\xc9\xf0\x2c\x47\xf7\x19\x0d\xb5\x09\xe8\x6e\x7f\x1a\x4a\x93\xb1\x08\xee\xb3\x53\x35\x76\x76\x78\xbc\xa3\xa3\xb5\xc2\x04\xc4\xf4\xe8\x9c\xa1\x27\x12\x84\x8b\xc0\x43\x4f\xe4\x30\x78\x96\x99\xde\x50\xbe\x80\xee\x4e\xb2\xa1\x7a\x01\xdd\xcd\x5c\x43\xb7\x23\x88\x39\x8e\xcd\x6c\x5e\x7e\x81\x18\x01\x3d\x94\x1b\xe3\x3a\x3b\xbc\xb7\x49\x79\x00\x62\x1a\xf8\x36\xd4\x07\xa0\x9f\xc9\x85\xf2\x00\x8c\x62\xd2\x0c\x35\x05\xa3\x98\x4f\xe5\x01\x18\xc5\xca\xd4\xe1\x07\x46\xb1\x6b\xd1\xdf\x07\x76\x3b\xf3\x91\x16\xf7\x9b\x4f\xe3\xd8\xce\x14\x11\x60\x14\x1b\xb2\xa1\xa6\x20\x9a\xb3\xc0\xa1\xae\x00\xa3\x58\x8e\x6a\x08\x30\x0a\x33\xb9\xa1\x86\x00\xe5\xf4\x53\x6a\x08\x50\xc2\xc4\xea\x02\x04\x91\x1e\xb4\x34\x94\x10\x60\x14\xbb\x33\x7d\x80\x60\x14\x16\xef\x86\xa2\x02\x44\xf6\xf2\x3b\x16\xc5\x87\x72\x62\x78\xbe\xa3\x95\xa1\x9a\x00\xa3\xd8\xf9\xe8\xea\x1b\x06\x94\x9e\x67\x99\xe3\x0f\xe7\xfd\xf8\x32\xe8\xea\x03\xa3\x78\x2f\xfd\x7a\x60\x14\xf4\xf1\x50\x5e\x80\xe2\x87\x66\x86\x4e\x3c\x30\x8a\x3d\xa0\xe2\x02\xec\xea\xa1\x10\x74\xb2\x81\x71\x5e\x36\xc5\x04\xd8\xef\xbc\x3f\x35\xb1\x7a\xd9\xce\xe0\xab\xa0\x00\xa5\x3b\x2f\x50\x50\x80\xe2\xf1\x8b\x43\x45\x01\xc6\x3c\x57\x99\x01\x02\x56\x4f\xd3\xd7\xf1\x06\x86\x2a\x67\xa8\x31\x40\xe9\x0e\x7a\x6a\x0c\x30\xa6\xf3\x59\x7d\x71\x20\xba\x2b\x4c\x43\xdd\x01\xce\xc9\x4f\x43\xd7\x1b\x18\xd3\x59\x81\x6e\x36\x30\xa6\x53\x68\x75\x07\x18\xa7\x7f\x52\x76\x00\x3f\x28\x98\x43\xd9\x01\x62\x16\xfb\x66\x65\x07\x38\xdb\x93\x87\xb2\x03\x9c\x7d\xd2\x43\x57\x1c\x38\xdf\x37\x1b\x46\xa7\x82\x71\xfa\x2c\x4f\x8a\x01\xe3\x74\x46\x3a\xec\xc0\x74\x0d\x63\xe8\xaf\x03\xe3\x74\xd6\x8a\x1a\x50\xfa\x49\x84\xad\x97\x48\xd7\xd3\x4b\xaa\x73\x40\xe9\x4e\x7d\xd4\x39\xa0\x74\x07\x38\x5d\x78\x60\x9c\xee\x4f\x0f\x1e\x38\xa7\x4e\x0e\xd5\x10\x18\xa7\x5f\xd6\x83\x37\xce\xc6\x4e\xee\x3f\x55\x43\x60\xd8\x0b\x4f\xc5\x10\x38\xc7\x96\x4c\xfd\x75\xa0\x74\x0a\x6c\xaa\x8f\xc0\xae\x5d\x7f\xd9\xb4\x51\x3c\x74\xdf\x53\x1f\x1e\x28\x3d\x34\x75\x4d\x04\x8e\x31\xd7\x9f\x2a\x2b\x30\x8c\x3c\x98\x2a\x2b\x30\x1c\xca\xa6\xca\x6a\x1a\x10\x4b\x17\x33\x55\x56\xa0\x74\x32\x3e\x55\x56\xc0\x6f\xfa\xe7\x54\x59\x81\xe1\x52\xc3\x54\x59\x81\xb3\x27\x71\x1a\x0f\x0b\xce\x91\xa8\x53\xdf\x1f\x18\x1e\xae\x37\xd5\x5f\x60\x77\x3a\x24\x4c\x01\x06\x86\x1b\x8d\xa7\x3b\x34\xc1\xf4\x50\xb2\xa9\x8a\x02\xb3\xd1\xf6\xa7\x22\x0a\xcc\x76\xee\x6f\xc2\x36\xaa\x91\x07\x53\x09\x05\xce\x5e\x91\xa9\x5e\x02\x55\xcf\xfd\xd4\xf7\x06\xaa\xce\xe4\xa9\x84\x9a\xba\xde\x54\xc9\x53\xd7\x1b\x98\x2e\x9c\x4d\x37\x63\x82\xaa\x64\x9a\x3a\xe3\xc0\x74\xc9\x6d\x1a\x13\x3b\xcb\x79\x9d\xc9\xb8\xfe\x39\x30\xdd\xd3\x3f\xd5\x68\x60\xba\xe0\x36\x15\x69\x60\x7a\x60\xfd\x54\xa5\x81\xfa\x3a\xf7\xb2\x2c\x8a\x65\xe1\x23\x2d\x8b\x42\x98\x9a\xed\x49\x9d\x06\xa6\xe7\x16\x4d\x75\x1a\xa8\x2e\x8c\x4c\x95\xd8\xe4\x18\x1c\x15\xd5\x54\x8a\x81\x51\x98\x16\x4e\x95\x18\x98\x9e\x19\x39\x95\x62\xa0\xaa\xd7\xa6\x1e\x3c\x50\xba\x4f\xd4\x81\x07\xa6\x07\x9e\x4d\x1d\x78\x60\x36\x5b\xb0\xfe\x3b\x30\x3d\xf0\x66\xea\xbe\x03\xb3\xd9\x76\x74\xdf\x81\x48\x0f\x89\x9b\xaa\x3f\x30\xdb\x31\x59\x14\x95\x80\x14\x2b\x44\xf5\x07\xa6\x47\x81\x4e\xc5\x1f\x88\x74\x2d\x72\x1a\xda\x0a\x62\x7a\xea\xcd\x54\xaf\x81\x48\xc5\xf5\xd4\xdd\x06\xa6\xa7\x32\x4f\x35\x1c\x58\xee\x73\x9d\x6a\x38\x50\xf5\x53\x4e\x35\x1c\xa8\xae\x95\x4d\x35\x1c\xa8\xf9\x7b\xce\xef\x9c\x4a\x3c\xb0\xdc\xb8\x3a\x95\x78\x60\xb9\xbd\x78\x2a\xf1\xc0\xd2\x8f\x31\xd5\x73\xa0\x1a\xd6\x35\xd5\x73\xa0\xfa\xa9\xaf\xa9\x63\x0e\x2c\x37\x04\x4f\x25\x1e\xa8\x7e\xc0\x6e\x1a\xe5\x0a\x96\x9f\x81\x9c\x8a\x3e\x50\xfd\x5a\xdd\xd4\x55\x07\xaa\x8b\xdb\x53\x4f\x1d\x58\x6e\x82\x9d\x7a\xea\x40\xf5\x33\x71\x53\xb1\x08\x96\xfb\x8d\xa7\xe1\xb1\x20\xe6\x38\xf7\xb7\x28\xd2\xa2\xa0\xc1\xe9\xce\x03\xd5\xb0\xc8\xa9\xca\x9c\xe7\xe8\x1d\x7b\x43\x25\x25\xa8\x7e\xd0\x6c\xea\xb9\x03\xcb\x0d\xcd\x53\x95\x09\x96\x1b\x82\xa7\x8e\x3b\xb0\xdc\x96\x3c\x55\x94\x60\xb9\x7f\x76\xaa\x28\x41\xe4\x38\x97\x99\xa7\x4e\xe5\x33\xe3\x99\xba\xe4\xe6\xf9\xde\x9b\x8d\x50\x4d\x09\xaa\x9f\xf3\x9b\x6a\x4a\xb0\xdc\xd0\x3c\x15\x90\x60\xb9\x04\x39\x15\x90\xd3\x0f\x8e\xeb\xdd\x9e\x2a\x48\x10\x67\x5b\xcd\xd4\xd5\x06\x96\xd1\xf3\x53\x55\x09\x9a\xeb\xe1\x53\x55\x09\x96\x43\xe7\xd4\xad\x06\xda\xcb\x7c\xaa\x2a\xc1\x32\x8a\x7c\x2a\x2a\xc1\x72\x48\x9f\x8a\x4a\xb0\xdc\x65\x31\x15\x95\xa0\x19\x67\x37\x15\x95\xe0\x1c\xe1\x3c\xd5\x94\x60\x19\x1e\x3e\x95\x94\xa0\xe9\x4c\x9f\x3a\xd9\xa6\x47\x7a\xe2\x27\x9b\xaa\x4c\xb0\xce\x30\xa3\xca\x04\xed\xc5\xb4\x68\xea\x4d\x03\xcd\xd8\xa3\xa9\x37\x0d\x2c\x03\xc6\xa7\xce\x34\xb0\x8c\x34\x9f\xca\x53\xb0\x9c\xfb\x4d\xfd\x6b\x60\x19\x03\x3f\x15\xac\xe0\x7c\x63\x60\xaa\x57\xc1\x32\x84\x7f\xea\x48\x03\x4b\x35\x33\xd5\xa6\x60\x39\x77\x9a\x6a\x53\xb0\xdc\x93\x30\x0d\x97\x05\xcb\xa5\xd2\xa9\x5a\x05\xcd\x85\xf7\xa9\x5a\x05\xcb\xa9\xf1\x54\x87\x82\x65\x3c\xf7\x54\x87\x82\x18\xae\xf3\x4d\x85\x28\xd8\x0a\xcd\x9f\x5a\x93\x8b\x83\xcf\x2d\x6a\x55\x27\x88\x57\x3b\x4f\x30\x4f\x8b\x58\x81\xf3\x04\xf3\xb4\x08\x96\x30\x03\x2a\x51\xb0\x7f\x49\x8d\x2b\x45\xc1\xb6\x51\x01\xea\x4e\xb0\x6d\x24\x4e\x95\x09\xb6\x8d\x47\xe8\x24\x03\xcd\x60\x89\xa9\xf2\x9c\x7e\x73\xe0\xbc\x9b\xfa\xcd\x40\xd3\x31\x35\x8d\x78\x05\xcd\xa8\x8d\xa9\x3e\x9d\x9e\x06\xe4\x9e\x83\xa9\x2b\x6d\x7a\x62\xe8\x99\x24\xe8\x4a\x9b\x1e\x19\xea\xb2\xd3\x54\xc7\x82\x66\xe4\xc1\xd4\x6d\x06\xf6\x65\x54\x8d\x41\xaf\xd3\xa0\x57\xb7\x58\x4d\x5d\x69\x60\x5f\x47\x26\x74\x9b\x81\x66\xc0\xc7\x54\x02\x83\x98\xcd\x56\xa3\x06\x06\xb1\xbb\x1e\x6c\xe6\xe2\xed\xd6\xfe\xea\xed\xcc\x05\xfa\xb6\x79\x36\xef\x54\xdf\x82\x7d\x9d\x49\xb1\x62\xdf\x27\x38\xc0\xeb\xcc\xd9\x46\x53\xee\x4d\x05\x2e\xd8\x3f\xa5\xf0\x54\xb8\xa0\xb9\x78\x30\x55\xb8\x60\x5f\x46\x65\xeb\x12\x03\xcd\xc5\x95\xa9\x9c\x05\xfb\x32\xca\x49\x3d\x0b\xfc\xc0\x7e\x4e\xf5\x2c\xd8\x69\xa3\x4c\xf4\x92\x81\xfd\x53\x8a\x5d\x11\x3b\xdd\x2b\x39\x59\x68\x9b\x4a\x56\x90\x9e\x60\x3c\x95\xac\x20\xc2\xed\x12\x53\x9f\x18\x48\x8f\xc8\x9f\x6a\x56\xb0\x2f\xfb\x1d\xdf\x8c\x9c\xba\xd1\x40\xbe\x58\x34\x9c\xca\x5c\xb0\xef\xa2\xcd\x92\xf8\xea\xd7\x27\xd7\x3a\xd6\xc0\xbe\x4c\x9b\xd9\xde\x48\x63\xc6\xa6\x81\xa9\x20\xab\x13\x2c\x7d\x6d\x20\xca\x99\x3e\xeb\x6d\x03\xdb\x46\x21\xaa\x9a\x41\x74\xb7\xc2\x4c\x65\x33\xd8\xd7\x69\xb3\xc0\xb6\x44\xce\xd3\xd6\x94\xc8\xd3\x33\x8c\xdc\xd2\x32\x15\xc4\x20\x9b\x7d\xae\x82\x18\x44\x71\xbf\xe9\x54\x11\x83\xec\x0e\x79\x4a\x5d\x10\xb5\xda\xd2\x8c\x3c\x05\xdb\xe6\xed\xcc\xeb\x46\x7a\xe2\xe4\xd4\xef\x06\xba\xad\x45\x45\x0c\x86\xef\x99\x52\x17\x84\x9f\xa5\x98\x2a\x5d\x10\xe7\x73\xb2\x53\x5d\x0b\x22\x87\xb7\x57\xd8\x82\xc8\x46\x9c\xd6\x54\xd9\x82\x7e\x14\x98\x6a\x74\x6e\xe9\x59\x8d\xe0\x9e\x4a\x4f\xb0\x4b\x48\x9b\x49\x23\x7a\x54\xb7\xde\x54\x7b\x82\xe6\x56\xf9\xa9\xf6\x04\xeb\xe8\x4c\x7d\x73\xf3\x39\xbd\xc7\x2e\xa0\xa5\xd0\x04\x49\x98\xc6\x52\x67\x82\x6e\xe4\xd1\x52\x66\x82\x38\x1f\xc4\x5d\xea\xcc\xe5\x57\x10\x5c\xcc\x58\x0a\x4d\xd0\x3d\x55\x7d\x29\x34\x41\x9c\xcf\x03\x2f\x35\x24\xf8\xf5\x99\x1f\x2d\x9c\x70\xd1\x35\x7d\x35\xb1\x0c\xc9\x6c\x65\xa9\x17\x97\xfb\x27\x71\x73\x2f\xc3\x47\x97\xfb\x27\x35\x19\x2b\x0a\x62\xf8\x15\xb6\xa5\x86\x04\xbb\x3d\x36\x6c\x66\x6a\x23\x3d\xf5\x6f\xe9\xc4\x03\xbd\x7a\x33\x73\xb4\xe1\x22\xc5\x32\x2e\x14\x74\x3f\x4b\xb6\x94\x9e\x2b\xf6\xf4\xc5\xfc\x28\x33\x41\x9c\x82\xd6\x05\xb7\xfc\x38\x82\x9b\xff\x96\xa2\x12\x14\xbf\xdf\xb5\x54\x90\xa0\x9d\xc4\xab\x16\x41\xf3\xfb\x1f\x4b\xb5\x08\xda\xeb\xdc\xcb\x74\x6d\x74\x5a\xe2\x52\x05\x02\xbe\xd7\x9f\x4b\x11\x08\x5c\x3f\x5d\x6e\x95\x04\xe3\xe5\xaf\x4c\x7a\xe1\x24\xc7\x62\x02\xac\x0a\x36\x4a\x9a\x19\x45\x21\x70\xed\x69\xa9\x09\x41\xf7\x5b\x72\xcb\x3d\x91\xc0\x35\xa5\xa5\x24\x04\x71\xbe\x4e\xbd\x14\x80\x20\xce\x57\x9a\x97\xda\x6e\x6d\x21\xb7\xd2\xab\x4c\x15\x67\x99\xba\xfb\x60\xe9\x9e\x5b\xc7\x3d\xc7\xfd\x55\x63\xcb\xcf\xa1\x31\x4c\x2d\xc5\x18\x08\xa5\xfc\xd2\xc5\x06\x7a\x63\x80\x5b\xca\xb3\x45\xe4\xa3\x62\x72\x29\xc5\x40\xa8\xa1\x97\x52\x0c\x8c\x42\xe8\xc5\x52\x32\xad\x73\x9a\x28\x45\xaa\x64\x02\x61\x10\xf2\xd2\x2b\x06\xc2\xb0\xf0\xa5\x8a\x02\x61\x8c\xf6\x52\x32\x81\xee\xba\xdf\x52\x32\x81\x50\xee\x2f\x25\x13\x08\x43\x8a\x97\x92\x69\x25\x3b\xd0\xcf\x13\x4d\x2a\xdf\xcc\x8e\xf3\x44\x8b\x30\x5d\x93\xc1\x64\x80\x22\xa8\x8a\xb4\xa5\xdf\x0c\x4c\xcf\x49\x59\x8a\x1c\x50\xfa\xf9\xa1\x89\xe8\xa9\x1f\x94\x84\xe9\x25\x03\xd5\xaf\x85\x2f\xf5\x0b\x68\x1e\x47\xb7\xf4\x88\x81\xf6\x3a\x3f\xb4\x0d\x76\xa7\xfa\x9a\x6c\x71\x9d\x73\xed\x11\x04\xcb\x80\x42\xd0\x4e\xbe\xf5\x88\x81\x28\x8e\x77\x4b\x45\xb3\x3c\xde\xe6\xe4\x5c\x49\x03\xa2\x56\x86\xf4\xa5\xa4\x01\xdd\x0e\x4d\x41\x03\x76\x77\xf6\x9b\x83\xf2\x52\xee\x80\x3d\xda\x7b\x13\xfb\x8b\x41\x7f\xa1\xc5\x62\xd9\xe8\xa7\x8c\x8d\x35\x04\x8b\x25\xe5\xa5\x26\x02\x2b\xbd\xc6\x42\x19\x1e\x80\x4f\xa1\xa8\x7f\x40\x77\xa1\x6a\xa9\x7f\xc0\x3a\xf9\xb7\x98\x38\xfa\xc6\xd0\x84\xa5\xfc\x01\x67\xf2\xba\x94\x3f\xa0\xbb\x74\xb5\x94\x3f\xc0\x5d\x0a\x4b\xf5\x03\x56\xfa\x33\x0b\x6d\x63\xe1\xff\x5a\x46\x17\x82\x45\x9c\xc8\x52\x0d\x81\xee\x42\xd9\x52\xd4\x80\x48\xa3\xd8\x96\xaa\x06\x84\x27\x1a\x2e\xfd\x6b\xcb\xf8\x40\x7b\x56\x55\x0d\xe8\xea\xce\xa5\xaa\x59\x1e\x7a\x6a\x17\xa2\xaa\x01\xdd\xbd\xf0\xcb\xf0\x40\x10\x7e\xcc\x63\xa9\x6a\x96\xd1\x81\xcc\x18\x96\xaa\x06\x44\x1a\x89\xb4\x3c\x89\x06\x84\x07\x46\x2f\x9d\x70\xa0\xbb\x39\x7d\x29\x7e\x40\xf7\x9c\xee\xa5\xf8\x01\xe1\xb7\x3c\x96\xda\x07\x44\x96\x69\x62\xcd\x25\x42\xc7\x83\x82\x96\x3a\x07\x44\x9c\x2c\x99\x4b\x02\xff\x52\x79\xbd\x14\x3a\xa0\x7b\x38\xea\x52\xe7\x80\xee\x39\x16\x4b\x8f\x1b\xe8\xee\xdf\x5f\x2a\x1f\x10\x7e\x8b\x64\xe9\x71\x03\xe1\xa9\xaa\x4b\x2d\x04\xc2\x73\x2c\x96\x52\x08\x74\xcf\xe9\x5f\x4a\x21\xd0\xcb\xb9\x97\x65\xc1\x61\x35\x7e\xd7\x64\x29\x67\x40\xe4\x38\xf7\x37\x97\x97\x6e\x2d\x2f\x33\x97\xc8\x19\x17\xec\x96\x6a\x06\x44\xfa\xf1\xba\xa5\x9a\x01\x5d\x4f\xda\x32\x2e\x10\x9c\x0f\x01\x2d\xf5\x0d\x08\xd7\x2e\x97\x6e\x3f\xd0\xf5\xf1\x2c\x25\x0f\xe8\x8d\xb5\xb3\xa5\xe2\x01\xe7\x23\x2f\xcb\xa0\x40\x10\x5d\xb7\xd5\xd2\x13\x08\xa2\x4d\x5b\xb1\xae\x40\x10\x2e\xe1\x2d\xb5\x12\xe8\xcd\x6e\x50\xa9\xb4\x94\x4a\x8e\x84\x2a\xa5\xe5\x17\x1c\xec\x3a\x14\x4a\xa0\x3b\x47\x5c\xea\xa4\x75\x3c\x81\xa4\xdf\x60\x42\x70\xbe\x16\xb0\x94\x49\xe0\x7c\x47\x62\xe9\xf5\x03\xe7\x33\x12\x4b\xaf\xdf\xd2\xeb\xa7\x17\x60\xa9\x9c\x40\xb8\xec\xb9\x54\x4e\x20\x9c\xf4\x2f\x85\x13\xe8\x6d\x7a\x7f\xcb\x82\x13\x5c\x1b\xcb\x14\x4b\xdd\xb4\xfc\xde\xdb\xaf\xf7\xb7\x2c\x3e\x84\x3f\x14\x7f\x69\x59\x28\xa5\x9c\x88\xe9\x0f\x04\xe7\xa3\x45\xcb\xe8\xc2\xe5\xa1\x33\xc5\x5c\x5a\x16\x1f\xce\xf4\xb2\x46\xd4\x5b\xa0\x37\x64\xe4\xd2\x45\xb8\x3c\xec\xd5\xd9\x8b\x0a\x0c\x84\x4b\xfe\x4b\x05\x06\xc2\x95\xef\xa5\xc2\x02\xe1\x32\xf7\x52\x61\x81\xd0\xd1\xb4\x54\x53\xe0\x7c\x05\x63\x29\xa6\x96\xdb\xfc\x6c\x9c\x8a\xa9\xf5\x3d\x45\xe1\xcd\x2c\x0a\xd4\x94\x2b\x42\x4b\x31\x05\xba\x1e\x91\xa5\x96\x02\x31\xce\xfd\x2d\x8a\xaf\xf3\x60\xd3\x6a\x51\x70\x3a\xce\x99\x7e\xa9\xa4\x40\xf7\x60\xae\xa5\xb3\x11\xf4\x33\x77\x55\x48\xad\xfb\x9c\xc6\x81\xc9\x4c\xde\xc8\x10\xeb\x43\xcf\x22\x08\x17\x89\x96\x9e\x45\x10\xae\x8d\x2d\x95\x15\x08\x57\xaa\x96\xc2\x0a\x74\xbd\x51\xcb\x18\x47\x10\x2e\x12\x2d\xb5\x16\x88\x54\x5b\x2d\xd5\x16\x28\x71\x1e\x69\xbe\x6f\xf2\x5d\x7f\xc7\xb1\x62\x4b\xf7\x24\xe8\x67\xc2\xa9\x66\x03\x91\xdd\x26\xa2\x68\x03\xbb\x53\xd6\x66\x59\x3d\x96\x15\x29\x57\xc7\x81\xae\x97\x74\x29\xe3\x40\x3f\x33\x28\x55\xdc\x52\xc5\xd9\x43\xea\x9f\x04\x7d\xfa\x52\xe9\x9f\x5c\x7e\xda\xce\xe6\xac\x7f\x12\x74\x9d\xa4\x4b\xff\x24\x88\x5c\x8e\x50\x4a\x42\x10\xdd\xa3\x91\x97\x1e\x4a\xd0\xf5\x91\x2d\x65\xe2\x3a\x9b\x0c\xa9\x7e\x55\x22\xe8\x3a\x15\x97\x2a\x11\x74\x7d\xc1\x4b\x95\x08\xfa\x3c\xb7\xb7\xcc\x8c\xe0\xa4\x78\x2e\x7d\x96\xa0\x2b\xf5\x2e\x7d\x96\x20\x5c\x53\xbd\x94\x92\x97\x87\xf8\x78\x3a\xc2\xa5\x98\x04\xe1\x9a\xed\xa5\x53\xf1\xd2\xa9\xb8\xbc\xff\xa5\x89\x89\xf5\xb9\xea\xad\xc9\xf0\x89\xe5\x33\x3f\xda\x68\x25\xe4\xf2\x52\x25\x82\x48\xcf\x80\xba\xd4\x84\x60\xf8\xf9\xdd\x4b\x4d\x08\x4a\xf0\x5e\x5d\x4a\x42\xb0\xbb\x73\x1e\xe0\xfe\x41\x50\x3c\x8c\xf9\x52\x12\x82\x61\x63\xb9\xd4\x84\x60\x14\x3a\xd7\x4b\x51\x78\x79\x68\x0e\x2f\xc3\x65\xa4\x27\x28\x41\xbf\x70\xa9\x13\xc1\x28\x74\xfa\x97\x2e\x4a\x50\xe2\xfc\xd0\x5c\x86\xef\x82\x4f\xbc\x35\x21\x7c\x79\x3d\x2e\xe5\x24\x28\xee\xe7\xbb\x54\x93\xa0\x04\xef\xda\xa5\x8b\x12\x44\x9b\xf4\xad\x97\xfe\x48\x50\x82\x9e\xe8\x52\x61\x82\xad\x4d\x79\x80\x12\x13\x94\xb0\x82\x95\x98\x20\x72\x32\xf8\x5f\x8a\x4c\x50\x82\x9e\xe1\x52\x65\x82\x5d\x27\xa6\xcd\x7c\x72\x24\x4f\x76\x6b\x40\xa5\x09\x76\x0d\x78\x9d\xf5\x59\xcc\x29\x97\xe9\x34\x04\xc3\xfd\xc4\x97\x1e\x42\x70\xce\xbf\xba\xf4\x10\x82\xe2\x37\x5f\x2e\x55\xe4\xa5\x87\xd0\xe6\xa8\x87\x10\x9c\x13\xc9\x2e\x3d\x84\x60\x18\xd4\x75\x29\x36\x41\xe9\xe7\xf6\xa6\x8b\xcd\x7c\xe9\xd9\x46\x97\x02\x14\x8c\xc9\xe4\xf7\x52\x80\x82\xe2\x42\xd2\x65\x2c\xe8\xe5\x71\x38\xf4\xcc\x97\xb1\xa0\x60\xcc\xae\xc9\x4c\x36\x42\x1f\x4c\xab\xca\x15\x0c\xcf\x5d\xbb\x54\xae\x20\x9a\x41\xcc\x97\xd1\xa1\xa0\x74\x66\x5f\x97\x6a\x16\x9c\x7d\x72\x97\xbe\x46\x30\x8c\x13\xbe\x14\xb8\xa0\xd8\xb3\x5c\x0a\x5c\x50\xba\x99\xd4\xb1\x08\x86\xe1\x78\x97\x9e\x43\x30\x0c\x89\xb9\x14\xb8\xe0\x9c\xf2\x74\x29\x70\xc1\x98\x2c\x0f\x5f\xba\x09\xc1\x98\xcc\xf9\x2f\x35\x2f\x18\x9e\xcd\x7e\xa9\x79\x2f\xf7\xef\x79\x1c\xf5\xa5\xe8\x05\xe7\xbc\xc5\xcb\xd3\x70\xc0\x98\xbe\xf8\xea\x60\x30\x26\x02\xe2\xd2\x75\x08\xce\x81\x95\x97\xae\x43\x10\xe9\xf1\x66\x97\x72\x19\x94\x7e\xd2\x6f\x8b\x4d\xa2\x1a\x9a\xe9\xb7\x2c\x54\xd0\xdd\x54\x58\x16\xe9\x17\x6e\xbc\x97\xcd\x82\x8f\x76\x78\x10\xe1\xa5\xeb\x10\x9c\x63\xab\x2e\xa5\xf7\xe5\x47\x3b\x6c\xaf\x4a\x6f\xb0\x65\x12\xe5\xa3\xf6\xbe\xd4\xde\x55\x93\x45\xd6\x8d\x1a\xb6\x91\xe9\x61\x04\xe7\xf8\x81\x4b\x89\x0e\xc6\xb4\x2e\x0d\x6d\x05\xc5\x83\xdf\x2f\x45\x3b\x38\x47\x30\x5e\xfa\x21\x41\x1c\xa5\x7d\x29\xe4\xc1\x70\xfd\xfb\x52\xc8\x83\xd2\x7f\xcf\xf8\x7c\xa9\xf3\x41\xb4\xc5\x8c\xe4\xd2\x75\x09\xc6\xe9\x51\xd4\xfe\xe0\x1c\x36\x76\xa9\xfd\xc1\x1e\xc6\x29\x40\xc5\x3f\x18\xd3\x5a\x54\xfb\x5f\xe3\x14\x20\xd5\xa8\xfc\x06\x55\xf1\x7b\x29\xbf\xc1\xf4\x74\xd8\x4b\xfd\x7d\xf9\xed\x70\x77\x8e\x5d\x3a\x25\xc1\xf4\x60\xd6\x4b\x51\x0e\xa6\xdb\x22\x2e\x45\x39\x98\xee\x6f\xb9\x14\xe5\x97\x67\xfd\xf8\x7e\xa8\xca\xc1\xee\xea\xbc\x99\x8d\x82\xaf\x0a\xea\x5a\xbf\xd4\xe0\x60\x77\xd7\xa4\x56\x15\x0e\x76\xa6\xf8\xa9\x3a\x1c\x4c\x4f\x1c\xbe\x14\xe2\x60\x7a\x12\xf2\xa5\x13\x12\x44\x2a\xdf\x2e\x5d\x8e\x20\xba\x3b\xdd\x2f\xa5\x38\x98\x1e\xaa\x7a\xe9\x60\x04\xd3\xb3\x90\x2f\x03\x62\x2f\x8f\xed\xb1\x9f\x54\x9d\x83\x31\xd9\x38\x72\xa9\xce\xc1\x34\xba\xf9\x52\x9d\x83\xa5\x2e\xbe\xf4\x39\x82\xe8\xcb\x0c\xa8\xd8\x41\x35\x1e\xe1\x52\xb1\x83\x69\x78\xf3\xa5\x62\x07\xd3\x73\x6a\x2f\xa3\x66\x2f\xcf\xe8\xb1\xed\xab\xe1\x41\xf4\xd3\x91\x29\xe2\xc1\xf4\xc4\xe7\x4b\xc5\x0e\xa2\x9d\x8e\x52\xc9\x0e\xaa\xbe\xfa\xcb\xb8\x59\x50\x0d\xca\xb8\x74\x60\x82\x69\xc4\xf6\xa5\xae\x07\xb3\x9d\x7b\x59\x3e\x8b\xd0\x19\x5b\xb2\xba\x1e\x4c\x4f\x13\xbe\x94\xf5\x97\x5f\x33\xf1\xb4\xd1\x4b\x5d\x0f\x76\x7b\x24\x03\x0a\x7b\x30\x3d\x18\xfa\x52\xb2\x83\xe9\x1e\xac\x4b\xc9\x7e\x79\x5c\x8f\x5d\x8d\x92\x1d\x54\xfd\xfe\x97\x9e\x4a\x30\xdd\xf2\x73\xe9\x95\xbc\xfc\x46\x49\x3f\x49\x33\x9b\x97\x8d\xdb\x5f\x9a\xa7\x8b\x3c\xd9\xc7\xaa\xe2\xc1\xf4\xd0\xe4\x4b\x15\x7f\xf9\x15\x75\x7b\x37\x45\x3c\x58\x6e\x29\xb8\x14\xf1\xa0\x9e\x4c\x2a\xe2\x41\x75\xab\xd0\xa5\x88\x07\xcb\xa5\x9c\x4b\x11\x0f\x96\x01\x98\x97\x22\x1e\x2c\x17\x21\x2e\x45\x3c\x58\x3a\x6c\x2e\x35\x3c\x58\xee\xd5\xb8\x94\xf0\x60\xb9\x38\x72\x29\xe1\xc1\x72\xc7\xc2\xa5\x84\x07\xcb\xad\x0e\x97\x12\x1e\x54\x3f\xda\x70\x29\xe1\x41\x75\xed\xe2\x52\xc2\x83\xea\x7e\xab\x4b\x57\x27\x58\xee\x2b\xb9\x54\xf5\x60\xb9\x96\x7d\xa9\xea\x41\x75\xef\xfc\xa5\xf3\x13\x54\xb7\x78\x5d\x0a\xfd\xcb\xcf\xb8\x2b\xce\x2f\x95\x3e\x58\x86\x0f\x5f\xaa\x7a\xb0\xdc\xdd\x72\xa9\xea\xc1\x72\xdb\xda\xa5\xaa\xbf\x3c\xe2\xc7\x8a\x54\xd5\x5f\x1e\xf1\x33\xbc\xca\xd2\xe1\x88\x1f\x17\xb0\x2e\x45\x3d\x58\xee\x33\xb9\x14\xf5\xa0\xe6\xf0\x89\x96\x8e\x47\xfc\xf8\x52\x2a\xea\x41\x1c\xa7\xe0\xa5\xaa\x07\x31\xaa\x65\xad\x3a\xbf\xfc\x14\xbb\xbb\x34\x2f\x9d\x9d\x60\x19\x76\x78\x29\xcf\x41\x73\x53\xd3\x65\x9c\x2f\x68\x6e\x12\xbf\x54\xec\xa0\xe9\xe0\xba\x54\xec\xe0\xff\x66\xec\xbc\x8e\xae\x57\x61\x00\xd8\xd2\x11\x41\x40\x39\x8e\xfd\x97\x70\x87\x5d\xff\xcf\xf7\x7b\xda\x19\xe6\x04\x83\xe3\x5a\x42\xac\xf9\x7d\xd1\x6e\x6e\x2c\xf3\x8f\x0f\x85\x1d\x2c\x05\xf3\x50\xd8\xc1\x32\xe9\xf3\x50\xd8\xc1\x9a\xdf\x3f\xda\x4d\x26\x20\xaa\x97\x87\x09\xc3\x60\xa9\x67\x87\x0e\x0f\x96\x5a\x7f\xe8\xf0\xa0\x39\x3b\xfe\x30\x3e\x0a\x96\x5a\x7f\xa8\xf5\xa0\xfd\xbe\xdf\xf2\x18\x60\x52\x62\x2f\xf5\x0f\x31\xe6\x43\xed\x07\xcb\xf4\xd8\x43\xed\x07\xcd\xfa\x05\x87\xda\x0f\x96\x0e\x79\xa8\xfd\xa0\x39\xd3\xff\x50\xfb\xc1\x32\x93\xf7\x50\xfb\xc1\x32\x9e\x77\x68\xfd\x60\x7d\x5a\xa9\xf5\x83\x65\x54\xf4\x50\xeb\xc1\x32\x2f\xf5\x50\xe1\x0f\xcb\xfd\xf8\x92\xf9\xd0\xd7\x41\x34\xa3\xda\x87\xc2\x0e\x96\x11\x95\x43\x61\x07\xf1\x33\xd4\x73\x68\xec\xa0\x59\xcd\xe4\xd0\xd8\xc1\xfe\x18\xc3\xac\xb2\x83\xdd\xe6\xcf\x39\x1c\x38\xfb\xcf\x77\x7b\x87\xce\x0e\x76\x1b\x03\xa2\xb3\x1f\xdf\xec\x49\x9f\x1d\x95\x76\xd0\xac\x05\x72\x68\xe8\x60\x7f\xd5\x8f\xd9\x7f\x92\x88\xbb\xd9\x32\x87\x8e\x7e\x7c\x91\x5c\x8e\xce\x53\x23\x07\xbb\x6d\xd1\x56\x6c\x2b\xb6\x0d\xda\xaa\x6d\xe6\xc1\x70\x9c\x9d\x06\x73\x41\xfc\x7c\xed\x77\x1a\xb9\x05\xbb\xcd\xff\x98\xb6\x4d\x36\xd9\xbf\x58\x36\x99\xf4\xd2\x68\x3a\x6d\xb2\x63\x49\xd3\x65\x13\x19\x3f\x44\xf5\x4f\xd5\x1d\xc4\xcc\xe9\xb6\xbd\xb6\xd9\x2f\x0e\xe5\xd3\x94\x60\x10\x61\xea\xe4\xa9\xcf\x83\xe8\x95\x07\x94\x53\x79\x07\xfb\x73\xf4\xc1\x18\x2f\xd8\x6d\x7e\x2e\x6d\x33\x37\x84\x07\x86\x53\x7f\x07\x11\x3f\x2e\xc0\xa7\xb6\x0e\x76\x1b\xdb\xe7\x5c\x4d\xb0\xbf\xcb\xd8\xa9\xf0\xe7\x37\x57\x93\x1b\xd4\x69\x4e\x31\x68\x46\xf7\x4e\x1d\x1e\xec\xaf\xfa\x73\x76\x97\x98\xf0\xb4\x12\xf8\xa9\xc5\x9f\xe5\xeb\x2e\xdf\x55\xe3\xc1\xfe\x0b\xc6\x5d\x8d\x07\x11\xa6\x5d\x9c\x7a\x3c\xe8\x2e\xed\x7d\xaa\xf1\x60\x7f\x8c\x11\x30\xb1\x18\xec\x36\x7a\xa1\xdb\x83\xdd\xc6\x7e\x34\xb3\x18\xec\x4d\xb1\xcd\x11\xd8\xe8\xbf\xf4\xe7\x1c\x00\xdd\xde\xf8\xc8\xa9\xdb\x9f\x2e\xeb\x62\xfd\xd2\x53\xb7\x07\x11\xe6\x42\x9d\x06\x92\x4f\x17\x76\xb1\xe2\xee\x69\x28\x19\xec\x36\x7e\xcf\xfc\x62\xd0\x4d\x36\x3a\x0d\x26\x83\xfd\x31\x7a\x6b\x30\x19\x34\x63\xaf\xa7\xca\x0f\xba\xb5\x55\x4f\xfd\x1e\x44\x31\x9d\xe6\x54\xf0\x4f\x66\x76\x16\x5f\x00\x9f\xda\x3c\xe8\xe9\x1e\xd3\xe6\x41\x34\x97\x15\x3a\x75\x77\xd0\x93\x27\xcb\x53\x77\x3f\x8d\x3a\xaf\xf0\x63\xee\x89\xf6\xd5\x23\xf0\x73\xee\x09\xa6\x76\x0e\x0b\x77\x9e\xda\x3b\x88\x6a\xfa\xdd\xa9\xbe\x83\xdd\xe6\xe7\xdc\x13\x4c\xee\x6c\x16\xb0\x3b\xcd\x0c\x3e\xa9\xc2\x53\x7d\xd1\x75\xaa\xeb\x20\x6a\xad\x7e\xce\x61\x27\x6c\x5d\x7d\xb2\x3b\x8d\x5b\x83\x68\x93\xcb\xe0\xa9\xd7\x9f\x5b\xe2\x7d\xb7\x70\x2a\xec\xc0\xe5\x77\x4f\x7d\x1d\x0c\xaf\x44\xda\x3a\xf0\x06\x78\x2a\xeb\x20\x7d\xaa\x3e\x95\xf5\xb3\x13\x04\xf5\x43\x76\x88\xa9\x9d\x56\x34\x3e\x35\x6e\x10\x56\x79\x3d\x35\x6e\x10\x96\xc7\x3e\xd5\x6b\x10\xc6\xac\x4f\xbd\xf9\x74\xae\xa7\xd7\x16\xbd\x19\x84\xea\x70\xaa\xcd\xa7\xd3\x3f\x79\xe0\x39\xd5\xe6\xd3\x25\x5f\x78\x3b\x76\xaa\xcd\x20\x86\x13\xfa\x4e\x25\xf9\xfc\xb7\xb0\x3e\x9b\xa1\x24\x83\x30\x2b\xf3\x54\x79\x41\x89\xe5\x7f\xda\x25\x8c\xb7\x7c\x7f\x60\x97\xd2\x32\x59\xe9\xd6\xba\x87\x58\x29\x73\xe6\x1f\xf4\xfa\x54\x88\x41\xf9\x76\x8d\x42\x0c\xaa\x09\xdd\xa7\xb1\x70\x30\x7c\xe7\x76\x1a\x0a\x07\xd5\x24\xec\xd3\x58\x38\x88\xe6\x03\xfc\x69\xb8\xfb\x34\xbb\xb7\xf8\x31\x47\x66\xe8\x59\xee\x1f\x85\x1b\xac\xf9\x7d\xcc\xc1\xb2\xb6\x0e\x0f\xf5\xa7\x72\x0d\xba\xb7\xc3\x53\xb9\x06\xfb\x7c\xf6\x63\x0e\x96\x75\x74\xb2\xfb\x39\x47\x6b\xa3\xbb\x50\xf8\xa9\x4a\x83\x6e\x10\xe3\x34\xc2\x0d\xac\x11\x78\x2a\xd7\x20\xbf\xeb\xaa\x6e\x0d\xe2\xab\x73\x70\xea\xd6\xc0\x27\xc1\x53\xb5\x06\xf9\x5d\xb8\x0d\x72\x03\x6b\xbb\x9f\xa6\xf7\x9e\xe4\xf2\x7a\xe5\x35\xea\x0d\x56\xba\x4d\xf6\x70\x7a\x80\xdb\x64\x07\xa7\x07\xb8\xbf\xe4\x9e\x37\xe6\xed\xed\x49\xab\x06\x61\x45\xfb\x53\xab\x06\x31\x7d\x2d\x70\xaa\xd0\x20\x4d\x04\x3d\x55\x68\x90\x8d\x67\x87\x53\x5f\x06\xd9\x78\xb1\x7b\xea\xc6\x20\xb4\xd2\xd3\x00\x37\x08\x6d\xf3\x54\x97\x4f\x75\xd9\xfb\x9c\xb6\x0c\xc2\x77\x24\xa7\xb6\x0c\x42\x01\x3d\xb5\x65\x10\x7a\xf0\xa9\x2d\x83\xc8\xf4\x00\x50\x97\xcf\x65\xe2\x8c\x3d\x57\x7a\x4f\xe7\x8f\xfa\x28\x61\x34\xfb\x74\xfe\xa8\xe7\x94\xd1\x6c\x10\xe6\x30\x9f\xaa\x31\x08\x13\xcf\x4f\xd5\xf8\x74\xe9\x15\x9f\x54\x54\x63\x30\x8a\xc3\x63\x34\x1b\xa4\xaf\x88\x4f\x93\x78\x4f\x93\x78\xad\x8c\x75\xaa\xc6\x60\x14\x62\x11\xa7\xa5\x6f\xc0\xb0\x54\xe5\xa9\x2d\x83\x12\xde\xf1\x54\x63\x50\x9c\x7c\x79\x2a\xbd\xa0\x84\x9d\x54\x7a\x41\x09\x9f\x97\x94\x5e\x50\x8a\x37\x72\xa5\x17\x94\xb0\x93\x1a\x2e\x28\xae\x3c\x7e\x6a\xb8\xa0\x14\xef\x93\x2a\x28\x28\x66\x4f\x9e\x2a\x28\x18\x33\x6d\xf2\x8c\x61\x86\xa9\x2f\xad\x4e\x15\x14\x14\xcb\xe0\x9c\x2a\x28\x88\x8c\xef\x63\x6e\xfe\xc5\x7c\x45\x8f\x44\x63\xcd\xa0\x58\x7a\xe7\xd4\x4a\x41\xf9\xee\xaf\x5a\x29\x28\x7a\xde\xa9\x6f\x82\xd9\x3c\x91\xf4\x4d\x30\x9d\xbe\x7e\xea\x9b\xa0\x3a\x21\xe4\xd4\x37\xc1\x74\xda\xf8\xa9\x6f\x82\x69\x09\x80\xd3\x88\x31\xa8\xce\x11\x39\x8d\x18\x83\xe9\x84\xf9\xd3\x88\x31\xa8\x4e\x11\x39\x75\x52\x50\x9d\xc2\x71\x1a\x31\x06\xd3\x99\xf0\xa7\x96\x0a\xf6\x15\xcc\x8f\xd9\x6f\x0a\xc8\x9a\x62\x72\xaa\xa9\xa7\x05\x64\xad\xf9\x7a\xea\xa9\xa7\xc5\x62\x1d\x44\x45\x12\x34\x8b\xcc\x9d\x8a\x24\x68\xa6\x66\x9f\x8a\xe4\xa9\x48\xfa\x29\x45\xf2\x54\x24\x7d\x0a\x52\x24\x41\x33\xcf\xf9\x54\x24\xc1\x32\xe6\x79\x2a\x92\xa0\x99\x96\x7d\x2a\x8a\xa7\x56\xc8\x4b\x94\xd3\xd4\x5b\xd0\x7e\xdf\x17\xdd\xfa\x47\xcb\xe6\xd0\x57\x14\x41\x33\x29\xfd\x54\x14\xc1\xb4\xea\xc0\xa9\x28\x82\x66\x3a\xff\xa9\x28\x82\xe6\xdc\x80\x53\x2b\x04\xcd\x1c\xfa\xd3\x60\xef\x69\x82\xee\xcf\x07\x2c\x4d\x11\x34\x33\xef\x4e\x63\xbd\xe7\xfb\x3d\x37\xda\x66\xc7\x5f\xdf\x2f\x78\x44\x69\x85\xa0\x37\xcf\x5d\xad\x10\xf4\x7d\xbb\xfb\xff\x9b\xb2\x7e\x08\xbe\xc3\x59\x13\x04\xd6\x87\x3a\x95\x39\x10\xe9\xe3\xf8\xa5\xcc\x5d\x5f\x78\x75\xd2\x54\x6d\x22\x0e\xc6\xe3\xc5\x65\x5e\x2e\x28\xae\xea\x7d\x69\x72\x97\x25\x5c\xcd\xb5\xba\x34\x39\x50\xbc\x4b\x5f\x8a\xdc\x65\x19\x1d\xee\x8f\x97\x22\x77\x59\x46\xa7\xf9\x97\x87\x4d\xbe\xf9\xf4\x53\x97\x4d\xbc\x12\xe4\x32\x71\x29\x72\xa0\x99\x92\x7f\x99\xa9\x0b\x9a\x79\x0c\x97\x6a\x07\x3c\xfd\x2f\xc5\x0e\xa4\x0f\x14\x97\x5e\x07\x06\x6e\x7e\x19\xa6\x05\xe9\x3e\xbd\x14\xbd\x2b\xbe\x9d\xc5\x36\x28\x7a\x60\xb7\xf9\x39\x87\x22\xcc\x44\x63\xeb\x75\x3f\xb0\xbe\x2f\xda\x45\x8c\xce\xf7\xf7\x97\x01\x58\x10\x63\x3a\xf8\xda\x1b\x88\x36\xa7\x3f\x66\x8f\x82\xf7\x78\x5c\x44\x2f\xe5\x0d\x44\x57\xe8\x2e\x33\x7a\x81\x97\xc2\x4b\x75\xbb\x5c\x14\xc5\xd7\xd3\x97\xea\x06\x06\xde\x7f\x69\x6e\x20\x7d\x21\x7e\x29\x64\x97\x0b\x6f\x72\xf5\xbd\xf4\xb1\xcb\x55\x36\xbf\x8d\x70\xfb\x75\x2f\xec\xe6\x52\x9f\xc0\xb4\xf8\xc6\x65\x76\x2e\xa8\x4e\xfd\xba\x8c\xb4\x82\x65\x4e\xde\x65\x0c\x15\xf4\x1f\x97\xc2\x4b\xa1\x02\xde\x01\x2e\x43\xa8\xc0\x27\x91\xcb\x39\x96\x60\x84\xdf\x3a\x6d\x39\xd9\x8f\x8c\x9f\x1a\x06\xe6\xb7\x01\x8e\x72\xfd\x6c\x90\x26\x07\xb9\x7e\x73\x2a\x76\x93\x5a\x76\x35\xab\x21\xb2\x99\xfa\x16\xc8\xc6\xdd\xf8\x52\xb7\x2e\xd4\x4a\xc3\xb9\x34\x2b\x90\xcd\x33\x48\xb1\xba\x4c\xfc\x6d\x7e\xd1\xde\xb8\x72\x48\x0e\xdb\xec\x4f\xfb\xca\x9e\xb0\x65\xba\x16\x08\xa7\x57\x5d\x06\x4b\x41\x1a\x97\xbe\xb4\x2f\x10\x4e\x9c\xba\x94\xaf\xcb\x04\x61\x2e\x2c\x97\x9e\x05\x4a\xc1\x78\x2f\xe3\xa7\xa0\xb8\xe8\xfd\xa5\x7b\x81\x48\x9f\xca\x2f\xed\x0b\x8c\xb2\xfc\x98\x3d\xef\x3e\x28\xb0\x3f\xf4\x2f\x30\x0a\xcf\x4c\x97\x91\xd1\xcb\xa4\xe1\xef\x8b\xf6\xbc\x13\xe5\xf3\x28\x51\xc0\xae\x6d\x5b\xc5\xe7\xef\xcb\xf8\x26\x88\x3e\xbc\x2a\x18\xcd\x04\x25\x51\xb7\x4b\x03\x03\xcd\xa9\x40\x97\x06\x06\x96\x39\x2f\x97\x06\x76\x51\xc0\xd4\x39\x59\x97\x21\x49\x10\x3f\x93\xbf\x2e\x75\x0b\xf4\x9f\x17\x35\x6d\xeb\xca\xaf\xd4\x22\x5b\xab\x5b\x81\xae\xa8\x5d\xba\x15\xd8\xa6\xeb\xaf\xd9\x83\xa4\xf4\x94\xa3\xed\xdc\x48\x30\x10\xa5\x4b\x77\xba\xac\xad\xc3\x67\xf4\x24\x90\xd6\x85\xbc\xf4\x24\x90\x96\x76\xbc\x0c\x25\x02\x55\xee\xd2\x75\x2e\x53\x79\x3d\xb7\xf5\x9a\xcb\x54\x5e\x2f\x74\x86\x08\x2f\x13\x77\xdd\x04\x2d\x03\xec\x23\x91\x6d\x37\xa8\x07\xb2\x74\x3f\xe6\xe0\x4c\xaf\x0a\xec\x0f\xdd\x03\xa4\xcb\x56\x5d\x46\xf9\xc0\x57\x3c\xfa\xd2\x47\x40\xba\x66\xd8\xa5\x8f\x5c\xfa\x88\x03\x6d\x5a\x2e\x48\x97\x29\xbb\xf4\x91\xeb\xcb\xc1\xe5\x02\xa9\x8f\x5c\x84\xf4\x5c\xd3\xe9\x52\x47\x2e\x75\xc4\x63\x47\x1d\x01\xe9\x22\x6e\x97\x11\x3d\x10\x26\x8b\x5c\x1a\x0a\x48\xd7\xc9\xba\x74\x0f\x10\xd3\xf7\x4e\x97\xf2\x01\xb6\x2f\xfc\x61\xd2\xf3\xa5\x89\x80\x98\xaa\xe8\xa5\x8a\x80\xec\x1e\x0d\x9a\xc8\x65\x29\xce\xb9\xfc\x37\xfb\x4c\x0d\x9c\xce\x03\xc7\x65\xe4\x0e\xa4\xa5\x33\x2f\x03\x77\x20\xcc\x39\xb9\x54\x18\x90\xdd\x9b\xb4\x0a\x03\xb2\x7b\x51\x50\x61\x40\x5a\xad\xf3\x52\x61\x40\x5a\xbc\xe8\x52\x61\x40\x76\xef\x09\x2a\x0c\xc8\xee\xd9\xae\xc2\x80\x74\x0a\xd5\x65\xc0\x0f\x84\x31\xde\x4b\xab\x01\xd9\x3d\xf5\x8c\x01\x82\x30\x46\x7a\xe9\x39\x20\x7d\x0a\xba\xf4\x1c\x90\xdd\x0b\x9f\x9e\x03\xb2\x79\x7d\x31\x2a\x08\xd2\xfc\xad\x4b\xf5\x01\xd9\xbd\x21\x1b\x15\x04\x61\x24\xfb\xd2\x86\x2e\xf3\x78\x3d\x2a\x55\x9f\xcb\xa4\x5d\x04\xe9\x52\x7d\x40\x76\x5e\x16\x5c\xc6\xfb\x40\x18\x9a\xbc\xb4\xa1\xcb\x9c\x5d\xcf\x62\x83\x7b\x97\x6b\x73\x24\x4f\xda\x97\xa2\x73\xb9\x46\x63\xf5\xc2\xad\xe9\x80\xe8\xe9\xdd\x42\x61\x01\x69\xe6\xcb\xa5\xb0\x80\x34\x01\xe4\x32\x8c\x06\xd2\xbc\xa0\xcb\x30\x1a\x48\xd3\x7b\x2e\xb5\x06\xa4\xc9\x30\x97\x5a\x03\xd2\x64\x88\x4b\xad\x01\x69\xe6\xc8\xa5\xc3\x80\x34\x61\xe9\x32\x64\x06\xd2\x40\xfc\xa5\xd6\x80\x34\x8b\xe2\x52\x6b\x40\xe4\x77\x7f\xd7\x6b\x40\x38\xf7\xe2\xd2\x6b\xae\x9b\x94\x46\x77\x89\xc2\x02\xd2\x54\xa4\x4b\x61\x01\x69\x7a\xc9\xa5\xaf\x80\x34\x09\xe8\x32\xae\x06\xc2\x49\x68\x97\x71\x35\x90\x26\xe9\x5c\xc6\xd5\x2e\x13\x61\xbd\x6c\x2b\x3a\x97\x29\xae\x5e\xb5\x15\x1d\x90\x66\x22\x5d\x9a\xc8\xf5\x7c\x92\x6f\x9b\x5b\xc1\x72\x8c\x2e\x69\x7d\xe9\x1d\x60\x5f\x47\xf9\x4f\xc5\x03\x14\x17\x93\xbe\xb4\x0c\x30\x8a\xa7\xb3\xe1\x28\x50\x5c\x50\xfc\x52\x3c\xc0\x28\x1e\xd7\x8a\xc7\x65\xed\xcd\x74\x33\x14\x0f\x50\x5c\x30\xfe\x52\x3c\x2e\x97\x68\xf4\xb4\x34\x1a\x05\x8a\x2b\xcd\x5f\x3a\x06\x28\xae\x17\x7f\x19\x78\x02\xa3\x78\x0e\xea\x15\x20\xcd\x7e\xb9\x0c\x3b\x81\x51\xbd\xa8\x18\x61\x02\xc5\x25\xd8\x2f\x23\x4c\xa0\xb8\x84\xf9\xa5\x7f\x5c\x2e\xd1\xc8\xd9\x75\x9b\xf0\x09\x46\xe5\x62\x77\x6b\x24\xa0\xb8\x5a\xfc\xed\x74\xbf\xdb\xba\x32\xec\x91\x5b\xd5\xb8\x3f\xd5\xf0\x53\xa7\x4d\x24\x52\x31\xdd\xea\x56\x22\x6e\xcb\xc3\x70\x5f\xbb\x95\x88\xdb\xf2\x30\xc3\xdf\x7a\x6c\x62\x31\xbe\xee\x76\xbd\x36\x91\x48\xc5\xe5\xfb\xd6\x22\xc0\x1e\x7c\x7e\x5f\x8d\x00\x25\xb9\x59\xdc\x7a\x04\x18\x73\xda\xd4\x6c\xe2\x25\x05\xb6\x7e\xab\x0c\x60\x5f\x08\x06\x6d\xf6\x32\xec\xa5\xff\x69\x2f\x83\x5e\xe2\x11\xb7\xe9\x9e\x60\x5f\x56\xfc\x83\x65\x1b\x46\xc5\xad\xed\x56\x37\xc0\x98\x3c\x5b\xde\xc6\x8f\x40\xf1\x05\xc1\x6d\xf8\x08\x8c\x39\xfc\x2d\x07\x23\x7c\x1f\xec\x56\x38\x18\xc1\x60\x90\x28\x7a\xeb\x1f\x60\xcc\x61\x93\x1d\x2f\xbc\xb1\xe1\x01\xfa\xd6\x3f\xc0\x98\xa4\xa6\xde\xea\x07\x28\x5a\xe3\xad\x7f\x80\x61\x2e\xd2\x6d\xe0\x08\x8c\x49\x58\xeb\x36\x6e\x04\x8a\x0f\xff\xb7\x96\x02\xc6\x1c\x7f\x78\x75\x7d\x9b\x44\x0a\x8a\xf6\x7d\x2b\x31\x20\xba\x2f\xaa\x6f\x83\x45\x60\xcc\x69\x93\x63\x40\xac\x68\x9a\x4c\x71\x2b\x3b\x60\x4c\x0f\x08\x65\x07\x4c\xe7\x56\xdc\x86\x8f\xc0\xf4\xcd\xe8\xad\xff\xdc\x96\xa7\xf1\xe8\x32\xa0\x04\xaa\xb9\x14\xb7\xc9\xa7\x60\x3a\xf5\xe4\x36\xf9\xf4\xb6\x3c\x0d\x8f\x0b\xb7\xe2\x74\x9b\x7c\xea\xfe\x52\x9c\x6e\xcb\xd3\x10\x93\xb8\x35\xa7\xdb\xf2\x34\xa4\x9d\xdd\xaa\x13\x98\xed\xdb\x7a\xc7\x02\x51\x32\x26\x71\x1b\xae\x02\xd3\x29\x31\xb7\xf2\x04\x62\xf8\x0e\xfa\xd6\x9e\x6e\x2b\xd6\x78\xa2\x69\x4f\x60\xaa\x4a\xb7\x41\x2d\x30\x9d\xb2\x72\x9b\xa2\x0a\xa6\x13\x3c\x6e\xc3\x5c\x60\x3a\x6d\xf2\xd6\xb1\xc0\x54\xa8\x6e\x23\x5a\xb7\xc5\x4a\xd3\x2d\xd3\xbb\x40\x35\x3d\xe4\xd6\xbb\xc0\xde\x58\xbf\xea\x60\x34\x07\x83\xa3\x4b\xef\x02\xcb\xf8\xcf\xad\x76\x81\xe9\xa4\x8f\x5b\xed\x02\xd5\x09\xd1\xb7\x8e\x05\xa6\x73\x62\x6e\x1d\x0b\x54\x13\x5e\x6e\x1d\x0b\x4c\x67\x9e\xdc\xe6\xa8\x82\xe9\x0c\x8f\x5b\x9f\x02\xd3\xf9\x41\xb7\x3e\x05\xf6\x75\x82\x5d\x62\x40\x0b\x44\x3a\xcb\xf0\xd6\xa8\xc0\x74\xb6\xce\x6d\x5e\x29\x88\xee\x2c\x82\x5b\xa5\x02\xcb\xc0\xc0\xad\x3e\x81\xa5\xe4\xde\xea\xd3\x6d\x65\x19\x6e\xcc\xb7\xd1\xaa\xdb\x32\x32\xdc\xf8\x6f\xf5\x09\x2c\xed\xff\xd6\x9e\x6e\x2b\xcb\x78\x9d\xd6\x9e\x40\x75\xa1\xb4\xdb\x58\x15\x98\xce\x8c\xba\xf5\x29\xb0\x8c\x4e\xdc\x8a\x12\xa8\xdd\x33\xc9\xc0\x13\x88\xe9\xcc\xb1\x5b\x7b\xba\x2d\x2c\xf3\x35\xd9\xa3\x61\x8f\xfc\xa6\x67\x17\x61\xa6\xcf\x83\x6e\xe3\x47\xb7\xf1\x23\xde\x26\xdd\x2a\x15\x58\x3e\x6b\xdc\x3a\x15\x58\xe6\xf5\xde\x3a\x15\x58\x3e\x7e\xdc\x86\x8a\xc0\xfa\x86\x5a\xcd\x02\xcb\xe7\xa2\xdb\xe8\x11\x58\x3e\x76\xdd\x46\x8f\xc0\x72\x26\xcb\x6d\xf8\x08\x2c\x53\x90\x6f\xc3\x47\x60\x39\x81\xe7\x36\x56\x04\x9a\x75\x27\x6e\x2d\x0e\x44\x5f\x5e\x43\xb4\x38\xb0\xcc\xfe\xbd\x0d\x20\x81\x66\x06\xc2\xad\xd8\x81\x35\xbf\x26\x87\x82\xa0\xd2\xfc\x7e\xdf\xa1\x98\x0e\x85\x3f\xef\xae\x9c\xe6\xf2\x79\xf8\xab\x71\x60\xf9\x24\x79\x1b\x69\x02\xfb\x81\x90\xcd\x50\xda\xc0\xb6\x6f\x3a\xa5\xb5\x81\xdd\xc6\x77\xd5\x36\xd0\x2c\x9c\x72\xab\x6d\x20\x7e\x4e\x27\xbb\x8d\x2c\x81\xfd\x55\x36\x58\x97\x03\xbb\x8d\x2d\xd6\xe5\xc0\xfe\xae\x6d\xee\xd0\x65\x4d\x14\x87\x5c\x59\x03\xcd\x32\x29\xb7\xb2\x06\xf6\xc7\xfc\x0b\x77\xe9\xfa\xf2\x48\xf8\x9c\xb6\x76\x7f\x75\x62\x3c\x66\xd4\xb5\xfb\xab\x13\xe3\xd1\xa6\xaf\x81\xfd\x5d\x76\xbe\x76\x76\x7f\x01\x26\x6f\x73\x8a\x17\x88\x70\xad\x87\x5b\xf3\xba\x9d\x0a\xe9\x4b\x89\x5b\xf5\x02\xbb\xcd\xff\xb5\xbb\x87\x79\x24\x9e\xa5\xca\x17\xd8\xc7\x09\xa3\xac\x7d\x81\x08\x5f\x9b\xdd\xea\x17\xd8\xdf\xb5\xcd\x31\x38\x4c\x2e\xf1\x14\x57\xc0\x40\x84\xca\x7c\x6b\x60\x60\x7f\x8e\x61\x56\xc1\xc0\x6e\xfb\xc3\x5b\xed\xdb\xc4\x4d\xb0\xbf\xc2\x10\x19\xb1\x02\xfb\xef\xe8\xa6\xde\x06\xf6\xe7\x18\x5e\xc5\x0d\x44\x0e\x87\x57\x73\x03\x11\xd6\x46\xb8\x55\x37\xd0\x5d\xf8\xf4\x36\x90\x75\x9f\xdf\xe2\x23\x8c\x9a\x3a\x07\xfa\xef\x6b\x72\xd0\x58\xaa\xe1\xe7\xbe\x32\x31\x13\x74\x17\x69\xbd\x8d\x77\x81\x28\xdf\x30\xea\x81\xf7\xf5\xa5\x15\xd9\x66\x5f\xf1\xc0\xe2\xea\x15\xb7\x21\x2f\x10\xe5\x3b\x44\x74\xc3\x9b\x85\xf8\x8b\x4b\xc3\xdc\x6a\x1f\xe8\xbe\x16\xbb\x75\xbc\xdb\xe5\x15\x7c\xf9\x74\x1b\xa8\x02\xdd\xb8\xe7\xad\xd1\x81\xfd\x31\xb6\x58\x7f\x03\x51\x9d\xf3\x73\xeb\x6f\xa0\xfb\x4a\xed\x36\x08\x05\xba\x41\x9c\xdb\x20\x14\xd8\xdf\xe4\x50\xd5\xe9\x40\xff\x9e\x92\x74\x3a\xb0\xef\xdd\x1c\x1d\x4a\x1d\x88\x5a\x3d\x09\xf5\x35\xe0\x8a\x85\xb7\x39\x8f\xc0\x40\xde\xad\xc0\x81\xe5\xde\xd3\xdf\x40\x1a\x42\xbb\x0d\x54\x81\x74\x89\xf7\xdb\x40\x15\x88\xea\xf0\x18\xa8\x02\xc5\x69\x11\xb7\xe2\x07\x0c\x55\xdc\xa6\x2a\x02\x43\x5e\xb7\x31\x29\x60\x1e\xc2\xad\x1a\x02\x53\x2e\x6f\x63\x4d\xb7\xeb\x2d\x78\xa8\xe8\x77\xa0\x14\x02\x89\xb7\x2e\x07\x96\xcb\xf9\xdf\xba\xdc\xcd\x54\x40\xf7\xb5\x2a\x07\x86\xbd\x33\x80\x04\xe2\x2b\x03\x7f\xab\x72\x20\xcc\x17\xbd\xf5\x36\x90\xce\xad\xb8\x95\x34\x50\x4d\x40\xbe\xcd\x02\x04\xbe\x87\xbd\xd5\x36\x90\xc6\x02\x1f\xd3\xfd\x9e\x1f\xb9\x0b\x9d\x96\x66\x8b\x2f\x28\x0b\x4d\x69\x13\x31\x90\x45\xcb\xb2\x05\x3f\x1e\x3f\x7f\xea\xb0\xcd\xd7\x85\x93\xa6\xd3\x26\x27\x6e\x76\x3f\x76\xd9\xe6\xfb\xc2\xa4\xe9\xb1\x89\xfc\x05\xce\xa1\x47\x1f\x03\xe1\xac\x80\x47\x1f\x03\x91\x16\x26\x7e\x14\x32\x90\x1d\x67\x7e\x14\x32\x10\xce\x3a\x78\xf4\x31\x10\x4e\xaf\x78\xf4\x31\x90\x9d\xcb\xc7\xa3\x8f\x81\x30\xc3\xfd\x51\xc7\x40\x3a\xd9\xff\x51\xc7\x1e\xa3\x3f\x0e\x8f\x3a\x06\xc2\xd4\xfe\x47\x1d\x03\x61\x06\xea\xa3\x7b\x3d\x66\xee\xa1\xd1\x8f\xee\x05\xd2\x59\x5d\x8f\x79\x7b\x0f\x2b\x2a\x38\xbf\xe0\x51\xb4\x40\x3a\x87\xe8\x51\xb4\x40\x98\x78\xfb\xa8\x50\x60\x54\xde\x9b\x3c\x3a\x12\x18\x2e\x6e\xfd\x98\x78\x07\x4a\x09\x7f\xde\x4d\x2d\xe8\x7d\xf8\x5b\xee\x0f\x52\xec\xd2\x12\xd9\x8f\xa6\xf3\xb8\x10\x3d\xcf\x7a\x8f\xa6\x03\xc6\x44\x45\x1e\xb5\xe6\x71\x4e\x9d\x87\x8a\x5a\x03\x8a\xb1\x91\x47\xad\x79\x5c\x75\x9e\x53\xfd\xd1\x4e\x40\x35\xd7\xff\xd1\x4e\x1e\x27\xcb\x71\x69\x79\x34\x11\x50\xcd\xe2\x7f\x34\x91\x47\x13\x59\x7e\xca\x03\x85\x85\x13\x46\xf5\xa8\x50\x45\x40\x35\x0e\xf2\x18\x01\x02\xd3\x37\x90\x8f\x76\x02\xaa\xc9\xfe\x8f\xda\xf1\x18\xee\x99\xcb\x1f\xf3\x18\xd0\x31\xdc\x6f\x3a\x06\x58\xbe\x93\x7e\x74\x8c\xc7\x02\x9b\xd3\x26\x7b\x69\x05\x4d\x77\xa5\xda\xf1\x58\x41\x33\xdd\x30\x8f\x14\x2b\x68\x7a\x3a\x18\xc7\x01\xcb\x57\x60\x8f\x61\x1c\xd0\xcc\x5d\x7d\xd4\x0e\xd0\x7e\x75\xfd\xff\x6d\xf9\xd1\x40\x40\x33\xd9\xf5\x31\xca\xf3\x74\x1f\x9d\xd9\x46\x05\x04\x34\xd3\x5a\x1f\xa3\x3c\x60\x3f\x06\xb9\x91\xf6\xae\x9b\x8a\xfc\x7d\xce\xee\xf5\xef\xbd\xb8\x9b\x69\xff\x36\x9a\xa5\x8e\x1e\xa3\x41\x60\x7f\x95\xfd\xef\xe4\x36\xd0\x4c\x58\x7e\x54\x1c\xd0\xac\xd1\xf7\xa8\x38\xa0\xfd\xbe\x2f\x7a\x10\x7e\xeb\xd9\xf1\x6a\xe2\xd1\x71\x9e\xf4\x31\xcb\xa1\xd7\x68\xc0\xfe\x53\xce\x52\xe7\xa8\x81\xfd\x5c\xc1\x5e\x53\x73\x40\x77\xf1\xea\x47\xcd\x01\xfb\x63\xfe\x9c\xdd\x67\xca\x59\xf1\xe9\xe9\xd1\x7d\xc0\xfe\x5b\xce\x11\xe5\xe7\xb1\x06\x8d\xcf\xc6\x8f\xa6\x03\xd2\x0b\x94\xa1\x23\xa0\x28\x3c\xaa\xcf\x63\xf9\x4c\x06\xd2\xfc\x3a\x90\x66\xb0\x3c\xe6\xd7\x3d\x56\xcf\x64\x13\x4c\xa5\x03\xe1\x94\xa8\x47\x3b\x02\xd5\xd5\x41\x1e\xed\x08\xb8\xbe\xef\x63\x72\x1d\x18\xdf\x6f\xdb\x69\x26\xae\x79\x8a\x6a\x4b\x20\x4c\xda\x7f\xb4\x25\x50\x7d\xbb\xf2\x68\x4b\xc0\xc5\xa2\x1f\x65\x09\xa4\x0f\x79\x8f\x66\x04\xd2\xc7\xcc\xc7\xbc\x3a\x10\xe9\x4d\xfb\xd1\x96\x40\x9a\x42\xf3\x68\x46\x20\x86\xb5\x4c\x1f\xd5\x08\x44\x78\x85\x51\x8d\x1e\x63\x5e\x9e\xa1\xaa\xd1\x63\xcc\xcb\xf3\x58\x35\x7a\x2c\x32\xe3\xbe\x56\x8d\x1e\x63\x5e\xee\x56\x63\x5e\x20\x2d\x54\xfc\x28\x4b\x8f\x31\x2f\x8f\x39\x63\x5e\x8f\x39\x78\x3c\x85\x3c\x0a\xcf\xc3\x34\x33\xd3\x90\x1e\x7d\xe7\x31\x93\xce\xb3\x5d\xb5\x79\xcc\x91\xf3\x26\x60\x8e\xdc\xe3\x4a\x0c\xde\x35\x95\x9d\xc7\x1c\x39\xb7\x4b\x61\x01\xe1\x0c\x94\x47\x37\x01\x69\x46\xd6\x63\x2c\x09\xa4\x41\xdb\x47\x5b\x01\x69\xa1\x92\xc7\x58\xd2\xe3\x72\x0a\x0e\xa1\xb1\x24\x10\x4e\xb5\x78\x54\x1a\x50\x4a\xb1\xc9\x81\x3e\xbc\x13\xf9\x5b\x76\x68\x63\xf8\x88\xf6\xe8\x2e\xa0\x14\x42\xc2\x8f\xea\x02\x46\xf5\xae\xa6\xb9\x80\x62\x10\xfd\x51\x5c\xc0\xa8\x3c\x0f\x3d\x3a\x0a\x48\x5f\xfc\x3d\x2a\x0a\x18\x93\x37\x43\x8f\x0a\xf2\x9c\xbe\xc3\xe4\x1f\x35\x10\x30\x26\xef\xd7\x1e\x05\x04\x14\x5f\xcc\x3f\xfa\x07\x28\xc6\x02\x1e\xf5\xe3\x21\x67\xce\x22\x11\x8f\xaa\x01\xc6\xe4\x95\xdb\xa3\x43\x80\x18\xd5\x6b\xb4\xb3\xbb\x40\xd1\xb3\x1f\x1d\xe2\x61\x92\x96\x33\xc5\x1e\xb3\xe1\x40\x75\x22\xda\x63\x36\x1c\x58\xc6\x59\x1f\x05\xe2\x71\x8e\x96\x07\x85\xc1\xa5\xc7\x39\x5a\xee\x35\x83\x4b\xa0\xba\x86\xe2\xa3\x65\x3c\xce\xd1\xf2\xce\x6d\x70\x09\x54\x67\x72\x3d\x8a\xc7\xe3\x1c\x2d\x8f\x13\x83\x4b\x60\xf9\xf4\xfb\xa8\x22\x8f\x85\x57\xe6\xf2\xf7\xed\xe4\xc5\x2b\x13\x4f\x5c\xa3\x4b\x60\x3f\x31\x32\x16\xea\x09\x58\x46\xc2\x1e\xed\x04\x2c\x23\x61\x8f\xd1\x25\xd0\x9c\xcc\xf1\x28\x2c\x60\x19\x55\x7b\x14\x96\xc7\xb9\x5d\x28\xc6\xa3\xaf\x3c\xce\xed\x6a\x7e\xca\xe1\xb9\x79\x55\x84\x76\x3c\xea\x0a\x58\x06\xda\x1e\x63\x50\x8f\x73\xbb\xbc\x1a\x1a\x83\x02\xcd\x59\x36\x8f\x4e\x03\xe2\x67\x26\xc8\xe3\xe4\xae\xc7\xc9\x5d\x3c\xe5\x3f\x8a\x0e\x68\x2d\xfe\xf0\x6e\xfb\x51\x84\xc0\xfe\x61\xff\xcc\x6b\x09\x39\x7b\x4e\x24\x7a\x54\x21\xd0\x9c\x47\xf4\xa8\x42\x60\x7f\xd3\x8f\x39\xa2\x24\xed\x39\x7b\xe9\x31\x69\x0f\x34\xa7\xf3\x3c\xea\x11\x88\xf8\x79\xe7\x50\x90\xc0\xbe\x79\xb1\x1b\x55\x24\xb0\xdb\x18\x41\x25\x09\xec\x36\x7a\x6d\x00\x0d\xec\x36\xb7\xce\xc1\xd9\xe8\xc6\xb0\x1f\xd5\xe9\x21\x0e\x56\x86\x43\xad\x28\x81\x2d\xb2\xfc\xad\x53\xb5\xc0\xd6\x51\x8e\x7e\x33\xf0\x40\xb7\xb6\xd8\xa3\x51\x81\xee\x61\x61\x6c\x0c\x84\x89\x99\x8f\x42\x05\x22\xec\xa9\xb1\x31\x10\xcd\x60\xf7\xa3\x64\x3d\xef\xa7\x38\xb6\x79\x14\x30\x27\xcb\x19\x69\x8f\x01\xb3\xc7\x72\x9b\xe3\xdb\x5a\x3b\xfa\x92\x83\xee\x0c\x87\x47\x1b\x7b\xb4\x31\x37\xd6\x5d\x4a\x10\x8d\x3b\xd9\x6b\xc0\x0c\xf8\xee\xf1\x55\xcf\x40\x9a\x6a\xfa\xea\x67\x20\x5c\xb1\xe5\x35\x83\x0f\xa4\x6b\xc9\xbc\x46\xd5\x40\x1a\x42\x7b\x4d\xe0\x03\xe1\xd4\xb6\x57\x65\x03\xcd\xd9\x3a\xaf\xca\x06\x0c\xd0\xbd\x0a\x1b\x88\xb6\xe8\xcd\x6b\xec\x0d\xec\x1e\xfa\x63\x8f\x6d\x8f\x9f\x73\xcb\x5e\xdb\xa8\xa3\xbd\xc7\xeb\xd5\xe2\x40\xed\x5c\x72\x5f\xb3\xf3\x80\x41\xbb\x57\xad\x7b\x29\xa1\x62\xaf\xf5\x35\xe0\xcb\xdb\x57\x5d\x03\xbe\x0f\x7d\x55\x33\x90\xe6\x1e\xbe\xaa\x19\x58\x04\x33\x5e\xcd\x0c\xa4\xcb\xd6\xbc\x9a\x19\x08\x97\x7f\x79\x0d\x81\xbd\x45\xaf\x64\x18\x74\x2e\x10\xc3\x17\x14\xaf\xd1\xad\x97\x29\x50\x26\x1a\xbf\x7a\x18\x48\xcb\x1c\xbe\x7a\x18\x08\x13\x20\x5f\xa5\x0b\xc4\xfc\x3e\xe5\xf0\xb1\xba\x9d\x11\xbc\xd7\xb0\x14\x18\x2e\x70\xf6\x1a\x96\x02\xc5\x75\x1c\x5f\xcd\x0c\x8c\xca\x01\xf8\x1a\x70\x7a\x5d\x0f\x81\xf8\xc3\xab\x99\x81\xe1\x73\xf8\xab\x99\xbd\x9f\x99\xf9\x45\xb7\xde\x6a\x27\xcb\x9f\x77\x54\xab\xa9\xec\xee\x0d\xc3\x4b\xa0\x3a\xf9\xf8\x55\xcd\xc0\xf2\xc1\xe9\xd5\xb9\xc0\x32\xfc\xfe\xea\x5c\x60\x99\x89\xf0\x1a\xfe\x01\xcd\xf9\x71\xaf\xce\x05\x9a\x53\x10\x5f\x23\x3d\xaf\x8b\x8a\x9b\xaa\xf1\xaa\x61\xa0\x59\x47\xeb\x55\xc3\xc0\xbe\x8c\xd9\xe6\xc6\x36\x5e\xee\x39\xb0\x7a\x18\x88\x5e\xbe\xad\x75\xfc\x37\xba\x4f\xdc\xaf\x22\x06\xa2\x56\x5e\x31\xbf\xc6\x84\x40\xb7\x03\x86\x84\x5e\xeb\x72\x3a\x8d\xe6\x55\xce\x40\x76\xc7\xcc\x00\x10\x48\xe3\xb8\xaf\xf6\x05\x8a\x71\xe8\x57\xfb\x02\xd3\x04\xa1\xd7\x88\x10\xa8\x2e\x03\xf8\x6a\x5f\x20\xba\x95\x5a\x5f\xed\x0b\x74\xd7\x30\x7f\x35\x28\xd0\x1d\x7f\x05\x0a\x84\xaf\x50\x5e\x05\xea\xb5\x38\x88\xcb\xe3\xbd\xe6\xd8\x81\xb0\x96\xdd\x6b\xdc\xe8\xb5\x7e\xa7\x67\x84\x4e\x05\x46\xf5\xba\xa0\x52\x81\x62\x28\xef\xd5\xa8\x40\xb1\x76\xe5\xab\x50\x81\x92\xd3\x7f\xb4\x47\x49\x01\x9d\xe9\x6f\xd9\x21\xd6\x23\x70\xd6\xf8\xab\x4e\x81\x65\x0e\xc3\xab\x4d\x81\xe6\x1c\x9d\xd7\x48\x12\x68\x4e\xa6\x7d\xf5\x2b\xb0\x3b\x49\xc7\x35\xac\xd7\xe4\xbc\xdf\x1f\xca\x77\xbe\x1a\x18\x48\x17\x6a\x78\xf5\x2d\x90\xae\xcf\xf5\x1a\x8e\x7a\x5d\x2b\x9c\x27\xc8\x57\x07\x03\xe9\x92\x5d\xaf\x0e\x06\xc2\x32\xc4\xaf\xc6\xf5\xba\x2c\xb8\x81\xca\x57\xe7\x7a\x5d\x16\xcf\x83\x57\xe9\x02\xd9\x79\xe4\x7e\x95\x2e\x90\xfd\xdb\x30\x87\xca\x55\xf1\x3c\xc2\xb5\xae\xd7\x5a\x21\x6e\x85\xd6\x05\xb2\x7b\xc9\xd4\xba\xc0\xbe\xce\xd9\xe6\xce\x9f\xee\x7c\xbf\x69\xc7\xa7\x87\x33\xdb\xaa\x74\x81\x70\x22\xd4\xab\x74\xbd\x2e\xa7\xc7\x33\xca\xab\x74\x81\xf0\x9d\xea\xab\x74\xbd\x04\x9f\x9c\xec\xfe\x6a\x58\x20\x4c\xf5\x7d\xcd\x17\x04\xc5\x77\xa3\xaf\x55\x41\x40\x71\xd5\xdc\xd7\x68\x14\x28\xae\x36\xf8\x5a\xdb\x03\x8c\xb9\xfc\x94\x9b\xba\x38\xf3\xa6\x9f\x72\x53\x17\x8f\xf4\x3c\x26\xbf\x86\x9d\x40\xf1\xe5\xf6\xab\x87\x81\x31\x97\x5f\x74\x53\x97\x87\x2e\xe3\x65\x80\x09\x94\x9c\x6e\xaa\xfb\x63\x91\x7a\xe1\x89\xad\xad\x81\x92\x9e\xd8\x46\x97\x40\x71\x82\xf3\xab\x9a\x81\x48\x23\x07\xaf\x6e\xf6\x5a\xc5\x63\xf9\x31\x3b\x69\x15\x0f\x9e\xc2\x5f\xdd\xec\x75\x0d\x82\xe1\x25\x41\x39\x03\xd5\xf8\xdd\x6b\xb4\xe9\x3d\x7c\xf2\xf7\xf7\xed\xe5\x41\x60\x77\xd9\x64\x2f\x0f\xdf\x66\xd1\x4b\xe5\x0c\xac\xef\x49\x44\x39\x03\xd5\xd5\xe4\x5f\x83\x4a\x60\xf9\xb8\xf5\x2a\x67\x20\xba\xab\x27\xbe\xda\x19\xd8\x17\x78\x06\x48\x17\x03\xcd\xe9\xe4\xaf\x2e\x06\x96\xaf\xbe\x5f\x5d\x0c\x34\x27\xb1\xbf\xba\x18\x68\xce\xbf\x7b\x8d\xfa\xbc\x26\xf1\x59\x14\xec\xb5\x44\x07\xd8\x77\x0b\xf6\xa6\xa1\xa0\xf7\x5b\x90\xc0\x03\x5b\x8f\x7b\x8d\x05\xd9\x51\x35\x0e\x44\xb8\xaa\xf0\xeb\x14\x29\x10\xc5\x68\xe6\x6b\xcc\xe8\x25\x3e\x54\x4c\xef\x7f\x8d\x05\x01\xab\xbd\xbf\xea\x1e\xd8\xb7\x10\xfe\x54\xdf\x03\x06\x8f\x5f\xad\x0d\xa4\x11\xbb\x57\x1f\x03\xe1\xca\xdb\xaf\x3e\x06\xc2\xf9\xbc\xaf\xa1\x21\x90\xe6\x31\xbc\xea\x18\x48\x57\x07\x7c\xb5\x31\x90\x2e\x65\xf8\x6a\x63\x20\xbf\xdb\xa4\xea\x05\xd2\xcc\x89\x57\xf5\x02\xe9\xbc\x80\x57\xf5\x02\x26\xd9\xbd\x9a\x17\x08\x8b\x2c\xbf\x9a\x17\x08\x8b\x50\xbf\x9a\x17\x58\xde\x9e\xb4\x2c\x10\x6d\x7d\x7f\x68\x17\x5d\x62\xef\xdb\x78\xf7\xc7\xed\x15\xd0\x4f\xd9\xeb\x9b\x1c\xbb\xef\x96\xa5\x33\x81\xf8\xae\xb0\x3a\x13\x48\x4b\xc4\xbf\xfa\x11\x48\xab\xee\xbd\x4e\x6a\x02\x69\x21\xef\x57\x65\x02\xd9\x1d\x55\x4d\x08\xa4\xcb\x0d\xbe\x66\x0d\xbe\x2e\xd9\xed\x35\xc4\x10\xd2\x6b\x08\xc9\xdb\x9f\x59\x83\x20\xcb\xb7\x5d\xf6\xc8\x15\xbb\x1d\x0b\xb3\x06\x41\x5a\xea\xee\x55\x96\x40\x58\x33\xf0\xd5\x8b\x40\xba\xca\xe3\xab\x17\x81\xb4\xd8\xe0\x6b\xa8\x09\x84\x39\x49\xaf\x62\x04\xb2\x7c\xbf\x65\x87\x10\x23\xe3\x87\xaf\x0e\x04\xd2\x5a\x86\xaf\x0e\x04\xd2\x8a\x87\xaf\xf1\x28\x10\xa6\x11\xbd\xfa\x0e\x08\x52\x67\xf2\x47\xd2\xa0\x48\xea\x2e\xe6\x8f\xc8\x92\xc8\xde\xea\xff\xde\x95\xf3\x87\xc4\x88\xec\xfb\xac\xcb\x1f\x12\x23\xb2\xef\x4b\x66\xfe\xb0\x18\x91\x7d\x9f\x61\xf9\x43\x62\x44\xf6\xfd\x80\x91\x3f\x1c\x46\x04\x0f\x81\xf9\x43\x61\x44\x90\x17\x94\xbf\x70\xb3\x99\x86\xd4\x2b\x3f\x4f\xbc\x4a\x24\x33\xeb\xf3\x87\xe9\x88\x20\x9c\x98\x3f\x4c\x47\x64\x6f\x6c\x2a\xaa\x23\x82\x54\xa1\xfc\x11\xc1\x12\x41\xea\x59\xfe\x88\x60\x89\x20\xc7\x28\x7f\x18\x91\xc8\x5e\xfd\x47\xc7\xce\x70\x55\x71\x53\x1d\x9c\x70\x70\xdc\x08\x07\xc7\x70\xd5\xf4\x1f\x1d\x9c\x70\x70\x1a\x4d\x0e\x8e\x11\xac\x62\x93\x83\x13\x9c\x63\x95\xa6\xe2\x48\x30\x7b\x89\xf8\x61\xfe\x8a\x23\xf1\x15\x90\xe4\x1f\x8b\x23\x51\x7c\xbb\xcd\x76\x15\x47\xa2\xf8\xd4\x39\xfc\x98\x43\x61\xa0\xcb\x0d\x2b\x0e\x85\x81\x2e\x7b\x54\x1c\x8a\x42\x1a\xf7\xf7\x97\x0e\x85\x1a\x36\xdd\xb0\x69\x13\x0f\x1e\x1e\x01\xc5\xd1\x29\x5f\xed\x2e\x9a\x1c\x1d\xea\x4e\x92\x13\x97\xbf\xe2\xe8\x14\x47\xc7\x7f\x74\x74\x58\xdf\xa0\x57\xbf\xe8\xe8\x14\x9f\xc1\xfc\x47\x47\xa7\x38\x3a\x8b\x26\x0f\x9d\xe2\xa1\xc3\x46\x54\x47\xa7\x92\x51\x3d\x3c\xe8\xaa\xc3\x53\x19\x1e\x0f\xba\xea\xf0\x54\x0e\x94\xca\x21\x50\x1d\x1d\x56\x20\xef\x85\xdf\xaf\x8e\x4e\xf5\x1c\xb6\xc9\xa1\xa8\x78\xbf\xc3\x5a\xed\x37\x73\xad\xe6\x60\x5b\xab\x9d\x64\xe9\xf2\xc1\xf2\x28\xf9\x6b\xee\x4a\x56\x42\x98\x0e\x62\x73\x63\x37\x46\x0d\x9b\xdc\xd6\xc6\xeb\x64\x07\xb1\xb9\xad\xac\x49\x3e\x3d\x2c\x9a\xdb\xda\xdc\x93\x74\xbc\xb9\xad\x2c\xa1\x30\x1d\x8b\xe6\x9e\x24\xf1\x6f\x7a\x6c\x36\x37\x9f\xf9\x56\xd3\xe3\xbc\xb9\xf9\x2c\x52\x3e\xdd\x47\xcd\xdd\xe6\xdc\x2a\x66\x56\xe4\xaf\xb9\x93\x9c\x48\xe5\x61\xd7\xdc\x49\x4e\xa4\x72\xc4\xba\x9d\x74\xd6\xd4\xd7\x64\x8f\x7a\xb1\xce\x0e\x3f\xd6\xed\x92\xeb\x2a\x38\xb0\xdd\x2e\x61\x74\xd3\xab\x57\xb7\x4b\xce\x9a\xf2\xc2\xd3\x3d\xec\x3a\x49\xd6\xd3\x2f\xba\xfd\x9d\xb9\xd4\x1e\xc2\xdd\xed\xef\xbc\x0e\x0f\xf6\x6e\x77\x8f\x74\xde\xef\x7b\xce\x77\x37\x9f\x42\x91\x35\xe8\x78\xf7\x18\xeb\xbe\x23\x60\xb7\x75\x8f\xb1\x4e\x8e\xbb\xc7\x6b\xda\x23\x24\x6f\x7a\xf0\xa4\x1d\xda\x28\xc5\x43\x2c\xed\x50\xba\xe6\x20\x3b\x24\xed\x50\xd2\x21\x4f\x9a\x74\x1f\x25\x8f\xf9\x8b\x3e\xa6\xfb\xe8\xd3\x3e\x46\x3a\xed\x36\xd1\xb5\xe9\xb5\x28\xed\x36\x26\x58\xbe\x8d\xb0\xdb\xc4\xd6\xa6\x87\x7e\xda\x6d\x0a\x3c\x4e\xaf\x0c\xe9\x8e\x24\xb4\x36\x3d\xdb\xd2\x91\x48\xa2\x00\xdf\xcf\x3b\x12\x4c\xc8\xe2\x75\x46\xfe\xd2\x91\xd8\x28\xc5\xc3\x69\xb8\xbb\xcd\x33\x74\x0f\x0d\x07\x87\x48\xdb\xf4\x72\x3e\xec\x36\xab\x32\xb4\xe5\x11\x3c\xec\xe4\x30\x35\xd3\x3d\x39\xfc\xcf\xf1\xbd\xe0\xb2\xcd\x3f\x1d\x4c\x8b\x77\x7c\xa6\x7f\x3a\x79\x6b\x13\x74\x73\x7a\x22\x4d\x4f\x24\xbe\x38\xdd\x23\x93\xb7\x36\x85\x0e\x4c\xf7\xc8\x24\xb5\xdf\xcd\x98\x6e\xda\x64\x8f\x78\xc3\x98\xee\x91\xa9\xcd\xb0\x93\xa6\x1b\x3b\xd9\x23\x5e\x12\xa7\x7b\x64\x12\x84\x09\xba\x39\xdd\x23\x13\x9b\x59\xec\x91\xe9\x1e\x99\xe4\x96\x2f\x3f\xe5\xf0\x6f\x94\xe2\x65\x6c\x3a\xfc\xd3\xe1\xff\x7f\x51\xce\xdf\x74\xa4\x28\xf3\x58\x3d\xdc\x96\xa3\xb2\x48\xb1\x5e\x36\xb9\x2b\x36\x46\x0d\x7a\xb2\x1c\x82\xe5\x10\xd8\xe4\x10\x6c\x8c\x5a\xd8\xec\xe5\x10\x2c\x26\x3c\x78\xb3\x5d\x0e\xc1\x72\x08\x18\xbb\x65\xe7\x16\xf3\x35\x3c\xb6\x96\x87\x1b\xf6\x56\xbd\x25\x2f\xfb\xbb\x08\x3a\x79\x7a\x2e\xfb\xbb\x38\xf1\x0a\x83\xbe\xec\x10\x19\x83\x49\x8c\x31\x7f\xcb\x5d\xbf\x3c\xde\x18\xf5\xc3\x4e\x6a\x74\x8b\xdf\x3f\xec\xe4\x61\x27\xfd\x94\xbb\xfe\x20\x95\xc2\x63\xf7\xb0\xdf\x4a\x5e\xf5\xba\x7a\xd8\xa5\xc3\x05\x40\x93\xc1\x38\xdc\xad\x07\x92\xba\xe8\xe6\xe9\x7f\x6e\x8c\xe5\xb5\xf0\xf4\x70\x23\xf8\xb5\x7e\xec\xc3\xd3\xcd\xa0\x70\x22\x05\x04\xf2\x77\xba\x19\xa7\xb7\xe0\xc6\xef\x9f\x6e\x07\x45\x24\xd2\x03\xe2\x74\xfc\x09\x88\x11\xb7\xc9\xdf\xe9\xf8\x6f\xd4\xf0\x71\xe1\x74\x63\x37\xc6\xf2\x62\x75\xba\xad\xc4\xc8\x78\x31\x9e\xbf\xd3\x43\x70\x63\x7e\xd7\xed\xd3\xbd\xc4\x3a\xe8\xeb\xfb\x79\xf7\xd2\x46\x19\xdf\xa7\xdc\x4b\x1b\x65\xfc\xdc\x7c\xf7\xd2\xc9\x3c\x53\xcf\x83\xd3\xbd\x74\x92\x31\xb2\xec\xb7\x3b\x89\x55\xd0\x97\x17\xab\xcb\x01\xa3\x6c\xc5\xf2\xd4\xb8\x1c\xb0\x8d\xd9\xdd\x49\x97\xa3\x83\xa4\x2d\xef\x7d\x97\x83\xb3\x31\x99\xfe\x96\xbf\xcb\xc1\xb1\x44\x85\xff\x78\x39\x38\x94\xa8\xe0\xd5\x5c\xfe\x2e\x07\x87\x12\x15\x84\x03\xf2\x77\x39\x38\x1b\x63\x39\x38\x97\x83\x73\x91\xf9\xfd\xfd\x96\x83\x73\x31\x38\xde\x28\x2e\x07\x87\xd5\xd1\x73\xb9\xa9\x0e\xce\xc6\xec\x0e\xe1\xe5\xe0\x6c\x8c\xf5\x75\xc8\xc1\xa1\x90\x45\x77\x08\x2f\x07\x87\x05\xd3\x97\x1d\xba\x1d\x89\x9b\x39\xde\x9e\x5a\xb7\x23\xb1\x8d\x6f\xac\x1f\x1b\x71\xdb\xed\xdb\x63\x82\x9f\xbf\xed\xa3\xe5\x28\x96\x4f\x1e\xb7\x9d\xbc\x3d\x02\xfc\x7d\x3b\xb9\x31\x96\xa3\x73\xdb\xc9\x8d\x32\x3c\x5a\x6f\x3b\xb9\x31\x96\x03\x76\xdb\xc9\xdb\x23\xc0\xad\xb0\x93\x37\x9d\xfc\x71\x49\xb9\xed\x24\xa1\xb3\x3e\x3d\x77\x6f\x7b\xc9\x42\xeb\xc3\x8f\x3d\x1e\x02\x0f\x79\x44\x8d\xed\x7f\xec\xf8\x63\xc7\xf9\xfd\xc7\x73\x66\x63\x76\xff\xf2\x71\x2c\x58\x0e\xa1\x0f\x6f\x32\x8f\x87\xc5\xe3\xf8\xf8\x63\x1e\x03\x0f\x11\x63\x2f\x76\x8f\xe3\x43\xe0\xac\x7f\x67\xdb\xe3\xf8\x10\x38\xeb\xc3\x8b\xed\xe3\x00\x39\xf3\xac\x7a\x0d\x79\xdd\xdc\x97\xcd\xed\x74\xea\x75\x73\x5f\x36\xb7\x33\xb4\xaf\x9b\xfb\xba\xb9\x0c\xed\xeb\xe6\xbe\xd4\x46\xf5\x60\x79\xdd\xda\x97\xc8\x72\xa7\x53\xaf\x7b\x93\xe5\xd1\xbb\xa3\xfd\xda\x81\x97\x33\xbc\xfb\x5b\x76\xe0\x25\xb2\x3c\xfc\xa2\xdb\xbf\x31\xbb\x87\xe7\xeb\xe6\xbf\xbc\xac\xb6\xe7\xaf\xfb\xd7\x35\xea\xec\xf8\xeb\xfe\x7d\xa9\x12\xd1\x39\xca\x5e\xf7\xef\xcb\x41\xec\x89\xfa\xba\x7f\x71\xc8\x2c\x5e\x8d\x5e\x77\xf0\xcb\x51\xec\x69\xf9\xba\x7f\x37\x26\x2f\x3f\x33\xf4\x4a\x50\x49\xbf\xcc\x20\xb6\x26\x6a\x5f\x36\x55\x9b\x2a\xbf\x95\x34\x35\x9b\x38\xc5\xb9\x2b\x07\xc1\x35\x31\x99\x82\x9a\x41\x3e\xa4\xa8\x94\x9d\xca\x20\xde\x26\xa2\x13\xa0\xcd\x20\xe0\x26\x2a\xc5\xeb\x32\xb4\x5b\x50\x99\xa3\x91\xa1\xbe\x82\xc9\x9c\xdd\x0c\xf5\x15\x4c\x5e\x66\x64\xa8\xaf\x20\x3a\x81\x81\x0c\xfd\x15\xd4\xfc\xc3\x0b\xec\x0c\xf5\x16\x54\xa6\x75\x64\xa8\xb7\xa0\x76\x9e\x0a\x42\xbd\x05\x93\x97\xc2\x19\xba\x2c\xa8\xa4\xa4\x65\xe8\xb2\x60\x92\x41\x99\xa1\xcb\x82\xc9\xc4\xe2\x0c\x5d\x16\x54\x66\xa0\x64\xe8\xb2\x60\x76\x47\x2f\x1c\xa9\xf0\x40\x62\x0c\x74\x59\x10\x86\x3e\x33\x94\x59\x50\xfb\xf2\x2f\x1d\xaa\x60\x6d\x63\x0e\x91\x50\x66\x41\xa5\xc8\x46\x86\x32\x0b\x66\xff\x7e\xcb\x7e\x87\xfd\xde\x07\x52\xe8\xa4\xa0\x32\xd9\x35\x43\xb3\x04\x95\xba\x82\x19\x9a\x25\x58\xd3\xa1\xd0\x2c\xc1\xe2\x2d\x49\x86\x1a\x09\x16\x41\x80\x0c\x35\x12\xac\xe9\x41\xa9\x33\x82\xc5\x4b\xb1\x0c\x9d\x11\x2c\x5e\xe8\x64\x54\xf7\x47\xb5\x76\xa9\xbf\xaf\x33\x82\xc5\x8b\xbf\x0c\x05\x11\xd4\x74\xf4\xab\x43\x5d\x49\x10\xc1\x17\x42\x41\x04\x35\x3d\x9c\xb5\x41\xb0\x14\xc4\xa8\x0e\x18\x8b\x17\x8c\xf5\xb5\xb9\xb1\x1b\x95\x72\x8f\x19\xd5\x8d\xad\x54\x12\x72\xef\xaa\x91\x61\x1c\x10\x8d\x0c\x35\x12\x2c\xea\xee\x67\xa8\x91\x20\x72\x70\x81\x09\xa5\x11\x54\xaa\x53\x66\x28\x8d\x60\x11\x24\xc9\x50\x1a\xc1\xe2\xf5\x66\x86\xd2\x08\x1a\x05\x5f\x32\x9a\x3b\xa9\x79\xea\x31\x62\x7a\x64\x98\xb4\x39\x6c\xb2\xe3\x8d\xbc\xc6\xee\x6f\xb9\x93\x48\xda\xa4\x42\x64\x86\x1a\x09\x2a\x75\x29\x33\x9a\x43\xd1\x1c\x0a\xbf\xe8\x50\x98\xb4\x89\xc0\x85\xb2\x09\xf6\x35\x81\x8f\x69\x9b\x61\x22\x67\x32\x3c\x9a\x25\x58\x04\x7e\x33\x34\x4b\xd0\x98\x02\x93\xd1\xed\x77\xe7\xc5\xb7\xbb\x52\xd9\x04\xed\xe7\x18\x2a\x9b\x20\x52\x65\x0f\x6d\x13\xb4\x9f\x27\xbd\xb6\x09\x16\xc1\x9b\x8c\x6e\xc7\xbb\x39\x0b\xee\x71\x0d\x14\x34\x66\xdd\x64\x68\xa0\x60\x91\xb2\x9c\xa1\x81\x82\x46\xe6\x5e\x46\xda\x73\xd2\x39\xe7\xb0\x9b\xe9\x51\x90\x1c\x05\xee\x4b\x45\x35\xcc\xdd\xe4\x5e\x14\x5a\x29\xd8\x07\x06\x5b\xab\x96\x82\xe5\x3b\x8d\x50\x4b\x41\xfc\xa8\x9b\x95\xa1\x97\x82\xd6\xbc\x6a\xea\xa5\xa0\x32\x1b\x2d\x43\x09\x05\x4b\x8f\x0f\x25\x14\x34\xf2\x31\x33\x94\x50\xb0\x48\x91\xcb\xd0\x38\x41\xa3\xc6\x48\x86\xc6\x09\x22\x35\x85\x50\x39\x41\x23\x5a\x93\x31\xec\xf9\xf0\xf8\x67\xc3\xb4\x50\xb0\x48\xe7\xcb\x18\x5e\x7d\x86\x47\x06\xbf\x3f\x1c\x0c\x32\x3e\x49\xe2\xc8\xd0\x55\xc3\x92\x8a\xde\x40\x86\x63\xb1\xd1\x9a\xf7\x2c\xed\x15\x34\xe6\x0f\x65\x0c\x8f\x8c\xf1\x05\xd0\xdd\x30\xc7\xc2\x29\x71\xc3\x8f\xd9\xf1\x41\xdd\xac\xe2\xef\x7b\x14\x90\xe4\x99\x0a\x6d\xa8\xc2\xa0\x11\xe9\xc8\x50\x7b\xc3\x09\x70\xd8\x4a\xa8\xbd\x60\xef\x4c\x3a\x30\xed\xf9\x24\x1d\x09\xdf\x0a\x55\x18\xec\x4d\xe3\x0f\x54\x5a\x10\x39\x1c\x34\x05\x16\xc4\xaf\x79\xbc\x68\xb0\xa0\xb1\x5a\x50\xc6\x74\x77\xce\x2f\x2f\xcb\xbf\xb0\x5b\x16\x29\xf9\x7d\x9f\xb3\x5f\xd3\x74\x65\x8f\x65\xc5\x15\x34\xe6\x94\x65\x28\xae\xa0\x31\xa5\x2c\x63\xd9\xaf\xc5\x2a\xd3\x5e\x8f\x75\xd9\xf8\x26\xc1\x79\x75\x5f\xf6\xeb\x9b\x04\xd7\xff\x3f\xf5\x2b\x43\xff\x0d\xe7\xc8\x55\x7f\xc5\x3d\xce\x1c\xb9\xce\x5c\xc6\x0c\x05\x38\x5c\x71\xf0\xe7\xc9\xb4\x3c\xd6\x2d\xbf\xb8\xaa\x5b\xe5\x88\x59\x7f\x71\x7d\x1b\xef\x88\x2d\x32\xd9\xaa\x5f\x75\xc4\x96\x23\xe6\x79\xa2\x17\x83\x6d\xa4\x7e\xce\x11\x73\x21\xc2\x9f\xd7\x08\x2d\x38\xbe\x79\x73\x1e\x91\x87\xe3\xf3\xcd\x91\xf3\x8a\xaf\x07\xc7\x37\x47\xce\x63\x52\xeb\x05\x8d\x7c\xf1\x0c\xa5\x17\x34\x66\xdc\x65\xe8\xbc\xf1\xcd\x90\xf3\x94\x3d\xec\x18\xeb\xa6\x0f\xef\x32\x87\xfd\x3a\x9c\x0f\xe8\xc1\x76\xd8\xb1\x83\x33\xdb\x21\x39\xec\xd7\xc1\x01\x5e\xfd\x31\xbb\x75\x78\x20\x78\x21\x3d\x3c\x10\x0e\x0f\x04\x7f\xcc\x9e\x7e\x2b\xa9\x7b\x69\x52\xbe\xc1\x6e\xa3\xa7\xda\x77\x7c\x2b\xa9\x7b\x57\x54\xbf\x41\x1b\xde\x1d\xd4\x6f\xb0\x07\x89\x8d\x53\xbf\xe3\x9b\x11\xe7\x6d\x5d\xff\x0e\x67\xc4\xa5\x8f\xa9\x0a\x38\x68\xac\x91\x96\xa1\x80\x83\x7d\xc7\xb6\xcd\x91\x3b\x1d\x39\x87\x49\x05\x0f\x67\xc4\xd5\xe6\xdf\x3a\x74\xdf\x62\xed\xdf\xe6\x39\x4e\xe7\x97\xe1\xee\xef\x39\x28\x2e\xc2\x3e\xdd\x3a\x07\xe5\x5b\x84\xdd\x73\x41\xc1\x06\xd1\x96\xd7\x40\x0d\x1b\xec\xcf\x31\x50\x97\x83\xb2\xd1\x7f\x5e\xd7\xb5\x6e\xb0\xff\x95\x31\xd6\xb1\xc1\x1e\x14\xb6\x44\xc9\x8e\x6f\xb5\x76\x9f\x9c\xb4\x6c\xd0\xbf\x83\x53\xcb\x06\x8d\x25\xc7\x32\xb4\x6c\xd0\x7f\xde\xfa\xb4\x6c\xd0\x58\xaa\x2e\x43\xcb\x06\xfd\x3b\xbf\xb4\xec\xb8\xbe\x4b\x08\x87\xa6\x9a\x0d\xda\xf0\x1c\xd1\xa9\xc3\xb5\x08\x96\xbb\xf0\x76\x40\xbe\xdc\x57\x2f\xe4\x5a\x75\xb8\x3e\xc1\xf0\x16\x70\xdb\x2b\x56\x5e\x2f\x3f\x1f\x05\x74\x68\x10\xe5\xe7\x85\x50\x63\x06\xd1\x94\xa5\xd0\x7c\x41\x44\x7a\x7f\xd2\x7c\xc1\xfe\x2e\x6d\xaa\x2f\xd8\x23\xcc\xb6\x28\xba\x60\xdf\xc7\x18\x75\x4d\x17\xf4\xea\x3e\x54\x74\xc1\xfe\x0b\x46\xe0\x71\xe7\x98\x37\x9a\xde\x02\xb5\x5f\xd0\xbf\xf3\x55\xfb\x8d\xe7\x9b\xae\xe9\xcf\xd9\x33\xd3\x46\xd3\x1b\xb6\xf6\x0b\xf6\x08\xf8\x17\xf6\xf6\xb1\x6c\x97\x37\xe3\xc7\xfd\x43\x08\xb5\xfc\x1c\xd1\xc7\x9d\xf1\x7c\xf3\x2f\x38\x00\x34\x67\xb0\xdb\xf8\x5f\xd5\x19\xec\x36\x46\x5e\x77\x06\x5d\xd5\x0f\xad\x18\xf4\x4f\x66\xb4\x62\xd0\x7d\x01\x14\x5a\x31\xe8\xbe\x55\x09\xad\x18\xf4\xf4\x2e\xa5\x15\x83\x28\xdf\x53\x8d\x5a\x0c\x7a\x7a\xcd\x55\x8b\x41\x94\xef\xea\xa7\x17\x83\x3e\x9a\xff\x69\x47\xf1\xe2\xfa\xf3\x19\x5e\x2f\x06\xae\x9e\x9a\xa1\x17\x83\x6e\x08\xac\xe8\xc5\xa0\x1b\x5e\x29\x7a\x31\x88\x5a\xb9\x20\x16\xc5\xb8\x90\x62\x5a\x29\x6e\x94\x45\xc1\x05\x51\x3d\x6e\x8a\x82\x0b\x06\x87\x43\xd1\x6f\x41\xfa\x48\x5a\xf4\x5b\x60\x90\xa7\xe8\xb2\x65\x7b\xab\x17\xaa\xa2\x97\x82\xc5\xd9\x56\x74\x50\xb0\x38\xbd\x8b\x11\x56\x10\x2c\xf8\x98\x45\x2b\x05\xc1\xe2\x7b\x59\x54\xd0\xe2\x84\xc0\x66\x53\xb7\xc9\x70\xaa\xbf\x95\x36\x19\x4e\x65\x68\xf4\x4d\x30\x3c\xde\x8b\xba\x59\x28\xb3\x32\x22\xfe\xff\xf6\x5d\x94\x4a\x50\x99\xcc\x95\xc5\x08\x29\x58\xdf\x36\x1a\x21\x2d\x65\xcb\x74\x86\x9f\x72\xc4\x0b\x85\x1a\xb8\xa0\x17\xa3\xa1\x60\x85\x9b\x6d\x34\x14\xac\x70\xb3\x15\x54\xb0\x8c\x54\x15\x6d\x14\x2c\x23\x6d\xc5\x38\x27\x68\x4c\xbe\xce\xa2\xa0\x82\xf5\x1d\x0a\x0a\x2a\x88\xb1\xbe\xb6\xdb\xb6\xef\x21\xa9\xd1\xe6\xde\x2a\xdc\x1b\x79\x20\x29\x2a\x2a\x68\xac\x26\x99\x45\x43\x05\xdd\xab\x76\x31\xaa\x09\x7a\xe5\x41\xbb\x28\xad\xa0\x7b\xc3\x2b\x4a\x2b\x20\x1d\x31\x8b\xce\x0a\x62\x18\x65\x29\x46\x35\xc1\xbe\x66\xf9\x39\xbb\x59\x49\x4d\x70\xac\x15\x59\x90\x9d\x67\xc1\xa2\xc7\x82\x68\xdf\xb6\xba\xdf\x28\x19\xd9\xfc\x7d\x3d\x16\x04\x85\x4a\xb2\xe8\xb1\x20\xa8\x87\x90\x45\x8f\x2d\x8d\x40\xe1\xf7\x29\x37\x7f\x63\x7c\x9d\x54\x50\x41\x61\xcd\xe5\x2c\x0a\x2a\x28\xe4\x4f\x67\x51\x50\x41\x65\x56\x61\x16\x03\x9d\x60\x92\x62\x92\x45\x67\x05\xe3\x6b\x71\xb7\x51\xc1\x7f\x50\x2f\x34\x8b\xce\x0a\x28\x10\x94\x45\x65\x05\xe4\x3f\x66\x51\x4f\x41\xaa\x12\xa5\xdb\x43\xaa\x9b\x54\x5b\xec\x20\xc5\x4d\xbc\x10\x18\x1b\x2d\x5b\x57\x8d\xf6\x16\x3d\x14\x2c\x1e\x1e\x8a\x1a\x0a\xac\x3a\x99\x45\x0b\x05\xc9\xfc\x92\x2c\x5a\x68\xd1\x42\xe9\xaf\x12\x0a\x32\xbe\xad\x74\xbb\x09\x79\x52\x09\x26\x8b\x76\x09\x92\x29\x66\x59\x94\x4b\x90\x4c\xdc\xcc\xa2\x5c\x82\x0c\xf7\x83\x51\xd0\x62\x35\x49\xb6\x4a\xdd\x04\xc9\xb4\xe9\x2c\xda\x26\xc8\xf0\x82\xa5\x6d\x82\x0c\xaf\x0d\x9a\x25\x88\xf4\xc5\x56\x31\x4c\x09\x82\xd2\xfd\x59\x94\xc6\xf2\xcd\x09\xa4\xd7\x4a\x23\x88\xc2\xbb\x83\xa2\x33\x82\xa4\x8c\x58\x16\x9d\x11\x64\xf1\xc0\xd2\x19\x41\xd6\xef\x8b\x76\x68\xf0\xb8\xc4\x4b\xcd\xa2\x33\x82\xa4\xa6\x57\x16\x05\x11\x44\x78\xc0\x2b\x88\x20\xcb\xf7\x45\xf7\x99\x09\xa9\xbc\xb9\x2d\xfa\x21\x48\x2a\x85\x66\x19\xee\x33\x2a\x53\x16\xfb\xa8\x32\x82\x88\x6f\xeb\x1d\x09\x52\x54\x29\x3f\x96\x45\x63\x04\x41\xc5\xf2\x2c\xc6\x4e\x8b\x29\xaa\xfe\x96\x12\x09\x22\x3c\x11\x95\x48\xf0\xbd\x04\x2e\x3a\x64\xb1\x08\x3f\xf3\xef\xb2\x28\x91\x20\x8b\xb7\x07\xe3\xa9\x20\xbe\x8b\xaa\xf1\xd4\x62\x7d\x4c\x8a\x99\xed\x0f\xdb\xe6\x53\x97\xdf\x74\x78\xa6\xc3\xc3\x88\x19\x50\x2d\x4e\x1f\x74\x78\xf4\x51\x10\xe1\x3e\x52\x47\x8b\xd3\x07\x1d\x31\xd5\xb3\x38\x57\xf0\xdb\x0a\xc7\xc2\x62\x98\x5e\xc7\xb5\x4c\xb0\x1f\xcb\xf9\xa6\x9a\x09\x82\xaa\xac\xfb\x48\xb0\x89\x3b\x9e\x03\xab\x65\x82\xa0\xea\xeb\xde\x55\x36\x91\xee\xe5\x28\x6a\x91\x20\xa8\xfb\xbc\xc7\xd2\x26\x0e\x0b\x6f\x30\x46\x51\x41\x7c\x37\x18\xb5\x12\x44\xf1\x78\x52\x03\x8b\x95\xf8\x7f\x5e\x7a\x55\x39\x10\x8d\x34\xef\x2c\x87\x7f\xc0\x74\xc1\x34\xc6\x5d\x94\x39\x10\xbe\xed\x2e\xba\x1c\xc8\xee\xcd\x49\x97\x2b\x16\x9a\xec\x7e\xd1\x03\xcf\x5a\x27\xbf\xf2\x87\x9b\xb1\xa6\x57\x5c\x51\xfe\xfb\x77\xb7\xdc\x3a\x94\xcd\x7f\x77\x5f\x50\x87\x92\x84\xfe\x2c\x8a\x1e\xc8\xee\x43\x8c\x9e\x57\xac\x43\x89\x5b\x16\x35\xaf\x98\xc4\x1a\x7e\xca\x5d\x71\x92\xb5\xc3\x53\x5e\xd1\xe8\x40\x76\xde\xba\x14\x85\x0e\x84\x21\x8c\xa2\xcf\x15\x4b\x53\xf2\xc8\x58\x74\x37\x90\xdd\x47\x09\xd5\xad\xb8\x74\xbc\x3b\xdf\x50\x29\xc8\xee\x35\x5c\x71\x03\x61\xbc\xa2\x18\x2a\x05\xe1\x1b\xf7\xa2\xca\x81\xa4\x22\x47\x16\x55\x0e\x44\xf3\x08\xd7\xd0\x40\x34\x2f\x13\x1a\x1a\x88\xee\x3b\x9d\x62\x60\x14\x44\xf3\x14\x55\xda\x40\xe4\xf0\xc6\xae\xb4\x81\x30\x50\x53\x74\x36\x10\x46\x90\x8a\xce\x06\xc2\x30\x56\xd1\xd9\x40\x34\xcf\x2a\x9d\x0d\x64\xf7\x70\xd3\xd9\x40\xf8\xc0\x5e\x74\x36\x10\x06\x4d\x8a\xca\x06\x42\x75\x2a\x46\x46\x8b\x4b\xca\x79\x38\x6b\x71\xc5\xf2\x98\xfe\xa3\x12\x07\xc2\x28\x59\x31\x58\x0a\xb2\x7b\x0f\xb8\x1d\x31\xaa\x63\x1a\xe1\x2e\x9a\x5e\x61\x51\x78\x15\xa1\x18\x3f\x2d\x96\xf8\x1f\xde\x8a\x94\xbf\x72\x3b\x14\x0c\x98\xee\x07\xc2\xb0\x48\x31\x7e\x0a\xc2\xa8\x4b\xd1\x06\x41\x18\xbc\x2e\xc6\x4f\x41\x18\x11\x2e\xc6\x4f\x41\xf8\x16\xa9\xa8\x87\xc5\x04\xd9\xe6\xe8\xeb\x73\xe5\xab\x8f\xe9\x5d\x59\xd9\x02\x69\x86\x41\x79\xfc\xb5\x87\x5f\xf3\x80\x55\xbf\x40\x4c\x2f\x60\x8f\x03\x8b\x91\x4d\x1f\xbe\x1e\xff\x93\x09\x7f\xd3\x33\x5b\x47\x03\x69\x90\xbb\xa8\x68\x20\xa6\x03\xab\xa1\x81\x51\x7d\xa4\x30\xba\x09\x0a\xcb\x9e\x64\x31\xba\x09\x62\x7a\x36\xeb\x71\xc5\xc5\xd5\x3d\xac\xf5\x38\x90\x46\x6c\x8b\x1e\x57\xac\xb2\xe2\xf9\xa0\xc7\x81\x34\x3a\x5e\xf4\x38\x90\x26\x2b\x14\x35\x0e\xa4\xb9\x16\x45\x8d\x03\x69\x2e\x44\xd1\xe2\x40\xcc\x6f\x53\x1d\xaf\xd7\xf1\x72\xbb\x1c\x2f\xd6\x6d\x9b\x1e\xd4\x4a\x1c\x28\xd4\x6f\xdf\xb7\xfe\xdd\x04\xd2\x10\x7a\x55\xe2\x40\xcc\xef\x53\xc5\x26\x92\xc0\xba\x9f\xaa\x36\xf9\xb0\xba\x68\x1a\x36\xd1\x6d\x2e\x4f\x55\xa9\x03\x85\x25\x61\xb2\x6a\x75\x20\x28\x09\x91\xd5\x10\x25\x48\x33\x87\xaa\x5a\x07\x72\x71\x9c\x57\x23\x94\x20\x99\xf4\x90\x55\xd5\x03\x69\xfa\x52\x35\x04\x09\xd2\x04\x83\xaa\xfe\x81\xc1\x02\x54\x59\xf5\x3f\x10\xcc\x26\xcb\x6a\x08\xb2\x22\x7b\x26\x00\x54\x65\x0f\xa4\x99\x03\x55\xd9\x03\x41\xb1\xb6\xac\xc6\x1b\xc1\xbe\xdb\xf2\x63\xc6\xf5\x40\xa1\x08\x4d\x56\x4d\xaa\x5a\x40\x85\xbd\x56\x35\xa9\x6a\x01\x15\x2e\xb8\x55\x6d\x02\x2e\x3e\x99\x55\x6b\x02\xa3\x36\x7f\xcb\x7e\x5b\x53\xe5\xb7\xfc\x98\x1d\x2f\xee\x5c\xc6\xc2\xfc\x50\xb0\x2f\x75\x7c\x55\x93\x02\x63\x71\x19\xa8\x9a\x54\x75\xce\x1f\xa7\x51\xd5\xa4\xc0\xbf\x2e\x99\x1f\x0a\x22\x4d\x1c\xa8\xda\x15\xb0\x6e\x71\x56\xf5\x0a\xec\xff\xf4\x0f\x1c\x0d\x26\x02\x56\x4e\xa4\xaa\x71\x81\x51\xab\x5b\xe6\x68\x54\x52\xac\xfe\xf2\x82\xbb\x1a\x6b\x04\x63\x35\xb7\xc8\xf1\xab\x8c\x9f\x47\x97\xd6\x06\x4a\xf1\xe0\xd5\xda\x40\x29\x6e\xa3\x8a\x06\x46\xf5\x53\x2a\x5a\x35\x63\xd5\x83\x57\x45\x03\xa5\x38\x06\x66\xac\x02\x4b\xb6\x66\x35\xf8\x58\x1b\x59\x66\xd5\x2f\x3a\x52\x2c\x93\x5e\x1c\x63\x45\x0e\x8c\xfa\xfd\x96\x03\xd5\x1c\x28\x7f\xcb\x81\x62\x99\x74\xea\xa6\x67\x55\xe4\x80\x85\x00\xb2\x2a\x72\x60\x54\x47\x42\x93\x03\x85\x7a\x14\x59\x15\x39\x50\x28\x3e\x91\x55\x93\x03\x85\xf5\x1b\xb2\x1a\x7c\x04\x85\xba\xe9\x59\xb5\xbb\x6a\xa6\xab\xa7\x8b\x76\x07\x46\x75\xbb\x8c\x3d\x82\x51\x1d\x55\x63\x8f\xd5\xac\x56\x0f\x40\x63\x8f\x60\x50\xd0\x2b\x6b\x77\x24\xba\x23\xe1\xcf\x3b\x12\x2c\x9c\x5e\xdd\x2e\x3d\x10\x8c\xea\x01\xae\x07\x56\x73\x5f\xdd\x54\x25\xac\x1a\xf3\x33\x5d\xb0\x6a\x61\x60\x2c\xee\x86\xd5\xf8\x1e\x28\xbe\x6e\xaa\x5a\x18\x28\xc3\x61\x35\xef\x14\x94\xe1\xb0\x1a\xdf\x03\x65\x60\x82\xd5\xf8\x1e\xd8\x37\x60\x37\xc3\xa1\x66\x15\xf1\xe5\x99\xa1\xbe\x81\x61\xf8\xa4\xaa\x6f\x60\x2c\x7f\x4c\x7d\x03\xe3\x3b\x7d\xd4\x37\x50\xd4\xed\xaa\xbe\x81\x42\x41\x95\xac\x06\xf3\xc0\x30\xef\xb4\xea\x6a\xa0\x1a\xb1\xaf\xba\x1a\x28\xcc\x17\xca\x3a\xec\xf7\x20\x7b\xcc\x53\x46\x7d\x03\x31\xbe\x1d\xae\xbf\x81\x32\xbe\x8f\x39\x16\x83\xb1\xf0\x24\xd6\xdf\xc0\x58\xc4\x9c\xaa\xfe\x06\xc6\x72\xa8\x95\x35\xb0\xcd\x89\xa3\x47\x5b\x03\x65\xf8\x4d\x6d\x0d\x8c\xe5\x09\xa8\xad\x81\xb1\xdc\x7e\x65\x0d\x94\xe1\x0e\x57\xd6\x40\x19\x5e\xf1\x95\x35\x30\x96\x97\x5f\xc5\x0c\x8c\x55\xfd\x2d\xc7\x62\x72\x0c\xb8\x8f\x14\x33\x50\x06\x56\x5f\x15\x33\x30\x4c\xdd\xad\xc6\x09\xab\x25\x2f\x59\x72\x33\xab\xb2\x06\x2a\x65\x9c\xb2\x1a\x26\x04\x63\x79\x58\xeb\x6f\x60\x18\xdf\xa8\xd3\xe1\x99\x24\x99\x79\x49\x51\xe9\xc0\x58\xf6\x48\xa3\x03\x63\x79\x8d\xd6\xe8\x40\x19\x1e\x75\xea\x1b\x98\x4e\x2e\xa8\xba\x1a\x28\xc3\x5b\x80\xae\x06\xc6\xb2\x93\xba\x1a\x28\xbe\x3a\xab\x46\x00\x41\x31\x5f\xad\x1a\xed\x03\x65\xb8\xf5\x06\xfb\xc0\x58\xd5\xed\xb2\xdb\xcb\x43\xc0\x26\xbb\xbd\xec\xb6\xbf\x65\xb7\x99\xd5\xb8\x3c\x01\xcd\x81\x05\x85\x85\x31\xb2\x1a\x0f\x04\x65\x78\x9c\x1b\x0e\x04\x65\x78\x7e\x9b\x16\x0b\x2a\xc5\xb1\xb2\x6a\x95\x60\x2c\x8f\xd6\xc3\x83\xe2\x20\xf5\xd0\x1d\x69\xcc\x10\x14\x0a\xe9\x65\x55\x33\x41\x19\x1e\x27\x6a\x26\x28\xc3\x0e\xa9\x99\xa0\xf8\x32\xad\xaa\x99\x60\x2c\x8f\x4c\x3d\x12\x94\xe1\xe0\xe8\x91\x60\x2c\xf7\x90\x1e\x09\xc6\xf2\x00\xd0\x23\xc1\x30\x20\x5b\xf5\x48\x30\x9d\xa1\x53\xf5\x48\x30\x9d\xcf\x52\x15\x3d\xb0\x05\x9b\x4e\xea\x70\x60\x2c\xf7\xad\x0e\x07\xa6\x53\x9a\xaa\xa1\x37\x50\x23\xff\x7f\x7d\x8b\xac\x06\xe6\x40\xcc\x1f\xce\x5f\xd5\x3e\x30\x95\xd6\xaa\xf6\x81\xe9\x6c\xa3\xaa\xf5\x55\xd3\x61\x3d\x98\xb5\xbe\x6a\x8d\x1a\x5e\x3c\x54\xa5\x0f\x54\x0a\xd2\x64\x55\xfa\xc0\x54\x9b\xaa\xd2\x07\xa6\x02\x5c\x95\x3e\x50\xa9\x3e\x93\x55\xe9\x03\xd3\x09\x48\x55\xe9\x03\xd3\x37\x05\x55\xe9\xab\xa6\xc3\x7a\x93\x56\xfa\x40\xa5\x38\x41\x56\xa5\xaf\x9a\x0e\xeb\x8e\x56\xfa\x40\xa5\xc2\x4e\x56\xa5\xaf\xba\xd4\x1b\xd1\xc2\xaa\xf4\x81\xed\x94\xfc\xbe\xd6\x57\x5d\xeb\x6d\xd8\xe4\x80\xdd\x0c\x98\x37\x05\xad\x0f\x4c\xe7\x9b\x55\xa5\x0f\x54\xe6\xe3\x67\x35\x91\x16\x4c\x5f\x48\x54\x3d\x10\x4c\x5f\x62\x57\x3d\x10\x4c\x5f\x35\x54\x3d\x10\x58\xb1\x33\xab\x1e\x08\x5c\xdb\x35\xab\x1e\x08\xa6\x53\xbd\xaa\x79\xb4\x60\x76\xaf\xb3\x46\x13\xab\x79\xb4\xcb\xdd\xa6\x2e\x82\xe9\x14\xb7\x6a\x30\x11\x4c\x67\x46\x55\xf3\x68\xab\x79\xb4\x04\x75\xab\xe1\x45\xb0\x9d\xd2\x8f\x39\x3c\x0f\x27\xfb\xf0\xc7\x3c\x9e\xc8\xa3\xad\xde\x4d\xb4\x51\x30\x9d\xc7\x57\x0d\x2e\x82\x98\x26\x01\x56\xa3\x8b\x60\x15\xef\x30\x06\x17\xc1\x74\xb6\x54\x35\xb6\x08\x2a\xd5\x92\xb2\x1a\x5a\x04\xd5\xfc\xbb\xaa\xec\x82\xe5\x4b\xbd\xaa\xd9\xd6\x87\xac\xc9\xe1\xe6\x3b\x16\x0f\x63\xe1\xf5\x45\x8d\x05\xd3\x37\x12\x55\x8d\x05\xcb\x17\xaf\x55\x8d\xad\x26\xe9\xda\x49\x35\x16\x4c\xa7\xe8\x55\x35\xb6\x9a\xa4\x3b\xfc\x94\x43\x61\x92\xae\x97\x42\x35\x16\x4c\xa7\xd5\x55\x9d\x15\xec\xe7\x1a\xdb\xec\x37\x29\xb9\x66\x0f\x56\x0d\x15\xec\x3d\xe2\xc7\x3c\x30\x2c\x5a\xf3\x73\xb0\x15\x52\x10\xc9\x8a\x7f\xd9\x4c\x7e\x6d\x26\xbf\x72\x09\x6b\x5a\x24\xd8\x3f\x37\x68\x5b\xb6\x91\x13\x89\xfa\x35\x23\x81\x60\xb1\x1e\x44\x36\x35\x12\x2c\xaa\x80\x65\x53\x23\xc1\x62\x01\x8d\x6c\x6a\x64\x33\xd1\x95\x6b\x5f\x53\x23\xc1\x62\xe6\x7f\x36\x35\x12\x7c\x01\xca\xa6\x46\x82\xe5\x1b\xf9\x66\xcc\x10\x2c\xdf\xd0\x36\x35\x12\x54\x6a\xf9\x65\x33\x8c\x08\xaa\x91\xee\xa6\x59\x82\xe5\x8b\xd0\xa6\x59\xb6\x20\x97\xd2\x8d\xd0\x2c\xc1\xf2\x85\x7f\x33\x8c\x08\x16\x2b\x76\x64\x33\x6b\x15\xac\xf2\xfd\xbc\xdd\x26\x6b\xd5\x38\x7a\x73\xbe\x25\xa8\xe9\x78\x19\x60\x04\xcb\xe0\x41\x33\xc0\xd8\x0c\x30\x62\xe2\xcd\x00\x23\x58\xd4\x40\xc8\xe6\x14\xcc\x46\x80\xd1\x77\xc9\xcd\x00\x63\x33\xc0\xc8\x8b\x91\x66\x80\x11\x2c\x6a\x81\x66\x73\xba\x25\x58\xbe\x30\x6f\xc6\x1c\xc1\xa2\x88\x68\x36\xe5\x19\x2c\xd6\x46\xc9\xa6\x29\x83\x6a\x26\x47\x33\xe6\xd8\xbe\x98\x23\xdd\x56\x9e\x41\xcd\xef\xb7\xdc\xdb\x85\xbd\x1d\x76\xc8\x91\x28\xee\x6d\x46\x55\x77\x06\x8b\x45\x4f\xb2\x19\x84\x04\x8b\xb5\x4b\xb2\xa9\xce\x20\xc6\xf7\x97\xba\x73\x73\xcd\x3a\xde\x40\x34\xdd\x19\x34\xb3\x04\x9a\xee\x0c\x56\xf1\xa0\x50\x9d\x41\x35\xc3\xa2\xa9\xce\x60\xf9\xf2\xbd\x69\xce\x60\x9f\x82\x74\x5c\x75\x06\x6b\x3f\x3b\xff\xef\x6d\xb9\x69\xd6\xed\xab\xba\xe3\xde\xd1\x9d\xc1\xbe\xf3\xf8\xcb\x0e\x56\x75\xb0\xfc\x98\x83\x65\x9e\xee\x37\x32\x0e\xd6\xc6\xf2\x0d\x4b\x53\x9e\xc1\x2a\x8e\xb2\xf2\x0c\x16\xeb\xe0\x64\xd3\x94\xc1\x32\xde\xd0\xf4\x56\xb0\x7c\x9f\xd6\x94\x54\xb0\x9c\xbc\xd8\x94\x54\xb0\xa6\x67\x9e\x46\x0a\x96\xaf\x11\x9b\x46\x0a\x9a\x99\x18\xcd\x80\x23\xa8\xe6\x3f\x37\x23\x8e\xcd\x9c\x59\x77\x98\xde\xda\x2c\x7e\x9a\x7e\xca\x71\x37\x1b\x36\xfd\x79\x87\x9d\x52\xa6\xbe\xe7\x6b\xea\x27\x88\xcf\x52\x9b\x71\xc8\x66\x1c\x72\xba\xad\x1e\x96\x9d\xfc\x4f\x4f\x2a\x93\x61\xc1\x72\x7e\x6c\x33\x36\xd9\x4c\x86\xf5\x1a\x67\x32\x6c\x33\x19\x96\x67\x88\x66\xb8\x12\x2c\x5f\xbb\x35\xc3\x95\x60\x3a\x0f\xbc\x29\xbc\x60\xf9\x56\xaf\x19\x76\x04\xcb\x39\x8e\x4d\x07\x06\xcd\x54\x98\xa6\x03\x83\xf8\x39\xcb\xb8\x29\xc1\xa0\x51\x99\x2e\x9b\x12\x0c\x96\x6f\x33\x9b\x12\x0c\x96\x2f\xec\x9a\x0e\x0c\x9a\x69\x35\x4d\x07\x06\xf1\x63\x05\xdc\x6c\x4a\x30\x68\x14\xa8\xcb\xa6\x04\x83\xfd\x31\x3a\xa0\x05\x83\x68\x3e\xbf\x37\x35\xb8\x99\xe6\xea\xad\xc2\x90\x65\x33\xcd\xd5\x13\x46\x33\x06\xcb\x69\xa7\x4d\x33\x06\xcb\x89\xae\x4d\x33\x06\xcb\xf7\x7f\x4d\x33\x06\xcd\x8c\xa7\xa6\x19\x83\x46\x4d\xbc\x6c\x8a\x31\x68\x3f\xbb\xa4\x18\x83\x66\xea\x55\x53\x8c\x41\x0c\x5f\xbe\x34\xcd\xb8\xb9\x3e\xc4\xb4\x47\x0e\xc6\xf0\xe4\x62\xb0\x55\xde\xe6\x32\x0f\xde\x64\x94\x59\xb0\xc7\x87\x6f\x6a\xb3\xcd\x05\x1c\xba\x4d\x6e\xff\xa4\xf4\x95\x87\xa7\x36\xdb\x0c\x33\xfe\x78\x24\x69\xea\x2c\xd8\x3b\xdd\x7f\xb0\x07\x5f\xde\x2b\x8f\x5e\x4d\x9f\x05\xbb\x8d\x9e\x2a\xb4\x20\x86\x71\xd1\xa6\xbe\x82\xfd\x39\xfe\x43\x7f\x6d\x26\xbe\xf2\x04\xdb\xf4\x57\x10\xdf\xfb\xa2\xa6\xc0\x82\x66\xee\x68\x33\x24\x09\x9a\x49\x91\xcd\xf8\x23\x68\x66\x7f\x36\x9d\x16\xec\x11\xf1\xc7\x1c\x91\x6f\xf1\x07\x77\x83\x56\x0b\xe2\x67\xf1\x83\xa6\xd6\x82\x66\xae\x67\x33\xaf\xb5\x99\xd7\xda\xfd\x35\x7b\xff\x2d\x07\x31\xfc\x57\x7b\xbf\x78\xd8\xad\x76\xd4\x23\x7c\x99\xcf\xc2\x58\xea\xb5\xed\xcb\x6a\xe5\x3d\x4c\x53\x6c\xdb\xb7\x1a\x84\x77\x09\x35\x16\x34\x13\x5d\x9b\x1a\x0b\xf6\x57\xd9\x85\x7a\x2c\x68\xe6\xf0\x35\x3d\x16\x34\x93\x44\x9b\xf1\x52\xb0\x4c\x26\x69\x4a\x2b\x68\x66\x3c\x37\x0d\xb5\x99\xd3\xda\xfd\x79\xfb\x69\x4e\x6b\x77\xc3\xec\xe6\x41\xea\xbe\xb7\x0a\x0d\xb5\x99\xd2\x8a\x58\x34\x0d\x15\xc4\x08\x1f\x44\x54\x54\xd0\xcc\x13\x6f\x2a\x6a\xfb\x32\x5a\x79\x4e\x6e\x66\xb4\x82\x46\xb9\x9e\x6c\x86\x3f\x41\x33\x9f\xba\x19\xfe\x04\x31\xbe\xdb\x8c\xc1\x4e\x10\x6d\x7d\xff\x60\xa7\xce\x8b\xfc\x21\x7f\xcd\x1e\x9c\x26\x1b\x7b\xf9\xd3\x78\x41\x9b\x5e\xd0\x8d\x5a\x82\x36\xbd\xb5\x29\xc1\x60\x3f\x8e\xb2\xb9\x6a\x2e\x68\xc3\xfb\x91\x96\x0b\xda\xf4\x7e\xa4\xe5\x36\xd3\x4f\x7f\xeb\x2f\x37\x6a\x2d\x18\xb4\xe1\xcd\x49\x0b\x06\x6d\xb8\x1f\x55\x5e\xd0\x86\xf7\x00\xfd\x16\xec\xff\xf2\xff\x3d\x86\x2f\x96\xa6\xf0\x48\x57\x70\x41\x1b\x5e\x4a\xb4\x59\xd0\xa6\x17\x1c\x6d\x16\x74\xd3\x61\x9b\x36\x0b\x22\x7e\x8e\x82\x3a\x0b\x76\x1b\x5b\xab\xbb\x82\x36\xbd\x0b\xe8\xae\xed\xfe\x56\x8d\xe5\x1f\x6e\xfb\xb9\xd1\xa6\xf7\x0f\xe5\x15\xec\x5f\xe3\x24\xd1\x5e\x9b\x65\x7e\x7e\x5e\xa6\xd5\x57\xd0\x4d\x9c\x6d\xea\x2b\xd8\x9d\xf7\x63\x76\x9e\x12\xab\xdf\x13\x8f\xfe\x0a\xf6\xc7\xfc\x57\x7b\x7f\x7f\x97\x2f\x86\x57\x0f\x05\xfd\xf7\x35\xb9\xc3\x1f\xe7\x1e\xb8\xc7\x15\x51\xd0\xbf\xed\xd5\x43\x41\xc4\xa7\x33\x8a\x68\xfb\x97\xe7\xca\x28\x69\xa2\x60\xff\x1c\x5b\xa2\x8a\x36\xf3\x5c\x7d\x22\xd0\x44\x41\x34\x43\x3a\x4d\x15\x6d\xff\xf2\x5c\xd9\x11\xba\x68\xb3\x3c\x6a\xf2\xd6\xa7\x29\xa3\x20\x46\xf9\x36\xc5\x01\xf8\x56\x9b\x28\x6e\xb2\x67\x3b\x65\x54\x9d\xca\xd0\x34\x54\xd0\xbf\xdd\xaa\xa1\x36\x97\x36\xff\xe4\x44\x45\x05\xdd\x5c\xed\xa6\xa2\x82\xfe\xed\x2e\x15\x15\x74\x63\x6f\x4d\x45\x05\x7b\x3f\xf0\x9f\x3a\x2a\xe8\x06\x64\x9b\x41\x54\xd0\x8d\x2d\x35\x85\x14\x44\x31\x19\xb8\x19\x32\x6d\xdb\x3e\xbb\xb1\x96\xa6\x7c\x82\xfd\x31\x7a\x60\x80\x14\xec\x36\x3f\xe7\x71\x4e\x9a\xab\x91\x88\x66\x84\x14\xec\x8f\xed\xb6\x6e\x88\x14\x74\x73\x08\xba\x21\x52\xb0\x3f\x66\x5b\xb5\xcd\xd4\x19\xae\xf2\xdd\x19\xa0\x60\xb7\x55\xda\xd2\xb6\xe4\x5f\x6d\x1a\x36\x0d\x53\x75\xfd\xd7\x65\xdb\xb2\xad\xd3\x76\xd8\xe6\x8a\xb3\x08\x4e\xd7\x70\xc1\xfe\x9c\x9b\x72\xdb\x76\xdb\xd6\x68\x7b\x6c\x7b\x6c\x73\xf3\x5e\xdb\xa8\xa5\xce\x23\x4f\x57\x72\xc1\xfe\x18\x9b\x67\xb0\x14\x44\xff\x85\x9f\xb3\xb7\x2c\x82\x5e\xcc\xdc\xe8\x7a\x2e\xe8\x94\x7b\xcd\xae\xe7\x82\xfd\x31\xb6\x58\xd1\x05\xbb\xcd\x9f\x73\x04\xc2\xd5\x6b\xb8\x11\x75\xed\x17\x74\xaa\xdc\x66\x37\xaf\x16\xf4\xfc\x3e\x75\xda\xe4\x82\x36\xd8\x62\x57\x7f\x41\xb7\x20\x4d\x77\xd2\x26\xe8\x96\x5c\xe8\x1a\x31\x88\x1c\xc3\xed\x75\x44\xa8\xde\x9a\x3e\x72\x77\x9d\x18\x44\x35\x59\xb8\x2b\xc5\x60\xb7\xf1\x5d\xad\x18\xec\x36\xfa\x6a\x2a\x2e\xe8\x1a\x63\xd7\x94\x81\xeb\xaf\x65\xd7\x94\x41\x54\xa3\xa1\x5d\x55\x06\xfb\xd7\xe8\x84\x21\x64\xb0\x3f\xe7\x3f\x78\x4c\x6c\x74\x7d\xa3\x6b\xc6\xa0\x6b\x50\x5d\x33\x06\xdd\x18\x4c\xd7\x8c\x41\x54\x9f\x54\xba\x6a\x0c\xa2\x9a\x4e\xd4\x75\x63\xe0\x9b\xee\xae\x1a\x83\xe8\x2c\x0c\x90\x5d\x37\x06\xd3\x34\xa7\xae\x1a\x83\x7d\x9e\xd3\x03\xdd\x18\xfc\xfb\x94\x7d\x27\xac\x3c\x58\xd0\x3d\xbb\x6e\x0c\x96\x5d\x52\x8d\x41\x86\x07\xb4\x6a\x0c\x42\x41\xef\x9a\x31\x08\xdf\xf6\x74\x35\x17\x84\x6f\x1c\xba\x96\xdb\xcd\xe2\xe5\xc9\xa2\x6b\xb9\x20\x4c\x8d\xed\x5a\x2e\x88\xd9\xff\x30\x1f\xba\x6b\xbc\x20\xad\x0e\xd1\x35\x5e\x90\xd6\x7d\xe8\xce\x42\x05\xe1\xc4\xdd\x6e\x6c\xb8\x9b\xe4\xeb\xa9\x64\x20\xb8\x1b\xf5\xe5\x19\xaf\x1b\xf5\xed\x46\x7d\xbf\x2f\xda\x93\x66\xe1\xe4\xe5\x37\xdd\x6e\xa2\xb7\x2c\x03\x95\x5d\x31\x06\xc5\x74\xfe\xae\x05\x83\xe1\x53\x53\xd7\x82\x41\x19\x3c\x1d\x76\xa3\xb7\xc0\x7a\xda\xd9\x8d\xde\x82\xe2\x0c\x82\x6e\xf4\x16\x94\xef\x6c\x53\x9f\x41\x19\x3c\xb3\x77\xf5\x19\x94\xef\x04\xd4\x8b\xc1\x34\x2b\xad\xeb\xc5\xa0\xb0\x14\x55\x76\xbd\x18\x58\xac\x3b\xbb\x5e\x0c\x22\x7d\x74\xeb\x66\xe8\xf6\xe4\x1d\xb0\x27\xa9\xa1\x60\x30\xcd\xb3\xeb\x8a\x31\x98\xdd\x71\x55\x8c\xc1\xbf\x33\x59\x31\x06\xd3\x44\xb8\xae\x18\x83\xf9\x1d\x34\x4e\xfe\x04\xd3\x54\xc3\xae\x17\x83\x68\xcb\x03\x5c\x31\x06\xd5\x9b\x6e\x57\x8c\xc1\xde\x7e\xfa\xa4\x05\x83\x55\x3c\xcf\xb4\x5b\xd0\x9c\xbe\xd2\xcd\xd1\x05\xcb\x4a\x1f\x5d\xe1\x05\x6d\x7a\x7b\x52\x78\x41\x73\x3e\x6b\x57\x78\xc1\xf6\x1e\x7f\xcc\x6e\xa2\xb7\xce\x19\xeb\xea\x6d\xff\x26\x76\x7a\xee\xe9\xb7\x60\xb7\xf9\x73\x76\x74\xa8\x87\xee\x15\x0d\xb7\x9b\xba\xfb\xf3\x68\x54\x67\xc1\x6e\x63\x83\x0d\xf4\x76\xd3\x72\x93\x67\x82\x6e\xa4\x17\xec\x36\x8e\x05\xbd\xb7\xcf\xca\xd3\x04\x3f\x67\x5c\x17\xec\xbb\x93\x3f\x67\x67\xcd\xc2\xf5\x99\xb3\x9b\x85\xdb\x5d\xc5\x63\xf1\xd4\xdc\xf5\x63\x60\x18\xb7\xab\xc7\x20\x32\x3d\xbe\xf5\x63\x10\xc3\xca\x1a\x5d\xef\x05\xb3\x3b\x4e\xea\x2c\xa8\xa6\xbb\x76\x75\x16\xfc\xbb\xfa\x6b\xb3\x60\xf9\x0c\xd6\x0d\xc7\x82\x7d\x89\xf2\x9b\xf6\x60\xe3\x2b\xe6\xd1\xd5\x59\x10\xd5\x84\x8e\xae\xce\x02\xc3\xdc\x5d\x71\x05\xa5\x78\xb3\x32\x1e\xdb\x8d\xc7\x7a\xd3\x54\x5c\x81\x45\x43\xb3\xeb\xad\x7d\x11\xaf\xfa\xbe\xe8\x9e\x5a\xbc\xf0\xe6\x31\xb5\xeb\xa8\x60\x99\x8d\xd6\x0d\xbe\x82\xf6\x3d\x1e\x69\xad\x20\x22\x50\x9f\xae\xa2\x82\xf1\xfd\x96\x7d\xa4\xc8\xac\xfb\xcd\x40\x6b\xb7\x22\x11\x8f\x94\xdd\x40\x2b\xc8\xef\xec\x34\xaa\x0a\xd2\xda\x33\x5d\x67\x05\x61\xcd\x84\xae\xb3\x76\xa3\xaa\x3e\x79\x28\xa8\x60\x76\xde\x20\x75\x05\x15\x54\x03\x8a\x5d\x3f\x05\xd5\xa7\xe9\xae\x8b\xf6\x6f\x2a\xa5\x17\x04\xb3\x6c\xc1\x3e\xc6\x18\x7c\xcd\x13\xec\x43\x96\xad\x75\xde\x24\xe8\xe6\x02\x75\x53\x6f\xc1\xbe\xa5\xfa\x73\xee\x37\x56\xf7\xf8\xfe\xd4\x3e\x99\x7a\xeb\x21\x66\xea\x6d\x37\xf5\xd6\x0b\x82\x16\x0b\xc2\xda\x07\x5d\x89\x05\xd1\x4d\x0c\xe8\x5a\x2c\x48\x6b\x12\x75\x8d\x15\x14\x8a\xfa\x67\xd7\x58\xc1\xa8\xfe\xa5\xc6\xda\x2f\x82\x66\x5e\xe4\xd4\x4f\x50\x8a\xc3\x68\x10\x16\x8c\xea\x56\xe8\x95\xfd\x72\xfc\xe9\xb7\x5e\xd9\x2d\x1a\xe4\x7d\x48\xaf\x04\xff\x1e\x19\xf5\x4a\xf0\xef\xb1\x4f\xad\x04\xb3\xf3\x22\xa7\x1b\x25\xed\xae\x1c\x3f\x7d\xc6\xd3\x34\xc1\xec\x39\xff\x70\x7f\x56\x44\xc1\xb2\x6c\x5d\xd7\x43\xbb\xd9\xb4\xc5\xe3\x59\x11\xed\x2e\xf4\x81\x28\x74\x3d\x14\xb4\xef\x29\x5e\xbf\x04\x7b\xef\xdb\xe6\x28\xdc\xdf\xb3\x86\x9b\xe9\x30\xdc\x3e\x8a\x7b\x22\x1b\x0f\x05\xfb\x2a\xc6\x40\x18\x0f\xed\xce\xae\x1c\x8e\xaa\x22\x0a\xbe\xbb\x90\x1e\x0a\xf2\xe7\x31\xa1\x86\x82\xb0\x86\x42\x57\x43\xc1\x1e\x2e\xba\xa0\x72\x02\x53\x18\xba\xc2\x09\x9c\x7f\xd4\x75\x4b\x60\x60\xb5\x6b\x96\x60\x79\x91\xd7\x17\xfb\xc3\x2b\x4b\xf6\x97\x79\xb9\x20\x43\xff\x50\x17\x41\x86\xea\xa2\x2d\x82\x64\xf9\xb8\xec\xda\x62\x77\xea\xa4\x3b\x55\x5b\x04\x59\xbd\xaf\x6b\x8b\x20\xab\xb7\x4a\x65\x11\x64\xf5\x82\x6f\x40\x13\x64\xf5\x26\xa8\x18\x82\x30\x3b\xa2\x1b\xa9\x04\xd9\x79\x6b\xda\x75\x45\xb0\x1f\x0b\x68\x72\x97\xbd\x4e\x77\xf2\x1f\xed\xd0\xeb\x3c\x5c\x84\x3d\xd5\x42\x10\x46\x5a\xd3\x34\x59\x10\xe6\x35\xa4\x56\x08\xb2\xf3\xa8\x9c\x4a\x21\x48\xaf\x4c\x69\x59\x20\xb0\x6f\xee\x34\xa5\x4d\xe4\xb7\x57\xbf\x38\x6c\xe2\x8a\xc9\xd5\x25\xcd\xaf\x05\xfb\xe1\x84\xa6\x65\x13\x33\x20\xd2\x4d\x3d\x6c\x62\x28\xaa\xff\x78\xda\xc4\x50\x0c\x37\xf5\xb2\xc9\x0b\xce\xa2\xe9\xb6\xc9\xa1\x28\x34\x3d\x36\x71\xc1\xa9\x36\xbd\x36\xbd\x34\xf1\x8f\x6a\x64\x5a\xd4\x16\x3f\x4e\x2d\x32\x2d\x6a\x8b\x6d\xa5\xe1\x53\x90\x9e\xea\xa9\x57\x82\x30\x48\x9f\x6a\x25\x08\x93\x2b\x52\xad\x04\x61\xaa\x40\x6a\x8b\xe9\x02\xf8\x94\x95\xcf\xd4\x03\x41\x6a\x3d\xa9\x07\x82\x5c\xdf\x8f\xd9\xa3\x70\x0a\xdf\xf2\xd7\xec\x92\xeb\x2b\xba\x65\x6a\x60\x5a\x9d\xd6\x71\xd5\x02\x41\x9a\x57\x98\x4a\x20\x48\xd3\x9a\x52\x07\x04\x31\x58\x94\x22\x53\x09\x04\x61\x99\x96\x54\x02\xd3\xea\xb4\xdc\xfc\x52\x07\x04\x69\x9a\x4e\x1a\x2e\x05\xc1\x0a\x5c\x99\x86\x4b\xd3\xea\xb4\x1e\x03\x1a\x20\x48\xf3\xad\x52\xdd\x4b\x17\x09\x49\x37\xcc\x8e\x53\x64\xd6\xfc\xb7\x54\xf6\xd2\xf5\xec\x3d\x36\xb5\x3d\x10\xcd\x17\xa0\x69\x62\x31\x08\x6b\x89\xa4\x02\x08\xd2\x9c\xb8\x54\x00\x41\x9a\xd8\x94\xfa\x1f\x48\x93\xdd\x52\x01\x04\x69\x46\x5f\xea\x7f\x20\xcd\x51\x4e\xd5\x0e\xa4\x99\x92\x69\x54\x13\xa4\x39\x6b\xa9\x82\x81\x42\x99\xeb\x4c\x33\x76\xd3\x8c\x5d\xf7\xa4\x56\x06\x4a\x71\xf0\xcd\xd8\x05\x91\x96\x7a\x4b\x4d\x0d\x94\xe2\x49\x69\xca\x6e\x9a\xb2\xeb\xf0\x68\x6a\x20\xba\xd3\xf1\xd3\x9c\xdd\xfc\xec\x8d\x5e\x6a\x6f\xa9\xbd\x79\xf4\x18\xfb\x04\xfb\x3f\xfd\x03\x8f\x58\x93\x76\x3d\xe1\x14\xba\x34\x1d\xd7\xdf\x57\xe8\xd2\xdc\x5b\xfb\x64\xa4\x13\x94\xe2\xf9\xac\xe3\x81\x7d\xd1\xe2\x28\xd0\xd5\xd2\x45\xe2\xcd\xfc\x48\xcd\x0c\x0c\x27\x5b\xa5\x81\x4d\x50\x46\xfa\x6b\x6e\x6d\x27\x97\x0d\x3d\x4c\xfd\x0d\x0c\xd6\x4c\xca\xd4\xdf\x52\x7f\xcb\xff\x5f\xcb\x39\x53\xbd\x03\x65\x78\x40\xab\x77\x60\x54\x9b\x8c\x71\x82\xb1\x78\x52\x4f\x85\x0f\x0c\xe3\xd7\xe9\x94\x4c\xb0\xcf\x64\x36\x52\x09\x04\xc5\xd2\x2f\xa9\x04\xa6\xe9\xc0\xd8\x69\x2a\x81\xa0\x58\x62\x28\x95\x40\xb0\x77\x8f\x7f\xe0\xce\x36\x45\xd8\x93\x48\x0b\x4c\x2d\xd0\xcb\x9a\x16\x98\x9f\x05\xf2\xea\x26\xb5\x40\x30\xbf\xfb\x80\xb1\x50\x50\x4d\xe8\x49\x25\x10\x54\xf3\x5c\xd2\x50\x28\xa8\xa6\x10\xa5\x91\x50\x30\xbf\xbb\x85\xaa\x08\xe6\x77\xbd\x55\x15\xc1\xde\x7e\xb6\x42\x57\x04\xd5\x14\x96\x54\x0c\xd3\x1c\x61\xef\x6c\x7a\x21\xa8\xc6\xe9\xd3\x48\x28\x58\x96\x3f\x4d\x55\x11\x4c\x6f\x93\xa9\x29\x82\x6a\x12\x48\x2a\x8a\x60\x7e\xf7\x19\x3d\x11\x4c\xef\xc2\x69\x20\x34\xbf\xa5\x1f\x1d\x45\xe7\x78\xa6\x6b\x3f\x62\x8e\xa9\x39\x82\xf9\xdd\x8e\x34\x42\x50\xd3\x3b\x81\x42\x98\x0a\xa1\x99\xc4\xa9\x10\x82\x65\x31\xe2\xd4\x07\x73\xdb\x5f\xf5\xf1\x3d\x95\x3f\x50\x15\xd3\x34\x36\x0a\x96\x75\x80\xd3\xd0\x28\x58\xe5\xfb\xa2\x5d\x9a\xa4\x19\x79\x75\x32\x30\x0a\x6a\x7a\xb3\x36\xd3\x17\xec\xe3\x82\x8d\x55\x24\xc1\xb2\x1a\x71\x2a\x92\xa9\x48\x12\xcd\x48\x45\x12\xec\x53\x99\x5f\xd3\x24\xc1\xb2\x62\x6c\x2a\x92\x60\x59\x43\x3a\x15\x49\x50\xd3\x7b\xb3\x1e\x09\x6a\x7e\x9f\x72\xf7\x2e\xc7\xc2\xbf\x74\x2c\x16\x59\x26\xdf\x17\x1d\x0b\x56\x92\xec\xac\x04\x95\xa9\x49\x82\xf6\xfb\x9a\x3c\x88\x17\x21\x6c\x92\x5d\x52\x93\x4c\x4d\x92\x64\x90\xd4\x24\xc1\x72\x6e\x4d\x6a\x92\xa0\x7d\x07\x81\x22\x99\x96\xb2\xfd\xce\x1b\x2d\x11\x34\xdf\xbd\xa7\x91\x4d\xb0\x9d\x8d\x1d\xa0\x39\xe6\x57\xc2\xc7\x33\x47\x75\x4c\xc3\x9d\x5e\xbf\x8d\x6d\x82\x98\x3e\x78\xa7\xee\x98\x06\x37\xbd\x00\xe9\x8e\xf9\xd5\xeb\xf1\xd4\x51\x1e\xf3\xab\xd7\x83\xf2\xa7\xd1\x4d\xd0\x0c\xeb\xa6\x42\x99\xdf\x62\x24\x78\x67\x1a\xdd\x4c\xcb\xe5\xfa\xdc\x99\x86\x37\x41\x33\x82\x9d\x7a\x27\xd8\xff\x60\x9b\x7b\x14\xef\xec\x66\x72\xa4\xde\x09\xf6\x5f\xd8\xe6\x30\x6d\xb4\xe9\x6e\xd0\x3b\x41\x63\x85\xd5\x4c\xab\xf5\xa4\xd5\x7a\xe2\x6b\x73\x94\x5c\xc9\x24\x7e\x76\xc2\x61\x32\x80\x1a\x3f\xb7\xc4\x61\x72\xd9\x92\xf8\xf9\x17\x8e\x13\xf3\x3e\xfb\x70\x87\x19\x42\x05\xfb\x73\x8c\x9d\x91\x4e\xd0\x34\xba\xd4\x2b\x41\xd3\xb1\xd3\x48\x27\x68\xd3\xe3\xc6\xe4\x5e\xb0\x7f\xcc\x36\xfb\x75\xd9\x2f\xb6\xd7\xe0\x67\x5e\x5f\x1f\x38\x7e\xcd\xe5\x4d\x8b\xee\xc4\xf7\xa7\xf6\x8b\x19\x9c\xff\x9e\xa0\xf5\x54\x10\x6d\xb9\x27\x14\xd5\x34\x00\x1a\x18\x46\xaa\xa0\x60\x3b\x20\xff\xa1\x3d\x82\x6e\x7a\x45\x1a\xb1\xcc\xaf\xe8\x0e\xef\xd4\xd2\x90\x25\xe8\x86\xa3\x53\xa3\xcc\x7f\xf6\x68\x9b\x5b\xbc\xd1\x7d\xdf\x9f\x0a\x25\xe8\xce\xc8\x4d\x7d\x32\x3f\x9f\x24\x43\x27\x75\xc7\xd4\x1d\x1d\x12\xb5\x30\x89\x44\xfe\xbb\x15\x2a\x81\xa0\xe7\x5f\xde\x72\xa7\x92\x08\xe2\xdf\xb3\x81\x9a\x08\xba\xef\x9c\xd3\x58\x23\x88\x5a\xbf\x6d\xb2\x37\xc4\x1a\x4d\x7a\x4a\x63\x8d\xc9\xa4\xce\x6a\xe4\x3f\x55\x45\xe0\xdc\x8d\xd4\x14\x41\xe4\xcf\x9d\xa9\x2a\xe6\x6b\xea\x0f\x2d\x1e\x52\x4c\xd7\x34\xe3\x2c\x4d\x6a\x05\xd9\xbd\x3a\x19\x56\x4c\xe7\x66\x7a\x43\x32\xac\x08\x4a\xf1\xba\x63\x9a\x2b\x28\xd6\x53\x4a\x4d\x11\x14\x53\x85\xd3\x00\x62\x6e\x2d\xac\x26\x50\x0e\xad\x10\x54\x6b\xd6\x0c\x83\x85\x60\xba\x11\x43\x51\x04\x91\x96\xc2\x18\x9a\x22\xa8\xc9\xbe\x1e\x9a\x22\x58\x86\x0f\x86\xa6\x08\x96\x41\x86\xa1\x03\x02\xa7\xac\x0c\x15\x10\xac\xe5\x66\x1d\xb6\x30\xc3\x79\xf8\xe3\xa7\x4d\x4c\xeb\xe5\x49\x70\x68\x80\x20\xd2\x89\x7a\x43\x05\x04\xd1\xbf\xcd\x7a\x6c\x7a\x3c\xc7\xed\x11\xe7\xc7\x40\xf8\x7c\x0d\x35\xb4\xbb\x11\x4c\x8c\xe3\xcc\x1a\xaa\xdc\x08\x1f\xa9\xe9\xb6\xd1\x40\xb0\x6f\x6d\x6c\x87\xd1\x40\x50\x8a\x5b\xab\xde\x81\xe1\x8b\xf5\x61\xe4\x6f\x58\x51\xe7\xfb\x7d\x37\x76\xa3\x3a\xad\x68\x68\x77\x20\xba\xef\x06\x47\x7c\x1b\xeb\x7e\x63\xc8\xb4\x3b\xb0\x0a\xb7\xeb\xa1\xdd\x81\x65\xdc\x77\x68\x77\x60\xf9\x36\x72\x68\x77\x60\x5f\x54\xe8\xb9\x2a\x07\xa2\x59\xf7\x7e\xe8\x72\xa0\xd7\xaf\xc9\x6e\x6e\xf4\x24\x80\x30\x74\xb9\xe1\xc2\xfb\x6c\xbf\xf1\xbd\x51\x58\x3d\xcb\x4d\x75\x2f\x6d\x38\x03\x75\xe8\x76\xc0\xc9\xd2\x43\xb5\x03\xce\xcf\x1e\x2a\x1b\x58\xdc\xbe\x86\x7a\x06\xd2\xc2\xeb\x43\x3d\x03\x3e\x3e\x0f\xed\x0c\xf8\xde\x63\x28\x67\x20\xba\x93\x53\x86\xb1\x38\x90\x61\xe7\x14\x36\x90\xe1\x71\xa3\xb0\x81\xb4\x1c\xf8\x30\x3c\x07\x32\xbe\x0d\xb5\x7b\x95\xb2\x2d\xcd\x2d\xb5\x7f\x1b\x6b\xf9\x3d\xfb\x57\x7d\xe9\xe4\x36\xb8\x53\x2b\x2f\x9d\x1c\x29\xad\x6e\x68\x75\xcd\x7d\xa3\xd5\x81\x64\x5d\xe8\x1c\xc6\xdf\x40\x98\x40\x3d\x14\x3d\x90\x2c\x83\x99\x43\xd1\x03\xe9\x3a\x1b\x43\xcf\x03\xe1\x54\x81\xa1\xd4\x81\x74\xa9\x84\xa1\xd3\x81\xac\xdf\x46\xd8\x21\x2a\xea\x58\x58\x75\x98\xe3\x3a\xba\x6f\xc3\xe8\xb6\x02\x07\xc2\xcc\xeb\x61\x44\x0e\x24\xab\x24\xe6\x30\x22\x07\xc2\x04\xea\xa1\xe5\x81\x30\x9f\x7d\x28\x79\x20\x59\xfd\x33\x87\x92\x07\xd2\xc5\x04\x86\x46\x07\xc2\x94\xed\xa1\xd1\x81\xac\xdf\x76\x7d\x9b\xca\xfd\x26\xfc\x2d\x07\x9f\x88\x9c\x09\xce\xc3\x4c\x55\x10\xa6\x59\x0f\x2d\x0e\x44\x37\x7f\x61\xa8\x71\x20\xd2\xd9\xec\x43\xf5\x1a\x9f\x7a\xb9\x2f\xf5\x2c\x10\x06\x0b\x87\x4e\x05\xb2\x4f\x9b\xdc\x5a\x22\x6b\xe6\xc2\x0e\x9d\x6a\x90\x4b\xea\x0c\x9e\xa1\x40\x81\x70\x8e\xca\x50\xa0\x40\x18\xdf\x1b\x0a\x14\x08\xa7\x24\x0d\xfd\x09\x24\xab\x67\xe6\x30\xd6\x06\xc2\x90\xf6\x50\xa9\x40\xf6\xe9\xcf\xdb\xa3\x61\x45\x6f\x3f\xe5\xf1\x34\x78\x4f\xb7\xfc\x2d\xfb\x48\x89\x9c\x7d\x8b\xf9\xdf\xbb\xf1\x50\xaf\x40\xb2\xf8\x7e\x0e\xf5\x0a\x84\x51\xcf\xa1\x5e\x0d\x17\x79\x5c\xfe\xbb\xfb\x90\x0a\x3a\x4e\x0c\x1a\xe3\x1b\x28\x1e\xdd\x30\xfc\x61\x58\x0e\xa4\x05\xd8\x87\xb3\x2d\x41\x5a\x05\x7e\xe8\x60\x20\x59\x85\x37\x87\x0e\x06\xb2\x13\xe5\x1a\x2a\x18\x48\x56\x0e\xcf\xa1\x82\x81\x70\x5a\xd3\x50\xc1\x40\x38\xf1\x65\xe8\x5b\x20\x9c\x2a\x34\xf4\x2d\x90\xdd\x3b\x9c\xbe\x05\x92\x25\x05\x73\xe8\x5b\x20\xfb\xf4\x8b\xf6\x91\xd4\xd4\x19\x1e\xce\x2a\x18\x08\x67\x3f\x0d\x15\x0c\xa4\x15\x9f\x87\x0a\x06\xb2\x13\x04\x1d\x66\xa6\x82\x30\x00\x3c\x94\x32\x90\xd6\x72\x1e\x4a\xd9\xb0\xe4\xaa\xc7\xb2\x06\x06\xc2\x39\x6b\x43\x03\x03\xc9\x22\xea\x39\x34\x30\x90\x16\x15\x1f\x1a\xd8\xd0\xc0\x08\x09\x0c\xa3\x7b\x20\x9c\x82\x35\x74\x32\x10\xce\xb8\x1b\x3a\x19\x48\x0b\xb3\x0f\x9d\x0c\x44\x57\x93\x87\xba\x05\x62\xfe\x78\xb8\x1e\xc6\xd6\x40\xb8\xc2\x7f\x0e\x05\x09\xe4\xe2\x75\xc9\x50\x90\x40\x58\x3b\x6e\xe8\x47\x20\x4c\x41\x1d\xea\x11\x88\x6f\x61\xa8\xa1\x1f\x81\x5c\x1e\xb0\xea\x11\x48\x83\x47\x43\x3b\x02\x61\x5e\xf7\xd0\x8e\x40\x3a\x55\x7a\x28\x47\x20\x2c\x57\x37\x74\x23\x90\x4e\x6f\x1e\xaa\x11\x08\x57\x94\x1a\xaa\x11\x48\xdf\x26\x0d\xd5\x08\xa4\x53\xb8\x87\x66\x04\xd2\xd9\xcd\x43\xe1\x19\x16\xba\x31\x75\x6d\x28\x3c\x20\x9d\xc8\x3a\x0c\xc0\x81\x74\xfa\xe6\x30\x00\x07\xd2\xd7\x67\xc3\x00\x1c\x48\x13\x6b\x86\xa2\x04\xc2\xfc\x9e\x61\x4c\x0e\xa4\x53\x99\x87\xee\x04\x72\x79\xf9\x52\x94\x40\x3a\x0d\x77\xe8\x49\x83\x3a\x37\xce\xc3\x1b\x46\xee\x40\xb2\xa8\x76\x0e\x35\x09\xe4\x4a\x7f\xde\x23\xea\xe2\xad\xb9\x47\x94\x92\x04\xf2\x7b\x20\xd3\x91\x40\x98\xce\x3e\x0c\xe6\x81\xb0\x4e\xf7\x30\x98\x07\xe2\x3b\x02\x14\x29\x10\x4e\x90\x18\x06\xeb\x40\x58\xa6\x7b\x18\xac\x03\x61\xb1\xed\xa1\x6d\x81\xe8\xbe\x1d\x1b\x06\xeb\xc0\xbe\x79\xf8\x6b\x8e\xc5\xcd\x58\x78\x5b\xd0\xc0\x40\x38\xa7\x64\x68\x60\x20\x9c\x14\x30\x0c\xe9\x81\x5c\x69\x93\xc3\x73\x33\x3c\x3e\x7a\xe8\x64\x20\x9c\xba\x31\x74\x32\x10\xce\x39\x18\x86\xf8\x40\x3a\xf7\x7b\x18\xbc\x1b\x06\xef\x3c\xc5\xb5\x34\x90\xbe\x8d\x1d\xa6\x90\x82\x74\xa2\xf7\x30\x9c\x07\xc2\x89\x0f\x43\x95\x03\xb9\xd2\x4f\x39\x14\x0f\x87\xbe\x97\x0b\x55\x0d\x84\x09\x69\xc3\x54\x51\x90\x6b\xd8\x64\xb7\x2d\xd2\xe3\x45\x45\x79\x1b\x16\xe9\xf1\x99\x5f\x79\x03\xb9\xf0\xc9\x61\x30\x10\xa4\x6f\x89\x87\xc1\xc0\x61\x91\x1e\x2f\x9c\x1a\xde\xb0\x48\x8f\x17\x4e\x15\x6f\x58\xa4\x87\xb7\x89\x43\xc3\x03\x69\x41\x83\x61\x30\x10\x84\xaf\x3e\x86\xd6\x07\x8a\x35\xe4\x86\xc1\x40\x10\x56\xa3\x1c\x8a\xe0\xb0\x48\x4f\xf7\x8b\x0e\xce\xeb\xe0\xf8\x29\x0f\x13\x8b\xf4\xf8\x18\xab\x08\x82\x68\xa3\xfd\xa1\x54\xd8\x30\xf0\x38\x2c\xe2\xe3\xf5\x52\x77\x04\xb9\x7c\x78\xd1\x1d\x41\x0c\xa5\x79\x18\x66\x04\x61\x25\xfd\xa9\x4f\x82\xf8\x8a\xb3\x4c\x85\x12\x44\xce\xaf\xad\xd8\xf6\x55\xdd\x9d\xb4\x55\xdb\xac\xae\x55\xfc\xbd\x66\x1b\x39\xf4\xa6\x66\x4d\x15\x0f\xc4\x30\xac\x3c\x0d\xe0\x81\xdd\x6f\x7e\x4f\xa1\x03\xc3\x55\xcc\xa6\xe1\x3a\x50\x2c\x23\x38\x75\x3c\x30\xea\xb2\x29\x6d\x22\x63\x60\xf8\x5b\xc3\x26\x14\xef\xfb\xad\x69\xd3\xe4\xb7\xe8\x95\xb3\x1d\xc1\xa8\xc3\xa6\xd3\x26\xd7\xb5\x5e\xfe\xd8\x65\x1b\x45\x5f\xa6\x7f\x69\x9f\x82\xa2\x39\xd3\x4f\x3d\x36\x3d\xde\xfb\x1b\x6d\xaf\x6d\x84\x1a\xb8\xe0\x4e\x4d\x10\x8c\xca\x33\xcf\xd4\x04\x41\x61\x95\xd2\x9c\x9a\x20\xd8\x57\x19\xfe\x40\xed\x03\xa3\x72\x19\x9b\x5a\x1f\x18\x95\x03\x76\xaa\x78\x53\xc5\xe3\x92\x35\xcd\xeb\x04\xc5\xaa\x7e\x53\xed\x03\xc5\x9a\x8a\xd3\xa0\x1e\x18\x75\xfa\x45\x7b\x69\x69\x20\x6e\x0e\x53\xf3\x03\xc3\x15\x7f\xa6\x41\x3d\x30\x2a\x57\xdc\xa9\x0d\x82\x51\xed\x91\x01\xbc\x69\x15\x20\xae\xb8\x53\x1d\x9c\x56\x01\x72\xbb\xf4\x41\x30\x2a\xd7\x8f\xa9\x10\xce\x4f\x08\x79\xaa\x9f\xe6\x6b\x82\xf8\x22\x90\x53\x49\x04\xa5\xb8\x97\x94\x44\x50\xca\xb7\x65\x76\xbc\xb2\xcb\x97\x5f\xb4\xe3\x94\xf9\xa9\xc3\x26\xf7\x78\x25\x4e\xe6\x50\x2b\x89\xd3\x32\x3f\x8e\xab\x96\x08\x22\x07\xea\x35\x9d\xaa\x08\x8a\xe5\x31\xa7\x51\x43\x50\xcc\x4d\x98\x46\x0d\xa7\x51\xc3\xe9\xa7\x3c\xd4\x8d\x1a\x7a\x5c\xe8\x97\x60\x58\xd5\x7e\xaa\x97\xd3\xa0\x21\x6f\x33\xa6\x7a\x39\x2d\xfd\xe3\x7e\x53\x2f\x41\x7c\x6f\x03\xa6\x7e\x09\x4a\x71\x64\xf5\x4b\x30\xaa\xd7\x03\xe3\x88\x60\x3f\xa1\xb1\x9b\x74\xce\x69\xf1\x9f\xe1\x66\x38\x3e\xc6\x11\x3d\x09\x75\x4e\x30\x2a\xf7\x9a\xa9\x73\x82\x51\xbf\x5e\x7a\xac\x34\x4f\x08\x7a\xe9\x54\xcb\x69\xf1\x1f\xbf\x68\x00\x12\x14\x4b\x5a\x4e\x65\x15\x14\x57\xdf\x9d\x66\x94\x82\x62\x15\xcd\xa9\xbf\x82\xe8\xbe\x6d\x9f\x0a\x2c\x88\x66\xe9\xa5\xa9\x75\x82\x7d\x89\xe3\x4f\x0d\xdb\x81\x7d\xe9\xe2\x5f\x0d\xb5\x81\xaf\x4e\xfd\x54\x01\xa7\x65\x76\xd2\x4f\xd9\x29\xcb\xec\x70\x17\x9f\x2a\x20\xf8\x2a\xd3\x4d\x15\x10\x7c\xb5\xd6\xa7\xbe\x07\x86\xb7\xc6\xa9\xef\x4d\xcb\xec\x78\xc5\xd0\xf7\x40\x31\x8f\x7c\xea\x7b\xe0\x5b\xf1\x66\xea\x7b\xd3\x32\x3b\x5e\xf1\x0c\xa1\x81\xe1\xfd\x79\x2a\x74\x60\xf8\xee\x6e\x2a\x74\xd3\x92\x3a\xee\x5e\x85\x6e\x5a\x52\xc7\x5d\xa2\xd0\x81\x61\xe1\xdc\xa9\xd0\x81\xe2\x22\x2c\xd3\x08\x1a\xf8\x8a\x32\x4f\x1d\x0f\x14\xe3\xd7\xd3\xcc\x4b\x50\xac\x74\x3f\xd5\xbe\x69\x91\x9d\xef\x8b\x0e\xce\xfc\x64\xc1\xdf\x77\x74\x58\x62\xd2\xa5\x14\xa6\xde\x07\x8a\xeb\x5b\x4c\xbd\x6f\x5a\x78\x87\xfb\xff\x34\x17\x73\x7e\x6b\xfb\x7b\x5c\xeb\x82\xe0\x2b\x04\x30\x0d\xc7\x4d\x2b\xef\x78\x75\x53\x0f\x01\xf5\x20\xfe\xf7\x06\x3d\xb5\x47\xf0\x25\x87\x4e\xbd\x10\x7c\xeb\xcd\x4d\xb5\x70\x5a\x71\x07\x2d\x99\x6a\xe1\xb4\xe2\x8e\x87\xbd\x5a\x08\xc6\x72\xdf\xab\x85\xa0\x0c\xcf\x5a\xb5\x10\x14\x67\x71\x4f\x03\x73\x60\x98\x5b\x35\xd5\x42\x50\xac\x72\x39\xd5\x42\x10\xfd\xe7\xb5\xd5\x14\x4f\x30\x4c\x8f\x9f\x4a\xe0\xb4\xe4\x8e\x67\x95\x12\x08\x8a\xb5\x1b\xa6\x12\x08\x8a\x2b\x2e\x4c\x25\x10\x7c\xa5\x1b\xa6\x81\xb9\x69\x7d\x1d\x8f\x53\x03\x73\xd3\xfa\x3a\x9e\x06\x4e\x4c\x04\xc3\x87\x9c\xa9\x3c\x4e\xeb\xeb\x7c\x3f\x6f\x27\x2d\xda\x6a\x35\x84\x69\xde\xe7\xb4\xc0\x8e\xa7\xac\x11\xbd\x69\x81\x1d\x77\xb4\x11\x3d\x30\x96\x47\xa5\x01\x3d\x30\x2c\xe3\x3e\x8d\xe7\x4d\x0b\xec\xe0\xa1\x53\x5d\x05\x43\xc7\x99\x86\xf8\x40\xb1\x3c\xd7\x54\x60\xa7\x05\x76\x70\x9c\xa9\xc0\x82\x62\xe0\x6a\x2a\xb0\xa0\x0c\xff\x51\x81\x05\xc5\x32\x4f\x53\x7f\x05\x43\x85\x9a\xfa\x2b\x28\xd6\xe4\x9d\xfa\x2b\x98\xbe\x19\x98\xfa\xeb\x74\x31\x4c\x0f\x3a\xfd\x75\x1a\xdc\xfb\xfd\xfc\x7d\x87\x82\x02\x3e\xdd\xe8\xec\x34\x1c\x07\xf6\x23\x1b\x3f\xa7\x3c\x82\x2d\xea\xb6\xf9\xaf\x97\x07\x1e\x7b\x4e\x7b\x04\xd1\x9b\x7f\xa1\x3e\x82\xe9\xaa\x54\xd3\xd0\x1b\x98\xce\x29\x9b\x1a\x25\x98\x96\x90\x98\x1a\x25\xa8\xbe\xa2\x9c\x46\xde\x40\x0c\xe7\xfb\x4d\x2d\x13\x54\xdf\x51\x4e\x2d\x73\x5a\x58\xc7\xdb\xa9\x96\x09\xaa\xef\x15\xa7\x96\x09\xa6\xe5\x07\xa6\x4a\x09\xa6\xab\xa8\x4d\x95\x12\x4c\x8b\x75\x4c\x95\x12\x54\xeb\x64\x4c\x95\x72\x5a\x44\xc7\xbd\xa9\x52\x82\x69\x65\x8e\x69\x5d\x1d\x50\xad\x6d\x31\xb5\x4c\x30\x7d\xbf\x35\x95\x4c\x50\x9d\x56\x32\x75\x4c\x50\x9d\x7c\x32\x15\x4a\x50\x7d\x0f\x3b\xb5\xc7\x69\xc5\x1c\x77\x88\xf6\x38\x6f\xfb\xe8\x3f\x7a\x2c\xde\x04\x28\x78\xcd\x3b\x0d\xe8\x81\x6a\x61\xe9\x69\x36\x28\x98\xbe\x8a\x9b\xda\x23\xa8\xbe\xc0\x9d\xda\x23\x98\xbe\x2b\x9b\xaa\x22\x98\xf9\x7d\xca\x0e\x3d\x74\xc8\x81\x36\xd2\x07\xa6\x8b\xbb\x4d\xed\x11\x4c\x6b\xa7\x4c\xed\x11\x4c\xdf\x40\x4e\xed\x11\x4c\x5f\xc5\x4d\xed\x11\x4c\x5f\x89\x4e\x55\x11\x54\x5f\x19\x4f\x55\x11\x4c\x17\x6d\x9b\xaa\x22\x58\x16\xd2\x9c\xaa\x22\x98\xbe\x2a\x9b\xaa\x22\xa8\x4e\x0c\x9e\xaa\xe2\xb4\x10\x8e\xb7\x48\x55\x11\x4c\xcb\x83\x4c\x55\x11\x54\x63\x86\x53\x55\x9c\x16\xc2\xf1\x22\xaf\x2a\x82\xe9\x6b\xdf\xa9\x2a\x82\xe9\xfa\x78\x53\x55\x04\xd5\x8a\x34\x53\x15\x04\xd5\x8a\x1e\xd3\x1c\x54\x50\x9d\x13\x30\xb5\x43\x30\x5d\x01\x72\x9a\x83\x0a\x66\x72\x30\x2d\x4d\x10\xec\xd3\xbb\xd2\x16\xb6\x69\x82\x28\xf8\xd2\x04\x41\x0c\x57\x1e\x5c\x9a\x20\x88\xe1\xe2\x68\x4b\x13\x5c\xae\x4e\xc9\x1d\x7d\x19\x5c\x04\xd5\x29\x55\xcb\x34\x54\x30\xad\x24\xb3\x4c\x43\x05\xd3\xb7\xc9\xcb\x10\x24\x98\xbe\xcb\x5e\xc6\x20\x97\x65\x5e\x7f\xbf\x3f\x24\x68\x2f\x83\x94\x60\x26\x3b\x63\x19\xa4\x04\xd3\xd5\x2d\x96\x41\x4a\x30\x0d\x65\x2e\x05\x16\xd4\xf2\x6d\xe4\x63\x13\x47\x57\xb1\xc3\xaf\x4d\x94\x59\xe2\x5e\xb7\xb4\xdc\xe5\xe2\x94\x3c\x4e\x2c\xd3\x54\xc1\x74\xcd\xbe\xa5\xf7\x82\x6a\x7c\x68\xe9\xbd\xcb\xf5\x2a\x79\x84\x58\x7a\x2f\x98\xae\x68\xb8\x4c\x53\x05\xd3\x1a\x2f\x4b\xef\x05\xd3\x1b\xe2\xd2\x7b\x41\x74\xef\xfb\x4b\xf1\x05\xf1\xad\xd4\xb2\x34\x5f\x10\xcd\x4c\xc0\xa5\x72\x82\xe9\xbc\xdc\xa5\x39\x82\xe9\x8b\xea\x65\xc4\x10\x44\x3a\x87\x6a\x29\x85\xcb\x92\x37\x5c\x0d\x97\x99\x9e\xa0\x26\x2f\xa8\x96\x52\x08\x56\xe1\x66\xbd\x0c\x1b\x82\x65\x39\xd5\xa5\x27\x82\x65\xa9\xd1\xa5\x27\x2e\x2b\xde\xf0\xfc\xbe\xf4\x44\x10\x69\xe8\x7d\xe9\x89\xcb\x92\x37\xdc\x02\x97\x9a\x08\x96\xab\x94\x2f\x35\x71\x59\xf1\xc6\x23\x5a\x27\x04\xab\x7c\xbf\x65\x2f\x2b\x49\x58\xd3\x26\x0f\x0c\x02\x87\x16\xd8\x5d\x3a\xe1\xd2\x09\x2d\x0a\xb1\x0c\x1d\x82\x65\x95\xe2\xa5\x26\x2e\x2b\xda\x78\xb2\xa9\x89\xcb\x8a\x36\x3c\x59\x2c\x35\x11\x2c\x27\x68\x2f\x35\x11\xec\xe3\x9e\x81\xd5\x13\xc1\x72\xf6\xc5\xd2\x13\xc1\xb2\x14\xf3\xd2\x13\x41\x0c\x3d\x62\x29\x85\xab\xd1\x73\xcf\x5b\x0d\x10\xd4\xfc\xfe\xd3\xc1\x68\x0e\x86\x9f\x72\x30\x1a\x83\x61\x2f\xb5\x3d\xb0\x5c\xe8\x7c\x69\x7b\x60\x99\xf9\xb0\x54\x3b\xb0\x0c\xd1\x2f\x73\x4b\xc1\x32\x1c\xbf\xb4\x3d\x50\x5d\x96\x68\x69\x7b\xa0\xba\x70\xc8\xd2\xf6\xd6\x67\x7b\xbc\x6c\x5a\xda\x1e\x18\xbe\xa6\x5c\x86\x2b\xc1\xb2\x48\xec\x72\x02\x21\x58\x66\xed\x2e\x23\x98\x60\x95\xef\xb7\x1c\x8a\xee\x50\xd0\x23\xd3\x54\x41\x75\xb1\x92\x65\x50\x13\x2c\x93\x82\x97\x7a\x09\xaa\x33\x95\x97\x41\x4d\x50\x9d\x0b\xb6\x0c\x6a\x82\x65\x14\x7f\x19\xd4\x04\x35\x79\xf5\xbe\x0c\x6a\x82\x7d\x0d\x66\x78\x0c\x6a\x82\xe5\x1a\x2d\xcb\xdc\x54\x50\x9d\xba\xbc\x4c\x4d\x05\x31\x7f\x5e\xf0\x94\x5c\xb0\x4a\xf7\xc7\x1c\x31\x2a\xf7\xb8\x8c\xfd\x32\x40\x0a\xf6\x23\x21\xdd\x34\x37\x15\xd4\x74\x14\xad\xdc\x03\x96\xb3\x48\x97\x61\x54\xb0\xac\xf7\xbb\x74\x68\x50\xd3\x81\x35\xb2\x0a\x96\xe5\x5f\x97\x5a\x0d\x6a\x7a\x5a\x9a\xc0\x0a\xaa\x53\x16\x97\xa6\xbd\x9c\xc5\xc8\x03\xf9\x32\x81\x15\x4c\x17\x2e\x5e\xca\x37\x58\xd6\x5a\x5f\xca\x37\x88\xa6\x0b\x2f\x03\xb0\xeb\xcb\x60\xed\x7e\xd5\x31\x1b\x9e\x4a\x36\x39\x64\x1b\xd5\x09\xc4\x4b\x23\x07\xcb\x59\x4b\x4b\x23\x07\x35\xdd\x25\x1a\xf9\x32\xa9\x95\xe7\xe5\xa5\x91\x83\xea\x3a\x5a\xcb\xa0\x2c\x58\x56\x6e\x5e\x4a\x3a\x58\xbe\xc9\x5a\x8a\x35\x88\x74\x72\xd9\x52\xa3\x41\x4d\x2f\x5b\x6a\x34\x58\xbe\x0f\x5c\x2a\x33\xd8\x47\x01\xff\xa9\x33\x83\xea\xd4\xf7\xa5\xf9\x82\xe8\xe6\xf9\x2c\x63\x9e\x60\x99\x14\xbf\x8c\x79\x82\xe5\xfc\x86\xa5\xc8\x82\x65\x30\x6d\x29\xb2\x60\xad\xf2\x07\x67\x5e\x4a\x2d\x58\xc6\x9c\x96\x52\x0b\x6a\x7a\x7a\x18\xeb\x04\xcd\x09\x50\x4b\xcf\x05\xcb\x39\x18\x4b\xcf\x05\xcb\x68\xd2\xd2\x73\xc1\xbe\x37\xd0\x3b\xe3\x9f\x60\x99\xdf\xbf\x8c\x7f\x82\x65\x1c\x67\x69\xc3\xa0\x59\xc0\x62\x69\xc3\xa0\x59\xfe\x61\x59\x95\x07\x2c\x63\x2f\x4b\x1b\x06\x7b\xdc\xf9\x4b\x75\x78\x7d\x79\xaa\x74\x49\x1d\x5e\xe6\xa9\x7a\x74\xa9\xc3\x20\x9a\x4b\xf8\x2c\x7d\x18\x34\x4b\x90\x2c\x7d\x18\x2c\xe3\x87\xcb\x59\x90\x60\x19\x1e\x59\x2a\x32\x68\x16\x25\x59\x1a\x32\x58\xeb\xfb\x79\xc7\xe7\xcb\x79\x75\xc3\x1c\x9e\x83\xe1\x21\xee\xb8\x34\x64\xb0\x0c\xdb\x2c\x0d\x19\x34\x8b\x79\x2c\x0d\x19\x2c\xa7\xa8\x2c\x0d\x19\x34\xb3\x16\x97\x86\x0c\x9a\x55\x50\x96\x86\x0c\x96\x05\xac\x97\x86\x0c\x96\x33\x54\x96\x86\x0c\x96\xb3\x0f\x97\x86\x0c\x22\xab\x97\x60\x15\x19\x2c\xc3\xb2\x4b\x45\x06\xcd\x09\xbf\x4b\x45\x06\xcb\xb8\xcd\x52\x91\xc1\x72\x72\xc8\x32\xc4\x0b\x9a\x75\x47\x96\xd2\x0c\x96\x91\xda\x65\xf0\x16\x34\x0b\xb6\x2c\xe7\x58\x82\xe5\x0c\x95\xa5\x59\x83\x65\xd8\x74\x99\xe7\x0a\x96\xb9\x6d\xcb\xa8\x2f\x58\x86\x73\x97\x41\x5f\x10\xf9\x3d\x26\x1a\xf5\x05\xcd\x94\xce\x65\xd4\x17\x2c\xc3\x4e\x4b\x71\x07\xcd\x7a\x28\x4b\x6f\x07\xcb\xd8\xd7\xd2\xd1\xc1\x32\x30\xb8\xb4\x6f\xb0\x7c\xf1\xbe\xb4\x6f\xb0\x0c\x61\x2d\xe5\x1b\x34\x2b\xcb\x2c\xe5\x1b\x34\x97\x0f\x58\xca\x37\x68\x66\xa4\x2e\xe5\x1b\x2c\x67\xe6\x2c\x43\xbc\x60\x19\xd9\x5e\xfa\x38\x68\x56\x1e\x5a\xfa\xf8\xb2\xaa\xed\x74\xc4\xb4\x6f\xd0\x4c\x82\x5d\xda\x37\x58\x46\x52\x97\xf6\x0d\xa2\x7f\xc7\x98\xfa\x0d\xf6\x89\x4a\x07\x8c\xde\x82\x65\xe8\x7f\x69\xc3\xeb\xf9\xa2\x62\x1c\x05\xc6\x57\x41\xfc\x5c\xc6\x65\xe9\xc3\x60\xb7\xb1\x71\x86\x53\x41\xfc\x5c\xae\x66\x29\xc9\x20\x7e\x2e\x98\xb2\xb4\x64\xb0\xdb\xd8\x14\x35\x19\x34\xcb\x82\x2d\x35\x19\x44\x37\x47\x76\x29\xc5\x20\x7e\xae\x20\xb4\xb4\x62\xb0\x37\xc5\x9f\x73\x3f\x3c\xd4\xda\xf2\xbc\xd3\x94\xc1\xfe\x57\xbe\xaa\x04\x83\xfd\x55\x86\x5d\x0b\x06\xfb\x73\xb6\x39\xec\x2f\x65\xb4\xbc\x70\xa8\xc1\x20\x7e\x4e\x2d\x5c\x4a\x2f\xd8\x5b\x47\x67\xb5\x5e\xb0\x7f\x8e\x5d\xa6\xf6\x82\x3d\x50\x1c\x72\x7a\x2f\xd8\xd7\x6e\xbf\xeb\x61\xc8\xe4\xcb\x74\x7a\xe9\xd2\x7c\xc1\xfe\x3d\xbf\xeb\x08\xbc\x8e\x80\xc7\x98\xee\x0b\x9a\x55\xe6\x96\xc1\x52\xb0\x7b\xeb\x57\x3d\x14\x09\x96\xfe\x5c\x0a\xe7\xd0\x91\xc1\xde\xbc\x46\x5b\xd8\x46\x46\x3e\x77\x96\x43\x45\x06\xcd\x1a\x70\x87\x86\x7c\x18\x2b\x35\xb1\xf6\xd0\x90\xc1\xde\x38\xdb\xba\x6d\x94\x56\xe0\x8c\x3e\x54\x64\xb0\xff\xb4\xd3\x36\x6c\x73\xec\xb8\x35\x1f\x4a\x32\xd8\xfd\x4f\xda\x96\x6d\xcb\xcf\xb9\x75\x87\x6d\xd4\x9e\xe3\xf6\x75\xa8\xc1\x60\x1f\xdb\x7f\xc8\xd3\x3e\xd4\xe4\xc3\xd9\x9c\xb9\xfc\xb7\xdb\xb6\xdb\x2d\x70\xab\x5e\xdb\x1c\x46\x6e\xb3\x87\x0e\x0c\x9a\x45\x20\x0e\x85\x17\x34\x4b\xd8\x1d\x0a\x2f\xd8\xbf\xc6\xb6\x6b\xbc\x60\x8f\x05\xff\x60\xf4\x17\xec\xe3\x8d\x31\x53\x83\xc1\xfe\x9c\xff\xea\xf8\x84\xe3\xc3\xd5\xf8\xb0\xe0\x0f\x68\x56\x26\x3c\x54\xe3\x43\x35\x56\x53\x0f\xd5\x18\xec\x63\xc1\x36\x07\x20\x9c\xce\xca\x31\x73\x18\x15\x06\xfb\x73\x76\xe3\xb1\x8d\xc9\x1e\xc3\xce\x3a\x26\x41\x45\x4a\xe4\xe9\x30\x2a\x0c\xf6\x37\xe9\xac\x61\x61\xd0\xac\xcd\x77\x98\x0d\x0c\x9a\x75\x19\x0f\x15\x1d\xec\x6e\x71\x78\x18\x16\x06\xbb\x8d\x6d\x33\x1b\x18\xec\x7f\xf0\xbb\x0e\x49\x71\xb2\x83\x43\x62\x18\x18\x44\xcf\xe9\x96\xd8\x57\x17\xdb\xb4\x94\xe7\x61\x6c\x18\x44\x77\x16\xf6\xa1\xce\x83\x88\xf0\x10\xd4\xe7\x41\x74\x9f\x83\x0e\x85\x1e\xec\xcf\xd9\x66\x3f\x36\x9a\xd3\xe1\x0e\x55\x1d\x34\xe7\x99\x1f\xaa\x3a\x68\xd3\x23\xcc\x88\x2e\x68\x33\xfc\xa2\x7d\xa8\xce\xce\xf0\xa0\x53\xdf\x41\x84\x39\xbd\x87\xfe\x0e\xda\xf4\xa4\xd4\xdf\xc1\xde\x34\x86\x4e\x7f\x07\xfb\xe7\xf8\xaa\x02\x0f\xf6\xd1\xc9\xdf\x6a\xf0\x60\x7f\x8e\xef\xea\xe6\xa0\x39\xf1\xf3\xd0\xcd\x41\xa4\x09\x24\x87\x72\x0e\x22\x4c\x4b\x3e\x8c\xe2\x82\x36\xdd\x39\xfa\x3a\x68\xf3\xdb\x10\x47\x84\x24\xe1\x30\xed\xe0\x50\xd8\x41\x73\xe6\xe7\xa1\xb0\x83\xbd\x1b\x18\x39\x43\xb6\x47\xb3\xaf\xdc\x6e\x0f\x95\x1d\xec\x61\x62\xd7\x18\xa1\x05\xbb\x8d\xcf\xe9\xf1\x60\xf7\x95\xff\x50\xe4\xc1\xfe\x0f\xdb\xdc\xfd\x24\x19\x37\x5f\x31\x1c\xaa\x3c\xd8\xbf\xe7\xe7\x1c\x14\x5c\x3e\x4c\xd5\x3e\x74\x79\xb0\x3f\xc7\x36\x2b\xf3\x20\x9a\x99\x0b\x87\x36\x0f\xda\x74\x97\x69\xf3\xa0\x4d\x0f\x44\x6d\x1e\xec\x2d\x66\x8f\xa9\xf3\x60\xb7\xb9\x75\x8e\x4a\x77\x2a\x92\x23\xa5\xbd\x83\xbd\x25\xfe\x85\x23\x45\xf5\xdc\xe9\x31\xa6\xbe\x83\xfd\x31\xdb\x1c\xa8\x8d\x36\xfd\x07\xf5\x1d\xb4\xc9\xad\xfa\xd0\xd5\xc1\xfe\x26\xdd\xd7\xd5\xc1\x7e\x30\xf1\xd7\x1c\x92\x74\x48\x1c\x62\x6d\x1d\xec\x36\x3a\xa6\xad\x83\xdd\xc6\x91\xa2\xae\x83\xfd\x55\x3f\xe7\xa0\xe4\x37\x28\x74\x56\x61\x07\x6d\x7e\x5f\x75\x4c\x5c\x2d\x34\x3c\x8c\x75\x71\xb0\x7f\x8e\x03\x4f\xf3\x06\x7b\x93\x19\x27\x95\x1a\xec\x36\x7e\x4f\x81\x3e\x5c\xe5\xd3\x5a\x9e\x87\x22\x0c\xa2\xff\xbe\x36\xc7\x7d\xa3\x5b\xfb\xe5\x30\xea\x7c\x58\xf2\xc7\x77\x43\x87\x76\x0c\xba\xcf\x9b\x87\x61\xe7\xe3\x5f\xc5\x1f\xfe\x55\x61\x06\x7b\x4b\xe8\xac\xc6\x0c\x22\x7c\xdf\x75\x18\x79\x06\xdd\x07\xe6\x43\x8b\x06\xfb\x5f\x6d\x73\xdc\xa7\xeb\x84\xe3\x43\x87\x31\xe5\xc3\xfa\xb7\x5a\xeb\xa1\x5a\x83\xc8\xf4\xa9\xc1\x18\x31\xd8\xbf\xc7\xbe\x55\xb7\xc1\xfe\xae\xff\xe1\x00\x4c\x57\x4a\xf7\x6e\x64\x30\x19\x44\x37\x6f\xe6\x50\xc2\x41\x77\xaa\xdc\xa1\x84\x83\xfd\x17\x7f\x48\xf7\x3e\x8c\x36\x1f\xae\xd8\xe9\xeb\xad\x43\x33\x07\x7b\x0b\xd8\x2a\xd5\x1c\x74\xa5\xf2\x50\xcd\xc1\xfe\x98\x5f\x75\x2f\xaf\xaf\x84\x0d\x1b\xaf\x9c\x83\xee\xf4\xba\x43\x11\x07\x31\xbf\x1d\xaf\x89\x83\xbd\x25\xfe\x85\xc7\xe5\xb2\xbe\xa4\x97\x2b\x5d\x1c\x74\x6b\xc0\x1d\x46\xa6\x0f\x57\xfc\x34\x23\xf0\xd0\xcf\xc1\xfe\x2a\x47\x88\x82\x0e\x76\x1b\x07\x97\x82\x0e\xba\x59\x02\x87\x82\x0e\xf6\xc7\xf8\x39\x0d\x1d\x74\x6d\xfc\x50\xd0\x41\xb7\x38\xd5\xa1\xa0\x83\xdd\x07\xff\xc0\x61\x3a\x1c\x26\x2f\x24\x2a\x3a\xd8\x9f\xf3\x5f\x1d\x26\xaa\x17\x35\xe7\x91\x1c\x4a\x3a\xd8\x5b\xe2\x7f\x38\x26\x16\x2b\xfa\x79\x19\x56\xc0\x41\x77\x6a\xdc\xa1\x80\x83\x28\xdf\x1e\xd3\xc0\x8f\xad\xdb\xdd\xe2\xe2\x87\x6e\x7d\xb8\x4c\xa8\x69\xca\x87\x72\x0d\xa2\xbb\xee\xc4\xa1\x5c\x83\x6e\xf5\xa8\x43\xb9\x06\xfb\x1f\xd8\x10\xed\x1a\xec\x8d\xe3\x5f\xd5\xeb\x83\xa9\xa4\x45\x9f\x3b\xcc\x97\x06\xdd\x85\xd0\x0e\xfd\x1a\x44\xf1\xbd\xcb\x61\xc2\x34\xd8\x6d\x6e\x89\xfd\x3f\x29\xcf\xe9\x7e\xd5\xb0\xc1\xfe\x98\x1d\xb3\xaf\x96\x31\xf2\xad\xf9\xa1\x29\x83\xee\x1a\x74\x87\xa6\x0c\xba\xab\xbb\x1d\x86\xb3\xc1\xfe\x35\x36\x4e\x55\x06\xbb\x8d\x9d\x68\x3c\x1b\xec\x7e\xf9\x5d\xfb\x75\xf9\xd6\xc9\x4e\xe8\xd4\x60\xdf\x23\xfd\x3d\x3b\x46\x48\x3b\x8d\xe3\x1d\x5a\x35\x88\x62\x45\xeb\x43\xad\x06\xbb\xcd\xcf\xd9\xdb\xcb\x02\x40\x1e\x3c\x5a\x34\xd8\x6d\x6c\x8b\x1a\x0d\x76\x1b\xe3\xae\x47\x83\xfd\x7b\x6c\x9f\x1e\x0d\xba\x52\x76\xe8\xd1\x87\x89\xd1\xe6\x6f\x1e\x46\xa3\x0f\x57\xfb\x54\xf2\x0e\xa5\x19\xec\x9f\x63\xe0\x0d\x51\x83\xfe\x3d\xc3\x9b\xf3\x0c\xba\x25\xdb\x0e\xa3\xd6\x60\x7f\x93\xdd\x63\xd8\xfa\x70\x22\x2a\x52\x7a\x98\xf4\x7c\x7c\x13\x51\xbd\x28\x18\xca\x3e\x2c\x6c\x64\x09\xe8\xc3\x58\x36\xd8\x6d\x74\x42\x7d\x07\x7b\x9f\x31\x9e\x6a\x39\xe8\xfa\xec\xa1\x81\x83\xfd\x55\x36\x58\x03\x3f\xfe\x4d\x49\xf5\xab\xf6\x8b\xfa\xb7\xdf\x0c\xce\x43\x05\x07\x7b\xf3\xd8\x64\x15\x1c\xf4\xe4\x15\xf3\xa1\x6e\x1f\x8f\xa5\x98\x7c\xfc\x37\x0c\x0d\xe2\x2b\x53\x71\xa8\xe0\x87\xf5\x8b\xcc\x9c\x3a\xd4\x6d\x10\x5f\x21\x89\x43\xb7\x06\x7b\xf7\xb0\x29\x7a\x34\x88\xfa\x1d\x65\x7a\x34\x88\x6f\x42\xe3\xa1\x47\x83\x6e\x51\xc6\x43\x8d\x06\x5f\x4c\xe5\xd0\xa2\xc1\xfe\xb5\xfd\xb1\x53\x15\x06\xbb\xad\xd3\x56\x6c\x2b\xb6\x05\x6d\xd5\xb6\x6a\x5b\xa5\xad\xd9\xd6\xf8\x0b\x3f\xd6\x6d\xea\x9e\x16\xfe\xdc\xb4\x8d\x72\xa4\xbe\xf3\x3e\x95\x57\xd0\x67\xb5\xe9\xb4\xe9\xb4\x92\xe9\xa2\xed\xb5\xed\x75\x7a\xf0\xee\xff\x69\x30\x16\x74\x4f\xc6\x53\x11\x3d\xa3\xf8\x31\x3a\xa6\x89\x82\xa8\x9e\x78\xa7\x8a\x09\xbe\xcb\xe2\xa9\x61\x82\xa8\xbe\x6d\x38\x35\xcc\x33\x96\x6d\x49\x9b\x1b\x8c\x4e\x56\x9d\xf8\x54\x13\xc1\xbe\x2e\xf8\xdd\xc7\x36\x66\x2a\x1b\x09\x3f\x95\xc2\xd3\x54\x61\xfa\xa0\x12\x82\xb5\xfe\xf0\x5e\xfd\x54\x18\x41\x58\xf2\xee\x54\x18\x41\x1a\x81\x3e\xf5\x40\x90\xa6\xa7\x9d\x2a\xdf\xe9\x42\xa1\x9c\xa5\xa7\xc6\x07\x46\xfb\xb9\x85\x8e\xb3\xa9\xbf\xdc\xf5\x4e\x53\x7f\xc1\x68\xfe\xbc\x5a\x08\xca\x58\x36\xb9\x5d\x64\x03\x2f\xee\xa0\xa7\x52\x08\x46\xe3\x11\xe6\xd4\x09\x4f\xd7\x04\x9d\xdf\x37\xdd\x17\xac\x09\x6a\xd5\x99\xd3\x28\xef\xc9\xfa\x9f\x56\xaf\x38\xf5\x44\x30\xad\x94\x7d\xea\x89\xa0\x5a\xa3\xe3\xd4\x13\xc1\xb4\x76\xe6\xa9\x26\x82\x69\xc5\xbe\x53\x4b\x04\xb5\x7c\x4d\xee\xad\x6a\x68\xca\x2f\x3a\x14\x95\xe4\x12\x7f\x5e\x1f\x3c\x8d\xe8\x72\xc9\x39\x8d\xe8\x9e\x46\x74\x3d\x08\x8d\xe8\x82\x65\x92\xf2\xa9\x21\x9e\x46\x6f\x79\x41\x72\x2a\x88\x60\x99\xe5\x7b\xea\x87\xa0\x3a\xbf\xf7\xd4\x0f\xc1\x32\x25\xf6\xd4\x0f\x41\xf3\x09\xe9\x34\xc4\x0b\x96\x33\x83\x4e\x8d\x11\x2c\xa7\xdb\x9c\x1a\x23\x68\x5e\xa7\x4f\x85\x11\xac\xef\x3c\x30\xea\x0b\x9a\xd5\x0c\x4f\x75\x11\x34\x6b\x77\x9e\xda\x22\x88\x9f\x65\xbd\x4e\x6d\x11\x44\x1a\x78\x3c\x35\xc3\xf3\x33\xc3\xe6\xcf\x39\x18\xff\xcc\xd0\xdf\x73\x34\x3e\x33\xe4\x56\x73\x6a\x86\x60\xfb\x83\xff\x61\xe7\xd5\x40\x77\x8a\xca\x77\xaa\x7c\xdf\xb0\x19\xc2\x05\xdd\x62\x0e\xa7\xc6\x77\x3a\x09\x55\x09\x38\x35\x3e\xd0\x5d\x21\xf4\xd4\xf8\xce\xfc\x6e\xab\x7c\x4c\xe3\x03\xdd\xb7\xd3\xa7\xc6\x07\x5c\x95\xef\x34\x5e\x0b\x5c\x04\xf9\x54\x01\xc1\x77\x46\x28\x80\x20\x0c\x80\x9e\xfa\xdf\xf9\x2f\x32\x4b\x93\x7b\x13\x85\x73\x8d\x9b\x53\x5d\x03\xa3\xfd\xfc\x94\xdb\x8e\xad\x8d\x74\x47\x19\x14\x05\xd5\x9b\xd3\xa9\xac\x81\x7d\xc6\x31\x88\xca\xda\x69\x6d\xd7\x6f\xc4\x0c\x77\x82\x66\x95\xe9\xd3\x70\x27\xe8\xae\x23\x7c\x1a\xee\x04\x2e\x17\x79\x2a\x79\x20\x86\x3e\x73\x1a\xee\x04\xdf\xd9\xab\xf6\x81\x34\x5f\xf0\x54\xfb\x4e\x67\x8f\x72\x83\x3c\xb5\x3e\x90\xa6\x73\x9d\x5a\x1f\xd8\xf7\x42\x7e\x4c\xeb\x03\x69\xae\xf4\xa9\xf4\x81\x70\x91\x9e\x53\xe7\x03\x69\xa2\xed\x69\x94\x14\x84\x6b\xe1\x9c\xa6\x11\x83\xd1\x7e\x7e\xca\x3e\xb2\x7e\xa7\x05\x04\x4f\x85\x0f\x14\x0b\x08\x9e\xfa\x1e\xf8\xd2\xea\x4f\x75\xef\xdc\x6a\xf7\xcd\x85\x3c\x35\x3b\x30\x7f\x5e\x61\xb5\xb8\xf3\xcb\x09\x66\x23\xb4\x2f\x30\x2d\xb0\x73\x6a\x5f\x60\x5a\x2d\xf2\x54\xbe\x40\xb5\xf2\xcf\xa9\x7b\x81\x99\x5f\x93\x1d\xa2\x32\x4f\xf9\x7e\xcb\x0e\x2d\x2e\x9d\x9e\xaa\x9a\x17\x58\xe6\x9b\x9e\x1a\xd5\x69\x28\x13\x53\x3c\xb5\x22\xb0\x4f\x72\x46\x47\x2d\x3a\x5d\x60\xc4\xe2\x7d\xa7\x5e\x04\x5a\xf3\x22\xa5\x16\x81\xfd\x31\x3a\xa0\x16\x81\xdd\xe6\xe7\xec\xc1\xe1\xab\x0e\x6f\xce\x46\x25\xcf\xc3\x77\x38\x9e\x96\xfa\x0e\xd8\x27\x39\xc3\x76\x7c\x5b\xec\xbb\x04\xb7\xce\xf1\x56\x81\x78\xd6\x39\x8d\x38\x82\x7d\x42\xf3\xaf\x2a\x10\xe8\x56\xb8\x3d\x35\x20\x90\x3e\x73\x9d\xda\x0e\x88\xf5\xfb\x43\x6d\xb2\x53\x17\x02\x69\xe6\xfd\x69\xa8\x11\x14\x2b\x54\x9e\x6a\x0f\x28\xae\xd0\x71\x1a\x57\x04\xd5\x12\x51\xa7\xd6\x03\xa6\xb5\x62\x4e\x83\x88\xa0\x26\x51\xa2\xd3\x20\x22\xa8\x49\x4a\xc2\x69\x0c\xf1\xfc\xd6\xd4\xf4\x1a\xa9\x07\x9d\x86\x07\xbf\x8f\xd9\x3b\xaa\xe7\x58\x29\xe8\x54\x79\x40\x44\xf8\x1c\xa7\xf2\x9c\x5f\xf9\x1c\x87\x54\xe5\x01\xfb\x52\x4a\x3f\x55\x1e\xb0\x9f\xbc\xe8\xa8\xca\x03\x5c\x95\xf6\x54\x78\x40\x7e\x67\xb3\xbe\x03\x9c\x7c\x79\x6a\x3b\xa7\xb6\xe3\xae\x50\x76\x40\x56\xde\x38\x9d\x26\xec\x82\x70\xe1\xa3\x53\xd5\x01\x35\x7d\x36\x52\x75\x80\x53\x96\x4f\xa3\x83\x20\x9d\x01\x72\x9a\x9c\x0b\xc2\x05\xca\x4e\x75\xe8\x74\x02\xe8\xf0\x8b\xf6\x10\xf3\xb1\xa0\xcf\xa9\xf9\x00\x97\x33\x3e\x15\x1f\x10\xdf\x3a\xf4\xa7\x96\x03\xd2\x44\xbf\x53\xa1\x01\x69\x6a\xfa\xa9\xcf\x9c\x86\x23\xbf\x0e\x19\x8e\x04\xa3\xe1\x33\xa7\x09\xbb\x60\xb4\x9f\xdf\xb4\x8f\x8f\xcf\x59\xf4\xc8\x58\x24\x18\xa6\x6c\x9f\x8a\x10\x18\x96\xb6\x38\xf5\x20\x30\x1a\x01\x8f\x53\x0d\x02\xfb\xe0\xf1\xf7\xed\xe5\x43\xb1\x5e\x5e\x04\x9c\x26\xde\x82\x6a\x95\xb3\x53\xe3\x01\xd3\x77\x5d\xa7\xf1\xc5\x93\x94\x5a\xdf\x16\x9d\xc6\x08\xcf\x97\xe7\x19\x8f\x7d\x35\x06\x2c\xe7\x06\x9d\x5a\xcc\x69\x34\xd0\x0c\xaf\x53\x8d\x39\x5f\xb3\xf5\x6c\xf2\xd0\x79\x49\x31\xf2\xde\x69\xe0\x0f\x2c\xa7\x98\x9e\xc6\xfd\xce\x2f\xee\xc7\x6e\xba\x94\x9d\xcb\xb8\x9f\x55\x6a\x2e\xe3\x7e\x60\xb7\x0d\xda\x8a\x6d\x5e\x01\x79\x31\x72\x29\x40\x60\x9f\x11\x95\xb6\x66\x9b\x8f\x39\x78\xd7\xa5\x01\x81\xa6\xd9\x5c\x46\xfe\xc0\xfe\x58\xa3\x6d\xda\x36\x39\xac\xfc\xd7\x65\x93\xef\x1c\xd3\xaf\x9e\xb6\x59\xed\x69\xf9\xb9\xcb\x36\x2d\xbb\xdb\x76\xdb\x76\xeb\x58\x6e\xc9\x6b\xdb\xcb\x7e\xde\x2d\xaa\x13\x70\x2e\xe2\xa5\x39\x81\xc9\x65\xf8\xd2\x9b\x2e\x2b\xab\x22\xc4\x97\x11\x3c\xf0\x2d\xd2\x79\x19\xc0\x03\xf9\xeb\x36\xd9\xcb\x20\xf1\xc0\x16\xfb\x18\x94\x7b\xe1\xda\x70\x19\xa8\xbb\xc2\x62\x22\x7e\xca\x2e\x86\x81\x2a\xb7\xc1\x1e\x12\x93\x6b\xc6\xdf\x2e\x65\x0b\xa4\x99\xd4\x97\xf1\x37\x10\x9e\x74\x97\xaa\x75\x59\x6a\x95\x90\xcc\xa5\x3a\x81\x62\xcd\xdf\xcb\xb2\xaa\xa0\x58\x1e\xe5\xd2\xa6\xc0\x68\xa8\xf1\x65\xf4\x0d\x14\x6b\xa1\x5c\x06\xdf\xae\xe2\xdc\x53\xb6\xcb\x3c\x5a\xf0\xcd\x6e\xba\x0c\xbd\x81\xe2\xc2\x52\x97\x1a\x06\xaa\x85\x11\x2f\x67\x60\x5e\xc5\x93\x89\x2f\x9a\x59\x0b\xa6\x2f\x15\x2f\x35\x0c\x44\xaa\x28\x97\xd2\x05\x9a\xef\x28\x2f\xa5\xeb\x52\xba\x82\x16\x3b\xf4\x6f\xc1\x0c\xbf\x68\x8f\x28\x98\xea\xda\x6f\x97\xce\x75\x7d\x33\x30\xdd\x7e\xe3\x75\x60\x36\x3f\xe5\x6e\x63\xc5\x8c\x6e\xec\xfe\xd2\xc3\xc0\xfe\x03\xb7\xd6\x9e\x53\xa7\xc7\x35\xc7\x2e\xad\x0b\xc4\x30\xdf\xf6\x52\xbb\xc0\xf4\xac\xd1\xba\x40\xba\xb6\xe2\x65\x64\x0e\x38\x79\xf9\xd2\xc3\xc0\xec\x7f\xb8\x31\x5f\x5a\x1a\x88\x6f\xec\xb4\x34\x90\xae\xd8\x78\xa9\x64\x20\x75\x90\x4b\xd9\x02\x91\x06\x63\x2f\x6d\x0b\xa4\x77\xc4\x4b\xdb\xba\x28\xd9\xf3\x9d\xfe\xaa\xd5\x45\x2c\xee\xc7\xc5\xf5\x32\x14\x07\x32\x1c\x4f\xd5\x0a\xc4\x77\xd0\xa8\x51\x20\x7d\x22\xba\xb4\x28\x90\xde\x97\x2f\x25\x0a\xc4\xcf\xb3\x40\x5f\x02\xe1\xc3\xe6\x65\x20\x0d\x44\x77\x5e\xe7\xa5\x42\x81\xf0\x31\xf5\x32\x92\x06\xf6\xbe\x67\x63\xd5\x2a\x10\x3f\x8f\x70\xad\x0a\xa4\xcf\x65\x97\xb1\x35\xe0\xc3\xec\xa5\x67\x5d\x7a\x96\xd7\x08\x35\xeb\x4a\x3b\xc9\xe8\xa8\x54\x20\x9c\xb6\x74\x29\x47\x20\x5d\xbf\xe9\x52\x8e\x40\xba\x56\xd3\x65\x6c\x0c\x64\x25\xb4\x70\x19\x1a\x03\x61\x02\xf8\x65\x64\x0c\x7c\x93\xdb\x2f\xad\x0a\x84\xe5\x2f\x2f\xe3\x62\x20\x6b\x71\xbb\xec\x4f\x52\xbd\xc8\x8b\xb6\x59\xab\x20\xbe\x42\x34\x57\x7e\x3d\x7a\xf9\x26\x83\x63\xda\x2a\x08\xe5\xf7\x32\x78\x06\xb2\xf2\x20\x73\x69\x68\x20\x4c\xe3\xbe\xcc\x5a\x05\x59\xdd\x30\xa5\x0d\x84\xf9\xeb\x97\x49\xab\x20\xa6\x8b\x21\x5f\x7a\x1c\x08\xef\x92\x97\xce\x06\xb2\x16\x3f\xe5\x58\xb0\x44\x47\x5a\x39\xf3\xd2\xda\x40\x7c\x57\x21\xa5\x0d\xa4\x4b\x11\x5c\xce\x1a\x05\x61\xda\xed\xa5\xc8\x81\x30\x1d\xf8\x52\xe4\x40\xb4\xaf\x4d\x93\xbb\x34\x39\xc7\x5f\x93\x03\xa1\x98\x5c\x8a\x1c\x88\xe2\x8d\x54\x91\x03\x61\x66\xfd\xa5\xc8\x81\xac\xc5\x4f\x39\x18\x04\xef\x7c\xfc\xb8\x74\x3b\x10\x66\xd6\x5f\x86\xf3\x40\xba\x94\xd8\xa5\xee\x5d\x44\xf3\xca\xd7\xe4\x50\x6c\xa4\x2f\x96\x2e\x67\x88\x82\xac\xc5\x8d\xf0\xd0\x27\xbc\x67\x6a\xf7\xa5\xee\x81\x30\xbf\xfc\x32\xb8\x07\xd2\xf2\x8b\x97\x06\x08\xb2\x7a\xfd\x30\xb4\x07\xc2\xd2\x71\x97\x71\x3a\x10\xe6\x7f\x5f\x86\xe9\x40\x3a\x6d\xed\xd2\x13\x2f\xd7\x02\xf1\x32\xa0\x27\x82\x74\x49\xb2\x4b\x4f\x04\x61\xda\xfe\xa5\x14\x82\x30\x64\x7f\x29\x85\x20\x7c\x07\x76\x19\xa2\x03\x59\xbf\x26\x47\x82\x08\xdd\x77\x6b\x32\x40\x07\xd2\xe5\xc8\x2e\x03\x74\x20\x7d\xeb\x76\x19\x8b\x03\xf1\x65\xc9\x5c\xea\x24\x88\x3e\x78\x25\x7c\xe9\x7a\x60\x1f\xd6\x6c\xad\x21\x30\x10\xce\xbb\xbb\x8c\x80\x81\x70\xe6\xda\xa5\x11\x82\x74\xa6\xdf\xa5\x10\x82\xf8\x4e\x54\x85\x10\x44\xff\x86\x51\x23\x04\xa9\x59\x5d\xc6\xc9\xae\xf3\x2b\x34\x46\x93\x5b\x6b\x0e\xaa\x65\x63\x2f\x25\x11\x84\x25\x8c\x2f\xc3\x64\x20\x9d\xf6\x78\x69\x81\x20\x9d\x96\x74\x69\x81\x20\x9d\xb2\x77\x19\x23\x03\xe1\xb4\x9b\xcb\x18\xd9\xe5\xc4\xcd\xe9\xcf\x3b\x3e\xd4\x14\x72\x0a\xda\x65\x84\x0c\x84\xf3\xcd\x2e\xf5\xf1\x72\xe9\x0f\x6f\xca\xea\xe3\x75\x7e\x65\x0c\x69\x72\x2c\x2c\xb5\xea\xbd\x40\x7d\x04\xe9\x9b\x87\x4b\x7d\x04\xe1\x6c\xb9\xcb\xc0\x1a\x48\xa7\xff\x5d\x0a\x25\x48\x67\x50\x5e\xa6\xa0\x82\xe8\xf3\x0f\xab\x57\x5e\x2a\xe8\xe5\xcc\x52\xde\x42\x5c\x46\xe2\x40\xfa\xd2\xfc\xd2\x4a\x41\xfa\x2a\xe4\x52\x40\x41\x7c\x8f\x2a\xfa\x27\x08\xa7\xef\x5d\xea\x27\x88\x34\x67\xec\x52\x40\x41\x58\x11\xfa\x52\x40\x41\xfa\x7a\xe4\x32\x91\x15\x44\x3a\xcd\xe8\xd2\x4a\x41\x2a\x33\x97\x56\x0a\xd2\xb5\xc2\x2f\x23\x70\x20\xbf\x07\x37\x45\x15\xa4\x93\xba\x2e\x45\x15\x84\x93\x3a\x2f\x45\x15\x7c\x13\x9f\x2f\x73\x5b\x2f\x73\x5b\x7d\x84\x55\x5e\x2f\xeb\x17\xf9\x6c\xad\xbc\x82\x70\xb2\xe9\x65\xdc\x0e\xfc\xc7\xd8\xb9\xe4\x58\xcf\x02\x0b\x72\xde\xab\xe8\x25\x9c\xe4\x8d\xd4\xea\xbd\xd8\xc6\xde\xff\x12\xae\x88\xe0\xbb\xd3\xbf\x46\xa1\x42\x75\x6c\x83\x9f\x41\x26\xd0\x1c\x04\xf7\x28\xaf\xa0\x39\x4d\xc0\xa3\xbc\x82\x70\x2c\xdb\xa3\xbd\x82\x70\x8c\xed\x63\xd4\x0e\x34\x07\x8c\x3d\xfa\xec\xa3\xcf\xfa\x9c\x30\x68\x07\xa2\x76\xbf\xc0\x75\x5c\x10\x8e\xe3\x78\x74\x5c\x10\x8e\x82\x7b\x54\x5c\x10\x8e\xce\x7b\x54\x5c\x10\xce\xb0\xfb\x18\xd8\x03\xe1\x0c\xe6\x8f\x3e\x0b\x9a\x83\x8b\x1f\x7d\x16\x84\x13\x85\x3f\x66\xd6\x82\x66\xd2\xc8\xa3\xe2\x82\x68\xe9\xfc\x9b\x6d\xc1\xfc\x45\x8e\xa8\x7c\x0c\xf4\x81\xe6\x88\xca\xc7\x54\x5b\xd0\x1c\xfd\xfb\x18\xfb\x03\xcd\x31\xaf\x8f\x6e\x0c\xc2\xe1\x8e\x8f\x6e\x0c\x92\x33\x3a\x3e\x06\x03\x41\x38\xe6\xf5\x51\x97\x41\x73\xb0\xec\x63\x78\x10\x84\xb3\x59\x3f\x8e\x40\x05\xe1\x90\x83\x47\x83\x06\x4d\xf5\x5e\x0a\x2e\x68\xf6\xc1\x2e\xfd\x16\x74\x3f\x0f\x97\x7a\x0b\xf6\xd3\x37\x53\x96\x2d\xcb\xfc\x9b\x45\xc5\x22\xba\x52\x39\x6d\x4b\xb9\x05\x51\x9c\x6f\x6b\x69\xb7\x60\x6f\xad\x50\xd6\x2d\xeb\x6c\xad\x51\x34\x2c\x1a\x14\x4d\x8a\xa6\x45\x73\x17\xd1\x3e\xcb\xb8\x20\x68\xce\x7e\xb1\x54\x60\x10\x2e\xa8\xbe\x34\x60\x10\x7e\xda\x2c\x05\x18\xf4\x12\xd6\xfc\xb5\x68\xdf\xce\x0e\x0c\x59\x2a\x31\xe8\x7e\x77\x2f\x9d\x18\x74\x63\xa2\x4b\x29\x06\xcd\x2e\xfc\xe5\xd8\x4e\xd0\x9c\xb4\x60\xe9\xbb\xa0\x1b\xc4\x5f\x06\x13\x41\x98\x1c\xbc\x74\x60\xd0\xfd\xec\x5e\x3a\x30\x68\x4e\x4e\xb1\x8c\x2e\x82\x66\x30\x6c\xa9\xc5\x20\x4c\xda\x5f\x2a\xf0\x72\x51\x92\x69\x91\x75\x24\xdc\x38\xcf\xd1\x5b\xc7\x60\xfe\x30\x9e\xe4\x4b\x2b\x06\xdd\x8f\xfa\xe5\xc4\x44\xa0\xbb\x1c\xe6\xd2\x8a\x41\xd4\x1f\x1f\x7e\x4b\x2d\x06\xe1\xda\x5e\x4b\x2d\x06\xfb\x7c\xbb\x03\x2b\x4e\x52\xaa\xa3\x77\x96\xb1\xc8\x65\x2c\x92\x17\xdd\x72\xfe\x22\x10\x8e\x28\x59\xda\x33\x88\x79\x8e\xcc\x8a\x93\xb8\xea\xd0\xa4\xa5\x3d\x83\xae\x54\x2d\x83\x98\xa0\x39\x2f\xc6\x52\xa8\x41\x38\x4a\x63\x19\xd7\x04\xdd\x75\xe0\x96\x8e\x0d\x9a\x9d\xe7\x4b\xc7\x06\xe1\xb4\xf3\xcb\x50\x27\x08\x57\xc6\x5f\x5a\xf7\x72\x99\x92\xe9\x7f\xd9\x62\x2e\x53\x42\x7c\x6f\xa9\xdd\x20\x9c\xd0\x68\x69\xdd\x20\x1c\x89\xb2\xb4\x6e\xd0\x55\xa3\xa5\x74\x83\x70\x88\xcc\xd2\xba\x41\x38\xb0\x62\x29\xdd\xcb\xc5\x4c\x78\xdf\x2d\x9d\x1b\x84\xb3\x3f\x2f\x83\x9f\xa0\xcd\xd1\xfe\xfb\x9d\xbc\xb4\xf4\x95\xbd\x8e\x3c\x6c\xdb\x2e\x7b\x1d\x71\xd8\x2a\x39\xe8\xda\xe7\xd2\xc9\x41\xa8\x90\x4b\xeb\x06\x4d\x3b\x5c\x46\x17\x41\x74\x13\x14\x96\xde\xba\x8c\xf3\x19\x1d\x5a\x8a\x2b\xe8\xc5\x1a\xeb\xad\x20\x65\x1e\x7c\x4b\x6f\x05\xc9\x0f\xf5\xa5\xb6\x82\x68\xf6\xd8\x2d\xbd\x15\xc4\x59\xb8\x66\xa9\xa9\xa0\x97\xe4\xd6\xac\x67\xf5\x1a\xa1\x52\x46\x03\x41\x2f\x5e\x23\x9a\x2b\xe8\xc5\xdb\xd1\x60\x20\xe8\xc5\x8b\xde\x68\xe0\x6a\x76\xc3\x70\x64\xfa\x2d\x48\xf9\x6c\xcb\x0b\x82\x55\x44\x9c\xfc\x77\xe9\xb7\xa0\x17\x0f\x55\xbf\x05\xdd\xd5\xbf\x96\x7e\x0b\x92\x66\xb9\xf4\x5b\x90\x9c\x6e\x78\x39\x2a\x13\xa4\x7c\x8e\xcb\xd3\x6b\x20\xd1\x8b\x4b\xbf\x05\x49\xbf\x5a\xea\x2d\xe8\xc5\x22\xf5\x16\x74\x97\xf9\x5d\xea\x2d\x88\xf3\x21\xb0\xf4\xdb\xe5\xb0\x4c\x27\xe5\x5f\xda\x2c\x48\x2a\xd0\xd2\x66\x41\x37\xc7\x67\x29\xb3\xa0\x17\xdb\xc2\x98\x24\x48\xf6\x11\x2e\xfd\x16\x24\x03\x01\x4b\xbf\x05\x29\x9f\xa3\xb0\x2d\x36\x7a\xf1\xf1\xab\xde\x82\x6e\x2a\xd3\x72\x9e\x24\xd0\x5d\xf4\x78\x69\xbc\xa0\x9b\x2a\xb2\x34\x5e\xd0\x9d\x2b\x7f\x69\xbc\xa0\x17\x1f\x4c\x0a\x2f\xe8\x66\x19\x2d\x85\x77\x9d\xd0\x25\x5f\x8c\x4b\xe3\x05\xbd\x9c\x22\xaf\x94\x41\x87\x3e\x3d\x02\x4b\xe3\x05\xdd\x6c\xa7\xa5\xf1\x82\x64\xbf\xc4\xd2\x78\x41\x2f\x38\xf6\xd2\x78\x41\x72\x86\xe6\xa5\xf1\x82\xe4\xcc\xd1\xcb\x00\xe7\x32\xc0\xe9\x35\xa0\x04\x2f\x03\x9c\x67\x5b\x36\xd8\xb0\xc1\xdc\xa3\x0d\x36\xbc\x9e\xac\xb7\x0d\x36\xbc\x9e\xdc\xa3\x0d\x36\x58\xa0\xc7\x97\xa6\x12\xbc\x4c\x70\xb5\xc3\x79\x69\xc1\xa0\x9b\x21\xb6\x0c\x8d\x82\x5e\xbc\x9d\x15\x63\xd0\x8b\x37\xbd\x62\x0c\x92\x5d\x1c\x4b\x31\x06\x49\x0b\x5e\x8a\x31\x48\x4e\x43\xbd\x14\x63\x10\x67\x4d\xa8\x65\x04\x15\xf4\x72\x7e\x69\x8b\x4d\x6f\x37\x6a\x69\x80\x73\x9d\x69\x6e\x7d\x7d\x18\xe1\x04\x51\xcf\xb7\x93\x36\x0b\x92\x5d\xfe\x4b\x99\x05\xe3\x7c\x00\x29\xb3\x60\x9c\x37\xae\xe6\x0a\x92\xeb\x56\x2c\xcd\x15\x24\xd7\xde\x58\x5a\x2a\xd8\x87\x61\x99\x0d\xb4\x91\x86\x5f\x75\x5a\x2a\x18\xe7\x25\xa9\xa5\x82\x71\xde\xfb\x46\x37\x41\x72\x1c\xc3\xd2\x52\xc1\x19\x58\xbc\xb4\x54\x90\x1c\xb1\xb1\xb4\x54\x10\xcd\xb9\x00\x97\x9a\x0a\x8e\xc5\x2f\x35\x15\x8c\xf3\x0d\xa1\xa6\x82\xe4\x1a\xfb\x4b\x4d\x05\x27\x56\xb9\x4c\xed\x04\x27\x79\x78\x69\xae\x20\x0d\xcf\x92\xe6\x0a\xc6\x79\x03\xa9\xa9\xe0\xdf\xc7\xac\x4e\x0a\x92\x59\x0d\x4b\xe9\x04\xc9\x64\xf8\xa5\x74\x82\x64\x52\xc9\x52\x3a\x41\x3a\x8f\x31\x23\xa1\xe0\x64\xbd\x2f\x3d\x14\xfc\xfb\x00\xd2\x43\xc1\xc9\x57\x58\x7a\x28\x48\xae\x36\xb2\xd4\x50\x90\xc6\xef\x0f\x93\x84\x2e\x2d\x15\x8c\x9f\x8f\x21\x8d\x14\xfc\xfb\xdc\xd6\x48\xc1\xbf\x47\x8e\x46\x0a\x92\x0b\xa7\x2c\x8d\x14\x24\x87\x57\x2c\x8d\x14\xfc\xbb\xc0\x35\x52\x30\x4c\xe0\x5b\x1a\x29\x18\x3f\xcf\x83\x46\x0a\x86\xf3\x4a\x2d\x8d\x14\x8c\x9f\x4f\x0e\xc3\xa9\x20\x39\x7e\x65\x29\xa9\x20\xb9\x14\xf5\x52\x52\x41\x72\x18\xc5\x52\x52\xc1\xc9\x54\x5d\x4a\xea\x5a\x5e\x32\x6e\xcb\x4b\x66\x79\xfb\x78\x5c\x36\xce\xa2\x71\x7c\x70\x28\xa4\xe0\x0c\x65\x58\x0a\x29\x48\xc3\x8f\x72\x85\x14\x9c\x51\xde\x4b\x21\x05\xe3\xe7\xc3\xdd\x98\x2b\x48\xae\x21\xbc\x74\x54\x30\xcc\x56\x5a\x86\x61\x41\x1a\x5e\x91\x3a\x2a\x48\x0e\xf8\x59\x3a\x2a\x38\xb3\x3a\x2c\x1d\x15\x24\x47\x0a\x2d\x15\x15\xa4\x71\x36\x6f\x4b\x10\x98\x35\x2f\x69\xa9\xa8\xe0\x84\x6f\x97\x8a\x0a\x92\xc3\x5a\x96\x8a\x0a\x7a\xb1\x48\x45\x05\xa7\x7b\x79\xa9\xa8\x20\x39\x80\x6b\xa9\xa8\x60\xfc\x7c\x36\xaa\xa8\x20\x75\x5d\xc4\x01\xa3\xe0\xe4\xaf\x2e\xad\x15\x24\x87\xef\x2c\xd3\x5c\xc1\x19\xa5\xbb\x8c\x0e\x83\xe4\xc8\xaf\xa5\xdb\x82\xe4\x88\xae\x65\x74\x18\x24\x17\xf3\x5e\x06\x87\x41\x72\x7d\xec\x65\x8e\xeb\x72\x92\x24\x9f\x95\xc6\x8b\xc1\x79\x7c\xbe\x7a\x32\x38\x23\x72\x5e\xa5\xf8\xfd\x9d\x99\xfd\x7f\x94\x65\xcb\x88\x64\x37\x8b\x8a\x45\x4a\x12\xb7\xcc\xab\x15\x83\xe4\xd2\xda\xaf\x1e\xfb\xba\x94\xa6\x37\xee\xab\x7c\xbe\xbf\xd3\x29\xc9\xe6\x8c\xa3\x82\x38\x77\xcd\xab\x32\x82\x38\x37\xfd\xab\x33\x82\xec\xd4\x30\xaf\xce\x08\x92\x43\xe8\x5e\x9d\x11\x64\x03\x08\xaf\xa1\x54\x30\x1c\x7f\xf1\xaa\x91\xaf\xab\x9f\x34\x37\xef\xa1\x05\x49\x8f\x5c\xea\xaf\xce\x08\xb2\x5d\xf2\xaf\x59\xab\x20\x1b\x71\x79\xd5\x48\x30\x5a\xf7\x87\x36\x5a\x62\x6e\x31\x3e\xb9\x5e\xcd\x12\x64\xfb\xcc\x5f\xc5\x12\x64\x23\x22\xaf\x62\x09\xb2\x73\x01\xbd\x7a\x25\x18\xad\xbb\x2d\x5b\x27\x31\xa3\x16\xe1\xe2\x57\xaf\x04\x71\xee\xd4\x57\xb1\x04\xd1\xe3\x6c\xcd\xe6\x61\x8d\x14\xc7\x5d\xbc\x9a\xe5\x6b\x5c\xb6\x5a\x64\xf3\x24\x9a\x87\xf0\xc4\xab\x59\x82\x61\x06\xce\xab\x59\xbe\x27\x7a\xcb\x61\x68\x96\xaf\xd1\x5b\xfa\x46\x5e\xcd\x12\x8c\x46\x30\xfd\xd5\x2c\x41\xb6\x9f\xfe\xd5\x2c\xc1\x70\x4c\xd2\xab\x59\x82\xec\xec\x49\xaf\x66\xf9\x66\xa6\xd8\xc2\x78\x5f\x9d\x11\x64\x83\x4f\xaf\xce\xf8\x9a\x30\xdb\xdd\xbc\x4d\x61\xc2\x6c\xf5\xbf\x6c\x09\x13\x66\xad\xb6\xce\xf8\x66\x12\x8f\x3c\x21\x86\x69\x5f\xb3\x63\x89\xe6\xbe\x4a\xe1\x6b\x76\xac\x67\x52\x29\x04\xc3\xb1\x46\xaf\x52\x08\x86\x93\xe4\xbc\xc6\x5d\x41\x76\x12\x95\xd7\x21\x95\x20\x3b\x51\xd2\x6b\xc2\x2c\x18\xc6\xac\x5f\xa3\xb3\x6f\xe1\x12\xf0\xa2\x33\x3a\x0b\x86\x83\x80\x5e\x83\xb3\x20\xa7\x53\x64\x1d\x8b\x75\xa4\x09\x0d\xce\x82\x9c\xce\xa1\x5a\xc7\x62\x1d\xff\xa0\xca\xaf\xe1\x5c\x10\x67\x96\xfb\xd7\x78\x2e\x88\x66\xcc\xfc\x35\x57\x16\x0c\xb3\x2d\x5f\x63\xbc\x60\x38\x24\xf7\x75\x5c\x25\x18\x8d\xd8\xc2\x6b\xd8\x17\x64\x83\x4e\xaf\x61\x5f\x30\x1a\x7d\xc2\xaf\xa9\xb3\x20\x1b\x15\x7a\xb5\x67\x90\xd3\x39\x08\x9b\x8a\xa8\xef\xe9\x2f\x7d\xd5\x67\x30\x1a\xf1\x92\x57\x7d\x06\x39\x9d\x2a\x79\x3d\x54\x1e\x1c\xcd\x1f\xda\x7c\x95\x4b\xa4\x7a\xf8\x36\x5f\xf5\xce\xb0\xc8\xf6\xa9\xdc\x19\x5e\x81\xfa\x34\x18\xcd\x33\xad\x4f\x83\xd1\x7c\xa0\xe9\xd3\x60\x98\x4f\xf0\xea\xd3\x20\x3b\xbf\xd3\x6b\x7a\x2d\x18\xad\xfb\x5f\xb6\x4e\xa3\x75\xba\xdb\xb2\x75\x9a\x37\x0b\xd7\x83\x8a\x0d\xb2\xc1\xb6\x57\xc5\x06\xc3\x4c\xa2\x57\xc5\x06\xd9\x09\xb1\x5e\xe3\xc5\x60\xb4\x53\x64\xb5\x9d\xd2\xc8\x96\x50\x9e\x41\x76\x2e\xa4\x57\x53\x06\xa3\xd1\xe3\xfc\x2a\xca\x20\xa7\x53\x64\x1d\xbb\x77\x3f\x07\xa1\x3a\x83\x33\x37\xd8\xab\x27\x83\x6d\xd8\xfe\x9b\x35\xea\x3e\x1d\xfd\x37\x6b\xd4\xa9\x11\x21\xa1\x57\x51\x06\xa3\x11\x75\x78\x55\x60\x10\x67\x19\xae\x57\xaf\x7c\xcd\x92\xf5\xcb\xfd\xd5\x22\xc1\x70\x60\xe4\xab\x45\x82\xec\xcc\x4d\xaf\xca\xf8\xba\xf0\x8a\x73\x65\xbf\x0a\x22\x98\x76\xd1\xbc\x0a\x22\x98\x76\x38\xbc\x0a\x22\x98\xce\x95\xfd\xea\x87\x20\x9f\x36\x53\x06\xc1\x54\x5c\x5f\x65\xf0\x65\x51\x4b\xe7\x93\x7f\xd5\xbc\xd7\x15\x2c\x6d\x0c\x2d\x0f\x4c\xbb\x5e\x5e\x2d\xef\x75\x05\x4b\x6f\x37\x43\xa2\x60\xda\x5d\xf2\x1a\x12\x05\xd1\xcd\x7d\x7b\x8d\x89\xbe\xe6\xce\x4e\x7f\x69\x33\x6e\xe4\x73\x57\x1a\x13\x05\xf9\x5c\x2b\x66\xd8\x82\x69\x1a\xd1\x6b\x98\x14\x4c\x67\xff\x7e\x1d\xb1\x08\xa6\x93\x8b\xbf\x8e\x58\x04\xd3\xde\x9e\xd7\x58\x2a\xc8\xe7\xa6\x34\x33\x17\x4c\x03\xb3\xaf\xde\x0a\xa6\x3d\x2f\xaf\xda\x0a\xf2\x79\x37\x99\x97\x0b\xa6\x5d\x04\xaf\x69\xb9\x20\x9f\x57\x8c\x6e\x0b\xf2\xb9\x91\x74\x5b\x90\xcf\x35\xa6\xc8\x82\xa9\x89\xbf\x8a\x2c\xc8\xe7\x06\x37\x02\x0b\xa6\x7d\x55\xaf\x6e\x0b\xa6\x29\xd6\xaf\x6a\x0b\xa6\xbd\x63\xaf\x6a\x0b\xa6\xfd\x14\xaf\x6a\x0b\xb2\x69\xf0\xaf\x6a\x0b\xa2\xb9\x4c\xc6\x6b\x50\x16\xe4\xf3\xb5\xa0\xee\x82\x69\x54\xe6\x55\x77\xdf\x13\x94\xb5\xe2\xfa\x2e\x98\xe6\x83\xbf\xea\x2e\xc8\xe7\x6b\x44\xdd\x05\xfb\xae\xf1\x38\xbc\x2c\xc8\xea\x3d\x8f\x23\x7d\x17\x4c\xf3\xc6\x5e\x7d\x17\x4c\xbb\xb4\x5e\x7d\x17\x4c\x3b\x5a\x5e\x7d\x17\x4c\x47\xc9\xbf\x46\x6a\xc1\x74\xcd\xb1\x57\x05\x06\xf9\x3c\x5f\x8d\xd4\x82\x69\x27\xda\xab\x15\x83\x7c\x1e\x04\x5a\x31\xc8\xe7\xf3\x4d\x2b\x06\xd3\xcc\xe5\x57\x2b\x06\xf9\x7c\x53\x68\xc5\x60\x3a\xb1\xfe\xab\x15\x83\x69\x52\xdd\xab\x15\x83\x69\xf7\xd5\xab\x15\xbf\x4e\xf1\xeb\x23\x57\x2b\x06\x25\x4e\xb5\x6d\xaf\x87\xf6\x8a\x3f\x04\x95\x5f\x63\xb7\xaf\x93\x10\x9d\xed\xda\x9c\x4c\x42\x64\xb7\xd8\xab\x28\x83\x69\xa7\xe1\xab\x28\x83\x7c\xde\x27\x8a\x32\x98\x66\x0c\xbe\x8a\xf2\x7b\x72\x8c\x2d\xb2\x39\x97\xcd\x49\xdb\x29\xca\xa0\xd4\xf3\x43\x9b\x73\x31\xde\xc7\x67\xa3\x56\x0c\xa6\x3d\x59\xaf\x56\x0c\xa2\xb9\x30\xed\xab\x16\xbf\x2e\x33\xf3\xf3\x63\x48\x2f\x06\xd1\xec\x99\x7e\x15\x63\x30\xed\x20\x7f\x8d\xde\x82\xe8\xdd\x5d\x28\xb8\xaf\x6b\xc8\xfc\xfc\x2e\xd7\x4a\xdf\xf7\x7c\x38\xf3\x5b\x85\x13\x4c\xc3\x1c\xaf\xc2\x09\x8a\xb3\x8b\xbc\x0a\x27\x98\xe6\x59\xbe\x0a\x27\x98\xc6\x9d\x5e\x85\x13\x14\x27\x39\x78\xb5\x4b\x30\x9d\xd7\xf1\xd5\x2e\x41\x71\x92\x8f\x57\x95\x04\xc5\x81\x3c\xaf\x2a\x09\xa6\x73\x78\xbf\xaa\x24\x98\x46\x3b\x5f\x55\x12\x9c\x29\xd7\x5e\xc7\x50\x82\xe9\x4c\xdf\xaf\x76\x09\xa6\xc1\xa3\x57\xbb\x7c\xcd\x3d\x76\x4c\xd4\xab\x5e\x82\xe9\x1c\xfe\xaf\x7a\xf9\x3a\x11\x91\xe1\xd4\x57\xbf\x04\xd3\x70\xe1\x6b\x3e\x32\x28\x0e\xe3\x7f\xcd\x47\x06\xc5\xa9\x52\x3e\x2d\xf4\x3b\xe9\xc8\x5c\x55\x9f\xe1\x5a\x50\x9c\xdc\xe2\xd3\x4c\x41\x71\x39\xda\x4f\x31\x05\x73\x9e\x1f\x16\x8b\x8a\xef\x74\x77\x50\x2d\xa3\xcd\xa6\x1b\x6b\x16\x35\x36\x56\x28\xea\x16\x31\x8f\xdc\xf4\x87\xc3\xa2\x61\x35\xfd\xe5\xb4\x8c\x46\xeb\xfe\xdb\x65\x11\x03\xd0\x78\xa2\x7c\x46\x6b\x3f\x97\x0b\xb5\x7b\xea\x33\x5c\xfb\x9d\x39\x86\xc2\xff\x5b\x96\x2d\xf7\x90\x29\x7b\x2d\xe3\x0a\x9a\x16\x7d\x16\xd1\x6a\xbc\x3c\x3f\x43\xb1\x60\x9a\x44\xff\x99\xb3\x0c\x8a\xc3\xfd\x3f\x73\x96\x41\x71\x7e\x82\x4f\xd7\x06\xc5\xf9\x40\x3e\x63\xb8\x20\x9a\xfd\xa8\x9f\x41\x5c\x10\xc3\xeb\xf1\x53\xc9\xc1\x74\xf4\xc0\xa7\x91\x7f\x41\xdd\xf9\x92\xf8\x74\x6d\x30\x0d\x7c\x7d\xc6\x67\xc1\xae\xa6\xff\x66\x9d\x48\x5b\xfe\x19\xfd\xfb\xb4\x6d\x50\x4c\x07\xff\xb4\x6d\xb0\xff\x8d\xe3\x50\xb7\x41\x71\x11\xd1\x4f\xdd\x06\xc5\x79\x6e\x3e\x75\x1b\xc4\xf8\x55\xff\xcd\xca\x27\x6f\x1f\x77\x60\xe5\xcf\xec\x42\xc5\xe3\xb0\xf2\x89\x6b\xa1\xbb\x4f\x2b\xba\x51\x1c\x6f\xf3\x29\xd7\xa0\x38\x67\xcc\xa7\x5b\x83\xe2\xc4\x22\x9f\x6e\x0d\x8a\xcb\x43\x7f\xba\x35\x98\xae\x23\xf0\xe9\xd6\x60\xba\x76\xc6\xa7\x5b\x83\xe2\xa4\x22\x9f\x6e\x0d\xa6\xf1\xf7\x4f\xb7\x06\xc5\xd9\x52\x3e\xdd\x1a\x14\x27\x4b\xf9\x74\x6b\x50\x9c\x79\xe4\xd3\xad\xc1\x6e\x1e\xea\xad\x5c\x7f\xae\x5f\x3a\xfd\x37\x9b\x27\x9b\xcf\xee\x7f\xd9\x3a\x4c\x43\xec\x6a\x03\x9f\x0a\x0e\x8a\x33\x25\x7d\x2a\x38\x98\x86\xe9\x3f\x15\x1c\xec\x73\x69\x95\x6c\xb1\xec\xd3\xc5\x7f\xb3\xc5\x98\x9a\xd8\xec\x87\xcf\xc0\xec\x97\xcf\x0c\xfe\xee\xc0\x26\xcb\x3e\x5d\x2c\xb2\xc9\x32\x53\x51\xf9\x4b\xbd\x1c\x4c\xe3\xb7\x9f\x5e\x0e\xf6\x19\xe7\x30\x14\x73\x30\x8d\x28\x7f\x8a\xf9\xe7\x7a\xa8\x8e\x1b\xfa\xf4\x64\x30\x1d\x5a\xfc\x29\xc2\x20\x7e\xf5\x2f\x13\x93\x7c\x7a\xf2\x57\xcf\x13\x8f\x03\xd0\x93\x41\x71\xfd\xf5\x4f\x4f\x06\xfb\xdf\x38\x00\x45\x19\xc4\xcf\x1c\xae\x4f\x53\x06\xc5\x69\xdc\x3e\x4d\xf9\x33\x41\xda\xd5\x16\x3f\x55\x19\x44\x75\xa0\xec\x67\xf4\xf9\x33\x6b\xda\x11\xd5\x9f\xfe\x0c\x8a\xb3\x00\x7e\xba\x32\xd8\x9b\xa3\xde\xca\x32\x28\x4e\x02\xf8\x29\xcb\xdf\x09\x35\x9f\x7a\x79\xe6\xaa\x93\x88\x35\x37\x67\x2b\x9e\xf9\x87\xce\x5e\x6d\x46\xe6\x1f\x72\x3e\xaf\x4f\x5f\x06\xc5\x69\xec\x3e\x7d\xf9\x33\x73\xda\x61\x12\x9f\xc2\x0c\xf6\xc1\xd1\x4c\x1a\x33\xd8\xcd\xe4\xff\xd9\x4c\x1b\xc5\x19\xf0\x3e\xfd\x18\x14\x97\xa9\xff\xf4\x63\xb0\x7f\xe9\xd6\xbc\x94\x9b\xf3\xce\xf9\x94\x33\xe2\x0c\x76\x99\x07\x6c\x93\x34\x27\x56\x6b\x1e\xb1\x6d\xd2\x9c\xb3\x8f\x0e\x98\xcf\x38\x34\x28\xa6\xe6\x7d\xaa\x34\x28\xce\x04\xf7\xa9\xd2\xe0\x8c\xfe\xf8\x8c\x43\x83\xe2\xb4\x6a\x9f\x2a\x0d\xf6\xf6\xf9\xa5\x2e\x0d\xa6\x09\x19\x9f\x2e\xfd\xf5\x73\x31\x5b\x66\xed\x1d\x09\xeb\x5a\x9e\x9f\x32\x0d\x76\xb5\xa8\x82\x36\x0d\x8a\xb3\x18\x7e\xda\x34\xd8\xb2\x4b\x8b\x18\x77\x06\xc5\x99\x22\x3f\xe3\xce\x20\x7e\x66\xf1\x7d\x5a\x37\x28\xae\xef\xff\x19\x78\x06\xbb\xdd\xac\x83\x0d\xd2\x9d\xc4\xb0\x78\xc0\xb6\x48\xf7\x56\xc3\x29\x3e\x63\xcf\xa0\x9e\x27\x8f\xb1\xe7\xef\xc4\x9e\xad\x97\xb1\x67\xb0\xeb\x4a\x6b\x1a\x69\x06\xa5\xf0\x8d\xf7\x19\x69\x06\xfb\xdf\x68\x61\xbb\x04\x40\x71\xc2\xc2\xcf\x50\x33\xd8\x07\x47\xf5\xed\x25\x00\xc5\xb9\xb7\x3e\x7b\x09\xc0\xfe\x37\x5a\xce\x60\xf3\xe7\xf4\x49\xae\x18\xf3\xd9\x75\x00\x76\xbd\xa8\xab\xe1\x66\xb0\x7f\xeb\xff\xd9\x4e\xc3\x76\x2a\x56\xc2\x76\xda\x28\xce\x6c\xf9\xd9\x79\x00\xf6\xe6\xa8\x98\xbd\x07\x60\xff\x94\x76\xb2\xfb\x00\xec\x66\xa7\x16\x06\x93\xc1\x2e\xe3\x50\x8c\x26\x83\xbd\x3d\x7f\x6b\xa3\xcc\x73\xed\xf8\x5b\x5b\x65\xa3\x38\x3f\xe7\x67\x47\xc0\xe7\xec\x45\xce\xc3\xfa\xd9\x13\xf0\xcd\x73\xf7\xd3\xa0\x76\x05\x80\x38\x4b\x47\x7e\xf6\x05\x80\xe2\x52\xc7\x9f\x7d\x01\xa0\x18\x52\xfa\xec\x0b\x00\x11\xe1\x9d\x6e\x67\x00\x88\x08\x4f\xb6\xbd\x01\xa0\x0c\xa2\x95\x9f\xbd\x01\x9f\xb3\x17\x85\x97\x9d\xdd\x01\xa0\xb8\x96\xf2\x67\x77\x00\x28\x23\xbb\x31\xcf\xb5\x73\x17\x85\x8f\x21\x67\x18\x06\x11\x76\x02\x7e\x76\x1b\x80\x7d\x70\x1e\xb0\x27\xfb\x0c\xf0\xf5\xc1\x61\x50\x1c\xec\x32\x7f\x6b\xd3\x39\xe8\x37\xbc\x8a\xed\x60\x00\xfb\xff\x38\xdb\xf6\x30\x80\x88\xf0\xf3\xd3\x2e\x06\xb0\xcb\xd8\xaf\x7d\x0c\xa0\x18\x46\xfe\xec\x63\x00\xfb\xdf\x2c\xb3\xed\x36\xca\xa0\x33\xfd\xb3\x93\x01\x14\x57\x4c\xff\xec\x64\x00\x51\x4d\x16\xfb\xec\x64\x00\xc5\xa5\xd6\x3f\x7b\x14\xc0\x3e\x5e\x4e\xab\x3d\x0a\xa0\xb8\xda\xfa\x67\x8f\x02\xd8\xff\xe6\x4f\x6d\xa6\xfb\x74\xa7\x59\x66\x33\xdd\x36\x93\xcf\x3a\xfb\x14\xc0\x3e\x15\x1e\x9d\xcd\x44\xfa\xf7\xf8\xf9\xcc\xb5\x57\x01\xec\x7d\xd0\x9c\x76\x2b\x80\xe2\xb4\xab\x9f\xdd\x0a\xa0\x8c\xfc\x87\x8e\xf0\xcf\x5e\x07\x70\x66\xef\xfd\xec\x75\x00\x65\xf8\xf1\x6f\xaf\x03\xd8\x87\xc9\x19\xb1\x8f\x01\xec\x7b\xd2\x43\xf2\x62\xfb\x37\x0a\x99\xf6\xb7\x97\xe1\x3b\xa3\x90\x7d\xad\xda\xcd\x00\x76\x75\xfc\x3f\x9b\xf1\xb1\x19\xbd\x89\xec\x68\x00\x7b\x7b\x96\xd9\x8c\x8f\xb3\xb5\x9d\xed\xd9\x8c\x8f\xcd\xe8\x93\xda\xce\x04\xb0\xb7\x67\x99\xcd\xf8\x9c\x66\xa4\x6e\xf6\x0a\x80\x38\x2b\xe5\x7e\x76\x0b\x80\xbd\x0f\xff\xcf\x8b\x66\xa3\x9e\x8f\x63\x3b\x01\x40\x3d\x1f\xc7\x76\x02\x80\xa8\x4e\x14\xfa\xd9\x09\x00\x76\x19\x2d\x65\x27\x00\xa8\xc7\x24\xed\x03\x00\x7b\xa7\xfe\xd4\x8a\x2d\xc7\xce\x7b\x6b\x19\x31\x07\xbb\xcc\x23\xb1\x62\xaf\xef\x11\x8a\x8c\x8f\x83\x7a\x9c\xc2\xee\x03\xb0\x7f\xc9\x69\x34\x40\x0e\xf6\x5e\x39\x38\x23\xe4\xa0\xaa\xfc\x9f\xe1\x70\xb0\xff\x8d\xab\xcd\x34\x6e\xb0\xcb\xdc\x85\x4d\xf2\x3a\x2f\x9a\x2d\x6c\x90\x1c\xd4\xe3\x6c\x76\x50\x80\x7a\x0c\xd6\x0e\x0a\x50\xcf\x77\xbf\x1d\x14\x60\xef\xc0\x32\x6b\xff\x32\x73\x80\x5e\xf1\x9e\xca\x7f\xfc\x92\x1a\x18\x12\x07\xf5\xbc\xce\xec\xb4\x00\xf5\x58\xa8\x9d\x16\x60\x1f\x2c\x1b\xb3\xd7\x02\xec\x7d\x52\x79\xfb\x28\x40\xfc\xfb\x38\xb0\x93\x02\x44\x3a\x4d\x6e\x2f\x05\x88\xb3\xf4\xec\x67\x9f\x04\xa8\xd9\xe7\xa0\x5d\x12\x20\xd2\x11\x45\xfb\x24\xc0\x2e\xf3\xf0\xac\xea\x46\xcd\xbe\x7d\xec\x80\x00\xfb\xdf\xea\xff\xf9\x7f\xfd\x47\x0f\x84\xd8\x65\x8d\xb2\xb0\x2c\x2c\x0b\xca\xb2\x65\x4c\xb4\xc1\x18\xc9\xfe\xa3\xc3\x41\xec\x9b\x64\x50\x56\x2d\xab\xfe\x36\x51\xd6\x2c\x6b\x1c\x4a\xa1\xa8\x5b\x74\x26\x59\xf3\xa7\xd3\xb2\xc9\xbf\xb9\xd7\xcb\xa2\xcb\x76\xb2\xec\xb6\x8c\x89\xe2\xaa\x3b\x78\x2c\x3a\x93\xe2\x4d\xca\x5e\xcb\x5e\x0f\xc4\xbd\x7e\x96\x39\x4b\x44\xdf\x45\x61\x5d\x37\x2a\x4b\x4a\xf6\x5f\x58\x2d\xa6\x2b\x4e\x74\x26\xf4\x5f\x58\xad\x70\x82\x31\x76\x10\xd6\x2a\x1c\x6e\xd5\x38\xb6\xb0\x5a\xe1\xa4\x63\xcd\x3d\x0c\xcb\xf6\x7d\xce\xc4\xd5\xfd\x17\xd6\x34\x9c\x5f\xad\x52\xfb\xb0\xaa\xe1\xfc\x6a\xfe\xd2\x9a\x6e\x54\xe6\x10\xef\xbf\xb0\xa6\xe1\xc8\xef\xe6\x81\x2c\xcb\x9c\x5f\xcd\x8d\x59\x79\x3a\x1d\x2a\x53\x43\xf7\x5f\x58\xf9\x8d\xca\x34\xb7\xfd\x97\x3c\xf9\xc9\x29\x32\x1a\xc7\x96\x6c\x90\xe4\x40\xbc\x46\xed\x93\x2d\x92\x1c\x96\xe8\x89\x4e\x56\x9f\xbe\x83\xc4\xf3\xab\xff\x92\xd5\x4f\x56\xbf\x72\x74\xc9\xea\x27\xaa\x1f\x34\x70\xb2\xfa\xc9\xea\x37\xcb\xac\x7e\x72\x1a\xb6\xe1\x6e\xad\x7f\x72\x1a\xb6\xc6\xa9\x4e\x36\x00\x13\x18\x8f\xdf\x29\xb3\x66\xe9\xcc\xc3\x46\x43\x65\xab\xb6\x51\x9b\x27\x27\x5b\xb3\xec\x34\x6c\x9d\x26\xa6\xbf\x40\xd4\xe6\xd6\xb2\x57\x7a\x76\x66\xb6\xc1\xd1\x65\x1b\x80\x0e\x03\x57\xf3\xeb\xbf\xec\x25\x41\x9e\xb7\xab\xf2\xf5\x5f\xb6\x01\x18\x4b\xed\x0a\x9f\xfd\x97\x6d\x80\xec\xa4\x73\x9d\x46\xc9\xb6\x40\x76\x06\xb7\xe1\x7e\x6d\x81\x7c\x5a\xc0\x43\xb6\x05\xc8\xec\x76\x3d\xc8\xfe\xcb\xb6\x00\xd3\x1f\xbb\x6c\x64\xff\x65\xcf\xf7\x46\x6d\x9e\xc7\x6c\xa3\x64\x1b\x65\xfc\xf7\x60\xe9\xfe\x2b\xb6\x59\x71\xee\xba\x41\x3b\x16\x1b\xad\xd8\x68\x83\x46\x2b\x36\x9a\x83\xaa\xbb\x57\x57\xb1\xd5\xe8\x31\xc8\x3f\xcf\x73\xb1\x85\x98\x0a\x39\x93\xd1\xd7\x7f\xc5\xd6\x60\x5c\x75\xfe\x79\x27\x15\x6b\xce\x52\xb5\xf9\xe7\x15\x5c\xac\x79\xa1\x9f\x9b\xfe\xe5\xfe\x2b\xd6\x7c\xa3\x76\x9f\x23\xd5\x43\xa6\x3b\x61\xfc\x9a\x65\x1e\x72\x75\xd6\x26\xda\xa7\x7a\xc4\x74\x27\xe4\x98\x1c\x5d\xf5\x9c\x56\x3b\x81\x1a\x6d\x5b\x3d\x62\xfa\x04\x72\x4c\xce\x69\xf5\x88\x37\x2a\x1f\xde\xfd\x57\x3d\xe0\x7a\xe6\x3c\xa1\x51\xaa\x07\x4c\xfe\x79\xce\x3e\x20\xab\x07\x4c\xa7\x40\x29\x56\xac\x7a\xb7\xd2\x29\x90\x99\xbe\xb1\xff\xaa\xa7\x6f\xa3\x92\xf9\xdf\x7f\xd5\xd3\x57\x3f\x27\xaf\xe3\xa7\xcd\xca\x32\x9c\x3a\x17\x9f\x90\xcd\xca\xd2\x2b\x90\x49\xa7\xed\xbf\x66\x6d\xe9\x15\xc8\xe7\x91\xd3\x3c\x3f\x1b\x75\xfa\x9c\x6b\x36\xc0\x46\xa5\x73\xbb\xff\x9a\xf5\x67\x9e\xaa\x5c\x6d\xa7\xe6\x8d\xce\x44\xc5\xb9\x7a\x77\x35\xaf\xf3\x33\x79\x95\x6f\x92\x66\x3b\x31\x1a\x3b\x33\x56\xb3\xff\x9a\xd7\x39\x3d\x05\x2e\xfd\xd2\x7f\xcd\x86\x62\x25\xde\x42\x5d\x9b\xcd\x44\x3f\x41\x6f\xa7\x0e\xd6\xbf\xb9\xe8\x8a\xcf\x88\x6e\xfd\x19\x69\x4d\xfe\x6c\xff\x75\xab\xcf\x48\xeb\xf0\x92\xe8\x56\xab\x33\x6c\xd8\x5d\x76\xab\xc5\x18\xea\xc2\x7c\x46\xfd\xd7\xad\x96\x63\xa8\xcf\x2f\xad\x41\x77\xb4\x2c\x67\xb5\x5b\x01\xc7\x50\x33\x37\x48\xff\x75\xcf\x7e\x67\xb8\x6c\xf1\x30\xac\x81\x03\xa6\xab\xdb\xf7\x9c\x22\xf1\x6d\x7a\x3b\x77\x2b\xd5\x4f\xa5\xd8\xda\xb0\x06\x1a\xfb\x79\x2a\x0d\x4f\x20\x13\x5d\x35\x2f\xaf\xe1\xf9\x1b\x8c\xbb\xb4\x89\x86\x15\x65\x7c\x34\xb1\xf9\xfe\x1b\x56\x74\x30\x23\x60\x61\x9f\xc3\x7a\x0e\x06\x56\x16\x2e\xdf\x61\xa5\x70\x73\x67\xf6\xeb\xbf\x61\xa5\x74\x73\xdf\x79\xc3\x13\x35\x1c\x51\xe1\xad\x3f\xac\x15\xb3\x18\xb7\xf3\x4b\x2b\x35\xac\x94\x2f\xdf\x69\xa5\x26\xa3\x21\x0b\xed\x31\xad\xd3\x74\x58\x2d\xe7\x7d\x5a\x27\x47\x3a\x7b\x29\x4c\xeb\x34\xa9\x93\x27\x6f\x5a\x27\x14\x9c\x9c\xb9\xfe\x9b\xd6\x69\x5a\x27\xae\x8d\xe9\xb9\xdb\x68\xcd\x93\x32\xad\x26\x23\x9d\x9b\x1f\x00\xd3\x5a\x32\xd2\xb9\x79\x53\x4d\x0f\x7f\x32\x20\xcc\x97\xec\xe5\x75\x76\xf1\x50\x49\x1e\xd8\x65\x8d\x2e\x06\xd1\x79\x27\x5f\x1e\x3e\xaa\x5d\xba\x9f\x4e\x97\xc7\x4f\xc2\x38\x4b\xf9\xf4\xdf\xe5\xf1\x9b\x2f\x5e\x3d\x03\x97\x15\x60\x46\xac\xda\x6c\xb3\xcb\x7b\xea\x72\x1e\x0e\xdf\x09\x97\x55\x60\x71\xdb\xf3\x00\xbd\x3c\x2b\x97\x83\xa3\x3c\x10\xaf\x3e\x14\x9a\x5c\x8e\xfe\xbb\x7c\xca\x60\xd0\xd3\x87\xd6\xe5\xa9\x43\xa0\xa7\xf7\xc0\x65\xdd\xf1\xe7\xe9\x93\xf2\xb6\xee\xb7\x83\xe1\x38\xe7\xb7\x55\xbf\xad\x3a\x75\xba\xad\x3a\xe3\xa1\x19\x57\xd3\x7f\xb7\x35\xdf\x5a\xdc\xcf\x73\xfd\xb6\x46\x37\x63\x9c\x82\x83\xb8\x3d\x4d\x58\x31\xcb\xd5\xf4\xdf\x6d\x1d\x1d\xfc\xdc\xad\xe4\xed\x79\xc2\x8a\x49\xd8\xef\xbf\xdb\x7a\x1b\x67\x3f\xcf\xcd\xdb\x8a\x23\xc5\x9d\xf9\xbc\xfa\xef\xb6\xe6\x67\xc1\x5b\xbf\x4b\x6e\xab\xbe\xd1\x7f\x7e\xfa\x3c\xd6\xf3\xf1\x1c\x27\x2a\xfa\x58\x05\x07\x32\x27\x9f\x74\x8f\x67\xef\x61\x9c\x80\x5f\x43\x8f\x75\x78\x18\x59\xe1\x23\xe1\xf1\x78\x1f\x86\x51\xd8\xdc\x8f\xc7\xcb\x1c\x58\xc5\xe7\xcb\xe3\xe1\x3e\xf6\x11\xfb\x7e\x7d\x3c\xdc\x87\x71\x14\x7e\x80\x3c\x1e\xed\xc3\xc0\x93\xf6\xdf\x4b\x78\xf4\xdf\xe3\x79\xdc\x48\x4c\x3f\xd0\x7f\xcb\xfa\x31\x4b\x70\xe9\xde\xa9\xcb\x13\xb9\x18\x66\xe1\x97\xf3\xf2\xae\x5c\x0c\xb3\xf0\x43\x74\x79\x6e\x17\xe3\x52\x7c\xc9\x2c\x1b\x86\xc9\xb4\xce\x97\xee\xb2\x5d\x96\x63\x2a\xfc\x32\x59\x9e\xef\x45\x5b\xf9\xfc\x5c\xb6\xd5\xb2\xad\xa8\xf1\xf2\x7c\x93\xff\x9d\xbd\x45\x96\xcd\xb7\x18\xb6\xe3\xb3\x7e\xd9\x56\x8b\x31\x3a\x9e\xed\x65\x53\x2d\x9a\xca\x93\xbd\x6c\xaa\x45\x53\xf9\xbd\xb9\x6c\x8b\x65\x77\x9a\x4f\xad\xd7\xc6\x78\x19\x72\xe2\xe7\xd1\x6b\x5b\xbc\xb4\x85\x5f\xb4\xaf\x6d\xe1\xa4\x5b\xbe\x22\x5f\x2b\xfe\x3a\xbe\x84\x4a\xbe\x6e\xff\x75\x48\x02\x3f\xfc\xdc\xbc\x29\xd4\x1e\xeb\xe7\xe6\x1d\xe5\xfb\xf3\x49\xf3\xd9\xb0\xcc\x8a\xf5\xb3\xf9\x3f\xb7\x6f\xc2\xf4\xf9\x2f\x1b\x96\x61\xbe\x23\xf9\x79\xf7\xf9\xb8\x30\x63\xda\xe3\xff\x6c\xeb\xcf\x5c\x7b\x0e\xf6\xb3\xad\x59\x69\xf6\x67\x63\x7c\xb6\xb5\x49\xd4\x36\xff\x67\x5b\x7f\x8c\x53\xf0\xad\xf1\x79\xa9\x7e\xa4\xb7\x4d\x37\x6f\xf3\x93\x44\xfd\xf3\xea\xfd\x6c\xfe\x8d\x34\xbc\xec\x3f\x9b\x9f\xd5\x76\x6a\xf3\x39\xf0\xd9\x3e\x1f\xf9\xf7\xbc\x0a\x43\xc7\x0c\x73\xad\xb9\xc8\x82\x88\xb6\x38\x5f\xf1\xa1\x4d\x02\x43\x96\x3d\x94\xc9\x38\x83\x8d\x91\x82\x50\x26\x81\xfd\x5b\x3d\x14\xc7\xf8\x39\xfa\xc6\x5d\xde\x16\x31\x7c\xa0\xb9\xb1\xc7\x22\xaa\xc4\x1b\x34\x08\x41\x0b\x53\x77\x7a\xa8\x8d\x60\xfc\xb8\xdf\x23\x3c\xfc\xf0\xf0\x2d\xca\x16\x79\x2a\x3b\x45\xdd\x22\x4f\x88\x45\x1e\x57\x90\x92\xca\x99\x0c\x95\x0e\x8c\xce\xcb\x2c\x54\x3a\x90\x59\x5f\xb5\x87\x46\x07\xa2\xb6\xe1\xc6\x3c\xb0\x20\xcf\x72\xd0\x88\x1a\x5d\x98\xb3\x3d\xf9\x2f\x8d\x0e\x8c\xf3\x43\x85\x2e\xcc\xd9\x46\x5d\x22\xd9\xfa\xe6\x6c\xf3\xa5\x16\xc9\x1a\x25\x72\x10\xf9\xf0\x8d\x64\xeb\xbb\x64\xec\x2c\x14\xd9\xf8\x26\x68\x77\x8b\x86\x45\x64\x08\x22\xf2\xa1\xdf\x81\xfd\x1c\x75\x63\x56\x3c\xf9\x3d\x7f\x76\x60\xcd\xcf\x62\x34\x7c\x13\x44\xb2\x9a\x26\x5a\x4f\x4e\x9c\x7a\x07\x46\x1b\x34\x90\x76\x07\x32\xcb\x91\xf6\xd0\xee\xc2\x44\xeb\xc9\xb6\x94\x3b\x30\x58\xd8\xa8\x87\x72\x17\xf9\x8c\xab\xe7\x04\x28\x77\x20\x2a\xd3\x58\xf6\x50\xee\x40\x94\x38\x3b\xb5\xf2\xd9\xca\xd3\xb6\x3a\x1b\x18\xbe\xc6\x43\x65\x03\xfb\xce\xf7\xd8\xac\x14\x63\x6b\x4d\x70\xe9\xa1\x6c\x81\xe8\xa4\x97\xf5\x50\xb6\xc0\xf4\xd3\x35\x74\x2d\x30\xb5\x8a\x50\xb5\xc0\x64\xf2\xda\x1e\xc5\x2a\xb0\x6e\xac\x3d\x2c\xa1\x7c\x85\x6b\xd3\x4c\x4f\x5f\xb1\x06\x85\x5c\x38\xcf\x55\xf1\xb2\x2d\x66\x48\xfa\x5f\x9e\xbe\xc2\xd2\x96\x3c\x0e\x42\x43\x03\xe1\x80\xf8\x1e\x1a\x1a\x98\xd9\xfb\x49\x41\x03\xf9\x5c\x57\xc5\x4b\x99\x89\x86\xb3\x8f\x83\x62\x6b\x90\x70\xdd\x6c\xee\xe2\x29\x3e\x19\xd5\x36\xa4\x6a\x07\xa6\xfd\x3c\xa1\xd9\x81\x18\x4c\x2e\xda\x43\xb5\x03\xd3\xd7\x49\x54\x1b\xa8\xd2\x40\xde\xb0\xca\x1e\x98\x3e\xc8\xa3\xda\x18\xa4\x4f\x9f\x2b\x41\xd5\x03\x53\xad\x8b\x6a\x63\x54\x1a\xc3\x1b\x4a\xfb\x03\x33\xd7\xff\xee\x27\xef\xa1\x07\x82\x7c\xae\x4d\x35\x10\x4c\x25\x22\xb4\xc0\x70\x61\x59\x6f\x67\x2d\x10\x4c\xbb\xc4\x42\x09\x04\xd3\x77\x7d\xe8\x80\x60\x66\xaf\x38\x15\x10\x4c\x56\x8e\xe8\xa1\x01\x82\xe9\x67\x4b\x68\x80\x20\x9f\x3b\x4b\x03\x04\xf9\xdc\x33\x0a\x20\xc8\xe7\x39\xa0\xff\x81\x7c\xee\x52\xf5\x2f\x5c\x55\xd6\x33\xa8\xfd\x81\x7c\x1e\x59\xcd\xb6\x63\x55\x59\x66\x73\xef\xa1\x0f\x82\xa8\xd5\x87\xa9\x46\x08\xf2\x79\x1a\x35\x5b\xc7\x84\x6b\xfa\x1c\x42\x1f\x04\x93\x49\x5f\x7b\xe8\x83\x20\x2a\x63\xee\x7a\x74\xdb\xa2\xdb\x16\xb4\x7e\xb7\x2d\x58\x30\x76\x30\x75\x66\x0f\x25\x11\x44\xad\xb6\xbf\x92\x08\xa2\x65\xbe\xd8\xa2\x5b\x77\xc2\xc4\xa5\xf9\xc0\xd6\x1c\xc1\x64\xf1\x8a\x1e\x5a\x22\x88\xd1\x93\x3f\xb5\xaa\xc6\x84\x95\x8d\x50\x1d\x41\x94\xec\x49\xe8\x5e\x1c\x1b\x85\x55\x9a\x7a\xa8\x93\x60\x7f\xcf\xf1\xd3\x61\xfd\x87\xd3\xab\x21\xc4\xa1\x4e\x82\x5d\xc6\x09\x54\x27\xc3\x00\x30\x43\xdb\x7a\x28\x8f\xa0\x84\x77\x92\xf2\x18\x06\x80\x19\x8f\xd6\x43\x7b\x04\xbb\x8c\x6b\x6b\xd8\x00\xe3\x4c\x37\x47\x43\x0d\x1b\x60\x30\x62\x89\x70\x5a\x0f\x35\x33\x0c\x01\x93\xc4\xde\x43\xcd\x04\x85\x35\xa9\x7a\x0c\x1b\x80\x68\xaf\xcb\x2f\xf5\x50\x33\x41\xd4\xe6\x03\x5e\xcf\x04\xfb\x50\x38\xe4\x69\x0b\x18\xee\xf5\x63\x3f\x14\x4d\x50\xc2\x27\x9a\x56\x09\x0a\x4b\x23\xf5\x50\x21\xe3\x8c\x09\xf6\x12\x9e\x56\x6c\x5a\x31\xe4\x27\xf4\x4a\x10\xc3\x6f\xdf\x50\x2c\x41\x61\x85\xa7\x1e\x8a\x25\x88\x5f\xf5\xa1\x36\x3d\xdb\xf3\x64\x00\x78\xc0\x56\x76\x1a\xda\xf6\x11\x39\x3d\xdb\xd3\xd0\xb6\x57\xc0\xb4\x01\xa6\x29\x00\xe7\xf0\x6c\x80\x49\x52\x84\x67\x5b\x53\x05\xfb\xa7\x6c\x4e\x53\x05\xfb\xa7\xec\xf6\xb2\x4d\x88\x14\x0f\x66\xab\xea\xa1\xbe\x82\x68\x3f\x3f\x4f\xd4\x57\xb0\x7f\x6b\x99\x97\xc5\x99\xd1\xd9\xf7\x81\xae\x0a\x76\x19\xd5\xbd\x6c\x29\x56\x9e\xad\x9e\x1e\xf5\x15\xec\xc3\xa3\x41\x2f\x5b\xea\xb2\xa5\x7c\x9c\x28\xb0\xa0\x54\x2f\x3c\x05\x16\x44\x65\x56\xdc\x1e\xea\x2a\xd8\x9b\xe3\xe8\xf4\x55\xb0\xcb\xd8\x9c\xc2\x0a\x4a\xf5\x72\xbf\x6d\x80\xdb\x1c\x00\x7a\x63\x42\x89\x05\xfb\x48\x38\x3a\x2d\x16\x84\xf3\x25\xf5\xb8\x6d\x80\xdb\x06\xf0\x39\xa6\xda\x82\x38\x1f\xdb\xa1\xdb\xc6\x89\xf8\x5a\x5b\xe5\x36\x8c\xf8\xfa\x00\xd7\x6d\x41\x38\x35\x4e\x0f\x45\x36\x4e\x74\xd7\x37\xb3\x22\x1b\x27\xba\x6b\x1b\x2b\xb2\xa0\x0c\x9f\xf4\xb7\x8d\x72\x82\xbb\x5e\x79\xca\x6d\x3c\x2e\xe9\xe6\x15\xf5\xd8\x02\xcf\x09\x78\xf3\xdb\xc7\x16\x78\x88\x6e\xfb\x72\xd6\x77\xc1\xfe\x37\xda\xf3\xf1\x5e\x79\x9c\xbd\xd6\x67\xfb\x63\x03\x9c\x60\xad\xa7\x51\x31\x06\x65\xf8\x45\xf0\x58\xff\xc7\x88\xb7\x07\x67\xfd\x4f\xa8\xd6\xeb\x53\x59\x8e\x13\xaa\xf5\x72\x57\x83\x41\x19\xbe\xff\xf5\xdc\x38\x11\x58\xef\x1e\x45\x17\x94\xe1\x3b\x5b\xcf\x0d\x57\x95\x0d\xdf\x7e\x8a\x2e\x28\xc3\x8f\x26\xad\x36\x8c\xd3\xc6\xfc\xef\xc1\xd8\x3d\xb4\x5e\x50\x86\x6f\x9c\x65\xe3\x2c\x1b\xc7\xab\x43\xeb\x05\x7b\xcb\x1e\x94\x2d\xb1\xbc\x12\xa8\xb5\xda\x1b\xe4\x72\x47\xf2\x13\x44\xef\x05\x65\xf8\x25\xa7\xf7\x82\x68\xd5\x47\xbf\x96\x0b\x6a\xf8\x72\x51\x72\xc3\x28\xae\x2f\x0d\x25\x17\x44\x9c\xc7\xa8\x96\x1b\x27\x8c\xeb\x9d\xa0\xe6\x82\xfd\x7f\x9c\xb9\xd7\xaa\xbe\x46\xac\xa9\xc2\x6b\x55\x37\xea\xf9\x8a\x7d\xbd\x0c\x5e\x16\x01\x4b\xd4\xea\xb5\xf2\xff\x82\xb8\xfe\xd2\xf3\xcb\x82\x3a\xb5\x78\x41\xbe\xd6\xd4\x90\xad\x0f\xe5\xd7\x9a\x6e\x54\x72\xb7\x7b\xbc\x5e\x05\x27\x62\x4b\x0d\xd4\x6d\xb0\x6b\x40\xb3\xe9\xdb\x60\xef\x94\x63\xfb\xac\xe9\xbf\x00\x2d\x9b\x53\xb8\x41\x3d\x8f\x6e\x85\x3b\x14\xee\x50\x4f\x15\x6e\x10\xce\x0a\xdf\x43\xbd\x06\x35\xfb\x22\x50\xaf\xc3\x85\x78\xc2\xf7\xb9\x32\x1d\x1f\x6b\x76\x9d\xad\x59\xad\x6f\xf9\x6f\x6e\xcd\x7a\x19\x9e\x6d\x1e\x88\xe7\xf4\x84\x67\x79\x82\x26\x43\xb1\xe9\x84\x62\x79\x96\x25\xdd\x19\x44\x62\x8a\xc5\x9e\x0c\xcf\x82\xfd\x7f\x95\xb2\x6a\x59\xf5\xff\x0a\x65\xcd\xb2\x46\x30\x32\x28\xea\x16\x19\xb4\xeb\xee\x62\x5a\xe6\x84\x84\x3f\x77\x71\x59\x76\xf9\x7f\xfe\xf6\xb1\xcc\x70\x24\x31\x84\xa4\x54\x83\xca\x42\xb5\x3d\x29\xd5\x20\x9c\xfa\xab\x27\x63\xb1\x20\x4c\xad\xe9\x49\xd3\x06\x95\xe8\x79\x4f\x9a\x76\x32\x18\xdb\xb9\xbd\x92\xc1\x58\x10\x4e\x1b\xd6\x93\xd1\x58\xb0\xbf\xca\x68\x00\x95\x1c\x44\xf1\x8b\x3a\xe9\xe4\xc9\x95\x7d\x98\x58\xa0\x27\x43\xaf\xc9\x95\x7d\x58\xdd\xac\x27\x45\x1d\xd4\x5e\xfd\x37\x2b\x86\x95\x67\x26\x20\xe8\x49\x2b\x4f\x64\x72\x67\xef\xf4\xa4\x5d\x83\xc8\x0a\x5a\x52\xaf\x41\x64\xfb\xde\x92\x51\x55\x10\xa7\xeb\x39\x29\xd8\x20\xf2\x39\x41\x46\x55\x41\xe4\x76\xca\x86\x65\xfb\x62\xf4\x35\x95\xb4\x6e\x10\xd9\xce\xff\x64\x54\x15\x74\x3e\x4b\x93\x1e\x0e\xa2\x33\x7e\xb7\x27\x3d\x3c\xb1\x00\xac\xc1\x9c\xa4\x86\x83\x38\xfd\xc0\x49\xe9\x06\xc1\x2a\xdc\x3d\xa9\xc9\xa0\xfa\x39\x97\xb4\x64\xd0\x3d\xab\x06\x40\x41\x30\xa1\x5e\x4f\xc6\x3f\x41\x52\x74\x93\x2a\x0d\xb2\xfd\x95\x49\x95\x06\x9d\x97\x5d\xca\x9e\x82\x6c\x1f\x94\xbf\xf3\x48\x4d\x85\xce\xfe\x97\x97\x96\x53\x49\xf3\x64\x49\xda\x76\xd2\xb6\xed\xbf\x4f\xda\x36\xe8\x3f\x2f\x54\x6d\x1b\x74\xa3\xeb\x49\xb5\x06\xfb\xa3\xd0\x5f\x5a\xc7\xc2\x83\x90\x8f\xe7\xa4\x47\x83\xce\x7b\x2e\x19\xe9\x04\xc1\xd4\x82\x3d\x69\xd6\x69\x6b\x74\x3f\x17\x90\x16\x0d\xc6\xa9\xb6\x16\x0d\x72\xe2\xf1\x96\xf4\x63\x30\x4d\x5c\x48\xea\x31\x88\x6a\x7f\x56\xd2\x85\x41\xee\xf4\xa7\x24\x5d\x38\x99\x34\x6d\xbf\x7c\x32\xca\x09\xe2\x84\x15\x92\x36\x0c\x8a\xb9\x06\xa9\x5a\x25\x82\xa1\xff\x1a\x48\x43\x06\xb5\x5a\x03\x0d\x19\xf4\xe2\xa1\x79\x2a\x19\x5e\xfc\xef\x30\xac\x66\xe5\x54\xd2\x16\x3a\x31\x08\x67\xc3\xe9\x49\x29\x4e\x26\x4c\xfb\xb0\x53\x8a\x41\x0b\xef\x43\xa5\x18\xc4\xbe\xfb\xff\xf3\xb5\x9d\x74\xe6\xe4\xda\x3e\x3c\x6c\x93\xce\x0c\x82\x61\xff\x3d\xe9\xcc\x20\x18\x25\xdf\x93\xce\x0c\x9a\x1a\x9d\xb4\x61\x10\x4e\xa1\xde\x93\x3a\x0c\xa2\xf9\x78\xd3\x7d\x41\x34\x6b\xa7\xfb\x82\x76\xee\x3c\x3d\x17\xf4\xf3\x30\xd2\x73\x41\x67\x62\x9c\x9e\x8c\x85\x82\x98\x5e\xf5\xaa\x2f\x70\x4c\x40\x4f\x6a\x2e\x88\x49\xc7\x40\x52\x73\x41\x67\x4e\x9a\x9e\x8c\x8e\x82\x98\xf4\x3b\x24\x25\x37\x39\x01\x97\xcf\x7f\x1d\x17\xf4\xf3\xa8\x57\x71\x41\x3f\x4f\x7a\x83\xa3\xc9\x09\xb8\xce\xb6\x3c\xcf\x9d\x4e\x56\x62\xea\x49\x99\x05\x69\x9c\xff\xb2\x8e\xdd\x4e\x56\x2e\x36\x43\xa3\xe0\x44\x46\x93\x7a\x0b\x32\x0b\x65\xf5\xa4\xdd\x82\x34\x3c\x1f\xca\x2d\x88\x7f\x95\x54\x6e\x41\x66\xc2\xf9\x9e\x94\x5b\x30\x8c\xd5\x25\xdd\x16\x8c\xee\x63\x4f\xb5\x05\x51\xed\xca\x4f\xaa\x6d\xda\x1a\x3b\xba\xaf\x42\x23\xa3\x60\x74\x9f\x68\x5a\x2c\x98\xd9\xab\x62\x58\x71\x47\x40\x7b\x3d\xe9\xb5\xc9\x11\xd0\xcd\x2a\x59\x71\xb4\xb6\xdb\x5b\x95\xd4\x5a\x30\xfd\xd4\x48\x46\x54\xc1\xf4\x7b\x21\x29\xba\xe9\x88\x2e\x55\x32\xa2\x9a\x4c\x6b\x3e\xb7\xac\xf2\x0b\x76\x9d\xdc\x9a\xad\x61\x5a\xf3\x79\x02\x68\xc4\xa0\x84\x8f\x77\x85\x38\x1d\x21\x4e\xee\xd5\xe6\x98\x2e\xbe\x8e\xaa\x24\xed\x37\x1d\xfb\x45\x10\x92\xf6\x0b\x8a\xe9\x46\x49\xd1\x4d\x66\x3f\x27\x1f\x0c\x4a\x2d\x88\xc1\x4c\xd3\x3d\x69\xb0\x60\x7f\x55\xb0\x39\x0d\x16\xd4\xea\x2b\x5a\x81\x05\xfb\xdf\x38\x12\x05\x16\xec\x32\x6a\xa1\xc0\xa6\xcb\x44\x2d\x3f\x0d\x14\x58\x50\x3b\x51\x84\xa4\xbf\x82\x48\xdd\x77\xaa\x02\x0b\xf6\xeb\xdd\x23\xb1\xb2\x97\xeb\x00\xda\xc6\x0a\x2c\xe8\x3e\x8a\xf5\x57\xb0\xdf\xb3\xfe\x97\x67\x7f\xa3\x19\x5b\x48\x2a\x2d\x50\x0a\x92\x42\x0b\xda\xb9\x37\x94\xd7\xe4\x8c\xd4\xd9\x87\x89\xa2\x9a\xb6\x94\xb6\xb0\x02\x8a\x25\x68\xf6\x5e\x26\x1d\x12\x34\xfb\xa5\x92\xbe\x08\x9a\xbd\x61\x49\x5d\x04\xd1\xfc\x9c\x7a\x3c\x05\x0f\x33\xd8\xfb\x3e\x53\x20\x41\x24\xaf\x5d\xfd\x11\x34\x7b\xf3\x92\x31\x54\x10\xc9\x4b\x57\xa5\x04\xed\x7c\x0e\x69\x94\xa0\xd9\x63\x99\x34\x45\xd0\x98\xa6\xa6\x27\x4d\x11\xf4\xf3\x1e\x57\x14\x41\x3b\xad\x6a\x54\x15\xb4\xe6\x9d\x67\x50\x15\xec\x7b\xca\x8d\xd9\xf8\x4e\xed\xec\xbb\x45\x75\x04\xd1\xbc\x44\x55\xc7\xe4\x34\xce\xde\x66\x9a\x63\x72\x1a\x67\x5b\x5a\x73\x4c\xce\xd9\xec\xeb\x58\x0d\x04\xad\x79\x93\x19\x0e\x05\xd1\x7c\xa5\x2a\x86\xa0\x35\xcf\xb7\x5e\x98\x1c\xf8\xeb\x47\xbf\x5e\x08\x5a\xf3\xc1\xa1\x16\x82\xd6\x7c\x0d\xaa\x80\xa0\xff\xfc\x08\x51\x01\x13\xbe\x37\x3d\xb7\xea\x1e\x88\x66\x78\x29\xbd\x9e\x36\x96\x12\xfa\xf9\xe0\xd0\x00\x41\x67\x16\xa8\x9e\xb4\x3d\xd0\x7f\x7e\x58\xa9\x76\xa0\x33\xdb\x5b\x4f\xaf\x87\xcf\x00\xe2\xe9\x13\xf9\xf5\xf0\x5f\x4e\x5b\x2e\x7f\x78\x3f\xab\x87\xa0\xff\xfc\x8c\x34\x58\x0a\xfa\xb9\xb7\x75\x37\xd0\xcf\x6d\xac\xa7\x81\x7e\xee\x76\x03\xa3\x20\x9d\x4b\x4b\x73\x03\xe9\x5c\xa6\x9a\x1b\x48\xe7\x2e\x30\x30\x0a\xfa\xb1\x25\x5d\x0e\xf4\xf3\x1c\x32\x30\x0a\xd2\xf9\x22\x50\xef\x40\x3a\x37\x99\x76\x07\x3a\x79\xdc\x3d\x69\x77\xc9\xb8\x28\x47\x9f\x8d\x8b\x82\xae\xc7\x65\x7d\x0f\xf4\xc2\xb7\x5f\x56\xf7\x40\x34\xdf\x83\xd9\x58\x69\x76\xa8\xaf\x31\xc9\xac\xc7\x81\xf1\xeb\xfe\x74\x58\x44\x44\x98\x2a\x65\x2d\x0e\x8c\xdf\xd9\xe7\x6d\x91\x6f\xb3\x49\xd1\x63\xd1\x7e\x8d\x33\x7a\xbc\x67\x7d\x0d\x0c\x66\xc5\xef\x59\x5d\x03\xdb\x9c\xd9\xbe\xf9\xb4\x60\xfc\xf8\x72\xc8\x61\x05\x36\x46\xe7\x43\x38\x6b\x75\x20\xd9\x8f\x95\x15\x38\x90\xd4\xc1\xac\xbf\x65\x43\xaa\x7c\x8d\x67\x93\x69\xc1\xb0\xcf\x32\x6b\x74\x20\xd9\xc5\x94\x95\x37\x90\x18\x3e\xd3\xb3\x51\x56\x90\x18\xdc\xd2\xb3\x3e\x07\xc6\xaf\x79\x5c\xaf\x45\x7c\x98\x70\x3d\x65\x6d\x0e\x8c\xce\xc3\x31\x2b\x73\x60\x74\x8c\x20\x1b\x2b\xcd\x4e\x66\x45\xaf\x59\x56\xe5\xc0\xe8\xe1\xb6\xac\x10\x93\x59\xf5\xf0\xbf\xac\xd0\x46\x70\xb7\xec\x3f\xac\x51\x62\x86\x15\x7a\xf4\xb2\x22\x07\xa2\xf6\xe4\x3e\xad\xa5\x2a\xe7\xf3\x31\xab\x72\x20\x1a\x33\x17\xf4\x9c\xac\xe7\xc6\xe8\x61\x91\xf5\x3c\x7a\xc7\xcd\x9d\xd5\x3b\x30\x3a\x2f\x99\x6c\x4c\x15\x8c\xce\x33\x33\x1b\x53\x05\x83\xa5\x1c\x7a\x36\xa6\x0a\x46\xe7\x09\x96\x0d\xa9\x66\x27\xaf\x1a\xfe\x97\x2d\x94\xf9\x00\xc3\x43\xb2\xaa\x98\x0d\xa8\x0e\x7f\x68\x0b\x6d\x64\x3f\xb6\xb2\xfa\x08\xf6\x55\xe6\xc6\x6c\x21\xf2\x67\xbb\x69\xdb\x59\x81\x04\x33\x37\x8b\x6c\x21\x06\xd8\xe6\xe6\x2f\x6d\x20\x06\xd8\xe6\xe6\x0e\x6c\x0c\x26\xb9\xf2\xd3\x30\x6b\x90\x20\xfb\x69\x98\x35\x48\x30\x33\x1f\xa8\x59\x81\x04\xfb\xc8\xf8\xa5\x06\x99\x8d\xd7\xf2\xfa\xce\xc6\x6b\xc1\xfe\x8a\x62\x9f\x5a\x25\x28\xc1\xc7\x7a\x36\x60\x0b\xb2\x01\x9e\xac\x42\x82\x70\x25\xdd\x9e\x75\x48\x30\xb3\x37\x85\xd1\x59\x30\xb3\x17\xb2\x0e\x09\xf6\x3e\x3d\x34\xaf\x83\xe2\x80\xfb\xe4\x1e\xac\x3b\x8b\xbe\x9a\x9d\x9d\x75\xcd\x6c\x2c\x36\xf9\x3c\x50\x36\x41\x89\x6c\x91\x95\x77\x21\x58\xdd\x25\xeb\x9f\xd9\x51\xbb\xa6\x07\x66\x2d\x12\x14\xf3\xda\xb3\x12\x09\xf6\xbf\x71\xa9\x69\x91\xd9\xc5\x89\xda\xd9\xab\xf5\x72\xe8\xad\x0a\x9d\x15\xc9\xec\xea\x44\xcd\xb3\xa5\x36\x66\xb5\xd1\x0e\x8c\xac\x37\x66\x97\x1e\x32\xdf\x30\xeb\x7c\xd9\x11\xb4\xf6\x44\x64\xa5\x2f\x3b\x82\x56\x51\xcb\xc6\x40\xc1\xfe\x4e\x65\xbf\x6a\x5f\x46\xf1\x22\xb9\x0f\x43\x9e\xa0\x8c\xea\xe6\xac\x06\xda\x17\xc9\xb3\xa8\xf7\x81\x88\x74\x76\x61\x35\xda\xe9\xfa\xa5\xba\xca\x20\xd8\x65\x6e\xef\x54\xe3\xb3\xaf\x93\x6b\x47\xf7\x03\xd5\x00\x57\x36\xec\x99\x9d\x91\xd9\x3e\x83\xac\x0f\x82\x6a\xc7\x48\xd6\x07\xc1\xde\x1a\x8d\xa2\x10\x66\x47\xc7\xfe\xc6\x1f\x5e\xd7\xd9\x48\x29\xa8\xe7\x1e\xd2\x21\xb3\xd9\xb4\xe1\x69\x56\x22\x41\x55\x76\xb2\x12\x09\x6a\xf5\x9a\x31\x4e\x0a\x6a\xf5\x42\x55\x22\x41\x6d\xde\x43\x46\x49\x41\xb8\x76\x66\xcf\x8a\x65\x36\xe9\x96\xd5\xa8\x7b\xd6\x2c\x41\xe4\x73\xdd\xab\x96\x20\xb2\xdd\xec\x59\xb7\x04\xd5\xc4\xa8\xac\x5b\x82\xc8\x86\x93\xb3\x72\x09\x22\x9b\xe4\x90\xcd\xc4\x05\xfb\xff\xd8\xad\xc2\x09\xec\xb4\xcf\xfa\x26\xe8\x4c\x98\xd9\xb3\xbe\x09\x92\xdf\xd4\x59\xdf\x04\xc9\xe0\x45\x56\x37\xc1\xf8\xf1\xe1\x93\x0d\xa4\x02\xa3\x34\xd9\x30\x2a\x68\x6a\x76\xd6\x49\x41\x3f\x07\x6f\x5b\x0c\xbb\x4e\xdc\x92\x4d\x61\xae\x6e\x58\x1f\x35\x12\x34\xfd\x33\xab\x91\x99\x2c\xdc\x53\x43\x8d\x31\xbb\xde\xd0\xf9\xa1\xf5\x71\xbd\x21\x2f\x03\x85\x11\xb4\xd3\x84\xfa\x22\x08\x47\x55\xf6\x6c\x14\x14\x44\x53\xa1\xb2\x72\x98\x5d\x4b\xc8\x87\x98\x41\x50\x10\xe5\x5c\xfc\xfa\x62\x76\xb4\xac\xef\x5e\x83\xa0\xa0\x35\x1f\xfc\x1a\x24\x68\x0e\xeb\xc8\x0a\x24\x68\xcd\x26\x53\x16\x41\x73\x8c\x48\xd6\x15\x41\x34\x3f\x7c\xcc\xd5\x05\xed\x5c\x8d\xda\x63\x36\x55\xd7\xe1\x40\x59\x7d\x04\xd1\xbc\x01\xb4\x47\x10\xcd\x87\xab\xf2\x08\xe2\xdf\x75\x61\x46\x2f\x88\x76\x36\x66\x03\x5d\x7c\xee\xfb\xb2\x51\x28\xb3\xcb\x1e\xd9\xda\x7a\x21\x88\xe9\xd5\x63\x4c\x33\x9b\x98\xeb\x09\xd0\x14\x41\x37\x1f\x29\x1b\xd1\xcc\xe6\xea\xfa\xad\x75\x5b\xcb\x9b\xaf\x7d\x3f\x99\x8c\x71\x82\x98\xe7\xbf\xac\xe4\x8d\x00\xa0\x5f\xd9\x08\x27\xe8\x3f\x3f\xac\x4c\xd5\x05\x31\xbd\xd0\x0d\x70\x82\x5e\xfc\x20\x30\x96\x99\x4d\xca\xf5\x8a\xd2\x4d\x41\x37\x87\x2e\xeb\xa6\x20\xa6\xff\xa5\x88\x82\xfe\xf3\x65\xa4\x88\x82\x6e\xb7\x4d\xd6\x3a\x41\x67\x0a\xd5\x9e\xb5\x4e\xd0\xed\x08\xc9\x86\x31\x41\x37\x01\x33\x1b\xc5\x04\x9d\xf9\x58\x7b\xd6\x4d\x41\xfc\x6f\x99\x67\x92\x30\xe6\xb4\x59\x95\x53\xd0\xcf\x47\xb9\x72\x0a\xfa\xcf\x8b\x5f\x39\x05\x31\xcf\x2e\x6d\x0a\xdd\xf4\x9c\x6f\x63\x9d\x20\x8e\xa5\x65\x85\x15\xc4\x09\xca\x65\xf5\x34\x9b\xc1\x4b\xaf\x45\x36\x83\x37\x9b\xc1\x4b\xf7\x57\xd6\x58\xb3\x19\xbc\x3e\x3e\x8d\x65\x82\x68\xcc\xbb\xd0\xb3\x16\x0b\x7a\xf1\x33\x56\x8b\xcd\x8b\x7e\x3f\x42\xae\x59\x65\x05\xbd\xf8\x16\x51\x59\xb3\x19\xbc\xd3\x1f\xda\x1a\xac\x91\x5b\x7c\x3a\x6b\xb1\xd9\xa4\xde\xe1\x1e\x6d\x0d\x93\x7a\x09\x06\x67\x93\x7a\x41\x32\xf1\x2b\x2b\xb6\x20\x9d\xe7\x8a\xb1\x4d\x10\x83\x11\xba\x3d\x2b\xbb\xd9\x35\x85\xec\x9e\xce\xca\x6e\x76\xdd\x5c\x82\xf2\x59\xd9\x05\xd1\xcd\x0e\xcd\x86\x3b\x41\x2f\x3e\x6a\x14\x60\x10\xb5\x7a\x1d\x1b\xef\xcc\x2e\xa6\xeb\xa7\xb9\x52\x9c\x5d\x4c\x77\xba\x03\x1b\xe8\xb5\x81\x38\xc5\x4a\x31\x48\xe7\x91\xaa\xf5\x66\xad\xf7\x6c\xde\xd6\x78\x55\x49\xb7\x65\x6b\x30\x8b\xf3\x7e\xf0\xfe\xf7\xeb\xd9\x0c\x65\x10\xcd\xe1\x1d\x59\x9d\xce\xae\x27\x54\xb3\x65\x36\x83\xc9\xc7\x5e\x13\xc6\x42\xc1\xf8\x79\xe5\xa8\xd8\xd9\xdc\x63\x1c\x38\xab\xd8\x20\xfe\xdd\x6e\x3a\x76\x36\xf9\xd8\x0f\x10\x1d\x1b\x44\x3d\x6f\x16\x25\x3b\x9b\x7d\xec\xd9\x50\xb2\xc1\x3e\x34\x8f\xc3\x0b\xc5\xf4\x63\x1b\x50\xcb\xce\xce\xe1\xec\xa5\xa9\x65\x83\x64\x86\x40\xd6\xb2\xb3\x96\xcd\x15\x56\xb4\xec\x62\xf6\x31\xa7\xac\x68\xd9\x60\xfc\x38\xd9\xc5\x00\x2a\x48\x46\xf6\x8b\x92\x5d\x4c\x48\xe6\x32\x2f\x86\x54\x8b\xf3\x3c\x73\xef\x16\x23\xaa\x20\x99\xe1\x51\x34\xf1\xa2\x89\xf3\xb0\x2b\x9a\x78\xd1\xc4\xa7\x7b\x9c\x16\xd9\x05\xe1\xb6\x2e\x8b\x48\x64\x2e\x1e\xfd\x6d\x11\x89\xcc\xd3\xcd\x3f\x16\xd1\x38\xd3\x43\x5d\x16\xd1\xc7\x4e\x4b\x17\x45\x1c\x44\x77\x98\x60\xd1\xc4\x41\x54\xb3\x3d\x8b\xa3\x5d\x41\x30\xec\x7f\xff\x61\x35\x4f\x80\xd5\x4a\xe9\xe7\x60\x74\x3e\xdd\x8a\x7e\x0e\xa2\x99\xb9\x57\xb4\x71\xb0\x6f\x4b\x0f\xc5\x6a\x05\xf1\xa0\xe4\x1e\xac\x96\xf3\x54\x4f\x8b\xac\xd6\x59\xf2\xf7\x6c\xcd\x7a\xa1\xe8\x3d\x5b\x87\xd7\x22\x3f\x61\x78\x1f\x17\xb3\x9e\xc1\xe8\x56\xcb\xac\x67\x30\x3a\x4f\xca\xa2\xc9\x83\x9c\x6c\x37\x4d\xbe\x68\xf2\xdc\x15\xc5\xa8\x2c\x18\x3d\xfb\x5f\x36\x87\x72\xef\x39\x50\xee\x8b\x89\xd0\xd3\xcd\x7b\x8a\x13\x73\xef\xd2\x2f\x5e\x14\x79\x30\x3a\x5d\x74\x45\x91\x07\x99\x05\xf8\x7b\xd1\xe3\xc1\x49\x14\x2c\x6a\x3c\x18\x9d\xef\xa3\xa2\xc5\x17\x2d\x3e\xf9\x43\x9b\x82\x5c\x69\x07\xce\x14\x73\xa5\x8b\x93\x52\xf3\xb4\x2e\x7a\x7d\xd1\xeb\x79\x26\x16\xbd\xbe\xe8\xf5\x74\x1c\x14\xbd\xbe\xe8\xf5\xd9\x1f\xda\x38\x99\xa9\x77\xbd\x97\xf4\xfa\xa2\xd7\xf3\x98\x2f\x7a\x7d\x51\xe2\x79\x8a\x14\x25\x1e\x44\xb5\x93\xa9\x68\xf1\x20\x9c\x16\xa0\x17\x2d\xbe\x68\xf1\x8e\x32\x28\x5a\x7c\x71\xaa\x6a\x1e\x10\x45\x65\x07\x7b\x73\xd4\x53\x41\x2f\x0a\xba\x5b\x53\xd0\x8b\x82\x4e\x07\x55\x51\xd0\x41\xb6\xff\xa2\xe8\xe7\x45\x3f\xe7\x39\x55\xf4\x73\x10\x65\xd0\x4d\x56\xf4\xf3\x62\x42\x75\xf7\xdf\xac\x28\x09\xd5\x95\x69\x16\x7b\x31\x10\x0c\x66\xe6\x79\x59\x0c\x04\x83\xfd\x72\xf1\xa7\x56\x1e\x8f\xaf\xcc\xba\xd5\x8b\x1e\x0f\xe2\x7c\xa0\x14\x45\xbe\x98\x52\x6d\x45\x95\xf6\x62\xfe\xb4\x0f\x21\x9d\x1d\x4c\x96\xe1\xe8\x45\x67\x2f\xe6\x4a\xd3\x6f\x55\xf4\x73\x30\xb3\x95\x52\xcf\x8b\xa9\xd2\x9e\x16\xc3\xc3\x20\x9a\x9f\x31\xc5\x5c\xe9\x62\xae\xb4\x4f\x47\x23\xc6\x20\xdb\x45\x58\x0c\x18\x83\x70\x6e\x98\x5e\x74\x7d\x30\x73\x77\x63\x56\x93\xfc\x69\xbb\xbc\x8a\x5a\x0f\xb2\xfd\x81\x45\xab\x2f\x24\x48\xdb\xab\x54\x94\x7a\x10\xfd\xe7\xb5\xa6\xd4\x83\x6c\x5f\x5c\xa9\xa7\xe6\x5e\x08\xb4\xb6\xd1\x5e\xb0\x2f\x2b\x76\xa0\xe6\x17\x35\xdf\x28\x61\x31\xb8\x0b\x4e\x96\x58\x31\x21\x1a\x94\x28\x6e\xcd\xaa\xd3\x19\x70\xc6\x54\x16\xe3\xbd\xc5\x89\xb2\xec\xb0\x2e\x76\x06\x80\xa8\xbf\x3f\x2c\xb9\xd5\x8b\x9d\x05\xa0\x38\x70\xbf\xd8\x57\x00\x4a\x14\x37\x6c\xdb\x98\x1f\x6d\xee\x7a\xb1\xab\xa0\x38\x62\xd6\x28\x51\x69\x36\x18\x33\x6b\x45\xb1\xc8\xf6\x6a\xce\x3d\xe8\x03\xc8\x60\x32\xc8\xc6\x2e\x8b\x1d\x0a\xa0\x04\xdf\xfe\xc5\x0e\x05\xb0\xdb\x8b\x33\x6e\x87\x42\x71\xba\x2d\xbb\xff\x8b\x3d\x0a\x60\xff\x1f\x75\xb0\x47\x01\xec\x83\xe3\x80\xed\x32\x00\xfb\xb7\xb4\xac\x7d\x06\x60\xff\x1f\x95\x35\xa4\x0c\xe2\xa7\x80\x15\x7b\x08\x40\x54\x47\xdb\x14\xfb\x03\x40\xfc\x94\xa6\x62\x7f\x40\x71\x2a\x2d\x7d\xab\xd8\x1f\x00\x8a\xe9\x34\xc5\xee\x00\x10\x91\xbc\x8a\xec\x0e\x00\x45\x1f\x2d\x76\x07\x14\x13\xa9\x8d\x0e\x15\xbb\x03\xca\x89\x35\x23\xa9\xc5\xee\x00\x50\x1c\x6b\x5d\x74\xff\x62\x22\xb5\x2e\x58\x94\xff\x62\x22\xb5\xd1\xa0\xa2\xfd\x17\x13\xa9\xdb\x39\x12\x2f\xa3\x61\xdf\x98\x17\x85\xfe\x5f\x86\xfd\x60\x3e\xc7\xd4\x7d\x50\x34\xd0\x62\x08\xba\x9c\x44\x6a\x9f\x46\xc6\xa0\x41\x9c\x1e\xed\x62\x74\x19\x44\x98\x97\x5f\xec\x04\x00\xbb\x51\xa8\xad\x81\x63\xb0\xcb\x38\x64\xbb\x01\xc0\x2e\xa3\x8d\x95\x7e\xb0\xb7\xe7\x6f\xad\xc6\xa4\x6b\xcc\x87\xa0\x59\xd3\x20\x9c\x86\xaa\x17\x03\xc7\x60\x6f\x8e\x9a\x19\x38\x06\xe1\xf4\x2e\xbd\xd8\x61\x00\xca\xf0\x8e\xb6\x73\x00\x94\xe1\xc5\x63\xdf\x00\x28\x83\xcf\xfa\x62\xdf\x00\xd8\x3b\xe0\xda\xb6\x73\x00\xec\x32\xda\xc4\x58\x32\x28\x83\x20\x62\xb1\x77\x00\x44\x63\xc5\xba\x5e\xec\x1e\x28\x4e\x9b\xe5\x48\x8e\x62\xff\x00\xa8\x76\xe5\x16\xfb\x07\x40\xb5\x13\xb8\xd8\x3d\x00\xaa\x3d\xa8\xc5\xee\x01\x50\x8d\xdf\x17\xbb\x07\x8a\x93\x66\x39\x22\xa3\xd8\x3d\x50\x9c\x34\xcb\x21\x28\xc5\xce\x80\xe2\x04\x59\x8e\xd1\x29\x86\x92\x8b\x93\x61\x39\x68\xa2\x18\x4c\x06\xd5\x98\x7e\x31\x39\x1a\xec\x7f\xa3\x95\xec\x48\x28\xf7\xc9\x09\xe5\x50\xec\x36\x00\x71\xfa\xea\x8a\xfd\x06\x60\x9f\x2d\x76\x6b\xc7\x01\xd8\x65\xee\xd6\xfa\xdf\xa6\x14\xfa\xd6\xb2\xeb\x00\xec\xbb\x8e\x76\x32\x62\x0d\x22\xf5\x73\xc8\x56\xf7\x76\x7e\x1b\x3f\x87\x0c\x63\x83\x5a\x7d\x78\xdb\x7b\x00\xf6\xbf\xb9\x0b\x5b\xe0\x66\x7a\x17\x9f\x3b\x76\x1f\x80\xbd\x57\x1a\xd4\xd8\x36\xd8\x3f\xa5\x05\xec\x53\x28\x06\xb7\xcd\x33\x2d\x76\x2a\x80\x5d\x0b\x8e\xce\x5e\x05\xb0\xcb\xfc\xad\x35\x7b\x0c\xe1\x78\x8f\xd9\x3b\x00\x6a\xf5\xb1\x68\xef\x00\xd8\x3f\xa5\xf1\xec\x1e\x28\xcf\xf9\xb4\xb1\xcc\x5a\x6c\x54\x3b\xaa\x8a\xde\x5f\xf4\x7e\xa6\xca\xed\x45\xc9\x07\x31\xc2\x9f\x6a\xf9\xa0\x76\x6f\x13\x2d\x1f\x44\x36\xe7\xa2\x68\xf9\xa0\x76\x9f\xa7\x5a\x3e\xd8\xff\x46\xab\x1b\xac\x06\xbb\x8c\xba\xaa\xfe\x60\x97\x79\x24\xd6\x75\xa3\x0e\x2f\x1e\xdd\x1f\x44\x76\xac\x6e\x51\xfe\xc1\xa8\xfe\x97\xa7\xd5\x25\x86\x09\x65\x14\xdd\xbf\x10\xd4\x2e\x7e\x44\xeb\xfe\x20\xd9\xb9\x5a\x74\x7f\x30\x1d\x95\x53\x54\x7f\x50\x86\xda\xa1\xf9\x83\x5a\x7d\x85\x69\xfe\xa0\x9e\x47\x90\xe2\x0f\xf6\xa1\xba\x31\x1b\x68\x63\xd4\x3f\x0c\xc0\x2e\x76\x0b\x80\x68\xe7\x33\xcd\x7e\x01\xd0\x9a\xe7\xc7\x7e\x01\x70\xbe\xfd\x4d\x82\x06\xff\xbe\x80\x15\x7e\xd0\x1d\x40\x5b\xcc\x78\x06\xd1\x4c\x25\x2a\x66\x3c\x83\x68\x46\xcf\x8a\x19\xcf\x20\x4e\xc7\x6d\xd1\xf2\xcb\x56\xfa\xce\x24\x89\xbd\xa8\xf4\xc5\xd5\x96\xce\x1e\x3c\x58\x27\x9f\xca\xda\xa2\x62\x0e\x46\xf7\xf9\xa4\x84\x83\x99\x7d\x14\x29\xe1\x60\x66\xcf\xbe\x12\x0e\x66\xe6\x7d\x50\x95\xf0\xea\x44\xd7\x86\x39\xab\x81\xed\xfa\xf3\xdb\x21\xfb\x7f\xc5\x32\x3f\xc0\x2c\xaa\x16\x55\x2b\xf5\xa3\xac\x5b\xe6\x9b\x93\xbb\xbf\xaa\xd8\xd5\x19\xab\x4d\x93\xad\xda\x33\xd8\x8f\xfa\x41\xd9\x63\xd9\xe2\x4a\xf1\x48\x5e\x8b\x0c\x87\xf2\x49\x5d\x8d\x77\x83\xfd\x9c\xdc\x75\xad\x06\xbc\x6b\xf8\x9c\xe4\x9b\xb4\x1a\xca\x06\xfb\xc9\xe1\xff\x59\x8b\x33\x83\x14\xc6\x5b\x75\x6a\x50\x0d\x4f\x56\x95\xba\x9e\x19\xa4\x86\x9b\xb3\x66\x38\x75\xfe\x9d\xcd\x59\x33\x82\xde\x9c\xfc\xaa\x65\x83\xe8\x1d\xcf\xab\x5a\x36\x08\xa6\x0f\xeb\x55\xa5\xae\x06\xbd\xab\xdb\x5a\x16\x79\x06\xdd\x98\xb5\x0f\x6b\xcf\x83\xa9\x3a\xb4\x18\xf8\x3a\xac\x0a\x35\xe8\xcc\xbf\xda\xab\x42\x0d\xd2\x39\x30\x55\xb9\x1e\x2f\xf6\x87\x1e\x3d\x12\xcc\x97\x40\xd5\x81\x41\x8b\xb3\x75\x4f\x94\x53\x3d\xf1\xd0\xab\x3a\x30\x88\xe4\x79\xd2\x81\x41\xcc\xea\x31\x78\xf0\xc9\xbb\x85\x66\xd5\x81\xc1\xe8\xbc\xf4\xaa\x0e\x5c\x5d\x5f\x89\xdf\x69\xb2\x20\x9a\x83\xd8\xaa\x2a\x0b\xa2\x3b\xc1\x50\xd5\x65\xab\xb3\x37\x79\xda\xd4\x56\xd0\x1c\xd2\x5a\xb5\x56\xd0\xf2\xf9\xa1\x35\x72\x1c\xf0\x68\xee\xc0\xe3\x67\x2a\xe7\x73\x85\x1a\x7c\x06\x8d\x49\xf5\x7a\xd5\x6d\x6b\x21\x9e\x81\x05\x56\xad\x15\x44\x37\x01\xb8\xea\x9e\x20\x5a\xf0\x2d\x52\x95\xcf\x5a\xec\x9f\xf7\xdf\x3c\xb4\x62\xc4\x61\x58\xe6\xb1\x31\xb9\x92\x93\x01\x55\x03\xc6\x20\xa6\x35\x50\x3d\xc1\xfe\xa5\xff\xe6\xe1\xb2\x8c\xef\xb4\xee\xe5\x1c\x2e\xd9\xa9\x3c\xea\xab\xee\x09\xa2\xfa\xb1\x5b\x35\xcd\xaa\x69\x1a\x35\xac\x9a\x26\x48\xf9\xfc\xd4\x73\x50\x5d\x5d\x93\x27\x69\xd5\x21\xab\x0b\x00\x5b\x2b\x1d\xb2\xba\x00\xb0\x35\xd0\x21\x41\x67\x8e\xe3\x5e\xcd\x31\x06\xe9\x9c\x29\xb5\x12\xa4\x73\xa6\x54\x48\xd0\x1d\x5e\x53\x55\x48\x10\xd5\x1e\x92\xaa\x42\x82\xe4\xd7\x65\xd5\x20\xc1\xf8\x79\x17\x6a\x90\x60\x68\xad\x55\x83\xac\xcd\x1e\x42\xb7\xe5\x79\x6a\x76\x12\x78\x1b\xaa\x7e\x20\x67\x6f\x30\xd5\x0f\xe4\xfc\x73\x97\x56\xa9\xd1\x33\x94\xdd\x98\x55\x6a\xcb\x2f\x01\x6a\xae\xf9\x81\xbd\x03\xff\xcf\x7a\x36\xef\x0b\xf6\xa9\xf9\x81\x74\x6e\x0c\x2d\x0f\xec\xad\x51\x03\x4d\x0d\x64\x53\x59\xaa\xc1\x5d\x30\x33\x1f\xa0\xd5\xe0\x2e\xc8\xa6\xc5\x54\x75\x0e\x4c\xc7\xb6\x56\x6d\x0e\x44\x33\xca\x5d\x35\xb7\xaa\xb9\x19\x15\xab\x9a\x5b\x75\x12\xe4\xc6\x77\x65\x55\xdd\x40\xb1\x7b\xbf\x6a\x6e\x60\x3f\xe1\xff\xd0\x3f\x5e\x35\x36\xb0\x3f\xba\xd8\x9b\x01\x5c\xb0\x9f\xec\x1c\xbc\xca\x06\x4e\x97\x79\xd5\xd8\x40\xad\x58\x6c\x35\x14\x0b\xaa\xdd\xa7\x55\x37\x03\xc3\x47\x86\x6a\x06\x5a\xb3\x4d\x35\xb3\x3a\xce\x59\xe3\xe2\x31\x62\x0b\xa2\xdb\x4d\x5c\x0d\xd9\x82\xe4\x87\x4d\x55\xe0\xea\x19\xf5\xea\x99\x34\x3f\x18\x14\xa7\x67\xac\x3a\x1d\xa8\x3e\x9d\x35\xba\x6a\x10\xd7\xbb\x46\x51\xab\xce\x9b\xe4\x51\x28\x6a\x75\x7a\x86\xdc\xa3\x07\xeb\x5c\xc6\xbe\x6e\xf5\x2f\xb0\x8f\x95\x5f\x1a\x63\xad\x64\xe4\x4e\x9f\xf5\x5a\x54\xc5\x98\xa6\x47\xa1\x1d\x81\x6e\x02\x7d\xd5\x7b\xc0\xe9\x33\xab\x6a\x4f\x75\x9e\x23\x6f\x7a\x6d\x06\x74\x66\x67\xef\x55\x9b\x01\xd1\x8c\x6e\x56\x6d\xa6\xde\xac\x13\xec\x8d\xaa\xcc\x80\x7d\xb0\xd4\x5c\x99\xa9\xae\x83\xeb\x69\xd2\x65\x40\x77\x1c\x6a\x55\x5b\x40\x32\xed\xa7\x1a\xf1\x04\x49\xcd\xa8\x8a\x0c\xe8\x8e\x38\xad\x7a\x0c\xe8\xd5\xcb\xdc\x20\x28\x48\x6a\x61\xd5\x6c\x40\x3a\x0f\x45\xcd\x06\x24\xbf\xf5\xaa\x62\x03\xba\x23\x7f\xab\x62\x03\x3a\x73\xc6\xf7\xaa\xd7\x80\xce\xda\x33\xbd\xaa\x35\x20\x9d\x8f\x0e\xad\x06\x44\x73\xee\x8c\x6a\xd2\x2e\xe8\xcc\x36\xdf\xab\xa2\x03\x92\xf9\xec\xd5\x58\x29\x48\xa6\xa0\x57\xd5\x07\xec\x8b\x98\x5a\xaa\x3e\x20\x9d\xf7\x9e\xea\x53\x1f\x23\x16\x6e\xcc\x8a\x3f\x44\x2c\x9a\xbb\xb4\xe2\x0f\xc9\x77\x9e\x23\x5d\xa8\xba\xd2\xad\x77\xa5\x2e\x04\x86\xf3\x8b\x56\x93\x76\xc1\x70\xba\xd2\x6a\x54\x14\x8c\x9f\x1f\x6f\xca\x51\x5d\x9e\x6f\x5a\x5f\xeb\x01\xc3\xb1\x2b\x55\xe9\x01\x39\x7b\xda\x74\x1e\x90\x4d\xa9\xab\x2a\x0f\x18\xbd\xb8\x47\xeb\xb8\x7c\x56\xbb\x79\xcf\x37\x73\xf2\xf6\x73\x2a\x75\x1e\x30\x1c\x1f\x55\x75\x1e\x90\xb3\xad\x6f\x6e\x2f\x18\x0e\x7d\xaa\x6a\x10\xc8\xd9\x13\xae\x06\x81\xe1\x54\x7a\x55\x0d\x02\x39\xfb\x12\x54\x83\x40\xce\xde\x35\x6a\x10\x18\x8e\x56\xaa\x2a\x0f\x18\x0e\x15\xab\x4a\x0d\x18\x9d\xce\xd0\x6a\x7c\x12\xcc\x72\x36\xef\xa1\xbe\x7c\xec\xfb\x15\xa2\xae\x80\x6c\xf6\x68\xd5\x56\x40\x36\x08\x51\x95\x15\x90\x8d\x71\x54\xa3\x94\x20\x1b\xb4\xa9\xea\x0b\xc8\xc6\x8e\xaa\x41\x4a\x30\x8b\x2d\xad\xd1\x80\x69\x9e\x5c\x35\x48\x09\x66\xf6\xf1\xa4\xe4\x80\x99\xbd\x0c\x8d\x51\x82\x99\xbd\xc0\x0c\x51\x82\x6c\x38\xa6\x6a\x42\x60\x1a\x50\xad\x46\x28\xc1\xcc\x5e\x60\xca\x11\x98\xc5\x86\x56\x8e\xaa\x72\xe4\x25\xad\x1c\x81\x6c\x1c\xad\x29\x47\x20\x9b\x1a\xd9\x8c\x50\x82\x6c\x68\xa7\xa9\x4b\x60\x3f\xc3\x3a\x65\xd9\x32\xe6\xf4\xe0\x6b\xa3\xa9\x46\x60\xdf\xdf\xfe\x74\x58\xe6\x62\x3e\x9c\xca\x66\xf8\x11\x94\xa8\x16\x5d\x16\xb9\x46\x49\x71\x73\xb7\x65\xac\xea\x52\x3c\xb6\xc7\x22\x73\x0b\x8b\x7b\x58\x96\xd9\xf9\x3c\x28\xfa\x2c\xf2\xc2\xf8\xef\x15\xbc\x7a\x53\xaf\xc0\x2c\xa8\x6a\x33\x8a\x09\xf6\xbe\x32\x65\x56\xda\xb5\x7e\x10\x9d\xa6\x70\x81\xfd\x6f\xb4\xaa\xc2\x05\x76\x59\xa2\xac\x59\xe6\x74\x16\x7c\x3e\x35\x5d\x0a\xec\x0f\x8d\x46\x99\x2d\x11\xf6\xb8\x66\x0f\xc5\x96\x08\x33\x0f\xb3\xdb\xb3\x29\xc2\x6e\x68\xfa\x79\x9a\x86\x05\x76\x19\xe7\x49\xc5\x6a\x71\x3e\x66\x3c\x3e\xdb\x27\xfc\x98\x61\xb7\xc6\x31\x41\x71\x90\x4b\x53\xbb\x1a\xeb\xfd\xd8\x89\xd1\x0c\x5a\x82\xbd\x31\xcb\x6c\x80\xc4\x02\x1f\xee\x53\x15\x03\xfb\xdf\xdc\x9a\xf5\x4f\x8c\xf2\xf3\x70\xcd\x49\x06\x25\x8a\xbf\xf4\x72\x49\x9a\x34\x5f\x3e\xcd\x50\x26\x28\xf6\x06\x36\x05\xad\x9d\xe9\x9b\xa6\x5b\xb3\xf2\x18\x5a\x24\x2f\x5c\x7d\x0c\xec\x32\x1a\x53\x21\x03\xbb\x8c\xdf\x1a\x95\x04\xbb\x8c\x06\x36\x2c\x09\x76\x19\x87\x67\x5c\x12\xec\x32\x2a\xa6\xce\x81\xe2\xcb\xbc\x69\x73\x60\xff\x9b\x65\xd6\x2c\xdb\x2d\xed\xd6\x3c\xd5\x1b\xc5\x17\x51\x53\xdd\x9a\xea\xe6\x3c\x7d\xcd\x20\x24\xd8\x5b\xa3\x01\xd4\x39\xb0\xcb\xb8\x38\x8d\x42\x82\x68\xbe\x9f\x9a\xf6\x06\xaa\x81\xa6\x66\xcc\x11\xec\xef\x4d\xce\xa1\x42\xd7\x1c\x55\xea\x4d\xaa\xcf\x81\x88\x7e\xb6\x66\x1d\x08\x1c\x86\x13\x17\x35\xed\x0d\x54\xc3\x46\x4d\x7b\x03\xfb\xd5\x4c\xc5\xb4\x37\xb0\x2b\x46\x93\xa8\x6f\x20\x7a\xb8\x39\xd3\x7d\x41\x24\xe7\x12\x68\x3a\x1d\xd8\x67\x9b\x23\x36\xa0\x08\xaa\xb9\xc8\x4d\xcd\x03\xfb\xa7\x1c\x8a\x9a\x07\xa2\x39\x88\xbd\x19\x3e\x04\xd5\xef\xaa\x66\xf4\x10\xec\x9f\xd2\x9c\xa6\x0a\x83\x6a\x6a\x73\xd3\x06\xc1\xfe\x37\x0f\xd8\x93\x58\x9d\x27\x9c\xee\xa5\xa6\xfc\x81\x48\xce\x26\xd0\x54\x3d\x70\x52\x4d\x9a\xaa\xd7\x1c\x1b\x6a\x6a\x5a\x33\x51\x18\x54\xa7\x99\x6a\xda\x1f\xa8\x26\x19\x36\x55\x0f\xec\x1d\x50\x7d\x5d\x0f\x54\x13\xb9\x9a\x99\xc3\xed\x0c\x18\xf5\xe4\xe8\x7f\xcd\x01\xa3\xe6\x0f\x34\xa3\x81\xa0\xf6\xea\xd6\xac\x56\x3b\x03\xd3\xa9\x82\x02\x08\xaa\xe9\x94\x4d\x01\x04\x91\xcd\x4d\x6e\x0a\x20\xa8\x46\x67\x9b\xfe\x07\xf6\x99\xe6\xac\x2a\x80\x20\xb2\xc9\x56\xcd\xd8\x5f\x23\x71\x78\x7a\x55\x1b\xe6\x03\xdb\xca\x2d\xb3\xfa\x84\xf9\x06\x8b\x79\xf4\x66\x98\x0f\x44\x6e\x74\xe9\x35\xe5\x11\x54\xab\xa5\x28\x82\x98\xcd\x7d\x5a\xf9\x4e\x16\x61\xf3\xd0\xac\xbc\x13\x28\xb1\xb8\x47\x6f\x66\x06\xb7\xfe\xec\x6f\x19\x3e\x84\x9b\xee\x08\xce\x1d\xad\x39\x36\xcd\x31\x3c\x56\xab\xbe\xd1\xcc\x15\x6b\x8a\x23\x88\xee\xa7\x77\x33\xe6\x07\x4e\x37\x6b\x33\xe4\x07\x22\x79\x01\xea\x8a\x20\xce\xb3\x5c\x55\x6c\xc3\x1a\xb9\x2d\x6b\x44\xd2\xae\xd3\xcf\x37\x55\x11\x74\x67\xc8\x69\xaa\x22\x48\xe7\xfa\xd6\x15\xc1\x3e\x30\x7f\x69\x95\x06\x99\x4e\xde\x68\x7a\x21\x18\x4e\x52\xdf\xf4\x42\xb0\x4f\x30\xbf\x54\x02\xc1\x70\x68\x62\x33\xbb\x17\xe4\xec\x61\x18\xd6\x03\xc3\xf1\xd9\xcd\xec\x5e\x90\x73\xfc\x61\x72\x94\xa6\x37\x82\x59\xf8\x4e\x6e\xc6\xf7\x40\x51\xa1\x9b\xe1\xbd\x36\xcf\x6b\xd4\x7f\xb3\xca\xce\x76\xd4\xbc\xe1\x8c\xd2\x81\x5d\x19\x8e\x5c\x99\x04\xfb\xd1\xe7\xff\x79\xe8\x08\x66\x0f\xaf\x09\x43\x72\xcd\x11\x9f\xe6\xbe\x37\x15\x13\x44\xb2\xcb\xb4\xe9\x98\x60\x97\xd1\x60\x86\xd6\xc0\xbe\x99\x38\x3e\x07\x6e\x82\xf3\x8a\x30\xd8\x06\x9a\xd3\x8d\x34\xed\x14\xa4\xf3\x30\x54\x3b\x41\x66\x81\xdd\xde\xb4\x4e\x30\x9d\x78\xac\x19\x2d\x03\xbb\x06\xb4\x92\xda\x09\xf6\xc7\x8b\x3b\xb0\x06\xb7\x8d\xc9\x6d\xa3\x64\x82\xfd\x06\x72\xa7\x56\xe0\x76\xb6\x11\x1b\x58\xa7\x6c\x46\xcb\xfa\xb4\xcc\x2a\xdc\xce\x1e\xb9\x4b\xb4\x45\x10\xe7\x43\x48\x5b\x04\x31\xad\xba\xb2\x08\x4e\xd4\xbe\x29\x8b\x20\xe6\xd9\x96\xa7\x80\x39\x83\xa6\xf7\xa5\xb2\x08\x62\xfa\x08\x35\xb1\x16\x74\x67\x1d\x68\xea\x63\x73\x2a\x5d\xc2\x26\xcd\x28\x19\xd8\x0d\xe4\x2e\xad\xe5\x83\x25\xfb\x95\xab\xf3\x81\x34\x4e\x91\x87\xbf\x31\x5c\xf0\xa2\xa9\x81\x20\x0d\xb7\x6f\x3c\xac\x39\x97\xad\x41\xe2\xa6\xe1\x35\x0d\xcf\xcf\x63\x0d\x0f\xa4\x41\x88\xa4\x69\x78\x20\xb3\xc0\x6c\x6f\x0a\x1e\x98\x05\x9b\x6b\x0a\x5e\x5b\x7e\xf2\x53\xa4\xba\x81\x12\x3e\x76\xf5\x34\x50\x82\xce\xd0\xa6\xa7\x81\x72\xde\x43\x86\xab\x40\x39\x87\xaf\xba\x35\x57\x57\x49\xbe\x10\x75\x37\x50\xce\xd9\x35\xf8\x04\xf6\xcd\x43\x63\x9b\x95\x0a\xaa\x99\x1f\xcd\x88\x14\xd8\x97\x0f\x67\x4e\xed\x03\xfb\xf2\xb1\xcc\x4a\xbd\x24\x9f\xb9\x4f\x2f\x28\xf2\x4e\x93\xfb\xd4\x04\x41\x73\x5e\xa1\xa6\x09\x82\xe6\xa4\x3c\x4d\x13\x6c\xdf\x19\xa3\x4a\x91\x8d\xf1\x31\x35\x78\xb7\xc8\xc6\xf8\x7c\xec\xfa\x43\x1b\xe3\x63\xba\x73\x02\x17\x4d\xed\x03\x27\x43\xa3\xa9\x7d\x20\xa6\xe7\x4d\xed\x03\x31\xbd\x54\xd4\x3e\xd0\x8d\xc4\x36\xb5\x0f\xf4\xdf\xa9\x90\xad\xc3\x4a\x2b\xd3\xfb\x5e\xc7\x03\x31\xe9\x4f\xe9\xda\x1b\x08\x67\xd6\xef\x9a\x5a\xff\x91\x8e\xce\x43\xbd\x6b\x6a\x20\x58\x52\xb4\x77\x45\x0d\x74\x47\x88\x77\x3d\x0d\x04\xcb\x2e\xf6\xae\xa7\x81\xee\x5c\x09\x5d\x4d\x03\xc1\x5a\xa4\xbd\xab\x69\xdd\x35\x57\x4d\xbd\xea\x06\xba\x3a\x41\xad\xea\x6a\x2f\x5d\xeb\x02\xdd\x01\x5a\x5d\xeb\x02\xdd\xac\x99\x6e\xea\x28\xe8\xe6\x9b\x74\x3d\x0c\x74\xd3\x97\xba\xce\x05\xba\x79\x34\x5d\xbd\xea\xc1\x4b\x8f\xaf\x89\xae\x49\x81\xee\xa0\xb3\xae\x34\x81\xee\x6c\x01\x5d\x67\xea\x86\xa5\xe2\x6c\x9f\x4b\xac\x27\x9e\xb1\x56\xd3\x20\x14\xe8\x8a\x49\x57\x90\x40\x37\x25\xa7\xeb\x47\x20\x9a\x9d\x57\x5d\x41\x02\xc3\x3c\x93\xae\x1f\x81\xbd\x4f\xaa\xa9\x20\x81\xae\xa7\x75\x05\x09\x24\x53\x0d\xbb\x7e\x04\x92\xb9\x75\xdd\x98\x56\x77\xca\x5b\x9f\x51\x5d\x3f\x02\xc3\x45\x53\x7a\x3a\x75\xf2\x45\x4e\xfb\x6b\x42\x9d\x64\x4c\x5f\x7d\x5d\xe9\x01\xc3\x47\x60\xd7\x79\xc0\x88\xbf\xcc\x83\xd2\x55\x22\x30\x9c\x87\xaa\x3b\x06\x13\xa4\x61\x55\x0c\x79\x81\x34\xac\x8a\xde\x04\xd2\xf0\x52\x35\x0a\x06\xc6\xb9\x92\x54\x29\x90\x06\xb7\x76\x57\xa5\xc0\x70\x5a\xaa\xae\x49\x81\x34\xbc\x5f\x14\x29\x30\xcc\x0d\xed\xc6\xc5\x40\x32\x27\xb3\xab\x56\xdd\x39\x7c\xcc\x3e\xe9\x7a\x14\xd8\x1f\x89\x1c\x86\xb9\x9b\x60\x38\x29\x7c\x37\x77\x13\x0c\x67\x73\xea\xda\x56\x2f\xf4\x6e\xd1\x8b\xd0\x0d\x95\x81\xe1\xa4\x10\xdd\x48\x59\x2f\x84\x5b\xf8\x22\xec\x8a\x15\x18\x06\x09\xbb\x5e\x05\x86\x09\x15\x5d\xad\x02\x39\xdb\xd4\xda\x12\x98\xc5\x53\xa8\x19\x81\x59\xbc\xf7\x0c\x80\x81\x59\x3c\xf7\xba\x12\x98\xc5\xe6\xd1\x8b\xc0\x6e\x0b\xcb\x3c\x23\x95\xef\x2f\xef\x17\xbd\x08\xcc\xe2\x25\x6e\x98\x0c\x64\xf3\x9b\xbb\xa6\xd4\xcd\xbe\xcc\xfe\xd0\x1a\x99\x69\x99\xdd\xbc\x35\x62\xe2\xd9\xc2\x77\x56\xd7\x93\x40\x09\xeb\xad\x27\x81\x6c\xcf\x68\x37\x4a\x06\xb2\xd9\xd9\x5d\x4d\x02\xd9\x28\x56\x57\x93\x40\x36\xd5\xbb\x6b\x49\x60\x16\xdb\xd0\x2c\x4b\x90\xed\x93\xec\x7a\x13\x98\xc5\x4b\x4c\x6f\x02\xd9\xcc\x85\x6e\x28\x0d\x64\x33\xbd\xbb\x26\x05\xb2\x71\xe2\xae\x49\x81\x59\xbc\xfd\x15\xa9\x7e\x72\x28\xbd\x50\xda\x69\x0a\xa7\x22\xf5\x12\x33\x6e\x06\xa2\x68\xf4\xdd\x20\x19\x88\x33\x1c\xa1\x2b\x3f\x60\x3f\x82\x69\x0e\xed\x07\x64\x93\xaf\xbb\xf6\x03\xa2\x1b\x1e\xea\xda\x0f\x88\x7a\x9e\x1e\x26\x42\xf6\x7e\x3a\xe3\x2c\xb3\x16\x4e\x1f\xeb\xd5\xae\x13\xf5\x7e\x6a\xe1\x5e\xad\x05\xd1\x34\x47\x2f\x77\xa5\xa8\x9f\x19\x65\xf9\x2e\xe9\x4a\x51\x3f\x33\xca\xd2\x43\xd4\xb5\xa2\x7e\x66\x94\xe5\xf3\xa8\x1b\x56\x03\xbb\x8c\xdd\xaa\x4a\xdd\x59\x66\xdd\xab\xc9\x91\xfd\xcc\x32\x8b\x91\x74\xc3\x6a\xe0\x2c\xcf\xd2\xcd\x83\xec\x27\x0f\xd2\x33\xad\x52\x75\x27\x94\x75\x75\x90\xae\x40\x75\xf3\x20\xbd\x76\x15\x28\x50\xaa\x67\xdf\x60\x5b\x77\xf5\xd0\xe6\xb9\xd6\xa9\xba\xab\x87\x7a\x59\xea\x54\xdd\x29\x66\x9b\x5b\x33\xb0\x06\x8a\x0b\xc0\x74\x05\x0a\x44\x31\xed\xbb\x6b\x50\xfd\x24\x46\x9e\x9f\x5a\x2d\x13\x23\x93\x75\x30\xde\xd6\x9d\x4f\x36\xa6\x65\xd6\x6b\x3a\x68\xd8\x7a\x69\x4e\xfd\x64\x46\x7a\xc1\xaa\x4e\x60\x97\xd1\x4e\xaa\x13\xd8\x65\x54\xc3\x68\x1d\xd8\x65\x9c\x45\xc3\x75\xdd\xdc\x48\x3e\x82\xba\xb9\x91\xdd\x45\x46\x7d\x3d\x29\x5d\xfd\xa4\x46\x7a\xdf\x1b\xd4\xeb\xae\x28\x9a\x6c\x4f\xa5\x0b\x9c\x8c\xf9\x6e\x54\x0f\x54\x7b\x80\xbb\x39\x8f\xdd\xa5\x42\xcd\xbf\xef\x6a\x18\xa8\x26\xf8\x74\x2d\xac\x9b\xe0\xe8\x00\xfc\xee\x00\x48\x50\xed\x95\xec\x8a\x19\xa8\xf6\x44\x77\x2d\x0c\xec\xed\xb3\x35\x35\xac\x9b\xf2\x88\x38\x75\x83\x84\xdd\x94\x47\xf3\xc6\xbb\x41\xc2\x6e\xca\xa3\x79\xd0\xdd\xc1\x93\xa0\x9a\x41\xdd\x35\x38\xb0\x7f\xca\xe9\x52\xe1\xc0\xfe\xa9\x7b\xf5\xe9\x45\x16\x64\x98\x21\xdf\xf5\x3a\xb0\xcb\x68\x12\x63\x87\xdd\xc5\x4e\xe6\xf8\x43\x6e\x59\x57\xfb\xfa\x7d\xfa\xb6\xdc\xb4\x4d\x76\x33\xc9\xa4\x67\x53\xed\x03\x55\x6f\xea\x5a\x5f\x77\x2d\x50\x67\x5a\xed\x5a\x5f\x37\x47\xd2\x93\xae\xf6\xf5\x93\xfb\xe8\xa5\xab\xf7\x81\xa8\x4e\xa1\xd5\x15\xbf\xee\xd4\x3e\x0e\x6b\xeb\x9a\x1f\x88\xe6\xea\x58\xdd\x38\x21\xa8\xe7\xc6\xd2\xf3\xfa\xe3\xdc\x91\xbe\xa6\x0d\x0a\x82\x7d\x74\xfe\x9f\xa7\xfd\x39\xc3\xbc\xdd\x85\x15\x63\xbc\x64\x1a\x3f\x0f\xc5\x9a\x3d\x2e\x6e\xe6\xc3\xd6\xc0\x20\x88\x6c\xca\x7a\xd7\xff\x40\xed\x7e\xf5\xe9\x7f\x20\xb2\x49\x27\xdd\x24\xc9\xbe\x4e\x0e\x20\x67\xd4\xd8\x20\xa8\xd3\x4b\xcb\xd8\x60\x37\xf9\xf1\x7c\xcb\xea\x89\xa0\x6a\x12\x5d\x4f\x04\xe7\xb6\x52\x13\x41\x4c\x3f\x8c\x74\x42\x30\xce\x91\x19\xe1\x03\xb3\xf8\x79\x63\x38\x0f\x9c\x9b\x56\x4b\x04\x91\x3c\xcd\x2a\x21\x08\xc3\x01\x5d\x25\x04\xd1\xec\x6a\xea\x2a\x61\x77\xf2\x1e\x8f\x4b\x25\x04\xc9\x61\x23\x5d\xfd\x03\xa3\x37\xff\xcb\x13\xb0\x91\xb3\x1f\x29\xca\x1f\xc8\x46\x1e\xbb\xf6\xd7\x5d\x47\xd3\x37\x82\xf6\xd7\x9d\xa8\xd5\x51\x3a\x5d\xfd\x03\xfb\x4a\xe0\x68\xf5\x3f\xb0\xcf\x30\x9b\x53\x00\xc1\xf9\x06\xd5\xff\xc0\xbe\xd9\xfd\xa5\x75\xda\x68\xe6\x2d\x77\x6d\x0f\x34\xa7\xb7\xed\xda\x1e\x68\x0e\x23\xef\xda\x1e\x68\xa6\xac\x77\x6d\x0f\xb4\x46\xa7\x7f\xd7\xf6\x40\x73\xba\x84\x6e\x90\x0f\x84\x81\xa1\xae\x00\x82\x38\xb3\x04\x0e\x83\x75\x20\x26\xe2\x3b\x34\x40\xd0\x1d\x5b\x39\x4c\x6d\x1c\x4a\x21\x1f\xdf\xc3\xe1\x84\xa0\x3b\x74\x6a\x28\x85\x20\xaa\xd3\x3a\x0d\xad\x10\x9c\x94\xbd\xa1\xef\x0d\x16\xc1\x9c\x67\xfb\xaf\x45\x24\xc7\x9d\xa3\xf8\x2c\x62\x88\x35\x97\xe2\x50\x00\xc1\x49\x5f\x1e\x0a\xe0\xc0\xf6\x9c\x38\x68\x68\x7b\xa0\x9b\x97\x35\x8c\xba\x81\x70\x89\xbe\x61\xaa\x22\xd8\x37\x75\xa5\xcc\x03\x23\x48\x36\x9c\xc8\x7a\xe8\x7b\x20\xf9\x06\x1d\xfa\xde\x70\xcd\x4a\x3f\x69\x87\xbe\x07\x92\xf9\xa6\xc3\x18\xd9\x50\x01\x39\xe5\xc3\x18\xd9\x30\x35\x91\xd7\xe2\xd0\x0a\xc7\xb1\x42\x6a\xae\x15\x8e\x63\x85\x6e\xcb\xf6\x4f\x24\x39\x70\xca\x87\x06\x08\xc6\x39\x08\x05\x10\x24\xc7\x5b\x0d\x05\x10\x74\xbb\xe2\x86\x02\x08\xba\x5f\x1d\xc3\x3c\x47\xd0\xfd\x36\x19\x3a\x21\xe8\x3e\x1b\x87\x61\x34\xd0\x8d\xc9\x0d\x2d\x11\x24\x13\x68\x87\x79\x8e\xa0\xdb\x15\x34\x14\x47\xd0\xed\x5c\x1d\x86\xd5\x40\xca\x9e\x5d\x5d\x12\xf4\xca\xdb\x63\x18\x54\x03\xc9\x1c\xd0\xa1\x5e\x82\xee\x57\xce\x50\x2f\x41\x32\xa5\x79\xe8\x8f\xa0\x9b\xfe\x34\x94\x45\x90\x1c\x2c\x36\x94\x45\x90\x1c\x62\x37\x94\xc5\x71\xe6\xeb\xa1\xef\x6f\xe8\x81\x20\x9a\x42\x31\x14\x41\x10\xd5\x95\xa0\x86\xd1\x33\x10\xd5\xa8\xf4\x50\xfb\x40\x1a\xee\x42\xeb\x03\x51\xcd\x4d\x18\x6a\x1f\x18\x0e\x25\x18\x46\xd4\xc0\xbe\x18\xa9\xa9\x11\x35\x30\x9c\xbb\x64\x38\x3a\x0f\x8c\xf8\x4b\x56\xd9\x50\x1e\xc1\x70\x50\xc1\x50\x1e\xc1\xae\x0d\x6d\x6f\xa4\x0e\x0c\x87\x2d\x0c\x85\x12\x0c\xb5\x76\x28\x94\x20\x39\x92\x67\x18\x93\x03\xc3\x4f\x9d\x61\x48\x6e\xb8\x1c\x8a\xb3\xc6\x0f\x25\x13\x0c\x3b\x4d\x86\x21\xb9\x51\x4f\xc6\x0f\xf5\x53\x3c\xc1\x3e\x34\xcb\x3c\xb4\xea\xa3\xdf\x3d\x78\x68\xd5\x47\xbf\x5b\xf3\xd0\x2a\x2f\x2e\x1f\x50\x86\xd0\xc0\xe8\xf4\x08\x0f\x35\x10\x0c\x57\x64\x1d\x86\xcb\x46\xc3\xc1\x9b\x3f\xf4\x66\x23\x34\x36\x9c\x5e\x71\x68\x78\x60\x38\x6c\x79\x68\x78\x60\x74\xde\x5c\x43\xc3\x03\xa3\xd3\xcd\x37\x34\x3c\x90\x86\xb7\xa9\x86\x07\xb2\x23\x36\x87\x86\x07\x46\xf7\x02\xd3\xf0\xc0\xe8\x9e\x25\x05\x0f\xe4\xec\x29\x31\x52\x06\x46\xef\x16\xd9\xfe\x9d\xfc\x1b\xdb\x50\x93\x03\xb3\x78\x4f\x6a\x72\xc3\x84\x47\x3b\xa1\x87\x26\x07\x66\xf1\x89\xa5\xc8\x81\x6c\xa0\x66\x28\x6d\xe3\x48\x5b\x73\x6b\x1e\x59\xa7\x2f\x19\x41\x1b\x4a\x1b\x98\xc5\x47\x83\xce\x06\xa2\x98\x16\x3d\xf4\x33\x30\x8b\x37\xaf\x7a\x06\x66\xf1\x9a\x52\xcf\xc6\xa0\xaf\xc1\xa7\xa4\x76\x06\x66\xf1\xca\xd6\xce\x40\x9c\x69\xd9\x87\x76\x06\xb2\x31\xa4\xa1\x89\x81\x6c\x7e\xd5\xd0\xc4\x40\x9c\x99\xeb\x87\x26\x06\xb2\xb9\x47\x43\x13\x03\xb3\xf8\x5f\x8a\x18\xc8\xf6\xc8\x0f\x45\x0c\x64\xfb\x70\x86\x29\x8e\x60\x16\x9f\xdf\xaa\x19\x98\x85\x0e\xbc\x61\x70\x0b\xcc\xe2\x63\x58\x59\x1b\xd3\x9e\x05\x6a\xa4\x97\x0d\x03\x5a\x3e\xe5\xd5\x32\x30\x8b\xb7\xaf\x66\x35\xe6\x39\x4b\xee\xd2\xc3\x9f\xaa\x35\x27\x53\xdb\x1a\x2e\xd5\xe1\xa8\xc8\xa1\x6e\x81\x59\x7c\x4b\x69\x5b\x60\xff\x1b\x6d\xe6\xe0\x34\x50\x1c\x52\x3f\x8c\x84\x0d\x17\xea\xb0\x9f\x7b\x28\x65\xc3\x85\x3a\xec\x63\x1e\x5a\x19\x28\x06\x3e\x87\x56\x06\xf6\xbf\x59\x66\x4d\x2f\x92\x81\xbc\x83\x15\xb5\xe1\x3a\x1d\xe6\x92\x0f\x4d\x0d\xec\x9f\xfa\x7f\x9e\xe3\xcb\x0e\x08\xef\x28\x55\x0d\xec\xdf\x5a\x31\x9b\xe4\xb8\x9a\xad\xa9\xab\x81\x6c\x32\xdc\xd0\xd5\x40\x74\xb3\x20\x86\xae\x36\xee\xd3\xdb\xc0\x2e\x74\x35\x50\xc2\x5b\x43\x57\x03\xfb\xdf\x68\x13\xbd\x0c\xec\xe7\x9c\x65\x36\x00\xb1\xb5\xee\x8a\xab\x43\x2f\x1b\x7a\x99\x2b\x09\x0e\xc5\x6b\x18\x6f\xf3\xb3\x4e\xef\x02\xf1\x73\xc9\xd2\x61\x56\x27\x28\xd5\x0b\x47\xf1\x02\xc5\x15\x3f\x87\xc9\x99\xa0\x38\x19\xd3\xd0\xb1\x06\x3e\xf5\x73\x4d\xd7\xa1\x4f\x81\x52\xad\xbd\x3a\x05\x76\xc3\xb9\x35\xab\xf0\x9c\xde\x11\x37\x67\x15\x1e\x7b\x47\xbc\x1b\x0c\xa6\x81\x52\x3d\x5c\xb5\x0b\x94\xf3\x3d\xa0\x75\x81\xbd\x35\xce\x83\xd6\x05\x76\x99\x5b\xb3\x5a\x8f\x61\x5a\xdc\x7a\x98\xa1\x09\x76\x19\x47\xa7\x89\x81\xe2\xbc\x29\xc3\x14\x4d\xb0\xff\x8d\x56\x32\x5e\x07\xe2\xac\x27\x31\x14\x36\xb0\x2b\xcb\xa1\x68\x6c\x60\xff\x96\xf3\xa5\xb1\x81\x52\x3d\x62\x85\x0d\xec\x9f\x8e\x3f\xbc\xb3\x15\x3a\x10\xcd\xe8\xfe\x50\xe8\x40\xb1\x43\x7c\x28\x74\xe3\xac\xd3\x71\x0e\xc0\xf6\x59\xf6\xb1\xd8\x3e\x3a\x1d\xd8\x65\x56\xd2\xf6\x79\x4d\x74\xf2\xac\x18\xfc\x1b\x2e\xc1\x91\x3c\x7b\x7a\x1d\xd8\x65\xec\x57\xb1\x03\xbb\x8c\xb6\xd5\xe2\x86\x81\x3d\xbf\xf0\x1c\x68\x06\x8a\x1d\xea\x43\xb1\x1b\xc6\xfa\x5c\xc1\x76\x18\xeb\x03\xbb\x8c\x36\xd3\xf6\x40\xb1\x5f\x7f\x68\x7b\x60\x1f\x30\x97\xa0\xba\x07\xa2\xcc\xf3\x7f\xa7\x62\xfa\x1e\x5b\xd3\xf7\x40\xd4\xf3\x18\xd1\xf7\x86\xc3\xd4\x5c\x3d\x7a\xe8\x7b\xc3\x85\x39\x4c\x10\x1d\xfa\x1e\xd8\xae\xe8\xff\x79\xe2\x5d\xac\x03\x53\x1f\x46\xfc\x40\x9c\x69\xa5\x87\x12\x08\xaa\xf9\x80\x43\xe3\x03\x7b\x0f\x1e\x89\xf5\xff\xe8\x79\xf2\xcd\xa9\xf2\x0d\xa2\x79\xe1\xc0\x86\xa1\xe0\x81\x5d\xe6\x1e\xac\x3f\x86\x17\xa6\xaf\x0e\xf3\x38\xc1\xfe\xbf\x7d\x23\x4d\xe3\x7e\xa0\xda\xf1\x3a\x15\x41\xb0\xff\xad\x51\x56\x2c\xb3\x53\x89\xb7\xdb\x54\x05\xc1\x2e\x0b\xca\x9a\x65\xae\x3e\x96\xdd\xde\xb4\xcc\xec\x27\xae\x89\xa9\xf9\x4d\x57\xe1\xf0\x99\x39\x55\x3f\x50\x8d\x94\x4d\x3d\x0f\xec\x7f\xb3\xcc\x23\x0e\xc7\xc2\x72\xd9\x4d\x43\x7d\x60\x97\xb1\x5b\xed\x6f\x9e\x11\x6d\x5c\xee\xd3\xa1\x6a\x20\x92\x93\x3e\x4d\xa3\x7d\xa0\xaa\x62\xd3\x68\x1f\xd8\xff\xe6\x4f\x3d\xe2\x70\xdd\x10\x7a\xa6\xa6\x4a\x08\x76\x19\xb5\xd0\x09\xc1\x2e\x63\x7b\xda\x1e\xd8\x65\x89\x32\x0f\x8f\x94\xc8\x34\xe8\x54\x9f\x86\xfc\xc0\x2e\xeb\x94\xd9\xca\xe4\x44\x26\xd7\x35\x99\x1a\x1f\xa8\x4e\x3c\x37\x35\xbe\x49\x02\x64\x1a\x3f\x77\x6b\xcd\x58\x5e\x23\xb9\xb2\xdc\x54\xf0\x40\x75\x00\xeb\x54\xf0\x40\x75\xf0\xd6\x54\xf0\x40\x75\x20\xe8\x54\xf0\x40\x64\xa7\x43\x98\x1a\xde\x74\x4e\x56\xf3\x36\xa6\x8a\x07\xf6\xff\x51\x57\x85\x0e\xec\x32\x76\xa1\xd1\x81\x18\x0e\xcb\x9d\x2a\x1d\xd8\x65\xfe\xd6\x36\xc9\xf6\xa1\xf0\xf4\x9f\x4a\x1d\x88\xec\x80\x9c\x69\x54\x10\x44\x71\x8e\x84\xa9\xd6\x81\xc8\xae\x8f\x3b\xf5\x3a\x10\xd9\xe8\xeb\x34\x0a\x08\xec\x1a\x9e\x06\x01\x41\x74\x67\xaf\x9e\xda\x1f\xd8\x77\x99\x47\x67\xab\x64\x66\x2b\xaf\x1e\x9c\x8d\x92\xed\x5b\xf1\x38\x6c\x13\x56\xf7\x70\xf6\x82\x69\x64\x70\x32\x11\xab\x99\xb9\x53\x6b\x04\xcd\x41\xf3\x53\x43\x04\x67\x20\xdc\x54\x10\xc1\x19\xe1\x36\x8d\x0b\x82\x98\x08\xed\xd4\x19\x41\xcc\xf3\x5f\x36\x06\x33\xba\xb8\xfa\xf1\x54\x19\x41\x98\x34\x3a\x75\xc2\xe9\x7a\x1f\x67\x5b\xb6\x45\x21\xa7\xe0\xfc\xd0\xa6\x28\x8c\x01\x3e\x3f\xb4\x8e\x05\xb5\xe7\xf1\x3d\xf5\x3f\x90\x1c\x70\x35\xf5\x3f\xd0\x7d\xcf\x4e\xf5\x0f\x74\x3f\x46\xa6\xfa\x07\xba\xaf\xca\xa9\xfd\x81\xee\x57\xc6\x34\xec\x08\x92\x23\xb5\xa6\x61\x47\x90\xb2\xf7\xa8\x29\x9a\x20\x99\xcf\x3e\x8d\x44\x82\x28\x0e\x4c\x98\x46\x22\x41\x9c\x85\x9c\xa6\xa1\xc8\xe9\x88\x3d\xbc\x7b\x1a\x8a\x9c\x8e\xd8\xf3\x99\xa2\x83\x82\xbe\xbf\x9c\xfe\xf3\x1d\x3e\x55\xd4\xe9\x80\x3e\x9f\x10\x2a\x2a\x48\x66\xc5\x4f\x83\x97\x20\x39\x4a\x61\x6a\xad\x20\x65\x1f\x4b\xc6\x33\xc1\xf0\x13\x75\x2a\xb2\x20\xea\xf4\xb8\x0d\x68\x82\x61\x02\xea\x54\x6e\xc1\xf0\x53\x66\x1a\xe3\x04\x69\x0c\x37\x66\xf3\x6d\x0c\x87\x0a\x4f\x75\x17\x24\x57\x38\x9e\xea\xee\x6c\xf6\x24\xd0\x78\xba\x2d\x18\xe6\xe3\x4e\x45\x16\xa4\xe1\x55\xa3\xa2\xce\xa3\xa8\xfc\x50\x45\x9d\x4e\x0c\xeb\x27\xf6\x34\x52\x09\x86\x9f\xbf\xd3\xfc\x4e\x30\x3a\x1f\x3d\xd3\xf4\x4e\x30\x3a\x5f\x15\x53\xb9\x9d\x47\x6e\x39\xd3\xca\x2d\xc8\xc6\xda\xa7\x22\x0b\x66\xf1\x31\x66\x40\x12\xcc\x92\x3d\x30\xcf\x51\x37\x15\x99\xde\x9f\xa9\xdb\xce\xe3\xb6\x1c\xab\x6e\x3b\xcd\xd2\x34\xac\x34\x95\x5b\x90\x0d\xe6\x4f\xe3\x91\x60\x16\xba\xaf\xa6\xba\x3b\x1d\xe5\xe7\xd8\xc6\x69\x9a\x26\xd8\x5b\xf3\xa7\x9e\x13\x26\x61\xe9\x83\xfc\xe7\xa9\xde\x4e\x83\x8f\x76\x89\x4e\x93\x37\xe7\xd0\x7d\x7c\x8c\x2b\xb3\xa0\x04\xea\x33\x75\xd9\x39\x30\x3f\x1c\x6c\x9a\x96\x39\xcf\x70\x3d\x7a\x26\xa6\x32\x0b\xf6\xc3\x99\x23\x31\x55\x13\xec\xff\xa3\xae\x1a\xee\x3c\x0b\x7a\x78\x1a\x54\x5c\xb0\xcb\xdc\x87\x17\xdb\x59\xd0\x83\x6e\x99\xa9\xe4\x82\x5d\x46\x0b\x68\xb9\xf3\xac\xe8\xe1\x99\x36\x24\x39\xe7\x11\x42\x8f\xcf\x53\x4d\x48\xb2\x3b\xc8\x66\xea\xbe\xd3\x55\x3e\x5c\x7c\x61\x1a\x92\x9c\x27\x9b\x13\x4b\x9c\x86\x24\xa7\x6b\x5c\x9e\xc7\xbd\x21\x49\xb0\x1f\xf7\xb4\x9e\x92\x0c\xa2\xd8\x7b\x3f\xb5\xe4\xa9\x25\xbb\x0c\xc4\xd4\x92\xa7\x0b\x5a\xba\x6a\xc2\x54\x93\xa7\x9a\xec\xaa\x0c\x53\x27\x9e\x66\x87\xa6\xf3\x7f\xb6\x0b\x4e\x7c\x26\x4b\x9e\x66\x87\x82\x62\x47\xd1\x54\x93\xa7\xc1\xcb\xb3\x35\x5b\xe5\x04\x2f\xbd\xa5\xd5\x64\xb0\x6b\xe1\x1e\x6c\x15\x03\x9a\x36\x80\x9a\x3c\x4f\x40\xd3\xb7\xa2\x9a\x0c\xf6\x07\x14\x27\x57\x4d\x06\xbb\xcc\xdf\x7a\xfd\x5c\x7e\xb7\xf1\x53\x2d\x19\xec\x0f\x1e\x8e\x44\x4d\x06\xd5\xde\xe6\xa9\x25\x83\xfd\x81\x42\xbd\xb4\x64\x50\x5d\x2f\x6b\x6a\xc9\x60\xbf\xee\x39\x10\x2d\x19\xec\x57\xbb\x65\x36\x09\xd1\xcb\xec\x6a\xfe\x53\x73\x06\x4d\xd5\x9f\x8a\xf3\x24\x3a\xe9\x6a\xfb\x53\x49\x06\x43\x5f\x9d\x06\x27\x41\xee\x67\x5b\x56\xf4\x36\x67\x86\x12\xaf\x87\xdb\xa0\x1e\xbf\x73\x94\xe3\x74\xfa\x16\xaf\x60\x45\x7a\x3a\x7b\x8b\x1f\x58\x06\x26\x41\xd4\x4a\xd7\xca\x54\xa4\x41\x73\x22\x9d\x69\x4a\x2a\xd8\x67\x8f\xa3\x50\xa4\x41\x98\xaf\x3e\xf5\x68\x10\xcd\x2b\x46\x67\x06\xe1\x5a\xb1\x53\x67\x06\xd1\x9c\x7c\x77\xea\xcc\xe0\x8c\xb9\x9e\x2a\x33\xe8\xce\xb1\x39\x35\x66\xd0\x9d\xbe\x71\x6a\xc7\x13\x13\x9e\xfe\x50\xe9\x05\xfb\x60\x2d\xb3\x4e\xcb\xaf\x15\xce\x92\xa9\xab\xa0\x3b\x3d\xe4\x54\x6a\x41\x3a\x77\xae\xf1\x47\xd0\xab\x97\xad\xfe\x0a\x7a\xf5\x1e\x55\x5f\x41\xaf\xde\x7a\xda\x2b\x48\x0e\x7c\x9b\x46\x29\x41\xaf\x74\x5a\x4c\xa3\x94\xd3\x69\x57\x4b\xfd\xfd\xe1\xad\xad\xee\x82\xe4\x50\xbc\x69\xb2\x2b\x48\x0e\xc5\x9b\x86\x31\x41\x72\x58\xdf\xd4\x7f\x41\x72\x8c\xd8\x54\x76\x41\xb2\xe3\x7f\xea\xba\xa0\x57\x9f\x54\xce\xb6\x3a\x5f\xbf\x2c\x38\x5f\xaa\x2e\xe8\xb5\x5a\x3b\xdb\xe0\xb5\x0d\xd8\xbc\x06\x0b\xe2\x24\xc9\x4e\xcd\x14\xc4\x99\xf4\x69\x3a\x06\x71\x7e\xbc\xdc\xbd\x25\x8d\x45\x82\x61\x1a\xfa\xd4\x42\xc1\x38\xcf\x23\x2d\x14\xa4\xc1\x27\xe1\xe5\x88\x40\x90\x73\xb2\x28\x59\xe4\x5b\x7b\x52\x94\x2d\xe2\xad\x4d\x94\xe0\x52\x2d\xc1\xe8\x7c\x4e\x5c\x9a\x25\xc8\x19\xd9\xbc\x14\x4b\xb0\xdf\x3e\x8d\xb2\x61\x19\x03\x5f\x31\xe6\xcb\x3c\x53\x30\x3a\x51\x96\xcb\x3c\x53\x90\x73\x72\xfb\x8f\x45\x84\x0d\x86\x3f\x5c\x16\x11\x36\xc0\x65\x2f\xe5\xf3\x72\x6c\x1f\x97\xcd\xa5\x7b\x82\x59\xf8\x0a\xbd\x54\x4f\x30\x0b\x4d\x7d\x69\x9e\x60\x16\xce\xdb\x65\xdc\x11\x64\x63\xd4\x97\x89\xa7\x60\x16\x5e\xec\x97\x7a\x0a\x66\xe1\xcb\xe7\x32\x3a\x79\x05\x1f\x30\xc5\x1f\x5a\xc7\xf0\x03\xc6\xe3\xb2\x8e\x41\xe7\x3c\x4f\xea\x4b\x5f\x05\xd9\x34\xc0\x4b\x35\x05\xd9\x70\xc6\x65\xb4\x12\x64\xe3\x20\x97\xd1\x4a\x90\x0d\xf3\x5f\x86\x26\xc1\x2c\x7c\xb5\x5f\x2a\x28\x88\x9f\x56\x70\x19\x62\xbc\x1c\x84\xa7\x16\x5c\xca\x25\xd8\x65\x6e\xce\xb6\x76\xf1\xc6\x7c\xb6\xe7\xb1\x25\xd6\x44\xa4\x0f\xf9\xd2\x24\xc1\xfe\x29\xc7\x6b\xb4\x10\xec\x32\x0e\x58\xbb\x04\x25\xb0\xe1\xcb\x10\x1f\x28\xde\x26\x97\xde\x07\xf6\xeb\x97\x66\xd3\xfb\x40\x9c\xc9\xc6\x2e\xcd\x0f\x14\xef\xc3\x4b\xf1\x03\xa5\xda\xba\x7a\x1f\x28\xde\x74\x97\xde\x77\xe9\x7d\xc9\x2a\x28\x7e\xa0\x78\x07\x5f\x8a\x1f\x28\x3e\x8c\x2e\x43\x83\x97\xb3\x79\x3a\x3c\xee\xd2\xfc\xc0\xfe\x32\xa0\x2d\x55\xbf\xcb\xe9\x3c\x9d\x1c\xe7\xd2\xfd\x40\xf1\x93\xfd\xd2\xfd\x2e\x47\xe0\x25\x3e\x0d\x2e\xe5\x0f\xec\x32\x4e\x97\xf6\x07\xe2\xac\xd9\x7e\xa9\x7f\x60\xb7\xaf\x65\xb6\xc8\x46\xf1\xb3\xfd\xd2\xff\x40\x51\x01\x2e\x43\x82\x17\xcb\x72\x18\xdf\xbc\x74\x36\x10\x61\x06\xe3\xa5\xa1\x81\xfd\xa1\x41\xfd\x55\x34\x50\xed\x68\xbe\x54\x34\xb0\x7f\xea\xe6\x3c\x36\x46\xcc\x85\xf9\x96\x97\x3e\x06\xf6\xe6\xfc\xad\x07\x57\xed\x22\xc3\x59\x2e\x65\x0a\xec\xef\x16\x76\xab\x4d\x81\x6a\xe4\xf9\xd2\xa6\x2e\x86\xcc\x99\x25\x7d\xe9\x44\x20\xce\xe2\xec\x97\x52\x74\x31\x71\x66\x72\x02\xed\x4b\x05\x02\xd5\xc8\xf9\xa5\x02\x81\x6a\x84\xfa\x32\xbc\x77\x35\x33\x83\xe8\xa5\xb8\x0c\xe6\x81\x5d\x46\x5d\xf5\xa2\x0b\x09\xca\x2e\xb6\x71\xa9\x37\x97\x7a\xc3\xb1\x39\x76\x0d\x34\x23\x0a\x97\x43\xd7\x2e\x57\xb5\xe0\x43\xfb\x32\x7d\x13\x34\x27\xde\xbb\xd4\x22\x10\xe6\x16\x5e\x6a\xd1\x65\xcc\x2f\xbb\x79\x8f\xbf\x93\x5e\x32\xdd\xbc\x67\x99\x69\x4f\xce\xda\xa5\x97\x5e\x04\xce\xac\xa7\x97\x5a\x04\x62\xf2\x0d\x71\xa9\x45\xe0\xcc\x13\x72\x69\x45\x20\xe6\x29\xf2\x56\x50\x81\x4c\xc6\xbd\x0c\xf9\x81\x54\x7e\xf5\xbf\x5f\xd5\x97\x11\x41\xd0\x9d\x47\xe4\xd2\xa3\x40\xaf\xde\x13\x6a\x14\xe8\xd5\x67\x9f\x16\x05\x92\xe3\xc1\x2e\x63\x84\xa0\x3b\xc5\xf3\xa5\x57\x5d\x0e\x8a\xb3\xd9\xcd\xe9\xbc\x86\x9f\x2b\x9c\x2e\xe3\x81\x97\xa3\xdd\xbc\x20\xd4\x2a\x30\xec\xf4\xbc\xb4\x2a\x10\xdd\xe1\x74\x97\x56\x05\x92\xb3\xd3\x5d\x0a\x14\x18\x76\x82\x5d\xfa\x13\x48\x83\xcf\xd8\x4b\x7d\xba\x1c\x00\xe7\xcd\xa0\x3d\x81\x9c\xbd\x17\x94\x27\x90\x73\x72\xf3\x56\x72\x12\xae\xf6\x16\x37\x46\x08\xa6\xab\xff\x5e\xda\xcf\x75\xf9\x66\xe0\xbf\x94\x1a\x30\x8b\x0f\x5a\x43\x7f\x60\x16\x1f\x8d\x8a\xc9\x75\xe2\x77\xd6\x48\x31\xb9\x8c\xdf\x75\xff\xcd\x76\xbd\x98\x49\x16\xa9\xbb\xf4\x92\xeb\x84\xea\xac\xa5\xbe\x01\x8a\x1f\x7d\xd7\x75\x8e\x8c\xe7\x2c\x5f\x8b\x97\x0a\x02\xe2\xac\x57\x74\xa9\x20\x97\x59\x95\xae\xaa\x7a\xe9\x20\x97\x91\xba\x76\xca\xac\x82\xcb\xec\xbb\x18\xc7\xa5\x84\x5c\x86\xea\x5c\x7a\xe3\x32\xad\xf2\x32\xad\xd2\x25\x59\x2f\xc5\xe4\x32\xad\x32\x79\xc1\x28\x26\x97\x69\x95\xe9\xfc\xd6\x36\xb9\xcf\x13\xd9\xe3\xb3\x01\x08\xdf\x9d\xcf\x2a\xcd\x04\xc4\x59\xe3\xf2\x32\x7c\x07\xf6\xb7\x90\xbb\xb5\x51\x6e\xfb\xfb\xb3\x4d\x60\xab\xdc\xc6\x3b\xf8\x37\xed\xe4\x72\x99\x7d\x33\xdb\x2f\x93\x29\x2f\x12\x27\xcf\x52\x49\x97\x7e\x72\x3d\x4c\xfd\xe6\xa7\x9b\x41\x3d\x50\x1b\x62\x73\xa9\x22\x60\xdf\xad\xec\x54\x17\xb9\x5c\x78\xc2\x8e\x99\xcb\x98\x1e\xa8\xe7\x52\xd5\x4f\x80\x51\x9c\x4b\xc9\x00\x31\x9c\x58\xf5\xd2\x32\xc0\x99\xb0\xe7\x32\xdc\x06\xf6\x6b\x96\xed\xeb\x0f\xa0\x57\x3f\x6c\x9c\x01\x05\x24\x07\x2d\x5e\x86\xc9\x40\x9c\xe9\x86\x2f\xe3\x64\x60\xef\xd4\x9f\xda\xbc\xa4\x3e\x16\x27\x38\xbb\x74\x0f\x10\x67\x96\xbf\x4b\xd3\x00\xd9\x29\x8d\x2e\x4d\x03\x64\x27\x85\xba\x34\x8d\x4b\xd3\x30\xc2\x72\xa9\x12\x97\xf3\x9b\xf8\x72\x53\x25\x2e\xe7\x37\xf1\x0e\x31\x96\x06\x72\xf6\x4d\xa9\x5d\x5c\x4e\x79\xe2\x05\xa2\x5d\x80\x28\xe5\xfc\x9b\x95\x27\x96\x56\xf2\xf9\x3f\x6b\xff\x9e\xda\xbb\x07\x6b\xff\xf2\xd9\xe8\x6d\xa3\x60\x80\x12\xb8\xea\xa5\x60\x80\x7d\x0f\xba\x07\xeb\xfe\xd2\x67\xe4\xc5\xa0\x4c\x80\x7a\x5a\xcd\x30\x17\xd8\x6f\x36\xcb\x3c\x36\xe2\x5c\xae\x20\x7e\x29\x18\x20\x4c\x61\xbf\x14\x8c\xcb\xcc\x46\x5f\x20\x46\xb9\x40\x4c\xaf\x05\x83\x5c\x20\x6a\x34\xcb\x3c\xb2\xcf\x57\xcf\xde\xfe\xad\x9a\xdc\x3f\xaf\xa2\x46\x51\xb1\x88\xee\x64\x7e\x78\x2b\x1d\xa0\x57\x3e\xdf\x6e\xa5\x03\x24\x07\x46\xde\x3a\x07\xe8\x95\x67\xd4\x6d\x7c\x0b\xf4\x4a\x5b\xdc\x6a\x08\xe8\x95\x87\xdb\xad\x86\x80\x38\xb3\x97\xdc\x7a\xc8\xed\x78\x37\x63\x20\xb7\x51\x30\xd0\x2b\x27\xe0\x36\x01\x12\xf4\xca\x2b\xe2\xd6\x4d\x6e\x47\xc0\xf1\x28\xbe\x75\x13\x90\x1c\x85\x73\xeb\x26\xb7\x23\xe0\x38\x25\xb7\x6e\x72\x3b\x02\x8e\xbb\xe7\xd6\x4d\x40\x34\x63\xc5\xb7\xda\x01\xce\xa2\x4b\xb7\x71\xb2\xdb\x45\x0b\xa7\x1b\xb3\x9a\xac\x92\xe0\x87\xdb\xad\x89\xdc\xae\x63\x38\xff\xe0\xd5\xb7\x41\x34\x30\x8c\x85\xde\x8a\x0a\x48\xc3\x73\xa8\xa8\x80\x68\xde\x80\xb7\xa6\x02\xd2\xa0\x73\xe1\xd6\x54\xc0\xf0\x22\xbf\x0d\xb4\x81\xe1\x53\xf0\x36\xce\x06\x86\x9d\x58\xb7\x61\xb6\xdb\x91\x75\x3c\x1b\x6e\x15\x07\xa4\xc1\x35\x78\x1b\x65\x03\x51\xcd\xfe\xba\xb5\x1e\x90\xc6\xb0\xc8\xa6\x4a\x7e\x59\x57\x7f\x6a\x5b\x25\xdb\x8a\xd3\xaf\x1b\x81\x61\xd7\xdc\x6d\xe0\x0d\xa4\xc1\x27\xd7\xad\x2d\xdd\x8e\xbf\xab\x1e\x99\xed\x93\x6c\x1f\xdb\xc2\xf6\x71\x48\x1e\x4f\x99\x5b\x57\x02\xe3\xb4\x98\xaa\x04\xc6\x39\x2e\xe3\x70\xb7\x03\xf7\xf8\x30\xba\x0d\xc3\xdd\x0e\xdc\xc3\x77\x6e\xa3\x70\xb7\x03\xf7\x78\xd0\xdf\x06\xe1\x6e\x47\xe6\xf1\xa5\x76\x1b\x6f\x03\xc3\xde\xaa\x5b\xed\x02\x51\xed\x93\xbc\x55\xac\xdb\x11\x76\x84\x8a\x6e\xad\x08\x0c\x67\x55\xbe\x0d\x87\xdd\x26\x51\xba\x42\xc8\xad\x29\x81\xa8\xd3\x8b\x5c\x53\xba\x1d\x3b\x67\xfb\x2b\x4a\xb7\x63\xe7\x6c\x1f\x3d\x09\xe4\x9c\xdd\x98\x27\xd3\xe1\x74\x5e\x3e\x6a\x12\x18\xae\xa7\x7c\x6b\x49\x20\x67\x1c\xe6\x56\x92\x6e\x07\xdd\xf1\x3a\xbb\x75\x24\x90\x73\x76\x5b\x9e\x4a\xc7\xe1\x79\x2a\x75\x24\x90\x73\xf6\x87\x9e\x4a\xc7\xe1\x79\x91\x19\x49\xbb\x1d\x87\xc7\xeb\xf8\x36\x92\x06\xb2\x8b\xa0\xdc\x46\xd2\x40\x76\x25\xf3\xdb\x48\x1a\xc8\xc6\xde\x6f\x15\x0c\xe4\xcc\x57\xfd\x6d\xd8\x0c\xc4\x99\x8c\xe8\xd6\xca\x40\xce\x98\xd5\xad\x81\x81\xe1\x3c\x03\xb7\xc2\x04\xb2\x19\x8c\xb7\xc2\x04\x66\xf1\x39\x64\xf8\x09\xec\x57\x2a\x87\x61\xf8\x09\x4c\x53\x37\x6f\xc3\x4f\x60\x3a\x7e\xe1\x56\xb5\xc0\x2c\x7c\x89\xdd\xa6\x5b\x82\xe9\x4c\xc7\xb7\xf2\x05\xb2\x59\x8d\xb7\xee\x75\x3b\x9e\xce\xe7\x90\xa2\x05\xf6\x51\x50\x73\xe3\x4f\xb7\x43\xe5\xbc\xd4\x75\x2f\x90\x4d\xa4\xbc\x4d\xa4\x04\x71\x06\x99\xdd\xea\x18\x98\x85\x0f\x8c\xdb\x30\x15\x98\x85\x4f\xc4\xdb\x28\x15\x98\x26\x64\xdd\x46\xa9\xc0\x2c\x7c\xf8\xdd\x6a\x1c\x98\x76\x52\xdf\x7a\x1c\x28\xd1\xdd\xa3\x15\xef\x54\xdc\xe7\xb4\x43\xf3\x40\xee\xa7\xc8\x93\xb4\x31\x8b\xaf\x31\xa5\x0d\xec\x8a\xb3\x7d\x63\x4d\xb7\x63\xdf\xcc\xe7\xbc\xb5\xaa\xdb\x71\x6e\x28\xfc\xad\x36\xdd\x8e\x73\x73\x5e\x9d\x5b\x49\x02\x25\xe8\x5f\xb8\x95\xa4\xfb\x84\x9a\xbc\x4b\x54\xa2\xdb\xf9\xfe\xed\x35\xbe\x75\x22\x50\x1c\x0e\x78\x9b\x5d\x09\xf6\xbf\x79\x70\x9e\x15\x07\xba\x9d\xd7\xb3\x21\x29\xb0\xcb\x68\x4a\x7d\xea\x36\x4c\x45\x07\xc3\xad\x4f\xdd\x27\x4c\xe5\x45\xaa\x50\x81\x5d\x46\xc5\x14\x2a\x10\x27\x59\xf0\xd6\xa8\x40\x71\x2a\x98\x5b\xa3\x02\xc5\x69\x44\x6f\x8d\xea\x3e\x01\x29\x1f\x25\x2a\x15\x28\x4e\x20\x78\xab\x54\xb7\xf1\x28\xe7\xa9\xb9\x75\x2a\xb0\xcb\x3c\x10\x9b\xc4\xd8\x93\xf3\x4f\xdd\xc6\x9e\xee\x79\xda\xc4\xdf\xda\x26\xd3\xaf\x30\xfe\xcd\x30\x13\x28\xda\xea\x6d\x94\x09\x14\x27\x51\xbd\xf5\x31\x10\x67\x20\xe5\xad\x90\x81\xfd\xea\x74\x6b\xd6\xde\x64\xcc\xf8\xfd\x61\x09\xcd\xdb\x70\xd0\xad\x8a\x39\x9f\xd0\x6d\x38\x08\x94\x7a\xf6\xe6\x69\xba\xcc\xae\xf3\x29\xa1\x77\x81\xa2\x7c\xdf\x6a\x17\x88\xee\x9a\x72\xb7\x8a\x05\x8a\xda\x7e\x6b\x58\x20\x7e\x26\xa7\xdc\xda\x14\xd8\x7b\xa0\xde\xda\x14\x28\x4e\xbc\x73\x1b\xe6\x01\xfb\xdf\x38\xc3\x5a\x12\xd8\x65\x1c\xb0\x4a\x04\xb2\x29\xd1\xb7\x01\x1b\x50\x14\xfc\x5b\x21\x02\x67\xa5\xa7\xdb\xe0\xcc\xfd\xd8\xc9\xc8\xf6\x95\x1f\x50\xce\x17\x89\xee\x03\x76\x0d\xb8\x6e\x95\x1f\xb0\x0f\x83\x2b\xcd\xe8\x0c\x28\x3a\xcc\x6d\x24\xe6\x3e\xc9\x8b\xe7\xd0\x6c\xde\xc7\xef\x20\x5f\xe1\x26\x2f\x82\x38\x29\xb3\xb7\xc1\x18\x10\x27\xe8\x74\x1b\x8c\x01\x71\x66\x86\xbe\x55\x27\xb0\xff\xcf\x32\x6b\xb1\xac\x85\x45\xd6\x62\x99\x89\xe7\x59\xd5\x9d\x40\x19\x3e\x06\x54\x27\x10\xa7\xfb\xe9\x56\x9d\xee\x93\x76\x68\x9b\x1b\xb7\xb9\x4f\xda\xa1\x57\xb3\x3a\x05\xf6\x6f\xa9\xad\x3e\x05\xce\xf7\xfd\x6d\x26\x22\x28\xe7\x0b\x49\xc5\xba\x4f\x72\xa2\x37\x82\x8a\x75\x9f\xe4\x44\xdb\x53\xc7\x02\xe5\x7c\xa9\xe9\x58\xf7\xc9\x57\xb4\x89\x95\x2c\x50\xce\x87\xae\x92\x05\xe2\xcc\xec\x7d\x9b\xc3\x08\xe2\x4c\x1e\x72\x2b\x5e\xa0\x9c\x4f\x46\xbd\xeb\x3e\x39\x8c\xea\x81\xde\x05\x76\x19\xf5\x32\x13\xf1\xfe\x34\x73\x3f\x77\xcc\x3a\xbc\x4f\xd6\xa1\x9f\x15\x66\x1d\xde\x27\xeb\xd0\xcf\x3a\x63\x3b\x60\x97\xf9\x5b\x0f\xd9\x14\x43\xeb\x6f\x6c\x07\xec\x5d\x70\xc6\xd4\xb1\xdb\xb4\x43\x47\xe7\xdd\xfa\x18\x88\xd3\x19\x7f\x2b\x64\x60\xef\x82\x76\x77\xac\x19\x88\x33\x2b\xfa\xad\xa5\xdd\x27\x17\xd1\xaf\x0b\x35\x0d\x9c\x1c\xcb\x5b\x4b\xbb\x4f\x2a\x22\x9f\x2f\x8f\x9a\x06\x76\x6d\x27\x65\x61\x99\xad\x52\x2c\x4b\x96\xd9\x2a\x7c\xe4\x3f\xc6\x95\xc0\x2e\x1b\x94\x55\xcb\xcc\x4f\xcc\xfe\x5f\xb3\xcc\xee\x67\x6e\x9f\xc7\x49\x4d\x40\xf5\xee\x79\x54\x3a\xb0\x37\xd7\x29\xbb\x2c\xb3\xfb\xb9\xba\xb9\xdb\xb2\xd3\x2a\x85\xb2\xc7\x32\xc6\x01\x37\x8b\x96\x45\x8c\x03\xe6\x79\xf2\xa8\x79\x60\xff\xd2\x03\xf9\x2c\xb3\x51\xf8\x3e\x7c\x14\x3d\xb0\xf7\x5a\x29\xb3\x51\x82\x5b\x60\xf8\x6f\xb6\x49\x9c\x8f\x2e\xea\x6f\x80\x09\x44\x73\xe1\x8f\x47\x89\x03\x91\x7c\x7c\x3c\x2a\x1b\xd8\xcd\x44\x1b\x1b\x3d\x7a\xcc\x76\x54\x57\x1e\x45\xed\x31\xdb\xd1\x0f\xa3\x47\x53\x03\xd5\xe1\x68\x8f\xa6\x06\xf6\xbf\x51\xa6\xa9\x81\x5d\x96\x29\xb3\x16\x1b\xd5\x51\x71\x8f\xf6\x06\xf6\xbf\x71\x24\xea\x1b\xa8\x76\x65\x3c\xba\xda\x63\x4a\xe4\x39\x63\xca\x1a\xd8\x3f\xa5\x51\xb4\x35\x50\x1d\x0e\xf6\x28\x6b\x8f\x69\x92\x2a\xeb\xa3\xad\x3d\xe9\xb4\x09\xed\xa4\xad\x81\xea\x18\xb1\x47\x5b\x03\xd5\xf1\x7f\x8f\xb6\xf6\x38\xdf\xbf\x2b\x0c\x3c\xea\x1a\xd8\x5b\xe3\x80\x35\x31\xb0\x0f\x98\xdf\x2a\x59\x20\x92\x6b\x99\x3e\x2a\x15\x88\xd3\x03\xfa\x18\xca\x02\xd5\xc4\xfc\x47\xcd\x02\x67\x69\xb6\x47\xcd\x02\xfb\x48\xfe\x30\xb3\xca\xa3\x85\x81\xfd\x13\xb7\x6c\x85\xf2\xa9\x10\x2d\x6b\xa8\x0b\x54\x13\xfb\x1e\x43\x5d\x4f\x76\x4e\x42\x0e\x53\x81\x03\xd5\x94\xbd\x47\x81\x03\xfb\xf1\xc0\x19\x56\xe0\x40\x75\xee\xee\x47\x7f\x03\x71\xba\x9c\x1e\x05\x0e\x44\x1a\x5e\xce\xea\x1a\xd8\x65\x9c\x61\x7d\x0d\xec\x32\xb7\x67\x53\x14\xb3\x5e\xc3\x43\xf1\x74\x12\xd6\x4a\x23\x3c\x14\xeb\x5a\xcc\x71\xf5\xdf\xac\xea\x46\x75\x8a\xb4\x47\xf3\x02\xd5\xc0\xed\xa3\x79\x81\x68\x99\x8e\xca\xc7\x8c\x45\x10\xd9\xc5\x42\x1e\xdd\x0b\xec\x32\x1a\x58\xd1\x02\xd1\xcc\xa7\x7b\x0c\x7f\x81\xc8\x66\xae\x3e\xa6\x23\x82\x5d\xe6\x6f\xad\x04\xf1\xaf\xac\x58\x3d\xc6\xbf\xc0\x2e\x73\xbf\x56\x8c\xf8\x57\x4e\xe7\xf8\xac\x59\x75\x0c\x53\x73\xbf\xde\xa8\xcc\x2c\x39\xbc\x8c\x34\x3c\x50\x87\x4f\x65\xd5\x0d\x54\x5f\x9a\x8f\xea\x06\xaa\x5f\x39\x8f\xea\x06\xaa\xdf\x02\x8f\xea\x06\x22\xbb\x94\xc1\xa3\xbb\x81\x5d\xc6\xe1\x2a\x6f\x20\xb2\xb3\x15\x3d\x8e\x95\x7b\x9c\x45\x52\x95\x7a\x8c\xa6\x81\xfd\x7f\x54\x41\xcb\x03\xd5\x19\xd7\x1f\x25\x0f\xec\x9a\x7a\x74\x5e\xaf\xcc\x2c\xe9\x8c\xee\x8f\x96\x07\x22\x57\xaf\x44\x2d\x0f\x44\x73\xd5\xfb\x47\xa7\x7b\x9c\x59\x72\xfa\x6f\xb6\x88\x0b\xc8\x79\x1a\x74\xba\xc7\x89\x25\xcd\x51\x7b\x94\x3a\xd0\x5c\xdb\xea\x51\xd7\x1e\xa7\x8c\xf4\x96\x37\xec\x06\xce\x84\xb4\x8f\x06\xf7\x1c\x83\x23\x17\xe1\x31\x43\x11\x44\x55\x3a\x1e\x63\x71\x20\xe6\x74\x9f\x56\x94\x14\xc5\x76\x9e\xbd\xc6\xe2\x9e\x11\xff\xff\xff\x9e\x29\x34\x1f\xa3\x6c\x20\x4e\xf7\xed\xa3\x0f\x82\xee\xa0\x87\x47\x1f\x7c\x0c\xa3\x61\x5c\x8f\x61\x34\xb0\x77\xc0\x71\xe8\x83\xa0\x57\x64\xe5\x31\x68\x06\x92\xe3\x64\x1f\x0d\xf1\x31\x68\x66\x0b\x69\x83\x8f\x41\x33\xeb\xa4\x0c\x82\x5e\xb1\xb2\x47\x17\x04\xbb\xea\xfc\x52\xc9\x03\xfd\x9c\x3c\x1d\xef\x31\x68\x66\x6b\xa8\x78\x8f\x41\x33\x5f\x13\x2a\xde\x63\xd0\xcc\xe6\x56\xf1\xc0\xf0\xeb\xe4\xd1\xf0\x40\x1a\x58\xea\xa3\xe1\x81\x71\x9e\xe0\x8a\x1b\xd8\xe7\xc9\x5f\x7a\xb0\xd3\xee\x1c\x7f\x69\xfb\x4f\xba\x73\xbc\xcd\x14\x37\x30\x9c\x0a\xe2\x51\xdc\xc0\x70\xb6\xc3\x47\x6f\x03\x67\x59\xda\xc7\xdc\x40\x90\xb3\xcf\x62\x53\x03\x41\x1c\x6b\x7d\xcc\x0d\x04\x51\x1c\x85\xf9\x18\x83\x03\xc3\x69\x2a\x1e\x8d\x0e\x44\x71\xb0\xef\x63\x70\x0d\xec\xd6\xf6\xff\xac\xc1\xc5\xc8\x46\x3e\x11\x1f\x8d\x0e\x64\xc7\xb7\x3e\x1a\x1d\x98\x0e\x5b\x7b\x8c\xa3\x81\xec\xc0\xd8\x47\xc7\x03\xf3\xec\x52\xc7\x03\xd9\xe1\xb9\x8f\x3a\x07\x76\xd3\x52\x29\x7d\x0e\x94\xf0\x53\xc3\x78\x19\xd8\x16\xeb\xd6\xbc\x7b\x1c\xef\xe6\x2c\x5f\x8f\x01\x33\xb0\xcb\x3c\x36\xaf\x34\x06\xbc\x85\xdf\x15\xc6\xcb\xc0\xfe\x37\xce\x9e\xc1\xb1\xc7\x09\x26\xb3\xef\x5f\x13\xf5\xc0\x56\x3a\xea\x65\x74\x0c\xc4\xe9\x15\x78\x0c\x8f\x3d\x67\xc8\x9b\x35\xd3\x10\x41\x9c\xbe\x9e\x47\x45\x7c\x1c\xf2\xd6\xfe\xe0\xe2\x8f\x02\xf9\x1c\x81\xf4\x06\x50\x20\x9f\x33\x24\xce\x0b\xc1\xf4\x3e\xb0\xcf\xa6\x47\xe0\x19\x7e\xec\x3c\xde\x25\xfa\xe3\xb3\x0c\x8b\xfa\x69\xe3\x48\x37\xb0\xbd\x80\x26\x33\xf4\x06\xa2\x3a\x3b\xcc\xa3\x67\x3e\xff\x3c\xd3\xed\xd9\x3e\x4b\x81\xe2\x40\x1c\xe9\x06\xf6\x2e\xb8\x86\xd4\x4c\x50\xcf\x7b\x5f\xcd\x04\xbb\xb5\xa9\x97\x4e\x09\xfe\xbd\xb9\x54\x4a\x50\xcf\xe3\x4b\xa3\x04\xff\x9e\xfa\x0a\x25\xa8\x46\x98\x1f\x7d\xf2\x39\x3e\x49\xe3\x2b\x8f\xa0\x9e\x4f\x2e\x05\x10\xc4\xe9\x7e\x79\x34\x40\x50\x9d\xd6\xe1\x51\x00\x9f\xf7\xe8\x94\x65\x56\x00\xdb\x4b\x2e\xf8\xf1\x38\x62\xed\x79\xcf\x47\x15\xed\x61\x98\x0d\xec\x2f\x7d\x0f\xce\x2a\xbc\x27\x0f\xc4\x43\xb1\x0e\x5b\x0e\xab\x93\x4a\x3e\x26\xf7\x81\xfd\x7a\xb7\xcc\x4a\x20\x8a\xd9\x75\xc9\x1e\x45\x11\xc4\xe9\x30\x7b\x14\x45\xb0\x7f\x4b\x03\x38\x3e\xed\x71\x7c\x9a\x7d\x27\x8f\xb1\x3c\xb0\xdf\xb5\xb4\x80\x42\x09\x22\x57\x9f\x6d\x1a\x25\x88\xdf\xd9\x9c\x67\x15\xa1\xec\xa6\x39\x3f\xca\x23\x38\xba\xfb\xe8\x8e\x20\xfa\xb9\xeb\x75\x47\xd0\x5c\xaa\xec\x51\x1d\x9f\x33\x51\xc9\x6e\x92\xa5\x26\x82\x98\xd3\xa2\xb0\xc8\x57\x5c\xa3\x28\x59\x44\x7e\x2a\x07\xbb\x74\x44\x70\xa6\x1a\x5e\x86\x01\x41\xfa\xf1\xfd\xbe\xb4\x46\x10\x93\xe7\xe4\x52\x1a\x41\x72\x29\xc3\xa5\x33\x82\xf4\xe3\xa5\xba\x8c\x0c\x82\x6e\x1f\xeb\x52\x23\x41\xfa\xf1\x35\xbd\xb4\x48\x90\x9c\xde\x6e\x29\x91\x20\x39\x57\xde\xd2\x21\x41\xaf\xd3\xcd\x2f\x8b\xd6\xfe\xaf\xe4\xa1\xbe\x16\x11\x2a\x1c\x6e\xeb\xb3\x88\x50\x21\xdf\x61\x4b\x83\x04\xc9\x39\xf6\x96\x02\xb9\x9c\x2c\x13\xbb\x59\x0a\xe4\x32\x54\xc8\x63\x61\x19\x2a\x5c\x86\x0a\xb9\xe4\x97\xa1\x42\x90\x9c\xfc\x6f\x69\x99\x20\x39\xff\xdc\x72\xc9\x02\xd0\x2b\x66\xb7\xcc\x6c\x04\xc9\x89\x04\x97\x21\x46\xd0\x2b\x0f\xe0\xa5\x9d\x82\xe4\x48\xf8\x65\x88\x11\x24\x67\x18\x5a\xfa\x2a\x48\x0e\xb4\x5f\xea\x2a\x48\x8e\xf7\x5f\xda\xea\x72\x7a\xce\xe1\x1e\x6d\xaf\xb0\xbd\xfc\x2f\xdb\x2b\x68\x2f\x3e\x65\x97\xae\x0a\x92\x93\xf3\x2d\x55\x15\xa4\xc2\x07\xfa\x52\x55\x41\x72\xa2\xbf\xa5\x96\x82\x68\xf6\x46\x2f\x7d\x13\x9c\x19\xed\x97\xba\x09\x86\x8f\xbd\xa5\x5a\x82\x9c\xe9\x6d\x58\xaa\x25\x38\x4b\x65\x2e\xa3\x7e\x20\x4d\x2f\x56\xa3\x7e\x20\x19\x0e\x5b\xba\x26\x48\xd3\x7b\xc1\xa8\x1f\x48\xd3\xc6\x37\xea\x07\xd2\xb4\x46\x0a\x29\x48\x93\x97\xdf\xd2\x47\x97\x21\x3e\xba\x32\x96\xc3\xec\xc0\xf0\x69\xbc\xd4\xd1\x65\xd4\xaf\xb9\x47\xeb\xb8\x91\xa6\x77\x8c\xb9\x96\x60\xf8\x80\x5e\x1a\xe8\x32\x0e\xd8\xdd\x96\xd5\x66\xa6\xcd\xe9\x3d\xaa\x7f\x2e\x67\xda\xa4\x0f\x70\xe9\x9f\x2b\x13\xec\xe4\x4d\xb7\xf4\x4f\x90\xa6\x77\x9f\x4b\xa9\x83\xe1\x5b\x62\xa9\xa4\x20\x39\x82\x67\x69\xa4\x20\x4d\xef\x51\x8d\x14\xa4\xc9\x6b\x6e\x29\xa4\xcb\x69\x59\xda\x1f\x26\x57\x59\x06\x1c\x41\x1a\x3e\xa6\x34\x58\x70\x16\x3d\x5b\x8a\xe9\x72\x0a\x16\xbe\x06\x96\x12\x0a\xf6\x3b\xd0\x5f\x5a\x61\xa2\x84\xea\xeb\x32\x4a\x08\x86\x43\x45\x97\xae\xba\x8c\x12\xe2\xe0\x4b\x57\x05\x43\x17\x5e\x46\x09\xc1\x30\x03\x71\x69\xaf\x60\x38\xc4\x74\x29\xaf\x60\x0c\xaf\x19\x03\x87\x20\x9b\xb5\xbb\xd4\x59\x30\x1c\xc3\xba\x8c\x1b\x82\xe1\xd8\xa4\xa5\xb8\x82\x68\x3f\x9f\x11\x8a\xeb\x72\x4e\xcf\x6e\x91\xe7\x9e\xc9\x5c\x1c\x0c\xb2\xd4\x56\x10\xe7\x2b\x6d\x39\x54\x0e\x64\x3f\xc8\x96\x26\x0b\x86\xbd\x00\xcb\xc0\x24\xc8\xae\xc0\xb9\x0c\x4c\x82\xb3\x6e\xc0\x52\x6e\xc1\x70\x16\xaf\xa5\xb6\x82\xec\x7a\xa4\x4b\x6b\x05\xc3\xa1\xb5\xcb\x31\x70\x20\xfb\x9d\xb2\xf4\x58\x30\xcc\x75\x59\x6a\x2c\x18\xc3\x7b\x51\x8b\x05\xc3\x5c\xcf\xa5\xb1\x82\xe1\x28\xdd\xa5\xb0\x82\x9c\x8b\x45\xd6\xb1\x79\xbe\x39\x2e\x7d\x15\x9c\x69\xe1\x96\x51\x49\x90\xe6\xf9\x2f\xab\xdd\xa9\xb6\x97\x93\x06\x0b\x8e\x85\x2f\x33\x42\x97\xf3\x79\xf2\x8a\x5e\xaa\x29\x98\xc5\xdb\x53\x35\x5d\x4e\x02\xe3\x59\xd3\x4c\x97\x63\xe7\x7c\xa8\x2a\xa6\xcb\xb1\x73\x9e\x34\x25\x14\xcc\xe2\xe6\x4d\x08\x5d\xce\x01\xe3\xdd\x60\x42\xe8\x72\x98\x9c\x7b\x54\x55\x97\x53\xc0\xf0\x11\xb3\x34\xd5\xe5\x14\x30\xbe\xf6\x34\x55\x30\x8b\xb7\x91\xa6\xba\x9c\x15\xc6\xbb\x5f\x51\x05\xb3\xf8\xe4\x55\x54\xc1\xbe\xc0\xdc\xa5\x35\x1a\xd6\xc8\x5f\x5a\xa3\x41\x8d\x7c\xe0\xa8\xa5\x60\x16\x9f\xec\x46\x28\x41\x76\x30\xe3\x52\x54\x97\x33\xc0\x78\x60\x8a\x2a\x98\xce\x2b\xb8\x1c\x32\xb7\x9c\x14\xc6\xcd\xeb\xae\xcb\x49\x61\x7c\x45\x2b\xaa\xcb\x58\xa4\x23\x36\x97\xa6\x0a\xa2\x9e\xe3\xd7\x4b\x41\x09\x5f\xe5\xc6\x13\x41\xfc\x9c\x63\x69\xa9\xaa\xa0\x68\xdf\x4b\x55\x05\x7b\x0f\xfc\x9b\x71\x47\x50\x5c\xb2\x73\xa9\xaf\xcb\xd1\x6d\x0e\x3a\x5d\xfa\x2b\x28\xce\xeb\xb4\xf4\x57\xb0\x77\x4a\x1d\x8c\x3b\x82\x38\xe3\x4b\x96\x06\x0b\xf6\x5e\x39\x60\x0d\x16\xec\xdf\x72\xde\x35\x58\x10\xd5\x49\xb8\x97\x59\xa4\x60\x1f\x0a\xe7\xd4\x34\xd2\xe5\x34\x30\xce\x92\xbd\xcc\x23\x05\xfb\x3c\x7b\x7c\xb6\xd3\x46\x71\x3c\xe3\x32\x9e\x09\x4a\xf2\x79\xa0\x10\x83\xbd\x07\x8f\xc4\x76\xba\x4e\x3b\xb1\x07\xf3\x4d\xc1\xbf\x1d\x28\xc9\xa0\x38\x89\xdc\x52\x92\x41\x71\xae\xb9\xa5\x24\x83\x28\x4e\xaf\xba\xb4\x64\x50\x9c\x67\x72\x69\xc9\xa0\x24\x9f\xab\x06\x42\xd7\x7d\x1a\x89\xca\x6b\xce\xa0\xb8\x00\xf6\x52\x9c\x97\x81\x50\x67\x3e\x5a\x9a\x33\x28\x4e\x29\xb6\x14\x67\xf0\xef\x4e\xd0\x9b\xd7\xf1\xe6\x64\x99\x4d\xa4\x37\x9f\xa3\xb5\x39\x6e\x22\xf3\xbe\xea\x0c\xaa\x82\x7d\x68\xd4\xdd\xa8\x2a\xd8\x65\x1c\x87\x7a\x0d\x76\x19\x2d\x6e\xa8\x75\x39\xc9\x8c\xb3\x8b\x2d\x95\x7b\xa9\xdc\x4e\x78\xb6\x8c\xbf\x82\xfd\x7f\xd4\x55\x0d\x07\x25\xfd\x25\xac\xbd\x14\xf2\xf5\x9c\x2b\x88\xab\x54\x21\x07\xc5\x49\x48\x97\xc6\xbd\x9e\xd3\x14\x1e\xa8\x4d\x81\x5d\xf7\x73\xdf\x6a\xd7\xcb\x98\xad\xd3\xb1\x2f\x63\xb6\xeb\x64\xb6\x7a\x81\xeb\xdc\x20\x86\x93\xe5\x2e\x9d\x1b\x14\xb3\x01\x97\xca\xbd\x54\x6e\xf3\x2f\x96\xca\x0d\xf6\x4f\x69\x1f\x07\xd5\x81\x7d\x11\xb9\x39\xdb\x62\x19\x27\xf7\xd9\x69\xb8\x17\x14\xd3\x17\x97\x1a\x0e\x8a\xdd\x77\x4b\x0d\x07\xc5\xbe\xc0\x65\xb0\x17\xc4\x4f\x13\x5d\x9a\x39\xd8\x07\xe7\x0e\x6c\x93\x45\x46\x80\xcf\x58\xd5\x1c\x14\x3b\xeb\x96\x6a\x0e\xf6\xa1\x71\x1c\xba\x39\x28\xa6\x64\x2e\x63\xbd\x60\xff\x1b\x5b\x33\xb0\x0b\x8a\x39\x8d\xcb\xb8\x2e\x88\x7f\xb7\x8b\x81\x5d\x10\xff\x1e\x48\x7a\x3d\xd8\x9b\xf3\xff\x6c\xa4\xd7\x46\xf2\x95\xa6\xd8\x83\x62\x42\xe7\x32\xb0\x0b\x8a\xbd\x97\x4b\xd5\x07\xfb\x97\xee\xc1\x16\x61\x72\x1a\xf3\x3e\x97\x56\xbf\xcc\x9e\x75\xf2\x87\xa5\xd5\x83\x62\xaa\xe9\x32\xfc\x0b\xf6\xbf\x59\x66\xf5\xbf\x53\x7d\xf6\xaa\xe9\x83\x62\x07\xe9\x52\xf4\x41\xfc\x1c\x95\xb6\x14\x7d\x50\x4c\xf3\x5c\x7a\xfe\x3a\x9e\xef\xe3\x48\xcf\x07\x7b\x0f\x34\xba\x9e\x0f\x76\xbd\xfc\x3f\xab\xff\x51\x7d\x4f\xb4\x41\x62\xb0\x7f\xca\x89\xd0\xf3\x41\x31\x51\x75\xe9\xf4\x60\x5f\xac\x34\xa6\x52\xbf\x4c\xdb\xb5\xfe\xaf\x72\xfe\xba\xb2\xba\x13\x97\xbe\x4a\x36\xd8\xd7\x57\x50\x36\x2c\x63\xe6\x20\x4e\xeb\xab\x65\x83\xa2\x6c\xbc\x5a\x36\x28\x76\x06\xbf\x5a\xf6\x7b\xd6\x55\xe7\xd1\xfb\xaa\xd9\x20\x22\x0d\xff\x6f\x59\x66\xba\xc2\xd9\xc3\x6b\x99\xe9\x0a\x3c\xf4\x5e\x4d\xfb\x35\x58\x9b\xdc\x87\xaa\x0d\x8a\xf6\xf2\xaa\xda\xaf\xb1\x5a\x1e\xb4\xaf\xaa\xfd\xba\x24\xbb\xcb\xe0\xbf\xba\x36\xd8\x65\x93\xb2\x62\x99\x5d\x6b\xd3\xb2\x6a\x99\xf9\x0a\xbc\x8e\x5f\x75\x1b\xec\x32\xf7\x61\xd3\xc5\xe9\x6f\xa3\xb6\xaa\x34\xd8\xff\xe7\x7e\x6d\x95\x30\x87\xc3\x5d\xd8\x28\x61\xa3\xf0\x28\x79\x95\x69\x50\x54\xcf\x57\x99\x06\xc5\x2f\xcd\x57\x99\x7e\x93\x13\x47\x71\x0d\xbf\xaa\x33\xd8\x65\xb4\x89\xee\x0c\xf6\x1e\x2c\xb3\x01\x36\x8a\x1a\xf6\x9a\xa5\x0b\x22\x5c\x4b\xfa\xd5\xb1\xc1\x2e\xf3\xff\xac\x2b\x49\xb9\xc5\xd9\x60\x5e\x25\x1b\x44\x98\xab\xf8\x1a\xd3\x05\xbb\xcc\xdd\x5a\x7f\x82\xba\x66\x81\xbd\x06\x70\xdf\x74\x32\x18\xfc\xa9\x95\x4d\xf4\x2e\xf2\xd0\x79\xd3\xa9\x2c\xbd\x8b\x9e\x30\xd5\xfb\x75\x85\x40\x53\x13\x5f\xdd\x1b\xfc\xbb\x84\x75\x6f\x70\x42\x39\xaf\xee\xfd\xba\x3e\xa0\x61\xc6\xd7\x94\x5b\x50\xed\xef\x7e\xf5\x71\x70\x3e\xf6\x5e\x7d\x1c\xec\x7d\x72\x6a\x0c\x19\x83\x13\x30\x79\x75\x74\xb0\x77\x40\x0d\x94\x74\x50\x75\xab\x57\x49\x07\x7b\x6b\xee\xd4\x26\xca\xe6\x38\x74\x8f\xcd\x6b\xc4\xa5\x05\x1d\x83\xfa\xea\xe9\xe0\xbc\x0c\x5e\x3d\x1d\xd4\x38\x5b\xb3\xd9\xb2\xcd\x46\xe3\xaa\xee\x60\x1f\x1b\xc7\xab\xbb\x83\x1a\xe3\x0f\x93\xaa\xbc\xaa\x3d\xd8\x5b\x61\xff\xba\x3d\x38\xb1\x8c\x57\xb7\x7f\x1d\x57\x69\xbf\xe3\xab\xdc\x83\xf3\x8e\x7d\xb5\xf7\xd7\x85\x0d\x79\x67\xbd\xda\xfb\x7b\x16\x36\xf4\xa9\x65\xfc\x19\x54\x97\xf2\x78\x0d\x3f\xbf\x67\xad\xc3\xe6\x4f\x6d\xae\x62\x73\xf1\xda\x7d\x95\xf5\xf7\x2c\x58\xe8\x19\xd1\xd6\xc1\x2e\xf3\xff\xac\x97\x0b\x16\x7a\xd3\xaa\xeb\xef\x59\xb0\xd0\x73\xae\xaf\xbf\x95\x01\x3b\xb6\xab\x72\x0e\xf6\xd6\x68\x7e\x63\xcd\xef\x59\xb0\xd0\x93\xa9\xb1\x83\xfd\x7f\xd4\xc2\xf8\x33\xa8\xce\x47\xf3\x6a\xf1\xa0\x3a\xf9\xcc\xab\xb1\xbf\x67\xbd\xc2\xe6\x81\x78\xce\x2b\x19\x21\x3e\x2a\xd5\xf3\xf7\x0c\xbe\xf4\x66\x34\xd2\xfc\xba\x86\xa1\x1d\x5c\xaf\xce\x0e\xaa\x33\xde\xbc\x3a\x3b\xd8\x3f\xa5\xd1\x95\x76\xb0\xcb\x68\x61\xe3\xcf\x20\xce\x04\x37\xaf\xda\x0e\xe2\xe4\xae\xbe\x7a\xfb\xeb\xc8\x4d\x27\x63\x7b\x15\xf7\x77\x5b\x7a\x75\x78\xef\xab\xa5\xbf\x8e\xdc\x2c\xfe\x97\x97\x77\x33\x0d\x82\x46\xd2\xd2\x41\x9c\x0f\xb6\x57\x4d\x07\x7b\x07\x34\x93\x9e\x0e\x22\xb9\xf2\xf5\xab\x95\x83\xfd\x7f\xfc\x56\x2d\x07\xd5\x41\xc5\xaf\x81\x65\xb0\xff\x8d\x13\x61\x60\x19\xec\xcd\xd1\x26\xa6\x0b\xbf\x0e\xfb\x74\x25\xed\xd7\x7c\x61\xb0\x7f\xeb\xf6\xac\x7f\xb7\xfe\x74\x36\xbc\xaa\x3f\xa8\x0e\x52\x7e\x55\x7f\xb0\x7f\x4a\xd3\xe9\xfe\x20\xd2\x48\x6e\xce\x0b\xa0\x93\x43\xe1\xd3\x4d\xf9\x07\xd5\x8f\xce\xd7\xa8\x34\xd8\xbf\xf4\xdf\x6c\x27\x46\x88\xd6\x49\xe7\xc5\x6b\x8f\x00\xd8\xff\x67\x99\xd7\x04\x63\x44\xd3\xe0\xbb\xfb\x35\x9d\x19\xd4\xf3\xa9\xa0\xed\x83\xc8\x2e\x17\xfc\x9a\xba\xfc\x92\xa7\x7c\x46\x63\xbd\x46\xa1\xc1\x2e\xa3\x9d\xcc\x53\x06\xbb\x8c\xd3\x63\x1f\x00\xa8\xe7\x71\x69\x1f\x00\xd8\xbb\xa0\x16\x76\x02\x80\x68\xce\x61\xf3\xda\x0b\x00\xaa\x43\xea\x5f\x7b\x01\x40\x64\xb3\xb3\x5e\xbb\x01\x40\x0c\xa7\xce\x79\xed\x07\x00\xd5\xdc\xc6\xd7\x7e\x00\x50\x4d\x46\x7c\x8d\x61\x83\xc8\xae\x89\xff\xda\x37\x00\xaa\x89\x87\xaf\x5d\x03\x20\xb2\xe9\xf4\xaf\x51\x6c\x10\xd9\xe9\xb0\x5f\xf3\x94\xc1\x2e\xf3\xb7\x36\x13\xf3\xe6\x64\x27\x23\x7f\xcd\x5d\x06\xfb\xff\x3c\x3a\x9b\x69\x92\x7f\xe1\xab\xcc\x3e\x04\x10\xa3\x21\x40\xaf\xd6\x0f\xa2\x9b\xc4\xf6\xfe\x0f\x63\x67\x72\x33\x4d\x0b\xac\xd9\x7d\x5b\xd1\x26\x14\x73\x20\xb5\xda\x97\x9c\xf0\xdf\x84\x2b\xce\xe1\xbb\xdb\xff\x5d\x9d\x12\xca\xca\x84\xc8\x01\x9e\x08\x08\x54\xdf\x60\x97\xd1\x0a\x55\x29\xd8\x65\x9c\x4f\x45\xf7\x99\x4b\xf4\x74\xc7\x0a\x2a\xb0\xcb\xb8\x86\x92\x02\xa4\xe1\xf7\x7f\x19\xb8\x01\xbb\x6c\x57\x79\xd9\x61\x82\xf4\x43\x48\x2e\xfb\x4b\xb0\x0f\xcb\x94\x85\x65\x41\xe8\xa6\x52\x34\x2d\x9a\xff\xff\xff\x0e\x57\x2c\x2c\xfb\x4b\x90\xcd\x46\xbc\xec\x06\x41\x9e\xbc\xd7\xcb\x6e\x70\x15\xdd\x93\x5c\xd2\x3e\x6f\x91\xfe\xad\x9a\xd2\x66\xd9\x5b\x2d\x37\xd8\x2d\x8c\xb2\x96\xdd\x15\x68\xaa\xed\x65\x6f\x05\x76\x0f\xc6\x45\xed\x9b\x40\xaa\xce\x5c\x59\xf6\x4d\xa0\x99\x65\x6c\xd9\x37\x81\x74\xee\xd7\xd2\x03\xbd\xea\x79\xd5\x2d\xbb\x2d\x73\x6a\x18\xea\x7d\xd9\x87\x2d\xa7\x4b\x31\x68\x5d\x7a\xaa\xc1\x7e\x23\xac\xb0\x6d\x75\xbf\xde\x74\x8e\x5b\x96\x2d\x1f\xff\x3f\x78\xcf\x97\xbd\x23\x68\x13\x57\xd7\xb2\x73\x04\xdd\xbe\x66\xd9\x37\x82\xdd\xd5\x72\x97\xec\x1c\xc1\x2e\xa3\x3d\x76\x8e\xcb\xdd\x7c\xf9\x38\x2c\x9d\xd9\xe0\x4c\x7b\x5e\xf6\x83\x60\x18\xfd\x5f\x7a\xa9\x97\xe9\xde\xa6\x45\xda\xc1\x74\x6f\xd3\x6a\x68\x87\x46\xa8\x69\x7a\x2e\xcd\xd0\x08\x35\x4d\x2b\xa6\x15\xc8\xe7\x66\x4e\xe7\x65\x27\x08\x46\xf3\x16\xd9\x07\x82\xd1\x78\xdf\x97\xfd\xdd\x32\x77\x1b\x63\xd4\x65\x77\xb7\x3a\x7e\xf7\x64\x91\x8f\x40\xc7\xb9\x19\x16\x79\xbb\xdd\x53\x8a\xaf\xf3\xb2\x63\x03\xd3\xfd\x50\x96\x73\xa8\xc0\x34\xd7\xe5\xb2\xaf\x5b\x2e\x94\x61\x9c\xb9\xec\xeb\x96\x0b\x65\xf8\xac\x2f\xbb\x35\x50\xcd\xc8\xb2\x74\x3f\x2f\x73\xb7\x39\x48\x58\xf6\x74\xa0\x98\xdf\x65\xd9\xd1\xad\x33\x83\x8a\xd9\x72\xcb\x5e\x0d\x54\x83\x73\xcb\x4e\x0d\xa4\x9f\x99\x0b\x96\x9d\x1a\xa8\x86\xf5\x96\x7d\x1a\x48\xdd\x7c\xb5\xcb\x3e\x0d\x54\xc3\x41\xcb\x3e\x0d\xec\xd7\xcb\x32\xcd\xc1\xb4\xaa\xfd\xed\xa7\xcc\xc6\x0f\xc7\xff\x7c\x98\x97\x3d\x18\xd8\x65\x58\xc4\x1e\x0c\xec\x32\xda\xaf\xb7\x1a\xec\x17\x87\xff\xea\x9b\x06\xcd\x5c\x24\xcb\xde\x0a\xec\xc3\xb8\x59\xf6\x56\x20\x15\xb7\x1c\x5f\x3a\xac\x41\x9b\xb8\xdf\x96\x0e\x6b\xb0\xbf\xea\x9e\xce\x96\xb9\xf8\xe6\x5c\xd4\x86\xd1\xa7\x99\xf4\x79\xd9\xa5\x81\x64\x76\xe4\x65\x97\x06\xce\x7e\xb5\xcb\x1e\x0d\xe4\x9f\x46\xb2\x43\x03\xa9\x4f\xbc\x9d\xcb\x1e\x0d\x0c\x27\xd4\x2c\x3b\x34\x30\x1a\x52\x72\xd9\x9f\x81\x34\xdc\xba\x67\xd9\xa1\x81\x6c\xb6\xf6\x65\x87\x06\x42\xe5\xb0\xec\xcf\xc0\x68\xd3\xf3\x6b\xa0\x79\xbe\x71\x56\xc3\x96\x6f\xe4\xc9\x68\x6e\xd9\x4d\x81\x38\xdf\x1f\x7b\xa9\x35\x89\x20\xfa\x68\xe9\xfc\x06\x79\x7a\x2e\x1d\xdd\x8b\x49\x59\x0e\x34\x96\x4e\x6d\x10\x8e\x5b\x96\x4e\x6d\xb0\x6b\xc1\x5d\xb7\x7b\x03\xc5\xb5\xdb\xcb\x89\x5a\x60\x9a\x2c\x76\xe9\xe6\x06\xd3\x1c\xb0\x4b\x2f\x37\x98\x66\xa3\x5d\x3a\xb9\x41\x71\x85\xf7\xd2\xc7\x0d\x8a\xc9\x19\x96\x9d\xe7\x3a\x6b\x71\x7c\xcf\xf4\x5d\x2f\x33\x98\xf7\x73\x4d\x9b\x89\xf3\x7a\xb8\xeb\xd2\xd2\x79\xbd\xcc\x95\xa0\x81\xf4\x5d\x83\xfd\x57\x0e\xd3\x79\xbd\xcc\x95\x50\x7c\xbd\xf5\x5e\x83\x3a\x4f\x91\xf6\xb8\x8f\x16\xa1\x76\x7a\xaf\x41\x0a\xb7\xe4\x5a\xba\xaf\xc1\x3e\xce\x32\x2d\x72\xb3\xcd\x76\xf3\xaa\x5a\xe4\x76\xcc\xea\x5b\xa0\x4b\x1b\x34\xf3\x3d\x2c\x5d\xda\xa0\x99\xef\x61\x39\x76\x58\xee\x39\x15\x3e\xa5\xba\xb4\xc1\xee\xa0\x3c\x4e\xd3\xdd\x8e\xec\x3c\x4c\xcb\xdd\x46\x47\x78\x72\x5d\x28\x04\xce\x0e\xcd\x4b\x2f\x37\xc8\x3f\x1b\xaf\x97\x1b\x8c\x6e\x87\xad\x93\x1b\x64\x57\xe3\x2f\x7d\xdc\x60\x74\xdc\x18\xcb\x3c\xea\x60\x74\xbc\x18\x4b\x0f\x37\xc8\x95\xd0\xcb\x72\xe8\x03\x42\x17\xc3\xd2\x5b\x0d\x42\x37\xef\xd2\x59\xbd\x1e\x1f\x78\x1a\xe4\x54\x30\x90\xa7\xcf\xa8\xbe\x6a\x70\x36\x9d\x5c\xba\xaa\x41\x9e\x76\xfc\x0e\xac\x00\x3b\xbd\xfd\x77\x47\xad\x1f\x7b\xbd\x04\xd9\xed\x2a\x74\x63\x83\x3c\xfd\x1c\xe9\xb2\x5e\x2f\xa1\x63\xc6\x7a\x4b\xef\x34\x88\x73\xbb\xf4\x31\xaf\xd7\x9e\x88\x67\x5f\x77\x32\x48\x4d\x37\xee\xd2\x9f\x0c\x76\xef\x61\x99\x15\xdf\xa8\x66\xc4\x58\xfa\x93\x17\x0b\x85\xf4\x0a\x2d\xe7\x7a\xad\xef\xf4\x3b\x5c\x41\x47\x31\xd8\x65\x1e\xe7\x83\x79\x1c\xc5\x5e\x55\x47\x31\x48\x67\xb5\xf6\xd2\x51\x0c\xf6\x71\x5e\xd6\x3b\xa4\xa7\xd8\xdb\xa1\xa7\x78\x1d\x4f\xb1\x03\x04\x97\x00\x81\x5d\x66\x55\xbc\x6d\xdf\x79\xab\xad\x8a\x06\xf8\xce\x5b\xed\xf9\x34\xc0\xa7\xeb\xcd\xab\xda\x7e\x36\x32\x4e\xc5\xd6\xea\x52\x5e\x2b\x71\x98\x45\x1a\xe0\x2c\x28\xf2\x53\xab\xfb\x18\xb4\xf3\x48\xe9\x3d\x5e\x67\x3d\x91\x43\x0e\xdd\xc7\x20\x65\x73\x38\x2f\x5d\xc5\x6b\xe9\x39\x70\x28\xaa\xab\x18\x34\xf3\xed\x2e\x5d\xc5\xcb\xf5\x44\x4e\x94\x5d\xba\x8a\x41\x33\xb7\xee\x72\x4a\x18\x68\x46\x1a\x97\xde\xe3\x85\xa7\x38\xbb\xad\xef\x72\xe9\x10\xd8\x2f\x7a\xfb\x3f\xff\x2f\x7e\xcc\x09\x13\x0d\xc7\x7e\xfc\x98\x13\x26\xd2\x6f\x7f\x48\xe2\xc7\x9c\x30\x91\x06\x29\x5c\xe2\x87\xdf\x59\xa4\x5f\xb6\xa8\x5a\x44\x0f\x55\x2c\x6a\x16\xb9\x94\xa6\x50\xd4\x2d\x22\x37\x44\xf1\xfc\xc3\xa2\xc1\x47\xc3\x3f\x86\x45\x61\xd3\xad\xec\x6d\x19\xb3\x7d\xb6\xa0\x89\x1f\x8e\x68\x91\x7e\xdb\x40\xf1\xc3\x0f\x2d\xf2\xef\xe7\x51\x9f\x45\x8b\xf3\x73\x54\xb2\xe1\x4c\xee\xfa\xed\x7b\x1c\xbf\x64\xc3\xc9\x03\xf1\xdb\x4f\x47\xfc\x92\x0d\xc7\xe3\xfc\xcb\x54\x3f\xd9\xc8\x8d\x41\x8c\x34\x7e\xc9\x46\x3a\x93\xab\x78\x94\x8d\x64\x26\x57\xff\x59\x64\x23\x9d\xc9\x55\x68\x50\xb2\x91\x89\xac\x49\xc5\x7a\x4d\x8b\x98\xc9\x55\x3c\xbd\xcd\x4e\x7c\xa7\xa6\x45\x36\x3b\xf9\x9d\xb2\xaa\x36\x9b\x45\x46\x35\xef\x61\x72\xfc\x92\xed\xde\x70\x4f\xc0\xf8\xe1\x6a\x16\xc1\xb3\x12\xbf\xac\x29\xf2\x89\xa8\xf1\xcf\xac\x2d\x32\x8b\xb4\x27\xe6\xc9\x36\x3c\x1b\x5d\x2c\x5c\x34\xdb\x72\xbc\xca\x91\x8b\xc7\xd9\xf4\x8d\xca\xf4\xb4\xf8\x65\xdb\xb9\x51\x99\x3d\x14\xbf\x6c\x3b\xf5\x33\x17\xad\x8d\x9f\x59\xec\x32\x6e\x5d\xb6\xa5\x59\x0f\x60\xf0\x6c\x64\x9b\x45\xf6\xf4\x60\xff\xcd\xf8\x65\xdb\x45\xce\xbb\x9a\x33\x65\xc5\x86\x15\x77\x09\xac\x58\xae\xd8\xb0\x62\x32\x5e\x5b\x51\x7c\x94\x8b\x8f\xb2\x87\xd9\xd8\x0d\xb7\x90\x8e\x5f\xb1\xad\xc5\x65\x09\xb4\xab\xd8\x54\x36\x54\xfe\xd9\xae\xe2\x5d\x2e\x3e\xca\x1e\x65\x53\x91\xbf\xfd\x67\x91\xb7\x14\x37\x70\xcd\xbe\x2a\xc5\x1b\x88\xfe\xad\xde\x85\x62\x43\x37\x46\xff\x59\x31\xdb\x59\x10\x43\x1a\xbc\x5a\xfd\x8a\xcc\x99\xfc\xb1\x5a\x31\xe6\x50\x4d\x5f\xce\x6a\xc5\x9c\x43\x65\xf5\xab\xb7\xc5\xbd\xb0\xbc\xc9\xd5\x5b\x50\x19\x17\xfa\xf2\x57\xaf\xc8\x66\x54\xe1\x73\xd5\x34\xa2\x93\xa3\x7c\x37\x9b\x6f\x8a\x29\x14\x1a\x66\x6d\xda\xb0\x39\x9a\xa9\x9c\xac\x59\x31\xf2\x25\x90\x01\x22\x7e\xcd\x5a\x34\x07\x6e\xdc\xb8\x66\x2d\x36\xcc\x48\x1f\xbf\xa6\xc5\x9a\x1b\x6c\x37\xff\xe9\xb3\xd1\x0c\x2d\x57\x8f\xd3\x8a\xcd\x21\xc9\xb9\xa8\x66\xdc\x50\xe3\xc7\xaf\xdb\x82\xae\x1b\xa1\xfc\xb7\x9f\x3c\x7e\xdd\x16\x76\x27\xb4\x37\x5a\xdd\x35\x3d\x1e\xd5\xce\x7c\xa3\xf8\x75\x9b\xdd\x79\x4f\x48\x4a\x18\xbf\x6e\xb3\xbb\xbb\x3b\x54\x6a\xdf\xbd\x21\x78\x59\x7f\xe3\x47\xed\xbb\x2d\xea\xca\xaa\x53\x55\xed\xdf\x71\xfc\x7b\x7b\x87\x0f\xf6\x60\x36\xb6\xf7\x72\xd8\x20\x96\xdb\x9c\x57\x7d\x58\xb9\x61\xff\xc4\x35\x87\xcf\xf0\x38\x83\x49\xcb\xac\xdb\x46\x23\x3d\x6b\xfc\x86\x55\x1b\xcc\xd9\x9e\xb4\x6a\x78\x97\x8e\xff\xd3\x4f\xe1\xf0\xc1\x1e\x2e\x18\xf3\xd1\x18\xda\x1f\x2f\x66\xf8\xc1\x1f\x9a\x7f\xa3\x45\xe5\x93\x33\x6c\x13\x12\xf0\xe7\x03\x14\xb6\xc9\xec\xdf\xa4\x0e\x8b\x5f\x68\xf2\x0d\x13\x53\xc7\x2f\xb4\x6e\x20\x19\x26\x06\x0a\x1b\x15\x8c\x91\x7c\x57\xc3\x36\x85\x8f\x19\x6d\x0a\xdb\x44\x3e\x86\x6c\x1f\x10\xd6\xdf\x3d\x86\xad\x7e\xf8\xe4\x6d\x74\x76\x64\x8a\x5f\xf8\xe4\x99\x7a\x21\x5b\x64\xf5\x83\x6d\x09\xbc\x25\xd3\xea\x6f\xf4\xd2\x69\xf7\xb4\xf6\x1b\xbd\x74\x6a\x3f\xbd\x25\xd3\x1d\x3d\x31\xec\xb4\xf6\x1b\xbd\xd8\xb5\x4e\x6b\x3f\x4d\x45\xc8\x15\xa7\xe6\x9f\x67\x97\x0a\x8a\xac\xfd\x46\x2f\xda\x6b\x5a\xfb\x79\x86\xf2\x14\x59\xfb\xa9\xf3\xd9\xd3\xfb\x90\x6d\xf4\xd2\x31\xfe\xf4\xae\x31\xcd\x89\xb5\x08\xf1\x9b\xb6\x71\xea\x16\xf4\x64\x97\x0f\x19\xf3\x97\xba\x4f\xfb\x65\x23\xc9\x9b\xc0\x36\x41\xf1\xbb\x6c\xe4\x46\xef\x3e\x3d\x97\x8d\xbc\x1c\x06\x70\xc9\xcb\xfb\xe1\x52\x9b\xf3\x75\xb8\x6c\x12\x93\x92\x7a\xb3\xc8\x26\x31\x27\x89\x3c\xe4\xf1\xbb\x6c\xd2\xa5\x44\xa7\xb2\x97\xf5\xdf\xe8\xe7\x55\xba\x7c\xea\x36\x7a\xf7\xe9\xbf\x6c\x12\xb3\x8f\xc8\x2d\x1e\xbf\xdb\x16\xdd\xb6\x88\xa3\x6e\x5b\x74\x72\x6b\x7b\x94\x0f\x1d\xba\x8c\xdd\x96\xe2\x77\xdb\xa2\x8d\x7e\x5e\xf2\xdb\xdb\x46\x02\xbb\xfe\xd3\x16\xb7\xad\x44\x96\x45\xf6\x7d\xb8\xbd\x97\xb7\x69\x25\xa9\xff\x6d\x2b\xd1\x60\xdd\x8e\xea\xf6\x2e\xdd\x67\x9e\x3f\x66\xbc\x6d\x26\x7a\xcb\x45\x75\xf1\x7b\xac\x2e\x22\x29\xf9\xa9\x7f\xbc\x01\x0f\x93\xf3\x1d\xa2\x3c\x56\x77\xc3\x2d\xe4\xe3\xf7\x58\x5d\x66\x01\xb5\xec\xb7\xfe\xb1\xba\x8f\xbd\x17\xe6\x78\xac\xed\x83\x73\xef\x1c\xe5\x6d\xda\x70\x73\xd6\xf8\x3d\x36\x60\x63\x24\x5f\x92\xc7\x06\xa0\xa5\x58\xe2\x10\xbf\xc7\xfa\x93\x34\x3b\x39\x50\x7a\xbc\x4d\x68\xa9\x9f\x23\x99\xc7\xdb\x44\xd2\xec\xe4\x00\xf1\xf5\xed\xda\x18\xc9\x61\xde\xeb\x9d\x23\xc3\x5d\xf2\x8f\xaf\xb7\xe9\x65\xea\xad\xf5\x7a\x6d\xf7\x6b\xbb\x31\xe2\x6b\xbb\x5f\x3b\x6d\x0c\xf6\xda\xec\x97\x66\xdb\x1b\xbf\x36\x9b\xcc\x78\xc9\xda\xbf\x36\xfb\xb5\xd9\x18\xff\xb5\xd9\x1b\xf9\x97\x68\xd0\xeb\xd3\xb9\x91\xf1\x29\xc5\xef\xd5\x12\xa4\xe4\x4e\x7e\x67\x5e\x2d\xf1\x32\x48\x3d\x0d\xd2\x12\x2f\x96\xd0\xd0\x9f\xcd\x26\xff\x76\xf2\x5c\x9f\xcd\xfe\x18\xa4\x7a\x87\x3e\x6f\xf7\xc7\xf2\x0c\x87\x2f\x9f\x96\x20\xbf\xf6\x19\x9c\x7f\x5a\x62\x23\xff\xfc\xfe\x7d\x5a\x62\xc3\x5d\xda\xe2\xf7\xd9\x46\x12\xe0\x45\xf6\x49\xfc\xac\x3e\xea\x6a\x84\xaf\xd2\x67\xfd\x3f\x06\x2b\x7e\xd3\x3f\x6f\xdb\xc7\xc8\xc4\x97\x64\x59\xff\xc5\x8a\x00\x5f\xf1\x65\xfd\x17\x32\xdf\xa1\xdb\xf2\x09\x5e\xca\x7c\x4e\xbf\x6c\xd2\x46\xae\xb5\xff\xa1\x77\x5e\xb6\x78\xa1\x3d\x7c\xcf\x96\x2d\xde\x18\xdd\x11\xe6\xb2\xc5\xcb\xb8\x86\xdf\xd1\xe5\x9d\x5e\x0c\xc2\xfd\x36\x2d\xad\xb0\x1c\xb1\x59\x49\xef\xf4\xc6\xe8\x3f\xee\xe1\xf2\x4e\x6f\x8c\xee\x83\xb4\x34\xd5\x62\x39\x85\x1f\xb0\xa5\xa5\x96\x96\xf2\x5c\xde\xe9\xc5\xa4\x74\x1e\xca\xa4\x0e\x03\xa3\x73\x77\x92\x3a\x0c\x8c\xce\x50\x20\xa9\xc3\x40\x66\x53\x8e\x48\xca\x30\x90\xdc\x48\x27\x92\xa2\x0b\x64\x52\x5f\x47\x52\x74\x25\x45\x17\xb7\x35\x29\xba\xc0\xfe\x00\x7b\xcd\xb0\x4c\x5b\x0c\x8a\xa6\x45\xd3\xcf\x84\x67\xbb\x2c\x23\x7a\x53\xbd\xe6\x63\x91\x6b\x3a\xf9\xf8\x25\x65\x17\xd8\x65\x9c\x4e\x45\x95\x4e\xbe\x05\xec\x91\x94\x54\x60\x97\x71\x3e\x35\x15\x08\x9c\x10\x91\xd4\x54\x20\x4f\xbe\x61\x49\x4d\x05\x52\x63\x23\xe4\x48\x8a\xaa\x64\x06\xbe\xe9\x05\x6c\xc3\x46\x30\x05\x34\x52\xb2\x09\x49\x69\x5d\x3d\xdb\x6d\xd9\xcd\x61\x9e\xec\xb5\xe8\xa5\xc8\x9a\xd9\x2a\x44\x15\xb3\x5f\x23\x29\xaa\x80\x3b\x32\x45\x52\x40\x01\xb3\xae\x47\xca\x36\x9d\x14\x7b\x0e\x43\x53\xf6\xee\x65\xd6\x50\xf0\xea\x26\x65\x16\xc8\xd3\x87\x43\x95\x95\x4c\xb1\x47\x87\x91\xb2\x0d\xdf\x08\xa2\x60\x91\x54\x54\x20\x13\xf9\x89\xa4\xa0\x02\x49\x6f\x7e\xa4\x6c\x23\x37\x32\x7b\x9d\x47\x52\x63\x81\xc8\x3f\x6b\x61\xbb\xb3\xed\xe6\xd9\x50\x61\x25\x97\xcc\xf0\xc9\x4a\x0a\xac\xe4\x92\x19\xbe\xfa\xa9\xd8\xc8\x72\xf6\xd0\xc1\x16\x8a\xa9\xe4\x4e\x54\x53\xfb\xab\x93\x40\x6a\x44\x76\x23\x29\x94\x40\x61\xe3\xe0\x48\xc5\x16\xb0\xf8\x25\x8a\x57\xb0\x6a\x2c\x6b\x09\x74\x74\x52\x27\x81\x42\x2a\xe0\x48\xd5\x7a\x98\x04\x2f\x5b\x5d\x85\x12\x88\xa0\x63\x49\xd5\xaa\x6d\x4c\x26\x1d\x44\x52\x3b\x25\x13\xde\x31\x04\x4c\x6a\x27\x10\x81\x28\x4f\x6a\x27\xb0\xdb\xe9\xc9\xac\x6c\xb5\xb2\x9e\x4c\x6b\x9b\xde\x8e\x61\x61\xaa\x5a\xbb\xb2\x51\x6d\xe7\x6e\x56\x9b\x54\x6d\x12\x0d\xaf\x36\xa9\xda\x24\x5a\xa9\x10\x4b\x2e\x5c\xa1\xf7\x4c\xcd\x1b\xd0\x88\x24\x25\x8b\x7c\xf0\x4c\x6f\xc7\xa8\x33\xa9\xcd\x92\x0b\x57\xf8\xce\xa7\xa6\x29\x1a\x0b\x19\x06\xb5\x57\xae\x25\x33\xde\x75\x8f\xf2\xc1\x73\xe1\x0a\x63\xd3\xa4\x80\x03\x29\x72\xf3\x30\xef\x1b\xcb\x54\x82\xcd\x58\x22\xa9\xd7\xc0\x6c\xbe\x12\xca\x35\x30\x9b\xaf\x97\xca\x0c\xcc\xe6\x5b\xde\x6d\x52\x67\x75\x83\x0f\xbb\x62\x0d\xcc\xe6\xc7\x51\x31\x06\x66\xf3\x91\x55\x77\x25\xf3\xe2\xf9\xde\x77\xeb\xdf\x59\x20\x3d\x3d\xca\xfa\xb3\x4a\x25\x7c\x14\x15\x62\x60\x36\xdf\xf1\x6e\x8b\xc8\x8b\xd7\x7c\xfc\xbb\x0d\xea\xac\xbb\x99\x56\xd5\xdb\xd6\x5d\x8b\xea\xb7\xac\xdb\x22\xc3\x7d\x8c\xd0\x92\x02\x0e\xcc\xe6\x7b\xaf\x80\x03\x85\xe4\x85\x91\x14\x70\xa0\x90\xf5\x30\xd2\xb0\x91\xc3\x46\x72\x2e\x35\x1d\x28\xac\x76\x8f\x34\x6c\xf7\xe0\xbe\x0d\xff\x68\x23\xc9\x81\xd7\xfc\x3a\x28\xe9\xc0\x6c\xb6\x5b\x49\x07\xca\xf0\x4d\x55\xd1\x25\xb7\x78\xd2\x86\xc3\xbb\x36\xfc\xb0\x37\x2f\x69\x8b\x06\x4e\xe3\xf4\xdf\xbb\x6f\x46\x52\xdd\x01\x43\x50\x91\x14\x77\xa0\x66\x06\x70\x29\x6c\x5d\xe8\x66\xb6\x9b\x52\xf0\x81\x6d\x64\x8f\xb3\x7d\xe1\x54\x04\x3f\xde\xea\x3b\xb0\xcb\xb0\x56\xd8\xc2\x60\x4e\x3f\x83\xb8\xa4\xe6\x4b\x71\xb2\xe8\x62\x7a\x45\x1f\xa8\xac\x0b\x8e\xa4\xe8\x4b\xee\x00\x95\xbc\xb5\xa1\x25\xe2\xb8\x1b\x3c\xce\x47\x20\x8e\xbb\xc1\x4b\x68\x9d\xd0\x3a\x54\x44\xdd\x97\x4e\x3c\x8f\x81\x41\x52\xf8\x25\xb7\x71\x1a\xde\xde\x69\x23\xe6\xf1\x09\x70\x59\xa5\x1f\xa8\xcd\x07\x43\xe9\x97\xcc\x90\x37\x7c\x6f\xd4\x7e\xa0\x36\xbf\x47\x6a\xbf\x44\x32\x3c\x96\x93\x46\x9a\x3e\x9e\x6e\x60\x3c\x7c\x71\x54\x7a\xc9\xc5\x2b\xc3\x77\xf5\xf2\x7e\x99\x34\x0f\x01\x9d\x54\x7a\xc9\x6d\x98\x86\x5d\x9a\x52\x2f\xb9\x52\x65\xf8\xa2\xa8\xf5\xc0\x7e\x60\xfc\xaf\x37\x8c\x95\x2a\xa9\xf8\x0a\x2b\x00\x41\x4a\xc5\x2f\xf4\x65\x5b\x2f\x1d\x85\xd6\xc4\xb6\x92\xee\x7c\x9e\x7f\xda\x54\x34\xe1\x38\xdf\x20\x45\x61\x72\x1f\xa6\xe2\xbd\xbe\xbc\x61\xd7\xf1\xa6\x60\x4d\x65\x21\xd8\x65\x5c\xe2\xb6\xb1\x44\xf1\x52\xf1\x01\x50\x18\xa6\x13\xc5\xb3\x67\x50\x19\x82\x5d\x63\x6c\x7c\x6b\x01\xf6\x26\x9e\xe7\x30\x9f\xd8\xdb\xe9\xb7\x3e\xd9\xca\xc5\x64\xc2\xf3\xe2\x43\xa1\x5e\x4c\x47\x2f\xfa\x50\xa8\x17\xd3\x7d\x8c\xe2\xf9\xb4\xc0\xad\xab\xd4\x97\x47\xc1\x08\xda\x19\xd1\xdc\x5a\xe0\x76\xba\x29\x82\x3d\x29\x22\xc1\x2e\xc3\x02\x8a\x48\xd0\x4e\x6f\x7f\x6b\x94\x8d\x76\x06\x2b\xb7\x0f\x05\x29\xd0\xcf\x90\xe6\xd1\x4c\x1b\xed\x8c\x09\x1e\xad\xf4\xe8\x4d\xb5\x87\x50\x90\x82\x76\x46\x51\x0a\x52\xd0\xce\x00\xe6\xd1\x48\x8f\x91\x92\xf0\x02\x1a\xe9\x71\x82\x8e\x0f\xac\x2a\x15\xb4\x33\x9a\x53\xa4\x82\x7d\x18\xb7\x4b\x95\x9a\xce\xde\x4e\x8e\x1d\x94\xa9\xa0\x9d\x81\x9a\x32\x15\xec\xbf\x5a\xa6\x8d\x9e\x63\x23\x0c\xa2\x50\x05\xad\x6a\x5e\x55\x29\x68\xd5\x66\xa9\x4a\x41\xca\xc4\xdf\x23\x29\x4b\xd3\xeb\xbc\x4b\x64\x7b\x52\x84\x82\x94\x9b\x63\x2e\x25\x27\xd8\x65\x5c\x55\xcd\x09\x1a\x49\x21\x23\xa9\x39\x41\xca\x47\x2b\x28\x3a\x41\xeb\xb6\x41\xd1\x09\xf6\x61\x98\x44\x89\x09\x52\xf9\xf9\x41\x54\x63\x82\xfd\xca\xd9\x0a\x1b\xf6\x9a\xcd\x88\x8a\xa8\x3b\x13\xcb\x47\x4a\x73\xa8\xf1\x79\x5b\x49\xf7\x10\xf6\xa5\x0a\xcf\x64\x54\x10\xbd\x9d\x14\x9e\x60\x3f\x10\x3c\x24\x2a\x4f\x90\x98\x6b\x14\x49\xe5\x09\x22\x50\x81\xe9\xd3\x20\x6c\x76\xac\x37\x22\x7d\xda\x63\xa3\x1d\x0d\xa0\x3e\x4d\x6e\x76\xac\x67\x2f\x7d\xda\xc3\x28\xa1\xc3\x3a\x25\x2b\xc8\xd5\x01\x89\x8a\x35\xa9\x58\xfd\x66\x7c\x5a\xe3\x43\x87\x29\xa7\x14\xb1\x20\x99\x8c\x20\x92\xfa\x34\xad\xf3\xda\x73\x36\x05\x6a\x72\xe9\x88\x43\x3d\x15\x28\xc8\xbf\x73\x94\xcd\x44\x6e\xb6\xe1\xc7\x66\xd9\xce\xc5\x6a\x57\x34\x71\x52\x5b\x82\x7a\x6e\x8a\xda\x12\xd4\xe9\x2b\xaf\xb6\x04\xe9\xe7\x28\x4e\x21\x99\x4c\xf2\xe0\x03\xb3\x6c\xc0\xd2\x79\xb2\xff\x98\xd5\x96\x20\x93\x0a\x78\x8b\x1b\x8b\xd4\x96\x7f\xf0\x7e\x67\xa5\x27\xc8\x93\x7b\x9d\x0d\xf7\x81\xd0\xd5\x9b\x55\x9e\xa0\xb0\xd6\x76\x6b\x37\x8b\xbc\xaf\x99\xa2\xb0\xc8\xaf\x7c\xa3\x68\x5a\xe4\xbb\x1a\x14\x5d\x16\x5d\xbc\x70\xfe\xf1\xb6\xc8\xe9\x75\x68\x9c\xac\xf0\xcc\x46\x00\x8b\xb5\x78\x2d\x62\x21\x38\x23\x96\x6c\xb8\x2f\x9b\xcb\x01\x4b\x65\xc3\x7d\x20\x0c\x32\x64\xc5\x29\x28\x4c\xfa\x88\xac\x36\x05\x35\x73\x57\xb3\xd2\x14\xec\x3e\x1f\x5b\xa8\x4d\xc1\xee\x08\x2d\xb3\x99\xc9\x10\x26\xdf\xf7\xac\xec\x04\x5b\xae\x7b\x3e\x5b\x45\x1a\xc1\x9f\xb7\xcc\xf8\x1e\x28\x65\x78\x94\x8d\xda\x98\x4c\x7b\x8e\xac\x12\x05\x95\x5c\x3f\x91\x55\xa2\x20\x91\xce\x24\xb2\xe1\x3d\xd0\xed\xa2\xb3\xe2\x14\x8c\x74\x8e\xb2\xe9\xa4\x65\x30\x06\x96\x95\x9d\x60\x74\x6f\x93\xb1\x3d\x90\xfa\xb4\x99\x06\xf7\x40\x26\x87\x74\x64\xa5\x68\x36\x8d\xbb\x63\xc6\xac\x16\xcd\xe8\xce\x7a\x8a\x6c\x65\xf6\x2d\xf5\x64\xb6\xd2\x1d\xae\xd8\xf5\x2a\xb2\xc2\x13\x8c\xce\xbb\x90\x55\x99\xc0\x1c\xd5\x91\x0d\xe2\x01\xf7\xa3\x88\xac\xee\x04\xe6\xd3\x8e\x6c\x10\x0f\xe4\xc9\xb7\x22\x1b\xc4\x03\x79\xf2\x5e\x65\xc5\x29\xc8\x93\xb7\x3b\x17\x5b\x49\xae\x06\xc3\x07\x59\xb9\x9a\xcd\xd5\xe0\x93\xa7\x5c\x05\x91\x4f\x55\x6d\xa4\x72\xb5\x5a\xe4\x7d\x63\xc3\xab\xa1\x2e\xc9\xc6\xf5\xb2\x53\x5d\x19\x47\xe6\xea\x8d\xdb\x98\xcd\x46\xaa\x6a\xc1\x64\xca\x69\x64\x15\x6c\x3e\x0a\x96\x46\x56\x1b\xb9\x31\x99\x4b\x17\x59\x05\x0b\x4a\xf8\x10\x54\xab\x5f\xd1\x38\xd6\x55\xb5\x0a\x4e\xcc\x3d\xab\x43\x41\xfa\x8d\x73\x98\x75\xad\x0e\x18\x51\x34\x59\x25\x0a\x76\x19\xd6\x50\x8a\x82\x5d\xc6\xf9\xd4\xa2\x60\x97\x51\x13\xc5\x28\xd8\x65\xd8\x5b\x35\x9a\x4f\xf0\xb0\x7b\x3e\xdb\xd5\xce\xe0\x88\xba\x18\x3d\xcc\xcd\xe1\x21\x46\x32\x7a\x98\xcf\x76\x57\xd3\xd3\xd9\xb2\xb3\xdd\xd5\xb4\xca\xde\x99\xb3\xdd\xd5\xb4\x2a\x36\xb7\x7d\x76\xe9\x96\xd9\xdc\xb3\x0a\x03\x27\x53\x56\x92\x82\xfd\x25\xc2\xc6\x6a\xd2\xdc\x8f\xcb\x81\xba\x18\x20\xcc\x2e\xb9\x68\x7e\x37\x15\xaa\x60\x97\x71\x17\x55\xaa\x60\xff\xd7\x32\x1f\xcc\xce\xbe\x20\xe1\xe9\x6c\x6d\x3f\xc3\x01\x4f\x67\xd3\x4c\xef\x77\xbe\xb0\xc6\x11\x41\x2a\x46\x4b\xb3\x6a\x15\xa4\x42\xe2\xf5\xc8\xaa\x55\x90\x98\xd4\x1f\x59\xb5\x9a\x5d\x87\xc1\x68\x28\x2b\x4d\x41\xd3\x09\x96\x95\xa6\x20\xb1\x42\x20\xb2\x3a\x14\x98\x3e\x3d\xb2\xe1\x46\x10\x51\x2d\xb2\x51\x43\xff\x01\x8e\x8d\xac\x36\x05\x6d\xfa\x01\x54\x9b\x82\x9e\xbc\xfb\x6a\x53\x90\x8e\xff\x2c\x0f\x6f\xf5\x70\xde\xfb\x39\x4e\x7b\xb0\xdc\xa2\x1a\x2b\xcb\x8a\x58\xd0\x59\xd0\x13\xd9\x40\x25\xe8\xac\xdd\x89\x6c\xa0\x12\x24\xf6\xa5\x89\xac\xd2\x05\x9d\x55\x34\x91\x95\xb2\xa0\x27\x1b\xa0\x6e\xcd\xc1\x6c\x01\x3f\xd7\x06\x25\x41\xd7\x25\x95\x55\xa8\x20\xb9\x9f\x58\x64\xa5\x27\xe8\xa7\xc7\x51\x7a\x02\x97\x56\x46\x56\x65\x02\x96\x07\xfe\x77\x77\x1d\x36\x65\xa3\xeb\x64\xca\xca\x52\xd0\xf5\x6b\x65\x83\x96\xf9\x04\x2d\xb9\xd4\xf4\x5e\x6f\x74\x1d\x43\xd9\x38\x26\x70\x45\x64\x64\xf5\x2c\xe8\xfa\x1c\xf2\xf4\xf6\x4f\xe6\xc5\xf8\x28\xa9\x5c\x41\x57\xa5\x66\x95\x2b\x48\xdd\x4f\xbe\xc2\x15\x74\x65\x65\x56\xb8\x82\xae\x0a\xce\x46\x28\x41\xea\xf6\x32\x6a\x59\xd0\xcf\x17\x47\x29\x0b\x92\x31\xe4\xac\x92\x05\x5d\x71\x9b\x0d\x63\x82\x3e\x7c\x52\x15\xb7\xa0\x0f\xbb\x79\xb5\x6d\x36\xfb\xbb\x26\xbc\x6c\xe3\x46\x1f\x8c\x51\xb3\x6a\x37\x1b\xd9\xd4\x84\x8a\x5d\x90\xda\xb0\xfb\x50\xec\x82\x7e\xbe\x98\x6a\x5d\xd0\x87\x5f\x2e\xb5\x2e\xe8\xc3\x0f\xb7\x5a\x17\xa4\x9a\x7d\x90\xd4\xba\xa0\xeb\x38\xc8\x4a\x5d\x90\xba\x0f\xa5\x31\x51\x90\xd8\x9e\x2b\xb2\xe2\x17\xf4\xf3\x9d\x35\x26\x9a\x8d\x89\xfa\x54\x28\x87\x41\xea\x3e\x02\xaa\xe1\x6c\x98\xd4\xf7\x47\xe1\x0b\x52\xf7\x0b\xa3\xf0\x05\xfd\x7c\xee\xd5\xbd\xf9\x84\x49\x31\xa2\xb2\x17\xf4\xe1\xe7\x4a\xd5\x0b\x52\xf7\x2d\x30\x48\x0a\x52\xb7\xd9\xea\x60\x90\xba\xef\xba\x32\x18\xf4\xd3\x39\x29\x83\x41\xae\x36\x5b\x15\x0c\xfa\xe9\x72\x14\xc1\x20\x39\xa1\x2d\x2b\x82\x41\xea\x3e\xd3\x2a\x5e\xd0\x75\x96\x64\xd5\x2d\xe8\x03\x6d\x9f\x55\xb7\xa0\x8f\xec\x1f\xb5\x04\xea\x76\x84\x5d\x90\xda\x13\xec\x2f\x1f\x37\x5c\x51\x99\xcf\x7a\x1c\x0d\xab\xaa\xcc\x26\xa5\xcf\x7e\x4d\x54\x95\x20\xb3\x82\x2a\xf2\x6b\x45\x98\x2c\x7a\x46\x7a\xaf\x15\xd9\xc8\x3f\x07\xe4\x86\x44\x41\x66\x75\x57\x64\xd5\x68\x36\x24\x7a\x8e\xf2\x96\xb0\xb3\xb0\x4e\xac\xac\x3e\x05\xf9\xf4\x0c\xca\x53\xb0\x1b\xc0\x2d\x57\x9f\x66\x63\xa2\xf6\x03\x6a\xd1\x6c\x00\xd4\x2e\xca\x00\x28\xc8\xac\x13\x8b\xac\x12\xcd\x46\x3b\x71\xc3\x65\x85\x28\xc8\xce\xd6\xca\x0a\xd1\x6c\x00\xd4\xb7\xde\x00\x28\x18\x67\xf0\xad\x34\x05\xfb\x8b\x8f\x79\xd4\xa6\x20\xff\xec\x9f\xd5\xa6\xc0\x2d\xa1\x23\x2b\x4d\xb3\x41\x51\xc7\x7e\x4a\x53\x90\x55\x93\x59\x69\x0a\xb2\xb3\x55\xb2\xd2\x14\x0c\x67\x1e\x65\x65\x28\x18\xc9\x01\xee\xa7\x29\x36\xdc\x82\x3e\xb2\xca\x14\xb8\xc7\x7d\x64\x95\x29\x18\xc9\x67\x51\x65\x0a\x52\xaf\x7e\x01\x95\xa6\x20\x2b\xe7\xb3\xf1\x55\x30\x92\xaa\xc6\xf8\x2a\xc8\xa7\x63\x56\xbf\x02\xb7\x63\x8f\xac\x7c\x05\x23\xf9\x92\x28\x5f\xc1\xd0\xb9\x99\x0d\xa0\x82\x41\x7a\xef\xc8\x2a\x5a\x30\x92\x5a\x52\x41\x0b\x52\x9b\x3e\xeb\x06\x50\xc1\x70\xaa\x60\x56\xe4\x02\xf7\xb8\x8e\xac\xc8\x05\xee\xb0\x1e\x59\x91\x9b\xcd\x8c\xaf\x73\x23\x1b\x41\x05\xc9\x85\x81\x91\x55\xbe\x60\x24\xbb\x6a\x95\x2f\x48\xa3\x8c\x5d\xb7\xa2\xf4\x05\x43\x67\x6f\x51\xfa\x82\x6c\x27\x5f\xd4\xb6\x20\x2b\x21\x8b\x61\x55\x90\x9d\x1a\x54\x94\xbb\xc5\x94\x87\x7c\xd5\x8b\x72\x17\xe4\x5f\xfe\x43\xbf\x5c\x8c\xc3\x16\x33\x22\x56\xcf\x3b\x2c\x62\xf2\x01\xaf\x68\x51\x20\x83\xd1\x8b\xd5\x9e\x16\x91\x11\xb1\xd8\xb8\xdb\xa2\x5b\xff\xa1\x65\x8f\x65\x3c\x5e\xcd\x7f\xbe\x16\x31\x37\x86\x97\xa3\xa8\x56\x8b\xb3\x53\xf9\x76\x14\x23\xa9\xc5\xd9\xa9\x1a\x4f\xfd\x5a\x8e\x7e\x65\x2c\x5c\x8c\xa4\x82\xc1\x1a\xc5\x28\x4a\xda\x72\x22\xa9\xe7\xaf\x56\x2d\x11\x1a\xe7\x25\x2a\x4a\x5a\x30\xba\x16\x55\xd2\x96\x33\x65\x35\x3c\xdb\x67\x19\x53\x1e\x79\xca\x8b\x02\x16\x0c\xf6\x5c\x8d\xa2\x5a\x05\xa3\x67\x8b\xbc\x3d\x1b\x83\x6d\x58\xa3\x28\x60\x8b\x02\x96\x0f\x73\x51\xc0\x82\xd1\xb3\xa7\xb7\xe5\x1b\xc3\x49\x4d\x45\x49\x5b\x94\xb4\xc3\xd3\xdb\xf0\x4c\xc3\xbd\x4b\x2a\x5a\x30\xba\x0f\x84\xc1\xd5\xa2\xc8\xed\x16\xd9\xee\x4c\xbb\xbd\xe3\x8a\x5c\x30\x7a\xf2\xf4\xcb\x22\x34\x2e\x2f\x4c\x71\xa6\x2a\xc8\xa4\xe6\x8a\xa2\xec\x05\x99\x3c\x5c\x51\x94\xbd\x60\xf4\xe4\x51\x5a\xa2\x30\x15\xa2\x7b\x2e\x2d\x81\xec\x25\xc5\x70\x14\x65\x2f\xc8\x64\x11\x8b\xa2\xec\x05\xa3\xfb\x6a\x28\x7b\x41\x66\x9f\xa4\x28\xca\x5e\x90\xc9\x0f\x16\x45\xd9\x0b\x86\x61\x9b\xe2\x0c\x57\x10\xa1\x55\x55\xc2\x60\x74\x5f\x33\x63\xb9\x20\x35\x87\x75\x45\x25\x0c\x46\x67\x28\x56\x54\xc2\x20\x93\x04\x2d\x4a\xd5\x3a\x15\x0f\x16\x52\xb0\x28\x8e\xc1\xe8\x7c\xf2\x8b\x11\x5f\x90\xc9\x35\x16\x45\xbd\x0c\x46\x4f\x16\x69\x9d\xca\x73\xe2\x57\x42\xbd\x0c\x06\x6b\xbe\xa2\x18\xf1\x05\xc3\x69\x67\x45\x09\x0d\x32\xbb\x73\x45\x31\x06\x0c\x32\xfb\x7a\x45\x51\x55\x83\xe1\x1c\xb3\x62\x0c\x18\x0c\xa7\xc5\x17\x63\xc0\x60\x74\x5f\x70\xb5\x37\x18\x3d\x7b\x45\x8d\x53\x99\x64\xc3\xd8\xac\xa8\xbc\x41\x66\xc3\xab\x28\x0a\x6f\x30\x7a\xf6\x28\x8d\xd3\x78\x74\xf8\x86\x16\x65\x37\x18\x4e\x3a\x2b\xaa\x6e\x90\xd9\xae\x2b\x8a\x01\x5f\x30\x7a\xf6\x8f\x1a\xa7\x39\xa9\xcd\x27\x4c\xf1\x0b\xf6\x38\x95\xe3\x14\xbf\xc5\xd9\xb1\xe1\x7d\x53\xd4\x82\xd4\xc8\x88\x12\x45\xc9\x09\xf6\x28\x88\xe3\x0c\x74\x82\xd0\xef\x56\x14\x98\x45\x81\xe9\xbb\xab\xc0\x04\x26\x74\x8a\xa2\xc0\x04\xa1\xd3\xad\xa8\x2f\x41\x9e\xde\x00\xf5\x25\xc8\xd3\x6f\x8a\x5a\x12\x98\x94\x3c\x8a\x52\xb2\x0c\xa6\xd9\xfb\x10\x2b\x1b\x81\x2b\xb4\xa2\x28\x1b\xc1\x99\xe6\x5c\x94\x8d\xe0\x4c\x86\x29\xe1\x3d\x09\xdc\x8d\x7e\xb2\x94\x8d\x20\xb2\xb7\x5c\xd9\x08\x52\x25\x87\x4c\x14\xa3\x9d\x20\x4f\x5b\xa4\x94\x04\x67\x12\x4d\x31\xd6\x09\xce\x44\xc3\x62\xac\x13\xe4\xe9\xb7\x54\xbd\x09\xf2\x3c\x47\xd9\xc8\x60\xd6\x8b\x9f\x1e\x23\x9d\x20\xb2\xfd\x83\x12\x14\x98\x5a\x3f\x8a\x1a\x13\xe4\x79\xaa\x6f\xbb\xd9\xba\x59\x0f\x48\x51\x63\x02\xf7\x57\x89\xa2\xc6\x04\xa9\x1a\xab\x2b\x8a\x4c\x90\xa7\xef\xa0\x22\x13\xe4\xe9\xf3\xa9\xc8\x04\xe6\xfe\x8a\x62\x18\x15\x84\xf3\xfe\x8b\xf3\x67\x41\x9e\xe5\xbf\x57\x4d\x47\x31\xee\x0a\xce\xac\xb7\xa2\x78\x05\x79\xda\x9f\x28\x5e\x81\xd9\xc8\xa2\x28\x5e\x41\x84\x3d\x98\xe2\x15\x9c\x25\x11\xc5\x19\xb7\x20\x55\x87\x9e\x45\x41\x0b\xce\xa2\x8b\xa2\xa0\x2d\xae\xad\xd4\xec\xaa\x57\x90\xa7\x0f\x92\x52\x15\xe4\xe9\x57\x5a\xa9\x0a\xc2\x50\x7a\x51\xaa\x02\xf3\xc0\x47\x51\xaa\x82\xc8\x7e\xd3\x94\xaa\xe0\x4c\xd0\x2a\x2a\x55\x90\x67\xf3\x28\x4d\x41\x06\x7c\x43\x33\x45\xa5\x0a\x4c\x4e\x15\x45\xa5\x0a\xce\xa2\x8c\xa2\x50\x05\x79\x9e\x2b\x6a\x0a\x53\xe7\x93\xc2\x28\x8a\xb2\x14\x9c\xe9\x5f\x45\x59\x0a\xc2\xb9\x69\x45\x59\x0a\x22\xfb\x34\xab\x08\x41\x1a\x3f\xbf\x57\x2a\x3b\x90\xa7\x6f\xa3\xca\xae\xa8\xec\x74\x4d\x15\xe3\x9b\x20\xc2\xef\xb4\x6a\x0f\x44\x38\x76\x32\xbe\x09\x4a\x71\xec\xa4\x00\x04\x11\xa7\x48\xf3\x3f\xcc\x2b\xc2\xaf\x53\x14\x80\x20\xc8\x3e\x11\xc5\xe8\x26\x28\xec\x0c\x1d\xc5\xe0\x26\x88\xe8\xfe\x51\xf3\xb3\x74\x91\x9d\xac\xa3\x18\xdb\x04\x11\x0e\x2a\x0c\x6d\x82\x38\x1f\x56\xe5\x25\x28\xe4\x80\x89\xf2\x68\x7e\x16\x38\x86\xc3\x05\x83\x9d\xa0\x14\x9f\x57\x63\x9d\x20\xf5\x33\x5e\x70\x56\x2e\x88\xb0\x8f\x57\xaa\x82\x08\x6f\x92\xaa\x14\x04\xdb\x9d\x45\x51\x82\x82\x7d\x7b\x2d\xd3\x16\x2f\x13\x54\x08\xe1\x16\x35\x28\x88\x20\xf8\x5b\xd4\xa0\x20\xc2\xf1\x88\x1a\xb4\xb8\xd2\x91\xb9\x34\x45\x0d\x0a\x22\x1c\xc8\x28\x41\xc1\x6c\x7e\x1e\x95\xa0\x20\xe2\x5c\xd1\x86\xbf\x34\xfc\xd4\xcb\x86\xbf\x78\xe6\xed\x38\x55\xa5\x20\xc2\xf1\x82\xaa\x14\x14\x97\x47\x14\x55\x29\x28\xc5\xa3\x54\xa5\x20\xc2\x7e\x59\x55\x0a\x22\xbc\xa2\xa2\x14\x44\xf8\xb8\x2a\x4a\x41\x44\xf3\x28\x8d\xf3\x61\x1c\x47\x15\x2a\x50\x10\x81\xd0\x2b\x2a\x50\x10\x6c\xf2\x1a\xc5\xe0\x28\x28\x47\x00\x29\x4a\x41\xb0\xe3\x55\x14\x45\x29\x88\xb0\xa3\x56\x94\x82\xd0\x5b\x51\x14\xa5\x20\x35\xdd\x47\x45\x55\x5a\x8c\x97\xfa\x88\x29\x4a\x41\x29\x4a\x04\x45\x29\x28\xc5\x4b\x2a\x4a\x41\x29\xde\x6e\x45\x29\x28\xc5\x4b\x2a\x4a\x41\xc4\x39\x97\xd6\x59\x3c\x3a\x38\xa3\x8b\xa2\x14\x44\xd8\x48\x45\x29\x88\x70\x10\xe9\xa4\x5e\x50\x8a\x83\x67\x35\x69\x31\xf0\xea\x73\xa2\x26\x05\x11\xe7\xf4\x5a\x67\xf9\xe8\x58\xa4\x75\x16\xd6\xf1\xe3\xad\x24\x05\xa5\xf8\xc6\xab\x48\x8b\x93\x7a\x7d\x4e\x54\xa4\x20\x82\x17\xab\xaa\x3e\x41\x04\x23\x9d\xaa\xd4\x04\xa5\x0c\x8b\xaa\x45\xbe\x31\x16\x35\x8b\x9c\x55\xc3\xcb\x5c\x15\x93\x20\x02\x47\x77\x55\x4c\x82\xc2\xea\xd0\xa8\x2a\x47\x10\x81\x29\xaa\xa1\x55\x50\xd8\x41\x2c\xaa\x62\xb2\xba\xb6\xf2\x9c\xeb\xb1\xc8\x6f\x45\x50\xf4\x5a\x44\xbb\x87\xa7\xff\x2c\x62\xa2\x22\x06\xab\x64\xf8\x13\x11\x1e\x65\xfc\x15\x44\xb4\x3f\x74\xc9\xd5\xf0\x2c\x88\xe0\x73\x59\x0d\xcf\x82\x08\xf4\x6e\x4d\x1a\x2f\xf9\xcc\x50\x47\x23\xb6\x20\x35\xef\x7d\x55\xf0\x82\xd4\x9d\x39\x5d\x95\xb7\x20\xb5\x69\xcd\xd5\xad\x20\x9c\xe9\x5e\xd5\xad\x60\xab\x6c\x0c\xaf\x22\x05\xa9\x39\x67\xbc\x1a\x53\x05\xa9\xea\xc6\xa9\x4e\xef\x05\x11\xe7\xaf\xd6\x8e\x55\x94\x31\x7c\x28\x14\xa5\x20\x85\xbe\xf3\xaa\xde\x04\xb3\x55\x0f\xb3\x72\x99\x29\x95\x3e\x01\x8a\x4b\x50\x48\x05\x14\x55\x71\x09\x66\xd3\x48\xae\x97\x04\xa9\xdb\x0f\x57\x05\x27\x98\xa4\x10\x88\xea\x6c\x5e\x30\x49\x53\x14\x55\x0d\x0a\x0a\x79\xb8\xa3\xaa\x41\xc1\x24\xe9\x55\x54\x35\x28\x98\x64\xa5\x8c\xaa\x06\x05\x93\xcd\xd7\xa2\xaa\x41\x41\x21\xa3\x7a\x54\x35\x28\x98\x24\xdb\x8c\xaa\x06\x05\xb3\x59\x55\x35\x28\x28\x24\x72\x8b\xaa\x06\x05\x93\x4d\x45\xa3\xaa\x41\xc1\x64\xb7\xb5\xa8\x6a\x50\x30\xd9\xeb\x3d\xaa\x1a\x14\x14\x72\x8d\x47\x55\x83\x82\x42\x92\xf2\xa8\x06\x68\x41\x6a\x6a\xbd\xaa\x2c\x05\x93\xfc\x0a\x51\x95\xa5\xd5\x00\x2d\x43\xcf\xaa\x06\xad\x06\x68\xf9\x2a\x57\x35\x28\x98\xcd\x67\x45\x0d\x5a\x8d\xd9\x0e\xcf\xa5\x75\x8c\xd9\x56\xcf\xa5\x75\x98\x88\x4c\xae\x9a\xa8\xca\x52\x30\x9b\x9f\x0f\x65\x29\x48\x67\x72\x7b\x55\x97\x82\x42\xae\xf4\xa8\xea\x52\x90\xaa\x6b\x6b\xab\xc2\x14\xcc\xe6\xe3\xa9\x30\x05\x93\xad\x59\xa3\x2a\x4c\xc1\x24\xcb\x55\x54\x85\x29\x98\xec\x37\x1b\x55\x15\x0a\x66\xf3\x2b\xa6\x0a\x05\xd3\x30\x67\x55\x85\x82\xd9\xe8\x54\xaa\x2a\x14\xa4\xe6\xa8\xba\x2a\x43\xc1\x24\x55\x6d\x54\x63\xbf\xd5\xcd\xb7\x0d\xaa\x54\xa5\x29\x98\xac\x71\x8f\xaa\x34\x05\x85\x4d\x0f\xa3\x1a\x21\x06\xbb\xe5\x34\xc0\x19\xcb\x60\xb6\xe2\x61\x1a\xa8\xf1\xfc\xa0\x66\xaa\x41\x63\x50\x48\xe5\x1f\xd5\x98\x31\x48\x9d\x3d\x87\xa3\xba\xe4\x14\xcc\x56\xb4\x86\x06\x72\x5e\x73\xb5\x9d\x3e\x3f\xcd\x17\x8e\x4b\x3a\xd5\x19\x4c\xd2\xe5\x46\x35\xae\x0c\x0a\x09\xf9\xa3\xaa\xac\x41\x3a\x2b\xce\xab\xca\x1a\x14\xb6\x35\x88\x6a\x54\x19\xec\x0e\x02\xa3\x19\x55\x06\xd3\xe9\x32\x55\xfd\x5d\xcf\xfc\x67\x2a\xeb\xfc\xe7\xea\xfc\x67\x44\x74\x35\xce\x0c\x26\xf9\x68\xa3\x3a\x25\x1a\x14\x72\x71\x45\x35\xf2\x0c\x0a\xfb\x0e\x44\x35\xf0\x0c\x0a\x7b\x24\x44\x35\xee\x0c\x0a\x3b\x12\x46\x35\xec\x0c\x26\x69\x92\xa3\xea\x03\xa8\x4e\x92\xf6\xeb\xe9\x24\x69\x30\x9b\x1f\x37\x23\xd1\x60\xdf\x4b\xfe\x69\x28\x1a\xa4\xe6\x24\xf2\xaa\xf7\x00\xcc\x56\x2c\xd2\x3e\xec\x1e\xde\xfc\xc6\xea\x3d\x00\x25\xce\x1f\x35\x8f\x33\xa7\x71\x02\x54\xbd\x07\xa0\xc4\xb9\xa4\xe6\x61\xf7\x70\x52\x1a\x46\x35\x3a\x0d\xa6\xcb\x63\xab\x0e\x05\x30\xd9\xd9\x31\xaa\xde\x03\x30\x9d\x57\x57\xf5\x1e\x80\xd9\xec\x0f\xf4\x1e\x80\x54\x8d\xc0\x55\xa3\xce\x20\x35\xa7\x96\x54\x67\x50\x83\xc2\xee\x13\x51\xf5\x15\x80\xe9\x74\x83\xaa\x63\x00\xec\x07\xc3\x7f\x5a\x0f\xd2\xf2\x3b\x21\xb1\xaa\xe6\xc1\x6c\xfd\x0f\x53\xc2\xaa\x62\x1f\x4c\x67\x30\x56\xc5\x3e\xa8\x6a\xc0\xaa\xd8\xaf\x6e\x2b\x4e\x32\x96\xa8\x8a\xfd\xfa\x6f\x5b\x71\x0c\xa8\xda\x07\xa9\x3a\x59\xb7\x2a\xf7\x41\xfa\x25\xdf\x10\xc5\x3d\x48\xcd\x45\x84\x55\xf9\x5e\x9d\x36\x6d\x88\xa3\xaa\xdf\xeb\xd9\x59\xdc\x11\x8d\x02\x1e\x54\xdd\x45\x55\x01\x0f\xd2\xcf\x70\x7e\x55\xc1\x57\x37\x1b\x4f\x7e\xcc\x94\xf0\xa0\xe6\x73\x55\x8d\x78\xf6\x06\xf0\x2d\x51\xc2\x83\xb3\xae\xbf\x1a\x93\xae\x67\x6f\x00\xfb\x04\x65\x3d\xd8\x95\xb3\x4c\x43\x9d\xcd\x01\xec\x92\xd5\xfa\xd5\x39\xd7\xc9\x3e\x5f\xb1\x0f\x52\xd3\xd3\x56\x55\xfb\xf5\xec\x4a\xee\xa7\x5c\x21\x5f\xcf\x4e\x00\x3e\x59\x2a\x79\xb0\xcf\x47\x95\x95\xf2\xf5\xec\x04\xe0\x78\x49\x2d\x5f\xcf\x4e\x00\x76\x9d\x8a\x79\xb0\xaf\xe1\xf9\xb4\x8a\xe9\x94\x74\x6c\x54\xe3\xce\x20\xb5\x33\x28\x51\xe1\xd7\xb3\x17\x80\x3d\x86\x12\xbf\x9e\xbd\x00\x1c\x26\xaa\xf1\xeb\x7d\xec\xc2\x71\xc6\x9e\xc1\xae\x0b\xe7\x73\x26\x36\xa8\xba\x1f\xaa\xc1\x67\xb0\x0f\xc3\x04\x86\x9a\xc1\x3e\x9d\x65\x9a\xc0\x3c\xff\x7e\xfa\x75\x23\xd4\x93\xe7\xdf\x6e\xc9\xc8\x72\x3d\x3b\xe4\x39\x8e\x32\xb4\x5c\xcf\x0e\x79\xbe\x97\xc6\x96\x41\xd5\x7b\x56\xf5\x40\x54\x57\xe9\x9a\xc9\xa1\xea\x82\x00\xfb\x25\xb4\x4c\x03\x90\xfd\x5f\x8f\x60\xd5\x05\x01\xaa\x4e\xa1\xaa\x0b\xa2\x9e\xe4\xff\xde\x6e\x7d\x10\xf5\x24\xff\xd7\xc4\x7a\x1c\x40\x3d\xdd\xa8\x1e\x07\x30\xdb\xf9\xa7\x16\xd9\x38\x59\x32\xaa\x1e\x07\xb0\x5b\xc5\xb3\xa8\x7f\x01\x9c\x5c\x22\x55\xff\x02\xa8\x7a\x8f\xaa\xfe\x05\x50\xf5\x5f\x56\xfd\x0b\xf5\x64\xfb\xf7\x63\xa3\x83\x01\xec\x16\x78\x01\xed\x71\xb2\xfd\xdb\x1d\xea\x61\x00\xfb\x6e\x51\x5f\x83\xe1\x60\xff\x17\x23\xe9\x76\x00\x67\xe1\x78\x35\x18\x0e\xf6\x5f\xa9\xb0\xae\x08\x50\xf5\xc3\x55\x3d\x11\x60\x1f\xc6\x55\xf5\x3b\x80\x5d\x63\x0c\xa7\xe3\xa1\xba\x01\x00\xa9\xa1\xa2\x3a\xeb\xba\x9e\x1d\xf6\x34\x93\x7e\x86\x6a\x6e\x7f\x92\x38\x45\xd5\x85\x00\xf6\x77\x8c\xff\xea\x1d\x00\xfb\xee\x73\x9c\xee\x81\x7a\x82\xd6\x3e\xaf\x3a\x03\xaa\xf9\xf8\x5d\x39\x50\xf5\x06\x80\xd4\x5c\x3a\x51\x75\x07\x54\xd3\x27\x0d\xad\xa7\xf8\x07\xe9\x37\x1c\x72\xab\xfe\xab\x33\xa3\x87\x83\x62\xe5\x7f\x35\x7f\xd2\xf0\x1b\xad\xfe\x07\xd5\x6c\x35\x55\xad\x0f\x6a\x53\x82\xaa\xf5\xc1\xbe\x2a\xff\x54\xec\x57\xb3\xef\x0f\x3f\x00\xaa\x7d\x30\x9b\x8d\x50\xed\x83\x7d\x51\x4e\xa7\xdc\xaf\x4e\xa1\x1e\xbe\x3a\xea\x7d\xb0\xcb\xa8\x89\xea\xbe\x9a\x6a\x7f\xf8\x5d\x34\xe6\x5c\x4d\xb5\x3f\xbc\xb9\x4a\x7e\xb0\x8d\x6c\xf5\x34\xca\xd2\x28\x7e\xb3\x14\xfd\xd5\xfc\xfb\xc3\x5e\x40\xd5\x0f\xd2\x6f\xf8\x5e\x28\xfb\xab\xf3\xad\x87\xcf\x99\xba\x1f\xec\xf3\x59\xa6\xa5\x96\x33\x24\x1d\xe0\xab\xfc\x41\x35\xe5\x4b\x33\x14\x0d\xd2\xcf\x99\x23\xcd\xc0\x33\xd8\x7f\xb5\xac\x58\x56\x1c\xe8\xfe\x28\x6b\x96\x39\xc9\xe8\xfc\xb7\x5b\xd6\xb9\x44\xa7\x68\x58\xe4\x40\xce\xa3\xc2\x22\x9f\x94\xf2\xdf\xdb\x5b\x47\xd3\x5f\x00\xb6\x2d\x32\x65\x97\x65\xda\x2c\xdb\xa0\xdb\x32\x6d\xc6\x6b\xdd\x74\x19\x34\x27\x63\x8f\xe2\x7f\x5f\xcb\xb4\x59\xf6\xb8\xcf\x32\x6d\xc6\xd0\xbd\xe9\x35\x00\xdb\x40\xfb\x1e\x34\xdd\x06\x60\xdf\x53\x9a\xa4\x63\x00\x54\xd2\x25\x46\xd3\x31\xd0\xd2\xb1\x23\xa7\xd3\x33\x00\x2a\x89\x10\xa3\xe9\x19\x00\x95\xac\x73\xd1\x9c\xcb\xdd\x9c\xcb\xcd\x56\xf7\xd1\x74\x16\xb4\x33\x97\x9b\x81\x5b\x33\x3c\x0e\x2a\xc9\x4b\xa3\xe9\x3f\x00\xbb\xfd\xdc\x28\xc3\xe3\x60\x97\xf9\x57\x6d\x97\x5c\x98\x65\x91\x66\x4a\x9a\x89\x4f\x7f\x33\x18\x0e\xf6\x55\x2d\xd3\x4c\x49\x33\x35\xdb\xa5\x99\x9c\xe1\x3d\x18\x76\x35\xfd\x11\x60\x5f\x96\xe3\xf4\x47\x80\x4a\xf2\xbc\x68\xba\x23\x40\x25\x79\x5e\x34\xdd\x11\xcd\xa4\x4e\xce\x42\x6b\x86\xcd\x41\x35\xeb\x50\xd3\x43\x01\x76\x45\x2c\xd3\x24\xd9\x77\x30\xfb\x57\x6d\x92\xb5\x49\xb5\x4c\x9b\xe4\xf3\x3c\x79\x59\x6d\x92\xcf\x3b\xe8\xf9\x7c\x9e\xf2\x79\x07\xb9\xb1\xfa\x37\x5a\x66\x05\xdb\xf4\x74\xda\x24\x9f\xd7\x8d\x1b\xab\x33\x03\xec\xf6\xf3\x78\xea\xcd\x00\xbb\x8c\x5b\xa6\x3b\x03\xec\x66\xf0\x28\xea\xbc\x00\xa9\x1b\xe8\x69\x7a\x2f\x40\xaa\x4e\x34\x6e\x7a\x21\x40\x0a\xa7\x95\x36\x1d\x0c\x60\x5b\x8f\x7b\xa6\x3b\x01\x54\xf2\xd0\x46\xd3\x9d\x00\x52\x62\xe7\xb5\x68\xfa\x0e\x9a\xb9\xfb\x8b\x16\x30\xa6\x0d\x76\x19\xa7\xd3\xa1\xd0\xdc\x0b\x9e\x4d\xb5\xa2\xe9\x51\x00\xd5\x85\xf0\x4d\x8f\x42\x33\x3b\x7f\xf1\xdd\xd7\xa5\xd0\xcc\x77\x5c\xf8\xa8\x35\x7d\x0a\x60\x1f\x87\xa5\x74\x2a\x34\xf3\xf3\x17\xdf\x1e\xbd\x0a\xa0\x9a\x07\xaa\xe9\x54\x00\xd5\xb5\xea\x4d\xa7\x02\xa8\xd3\x37\x56\x9f\x02\x48\x35\x0f\xeb\xeb\x5d\x24\x8b\x7f\xd7\x87\xde\xf4\x2a\x80\x5d\x11\xaf\xa0\x9d\xea\xb1\x13\xb7\x42\x27\x02\xd8\x65\x1c\xa7\x17\x01\xec\x5b\x41\x85\x75\x23\x80\x7d\x3e\xcb\x34\x4a\xd3\x28\x74\x93\x4d\x3f\x02\xd8\xe7\xa3\x2e\xfa\x11\xc0\x36\x14\x76\xd7\x91\xd0\x9c\x6b\xae\x92\x6d\x7a\x12\xc0\xbe\x06\x86\xd7\x93\xd0\xce\xfc\x73\x4f\xa7\x55\x9a\x13\x62\x6c\xae\xae\x84\xe6\xfc\xf3\xe2\x37\x45\xbf\x01\xd8\xd5\xb3\x4c\x13\x90\xaa\xca\x15\xf5\x4d\x2f\x01\xd8\x87\x51\x13\xdd\x04\x60\xd7\x04\x2b\xeb\x27\x00\xbb\x8c\xbb\xa1\x9f\x00\xec\xcb\x7a\x9c\x56\xe9\xe7\x51\xc1\xca\x3a\x0a\xc0\xbe\x86\x65\x5a\xa5\x6b\x15\x5f\x16\x5d\x05\x60\x97\x71\x37\xf4\x15\xb4\xee\x73\x61\xf5\xb4\x40\xe7\xb9\xf0\xcb\xa0\xaf\x00\x6c\x1b\x63\x14\x9d\x05\xed\x64\xbb\x6a\xb6\x56\xa3\x74\x36\x4c\xb1\xa3\xd1\x5b\x00\x76\x23\x3c\xcc\x37\x7e\xd8\x31\x20\xa0\x9a\xce\x01\xb0\x8f\xe3\xbf\x3a\x02\xc0\x7e\x93\x31\x8a\xb2\x1f\xec\xe3\x2c\xb3\xb1\x4c\x4b\x4f\xe1\xd3\xad\xf0\x07\x29\xe9\x19\x6c\x2a\x7f\xb0\x1f\x0b\x0c\xa0\xf4\x07\xfb\xbf\xd6\x45\x0b\x98\x33\x59\xdf\x48\x73\x36\x01\xd8\x65\x58\xca\x89\xe9\xcd\x3c\xca\x7a\x58\x9b\x1e\x01\xd0\x5c\x6a\xd2\x54\xff\x20\x25\x57\x8c\x34\x27\x14\x80\x5d\x95\x3f\xac\xc2\x6e\x3a\x0c\xc0\xae\x29\xb5\x77\x12\x02\xd8\xa7\xa6\xf6\xae\xb9\x06\xcd\xa5\x51\xcd\x89\x09\x60\xff\xd5\x5a\x69\xb4\xd0\x68\xc9\x5a\x69\xb4\x8d\x93\xd6\xa1\xe9\x80\x00\xfb\xaf\x9e\x4e\x9b\x85\x36\xc3\xf7\xd2\x9c\x9b\x00\x4e\x3e\xa2\xe6\xdc\x04\xb0\x2b\x87\x19\x9d\x9c\x00\xf6\x53\x63\x4d\x7c\x6a\x98\x20\x9f\xf4\x9b\x35\x1d\x1a\x60\x97\x79\x9c\x8f\x4d\x98\x7a\x9a\x61\x6d\xd3\x67\x01\x76\xf5\xb8\x05\x3a\x2d\xc0\x71\xb6\x34\x7d\x11\xa0\xb9\x98\xa8\x39\xf5\x00\xec\xb3\xd1\x08\xdd\x13\x60\x5f\x15\x73\xea\x8a\x00\xfb\x0a\xfe\x57\x03\x4c\x0d\x60\xc7\xab\x2f\x02\x6c\xa3\xf8\x5f\x2d\xb0\xd1\x0c\x5d\x37\x5d\x11\xa0\xe5\x73\x05\xdb\x3f\x4f\xfb\x3d\xcc\xf6\x4f\xdb\x6f\x3f\xae\x2f\x02\xec\x9a\x70\x9c\xbe\x08\xb0\x5b\xc1\x2d\xd3\x17\x01\xf6\x7f\x2d\xf3\xe1\xb9\x7c\x78\xfc\xd4\xe9\x8b\x00\xfb\x38\xee\x99\xbe\x08\xb0\xcb\xb0\xbb\xf3\x0c\xc0\xc9\x21\xd3\x74\x4f\x34\x97\x7f\x9b\xca\xa0\xe9\x9e\x00\x2d\x9f\x2b\x68\xa7\x8d\x66\x0a\xb8\xa6\x73\x02\x34\xd7\x81\x34\x7d\x09\xa0\xb9\x1e\xac\xe9\x4a\x00\xcd\x19\xb4\x4d\x4f\x02\x48\xd9\xc5\xc4\xcd\x69\xec\xed\xa4\x61\x0e\xcb\x6c\x01\xae\x84\xac\x77\xa6\x39\x91\xbd\x9d\x34\xcc\xb8\xb1\x9a\xee\x05\xb0\xcf\x67\x99\xcd\x32\x0f\xb3\x0b\xa7\x9b\x2e\x07\xb0\xcb\xb0\x88\x3e\x07\xd0\xaa\x8d\xd0\xe5\x00\x5a\xf5\x93\xa1\x2b\x01\xec\x2b\x78\x98\xf7\x15\x57\x42\x76\x01\x77\xd3\x95\x00\xf6\x71\x5c\x55\x5f\x02\xd8\x35\xe6\xa9\xd3\x99\x00\x52\x3d\xa3\x0e\x9d\x09\x60\x1f\xc7\x33\xe1\x8c\x06\xb0\xcb\x30\xa8\x0e\x06\xb0\xaf\x41\x2b\xf4\x30\x80\x5d\xe6\x7f\xb5\xca\xa3\x55\xc2\x6b\x68\x95\xc7\xdd\x73\x70\x9b\x37\xa7\x35\x80\x5d\xe6\x35\xb4\xca\xe3\xdd\xf6\x74\xbe\x00\xec\xd8\x9f\x4d\x7f\xda\xf4\x28\xb4\xb3\x3c\xdb\x96\x69\x95\xc7\x85\x5b\xbe\xd9\x3a\x14\xda\x59\xb2\x8d\x51\xf4\x27\x80\x56\xfd\xdc\xea\x4e\x00\x29\x1b\xa0\x69\xfa\x13\x9a\xab\xb8\x0d\xaa\x34\xe7\x2c\x80\x66\x68\xa4\xe9\x27\x68\x67\x11\xb7\x03\x36\x67\x28\x80\x7d\x3a\x9a\xea\x14\x85\xe6\x2a\x6e\xfd\xbe\x4d\x7f\x02\xd8\x65\x56\xc5\x37\xfb\x75\xc3\x7b\x47\x09\xce\x52\x00\xcd\x50\x57\xd3\xc5\x00\xf6\x61\x56\xc5\xb6\xbe\x6e\x9f\x63\x4f\xef\x3c\x05\xb0\x3b\x49\x5a\xa6\x2b\x02\xec\xcb\x72\x09\x5d\x11\x20\x65\xa7\x50\x34\xa7\x2a\x80\x7d\x3e\xaa\xac\x7b\xa2\x7d\x58\x40\xc1\xe3\x6c\x79\xb0\x0f\xa3\x7a\xce\x4c\x00\xfb\x12\x5e\x56\x0b\x7c\xe6\x1d\xa7\xb1\x3a\x27\x40\x33\x88\xd4\xf4\x4d\x80\xfd\x4f\xaf\xa0\x4d\x3e\x6d\xe2\xb0\xc6\xc9\x09\x60\x97\xd9\x58\x8d\xc2\x94\xf9\x56\x1d\x3c\xea\xb1\x00\xbb\x76\xfc\x57\x8f\x05\xd8\x65\x1c\xa7\xc7\x02\xec\xf3\x71\xcf\x74\x59\x80\x5d\x86\x91\x75\x45\x80\x94\x4d\x47\xd4\x74\x45\x80\xa6\x93\xad\xe9\x89\x68\xeb\x3c\x02\x34\x43\x4f\x04\x68\xdd\xcf\x8c\x8e\x08\xd0\x5c\x0e\xd6\xf4\x43\x80\xd6\xff\xb2\xd0\xab\xe9\xa5\x00\xbb\xd9\x9e\x45\xf3\x2c\x97\x8b\xf9\x2c\xe8\xa5\x68\x26\x84\x36\x87\x51\xd3\x4b\xd1\x4e\x42\x68\xcc\xd8\x75\x53\x80\x5d\xd6\x29\x4b\x96\xb9\x95\x10\x8f\x6f\xd7\x75\x01\xf6\x97\xc4\xe3\xaa\x65\xd5\xe3\x82\xb2\x66\x59\xb3\x2e\x3f\xca\xba\x65\x2c\x6c\xe4\x63\xd0\x75\x5d\x80\x46\x0a\xfe\xe8\xfa\x21\xc0\x3e\xdb\xa4\xec\xb2\x4c\x93\x55\x8a\x6e\x8b\x30\xd9\xb4\x0d\x8f\x45\x8f\xd7\xf4\x02\xaf\x65\xce\x72\xe2\xab\xd4\xf5\x2e\x80\xd4\xf4\xd6\x77\xbd\x0b\xa0\xb1\xbf\x66\x74\xdd\x06\xdd\xf4\x64\xe4\xb4\x8f\xae\x8f\x00\xec\xe6\xfb\x57\xdb\xb0\xd1\x14\xa1\x5d\x1f\x01\x48\xc5\xf9\xfe\x5d\x1f\x01\x48\xe5\xc7\xf8\xa5\xeb\x23\x00\x8d\x1d\xd2\xa2\x3b\x15\x01\xec\xe6\x7b\x3a\x1b\x86\xdf\xa0\x38\x17\xa1\xeb\x23\x00\xbb\x0c\xa3\xeb\x23\x00\xfb\xb2\xb4\x42\x1f\x01\xd8\xc7\x51\x15\x7d\x04\x60\x97\x71\x0d\xa7\xd6\x83\x7d\x5d\xae\xa1\xe3\x00\xec\xe3\xb0\x80\x9e\x03\xb0\x3f\x91\x1e\xe7\xcd\x26\x1d\x74\xf9\x35\xaf\xab\xa5\xf2\xd9\x60\x8a\xfa\xe9\x3a\x00\xfb\x38\x6e\xb7\xae\x03\x90\xaa\x2a\xb4\xeb\x3a\x00\xfb\x38\xec\xa2\xeb\x00\xec\xf3\x59\xa6\x5d\x48\x12\x5d\xf4\x57\x77\xe7\x41\x80\xc6\xde\x78\xd1\x75\x1d\x80\x7d\x3a\x9e\x01\x5d\x07\x20\x75\x97\x5b\x76\xdd\x04\x20\x9d\x54\x58\xdd\x69\x0f\x60\x5f\x82\xcb\xea\x3a\x00\xbb\x0c\xf3\xe9\x3a\xe8\xa5\x59\x46\xd3\x9c\xe6\x00\x76\x19\x26\xd0\x9d\x00\x9a\x73\xdb\xba\x93\x1a\x40\x3a\x89\x6c\xbb\xb3\x1a\x40\x3a\x39\xcf\xbb\x5e\x07\x90\x4e\x52\xb1\xee\xbc\x06\x90\x4e\xaa\xae\xae\xdb\x01\xa4\x93\x0a\xac\x3b\x8b\x01\x34\x27\xa5\x75\x3d\x11\x20\x9d\xd4\xcd\x5d\xaf\x03\x48\xd5\x38\x62\xd7\xeb\x00\xb6\x38\xe7\xb2\xba\x18\x40\x3a\x99\x63\xba\x2e\x86\x5e\xcf\x56\x59\x34\x4d\xaf\x00\x48\xc5\x05\x21\x5d\xaf\x00\x48\xc5\x99\xe5\x5d\xaf\x00\xe8\x46\xd4\xba\x4e\x01\x90\x3a\x6e\xf7\xee\x5c\x03\x90\xcf\x13\xa0\x4b\x00\x0c\x33\xb4\x76\x3d\x02\xdd\xe9\xed\x3e\xb3\x3a\x04\xba\xd3\xdb\xf1\x26\x76\xfd\x01\x20\x4f\x5f\x46\xdd\x01\xe0\x64\x38\xeb\xaa\x7c\x10\xf9\x9c\xde\x26\x31\x39\xc0\x14\x31\xdd\xc9\x01\xa0\xa8\x73\xba\x7a\x1e\x14\x05\x57\x77\x22\x00\x28\x0a\xa9\xae\x9c\x07\xe9\xe7\x30\xaf\x2b\xe7\x41\xfa\x9d\x07\x58\x39\xdf\x8f\x9c\xf7\x69\x50\xce\xf7\x23\xe7\x7d\x6a\x94\xf3\xfd\x9f\x9c\xa7\xa1\x4a\x77\x70\xf2\xe1\x75\x95\x3b\xd8\x6a\xc0\xd3\xd9\x52\x57\x98\x9b\x35\xa7\x2b\xe7\xc1\x3e\x9b\xc7\xd9\xfc\x6e\xd2\x0a\xaf\x60\xf3\x91\xf3\x55\x77\x4b\x57\xce\xf7\xce\x8a\x53\x5f\x4c\xa5\x3b\xe8\xba\x92\xbb\x91\x7e\xd0\x75\x69\x76\xc5\x7c\x77\x43\xa4\x61\x91\x16\x19\xc7\xed\xc3\x7d\x57\xdf\x83\x61\xf4\xb6\x1b\xe8\x07\xc3\x68\x53\x57\xc9\x83\x61\x08\xad\x2b\xda\x41\x3e\x5f\x25\x35\x3b\xc8\xe7\x23\xa7\x64\x07\xf9\x7c\x47\x55\xec\x60\x18\x19\xed\x0a\x76\xb0\x3f\x5d\xb4\x52\xbd\x0c\x46\xff\x4b\x38\xbd\xab\xa6\xc1\x70\xc2\x65\x57\x4c\x83\xe1\xea\x98\xae\x48\x06\x99\x6d\xfd\xa3\x2b\x92\xc1\xd9\x9c\xa1\xab\x91\x41\xae\x0c\xfc\xba\x12\x19\x0c\x73\xc5\x74\x15\x32\x18\x4e\x33\xe8\x8a\x61\x30\x5c\x89\xdb\xd5\xc2\x60\x98\x4d\xa5\x1b\xbf\xef\xf3\xdc\x09\x2a\x66\xfc\x1e\x64\xfd\x94\x5d\xc9\x0c\xc6\x79\x75\x95\xcc\x60\xb8\xac\xb7\xab\x98\x81\x5b\x91\x45\x37\x9e\x0f\x86\xab\xc4\xbb\x1a\x1a\x0c\x57\x63\x77\x25\x34\x18\xae\x79\xee\x2a\x68\x70\x72\x88\x77\xd5\x32\xc8\xd5\x87\x46\xb5\x0c\x86\x2b\x7d\xbb\x62\x19\xb8\xf7\x59\x74\x75\x31\x48\xcd\x38\x63\x57\x17\x83\xe1\x6a\xef\xae\x2c\x06\xc3\x04\xd5\x5d\x55\x0c\x72\xb5\x4b\x51\x14\x83\x5c\x51\x94\xdd\xe9\xf8\x60\xb8\xa6\xba\xab\x89\xc1\x70\x31\x76\x57\x12\x83\x61\xce\xea\xae\x24\x06\xf9\x8c\x64\x94\xc4\x20\x57\x1c\xa2\xdd\x30\x7c\x77\xf9\xb7\x99\x80\xba\x32\x19\xe4\xa9\x79\x94\xc9\xdd\x59\xf5\x9a\x5a\x99\x0c\xf2\xf4\x79\x32\xde\x0e\xd2\x70\x4e\x65\x57\x39\x83\x93\xe9\xa9\x2b\x9c\xc1\xc9\xed\xd0\xd5\xcd\x20\x4f\x1f\x61\x65\x33\xc8\xd3\x07\x4a\xd5\x0c\x22\xfb\x0c\x28\x9a\xc1\xc9\xff\xd1\xd5\xcc\xe0\x24\x1b\xeb\x6a\x66\x10\xf9\x9c\xde\xd7\xe1\x66\xf1\x8a\xf7\x48\x19\xdd\x6f\x16\x18\xf8\xf0\xa8\x98\xc1\x49\x59\xd9\x15\xcc\x20\x4f\xdf\x10\xf5\x32\x38\xb9\x0f\xbb\x72\x19\x44\x3e\x47\x69\x89\x47\x4b\x50\x09\xc5\x32\xc8\xd3\xe7\x49\xad\x0c\x22\x9f\x22\x2d\xf1\x68\x09\xea\xa5\x52\x06\x79\x6a\x09\x85\x32\x88\xec\x87\x41\x9d\x0c\xf2\xd4\x38\xea\x64\x90\xe7\x39\xca\x47\xff\xd1\x12\x9c\x4b\xfd\x0b\x8a\x02\xbb\xab\x7f\x41\x98\x6a\xaa\x1b\x3a\x07\xc1\xc6\xe0\xd1\x0d\x9d\x83\xa2\x1f\xa6\x1b\x39\x07\xb3\xf9\xd0\x29\x88\x41\x98\xac\xaf\xab\x87\x41\x98\xfb\xb5\x2b\x87\x41\x31\xb3\x53\x57\x0d\x83\x30\x51\x6d\x37\xb8\x0e\x4a\x3d\x45\x36\x68\x23\xcc\x3e\xd4\x95\xc7\x20\xe6\x69\x90\xef\xf2\x46\xd1\xf3\xd3\x55\xc7\xa0\x98\xbc\xad\x2b\x7a\x41\xcc\x53\x64\xb3\x3f\x9b\x4d\x1b\x95\xbc\xa0\xe8\x2f\xe8\x4a\x5e\x10\x2e\x60\xeb\x2a\x5e\x10\xa6\x2d\xec\x0a\x5e\x10\xe6\x05\xec\x0a\x5e\x10\xf3\x9c\xcb\x36\x32\x17\x7f\x5a\x55\xf5\x2e\x08\xf7\x4a\xe9\xca\x5d\x50\xf4\x63\x74\x95\x2d\xd8\x5f\x60\x4c\xe1\xcc\x78\x30\x9b\x5f\x60\x05\x2b\x98\xcd\xef\xb4\x7a\x15\xcc\x36\x2c\xb2\xfa\x8b\xe9\x6c\x7e\x50\x94\xab\xa0\xe8\xd2\xee\xca\x55\x30\x9b\x3d\x8f\x72\x15\x14\xb3\xd1\x74\x75\x26\x28\x0e\x29\x86\x92\x12\x14\x7d\x8e\x43\x45\x09\x66\x0b\x8b\xb2\x45\x4c\x69\x64\x84\x38\xd4\x93\x60\xb6\xe1\x51\xcd\x22\xda\x38\x3d\xaa\x5b\xc4\x8c\x46\x44\xec\x50\x4d\x82\xa2\x47\x77\x18\x08\x07\x25\x72\xfb\xef\xfe\x78\xa8\x3f\xc1\x34\x7b\xe6\x50\x7e\x82\xa2\x0e\x1e\xca\x4f\x30\xdb\xf0\xa8\xc7\x22\xe6\xd0\x32\xca\x1c\xaa\x4f\x30\x4d\xa7\x39\x0c\x81\x83\xe9\x36\x39\x43\xed\x09\xd2\xcf\x31\xda\x30\xb4\x3d\xce\x0e\x44\x3c\x48\xc3\xd0\x36\x28\xc6\x2a\x86\x42\x13\x54\x17\x04\x0e\x75\xe6\x30\x16\xad\x77\x72\xa8\x33\xc1\xbe\x02\xf6\x53\x68\x0e\xd3\x8f\xe9\xeb\x1a\x0a\x4d\x70\x92\x63\x0f\x75\xe6\x30\x16\xad\xab\x6f\xa8\x29\x87\x71\x67\x87\xff\x43\x4d\x09\xf6\x71\x54\x45\x4d\x09\xaa\x4b\xb7\x86\x92\x12\xec\xc3\x68\xab\x92\x72\x18\x8c\xd6\xff\x3b\x94\x94\xa0\xba\x92\x72\xa8\x28\x87\x81\x67\xbd\xbd\x43\xf5\x38\x0c\x3c\xeb\x00\x1d\xaa\x47\x50\x1d\xb4\x0f\xc5\xe3\x30\xee\x6c\x9e\xb9\xa1\x78\x04\xbb\xcc\x9a\x78\xbf\x48\x43\xf6\x33\xe5\xd1\x50\x3d\x8e\x7c\x0c\xc0\x65\x0d\x32\x0f\x83\xcc\x3a\xb6\x87\xea\x71\x18\x64\xd6\x3f\x3f\x54\x8f\x60\x9f\x0f\xe3\xa9\x1e\x47\x39\x16\xf0\xbf\x5a\xa0\x30\x89\xab\x7a\x98\x06\x40\x50\xfe\x8c\x45\x0c\x27\xc9\x83\x93\x58\x6e\xa8\x27\xc1\x3e\x8c\x96\x29\x1e\xc1\x2e\xa3\x65\x8a\x47\x50\x5d\xe9\x38\xd4\x8e\x60\x1f\xe6\xe9\x6c\x2c\xda\xf1\xa7\x93\x79\xa8\x1d\xc1\xc9\x17\x3f\xd4\x8e\x60\xb7\x81\x3b\x6b\x14\x1b\xec\xbf\xd2\x7e\xf5\x24\xd8\x97\xf0\x38\xdb\x5f\xcd\x1e\xc9\x17\x78\xa8\x1d\xc1\x2e\xf3\x38\xab\x57\x99\x9c\xe4\xdd\x56\x26\x0e\xa7\xa4\x87\x57\xb0\xc2\x27\x4f\x19\x1f\xb1\xe1\x62\xe9\x71\xf2\x94\xf9\x50\xa8\x1d\xc7\xc9\x53\xe6\x7f\x8d\x31\x8f\x93\xa7\xcc\x37\x56\x41\x39\x4e\x9e\x32\x5f\x6c\x15\x25\xa8\xae\xdb\x1f\x2a\x4a\xb0\x0f\xe3\xb2\x4a\x4a\x50\x5d\xce\x38\x94\x94\x60\x8b\x39\xff\xea\x4d\xdc\xa8\xa6\xd7\x1b\x06\x98\xc1\x3e\x9b\x95\xf3\x29\x26\xc0\x6c\xf6\xbb\x61\x80\x19\xec\xc3\xb8\xd7\xca\x51\xb0\xcb\x3c\x9d\x96\x73\x7f\x24\x13\xa1\x0d\x83\xce\xc3\xfd\x91\xcc\xb1\x3a\x14\xa9\x60\x97\xf1\x00\xa8\x52\xc1\x2e\xe3\x7c\x46\xa2\x41\x75\x47\x82\xa1\x72\x1d\xfd\x98\x8e\x86\xa9\x5c\xc7\x51\xae\xbe\x28\x2a\xd7\x71\x36\x45\x62\x8c\x34\x54\xa9\x60\x1f\xc7\x03\x65\xd0\x19\x54\xf7\x54\x18\x0a\xd7\x71\xf6\x49\xf2\xc3\xa3\x72\x05\xb5\xfb\x8a\x29\x5c\xc1\x3e\xcc\x2b\x68\xa8\xae\xa1\xc2\x2b\x68\x28\x85\xab\xf1\x84\xa1\x72\x05\xfb\x38\xff\xab\xa1\xfa\x31\x94\x55\xd1\x50\xa6\x4b\x33\x8b\xdc\x50\xce\x82\x7d\x1c\xd5\x53\xcf\x82\xd4\xa6\x06\x55\xd0\x8e\x33\x75\xdd\x77\x5b\xf5\x3a\xdc\xce\x77\x20\xb7\x86\xf2\x15\x54\xf7\x9e\x18\x06\xac\xc1\xbe\x2c\xf7\xc2\x80\x35\xa8\x6e\x6e\x31\x54\xb9\x60\x9f\xcd\xab\x6a\xa8\xa1\xa1\xbc\x80\x86\x32\x5c\x6d\xf2\xae\xa1\xf4\x05\xbb\x11\x9e\x4e\x43\x0d\x9f\x28\x0d\xe5\xfc\x75\x90\xba\x89\x55\x87\x71\xe8\x61\x1c\xda\x54\x67\xc3\x40\x33\xa8\x6e\xe9\x31\x8c\x33\x83\xea\xbe\x06\xc3\x30\x33\xd8\x35\xb1\xcc\xb6\x1a\x67\x76\x11\xe3\x50\x19\x83\xd4\x15\xeb\x43\x69\x0c\xf6\x71\xf9\x0f\x1d\xba\x71\xe8\x61\x1c\xda\x0c\x68\xc3\x38\xf4\x30\x0e\xed\x02\xc6\xa1\x9e\x06\x5b\xec\x78\x39\x9f\x10\xf7\x00\xfe\xf7\x5f\x8d\x11\x4c\x55\x70\xe0\x61\x7c\x79\x18\x5f\xd6\x35\x37\x94\xd4\x63\x6a\x1f\xdf\x4c\x05\x34\xd8\xc7\xf1\x8a\x28\xa0\xc1\x2e\xf3\x38\x2d\x34\x8f\x85\xb8\x2f\xea\xe5\x61\x84\xd9\xdc\x6e\x43\xc1\x0c\x76\x19\x56\x53\x31\x0f\xa3\xce\xa6\x72\x1b\xea\xe3\x61\x84\xd9\x05\xcd\xc3\x08\x33\xd8\xff\xa5\x1d\x8a\x66\xb0\x8f\xf3\xbf\x36\xd7\x18\xb3\x8b\xff\x86\xb2\x19\x54\xd3\x69\x0e\x43\xcc\xa0\x9a\x28\x76\x28\x91\x41\x35\x9d\xe6\x50\x22\x0f\x03\xc7\xce\xa6\x1d\x6a\xe4\x71\x1d\x4f\x96\xc7\xf9\x38\x90\x5e\xad\x39\xf9\x73\xa8\x7f\x87\xbb\x44\x9d\xc6\x2a\x80\x41\x4a\x67\xf8\xe8\x84\x75\xd0\xf4\xba\x0e\xe7\xab\x0f\x33\x82\x1b\x05\x19\x0a\x65\xb0\xcb\xbc\xac\xed\x32\x4b\xb8\x91\x8c\xa1\x78\x06\x29\x99\xc9\x73\xa8\x9e\x87\x99\xc3\xcf\x88\x50\xf9\x0c\x52\x75\xbe\xce\x50\x3f\x0f\x33\x87\xbb\x5a\x77\xa8\x9f\x41\xd3\x79\x3c\xd4\xcf\xc3\xcc\xe1\x26\x4c\x1c\x0a\xe8\x61\xe6\x70\x03\x32\x43\x05\x0d\xf6\x71\x54\x4f\x09\x3d\xcc\x1c\x6e\x3a\xde\xa1\x86\x06\xfb\xb2\x58\x45\x11\x3d\xcc\x26\x6e\x5c\x61\xa8\xa2\x87\xd9\xc4\x35\x9e\x2a\x1a\x9c\x55\x59\xc3\xa9\xee\xe3\x3e\xc6\xb3\x76\x1a\xef\xd6\x78\xa7\xb1\x1a\xef\xd6\x78\xe7\xbf\x1a\xef\x3e\xc6\xa3\x4c\xbd\x3d\xcc\x27\x8e\xc6\x18\xea\x6d\x90\xfa\x79\xee\x14\xdc\x60\xff\x95\x4b\xa8\xb8\xc1\x2e\xf3\x38\x8d\xf7\x1c\xe3\xd1\x30\x35\xf7\x78\x8e\xf1\x78\x7c\x14\xdd\xe0\x64\xda\x1c\x2a\x6c\x70\xe2\x40\x43\x85\x0d\xf6\x3f\xad\xb0\x66\x32\x7b\xb8\x49\x5a\x87\xb2\x1b\xb4\x7c\x2e\xa0\x9d\x4c\x28\x6e\xf8\x6d\x18\x9e\x06\xe9\x6c\xba\x36\x14\xde\xa0\x99\xa2\x61\x18\x77\x06\x27\x83\xe8\x50\x8b\x83\x94\xcf\xc0\x4e\x31\x0e\x76\x99\xc7\xd9\x2c\xe6\xb1\x77\x97\xf9\x0c\xe5\xf8\x30\x3e\x7d\x04\x85\x7a\x7c\x18\x9f\x3e\x12\x40\x41\x3e\x8c\x4f\x9f\x5b\xa1\x22\x07\xfb\x31\xf6\xbf\x36\xd6\x34\xe3\x67\x58\xac\x26\x1f\xc6\xac\x9d\xa1\x32\x14\xe5\x60\x9f\xcf\x32\x2d\xf0\xfa\x54\x9c\xf3\xf9\x54\x18\xb4\x3e\x43\x65\x83\xd6\xa0\x55\xc7\x3b\xc6\xac\xc1\xee\xd8\xb8\x3f\xca\xf7\xf1\x9d\x08\x3d\x66\x51\xbf\x0f\x63\xd6\x67\x34\xae\x80\x07\xfb\x12\x18\xde\x29\xf5\x60\x97\x51\x15\x55\xfd\x30\x90\x7d\x46\xe8\x4e\xb3\x07\xbb\x0c\x33\x2b\xf5\xc7\x77\xcc\x67\x99\xa6\x62\x9a\x7d\x3e\x1a\x4d\x65\x3f\x0c\x65\x9f\x41\xb5\xd2\x1e\xb4\x7a\x2e\xab\xa5\x8c\x64\x1f\xc9\x63\x24\x1b\xec\x91\x82\x65\x5a\xea\x63\x2a\x83\x57\x30\x40\x0d\x5a\xd5\x76\x4e\xa9\x07\xfb\x6c\x18\xcf\x29\xf5\x60\x57\x18\x03\xe8\x29\x00\xa9\xbb\x24\x72\xe8\x2a\x18\xcb\xb9\x0c\xcd\xff\xfa\x5c\x10\xb4\x76\x7d\xee\xd0\x0b\x00\xf6\x61\xfe\xd5\xb6\x12\xb5\x6e\x76\x7a\x86\xa5\x41\xca\xce\x15\x18\xba\x06\x40\x73\x99\xf0\x30\x02\x3d\x8c\x40\x1b\x3d\x0f\xdd\x05\x61\x04\xba\xb5\x3f\x4c\x59\x0f\xdd\x09\x61\x80\xda\x57\x29\xf4\x27\x80\x7d\x6a\xcb\x8a\x65\x4e\x6a\xe0\x33\x1c\x3a\x19\xc0\x1e\x5c\x0c\xca\x9a\x65\x4e\x74\xf0\xaf\xdd\x22\x27\x3a\xe0\xab\x0b\x7d\x0a\x60\x5f\x22\x51\x36\x2d\x73\xaa\x07\x2e\xc3\xd0\x6d\x00\xf6\x71\x5e\xf6\xb6\xcc\xa9\x0e\x78\x2e\x43\xc7\x41\x18\xb7\x76\xae\x47\xe8\x39\x00\xcd\x15\xbf\xe1\x44\x79\xb0\xdf\x4c\x4e\x67\x28\x3b\x92\x21\x7a\x3a\xa7\xd0\x4d\x00\x76\x19\xa7\x33\x96\x1d\xa9\x11\x2d\xe7\x74\x86\xb2\xc1\x3e\x8c\x9a\x18\xca\x06\xbb\x8c\x56\xe8\x62\x00\xa9\xab\x3a\x43\x1f\x03\xd8\xc7\x59\x15\x5b\x96\xdc\x3b\xde\x7b\xaa\x3f\x21\x4e\xe0\xda\x66\x38\xe1\x1d\xec\x32\xac\x67\xe0\x1a\x34\x5f\xf4\xd0\xc7\x10\x27\x6e\xad\xf1\xf4\x31\x80\xe6\x40\x37\x74\x31\x80\xe6\xb2\xfa\xd0\xc5\x00\x9a\x92\x23\xf4\x30\x80\x7d\x32\xcc\xa4\x87\x21\x0c\x5a\xbb\xb4\x2f\x74\x31\x84\x41\x6b\x7b\x84\x30\x68\x0d\x52\x33\x23\x41\xe8\x76\x00\xfb\x38\x6b\xa2\x4d\x4e\xd0\xba\x5b\xe6\x13\x60\xd0\xda\x6e\x22\x9c\xef\x0e\xf6\x71\xd8\x58\x5f\x44\xfc\x0b\x64\x7b\x0d\xed\x84\x2f\xa2\xe9\x8c\x09\x7d\x11\x91\x4f\x68\x97\x5b\x6b\x24\x1b\xa4\xe2\xec\xe4\xd0\x3f\x11\xee\x80\x6c\xb7\x13\xfa\x27\x40\x33\xc7\x41\xe8\x9e\x08\x83\xdb\x0e\x47\x43\xf7\x44\x18\xdc\x76\x58\x1f\xfa\x22\xc2\xe0\x76\x3d\xc7\x69\xaa\x8d\xe6\xb8\x3e\x74\x4f\x80\x7d\x98\x57\xd5\x52\xf8\x27\x8a\x89\xd1\xc2\x80\x37\x68\x0e\x15\x43\xf7\x04\x68\x7a\xc4\x43\xf7\x44\x18\xda\xd6\xc5\x16\x4e\xb2\x07\xa9\xb8\x94\x21\x74\x59\x84\xe1\x6e\x17\x86\x84\x2e\x0b\xb0\x8f\xe3\x3e\xea\xb3\x08\x7d\x16\x0c\x1d\x42\x97\x05\x18\xae\x30\x0c\x3d\x16\xe1\xbc\x7b\xbb\xdd\xd0\x63\x11\xa6\x8e\xa3\x87\x0d\x03\xe0\x51\x9d\x07\xe2\x6b\xec\xdc\x79\x10\x6e\x6f\x10\x4e\x94\x07\xfb\x5e\x63\x74\x63\xe2\x61\x4c\xbc\x9e\x32\xdb\x4a\x4c\xdc\x3c\xaf\xa1\xaf\x03\x64\xa7\x7c\x84\xbe\x0e\x30\xd2\xf9\xa3\x0d\xc5\xd5\x51\xf5\xcf\x87\x2e\x0c\x70\x32\x86\x84\x1e\x0c\x90\xa7\x37\x41\x6f\x05\x88\x49\xf7\x1d\x7a\x2b\x40\x98\x53\x3d\x74\x56\x80\xe2\xdc\xc4\xd0\x31\x01\x8a\x43\xe9\xd0\x31\x11\xc7\x31\xe1\x2d\xd0\x31\x01\xaa\xf9\xf6\x42\x1f\x04\xa8\xae\x66\x0a\x5d\x10\x20\x55\x85\x53\xe8\x6e\x00\xe9\x2c\x2f\x08\xfd\x0d\xa0\x9a\x73\x3f\x74\x37\x80\xa6\x06\x09\xbd\x0d\x20\x99\x5c\x36\x0c\x93\x83\x74\x42\x77\xa1\x03\x22\x4c\xba\x6e\x36\xa1\xd0\xdb\x00\x46\x3a\x45\xde\x4f\xc2\xe4\xdd\xe7\x4f\x67\x03\x18\x2e\x04\x0d\x7d\x0d\x60\xb8\xda\x36\x74\x35\x80\xec\x44\x9f\xd0\xab\x00\xc6\xbf\x73\xd9\x74\x9c\x0a\x4d\x17\x67\xe8\x54\x00\xa3\xe3\xa4\x0a\x7d\x0a\x20\x57\x5c\x14\xa1\x4b\x01\x8c\x8e\x98\x0b\x63\xe4\x60\x74\xbf\x51\x3a\x14\xc0\x30\x8d\x7c\xe8\x50\x88\x41\xc8\x15\x25\x17\x3a\x0f\x40\xae\xe1\x1f\x6d\x24\x21\xf2\x3a\xad\x84\xcf\x27\xc1\xef\x1e\xfe\xd1\x16\x0d\xf6\x55\xc1\x89\x13\xc6\xc3\xc1\xe8\xf1\x07\x5f\x7b\xb8\xe2\x1d\x8c\x8e\x0a\x0f\xa7\xbc\x83\xd1\x51\x02\xa1\xa7\x21\x82\x1c\x86\xd3\x22\xef\x74\x30\xc9\x03\xaf\x5f\xe8\x55\x08\x37\x0c\x33\xc1\x71\xe8\x2d\x00\xdb\xc6\x58\x4f\x77\x00\xc8\xd3\x07\x42\x6f\x00\x08\xd7\xae\x84\xce\x00\x90\xa7\x2f\x91\xbe\x80\x30\x3b\x9e\x77\x42\x57\x00\xc8\xd3\xe7\xc1\xe0\x3a\x88\x6c\x65\x8d\xa4\x83\xb3\x40\x31\x74\x04\x84\x69\xef\x7c\xdc\xf4\x03\x80\x13\xd9\x09\xa3\xe6\x61\x8e\x3b\xc4\x72\xe8\x05\x08\x73\xdc\xf9\xb8\xe9\x04\x08\x93\xd8\xe1\xb1\x0b\x7d\x00\xe0\x2c\x94\x09\xa3\xe6\x61\x12\x3b\x1f\x2d\xbd\x02\xe0\xac\x4e\x0d\x9d\x02\x61\x12\x3b\xed\xaa\x4f\x20\x4c\x62\xa7\xec\x0e\xf5\x7f\x98\xb1\xce\x0f\xbd\xfa\x1f\x9c\x65\x52\x61\x24\x1d\xa4\x7e\x2c\x66\x24\x1d\x9c\x85\x7d\xa1\x9b\x00\x44\xc6\x4f\x12\xba\x04\xc2\x2c\x76\x3e\xbb\xc6\xc8\x41\x98\x94\x36\x8c\x91\x87\xf9\xe9\xfc\x2e\xeb\x0f\x08\x93\xd1\xf9\x9e\xe9\x0e\x08\x93\xd1\xf9\xd5\xd4\x1d\x00\xce\x84\x92\x50\xf9\x83\xad\x5d\xb1\x8f\x8a\x1e\x14\xc7\xed\xa1\xa0\x07\x71\x7a\x3d\xc5\x7b\x20\xd4\xeb\xe9\x44\x15\xea\x20\x5c\x33\x15\xea\x74\x10\xae\x8d\x09\x65\x3a\x08\x57\xd0\x84\x2a\x1d\x84\xeb\xaf\x42\x91\x0e\xe2\x7c\x0d\x55\xe4\x20\x5c\x2c\x13\x0a\x72\x10\x2e\x20\x0a\xf5\x38\x08\x97\x8b\x85\x72\x1c\xec\xf7\x01\xf3\x2b\xc7\x41\xb8\xbf\x67\x28\xc7\x63\x4b\xef\xe2\x24\xf5\x50\x51\x83\xdd\x4a\xaa\x61\xcc\x1a\xec\x21\xb4\x67\xb3\x01\x64\xa8\x3b\x5f\x65\xe5\x33\x28\xca\xe2\x50\x3d\x83\xe9\xb2\xca\x50\x3d\x83\xe9\x5c\xa3\x70\xba\x77\x3c\x84\xca\xbc\x25\x4e\xed\x06\xa9\x3a\xeb\x31\x8c\x6d\x83\x79\xfa\x7f\xf5\x34\x28\x67\x54\xac\x76\x06\x45\x77\x4a\x38\xb3\x1b\x94\x33\x88\x55\x4d\x87\xb1\x6d\x3c\xe7\xa1\x98\x8e\x13\xdb\xf6\xf4\xde\xb8\x97\xa0\x62\xb1\xc8\x76\xbf\xf6\x8a\xd8\x5f\x25\x0d\x66\x73\xc0\xa5\x90\x06\xd3\x75\x8d\xa1\x8e\x06\x45\x8f\x53\x28\xa3\x41\xd1\xc9\x11\xaa\x68\x30\x5d\x96\x1d\x8a\x68\x50\xf4\xe7\x84\x82\x19\x14\x3d\x26\xa1\xbe\x05\xa9\x9d\xd1\xbb\xfa\x16\xa4\xdf\x91\x4d\xea\x5b\x50\x9d\x50\x11\x4a\xd9\x70\xc5\x78\x3e\x57\xb0\xb6\x9f\x31\x23\x7b\x7f\x75\x2b\xd8\xa7\xc3\x1c\xea\x56\x50\x9d\xbb\x10\x4e\xc0\x0e\x97\x8c\x9f\xf1\xb6\x13\xb0\xc3\xf5\xe1\x8a\xd4\x50\xcc\x82\xea\x34\xbc\x50\xcb\x82\xea\x34\x91\x50\xca\x82\xd4\x4c\x82\x16\x4a\xd9\x70\xc5\xf8\x19\xbd\x1b\xf6\x8e\x75\xda\xea\x55\x6d\xeb\xb2\xad\xdc\x05\x15\x2f\xa8\xce\xee\x08\x15\x6f\xac\x13\x33\xe5\xfe\xa9\x78\x63\x1d\x93\x58\x39\x4d\xb2\x8e\x49\xac\x89\x77\x70\xa3\x3a\xe7\x23\x54\xc1\xb1\x8e\x95\xb0\xb0\x32\x18\xec\x8f\xce\x6e\xd8\x54\x06\x83\x74\x92\xf2\x4f\x75\x2e\x08\x07\xcc\x53\x99\x0b\xaa\xf3\x58\xa6\xea\x15\xa4\x9f\x8b\x72\xa6\xf2\x15\xec\xb2\x41\xd9\xb0\x8c\x00\x54\xfe\x83\xce\x9e\x8a\xdb\xe9\xd2\x70\x17\x45\x4e\xc5\x2d\xa8\x66\xd4\x9e\x6a\xdb\xe9\xca\x70\xd7\x31\x4d\xb5\xed\x74\x65\xb8\x8b\xdf\xa6\x21\xf0\xe9\x2a\x70\x17\xd3\x4d\x85\x2c\xa8\xa6\x2e\x9e\x86\xc5\xa7\x61\x71\xd7\xd2\x4d\xc3\xe2\x93\xd5\xdd\xce\x1d\x9d\x4a\x5b\xb0\x0f\xb3\x4c\x53\x24\x96\x32\xf3\x80\x4f\xe5\xee\x4c\xc7\x12\x41\x99\x96\x30\x54\xee\x52\xa9\x69\xa8\x1c\x54\x27\x46\x4d\x43\xe0\x20\x25\xf3\x18\x4e\x15\x2b\x48\xc9\x5c\x7d\x53\x79\x0a\xaa\x19\x5a\xa7\xf2\x14\xec\xc3\x68\x97\xfa\x14\xec\x32\x2a\xac\x40\x9d\xa6\x87\xcb\xe7\x74\x36\x82\x10\xb8\x0b\x94\xa7\xfa\x14\xec\x9a\x50\x61\xf5\x29\xd8\x65\x5e\xd6\x1b\x96\x0d\x6f\xf0\x1d\x9b\x6a\x51\x50\x4d\xdb\x3b\x95\xa2\xa0\x9a\x0d\x79\xaa\x44\xc1\xfe\xa7\x87\xbd\x96\x9d\xf6\x5b\x13\xdb\x9f\x4f\xfb\xb1\x89\xaa\x13\xec\xe3\x68\x84\xaa\x13\xec\x32\xec\xa9\xec\x04\xd5\x7c\xb7\x53\xd5\x09\x52\x32\xd3\xe5\x54\x75\x82\x5d\x46\x55\x54\x9d\xa0\xf9\xf9\x99\xaa\x4e\x90\x92\xd9\x54\xa7\xaa\x13\x34\xf3\xa9\x4c\x15\x26\x68\x7e\x7d\xa6\x0a\x13\xec\x0b\x78\x98\x6d\x2d\xec\x92\xa9\x49\x14\x98\xb3\x1c\x0f\x26\x65\x2a\xc7\xe9\x92\x6d\x73\x4f\x4e\xa5\x23\xd8\x15\xc1\xe8\x4a\x47\x90\xce\xf6\x89\xd3\x35\xdb\xa0\xf9\x59\x9d\xc6\xbf\x41\xca\x7e\x57\xa6\xcb\xb3\x41\x1a\xc6\x80\xa6\x6b\xb1\xc1\x3e\xce\xff\xda\xb0\xaa\xc7\xd1\xaf\x83\x7a\x12\xec\xe3\xac\x8a\x2d\xab\xfa\x13\x9a\xd7\xf0\x2e\x56\x1d\xb1\x7c\xbb\xa6\x91\xf2\xd9\x74\xaa\x69\x29\x25\x25\xd8\xcd\xe5\x1a\x6a\x4a\xb0\xaf\x8b\x09\x0c\x8b\x83\x7d\x0d\x9a\xab\xaa\x04\xcd\xa4\x77\x53\x55\x09\x52\x36\xcf\xd8\x34\x06\x0e\x52\x36\xcd\xe1\x54\x6a\x82\x5d\x66\x55\x7c\x8c\x9b\x0e\x34\x86\x5b\xd3\x80\x37\xd8\xc7\x79\x0d\x9b\xdb\x5c\x2b\xc4\xa0\x7e\xaa\x36\x41\xfb\x77\x09\x2d\xb0\xd1\x4c\xc3\x35\xd5\x9f\xa0\x9d\xca\x29\x3f\xe7\xd9\xf6\xeb\x1c\xa6\x4d\xfa\x71\x34\x72\x2f\x14\xa0\xb3\x1f\xd7\x9b\xc7\x69\x93\x8d\xd6\x19\x06\x4c\x05\xe8\x3c\xbb\x7e\x21\xee\xa7\x11\x70\x90\xb2\x31\x9b\xa9\xdc\x04\xa9\xfc\xce\x65\x6d\x7f\x67\xc9\x88\xcd\x52\x6f\x4e\x77\x02\xfb\xd9\x2e\x43\xdb\xa0\x39\xa3\x60\xaa\x41\x67\x3f\x8e\x37\x1b\xa6\x45\xba\x4b\x23\xb4\x9c\x22\x14\x34\x7d\x80\x53\xc5\x09\x52\x39\xef\x9d\x92\x13\x34\xc3\x2e\xd3\xb8\x36\x48\x67\x4f\xea\xa9\x0c\x05\xe9\x6c\x39\x3e\x0d\x62\x83\x74\xf6\x42\x9f\x0a\x51\x90\xda\x69\xbf\x4a\x74\x0e\x27\xa0\xfb\x45\x35\x3c\x0d\x52\x71\x9d\xdd\x54\x9e\x82\x5d\xe6\x7f\x6d\xd9\x46\x4f\xe7\x12\x36\x8c\xfc\x6a\xee\x93\x33\x55\x9b\x20\x85\x8b\x16\xa7\x72\x13\x64\x17\xa9\x4c\xe3\xda\x20\xcc\xce\x3e\x55\xa0\xa0\xe8\x86\x9f\xc6\xb0\xc1\xd4\x39\x35\x0d\x61\x83\x56\xf1\x09\x4d\x35\x29\x48\xf5\x18\x44\x4d\x0a\xf6\xc3\x6a\x35\x6c\x7c\x9c\x70\xa7\x17\xf5\xe6\x87\xc1\x19\x0d\xac\x52\x9d\x67\xdf\xb0\x3f\x2c\x07\x9f\x46\xab\x41\x9e\x3e\x1b\x4a\x54\xb0\xfb\x1f\x6e\xba\x82\x74\x9a\x87\xdd\x27\xcd\xb8\x34\x48\xdd\xe0\xd0\x54\xa4\x82\x30\xca\x3b\x15\xa9\xa0\x18\xcb\x99\x8a\x54\x10\x3a\x70\xa6\x22\x15\x84\x71\xf4\xa9\xfc\x04\x53\xb7\xdd\x54\x7e\x82\x72\x1e\x33\x23\xd2\xd3\x04\x6c\xe7\xf3\xae\x22\x9d\x6e\x70\x6d\x42\xae\xa9\x24\x9d\x66\x60\x33\x2d\xdd\x54\x7f\x4e\xb3\xad\x9d\x0f\xbc\x02\x74\x9a\x6d\xcd\x15\xe3\xd3\x40\xf5\x74\x87\x6b\xd7\xb8\x4f\x55\xe9\x34\xdb\x9a\x6b\xbc\xa7\x81\xea\x79\x02\xd5\xdd\x32\x9b\xbf\x51\x4d\x45\x3e\x55\xaf\x60\xdf\x38\x4f\xe7\x0d\x26\x9e\x5d\x8d\x85\x4f\xf5\x2b\xa8\xd3\x56\x28\x56\x41\xfb\xd7\x08\x0d\x70\x42\xd7\xdd\x0a\x6b\x80\x13\xba\xee\x5e\x41\x03\x9c\xd0\xb5\x95\x53\xc1\x82\x56\x71\xf2\x4d\xd5\xea\x74\x3d\xb3\x9e\xd6\x79\x5b\xe1\xdb\x4f\x34\xaa\x7c\x2a\x4e\xc1\xfe\x44\x71\x7b\x54\xa7\xa0\x75\x64\xdb\x54\x9d\x82\xdd\x2e\xff\x6a\x8d\xd9\x7c\xda\xe9\x52\x53\x79\x0a\xf6\x37\xc5\xab\x5a\x61\xf4\x69\x39\xfd\x9b\xfa\x14\x34\x27\x38\x4f\xf5\x29\x48\x67\xc2\xfc\x34\xbc\x0b\xd2\x70\xdd\xcc\x54\x06\x4e\x97\xf3\x3a\xf6\x30\xac\x0a\x86\x89\xf5\xa6\xca\x70\xba\x57\x96\x7d\x96\xca\x10\xfc\x1b\x97\xab\x0c\x41\x64\x07\x6d\x6a\x3e\x70\x5c\x06\x53\xcd\x37\xc9\x40\x7e\x86\x36\x0a\x3c\x30\x9d\xd8\x33\x15\x78\xd3\xc9\xcb\x7e\x4d\x55\x73\x60\x9a\xa3\x68\x1a\x11\x05\xd3\x4c\x4f\x53\x81\x07\xa6\xf9\xa5\xa6\x01\x51\x30\x9d\x72\x33\x8d\x87\x82\x72\x3e\xe0\x86\x43\xc1\x34\xb7\xcf\x34\x1a\x0a\xa6\xc9\xbf\xa6\x62\x11\x4c\x27\x17\x4d\xb5\x22\xd8\x37\xd3\xf3\xfb\xe2\x9a\x86\xcc\x19\x81\xd3\x79\xcf\xd3\x34\x64\xae\x9a\x98\x0a\xc8\x79\x04\xa4\x9f\x6a\x05\xe4\x54\x40\x9a\xb1\x60\x1a\x0c\x05\xbb\x8c\x66\xa9\x16\xa7\x6a\xd1\x3c\x09\x53\xb5\x08\xf6\x98\xd3\x32\x9b\xbf\x1c\x38\xda\x0b\x2b\x17\x41\xab\x5e\x42\x69\x38\xd7\x79\xc4\x2d\xb3\x69\x46\x3e\x8d\x4c\x4f\xa5\x21\x68\x1d\x5f\xc2\x54\x07\x82\xdd\x45\x7a\x98\x2d\x5b\xee\xbd\xe9\x57\x44\x1d\x08\x9a\x51\xb7\xa9\xe6\x03\xe9\x6c\x2c\x3c\xd5\x7c\x60\xf7\x55\xbb\xec\x52\xf3\x5d\x86\x3e\x11\x09\x97\xfa\xee\x72\x23\x2a\x86\xa6\x97\x11\x4b\x30\x4c\x8a\x79\x29\xe5\x2e\xf7\x90\xe2\x0b\x72\x19\x9c\x04\xd9\xa5\x9d\x97\x52\x0d\xe4\x4a\xa3\x2e\x65\x19\xc8\x95\x41\xc9\xa5\x2a\x03\xb9\x4e\xaf\xb8\x2c\xda\x1d\x45\xe3\x11\xb9\xd4\x69\x97\x1b\x2a\xa3\x53\x2e\x75\x1a\xc8\x8d\x67\xeb\x52\xa6\x81\xe1\xaa\xe7\xcb\xa8\x24\xc8\x8d\x4f\xfb\xa5\x4a\x03\xb9\x4e\x8f\xea\x16\x75\x8e\xa2\x8d\x8a\x34\x90\x1b\xbd\xea\x65\x48\x12\xe4\x3a\xbd\xe2\x6d\x11\x5e\xbe\xf0\xf4\xb6\x91\xe0\x63\x73\xdf\xba\xcb\xe0\x23\xc8\x73\x58\x7d\xdb\x9d\x74\xd8\x5a\x0b\xdb\x9d\xe8\x20\xf1\x2d\x5c\x0a\x39\x90\x27\xee\xc7\x4b\x1d\x07\xf2\xe4\xab\x79\x29\xd9\x40\x9e\x3c\x65\x97\xf2\x0c\x9c\x8e\xf5\x52\x9d\x81\x34\x4a\xfc\x41\x81\x5f\x8a\x37\x90\x27\xdf\xcf\x4b\xf1\x06\x52\x2b\xf4\x46\x97\xea\x0d\x44\xf6\xb6\x2a\xde\x40\x9e\xa8\x88\x4b\x9d\x06\x8e\xd6\xbc\x94\x69\x20\x4f\x5c\xd4\x97\x73\x92\x41\xa9\xd9\xa3\xbc\x3b\x85\x7e\x1d\x8f\xc8\xa5\xd2\xba\x4e\x7a\x2c\xcd\x67\x7c\x0f\x84\x9d\xd8\xe5\x94\x64\x50\x2a\xde\xcf\x4b\x41\x06\x8a\x43\xa3\x4b\x41\x06\x4a\x4d\xfe\xd1\xea\xbb\x53\x94\xcb\x7a\x2e\x05\x19\x28\xbe\xf2\x97\x01\x3f\x30\x9d\x2d\x7b\x19\xef\x03\x61\xf2\xf3\x4b\xd5\x06\x4a\xc5\xc9\x70\x29\xc6\xae\xca\xe8\xa5\xfa\x47\x5b\x59\x6d\xa5\x45\xb6\xd2\xd0\x1e\xef\xf6\xa5\x14\x03\xe9\xec\xf4\x7a\x19\xee\x03\x5b\xa4\x51\x64\x93\x2a\xae\xda\xe6\x25\x6d\x52\xf5\xeb\xef\x1f\x6d\x51\xc5\x55\x5b\x3c\xbf\x2d\xda\x08\xf7\x63\xb9\x54\x66\xa0\x54\x5c\x59\x97\x53\x98\x41\xb8\x53\xd1\xa5\x56\x03\xe1\xd6\x31\x97\xb2\x0c\x94\x9a\x3d\x97\x4f\xea\x46\xf1\x1b\x79\x29\xd4\x40\xa9\xd9\x73\xf9\xf0\x36\xdb\xcd\x53\xaf\x26\x03\xe1\xe0\xe6\x32\xd4\x77\xb9\x24\x36\x7b\x94\x0d\x62\xfd\x6b\xc5\x69\x7d\x29\xab\x40\x71\xe0\x71\x29\xab\xc0\x74\x3a\xef\xa5\xaa\x02\x45\x31\x7f\x29\xaa\x2e\x93\x5e\xfb\x45\x53\x2c\x5d\x66\xb3\xd6\xaa\x06\xf0\x40\xea\x79\x58\xe6\x6d\xeb\xf8\x69\x7d\x76\x94\x54\x97\xe9\xac\x35\xab\xf2\xe9\x32\x9d\xb5\x37\x57\xf5\x74\x99\xce\x9a\xf1\xd5\xa5\x7a\xba\x4c\x67\x8d\x02\xbe\x14\x4f\xa0\xa8\xf7\x2f\xa3\x75\xa0\xd8\xa5\x5c\x6a\x27\x50\xf4\x1e\x5c\x4a\xa7\x6b\xd8\x41\x63\x1d\x65\x12\x98\xee\x59\x77\x19\xad\x03\xd3\x08\xea\xa5\x70\x02\xd3\x99\xd8\x97\xba\x09\x4c\xa7\x93\x5f\xca\x26\x50\x1c\xf5\x5d\x4e\xf4\x05\x53\xbf\xd9\xa5\x90\x02\xc5\xf1\xe2\xa5\x8e\x02\x45\x87\xcb\xa5\x8c\x02\xa9\x3b\xc8\xb9\xd4\x51\x60\x3a\xb9\xf8\x52\x33\x81\xa9\xfb\xee\x52\x33\x81\xe9\xfc\xfd\x4b\xcd\x04\xa6\x01\xe0\xcb\xa8\x1d\x98\xce\xad\xbf\x94\x51\xa0\xe8\x5a\xb9\x94\x51\x60\x3a\x3d\xfc\x52\x46\x81\xe2\xcc\xca\x4b\x25\x04\xf6\x78\x03\x5b\x18\xb4\x03\x67\x7b\xb2\xcb\xa0\x1d\xa8\xae\x56\xbc\x54\x44\x60\xff\x93\x6a\x38\x7f\x17\xa4\xaa\xd7\xef\x52\x26\x81\xb3\x45\xeb\x65\x24\x0f\xec\xbf\xd2\x4e\x95\x13\xa8\xa7\xe3\x51\x39\x81\xfd\x9d\xa4\xed\x2a\x27\x50\x5d\x1c\x7f\xa9\x9c\xc0\x3e\x1b\x8d\x57\x27\x81\x93\x59\xef\x32\x98\x07\xf6\x61\xdc\x29\xa3\x79\xe0\x6c\xc7\x78\xa9\x9d\xae\x13\xba\xb3\x23\x53\x28\x5d\x66\xaa\xf6\xe1\x30\x4e\x07\x8a\x6e\xb0\x4b\x99\x04\xea\xf9\xea\xaa\x88\x40\x75\x55\xe1\xa5\x20\x02\x67\x8f\xe2\x4b\x3d\x04\xea\x79\x0b\x95\x43\xe0\x24\xbc\xbd\x94\x43\xa0\x1a\xf2\xbb\x0c\xe6\x81\xea\xac\x85\x4b\x81\x74\x1d\x81\x64\x77\xa6\x40\x02\xd5\x25\x9d\x97\x01\xbe\xeb\x3a\xb7\xdd\x26\x79\x43\xaf\x33\x2f\x82\xd3\x39\x69\x17\x54\xf7\x93\xbc\x14\x43\xa0\xba\x35\xe1\x65\x38\x0f\xa4\x28\xbf\xdf\x1f\x3a\x67\xf5\x13\xa8\xee\x11\x79\x19\xda\x03\xe9\x67\x02\x80\x4b\xf9\x04\xaa\x7b\x0b\x5e\xaa\xa7\xcb\x6c\xd3\xce\x53\xbd\x9c\x81\x7b\x99\x6d\xda\xac\x61\x97\x92\x0a\x54\x37\xd1\xbc\x54\x54\x60\xff\xd5\xba\x7b\x6f\x6f\x1d\xeb\x76\xd0\x4a\x2a\x50\xdd\x1f\xf3\x52\x51\x81\x7d\x18\xf7\xcd\xd9\xb6\xa0\xba\x35\xe8\xe5\x64\x5b\xb0\xaf\x40\x85\x9d\x6c\x0b\xaa\x5b\x13\x5e\x46\x06\xc1\x3e\x9b\x65\x5a\xe4\xd1\xd9\xee\x9b\x6e\xb4\x10\xd4\x7e\x2e\xaa\x95\x48\x05\x95\x5c\x96\x7a\x19\x40\x04\xd5\xfd\x10\x2f\xa3\x85\xa0\xf6\x53\x0f\x5b\xff\x30\x95\xc4\x21\x86\xa1\xc1\xcb\x34\xd2\x6e\x38\x70\x39\xd5\x16\xec\xba\x61\x5f\x45\x21\xa8\xee\x21\x7a\x29\x0a\xc1\x3e\x8c\x2b\xa8\x0a\xaf\xf7\x34\x0b\xfb\xaa\x01\x41\x75\xa3\xcc\xcb\xe8\xe0\x65\xca\x68\xd7\x1c\x5e\x86\x07\xc1\x36\x1c\x37\x5f\xad\x08\x76\x19\xed\x52\x2c\x5e\x4e\xb5\x75\x4d\xce\x65\x84\x10\x54\xf7\xa4\xbc\x14\x90\xa0\x9e\x0e\x5d\x01\x09\xb6\xe1\x3c\xcc\x9b\xef\x44\x5b\xd7\xbf\x5e\xaa\x4a\xb0\xcb\xb8\xad\xca\x4a\xb0\x55\x14\x06\x50\x57\x82\x7d\x1c\xf6\x54\x58\x82\x7d\x1c\xe7\x53\x46\x82\x7d\x1c\xad\x50\x34\x82\x7a\xc6\x59\x8a\x46\x50\xcf\x70\x49\xcd\x08\x52\x32\xa6\x7c\x39\x7f\x16\xa4\x76\x1e\x61\x35\x23\xa8\x6e\x54\x78\x29\x0f\x41\x9d\x7e\xe9\x0d\x39\x82\x7a\x86\x3d\x46\x1c\xc1\xbe\x00\x26\x51\x44\x82\x5d\x5d\x4c\xa7\x88\x04\xf5\x0c\xf8\xd4\x90\x60\xb7\x94\xd6\x1b\x85\x04\xd5\xf5\xd8\x97\xb2\xf2\x22\xe4\x98\x4c\xfd\x71\xa9\x2b\x41\x75\xed\xf8\xa5\xac\x04\xd5\xcc\x22\x97\xaa\x12\x54\xf7\xf5\xbd\x54\x95\xa0\x9e\x91\x95\xa2\x12\xec\x16\xd0\x50\x45\x25\xa8\xae\x99\xbf\x14\x95\xa0\x9e\x41\xa6\x9a\x12\xec\x7f\xee\x7b\x70\xab\x29\x41\x75\x13\xc8\xdb\x30\xe2\x4d\xcc\xd0\xb1\xe8\xad\xa6\x04\x67\x0e\xd2\x6d\x18\x11\xa4\xe4\xf6\x71\xb7\x61\x44\x90\x92\xd1\xd6\x5b\xed\x09\xf6\x71\x83\xb2\xb0\xcc\x85\x07\xa8\x8d\x5b\xf5\x09\xce\x34\xc6\xdb\x40\x21\xd8\x87\x65\xca\x1e\xcb\xec\xab\xa6\x97\x78\x2d\xd3\xcf\x85\x2c\xb9\x95\xa9\xa0\xe9\xe7\xbb\x95\xa9\x60\x1f\xb6\x6f\xd6\xad\x4e\x05\xcd\x0e\xfd\x56\xa7\x82\x7d\x18\x57\x50\xa8\x82\x5d\x86\x99\x54\xaa\x60\x37\x96\xda\x19\x64\x04\xfb\xde\xd3\x0a\xe5\x2b\xd8\xff\xc5\x78\xea\x57\x90\x92\x7b\x7f\xdd\x0a\x58\x70\xf2\x49\xdc\x0a\x58\xb0\x0f\xa3\x61\xce\xa9\x05\x4d\x67\xc9\x6d\x2c\x12\xec\x9a\x78\x55\x6d\x97\x88\x63\x55\x2b\xa7\xe9\x92\x71\xac\xf0\xaf\x9a\x2e\x11\xc7\xf2\xf6\x2b\x74\xef\x74\x3c\x84\xda\x44\xd3\x25\xe7\x14\xe3\xd9\xbe\x9d\x79\x0b\x9a\x63\x8b\x5b\xf5\x7b\xe7\x63\x26\x2a\xa2\xfc\x05\x29\xeb\x98\xbc\x0d\x63\xde\x27\x39\x14\x0f\xff\xad\x26\x06\x29\x9f\x5b\x61\x1c\x13\xec\x32\xcc\xa4\x50\x06\xfb\x7c\x1e\xa7\x9d\x36\x9a\x32\xe2\x56\x09\x83\x7d\x18\x56\x57\x0a\x83\xa6\xbe\xb9\x55\xc2\xa0\x6d\xa9\xf7\x9f\xbd\xf8\xad\x50\x06\xa9\x3b\x69\xea\x76\xbe\x2d\xd8\xed\xb1\x4c\x93\x65\x63\x66\x3e\xd0\x2a\x6a\xb0\xcb\xb8\xc7\x4a\x6a\xb0\xcb\xa8\xa8\x61\x4e\xb0\x2b\x4f\xbb\x0d\x73\x82\x7d\x1c\xd7\x50\x68\x83\x7d\x5d\xcf\xa7\x7d\x8a\xf6\xe1\xa3\x77\xab\xb4\x41\x53\x30\xdf\x2a\x6d\xb0\xff\xca\x9d\x57\x6a\x83\x5d\x66\x95\x35\x50\x31\x44\xe8\x6d\x56\x6c\x83\x7d\x9c\x65\x9a\xa0\x68\x02\x9f\x24\xd5\x36\xd8\x4f\x0d\xc7\x29\xb7\x41\xca\xa6\x85\xb8\xd5\xdb\xa0\x19\x82\xbb\x0d\x92\x82\x7d\x18\xad\x30\x48\x0a\x52\x37\x22\x72\x3b\xc1\x16\xa4\xf2\xf3\xc5\x54\x98\x83\xe6\x02\xfb\xdb\x20\x29\xd8\xb5\xf3\x12\x3e\x34\xf5\x04\x53\x3c\x4e\x43\x55\x56\x34\x9c\xb3\x69\xa8\xea\xec\x7c\xbf\x69\xc6\x52\x6f\x63\xa9\xae\xce\xbf\x55\xf0\x37\x71\xd3\x6a\xa4\xff\x56\xaf\xdf\x95\xa8\xa1\x9f\x3e\xc5\x39\xd8\x57\xa5\x61\xaa\xf3\xdb\x50\xaa\xf9\x0e\x6e\xe5\x39\xd8\x65\xd4\xce\x50\xea\x6d\x28\xd5\x14\x0e\xb7\x9a\x1d\xec\x32\x6c\xac\x68\x07\xbb\x8c\x47\x4a\xd5\x0e\x76\x19\xf7\x56\xd9\x7e\x9f\xf8\xaa\xdf\x52\xe3\xab\xa0\x19\x61\xba\x95\xf2\xa0\x1d\x03\x18\x5d\x05\xcd\x48\xc0\x6d\x70\x15\x34\x63\xb0\xb7\xb1\xd5\xdb\xd8\xaa\x92\xfc\x56\xf1\x83\xd4\x9c\x7d\x72\x1b\x5c\x05\x6d\x30\x5a\xb8\xf5\x02\x80\xfd\x57\x4e\xa7\xe6\x07\xa9\x39\x1e\xbd\x15\xfd\xf7\x89\xa4\x22\x9b\x6f\xc3\xa6\x60\x97\x79\x9c\xcd\xdf\x68\x83\x81\xd0\xad\x27\x00\xec\xc3\xb0\xb0\x9e\x00\xb0\xcb\x68\x98\xae\x00\x90\x9a\x0b\xf6\x6e\xa3\xab\x60\x1f\x67\x95\x7d\x28\x36\xda\x60\x0c\x75\xeb\x1f\xb8\x8d\xae\xfe\xfc\xa7\x36\xe9\xda\x04\xcf\xc5\x6d\x24\x15\xb4\x61\xa7\xa1\x83\x00\xb4\xa1\x95\x94\xfe\xa0\xb9\x82\xfb\x56\xd4\x83\xe6\x22\xf4\xdb\x15\xbd\x60\xbf\x10\xd4\x4c\xa1\x0f\x76\x99\x17\xb0\x05\xe3\x04\x83\xfd\xaf\x75\x1b\x46\x5f\xb0\xa5\xba\x1e\xa4\x72\xbe\xde\xea\x7a\x90\xca\xf9\xb2\x19\x20\x05\x4d\x57\xc5\xad\xd6\x07\xa9\xb9\xf7\xc7\xad\xd8\x07\xfb\xaf\xb4\x4b\x69\x0f\xf6\x25\xb8\x0f\x6a\x7b\xb0\x8f\xe3\x7e\x29\xee\xc1\x2e\xc3\x9a\x06\x44\x41\x3a\x1b\x79\xde\x06\x3f\x41\x73\x77\xd7\x5b\xc5\x0f\xd2\xd9\x44\xf3\x56\xf1\x83\x5d\x66\x2b\x6c\x6d\x1c\x47\x3c\xc6\x53\xdf\xdf\x47\xdf\x33\xea\xbb\x15\xf3\xa0\x19\x92\xbc\xd5\xf2\xa0\x19\xde\xbc\xd5\xf2\xf7\x3c\xcb\x21\xa8\x89\xc2\x1d\x34\xe3\x9b\xb7\xba\xfd\x46\xa4\x17\x53\xa9\xde\x8a\x74\xd0\x8c\xa9\xde\xc6\x3c\xc1\x96\xaa\x98\x4e\xe1\x0e\x9a\xee\xd8\x5b\xdd\x0e\x52\x31\x42\x74\x1b\xe0\x04\xa9\xa8\x8c\x6e\xc5\x3c\x48\x27\x63\xd6\xad\x2e\x04\x69\x98\x86\xe0\x76\x78\x0f\x76\xd9\xbe\xc6\x63\x17\xf3\xd8\xc5\x30\x18\x78\xec\x61\xc0\x71\x5b\x3c\xf6\x26\x00\x81\xbc\x7f\x3f\x16\x11\xe3\x42\x2b\x3d\xf6\x25\x60\xab\x72\xff\xf9\x59\xa6\x3e\x45\x65\x3e\xf6\x25\xe0\xcc\x48\x7d\xec\x36\xc0\x99\xb4\xfd\xd8\x6d\x3c\x76\x1b\xb9\xf5\xff\xee\xcf\x1f\x7b\x15\xb0\x3f\x82\xb4\xc6\x5e\xe5\xb1\x57\x31\x9a\xf5\xd8\xab\x3c\xce\xbd\x21\xb0\xf7\xd8\xab\x80\x61\x32\xd0\xc7\x4e\x05\xe4\xc6\x47\xe0\xb1\x4f\x01\x79\xf2\xe1\x7d\xec\x53\xc0\x74\x52\xdc\x63\x97\x02\xa6\x53\xd1\x1e\x7b\x94\xc7\xcc\x16\xd5\x3f\x6a\xad\x7a\xd4\x7c\xa7\x4c\x6b\x6d\x54\xf7\xe9\x7f\x74\x0a\x83\x3d\xd2\xa3\xcc\x8e\x07\x34\xbd\xaf\x8f\xfd\x0e\x48\x51\xf8\x3e\x3d\xf6\x27\xa0\x4d\xba\xa2\xc7\xee\xe4\xb1\x3b\xc1\xb5\xf7\xd8\x9b\x80\xee\x7e\x38\x8f\x9d\x09\x18\xa6\xab\x7d\xec\x25\x40\x9e\xa7\x16\xb6\x69\x77\x09\xff\x7b\x45\x2b\xdb\xf4\x60\x53\x31\x1d\xbe\xa0\x54\x5c\x05\x8f\x1f\xff\xe7\x38\x7c\xa9\x97\x33\x66\xc0\x54\xa1\x3f\x7e\xfa\xc1\xd4\x01\xf2\xf8\xe5\x07\x53\x7f\xc2\xe3\x57\xfe\x31\x17\x84\xc3\xa6\xc7\x2f\x3a\xa8\xce\x08\x7f\xfc\xa0\x83\x6a\x92\xae\xc7\x0f\x3a\xa8\x9d\x41\xce\xe3\x07\xfd\x71\x47\x82\xe6\xf9\x6d\x51\x3f\xe6\xa7\xcc\x0f\x3a\xd8\x65\xfc\x55\x97\xef\xe3\x8e\x04\x6e\xbf\xfc\xe8\xf3\x05\xbb\x8c\x8a\x38\x5f\x06\x9c\xb9\xb9\x8f\x4e\x5f\xb0\x1f\x74\xff\x6a\x4b\x87\x5d\xbc\x37\xca\x1e\x02\xec\x32\xac\x6b\x17\x01\xba\x1f\xc3\xc7\x1e\x02\x64\xf7\x48\x7c\xec\x20\x40\x6e\x3f\xeb\xa1\x41\x06\x99\x04\x7d\x53\xec\x32\x40\x14\xba\xae\xc7\xae\x00\x84\x92\xf8\xb1\x2b\x00\xa1\x34\x7f\xec\x09\x40\xa9\xf8\x3e\x1e\x3b\x82\xc7\x79\x31\xa7\xc8\x26\xe9\xd0\xf5\x41\x70\xbe\x0b\x28\x2a\xa7\xc7\x2f\x3e\x28\xaa\xa4\xc7\xaf\xfb\xa3\x3f\x77\x58\x64\x55\xf5\xe7\xfa\x4e\xeb\xcf\x7d\xf4\xe7\x3a\x1d\xfb\xf1\x7b\xff\x98\xef\xdf\x00\xc4\xa3\x3f\xf7\x31\x1f\x83\x33\x55\x1e\x3f\xf8\xa0\xba\x14\xed\xf1\x83\xff\x98\x8e\xc1\x9d\xde\x1f\x9d\xb7\x8f\x9b\x00\x84\x1f\x09\x27\xb9\x80\x94\x9d\xf6\xfc\xd8\x0b\x80\x7d\x43\x3d\xce\xa6\x4e\xa7\xf1\xf9\x6c\xd9\x33\x80\x7d\x43\xad\x8a\xf7\xe5\x5f\xd7\xc0\x1d\xb5\x6b\x00\xbb\x1f\xc0\xe6\x4e\x88\x01\x29\x9f\xbf\xfa\xf1\x60\x85\xc6\xef\x5c\x41\xa3\x4c\x27\xff\x6b\x28\x7b\x0b\x90\x4d\xdc\xfb\xe8\xfa\x7d\xae\xcc\xf3\xc1\x3f\x75\xfd\x82\x61\x96\xe6\x47\xd7\x2f\x18\xa6\x5f\x7e\x74\xfd\x82\x70\x8f\xce\x47\x3f\x2f\xc8\x53\xbb\xe9\xe7\x05\x79\xfa\x0a\xe9\xe7\x05\x79\xfa\x06\xe9\xe6\x05\x79\x6a\x5c\xdd\xbc\x8f\xeb\x38\x7c\xa7\x9c\x1a\x03\xf2\xf4\x95\x72\x6a\xcc\x63\xfa\x43\xa7\x96\x3d\x3a\x83\x41\xa9\xf4\x92\x8f\xbe\x60\x10\xe7\x13\xa0\x2f\x18\x14\x9d\x08\x8f\xa9\x1a\x40\xa9\x74\xea\x8f\xee\x61\x50\x2a\xc3\xa6\xc7\x4c\x0d\x20\xce\x03\xa3\x47\x18\x14\x93\x73\x3f\x4e\xa8\x01\xc5\x9d\xa8\x1f\x9d\xc4\xa0\x54\xc6\x42\x8f\x3e\xe2\xc7\xf5\x1f\xde\x36\x7d\xc4\x8f\xeb\x3f\x18\x6b\x3f\xba\x88\x41\x71\xa3\xc1\x47\x0f\x31\x28\xb5\x78\x2e\x4d\x71\x93\x3e\xae\xd8\x20\x9f\x0a\x97\x84\x34\xff\xa8\x71\x6e\x8c\xc3\xe0\xeb\xd1\x3f\x0c\x4a\xf5\xe5\x71\xc6\x0d\x28\xd5\x8e\x5b\x8f\x31\x28\x7a\x3f\x1e\x3d\xc6\xa0\xc4\xf8\xc3\x02\xb0\x47\x7f\x32\x28\xfa\x15\x1e\xfd\xc9\xa0\xe8\x56\x7a\x74\x1d\x3f\x0f\x71\xbc\x61\x1d\xb5\x8a\x8b\x4a\x90\x8c\x8f\x2b\x48\xc0\xd4\xcb\xf6\xe8\x26\x06\xa9\xff\xec\x90\xf5\x13\x3f\xfa\x89\x15\xc3\x8f\x7e\xe2\x07\x9f\xb0\x8b\x97\x1e\x7d\xc2\x8f\xdb\x08\x22\x22\x1f\x5d\xc2\x60\x77\xab\x5c\xc1\x99\x42\x8f\x6e\x62\x3d\x1e\x8f\x6e\x62\x90\xaa\xee\xb8\x47\x3f\xf1\xa3\x9f\x58\x69\xfd\xe8\x13\x7e\x8e\x4f\xd8\xc7\x44\x9f\x30\xd8\x65\x9e\xcf\xdb\xfd\xfa\x19\x20\x48\xf6\xe8\x14\x06\xb5\x9f\xd3\xd9\xd8\xd7\x31\x84\xe3\x0a\x9d\xc2\xa0\xf6\xea\x3f\x6d\xff\x7b\xbe\x8d\xb4\x4c\x9f\x30\xa8\x1d\x57\xc5\xa3\x4b\x18\x54\xd3\xbf\x3e\x0e\x19\x9f\x8f\xc9\xf7\x36\x55\x87\x30\xa8\x6e\x98\xfd\x38\xaf\x08\xec\xf3\xf3\x0c\xeb\x23\x06\xb5\x3b\xa2\xd3\x47\xfc\xb8\x08\xc5\x35\x3a\x8f\x4e\xe2\xc7\x89\x45\x2e\x60\x79\x9c\x58\x04\xf6\x57\xcb\xff\x6a\xa4\x8f\xb5\x07\xbe\x12\xfa\x8d\x41\xea\xae\x5c\x7b\x9c\x6b\xf4\xe0\x38\x36\x13\xf4\xa3\xe3\x18\xec\x0f\x3e\x67\xd3\x4b\xfc\x1c\x2f\x31\xb1\x9a\x47\x2f\xf1\xe3\x54\x23\x3d\x2b\x8f\x6e\x62\x90\xfe\xf5\x89\xba\x89\x1f\xa7\x1f\xe9\x7a\x7a\xf4\x13\x83\xea\x84\xb5\xc7\xd5\x2a\xcf\x71\x1d\x7b\x07\xf5\x13\x83\xd4\x8b\x1f\x77\x1d\xc5\xe0\x4c\x9f\x7e\x5c\x99\x02\x76\xdf\xe3\x15\x6c\x3f\x3b\x08\xe8\x95\x7a\x74\x1e\x83\xa6\xd7\xe7\xd1\x77\x0c\xda\x79\xce\x5d\x97\x02\xce\x14\xf0\x47\x77\xf2\xe3\x06\x01\x86\xe7\x5e\x7d\xc7\xaf\xf3\x91\x8c\xf5\xbd\x4e\x48\x7a\xcd\xab\x60\xe0\xf0\x35\xaf\xc2\xeb\x9e\x85\xce\xe1\x78\xf5\x28\xbf\x6e\x06\x60\xc4\xf5\xd5\xa5\x0c\x9a\x13\x17\x5e\x3d\xca\xef\xef\x8c\x5f\xfc\x6b\x58\x86\x8b\x22\xac\xc9\xb4\xc8\x19\xe0\x04\x2b\x5e\x1d\xca\xa0\xe9\x2c\x79\x75\x28\x83\x34\xcc\xe4\xf6\xea\x50\x06\xa9\xfb\xe0\xbc\x3a\x94\x41\x1b\x3f\xcf\xb6\x2c\x52\xa3\xef\xe7\xfc\xd5\x77\x0c\xb6\x84\xe6\x9f\x3a\x8f\xc1\x6e\x2a\x57\xd0\x79\x0c\x76\x19\x66\xd2\x79\x0c\xda\x38\x7f\xd5\x22\xc9\xe4\x03\x56\x4e\xdf\x31\xd8\x9a\xd7\xbf\x6a\x12\xfc\xc4\xce\x1d\x7f\xf5\x13\x83\xd4\xd4\x18\xaf\x7e\xe2\xd7\x7d\x04\xca\xb9\x84\xed\xc7\x29\xec\xb4\xc3\x57\xa7\x30\x48\xa7\x3b\x7e\x75\x0a\x83\x74\x32\x3f\xbf\x0e\xb6\x41\x72\x32\xd0\xeb\xc8\x1a\xe4\x49\xdf\xfe\xea\x53\x01\x79\xf2\x10\xbe\x0e\xb6\xdf\x3d\xd8\x9e\xc6\x4e\x5f\x07\xd6\xa0\xba\x46\xf3\x75\x60\xfd\xba\xd7\x97\xf2\xe4\x75\x64\x0d\xaa\x49\x97\x5f\xa7\x52\xbc\xee\xf5\x75\x1e\x11\x47\xdb\xef\x19\x6d\x5b\x0f\x47\xdb\x20\x39\x9b\xea\x75\x60\x0d\x86\x3b\xcf\xbe\x8e\xab\x41\x36\xc3\xc4\xab\x93\x05\x64\x93\x33\xbc\x0e\xab\x5f\x57\x43\x4f\xff\x68\x33\x59\x0d\xdd\x92\x47\xd9\xcc\x41\x22\x66\xed\xe3\xa0\x1a\x44\xf1\x29\x72\x50\x0d\x52\x75\x5a\xe3\xeb\xa8\x1a\x44\xf1\xc9\x72\x54\xfd\x9e\x51\x35\x27\x73\x54\xfd\x3a\xaa\xb6\xae\x8e\xaa\x41\xa9\xd5\xa3\x6c\x64\x98\x96\x40\x6b\x3b\xac\x06\xe1\x77\xe6\xd5\xbd\x02\x4a\xf5\xa9\x72\x58\x0d\xc2\xdc\xcf\xaf\xc3\x6a\x50\x6a\xf5\x5c\xde\xa6\xb0\xef\xfc\x83\xbc\x7e\x1d\x75\x83\x69\x04\xf6\xd5\xcb\xf2\xb2\x31\xb8\x01\xf6\xd7\x41\x37\x98\x86\x33\x5f\xc7\xdc\x60\x1a\x69\x7e\x75\xbb\x80\xa9\x20\x7e\x1d\x85\xbf\x13\x0d\x48\xd7\xf8\x3a\xe2\x06\xd5\x2f\xfc\xab\xd7\xe5\x3d\xd3\x25\x9a\x27\xb3\xc1\x6e\xf6\xed\x2b\xe3\x38\xfa\x75\x63\x6f\xbd\x58\xaf\xe3\x68\xb0\xcb\xb8\x3d\x8e\x90\x41\x35\xef\xfa\xeb\x00\xf9\x75\xc7\x6e\xe7\x9f\xbf\x8e\x90\x5f\xe7\x90\x3b\x63\xe8\x75\x88\x0c\xaa\xa9\xcb\x5f\xc7\xc3\x60\x3f\xd3\x54\xd8\xb9\x10\x20\x1d\x8d\xf6\x3a\x48\x7e\xdd\x11\xcb\x99\x76\xaf\xa3\xe4\xd7\x1d\xb1\xe8\x7d\x5f\x47\xc9\xaf\xb3\x21\xce\x9b\xe4\x30\x19\xec\xcf\xa3\x97\xb5\xb1\x4c\x87\xc8\x4e\xa2\x7f\x1d\x28\x83\x7d\x9c\x2d\xf3\x06\x32\x52\xce\x2e\x57\x78\x9d\x44\x0e\x52\x76\x4a\xd3\xeb\xe8\x19\xa4\xf2\x63\x70\xf4\x3a\x56\x06\xa9\xe8\x00\x7f\x1d\x2c\xbf\xee\xa8\xe5\x97\xda\xc1\x32\xc8\x66\x84\x79\x1d\x2c\x83\xd1\x7d\x81\x1d\x2c\x83\xe1\x14\xf2\xd7\xc1\x32\x18\xfd\x9c\xcb\xe6\x33\x32\x2e\xbe\x9a\x8e\x8c\x41\x9e\xbe\xc0\x0e\x83\x41\x94\x9f\xe7\xb2\x4d\x37\x6b\xd5\x11\x2f\xaf\x63\x5e\x10\x85\xf1\xd9\xeb\x98\x17\xa4\xa1\x24\x7b\x1d\xf4\x82\x70\x07\xe6\xd7\x41\x2f\x88\x42\x9c\xfc\x75\xd0\x0b\xd2\xbf\xf7\xdc\x31\x2c\x08\xa7\x6b\xbe\x4e\x89\x00\xc5\x0c\x8a\xaf\xc3\x5a\x10\x66\x22\x78\x9d\x11\x01\x42\xff\xe0\xeb\xec\x07\x50\xaa\xcf\xae\x23\x5d\x50\x6a\xb3\xfe\xde\xcd\x87\x49\x85\x4c\x6a\x7a\xcd\x3d\x06\x8a\x1b\x23\xbd\x8e\x7d\x41\x98\x3d\xe0\x75\xf5\x34\x98\x8e\xe0\x5e\x47\xc3\xa0\x54\xc6\x4d\xaf\xa3\xe1\xd7\xcc\xe0\x0e\x08\x1c\x0d\x83\xd4\x8f\xc5\x1c\x0d\x83\x30\x1f\xc2\xeb\x60\x18\x84\xcb\xef\x5f\xc7\xc2\xaf\x2b\xaa\x19\xf4\xbf\x4e\x99\x78\xcd\x16\xee\xe0\xc2\xd1\x31\x08\x33\x30\xbc\x0e\x8e\x41\xa9\xa7\xae\x5a\xc7\x6c\xe1\x8c\x68\x5e\x87\xc6\xaf\xd9\xc2\xbb\xf5\xd2\x3a\xac\xa8\xae\xbe\xb0\x0e\x83\x5f\x97\x4f\xdb\x29\x3b\x0a\x7e\x9d\x70\xef\xab\xee\x28\xf8\x75\x45\xb5\x7d\xad\xa3\xe0\xd7\x09\xf7\x5e\xd1\x09\xf7\x60\xba\x0b\xc9\xeb\xc0\x18\x14\xbd\x42\xaf\x83\x60\x50\x74\x00\xbd\x0e\x82\xc1\x34\xcb\xff\xeb\x18\x18\x14\x23\xed\xaf\x43\x60\x30\x1d\xc7\xbe\x8e\x80\x41\xd1\x0f\xf8\x3a\x02\x06\xd3\x41\xf1\xeb\x00\x18\x4c\x87\xf5\xaf\x03\x60\x30\x1d\x89\xbf\xce\x9c\x00\xc5\xe8\xf1\xeb\x90\x18\x4c\x5d\x8f\xaf\x23\x62\x30\x55\x12\xaf\x03\x62\x30\xd5\x20\xaf\xe3\x61\x50\x0c\x9d\xbf\x0e\x87\xc1\x54\x48\xbc\x8e\x5f\x41\x31\xac\xfd\x3a\x58\x05\xd5\x24\x16\xaf\x83\xd5\xd7\x4d\xb7\xf5\xa6\xbc\x8e\x56\xdf\xb3\x8a\xda\x77\xc6\xd9\x0f\x60\x77\x02\xbb\x4d\x9f\x23\xd8\xcf\x5d\xb7\x9d\x82\xf7\x39\xfd\x01\xa4\xee\x48\xf7\x73\x54\xfb\xb9\x13\xb7\xee\xb6\xcf\x51\x2d\xd8\xff\xcd\x94\x55\xcb\x4c\x51\xdd\xbd\x46\xb3\x4c\xe9\xc7\x3b\xf7\x39\xac\xfd\x5c\x6f\xed\xc8\xf9\x73\xa2\x04\xd8\x65\x85\xb2\x69\xd9\xf1\x54\x76\xca\x2e\xcb\x5c\x70\x7e\xea\xf7\x5a\xa6\x0d\xe8\x57\x3e\x67\x40\x80\xd4\xf6\x77\xe3\x3f\x3b\xeb\xcf\x41\x2e\xa8\xee\x39\xf1\x39\xc8\xfd\x5c\x70\xed\xc5\x1c\xe3\x7e\x67\xc1\xb5\xc6\x70\x8c\xfb\x99\x87\xdc\xa9\xb0\x9f\x63\x5c\xb0\xcb\x3c\x9d\x06\x3a\xab\xb0\xcf\xf9\x34\x90\x9b\x6c\x1b\x4c\xfb\x1c\xe4\x7e\x67\x19\xb6\x0d\x77\x82\x04\xd8\xff\xb5\x2c\x2c\x53\x0a\x6a\x34\x47\xbe\xdf\x59\xae\xed\x8d\x76\x8a\xc4\x67\x66\x73\xfd\xc7\x9f\xa3\xe1\xcf\xcc\xe6\x86\x27\x3f\x87\xc3\x9f\x5b\x6f\x3b\x69\xfc\x73\x38\x0c\x6a\x3f\x4d\xd3\xb6\x09\xbd\xec\x6d\x76\x8a\x04\xa8\x26\x10\xfa\x9c\x21\xf1\xe5\x33\x28\xe0\xae\xb8\xf8\xfb\x73\xdf\x6d\xeb\xe1\xac\x09\x50\xbb\x4d\x70\xd2\xc4\x67\xfa\x73\x67\x2e\x7f\x4e\x9a\xf8\x4c\x7f\xee\xa4\xe1\xcf\x49\x13\x60\x97\x61\x4e\x27\x4d\x7c\xe6\x3f\x37\xae\xf9\x39\x41\x02\xec\x67\x1a\x13\xbb\xbc\x00\x54\xf7\x47\xf9\x9c\x34\x01\x52\x73\xec\xf4\x39\x69\x02\x54\xf7\x9d\xf9\x9c\x02\xf1\x39\x05\xc2\x15\x92\x9f\x53\x20\x3e\xd3\x9f\x1b\xb0\xfd\x9c\xee\xf0\xb9\xd0\x5b\x77\xd0\xe7\x74\x07\x50\x1d\x67\x7e\xce\x76\xf8\xca\x11\xc7\x98\xce\x55\x05\xa0\xfa\xa1\xff\x9c\x00\x01\xaa\xdd\xe0\xe7\xfc\x07\xb0\x2f\x40\xf3\x5d\x69\x00\xf6\xd9\xb8\x37\x46\xa7\x40\xb5\xd7\xfb\x9c\xff\x00\xd2\x19\x02\x7c\x86\xa7\xbe\xe2\x74\xb9\x62\xe5\x6c\x57\x39\x8a\x83\x1b\x66\x2c\x0a\xec\xe3\xa8\x8a\xf3\x1a\xbe\x7a\xbc\x03\x58\xdd\x00\xd5\xe7\xea\x6f\x5d\x6b\x9f\x11\x2a\x50\xed\x21\x3f\xd7\x16\x80\xea\xd0\xfe\x33\x00\xf5\xb9\x37\xb7\xee\xf1\xcf\x00\x14\x48\x27\xab\xd4\x67\x04\xea\x73\x6f\x6e\x83\x9d\x9f\x21\x28\xd0\xce\xa7\xc0\x10\x14\x68\xe7\xeb\x65\x08\x0a\x34\x3f\x9a\x9f\x21\x28\xd0\xce\xf7\xd1\x10\x14\xd8\xe7\xf7\x9f\xde\x7d\xb7\xe6\x76\xad\xfa\x67\x0c\xea\x73\x6b\xee\x60\xf4\xf4\x19\x84\x02\xbb\xe3\xa7\x22\x06\xa1\xc0\x3e\x0e\xcb\x39\xab\xe1\x73\x6b\x6e\xf7\x3a\xfb\x8c\x42\x7d\xce\x6a\x50\x94\x7f\x86\xa1\x40\x3b\x06\x36\x0c\xf5\x39\xa9\xc1\x69\xbe\x9f\x71\xa8\xaf\x1d\xe7\xba\x7f\xb5\xfd\xcc\x60\x70\x84\xfd\x19\x9b\x02\xfb\x0a\x96\x69\x00\xd7\x8c\x3b\x6f\xfb\x33\x60\xf5\xb9\x66\xfc\x7c\xbd\x9d\xd7\xf0\x39\xaf\xc1\x60\xd1\xe7\xbc\x06\xb0\xcb\x30\xa8\x91\x2d\xd0\xce\x93\xe8\xbc\x86\xaf\x1f\x97\x09\x06\x35\xda\xf5\xb9\x6a\xdc\x69\xce\x9f\xe1\xae\xaf\x1f\x37\x0a\x97\x70\xae\x03\x68\x8e\xff\x3f\x55\x39\x68\xe7\xe1\x34\x04\xf6\x39\xfb\xc1\x19\xd2\x9f\x4a\x1d\xb4\xf3\x82\xa9\xd4\x3f\x67\x3f\x38\x5d\xfc\x53\xaa\x83\x34\x4c\x11\xf0\x39\xfb\xe1\x3b\x1b\x7e\x0d\x2f\xa1\xed\x9c\xfd\xe0\xfa\xc2\x4f\x01\x0f\x9a\x53\x58\x3e\xf5\xfb\xd7\x8f\x72\xf0\x12\x9a\x04\xb1\x9e\x5d\xad\xf8\x19\x06\x03\x69\x38\x83\xfe\x53\xad\x83\xe6\xac\x96\x4f\xb5\x0e\xf6\x5f\x2d\xb3\xfd\xcc\x89\x70\x92\xcc\x67\x64\x0c\xec\x4f\x1d\x95\x53\xc2\x83\xe6\x7c\x98\x4f\x09\x0f\xf6\xd3\xe9\x61\xb6\x9f\xb9\x13\xd9\x98\xc9\xa7\x62\x07\xcd\x79\x48\x9f\x82\x1d\xec\xc3\x68\xab\x4b\x22\x40\x6b\xa7\x09\x3e\x11\x4c\x9d\x18\x6e\x1d\xfc\xa9\xe2\x41\x3a\x09\x0c\x3f\x65\x3c\x68\xe3\x67\x91\xad\x0f\xb2\x55\x22\x3c\x3e\x55\x3c\xd8\x92\xab\xfe\xa1\x37\x57\xe5\x83\x36\x90\x42\x9f\xf1\x34\xb0\xcf\xc2\x2d\x71\x85\x04\x68\xce\x65\xfa\x9c\x56\xf1\xb9\xce\xfc\xf4\xaa\x3a\x08\x40\x1b\x7e\x2f\x75\x10\x80\xa6\x37\xed\x73\xa6\x05\x68\x66\xc5\xff\xf4\x19\x7c\x4e\xb4\xf8\x85\xd7\xf4\xd1\x08\x1c\x6c\x61\xd5\x34\x97\x73\x2f\x7e\xfe\x55\xb7\x00\x48\xc5\xa8\xff\xa7\x5f\x00\xb4\xd3\xe3\xe9\x17\x00\xfb\x30\xea\xa6\x63\x00\xb4\xd3\x59\x1a\x9e\x03\xfb\x30\x1e\x03\x9d\x05\xdf\x3c\x0e\x36\x5a\xaf\xb7\xe0\x23\x3c\x57\x8c\xb7\x7e\x86\xe7\x40\x2a\x66\xd9\xf8\x0c\xc5\x81\xfd\x5f\x9e\x03\x43\x6c\x20\x95\xea\x27\xc4\x18\xdb\x87\x6f\xa0\x54\x3f\x0d\xfa\x06\x40\x3b\xdf\x7c\x5d\x03\x20\x15\xf7\xca\xfd\x0c\x9f\x81\x5d\x46\x95\xf5\x17\x80\x5d\x46\x95\xf5\x17\x80\x2d\xb4\xb1\x80\xfe\x02\xb0\x3b\x73\x8f\xb3\x19\x57\xb8\xa9\x22\xd5\xd3\x61\x00\x52\x39\xef\x95\x0e\x03\xd0\x5c\x0d\xf8\xe9\x2f\xf8\xf4\x17\xd8\xd3\xe8\x2e\x00\xb9\xf9\x98\xea\x2d\x00\xa9\x9e\x8e\xcb\x20\x1a\xd8\xef\x37\x15\xd1\x33\xf0\x19\x45\xf3\x73\xa1\xbe\x07\xfb\xaf\x9c\x4e\xe9\x0e\xaa\x93\x54\x3e\xa5\xfb\xe7\xb2\x71\x17\xa0\x7e\x86\xb0\xbe\xfb\x74\xdc\x9c\x4e\xa5\x0e\xda\xa9\x88\xaa\xfc\x73\x2b\x6b\xd7\x58\x7f\xca\x72\xb0\xaf\xca\x83\xe2\xda\x02\xb0\x2d\x42\x85\x0d\x24\x81\xe4\x04\x97\x4f\xc5\x0d\x92\x69\x12\x3f\x15\x37\xc8\xe6\x8f\xfd\x54\xdc\x20\x9b\x9f\xf6\x53\x71\x83\x74\x3c\x06\x9f\x92\x1b\xe4\x86\x8f\xf8\x53\x5f\x83\xe1\x22\xe3\xcf\x45\x09\x20\x37\xff\xa8\xe4\x06\xc3\x99\x62\x9f\x92\x1b\xe4\xc6\x04\xf1\x4f\x2d\x0d\xa2\xe0\x77\xfc\xd4\xd2\x20\xca\x39\xca\x46\xbe\xce\xb4\xf7\xeb\xac\x72\x06\x79\xda\x3b\xab\x9c\x41\x94\xe4\x51\xb6\x92\xa5\xea\x25\x79\x94\xad\xdc\x88\x72\x5a\x64\x23\x5f\x16\xcc\x7a\xeb\x14\xd3\xdf\xa7\xf3\x84\x5b\xa2\x72\x06\xe9\x5f\xcd\xd4\xc9\x20\xfd\x3b\x9b\x11\x24\x10\xae\xe5\xfd\xd4\xce\x9f\x9b\x6f\xf9\xdc\xaa\x9d\x3f\x37\xdf\xf2\xcb\xac\x50\xfe\xdc\x7c\x8b\x70\xf3\xa7\x2a\xfe\xdc\x69\xcb\x1e\x42\x55\xfc\xb9\xd3\x96\x9f\x6f\x97\x18\x80\xf4\xaf\x99\x2a\x65\x10\x2e\x02\xfe\x54\xca\x20\x5c\x3d\xfc\x29\x8b\x41\x18\x95\xfe\x94\xc5\xdf\x89\x13\x69\x46\x45\x30\x08\xe3\xd9\x9f\x31\x21\x10\xae\x28\xfe\x5c\x4d\x00\xc2\x40\xf8\x67\x94\x08\x84\x8b\x8c\x3f\x83\x44\xa0\x54\x3b\x38\x83\x44\x20\x9c\x2f\xf6\xa9\xb1\x41\xb8\x14\xf9\x33\x46\x04\x4a\x55\x8e\x29\xbb\x41\xa9\xaa\x31\x25\xf6\xe7\x4e\x5e\x1a\x51\x85\x0d\xa6\x7e\xd1\xa5\xc0\x06\x53\xf5\xb0\xd4\xd7\x60\xea\x02\x5d\xca\x6b\x30\xd5\x9d\x4b\x75\xbd\xdc\xef\x2b\x3c\x57\xb3\x88\xf9\x21\x7c\x33\x97\x3a\x1a\x4c\x43\x04\x4b\x19\xbd\x7e\xc1\x51\x99\xa2\x69\x11\x53\x46\xc2\x2b\x5e\x16\xe1\x5a\x98\x9e\xeb\xb6\x08\xc7\x08\xe3\x86\xa5\xac\x5e\x47\x56\x0f\x4f\xf6\x59\xa6\x6b\x81\xf1\xd5\x52\x24\xaf\xb3\x33\x17\xdf\xa9\xa5\x22\x06\x35\xff\x65\xaf\xee\xa5\x5e\x06\xd5\x34\x14\x4b\xb9\x0c\xaa\x09\x2e\x97\x6a\x19\x54\x93\x65\x2e\xc5\xf2\x3a\xc2\x98\xb1\xec\x52\x18\xaf\x23\x8c\xe9\x74\x96\xc2\x18\xec\x6f\x9d\xc7\x69\x88\x23\x8c\x4f\x73\xb4\x44\x42\xf2\x9d\xa2\xc7\x22\xe2\xc8\xc3\x8a\x68\x1c\x65\xf1\xb9\x80\xb6\x51\x16\xf3\x30\x2d\x65\xf1\x52\x16\x6b\x41\x65\xf1\x3a\xb2\xf8\x94\xd9\xf6\x23\x78\xe9\x37\x97\x82\x77\x1d\xc1\xab\x55\x15\xbc\xa0\x76\x9e\xe0\xa5\xde\x05\xd5\xb4\xcb\x4b\x69\xbb\x94\xb6\xe7\x64\xb6\x93\xb4\x66\x9d\x77\x72\x39\xf7\x7f\xe5\xa3\xf5\x3d\x99\x8d\xca\xa7\xff\xf2\x38\x5b\x65\x5e\x33\xe7\x64\x2c\x67\xf7\x83\xaa\xf3\x70\xa9\x76\xc1\xee\x6f\x69\xbd\x29\xcc\x40\x4a\x4e\x9b\x58\xca\x5d\x50\x75\x7e\x2e\xd5\x2e\xd8\x87\xd1\x06\xe5\xee\x32\xad\x99\x93\x43\x96\x7a\x77\xfd\xd3\xbb\x5e\xd6\xe7\xdd\xbc\x66\x86\x69\x96\x1a\x18\x54\xfd\xb7\x4b\x09\x0c\xf6\x61\x18\xdd\x19\x9a\xa0\xea\x73\x5d\xca\x5d\xd0\xf4\x69\x2d\xd5\xee\x72\xe6\xa5\xef\x85\x62\x77\x29\x76\xdd\xb5\x71\x29\x76\x41\x6a\x0e\x2d\x96\x62\x17\x34\x3d\x5a\xcb\xe9\x96\x60\xab\x3d\xea\xa6\x00\x5e\x66\x3a\xf3\xc5\x56\x00\x83\xa6\xbf\x62\xa9\x7f\x97\xf3\xf5\x9d\x6a\xb1\x14\xb6\xa0\x39\x64\x58\x0a\x5b\xb0\x6f\x03\x36\x52\xd9\xae\x93\xfb\x8c\x8f\xe8\x52\xc6\x82\x66\xbf\xbf\x54\xb1\xa0\x39\x13\x74\x29\x62\x97\xd3\xf5\x5d\x52\xbc\x9c\x36\xb9\x9c\xae\xef\xf2\xea\xe5\x74\xfd\xd5\xce\xd0\x82\xca\x29\x6c\x97\xd3\xf5\x5d\xb7\xbe\x14\xb6\xa0\x39\xe3\x7e\xa9\x6b\x97\xd3\x2b\xcf\x63\xa8\xb0\x5d\x8a\x58\x5d\x5d\xcb\x99\xf9\xab\x9d\x41\xb9\x97\xb0\xfd\x66\x3e\xd3\x5d\xb5\x54\xb6\x4b\x65\x7b\xde\x7c\x95\x2d\xd8\x83\x6b\xec\xa9\xb2\x05\xa9\x27\xdf\x56\x95\x2d\xd8\xc7\x79\x3e\xad\xd2\xce\xc0\xdc\x66\x1c\xb3\x10\x0d\xd7\x9e\x2a\x5b\xb0\x47\xcd\x96\x69\xa9\xee\x58\x9d\x7f\x2a\x6c\xc1\x3e\xcc\x32\x0d\xd5\xcd\x07\x46\x4f\xbe\x54\xb6\x60\x97\xd1\x0a\x65\xec\x42\xb3\x0e\xb3\xf8\x2f\x23\xc2\x20\x0d\xf7\x04\x58\x8e\xfd\x41\x0a\x37\xe1\x58\xc6\xf6\x40\x72\x36\xf2\x32\xb4\x07\x4a\xb5\xf3\x30\xb2\x07\x8a\xa1\xe4\x65\x64\x6f\xb9\xcf\xef\xf0\x51\x74\xa8\xbe\x5c\xe3\xec\x5d\x74\x54\x0e\xf6\x5b\xc8\x5d\x74\x54\xbe\x4c\xf0\xe4\x77\xce\x01\x38\xa8\x46\x2b\x96\x43\x66\xd0\xda\xb9\xa6\x8d\xda\x68\xa6\xe9\x5e\x86\xd7\x40\x73\x5f\xba\xe5\xb8\x1a\x24\xe7\xd2\x2e\x53\x11\x83\xdc\x18\x9f\x2c\x47\xda\xcb\x91\xf6\xf4\x8f\x56\xff\x76\xcc\xeb\xb7\xc0\x18\x1c\xd8\x0f\x2b\xcd\x34\x08\x07\xdc\xa3\x63\x39\x46\x07\x29\x8a\xdf\x38\x83\x70\x20\x0d\x67\x1f\x2e\xa7\xac\x81\x34\xd2\xb9\x82\xcf\x2a\x69\xa1\xc2\x99\x00\xcb\xf1\x3d\xd8\x65\xb6\xc1\x3b\xc5\x00\xbf\x0d\x3f\x24\x06\xe7\xc0\x3e\xce\xba\x68\x91\x8d\xee\x1c\xed\x65\x24\x0e\xa4\x33\xcc\x5d\x0e\xfa\x41\x72\x32\xd6\x72\x36\x19\x48\x86\xd7\x97\x91\x38\x90\x9c\x05\xb1\x8c\xc4\x81\x54\x7e\x7f\xd8\xa2\x7b\xa9\x1b\x40\x77\x31\xc2\x52\x36\x80\x74\xc6\xb7\x4b\xdd\x00\xfa\xb0\x2d\xea\x06\xb0\x0f\xe3\x8e\x2b\x1c\x40\x1f\x7e\xa0\x14\x0e\xcb\x6d\x82\xec\xfd\x8c\xcb\x81\x14\x3a\x54\x96\xc2\x01\x24\x73\xa3\x2f\x85\x03\xe8\x03\xcf\xce\x52\x38\x80\x3e\x34\xbd\xc2\x61\x19\xab\xf3\xb9\x33\x54\x07\xfa\x70\xc8\x60\xa8\x0e\xf4\xe1\x7d\x54\x5e\x80\x3e\xec\x35\xd5\x12\x20\xf5\xe2\xf9\x1d\xec\x83\x91\xac\xbf\x91\x33\x30\x92\x36\x73\xfc\x0f\xb2\x9b\x21\x2c\x23\x67\x60\x24\x7b\x6f\x15\x01\xc8\xa6\x5b\x5a\x0a\x02\x90\x4d\x83\xb8\x14\x04\x20\xbb\x89\xc6\x32\x72\x06\xb2\x8b\x61\x96\x61\x32\x90\xcd\x78\xb8\x14\x04\x20\x9b\x2b\x71\x39\xfa\x07\xd9\x1c\x88\xcb\xc1\x3f\x18\xe7\x13\x6a\x4c\x0c\x64\xb7\x32\x59\x8e\xea\x41\x6e\x4c\xfe\x5a\x8e\xea\xc1\x70\x3d\xd2\x72\x54\x0f\x86\x0e\x96\xe5\xa8\x1e\xe4\xe6\xc3\xe3\xa8\x1e\xe4\x96\x3d\xbd\x8f\xdd\x72\x58\x87\x97\x64\x39\xac\x07\xb9\x31\x57\x6d\x39\xac\x07\xc3\xf5\x49\xcb\x61\x3d\x18\xce\x73\x5a\x46\xd3\x40\x6e\xbe\x7c\x8e\xf4\xc1\x70\x15\xd3\x72\xa4\x0f\x06\x2b\xb6\xe6\x8f\x91\xbe\xc8\x6d\x3f\xc1\xf3\xc7\x48\x5f\xe4\xb6\x05\xce\xfc\x31\xd2\x17\x83\xa5\x4e\xf3\xc7\x48\x5f\xe4\x96\x33\x45\xd5\xa2\xca\x51\xfe\xb1\x59\xd4\x38\xca\x2b\x76\x8b\x48\x02\xb5\x5f\xf6\xf9\x63\x6a\x98\x48\xfd\x37\xfd\xe7\x6d\x19\xf3\x6b\xb6\xf5\xe7\x8f\x39\x5f\x22\xca\x39\xd9\x6b\x11\xf9\x8f\x66\x50\xb4\x2c\xda\x9d\xc1\xef\x47\x51\xb2\x91\x1b\xe5\x67\xbb\x93\x8d\x4c\x08\x58\xab\x9f\x6c\x24\xc1\xb0\xc6\x0a\xea\xf9\x4b\x36\x69\xa3\xfc\x92\x87\xd9\xa4\x8d\xf2\xdb\x37\x64\xfe\x92\x4d\xda\x28\xbf\xe4\x1f\x87\x45\x83\xa3\x2c\x9a\x16\x31\x11\x7a\xd2\x70\x86\xf1\x22\xcf\x89\xf5\x93\xed\xde\x28\xbf\x44\xbb\x93\xed\x4e\xb6\x1b\xeb\x27\xdb\xbd\x51\x7e\xde\x10\x46\xf1\xa2\xfc\xb4\x7e\xd2\x14\x49\x53\x50\xfb\xac\x29\xb2\xa6\xa0\x12\x59\x53\x64\x4d\x41\x83\xb2\xa6\xd8\x28\xbf\x1f\xf5\xca\xde\xef\x8d\xf2\xfb\x51\xaf\xac\x71\x36\xa2\x64\xda\x98\xad\x57\x66\xa2\xc2\xf4\x28\xeb\x95\x99\xa8\xd0\xb8\x1f\xd9\x7a\x65\x94\xf6\xa4\xf6\xc5\x4a\x14\x66\x25\x74\xce\x55\xac\x44\x61\xad\x41\xa7\xf6\xc5\x4a\x14\x67\x63\x78\xc9\x62\x2d\x0a\xe2\x7b\x7a\x98\xb7\xa8\x30\x51\xaa\x51\xfd\xe2\x2d\x32\xb9\x55\xf7\x92\xde\x22\x86\xe0\x15\xc5\x3c\x7f\xc5\x27\xb1\xa0\xbe\x3b\xf5\x2f\x5a\x9f\xb4\x55\xe1\x3d\x2a\xb6\xb2\x30\x3b\x6a\x58\x0b\x5b\x49\xd6\xaa\xa9\x5d\x8b\xad\x34\x6b\x55\xa7\xa8\xda\x4a\x52\x54\x4d\x9f\xcd\x6a\x2b\xab\x1d\xbd\x47\xd9\xa2\x4a\x4c\xbd\x7b\x94\x75\xdd\x28\xd3\x3b\x59\x7d\x9c\x2a\xf3\x06\x3a\xf5\xaa\x3e\x4e\x55\x79\xcc\x9d\xac\x3e\x4e\x95\x3c\x40\x93\x36\x56\x1b\x54\x1d\x41\x56\xcb\x6c\xd1\x46\x99\x3e\xd4\xd5\x16\x55\x5b\xe4\x51\xb6\x68\xa3\x4c\x9f\xba\xe6\xf3\x44\xd6\xaa\xe9\x63\xd1\x6c\x64\xb3\x91\x3c\x88\xcd\x46\x36\x3d\x05\xff\x1d\xd3\x9e\xbf\xe6\x9d\x6e\x38\x12\xfc\x22\x34\xcd\x42\x9e\xab\xf0\x5d\x6f\xde\x68\xf2\x5c\x4d\xdf\xb2\xe6\x8d\x26\xb8\xd4\x48\xd9\x31\x7f\xcd\xbb\xda\xc8\x3e\xe3\x23\xd2\xb4\x1e\x1b\xf0\x66\x4d\xd5\x34\x15\x7b\xda\x64\x6f\x74\xd3\x54\x8d\x79\x0b\x3e\xa8\x4d\x4b\xb1\xcd\x4d\x3e\xb5\xd0\x52\x8d\xa4\x3b\xd6\xb5\x6b\x16\x36\xd5\xcd\xbe\x07\x5d\xb3\x74\xe7\x98\x36\xee\x74\xd7\x2e\x1d\x6f\x83\x37\xbf\xdb\xf0\xee\x20\x15\xb3\x77\x1b\xce\xa0\xba\xb1\xcb\xd2\xfc\x75\x1f\x88\x7e\x9c\x07\xd4\xb6\xdb\x4c\xf7\xcf\x0d\x2f\x6a\x33\xbb\x92\xda\xa3\x6c\xa6\x5b\xe5\x32\x07\x65\xfe\xba\xed\xec\x0e\xde\xfc\xce\x75\x1b\xea\x3c\xce\xb0\xc8\x86\x76\x1c\x05\xe7\x9f\x3e\x12\x6e\x94\xcb\x1c\x9a\xf9\x1b\x36\x7e\x1c\x4f\x01\xcd\x1a\xb6\x74\x10\x40\x1d\xd8\x68\xd8\xd2\x71\x9c\x07\x96\xd9\x54\xf6\xc9\x65\x6a\xd5\xfc\x0d\xef\xf1\x20\x80\x3c\xb8\x07\xc3\x7b\x3c\x14\xd4\x95\xbb\x37\x34\xc8\x20\x01\x4d\x78\x98\xf6\x18\x8e\xda\x3d\x4a\x7b\x8c\xa3\xa7\xbd\xa6\x6f\xcd\x20\x59\xc7\x69\x81\x36\x1a\x26\xeb\xa8\xb6\x40\x1b\x0d\x92\x75\x9c\x46\x69\x22\x56\xde\x66\xdf\xf0\xa1\x89\x08\x1f\xa5\xf3\xa6\x0e\x6d\x34\x94\xe2\x5c\x33\x34\x11\x0b\x6f\xf1\x46\xcd\x5f\xf8\x7c\x84\xaa\x9b\x5b\x15\x5a\x28\x08\x1d\x16\xac\x11\x1a\x28\x14\xdd\x54\x36\x34\x90\x9b\xeb\x9e\x77\x30\xb4\x50\x1c\x0b\x79\x9c\x16\x22\x62\xc4\x7a\x97\xf9\x0b\x2d\x14\x64\x60\x28\x58\x28\xb4\x06\xa1\xa0\xe6\x23\x1f\x36\x33\x5c\xfc\x7c\x6a\x6b\x9b\x36\xda\x79\xf3\xa6\x6d\x9a\x2c\x26\xf6\xfd\x99\xb6\x89\xc4\xc3\xc5\xaf\xe2\xb4\x01\x1b\x3d\x79\x87\xa7\x0d\x98\x0e\x12\xb0\xcf\xb4\xae\x33\x38\x8a\x2b\x4e\x6f\xdd\x46\x4f\x7e\x74\xa7\xb7\x69\xa3\x27\x1f\x8d\xa9\xfd\x37\x7a\xf1\x1d\x98\x56\x75\xaa\x38\x30\xc5\x65\x55\x37\x7a\xf1\x61\xb9\xac\xea\x46\x2f\xbe\x29\x97\xcf\xec\xa5\x06\xf1\x8f\xde\x11\xa3\x3d\xf6\xce\x97\xb5\xdf\x70\x73\xd3\xf9\xbb\xb4\xbe\x71\x1d\xc7\x03\x97\x0d\xda\xe8\xc5\xb7\xe9\xd2\xf8\x44\x75\xea\xe9\xf3\x2e\xad\x7f\x99\x8e\xd4\x5a\xd8\x22\x66\x6d\xd6\xf3\xf6\x5f\x36\x69\xa3\x8f\x42\xcd\x6e\x9b\xb4\xd1\x47\xe5\x64\xb7\x4d\xba\x15\x14\xb4\xf2\xb6\x49\x37\x82\xa2\x60\xea\xdb\x26\xdd\x0a\x0a\x2e\x79\x7b\x8f\x36\xfa\x28\xdc\xb6\xdb\x56\xb2\x0f\xce\xf9\xb6\xdc\xb6\x12\x55\xc9\x2e\x4d\xf3\x77\xdb\x24\x04\xe4\xf9\x66\xdc\xde\xa3\xdb\x44\x96\x3e\x29\xb7\x0f\xd4\xc6\x48\x9a\xec\xb6\x95\x37\x43\xf2\x73\x32\x1b\xb9\x31\x92\x97\x7c\x6c\xd1\x43\xf2\x6e\xbf\x18\x8f\xd5\x7f\x98\x0d\xee\x6b\xf9\x58\x7d\x84\x62\x3d\x23\x87\xc7\xfa\x6f\x8c\xa4\x2d\x1e\x6f\xc9\x43\x7a\xd5\xe0\xe1\x7f\xac\xff\xc6\x48\xe1\xc9\xbc\x23\x0f\x22\xc3\xe7\xf5\xb1\x49\x1b\x23\x85\xb5\xb0\xfa\x0f\x0b\xf2\xfc\xd4\xbc\xd6\xe2\x65\x74\x54\xa8\xc4\x6b\x25\x5e\x2b\x61\x91\x46\x7c\x95\x0f\x58\xff\xb5\x5e\x1b\x63\x24\x6e\xee\x6b\xbd\x36\xc6\x70\x48\xfe\xfa\x3a\x6c\xa1\x36\x86\x4f\xe2\x6b\xbd\x5e\xa4\x82\x23\xeb\xd7\x8f\xd6\x8b\x54\x70\x78\xff\x6a\xfc\x57\xa9\xe0\xe9\xb5\xf4\x8b\x2e\x48\xff\x1d\xa4\x9e\xbf\xcf\xa7\x0d\x49\x38\x7c\xc2\x3f\xef\xcd\x87\x6c\xc8\x5c\xfd\xf3\x69\x43\x12\xb6\xcc\xd5\x3f\x6f\x17\x92\x70\x24\xee\xc3\xa7\xa1\x3e\x64\x83\x63\xba\x4f\x43\x7d\xe8\xac\x84\x39\x3f\x4d\xc0\xcc\xc9\xdf\xf9\xa3\x26\x20\x20\x54\xfc\x7a\x7d\xde\xad\x8d\x28\xa7\x12\x5a\x85\x80\x50\xf1\xb3\xf7\x69\x82\x8f\xd1\x73\xe2\x9e\x7e\x9a\x80\xe0\x4f\xf1\x1b\xb4\x6c\xe3\x46\x14\x0d\xb5\x6c\xe3\x52\xf6\xd2\xa0\x65\x1b\x57\xe1\xf4\xd4\x7e\xd9\xa0\xe5\xb8\xd8\xa3\x6c\xd0\x62\x44\xda\xa9\xea\xb2\xf6\x1b\xf3\x28\x84\x65\xed\x49\x46\x9c\x90\x84\xf3\xb7\xac\xfe\xc6\x3c\xe3\xee\xe5\x4d\x5d\x84\xb8\x1c\x82\x2c\x5b\xb4\x6c\x91\xe7\xf7\x91\x24\xd2\x53\xed\x9c\x96\x8d\x5c\x8e\xbb\x77\x51\x52\xff\x81\xa9\x90\x48\xea\x3f\x30\x55\x0d\x49\xfd\x07\xdc\xe6\x71\x26\xf5\x1f\x98\xca\x8d\xa4\xfe\x03\x41\x9c\x70\x26\xf5\x1f\x98\x8a\xa5\xa4\xfe\x03\xc1\xbc\xee\x99\x08\xfe\x88\xa9\x3e\x4b\x4a\x42\x10\x2a\xa3\x44\x3c\x48\xb8\x4d\xe5\x4c\x8a\xc4\x64\xf0\x67\xd8\xa0\xd7\x22\xc7\xe6\xd6\xfe\xb3\x88\x59\xb1\x74\x00\x49\x91\x08\x26\xa1\x86\x99\x14\x89\x60\x12\x3e\x99\x49\x91\x08\x26\x31\x8a\x99\x14\x89\xa0\x4c\xde\xd7\xa4\x46\x04\x93\x20\xcb\x4c\x0a\x42\x30\x09\x5b\xcc\xa4\x20\x04\x65\xf2\xc6\xa4\x64\x1b\x37\x2a\x9e\xc0\x99\xd4\x88\xa0\xfa\xb1\x4c\x6a\xc4\x64\xa8\x07\x07\xfa\x4c\x8a\xc4\xe4\x1c\x48\x3c\xe3\x33\xa9\x12\x93\x73\x20\xf3\xa9\xad\xc6\x48\x27\x12\x46\xd3\xd5\x89\xa0\x16\x6f\xaf\x3a\x11\xec\xc3\xb0\xa3\x42\x31\x19\xee\xc9\xb6\x41\xa5\x08\xf6\x65\xa9\xb1\x52\x11\xec\xe3\x68\xbe\x5a\x31\x19\x16\xca\x9a\x57\xb1\x98\x0c\x0b\xb1\x0a\x73\xa6\xac\x99\xb2\xd3\x45\xc3\xff\x6a\xa7\xec\x38\xce\x22\xed\x94\x0d\x21\x84\xa7\xd3\x50\xd9\x00\xd8\x29\xd3\x2a\xf9\x8c\x6c\x69\x5a\xd6\x2a\xd9\x77\xc5\x56\x68\x94\xec\xc0\xd6\x22\x6d\x72\xa6\x41\x86\x06\xd0\x28\xd9\x91\xad\x8d\x2d\x1a\xa5\x30\xad\x96\x5e\x2a\x29\x5c\x41\xed\xfe\x53\xe1\x0a\xf6\x3f\xb9\x82\xca\x35\x9d\xd9\x92\x38\x17\x92\xca\x35\x39\x5b\xd2\x1b\xab\x72\x4d\x27\x54\xd4\xbc\xa8\xcd\x77\x6a\xa4\xb2\x2b\x15\x9b\x4f\x6a\xa8\xec\x53\x5e\x7c\x4e\x4e\x1a\xa8\x53\x39\xdb\x75\xd2\x3b\x69\x4d\x65\x29\x48\x99\xd4\xad\x33\x55\xdb\x55\x4f\xbc\x84\x1a\xab\x55\xc1\x1e\xf5\x71\xd9\x6a\x2b\xcc\xba\x11\x5e\x57\xb5\x9a\x4e\x2e\x27\x2d\x50\xbd\xb1\x55\x27\xac\xd7\x55\xc2\x82\x54\x58\xfe\x38\x53\xb5\x69\x4c\x7a\x8c\x53\x64\xcb\xc8\xbc\xcc\x24\x8b\x99\x94\xb5\x20\xff\xb4\x93\xb2\x16\xe4\x9f\xcf\xb5\xb2\x16\xe4\x56\xfc\xa3\x77\x9a\x5d\x56\x5b\xc1\x98\xaa\xda\x54\xe9\xea\xf0\xfb\x24\x25\x2c\x18\x03\x4f\x53\x52\xc2\x82\xd4\xb3\xaf\xa6\x1a\x16\xe4\xc6\x87\x3e\x29\x52\x41\x14\x86\x4e\x49\x45\x0a\xa2\x54\x8f\xd2\x18\x6c\xbc\x5a\x18\x73\xa5\xa6\x2d\xd8\x78\xf5\xe7\x2d\x50\xa3\x82\x28\x8c\xb9\x92\x1a\x15\xa4\x9e\xfc\x5e\x37\x6d\xd1\xe8\xe0\xca\x7f\xef\x07\x32\x93\x1a\x36\x9d\x80\x91\x9f\x52\x15\x2b\x48\xa3\x78\xcf\x9a\xcf\xc5\xc6\xd4\xe7\x93\x54\xb1\x60\xea\x8b\x4a\xaa\x58\x30\xff\x87\xb1\x33\xc9\xf9\x9e\x85\xf1\xed\xfc\xae\xa2\x96\xf0\xa7\x07\xa9\x54\x7b\x49\x43\xf6\xbf\x84\x2b\x9f\xc3\x33\xfe\xde\xd1\x4f\xb2\x48\x00\x43\x88\x3b\x6c\xed\x47\x49\x25\x16\x58\x5a\xbf\x92\x4a\x2c\x60\x0a\x9d\x95\x54\x62\x81\xa5\x59\x2e\x75\x79\xd5\xfd\x29\xda\xa3\x8c\xe9\xda\x64\x3c\xe4\x55\x6b\x81\xa5\xb8\x95\x54\x6b\x81\xb2\x10\x06\x52\x97\x31\x01\x65\xb9\x6f\xd4\x6a\x81\xb2\xce\xf0\x9d\x78\xf7\xdc\xa7\x4b\xb5\x55\x20\x75\x92\xf1\xaf\xa4\xb6\x0a\xc4\x61\xc5\xc6\x54\x5d\x4d\xaa\xab\xe7\x5b\x52\x5d\x05\x6a\xf1\x27\xa8\xba\x0a\xd4\xe2\xc7\xaa\xba\x0a\xa4\xfe\x43\x2a\x49\xaa\xab\x40\x2d\xfe\x18\x55\x57\x81\x5a\xfc\x0b\xaa\xae\x02\xd1\xa7\xcd\x9c\xe8\xf0\x7f\xe0\xc9\xa7\x6e\x0a\xa4\x9e\xdd\x89\xaa\x98\x40\xfa\x69\xfa\x49\xea\x98\x69\x7a\x32\x61\x97\x48\x2a\x99\x40\xed\x87\xe4\xb4\xa6\x2e\x7c\x94\xc0\xa4\x96\x99\xe6\x39\xab\x59\x40\x35\x4a\xa0\xf6\x43\x72\xc4\x13\x83\xc3\x74\x20\x0e\x78\x7a\x54\x2f\x36\xc8\xf4\xfb\x9d\xc4\x2a\x1c\x92\x73\x20\xe0\x70\x94\xf3\x36\x3f\xe0\x69\x84\x98\x6b\x33\x5d\xc2\x69\xce\x6a\x99\xae\x36\x0a\x44\x3b\x38\xac\x3a\x9a\x96\x61\xdc\x1e\x2e\xcb\x75\x5d\x58\x21\xfc\x07\x2d\xa7\xbf\xce\xc1\xcc\x5c\x55\x35\x81\x38\x71\x7d\x9d\xb3\x20\x6c\x30\x69\x0f\x4b\xea\x9f\x40\xd0\x18\xca\x72\x1a\x24\x77\x3a\xbf\xcd\xe5\x2c\x88\x2e\x4c\xe7\xdf\xaf\x9e\x0a\xb4\xf3\xb3\x56\x4f\x05\xe2\x6d\x30\x40\x45\x15\x88\x47\x59\x1d\x35\x55\x20\xda\xc1\x63\x55\x55\x20\x68\x74\xab\xae\x0a\xb4\xf3\x13\x56\x57\x05\xe2\x7f\x60\x17\x2e\xe2\x65\x48\xb1\x4b\xa6\x6a\x0a\x04\x0d\x06\x5c\x32\xe5\xdc\x50\xec\xd2\x64\x8a\x37\x14\xb5\x73\xa5\x4b\xa6\x50\xd1\xa6\x7a\xdc\x5d\x32\xe0\x5c\x46\x4c\x76\x2b\x03\x2e\xbd\xf6\x36\x93\x01\x97\xb9\x17\xdd\x15\xaa\xb5\x40\x3c\x4a\xaf\xea\xb5\x40\x6b\xfe\xd3\xd5\x6b\xd3\x7d\x7e\x4c\xbc\x4e\x2d\x16\x38\x36\xad\xa4\x16\x0b\x44\x33\x1f\xf5\xeb\x44\x8d\x1d\xe7\xf7\x7a\xcb\x13\xeb\xe3\x4c\x97\xe7\x76\xfe\xb7\xe9\xd8\xe4\xd3\xed\xfc\xa9\x8f\x33\x3c\x26\xd4\x77\xd3\x9f\xbe\x2b\xcd\x3d\x71\x9b\xb4\x4c\xc1\x44\x1d\x18\x48\xa5\x9e\xa1\xc8\x13\x8b\xe6\x54\xbb\x7d\x64\x80\x05\x72\x64\xa7\x5a\x30\xd0\xb8\x8c\xb1\xd2\xe3\xfc\x75\x97\x56\xe7\xaf\x66\x0c\xa4\xd2\x3c\xec\x54\x8d\xd3\x9f\x6a\xcc\x4a\xa8\x1a\x03\xed\x7c\x14\x8f\x3c\xd1\x89\xea\xf9\xaa\xb6\x9c\x2c\x07\xeb\x49\xf4\xc8\x91\xc7\x53\xd8\xd1\x3a\xfb\x87\x40\xe2\xf3\xa0\x93\xc7\x49\x5a\x4e\x2b\xe7\x6e\x70\xe5\xe9\xd1\xa9\x73\x9d\xf1\xe7\x32\x3f\x6e\x87\x87\xdc\x25\x18\x7c\xd2\x2b\x33\x5e\xa3\x43\x19\xfd\x2b\x33\x8e\xd7\x94\x89\xbf\x4e\xdc\x2a\x40\x2e\x94\xca\x38\x60\x50\xf7\x4a\x2a\xe3\xc0\x18\x78\x93\x92\xca\x38\x90\x74\x9b\xae\xa4\x36\x0e\xe4\x86\x92\x99\xd4\xc6\x81\xdc\xd0\x28\x93\xda\x38\x90\x9b\x7f\xef\xd7\xbd\xa1\x82\x9e\x1d\x98\xac\x78\x15\x51\xfe\xc1\x0c\x9e\x54\xd6\x93\xca\xfa\x19\x90\x6c\x21\xc3\xc7\x9f\x08\xa3\xa2\x0d\x8c\x81\x0b\x27\xa9\x68\x03\xe5\x87\x56\x9d\x54\xb4\x81\x59\xb0\x7d\x26\x15\x6d\x20\xb5\xe2\xff\x76\xcb\x85\xad\x37\x0b\xf6\x6d\x99\xb0\x91\x57\x14\x91\xd4\xc7\x81\x59\x14\x54\xd5\xc7\x81\xf2\xc3\x4f\x95\xd4\xc7\x13\x01\x9a\x05\x33\x64\xda\x32\x41\x7d\xbc\xfa\xa0\xb3\x54\x1f\x3f\x33\x72\x3f\x10\x9f\x49\x29\xb2\x95\x54\xbe\x81\x59\x2a\xaf\xff\x9c\xa4\xca\x37\x9e\x8c\xa4\xf2\x9d\x54\xbe\xab\x0f\x3a\x49\x94\xef\x9f\xa7\xcf\xe7\x84\x08\xbc\x2c\x4a\xe3\x9f\x13\xfa\x98\x10\x36\xe5\xa4\x8a\x0e\xcc\x82\x15\x38\xa9\xa2\x03\xa9\xe9\xaa\x4c\x2a\xdf\xc0\x3a\xf3\x56\xf9\x06\x52\x3d\x5f\xbc\xda\x37\xb0\x9c\x65\x56\xfb\xce\x6a\xdf\x2c\x52\x56\xfb\xce\x6a\xdf\xc9\x56\x59\x12\x02\x16\xe2\x43\x56\xfb\xce\x6a\xdf\xc8\xeb\x59\xed\x1b\x58\x24\xc3\x59\x59\xed\x3b\xab\x7d\x17\xdf\xd5\x25\x75\x5a\x55\x48\x43\x12\xb9\x8b\x90\xa5\xb3\xda\x77\x3e\x0e\xd9\x66\x97\x4b\x1a\xea\xf7\xf0\xc9\x4b\xd2\xc5\x28\x0a\xa4\x47\xd2\x03\x69\x41\x7a\x25\x71\x3d\x97\xa3\x29\xab\x91\x03\xa9\xd6\xe1\xc8\x3e\x69\xb0\x87\x55\xca\xaa\xe4\x40\xa9\xa8\xa5\x59\x95\x1c\x28\x95\x33\x2d\xab\x92\x03\xcb\xcd\x99\x93\xec\x49\xc7\x4f\xc8\xc8\x54\xd3\x33\x7e\xdb\x3a\x6c\x26\x33\x50\xd3\x7f\xc5\x56\x32\x23\x61\x8a\x28\xb6\x72\xe2\x09\x43\x0d\x82\x7f\x56\x27\x07\x96\xf2\x7b\x56\xfd\x06\xd6\x2f\x3b\x7c\x67\x89\x47\xd6\x13\x3e\xab\x19\x03\xde\x33\x58\x59\xc5\x18\x58\x3f\xac\x45\x39\xbb\x6e\x99\x75\xe3\xc8\xcc\xaa\xca\xc0\xf2\x7c\xcc\x6a\xca\xc0\xfa\x71\xc0\x64\x35\x65\x20\x1d\x5f\x6e\xce\x8e\xd5\xdb\x81\xc5\x85\x53\x53\xce\x56\x17\xe2\xda\xd3\xca\xaa\xc5\x40\xfa\xe9\x71\xcf\xea\xc5\xc0\x52\x4c\xcb\xaa\xc0\xc0\xd2\xa8\x9c\x55\x81\x81\x45\x54\xc4\xca\xaa\xc0\xc0\xd2\x3a\x99\xd5\x80\x81\xe5\x41\x9d\x55\x80\x81\xb2\x1c\xad\x0a\x30\x90\x1a\x21\x48\x2b\xeb\xbb\x05\x16\x11\xf5\x2b\xeb\xbb\x05\xca\x72\xff\xab\x26\x03\x65\xc9\x21\xb5\x64\xa0\x2c\x59\xab\x96\x0c\x2c\x35\xf8\xac\x83\x17\x88\x3f\x9b\xb3\x94\x19\x05\x7f\xa8\x9b\x51\x5d\x3a\xeb\xe1\xf5\x5b\x55\x95\x06\xca\x72\x67\xa8\x49\x03\x65\xb9\xff\x55\xa4\x81\xd8\xec\xf4\xa9\xd2\x0c\xa4\x5a\xe5\x6c\x75\xea\x15\x67\xa6\x3b\x48\x3d\x1a\x58\xe4\x61\x5b\x59\x95\x19\x58\x1a\xe2\xb3\x2a\x33\x50\x96\x1b\x41\x95\x39\x9b\xaa\x72\xd9\xca\x35\xc7\x13\xbc\x3c\x7e\x54\x99\x81\xa5\xf1\x39\xab\x32\x67\x1d\xc1\x9e\x35\xaa\xcc\xc0\x22\xdc\x64\x65\x1d\xc1\xc0\x22\x6d\xca\xca\x6a\xd1\xc0\x22\x4e\x65\x65\xb5\xe8\xac\x23\xd8\xb3\x46\x25\x3a\xeb\x08\xe6\x58\xcc\x2a\xd1\xc0\x22\x80\x66\x65\x3d\xbd\xc0\x32\xdc\x24\xab\x57\x03\xa9\x51\x3a\x60\x65\x15\x6b\x60\x69\x84\xce\x2a\xd6\x40\x59\x7e\x98\x2a\xd6\x40\x3a\xa6\xdd\xac\x16\x0d\x94\xe5\x57\xae\xf7\x17\x28\xeb\x1f\xea\x66\xaf\xac\x27\x18\x48\x95\x3b\x4d\x2b\xab\x58\x03\x4b\x8d\x28\xab\x57\x03\xc9\x4b\x71\x2b\xab\x58\x03\x8b\x3c\x19\x2b\xab\x58\x03\x8b\x0b\x21\x2b\xab\x58\x03\xb1\x71\xe0\xa9\x9a\x35\xb0\x0c\xe1\xc9\x6a\xd6\x40\x59\x9e\x75\x6a\xd6\xd9\x84\x9a\x88\xef\xb9\xcb\x2c\x13\x6a\x4e\xdf\x25\xb3\x3a\xf9\x09\x96\xad\xe4\x02\xce\xe1\x63\x40\xcf\xaa\xd1\xc0\x22\x93\xce\xca\xfa\x86\x81\x45\xca\xc0\x95\xd5\xac\x81\xd4\xba\xc7\x87\xce\xe1\xac\xb6\x8d\xa1\x3a\xab\x6d\x03\x8b\xa8\xa4\x95\x55\xb6\x81\x65\xd8\x50\x56\x63\x06\x42\xc7\x65\x67\xaa\x31\x67\x4b\xc8\xea\x2e\xcb\xaa\xcc\xf9\xa8\xcc\x8c\x56\x95\x39\x1f\x95\xd9\xd3\x42\x95\x39\x1f\x95\xd9\xcf\x41\x17\x2f\x50\x15\x71\xb3\x5a\x34\x50\x8b\x27\x88\x1e\x5e\x20\xfd\xf4\x01\x66\x5d\xbc\x40\xfa\x15\x37\x99\x2e\xde\x6c\xf1\x59\x6d\xb9\x59\x05\x1c\xa8\xfa\xf2\xb2\xfa\x77\x36\xb9\xb2\x36\xb5\x3c\x9d\xbe\x3a\xb9\xa6\x80\xac\x4e\x9e\x2d\xa5\xe4\xf4\xd5\xc9\x81\xd4\xb8\x3f\xb6\xb2\x3a\x39\x50\xf5\x33\x66\x1d\xbf\x59\x35\x5d\xfb\x59\x56\x4d\x07\x82\xc6\xc4\xf4\xfc\x02\xd1\xab\x5d\xc8\x3a\x6a\xd2\xb6\xf3\x2b\x52\x79\xcf\x2a\xef\x7a\x3c\xb3\xca\x7b\xb6\x12\x93\x51\x38\x59\xed\x1d\x88\x76\xce\x4c\xe6\x4d\xad\xcf\x1e\x13\x6a\xef\x40\xf4\xcb\x6e\x52\x7b\x07\xd2\x4c\x8e\x45\xcf\x31\x50\x8b\x07\xb0\x9a\x3a\x50\x55\x24\xb2\xce\x64\x20\x7a\xa0\x57\xbd\xc9\x40\xf4\xc0\xf2\x2c\xb9\x12\x50\x0f\x53\xf4\x30\x03\xd1\x8c\x49\x2c\x99\x42\x2d\xa6\x33\x57\x4d\x01\xd9\x5a\x4c\x7f\xbd\xca\x93\x75\xb6\x13\xfc\xd4\x14\x90\x4d\x42\xa4\xee\x9a\x35\x05\x00\xb5\xf8\x93\xd2\x14\x90\x2d\x6e\x5b\xfc\x3f\xa8\xe3\x67\x93\x10\x19\x9e\x92\xd5\xf1\xb3\x49\x88\xce\xd2\xaa\xe3\xe7\xeb\x6c\x14\xba\x55\xc7\xcf\x16\xb2\xd5\x9a\x9f\x2f\x99\x72\x1d\x4b\x3b\xbc\x53\xf1\x07\x82\xe6\xb3\x32\xe5\xf2\x23\xf3\x14\xd2\x18\x00\x44\xbf\x8c\x59\x63\x00\x50\xcf\x76\xd7\x16\x00\x44\x33\xbb\x90\x2b\xd7\xe1\x0a\x9c\xd2\x16\x90\x4f\xf1\x26\x4f\x80\x4b\xae\x5c\x70\xc5\x2f\x4a\x5b\x00\x90\x8e\xc7\x2c\xab\xe4\x03\xe9\xb8\xdf\xb2\x5a\x3e\x50\xcf\x7f\x41\xef\x35\x50\xcf\x11\xa3\xde\x0f\xa4\xdf\xf9\x91\xaa\xf8\x03\x41\x63\x70\x2a\xfe\x40\xfa\x19\xc3\x90\x55\xfc\x81\x7a\xce\x3a\xf5\x7e\x20\xd5\x23\x0b\xab\xf7\x03\xa9\x95\xea\x80\x9d\xeb\xad\x49\xcb\xc1\x39\x55\x0b\x3b\x79\x14\xa9\xe2\x03\xa9\x69\xd1\xca\x3a\xba\x81\x74\x7c\x88\x59\xb5\x3f\x9f\x2a\x4e\x4e\x4c\xbd\x1f\xa8\xe7\xbc\x56\xef\x07\xd2\x4f\xd3\x52\x56\xef\xcf\xcf\xb1\xde\xd1\x85\x3a\x3e\x50\x8f\x20\xa1\x8e\x9f\xad\xe2\x74\x7e\xf5\x2a\xf9\x40\x3d\xa7\xb3\x2e\x71\x20\x7a\x60\x5e\x2a\xfe\x40\xd0\x1c\x9c\x2c\x21\x64\xfa\xa7\x01\x36\x6b\x0d\x00\x52\x3a\x3f\x30\xcd\x01\x40\x70\xdd\x67\xfd\x2a\x48\xe4\xf9\x3b\xbf\x6d\x0d\x02\x40\xd0\x58\x0a\x2d\x02\xd9\xe4\x9e\x46\xba\x64\x4d\x02\x40\xcc\x96\x3e\xb4\x09\x64\x0b\x43\x85\xac\xf3\xdf\x3f\xf3\x57\x46\xbe\x6e\x2d\xf8\xa8\x19\x21\x5b\x37\xea\xfc\x58\xb5\x23\x00\xa9\x1a\x44\x93\x35\x24\x64\x93\x84\x1e\xc9\x53\xab\x41\x36\x21\xa8\x96\xc1\xac\xd9\x20\x5b\x38\x4a\x0b\x62\xd6\x6e\x90\x4f\x92\x50\xb7\x88\x6e\x7c\x20\xf5\xe2\xfa\x69\x07\xc8\x66\xff\xd4\x22\x99\x5f\x39\xf4\xca\x21\x8f\x61\x8d\x03\xf9\x3d\x1c\x62\x7c\xfa\xea\x81\x18\x1f\x7d\xe8\xac\x07\xe2\x59\xb8\xa6\xc5\x00\x88\x6d\x08\x77\x35\x19\x64\x33\x80\x3a\x14\x4d\x06\x59\x93\x81\x91\xbf\x59\x93\x01\x10\x5d\xf8\x3a\x59\x60\x0a\xd0\xa5\x40\xa0\xd1\x20\xef\xb3\x99\xa4\xc9\x02\x6b\x0b\x6b\xba\xcc\x9a\x0d\xb2\x29\x40\x5d\x53\xdd\xf8\x40\x3a\xf1\x14\x59\x53\x02\x90\xfe\xb6\xb5\x86\x03\x20\x4e\x44\x39\x20\x57\xf6\xe1\x0a\x1c\xd0\xbb\x0f\xd4\xa3\xb4\x68\x60\x00\xa2\x99\x34\xf7\x05\xd7\x3d\xdb\xd1\xb2\xb4\x3a\xe4\xcf\x5b\xad\x6e\x82\x4f\x0e\x50\x82\xb8\x15\x5c\xe4\x59\x23\x03\x90\x52\xc5\xce\x95\xb5\x32\x00\x75\xa9\x3e\x69\x65\xc8\xe6\x00\x3d\x3a\xad\x66\x86\x7c\x22\x01\x54\x7d\x8d\x04\xc8\xa7\x82\x94\x5c\x31\x14\x20\x5b\x41\xca\x63\x5d\x6b\x04\x90\x4e\x58\x44\xd6\x1c\x01\xc4\xa3\xce\x4c\xa6\x9c\xb2\x52\xc8\xa5\x45\x7b\x04\x10\xed\xa4\x25\x69\xda\xd1\xd1\x15\x8b\x16\x09\x20\x9e\xcd\xd0\x8a\xb4\x73\x25\x7b\x41\xab\xd2\xf0\x70\x4e\x49\x5d\x92\x1e\xce\xee\xa3\x43\x1a\xa2\x5d\x62\xab\x14\x4d\x10\xc5\x62\x53\x8a\x7b\x45\x13\x04\x10\xc3\x2b\xd0\x6e\x69\x87\x2b\x3e\xfb\x48\x33\x2d\xe5\xf2\xd9\x57\x9a\xae\x84\xe1\xd4\xb6\x34\xd9\x32\x7c\xdf\x27\x4d\xb6\x10\x29\x5c\xb4\x43\x00\xd5\xa8\xe6\xa2\xd1\xa1\x58\x5a\x4a\xe7\x55\xd1\xea\x50\x2c\x2d\xa5\x25\xa5\x68\x75\x28\xa7\xb4\x94\x2c\x30\x82\x1c\xa8\x46\x40\x14\x2d\x11\xc5\xca\x52\x5c\x8f\x5f\xc5\xf0\x00\xa0\xe9\xe7\x29\x9a\x22\x80\xba\x4e\xab\x4b\x12\xd1\x8b\x4e\xd5\xe8\x00\x20\xc6\x36\xa0\x39\xfd\x74\xa6\xef\xa3\x4e\xdf\x92\x51\xc6\x49\x17\x43\x01\x80\x78\x96\xb9\x1a\x0a\x00\x54\x6e\x6c\xaf\x62\x24\x00\x50\x8d\xe0\x2e\x06\x02\x00\x95\xbb\xd8\xab\x68\xed\x00\xe2\x65\x30\x44\x73\x07\x10\x0c\xf1\x51\x19\x92\xcf\xdf\xd9\x67\xe5\x08\xf7\x43\x0d\xeb\x2e\x1a\x3c\x80\x18\xaf\xaf\x93\x49\xd4\x90\x32\xc0\xa1\x18\x1a\x00\x44\x0f\x0d\x9a\x5c\xca\x7e\x4f\xd3\x76\xb2\x89\x14\x49\xeb\x90\xdc\x38\xd9\x2c\x05\xee\x6b\xed\x22\x40\x70\x4e\x9a\x9c\xcb\x54\x69\x5b\xf6\x20\xe3\xbc\x5a\x6a\xa7\x9a\x4a\x8a\x57\x4b\xf5\x36\x14\x6d\x25\x40\x88\xf1\xf0\x5c\xcb\x48\xf1\x6a\xa9\x1f\xa2\x96\x91\x72\xae\x96\xca\x73\x4d\x23\xe5\x5c\x2d\xe5\x63\x2f\x9a\x46\x80\xba\x1c\xaf\x76\x90\x72\x32\x29\x75\x7b\x95\x25\xe7\x1a\xa9\x8b\xa3\xd9\x03\x88\x76\xd0\xb4\x5e\x00\xa9\x6b\x48\x2e\x9a\x2f\x80\x34\xb4\x35\x16\x83\xd6\x81\xd4\x7e\x48\x27\xc5\xd8\x00\x20\x1d\x3f\x77\xd1\xcc\x01\xa4\x4e\x89\xbe\x55\x34\x73\x00\xa9\x1d\xbe\x6b\xe7\x00\x82\xc7\x4c\xd7\x78\x81\x62\x92\x24\x7f\xab\x45\xe3\x07\x10\xd2\xd3\x7f\x5f\xcf\x5e\x45\xe3\x08\x90\x92\x76\x8f\xa2\x75\xa4\x98\x45\x89\x73\xb9\x68\x1d\x29\x66\x51\x92\x91\x5a\x47\x8a\x59\x94\x94\x23\x8b\xe6\x11\xa0\x19\xec\x52\x34\x8f\x14\x93\x28\x51\xec\x6f\x15\xed\x23\xc5\x4a\x1e\x0b\xbb\x7d\xd1\x40\x52\x9a\x6e\x3b\xc4\x89\xa2\x39\x04\x88\x76\xd2\xe4\x19\x77\x4d\x55\x7d\x8b\xc6\x0f\x20\x9a\xd1\x85\xc6\x0f\x20\xd8\xc3\x50\xb4\x7e\x00\xd1\x0e\x36\x6a\xfe\x00\xa2\x9d\xef\x93\x27\x4d\x9e\x54\xbb\x95\x27\x4d\x9e\x30\x59\x4d\x22\x40\xd3\xe1\x5d\x0c\x26\x00\x62\x12\xb0\x4e\x9b\x07\x10\xbd\xda\x83\x0c\x38\x46\x0f\x4c\xe7\x45\xa3\x07\x10\xcf\xb2\x91\xb4\x7a\x00\xf1\x2c\xdd\x6a\xf6\x00\xd2\x30\x32\xae\x68\xf6\x00\x62\xc4\xd2\x64\x14\x61\xf1\x49\xa1\xa3\x68\xf8\x00\x9a\x01\x4a\x45\xc3\x07\x10\xda\xa5\x5d\xc8\xa8\x2e\xa3\xaa\xed\x64\x14\x69\x94\x9a\xce\x84\x62\x9c\x01\x90\x8e\x3b\xbb\x18\x68\x00\xc4\x34\xa4\xc9\xa9\x6e\x0e\x77\x0f\x35\xcd\x26\x80\x79\x5c\x56\xd1\x6c\x02\xc4\xa3\x70\x54\xbb\x09\x10\x7f\x52\xba\xd5\x48\x02\x78\x25\x7d\x95\x21\xa3\xc6\x61\x14\xaf\x33\x22\x01\x48\xf5\xfc\xad\x8d\x48\x00\x92\x99\x8f\x56\x31\x24\x01\x68\x06\x90\x15\x0d\x2c\xc5\x08\x7a\x85\xb3\xa2\x81\x05\x88\x2e\x18\x9d\x06\x16\x20\x4e\x5c\xbb\x95\x29\xc6\xd0\x6b\xf6\x2c\x5a\x58\x80\x38\x4c\x1c\x8a\x4c\x31\x88\x9e\xba\xe7\xab\x68\x62\x01\x62\xcd\x1c\x9e\x5c\xc1\xc6\xd2\x28\x59\xba\x8a\x36\x16\xc0\x8c\x76\xab\x68\x4e\x01\x52\x56\x71\x2c\xda\x53\x80\x74\x94\xae\xa2\x3d\xa5\x18\x47\x8f\xe4\x54\x34\xa7\x00\xd1\xab\xcd\x64\xd4\x3c\x42\x9c\xed\x64\x14\x91\xf4\xe3\xe7\x6c\x35\xa8\x00\xa9\x35\x3c\x51\x45\x83\x0a\x90\xda\xcf\x5f\x82\x06\x95\x62\xf2\x25\xcd\x38\x45\x83\x0a\x90\xb2\xea\x6f\xd1\xa0\x02\xb4\xea\x46\xd6\x76\x02\x44\x33\x87\x27\x53\x8c\xb9\xd7\x3e\x53\xb4\x9d\x00\x41\xf3\x59\x3f\x34\x23\x1f\xd4\xe2\x8a\x91\x0f\x40\x6a\x46\x24\x16\xed\x29\x40\xca\xda\x36\x8a\xd1\x10\x40\xf4\x0b\x97\xb5\xa8\x00\xed\x08\x71\x1a\x54\x80\xe8\xd6\x66\x72\x85\x82\x58\xd5\xef\x47\x83\x0a\xd0\x8c\x5d\x2d\xda\x53\x80\xe6\x2d\x8a\xa2\x3d\xa5\x58\x1c\x45\xeb\x4c\xd1\x9e\x02\x34\xef\x2a\x14\xcd\x29\x40\x0c\xcd\x66\xb2\xc9\x7a\xd7\xc3\x3d\xa6\x3d\xa5\x58\x1b\x45\x53\x4c\x31\xb4\x02\x88\x2e\x58\x1d\x63\x2b\x80\xa0\xd1\x4e\xbb\x4b\xf1\x8a\xb8\x1e\xb3\xa2\xdd\xa5\x9c\xd8\x0a\xb4\xd8\xa2\xdd\x05\x68\xd5\xf3\x5d\xb3\x0b\x10\xdc\x64\x78\x9a\x5d\x80\xa0\xb1\x8a\x9a\x5d\x8a\xf1\x16\xdd\xd5\xd6\xec\x02\xc4\x50\x6c\x27\xef\x4e\x0c\x06\x6a\x60\xd1\xec\x52\x8c\xc1\xd0\xf2\x54\xb4\xbb\x00\x29\x77\xcf\x1e\xed\x2e\xc5\x18\x0c\x4d\x8f\x45\x1b\x4b\x31\x06\xa3\x3a\x33\x39\x75\x1d\xb5\x00\x2e\x6b\x77\x01\x5a\xf5\xc4\x33\x06\x03\x08\x06\x40\x33\x06\x03\x68\xde\x99\x29\x5a\x67\x80\x18\x1c\x13\xd3\x3a\x03\x04\x0d\x46\x69\x9e\x01\x5a\xf5\x47\xa3\x79\xa6\xdc\x87\x4f\x0c\x4e\xf3\x4c\x31\x2e\x23\xaf\x7f\x50\xd8\x8b\x96\x9a\x72\x1f\x96\xf9\x1a\x59\xc6\xf5\x83\xd6\xdc\xa9\x9a\x6a\x80\x34\x8a\xac\xd5\x54\x53\x8c\xd1\x68\x2e\x81\xf1\x18\x40\x08\x88\xec\x10\x0d\x33\x40\x6a\x47\x04\xd1\x30\x03\xa4\xdc\xe5\xa3\x56\x98\x72\x32\x54\x29\x63\x68\x85\x01\x5a\xf7\x5b\x35\xf8\x02\x88\x47\x61\xa4\x56\x18\x20\x36\xb5\x8f\x3a\x35\x42\x2d\x72\xf7\x27\xab\x19\x06\x68\xdd\x45\xd6\xe2\x52\xcc\x6d\xd5\xfd\xdb\x6b\x71\x01\xd2\x31\x60\x15\x2d\x2e\x40\xbc\xce\x59\x38\xdb\x80\xd6\xfd\x0a\x35\xb8\x00\xf1\x3a\x9b\xc9\x80\xc7\x58\x51\x7f\x13\x1a\x5c\x80\xa0\xd1\x85\x06\x17\xa0\x35\xcf\x39\x0d\x2a\x40\xbc\x0e\xbe\x6b\x51\x01\x52\xef\x1e\x6a\x5a\x54\x80\x68\x07\x03\xb4\xa8\x00\x41\x63\x6d\x8d\xcd\x00\x5a\x77\x69\x35\xb2\x00\xed\xef\x6d\xb2\xe9\x95\x4d\xcc\x41\x13\x0b\x10\xe3\x75\x70\xb2\xee\x95\x75\xca\x62\x9a\x5d\x80\x90\x2d\xed\x54\xd6\xbd\xb2\xc9\xb1\xc9\xa6\x57\x36\x29\x4f\x69\x75\x01\x5a\x73\x8b\x69\x74\x01\x62\x3b\xb1\x86\x1a\x5d\x80\xd6\x3c\xab\x0c\xdc\x00\x5a\xf7\xa7\xa1\x19\x06\x88\xc9\x33\x53\xcd\x30\x40\xeb\xfe\xfa\x34\xb9\x00\xd1\xcc\x0e\x64\xc8\x76\xe3\x78\x2c\x6b\x72\x01\x5a\xf7\x43\xd5\x6c\x02\xc4\xec\x59\x7d\xcd\x26\x40\xbc\x0e\x8e\x68\x22\x01\x52\x5f\xea\x87\xda\x48\x80\x34\x7e\x6a\x0d\xda\x43\x80\x74\xa2\xf9\x8a\x31\x17\x40\xca\xf3\xd0\x1c\xf2\x67\x2d\x3e\x67\xab\x8d\x04\x88\x76\xb0\x58\x1b\x09\x10\x34\xfb\x75\x15\xbf\xb3\x8a\x3e\xeb\x2a\x7e\xa6\x4c\x91\xa1\x1a\x49\x80\x94\x0f\xdf\x35\x92\x00\xd1\xaf\x73\xf3\x03\xa0\x56\x8a\x37\x6a\x8a\x46\x92\x62\xad\x94\xa9\xd0\xa1\x91\x04\x88\x47\x63\x78\x55\x23\x49\xb5\x7e\x8a\x41\x94\x55\x23\x09\x90\x2c\x86\xbb\xaa\x06\x11\xa0\x79\x89\xa5\x6a\x0f\x01\x52\x53\x48\xa8\x1a\x44\x80\xe8\x62\x40\x1b\xd2\x0e\x57\x0a\xb4\x29\x6d\xba\xa3\x7c\x76\x49\x33\x91\x0c\x1f\x5e\x35\x28\x03\x88\xf7\x39\xbc\x5b\x9a\x5c\x19\xb6\x7b\xa4\x1d\xae\x54\x68\xaf\x34\x6f\xfa\x21\xef\x56\x8d\x24\x40\xf4\x61\xbb\x4f\xda\x67\x3b\xa6\xab\x91\x04\x08\x5a\x87\x26\x5b\xc8\xb0\x95\x35\x83\x56\x2d\x27\x40\xbc\x4f\x9a\xac\x4a\x27\x7c\x8f\x7e\xb5\x9c\x00\xf1\x3e\x78\xa0\xe5\x04\x08\x1a\x3c\xd0\x74\x02\xc4\xfb\xa4\xc9\x3f\x52\x6b\x9d\x20\xa3\xaa\x39\x05\x68\x83\x1f\x5b\xd5\x9c\x02\xc4\xeb\x60\x8b\xc6\x13\x20\x75\xc3\x06\xab\xc6\x13\x20\x9d\xa0\xa2\xaa\x51\x04\x88\x67\xe9\x42\xdb\x06\x90\xac\x13\xb1\xaa\xb6\x0d\x20\xd5\xc6\x4f\xb6\x6a\xdb\x00\x42\x70\xb7\x9d\x43\xc6\xb8\xd1\x14\xf8\xaa\xc6\x8d\xea\xc5\x07\xff\x49\x55\xeb\x06\x90\xca\xcf\xad\xa1\x75\x03\x08\x9a\xed\x9c\x07\x55\xb3\x87\x9b\x54\xeb\x06\x10\xcd\xec\xc2\xa9\xe5\x33\x35\x5f\xe7\x8a\x07\xb4\x21\x93\x35\x65\x00\xf1\xa8\x34\x17\x17\x53\x46\x49\x6e\x34\xe3\x3e\x80\x36\xf8\xea\xab\xd6\x0d\xa0\x8d\xf9\x0f\x41\x6f\x55\x43\x07\xd0\x86\xb3\xd6\xce\x01\x44\xff\xac\x80\x31\x20\x40\xd0\x58\x3d\x8d\x1f\x40\x1b\xee\x5f\x6d\x1f\x40\x34\x63\xbf\x19\x05\x02\xb4\xe1\xba\x17\xf9\x55\xcc\x34\x24\xc3\x34\x91\xd4\x72\x3e\x11\xa7\x23\xc3\x8a\xb9\x96\xfc\x1c\x0c\x0d\x01\xd2\x89\x43\xab\xc6\x86\x00\xd1\x8e\x67\x35\xaf\x00\xc1\x31\x69\x72\xac\xaa\xed\x26\x69\xb2\x0c\x53\xca\x30\xb0\xaa\x6a\x4a\x01\x1a\x59\xcf\x57\xd5\x92\x52\xbd\x79\x41\x06\xae\x55\xb5\xa4\x54\x6f\x5e\x90\x82\x6b\x55\x2d\x29\xf5\xdc\xbc\xe8\x76\x21\xa3\xbc\x66\x41\xca\xb0\x55\x35\x8b\x54\xf2\x6d\x15\x12\x4e\xaf\xaa\x11\x04\x08\x9a\xfd\xca\x02\x52\x49\xb7\x7a\xfa\x75\xba\xd5\xea\xc2\x6e\x7d\x2d\x1e\x40\xd0\xe0\xbc\x31\x21\xb5\x65\xa6\x21\xc9\x99\x35\x35\xb1\x2a\xcd\xa9\x35\x4b\xb9\x72\x16\x57\xad\x1b\x40\xd0\x6c\xe7\x34\x9a\x06\x21\xfe\x8c\x55\xb3\x05\x10\x5f\x17\x43\x36\x56\xa3\x9a\x21\xab\xb8\xa7\xb5\x5b\x54\x33\x64\x79\x09\xa2\x6a\xa3\x00\xda\x39\xee\x35\x47\x54\x53\x5f\x79\x59\xb8\x6a\x8e\x00\xda\x39\x62\xb5\x46\x00\xcd\x7f\x4c\xd5\x18\x01\xa4\x46\xad\xb4\x55\xb5\x3c\x00\xa9\x19\x93\x57\xb5\x3c\x54\xac\x0c\x27\x02\xaf\x6a\x65\x00\x9a\xba\x73\xd5\xc8\x00\xa4\x13\x0e\x57\x35\x32\x00\xa9\x1a\x0c\x5f\xb5\x32\x00\xa9\x68\x62\xac\x5a\x19\x80\xa0\xd9\x85\x4b\xc6\xd5\xfd\xd2\x88\x7b\xaa\x5a\x1e\x80\xb6\xdc\x3d\x5a\x1e\x80\x68\xc6\x64\x0d\xd9\x00\x1a\x79\xde\x57\xd5\x18\x01\x44\x33\x26\xa6\x31\x02\x48\x85\x1a\xe4\xab\x6a\x8c\x00\x82\xe6\xb3\x6e\xda\x61\x1e\x5c\x7f\x27\x5a\x23\x80\xe6\xb5\xff\xaa\x31\xa2\x5a\x24\xbb\x79\xe4\x6a\x8c\x00\xd2\x89\xd1\xac\x1a\x1e\x80\xd4\x87\x1b\x40\xc3\x03\x60\xa9\xad\x55\xb5\x3b\x54\x6c\x0c\xeb\xbc\x4d\x96\x70\x53\x5f\xd3\x64\xd5\xec\x50\x31\x31\x14\x05\x8f\xaa\x89\xa1\x5a\x0f\x5b\x11\xb8\x6a\x63\x00\x52\x51\x8e\xad\xda\x13\xaa\xf6\x04\xef\x14\x56\x35\x51\x20\xcd\x86\x79\xb6\xaa\x61\x02\xc9\x12\xad\xab\xea\xec\xad\x26\xc5\xaa\xee\x31\x75\x8a\x7a\x8a\xd1\x78\x80\x2b\xa2\x02\x41\xa3\x9d\x82\x16\x90\xa6\x5f\x4a\xf3\xa0\x6f\x7f\x07\x7d\xcc\xad\x79\x30\x00\x69\x2a\x06\x37\xf9\xde\xcc\xb0\xcd\x47\xd1\xe4\x3b\x10\xd3\xc8\xd0\x2e\x69\xdc\x43\x6a\x3e\x79\x4b\xe2\xa6\x2a\x72\x6b\x93\xeb\x40\xfa\x69\x2b\x6b\xb2\x1d\x08\x21\xd5\xb7\x7d\xd2\x3e\x7b\xe0\x75\x32\x1e\x48\x86\x52\x35\xf9\x0e\x64\x72\x4d\xaf\x26\xdb\x81\xdc\x8a\xad\x9a\x24\x73\xba\xf1\x37\x6c\x5a\x71\x80\x59\xb8\x0b\xd2\x34\xd8\x00\xb3\x70\xb0\x35\xed\x35\x40\x31\x38\xb6\x19\xeb\x02\x14\x1d\x02\x4d\x73\x0d\xb0\x7e\x68\x71\x4d\x6b\x0d\xb0\x7e\xc5\x77\x6d\x49\x04\x7f\xba\x04\xda\x6a\x80\xa2\x4d\xbf\x69\xaa\x01\xd6\x8f\xcf\xbc\x69\xa9\x01\x8a\xa6\xc4\xa6\xa1\x06\x28\x3a\x34\x9a\xc1\x30\x40\xd1\x79\xd7\x34\xdd\x00\x45\x6f\x63\xd3\x4c\x03\xa4\x66\xe4\x4f\xd3\x4e\x03\x04\x8d\x91\x69\xa8\x01\x8a\xf6\xe5\xa6\xa1\x06\x88\x66\xf6\x20\x33\x02\x56\x48\xb4\xff\xf9\x2b\x6f\xda\x6c\x80\xe5\x7d\x80\xa6\x79\x06\x58\xe3\xbc\x57\xc6\x04\x2c\x45\xae\xa6\x71\x06\x48\xb5\xf1\xab\x6c\x1a\x67\x80\x6a\xec\x4c\xf3\xcb\x01\x62\x57\x4b\x93\x35\xa4\xf9\x33\xb5\x53\xd3\x36\x03\x54\x33\x47\x35\x4d\x33\x40\x35\x42\xb8\x69\x99\x01\x62\xe3\xb0\x99\xb4\xcc\xb4\xeb\x70\x0b\xde\x6b\x99\x69\x17\x97\x74\xb3\x43\xf3\x73\xb8\xb4\x32\xf0\xb5\x36\x83\x5f\x9a\xc1\x2f\x5a\xe3\x9b\x86\x19\x20\x68\x3e\xeb\xe6\x09\xa8\x86\xf4\x35\x0d\x33\x40\x34\x63\x0e\x5a\x61\x80\xa0\x31\x62\xcd\x30\x40\x35\xe8\xb2\x69\x4a\x01\x52\xd2\x06\xd2\x8c\x74\x01\x82\xe6\xeb\x9c\xd8\x7d\x4c\xe0\x70\xce\x50\x97\x86\xad\x24\x1d\xa6\x6b\x2b\x01\xaa\x77\xc6\x9b\x61\x2d\x40\x4a\xe7\x03\xd3\x7c\xd2\xcc\xe5\xdd\xce\x50\x9c\xc5\x7d\xbc\xce\x76\xe1\x52\x63\x52\x49\x9a\x5e\x9a\x26\x15\x20\x86\xc2\xb3\x1e\x75\x40\xd0\xe8\xc3\x20\x16\x20\x68\xac\x8f\xf6\x13\xa0\x69\xc2\x6c\x9a\x4f\x80\x68\x26\xcd\x25\xc3\x7c\xa2\x85\xb5\x19\xc4\x02\x44\x33\xbe\x03\x4d\x2a\xed\xc1\x66\x8f\xcc\xd6\xb4\x94\x00\x31\x09\x3a\xd5\x04\xd2\xbc\x86\xc2\xaf\xae\x69\x01\x01\x52\x3e\x9b\x53\x13\x48\x7b\x8f\x95\x90\x39\x68\xee\x00\x9a\xd7\x80\x9b\xd6\x0e\xa0\x79\x01\xad\x69\xec\x00\x9a\xb7\x80\x9b\x26\x8b\xf6\x5a\xbe\xa0\xda\xcc\x85\x08\x68\x64\x39\x5d\x4d\xf3\x44\xd3\x3c\x61\x78\x4d\xd3\x3c\x01\xa4\x6c\x90\x50\xd3\x3e\x01\x44\x3b\xc6\xab\x7d\x02\x68\xe6\x8f\x68\xda\x27\x80\x36\x10\xbb\x9b\xf6\x09\x20\x84\x58\xd8\xab\x7d\x02\x08\x1a\x83\x33\x4e\x04\x08\x9a\xcf\xba\x0c\xfb\xfc\x49\x78\xd6\x0b\x1b\xed\x44\x53\x30\xd9\x6e\x30\x3d\x90\x74\xbb\x74\x75\xb0\x7e\xaa\x5b\x1e\xda\x96\xb6\xff\xef\x7f\x3a\x09\x00\x57\x57\x2d\x03\xcc\x8e\xba\xba\xbe\xea\xee\xad\x75\xb6\x43\xd7\x57\x0d\x74\x12\x13\xae\xae\xaf\x1a\xe8\x24\x39\x5c\x5d\x75\x0e\xe8\x24\x39\x5c\x5d\x8d\x0c\xe8\x8a\x91\x5d\xe5\xab\xab\x7c\x25\x1f\x74\xf8\x2a\x5a\xec\x85\xee\xef\x17\xe8\xca\x9a\x5d\x35\x0b\x48\x9e\xc3\x5d\x27\x32\xd0\xfd\x6f\x77\x35\x2f\xa0\x2b\x08\x77\x15\xaf\x7e\x14\x2f\xde\xa5\xde\x05\x24\x4f\xa9\xae\xde\xd5\x4f\xae\x34\x76\x69\x57\x3d\x02\x52\xd7\xe9\xd1\xd5\x8f\x80\x3e\x50\x95\xbb\xea\x11\xd0\x87\x1c\x53\x3d\x02\x92\x91\x36\x5d\xed\x08\xe8\x83\x0d\xd9\x55\x8e\x80\x3e\xaa\xad\x9c\x12\x7a\x90\xa2\x4d\x57\x0d\xea\x7a\x99\xf9\xca\xba\x4e\x66\x20\x75\xef\x6c\x75\x35\x23\x20\x69\xca\xec\x2a\x46\x40\x1f\x1c\x14\x5d\xbd\xa8\xeb\x62\xe6\xcb\xee\xea\x45\x40\x9a\xf9\x74\xe0\x94\x02\x46\x3a\x2f\x73\x4a\xd5\x5b\x68\x3e\xe9\x92\x54\xb2\xd0\x2c\xdf\xef\xf8\xb9\x30\x9e\x1c\xbf\x7a\x0d\x90\xa9\x8c\xb1\xba\x6a\x0d\x30\x92\xec\x31\xae\x1d\x18\xc9\x81\xa9\xe9\x00\x23\x39\x2e\xdd\xb8\xfd\xa4\x2b\xe3\x9c\xeb\x2a\x35\x40\x36\xd2\xb7\xab\xd3\x00\xb9\xc9\x58\x5d\xb1\xc0\x18\xd9\x07\x65\x7f\xe3\xb6\x98\x2b\xa2\x92\x03\xe4\x56\xff\x41\xfb\xee\xba\x6e\x81\x31\x30\x97\x76\xbd\xb4\x40\x6e\x6e\x11\xb5\xa2\xde\x95\xbb\x58\x2f\x35\x20\x20\x6b\xe8\xe8\xfa\x4f\x81\x34\xbd\x67\xd2\xd5\x6c\x80\xa2\xd7\xa5\xab\xd9\x00\xb3\x34\xbb\x74\x76\xdc\xdd\xf6\x6a\x4e\x57\xaf\x01\x66\x41\x3b\xed\xaa\x30\xc0\x2c\x28\xb6\x5d\x0d\x06\x28\xc6\x30\x77\x35\x18\x60\x96\x26\xc9\xe1\x0f\x24\x2a\xb7\x83\x0a\x0c\x50\xbc\x65\xd5\xd5\x5f\x80\xe2\xcd\x9f\xae\xfa\x02\x14\xc3\xc1\xba\xda\x4b\x1f\x5c\x8e\xe3\x37\xdf\x95\x98\x81\xe2\x65\xa0\xae\x74\x0c\x84\x40\x23\xcd\x49\x0e\xae\xc2\x35\x5f\xe6\x24\x07\x97\xa5\xdc\x22\xfa\x42\x81\xf5\x93\xd5\xca\xc6\xc0\xfa\xb9\xd0\xba\x42\x81\xd4\x13\xff\xa9\xae\x70\x0c\xac\x9f\xbb\x46\xb7\x27\x50\xd4\x8d\xbb\xf2\x72\x9f\xa4\x46\x74\x87\xeb\xe0\x04\xd6\xaf\xf8\x2e\xa7\x34\xb9\x05\x85\x27\xab\xeb\xca\xec\x56\x9a\xf5\x4c\x53\x5c\xee\x47\x5c\x76\xac\xce\x68\x3a\x23\xc7\xea\x8c\x8e\x6c\xec\xeb\x5d\x49\xfc\x98\xcd\x5b\x1a\x5d\x49\x18\x58\x26\x42\xea\x4a\xc2\x7d\x71\xfd\xc1\x33\x53\xb1\xb7\x2f\xae\xcd\xa0\x76\x74\xc5\x5e\x20\x78\xcd\x30\x14\x7b\x81\x65\x26\xa4\xae\xd4\xdb\x8f\xd4\xcb\xc8\x94\x7a\x81\xea\xfd\xa9\xae\xd0\x0b\x54\x6f\x44\x74\xa5\xda\x6e\x60\xf7\x19\xab\x53\x5a\x86\x1d\x22\x75\x76\xe5\xd5\x7e\x82\xb8\x91\x31\xbb\x02\x6b\x37\x88\x5b\x3f\x7e\x57\x60\x05\x52\xa5\x22\xcb\xea\x4a\xac\xdd\x20\xee\x33\x2d\x45\x56\x20\x8d\x74\x9e\x75\x5a\x66\xa6\x76\xd5\x75\x12\x02\x21\x62\x31\x3c\xe5\x53\xa0\x19\x52\xd1\x15\x45\x81\x94\x96\xff\x07\xe5\x4e\x20\x68\xb4\x53\xee\x04\x82\xc6\xe8\x94\x3b\x81\xa6\xef\xad\xeb\xe9\xeb\xde\xc0\x56\x2a\xee\xba\xfa\x80\xd6\x91\xeb\xbb\xa2\x28\xd0\xba\xef\x72\x15\x6e\x45\x33\x46\xab\x1c\x0a\xa4\x7e\x5e\xef\x2a\xdc\x1e\x80\xac\x82\x62\x28\x30\x86\x5f\xba\x52\x68\xd7\x89\x67\x72\xd9\xae\xc4\xd9\x2d\x07\x6b\x97\x0a\x9c\x40\x51\x53\xed\xaa\xdb\x40\x31\xfe\xae\xeb\xd5\x03\xd6\x91\x1b\x94\x4a\x81\xf5\xab\xb6\x72\x8e\x8f\x1f\x14\x0b\xa0\x9c\x0a\x14\xc5\xe3\xae\x98\xda\x1f\xee\x58\x22\x09\x77\x45\x52\x60\xfd\x3c\xe5\x15\x49\xfb\xe3\xb5\x24\xdf\xe5\xbc\xa9\x0f\xab\x1d\xa8\xeb\xcf\x03\xaa\x81\xf1\x5d\x21\x15\x28\x46\x6e\x74\xdd\x79\xc0\x32\xab\x56\x57\x1e\x05\xaa\x51\xf6\x5d\x8f\x5c\x3f\x31\xce\x3e\xa9\x88\x0a\xc4\xfe\xa1\x4f\x65\x54\xa0\x99\x85\xaa\x2b\xa3\x02\x4d\xcf\x7b\xd7\x21\x07\xc4\x1e\xb0\x99\xd3\x7c\x75\x63\xfb\x49\xe9\x92\x03\x4e\x0c\x7c\x57\xbc\xed\x7a\xe4\xce\xf7\xa3\x47\x0e\x68\x26\x75\xe8\x4a\xbc\xc0\xf1\xd1\x75\x43\xa3\x81\x78\xd2\xb7\x39\xf9\x17\xc7\xb6\x3f\x14\x85\xe0\xae\x10\xac\x0e\xd8\x15\x78\x81\x90\xa9\x79\x9d\x12\x2f\xd0\xcc\x1a\xd1\x95\x78\x81\x46\x41\x80\xd5\x15\x6e\xbb\xc2\xad\xca\x76\x57\xb8\x05\x92\xb1\xd2\xdd\xd8\xe6\xee\x8d\x68\xb9\x6b\x68\x33\x50\x34\x15\x74\xc3\x93\x81\xd2\x7e\xff\x70\xf5\xac\xeb\x99\x03\xd6\x0f\x45\xa8\xeb\x98\x03\xd6\xcf\x0f\xc4\xd8\x65\xa0\xa8\xf5\x75\x85\x6d\x20\xd5\xe9\x47\xaf\xab\x0e\x58\x5e\x84\xef\x1a\x90\x80\x62\x7c\x58\xd7\x51\x07\x14\x03\xb0\xba\x7e\x3a\x60\x0d\x8f\x37\xdd\x74\x40\x31\x16\xae\xeb\xa5\x03\x96\xe9\x75\xba\x4e\x3a\xa0\x18\x7d\xd5\xf5\xc7\x01\xcb\x4b\xed\x5d\xdf\x5b\xb7\xf2\xab\x2b\x36\xf4\xbd\x01\xd5\x9b\x12\xc3\x58\xe4\xf1\x3b\x27\xea\x82\x56\xa4\x15\x53\xdc\x26\x68\x55\x5a\x45\x57\xee\x90\x9a\x24\xe3\x4e\xf9\xba\x86\xee\xb8\xf1\xf3\x0a\x84\xa4\x29\xc9\xa8\x75\xbe\xcb\xa1\xe7\x0d\xa8\x5e\x9d\x1c\x3a\xd9\x86\x91\xc8\xfe\xe1\x87\x0e\x35\xa0\x99\xff\x6c\xe8\x4f\x03\x9a\xe9\xd5\x86\xee\x34\xa0\x99\x54\x67\xe8\x4d\x03\x52\xa2\x58\xfd\x1a\x7a\xd3\x80\x66\xae\xb6\xa1\x33\x6d\x18\x86\xec\x9f\x6e\xe8\x4c\x03\x9a\x99\xd9\x86\x3e\x32\xa0\x99\x60\x6d\xe8\x0e\x03\xe2\x58\x67\x68\xfa\xc3\x80\xa0\x39\x10\x67\x95\x94\x5b\xe4\x91\xea\x19\xd0\x0c\x6b\x1a\xaa\x67\xc3\xf8\xe2\xd5\xec\xd5\x99\x26\x82\xb8\x96\x63\x73\xa6\x86\x17\x2f\x3e\xaf\xa1\xca\x06\x04\x8d\x79\xa9\xb3\x01\xa9\x1b\xaf\x33\x54\xda\x80\xf8\x82\xe9\x56\xad\x0d\x08\x9a\xed\x5c\xe8\xac\x8a\x4d\xb7\x3a\xe1\x80\x68\x26\x4d\x9e\x64\x1d\xe8\xfc\xeb\x86\x4e\x38\xa0\x99\x06\x6b\xa8\xf1\x0d\x7d\x70\x94\xd0\x5e\x43\x1f\x1c\x10\x34\x26\xab\x1a\x08\x34\x0a\x31\xac\xa1\x0b\x6e\x64\xfd\xec\xd5\xc1\xc9\x93\x7c\x74\x71\x76\xa6\x2a\x1e\xd0\x94\x73\x86\x2a\x1e\x90\xaa\x59\x1a\x87\x3a\xde\x38\xbe\x35\x06\xa7\xa7\x0c\x08\x1d\x5b\x9a\xf3\x2a\x0a\x3f\x7e\x23\xea\x7d\x83\x74\x61\x03\x19\x6c\xa8\xe3\x01\xf1\x28\x73\x50\x7d\x1b\x94\x91\xa1\x02\xef\x1a\xaa\x6f\x43\x37\x16\x75\x64\xd6\x50\x7f\x03\xd2\x31\x9d\x0e\x15\xb8\x61\x1d\x19\x35\xcb\xa1\x02\x07\xb4\xf3\xd9\xa8\xc0\x01\xe9\xd8\x53\x87\x1a\x1c\xd0\x3c\x59\x86\x5e\xac\xa1\x17\x4b\x53\xe9\xd0\x58\x3d\xf4\x62\x69\x18\x1d\x7a\xb1\x80\x76\x3e\x7d\xe3\x7d\x87\x8e\xad\xe6\x6e\x52\xd3\x1b\x3a\xb6\x0c\x77\x19\x6a\x6c\x40\x1a\xc6\x98\x0c\xc3\x71\x81\xe4\x05\xab\xa1\x7e\x06\x14\x6d\x49\x43\x3f\x14\x90\x6a\x73\xc0\xaa\x6c\x40\x9c\x55\xbe\x4d\x0e\x37\x6f\x44\x9d\x76\x8e\x24\x94\xb6\x66\x16\xac\xa1\xd2\x06\xa4\xa6\x07\x76\xa8\xb5\x01\xc9\x5b\x6d\x43\xb5\x0c\x88\x5e\x69\xa6\xb7\x0a\xa8\x5e\x80\x1e\xaa\x6a\x40\x33\xb9\xdb\x50\x55\x03\xb2\xb9\xd8\x86\x31\xb1\x40\xfb\x9d\x07\x9d\x41\x87\x95\x1e\x11\x6a\x6f\x40\x36\xb1\xdb\x50\x79\x03\x66\xc1\x6b\x38\xd4\xd4\x80\xf5\xf3\xfb\x50\x53\x03\x52\x37\x23\xc6\xd0\x03\x05\xac\x1f\x52\xe4\x50\x55\x03\xd6\xcf\x0f\x50\x55\x0d\x48\x4d\x95\x68\xa8\xab\x0d\xef\x07\xfb\x29\xa8\xab\x01\xcb\x30\xf5\xa1\xae\x06\x14\x6d\x88\x43\xc5\x0c\x28\x1a\xf8\x86\xde\x8d\x31\xfc\x65\x49\x72\x4a\x5e\x0e\x3e\x47\x88\xca\x1a\x90\x7e\x5e\x36\x1a\x2a\x6b\xc3\xdb\xc1\xc5\x09\x38\xcf\x73\x3b\x38\xff\x83\x76\x3d\x54\xe6\xc6\xb9\x3c\x7c\x66\xe3\xd2\x9e\xcb\xc3\x6e\x45\x35\xbc\x61\xf6\xae\xf3\xa7\x53\xc5\x03\x82\xc6\x1a\xe9\x12\x19\xe7\xf6\xb0\xc3\x52\xed\x03\xa2\x0f\x96\x44\xbd\x6f\x98\xd2\xcb\x3b\x4b\x43\xc5\x6f\x78\x7d\xd8\x49\xaa\xf8\x01\xa9\x37\x6c\x5e\x43\xcd\x6f\x78\x55\x58\x69\x60\xe8\x29\x01\x62\x37\x32\x0d\xd5\xc1\x31\xcf\x7e\x77\x28\x32\x92\x3c\x5f\x5a\xf6\x87\xfa\x20\x50\x4d\x0d\x31\xd4\x07\x87\x97\x82\x15\x1b\x86\x0a\x21\x50\xf5\x1c\x0c\x35\x3d\x20\xfe\x89\xd2\x1c\x30\xde\x8c\xd4\xec\x41\xbd\x0e\x68\xa6\xad\x1b\xea\x75\xc3\x8c\x5e\xed\xd0\x1c\xef\xc9\xe8\xe5\x71\xa7\xb2\x07\xc4\xfe\x63\x29\xd4\xf6\x80\x94\x16\x56\x86\x61\xdc\xe9\x38\x29\xbd\xfc\x10\x54\x01\x81\xa0\xd9\x87\xb3\x58\xe7\xab\x65\x29\x74\x6d\x00\x27\x21\xf2\x50\x53\x1c\x27\xec\xd4\x7f\x96\x9a\x22\x90\xb2\xf7\x29\x86\x9a\x22\x70\xae\xc0\x0f\x15\xc5\x71\xc2\x4e\xdd\x14\x2a\x8a\xc3\xb0\xd3\x73\x18\xeb\xdc\x00\x8e\xcf\x7e\xe8\xc7\x18\x27\xc2\xd4\x0d\xa0\xa2\x38\x4e\x34\xa9\x7b\x51\x47\xc6\xb0\x86\xe8\xd9\x3b\x6a\x8f\x40\xd0\x1c\x8a\x4c\xa1\x24\x92\x37\xbb\x86\x0a\x25\x10\xcd\xe8\x56\xe5\x11\x48\x55\xbf\xf3\x30\x76\x14\x48\xc7\xb8\x33\xd4\x28\x87\x1a\x65\xf7\xc8\x50\xa3\x04\x52\x37\x03\xef\x50\xa5\x04\xa2\x1d\xc3\xd3\xbb\x31\x8c\x0e\xed\xc8\xb9\x43\x45\x73\x18\x1d\x3a\xfc\x95\xa9\x69\x02\xf1\x3b\xf6\x59\x59\x80\x17\xa4\x9b\x78\x7a\xa8\x7e\x02\xd1\x0e\x2e\xab\x6c\x02\x69\x0e\x42\xe1\x86\x2e\x0f\x20\xe6\xe6\xb3\xee\x01\x5c\x1e\x25\x29\xcb\xa8\x81\x02\xd1\x8e\xf1\xa9\x82\x02\x6d\xba\x42\xaa\xa0\x40\x3a\x96\xb1\xa1\x0e\x0a\xb4\xe9\x1e\x50\x07\x1d\xcf\x89\x96\xb0\x99\x5c\xc1\x31\x72\x3e\x46\x1d\x23\x40\x3a\x4e\xc3\xa1\x16\x0a\xa4\x63\x0a\x1f\xaa\xa1\x40\x33\x09\xff\x50\x0d\x05\xf2\xef\x74\xe0\x0e\x08\x28\x3a\x72\x86\x6a\xe8\xf0\x1e\xef\xd9\x77\xea\xa1\xc3\x7b\xbc\x67\x1b\x1b\x56\x3a\xce\x3d\x5e\x0f\x6b\x7d\x2a\xc3\x7b\xbc\xe7\x4f\xab\xc2\x0a\x04\x97\xe8\x43\x8d\x15\x68\x3a\xda\x86\x0a\xeb\x50\x61\x35\x6a\x61\xa8\xb0\x02\x41\xf3\x51\x59\xf2\x1a\x79\xed\x0f\x59\x95\x75\x1c\x95\x55\x21\x45\x95\x75\x1c\x95\x55\xde\xa9\xb2\x0e\xa3\x48\xcd\xf5\x39\x54\x46\xc7\x71\xbf\x30\x5b\x95\xd1\xa1\x96\xd9\x95\x6f\x75\xb5\x8c\x7d\xd6\x5a\x9a\x6b\xbd\x4f\xec\x14\xdd\xaa\x66\x0e\x1d\x2b\xd6\x09\x18\xea\x99\xe3\x4f\xcf\x84\x53\x46\x7e\x02\x69\x18\xde\x3f\xcc\xa0\x35\x2c\x72\x84\xdd\x6d\x18\xd1\x09\x44\xb7\x34\x53\x6f\x04\xe2\x18\x64\x28\x2a\x8e\x40\x70\x8a\x2e\xd4\x1c\x81\x64\x05\xdf\x35\x8c\xf2\x04\xb2\xf1\x4c\x43\xcd\x11\x48\xb5\xb9\x17\x55\x1d\x81\x7a\xce\x0a\xf5\x44\x20\x7a\xb5\x07\xf9\xf9\x61\x02\x70\x79\x54\x14\x87\xe1\x9c\x46\xd9\x0d\x35\x45\xa0\x99\x38\x70\xa8\x29\x0e\xc3\x34\xd7\x79\x9b\x1b\xea\xa3\xcc\x1a\xaa\xf7\x54\x53\x04\x52\x29\x8c\x77\x1a\xa5\x09\x64\x43\xbc\xa6\xda\xe3\xa4\x60\xa9\xc6\xd5\xa9\xa2\x08\xcc\xd2\xff\xbb\x82\xd8\x9a\xea\x91\x33\x54\xc7\xa2\xcb\x75\x1a\xc1\x39\x4d\x69\xcd\xf7\x3d\x55\x23\x81\xa2\x59\x6e\x1a\xab\x09\x14\xcd\x6d\xd3\xb0\x4c\xa0\xac\xf3\xe0\x2b\x09\x53\x4e\xb1\xd5\x27\x09\x8f\x39\x7f\xf8\xa9\xc6\x38\xc9\x8c\xa5\xc3\x74\xaa\x1d\x4e\x93\x55\x73\x18\x4d\x95\x43\xa0\xe8\xf5\x9d\x06\x5a\x02\x69\x0e\x8c\xf4\xd3\x40\x4b\x20\x8d\xcc\x6f\x75\xaa\x44\x02\xf1\x25\x4f\x68\x4e\xd3\x14\xd6\xfc\x7c\xa6\x0a\xe3\x34\x37\xf5\x99\x81\x0a\x23\x50\x35\xdb\x4e\x15\xc6\x69\x6a\xea\xbf\xf1\x6e\x69\x47\x0e\xb0\x9d\x33\x4d\x1a\x86\xf9\xab\x4c\x35\xc6\x69\x6e\xea\x33\x31\x35\x46\xa0\x1a\x56\x30\x55\x0e\x81\xd4\xbc\x1b\x33\x55\x0e\x81\x66\x96\xb1\xa9\x22\x38\xcd\x42\xad\x5b\x79\xaa\x08\x02\xd1\x43\x81\xe6\xfa\x65\xe5\x20\x57\x4b\x4d\x10\x88\x67\xe1\xa7\x6a\x1f\x50\x8d\xfb\x9d\x7a\xff\x80\x66\xbe\xb0\xa9\x22\x08\xa4\x9e\xab\xf3\x72\xae\x59\xe7\x38\x27\xca\x54\x39\x04\x9a\xf9\xe0\xa6\x8a\xe0\xb4\x3c\x69\x73\x12\x7a\xfb\x80\xf8\x14\xe9\xd5\x4b\xa4\x40\xd0\xe0\x89\x1a\xe3\xf4\x12\xa9\xd5\xbd\xa6\x81\x94\x40\xf3\x82\xe7\x54\x61\x04\x9a\x01\x88\x53\x3f\x21\xd0\x7e\x67\x6c\xce\x34\xa0\x99\xa7\x6c\xaa\x07\x02\x71\x9a\xf0\x7e\x95\xbe\x69\xf1\x50\xca\x27\xae\xa9\xd2\x07\x44\x3b\x5e\xa7\xdf\x0e\x88\x76\x30\x58\x4d\x10\x68\xde\xe5\x99\x2a\x82\x40\xfc\xc7\xed\xc2\xf1\x72\x31\x34\x79\x8d\x62\xaa\x09\xce\x73\xf3\x93\x43\x6c\xea\x06\x04\x82\x06\xeb\xd4\x0e\x81\x60\x93\xef\x73\xc3\x56\xec\x8c\x87\xe4\x1a\x5a\x79\x54\x66\xea\x2e\x04\x5a\x3d\x73\x70\x09\x03\x9a\x97\x6f\xa7\xee\xc2\x69\x91\x51\x15\xbc\xa9\x73\x10\x68\x5e\x8c\x9e\xaa\x95\xd3\xe2\xa1\x14\x5d\x5e\x53\xb5\x12\x68\x5e\x04\x99\xde\xdd\x9c\xd6\x0e\xa5\x5c\xf3\x9a\x6a\x95\xc0\x49\xbd\x34\xf5\x0e\x02\xd1\x8c\xb1\xa9\x69\x02\x41\x83\x21\x6a\x9a\x40\xf3\x36\xc3\x54\xd3\x04\x52\xf6\x8e\xe7\x54\xd3\x04\xe2\xd0\xe5\x75\xea\x95\x93\x3b\x99\xd9\xbb\x7c\x53\x1f\xe0\xec\x27\x10\x80\xf7\x19\x06\x09\xb4\xb1\x6c\xe6\xaa\x76\x6d\x14\x72\xce\xc8\x48\xa0\x8d\x25\xc9\xb9\xf6\x13\xa4\xea\xa3\xae\x60\xb7\x7c\xff\x79\xd4\xf9\x07\xb4\xe9\xe2\xab\x95\x02\xa9\x53\x5b\x7e\x4d\xbd\x85\x40\xf3\xfa\xc1\x54\x05\x9d\xc6\x3b\xfa\x11\xaa\x82\x02\xcd\xdf\xe1\x54\x03\x05\x52\xf1\x0f\x3e\x55\x41\xa7\xb1\x8d\x5e\x35\x99\x3a\x07\x81\xf8\x33\x43\x53\xc8\x06\xb2\x81\xcb\x53\x07\x0d\xb0\x7e\x9e\x2d\x8a\xd3\xc0\xa2\x6a\xe4\x9a\x4a\xd3\xf3\x3a\x82\x13\xac\xf4\x76\x16\x50\x95\xa5\xa6\xd2\x34\x50\x15\xb9\xa6\xc2\x34\x10\x07\x15\xc3\x55\x98\x06\xaa\xb1\x1d\x53\x59\x7a\x2a\x4b\x67\xf7\xa5\xb2\x34\xd0\xbc\x9b\x36\x15\xa5\x81\x54\x1b\x12\xe2\x54\x94\x06\x62\x4b\x3b\x10\x67\x65\xa1\x50\x9d\xb1\x53\x51\x1a\x68\x26\x49\x98\x4a\xd2\x53\x49\xba\x77\xbb\x70\xf6\x37\x82\x14\xc6\xdf\xa9\x70\x0d\x44\x33\x69\xee\xd5\xdb\x3b\x2a\x7e\x82\x0a\xd7\x40\xd0\xd8\xfb\x0a\xd7\x40\x2a\x29\xfd\xc3\x6d\xb2\xa9\xec\x3d\xbd\xc1\xe5\x7d\xd8\xa9\xa0\x0d\xa4\x96\xb1\x3f\x4f\x25\x6d\xa0\xe9\x45\x9c\x0a\xda\xf3\xe4\xca\x4d\x3e\x2a\xcf\x9e\xc3\x33\xd8\xad\xa4\x0d\x04\x0d\x9e\x29\x69\x03\xf1\x2c\x3c\x33\x06\x09\x88\x76\x76\x2b\xd3\x1e\x23\xb3\x65\xa4\xf2\xf7\x34\xaf\xae\xd7\x9f\xa6\xc2\x36\x10\x1b\x90\x0f\x46\x2f\x0a\x90\xbd\x2f\x30\x15\x5c\x81\xd4\x8a\x07\xb2\x2e\x13\x20\x1e\xe5\x75\xfa\x4c\x80\x6c\xa8\xfb\x54\x98\x05\xd2\x29\x9c\x38\x15\x66\x81\x54\x0d\xdf\x9d\xba\x51\xa6\xa5\x5f\xfc\xa7\x2a\xdf\x4e\x4b\xbf\x28\xc6\x28\xde\x02\xd3\xa4\x29\x53\xe9\x16\x88\x97\x31\x5e\xef\x35\x01\x45\x87\xd4\xd4\xb3\x02\x14\xcd\xe3\x53\xcf\x0a\x50\x34\xbf\x4f\x93\xc6\x00\xeb\xe7\x87\xe0\xe5\xa7\x69\xce\x18\xd3\xf1\x4d\xa5\x67\xa0\x68\x43\x98\xfa\x64\xe6\xf1\xc9\xc0\x0d\x05\x65\x20\x1d\xe3\xd7\x54\x50\x9e\xba\x58\x5c\x7b\x5d\x2c\x40\x39\x1f\x9f\x72\x32\x90\x46\xf6\x8b\x57\x4e\x06\x16\xe5\x58\xd7\x54\x26\x06\x96\xd9\x87\xa7\x32\x31\x10\x9f\x32\x9b\xc6\xeb\x4c\x40\x39\xa2\x89\x32\xf1\xa4\xd6\x8b\xb6\xfc\xa5\xfc\x0b\xa4\x9f\xd2\xf4\x52\xd8\x5d\xba\x4a\x54\x6c\x96\xae\x12\xa0\x2a\xd4\x2d\xc5\x59\xa0\x7a\xf0\x2c\xc5\x59\x20\x9e\x2c\xd0\xa6\xb4\x23\x0f\xd9\xeb\x92\x86\xff\xfc\x74\x70\x49\xba\x38\x79\xec\xe0\x91\x84\x29\x0d\x3d\x6c\xe9\x15\x01\xd2\x28\x68\x30\x4b\x89\x16\x68\xe6\x92\x5d\xba\x40\x96\x25\xfb\xf5\x50\x2c\xa5\x5c\xa0\xea\xe9\x5c\x4a\xb9\x40\x1d\xe7\xc9\x2a\x49\x87\x3a\xff\xcd\xa5\x94\x0b\xa4\x9f\x16\x9b\xa5\x94\xbb\xd2\x91\xfc\x7c\xd6\x99\x22\xe5\xea\xc2\x5a\xba\x4a\x80\x74\xb6\xee\x32\x15\x0b\xd0\x0c\x1f\x5e\x0a\xc3\x40\x33\xe7\xef\x52\x16\x06\xd2\x50\x31\x59\x0a\xbe\x40\xfb\x9d\x0e\x3e\x49\xca\x82\x4e\x4b\x19\x17\x68\x9a\x55\x97\xf2\xec\xca\xc7\x26\xc6\x70\xf5\x76\x00\x21\x47\xd1\xab\x02\xed\x32\x77\x4a\xb3\x0b\x05\x5a\xa0\xfd\x4e\x0f\x4e\xcb\xdc\x29\x26\x77\x5a\x7a\x36\x96\xb9\x53\xac\xa3\xb7\x94\x71\x57\xd6\x26\x36\x1c\xca\x2b\x4d\x9b\xd8\x70\x28\x4e\x8c\xab\x44\xf5\x34\x73\x62\x0a\xb9\xd6\xdb\x5b\x0a\xb9\x40\x4a\xc6\xe2\x2f\x5d\x20\x40\xd0\x18\x9e\x92\xef\x52\xf2\xb5\x08\xdf\x52\xf2\x5d\xe5\x48\x97\x1d\x9a\x1c\xe0\x06\x91\x37\xd6\x97\x42\x2e\x10\x0b\xc6\x2c\x94\x72\x81\xd4\xb4\x3a\x2d\xc5\x5c\x20\xce\x07\x5f\x27\x07\xca\xd1\x4c\x99\x99\xb2\x2f\x10\x67\xa8\xcf\xba\xb4\xde\x17\x32\xc6\x7e\xe9\x53\x01\x9a\xd9\x63\x96\xd7\x85\x16\xa5\xf9\x4d\xa8\xb4\x74\xa9\x2c\x43\xe2\x2c\x89\xb6\x14\xa5\x97\x05\x58\xbc\xda\xb0\x74\xa9\x2c\x6f\x0b\xd5\x9f\x34\x19\x60\x51\x16\x0b\x8d\x2e\x45\x69\xc0\xaa\xfe\x6b\x29\x36\x03\xd1\x8c\x89\x29\x36\x2f\x8b\xf3\x77\x99\xa2\xd8\x0c\x34\xef\x36\x2c\xa5\x66\x20\x75\xaf\xb6\x2f\xa5\xe6\x65\x71\x7e\x95\xab\xa5\xd4\x0c\x04\xcd\x2e\x9c\xbf\x97\x85\x2c\xbf\xb7\x94\x9b\x81\x68\x47\x1f\x4a\xc9\xcb\x92\xfd\xa6\x47\x59\xfa\x68\x80\x36\xfe\x25\x27\xeb\xd2\x83\x03\xb4\x73\x16\x28\x6a\x2f\xeb\xf9\x9b\xc6\x65\x19\x88\x07\xa4\x62\x5c\xda\xf2\xca\x11\xd0\x66\xb7\x7f\xcf\x82\x76\x7e\xed\x8e\x53\x36\x36\xc5\x54\xb6\x82\x52\x3a\x10\xcd\x7c\x54\x2e\x2a\xa6\x9b\xec\x64\x29\xa6\x2f\xcb\xf9\x5b\xf5\x71\x29\xa7\x03\xcd\x0b\x92\x4b\x31\x1d\x88\x9d\x2a\x4d\x8e\x21\xa6\xaf\x43\xf2\x3b\x6a\xe7\xfa\x0e\x3d\xe8\xfd\x01\x52\xf1\xb6\xef\x52\x4c\x5f\xa6\x53\xf1\x82\xc8\xf2\xfe\x12\x90\x86\x95\x3c\x97\x41\x53\x40\xf6\x86\xdf\xd2\xb8\x0e\xfc\x7d\x32\xda\xd6\x81\xf8\x2a\xd9\xcf\x1a\xd7\x81\xec\x05\xbb\xa5\x1d\x7d\x1d\x3b\xba\x1f\xb4\x76\x74\x20\xfe\x21\xbe\xce\xb9\x9e\x7c\x98\x58\xfd\x96\x76\xf4\xa5\x1d\xbd\xb9\x13\x34\x90\xaf\x63\x20\xe7\xaf\xbd\x34\x86\x03\x41\xb3\x9d\x0b\x8b\x35\xbc\x4f\xcc\xd7\x4b\x6b\x38\xd0\x4c\xfc\xb5\x34\x86\xaf\xeb\x7c\x0b\xec\x09\x05\x75\xa0\x19\x81\xb0\x34\x86\x03\x31\x0b\x7b\x70\x66\x97\xbe\x44\x7e\xf9\x4b\xe9\x1d\xc8\x1a\xf9\x97\xd2\x3b\x50\x34\xb4\x2d\x6d\xe1\x40\xd1\x7b\xb1\x94\xe7\x81\x35\x1c\xad\xe1\x56\xc0\xb2\xf6\xe2\x52\xc4\x07\xca\xf9\x73\x29\xe2\x03\xcb\x3a\x8e\x4b\x09\x1f\x28\xe7\xcf\xa8\x84\x0f\x94\xf3\x2b\xf3\x7a\x00\xb0\xac\x1c\xb9\x14\xe6\x81\x54\xcf\xf9\xa1\x30\x0f\xc4\xba\x48\x93\x1b\xb7\x8e\x32\xa7\xa9\x34\x0f\x04\xcd\xf7\xc9\x8d\x5b\xe9\x12\xb1\x71\x29\xce\x03\xe9\x67\x90\xf7\x52\xe6\x06\xea\x11\x50\xb4\x77\x2f\xd3\x59\x9a\x97\x7f\x29\x86\x03\xd1\x05\x73\x55\x0c\x07\x52\x3b\x8c\x33\xea\x0a\x88\xcf\x86\xe1\x29\x87\x03\xf1\x3e\xfb\x70\x6a\x27\x79\xa5\x6b\xaf\x7c\x0d\xa4\x9f\x16\x8a\xa5\x7c\xbd\x4e\xa2\x4a\xff\x5d\x1a\xb8\xd7\x49\x54\xe9\x21\xa1\xcc\xbd\x4e\xa2\x4a\xd9\xa7\x81\x7b\x1d\x03\xb7\xd2\x81\x06\x6e\xa0\x1a\x2d\xb3\xbc\x34\x00\x54\xbd\x91\x4b\x93\xf7\x32\x0f\xa5\x87\x95\x16\xef\xf5\x2a\xb9\xf8\x19\x6a\xde\x06\xaa\xc1\xbf\x4b\xeb\x36\x10\xcd\x98\xbf\xd6\xed\x75\xd2\x50\xfa\xf7\xd1\xba\xbd\x4e\x1a\x4a\xcf\x3e\xad\xdb\x40\xd5\x9c\xb8\x0c\xc8\x02\x52\x37\x62\x7a\xa9\x4a\x00\x55\xb7\xeb\x52\x95\x00\xa2\x57\x7b\x90\x4b\x2f\x1e\x3e\xbf\x24\x35\x09\xa0\x1a\x63\xb4\xd4\x1a\x96\x5a\x43\xf6\x7b\x50\x6b\x00\x4e\xb2\xc5\xa5\xd6\x00\xc4\x69\xc0\xd8\xbc\x6e\x00\x04\x8d\xe9\xab\x4a\x00\x41\xf3\x59\x59\x82\x2e\xd1\x32\x1a\xff\x52\x97\x00\x52\xb2\x4e\xd8\x52\x99\x00\x82\xc6\xf2\xab\x4d\x00\x41\x83\x4d\xea\x0e\x40\xf4\xe1\xfb\x9c\xec\xc6\xb4\x77\x48\xee\x88\x7d\x0e\x30\x66\xab\xe5\x7d\x1d\xcb\xbb\x0b\xab\x42\x01\x34\x23\x8e\x97\xca\x03\x10\x67\x9a\x34\x67\x76\xac\xec\x1e\xe0\x6a\x0f\x40\x4a\xeb\xd0\x9c\x99\xe9\x26\xbd\xbd\xb8\x34\xbd\x2f\x4d\xef\xa6\x07\x5c\xaa\x19\xcb\x7c\x93\x66\x65\x5c\xea\x19\xcb\x7c\x93\x66\xef\x5b\xda\xde\x97\xf9\x26\x4d\xc1\xb7\xd4\x3d\x80\xa0\x31\x5d\x95\x8f\x65\x72\x49\x93\x01\x2e\x0d\xf2\x40\x33\xcb\xcf\xa5\xf1\x1d\x20\xf5\xc1\x7f\xfe\xcc\x2f\xd5\x95\xcb\x2c\x93\xe6\xd4\xbb\x54\x57\x80\xe8\xcc\x37\x57\x69\xba\x40\x51\xb9\x2e\x75\x18\x20\x68\x03\x5a\x97\xa6\xff\x87\xf3\xf0\x52\xb1\xb9\xcc\xb4\xa0\x87\xed\x52\x89\xb9\xcc\xaa\xe0\xa9\x71\xa9\xc5\x5c\x66\x55\x30\x30\xe1\x32\xe0\xeb\x32\xab\x82\x87\xda\xa5\x6a\x03\xc4\x62\xf9\xec\x2b\xcd\x08\x45\x34\xb6\x4b\x7d\x07\x68\x66\xc6\xbd\xb4\xe9\x5f\x26\x55\xf0\xf0\xbb\x54\x81\x80\x78\x1d\x53\x53\x07\xba\x4c\xaa\xa0\x8f\xfa\x52\xbb\xb9\x4c\x96\x60\x62\xfd\x4b\xed\xe6\x32\x59\x82\xb7\x4f\x2f\xb5\x1b\xa0\x79\x99\xf5\x52\x93\x01\x9a\xc9\x40\x2e\x15\x19\x20\x9e\x74\x24\x4e\x36\x69\xb7\x71\xc4\xaa\x32\x40\xf4\x6a\x0f\x4e\x36\x69\xb8\xe1\xd8\xbc\x54\x6f\x80\x68\xe7\xfb\x9c\xad\x76\x7d\x3d\x0c\x97\x76\xfd\xcb\x9c\x0a\xda\xcf\x2e\x75\x1e\x20\xfe\xc1\x2c\x90\x91\x60\x97\x91\x60\x7a\xc0\x2e\x8d\xfd\x97\x91\x60\xda\x2f\x2e\x95\x23\x20\x68\x70\x4f\xe5\xe8\xca\x87\x2b\xf6\x2b\x57\xb2\x97\x30\xdc\x04\x2a\x4c\x40\xb4\x93\x26\xab\x8c\xfb\x32\x78\xfb\x52\x3b\x02\x82\xc6\x7c\xd5\x8e\x2e\x73\x2f\x64\x49\xb2\xca\x58\x30\x6f\xf4\x5d\x2a\x4c\x40\xd0\xec\x42\x56\x65\x45\xe3\xe2\xd4\x64\x55\xd6\x05\xc2\x47\x7c\xa9\x31\x5d\xc6\x8c\x71\xc4\x5c\x2a\x4c\x40\x3c\xca\x6a\xa8\x30\x01\x21\x86\xc2\x15\xdd\x02\x40\xb4\xf3\x75\x72\xc5\x94\x0b\x6e\x02\xe3\xc8\x80\x68\x66\x17\x32\x05\x4f\x81\x3f\x80\x4b\x1d\x0a\x88\x66\xac\x99\x3a\xd4\x55\x8e\x59\xcb\x76\xf2\xe9\xc4\x9b\x65\x47\x27\x9f\x8a\x96\x77\x4e\x8e\x4b\x1d\x0a\x48\x53\xdb\xd4\xa5\x0e\x75\x99\x73\x21\x25\x87\x27\xa3\x8c\x55\xfb\xf9\xa8\x7c\x32\x56\x2d\xf1\xe3\xb9\x54\xac\x80\x36\x7f\x92\xe4\x53\xd5\xf7\x8a\x92\x70\xa9\x57\x01\xd1\x03\x7c\x52\xaf\x02\xda\xc4\xd3\x7c\xe9\xb5\x00\xa2\x19\x2b\xa6\xaa\x05\xb4\xf9\xf3\x6d\xb2\xae\x1e\xbd\x01\x9e\xa8\x6a\x01\x21\xfc\x4b\x93\x4f\x27\x09\x83\x7b\x56\x5d\x0b\x08\x9a\x5d\xc8\x93\x93\x84\xc1\x6f\x4f\xbd\x0a\x68\xb3\x4b\x92\x25\xa8\x55\xc5\xaa\xa0\x97\xfe\x88\xeb\xe4\x65\xf0\x53\x51\xd5\xba\x4e\x5e\x06\x3f\x5b\x15\x27\x20\x68\x4c\x43\xcd\xe9\xfa\xd3\x92\xe0\xb1\x5a\xd2\x75\xb4\x24\x36\x85\x5a\xd2\xa5\x96\xa4\x82\x71\xa9\x25\x01\xcd\xdb\x85\x97\x5a\x12\x10\x8b\xcd\x88\xd5\x92\x80\x78\x94\x11\x1b\x36\x77\xe1\xcc\x30\x1d\xce\xa5\x92\x04\xc4\x19\x60\xaf\x4e\xd6\xec\x0d\x5e\xb0\xbe\x54\x89\x80\x53\x23\xe4\xd2\x71\x01\xa4\xa2\xb9\xef\x52\x23\x02\x9a\xf6\x8c\x4b\x85\x08\x08\x49\x81\x5e\xf5\x65\x5c\xfa\x32\xbc\xbe\x70\xe9\xcb\x00\x9a\xb6\x86\x4b\x5f\xc6\x45\x46\x87\x62\x78\xf8\x65\x30\x1d\x90\x8a\x39\xa7\x2e\x9d\x19\x97\xce\x0c\xd3\x70\x5d\x3a\x33\x2e\xb3\x3c\xc8\x39\x7d\x19\x97\x59\x1e\x4c\x12\x76\xe9\xcc\x00\xd2\xd0\x37\x72\x19\x1f\x05\x04\x8d\x2e\x54\x61\x80\x6c\x60\xcd\xa5\xba\x02\x2c\xcb\xc2\x5f\xaa\x26\xc0\xb2\xe0\xfb\xa5\x1e\x72\xdd\x84\x55\xcb\x38\x95\x0e\x20\x44\x67\x69\x32\x0e\xc7\xc2\xc8\x7e\x4d\xaa\x1d\x40\x88\x93\xff\x50\x3c\xfc\x52\x2d\x01\x42\xb4\x62\x01\x74\x3c\x5c\x56\xe1\x3b\x3b\x41\xcf\x03\x50\x35\x18\x5f\xea\x2a\x40\xf3\x62\xd5\xa5\xaa\x02\xc4\xdb\x1c\xa8\x7c\x35\x84\x27\xa3\x56\x5e\xaa\x2a\x40\xb4\x83\xb1\xaa\x2a\xc0\x29\x78\x71\xa9\xa9\x00\xa9\x0d\xc4\xf9\x4b\xc7\xc3\x75\x1f\x09\x47\xda\x61\x99\xf6\x39\x8f\x47\x1d\x0f\x97\xb9\xe1\x74\x81\x5c\x6a\x39\x40\x33\xef\xf2\xa5\x96\x73\x9d\x74\x71\xa8\x95\x97\x5e\x04\x20\x65\xe3\x75\x2e\xb5\x97\xcb\x3c\x70\x86\xb7\x5e\x7a\x07\x2e\x93\xbe\x19\x54\x7a\xa9\x95\x00\x71\xa0\xf9\x3e\x87\x17\xd0\x26\x16\xb0\x4b\x05\x04\x88\x4f\x1c\x16\xab\x81\x00\xcd\x74\x87\x97\x1a\x08\xd0\x26\xa6\x86\x4b\x0d\xe4\xe2\xd2\xb2\xf7\x87\x2f\x15\x10\x20\x9d\xcb\x5f\x97\x1a\x08\xd0\x54\x84\x2e\x15\x10\x20\x75\x43\xc5\x2f\x15\x90\xcb\xf2\x79\x4a\x4d\x6a\x11\x40\x30\x4e\x9a\x33\xb0\x28\xbd\x7f\x33\x9d\x0f\x97\x91\x34\x26\xd5\xbb\x54\x23\x80\x62\x70\xde\xa5\x16\x01\x44\x33\x1f\x75\x0a\x5b\x2d\x52\x19\x51\xf5\x00\xa8\xda\x23\x2e\xb5\x83\x6b\x1f\x85\x51\x9a\x1b\x67\x1f\xe5\x10\x8e\xa8\x09\x00\x41\xb3\x9d\xcb\xa0\x26\x70\x06\xec\xc6\xd9\xa8\x3d\x92\x14\xfa\xaf\x93\x64\xde\x33\x5f\x2f\x02\x10\x34\xb8\x64\xb8\x0d\x10\x34\xb8\xa9\x76\x70\x79\x7b\xa3\xfb\xd3\x53\x13\xb8\xd4\x04\x8c\xcf\xbf\xd4\x04\x2e\x35\x01\x23\x94\x2f\xa5\xfe\xeb\x3b\x9f\x89\xfd\xba\x99\xbe\xa3\xe3\xd8\xaf\xb3\x25\xe2\xc6\x3b\x8f\x97\x42\xff\x65\xfe\x34\x6f\xff\x5c\x0a\xfd\x40\x7c\x12\xbe\xce\xd9\xfe\x29\x02\xbe\xce\x55\xe4\x12\x47\x4f\xac\xf6\xad\x26\x00\xc4\xfb\x7e\xd0\xb2\xb4\xec\x8d\x8d\x0e\xad\x48\xc3\x49\x0e\x07\x6e\x45\xfd\xfb\x88\xf5\x28\xe0\xb7\x62\x3d\xd0\xcc\x9e\x73\xeb\x9a\x00\xa2\x59\x86\xb6\xa4\x59\x4d\xb9\xdb\xeb\x25\x4d\x41\x17\x0d\xe3\x56\xaa\xbf\x95\xea\x2d\x11\x76\x2b\xd5\xdf\xbf\x23\xe8\x3a\x94\x57\x1a\xb9\x01\xb3\xa4\x2d\xe9\xc8\xb9\x4e\xe2\x93\x66\x71\x0f\x7e\xca\xb7\x52\xfd\x6d\xaa\x34\xdd\xce\xb7\x52\xfd\x7d\x52\xa5\x71\x64\xdd\x7a\x36\x6e\x53\xa5\xf9\x43\xbb\x95\xf4\x81\xd8\x03\x0c\x59\x49\x1f\x88\x03\xc0\x67\xe5\x4a\x52\x06\x71\x7c\x46\xeb\xdc\x49\x43\x65\xf6\x59\xd9\x92\x94\x41\xa6\x7d\xc8\x16\x1c\x19\xb3\xfb\xa8\x53\xcb\x27\x9c\x8a\x66\x8a\xe1\x40\x3b\x23\x56\x0a\x07\x9a\xb6\x95\x5b\x21\x1c\x88\xff\x23\x9d\x2a\x84\x03\xd9\xe8\xc7\x5b\x79\x1b\xa8\xfa\xc3\x6e\xfd\x13\xb7\xfe\x89\x62\x2b\x47\xab\x04\xae\x49\xf2\x56\x02\x07\x62\x8b\xf9\xa8\x8b\x98\x35\xb5\xba\x88\x8a\xdb\x40\x70\x8e\xd5\xc9\x67\x5a\xe6\x45\x72\x03\x28\x6e\x03\x43\x5f\xfc\xad\x68\x0d\x34\x35\xe1\x5b\xc9\x1a\xc8\x86\x26\xde\x7a\x22\x6e\x3d\x11\xde\x93\xbe\x15\xb6\xef\x72\x96\x6b\x41\x73\xf6\xe5\x6c\x62\x06\xa2\x64\x0d\xc4\xd6\x81\x73\x8a\xd1\x40\xea\x29\x4b\x73\xb2\x7f\x62\xb4\x34\x27\x5b\xce\x64\x99\x84\x62\x34\x90\x8d\x58\xb8\x95\x98\xef\x62\x98\x39\x2a\xec\xad\x78\x0c\xa4\xaa\xf0\x72\x2b\x1f\xdf\x95\x6b\x82\xff\x72\x65\xfc\x56\x52\x06\xd2\x4f\xf7\xcd\xad\xa8\x0c\x54\x2d\x74\xb7\x92\x32\x50\xf5\x6f\xde\x4a\xca\x40\x3c\xc9\x47\xa9\xa4\x7c\xeb\x94\xf0\x86\xd4\xad\x54\x0c\x04\xcb\xd8\x92\x7a\x20\x6e\x3d\x10\x1a\xfc\x6e\x25\xe5\xbb\x9e\x1f\x09\xec\x51\x52\xbe\x0d\xdc\x39\x83\x93\x15\x06\xee\x9c\x5e\x5d\x75\x03\x77\x38\x96\x6f\xe5\x64\x20\x98\xc3\x40\x74\x49\x00\x6d\xba\x87\x14\x9d\x6f\x45\xe7\x94\x7d\xd4\xd9\x93\xc4\x7d\xfa\x91\x2a\x39\xdf\xa6\x34\x33\xab\xf7\xad\xe8\x7c\x2b\x3a\x9b\x62\xfd\x56\x4e\x06\x9a\xb1\xb1\xb7\x62\xf2\xad\x98\xec\x85\xe9\x5b\x31\x19\x28\x3f\xf7\x9a\xfe\x05\x60\x8d\x43\x72\x56\xcd\x35\xf7\xd0\x53\x24\xbe\xfb\x91\xec\x78\x9b\xb2\x2e\x90\x7e\xda\x89\x6e\x05\x5b\x20\xd6\x86\x91\x18\xa4\x03\x04\x0d\x96\x28\xec\x02\x41\x63\xfe\x0a\xbb\xb7\x17\xff\x0b\xaa\xc3\xad\x14\x0b\x44\x1f\x8c\xcf\x90\x1c\xa0\x6a\xed\xbe\x0d\xc9\x01\xe2\x75\x0c\xcf\x98\x1c\x20\x68\x6c\x1d\x2f\x7c\x00\x41\xa3\x0b\x03\x70\x80\xa0\xf9\x3e\xa7\x31\xce\x34\xe0\xb1\xd7\x40\x80\xaa\xf9\xfc\xf6\x1a\xc8\x6d\x06\xf3\x73\x26\x79\x0d\xe4\x36\x83\xb9\xb7\x8e\x6f\xaf\x81\xdc\x66\x30\x37\x3b\xc3\xed\x3d\x10\x20\x9e\x75\x78\x6e\xb1\xa1\x11\xd0\x1f\x9a\x17\x3d\x80\x38\x1f\xe0\x94\x17\x3d\x80\x68\x47\xbf\x5e\xf4\x00\x42\x18\x66\x6a\x5e\xf4\x00\xa2\x1d\x6c\xf1\xa2\x07\x90\xba\x51\x2b\xb7\x97\x3a\x80\x68\xe7\xb3\xb2\x80\x1c\xe6\xd9\x1b\x11\xb7\x37\x3d\x80\x68\xc7\x98\xbd\xe9\x01\xc4\x3c\x98\x9b\x37\x38\x80\xd4\x0d\x51\xb9\xbd\xc2\x01\xa4\xb1\x4e\x3b\xe7\xcb\x1d\x8e\x6a\x34\xf4\xad\x8e\x02\xa4\x6e\xb0\xf6\x6d\xc6\x2b\x20\xfa\x90\xe6\x7c\x17\x86\x50\xcf\x7e\x2f\xfa\x03\xd1\x8c\x6e\xcd\x79\x75\xaf\x73\xbe\xc2\x3e\x93\x93\x03\xd1\xce\x67\x9d\xda\x52\xe8\xf4\x43\xf0\xb2\x07\x10\x87\x8a\xed\x9c\x9a\x49\xc6\xbd\x29\x79\xeb\x90\x02\x52\xcf\x38\x6e\x6e\x1d\x52\xb7\x09\xc5\xbd\xc5\x79\x7b\xb1\x03\x88\x55\x63\xd9\xbc\xd8\x01\x04\x9b\xe9\x43\xc7\x15\x10\xcf\xb2\x6c\xde\xec\xb8\xbd\xd9\x61\x4c\xe7\xad\xe3\xea\xf6\x1a\x87\x57\xb2\x6e\x1d\x57\xb7\xd7\x38\x7e\xfe\x3b\xf4\x5c\xdd\x66\x0f\xf7\xae\xe8\xad\xda\x77\x5f\xe7\xc0\x64\xcc\xba\xae\x80\x93\x4d\xf4\x56\x15\x04\x5a\x39\x23\x71\xb6\xdc\xd8\x28\xa7\x53\x27\x4b\x4e\xf0\x72\xde\xef\x5c\xad\xcb\x6e\x9c\xe7\xad\x9b\x0a\x88\xa5\xe5\x6d\xfa\x96\x6e\xb3\x78\x17\x84\xe2\x5b\xbd\xee\xf6\x72\x86\xee\xdf\x5b\x25\xee\x3e\xd1\x63\x08\xd4\xb7\x5a\xdc\xed\x45\x8c\xe2\x91\xac\x2a\x76\x1b\x03\xa6\x13\xf1\x56\xed\xba\x8d\xf7\x3a\x07\x8b\x6a\x17\xd0\xb4\x04\xdc\x6a\x5d\x40\x34\x63\xc8\x3a\x92\x80\xa0\xc1\x76\x1d\x49\xb7\x29\xb9\x8b\xc7\xbe\xaa\xd8\xfd\x9c\x21\xd3\xad\xaa\xd8\xad\x2a\x56\xb0\x88\xde\x06\x74\x01\xcd\xd0\xfc\x5b\xdf\x12\xd0\xbc\xa2\x78\xab\xb0\x01\xcd\x0b\x8f\xb7\xba\x19\x10\x7b\x87\x97\xa9\x62\xdd\x27\x57\x94\xc2\xae\xf7\x1a\xee\x93\x1a\x7b\x49\x93\xc7\xa6\xc6\xb6\x06\xde\xad\xde\x75\x9b\x1a\xbb\xf8\x3a\xc7\xeb\xb5\x06\x6f\x10\xde\x3a\x79\x6e\xaf\x30\x8c\x7f\xb9\x67\x7e\xeb\x04\xba\xbd\x95\x6f\x82\xb1\x5b\x27\x10\xd0\xcc\x3a\x7e\xab\xbe\xdd\xaa\x6f\x56\x4f\xbb\x75\x02\x01\xf1\x07\x60\x05\x8c\x31\xbb\x4f\xee\x6c\xe5\x28\x75\xba\xdb\x44\x54\x26\x08\xba\xd5\xe9\x6e\xef\xe5\x9b\x12\xed\x56\xa9\x03\xa2\x1d\x43\xd1\x0f\x04\x04\x0d\x66\xe8\x07\x02\xe2\x59\xfb\x90\x41\x27\x57\xf6\xf2\x7d\x72\x68\x73\xd5\xd7\x9f\xb6\x17\xf8\x6f\x53\x65\x2b\x5a\xe9\x19\x02\xd2\xc9\x72\x70\xeb\x19\xba\xf7\x51\x10\x7c\x54\x0e\x9c\x94\xda\x4b\x9a\x1c\xd8\xde\x82\xf4\x67\xa4\x1b\x08\x88\x76\xec\x55\x35\xc2\xfb\xc4\x95\xf9\xd9\xa8\xe9\xdd\x27\x29\x96\x9f\x88\x5a\xdd\x6d\xaa\x6c\x23\xe6\x6f\xfd\x3b\xb7\xa9\xb2\x8d\x49\xbf\x55\xcd\x80\xe6\x2d\x9f\x5b\x2d\x0c\x88\xc3\x39\x86\xf7\xa8\x71\x01\x41\x9b\xd0\x9a\xb4\x66\x17\xd2\xba\x34\x2d\x13\xfc\xdc\x1e\xbd\x26\x8f\x5e\x13\x63\xfc\x1f\x75\xae\x47\x9d\xcb\xe0\xfd\x47\x9d\xeb\xd1\x93\xa2\x53\xfa\x51\xe7\x02\x52\x4f\xd3\x76\xb7\x34\x83\x49\xf8\xa9\x3e\xea\x5c\x8f\x9e\x14\x83\x9f\x1f\x75\x2e\xa0\xe9\x1d\x7d\xd4\xb9\x1e\x75\x2e\xc3\xe1\x1e\xf5\x2b\x20\xfe\xb3\xb4\x53\x97\x7a\xfe\x74\x29\x58\x60\x98\x18\xd0\xf4\xa2\x3e\xaa\x57\x8f\x8e\x14\x03\xee\x1e\xd5\x2b\x20\x14\x0c\x5f\x27\x07\xd2\xe1\x00\x23\xd6\x45\x02\xa4\x69\xe4\xff\xa3\x8b\x04\x48\x25\xa1\x4d\x3c\xba\x48\x80\xa0\x25\x68\x9f\xb4\xcf\x5f\x2a\x5c\xd6\x1d\x02\xc4\x26\xa0\x5f\xdd\x21\x40\x3c\x2b\xcd\x69\x64\x33\xb2\x15\x9f\x75\x1e\x6a\x5d\x09\xc9\xea\x51\xeb\x02\xda\xfc\xf9\xa8\x8b\x8b\xe7\x63\x98\xdc\xfb\x51\xed\x7a\xcc\x30\x6d\x9a\x99\x47\x7d\xea\x51\x9f\x4a\x9c\x31\x8f\x2e\x8d\xe7\x64\x39\xe3\xb7\xfd\xa8\x63\x01\x6d\xfe\xec\xd5\x05\xf2\xa2\x43\x42\x17\x7f\x54\xb1\x1e\x3d\x1a\x03\x21\xe0\x51\xc7\x02\xda\x44\x9a\x7f\xd4\xb1\x1e\xb3\x9a\x69\x3d\x7a\x54\xb2\x80\xa0\xd1\xab\x4a\x16\x10\x34\xba\x55\xc9\x7a\x2c\x24\x5e\x93\x34\x67\x6b\x16\x69\xaf\x5e\x3e\x2a\x5e\x8f\x59\xa4\xcd\x3f\xf3\xa8\x78\x3d\xfa\x2f\xac\xc8\xfa\xa8\x78\x01\xa9\x99\xdb\xec\x51\xf1\x02\xda\x1c\xce\x42\xa6\x14\x4d\xf5\x1c\x53\x8f\xee\x8b\x47\xf7\x85\x89\x10\x1e\x95\xb1\x47\xf7\xc5\x70\x24\x32\xe5\x5c\xb5\x47\x06\x7f\xd4\xcf\x80\xd8\x66\x74\xa1\x7e\xf6\xe8\xbf\x30\xe7\xe1\xa3\xb6\xf5\xd4\xc3\x01\xdb\xc9\x81\xbf\x42\x5b\x0c\x45\x7d\xeb\x39\xe9\xa1\x11\xae\x1f\xf5\xad\xe7\x78\x26\x38\xcf\x1e\x3d\x13\x40\x9b\xdd\x66\x32\x40\xc7\x84\xc9\x67\x1f\x55\xb0\xc7\x8b\xf5\x26\xa9\x7d\x54\xc1\x1e\x9d\x15\xf5\xe7\xf0\xe4\x00\x41\x60\xa5\xca\x78\x75\xb0\x47\x6f\x45\xfd\x39\x3c\x59\x50\x8f\x80\xcc\xb3\x6a\x61\x4f\x3b\x96\x07\xc6\xa2\xca\xf5\xa8\x72\x59\x22\xf3\xd1\x5b\x01\xc4\xb3\xbc\x4f\x35\x0c\x68\xde\xee\x7c\x54\xc3\x1e\xd5\xb0\xca\xff\xe1\x51\x0d\x03\xda\x3a\x4f\xba\x2d\x74\x60\x9c\x81\xc8\x27\xc3\xbc\xac\x53\xf4\xa8\x99\x3d\x47\x33\xfb\xd9\x83\x93\x6d\x9e\xfb\x5d\x9a\x93\x3d\xde\x0a\x77\xad\xba\xd9\x73\xbc\x15\xcc\x41\xd5\xec\xd1\x5b\x61\x5e\xb2\x47\x6f\xc5\x63\xfe\x69\x6b\x37\x3e\xba\x2b\x80\x74\xf2\x6c\x3d\xaa\x6b\x40\x22\x8f\xd7\x7f\xfe\xde\x1f\xb5\xb9\x47\xd7\x85\xd9\xc6\x1e\xb5\xb9\x47\xd7\x85\xd7\x06\x1f\xef\xf3\x3f\x27\xa3\xb4\x07\xa0\xf7\xf9\x9f\x93\x51\xda\xa3\x5d\x35\xed\x39\xa9\xa2\xdd\x5d\xde\x9d\x00\x52\x57\xb8\x7f\xbc\x3b\xf1\x9c\x5c\xd1\xd3\x67\x5d\xaa\xbf\x5c\xd1\xf4\xab\x3a\xf7\xfc\xe5\x8a\x66\x9a\xaa\x6e\xcf\x40\x3d\xe6\xef\xf6\x98\x03\x1a\x48\xa5\x9f\x2e\xdc\xad\xa8\x73\xc5\x6a\x26\x8f\xea\x1c\x10\x3b\xc4\x2e\xdc\xad\xa8\x73\x43\xc7\xf9\xa3\x08\x01\x14\xd3\xa6\x3d\x4a\x10\xc0\xfa\x79\xda\x2b\x40\x00\xcb\x24\x89\x8f\xd2\x02\x50\x0c\x27\x7e\x14\x16\x80\x75\x4e\x0d\xe5\x02\x60\x99\x37\xf1\x51\x04\x78\x34\x00\x6b\xff\x7e\x34\x00\x03\xd5\x68\x80\x47\xa9\x00\xa8\x06\x5b\x3d\x06\x87\x00\xf1\xa4\x6f\x73\xb0\x5e\xc1\xf4\x4f\xa7\xec\x00\x84\xee\xcd\xd4\xb5\x08\x03\x41\xb3\x9d\xc3\x3d\xf1\xe6\xee\x53\x2d\xc2\x8f\x71\x20\x9a\x6b\x1f\x4d\xc2\x40\xb4\x63\x5e\xca\x1d\x40\xd0\xe0\x88\x82\xc7\x63\x0e\x1f\xe3\x45\x5e\x23\xd3\x5f\x23\xd3\x35\x13\xbf\x0a\x23\xef\x31\xff\xb2\x23\x5e\xcd\xbf\x40\xd5\x75\xf5\x6a\xfe\x05\x62\x28\x05\x5a\x93\xd6\xa4\x65\x68\x5d\x5a\x47\xbf\xb7\x87\x21\xe9\x70\xc0\x1e\xa6\xb4\xe9\xa3\x09\xda\x92\x46\x28\x14\x66\xf2\x57\x49\x04\x08\x8d\x9a\x91\x28\x62\xbc\x27\x3f\x0f\x86\xc8\x57\x11\x03\x68\x66\xcd\x7b\x15\x27\x5e\xcb\x7f\x7a\x43\xf6\x55\x9c\x00\x9a\xd9\xc7\x5e\x8d\xb5\x40\x3a\x32\xdb\xab\x84\x01\x84\x66\xcb\x80\x0d\x44\x7f\x4d\xda\xd3\x58\xed\x57\x03\xee\x6b\xd2\x1e\xaf\xaf\xbd\x4a\x22\xaf\x61\xe7\x4e\x42\xa1\xe3\x35\x41\x4f\xe3\x37\xfc\x6a\xd4\x7d\x2d\x00\xda\x9a\xed\x3e\x69\xfa\xb5\xb0\xb4\xbd\x0a\x22\x6f\x3e\x3a\x3b\x33\x53\x10\x79\x8d\xcb\xa8\xd8\x92\x5f\x0d\xc2\x40\x3c\xcb\x34\x14\x4e\x80\x66\xbe\xab\x57\x39\xe4\xcd\x47\x67\x67\xc4\x0a\x22\x40\x33\x53\xd6\xab\x1c\xf2\x1e\xf3\xaf\x03\x71\xae\x27\x3c\x9d\xef\xe4\x55\xe4\x78\x8d\xa2\xd0\x4c\xfc\x2a\x73\xbc\xf9\x68\xac\x4c\xcc\x88\x09\x20\x65\xa3\xe7\x5f\x65\x8e\xd7\x90\x09\x03\xef\x5f\x05\x0c\x20\x9e\x65\xc4\x0a\x18\x40\xea\x26\x14\x7b\x15\x26\xde\x72\x8c\x2a\xd2\x5c\x33\xad\xb8\xfa\x27\x5f\x03\x24\x5e\x03\x24\xbc\x03\xf0\x2a\x60\xbc\x06\x99\x5b\x44\xea\x55\x98\x00\x9a\x05\xda\x5e\x05\x07\x20\xa6\xc6\xee\x51\x70\x00\xe2\x75\xb0\x45\xc9\x01\x68\x16\xde\x7a\x15\x1c\xde\x7a\x66\x0b\x07\x14\x1c\x5e\x03\xca\xbd\x86\xfa\x1a\xf8\xf0\x1a\x3c\x6e\xfc\xda\xab\x30\xf1\x9a\x52\x55\x79\xe5\x55\x98\x00\xa2\x1d\x4b\xab\x90\x00\xa4\xa9\x7e\xfe\x2a\x25\xbc\xc7\x50\x3b\x7d\x9f\x33\x3b\x86\x5a\x3f\x6e\xa5\x84\xf7\x18\x6a\xf9\xf5\xbc\x4a\x04\x40\x1a\xde\xb3\x78\x95\x08\x80\x78\x96\x7e\x95\x08\x80\xd4\x7f\x43\x9a\x73\xc3\x2e\xab\x3b\xf2\x55\x48\x78\xcf\xbd\x4b\xce\xa8\x57\x21\xe1\x35\x18\xdc\x88\xde\x57\x21\x01\x88\x76\xd2\x5c\xdc\xa6\x0d\x80\x3f\xcf\xab\x48\xf0\x7a\x41\xd3\x38\x87\x57\x99\x00\x08\x1a\xd3\x55\x26\x78\xdb\x31\x65\xb0\xb8\x5a\x6b\x81\x68\x07\xeb\x35\xd7\x02\xd1\x4e\x9a\x6c\xf1\xda\x66\x99\x8e\xd9\x5d\xd0\xd4\xe7\xe6\x7f\xff\xd7\x5f\xa5\x0d\x20\x24\x3f\xdf\x22\x23\xbd\xd5\x69\x54\xee\xab\xb8\x01\x34\xa5\x88\xd7\x08\xf2\xd7\xfc\x41\xfc\x4a\x5f\xa5\x04\x20\xb6\x0d\xbc\x55\x4a\x00\x52\xd6\xb3\xf9\x6a\xf3\x05\x52\x36\xee\xf3\x35\xc0\x01\x68\x26\x59\x7a\x0d\x70\x00\x52\xf6\x42\xd0\xab\x69\x18\x68\xc6\x3c\xbc\xca\x1c\x40\x3a\xa5\x56\x5f\x65\x0e\x20\x8d\xec\x37\xa2\x05\x19\x88\x5e\x19\x9d\x26\x64\x20\x68\xb4\x53\x36\x01\xa2\x5b\x69\xee\x10\xca\x58\x58\x69\xeb\x55\x34\x01\xe2\x51\x69\x6e\x90\xa1\x49\xc1\xd3\x44\x31\x04\x48\xd9\x74\x72\xaf\x59\x5f\x81\x68\x07\xf3\x94\x4d\x80\x78\x1f\xb3\x55\x0e\x01\x82\x06\x57\x94\x43\x80\xd4\x53\xf6\x7d\xb2\xc0\x4a\x09\x5e\xda\x7c\x35\x2b\x03\xa1\x15\x3b\x16\x59\x30\x0e\x0b\xa0\x69\x56\x7e\xad\x96\x69\xe6\x9d\x57\xb3\x32\x10\x63\xe6\x7d\x9a\x95\x81\x78\x96\x7e\x35\x2b\x03\x71\x3a\xf1\x6d\x9a\x3f\x08\x88\x67\xed\xc3\x33\x61\xca\x17\x4f\x54\x4d\xcd\xaf\xa6\x66\xef\xe1\xbf\x9a\x9a\x81\xd8\x2c\xbe\x4f\x5e\xcd\xc3\x2b\x69\xf2\x6a\x12\x89\xe8\x41\x6e\x4e\x21\x20\xba\x85\x7d\x5a\xa4\x5f\xcb\x65\xaa\x66\xbf\x5a\x95\x81\x94\x0d\xb8\x7e\x35\x21\xbf\x96\xb7\x34\x34\xf9\xd5\x84\x0c\xa4\x71\xbe\x57\xd3\x0a\x01\xd1\x0e\xb6\x78\x19\x02\x48\x59\x2f\xfd\xab\x59\x19\x08\x1a\x43\xf6\x3a\x04\x10\xcf\xc2\x02\xaf\x43\xbc\xeb\x18\x3d\x7c\xd6\x79\x68\x7e\x36\x10\xfb\xd5\xfc\xfc\x6a\x7e\x36\xae\xfb\xf5\x8e\x04\x10\x34\xe6\xab\x49\xfa\xb5\xc6\xa5\x62\xe5\xab\x49\xfa\xd5\x24\x6d\xfc\xc1\xab\x49\xfa\xb5\xc6\xa5\xf7\x04\x5e\x4d\xd2\xef\x75\xf8\xc2\xf2\x6a\x92\x7e\x35\x49\x1b\xec\xfe\x6a\x92\x7e\x35\x49\x1b\xec\xfe\x7a\xbf\xe2\xb5\xc8\xa5\x71\x0f\xaf\x66\xea\xf7\x3a\xbc\x82\x07\x9a\xa9\x81\x10\x8f\x18\x8b\x66\xea\xd7\x0b\x16\xfa\xf5\x5e\xcd\xd4\xaf\x66\x6a\xf3\xca\xbc\x5e\x85\x7e\x2d\x68\x69\xe4\xc3\xab\xe9\xfa\x35\x05\x91\x81\xec\xaf\xb6\x6b\x20\x9d\x5c\xec\xaf\xb7\x2e\x80\x54\x52\xf3\x7d\xf2\xea\xd2\xb4\xa2\xd0\xa4\xf9\x1a\x68\xd3\x9d\x6b\x70\x13\x10\xcd\x78\x9d\xc1\x4d\x40\x2a\x49\x36\x1b\xdc\x04\x44\x3b\x9f\x95\x05\x24\xb5\x9d\x6e\x5c\x0d\xdf\x40\x34\x93\x26\x07\x6e\xfd\xef\x8a\xaf\x06\x34\x01\xa9\x24\xe5\x32\x8d\xe1\x40\x9b\x7e\xa7\xda\xc2\xdf\x5b\x1f\x6f\x93\x26\x03\x6e\x0d\x30\xd5\x47\x65\xc0\x2d\x03\xaa\x23\x96\x01\x26\x25\x3a\xff\x4b\xc3\x97\x80\x68\xe7\x6c\x65\x8a\x76\x74\xc3\x4b\x5e\xed\xe8\x40\x7c\x1c\x3c\xab\x21\x1d\x88\x67\x19\x8b\xf1\x4b\x40\x9b\x9e\xa4\xda\xd6\x81\x68\xc6\x3a\x6a\x5b\x07\xe2\x18\x61\x4f\x79\x49\xe3\x35\x53\x51\xaa\x76\x2b\x57\x4c\x4b\x94\xaa\xed\xe4\xca\x63\xa4\x02\x0a\xd7\xab\x71\x1d\x48\xc3\xba\x64\xaf\xd6\x75\x20\x9e\x75\xc8\xb2\xca\xcb\xd2\x16\xd9\x7b\xbd\xcc\xf1\x3e\x67\xaf\x38\x3e\x59\x75\xc2\xa6\xdc\xcb\x5e\xe6\x00\xa2\x9d\x73\x93\x55\x8f\x61\xa5\x18\x27\x5f\x63\xa9\x5e\x63\xa9\x0c\x70\x7f\x8d\xa5\x02\x82\x46\x1f\x06\x53\x01\x41\x83\x7d\x9a\xfa\x81\x36\x3d\x0a\xb4\xf4\x03\x71\xaa\xff\xc3\x8d\xf5\x57\x47\xc0\x6b\x00\x96\x29\xff\x5f\x1d\x01\x40\xd0\xe0\xa4\x9e\x00\xa0\x4d\x3f\x6c\x03\xb0\x80\x68\xe6\x08\x64\xee\x6b\x24\xa6\x8b\xaa\xf5\x1f\x88\xc1\xc3\x5c\xad\xff\x40\xd0\x6c\x27\x73\x31\xff\x17\x7d\x46\xaf\xe6\x7f\x20\xde\x27\x83\x64\xee\x6b\xc1\x2d\xb5\x37\xa3\xbc\x80\xa0\xb1\xaf\x35\xff\xbf\x26\x47\xd2\x0a\xf4\x6a\xfe\x07\x82\x66\x3b\x19\x69\xc2\xa4\x7a\x9e\x95\x93\x56\xa2\xa8\xce\x4d\x7d\x1e\x68\x56\x4a\x7f\xd5\xe7\x81\x68\x26\x4d\xb6\x90\xbf\xb7\x54\x7f\x67\x6a\xf4\x40\x4c\x83\x3d\x62\x3c\x18\x10\xcf\x4a\x93\x05\x5b\xa3\x57\x96\x26\x0b\xb6\x46\x2f\x45\x09\x03\xc2\x80\x78\x96\x55\xf3\xaa\x39\x10\xd3\x60\xdf\xe8\x27\x00\xa2\x9d\x34\x59\xf0\x1d\x16\xc0\x66\x8d\x04\x40\xf4\xc1\x74\xb5\x12\x00\x41\x63\x89\x34\x13\x00\x31\x0f\xc6\xa2\x99\x00\x88\xf7\x31\x5f\xed\x04\x40\x8c\xc5\x3e\xe4\xcb\x27\x5f\xdc\x1a\xda\x0e\xde\x8f\xc0\x55\x3f\x63\xcd\x04\x40\x3c\x0a\x4b\x35\x13\x00\x71\x1a\x31\x5d\xcd\x04\x40\x2a\x56\x8a\x79\x8d\x1c\x03\xd2\x49\xbf\xfd\x6a\x3a\x00\xd2\xc9\xaa\xb4\x35\x1d\xec\x9f\x06\x26\x76\xdf\xd6\x74\x00\xa4\x93\xd2\x7e\x6b\x3a\x00\xd2\xc9\xca\xbd\xb5\x1d\x00\xe9\xe4\x5f\xda\xda\x0e\x80\xa0\xfd\xa0\x75\x69\xc7\x8e\xb6\xa0\x0d\x69\xc7\x50\x36\xa0\x2d\x69\x26\x1a\x65\x37\x6f\x7d\x1b\x40\x1a\xd6\x3f\xdc\xfa\x36\x80\x54\x54\xb2\xb7\x16\x05\x20\x8e\x32\xc7\xf2\x4a\x93\x2f\xdd\x67\xb7\x34\xa5\x3d\x44\xa2\x6d\x40\x19\x10\xed\xa0\x69\x8d\x00\x82\x06\x5f\x0c\x28\x03\x82\x06\xff\xb4\x50\x00\x41\x63\xcc\x3a\x41\x80\x54\xbc\x5e\xb4\x35\x5b\x00\x41\x63\x2c\x9a\x2d\xb6\x41\x66\xa6\x16\xdd\xda\x28\x80\xa0\xc1\x17\x6d\x14\x40\x6a\x15\x89\x77\x6b\xa3\xd8\xe9\xc4\x3e\xc3\x03\x83\xcc\x80\x66\xd4\xc8\xd6\x6c\x01\x34\x8d\x4f\x5b\xff\xc9\xb6\x12\x8c\xb5\x0b\xb7\xa6\x8c\xad\xff\x44\xed\x79\x6b\xca\x00\x9a\xb6\xa7\xad\x25\x63\xeb\x52\x31\xcc\x76\x6b\x51\xdc\x96\x6f\xa8\x92\x1c\xdb\x20\x37\xae\x43\xd3\x78\xb8\x35\x1e\xea\xb2\xd8\x0a\xed\x40\x1a\x9a\xb0\xb7\x42\xfb\x0e\x01\xbd\xe9\x52\xda\xca\xe2\x40\x31\x69\xfc\x56\x14\x07\x96\x45\x4b\xb6\x92\xf8\x3e\xc5\x1a\x1c\x87\x92\x38\x50\x94\x56\xb7\x82\xf8\xb6\x6e\xbd\x8e\xfd\xad\x20\x0e\xa4\x9e\xf9\x99\x6f\x05\x71\x20\x75\xef\x29\x6f\x05\xf1\x7d\xe2\x3b\x90\xa2\xb6\x42\xf7\x3e\xf1\x1d\x48\x97\x5b\xa1\x7b\x5b\xa3\x5e\x73\xd4\x56\xea\xde\x4a\xdd\xda\x6c\xb7\x52\x37\xd0\xfc\xb5\x6c\x0b\xa1\xed\x79\x74\x78\x5f\xe7\xda\xcc\x63\xb2\x70\xb6\xae\xcd\xa9\x5b\xef\xd7\xa3\xc0\x0e\xa4\x6a\xa9\xe2\x6d\x18\xc8\xb6\x46\xbd\x31\x80\x5b\x21\x1e\x68\x9a\x71\xb7\x32\x3c\xd0\x2c\x2c\xbd\x15\xe1\xb7\x22\xbc\x31\x7b\xdb\xc8\x10\x20\x7a\x90\x26\x53\x10\xeb\xbb\x7f\xa5\xad\x58\x0f\xb4\xb3\x99\x94\xea\x81\xd4\x53\xb7\x57\xf9\x74\xa4\xfa\xe9\xeb\xe4\xd3\x91\xea\x11\xb6\xb6\x52\xfd\x3e\x52\xbd\xbb\x4e\xa9\x1e\x88\xfd\xf4\x0f\x29\xe5\xb6\x42\x3f\xd0\xa6\xec\x56\xe6\x07\x62\x42\xd2\xdc\x6e\x0b\x1f\x82\xdf\x9f\x22\x3f\x90\x4e\xb6\x94\xad\xc8\x0f\xc4\x77\xcf\xaa\x28\xf2\x03\xf1\x3a\x06\xaf\x78\x0f\xa4\x72\x78\xa6\x78\x0f\x14\xeb\x14\x6c\xa5\x7b\x20\xcd\x81\xf8\xbc\x2d\x44\x01\xa4\x9f\x09\x31\xb6\x12\x3f\x10\x7b\xd5\x67\xe5\x23\xc5\xd3\x0c\x52\xdb\x0a\xfc\x40\x8c\xc4\xd7\xc9\x46\x05\x7e\xad\x6b\x5b\x81\x1f\x08\xf9\xd4\x76\xf2\xe9\xd2\xac\x39\x1c\xb1\x8c\xb2\x8a\x45\x1b\xf6\x21\xa3\x2e\x3d\xe0\xfc\xb1\xb6\x31\x2c\x40\xec\x55\xde\xa7\x66\x00\xc4\x1f\x8b\x7e\x95\xf8\xb7\x65\x2c\x90\xe4\xb7\x12\x3f\xd0\xd4\x68\xb7\x02\xff\xbe\x8f\xf0\x65\x0f\x32\x45\x81\x5f\x0b\xc3\x56\x92\x07\x8a\x35\x24\xb6\x82\x3c\x50\xbd\x47\xb8\x95\xe3\xf7\x9f\x1c\xcf\x2e\x57\x8e\x07\xaa\xbe\x84\xad\x18\xbf\xad\x50\x6f\x24\xdb\x56\x8c\xdf\xde\x42\x30\xce\x72\x2b\xc6\x03\x31\x7d\x5e\xa7\x18\x0f\x84\x9c\xc0\xea\x28\xc7\x03\xc5\x4c\x8d\x5b\x31\x1e\x88\x63\xd4\xd7\x39\xd7\xc7\x02\x93\xfe\x1f\x14\xe3\x81\xf8\xa7\xb1\x3d\x15\xe3\x81\xe0\x30\x3c\x51\x14\x07\x9a\xda\xdd\x56\x12\x07\x8a\x39\xe9\xb6\x82\x38\x50\x75\x92\x6c\xe5\x70\xe0\x14\x24\xdc\x8a\xe1\x5b\x31\xbc\x62\xbd\xd8\x8a\xe1\x40\x31\x87\xde\x56\xe2\x06\xe2\x1c\x65\x5a\x8a\xdc\x40\x33\x7e\x72\x2b\x52\xef\xd7\x50\x7a\x64\xe5\xad\xac\x0c\x34\xcb\xde\x6c\xc5\xe2\xfd\x9e\xd3\x91\x2d\xa2\x58\x0c\x34\x8b\x80\x6d\xa5\xe2\xfd\x1a\x5b\xe5\xd0\x9c\x14\x65\x29\x14\xd9\xb7\xf2\xef\x3e\x65\x29\x94\x36\x0c\x89\x01\x9a\x5e\xb9\xad\xf8\x0b\x04\xc3\x59\x7b\x45\xdd\x6d\xf4\x8b\x81\x8d\x5b\x51\x77\x1b\xfd\xa2\xcf\x77\x2b\xeb\x6e\xa3\x5f\x0c\xa8\xdc\x3a\xaf\xf6\x3e\xfa\x39\x5c\x52\xfe\x05\x9a\x26\xbd\xad\xa8\xbb\x15\x75\x93\x1f\xb5\x62\xed\xde\x47\x6d\xb2\x5b\x27\xb6\x4f\x29\x33\xbb\x75\x66\x1b\xb5\xdb\xe5\x52\xaa\xdd\x4a\xb5\x87\x4d\xba\xbe\xf6\x89\x7e\xf1\xa7\xaf\xa4\xbb\xff\xa4\x5a\x46\xa7\x54\x0b\xb4\x75\x1e\x75\xb2\x0a\xb5\x7a\x3e\xb6\x42\xed\x56\xa8\xf5\xfe\xed\x56\xa8\x05\xda\xe1\x93\x32\x2d\x10\xbd\x3a\x3a\x4f\xa6\xcf\xb4\x6c\x36\x73\xa9\xcf\x05\x09\xcc\x2c\x5b\x39\x77\x5b\x61\x5e\xe7\xca\x56\xce\xdd\xde\x90\x30\xda\x79\x2b\xe7\x6e\x2b\x5a\xf8\x9d\x2b\xe6\x02\xf1\x51\x3b\x38\xd9\x64\x85\x79\x77\xd8\xa7\x98\xfb\x59\x61\x5e\xb7\xfa\xe7\xa5\x89\xcf\x4b\x13\xca\x1f\x9f\xa2\xef\x77\x42\x78\x18\xf2\xa7\xf8\xfa\x1d\xf1\x15\x79\xe6\x53\x7c\x05\x9a\x41\x04\x9f\xae\xaf\xcf\x6a\xf2\xe6\x07\xfc\x94\x68\xbf\x23\xd1\x76\x69\x97\xb4\x4b\x7e\x16\x68\x5b\x1a\xd9\xa6\xba\x24\x66\xf1\xe9\x0e\x33\x94\xf2\x53\xd8\xfc\x4e\x6d\x8a\x21\xad\x48\x23\x49\x05\xfb\xe9\x53\xae\x04\x9a\xe5\xa7\x3e\xdd\x61\x9f\x25\xdd\xf5\xd1\x7f\x8a\x9a\x40\xaa\x26\x7a\xfb\x14\x35\xbf\x73\x9f\x01\x79\xe6\x53\xd4\x04\xda\xe4\x1b\xfb\x94\x34\x81\x68\x06\x4b\x14\x35\x81\xa0\x31\x57\x65\xcd\xcf\x58\x1d\xfd\x7c\x9f\x72\x25\x90\x4e\x56\xb1\x4f\x77\x18\x50\x56\xff\x87\x9b\xec\x9f\x8e\xb1\xcf\x0b\xcb\xca\x9d\x9f\x8e\xb1\xcf\x0b\xcb\xba\x99\x3f\xa3\x76\x3e\x2f\x2c\x7b\x2a\x7d\x7a\xcb\x3e\x2f\x2c\x1b\x62\xf0\xe9\x2d\x03\x52\xf7\xa6\xe7\xe7\x05\x0a\x20\x0d\x63\xb2\x3e\x5d\x68\x9f\xc5\x2b\x54\xe7\x3e\x7d\x68\x9f\x57\x28\xd4\xd3\x3e\xaf\x50\x7c\x5e\x62\x36\x16\xe3\x33\xe4\x07\x08\x1a\x6b\x65\xc8\x0f\xd0\x0c\x45\xf8\x74\xbf\x7d\xba\xdf\xfc\x03\x7d\xba\xdf\xbe\x73\x89\x99\x13\xec\x33\xe4\x07\x68\x4a\x68\x9f\x1e\xb9\x4f\x8f\x9c\x2a\xc0\xa7\x47\xee\xfb\xab\x6d\xc8\xa3\x86\x01\x7d\x86\x01\x59\x56\xe8\xd3\x4b\xf7\x19\x06\x64\xb9\xa9\x4f\x2f\x1d\xd0\x26\xf6\xc5\xcf\x28\xa0\xaf\x1c\xbd\xd7\x2e\x64\x9e\x51\x40\x15\x31\xf3\xd3\x71\xf7\x19\x05\x54\xcf\xf0\x64\x5e\x51\xef\x2d\x76\x2b\xf3\x8e\xe3\xce\xbd\xaf\xe3\x0e\xa8\x66\x0b\xf8\x74\xdc\x01\xb1\xf5\xe1\xbb\x8e\x3b\xa0\x9d\x91\xe8\xa4\xfb\xea\x11\x78\x69\xa6\x43\xee\xab\x67\xb2\xbc\xce\xfb\x15\xdf\xa9\x9a\xc1\x1f\xfd\xd3\x49\x07\xc4\x09\xc6\x92\xe9\xa4\x03\x62\x74\xac\x85\x11\x3f\x9f\x11\x3f\x66\xb2\xfb\x4c\x05\xf5\x59\x4a\x43\x3d\xe0\x33\x0a\xe8\x33\x0a\xc8\x70\xc0\x4f\x07\xdf\xe7\xfd\x64\x45\xc4\x4f\x07\x1f\x50\xbd\x16\xfa\xe9\xdf\x03\xda\x59\x0a\xdd\x7b\x9f\xee\x3d\x6d\x1a\x9f\x41\x40\x40\xcc\xd6\x91\xc8\x14\x83\x80\x12\xa2\xda\xa7\xcb\xef\xf3\xca\xb2\xf6\xe4\x4f\x97\x1f\x10\x12\xa7\x34\x39\xd5\x48\x95\x52\x25\xc9\x28\xdc\x7b\xdd\x8a\xf3\x9f\xee\xbd\xaf\x9d\x6f\x8a\x49\x18\x04\x04\xc4\xf0\x18\x8a\x2e\xbf\x4f\x57\x9e\xf1\x06\x9f\xae\xbc\xef\x64\x71\x92\xc9\xba\xf2\x80\x50\x0e\xe0\x80\xae\xbc\x4f\x57\x9e\x57\x1b\x3e\x5d\x79\x40\x9b\xc9\xa1\xc8\x01\x13\xb0\xaa\xa5\x7e\xfa\xea\x80\xa0\xf9\x3a\x39\xd0\xfc\x56\x20\xe9\xaa\xfb\x4e\x02\x56\x3f\x3d\x7d\x75\xc0\x49\x82\xf3\x19\x2c\x04\xa4\x6a\xce\x87\xcf\x60\x21\xa0\x29\x0e\x7e\x5e\xf7\xf8\x4e\x9a\xd6\x61\x0f\xf2\xa4\x6b\x9a\xf5\x4c\x31\xa6\xe8\x23\x27\xeb\x44\x96\xfa\xf4\xf2\x01\xd1\x83\xcd\x64\x09\x5e\xbe\xe9\x41\xaf\x97\xef\xf3\x1a\xb3\xb5\xef\x3e\xbd\x7c\x40\x9b\xc3\xf1\x3a\xfb\x7e\xd6\x9a\x7d\xa2\xf7\x0e\x08\x1a\xbd\xea\xbd\xfb\x8c\x2c\xaa\x9e\x32\x7a\xef\x3e\x8b\xd0\xbb\x13\xf5\xd4\x7d\xa7\x90\x3c\xa6\xb9\x4f\x4f\xdd\x67\x21\x79\x3f\x4f\x1d\x75\xdf\x29\x24\xef\x0f\x41\x33\xc0\x67\x10\x91\x8a\xc4\xa7\x1d\xe0\xd3\x0e\xa0\x22\xf1\x69\x07\x00\x82\x66\x17\xce\x02\xa7\x5c\x51\x33\xfb\x34\x04\x00\x69\x5a\xa3\xeb\x53\x39\x06\xda\x39\xf1\xd5\x8d\xbf\x73\x6d\xc2\x43\x4b\xdd\x18\x68\x1a\xa5\x3e\x55\xe3\x4f\xd5\xd8\xf8\x9d\x4f\xd5\x18\x88\x05\xf3\x51\x19\xb0\x3c\x02\x61\x9d\x7a\x30\x10\x2b\x61\x33\x19\xb0\xfc\xd8\xfd\x76\x54\x70\x81\x34\xcc\x6c\xf6\xa9\xb8\x02\xed\xfc\xb6\xd4\x38\x81\x34\xce\xd9\xae\xca\xf9\x9d\x8b\x0f\xbe\x4e\xf5\x12\x88\x6e\xa5\x39\xba\xeb\x98\x95\x18\x8a\xea\x25\x10\x3a\xe2\xef\xff\xfd\xef\xfe\x21\xff\x08\xa9\x73\xb6\xed\x1f\xb2\xce\xfe\x59\xd2\x0b\x23\xc2\xfe\x21\xb0\xec\x9f\xa1\xc4\xfc\xa2\xf6\x0f\xd3\x9a\x10\x34\xdb\x6d\x69\x5b\xda\x0a\x5a\xf2\x7d\xc8\x18\x1d\xeb\xe7\xfe\x21\x4f\x08\x41\x5b\xff\xf9\x67\xdf\x3f\x64\x8b\xfd\x4b\xbe\x3a\xfe\x4d\xfb\x97\x1d\x3e\xe1\x32\x1d\xf1\x75\xff\xb2\xdd\xf1\xb7\xef\x88\x65\xfb\xc7\x9f\x5d\x48\x9d\x9f\xce\xfe\xf1\x3b\xdd\x3f\xa3\x65\xab\xec\x28\xbe\xaf\xf8\xbe\xca\x50\x8b\xef\xb3\x92\x6f\xad\xb0\x88\x1f\xd1\xfe\x15\xa7\xde\x60\x47\xb5\x8f\x6a\x1f\x5d\x9a\x2c\xaa\xb6\x1b\x8c\xb9\x39\x0f\x4f\x35\x6e\x33\xec\x5f\xb3\x5d\xb3\xdd\x64\x1e\x1c\x4d\xfb\xc7\xe5\xb1\x8e\x72\xb2\x7f\x9c\x26\x42\xd0\x78\x96\x93\x43\x08\x1a\xcf\x76\xdf\x67\x4e\x66\x2c\xa6\xfb\xc7\x87\x2d\x04\x6d\x42\xf3\x7d\xf8\xdb\x3b\x59\x55\xf7\x6f\xb8\x34\x7c\xb2\x1d\xcd\x74\xff\x86\xbc\xc2\x3f\xde\x49\x91\xb9\x7f\xf8\x9a\x85\xd4\x49\xdb\xb4\x7f\xd3\x6d\x82\x39\xab\x37\xf9\x3c\x1d\xcb\x74\x2c\x85\xf7\x61\x58\xda\x3f\xac\x48\x9d\xab\x58\xfb\xb7\x7c\x76\xf9\x6c\x65\x7c\xcb\x67\x31\xc4\x74\xae\x30\xed\xdf\xe5\x7c\x2f\xfb\xed\xd2\x7c\x16\xe7\x66\x6f\xf2\xfe\x72\x8d\xb4\x6b\xa0\xb3\xec\xdf\xe5\xf6\xbc\x7c\x5f\x67\x6f\xdc\xae\x87\x19\x0c\xda\xe4\x7d\xb7\xfd\xde\x8e\x79\xc2\xbf\xdb\x67\x6f\x9f\x75\xdd\x1e\xe7\x81\x33\xae\x37\xd7\xe8\x71\x1f\x3c\xf2\x74\x31\xb7\x47\x5e\x59\xfb\x83\xcf\x71\xff\x1e\xfb\x7d\xec\xd7\x75\x7b\xdd\x7f\x68\xd9\xbd\xbb\x6e\xaf\x6b\x84\xfb\xa9\x77\x3f\xb3\xd7\xf1\xe1\x07\xea\xdd\x35\x7a\xdd\x2f\xe8\xb7\x1d\xb1\x62\xff\xb6\x7b\x77\xfb\xac\xdf\xcc\x76\x2c\x38\x5a\x3a\x69\x88\xf6\x6f\xcb\xab\xed\xfb\x5c\xcb\xed\x7c\xd1\x34\x3b\x4e\xc5\xfd\xfb\x7c\x1f\x8e\x91\x8e\x91\x70\xff\x3e\xf7\xcb\xe7\xfb\xfc\x66\x3e\xdf\x87\xe6\xd6\xbb\xdf\xcc\xe7\x1e\xc2\x1b\xd1\xb1\x0b\xed\x84\xf7\x40\x48\x9d\x82\x32\x3b\xa1\x56\x09\x41\xeb\xd0\x96\x34\xdf\xd7\x62\x6e\x09\x4b\xbc\x90\x3a\x19\x35\x77\xc2\x9a\xbe\x93\xf7\x07\xa8\xa6\xb1\x13\xba\xc6\x4e\xc9\x7e\x07\xfd\x12\x52\x27\xa4\x4e\x2c\xea\x4e\xd9\x7e\x91\xe0\x3b\x37\xcf\x77\xf2\x3c\x48\xc5\x76\x4b\x9a\xed\x10\x6a\x3b\xf7\x82\x76\x2a\x8e\xcf\xfb\xc3\xc4\xa8\xec\x54\xed\xc3\xa2\xda\xc4\x67\xec\xe4\x19\x91\x3c\x23\x88\x33\xd9\x09\x11\x71\x27\xc4\xc1\x4e\xcc\xcb\x4e\x88\x7e\x42\xea\x84\xd5\xec\x84\x50\x27\x04\x8d\x7e\x9b\xe3\x33\x3e\x8b\x98\x92\x9d\x9a\x3c\x20\x78\xaa\x63\x31\xdb\xa9\x39\x3e\xcf\x1c\x04\x98\x9d\x9a\xef\x6b\xa7\xa8\x0e\x63\x41\xa8\x11\x92\x95\xc6\x77\x22\x00\x69\xa7\xee\xb3\x95\xf1\x79\x96\x24\x43\x8d\x47\xe3\xd9\xe1\xdc\x3c\x4b\x06\xdf\x65\xf2\x2c\x49\x43\xbe\xf0\x5d\x26\x7e\xeb\x3b\x19\x7f\x73\xfa\xe5\x17\xbe\xd3\x74\x1e\x9c\x93\x69\xfa\x3e\x4d\xed\xc3\x75\xf3\xcc\x49\x9e\x39\x63\x30\x16\xcf\x1c\x20\xf5\x31\x7d\xd6\x3e\xbc\x4a\x89\x85\x6c\xa7\x69\x1f\xcb\x3e\x5c\x5f\xcf\x21\x20\x75\xbc\x48\x3b\x2d\xfb\xe5\x2f\x3e\xcf\x58\x96\x6b\xae\x35\x9b\xea\xfc\x3b\x2d\xdf\xc7\xaf\xb8\x93\xb5\x68\xa7\x4b\xde\x5f\xa7\xc0\x07\xed\x3c\xaf\x80\x68\xc7\xde\xbd\x5c\x5f\xec\xb0\x9d\x58\x84\x9d\x3c\x9b\x92\x67\x13\x62\xec\x4e\xb7\xeb\x8b\x8d\xb4\x4f\xbe\xe9\x74\x3b\x66\x93\xc9\x4f\xf7\xc6\x6d\x1f\xb7\x7d\x64\xf8\x7c\xcb\x7b\xee\xfe\xf5\xe9\xde\xb8\xe5\xcb\xed\xbd\x99\x01\x5f\x3c\xeb\x12\x86\xcd\x3e\xf9\x5f\xa6\xc7\xf5\x7d\xec\xb7\xf0\xbe\xc7\xb9\x79\xae\x4d\xbe\xfd\xf4\xd8\x87\xe7\xda\xe4\x1f\x9a\x1e\xdf\x87\xb3\xbf\xcf\xca\xb3\x9e\x61\xc9\x33\x6c\xb6\xff\xf6\xba\xef\xf4\xba\xd4\xe6\x33\x99\x8d\x2d\xfb\xca\x36\x33\x25\x4e\x8f\x81\xd7\x6d\xfc\xda\x9d\xdb\xce\x63\x0f\x08\x1a\xcf\x6e\x59\xb4\x65\x91\x47\x83\xc7\x1e\x90\x3a\x7a\xec\x4e\xdb\x65\xfd\x5c\xd6\x41\x1f\x1e\x7b\xc9\x63\x6f\xba\xc5\x3e\xc7\xf7\x39\xbe\x09\x7b\x3f\xc7\xf7\x39\xbe\x49\x1f\x9f\xcb\xfa\xb9\xac\xa1\x75\xec\xac\xd4\x95\x95\xba\x26\xbf\xf1\x8c\xd5\x49\x88\xa5\xe9\xd0\xb2\x34\xfb\xe5\xf8\xc9\x38\x52\x85\xd4\x57\xc8\xac\x3b\x63\x75\x12\x82\x96\xa1\x5d\xd2\x1e\x69\xf4\xe1\x91\x99\x3d\x32\x29\x89\xb9\xb3\xd2\x59\x56\x3a\xe3\xe6\xc6\xce\x58\x76\x84\xd4\xa9\x4b\xb1\x33\x66\x9c\x9d\x75\x0f\xae\x4c\x1f\xf8\xfd\x76\xf6\x18\x25\x0b\xf1\xce\x1e\xa3\xd9\x63\x94\x2c\x6d\x3b\x67\xc7\x62\xde\x08\x32\x97\xed\x9c\xcf\xb3\x6c\x3b\x32\x73\xec\x5c\xe4\x81\xc7\x2d\x79\x2e\x76\xc6\xfc\x20\x04\x8d\x3e\x8a\xf3\x2d\xce\xb7\x31\x3e\x45\x32\x20\x68\x3e\xfb\x4a\xb3\xb8\x23\xbf\x92\xec\x11\x9c\x3d\x82\x31\x8c\xed\x8c\x46\x2e\x04\x8d\xf1\x79\x04\xe7\xea\xf8\xd8\x2f\xb9\x39\x3e\x14\xdc\xbe\x5c\xa3\x2e\x4d\x31\x0d\x75\x71\x67\x8f\x4c\x20\x68\x13\x9a\xe3\x43\x4d\x1b\x44\xc0\xef\xdc\x1d\x1f\x3a\xd9\x20\xc8\x7e\x67\x8f\x56\x20\x68\x8c\x65\x38\x16\xb4\xa3\x41\x38\xf1\xce\x8a\x64\x40\xd0\x18\xdf\x74\x2d\x09\x31\x1c\x84\x0e\xef\x3c\x1d\x0b\xc7\xe3\x20\xb2\x79\x67\x8f\x47\x20\x68\xf4\xbb\xdc\x1b\xcb\x7e\x0b\x63\x46\xc7\xd9\x99\x63\x6f\xfc\x5c\x23\xc5\xb4\xbc\x7c\x96\xdf\x78\xf6\x28\xcc\x6a\x2a\xd4\xd9\xd8\xf9\x72\x1e\xd7\xd9\xcf\x8c\xcf\xe3\x11\x88\x76\x3c\xeb\xf1\x08\x04\x8d\x76\xb7\xf3\x20\xca\x6b\xfc\x06\x63\xbe\x5d\x73\x8e\xb3\xf1\x1b\xec\x67\x45\x37\x20\x68\x8c\x59\x31\x2d\xdf\x8e\x85\x6f\x35\x7b\x9c\x01\x41\x83\x2f\x8a\x64\x59\x27\x0a\x55\xb6\x76\x7e\x9c\x9b\x71\x4f\x3f\xd7\xd2\xa3\x0b\x48\x23\xb9\x46\xaf\x3c\x25\x84\x67\x24\xd7\xe8\xb5\x5f\xab\x3a\x24\xbf\xa3\x2d\x4f\x39\x87\x06\xd9\xf9\x76\x56\xfc\x02\xd2\x48\x7e\x47\xdb\x7e\xb7\xef\x73\xdd\x3c\x9b\x32\xc6\xff\x91\xfc\xb6\x3e\xdf\xa7\x05\xdf\x5f\x5d\x56\xfc\x02\xd2\x48\x7e\x5b\x18\xc9\x85\x34\x08\x57\xdb\xf9\x73\x8d\xb0\x7e\x4f\x7f\x89\xc5\x73\x08\x08\x5a\x85\x96\xa4\x25\x9f\x95\xd6\xa5\x75\x69\x0b\xda\x94\x66\xbf\x88\xe6\x45\x8d\xb0\x18\x6c\x41\x2c\xd9\x2e\xd8\xab\x85\xa0\xc5\x1a\x95\x64\x1f\x04\x4c\x54\xd2\x68\xed\x82\xbd\x5a\x08\x1a\xcf\x62\xb0\x16\x82\x36\xa0\xd9\x2f\x9a\x63\x25\x07\xc8\x2e\x9e\x4d\x85\xb3\xa9\x72\xf5\x73\x17\xcf\x26\x20\x68\xc1\xbf\xa2\x1a\x08\xa4\x4a\x88\xdd\x2e\xd9\x31\x67\x9f\x75\x6e\x8a\x7d\xc5\x9a\xc0\xe4\xb9\xd9\xa5\xf8\xac\xc5\x7e\xcf\x3c\x3c\x73\x8a\x59\x15\x71\xda\xec\xe2\x99\x03\xa4\x49\xc8\xfc\x2e\x58\x1a\x85\x54\x31\xb5\xee\xe2\x39\x54\xb4\x20\x62\x18\xda\xc5\x73\x08\x08\x1a\x3c\x68\x3e\xdb\x7c\xd6\x35\x52\xc4\x03\x82\xc6\xdc\x9a\x63\x69\xce\x83\xbd\x5b\xba\xf3\xc0\x94\x55\x13\xff\x8f\xa2\x88\x57\xb4\x5b\xa5\xc5\x7c\x55\x2b\x0b\x06\xa9\x9a\x39\x9b\x4a\x97\x7f\x9c\x4d\x95\xac\xa1\xbb\x0c\x9f\x45\xec\xab\x99\xfd\x5c\x54\x21\xcb\xf0\x59\x44\xda\x82\x21\x48\x48\x35\xe7\xdf\x7f\xff\xee\x0b\x46\x21\x21\x1e\x61\x08\x4a\x8a\x40\xd0\x60\xd1\x74\xeb\x4c\x87\xe0\xf2\x4f\xb7\x27\x91\xd0\x35\x23\xad\x14\x8f\xbd\x82\x26\x5a\xb3\xcb\x3f\x5d\x1a\x22\x26\x2a\xd9\x2a\x76\x59\xbe\x6f\x99\x1b\x19\x4d\xa5\x28\x15\x02\x41\x63\x4a\x1e\x85\x40\x9a\xbf\xc9\x12\x2a\x15\x02\xd1\x8e\xb1\x2c\xfb\xc5\xde\x53\xb3\x9f\x05\xc1\x0b\xbb\x2c\xe7\xe1\x76\x22\xc4\x40\x88\xf7\xd9\x4e\x96\x23\x51\xd6\xcc\xf1\x58\x2e\x59\x6e\xec\x00\x51\x39\xbb\x5c\x6e\x1d\x0c\x39\xf3\x87\xf6\x52\x3c\x46\xcb\x25\xff\xdc\x8a\x97\x5b\x1b\x2f\x7e\xcd\x6e\xbb\xdb\xf9\xde\xbe\xcf\x2d\x76\x3b\xb7\xdb\x25\xe4\x18\x2d\xb7\xeb\x71\xcb\x2b\x8f\x0b\xb5\x5d\x20\x55\x2e\x04\xef\xa2\x04\x58\xac\xb5\x93\xdd\x62\x4a\x80\x40\xaa\xc5\xed\xf4\xc8\xfb\xc7\xcf\xc2\x6d\xfc\x38\x5f\xc2\x3d\x2b\x51\x8a\xbb\xbc\xce\xed\x3d\x73\x63\x7c\x1e\xb7\x05\xb1\xaf\x12\x31\xb9\xcb\x76\x1e\xe6\xb4\xc6\x14\xbe\xcb\x76\x7c\x44\x29\x56\x0c\xfa\xbb\x78\xdc\x02\xf1\x3e\xf6\xc1\x76\x2c\xd6\x6b\x2c\x1e\x17\x1e\xad\x40\xd0\xe8\x57\xb1\xaf\x98\x04\x8e\x8a\x4f\xbb\x78\xdc\x02\xc9\x04\x8e\xbb\x28\xf6\x01\xc9\xf4\x76\xbb\xa8\xed\x02\xc9\x1b\x84\xbb\x78\x04\x17\x73\x03\x70\xd1\x70\x57\x35\xdb\x8a\x66\x5b\x49\x1b\xb4\xab\x5a\x6c\x35\xf1\x18\xe9\x96\x76\xf5\x88\xab\x16\x87\x27\x4d\xc1\xae\x44\x67\xed\x9a\x9c\x07\xeb\x56\xf1\x75\x09\xa9\x12\x95\xbc\xab\xc7\x5e\xf5\xd8\xe3\xfa\xcb\xae\x8a\x69\x40\x9a\x54\x68\xdc\x15\x1f\x96\x10\xed\x7c\xdf\x23\xcd\x79\x70\xac\x54\x2d\x62\x40\xd0\x68\xa7\x56\x5c\x3d\x1e\x71\x24\xee\xca\x45\xee\x5d\xb1\x92\x55\xfc\x5f\xbb\xe2\x9b\x11\x52\x25\xa4\x73\x57\x9c\x33\xbb\xe2\x9c\xa9\x44\x92\xee\x5a\xe5\x01\x4e\x97\x4a\xd8\xe8\xae\x1e\x8f\x40\x8c\xb9\x40\x73\x7c\xd5\xf7\x71\x46\x54\xb5\xe2\xda\x7c\x1f\xbf\x8d\xaa\x06\x5c\xd1\x80\x2b\x66\xed\x5d\xd5\x80\x6b\xf3\x59\xb4\x97\xaa\x38\x57\xb9\xef\x5b\x2b\xbf\xbf\xda\xe5\x9f\xc7\x63\x65\x2d\x2b\x57\x75\x76\x35\xed\x12\x45\x1c\x76\xed\xce\xb7\xdb\x07\xdf\x7e\xd5\x12\x07\x04\x8d\xf1\x75\x79\xe0\xd1\x5a\xf9\x4d\x56\xc5\xbe\xea\xd1\xca\xbd\xb7\x5d\x3d\x5a\x81\x54\xa9\x24\xbc\xeb\x90\xcf\x43\x3e\x77\xde\x37\x7c\xdf\xf0\x7d\x7c\xe7\x75\xfa\xec\xf4\x59\xf7\x8b\xe7\x64\xf5\x4c\x24\xcd\xdf\xae\x9e\x89\x55\xab\x78\x75\xbf\x78\x26\xd6\xe5\x58\xd0\x94\xab\x5a\x71\xe5\x4a\x46\xad\xee\x17\x45\xbc\xaa\x88\x97\x50\x45\xaa\xe7\x55\xbd\xac\x84\xc8\x37\x5d\xb5\xc4\x01\xa9\x36\xd7\x97\x28\x21\x21\x68\x8c\x4f\xcd\xb6\xde\xd6\xe3\xe2\x9b\xae\x8a\x6e\xd5\x70\x1a\x92\x7f\xee\xfa\x38\x8f\xe7\xd4\xdd\xe7\xfb\x50\x74\x03\x52\xd5\xa2\x58\x3d\x73\xea\x63\x5d\x56\x54\x87\xfa\xfa\xec\xeb\xb3\xf2\xfe\xf5\xd9\xd7\x67\xe5\xbd\x16\xb6\x8a\x5a\x59\xb5\x32\xd6\x2d\x4f\xf7\xa9\xf2\x48\xbf\xaa\x95\x75\x9f\x5a\x63\xb6\x73\x3d\xb6\x73\x43\xf4\xad\x9f\xed\xbe\x53\x6c\x0b\x9e\x7a\x96\xd4\xef\x14\xc0\xb1\x9d\x7c\xf1\x8c\x68\x2b\xc6\xdc\x14\xc9\x9a\xc1\x07\x8d\xef\xad\xa9\x06\x02\xa9\x76\xbe\xb7\xa6\xca\x07\x04\x6d\x40\x7b\xa5\xbd\xae\x51\x82\xf6\x49\x3b\x39\x4a\xa0\xa9\x06\x02\x41\xab\xd0\xaa\x34\x63\xe5\x59\xa3\x46\xc0\x80\x10\xef\xa3\x5f\x2d\xf3\x40\xaa\xfd\x1f\xaa\xc7\xec\xa6\x51\xae\x65\xa3\xa4\xf8\x6c\x5b\xb6\xbb\x7c\x6e\x31\x30\x2c\x8f\x24\x20\xba\x63\x58\xb8\xd5\x77\x53\x62\x23\xd4\x6b\x37\xfc\xe0\xbb\x65\xa7\xc4\x96\x68\x6a\x89\x40\xaa\x9d\xcf\xb6\x79\xfc\x34\x8f\x9f\xce\xf2\x37\x7c\xbe\x42\xaa\x94\x83\xdc\x0d\x47\xab\x10\x34\x9e\x55\xea\x6a\x4d\x96\xf3\xf9\xb4\x66\x1f\x4d\x1f\x1d\x62\x41\x53\x12\x6b\x4a\x62\x84\x71\xed\xd6\xec\xb7\x39\x3e\x96\xbf\x29\x89\xb5\xe3\x41\xe4\x93\x6a\x1a\xf3\x5b\x77\xcc\x1c\x2b\x4d\x2d\xb1\x71\x17\xaf\x0e\x59\x8e\xe7\x4e\x08\x1a\xed\x94\xce\x1a\x17\xea\xea\x70\xf9\x35\xca\x35\x25\x31\x2e\x7f\xed\xa6\xa8\xd5\xd0\x26\x2d\xe0\xba\xdb\x70\x3d\xbc\xec\xa6\x61\xb2\x4d\xfb\x98\xf6\x81\x48\xd6\xd4\x30\x9b\xa2\x96\x46\xc8\xa6\xa8\x05\x24\x6b\x5a\xec\xa6\x86\xd9\x0c\x3a\x25\x08\x61\xb7\xe5\xb3\x88\x50\x5e\xf8\xde\x4d\xd1\x08\x48\x75\x20\x6a\xb5\xe5\x7c\x39\x56\xea\xe0\x37\xd9\xd4\x1c\x9b\xc7\x8a\x06\xc7\xa6\xc8\xd3\x2e\xfb\x45\x73\x6c\x1a\xd6\x9a\x01\x8e\x83\xe3\xb1\x79\xd4\x34\x8f\x9a\xe1\x5a\x2a\x06\x35\x2b\xa3\x53\x89\x77\x37\xb5\xce\x66\x65\x74\xb5\xba\x76\xcb\x3f\x45\xa3\x81\x34\xdf\xd4\x44\x9b\x55\x5c\xb4\xd4\x34\x35\xd1\x86\x61\xad\xaa\xed\x36\x35\xd1\x66\xe5\x71\x35\xae\xf6\xd8\x07\x91\x80\x55\x23\x64\x53\x84\x6a\x1e\x5d\x83\xdf\x5a\xd3\xfa\xd5\x3c\x92\xa6\xfb\xfe\x95\xa7\x18\xfd\xab\x86\xc4\xa6\xd1\x1f\x48\x55\x43\x62\x53\x34\x6a\x8a\x41\xd3\xf5\xdd\xce\xc3\x5a\x7f\x1a\x12\x9b\x5a\x27\x90\xea\xcc\x3e\xeb\x98\xd1\x30\xeb\xe4\xd7\xd9\x3e\xbf\x8f\xcf\xf7\xb9\x96\x1a\xf8\xdb\xe7\x58\xf8\x75\x76\xb5\x49\x20\x68\x0d\x5a\x96\x96\xa5\x0d\x68\x55\x5a\x95\xb6\xa0\x31\x8f\xee\xf1\x33\x59\xcb\xae\x15\xaa\xab\xd5\x91\x1a\x65\x77\x0d\xf7\xdd\x73\x03\x07\xf8\xee\x8a\x3c\xdd\x73\x43\x8b\x5d\x27\x44\x47\x48\x75\x22\x22\x77\xc2\x6c\x84\xa0\xf1\xac\xa2\x4c\x37\x69\xa8\xd6\xb9\xee\xb9\xd1\x71\xf8\xd5\xc9\x71\xdb\x15\x65\x80\x54\x17\xc7\x68\x27\x01\x8d\x10\x34\x9f\x75\x1e\x6a\x7a\x54\x99\xda\x5d\x4d\xaf\x13\x17\x52\x49\xfd\xbc\xbb\xa2\x4c\x57\xd3\x23\x11\xca\xee\x9e\x39\xdd\x33\x87\x10\xe3\xdd\x89\xda\xd8\x1d\x2b\x54\xd5\x12\xd7\xd5\x08\xbb\xe7\x10\x35\xbd\x76\xf7\x1c\xea\x9e\x43\x54\x1f\xd8\x5d\xf1\xa6\xab\xfd\x51\x43\x61\x77\xcf\x9c\xae\x78\xb3\x5c\x37\xc5\x9b\xde\x1d\x0b\x22\x6d\x57\x94\x01\xd2\xa4\xd4\xe6\xee\x8a\x2d\x5d\xb1\x85\xe0\xb6\xdd\x15\x5b\x80\xa0\x31\x16\x45\x94\xae\x2a\xb7\x5c\x4b\x55\xb9\x8e\xb5\xaa\x6a\x75\xeb\x1a\xfd\xbb\xe7\xcb\x72\x7d\xa7\x6b\xe9\x59\xc2\x8d\xc9\xdd\xa7\x63\x99\xf2\xd9\xf5\x9d\x8e\xc5\xf3\x65\xb9\xbe\x9e\x2f\x5d\xb1\x65\xb9\xbe\xaa\x68\x5d\xb1\x05\x1f\xfa\xee\x5a\xb0\xba\x67\xce\x72\xcd\x75\x34\x02\x41\xf3\xd9\xd3\x87\xf3\x75\x1f\x28\xf2\x74\xd4\xb1\xa6\x15\xaf\x7b\x0e\x01\x41\x83\xcf\xaa\x5e\x9d\x60\xe9\x46\x92\xc1\xdd\x3d\x5f\x80\x64\x6d\xea\xdd\x55\xb3\x3a\x22\x8f\x85\x06\x77\xbf\x5d\x37\x1c\x8d\x56\xab\xd9\xfd\xf1\xdb\x42\x0c\x32\x59\xf4\xee\x3a\x1a\xbb\x65\x98\x92\xef\xd3\xaa\x05\x24\xb3\x3b\xec\xae\xa3\x11\x48\xe6\xa8\xd8\xfd\x75\x1e\xaf\x63\x41\x34\xea\x9e\x39\x9d\xcb\x6a\x8d\x4a\xea\xbb\x6b\x71\xef\x5c\x42\x6b\xa4\x63\xd9\x5d\x8b\x7b\xdf\x8e\xa5\xfd\xf7\x35\xf9\xdd\x95\x9c\xba\xe5\x81\x7e\x18\xe4\xbb\x47\x0d\x90\x9a\x06\xbd\xae\xc6\xd5\x39\x6a\xda\x8f\x63\xb4\x6b\x68\x07\x52\x53\x73\xec\x6a\x5c\x9d\xe3\xa7\x91\xf0\x6d\x77\x25\x27\x20\x35\x8d\x77\x43\xc9\x69\xfc\x9c\x26\x7e\xd7\xa1\x31\x6b\xfc\x7c\x1f\x06\x90\xa1\x16\x36\x90\x9c\x9a\x52\xcd\xd0\x98\x35\xcc\x45\x92\x58\xd6\xa1\x01\x7d\x60\xb8\x6a\x14\x5d\xde\x43\xc3\x15\x90\x5a\xe2\xf3\x1e\x84\x50\xee\xe1\xcd\x1c\x97\x66\x28\x25\x0d\x34\xb8\x46\xe1\x8b\x3d\xd4\xe0\x80\xd4\x34\x06\x0e\xc5\xa0\x81\xb6\xd6\x34\x70\x0d\x8f\x2e\x20\x35\x8d\x59\x43\x03\xfa\x30\xb3\x17\xd7\x5e\xf7\xd0\x58\x3e\x10\x79\x9a\xc6\xbb\xe1\x31\x35\x8a\x7d\xa0\x81\x0c\x35\xae\xc1\x31\xd5\xb8\xbc\xbb\x87\x1a\x17\x90\x1a\xb7\x72\xf7\xd0\x37\x39\x2c\x00\xae\x81\x6b\xe8\x87\x1c\x66\x8e\xd2\x98\x35\x34\x8c\x8f\xe6\xfb\xf8\x4d\x0e\xc5\xa0\xd1\xec\x77\x4a\x73\xcc\xcd\x67\xd1\x30\x87\x1a\xd7\xe8\x3e\xcb\x27\x3a\x34\x48\x8d\x2e\x0f\xf8\x44\x87\x1a\xd7\xe8\xf2\x94\x4f\x74\x74\xd7\x4d\x2d\xec\xf0\x54\x8d\x6b\x20\x2e\xb5\x8c\x56\x32\x14\x97\x80\xa0\x31\x16\x45\x23\x20\x68\x3c\xab\xe1\x6a\x10\xfb\xd0\x72\xf2\x59\xd7\x0d\x71\xa9\x51\x3d\x6b\x0f\xc5\xa5\x31\x4c\x99\xc0\xf1\x3d\xd4\xb8\x80\xd4\xb4\x56\x0d\x35\x2e\x20\x68\xb6\x73\xcc\xd3\x44\x87\x19\x1e\x28\x2e\x01\xa9\x65\x3e\xef\xa1\x66\x06\x04\x8d\xbd\xa1\x91\x1e\x08\x1a\xef\xf3\xd8\x03\x82\xc6\x5a\x6a\xad\x02\x82\xc6\xdc\x3c\x0a\x07\x47\x61\xd3\xfa\x35\x3c\x0a\x81\xa0\xc1\x17\x35\xb8\xe1\x11\xa7\xb5\x6a\x28\x7e\x8d\xcb\x76\x1c\x03\x43\x11\x0a\x48\x8d\x92\xe1\x7b\x68\x49\x02\x52\xa3\xee\xe2\x1e\xfa\x21\x81\xa0\xf9\xac\xfc\xb3\x70\x1d\xe5\x58\xf6\xd0\xbf\x38\xac\x34\x47\x86\xe6\x3d\x3c\xba\x86\x47\x57\xf6\x9b\xe6\xbe\x82\x10\x34\xda\x79\x9c\x01\x41\xe3\x7d\x5a\x8d\x86\xc7\x19\x17\x87\xf7\xf0\x38\x03\x92\x99\x59\xf7\x50\xd3\x1b\xaf\x65\x33\x5d\x73\xcf\x2b\x20\x79\xcb\x60\x0f\x2d\x49\xc3\x04\x95\xc4\xc6\xee\xa1\x91\x1e\x08\x1a\x73\xd3\xba\x34\xb6\x35\x84\x38\xbe\xc7\xe7\xf8\x3c\xd7\x0a\xaa\xcd\x50\xfb\x03\x82\x46\x1f\x8a\x55\xc3\x73\xad\xb8\x46\x9e\x6b\xc3\x73\x4d\xeb\xd2\x54\xd4\x9a\x9e\x6b\x54\xea\xdb\x53\x83\x3c\x90\x1a\x75\x17\xf6\xf4\x0c\x9b\x9e\x61\x24\xa0\xde\xd3\x10\xad\xf9\xf3\x7d\xa8\x3b\x53\x83\xfc\xf4\x5c\x23\xb7\xd5\x9e\x9e\x6b\xd3\x73\x8d\x04\xf0\x7b\xaa\xfd\x4d\xcf\x35\x92\x7e\xef\xe9\xb9\x06\xa4\x46\xb2\xd7\x3d\x15\xd3\xe6\x29\x25\xc5\xfa\x4e\x45\xb2\x99\x7d\x16\xcb\xde\x34\x06\x0b\x48\x8d\x44\x2f\x7b\x7a\xae\xcd\xbf\x1a\x4c\x8c\x45\xe3\xfb\x34\xc5\x20\x77\x37\xf6\x54\x4c\x9b\x96\x94\x25\x74\x7f\x4f\xc5\xb4\x69\xa9\x58\xc3\xd4\xa6\x71\x18\xd3\xb3\x8e\x4b\xb5\x7b\x2a\x6a\x01\xa9\x19\x4b\x36\x3d\xd7\x26\x96\xa4\xa6\x25\x69\x7a\xae\x01\x41\x1b\xd0\x1c\x4b\xb3\x5f\xd6\x72\x7a\xd6\x59\xef\xbf\x11\x48\xb9\x2d\xe4\xbf\xa7\xe7\x5a\xc5\x22\x61\x81\xfe\x4d\xe5\xfd\xa0\xd9\x6e\x49\x83\x7f\x5a\x8d\xac\xa9\x2f\x04\x8d\xb1\x28\x6a\x01\x41\x83\xf7\xc6\x57\x4c\xcf\xab\xea\x1a\xe9\x18\x9c\x27\xf5\x35\xe7\xf3\x34\x6e\x02\x48\xa6\x61\xdf\xd3\x78\x08\x20\x91\xed\xe6\x7f\xf7\xd4\xf2\x33\x3d\x4b\x8c\x39\x9b\x9e\x25\x73\x99\x74\x62\xfd\xf7\x95\xba\x3d\xd5\xea\x80\x78\x84\xe5\x52\xab\x03\x52\x6b\xfc\x62\xe7\x25\x8b\xd0\xf4\x1a\x17\x94\xf7\xbc\xdc\x76\x84\x77\x35\xc3\xd4\x2c\xe3\xbf\xa7\xd5\x41\xa9\xf1\xb9\xad\xe3\xbf\x27\x57\xca\x1a\xb7\x8f\xf6\x54\x5b\xa3\xa6\x7e\x6a\x54\x26\xdc\x16\xd0\x17\x82\xc6\x58\x94\xb0\x4e\xbd\x79\x8d\x4a\x53\x69\x0a\x48\x4d\x03\x92\xc5\xe5\x85\xa0\xd9\xce\xa5\x26\xe7\x41\x33\x4c\x6d\x3e\xe7\x7d\x6c\x1d\x52\x68\xef\x69\x28\xd7\xf4\x48\x6a\x2e\xe1\xeb\xdc\x5e\xfb\xc5\x1f\x3d\x35\x78\xcf\xd7\x31\xbb\xac\x1e\x5d\xd3\x63\x4a\xe3\xd3\x54\xea\x9a\x1e\x53\x86\xb3\x59\x35\x7e\x5b\x0e\xbe\x35\x3f\x47\x35\x3d\xab\xba\x37\x8a\xda\xef\xb9\x7d\xdf\xf6\x7d\x58\x2e\xac\xc4\x2e\xa4\x46\x29\xf9\x6d\xdd\xf5\x4d\x8d\xf5\xa0\xd1\xc7\xe7\xfb\x3e\xf9\xe2\x96\xf0\x98\x02\x82\x66\x3b\x8f\x95\x4f\x1e\xb0\xe6\x56\x46\x17\x52\xa3\x3c\xcc\xb6\x0a\xba\x10\xb4\x0a\x6d\x48\x9b\xd2\x26\xb4\x47\x1a\x9f\x00\xf5\x12\xf6\x52\xac\x5a\x1e\x3f\x54\x4c\xde\x16\xf9\x16\x92\xe9\x85\xb7\x45\xbe\xf7\xe2\x12\x88\x99\x93\xb7\xa5\xba\xb7\x75\xb4\xbd\x7d\xba\xad\x99\xbd\x2d\x90\xdd\x0c\x49\xb3\xc8\xf5\x5e\x18\xb2\x5b\x47\x0a\xb6\x7a\xb5\x90\xa6\x7e\x48\x2b\x55\x0b\xd1\x8e\x7e\x15\xb5\xa8\x3a\x9d\x1a\x37\x67\xb6\xb5\xa5\x85\xa0\x75\x68\x55\x5a\x93\xc6\xb3\x6a\x84\x16\x88\x6e\x54\xf3\xdb\x56\x74\xde\xa7\xa2\x33\x95\xf1\xb6\xd5\x9b\x85\xd4\xa8\x04\xb8\xad\xc5\xbc\x29\xa8\x1c\x34\x9e\x55\x23\xb4\x54\x72\xa3\xcc\xc5\x5e\x86\x9e\x02\xa9\x69\x71\xb2\x2c\xf2\x5e\x66\xb0\x22\xb3\xf3\x5e\x1e\x5d\x16\x37\x6e\x86\xbd\x2d\x45\x32\x20\xb5\xe1\x5a\x2a\x92\x2d\x8f\xb3\xe1\x5a\x1a\xfb\x00\x04\xaf\x98\x9b\x9a\xe3\x42\x73\x9c\xe4\xaf\xdd\x6b\xc8\x67\xac\x55\x33\xb9\x1e\x1a\xbc\x81\x78\x1f\xfd\x2a\xa6\x01\xd1\x8e\xf7\x29\xa6\xad\x61\x1f\xfc\x26\x97\x62\xda\xc2\x59\x38\x15\x7d\x97\x47\x21\x10\x34\xde\xa7\x03\x71\x4d\xad\x3c\x7c\xab\xcb\xe3\x71\xcd\x33\x0f\xfa\x50\xeb\x04\x52\xd3\x72\xb6\xd4\x3a\x81\xa0\xd1\xaf\x47\x26\x10\xef\xe3\x59\xc3\xb6\x80\x34\xb8\xa1\xbb\x2d\x7c\x2b\xa4\xa9\x8f\x75\x19\x6b\x04\xa4\xa9\x28\x68\x2d\x3c\x21\x4d\x1d\x6a\x97\xe7\x1f\x90\x26\x29\xdb\xb7\x55\xb1\x36\xd5\xae\xd2\xe4\x8a\xee\xbe\x3c\xc3\x2e\x35\x42\x6e\xae\xed\x4b\xc3\xf8\x85\x33\x6e\xea\x98\xb1\x64\xd5\xa6\x16\x55\xd0\xe8\xd7\xb3\x89\xca\x53\x69\xfa\x9b\xb4\xcc\xd4\xbe\x38\x87\x26\xe9\x41\xb6\x05\xa4\x84\xa0\x2d\x68\xf0\xc5\x92\x4f\x93\x9c\x1c\xdb\xfa\x4e\xdb\xba\x4d\x93\x0b\xa3\xdb\x22\x4d\x42\x9a\x86\x61\x5f\x3a\xde\xac\xc8\x34\xb9\x23\xb4\xad\xbe\x24\xa4\x51\xe4\x8b\xe7\x90\xd5\x97\xa6\x0e\x9c\x4b\x11\xea\xf2\x6e\x61\x65\x6f\x58\x7d\x49\x48\xa3\x20\x4a\x5b\x7d\x69\x53\x69\x29\x4d\x1d\x3d\x96\x50\xda\x96\x4b\x9a\x86\x7a\xdf\x9e\x57\xb7\xf1\x10\x86\x7a\x5b\x2e\x69\x5b\x07\x69\x56\x44\x2d\x8b\x1e\xed\x53\x69\xc8\x5f\xb6\x55\x85\xb6\x15\x84\x66\x65\x1f\x58\x2d\x48\x48\xb3\xf6\x0c\xcd\x67\x51\xf9\xa6\xbf\xec\xdb\x58\x85\x3b\xbb\x1e\x88\xcd\xd6\xf7\x11\x82\x56\xa1\xf9\xbe\xec\xfb\x10\xa5\xad\xe6\x23\x04\x8d\xf1\x19\x6f\x65\x9d\x9e\xa9\xa3\xe7\xd6\x91\x67\x89\x9b\x49\xf1\xa6\x7d\x1b\xab\x70\xab\x1a\x1a\xea\x68\xed\x9a\x6d\xed\x9a\x59\xd7\x3f\x84\xea\x59\xc6\x46\x88\xd7\xc0\x4a\xb7\xf1\xed\xa5\x29\xf2\xeb\x6e\x4b\xd0\x08\xd1\x8e\xa1\x1a\x66\x65\xb9\x99\x69\xf4\xba\xe5\x66\xb6\xa5\x65\x9a\xc6\x54\x4b\xcb\x6c\xea\xc8\x44\x3b\x86\x5f\x65\x9b\x47\xa1\xe1\x30\x77\xb3\x5f\xee\x25\x4d\xae\x74\x6c\x4b\xc4\x08\xd1\x0e\xb6\x29\xc5\x59\x0f\x66\x92\xdf\x64\xdf\x1e\x99\x40\xb4\x63\x7c\xcd\xe5\xc2\xb0\x36\xf5\x67\x59\x10\x66\x53\xfd\x25\xda\x31\x66\x8d\x6d\xb7\x12\xa0\x91\xa4\x96\x84\x11\x82\xc6\xf2\xab\xed\x5a\x12\xa6\x0d\xf9\xa2\x51\xee\xee\x67\xcc\x8c\x4f\x49\x11\x08\x1a\xf3\xf5\xb8\xb5\x24\xcc\xe4\x82\xd9\xb6\x24\xcc\xb6\xfc\x4b\x1b\x1c\x03\xb7\xa1\x66\x40\xb2\x72\xfe\xbe\x75\x22\xdc\x26\xf9\x33\x5a\xd5\x92\x30\xdb\x5a\x2f\x93\x3b\x3c\xfb\xf6\x58\xbe\x3d\x96\xa9\x9d\xbe\xad\xff\x22\x24\x4b\xdc\x6d\x6b\xbd\x08\x71\xc4\xf9\xac\xe3\x1b\x8e\x0f\xad\xf8\x56\x42\xbd\x95\x50\xa7\x73\xf3\xa8\xb6\x00\xcc\xd4\xf7\x67\x11\x97\x6d\xc1\x96\xd9\xd0\xb8\x2c\xd8\xb2\x2d\xce\x62\x3e\xb1\x6d\x21\x96\x7d\xa3\x65\x4f\x7d\x84\x16\x62\x11\x92\x99\xbd\xb6\x05\x56\x84\x68\x27\x6d\x49\x5b\xb6\x63\x1e\x1e\xf3\x40\xb4\x63\xbe\xde\x58\xb0\xc0\xca\xa4\xaa\xf4\xb6\xc0\x8a\x90\xbc\x64\xb6\x2d\xb0\x22\x44\x3b\xf6\x81\xb1\x23\x56\x4e\x69\x93\xe3\xd1\xca\x29\x42\xb4\x63\x6e\x4b\x5e\xa9\x8d\x6b\x7c\xbf\x8d\x1d\xb1\x72\xca\x54\x54\xb5\x72\x8a\x10\xed\x18\x9f\x71\x22\x56\x44\x99\x8a\xaf\x56\x44\x11\xa2\x1d\x7c\x56\x93\xb7\xfa\xc9\xf4\xe6\xc5\xad\x78\x0d\x44\x3b\xc6\x6c\x3c\x89\x95\x4e\x26\xf5\x1a\xb7\x95\x4e\x84\xd4\x26\xc7\xa8\x95\x4e\x84\x68\xc7\x3c\xf4\xed\x02\xd1\x8e\x79\x5c\xee\x35\x8d\x9f\xf3\x8c\xcf\xf5\xbd\xe4\x29\x47\xb5\xd5\x4e\x84\x68\xc7\xf8\xfc\x75\x5a\xed\x64\x52\x50\x6f\xdf\x1a\x4e\xef\xdb\x3d\xc9\xef\xfe\xd6\xd2\x70\x6b\x69\x30\x1a\xd9\x0a\x28\x42\xd0\xe8\x43\x03\xab\xd5\x4e\xda\x44\xac\xbf\xb5\x3e\xdc\x5a\x1f\x8c\x50\xb6\x02\x8a\x10\x7d\x48\x73\x7c\xa6\x7c\x98\x1e\xfd\x3a\x70\x80\xa0\xd1\x87\xbf\x5d\xcb\x98\xcc\x76\xda\xb9\xbe\xaa\x0e\xd3\x5f\x84\x8e\x1e\x20\xda\xc1\x3f\x2d\x1c\x40\xd0\x7c\x9f\xe3\x7b\xe4\x1f\x9a\xfc\xad\xd5\x03\x48\x53\x15\xe3\x56\xc5\x00\x82\x46\x1f\xfe\xc6\xad\x6e\x32\x29\xae\xb4\xad\x64\x22\x04\x8d\x3d\xa4\xb1\xf7\xd6\x3a\x32\xfd\x7e\xb5\x8e\x50\x6f\x24\xda\xd1\xaf\x6a\x87\xc5\x45\x2c\x43\xbb\x6f\xd5\x0e\x20\xda\x31\x5f\x9d\x4e\x16\x12\x99\xe4\x50\xde\x16\x0d\x11\x82\xc6\x7c\x15\x0b\x80\x64\x26\xff\x6d\x35\x90\x6d\xe9\x8f\xd9\xfc\x75\x6a\x59\xb1\xcc\xc7\x54\x05\xba\x15\x1f\x6e\x2d\xc6\x86\x6b\xdf\x8a\x50\xb7\x22\x14\x79\x96\xb6\x65\x3e\xf6\x29\xf3\xe1\x6d\xa0\x5b\xcb\xf2\xad\x6a\xa3\xe3\xe8\x56\xa4\x00\xa2\x9d\x34\xf7\xd0\xe7\x1e\xf2\x37\xa9\x48\x71\xab\xee\x18\xfe\x6d\xe9\x8f\x7d\xab\xee\x4c\xfe\x29\xd6\xf4\xd8\xd6\xef\x68\x93\xf3\xde\x5a\x1d\xdb\xba\x1c\x53\x15\xcd\x7a\x1b\x42\xb4\xeb\xd0\x98\xdb\x29\xa4\xa1\xd3\xc9\xa2\x19\x42\x9a\xc6\x16\x58\x35\x43\x48\x4d\xa7\x93\x15\x32\xf6\xa3\x5a\xa4\xd3\xe9\xd1\x79\x66\x35\x8c\xc9\x25\xcb\x6d\x35\x0c\x21\xda\xd1\x87\x37\xe8\x4e\xe5\x8b\x36\xfe\xbb\x06\xdd\x7e\xbc\x60\xf7\xa8\x5d\xe9\xcf\xb2\x08\x86\x90\xcc\xe2\xbf\xad\x78\x21\x24\xb3\xc1\xed\x47\xc9\x04\x48\x4d\x7f\x96\x15\x2f\x84\x18\xc2\x80\x26\x8b\xb2\x79\x75\x31\xd0\x58\xca\x42\x88\x76\x0c\xdf\x88\x71\x20\xda\xb1\x0c\xfa\xf4\xac\x65\x31\x0d\xbf\xb0\x46\xc5\x3e\x35\x2a\x56\xf6\x59\xd9\xa6\xb1\x9c\xea\xdc\xdb\x3a\x13\xdb\xa2\x12\x8d\x52\xdc\xdb\x6a\x11\xdb\x2a\x10\xb3\x21\x7d\x3f\x46\x74\x3e\x1a\x95\x28\x28\xbe\x1f\x45\x9e\x47\xc9\xdd\x4b\x63\x56\x8b\x10\xd2\x30\x1c\xcb\x6a\x11\xfb\x31\x99\x73\x3b\x34\xfb\xad\x2e\x17\xa1\x20\x96\x68\x10\xd2\xf4\x22\x99\xe5\x18\x84\xa0\xd1\x87\xe2\x0d\x10\x34\xde\xd7\xe4\x7d\xf3\xa8\x21\x8e\xe0\x51\x6c\x01\x82\xc6\x98\xd5\xfe\xac\xa0\x30\xd5\xda\xad\x96\xb0\x2d\x8d\x30\xd5\xda\x2d\x8d\xb0\x2d\x83\x30\xd5\xda\xad\x69\x20\x04\x8d\x75\x53\x1c\xb1\xa6\x81\x89\xba\xf6\xa3\x81\xcb\x1a\x04\x53\xed\xde\x7a\x03\xfb\x41\x7c\x98\xdd\x7d\x30\x4e\xbb\x25\x8d\x3e\xf4\x1b\x5a\x48\x60\x7a\x59\xed\x51\x54\x00\x82\x46\xbf\x8a\x0a\x40\xd0\xe8\x57\x83\xfc\xa3\xa8\x40\x4a\xb7\xfd\x68\x90\x07\x82\x46\x1f\x1a\xda\x81\xa0\xd1\x87\x9a\xde\xa3\xa6\x47\x39\x9d\xfd\xa8\xe9\x3d\x6a\x7a\x5a\x10\x1e\x8d\xef\x8f\x06\x33\xb2\xb4\xee\x47\x11\xe0\x59\xa7\x5f\xc6\xa2\x08\xf0\x68\x44\x23\xb3\xec\x7e\x34\xc8\x03\x69\x92\x98\x6b\x3f\x8a\x00\x40\xd0\x18\xb3\x46\xfa\x47\x23\x3d\x59\x40\xf6\xa3\x85\xed\x59\xf2\xa5\x4a\x73\x1e\xcb\x79\xf0\x1b\x7a\xf4\x61\x02\xf1\x2c\xf3\x55\x54\x00\xa2\x1d\x73\x53\x2c\x78\xbc\xb8\x64\xac\xcc\x73\xb9\xbe\x97\x63\xe1\x97\xf3\xf8\xbb\x07\x82\xc6\xf8\xfc\xdd\x03\x41\x63\x2c\xfe\xda\x1f\x7f\xed\x64\xb9\xdd\x8f\xbf\x6c\x20\xda\xb1\x27\xfd\x65\x3f\xfe\xb2\x97\xdf\xaa\xbf\xec\xe7\x3e\x7d\x30\x3e\x35\x56\x20\x75\x2a\x23\xec\xc7\xc8\x7c\x20\x68\xbc\xcf\x18\x89\xc7\x8b\x91\x3f\xcf\x26\xb5\x53\x20\x4d\xe3\x7b\x1e\x7f\x61\x0f\xbf\xab\x4e\xea\xf9\x6d\x31\x0a\x21\xf5\x9f\x67\x8e\xda\xe9\xe3\x6d\xa0\x9f\x7b\xc8\x5f\x89\x25\x24\xfa\xcf\x3d\xe4\xaf\xc4\xe2\x10\x9d\xf4\x4b\xdb\xca\x0d\x42\xea\xa4\x43\xd8\x96\x55\x10\x62\x2c\x05\xda\x90\xe6\x77\xd4\x6d\x77\x49\xbb\xa4\x75\x68\xbc\xef\x4d\xee\x3f\x6e\xa9\xbc\xfe\x22\x5e\x7f\x11\x5a\x8d\xac\x7a\xb0\x2d\x67\x30\xb9\xe8\xbe\x2d\x67\x20\xa4\xfe\xe3\x57\xfc\x6a\xb8\x07\xa2\x9d\xef\x3b\x7d\x3c\xd2\x6c\xf7\x4a\x3b\x55\x56\x12\xb4\x2d\x4d\x9e\xb2\x6e\xd6\x24\x10\xd2\x34\x16\xea\xf5\xbf\x60\x01\x82\xfe\x73\x1e\xfe\x17\x5e\x35\x56\x2d\x58\x96\x1b\x10\xa2\x9d\xef\x73\x7c\x6a\xb1\x5a\xb5\x5e\xff\x0b\x40\xea\xbf\xe1\xb3\x8e\x2f\xbb\xff\x38\x4f\x4d\xf1\x2f\x44\x3b\xde\xa7\xb6\x6b\x8e\xff\x49\x4d\xb4\x6d\xa2\xfe\x4d\x6e\xfe\xa0\xf1\xac\xe7\xb3\x09\xf8\x27\x95\xc3\xf6\xab\x23\x14\x48\xdd\xb0\x64\x13\xf0\x6f\x93\xed\x4f\xad\x64\xaf\x6a\xaa\x89\xf5\x27\xd5\xc9\xb6\x89\xf5\x85\xd4\xbd\x69\x62\x12\x7d\x21\x4d\xad\x69\x66\xd1\x17\xa2\x1d\xe3\x53\x9d\x35\x63\xfe\x34\xf6\xcb\xec\xf8\xdb\x4c\xf8\x53\xab\x9b\x39\xe7\x85\xd4\x0d\xf3\x7b\x3d\xb3\x5f\x2f\x73\x1a\x3b\x67\x4a\x78\x21\xf5\x94\xfe\xc1\x98\x6f\x3a\x77\x21\xba\x83\x1d\x86\x9a\xbd\xde\xff\xd4\xef\xfa\x7a\xa4\x9b\xbb\x7d\x6a\xbc\x33\x77\xbb\x10\x34\xdb\xb9\x15\xbd\x5f\xae\xcf\xfb\x55\x23\x7c\xd5\x08\x35\xb6\x99\x43\x5d\x08\x1a\x53\xf2\x48\x7f\x4f\xfa\x45\x3e\x47\xf3\xa0\x0b\xd1\x4e\x9a\x7d\x4c\xfb\x40\xb3\x30\xe7\xf9\x36\xc1\xf9\x24\x67\xfc\x36\xc1\xb9\x10\xed\x98\x9b\x47\x3f\x10\x34\xc6\xec\xd1\x0f\xa4\xee\xc5\x11\x13\x6f\x0b\xf1\x3e\x9e\x35\x32\x15\x48\x5d\xbf\xb5\x49\x8d\x85\xd4\xb3\x4b\xa8\xbf\xd2\x04\xc6\x93\xcc\xfc\xdb\xf4\xc1\x42\xd0\xe8\x57\x89\xdc\xbc\xc0\x3d\xcb\x03\x8f\x38\xf3\x02\xcf\xc1\xaf\xd3\x1c\xc0\x42\xd0\x68\xa7\x44\x6e\x6e\xdf\x9e\x1d\x9f\x46\x7f\x13\xe5\x76\x0d\x8e\x5b\x09\x15\x48\x3d\x23\xf5\x9b\xd1\x54\x48\x3d\x73\x4c\x99\x95\x54\x88\x3e\x1a\xb4\x5b\xda\x19\x4b\xf4\xb1\x95\x28\xb7\x39\x19\x28\x27\xb0\xb7\x47\xc3\xf6\x68\xa0\x74\xc0\xde\x7e\xde\xdb\x4b\x81\xd4\x52\xde\xdb\x8b\x37\x40\xb4\x63\x7c\x8a\x78\xdb\x4b\x81\x14\xdc\xda\x9b\xfc\x43\x42\xd0\x18\xb3\x06\xf4\x6d\x74\xb8\x61\x88\x5b\x31\x68\x6b\xe5\xf1\x2e\xf4\xd6\x57\x07\x04\x8d\xf7\x69\xbd\xd9\x16\x92\xf2\x46\xc0\xd6\x08\xbe\x15\x83\xc6\xa1\xd9\xaf\xf9\x17\xf4\xd9\x6e\x43\xa5\xb6\xf7\xa3\x0b\xc7\xfc\xd6\x3a\x02\xa4\x4e\x01\xe8\x6d\x0a\x53\x21\x75\x2a\xa5\xef\xad\x28\xb3\x15\x65\xc8\x3f\xb3\xcd\xcd\x29\xa4\x4e\xad\x8f\x6d\x5a\x4b\x21\xda\xc1\x2b\x43\x91\xfe\x52\x43\xf2\xcb\x31\x35\xa4\x90\xc6\x99\x87\x9a\xbc\x39\x1f\xa7\x77\xba\xcd\xef\xb8\x4f\xee\x45\x52\xa6\x6d\x73\x2f\x0a\x69\x0e\xf7\x81\xa1\x8e\x66\x55\x9c\x84\x5d\x7e\x05\x07\xce\xe7\x05\xac\x41\x9d\xed\xcf\x8b\x55\x42\x9a\x63\xd1\x0e\xc3\xa4\x10\x34\xda\x21\x0e\x0b\x69\xce\x58\xdf\xaf\x60\x15\x14\xd2\xc4\xd2\xf0\x15\x8e\xd6\xaf\x78\xb4\xa2\xa1\x7f\x5c\x8b\x09\xe0\x62\x1a\xdf\xdb\xe7\x0d\x17\x21\x0d\xc2\x51\x3f\x6f\x72\x08\x69\x60\x15\xfc\x0a\x1a\xdc\xe7\x0d\x8d\x31\x26\xfd\x7e\x3e\xeb\x25\xb9\x11\xfb\xea\xab\x7c\x0b\x9f\xb7\x31\x06\x56\xb2\xaf\xf2\xdb\x10\xd2\x20\xac\xf1\xf3\xc6\xc2\x57\xab\x17\xfb\xe2\xfb\xf8\xbc\xb1\x20\x04\x6d\x40\xeb\xd2\xbc\x38\x17\xbf\xb5\xcf\x5b\x0c\x5f\xad\x5e\xf6\x1b\xf4\x81\xf8\x2f\x04\xad\x42\xb3\xdf\xea\x05\xc0\xf8\x8e\x3e\x6f\x36\x7c\xb5\xd9\xef\xe0\x7d\xcd\x7e\x9b\x7d\x4c\xc6\xc2\x2f\x42\x88\x31\x33\x16\xc4\x7f\x21\xda\xf9\xac\xfd\x36\xe7\x1b\x62\xdf\x57\x51\x09\xbe\xda\xbc\xb0\x27\x5f\xb0\x5a\x7e\xde\x8a\x18\xc4\xde\x7c\xde\x8a\xf8\x2a\x79\x47\x06\x71\x36\x1f\xd7\x21\x0e\x04\x8d\x79\x74\xdf\x87\xe5\x71\xe4\x1f\x63\xc1\x21\x24\x44\xbf\x8c\x05\x6b\xa4\x90\x06\xb1\x37\x9f\x37\x20\x84\x34\x66\x93\xe6\xdc\x86\x73\x6b\x8c\x6f\xc8\x53\xfe\x29\x23\x27\xde\x37\x1c\x0b\xea\xc4\x98\x21\xaa\x7e\x75\x38\x5f\x53\x0b\xcf\x06\xaf\x86\xe3\x1b\x96\x3a\x61\x0f\xd5\x29\x9f\x2d\x0b\x9d\x33\x63\xc6\xf2\x28\xc4\xb3\xcc\x6d\x3a\x3e\xfe\x47\x23\x17\xc6\x32\x1d\xcb\x74\x2c\x85\xfd\x32\xed\xd7\x0b\xb7\xb9\xc0\xe7\xe9\xfa\x62\x3d\x1c\xa4\xe3\xf9\xbc\x79\x21\x44\x1f\x3c\xbb\x9c\xef\xf2\x7d\xf2\x60\xf9\x3e\x2f\xe1\x66\xc7\xb2\xe4\xe9\x72\x1e\x7c\xab\x5c\xc3\x08\x70\x8d\xfe\x21\x1d\xee\x57\x2f\xbb\xbb\x0e\x7b\x7d\x8d\xac\xe4\x08\x19\x84\xfa\x7c\xf5\x72\xf8\x97\xcb\x3a\x60\xef\xe5\x12\xea\xf7\xca\x6e\x63\x8c\x77\x42\xbc\x8f\xa5\xb9\x65\x25\x47\xcd\xe0\xc2\xd9\x57\x6f\xfb\xe5\xa8\x19\x79\xf2\xbe\xdb\x2d\x6b\x99\x04\x7e\x11\x9f\x17\x42\x84\x34\x30\x5c\x7d\xf5\xf1\x7d\xf8\xbd\x06\x39\x00\xbe\xfa\xf8\x3e\x0c\x6b\x83\x1c\x00\x5f\x7d\x5c\x6a\x7e\xc5\x83\x5a\x90\x5f\x7d\x7d\xdf\xeb\xb3\x8e\xf9\xf5\xd9\x57\x1e\x4c\xdb\xc9\x83\xd7\xf7\x39\xbe\xd7\x65\x40\xdb\x18\x84\x27\x7d\xdc\x18\x09\x70\x6b\x4f\xdf\x27\x5f\x5e\xb7\xf6\x82\xb6\xdd\x62\x54\xe3\x1d\x44\x23\x7f\x75\xcb\x2b\xef\x0b\xcf\x09\xef\xb7\x73\xc3\xb7\x36\xb2\x9f\xde\x76\x59\xb7\x9f\x05\xc7\x59\xdd\x7e\x8e\xdb\xad\xb8\x7c\xd6\xe3\x67\x5b\x73\xd4\x4f\x7e\x3b\x37\xef\x1a\x53\xe9\xf3\xe3\xa6\xca\x81\x34\x88\x82\xfe\xea\xe7\x58\xd0\x72\x06\x97\xf3\xbe\xfa\x39\x96\xcf\x4f\xc0\xb1\x7c\x6e\x77\xef\x1f\x4f\x8e\xf9\xea\xd1\x5a\x3d\x5a\xc9\x47\xf0\xd5\xcf\xed\xf9\x99\xcd\x8a\xa3\xa1\xe1\x6f\xfb\x9a\x77\x8d\x31\x5c\x7d\xcd\xdf\x0b\x10\xb4\x09\xad\x49\x63\x6e\x8b\xa3\xa1\xa1\x35\x7d\x2d\xf9\x6c\x88\x7d\x5f\x4b\x3e\xcb\xe5\x94\x41\x64\xf4\xd7\xd0\x7c\xbe\x96\xac\xa0\x1e\x62\xc1\xd7\xf0\xb7\x7d\xcd\x5a\xac\xab\xd0\x2f\xe2\x88\x90\x06\x89\xf6\xbf\x56\x7c\x1f\x62\xc6\x20\x7f\xc0\xd7\x8a\xed\xd0\x2c\x06\x69\x71\xbe\xe6\x2f\xa2\xf9\x8b\xe8\xbe\x8f\xc8\x6d\x21\x0d\xb4\xe2\xaf\x35\xdf\x87\x73\x6a\x90\xc6\xe6\x6b\x88\x28\x42\x1a\x68\xa7\x1f\xd7\x49\x02\x2e\x69\x3e\xeb\xfb\x9a\xef\xe3\x1b\x6c\x1e\xc1\x40\x1a\x7d\x34\x68\xb7\x34\xc7\xc7\xef\xcf\x9b\x21\x42\xd0\xe2\xd9\x4e\x58\x8f\x90\x26\xda\xe9\x67\xc4\xb3\x90\xe6\x8f\x63\xa5\xfb\x9d\x1b\xc9\x3c\x7f\xf4\xdb\x31\xd2\x0b\x69\xa2\x85\x7d\xc3\xfd\x37\xac\xf3\x40\x8d\xc3\x6f\x60\xd8\x15\x52\xa5\x60\xe0\x37\x28\xd3\xf8\x19\x32\x57\xc9\xb4\xfe\x19\x32\xf7\x0d\x2f\x64\x92\xf3\xe0\xbb\xd0\x76\x05\x2a\x44\x7f\x17\x57\x99\x84\xf5\x63\x33\x2b\x2f\x0a\x44\xe3\x7e\x4a\x8b\x02\xba\xc5\xb7\x5d\xc4\x6d\xfe\x4a\xe4\x9f\x4f\xf9\x51\x08\x5a\x83\xd6\xa4\x31\x81\x1f\x94\x21\xc5\xb4\x94\x50\x96\x14\xd2\xd4\x4d\x28\xb7\x14\xef\xd8\x42\x79\xa5\x78\xc5\x08\x0a\xdb\x6d\x53\x21\x8e\xf3\x7b\x57\x47\x79\x62\xd2\xa0\x38\x4a\xa3\x6f\x79\x73\xb5\x2f\x3c\xa3\xb0\x73\x2b\x25\xec\xfa\xfc\xdf\xff\x64\x3e\xc8\xad\x8c\xf0\xff\xc9\x3a\x63\xdd\x86\x61\x18\x88\xee\xfd\x0a\xff\x41\x2d\x59\x4e\xd2\x25\x4b\xe7\xf6\x1f\x5c\x9b\x07\x64\x48\x62\xb8\xc9\xff\x17\xbc\xe7\xa5\xed\x10\x5c\x70\xb0\x4d\x26\xa2\x44\x0a\xa0\xce\x91\x41\xe6\x96\x02\x45\xdb\x6d\x89\x5f\x66\xfb\x54\x0d\x06\xf7\x27\x2b\xbc\xd5\x04\x2c\x62\xaf\xa0\x8a\x08\x57\x0c\x85\xbb\xb0\xef\x80\x73\x58\xc6\xc8\xb3\xb3\x18\xa8\xbd\xff\xb3\x03\xcf\xc9\x1a\x80\xcc\x19\x54\x00\x91\xe1\x47\xa2\x40\x4e\x17\x28\x3d\x4c\x85\x71\xa3\xbe\x1b\xcd\x25\xa6\xbd\x98\xf6\xcd\x4c\x83\x69\xe7\xae\x3a\x6d\x88\x65\xc0\xe0\x13\xce\x42\x82\x17\xf0\x71\x79\x21\xc0\x0b\xe4\xb3\x8b\xb9\x13\x9c\xb5\x25\xf1\x60\x82\x61\x82\x99\xf9\x82\x49\xbf\x77\x2f\x67\x18\xbf\x78\xb3\x37\xb3\xc0\x2c\x79\x0d\x1e\x05\x4c\x58\x8a\xdd\x8c\x60\x94\x5e\x67\x20\x5b\xa9\x37\xe1\xed\xdc\x0d\x5e\x2e\x50\xc9\x05\x8a\x17\x3d\x34\x72\x81\xd2\xff\x95\xb9\x3d\xfd\x4b\xd2\xe8\xe7\x02\xd5\xe3\xa7\x82\x6f\x09\xde\xeb\x09\x3d\x5d\xc0\x1d\xca\x12\xcb\x9e\xc1\xc7\x9b\x84\xbe\x2e\x50\x9d\x22\x55\x19\xad\x8c\xf0\x01\x86\x08\x37\x94\xe1\xe8\xd8\xd4\x80\xfd\x84\xba\x33\xd8\xe7\xcd\xcb\x47\xc6\x6b\xc0\x03\xcf\x84\xe1\xd8\xb8\x0e\x1f\xdc\x5e\xe0\x24\x25\xe6\x82\x55\x3e\xdd\x01\x2a\x34\x3e\x01\xef\xf1\x85\xc2\x27\x50\xaa\xc7\x62\xc4\xde\xc8\x5b\x6f\x92\x39\x10\x2f\xde\x9b\x15\x33\xa4\x53\x43\x69\xbd\xab\x4c\x91\x3a\xc5\x19\xce\x7e\xfc\x2d\x4d\x90\xdf\xaf\xd3\xfa\xf2\xfe\x31\xad\x9f\xd3\x35\xba\xf9\xb9\x6d\x71\x7b\x2c\x97\xf9\xd1\xbd\x26\xdb\x2d\xa1\xcb\x2d\xb6\xf8\xbe\x3f\xb7\x39\xba\xf5\xbe\xe6\x5d\xfe\xfc\x04\x00\x00\xff\xff\xf7\x76\x22\x71\x01\xf2\x04\x00"); +func _aebc ()(*asset ,error ){_eagd ,_gad :=_ffa ();if _gad !=nil {return nil ,_gad ;};_efbg :=bindataFileInfo {_ee :"KSCms-UHC-HW-V",_ffd :703,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492573,0)};_bfce :=&asset {_da :_eagd ,_dc :_efbg };return _bfce ,nil ; +};var _cge =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd4\x51\x6b\xdb\x3e\x14\x05\xf0\xf7\x7c\x0a\x3d\xf6\xff\xd0\x7f\x2c\x4b\xb2\x24\x18\x85\xd1\x3c\x2c\x1d\x5d\x47\xb3\x76\x83\xb1\x07\x4b\x96\x83\x61\x71\x8c\xe3\x0c\xfa\xed\xc7\x3d\x27\xcb\xf6\x50\x6e\xfb\x8b\x74\x39\x57\x4a\xb5\xbe\xdf\x6e\xb6\xe3\xb0\xa8\xf5\xe7\xf9\x98\x77\x65\x51\xfd\x30\x76\x73\x39\x1d\xcf\x73\x2e\x2a\x95\xfd\x30\xae\x56\xba\x56\xdd\x90\x97\x3f\x7f\xa2\xe4\x43\x3b\xad\x56\xeb\x58\x4d\xbf\x6e\x9f\x3f\xee\x1e\x6e\x3f\xa8\xf3\xa9\x5c\xf4\x7e\xbb\xd9\xbd\x9d\x96\x72\xd8\x8e\xfd\x51\x19\xee\xee\xce\xd3\xa5\x83\x52\xeb\xe7\xb2\x1f\x4e\xcb\xfc\xa6\x6e\xde\x77\xc7\x54\xfe\x53\x5d\xe9\xc5\x9f\xe6\xae\xcc\xc3\xb8\x57\x37\x0f\xed\xd4\x8e\xfa\xfa\xc1\xee\x3c\x4d\x3f\xcb\xa1\x8c\x8b\xd2\xb0\x32\x76\xa8\xab\xf5\xfd\x63\x3b\x7d\x6a\x0f\x45\xfd\x93\xe6\x15\x9f\xe1\xa3\xd7\x32\x9f\x86\xe3\xa8\x74\xf5\x7f\x55\x35\x7f\xfd\xcb\xdb\x54\x2e\xbd\x56\xeb\x97\xed\xe6\xa9\xef\x4f\x65\x51\xd1\x56\x5c\xf3\xed\x65\xbb\x51\xdf\xb5\xd2\x95\xaa\x9d\xb1\xf5\x8f\xcb\xd2\xaf\x8f\xc7\xee\xba\xd1\x69\xce\x94\x87\x6e\x6e\xc7\x7d\x59\xbd\x0b\xda\xea\x3b\x25\xa5\xbe\x53\x3e\x04\x2f\xe4\x2a\x90\xd3\xa0\x08\x4a\xa4\x4e\x28\x6a\xa1\x86\xab\x1a\x0b\xb2\xa0\x08\xf2\x2d\x08\x1b\x03\xdb\x4b\xf1\x51\x4b\xfb\x3a\xf6\x42\x28\x3e\xea\x20\xd4\x62\x15\x8a\x8f\x3a\x82\x0c\xc9\x08\xd5\x15\xc8\x91\x1c\x48\x83\x3c\xc9\x83\x6a\xa1\xcc\x5e\x19\xbd\x6a\x23\x54\x48\x85\x64\x41\x6c\x5f\xd8\xde\x81\xd8\xbe\xb0\x7d\x03\xca\xa4\x0c\x92\xf4\xc6\x62\x6c\x14\x1f\xeb\x00\xaa\x49\x35\x28\x82\x2c\x49\x0e\x27\x9a\x0a\xd4\x90\x1a\x90\x06\x05\x52\x00\x49\x7a\xd3\xb0\x57\x83\x5e\x46\xd2\x9b\x80\xa8\x28\x3e\x1a\x0b\x72\x24\x44\x35\x0e\xe4\x49\x38\x09\xd3\x80\x0a\xa9\x80\x90\x3e\x72\x63\x64\x08\x49\xef\x79\x1d\x9e\xd7\x61\x25\xaa\x6f\x31\x23\x4a\x30\x18\xc8\xf3\x86\x3c\x6f\xc8\x1a\x50\x4d\x42\x54\xab\x41\x86\x64\x64\xa3\x61\x2f\x4b\x72\x20\x6e\x6c\x48\x1e\xe4\x41\x81\x84\x93\xb0\xa4\x48\x6a\xb1\x8a\x21\x12\x29\x61\x95\x03\x65\x12\x6e\xc8\x62\xa0\xb6\x23\xc9\x77\x35\x3a\x0b\x2a\xa4\x5e\x7a\x31\x7d\xe2\x8c\x09\xf7\xe8\x10\x35\x71\xc6\x54\x63\x15\x42\x24\x0e\x94\x70\xf6\x0e\x33\x26\x0e\x24\x25\x18\x8b\x5c\xc9\x91\x70\x1d\x8e\xed\x19\x42\x4a\x30\x97\xf6\x0c\x21\x25\x98\xcb\x2a\x9e\x7d\x42\x2e\x27\x97\xe6\x33\x73\x65\x9c\xbd\xc3\x40\xfc\x46\xa3\x04\xe3\x90\xab\x6f\x41\x7d\xc6\x0d\x59\x79\x5f\xae\xff\xd4\xf2\xbb\xbc\x6c\xd7\x97\x26\x9f\xe7\xb9\x8c\x0b\xde\x35\x3c\x26\xf2\x1a\x0c\x63\xb9\xbe\x9c\xd3\x71\x92\x5d\xf8\xf9\x1d\x00\x00\xff\xff\xd7\xe6\x99\xe2\x65\x05\x00\x00"); +var _beeb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4b\xaf\x6d\x39\x72\xe7\x37\xcf\x4f\x71\x86\xed\x41\xbb\x16\x17\xdf\x40\xe1\x02\x96\xd4\x05\x0b\x8d\xb6\x0d\x4b\xb2\x0d\x18\x1e\x90\xfb\x21\x27\x60\x65\x16\xb2\x4a\x03\x7d\x7b\x83\xff\xff\x2f\x76\x0a\x86\x81\xa3\x3b\xb9\x3b\x0e\xd7\x22\xb9\xc8\x60\x30\xde\xf1\x87\xbf\xfd\xfb\xbf\xfb\xfb\x5f\x7e\xfe\xeb\xd7\x1f\xfe\x97\xdf\x7e\x7d\xfc\xc3\xeb\xaf\x5f\xef\x9f\x7f\x79\xfe\xf6\xfa\xcb\xaf\xff\xfa\xdb\xe3\xf5\xb5\x5f\xff\xfc\xf3\x2f\x3f\xfd\x94\xee\xaf\xe7\xcf\x8f\xbf\x06\xa8\xff\x1e\xff\xb2\xfe\xfc\xd3\x4f\xe7\xfd\x7f\xf8\xb7\xbf\xfc\xf5\xf5\x2f\x7f\xff\xcb\xfb\xd7\xaf\xec\xe7\x9e\xff\xfa\x67\x9e\xfd\xfa\xfa\xc3\xff\xfa\xfa\xe7\x9f\xff\xf2\xd7\xdf\xfe\xed\xeb\x3f\xfd\x0f\xcf\x5f\xf7\xeb\xbf\xfb\x7a\xbe\xde\xe7\xef\xff\xf3\x6f\xcf\xd7\x6f\x3f\xff\xf2\xcf\x5f\xff\xe9\xbf\xfe\xfa\xdb\x6b\xa5\x4f\xc3\x3f\xfc\xeb\x9f\xff\xfc\xff\xbc\xfe\xe5\xf5\xcb\x5f\xbf\x92\xfe\xf6\xfa\xe5\xa9\xff\x7f\xfa\xc3\xdf\xfe\xb7\xf5\xe7\xff\x69\xfd\xcb\xeb\xeb\x0f\xff\xf4\xcb\xcf\xff\xf5\x1f\xfe\xf3\x3f\xfd\xe3\x9f\xc6\x7f\xfe\x1f\xd5\xa8\xb6\xff\xed\xf5\xdb\x5f\x7e\xfe\xf5\x97\xaf\x94\xfe\xfb\xeb\x1a\xbf\xff\xfd\x1f\xff\xed\xcf\x2f\x3a\xfb\xe9\x0f\xff\xc7\x3f\xfd\xfd\xdf\x7d\xfd\x9f\xe9\x2b\x5d\x5f\x77\x2d\xa9\xfc\x5f\xfc\xfd\x7f\xff\x6f\xbf\x3e\x5f\x5f\x97\xa1\xe2\x0f\x78\xfc\xfa\x7c\xfd\xe5\xcf\xeb\xf1\xfa\x6d\xfd\xf2\xcf\xaf\x9f\xbe\xbe\xfe\x78\x5d\x3f\xbe\xfc\xef\x8f\xfd\x4f\x3f\xce\x5f\xfe\xf6\x1a\xfc\xed\x8f\x7f\xf7\xa7\xbf\xf1\xdf\xfe\xcb\x35\xf8\xeb\x1f\xff\xcb\x9f\xfe\x26\xfe\xfa\x27\xfd\xf5\xfc\xfd\x8f\x7f\xea\x7f\xc3\xdf\x5f\xbf\x3c\xff\x3f\xa3\xfc\x94\x3c\xf8\x2f\xbf\xfe\xf5\xf9\x7a\xfb\x6f\x1a\xf7\x8f\xe9\xfd\xe3\x2b\x9d\x37\xfe\x7d\xd3\x4f\xe9\xba\x98\xed\xcf\xcf\xc7\xff\xbd\x7e\xfb\xe9\x8f\x8f\x7b\x5d\xe7\xc9\xf3\x23\xfd\xf8\xba\xaf\xa1\x9f\xe5\xc7\xd7\x9d\x8a\x7e\xf6\x1f\x5f\xa9\x56\xfd\x1c\x3f\xbe\xd2\xd5\xf5\x73\xfe\xf8\x9a\x7e\x74\xfd\xf8\x6a\xcd\x3f\xf7\x8f\xaf\xd4\xdb\xf9\xb9\x4f\xa7\x59\x7f\xdd\xe9\xfc\xbc\xf4\xb3\xfc\xf8\x4a\x73\xea\x67\xfb\xf1\x75\x17\x8d\xb0\xcf\x08\x97\x7f\x8e\x33\x05\xf7\x30\x7f\x7c\x8d\x72\xeb\xe7\x19\xa2\x6b\x0a\x5b\x43\x68\x0a\xfb\xf1\xe3\xab\x57\xcd\x7c\x3f\x7f\x7c\xf5\xe2\xd1\x5e\xe7\xaf\x7e\xed\x7d\x3a\x3b\xa3\xe5\xd1\xce\x24\x4f\xbf\x79\x5e\xe7\x67\xd7\xcf\x33\x70\x4e\xfa\x39\xce\x10\x59\x3f\x5f\xe7\xa7\x9f\x7d\xff\xf8\xea\xfa\xb6\xbc\xda\xe9\x57\xaf\x9d\x6f\xeb\x55\xfd\x6a\xea\xf9\xd6\xcf\x71\x9e\xd5\x6b\x9a\x43\x3b\x0f\x94\x99\xce\xb3\xa7\x87\xb2\x34\x07\xfd\xf5\xac\x69\x6f\x67\x49\xca\x59\x9d\xde\x92\x7e\xde\x67\x60\xff\x35\x9f\xbf\xde\xfa\xa9\x7e\xb3\x7e\xbe\xcf\x03\xe7\xd9\x7a\x30\xa3\xb7\xa2\x9f\xe9\xfc\xf5\xd6\xcf\xfb\xfc\xb5\xea\xe7\xfc\xf1\xd5\xf9\xab\x96\x6f\xe8\xe7\x3e\x7f\x55\x0f\x53\xa3\xa9\x87\xa9\xd1\xce\xb7\x55\x4d\xb2\xfb\xe7\x99\xa4\xa6\xb3\xce\x52\x8f\x5b\x3b\xb0\x47\x3f\xab\x7a\xba\xd8\x53\xbb\x75\xeb\xe7\x3c\x3f\xf5\xc0\x5c\xe7\x67\xd1\xcf\x7d\x7e\x76\xfd\x7c\x9c\x9f\x97\x7e\x3e\xcf\xcf\xfc\xd3\x1f\x9f\xd7\x99\x7b\xba\xee\xf6\xd3\x1f\x9f\x69\xea\xf7\x59\xd7\xd7\x3d\xae\xb3\x4d\xb3\xf3\xbb\xfd\xf8\x4a\x29\x01\xec\x33\x97\x83\x5a\x82\xde\x82\x78\x70\xdd\x3f\xbe\x46\xbb\x80\xce\x3e\xdd\xa9\x01\x94\x1f\x5f\xa3\x8e\x1b\xa8\xfe\xf8\x9a\xf9\x8e\xb6\x26\xa8\x00\x1d\x14\xab\xd1\x74\xbe\x5c\xcb\xff\xba\x47\x3a\xeb\x3b\xea\xf4\x14\x93\xba\x2c\x15\x40\x4b\x54\x06\xd0\x99\x56\x71\x1f\x3e\x2b\xfe\x5d\x46\xfe\xf1\x95\x4a\x02\x38\x8b\x96\xdc\x41\x39\x9b\x50\xe7\x05\x70\x4e\x47\x75\x67\x45\xe7\x92\x29\x94\xf3\x89\x77\xe3\x31\xed\x56\x89\x96\x33\xef\xe2\x0f\x6c\x67\x77\x53\xbf\x00\xea\x39\x6b\x1d\x40\x5d\x47\xcb\xd9\x4c\x26\xdd\xb4\x9d\x35\x01\x9c\xb9\x15\x7f\x69\x3b\x2b\x39\x46\xe3\xb9\x83\xb2\x63\xb4\x0a\x74\x0b\x2a\x40\x59\x50\xbc\x57\x04\x31\xb2\x96\x68\x0c\x3f\xd9\x87\xfa\x1c\x15\xe8\x79\x20\x36\xab\x8f\xb7\x20\xda\xa6\x9e\x4c\x45\xf4\x0f\xba\xf5\xff\x43\xc9\xf4\xa8\xa6\x56\x19\x42\x8b\x30\xa3\x17\xcd\xac\x06\x24\x4a\xc4\x70\x87\x02\xce\xc4\xda\xf7\xb3\xdc\x33\xcd\x1b\xe8\x16\x94\x80\xb2\xa0\x0c\xd4\x04\x0d\xa0\xfe\xe3\x6b\x0a\xc5\x05\x0d\xb5\x4d\xa0\xa9\x36\xf7\x32\xce\xa7\x27\x90\x7b\x1c\x9c\x4a\x35\x5a\x0e\x7a\xd0\xe1\x38\x44\x6b\x74\x56\x61\x0c\xd1\xe1\x1b\xe0\x50\x62\x56\x72\x1c\x34\x1a\x9d\xbd\x1a\xe7\x88\xa7\x11\x2f\x09\x7d\xd9\xed\x71\x96\xf5\x4e\x9e\xfc\x38\x4b\x75\x27\xfa\xd3\xe2\x74\xce\xc3\x38\x27\x38\x75\x66\x71\x4e\x6b\x1a\xf4\x70\x68\x63\xca\xf1\xd8\x5b\xf3\xe3\x3b\x74\x8d\x80\x4a\x43\x07\xb1\xe7\x80\xe6\xf9\x2a\x3e\xf1\xdc\x17\xb1\xd6\x63\xbd\xce\x24\x68\xd1\xed\xc0\x51\x1e\xe7\x84\xa6\x11\x2d\x07\x67\x13\xef\x1c\x9a\x3b\xf2\x1d\x4d\x67\x7a\xdd\xdf\x3e\xcf\xf2\x8d\xca\x16\xcc\x51\xcf\x21\x9c\xd1\x36\xd4\xe6\xd7\xa6\x70\xaa\x67\xda\x84\x36\xfd\xce\x40\xda\x91\x02\xe0\x95\xb9\x81\x96\xd6\x93\x07\xf5\xc9\x39\x80\x43\xbe\x3e\x2d\xfe\x7e\xfa\xf0\x55\xc6\x02\xac\x51\xb4\x5d\x03\xa8\x0a\xea\x40\xa7\xff\x32\x1a\xd0\x16\xc4\x93\x4b\x33\xe1\x80\xaf\x25\x7a\x76\x65\xa0\xb3\x5a\x60\xc0\x3e\x8b\x3a\xf2\x7d\x01\x1d\x46\xe0\x72\x8f\x0f\xa3\x14\xdf\xf6\xf0\x87\x5e\x00\x9a\x56\xd6\x24\x67\x39\x28\x5a\xd3\x04\x48\x3f\xbe\x6a\xbe\x00\xee\x1f\x5f\xf5\x0e\xe0\x10\xad\xcf\x3b\x8f\xd3\x12\xc0\xf3\xc7\x57\x35\x05\x9b\x65\xbc\x0e\xd0\x01\xde\xe7\x9d\xdb\xc0\xd9\x87\x7a\x07\x70\xc6\xa9\x01\x9c\x71\x2a\xbd\x89\x38\x7a\xa5\x67\x39\x33\xad\xa6\xd6\xb3\x1c\xda\x56\x4d\xad\xa7\xc8\x66\xf5\x11\x9f\xe5\xd0\xb6\x9a\x03\x18\xe7\x9d\xe8\x60\x9e\xc7\xa2\x83\x75\x80\x68\xd9\xe7\x9d\x68\xd1\xf7\x44\x07\xe7\x7b\x0a\xe3\x9c\x8d\xaf\x85\xb9\x2d\xcd\x2d\x5a\x34\x37\xbe\xf4\xec\x4a\x2d\xac\xc1\x21\x08\xb5\x30\xce\xd2\x38\xd1\xa2\x71\xa2\x83\xb3\x3a\x85\x35\xd8\x1a\x87\xde\xb6\xc6\x09\x40\xe3\xd0\xc1\x39\x11\xb5\x30\xeb\xad\x71\xd8\xb9\xad\x71\x02\xd0\x38\x01\x68\x9c\xfa\x2d\x4d\x9d\x62\x2a\xaa\xb1\x64\x8a\x81\xa8\xc5\x80\x2e\x99\x9b\x9d\x6c\x3a\x0c\xbe\x14\x66\xd3\x61\xf0\x9d\x30\xdb\x59\xa0\x9b\x71\xdb\xa1\x99\xdc\xd7\xb3\x1d\x92\x79\xb3\x74\xed\x2c\xd0\x9d\xa3\x83\x73\xfd\xb0\x40\xbe\x70\x7a\x3c\x77\x2e\x9c\xd4\xe8\xe1\x2c\x4a\x6a\xd1\xa2\xb3\x34\x98\x9d\x88\xc6\x1d\xc0\x19\x09\x7c\x6e\x3a\x8f\xdd\xc4\x65\xea\x5a\x4a\x2d\x9a\x0e\x39\x69\x31\xae\x08\x9c\x89\xcb\xd4\x85\x75\xa7\x01\x20\xea\xd9\x01\x74\x32\xcd\x5b\xcc\x7e\xce\x58\xf2\x75\x3d\xbb\xa8\x76\x8b\x96\xf3\x85\x77\xf4\x70\xbe\xf0\x8e\x1e\x44\x57\x46\x40\xe2\x40\x62\xd8\x43\xc2\x5b\x0e\xe8\x10\xe0\x96\x00\xce\xd1\x36\x2f\x30\x75\x19\x8d\xde\x2b\xd0\x5b\x6f\x79\x16\xe3\x10\x99\xc4\x61\xd4\xb5\x92\x38\x8c\xe3\xf4\x77\x83\xc9\xbe\x1f\xd8\xdc\x21\x86\x0d\x44\xd4\x25\x30\xef\x3b\x20\xbd\x44\xdf\xe7\x16\x98\x37\x47\x6b\x78\x5c\x76\x7e\xea\xa2\x03\x7f\xa7\x2e\x3a\x4e\xd0\x34\x4e\x04\x70\xa4\x0d\x08\xc7\x3c\x87\xe6\xe6\x74\x4f\x21\x08\x47\x70\x1a\x41\x26\xc0\x99\x5e\x8d\x96\xc3\x51\x42\x38\xa6\xa6\x50\xa7\x7b\x78\x1c\x92\x30\x1a\x24\xea\x21\xfa\xdd\x20\x65\x8f\xb3\xd9\xa3\x5d\x7e\xf2\xc9\x93\x9a\xed\x7e\x9c\xa9\xb7\xe2\xc5\xdd\x8f\x43\xb3\x5b\x1e\x01\x89\xed\xf2\x45\xba\x1f\x67\x57\x5b\x29\x01\x1d\x66\xbb\xf4\xe8\xe5\xf0\xdb\x5c\x41\xfb\x71\xe8\x5b\xb9\x3b\xbd\x9c\xd3\x53\x8a\x77\x65\x8b\xfc\xd6\x34\xe8\x45\xb4\x4b\xec\xbb\xa0\x73\xa4\xaf\xe8\xf3\x6c\x4c\x83\x97\xd8\x8f\xb3\x33\x79\x7e\xa0\x23\xb0\x94\x0a\x24\x32\xc5\x22\xed\x87\xe8\x54\xb9\x18\xe1\xac\x79\xb9\x6b\x40\xf5\xc7\x57\x01\xe5\xf6\xc3\x6c\xe5\x60\x66\x67\xd9\x3b\xec\xe3\x7e\x2c\xd1\x4e\xaf\xd9\x7e\x88\x8e\xb5\x19\x6d\x4f\xdd\x13\x31\xde\xfb\xc7\x57\xee\x93\xb9\x1c\x52\x56\x3e\xdf\x70\x4e\x74\x6e\xd1\xcb\x39\xd1\xb9\x8c\x78\x72\x9c\x2f\x6a\xd1\x76\x88\x56\xff\x40\xe7\x6b\xc7\xe7\xbd\x23\x67\x8d\x8b\x79\x8a\xa2\x55\xf6\xe8\xa9\xfd\x9b\xac\xc4\xf3\xe0\x5e\x19\x25\xda\xf2\x8f\xaf\x92\x4d\x23\xf7\xf3\xec\x6d\xb9\x7c\x12\xf7\xf3\x1c\x95\x32\x6b\x3c\xd9\xce\x7b\x29\x9e\xec\xc2\x89\x02\x74\xf6\x3d\x19\x39\xf7\xf3\x1c\xe7\x76\x8f\x18\x6f\xfd\xf8\x2a\x9d\x15\x7c\xea\x1e\x3f\x23\x7c\x47\x6c\xf7\xf3\x9c\xf6\x36\x7d\x9f\xed\xe7\x39\x90\x65\xf8\xd8\xed\xe7\xf4\x9d\x4c\x9b\x90\xa9\xf7\x80\x6e\x21\x0c\x53\x13\x32\xd5\xc1\x27\x9d\x2b\xb2\xc3\x85\x6f\xa1\x79\x1b\xa0\xc1\x53\x88\x96\x6e\x3e\xf0\x20\x5a\x9f\x2d\xc6\x5b\x12\xa5\xf9\x24\x5d\x8d\x10\xb9\xfd\x34\x12\x26\x96\x49\x48\x08\x8d\xda\xcf\x43\x1e\x7a\x2f\xf1\xde\x11\x5a\xaf\x58\x98\x83\x92\x79\x5c\xcc\xfa\x5c\x13\x2d\x5d\xf4\x72\x98\xa6\xfc\x19\xcf\xd7\x6a\x8f\xb6\x73\x00\xd3\x60\x84\x83\xae\xad\xc5\x46\x48\x34\x6f\x31\x97\x83\xa0\x65\x4e\xbe\xef\x70\x9b\xbd\x7d\x46\xd8\x67\xcd\x38\x10\xcf\x43\x42\x4a\x20\xe8\xf3\x20\x6f\xe9\x9f\x79\x1e\x8e\xa5\x5f\x31\x9e\x2e\x4b\x0e\xfc\x53\xb7\x72\x8f\xf1\x0e\xf2\xf6\x11\xf3\x94\xe0\xfe\x19\xe1\xdc\xd2\xa5\xd5\x78\xef\xcc\x7a\xc6\x5c\xb6\x50\xab\x45\xdb\x39\xe2\x29\xb3\xba\xfb\xf0\x24\x23\x76\xfa\x5c\xe2\x8d\x9b\x67\x3f\xcf\x81\x28\x35\x50\xf2\x1c\x88\x56\x02\x79\xa5\x20\x28\xbe\x61\xf6\x4b\x47\x20\xb7\x80\xce\x5a\x67\xd3\xfd\xfd\xd2\xa5\x8e\xcc\xb0\x5f\xe7\x40\xb4\x7a\xdd\x40\x67\xad\x67\x8b\x27\xeb\x39\x8e\x26\x99\xfb\x75\x0e\x44\x2d\xe0\xe7\xeb\x1c\x88\xce\xc5\xb2\x5f\x3a\x10\x63\x04\x34\xcf\xa1\x9e\xf1\xe4\x12\x93\x14\x6d\x87\x2c\xc2\x39\xec\xd7\x10\xbe\x7c\xfa\x7c\x4b\xed\xc0\xcc\xa4\xad\x29\x1f\xe8\x60\x48\x33\xa7\xb3\x5f\x87\x29\xcc\xa5\x07\x74\x70\x7e\x82\x3d\xaf\x83\xf3\x39\x08\xe8\xeb\xe0\x7c\xc9\xec\xca\xcb\xc4\x95\xf5\x7c\x1d\x66\xb0\xd7\x14\x4f\x4a\x9b\x95\x99\xcb\xc1\xf9\x36\x66\xb4\x1d\x9c\x1f\xb1\x12\x62\x08\xfb\xa7\xcf\xf3\x0d\x17\x3b\xfd\x3a\x38\x5f\x3f\x5f\x74\x70\xbe\x5f\xf1\x0d\x07\xcb\x5b\x1e\x01\x65\xed\x0a\x23\x88\x0c\xb7\xcc\x17\x1d\xbc\x2e\x29\xf3\x45\xe7\x2a\x6c\x35\x56\xf0\x10\xe5\x82\x86\x61\xbf\x44\x94\xb9\x68\xf7\x6b\xe9\x6c\xde\x01\x3d\xcf\x5a\x73\xde\x5f\xc2\x6b\xb8\xa2\xfd\x3a\x78\x5d\x7a\xac\xa7\xf4\x5a\x3d\xf3\xe4\x16\xbe\x5c\xf4\xb2\x35\xcf\xc1\xd7\x1e\xbc\xee\x3d\x70\xe9\xe0\x75\xaf\x33\xda\x9a\x46\x60\xd6\x62\x4d\x7f\xef\xf3\x60\x79\xbb\xe3\x49\xa9\xa8\x62\x1f\x0e\xce\x97\xd6\xe2\xbd\x7d\xf6\xef\x33\xde\xe3\x40\x66\x2e\xf7\xfb\x60\x72\x8e\x13\xfe\x16\x26\x4f\x4e\xe3\x5b\x98\x3c\xf8\xf6\xb7\x48\x7b\xfd\x40\x67\x75\x91\x22\xf6\x5b\xa4\xfd\x88\xbc\xdf\x12\xe5\xf7\x41\xf3\xd2\x5a\xbc\x28\x22\xf9\xe9\x74\xea\x56\x4d\x40\x87\xbf\xb8\xf8\xa4\xf7\x91\x81\x5a\xaf\x01\xbd\xf4\x11\x0d\x48\x24\x85\x23\xf7\x46\x0c\x0a\x48\x1a\x3d\x48\xd1\xfb\x20\x7d\xcf\xdc\xcd\xef\x83\xf4\xa5\xc6\x5c\x0e\xd2\xe7\x29\x34\xc8\xe3\x92\xf6\x40\xd7\x61\x1e\xd7\x94\x08\x2a\x6a\x73\xa0\xd3\x24\xe6\x30\x8f\xeb\x20\xe4\x90\x22\xf1\x40\x5b\x8c\xe3\x65\x28\x4b\xfb\xa5\x0b\xf6\x00\x8f\x1f\x5f\x33\x67\xf7\x51\x0f\x0d\x4e\x3c\x67\xf6\x50\x18\x90\xc7\x30\x83\x3e\x06\x90\xd9\xeb\x29\x68\x4a\x0b\x5b\x3d\xc3\x25\xad\x5e\x66\x52\xeb\xcc\x7e\x5e\x23\xa0\x97\x54\x6d\xee\x5f\x12\xed\xbc\xa6\xdf\x7b\x89\x03\x9a\x6e\xd2\x8e\xdf\x2d\x80\xb3\xe1\xba\xb1\x0e\x60\x1a\x00\x50\x45\xd4\x00\xa4\x7c\xad\x00\x87\xab\xac\x13\x40\xd7\x78\x01\x98\x3a\xfe\x00\x87\x16\x5c\x1d\xe0\xdc\xe1\x7d\x46\x77\x87\xd0\x26\xa6\x60\x8d\x32\x2d\x53\xf3\x89\x16\x31\x52\x0c\x24\xf5\x5a\xcc\x54\x94\xa5\x32\xaa\x08\x4b\x0b\xe0\x20\x8d\x26\x57\xf6\xf8\x77\x5c\xe8\x81\x84\x17\xda\x9c\x03\x9d\xab\x26\xb7\x80\x84\xa3\x3d\x9e\x3c\x1f\x65\x41\xf6\x40\x53\x12\x77\xb4\x89\x14\x8b\xac\x1c\x68\xeb\xf2\x6c\x40\x87\xa8\xa5\x8b\xd1\xa5\xbc\xbe\xb5\xad\x07\x3a\x87\xfe\x2a\xbc\x27\xb9\xdb\x0a\x9a\x03\xe9\x5a\xd0\xca\x1f\xe8\x70\x70\x43\x07\xf4\x40\x67\xf4\xdf\xdf\x3b\x04\xa8\x0d\x9e\x3c\xc4\xa9\xcd\x1b\x48\x7c\xe0\xb8\x02\x3a\xe7\x6c\xc4\x93\x07\xa9\x4a\x8a\x11\x74\x25\x0e\xd6\x45\x92\x45\xbb\xee\x09\x94\xc5\xcb\x16\xa0\xaa\xb9\x04\x74\xde\x9b\xe5\x06\x7a\x4a\x91\x90\x80\xcc\x4d\x46\x9f\x52\xfd\x27\xde\x3b\xdf\x97\xad\x3c\x3c\x90\xc8\xd8\xc8\x40\xf3\x23\x1b\x1c\x48\x1c\xea\x8c\x27\xcf\x99\x6f\x29\x9e\x3c\x67\x7e\x34\x46\x3f\xcc\x48\xae\x31\x9e\xd8\x8f\x1c\xdf\x60\x72\x7b\x05\x74\x56\xf7\xe2\xdb\xa7\x48\x6a\x4e\x8c\xb0\x35\xc2\xe5\x6f\x58\xe2\x73\x7d\xb9\x1c\xe8\x90\x38\xeb\x50\x0e\xa4\x33\x04\x4e\x48\xb7\x54\x6f\x56\x62\x89\xed\x2c\xcc\x73\x9d\x95\x68\x56\x50\x96\xad\x33\xdb\x2c\x5d\x1d\xe8\xe0\xa0\x25\xf3\x03\x89\xf9\x89\xd1\x0f\x86\xb4\xab\x30\xfa\xc1\x90\xd6\xaf\x0a\x74\x2e\xac\xab\xc6\x7b\x1e\x3d\x7f\x47\x7c\xcf\xa3\xe2\xc4\x3a\xdd\x1c\x8e\xb1\xb4\xd9\x80\x64\xef\x00\xe9\xa5\x12\xcb\xd6\x52\x1f\xa8\xca\x76\x13\xef\x9d\x25\x9c\x85\x4f\x92\x48\x23\x3b\x88\x20\x1b\x45\xa2\x97\x73\xd7\xb4\x16\x90\x48\xf8\x15\xe3\xbd\x8e\xc8\x76\xd3\x8b\x38\xb8\x04\x9a\x2f\x19\xa9\x2c\x06\x96\xbd\xa5\x3f\x8b\x11\xb6\x0e\x6e\x29\x05\xe8\x1c\xa4\x38\x80\xb2\xa7\xe4\xc1\x17\x6d\x09\x0e\x17\xcb\xbb\x87\x50\x84\xb9\x6c\x5d\x27\xa5\x7b\x79\xb7\x16\xbb\x80\x84\x5b\xc7\xf1\x8e\x11\x0e\xba\xf6\x40\xc9\x3d\xc5\x39\xe4\x0a\x24\x4e\x33\x45\x9b\xae\xaf\xc4\x78\x53\x48\x18\x33\x93\x30\x69\x95\x6e\xd9\xfb\x70\x2a\xc5\x86\x83\x03\x9d\x9b\xb5\x80\x68\x5b\xfc\x78\xe1\xb0\x6c\xf1\xc7\x23\x33\x33\x59\xb5\xe6\x1d\x50\x13\xba\xde\x40\x5d\xdf\xc7\x78\x3a\xd4\xa5\xb9\xcf\xc7\x59\xb3\x72\x71\x58\x1e\x32\x67\x35\xd6\x13\x21\x9b\x23\x20\x21\xbb\x5c\x35\xda\xce\x2a\x5d\xcc\xf3\x71\x50\xb9\x5c\x2d\x03\xbd\x25\x48\x7b\x9e\x0f\x5d\xba\x17\x08\x2a\xe1\x7c\x7c\x20\x71\x46\x13\xd2\xf7\x10\x1f\x3f\xa3\x4d\xfb\x5e\x26\x23\x88\xa7\xe9\x39\xda\x96\xf6\x21\x20\x69\xdc\x4a\x03\x3a\xa4\xa1\x64\x43\x4f\x5f\x5c\xe0\x8b\x05\xcd\x04\x99\xb2\xa0\xe9\xfb\xae\x58\xd0\xec\xb5\x44\xdb\x53\x82\x66\x40\x2f\x3d\x79\x03\xbd\x45\x16\x79\x4f\x07\x77\x40\x08\x25\x2f\x36\xdb\x16\x0a\x32\x61\x4b\x1d\x68\x8a\x34\x54\x20\xad\xee\xa7\x97\x73\x54\x53\x0f\xe8\xa1\x4b\xd5\x7b\x24\x59\xab\x57\x76\xd3\x52\xd2\x00\x3f\x25\x25\x95\x39\x02\x12\xaf\x9e\x19\xcf\x27\xe7\x0e\x48\x3c\x77\x7c\xdf\x21\x68\xad\xb0\xef\x92\x68\xea\xcd\xb9\x95\x0c\x53\x3b\x2b\x28\xa9\x25\x97\x1e\x90\xae\x27\x70\x42\x72\x4a\x29\x5c\x79\x92\x4c\x7a\xfe\xbc\xb7\xce\x89\xcb\x13\xe8\x60\x4f\xbd\xa2\xed\x29\x85\xc6\x0d\xe4\xf5\x04\xd2\x0a\x66\x4e\x8e\x65\x8a\xca\x8e\x89\x41\xe9\x57\x89\x27\xcd\xbd\xd2\xa7\x6e\xf4\x1c\x4f\x8a\x86\xf4\x16\xd0\x5b\x12\x37\x4f\x8a\x93\xce\x8d\xaf\x35\x9e\x15\xc6\x3b\x2b\xd1\x2b\x27\x55\x3c\x50\x0e\xe2\x2a\x26\xa8\xc7\x45\x66\x2e\xa8\xb3\x2e\x66\x69\xe2\x74\x98\xa7\x99\xec\x98\x58\xd2\xd6\xb9\x62\xcd\x76\xa6\xfe\xad\x9d\xad\x98\x0b\xcd\x0d\x14\x11\x17\xda\x3b\x37\xcb\x5b\xe2\x55\x65\xab\xdf\x53\x6c\x3d\x37\x8b\x98\x9b\x1a\xb7\xc0\x7b\x7a\x73\x81\x24\x26\x75\x38\x9f\xf7\xf2\x56\xd3\x8b\xc4\x96\xda\x02\x7a\x8b\x84\x31\xba\x74\x49\x83\xdb\xea\x7d\x10\xad\x4c\xae\x84\xb7\x45\x93\x58\x0a\x1d\xd5\x0b\x82\xfd\xd6\x51\x9d\x12\x46\xea\xb8\x24\x46\x78\x03\x0f\x64\xf4\x19\x40\x07\xcd\x7d\xff\x1e\xc8\x44\x39\xa0\x43\x32\xa7\x88\x56\x1d\x97\x94\x32\x43\x88\x56\xcd\x82\x97\xfb\xd3\xd6\x24\xd8\x32\x9e\xc4\x4e\x0b\xd9\x07\x5a\x42\x91\x68\x7b\x1c\xc2\xab\xf5\x3c\x90\x6e\xf8\x18\x4f\x44\xf9\x12\xd9\xa8\xe3\x3a\xab\xd4\xfd\x45\x07\xd2\xb7\x0b\x0d\x0e\xe4\x6b\x86\x11\xce\x05\x98\x3f\xf3\x94\x30\x39\x3e\x6d\x87\x5f\xab\x83\xd1\xe5\xd0\x71\x89\xe9\x3f\x90\x8e\x47\xcc\xec\x5c\x8e\xdd\xa8\x7c\xa0\x83\xd8\x16\x50\xab\xed\xe6\xd5\x0a\x8d\x3a\x92\x2c\x43\x33\x75\xa0\xae\xe3\x3f\x80\xce\x78\xed\x8e\x36\x6b\xce\x2a\x90\xd1\xdc\xf3\x4c\x26\x53\xa3\x01\x2d\x1d\x47\x46\x10\x29\xea\x17\xbd\x9c\x2b\x28\xb7\x8b\xb6\xed\x6f\xbf\x80\xcc\x89\x30\xfa\x39\x56\xcd\x96\xd9\x03\x9d\x83\x5b\x9a\x47\xbf\x87\xd4\x53\xb5\x01\x89\xc7\x4d\x37\x90\x76\x1a\x0c\xb9\xa7\x34\x98\xa9\x00\x0d\x69\x3e\x33\x90\xc4\xf1\xc1\x93\x5a\xb3\xbb\x05\xa4\x35\xeb\x8c\xa7\xcb\xf1\xaa\xb4\x6d\x5f\x09\xd1\x76\xbe\x3d\xc5\x08\xe6\xfa\x72\x3c\x69\x9c\xf0\x78\x59\x82\xed\x75\x07\x74\x30\x4b\x3e\x32\x82\x96\x2e\xf8\x09\x24\xdb\x5b\xe6\x49\x7d\xc3\x00\x27\xb2\x58\x88\x8b\x99\x65\x69\xc3\xaf\x1c\xd0\x12\x27\x79\x03\xbd\xb4\x63\x5e\xa5\xac\xcb\x3f\x95\x0b\xa8\x8b\x37\x2e\x40\xcf\x83\x9f\xac\x44\xde\x52\x09\x65\xc6\x13\xbe\x5c\x37\xef\x41\xe8\xdd\x56\xac\xba\x9a\x0d\x28\x89\x68\x65\x20\x09\x79\xec\x4a\x19\x62\x28\x5a\x01\x9a\xda\x15\x7f\xbb\x4c\x88\x2d\xa7\x04\xe4\x6f\xe7\x49\x31\x92\x95\x73\x54\x84\xf3\xb6\xdd\xd7\x61\x47\x9c\xca\xa9\x92\x75\xad\x14\x4e\x55\x91\x9a\x22\xe5\x68\x7b\x88\x86\x78\x9e\x72\xca\x69\xd7\x98\x40\x56\xb8\x05\x94\xc5\x45\x57\x20\x51\xcc\x7e\x03\x89\xec\x5f\xd1\x8b\x5c\x70\x46\x06\xea\xd2\x28\x7c\xcb\x29\x9f\x47\x65\xf9\x63\x41\xe5\x00\x94\x47\x09\x48\x3c\x52\x8a\x21\x0e\x4a\x16\x0e\x6e\x15\x62\xf7\x1c\x53\x3b\x62\x50\x61\x23\x2a\x7a\xe5\x0e\xf4\x90\xe2\xdc\x07\xa9\x1e\xee\xbb\x5c\xf1\x81\xe6\x01\xe3\xc9\x83\x06\x25\xc5\xe7\x1e\x02\xd3\x5a\x61\x74\x69\x68\xcb\x1d\xef\x89\xf4\xb1\x9d\x75\xfd\x6e\x30\x39\x90\xf4\x3e\x23\xfa\x7c\x8a\x14\x31\xeb\x25\xad\x61\x40\xba\x04\xac\x81\x38\x90\x50\x99\xcd\xad\xba\x47\x2f\x50\xa4\x6e\xf3\xdb\xf1\xa4\x67\xc6\x08\xd2\x33\x59\x2c\xaf\xa3\x0d\x99\x2c\x20\x0d\x4d\x9a\xcf\xc9\xc6\xb7\x73\xac\x7a\x62\xe3\x9b\x78\xb2\xda\xbd\xd6\x32\x8b\x96\x1e\xef\x9d\x63\x55\x3a\x57\x82\x1c\x6e\x9a\x7c\xe4\x0e\x64\x6d\x38\x87\xb3\x49\xfb\xd7\x59\xdd\xb6\x64\x42\x88\xf1\xa4\xab\x8e\xe3\x2f\xd3\x66\x1d\x7c\x51\x33\x82\xde\x01\x9d\x55\x8a\x7d\xe8\x42\xb4\x04\x21\x94\x69\xb2\xcd\xab\x00\x69\x1f\x3e\x6d\x5b\x68\x17\x6d\x67\xbc\x76\x45\x2f\x96\x0b\x3c\x97\x3e\xdd\xd6\x80\xcc\xdd\xd0\x8b\x94\x38\x17\x5f\x2b\x57\x9a\x6a\xcd\x67\x1d\x5d\xfa\xc5\xcf\xe8\xda\xb1\x0a\x09\xeb\x52\x42\x5d\x29\xda\x0e\x51\x4e\x5c\x8e\xfd\x90\x8d\x96\x38\x80\xfd\x1c\xc0\x1e\xa4\xb6\xcb\xf3\xaf\x55\xb7\x49\x5d\x82\x81\xad\xda\x99\xa6\x15\xc8\xa9\xcc\x9e\x35\x41\xc2\xa4\x2e\x69\x41\xa6\xac\x2e\xb9\x72\xf4\xb2\xc4\x57\x76\xa0\x97\xae\x74\x20\xa9\x44\x7a\xcf\x40\x5a\xf9\x3e\x80\xa4\x69\xe5\x1b\x86\xae\xdf\xc2\xba\x0c\xb9\x02\x5c\xd1\x8b\x4e\x40\xfb\x3c\x29\x85\xcc\x15\xd0\x4b\xdc\x29\xb3\xde\xfe\x22\x66\xa6\xab\xab\x73\xe2\xe4\x08\x53\x2d\x3d\x1d\x48\x66\xb3\xf8\x76\xe9\x56\xaf\xf8\x06\xcb\xa6\xf1\xb5\xd2\xad\xc6\x95\x37\xcd\x3b\x5e\x01\x75\x71\xa0\x17\x90\x67\x96\x80\x4c\x43\x3a\x90\x30\x72\x06\xf4\xd4\x39\xf2\x4a\xcc\x69\xac\xa3\x4f\x29\x87\x52\xca\x40\x62\x9f\xc0\x10\xa9\x4b\xca\xe0\x2a\x91\x0f\x4d\x2d\xe0\xc4\x3c\xab\xd4\xca\x60\x2e\xf6\x33\x85\x2e\x4d\x58\x40\x7f\xd1\x94\x0d\xe6\xd3\xa6\x8b\xf3\x9a\xd1\xf6\x14\x0b\xc8\x3c\xc5\x45\xdb\xe7\xae\x8e\xa5\x6f\x9f\xcc\x7a\x49\x85\x66\xe5\xed\x81\xc4\x2c\xde\x09\xe8\xec\x58\xf4\xb2\x86\xec\x5d\x69\x7c\x4f\x94\xad\x2f\xe9\x2c\xe8\xb2\x01\x83\x03\x2f\x2d\x08\x16\xe0\x03\xc9\x5e\xca\xed\xb1\x44\x1a\x0a\xe4\x5b\xbe\x3f\xc5\xa2\x7f\xb5\xef\x4f\xb9\x38\xf0\x4b\xcb\xd4\xe1\x9f\x96\xc8\x46\x6a\xf1\xe4\x16\xa7\xc5\x93\xb2\x97\x76\x8e\x8e\x94\x12\xb9\x81\x06\x5b\x5a\xb3\x09\x31\xd8\xbe\x91\x40\x2d\xa9\x28\x5a\x70\x14\x5b\x4b\xd1\x73\x40\x5a\x8a\xe6\x0d\xdc\x22\x7d\x0d\x54\x96\x52\xa2\xc4\x8d\x2b\xa5\x44\xbb\x21\xfb\x52\x43\xe4\x9a\x18\xef\x70\x4c\x65\x70\x09\xc8\x6d\xb4\xcf\x1e\x4f\x4a\x24\xe3\xfb\xf6\x21\x30\xa5\x72\xa7\x4b\x45\x51\x7a\x8c\x7e\x2e\xa4\x5a\xb8\xb7\xa5\xb0\x68\xb1\xd6\x9b\x35\xa3\x17\x99\xe9\x26\xa8\xb5\x0f\xc2\x94\x02\x67\xb7\x39\x48\x8c\xa0\xa3\xf3\x99\xe7\xd6\x11\x80\xa0\x6d\x71\x61\x63\x06\x24\x63\x2d\xc8\xf4\xd0\x0a\x56\x88\x8f\x7c\x04\xc6\x95\x02\x12\x4a\x72\x1d\x3e\xcc\xf1\x72\x05\xa1\x94\xe0\x82\x78\xa0\x65\xcd\x40\x4d\x86\xdc\x80\x64\xba\x85\xf4\x3d\xc4\x73\x36\xbe\x5d\x96\xff\x16\x87\xec\xb1\xc4\xe7\x41\x40\xe5\x07\x90\x2b\x3b\xfd\x10\xf1\x49\x90\x86\x87\xc5\x51\xe4\x9e\x87\x88\x48\xec\xa6\xec\xeb\x25\x71\xc5\xca\xbe\x9e\x27\x1c\xd3\xd3\x82\x39\xfc\x8c\x54\x1b\x3d\x71\x1c\x65\x5f\x6f\x41\x24\xa5\xda\xa8\xc1\xd1\xdb\x86\x6e\xb3\xd9\x81\x24\x13\x71\x70\x6d\x43\x9f\x57\x3c\xf9\x94\x7e\xdb\xdf\x20\x65\x46\x4d\xe0\x84\x8c\xdf\x6d\x80\x67\x4f\x79\x33\x87\x2c\xf5\xb4\x6c\xca\xf9\x93\xb9\xbb\xa4\x12\x6d\x4b\xc4\xa7\x03\x3d\x3e\x5e\x16\x07\x7a\x89\x60\x33\x9e\xd6\xb3\x21\x01\xca\xe0\x9c\x47\x0d\x48\x6c\x57\x65\x04\x29\x8e\x46\xac\xcb\x96\xfe\x9e\x9d\x7e\xca\xa4\x76\xc7\x78\x47\x46\xc9\xa5\x45\x9b\xce\xca\x8c\xf7\xba\x70\x90\x11\xb6\xb5\xe4\xf1\xe4\x5b\x27\xce\xbd\x48\xed\x51\x07\x58\x20\x93\x68\x0d\xa6\x4f\x4a\x89\xd2\xc0\x3a\x99\x36\xfb\x6c\x03\xe8\x2d\x7e\xd4\x7d\xda\x44\x19\xec\x85\xcc\x90\x39\xce\xdf\x0b\xf3\x3a\xef\xc9\xc7\x63\x42\xa5\x6c\xa6\xab\xec\xa6\xd5\x10\x17\xd8\x6a\xc3\xca\xcd\xe5\xf1\xb6\x0c\x5d\x0a\x90\xd4\x9c\xac\xa0\x6c\x2b\x4d\x8e\xe4\x82\x24\x67\xc1\x7a\x48\xb7\x50\x1b\x18\xf9\xb6\x62\x13\x36\x16\x4d\x43\x8b\xb6\xad\xf7\xfe\x03\x44\x59\xca\x85\x76\xf1\xb9\x6f\x69\x91\x6f\x96\xf0\xad\xe3\x31\x63\xda\xd2\x29\x77\x88\xd6\xdb\x0b\x13\x13\x3d\x84\x37\x77\x0e\xd2\x5b\xf7\xd3\x84\xe7\x7c\x8b\xf0\x06\x2a\xbf\xe5\xe1\x57\xaf\x78\x52\xc7\xff\x03\xbd\x45\xe8\x19\x4f\x3c\x52\x89\x99\x29\x38\x20\xb8\xf6\xf7\x96\xe7\x25\x88\x26\x45\x47\xbb\x21\xe6\x56\x6d\xf0\x0d\x53\x86\xc0\x81\x40\x38\xaf\x61\x44\xeb\x40\x8e\x53\x88\x36\x99\x55\xbc\xbc\xf3\x92\x76\xa8\x59\x82\x98\x97\x6f\x78\xdf\xe2\xd3\x8a\x0e\x7b\x0c\x1c\xe8\x25\x64\x0a\xe8\x2d\x44\x6b\x86\xa6\xbe\xa1\xd2\x8b\x39\xa6\xc4\xcc\x74\xfb\xcf\xca\xe8\xba\xfd\x5b\x66\x74\xa1\x64\x1e\x3c\x29\x94\xb4\x09\xeb\x40\xe6\x21\x98\x8b\xed\xdd\xd1\x8b\x64\x86\x66\x64\x9a\x97\xd6\xe5\xaa\x3c\xb9\x45\x78\x33\x73\x11\x41\xcb\x89\x95\x10\x31\x1f\x31\xba\xc2\x49\xe0\x9f\xe6\x25\x2d\xe4\x65\x49\x60\xca\xef\xbf\x58\xb7\x7f\x20\xc5\x8a\xf8\x12\x98\x49\xdc\xa2\xfd\x66\xeb\x54\x10\x43\x2f\x56\x35\xcc\x24\xb9\x67\xb0\xf2\x69\x59\x7d\xe1\x55\x4a\x96\x58\xbc\xd3\x33\x49\x6d\xc5\x31\x9e\x52\x58\x64\x2e\xa4\x99\x24\x28\x77\xe6\xa9\x40\x83\x6e\x23\xd9\x81\xb4\x2b\xac\xb5\xd4\x17\xcd\x3a\xc9\x03\x29\x64\xc5\x17\xd2\xbc\x25\xf3\x21\x33\xcc\x5b\xc6\x68\x44\xea\x79\xdb\xb3\x88\xfd\xbb\xad\x38\x62\x1f\x14\xf4\xd3\x8a\x49\xed\x54\x88\x4f\x9b\x85\x5e\x24\x9f\x0d\xd6\xec\x76\xd0\x8a\xc9\xdb\xbc\x1d\xb7\xc2\x1e\xdd\xf6\x53\xf1\x25\x37\xb3\xac\x23\x5c\x48\x33\x0f\xc5\xc8\x98\xf4\xcd\x2c\x89\x65\xf0\x5e\x06\x5b\x0b\xd0\x94\x9c\xc5\x7b\x3a\xc5\xb6\x41\x1f\xc8\x6b\xc6\x7b\x76\x5a\xe3\x8b\xa4\x86\xc8\xbd\xc5\x93\xc2\xdd\x18\x41\xbc\xa3\x5d\x3e\x0f\x24\x9f\x27\xb0\x5c\xaa\x86\x5e\x59\x25\xa9\x1a\xea\x0d\x9e\x15\x31\x45\xb0\x10\xf6\x70\x2e\x28\x1e\xec\xd5\x5c\xec\xaa\x58\xed\x47\x5c\xda\x00\x5a\xc2\xf2\x44\x9f\x3e\xe1\xbe\xac\x66\x91\xdc\x3a\xcc\x73\xce\x22\x76\x2d\x5b\x79\x32\xad\x32\x40\x25\x32\xa5\x24\xa8\x71\x36\xab\xfd\xc4\x18\x4f\xe1\x3c\xd9\x36\xab\x03\x1d\xe9\xf7\x66\x66\x15\x6b\x9a\xbf\xb6\x2e\xed\x18\x58\x2e\xe9\xb7\xd9\x00\x5f\xa7\xa4\xdf\x5c\x7d\x09\xcc\xa6\x6b\xa6\xdc\xd1\xd6\xb4\x66\xd1\x76\x2e\xd5\xdc\x0b\x90\x2e\xf1\x1e\x4f\xca\xff\xaa\x7e\xeb\x67\x5c\xa7\xc2\x4f\x7a\x02\x95\x9b\xf5\xa3\x2c\x4c\xd3\xdd\x35\x7c\xb3\xcc\x76\x16\x74\x20\x4c\xcd\x26\x8b\xab\x1d\xfb\xab\x5d\x8a\xfb\x04\x99\xe4\x46\xdc\x72\x62\x6a\x16\xb4\xcc\x15\xcd\x26\xcd\x66\xe2\x00\x36\x50\x39\x7a\x79\xc9\x1c\xe3\xd1\xbb\x78\x39\x6e\x63\xbb\xf4\xd6\xdc\x68\x93\x19\x6e\x72\x58\xba\x34\x94\x97\x6f\xd5\x69\x41\xf9\x6a\x01\x59\x73\xcb\x7b\x72\x6f\xbb\x41\xc2\x8e\xae\xd6\xdb\x22\xa1\xb6\x56\x96\xb7\x8b\x14\x0d\x10\x54\x62\x6c\x2f\x10\x9f\x61\x27\x2b\x8e\xe3\xb0\x37\xc8\x15\x90\x35\x86\x5e\x25\x39\xe6\xd6\x58\xa5\xe1\x50\x33\xdf\xdb\x73\x58\x5b\x9a\x18\x41\xca\x85\x06\x11\x51\xfc\x43\xef\xe6\xa2\xed\x82\x5b\x2e\x0e\x92\x2c\xd8\xe3\x62\xd6\x53\x2e\xe9\x09\x64\x92\xed\xb9\xcf\x80\x24\xfe\x4e\xd6\x65\xd9\xe1\x9d\xeb\x69\x59\x91\x63\xde\x7f\xae\x6d\x17\x8e\x0e\x24\x73\x13\x97\x87\x8d\xa3\x88\xf0\x53\x92\xc7\xb8\x40\xfa\x6d\x5f\x05\x48\xe6\xb6\x53\x3f\x84\x69\xdb\xda\xcc\x5c\x24\x41\xf4\x79\xf3\xde\x32\x87\xe6\x6f\x90\xe9\x32\x77\x50\x79\xcb\xe7\xc0\x71\x1b\x07\x32\xa1\xf7\xac\x1f\xe2\x75\x2a\xd8\xfa\xb0\x4e\x12\xa2\x2c\x6e\x3f\xcf\x1e\x4f\xea\xca\x83\xf4\x3d\x30\xdf\x79\x3c\xf9\x00\x37\xbb\xa2\x1c\xc8\x3a\xc2\x68\xd3\xc1\x05\xeb\xe4\x03\x5c\x12\xc7\xff\xdf\xfb\xf9\xd6\x29\x0f\xdd\x56\xe3\x49\x11\xbb\x38\x39\xf2\xbb\x6d\xb3\x04\x24\xf9\x05\x5c\xc2\x47\xd6\xdc\xe9\x94\x8f\x6c\x8f\xaf\x7d\x22\x0c\x5f\x40\xe2\xc5\x21\xae\xe6\xc5\xef\x14\xbd\xbc\x24\xc9\xf1\x1e\x46\xc7\x0a\x24\x25\x0f\xa7\x43\xee\x9e\xbd\xb0\xba\x4f\xb3\x56\x9d\x27\xc5\x65\x96\x18\x6f\xd9\xf5\x74\x02\xbd\x64\x7a\xf6\xf7\x89\xa7\xce\x2d\xbe\x61\x9b\x25\xa3\x97\x6d\xfb\x84\xd7\xda\x4e\x8e\x71\x5d\xc8\x08\x58\x82\x45\xb2\x0b\x62\xec\xf4\xcb\x11\x90\xec\x8a\xb8\xe1\x96\xd9\x3f\x39\xec\x65\xe4\x90\x69\x87\x3d\x07\xe0\xd5\x29\x8e\xb7\x0e\xb0\xee\x8d\x9c\x3c\x80\x86\x94\x6d\x15\x48\xae\xa7\x57\xb4\xbd\x14\xd8\xe1\xd1\x6d\x07\x43\x0d\x31\x65\x07\xab\x09\x82\x6d\x86\x30\x18\x9f\xb7\x4e\x47\x87\x41\x7b\x1f\x29\xa1\xc3\xc6\xce\xb7\xb0\x35\x08\xaf\xac\x5b\xe5\x82\x86\xbc\xe5\x34\x7a\xf9\x3c\xac\xcb\xb2\x5b\x9d\xdf\x12\xe5\x25\xb3\x58\x71\x4c\xc0\x81\x64\x64\x31\x49\x59\x97\x49\x91\x91\x77\x89\xaf\xcc\xf5\xd3\x26\xc2\x6b\x34\x58\xe2\x2b\x6b\xb7\x70\xba\x64\xd0\xea\x69\xf0\xa4\x75\x84\xd1\x8b\xfc\x7c\xbb\x8d\x25\x4b\x66\xaa\x3a\x6b\x3c\xb9\x84\x68\xd1\x26\x17\xac\x02\x24\x9f\x83\x69\x94\x5c\xd7\x56\x9f\x8d\x59\x9f\x45\x6b\x9f\x99\x49\xd0\xba\x3b\x73\xf1\xa1\xb6\xb0\xb1\xcc\xcb\x8d\x1a\xd0\xe1\x75\x2e\x1f\xea\x25\xc3\x54\xae\xe6\x44\x56\x72\xa8\x52\xb4\x49\xc8\x44\x03\xbb\x92\x84\xcc\xbb\x07\x24\xb4\x33\xaf\xb3\x64\xc2\xea\xa0\xf2\x4a\xba\x8d\x33\x5f\x9b\xc4\xcf\xd8\x63\xed\x40\x36\x0d\x31\x17\x5d\x10\x5c\x33\xcb\x06\xad\x39\x78\xcf\xba\xbe\xc1\x78\x22\x99\x68\x44\x57\xda\x72\xb7\xf2\x41\x5a\xf7\xb0\xd9\x36\xa0\x2a\x0f\xeb\x0c\x24\x2d\x6b\xa7\x4d\x6e\x86\x76\xec\x39\x90\x4d\x58\x15\xe8\x5c\x48\x33\x47\x9b\xfc\x75\x8d\x92\xeb\xb6\x5f\xaa\xb9\xf6\xa5\xc8\xd7\x92\x13\x7d\x2e\xf3\x33\x8c\xa7\x70\x26\x2c\x04\xcb\x21\xde\x36\x0c\x1f\x48\xde\x71\x39\xa0\x97\xf4\xb1\x86\xc4\x2d\xd6\xeb\xbe\x81\xce\x4a\x5c\xbe\xee\x57\x16\xd1\xb2\xe3\xd2\x81\x44\xe8\x59\x25\x19\xbb\xba\x43\x3f\x0e\xa4\x83\xcb\xba\x64\x7b\xc8\x9b\xcf\x5b\x8a\x05\x2f\xb1\xd3\x79\xda\x8e\x12\xbd\x48\xe5\xc3\x3c\x15\x1f\x5e\x50\xb3\xac\xac\xd8\xaf\x31\x18\x61\xed\x4f\xf0\xc5\x81\xe4\x60\xd5\xa3\xed\xad\xef\x63\x74\xe9\xb7\xd1\x7a\x2e\x73\xa0\x0e\x71\x38\x90\x02\xb8\x7a\x40\x62\x0c\x4c\xe8\x57\xc1\x45\xcd\xbd\x28\x2a\xae\x5c\x3e\xfe\xcb\x61\x71\x85\x2f\x52\x5c\x5c\x43\x1f\xbb\x1c\xfe\x16\x2b\xa1\xf8\xb7\x92\x66\x40\x0f\x59\x16\x78\x52\x16\x9e\xce\x7a\x2a\x6a\x9d\x90\x91\x03\xc9\xcc\x08\x9e\xc9\x80\xd6\x4b\x8e\x36\xf9\x8c\x70\x1a\x8b\x4d\x9e\x25\xda\x5e\xf2\x0e\xf2\x17\x89\xff\xad\x9d\xf5\x94\xa9\xad\x15\x73\xed\xcb\xfc\x2f\xfc\xe8\xaa\xf8\x76\x0e\x20\x5d\x4f\xac\x84\x2c\x5f\xc5\x31\xdb\x07\x92\xc3\xa1\x19\x98\x55\x2d\xe9\xcc\x68\xb3\x47\x87\xd7\xac\x4a\x52\x1d\x9c\x9c\xaa\xcb\x0a\x12\xbd\xaa\x03\x72\xa2\x4f\x61\x08\xb2\xfe\xaa\xe7\x84\x77\x54\x37\xab\xea\x4c\xc3\xdf\xaf\x6a\x55\x11\x27\x5c\x36\xb2\x7a\x47\x2f\x32\xbb\x07\xad\xab\x5e\x33\x56\x49\x96\xaf\x96\xdb\xf5\x3d\x51\x96\x59\xac\x55\x88\xb2\xcc\x62\xb5\x80\x30\x32\x8b\xd5\x04\xd9\xa8\x3b\x7f\xe2\x7a\x0e\x74\x50\x24\x81\x84\x32\x7d\x65\x74\xca\xab\x4a\x4d\x3e\x7c\x5b\xad\x66\xa7\x6a\x10\xbb\xe9\x96\x4b\x23\x20\x05\x35\x80\x14\x8d\x78\x27\x6f\x52\x13\xd9\xb8\x20\x29\xcd\x68\x67\xee\x74\xc9\xf4\x55\xe0\xd7\x56\xb3\xc6\x17\x02\x2a\xd3\x57\xcf\x6c\x84\x22\x01\xcb\x8c\xf7\x64\x3f\x47\x7d\xb1\x14\xbb\x57\x10\xbe\x57\x3b\xc7\xa3\xe3\x81\xb0\xda\xf6\xc5\xe2\x05\x55\x54\x5e\xb3\x5b\xdf\x81\xe4\xee\x4d\x2f\x32\x7d\xb5\xc2\x17\xc9\xf4\x55\x9b\x39\xa6\xa5\x70\xf3\x56\x3f\x90\xc5\xf4\x02\xa4\x18\xaa\x1e\x6d\x45\xbc\xdc\x04\x52\x9f\xa0\xa4\x25\x01\x34\x8d\x4b\x92\x40\x0e\x82\x66\x93\x19\xa2\xf8\x52\xe0\x5e\xc6\xcc\xb1\xba\xc5\xed\xc4\x3c\x85\x22\xd7\x07\x92\xdc\x53\xe2\x49\x65\x99\x88\xf1\xa4\x00\x9a\x1c\xa4\x6e\x57\xba\xc2\xcc\x1c\x16\xc2\x85\x6b\x2f\xe2\x9b\x03\x6f\x23\x19\x52\xd0\x92\x79\xab\x22\x52\xaf\x61\x9e\x93\x03\x3f\xe4\xb2\x1c\x97\xaa\xfc\xbf\x0b\x3e\x2a\x6b\x98\x83\x01\xcf\x14\x0a\x5e\x7b\x0e\xa8\x4a\xe4\x0c\x48\xa6\x2f\x66\x2d\x59\xa3\xc7\x05\x31\xc4\xbd\x5d\x1c\xd5\x29\x07\xc0\x0a\x29\x9a\x66\x36\x7a\x40\xba\xac\xb8\xb6\xa7\xa5\x43\xf0\x45\xb1\xd7\x35\xd8\x8b\x89\xe2\xc8\x23\x2c\x9b\x66\xc1\x89\x65\xfd\x2f\x47\x55\xd6\x98\x76\x43\x6e\x64\x63\xa9\x8d\xb9\xd8\x56\x82\x29\x71\x6d\xf8\xca\x0c\x24\x2c\xe0\x12\xdf\xd6\x73\x72\xa8\xb7\x94\x2e\x41\xde\xb6\x2f\x78\x0b\xd1\x6b\x5b\xaf\x1a\xbd\x68\x5d\x12\x17\xbc\xad\x07\x41\x86\xe5\xfc\x38\xae\x12\x6d\x0a\xc1\xe5\x02\x7c\x0c\xcb\xad\x40\xd2\x8f\x56\x08\xbd\x75\xfb\x37\x6c\x89\xb8\xfd\x8a\x8c\xb9\x9e\xe6\x5c\x19\xcf\x5c\x7b\xe1\xe4\x3c\xad\xb2\xab\xbc\x27\xa9\xb2\x83\x2f\x72\x1c\x6c\xe5\xf3\x9e\x08\x36\x27\x40\xe1\x63\x6d\x80\x4b\xd2\xae\xd7\x74\xc7\x7b\xba\x00\x3f\xbd\x3c\x25\x1d\x56\x20\x59\x71\x2c\xf3\x2d\x05\x7e\xe5\x38\xe1\x48\x09\x7c\x91\x1d\x0e\x5b\xf4\xa2\x6b\x06\x3b\xca\x72\x58\x56\x83\x16\x58\xd7\x5e\x59\x25\x49\x09\x35\xdd\xd1\xe6\x94\x2a\x01\xd9\x01\x81\x11\xf0\xe8\xf0\xae\x28\xf8\xa9\xdc\xed\xdb\x20\x91\xf3\x68\x97\x3e\xb6\x00\x0d\xa1\x48\x40\xe7\x46\x1a\xa0\xab\x44\x8f\x5a\x6b\x0c\xf1\x10\x2a\x0f\xa0\xb7\x5c\x72\x78\x4f\xe4\xe6\x82\xf3\x51\x4c\x53\x2f\x2c\x93\xfc\x0f\xfb\x84\x5b\x54\x4c\x53\x43\x97\xb9\x5e\x76\xc0\xbf\xa3\xed\x1c\x16\xb4\x74\xcb\x11\x4e\xe8\x63\x97\x23\x9c\x12\x8b\xed\x08\x27\xc4\xa7\x65\xc1\xa7\x42\x98\x5e\x0e\x1f\x8d\x85\xd1\xf1\xc0\x12\xbd\x64\x30\x68\xa8\xe5\x97\x0d\x06\xce\xec\x71\xa0\x87\x48\x66\xb4\xe9\x36\x86\xd7\x51\xc4\x51\x8b\x83\xf4\xb2\xfe\x70\x32\x33\x2b\x02\x20\x37\xf2\x8c\xac\x68\xe2\x96\x3c\x23\x33\x66\x95\xe5\xa8\xa2\x5e\xe2\x49\x91\x86\x98\xb5\xdc\x8a\x1a\x28\xf9\x1e\x16\xa6\x1a\xd0\xad\xe3\x18\x6d\x16\xec\x32\x90\xb9\xa9\x02\x24\xa4\x67\xad\x1d\x39\x84\x32\x6a\x49\xe8\xcb\x98\x2b\xd6\x5b\x39\x10\x52\xf4\x29\x3d\x60\xac\xb5\x03\x79\x1a\xa8\xec\x40\x11\xec\xee\xcb\x66\x8e\x7e\xc7\x93\xe2\x63\x2d\xe2\xae\xb7\x4c\x9e\xe8\x40\xd7\xdb\x6a\x24\x70\xe2\x6d\xd3\x1e\xeb\x62\x4b\x46\x8e\xf7\x24\x4b\x5d\x10\xb4\x37\x6e\x5a\x7c\xbb\xc8\x22\x66\xb1\xf5\xb6\xb7\x0e\x97\xe3\x5b\xba\x53\x04\xd0\x25\x2b\x47\x0d\x89\xec\x0d\x57\x1b\x23\x88\xf8\xc4\xac\x25\xa6\x07\x5e\xcb\xae\xd1\x10\x9b\x97\x1d\x31\x83\x77\x7c\x3b\xa0\x21\x66\xb6\x7f\x0f\x30\x3e\x90\x88\x96\x31\x6b\x5f\xe6\xf6\x7d\x19\x6f\x59\x32\x2a\xc2\xf7\xbe\xec\x25\x6d\xb2\xb8\x25\x7f\x36\xf4\xcd\xdb\xf2\xe7\x3d\xa3\x4d\x9a\xf7\x1c\x6d\xd2\xa7\xb7\x80\xa4\xcc\x30\xb1\xdb\xb2\x6b\x94\xbb\xc7\x78\xef\x4f\xb0\x73\xdd\x17\x32\x1f\x6d\x3a\x7f\x08\xfb\x5b\xee\x9c\x35\x67\x66\xad\x95\xbf\xfd\xed\xfb\x82\x9d\xe1\x3d\x69\x7c\x1d\x8c\x73\xa0\xf1\x09\xa0\x3e\x90\xa4\xe6\xc6\xac\x25\x09\x38\xdb\xca\x81\xe4\x53\xfc\x81\x74\xfd\x8e\x80\xe4\xa3\x12\xdf\x8e\xa1\xd6\x23\x24\x0b\xfb\x56\x2e\xec\x24\x09\xde\x91\xc1\x07\x3a\xe7\x88\xeb\x70\xdb\x2d\x93\x13\xb7\x91\x7e\x7b\xbc\x67\xbf\xe8\x09\x24\xa9\x72\xd2\xa6\x75\x41\x19\xb5\xe5\xb2\xd9\xd0\x29\xef\x24\xd5\x1b\x66\xbf\x9d\x96\xbd\x59\x1a\xd0\xad\x0b\x3e\x20\xab\x40\x2b\x90\x22\x21\x13\x23\xd8\x7e\x96\x03\x7a\x2b\x9a\xf3\x7b\x43\xdf\x96\x91\x85\x88\xf4\x03\xe9\x1e\xf5\x7d\xb8\x65\xf4\x28\xf8\x3b\x6e\xf9\x73\x36\x87\x0a\xd6\xad\x54\x68\x19\x01\x6d\x4b\x8c\xad\x0e\xc3\x3e\x90\xc8\x77\xbc\xb7\xcc\xd9\xf9\xe3\x95\xeb\xac\x20\xf4\x6d\x8b\xb8\x7d\x32\xde\xb6\x90\xd9\x80\xce\x91\x83\x28\x6f\x19\x4b\xaa\x23\xd9\x0f\xb4\xa4\x77\x64\x3c\xe9\x7f\xb1\xec\x6f\x9b\x4e\x2a\x4b\x28\xe1\xb4\x07\xda\x65\xf1\x5d\xd9\x84\x70\xcb\x04\x52\x3b\x68\x90\x1d\xb2\xc9\xf2\xe6\x6d\xdd\x62\x07\x92\x51\xe7\x0a\xe8\x29\xb1\xcb\xa3\x17\xdb\xeb\xcd\xdf\x6f\x65\x75\x29\x98\x01\xb6\x8d\x1e\xf8\x2a\xec\x62\x4e\xf9\x03\x15\xa9\x0c\x32\x90\x1c\xd6\x4a\x40\x0a\xfb\x60\x9e\x12\x47\x4b\x9d\xbc\x67\xff\xd1\xce\xe8\x36\xf4\xb1\xd6\x76\x62\x1c\xa0\x96\x9c\x18\x73\xb5\x21\x65\x4b\x94\x2b\x19\x04\x95\x8b\x61\x85\xb7\xda\x96\x97\xe2\x20\xd5\x65\x3d\xbc\xa1\x06\xf9\x1e\x40\x5b\xeb\x02\xe4\x70\x18\x73\x61\x1b\x67\x3d\xfa\x6c\x52\xcf\x38\xe4\xf6\x40\xf2\x25\x07\x0b\x9a\x9c\x0a\xaf\x8b\x27\xd9\xcd\x80\x1e\x12\xe8\xe9\x53\x02\x7d\x87\xbc\xc9\xcd\xae\x39\x03\x52\xdd\xdd\xbe\x34\x8c\xd7\xbd\x82\x77\x40\x4f\x09\xdf\x37\x90\x2c\x04\xec\x91\x9d\xee\x1a\xab\xab\xfc\x55\xb5\x82\x75\x5d\x46\x32\x9c\x26\xb7\x24\x8f\x86\xb7\xf3\x56\xfe\xaa\x3c\x7c\xe5\xed\x8e\x4f\xf8\x00\xd2\xca\xb3\xd6\x96\x3c\x2e\xbe\x5d\x8e\x7c\x64\x76\x38\xd0\x2d\xf9\x85\xf7\x74\x02\xe0\xa9\x77\x17\x0e\xc2\x0a\xec\x2e\xed\x65\x8b\xf1\xac\xda\xf8\xf4\xf9\xfa\xe4\x87\xa8\x7b\x38\x58\xdd\x06\x73\xe2\x1e\x2b\xe4\xc6\x6e\x7d\xe8\xa9\xb7\xf3\x5d\xe1\xc5\x4f\xfc\x22\x5e\xfc\x8e\x51\xec\x4e\x21\x50\x1d\x95\xd8\xaf\x14\x90\x7c\x07\x26\xbd\x48\x3e\x8b\x0b\xc2\xf2\x0b\xae\x5f\x7b\xf8\x02\xe4\x74\x0c\x64\x6f\xef\xdf\x90\xe9\xb9\xc6\xe8\x3e\x63\xac\xae\xdc\xf3\x6a\xe6\xb2\x1a\x36\xdb\x36\x66\x26\xa7\x34\xec\x05\x5b\x49\x53\x1a\xf6\x90\x3d\x1d\xcc\xc1\xe9\x98\xf6\x2a\x62\xa7\xe5\xac\x57\xd0\xdf\x6f\x39\xe4\x75\xf4\xcd\x7b\xca\xf7\x0a\xef\x2e\x47\x1e\xf6\xa0\x0c\x72\xb3\x2b\x33\xfa\x5c\x56\xf1\x32\x9e\x4c\x82\xa8\xb4\xf6\xfc\x77\x99\x39\xaa\xa3\x12\x3b\x9e\x43\x7b\x5a\x9b\xd0\x02\xea\x22\xf4\xdf\x1b\xfa\xf6\xd4\x7d\x8f\x7d\x72\x4f\x3b\x85\x0f\x86\x97\x40\x8f\x3f\xa0\x83\x1b\x4b\xdc\x41\x4a\x9c\xd5\x70\xd9\xde\xf2\xd6\xab\x08\xfb\x7b\xd9\x53\x91\x8f\x58\x76\x73\x07\xd1\x1c\x88\x18\x04\x66\x89\x53\xc6\xbc\xb5\x25\x02\xe6\x06\x19\x5e\xd3\xdc\x1b\x23\x40\x4e\x03\x32\xc9\x9c\x40\xe2\xb7\x2d\x28\x3b\x82\x30\xe3\x12\x17\x31\x83\x1c\x96\x85\x4d\x97\xf1\xc4\xf9\x64\x90\x69\x39\xfe\x0d\xa4\x58\x22\x1b\x88\x80\x5b\xce\x7a\x0d\xd1\x78\x5b\xe4\xcc\xdc\xa3\xdb\x56\x71\x78\x08\x3b\xe4\x39\x12\xb0\x12\x41\x58\x40\x9f\x3d\xed\xa6\x45\x2f\xb2\x0c\x3b\xaf\x5e\x75\x94\x60\xa9\x90\xd3\xed\xe0\x8a\x1e\xef\x6d\xdd\xe2\xf1\xa4\x9d\x9a\x18\xc1\xf9\x0c\xe0\x59\xe4\x74\xd7\xd1\xae\x3b\x4a\x30\x07\xa1\xdf\xf2\x5a\x2e\x31\x6b\xa1\x4f\x8a\xf7\xb4\x12\x13\xd2\xa0\x48\xc0\xd6\x53\x3c\xa9\x5d\x01\x95\xe5\x74\xd7\x71\x4d\x74\x5c\x60\xc5\xe8\xe1\xc4\x3c\x25\x46\x57\x5c\x60\x0f\x3e\xc1\xd1\x7e\x9d\x6b\x5b\xf1\x7d\xd5\x61\xee\x07\xca\x9f\x24\x33\xd5\xc9\x77\x1a\x7e\xe6\xfb\x61\x11\xb7\xc6\x93\xc2\xb3\x1e\xbd\x28\x28\xb9\xc6\x7b\x52\xb3\xb0\x47\x32\xca\xb5\x1e\x7d\x4a\x0a\x0a\x7e\xed\x21\xb3\x34\x12\xa0\x93\xe8\x94\xc4\x31\x56\x32\x9c\x1a\x2b\xff\x90\x6e\xbf\xb2\x66\x8a\x27\xcc\x41\x52\x14\x4f\xd8\x63\x5d\x1c\x17\x58\x2c\x5d\x38\xe5\x4c\x8e\xd3\xa1\x3c\x32\x05\x33\x9c\xa3\x04\x4b\x90\x5a\x65\x80\x29\x09\xee\x4d\x22\x7c\xef\x30\x1b\x4f\xcc\xee\x1d\x48\xdf\x07\x9e\x29\x3f\x4b\xc7\x60\xe7\xac\x2b\x75\xf2\xed\x4f\x9d\x87\x3b\xc7\x93\xd2\x0d\x73\x09\x60\xcc\xeb\x01\xd9\xcf\x3c\x20\x9b\x82\xa3\x4f\x79\x46\x71\x72\x24\xd0\xf7\x2b\xe6\x29\x81\xfe\xe2\x4a\x90\x83\x5c\xc1\xa8\xba\x9f\x5b\xf1\x8b\x85\xb9\x38\x31\x6c\x7c\x83\x24\xc0\x04\x71\x75\x4e\x14\xfc\xf6\xc9\x89\xd2\x39\x0f\x08\xfb\x9c\xe9\x97\x19\x1f\xce\xa6\x62\x06\x7b\x5c\xf0\x8e\x19\x6c\x5c\x48\x2f\x13\x5e\x56\x57\x19\x4b\x6a\xe6\x6b\x5f\x0e\x13\x62\xa7\x5f\x0e\x08\x83\x25\x93\xcc\x5e\x72\x8b\xf7\x24\x25\x80\x05\x92\xd9\x6b\xb0\x4f\x2f\x5f\xf0\xb0\x79\x32\x4f\x16\x14\x40\xfb\xa5\xeb\x1e\x4f\x1e\xe7\x05\xe9\x48\x5d\xe4\x05\xb9\xfa\xf7\x86\xbe\xfd\x12\x07\xd3\x4a\x74\x6a\x81\x82\x6e\xec\x50\xcd\xb1\x52\x4a\x8f\x72\x37\x96\x69\x3b\xda\x88\x4f\x12\xef\x38\xd9\x32\x5b\x47\xe3\x40\x48\x88\xee\x84\x0d\x6c\x09\xca\xe5\x82\x9c\x3a\x53\x46\x81\x9f\xb1\x97\xdf\x8d\xc8\x22\x61\xb8\xc5\x56\x3b\x4a\x30\x5f\x01\x1d\xd2\x90\xa3\x17\x99\xf6\x12\x8b\xf6\xb6\x46\xdb\x42\xfb\x7e\x1b\x0d\x24\xb8\xb6\x61\xc1\xce\x4e\xf6\x8d\x38\x3d\x1f\xf1\x46\x9c\x9e\x63\x9d\x9a\x63\xf1\x4a\xd1\x75\x71\x20\x65\x0c\x68\x40\xcb\xce\x7a\x01\x29\xc8\x5b\xbc\xf1\x81\x14\x93\x25\x91\xac\x39\xde\xae\x3a\xa4\xa0\x39\xde\xae\xfd\xde\x8b\x8d\x8e\x13\x48\xde\x9d\xb7\x67\x96\x1c\x38\xde\x33\xd0\xad\x3d\x0a\x48\xab\x7b\xdd\x40\x5a\xf9\xcb\x23\x24\x91\x7d\x1f\xea\x03\x39\x4c\x9e\x3e\xa7\xcd\x7e\x13\x48\xb2\xcd\x88\x27\x95\xbd\x40\x44\xab\x0d\x09\x68\x7d\x66\xda\x64\xf9\xb6\x7f\xc0\x81\x8a\x3c\x9a\x2f\x20\xe9\xef\x4b\xb4\x59\xbf\x16\xbd\x48\xa8\xed\x05\x48\xc1\x15\x6d\x00\x49\x8c\x6d\xd1\x26\x37\xad\xc9\xf7\x2d\x93\x6f\x20\xa5\xa0\xb5\x3f\x6e\x23\x32\x6f\x8e\x0a\x64\x15\x45\xb4\xd9\x8d\x29\xda\x14\x20\x92\xbd\x2e\xb7\xa4\x12\x07\xf1\x1c\x48\x3b\x7d\x15\x20\xf9\x8c\xd4\x80\x7c\x01\x36\x20\x25\xb1\x6a\x5e\x89\xdb\xfe\x01\xf7\x05\x94\xc5\xb2\x30\x82\xc4\xd8\x3b\x7a\x91\x62\xc5\x26\xba\x36\x94\x14\xbb\xd9\x3b\xb7\x39\xf6\xaf\x9a\x1f\x6d\x8e\xfd\x2b\x37\xeb\x72\xe3\x91\xc3\x78\x4e\x15\xd5\xf9\x3e\xd9\x6d\xac\x54\x3a\xd0\x43\x24\x25\x20\xc9\x05\xec\x98\x8d\xa3\x3d\x35\x20\x91\x1b\x66\x6d\x73\xe8\x60\xc7\xb2\x35\xe8\x35\x20\xa9\xec\x2e\xde\xb3\x5b\x26\x78\x9d\x1d\xa5\xcb\x1e\x65\x47\xe9\x4e\x7f\xbb\x13\x63\x67\x76\x25\x4b\x2e\xb0\x82\xe4\x40\x4a\xe7\x55\xa2\x4d\xca\xcb\x2b\xda\x84\x83\x8d\xf1\xa4\x00\x2a\x9f\xf7\x74\xc2\xd9\x31\x67\x22\xad\xb4\x11\xfb\xc7\x3c\x2d\x9b\x0e\x4e\xb1\x64\xd3\x5e\x53\x07\xd2\x37\x4c\xde\xd3\x09\xe8\x1f\xc8\xb1\x7f\x3c\x29\x85\x85\x6d\x09\xcd\x31\x83\xb9\x26\x20\x4b\x48\xcd\x2b\x58\x08\x67\x9a\x40\x0a\x3f\x9f\x01\x39\xb1\x41\x05\x52\x0e\x3b\xd6\x5a\x66\xcd\x5c\xbf\xd7\x29\x9f\x47\xe5\xa4\x4d\x37\x4a\xc4\xd9\x12\x47\xb5\xda\x0c\x77\x25\xa0\xae\x43\x16\x4f\xca\x88\x34\xe3\x49\x71\x53\x35\xda\x14\x61\x97\x03\xd2\xdd\xc5\x31\x76\x22\xf0\x0a\x69\xa8\x8e\x5c\x6b\x01\x29\xc7\x3a\x48\x58\x71\x40\xf2\xb6\x38\x12\x30\x08\x4c\x35\x0f\x78\x33\xfa\xb2\xf7\x31\xbd\x38\xa9\x38\xe4\xb4\x5a\xc8\x6c\x1d\x48\x49\x5d\x58\xa6\xea\x5c\x1b\x20\x4c\xd5\xd1\xb9\xe3\x8b\x9c\x45\xa2\x07\x64\x2e\x9a\x3e\x39\x02\xf4\x29\x2e\x3a\x71\xac\x9a\x3c\x4d\x6f\x56\x42\x46\xce\x76\x5f\xd1\x26\x73\xc5\xbc\x80\xec\xe3\xe0\x11\x9a\x94\x0b\x85\x7d\x68\x36\x92\x31\x42\xb3\xa2\x23\x05\x24\x7f\x63\xe6\x22\x23\xe7\xb8\x20\xd8\x76\x62\x2c\x1c\xea\xb6\x6c\x5f\x9e\x40\x3a\x9c\x90\x4c\xb9\x2d\x66\x3b\xbd\x1f\x48\xc2\x37\x97\x80\x1d\x15\xdb\x07\xd2\x45\x0d\x82\x2a\x35\x6a\x0f\x92\xe9\x28\xc1\x99\x02\x5a\x72\xda\x62\x3c\x23\x61\xf2\x17\xc9\x54\x5a\x94\x86\x5d\x90\x82\xb5\x47\x06\x12\x31\x67\xe5\x6d\x38\xcd\x5c\x02\xdd\x19\x92\x5a\x3c\x69\x25\x01\x7d\x92\xbd\x0c\x48\x33\xb3\xf1\xb7\x39\xda\xaf\x04\xb6\x5a\x11\x30\xb9\x46\x1d\xfb\xd7\x59\x5d\x47\xfb\x5d\x23\xa0\xf3\xed\x81\xad\x36\x6b\x66\x8e\x9c\x63\xff\x0a\x44\xc4\xe9\x90\x6e\x56\x5e\xf1\x7d\xa4\x8d\x6c\x8e\xef\x2b\x23\xc5\x93\xe7\x70\x36\x70\xd0\x09\x90\xe2\x04\x28\xf6\xaf\x65\x70\x77\x4c\x67\xe3\x0d\x48\xa4\x0f\xc2\x3b\x14\xd8\xd5\xd9\x5b\xab\x1a\xec\x33\xd2\x9c\x4e\xbb\xab\x18\x82\xa0\xb7\x1c\xeb\xe8\xc5\x8a\xc6\x98\x0b\xb5\x14\x2a\x90\xf4\xe9\xac\xbc\x22\x01\x5b\xab\xcc\x53\x19\xb7\x2e\x4e\x87\x1c\x38\xcb\x0d\x73\x63\xa3\xea\xb8\x02\xf2\x39\x62\x04\xe9\x86\xad\x0d\x6e\x63\x5a\x99\x08\xe9\x9b\xf6\xc3\xe6\x82\x90\x72\xa1\xda\xa7\xa9\x39\x7b\x76\x1f\x10\x3b\x99\x5f\x6b\x02\x0b\xa6\xed\x59\x23\xde\x73\x2c\x2c\xef\x39\x18\x67\x34\x20\xe5\xe1\x80\xf0\x4e\xbb\x2a\x40\x4e\xa7\xd5\x48\x5c\x9c\x4e\x79\x94\x62\xf4\xed\xf1\x6e\x20\xf9\xa8\xd4\x80\x64\xe1\x01\x43\x96\x63\x76\x99\x8b\x34\x06\xdd\x8e\x8a\xcd\x31\x7c\xb9\x95\x80\x74\x1a\x61\xc9\x14\xa6\x57\xe7\xf7\x39\xe6\x9b\x63\xf8\x6a\x8e\x21\x6c\x94\x83\xc0\x48\xb9\xd0\x55\x3c\x42\x90\x4c\x12\x23\xa0\x2d\xbe\xd2\x28\xe9\xa4\x43\x95\xa5\x58\x32\x0a\x04\xef\xb1\x2c\x02\x72\xab\x2e\x79\x3c\x34\x08\xd3\xf2\xc7\xe7\x80\x14\x72\x0a\xd2\x5b\x49\x90\x58\x7a\x45\xed\x95\x01\x61\xda\x76\x91\x81\x84\xa1\x32\x60\x3b\x65\xa5\x2e\xf3\x03\x39\x24\x73\x00\xc9\x98\x00\x61\xb2\x3a\x61\xc0\x69\x29\xda\x2f\x57\x38\x18\x29\x17\x7a\xca\x01\x29\x65\x4e\x8e\x27\x9d\x90\x88\xb9\x38\x08\x9a\x8d\x70\x24\xe0\x4c\xf1\xa4\x8c\x95\x90\x0d\x47\x02\x06\xd1\x52\x0d\x89\x32\x21\x7d\xdb\xc6\x27\x08\xc5\x96\x26\xae\x83\x30\xdb\xfe\xdb\x37\xef\xd9\x14\x05\x81\xd9\x0e\xbc\x98\x01\x49\x11\x10\x6b\xa6\xab\xa4\x73\x54\xb7\x9d\xe7\x7a\x40\x5e\x09\x8f\xf7\x70\x4e\x02\xbe\xe1\xe1\x60\x80\x32\x81\x6c\xee\x05\x72\xd6\x5f\xae\xed\x87\x2f\x39\x8e\xea\xc3\x33\x83\xd4\x3e\x5c\xe7\x84\x1d\x93\xaf\x6e\x9d\x2d\xda\x1c\xff\xd6\x80\xec\x1a\xe5\x36\xc7\xcd\x5d\x5c\x6b\x12\xfd\x7b\x85\x31\x70\x0a\xd9\x04\x21\x74\x0a\xd9\x09\x1f\xeb\x24\x40\x35\xde\x93\x8c\x72\x81\x91\x8e\x6a\x0b\xd6\x43\x1e\xb8\xb9\x82\x83\x4a\x79\x9a\x27\xe4\x5b\xa2\x78\x4f\x9f\x36\xb9\x93\x71\x01\x2a\x75\x69\x49\xe0\xa7\x45\xf1\x0c\xc9\x54\xfa\x9e\x5a\x21\x53\x18\xcc\x3f\x6d\x53\x6b\x96\x81\xec\xef\xe4\xf1\x2c\x44\xc7\x8e\xbd\xac\x17\xe7\x54\xd9\xf0\x3d\xc1\x4f\xa7\xe1\xf9\xb4\x21\x36\xd3\x8b\x7c\x91\x13\x98\x25\x53\x77\x2f\x90\x3e\x9b\xb3\x3b\x2b\xa8\xc4\x9b\xd9\x3a\xfa\x03\xc9\x58\xc9\x75\x61\x01\x7b\xde\xd1\x8b\x0b\xad\x18\x92\xb1\x39\x3b\xe8\xba\x39\x35\x61\xcb\x77\x40\xca\xc6\xc2\x09\x7f\x3b\x7c\x83\xeb\xc9\xe9\x04\x3b\x6b\xe6\x14\x82\x71\x72\x94\x4d\xa7\x0e\xd6\x45\x11\x6f\x3d\x4e\x2a\x19\x73\xb8\x0e\x15\x64\x96\xdb\x1d\x90\x5c\x21\xa3\x6d\xdb\x63\x85\x11\x48\x26\xc0\x08\xce\x33\x22\x3b\x58\x73\xd0\x57\x75\x08\x51\x23\xcc\x6b\xf8\xfb\xe6\xe5\x24\xc3\x57\x40\xf6\xf5\x0a\x48\xd7\xaf\xbf\x7d\x4a\x86\xae\xae\xbd\xd2\xa6\x8a\xb4\xb4\x19\x6d\x92\x00\xb9\xd2\xa7\x32\xca\x74\xf6\x68\xca\x00\x3a\xae\xeb\x7b\x4e\xd9\xf1\x5a\xdd\x81\x17\x6d\x26\x13\x5e\xf3\x41\x53\x56\xc7\x7e\x47\x9b\x1d\x90\x3e\x90\x0e\x60\xf5\xf0\xc9\x07\xd0\x22\xf5\xbc\x45\x32\xed\x6f\xdc\xe6\x6d\x63\x42\xe9\x40\xba\x04\x7c\x6f\x4f\x79\xcb\xb6\x44\x2f\xb7\x3d\x2a\x8d\x84\x53\xde\xb2\xc5\x99\xd9\x1a\xb1\x55\xd6\xfc\x1d\x48\xc9\xa6\x33\x23\x60\x64\x19\x40\xe6\xb7\x03\x7a\x09\xed\x78\xcf\x9a\xb1\xc6\x7b\x5b\xc9\xad\x27\xa3\xeb\xc8\xdd\xcc\x5a\xde\xb2\xed\xf2\x4d\xed\xd8\xaa\x62\xfd\xda\x81\x94\x60\xa6\x06\x24\x9f\x46\x1f\xb2\x99\x2d\x33\xf8\x9a\x99\xd9\x89\x4c\x67\x40\x32\xce\xf8\x00\xce\xac\xe3\x68\xa7\xb4\x03\x89\x13\xb9\x03\x72\x0c\x3d\x23\x48\xd7\x5e\x63\x2e\xcb\xa6\xd2\x09\x24\xcf\x85\x19\x90\x02\xb2\x2f\x7a\x91\x26\xd5\xaa\xa2\x03\x89\xdb\x9f\x7c\x9f\xfd\x6a\xe3\x49\xc7\x72\xc5\x5c\x24\x92\x0d\xdf\xf0\x44\x76\x95\xe8\xc5\x72\x81\x05\x5e\x57\xbb\x28\x5c\x41\x44\x7d\x15\x90\xde\x95\x23\x06\xe8\x4a\x19\x08\xf6\xaf\x38\x2c\xdf\x47\x67\x16\x2b\x72\x4c\x16\x5d\xe2\xa1\x0f\xf6\xaf\x58\x13\x7e\xc5\x7b\xef\x4f\x72\xf2\x36\x8b\x0e\x60\xf5\xa1\x76\x31\x87\x6c\xe7\xb9\xe6\x6a\x0e\x2d\x73\x20\x8a\x6c\x25\x0e\x78\x6d\x2e\xee\x90\x6d\x1a\x6a\x8e\x16\x2b\x5c\x41\x33\x4a\x45\xf9\x49\x25\x98\xc9\x9d\x75\xa9\x4e\x60\xcb\x09\x50\xf6\x97\x9a\x39\x9c\xf6\x96\x1d\x3d\xda\x74\xe0\xd9\x69\xfb\xc7\x4e\x30\x4b\x71\x65\xcd\x59\x55\x0e\xd4\x75\xe9\x54\x20\x39\x62\xb2\x2b\xd5\x7e\x44\xbe\xd6\x1c\x73\x56\x9d\xec\xe6\x40\x92\x04\xac\x5c\x98\x15\xd9\x86\x5e\x74\xa5\xdb\x8f\xa8\xcd\xaa\x4b\x07\x21\x7a\xca\x95\xb5\x39\x2c\xe9\x40\xf2\x39\xb8\x99\xcb\x76\x4e\xf3\x78\xcf\x17\x4b\xb4\x29\xf0\x82\xb6\xe6\xb8\x4e\xda\x9a\x0d\x8b\xac\x7c\x73\xd0\x97\xf9\x6d\x62\xdc\x50\xdd\xcc\xe6\x4a\x27\x96\x97\x66\x23\x2f\x7b\x06\x92\x71\x8d\x55\xb2\xd3\x6b\x66\x57\xec\xf4\xca\x85\x3b\x9b\xb3\xc4\xb1\x9b\xcd\xd5\x46\x5a\xf4\x29\x23\x35\xe7\x4f\xe5\x34\x2a\xac\xdc\x6c\xeb\xf7\x84\xf5\x07\xd2\x29\x66\x5d\x24\x47\xd6\x14\x33\x13\xb3\x11\x14\xcc\x8e\xb4\xd7\x60\x3c\xa9\xd7\xb8\xc8\x66\x73\x4e\xf3\xc2\x93\xdb\x7e\xf4\xcc\xda\x81\x25\x50\x37\x1b\xb0\xe7\xf5\x3d\xa7\x3c\xb1\x6e\x5f\x5e\x18\x95\xcc\x28\x81\xf4\x8a\xa9\x2b\x41\x4e\x3b\x3e\x8d\x0d\x48\x1a\x3c\x88\x48\xb7\xcb\xb6\x85\xe1\x69\xab\x38\x1a\xa0\xd9\xed\x53\x3c\xe8\x53\x37\xfc\x00\x29\x14\x61\x57\x2e\x10\xbb\x3b\x3d\x11\xe8\x6a\xe1\xf4\x06\x41\xed\x73\x3b\x6b\x3c\xa9\x7c\x1a\x33\xfa\x94\x78\x58\xe2\x3d\x45\x6f\x65\xda\x5c\xbb\x2d\x33\x17\xdf\xaa\xdc\x87\x12\x5c\x5b\x62\x93\x64\xdd\x2e\xf9\x66\x84\x6d\x6d\xa2\xd1\x60\xd8\x09\x07\x32\x35\xc8\x8f\x30\x80\xbc\xf4\x37\x90\xb4\x74\xdc\x95\x12\x5c\x7b\x82\xa4\x38\x4d\x4d\xaf\x01\xbd\x25\x80\x32\x82\x11\x94\xcb\x43\x82\x6b\xb9\x4a\x40\xca\xd3\xc6\xe6\x2a\x82\xb0\x96\x8b\xb9\x1c\xfe\x70\x20\xaa\xba\xea\x47\xb5\xdf\x44\x73\xd9\x8f\x6a\xaf\xe5\x36\xe5\xf1\xdb\x2e\x8e\xff\xb0\x36\xf8\x8a\xb6\x2e\x27\x38\xbe\xc1\xb1\x6a\x5c\x41\xb6\x9f\xd7\xf8\x22\x6b\x7c\xcd\x07\x4d\x09\xbc\xbd\x41\x1a\x86\x73\x27\x70\x55\x5a\xe0\x1d\x31\x9e\x04\xde\x74\x45\xdb\xd2\x3c\xf9\x06\x67\xa5\xb3\xfc\x32\xa7\x0d\x3e\x5c\x1e\x13\xbf\x82\x0a\x34\xc5\x97\x04\x24\x9f\x98\x11\xef\xc9\x5e\xc0\x3c\x9d\xf1\x17\xed\xe5\x54\x42\x9b\x8e\xcc\x30\xa7\x7d\xbb\x2d\xa3\xcc\xe9\x74\x48\xac\xd9\x64\xcd\xfc\x45\x13\xf7\x3c\xda\xb4\x66\x71\x89\xcb\x6b\xb9\x3b\x21\x67\x73\x15\x94\x3e\x52\xbc\x67\x77\x47\x46\xc0\x9f\xba\x03\x49\xb9\x77\x45\x2f\xda\x31\xd8\x84\x69\xcb\x02\xa4\x5d\xb6\xfc\x5a\xe2\x1b\x74\x55\xda\x24\x78\x20\xa5\x19\x62\xe5\xa7\x73\x51\xc4\xcc\x74\x21\x75\x30\x79\x0a\xcb\x27\x2c\x84\xc5\xed\xc9\xc9\x59\x56\x23\xb1\x0f\xcb\x97\x0e\x78\xbd\xec\xd1\xcc\x3c\x9d\x6f\xf8\xe2\x4a\x20\xdf\x30\xe4\xd4\x82\x79\x1e\x01\x49\xa9\x04\x19\x96\xb4\x5d\x07\xc4\x7c\x71\x51\x47\x2f\x0e\x8c\xf7\x3c\x9d\x4d\x27\xc8\x9b\xd3\x06\x27\xe8\xd2\x32\x91\x84\xbe\x38\xc5\xaf\x33\x99\xb4\xb9\x9c\x09\x8e\xfd\x5b\x2e\xee\x30\x19\x4f\x6b\x56\x3f\x4f\x2a\x91\x2e\xf4\x65\xe9\x6a\x8e\x5d\x91\x29\xbf\x64\xd8\xa0\xed\x40\x16\x88\xeb\x76\xa6\xc9\x1a\x90\xf8\x66\x56\xde\xbe\xe4\xf6\xe9\x6f\x73\xe3\x43\x55\x81\xe4\x70\xc8\xd5\x25\xc9\xb8\xa5\x7a\x7f\x4f\x94\x95\x4e\xa7\x57\x10\x74\xdb\xa9\x09\xf2\x26\x97\xf4\x11\x47\x47\xc1\xb0\x2d\xee\xd1\xed\xfb\xb7\x31\x51\x67\x59\xc8\xf4\xa2\x54\x26\x08\xca\x93\xac\xbe\x1c\xc7\x6d\xc7\x97\x11\xbd\x98\xb8\x32\x9e\xf9\xed\x19\xbd\x28\x4e\xfe\xd3\x8b\x35\xb0\xd1\xa6\xbc\x4d\xa0\x88\x8a\xf3\x74\x0c\x68\x84\xe2\xce\x1c\x6d\xe3\x53\x88\xe5\x40\xd2\x57\xde\xd1\xe6\x5c\xb6\x01\x29\x19\x29\x24\xcc\x05\x78\x32\xb3\x96\x0f\x40\xc7\xdc\x34\x1f\xce\xf3\x05\xd1\x92\xd5\xbf\xf4\x2b\xde\x33\x6f\xec\xef\x93\xd5\xbf\x60\x5a\x98\xb2\xfa\x97\x9a\x03\x1a\x9f\xa2\x30\x07\x72\xf0\x41\x07\x92\x45\x99\xa3\xf3\xd0\xa5\x73\x7d\x20\x27\x51\x64\x3c\x47\xd1\x41\x24\xe5\x3b\xd0\x82\x43\x73\x9e\xe2\x11\xef\x39\xb8\x22\xc6\x93\x27\x41\x88\x5d\x0f\x1b\x6a\xe1\xb4\x94\x7d\x38\x97\x11\x90\xd3\xc5\x27\x20\xf9\x0e\x70\x19\x3f\xa9\xce\xe1\x59\x3b\x6c\xa0\x46\x2f\x84\x60\x4f\x20\x71\x53\xcc\xda\x55\x67\x6a\x89\xf7\x94\x59\xa4\x46\x9b\xbc\x7c\x62\x74\x11\xc9\xe0\xc2\xec\x11\x10\x07\xc9\xc9\x75\x3e\xb3\x76\x20\x70\x0a\x28\x49\x83\xce\x93\xce\xa7\x01\xbe\x3c\x51\xa8\x0d\x20\x49\x3a\x31\x33\xab\x28\x20\x30\xca\x3e\x5c\x83\x43\x93\xc2\xa2\x63\x47\x99\xf6\x08\x48\xe0\xee\xcb\x21\x28\x90\x0d\x7b\x04\x04\x21\x7c\xa1\x74\xf1\xe8\xf6\x08\x40\xd9\xe6\x50\xe3\x92\xb9\xa8\xed\xd3\x8f\x86\x79\xda\x23\xa0\xb1\x4a\xf2\xd4\x2f\x1d\xac\x93\x6f\x7e\x8e\x2b\xcf\x39\x85\x1d\x5e\xdf\xe6\xcb\xa5\x96\xb8\x12\x5c\xc7\xa3\x82\xbb\xae\xdc\x31\xf9\xa2\x97\x93\x5b\x45\x9f\xdb\x55\x6e\x3c\x4f\xe7\x0d\xbe\x90\x7b\xac\x94\x08\x62\x8e\x27\x3b\x54\xe3\xed\xb0\x6e\xa4\x0b\x0a\x54\xc0\xce\xbc\xcd\x50\x70\x5d\xc8\xaf\xbd\x85\x3a\xe1\xed\x34\xb7\x77\xbc\x27\x09\x17\x06\xc6\xd9\x74\xa6\x2d\x19\xd3\x9e\xe5\x05\x62\x4e\x8e\x1c\xf0\x45\x21\xd1\x25\x71\x72\xde\x9c\x00\x46\xd7\xbe\xa3\xbf\x8f\x70\xe9\x2b\x9e\x14\xa7\x1c\x73\x71\x9d\x12\xb8\xef\xf7\xb6\x5b\x5f\xbc\xa7\xbc\xc8\x26\xd8\x4b\xee\x01\xd5\x69\x59\x0f\xa4\xb4\x62\x26\xca\x4b\x6a\x8f\x8a\x7e\x7b\x59\xed\xe1\xec\xe6\xcd\x91\xcd\xf9\xc8\x9f\xdf\x11\xe5\x25\x9d\x48\x99\x33\x5e\xb4\x2b\x16\x9d\x4a\x58\xbc\x33\x93\xc1\x79\xae\x00\x4d\x89\x02\x4c\xc6\xe9\x2b\xbd\xf1\xeb\xda\x56\xc4\xbb\x17\xbb\x81\x3b\x45\xcf\x81\xc4\xb9\x9a\xd4\xae\xe4\x64\xd2\x46\x8a\x25\xbf\x82\xe2\x7c\xbc\x07\xd2\xad\x6a\xde\x63\xc9\xf1\xbb\x3b\x67\x6b\x5b\xc9\x3e\xb7\x99\x5e\x7c\x53\x17\x46\xd0\xf1\x87\x14\x39\x40\xba\x38\x0d\x65\x5b\xc9\x55\x1f\xac\xd3\x5a\xca\xc7\xdb\x8b\x51\x79\xa9\x72\x6e\x2e\xb4\xdd\x92\x19\x0a\x5f\x24\xab\x7f\xb1\x93\xd8\x81\x84\xf4\xdd\x7d\x5a\x05\x63\x2f\xcd\x03\xc9\x7e\xee\xfb\x7e\xdd\xf2\x37\x6e\x46\x8a\x75\x43\xb0\x1b\x90\x7c\x2f\x2b\x6d\x2e\x48\x95\xe8\xd3\x89\xa1\xee\x80\x14\xbc\xd9\x18\x41\xc4\x1c\xee\x74\x49\x59\x53\xef\x98\xcb\xb2\x23\x18\x4f\x3a\xa7\x44\xcc\xda\xda\x67\x56\xde\x1e\xe2\x95\xd5\xbd\x9d\xb6\xf4\x03\xc9\xea\x0f\xa2\x59\x75\x83\x21\xcc\x61\xcf\xd5\x95\x16\x0e\xe4\x8c\x7c\xf1\xa4\x72\x3c\x80\x92\x52\xdd\xe4\xce\xb7\x4b\x59\x53\xb1\x52\x3b\xec\xb9\x61\xa6\x5a\xaa\x86\xdd\xb0\xe5\x13\x04\x1d\x3b\x9d\x1d\xcb\xd5\xa3\x4d\x0e\xf8\x99\x5e\xec\xd4\xcf\xf1\xc8\x2e\x53\xc4\xd1\x91\x0f\x7a\xb6\x83\xd5\x81\x14\xee\x7e\x33\xde\xb6\x1d\x85\x3e\xb7\x35\xbe\xcc\x5a\x97\xd5\xa0\x17\x67\x03\x4e\xac\x4b\x71\x30\xce\x15\x90\xf5\xfe\x15\xc8\x6a\x32\xaf\x84\xf2\xff\x76\xb8\x29\xc2\x97\x5d\xbb\xb5\x2d\x97\xd6\x1c\xf1\xa4\x24\x55\xbb\x03\x1e\x48\xde\xb2\x8c\x20\xf3\x79\xc5\xbf\x63\x61\x22\xe7\xa4\x3a\x48\xd8\x7e\x4b\x8d\x20\x61\x57\xdf\x68\x0e\x12\xce\x4e\xa1\x7a\x20\xc5\xbb\xb2\x9e\x0e\x19\xbe\xef\x78\x4f\x57\xac\x79\x71\x07\x10\x17\x7b\x96\x1f\xc8\x89\xa1\xe8\x73\x99\xfb\x2e\x40\x92\x51\xee\x78\x4f\xdf\x90\xe9\x73\xb9\x30\x40\xbc\x27\x23\x19\x67\x53\xea\x92\x72\xb1\x2e\xd5\x7e\xd8\x66\xc2\x1c\x15\xdc\x21\x84\xab\x8a\x5d\xbb\xf8\x06\xa5\xb2\x6d\x5c\x95\x4b\xea\x8b\x06\x47\xbf\x9a\x6d\x33\x9c\x62\x2b\x25\xb8\x66\x16\x4a\x09\xb3\x48\x4b\x26\xeb\x76\xf1\xb5\x2a\x11\x5d\x60\x13\x88\xe7\x45\x0f\xb0\xa4\x31\xc8\x2e\x4f\xd5\x1c\xcf\x5b\xa2\xcf\xee\xac\x2a\x60\x56\x77\x42\x63\x9b\x12\x97\xfc\xe8\x7b\x82\x46\x76\x6c\x56\x5e\x17\xfb\xb5\x8f\xf4\xbd\x4e\xd9\xc1\xb7\xb9\xb2\x14\x0a\xa9\xcd\x76\x6d\x3b\x90\x89\x48\x40\xb2\xe9\x5a\xd9\xbe\xec\xae\xee\x14\x80\x07\x52\xea\x14\x8e\x95\x85\xef\xc2\x26\x0d\x8a\x39\x45\x9b\x3c\x93\xe3\x3d\xd7\x25\x33\x1f\xbb\x24\x7c\xf7\x20\x30\x12\xbe\x1b\x6a\xf9\x25\x1b\x72\x71\x2a\x93\x03\x39\xb0\x93\x36\xc7\x5d\x71\x90\xe4\x84\x5e\x06\xc8\xab\x1c\xb1\xb5\x42\xe8\x87\xf3\x0e\x58\x1c\x5d\xc3\x29\x07\xcd\xb3\x2c\x39\xa1\x67\x27\x65\x3f\x90\xfc\x94\x39\x48\x12\x94\x33\x7a\xce\x35\x9d\xd0\x06\xd2\x20\xeb\x6f\x85\x9f\x59\xd3\x24\x85\x2d\x93\x10\x5d\x32\xe3\x4d\x5b\xc5\x99\xb5\xf3\xc0\xe6\x78\x4f\x42\x2d\x8a\xa3\x65\x0b\xef\x7d\x05\x24\xc9\x83\xf5\x94\x58\xd9\x82\x18\x28\x4b\x6b\x0d\x14\x59\x0e\x56\x81\xd8\x59\x74\xbc\x38\x48\xf2\xfb\xee\xd3\xbc\xe3\x92\x78\x98\xe1\x78\x97\x52\xaf\xb6\x0a\xa9\x5d\x0e\x68\xb8\x79\x72\x3b\xf3\x9c\xbf\x61\x3b\x57\x0a\x84\x42\x09\x55\x33\xea\x84\xb5\xbd\xd3\x5c\x02\xf2\xb5\x2e\x68\x98\x97\x7d\xad\x27\x7d\xca\x2f\xba\xc7\x11\xdf\x56\x5f\x70\x09\xd8\xdb\x19\xef\x8b\x25\x6f\xe7\x3c\xb9\xe0\x1f\x36\x92\x99\x47\x5a\x2e\x2e\x9a\xd9\x69\xa7\x12\x2a\xf0\x25\x4a\x0e\x3a\xd0\x1f\xae\x87\x4b\x08\x30\x17\x25\x07\x1d\x41\xf6\x55\x98\xb3\x25\x4e\xc0\xc3\x29\x65\x46\x40\x4a\xbf\x04\xf1\x79\x38\x15\x2a\xb3\x96\x3c\x31\xe2\x3c\x28\x95\x50\xef\x8c\x27\xf3\x64\x2e\xec\xe6\xd3\xd9\xc6\x39\xd4\x4f\x7b\xab\xc3\xa4\x58\x12\x88\x5d\x71\xf2\x20\x8c\x4f\xeb\x69\x23\x12\x2b\xaf\x90\xe1\xd6\xef\x80\x5c\xa8\x2a\x9e\xd4\x55\xd9\x18\x41\xf2\xd9\x80\xf4\xc9\x33\xb9\x25\x58\x2b\x99\x35\x2b\xae\x9e\xcb\x1e\xc6\x41\x52\x9e\xe6\x9b\x59\xf9\xa7\xb9\xc5\x1e\x90\xc2\x97\x21\x6f\x36\x6b\x62\x96\x5e\xd4\x52\x64\xd6\x2f\x07\xb1\x5b\x52\x25\x2a\x18\x7f\x84\xe5\x0a\x89\x95\x0b\xd0\x66\xcd\xf8\x22\x99\x35\x5b\x65\x75\xed\x0d\xec\x9c\x3c\xcd\x11\xb5\x05\xd9\x6d\xbd\xac\xd5\x65\x57\x5e\xfe\xa2\x46\x9b\x33\xdf\x80\x05\x72\xe3\x6d\x19\xec\x51\xf5\xbd\xea\xcc\x88\x07\xd2\x1e\x41\x6d\x14\x43\xdb\x1a\x57\x90\xaa\xef\xf5\x09\xfb\x44\x64\x2c\x7d\x62\xd6\xa4\x17\xa7\x3c\xc2\x0f\x6c\x39\xad\xa7\xbd\xc7\x0f\xa4\x35\xe3\x6c\xbe\x8d\xad\xd7\xb7\x7e\xca\x8d\xb0\xd9\xcc\xc6\x3b\x6c\x36\xc5\x64\x2c\x98\xf3\x49\xf6\x0d\x76\x4e\xe1\x46\xa8\xaa\x13\x04\xb5\x08\x16\xf5\xe6\x12\xe6\x09\x01\xdd\xd4\xf0\x30\xaf\xb3\xc5\xee\x97\x7e\xf3\x9e\x75\xca\x93\xf7\xf6\xef\x65\x56\x0f\xd4\xe5\x16\xc6\x93\xc4\x80\x4d\x20\x69\xe2\x3c\x17\x87\x64\x36\x0e\xc4\xb6\x8f\x2f\x36\xe4\x6d\x5e\xdc\x6e\xf5\x8d\x40\xcb\xcb\xc7\x63\x27\x0b\x92\xe6\x4e\x37\x7e\xbc\x17\xbd\xd8\xf3\x24\xf3\x9e\xf3\xd0\x99\xbb\xd9\xf2\xea\xad\x33\x07\xa4\x3a\x67\x16\x08\x77\xb2\x87\x63\x01\x5a\xae\x9a\x4b\x9f\xe6\xde\xac\x32\xd8\x4e\x5f\x99\x62\x9e\xe2\xe1\xaf\x4c\x1b\x69\x4b\x79\x6f\xbb\x30\x00\x7d\x9a\x8f\xb5\xbe\x79\x27\x87\x76\x14\x7a\x91\x5e\x1c\x45\xc7\x76\xb2\x22\x57\xcb\x6e\xfb\x76\x4e\x61\x23\xef\xbe\x45\x5c\x5d\x83\xe5\x40\x52\x3f\x99\xab\xdd\x92\x0b\x1a\xa6\x8c\xed\xb4\x97\xed\xd3\xa6\x14\x52\x9f\x5e\xe4\x80\x64\xc4\xde\xb7\x13\x9c\xfa\x58\x11\x0f\x8a\xf5\x7e\xdf\xce\x14\x61\xcc\xda\x4e\x87\x74\xe7\x78\xb2\x88\xdf\x8e\x27\xab\xbe\x2f\x20\x29\x5d\xcc\xdd\x6c\x57\x02\x71\x0e\xb7\x03\x59\x5b\x1a\x6d\xf2\x00\xba\x18\x01\x05\x10\x4f\x8a\x47\xc2\xb9\x73\x93\x58\xf3\xa6\xcd\xa9\x5e\x2f\xbe\xc1\x21\xc3\x39\x9e\x94\xb7\xac\x15\x01\x5b\xbe\xc1\x15\xf3\xcf\x96\x6f\x70\xee\xec\xf4\xed\x5c\x29\xb1\x4a\xf2\xcc\x70\x19\xa2\xb6\x9d\x90\x13\x51\x7c\xe7\xe1\xb0\x8f\x68\x33\xc7\x9b\x81\x9c\x04\x28\x9e\x94\x4a\x6b\x46\x9b\x83\x55\xbc\x2b\xd9\xf2\x60\xa5\x17\xd7\x1a\xe1\x34\x4a\xf2\xa8\x4e\xc9\x75\x20\x85\x0c\xc7\xe8\xcb\x9e\x51\xbc\x67\x3f\x0d\x33\x45\x3b\xbb\x78\xea\xa0\x17\xd7\xb0\xe6\x34\x66\xa7\x5e\xed\x01\x59\x47\x3f\x81\x64\x2a\xfd\x8c\x60\x23\x27\xbd\x80\xc9\x01\x09\xcf\x38\x71\x45\xea\x43\xae\xa0\x5d\x84\x3d\xa8\x91\x1c\xfd\x5a\x31\x87\x3a\xc2\xb5\x16\x5f\x09\x8e\x70\xad\x95\x79\xca\xc3\xb8\x60\x70\xdd\x45\xbc\xbf\x23\xf3\xda\x2e\xb2\x52\xa1\x3c\x71\x2c\x6c\x73\x56\xe6\x46\x2c\x2c\x72\xf2\x76\xc2\x25\xd4\x87\xdb\x15\x4b\xe2\x1b\x9c\x46\x34\xce\x58\xa1\xb4\x42\x03\x12\xff\x0b\x16\xc8\xa0\xdc\x90\x97\x76\x71\xf0\xdd\x8c\xf7\x9c\x5f\xf1\x7b\x9d\xf2\x76\xa6\xa6\xc2\x27\x55\x27\x6e\x61\x93\x24\xf8\x34\xfc\xf3\x76\xf5\x11\x60\x41\xab\x6d\x9e\x90\x14\x89\x3a\x2d\x81\xae\xb2\x0c\xf7\xca\x07\x2a\xa0\xb7\x0f\x08\xa1\x32\x27\x95\xc2\x06\xca\x6a\x5c\xe2\x78\x90\x00\x09\xe2\x6a\x3b\x71\xe2\xc0\x87\xa8\xc3\x7b\xdb\xc4\x80\x79\xba\x1a\x6d\x8b\x36\x25\x65\x07\x79\x1b\xe1\x06\x0d\x48\x82\x1d\x1b\xdf\xec\xb8\xc4\xcc\x9a\xcb\xc1\x72\xe0\x9b\x73\x7b\x40\x40\x9b\x43\x34\x5a\xbc\xf7\xd2\x91\x63\x04\xe7\x16\x00\x0d\x9a\x75\x68\x6c\x8b\xc4\xae\x7e\xc7\x5c\x5c\x65\xad\x30\x17\xdd\xf0\x03\xa4\x68\xe2\xf6\xf1\x11\xdd\x9d\x6b\x66\x00\xd9\xd1\x2d\xda\xac\x20\x29\x40\xca\x16\x66\x01\x7b\x77\xa7\xee\x6c\x01\xc9\xc4\xca\xa1\xb6\x8f\x2f\x3c\xcb\xee\x36\x33\xb2\x0f\x4a\x95\x54\x5b\xe6\x49\xe7\xbd\x03\xe9\x9d\x1c\x69\x94\x68\x53\x39\xa1\x16\x6d\xd6\xb9\xfa\x8b\xba\xfd\x42\xd8\xcd\x8e\xc0\x3b\x81\xf4\xde\xe4\x1b\x9c\x31\x6b\xc4\x93\x72\x71\xe2\xe0\x76\xe7\x15\x83\xa0\x39\x0c\xd9\x99\xf5\x0e\xa4\xdd\x6c\xf4\x29\x9c\x88\xf5\xa4\xf2\xc8\x8c\x36\xd7\xc5\x8b\xf7\xe4\xc7\xcb\xb5\xd6\x9d\x7a\x0a\x2c\x20\xd9\xaa\xe5\x2c\x82\x8b\x91\xb3\xf6\x70\x4d\xe9\x2b\x20\xa5\x4c\xbf\xe3\x3d\xa9\x8a\x18\x41\x66\xd4\x5c\x59\x6b\xcb\x75\x37\xe4\xc6\x72\xdd\x0d\x93\xa2\xea\x22\x05\xeb\x08\x21\xca\x83\xeb\x62\x28\xac\x1b\x25\x0f\x01\xcb\x85\x59\x0f\x17\xf0\xca\xd1\x8b\xcc\xd9\x33\x20\xe5\x93\x8b\x2f\x32\xef\xc8\x39\x92\xc1\x35\x3b\xff\x4a\x73\x68\x73\x43\x51\xe5\xd0\xe6\x96\x63\x2e\x92\x12\xc6\x15\xef\x29\x0e\xb1\x45\x9f\x56\x49\x0e\x20\x31\x22\x96\xf2\x28\xdb\x8a\x34\xe3\xb0\xe7\x82\xa3\xe9\x9e\xce\xdf\xc1\x65\x35\x9d\xb1\x83\xb9\x4c\xfb\x5a\x9b\x93\xa4\x34\x6b\x06\x3f\x65\x9a\x2d\x48\xbf\x7b\x8a\xda\x04\xdb\x25\xd3\x6c\xeb\x5c\x9c\x0e\x90\x9e\xd1\x8b\x08\xaf\xcb\x0b\x34\x17\x6a\xed\x70\xfb\x5b\x46\xd5\x16\x17\xa0\x8c\xaa\xbd\x80\x9f\x0a\x97\x6e\x28\x4f\x1c\x2e\x5d\x52\xcc\xc5\x66\x69\x18\x11\x8c\x9c\xd0\x25\x99\x35\x1b\xfe\x47\x8e\x42\x2e\xb8\xcb\x6d\x19\x32\xf3\xbc\xe3\x49\xf1\xcd\xf5\x7b\xef\x0b\x17\x47\x6d\x25\x06\x5c\xce\x80\x34\x80\x94\xf6\x92\x3b\xc1\x16\x50\xe7\xed\x3f\x90\x0c\x30\x1c\x6a\x79\x26\x37\x04\x1f\x87\x2f\xb7\x04\x21\x5c\xf6\xf5\x04\x41\x2d\xfe\x62\x68\xa0\xc8\x69\xba\x02\x72\x69\xa3\x06\x24\xbb\x66\x0a\x48\x41\xa6\x20\xbd\x33\x66\x39\xad\xe7\x81\xe4\xe7\x0a\xd1\x72\x8e\xdf\x09\xe7\xb3\xd1\xf8\x32\xba\x1d\xcf\xb8\x39\xe5\xf1\xdb\x09\xed\xd8\x32\x4f\x36\x62\xea\xf6\x76\x5d\xe1\x18\x5d\x82\x6b\x07\xe9\xed\xe3\x1b\xbc\xa3\x43\x8d\x27\xdf\xf0\x10\x1f\x14\xdb\xf2\x10\x91\x44\x7d\xe1\x50\xe3\x82\xaa\xc8\xa1\xc6\xb9\xb2\xb9\x36\x2c\xce\x0f\x24\xdf\x52\x0e\xa7\x44\xf1\xd2\xa2\x17\x97\xb3\xe5\x12\x78\xe0\x5c\x36\x80\x44\x78\x47\xb4\x3d\xc4\x49\xd2\x8b\x88\x1d\x7e\xd8\xfb\x61\x27\x38\xf8\xca\x87\x0b\x5c\xc1\x89\xa8\x86\x47\x73\xee\x84\xb6\x9f\x76\x0e\xe4\xc2\x7d\xda\x71\x09\xd2\xe0\xac\x5f\x41\x32\x1d\x24\x8c\xb9\x77\x3f\x1d\xaa\xca\x61\x71\x9e\xaf\xf6\x79\xcf\xd6\xf4\x09\xe4\x6a\x2d\xf1\xa4\xfc\x1f\x62\x3c\x47\x17\x5a\x58\xdc\x12\xda\x5b\x6e\xd1\xa6\x23\x0e\x67\x2e\xef\xe3\x86\x42\xcd\x61\xc1\x39\x2e\x63\x67\xef\xaa\xec\xad\x42\x7f\x0b\x71\x88\x5b\x75\x33\x2a\x1e\x16\x2e\x2c\x5a\x42\x42\x72\x29\x51\x4c\x51\x51\x3c\x94\x95\x77\xb9\x50\xe2\x41\x5d\x12\xb4\x8d\x11\x6d\x8e\x2b\xf3\xcc\x5e\x3e\xc6\x8c\xf7\x92\xd5\x01\x37\x2d\x87\xf7\xe6\xc2\x05\xf8\x72\xaa\xf5\x78\xd2\xc5\xa1\x38\x0f\x2f\x9b\x89\x21\x99\x2f\x2e\x32\xe6\xe9\x6c\x25\x56\x5f\x50\x94\xbf\x41\x16\x6d\xda\xbb\xc0\xba\x97\x35\xe8\xac\x84\x4c\x7b\xe5\x86\x2d\xb1\x2f\x72\x5c\xcd\x16\xe1\x11\xda\x5d\x4a\xb4\x60\x6a\x73\xcc\x6e\x71\xc6\x95\x46\xb9\x50\x57\x01\x6c\xfb\x2d\xae\x1d\x63\xac\x2b\x7b\xb6\x90\x4d\xdf\x04\xbf\xfb\x6b\x1d\xa5\x8b\x2b\xab\x6b\x79\xb6\xb8\x74\x94\x96\xaa\xdc\x50\x94\x37\x8c\xdd\x04\x52\x45\x24\x48\xfb\xdb\x58\x0e\xbe\xbc\x4d\x6a\xa3\x6d\x3b\x08\xeb\x02\x72\x90\xcb\xe9\xa5\x0f\x27\x8d\xb2\x2f\xcd\x81\x94\xba\x53\x97\x4e\xa7\xb2\xa7\x8b\xb8\x76\x57\xf6\xac\x4e\xf7\xd4\x47\x24\x86\xea\x40\x3a\xd3\xa2\x8a\xdd\x95\x3d\xbb\xc3\x5a\x0e\xa4\x72\xcb\xba\x3c\x0e\x64\x47\xe1\x6f\x75\xca\xdd\x85\x3e\xbb\xc3\xac\x0f\x24\xc2\x9b\xa2\x53\x65\x5f\xeb\x4c\x4d\x0e\x2c\xae\xc2\xdb\x5d\x04\xb4\xb9\x5a\x44\x77\x11\xd0\xea\x63\xd5\x5d\xf6\xb3\xfb\x88\x77\x87\x1a\x17\xdb\xcf\xbb\x43\x8d\x8b\x63\xe3\xba\x83\x8b\xdb\x15\xef\x39\xdb\x6a\xe6\x73\xed\xa4\x32\xfd\xb9\xc9\x69\x05\x6f\x3f\x29\xc5\x43\xb7\x11\xe9\x40\x22\x37\xed\x06\x72\x16\x82\x02\xa4\xa0\xeb\xdb\xdf\xa0\x90\xe1\xd2\x46\x02\x92\x78\xc1\xf2\x5a\x65\x30\x0b\x4f\x5a\xbf\x76\xf3\x24\x69\xdf\xe9\xd3\x5c\xc3\xf0\x93\xb7\x73\x50\xd3\xe7\x2d\x97\xb8\x7c\x07\x24\x9e\x7a\x02\x61\xfe\x29\x40\x8a\xcc\x8b\x27\x9d\xac\x73\x46\x9b\xcc\x4d\x3a\x8e\x7d\xd8\x08\xe8\x44\xef\xdd\x01\xbd\xd5\x11\x5a\x07\x92\x20\xc9\xac\x49\xfe\x14\xbd\xd8\x63\x9b\xd5\x95\x11\xb0\xf7\x98\xb5\x38\x50\x57\xa5\xee\x2e\xe6\xd9\x46\x7c\xc3\xb6\x4b\x1c\xef\x49\x24\x73\xe2\xc9\x3e\x54\xff\xa2\x14\x9e\x94\x69\x6f\xd8\x1c\xd3\x5d\xcc\xb3\x5d\xe0\x4b\x26\x33\xc5\x00\x92\x76\x1d\xe4\xcd\xf6\x16\xc8\x15\x48\xc2\x7e\xa7\x4f\x19\x24\x5d\x90\xbf\x3b\x14\xb7\xc7\x5c\x9c\x6f\xd8\x7e\xbc\xdd\x85\x37\xfb\xa4\x4f\x95\xda\xac\xf3\x8e\x36\x1f\x55\xda\xa6\x53\x91\x77\x20\x19\x0f\x5b\xb4\xd9\x19\xca\x23\xb8\x0c\xa7\x0d\x7d\x07\x52\xe0\x7f\xb4\x39\xa7\xf7\xbc\x81\x14\xcd\xd8\x0d\x51\x16\xf3\x4a\x40\x0a\x67\x6a\x13\x48\xb9\x1a\x66\x3c\xe9\x08\xd7\x01\x24\xc5\x0a\xb8\xab\xa4\x51\xed\x62\x6f\x2b\xce\x65\xf4\xe9\x9a\xd8\x3d\x03\x3d\x64\xd7\x28\x40\x32\x64\x46\x9f\x22\x68\x3d\x7a\xc1\x91\x8f\xf7\xec\xc8\xd7\xa3\x4d\xfb\x1e\xb3\x96\xeb\x9e\x2d\x4a\xdd\xb5\x2e\xeb\x98\xd1\x26\x2e\x93\x33\xad\x98\xd6\xea\x44\x46\x7d\xb8\x16\x47\xff\x40\x12\xe1\xa1\x28\x4e\xc7\xeb\x3c\x7b\x07\x12\x57\x3b\x3c\x6b\xd5\xa5\xec\x1d\x5c\x52\xdc\x6a\xb3\xba\xa4\x7f\x22\x55\xe9\x73\x3a\x6b\xa2\x47\x6f\x4e\xa8\xca\xac\xe5\x45\xdc\x2e\xb0\xa7\x89\x0c\xcf\xe8\xc5\x15\x4b\x8a\xdf\xeb\x66\x2f\xc0\x9e\xee\x82\xc0\x10\x50\x45\x95\x96\x0c\x2d\x70\x25\x4a\x7b\x69\x1d\xc8\x79\x04\x81\xa4\x96\x6b\x9c\x38\xb9\xff\x56\xfb\x92\x1f\x48\x52\xd0\x9c\x40\x92\xeb\x20\xe6\xdd\x21\xfb\xe9\x5b\xef\x8b\x3e\xec\x1b\xec\x5c\xc4\xdd\x81\xab\xdd\x9a\x9c\x03\xa9\xc6\x14\x77\x89\xfc\x7f\xbb\xc3\x4a\x0f\xe4\x2c\xfe\x40\x4e\x53\x33\x18\x9e\x98\x6f\x7a\xf1\x6d\x0c\x4a\xda\xff\xd7\x5a\xb3\xee\xc0\xd5\xde\xb9\x4b\x5c\xdf\xa3\xf2\x11\xf2\xdc\x2d\xf1\xb9\xce\x52\x95\x21\x37\x0e\x16\x75\x52\x9e\x03\xc9\x02\x3a\x02\x32\xc9\xe4\x3d\x07\x4f\xb3\x65\xae\xfd\x71\x83\x5a\xc3\xae\x51\x20\xef\x20\xec\x72\x02\xc9\xf2\xdd\x02\xd2\xf7\x71\x74\x24\xca\xd5\x5c\xa2\x4d\xe8\x7a\xbb\xcd\x61\xa5\x19\x62\xa7\xcc\xbd\xcd\xf9\x34\x3a\x05\x26\x2b\x64\xd8\x61\xa5\x85\xc3\x32\x89\x5c\x33\x12\xca\x94\xd8\x13\x07\xc2\xc6\x43\xd7\xf2\x3d\x90\x32\x3e\x40\xb4\xa6\x33\xf7\x72\xa7\x4f\xe7\xe8\xc8\xd1\x26\x81\x09\x52\x34\x31\x95\x32\x82\x13\x10\x82\xae\xd3\xfe\x01\xec\xb4\xfd\x6a\x47\x7c\x83\x7d\x15\x58\x09\x85\xa3\xf6\x02\x29\x52\x81\xc9\x6c\x2f\xf0\xee\x00\xd4\x6a\x9d\xe4\x81\x92\x54\x53\xfe\x3e\x49\x64\xc5\x59\x1d\x0e\x24\x12\x56\x13\x90\x7d\x77\x26\xd0\x5b\x3a\x50\xcf\x6c\xb3\x9e\x09\xe8\xd6\x65\xd5\x81\x2c\xdb\x34\x20\x27\x57\xe7\x49\xa7\x37\xbf\x03\x92\x1f\x2f\x7b\xe4\x38\xcb\x06\xf6\x6c\x5c\x95\x26\x90\xf4\x95\xac\xbc\xe4\xa5\xd2\xb8\x46\x37\x6a\x32\x66\x26\x7e\x3b\xae\xbc\xed\x52\x9b\x97\x7b\x79\xc0\x3b\x7a\x66\xce\x4c\x9c\xb8\xba\x70\xa1\x04\xcf\x1e\x16\xcc\xd9\x77\x3b\x54\x8e\x78\xcf\x69\x4b\x59\xdd\x87\x75\xa0\xec\xfb\xc3\xe1\xd2\x57\x01\x92\xb9\x29\x7a\x11\x29\x9a\x10\x2d\xcb\x3d\x37\x3b\xe6\x8a\x84\x17\x57\xf3\x53\xca\xaf\x1b\x12\x8d\x4b\x23\x04\xd4\x95\x05\xaf\x78\xcf\x2b\x18\xef\x2d\x63\x24\x4f\x4a\x1f\x3b\xb9\x3c\x5c\xf7\xef\xe2\x82\x90\x61\xb1\x4f\xce\x8a\x2b\xfd\x95\x11\x6d\x52\x1f\x42\x19\x9e\x04\xe9\x17\x20\x31\x1b\x5c\x87\x96\x51\x3a\x23\xc8\x94\xd8\x0a\x6c\x82\x5d\x13\xe3\x8c\xd9\x35\xf1\x1a\xf1\xa4\x52\xfc\xe6\x0b\xc8\x8c\xa4\x47\xb0\xc4\x92\x20\xb5\x32\x3a\xe6\x09\xb6\x3a\xa5\xf0\xcd\x89\x73\x7a\xa2\x6b\xc6\x7b\xd6\x99\xfb\x8b\x5e\xd6\x53\x73\xc1\x2b\x26\xb2\xa5\x14\x90\x4f\x23\x90\x2c\x43\xe7\x5a\xfb\x96\x28\xbf\x48\x88\xc2\xb4\x8d\x76\xdc\x72\x12\x67\xca\x60\x32\x12\x60\x72\xa9\xd1\xa6\x83\xcb\x26\xbd\xa9\x60\x3b\x80\x6c\x92\x08\x48\x5c\xd1\x8c\xf7\xe4\x78\x06\x91\x54\xd8\x65\x1e\xdc\x87\x6f\xd5\x80\xb0\x6b\xd4\x81\xec\x3b\x1b\x90\xf8\x19\xee\x58\x09\x3e\x6d\x80\xa0\xaa\x25\x58\x1b\x07\x57\x82\x4f\xbd\xb8\xf3\x9c\x8f\xb7\xb0\xd8\x6f\x67\x0b\x4b\x01\xe9\x6b\x3f\xbd\xc8\xce\xcf\x2d\xa7\xc0\xce\x32\x21\xd8\x6f\xa7\x11\xe5\x70\xbe\xed\x84\xce\x25\xf0\xb6\x8f\x0a\xb7\xf8\xdb\x21\xc3\xbe\xba\xa6\x45\x24\xeb\xad\xba\xeb\x05\xe6\xe9\x5e\xe6\xe5\xd0\x1c\x8f\x30\x2d\x30\x59\x79\x72\x20\x5f\x87\xd1\x8b\xe2\x99\x06\xef\x39\x0a\x32\x05\xe4\xd4\x4c\xb7\x21\x57\x45\x68\xbc\xe7\x14\x95\x99\x11\x6c\xd4\xb9\x78\xcf\xfc\xd3\x1d\xef\xa9\x76\xf7\x64\x74\x0c\x92\x09\x48\xfe\x08\x33\x7a\x91\x6f\xf7\x15\xef\x49\xf3\x9e\xe2\x3d\x29\x10\x4a\x8c\xa0\x1c\xdb\x37\xef\xc1\x65\x32\x33\x61\x9d\x4d\x27\x07\x92\xd3\x5d\xac\x99\xf4\xc6\xf6\x3c\x39\x90\x6c\xf9\xf1\xed\x52\x2a\x39\x11\x64\x77\xe0\x6a\x75\xe0\xcc\x81\x1c\x8c\x23\x5c\x9a\x36\xfe\x3a\x3e\xf3\x40\xbe\x90\x26\x90\xb2\x25\x5c\xd1\x26\x53\x9b\x0f\xee\x74\x3e\xde\x9b\xaf\x95\xf1\xb7\x73\xb1\xcc\xe4\xa3\xda\x03\x72\x76\xb9\x80\x64\x28\xfa\x3c\x69\x89\x93\xf1\x2c\x71\x5a\x02\x9c\x54\xa3\x19\xd1\x26\x1e\xd0\xfc\x9a\x63\x68\x8b\x7d\x85\x0e\xe4\x4c\x34\x7c\x91\x54\x37\xd6\x8b\x1f\x48\x15\x59\x46\xbc\xa7\xd0\x2a\x56\x37\x81\xd7\x01\x2d\x45\xe2\x32\xba\xcc\x70\x2e\x7c\xd0\x67\x72\xe6\x47\xbe\x3d\x8c\xbf\x1d\x48\x7b\xc4\xfe\xd9\xc0\x6b\x17\xd1\x03\x49\x12\xe8\xf1\x9e\x94\x51\x66\xb4\xe6\xed\x72\xa8\x85\x27\xed\xf3\xc3\x4a\x38\x4a\x77\x80\x67\x72\x0a\xcd\x8d\x79\x5a\x1e\x74\x2d\xcf\x03\xd9\x05\x60\x00\x59\x1a\x8d\x36\x7b\x15\xd1\x8b\x42\xc5\xad\xf1\x3d\x90\xd9\x35\x9e\x94\xf4\x3b\xa2\x4f\xb1\x17\xf5\x03\x89\x8f\xcd\xcc\x6c\xbb\x5a\x0b\xdf\x6e\xb6\x8b\x73\x64\xb3\xad\xbd\xc9\xfa\xcc\x62\x1d\x91\x70\x23\x82\x97\x1d\xcb\x56\x66\x98\x8b\x76\x94\x6e\xb3\x97\x4f\x77\x94\x6e\x1e\xf7\xf7\x9c\xb2\x43\x78\xbb\x35\x6a\x07\xb2\x4b\x3a\x90\x75\x3e\x10\x11\x5b\x6a\xd1\x9e\x4c\x59\x6a\x3b\xe2\xb6\x03\x7a\x1b\x62\xa5\xcb\x31\x36\x5b\xf6\xfb\xcc\x56\x4a\xb0\xd5\xce\xf7\x04\x8f\xe4\xc0\xdc\x8c\x28\x30\x65\x71\x6d\x13\x22\xa2\x9c\x4e\xed\x02\xd1\x8a\xab\x4b\xb3\x14\x16\x40\xad\x9b\x3a\x90\x0d\x37\xd1\xe6\x54\xa1\xf4\x49\x70\xea\x04\x72\xa6\x34\x9e\x54\xc2\x43\x3b\xbd\x1f\xc8\xc9\x3a\xe3\x49\xd9\xac\x63\x04\x13\x9f\x49\x9f\x4e\xdc\x62\x79\xc2\x05\x1f\x9b\x7d\xa6\x0f\xa4\xd0\x58\x36\xb0\x38\x5f\xb4\xf9\x51\x07\x02\x97\x04\x29\x72\x20\x70\x6b\xd1\xa6\xc0\x19\xbe\x9d\x62\x38\xbe\xa9\xa7\xf3\x22\x77\x0e\x92\x0b\xde\x24\x90\x49\x21\xbc\xad\xb1\x7f\x15\xaf\x86\x0a\x24\x61\x2a\xde\x73\xa8\xea\x88\x27\xe5\xa2\x36\xe3\x49\x95\x83\x1a\xd1\xa7\xf2\x85\x80\xf4\xd5\x3a\x6c\x56\xb0\x3a\x90\x9b\xa3\x5a\x1d\x5e\xe4\xeb\x77\xca\x88\x5b\x11\x0f\x67\x75\x48\x34\x97\x87\xd3\x3d\x95\x3b\x20\x57\xc3\xe0\x3d\xe7\xd5\x2d\xf4\xb9\xcd\x97\x30\x1e\xe9\x32\xa3\x4d\x61\x18\x8c\xa0\xa2\x95\xd9\x21\x28\xdd\x01\xbd\x6d\x80\x9f\x2e\x53\x99\xc0\x41\x65\x81\xee\x2d\xc5\x7b\x32\x4f\xde\x01\x59\xf5\xe6\xf1\x64\xb6\x6d\xd6\x49\x76\x57\xa2\xac\x39\xde\x13\x69\xa8\x60\x8f\x42\x71\xeb\x04\x93\x1b\xf9\x5e\x06\x90\xce\x0a\xdf\xd0\x94\x91\xa4\x72\x01\xca\xa4\xdb\xca\x8c\x27\x65\x54\xe5\x5a\x53\x60\x6e\x9b\x5c\x09\x0d\xdd\x77\xbc\xa7\x82\xfc\x57\x3c\x69\xbf\x7d\xb7\x75\x18\xa6\x0c\x24\x5f\x8c\x1a\x6d\xca\x64\x02\xb9\x71\x46\xea\xc2\xde\x5a\xf8\x1e\xac\x52\xc7\xc7\xbe\x01\x29\x56\x34\x46\xb0\xb4\x16\x7d\x8a\x7d\x6a\x23\x9e\x94\x8f\x2f\xd7\x45\x77\xea\xb0\x9b\xf1\x14\xda\x71\x83\x2f\x4a\x1a\x55\x1a\xab\xe4\xec\xd1\xb9\xc4\x93\x2a\x13\xc0\x55\xe9\xc4\x50\x9d\xb9\x48\xa2\xae\xf3\x0a\x48\x61\xe4\x50\x86\x61\x5f\x0c\x28\x83\xcd\xaf\x17\x44\x52\xe6\xd7\x9e\xb8\xee\x87\x33\x84\x80\xad\xc3\x11\x1a\x29\x20\x7b\x2d\x77\x20\x51\x06\x4e\x87\xe4\xe4\x52\xa1\x28\x8a\x31\x2d\x95\x4b\x4e\x12\x6e\x0d\xd6\x63\x2a\xd8\xbe\x70\x8e\xec\x3a\x9b\x73\x40\xca\x6b\x7d\x7f\xaf\x53\x9e\x12\x6a\x7b\x86\xbf\x70\x58\x69\x1b\x01\x49\xb3\xd2\x19\xd0\xb5\x38\xcc\x8c\xcf\x69\x21\x05\xa2\x6c\xdb\xa5\xf3\x60\x75\x87\x79\xe6\xce\xe7\x2a\x2b\x73\xc9\x2d\x20\xb9\x7a\x43\x36\x16\x02\x68\x07\xd2\x21\x83\xeb\x53\x08\x68\x47\x47\xe8\x30\xcf\x0c\x67\xee\x30\xcf\xdc\xd9\xce\x65\xf7\x20\x10\xcd\x25\x41\x1b\x07\x57\x66\xc6\x7e\x47\x9f\xf6\xb6\x04\x7d\xb6\x73\xb8\x99\x6f\x9e\x1b\x1b\xf2\x00\x92\x32\x03\xc2\xbb\x5d\x6a\x9e\x8d\xdf\x2e\x5b\x05\x19\xde\x4e\x90\x09\x71\x55\xa0\x65\xae\xf0\x4f\x2e\x1e\x1a\x7c\x9e\x53\x10\xdd\x33\xda\xe4\x64\xcf\x76\x3a\x4b\x32\x8a\x9c\xb9\xe1\x1a\x3a\x90\x0f\x35\xef\xd9\x7a\x0f\x11\xd9\xd6\xd8\xb3\xd6\x4e\x5d\xe4\xf0\xf3\xee\xa8\xcb\xd2\xe1\x83\x6c\xc8\x44\xc3\x15\x91\x95\x1c\x32\x8b\xe2\xb1\xd6\xa4\x2e\xa2\xcd\x86\xcc\x02\x9a\xdb\x8b\x18\x1d\xb6\xe3\x25\x7b\x61\x5d\x1e\x96\x9e\x5a\xbc\xb7\x0f\x82\x72\x91\x3d\x5c\xf7\x0f\x52\x64\xd3\x25\xe2\xe8\x7c\x98\xb3\x83\xc3\x7e\x50\xbe\x9e\x27\xb7\xe3\x1e\xe9\x65\x9b\x0f\x62\x2e\x4e\x67\x05\x37\xac\x12\x45\xfd\xe2\xb0\xa8\xcc\x68\x8f\xeb\xd0\x86\xc5\x0e\x61\x92\x37\x70\xad\x90\x3e\xf9\xff\x96\xcc\xe5\xf1\x24\x06\x93\x3e\xa5\xb1\x4f\xec\xd8\xd3\x46\x32\x70\xfe\x69\xe3\x2f\x27\xe7\xe9\xb0\x7c\x46\xb0\xd8\x8c\xd4\x35\x95\xc7\xb7\x74\x0b\xca\xf3\xe5\x80\x0d\xcb\x67\xf3\x65\x0f\x63\x70\xc9\xf5\x6e\x1a\xc4\x55\xe2\x6f\x09\x42\xaf\xc8\xbc\x5c\xb9\xd6\x2c\xe1\x66\xc8\xcd\x0b\x7f\x12\xfa\x74\x28\x17\xbb\x22\x0f\xdc\x3c\x39\x1d\x4a\x88\xdb\x6f\xd6\x1a\xa7\x57\xd8\x99\x37\x25\x87\xbd\xd6\xaa\x07\x53\x3b\x97\xf1\xdb\x09\x5c\xe1\x40\x2d\x7f\xce\xcf\x93\x8a\xbe\x03\x93\x2d\x63\xde\x9f\x27\x95\x2b\x25\x07\x24\xe9\x29\xc6\x73\x18\xb9\xcf\x9f\xab\x85\x56\x97\x95\xe8\xc4\xcd\xd9\x4f\xa3\xaf\x8b\xf1\x12\x90\xd4\x41\xc6\x56\xd7\xf9\xec\xae\x44\x79\x20\xf9\x73\x19\x77\xd7\xe5\xcb\x51\xa6\xee\xee\x5a\x9e\x1d\x4c\x5e\xaa\x66\x52\x60\x21\x5c\xa1\xb3\xa2\x6b\x5f\xb6\x44\x71\x95\x2c\xd9\x9e\x8a\x5d\xf0\x0e\xa4\xd5\x35\xf9\x5e\x4e\x34\x8b\x3c\xef\xfa\x99\xd5\x69\x4b\x3b\x01\x68\xe8\xbe\x97\x64\x8d\xd6\xf3\xb7\x95\x47\xce\xa3\x72\xe2\xb8\xa3\x1b\xdd\x41\x26\x76\xcb\x66\xaa\x6a\x26\x7e\xdd\x4e\x27\xe9\xc5\x76\xac\x5a\x73\x89\xa2\xbe\x6e\x93\x8d\x68\x43\xbc\xa0\x17\xeb\xc2\x12\x6d\x0e\x9e\x66\x99\x9c\xf6\xa7\xcc\x80\x94\x66\xc8\xc8\xbb\xec\xa5\x09\x8f\xe4\x68\xb1\x8e\x61\xca\x25\x33\xb3\xd3\xaa\xf4\x95\xa5\x7d\xc6\x28\xe7\x58\xae\x62\x9f\xe9\xee\x82\x96\x99\x6b\xc6\x05\x2d\x0b\xc2\xf7\xca\x2e\x5f\x3f\x79\x4f\x97\x07\x7a\xc7\x55\x9c\x82\x93\x6f\x20\x5e\x8b\x55\x72\x95\x10\x4c\x82\x2e\x29\x59\x4a\x0d\x48\x96\xe1\x46\x2f\xce\x1a\x65\x72\xba\xc4\x0d\x57\x97\xb1\xe9\x2e\x1b\x59\x6f\x36\xb0\x8a\x17\x70\xda\xfe\x03\x79\x3b\x33\x90\xf8\x27\xfa\xb4\x31\x08\xdd\xdb\x72\x7a\x1b\x64\x1b\xc7\x72\xb5\xc9\x8e\xd9\x89\xd1\x2e\x4e\x07\x92\x43\x97\x6f\xff\x65\xde\x98\x1b\x7e\x39\x69\xaa\xbd\x52\xfa\xa2\xf8\x3a\x2b\xaf\x38\xaf\xea\x64\xe0\x07\x92\xac\x51\x19\x41\xa2\x23\x8a\x15\x47\x76\x35\x87\xde\xf7\x55\xed\x75\x13\x33\xd3\x75\x68\x7f\x8b\xbe\x94\xe0\xb4\x38\xfd\xe8\x81\x64\x8c\x6d\xd1\x66\xcd\x5f\x40\xd2\x30\xfb\x18\x2f\xf3\xb1\xf0\x95\xab\x39\xb5\x3b\xdf\xd7\xd0\x53\xdf\x40\xca\xce\x9b\x19\xc1\x29\x2a\xcd\x23\xad\xe6\xea\x37\xac\x84\xf8\xd8\x8a\x88\xeb\xba\x8d\xed\x06\xaf\x9b\xfd\xbe\x4b\x3c\x29\x47\x30\x73\x4c\xab\xe9\x8b\x32\x73\xe9\x4e\x51\xe9\x6b\xd4\x11\x61\xf5\x66\xd6\xdd\x85\x3e\x59\xb3\xee\xea\xe0\xec\xa6\x1c\x15\x3b\x2a\x11\xaa\x38\xc6\x8e\x75\x0c\xc3\x13\xc8\x6a\x1d\xc6\x9b\xf6\xae\x6e\x40\xca\x3d\xc3\xf7\x51\xa5\x1d\x42\x81\x9d\x08\xe2\x63\x3b\x91\x0b\xb0\x1d\x48\x19\xf9\xc0\x4f\xaa\x31\x82\x13\xe2\x4e\x47\xcc\x7a\xd8\xf5\x72\x46\x9b\x6a\x72\xfa\xea\x5a\x43\x57\x10\x17\xf5\x12\x1f\xdb\xed\xf1\xd0\x97\x32\xb5\x34\x57\x90\xee\x0e\x1d\xeb\x35\x45\x9b\xf0\x1a\x42\xe8\xf4\xa3\x58\x6a\xa8\xdb\x88\x7c\xe6\x40\xb2\x8e\xa6\xdf\x75\x1b\xdb\x88\x36\x94\x66\x5e\x97\xe1\xb2\x55\x9c\x2a\x3b\x00\x22\x39\xae\x21\x99\x3d\x08\xa8\xf9\xdf\x3b\xbe\xc8\xa1\x24\x95\x79\xda\x07\x1d\xb2\xaf\x64\xa4\xb9\x33\x33\x59\x8d\x72\xb7\xbc\xe4\x7a\x8f\xc5\xa9\x21\xba\xeb\x3d\x76\x2c\x4a\xcb\x29\x46\x1b\x54\x63\x3a\x7b\xc8\xfd\xad\x9f\x72\x5f\x73\x5a\x7b\xc9\x8b\x8e\x32\xb3\x30\xec\xb2\x91\x8d\x5b\x7c\x89\x6f\x6e\x0e\xa2\xed\x44\xa0\x71\xe7\xad\xe9\xd0\x51\xd0\xdc\xa9\x53\xe0\x47\x97\x52\xa7\xe4\x09\x79\x73\x6d\x13\x07\x1f\x1c\x48\x4e\x77\x31\xba\xb5\xb3\x25\xfa\x7c\x4b\x11\xef\xf7\x6c\x36\xca\x6c\xb5\xd3\xaa\xb8\x36\xf2\x81\x1c\x7d\xe7\x99\x29\x19\x69\x77\x1c\xdb\x81\x94\x82\x93\x0d\x74\xdd\x93\x01\x52\x2c\xa7\x46\xac\xf1\xa4\x38\x0a\x0e\xcb\xa2\x2a\x1f\x7d\xba\xb2\x76\xcc\xc5\x51\x5f\xdc\x80\x76\xeb\x43\x87\xbd\x36\xf7\xef\x0d\xa4\x5c\x57\x20\xb6\x39\x6c\x57\xc5\x3d\x90\xdc\xd7\xa2\x4d\x71\xf2\x81\x68\xdb\xa5\x78\xe2\x49\x09\xd1\x17\xf3\xdc\x68\xe2\x68\x5b\x36\xce\x54\x20\x65\x36\x48\x01\x55\x71\x53\xbc\x27\x32\x85\x48\xbd\x94\x1c\x34\xd7\x2b\x9e\x7c\x8b\xbb\x01\x72\x2e\x69\x48\xb4\xf3\x93\xcc\x2b\x20\x49\x1e\x1c\x8f\xed\xd0\x74\x50\xf2\x61\xdf\x67\xc8\xa2\xab\x8b\x20\xb4\xaf\x87\x93\xb3\xf4\x80\x94\x4a\x1e\x72\x23\x2e\xba\x17\xc8\x30\x0e\x80\x7c\xed\xc3\xc5\x4a\xd9\x77\x3b\xf9\xf5\x1e\x90\xfc\x81\x38\x56\x0f\x6b\xfa\x21\x8b\x4f\x87\xbc\x58\x01\xb4\x9e\xb6\xa6\x43\xf6\x9f\x0e\x07\xcf\xd1\xa6\xea\xe0\x96\xe4\xd6\xd3\x55\xdd\x18\xfd\xe9\x2b\x01\xd2\xe7\x58\xbc\xc1\xe1\x24\xb7\x07\x84\x49\x66\xb1\x5e\x6a\x3c\x29\x87\xae\x1c\x90\x39\x3b\x46\xd0\xf7\xd9\xc5\xf0\x40\x92\x3f\x39\x55\x4f\x87\x83\xb3\xf2\x2e\xd1\x89\xcc\xb0\xe4\xba\xd7\x2e\xc8\xb7\xcc\x5b\x19\xe7\x2b\xd7\xcf\x6c\x8d\xef\x53\xae\x8d\x16\x9c\x9d\x0c\x5a\x65\xb0\x4a\xca\xae\x51\x30\x3a\xba\x46\x66\xc5\x84\xec\x3a\x98\x1d\xd5\xe2\x52\x3e\x8d\xdc\xf8\xa2\x97\xcd\xa1\x7c\x83\x78\xf8\xd6\xd8\x87\x97\x4b\xca\xb1\x66\x2f\x6a\xcb\x47\x9b\x94\x74\xac\xa0\xac\x54\x2d\x30\x8b\xb8\x39\x98\x29\x72\x6d\xa4\x78\xb2\x69\x84\x68\xb3\x89\xfc\x06\x9a\x5a\x79\xaf\x84\x22\xe5\x2a\x86\xd3\x25\x6b\x53\x45\xaa\x74\xbd\xc7\x92\xa3\x4f\xb1\x87\x4e\x3b\xdb\xa9\x95\xe8\x7a\xe7\x7d\x5f\xa6\x1a\xc6\x82\x7d\x39\x43\xa5\x67\xbd\x9d\xb5\x02\x55\xed\x36\x67\x0e\xf3\xb6\x9d\x98\xc2\x99\x45\x0e\xa4\xbc\xcf\x37\x4f\x3a\xef\xba\x15\x6a\x54\x24\x2c\xe3\x7b\x9d\xb2\xcb\x15\xd6\x44\xa7\xce\x3e\x81\x90\xb2\xe5\x86\xd6\x9c\x7c\xb1\xbb\x08\x61\x73\x52\xca\x4e\x31\x41\x17\x4f\xea\x94\x0f\x4c\xf1\x24\x21\x21\xfe\xc0\xe4\x64\x30\xe6\xde\x1c\x3b\x56\x1d\x4e\x71\x20\xa5\x96\x36\x89\x26\xea\xcb\xa9\xf2\x7b\x44\x76\x4d\x9e\x74\x89\x55\xa3\xcf\xbe\x9d\x62\xf4\xd3\x26\xad\x20\x73\xb9\x2d\xea\x5c\x01\x29\x23\x82\x51\xcb\x91\x5d\x05\x15\x0c\xf5\x02\xe1\xa6\xf6\xed\x24\xe9\x46\x34\x47\x7d\xe5\xca\x06\x62\x06\xb8\xa2\x4d\xbc\x9c\x75\x7d\x8e\xbb\xea\xc3\x97\xce\xce\xd3\xfa\xd1\x80\x1c\x53\xd7\x80\xc4\xcf\x24\xde\x73\xb8\x81\xc5\xdf\xad\xcc\x0d\xc5\x85\x01\xba\x6b\x02\x66\xe7\x00\x3b\x90\xcc\x31\xe6\x9b\xb7\xd3\x65\xa2\x19\xdb\x45\x2a\x18\xa7\x69\x3c\x90\x8a\xe0\xf7\x78\x52\x9a\x5b\x4b\x25\x5b\xf5\x1a\x9a\x53\xe5\x77\x57\x16\x1c\x18\x4b\x76\x71\x82\xf1\x19\xd0\x53\x29\x5e\xfc\xb5\x45\x72\x48\xec\xad\x2a\x0b\xd6\xd8\x23\x47\x5a\xdd\xa0\x9d\xf5\xfe\xa3\x45\x9b\xf9\xfb\x78\x4f\x17\x19\xfb\xe0\x3a\x0f\x2e\x79\xda\x77\xe1\x20\xf1\x9e\xeb\xa3\xd5\x68\xb3\xef\x47\x40\x32\x29\xb1\x0f\xd6\xf4\x3b\xe7\xd8\x81\xa4\x65\x35\x9b\xb0\x95\xe4\xb3\xa0\xff\xdd\x76\x66\x43\x8f\xbb\x43\xd3\x4f\x9f\x4e\x5f\x79\x05\x64\x0d\x25\x7d\x5a\xa3\xcd\xcc\x5c\x02\x02\x47\xc5\x5d\x65\x2e\xec\x1f\xa8\x68\x6f\x33\x90\x0c\x53\xbe\xba\x76\x15\x37\x85\x81\xd7\xb5\x12\x33\x66\xe9\x2d\xa9\x24\x63\xb2\xde\x55\xdf\x9e\xd9\x4d\x6b\xf3\x63\x9e\x4e\xd6\x89\x7a\x66\x3b\x17\x05\xd6\x11\x87\x64\x35\xf8\x3c\x82\xb0\x72\x8c\x2e\xde\xb1\xc4\x7b\x32\x76\xdd\xec\x66\x35\x96\xfb\x9a\xd9\xd2\xed\xb7\xcf\xac\xb7\x13\xb6\x07\x64\x25\x88\x57\x10\x69\xc6\xca\x93\x6d\x69\xa6\x71\xe2\x14\x3e\x95\x1d\x4b\x79\x20\xed\x11\xdf\xd0\x4c\x35\xa0\x21\xae\xe2\xe8\xdc\x1e\x07\x92\xea\xe6\xe2\x3d\x91\x7d\x47\xe6\xf5\x2d\xd9\x26\xd7\x1a\x90\xd4\x72\x31\x9e\xb3\xe7\x81\xf3\x8d\x34\x43\xd1\x26\x07\x5c\xf6\xbd\x21\xbb\x4d\x20\x69\xc2\x4d\xb0\x5d\x0b\xb2\xe1\xeb\xb5\x9b\xbd\xd5\x53\x8c\x27\xd5\x22\xe7\x5d\x3a\xfa\x8e\x3f\xd0\x46\xee\x01\x5f\x9c\x49\xf3\xe6\x6c\xba\x6a\x64\x66\x25\x24\xdb\xf4\xf6\x7d\xe1\xd4\xee\x08\xad\x1a\xc4\xc0\xe5\x26\x2f\xc8\x54\xe7\xbe\xf0\x44\xbb\xb3\x2b\xf3\x49\x8e\xde\x82\x53\xde\x4a\xc1\x59\x67\x8f\x36\x09\xb5\xbe\xad\x76\xc7\x4d\x24\x7a\x79\xe8\x03\xa3\x4d\xee\x3a\x10\x57\x29\xfe\x0b\x9e\x19\xc4\x5d\xa1\xf5\xdc\xc3\xa9\xcf\xd9\x88\xe1\x54\x2d\x90\x86\x61\x93\x20\x9b\x6b\xe7\xb9\xc1\x46\x0c\x7f\x11\x5b\xed\xec\x1a\xdc\xf7\xc4\x64\x25\xc6\x93\x19\xa0\xd5\x11\x90\x8f\x1c\x4f\xe2\x73\x90\x81\xa4\xcc\xe0\xe6\x74\x32\x4b\x9c\x85\xb6\xd3\x57\x8e\x78\x4f\xa6\x3d\xb4\xe4\x8e\x8a\xea\x37\xc7\xc3\xae\x74\x8d\xeb\x70\xda\x00\x7a\x05\x94\xa5\x9b\x9a\x40\xce\x65\xd0\x80\xa4\x38\xb2\x94\xb0\x6d\x4c\x70\x34\xdc\x81\xac\x37\x0e\x48\x22\x67\xe6\xbd\xe9\x4c\xc8\xf4\x69\xcf\x0c\xbe\x68\xba\x8c\xea\x88\x36\xbb\x38\xdd\x40\xbe\x20\x02\x12\xff\x14\x6d\x2e\x74\x64\x55\x8a\x2b\x3c\xd6\x59\xa3\x4d\xa6\x1a\xb0\x60\x0d\x73\x22\x13\x48\x01\xcb\xf4\xa2\x2a\x8e\xad\xb1\x4a\x92\x6d\xda\x15\xef\x09\xb1\x0b\xd7\x9a\x64\x9b\x8e\x4f\xea\x5e\x76\x93\x04\xb3\x1c\x4d\x85\x67\xc6\x7e\xd8\xc1\xd1\x06\x57\x07\xc7\x74\x7c\xc9\xa9\xb5\x87\xde\xd1\x15\xf4\x6a\x5c\x5d\x70\xc3\x77\x40\xd2\xa0\x83\x3d\x4e\xa3\xdf\xc0\x5d\xe7\x94\xf8\xbc\xb7\x9c\x82\xbe\x00\xc9\x3f\xb6\xf2\xa4\xae\x04\xbc\xb9\xb7\xb3\x4f\xe0\x7f\xbf\xed\x24\x86\x11\x77\x47\xc6\xba\x06\xa4\x94\x9f\xcc\xc5\x55\xeb\x50\x4a\x38\x74\xa5\x24\xc8\x86\x73\x4a\xc0\x0d\xbb\x4e\x5d\xae\x90\x0d\x39\x82\x95\xc1\xe5\xf8\x72\x91\x7f\xc8\x9b\x33\xcf\x21\x5d\xb8\xfa\x5c\xc5\xcd\xce\xa1\x2b\x79\x72\xc6\x94\x0e\xbf\x12\x43\xe0\x7a\x73\x2d\xd6\x5a\xce\x5e\x03\x49\x6e\xbf\xec\x46\x08\xe1\x7d\x39\x93\x35\xd7\xb6\xca\xc6\x35\xd7\xe9\xe8\x0e\x4f\x69\xf8\xfc\xb8\x6c\x5c\xed\xb0\x5d\x6f\xec\x36\x13\x48\xd9\xbf\x21\xd1\x6f\x7d\x51\x5c\xb1\xe6\x94\x1b\x67\xc5\x89\x22\x32\xb3\x7e\xdb\x58\x09\x13\xe6\xd0\x95\x06\x4e\x50\x60\xee\x0e\xc8\xca\x59\x7a\x91\x5a\x27\x38\x5e\x05\xab\xb4\x14\xb3\x76\xba\xda\x42\x9b\xbe\x0f\xf3\xf2\x7e\x6f\xcf\xf3\x7c\xc3\x18\x97\xd3\x59\x49\x91\x3a\x1c\xac\x52\x6a\xfa\x36\xf7\xc5\x79\x34\x6b\x93\xa2\x1b\x79\xee\x5e\x01\xc9\x79\x3d\x05\x64\x75\xfe\x04\xd2\xf0\xe2\x0f\xc7\xb8\xcc\x4d\x89\x50\x0c\x47\xb2\x64\x67\x7f\x3a\x90\x7c\x60\xc5\x0b\x0c\xc7\xb5\x34\x7b\x3b\x8f\xa1\xdc\xfc\xc5\xe1\xd9\x63\xc8\x51\xaa\xd9\x25\xfd\x40\xca\x4d\xda\xf9\xa4\xed\x2c\xfe\xf1\xa4\x44\x78\x91\xc5\x31\xc8\x2e\xc7\x5c\x92\xb3\x9f\xce\x09\x24\xcd\x74\x05\xf2\x11\x1f\x3c\x69\xbd\x5c\x8e\x36\x87\x7d\x64\x20\xa1\x72\x61\x04\x3b\x12\x75\x8f\xee\x30\x93\x9b\xaf\x4d\x0e\x6a\x1d\x01\xc9\x61\x6d\x26\x20\x6b\xb1\x18\xc1\x44\xf9\xba\x80\xa4\xe7\x2c\xd1\xa7\x0a\x0f\x35\xf7\x72\x8b\xef\x2a\xac\xb5\x2b\xd3\xd9\x1b\xf8\x40\x4a\x32\x28\x6e\xea\x40\x96\x20\x02\x52\xe6\x86\xda\x81\x5c\x52\x32\xda\x54\x17\x2f\xf9\xfb\x9c\x53\xc2\xd1\x46\xc3\x95\xe9\x7a\x63\x8f\x94\xcd\x2e\x3b\x50\x60\x38\x74\x25\x3b\xeb\xed\x81\x74\x09\xb4\x68\x93\x9e\x33\x5d\x40\xe6\xad\x18\x41\xba\xf6\xc9\x2a\x29\x74\xa5\xb8\x3c\xff\x18\xce\x58\xe7\xc4\x50\xc3\x55\xeb\x5a\x8e\x27\xc5\xf9\x58\x2f\x7e\x20\x15\xfa\x2c\x1e\x21\x2b\x47\xc7\x3d\x07\x90\xb8\x53\xe6\x92\x5d\x71\x86\xb5\xce\x4e\x02\x14\xef\x89\xf8\xf8\xe2\x3c\x90\xb4\xeb\x39\x03\x29\xfa\x8e\xa3\xe3\xdc\x10\x83\x95\xcf\x44\x10\x16\x20\xe9\xd3\xc1\x3a\x07\xb9\xd8\x9b\xfb\x40\x12\x94\x0b\x73\xd9\x0a\x0c\x4a\x1d\x48\x58\xce\x8e\x59\xb6\x99\x7c\xbb\xa5\x99\xfe\x81\x14\x01\x7a\x17\x20\x25\x39\x6a\x1d\x48\x26\x4f\x4e\x40\xb1\x77\x09\xf8\x29\x19\xa5\xb9\xf2\xc8\x70\x70\x4c\x0e\x6c\x95\x54\x92\x1b\xbb\x59\x70\x1f\x65\x3c\x5f\xc6\x57\xb4\x99\x77\xa4\x17\x05\x1b\x55\x76\xac\xb8\x26\x27\x3b\x8d\x3d\x04\xca\x50\x9d\xc3\x82\x3e\x15\x0e\x53\xcd\xce\x8c\x21\x0f\xa0\x5c\xc1\x9e\xea\x6c\x6f\xb7\x7b\xb1\x7d\xc2\xbe\x0a\xc3\x61\x2d\x25\xf5\x80\x5c\xb8\x0d\xc8\x69\x83\x99\x4b\x75\x78\xd1\xc5\x08\x0e\x75\x02\xe7\xc5\xdf\xd7\x0b\x4c\xae\xae\xfb\x97\xe3\x49\x45\xfb\xd1\x4b\x73\x81\x06\x28\x83\x52\x2e\x64\x47\x9c\x0e\x87\xbc\x94\x31\xa3\x4d\x3a\xe5\x6a\x7c\x69\x0e\x3d\xca\x15\x48\x5a\x01\xf6\xc8\xde\x3a\x2e\x36\x30\x06\xd5\xdd\x07\x7d\x8a\xcd\x3b\xb2\xe9\xb7\x44\xb9\x99\xab\x4d\x5e\x50\x1b\x3d\x0a\x64\xca\xa2\x40\xe6\x18\x8b\xf9\x6f\x66\xc6\x0f\xe4\x10\xd7\x01\x24\x77\xf5\x12\x4f\xca\x9c\xd6\xdd\xa7\x4c\x20\x25\xf3\xf1\xdd\x36\x56\xc8\xb0\x72\x35\xd4\x99\xe2\x49\xe9\x94\xbb\x17\xcd\x4e\x38\x05\x34\xb0\x29\xa3\x72\x70\xcd\x99\x77\xb6\xcc\x01\x30\xe6\x63\x87\x43\x5e\x5a\x90\xe1\x6e\xb3\x1f\x47\xa7\x5b\x03\x74\x31\xba\xc2\x61\x1c\xcb\x35\x46\x77\xa6\x59\x96\x17\x77\x9d\x5a\x80\xe4\xd8\xce\x76\x9a\x87\xbf\x62\x3c\x57\x75\xcb\x8c\xe0\xba\xd7\xdc\x95\x32\x8f\xe4\x99\x03\x52\x32\x9f\x4f\x9b\x0e\x2e\x68\x30\x9c\x0d\x2d\xdf\x40\xd2\x34\x82\xe6\x76\x01\x72\x72\xc9\xe1\x5a\x6d\x35\x73\xc8\x86\xdd\x01\x59\x17\x99\x47\x6a\x03\x41\x87\x2f\x96\x3b\x20\x29\x4f\xb8\x3c\xa8\xdc\x06\xa2\x29\x18\xa7\xdb\x63\xf4\x40\x32\x79\x42\xa6\x06\xc6\x4a\xc6\x33\x4e\x4c\xda\xe4\xcc\x36\xaf\x80\x44\x44\xd8\x15\xe7\xe7\x0b\xb2\xe8\xa0\x1a\x17\xe2\x3a\x90\xb4\xa5\x5c\x48\xe6\xfd\x3b\x04\x46\xc1\x31\x3d\x58\x01\xfb\x03\xb9\x98\xe7\x81\xa4\x29\x66\x6f\x95\xcb\x20\x5b\xa7\x7c\x20\x5d\x9c\x31\xc2\xb6\x1e\xb0\x03\x59\x09\x32\x80\x84\x75\x10\x57\xd7\x73\xbf\x59\x79\xd5\x6c\xaf\x03\x92\xb2\xec\xb5\x0c\x99\x5a\xae\x0d\x97\xa2\xcd\x56\x07\x8f\xb0\x9c\x70\x09\x9c\x58\xd2\xa0\xbb\xd8\xd6\x81\x96\x34\xda\x17\x90\xfc\xf6\x99\xcb\xb2\x03\x27\x64\x78\xe1\x74\x57\x81\x94\x1b\x02\xcc\x5a\xf2\x85\x72\x32\xfe\xe1\x80\x9b\x9a\xa2\x17\xc7\x6e\xc2\x6c\x2c\xbb\xa4\x72\x8a\x1d\x8c\x63\xf3\xeb\xa0\x54\xdb\xe0\x8c\x29\x1f\x60\x99\x2d\x20\x9b\x89\xe3\x49\xb3\x4f\xcc\xcc\xa9\x7a\x59\x25\x67\x0e\x74\x36\x8f\xe1\xa2\x6e\xa5\x83\x3d\xcb\x65\x33\x3e\xd0\xc1\xba\x02\x91\xdc\x36\xd4\xf2\x9e\xfc\x96\xea\x04\x93\x95\x02\xa1\x07\x97\xb9\x9d\x35\x86\x8b\x13\x8b\x0b\xb4\x40\x3e\x4d\xd9\x2e\x78\x07\xf2\xa5\x1a\x23\x48\xcd\x12\xef\xb9\xa8\x31\x2b\xb8\x9d\x67\x24\x46\x5f\x2a\x5c\x51\x03\x72\xf6\x4a\xaf\xe7\x76\xb5\x6e\x76\x65\xdb\xec\x17\xe3\x89\xd6\x35\x28\x18\x85\xd4\xee\x04\xa4\x5a\x46\x50\x45\x65\x76\xaf\x71\x35\xcb\x6f\x29\x9f\x33\xfd\x2d\x51\x7e\x38\xdf\x04\xd4\xdc\x4e\x4d\xc1\xe3\x3a\x99\x7b\xe7\x88\x3f\x5c\x8f\x02\xb4\x73\x0c\x91\xb3\x2b\x0f\x57\x67\xab\x17\x1b\xe1\x2c\x0b\x8d\x83\xf4\x30\xe7\xc3\xe6\xba\x68\x7b\x2c\xa8\x84\xcc\x12\x7c\xa5\x33\x30\x24\xc8\xfe\x83\x52\xe5\xee\x53\x0e\x4f\xb5\x41\x7c\x48\x94\x78\x05\x24\xc5\x3f\xe4\x4d\xe5\xdd\x7b\x7c\x91\x4c\x35\xad\x80\xe6\x4f\x7b\xa1\x42\x24\x6d\x9c\x99\xf0\xc6\x4e\x84\x1e\x64\xd8\x82\x64\xbb\x03\x92\x21\x85\xad\x76\xcd\xb5\x46\x2f\x12\x1d\x5b\x70\x5a\x12\x16\xeb\xcd\xf1\x70\x9c\x50\x83\x6c\x28\x32\xa8\x76\x2e\x08\x27\x27\x4c\x6c\xa7\xeb\xaa\x75\x0e\x99\xab\xa5\xa5\x1c\x90\xbc\x36\xf8\xa2\x97\xf3\x5b\xc4\x93\xba\x1c\x3b\xbc\x8e\x4d\x27\x37\x92\x8e\x04\xc2\x1c\x87\xda\xe1\x3e\x35\x47\x9b\x2e\x01\x08\x28\x35\xc6\xb9\x7e\x95\x39\x30\x0f\x56\xd7\x35\xc6\x43\x9a\x91\xdb\x54\x4f\xf0\x6b\x36\x9d\x5c\x1c\x63\xe7\x24\xb8\x58\x25\x67\x21\x18\xf0\x6b\x6f\xe7\x76\xe6\x9a\x51\x4e\x82\xd2\x20\xbc\x6f\xeb\x39\x63\x74\xe5\x0a\x8c\xab\xe4\xed\x20\xef\x8b\x11\x74\xe0\x1d\xfb\x37\x1c\x8c\xd3\xed\xcc\x76\x20\x67\x4b\xe8\x40\x12\xcc\xbd\xb7\x53\x72\x5d\x71\x52\x80\xe1\x5a\x6d\xbd\x7e\x20\x25\x89\x9c\xf4\x29\xc1\xd5\x79\x0e\x06\x35\xd7\xb8\xac\xe6\xb5\x9d\xd0\x31\x20\x69\x75\x0b\xbd\xb8\x6e\x8d\x2f\xce\x99\x1c\x57\xe6\x7d\x20\xe8\xc4\x1a\xca\xe1\xc0\x92\xec\x6c\x76\x63\x26\x67\x6d\xb3\x5c\x30\x9d\x06\xc0\x9e\xc2\x07\x52\x45\xbb\x8b\xf7\x6c\x5a\xcf\xf4\x29\x7d\x3a\x7c\xac\x43\x42\xea\x60\xd6\xc9\x59\x8b\x7d\x36\x29\xd5\x06\xd3\x30\x95\xbb\xaf\x5a\x83\x7e\x20\x05\x48\x7b\x6f\xa7\x42\xfd\x4b\x67\x25\x14\xf6\x51\x73\xb4\x59\xd3\xdf\x80\xec\x6a\x66\x09\x62\x3a\x2c\x7f\xb2\x2b\xb7\x13\xb1\x9a\x25\x9b\xf2\xb6\xea\xc8\x67\x0e\xc3\xe8\x83\x95\xcf\xf6\x58\x31\x0e\x4e\x65\xcf\x2b\xdd\x27\xdc\x05\xd8\xba\x3d\x64\x86\x03\x36\xaa\xa3\x27\x0f\x24\x85\x28\xfb\x20\xbf\xac\x5c\x19\x2f\x3b\xcb\x35\xe3\x65\x7b\x8c\x0d\xfa\x74\xfe\x95\x0b\xc8\xd7\x1a\xab\xe4\x4c\x77\x8e\x50\x1e\x2e\x88\x56\xb9\xfc\x67\xd6\xa5\xc3\x09\x77\x34\x45\xb1\xa6\xff\x40\x4e\xdc\x50\x80\x64\xac\xfc\x40\x62\x0f\xaf\x80\xe4\x84\xfa\x1f\xe0\x94\x27\x85\xb6\x6b\x0c\x28\x91\x9a\xa9\x15\x3b\x5b\xdf\x01\x29\xb5\x0f\xdb\xa2\x30\x8c\x7e\x33\x6d\x99\x5c\x6a\xbd\x99\xa8\x95\xf4\x23\xde\x53\xb2\x94\x98\x9a\xc3\x51\x7d\x1f\x52\x11\x2d\x83\xbc\x76\x04\xb3\x0b\xd0\x81\x74\xcf\x98\xab\x9d\x15\xc2\x5b\x81\x6c\x1e\x01\x92\x16\xd2\xc9\xce\x87\x83\x24\xba\x93\x44\x0e\x2a\x9b\x35\x16\xd4\xb5\xad\xe7\x60\x3c\x1d\x40\xee\x51\x87\x3e\x94\x11\xa3\xbb\x08\x92\xef\xbc\xa9\xe8\xfe\x32\x99\x27\x75\xc7\x2c\x36\x3b\xf8\xa0\x15\xd0\xbc\x39\xcd\x90\x49\xfb\x74\x3c\x7f\x1c\xb9\x66\xaf\xe5\xca\x93\xf6\xb6\x64\x05\x2d\xb1\x38\x27\xed\x81\xe4\xab\x90\x02\x12\x51\xae\x8c\xae\x03\x98\xf9\xbe\xe6\x8c\x1d\x23\x20\x85\xa0\x98\x10\x4e\x52\x75\x33\x9e\xab\x44\xdb\xdf\x62\x38\x88\xa0\xc0\x81\xce\x6e\x91\xb3\xc6\x7b\x92\x4a\x38\x72\x72\xc5\x6a\x4e\xb8\x7f\x20\x69\x6e\x99\x8b\x6c\x10\xcd\x29\x7a\xc6\xec\xb6\x75\xf7\x80\xcc\x97\x30\xba\xc9\xb7\xaf\xf4\x29\x89\xa5\x42\x6a\xa7\xb2\xbd\x35\x48\xb4\x83\x08\x4a\x83\xd8\xd9\x4d\xcb\x89\xa1\x86\x8b\x74\x65\x27\xf3\x19\x53\x39\xbd\xdb\x05\x2e\x29\x48\xbf\x54\xe6\x69\xa9\xa4\xb2\x9b\xc3\x61\xcf\x1c\xce\x61\x97\x46\x5f\xb8\x73\x90\x75\x3a\xda\x24\xf0\x46\x9f\x52\xaf\x21\x95\x4c\xd7\x69\xb6\xbb\xd5\x70\xa0\x40\x1f\xbe\x82\xe6\x54\x58\x77\x83\xdc\x4c\x27\x6a\xe2\xfb\xa4\xdb\xef\xe9\xf3\xa4\x03\x88\x13\x90\x5d\x52\x03\xd2\x05\xf1\x81\x4c\xc2\x3c\xcf\x69\x97\xbf\xe8\x53\xea\x84\x01\x5e\x2f\x8b\xdb\x9c\x80\x65\x45\x0e\x58\x67\x1d\x3d\x52\xd7\x54\xe6\xec\x1c\x84\x77\x2d\x9b\x27\x3b\x90\x1d\xba\xdc\x8b\x3c\x87\xea\x0d\x46\xda\x57\xe8\x86\xa0\x99\xab\x9d\x8c\xe7\xb0\xf5\x20\x6f\xce\x9c\x3d\xe2\xbd\x69\xcf\x64\x8f\x2e\x1f\xfb\xee\x50\xa7\x03\xc9\xde\x73\x03\xb9\xee\x09\x67\x9a\x6a\x42\x25\x20\x67\xbb\x08\x48\x72\xb2\xa5\x3c\x6a\x0b\x5d\xe6\x7f\xe7\x43\x8a\x9c\x09\x0e\x3e\xb4\x9b\x77\x8a\x36\xe5\xbd\x83\x64\x2a\xcb\x75\xae\x7c\x91\xec\x05\xb5\x43\x0b\x9c\x5a\x2b\x30\x44\x29\xb2\x5a\x86\x12\x3d\x2d\xad\x59\x72\x9c\x2e\xc9\xdb\xb8\x12\x9e\xae\x6e\x09\x95\x7a\xba\x64\x17\x38\xff\x34\xcb\x79\xfd\x07\x88\xf2\xcb\xd9\x9f\x2c\x92\x4d\xe7\xba\xca\x1c\xea\x17\xc9\xe6\xbc\xbc\xf0\x72\x2c\x1a\xe1\xd9\x85\xf7\x74\x90\xb2\xf5\x41\x2e\x24\xd3\x33\x13\x95\x42\xbd\xcc\x3b\x20\x09\xe6\x1c\xb9\xb7\x5d\xcd\x20\xf4\xe2\x98\x7a\x06\xed\xc4\x23\x75\xb8\x4c\x17\x68\x69\x85\x25\x7c\xbb\x8c\xa3\x45\xc7\x75\x59\xe7\x6a\x91\x7a\x29\x39\x52\x71\x32\xcb\xb1\xa8\x36\xeb\x43\xbd\x9c\xbf\xd9\xa1\xe2\x63\x5d\xae\xc5\xe1\xbb\x79\x49\x87\xdd\xe0\x9f\xd6\xb5\x9d\x6f\x4d\x5f\xeb\xea\x29\x1d\x3e\x6f\x49\x6b\xdd\xd8\xb2\x25\x1f\x95\x6e\x27\xfb\x03\x29\xd7\xb2\xc9\xfe\x4a\x4e\xb9\xe2\x2b\xcf\x35\x51\x2a\x3c\xee\x4a\xce\x0f\x66\x92\xb9\x12\x19\x2d\x18\x41\x88\x9d\xbd\x9d\xb8\xb2\x3b\xae\x6c\x2c\xf3\x56\x9f\x27\x95\xac\xde\x59\xdb\x0e\x64\x17\x7f\xe6\x82\x17\x31\xdf\x20\x63\xa5\x93\xac\x8c\x25\xbd\x78\xad\x8d\x36\xd9\xb3\x5d\x0e\xf5\x40\xb2\x2f\xb3\x82\x72\x81\x6f\xf0\x8e\xcb\xa1\xb8\xae\x3c\x7d\x20\xf9\xab\xb2\x82\xd6\x61\xdf\xde\x4d\xfb\xbc\xf7\x18\xc1\x9e\x35\x37\x33\x93\x46\xbb\xc2\x3b\xda\xe7\xbd\xbb\x7a\xe0\x81\x9c\x91\x8f\x5e\xc4\x1f\xda\xb2\x3f\x96\xf4\xcd\x19\x8c\xc4\xcb\xbd\xf2\x64\x26\x8f\x59\x40\xca\xe4\xc7\x6e\x12\xf0\x5a\x02\xaa\xe2\x71\x33\x90\x6c\x25\xec\xad\x62\x5a\xab\x7d\x70\x0e\x24\x85\x05\xdf\xe0\xc4\x49\x37\x78\xe6\x02\xb6\x48\x4f\xf6\x8e\xaf\xf6\xa0\x1e\x4b\x79\x83\x6b\x8e\x3e\x65\xfa\x72\xc5\xf8\x03\x59\x49\xe7\xf7\xa4\x37\xae\x17\x7b\x24\x4f\x97\xec\x4c\x70\x83\xfa\x25\xd5\x24\x6c\x89\x27\xab\x36\x72\x1e\x48\x7c\xba\x09\xe1\x22\xe1\xd2\xa0\x4f\xab\xf3\x7c\x8a\xed\x47\xdf\x0b\xbb\xe2\x34\x4a\x8d\xb9\x14\x7b\x27\x74\x7a\xd9\x66\x1a\xbc\x9b\x62\x91\xb2\x9d\x2d\x0f\x24\xf9\xc5\x72\xc8\xaa\x2e\xd7\x60\x1e\x77\x39\x01\x12\x6c\xc9\x32\x73\x83\xbd\x67\xd9\xdb\xa3\x71\x1e\xaa\x2b\x80\xd3\x8b\xbc\xd5\x5b\x02\x97\x9a\x2d\x43\x26\x8b\x4b\xd1\x9a\xf5\x02\xcb\x9b\x5d\xe2\xc0\x48\xc5\x67\x66\x9b\xda\x86\x3d\xd9\x4b\x60\x4f\x73\xbe\x76\xce\x43\x73\x1a\xfd\x04\x24\x95\x9d\xd3\x1a\x1d\xc8\xa1\x40\x03\x48\x16\xa5\x98\x8b\x33\x98\x47\x2f\xdb\x3a\xfa\x68\x33\x3b\xe3\xf7\xa4\x9c\xcd\xc8\x2f\xf6\x2c\xcf\x85\xf5\xec\x24\x66\xf3\xd7\x4a\x21\x5a\x73\xfd\xd6\x25\xee\x3c\x2a\x8d\x9a\x05\xa6\x45\x38\xa3\x6f\x6a\x57\x17\x69\x8e\x8a\x3a\x90\x3c\x02\x2c\xa4\xe0\x3e\xde\x21\x4c\xf6\x86\x40\x3f\xb3\x5c\x2e\xd4\x19\x55\x0f\x24\x93\x0b\x84\x50\x75\x48\xba\xb3\x38\x1d\xc8\xd5\x1b\x18\x5d\x87\x13\xee\x6d\x8d\x69\xfb\x32\x7d\x8a\x4c\xa5\x4f\x9b\xf5\x56\xd1\x8b\x5c\xe2\x20\x6f\xf2\x9b\xc8\xf6\xff\x3d\x90\x53\x75\x33\xba\x8d\x4f\x8d\x3e\xc5\x0d\x17\x8e\xb8\xdd\xce\x31\xa4\xac\xe1\x84\xfb\xa0\x88\x74\xa7\xf9\xf7\x27\xe5\xcf\x19\x73\x31\x2f\xc7\x51\x15\xc7\x54\xed\xc7\x7b\x20\x73\x22\x03\x48\x45\xf0\x39\xc6\x4e\x25\x84\x6e\x6a\x89\x47\xaa\xf6\x7a\x1d\x6b\xba\xc8\xa9\x6f\x63\xfb\x8b\xd7\xc6\x7a\x4e\x11\xde\x0b\x92\x22\x2d\x6b\xed\x29\x9e\x14\x69\xe7\x0a\xb2\xa7\x44\xac\xb5\xb3\xc9\x36\x50\x4b\x7e\x13\xe3\xe2\xc8\x4d\x34\x8d\xd1\xa6\x18\x45\xd0\x75\x42\x60\x02\x92\x71\x26\x46\xb7\xf9\x07\x92\xb2\x64\x26\x1e\x7c\xbb\x8b\x72\x0e\xc8\xf0\x72\xd6\xb6\x1e\x6d\x0a\xf6\x65\xc7\xc4\xcb\xd5\xcc\x78\xf2\x25\xef\xce\xce\x30\xec\x4b\xde\x32\x07\x70\x69\x95\x26\x07\x42\xa5\x36\x6b\x61\xe5\x97\x0d\x92\xac\xd9\x72\x31\xa3\x1c\x6d\x22\xca\x3d\xda\x54\xa3\xba\x45\x9b\x42\x6a\x6b\xf4\x29\x89\x85\xf3\xb0\x1c\x82\x12\x4f\xea\x22\x83\xa3\x5f\x2a\xd8\x99\xd1\x73\x2e\x17\xe5\xbc\x59\xf9\x65\x2b\xfc\xa7\x4d\x76\x86\xce\x17\x6d\x3b\x46\x7a\x5d\x14\x55\xda\x13\xc4\xc7\x05\x3b\x1b\x04\x94\x12\x9d\x1c\xf8\xed\x30\x93\x2b\xda\x9c\x76\x2b\x7a\x51\x12\xda\x4e\x2f\xba\x00\xed\x29\x71\x20\x49\x10\x90\x22\xf3\xb1\x18\x24\xd7\xb6\x32\x0a\x02\xba\x5d\xd6\x9f\x95\xdf\xce\x90\xc7\x37\x48\xe7\xda\xdb\x64\x3c\xd9\x66\x3a\xab\xb4\x97\x63\x37\x07\x90\x9d\xd9\xa2\x4d\x71\xab\x9c\x15\xe9\x6a\xc7\x15\xdf\xa0\x0b\xa2\x73\x01\xaa\x96\x67\x77\xbe\x97\x03\x29\x1b\x37\xe4\x4d\xde\xf1\x75\xde\xf1\xde\x4b\x25\xde\x3c\x17\xf1\xd4\x05\x66\x71\x39\xfe\x34\x4e\x9c\x38\xec\x96\xaf\x68\xb3\x24\x97\x80\xec\x95\xe2\x99\x3d\xe4\xaa\x30\xa2\x17\x49\x02\x71\xe1\x2a\xa1\x54\xad\x25\xa0\x2e\x1a\x12\x4f\xca\xb8\x0d\x26\x8b\x33\x6f\xb0\x9c\xf6\xc6\xcf\xb5\xc6\x08\xb2\x0c\xcd\xfc\x3d\x51\x96\xab\x7e\x4b\x90\xa9\x28\xe6\x49\x37\xcb\x9a\xd4\x68\x73\x02\x67\x96\x42\x1e\x8e\x93\xad\x7e\x60\x06\x30\xa4\x0c\xbc\x1d\x85\xba\x1d\xf7\x9b\xe3\xdf\x86\x4b\xe3\x8c\x0b\xc4\x7e\xba\xa4\x24\x24\xe5\x69\x9d\x2b\x48\xa8\x0c\xbc\x05\x03\xcc\x7a\xc2\xc1\x00\x2d\xeb\x6a\x3b\x90\x12\xee\xa7\x80\xe4\xa2\x06\x51\x76\xce\xaa\xe0\x9b\x9f\x2e\xe9\x0a\x4a\x5a\x6f\xec\x9c\x5c\x23\x9c\xf3\x39\xfe\x2f\x9b\x27\xd9\x5c\xbb\x1c\xa1\x2d\x5d\x2e\x7d\x19\xe4\xf4\x65\xb7\x73\x48\x83\x0a\x61\xd6\x01\x82\x4a\xa7\xdc\x2f\xc8\x14\xce\xf9\xfe\x06\x57\x56\xc9\xfd\x03\xc9\xc2\xeb\xeb\xc9\xd5\x53\xfa\x34\xf2\x6e\xfb\x93\x20\x56\xee\x84\x33\x54\x3c\x29\xef\x04\x1f\x2b\x3c\xcb\xd1\xf8\x52\x4b\xc5\xe1\xee\xc3\xd5\x53\x8a\x8b\x56\x8e\x9d\x1c\x26\xe4\x6b\xc6\x55\x50\xba\xcb\xfb\x1c\x48\xe9\x74\x0a\xe3\x39\x79\xe6\x60\x3c\xa2\x12\xfd\x9e\xf8\xe6\xee\x20\x89\x03\xa9\xb4\xa7\xd5\x5d\xd4\x21\xe1\xe2\xdc\xb7\x0b\xf4\x7a\xcd\xf6\xed\xc4\xaf\x85\x36\x11\x57\xd7\x3f\x3e\x90\xf9\x5f\x7a\x91\x24\xe0\x2c\xc9\xc3\x5e\xe7\x15\xeb\xc1\x76\x2a\x1a\x34\xa9\xfb\xb6\x32\x6a\x06\x24\xfe\x30\xe6\x62\x87\xb5\xcc\xe8\xcb\x7a\x71\xbe\x41\xd2\x5a\x4b\x3c\x89\x47\x33\x6d\xf6\x07\xca\xd1\x26\x27\xb1\x49\x2f\x4a\x95\x84\x82\x6b\x2b\xf9\x69\x89\xb5\xbe\x9d\xd1\xa2\xc5\x7b\xf2\x5e\xfd\xb4\x99\x10\x32\x4f\x61\x5d\x89\x99\x49\x41\x02\xdf\xb5\xa5\x73\xed\x0d\x9c\x90\x5c\x50\x5d\xb6\x6a\xb8\x7e\x49\xa9\xac\xa0\xbd\x52\x4a\x8f\x27\xad\x5c\x88\x36\x6b\x36\x03\x92\x6c\xe3\x6b\xc6\x3e\xf6\x0d\xde\x71\x4b\x03\xdb\xaf\x78\x52\x98\x7c\x7f\xda\x1c\x5f\x3b\x80\x74\xe2\xc0\x3a\x7b\xe3\xe7\xe8\xd3\x92\xf1\xa0\xcd\xf2\x75\xe5\x8b\x74\x55\x06\xf6\x64\x47\x37\x7c\xde\x93\x13\x63\x89\x27\x75\x56\xc0\xd6\xec\xd0\x6d\x76\xc5\x9e\x2e\xe8\xa2\xed\xd3\x5f\x9d\x5b\xfd\x40\x36\xbb\xb3\x12\x24\x16\xf2\x5c\x8a\xcb\x56\x71\xe2\xec\xf7\xe2\x88\xcc\x61\xbf\xfd\xe6\x72\xaf\xc3\x7e\xfb\x0d\x93\xfc\xb6\xa7\x8b\xc3\x76\x86\xbd\xf8\xab\x33\x98\x8f\x5d\x9c\xaf\xdd\xa4\x7d\x17\xc8\xb7\xc7\xab\x4e\x5a\xc1\x5c\xe4\x5d\x52\xef\xef\xb3\xc4\x9d\x47\x5d\xd8\xc5\x13\xb5\xeb\xc9\x98\x01\x29\x53\xd3\x45\xa7\xe2\x1d\x9d\xdc\x63\xb8\x12\x48\xb1\xf7\xf1\x70\x7d\x8f\x7e\xe7\x80\xa4\xa7\x36\x77\xba\x9b\x2b\x57\x58\xd7\xb7\xed\x18\x82\x10\xbd\xad\x49\x75\xbc\xfb\xd8\xf2\xfd\x68\x70\x37\x76\xf5\xae\x38\xfd\xd8\x9d\xbb\x4d\x16\xc6\x15\x36\xb8\x91\xa8\xa9\x11\x1b\xe1\x52\x86\xe8\x08\x5d\x61\x23\xe3\x06\xb3\x49\x9d\x32\x68\x93\xeb\x97\x73\x20\x0c\x7b\x5e\xb7\xc6\x37\xd8\xbf\xa3\x30\x7a\x14\x3d\xa4\x17\x07\x26\x40\xfa\xba\x0d\x84\x90\x0d\x6b\x2f\xe1\x3d\xf6\xd0\xa5\x13\xeb\xa2\x64\xa4\x1d\xc7\x1e\xfb\x4c\x67\x07\xe6\x8e\x4d\x32\xd2\x4a\x2f\xda\x87\xcc\xb1\x72\x8a\xd1\x01\x62\x4f\xdf\xfe\x1c\x0f\xd5\x79\x68\x1d\xc2\x34\x5d\x59\xc5\xdc\xcd\x9e\xce\x11\x7b\xc5\x7b\xf2\xf4\xb6\xc4\xe2\x8a\x10\xbd\x33\xba\x3d\x1e\x6e\x56\x62\xe2\xcf\xc9\x08\x24\x75\x61\x84\x6d\x03\x0c\xef\x39\x5a\x93\x9d\x56\xd4\x65\x73\xba\xcc\x03\x59\x53\x5c\x80\xf4\x7d\xe6\x83\xb6\x2b\x0b\xba\xdc\xce\x70\x31\x85\x82\x2b\x9d\x8b\x29\x54\x6c\xdd\xdb\x69\x3d\xf1\x55\xd8\x4a\xe4\x99\x27\xeb\xb9\x7d\x58\x7c\xfd\xba\x0c\x42\x85\x03\x75\x19\x84\x3c\x47\xbc\x27\x99\xa1\xf2\x9e\x95\x4a\xe0\xe0\x76\x36\x67\xbe\x41\x5c\x5f\x77\x8a\xa5\x41\xa9\x03\x44\xdc\xad\x5a\x82\x19\x45\xc0\x46\x07\xca\xc9\x91\x9e\x33\x0f\xae\x20\x9b\xcf\x2b\x57\x82\x6b\xa8\x57\xc8\xd4\x83\xb4\xac\x0d\xc8\x86\xa2\x80\x64\x28\x02\xcb\x1f\xb8\x96\x0e\x20\x05\xf0\xe7\x80\x54\x87\xa4\xc6\x7b\x2a\x35\x74\xc5\x7b\xca\x80\x72\x45\x9b\x22\x63\x3b\xa3\xcb\xf1\xac\x7c\x20\x29\x4f\x58\xeb\x87\xf3\x29\x8f\x80\x5c\x2b\x66\x02\xc9\x32\x04\x89\x7e\xf8\xa4\x82\xe5\x32\xd0\xd7\xb8\xd6\x1e\x38\xa5\xb1\x12\x22\x99\x68\xf3\xf7\xc3\xbe\xf9\x31\xba\x8b\x66\x71\xc6\x94\x54\xb4\xe3\x27\xb5\x9f\x2e\x49\xc6\x35\x63\xc6\x0e\x57\xb3\xed\xbc\x26\xe9\x03\xd9\xbe\xe4\x11\x9e\x2e\xd5\x06\xb6\x3e\xad\xd1\xb6\x9a\xd3\x05\x13\x4a\xe1\xaa\x7c\x4d\xe3\x59\x03\x92\x57\x3d\x67\xf3\x65\x83\x2b\x2b\xff\x92\xcc\x80\x97\x0f\x1e\xdb\xa8\x36\x36\xe9\x39\x3f\x6d\x72\x78\x60\x95\x5c\x47\x1c\x2b\x00\xa5\x07\x52\xff\x9e\x53\xb6\xe3\x77\x49\x90\xc5\xb7\x53\xf4\x40\x6e\x70\xe7\xae\xd1\xe6\xd8\x6d\x0f\xaf\xb2\xe2\xe5\xca\x01\xc9\x10\xc6\xbd\xa6\x04\x99\x39\x3e\xfe\xed\xcc\xaf\x16\x36\xa8\x1a\x10\x3c\xe0\x1b\x55\x3f\x6d\x16\x0f\x5b\x40\x2e\xed\xc9\x08\x4e\x9e\xc9\xf2\x62\x93\x87\xb7\x7a\xdb\xff\x57\x47\x7c\xda\x65\xbb\x7b\xf4\x49\x7d\x01\x3b\xc8\x1d\x48\x7c\x57\x8e\x27\x4d\x4e\x6f\x20\xd5\xc1\xfd\xf4\x22\x63\x90\x14\x32\x07\x52\x25\x6f\x21\xda\x74\xed\x81\xee\x52\xb0\x07\x92\x49\x50\xdc\xcd\x74\x25\x82\xee\xf4\xe6\xd3\xfe\xdb\xdd\x37\xfc\x74\x5d\x82\x3c\x63\x74\xad\x99\xf5\xc6\xf3\xe3\xdb\x1d\x4f\x3a\x3c\xbb\x01\xe9\x6b\x75\xa7\x4f\xca\x12\x58\xf3\x37\x5d\x7a\xa0\xe6\xcf\x7b\xce\xf1\x70\x01\x39\xd2\x91\xf7\x9c\x31\xe0\xe6\x6b\x9d\xf2\x28\xf1\x0d\xa4\x0d\x67\x3c\x6b\xde\x7b\xbc\xa7\x50\x99\xc4\xf7\x39\x38\x66\xd2\xe6\x28\xc8\xc4\x78\x58\xfd\xe9\x53\x02\xa8\xc3\x3e\x0e\xa4\x74\xae\xf1\x0d\x16\xe8\xab\xdf\x73\x62\xcd\xdc\x12\x90\x94\x35\xa9\x00\x29\x5d\xe6\x9d\x81\xe4\x96\x59\x26\x90\x1c\xd6\x4a\x03\x12\x2f\x7e\x57\x20\x1d\xd5\xe4\xaf\x75\x51\x04\x27\xbe\x9a\x2e\x8a\xd0\x67\x3c\xe9\x22\xff\x17\xe3\x39\x40\x3a\xd1\xa7\xb5\xcf\x57\x40\x32\x68\xb5\x78\x4f\xc6\xed\xf8\x06\x65\xd6\xbb\xd9\x5b\xd7\x6d\xbc\x63\xf4\xe5\x9c\xde\x8c\xee\x74\x48\x39\xda\xa4\x6c\x8b\x6f\x58\xc6\x6b\x56\x42\x8a\x80\x11\xdf\xee\x88\x45\x30\xd2\x9e\xf3\xae\xc1\x32\xed\x2b\xdf\x9c\xb0\xfd\x40\x8a\x69\x4d\xcc\x45\xf2\x60\xfa\x3c\xa9\x20\x10\x70\xc2\x9e\x19\x8e\x4e\x9b\x2e\xe5\x50\x6a\xec\xc3\x36\xcb\x12\xbd\xa8\xe0\x14\x67\xe5\x26\x2c\xa2\x01\xc9\x1f\xe1\xbe\x80\x74\xe5\x5d\x01\xc9\x8e\xc2\xbe\xcb\xff\xbe\x3b\xc8\x65\xe2\x63\xef\x88\xda\x03\x39\x67\xcd\x04\xb2\x6c\x1a\x4f\xea\x6b\x87\x67\xa6\x2c\x3c\xcd\xc9\x4f\x0f\xe4\x6c\x92\x3c\x69\x0f\x12\x70\xf0\xc6\x0e\x36\x80\x54\x2f\x25\x07\x24\x77\xce\xf8\x06\xb3\x87\xec\xa6\xe4\xac\x6a\xd6\x63\xda\xc7\x3e\x3b\xca\x73\x0e\xa7\x03\xb5\x02\x6f\xe2\x71\x6f\xcf\x93\x03\x55\xed\x6d\xb4\x29\xee\x18\x5c\xb2\x05\xe4\x48\x95\xdf\x10\xe5\xf3\xa8\x6a\x5c\xf0\x81\x12\x44\x8a\xdd\xc7\xa7\x1d\xe9\xf3\xe4\xf8\xdb\x94\x91\xd8\x4e\x09\x14\x79\xb0\xf1\x4a\xed\xd3\x5c\x53\x63\xe2\x2c\x6f\x4d\xce\xb4\xb3\x7c\x1d\x6c\x27\xc5\xd7\xfb\x04\x92\xeb\x3c\x07\xd0\x05\x11\x6f\x46\x77\x61\x76\x1b\x1d\x0f\xe4\xbc\x18\x1e\x4f\x09\x32\xcb\x0d\x31\xa8\x84\x4c\xdc\x40\xd6\x77\x4d\x20\x69\xe2\x46\x3c\xe9\x0a\x22\xd1\xa6\x9c\xc9\xa3\x01\x29\xb1\x09\x9b\x5b\x15\x29\x37\xd8\x16\x07\xbc\xc6\x91\x73\x85\x06\xeb\x24\x0f\x24\xb5\xc0\x88\x27\xe5\x29\xcc\x46\x38\x45\xa5\x75\xd8\x07\x72\x4d\xb9\x0c\x24\x17\x99\x64\x48\xa6\x8c\xda\x5a\x40\xb2\x83\x43\x44\x9c\x78\xf2\x66\xe3\x1b\xde\xdc\x1e\x41\xd5\x1b\xaa\x93\x2a\x4d\xbb\xb2\xf7\x1b\xe4\x55\x72\xc9\x56\x20\x0d\x0d\x27\x2a\xfa\x34\xa9\x2d\x17\x90\xaa\x92\x70\x00\x9d\xb0\xc7\xfc\xe8\x81\x24\x2c\x5e\x8c\xae\x24\x4e\xe6\xfa\xa6\x7d\xd0\xeb\xe0\x4a\x70\x00\x6a\xba\xa3\xcd\xbb\x92\x81\x64\x44\x62\x5d\x24\xcd\x94\x96\xe3\x49\x79\xee\x42\x24\xed\x09\x62\x4f\xda\x03\xd9\xfb\x98\x11\x5c\xf5\x21\xf3\xa4\x18\x83\xc4\x75\xd8\x9d\xc5\x85\x43\x26\x2f\xf7\xd6\x39\x64\xf2\x19\xa9\xa9\x44\x9b\x0c\xa7\x90\x30\xc9\x44\x6d\xc4\xac\x97\x49\x18\xb3\x16\x43\x71\xc7\xcc\x08\xe1\x35\x24\xef\xf1\x92\x79\x72\x38\x78\x9a\x2b\x4f\xf5\xdc\x7b\x01\x7b\xf0\x2c\xbf\x27\x90\x05\xe5\x06\xa4\x10\x7a\x4e\xc0\x60\xad\x13\x90\x7d\x46\xe8\xd3\xf5\x96\xd9\x77\xa7\xc5\xa9\xac\xa0\xfc\xbe\x73\x65\x1f\x2c\x13\x75\xce\x83\xb2\xdb\xe4\xc6\x29\x96\x25\xa3\xda\x24\x78\x20\x79\x7b\x04\xe4\x64\x96\x60\xf9\x74\x44\x1f\x18\x32\x97\x8b\x3c\x05\x24\xbf\x02\x88\xb9\x8a\x1b\xb4\x0c\x3b\xb3\xe4\xa8\x78\x73\x3a\x96\xe3\x10\x8b\x57\x62\xc9\x45\xad\xb0\x0f\xf6\x0b\x69\x3d\xda\x6c\xfc\x0d\x48\x8a\x54\x2e\x08\x57\x62\x6f\xd1\xa7\x0b\x5c\x45\x2f\x96\xd6\xb8\xc8\xe4\x6b\x5d\x63\x5d\xac\xe9\x6f\x50\x29\x49\x4f\x2d\xd6\xc5\x7a\xf8\xce\x25\x60\x9f\xe9\x04\x31\x97\x97\x48\x2d\x5c\x2c\xd2\xa0\x77\xd7\xa5\x9c\x2e\x7c\x90\x5b\xb4\x6d\x47\x4f\xfa\x3d\x6b\xad\xe3\xc2\x7d\x98\x25\x1b\x01\x89\xec\x8f\x6f\x39\xe5\xf3\xa8\xbc\x6c\xe7\x05\xa4\x40\x4b\x88\x88\x04\x9f\x72\x43\xf7\xad\x7d\xee\x35\x20\x1d\x08\x3e\x57\x75\xe3\x5a\xeb\x01\x15\xb5\x4d\x20\xc7\xec\x33\x82\xb4\xd6\x03\xbe\xeb\xe1\xd2\x90\x6c\xc4\x43\xc1\x00\x9d\x3b\x1d\x81\x09\x1e\xf7\x49\xf2\xcc\x0e\x24\x2f\x54\x10\x54\x09\x66\xf2\x80\xbc\x3d\x7d\x58\xe0\x6e\x14\x28\x5b\x07\xfc\xe8\xd3\xe5\x18\x19\xdd\x55\xdd\x32\xbc\x87\x02\x5e\x73\x8b\x36\x71\x76\x19\x6e\x51\x69\x1a\xdb\x60\x3b\x1d\xc6\xda\x98\xd9\xcb\x65\x6c\xe0\x1d\x5d\x36\xbd\xb2\x82\xd6\x22\xdf\x90\x30\x57\x60\xeb\x5c\x80\xaa\x59\x90\x2b\x28\xa9\xa4\x8d\x3d\x78\xf8\x97\x25\x08\xe6\xf2\xb2\x5e\x1c\x72\xaa\xfa\x68\x6d\x40\x8a\xde\xce\xa7\x5c\x6e\x20\xf9\x3e\x73\xb1\xbc\x6d\xfa\x02\x7d\x9c\x9c\xa5\xf2\x45\x6f\x69\x44\xe1\x44\xec\xe3\xdb\x1d\x20\x3d\xa7\xa3\x2e\x87\x77\xda\xe9\xf0\x6b\xf1\xb1\x72\x92\xfb\xe6\xa0\xd6\xe9\x84\xf4\xdd\x61\x42\xf3\x93\x82\xde\x4f\x26\xc7\xdb\x99\xd0\xe3\x9d\x6b\x15\xcc\x9c\x8e\x6d\xb4\x1b\xd3\x81\x5c\x61\x4e\xf3\x9c\xba\xba\x1a\x47\x60\x3a\xee\xca\xf9\x26\x0e\x24\xa5\x92\x0f\xd2\xf4\xd5\xe5\x98\xc8\xe9\x9c\xc9\xd9\xa5\x3d\x27\x8e\x8a\xce\x99\x31\xa7\xf3\x31\x58\x53\x3c\xed\xa8\x58\x9c\x6f\xe2\x40\xca\xd4\x6d\x42\x3f\xa5\x5e\xcb\x48\x09\xb3\xe1\xc2\x45\x2f\x4e\xb3\x79\x31\x82\x30\xf9\x77\x48\x36\x79\xd6\x2c\x8a\x12\xd1\x26\x11\xde\x59\x92\xa7\xb3\x24\x57\xab\xf3\xa6\xb3\x1d\x57\x87\x1b\x1c\x48\x01\xee\xc6\x56\xf2\x1b\x37\x56\x42\xae\x89\x19\x72\x3a\x95\x57\xa1\xdb\x23\x60\xda\x51\x31\xdb\x3d\x6f\xce\x6e\x57\x56\xe3\xa0\xf3\x1b\x57\x4b\xa3\x73\x0e\xae\x27\x7f\x11\x19\x86\xcd\xfb\x4f\x87\x10\x15\x76\xcc\xd9\xd7\xec\x10\x3b\xa7\x6a\xf6\x94\xc9\x4a\x60\xdc\xbe\x79\x4f\x6a\x08\xf8\xd1\xa9\xeb\xa2\x3b\xf3\xc6\x74\xf6\xe1\xde\xf8\x22\x29\xdb\xaa\x0b\x92\x1e\xc8\x79\x8a\x1b\x90\x6c\x10\xbe\x1c\xa7\x32\xac\x65\x9b\x5f\x67\x38\x1c\x32\x6b\x3b\x15\xda\xf0\x36\xed\x54\xd8\xe1\xb0\xa7\x6b\xef\x38\xfd\xfe\xb4\x8b\x61\x6d\x31\x17\x2b\x72\xc0\x25\xa7\x5b\x43\xbe\x9e\xd3\xf1\x76\x66\x60\x48\x61\xec\x9a\x3d\x07\x72\x3c\x28\x90\x55\x8b\x83\x79\x6e\xbf\xc7\x5c\x24\x2b\xb6\xe8\x45\x51\x18\xf9\x8a\xf7\x64\x2a\x6d\xe9\x5b\xa2\xec\xdc\xc7\xc5\x36\xcf\x03\x49\x23\xe3\x63\x3c\x6d\x4d\x77\x56\xd1\xe9\x6c\xc7\x25\x96\xd7\x9e\x91\x37\x1b\xaf\xc8\xa7\xda\x4c\x86\xe7\x72\xed\xe7\xcf\x7b\x22\xb5\x26\xa7\x73\xd9\x83\x13\x62\xe0\xac\x6d\x77\x89\xb6\xa1\x68\x2a\x7a\x91\x20\xe2\x24\xdb\x07\x52\x7a\x40\x96\x50\x37\x67\xab\x6c\x84\x2d\xed\x76\x91\x39\x90\xb4\xa5\xa0\xb9\x4b\xba\x66\x88\xc8\x72\x2e\x8a\xc4\xf7\x39\x0b\x2d\xa3\x4b\x5f\xd9\x2a\x87\x65\x63\xc5\xcd\x40\x45\xde\xdc\x05\x48\x6a\x1d\x13\x57\x67\x5e\xee\xce\xa4\x3b\xed\xdd\x99\xed\x32\x76\x20\x7b\x7e\x46\x9b\xb2\xec\xa6\x78\x4f\xdf\xc0\xa1\xb6\x35\xdd\x55\x1f\x0e\x24\xdd\x5b\x02\x72\x6e\x3b\xd6\x73\x9b\xa3\x60\x5d\xb6\x5d\xe9\x38\x9c\xb2\xad\x77\x87\x60\x4f\xe7\x6f\x6e\x08\x53\x73\x3b\xf9\x38\x2b\xbf\x2d\xca\x41\xd0\x36\x5e\x06\x09\x48\xe6\xa6\x58\x17\x29\x95\x12\x68\xbe\x5d\x50\x8b\x63\x25\xfb\x79\x71\x84\xe4\x81\xb4\xba\x35\x9e\x94\x86\x12\x7c\xd9\x0e\xbf\xb1\xc4\x62\x2f\xd4\xda\x38\xf0\x2a\x2f\xdb\x3a\xab\xfb\x10\xbf\x0d\xef\x38\x1f\xbe\x74\x20\x14\x0f\xe7\xc5\x60\x66\xb2\x8a\x97\x06\xa1\x97\x1d\xbc\x5d\x77\x3c\xa9\xd0\x87\x16\x6d\x8a\xc2\x8a\x36\xc9\x60\x36\xfb\xcd\xf9\xd0\xf7\xe5\x18\x4f\xc4\xa7\xde\x01\x49\x3f\x9a\x99\x35\xce\x6c\xde\xbf\xa7\x5d\xf0\x38\x01\x4f\xbb\x8c\xf1\xed\x62\x21\x4a\xe5\xdb\xc9\x27\xf7\x81\xfc\xb5\x15\xc8\xdc\x5b\x03\x92\x0f\x0e\x38\xf8\x74\x7e\x19\x88\xb2\x35\xa2\x1d\x2c\x7f\x3a\x07\x35\x7b\xab\x12\xb2\x0d\x95\x56\x78\xcb\x42\xec\x9e\x2e\x32\x51\x99\xb5\xbd\xc0\xcd\x42\x38\xef\x73\xef\x5c\x56\x2f\x6b\xfa\x59\x09\xe5\x9a\xcb\xae\xdf\x37\xe7\x4b\x21\xc3\x93\xef\x93\x5e\x35\x23\x3d\x4d\x85\x33\xe5\x59\xe3\x49\xab\x91\x3c\xba\xb2\xbd\x75\x14\x1d\xf3\x3d\xec\xea\xe9\xfd\x53\x90\x52\x6f\xe0\x92\xb3\x39\x67\xce\x83\x72\x2d\xb7\x0c\x26\x8b\x85\xa8\x71\x71\xda\x3d\xf6\x86\x4e\xbc\x75\xa5\xdb\xff\x68\x2e\x2b\x2f\x87\x25\xab\x25\xe5\x65\xb7\x02\x76\x3a\x63\x73\xfb\x1d\x92\xc7\xb6\xbf\xcf\x6e\xb5\xdd\x41\x20\x07\xd2\x19\x6b\xd1\xa7\x74\xe6\x77\xb4\x49\x7a\xca\xd1\x8b\x94\x58\x66\x28\xd6\xe5\x1a\x8b\xfe\xa2\x25\x75\x65\x4b\xf1\x9e\x7c\x62\xe6\xfd\x6d\x42\xa2\xf3\xa8\x34\x6a\x77\x74\xe3\x84\x28\x7c\x92\xeb\xaf\x5e\x74\x6a\x47\xfa\xf8\xa4\xed\xd2\xa5\x4c\xc6\x69\xed\x7d\x38\xd7\xe5\x3a\x6e\x8d\xf7\x6c\x7b\x36\x31\xb0\x8f\x6f\x66\xe3\xed\xe3\xdb\x9c\xc2\x7c\xe2\xe3\x3b\x18\x21\x59\x8c\x65\xf4\x64\x8e\x97\xa5\x4f\xce\xa0\xe1\xe3\xb1\x92\x0b\xc1\x5b\x68\x5f\xce\x5a\x01\xef\xbf\x92\xcb\x1e\x95\x80\x4c\x32\xe9\xd3\x5c\x9f\x39\x26\xa7\xab\xee\x48\x02\xcb\x3a\x26\x67\x1f\x3e\x90\xfc\x2b\x7d\x38\xd7\xed\xbc\x5b\x3e\x1e\xcb\xb6\x6e\x27\x4a\x3c\x90\x1c\x7b\x7c\xab\x2e\x65\x59\xa8\x0e\x06\x98\xe1\x03\xcb\x17\xd9\xeb\x95\x63\x65\xaf\xd7\xea\x24\x32\x07\x92\xa6\xdf\x87\x73\x65\x87\x83\x5b\x82\x58\xae\xeb\xe2\xd8\xb1\x49\x86\x68\x67\x24\xf9\x7f\x19\x7b\x93\x64\x8b\x79\x1d\x5b\xaf\x9f\xa3\xb8\x43\x10\x49\x89\x45\x44\xc6\x9d\x0b\x49\x6d\xb9\xe7\x86\xe7\xdf\x70\x10\xdf\x5a\x27\xfd\xc2\xf6\xfb\x6f\xeb\x10\xd8\x3a\x2c\x40\x00\xac\x50\x8c\x19\xef\xd2\x95\xf0\x52\x07\xe2\x8d\x5c\x3d\xc3\x6d\xa7\xfa\x4b\x9e\xa9\xe8\xcb\xcd\x33\x95\x68\x76\x73\xfc\xe5\xaa\x61\xc6\xdb\xf3\x33\xc4\xbc\x24\x24\xbd\x35\x9b\x61\x57\xdb\x30\x35\x1b\xb2\xa4\x6d\xae\x25\x96\x58\x8c\xcb\x0e\x14\xcb\x0c\xfb\xbc\x49\x5c\x38\x62\xc6\x1d\x28\x9e\x51\xd5\x97\x88\xb0\x76\x57\x51\x90\x14\xa4\x5a\xf2\x66\x5c\x46\x95\x21\xfe\x24\x05\xe9\x85\xf2\x99\x0f\xaf\xe2\x12\x88\x87\xab\x0d\x51\x9e\xcb\x28\xa2\xd2\x1d\x28\x0c\xe4\x86\xbf\x0c\xef\x50\x16\x40\x59\xb6\xe2\x1a\x70\x20\x28\xd1\x05\xbd\x71\x2f\xce\x18\xb4\x6f\x56\x5f\x78\xb2\xf6\xd8\x2b\x9e\x80\x2c\x09\x33\x76\xd1\xcf\xb8\xfc\x65\xb8\x05\xb3\x6f\x26\xb6\x73\x23\x78\xc1\x20\xb6\x73\xc3\xfc\xf0\x40\x18\xc8\xf9\xcb\x08\x02\x84\x8a\x26\x62\xf3\x3d\xc4\x4b\x71\xad\x53\x75\x8d\x34\x75\xad\xd3\xfc\x5b\x58\xb2\xb3\xfc\x12\x95\xb9\x58\x36\x1b\xee\xe0\xb7\xff\x2f\xf8\x8c\x0d\x1a\x31\x9a\x9f\xec\x3a\x83\x07\xad\xc2\xda\x22\x9a\x9d\xfa\x12\x17\x2b\x43\xdc\xda\x89\x25\x7d\x1b\x8a\x67\x31\xc9\x74\x44\x50\x6e\x38\x99\x9d\x7d\x5d\xd8\x1b\xb3\xaf\x9c\xf1\xb8\x7d\x13\xac\x7e\x60\x84\xda\xb2\xb8\xbc\xeb\x52\x02\x68\x60\x04\xa7\x39\x8a\xe0\x5d\xed\xd1\x3c\x70\x91\x83\x1f\xf0\x20\xa2\x71\x1b\x52\xae\x61\x92\x5a\x30\xd9\x1c\x04\x2d\x6e\x4d\x92\x33\x22\x5e\x08\x8e\x1e\x63\xea\x92\xe7\xf1\xff\x7d\x71\x99\xc8\x68\xb9\xe4\x21\x22\xdf\x81\xc2\xe4\x36\x1b\x0a\x97\x1e\xb6\x56\x73\x28\xd2\x3a\xb5\x4c\x25\x59\xfb\x47\xeb\x8b\x31\xc3\xc3\xbd\x59\x9d\x2e\xdc\x1b\x58\xe5\x26\x7e\x3b\x59\x4c\xb8\xe2\x98\xd7\x34\x40\xfc\xc8\x87\x9a\x27\xe3\x85\xae\xbb\xb1\xd6\x7b\xf4\xac\x32\xd9\x97\x3c\x52\x29\x9b\x23\x92\x94\x79\x38\x64\xd7\x2c\x55\xb4\x31\x67\x11\x53\x84\x61\x5d\x21\xe4\xe7\x81\x72\x28\xd7\x21\x28\x7c\xf6\x35\xf1\x2f\xfe\x76\x52\xa0\x2f\x8e\xe3\x12\x47\xdc\xac\xb5\xfe\x2a\xce\x6d\x55\x5f\x48\x7b\x3f\x92\x6a\x91\x4d\x05\xb5\x90\x64\x51\x0f\x6f\xf3\xa7\xd4\xe1\x97\xa0\x70\x6a\x95\xd2\x62\x9f\xd0\x25\x56\x3f\x12\xca\xaa\x9f\x9f\x1c\xb2\xa1\x04\x0e\xcb\x59\x82\x14\xd7\x09\xa5\x49\x4d\x7d\x4c\x19\xbf\x2d\x1c\x81\x71\xd6\x1e\x2b\xd6\xdf\x87\x7c\x1b\x83\xc8\xaf\x0f\x26\x78\x07\x22\x8b\xdc\x00\x52\xe6\xe2\x0e\xb4\x48\x7d\x59\x05\xe1\x0e\xc3\x6f\x89\x78\xbc\xec\x9f\x56\x22\x0c\x7b\x11\x14\xcf\x8c\x18\x0e\x8e\x55\x48\xad\xcb\x6c\x12\x62\xf4\x21\xac\xe7\x81\xc2\xf1\x82\xe5\x69\xe1\x32\x41\x50\xd1\x21\xc3\x25\x5d\x46\xad\x42\xbc\x09\x76\x22\x8b\xcc\xd3\x64\x48\x19\x04\xf2\xac\xba\xf7\x5f\x24\xe9\xd2\x5e\x67\x85\xc2\x7e\xb4\xab\x5d\xe1\xde\xd0\xba\xea\x0c\xc5\x5b\x74\xa8\x5d\x0f\xb6\xeb\x43\xbf\x4d\x42\x91\x17\x41\xb1\xe7\x2c\x86\xe2\x08\xaf\xf6\xc2\xbd\xa1\xe2\x53\x37\x16\x2e\x05\x6d\xdc\x82\x62\xa6\xd9\x07\x29\x48\xa4\x6e\xc2\x57\x8b\x58\x06\x3a\x91\xad\x46\x62\x51\xd1\xac\xe1\x06\xa5\x59\x69\x0a\x4f\x94\x05\xc5\x5d\x3b\x5c\xbe\xf0\x5f\xd4\xbe\x72\xe1\x4f\x88\x85\xff\xc0\x3e\xe7\xc6\x77\xf3\x1c\x82\xb0\xe8\x68\x82\xc2\xb5\x4a\x94\xd0\x09\x57\xf3\x3e\x48\x28\xa0\xd1\x12\x95\x43\x37\xe1\xc4\xe0\xbb\x75\xe7\xba\x66\xcc\x34\xde\x7e\x07\x8a\x47\x63\xce\xc9\x2b\xa2\x72\xdc\x7a\x82\x5c\x61\xdb\x7d\x37\xf5\x73\x62\x1c\xc8\x75\xd7\x9a\x44\xba\xd3\xd8\x27\x7c\x56\xd5\xfa\x0a\x13\x58\xf1\x75\x64\xf7\x69\x43\x63\x58\x2c\xa3\x28\xfa\xb5\x88\xfd\xf6\xe8\xb7\x11\x16\xcd\x2c\x87\x6b\x71\xbe\xe6\x64\xb5\x42\x13\xdd\xf8\xcd\x1d\x08\x97\x25\x43\x71\xed\x78\x19\x0a\xd3\x4b\x8d\x68\xc5\x85\x93\x76\xd8\x2b\x32\xf1\xdc\xa4\x56\x18\x2b\xce\x67\xf5\xe2\xc2\x62\x6d\x96\x12\xf4\xcb\xda\x04\x2a\x65\xa9\xc4\x5e\xa6\x10\x42\x6a\xac\x8d\xad\x3c\xfa\x53\xb6\x26\x18\x4a\x8c\xf5\xf2\xba\xc5\x66\x71\xbd\x64\x32\xfc\x0f\x94\x32\x06\x25\x15\x2b\xd4\xb1\x88\x06\x51\x24\xaa\xb8\x17\xea\x9a\x7c\x71\x98\x7a\x34\xdc\x37\x84\xf3\x16\x53\x90\xcf\xf6\x12\x33\x61\x37\x3c\x92\xa0\x58\xe5\xc8\x8d\x31\x56\x1c\x91\xee\x47\x53\xf6\x23\x67\x08\xab\xff\x8a\x00\xdc\xe5\x11\x2b\x63\xa4\xc2\x4e\x6b\xae\xb8\xf5\x4c\x98\xd6\xcc\x15\x7b\xf8\x41\xdc\x81\xb9\xc2\xae\x20\x61\x3b\x70\xa0\x3b\xa0\x26\xe8\x77\xbe\x8c\xd5\x6a\xae\xb0\x01\x48\xd8\x45\xcf\x15\x7e\x7a\x09\x8b\xdf\x03\xad\x80\x9a\xa0\x7d\xfe\xaf\x19\x7a\xe3\x37\x5a\x8f\x5d\x7b\xe2\xce\xfc\x40\xfd\x40\xb1\x4f\x38\x50\xb4\x10\x22\x3e\x57\x5a\xf1\x65\xac\xa3\x13\x8b\xdf\x41\xfa\x9b\x89\xc5\x6f\x4a\x99\x16\xe2\xcd\x7a\xdc\xaa\x33\x22\x14\x24\xde\x89\x0f\x14\xb5\x14\xff\x76\x46\xc4\x6e\x78\x62\x81\x3b\x6e\x51\x22\x2c\x70\x13\x77\x76\x73\x45\x84\xb5\x81\xdb\xce\xc4\xea\x75\xdc\xa2\x44\xbc\x05\x27\x12\x03\x4c\x2c\x5b\x13\x41\xfc\x27\xb6\xac\x89\x20\x47\x07\x8a\x3a\x1f\x5a\x0f\x6f\xb8\x84\x6d\xe9\x24\x7a\xf4\x20\x1e\xd9\x81\x5a\xfc\xc6\xd8\x0b\xf3\x50\x6f\x41\x31\xf6\xae\xd6\x67\x8c\xbd\xaa\x3d\xc6\xd0\xd5\x17\xc6\x50\xd5\xfa\x0a\xba\x74\xb5\x7e\xd4\x7e\x4a\x6e\xef\x50\x77\xe0\x3c\x32\x89\x33\x9d\x92\x66\xec\x66\x44\xad\x0b\x7a\xfe\xfd\xaf\xc1\x03\xda\x24\xb2\x74\x22\x1e\xd9\x81\x7e\xf1\x9b\xff\xef\x3b\xbf\x75\x5a\x88\x93\xc0\xe0\x8a\xe9\x40\x41\xb3\x5e\x04\x05\x95\xfa\x2d\x28\x7a\xad\xf1\xdd\x70\xa4\x46\x14\xb1\xd8\x12\xc9\xf3\xe7\x0a\x2f\xba\x44\x84\x97\x03\xc5\xff\x0d\xea\x8c\xc8\xcb\x03\x0b\xdc\x03\x05\x3d\x47\x15\x74\x78\x9e\xcb\xa1\x03\x45\x9d\x83\x3a\x1f\xf8\x65\x74\x41\x31\xf6\xa1\x5a\xa2\x9f\xc4\x26\x9c\x2c\x4f\x29\x8b\x12\xf1\x80\x3d\x88\x3a\x7d\xa0\x12\xbf\xd1\xb3\x30\x8f\x4d\x24\x3e\x38\x50\x50\x49\xf2\x17\x9e\x79\x29\x8b\x93\xe3\xde\x7f\x3c\x9a\xa3\x1a\xfc\x92\x25\x2b\x35\x7a\x96\xc5\xd7\x71\x47\x9f\x50\x5a\x73\xd5\xa3\x19\x12\x96\x35\x93\x45\x2e\x71\x59\x7a\xa0\xe8\xb5\xa4\x23\x76\xfb\xa3\x8a\x77\xdb\x88\x7e\x96\x4b\x50\xb4\x57\x18\x43\x04\x18\x4e\x78\x37\x1c\x28\xea\x2c\x6a\x61\xf1\xa5\x5a\x60\x0c\x85\x16\xc2\x94\x75\x54\xd1\x2c\x72\xa9\xa4\x2c\xa9\x0a\x67\xb8\xd1\x44\xc1\x78\xe0\x4d\xc4\xb9\x9c\x2b\x32\xab\x24\xc2\x36\xcd\x15\x0f\xb5\x89\xeb\xd8\x03\x1d\x9e\x6f\x92\xe2\x78\xb6\x4d\xf9\xb9\xfe\x49\x29\x4f\xac\x5e\x47\x53\xa5\x71\x14\x48\xf9\x29\x82\xee\xf8\xed\x11\x44\xa5\x55\xd0\x8a\xdf\x86\xa0\xef\x40\x62\x98\xc1\x44\x54\x43\xd1\x51\x89\x6a\x1c\x21\x06\xf7\x87\x07\xaa\xf1\x5b\x16\x74\x26\xbe\xf9\xff\xce\xda\x9c\xb2\x84\x33\x32\x04\xa6\x2c\xf6\x19\x30\x8c\x84\x33\xf2\x97\x8c\x26\x01\x9c\x30\x45\xa7\x96\xf0\x9f\x1a\x5d\x84\x89\x7b\xe3\x94\x25\x48\x0b\x36\x90\x20\xc5\x4a\x3d\xba\x46\xb4\x98\x6a\x09\x4b\xac\xb1\x09\x63\xf9\x89\x2d\x6b\x22\x58\xca\x81\xce\x94\x75\xf5\x2c\xfc\x99\x52\x96\x20\x2d\x26\x49\xa2\x13\xef\xb6\x29\x4b\x74\x16\x2c\x22\x36\xd8\x31\xd5\x45\x02\x11\xef\xb6\x09\x73\xb9\xb9\xe2\xd6\x33\x15\x2d\x3a\x71\xba\x18\x5c\x58\x1c\x28\xc7\x6f\x4d\x50\x39\xbf\x89\x5d\x23\x14\x54\x2a\x52\x29\x61\x23\x3a\x46\x31\x74\x58\x12\x57\xea\xb9\x22\xdc\xd3\x18\x52\xfb\x2f\xad\x6b\x79\x8a\xa8\xbe\xa9\x48\x90\xc2\xa9\x26\x15\x09\x52\xa4\x7e\x4f\x45\x8b\x4e\xc4\xf8\x4d\x44\xdd\x9b\x2c\xb1\x89\x43\xdf\x64\x89\x4d\x45\xbd\x8e\x2c\x72\xa9\x48\x74\x3e\xea\x94\xe8\x44\xa8\xa4\x74\x5d\x8f\x7f\x5c\xf1\x63\x13\xb4\xf9\x51\xdf\x06\x6f\x11\x0a\xfd\x40\x51\xeb\xcd\x98\x3e\x46\xaf\x45\xfd\x0b\xda\x63\x05\xb0\x3a\x4b\x3c\x26\x79\x8b\x30\xb4\x09\xc3\xb0\x85\x19\x63\xc2\x96\x67\x61\xb8\x98\xb0\x21\x59\x3d\xf2\x7c\x27\x4c\x15\x57\x4f\x8c\x37\x96\xab\x03\x1d\x3a\x5d\xe9\xef\xc7\x33\x0c\x3c\x2a\x16\xd6\x7b\xe7\xc7\x26\x30\x5a\xac\x49\xd0\xcb\x8f\x5d\xe0\x2f\x7e\xa4\x03\x11\x6d\x36\x5d\xd8\x83\x1c\xb0\xc5\x8f\x6a\x24\x14\xee\xc5\xca\xb7\xb0\xd9\x4b\xbc\x6e\x2e\xac\xf4\x12\xa1\xf1\x16\x56\x6c\x09\x77\xb6\x85\x6d\x5a\xc2\xb4\xe9\x40\xa7\xc5\x0b\x6b\xa6\x85\x01\x5a\xe2\x91\x7b\x75\x36\x08\x17\xaf\xe3\x0b\x7b\xb4\x44\x0c\x85\x45\xcc\xd7\xf3\xa3\x1a\x61\x06\xba\xea\x89\xa5\xf7\x42\xcf\x2e\x6c\xc9\x0e\xd8\x04\x46\x45\x43\x5d\x08\x3e\xbe\x08\x3b\xb9\xb0\x26\x4b\x1c\x12\x0e\x14\xd5\x0e\xfe\x31\xa2\x13\xa5\x2b\xdf\x74\x28\x5c\xe8\x13\xb1\x9d\x0f\xd4\x03\xe2\x1f\xc3\x91\x25\xf1\xf4\xbc\x08\xbd\x9a\x70\x90\x5e\x04\x3f\x4d\x17\xe2\xb8\x7a\xac\xbf\x89\x1d\xd3\x81\x4e\xe7\x2e\xe4\x71\x11\x0c\xf5\x80\x54\x14\xc7\xb7\x44\x16\xe0\x03\xed\x80\xe8\x40\xf8\xb1\xa7\xab\x08\x0c\xf7\xf4\x84\xfb\xd1\x81\xe2\x1f\x0b\xff\xc8\x72\x79\x97\x7f\x8c\xb0\x7c\x3e\x8d\x36\x6e\x08\xfb\x30\x2c\x11\xe0\x59\xfc\x46\xa5\xb1\x42\x26\x6c\x1e\x0f\xc4\x38\x7a\x16\x98\xe3\xc7\x2a\x88\x51\xf5\x2e\x70\xc5\x8f\x43\xd0\xe6\x47\x83\x87\x99\x6e\x49\x4c\xa5\xe7\x8f\x9a\xa4\x73\x8f\x9a\x84\x38\x12\x83\xb0\xb3\x4a\xb7\xf8\xbe\x41\x64\x31\x7a\x63\xe6\x24\x3f\x11\xbd\x3f\x5d\xff\x03\x1e\x26\xbc\x25\x05\x0d\x1a\x57\x9a\x88\x6c\xbc\xe9\x96\x10\xc4\xd1\x33\xdd\xe2\xfa\x38\x7a\xa6\xeb\xee\x49\x60\x0c\x4a\x42\xc0\xb2\x7c\xdd\x22\x47\x5b\x31\xa8\x4a\x8b\x9d\xc9\x91\x4c\x74\xe4\x0e\xf3\xe2\x85\xcd\x54\xba\x5b\x13\xd4\xf9\x31\x09\x8c\x1e\x34\x1a\xe9\xcc\x4e\x53\xad\xa1\x86\x6e\x89\x44\x67\xae\xd4\xb9\x01\x19\xd5\x9b\x01\x19\x3b\xac\x32\xa8\xa5\x43\xe2\xa1\xff\xa3\xce\x19\xaa\xe6\x96\xe8\x4c\xc8\x38\xa0\xcd\x9c\x21\x48\xd8\xff\x1d\xf0\xac\xe8\xee\x68\x78\x36\x9f\x1f\x9b\xc0\x19\x3f\xde\x82\x42\x96\xc9\xed\xb9\x88\x43\x99\x1e\xc9\x55\x78\x33\xa7\x47\x72\x15\x27\xe5\xf4\x48\x1c\xe2\x75\x34\x3d\xd2\x1e\x2b\xe6\xf8\x91\xba\x58\x08\x52\x95\x3a\x0d\x23\xa7\x84\x0f\xe1\x81\x26\x3f\x76\x81\x2b\x7e\x7c\x04\x6d\x7e\x1c\x02\xdf\xf8\x91\x0e\xc4\x03\x69\x7a\x34\x8e\x78\x20\x4d\x57\x95\x1a\x0c\xef\xe3\x03\xaa\xa2\x60\xc8\x47\xc3\x5a\xc8\x67\x6d\x06\x0f\x9b\xf1\x5a\xb5\xb0\x9e\x4a\x4f\xe9\x82\xe2\x1f\x0b\x1d\x08\xff\x92\x74\x71\xaf\x7e\xc0\x18\xb4\xe4\x2c\x82\xe5\xa4\xab\x49\x78\xc2\x0d\x36\x3d\x7f\x50\xe8\xf7\x26\x1a\x84\xe7\xeb\x01\x9b\xc0\xf3\xaf\x8f\xe4\x25\x62\xe9\x9c\x1f\xbb\xc0\x11\x3f\xfa\xd3\xc9\x8f\xaa\x37\x26\xec\xf9\xfb\xf4\x17\x90\x7f\xfb\xe2\x53\xc9\xcf\xcb\x84\xfd\x41\xd1\x3d\x2d\x29\x11\x69\x27\x5d\x4d\xfa\xfe\xc7\x6c\x4a\x28\x7e\xcc\x66\xbb\x04\x45\x35\xa2\xdd\x0f\xc2\xb6\x5b\x50\xfc\x9f\x6a\xf9\xa0\x9d\x44\xe2\x63\x85\xeb\xc5\x3f\x46\x57\x25\x05\x5f\x2c\x37\x17\x4e\xbc\xab\x7f\xb4\x28\xa1\xf8\x10\xc3\x2e\xcd\x17\x29\x66\x13\x91\x63\x0e\xd4\xf9\x51\x15\x85\x18\x72\xc1\x70\xa0\xc9\x8f\xae\x28\x88\xa5\xd9\x63\xab\x70\x61\x09\x7b\xc0\x60\x2e\x29\xc2\x08\x0c\x94\x1e\x09\x5b\xdc\x68\x26\x9e\xc3\x0e\x14\xe3\x1a\xff\x68\xae\xb1\x7a\x04\xd7\x4f\x0f\x52\x3a\xd8\x56\x60\xbc\xb1\xb0\xa5\x4a\xf8\xfc\x1e\x88\x2f\x1f\x20\x9a\x67\xed\x1b\x17\x73\xce\x7d\xee\xc2\xd0\x2a\x61\x67\xb9\x46\x64\x9d\x4d\x58\x02\xae\xc1\x65\x01\x56\x1f\x07\xea\x01\xd1\x44\x42\x2d\x60\x4a\xbd\x88\x7c\x98\x88\x4b\x78\xa0\x9b\x1f\x87\xc0\x27\x7e\xf4\xa7\x3b\x20\x7e\x63\x1b\x51\xd5\x9b\x30\x63\x4f\x18\xc7\xad\x11\x0e\xc2\x89\xe7\x88\x35\x72\x54\xca\x63\xcf\x81\xf8\xf2\x16\x14\x75\x22\xe9\x23\x0c\xc9\x93\x34\xd6\x08\xa7\xdc\x94\x08\x48\x7b\xc0\x16\x3f\x36\x41\x9d\x1f\x55\x6b\xa8\x7e\xae\x8d\x16\x01\x0e\x13\x96\x2d\x8b\x90\x86\xa9\xe6\x4b\x50\xb4\x8f\x12\x18\x91\x40\x36\x61\x97\x71\xa0\x68\x3f\x53\x27\x7b\x06\x5e\x0b\x0e\xf4\x70\xe1\xd3\x04\xd6\xf8\x51\x4d\x84\xc8\x25\xfc\xca\x0e\x78\x18\xb9\xaa\xe3\x65\x71\x55\x84\x78\x8c\x88\xf4\x9e\xaa\x3a\x1e\x91\x77\x12\x97\xae\x8b\x58\x85\x89\x0b\xf5\x35\xe2\xaa\x38\xe9\xd2\x67\x8d\x9b\x39\xbe\xbb\xa0\xf8\x14\xcd\x32\x22\xed\x52\x4a\x49\xff\xc9\xd9\x5c\xea\x74\x70\x36\x97\xfe\x1c\x91\x4d\x29\xa5\xc4\x2a\x8d\x09\x5b\xaa\x1a\x16\x6b\x36\x26\x65\x8b\xc8\x7b\x49\xa7\xe5\x35\x22\xe6\xcc\x01\xf9\xb5\x41\x65\x96\xb7\xc1\x51\x1a\x5b\x91\x45\x0c\xbd\x94\xf0\x52\x59\x64\xdb\x4f\x38\xe1\xad\xc1\x1a\x2e\xfd\x39\x38\xcd\x12\x1b\xeb\x40\xf1\xe5\x60\x7a\x3a\x0c\x28\xc9\xe9\xfc\x9f\x24\x87\xf5\xb4\x4a\x72\x06\xd3\x2a\xc9\x19\x0c\x4a\x92\x33\x18\x14\xbb\xc6\x11\xe1\x3f\x52\x93\xa8\xb0\x10\xf2\x1a\xb7\x30\x3c\x4a\x4d\xa2\x12\xd7\xb2\x89\x18\xaf\x0b\x93\x9a\x84\xd3\xdf\x22\xd1\x79\x6a\x92\x1b\x0e\x74\x4d\x82\x12\xce\x89\xa9\x49\x18\x22\xd6\x42\x6a\x62\xf8\xcd\x0d\x9c\x74\xe5\x88\x1b\xd5\xd4\x34\xc3\xf1\xd2\x93\x9a\x38\x35\xec\x51\x52\x13\xa7\x46\xb6\x97\xd4\xc4\xa9\x2f\x83\x60\x6f\x39\x5e\x06\x21\x4e\x65\xe5\xc0\x76\x6b\x8d\x97\x49\xb3\x30\x44\xb4\xdd\x44\x68\xb7\x85\xd1\x49\xfa\x93\x8d\x30\x71\x4d\x04\x6d\x58\x83\x13\x5e\x13\x6b\x72\xc2\x6b\x28\xee\xf1\x63\x7e\xf1\x6f\x5b\x83\x43\x5d\xd3\x6c\xff\xe8\x1c\x47\xac\xf1\xd3\xbd\x9b\xf8\xed\x07\xa9\x04\x45\x26\xc1\x84\x25\xcd\x81\x3a\x57\x74\x5d\xe0\x88\x1f\xa9\xe7\x83\xfe\x9c\xa3\x06\x87\x3a\x8c\xb2\x17\xd1\xd6\xd2\x1f\x3d\xc2\xba\x24\x61\x9c\xb0\xb0\xf6\x48\xad\xfd\xe3\x25\xc8\xc2\x14\x24\x11\x9e\xfe\x40\xd1\x73\x72\x3e\x1d\x30\xe6\xaa\xa9\x56\x2e\xdf\xb8\x30\x39\xe0\x1b\x3f\x3e\x40\x4c\x01\xe3\x20\x5d\x78\xc2\x04\x69\x11\xc5\x2d\x25\xac\xcd\x16\x81\xdb\x12\x71\x48\x0e\x14\xc3\x42\x50\x66\xb8\x6c\x25\x1c\xf0\x16\xa1\xda\xd2\xff\x7c\x1a\x37\x52\x58\x55\xae\x99\xa0\x39\x72\x33\xd1\xe3\x3c\x16\x1d\x28\xa8\xc3\x75\xf8\xc2\x3c\x23\xb5\xa1\x6a\xd0\x4e\x64\x1e\x3e\x60\x34\x39\xf4\x29\x93\x35\xfc\x5b\x8c\x83\x73\x12\xd1\xd3\x12\x66\x48\x0b\x2b\x8f\x44\x6c\x87\x35\x39\xe1\x61\x86\xb4\x88\x89\x96\x70\xbb\x39\x10\x5f\x32\xfc\x82\xe2\xea\x22\x4e\x04\x3f\xf8\xeb\xa9\xae\x88\x3b\x4a\x85\x2c\xe1\x7f\x3d\xe5\x8e\x98\x68\xc9\x8b\x4c\xe0\x89\xb0\x41\x8b\x68\x6a\x89\x20\x3b\x8b\x18\x69\x09\x9b\xf2\x03\x05\x35\xc6\x65\xf0\x8b\x1f\xe9\x1c\x3a\x3f\x8d\xcb\x60\x8a\x1f\xd5\xd7\x98\x47\x1e\x46\xd7\x44\xad\x13\x2e\xf2\x40\x93\x1b\x56\xd5\x1a\x72\x8d\x11\xef\xc2\x7c\xe4\xfc\xa8\x5a\xe3\xb4\xd1\xf5\x29\xb7\xc6\x5d\xbf\xb1\x02\xe0\xfd\xb6\xb0\xee\x48\x38\x84\x2c\x32\x85\x27\x9e\x2a\x17\xf1\xce\x12\x96\xc1\x0b\x0b\x8e\x44\xc0\xd6\x03\xc5\xa0\x90\xf2\xe9\x9b\x5a\x4d\x6a\xbc\x2b\x26\x0c\xc4\x17\xe9\xc0\x13\x26\x23\x8b\x94\xdf\x49\xdb\x33\x02\xa5\xa5\x7c\x25\x83\x31\xa8\xa2\x16\xb9\x88\xbb\x44\x8e\x88\x11\x9b\x78\xd7\x5c\xf3\x61\x92\xd9\x72\x4d\x0e\xa6\xda\x63\x11\x38\x2d\xe5\x4b\x8d\x84\xbb\x51\xc2\x82\xfb\x40\xdc\x1c\x17\x81\x10\xf9\xd1\x7f\xc2\x48\x9c\x36\x49\xca\x9d\xf2\x25\xee\x88\x94\x14\x09\x9b\xa7\x45\xd4\xb3\xf3\x63\x12\x18\x63\x66\x41\x9c\x9c\x45\x79\x87\x3c\x50\xdc\xd4\xf1\xe4\xbc\x66\x24\x96\x3b\x60\x15\x18\x83\x66\x17\x3c\x75\xf1\x7b\x49\x22\x1a\xfc\xc1\x49\x71\x86\x25\x75\xca\x49\x42\xd0\x10\x89\xa6\x7a\x60\x9e\xa6\x7f\x0c\x25\x90\x93\x38\x8b\x13\x67\x97\xd8\x47\x5a\xb8\xd4\x25\xf6\x9c\x14\xbb\x7a\x37\xe0\x01\xc9\x79\x24\x5f\x4b\x39\xa9\x8d\xb8\xc3\x4d\x5d\x62\xaf\x7b\x5a\xde\x15\x0e\x18\x03\x91\xd8\x0f\xdf\x98\xd3\x01\x0e\xa0\x96\x09\x0e\xa0\x16\x82\xf0\xb0\x49\x39\x6b\x58\x11\xa0\x20\x69\x1b\x3a\xc3\x14\x39\x0d\xc9\xd6\x64\x6a\xb3\x98\x39\x22\x14\xa4\x21\xf6\xe1\x3e\x76\x88\x5f\x38\x72\xe6\xac\xc9\xe4\x58\x69\xf1\x61\x1d\xce\xf9\x9f\x13\x01\x2e\x02\x6a\xfd\xc9\xd6\xe4\xc6\x3b\x57\x57\xbb\xe2\x47\xf5\x80\x9b\x56\x1e\x53\x0f\xf8\xc6\x8f\x74\x88\x4b\xe0\x21\xe9\x5a\x31\x23\x43\xd2\xc5\x15\xed\x90\xc8\x84\x21\x6c\x22\x91\xc7\x22\x3c\x54\x22\x1d\xc1\x81\xa2\x4e\x89\x53\x3c\xad\xa6\x5c\x24\x32\x91\x91\x39\x0d\x31\x3e\x77\xbb\xb9\x48\x64\xc2\x68\x36\x0d\x31\xfe\x66\x42\xd8\xcf\x4d\xce\x98\xc3\xd5\x4c\xda\xd7\xff\xc5\x26\x0d\x63\x91\x85\x01\x4a\xca\xba\x6e\x24\xec\x53\xc2\x23\x69\xcd\xcd\xe3\x47\x11\x33\x6f\xe6\xee\x56\x77\xfc\x36\xc1\xb0\x5e\xa6\xb2\x88\x61\x5f\xa6\xf2\xf1\x8f\x9d\x1f\xbb\xc0\xe8\x82\xa4\xf4\x85\x04\x9a\xd8\x57\x24\x10\x17\x86\x89\x4a\x1a\x92\x52\x8e\xc7\x3a\x8b\xcc\x78\xed\x4d\x3a\x7c\xcc\x17\x69\xd2\x65\xdf\x7c\xe3\xa0\x32\x34\xae\x78\xee\x4d\x43\x12\xcc\x7d\x33\x41\xd2\x0f\xc4\x6f\xf4\x86\x73\xeb\x10\x3f\x44\x6e\xb8\x34\xc4\x00\x9c\x5b\x71\x86\x3d\x10\xff\x47\x7b\x3f\xd8\x9c\x9d\xf0\xfc\x05\xe5\x86\x08\xc7\x3d\x35\x71\x75\x17\x99\x92\xd3\xd0\xa6\x81\x3d\xcc\x10\x15\x39\xc3\x12\x55\xe5\x40\x31\x06\xed\x20\x38\x16\x0e\x11\x98\x3d\x0b\x8e\xf8\x6b\x5d\x6a\x61\x08\x4a\xbc\xc6\x54\x81\xc1\xf1\xe8\xbd\x75\xe9\x39\x06\x5d\xbb\x2e\xe8\x8d\xf7\xc3\x01\xa3\xda\xae\xff\x84\xe5\x08\x6a\x73\xc0\x20\x38\x8a\x66\x5d\xc8\x39\x09\x63\x16\x89\x95\xf3\x75\xa9\x15\x1e\x3e\x88\xe5\x7d\xc0\x11\x3f\x26\x41\x6f\x40\xea\xc1\xa1\x5c\x26\xdc\xe5\x81\x7a\x40\x74\x20\xdc\xdc\x53\x26\xb1\xe4\xc2\x30\x27\x63\x3a\xb2\x56\xf8\xab\x7b\xb5\x59\x71\x6b\xed\xe5\x65\xc5\x01\x33\x5f\xec\x62\x17\x7b\x8f\xac\x63\xd3\x8a\x6b\xeb\x8c\xd7\xc1\x5a\x59\x6f\x49\x48\x04\x59\x91\x33\x41\x11\x17\x59\x91\xcf\x8f\xf4\x3c\xce\xa6\x19\x5b\xf1\x45\x7a\xe3\x94\x75\x6e\xe2\xf5\x3a\x5f\xaa\x27\x36\x23\xf9\xd2\x3f\x46\xbc\xfb\x7c\x89\xe8\x05\xa2\x6b\xe3\xca\x83\x75\xc6\x2b\xf0\x40\xd1\x75\xb6\xc3\x84\x5b\xca\x58\x1b\xaf\x55\x90\xc8\x96\xd4\x06\xc4\x7a\x54\xeb\x8a\x4f\x35\x1f\xbc\x20\x67\x9d\x07\x08\x72\x94\x31\xfc\x5c\x04\x39\x3a\x3f\x66\x81\x41\x57\xa4\x8c\x17\xe5\x7c\x69\x54\x11\x2b\x3f\xe3\x37\xb7\xd6\x0d\x01\x10\x2b\xb2\x05\x67\x6c\x2a\xd6\x7a\x18\x3f\x62\xb5\x62\x87\x91\x2f\x44\x87\xd7\xdf\x7c\x21\x3a\x44\x47\xca\x57\xfd\xe7\x0b\x6c\x92\xf2\x66\xc2\xd7\xae\x55\x21\x2a\xf2\xb1\xc2\x83\x38\x65\x62\x97\x2d\xb2\xe4\x7a\x7d\x5f\x95\xe7\x43\x6d\x3f\x56\x85\xc6\xac\xef\x2b\xa2\xc9\xa7\xac\x0d\x07\x19\x75\x33\xf9\x00\x16\x2f\xc0\x99\x08\xb6\x6b\xc5\x96\x22\x5f\x92\x88\x0a\xc5\x25\x02\x8d\xa9\x62\xad\xe5\x95\x37\x13\xf1\x6d\x91\x0e\x36\x5f\x2c\xae\xab\x51\x0b\x67\x51\x12\xc0\xe6\x8b\xb3\x28\x06\x51\x99\xf4\x90\x6b\x75\xa8\xc8\x76\x62\x45\x38\x54\xef\x1f\x56\xe7\xe1\x51\x8b\xc7\x8a\x5c\x52\x19\x73\xda\x45\x34\xa3\x9c\x24\x63\x71\x4c\xce\x49\x32\x16\xb6\x53\x29\x4b\x1f\x93\x10\x36\x27\x89\x5c\x9c\x85\x33\x86\x6a\x07\xda\x01\x0d\x41\x3c\x4b\xaa\xab\x11\xb7\x3d\x27\xb1\x1f\xaf\xb0\xc5\x32\x1f\x76\x9d\xde\xa3\x2c\xb6\x08\xc5\x32\x1f\x47\xec\xac\xbb\x89\x15\x47\xec\x8c\x41\xca\x22\x2b\x6b\x2a\xf8\x27\x2e\xd2\xb2\xe6\x24\xc6\x1d\x7a\xa8\x64\xe3\xbc\xc2\x63\x37\x27\x49\xe0\x0c\x7e\xc0\x8f\xfa\x40\x3f\x5e\x3f\x19\xd7\xa4\x11\xd6\x3d\x8c\xa6\x72\xd2\x8c\xaf\x19\xd5\xb0\x96\xf1\x14\x9b\xb1\xc6\x5d\x8b\xf5\xba\x24\x51\x39\x62\x3d\x66\x6c\xfc\xd6\x0a\x6b\xce\x54\x92\x14\xdb\x4b\x07\x24\x0f\x2f\x94\x94\x3c\x44\x58\xf4\xac\x37\x36\x12\x92\xe6\x24\x79\x08\x1f\xcc\x9c\x24\x0f\x11\x43\x26\x63\x6b\xb2\xd6\xc7\x44\x8a\xe5\x3f\xfe\x8f\xe5\x82\xa7\xca\x9c\xa4\x0f\x3f\xe6\x51\xe2\xc0\xf5\x63\x29\xc5\x60\xf4\x3b\x56\x8f\x4d\x68\x91\x4c\x8c\x9e\x4d\x70\x0f\xed\x03\x37\xaf\x81\x19\xb3\x94\x4d\xc8\x8e\x8c\x59\xca\x26\x2c\x47\xc6\x10\x65\xf7\x4c\x67\xfa\x2d\x28\xfe\xaf\x53\x67\x84\x91\x48\xe5\x89\xf9\xdf\xc4\x91\xc8\xa9\x77\x41\x3c\x87\x26\xfd\xe7\x8c\x01\x77\xd5\x1a\x07\xce\xc2\x4d\xfb\xee\x91\x0b\x3e\xc9\xc8\xea\x80\x67\x90\x6c\x27\x77\x8f\x43\x5d\xc6\xcf\x66\x93\x76\x31\x93\xe9\x7f\xf7\x38\xd4\x65\xf2\x38\x6f\xd2\x2e\xa6\x42\x9c\xbc\x4d\x10\x88\x4c\x3c\xeb\x03\xc5\x3f\x26\xfd\x63\x6c\xaf\x0b\x1e\xf8\x07\x6c\xf1\xe3\x10\xa4\xb7\x5b\xd5\xb3\x8e\x5c\xe3\xbe\xb3\x7b\x58\xf4\xe4\xac\x9e\xc7\xd9\x4c\xdb\xd9\x4d\xce\xc4\xcc\x6d\xd8\xe6\x9d\x30\x13\x68\x62\x13\x3e\x22\xe3\x9e\xbf\x7b\xc4\xb7\x4e\xf2\x82\x3f\x20\x0f\xb9\x97\xbe\x3d\xbd\xcb\xd8\x75\x1f\x88\x87\xdc\x4b\xdf\xc6\xbc\x62\xea\xb1\x3b\x2a\x18\x53\x8f\x4d\x3c\x89\x24\xd7\xfe\xcd\xb3\x61\xce\x8f\xa1\xf8\xc7\x47\xff\x18\x8b\xb9\x52\x93\x6f\x52\x1e\x66\x32\x94\x1c\x28\x86\x55\xff\xf1\x46\x64\x13\x1a\x22\x63\xb4\xb1\x7b\x65\xb2\x6a\x16\xf4\xf1\xca\x2c\x10\x82\x88\xe6\xa1\xae\x73\x16\x91\x2b\x36\x00\xb5\xf9\xc7\xa0\x40\xed\x82\x20\x4f\x77\x3d\xc1\x1f\x4d\x4d\x22\x04\xf8\x3b\x1c\x30\xc5\x8f\xfa\x34\xd8\x2e\x37\xff\x16\x14\x70\x1b\x0c\x59\x42\x10\x31\xb1\x73\x96\x10\x34\xe6\x55\x42\xd0\x98\xd7\x7e\x09\x8a\x5a\x3a\xcd\x37\x86\xa1\xae\x85\xa5\x4f\xce\x12\x90\xb0\xf4\xc9\x58\xd6\x6f\xd2\x10\x66\x8c\x9a\x77\x6f\x68\xb9\x76\x1b\x3c\xc2\x43\x60\xf6\xdd\x59\x12\xb0\x29\x39\x50\x54\x33\x6e\x41\x3f\x9e\xd5\xbb\xc0\x20\xc6\xa0\x9a\x8e\x49\x02\x91\x02\x36\xb1\x1d\x32\x0f\xd7\x9b\xcc\x80\x99\x68\x74\x9b\x7c\x7f\xa9\x34\xf5\x27\x3c\x04\x72\x91\x60\x71\x93\x5a\x9a\x84\x39\x22\x5a\xe7\x72\xf9\x53\x7a\x20\x61\x8e\x34\xe1\x19\xe3\x91\xdd\x3b\x26\x28\xcd\x23\x89\xeb\xc4\xc2\xbd\xd3\xe6\x8d\x33\x63\x4c\xb2\x3b\xeb\x10\x99\x8c\x76\x0f\xf3\x9f\x5c\x24\xaf\xb1\x9a\xe4\x22\x79\x8d\x37\xce\x8c\xa1\xc9\x26\xc0\x43\x26\x5e\xeb\xee\x61\xe2\x93\x8b\x24\x72\xd0\x82\x24\x60\xa0\x59\xfa\x63\x30\xba\x2a\x21\x9c\xa8\xfd\x2e\x89\x88\xe0\x79\x99\xc0\x88\xbb\xcf\x41\xad\x43\x50\xf4\xa6\x5c\x82\x82\x56\x25\x09\xc2\x94\x41\x9a\x36\xac\x88\x33\x16\x2b\xbb\xb3\x24\x95\xa2\xdf\x50\x3b\x5d\x13\x1b\x8e\xab\xb9\x48\xce\x27\x6a\xa7\x6b\x9e\x23\x1e\x44\x2e\x92\x4f\x96\xaf\x22\x39\x5f\xcc\x00\x27\xbc\x03\xc6\xb0\x1e\xea\xe1\x1e\x5a\xd1\x30\x36\x79\xec\x32\x36\x2b\x9b\x47\xcd\x5c\x44\x8f\x85\x6a\xe1\x84\x77\xc0\x09\x08\x09\x62\x59\xcc\xb8\xa1\x6d\x62\x42\x64\x82\x66\x6e\x1e\x35\x73\x91\x2c\x87\xcf\x41\x2e\x92\xc8\x38\x7b\xe5\xa2\x75\xe8\x65\x7a\x44\x9d\x37\x0e\xee\xf7\x75\xfb\xc7\x1c\x3f\x52\x4d\x5c\x21\xe7\x22\xc9\xfa\xc1\x1d\x92\xac\x38\xb4\xe5\x22\x29\xff\xe8\x9a\x96\x25\xd6\xc8\x22\x4e\x8e\x65\x30\xc9\x0b\xf6\x80\xd1\x84\xf8\xf1\x83\x93\x35\x01\x61\xeb\x93\x31\x1e\xd9\xe3\xa2\x41\x44\x89\x67\xb8\x4c\x04\xba\x3d\xc2\x80\x37\x13\x50\x6c\x93\x7e\x2c\x13\x73\x63\x8f\x70\xd0\xcb\xd8\x71\x6f\x5e\xda\x32\x16\xd1\x7b\x84\xe5\x4f\xc6\xe6\x64\x8f\x48\x67\x91\xb1\x2b\xd9\xbc\x97\x65\x52\x5d\xec\x11\x86\xb8\x99\x08\x38\x9b\xd7\xb3\x8c\x91\xc9\x26\x1d\x58\xbe\x59\x4b\x49\x00\x96\x49\xba\xb5\x79\xe8\xca\x77\xfa\xc7\x00\x4a\x9b\x9c\x5f\x99\x68\x19\x7b\x84\xf5\x6b\x26\x6f\xca\x26\xb3\x56\xbe\x91\x22\x5e\x9d\x32\xf9\xaf\x0f\x14\x56\x04\x58\x78\x1c\x70\xc6\x8f\x45\xd0\x17\x10\x7d\x0b\xa7\xb5\x4c\xa2\xee\x3d\x58\x02\x49\xb1\xbd\x49\xc2\x95\x49\x33\x7d\xa0\xf8\x12\x91\x22\x27\x56\xc6\xfa\x65\x8f\x1b\x8a\x16\xd5\x19\x6c\x79\x63\xd3\x72\xc0\x15\x3f\xaa\x09\xdb\xb4\x24\x81\x6f\xfc\x48\x8b\x8f\x0c\x55\x90\x8c\xf1\xc4\xf6\x55\x6e\x42\x07\xfc\x00\xe9\x10\x67\x14\x0c\x50\x36\xc9\xaf\x32\x06\x28\x7b\x84\x93\x44\x52\x4a\xee\x4d\x50\x89\x8c\x59\xc9\x26\xdf\x55\xc6\xac\x64\x93\xef\x2a\x63\x47\x72\xa0\x1f\xa6\x32\x97\xc0\x20\x16\x82\x32\xb0\x43\xbd\x89\x88\xb4\xc9\x86\x95\xff\xda\x88\x0d\x03\x01\x1a\x0e\x44\xd7\xc7\x23\x30\xc8\xd5\xd4\x81\x50\x0e\x98\x9c\x6c\x1e\xe5\x32\x36\x26\x9b\x24\x57\x49\xb1\x52\x0f\xf8\x01\x52\x6d\x83\x40\x8f\x66\x88\xa5\xed\x46\x03\x91\xf5\xea\xfc\x38\x04\xfe\xe2\xc7\x47\x10\x15\x69\xfe\x58\x06\x6f\x49\x0b\xc7\xa4\x5b\xd2\xc2\xb5\xe7\xcd\x8d\xc3\x01\xcf\x52\xf7\x48\x40\xb0\x86\xbd\xb9\x71\xd8\xe4\xc1\xca\xf8\x58\x1f\x88\x46\x50\x5e\x83\x33\x15\xc6\x24\x07\xba\x03\x52\x93\xf1\x34\x75\x3f\x9a\xdb\x30\x8f\xcd\xda\x60\x0e\x4e\x4a\xa6\x41\x78\x99\x24\xc5\x8d\xd8\xa3\xc7\x4c\x7b\x94\x5d\x4d\x8a\xd7\x3b\x4d\x8a\x2f\xc3\x55\x2e\xdd\xbc\xd4\x1f\xb0\xc5\x8f\x4d\x10\xe6\x4c\xc3\xdf\x8e\xf8\xb1\x0b\xa2\x4d\x91\x36\xe2\x5f\x64\x0c\x46\x36\x51\x2d\x74\x41\xb3\x79\xa9\xcc\xa6\xd6\x88\x23\xaf\x52\x32\xee\xc1\x42\x68\x82\x84\xad\x6b\x26\xdd\xf5\x81\xbe\x80\xf4\x8f\x32\x7d\x2a\x06\x53\xfc\x78\x0b\xe2\x1f\xe9\x39\x47\xac\x47\xbc\x1e\x41\x20\xd2\x5d\x55\x6b\x44\x81\xc8\x84\xbf\xdb\x64\xcb\x3a\x3f\x16\x81\x6f\xfc\xa8\x4f\x63\xda\xc9\x35\xb3\x09\xe7\x90\xb5\xc5\x1e\x91\x0e\x21\xdd\xda\x0b\x8e\x19\x97\x47\xd8\x8e\x1c\xa8\xf3\xa3\x6a\x0d\x0e\xc6\x94\x64\x8f\xc9\x3c\xeb\xb7\x85\x61\x5a\x95\x40\x85\x47\x4d\x7e\xd8\xa8\x11\xd1\xe1\xfc\x98\x04\x06\x33\x75\x7d\x0a\x13\x74\xd5\x13\x0c\x4b\x70\xb0\x3d\x38\x0f\x3e\xfe\x3f\x26\x5d\xb3\x1c\xa9\x5f\xf3\x23\xbe\xdf\xcc\x8e\x18\x7d\xc3\x66\x62\xf4\x8d\x90\x36\xcd\x4e\x44\xf4\xcf\x55\x8c\xce\x85\xed\xdd\x1e\x83\x23\x7e\xfc\xc7\x10\x4b\x7b\x44\x38\xa4\x4c\xda\xd6\x03\xf5\x80\x98\x3a\xac\x7a\xef\x26\x8d\x12\x66\xbd\x19\xa3\x8b\x03\xdd\xfc\xa8\x26\x8f\x88\x64\x73\xd2\x86\x97\x9b\xe8\x1a\x57\xbf\xb9\x6a\xf9\x09\x33\xdf\x5c\xb5\xc4\x70\xe6\xc5\xec\xe2\x40\x33\xa0\x26\x68\x61\xd1\xd6\x05\xfe\x00\x87\xc0\xc3\x92\x3c\x1f\xef\x81\xb9\xf0\xad\xbd\x21\x51\x12\x72\x95\xe0\xc5\x8b\x75\xae\xd2\x27\x2f\xa3\x64\x8b\x35\xc2\x7e\x29\x63\x2f\xb1\xc9\x0d\x96\x89\xac\x76\xa0\x0f\x43\x39\xaa\xf9\xc5\x2d\xd8\xdd\xa5\xe0\xe2\x1d\x3a\xe3\xc5\xb5\x89\x7e\x90\x94\x0e\x7b\x0f\x4e\xe8\x98\x48\x1c\xe8\xc1\xaa\xee\x12\x38\x00\x93\xc0\x18\xb5\xf8\xfe\x87\x4a\xeb\x12\x7d\x0e\xf7\x55\x62\x10\x37\xc3\x19\x0f\xb0\x03\x05\x45\xba\x14\xd3\x2f\x96\xcb\x2a\xa9\x08\x2b\xe5\x5c\x35\x7b\x18\x3f\xdd\xbd\xde\x02\xa3\xef\x9a\xbd\x4f\x7d\x97\x74\x71\x67\x60\x89\x09\xfb\xa6\x4c\x58\xdf\x03\xbd\x01\xe9\x4b\xd8\x47\xda\xee\x83\xb0\x5a\x2b\x22\x97\x99\xae\x25\xf7\xbc\x98\x67\xf6\x5f\x04\x48\xc8\x3a\x74\xcd\x4b\x96\x84\xec\x48\x88\x97\x90\x75\xe8\x22\x0a\xc2\xf9\x71\x08\x0c\x2e\xe4\xdc\x33\x2f\x59\x1d\xc2\x04\xf3\x62\x9e\x87\x1a\xa1\x73\x43\x8d\xc4\xbe\x56\x61\xdd\x0e\x18\xb4\x42\xf2\x88\x83\x90\xe4\x65\xbb\x49\x7d\x96\x31\xe1\xd8\x84\x45\xc8\x98\x70\x1c\x28\x86\x85\x90\xf2\x82\x9e\x71\xa3\xd8\x84\x37\xc8\x98\x70\xec\x19\xce\x50\x19\x33\x8d\xcd\x73\x76\xc6\x4c\xe3\x40\x0c\xd9\xff\x18\xdb\x1e\xb2\xa4\x6d\xb2\x88\xa5\x87\x5b\xec\x03\x9e\x21\x93\xb0\xf5\x40\x58\x3d\x22\xb2\x93\xed\x5b\x13\x75\xc2\xf8\x29\x37\x91\x23\x3c\xa7\xd2\x43\x9e\xe9\x03\x7e\xf1\x23\xd4\xc9\x18\x78\x71\x37\x7d\xc0\x14\x3f\xaa\x91\x98\x49\x32\x30\x6c\x9e\xc2\x33\x26\x1e\x07\xe2\xb7\x26\x68\x07\xc4\xb0\xc2\x3f\x2a\x29\x41\xd8\x01\x8f\xe0\x63\xd3\x71\xa0\xce\x8f\x06\x47\xfc\x48\x8b\xe1\x3d\x95\x31\xf1\xd8\x33\x02\x69\xe6\x56\x68\x91\x7b\x91\xa6\xc9\xb9\xb1\xdb\x4b\xa2\x47\x38\x30\x65\xfc\x43\x36\xa1\x0c\xce\x8f\x45\x60\x8c\xea\x56\x3d\xc1\xc9\x3a\x16\x4f\xb6\x85\x84\xd2\xdc\xf3\x66\xb2\x90\x57\x62\x0b\x64\xe9\xd3\xc9\x5d\x07\x31\x25\xf6\x7c\x64\xf5\xc9\x41\x7c\x86\x13\x51\xc6\x8a\x64\xf3\x30\x9d\x31\x1b\xd9\x93\x9b\x0f\xcc\x28\x0f\x44\xa5\x6a\x22\xf8\x08\x93\x92\x3d\x2b\x64\xac\xff\xac\xb2\x27\x57\x1d\x18\x98\x1c\x28\xac\x67\x71\x0e\x3a\xe0\x8a\x1f\x9b\xa0\xcd\x8f\x49\x60\x70\x07\xdb\xc7\xc9\x3d\x84\xb4\xfb\x8c\x30\x95\xe9\xc9\x9a\xb9\x08\xf6\x95\xb1\x37\xd9\x04\x1f\x38\x3f\x56\x81\x31\x64\xe4\x7c\x62\x40\xfd\xe4\x3f\x30\x6c\x03\x75\xa3\x31\xb9\xb5\x20\x8f\xf5\xd6\x9b\xf5\x93\x25\xdb\xb1\x7b\xcb\x4d\x94\x6c\x58\x09\xe7\xbf\x6f\xa3\x7f\x92\xf4\x08\x48\x99\x75\xa3\x30\x1b\x66\xa6\x59\x92\xde\xa0\xa5\x84\x99\x1b\x8e\x26\xe9\x0d\x47\xa7\xf4\x90\x1f\x70\x4f\xae\xb2\xb1\x07\xd9\x24\xec\xca\xd8\x83\xec\xd9\x63\x6f\xd0\x25\xbe\xe1\x40\x94\xbb\xc4\x77\xe8\xff\xba\xa0\x1f\x26\xba\x54\xc3\x0d\x34\xe1\x50\xf6\x0c\x8f\xe1\x4c\x90\x93\x3d\xb9\x55\xc6\x70\x63\x93\x1b\x2a\x63\xb8\xb1\x67\x78\x02\xe5\x2e\x71\x5d\x7c\x29\xf9\x5c\xb0\xf9\xdd\x0d\x7e\xf1\x23\x4d\xc8\xbc\xf9\x56\xfb\x61\xdf\x9c\xbb\x44\x59\xe6\xcd\xb7\x88\x1c\x81\x07\x72\x97\xf4\x72\xd8\xc7\x56\xe3\x40\x87\x70\x5a\x96\x66\xd8\x95\x65\xad\x4a\x93\xdd\x48\x97\x7c\x6e\xa8\xc1\x8e\x8f\x64\x43\x19\xc3\x8d\xcd\x7b\x71\xee\x92\xdd\x58\xdf\xd3\xf3\xa8\xe3\x11\x6b\x40\x2f\x27\x07\x8a\x06\x6f\xfd\x46\xa5\x6c\x4e\x67\x58\x28\xe7\x2e\x49\x0e\xbb\xb2\xdc\x25\xba\x61\xe4\x95\xbb\xc4\x33\xec\xb8\x32\xb1\x93\xf6\xe4\x52\x9b\xf0\x7d\x1b\xdf\xff\xac\x5b\x99\xf9\x05\xdb\xe8\x1a\x66\xca\x6e\xb6\x15\x83\x31\xdf\xec\x5b\x79\x9f\xcc\xd8\x70\x1c\x88\x6a\x3a\x10\x74\x62\x65\xe5\xc9\x31\x29\x9e\xd7\xc6\xe5\x36\x13\x28\xfd\x40\x61\xcb\xad\x8d\xc8\xe2\x00\x4f\x48\xa6\x03\x4d\x7e\x34\xa8\x6f\xa9\x88\x03\x3d\x66\x1a\x1b\x8f\xdc\x4c\x1a\x85\xbd\xf0\xc0\x51\x64\x84\xbd\xb8\x49\x27\x83\xea\x81\xa2\xb3\xc8\xd1\xc2\x72\xf6\xd1\x8c\xaf\xc8\x28\x9e\xb1\xef\x38\x10\xb6\xcb\x59\x8d\xc0\xb9\x5d\x10\x9d\xed\x6a\x32\x94\x70\xd7\x28\xb9\x19\xc0\xbe\x63\x93\x6a\x27\xeb\xb2\x89\x24\x39\xe9\x71\x07\xb8\x36\xc0\xa0\x63\x93\xa7\x26\x63\xd0\xb1\x17\x7e\x33\x0f\x21\x4f\x36\x49\x65\xf2\x60\xa5\x93\x23\xee\xf3\x3f\xe0\x88\x1f\xe9\x39\x17\xf2\x03\x79\x5c\x61\x65\x95\x49\xab\xb6\xf1\xbd\xcd\xc4\x66\xd9\x78\xd4\x66\xac\x44\xf6\x0a\x5b\xa9\x8c\x95\xc8\x96\xd7\xac\x82\x82\x1c\x30\xc5\x8f\x59\x10\xff\xa8\xdf\x68\x50\x14\xc7\xfb\xe6\xe1\x01\x7d\x13\x58\x21\x9f\x5d\xc9\x3f\x29\x6c\xb9\xca\x3e\xa3\xb9\xda\xc3\xe6\xda\xb2\xe8\x0d\x14\xdb\x93\x4d\x48\x86\x8c\x3d\xc9\xd6\x8b\xe8\x60\x15\x5e\x77\x1c\xfa\xc8\xab\xba\x17\x37\xee\x18\x97\x6c\x42\x32\xe4\xa1\x19\x7f\x54\x67\x13\xf4\xc3\x04\xdb\xe0\x51\x24\x78\xe7\x6d\x39\xbd\x2a\x00\xd5\x01\x83\x1c\x68\x80\xc5\xfd\x3b\xb6\x26\x7b\x85\x75\x94\x9e\x0b\xf7\x0a\xe7\x9b\x8c\xc5\xc8\xd6\x9b\x27\x16\x23\x7b\x55\xec\x93\x2f\x71\x47\x0d\x19\xd4\x9d\xe1\x92\x95\x2f\xef\x95\x9b\xa0\x10\x19\x23\x91\xad\xf7\x51\xa2\xdc\x6c\x3c\x64\x33\x51\x60\x36\xa9\x5f\x32\x01\x31\xf6\x6a\x4c\x0e\xca\x82\x14\x2e\x59\x97\x8b\xab\x41\x37\x0d\xb8\xa9\xce\x2e\x68\x62\xe6\xad\x4f\xe3\xb0\x4c\x24\xb2\x2d\x87\x59\x45\x18\x3a\x60\xcc\x14\xaa\x84\xf7\xd2\x8c\xa1\xc9\x81\xa2\x45\xe9\x0e\xae\x04\xcc\x54\xac\x31\xe4\x4c\x3d\x50\x8c\x50\x7a\xa5\x33\x37\x2c\xfb\x8b\xfb\x01\x4c\x49\xf6\x8a\x38\x96\xa9\x66\xb1\x71\xdc\x6f\x67\xac\x47\xb6\x5c\x6d\x6b\x16\x57\x47\xda\x98\x8c\x31\xc9\x5e\x03\xfa\x4b\xcb\xc4\x9b\x67\xaa\x59\xdd\x19\x71\xc2\x31\xe3\xe2\xc3\x5a\xb3\x7a\x17\x09\x17\xb3\x79\x73\x30\xe3\xd2\x39\x9c\xe4\x31\x04\xd9\x0b\xfb\x2a\xa5\xba\xdd\x64\x80\xc9\x64\x56\x39\x10\x96\xed\xec\x10\xd6\x44\x72\x59\x81\xd6\x84\x1e\xd2\x40\x2c\x81\x43\x2a\x07\x4f\xa1\x8a\x1f\xeb\x96\x6f\x6c\x2d\x92\x8e\x85\x78\xfa\x47\xa8\x25\xe5\x89\x0f\x8d\x22\x48\xef\x15\xa6\x50\xe5\x92\x42\x88\xc5\xab\x5c\xa2\x24\x5e\x33\x0a\x0e\xb7\x15\x66\xe2\x92\xd0\x6f\x6c\xc0\x8b\xba\x47\x5e\x16\x82\x66\x6e\x32\xb1\x14\x62\x0b\x6e\x22\x52\x94\x4b\xfa\x21\xce\xce\xe5\x92\x7e\xd8\x88\xd9\x2d\x6d\x15\xf6\x4d\xe5\x92\x24\x87\xad\x51\xd1\x5e\x7b\xbd\x54\x2a\x69\xc5\x13\xa7\xde\x62\xb3\xf0\xc4\x29\x84\x44\x3d\x10\x96\xf6\xe2\xba\xf0\xc4\x29\x97\x84\x97\x2c\x74\x97\x24\xf2\xa5\x45\xd6\x64\x5c\x64\xf5\x7a\x7d\xa0\x18\x94\xa4\x95\x18\xc1\x97\xa4\xf5\x17\x91\x78\x2f\x16\x68\x12\xa0\x14\xc2\xd5\x6c\x5e\x96\xcb\x25\xd1\xfd\x20\xb1\x64\x95\x20\x3b\xba\x6d\x5f\x04\xd9\xb9\x24\x8f\x1f\x9c\xac\x8b\x95\x15\xb1\xf9\x8a\x95\x0c\xe6\xd3\xf5\x11\x43\x7e\x11\xdb\x98\x6c\xb9\x07\x8a\xbe\xc5\xd2\xfe\x92\x59\xa4\x5c\x21\x9e\x2f\x0e\xb3\x05\x0b\x95\x57\xb9\x3d\xb0\x50\x39\x50\xb4\x1f\xf2\xf8\xf6\x58\xa1\x0b\xa9\x6f\x5e\xf2\x62\x94\xeb\x9f\x0d\xfa\x5e\x5e\xb6\x0b\x06\x2a\x6f\x4f\xb0\x3c\xc9\x8b\x5e\x32\x63\x14\x6c\x52\x5e\x39\xde\x56\xa2\x88\xbe\x78\xde\x96\xab\xea\xd3\x88\x83\x7e\x55\xfd\x16\x31\x56\x30\x5f\x79\x79\x21\x2f\x98\xaf\xbc\xbc\x89\x17\x5c\x3b\xde\x9e\x20\x78\xbb\x04\xc5\xff\x35\x86\x2f\xaf\x97\xda\x87\xc0\x18\x7f\xa3\x89\x0c\xfd\x5b\x13\x14\xc3\x08\x39\x7e\x3b\xce\x2c\x95\xe3\xd4\x01\x63\x18\x5d\xb5\xe2\xcb\xd1\x8a\xfe\x73\xc5\x30\x3a\x63\x2c\x50\xbc\xd3\xf1\x82\x18\x35\x91\xb5\xd0\xf3\x61\x28\x3e\x1d\x55\x50\x48\x43\x53\xef\xe2\xce\xbf\x60\x40\xf2\xf6\xc8\x7c\x56\xd2\x05\xa9\xe2\xe4\x55\x88\x66\x72\x20\xbe\x6c\x82\xc2\xb5\x06\xc7\xab\x03\xce\xf8\x91\x61\xe1\x77\x52\xd9\x22\xbe\x3d\xac\x82\x0a\xd1\x4d\x0e\x14\xb5\xa6\x26\xe8\x87\x0f\xc8\x23\xf0\x3b\x3f\x66\x6a\xc5\xee\xb8\x76\x4d\x48\x44\x8c\x28\x58\x8c\x1c\x28\xfa\x93\xb3\xa0\x1d\x10\x3d\x8f\x23\x5c\x21\xda\xc9\xdb\xe3\xaa\xbe\x10\x0c\xe8\x40\xfc\x1f\x75\x86\x15\x50\x21\x53\xe0\x8b\x73\x6a\xc1\xec\xe4\xed\x78\xb6\xd4\xa1\xd9\x89\xe0\x71\xb2\x17\x79\xc9\x3a\x70\x7e\x6c\x02\x9f\xf8\x51\x2d\x42\x8e\xa2\x16\xc3\xdc\xb4\xb2\x78\x1e\x30\x3a\xa7\x5a\x49\xc4\x9c\x54\x4d\xdc\xa1\x17\xc2\xad\xbc\xbd\x31\x01\x65\x08\x8a\xdf\x44\xf1\x1e\x2c\x4f\x32\xbd\x57\xce\xa9\x8a\x28\x7c\xc0\x11\x3f\xd2\x20\xa1\xff\x93\x64\x25\x2e\xb7\x4b\xd2\xdc\x74\x9a\xb8\x9b\xa0\x1f\xbe\x2d\x43\x60\xcc\x86\x44\x1e\x23\x63\x45\xdc\x3e\x60\xcc\x86\x34\xc0\x80\xaa\xd2\x00\xb1\xea\x95\x24\x0d\x40\xa0\xfe\x24\x0d\x30\x99\x8d\xa7\x09\xe2\xff\x18\x70\x04\x11\x2e\x58\xd6\xbc\xbc\xb1\x96\x24\xa9\x0e\x0f\x9d\x92\x24\xc6\x93\x3a\x25\xc6\xa4\x2b\x4b\x62\xa2\xb0\x13\x2e\x49\x5c\x33\x21\x77\x1d\x82\x62\x48\x12\x63\x12\x9b\x25\x89\x71\xac\x69\xa9\x11\xf0\xe5\x80\x39\x7e\xcc\x82\x66\xfc\x28\xb9\x89\x00\xc0\x05\x43\x9b\xb7\x13\xaa\x09\x43\x9b\x03\xc5\x98\x24\xf1\x8b\x51\x48\xe2\x17\xf4\xee\x45\x50\x7c\xd9\xa9\x33\x12\xcc\xa6\x86\xb7\xfc\x01\x83\xdf\x7a\x13\x84\x37\x4f\x1a\x02\x83\x52\xdd\x9f\x7e\xb8\x01\xd1\x81\xcd\x84\x8f\x2c\x28\x9a\x1c\x45\x50\x78\xf3\x64\xf1\x78\xdc\x5e\x17\x12\xe7\xbd\x44\xf2\x4f\x4a\xf7\xf9\xf6\x1d\xb9\x8d\xb1\xc9\x39\xd0\x0e\xe8\x1f\x6f\x42\xde\x1e\x21\x29\x0a\x41\xdf\x0e\x34\x71\x4b\x02\x64\x01\xcc\xc9\xd0\x1d\xd0\x23\x28\x3a\x40\x62\x91\xb7\x13\x79\x29\x4b\xaa\x09\x5c\x9b\x25\xd5\x78\x10\xb5\x22\x46\x26\x22\x5d\xf6\x3f\xe2\x5c\x53\x6e\x83\x6f\xfc\x08\xb5\xe2\xaa\xb6\x64\xc9\x7c\x1c\x59\x8b\xe9\x11\xa1\x27\x0a\xf7\x32\x2f\xce\xa6\xc5\xe4\x88\xfb\xd6\x92\x25\xaa\xc4\xc9\xcf\x12\xd5\x78\x70\x4e\x8d\x17\xe7\x03\x96\xf8\x91\x26\x3e\xc8\x21\x71\xfc\x68\x5e\xe2\x88\x93\x52\x23\x7f\xed\x01\xbf\xf8\x31\x5a\x1c\x18\xfc\x36\xde\x87\x0f\x18\x4d\x32\x28\x5e\xae\x0b\xf1\x9b\xdf\x11\xae\x46\x85\x38\x5f\xef\x48\xd0\x18\xc9\x25\xa8\x7e\x21\xe2\xe0\x3b\x12\x44\x45\x54\x07\xab\x1c\x06\x42\x2f\xae\x9e\x45\x33\x35\x12\x64\x63\x55\x19\x38\x0c\x35\x2c\xbf\x0e\x18\x3d\x7d\xe8\x69\x82\x6e\x8f\x9a\x67\x14\x68\x0a\x9e\xb5\x0b\xd6\x42\x07\x0a\x29\x23\xfa\xdb\x01\x73\xfc\x98\x05\xc5\xa4\x92\xa0\xe2\x80\x31\xa9\xc8\xf5\xc8\xb8\x6c\xf1\x2e\x77\xc0\xe8\x5d\x55\x3d\xc1\xe5\x58\x16\xbd\x23\x52\xc5\x16\x4c\x89\xde\x11\x57\xa1\x25\xa3\x02\xf0\xee\x2c\xdc\xa7\x1d\x28\xfe\x0f\x15\x30\x0a\xb4\x41\xe6\x47\x78\x01\x15\x0c\x89\xde\x11\xa6\x65\x25\xa3\x00\x46\x41\x1a\x50\x00\x78\x73\x16\x36\xd9\x2f\x0f\xe9\x85\x7b\xb7\x03\xc5\x20\x9a\xfa\x82\xbb\x54\xd5\x08\xc3\xeb\xa7\x60\x73\xf4\x8e\x9b\x89\xea\x97\xa0\xa8\x86\xed\x00\x8f\xec\x05\x9b\xa3\x77\x44\x1e\xd2\xd4\xea\x63\xb0\xc5\x8f\xf4\xe6\x81\xe0\x28\x87\xf1\xa8\xd2\x21\xe8\x87\xdf\x5b\x12\x18\x43\x44\x55\xc8\x43\x54\x91\x31\x0f\x18\xfc\x86\xe6\x18\x0f\xb4\x61\x1f\x31\x88\x35\x88\x09\xd2\x81\x42\x53\x0c\xb5\x88\x68\x72\xdb\x7d\xc0\x43\x80\xe2\x16\xe5\xf7\x96\x0d\xbe\xf1\xa3\x5a\x0c\xca\x11\xc9\xee\x40\x3b\x20\x5a\xc4\x43\xa8\x35\x16\x40\xde\xd1\x4b\x91\x68\x84\xcd\x57\x29\xe2\xcd\x38\x91\x16\xec\x88\xde\xd1\xf4\x65\x13\x84\xfb\xdc\xe5\x1f\x73\xfc\xd8\x05\x45\xcf\xbb\x6a\x8d\x2b\xd3\x52\xd4\x55\xdc\x7c\x5a\x77\x23\x21\x71\x18\x1d\xbd\x83\x5c\xa5\x58\x19\xbd\x38\xb3\x96\x22\x1e\xc7\xaf\xa7\x75\xcd\x79\x8b\x6d\x1e\x56\x46\x07\xea\xfc\xa8\x5a\x63\x9b\x87\xd1\xd1\x3b\xe2\x68\x2b\x5b\xcf\x03\x45\x1b\x6c\x32\x46\x64\xed\x49\xad\x8b\x05\xc2\xd0\xab\x14\x51\x27\xa2\x4c\x94\x72\xff\xa3\x23\xfa\xf9\x34\xda\xb8\x55\x0d\xf3\x71\xab\x45\x66\x40\xea\x88\x9c\x3e\x52\xaa\x83\x50\xb0\x45\xfa\x07\xbf\xa2\x86\x21\xd3\x4b\x96\x86\x52\xa4\x72\xf0\x2b\x6a\xb8\x19\xbd\x4a\xd3\x50\xd4\xf1\x11\x5c\x56\xa4\x81\xc2\x04\xac\x14\xa9\x15\x36\x12\x58\x23\xbd\x63\xc4\x09\x8c\xf0\xbd\xaf\x1c\x78\xdb\xd0\x2c\x87\x79\x71\x29\xd2\x40\x61\x11\x56\x8a\xd4\x4a\xa4\xfc\x29\xa4\x42\x3a\x10\x7e\x90\x68\x67\x72\x23\x14\x52\x08\xbf\x63\xc2\x2c\xd2\x23\xe4\x38\x28\xd2\x23\x93\x19\x97\x1e\x99\x2c\x96\xe3\x31\x78\x24\xa9\x48\xad\xc8\x9f\x78\x54\x83\x31\x46\x69\x19\x42\xd5\x16\x69\x19\x36\x2f\x45\x5a\x26\x5c\x9e\x4a\x91\x96\x99\x70\x83\xb4\x0c\x6e\x4c\x6d\x48\x23\x84\x1b\x53\x29\x52\x3a\x0b\xe6\x90\x26\x21\x11\x6b\x91\x26\x59\x90\x58\xff\xc7\x6e\xa5\x48\x93\xac\x50\x1d\xd8\x58\x1d\x48\x1e\x9b\x06\xa3\x7d\x36\x28\x63\xc1\x54\xd2\x32\x0b\xbe\xe9\x6a\x9e\x31\xb1\x5b\xe1\x31\xbd\x14\x69\xa0\x15\x9b\xe3\x22\x0d\xb4\xe1\x22\xa9\x1c\x6e\x07\x8a\x74\xcc\xa6\xa3\x62\x22\xce\xf8\x45\x3a\x86\x33\x7e\x91\x8e\xc1\xa5\xa9\x5f\xd5\x60\x24\x89\x95\x8e\xc1\xbb\xba\x5f\x9a\xa9\x1d\x3c\x7d\x4b\xc7\x70\x01\x70\x4b\xc7\x10\x7f\xf7\x96\x36\x88\x47\xef\x42\x44\xa0\x03\xb5\x80\xba\x20\x48\xc3\x12\x3f\xc2\xbd\xa9\x60\xc8\xf5\x8e\xf0\x60\x2a\x5e\xa8\x5f\x7c\xf5\xae\xa1\x1f\x63\x73\xd0\x93\x1b\x21\x5b\x4c\xf2\x8f\xf2\x4a\x55\x9b\xa1\xc8\x6e\xa9\x4e\xae\x15\x6e\x29\xa0\xb0\xb1\x2b\xb7\x34\x4e\xd8\xd8\x15\x2c\xb2\x5e\x9c\xb6\x0b\x16\x59\xaf\xbc\xb4\x7b\x62\xc7\x33\x7e\xb1\x71\xc0\x40\xeb\x40\x51\x8d\x54\x4c\xb8\x42\x95\x9b\x1d\x0f\x2f\xde\xa9\xeb\x40\x30\x22\x5b\x6b\xb9\xa5\x71\x70\xe8\xee\x49\x22\xff\x0b\x71\x20\xfe\xe3\xc7\x5b\xa0\xb2\xd6\x1f\x28\xc2\xd4\xc6\xa2\x77\xa0\xfc\x97\x32\xf8\x53\x34\x74\x32\x94\x7f\x78\xba\x36\x12\x95\x1c\x28\x62\x48\xc7\x54\x1d\x28\x52\x67\xfd\x41\xed\x2f\x0e\xe7\x81\xfa\xff\x02\x8d\x08\x25\xec\xf6\xe6\x5f\xe2\xb5\x03\xad\x88\x7c\x7d\x0b\xda\xe7\xb7\x47\xff\xa7\x4c\x4f\x6a\x3d\x22\x8b\x62\xf0\x77\xa0\x88\x44\x7d\xa9\xd7\x11\xee\x19\x02\x1f\x28\xc2\xcd\x26\x5a\x88\x05\x57\xc1\x67\x3f\xc5\x54\x27\x3e\xe2\x81\x22\xd8\x6d\xe5\xff\x88\x9b\x8e\x15\xd2\x81\x22\x35\x5f\xfa\xc7\xfb\x8f\xf3\xe9\x8a\x21\xf9\x1f\xf7\xff\xa3\xdb\x11\x05\xf8\xe6\x9c\x78\xa0\xd3\x51\x76\xff\x07\x3a\x1d\xe5\xe2\xf4\xc3\x93\xf7\xe6\x4c\x73\x20\x82\xe2\x1b\xca\xff\xfe\x57\xf5\x00\xe3\xf5\xf4\xe1\x78\x77\x20\x92\xda\xfa\xcb\x27\x52\xfd\x77\x41\x35\xb2\x27\xab\x75\x62\x25\x5f\x86\x7a\x24\xf2\x71\xeb\xe3\xb4\xd7\xdd\xc2\x8c\xbc\x1e\xfe\x2d\x32\x40\x77\x91\x70\x92\xf3\xc3\xed\x45\xcc\xdc\xfe\x08\x8a\xe4\xbb\x97\x7b\xf6\x45\xf8\x57\x51\x42\x19\x40\x54\xe7\x4a\x7f\x99\x80\x0f\x14\x21\x65\x9b\xbf\x8c\xa8\xdf\x62\x50\xb2\xac\x77\xb1\x48\x84\x98\x54\x4e\xbf\x03\x45\x86\xbf\x9b\xbe\x90\x5a\x8a\x94\x97\x07\x8a\x50\xf0\xcf\x10\x14\x0c\x73\xdf\x82\x22\x75\xec\xdd\x04\xd5\xbf\x54\x4f\x07\x7a\xff\x72\x22\x1f\x28\x66\x4c\x63\xa8\x84\x97\xaf\x49\x50\x04\x40\x17\x25\xe2\x72\x5f\x79\xa4\x3f\xc2\xe7\xdf\x58\x0b\x1e\xe8\xd0\xe5\xaf\xbd\x98\x5b\xd3\xa5\xc2\xca\xa2\x6e\x25\x63\x8c\x5b\x27\xf1\x5a\xad\x82\x9e\xf8\xf2\x11\x14\x2d\x0c\xf5\x25\x02\xae\x9b\x97\x08\xb4\xdf\xfe\xea\x0c\x2a\x0d\xfd\x16\xc1\xe6\x6f\x09\x52\x25\x8a\xf3\xa5\x16\x16\x71\xb0\xfd\x65\xf0\x6e\x57\x3f\x83\xf2\xd8\xf3\x7d\x38\x6f\xff\x71\x79\x23\x77\x9d\x7a\xdd\x48\x51\xdc\xbb\xa0\xfa\x97\x76\xea\x40\x11\x7d\xbd\x35\x41\x3d\x5a\xf0\x6f\x21\x9c\xe2\x56\xf2\x3c\x9a\x23\x1b\x21\x81\x7b\x15\x14\x7d\xf9\x6b\x21\xe4\xc8\x5f\x46\x00\x7b\x4b\x4e\x6c\x0c\x95\x4f\xe9\x23\xcc\xff\x4d\x2c\x9b\x03\xfd\x02\x52\x9d\xc4\x97\x96\xe4\xc4\x13\xfc\x33\xa4\x28\x1a\xb3\xd2\xd5\xeb\x98\x15\x12\x25\x1c\x28\x92\x36\x64\xff\x16\xd9\x72\xb2\xc6\x40\x1e\x77\x69\x86\x48\x24\x70\x93\x45\xfe\xc3\xa3\xfc\xae\x6e\x21\x72\xfb\x17\xc9\x74\xbc\xb0\x54\xec\x3e\x3f\x5e\xea\x9f\x56\xfc\x5b\xc4\x15\x6f\x86\xd0\x28\x86\xbe\xf3\x7f\xa2\x44\xbc\xe9\xd7\xfa\x07\x1d\xde\xcd\xa2\x6e\x0f\xb5\x6f\xbd\x14\x4e\x6e\x77\x16\x7f\xc6\xce\xf6\xce\xe2\xba\xae\x2c\x8c\x97\xa0\x1a\x91\xe7\xb3\xa0\xf6\x97\xcb\xfc\xc3\x29\xbe\xb5\xcb\x75\x8e\xbf\x84\x5f\x1f\x16\x05\xa5\xde\xee\x0b\x09\xfe\xa0\x60\x9f\xff\x93\x39\xf6\x40\xdf\x5f\xf6\xa8\x6f\x6d\x22\x31\x44\x73\xeb\x25\x12\xc4\xff\x7a\xcb\x71\xff\xbf\x14\xf2\xe2\xc4\x0f\xf5\x16\xe7\xfd\xd8\xa6\x1e\x00\xab\x54\x01\x35\x6e\x02\xfe\x7f\x35\xfc\xff\x35\xff\xcf\xff\xe3\xf7\x5f\xff\x9d\xaf\x7f\xff\xeb\xbf\xdb\x69\xfa\xbf\xfe\x7b\x87\xcb\xe9\xf9\x53\xfe\xfd\xaf\x08\x90\xb0\x23\x18\xff\x7f\xef\x78\x12\x08\x4b\xe2\x1d\x79\x01\xcf\x9f\x11\x69\xe9\x0e\x66\xf1\x4d\xe8\xab\xb3\xd5\xde\x61\x31\x7f\xfe\xa4\xd0\xc9\x81\x29\x60\x22\x31\x45\xfe\xaf\xff\x7e\xe3\x75\xfd\xfc\x79\x22\xde\xe1\x15\xa8\x1a\xa8\x05\xaa\x1d\xd4\x12\x2a\x82\x71\x1d\xad\xf2\xc6\x1d\xc3\xf9\x43\x28\xb1\x43\xca\xdc\xc3\x0a\x8c\x02\x41\xa3\x84\xed\xc6\x46\xec\xa0\x5b\xd8\x6d\x6c\x04\xb5\xae\x60\x8f\x50\x50\x08\xcb\xe8\x47\xd8\xc7\x58\x02\xef\x81\x0d\x3a\x45\x21\x3c\x4e\xd4\xda\x51\x30\x14\xe6\xbf\xff\xd5\x31\x6f\xcc\x24\x78\xa6\xb0\xfe\xfd\xaf\x9e\xf5\x75\x64\x15\xa4\xf0\x3b\xe8\x87\x81\xc4\x35\x05\x85\xfb\x4c\x42\x0b\xec\xe3\xe1\xc5\x2d\x36\x46\x49\x07\x58\xc6\x46\xee\x91\x02\xd6\x03\x21\x1d\x6f\xe8\xf3\x8c\xcf\x15\x85\x50\x44\x60\xe3\x30\x4b\x81\x3b\x48\x61\x8b\xb1\x84\xd9\x09\x6c\xe8\x41\x0a\xcf\xbf\xff\xd5\x49\x08\x9c\x7b\x37\x85\xfa\xa1\x50\xc7\xf0\xec\x40\xcd\x68\x62\x17\x08\xbb\x8c\x25\x42\x48\x60\xe3\xa2\x96\x42\x38\x66\xdd\xc2\x56\x63\xdb\xa9\x38\x1b\xfd\x33\xfa\x3b\x68\x4d\xd4\xf0\xf8\x06\xcc\xdb\x93\xd0\xae\xe4\x1c\x7e\x3b\xa1\x0a\x0f\x34\x8d\x5e\x41\x65\x2a\x09\xdb\x64\x0a\x29\xd0\x43\xe8\x6c\x74\x04\x84\xe9\xc2\x56\x63\x23\x66\x08\xe4\x88\xab\x64\x0a\xf4\x9a\x09\x8c\x33\x13\x85\x7d\xd0\xa2\x7f\xd8\xf4\x50\xf8\xa2\x41\xbe\x8e\x08\x84\x14\xa2\x7b\x50\x8f\x3b\x33\x0a\x67\xbe\x63\xdb\x97\xb9\x10\x8b\x42\x8c\x1c\xef\xa7\x03\xdd\x46\x9f\xaa\xe9\x07\x77\x62\x14\xf2\xbf\xff\x45\x80\x94\x03\x14\x63\xdb\xbf\xff\x35\x70\x24\xcf\xf8\x7e\x44\xe1\x48\x24\x01\x74\x32\x91\xd0\x28\x9c\x8a\x39\x6c\x65\xc2\x9c\x51\x08\xf4\x10\x7a\x18\x1d\x39\x54\x2e\xba\x11\x69\x83\x28\x44\x7e\x7c\xba\x11\xdb\x60\x0a\xe4\x9f\x17\xb6\x1a\x1b\xa9\xa0\x8b\xb0\xc3\xd8\x48\x80\xf2\x08\xfb\x1a\x1b\xb9\x14\xd5\xda\x72\xbd\x2b\xea\x55\x6b\xeb\x31\xf6\x6c\x24\x9b\x5a\x5b\xae\x37\x16\xad\xa6\xd6\x96\xeb\x25\xbf\x12\xad\x3d\x1e\xf2\x13\x8a\x8e\xc9\x1b\x8f\x89\x19\x3b\x70\x56\xfc\x4c\x64\x33\x0a\xe1\xbe\x44\xbd\xcd\xd4\x89\xdb\x21\x2e\x83\x33\x76\xf7\x14\xc2\xa5\x2e\x0b\x3b\x8c\x9d\x61\xcf\x1f\xd8\xd7\xb3\x11\xa6\xc9\xbd\xaa\xc3\xbf\x0e\x07\x8d\xdf\x91\xe5\xce\x2d\x4b\xe1\xf9\x94\x42\x04\xde\x4b\xc2\x76\x61\x07\xb1\xd1\xc1\x8e\xdb\xd8\x08\x36\xd7\x85\xad\xc6\x8e\xc3\x56\x21\xee\x07\xfa\x19\xfd\xfd\xfb\x5f\x83\xdb\xa9\xd2\x13\xda\xac\x90\xbb\x1e\x8b\xac\xd2\xb3\x7b\x91\x4f\xe7\x46\xa8\xe5\xd2\xf3\xd4\xb7\xc1\x57\x04\x2d\x29\xbd\xf8\xdb\xf0\xa2\xc5\xbc\xa1\x74\xcd\xe8\x29\x44\x5e\x78\xfa\xf6\xf8\xdb\x38\x44\x70\xb3\x71\x80\x47\xd8\x58\xa0\x2e\x3a\x5c\xfd\x2d\x9b\xe0\xd8\xc5\x14\x7c\x21\xa3\x10\x69\x10\x55\x83\xe6\xa3\xa0\x2d\x88\x31\x57\xfa\x84\xc4\xa7\x10\xfd\x15\x31\x7f\xae\xe2\x47\xc6\xc7\x26\x6c\x37\x76\xc4\x8e\x51\xd8\x69\x6c\xa4\xdf\xaa\xc2\xbe\xc6\x7e\x91\xe7\x1a\xec\x70\xbd\x91\xe6\xaa\x18\xfb\x18\x1b\x49\x26\xd4\xda\x18\xc2\x86\x20\x0d\x61\x63\xe5\x8e\x42\xe4\x87\x29\xc2\x36\x63\xfb\xe9\xd9\x23\xec\x5f\x0d\x91\x01\xd2\x58\xf7\xec\xe8\x9c\xaa\xe9\xfc\x2d\xf7\x2c\xb2\xad\x24\xb5\xb6\x3c\xb6\xd8\xb7\x15\x46\xfc\x99\x3a\xb1\x37\x38\x5b\x26\xf6\x27\xec\x46\xfe\xbf\x36\x28\xbf\x67\x15\x34\xdc\x83\xe5\xd6\xc3\x93\xf2\x83\x35\x0a\x85\xf7\xb4\x10\x0d\x3f\xeb\x63\xd1\x3f\x85\x58\xff\x42\x11\x55\xfc\xa5\x29\x44\x4e\x98\xe0\xd0\x8a\xdb\x32\x85\xd0\x4f\x71\x00\xa9\x23\x8c\xb3\x29\x44\x8e\x9a\xd8\x66\xd4\xd1\x50\xe3\xa7\x70\xb6\xde\xb8\x61\xd6\x31\x10\xf9\x8a\x73\x4d\xc3\xb4\xac\x92\x33\x92\x42\x70\x5e\x1c\x05\xea\xf8\x21\xb2\xa7\x10\xf7\x3c\x71\xad\x51\x39\x15\x53\xc8\xd1\xc1\x11\xe8\x0f\x81\x3b\x85\x7e\xf6\x4e\x31\x99\xad\x57\xf4\x54\xe3\xcd\xb7\x63\x2d\xd1\xfa\xa6\xee\x53\x88\x6c\xea\x71\x49\xd2\xc8\xca\x4a\x21\x92\x47\xc5\xdc\xb7\x99\x99\xa3\x53\x88\x5c\x3f\xc1\xd9\x6d\x46\xda\x05\x0a\x71\x84\x89\xf7\xb4\x36\x27\x3c\xd1\x88\x96\x54\xd1\x1e\x6d\xdd\x30\xf1\x29\xac\x48\xfa\x79\x08\xdb\x79\x7d\xa7\x10\xbb\xc0\xd0\x78\x7d\xc6\x6e\x87\x42\xd0\x24\x36\x38\x9d\x0c\x77\x14\x9e\x48\x5f\x7b\xea\x1e\x23\x22\x09\x50\xc8\x91\x19\xa5\x05\xba\x1a\x1d\x31\x3a\x9a\xb2\x27\xe1\xe7\x43\x81\x74\x8b\xd7\x7f\x91\x8c\xb4\x83\x5e\x67\x00\x35\x3b\x4d\x19\x6b\xef\x29\xc4\x11\x4b\xa1\xe4\xa5\x22\xa7\xe2\xdc\x5c\x4a\x61\x71\xb1\x07\x38\x85\xa3\xb3\x1c\x16\x3e\x92\x3e\x52\xa8\x81\x7e\x84\x6e\x46\x13\xee\x75\x08\xbd\x8c\x0e\x95\xa1\xf0\xf1\x6c\x85\xa3\x10\xf1\x7a\x15\xde\xff\x42\x8a\x4f\x21\xf6\xa9\x4a\x59\x21\x55\x7b\x0a\xe8\x49\x7d\x0d\xfb\x9c\x42\x74\x50\xf9\x11\xb4\x81\x3d\x85\x15\xe8\x2e\xf4\x36\x9a\xba\x8d\xfe\x84\x0e\xd7\x59\x42\x71\xcc\xa5\xfd\xee\x29\xb4\x48\x26\x23\x9a\x20\x24\xa7\x30\x08\xf8\x29\xf4\x34\x3a\x9a\x54\x1e\x85\x0b\x1e\x9c\x18\xb9\x8e\xa2\xbc\x28\x5a\x22\x4e\x61\x06\xba\x09\xad\x51\x46\x64\xc1\x51\x94\x46\x21\x8d\xc7\xe8\xe8\x89\x72\x26\x24\x93\x2a\x32\x77\x8f\xa2\x4c\x23\x11\xb5\x27\x0a\x33\x9a\x54\xa2\x94\xb4\x44\x6f\xe2\x0b\x7a\xe6\x93\x47\x19\x1b\xa9\xc1\x4a\x31\xb1\x7a\xa5\x10\xb9\x5e\x94\x9c\x20\xad\x66\x34\xe9\x6f\x1e\xa1\x97\xd1\x5f\x7c\x4d\x07\xb3\xb9\x8a\x67\xc8\xa4\xfc\x03\xda\x78\x9d\x42\xc4\x61\x54\x8a\x84\x6c\xf6\x89\x40\x43\xe3\xce\x46\x0f\xa3\xe3\xe0\x58\x5c\xf7\x6b\x74\x34\xa9\xe1\xe4\x21\xc2\xb2\xca\xde\xea\x60\x36\x05\x23\x48\xfe\xb8\xdd\x93\xb1\x8d\x0e\x86\x50\xf2\x82\x70\x11\x89\x42\x18\xea\xa7\xbf\x34\x3b\xd9\xe8\x16\xb9\x78\xaa\xd0\xdd\xe8\x08\x40\x28\x1e\xcc\xd3\x1d\x8c\x5c\x44\xb7\x38\x36\x9b\xd9\x08\xd0\x98\x94\xe3\x22\x2f\xf7\x3b\x98\xed\x76\x25\x66\x36\xa2\xeb\x72\x43\x78\xa0\x65\x74\xf4\x5b\x29\x18\xf2\xfa\x19\x1d\x34\x11\xba\x58\x8a\x23\xb4\xe3\xb8\xff\xb2\xff\x3c\x46\x47\x93\x7f\x89\x7f\x86\xd1\x41\x2a\xe7\xf5\x31\xbd\xe3\x0d\x77\xdc\x4e\xf0\x33\xba\xd1\xd1\x64\x53\x93\x53\x33\x4f\xf8\xc6\x24\x69\x28\xa6\x60\x09\x71\xe5\xbc\x32\x49\x00\x47\x21\x98\xad\xbb\x92\x66\x34\x41\x49\x1f\xa1\xdd\x13\x08\x2b\xb6\x2f\x26\x2c\xd1\x7d\xb1\x41\x39\x90\xeb\x56\xd0\x4f\xd5\x6d\x46\x8e\x07\xe3\xc1\xa5\xdb\x24\xde\x13\x85\x20\x6c\x53\x93\x26\x6c\x81\xb0\x4a\x29\x72\x5b\x8a\x6f\x08\xab\x6c\x22\xb7\x19\x39\xd6\x86\xf1\x28\x91\x48\xdc\x85\x53\x78\x89\xf7\x09\x7a\x88\x26\xf1\xac\x3c\x1e\x09\xe0\x6d\xe1\x0e\x13\xeb\xf1\x28\x79\xd5\x6d\xe1\x8e\x33\xc4\x78\x94\x6f\xe7\xb6\x1e\x0c\xd3\xe9\xf1\x28\x11\x55\x1c\x13\x28\x44\x25\x4a\xf9\x71\x5b\x0f\xde\xe8\xc1\xee\x4a\x34\xca\x3b\x54\xc1\xa3\xdc\x3a\x37\xab\xd4\x29\x3c\x44\xe6\x14\xba\x1a\x1d\xfd\x96\x5a\xd7\x51\x62\x92\x49\x6f\x3c\xca\x63\x72\x5b\x0f\xc6\xde\x75\x3c\x12\xa9\xc7\x1a\x22\xce\x0f\xe3\xb9\x9f\x7f\xde\x1a\x9d\x8f\x6f\xff\x17\x3d\xba\x85\x9e\x46\x47\x1b\x12\x96\xc7\x2a\x21\xee\x13\xc6\xa3\x74\x57\x8f\x55\xc2\x03\xdd\x95\xea\xe6\x31\xdd\xe3\x46\x61\x70\xf2\x9a\x18\x93\x53\x88\x61\x29\xdd\xcd\x63\x4a\x12\x7b\x33\x5f\xfe\xfa\x67\x74\xf4\x44\x53\xfd\x58\xc8\xe3\x76\x7c\x3c\x4a\x37\x15\xb7\xe3\x14\x08\xcb\x59\x85\x6e\x46\xcf\xf8\x5a\xa3\xb4\xec\x3f\xc1\xa2\x59\xab\x55\x35\x2f\x92\x57\x22\x4b\x05\x57\xeb\xda\x70\x9a\x1f\xcf\xf0\xd7\xdd\xe8\x11\x5f\x57\xa1\xa7\xd1\x31\x4a\xa5\xd5\xa9\x96\xfd\x0a\x61\x95\x43\xa7\x9a\xb0\xe1\x6e\x35\xaa\x32\x25\x55\x2b\xd5\x70\xb4\x4a\x39\x1b\x2d\x9a\xc4\x85\xf8\xa8\x5a\x51\xaa\x65\xbf\x72\xd4\x51\xa6\x9b\x6a\xc5\x17\xd7\xd2\xa3\x6a\x8b\xd1\xcc\x2f\x44\x13\xcd\xca\x76\xd3\xac\xe1\x5a\xb0\x51\x95\xae\x6d\xd6\x70\x71\x47\x3d\xea\xed\x4a\x86\xd1\x51\xb7\x76\x07\xcd\x1b\x12\x8c\x16\x72\x36\xfa\x36\x3a\x46\x29\xed\xd9\x2c\x88\x71\xcb\x3c\xaa\xf4\x61\xb3\x20\x36\x46\xa9\x85\xbd\x79\x94\x61\x8e\x30\x6a\x83\x26\xcd\xa3\x24\x6f\x46\xd6\xda\xd6\xbc\x97\x88\x9d\xf7\xa8\xda\x48\x35\xcb\x50\x5c\x11\x8f\x2a\x9d\xd5\x4d\x93\x0e\x4d\x9c\x78\xca\x34\xe9\x0c\x5e\xfb\xab\xee\x99\xef\xcc\xbc\x96\xbc\xee\x9d\x47\x0f\x21\x69\xda\x76\x75\x0b\x49\xdc\xe1\x8e\xa6\xdc\x46\xdd\x7b\x89\x4e\x94\x50\x11\xb6\x7b\x2f\x11\x36\xfb\xa3\x69\x38\xdd\x2a\x38\x9c\xfb\x47\xd3\xba\xd9\xcd\xdf\xb8\xf5\x67\x4d\x43\x37\x7f\x87\x41\xe4\x68\x52\x20\xc3\xa3\x54\xc0\x55\x09\xf7\xf0\x14\x0f\x62\xf3\x39\x99\x95\x55\xf0\xe8\x91\x8c\x4b\x99\x87\x86\x55\xf0\x50\x88\x46\x86\x33\xcc\xc8\x83\xc1\xbb\xee\xe1\x4a\x62\xe6\x9b\xf2\x90\x0d\xf3\xf7\x18\x0a\x81\x28\xb4\xd6\x9f\x41\xae\x35\xad\x56\xc3\x4b\x5e\xdc\xf7\x8d\xe6\xdc\x5b\xb3\x1a\xdd\x02\xad\x7e\x7b\x2f\x41\xfc\xb6\xac\x45\x6c\x58\x8f\x87\x13\xc3\x20\x35\xe4\xc4\x6b\x81\x42\x90\xca\xf9\xb9\xac\x66\xe2\xfa\x6f\xb4\xbf\x44\x5d\xae\x1b\x66\xd3\x4a\x38\x4c\xef\x81\x3e\xd1\x92\x37\xbc\xe4\x0d\xa6\x41\x69\xf3\xa6\xa7\x21\x6e\x05\x47\xd3\x0a\x3e\xad\x91\xc3\xbe\x23\xe5\xbf\xfc\x5f\xd5\xe8\xe8\xb7\xd2\x7b\x4d\xeb\x93\xb8\x20\x1c\x4d\x8c\x3c\xbd\xf8\x4e\xc2\x0a\xab\xee\x65\xcd\x16\x91\x08\x46\x17\x43\x2c\xcf\x7c\x58\x87\x8e\xae\x15\x65\x79\x8a\x17\x61\xf6\x74\x92\x89\xab\xc6\x28\x20\xdc\x5a\xf2\x96\x17\xdf\x30\xcc\x18\x5d\x59\xd3\x96\x77\x35\x61\x92\x91\xb2\x3a\xa8\x1b\xca\x49\x46\xd0\xd1\xa5\x0a\x96\x55\x41\x24\x3b\x19\x5d\x1b\xa9\x35\x87\xd1\x47\x7f\x77\xcd\xe5\xf2\xda\xb0\x42\x48\xba\x56\x92\x65\x21\x89\x88\x41\xa3\x8b\x82\xcb\xcb\xe9\x0a\x52\x75\xd3\xc4\xaa\x60\x91\x53\x4d\x6b\xc3\xf6\xec\xec\x38\x98\x75\x6d\x8d\xb6\xa5\x81\x2c\x2a\x45\x8a\x7a\x5b\x0f\x46\x8c\x85\xd1\x87\x2b\xf9\x19\x1d\x75\x6b\x57\xb3\x2d\x24\x61\xfd\x31\x86\x2b\xf1\x0a\x18\x76\x1f\xa9\x5c\xaa\xc4\xa3\xdc\xc1\x9a\x43\x19\xfd\xb6\x47\x19\x51\xf7\xc7\xd0\x16\x63\x7b\xe6\xf7\xa2\x12\x48\xf5\x7a\xe6\x23\x1b\x73\xc2\xfc\x6c\x12\x20\x90\xc2\x21\xd5\x90\x0a\x7b\xad\xd9\x88\x85\x5b\xb4\x63\x7a\xbd\xa6\x45\xa4\x84\x31\x94\x5e\xef\xf5\x70\xde\x98\xcb\xa1\x99\x7f\x2d\xdc\x24\x8a\x29\xda\x5f\xbd\x5e\xbc\xc2\x9c\x64\x0c\x49\xf1\xeb\x5d\xc1\xcb\x1d\xbe\x96\xba\xd7\xc2\x1d\xce\x28\x63\x68\x11\x78\xad\xd6\xe3\xd6\x72\x0c\xb1\xe6\xcf\xa3\xfc\x05\x7f\x0f\xa5\x88\xfc\x99\xbf\x7f\x8c\x72\xfc\x47\x5b\xa3\x9f\xe7\xf4\xc7\x68\x35\x79\x3f\xaf\x6d\x3f\x52\x86\x29\xdd\xe2\xcf\xec\x4f\x32\x99\xeb\x52\xda\xc7\xdf\xa8\xc6\x2f\xf0\xae\x46\x6c\x47\x30\xde\xeb\xd2\x2e\xe3\x67\xd5\xf2\x23\x41\x9d\x4e\x74\x3f\x0f\xf8\xb7\xa8\x46\xe9\xe0\x7e\xeb\xaf\x9a\x0f\x3c\xaa\xe8\x33\x25\x3e\xd2\x8a\x5d\x4e\x18\x67\xfe\x25\x1d\x41\xd1\xba\xf2\x59\x8d\x90\xc3\xa6\x68\xe1\xfb\x2c\xea\xc4\xfa\xbd\x2e\xad\x09\x9f\xd7\xb2\x4f\x83\x52\x6e\xd3\xcf\x83\xfa\xc8\x55\x74\x49\xbb\x7e\xd6\xc5\x1f\xb1\x34\xa5\x60\x3e\xeb\xe2\x8f\xb4\x3e\x97\x52\x8f\x7e\x5e\x13\x3f\x92\xa9\x89\xcf\x3e\xaf\x89\xe1\xfd\x93\xae\x4b\x87\x9b\xcf\x92\xf0\x89\x94\xd2\x8d\x9f\x05\xfe\x13\x6d\x94\x08\x47\x37\x34\xa7\x40\xf5\x46\x67\xa3\xa9\x5e\xa9\xa7\x74\x45\x73\x0a\x0c\x56\x09\xdb\x2e\x68\x76\x0a\x51\x7d\x52\xc2\xa9\x0b\x71\x58\xbc\x29\x1e\xbc\xbe\x1f\xae\x07\xa2\x29\x4e\xa9\x9f\x13\x97\x9e\x13\xcb\xe3\x6a\x7e\x42\x43\xcb\xa4\xac\x50\x17\xba\x70\x75\xbd\x69\x26\x25\x9e\x4b\x1e\x55\xa2\xfb\x0a\x09\xda\x13\x22\x7e\x0a\x84\x71\xf4\xe7\xd5\x68\xaa\x57\xb3\x89\x29\x5f\x9d\x04\x0d\x57\x72\x1e\x40\xde\xf4\x4e\x81\xe0\x87\x45\xe8\x69\xf4\x26\x67\xdf\x23\xbc\x7a\x9f\xe0\xd7\xa4\x54\x65\x69\x6d\xe3\x49\xe3\xa7\xda\xd7\xdf\xe7\x0c\x4a\xe9\xeb\xf4\x9a\x79\x0a\x85\x67\xde\x4b\xf8\xc7\x78\x32\xf5\x91\x80\xa1\xe7\xbe\x8d\x8f\xea\x9b\xd0\x43\x53\x9b\xb9\x20\xcb\xca\xd4\x95\x59\x9c\x4e\x81\xf8\x82\x4d\xe8\xd7\x68\x65\x10\x1c\xc2\x8b\x36\x0a\x26\xaa\x4c\x4f\x79\x16\xa3\xa9\x3d\x1b\xef\xda\xe1\x7a\xa5\x77\xca\xbc\x61\x9e\xc2\x47\x2c\x3e\xd0\xcb\xb5\xc4\xd9\x10\xcb\xc2\xd5\xf5\x5a\xb6\x70\xb2\x3a\x95\xab\x2f\x6b\x18\x0f\x05\x8a\x1a\x5d\xee\x3b\x94\xcc\xca\xca\x57\xcc\x1e\x45\x94\x24\x2c\x31\x0e\x59\x14\x68\xb6\x0b\xdd\x8c\x8e\xb8\x22\xa2\x7b\xe9\xd3\x68\x6a\x57\x1a\x2a\xbd\xd2\x9d\x02\x21\xf3\x8a\xd0\xd9\x68\x1a\x95\xa8\x15\x8b\x42\xd1\x7c\x88\x57\xcb\x18\xc6\x53\xbd\x12\x54\x96\x29\x36\x20\x25\xf2\x95\x95\x7f\xb2\x4c\x11\xa7\x68\xb0\x4a\x95\x76\x7b\xb0\x37\xcc\x9d\x95\xe6\x4a\x77\xf8\x8b\x3b\xfc\xc4\x0d\xdd\x81\x96\xd1\x11\x30\x4a\x49\xde\x6e\x0b\xf8\xad\xc1\x0e\x7d\xee\x51\xdd\x31\x2a\xae\xe8\x0e\x74\x1b\xdd\x48\xab\x58\x84\x77\xa3\x04\xe9\x51\xae\xb7\x7b\xb8\xd1\x10\xfb\x5b\xb9\x26\x6f\x0b\xce\x4d\x6a\xab\xe2\xbc\x8e\x66\x32\xa2\xb1\xde\xe2\xb1\xdb\x14\xb8\xe1\xbd\xe2\x4c\x8f\xd6\x12\x37\xe9\xef\x8a\xd2\xcf\xe9\x81\x73\xf5\x1b\x1d\x5a\xdc\xec\x72\xe7\x09\x4d\xa6\xe4\x96\xf7\x6a\x46\x47\xdf\xb3\xbf\x9e\x46\x7f\xa4\x85\xe4\xf3\xc7\x74\x8f\x07\xcd\x74\x8b\x27\x1f\x6b\xd6\x07\xde\x23\xde\xe4\x01\x1f\xe3\xe9\xbc\x33\x48\xf6\x61\x3c\xd5\x8b\x57\x1f\x73\x19\x49\x3f\x6e\xe5\x5d\x7b\x3c\x1f\x0f\x5c\x56\x94\x33\xf2\xf1\x84\x3c\x04\x4b\xfa\xab\xa5\x1a\x4d\xab\xca\x1b\xf9\x98\xf9\x1e\xf4\xb3\xd7\x85\xc7\xda\x80\x10\x7c\x97\x33\xaa\x3e\x66\xca\x07\xc9\xb4\xe2\x7e\x56\x37\x3e\x68\x26\x11\x79\x4c\xb3\x07\x81\xb5\xb2\x79\x2c\xb0\x8f\x68\xa9\x0c\x8b\xba\x6e\x38\x05\xaa\x57\x06\xc5\x6a\x1e\xe6\xbe\xe1\x56\xee\xd7\xda\xc5\x37\x55\x39\x3e\xc5\xf2\xd5\xc4\xa9\x4a\x4b\x99\x84\x7e\x8c\xa6\x76\x42\x68\xf7\x6a\x22\x54\x11\x41\x8b\x5d\x35\x11\x2a\x7c\x66\x85\x50\xcd\x67\xc4\xea\xbb\x8e\xec\xfc\xe3\xde\x6a\xf5\x66\x46\x21\xa6\xdf\xe5\xdc\xa1\xcd\x22\x47\xc4\xbe\xcb\x39\x3d\x9b\xd7\x54\x32\x57\x5f\x4e\xe7\xd9\x3c\x0c\x82\xc4\x5c\xb7\x92\x11\x36\xaf\xa9\x0d\xe1\x92\xbe\x68\xd3\xcd\x6a\x14\x7f\xf8\x6e\x3c\x49\x37\x8b\xd0\xd3\x68\x6a\x77\xbe\x4d\x0b\x11\x21\xff\xae\x5b\x79\x04\xdb\x72\x2f\xe3\x18\x7e\xdd\x5a\x7e\x9a\x57\xb7\x26\x22\x69\x2a\xbb\xa9\xd0\x91\x8b\x5b\x2b\x44\xb7\x4e\x0e\xf3\xb2\xe4\xea\xbb\x97\xec\x0e\x47\x38\x6f\x66\xb7\xb8\x10\x99\xe6\xe2\x06\xf6\x80\xcb\xf8\x50\x6b\xcd\xad\xaa\xf7\x5d\xb4\xd4\x4a\xd3\x2d\x2e\x64\x6c\xb9\x95\xf2\xb0\x7b\x85\xef\xb0\xff\xa3\xe4\xb1\xdd\xec\x4f\xd4\xdc\xeb\x91\xa2\xd2\x15\xc5\x29\x04\xd1\x1e\xed\x4f\xba\xf9\xbc\x43\x84\x47\x53\x3e\x4c\x84\x01\x27\x3e\x12\xd3\x61\x4e\x1c\x4c\xed\xa3\xb4\xc2\xc3\x9c\x38\xd4\x1f\xe9\xfc\xe1\xfe\x0c\xe6\xf6\x51\xe6\xd4\xe1\xb9\xe5\x1e\xc0\x34\x1e\x9e\xdb\xa1\xee\x2b\xdf\xe3\xb0\x22\x1c\x28\x42\xad\xce\xc3\xcb\xf0\xd0\xa8\xfe\x32\x98\xba\x37\x1a\x95\xc4\x6e\x7a\x54\x98\xfc\x5c\xca\x90\xd8\xa7\xa7\x96\xd3\xfd\xfd\xf7\x79\x35\x9a\x14\xac\x12\xbb\xe9\xf5\x76\x76\x19\xb0\xe9\x7b\x6b\xc2\x89\x26\x74\xed\x16\xf6\xc9\xd4\x56\x27\x36\xb5\x98\x4c\x68\xac\x24\x88\x44\x0a\xa6\x10\x61\x14\x87\x3f\x5f\x46\xd3\xaa\x16\xc4\x69\xf1\x99\x44\xad\xd5\x7a\x38\xa7\x6b\x9f\x04\xeb\xca\x42\x37\xa3\x07\xb5\xa8\x51\x4b\xcf\x44\x7a\x94\xaf\x10\xf7\x57\x0a\x74\x5e\xb9\x86\xa7\x19\x6a\xca\x88\x4f\x8b\xd0\x32\x89\x17\xe2\xa0\xf4\x6d\x7d\x59\x41\x2e\x22\x50\x5d\xfe\x7c\x1a\x4d\x42\x58\x29\xce\x65\x71\x58\x22\xb1\x54\xcb\xf2\x86\x77\x89\x66\xda\x8b\x2c\xd3\x8c\x0b\x8d\x27\x19\x2d\x19\x5f\x93\xd4\xb0\x52\x2d\x6b\xde\xc6\x57\xa2\x7c\x09\x3d\x8c\x26\x59\xac\xb2\xfe\x2e\x6f\x0e\x17\x51\x7f\x44\x9b\xb5\x3c\x56\x12\x4a\x2b\xa7\x61\x5f\xde\x34\xc6\x9d\x47\xb2\xac\x2d\x2f\xdb\x71\xd5\x91\x88\x7b\x7a\xa0\x6d\x74\xec\x6b\xab\x92\x02\x6f\x53\x32\x92\x09\x24\x65\x66\xc1\xaf\x97\x02\x13\x22\x8d\xb0\xbd\x6c\x6f\x11\x5e\x2b\xd9\xb6\x1e\xda\xa2\xa4\xb2\x03\x6f\x33\x2b\x49\x81\x9e\xdb\xe8\x62\x74\xf4\x5d\xeb\xe4\xf6\xf2\xbc\x91\xfb\xaa\x53\xdb\xb6\xdc\x6f\xb1\x81\x56\xac\xd7\x9d\x7f\xe1\xf9\xa6\x0d\xf2\x6b\x75\xf6\x12\xe8\x48\x2b\xc9\x6b\xb5\xf2\x0e\x65\x9d\xbd\x84\x5f\xc6\x47\x70\x9d\x3f\xf4\xcf\xe8\x98\x8f\xbf\x64\xb7\x6e\x94\x1c\xbd\x4d\xcc\xf1\x7a\xb6\xb9\xc5\x50\x82\x19\x82\x4c\x53\x20\x67\xae\x98\xe3\xf5\xb4\x12\x69\xfa\xf9\x43\x67\xa3\xa9\x5d\xeb\xd1\x6b\x49\x78\xd9\x71\x34\x1d\xb6\x5e\x9f\x05\x08\x2f\x79\x35\x71\xc7\xcf\xa4\xf9\x31\xaf\xd2\x94\x3f\xef\x2c\xe2\x5e\x24\x3d\x62\xbd\x9f\x75\xd0\x0f\x01\x69\xcd\xf8\xd7\x78\x6a\x57\x0e\xdb\x9f\xd7\xe4\x9f\x08\x2f\xcd\xfa\xb3\xb2\xf9\x0d\x7d\xaf\xde\x98\x66\x3f\x62\xb6\x89\xf9\x7e\x33\x1b\xcd\xa0\xa4\x55\x7e\x96\x90\x1f\x8b\x6f\x57\xca\xe6\x9f\xd5\x87\x6e\x3c\x94\x33\xcf\x96\x41\xa7\x10\xdd\x51\x66\xb9\xfe\x59\xe3\x7e\x8c\x56\xa3\xfa\x3c\x5a\x92\x36\x5e\xca\x20\xd7\x3f\x33\xb1\x12\xf6\x77\xe5\x38\xff\xbc\x98\x92\xab\xff\xd1\x2e\xed\x33\x11\x74\x43\xa2\x6c\x2f\xfd\x33\xf7\x7d\x30\xb7\x56\xfc\xcf\xec\xf4\x41\x9b\xae\xad\xea\xe7\xc5\xeb\x83\x9f\x94\x40\xae\x7f\x56\xad\xba\x50\xe9\xf7\xf8\x4f\xb6\x57\x9f\x69\xf7\xb1\x5a\x75\xb1\xed\xe7\xd5\x4a\x37\x22\x9d\xbc\x1d\xc3\x37\x22\x43\x57\x19\x5d\x09\x3d\x7d\x95\x31\x64\x58\xa2\xbc\x6d\x43\x96\x25\xa7\x40\xfd\xca\x46\x7a\x49\x46\xc7\xc5\xf0\x86\xf2\x92\xca\xb6\xe4\x14\x30\x50\x51\x32\xdf\x4b\x6b\xf3\xb8\x48\x08\xed\x6a\x24\x2e\x03\xf3\xe8\x4b\x09\xd9\xc6\x25\xfe\x1f\xba\xfa\x18\x4a\x03\xea\xab\x8f\x21\x9b\xee\xa1\x84\xa0\x69\x18\x1f\x8a\xa7\x2a\x2f\x6a\xd2\x2a\x39\x48\x3a\x79\x0d\x65\xfa\x94\x6d\xc8\x29\xd0\x4b\x25\xa7\x4d\x1e\x6d\xd2\xa8\x1e\xd5\x33\x5d\xfd\xa4\xfa\x47\xe8\x6a\x74\x10\x47\x59\xbe\xf0\x4a\x8f\x82\x7a\x8f\xdc\x0d\xdf\x71\x60\x3c\x9b\xae\x81\x1c\x0d\x59\x6b\x2c\xcc\x68\xd3\x35\x94\x38\x36\x8b\x87\x46\xdc\x3b\xa4\x74\xfd\x65\x26\x7e\x8c\x6f\xe0\xbb\xf0\xae\x27\xfa\x93\x2e\xe5\x60\xcd\xee\x0f\x19\x2d\x13\x51\x3d\x0f\x38\x8d\xff\xc8\x4a\x0c\xbe\xb8\x9f\xdc\x20\x24\xa5\x92\x1a\x32\x7e\x38\x05\xda\x25\x59\xd7\x28\xee\x3f\x77\x05\x49\x19\xa4\x46\x31\x53\x91\xd7\x32\x29\x25\xd4\x28\x52\xfc\xa3\x0c\xfa\xa9\x54\xa9\x45\x7b\xf9\x41\xe6\xcb\xaa\x6e\x16\x93\x81\xbb\x82\x44\xa0\x9c\x35\x7c\x57\x30\xc2\x42\xe2\xe0\x1f\xe1\x8b\xf1\xc4\xbd\x52\xed\xda\xa5\x8c\x22\xea\x28\x5b\x70\x31\x0f\x86\x8d\x44\xaa\x62\xa9\x22\xd5\x3c\xc8\x75\x75\x34\xbf\xf0\x1e\xac\x88\xc6\xdd\xd0\xf0\x4d\xc4\xe0\xae\x20\xe9\x0e\x72\xf8\xb2\x60\xdc\x64\x69\x56\x26\xda\xdb\x34\xe0\x0e\x41\x76\x55\x07\x1c\xc6\x4f\xb2\x28\x5f\xc2\x2f\xe3\x37\x31\xa7\x84\xd6\xd4\xde\xb0\x48\x12\x8b\xdc\xd3\xad\x92\x8a\x58\x33\x78\x9b\x06\x37\x71\xbe\x6e\x7f\xed\xca\x63\x2f\x92\x94\x10\x89\x80\xf7\x14\x82\xef\x35\xaf\xb7\x49\xc3\xd5\x82\x2c\x9a\x96\xed\xa4\x4f\x81\x31\x89\xf2\xb7\x49\xc6\x25\x82\x8c\x97\x96\xad\xa2\x17\x56\xd1\x09\x27\xa0\x65\xb3\xe8\x53\x88\xbe\xa3\xd2\xc6\x23\x3d\x8e\xb5\xf4\xa9\xa5\x0b\xbf\x8c\x8f\xf9\x53\x8a\xde\x47\xc7\x64\x02\x08\xa4\x94\xc4\xac\x8f\x99\x92\x3b\x04\x99\x1e\x1d\xf0\x31\x7e\x81\x57\xf5\x66\xca\x07\xa6\x94\x8c\x3f\xba\x21\x1c\x0f\x2a\xa1\xaa\x93\x5a\xe3\xc6\xa3\xa1\x2a\x45\x70\xf5\x50\x2b\x3c\x9c\x94\x53\xba\x5a\xb3\x54\x55\xf3\x08\x9d\x8d\x8e\x4e\x66\x49\x78\xb5\xe4\x73\x38\x97\x9d\xc0\x01\xa7\xf1\x11\xc9\x87\xcb\xd6\x51\xcd\xda\x95\x79\xcd\x92\xa8\xea\x79\xad\xcc\xab\x16\x87\xaa\x3d\xe6\xa8\x24\x34\x57\x5a\xf0\xaa\x13\x91\x82\xf6\x27\x5d\x4c\x8e\xba\x96\xf1\x41\x99\xa6\x21\xe9\x0c\xac\xa0\xfe\x7a\xa0\x5f\xa3\x59\xab\x34\xb4\x0a\x41\x4b\x0e\xf8\x18\xbf\xc0\x0f\xe1\xb7\xf1\x51\xbd\xe4\xac\xe9\xda\x5a\x61\x12\x88\xf5\xbc\x88\x92\x40\x01\xca\x28\x8d\x73\xb3\x3c\x71\xb2\x4f\xba\x68\x1c\x3e\xd9\x8f\xa6\x5e\xb2\x49\x19\x3e\xa9\x8f\x0e\xdb\x64\xa7\xf4\xf6\x0a\xd3\xd5\x6c\x17\x3a\x1b\x5d\x30\xcb\x6b\xc2\x3f\xc6\x37\xf0\x43\x78\x75\x27\x62\x1a\x24\x3d\xcf\x1d\xb0\x1a\x1f\xdd\x2c\x9a\xa9\xee\x6e\x72\xf6\xd6\x2b\xd1\x01\x5d\x3f\xdd\xd7\xc5\xd9\xf0\x19\x7b\x0c\x54\xb4\xae\xb6\xc6\xb0\x8a\x1e\x30\x54\x11\x5f\x0e\x33\x14\x67\xe9\xa4\xbb\x27\xbb\x10\xac\x31\x54\xbf\xf8\xd5\xa7\xdd\x31\x91\x12\x5d\xac\x12\x55\x9f\x42\x4c\x16\x97\xcb\x44\x20\xa0\x10\xd5\xe8\x66\x8e\x68\x03\x14\x0a\x78\x55\xe3\xee\x4c\x99\x05\x4a\x41\x4d\x2b\xa8\x49\x6c\x8e\xcb\x68\x51\x67\xca\x2e\x50\xa3\x9d\x56\x50\x1c\x24\x93\x2e\x8b\x86\x0f\x92\x63\x31\x5b\x77\xad\xff\xc1\x26\x6b\x2c\x4f\x26\x47\xb5\x74\x8b\x18\x4b\xe7\xd8\xb1\x98\x1c\x9d\x10\xc7\xf2\xe4\x90\xc8\x26\x3d\xc9\xdf\x0f\xe3\x3f\xf0\x8c\xda\xa7\xb2\xc1\xa9\xac\x5d\x46\x67\xa3\x83\x57\x1e\x25\x4a\xdf\x56\x84\x9b\x39\x7b\x24\x8f\xdb\x7b\x2c\x52\xab\x36\xb1\xd6\xb6\x6e\x20\xa9\x6a\x7a\xb4\x7c\x6e\x13\x8f\xf0\x83\xe9\x91\xee\xd9\x53\x02\xb6\xc9\x5c\x9e\x84\xf6\x60\xb7\x06\xa5\xd4\xfb\x7b\xb9\xd5\x45\xab\x46\x6f\xa3\x19\xab\x96\x4f\x1f\xe2\x06\xcf\xd3\xde\x5e\x8f\xd7\x5a\x80\x8c\xad\xde\x47\x13\xc4\x80\x02\xbd\x17\xed\x5f\x9d\x55\x06\x87\xc1\x44\x66\x8c\x35\x7c\x18\x54\x84\x03\xe2\x90\x1f\xa8\x1a\x4d\x77\x94\x63\xff\x35\x23\x72\xbc\x4b\xba\x47\x21\xc8\x01\x85\x06\x5e\xd5\x5b\x2e\x5e\x58\xa1\x8a\xc8\x3e\xdf\x0d\xce\x77\x04\x35\x5f\xf6\xb9\x39\x85\x85\x49\x67\x12\x7e\x1b\xff\x12\x4e\x4a\xe8\x9f\xd1\xd4\xae\x05\xf4\x67\xd5\xf9\x83\x68\x55\x33\xfe\x33\xd1\x38\xc8\xa5\xaa\x7a\x7e\x56\x9d\x3f\x92\x9d\x4b\xd3\xfe\xac\x3a\x7f\x04\x66\xd1\x02\xfa\xd3\xf1\x5c\xa9\x06\xfe\x36\x0b\x3f\xd3\x8c\x9c\x03\x4d\xb2\xf8\xd3\x35\x21\xa1\x17\xce\xe7\x45\xf8\xd7\x78\x3a\xaf\x85\xf5\x67\x12\xff\x44\x4a\x09\xe9\xcf\xec\xfa\x83\x5d\xff\xd0\xcb\xe8\xe8\xbb\x36\x05\xbf\x29\xd2\xfc\x90\xb5\x2a\x05\xf6\xd3\x2d\xde\xf8\xc5\x9a\xa5\xe3\xb9\x3d\x27\x16\x9e\x13\xe9\x6f\x7d\xfe\x59\x04\x7f\xa2\x30\x27\xe5\xe1\x33\xe5\xe0\x15\xfd\x6f\x49\xfc\x74\x97\x34\x3e\x84\xa7\x8a\x5d\x3f\xaf\xac\x9f\x7a\xd9\x85\xfe\x19\x1d\xd5\x37\x69\x84\xcf\xc2\xc3\x83\xf6\x9f\x50\x7d\xd6\x14\x1c\xdf\x52\xd3\x3a\xff\x99\x3f\x3e\xf8\x43\x29\x82\x7d\x7a\x9b\xbc\x67\xeb\x56\x60\xfa\x3d\x7b\x5e\x74\xbe\x29\x35\xb4\x7c\x0b\x96\xb2\x24\x34\xa5\x08\xbe\x34\xa6\xc9\x33\x77\x6a\xca\x0f\xed\x67\xee\xc9\xd9\x30\x35\xe5\x86\xf6\xd9\x70\x72\x36\x34\x3b\x4d\xf9\xcc\x9e\xc2\x20\x60\x92\xd0\x3f\xa1\x11\xa9\xa6\x44\xcd\x97\xb6\xa4\x33\x1c\x0d\x92\x2e\x1d\xe6\xa5\x95\x6f\x72\x62\x4c\x18\x92\x1d\x70\x18\x4f\x2f\x95\xa6\xf9\x9a\xee\xa5\x48\xf9\xa8\x9e\xe5\xea\x61\x04\xa5\x57\xbf\x96\x69\x80\x7a\x52\x3e\x67\x79\x1e\x9c\x02\x63\x55\xa2\x65\xf9\x18\x9c\x02\xb5\x2b\x59\x72\x92\xa4\xcd\x44\x52\xfa\xa6\xd4\xc8\x49\xea\x66\x26\x84\xa1\x29\x17\x7a\xd2\x7a\x38\xc3\xb1\x20\x11\xef\xfb\x40\x3f\xa3\x69\x76\xa8\xd9\xe9\x66\x45\x33\x65\x71\x4f\xd3\xcd\x8a\x08\x43\xf5\x4c\x57\x0f\xfb\x0d\xf5\x46\xeb\xde\x4c\x70\xbd\x6e\x4c\x48\x19\x41\x21\xaa\x21\xdc\xfc\x01\x5f\xe3\x3f\xf0\x70\x48\x36\x9f\xc9\x7d\x80\x30\xf3\x07\x54\xf7\x75\xf0\xd4\x95\xc9\xf4\xc1\x73\xf2\xd0\x9d\xba\x72\x61\xcb\x40\xff\x14\x62\x58\x5d\x29\xab\xb3\xd8\x7e\x66\xf5\xb3\xfa\x7b\xd7\xa3\xfe\x88\xa5\xfc\xa4\x3d\x0b\xf9\xf0\xb1\xbf\x98\x45\x0b\xe1\x2c\x30\x72\x57\xd6\xfc\x62\x46\xd6\x79\xd4\x29\xe9\x7d\x1e\x9d\x3c\x52\xff\x25\xa7\xf7\x23\xf5\x8c\x03\xe8\xc1\x33\x2c\x59\xde\x9f\x42\xc3\x88\xdb\xf8\x6e\xfc\x20\xdc\x8c\xd0\xd3\xe8\xc5\xe7\x43\x78\x77\x07\xea\x38\xeb\x7c\x31\x75\x74\xc2\x1c\xae\x67\xb9\xfa\x45\xf5\x5d\xe8\x9f\xd1\x54\xc3\xd2\x36\x7d\xf0\x24\x6a\x4d\xfa\xcb\x1a\x7f\x9b\x65\x75\xc2\x1c\x2c\x1a\xd3\x27\xcc\x79\xc3\x83\xba\xfc\x98\xb7\x79\xf0\x86\x49\x08\x49\x7d\xc0\x6d\xfc\x1b\x9e\xd8\x46\xff\x8c\xa6\x1a\x49\xd6\x63\x09\x7a\xd4\x9d\xfe\x1f\x78\xee\x9d\xaf\x1f\xff\x1b\xad\x6b\xce\x1e\xcf\x25\x61\xe1\x92\x32\x00\x4f\x3f\x05\xcf\x47\xa3\x53\xbe\xf5\xc7\x4a\x29\x1e\x79\x53\x57\xb6\xfb\x47\x8b\x16\x51\x6a\x52\xbe\x34\x95\x7e\xf2\x25\x0a\x4d\x72\xfa\x6f\xbb\xd8\x2d\xa2\xc5\x1c\x7c\x17\xde\xd5\x33\xf5\x52\x85\xb2\x5d\x5f\x04\x6d\x49\x59\x59\x82\x89\xda\x42\x21\xe2\x2d\x29\xdb\xfd\xa3\xd5\x69\xf2\xa0\x9c\x2f\x4d\xe5\x63\xfe\xe7\xe5\xd8\xd9\xbf\xa7\x5f\x8e\x89\xf4\x72\xf0\xf4\xc6\xa7\x4a\x22\xb9\xa4\x7c\x49\x93\x57\xdd\x84\xce\x48\x7c\x9a\x74\xf7\x38\xab\xf6\x52\x33\x4c\xd6\x13\x21\x03\x0e\xb4\x8c\xde\xd4\x62\xfc\x6b\xfc\x2f\x3e\x1f\x42\x7f\x42\x4f\x3a\xa9\x84\xfe\x3e\x6c\xce\x1a\x3a\xa9\x4b\x8f\x57\x93\x86\x33\x68\xd6\xb5\xcb\xac\xe6\xfe\x2a\x92\x49\xd3\x56\xeb\x86\x2a\x1a\x48\xd3\x56\xb3\x21\xa7\xcd\x2e\xee\x6c\x5e\xfb\xc2\x5c\x3d\xe5\x4b\x6c\xd8\xf4\x36\xa4\xec\x24\xd6\x48\xcd\x6b\x1f\x87\xcd\xac\x5b\x1a\x42\xa9\x44\x21\xb6\x46\x5d\x0b\x6e\xd3\xd6\x68\x72\xaa\x74\x52\xed\xd9\xcc\x65\x0d\x2e\xd3\xca\xda\xcc\x4d\x11\x53\x25\x75\x0d\xa9\xe9\xae\x80\x70\x2a\xc9\x99\xb2\x89\xa7\x42\x21\xa6\x49\x23\x6d\x5e\x11\x79\xbb\x76\x2a\xed\xd9\xac\x65\x39\xca\xe6\x74\xf9\x7b\xb7\x0a\x25\x89\xe2\x75\xc0\xdb\x78\xaa\x57\xab\x5e\x11\x89\x67\xdf\xb5\x50\xca\x61\x75\x11\x3d\x25\xe5\x24\x6d\xe4\x03\x31\x91\x53\x12\x56\xb3\x6b\x76\xd3\x9d\x27\x6a\x67\xd4\x9e\x7e\xa2\x26\x5b\x4a\xca\xba\x1b\x9a\x5d\x9b\xc9\xd9\x61\xf9\x24\x26\xeb\x56\x76\x1d\x65\xa7\xf9\xe8\x5e\x9f\x79\x5b\x76\xde\xe9\xe9\xb7\xe5\xd9\xd5\x4b\xd1\x4c\x7e\xb5\xa7\x40\xf5\xbc\x54\xcd\x61\x36\x18\xb0\xc1\xf0\xe7\xaf\xd1\x31\x51\x5a\x6e\x87\x59\x9b\xf4\x76\x4a\x30\x7d\x40\xd7\x4e\xd8\x34\xcd\xdf\xf0\x98\x78\xd0\x56\x92\xe9\x03\x0e\xe3\xe9\xbc\xd6\x19\x3f\x68\x4f\x0e\xe1\x39\xb9\x37\xde\x19\x11\xd5\xc2\xcb\xcc\xd0\x65\xdd\xe4\x3d\x7b\x48\x35\xf9\x3d\x7b\x0e\x04\x2a\x8b\x3d\x14\xd7\xe2\x14\x52\x7c\xae\xce\x78\x4f\xc0\xf3\xb7\xd2\x52\x1f\xf0\x31\xbe\x81\x1f\xc2\xbb\xf3\x50\x58\x16\x74\xd3\x27\xff\x39\xf1\x95\x91\xa9\xdc\x9c\xa6\x3c\xef\xdc\xe3\xef\xf3\x6e\x74\xd0\x20\x4b\xc5\x4d\x53\x7e\xc2\xdc\xf8\xd8\x1e\xd0\xdf\x33\xd8\x64\xf4\x32\x7a\x07\x5a\x8d\xce\xbf\x5a\xe8\xa4\xb4\xc1\x5c\xee\x8c\x06\x25\xb1\x9f\xe6\xb2\x08\x57\xf8\xb7\x74\x4e\xaf\x61\x53\x63\xd5\xfe\xc4\xf7\x04\x73\xa1\x57\xb3\x74\xd6\xf2\x22\xc5\x43\xb4\xf2\x39\x1f\x50\x34\xe3\x05\x39\xe3\x0f\x70\xc0\x6e\x3c\xcd\x0e\xa1\x35\x83\x3c\xda\x2a\xbf\xf2\x01\x5f\xe3\xa3\x3b\xba\x04\x9a\xdb\x4b\x2a\xcf\xb3\xb9\x88\x66\x7e\x9e\x9d\x1b\xc5\xad\xcb\xa1\xb9\xbd\x36\x6e\xba\x53\x6e\xe3\x87\xf1\x0b\x7c\x15\xfe\x35\x9e\x76\xa5\xe9\xb7\x17\xc1\xb8\x59\x48\xca\xcf\x7b\x40\xa9\xe2\x0d\x4b\x15\x0c\x36\xe6\xb6\xc2\x21\x89\x1f\xe1\xc4\x0f\xe4\x66\x43\xe1\xe4\x22\xb5\xb8\xad\x71\x76\x3c\x52\xeb\x71\x66\xfa\x86\x60\xbe\x1a\xad\x44\xfc\xf5\xa2\xf6\xc2\x68\x1c\x0c\xe7\x6b\x8d\xfe\x8a\x08\x9c\xd0\xe6\x6b\x59\x26\xbd\x9f\x77\x33\xaf\xf7\x80\xdc\x1b\x28\x75\xef\x01\x1f\xe3\xa1\x99\x36\xf2\x7e\x45\x9e\x2f\xba\xbb\x68\x27\xef\xf7\xdf\xf9\xa2\x8c\x65\x4e\x39\x5f\x73\x26\x47\xf8\x7c\x4b\x19\xfb\x85\x76\xfe\x60\x9d\x5b\x7a\xf1\x67\xd6\xe1\x08\xaf\x5c\xb3\x07\x7c\x8d\xa7\x1e\xed\x34\xfc\x16\x3b\x7f\xe8\x90\xbb\xfc\x27\xef\x84\xf3\xe7\x83\x04\x87\x70\x65\x90\x3d\xa0\x9b\x67\x18\xb7\xa6\xd2\x6f\xaf\x93\xe3\x76\xbe\x75\x3e\xfa\x59\x6b\xfc\x70\xbb\xbb\xa5\x97\x7f\x16\xb0\x9f\x86\xad\x49\xfb\xcc\xba\xbc\xd5\xe6\x5b\x5b\xf4\xcf\xac\xfb\x89\x1c\xd2\xb4\x7e\x94\x9d\x9f\x86\xad\x6d\xa0\x5f\x5f\xe7\x87\x66\xbe\xb5\x0d\xf4\xeb\xeb\xc4\x22\x3c\xcb\xb0\x65\x7e\xee\xcf\x87\xc0\x4b\x20\x3f\x2f\x2b\x9c\xb7\xf3\xa3\xed\xa1\x9f\x4b\x27\xc1\xae\xb3\x4c\x96\x70\xe1\xa7\xd0\xc0\x37\xe1\xbb\xf1\x51\x3d\xa3\xb2\xd7\xfe\x29\xbc\x81\x2e\xa0\x25\x8f\x0b\x3b\xf1\xfc\x70\x22\x5e\x8a\x9b\x72\x0a\x11\xf9\x88\xe5\xc3\xde\xfc\xa7\x30\xf9\x5c\x8d\x0e\xd7\x1e\x62\x4a\x68\x86\xb5\x14\x8e\x6a\xe1\xce\x7f\x3e\x1f\xc2\xbb\x76\x56\x95\xa1\xda\xb5\x7c\xe0\xd8\x9f\x32\xa1\xec\x16\xa9\xa8\x28\x7c\xe0\xf5\xfd\x72\xf5\x91\xe0\x47\x1b\x67\x3b\xfa\x9f\x02\xad\xf2\x2e\xb2\xfc\x72\x4b\x00\x80\xa4\x24\xac\x6b\x29\xe4\xd5\x52\xe2\x2a\xa5\x63\x5d\xcb\x2f\xba\x78\xf7\xe7\x8b\xd5\x69\x25\x13\x3e\x0e\xde\x99\x08\x89\x07\xaa\x46\x77\x7c\xd1\x8a\xf0\xd3\x78\xe6\x95\xcb\x05\x12\x61\x51\x78\x4f\x35\xc9\x9f\xff\x8c\xa6\x33\x6c\x8d\x96\x82\x48\x9c\x02\xb4\x61\x6f\xb4\x7c\x6c\xc7\x55\x3f\x29\x07\xeb\xb2\xaf\xfe\xc2\x3b\x3f\xe5\xca\xc5\xcb\xca\x52\x55\x2b\xd3\x7b\x16\x33\x5c\xf7\x29\x34\x9c\xe0\x2e\xe1\x87\xf1\x13\xbc\xab\x5f\xc6\xef\x53\x4d\xf6\xe7\x9f\xd0\xb0\x93\x9e\x14\x57\x36\x3b\x85\xe3\xbe\x0f\x15\x2b\x9b\x9d\xc2\xf4\x3d\x5f\xee\xa3\xb9\x29\xa3\xf4\xf5\x16\x48\x7a\x2e\x0a\x31\x21\x1c\x35\xec\xc7\x7f\x0a\x34\x2a\xa6\xf4\x5b\xf4\xca\x61\xf5\xa4\xb4\xa5\x0b\x77\x7f\x0a\xfd\x54\xc3\xc9\x64\xf9\xa6\x00\x97\xfe\x94\x89\x0c\xb3\x70\xec\xa7\x10\xad\x16\xf5\x5d\xeb\xf9\x8a\x1b\x83\x7c\x79\xa4\xcb\x84\x44\x8c\xeb\xa3\x46\x75\x46\xc0\xc5\x3f\x93\x98\x66\xd9\xc5\x7f\xe1\xe2\x9f\xb2\x5e\xd9\x96\xdf\xb9\xf1\xf1\x3f\xf8\x26\xfc\x63\x7c\xb0\x01\x9e\xa7\x07\x14\xe1\xe3\x22\x21\xeb\xf9\x7b\xd9\xf6\x1d\x2f\xff\xf3\xf9\x10\xbe\x1a\xcf\x74\x73\x34\x59\xb6\x7d\x5f\x3c\x7f\x67\x42\x13\x1e\xf0\x15\x1e\x91\xaa\x5d\xdd\xd1\xb2\x8a\x37\x7e\xbe\x44\x61\x3f\x44\xe3\x8d\x9f\x72\xe3\x5a\x01\x2f\x7c\x0a\x1f\x78\xaa\xf7\x3d\x01\x8e\xf7\x07\xdf\x84\xbf\x8d\x0f\x1a\x3f\xfe\x7c\x1a\x4d\x35\x62\xa7\xdb\x32\xc2\x3b\x77\x96\x15\xd6\xba\xb5\x80\x2e\x5e\xa2\x95\x9d\xf3\x80\x7f\x78\xba\x29\xc6\xb1\x7d\x3a\xce\xed\x29\x37\xb5\xeb\xfb\x83\x85\xa9\x78\xd6\x4d\xdb\x7a\xac\x72\xc3\x66\x3c\xcb\x08\xc0\xfe\xeb\xa7\x40\xf5\x12\x59\xdf\x1b\xe0\xd7\x7e\xf0\x74\xc7\xcf\xbf\x78\xb0\x27\x65\x90\x3c\xa0\xab\x1f\x54\xdf\x84\x76\xf5\x1a\x95\x24\xff\xf1\xa8\x74\x3f\x40\x3c\xe0\x03\x6a\x52\x74\x52\x97\x2d\xd3\xf2\x49\x1d\x97\xf3\x4c\x5e\x9e\x85\xdf\x39\x85\xa8\xbe\x4b\xda\xaa\x39\x90\x90\xf2\x4a\xb3\xb8\x70\x48\xa7\x10\xb2\x8c\xf5\xce\xf2\x09\x1e\x5f\xf3\xa4\xcc\x8b\x6b\x29\x68\xdf\xc2\xeb\x3c\x5f\x52\x73\xd5\x8c\x19\xc1\x5a\xcf\xe7\x43\xf8\x61\x7c\xd4\xde\x5d\x8b\x48\xc9\x63\x74\xee\xe2\x7b\x3f\x46\x2f\x9d\xec\x71\x04\x5d\xcb\x27\xfb\x55\x59\x02\x7a\xd5\x60\xcd\xb0\x55\xb4\x61\x57\x6d\xff\xf4\xb5\x30\xf9\xce\xc4\x4a\x5a\x76\x22\x3f\x85\x60\x4c\x2d\x8f\xcd\xbd\xd7\x99\x9c\x98\xed\x07\x1c\xc6\x2f\xf0\x4d\x78\x75\xbf\xb1\x8b\x95\xa9\xd2\xb2\xcd\xf7\xc2\xb6\x5b\x99\xfc\xd6\xb2\x6d\xf7\xd2\x71\x7a\xfc\x05\x3f\xfe\xdf\xed\xb0\x56\xf3\xc2\xd7\x18\x35\x79\xf9\x16\x5e\xea\x14\x68\x86\x4d\x3d\x8e\xe7\x14\x62\x47\x33\xa4\x21\x6d\xfb\xbd\x3a\x0c\x3d\x8a\xbf\xdf\xc6\x87\x6e\xe3\x26\xd8\x3e\xe8\xa7\x40\xf5\xec\xf5\x57\x37\x9f\xf3\x30\xad\xc4\x78\xcb\xce\xe9\xa7\x40\xf5\xda\x8b\xf4\xe1\xea\x23\xc7\xa0\xee\x16\x56\xf7\x6a\xa0\xf3\x36\x39\xec\x96\x3d\xcb\x4f\x81\xea\x25\x46\xc3\xca\x24\x7c\xcc\x7d\x15\x81\xa3\x39\x05\x88\xc3\x2e\x7a\xf9\x59\x7a\x0d\x0d\x96\xfb\x95\xe5\x83\x38\xce\xe5\x49\x69\xdc\x0e\xe8\xea\x83\x25\x92\x54\x9e\x0f\xdc\x38\x9d\xfb\xea\xc2\x4e\xe7\x0b\x37\xf3\x54\x2e\x09\xe9\xf0\xa0\x88\x9a\x27\x7f\x3b\x7b\x9d\x9f\x42\xe1\x73\x75\xde\x7c\xce\x1b\xb9\x12\xc5\x2d\xfc\xca\x29\x50\xbd\x18\xc8\x07\x71\x7c\xca\x33\x41\x83\x0e\x54\x8c\x8e\xbe\x8b\x0f\x6c\x6f\xbe\x22\xd2\xe4\xa9\x45\xb5\x2f\xd7\x1e\x6b\x99\x6c\x69\xec\x62\xbe\x70\x31\x4f\xc5\xab\xfc\x34\x3b\x61\x86\xae\x84\x71\x0b\xdf\x72\x0a\x0b\x7c\x17\x7e\x1b\x1f\xd5\x4b\x63\x4c\x13\x3e\xcc\xcd\x73\x12\xf3\xd9\xdc\x7c\x61\x56\xae\x74\x70\x6b\xd9\xac\x7c\xcd\xd0\x9a\xba\xd4\x59\xd3\x5a\x73\x8a\x62\x62\xbe\x69\xed\x38\xd5\x79\xde\x6e\x96\xcf\xdb\x78\x9c\xa7\x72\x69\x05\x5d\xd6\x5f\x64\xa9\x4d\xe2\xed\xe5\xde\xf0\x8c\xaf\x3c\x62\x07\x7c\x8c\xaf\xe0\x9b\xf0\xcd\xf8\x1e\xd5\x14\xa1\x87\xd1\xb4\x2a\x91\x5a\x3a\xf6\xae\x85\xf3\x9f\x99\x78\xe9\xba\x6e\xad\x08\xcc\x48\x82\xaa\x03\x55\xa3\x17\x9f\x77\xe1\xa5\x77\x38\xcd\x17\x73\xa5\x9f\xf5\xf1\x30\x4f\xc5\x34\xde\x5e\xe0\xc2\xba\x3a\x27\xed\x8c\xb6\x17\x38\x0e\xf3\xc5\x44\xd8\x26\x3d\x29\xfb\x93\x04\x73\x7b\x5b\xb7\x91\x63\xed\xee\xb7\x77\xb0\x5b\x9d\x11\xde\x87\x6d\xdc\xc6\x73\xd2\xa6\xff\x75\x1f\xed\x44\x2e\x79\xf5\x2b\x3d\x5e\xe4\xa9\x24\xc9\xab\x5f\xe9\xf1\x17\x4f\x4a\xd7\xb4\xd6\xeb\x09\x7c\x99\x40\x1d\x06\x5e\x4f\x60\xbc\xd6\xa7\xa2\x2b\xac\xe5\x57\x7a\x9c\xbd\x93\xf2\x33\xad\xe5\xc3\xf3\xc2\x00\x59\xd9\x87\x0e\xa8\xee\xfc\x90\x40\xdd\xdf\xac\x9f\x55\xf8\x4f\xf5\xe8\xa8\xe4\x57\x5e\xd2\x11\xa6\x22\x97\xbb\x65\x13\xe1\xf5\x21\x24\xf2\xad\x5b\x9f\x85\xe4\x43\x48\xaa\x3f\xff\x19\xfd\xf1\x39\xd4\xf1\x21\x55\x4e\xd4\x4a\xcb\xb2\xec\x44\xbd\xe4\x44\x5d\x74\xaf\x63\x27\xea\x53\xc0\x17\x5b\x4b\xc0\x67\x45\x84\xf1\xae\xf2\xa9\x6c\xbb\x33\xef\x1e\xe1\xd2\x92\x32\x82\x1c\xf0\x35\xfe\xc3\xe9\x1a\x7c\xf2\xf7\x3c\x5a\x2a\xbd\xc2\xee\x32\x8b\x3d\x85\x86\xd7\xb5\xbe\x47\x20\x4e\x21\xea\xbf\xc9\x92\xdc\x15\x1c\xed\x14\xa8\x9f\x94\x92\x5d\xaf\x96\xa7\x40\x3d\x24\x06\xed\x89\xbb\xbc\x53\x08\xd6\xec\xaa\x86\x05\x77\xcb\xf5\xb7\xe0\x7c\xb5\x1d\xe4\xf3\x14\xc0\x93\x6b\xb3\xe7\x61\x3c\xcc\x43\xbe\x50\xbb\xf8\x6e\x62\x82\xa6\xf2\x90\x2c\xb8\x2b\x5c\xd9\x96\xeb\x6f\x79\x2e\x55\xef\x51\x71\xd0\x29\x44\x79\xdf\x5d\x07\x9d\x4d\x38\xd1\x8c\x45\xde\x81\xaa\xd1\x41\x04\x82\x48\x6d\xf2\x22\x52\x08\x5e\x20\x49\x73\x57\x68\xb2\xdd\xe3\x04\x93\x09\x5f\x7c\xa0\x64\x74\xe8\x10\xdc\x3b\xb6\x7d\x7f\x37\xde\xbe\x19\x39\xd9\xb8\xfc\x52\xa0\xd1\x6c\xbc\x1b\x65\x11\x20\x7f\xa9\x5d\x7c\x4f\x21\xc2\xbe\x8a\x02\x8a\x59\xb6\x71\xf5\x4d\x05\x6f\x90\x03\x56\xe3\xa1\x0c\x69\x3f\x7b\xe9\xdd\xf8\x11\xd5\xdc\x42\x4f\xa3\xe9\x0c\x99\x40\xbb\x9e\x55\xb7\x5c\x82\x0b\x97\x21\xbb\xeb\x59\x75\xcb\xc7\xb7\xe0\xf6\x71\x40\x57\x3f\xa8\x5e\x9d\x47\x43\x9d\xc2\x19\x53\x4e\xd7\x3f\x6f\xaf\xce\xc7\x3f\xfd\x17\x8b\xf3\x73\xab\x36\x6e\x39\x4e\xe1\x89\xda\x34\x34\xcf\x22\x4f\xb7\x05\xff\x8c\x03\x0e\xe3\x19\x9b\x58\x56\x6f\xb4\xbb\x73\xf6\x2a\x04\x1a\x3e\xa0\xab\x5f\x54\xaf\x21\x2f\x93\x08\x56\x7e\x48\x9f\xdb\x15\xdc\xec\x14\xa8\x86\x44\xa5\x5d\x6f\xb1\x5b\x6e\xca\x85\x08\xc0\x1b\xef\x64\x0a\xd4\x23\x51\xb9\x4d\xd2\x1b\x05\x49\xb8\xd6\x03\x56\xe3\xe9\x3e\x59\xec\xfb\x3d\xc4\x27\x77\x64\x73\x26\xcd\xde\x81\x5c\x0d\x2b\x19\x66\xf7\xdb\x2e\xc6\xa7\x70\x9f\xcf\x8b\x6a\x31\xd1\xc2\x4c\x38\x67\xb1\xc9\x6d\x71\xe6\x04\x57\x70\x4d\x3b\xe0\x5f\xa3\x31\x91\x62\x93\xdb\x12\x11\x46\xc3\x39\x8b\x4b\x64\x34\xbc\xe5\x77\x5c\x30\xa2\xdf\x64\xed\xa4\x10\x5c\x72\xab\x2f\xa6\x30\xaf\xd1\xa5\x26\x35\x6a\x5d\xc7\xb1\xb1\x60\x80\xb5\xfb\x63\xca\x73\x6c\x2c\x55\x62\xfb\x98\xc7\x39\x36\x12\x75\xe9\x40\xcb\xe8\xe8\x3b\x09\x9f\xbb\x8c\x86\xb7\x1c\x8c\x4b\x25\x81\xb6\x1d\x8c\x37\x0e\xc6\x39\x4b\x31\x3e\x9e\x0e\x0e\x93\x05\xbb\xac\x6d\x07\xe3\x2d\x07\xe3\x52\x45\xe0\xc7\x8a\x94\xd3\x64\xa9\x52\xec\x8f\x99\xf8\x81\x89\x1f\xa3\x9b\xd1\xd1\x77\xf1\xea\x63\x3d\xfa\xb0\xea\x71\x73\xb3\xfb\x63\x9d\xc3\x23\x74\xa9\x12\x91\x67\x3d\xc6\xd3\xcb\x47\xbd\x59\xee\xa5\x48\xa9\x66\xab\xb5\x4b\x45\x8d\x54\x72\x4c\xf7\x6a\x35\x52\xd1\x0b\x78\xb2\x1d\x70\x1b\xff\x3b\xdd\x94\x5a\xaf\xe6\xe1\x2a\x5a\x36\xe3\x9b\xf1\x54\x23\x59\xa8\xe6\xe1\x8a\x5e\xa8\xd0\x52\xa6\xd0\x9b\x44\xa8\xa9\x70\x5b\x72\x40\xf7\x06\x09\xaf\x12\x91\x6a\x6e\x25\x3d\x78\x6e\xfe\x7c\x1a\x4d\xab\xdd\xd5\xbf\xc6\x43\x04\x49\x54\x35\x31\xe3\xdd\xf9\xe0\x55\xcf\xfa\x19\x1f\xdf\x37\xad\x26\xcd\x44\xc3\xba\x59\x89\x7e\x76\x6f\x96\x7c\xde\xa7\x4b\x13\xbf\x36\x4b\x3e\x0f\xd1\xa5\x89\x5f\x9b\x95\x2c\x87\xe1\x82\x45\xd8\xb6\xff\xf3\x29\xc4\xde\xb6\x65\x7d\x6f\x6a\xc6\x93\x74\xce\xe4\xcd\xee\xcd\x1c\xd8\x58\xf4\x9a\x96\xfe\x66\x8d\xd0\xe0\xc0\x26\x0e\x54\xac\xb5\x2d\x7f\xe9\xd2\x8a\xbf\x77\x3d\x90\xa7\x49\xb7\xb7\xe5\xe1\x22\xe4\x5d\xbd\xb4\xba\x6c\x48\x6d\xbb\x8d\xdf\xc6\xc7\xdc\x8a\xc8\xcd\xc4\x6c\x22\xa6\x38\xbc\x5b\x98\xbb\x88\xf9\x74\xe1\x1f\xe3\xa9\x5e\x9c\xd9\xcd\x81\x9c\x8d\x95\x11\xbc\x77\xef\x14\x30\xc2\x2e\x18\x73\x1d\xb0\x1b\x1f\x2c\x32\x86\xd0\xd3\x68\x6a\x6f\xea\x8d\xa5\xb6\xb3\x4d\x6b\x4d\xbd\x19\x52\x74\x71\x48\xce\x64\x08\xdc\x76\x97\xde\x24\x36\x48\xa5\x49\xa7\x77\x33\x66\x0f\xc6\x2c\x5a\x6d\xbb\x19\x2d\x02\xc1\x65\x0c\xc5\xb7\x9d\xab\xb7\x9c\xa8\x4b\xd3\xc6\x62\x98\xcf\x38\x49\x97\xae\x5d\xce\x30\x3f\x0d\x56\x92\x9e\x20\xcd\xf0\x26\x6a\x10\x37\x5e\xeb\xe3\x30\x69\x38\x60\x97\x2e\x36\x1b\x66\x33\x9e\xb4\x0b\x96\x5f\xdb\x3e\xda\x5b\xbe\xd8\xa5\x4b\x31\x0e\x0f\x76\x20\x9d\x5d\x5b\x8e\x61\xe9\x1c\x88\x5b\x17\x9f\x0d\xaf\x19\x24\x8f\x67\xe7\xbc\x9d\xaa\x61\x77\x1d\xa5\xbb\xd8\x6c\x98\x38\x3c\x5e\x97\x2e\x55\x37\x4c\x1d\x9c\xb4\x4b\x97\x5a\x1f\xe6\x33\x0e\xcd\x45\xbd\x9c\xde\x18\x4d\x11\x4d\x9a\x6e\x7a\x71\x20\xe9\x7c\x91\x90\x4c\x6f\x80\xa6\x68\x49\xca\x7d\x5c\xb0\x29\x50\x8d\x14\xe0\x34\x71\x70\xae\x2e\x5d\x9a\x6e\x7a\xcf\x82\x95\x7b\xe9\x62\xa8\x69\x75\x3f\x15\xe1\x5f\x9f\x9b\x66\x3a\x35\x77\x6d\x78\xa7\x65\x70\x8a\x96\xd2\x80\xd3\xb4\x9c\xd0\xb2\xb8\x76\xb7\x2a\x9a\xf5\xf6\x9f\x6c\xb0\xa6\x45\x37\xbc\xb0\x33\x81\xa1\x0e\x64\x5a\xc0\x87\x5d\xb2\xb5\xcc\x87\x0b\x61\x19\xda\x83\x2e\x6b\xf1\x08\xf0\x96\x8b\x26\x6c\x99\x14\x3a\x6b\x0f\xad\x94\xcb\xfc\xa3\xb3\xf6\xd0\x4a\xb9\xbc\x43\x09\xaf\xea\x5c\x34\xbf\xcb\x6a\x0a\x67\xea\x32\x44\x3a\x39\x53\x9f\x02\xad\x32\x91\xcb\x7b\x8e\xa5\x48\x3b\xda\x5c\x2c\xef\x39\xc2\x22\x3f\x17\x9d\x67\xd6\x72\x2d\x87\x8d\x72\x79\xd4\xa8\xb7\x1c\x3a\xc8\x0f\xd5\xbe\xad\xa5\x74\x90\x1f\xda\x15\x6c\x73\x15\x07\xf9\x22\xe5\xb5\xcd\x55\x1b\xe5\x35\x1e\x57\xb3\x8d\x8f\xbe\x57\xd7\x22\x8a\xc5\x6b\xfe\xf9\x1c\x8a\xc9\x99\x7a\xe3\x4c\x9d\x89\x99\xbd\xed\x4c\x7d\x0a\x74\x46\x67\xc3\x6d\xde\xdc\x9a\x27\xf1\xec\xb6\x52\xdb\xf0\xe6\xd0\x72\xbb\xcd\x9b\x1b\xde\xac\xea\xa4\x79\x13\x9f\x83\x32\xc4\xca\xdb\x4a\x6d\xa3\xd4\xfe\x6a\xf1\x58\x45\x32\xa9\xcc\xd7\x5c\x13\x8f\xf9\xe9\xbe\xb4\x95\x7c\xbd\xb5\xc0\xdc\xfe\xbe\xb4\x39\x7c\x5d\xfd\x4b\xf5\x2d\x0b\x3d\x8d\x5e\x04\x21\x1a\xc2\xbf\xc6\x7f\x81\xd7\x7c\xbf\x3e\x75\xe1\x4e\x7d\x5f\x62\xa7\xd7\x7c\xf0\xc2\x07\xda\x89\xbc\xe6\x79\xac\xf6\xef\x4b\x13\xfb\x5a\xbb\xbc\x68\x97\xa6\x56\xbd\x8a\x71\x6b\x71\x5f\x0f\xbd\xfc\x79\xb0\x58\xed\xdf\x97\xb4\xce\xcf\xab\x18\xa6\x00\xf7\x25\x06\xf9\x59\x85\x63\x0a\x70\x5f\x5a\xdd\x7e\xde\x12\xfc\x54\xbf\xa6\xf6\x33\xff\x7d\x31\xe5\x77\xd2\x16\xe2\xf3\xf2\x16\x69\x0d\x72\xe9\x46\x4f\xa3\xa3\xfa\x24\x09\xff\xcc\x09\xdc\x42\xdc\x49\xba\xf7\xf3\xf2\xf6\xb1\xbc\x69\x89\xff\x2c\x99\x38\x2a\xdf\xdc\xa6\x1d\xd0\xad\x32\x55\x5a\xe2\x3f\x4f\x55\x58\xcc\x9f\xcf\x5d\x8d\x88\x86\x45\xfc\x9d\xb4\x29\xfd\xac\x86\x3e\xd4\x90\xb6\x5d\xdf\xaa\x46\xd3\xaa\x84\xe7\xf3\x1e\x96\xab\x12\x25\xba\xdb\xf6\x73\x3e\x05\xbe\x87\xed\xc7\x25\x1a\xcb\xff\xf9\x26\x5b\xfa\xb6\xff\xf3\x1e\x3c\xa2\xdf\x29\x5e\xf4\x0f\xf8\x18\x1f\x44\x23\x2c\xd9\x01\x5f\xe3\x3f\xf0\x0d\xfc\x72\x3d\x0c\x8b\x48\xc3\xdb\x0e\xcd\xa7\x40\x3d\xac\xc3\xe3\x12\x4b\x8d\xb8\xc3\xc9\x84\xd3\x3a\xd0\xcf\x68\xaa\x67\x19\xb6\xff\xf3\x29\x34\xf0\x59\x78\x0d\x0b\xfb\xf1\x9b\xfc\x30\x9b\x6c\xd9\x14\x9e\xa8\xbe\x0a\x5d\x8d\xa6\x1a\xa8\x39\xd2\xfc\xab\x86\x5e\x8a\x9a\xc9\xa3\x4d\x1a\x55\x55\xb3\xcb\xd5\xc7\x64\xdd\x1a\x6c\x5a\xae\x3e\xa2\xe3\xdc\xda\xca\x0f\xe5\xb7\xda\xf2\x8b\xbe\x31\x9f\xda\xf6\x8b\xde\x83\x1b\x9d\x9b\x48\xa8\x07\x7c\x8c\xa7\x3b\x1c\x5f\x87\xa2\xb6\xed\x81\xf9\xf8\xad\xad\xd4\x90\xf9\xf8\x29\xc4\xf7\xdc\xa7\x1d\xf0\xef\xfb\x0f\x3c\xdf\xfb\x1a\x85\xc4\xd9\x07\x4f\xfd\x32\xe4\x3e\x05\xbe\x57\x7f\xca\xf2\xf7\xb1\xe9\x25\x55\xdb\xb6\xa7\xf0\x29\x44\xf7\x49\x35\x70\xc0\xc7\x78\xba\xc9\x0d\x13\xe9\xb6\x29\x84\xc0\x11\xc0\x69\xdb\x83\xf8\x14\xa2\x7a\x76\xf8\xe3\xd6\xe6\x65\xdc\xa8\x05\x89\xc4\x50\xd0\xb2\x53\x88\x5e\xde\xa2\x82\xef\x0e\xe4\x88\x7c\xdf\x62\xcd\xdb\xd4\xe4\xee\xe0\xf6\x6c\xdd\xa6\x26\x81\xc5\xee\x3b\xe9\x7b\x09\x34\x09\x94\xf2\x2d\x62\xde\x26\x0e\xb7\x01\x37\x91\xc2\xb6\x13\x2a\x6d\xf9\x10\xdf\xb7\x58\xf0\xb6\x44\xe0\x14\x7c\x63\xe0\x74\x40\x57\xbf\xa8\x5e\xa3\x35\xe7\x73\xbe\x57\x56\xcb\x6d\x5f\xe1\x8d\x77\x70\x52\x0e\xcb\x3d\x14\xd6\x7c\xe3\x2c\x9c\x71\x24\xdc\x76\x16\x3e\x05\x5a\x45\xed\x0c\x5f\x07\xe0\x44\x9c\x6f\x16\x88\xf1\x68\x0d\xc6\x6b\x38\xff\x4f\xe5\x9f\xd0\xb1\x06\xdf\xc4\xd4\xda\x43\x49\xd6\x36\x4e\xc3\xf9\xbe\xff\x93\x1d\xd6\x78\x74\x54\x1b\x3c\x31\xeb\x76\x75\xe8\x89\x79\xe3\x69\x7c\x1a\xa9\xc2\xbf\xc6\x47\x9f\xd8\xa4\x0c\x25\x6d\xdb\x38\x1e\xe7\x9b\x4d\x8a\x1d\x8f\x4f\x01\xfa\x54\xd5\x6e\x05\xf6\x68\x76\x25\xba\x8f\x45\xfd\xd1\x74\x55\xd5\x63\x1e\x7f\xe0\x71\x69\x00\x85\x5b\x3f\x85\x18\x71\x15\x21\x2c\xe9\x18\xac\x2b\xd3\xe7\x26\x2f\x3a\x85\x50\x6b\x55\xf4\xf4\xe4\x3e\x9a\x5c\x56\xd0\x51\xad\x00\xaa\x26\x57\xda\x57\xcf\xe0\x5b\x99\xd5\xef\x5b\x92\x55\x3d\x8b\xdc\x44\xdc\xb7\x24\xcb\x37\x11\x23\x4c\xd7\xf3\x2d\xbd\xa3\xc8\x68\xa7\x10\xbb\x0e\xb2\xa4\x1d\xb0\x19\x7f\xce\xce\xb7\xd6\x02\x3d\x83\x9f\x02\xb5\x0f\xd5\xee\x09\xc1\x87\x5b\xc9\x43\x37\xae\xdb\x14\x42\x8d\x10\x16\x69\xdb\x29\x7b\xe3\x57\x9d\x94\xcc\xf1\x80\xb7\xf1\x41\x4b\x13\xc1\xb4\xe4\xd9\xfc\x7e\xb2\x3f\xf7\x60\x11\x14\xd3\xc6\x5a\x24\x6e\x24\x32\x91\xc6\xf6\xf0\x3d\x84\xbc\xac\x6f\xdd\x24\x8f\x66\x39\x69\x30\x3e\xb7\x25\x4e\x2b\xb6\x95\x56\xcc\x43\x6d\xa6\x18\xb7\x10\xf7\x23\xe1\xf7\x2d\x84\xbc\xac\x95\x50\x78\xdb\xcb\xfa\x14\x3e\xf0\xaa\xc7\xcc\x1a\xf7\x0e\xf9\xd1\xea\xd9\xbc\xfe\x60\xc9\x7e\x63\x10\xb7\x49\x4a\x4f\xe1\x17\x9f\xab\xef\x56\x21\x4d\x84\x64\x83\x45\xd6\x7a\x0a\x2d\x3e\x1f\x42\x77\xa3\xa9\x5d\x02\xe5\x4b\x08\x5c\xbe\x33\xa9\x91\xb7\x3d\xbe\x4f\x21\xfa\xc8\x2e\x6a\x74\xab\xdd\xce\x56\xf5\x91\x40\xf9\x0e\x82\x5c\xf7\xf9\x91\xb6\xec\x5e\x81\xb9\x9a\x50\x16\xd8\x03\xbe\xc6\x43\x19\x6d\x44\xba\xb5\x74\x17\x25\xc5\xab\xbe\x9b\xc0\x53\x3c\x3f\x59\xd5\xe8\xd2\x9c\x24\xfa\xf9\xd1\xda\xe0\xab\x89\xd1\x91\x7a\xdd\x2b\xe3\x5d\x4e\xe1\x89\xcf\x8d\xae\x46\xd3\xa8\xe4\xa9\x5b\x19\x74\xcd\x87\xe4\xa9\x7b\x3e\x3a\xf3\x21\x95\xee\x2b\x8b\x11\x57\x16\xe9\x7e\x86\xf1\xc5\xf8\x68\x55\xcb\x6c\x37\xdd\xb9\xca\xb8\xc9\x90\xb0\xed\xab\x7e\x0a\x41\x78\xf6\x9d\x63\x98\xf0\x43\x1c\x2c\x31\x1b\x26\x3c\x37\x1f\x37\x41\x5e\xb6\x5d\xdb\x4f\xe1\x03\x4f\xb3\xbe\xf9\x20\x7d\x7f\x7e\x6e\xa3\x8b\xd1\xd1\xc9\xbb\x0a\x5d\x8d\x0e\x12\xe8\x5e\x79\xc8\x86\xe0\x14\xde\xf8\x5c\x9d\xd1\x79\x76\x70\x1f\xa2\x84\xb9\x7b\xf8\x3e\x64\x70\xef\x71\x57\x09\xf1\xf0\xea\x18\x37\x1d\xe9\xd6\x8d\xf0\x18\xde\x3b\x60\x85\x7f\xeb\x46\x78\x0c\xf3\x70\x98\xe3\xcb\x48\xf3\x40\xd3\x68\xaa\x37\xcd\xbc\xc3\xc1\x2a\xe0\xd6\x95\xf0\x98\x56\xac\x53\x34\x93\xa0\xf9\xe2\x63\x70\xf1\xa1\xd7\x8e\x31\x75\xe6\x1c\x44\x95\xbb\x75\x23\x3c\xa6\xae\xbf\xc7\x84\x66\xe2\xed\x69\x9a\x71\x1f\x72\x57\x89\x88\xef\x43\x14\x24\xe0\xae\x5a\x73\xa6\xb9\x95\xfb\x90\xbb\x6a\xcd\xf1\x7d\x08\xee\xff\x19\xcf\xf2\x4d\x0c\x00\x0a\x0c\x4a\xfa\x79\x7a\x89\x8a\x38\x72\x99\x7c\x8c\xdb\x4e\xff\xa7\x40\xed\x5d\xbd\xf1\x36\x6c\x8a\xc4\x5d\xbd\x31\x89\xe3\x8a\x23\x3f\x7f\xb5\x2f\xa3\x69\x95\xe3\x93\x63\x07\x9c\x02\xad\x36\xa1\xab\xd1\x8c\x55\x6b\xcb\xf2\x52\x14\x51\xe7\xf2\x23\xad\xbd\x4c\xe1\x25\x66\xe5\x45\x6f\x2c\xab\x03\x4c\x1a\xee\x26\x4d\xb9\xac\x70\xb9\x66\xb9\x9b\x0e\x08\xbe\x66\x19\x5c\xb3\x3c\xee\xa4\xd9\x92\x6b\x96\xbb\x69\xc9\x59\xd6\xc3\x0b\x3d\x2c\xed\xbf\xbc\x69\x58\xe8\x03\x5d\x4e\x3b\x0f\xda\x26\x0f\x5a\xc6\xb7\xfe\x40\xd3\x68\x3a\x23\xa6\x5f\x66\x6e\xe2\x23\xdc\x4d\x4c\xbf\xac\x27\x88\x83\x70\x37\x29\x33\x5f\xbf\x10\x10\x21\x13\x31\xf1\x40\xae\x7e\x29\x8a\xe5\x7f\xf2\x32\x38\x96\x37\x15\x5c\xcf\xdc\x4d\x6b\xd2\xf6\x84\xe1\x35\x71\x37\xed\x30\xb7\x57\xc2\x70\x9f\xc8\x8f\x96\xbc\xed\x89\xe4\x36\xe7\x6e\xda\x49\x6e\xab\x17\xae\x6d\xee\xa6\x2d\xe3\xb6\x62\xdf\x9a\x31\xe9\x97\x6d\x59\xe1\x7e\x46\x8f\x65\x63\x7b\x97\xb7\x35\x33\xda\xce\x6d\xcf\x4c\x38\x5b\x64\x2b\xaf\xed\x99\xe1\x7a\xe6\x6e\x92\xd0\xed\xed\xdc\xd6\x8c\x69\x23\xb6\xad\xc1\xb7\xa6\x40\x3b\xae\x6d\x59\x89\xf0\x0d\x99\x70\x90\xdb\x41\x1b\x4e\x81\x41\x35\x7f\xbe\x8d\x3f\x6c\x55\x75\x4a\xdd\x26\xf1\x16\x89\x75\x20\x7a\xad\x5e\x5e\x91\x58\x22\xf7\x5a\x55\x93\x55\xe0\x6e\xda\x9c\xbc\x16\x8a\x88\xde\x90\xad\x34\x5f\x33\xff\x1b\xfb\x30\x82\x24\x1c\x68\x18\x4d\x27\x87\xf1\xaf\xf1\xf4\x46\x07\xa2\xd7\xba\x57\x97\x48\x4d\xc7\xc5\xd7\xb4\x89\x6b\xa3\x74\xf7\xcb\xdf\xbb\x37\x28\x8c\xae\xd3\xf1\xeb\xfd\x59\x44\xe1\xcb\x55\xfc\xf4\x7a\xb7\xa1\x4b\x24\xdc\x7e\x0f\xe8\xea\xa1\x65\x4f\xae\xe6\xaf\xfa\x5f\x54\x03\xda\xb7\x42\xe3\x17\x76\x7f\xb7\x6e\xd8\x87\x62\xf5\x6d\x82\x3a\xe4\x2a\xf6\xfb\xf5\x66\xf4\xd1\x52\x56\xec\x3f\xbd\x5f\x2a\xc2\xc3\xdd\xb5\xcd\xfb\x79\xd1\x0b\x3f\x11\x59\x69\xef\xf1\xf3\x7e\x0e\x03\x9a\xbb\xeb\xd0\xf6\xb3\x06\xff\x41\x79\x1d\x49\x7e\xde\x6d\x10\xca\xe1\xc6\x9e\x74\x8f\x9f\x99\xf5\x07\xb3\x6a\x79\x50\xba\xd0\x53\xa8\x81\xd6\x48\xa7\xbb\x8e\xba\xe8\x45\x8d\x9a\xee\xe1\x64\x92\xbd\x6a\x28\xc2\xc3\x29\xd0\x28\x17\x4b\xe3\x67\x2d\xf2\xd3\x34\x69\x0d\xfb\x59\xaf\xff\x44\x77\x1d\xf1\x7e\xa6\xfb\x0f\x1e\x96\x24\x7c\xa6\x7b\x5c\x9b\xc9\xd6\xfb\x40\xd9\x68\x66\x55\x9d\xff\xbc\x42\x86\x47\x4a\xae\xda\x9e\x29\x1e\xc4\x29\xd0\xa8\x96\xb6\xcf\x2c\xac\xbb\x38\x3d\x0d\x8c\xcf\x3c\xfc\x71\xb8\xd3\xd3\xc0\xf8\xac\xa8\x09\x03\x78\x77\x2d\x27\x9f\xe5\x5b\xb7\x6b\x5d\x92\xf3\x99\x87\x3f\xd1\x52\x3b\xb4\xcf\xaa\x57\xf7\x5f\x1d\x55\xed\x48\x11\x9b\x48\x11\x32\x49\xdf\x8e\x14\x71\x0a\xd1\x2c\x4e\x82\x07\x7c\x8c\x8f\x66\x07\xeb\xc6\x94\x43\xcb\x56\x48\x88\x1b\x17\xf5\x3d\x95\x87\x72\x13\x1b\x42\x16\xec\x07\x72\x35\x23\x18\x81\x65\x86\xb8\x11\x14\xa2\xf3\x98\xc6\x1e\x70\x1b\x1f\x33\xe5\xbe\x8b\x36\x13\x3f\x97\x7b\x60\xcd\x30\x15\x5b\x70\x2b\xb0\xc4\x3d\xb2\x3a\x3f\xdd\x2a\xb4\xd1\x1b\xc2\x54\x70\xc1\x4d\xc8\x88\x4c\x32\xa7\x3d\xe5\xb9\xb2\x09\x0d\x91\x6e\x2c\x66\xf7\x94\x87\xca\x29\x50\xcd\xad\x66\xb5\xb7\x52\xa8\x88\x7b\xb0\x05\x74\xa8\x88\x53\xa0\x1e\x4e\x25\x33\x89\x73\x66\x5c\xca\x65\xad\xe4\x53\x2e\x2a\xa7\x40\xf5\x8f\xab\xd9\xc6\xbf\xf1\xb9\x6b\x11\x11\x08\x5d\x78\x93\x3d\xe5\x80\x1a\x6c\x42\x4a\xc8\x93\xb2\xa7\x32\x55\x9e\x42\x8a\x6a\x1e\xa1\xb3\xd1\x54\x83\xae\x9c\x4a\x55\xb9\x15\x29\xe2\x1e\xac\x82\x53\x49\x29\xb7\x22\x42\x3c\xba\xa0\x77\x44\x88\x53\x88\xea\x93\xd1\x8f\xd1\x2d\xd0\x45\xe8\x6e\xf4\xa4\x96\x26\xfc\x32\x3e\xc6\x8a\xa6\x74\x58\x89\x3d\xb9\xff\x7b\x2e\xd7\xee\xb1\x12\x17\xf1\xb9\xfc\xbd\x16\x47\x85\xa1\x78\xae\x6c\xbc\x66\x90\xfb\xbf\xe7\x42\x6d\x4d\x5b\x51\x4d\xac\xa8\xc8\x0f\x7f\x20\x37\xab\xb1\x72\xbb\xe3\x68\x13\xa7\x40\x77\x58\xaa\x67\xf1\x60\x31\xa3\x7a\x08\x5b\x78\xc0\x61\x3c\xcd\xa2\xd0\x1c\x86\x62\x2b\xdc\xc4\x83\xcb\xc2\x01\x6f\xe3\x9f\xe8\xce\x10\x7a\x1a\x4d\x77\xb8\x1d\x9d\x4a\x0b\x79\x0a\x41\xfa\xa2\x5a\x4c\x04\x0c\xa2\x1e\x8c\xfb\x0f\xe8\x5e\x46\xb0\xc7\xe7\xea\xea\x8d\x96\xaf\x59\x44\x9c\xf1\x1f\xc4\xbe\x3a\x5f\x6f\xff\x5b\xd0\xae\x68\xcc\xa6\x1d\x06\x50\x4f\x12\xdb\xda\x00\x4a\xc1\x28\x1e\x52\xa5\x1c\xf0\x36\xfe\x68\x06\x99\x11\x4c\x65\x7d\x3c\x85\xc5\xe7\x4d\xf8\x6d\x7c\xb4\xca\x52\x30\x95\x8f\x61\x2b\xa4\xc5\x93\xa4\x8e\x14\xd2\x62\x4f\xee\x24\x1f\xe2\x17\x1e\x50\x33\x40\xa0\xc2\x27\xb1\xa8\xce\xdb\xdc\x7f\xab\xf7\x12\x75\x5f\x32\x4e\x9c\x46\x1e\xbd\x32\xcc\xc7\xea\x2e\xbc\x47\x32\x31\x89\xb6\x63\x50\x9c\x02\xd5\xa3\xdc\xe7\x63\xbe\x7d\xd4\xcd\xf6\x08\x3f\x8c\xa7\x7a\x4d\x99\xaf\xf4\x88\x3a\x21\x4f\x98\x03\xdd\x46\x33\xaa\xae\x5e\x7a\x54\x5c\xdd\x3d\x32\x22\x9c\xb6\xff\x51\x10\x0a\x25\x80\xde\xd3\xf6\x3f\x8a\x2a\xf1\xe8\x0d\xc3\x51\x25\xb6\xa2\x4a\x3c\x7a\xc3\x70\x54\x89\x53\x88\xee\xeb\x0d\x63\xfa\xd6\x8d\x38\x12\x59\x5b\xcf\x59\xad\xd8\xb8\x8c\x7b\x88\x55\xb8\x1d\x3e\x62\x13\x30\x22\x3d\x7a\xc3\x98\xb6\x0b\x9a\x24\x24\x78\xf0\x0c\x3f\xa0\xab\x1f\x54\xff\x08\x2d\x4e\xab\xea\xa5\x84\xda\x17\x5d\xb3\xa1\x91\x58\xa0\x1d\x0f\xe2\x14\x82\x08\x98\x04\x1f\xf0\x31\xbe\x82\xef\xc2\x37\xe3\xcf\x0e\xa8\x35\xd7\xbe\x8c\xa6\x55\x0e\x99\xd3\xf7\x65\x93\xfb\xb2\xa6\x99\xf5\xbd\xd8\x0c\xeb\x9c\xac\xfd\xf1\xb4\x71\x0e\xf1\x22\x4e\x2d\xc6\x0f\xe3\xcf\xa6\x4e\xdb\xe6\xd9\xbc\x1e\x86\xcb\x8a\x5c\x96\x36\xc1\x24\x28\xd0\x97\xae\xbe\x58\xd2\x1b\x01\xc7\x73\x57\x67\x74\x7a\x53\x9c\x88\x27\x6b\x19\xf6\xed\x1a\x01\x23\x32\xd1\x9a\x0f\xf4\x09\xcd\xca\x31\xd4\x19\xaf\x1c\xf8\xb3\x3c\x79\xa8\x37\xcb\xb5\xc7\xe1\xad\x69\x55\x55\xfa\xc5\x4d\x1c\x89\xf3\xb9\x6a\x37\x93\x61\xe2\xf3\x14\x31\x9f\x4d\x7c\x14\x3f\xe2\x21\x87\xca\x01\xbb\xf1\x54\xdf\x84\x5e\x46\x47\xdf\xb9\x13\x72\x66\xee\x3d\xf1\x72\x79\x0a\x77\x7a\xb3\x7b\x3e\xb8\x5d\x7b\xc8\xf8\x7e\x40\x11\x3e\x8c\x71\xd2\x53\xc4\x93\x5d\x27\x5b\x85\x95\x78\x64\x4b\x31\x7d\x45\x35\xf1\x4f\x79\xf4\x96\x3f\x87\xf5\x53\x04\x92\x90\x97\xd7\x26\x9a\x04\x05\xaa\xc1\xe0\x68\x0e\xb3\xfc\x50\x37\xc5\x65\xb6\xb6\x51\xa0\x88\xa7\x88\x9d\x7c\xe9\x44\xc4\x88\xdc\xb9\xd8\x9c\xca\x96\xb8\x27\x7e\x2b\x32\xf1\x99\xc3\x2b\x01\xfe\x29\x0f\x2e\xed\x7b\x0e\x2f\x87\x61\x15\x73\xf0\xaa\xc6\xba\x9b\xcb\xa2\xe7\x56\xf5\xd3\x83\xc5\x85\xe4\xb9\x55\xff\xb4\xe8\x70\xcd\xf3\xdc\xdc\x90\x4e\x5f\xf3\xcc\xc9\x94\x93\xda\xe3\x80\xdb\xf8\xe8\xbd\xf4\xc1\x74\xb3\x53\xcd\x4a\x62\x97\x39\x61\xa9\x59\x89\xda\x72\xb3\xdc\xac\x3c\xba\x9e\x9f\xbe\x59\x99\xdc\xac\x74\x9e\x40\xe7\xf2\xaa\xba\xd4\x4b\xed\x49\x97\xd5\x4a\xb8\x7b\x64\x82\x85\x6f\xc7\x60\x38\x05\x7a\x23\x69\xb0\x41\xca\xe4\x8e\xe3\xb9\xa5\x5c\x7d\xc7\x31\x89\xf5\xf8\x3c\x9a\xf2\x65\xe5\xca\xed\xc3\xf3\x70\x85\x32\x7d\xfb\x30\xb9\x4e\x78\x74\x91\x3b\x7d\x9d\x30\x09\x9d\xff\xe8\x66\x7d\x6e\xb3\x08\xd7\x09\xcf\xc3\x61\x69\x6e\xb3\x08\x76\x1d\xcf\x73\xfb\x7b\xd7\xa3\x70\xf5\x5c\x3f\x4c\xdf\x27\x10\xbc\x21\x77\x31\xb2\xef\x13\xe6\x56\x37\xb5\xd7\x79\xad\x2e\x5f\x75\x53\x3a\xe7\xb5\x18\xc6\x09\x5e\x1e\x82\xdb\xc1\x16\x4e\x61\xf1\x79\x17\xfe\x35\x9e\xea\xa5\x44\x7c\xb2\x57\x54\x85\x47\x57\x3d\xf3\xf5\xa4\xbc\x4c\xca\x6d\xb4\xab\x67\xc3\xa7\xcb\x93\xf9\x5a\x03\x12\xa5\xf1\xa9\x52\x16\xaf\x35\x20\x47\xf2\xa7\x8a\x93\x6d\xd7\x31\xb1\xeb\x20\xd0\xd1\x81\x5c\x3d\x44\xa8\x3a\x40\xf8\x48\x3e\x89\x68\xf8\xe8\x12\x76\x2a\xa2\xe1\x9e\x3f\x55\xcf\x61\x6f\xfe\x7c\x52\xf8\xa9\x1e\x09\x96\x8f\x98\x13\xff\x8f\xa7\xfe\x67\x5b\xac\xcf\x53\xcc\x59\xf0\xf1\xb6\xd8\x67\xc1\xf9\xa1\xdf\x9b\x58\xc5\x26\x15\x93\x33\xdf\x23\x1b\xce\xe5\x33\x1f\x61\x08\xd2\x23\x6b\xca\x75\x49\x60\x88\x4a\x90\x89\x9c\x74\xa0\x9f\xd1\x54\xc3\x8a\xb8\x6c\x0a\xa1\x68\x05\x8f\xac\x26\x97\x0f\x77\xc4\x21\x38\xf8\x22\xbc\xab\x47\x59\x71\xae\x59\x3e\xc5\x11\x9f\x20\x3d\x5a\xe4\x96\x4f\x71\xeb\x3a\x2c\x29\xe7\xd0\x4d\xf0\x02\x0a\x0c\xb6\xab\x76\x5d\x22\xac\x88\x07\x98\x7b\x35\x7a\x1a\x4d\x67\x58\xe3\x96\xed\x2f\x14\x7e\xe0\xd1\x9d\xd1\xba\xc4\x11\xc4\x21\xc8\x04\x9c\x3b\xd0\x32\xfa\x77\xd0\xa8\x1e\x07\x25\xd8\x84\x21\x48\x4f\x87\x0f\x97\x32\xec\x6d\x45\x25\xc0\x51\x75\x3b\x2a\xc1\x29\x34\x3e\xbf\x85\x1f\xc6\x2f\xf0\x55\xf8\x57\xf8\xa1\xea\xe9\x8d\x82\x09\x9e\x02\xd5\x1b\xdd\x8c\x8e\xbe\x77\x75\x52\xc2\xb2\xf0\xca\x79\x08\xde\xb7\x97\xbd\x72\x16\xb6\x20\x8f\x4c\x35\x97\x8d\x3b\x16\x27\xc7\x47\x77\x40\x2b\x99\x64\x89\x03\x43\x2f\x1a\xd5\xf2\xa8\x60\x33\xe9\x00\x07\x3d\xd8\x0b\x3f\x9b\x87\xb8\x60\x07\xec\xc6\x47\x37\x51\x01\x44\x1d\xa0\x00\x11\xc4\x36\x36\xe2\x50\xfc\x81\xc7\xc4\xcc\xee\xbe\x0e\x77\x84\xad\xda\x4b\x39\xf6\x36\x21\x04\x32\x89\x57\x0f\xb4\x8c\x0e\xee\xe3\x1c\xbb\xb2\x2e\x93\x88\x20\x90\x1e\xdd\x97\xac\xac\xbb\x3d\x05\x14\xe8\x43\x7d\xf7\x58\xb1\x28\x79\x3a\x9b\x9d\x65\x8b\x12\x05\x1a\x78\xfe\x5a\x5d\xee\xbc\x68\xc3\x36\x65\xf9\xe8\xa8\x88\x02\xcf\x10\xe3\x14\x33\x4e\x9c\x21\x33\x11\x9e\x0e\x34\x8d\xfe\xf8\x9c\x5e\xda\xa3\x66\xe9\xe4\x88\x6b\xf2\x01\x25\x82\x3a\xf3\x0d\x56\xe2\xe5\x33\xdf\xc2\xab\xe5\x21\x2d\xc2\x76\xd6\xff\x4d\x9e\xff\x83\x57\x37\x3d\xe5\x3a\xbd\xe9\x0a\x64\xd9\xd4\x84\x6c\xfc\xe9\x19\xd2\x20\xca\xa6\x77\x0a\x87\xf6\x83\x63\xbe\x43\x04\xec\xa5\xd3\xdb\x40\x3f\x2e\x5b\xa6\x28\x74\xc0\x23\x5b\x44\x87\x0e\xd8\x4b\xc7\x37\xdd\x5d\xac\xdb\x9c\x13\xe7\xb8\x3c\x92\xd1\x9a\xc3\x5b\xa3\x6d\xea\x8d\x47\x8b\xc1\xca\x43\xe4\xc1\x03\x0e\xe3\xe9\x0e\xfb\x61\x47\x1a\xd8\x2b\x4c\x4e\x0e\x1e\x8e\xb2\x8b\x89\x22\x10\x54\xdd\x75\x38\xbf\xfe\x5e\x78\x6f\xd4\x4b\xb3\x62\x83\x8c\xc5\xf1\xad\x5e\xd2\xbb\x8f\x39\x16\xd3\x8b\x7a\x89\xca\x36\xbd\x20\xfd\x7d\xaa\x97\xa8\xac\xfc\xf7\x9b\xfc\xf7\x59\xd7\x58\xe4\xb7\xa7\xd0\xf8\x7c\x08\x3f\x8c\xa7\x59\xe9\x6f\x1f\xd3\x08\x0a\x90\xea\x25\xea\x57\x6b\x1d\xfc\x2e\xea\x25\xfd\x5d\xad\x5d\x22\x23\x9c\xfc\xca\xb7\x83\x01\x9c\x02\xd5\x48\xbd\xd8\x0a\x82\x44\xf5\x07\x5f\x84\x17\x15\xaa\x46\x2b\xc9\xaa\xd3\xd5\x4f\xaa\xef\x42\x4f\xa3\xe9\xfd\x50\xef\xcd\x82\x1c\xeb\x2a\x41\xee\xb6\x83\x01\x6c\xb2\xd2\xa7\x9a\x58\x0c\x9d\x96\xfe\x14\xa2\x3b\x3a\xe2\x2f\xfb\x4b\x90\x97\xfe\xe0\x21\x7e\x33\xaf\xe1\xd0\x50\x93\x44\xc2\x0e\x0d\x8b\xc3\x51\xc5\x6f\xf6\x80\xae\x87\x7e\x26\xb1\xbe\x6d\x0f\xe4\xd6\x5f\x65\x60\xe8\x2c\xf4\x1b\xff\xfe\xac\x4b\xc1\x65\x8f\x06\x79\xfb\xd7\xa4\x45\xd5\x46\x06\xab\x6b\x58\x9a\x14\x5b\x13\x90\x70\xfe\xe0\x6f\xe1\x87\xf1\x74\x93\xfb\xe1\x65\x73\x02\xb9\xf5\x57\xf9\x56\xda\xad\xff\x14\x3a\x78\x7d\x6f\xed\x4b\x4e\xb7\x9a\xb4\x1e\xca\xaf\xff\x14\xce\x36\x71\x3c\xea\xa6\xb6\x89\x0b\x7b\x82\xaa\x2b\x84\xd5\xcd\xca\x5d\xd4\x94\xde\xb4\xe1\x00\xa9\xee\x53\xcd\x5c\x03\x39\xd7\xfd\x26\xd7\x7d\xb6\x62\xe8\x56\xb3\x1c\xb3\x6a\xe6\x84\xe1\x68\x02\x9b\xec\xf1\xa9\x92\x57\xf5\x80\xdd\xf8\x20\x32\x67\xf9\x35\x3c\x28\x8e\x4d\x35\xdf\xff\x41\x9a\xe7\xbd\x86\x39\x37\x1e\xef\xcf\xbf\x35\xe1\x3f\xe1\xa1\x85\xf6\x06\x3e\x56\xc9\xed\xbf\xe6\xdb\x78\x77\x2a\x16\xa2\xc1\x59\x6e\xd9\x85\x01\x3f\xff\x54\x65\x53\xb9\x86\x57\x1c\xdc\xfe\xad\xc4\x86\x49\xc1\xc3\x7f\x95\xd7\xd4\x1a\x96\x76\x5e\xf8\x2b\x29\xf1\xf7\xf2\x0b\xbf\xfc\xfe\xab\xee\x2f\x9c\x5b\x7e\xcb\xef\xbf\xea\xa2\xc2\xc9\xe5\x37\x01\x00\xf2\x10\x9f\xd8\xb5\x01\x47\xff\xf3\x39\xbd\x54\x9a\xb9\x2d\xbf\xff\xc1\xe1\xc9\x7e\xff\xa7\x40\xed\x52\x02\xd3\xec\x36\x35\x61\x52\xb5\x3e\x12\x2e\xe2\xfd\x57\xf9\x05\xad\x69\x76\x9b\x90\xf8\x0f\x5d\x8c\x8e\x4e\x6a\xcb\x60\x47\x88\x85\xc3\x43\xcd\x5a\xd4\xed\xf0\xb0\x70\x78\x20\x00\xd6\x81\x44\x79\x0e\x96\x55\x8e\x38\x6b\x79\x35\x5b\x30\x73\x11\x57\x2d\x6b\xaa\xa5\x56\xab\xd0\xd5\xe8\x46\xa2\x96\x47\xf8\x61\xfc\x04\xdf\x84\x5f\xc6\xef\xa8\x66\x08\xad\x89\xe2\xa0\x58\x8b\x14\xc6\x32\x1f\xc4\x89\xb1\x5c\xd2\x77\x4a\xe0\xb6\x49\x5a\x5f\x2e\xed\x0c\xfc\x16\xae\xe0\x01\x55\x76\xf8\x4e\x56\x7f\x0a\x29\x3e\xaf\x42\x67\xa3\x69\x54\x9b\xac\x6d\xf5\xc2\x29\xb4\xea\x82\xc1\x59\xec\x37\xe9\xea\x0f\x9e\x09\xd9\x66\x83\x38\x8e\x16\x5d\xc4\x2f\x3b\x17\x10\x5d\x20\xd5\x22\xed\x62\x27\x82\xc5\x21\xb4\x16\xcd\xc8\xf6\x8a\xb8\x45\x79\x91\xd8\xaf\xd7\xa4\xc3\x3f\xf8\x21\xfc\x36\xfe\x8d\x66\x55\xbd\x6e\xa6\x56\x3c\x5e\x97\x2b\xe9\x6b\x2f\x94\x64\x22\xa8\x32\x70\x5d\xdb\xa2\xc3\x19\xb7\xde\xda\xa6\xd8\xe9\x60\x11\xf2\xaf\xde\x5a\x3a\x5e\x2f\x88\x11\xfb\x4f\x91\x34\xb6\x83\x10\x9c\x02\xd5\xdf\xfe\x7c\x18\xbf\xc0\x67\xe1\x45\x04\x0e\xa7\xf5\xe6\x7d\xd2\x79\xee\x37\x79\xee\xcb\xa5\x85\xc9\xbe\x0b\x0b\x1f\x85\x7a\x73\xdb\xbb\x5e\xab\xcc\x97\xc1\x72\xd8\x5b\xaf\x07\xcb\x23\x75\x95\x5d\xe7\x52\x86\xb8\x53\xa0\x97\x52\xb1\x7e\x8d\x56\x08\x85\x2a\xbb\x4e\x27\xcc\x3f\x85\x48\x8a\x74\x4b\x6d\xfd\x7c\x76\xc1\xe9\xa0\xde\xd2\x4f\x76\x3a\x58\xf1\xe6\x9b\xea\xad\x4d\xd6\xcf\x5a\x91\x40\x82\x55\xc6\x8e\xeb\x67\x29\xe1\xf5\xb6\x92\x8c\x71\x3b\x14\xc3\x56\x28\x86\x2a\xf3\x3a\x87\x62\x38\x85\x18\x97\x6c\xcb\xd6\x67\x8e\x25\x6f\x5a\x95\x11\xd9\xfa\xac\x41\x22\x81\x9a\x22\x8a\x6c\x87\x4a\x38\x05\xaa\xd1\x71\xd2\x67\x67\xe5\xa7\xaf\x32\x59\x5a\x7e\x47\x55\x22\xfa\x2a\x73\x3c\x27\xa2\xdf\x24\xa2\x2f\x64\xb0\x3a\x50\x35\x3a\xa8\xf3\x48\x7e\x3e\x6b\xe3\x4f\xa3\x8a\x4d\xd3\x4b\x9e\x79\x0a\x74\x27\xf4\xe8\xeb\xcc\xf2\x6f\x8f\x87\xd3\x83\x6f\xe0\xd1\xaf\xa7\x40\x37\x43\x20\x0e\x38\x84\x0f\xaf\x89\x8a\xb3\xf4\x01\x7f\xc2\xc3\x0d\x64\xce\x3c\xe0\x6d\x7c\xf0\x5a\x6c\x5e\x0e\x54\x8d\x8e\xea\xb1\x3a\x3b\xa0\xab\x67\x58\x98\x38\xbc\x0e\x24\xf1\x2a\x90\x44\xc5\x66\xe1\x75\x20\x89\x57\x19\xe7\x2b\xc6\x09\xaf\x33\xce\xbf\x64\x9c\x2f\x3c\x7c\x1d\x68\x1a\x4d\x35\x37\xbd\x54\x78\xbd\x97\x14\xf3\xa9\xe2\x88\xfc\x76\xbd\x69\xbe\x8a\x47\x51\xb1\x2b\x78\x1d\x8f\xe2\x55\xdc\x89\x5a\x1f\xa8\xa6\x13\xee\x29\xd0\xfd\xaa\xef\x51\x23\xa7\x10\x6a\x24\x96\xc8\x03\xfd\x8c\xa6\x9a\xa6\xee\x2c\x57\x23\x62\x36\x55\xbf\xdc\x1d\x51\xa7\x6b\x58\xcb\xd5\xaf\xa8\x3e\x24\xe8\x75\x46\xfb\x57\x61\x2d\x6a\xd5\xdc\xe6\xae\xb9\x25\x62\x5e\xad\x83\x6a\xf2\xbc\x8d\x0f\xa2\xa9\x37\x8a\x3b\xf1\x2a\xb7\x7c\xe5\x95\xf2\xed\x7a\xd4\x7c\x15\x8f\xa2\x92\xdc\xe1\xed\x4a\xea\xf6\x12\x52\xe2\xe0\x99\x93\x6c\x56\xc8\xb0\x42\x33\x7a\x1a\xfd\x91\xdb\x09\xe2\x14\x4f\x6d\x61\x41\xe9\x45\xe8\x6c\x34\xb5\xdf\xff\x41\x14\xf7\xb7\x17\xf3\x39\x4f\xa4\xb5\xdd\x55\xf8\x6e\x7c\xac\x72\xdd\xe8\x69\x34\x9d\xba\xe9\xac\x92\xcc\xbf\x84\x96\x28\x44\xfe\x7a\xc9\x2d\x4f\x21\x86\x26\x82\x2a\xce\xde\x4b\x64\x89\x54\x9b\xb8\x5f\xe9\xe4\x5e\x02\x4d\x94\x6b\x68\x68\xe3\x67\x34\x8d\x56\xe6\xb1\x98\xab\x38\x5c\xd7\x26\xae\xd2\xe1\xfa\x55\xc8\x88\x4a\x1a\x8d\x03\xba\x7a\xb8\x6d\x18\xfd\x09\x8d\x26\x91\x44\xcb\x49\xe4\x14\xa0\x8c\xa6\xbd\x58\x14\x8b\xe6\x45\x9a\xe4\xf6\xbc\x90\xa9\xbe\x36\xd1\xe0\xee\xea\x3d\x6e\x16\xb5\x5f\xfa\x7e\xf9\xfb\x68\x96\x77\xd7\xd7\x51\x17\x5e\x65\x81\xaf\x5c\xee\xbc\xfd\x36\x8f\xe3\x95\x51\xc9\x66\xf9\x12\x6d\x81\x02\xd5\xdf\x54\xff\xb8\x3b\x11\x67\xa1\xa4\x6b\x08\x5d\x8c\x3e\x33\x42\x3c\xae\x03\x55\xa3\x17\xb5\x34\xe1\xb7\xf1\x6f\x7c\x7e\x0b\xfd\x33\x9a\x46\x1f\x66\xea\xb1\xbe\xe0\x7d\xb5\x72\x73\xf9\xf6\xc7\xfa\x42\x07\xf4\xfe\x74\xe1\x5d\xfd\xa0\x7a\xa1\xa7\x68\x80\x0b\x44\xed\x9a\xc0\xc7\x92\xa5\xf3\x39\x37\x53\x07\x94\x64\xf1\x5e\x5a\x71\xdb\x7d\x9d\xbf\xfd\x55\xbc\x84\xda\x07\xa3\xad\xa6\x0d\xde\x0b\x95\x4b\xa2\x03\x3e\xc6\xd3\xee\xe8\xc2\xab\x5d\xfc\x08\xea\xd0\x14\x2a\x17\xdc\x29\x04\x8d\x73\x13\x3a\x1b\x1d\xd5\x0f\x29\x86\x6a\xbe\x24\x00\x42\x1d\x52\x0c\xd5\xc3\xd2\x89\x7b\x48\x31\x54\x73\x48\x85\x43\xb4\x16\x54\xaf\x11\xe1\x5e\x90\xea\x90\x62\xa8\x1e\xad\x0e\xe8\xe3\x86\x3a\xcd\x4b\x1c\x2e\x00\x75\x48\xc4\x9b\x95\x35\x46\xfa\x95\x63\xd4\x01\x1f\xe3\xf9\x7e\xe8\xfb\xf5\xf7\x3d\xf5\x4b\x50\xba\xa9\x19\x81\xf0\x52\x63\x8b\xfb\x92\xf2\x9c\xc2\x17\x78\x31\x4f\x37\x93\x60\xbb\xde\x88\x92\x7a\xc0\x6d\x7c\x30\xc3\xad\xcf\xbd\x18\x70\x62\x6d\x97\x58\xb3\x7b\x31\x20\xd1\x5a\xbb\xa4\x8a\xba\xbb\x4f\x20\xfa\x86\x73\xe7\x01\x5d\xfd\xa2\x7a\xa8\x36\xac\x37\x31\x52\x6f\xf8\x70\xbe\x76\xcf\x7f\x95\xe3\xbc\x5d\xe2\x41\x9d\x49\xdf\x4e\xcc\xb9\x66\xcd\x38\x3c\xb9\x1c\xf7\x9a\x95\xd7\x34\x75\x26\x72\x28\x89\x98\x6e\x96\x53\x60\x4b\x22\xc2\x34\x0b\x62\xff\xdd\x88\x45\xf7\xe2\xef\x4e\xe1\x03\xaf\x7a\xac\x78\xe3\x18\x58\xb8\xec\x78\x9d\x6d\xfc\x14\xee\xf8\xbc\xa8\x1a\x6b\x5e\x0c\xbd\x5b\x2a\xae\xe6\x35\x9e\xea\xa5\x45\xa6\x55\x2c\x06\xe0\xcd\x93\x32\x3d\x5a\x0e\x7c\x2d\x69\x52\xa6\x25\x71\x3a\x15\x99\xbe\xb7\x56\xc3\xa4\xbb\x25\x29\x00\x99\x74\x9f\xc2\x59\x66\x92\x88\x3c\xbd\xf6\xf1\x50\xd9\x52\x75\x35\x7f\xd5\xff\xc0\x43\xfc\x65\xad\xb6\x44\x35\xb1\xf2\xf2\x2a\x16\xf1\xde\x4b\x92\xbe\x58\xd6\x6a\xd8\x6e\xb7\x24\xd5\xbe\xac\xa6\x78\x91\x6c\x49\x6b\xeb\xb2\xa4\x2c\x51\x4d\x73\xbe\x4c\xb5\x25\xea\x74\x35\xeb\x0d\x43\x9c\x57\x4b\x6a\x46\x57\xa3\x21\xb2\x04\x6b\x59\xce\x17\x72\xae\x05\x65\x99\x66\x9c\x4b\x5b\xbe\xfc\xb9\x7b\x09\x2d\x09\xd3\xf4\xf6\x65\xf9\xe4\x04\xda\xb2\x74\xfb\x36\x07\x72\x02\x4d\xfd\x11\xba\x1a\x1d\x83\xca\xe2\xc0\x6d\xe2\x84\x3f\x7b\xf1\x98\xb6\xa5\x96\xe7\xce\x96\xa5\xec\x36\x6f\x1d\xaf\xdc\xd5\x5b\x96\x96\xda\x56\xed\x1b\xd5\x3e\xd4\xea\xd0\x62\xbb\x51\x99\x5a\x83\xb7\x55\x66\x78\xb3\x9f\x5a\x8c\x77\x27\x27\x63\xbd\xd5\xc9\xd9\x8d\x3f\x13\x9b\xa5\x90\xe5\xc5\x7e\x0a\x74\xe6\xce\xc2\xbf\xc6\x43\x1a\xb1\xf1\xb6\x0e\xd9\x22\xa5\xd8\x78\x9b\x2d\xe3\x84\x5a\xb2\x36\xf3\xdb\x6b\x6d\x18\x5b\x97\x7c\xfd\x07\x5e\x84\xe7\xe3\x9f\xff\x8b\xc6\xa5\x02\x5e\xcf\x0b\xb6\xd8\x2d\x6b\xb3\xfc\x7a\x8f\x1e\x46\xd9\x05\x63\x9e\xd7\x1e\xf7\xaf\x7c\xdc\x5b\x96\xa2\x7a\xad\xd7\x5e\x3a\x95\xb2\xd0\x3f\xa3\xa3\xd5\x92\x68\xf5\xe7\xd5\x00\x1f\xf7\x86\xa1\xc5\x6b\x1f\xf7\x57\xbe\xec\xad\x88\x1d\x7e\x66\x87\x38\x5f\x96\x9c\xaa\xd0\x9a\xc7\x30\x5b\x2e\x59\x2b\xf7\xcf\x7a\xe7\x87\x04\x95\x6c\x7c\x37\x3e\x08\x9a\x93\xd0\xd3\x68\x1a\x2d\xb7\xf0\xaf\xf1\x74\x5e\xc7\x9a\x9f\xd5\x11\x67\xd9\x56\x74\xac\xf9\x99\x1d\x7e\xb0\x83\x94\xe3\xcf\x4b\x07\x86\xc8\xad\x48\xe7\xff\x2c\x41\x3c\x13\xb7\x22\x2d\xf5\xb3\x04\x61\xa0\xdc\x8a\x66\xe4\x67\xb5\xf3\x13\x2d\x75\x6c\xfa\x3c\x83\x9f\x68\x59\x8b\xf0\xb7\xf1\x31\x83\x52\xbe\x9f\x67\x10\xcb\xe5\x56\xa4\xed\x3e\x6b\xa9\xb0\x5c\x2e\x59\x44\xf8\xbc\x7e\x12\xb4\xb0\x15\x29\xb5\xcf\x92\xf8\x89\xc6\xd2\x5e\x9f\xb5\x54\x9c\xbc\x53\x2b\x5d\xcd\x5a\x1b\x61\x89\xdc\x8a\x76\x41\x9f\xd7\xdb\x30\x49\x2e\x16\xad\xcf\x44\xe3\xc0\xdd\x8a\x96\xf9\xcf\xb2\x82\xff\x7f\xbb\x25\x73\x9f\x89\xc9\x89\xbb\xdd\xda\xc8\x7e\xe6\xcb\x0f\xbe\x44\xe4\x86\x0c\x9a\x5f\xf9\xf9\x37\xee\x7c\x5e\xfb\xf9\xbf\x23\x5e\xa7\x0f\x7e\x80\xd7\xe6\x5f\x8e\xf5\x0d\x7f\xe1\x77\xc8\x98\xf7\x14\xe8\x0e\xba\x7d\x28\xef\xdb\x3b\xfe\x6f\xc6\xae\x1e\xc9\x72\x9b\x07\xe6\xdf\x29\xde\x0d\xbe\x27\x91\x12\x80\x64\x13\xc7\xf6\x1d\x44\x51\xac\xda\x60\x77\xa7\xc6\xbb\xf7\x77\x01\xdd\x1d\xd8\x4e\x1c\x4c\x15\xd1\xa5\x21\xf9\x48\x10\xfc\x6d\x00\x2e\x11\x0d\xc7\x23\x29\x4e\xe1\xc8\x27\x98\xcf\xa5\x7c\x60\xc3\x71\x3c\x32\x83\x81\xdc\x32\x71\x03\x3f\x80\xd3\x58\x07\xde\xe1\xda\x81\x55\x0d\x98\xf3\x48\x54\x27\x42\x75\xc4\xa0\xcf\x44\x55\x07\x6e\x05\x53\x54\x75\x30\x93\x81\xf5\x39\x63\xe7\x4c\xc6\x88\xe3\x06\x22\x60\x8a\x2e\xbc\xb2\x87\xa6\x05\x1f\xe2\x4e\x12\xf1\x0d\x87\x2f\x53\x44\xfc\x19\x75\x09\xbb\x19\xa8\x7a\x29\xb2\x3a\xd8\x54\x1a\x38\x92\x53\xc4\xfa\x4c\xa0\x9a\xd0\x9d\xe0\x8b\xd8\xc9\x40\xe1\x76\x60\xa5\xac\x40\xe1\x99\x40\xb9\xb0\xe3\xd1\x54\x2e\x76\x76\x86\xf7\x20\x33\x9a\x5a\xbf\xf6\x72\x89\xf3\xfb\x4b\xe5\x62\x40\xe3\x3d\x48\x8a\x21\x1c\xf9\x6c\xfa\x5e\xf9\x40\x39\xc1\xd6\x9b\xc1\xfb\xd1\x49\xe6\xbe\xc1\x0d\xdc\x54\xec\xef\x4c\x5c\x85\x37\x7d\xff\x08\x47\x3e\x38\x4f\x11\xa3\x3f\x13\x0d\xf8\x41\xfc\x10\x8e\xfc\xa9\x85\x5d\x5a\x8b\x0b\x55\x03\xdb\x63\x8a\xea\x3f\x49\xe9\x37\x1e\xa8\x28\xb6\xf8\x04\xb7\xbf\xe1\x74\x3e\x25\xf6\x2e\x7c\xe7\xd9\x79\x10\xe7\x18\x8a\x8e\x31\x84\x75\x87\x28\xf7\x93\x94\x7b\xc3\x73\x96\x19\x87\xc6\xc4\xc1\xda\x63\xa4\xc7\xa1\xda\x1f\xac\x25\x7b\x51\xbb\x3b\x04\xe2\x6e\x88\x6a\x33\x83\xaf\x64\x27\xf8\xef\x9b\x81\xc2\x96\xa2\x0b\x2f\x1d\x54\x2e\x34\xe2\x8c\xc3\x6d\xc6\x3e\x3c\xd4\xe7\xb8\x7d\x35\xb8\xbb\x9f\x71\x68\xc4\x1d\x98\xeb\x8d\x23\xe8\xe0\x5c\x4f\xe2\xbb\x81\xac\x96\xa2\x8a\x85\x71\xe7\xc0\x65\x04\xb7\x09\xa6\xfb\x66\xc6\x91\xc5\x08\x6e\x13\xc4\xf7\xd6\x54\xf9\xa1\xdc\xa1\x21\x08\xf8\x9a\x62\x08\x47\xed\xa9\x21\xda\x3b\x92\xf9\x6e\x46\x0d\xd1\xde\x91\xcc\x77\x43\x6c\xcd\x14\xbb\x70\x14\x6b\x84\x4d\x70\x14\x1c\x84\x2f\xc1\xc8\x1d\xeb\xed\x38\x35\xae\x4e\xb6\x4d\x67\x36\x6a\x9b\x93\xb5\xc1\xd4\x21\xf2\x78\x26\xf0\xab\xb0\xeb\x08\x93\xb9\x30\x14\xcb\x26\x36\x15\x8b\x3b\x59\xe3\x59\x44\x98\xd4\x15\x77\xb2\xe6\x6c\x34\x46\x53\x9b\x64\x8f\x9b\xf3\x57\x99\x34\xa1\xf6\x90\x74\xa7\x9b\x12\xbb\x04\xbe\xea\xcc\x55\x2c\x67\xa0\xa8\x07\xb0\xad\x71\x70\x9a\x7e\x14\x6e\x7c\xcd\x39\x98\x4d\x83\x1f\x37\xbe\xe6\xfb\xfe\x1f\xd6\x59\x0a\x10\x3e\x49\x3a\x37\xc4\x3d\x4c\x51\xa5\x43\x21\x68\x51\x4d\x96\x19\xdb\x59\x73\x9a\x4e\x6d\x67\xc1\x2e\xa7\x8b\xdf\x29\x76\x79\x26\x90\x3b\x2d\xaa\x6b\x6c\xe1\x3e\xd8\x9c\x16\xc0\x65\x19\xb8\xfb\x75\x5a\x00\x86\x25\x9f\xe0\x93\xb7\xd6\x04\x37\xc1\x55\x49\xac\x7f\x83\x41\xd8\x26\xe8\xe4\x9b\xf1\xa0\x45\x34\xf2\x4c\x20\x77\xec\xfb\xc2\x35\xb6\x9c\x3d\x70\xb2\x36\x9a\xcd\x1c\xb3\x99\x9f\x2c\x56\x83\x08\x41\xde\x8c\x27\x2a\xe1\x9a\xcd\x2a\xc8\x5b\x6b\x9c\xbc\x5d\x6d\xc6\xbd\xb5\xbb\x3e\x57\x75\xd8\x96\xd8\x63\x80\x27\x8e\x44\x07\xee\xc4\x4f\xe1\x28\x36\x76\xe2\x2e\x1c\xc5\x06\x61\xd6\xb2\x18\xe2\xf9\x39\xc6\x5c\xc8\x50\xe1\x95\xae\x39\x4d\x43\xc8\xca\x06\x1a\x13\xcb\x3b\x31\xc6\x33\x51\xa5\xf2\x18\x27\xe8\x2a\x6f\x92\x49\x6e\x41\xed\xd7\x56\x3f\xca\x37\x5e\xe2\x2c\x56\x93\x28\x7c\xdf\x59\x70\x72\x0a\x2d\x0d\xca\x09\x5e\xe3\x2a\x51\x8c\xf1\x4c\x54\x2d\x83\xea\x4f\x97\x78\x93\x14\x70\x0b\xea\xab\x4e\x0c\x02\x71\xdb\x2c\x68\x61\x2e\x35\x1a\x1c\xc3\x5b\x50\x03\x2f\x59\xf1\x72\x0c\xdf\xda\xa9\x6c\x1e\xc1\xc8\xbe\x33\x1b\x99\x18\xdc\x10\x1b\xa2\x89\xce\xb8\x34\x75\x5f\x58\x80\x05\xce\xfa\xe3\xe2\xd6\x2c\xe0\xe4\xce\xc0\x6b\x4a\x31\x84\xa3\x3a\x34\x49\x3a\x02\x20\x09\xdc\xc2\x58\x4d\x4d\xd1\xb5\xe7\x4f\xbc\x11\x57\xf5\xd9\x0c\x5c\x7a\x0c\x35\x03\x5e\x19\x5b\x70\xf2\x1b\x32\xb4\x03\x86\x16\x77\x00\xa2\x75\x67\x02\xd5\xe4\x64\x36\x34\x0e\x07\x5b\x2d\x94\x3d\xab\x39\xa0\x53\x08\x58\x90\xe2\x2e\x1c\xc5\x52\xa7\x74\x36\x10\x70\x55\xef\x6f\x2a\xcf\xd0\xec\x87\x67\xc9\xfe\xc6\xf2\x37\x86\x46\x22\xce\x06\x1c\x37\xb3\x29\x2a\x9f\x6a\x4e\x7f\x73\xfd\x3b\xd4\x9c\x38\x1c\x70\x50\xa7\xa6\x28\xd9\x99\xe8\x85\x53\x7b\x86\xe6\x33\x84\xa4\xf3\x37\xcd\xda\x50\x73\x96\x13\xbc\xd6\xd4\x0c\x5a\x32\xe0\x70\xc0\xdf\x9c\xce\x6e\x8d\x50\xdc\x43\xfb\x9b\xf6\xe8\x96\x59\xab\x0b\xe6\xc4\xa1\x25\xb7\x9a\x07\xaf\x9b\x1d\x9e\xd6\x52\x74\xe1\x35\x72\xd9\x9a\xb7\x5a\x07\xa7\x03\xce\x7b\xae\xb8\x35\xb4\x6e\xb6\xda\xc1\xec\xd5\x6a\x37\x5b\x87\xca\xa6\xfd\x3e\x68\xd3\x8d\x7b\x12\x04\xc2\xaf\xc4\x40\xed\xa9\x6b\xb7\x4c\xfe\x5d\x26\xbf\x73\x40\xdf\x6a\x33\x6c\xf7\xfd\xcd\xbd\xc1\xad\x35\xc0\xcd\xb6\x34\xd6\x46\x66\xed\x66\xa3\xe1\x64\x46\x21\xf1\x27\x59\xd4\xfe\xc6\xa5\xa1\x58\xd4\x99\x80\x8e\xd0\xdc\x4d\x4d\xbb\x78\x6c\xed\x6f\xae\xcb\xa6\xe6\x82\x7a\x75\xdd\x3a\x55\x64\xaa\x8d\x71\xfd\xed\xbc\xa8\x50\x48\xfc\x09\x9e\x75\xd3\xce\x69\xaa\x8d\xc1\xae\xf6\x8d\x6b\xee\xa9\xb5\x75\xd1\xac\x5b\xa7\x95\x9a\x9a\x75\xcb\x55\x5f\x7e\xce\x4a\xca\xaa\xc1\x45\x9f\xf3\x6a\x20\xa6\xc6\x33\xae\xbf\x7d\x53\xb1\x52\x4c\xdc\x73\xfb\x46\x85\x9d\x32\x6b\x38\xa7\xf0\x8d\x8b\x03\x9d\x53\x20\x82\x7e\xeb\xb4\x76\x3a\xa7\x60\x04\x7d\xdf\x70\x28\x0e\xb2\x35\x12\x06\x3c\x88\xbb\xf0\x6a\x04\x2e\xe3\x1e\x35\x31\x8e\x2f\x9c\x07\x9b\xf1\x68\x98\x23\x2a\x9f\x6f\x9c\x58\x1f\x59\x41\x1c\x54\xf8\x46\x63\xaa\x83\x0a\x84\xd0\x6f\x1d\x5b\xf7\x78\xb4\xb2\x41\x10\x3f\xdf\x6a\x66\x5a\x17\xd7\xf9\xeb\xaa\x75\x7e\xc7\x56\x3c\xa5\x43\xb0\x25\x5c\x26\x2d\x25\x17\x3c\x0b\x3e\x09\x3f\x84\xb3\xc7\xe8\x2e\x2c\xa5\x26\xb8\x7f\x79\x75\xb8\x82\x4b\x49\x79\x67\x3f\x75\x70\x41\x52\xba\x05\x67\xde\xd8\x3e\xaf\x8b\xb7\x4c\x99\xd8\xbe\xbc\xfa\x51\x9d\x97\xd2\x2e\xd8\x0a\xfe\xc7\x49\x56\xdf\xfe\xb5\xc0\xca\x6f\x55\xfd\x5c\x06\xd0\x51\xd1\xba\x78\x03\xb5\xc0\xcd\xeb\x47\xf5\xc8\x52\x58\xe9\x85\xb0\xd2\x1d\x3e\xe9\x53\xea\x82\x8f\x84\x6b\xe1\x9b\xd2\x29\xd8\x0b\xd6\xd7\x43\xf0\x93\xf0\x79\x12\x5e\x84\x73\x04\x75\x38\x14\x59\xa2\xf7\x2d\xf0\xf9\xe8\x57\x26\x25\xe5\x9d\x7d\xda\x4f\xb6\x18\x59\x76\x0b\x31\x9d\x3b\x14\x32\x25\x17\x7c\x15\xac\xaf\x55\x93\x51\xed\xcb\x9f\x73\xea\xe7\xd4\xb2\xbf\x77\xea\x05\x97\xfd\x0b\x11\x9a\x3b\x7c\x7e\x2d\x45\x62\x5e\x57\xc5\x79\xa2\x0b\xaf\x94\x76\xc1\xd5\xd3\xa7\x13\x3e\x05\x57\x05\xf9\x2b\x4f\x8c\xf7\x4c\x94\x02\x98\x32\xb9\x05\x57\x05\x4d\x99\xa8\xc8\x52\x2e\x38\xa3\x4a\x49\x79\xa7\x15\xe8\xf0\x2e\xb5\x10\x21\x1a\x89\xca\x24\xa0\x2e\x7c\xfb\x99\x89\xac\x20\x02\x38\xa4\xa4\x4c\x46\x75\xda\x9b\x45\x0e\x55\x30\x87\x7c\x07\x73\x65\x89\xff\xb7\xc0\xff\xa3\x93\xa7\x25\xfe\xdf\x02\xff\x8f\x5e\x9b\x96\xe2\x3e\x2f\x10\xfb\xfa\xc1\x7a\x93\xce\xb7\x10\xe8\x99\x8e\x8c\x52\xea\x82\xcf\x82\x0f\xc2\x26\xb8\x34\x36\xd0\x3b\xf4\xa9\x9d\x89\x3d\x15\x62\x67\x26\x97\xbe\xbe\x4a\x4f\xda\x4e\x78\x08\xce\x9f\x83\x98\xc1\x29\x71\xd4\x96\x67\x6d\x3a\xf6\x59\x97\xa9\xa9\x6a\xb7\xd1\xcf\xde\x09\x2b\xef\x51\x79\xd7\x3a\x7e\x0d\x4e\xbf\x6b\xd4\xcc\xb3\xd7\x35\x47\x0a\x53\xe8\xaa\xa3\xb3\x42\x39\xeb\x2c\xbc\x5f\xc2\x36\x66\xe9\x99\xcd\xc2\x33\x9b\xad\xb7\xbf\x0f\xe4\x14\xbe\x5d\x1f\xff\xfb\xed\xf7\xeb\xe3\x8f\xeb\xdb\xf3\xba\x7f\x7d\x7e\x3e\xdf\x7f\xce\xaf\xf7\xcf\xd7\xff\x13\x7d\xcd\x67\x7d\xfd\xfe\x7c\x3e\x7f\xfe\xf8\xf5\x79\x3f\xaf\x8f\x1f\x1f\xf9\x5f\xf5\xf7\x57\x00\x00\x00\xff\xff\x27\xed\x3a\x18\xe9\x30\x02\x00"); +var _agf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xd2\xcd\x8e\x9b\x30\x10\x07\xf0\xbb\x9f\x62\x8e\xdb\xc3\x16\x8f\x0d\xdb\x44\x8a\x90\x2a\x72\x28\x87\x4d\xab\xd2\x6c\x2b\x55\x3d\x10\x3c\x8e\x2c\x15\x83\x0c\x1c\xf2\xf6\xd5\x0c\x94\xaa\x87\xe8\x1f\x7e\xfe\x18\x3c\x26\xab\xea\x73\x1d\xc3\x0c\xd9\x97\x34\x74\x0d\xcd\xe0\x43\x74\x89\xa6\x61\x49\x1d\xc1\x8d\xee\x21\x2a\x85\x06\x5c\xe8\xe6\xbf\x8f\x12\x5d\xdf\x8e\x4a\x65\xd7\x18\xaa\x4b\xf3\x7c\xad\x1a\xf3\xfc\x09\x96\x89\x36\xaf\xea\x73\xf3\x98\x66\xea\xeb\xe8\x07\xb0\xeb\x7a\xb7\x8c\xdb\x1e\x00\xd9\x57\xba\x87\x69\x4e\x0f\x78\xfa\xe8\x86\x1b\xbd\x03\x47\x9e\xfd\x73\x72\x94\x42\xbc\xc3\x53\x75\x69\x70\xe7\x66\x19\xc7\xdf\xd4\x53\x9c\x79\x37\xf2\x8a\xa2\x93\x54\x59\xf5\xda\x8e\x97\xb6\x27\xf8\xef\x6d\xde\x64\x54\x06\xdf\x28\x4d\x61\x88\x80\xe6\xbd\xd6\x2f\xff\xfc\xdb\x63\x24\xc0\x6d\x97\x1f\xd7\xfa\x0c\x3f\x11\x50\x83\x29\xec\xd1\xfe\xda\xfc\xfb\xeb\xe0\xf6\x59\x68\xd7\x03\x74\xc1\xa5\x36\xde\x49\x9d\x8c\x46\x5b\xc2\x16\x68\xb4\x48\xbe\x4a\xce\x62\x58\x4c\x21\xc2\x81\xfa\xa8\x4e\x56\xeb\x43\x09\x1c\xc7\x12\xb0\xd0\x22\xed\x2a\xb7\x12\x30\x7f\x11\xe9\x56\x71\x3c\x27\x17\xa1\x55\x3c\xcb\x81\x05\xb5\x08\x22\xaf\x32\x22\xf9\x2a\x5c\xcb\x1e\xd4\xc9\x53\xee\x4b\xd8\x02\xed\x87\xbc\x50\x27\xef\xa5\xbe\xf7\x52\xdf\x6a\x96\xe2\x26\xc2\x81\x36\x17\x71\xab\x70\x7d\x5b\x70\xc7\xf7\x73\xf3\x7f\xbe\xe9\xbd\xf7\xdd\x92\x12\xc5\x59\xee\x59\x9a\xcb\x0d\x0b\x91\xf6\x6f\x69\x1c\x46\x5e\x25\xbf\x3f\x01\x00\x00\xff\xff\x94\xb1\x9b\xdd\x77\x02\x00\x00"); +func _fece ()([]byte ,error ){return _gb (_faa ,"CNS-EUC-V")};func _cbd ()(*asset ,error ){_bbcd ,_fbea :=_bfa ();if _fbea !=nil {return nil ,_fbea ;};_fcee :=bindataFileInfo {_ee :"GBK2K-H",_ffd :88688,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492018,0)}; +_cefga :=&asset {_da :_bbcd ,_dc :_fcee };return _cefga ,nil ;};func _dadf ()(*asset ,error ){_gca ,_dbed :=_dfed ();if _dbed !=nil {return nil ,_dbed ;};_dce :=bindataFileInfo {_ee :"CNS2-H",_ffd :2037,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491555,0)}; +_ccefe :=&asset {_da :_gca ,_dc :_dce };return _ccefe ,nil ;};func _cggg ()(*asset ,error ){_gbfb ,_aacag :=_ggcf ();if _aacag !=nil {return nil ,_aacag ;};_edba :=bindataFileInfo {_ee :"UniJISX0213-UTF32-H",_ffd :243117,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493003,0)}; +_gdga :=&asset {_da :_gbfb ,_dc :_edba };return _gdga ,nil ;};var _ffdd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xcd\x8e\x1c\xc7\xd1\xbc\xcf\x53\xf4\x51\xdf\xe1\x33\xeb\xff\x07\x18\x0c\x20\x93\x26\xcc\x83\x24\xc3\xb4\x6c\x03\x86\x0f\x5d\x55\x59\xc4\x02\xe6\xee\x62\xb9\x3c\xe8\xed\x8d\x88\x18\xc9\x96\xe0\x83\xd0\xda\x60\x64\x55\x76\x56\x44\x66\xf5\xbc\x79\xfb\xe1\xdd\x87\xc7\x87\xd7\xe3\xcd\x9f\x5e\x9e\xe6\x47\x7b\x3d\xf6\xc3\xe3\x7a\xb1\x2f\x4f\x5f\x5f\xa6\x1d\xc3\x3e\x3d\x3c\x5e\x2e\x3e\x1c\xeb\x61\xbe\xfe\xfc\x27\x1f\xf3\xf3\xf9\x7c\xb9\x20\xfe\xe3\x4f\x5f\x5e\xed\xf3\x87\xc7\xfd\x74\x44\xf1\xd6\xd7\xe7\x3b\xf7\x38\xde\xfc\xd9\x3e\x3d\x7c\x79\x7d\xf9\xe9\xf8\xe6\xdb\xf5\x34\xec\xff\x8e\x65\x1b\xf8\x0f\x2f\xcb\x5e\x1e\x1e\x3f\x1d\xdf\xbc\xfd\xfe\xa3\xff\x05\xfe\xf8\xf5\xf9\xf9\x5f\xf6\xd9\x1e\x5f\x0f\x47\xcc\x1e\x17\x9f\x97\x37\x6f\xbf\x3b\x9f\xbf\x3f\x3f\xdb\xf1\xe6\xf7\xf9\x79\xfe\xff\x1f\x09\x13\xfd\xab\xbd\x7c\x79\x78\x7a\x3c\xbc\xfb\x9d\x73\xe5\x3f\xf8\x5f\x7e\x7a\xb6\xc3\xdf\xc3\x7f\xfc\xf0\xee\x87\xbd\xbf\xd8\xcf\x0b\xbf\xf9\xfb\x8f\x1f\xde\x1d\xff\xf0\x87\x77\x47\xc8\xb1\x85\x7f\xde\x89\x7f\xfb\xee\x69\xd9\x9d\x74\x89\x7a\x93\xf9\xb4\xec\xcb\xf3\x39\xed\xe5\x7c\xfc\x64\x97\xe3\xb8\x3a\x77\x3b\x8e\xe3\xda\xdc\x0d\x7f\x7d\xeb\x93\xbb\x1d\xd7\xf7\x6f\xdf\xff\x81\x7f\xbf\x7f\xc7\x7f\x7d\xff\xfe\x86\x17\xf8\x4d\xf4\xc5\x6b\xd1\xc7\xa7\xd7\x65\x5b\x18\xd7\xbb\xfa\x7d\x3b\x3c\x22\xfe\xfb\x9f\x2e\xde\xb9\x7b\x16\x0f\xeb\xce\x0e\x60\x57\x03\x1b\x29\x30\x8f\xa3\xf8\xcb\xf5\x54\x22\xa7\xcf\xed\x76\xf4\x0e\x20\x77\x01\xf3\x76\xf8\x58\x53\x24\xb6\x88\x71\x85\xd0\x80\x9c\x9e\xc8\xce\xb7\xc3\x97\x00\x64\x17\x21\xe5\x76\x84\x44\xce\xae\x42\x2a\x90\x4a\xa4\x09\x31\x20\xd8\x2d\x68\xfb\x80\x95\x43\x2e\x40\xb4\x72\x00\x27\x7a\x70\xa2\x38\x11\x9c\xe4\x91\x4f\x14\x27\x8e\x71\x3b\x52\x45\x54\x1c\x4b\xc8\xbe\x1d\xd9\x91\x33\x15\x65\xee\x76\x64\x66\x98\xb4\x4e\xc2\x3a\xb9\x67\x20\x5a\x27\x61\xaf\x92\x91\x73\x16\x27\x83\x53\x33\xa2\xb2\x38\x19\x9c\xe6\x11\x55\xc4\x29\xe0\x74\x87\x0c\x8b\x38\x05\x9c\x5e\x11\x55\xc5\xa9\xac\x98\x2b\x48\xb1\x8a\x54\x41\xf2\x3e\x20\xae\x89\xd5\x54\xd7\x80\xb4\x9b\x58\x6d\xab\xd4\x08\xec\x62\x75\xb2\x62\x73\x80\xc4\xea\x64\x25\x9e\xd1\x29\xd6\x49\x56\x8e\x28\xf7\x29\xd6\x49\x56\x71\x08\x1c\x62\x0d\xb2\x4a\x4f\x80\xc4\x1a\x64\xd5\x8c\xc0\x29\xd6\x24\xab\x65\xe8\x64\x8a\x35\xf7\xba\x1d\xbe\x7b\x04\x4e\x44\xdc\x1f\x21\x45\xb0\x96\x02\x17\x8f\xd3\x39\xac\xb5\x14\xb8\xc8\x72\x15\x49\x98\x58\x46\x96\x2f\x58\xcb\xc4\x32\xb2\x42\x40\xe0\x16\x6b\x93\x15\x03\x96\xdf\x62\xed\xb9\x01\x35\x04\xee\x25\xd6\x3d\x89\x70\xb9\x0e\xc7\xc0\xe1\x18\x98\x6a\x07\xc4\xc0\xe1\xc8\xca\x09\x2c\x09\x7f\x50\xd3\xa1\xc4\x02\x48\x2c\xc9\xb3\xc0\x0d\x43\xfa\x1c\xd2\x67\xed\x11\x90\x58\x14\x68\x68\xd0\xec\x90\x42\x07\x15\x1a\x7a\x76\x80\xc4\x8a\x94\xb1\x83\x6a\x87\xf4\x37\xa8\xbf\xe8\x51\x9c\x21\x01\x8e\x24\xb1\xa3\x38\x43\x0a\x1c\x54\x60\x0c\x28\xce\x90\x04\x07\x25\x18\x23\x8a\x33\xa4\xc1\x41\x0d\xc6\x84\xe2\x0c\x89\x70\x50\x84\x31\xa1\x38\x43\x2a\x1c\x54\x61\xcc\xb5\x01\x12\x8b\x2a\x8c\x25\x21\x50\x2a\x1c\x54\x61\xac\x31\x03\x12\x8b\x2a\x8c\xb5\x23\x50\x2a\x1c\x54\x61\x6c\x1d\x25\x94\x0a\x07\x55\x18\x7b\x46\xa0\x54\x38\xa8\xc2\xe4\x60\xf1\x21\x15\x0e\xaa\x30\x79\x8f\x40\xa9\x70\x50\x85\x29\x38\x94\x50\x2a\x1c\x63\x56\x40\x05\x81\x63\x36\x42\x0c\x8c\x30\xda\x90\x30\x07\x85\x99\x22\x8b\x23\x61\x0e\xaa\x30\x25\x16\x47\x2a\x1c\x54\x61\xca\x2c\x8e\x54\x38\xa8\xc2\x94\x59\x1c\xa9\x70\x58\xf6\xb7\x23\x15\x16\xc7\x72\x10\x14\xb8\xa3\xa0\x48\x88\x6b\x95\x8e\x54\xa5\xd5\x41\xad\xa6\x9a\x70\x68\xd2\xea\xa0\x56\x53\x8b\x58\x5e\x5a\x1d\x14\x66\x6a\xbd\x5e\xae\x53\xc2\x9c\x14\x66\xea\xdd\x03\x22\x6b\x52\x98\xd9\xe5\x74\xb9\x4e\x09\x73\x52\x98\xd9\xa3\x93\x4e\x09\x73\xfa\xf3\xbc\x1d\x39\x78\x4f\x68\x10\x62\x60\x08\xe1\x72\x9d\xd2\xea\xa4\x56\x73\x44\x55\xa7\xb4\x3a\xc3\x44\x60\x44\x55\x67\x98\x43\xd0\x60\xa0\x27\x34\x09\x71\xad\xc4\xe5\xa5\xe8\x19\x0b\xba\x67\x42\xfb\x9c\xb1\x70\x2d\x8a\x3c\x27\x54\x62\x4a\xe4\x33\x8e\x76\x3b\x72\x0e\x84\x46\x17\xd4\x01\x65\xae\x35\x4e\x41\x27\x21\x47\x88\x49\xd0\x1d\x39\xa3\xcf\x4e\xb9\x63\xa6\x9c\xd9\xaf\xc1\x4a\xb9\x08\x2a\xdc\x31\x13\xaa\x84\x98\x44\x49\x0c\x54\x12\xf4\x50\x2e\x0d\x90\x3c\x34\xe9\xa1\x5c\x31\x20\xa6\x3c\x34\xe9\xa1\xdc\x22\x2a\x21\x0f\xcd\xa2\x79\x10\xe3\xe5\x3a\x25\xf2\xd9\x13\xb2\xef\x7c\xc7\x9e\x4e\x41\xe7\xed\x28\xa1\x71\x3e\xff\x3c\x57\xff\xd7\xa8\x9d\x3d\xf1\xdd\x7a\x19\xb7\xa3\x38\x1e\x43\x2f\x2c\x30\xbd\x53\x1c\x14\x33\xe5\x9d\xd9\x31\xb7\x8a\xcb\xc8\xa7\x0f\x13\x44\x56\x14\xb4\x09\xd9\x04\xd4\xa0\x85\x6e\x8b\x10\x67\x96\x87\x5b\xa7\x4c\x37\x69\xba\xe2\x33\x5e\x44\xa6\x9b\x27\xa6\x71\x09\x1e\x49\x9c\x1c\xc7\x7a\x14\x0f\x8d\xce\x93\xf3\x78\xd2\x9a\x25\x3a\x94\x4e\xd6\x9c\xb4\x66\xa1\xe9\xa6\xac\x39\x87\x58\x18\x6f\x53\x3e\x9c\xf4\x61\x49\x18\x6f\x53\x3e\x9c\x53\xb3\x14\xe3\x6d\xca\x87\x93\x3e\x2c\x05\xe3\x6d\xca\x87\x93\x3e\x2c\x05\xe3\x6d\xca\x87\x93\x0e\x2b\x15\xe3\x6d\xca\x61\x93\x0e\x2b\x0d\xe3\x6d\xca\x61\x93\x0e\x2b\x1d\xe3\x6d\xca\x61\x93\x0e\xab\x0e\xe3\x6d\xc9\x61\x8b\x0e\xab\x0e\xe3\x6d\xc9\x61\x8b\x0e\xab\x1e\xe3\x6d\xc9\x61\x8b\x0e\xab\x01\x1a\x5d\x72\xd8\xa2\x9d\x6a\xc4\x78\x5b\xb2\xd3\xa2\x9d\x6a\x42\x33\x58\xb2\xd3\xa2\x51\x6a\xaa\x08\x94\x51\x56\xd4\x85\xa1\x64\x40\x62\x51\xdc\x15\x92\xb9\x2e\x89\x7b\x51\xb6\xb5\xc2\xad\x4b\xb2\x5d\x94\x6d\xad\x0d\x81\x92\xed\xd2\xe5\xa3\x61\x70\x2d\xc9\x76\x51\xb6\xb5\x43\xef\x4b\xb2\x5d\x94\x6d\x73\x18\x5c\x4b\xad\x7f\x15\x78\xba\x39\x0c\xae\x55\xe8\x69\x3d\x5a\x85\x72\x56\x99\x8b\x90\x6e\x32\xa8\xea\xd2\x80\x58\xb5\x76\x40\x9d\x50\x3d\x05\x9d\xb7\xa3\xb5\xd6\x09\x0d\x41\x08\x54\xbd\x34\x46\x16\xc7\x48\x0b\x68\xfd\x4b\x63\x64\x71\x8c\xb4\x88\xd6\xbf\x34\x46\x16\xc7\x48\x4b\x68\xfd\x4b\x0e\x5b\xb4\x42\xcb\x70\xc7\x92\x15\x16\x15\xdd\x32\x9a\xd4\x92\xa2\x17\x15\xdd\x4a\x41\x5e\x52\xf4\x3a\x17\xa0\x8a\x5e\xb3\xce\xb5\x05\x6d\xbe\x10\x96\x3f\x4d\x81\x5c\xab\x32\x7b\x29\x7a\x51\xd1\xad\xa1\xb1\x2c\x29\x7a\x8d\xb3\xf0\x1d\x23\xa1\x4a\x88\x81\xad\x83\x25\x91\x2f\x8a\xbc\x75\x0c\x88\x25\x91\x2f\x8a\xbc\x3b\x4c\xcf\x25\x91\x2f\x8a\xbc\xd3\x8f\x4b\x22\x5f\x6b\x0f\x40\x98\x9e\x6b\xed\x29\x68\x22\x90\x79\xad\xbd\x04\x21\x30\x10\x92\x15\x16\xad\xd0\x03\x06\xc4\x92\x15\x16\xad\xd0\x23\x06\xc4\x92\x15\x16\xad\xd0\x13\x06\xc4\x92\x15\x16\xad\xd0\x33\x3a\xb8\xc9\x0a\x46\x2b\xf4\xe2\x32\x20\xb2\x8c\x56\xe8\xa5\xb4\xcb\xd5\x64\x05\xa3\x15\x7a\x45\x9f\x37\x59\xc1\x68\x85\xde\x02\x02\x65\x05\xa3\x15\x7a\xc7\xa5\xdc\x64\x05\xa3\x15\x7a\x47\xd7\x35\x59\xc1\xa2\xee\xbc\x0e\x6d\xd7\xe4\x05\xa3\x17\xbc\xf3\x68\x6a\x26\x33\x58\x12\x2f\xa0\xf1\x9a\xdc\x60\x49\xbc\x80\xce\x6b\xb2\x83\x65\xf1\x22\xce\xc4\xe4\x07\xcb\xe2\x25\xf4\x3a\x93\x21\xac\x88\x97\xf1\xa5\x61\x72\x84\x15\xf1\x8a\x47\xac\xc4\x6e\xf7\x3b\x79\x75\x09\x98\x78\xba\x94\xbb\x5a\x10\x2b\x21\x9b\x6e\xe5\xae\xe1\x33\xc9\xa4\x64\x6b\x67\x00\xd6\x43\x22\x16\x89\x29\xb6\xe3\xea\x61\x92\xb7\xf5\x8a\xef\x22\xef\x58\xaa\x5e\x8b\x30\x5e\xfc\x5d\x45\xac\x34\x6f\xba\xc0\x7b\x07\x09\x9a\x44\x6f\xba\xc1\x7b\x5f\xb1\x9e\x54\x6f\xe7\xfd\xa3\x01\xa3\xc3\x24\x68\x1b\xf9\x04\x16\xd1\xc9\x6d\xe4\x41\x4c\xb1\x91\x07\x29\x95\xdb\xd8\x8e\x18\x74\x68\x63\xdf\x31\xaf\x9c\x0b\xb1\x20\x8c\xb1\x09\x42\x37\x69\xdf\xf4\x05\xe0\x13\xa4\x68\x12\xbf\xcd\x85\x4f\x00\x9f\xa1\x45\x9b\xb0\xe3\xfd\x81\x77\x8b\xc4\x36\x31\xad\x57\xf0\xcd\x64\x72\x89\x2d\xad\x57\x78\x46\xb2\x89\xad\xb3\x03\xab\x3c\xa3\x85\x2b\xce\xd5\x96\x62\x2b\xdc\x6a\x72\x85\x99\x62\x1b\xa5\x2c\x5b\x98\x19\x6b\xd0\xa8\x65\xb3\x21\x6c\xe0\xd3\x09\xd7\xb7\x5f\xcd\xea\x54\x7f\x3b\xaa\xcd\x30\x57\xaf\x66\xda\x8d\xed\xd5\xe4\x2e\xdb\xda\xad\xf3\xf4\x65\x2f\xdb\xfa\x28\x73\x38\xfd\x2d\x7f\x6d\x87\xfb\x8a\x0f\xde\x37\x60\xbc\xb0\xe8\x81\x37\xea\xc4\x2a\x31\x7d\xe3\x79\x9c\xe0\x96\x11\xb7\xc3\xb5\xcc\x07\xdf\x88\xf1\x5e\xa6\x07\x4e\xd0\x13\x9b\xc4\xb4\x2f\x6f\x79\x5b\x8e\xdd\xbe\x04\x62\xa8\xf8\xf6\x25\x0a\x3b\xf5\xe6\x9d\xd8\x10\xc6\x6a\x14\xee\xeb\x79\x0f\xd9\xf7\xef\xf8\xe8\x2b\x30\xe5\xe2\xb5\x47\xc4\x3c\xd9\xf2\xfb\x0e\xa5\x02\x4b\x11\xb1\xa1\x34\x61\x0d\x58\x85\x62\x77\x28\x9d\x98\xd6\x4b\x95\x3c\xad\x17\x26\xf3\x4b\xf8\x50\xd8\x61\x32\xbf\xa0\x3d\x32\x9c\xb2\xd5\x2d\x76\xac\x89\x58\x23\x06\xdb\xe0\x61\xca\x19\x35\x50\x07\xd9\xea\x20\xa1\x60\xfa\x6c\x75\x90\x9d\x0a\x6b\x5f\x53\x06\x56\x58\x7b\x75\x95\x50\x71\xc5\xdf\xea\x2a\x3b\x0d\xee\xd1\x58\x97\x34\xb2\xb0\xac\x5c\x0a\x31\xc5\xa2\x3b\xfb\xd0\x02\x79\x6c\xcf\x5b\x1d\x29\x74\x87\x7d\xd5\x91\xb6\x3a\x52\xe8\x0e\x35\x50\x47\xda\xf9\xce\xc3\x5d\x68\xab\x23\xed\xc2\x33\x8a\xae\xa0\x2e\x45\x67\xc4\x07\x62\x85\x25\x62\xfa\xb2\x77\xb8\xe1\x6e\x75\xae\xad\xce\x15\x3d\xcf\x5c\x9d\x6b\xab\x73\x45\x5e\xe7\xb6\x3a\xd7\x56\xe7\x8a\x01\xb7\x85\xad\xce\xb5\xd5\xb9\x62\xa4\x36\xd4\xb9\xb6\xba\x54\x4c\x3c\x5f\x75\xa9\xcd\xc6\xe4\x63\xe6\xf9\xf6\x5a\x85\x91\x97\x1b\x79\x8a\xed\x38\x3e\x1f\x33\xee\x53\xbb\xcf\x24\x2c\x89\x97\x89\x65\x61\xa8\x69\x2c\xac\x5f\x9f\x45\x18\xf7\xd0\x59\xf6\xa9\x3d\x96\x27\xa6\x7d\x57\x10\xa6\x58\x78\x50\x95\xdf\x18\x52\xbf\xb2\x30\xfe\xff\xf3\xf9\x7c\xf9\xe5\x97\xbd\xf9\xf5\xe5\xc5\x1e\x5f\xf9\x2b\x22\x7f\xc1\x3b\x96\xed\x87\x47\xfb\xe5\x17\xc9\xe7\xa7\x67\x44\xf1\xbf\x7f\x07\x00\x00\xff\xff\x9c\xfe\xe4\xde\xbd\x14\x00\x00"); +var _bfd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x14\x5e\x5b\x9a\xfe\x83\xd2\x85\x63\x8d\x83\xa1\x91\x8d\xe3\x2c\xf2\xed\xcb\xb9\xc7\x0e\xa5\x8b\xe0\xf8\x58\xba\x72\x7e\x27\xa3\xd1\xcd\xdd\xc3\xfd\xc3\xba\x3f\xa7\x9b\x9f\x4f\x87\xed\x63\x3f\xa7\xdd\x7e\x5d\x4e\xfd\xf5\xf0\x76\xda\xf6\xf4\xd4\x9f\xf7\xeb\x30\x88\xa6\x65\xbf\x3d\x5f\xdf\xc6\xcb\xf6\x65\x73\x1c\x06\x9c\xff\xf8\xfe\x7a\xee\x2f\x0f\xeb\xee\x90\x8c\xc7\x2d\x6f\xc7\xcb\xb1\x29\xdd\xfc\xd2\x9f\xf7\xaf\xe7\xd3\x7b\xfa\xf4\x65\x39\x3c\xf5\xef\xd2\xd2\x77\xc8\x7f\x3a\x2d\xfd\xb4\x5f\x9f\xd3\xa7\x1f\x36\xc7\xcd\x2a\x1f\x1f\x3c\xbe\x1d\x8f\xff\xf4\x97\xbe\x9e\x53\x8d\xac\xaf\x4b\xbc\x0e\x37\x77\xdf\x36\xc7\x1f\x37\x2f\x3d\xdd\xc4\xac\xcf\x3c\xf3\x33\x0f\x8b\x4f\x7f\xef\xa7\xd7\xfd\x61\x4d\xf2\x7d\xce\xff\x89\x7f\x7d\x3f\xf6\x24\x97\x29\x7f\xfe\xf6\x70\x9f\xfe\x92\x24\x39\x69\xa9\xe2\x7f\x5f\xf2\x3f\xbe\x1d\x96\x9e\xf2\xf5\x5a\x0f\xf7\x77\x87\xb7\xf5\x9c\xd4\x72\x69\x0c\x85\x7f\xd6\xf6\xb0\xf4\xd7\xe3\x66\xdb\x4f\x9b\xf5\xb9\x0f\x29\xcd\x39\xe7\x7c\x9b\xe6\xf2\xe5\xeb\xd7\x5b\x7c\xdf\xff\x1d\x31\x4c\xd7\x33\xf7\x0b\x93\xeb\x19\x39\xef\x76\xb7\x29\x0f\x73\x16\xbe\x17\xbc\xd7\x52\x87\x39\x2b\x13\x45\x52\x44\x87\x39\x1b\x13\x43\x32\xd6\x36\xcc\xd9\x99\x38\x12\xc9\xea\xc3\x9c\x0b\xa3\x12\x91\x36\xcc\xae\x8c\x6a\x44\xc5\x30\x7c\x64\x34\x46\x34\x4e\x98\xde\x18\xb5\xf8\x06\xd9\x31\x7e\x62\x34\x45\x64\x19\xe3\x37\x8c\x36\x97\xef\x89\xf1\x4f\x8c\x9e\x22\x6a\x82\xf1\x5b\x46\x5b\x44\x96\x47\x8c\x5f\x18\x2d\x11\x99\x62\x7c\x67\xd4\x23\x2a\x0d\xe3\x77\x8c\x76\x11\x35\xcf\xc3\x2c\x94\x92\x90\xf2\x3c\xd5\x61\x16\x62\x49\x60\xb9\x15\x1d\x66\xa1\x96\x84\x96\xd7\xdc\x86\x59\xc8\x25\xc1\xe5\xad\xfa\x30\x0b\xbd\xc4\x2f\xa6\x18\x4f\x2f\x09\xaf\x62\x23\xc6\xd3\x4b\xc2\xab\x54\xc3\x78\x7a\x49\x78\x95\xd6\x30\x9e\x5e\x12\x5e\x55\x1c\xe3\xe9\x25\xe1\x55\x3d\x63\x3c\xbd\x24\xbc\x6a\x45\xb1\x42\x2f\x09\xaf\x3a\xa1\x59\xa1\x97\x84\xd7\x28\xa8\x56\xe8\x25\xe1\x35\x3a\xaa\x15\x7a\x49\xbf\xf4\x8f\xf1\xf4\x92\xf0\x1a\x27\x54\xab\xf4\xd2\xf0\x6a\x82\x6a\x95\x5e\x1a\x5e\xcd\x51\xad\xd2\x4b\xc3\xab\x8d\xa8\x56\xe9\xa5\xe1\xd5\x26\x54\xab\xf4\xd2\xf0\x9a\x14\xd5\x2a\xbd\x34\xbc\x26\x47\xb5\x4a\x2f\x0d\xaf\x69\x44\xb5\x4a\x2f\x0d\xaf\x69\x42\xb5\x4a\x2f\x6d\xd7\xff\x55\xcc\x27\x98\x4e\xcc\x1c\xe5\x2a\xc5\x74\xc3\x6c\x44\xbb\x4a\x32\x0d\x32\xb4\x8f\x4b\xd0\x4c\xb7\xcc\x14\xfd\x2a\xd1\x74\x61\x56\x50\xb0\x52\x4d\x3b\xb3\x11\x0d\x2b\xd9\x74\xc7\x45\x92\x51\xb1\xd1\xcd\x32\x33\x45\xc7\x46\x38\x13\x66\x05\x25\x1b\xe5\x4c\xaf\x0b\x2c\x0f\xb3\x91\xce\x82\x4e\x2c\xa3\x66\xa3\x9d\x71\x6d\x9a\xa1\x67\x23\x9e\x71\x71\x5a\x41\xd1\x46\x3d\xe3\xea\xb4\x86\xa6\x8d\x7c\xc6\xe5\xe9\x19\x55\x1b\xfd\x8c\x7e\x6e\xe8\xda\xe8\x67\xf4\xf3\x82\xb2\x8d\x7e\x46\x3f\x6f\x68\xdb\xe8\x67\xf4\x2b\x82\xba\x8d\x7e\xb6\xbd\xde\x15\x70\x0d\xfa\x19\xfd\x4a\x45\xe1\x46\x3f\xa3\x5f\x69\x68\xdc\xe8\x67\xf4\xab\x82\xca\x9d\x7e\x4e\xbf\x6a\xe8\xdc\xe9\xe7\xf4\xab\x15\x9d\x3b\xfd\x9c\x7e\xb5\xa1\x73\xa7\x9f\xd3\x6f\x14\x74\xee\xf4\x73\xfa\x8d\x8e\xce\x9d\x7e\x4e\xbf\xb1\xa2\x73\xa7\x9f\xd7\xeb\xad\x0c\xd7\xa0\x9f\xd3\xaf\x09\x3a\x77\xfa\x39\xfd\x9a\xa3\x73\xa7\x9f\xd3\xaf\x55\x74\xee\xf4\x73\xfa\xb5\x09\x9d\x3b\xfd\x9c\x7e\x93\xa2\x73\xa7\x9f\xd3\x6f\x72\x74\xee\xf4\x73\xfa\x4d\x23\x3a\x77\xfa\x39\xfd\xa6\x09\x9d\x3b\xfd\x7c\xc7\x7b\xad\xa2\xf3\x72\xd9\x43\xf2\xf5\xfe\x9b\x87\xb9\xd0\xaf\x70\x57\xc8\x23\x3a\x2f\xf4\x2b\xca\x6c\x42\xe7\x85\x7e\x25\xfc\x54\x14\x9d\x17\xfa\x15\x67\x56\xd0\x79\xa1\x5f\x29\xcc\x46\x74\x5e\xe8\x57\xc2\x4f\x35\xa3\xf3\x42\xbf\x32\x32\x53\x74\x5e\xe8\x57\xb8\x3f\x68\x41\xe7\x85\x7e\x85\x1b\x84\x8e\xe8\xbc\xd0\xaf\x6c\x44\xb8\x69\xe4\xd8\x11\xaf\x3b\x1f\x7e\xc7\xb3\xc3\xc7\x5e\xbe\x7d\x3b\x9d\xfa\x7a\x8e\x27\x87\xd8\xac\xb1\xd7\xee\xd7\xfe\xf1\x14\x72\x3c\x1c\x71\x56\xfc\xfc\x1b\x00\x00\xff\xff\x0d\xf5\xe5\x1f\xb1\x08\x00\x00"); +func _gffdg ()([]byte ,error ){return _gb (_dda ,"HKm314-B5-V")};func _cggc ()([]byte ,error ){return _gb (_abgb ,"UniJIS-UTF16-H")};func _fega ()(*asset ,error ){_eegab ,_ggdg :=_edgc ();if _ggdg !=nil {return nil ,_ggdg ;};_bfge :=bindataFileInfo {_ee :"NWP-H",_ffd :15060,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492613,0)}; +_fbfd :=&asset {_da :_eegab ,_dc :_bfge };return _fbfd ,nil ;};func _aeaf ()(*asset ,error ){_gabb ,_fcdb :=_befe ();if _fcdb !=nil {return nil ,_fcdb ;};_gaag :=bindataFileInfo {_ee :"Roman",_ffd :450,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492645,0)}; +_abbe :=&asset {_da :_gabb ,_dc :_gaag };return _abbe ,nil ;};var _dcgd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x4f\x6f\xdb\x30\x0c\xc5\xef\xfe\x14\x3c\x76\x87\xce\x92\x5d\x47\x09\x50\x14\x58\x93\xa1\x33\x86\x6e\xc3\xb2\x76\x03\x86\x1d\xf4\x87\x0a\x04\xcc\xb2\x20\xdb\x87\x7c\xfb\x41\xa4\xe7\x1e\x82\x97\xfc\xc4\x47\x3d\x85\xac\x8f\xfd\xa9\x8f\x61\x86\xfa\x5b\x1e\xed\x19\x67\xf0\x21\xba\x8c\xd3\xb8\x64\x8b\x60\xf0\x12\x62\x55\xc9\x06\x5c\xb0\xf3\xff\x9f\x24\x76\xd0\xa9\xaa\xea\xa7\xc7\xcf\xe9\xf6\xe3\xcb\xf1\xf6\x13\x2c\x13\xae\xf0\xd8\x9f\xce\xd7\x69\xc6\xa1\x8f\x7e\x84\x96\xcd\x6e\x49\x6b\x03\x80\xfa\x3b\x5e\xc2\x34\xe7\x2b\xdc\x7c\x70\xa3\xc1\x77\xe0\xd0\x17\xfe\x35\x3b\xcc\x21\x5e\xe0\xe6\xe9\x51\x6e\xf4\xbc\xa4\xf4\x17\x07\x8c\x33\x34\xc4\x30\x3a\xd2\xaa\x3e\x3e\xeb\xf4\x45\x0f\x08\x6f\x49\x5e\xe9\x88\x4e\x5e\x31\x4f\x61\x8c\x20\x9b\xf7\x42\x74\x6f\xfc\xc7\x35\x21\xc8\xb5\xc5\xaf\x97\xfe\x04\xbf\x25\x48\x01\x4d\x77\xd7\xed\xfe\xac\xfc\xe7\xf3\xe8\xb6\xaa\x46\x70\x78\x1b\x5c\xd6\xf1\x82\xd5\xbd\x96\xba\x79\x80\x55\xa0\x53\x1d\xa1\x96\x51\x4b\xe8\x8e\x90\x66\xa4\x0b\x3a\xec\x09\x19\x46\xf6\x01\x94\x12\x5c\xe5\x18\x39\xaa\x3a\x14\x64\xb8\xbd\xf1\x05\xed\x9b\x82\x3c\x12\x2a\xa2\x94\xd8\x55\xf7\xba\xd5\xb2\x20\x12\xe8\xd4\x9e\xd0\x9e\xd1\x81\x8c\x82\x90\x65\x64\xa9\xaa\x25\x84\x8c\xb8\x97\x2a\xc8\x50\xd4\xd6\x18\xaa\xa2\xf6\xc6\x31\x72\x54\x45\xed\x4b\xa0\x55\xa0\x53\x25\x6a\xeb\xe8\x41\x24\x4a\x09\x46\x6c\x74\x64\x94\x14\xc2\xb1\xb1\x08\xec\x04\x21\xcf\x46\x4f\x37\x1e\xe8\x46\xcf\x46\xcf\xff\x04\xe5\xe2\x67\xb7\xfc\x6c\x29\xcb\xf8\xb7\x39\x94\xef\x65\xeb\xb6\x45\xb0\x4b\xce\x18\x67\xda\x39\x1a\x76\x19\x60\x88\xb8\x2d\x75\x1a\x53\x71\xd1\xe7\x5f\x00\x00\x00\xff\xff\x2f\x4d\x97\xcf\x00\x03\x00\x00"); +var _bdab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x51\x6b\xdb\x30\x14\x85\xdf\xf5\x2b\xf4\xd8\x3d\x74\xd1\xbd\x96\x25\x19\x4c\x61\xb4\x2b\x84\xd2\x6d\xb4\x63\x7b\x76\x6c\x39\x18\x16\xdb\x38\xce\x43\xff\xfd\xb8\xf7\x38\x19\xec\x21\x38\xfa\x22\x9d\x88\xef\x58\xda\x3d\xee\x9f\xf6\xe3\xb0\xda\xdd\x8f\x65\x6a\xdf\xf3\x6a\xfb\x61\xec\x96\x7c\x9e\x2e\x4b\x9b\xed\x21\x1f\x87\xd1\x18\x62\xdb\x0d\xed\x7a\x1d\xea\xa3\x3d\x35\xb3\x31\xb2\xfe\xfd\xe3\xbc\xe6\xd3\x7e\xec\x27\x5b\x60\x5e\x77\x99\xb7\xb9\xd6\xee\xde\xf2\x71\x38\xaf\xcb\x87\xbd\xfb\xd2\x4d\x87\xfc\xc9\x76\xb9\x17\xfe\x7d\xe9\xf2\x32\x8c\x47\x7b\xf7\xf2\x76\x83\xef\x97\x79\xfe\x93\x4f\x79\x5c\xad\x57\x96\xc7\x4e\x9f\x66\xf7\xf8\xda\xcc\xdf\x9a\x53\xb6\x3b\xcd\xb9\x7f\x79\xbb\xc7\x14\xfd\xe5\x57\x5e\xce\xc3\x34\x5a\xfa\xec\x1c\xff\xc3\x3f\x3f\xe6\x6c\x69\x4b\xf8\xfd\x3a\x75\xd9\xba\x6b\xde\xfe\xe9\x71\xba\x8c\xab\x25\x4a\x31\x01\x12\xb6\xdd\x4e\x5d\x3e\xcf\x4d\x9b\x97\x66\x3c\x66\x63\x6d\xed\x9c\x73\x0f\xb6\xe6\xaf\xcf\xcf\x0f\xb2\xa7\xff\x66\x18\x1f\xb7\x95\x43\x07\x72\x5d\xe1\x5c\xdf\x3f\x58\x67\x6a\x47\x18\x93\x8c\xb9\x0c\xa6\x76\x0c\xc2\x42\x4a\x62\x53\xbb\x02\xa4\x10\x12\x43\x32\xb5\xf3\x20\x5e\x08\x39\xf6\xa6\x76\x25\x50\xa9\x88\x93\x64\x07\xa0\xa0\xa8\x2c\x24\x3c\x02\x45\x45\xb1\x92\xf4\x04\x94\x74\x07\xce\x4b\x7c\x05\x54\x29\x2a\x9c\xc4\x37\x40\xcd\xb6\x4f\x89\x3f\x00\x1d\x14\x25\x92\xf8\x16\xa8\x15\x54\xb8\x28\xf1\x1d\x50\xa7\xa8\x60\x89\xcf\x40\x59\x51\x99\x24\xbe\x07\xea\x15\x25\xef\x4c\x4d\x30\x45\x6a\xca\xbb\x2a\x98\x9a\x20\x8b\x54\x96\x2f\x4a\x36\x35\xc1\x16\xa9\x2d\x1f\x5c\x32\x35\x41\x17\xa9\x2e\x9f\x82\x37\x35\xc1\x17\xf9\xcd\xa9\xc4\xc3\x17\xa9\xaf\xb2\x88\x12\x0f\x5f\xa4\xbe\xca\x50\x48\x3c\x7c\x91\xfa\x2a\x53\x92\x78\xf8\x22\xf5\x15\xc8\x4b\x3c\x7c\x91\xfa\x0a\xde\x49\x3c\x7c\x91\xfa\x0a\x41\x8a\x25\xf8\x22\xf5\x15\x2a\x69\x96\xe0\x8b\xd4\x57\x24\xa9\x96\xe0\x8b\xd4\x57\xf4\x52\x2d\xc1\x17\xe5\xad\x7f\x89\x87\x2f\x52\x5f\xb1\x92\x6a\x79\x7b\x17\xd5\x57\x22\xa9\x96\xe1\x8b\xd5\x57\xf2\x52\x2d\xc3\x17\xab\xaf\x14\xa5\x5a\x86\x2f\x56\x5f\xa9\x92\x6a\x19\xbe\x58\x7d\x55\x2c\xd5\x32\x7c\xb1\xfa\xaa\xbc\x54\xcb\xf0\xc5\xea\xab\x8a\x52\x2d\xc3\x17\xab\xaf\xaa\x92\x6a\x19\xbe\x38\x5d\xdf\x55\xc9\x87\x30\xae\xc0\xbc\x94\xcb\x30\xc6\x0d\x58\x94\x76\x19\xca\x58\x95\x49\xfb\xf2\x17\x70\xc6\x2d\x18\x4b\xbf\x0c\x69\xdc\x81\x95\x52\x30\xc3\x1a\xe7\x50\x0a\x8b\x31\xe8\x09\xbd\x9e\x44\xf9\x2e\x77\xd5\xed\xfe\x68\x2f\xcb\x92\xc7\x55\x6f\x2a\xbd\x24\xe4\xec\x0f\x63\xbe\xdd\x7a\xf3\x34\xcb\x2a\xfd\xfc\x0d\x00\x00\xff\xff\xf5\xca\x92\xc4\x21\x05\x00\x00"); +func _feccg ()([]byte ,error ){return _gb (_gbdd ,"HKgccs-B5-H")};var _ggecf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x4b\xcb\x6d\x4d\x96\xa5\x89\xf5\xfd\x57\x9c\x66\xa9\x51\x8a\xb5\xec\x6e\x20\x0e\x88\x2a\x02\x25\x45\x49\x42\x99\x29\x09\x84\x1a\xeb\x9a\x72\x50\xba\x07\x1e\x91\x8d\xfc\xf7\xc2\x9e\xf9\xee\x31\x76\x08\x0a\xce\xd7\x39\x9f\xbd\xb6\xb6\xdd\x6d\xda\xbc\x8e\xf9\x4f\xff\xd3\x7f\xf8\x9f\xff\xc3\xdf\xfe\xfa\x6f\xbf\xfe\xe9\xff\xfa\x8f\xbf\x5f\xff\xf1\xf9\xb7\x5f\xef\x5f\xff\x76\xff\xe3\xf9\xd7\xbf\xff\xb7\x7f\x5c\xcf\xaf\xf3\xf9\x2f\x7f\xfd\xdb\x5f\xfe\xb2\xa7\x5f\xf7\x5f\xaf\x7f\xfb\x14\xf9\xe7\xfa\xaf\xc7\xbf\xfc\xe5\x2f\xeb\xf7\xff\xf1\xbf\xff\xeb\xbf\x3d\xff\xf5\x3f\xfc\xed\xfd\xfb\xaf\x1c\xdf\xdd\xff\xed\x5f\x7e\xbe\xfd\xf5\xeb\x9f\xfe\x6f\xcf\x7f\xf9\xeb\xbf\xfe\xdb\x3f\xfe\xfb\xaf\xff\xe1\xff\x78\xff\xfd\x7c\xfe\x77\xbf\xee\xe7\x5d\x7f\xff\xbf\xfc\xe3\x7e\xfe\xf1\xd7\xbf\xfd\x97\x5f\xff\xc3\xff\xf2\xf7\x7f\x3c\xc7\xae\x8a\xff\xf8\xdf\xfe\xe5\x5f\xfe\xbf\xcf\x7f\x7d\xfe\xf6\x6f\xbf\x76\xfe\xf6\xfc\xed\xe6\xdf\xbf\xfc\xd3\xff\xf4\xbf\x1e\xff\xf2\x7f\x3e\xfe\xeb\xf3\xeb\x9f\xfe\xf3\xdf\xfe\xfa\xbf\xfc\xc7\xff\xf1\x3f\xff\xa7\x7f\xce\xe9\x7f\xfc\x3f\x51\x4b\xe5\xff\xfd\xf9\xc7\xbf\xfe\xf5\xef\x7f\xfb\xb5\xff\xef\xb7\x6d\xf8\xcf\xff\xe9\xbf\xff\xcb\xf3\xd3\xd8\x5f\xfe\xe9\xff\xf9\x9f\xff\xc3\xff\xfc\xeb\xff\xb5\xff\xda\xb7\x5f\xa9\xd6\x92\xfe\xdf\x3f\x7f\xff\x7f\xfc\xaf\x7f\xbf\x9f\x5f\x5b\x94\xf6\x98\xc0\xf5\xf7\xfb\xf9\xd7\x7f\x39\xae\xe7\x1f\xc7\xdf\xfe\xcb\xf3\x97\x5f\xbf\xfe\x0f\xdb\xcf\x7f\xbf\xd7\xff\xee\xdb\x3f\xff\xf3\x3f\xff\xf3\xef\x35\xc2\xff\xbf\x2f\x3f\x0d\xfc\xed\xef\xff\x76\x3f\x6f\xfc\xed\xdf\xff\x76\xfd\xb7\xbf\xbf\x7f\xed\xeb\xd7\xdf\x9f\xfd\x65\xdf\xb6\x9f\xde\xff\x7a\x5f\xff\x9f\xe3\x1f\x9f\x1f\x1e\xdb\xfa\xfa\x53\xd8\x7f\xff\x4a\xdb\x50\xb1\xfc\xfe\x95\xf6\xa2\x62\xff\xfd\x6b\xaf\x55\xc5\xf1\xfb\xd7\xbe\x75\x15\xe7\xef\x5f\xd3\x3f\x3d\x7e\xff\x6a\xcd\xc5\xf3\xf7\xaf\xbd\xb7\x4f\xf1\x5c\x9d\x66\xd5\x9e\xfb\x2a\x6e\x2a\x96\xdf\xbf\xf6\x39\x55\x6c\xbf\x7f\xa5\xa2\x51\x9c\x6b\x14\x9b\x8b\x63\x0d\xd9\x2d\xcf\xdf\xbf\x46\x49\x2a\xae\x61\x74\x0d\xf9\x64\x18\x1a\xf2\x79\xfd\xfe\xd5\xab\x66\x7f\xde\xbf\x7f\xf5\xe2\x51\x3d\xab\xd6\x4d\xbd\xab\x23\x8d\xea\x6a\x6b\x82\xea\xf7\xde\x56\x51\x2d\xdf\x6b\x90\x59\x2d\xdf\x63\x0d\x23\xab\xf8\xac\xa2\x7f\xfb\xfe\xfe\xd5\xbd\x56\x4f\x5b\xfd\xaa\xa9\x77\x5b\x45\xf5\xfb\xd2\xb2\x46\xf5\x8e\xf5\x5b\x35\xf5\xae\x31\xb7\xcf\xc7\xfb\xbe\xaf\xdf\x7e\x5a\xde\x13\x63\x56\x6d\xea\xeb\xe3\xcf\xb2\xef\x79\x7d\xdc\x76\x15\xd3\x1a\xa4\x6b\xf3\xaa\x4d\x2a\xd2\x6f\x56\xf1\x5d\x1f\xeb\xb7\x65\x8d\xb9\x15\x15\xf7\x55\xab\xdf\x96\xb4\x6a\xab\x8a\xf3\xf7\xaf\xfe\x55\xcb\x96\x69\xcc\xe5\x5c\xb5\x6a\xb9\x32\x2a\xb5\x5c\x19\xd5\x67\xad\xf6\xb6\x26\xd8\x5d\x5c\x13\xd4\x14\xd2\xda\xee\x91\x74\x1a\xd2\xd5\xd7\x8e\x7e\x9a\x4e\x37\x27\x29\xa9\x38\x57\x51\x1f\xdf\xc7\x2a\x16\x15\xcf\x55\xec\x2a\x5e\xab\xa8\x9e\xee\x7b\x15\x3f\xab\x53\xb6\x75\xbe\xb7\xf4\xd9\xa5\x52\x29\x7f\xf6\x34\x6d\xfb\xf6\xfb\xd7\xec\x2a\xb5\xdf\xbf\xf6\x7d\x57\xf1\x5c\xa3\xfe\x5c\x96\xc4\xf5\x1e\x29\xeb\xf3\x94\x7e\xff\x1a\x6d\x53\x39\x6f\xeb\xd2\x36\x15\xcb\xef\x5f\xa3\x8e\xa4\x72\xfd\xfd\x6b\xe6\xe4\xfa\x46\xb9\xa8\xbc\xae\x48\x75\xf5\x5a\x33\x6d\x74\xda\xd6\xde\x8d\x3a\x35\xf4\xbe\x9a\x2f\x55\x45\x96\xb8\x68\xb0\x7d\x0d\xb6\xa8\x35\x68\xc4\xa7\xb4\x6f\xf9\xf7\xaf\xbd\xec\x2a\xae\x05\xdf\x3f\x4d\xed\x7b\xfe\xfd\xab\xce\x4d\xc5\x45\x05\x3e\x47\x39\xed\x69\x51\x2a\x0d\x6b\x5f\x8b\x90\x9a\x3e\xe6\xa0\x17\xd7\xae\x39\x7d\x88\x42\xda\x67\x5a\x54\x40\x1f\xcf\xba\xe8\x4b\x57\x91\x8e\x5c\xbb\x0e\x89\x26\xb4\xcf\x75\x48\xaa\xc6\x3c\xd7\x98\xcb\x67\x35\xf6\x45\xd7\xc6\x68\xfa\x7a\x11\xb6\x31\x9a\xe6\x74\x26\xca\x45\xe5\x4c\xd9\xbf\x2f\x94\x35\x16\x4e\xec\x18\xfa\xfe\xa2\xfd\xa1\xf6\xae\x7b\x95\xb5\xd9\xfb\xf5\x52\x56\xfd\xcd\xf7\x7b\xe1\x2d\xf9\xa1\xfb\xff\x1b\x2f\x41\xda\x6f\x06\x5b\xd5\xd9\xbd\x96\x69\xba\x2d\xc6\x5a\x5d\x86\x4a\xab\xeb\x67\x9d\xe1\xdd\xfb\xf5\xec\x94\xb5\xe8\x4f\xa2\xac\x95\x7b\x32\x65\xed\xd1\xa2\x7a\x73\x9f\x5a\xba\xa7\xff\xfe\x35\x75\xa5\xd2\xfe\x0c\xea\xb5\x54\xcf\xa4\xfe\xd3\x5e\x5a\x0f\xe0\xae\x4b\x94\xb6\x35\xf8\xea\xda\x75\xd4\xd4\x78\xda\xda\x3a\xd5\x5a\xa7\xb4\xf1\xb2\x25\x15\xd7\xcb\xa6\x55\x4f\xeb\x60\x8e\xae\x5d\x4e\xdb\x3a\x4e\xc3\x3f\xe6\x8a\xe8\xc4\xa4\x6d\x3d\x14\xfb\x67\x62\x69\xd1\xe0\xb4\xab\xed\x75\xac\x47\xd7\xfd\x4b\xfb\xb1\x0e\xa3\x46\xb6\xdf\xab\x6d\xb5\xb5\x3f\x8b\xda\xfb\xe3\x97\x71\x6b\x96\x69\x4d\x5a\x87\x33\x41\x0a\x7a\x76\x79\xae\x59\x6b\x11\xd2\xea\x4a\x3b\x94\xd2\xb3\x06\xa6\xda\x45\x28\x76\x91\x95\xb4\xe8\xc4\x3e\x5c\xbb\x6e\xc5\xae\xdf\xe6\xfe\xfb\xd7\xc8\xc9\xd5\x6b\xd8\x5d\x2b\x54\xd6\x24\xab\x36\x2f\x95\xba\xc8\xc0\x74\xfd\xa0\x5e\x3f\xaf\x1b\x03\x57\xfd\x22\x90\xa3\x27\xad\x61\x65\x37\xb5\x21\x35\xd6\x50\x6b\x5a\x0f\x76\x40\x9f\x37\xd8\x0b\x17\x17\xb9\xfd\xaa\x8d\x55\x52\x6b\x1d\x96\xc1\xcb\x34\x0a\xdb\xad\x55\x1c\x95\xb2\x56\x66\xac\xde\xca\xd0\xa6\x8c\x93\xb2\xbe\x3f\x18\x9d\xc8\x4d\x3a\xa0\xc0\x9b\xfa\x3f\xd6\xca\xfa\x34\x3d\x0f\x4b\xa9\xb5\x7a\x16\xfb\xf6\x61\x68\x52\x8e\xa3\xaa\xb9\xe7\x9d\xa5\xd8\x54\x64\xb0\x1f\x4e\x23\xd5\x75\x0d\xea\x3e\x55\xdc\x7f\xff\xaa\x1f\xce\x2a\xd5\x75\x2b\x6a\x72\x71\x91\xd8\xaf\xdf\x5e\xab\xd6\xc5\xfb\xf7\xaf\x2a\x8a\x5b\xb7\x67\x15\xbb\x8a\xef\xfa\xed\x67\x92\x75\x3d\x61\x35\xb9\xb8\xfa\xad\x2e\xae\x7e\x75\x1b\x2b\xa4\x5d\xfb\x53\xd7\x1c\xaa\x5e\xa0\xba\xd7\xf5\x71\x53\xb1\xad\x62\x55\xb1\xaf\xdf\xba\x38\xd6\x6f\xdd\xd4\x5c\x1f\xbb\xa9\x63\x15\x5d\x7b\xae\xdf\xba\x96\xf9\xba\xa9\x35\x5f\xbd\x55\x75\xdd\xad\xaa\xd7\xa9\x26\xc6\xec\x5a\xc6\xac\xd5\x48\x6b\xcc\x3a\x32\x35\xad\x51\xe9\xfd\xa9\x89\x7e\x5d\x4b\xbf\x6e\x6a\xad\xa4\x8e\x4b\xcd\xf4\xab\x96\x33\xfd\xba\x48\xbf\x6a\x6a\xdd\xc3\x5a\x34\xa3\x4c\xbf\xda\xfd\x4c\xbf\x2e\xd2\xaf\x8b\xf4\x5b\xff\xe4\x6d\xa8\x85\x0d\xd4\xc1\x59\x4c\x59\x2d\x2a\xae\x07\x35\xf9\x2c\x20\x52\xe8\xd1\xab\x4b\xa8\xd8\xf5\xe6\xd5\x75\x3d\x92\x47\x71\x2c\xc2\xe2\xf9\x2d\x19\x23\x79\x99\x97\x8c\x91\xbc\xdb\x8b\x7f\x30\x2b\x54\x79\x5e\xbb\xbf\x5e\xcf\xeb\xae\xd7\xb3\xae\xd7\x75\x6f\xae\xe5\x1e\x8b\xb6\x56\xe4\x0a\x5f\x86\x25\x57\x24\xdf\x1c\x04\x89\x2e\x02\x58\xd7\x53\xbc\x37\x57\x2f\x82\xd7\x3c\x12\x08\xb3\x08\x60\xbd\x60\xc2\x54\x7d\xf1\x06\x68\x60\x17\x14\x42\x3c\x59\x5d\xb2\xc4\x2e\x66\xa6\x2e\xbe\x74\x6f\xae\x5d\x6b\xe0\x2d\xbf\xd6\x1a\xf8\xe4\x5d\xd0\xbe\xe1\x32\xfc\x9b\x07\xb2\x1e\xa7\xe6\x33\x70\xad\x07\xa5\x69\x56\x8b\x61\xd8\xc5\x37\xd5\x07\x62\xd3\xb5\xde\x8b\x16\x8d\xa6\x9b\xda\xb6\x45\xba\x44\x12\xda\xa2\x4d\xbb\x48\x42\x5b\x14\x22\xe9\xc6\x34\xde\x41\x1d\x92\xb6\x6e\x5b\xd2\x31\x6f\xeb\xb6\xcd\x94\x5c\xe6\xc7\xea\x69\xbd\x74\x33\xe9\x62\xb7\xc4\x48\x74\x8a\x5a\xe1\xe5\x53\xd7\xeb\x7c\xee\xba\xbb\xad\x71\xc6\x5c\x5c\x72\xac\x08\x5b\x6b\x8b\xe1\x13\xbd\x69\x4b\x4a\x48\x22\x03\xad\x71\xe4\xa6\x8a\x6b\xd8\xd5\xb5\x8b\xb3\x17\x61\x6b\xed\x85\x1d\xfe\xb4\xd5\x17\xb1\x1a\x4d\x24\xb5\x2f\x02\x34\x9a\x08\x70\x5f\xef\xe4\x68\x9b\xbe\xaf\xf1\xfd\x67\x1e\xef\x22\xdf\xad\x68\x43\xde\xad\xfc\xfe\xd5\xf2\x70\x19\xc6\x56\xcc\xc5\xbb\x38\x95\x56\x8a\xcb\x4b\x78\x2a\xdd\xed\x2d\xe9\xc9\x0f\xef\xbb\xe8\x72\x49\xe2\x7d\xdf\x45\x98\x4b\xd1\x8e\xbe\x90\xe2\x7d\xa8\x3d\xa8\xad\x84\xb3\xf4\x42\x6e\x37\xb7\xbf\x36\xb5\x99\x0b\x7b\xd7\xae\xe6\xf9\x55\x5e\xa2\x6d\x11\xe5\x7f\x21\xaa\x5e\xce\x17\xaa\x5a\xf4\x36\xbe\x8b\xac\x96\x54\x5d\xae\xbf\x7f\x15\x1f\xe7\x37\x18\x7b\xbd\xb5\xef\x22\xb4\xdd\xcc\xfb\x9b\xa0\xff\x5a\xdf\x17\xca\xdb\xa6\xeb\x6f\xde\x43\xf7\xff\xfe\xfe\x95\xbb\xde\xfe\x77\x11\xdf\xf2\x35\xbf\x25\x13\x67\xef\xd7\xbb\x84\xe2\x5c\x86\xbf\x1f\x6b\xbe\xcd\xf5\x8b\xc4\xf6\xaf\xf2\x5a\x8f\xf1\xf5\xfb\x25\x9f\x8f\x4d\xe3\x87\x06\x57\xef\xef\x3a\xd6\x6d\x7a\xbd\xd6\xb9\x2e\xa3\xb8\x3e\xff\xfe\x55\xb2\x28\xfc\x5b\xd6\x7a\x6d\xa2\x06\xef\x62\xb4\xca\xac\xfe\xbe\xad\xdf\xef\xfe\xbe\x73\xbe\x34\x9e\xc5\x88\xb5\x5d\x87\xff\x5d\xb2\x78\x4b\x9e\xdf\x12\xc6\x4b\xf7\x7a\x2f\xc2\x3f\x56\x7f\x7f\xf0\x68\xbc\xe5\x62\x32\x4d\xe5\x77\x0d\x46\x57\xfe\xad\xc1\xab\xa8\x7e\x71\x7d\xa5\x77\x97\x13\x87\x4f\x83\xad\x85\xc5\xd2\x64\x6b\x5d\x8b\xd9\x5c\x5e\x87\x63\xf8\x30\xd5\x75\x78\x77\x3d\x35\x6f\x5d\x87\x65\x36\xf7\x7f\xa0\xe0\xd1\x64\xeb\x3a\x2c\x26\xcb\x6f\xe5\x70\x8b\xe9\x7d\xeb\xda\x4c\xd3\xd2\xb7\xae\xcd\xec\xc5\xbf\x7f\x7f\xff\x6a\x9b\x17\x6f\xb1\xa1\x79\x88\x95\x7b\x17\x1f\xda\x76\x71\xc5\xef\x62\x44\xf3\x57\xff\x2d\x9e\x7a\xd7\xaf\xcb\xbf\x0f\xf5\xb7\xe8\x56\x33\x0d\x7c\x5b\x43\x61\xe3\xef\xe7\xda\x7c\x89\x54\x6f\x3b\xd0\xef\xb8\xfe\x5c\xeb\xeb\xcb\xb7\x48\x5b\xf9\x3a\xfc\x8b\xb6\x95\xfe\x35\xfe\xc5\xf1\xf5\xcd\xfd\xc3\x30\x98\xf8\xf4\xb5\x7f\xdd\xfd\xf7\xb4\xf6\xc3\xe3\xef\x79\xad\x8f\xfb\xeb\xeb\xb0\x36\x5f\xee\xbe\xe6\x33\x3d\xbe\xce\x61\x6d\xae\x5f\xc4\x46\xba\xae\xf4\xf6\xc5\xcd\x0d\x9f\x97\x7e\xb2\x3f\x3a\x9c\x7d\xcd\xc7\xcc\xef\xdb\xef\x75\xd8\x7d\x39\xfa\x4b\x59\xdf\x8f\x75\xd9\x72\x73\x79\xed\x4f\xd6\x7b\xf6\x0e\xce\x9f\x2f\xdb\xc8\xbf\x7f\xb5\xba\x69\x3c\x4b\x50\x68\xd3\xe7\x6f\x09\x0a\x79\x8a\xd8\xbf\xa3\xc1\x60\x69\xbc\xa3\xff\xfe\xd5\xfd\x7c\xbe\x63\x5d\xbe\xe1\xcb\x35\xe6\x22\x2e\x9e\xdf\x12\x34\xea\xf7\xf8\x16\x31\x37\x9f\xf5\x0e\xce\xdf\x57\xfb\x2f\xea\x2e\x8d\x77\xf2\x98\x7c\x95\xd7\x79\x6b\xe2\x16\xdf\x99\x57\x7f\xbe\x5f\x73\xdd\xaf\xe9\xf3\x38\xd7\x7c\xbe\x88\xff\x5c\xfb\x93\xbd\x9f\x93\xc7\xc1\xeb\x3f\x27\xea\x54\x7f\x8f\x0e\x58\xec\xd9\x3b\xd7\x7e\x8d\xe9\xfa\x75\xbf\x86\xd7\x6b\x2e\xe2\xfc\x75\x5e\xe6\x9a\xdf\xe6\xf3\x32\x5f\xea\xd5\xde\xe2\x33\xfb\xe6\xf9\x1d\x89\xc7\xd2\xe5\xcc\x7e\xaa\xbf\x25\x78\x95\x26\xfe\xff\x5d\xac\x67\x91\x96\x36\xbd\x8b\xf7\x6c\xd5\xeb\xbd\x98\xcf\x62\xed\xd5\xbb\xb8\xcf\x6a\xa6\xe3\x3d\xa0\x0f\x3e\x5f\xc7\xbd\xf6\xc7\xf4\xe7\x78\x90\x89\x34\xbf\x63\xd1\xbf\xee\xf5\x3f\xd7\xf8\xbb\xb8\xab\xf7\xe4\xfc\x49\x93\xf7\x9e\x8c\x5f\x8a\x86\xf7\x2c\xec\xb7\xeb\x2b\x9a\x61\xd7\x37\xfa\xd3\x7c\x4e\xf6\xe7\xab\xfd\x75\x9f\x9a\x89\xfd\x89\xe2\xd5\xfb\x77\x2e\x62\xdf\x9a\x7f\x7f\xae\xfd\xff\xea\xff\x5a\x65\x31\xf6\xef\xe2\x6a\xf3\x17\xbd\xb9\xd6\x7d\x99\xa6\x07\x8b\xcd\x6d\xc3\xeb\x73\xad\xfb\x5f\xbf\xca\x6b\x3f\x2c\x07\xbe\x8b\x0d\x2e\x3d\xb5\x3f\x7a\x5c\x16\x93\x5c\x9a\x89\xc5\x05\x71\xff\x6a\x7c\xc2\x59\x68\x32\xf0\xc9\x9b\x27\x7b\xdd\x58\x06\x5c\x7e\x98\x9c\x36\xfb\x82\xd8\xf9\xb2\xdf\x21\xe0\xba\x8c\x4e\xdb\xc4\xf2\x5e\xc4\x2f\x9b\x53\xb9\xd7\x4b\x5d\x3d\xbe\xbb\xac\xc5\xfa\x1c\xa6\xbc\xa1\x91\xfa\x30\x02\x79\xdb\x51\x4a\x7c\x68\x61\xde\x96\x88\xbc\x7f\x18\xf1\xbc\x2d\xbe\x69\x48\xc1\x9e\xd1\xda\x8e\xbe\xa9\xfc\x9e\x5f\x46\x91\xbc\xbd\xd7\xef\x5f\x33\x7f\x6e\x56\xde\xd7\x4b\xb2\xeb\xeb\x04\x2b\xfe\x39\x47\x39\x65\xc4\xa8\x0f\x1d\xca\x29\x87\xe8\x33\x3f\xe5\x45\x37\xd3\xe7\xda\xe5\xb4\xc8\xca\xcc\x1a\x6a\x5a\x64\x63\x6e\xc3\xe5\x07\x95\xb1\x7a\x5b\xd7\x6e\x6e\x1f\xb2\x96\xf3\x1c\x1c\x93\x4f\xf1\x42\x75\xeb\xe2\x3a\x34\x9f\x37\x3a\xe7\x2b\x68\x92\x8a\x15\x12\xac\x22\x06\x8d\xaa\xe2\xe2\xe4\x3f\x5b\x90\xf3\x05\x73\x53\x54\x9c\x90\x23\x15\x17\x75\xfa\x5c\xb6\x9c\x97\xdc\x34\xfa\x74\xd3\xeb\xb1\xd8\x35\xac\xb0\xef\xa8\xf6\x66\x94\xae\x85\x2d\x55\xc7\x58\x12\x3c\x87\x7b\xd1\xbd\xaa\x71\xdc\x8b\x6c\x34\x17\xd7\x41\xfc\x0c\xba\x3c\xff\x5e\x02\x28\xcf\xc6\x39\xfb\x6c\x6d\x79\xd6\xb9\xe9\xb9\xb9\xcc\x3d\xe8\xfe\x7e\x4d\x5a\x4a\x8e\xf2\x6c\x13\x3d\x8d\xeb\x79\x54\x3e\x44\xaf\x3c\x48\x08\xed\xa3\x42\x2e\x0f\x5a\x9f\x7d\xd3\x78\x30\x21\xa5\xcf\xe1\x28\xcf\x92\x10\xfa\x56\xf4\x7b\xb4\x35\x52\x14\x96\x07\x75\x4d\xf9\xec\x58\x79\x96\xc4\x90\xc7\x87\x48\x94\x07\x0d\xcd\xf7\xef\x17\x91\x6c\x43\xdf\x2f\x0e\xbd\xcd\xa4\x32\x1c\xf7\xd8\x5c\x5e\xf7\x7c\xf8\xfb\x75\x58\xcb\xee\xfe\x32\x8f\x8c\xd7\x6f\x71\xd0\x6d\x4b\x9a\x0f\x1c\xb4\x74\x89\xe5\x59\x1c\x73\x1e\xd3\xe5\xf5\xfb\x59\xd4\x5e\xb9\x51\x4e\x69\xbc\x25\x38\x78\xb7\x8f\xf1\x6e\xd7\xef\x17\x13\x9a\xa5\x26\x2f\x4f\x85\xe8\x0e\xcd\xbf\xce\x6f\x89\xae\x3c\x30\x95\x63\xfa\xfb\x45\x87\xda\xee\xef\x17\x1d\x1a\x4d\xe3\x59\x4c\x5c\xae\xee\x1f\xa6\x2d\x7b\x7e\x9d\x47\xc3\xfb\xb7\x98\xaa\xba\x79\x7d\x3a\xfa\xb3\x5d\xfd\x75\xfa\xdb\x34\xbf\xc5\xf4\x14\x3d\xa2\xe5\x59\x4c\x4c\x91\xee\xae\x3c\x83\xdb\xeb\xf3\xb5\x98\x92\x9a\xbc\x5e\xe3\xfa\x96\x50\xcb\xb3\x98\x94\x26\xc5\x7c\x79\x60\x4a\x24\x41\x97\x67\xae\xf3\x2d\x9d\x4e\x79\x26\x4c\xa4\xc7\xb3\xa8\x4b\xdb\x8a\xc6\xb3\x98\x92\xd6\x37\x8d\x7f\x51\x93\xb2\x55\xff\x3e\xc6\x93\xff\xe0\x11\x29\xcf\x84\xc3\xed\x6a\xec\x58\x12\x48\x9b\xba\x0c\x07\x96\x4a\x5f\xae\x63\x11\x71\xd9\x77\xca\xb3\x48\x5b\x6f\xc3\xbf\x5f\x8b\x3d\x8b\x26\xbb\x38\x88\x2e\xeb\x65\x79\x8e\x30\x66\xba\xbd\xf5\xa2\x36\x1f\xd6\x83\x47\x69\x73\xff\xcf\x12\xcf\x93\xda\x3b\xe1\x58\x7c\x99\x30\x6f\x4b\xfc\x2f\xcf\x05\x47\xee\xfe\xd6\x0b\xdd\x4a\xd1\x66\x2d\x6a\xda\xbf\x2e\xff\x22\x98\x79\x78\xbe\x8b\x26\x96\xcd\x9b\x71\x71\xd8\x3c\x3e\x1e\xcd\xd2\xb5\x19\xeb\x51\x6b\xc5\x87\xfb\xae\x2c\xbe\xfa\x5b\x74\xb1\x7f\x1d\xf6\x1b\x0e\x2b\x6b\xbd\x6e\x38\x7c\xaf\xc7\xcd\xa3\xbd\xab\xff\x9b\xc3\xed\xf1\x62\x29\x97\xc1\xa3\x3c\x4f\x46\x5d\xa0\xdf\x3f\x8b\xc3\x28\x3e\xbc\x4f\xe5\x30\x6a\x3c\xef\x5a\x9f\x91\x35\xde\x37\x41\x6c\x5c\x6e\x5c\x06\x1d\xce\xb7\x33\x7f\xf5\xbf\x9e\xd9\x56\x3e\x5a\xc0\xf2\x2e\xe2\x5c\x36\x5d\xce\x77\x11\xdb\xae\x67\xba\xfc\xa8\x63\x74\xd9\x50\xc7\x94\xad\xba\x7e\xad\xe7\xa6\xf1\xbf\xdb\x43\x7b\x59\xe5\x17\x75\xcb\x67\xfc\x2f\x5a\xf6\x4d\x87\x1f\x75\xce\xf8\x2a\xa7\xc5\x61\x4e\x11\xeb\x37\xaf\xf5\x98\xae\x5f\x6c\x43\x29\x53\xfd\xa1\x2f\xee\xd9\xf5\x07\xfb\xe7\x32\x1a\xe3\x0f\xd3\x52\x42\x9d\x51\xb2\xca\x85\x67\x50\xe7\x2f\xd4\x0d\xbb\x88\x69\xa8\x1b\xf4\xd6\x17\xd4\x0d\x5d\xfa\xea\xf2\x2e\xe2\xda\xd2\x70\xf9\xe1\x7b\xad\xe7\x22\xae\x6d\x68\xfd\xd1\x18\x34\x99\x28\x0b\x1a\x83\x26\xbb\x5e\x09\x8d\x40\xfb\x28\x5a\xcb\xbb\x88\x6d\x9d\x9e\x5f\x65\x3f\xbe\xda\x5b\xc4\x62\xf7\x7e\x21\xf1\x57\x11\x4f\x24\xea\x2e\x89\xaf\x84\x04\x3c\x74\xfe\x91\x80\xcb\x1c\x2e\x23\x51\x65\xf5\x8f\x44\xbb\x27\x97\x91\x88\x3c\xff\x45\x7c\x5b\xf1\xf9\x59\x9c\x56\x95\x3a\xab\x20\x91\xd6\xee\xf5\x1e\x21\xb1\xb9\xcc\x63\xec\xf3\x05\xb1\x2e\x7a\xec\x91\x30\x7b\xfe\xfa\xfd\xb1\xee\x7b\xd6\x78\x17\xf1\x2e\x75\x73\xfd\x8d\xba\x4c\xe3\x19\xb1\xfe\x2a\x43\xac\xb3\xee\x6b\x48\x84\xd5\xfb\xbd\x88\x71\xdf\x8a\xbf\x0f\x09\x42\xed\x2f\x09\xaf\x65\x7f\x0f\x7d\x93\xba\xac\x20\x21\xf5\xd9\xf4\x3d\x12\x4e\x6e\x5a\x0f\xe8\x5f\x29\xea\xff\x7c\x91\x38\xb5\xff\x8b\x97\xcc\x7e\x1c\x90\x40\xba\x1f\x6f\x24\x90\xda\xbd\x7e\xb0\x84\x5f\xf7\x11\x9e\x70\x7a\xbf\x2f\x1c\x75\xc4\x6c\x04\xd3\xbf\xf7\x3f\xb1\xa7\x17\x24\x80\xdc\x7c\xd8\x6e\xc4\x37\xbd\x9c\xef\x22\x86\xb5\xfa\xb0\xdc\x88\x5f\x7a\x39\xdf\x45\xfc\xaa\x5f\xb6\xf7\x8e\xc3\xa1\xf2\x83\xf8\x28\xce\xf1\x7d\xe2\xb0\xa8\xbd\x07\x83\x9d\x17\xef\x79\x21\xb6\x1a\xcf\xbb\x43\xfc\x55\xff\x2e\x62\x3a\xf5\xd8\xbd\x2f\xe2\xa5\x17\xeb\x45\xf7\xab\xc7\xe7\x7d\x0f\x58\xf3\x9f\xc5\xae\x1b\xc6\x45\x6d\x7e\xdd\xb6\x38\x8c\x43\xe5\x75\x99\xc4\x89\xd4\x6d\x8b\xc7\xc5\xe5\x45\xec\xe7\x87\xb8\xd6\x0d\x5d\xf5\xf8\x1c\xde\x8a\x88\x54\xd2\x57\x7d\x43\xdd\xa1\xfe\x17\x67\xd9\xa5\x8e\xa9\xdb\x7e\x70\xd8\x5c\x7f\xad\xc7\xe3\xb3\xfe\x75\xdb\xe1\x7c\xdc\x3f\xba\xea\xed\x43\xcc\xea\x96\x76\xc6\xeb\x32\xeb\xf3\x39\x4c\x75\x4b\xf1\x98\xaa\xbf\xd4\xd0\x05\x6b\x7c\xa9\xa3\xde\x70\xfd\xe2\x84\xeb\xd0\x78\x12\x02\xc8\x47\x48\xab\x5b\xe2\x32\x7a\xbc\x69\x8d\x57\x97\xa5\x6e\x70\xc6\x52\x57\x54\x3c\x75\xaa\xd4\x65\x75\x2b\x38\xcc\xec\xea\x6f\x11\xdf\x5c\xb2\xd6\x7f\x11\xdf\xdc\x92\xeb\x43\xd7\xab\xfe\x4a\x5c\x26\x8d\x3f\x88\xe9\xd0\xfa\x43\x3c\xbf\xfa\x83\x58\xf6\x4d\xed\xb5\xca\xe3\xa9\xfa\x1e\xeb\xa3\xf9\xf5\xe0\xdc\x34\x9e\x45\x1c\x9b\x3c\x3a\xea\xd6\x17\xf1\x28\x4d\xe3\x19\xa8\x4f\xab\xfa\x1f\x48\x1a\xbb\xf6\x6b\x70\x5e\x7c\xde\x26\xba\xfa\x5d\xeb\x85\x9c\x99\x3d\x9e\x89\xfa\x66\xe8\xfb\xc5\x7c\xf5\xe4\xfd\x87\xf9\x92\xcc\x5d\xb7\x13\xc9\xa1\xaa\xfe\x8c\xc7\xce\xf5\x6b\x7d\x76\xf7\x87\xba\x25\x67\x7f\x1f\xe7\x4b\xfd\xa3\xee\xd8\x92\xcb\xeb\xbc\xca\x1b\xb1\x6e\x8b\xf8\xd4\xe2\xf5\x47\x03\x91\xb3\xbe\xbf\xb9\xaf\x3e\x5f\x30\x5b\x9b\xc7\xbb\x98\xad\xb1\x65\x97\x0f\x38\x77\x8d\x07\xaf\xc3\xe4\xfd\x84\x39\xda\x8b\xf6\xe7\xe9\x48\x2a\x9a\xcf\x73\xaf\xf3\xef\xf5\x7a\x51\x4f\x66\xf5\xbf\x98\xa1\xba\x25\xfd\xfe\x0d\xfa\xf4\xa9\xdf\x91\x64\xf3\x87\xb9\xac\x3b\x92\xec\xd4\x7e\xec\x1b\xa2\xbd\xf6\x73\xdf\x60\xbe\x3e\x8f\x41\xc5\x1f\x2c\xeb\x31\x5f\x3b\xcf\xe3\xb3\xab\x1c\xeb\xa3\xef\xd7\x7d\x2d\xb2\xba\xd7\x9d\xfb\x25\x0f\xa2\x1a\x0e\x8d\x55\xf7\x79\xcf\x9d\xc7\x44\xed\x2d\xe6\xa7\xc8\x6d\xa4\xee\x30\x3f\x33\x69\xfc\xd8\x66\xb6\xa1\xf9\x95\x50\x17\xbb\x9c\x91\x6c\xaa\xca\xd0\xfb\xae\xf9\x15\x1e\xb3\xcd\xed\xe1\xac\x38\xd4\xdf\xba\xaf\x63\xdb\xff\x44\x72\xa9\x7b\xc1\xd2\xaf\xc5\xc7\x89\x32\xcb\x50\x54\x71\x9b\x2c\xdb\xee\xce\xd6\x61\x2f\x22\x1e\x7b\x41\xd7\x9f\x3d\xd8\x25\xd6\x16\x6f\xde\x8f\xed\x45\x8b\xbf\x2e\x7b\xc9\x9f\xc7\xa7\xee\x2d\xc1\xc9\xea\x7b\x6c\x13\xc5\xdf\xb7\x8e\x98\xad\xf6\xdb\xe0\xf2\x68\x3c\xd8\x2a\x4a\xf2\xef\x21\xd6\x3e\x0c\xed\xdf\x19\x2e\xeb\xde\xd0\x3d\x0e\xb7\x7f\x43\x2c\x35\x9f\x86\x2e\xdc\xe5\xbe\xf3\xbd\xc6\xdb\xb9\x2c\x3e\x1c\x70\x66\x9b\x0f\x5b\x0f\x49\xc8\xdf\xc7\x78\xd5\x5f\x47\x52\xab\xfa\x7e\x60\x28\x14\xb1\xda\xd1\xf5\x4f\x1f\x9e\xc5\x69\xf5\xdd\x87\x67\xa0\xe5\xe9\xda\x9f\x25\xe6\x96\xee\xdf\x2f\xb1\xb6\x88\xd3\xab\xb8\x1d\x36\x79\x4c\xd7\xfd\x80\x18\x8a\x38\xec\xe8\xb2\xbb\xf7\xe3\xc0\x50\xe7\xfe\x0f\xf6\x4b\xc4\x68\x47\x37\x3c\x3c\xdf\x93\xc3\x9f\x5c\x5e\xeb\xf9\xb5\x7f\x48\x8a\xf2\xc9\xae\x3b\x9a\xb6\xb9\xe9\xfb\x8b\xfd\xfb\xaa\x3f\x39\xcc\xae\x5f\xfd\x4b\xbd\x56\xf1\x54\x2c\x26\x66\xfb\x1d\xf5\x9a\xdf\x1d\x9c\xa1\xda\x5b\xc4\x6a\x6c\x5e\x0f\x98\x1b\xe9\xfa\xeb\x8e\x57\xf4\xd7\x78\x60\x66\xa4\x6e\xad\xfb\x0b\x31\xdc\x5d\xbf\x1e\x17\xf9\x86\xd4\x7d\x11\xb3\xb6\xfb\xf2\x2f\x66\xa6\xfb\xb1\xd8\xdf\x1b\x1f\xe5\x4f\x3d\xee\x85\x36\x9c\x57\x1c\x0a\x5b\xd1\x63\x80\x47\x61\x95\x0b\x61\xc5\xa3\xb0\x99\x98\xe2\x52\xd8\xb6\xec\xf6\x0e\x38\xf9\xae\xf2\x03\xb3\xa3\x32\x6a\xb7\xfe\x71\x19\xaf\x69\x67\xbf\x3e\x7e\x82\x15\x3f\xc1\x2e\xdf\xfc\x9a\x60\x46\x24\xd9\xd5\x84\x43\xd2\xe6\xf6\xd2\x84\xb9\xf4\xf7\xa8\x01\x37\x97\x1f\x24\x03\xcd\x27\xc7\x7c\x35\xde\x0c\xb1\xd2\x7d\xc7\x01\xb0\x4a\x32\xae\x29\x0c\xe1\x5e\x9f\x0c\xb3\xe7\xf9\x65\x24\x2f\xaf\xc7\x62\x5e\xb2\x1f\x7b\x3c\x06\xbb\xdc\xad\x97\x0c\x04\xe7\xaf\xf6\x4a\x8c\x57\xfd\xfd\xd0\x37\xb5\x5f\x38\xef\xd3\xe5\x9b\xfb\xab\xf5\xaa\x71\x9e\xd5\x7e\x65\xbf\x76\xad\x6f\x85\x19\xd5\x79\x4b\x75\x9d\xd7\xa1\xc7\x12\x1f\xc2\x5a\x74\xbe\xd2\xa2\x5f\xad\x0c\x8d\xaf\x85\x64\xa7\xf5\x69\xc1\x6c\x6b\xbe\xd8\x46\xbf\xea\x17\x3d\xea\xdb\x74\xfd\x0d\xb3\xad\xf1\x2f\x49\xb0\xcb\x1b\xba\xa6\x25\xf9\xf5\xe9\xf9\x8c\xce\xfc\x5d\x86\x39\x4f\x5a\x9f\xb1\xf6\xfb\xab\xbd\x81\xed\x7a\x1f\x7f\xf2\xb8\x24\xc4\xbc\xee\xc5\x0f\xc3\xa1\x88\x4f\x5a\x62\x9d\xbd\x46\x6a\x9a\x78\x51\xe8\x65\x4c\x10\x2b\x89\x69\x15\x8f\xc8\x22\xb5\x51\xc5\x23\xb2\x6c\x22\x3e\xe9\x98\x10\x0f\x4d\x16\x62\x26\x67\xab\x9a\x8e\x13\xce\x55\xdf\x13\x99\xd1\x75\x59\x13\x86\xa8\xe6\xc3\x74\xc1\xa9\x8b\x38\xa5\x2b\xc4\x48\x2d\xce\x15\xc4\x55\x8b\x03\x31\xeb\xbe\x2c\x17\x8b\xd5\xb4\xf9\x77\x82\x58\xa9\xff\xc5\x79\x15\x73\x1e\x09\xf5\xbf\x7c\xda\x2a\x91\x04\xb9\xee\xea\xff\x9e\x78\x61\x88\x38\xdc\xeb\x71\x9b\x5e\x0f\x24\xbd\xe6\xf9\x2f\xe2\x57\xaa\x38\x9d\x74\x63\x38\xf4\x78\x9e\x84\x8e\x5d\xf3\x7f\xc2\x1a\xa1\xf6\x9e\x58\x5f\xb5\xf7\x72\x78\x7c\x58\x97\x64\x57\x8a\x38\xe7\xf4\xc6\xe5\x55\x7f\x8b\x18\xb6\xaf\xf1\xbf\x5c\x36\x11\xdf\xf4\x42\x2c\xa6\xcb\x38\x76\xe8\x70\xe6\x0d\xc9\x51\xc4\x31\x2f\xe2\x37\xa4\xa6\xa8\x79\xe3\xb0\x8b\x19\xc8\x1b\x92\x87\x1e\xdb\x1c\x6a\x2e\x3d\x7e\xf9\xc7\xc6\x90\x55\x6e\x38\x7e\xb8\x8c\xa3\x87\x88\x75\xc6\xc6\xd0\xb4\x3e\x39\x6d\xa8\x1d\xd5\x5e\x82\x93\x16\xf1\xcf\x4b\xb2\xcb\x72\x93\xad\x19\xe2\x28\x07\xf0\x9a\x13\x6a\x09\x49\xb2\x19\xe2\xe6\xf3\x90\xf3\x9a\xff\x2e\x66\x23\x2f\x4e\x31\xcb\xb1\xa1\xe6\xb2\x7f\x7b\x51\xd5\x0c\xb1\x93\x0b\x70\xcd\x05\x35\x6a\xf7\xef\x83\x13\xd7\x78\xf1\xd2\x91\x21\xbc\x66\x22\x66\xa6\x88\x47\xc6\x4b\x67\x6e\xfe\xfe\xc6\x26\xa4\xf9\xd5\x9d\xf9\x68\xfd\x09\xa2\x19\x3a\xbf\x99\x28\x1a\x4b\xca\x19\x62\xe9\xfb\x9f\x2b\xcc\x9c\xf7\x73\x49\x82\x65\x88\x19\xcb\x8b\x39\xb4\x57\x58\xcd\xf5\xe1\xf1\x51\xff\x0d\xe3\x99\x24\xff\xdc\xc2\x46\xe2\x32\xcc\x6c\x55\x7f\x8d\xf3\xe4\xf5\xeb\xd8\xc4\x7c\x5e\x3a\x36\x03\xf7\xbf\x24\xcd\x5c\x9a\xeb\xb9\x9f\xd3\xbf\xef\x9c\x6f\xf5\xd7\xc3\xc6\xe4\xef\x5f\xee\xbb\xda\x1b\x4b\x32\x19\x3e\x4f\x73\x49\xd6\x66\xae\xb1\x60\x96\xe6\xf3\x3c\x0f\x34\x0f\xda\xbf\x45\x0f\x9b\x2c\xa6\x35\xe3\xa8\x60\x66\x2c\x1f\x38\x8a\xe8\xfe\xe7\x23\x1c\x79\xf4\xfb\x25\x89\x56\xa9\x15\x6b\xc6\x10\x5f\x7d\x1e\x50\x6b\x6d\xbe\x0f\x18\x3a\xe5\x85\x57\xb1\x74\xf6\xad\x68\x7f\x43\xad\xef\xf5\x86\x59\x53\xa8\x53\xcd\x30\x67\x53\xcc\x5a\xbe\x0b\x8e\x02\x1a\x4f\xa8\xf1\x25\x4c\xe4\xd0\x5c\x79\xbe\x8b\x9e\x95\xb9\xfd\xd1\xe3\x92\x17\x27\xd7\x36\x2f\xc6\x22\x66\x3d\x79\xb1\x17\x31\xb3\x0b\x61\xcd\x8b\x98\xe5\x2e\xe2\x9a\x1f\x16\xcf\x83\x7f\x96\xe4\xd3\x7d\x79\x1f\x74\x78\xe2\xf4\xf3\x73\xe2\xa5\xa0\xc5\x78\x2e\x5c\x04\xfd\x3d\xc4\xe8\xab\xfc\xf2\x78\xa9\x7f\x38\xcd\xe2\xf1\xbe\xa8\x85\xbc\x18\x2f\x3e\xf5\x3e\xbc\x2f\x62\xa0\x1e\xa7\x8c\xda\xcc\xf3\x2b\x8b\x73\x1c\x56\x03\x94\x2d\x0e\x6f\x57\x39\x22\xfa\x5c\x8f\x81\x53\x9b\x51\xb0\x29\x34\x49\x7e\x65\x0b\x4e\xbf\xaa\x8c\x64\x27\xe2\x52\x16\x67\xd9\xad\x96\x2a\x8b\xd8\x16\x19\x7c\x6b\xd9\x99\x9f\xc6\x5f\x82\xf3\xd4\xe3\x53\x76\xd6\x4f\xc4\xa7\xec\x10\x17\xa9\x95\xca\x12\xc3\x5b\x1e\xfa\x3e\x11\xaf\x28\xe2\x52\x52\x70\x5a\x1a\x1f\x2e\x9a\xbb\xdb\x4b\x18\xa0\x75\x38\x4b\xce\x10\x3b\x7d\x9f\x79\x3c\xb4\xbf\x05\xe2\x9b\xc5\xf9\x95\xc5\x49\x96\xe1\xf1\x2c\xb1\xbd\x9b\x13\x2d\xf9\xa1\x3d\x8d\x07\x97\x4a\xd9\xcc\x6a\x81\xb8\xca\x6b\xaa\x96\x45\x4c\xb3\x22\x2a\x2a\xc1\x7a\xbd\x48\x6d\x55\x90\x64\x87\xf7\xab\x85\x5a\x4c\xeb\x19\x92\xa7\xce\x4b\xe9\x8b\x19\x31\x31\x29\x8b\x38\x65\x3f\xbe\xa5\xe3\x75\xe8\xf1\x2f\x49\xb3\xcb\xe0\x5d\x4b\x67\x3f\xbd\x3f\x78\xad\x49\xe7\x5e\xcb\x20\x5c\x54\x8f\x6f\x19\xfc\xbe\xb9\xfe\xe1\xbe\x68\xbe\x13\xaf\x4b\xef\xff\x81\x9a\xce\xfb\x77\xe0\x52\xac\xc7\xa2\x1c\x61\x10\x57\x7b\xd8\x2c\x87\xd7\xf7\x24\x04\x53\xc4\xb8\x9c\x9c\x5f\xef\xef\x89\xcd\x50\x8f\x7b\xc1\x46\xe9\xc7\xb7\x5c\xc4\xa8\x8a\x58\x17\x24\xcf\xe1\xdf\x5f\x71\x1f\xd4\x3f\x3a\xfb\xaa\xc7\xad\x40\x4f\xe4\xcd\x52\xcb\x13\xeb\xab\xdf\x3f\xb8\x08\x7b\xbe\xeb\xbe\xe7\xee\xfd\x7b\xb8\x1f\xee\x6f\xdd\xe7\x2e\xd7\xfe\x5a\x90\x0c\x15\x54\x51\xeb\xba\xaf\x5d\xe1\x3c\xb5\x22\xf9\xc9\xa0\x5d\x2b\x92\x9f\x99\x2d\xe2\x66\x8a\xd5\x58\x44\xca\x14\x39\x98\x57\xa2\x50\x4a\x13\xb1\x27\x1c\xa4\x65\x49\x26\x35\x87\x1a\xba\xaa\xbc\x98\xa1\x21\x4e\xbf\xe2\x52\x9c\xa5\xa6\xab\xa8\x9d\xac\x76\xab\xa5\xa1\x26\xd3\xef\xc3\x0b\xd7\xfd\xaf\xc7\x3f\xcb\xe6\x5c\xeb\x92\x8c\x4a\xf2\x78\x6b\xd8\xc8\x3f\xeb\x51\x1b\xfb\xad\xfb\x54\x3b\x6a\x60\x31\xd7\x15\xb5\x6d\xd5\xe3\x56\x79\x4c\x8b\xc7\xcb\x79\x35\x73\x5f\x91\x64\x72\x57\x7b\x03\xe6\xa6\xfb\x7b\xbc\x58\xeb\x9f\xc4\xa9\xd4\x8a\x01\x4a\xe1\x51\xb5\xce\xe0\x94\x34\x79\x5e\xea\xa1\x97\xb3\xce\x0b\xe2\xa2\xc9\xce\x1b\xef\x0a\x75\x7e\x74\x7e\xaf\xf6\x90\x54\xb2\xc4\xba\x7a\x84\x37\x8d\x16\x6f\x5d\x96\x22\x97\xd5\x5a\x7f\x2e\x8b\xdb\x7b\x30\x90\x6a\x3c\x48\x26\xe6\x4c\x08\xfd\xa8\x59\x92\x4c\xc5\xc0\x3e\x75\x39\xeb\x8d\xcd\x40\x9c\x45\x45\x8d\xb2\x35\x97\xc3\x86\xa1\xdf\xaf\xc7\xb4\xca\x9f\xbe\xd6\x27\x74\xf2\xda\xcc\x97\x18\x2f\x6f\xc6\xe2\xec\x9b\x1c\x1c\x2a\x11\x1e\x5d\x2e\xa4\xb5\xa1\x93\x95\x43\x41\x6d\x3b\x5e\x6d\x9b\xcb\xa1\x03\xff\xac\x27\x61\x1b\xd5\xeb\xd9\x22\xa8\x5c\x9c\x4c\xcb\x8c\x47\x9c\x4f\xcb\x0d\xce\x5d\xed\xc1\x99\x76\x49\x36\x04\x67\x94\x4d\x97\xb7\x35\xfc\xd1\x35\x9f\xd6\x89\x5f\xd0\xe1\x6c\x1c\xb6\xe9\xf2\xe2\xbc\xaa\x5c\xd2\x6b\x3b\x30\x70\xeb\x31\x6e\x07\x92\xa5\x24\xb5\x76\x86\xfb\x99\xfa\x3b\x31\x10\xeb\x71\x6c\x70\x56\x56\xfb\x34\x02\x72\x37\x5d\xae\x76\xe3\x3d\x25\x62\xdf\x6e\x02\xd2\x44\x3c\xdb\x8d\xb7\x8a\xc7\x77\x43\x8c\xc4\xec\xb4\x27\x38\x5f\xcd\x6f\x31\x23\x59\x2e\xf1\xb5\xbd\xa8\xe1\xa4\xf6\x6c\x6f\x3c\x5e\x9f\xf9\x74\xbc\xc5\x14\xb8\x55\x7b\xe8\xdc\xf5\xb8\xf4\x2d\x24\x3f\x7f\xcf\x63\x2f\x62\xdd\xb7\x30\xd0\x7f\xfa\xef\xe8\xe0\xe5\x62\x57\xfb\x1e\x3a\x6f\xd7\x43\x3c\x74\x9e\xfb\x3e\x38\xef\x4d\xe5\x7f\x17\x0f\x52\x7b\xc2\x5b\xcd\xdf\x27\xe2\x47\x74\x3f\x7a\x26\x1e\xa2\xb8\x8c\x24\xaa\xf3\xd9\x23\x5e\x42\x92\x41\x07\x5a\xc0\xeb\xd1\x4b\xa8\x49\x34\xff\x90\x94\xf4\x38\x74\x24\x25\xb9\x90\xd7\x5e\x1e\x24\x77\xfd\xfe\xc7\xe1\x40\xfd\x57\xd4\x8c\xba\x8f\xbd\xc1\x1c\x68\x3f\x7a\x83\x59\x95\x4d\xa6\xe3\xa2\x5f\xdc\x7f\x8b\x90\x03\xad\x5f\x7b\x70\x60\xd1\xfc\x97\xa4\x93\x9b\xe7\xd7\x83\xd9\x55\x7b\x3d\x6c\x82\xda\x1f\x5c\xd4\xfd\x18\xf6\x31\x68\xcf\x65\x1c\x8e\x3c\xbe\x19\x8f\xb5\xda\x3f\xb0\xd1\x78\xff\x8f\x44\x7f\x5a\x4f\x5c\xa8\x15\x58\x5f\xfb\x15\x92\x90\xc6\xfb\xa3\x49\x51\x7b\x48\x22\x5f\xe3\xbd\x08\x39\xd8\x5c\xff\x10\xdc\xa8\xf1\x60\xd3\xb6\x5a\xab\x3f\xc1\x9c\x68\x7e\x30\xdf\x66\x1e\xfb\x8b\x01\x5f\xcc\x6f\x7f\x17\x7d\xb6\x30\xd1\xb9\x0f\x7e\x3c\xfa\x8b\xe4\x23\xfa\xd6\x5f\xe8\xa5\xee\xdf\xd8\x90\xd4\xeb\xfc\x93\xc7\x65\x6c\x18\xa0\x8b\x7f\x8c\xc1\x53\xc4\x6e\x04\xb1\xd4\xe5\x18\x5c\xae\xfa\x55\xcf\xe3\xa1\xc3\x34\x70\xc5\xec\x52\x53\x8c\x7d\x5d\xfe\x5d\x9c\xd4\x48\xe8\xbc\xdd\x5e\x2a\xbc\xb4\x49\xe5\x0e\x31\xf3\xf7\x07\x87\xd7\xf5\xb8\xb0\x6a\xb3\x06\x91\xa5\x53\x87\x7d\x64\xda\xd7\xe6\x8e\x45\x8c\xdb\xd7\x78\x17\xa7\x51\x92\x0e\xc7\xc8\x10\x17\x89\x89\x03\x4e\x79\xb8\x7f\x5c\x27\x37\x11\x97\xb1\x38\x8d\x5c\xc5\xb9\x0d\xd4\x10\xd5\xf5\xa8\x19\x6c\x83\x18\xa8\x19\x52\x77\x99\xc3\x2c\x4e\x71\x10\xaf\xe3\xcb\x32\xe0\x4c\xb2\xd7\x83\xf8\x1a\x79\x07\xd7\xd1\xc2\x80\xab\xf1\xad\xcb\xd9\xfd\x98\x8e\x88\x3f\x11\xe7\x34\x3a\x62\xb3\xd4\x3e\x03\xce\xc6\x36\x80\xd1\x71\x55\xd5\xe5\x1d\x23\x1c\x3c\x5c\xae\xc4\xef\x68\xbd\x06\x36\x06\x71\x42\x63\x22\x09\xe8\x31\x1c\x33\x0c\xd0\x3a\x0f\x73\x3d\xbe\x33\xbb\x9e\x78\x0e\x1d\xf6\x11\xf1\x08\x92\xac\xc6\x62\x46\x4a\xd6\xe3\x38\x8e\xe0\x04\xd5\xff\xe2\xcc\xab\x6d\x70\xe3\x0c\xe6\x41\xfb\x7f\xe2\x97\x9c\x5d\x7e\xb0\x49\xa8\x7c\x71\x3e\x92\xd6\x07\xe7\xeb\x4d\xcc\xd0\xc0\x05\x5f\xae\x9d\x75\x5c\x3c\x5e\x5e\x4f\x1e\x3f\x05\x3f\xd6\x71\x43\x3c\xbc\x7e\x37\xf1\x5b\xe2\xa4\xc7\x3d\x70\x99\xd7\xfc\xee\xb0\x69\xba\x3d\xd4\x8e\x1e\x3f\x6a\x51\xab\xf5\xc6\x83\xda\x46\x9c\xf7\x78\xce\xef\x60\xc3\x3a\x1e\x5c\x53\x7d\xf9\x97\xa4\xdf\x14\x1f\x5d\x07\x36\x21\xeb\xf8\x07\x9c\xbf\x82\xf7\xea\xc0\xe0\x6d\x4e\x75\x04\xf3\xa4\xc7\x6b\x6e\xe1\x0a\xfc\x69\x6f\xee\xa8\x61\x45\x8c\x26\x6a\x4c\x05\x3b\xd6\xb9\xe3\x00\x21\xce\x7c\x86\xda\x52\xeb\x35\x77\x98\x8b\xe9\xf2\x85\x0d\x4f\xdf\x27\x6c\x88\x5a\xff\x99\xfa\x77\xf0\x64\x9d\x09\x07\x03\x9d\xdf\xb9\xe8\x43\x2f\xd9\xf5\x78\xbf\x89\x1e\xcc\x70\x30\x29\xae\x7f\xf0\x96\xfc\xcc\x77\x42\x2f\x14\x32\x51\x67\x26\x98\x50\x92\xd5\x44\x12\xb1\x24\x30\x4b\x30\x4f\xfa\x3e\x1e\x63\xaf\x57\x81\x39\x10\x33\x36\x0b\xae\xe1\x62\xfe\x26\x8f\xf1\x9c\xae\x0f\x6f\x34\xad\xef\x7a\x9c\xbb\xd0\x51\xea\xe4\x71\xf6\x63\x33\x6b\x30\x83\xfa\x3d\x0e\x2d\xd6\x14\xcd\x45\x6f\xba\xd5\x86\x13\xfa\x62\x49\x6c\x86\xda\x52\xf4\x66\xb6\xd0\xf4\xe8\xfb\xd6\xb9\x4f\xfe\x9e\xf5\xf5\x7a\x2e\xe6\xb4\xe5\xb6\xfd\xc9\xe3\x32\x1b\x9c\xa5\x1e\x97\xd9\x40\x23\xd0\xe1\x9b\x04\xe3\x29\xd8\xba\xce\x9e\xbf\x23\x63\xeb\x24\xb8\x4e\xa8\x36\x75\xf6\xc1\x65\x76\xfd\xcd\x61\xd6\xe1\x81\x73\x98\xba\x3c\x73\x40\x2c\x86\xcb\x04\xeb\xf9\x70\x8d\x88\x2c\xd6\xe6\x42\xcc\x36\x11\xbb\x39\x39\xcc\x92\x0c\xe6\x64\xb3\x75\xb9\xe6\xc4\x06\x22\xe2\x3f\x71\x9d\xce\xde\x3c\x88\x9b\xd5\x0c\x13\xef\x1c\xab\xc5\xe6\x89\x8d\x46\x92\xc8\x5c\xc4\xab\xdb\x1b\x6a\x9e\xf1\x78\x6a\xf1\x89\x23\x91\xab\x75\x9d\x11\x5c\xe4\xf6\xae\x30\xe0\x69\xbe\x57\x44\x0a\x6b\x7d\xee\x50\xb3\xb8\x1c\x6a\x1d\x8d\x0f\x62\x56\xba\xeb\x0b\x9c\xb2\xc6\x77\xd3\xbe\x0f\x3b\x92\x9b\x75\xe8\x73\x49\x6e\xd9\xc4\x77\x62\x00\xb7\xda\x66\x3e\x8d\x48\x63\x8d\xff\x41\x2d\x23\xce\x68\x3e\x07\x6a\x48\x97\x91\x64\x7d\x7e\x50\x6b\x34\xf7\x8f\x1a\x72\xfa\xf2\x86\x2b\xb3\xd4\x1a\xf3\x25\x38\x52\xcc\xc7\x81\xb7\x4e\x12\xf1\x39\x30\x78\x5b\xb2\x3d\x40\xf8\xb0\xda\xe5\x08\x4e\x5f\xc4\xe7\xd8\x61\x06\xc4\x5c\x1c\xa8\x39\xec\x7d\x77\xe0\xbd\x33\x75\x7e\x0f\x22\xc3\x05\x01\x53\x0f\x0c\xd8\x42\x54\xa8\x47\x18\xb0\x35\x9f\x23\x87\x4e\x5a\xf5\xa8\xfd\x14\x65\x54\x8f\x82\x37\x90\x88\xe5\x51\x60\xce\xba\xcb\x3c\xce\x62\x66\x0e\x2e\xff\xd0\xf9\x3b\xb8\xec\x66\xc6\x8e\x16\x6a\x4c\xf5\x17\x0e\x1c\x3a\x5f\xc7\xc4\x26\x22\x62\x71\x10\xec\xa8\xb8\xa6\x7a\x1c\xe8\xd4\x3d\x3e\x6c\x96\x76\x20\x38\xae\xe0\xe4\xb5\x7e\x17\xe7\x49\xcc\xcd\x11\x3a\x7d\x11\x97\xe3\xba\xf0\xfe\x54\x19\x35\x58\x93\x9a\xe5\x00\x45\xae\xb9\xbd\x07\x35\xb2\x98\x9f\x73\x8b\xe0\xe9\xaa\xf2\xe4\xfc\xb8\x1e\x88\x0f\x3d\xfe\xe7\x16\x9a\x0c\x95\xb1\xc1\xc9\x95\xbf\x9e\xd8\xcc\x84\xaa\x50\xcf\x25\x99\x55\x6b\x1a\x4e\xbc\x13\x87\xfb\x47\xb2\x52\x24\x7f\x3d\x51\xb3\x0a\xe7\xa6\x9e\x15\x49\x4a\xe7\xef\xac\x38\x18\x7d\xfd\x9e\xc7\x47\xf7\xed\xac\xa8\x65\x75\x3e\xcf\x8a\x0d\x2f\xf9\xf7\x3c\xfe\x5f\xed\xdd\x68\x06\x34\xfe\x8a\x8d\x55\x92\xfe\xd9\x42\x2d\xa6\xf6\x43\xb2\xf3\x7c\x71\x0d\x6f\x6e\x6f\x11\xfb\x6a\x9b\xe6\x49\x70\xb4\x90\x20\xea\x89\xcd\xaa\x7a\x3d\x71\x48\xda\x93\xeb\x03\x50\xcf\xe5\x70\x88\x52\x7f\x3d\xbc\xd1\x3e\xfb\x79\x0e\x98\xf3\xf6\x27\xc1\x92\xf5\x1c\x1d\x9b\x84\x16\x17\x6f\x81\xda\x5d\x5e\x2f\xef\xd0\x65\x38\x09\xea\x11\x70\x4e\x3d\x09\xea\x51\xb4\x62\x3d\xc7\x8b\x2b\xa2\x7e\x8f\x81\x6c\x13\xe7\x78\xce\x0a\x67\xaf\xf6\x66\xa8\x61\xb4\x58\x33\x5c\x63\xfd\x3d\x41\x62\xde\xac\xf5\x58\x34\xeb\x98\x4f\x22\x89\x6d\x93\x38\xb9\x5c\xbb\x37\x87\x48\x62\x8b\xc5\x27\x62\xac\x60\x15\xea\x79\x40\xac\xbd\x78\x5c\x46\x7b\xb3\x9c\xeb\x31\x6a\x36\x70\x9d\x18\xe4\x84\xb3\x56\x4f\xd4\x44\xf2\xbb\xaf\xe7\x01\x67\x22\x4e\xf1\x3c\x79\x2c\xba\xcb\x88\xd9\x52\x43\x9c\xa1\x46\x12\x31\x3c\x4f\x20\x8e\x36\x7f\x0f\xb1\xf7\xe1\x21\x52\xb7\x17\x7f\x0f\xb1\xf2\x7c\xce\x97\xc3\xa5\xc3\x74\x85\x98\xac\xdf\x2f\x62\xd2\x9a\x0f\xdb\x15\x62\xbc\xfa\xbb\x82\x33\xd5\xfe\xc1\xd9\xdb\x06\x74\xf2\x58\x5a\x4d\x7a\x12\x27\x64\x03\xe1\xb9\x88\x4f\xdd\xdd\xfe\x7a\x2c\xcb\xd7\xfe\x10\x0c\xdb\x7c\x59\xee\xb0\x89\xb9\x1c\x62\xbc\xbf\x47\x92\x90\xda\xe3\xc4\x01\xc2\x3a\xff\x33\xd4\x9a\x3e\x5f\x0f\x06\x7c\xaf\x1f\x36\xc4\xec\xdf\x3f\x04\x8d\x89\xf8\x9e\x3f\xae\xae\x5a\x9f\x45\x1c\xab\x0d\xdc\xe7\x13\xfd\x6b\x7e\xd8\x0c\xac\x86\x38\x17\xf1\xac\x96\xbc\xcf\x1f\xc9\xc2\xfd\x41\x1c\x3d\x9f\x07\x07\x0e\xdf\x1f\x24\x0d\xab\x55\x4e\x5c\xeb\xcd\xa9\x9f\x2f\x41\x7a\x1e\xef\xfb\xef\x60\x4d\xea\x89\xab\xbd\xd5\x6e\x17\xb0\x5e\xb6\x09\x5c\xa8\xf5\xac\xa6\xb9\xb0\x41\x08\xbc\xaa\x5e\x78\x9f\xd9\x26\x73\xa1\x89\x48\xd3\xf5\xd8\xb0\xb2\xeb\xb1\x49\x35\x97\x51\x93\x89\x38\x5f\xd8\x34\x84\xa4\x59\xaf\xed\xfd\x86\x5d\xa9\x57\xc0\x7f\x69\xbf\x2f\x1e\x0b\xab\x89\x2e\x24\x9d\xac\xc7\xfe\x42\xb3\x21\x14\xd7\x7a\xa5\x60\x06\xf5\x7b\x6c\x20\x0a\x62\xad\x17\x71\x4b\x66\x4e\xaf\x8c\x66\x45\xeb\x77\x65\xbc\x2f\xc5\xdc\x5e\x78\x9b\xf5\xaf\x32\xcc\xc8\x70\x19\xef\x3b\xaf\xcf\x8f\x43\x87\xfa\x0b\x87\x0e\xa9\xa9\x2e\x82\x46\x85\x44\x52\xaf\xc5\x5c\x64\x33\x03\x57\x09\x58\x18\x97\x61\x86\x3c\xff\x12\x71\x36\x9a\x7f\x41\xb3\x20\xef\xd3\x0b\x4d\x89\xd5\xa4\x17\x8f\x9f\x6d\x2e\x17\x71\x4b\x36\xf0\x5f\x2d\xbc\xf5\x34\x1f\xbc\x73\x6b\x73\x39\xd4\xfe\x5a\xcf\x06\x12\x82\x98\x89\xab\x61\x13\xcf\x2e\xbf\x20\x3d\xfc\x91\x41\xff\xea\xfb\x37\xa6\x4e\xbd\xc0\xd3\xb3\x77\xd7\x35\x03\x53\x47\xf5\x33\x5e\x42\x2d\xde\x81\x4e\xd5\x87\x01\x98\x05\xc1\xc4\xd4\xeb\xe0\x31\xf2\xef\x8f\xe0\x9c\xb5\x38\x27\x98\x46\x7a\xc9\x2f\xd4\x1e\x5d\x62\xe4\x75\x86\x9a\x41\x8b\x81\xeb\xab\x1f\x97\x0b\x62\x2b\x4c\x9e\x7a\x01\x83\xa0\x08\xe6\x7a\x2d\xc9\xa2\xd9\x9b\xe8\xc2\x80\x59\xbd\xd8\x37\x06\x69\x8f\x1f\x1d\x66\x16\xf1\xbe\x1e\x88\xb9\x0f\xd3\x1b\x71\x40\x1a\xef\x1b\x3a\x73\xad\x07\x9c\xb9\x89\xed\x85\x2b\xaa\x89\xcf\xbd\xe1\x1d\x24\x49\xec\xe6\x72\xda\xc0\x76\x47\x10\xa1\xc6\x77\xef\x48\x2e\x5f\xe5\x82\xda\x29\xab\x8c\x6b\x70\x71\x99\xa0\x47\x8d\xff\xde\x71\x25\x14\xe7\x7a\xa7\xe8\x5f\xe3\x09\x83\xbe\xf6\xe7\xc6\x35\x53\x41\x7a\xf5\x2e\xec\x97\x0c\x9a\xf7\xe2\xfc\x4a\xd6\xe1\xbf\x1b\x6a\x0f\x3d\x9e\x37\x92\xb0\x2f\xef\xdd\xc2\xa6\xa5\xf2\x88\xc7\x68\xa8\x7c\xb2\x7e\x2a\x4f\x5c\x8d\xc5\xd9\xde\xe1\x3a\xed\xf6\x81\x09\x11\x8c\x47\xbd\xb1\xe1\x59\xed\x76\x9f\x78\x5b\xe9\x71\xb9\x7f\xce\x83\xcb\x17\x6a\x20\xb5\x7f\x02\x5b\x22\x62\x7c\x5f\x11\xa7\xa3\xf6\xc3\x7b\xd0\xfd\xdf\xac\x77\x72\xf9\x46\x4d\xa3\xf5\x24\x4e\xc3\x36\xc3\x1b\xd7\xe7\xe6\xfd\x78\x02\x8b\x4f\xeb\x81\xc1\xdb\xae\xef\xf7\x03\x0c\x52\x75\x3d\xae\xed\x7a\xec\xef\x27\xe2\x90\xb4\x5e\x0f\xfb\xe5\xfd\x41\x72\xdc\xbc\x3e\xef\xfe\x8d\x89\x55\x6f\x82\x66\xad\xe6\xb8\x5f\x6c\x8c\x22\xbe\x37\xe7\xdb\xcc\xd2\x8d\x8e\xbe\xb9\xff\x50\x9b\x7d\xb5\xff\x7c\x63\x6c\xd5\x87\x38\x32\x41\x61\xd4\xe7\xc7\x86\xb5\xab\xcc\x63\xb9\xbb\x3e\x24\xdf\xcf\xfa\x05\x62\x81\xe3\xce\x9e\x78\x7c\x24\x29\x80\x40\xd0\xb7\xdd\x65\xbc\x97\xc4\xc9\x3f\x3b\x41\xd8\xba\x1f\x0f\x92\xa8\x5d\x69\x1f\xd4\x66\x96\xcc\x40\x2c\xa8\x45\xf4\xef\xc1\x81\xa5\x7a\x3c\x04\xdd\x5a\x6d\x04\x82\x41\xcd\x7a\x9c\x9f\x8c\x83\x87\x98\x97\x27\xe3\x6d\xa8\xf3\xf2\x60\xe3\xb2\x4d\xf2\x41\xad\xd6\x75\x1f\x41\x30\xe8\xb6\x01\x3d\xa8\xd9\x6c\x13\x7b\x08\xfd\xb0\x4d\xe6\xa9\x10\xff\xe6\xf2\xea\xcf\xf4\xea\x69\x3b\xeb\xa1\xdf\xb7\x30\x7b\xa8\x7f\x1c\x00\xac\x76\x7d\xfa\xbf\xc3\x44\xab\x20\x10\x74\x7b\x53\x3e\xa1\x99\x6a\x2e\x77\x1e\xaf\x3f\x32\xe8\x3f\x88\x45\xf6\x4e\x78\x3a\x06\x68\xe9\x98\x9f\x7e\xc2\xa9\xbb\x3e\x88\x9f\x16\x13\x8c\x26\x07\x05\x3d\x03\x57\xd1\xe1\x7a\x0c\xf8\x9e\xdc\x20\xa8\x48\x87\x37\xe0\x06\x4c\xfc\x1e\x24\x17\x1b\xa8\x9f\x25\x99\x64\x21\x04\xd4\x67\x06\x67\xac\xfe\x8e\x78\x0c\x5c\x0e\x62\xaf\xc3\x07\xe6\x90\x6d\x28\x20\x04\x64\xbb\x22\xff\x20\x02\xe8\x72\x3e\x67\x78\x7f\xa8\x7f\xe2\x3a\xb2\x0f\xe7\x19\xc4\x5b\x9b\x01\x31\xb3\xd8\xff\xf0\x98\x59\x6d\xf2\xa0\x76\xc8\xe2\x24\x9e\xf0\xb6\x11\xa7\xf5\x44\x9c\x87\x24\x81\x40\x08\x28\x3e\x8c\x77\xb8\xba\xaa\x3d\x82\x5e\x85\x40\x5d\x41\x00\x28\x42\x64\xad\x0f\x6a\x30\xab\x11\x1e\xb0\x51\x5a\xf5\xf7\xe1\xfa\xa9\xfe\x08\x72\xdd\xc4\xe9\x3d\x70\xfa\xb6\x51\x81\x00\x90\xfd\x78\x3d\x8b\x13\x2f\x76\x50\x78\x70\x7d\xb6\x8d\x82\x08\xff\x3a\x45\xac\x88\xf0\x6f\x7d\xf7\xf7\xec\xa7\x2f\xcb\x8b\xab\xb6\x0e\xf3\x1b\x9c\xb7\x24\x2f\x00\x1a\x8b\xc7\x43\xc4\x7f\x37\x27\x15\x11\xfc\x82\x2a\xae\x44\xec\x57\x01\xf7\xd4\x77\xcf\xdf\x00\x82\x15\x00\xc6\xe6\x38\xa7\x77\x0f\xc9\xcc\xdf\x73\x7e\xbb\xdb\x03\x0e\xa5\xfa\xf7\xa8\xf5\xb4\xbf\x00\x30\xb6\xee\xf6\x13\x41\xb3\xba\xbc\x2f\x39\x00\x2c\xf9\x03\xa0\x58\x14\x11\x5f\x01\x40\xac\xde\xaf\x37\x73\x1f\xb4\xbe\x20\x06\x64\x13\x3b\x10\x03\xba\xd7\x2f\x22\xfe\x8b\x24\x43\x00\x05\xb3\xef\x23\x18\x81\xc5\x06\x76\x10\x00\x8a\x1f\x0b\x30\xfd\x8a\x22\xfc\x2b\x98\x7e\xbd\x8b\x39\x23\xc2\xbf\x4f\xed\x2f\x11\xfd\xcd\x71\x71\x60\xec\x75\x1b\xe4\xc1\xcc\xab\xd3\xeb\x83\x0e\x3f\x79\x7f\x51\xeb\xd8\x26\x12\x18\x7a\xb5\xbb\x1c\x71\x4e\x2e\x87\x03\x89\xdb\xc7\x9b\x54\xf7\x15\x84\x80\xbe\x79\xfc\xa8\x81\x36\x3d\x76\x6f\x0f\x62\xad\xf1\x77\x10\x0b\xa4\x96\x05\xd3\xae\x57\xcf\x0f\x84\x80\x5d\x8f\x43\x60\xd8\x39\xce\x2c\x30\xec\x84\x6c\x5e\xdf\x50\x13\x89\xbe\x80\x41\x57\x9b\xe8\x03\x88\x00\xdd\xcc\x4f\x20\x02\x08\x33\xb0\xbe\x23\xbc\x29\x35\x5e\xbc\x07\xb3\xd7\x23\x82\x6e\x7d\x5e\x50\x8b\x26\x31\xbb\x60\xc4\x95\xec\xf3\x87\xeb\xb4\x1d\x9e\xc0\x8c\xab\x66\x46\xc1\x7c\x6b\xf6\x4e\x03\xe3\xad\x58\x0d\xf9\x2e\x61\xa1\xda\x9b\x11\x8c\xb6\x6e\xc9\x3a\x30\xda\xb6\xfe\x47\x06\xfd\x17\xce\xaf\xf9\xf0\x1e\x21\x06\xaa\x31\x24\x07\x7b\x17\x01\xa8\x56\x92\xd4\x04\x01\xa0\x66\x9b\xcb\x4b\x02\x91\xe9\xcd\xc6\x5b\xe2\xeb\xf2\xe1\xed\xe5\xa0\xb7\xf7\x0a\x6f\x04\x4d\x36\xe0\x55\xc4\x09\xbe\xf8\x5d\x2b\xe2\xbf\x82\x18\xd0\xbe\x0e\x0b\xc4\x31\xfb\xf2\x2e\x4e\xae\x67\xb7\x47\x9c\xc7\xee\xc5\x45\x92\x18\x52\xf3\xbc\x44\xec\x0a\x90\xb0\x6d\x10\x2b\x05\x81\xb5\x88\xb8\x17\xb1\x69\x11\x71\xaf\x88\xe2\x46\x44\x7d\x29\x9f\xc7\xb0\x6d\x20\x68\xa7\xa6\x72\x0a\xd7\x69\x97\x81\xa3\xf9\x48\x2a\x6d\x03\xdd\x55\x71\x0d\x8d\x88\xf9\xaa\xa0\xb8\x46\xc4\x7c\xfb\x6e\x2f\x1c\x0e\xa6\xca\xf8\xed\x27\x8d\x97\x88\xdc\xd2\xd5\x1e\xa8\xd5\x82\x27\x69\x11\x21\xdf\x37\x8d\xbf\xb0\x5f\x9b\xfa\xab\x78\x57\x4d\xd5\xd7\x80\xff\x51\xfb\x35\x0c\xfc\xea\x1f\x78\x11\x61\x51\xb5\x2d\xb0\x9c\x3e\xc4\xb5\x6d\x10\x9f\x99\x55\xdf\x08\x1a\x9c\x9a\xff\x12\xcb\x87\x38\xd9\x46\x04\x7d\x17\x67\xd8\xb6\x16\x3a\x61\xb7\x87\x9a\xa3\x6b\x3d\x1a\x41\x84\x4d\xfb\x07\xa0\xe7\xee\xf5\x6a\xb8\xba\x4e\xcd\xbf\xc5\x63\xa4\xf2\x22\x4e\x43\x71\x1a\x2d\x22\xec\xe7\xd0\x7c\x47\xa8\xbd\x5c\x1f\xae\x9e\xae\x27\x48\x32\x6b\xfd\x26\x0e\x16\x59\xed\xa3\xf6\x95\x5a\xa8\x6d\x13\xef\xb7\xea\x72\x3c\xfe\x9a\x1f\x71\x13\x82\xd3\x69\x5b\x78\x27\x25\xad\xcf\x91\x61\xf6\xd4\x1f\xae\xcb\xc9\xed\x1d\x60\xa1\xed\xda\x1f\xd4\xb2\x8a\xdb\x68\x44\xf4\x57\x49\x02\x8d\x88\xfe\x92\xbc\x7e\x67\x78\x23\xaa\x7f\xe0\x46\x24\x89\x35\x72\x0d\x65\xa9\x39\x1b\xf9\x83\x8a\xd0\x72\x5b\x24\x10\xda\xbd\xdf\xa8\x55\xfb\xae\xf9\xe1\x30\xf1\x35\x1f\x1c\x24\x86\xf7\xfb\xc6\x06\x55\x5d\x46\xed\xbc\xe9\xf7\x37\xae\xc1\xbe\x3f\x81\x00\xe2\xfd\x0d\x04\x90\xa9\xf5\xc1\x7b\x2a\x7b\x3f\x91\xe4\xa4\x86\x6b\x1b\x92\x5b\x2e\xae\x47\x4d\xbf\xb9\x9e\xf3\xdd\xd4\x3f\x6a\xc8\xf2\xf5\x7b\xe8\x8d\xf6\x9b\x08\xff\xaa\xc7\xb2\xfd\x44\xf4\x6b\xfc\x3b\x9a\x0a\x31\x13\x6d\x27\x34\xa1\x7e\xd4\xac\x6d\xdf\x98\xdf\xd4\xef\x71\x98\xe8\x5f\xe5\x88\xe8\xd7\xf7\xe0\xf9\xcb\x66\xd7\x40\x04\xc8\x75\x57\x39\x21\xf9\x7e\x24\x8f\xb6\xe7\x08\x1a\x9e\x2a\x03\x9f\x33\x5d\x0e\xb8\xa7\xaa\x32\x68\xce\xda\x9f\x3d\xe3\x1d\xf8\x47\x36\x97\x16\x29\x91\x92\x1b\x03\x88\x4e\xf0\x13\x0d\x78\x80\x22\xe0\xb5\x46\xf8\x7f\x93\x5a\xa1\x11\xe1\xdf\xa4\x86\x6a\xe4\x45\xca\xe2\x94\x5b\x24\x46\x2a\xd9\x65\x5e\x6a\x11\x93\x48\x8d\x24\x3f\xec\xb6\x23\xf6\x29\x37\x54\xdb\x31\x80\xc9\xa0\xdf\xf6\x1a\xae\x99\xda\xcc\x16\x6a\x0b\xb5\x8f\x41\x4c\x6a\xb9\x06\xa6\x64\x2e\x6e\x2f\x92\x2d\xe9\x31\x20\xe2\x3f\x0b\x7e\xa6\x11\xd1\xdf\x7c\xd8\x89\xd8\x2f\x32\x80\xb6\x9d\x20\xaf\xe4\xf9\x76\x0e\x8f\x0f\x4b\x0f\xc9\x46\xed\xf7\xb8\x6c\x6a\x1f\x2c\x25\xd9\x10\x96\xcc\x03\x71\x50\xfb\x03\xd7\xd5\xcd\xf5\x18\x08\xa7\xd6\x6b\x84\xf7\x95\xfa\x43\x6d\x59\xbc\x7f\x13\x83\xb7\xfb\x83\xd8\x25\x1f\xde\x49\x9c\x8a\xc7\x37\xc3\xa0\xaa\xf5\x9c\xe1\x1d\xa2\xf6\x8f\xf0\x4e\xd1\xfa\x41\xbc\xe4\x4a\xde\xf6\x03\xf8\x8b\xa4\xf1\xe2\x5a\x2e\x35\x56\xdb\x03\x3b\xee\xab\x0c\xf3\xe2\xc3\x7f\xc2\xf9\x8a\xd8\x07\x02\xc0\xdc\x5d\x3e\x70\x7d\x55\xff\x67\xb8\xbe\x6a\xbe\x04\xd1\x2a\x69\x55\xdb\xb1\x01\x49\x12\x6c\x7b\x48\x8a\xde\x2f\x1c\x2a\xb2\x1e\xb7\x3d\xf0\x35\x9b\xbf\x0f\x35\x93\xda\x7f\x02\x7d\x57\x65\xe2\x2e\xe4\x30\xd2\x88\xe0\x2f\x5f\xf7\x01\x35\x92\x80\x07\x5b\x44\xf4\x77\xef\x07\xde\x5a\xdb\x70\x79\xad\xcf\xd7\x7d\x78\x83\xb8\x7c\xda\x8f\x88\x7e\x79\xff\x34\x22\xf6\x8b\x32\x10\x34\x22\xf6\x0d\xdd\xde\x88\xd8\x2f\xca\xb5\xd4\x48\xfb\x53\x15\x34\xd8\x52\xa4\x4b\xe9\x6e\x1f\x49\x5b\xf7\x23\xed\x91\xd7\xc3\x65\x88\xb5\x1e\x8f\xb4\x83\x5d\xa5\xf3\x91\x22\xc8\xb5\xb8\x1c\x36\x8d\xa1\xf2\x8b\x6b\xb3\xda\x23\xa8\xb5\x7a\x7c\x29\x32\xf0\x55\x95\xb1\x49\x69\xbf\x88\xf0\x6f\xad\x6a\xfc\xa0\xc0\x2a\x74\xa0\x91\x0f\xa8\xc8\xc6\xd5\x40\x00\x30\x74\x7d\x4b\x39\xee\xaf\xfa\xc3\x66\x22\x1b\x49\x4b\x38\x00\x54\x11\xeb\x54\x88\xf3\xd1\xe3\x47\x84\x7f\x95\xf7\x67\x23\x27\x50\x1f\x22\xce\x09\x6f\x30\x65\x2f\x6a\x44\xfc\x1b\x2a\xbf\x45\x84\xbf\x6c\xd8\x2d\x45\x10\xeb\xd0\x78\x40\x7b\xf7\x63\x92\xc2\x81\x4a\x8f\x41\xea\xa8\x35\xc5\x3c\x24\x80\x32\x77\x8f\xa7\x47\xff\x5a\x2f\x0c\xf0\x72\xf0\x68\x44\xe8\x57\xc5\x3d\xb5\x14\x88\x20\x1e\xdf\x08\xfa\xa0\xfe\x41\xf7\x6e\x5e\x1f\x24\x2f\x33\xbb\x04\xdd\xd7\xf9\x47\xb9\xba\x1a\x11\xf9\x35\xbb\xb3\x30\xb8\x8b\xf8\xa5\x19\x3a\x57\x2d\xc6\xc4\x00\xe8\xc5\x59\x9c\x57\x97\x81\xb2\x11\x61\xdf\xab\x17\xeb\x64\xb3\xbc\x38\x67\xa8\xc1\x34\x58\xbc\xb1\xe4\xfd\xd0\x48\xad\x57\x05\xe5\xdd\x12\x9c\x50\xf2\xe5\x42\xcd\xb4\x7b\xb3\xe0\x84\x86\x88\x67\xba\xf0\x1e\x12\xb1\x8d\x88\xfc\xe2\xc3\x80\xa4\x34\xbf\xca\x01\xcf\xa0\xf1\x5e\x18\xec\x44\x3c\x13\x6a\x29\x01\x07\x36\x22\xf8\x73\x15\xe7\x97\x6e\xd4\x42\xd9\x65\x80\x12\xb3\xbf\x0f\xe0\x4a\x8d\x0f\xc9\x6b\xf7\xe6\x11\xe1\x3f\x77\x7f\x8f\xc3\x82\x88\x59\x44\xf8\x9b\xb8\x92\x1f\xb0\x48\xa7\xdb\x52\x18\x8c\x45\xbc\xd2\x83\x0d\xc1\x87\x0f\x03\xb2\x52\x17\xb4\x14\x06\x64\x11\xbf\x04\xdc\x89\x1f\x5b\x22\xfc\xf3\xf4\xfa\x02\x5c\xd9\x4d\x2c\x5e\x0c\x8c\xdd\xe5\x58\xaf\x4f\xff\x39\xb0\x99\x34\xbf\x1c\x41\x6c\x1f\x35\x44\xcb\x5b\x38\x88\xa8\x1c\x79\x44\xc4\xcc\xe4\xc4\xe3\x2e\x62\x41\xc4\x7c\x9b\x7a\x2c\x72\x0e\x07\x0e\xf5\x07\x76\x99\x1c\x28\x5a\xce\x11\xb1\xde\x54\x0e\x57\x52\xd5\x13\xf1\xae\xa0\xd0\x96\x61\x76\x14\x57\xd4\x32\x41\x6d\x72\x5d\x6d\x99\xd4\x12\x4a\xf5\xd0\x32\xae\x9f\xd5\xbf\x6f\xe8\xa0\x75\xde\x23\x02\xdd\xcc\x5a\x6e\x3c\x86\x3a\xdf\x19\x1d\xf7\xd4\x63\x44\x44\x79\xdf\xbf\xea\x71\xd5\xd5\xe3\x9f\x3b\x71\x60\x3a\xff\x44\x98\x57\x05\x59\xb6\x8c\xb7\x65\x15\x31\xcd\xe1\x90\xf3\x55\x3f\x59\x5f\xcd\x67\x84\x77\xa8\xfa\x47\xcd\xe2\xfd\xce\x13\x9b\x92\xee\x33\x11\xea\x59\x6a\xce\x96\x01\x62\xfc\xaa\xff\x51\xab\xa8\xbd\x63\x47\xed\xa5\xfd\x05\xf8\x56\x6a\xb4\x46\xc4\x7a\xeb\x5e\xef\x83\xf3\x35\xfd\x7b\x1c\x16\xf4\x18\x66\xd4\x30\x8a\x63\x6a\xf9\x88\xa4\x9e\x2a\x5f\x20\x84\x0c\x8d\x1f\x6f\x37\x65\xa1\x6c\x00\x7b\x67\xa9\xf5\x1a\x68\xdc\xc5\x8f\x71\xc0\x71\x77\xaf\x2f\x08\x1c\xbe\xaf\x99\x38\xab\xe1\xf5\xbb\xc3\x4c\xa0\xf5\xfe\x91\x94\x34\x1e\x82\x42\x9b\xc7\x1b\x41\xa1\xae\x7f\xc3\x1b\x4f\xfd\xbd\x01\xa7\xa4\xfe\x5e\xe2\xde\x3e\x36\xed\x56\x82\x19\xd0\x7d\x8a\xa0\xeb\xa1\xf9\x17\xf2\xec\x08\x68\xb4\x95\x70\x05\x2f\x2e\xc3\x8c\x68\x7d\x0a\xae\xdf\xca\xe2\xd9\x4a\x02\xb8\xd6\xf5\x09\xfa\x22\x66\xa7\x24\x98\x7b\xed\x6f\xc9\xa0\xdf\x6f\x7f\x24\xb9\x10\x31\xdd\x15\x64\xd8\x0a\xae\x75\x4d\x9c\x64\x69\x1b\x9c\xb5\xea\xc1\xf2\x6a\x5f\x65\x2e\x7f\xd5\x60\x70\x65\xb3\xda\xa5\x10\xa4\xa4\x38\x95\x56\x26\x06\xbb\xa2\xc5\x8b\xc7\x4d\x9c\x4c\x99\xb8\x9e\xba\xbd\x19\xf0\x30\xbb\xca\x78\xa3\xe8\xf2\x45\x44\xb3\x74\xd8\xad\x80\x95\x65\xce\xbe\x04\x27\xad\x97\xb9\x1c\x21\x09\xb9\xfc\x70\x98\xf5\x7b\xf2\x34\x58\x2d\x51\x4e\x92\xf2\xe8\xf2\x97\x13\x03\xb4\xe7\x03\xea\xf2\x26\xce\xa5\x44\xde\x03\x71\xde\x05\x35\xa0\x5c\x65\x5b\xb9\xf0\x43\xd7\xe5\x2e\x17\x92\x9e\x1e\xd3\x12\xa9\x0a\xdc\x1f\xa9\x0a\xa4\x23\x6f\x05\x03\xb3\x5c\x7f\x5b\xe1\x31\x53\xde\x89\x56\xee\xc0\x06\x52\x7f\x37\x3a\x78\x8f\xef\x09\x07\x0a\x1d\xbe\xf0\xa6\x9a\x2e\x03\x17\xb3\xa9\x3d\x5c\x4b\xa5\xb6\x6c\x05\x03\xb3\x39\xcb\x12\x71\x16\xfe\x3e\x22\xaa\x3d\x3e\x0c\xc4\x43\x9c\x4f\x44\x58\x9b\x33\x2e\x04\xa1\x2a\x6e\xa1\x91\xd3\xb0\xf8\xb1\x8d\x08\x6c\x05\x45\xb6\xc8\x01\xa8\x38\x80\xf6\x93\xc8\x4f\xfb\x4f\xea\xbe\x22\x57\xf2\x56\x43\x8d\x28\x62\x4e\x7a\xbe\x3e\xb4\xff\xe4\xe7\x2b\x4a\x1d\xd1\x22\x22\x7b\x7a\x3c\x04\xa9\x56\x11\x17\x92\xf0\x65\xb9\x2e\x37\xb2\xf0\xb5\xac\xcb\x57\xf3\x44\x12\x56\xfb\xe1\x8d\xf4\xb1\x29\x36\x22\xb8\x8b\x1f\xdb\xfa\x93\x4c\x59\xdf\xe3\x6d\x24\x6f\xc0\x56\xe1\x94\x15\xc4\xda\x2a\xde\x44\x8a\x00\x6f\x95\xb8\x89\xd1\x5d\x0f\xf1\xd1\x79\xa9\xc4\x49\x08\x78\xb1\x11\xf1\xdd\x84\x85\xd7\x2a\x36\x16\x79\x6f\x35\x22\xc0\xbb\xf2\x16\xb5\x1a\x79\x8b\xf4\x98\xd7\xc8\x5b\x24\x35\x4f\x6d\x48\x6e\x52\x53\xd5\x16\x92\xaa\xda\x23\xb4\x41\xde\x95\xad\xf2\xb8\x5a\xcd\x52\x3b\x36\x30\x3d\x46\x95\x38\x2d\xc1\x3f\xb5\xda\x23\xaf\x93\x7f\x1f\x8f\xa7\xeb\x09\x32\x74\x3d\x90\xf6\x7e\x6c\xea\x08\x03\xb5\xda\x1f\x04\x61\x4b\x12\x8a\x88\x74\xab\x0d\xeb\x08\x1b\x8f\xe6\x17\x08\x0a\x52\xbb\xd5\x89\xc1\xdc\xeb\x19\x36\x0f\xef\x27\xa1\x0f\x66\x3e\x6a\xa0\x22\xfb\x3c\xcc\xc8\x07\xe9\xf6\x71\x78\xd1\xfd\x27\x81\x62\x35\xb3\x5c\x8f\x7f\x97\xf4\xab\x55\x42\x29\x76\xaf\xdf\x11\xeb\xa3\xf6\x40\x70\x30\xbd\x25\x28\xbd\x6f\x7a\x0c\xeb\x01\x70\xa7\xef\xc7\x89\x2b\xbe\x24\x4f\x32\x23\x16\x01\xb5\x36\x52\x23\x3a\xc9\x58\x23\x35\x62\x9d\xdb\x1f\x49\x2e\x35\xbc\x65\x36\x2d\xde\xc5\xe2\xf9\x72\x5d\x81\x4d\xa5\xc1\x5c\xe1\x87\xae\xc9\x5c\xe8\xa0\x45\xdc\xc8\x60\xd8\x86\xd4\x24\x15\x62\x68\x1d\x64\xc5\xb5\x54\x49\xb9\x5a\x7d\xb6\xef\x8c\x68\x8d\x08\xf9\xb2\xf9\xf2\x04\x64\xbc\x2f\x03\x6a\x8a\xe4\xc3\x4f\x1c\xc6\xac\xfe\x1e\xec\xb2\xe9\xf6\x51\x0b\x14\xff\x9e\x08\x6a\x49\x16\xf5\x8d\xa0\x38\x8d\x2f\x38\x0b\x71\x02\x15\xec\xad\xdd\x9b\xfb\x46\x7e\x07\xf5\xf7\x86\x8e\xfc\x73\x98\x88\xd0\xcf\x02\xea\x6c\x2d\xbc\xc3\xb4\xb9\x44\xec\x17\x8f\xb7\x61\xa0\x1e\xe2\x14\xda\x06\x2a\xb2\x88\x1d\x49\x1c\x8b\x92\xe2\x37\xb2\x38\x76\x65\xf8\x6e\x0d\x35\x86\x1f\xdf\x86\x24\xa0\xb8\x81\xd6\x22\x6d\xb7\x0e\x07\x08\x01\xb5\x48\x0d\xd0\xf6\x8a\xcd\x63\xaa\x0c\x56\x94\xd4\x08\x24\x7e\xac\x8a\x7b\x69\x0d\xec\x2e\x41\xdc\xb7\x96\x02\x45\xd5\xf5\x1d\xd7\x63\xcd\x2f\x22\xca\xf5\xd8\x36\xbc\x73\xaa\xe7\x0b\x22\x81\xf2\xa9\xb4\x86\x4e\x58\x71\x13\xad\xe5\xc8\x47\xa1\xf6\x50\x83\x0c\xf7\x8f\x1a\x64\xdf\x5c\x7f\x30\x7e\xcd\x2f\x50\x99\x25\x89\xb6\xc8\x7d\xaf\xc7\x91\x4c\x95\xb5\xbb\x3d\xe2\x50\x6c\x73\x69\x91\x7f\x64\xf8\xf7\xd8\xe4\x3c\x7e\xf2\x87\x58\x47\xdf\x2a\x11\xde\xd9\x65\xe2\x88\x24\x69\xb6\x0a\x90\xa6\xd7\xb7\xc6\xfa\x6a\xbe\x2d\x5c\xa5\x55\x8f\x0d\xca\xcc\x4d\x23\x82\x5d\x10\xfa\x8d\x6c\x99\x7d\xec\xfe\x7d\xb8\xaa\xab\xbf\x60\x06\x7d\x1e\x03\xc8\xd5\xfb\x85\x1a\xc6\xcc\x14\x19\x34\xb3\x25\xbf\xd6\x23\x23\xa4\xe6\x03\x8a\xb4\x1c\x00\x5a\x03\x35\xba\x7b\xbf\x02\xdb\xcb\xe3\x05\xb8\x55\x0e\x17\xad\xc1\x7c\x0a\xde\xa5\x35\xd4\x32\x53\xf7\xb5\xe1\x4d\x68\x7a\xd3\x80\xcc\x9f\xbe\x3f\x03\x35\xae\xc7\x8f\x9a\x78\xd3\x63\xd7\x22\x9f\x89\x1e\x83\x86\x1a\x47\x41\xb8\xad\x01\x91\x6f\xe6\xa7\x91\x34\x6d\xe8\x71\x6a\x33\x98\x17\xb7\x17\x70\x3f\x1a\x3f\xde\x8b\x26\xc6\x0d\xc9\x6c\x17\xfd\x6c\x41\xdc\x45\xff\x5a\x40\xea\x4b\x6d\xde\x40\xb1\xae\xde\x7f\x42\x13\x2c\xb9\x81\x70\xd1\xeb\xd7\xf7\xa4\xe0\x10\xfd\x6b\x60\x8f\x7d\xed\xe7\xf9\x40\x8f\xd4\x7f\x24\x68\xd2\xe3\xd0\x08\x1d\x50\x10\x7c\x6b\x68\x7a\x92\xf7\x8b\x38\x26\xc5\xa1\xb5\x16\xde\x90\xa6\x2f\xa4\x00\x51\x5c\x60\x6b\x64\x4b\xda\x6b\xfa\x93\xc7\xa5\xdd\x81\xa2\xa9\xc1\x3d\xa8\x81\x44\x8c\x1b\xf9\x6d\xbf\x2e\xeb\xbb\x7d\xa7\xbf\x6c\xed\x85\x13\x91\xce\xb6\x81\xe5\xb5\xc9\xc0\xd5\x16\xb1\xce\x56\xa3\xb4\xc8\x0f\x62\x62\x40\x90\x9d\x0d\x6e\xc0\x73\x34\xab\x69\x80\xe7\x68\x36\xd8\x35\xe0\x08\xbe\xdb\x0b\x1b\x84\xeb\x41\x01\xd5\x61\xeb\x1b\x92\x97\x36\x27\xe0\x3d\x14\xc4\xd9\x80\xf3\x70\xfa\xce\xd6\x03\x71\x20\xb9\x3e\xf2\x5d\xb8\x4c\x8a\x01\x11\xdb\x0e\xb1\xce\x9a\x4f\xdf\xc3\x01\x42\xed\x05\x0a\xad\x88\x6b\xdf\x03\xde\xc1\xbf\x0f\x49\xe5\x33\xff\x9e\x08\xba\xd4\xe5\xed\x10\x6b\x79\x47\x35\xe0\x3f\x9c\x5e\xb4\xf5\x14\x41\x74\x5d\x65\xbc\x51\x74\x59\x3b\x99\xb3\xb7\xaf\x72\x40\x94\xab\xff\x44\x04\xbc\x88\x7b\x87\x98\x9b\xf3\xed\x41\xcc\xfd\xfb\x08\x22\x74\xff\x78\x33\x59\xac\x26\x5d\x6f\xb7\xda\xa7\x97\x08\xca\x74\x39\x92\x6b\xa9\xbd\xf0\x5e\x12\x73\xd2\x4b\x64\x64\xd4\x7c\x6a\xc4\x09\xe9\xf7\x35\xe0\x61\xa6\xca\x70\xa6\x9e\x0f\x9c\xb9\x5c\x65\x5b\x0f\x14\xee\xea\x7a\xbc\x1d\x3d\x1e\x88\xbb\x39\xdb\x8e\x37\x92\x2f\x6f\xc7\xaf\xff\x6b\x3e\x01\x37\xb2\xbb\xbc\x63\x83\xd2\xf7\x81\x5d\xe6\xf3\xd7\x43\x0d\xac\xf5\x42\x0d\xe6\xc7\xba\x87\xda\x4b\xc4\xaf\xc3\x89\x9b\xf3\xed\xa0\xda\xda\xa6\xd9\xc3\x1b\x53\xf7\xa3\x07\x62\x82\x88\x19\xf0\x25\xc5\xc4\xbb\x8f\x50\xf3\x69\x3c\x70\xe2\x56\x13\x03\x6f\x52\xb2\x98\x97\x3e\x03\xf8\xd5\xf5\x38\x08\x78\x3d\xd1\x24\x74\x9f\xe7\x89\x5a\x56\x8f\x73\x27\x5f\x89\xe0\x83\x5a\x3f\x00\xba\xd5\x63\xd7\xcf\xc0\xba\x53\x7f\xa4\x08\x98\x9e\xef\x19\x6a\x62\x7f\x1f\x19\x55\x35\x7e\x88\xe7\x26\x49\xb6\xa3\xe6\xf2\xe3\xd4\x23\xae\x4a\xf4\xac\xdf\x61\xe3\xd1\xf7\x91\x74\x50\xcc\x60\x27\x28\xd9\x8f\x61\xbf\x43\xad\xa6\xf9\xe2\x7d\x99\xbd\xbe\xd0\x4b\x4b\xba\x1d\x2c\xc5\x29\x1b\x62\x47\x4d\xad\x20\xe9\xd6\x03\x1b\xd1\xe7\x6f\xd1\xcf\xb2\xfb\xbe\xbe\x71\xdf\x34\x1e\x52\x8a\xd8\x26\xf6\x03\xdf\xe2\xfb\x40\x1c\x94\x99\xdd\x8e\x5a\xcd\x0e\x19\xfd\x0d\x57\x6b\xff\x9e\x7c\x2c\x7a\x7c\xc6\x1e\x0e\x3e\x55\x65\x80\x70\xf5\xb8\x0c\x42\x1b\x6c\x13\x1a\xd0\x2f\xe5\x77\x6a\x23\x80\x60\xfb\x9f\xa4\x33\x6e\x03\xb8\x85\x39\xfd\xe3\x70\x65\x55\xe3\xa8\x09\x92\x88\xf7\xc8\xe1\xba\x5c\x54\x9e\x88\x6d\x1a\x5c\x46\x2c\xd6\xe1\x19\x39\x0c\x5a\x6a\xaf\xc4\xe5\x74\x19\xc9\x41\x8f\xc5\x28\x61\x30\x54\x7f\x64\xb6\x53\x3e\x8f\x36\x48\x11\x60\x4e\x6d\x00\xf1\xaf\x7c\x0d\x6d\x44\x1c\x86\x88\x71\xc0\xb3\x64\x5d\xae\x01\x31\x32\xb1\x04\xae\xa5\x08\x12\xbe\x8d\xc6\xe5\x90\xce\x75\xf4\x80\xbf\xd1\x7c\x41\x55\x2d\xae\x1f\x3b\x90\xf1\x6a\x0f\xd7\x44\xb9\xde\xb6\x41\x50\x69\xef\x6a\x1f\xb5\x9f\xfc\xee\xdb\xc0\xe0\x2e\x57\xed\x36\xd6\x65\xce\x4d\x87\x6b\xcc\x78\x7c\x34\x7e\xc4\x68\x45\x98\xb7\x71\x90\xbc\x47\x9c\xf4\x80\x93\xb2\x9a\x6c\xe0\x8a\x2d\x6c\xb1\x16\x70\x2b\x96\x0c\x06\xa8\xac\xc9\xe3\x3b\xc2\xb5\x56\xdf\x9f\x70\x6a\x9e\xcf\x19\x71\x37\x5a\x5f\xe2\x92\xaa\xf7\x03\x57\xee\xed\xab\x8c\xb7\x91\x0f\x6f\x04\x69\x7a\xfd\xae\x48\x61\xa0\xf9\xfc\xa0\x56\xfb\x7b\xb0\xb1\x7c\xd8\x41\xb1\xee\x5e\x9f\x9b\xfc\x3c\xd3\xe5\x8a\x43\x86\xd6\x13\x1b\x97\xbd\x87\x02\x8e\xe5\xeb\xbc\xa0\x53\xdf\xbd\x1f\xb8\x6a\x2b\xee\xa9\x0d\x24\xeb\xe4\xcb\xf8\x10\x84\xe8\xcb\xfa\x84\xf7\x94\xeb\x81\xef\x11\xa7\x3e\xde\xb0\x69\xaa\xfd\x37\x6c\x20\x9a\x0f\xae\xd9\x8a\x9b\x69\x93\xfc\x22\xca\x67\xd4\xe6\x86\xe4\xbe\xb9\x1c\x36\xb5\xaa\x72\xa8\x75\x3f\xeb\x35\xf7\xd8\x7f\x7d\x1f\x92\xa4\x1e\x9b\x09\x5c\xd2\xf0\xf7\x19\x54\x5e\x31\x5f\x93\x38\x8d\xec\xfe\x4a\xd8\x1c\x3e\xe3\x9f\xf1\x98\x8b\x5e\x04\x1c\x89\xbc\x3b\x5b\xc0\x91\x28\xd3\x62\x03\x8e\x24\x2b\x65\x42\x9b\x15\xc4\x0c\xad\x7f\xc0\x93\x28\x03\x6d\x9b\x3c\xfe\x4d\x92\x12\x70\x25\x45\x71\x4d\x6d\xb6\x00\x1e\x55\xfb\x2d\x24\x23\x8d\x1f\x87\x1c\xc1\xb3\xb4\x40\x1c\xb1\x9a\x1c\xc4\x91\x56\xa7\x7f\x8f\xc1\x5b\xf4\x61\xf6\xc8\x67\xa3\xf9\xc3\x0c\x28\x4e\xae\x81\x40\xd2\x4d\xbc\x67\x27\xd9\x96\xe7\x47\x68\x85\x99\x85\x39\x43\xf2\xd5\x78\x26\x36\x0d\xd1\x93\x40\x0c\xf1\x63\x3a\x43\xcd\x25\x66\x73\x1e\x21\x99\xe9\xf7\x27\x6a\x77\x31\x27\x81\x18\x62\x4d\xd2\x04\x81\x41\xe9\x98\xdb\x0c\xd4\x78\xb7\x4f\xf2\xc3\xa9\xf3\x3a\xaf\x40\x24\x51\x7b\x17\x0e\x48\xa2\xef\xf3\xc7\xe6\xac\xf5\xe3\xbc\x8f\xfd\x8f\x6c\x2e\xc0\x79\xe4\xea\xc5\x7a\x03\xb5\x58\x93\x79\x83\xb8\xb9\x8c\xf7\x87\x0c\x56\x07\x41\x53\x82\xcc\x6e\x07\xde\x2a\x36\xa0\x01\xd7\x51\x84\x62\xdc\x8e\x3d\xd2\x13\xbb\x9e\xb8\x16\xff\x9e\x20\x29\x1b\x24\x0f\xb0\xc9\x4c\xfc\x80\xef\x68\x36\x70\x1d\x29\x72\xf7\x17\x95\x03\xee\x41\xf5\x99\x88\x67\x5d\xde\x23\x83\x65\xa5\xcb\x71\xac\xc7\xb1\x2a\x39\x56\x3b\x88\xe0\xb5\xeb\xe1\xc1\xe3\x68\x07\x80\xa3\x14\x38\x21\x97\x89\x73\xd1\xe5\x3d\x0a\x06\x4f\x11\xdf\x03\xc8\x73\xa1\xae\xb6\x63\x5d\xce\x6a\x4e\xf0\x00\x6b\x4c\x10\xf5\xed\xe0\xf2\x65\xf7\x0f\x3c\x84\x75\xa6\x47\x8b\xc7\x52\xbf\x47\xcd\x61\x35\xe6\x81\x37\x88\x20\xb9\xdb\x31\x90\x1c\xbd\xfe\x70\xba\x26\x4e\x07\x99\xf7\x7c\xd8\x8e\x01\x67\x2f\xe2\x7c\xa0\x36\x50\x50\x6d\x3b\xc0\x0e\x9b\xe2\xd4\x0f\x10\x0f\x2c\x79\x1c\x47\x04\xa1\x69\xbe\x3c\x3e\xca\x55\xde\x8e\x33\x50\x97\x35\xbf\x2b\xfc\xf6\x55\x7f\xe1\x50\xe0\xfd\x88\x74\xd6\x7a\xdc\x0e\x92\x4b\xd9\x06\x73\xdc\x41\x4c\xf4\x7b\x5c\x49\x4d\x6c\x0e\x38\x39\x3f\x6e\x27\x71\x33\xf6\x16\x3b\xc9\x87\x32\xc5\xfc\x00\x37\xd2\x04\x5c\xd9\x4e\x5c\xd1\xb3\xce\x0b\xf0\x23\x45\xe9\xb9\xdb\x49\x82\x6c\xeb\xc4\xcf\x48\xde\xa6\xf1\x9d\x29\x50\xb7\xd5\x1e\x40\xa4\x42\xa1\x6d\x27\xc9\x9f\x94\xdc\xa9\x9d\x19\x20\x4f\x11\xc7\x13\xd7\x4f\xc5\x5d\xb5\xb3\xa0\x49\xd0\xfd\x3b\xc9\x57\xd2\xdd\x3f\x41\xaf\x8a\xdb\x69\x67\xe4\x57\x12\x71\x01\xfe\x24\x4f\x31\x77\xc0\x8f\x54\xef\xe7\x09\xb0\xa4\x0d\xc6\x27\x58\x76\xb6\xf9\x00\x4f\xb2\xe4\x6b\x95\x23\x2d\xb3\xbf\x87\x59\x90\x03\xc5\x89\x4d\x46\x08\x05\xed\x04\xb5\x5a\xc9\xae\xda\xd9\x23\xa5\x84\xe6\x47\x5c\x8a\x89\x1d\xf0\x24\xd9\x92\xc9\x09\x6a\xb5\xf2\xc3\xb4\xb3\x03\x9f\x22\x62\x7c\xe2\xe0\x60\x07\x97\x73\x04\x90\xad\xc6\x07\x30\xab\x32\x89\xb6\x40\x20\xb1\x77\xd4\x89\x77\xa6\x20\xef\x1b\x08\x22\xf5\x6b\xbe\x38\x34\x55\xef\x07\x71\x23\xc2\x66\x6c\x67\x64\xce\xd5\xf9\x3d\xc3\xc6\xe1\xfd\xc4\x15\xdc\xde\x9d\x20\x72\x94\xe4\xf3\x74\x86\x37\xae\xfa\x3b\x89\x13\x94\x0d\xe6\x24\x17\xbe\xb0\xe4\x1a\x88\x1c\x4d\x69\xbc\xdb\x09\xaa\xb5\x82\x28\xdb\x0f\xc2\x86\xdb\x0f\x07\x07\xb7\x17\xde\x91\xc9\xf5\xa8\x01\x25\x49\x9d\x48\x86\x66\x9e\x40\xd8\x28\x79\xfb\x93\x38\x97\x16\xf0\x1b\xd9\x87\x07\xf8\x8d\xdd\x83\x03\xbf\xbf\x7b\xb2\xc4\x91\x28\x5f\x49\x0b\x78\x0b\x01\x47\xb6\x1f\x38\x09\x1d\x8e\x80\x7f\x30\xf1\xbf\x22\x73\xa3\x38\xc5\x8b\xc7\xa6\x6b\xf1\x2f\x0c\xb2\x02\x12\x6c\x57\xc6\x1b\x42\xc4\xe7\x22\xb9\x90\x72\x42\x37\xe0\x1e\x9a\xf2\x8f\x34\xe0\x1a\xea\xa6\xf1\x5d\x11\x21\xab\xcb\x77\xa1\x73\xb7\xf7\xc9\x85\xa4\xa4\xa0\xaf\x16\x70\x0b\x9b\x2e\xe3\x85\xb7\x90\x50\x5a\xdb\x15\x71\x1e\xe2\x54\x2e\x0c\xa2\x4d\x8f\xc7\x55\xc3\xb5\x55\xe3\xab\xc1\x39\xb9\x4c\x8e\x70\xa9\x01\xae\x8a\x5f\xba\x38\x63\xe0\x1a\x9a\x0d\x8e\x17\xae\xd2\x4a\x9e\xd5\xae\xb8\x9c\x1e\x3f\x92\xd6\x26\xef\xaf\xab\x47\x5c\x8d\x7e\xdf\x23\x19\x9b\xda\x27\xb9\x99\x5d\xad\xaf\x8e\x43\x81\x88\xc3\x05\xa4\xbc\xd5\x68\x57\x0f\xd7\x48\xad\x67\xa4\x9d\xd5\xe5\xb8\x30\xa0\x2a\x73\x67\xbb\x06\x6a\x51\x49\x16\xd7\x92\xe4\x9a\x0d\x88\xd7\x08\xec\x29\xd7\x03\x54\xfa\xd5\x1e\xae\x99\xba\x3c\xd7\x40\xad\xa5\xcb\x1c\x88\x11\xf6\x16\xba\x02\x6b\x4b\xe7\xf5\x42\xcd\x93\xbc\x1e\x4b\x32\x2c\x36\xc0\x5f\x24\x53\x1b\x9e\x2f\x71\x28\x59\x9c\xe1\x15\x41\x67\xd2\x79\x5f\x33\x6c\x04\xae\xc7\x1b\x52\x6a\x1a\x10\x28\x8a\x5d\x9d\x2f\x38\x4d\xbb\xee\x5f\x01\xf7\xa3\xcb\x1b\x88\x12\xb6\x19\x5e\xc0\xf7\x28\x8d\x75\xbb\x78\x7c\x15\x14\xdc\x2e\x0c\xa8\x36\xd0\x5e\x27\x92\x9b\xcf\x4b\x60\xdb\x79\x3d\x81\xff\x51\x9a\xdc\x76\x05\xb1\xd1\xe3\x7c\x5d\x11\xf4\xe8\xfa\x90\x3c\xd4\x5f\x64\x9e\xac\xfe\x1e\xb5\xeb\x74\x7d\x04\x71\x6a\x3f\xf1\x96\x54\x5c\x5c\xbb\x22\xf3\xa4\xe9\x01\xf9\x40\x04\x14\xdb\x2e\x50\xad\x37\x8f\xe7\x09\x6f\x52\xfd\x1e\x07\x13\xdb\xa0\x2e\xf2\x17\x59\x0d\x7b\xe1\x70\xb2\x9b\x1e\x60\x73\xfd\xa2\x27\x4f\xd8\xbc\xb4\x1e\x78\x4b\x7e\xcd\xff\x09\x87\x07\xb5\xf7\x93\xc2\xc3\x65\xce\xaf\xee\xfb\x8d\x5a\xdc\x8f\xed\x4d\x4a\x0d\xab\x35\x41\xd0\xa8\x76\x90\x00\x21\xa3\x16\x3d\x76\x20\x64\x54\x21\x2a\xb4\x1b\xb5\xb8\x1d\x32\xee\x1d\x9b\x89\x1e\xa7\x3b\x01\x3c\x3b\x5d\xe6\xb1\x11\x73\x18\x88\x1a\xd6\xa4\xdc\x29\xe2\x82\x3e\xf3\xbf\x61\x5e\x3c\xbf\x9b\x94\x00\xbe\xdf\x77\x8e\xe4\x77\x4d\x65\x24\x11\x9d\xa7\x1b\xb8\x1c\x4b\xc2\x77\x86\xde\x4f\xff\x3e\x50\xcc\xff\xc8\xe6\x72\xe3\x2d\x56\x3c\xd9\x00\xde\xd3\xe6\xde\x18\x2c\xed\x27\x7d\x43\x3c\xed\xaa\x76\xd7\xf0\xae\x50\xe7\x70\x36\x4a\xf3\xda\xee\x16\x41\x87\xfa\x3d\x11\xba\x82\xab\x68\x77\x8b\x88\x74\x2d\x16\x41\x70\xbe\x8c\x77\xf8\x7d\xeb\x71\xb8\xf1\x2e\x51\xd0\x66\xbb\x7f\xc4\x56\xfd\xbe\x07\x71\xd2\xf8\x41\x05\xee\xde\x7c\x74\xd8\xf6\x6b\xbf\x7f\x82\xe6\xb4\xd8\x18\x14\x9b\x0f\x4f\xb8\x76\x7a\xbc\x70\x3a\x02\x86\x6c\x77\x60\xab\x89\xf8\xdf\x04\xd5\x09\x3b\xa8\xdd\x4b\x12\xa8\x4a\x6b\xdc\x6e\x0c\x8c\xd5\x87\x09\xec\xb5\xe9\xcd\x44\xe7\xed\x20\xa9\x1b\xce\x67\x48\x6c\xbf\xe1\x7c\x86\x0f\x17\x41\xae\x8e\x03\xb8\xaf\x78\x4c\xd5\x5e\x48\x02\xdd\xf5\xa1\x86\xd3\xef\x51\x4b\x29\xc2\xbb\xdd\x17\x06\xe3\xe6\x32\x0e\x18\x22\x2e\x37\x9c\x8e\x39\xbd\xfb\xc2\xc1\xc0\xfb\x77\x03\x77\x22\xce\xf4\x46\x0d\x95\x7c\xb9\xc2\xd5\xba\xb8\x9e\x34\xb7\x9e\xff\x1d\x36\x07\xcd\x37\xbc\xdb\x7c\x1e\x9e\x50\x83\xe8\xbc\x3d\xfc\x5e\x92\x32\x70\x28\xed\xeb\xf2\x86\x2b\xa8\x88\x07\x70\x28\xd5\xae\xa7\x01\x7f\x22\xd4\xe9\x76\xbf\x9c\x07\x49\x16\x01\x7f\xf2\xb5\xfe\x91\x89\xd2\x97\xed\x8d\x1c\xf5\xfe\x3d\x71\x1e\x7a\xcc\x6f\x82\xec\x84\x45\xd5\x9e\x48\xb1\x20\x49\x3a\xe0\x4c\x2c\x49\x3f\x04\xc9\x59\xc7\x0d\xbc\x49\x76\xdc\xc5\x13\x88\x00\xea\xef\x49\xe4\xeb\xd0\xfe\x3c\x29\x5c\xbb\xa7\xca\x48\x8e\x62\xee\x9e\x14\xae\xf2\xfe\x1e\x44\x0a\x3d\x86\x4f\xc2\x9b\x6c\xfa\xf7\x38\xf0\x68\x3e\x4f\xa4\xb5\xce\x6e\x0f\x07\x99\xe9\x32\x28\xca\x9e\x6f\x86\x53\xd7\xfd\x7d\x32\x92\xbf\x0c\xe0\xc0\xab\x34\xab\x51\x9f\xf0\xbe\xf3\xf8\x90\xec\x84\x70\xd0\x1e\xb0\xbf\x1c\x14\xf8\xfc\xa8\xdd\x87\xca\x30\x6f\x92\xec\x9f\x12\x69\xd1\x9b\xca\xd8\x10\x75\xbe\x9f\x12\x66\x00\xcd\x37\x52\x0a\x78\x7c\x95\xb8\x19\x71\xee\x4f\x0d\xf8\x17\xf5\x57\xf1\x1e\xf5\x7e\x42\x0f\xcd\xcc\x3e\x15\x9b\x87\x98\x87\x80\x6b\xb1\xa6\xe0\x01\xc1\x40\xc9\xdd\xda\x83\x26\xc2\x92\xd9\x83\x1a\xcf\x8f\xff\x03\x9c\x92\x32\xef\x36\xe0\x5b\x9a\xd5\x74\x4f\x00\x0b\x7b\x7c\x1d\x07\x17\x31\x6f\x4f\x38\x3c\x88\x7e\x3e\x00\xff\xda\x3b\x13\x04\x94\x62\x57\xe5\x87\x94\x2a\xd3\xe7\x6f\x22\xc9\xd4\x3f\xf2\x16\x7b\xc0\x6a\xb2\x98\xf6\x1c\x81\x9a\xa9\xc1\x1d\x40\xd2\xeb\xa5\x03\x3e\xa5\x29\x33\x5a\x7b\x20\x7e\x56\x5b\x3c\x27\x92\x81\x38\x5f\xe0\x53\x9a\x80\xe0\xda\x43\x50\x9c\x23\x84\x81\x47\x29\x36\xe8\x3d\x91\x16\x77\x73\x39\xd2\xf0\xea\xf7\xe1\xdd\xe0\xf1\x90\x69\xad\xf8\x72\xc1\x59\x09\x92\xbf\x3d\x40\xa6\xdb\x7b\xeb\x21\x22\x58\x99\x03\x1b\x70\x2a\xcd\x06\xb4\x27\x5c\x7b\xc5\x39\x3c\x4f\x38\x08\x68\x3d\xf0\x26\x73\x44\xfc\x03\xb1\x71\xd0\xda\x03\xd6\x52\xf7\xe5\x42\x8d\x68\x4e\x3d\xe0\x4d\x84\x15\xd4\xde\x0d\xb8\x15\x6d\xe6\x4b\x8a\x03\xab\xc5\x80\x37\x29\x56\x5b\x02\x6f\x92\x95\xdf\xa4\x01\x67\x52\xe7\x57\x99\x38\x02\x11\x87\x77\x11\x9f\xd2\xdc\x5e\x8a\x34\xa9\xfa\xfe\xc7\x75\x77\xa8\xcc\xe3\x31\x5c\x7f\xc1\xb9\xab\x3d\xe0\x4a\x1c\xe7\xf3\xe6\xf0\x96\x51\xfb\x10\x07\xa1\x3c\xb7\x17\x57\x5b\x61\x4b\xb5\x17\xc9\xd1\x92\xe5\x5b\xf1\x4e\x14\xb1\x7a\x41\xa5\x35\xb1\x0f\x38\x12\x3b\x88\xbc\xa8\x11\x7d\x39\x5f\x50\x68\xdb\xd7\xef\xc3\x5b\x47\xe3\xab\x91\xe9\xd3\xdf\xe3\x9d\xe5\xfe\x03\x41\x40\x6a\x82\x17\x6f\x2d\xa5\x3c\x68\xc0\x8d\x14\xa1\xee\xb6\x97\xcb\x6e\x35\x30\xf0\x23\xd9\xcc\xc9\x8b\x37\x54\xd5\xf9\x00\x5e\xa4\x18\x71\xe0\xed\x38\x84\x78\x3f\x80\x53\xb2\xe4\x0b\xbc\x48\xb5\x01\xf9\x1d\xa1\x76\x52\x7f\x48\x76\x46\x8c\x78\x49\x7b\x3d\xbc\x5f\x23\x22\xbe\x35\xde\x20\x26\xee\x1f\x1b\x9f\x5d\x5d\x81\x0f\xc9\x42\x09\x6e\x2f\x08\x00\xcd\xdf\x1f\xe1\x0a\xae\xf1\x12\x44\x6b\xe6\x0c\x44\x8f\x3e\x3d\xfe\x03\xd7\x5a\xa9\xc5\x5e\xe8\x41\x13\x31\x7f\x31\xe0\x6f\x3e\xcf\xb8\xba\x26\xaf\x17\xde\x4f\x49\xcc\xdc\x4b\x1c\x8b\x99\x95\xf7\x8a\x64\x71\x9a\xff\x15\xae\xc7\x1a\x1f\x36\x06\x61\xe5\xb5\x37\x82\x64\xe5\x5d\xf7\x22\x59\xd9\x61\xe3\x8d\x7c\x4f\xee\xef\x0e\x9b\xa3\xd6\x03\x04\x00\x87\x32\xbc\xa0\x40\xfb\x71\x7d\x9f\xa0\x17\x9a\xdf\x13\xcc\xb3\xe6\x07\xf6\x9b\x52\x12\xb4\x17\xd7\x7d\xbb\x32\xbf\xd0\x97\xaf\xfa\x37\x82\xa0\xb5\x9f\x6f\x04\x81\xfe\xb4\xd7\x37\xe8\x87\xbc\x07\xfb\x06\xca\xb4\x6c\xa0\x7d\xdb\x70\x0d\xdf\x5d\x1f\x92\x78\x55\x39\x80\x47\xbb\xca\xd0\x97\x0f\x3d\xef\x1b\xd8\x6e\x0a\xfa\xec\x1b\x08\x01\xf2\xae\xed\xdb\x1e\xa1\x25\x7f\x62\x73\xe9\x1b\x11\xb5\x82\x7f\xe9\x5b\x40\x96\xef\x6e\x1c\x54\xe1\xae\xc1\x92\xf9\xb0\x34\x77\x16\x2f\xb3\x7f\x1f\x8f\x8d\x26\x93\x02\x05\xd8\xe5\xf0\x7e\xd2\x62\xe1\xfd\xa4\x88\xf6\x0e\x9c\x49\xdb\xfc\xfb\xc8\xaf\x90\xb5\x18\xc4\x09\xe4\xa9\xc5\x28\x81\x3a\xab\xef\xc9\x87\x20\x83\x6f\xdf\x22\xdf\x4a\xd3\xf8\x6a\x60\x31\xa9\x3f\x10\x00\x64\x60\xec\xc0\x93\x94\x36\x34\x3f\x38\x89\xe1\xcd\x40\xed\x34\x8b\xbe\x0f\x9d\x70\xd2\xf7\x3d\x92\x63\xa9\x7d\xd2\xac\xca\x00\xd7\x81\x17\xc9\x5f\xed\x13\x01\x9b\xfd\xfb\x90\x74\xa6\xca\x33\x0c\xb4\x6a\x2f\x22\xec\xfd\x3d\x28\xd1\xd2\x59\x77\xe0\x45\xb2\x38\xed\xbe\x61\xf0\x57\x32\xac\x0e\x5c\x48\x55\x84\x74\xdf\x08\x7a\xed\x9e\x4f\x00\x8b\xba\xbd\x88\x0b\xf2\x7e\x40\x3c\xba\xe7\x83\x4d\x65\xab\x2e\x83\xe5\xe6\xf9\x9d\xe1\x8a\xac\xdf\xa3\x06\x12\x04\x7c\xdf\x08\x7a\x2d\xfe\xfe\x22\x99\xd9\xa6\xf5\xc6\xb5\x7d\xf3\xf9\xbb\x03\xeb\x4b\x97\x89\xb4\xd2\xd9\x97\x83\x14\x02\x72\xd5\xed\x5b\x24\x57\xea\x6a\x9f\xa0\xd1\x36\x74\x1e\x5e\x6c\x7c\x1e\x1f\xc0\x8c\x8a\xf3\xe8\xfb\x16\xf9\x72\xb2\xca\x11\xd4\xe7\xfa\x20\x16\xaa\xdf\x23\xf9\x52\x57\x19\x87\x81\xe6\xfa\x70\x1d\xfd\xf4\xb7\x23\x69\xc8\xa0\xdf\x77\xb0\xc9\x92\xeb\x23\x5f\xd1\x47\xb2\xe9\x3b\x71\x37\xc2\x8e\xea\x20\x66\x8c\xed\x23\x79\xf4\xbd\x10\x34\xfc\x21\xde\x1d\xc4\x8c\xfe\xf5\xfb\x1f\x84\x8c\xa1\x32\x6a\x3c\xdd\x8f\x1d\xef\x3c\xa9\x4d\xfa\x1e\xd8\x63\x45\xed\x03\xf7\xa3\x20\xde\xbe\x03\x29\x2f\x35\x64\xdf\x23\x1f\x91\xdb\x6f\xa8\x25\xdd\xde\x8f\x6b\xb5\x7e\x1f\xae\xd5\xdd\xf5\x9c\x1f\xcf\x07\x57\x6a\xd9\x80\xfb\x0e\xd6\x98\x1c\x72\xfa\x1e\x9c\xbd\xe8\x0b\x88\x18\x55\xc0\x97\x7d\x1f\x81\xb2\xed\x32\x6a\x1f\xd1\x3b\x10\x30\x9a\x50\xa8\xfb\x3e\x90\x2c\x86\xe6\xc3\xfd\x13\x42\x41\x07\xf1\xa2\x49\x2d\xd7\x3f\x08\x17\x6a\x7f\x06\x2a\xb9\xc6\x73\x10\xf4\xed\xf9\xac\xfb\xd5\x94\x0f\xa7\xef\x27\xcc\xa6\xdb\x43\xcd\x29\x38\x9a\xbe\x47\x1c\x9d\xcf\x23\x70\x5a\x0a\x7a\xed\x20\x50\x94\x2c\xfa\x04\x02\x45\x91\xb7\x6b\xdf\xaf\x40\xe1\x56\x19\x6f\x3a\x31\x97\x7d\xc7\x21\x46\x71\x4c\x7d\x8f\x20\xf0\xa9\xf3\xc3\x63\x2c\x6f\xc9\xbe\xdf\x41\x9f\xff\xc4\x5b\xac\xef\xc4\x91\x28\xdf\x49\xdf\x23\x68\xae\x69\xf0\x0f\x39\x94\xf5\x52\xee\xa4\x21\x16\xfc\x44\xdf\x9f\xc8\x94\xa6\x72\x00\x11\x0e\x0d\xe6\x0d\x6c\x1a\xb5\xc7\x4b\x9c\x7c\xd8\x89\x13\x91\x8e\xb7\x03\x77\xd1\x25\x46\xf6\x04\x27\x2f\x57\xd4\x0e\x3c\x45\xf1\x62\xa4\xd0\x61\x8a\x18\x06\x9c\x84\x80\x19\x7b\x42\x8c\x17\x1c\x48\x4f\x29\x88\xbd\x7e\x9f\x43\x4c\x54\x7f\xe8\x2c\x93\x0e\x6b\x0a\x20\x41\x5d\x0e\xe0\x25\xaa\x6c\x1e\x3d\x11\x57\xa1\x64\x3f\x3d\xa1\xa3\x54\x44\x77\x4f\x78\xe3\x28\xc8\xaa\x03\x47\xd1\x04\x14\xd7\x03\x7e\x42\xae\xb2\x3d\x15\x5c\x69\xab\xeb\x09\x72\xd3\x63\x12\xf0\x13\x92\xd4\x7a\xfa\x89\x30\xff\x1c\xee\x04\x16\x98\xe0\x28\x3a\xf0\x12\x25\xef\x2e\x83\x95\x25\xe2\x9a\xe0\xf4\x93\x38\x9d\x84\x8d\x48\x71\x25\x3d\x45\xbe\x09\x11\xcb\xd4\xc2\x81\x42\xfd\x05\x84\xb7\x2e\x43\x6a\x78\x27\xe9\xbc\x24\x88\xc3\xf0\xfc\x30\xe0\x66\xaf\x17\x6a\x4b\xa9\x19\x7b\xea\x44\x38\x67\xb5\x3f\x58\x9f\xe1\xf2\x8e\xda\x54\xf3\x3f\x30\x30\xee\xfa\xfd\x01\xb1\xad\x9a\x6f\xc0\xcf\x88\x99\x49\x48\xda\x66\x5e\xd2\x15\xeb\xaf\xef\x17\x27\x9c\xa5\x56\xe9\xe9\x0a\x49\x55\xfb\x7f\x45\xb2\x29\x7d\x7f\xc3\xd9\x7a\x7f\x6e\xe2\x3c\xbc\xbf\xa8\x01\x9b\xcf\x63\xa4\x04\x10\xf3\x93\x80\xec\xaf\xde\xaf\x37\xbc\xf9\x74\x9e\xdf\x50\xeb\x6a\xbc\xb8\xe2\xfb\xb1\x4f\x6f\xa4\x05\xff\xb4\x97\xb7\xe0\xd4\x3f\xe3\xcd\x81\x2a\xac\xc7\x3a\x87\x2b\xbc\xce\x6f\x26\x62\x5b\xc9\xa8\x7a\xc6\x35\x7e\xf8\xf7\xd8\x00\x04\xe7\xd2\x73\xe8\xfc\x75\x7e\x72\xc0\xb7\x7c\xbc\x8b\x3a\x08\x0b\x65\xb8\x3d\xd4\x54\x4a\x93\xde\x73\xc0\x4d\x69\xbf\x73\x21\xae\x47\xcc\x4a\x2e\x70\xca\x7a\x6c\x72\xb8\xa2\x8b\xf8\x67\x1c\x64\x36\xff\x1e\x6f\xb4\xe9\xdf\xb7\x38\xef\xfa\x1e\x60\xcc\xa9\xc7\x31\x72\xf4\xcb\x26\xd4\x41\x4c\xe8\x0a\x6a\xed\x91\x93\x5f\x92\x5c\xcf\x11\xb4\x29\x7a\x15\x08\x0a\x49\xcc\x23\x08\x0a\x5d\x0e\x32\x9d\x9c\xfc\xbd\xbb\xbf\xd1\x78\xfc\x34\x1f\x6c\x8c\xbe\xdf\x20\x28\x34\xc5\xfd\xf5\x3c\x48\x19\x92\x35\x9f\x11\xcc\xbb\xfa\x43\xf2\x54\xb2\xb0\x0e\xa2\x42\x56\xbe\x95\x9e\x01\xfe\x4d\xba\xef\x20\x2c\x14\x25\x2b\xeb\xe4\xfc\x2f\x3e\x7f\x20\x24\xb4\x2c\xe6\x07\x44\x84\xb6\x7b\xfd\xc2\x9b\x54\xcc\x69\x26\xa8\x7c\x3d\xe6\x7f\xf0\xb8\xe4\x1f\xe0\x3a\x4d\x06\x20\x4a\x05\x09\x75\xe0\x15\xca\xf0\xe0\xb8\x7c\xc5\x8b\xc3\x4b\x39\xbc\xb9\x17\xde\x0d\x3e\x5c\x3f\x06\x40\x97\xe1\x2c\xbd\x59\x17\xae\xbd\x22\xee\xc0\x2f\xe4\x21\x4e\x20\x93\xb9\x4f\xae\xa4\x3d\xdf\x11\x47\xe1\x32\x9c\xa0\x38\x8d\x4c\x9a\xdb\xe1\xc3\xff\x84\x4e\x5d\xed\x93\xd9\x4f\xae\xb9\x3d\x47\x90\xa6\x37\x87\xc7\xb5\x7b\x71\x11\x73\xfb\x57\x7b\x78\x17\xe9\x65\x07\xee\xa1\x48\x4d\xd7\x81\x6f\x28\xf2\xee\xe9\xf9\x8d\xcb\xa8\xf6\xc2\xfb\x4e\x9c\x4d\x7e\x51\xdb\xe9\xb1\x2e\x88\xbd\xd2\xa9\x76\x72\xfc\xe7\xa9\xf6\xca\xc6\xe1\x57\x7f\x05\x31\x58\x6a\xba\x5e\xb6\x60\x06\xdc\x1e\x11\xc3\x5a\x9f\xb2\x87\x4d\xcc\xe5\x00\xfa\xfc\xcc\x8f\x9c\xfb\xad\xe9\xb0\x95\x14\x36\x14\xf5\x87\x5a\x4d\xc9\xe4\x7a\x21\x88\x52\xde\x26\x9d\x1c\xfd\x45\xf9\x44\x7a\x49\xe1\x90\xb0\xab\x8c\x77\xd4\x74\x7b\xc4\x11\x6d\xfe\x3d\x36\xac\xdd\xbf\x47\x0d\x55\xdc\x1f\xf9\x82\x44\xec\xcb\x0f\x67\xaf\xf1\x66\x24\x4f\x11\x8b\x42\x9c\xce\xe6\xf5\xc5\xc0\x29\x6f\xba\x5e\x88\xdb\x29\x5e\x1f\x5c\xed\x05\xc1\xde\x4b\x04\x65\xee\x6e\x2f\x82\x58\x3f\xe7\xb3\xe0\x30\x22\xc4\x86\x5e\x4a\x3c\xbe\xfa\xbe\x80\x25\xe5\xf9\x01\xb9\x5e\x44\x3c\x0a\x41\x9a\xc9\xeb\x81\x2b\xaf\x1f\xcf\x42\x72\x2a\x19\xc4\x7b\xa9\x81\xaa\xec\x32\x06\xdd\xaf\xef\x43\xf3\xa0\xfe\x91\x2c\x14\x87\xd3\x4b\x48\x16\xc3\xf5\x70\xda\xe2\x84\x41\xe4\x28\xf2\x9e\xec\xa5\x05\xd6\xa0\xe6\x8b\xda\x50\x36\xa5\x5e\x1a\x99\x3c\xbd\x7e\xb8\x06\x7f\xed\x47\x8b\xfb\xe3\xf2\x01\xc2\x87\xc6\x43\x1c\x91\x92\xd1\xf5\x12\xa8\xeb\x5e\x9f\x1f\x87\x11\xd5\x0f\xf6\xd7\xfb\x0f\xb1\x56\x28\x40\x2f\xc0\xdd\xc8\x9b\xaa\x17\x88\xb5\xe0\xa7\x7a\x81\xd8\x4a\xed\xd7\x4b\x78\x3f\x7a\xbd\x40\x00\x19\x3e\xbf\x93\xa0\x52\x8f\xff\x08\xb5\xbf\xda\x3b\xc2\x01\x49\xeb\x73\x84\x66\xc2\xf5\xe1\x6d\xa9\xf6\x80\xb7\x91\x0d\xa4\x97\x23\x98\x61\x7d\x4f\x1c\x90\xe9\x2d\x08\x21\xb5\x7e\x95\x91\x24\xc4\x2c\x95\x33\x32\x7d\x6a\x7d\x08\x8a\xf7\x63\x51\x70\xf0\x90\xb7\x6e\x2f\xd8\x54\xad\xf9\xf8\x41\x08\xf1\x7e\xe3\x1d\x26\x9b\x70\x07\x01\xa4\xc9\xdb\xb1\x83\x00\x92\x47\xfa\x23\xc9\x05\x78\x90\x2e\x1d\x70\x2f\x77\x04\x45\xa9\x1c\x3a\x47\x13\xb7\x80\x64\xf7\x62\x2f\xe2\xdd\xad\x96\x01\x2e\xa4\x59\xad\x50\x1e\xfc\xb4\xf5\x98\x14\x20\xd8\x8b\x0e\x4b\x0d\x88\x75\x11\x7f\xe0\x3e\xb2\xc5\xb6\xba\xb3\x99\x22\x6e\x75\x8f\xb4\xb4\x59\x65\x80\x27\xb5\x58\x15\x35\x84\x74\xa6\xbd\xee\x61\x50\x75\x7d\x40\xfe\xab\xfd\x14\x70\x16\x53\xe5\x40\xfd\xd5\xf7\x09\xf8\x0f\x71\x3a\x35\x05\xc4\xbe\xbf\xc7\xfb\xc5\xfd\x05\x71\x14\xe7\x5e\x03\x78\x4f\x92\x60\xcd\xa1\xb3\xd5\xf7\x19\x78\x0d\x6d\x7e\xcd\xa0\x16\x4b\x12\x00\x6e\xa4\x08\x2b\xa8\x07\xdc\x88\xf2\x39\xf4\x1a\x58\x5b\x5e\x9f\x9f\x1c\xe8\x1a\x3f\x6a\x43\x61\x71\x75\xe0\x41\x9a\xb0\xd0\x3a\xf0\x20\x4d\x36\x99\x5e\x6b\x78\x5b\xa9\x7d\xe2\x80\xa6\x7f\x5f\xe3\xb1\xf2\xf7\xb8\x02\x4f\x7f\x4f\x9a\x63\xaf\x4f\x05\xbb\x4d\x97\x0b\x38\x91\xde\xbc\xde\x24\x27\x92\x9f\x7e\x07\x4e\x64\xc8\xaf\xbf\xd7\x06\x71\xd7\x79\xaa\x01\x37\xa4\xc7\xb1\xc2\x89\x0a\x58\xb0\x03\x1f\xd2\x87\xf7\x03\xef\xb8\x24\x35\x21\xf0\x21\x45\x06\xeb\x5e\x7b\x40\xd4\xbb\x9e\xa0\x43\xf7\xb7\x38\xcf\xac\xa0\xcc\x0e\x5c\x48\x13\xd6\x54\xaf\xa8\x35\x05\x1c\xd8\x2b\x39\xd8\xdb\xee\xdf\xe3\xa0\x90\x5c\x0e\xb5\xb1\xfa\x27\x3f\x92\x74\xee\xbd\x4e\x88\x83\x7f\x0f\xb1\xaa\x3e\x8f\xe4\x47\x9a\xbe\x2f\x3f\xd8\x7d\x9a\x2f\x40\xa0\xd5\xf3\x5b\xcc\x63\x56\x26\xc2\x5e\xc1\xf6\x2b\xd3\xdf\xe3\x70\xa1\xc7\x1c\xb8\x8f\x26\x57\xd6\x0e\xdc\x47\x51\x1c\x56\x07\xd1\xa3\x09\xf2\xbf\xd7\x33\xe2\xcc\x54\xff\xc3\x7c\x6a\x3e\x11\xc7\x54\x5d\x0f\xd6\x9c\x88\x61\x0d\x14\x74\x9f\x0f\xd4\x34\xc3\xeb\x79\x87\x03\x8a\xc6\x73\x83\x28\xe1\xfe\x70\x18\xc9\x6e\x1f\x66\xb4\xf9\x7c\x82\x05\x26\x87\x84\x5e\x1f\x80\x6e\x93\xfa\x27\xa8\x31\xf9\xfc\xbd\xd4\x7b\x3d\xdf\xe8\xdf\xdf\x93\x9c\x4d\xcc\x42\x05\x78\x54\x36\xe1\xde\x36\x98\x9d\xcd\x65\xe0\x6f\x44\xaf\x5a\x78\x8f\x89\x5e\x81\x80\xd1\x14\xd4\xdb\x41\xc0\xe8\xc2\xb6\xeb\x0d\xd7\x76\x25\x63\xec\x2d\xe2\x12\x77\x97\x23\xee\xa5\xab\x0c\xbd\xd2\x7d\x04\xa1\xa2\xc8\x46\xdb\x41\xa4\x28\x72\xb0\xea\xad\xa0\x66\xd4\xfc\x1b\x70\x42\xca\xb4\xd9\x1b\x92\xa2\xe2\xbe\x7a\xab\xe4\xe3\x49\x7f\x64\x73\x69\xf8\xb5\xcb\xfb\xa1\x07\xfc\x84\xe0\x4a\x7a\xc0\x47\xc8\xef\xba\x37\x74\x9e\xca\x59\xdd\x5b\x88\x99\x7a\x5c\x1a\xde\x0b\x42\x61\xed\xc0\x3f\xe4\xee\xc5\x20\x22\x59\x99\x01\x7b\xc3\xe0\x69\x1d\x39\x70\x10\xcd\x9b\xdf\xe2\x72\x8b\xb3\x06\x1e\xa2\x5b\xe7\x0d\xfc\x43\xb6\xe4\x04\xfc\x43\xee\x3a\x0c\x6d\xe2\x2a\xa9\xc3\x0b\x1c\x43\x57\x5c\x4d\x6f\x27\x41\x5c\x6e\xff\x0c\x6f\x08\x7d\x4f\xe6\x46\x19\x18\x7b\x8b\xa0\x24\xa9\x85\x80\x57\xa8\x82\x78\xef\xed\xc2\x35\xda\x87\x07\x83\xa2\x5c\x1d\x7b\x8b\x4c\x8c\x7a\x1c\x80\x5b\xc8\x42\x48\xe8\x0d\x57\x4d\x73\xd2\xc0\x2d\x94\xe4\xc3\x49\x32\xaa\xea\xc3\x40\xd0\x9f\xd5\x88\xed\x09\xce\x4a\xf3\x7f\x82\xb8\xe8\xf7\x4f\x3c\x16\x3a\x2c\x64\x5a\xf4\xe3\xd9\x70\xdd\x14\x7c\x4e\x07\x81\xa1\xc8\x3b\xa9\x83\xb8\xd0\xac\x83\xfd\x41\x58\xd0\xe5\x0e\x04\x85\xaf\xfd\x09\xa0\x4b\xd5\xf7\x90\xcc\x74\x99\x3a\x71\x27\xb6\xf9\x80\x98\xd0\x95\x92\xa0\x83\x98\x50\x14\xc4\xd5\x41\x4c\xc8\x4a\x1b\xdb\x3b\x36\x3f\xeb\xe4\x3b\x0e\x0c\x56\x4b\xf4\x14\x92\xf8\x67\x3d\x3b\xd8\x60\xde\xbf\x9e\x03\xf1\x40\xed\xe5\xe0\x24\x35\x3e\x20\xc7\xe5\x7a\xdf\x7b\x01\x7b\x4e\x97\xb3\x93\xb2\xc0\xcc\x40\xe7\xb1\x15\x0a\x72\xef\xc4\x25\x29\x5f\x51\xef\xd8\xf4\xb2\x1e\xc7\xde\x02\x91\x41\xed\x63\xe3\x13\x96\x55\xef\x1d\x83\xb7\xee\x17\x11\xfc\xb9\xeb\xbe\x12\xc1\xdf\x36\xf7\x37\xe2\xb1\xff\xec\x6f\x07\x0b\xab\x4b\x8d\xd2\xe1\xcc\x6d\x73\xea\x38\xf0\x28\xa5\x46\xef\x64\x56\x55\x66\xca\xde\x8f\x1b\x62\xa4\x7a\x82\x6a\x15\xe7\xd1\x89\xb0\x2f\x72\x9d\xee\x3d\xd2\x80\xbb\x7d\xe2\x32\x9a\xf7\x73\xdd\xaf\x3c\x75\x1f\xfb\xdd\x51\xb3\xab\xbd\x08\x7d\x10\x33\xd8\x39\xff\x4a\x5b\xdd\xfb\x13\x70\x3d\x9a\x1f\xae\xca\x96\xa4\x3b\x9a\x88\xf9\xf5\x3d\x11\xf4\xba\x2f\xfd\x09\x6f\x30\x7f\x0f\xb6\x5d\x76\x19\xc9\xd8\xfd\xe3\x4d\xa8\x38\xa1\x3e\x88\xeb\x53\x72\xc0\x1e\x11\xef\xf2\x2e\x5b\x94\x86\xfe\x77\x95\x51\x4b\xea\x3e\x0c\xf2\xfb\xe4\xee\xef\xf1\x8e\xd5\xfd\x18\x38\xc8\xd4\x8f\x03\x4d\x1f\x40\xe2\xfb\xbe\x8c\x42\x90\xa7\xe8\xd7\x28\x61\x53\xfc\xcc\x6f\x60\x43\xf6\x63\x39\x1a\x8f\x8b\xe8\xf9\x08\xec\x37\x3d\x46\xa3\xc5\xef\x55\x06\x55\x59\x29\x09\x7a\x04\x89\xdb\x66\x34\x60\xae\x7a\xfe\x93\x4c\x94\x7d\x10\x47\x20\x2c\x9c\x3e\x08\xaa\xb3\xce\x79\x04\xe7\x25\x31\x6b\x04\xa4\xbb\x36\x87\x88\xf2\xa6\x34\xba\x7d\x1c\x10\x33\xd7\xff\x88\x85\x6a\x0f\x94\x53\x1b\xd4\xc7\x19\x8b\xab\xc5\xc4\x80\x55\xa6\xcb\x00\x51\xea\x72\x0c\xfc\xee\xcd\x69\x12\xc1\xdd\x6d\x50\x1e\x00\x3d\x0a\x08\xaf\x0f\x0c\x58\x36\xb8\x13\x51\x5d\x14\x87\xd3\xc7\x13\x8b\xad\xf9\x3f\xc1\xb9\x6a\xb3\xdf\x0a\x31\xd3\xef\x5f\xe0\x35\xc4\x39\xcd\x0d\x38\x12\xcd\xef\x27\x62\x5a\xeb\x39\x81\x53\xb0\x03\xc0\x44\x2d\x24\x38\x88\x3e\xd1\x51\x17\x11\xcf\x19\xa8\xa4\x7a\x0c\x26\x6a\x19\xa5\x49\xed\x93\x38\x1e\x65\x6e\xec\x13\x9b\x8d\x92\xa3\xf5\x59\xe2\x30\xe8\xf7\x81\x95\xe5\xf6\x6b\xa8\x71\x8a\xca\x64\x3e\x14\xa7\x45\x44\x75\x13\xca\x70\x27\x82\xba\xc9\x15\xb4\xcf\x8a\x6b\xac\x38\xa3\x89\xa4\x62\xce\x67\xc6\xe1\x16\xf1\x27\xe2\xba\x9a\xb3\x23\xe2\xba\x2a\xd9\x51\x9f\x04\xdd\x65\x11\x33\x22\xae\xbb\xd5\x78\x44\x58\x37\xc1\x0b\xf5\x19\xa8\xc1\x1e\x2f\x92\x86\xbc\xc3\xfa\x1c\x81\xad\xa6\xdf\xe3\x1a\x6e\x9b\xd8\xfc\xd1\x61\xbb\x8c\x0d\x46\xc4\x64\x22\x49\x98\x93\x9f\x07\xfb\xe7\xf9\xff\xd8\x74\xb4\x9e\xe4\x43\x52\xbe\x9e\x4e\x44\x75\xb1\x0d\x6c\x46\xa6\x55\xaf\x17\x0e\x10\x56\x7b\x4c\x24\x85\xa4\xfb\x33\x4f\xe2\x8c\x8a\xbf\xc7\xb5\x56\x9c\xe7\x84\xf9\xc9\x1e\x5f\x64\x56\x15\x33\x41\x84\x76\x4d\x9e\xcf\x45\x72\x27\xaf\xef\x15\x40\xb0\x1a\xff\x15\xae\xaf\xaa\xbf\x23\x4d\xb4\xda\xbb\xc3\xa1\x44\xeb\x75\x87\x5a\x51\xfd\xdf\x11\xb7\xa3\xf1\x63\xf0\xb5\xcd\x65\x3e\x70\xfe\x22\x5e\x33\x6c\xba\x22\x8e\x13\x9b\xae\xd2\x9a\xf7\x89\x1a\x7a\xf3\xf9\x7f\x23\x39\xd9\xa7\xfd\x63\x23\x68\x55\xf3\x39\x36\x5c\xe9\xa7\xeb\x07\xf7\x35\xa9\xcc\x63\xaf\xfb\x77\x6c\x9c\x4f\x31\x4b\x07\xc9\xe3\x8a\xd4\x82\x04\x75\x77\x61\xdf\x75\x82\xba\x9b\x89\xf7\x81\x03\x94\x6d\xa8\x07\xf9\x9c\x2c\x89\x13\xe4\xdd\x6d\x43\x3b\x50\x33\x0f\xd7\xff\xa8\x79\x3f\xeb\x77\x44\x9a\x66\xdd\xe7\x03\xd7\x6c\x6b\x0e\x0e\x1c\x9a\x4c\xfc\x0f\x24\x11\xab\x51\x8f\x1c\x41\xb3\x1a\x7f\x26\x0e\x4a\x8f\xd9\x91\x03\x7e\x47\xfd\x83\x90\xd2\x25\x09\x1f\x25\x98\x1b\xad\x27\xa8\xe1\xb6\x01\x1f\xa4\x0c\x50\x4a\x8d\x7e\xe0\x00\xb2\x24\xc7\x3f\x78\x5c\x8e\x1a\x3a\x7a\xfd\x38\x22\xc0\xa5\x26\x39\xd0\xb9\x9a\xb3\x39\x5a\x18\xa0\x5c\x1f\x10\xd4\x1a\x6c\x07\x5e\x42\x97\xe9\x00\xe8\xce\x92\xc0\xd1\xc3\x00\xa5\xc5\x22\xf3\xa5\x82\xe8\xfa\x81\x9a\xa2\x7b\x3c\x78\x5b\x99\x13\x3d\x88\x53\x11\x36\x4f\x3f\x46\x60\x3b\x69\x31\xc2\x75\x53\x9c\xd6\x31\x22\x82\x5e\xe3\xc5\xfb\x43\x11\xe7\xfd\x40\xb2\xd9\xbd\xf9\xc0\x37\x0c\x1f\xae\x80\x1c\xf7\xe6\xa1\x83\x35\xb1\x3e\x7e\x72\xe6\xab\xfd\x23\x1c\x14\x34\x3e\x5c\xaf\xed\xcd\x73\xe0\x6a\x6d\x9b\xcf\x71\x05\x27\xa2\xf6\x22\x99\x92\x2f\xcf\x15\xf9\x2e\x34\xbe\x88\x33\x71\x3d\x40\xa0\x5f\x87\x97\xb4\xcd\x9b\xbf\xbf\x71\x7d\xf5\xf8\xef\xd0\x21\xab\xfe\x09\x83\xa9\xd6\x1f\x4e\x50\xae\xbe\xfd\x20\x68\x4d\x71\x31\xfd\x78\x88\x60\x9e\xfe\xfd\x0d\x33\xe1\xef\x5f\x38\x43\x95\x5f\xf2\xdd\xe8\xb1\x39\xde\x00\x7a\x74\x19\xc9\xd1\x97\xf1\xc5\x06\xa7\xc3\x7e\x06\x50\xa7\x88\xf9\x19\x39\xd8\x93\xcb\x60\x95\x75\x97\x49\xbe\x25\x62\x78\x82\xf0\x50\xf4\x98\x9c\xe1\x9a\xad\xf5\x38\x51\x23\xd8\x80\x7a\xa2\xd6\x14\x5c\x4f\x3f\x13\xde\x91\xba\xcc\x27\x88\x0e\x56\xeb\x12\x31\xdf\x9b\xd4\x90\x67\x09\x84\x05\xf5\x47\xda\x68\x61\xcd\x75\x22\xe8\x5b\x93\xe4\x7e\x46\xce\x74\x8f\x07\x4e\x54\x40\x8c\x3d\x22\xea\x15\xf4\xd9\xcf\xc0\x56\x13\xf1\x3c\x71\xe0\x28\xd5\xdf\xe3\x1a\x9b\x5d\x0e\xce\x59\xfd\x61\x53\x91\x2b\x78\x3f\x43\x13\xa1\xfb\x7c\x12\x57\x96\xb5\x5f\x67\x0f\x6f\x21\xfd\x9e\xfb\xb8\xe9\x31\x3a\x89\x0b\xb3\xeb\xea\x89\xe4\xd4\x3c\xff\x81\x2b\xba\x98\xb7\x73\x06\x56\x9d\xfa\x23\xa8\xd5\x0e\x07\x27\x88\x10\x76\x40\x39\xc9\x2f\x64\xb5\xf9\x49\xdc\x45\xf3\x7c\x49\xb3\x3e\x3c\x3f\x32\xcb\x36\xef\x1f\xde\x58\xd9\xeb\x7b\x92\x39\xd7\xfb\x8d\x37\x63\xf3\x7a\x13\x27\xe6\xf3\xfa\x13\xf1\x2e\xe6\xf4\x0c\x6c\xb3\xdd\xdf\x37\xfa\x73\x7d\x38\xe0\x68\x7d\x09\x9d\xb0\xe6\x81\x08\xf7\x6a\x87\x8a\x93\xb4\xea\xd6\x2c\x9c\x68\x16\xb2\xdb\xc7\xe1\x43\x29\x29\xfa\x45\x0a\x8b\xa1\xdf\x5f\xc0\xfd\x58\x2d\x7f\xe1\x8d\xe8\xc7\xfe\x02\x0b\xcc\x66\x8b\x2b\x85\xe6\x47\xed\xe1\x90\x21\xac\xb7\x7e\xa1\xe6\xb7\x64\x7a\x81\x15\x28\x38\x9b\x7e\x45\x7e\x9c\xf1\x47\x36\x97\x2b\x93\x89\xd1\x8d\x13\x74\x64\x31\xf3\xe2\x32\x08\xe2\xbc\x5f\xf1\x92\x69\x73\xae\x30\x00\x8a\xf8\x47\xc2\xff\xdd\xdf\xff\x04\x45\x6a\xf2\x01\xec\x27\xce\x98\x88\xee\xaa\xa0\xc1\x7e\x11\xa4\xa8\x7c\x2c\x3d\x22\xb0\x95\x7c\xac\xff\x44\x58\xeb\x72\x5f\x48\x4e\xc2\x1a\xeb\x57\xe4\x9b\xf9\xaa\x47\xc7\xed\xf1\x91\x4f\xc2\xde\x2b\x17\xde\x12\x76\xd5\xbb\x02\xbe\x41\x6a\xbf\xc8\xf1\x6f\xce\xf4\x42\xa7\x6d\xd7\xd8\x2b\x74\xda\xde\xfc\x30\xb0\x6d\xae\x87\x53\x96\xce\x9a\x88\xe7\x25\x1c\x7f\xca\x77\xd8\x04\x5c\x8e\x88\x78\x8d\x27\x38\x41\x11\x03\x72\xfc\x67\xc1\xdf\xf4\x0b\xb5\x96\x92\xb1\x75\x72\xf8\x67\xa1\xd4\xf6\x0b\xef\x3c\xe5\x94\xef\x37\x90\xf6\xd6\xe1\xde\x1b\x11\xbd\x12\xbb\xef\xad\x90\x76\xd7\xdf\x63\xc3\x90\x64\x79\x6f\x70\x56\xb2\xc1\xdc\x1b\x9c\x7c\xf2\xef\x71\x15\x9e\x2e\xdf\x00\xf5\x7d\xd6\xe3\xc6\xdb\xcf\xe7\xe3\x26\x4e\xc7\xfb\x1b\x11\xce\xca\x3f\xd2\x6f\x6c\x6a\xa3\xb9\x3e\x24\x31\xff\x9e\xc7\x5b\xfb\x47\x04\x74\xdd\xf5\x78\xdf\x29\x2e\xaf\x7e\x9f\x02\xf5\xdb\xf5\xe1\xbd\xe6\x32\x06\x60\xed\xdf\x9d\xe2\xfc\xab\x7d\x80\x3e\x2d\xe9\xdc\x09\xc9\x49\xc4\xe5\xc6\xc1\xc0\x36\x8d\xfb\xc7\x86\xa6\xf6\xf1\x3e\x54\x84\x7b\xbf\x03\x7e\x48\x9c\xf9\x1d\x69\x8d\x3d\x5e\x92\xf7\xd9\xb5\xfc\xc6\x41\xa0\x7f\x95\x0b\xe7\x43\xeb\x05\x64\xbf\x80\x4b\xfb\x0d\x67\x6a\x87\x90\x9b\xc7\xca\x0e\x2e\x77\x0d\xb5\xf2\xe7\x7c\xdd\x78\x03\x66\x9f\x87\x48\x63\xec\xf1\xa3\xc6\xb3\x5a\xf0\xc6\x80\x6f\x1b\x25\x41\xd1\xcd\x9c\xf4\xfd\xf3\x58\xa9\xbe\x13\xa7\xe2\xdf\xe3\x3d\x98\x7c\x1e\x3a\xf7\x49\x8f\xe9\x0d\xea\xf2\xd7\x7c\x7a\x24\xb3\x72\x39\xd4\x6c\x5a\xef\x90\x4c\xa5\xa6\xbb\x91\x4c\x85\x98\xd0\x09\x5a\xce\x42\x54\xe8\xf7\x64\x7f\x3d\x3f\xf2\xd3\xf8\xf1\xb9\x8f\xb8\x1f\xae\x47\x6d\x28\x66\xf0\xe6\x31\x53\x84\x7d\xbf\xc1\xde\xab\x3e\xef\x78\x57\x75\xf7\x7f\x46\x8a\x10\x8d\xef\x0c\x20\x4a\xd7\x13\x9a\xe1\xf3\x13\x71\x81\x62\x1e\xef\xc0\x12\xd3\xe3\x73\x63\x03\xb3\xf7\xec\x4d\x9c\x90\x6d\x7e\x77\xa8\xf9\x45\x7f\x08\x8a\xee\xf6\x8e\xbc\x43\x92\xf5\xf9\x03\xf5\x3e\x99\x3e\x80\x92\x9c\xbd\x5e\x84\x02\xb4\xfa\x47\x6a\x31\x22\xa4\xab\x89\xd3\x8d\x37\x96\xe0\x44\x3a\x11\xd3\xc5\xc4\xff\xc6\xc0\x9f\x3c\x59\x22\xa8\x2d\xb9\xdc\x4f\xf8\x61\xbb\x1e\x35\x87\x5e\xe6\xfb\x09\x57\x37\xb7\x77\x31\x79\xd7\xe3\xaa\xa8\xc7\xe1\x7e\x0b\xde\x1f\x6a\x3f\xd2\x8a\x8a\x93\x7d\x36\x38\x75\x6d\xde\xb3\xe1\x1a\x2c\x62\xf5\x84\x03\x80\x0e\x07\x11\xcf\x65\x68\xf3\x9e\x9d\xf9\xea\xb0\x3c\x70\xba\xe6\x84\x22\x22\x5a\xf9\x62\x3a\x11\xd0\x4d\x08\x06\x9d\x08\xe8\x6e\x1d\xf8\xf3\xe3\xfd\x94\x55\x46\x4d\x26\xce\x81\x08\xe6\x6a\xd7\xc9\x27\x50\x88\xfd\x7b\x0c\xf8\xb6\x31\x11\x81\xdc\x95\xa3\xbb\x13\x81\xdc\x04\x0c\xda\x9f\x82\x43\x84\xe7\x4f\x1a\x63\xc1\x81\xf4\xa7\x04\xb6\x53\x53\x19\x35\xa6\x24\xbb\x07\x83\x9d\x22\xd8\xfb\x53\xc3\xa6\xe2\x32\x6a\x07\x71\xc2\x11\x71\xac\xcc\x94\xfd\x41\xd2\xb5\xab\xed\xd3\x78\x5c\x87\xeb\xc3\x15\x54\xf3\x69\xf1\xf8\xb9\x0c\x27\xea\x7a\x6c\x78\x8a\xf8\xef\x4f\xe4\x3c\xf7\x7e\x77\x0c\xa8\x3a\x4f\xcf\x08\xce\x4d\xfd\x91\x8f\xa3\xba\x3d\x38\xe7\xe6\xf5\x04\x38\xd4\x6a\x17\x22\x94\xab\x32\x3d\xf6\x67\xe2\xcd\xe3\xfd\x9e\xd8\x08\x75\x5e\x23\x82\xd9\xde\x64\x6f\xb8\xa6\xcb\x21\x83\x20\xd2\xee\x38\xa6\xc8\x81\x6f\x9d\xfa\x1b\x06\x54\xad\xdf\x1b\x92\x49\x72\x19\x1b\x94\xce\xe3\x1b\xde\x63\xba\x1f\xe4\x9c\x6f\x5f\xbf\x6f\x91\xbc\xab\xa8\x4c\x9c\x84\x24\x5b\x82\x3c\xab\xe3\x86\xde\x70\x05\x9f\xae\x0f\xa0\x55\xd7\x07\x6a\x73\x53\x19\xc8\x7e\x8f\x0f\x60\x56\xab\xb9\x08\xea\x2c\x02\x4e\xed\xe4\x8c\xaf\x96\x4c\xc8\x11\x9f\x15\x44\xdb\x09\xf2\x2c\x43\xcc\x01\x41\x9d\xb9\x8b\x18\xbf\xa0\x2e\x5b\x32\x24\xe7\x7b\xb5\xab\x33\x41\x9d\x59\x41\xd7\x9d\x1c\xef\xd5\x71\x70\xe4\x78\x6f\x5f\xfb\xb3\x88\xfb\xb0\xe4\xfe\x42\xbc\xcd\x1c\x13\xc4\x99\xed\xa0\x44\x9a\xf6\xa6\xcc\x8c\xfd\xfd\xc9\xd7\xa4\xf6\x70\x50\x50\x9a\xe7\xfe\xfe\xd8\x54\xb5\x3e\xa4\x20\x29\x7a\x6c\x5e\xe2\x4c\xcc\x6c\xbc\x48\x2e\x0a\xaa\xee\x2f\x70\x5b\xd9\xf3\x09\x87\x05\x31\xb7\x11\xd4\xd9\x7c\xbe\x22\xad\x7b\x72\x39\xcc\x14\x6a\x0f\xb5\xa2\x25\x0f\x82\x38\xdb\xee\xf9\x00\x77\xa3\x14\x24\xfd\x7d\x27\xcc\x85\xfa\x7b\x63\xfc\x3f\xf3\x1b\x5b\x00\xa9\x7e\xcc\x08\x83\x20\xce\x52\xf7\x3f\xc1\x16\x1b\x1b\xae\xae\xca\x17\x32\x88\xf8\x6c\xca\xcc\x37\x22\xe2\x53\x28\xad\x83\x88\xcf\x2c\x6c\xae\xb1\x11\x44\x26\x78\x87\xb1\x05\x67\xfa\x21\x5e\x83\x08\xcf\x2c\x54\xd1\xb1\x01\xe1\x2c\xd7\xde\x41\xc4\x67\x53\xdc\xcc\xd8\x50\x43\x08\x3e\x66\x2d\x33\xed\xab\x3d\x2e\xb3\x74\xd0\x63\xcb\x91\x29\xcd\xdf\xa3\xf6\xf9\x10\xf3\xb1\x05\xaa\xb2\xc7\x07\xb1\x95\x4d\x67\x6c\x05\x1b\x4e\x55\x19\x6f\x08\xa1\x1e\x0f\x82\x2e\xab\x80\x27\xc7\x56\x23\xe8\x51\xe3\x25\x02\x5c\xae\xb2\x63\x0b\xd7\xca\xae\xf1\xf4\x48\xb6\xa6\xf1\x07\x50\xdf\x70\x19\xd7\xe0\xa9\xf5\xed\xa1\x63\x55\x7f\xa4\x49\x16\x16\xd5\xd8\x70\xd5\x14\xf1\x1c\x1b\x06\x5d\x39\x48\x8c\x0d\x87\x88\xe2\xfd\x01\xde\x46\x71\x23\x63\x1b\x40\x74\x7f\x38\xd3\xb1\x85\xf7\xd3\xee\x32\x58\x57\x55\xf3\x07\xc2\x5d\xde\x41\x83\x1c\xf2\x45\x7e\xf0\x23\x72\xc4\x2b\x82\x77\x90\x13\xbe\x37\xef\x2f\x6a\x0c\x05\xb9\x0d\x82\x3a\xb3\xf2\x63\x8c\x0d\xce\x50\x6a\xd1\xb1\x61\x60\x56\xdc\xcd\xd8\x22\x8d\xb2\xcf\xc7\x01\x30\xaa\xd7\xf3\x00\xd8\xb3\xa9\x7f\x38\x47\x01\x8f\x0e\x72\xc6\xb7\xec\xef\xe1\x1c\x65\x53\x1a\x1b\x0e\x1d\x72\xbd\x1c\xdb\x95\x61\x6e\xf4\x3d\x71\x2e\xc3\xe3\x8b\x4c\xa6\xde\x1f\x10\x20\x8a\x7f\x0f\x9c\x8d\x98\x87\xb1\xdd\xd8\xa8\xb2\xfa\xbb\x89\xa0\xf7\x65\x05\x5b\x6b\x78\xbf\x9e\x40\x08\xd0\x79\x7a\xb0\x49\xf9\x3c\x13\x04\xaa\xb8\xa1\xb1\xc1\x7c\x29\xe8\x6e\x6c\x2f\x41\xb6\xbb\xf6\x8f\xfc\x43\x82\x17\x19\xfb\x16\xeb\xdd\x54\x26\xc2\xfb\xab\x0c\x42\xc4\x87\x38\x8d\x7d\x03\x18\xf3\x23\xd9\x8d\x7d\xc3\x01\x42\xf7\x6d\x27\x1f\x91\x32\x67\x8e\x9d\xfb\xac\x4c\x94\x83\x20\xd2\xec\xfb\x40\xce\xf7\xac\xa0\xea\xb1\xa7\x08\x15\x50\xff\x29\x24\x7f\xd7\x07\xa7\xae\xf6\x80\x97\xa9\xda\xef\x3d\x83\x85\xa6\xf3\xb2\x87\x4d\x52\xf4\x8a\x34\xeb\x75\xb8\xfd\x12\x36\xc0\xcf\xfe\xee\x20\x42\x28\xee\x64\x90\x66\xbd\xc9\x00\x3f\x08\xfa\xac\xf2\x9e\x1a\x04\x7d\x16\x31\x6f\xe3\x93\x16\x5d\xe5\x1e\xc4\x58\xfd\x77\x82\x76\x37\xf5\x47\x7e\x1b\x79\x6b\x8d\x1d\xe6\x49\xf9\xab\xc6\xde\x83\xd9\xf7\xf7\x44\xf0\xbb\x3d\x80\x69\x85\x98\x31\xf6\xf5\xb8\x67\x21\x54\x0c\x82\x42\x8b\xb0\xc0\xc6\x1e\xa8\xec\x1f\x66\x63\x90\xc6\xbc\x2a\x6d\xf7\xd8\x61\x96\x9a\xf7\x17\x6f\x45\x25\x7b\x1b\x3b\xf9\x6b\xa4\xb9\x1a\x3b\x08\x0e\x5b\xfa\x93\x38\x97\xb1\xe3\x77\xad\x20\xc1\xb1\x63\x70\xd4\x4b\x3c\x76\xc4\x36\x05\x25\x0d\x72\x9a\x37\x89\x49\x63\x3f\x03\x1e\x43\x8b\x81\x01\x72\x16\x7f\x8f\x81\xbc\xab\x7d\xe2\x66\xb2\x17\x87\xb4\xc5\x8a\x13\x18\xfb\x15\x39\xd4\xfd\x3d\x36\x97\xae\xc5\xc5\xf5\xb0\xf8\x30\xdd\x01\x2f\xa2\xfe\x9f\x50\x43\xa8\x7d\xbc\x47\x24\x49\x8c\x3d\x20\xd3\xdd\x7f\x18\xf8\x75\x59\xf7\x07\x1d\xe4\xa6\xf1\x10\x34\xaa\x88\xea\xb1\x03\x6c\x37\xbd\x19\xe1\xaa\x58\xb5\xf8\x2f\x41\x56\x3e\x0c\x48\x5a\x9b\xfb\x8f\x9c\xe9\x59\xfd\x91\x6f\x41\xf0\x20\x23\xad\xcb\x9e\x95\x26\x79\x90\x33\xbd\xce\xaf\x7a\x88\x87\x0e\x53\x0a\x54\xdf\x0f\x67\x33\x22\x67\xba\x74\xf0\x23\x72\xa6\x0b\xe2\x7d\x90\x03\xbd\x66\x5d\xee\x14\xae\xda\x5a\xbf\xb4\x87\xb7\x50\x57\x99\xc7\x33\xb9\x8c\x9a\x4e\x8f\xe3\x4f\x4e\x74\x1d\x5e\x82\x58\xbb\xe2\x02\x46\xc2\x61\x41\xde\x3b\x23\xfd\x38\x2c\xa8\x7f\x50\xab\xa5\xe3\x1f\x04\xa9\x16\xd9\x64\x46\xca\x10\x37\xed\x67\x0a\x9b\x87\x88\x79\x04\xa1\x2a\x2d\xf5\x48\x04\xe1\x49\x52\x1a\x04\xa1\x36\x79\x8b\x0d\x82\x48\xbb\x99\xa5\x84\x77\x64\xd9\xf4\x7b\x22\xc6\xe5\x60\x32\xc8\x69\x9e\x65\x73\x19\x29\x98\x07\xf7\xd7\x43\xa7\xad\xf5\xf9\x09\x12\xd5\xfa\x90\xf3\x5c\x71\x11\x23\x05\x64\xbb\xf7\x0b\x60\x50\x49\xae\x23\x8d\x08\x6a\x55\xff\x23\xd4\x1e\xae\x0f\x1b\x9f\xfa\x0b\xe0\x4e\x9d\xaf\x04\xf0\xa6\xd2\x4e\x8f\x84\x24\x90\xbd\xfe\x91\x6f\xc5\xe3\x43\x6d\xec\xc7\x24\xfd\xb8\x3e\x6b\x7f\x0e\xb0\xb5\x74\x5e\xd3\x41\x8a\x8d\xa2\xf9\xa3\x26\xda\xdd\x5e\x20\x3a\x88\x39\x4b\x01\x19\x2f\x7a\x12\x41\xac\x72\xd0\x18\x91\x06\x7d\xe8\x7e\x27\xbc\xcf\xe4\x6d\x35\xd2\x19\x0e\x26\xfe\x3e\x98\x51\x8d\x17\xf8\x98\xcd\xeb\x79\x86\x83\x82\xeb\xd1\x8c\xf8\x3c\x46\x72\xc4\xaf\xf2\x3a\xcf\x0a\x0a\x1d\xe9\xc6\xa1\xc3\xbf\x47\xd2\x98\xbe\x2f\x77\xc0\xe1\x68\x7c\x37\x58\x80\x62\x1e\x52\xd8\x40\x45\x9f\x48\x53\x9e\xe5\x0a\x3d\xd2\x0f\x73\xe1\xfe\x50\xeb\xf9\xf7\x78\x7b\x16\xaf\x37\xcc\xc5\xf0\x78\x1e\x92\x11\x56\x97\x03\x55\x5e\xeb\x4f\x7e\x98\xcd\xfb\xf9\x62\xe0\x77\xff\xc4\xd5\x35\xd1\xdb\x9f\xb4\xe4\x1f\xb5\xdc\xc8\x1b\x99\x77\x45\xcf\xf3\x06\x02\x87\x98\x95\x4c\xa8\xc8\xa2\x2f\x7f\xf0\xb8\x64\x82\xf2\x84\xba\x3b\xc8\x71\x5e\x2c\x69\xe4\x90\x34\x44\x6c\x72\x64\x16\xd4\x61\x8e\x88\x5c\xe5\x77\x19\xe4\x3c\xaf\xc2\x1e\x1b\x39\x87\xda\xa4\xa9\x0c\xe7\xa8\xc3\x91\xd1\x41\x7b\xf1\x33\xc4\xc5\x9c\x7c\x26\xae\x43\x71\x04\x23\x43\x5c\xfc\x78\x65\x88\x8b\xfc\xd2\x47\x0e\x08\xf2\xcd\x65\x0c\x6a\x22\xc6\x19\x38\x8c\xaf\xf9\x12\xf7\x51\x74\x99\x72\x8d\xcd\x55\xff\x18\x4c\xe5\xbd\x35\x72\x8f\xe4\x4a\xfa\x7d\x00\x67\x26\x97\x31\x68\xea\xb0\x44\x0e\xf3\xe6\xf6\x80\x9b\x30\xe7\x4a\x04\x6e\x15\xe4\xfc\x88\x88\x5b\xc1\xa3\x0c\x22\x6c\xab\xd4\x06\x23\x03\xf1\xbd\xfb\x30\x90\xbf\x45\x71\x3d\x23\x72\x8e\x2b\xa2\x7a\x90\x73\xbc\x7e\xcd\x37\x50\x7c\xfd\x3d\xcc\x81\x32\x31\x8e\x8c\x01\x53\x41\x86\x23\x5f\x95\x1c\xfd\xea\x9f\xa0\xd9\xea\xf9\x10\x84\xa5\x08\xe7\x41\xd0\x6c\x11\x56\xd3\xc8\x77\xc6\xfb\x48\xfd\xdd\x18\x98\x7d\xb8\x6f\xb0\xe0\xc4\x09\x13\xb4\x5a\xa5\xe6\x1a\xf9\x09\x83\xb8\xda\x03\x8b\x69\x88\x13\xce\x2f\xde\x2f\x7a\x4c\xf3\x4b\x04\xbf\x1e\x8f\xfc\x06\xf3\xa2\xdf\x93\x7c\xc9\x8f\x25\x41\xae\x4d\xde\x3e\x83\x20\xd7\xaa\x88\xfe\x41\x10\x6b\x97\xeb\xf0\x28\x5b\x60\x49\x75\x95\x51\xe3\xe8\x7c\x14\x50\x73\x05\x87\x34\xc8\x81\xde\xeb\x57\x19\x88\x76\x71\x96\x05\x57\x69\x61\x3f\x8d\xc8\x61\xee\xc7\xb9\xe4\x80\x50\x77\x19\x1b\x87\x1e\xcf\x92\xc9\x8c\x2a\xe6\xa1\x94\xc8\x2f\xf2\x99\x7f\x04\x61\x4a\x07\x3f\x4a\x78\xfb\xe9\x3e\x16\x42\x11\xe4\x0d\x3a\x4a\xb8\x4a\x17\xd7\x93\x53\x5e\x8f\x7d\x09\x07\x1e\xed\x7f\x69\xc0\x1d\x35\x97\x01\x5a\xf5\x7c\x22\x3f\x8a\xe8\x43\xa4\x41\x37\x73\x55\x48\x5e\x26\x1b\xd4\x28\x13\xb8\x16\x9d\x8f\x42\xda\xe0\xee\xf5\x22\x4d\x70\x76\xfd\x81\x0d\x4d\xc4\xba\x44\x9c\x8f\x24\xbf\xc2\x63\x34\xbd\x9f\x27\x92\x8c\x98\xdd\x72\x72\xfe\x74\x3e\x08\x3a\xec\xc3\xfb\x15\xde\x78\x3a\xdf\x05\x2c\xb3\x2e\x7a\x43\x5a\xf3\x2e\x6f\xc0\x41\x90\x62\x15\x82\xc2\x28\x17\x66\x00\xef\x1f\xf9\x54\xaa\xfb\xbf\x78\xec\xdc\xff\x1d\xde\x7e\x6a\x1f\xb3\x85\x1f\x0f\xd2\x8a\xd7\xdd\xeb\x49\xe8\x80\x10\x52\x06\x69\xc5\xab\x99\xa3\x42\x68\x80\xe9\x0d\x71\x83\x45\x36\xb4\x51\xf7\x80\xbb\x2a\x2a\xe3\xb0\xf0\x55\x86\x19\xdf\x5c\x26\xf4\xe0\xcf\x24\x17\x82\x0e\x5b\xaa\xee\x1c\xb5\x8b\x06\x5b\x23\x88\x27\xb9\x0c\xd0\xa3\x36\x93\xa0\xc3\xae\x9c\xec\x83\x20\xc2\x5a\x75\x79\x2b\x70\x2b\xc2\x7e\x1a\xe4\x28\xef\x3e\x6c\x15\xb5\x96\x0c\xee\x23\x72\x8a\x2b\x59\xd1\xa8\x25\x50\x71\xd5\x3e\x36\x05\xd9\x48\x46\xfd\x79\x3c\xaa\xca\x61\xa0\x54\xb9\xa2\xe6\x28\x2e\x13\xf7\x20\xe2\x1d\x39\xc1\x9b\x17\x1f\x88\xfb\x39\xd4\x3f\x11\xc6\xe6\x24\x08\xea\x2b\x56\x63\x44\x8e\x70\xb9\x72\x8f\x3a\x88\x23\xf1\xf8\x23\x47\xb7\xd4\x2a\x04\xd1\x35\xa5\x19\x1e\x04\xd1\x65\x45\x10\x8f\x0a\x76\x91\x2f\x3b\x39\xb8\xab\x0c\xa0\xa3\xc2\x49\xee\x5e\xef\x23\xd2\xc0\xba\x8c\xf7\xd4\xee\x32\x8f\x8b\xd4\x9e\x91\x43\x3b\x7b\xfe\x44\x04\x0b\x78\x71\x54\x24\x53\xa5\x65\x1d\x35\x92\x0f\xb9\x7f\x2e\x8b\xbc\xc3\x06\x41\x70\xc5\x9c\x7f\x05\x1e\xc5\x6a\xaf\x48\x7b\xed\xcb\x4e\x10\x5c\x53\x32\xb3\x51\x89\x63\x28\x1e\x1f\xd8\x60\x02\x6a\x1c\x35\xbc\x67\xba\xcb\xc1\xc9\x69\x3c\xf1\x18\x89\xd9\xa9\x4f\x5c\x46\xcd\xff\x0d\xe2\xaa\xf6\x91\x2c\x65\xe3\x19\x15\x57\x57\x01\x8f\x0e\xd2\x56\x67\x01\x3b\x8e\x86\x1a\x49\x69\xa3\x07\x69\xac\x8b\x82\x22\x47\xa4\xb1\x96\x2b\xf4\x68\x01\xbf\x22\xe2\xd0\xc2\x15\x5d\xcc\x47\xdb\xc3\x35\xdf\xf5\xa8\x41\xdc\x3e\x6a\x61\x4b\x96\x2d\xe3\x7a\xdc\xf5\x3d\xf9\x59\x86\x1e\xdb\x06\x96\x9e\x74\xf2\xa3\x05\xf0\xa7\xe6\xdf\xb0\xd9\xec\x5f\xdf\x07\x5c\x89\xfa\xab\x11\x8a\xe0\x32\x8f\xdf\x57\x39\x88\xad\xc6\xdf\x02\xcb\x4c\xed\x03\xdf\x23\x94\xe2\xd1\x42\x2d\xa3\xfb\xd6\x50\xa3\x5a\x0d\x49\xdc\x59\xb3\x64\xdd\x08\x5d\xf0\xe3\xd1\x8e\x70\x50\xd0\xfa\x1f\xe1\x1a\xab\xf6\xae\x70\xf8\xd0\xf7\x78\x4f\xca\x00\x3d\xda\x1d\xcc\xab\xbe\x07\x7e\xc7\xc4\x98\x38\xb2\x36\xfc\xfb\x3b\xe2\x5a\x34\x1e\x5c\xa7\x15\x54\x3c\x1a\x9a\x8b\x2d\xa9\x4c\xdc\x56\x17\x7d\xf9\xc9\x74\x5b\x5c\x0e\x2c\x31\x97\xd1\xa4\x48\xb2\x8f\xcc\xb7\x9b\x24\x91\x8e\x1a\x51\xc0\xb3\xa3\x73\x1e\x14\x2a\x30\x3a\xae\xce\x56\x4b\x91\xb9\x35\xcb\xd5\x7d\x74\x6c\xa2\x8a\x43\x1b\xbd\x86\x37\x98\xbe\xaf\x41\x4f\x3f\xe7\xa3\x87\x64\x2e\xcd\x41\x27\x2d\xb6\xd2\x5a\x8f\x8e\x77\xef\x10\x3d\xed\x91\xc6\x5a\xf7\xab\xa3\xd6\x5b\xf3\xfb\x83\xc7\xa5\x03\xaf\x50\x24\x76\x77\xc4\x70\xb9\x76\x8e\xfe\x03\xb1\xfc\xd9\x8c\x1e\x9c\xb2\x17\x37\xe0\x63\x24\xd6\x77\xbc\x1b\xb2\x74\x92\x3d\x20\xde\x3d\xf8\x27\xe2\x4e\x5c\x46\x8d\xa3\xcb\x4e\x10\x53\x93\x1f\xfe\xe8\x2f\x69\x49\x75\x98\x3b\x58\x4b\xe6\xec\x7b\xf8\xc1\x7b\xb1\xd9\xfc\x22\xb5\xc1\xc0\x0f\x5e\xae\x85\x63\xec\x01\x37\xf1\xb9\x3c\x64\xe2\x6c\x56\xc3\x8d\x40\x09\x16\x71\x1c\x39\x88\xeb\x50\x19\xec\xaf\xec\xfa\x40\x11\xfe\xac\x07\x99\x36\xbb\x39\xe9\x01\x56\x98\x37\x7b\x80\x05\xa6\x20\xb0\x31\x70\x45\xf5\x63\x36\x90\x94\x2c\xa9\x8c\x48\x2e\x26\x49\x63\x80\xa5\xe4\xc7\x66\xfc\x60\x85\xa9\x3f\x82\xf8\xb2\x0e\x43\x04\x55\x29\xe2\x7b\x0c\x38\xd5\xaf\xef\x1b\xf9\x6c\x44\x3c\x46\x8b\xa0\x34\x8d\xef\x27\xee\x44\xf3\x5b\x9c\x6b\x15\x30\xde\x18\x18\x8c\xab\x1e\xcf\x41\xfe\x98\x5d\x8f\xc5\x40\xb2\xcb\x5e\xef\x11\x6a\x07\x7d\xcf\xf9\xeb\x22\x3e\x03\x1d\x72\xf1\x7a\x63\xf3\x49\x3a\x0f\xc4\x61\xf5\xaf\xfe\x50\x0b\x25\x8f\x17\x03\xbd\x39\x75\xe2\xb0\xba\x72\xfe\x8f\x31\x03\xb5\x5a\xed\x01\xdc\x29\x6f\xa2\x31\xce\x30\x30\xab\xbd\x2b\x1c\x38\xf4\xfd\x0f\x0a\xaf\xcb\xa0\x5e\xfb\x3c\x04\x5c\x46\x71\xb9\x22\x69\x68\x7e\x44\x90\x4f\x9f\x8f\x9b\x34\xd4\x22\x2e\x83\xc7\xf5\x6b\x7e\x00\x6f\x26\x9f\x5f\x1c\x68\x2c\x19\x13\xb7\x55\x15\x97\x33\x06\x41\x7f\xd9\xed\x83\x55\x96\x65\x03\x1a\x01\x3f\x24\xe6\x71\xf2\x38\x2a\x42\x7c\xcc\x1d\x6f\x44\x31\x3f\x91\xd9\xb2\x8a\xd8\xce\x1d\xe6\x4e\x6a\xac\x09\x71\x54\x9a\xec\x31\x03\xb8\x53\xcc\xe4\x0c\x6c\x32\xd1\x13\xe2\xbc\xba\xe2\xba\xc6\xc4\x86\x2a\x14\xee\x31\x09\x6a\x95\x6b\xf3\x98\x39\x98\xab\xcf\x79\x20\x8e\x2b\xcb\x75\x7e\x4c\xe0\x74\xe4\x3d\x3a\x66\x24\xd7\x93\xa4\x31\x01\xce\x34\x33\x37\x03\x7e\x46\x6a\xca\x89\x1a\x53\x0e\x18\x83\xb8\xa9\x9a\xdd\x1e\xe7\x55\xc0\xa3\x63\x8e\x40\xb0\xd0\x78\xb1\x61\x2a\x34\x63\xcc\x11\x71\x32\x6a\x6f\x60\x63\x92\xa6\x86\xb8\xaa\xe2\xf3\x38\xc9\x3f\x24\xec\xb0\x31\x23\x39\x99\x1e\x97\x89\x8d\x52\x40\x98\x63\x1e\x11\x54\xab\xf5\x38\xb0\x01\x7b\x7c\x78\xa7\x59\x6d\x3e\xcf\xb0\x79\xb9\x3e\x98\x41\xfd\x1e\xd4\x69\x4b\xa2\xc4\x35\xe5\xe2\xf5\x7f\x02\x78\x58\xeb\xf1\x86\x03\xc2\x9f\xb8\x22\x8f\x09\x64\xbc\xe0\x31\xc6\x11\xf0\x05\xe2\x5c\xc8\x34\xd9\x14\x81\x3c\x0e\x5e\x62\xc1\x87\x8c\x08\x5a\x52\xe6\xbf\x41\x26\xca\x6a\x9d\xe0\xb1\x11\x64\xd7\xdc\x1e\x06\x50\x11\x6f\x32\x53\x76\xa1\x82\x8e\x63\x8f\x4c\x7b\x1a\x0f\x41\x4d\xe6\x8c\x8f\x3d\xbc\x53\xd4\x3e\x71\x0d\xfb\x57\x7d\xe8\x54\xdd\x1e\xae\xc8\x22\xc6\x64\xaa\xcc\x8a\x13\x19\x47\x8a\xe4\x43\x1a\x0f\x41\x8e\x72\x75\x1d\x47\x02\x65\x55\xc4\x26\x82\x9e\x6c\xd0\x3c\x22\x99\x99\x0e\x1b\x41\x50\xf9\xfb\x7b\xfc\xf4\x3d\xbe\x0c\xe7\x24\x62\x71\x90\x8c\x4c\x71\x1e\xe3\xa8\xc1\xb9\x0d\x95\x2b\x6a\x15\x8d\x97\xc7\xc3\x3a\xd3\x83\x20\x45\xc5\x3d\x8c\x83\x64\x63\x72\x0d\x1e\xc4\x29\xd5\xe6\xf5\xe7\xf1\x10\xd6\xd6\x38\x5a\x1c\x66\x7f\xcf\x63\xa5\xc7\xf6\xc0\x9b\xeb\x6b\x7f\x40\xa1\x6d\x3a\xac\xc4\x35\x0d\x25\x23\x1b\x47\x0f\x1d\xba\xeb\x41\x24\xd0\x65\x38\x7a\x10\x3f\x97\x31\x98\x7a\x3c\x70\xc2\x36\x40\x1f\x24\x1b\x1b\x5e\x1f\xe2\x2a\x14\xd7\x33\x0e\xf2\xe9\x08\xf5\x78\x90\x59\xb3\xf9\xf1\x25\x8e\xa9\x66\xf7\x4f\xbe\x1c\x61\x59\x0d\xe2\x98\x9a\xe2\x78\xc6\x81\x77\xd2\xd4\xe5\x3b\x8e\x70\x2d\xd6\x7e\x85\x43\x82\xd7\x17\x6c\x29\xab\x0d\x0f\x38\xef\xad\xbb\xbe\xae\xef\x9b\xeb\x81\xe7\xf0\xfc\x43\xf2\xf4\xfd\x8b\xa0\x4c\x7f\x7f\xa2\x36\x12\xb1\x3a\x4e\x80\x35\x77\xd7\x13\x07\xe1\xfd\x3a\x71\xb0\xf9\xaa\xc7\xa6\x27\x49\xef\x38\xc3\xb5\x5d\xeb\x47\xf2\x30\xa5\xc4\x18\xc4\x61\x55\xa1\x24\x8f\x88\xbb\xb2\xc3\xc6\x11\x41\x97\x9b\xeb\x03\x08\xd6\xed\x91\xa2\x42\xcc\xe4\x41\xe6\x42\x79\x73\x8d\x03\xd7\xfb\x2a\x62\x19\x99\x44\xed\x90\x70\x84\x9a\x54\xc4\xff\xc0\x1b\xaa\x7b\xbf\x08\xc2\xb4\xc3\xc7\xf1\x44\x3e\x27\xf5\x8f\xcd\xb4\x7b\x3d\x9f\x40\x74\xd0\x7a\x3f\xe1\x3a\xec\x7a\x10\x2f\x7c\x3f\xdf\x1d\xc9\x4c\xf3\x23\x47\xbd\xe2\x9e\xc6\x41\x7e\x1f\x61\xf7\x8d\xe3\x25\xbf\x90\x88\x31\x71\x5b\x75\x9a\x3e\x10\x0a\x60\x7a\x79\x6e\x91\xec\xae\xaa\x0c\x84\xbe\xee\xfb\x09\xbd\xcd\x9b\xeb\x43\x72\xdf\x55\x0e\x6f\xbb\xcf\x78\x4f\x1c\xa8\xac\xa9\x39\x77\x24\x2f\xd1\x0b\x32\xa7\xd6\x5a\x5c\xee\xd0\x37\x7f\x8f\xc3\x8c\xee\xcb\x89\x26\xcb\xcc\xfe\x19\xf9\x84\xaa\xfb\xc3\x86\x3b\xf3\x9f\x3c\x2e\x04\x95\x35\xc1\x97\x8c\x33\x05\x1c\x86\x1a\x4b\x61\x43\x70\x7d\x24\x93\xd1\x62\x65\x80\x15\x75\x58\xce\xc8\xa9\xef\x72\x09\x62\xa3\xdf\x47\xc4\xb8\xd4\x1e\xa4\x61\x1d\xc2\xc2\x1a\x04\x91\x15\x01\x17\x8e\x13\x6f\x2d\xc1\x9b\x8c\xb3\x62\x30\x17\xa7\x78\xd6\xe0\xfc\x54\x6e\x61\xb3\xd0\x62\x11\x24\xa6\xb8\x8c\x71\x06\xdc\x81\x1e\x97\x33\xb0\xa9\xdc\x7f\x0f\x6c\x33\xf5\x0f\xe7\x2d\x94\xd8\xf1\x13\x44\x26\x62\x74\xe2\xbd\x91\x7d\x38\x70\xc5\xb4\x8d\xe0\x0c\x9d\xb2\x1e\x83\x33\x82\x38\x45\xac\xce\x19\x11\xdb\xfa\x3d\xde\x57\xca\x04\x39\x7e\x82\xc8\x34\x3f\x32\x71\xe6\xfe\x55\xc6\x1b\x44\x8f\x31\x99\x36\xfb\xd4\xe5\xb8\xf0\x8e\xb3\x5a\xe1\x2a\xf1\x38\xfb\x7b\xbc\xa5\x74\x99\x23\xae\xc9\x36\x90\xc8\xbc\x29\xf8\x9e\x41\xa6\xcd\x92\xa5\xf6\xbc\x22\xe8\x56\x8f\x29\x99\x32\xbb\xd2\xcc\x8e\x0b\x6f\x1a\x45\x9c\x8f\xab\x47\x1a\x6b\xf5\xdf\x03\x81\x40\xbf\xc7\xb5\x58\x41\x80\xe3\x42\xcd\x22\xd7\xe3\x11\x99\x29\xcd\x3c\x5c\x13\x49\x46\xeb\x7b\xcd\x88\x73\x50\x3d\x8f\xc3\xae\xf3\x76\x1d\x21\x89\xa8\x3d\xd2\x34\x2b\x3f\xcb\x20\xee\xa9\xda\x46\x77\x41\xfc\x6d\x43\xb8\x50\xd3\xd8\xfb\xed\x82\x73\xb4\xcd\x85\xcc\x94\xd9\x3a\xfb\xeb\x08\x9b\x92\xe6\x47\x90\x6d\x93\x8e\xfd\x3a\xe3\xf1\x52\x3d\xf9\x4e\x14\x67\x35\x2e\x24\x29\x01\xbd\x8e\xeb\x04\x25\x5c\x6a\xb5\xeb\xc4\x26\xea\xfd\x09\xac\xb0\xe6\xdf\x13\xb7\xf0\x55\x1f\xc4\x5b\xe3\xc7\xf5\xb6\x78\xbc\x38\xe0\x98\x93\xbd\x2e\xd4\x6e\x3e\x5f\x20\x00\x28\x4d\xf3\x20\xb3\x65\xa9\x5e\x6f\xbc\xed\x4a\xf7\xf7\xa1\xa6\x72\x7d\xe8\xf0\x5d\x46\x52\xd5\x63\x7a\x45\xd0\xb0\xe8\xc7\x45\xfe\xa5\xcd\xdf\xdf\xc4\xc5\x7d\xd5\x07\x62\x87\xe6\x87\x24\x98\x7c\x9e\x89\x1b\xb3\x43\xc3\x15\x9a\x13\xa9\x99\x22\xf3\xa5\xd5\xc6\x64\xbe\x2c\x5f\xe7\x11\x35\xd9\xfe\xf5\x7b\x5c\xcf\x8b\xbf\xe7\x7e\xfa\x3e\x04\xbc\x8c\xf7\x13\x6f\x3e\xdb\x6c\x88\x43\xab\xca\x37\x35\xae\x1f\x07\x1f\xad\xd7\x1b\xc0\x93\x9f\xf1\x11\x77\xd6\x94\x62\x61\x44\xdc\x99\x10\x1a\x06\x71\x66\x2d\x37\x97\x51\xb3\x69\x7c\xf7\x16\xf4\x23\xab\x0c\xb3\x2c\x4d\xc8\xbd\x87\x99\xa3\xa9\x1c\x8f\x91\xfa\x0f\x38\x30\x8d\x8f\x38\xa7\x9a\xfe\x08\x15\x79\xdc\x2d\xd2\x82\x6a\xf0\x11\x67\x30\x5d\x06\xf5\x53\x2f\x3b\x99\x20\xab\x80\xd5\x06\x99\x20\x8b\xe2\x56\x06\x99\x1d\x7b\xca\x2e\x63\xd3\x91\x64\x70\x93\x7f\x44\xf9\x53\xc6\x8d\x6b\x9b\xd5\x2c\x37\x97\x59\xd8\x3d\xe3\xe6\xb2\x99\x33\x24\xa8\xa8\xda\xf5\x91\xa0\xa1\x36\xbd\x78\xa0\x7e\xfa\xe5\x8d\xcc\x89\xde\xbc\x1b\x94\x66\xeb\xbc\xef\x40\x65\x16\x67\x7f\x07\xd0\x9d\x74\xe6\xc4\xfd\x64\x61\x43\x0d\xe2\x7a\x5a\xf3\xfc\xf0\x4e\x2b\x1e\xcf\x43\xd0\x9f\x1e\x2b\xe2\x76\x8a\x22\x76\x07\x99\x0f\x8b\x0d\xa4\xc4\xe5\x34\x73\x6a\x0f\xc9\x7b\xbc\x7e\xcf\x0e\x90\x9d\xc6\x47\x1c\x4e\x16\xdc\xc7\x78\x22\xc5\x80\xd4\x68\x0f\x40\x99\x02\xda\x1b\x0f\x0e\x13\x43\x97\xe7\x21\x28\x4f\x58\x72\x83\xcc\x7c\x4d\x39\xb3\x07\x71\x30\xd9\x6a\xa5\x87\xc7\xc8\x36\xb0\x07\x1b\x97\xe0\x4f\xc6\x13\x0e\x12\x1e\x4f\x8d\x88\xe4\xa6\x72\xf8\xe9\xab\xbf\x16\xc0\x7c\xea\xaf\x87\x41\x54\xbf\x0f\x04\x07\x9d\x97\x07\xb5\x84\x20\xed\xc7\x33\xc2\x86\xa2\xf5\xe2\x7c\x09\x18\x70\x3c\x01\x5f\x24\x1b\x05\xc9\xee\x8a\x5d\x99\x49\x76\x57\xed\x3d\xf3\x00\xc9\x6f\xef\xa9\x07\x35\xc1\xf4\xfa\x5f\x11\x21\xae\xdf\x13\x64\x66\xce\x9f\xe4\x74\x79\x0e\xff\x1e\x49\x4f\x9c\xe0\x03\x7c\x8a\x1f\xff\x27\xf2\xcb\x78\x7e\x4f\x78\x13\xea\xf7\xa1\x49\x98\x2e\xc3\x79\x4b\x92\x78\x42\xe7\xaf\xfb\xfa\x12\x4a\xa0\x20\xbf\xf1\xe2\xa0\xa3\xb8\xb2\xf1\x6e\xd8\xc8\x44\x4c\xdf\x3d\x52\x32\x34\x95\xc3\xa0\xeb\x32\x06\x5d\xdd\xa7\xf7\x27\x94\x60\xa8\x0c\x5c\x51\x76\x99\xcc\x94\xd5\xbf\x27\x0d\xee\xe6\xdf\x83\x55\xb7\xb9\x1e\x84\x0d\x31\x9b\x2f\x28\xda\xe5\xab\x8c\x9a\x4e\xfb\xf3\xa6\x50\xb3\xb9\x1c\x99\x47\xa7\xca\xd8\x70\xf5\xd8\xbc\x84\x2e\x08\x5e\x67\x10\x77\x54\xfd\x98\xbf\x39\x5c\x7f\xb5\x5e\xa8\xdd\x6c\x23\x7b\x23\x8e\xcc\xe3\x21\xc8\xdc\x0e\x48\x6f\x41\x32\xd0\x7d\x7b\x0b\x36\x44\x3d\xa6\x2f\xcc\xb3\x5d\x79\x5f\xb0\xe7\xf6\xaf\x72\xd8\x84\xd5\x5f\xa4\x41\xd7\x7d\x20\x99\x5d\x56\xfe\xa8\x41\x32\xbb\x52\xc4\x2c\xbc\x33\xce\xaf\xfa\x9b\xc4\x7d\x89\x3e\x90\xec\xad\x58\x52\x7f\xb1\xd1\xda\xdb\x31\xe2\x82\xac\x36\x7b\x03\x52\xff\xab\x1e\x87\x2c\xaf\x27\x36\x59\xdb\xd8\x22\xf9\xdb\xde\xff\x48\x72\x21\xc8\xa8\xec\x22\xe6\x6f\x00\x35\x8a\x18\xfe\x04\x0d\x55\xd7\x07\xb6\x8c\x06\x73\x83\xe5\x94\x5d\xc6\xa0\xad\x97\xfc\xc5\x75\xee\x6b\x71\x9e\xe0\x4c\x34\x58\xbc\x81\xcc\x69\xbf\x3f\x06\x34\xd5\xbf\x70\xfe\xcd\xe5\x04\x10\x9e\xfa\x0b\x88\x7b\x6f\x46\x78\xff\x88\x53\x7d\xc9\x77\x21\x2c\xae\x49\x50\x50\xd7\x78\x66\x64\x76\x93\x6b\xf2\xdc\x36\x38\xd9\xec\xef\xe3\x31\x48\x2a\x57\x20\xff\x5d\x8f\xc1\xf6\xa3\x06\x9c\x1b\x11\xea\xe2\xac\x27\x99\xdf\x7a\x6d\x2e\xe3\x00\xf0\xe1\x0c\x27\x99\xe0\xba\x92\x3b\x4d\xe2\x84\xba\x38\x9f\x49\x66\xb8\x3c\x3d\x9e\x1d\x31\x79\xd3\xf8\x7f\x2e\xbf\xbf\x0f\xf8\x98\xa6\x32\xeb\xf1\xe1\x74\x66\x24\x87\x93\x0e\x7b\x92\xfc\xad\xe6\xaf\xdf\x07\x36\xd6\xa6\x72\x20\x1c\xe8\xf7\x81\x95\x94\xb4\x1e\x04\x95\x0a\x35\x79\x6e\x29\x0c\x9a\xea\x3f\x6c\x58\xdd\xbf\x27\xa8\x74\xd7\xfc\x23\x88\x74\xaa\x1e\xe0\x3e\xe5\x30\x9f\x5b\x0e\x6f\x23\xb5\x8f\xb7\x94\x82\x1e\xe7\x96\x49\xe9\xe0\xf9\x41\x1c\x84\x8d\x34\x37\x1c\x42\x72\x53\x7f\x05\x35\xe1\xae\xfd\xc2\x55\x59\x69\x6a\x27\x71\x4f\x4d\xd8\x51\x73\x0b\x48\xfc\xa2\xfe\x20\x16\x8a\xa0\x9f\x5b\x10\x8b\x5d\xeb\x11\x06\xf6\xa4\xf1\xd6\x80\x0f\xd1\xf7\x35\xce\x93\xfa\x0f\xb8\x96\x5d\xed\x13\x67\x91\xbd\x7e\xa4\x19\x17\x62\xc5\xdc\x90\xd4\xab\xe7\x07\xea\x74\xf2\xf9\xa8\xb1\xbe\x1a\x4f\x8b\x7c\x45\x1a\x4f\x00\x69\x66\xd7\xa3\x26\xf6\xfc\x5a\xdc\x1f\xad\x17\xd8\x6e\xc3\xeb\x43\x90\xe6\xe6\xf3\x8e\x6b\xb6\x32\x77\x4e\xe2\xb8\x9a\x92\x59\xcd\xad\x83\x88\xb1\x6b\x7c\x68\x02\xf6\xaf\xef\x09\x82\xf4\xf9\xc2\x9b\x4c\x11\xe4\x93\xe4\x7b\xa5\x7a\xff\x7a\x30\x7b\x6e\x8f\xb4\xca\xbe\x9f\x23\x34\x31\x9a\x0f\xf0\x50\xc2\xda\x9a\x1b\x92\x71\xf7\xf9\x06\x21\xe4\xeb\xfc\x00\x1f\xa5\x20\xd0\x19\x71\x60\x42\xe8\x98\xdb\x08\x6c\x42\x9d\x8f\x1f\x4d\x85\xbf\x67\x3d\x86\xc6\x0b\x56\x9d\x52\x1c\xcc\x6d\x06\xaa\xbb\xbe\x0f\x6f\x38\x9f\xef\x1f\x9b\xb6\xe6\xc7\x63\xb1\x7b\x7f\x0f\x5c\xf5\x3d\xbf\x60\xc6\x7d\x1e\x50\xab\x8a\x59\x9b\xc4\x81\x65\x21\x40\xcc\x8d\xc7\x42\x6a\xe8\x19\x71\x61\xf2\xa6\x9b\x1b\x90\xfe\x52\xc3\xcf\x48\xf6\xd7\x7c\x3e\xb1\x41\xa6\xfc\x27\xae\xc8\x73\xc3\x95\x74\x78\xf2\x44\xe4\x2b\x68\x69\x12\xe4\x95\xa7\x89\x11\x06\xc4\xdd\x87\x01\x6c\xa9\xe1\xc3\xf3\x86\x37\x90\x36\x83\x20\x2e\xe9\x10\x27\x41\x5c\x55\xc9\xc9\xe6\x0e\x27\x25\xe0\xc5\xb9\xef\x04\x75\xe9\xf2\x93\xd9\xaf\xca\xef\x7f\xee\x64\xb2\x94\xc3\xc1\xdc\x53\x60\x8f\x7d\xfa\xdf\x33\x06\x5e\x11\x27\x32\xf3\x35\x45\xf4\x4f\x32\xf3\x35\xc5\x4d\x4c\x82\xac\xba\x80\x14\x27\x99\xfa\x5a\x75\x7f\xe4\xd4\x96\x37\xd5\x8c\xcc\x7d\x3e\x7c\x3b\x11\xee\x32\x28\xce\xbd\x85\x5a\x47\xe3\x01\x55\x5a\x3a\xf7\xb9\x63\x50\xcc\xc3\xdf\x13\x57\xa2\xcd\xdb\x81\x8c\x97\xcd\x67\xee\xa1\x96\xd3\x61\x20\x08\xab\x2a\xee\x68\xee\xe4\xb3\x50\xfe\x95\x49\xa6\xbd\x2e\xb5\xd5\xdc\x81\x80\x57\x10\xe8\xdc\x47\x18\x74\xd5\xdf\x24\xa8\xf3\xa3\x86\x9b\x04\x55\x75\x01\x1f\xce\x9d\xb4\xd6\x4a\x0b\x3c\x23\x93\x9e\x1f\xcb\x1d\x94\xe9\x54\x34\xbf\xc8\x54\xa9\xcb\x4f\xa6\xbd\x22\x49\x60\xee\x27\x6a\x82\x4d\xe3\x39\x89\xab\x18\x9a\xef\x15\xd8\x74\xaa\x07\xae\x62\x4f\xae\x8f\xfd\xd4\x7c\x91\x24\x8a\xd7\x0f\x57\x68\xa9\x71\x67\xc4\x49\x99\xb8\xef\x91\xec\xab\x6b\x7e\x57\xc4\xad\xa8\xbf\xc8\xd4\x97\xf5\x3d\xcc\x93\xe0\x91\xe6\x7e\xe3\x1d\xa6\xcb\x4d\xdc\x55\x93\x03\xc6\xdc\x51\xcb\xec\xc5\xf5\x38\x54\x88\xd8\x12\x87\xd5\x86\xe7\xf3\x04\xb1\xd5\x7c\x60\xbe\x92\xc7\xfb\x06\x3c\xc8\xa7\x4c\xdc\x52\x91\x01\x77\x92\x3c\x2f\x37\x3d\xf6\x89\x34\xb5\x8a\xbb\x99\x3f\x71\x4d\x1f\x66\x6d\xa6\x3d\xd4\x28\x4d\x65\xe0\x81\x74\xdf\x52\x8e\xfd\xd9\x55\x0e\xef\x37\xb5\x9f\x03\xf1\x40\xbf\x07\x08\xb1\x6a\xbd\x89\x33\xca\x92\x2c\x66\x42\xd2\x95\xf7\xe0\x4c\x38\xa4\x28\x74\x60\x92\xac\xae\xca\x01\x60\xa6\xf0\x56\x73\x19\xce\xdd\xcc\x15\x71\x49\x59\x6a\xf5\x99\x5a\xa4\x2d\x76\x19\xef\x26\x3d\x4e\x24\x9b\x6b\xf2\xb6\x9b\x69\x3d\x26\x5d\xf9\xab\x66\x0a\xc4\x81\xa2\xf5\x02\x98\x57\x69\x9d\x67\xc2\xbb\x4d\x69\x91\x67\xfa\x71\x18\x71\x19\x33\x82\x1e\xbf\xc4\xfd\x69\x6e\x3f\xd2\x3a\xbb\xbd\x13\xc9\x5c\x8f\x37\x71\x3c\xf5\x6b\xfd\x02\x3e\x4a\xf4\x34\x11\xf1\xff\xb5\x7e\xd8\xb4\x14\x27\x34\x23\x0e\x47\xd8\x6c\x33\x91\xaf\xaa\xe8\xf1\x4c\xa8\xed\x6a\x53\x7b\x2f\x41\x97\xae\x7f\x03\x41\xe1\xf3\x7b\xe2\x58\x8a\x99\x8f\x1c\xcc\xee\x70\x99\xc7\x6c\xfc\x89\xe4\x32\x33\x06\x1c\x65\x9a\x9c\x79\x07\x6e\x41\xc4\x2d\xef\xa1\xa6\xf9\x6c\x76\x86\x73\x95\x6b\xdd\xcc\x60\x35\x09\x5e\x60\x66\xbc\xaf\x5a\x77\xb9\x50\x3f\x55\x0e\x6c\x22\xf5\x87\x8d\x47\x6a\xa4\x49\xdc\x4c\x95\xc1\x75\xe6\x84\x77\x8f\x38\x9d\x1c\x62\xb0\x24\x8d\x5c\x02\xe2\x5e\xdf\x13\x71\x2f\x9d\xef\xcc\x05\x1d\xb8\x88\x71\x2e\xf1\xd8\xa9\xbe\xe2\x6d\x22\x49\x20\x57\xbc\x93\x3c\x9e\x16\x9c\xb0\xd6\xa3\x23\x29\xb8\xbe\xa3\x16\x10\x67\x9e\x3b\x8f\x8f\x0e\x43\x06\xfe\xa2\x79\xbc\x91\x26\x55\x9c\x3a\x71\x2d\xb5\x7a\xbd\xb1\xb1\x08\x6b\x69\x66\xd4\x86\x5d\x8f\x3f\x99\xe3\x72\xd5\x61\xcf\xe8\xf4\x2d\x69\x91\x39\xae\x6f\x1e\xdf\x89\x4d\x49\x8f\x41\xbe\x42\xcd\xa8\x7a\x82\xc6\xe4\x9a\x3b\x49\xbe\xd6\xa4\x36\x99\x19\xe6\xc2\x9c\x1e\xc9\xd6\x4a\xf5\x7c\x5f\x6c\x44\xe2\xdc\x4a\xa4\x05\xd6\xfc\x0b\xde\x44\x43\xe7\x85\xe4\x62\xb5\xe8\x32\x97\xb0\xe9\x89\xb9\x20\x99\x57\x57\xd0\xed\xfc\x24\xef\xd2\xf7\x81\xa5\xa5\xc7\x2b\xe2\x36\xa4\xf6\x9b\x05\x44\x03\xb9\x7a\xce\xd2\x23\xa7\xfb\x67\xfc\x15\x04\x04\x5f\xb6\x8a\xcd\x4c\xd8\x5d\xb3\xc2\xc9\x5a\x92\xac\x3c\xd6\x42\x44\x98\xe4\x6b\xc9\xb5\xfb\xf7\x81\x90\xf0\x19\x5f\x05\xbb\x4a\x36\x94\x59\x03\xa8\x51\x97\xb3\x02\x84\x2a\x83\xf6\xac\xb8\xe2\x5a\xb2\xab\x47\xb8\xc2\xaa\xbd\x80\xc4\xdf\xd4\xdf\x41\x3e\x9a\xaf\x32\xde\x3f\x5a\xdf\xfa\x93\x36\x57\xf5\xd8\x5c\x94\x9f\x65\x92\x9f\xa5\x4a\x2d\x3d\xc9\xaf\x52\x15\x34\x37\x2b\x6a\xc0\xa9\xfb\x10\xf9\x54\x9a\xd7\xeb\x26\xc8\x77\xb8\x1e\xb5\x4b\x77\x99\x7c\x50\xa2\x17\x15\x04\x02\xd9\x74\x27\xf9\x54\xaa\x34\x13\xb3\xed\xf1\x18\x7f\xe6\xfb\x93\xbf\x44\x92\x5a\x0b\xef\x32\xed\x77\x4b\x11\xe7\xf5\x69\xbf\xc1\x4c\x2a\xa8\x74\xb6\x70\x98\xd1\x63\x8c\x2b\x77\xb5\x24\xd0\xf0\xe6\x14\xd6\xd9\x24\xbf\x49\x17\x7c\xd1\x6c\x25\xd4\xfe\xfe\x3e\xf2\xa1\x34\x95\xb1\xf9\x89\x39\x68\x05\x49\x4a\x8f\xe5\x8f\x6b\xb8\xe7\x83\xeb\xb7\x0c\xea\x13\xd7\xef\x6e\xc9\xa7\xa1\x16\x53\x72\xb3\x89\x2b\x78\x6d\x1e\x1f\xae\xe0\x66\x56\x1a\x40\xc2\xd6\xc4\xb4\x46\xc4\xbc\x98\xbf\x48\x99\xa2\xcc\xb1\xb3\xb5\x40\x8c\x50\x19\xb3\x87\x92\x2b\xce\xd6\xe3\xf7\x1a\x1f\x71\x49\xcd\xed\x91\x0f\x29\x6f\xfe\x3d\x0e\x14\x6d\xff\x93\xc7\x85\x7c\x2b\xe5\xff\xc7\xd8\x9f\x23\xd9\xef\xf3\xc0\xa2\xe0\x56\xbe\x25\x88\x33\xe9\xfc\xf7\x42\x80\x52\x7b\x6d\xf4\xfe\x8d\x0e\x25\x4a\x99\xe7\xbe\x78\x37\xe2\xe7\xd5\x29\x4a\xe2\x04\x82\x18\x13\x8c\x7e\x58\x1d\x35\xa8\x99\x21\xbd\xfa\x0c\x4d\x84\x93\x9b\xa8\x7c\xa8\xcd\x98\x91\x91\xce\xc1\xbe\x87\xaf\x75\x5e\x26\x1d\xa1\xa3\xeb\xe7\x7d\x5c\x16\xbc\x0c\x3a\xb0\x85\xe8\x30\x5a\x1d\x6a\x63\xd6\xe6\x20\x89\x90\xf0\x0a\xab\x43\x8d\x64\xb1\xa0\xd5\x17\x20\xb5\xb5\xd8\x2b\x24\x6b\x3e\xbf\xa3\x32\x21\xc7\x07\x07\x2c\x6b\x6a\xaf\x0e\x1b\x22\x43\xa7\x57\xb7\xa8\x6f\xc2\xf9\x47\x7d\x0a\x8d\x07\xa8\xa9\xcc\x73\x58\xdd\x23\xda\x83\xeb\x01\xb8\x90\xcc\xcb\xa8\x87\x59\x91\x97\x43\x8f\x4a\x70\x45\xdf\x83\x83\xbe\xeb\xfd\x88\xeb\x57\x3b\xea\x73\x68\x3d\x21\xc9\x30\xce\x7d\x75\x48\xe6\xac\xd4\xb7\x3a\xcc\x96\x92\xac\x3a\x42\x61\xa7\xd6\x1f\x40\x74\x92\x74\x91\x07\xd0\x18\x9a\xba\x90\x07\x30\x08\x0f\xb3\x50\x4f\xa6\x4b\x4d\xee\x51\x6c\x49\xfb\x05\x07\x28\x1d\x94\xab\xdf\x11\xed\xc4\xc3\x01\x9f\xd3\xd4\xfa\xc1\xcc\x99\x74\x98\x1e\x1c\x16\x1d\xe6\x07\xd1\x44\xd4\x6c\x3b\xcc\x9e\x32\x03\xf5\x07\x36\x78\xd1\x1f\x42\xd1\x19\xca\xba\x90\x77\xd0\x58\xc9\x71\x8d\x2b\x24\xd9\xca\xdf\x08\x4d\xa6\xa4\x3e\x50\x8c\x8e\x3e\x85\x35\x52\x48\x9a\x83\xbf\x41\xef\xbc\xbc\x06\xcc\x8c\xf4\xd9\x2d\xe4\x21\x34\x99\xdd\x50\x5f\x66\x74\xb5\x43\xd3\xa6\x83\x7f\x0d\x00\x5b\x16\xf5\x0f\xe6\x48\x2c\xa8\x35\xc2\x27\x50\x38\x9f\x12\x9a\xe6\xb7\xff\xa3\x86\x0d\x9e\xcf\x47\x28\x2e\xd7\x67\xc0\x47\xc6\x24\xe7\x35\x02\x45\xf9\xe7\x77\xac\x47\xe3\xef\x90\x8c\x3b\x7f\x23\xfa\x90\xf4\x8d\x7a\x34\x95\xc5\xd7\xd6\x80\x26\x41\xc4\x83\x35\xa2\xd2\x24\xe9\x63\xf4\x88\xd6\xe3\xf3\x91\x37\x41\xe6\x3c\x70\xb9\x33\x9a\x72\x8d\x11\xa1\xc1\x1c\x0f\x34\x6d\xe6\xbd\xac\x11\x3e\x34\xad\x17\xe0\x4c\x58\x63\x7f\x0d\xc0\x93\x2c\xcd\x7f\xe3\xf2\xa6\x66\x3c\x10\x60\xb1\xb4\x7f\x3b\xcc\x9a\x1c\x0f\xce\xa3\xcc\x68\xc3\x23\x94\x9f\xfb\x7f\x10\x8a\x4b\xfa\x8c\xfa\x32\xac\xb4\xbb\x50\xef\xa5\x13\xe8\x73\x0d\x44\x97\x49\x78\x88\x54\x89\x4c\xfe\x35\x1e\x68\x1e\x34\xc3\x4d\x98\xe9\x27\x35\xe7\x89\x12\x1e\x74\x43\xac\x19\xd1\xba\x3f\xbf\x91\x17\xc4\xf9\x23\xd5\x62\x30\x09\x72\x4d\x98\xe9\x59\x2f\x6a\xcd\x0b\x3e\xa7\xac\x76\x68\xc6\x45\xdf\x83\x99\x95\xc2\xd7\x4c\x88\x36\xe5\x7c\x27\xce\x87\x2c\x07\xa8\x5f\x53\x57\xfe\x17\xe0\xca\x35\xe1\xd0\x2b\x59\x1f\x0b\xe0\x3a\x4e\x36\x05\xb1\xf2\xe3\x91\xe4\xa5\xc9\x16\xe4\x75\x90\x59\xcc\x82\xd0\x64\x32\x87\x09\xec\x1f\x1d\x06\xe4\x85\x34\x46\x03\x2d\xe4\x81\x14\x11\x0f\xf2\x40\x3a\x8b\x37\xad\xc8\x03\x99\xea\x0f\xd8\x40\x53\xe3\x09\xcd\x43\x9b\xd5\x00\x0f\xc1\xc3\x38\x5b\x40\xd6\x73\x33\x80\x05\x26\x4d\x6d\x76\xa0\xfe\x56\xfd\x0e\x66\xcf\xef\xf7\x60\x5e\x9c\x4f\x07\x71\x50\x52\x9c\x01\x9f\xc3\xc3\x31\x23\x49\x91\xcc\x61\x02\xde\x82\x0e\xff\x35\x11\x3d\x43\x08\xf2\x35\x03\xa2\x9b\x92\xc5\x44\xb1\x30\x26\xb1\xad\xbf\x3c\x08\xcd\x17\x0e\x61\x1d\x66\xe4\x3d\x34\x02\x03\xae\x09\xe6\x4f\x6c\xa4\x35\x03\xbe\x86\x9a\xdf\x44\xe8\x25\x33\xba\x57\xd4\xaf\x21\x56\xdc\x9a\x28\x06\x46\x20\xd3\x35\x9f\x88\xbe\xe1\x78\xa3\x66\x7b\xd7\xf3\xe1\x60\xfe\xc6\xb7\xc2\xc1\xcc\xf5\x5d\x00\x16\x65\x68\xf3\x5a\x08\x55\x67\x92\xe9\x5a\x81\x4d\x47\x7a\x40\x9e\xc5\x60\x28\xef\x8a\xbc\x8a\xa1\xef\x21\x43\x98\xa1\xbb\x6b\xa1\x58\x18\x33\xda\xd7\x02\x0a\x32\x51\x92\xd7\x42\x99\xe5\xa9\xf1\xa1\xd8\x12\x8b\x25\x2d\xd4\xbb\xa9\xba\xec\x17\x34\x5d\x26\xa5\xae\x85\xbc\xa4\x8b\xcc\x71\x81\x1e\x2b\x0f\xdf\x6a\xd0\xdc\xb9\x5f\x0b\x66\x52\xa2\x32\xaf\x85\xd0\x72\x96\xc1\x5d\xa8\x97\x33\x18\x5a\xbb\x22\xaf\x81\x49\x6d\x6b\xad\x58\x2f\x3e\x8f\x68\x38\x3a\xa4\xd7\x0a\x4d\x46\xe3\x03\xfd\xfd\xac\xcf\x0e\xac\x28\x8e\x67\x87\xb0\xa8\xe7\x01\x3f\x42\x4d\x06\xf5\x66\x06\xe1\x9c\x16\xea\xcd\x0c\x86\x8a\xaf\x65\x11\x9a\xac\xe7\x01\x0c\xc9\xcb\x06\xf5\x63\xea\x22\x7d\xae\x13\x01\x41\xec\x2f\xcc\x8a\x43\xed\xc8\xab\xa2\x30\x82\xfa\x30\x45\xfc\x61\x41\xd8\x61\xe5\xd5\xb5\xc2\xac\x48\xe1\x77\xfd\xe5\xfd\xb0\x1d\xf4\x2d\x66\xbb\x9e\x40\x75\xe6\xf8\x1e\x54\x2e\xe5\x79\xd8\xf0\xb1\xca\x8c\x8b\x54\x8a\x46\x94\xe7\x85\xfa\x2d\x83\x49\xe0\x6b\x67\xe4\xa9\x50\x92\xdf\x05\xd1\xa1\x14\xc6\x90\x7a\x30\x08\xaf\xb4\x50\x7f\xa5\x35\xd2\x33\xea\xa7\x54\x86\xae\xaf\x0d\x54\x6b\x46\xdb\xae\x0d\x33\x22\x11\x47\x16\xea\xa7\x0c\x86\x0a\x2f\xa4\x22\x14\x86\xe2\xaf\x1d\xf4\xc3\xf3\xba\x1b\x4a\x94\x50\x78\xd8\x61\x66\x6c\x7a\xff\x81\x99\xfc\x5b\x8f\x1d\x01\x02\x14\xb6\x36\x2a\xc1\xea\xf2\x40\x2a\xc2\x90\x99\x7f\xf7\xa8\x3f\xc5\xef\xed\x28\x5b\xfe\x2f\xd1\x62\x6b\x1b\x88\x93\x97\xc1\x46\xa8\x1f\x1d\xe6\x6b\x43\x2d\x26\x7c\xc6\xda\xa8\xa1\x3c\x34\x79\x64\x4c\x2f\x0d\x06\x70\x04\x72\x10\x21\x6e\xba\xc9\xc1\x69\x90\xe4\x98\xe1\xbf\x2c\xd4\x5e\x5e\x4e\x06\x07\x6f\x26\xb3\x34\x14\xc3\x21\xfc\xc5\x42\x68\x73\x21\x64\xff\x32\xa8\xb5\xd2\x6c\x0c\x40\x95\xb2\xc9\x5a\x45\x80\x01\x99\xbf\x81\xb9\x30\x43\x79\x21\xf4\xb9\x4b\x12\x89\x7a\x18\x5d\xe3\x6b\x60\x86\xd4\x64\x10\xca\x5c\xe5\xd0\x35\x40\x7c\xcb\xa1\x6e\x0b\x70\x1a\x9a\x0f\xb0\x9b\x98\x01\xbe\x2c\x42\x55\x79\x98\x6d\x23\xe9\x53\xe3\xf7\x80\x8b\xe1\x7a\xc1\xec\xc0\xe2\x6c\x0b\xf5\x1e\x0a\xb1\x91\x96\xdd\x71\x99\x7f\xed\x1e\xc5\x90\xc8\x3c\x3d\xc1\x87\x41\x9f\x17\xea\x3f\x34\x86\x42\x2f\x4f\x51\xb3\xfd\xeb\xdf\xa3\x26\x3e\x99\xa1\x17\x64\xa8\x93\xb9\xfa\x5f\xd2\x28\xdb\x11\x5d\xa6\x80\x08\xaf\x21\x79\xf3\xf7\x7b\x18\x2a\x43\xbb\x97\xdf\xa1\x49\x71\x7c\x28\x16\x45\x48\xfe\xe5\x51\x39\x90\x97\xb1\x23\x29\x90\x25\x02\x56\x84\x76\xca\x4c\xea\x90\x14\x19\x5a\xba\xce\x05\x4d\x8c\x87\x11\x10\xfc\x5d\x3e\xb5\x83\xfa\x2d\x92\x14\x4f\x86\x66\x4c\xcd\xe2\x14\xc0\x9b\xf0\xfb\xa7\x21\x89\x8d\x9a\xcc\x81\x19\x83\x95\x23\xd7\xe9\x51\x7c\xa9\xf0\x37\x24\xfd\xa2\xdf\x30\xfb\xa8\x7f\x38\xbc\x99\x11\xbf\xce\x0e\x78\x13\x8e\x1f\xc2\x09\x33\xde\x57\x40\xb4\xcb\x87\x74\x1c\xfb\x4f\x66\x71\x0e\x2a\x6b\x72\x7d\x4f\x24\x1d\x73\x3f\xcf\x1f\x90\x25\xc7\x8b\x80\x17\x31\xeb\x03\xc4\x02\x49\xf2\x37\xce\x2b\xf3\xd2\x16\xa2\x13\x2b\x11\x1d\xd6\x3d\x22\x1a\x6d\xf0\x37\x92\x9a\xb9\x5e\x77\x58\x3e\x48\x3f\x77\x14\x73\xe3\x7a\xdc\x2b\x84\x9f\xc6\xdf\x05\xed\x95\xbf\x51\x42\x82\xc2\xc1\x1d\x65\x9f\x69\x49\xb9\x91\xd4\xad\x00\x84\x7b\xc7\x79\xe6\xef\x08\xdd\xa6\x59\xf6\x36\xb4\x73\x7d\x6e\x0b\xf8\x23\x8e\xc7\x90\x0a\xc1\xf3\x73\x3b\xf2\xee\x34\x3f\xc0\xb3\x54\x5e\x5e\x77\xa0\x1c\xf3\x32\xba\x0f\xf2\x62\x28\x0c\xdc\x07\x96\x18\x6a\xce\x37\xb0\x10\x99\xf1\xbe\xee\x13\x49\xc1\xfa\x0d\xb3\xfa\xa5\xdf\x08\xa5\xd7\x7c\x81\x7d\x28\xcd\xe7\x06\xfd\xb3\xf8\xdd\x7a\x10\x8a\x7c\xd1\x0c\xf6\xc4\x65\x49\xfe\xf7\x00\x6e\x88\x49\xe0\x0b\xd1\x81\x85\x40\xa5\xeb\x81\x30\x56\xc9\xff\x23\x7a\x8e\x01\x5d\xeb\x09\x1f\x35\x85\xf3\x07\x01\x2e\xed\xdf\x2e\x17\x84\xc6\x75\xe6\x1d\xac\x07\x19\xe2\xcc\x5b\x58\x4f\x84\x92\x72\xf1\x1e\x1c\x1e\xc2\x7f\xac\xe7\x95\xf4\x1b\x43\x25\x17\x20\xc1\x07\x51\x6a\xd7\x83\xc3\xb5\xe8\x03\x00\xa4\x77\x63\xe5\xc3\xf5\x4c\x94\x51\xe5\x66\x3f\x0b\x71\xe8\x94\x8c\x9e\x05\x07\x21\x0f\x4b\x84\xde\x51\x72\xdd\x7e\xd5\xff\xfe\x97\x18\x4a\xb8\xfd\x95\x6c\x17\xb1\x97\xb6\xbf\x8b\x97\x18\xbd\xb4\x3d\x57\xfc\x1e\xfc\x7d\xbf\xcf\x7f\x37\xf3\xf6\xf7\x32\x4b\xcc\xb3\xd9\x5e\xf1\x7e\xe2\xfb\xef\xe2\x26\x86\x5e\x6f\xe4\x85\x2c\x26\xa9\x6d\xd4\xbb\x49\xf4\x41\x6d\x6f\xe8\xef\x33\x6b\x6d\x7f\x35\xab\x44\xcd\x62\x7b\x43\x7f\x1f\xb3\xd9\x3e\xf0\xfc\x27\x49\x6c\xe4\x85\x2c\x96\x59\xdd\xc8\x0b\x49\x29\xb3\xbf\x99\xd1\xce\xef\x2f\x8c\xb7\xb0\xff\x85\xef\x15\xb5\xbf\xf3\xa5\x66\xb2\x91\x97\xb1\xaa\xd6\x6b\x63\x3c\x95\xef\xdb\x7e\xdb\x1b\xdb\x5f\x49\x35\xb1\xf8\xda\x46\x1e\x43\x62\x71\xb4\x8d\xbc\x85\x44\x20\xcc\xed\x8e\xef\x35\xf6\xff\x4a\xaa\x89\x79\x03\x1b\xf5\x6c\x16\x51\x73\xb7\xbf\xcc\x32\x31\xf4\x7a\x23\xcf\x20\xd1\x66\xbf\x71\xf9\x2c\x96\x7d\xdd\xc8\x33\x48\xd4\x14\xb6\xdf\x98\xcf\xe4\xf8\x6e\xf4\xdf\x39\x9e\x07\xeb\x35\x39\x9e\xf7\xf2\x4a\x49\xfd\xbf\x87\x77\x31\x69\x72\xa3\xfe\x4d\x62\x34\xe5\x46\xde\x41\x62\x19\xd8\x8d\xbc\x83\x45\x07\xf8\x46\xbd\x9b\x44\xd4\xdc\x7d\xde\xc3\xbd\x98\xd7\xb1\xcf\xf5\xbc\xed\x9f\x26\xbc\x51\xdf\x66\xd1\xcc\xb9\x4f\xc2\xfa\x7e\xc2\xc3\x46\x3d\x9b\xc4\xfa\x37\xfb\x24\xcc\x87\xf3\x3f\x41\xdf\x9c\xef\xc9\x0b\xbf\xd9\x5f\xc1\xfb\x8b\xfd\x05\x7d\x2f\x7e\xbf\xbe\xeb\xcf\x3c\x8c\x7d\x2a\xd6\x7f\xf1\x7b\xf5\x3d\x4f\x34\x4b\xee\x53\xf1\xfd\xc5\xef\x37\xf4\xbf\x38\xfe\xa0\xf7\xc5\xef\x81\xde\x89\xea\xbd\x71\xf9\xa6\xac\xf5\x7a\x25\xe9\xc5\x7a\x38\xfb\xf4\x82\x76\x8e\x77\x5c\xf8\xcd\xf9\x0e\xac\x27\xcf\x3b\xea\xb9\x24\x0a\xbf\xfb\x4c\xac\x27\xf7\xf7\x4c\x47\x3b\x9f\xc7\xf9\x60\x80\xd0\x3e\xfb\x1d\x2f\x99\xe9\x3e\x36\xf0\x9b\xdf\xf3\x68\xe7\x7a\x80\xbe\x89\xb2\xbe\xcf\xab\x89\x2d\xd6\x23\xda\xe7\x60\xfc\x85\xf3\x3d\xe8\xbf\x70\x7e\x37\xfa\x2f\xec\x0f\xf4\x4d\x9f\xf6\x3e\x4f\x3c\xcf\xfe\x1e\xcc\xef\x13\x36\x37\x52\x17\x16\x85\xd9\x7d\x5f\x2f\x3f\xca\x3c\xbf\xf7\xf5\xf2\x23\x5e\x4e\xfb\x7e\x85\xcd\x44\xd4\xf9\x7d\x27\xf4\xf7\x09\x6f\xfb\x2e\xf1\x9b\xdf\x2f\xef\xf9\x1a\xe4\x1f\x77\x79\xcf\x17\xa3\xd1\x36\x52\x19\xd6\xa8\xf5\x1f\x2e\x97\x8d\xfa\x1f\x29\x37\x76\xfe\x4a\xfa\x8b\x37\xfd\x46\x1e\x43\xca\x64\x26\xf7\xcb\x5c\x17\xa3\xad\xf6\xfd\x4a\xfe\x6b\xa8\x73\x10\x1b\xa3\x31\x36\xea\x83\x24\xa2\x04\x6f\xd4\x07\x59\xb4\x81\xef\xbb\x75\xb4\x73\x71\xda\x4b\x3c\x43\xef\xbf\x6a\x5b\xca\x64\x0e\x77\xc7\xe2\x93\x18\xef\x20\x3e\x32\x87\xfb\x65\xbe\x8b\x3e\x98\x7d\x07\x71\x4d\x7e\xcf\xde\xf1\x4e\x2d\x9e\xe3\x7d\x1e\xde\x3b\x88\x89\x87\x17\x92\xca\x9a\x9a\x6f\x10\x0b\x0f\x27\x24\x8b\xc4\xa4\xad\x8d\xbc\x85\x44\x20\xbb\x7d\xbf\xcc\x6d\x4d\x8d\xf7\xc6\x66\xf3\xf0\x42\x12\x49\x0c\x1d\xdc\xc8\x73\x48\x34\x43\xed\x3b\x88\x8d\xc4\xf4\x80\x58\x18\x1a\xbd\x9f\x97\x39\x25\x86\x26\xef\xa7\xc4\xef\xce\xdf\xe9\xbf\xff\x2d\x9a\xbd\xf6\xf3\x6a\x22\x89\x36\xe5\x8d\xbc\x80\x45\x20\xc1\xfd\x80\xd8\xa8\xc9\x6d\xc4\xfd\x2f\x46\xeb\x6c\xc4\xfd\x27\xc2\xb9\xec\xe7\xbd\x7c\x17\x35\xd5\x8d\xfa\x24\x89\xf5\x4f\x36\xea\x81\x24\xd6\x9f\xd8\xcf\x44\x3b\x0f\xef\x33\xd1\x1f\x2f\x53\xd4\x07\x49\x44\xa1\xde\x10\x2e\x12\xd5\xfa\x0d\xe1\x22\x15\xcd\xc7\xf0\x9b\x87\xf5\xc1\x7e\x16\x1e\x56\xd4\xdb\x48\x17\x13\x73\xf6\xe3\x86\x07\x38\x40\xdc\x7e\x17\x33\x59\x36\x82\xe9\x13\xcb\x3f\xed\x07\x3b\x4e\xdc\xea\xfd\x3c\xd1\xce\x15\xc6\x8e\x31\xde\xc8\x2e\x5c\x3f\x0c\x86\x36\x14\xa5\x48\x0c\xae\xb5\x2b\x76\xec\x1b\x90\x21\xb8\x3c\x31\xfe\xcd\xae\x8c\xef\x7d\x27\xce\xae\x1a\xbf\x17\x7f\xbf\x2b\x7a\xa5\x9f\x07\xde\x29\x32\x4f\xd0\x10\x3d\xfd\x3e\xc0\x11\x55\x8c\xa0\x73\x04\x10\x80\x2e\x4a\x00\x86\x78\xea\x44\xdb\xa9\xa1\xee\x44\xba\x18\xc3\x66\xd7\xab\x7f\x26\xc6\x98\x19\x0a\x51\xbc\x0f\x54\xfe\x03\xdb\xdc\xd9\x65\x03\x99\x76\xf6\x10\xdb\x3e\x38\x84\xd8\xf6\xc1\x1e\xe7\x3b\x82\x8b\x51\x9e\x86\x90\xde\xc4\x40\x19\xbb\x70\x29\x5c\x8c\xb4\x31\xc4\xf8\x26\xe2\x4a\x19\x6a\x3d\xbc\x0f\xb0\xcb\xa0\x94\xc9\x2f\x6e\x50\x02\xef\x09\x43\x54\xee\xfb\x0f\x0e\xda\xf0\xc9\xc5\x41\x59\x8e\x07\xf8\x49\xc3\x56\x2c\x7d\x01\x5d\x2c\x7e\xc0\xb1\x6e\xb9\x72\x90\xa0\x25\x56\x97\xb1\xeb\xd5\x63\x12\xf1\x46\xec\xc2\x55\xc3\x70\x15\x43\x81\x85\x44\x70\x16\x43\x41\x83\x74\x91\x1d\x58\x02\xf1\x50\xd6\xb4\x04\x59\xe4\x22\x3f\x30\x94\x38\x78\xff\xf1\x7d\x32\x81\x9c\xea\x77\xc0\x2c\x65\xc7\xef\x6f\x48\xa9\x60\xcc\x45\xff\xa8\x18\x73\x61\x17\xa0\x3f\x06\x63\x5b\x6a\xf1\x7b\xf1\x37\x3e\x58\xaf\x7f\xb8\x6e\x2c\x75\x8c\x9f\x0b\x94\x46\xbc\xcc\x8f\xcf\x68\xe7\x60\x66\xcc\x6f\x72\x7e\xaf\x30\x9d\x18\xcd\x67\x28\x31\xf0\x3e\xc0\x15\x9a\x86\x07\x38\x3c\x5c\x00\x17\x83\xc1\x0d\xf1\xb2\x89\x85\xe6\x2d\x2d\xcc\xa7\x71\x08\xa0\x1b\x1a\x02\x0d\x75\x03\x12\x75\x69\x43\x3c\x6a\xa2\xee\x6a\x88\x2f\x4d\xf4\x32\x5a\x8a\x3d\xe7\x79\x4d\x07\xa4\xfd\xfb\x8f\x97\xb4\xa9\x8f\x59\x82\xfc\x5b\x3b\x3b\x7c\xf0\x41\x1e\xb6\xf4\x2c\xfc\x66\x87\x0f\xa6\x5c\x27\x17\xf1\xc1\x94\x79\xd8\x80\xbc\xff\x3e\xc0\x1e\x1e\x4c\xf9\x53\x77\x0d\xd0\xfa\x89\x12\xbd\xe5\x04\x1a\x60\x02\x8a\x21\xa6\x34\xd5\x4f\xa4\xb6\x0c\x11\xf7\xa2\x0c\x6d\x39\x61\x4c\xdf\x35\x6b\x19\x32\x6e\x1d\xec\x01\xd7\x48\xe5\xe1\xcb\x90\x69\x35\xe4\x1c\x44\xc4\x11\xe6\x20\xa2\x4f\xa6\xb6\x1c\x74\xf2\x5d\xcb\x96\x83\x4e\xb8\x89\x79\xa2\x7f\x1e\xd5\x0c\x1d\x8a\xb9\xed\x96\x37\x8e\x2e\xa3\xb0\x2d\xef\x57\xce\xf9\x99\x00\x84\xca\x8b\xc1\x09\x96\xc1\x1e\xe8\xff\xb3\xbc\xc1\x4f\x7a\xd6\x1b\x8e\x07\xd8\x05\xd8\x07\xb1\x3d\x2c\x5b\xc5\x6f\x7e\x10\x74\xc2\xe8\x0d\xcb\xa0\x13\x02\x43\x19\xf0\xd7\xd3\xc5\x52\x5f\x86\xc0\xcf\x44\x3c\x00\xcb\x67\xc7\x03\x5c\xe4\x63\x78\x80\x23\xc0\xcd\x74\x31\x5a\xd0\xf2\x39\x78\x80\x43\xba\xe3\x8b\x1c\xd2\x5d\xf0\x02\xd9\x36\x30\xd5\xdf\x7f\xf0\x93\x10\x67\x9a\x26\xfd\x80\x32\x58\x69\xd7\x32\x84\x5d\xfa\x94\x0d\xd1\xa5\xa9\x7d\xf2\x81\x15\x90\x56\x23\x77\x28\x29\x36\xe2\xd3\x76\xac\x40\x3b\x62\x6e\x93\x15\x5c\x2d\x17\x25\x4a\x2b\x20\x8d\xf6\xf3\x1b\xb7\x15\x03\x66\xad\xf4\x1e\xff\xe0\x27\xfb\xfb\x09\xa2\x88\x58\xe9\x33\x1e\xe0\xa0\xfa\xc2\x03\x7a\x61\xc7\x03\xec\xa3\x63\x65\x7f\x5e\xb8\xf1\x5b\xed\x0f\x5e\xe0\x99\x2d\xb0\x01\xb4\x9f\xdf\x18\x34\x2f\xcc\x02\x36\x75\x31\x7f\xd8\x10\xd8\x99\xe8\x4e\xb4\x82\xfb\x8c\x16\x6e\x43\xa0\x67\xa2\x92\x65\x05\x5c\x87\x30\x68\x56\x82\xfa\xf4\x3d\x8f\x76\x8e\xd8\xb1\x4a\x53\x1b\xe3\x98\x02\x4f\x5c\xf1\x27\x1e\xe0\x2a\x05\x3d\xf2\x08\x02\x52\x3c\x5d\xf4\x10\x5b\x81\x9e\x4f\xe4\x3f\x2b\xb8\xbc\xae\x49\xe6\x5d\x0e\x96\x75\xea\x8b\x3b\x1e\xd0\x27\xb1\xac\xda\xfb\x20\x58\xe6\x3e\x58\x09\x82\x25\xf3\x2e\x77\x8c\x89\xab\x04\xd5\x8b\x4e\x6c\x2b\x41\x9e\x8b\x23\x00\xa7\x6b\xeb\x5f\x8a\xee\x5b\xc5\xdd\xc9\xf0\x32\x43\xac\x69\x22\x7e\x88\xd5\xa0\x4c\xf2\x90\x9a\xe3\xf9\xce\xdf\x98\x1e\xbd\x18\x86\x60\xd4\xc4\xc8\x78\xab\x60\x7a\x8c\xc4\xb6\xda\xe2\x37\x3b\x04\x65\xb3\x36\x9d\xd5\x0e\x22\x61\x2a\x8e\x01\x35\x3c\x11\xc5\xdb\x6a\xaf\xf1\x00\x7b\x80\x36\x44\x18\x6b\x03\x6c\x78\x22\x92\xac\x55\x5c\x9f\x5d\x23\x84\x34\xcd\xf0\x63\xab\xeb\xe0\xf7\xb7\x41\x15\x5c\x90\x4e\x57\xab\x3b\x9e\xe7\x08\x41\x75\x4c\xd4\xb2\x6a\xe8\x9f\x0c\xa6\x1a\x4c\x29\x2c\x4a\x61\x15\xba\xb9\xb8\x2a\x70\xc3\xdf\x07\xd8\x83\x2d\x3c\xc0\x19\x78\x8c\x98\x33\x80\xfe\xd5\x33\x67\x00\x3a\x17\x17\xae\xa0\x5a\xc6\x8c\x59\x85\xb1\x8a\x96\x62\xab\x77\xb4\x73\x84\x90\xa8\x12\x4b\xff\x5b\xbd\x3b\x1e\x60\x87\xf7\x1d\xd6\x46\x7d\xe1\x3d\x28\x5d\x53\x7a\xc2\x3c\xc9\xa3\x58\x9f\x84\x07\xf8\x02\x14\x00\x3a\x17\x0c\xd8\xde\x89\xce\x27\x6b\x19\x8b\x44\x03\xa3\xb5\xa0\x93\xcf\x80\x67\x0d\x06\xa0\x4e\x8e\xd7\x5e\x05\x3e\xa5\xa4\x2f\x40\xa9\xd2\x45\xd0\x82\xb0\x48\x16\xad\xdd\x61\x11\xfd\xf6\xa9\xc5\xbe\x72\xd2\x2d\xf6\x95\x12\x02\x10\xa8\x93\x6c\x28\xd6\x20\xea\x26\x89\xba\x2d\xf6\x85\x17\x7a\x8b\x7d\xe1\x85\x0e\x0c\xe9\x94\x98\xa3\x69\x0d\xdc\x81\x09\xf3\xd6\x20\xd5\x88\xef\x77\xa8\x39\xc4\x61\xb5\x1e\xab\xc4\xa3\xdc\x33\x36\x92\x37\x7a\x87\x9c\xca\x0a\x1a\xd6\x63\xd1\x78\x5a\x7b\x8d\xf7\xbf\x29\x23\x92\x35\x11\x17\xd6\x7a\x8f\x76\xf6\xbf\xdf\x09\xd1\xea\x62\x00\x31\x4e\xf4\xa7\x1b\x82\x2f\x13\x5d\x80\x06\x90\xe2\xc4\x8a\x0e\x86\x60\xc1\xc4\x84\x7d\xeb\x4f\xb4\xf3\xfb\xa0\x02\x56\xcc\xb0\x71\xbd\xf3\x61\xe1\x47\x1b\x98\x0f\xd3\xe0\x6c\xc0\x6a\xf3\xc3\xe1\x47\x31\x3c\xf0\xad\x38\xa2\xe9\x12\x93\x28\x0d\xd1\x74\x89\x3e\x57\x1b\xd0\xea\x88\x15\x68\x03\x22\x13\x1d\xf0\x36\x7a\xbc\xdf\xf9\x3b\xde\xff\x06\x3c\x46\x0e\x33\x2e\x3b\x1c\x2f\xf7\x21\x4c\xb1\x8d\xb0\x73\xeb\x2c\x8e\x81\x29\x15\x8e\x00\xdc\x86\x21\x31\x36\xa0\xd4\x0d\x5e\x41\x03\x4a\x5d\x62\xde\xb9\x0d\x88\xd6\x84\x4f\xb3\x11\x7b\x42\xd5\x79\xec\xb0\x14\x93\x8e\x07\xd8\xc7\xd0\x6f\x1f\xf8\xcd\x0f\x84\x29\x9b\xf9\x23\x36\x7c\xe1\x01\x7e\x31\x76\x8d\xba\xf1\x88\x5d\xa3\x2a\x0c\xb4\xe0\xf4\xbb\x6a\x90\x6f\x18\x16\x65\x88\x49\x4b\x0c\xfb\x32\xc4\xa4\xa5\x31\xfe\x25\xa0\xd9\x26\x94\xb1\xc4\x6a\xc5\x36\x13\xf6\x98\x7b\x3e\xc3\x54\xcc\x10\x46\x9b\xe9\xe0\x81\x6f\x38\x13\xda\x1b\xcd\x59\x36\x83\x8a\x78\x2c\x81\x46\x9c\x12\x63\x76\x0d\xf0\xc3\x89\x08\x70\x36\x83\x8a\x78\x2c\x67\x03\x99\xf3\x58\x02\x6e\x38\xfd\xbe\xd0\x40\x05\xbc\x92\x67\x90\x15\xcf\xe9\x0c\xb2\xe2\x39\x9d\x10\x95\x12\xdd\x45\x86\xc0\xb1\x34\x78\x30\x01\x10\xfc\x3e\xc0\x2e\x07\x86\xc0\x93\x3a\x21\x3b\x11\x2a\xc5\x26\x64\x7d\x26\x1c\x1a\x10\x7f\x13\xc3\x30\x0d\x91\x68\x89\xb8\x57\x36\x21\x88\x33\x0c\xd3\x80\xe0\x9b\x98\x90\x6a\xd3\xe2\x79\x2e\x91\xe7\xb0\xbf\xf3\x83\x5e\xf0\x00\x07\x14\x0e\x93\x49\x66\x37\xbd\xe1\x01\x8e\x10\xa2\x3d\xab\xb1\xd8\x3c\x31\x02\x7e\x10\xbc\x83\x30\x8a\x06\x4c\xdf\xc4\xac\x25\x9b\x50\x09\xd3\xd2\x90\xa1\x12\x32\xa1\xdd\xe6\x1d\x26\x7b\xcd\xe1\x4e\x78\x80\x73\x00\x77\x65\x40\x84\x4d\xd0\x39\x21\xd9\x6d\x42\x47\x4c\x44\x5a\xb5\x09\x1d\x91\x89\x1c\x86\x70\xb7\xf7\x01\xf6\x00\x1d\x91\x80\x32\xb6\x20\xd8\x13\x73\xc0\x10\x8f\x96\x98\x93\x6e\x88\x3f\x4b\x4c\x7b\xb4\x55\xe3\xf7\xe0\xef\x78\x7f\xf2\x37\x46\xcc\x7b\x77\x55\x4c\x99\xdc\x66\xfd\x79\x29\x48\x16\x08\x38\x4b\x4c\x3d\xb2\x05\x15\x91\x01\x6e\xb6\x40\x98\x12\x78\x01\xec\x9b\xf2\x95\xf4\x0f\x4c\x99\xaa\xc9\x0a\xd3\xf1\xc5\x45\x5b\x1d\x53\x26\x7b\x5a\x20\x44\x89\xaf\x0b\x84\x28\x69\x15\x50\xbf\x29\x5f\xea\x72\x0e\x3c\xc0\x0f\xce\xf0\xa4\x50\xc6\x5e\x41\x9a\xb4\xed\xad\x20\x4d\xda\x1a\x96\xdd\x78\x81\x94\xb6\x0c\xab\x42\xfe\xb5\xc2\x3c\x7d\x51\x8c\x47\x18\x5a\x9a\x14\x05\x56\x90\x62\x57\x3b\xec\xcb\x0c\x4d\xb1\x75\x62\x59\xb4\xae\x10\xca\xe9\xfb\xb6\x15\x16\x6d\x86\xed\xdb\x0a\x5a\xa3\x75\x60\x41\x8b\xcc\x89\x07\x6e\x41\x0a\x67\x1c\xb5\xad\x20\x46\x5a\x0b\x16\x94\xc6\xcc\x6a\x30\x86\xd8\xb3\x44\x00\x7f\xdb\x09\xe7\x89\x4c\x68\xc3\x3a\xc0\x58\x4a\xdb\x41\x4b\xe4\x39\xbb\xc2\x23\xc5\x34\x2f\xdb\x90\x90\x18\xff\x63\x3b\xbc\x14\xf4\xd9\xd9\x86\x0d\x94\x08\x17\xb6\xeb\x9f\x8f\x89\x43\x82\x2c\xae\x13\xb8\x41\x5d\x3a\x70\x40\xae\x4d\x99\x5e\x31\xdb\xb8\x0d\x25\xfc\x6f\x10\x0b\xbd\xe6\xb6\x83\x38\xe8\xa6\x32\x60\xc9\xa6\x45\x72\x04\x96\x6c\x22\xd0\xbc\x01\x8b\x35\x65\xa6\x67\x18\xc0\x58\x7f\x8e\xec\x86\x44\x92\x59\xae\xd7\x80\xce\x8a\x23\xfb\x0f\x77\xcf\xb6\xf8\x7c\xd7\xe7\x0d\x6f\x73\x3c\x30\x5e\x66\x06\x51\xd8\xb6\x83\x07\x38\x40\xb0\x41\x06\x71\xd8\xc6\x65\xbb\x78\xa2\x37\x58\x08\x0b\x38\x1a\xc0\x47\x13\x0b\x34\x1a\xc0\x45\x13\x0b\xbe\x99\xc1\x75\x41\xa4\x79\x03\xd8\x68\xca\x85\x07\xd4\xe0\x78\x25\x20\xa7\x01\x7d\xf4\x7d\x60\xf1\x1f\x09\x0f\x74\xfe\xc6\x88\x28\x27\x5b\x8a\x11\xf1\x83\x39\x46\xc4\xf7\xe1\x79\x65\x58\x9b\x21\x6c\x2e\x65\x99\xce\x01\x19\x9a\x98\xcb\x6b\x56\x46\x3c\xc0\x2f\x40\x54\x67\xa0\x90\x59\xed\xe1\xfb\xe3\x10\xe0\x9c\x65\xe4\x8c\x19\xa4\xb6\xcc\x74\x65\x03\x8a\x68\x22\x8a\xa7\x19\x8c\xf1\xc4\xb2\x31\xa0\x8a\xa6\x2c\x8b\x27\x62\xe9\x12\x91\xb3\xcc\x82\x72\x49\x15\x06\x77\xad\x74\x44\x83\x56\x99\x65\x95\x36\x68\x95\x4b\x93\x04\x1f\x64\xe1\x41\x33\x70\x2d\xd6\x7e\x32\x0b\x42\xa5\x48\x01\x1c\xd0\x44\x00\x03\x33\x48\xce\x8c\xdc\x34\xdb\xf1\x3e\x77\x65\xc7\xfb\xec\xdf\xe2\x79\x0e\x18\x3a\xe2\xd2\x9a\x82\xc7\xb1\xbc\x86\x59\xd0\x1d\x4d\x21\x16\x74\x47\x7e\x64\x27\x9e\xe7\xf8\xe0\xcf\x25\xfa\x89\x59\xd0\xa5\xb6\x04\x22\x1d\xd1\x83\xcc\x83\x4e\x79\xfd\xfb\x95\xc2\x05\xda\xf9\x0f\x9c\x33\x32\x65\xbf\xc2\x07\xca\x8b\xc1\x83\x72\x99\xa6\x67\x1e\x94\x4b\x06\xe7\x41\xb9\xc4\x22\x34\x0f\xca\x25\xc7\x73\xe8\x84\x99\xd5\x44\xcd\xf3\xf8\xef\x7f\xf9\x22\xbb\x71\x08\x7e\x99\x45\x87\xcc\x5f\xda\xcd\xac\x48\x66\x9e\x0f\x7e\x73\x4c\xaf\x7e\x94\x89\x2b\x6f\xfe\x52\x6a\x26\x40\xa1\x39\x58\x66\x6e\x5c\x46\xc4\x18\x66\xc6\xb4\x99\xbf\x17\xf0\xcf\xf5\xe9\x0d\x1d\x90\x5f\xf9\xc4\x07\xa9\x2e\x38\xc4\xb2\x2c\xbd\xd7\x5f\x71\x3f\x33\x1d\xce\x7c\x85\x6b\x97\xc7\xcd\x17\xe6\x48\x0e\xe4\xb0\xbc\x67\xe2\xde\x98\x6f\xcc\x81\x32\x81\x83\xe1\x65\x29\xbe\x80\xf4\xcc\x97\xbe\xe8\x78\x41\x1f\x70\x8c\x59\x1b\x05\x2d\x35\x4b\x3f\x40\x6c\x4b\x66\xf2\xbe\xf9\xc1\xa4\xa8\x81\x00\x83\x33\x33\xe5\xc4\xfc\x19\xe1\x6e\x66\x8f\x0f\x5e\xe0\xf9\x06\x08\x66\xa6\xf7\xd0\x22\xb8\x24\x4b\x4d\x03\xca\x65\x66\x9c\xbe\x01\xe5\xf2\x7d\x20\xf3\x1f\xd8\x07\x9e\x6f\x84\x9b\xe4\x8b\x73\x3e\x09\x73\xe4\xf9\x3e\x19\xbf\x79\x9c\x4f\xc6\x08\x78\x9c\x4f\xc5\xfb\x3c\xce\xa7\x46\xfb\xb7\xea\x27\xf6\x99\xc7\x15\x30\x99\x99\xa5\x02\xed\x74\xcc\x90\xc7\xf1\x4c\xb4\xff\x13\xb2\x99\x9d\x85\x1d\x23\x88\xae\x9d\x55\xde\xb7\x79\x96\xce\x0a\xff\x3a\x79\xf4\x59\xd8\x11\x0a\x38\x07\x7e\xbc\x2c\x29\xec\x2c\x8c\x9f\xae\x80\x13\x44\x42\x85\xe5\x18\xe6\xc3\xb3\x77\x0c\xe3\xe7\x51\x3b\xb1\xc5\x14\x2e\x4e\x6c\x31\x85\x8b\x73\x63\xfd\x29\x4b\x9c\x07\xdf\xa3\xe1\xe1\x3c\xe8\x8f\x86\x87\x13\x14\x40\xd1\xe2\xbe\xe2\xf9\xce\xdf\x98\x31\xd9\xef\x7d\x85\x87\x9f\xf7\xe0\x7d\x61\xc6\xd4\x6f\x00\x65\x99\x13\x4f\x36\xe2\x3f\x72\xe2\xc9\x46\xf0\x68\xca\xba\x53\xee\xf4\xe0\x01\x8e\xe0\xbd\x63\x32\xa3\x7b\xed\xc6\x8e\x27\xaa\x23\x77\x8d\x98\x03\x4e\xe1\x7e\xef\x98\xcc\x3a\xe5\x16\x41\x18\x45\xdc\xe7\x6e\x03\x0f\x70\xc8\xb8\x73\x8a\xb8\xcf\x0d\xa2\x91\x49\xeb\x06\xd1\x30\x66\xce\x6e\x58\xdc\x0b\x81\x05\xec\x7e\xa5\xf3\xcc\x20\x3a\xbb\x47\xc4\x21\x50\x63\xb9\x27\x56\x81\x67\xff\x06\xd9\x11\xa6\xc5\x6e\x18\x13\x8a\x84\xef\x7b\xa3\x4b\x5e\xee\x88\x19\xcd\xcc\xfe\xb4\xfb\xc6\x07\x79\x55\x23\x12\x23\x33\xe1\xc2\x9e\x2b\x22\x15\xb8\x2f\xcf\x7b\x0f\x64\x06\x51\xdb\x03\xed\xbd\x24\xb2\x60\x60\x1c\x66\x06\xc6\xd9\x13\xeb\xce\x93\xf7\xb4\x86\xdf\x7c\x7e\xc5\xf3\xdf\x08\x80\x19\x98\x99\xdf\x67\x80\xf9\xcb\x0c\x8c\xb3\xe7\xa0\x9d\x27\xef\x89\x19\xf1\x22\x44\x24\x42\x66\x20\x9c\x3d\x07\x74\xc0\x8b\xf0\xb9\xff\x62\x1f\xf4\x0f\xcc\xe8\xbb\x19\x1d\xb8\x6d\x99\xa0\x8b\x0e\x9c\x34\x89\xd5\x0e\xb7\x7e\x66\x24\x9d\x03\xf7\x2c\x33\x92\xce\x81\x6b\x96\x19\x39\xe7\x57\x4c\x70\xf2\xfb\x0b\xef\x4f\x7e\x1f\x5e\xb8\xd2\x3e\x3a\x72\x00\x6b\xe5\x34\xf9\xc1\x1d\xb1\x0f\x89\x5f\xd8\x58\x92\xc9\x1e\xf6\x1d\xc1\x12\xe9\xfb\x87\xfd\xfd\x83\x4f\x60\x11\x99\x54\xea\xd7\xab\x10\xe5\x7c\x71\x4e\x58\xd4\x7c\x71\x4e\xd0\x87\x0a\x61\x9f\x1d\xf8\x57\x99\x05\x74\xfc\x02\x9d\x10\x1c\xce\x2f\x68\x33\x85\x00\x41\x7e\xbd\x77\x42\x66\x7c\x9a\x5f\xcf\x5f\xc0\x06\xbf\xf8\xbc\x1c\x85\x79\xab\x9e\xc0\x21\x98\xea\xe6\xe9\xe5\x08\xd2\x14\x3c\x5d\x18\xc1\xa7\x5a\x3b\x9c\xfc\x99\x88\x5b\x0e\x04\xad\x4c\x04\x21\x4f\x30\x95\x0a\x92\xc7\x53\x8e\xf8\x8d\x8b\x6f\x94\xfe\xbe\x51\x39\x82\x12\xf1\x1b\x17\xdf\x00\x25\x30\xe6\xcc\x13\x2e\x0d\xc6\x9c\x79\xfa\x8b\x29\xd1\x18\x41\x1a\xb9\xe9\x37\x3e\xd0\xf8\x01\xe8\x4b\x85\x77\xb9\xa7\x81\x2f\x36\xf6\x38\x30\xe9\xce\x21\x0d\x7c\xb0\xf3\xf9\x89\x49\x76\x76\x10\x01\x20\x7d\xfc\x8b\xb6\xe3\x69\xa1\x37\xee\x51\x5a\xd1\xdb\xe0\xef\x16\x5f\xd3\x03\x58\xa1\x4f\x28\xf5\xb4\x62\x09\x27\xfb\x5f\xef\xe1\x62\xa0\x99\x27\xd8\x2a\x0b\x13\xf0\x3c\xed\x84\x07\xf8\x02\x48\x37\x0f\xb5\x63\x85\xd4\x23\x4e\x3f\x41\x01\x3d\xbd\xea\x56\x26\x34\x83\x27\xc8\x32\x4c\xe8\xf4\xe4\x58\xa0\xc9\x05\x0b\xc2\x9e\x1c\x10\xb8\x43\xd6\x80\xc1\xef\x18\xb9\xe6\xe9\x8e\x76\xf6\x1f\x74\x3e\xd9\xff\x83\xc3\x49\xeb\xab\xa3\xe0\x7f\x66\xa5\x29\xcf\x41\xb6\xdf\x45\xe8\x39\xc8\xf6\xbb\x45\x3c\x43\x0a\x2e\x2c\x9a\xec\xf9\xc2\x92\x7d\x37\x9f\xe7\x88\x74\x22\xb4\x91\x03\xca\x2a\x33\x9a\xc5\x51\x82\x3f\x13\x44\xd9\x51\x52\x3f\x15\x5a\x27\x1d\x35\xf5\x33\xa3\xd9\x1c\x35\xf5\xdf\x07\xf8\x05\x48\xc1\x8c\x76\xf1\x1c\x27\x81\x18\x07\x9e\xf3\x83\x07\xf8\x42\xc4\xc7\x0d\xcd\xb2\x94\xf8\x07\x07\x01\x41\x9a\x11\x6e\x9e\xc1\xe5\x59\x2a\xd7\x73\x8b\xf6\xc6\xdf\xd1\xce\x31\x82\x49\x32\x02\xce\x81\x67\x95\x59\x66\xc1\x33\x0e\x46\x21\x37\xc8\x38\x18\x8c\x90\x73\xd4\xc9\x4f\x85\x98\x40\x9e\x07\xa6\xc0\xe3\x9f\x23\x96\x8a\x56\x25\xcf\x33\xe1\x01\x8e\x60\x45\x0f\x5c\x03\xb0\x65\xa6\xea\x7a\x5e\x58\xd5\xc2\x11\xfc\x45\x4a\xf1\x5e\x40\xe9\xfc\xcc\xa0\x3a\xcf\x3b\x3e\xc0\x76\xb8\xfd\xca\x14\x69\xbc\x2a\x5d\x66\xcc\x9c\xe7\x08\x94\x9a\xa2\x15\x5b\x78\x80\x5d\x82\x58\x59\x18\xc7\x33\xbc\x70\x82\x44\xf4\x7c\x63\xd2\x8d\x5f\x84\x81\x53\x30\x61\x8e\xf2\xef\x99\x61\x75\x8e\x48\x85\x5c\xb4\x6a\x90\xdc\x95\xd3\xe3\x19\x26\x51\xe5\x25\x78\x01\x7d\x33\xc3\xdb\x01\x84\x95\x89\x47\xef\x25\xa8\x93\x3c\xa5\x54\x6c\x24\x39\x42\xe9\x68\xe7\xed\x5a\x62\x63\xb9\x8a\x05\x76\xee\xca\x82\x1b\x5e\x5e\x99\x27\x33\x64\xcd\x0b\x44\x1c\xc2\x56\x7a\x81\x86\x45\xcd\xdf\x11\x33\x90\x59\x97\xd7\x0b\xb4\x1f\x82\xb1\x38\xdc\xe9\x99\xc8\x83\x0e\xf0\xa5\x24\x00\x0c\x2f\x37\x3a\x24\xad\x97\x1b\xfb\xca\x6d\x2b\x10\x65\x19\xcf\xe6\xf5\x8a\xdf\xdf\x07\xe1\x31\xcf\x04\x4d\xf6\x0a\xd5\x83\xb8\xb5\x8e\x2a\xdb\x99\xd0\x64\x5e\xdf\xc3\x95\x99\xe6\xe3\x70\x88\x67\xa6\xc5\x78\xc5\x51\x62\x38\x9c\xd7\x1e\xbf\xf9\xfd\x1e\xdf\xe3\xf7\xc7\x4b\x35\x84\x2a\x74\xb8\xb7\x33\xa3\xdf\x1c\x55\xae\x73\xa5\xf4\x80\xaa\xd6\x99\x55\xa3\x1d\xde\xe7\x4c\x28\x41\x47\x95\xea\x4c\xb4\x30\xaf\x77\x7c\x9f\xfd\x43\xd4\xaf\xf9\x5f\x9c\x3b\x0e\xb7\x6f\xae\x3c\xb7\x35\xc2\xb4\x18\x68\xe6\xf5\x25\xb8\xcc\xfa\x1a\x5e\x9f\x07\xbf\xbf\xd1\xb6\x0b\xa3\xf9\xec\x6b\xde\xb0\xda\xf5\xb3\xaf\x39\x6a\x48\xe7\xca\x63\xdc\x40\x8f\x2c\x73\xec\x2d\x56\xff\x93\xf6\xbc\xc5\xea\x17\x7e\x1f\x1e\xc6\x5a\x79\x64\x5a\x31\x3c\xc0\x0e\xcb\x5f\xf0\x5d\xe2\x3f\x0e\x1e\xe0\x08\x6a\xc4\xd2\xf1\x14\x36\x28\x0a\xca\x92\xf5\xd6\x9e\xf8\x07\x07\x09\xc5\x80\xd1\x71\xde\x62\x8b\x1b\x3f\x39\x22\x7e\x8f\xd7\x66\x8b\x3d\xe5\x29\x43\x71\xe6\xcc\x68\x37\x47\x71\xe6\xcc\xe0\x36\x6f\xd0\x03\x2a\xd3\x3f\x1c\x90\x5a\xb9\xf2\x58\xb6\x15\x21\x84\x4b\xff\x48\x78\x80\x3d\x42\xe3\x24\x06\x95\xb7\x15\x93\x5a\x9c\x54\x90\x11\xcf\x69\xdb\x18\x22\x6f\x6e\x78\xcf\x33\x83\xdf\x1c\xf5\x98\x93\x8a\x19\x78\x43\x8c\x71\x6d\xda\x4a\xdc\xdd\x95\xec\x10\x15\x99\xdf\x07\xb8\x6c\x7e\xe3\x01\x0e\x01\xd1\x3a\xb5\x69\xb3\x71\xdb\x13\xd8\xca\xe1\x6e\xcf\x04\x0e\x73\x00\x65\xa5\x4a\x93\x94\xb7\xfb\xbd\xcd\x09\x5e\xe3\x28\xd2\xfc\x3e\xc0\x31\xdc\x0d\x0f\xe8\x85\xe8\x92\x1c\xb5\x41\x11\x66\x40\x9b\x37\x9c\x0e\xe6\xc1\x78\x7b\x5a\xbc\xf0\x0d\xba\x83\xa0\x25\xab\x77\x10\xb4\x96\x05\x75\x94\x93\xd0\xb1\xbc\xe7\x89\x07\x16\x7f\xc7\x10\x78\x84\x3a\x48\x9a\x79\x8f\xde\xe1\xee\xac\x6d\xf1\x93\xaf\x60\x9b\x1b\x49\xba\x97\x08\xd6\x5c\x7a\x63\xe1\x81\xc9\xdf\x31\x06\x6e\x05\x10\xc0\x32\x03\xd6\x1c\x88\x5e\xb2\xf5\x39\xe2\x0c\x64\xea\xf3\x0e\x87\x69\x65\x4c\x8d\x77\xdc\xf7\x5a\xb6\x0e\x26\xd6\x78\x11\xf5\xfe\xe0\x37\x3f\x30\x22\xbc\x53\x93\x7a\xef\x09\x59\xfa\xbc\x8f\xf8\x00\xe7\x34\xa3\x03\x4e\x01\x21\xaf\xb5\xab\x87\x89\x29\x50\x94\x46\x3d\xe7\xf7\x01\xf6\x30\x0f\x1e\xe0\x0b\x10\x08\x58\x63\xd4\x01\x54\x95\xa5\xe1\xf4\xdd\x23\xe2\x94\x2f\x6c\x2c\x33\x05\xb9\x1e\x31\xb1\x2c\xd4\xe7\x28\x01\x9d\x19\xce\xe6\xdd\xb0\x8a\x6a\xf7\x58\x35\x9e\xda\xee\x20\x4f\x4a\xbb\xc0\xaa\x7a\x1f\xe0\x24\xa0\xd7\x35\x8a\xbf\x1d\x7a\x1c\xab\x1f\x39\xe2\x33\x32\x61\x66\xbd\x43\x6d\x6b\x7a\x3f\xa8\x57\x94\xf2\x60\x0d\x78\xc2\x50\xe4\x39\x13\xd3\xda\x47\x10\x2f\x0f\x14\xc0\x96\x52\x25\xee\xa8\x8f\xf4\xae\x01\x41\xaf\x1d\x55\xa1\xdf\x07\xf4\x8f\x85\x07\xbe\x11\x0e\xdc\x96\x9d\xc2\xeb\x00\xb5\x33\xba\xcb\x01\xb7\x94\xea\x20\xe7\x1a\xaf\x28\x9a\x7b\xfa\x97\x48\x6a\x1f\x11\x61\xcb\x72\x5a\x3e\x4a\xc3\xdb\xfa\x5a\x4c\x80\x7b\x30\x70\x56\x18\xfc\xe5\x03\x3a\x1f\x83\xbb\x1c\x01\x27\x99\xc1\x5d\x3e\x5e\x1d\x30\x33\x96\xcb\x47\xdc\x06\x12\xbe\x51\xe7\xfa\xfd\x07\xd7\xac\xbe\xa4\xce\x80\x11\x1f\xed\x2f\x2a\x58\xff\x70\x3c\xc0\x17\x70\x76\x3a\xb9\x1c\x62\x54\x72\xa7\x64\x3a\xba\xe1\x37\x87\x3c\xa2\x9d\x43\x86\xd3\xad\xd2\x2b\xed\x08\x39\xc9\x4c\x6c\x76\x40\x34\xbd\x0f\x70\x12\x10\x19\x18\x6b\xe5\x03\x8a\xa1\x4a\x2c\xfa\x58\x2b\xfe\xc1\x31\x2c\x2c\x03\x0f\x13\x0a\x60\xbf\x0f\xf0\x93\x50\xec\x98\xbc\xed\x03\xb4\xcf\xe4\x68\x1f\x30\x59\xd4\x49\x3e\x39\x70\x1b\x74\xed\x7b\xdc\x06\xf3\x33\x1c\xf9\xc0\x6d\xa0\xe3\x37\xe2\x36\x98\x3c\xb0\x03\x87\x41\xc7\x6f\xe0\x36\x60\x75\x0e\x1f\xe7\xe0\x37\x9f\x87\x2e\x28\xed\x77\xdc\xf1\x3c\xa7\x70\xc7\x88\xbe\x9d\x9d\x50\xf5\x08\x26\xe4\x40\x6e\xca\x52\x8e\xe7\x15\xe1\xd7\x94\xc4\x00\xe5\x94\xa5\x1c\x03\x9a\xe9\x7d\x60\xf1\x1f\xa0\x6d\x6a\xa3\x33\x45\xc0\x36\x69\x65\x66\x4c\x89\xe7\x77\xc6\xe9\xe1\xf9\x9d\xd0\xec\x84\x1b\xec\x13\x9a\x1d\x03\xc0\x1c\x00\x4d\x49\xa0\x19\x8e\xca\xdd\x99\x11\x61\x0e\xc4\xa6\xcc\x88\x30\x9f\xb0\x81\x10\x6e\xcd\x67\x9c\x07\x72\x00\x20\x2e\x65\x46\x84\xf9\x1c\xf1\x9b\xef\x83\x18\x19\xf1\xe5\x73\xc4\xa2\xe8\x03\x63\xe3\x01\xfe\x46\x50\x70\xa3\x8f\xc6\xe7\x7c\x17\x65\xf0\x44\xce\x19\x21\xe4\x64\x19\x13\xd4\x3a\xb4\x8a\x50\xcc\x86\x16\x0d\x56\x8b\x76\x51\xa6\x9c\xb0\x5a\xd0\xfb\xe0\x73\x47\x90\x3a\x95\xc7\x09\xab\x05\xbd\x0f\x8e\x60\x9a\xcc\x22\x75\x8e\xd8\x97\xcc\xa8\x31\x9f\x1e\xed\x9c\x34\x68\x97\xc8\x09\x3e\x11\x35\xac\xfa\xd5\x3e\xcf\xcb\x65\x18\x24\xe6\x13\x71\x81\x2a\x18\xed\x28\x80\x9d\x59\xa9\xc7\x27\x68\x93\x51\x63\x3e\x5f\xb1\x22\x8f\xcf\x1b\xe7\x0b\x6a\xda\xe0\xb6\x2e\x98\x1d\x5a\xe2\xaa\x2d\x98\x1d\x98\xb2\xe8\x2b\xfd\x05\xda\x17\xfe\x03\x73\x26\x53\x40\x28\x4b\x96\xe1\x63\x41\x90\x26\xe2\xbc\x2f\xa8\x2d\x8c\x48\xf7\x15\x84\x40\x46\xbf\xa0\xf1\x13\x1a\xcb\x57\x8f\x30\x7b\x9a\x5e\x56\xc7\xbe\x36\x76\x08\x91\x80\x51\x69\xbe\xa0\x29\x32\x3e\xdd\x57\x50\x16\x85\x68\x04\x9e\x64\x46\xad\xf9\x9a\xf1\x9b\x1d\x42\xc1\x67\x90\x9a\xaf\x85\xdc\x05\xa6\xb4\xfa\x82\x86\x3f\x28\x44\x2f\x68\xf8\x8d\x39\xae\xbe\x82\x90\x28\x55\xaf\xd8\xf6\x7f\x0a\x6b\xf3\x85\x20\xbb\x96\xb9\xe7\xcb\x41\xe8\x64\x3f\x2b\x32\x19\x64\xfb\x5a\x07\x0b\x42\x7e\xb3\x10\x20\xd5\xf2\xcf\x3f\x10\x4a\x2d\x6b\xd7\x82\x81\x60\xf0\x7a\x8f\xa0\x94\x46\x18\x71\x47\x54\x4a\x1e\x5a\x73\xe4\x36\xb4\xfc\xf3\x06\xa6\x44\x8e\xb3\x6e\x10\x26\xb5\xe5\x05\x93\x83\x8a\x23\xfb\x82\x2b\x8f\x81\x6b\xbe\x83\xf0\xc8\x3f\x50\x7c\x3a\x35\x96\xd2\xf7\x0d\x05\x8d\x81\x66\x8e\xea\xd1\x99\x81\x66\xbe\xe1\xb2\x25\x84\x9b\xa3\x1a\x73\x66\x18\x99\xa3\x1a\x73\x66\x18\x99\xa3\xda\x72\x6a\x32\x00\x6c\x5c\x87\xc4\x8c\xf3\x3d\x0e\x7e\x73\x84\xd0\x95\x18\x05\xe6\x28\x37\x9c\x19\x05\xe6\x1b\x06\x03\x06\x7d\x39\x22\x3a\x32\x63\xbc\x7c\x47\x8e\x00\xd3\x72\x1c\xf5\x75\x33\x83\xba\x7c\x47\x8e\x40\xd5\x88\x4e\xc2\x03\x1c\x41\xec\x34\x13\x77\x1c\xc8\x47\x99\x18\x9f\xbe\xef\x18\xc2\xe2\xef\x77\x91\x75\xdd\x6e\x28\x15\xba\x6d\x0d\x37\x0d\x91\x64\x1c\x31\x20\x99\x48\x30\x6e\xb1\xe6\x54\x72\x2d\xd6\x9c\xdc\x03\xc8\x46\x72\x2f\xba\xc1\x17\xc6\x9c\x05\xb7\xd8\x03\x8a\xf7\x06\x2f\xf7\x24\xf3\x30\xe8\xaf\x0c\xe9\x72\x5b\xf1\xfe\x37\x7e\x83\x49\x81\x18\x97\x6e\x10\x43\x09\x28\xed\x40\x16\xca\x32\xde\x19\xa8\x4e\xb6\x3a\x8b\x0c\x86\xa1\x09\xc1\x06\xc1\x90\x30\xf7\x98\x30\x79\x85\xc7\x84\xc9\x2b\x1c\xcc\x8a\x25\x7a\x1d\x71\x00\x49\xa8\xae\x0e\xb8\x8c\xcc\xe2\x4c\xee\x50\xaa\x84\x2c\xe7\x0e\xa5\x8a\x30\x9a\xee\x50\x89\x1a\x03\x2e\x1d\x85\x56\x33\xe3\xb9\xdc\x63\x0d\x29\x1d\x38\xac\x00\x82\x63\x72\x87\x18\x37\x79\xf4\x3c\x16\x91\x67\xd3\x91\xb6\xd0\x44\x15\xde\x3b\x1e\xd0\xef\x48\x35\xe1\x35\xe3\x41\xf9\x3c\xac\x3e\xa2\x07\x0e\x61\x34\xfc\xe6\xa4\x63\x9b\x28\x2d\xa0\x76\x6a\x96\x81\xd2\x23\xbb\xeb\x67\x48\xd8\x47\xc6\x7f\x39\x8a\x8b\x66\xc6\x7f\xb9\x23\x95\xb3\x11\xef\xcd\x51\xfd\x33\x2f\xde\xdd\x81\xa2\xd1\x7e\xff\xb1\xf0\x00\xe7\x04\x19\x6d\xf1\xb4\x3b\x28\x85\xb5\xbf\x1d\xb0\x19\x99\x80\x75\x0e\x18\x8c\xcc\x00\x33\x77\x28\x30\x0c\x30\xf3\x80\xb9\x10\xe2\x99\x1f\xf8\x2b\x17\xef\xc1\x73\xc5\x07\xd8\x9e\xe2\x03\x9d\xbf\xb1\x06\x0c\x94\x71\xa0\x3a\x65\xc9\x68\xe7\x2f\x01\x66\xe8\x0b\xef\xe1\x90\x8c\x16\xa1\x07\x8c\x50\x73\xc0\x3e\x65\xc6\x90\x7a\x84\x22\x2c\x0a\x13\x07\xca\xf7\x22\x3b\x39\x2d\xda\xf9\x7d\xd0\xcd\xca\xff\x52\xd7\xc6\x23\x4e\x81\xe1\x68\x7e\x10\x78\x2c\x78\x5c\x3f\x50\xb4\x99\xca\xee\x81\x4b\x21\xfc\x50\x3f\x50\xb4\x19\xb0\xe6\x07\x02\x1c\x03\xd6\xfc\xcc\xf8\xcd\xe1\xaf\xf8\xcd\x05\x04\x91\x31\xdc\xcc\x0f\xd4\xe4\xce\x50\x01\x3f\x50\x93\x65\xa3\x3e\x91\x76\xc1\xd8\x01\x07\x4e\x55\x66\x7c\x99\x47\xec\x02\x41\x02\x1d\x50\x16\x99\x20\x79\x8e\xaa\x9c\x99\x38\x5e\x7e\x82\xa6\xc8\xad\x50\x55\x33\xcb\xa4\x7d\x82\x86\xb4\x24\x41\x43\x5a\x01\xd8\xc0\x55\xa9\xc9\xcf\x03\x12\x20\xfb\x0a\x6c\x0b\xc1\x3a\xfa\x81\xda\xcc\xd8\x03\x47\x34\x43\x66\xf8\x9a\xdf\xe0\xd7\x0c\x5f\xf3\x3b\x88\x90\x44\x1a\xc1\x0c\x8b\xa2\xd0\x0d\x25\x99\xd1\x6c\x7e\x07\x49\x51\xd4\xb9\x83\xa4\x68\xcb\xb8\xa1\x24\xf7\xcc\x63\x72\x43\x49\x66\x34\x9a\x07\x3a\x46\x67\xe6\xb8\xa3\xb2\x67\x66\x78\x9a\xdf\x41\x74\x64\x77\x88\x44\x48\x3d\x6b\x88\x50\x32\x75\x2c\x02\x62\xa2\x67\x8d\xb9\x63\x0d\x78\x2c\xee\xa0\x1b\xf2\xc3\x1b\xe2\x1a\x03\xca\xfc\x9e\x91\x62\xa4\x17\x60\xc3\x64\x71\x4b\xbf\x23\x2d\x4b\xf2\xd1\x3d\xb1\x2a\xbc\x45\x6f\xc8\xfd\x8c\x27\xf3\x3b\x28\x91\xec\xf0\xde\xb1\x2a\x94\x55\x6e\x07\x69\xeb\x77\x10\x06\x59\xfa\x0d\x27\xb6\xaa\xc4\xf8\xf3\xee\x63\x61\x61\x00\x07\xe2\x55\x61\x3d\x43\x47\x3d\xcc\x24\x30\x61\x0f\xc8\x2b\x86\x8b\xf9\x13\xf9\x3c\x04\x58\xf5\xa8\x88\x49\x68\x78\x47\x05\xcc\x42\x74\x6b\x07\x46\x56\x61\x7c\x99\x3f\x19\x23\x20\x7b\x7a\xa0\xe0\x75\x26\xc7\x3b\x4a\x54\x16\xc6\x93\xf9\xd3\xe2\x37\x3f\xd0\xd0\x01\x2f\x95\x07\x2e\xe8\x4e\x20\x24\x07\xf0\x55\x61\xf1\x00\x7f\x22\x25\x88\xd5\x0f\xfc\xe9\xeb\x7d\x80\x1c\xe3\x41\x05\x75\x26\xab\xf9\x33\xd0\x23\x85\x0d\x80\x57\x28\x04\xc5\x9f\x89\x29\x93\x41\x3c\xa8\xde\x41\x8c\x55\x7f\x5e\x65\xab\x5c\x14\x46\x50\x64\xb2\x10\xd6\xcf\x11\x10\x52\x18\xce\xe6\x0f\x60\xe9\x18\xce\xe6\xcf\x1d\xbf\xd9\x3f\x60\x0a\x59\x91\xdc\x51\x97\x31\x75\x99\xd9\x9e\x07\x9b\xc4\xf3\x1e\x58\x15\x9d\x49\x46\xfe\x3c\x18\x31\xc5\x99\x07\xc5\x62\x58\x5f\xe5\xa0\x52\x63\xb9\x3e\x7e\x70\xae\x20\x93\x6f\x49\x4f\x54\x46\x64\xb8\xdb\xb9\x12\x46\xf4\x1d\xff\x73\xbd\xd2\x48\x61\x99\xd2\x73\xc5\x1e\x7e\xd2\xcb\x41\x04\x4a\x61\x30\xdb\xb9\x10\x3f\xdb\x59\x87\xf6\xa0\x34\x60\x61\xf4\xda\x09\xf4\x8b\x4e\xd0\xfc\x03\xf8\x8b\x72\x75\xbe\xd0\x30\xe2\xce\xf6\x86\x11\x77\x8e\x20\xa8\xe6\x23\xfc\x83\x18\x96\x72\xf5\xf1\x0f\x77\xce\xb9\x06\x1e\x1e\x5c\x9e\x20\x90\xc1\xe5\x99\x58\x8e\xc1\xce\x63\x83\x3f\xc9\xe9\x5c\xa8\xa2\x7b\x0d\x4e\x1f\x8e\xd3\x4e\xe5\xf6\x5c\x86\xe9\x4e\x7e\x10\x8e\xd3\x3e\x0a\xbf\x60\x98\xee\xe4\x7a\x04\x89\x4c\x4e\x0f\x02\xb8\x40\xd4\x0f\x20\x25\x0a\xc3\xd3\xce\x15\x34\xb4\xd8\x23\xd4\x9e\x3e\x34\x66\xd4\x0f\x62\xb8\xd9\x49\xd7\xc1\xef\x6f\x81\xd3\xcb\x60\x0b\xe1\xd9\x4e\x2a\xf1\xfc\xe0\x6f\x64\x74\x32\x6f\xf8\xa4\x57\x9e\x2c\x0c\x47\x3b\x09\x91\xa7\x9d\x32\xf5\x49\xd8\x32\x02\xb6\x9d\x84\x2d\x23\x60\xdb\x49\xd0\x83\x3a\xcd\x5d\x27\xa1\xf8\x2b\xa3\xcb\x4e\xa0\x48\x74\x0a\xc1\x27\xf5\x84\x07\x12\x7f\x63\x8c\x99\x73\x7a\x59\x7a\x61\x19\x90\x03\xd8\x89\x42\x08\xb7\x93\x26\x46\x90\xd9\xe1\x8c\xf7\xf9\xfd\x1d\xed\x8b\xbf\xd1\x5e\x38\x20\x04\xaa\x76\x8a\x0a\x27\x59\xc1\x03\xec\xd0\x22\x3b\x91\xfb\x1a\x55\xd2\x52\xe1\x08\x0c\x8b\x56\x38\x02\x44\xeb\x77\x8a\x06\x27\x19\x86\xac\x1e\x50\x90\x39\xe9\x83\x27\x86\xc4\x55\x7f\x30\xe4\xc2\x21\xc7\x36\x73\x97\xf2\x35\xf0\x3b\xf1\x77\xe4\x2f\x7e\xfc\xfb\xe4\x6b\xe1\x81\x6f\x00\x51\x97\x8c\x15\xce\x0f\x22\x29\x0a\x4b\x8d\x9c\x1c\x74\xf2\xc9\x1e\x27\x97\x3b\x12\x28\x17\xff\x81\x5d\x24\xaf\xc9\xf5\x2f\xa3\x52\xff\xc0\x2e\x92\xf9\x20\xf2\xa2\x24\x32\x1f\x80\x44\x94\x44\xe6\x13\x95\xc3\x18\x9f\x77\x72\xec\x62\xe3\x08\x62\x17\xc9\x7c\x32\x80\x0a\x19\xaf\x77\x10\xf7\x50\x58\x16\xf3\x64\xe0\xf7\x13\xf5\xe6\xe4\xd8\x75\xb2\x16\x20\x40\x14\xc6\xf3\x9d\x8c\x32\x8e\x14\xa6\x4e\x8e\x2d\xea\x9c\x30\x72\x75\x06\x91\xed\x4e\xf6\xfc\x3e\x30\xd8\x21\xc0\x89\x54\xf5\xf9\x64\x37\x3c\xc0\x1e\x80\x83\xc9\x00\xbd\x93\x63\x93\xc9\x5f\x80\x00\x51\x18\xa0\x77\x72\x6c\xfa\xe4\x0c\x62\xd3\x3f\xc5\xec\x14\x44\xb6\x0f\x82\xe4\x9c\x02\x14\x73\x62\xd1\x9d\x80\x73\x18\x0c\x6e\x3b\xe5\xc2\x9a\x4d\xbd\xf0\x44\xd6\xe9\x37\xa4\x12\x64\xf1\x69\x5e\xa7\x24\x0c\xe1\x93\x89\x4f\x41\xae\xcf\xa0\x6d\xea\x94\xd4\xf1\x00\xc7\x84\xf0\xd6\x41\x3c\xb5\x53\xf2\xdb\x25\x33\x6f\x4e\x79\xb5\x8a\xc2\x08\xbf\x53\x40\x78\x04\xf3\x3d\x05\xfa\xeb\x60\x22\xcd\x29\xb8\xa6\x73\xd2\xef\x8a\xdf\x8d\xbf\xd1\x23\x4b\x2a\x9e\x02\x42\x60\x00\xde\x29\x20\x04\x06\xe0\x9d\x02\xed\x71\x10\xf3\xe9\x14\xe0\x0f\x67\x7d\x00\x29\x0f\x83\x20\x50\x07\x75\xb5\x0a\xd3\xa9\x4f\x01\xa0\x6a\xce\xeb\x5f\x6e\x9d\xf2\x5e\x02\xe5\x67\xc5\x40\x57\x34\xde\x1d\x20\x37\x94\x9f\x05\x3b\xf1\x3c\x3b\x47\x11\x2e\x56\xac\x3c\x08\x03\x49\x83\x71\x20\xa7\xdc\x05\x0f\x70\x93\x1f\x7c\x90\x47\xbd\x80\x8c\x18\x1d\x78\x0a\xb2\x64\x47\x4d\x1c\xc1\xf3\xe0\x81\x6f\x04\xf5\x8a\x44\xde\x4f\x3a\x3c\xf5\xc2\x10\xb8\x1e\x88\x2c\x29\x2c\xad\x72\x6a\xc2\xfa\x7c\x72\xc8\xa9\x28\x3a\x48\x0c\xbb\x83\xba\x5d\x85\x00\xd6\xa7\xe2\xe8\x33\xfc\xf0\xd4\x1e\xcf\x17\xfe\x8e\xe7\x2b\x7f\xe3\xfb\xbc\x15\x2b\x94\xc5\xc1\x48\xd4\x53\x3b\x66\xd0\x38\x83\x11\x1d\x70\x40\x00\x1e\x52\x71\x8e\x53\xe7\x7b\x76\x19\x9f\x78\x2a\xbc\xb0\x83\x75\xf5\x4e\x45\xa9\x2f\xa6\x53\x9d\x0a\x2f\xec\xa0\xf3\xfa\xd4\x89\x31\x91\x5d\x20\x7a\xa5\x30\x46\xf1\xd4\x57\x39\x2c\x0c\x49\x3c\x15\x25\xf4\x33\xd9\x49\x8d\x6d\xa7\x30\x52\xc1\x1c\x18\xa1\x78\x2a\x98\x01\x03\x12\x4f\x3d\x98\xe2\x60\xff\x90\x1e\x33\x99\x4d\xbd\xe3\x79\x0e\x38\xa8\x80\xcc\x06\x01\x2e\x85\x36\xda\x53\x51\x72\x9f\x01\x8b\xa7\x42\x57\x1c\x5d\x2b\xf0\x60\x82\x9f\x1e\x74\x1a\x84\x47\xda\x74\x4f\x0b\x22\xa0\xb0\x83\x00\x98\xc2\x08\xc6\xd3\xe0\x72\x1d\x74\x6c\x9f\x96\x06\x1e\xf8\x46\xd8\x82\x4a\xc8\x8c\x5a\x50\xc9\x64\x87\x70\x48\x0a\x24\xff\xb4\x8a\x25\x20\x73\x0a\x20\x05\x01\xb5\x9f\x06\x60\x6a\xc6\x38\x9e\x16\x74\x46\x69\xa9\x05\x9d\x7d\x3e\xa3\xd3\x3a\x78\xd3\xe2\x08\xa0\x4c\x0e\x7a\x64\x4e\x7b\x95\xc9\x52\x34\x82\x1e\x09\xdb\x59\xff\x38\x78\x80\x23\x80\x8e\x41\xe8\xe2\xd3\x40\x88\x0c\x79\x3c\x0d\xca\xe4\x18\xbc\xb8\x11\xdf\x52\x18\x8f\x78\x50\xf2\xad\xb0\x7e\xec\x41\xac\x49\x61\x3c\xe2\x69\x27\x9e\xe7\x14\x4e\x64\x80\xab\x07\x54\x2a\x60\x80\xe2\x69\x88\x90\x1e\x53\x3d\x1c\xcc\x49\x53\x40\xc6\xe8\x98\xea\xf2\x60\x4e\x14\xb7\x1a\x28\x8d\x11\x8b\x07\x58\x10\x85\x01\x8a\xa7\x41\x1b\x1d\xb4\xf2\x9e\xf6\x0c\x3c\xc0\x8d\x0c\x30\x05\x9a\x7d\x4f\x7b\xde\xb3\xc1\x10\xc6\xd3\x41\x5a\x8c\x74\x3f\x1d\xa4\x55\x28\x4e\x75\xa8\xaf\x83\x76\xd8\x83\xc2\x71\x85\x11\x8a\xa7\x43\x1b\x65\x40\xe2\xe9\xd0\x46\x09\x4a\x7c\x3a\x14\x99\x42\x16\xd8\x4b\xbc\xff\x4d\x01\x85\xe1\x8a\x18\x7e\x47\x79\x83\x42\x06\xd7\x6b\x2c\x22\xaf\x39\x54\x86\x2b\x8c\x57\x3c\x3d\xe0\x1b\x98\xa2\x7a\xa2\x34\x5c\xd1\x88\x41\x9a\xc4\x05\x3c\x1d\x8a\x0c\x71\x01\x0f\x4a\xc3\x15\x86\x2f\x9e\x0e\x6d\x97\x05\x2d\x4e\x00\x60\x8c\x95\xfe\xc5\xba\x76\x3a\x54\x61\xa2\x0c\x9e\x0e\x4d\x87\x90\x80\xa7\xcf\x82\xdf\x1c\x4d\x60\x3d\xd0\xdb\x7a\x50\x9c\xad\x14\x0a\x4b\x3d\xc8\x94\xdc\x2d\x8a\xab\x11\x11\xf0\xf4\x85\xe9\x92\xbb\x75\xb8\x32\xc7\xd2\x08\xd6\x7b\x76\x0b\xd9\xdd\x1f\x80\x07\x4d\x45\xa7\x43\xbb\x66\x3c\xe6\x41\x50\x4a\x21\xa6\xe0\xe9\x10\xd7\x58\xc1\xe2\x74\x68\xdb\x8c\xd7\x3c\x1d\xaa\x15\xe3\x35\x4f\x47\x18\xd7\x58\xe4\x4f\xa8\xb7\x56\x18\xaf\x79\xba\x47\x07\x1c\x61\x9c\x34\xf2\xb7\x7e\x30\x20\xbd\x0f\x06\x4d\x77\xce\xe9\x40\x99\x67\x3c\xe7\xe9\xe7\x0f\xc8\x40\xff\xc0\x88\x28\xae\x75\xe8\x72\xb4\xc1\x9c\x7e\xc7\x07\x39\xa0\x38\x67\x94\xde\x10\xf3\x52\x88\x85\x77\x3a\xb4\x7d\x46\x24\x1e\x14\x24\x2b\x04\x38\x3c\x23\x4e\x11\xb9\x1f\x0a\x90\x95\x42\x9a\x1d\x71\x68\xc8\xfd\x46\x1c\x1a\x72\xbf\x81\x78\xed\x79\x75\xfd\xe3\x5d\x31\x06\x80\x9e\x00\x3d\x99\x4c\x2e\x3b\x03\xc7\x8a\x11\xa1\x67\x40\x99\x64\x44\xe8\x19\x38\x66\xb4\x01\x1d\xc4\xa4\x14\x02\x24\x9e\x01\xf3\x00\x23\x46\x4f\x80\xa2\x4c\x66\x77\x9d\x01\xf3\x00\x43\x48\xcf\x80\x6e\x29\xc1\x64\xb4\x80\x72\x58\x7c\x00\xce\xdb\x29\xfd\x76\xa0\x38\x3f\xe1\xba\x4f\xe0\xa8\x4c\x29\xbc\x03\x77\x40\x25\xcb\x47\xd9\xb1\x52\xc9\x1e\x07\x94\x4d\x06\x86\x9e\x01\x23\x02\xe3\x40\x0f\x70\x55\x0a\xe3\x40\xcf\x80\x11\x81\x71\xa0\x67\xc0\x8a\xc4\x38\xcf\x33\x70\x92\x2a\xc5\x3f\x04\xa4\xa4\x29\x4d\x6b\x2c\xac\x3a\x99\x5f\xc0\xac\x4c\x22\x84\x9f\x81\xb3\x46\x44\xf1\x07\x2e\xf5\x4a\x05\xfc\x59\x90\xd6\x18\xfe\xf1\xac\x57\x4d\x18\xb4\xf2\x3c\x51\xeb\xa8\x7e\x27\xef\x59\x51\xb5\xf5\xd2\x6f\xd4\x6e\xf9\x76\xf5\x59\x17\x4a\x22\xff\xfc\x1e\xbf\x88\xf0\xcf\x02\xb7\xfe\xfd\xbd\x50\x7e\x43\xfd\xef\xdf\x12\xdd\xcf\xba\x0c\xb5\x68\x2a\x7f\xfb\xdb\xde\xf8\x7e\x8a\xaa\xbc\x1c\x0f\xaa\x0c\x33\x4e\xf9\x59\x19\xb5\x60\x2e\xce\x27\xa3\xfc\x40\xe6\xf7\x32\xca\x2b\x24\xf6\x87\x5a\x49\x44\xd4\x7e\x16\xaa\x04\xb3\xea\xee\x13\xb5\x90\x18\xc7\xf8\xac\x86\x12\xf0\x89\xe3\x47\x55\x60\xea\xea\x0f\xa0\x2b\x7e\xc7\xd7\x0e\xda\x39\x3e\xd4\xea\xa2\x0e\xf5\xac\xf6\x8e\x87\x46\xf8\x07\x50\x17\x95\x7a\xe3\xb3\x7a\xd4\xc2\xd2\xef\xfc\xdf\xff\xfa\xcf\x7c\x3a\xca\x7d\x34\xce\xa7\xa3\x7c\x4b\xd6\xf3\xed\xbf\xff\x8d\xa6\xf1\xf6\xfe\xdf\xff\xda\x35\x38\x1e\x54\x0c\x60\x02\xe1\xb3\xde\xab\x64\x30\x72\xed\x59\x2f\xc5\x37\xc6\xde\x3d\x80\xde\x68\xe5\xff\x61\x53\x9b\xfd\xff\xe5\xa2\x79\x80\xca\x31\xae\xc9\xbd\xe8\x51\xb4\x50\x63\x43\xa9\x88\x49\x5a\x45\x45\x65\x66\x1e\x3e\xeb\x15\xdc\xdb\x0f\x2d\x8e\x28\x62\xc8\xb1\x8d\xf4\x7e\x5f\x63\x1f\xa8\x96\x30\xf4\x3c\x4a\xf3\x88\xd6\x07\x68\x47\xb4\x35\xee\xdf\xf2\xf1\xcf\x9a\xa8\xeb\xd4\xf4\x1b\xb4\x54\xf9\xfc\x7b\x31\x56\x56\x28\x7e\x00\x12\xa2\x0a\xbb\xcf\x42\xf5\x84\xda\xf5\x1b\x7b\xad\xf1\x2f\x7c\xbf\x73\x7e\x0b\x75\x8a\xb4\x1e\x28\x47\x5e\x35\x3e\x14\x1d\x65\xf4\xf2\xb3\xde\x7b\xb3\xff\xf4\xbf\xd3\xff\xb9\x3e\x1b\xe3\xd5\x7a\xa3\x08\x69\xd2\x78\x36\x2a\x6e\x77\xd2\x2a\x4a\x81\xfc\xac\x3f\x4a\xab\x30\x9a\xfa\x59\x7b\xff\x9f\xb4\x89\x3a\x5b\xe3\xe7\xfb\x28\xbf\xbf\xd8\xfe\xde\xba\xb5\xea\x2c\xa2\x94\x08\x61\x33\x1f\xd4\xd9\x6a\xe3\xe7\x79\x9c\x8d\xc9\xf1\x1b\xea\xd8\x35\x8e\xc7\x9e\xff\xf3\x2c\x79\xfd\xad\x4e\xf1\x2c\x7f\x69\x9b\x15\x8d\x9f\xe5\xfd\xb7\x02\xf0\xb3\x1c\xa5\x93\x06\xfb\x7b\x2f\xf5\x9a\x34\x7e\x94\x0e\x6a\x3a\x0b\xef\x25\x5f\x7f\x68\xdd\x51\x0d\x63\x72\xfc\x28\x65\xd2\x7e\xfa\xc3\xd9\xd5\xf3\xa8\x73\xf7\x73\x56\x51\xb4\xb1\x8b\x17\xbd\xb2\x73\x25\xe4\xde\xb3\xce\x8d\xdf\xfc\xfe\x41\xa9\x16\x9d\xd5\x57\x26\x68\x4b\xbc\x29\x8a\x9e\x4e\xce\x07\x15\xb7\x59\x67\xed\x59\x37\xea\xc0\x65\xb5\xa3\x88\x68\xe6\xfc\xee\xfd\x5b\x44\xf5\x41\x9d\xb1\xda\x0b\xfb\x7b\xa2\xe8\x28\xfb\x7b\x70\xd6\xc5\x5b\x50\x54\x92\xa1\xed\x0f\xa2\x68\xda\x10\xef\x7e\x50\xea\x67\xe8\x77\xf0\x3a\xfd\x7e\xde\xf7\xb9\x5e\x88\xba\xe9\xfd\xe7\xf7\x7b\x3e\xa8\x54\x3e\x1b\x77\x93\x78\xe7\x7e\xef\xa6\x4a\x4b\xc3\xb3\x51\xee\x9e\x5a\xf6\xb3\xdf\xbb\xa9\x52\xf0\x7f\xf6\x7b\x37\x0d\xc2\x20\x3c\xfb\xbd\x9b\x1a\xab\x93\x3c\xc0\xaa\x19\x0c\xda\x7b\x36\xee\x26\x46\x5f\x3f\x88\x02\x2a\xf4\x47\x3c\xfb\x8a\x8a\xf1\xdf\x7a\xef\xb8\x5b\x12\xdf\xff\xbb\x5b\xbe\xfe\x9f\xa8\xee\xf0\x75\xff\x04\x74\xdf\x47\x0d\x0f\x4c\x35\x5c\xcc\x07\x86\x9a\x4f\xc4\x7f\x9e\x80\x87\x6e\xfc\xd9\x61\xc6\xf9\xbf\xca\xf7\xff\xbf\xfd\xff\xfd\xff\xdc\xf1\xf0\x75\xbd\xb2\xdb\xdf\x9f\xc8\x30\xfb\xfe\x6f\x99\xff\xb7\xf2\xdf\xff\x08\x77\x74\x95\x97\x33\xfd\xfd\xf9\x32\x15\xa6\x58\x5c\xa8\x32\xff\xfd\xb9\x50\xb0\xfc\x6b\x31\xbd\x13\x05\xf3\xda\xd7\xe2\x7a\xc7\x51\xfa\xee\x6f\x09\x2e\x64\x19\x7d\x7f\x36\xe0\x5d\x5f\x6c\xea\x6c\x2a\xd1\x34\xbe\xa6\xa2\x26\x40\x49\xd1\x8e\x9c\xaf\xf4\x75\x95\x03\x5c\xfd\xdb\xcc\x0c\x77\xd5\xf7\x27\x20\x10\x2b\x5b\x5c\x2d\xa8\x0f\xd3\xbf\x16\x2e\x5c\xbe\x32\x32\x49\x1a\x5b\x9a\x5a\x02\x41\xf9\x6b\x29\x99\x2d\x91\x5f\xc8\x11\x94\xa5\x96\xfd\xdf\xff\x26\xe3\xb1\xf3\x35\x36\x9b\x86\xfd\xf7\xbf\x99\xf5\xd6\x38\x6a\xba\xdf\xa6\xc6\xc9\xce\xc4\xa6\x57\x27\x63\x79\xe3\x9c\x1a\x97\x01\x1e\x16\x06\x34\xe6\xf4\xca\x27\xdf\x9f\x28\x93\x58\xbe\x96\xce\xc9\xa6\x8e\x1a\x6a\xe9\x6b\x19\x6a\x19\x60\x91\x6c\x59\x6a\x59\x61\xf1\x66\x8b\x46\xb0\x02\x1b\xf0\x6b\x79\xb9\xf6\xf7\x67\xfb\xef\x7f\x73\x7e\x26\x97\x9c\xb5\xaa\xf9\x5d\xd5\xc9\xf0\xd7\x9c\xf3\x50\x53\x80\x11\xb1\xc5\xd4\x12\x40\x63\x5f\x4b\x67\x4f\xc8\xc4\xa4\xcb\x25\xe7\xde\xd5\x32\xde\x8e\xb2\x9a\x6e\x35\x3d\x6f\x13\x37\x3d\x6b\x1d\xf2\xc0\x79\xf9\xf4\xbd\x9c\x87\x3e\x38\x06\x9a\x38\x72\xed\x6d\xc6\xde\xb2\x84\x7f\x46\x3a\xe7\xf7\x67\x42\x13\xdf\x9a\x59\x4d\xc0\xa8\x9b\x6c\x51\x57\x01\x42\xc6\xe5\x5b\x5a\xbe\x15\xb3\xfa\x08\x22\x9b\x16\xc9\xfc\x6d\xe2\x1e\x66\xd7\x84\xdf\x0b\x6c\x32\xdb\x29\x03\x86\xfa\xfb\x13\x43\xe7\xaa\x57\x51\x0b\x0c\xac\x8c\x6a\xcb\x30\xaf\xfe\xfd\x89\x55\x62\x7e\x6d\xae\x83\x1b\x02\x9b\x2a\x83\xbe\x72\x9d\x45\x2d\xe3\xbf\xff\x2d\x02\xb9\x64\x64\xf6\xfd\xfd\xf9\x0a\x10\x44\xfb\xcb\x80\xa0\xfd\xfb\x13\x23\xa7\xfa\x9b\x61\x30\xfd\xfb\xf3\x5e\xa8\x6e\xfa\xd7\xd2\x12\xa7\xdb\xd2\x2b\x4f\x7c\xe2\x5d\x6e\x99\xc7\xa9\xbd\x5a\x03\xb3\x6a\x32\x60\x5c\xbf\x3f\xdf\x3b\xe3\x13\x39\x72\xcb\x4b\x2d\x28\xd4\xd8\xd8\x72\xd4\x82\x4a\xfd\x1c\x41\x51\x3f\x05\xfd\x70\x04\xa5\xa9\xe5\x95\xcb\x79\x9c\x9a\x78\x07\x72\xfb\xe8\xf7\xcf\x48\xdc\xfb\xfe\x44\x9d\x5a\x8e\xa0\x72\x0d\x5a\x4d\xb8\x89\xd9\x52\xd4\x82\xaf\x71\x04\x9b\x3b\x04\xe3\x22\x4b\xdf\xe4\xa6\x15\x85\x19\x91\x3e\x8a\xdc\x45\x0a\xbd\x23\xcb\x3b\xb3\x65\xa9\x65\x23\xd7\xea\xaf\x65\xe8\xbc\x8c\xf1\x6e\x1d\x13\x1a\xf2\x98\x24\xba\xf1\x32\x91\x49\xcb\x5c\x41\x88\xc2\xf7\x27\x00\x94\x13\x5b\x26\x5b\x52\xd4\x30\xfa\x5a\x52\x55\x0b\x00\x81\x27\x5b\xba\x5a\xd6\x4b\x8d\x1f\xb7\x29\x17\x89\xa4\x5c\x2f\x91\x2c\x1a\x38\xcb\x55\x13\x9b\x30\xbc\xc6\x31\x6c\xb5\xbc\x92\x13\xe1\xce\x4a\xe2\x8e\x97\x04\x13\xc3\x27\x52\x94\xd4\x1b\x5b\xa0\x1d\x7c\xf7\x55\xc9\x9a\x6b\x4e\x28\x46\x5e\xbe\x96\xae\x96\x97\xa1\x10\xa9\xb7\x64\x2e\x5d\xc9\x13\xc3\xe6\x02\x15\xb2\x9a\x02\x9f\x18\xa5\xc2\x82\xd4\xe3\xef\xcf\x05\x81\x99\x2d\x5b\x2d\x28\x61\xdc\xd9\x72\xd4\xf2\x0a\x71\x9f\xfe\x5e\xca\x52\x3f\x2f\xdf\xa7\x34\x59\x0a\xb9\x53\x29\x0b\x65\xe6\x38\x82\xb5\xd8\xf2\xaa\x2c\x6d\xb1\x85\xd2\x46\x29\x1b\x75\x2a\x0b\x5b\x86\x5a\xe6\x3b\xea\xc6\x96\x9f\xaf\xbd\xa3\x6e\x6a\xd1\xa8\x5f\x55\x85\xe5\xf4\x4b\x31\x8d\x1a\xc5\x7f\x13\x47\x60\x5a\x03\x43\xa5\x53\xae\x8e\xeb\x9d\x57\xde\xa1\x5c\xd8\xfc\xfe\x38\x60\x43\x24\x67\x63\x08\x46\x43\xbc\xd8\xf7\xe7\x79\x3f\xf7\xf5\xd4\x9e\xf3\xed\x43\x7b\x0e\xee\xdf\xcf\xd8\xd6\x13\xa9\xbb\xa7\x0b\xe5\x27\x3f\x72\xec\x00\xe7\xf8\xfe\x04\xa3\xfb\xd4\xb7\x5e\x07\x9b\x90\x4d\x5d\x09\x65\xdb\xdb\xf3\x5d\x07\xbd\xbd\x42\x7b\x25\x00\x40\xef\xe4\x0d\x1d\xf9\x90\x63\xa5\x2f\x33\x20\x64\xca\xff\x9b\x98\xd9\x07\x0f\x4d\x1f\xef\xa1\xa9\xd4\xf4\xfb\x20\xa7\xee\x03\x61\x2f\x2c\x2e\xdd\x61\xd0\xf8\xfe\xcc\x98\xdb\x1f\x39\x77\x94\x6e\xfd\xfe\x9c\xaf\xdc\xf8\x11\xc6\x48\xf6\x6d\xf2\x40\xf8\xc4\x64\x5c\xd3\x28\x94\x0e\x47\x29\xe3\xfd\xe0\x67\xfc\x1a\x9d\xb2\xd4\xe8\xd0\xf5\x59\x16\x77\x4c\xee\xf3\x98\x86\x0a\xa6\xdf\xa9\x1a\xab\x7e\xa4\x36\x56\x85\xc6\xf8\xf9\x9f\xc7\x26\xad\x0d\x60\x3a\x76\x72\xa4\x71\x2e\x7e\xf0\xc0\x86\xc5\xc0\xf3\x89\x20\x98\xef\xcf\x97\x31\x33\x58\x64\xce\xf1\xad\xe1\x9c\x28\xfc\xc9\x18\xd7\x89\xaa\xe5\xdf\x9f\xaf\x62\x43\x6b\xf5\xaa\xed\x5b\xc3\x55\x5b\x46\x45\xc6\xbf\xb7\x56\xa3\x24\xbf\xda\x7a\xd5\x27\x55\x92\xed\x3c\x42\x0b\xf6\xf3\xc6\xec\xbd\x05\xeb\xf2\xf7\xe7\x4b\x70\x59\xc5\xa2\xaf\x6f\x84\x6b\x5f\xd0\x77\x59\xe0\xc9\xc9\xb2\x76\x00\xeb\x5d\x2a\xf4\x77\x65\x35\x95\x97\x33\xb1\x4c\x93\x5f\x4d\x4d\x60\x9b\x2a\x7f\x78\x0d\x35\x45\x81\x81\xc5\x26\x53\x13\x58\x1d\xcb\x3a\x79\xd2\x30\x50\xcc\x84\x51\xba\xdb\xd3\x52\x13\x44\x7d\x96\xba\x73\x52\xef\xf6\x60\xf9\xac\xca\xe6\x14\x0c\xb6\x67\x0c\x9e\x35\xd2\x3c\x6b\xf0\xaf\x1c\xba\x8a\x6a\x33\x66\x57\x53\xf4\xa5\xa6\x87\x4d\x05\x15\x05\x3f\x1d\x71\x7b\xd1\x42\xbd\xd4\xbb\x8a\x8a\x39\x96\xa9\xa6\x15\x30\xf1\x6c\xda\x6a\xc2\x30\x58\x55\xcd\x29\x1f\x6c\x2f\x98\x97\xaa\x35\x56\xcd\xeb\x15\x03\x56\x51\xa1\xc6\xaa\xd5\x68\x98\x32\xcb\xaa\x79\xd3\x94\x1b\x46\xc8\x0a\x6a\xde\xb4\xbc\x0d\xc3\x60\xa5\x43\x40\x0a\xfe\xfd\xd9\x31\x0c\x16\x71\xf4\xa1\xfd\x02\x6e\xc6\x0f\x45\x0d\xad\xc6\x2b\x4b\x2e\xde\x8f\x1b\x69\x00\xdf\x9f\xa8\x52\xc9\xc2\x64\x3e\x44\x36\x23\x0a\x7a\x72\xbf\x86\xc8\xe6\x3d\x5f\x8b\x08\x12\xdb\xa7\x86\x31\x63\x18\x9c\x32\xa5\xd3\xed\xf0\xc9\x32\xfc\x6b\xfb\x54\x5f\xef\x45\xba\xaa\x8a\x87\x4e\xad\x06\x02\x02\xa8\x7f\x6c\x9f\x5a\x0d\x5c\xd4\x55\x53\x5e\xda\x94\x85\x29\x6b\xf0\x4b\x53\x5e\x28\xa4\xa9\x11\x2e\x11\x1b\x0a\x3d\x30\xda\x6b\xfb\x12\xb1\x6d\xcc\xeb\xa7\x9c\xa8\x96\xf7\x65\x06\xab\xb2\xb2\xa1\x6f\x11\x5b\x40\xb3\x8b\xe6\xb7\x06\xbf\x51\xaf\x54\x27\x65\xab\x2f\x40\xda\x12\x73\x6d\xbb\x69\x5e\x86\xbe\xf4\x41\x53\x5f\xa8\x11\x41\xf3\xf5\x76\xd3\x7e\x01\xa3\x96\x21\x60\xdb\x4d\x24\xfa\x5e\xc5\xab\xaa\xc9\x35\x2f\xc7\x1a\xfe\x54\x44\xd5\x1a\x3a\x86\xf1\x53\x0c\x55\xfb\xe5\x58\x5e\xd5\x39\x75\x4d\xf9\xa0\x04\xa9\x0e\xd1\xd1\xe0\x0f\xb6\x72\x70\x18\xb7\x28\x0a\x39\x6c\x49\xa7\xf2\xd6\x08\x6f\x8c\x70\xb2\xaf\x5b\x23\xbc\x41\xd8\x53\x1f\x14\xb1\xdd\x01\x7f\xcf\x35\xbc\x35\xc2\x1b\x9b\xa2\xa3\x77\x6b\x53\x9e\x18\x06\x37\xe5\x51\x5f\x4f\xc0\xc9\xb3\xaf\x47\x7d\x3d\x58\x8d\xc5\x11\x3e\x22\x36\x40\x87\x33\x6a\x6d\xfb\xa3\x4d\x79\xb0\x1a\xaa\x55\x7a\x91\x00\x0e\xae\x80\xaa\xb2\xa4\xe2\xf3\xb8\x2b\x57\x53\x85\xd1\xcb\xd5\x74\x02\x4d\xfe\x6b\x4a\x5c\xc3\xf3\xf2\xf9\xd5\xc8\x1c\x8e\xf8\x3c\x32\x5d\x16\x2b\x27\x6d\x24\xb6\x7c\x7f\x3e\x68\xe2\x30\xc4\xe7\x91\xde\xb2\x88\x67\xb1\x4f\xde\x6a\xc2\x07\x59\x86\xf0\x88\xcf\x9f\xe0\xf3\x2a\x7f\x9a\xb9\x1a\x07\xc5\x16\x9b\x2a\x8d\x96\xaa\xa6\x16\x88\xef\x6c\xea\x6a\xc2\xbc\x78\xb5\x9d\xa2\x79\x81\xcf\x13\xbc\x62\x1f\xf1\xf9\x53\xd1\x17\x8f\xf9\xa9\xea\xab\x46\x5f\x95\x4d\x9a\x17\xca\x79\x12\xcc\x62\x9f\xa6\xd5\xc0\x15\x40\x58\x8a\x7d\x74\x05\x1c\x5c\x01\x8d\x45\x3b\x8f\xae\x00\xa4\xf8\x2c\xea\xca\xfb\x74\x0d\xa3\x63\xf0\x2c\xdd\x89\x22\xef\xdf\x9f\x81\x62\xae\xb7\xb4\x86\xb8\x38\x9a\x08\x60\x68\x84\x03\x85\x6a\x67\xfe\x27\x51\x75\x9f\x51\xf4\x66\x20\xbb\x93\x4c\x75\x79\x1c\x14\x14\x6d\xaa\xee\xab\xcb\xe3\x8c\x13\xc0\xe8\x5f\xd3\xd4\x50\x66\x60\xa6\xf3\x2d\x5d\x1e\x07\xa6\x8d\xa6\x9d\xa6\xea\xb5\x0f\xaa\x9a\x11\x7a\x70\x9f\xa9\x8d\x99\x58\x2c\xd6\x15\x3d\xba\x3c\x0e\x2e\x8f\xa6\x7a\xbf\xba\x3c\x00\xa6\xba\xba\x4a\xfb\xea\x86\x38\xb8\x21\x08\x52\xb8\xcf\xd2\x12\xbf\x0a\xd7\x22\x92\xc4\x3e\x5b\x3b\xfd\xca\xf0\x8b\x9a\xd1\x3e\xe2\xda\x07\x95\x55\x89\xcd\xb0\x0f\x55\xa3\x7d\x3c\x90\xcc\xb9\x1a\x62\xcd\x07\xac\x99\xf1\xff\xfb\x88\x35\x1f\xb0\x66\x8a\xaa\xfb\x88\x35\x1f\x47\x5f\x14\xb3\xce\x51\x5f\x27\xfa\x52\x93\x08\xee\x60\x35\x78\x0d\x9c\xa3\x35\x04\xd7\x66\x61\xb4\x7d\x6e\xad\x21\x58\x33\x6b\xe9\xec\x23\xd6\x7c\x1e\x8c\x70\x70\x0d\x1f\xad\x06\xd0\xa0\x32\x2f\x7b\x64\x5e\x7d\x7f\x62\x18\xaa\x7f\xfc\x68\x18\x2f\xe7\x5c\x04\x41\xd8\xb7\x84\xe9\x3b\x50\xaa\x55\xb8\x56\xc2\xf4\x7d\x61\x18\xaa\x49\x4b\x4d\x71\xdf\x00\x6a\x20\x10\xe4\xbe\x29\xb8\xef\x3b\x15\x94\x21\x66\x5f\x89\xf3\xba\x33\x8a\xfa\xb2\x48\xec\x5d\x34\x0c\x88\xaa\x59\xf5\x81\x25\xaa\x22\x33\x6b\xb1\x1c\xcc\xbe\x8b\x3e\xf8\x72\xb3\xc5\xb4\x87\x7d\x97\xa1\x26\xe0\x21\x73\x2b\xef\x62\x6a\xc2\x30\xc8\xdd\xee\xaa\x61\x44\x45\x00\xf2\xa9\xbb\xaa\xaf\x80\x64\x57\x85\xe1\xaa\xbe\x2a\x2a\x27\xb3\x74\x2b\x80\x72\xbf\x3f\x03\xd2\x9b\x53\x16\xe3\xbb\xc1\xf8\x86\xfa\x6a\xfa\x20\x04\x5c\x26\x5f\x6c\xe4\x9a\x7d\x7f\xfe\xc1\x63\xb3\x89\x17\xf0\x1d\x05\xb6\x79\x6d\xdf\x5d\x6b\xd8\x51\x7e\x59\xe5\x92\x69\xa3\xde\x77\x1f\x68\xe2\xbc\xba\x76\x19\x68\xbb\x8c\x14\xdd\x48\x71\xfb\xfe\xc4\x08\x3b\xa7\xdc\x8f\x9a\xb0\xbc\x2a\xad\x2c\x4e\x7a\x0f\xf4\xf5\x53\x65\x59\x7d\x01\xe5\x82\x51\xa5\xfb\x16\x3f\xbc\x83\x1f\x52\x0e\xb8\x87\x88\x6d\x62\x0d\x59\x73\x1d\xe8\xbe\xdf\x9f\xa8\xf0\xfc\x53\xb1\x59\x53\x06\xd3\x1b\x2a\xc6\x2c\xa6\x77\x1b\x9a\x74\x52\x4c\x2b\x1f\x45\x35\x28\x4b\x21\x37\xee\xfb\xb3\xa0\xfa\x33\x87\x21\x6e\x73\x43\xda\x9b\xaa\xd2\xed\xfa\x60\xd4\xd4\xa0\x1e\x7b\xbb\xb6\x32\xb8\x0d\x2f\xfb\xfb\x68\x2b\xcf\xbb\x86\x53\x95\xb1\x25\x23\xde\x28\x9c\x97\x35\xf8\xa3\xfd\x02\x8f\x9a\xaa\xb7\x2d\x1e\x75\xdf\xf1\x41\xf6\x75\x2f\x35\xbd\x97\xd4\x14\x01\xdc\x5a\xf9\x07\x53\x56\x81\x6c\x49\x7b\x37\xd8\xd7\xd4\xca\x3f\xfa\x20\x78\xd4\xd4\x1a\x8a\x47\xdd\x10\xe9\x98\xec\xbd\x1f\xf1\xa8\x07\xaa\x3b\xb3\xb6\xf7\x23\x91\x0e\xf9\x85\xa9\xf0\x26\x7a\xae\xa5\x26\x94\xc8\x5e\xfa\xe0\xad\x26\xf4\x45\x19\xf1\x49\xdc\xca\x07\x12\xd8\xd2\x07\x25\x81\x3d\x39\x6a\x64\xf3\x83\x92\xc0\x1e\x70\x36\x26\x11\xef\x47\x3c\xea\x81\x2c\xc5\xec\xe0\x0d\x47\xed\xf7\x67\x7c\xf0\x5b\xde\x47\x3a\xf3\x83\xfa\xe9\x8c\xc6\xdd\x8f\xc4\xac\xe7\x65\x3c\x6b\xa9\x90\x74\x9d\x6a\x5a\x01\x2d\xcd\xa6\xad\x26\x8c\x90\xd5\xdf\x1f\x31\xa2\x07\xdc\x86\xae\xff\xfd\x88\xdb\x3c\x51\x6f\x99\x52\x2c\xdc\xca\x7f\x7f\x76\x54\xf8\x26\x4b\x79\x24\x81\x3d\xe1\x10\xa3\x0c\xf0\x88\xdb\x20\xf5\x71\xb1\x88\xc3\x7e\x86\x46\x08\x9d\x99\xc9\xa9\xfb\x91\xd8\xf3\xe0\x98\xaf\xc5\xd5\x98\x5a\x5e\x88\x3d\xcc\x50\xdd\x8f\x14\xe3\x07\x02\xcc\xd2\x2e\x2f\x51\x54\x54\x79\x66\x6d\xff\x67\x65\x35\xc1\xb5\x4b\x34\x9d\xfd\x2c\x8d\x3e\x8a\x41\x5f\x2a\x63\xbe\x48\xbf\x0f\xca\x4f\x5c\x4c\x4c\xdd\x8f\x64\x98\x07\x9a\x67\x51\x35\x74\xd3\xac\x2d\x3e\xa9\x3a\xe0\xf6\xf3\xc9\x27\xda\x3e\xa6\xf8\x88\xe5\x3c\x51\x13\xfa\x52\xbd\x70\xd7\xa1\xf0\xe8\xae\xfe\x9b\xc0\xfa\x48\x01\x7d\x80\xdc\x51\x54\x96\x5d\x2c\xe9\x41\x39\x8c\x8b\x39\x99\xfb\x39\xda\x84\x13\x93\x68\xa4\x64\xb1\x97\x27\x6a\xc1\x32\x53\x72\x3f\xb7\xd6\xe5\xc6\x40\xc9\x1c\x9f\x5b\xeb\x72\xc7\xdc\x07\x29\xe5\xd1\xee\x41\xd3\x2c\xa2\xe5\x47\xbb\xf7\xc4\x28\xa9\xd6\x3e\xe2\x4b\xcf\x13\x23\x21\xdf\x7f\xc4\x98\x9e\x27\xba\x63\x7d\x32\xb9\x83\xec\xba\xa2\x3b\x35\x65\x35\x45\x77\x44\xed\xbf\x68\x70\xb4\xeb\x8a\x45\x51\x19\xef\xeb\xa8\x0d\xdd\xd1\xd8\x6b\x17\x39\x90\x21\xcc\xe0\x6d\xe3\x7b\x49\xdf\x4c\x51\x83\x5d\xf5\xcc\x19\x5f\x60\x11\x5f\x50\x9a\x3e\x79\xb3\x29\x8f\x78\x8d\x9f\xa4\x6b\xd1\xae\x1a\xdd\xa9\x5c\x39\x59\x8d\x5d\x35\x10\xc1\xd5\xd4\xd5\x14\x9f\x54\x77\xf5\x61\x5b\x0b\xff\x99\x6a\xcb\x33\x64\xc0\xae\x16\x88\xd9\x85\x4d\x5b\x4d\x1e\xd5\xdf\xb9\x98\x4d\x33\x18\x31\x71\x55\x7e\x1f\x9a\xf8\x88\xa2\xf0\xec\x6d\xfc\xbc\x16\xeb\xcc\xa2\x08\x0a\x6b\xb0\x0b\xae\xef\x4b\xa5\x98\xae\xa9\x75\x9e\x51\xf5\x9d\xc5\xdd\xae\xa9\xee\x50\xa0\x84\xf1\xdf\x76\x2d\x91\xc3\x1a\x51\x2c\x3e\xb3\x6d\xaa\x2d\x40\xa8\xb9\x96\x4b\xd4\xb0\xfe\xaa\xd4\x73\x06\x4b\x6b\x19\x58\xf7\xac\x63\x71\x6d\x2d\xe5\x8e\xde\xb2\xda\xd4\x1b\x2a\x71\x32\xc4\xdb\xae\x6d\x6a\x7a\x02\x96\xf9\x6b\x32\x7d\x11\x75\x58\x19\xb8\x6d\x97\x69\xbf\xed\xaf\x33\x8e\xd1\x44\x42\xc1\xc3\x98\x49\x66\x97\x69\x6e\x1e\xab\xcc\x72\x2e\x97\x8b\xbc\x3c\xba\xe3\xe6\x90\x85\xd9\x05\x16\x56\xb5\x37\x2e\x32\x89\x8a\xc3\x4c\x2b\xb3\xeb\xe8\xa8\x9e\xc0\x46\xe6\x04\x8e\xf6\x26\xf8\x57\xd6\x31\x3e\xda\xee\x13\x93\x63\x8d\x86\xeb\x68\x72\x27\xba\x63\x29\x96\xeb\x16\x09\x01\xfc\xf4\x22\xfa\xbc\x5d\xb7\x16\x2c\x38\x8a\x0a\x65\x25\x71\x94\x74\x45\x7f\x2c\x1e\x22\x27\x9c\xa5\xc0\xc0\x63\x95\x8d\x44\x67\x84\x25\x14\x8d\xa4\x2d\xda\x92\x18\x4a\x0a\x86\x92\x59\xcd\x30\xd1\x80\x65\x09\x0c\x85\xc6\x68\x4b\xf4\x5a\x5b\x0a\x1f\x46\xe1\x82\xa5\xa4\x81\x44\x2d\x76\x16\xea\x49\x49\x03\x01\xab\x21\xc0\xb1\x25\xb1\x9a\x94\x73\x7c\x91\x6d\xb9\xa8\x0d\x71\x66\xa4\xd7\xc4\xd0\x07\x4b\xc1\xa1\x98\x6e\x64\x49\x1c\x2a\xa1\x7a\xd6\x45\xb1\xc6\x52\xd6\xbc\x11\x06\x75\x15\x0d\xa5\x68\x72\x25\xba\xe3\x04\xa8\x1d\x5a\x24\x97\xd3\xc4\x6d\x89\x3e\x0e\x4b\x05\x2b\x59\xf4\x5a\xd5\xbe\x41\x3d\x64\xc8\xbc\x21\x05\xfd\xfb\x33\x06\xc2\x32\x65\x89\xaa\xa3\xa5\xe0\x95\x4c\x23\xb2\x54\x35\xb9\x08\x32\xa3\x87\xc9\xe4\xc0\x33\x38\xf0\x12\xe3\xeb\x2d\x35\x75\xd7\xa2\x3b\x56\x82\x42\x28\xd6\xf7\x27\xe6\xfd\xf3\x45\x2d\x73\x54\x45\x67\xbe\x91\xa5\xa6\x91\xb4\x58\x66\x1e\x90\xd4\xb4\xcc\x2d\x46\xd9\x38\x73\x7a\x56\x2d\x8d\xf8\x26\x6f\x82\x34\x44\x43\x81\x5d\xc8\xa3\x9a\x86\xd6\x39\x38\xba\x18\x62\x1a\xea\x2e\xd8\x36\x53\x62\x2c\x4d\x11\xd1\x8c\xee\x58\x72\x2f\x4d\x75\x17\xe5\xfb\x59\x76\x09\x61\x0f\x7f\x7f\x42\xe2\xbb\x8a\x8e\x9c\xd8\x76\x04\x91\x55\x4d\x6e\x69\xeb\x82\xa3\x33\x77\xc5\xd2\xd2\x82\x85\x34\xa8\x8a\x68\x49\x2c\x3d\x05\x6f\x16\x03\x4b\x5b\xef\x01\xc6\xf9\xfa\x39\xc7\xae\xf7\x82\xb9\x55\x6d\xd0\xd1\x42\x07\x07\xab\x2c\x35\x93\xc4\xc1\x52\x48\x60\x04\x29\xb1\x74\x5c\x6d\x38\xad\x64\x52\xe9\x16\x85\x85\x70\xf6\xdb\xa6\xc5\x84\x70\xc6\x08\x73\x4b\xb7\xf6\xee\x8e\xde\x78\x1b\xa7\x5b\x33\x08\xc1\xad\xb2\xdc\x4c\x7a\x34\x03\xe4\xdf\x5d\xf4\x62\x58\x7a\xb4\x41\xc1\x2f\xe9\x90\x30\x05\xa9\x58\x0e\x31\x8b\xd1\xe3\x86\x9a\x11\xdf\x9f\xa0\xf6\x71\xfd\x93\xb0\x6b\xf9\xea\x7a\x33\x26\xcf\xb2\xf0\x99\xca\xa3\xe5\x70\x09\xd3\x2f\x61\x59\x6c\x38\x07\x1b\x1e\x1a\x28\x27\x9f\x43\x76\xab\xbc\x41\xb3\x78\x6d\x4e\x31\x50\xce\x21\x6d\x35\x61\xee\xf4\x4c\x58\xa6\xb7\xc0\xa2\x90\xc4\x45\x7c\x6c\xcb\xd4\x2d\x2d\xa3\xb6\xf3\x45\x8f\xbc\xe5\xa2\xa1\xc4\x51\x6f\x64\x3a\x59\x47\x3d\xc7\x51\x67\x10\x9a\xe5\xf6\xf3\x5e\x8c\x85\xf7\x56\xd6\x51\x47\x3c\xe3\xdb\xc6\xfe\x68\x2c\xb2\xdc\x03\xe0\x96\xd3\xeb\x9a\xde\x88\x29\xb0\x94\x5e\x1e\x5a\x95\x11\x40\xb9\xfc\xe2\xd0\xfe\x04\x87\xa0\x8d\xdc\xb2\x38\x44\xc4\x2d\x5e\x2a\xe1\x9f\xa7\x3e\x09\xcb\x4f\xfd\x69\xd2\x27\x81\x90\x74\xd1\xa8\x6d\x8a\x6a\x32\x44\x35\xa5\x4b\x75\xf6\xf3\x12\x01\x82\x7b\xfc\x6c\xab\x98\x47\x5e\x25\x5e\xeb\x6c\xd3\xfe\x04\xf7\x50\x61\xfd\x2c\x79\x30\x43\x1e\xa4\x0b\xcb\x50\x3d\xe3\xfb\x33\x46\x42\x06\x01\x04\x89\xef\xcf\x18\x09\x69\x76\xab\xb7\x1d\x98\xa9\x24\x22\xc6\x60\x58\x86\x38\x78\xa9\x3e\x7e\xde\x5a\xca\x1d\xbd\xb1\x72\x5c\x36\x6d\xb8\xc5\xe4\x58\x5b\x2f\x9b\xba\xf3\x98\x1c\x2f\xd1\xec\x9a\x5c\x40\x79\x6a\xde\x12\xdf\x72\x70\xbf\x4e\x26\x9d\xc5\xfd\x72\x70\x3f\x95\xac\xcf\x87\x7c\x3f\x87\x8c\x46\xc0\x64\xcb\x47\xdd\xc1\xf0\xc5\x2c\x7c\xcb\x87\x6c\x25\xc3\x39\x7a\x75\x72\xb8\x7c\x8b\x50\x50\xb3\xbf\x69\x51\x6e\x9d\x90\x7b\xc7\x6b\xdc\x9e\x5b\xdb\x03\x0e\xd7\xb4\x5e\x8f\x76\x07\xc8\x49\x97\x2a\xe2\xe7\x47\x13\x00\xae\xfd\xcf\x59\x7d\xb4\x3d\xa8\xa2\x4c\x54\x7e\xcb\x74\x82\x5a\x06\x46\xc2\x45\xd0\x66\x2b\x62\x8b\x05\x8a\xa9\x0a\x4c\x16\x29\xa6\x25\x38\x26\xa1\x9a\xad\x48\x31\x2d\xc1\xf7\x08\xd3\x6c\x45\x7c\x2f\x70\x38\x2e\x15\xe4\x2f\x49\xdd\x21\xf8\xb1\x55\x35\x15\x35\x61\x6e\xbc\xe7\x0b\xc3\x1f\xad\x84\xca\xda\xa9\x59\x17\x3a\x49\xad\x84\x14\xa3\xea\xfb\x45\x52\x4c\x09\x34\x48\x5e\x84\x45\xec\xab\x34\x6c\xce\xa0\xb8\x5e\x18\x78\x6e\x05\x4a\x64\xfb\x69\xba\xd5\x84\x7d\xe3\x15\x59\xba\xa6\x86\x5a\xa6\x17\x03\xd6\xad\x74\x0d\x24\x50\x26\x29\xde\x14\xfa\x13\xad\xc0\x9f\x78\xa9\x0e\x7c\x19\xfa\x24\xc2\x4d\xda\x4f\x93\x36\x27\xf8\xa1\xaa\xab\x97\xa1\xcd\x09\x69\x6a\x50\x09\x2e\x43\xf3\x0e\xb1\x88\xa6\x75\x53\xe0\xa5\x95\x19\xdd\x71\x94\x92\x98\x0a\xf8\x21\x61\xf8\xad\x88\x1f\x96\xd0\x73\xc7\x50\x9b\x36\x27\xf8\xe1\x60\xc5\x58\x25\x6e\x58\x09\xa6\xa7\xf2\xee\x0a\xc0\xb4\xb2\xfe\xde\xe3\x28\xc5\xbd\x90\xf0\x91\x54\x2c\xb4\x6c\x2d\x4a\x48\x4c\xaa\xc7\xae\x58\x4b\x03\x2e\x4a\xba\x26\x4b\x13\x2a\xda\xd2\x4a\x28\x98\xaa\x9a\x5e\xa4\x60\x16\x28\x98\x4d\xb3\x73\xcd\x3c\xb8\x97\xea\x80\x17\x57\x77\x1e\xf1\x60\x2c\x78\x57\x5c\xf4\x85\xc2\xd8\x0c\x6a\xb6\x22\xf9\xac\x84\x7c\xa6\x22\x95\xe5\x68\x24\x27\xa0\x4a\xf9\x45\x71\xa8\x12\x0a\xe6\xa4\x28\x5f\xa4\x60\x02\x51\xe5\x6d\xe3\x0c\x6e\xad\x73\xc8\x6e\xc4\x90\xb5\x22\xf6\x55\x9e\x58\x30\xd1\xfa\xa3\x05\x0b\x41\x6b\xb2\xfe\x5f\x15\x47\xa9\xd7\x5f\xdb\x37\x96\x2a\xbb\x54\x0d\x5d\x51\xe5\xb4\x2b\x03\x21\xac\xc6\x21\x9f\xbc\x57\xab\x0e\x79\x0d\xe1\x86\x26\x75\xab\x12\x6e\x6a\xa8\x7d\x8b\xfa\x67\xcd\x53\x6d\x2b\x60\x43\xd9\xc4\x73\x57\x43\x26\x52\x95\xec\x2a\x99\xe8\x2f\x6b\x87\xf0\xa3\x56\xa5\x50\x21\x96\x31\x75\x96\x9b\xac\x52\xa8\x6a\xb0\x22\x26\x0f\x5b\x6d\xfa\x64\x88\x52\xc4\xbb\xb4\x2a\x5e\x54\x43\x5c\x22\xd4\xa5\x29\x79\xc1\x6a\x8f\xee\x1a\x9b\xba\x9a\xb0\x60\xaa\x9e\x5c\xbb\x16\x2c\x8e\xb9\x2a\x1f\x57\x19\xad\x6a\x68\x3f\x6b\xb6\x7f\x13\x77\xeb\xd4\x48\x91\xbe\x7d\xd1\x8a\x6e\x95\xae\x79\xab\xbb\x44\xc0\x22\xdb\x24\x56\x54\x1c\xcc\x74\xf1\x9a\xac\x3a\x98\x15\x07\x33\x5d\x54\xe9\xab\x0e\x66\x05\x36\x59\x22\x88\xbc\x55\x5a\xbd\xad\xc2\xb2\x9d\x08\x81\x68\xd5\x35\x45\x8f\xb1\xf0\x9e\xa9\xae\xb1\x78\x8c\x85\x15\x92\xab\x4e\x2d\xd2\x34\xde\x36\x2e\x9b\x8e\x26\x30\x6d\x52\x52\x3d\xdd\x7a\xb4\x15\x27\xe6\x40\x2b\x67\x95\xea\x54\xa1\x3a\x75\x4d\x41\xc7\x16\x30\x38\x29\x11\x31\xd0\xaa\x8e\x6d\x45\xba\x5d\x52\x71\xdc\x7a\x17\xb5\x05\xb0\x28\x7b\x63\xdc\x95\xd5\x3b\x46\x42\xfe\x0e\x28\x9d\xef\x4f\x8c\x84\x22\x42\x7d\x44\xba\x4f\x2c\x0a\xef\xfa\xfa\x68\x51\x9e\x18\x25\xed\x87\x4d\x87\xbd\xa5\x58\x68\x32\xea\x26\x65\xa5\xe1\x42\x67\xd4\x85\x35\x5d\xe8\x40\xcf\x49\x8a\x38\xb5\x26\x3e\xd0\x80\x05\xac\x90\x53\x6b\x32\x1a\xa1\xce\x54\x62\xcc\xbe\x35\xb1\x88\x96\x4b\xbc\xf6\x91\x5f\xcb\x1a\x09\x8c\x46\xaa\xf6\xdc\x98\xac\x65\xc8\x8a\x49\xbd\xea\x2d\x75\x06\x74\xea\xa4\xca\xb1\xad\x68\xde\x88\x35\x60\xc2\x81\x35\xc6\x1a\x58\x2b\x31\x10\xca\xbb\xca\x9a\xb1\x56\x62\xde\xdc\x39\xe5\xcd\x58\x2b\xd1\x1d\xb7\x47\xf9\x31\x86\xfc\x98\xc4\x4c\x57\x53\x82\x8c\x35\xd8\xd7\x09\x4c\x64\x4d\xf6\x75\xe4\xce\xbc\x5f\xe4\x72\x55\x4d\x0e\x85\x77\x99\x7b\x60\x8d\x01\xb5\x06\x64\xa2\x94\x08\xa7\x67\x8d\x7e\x3e\x6b\x2d\x26\xc7\xd2\xb5\x4d\x2c\xae\x41\x23\x4c\xc4\x76\xb0\x46\x27\xa0\x35\x38\x01\x25\x41\x37\x86\x1c\x58\x0b\x0e\xc7\xa2\xd0\xad\x6b\x29\x57\x8c\x84\x15\xaa\x9b\xc4\x80\xb6\xe3\x35\x0e\x44\x62\x40\x0b\x4e\x44\x28\x39\x6b\xe2\x44\x2d\x38\x51\xd6\xa6\xee\xad\x36\x00\x1b\xd2\x09\xd0\xb6\xc6\x0f\x05\x47\x71\x42\xd6\x4c\x23\x31\x8c\x84\x77\x61\x93\x31\xbc\xc1\x18\xce\xdc\x21\x6b\x32\x86\x47\x65\xae\x24\x63\x78\x33\x6d\x0e\x42\x49\x59\x13\xc5\x9a\x69\x73\x82\xeb\xc9\x16\xde\xc4\xf5\x5a\x70\x3d\xa2\xaf\x59\x13\xd7\x8b\xba\x5f\x89\x79\x9b\xd6\x5c\x93\x43\x10\x41\xd7\xf9\x76\x6d\x0e\x8c\xe1\x2c\x9e\x62\x4d\xc6\xf0\x76\x62\x25\xa9\x84\x35\x19\xbc\x5b\x70\x21\x19\xbc\x9b\x8c\x3b\x2d\xd8\x09\xc1\xc0\xac\x8b\x9d\xf4\x2b\xda\x68\x32\xe9\x52\x1d\x7a\x8a\xa1\x4c\x36\x65\x35\x95\x08\x7a\x1e\x6c\x6b\x6a\x1b\xd1\xb6\xd8\xc6\x61\x02\x59\x29\xc9\x45\x6e\x5d\xd6\xe4\x0e\x8b\x71\x2a\xdc\xf1\x2e\x8b\x71\x8f\x23\x4e\x67\xac\x75\x1d\xf1\x5e\xa3\x3f\x4a\x70\x5d\x86\xda\xde\xe3\x3d\xd2\x73\xef\x7a\xaf\xc7\x7b\x5c\x6a\x25\xa7\x59\x5f\x31\x16\x16\x12\xef\x0c\x96\x33\x80\x15\x25\xe6\xe2\x58\xd7\x8d\xdc\xe3\xf8\xc8\x8a\xdb\x99\x01\x66\x3d\xce\x08\xc1\x24\xac\xeb\x8c\xf4\xbf\x80\x6a\x32\xc5\x2e\xcf\x4f\x0f\x38\xc1\x4b\x4d\x5a\x95\xbf\x88\x6a\x9e\xff\x6e\xda\xa1\x13\xdd\x91\x4d\x75\xd9\x1d\xfb\x1d\xc3\xd4\xec\x64\xed\xeb\xf0\xc5\xfe\xa8\xe5\xfd\xd1\x7b\x71\x67\xb5\xa4\xf7\xb4\x62\x41\x64\x8d\x12\xdc\x10\x91\x0d\xa8\xbc\x4c\xa3\xb7\x21\x95\x17\xa8\x43\x29\x11\x5a\xcf\x86\x4c\x7d\x23\x47\x77\x3c\xb0\x43\x72\xe6\x80\x9c\xc9\x6a\x39\x36\x18\x8e\x6b\x23\xe8\x88\x61\xa6\x36\x44\x47\x03\xb8\xd2\x89\x49\x99\x36\x98\x78\x61\x03\x35\x83\x06\x1d\x16\x83\x39\x7a\x36\xe2\x16\x91\x09\x6d\x14\x8d\xa4\xc4\x48\xd4\x44\x4a\x19\x35\xd6\x92\x77\xfc\x90\x7b\x61\x04\xd5\x4a\xb9\x18\xa2\xda\x28\xae\x95\x88\x2b\x61\xa3\x6a\x06\x71\x1f\xb0\x2c\x9e\x0d\x69\xdf\x81\x67\xc4\xfa\x3d\x36\xe4\x43\x18\x2d\xb6\x87\x96\xab\x21\x03\xe1\x88\x43\x22\x63\xd8\xd0\x21\x19\x71\x48\xba\xf6\x4e\x87\x64\x74\x7c\xb3\x6b\x13\xa4\x48\x0f\x28\xd2\x23\xcf\x7f\x93\x78\x95\xfd\x69\x03\x06\xc4\xd4\x29\x9d\x0e\x39\x8d\x07\x9c\xc6\x2c\x17\x64\x43\x4e\x63\x24\x8d\xa6\x1f\x11\x6d\x48\xfe\x1e\x33\x26\x28\x42\x92\xd3\x78\xcc\xe8\x4e\xdf\x94\xd3\x78\xcc\xe8\x8e\xeb\x32\x45\x2c\x2b\x60\x34\xbf\x93\x37\x98\xdd\x6e\x51\x45\xec\x47\xf8\x19\x4b\x93\x43\x41\xb1\xc1\x73\x0e\xf8\xa6\xef\xcf\x18\x08\x85\x80\x21\xc7\xc4\x08\xbe\xc2\xf0\x57\x1b\xe2\x2b\x23\xee\x57\xc6\xbf\xda\x90\x43\x79\xec\xe8\x4e\x4d\xa6\x26\xcc\x8d\x02\xce\xd8\x5a\x4a\x8b\xe5\x22\xd3\x44\x11\xb3\xef\xcf\x16\x40\x96\x6c\xd2\xdc\x2c\x06\x42\xb9\x62\xc8\xd9\x3c\x10\xf8\x92\x18\x53\x6b\x43\xb6\xc5\x11\x57\x17\x93\x56\x6d\x48\x80\x1e\x77\x8c\x92\x13\xb8\x35\xca\x60\x62\x83\x8c\x6a\x88\x89\x8d\x60\x62\x3f\x67\x59\x4c\x6c\x40\xcb\x4e\x83\xb2\xca\x90\xdd\x6e\x20\x79\x61\x70\x06\x53\x3c\x6c\x06\x0f\x23\xe3\x98\xe2\x61\xf3\x8a\x44\x09\xf2\xb0\xc9\x50\x37\x8b\xe2\x68\x2c\xbe\x64\x93\x49\x80\x36\xaf\x18\x08\x8d\x19\x53\x2e\x89\x19\xd7\x32\x73\xe8\x6d\x4a\xa5\x9f\x71\xbf\x8a\x2c\xa7\xdc\xbf\x13\xee\x5f\xd6\x01\xb4\x29\x1f\xef\x0c\x71\x9d\xe0\x05\x36\x25\xae\x4f\x88\xeb\x32\x28\x4d\xdd\xca\x33\x98\x30\x23\x5e\x6d\xca\xc7\x3b\x83\xd3\x8a\x1a\xa6\x38\xed\x8c\x1b\x9b\x75\xaf\x6c\xca\xc7\x3b\xe1\xe3\x1d\x34\x57\x4e\xf9\x78\x67\x70\x53\x9a\xaf\xa6\x7c\xbc\x33\xc4\x75\x06\xbd\xda\xac\x5a\x93\xe0\xb4\xcc\x67\xb5\x29\x4e\x3b\x81\xf3\x99\x98\x2e\x6d\x53\x1c\x73\x86\x04\xcd\xc2\x50\x36\x25\x41\x4f\x48\xd0\xac\xa5\x63\x53\x46\xc9\x19\xdc\x74\xd0\x04\x3a\xc5\x4d\x67\x70\x53\x96\x8a\xb2\x29\x6e\x3a\x7b\x74\x47\x73\xd9\x94\x59\x72\xc2\x2c\x39\xe8\xad\x98\x32\x3d\x4e\x98\x17\x93\xac\x65\x53\xe6\xc5\x19\xec\x92\x75\xa1\x6c\xca\xdf\x32\x23\xc9\x8c\x35\xa0\x6c\xca\xb5\x3a\x83\x6d\xc8\x5c\x36\x65\x20\x98\x21\x7b\x4f\x86\x02\x4d\x39\x17\x66\x30\x07\xc2\xad\xdb\x94\x73\x61\x06\x07\x60\xe8\xa9\x4d\x71\x80\x19\x62\xf4\x14\x69\xba\xce\x16\x52\x02\x58\x1b\xcb\xa6\x2c\x7e\x33\xa4\x68\x06\x9f\xda\x94\xe3\x61\x86\xed\x80\x21\xa6\x36\x65\x3b\x98\x21\xfe\xc8\xee\x35\x25\xfe\xcc\x13\xcb\xa2\xa5\xbe\xb5\xd4\xb0\xcf\x25\xd9\xb6\xa6\x7c\xab\x13\xbe\xd5\x9f\x95\x96\x6f\x75\x06\x0f\x63\x01\x1f\x9b\x12\xbf\x67\x30\x2a\xd9\xbd\xa6\x18\xd5\x0c\x89\x6a\xe9\x9b\x8f\xba\x7b\xa2\x3b\x6e\xba\xdc\xae\x33\x84\x2d\x16\xd7\xb1\x25\x46\x05\x7c\xbe\xb7\xad\xb1\x8d\x33\x5f\xc1\x3a\x16\x2f\xc2\x25\xd1\x7c\xa5\xf8\x26\x2f\x8b\x25\x8b\xdf\x2a\x31\x3d\x2a\xaf\x4b\x42\xce\x42\x3c\xec\x54\x77\xe5\x56\x53\x7c\x92\xa7\x79\xe9\xc4\xae\x38\xb1\x8b\x7e\xc2\xa5\x13\xbb\x42\xfe\x61\x89\x13\x5b\x92\x7f\x16\x62\xf3\xd3\xe2\xd1\x5b\x32\x07\xae\x16\xd3\xa3\xf5\x71\x31\x17\xde\x56\xc3\x6a\xf2\x9a\x5f\x0a\x61\x03\x42\x5f\xca\x84\xde\xb4\x25\xc7\x2a\xd0\xf7\xde\x36\x4e\x4f\x27\x1d\xc8\x78\x6f\x1b\x57\x4c\x8e\x55\xa0\xe2\xa5\x49\x1e\xbd\xba\x56\x05\x8e\x84\x7c\xf1\x54\x2e\x39\x56\x17\x1c\xab\x2c\x9f\x60\x4b\x72\xd1\x1a\xd1\x9b\xf6\x5c\x4c\x60\x8d\x98\x81\x36\x41\x4c\x00\x98\x74\x6f\x1b\x47\x29\xa7\xeb\x9a\xd1\x1d\xd7\x52\x86\xc7\x05\x48\x6b\x02\x08\xd9\x9a\xa6\x26\x8f\x84\x2c\xb5\xfd\xf4\x76\xe3\x35\x12\x98\x44\xa6\xb5\x63\x90\x54\x80\x96\xb4\xfd\x05\x69\x84\xc8\x19\xb6\x24\x8d\x00\x43\x2e\x65\xd9\xd7\x96\x98\xd1\xb2\x98\x1b\xd9\xfe\x12\x33\x5a\x16\xdd\x91\xed\x2f\x53\x77\x16\xdd\x71\xb9\x5c\x34\xe4\xb1\xcc\xa2\x59\x39\x48\xa3\xd6\xa1\xd8\xe2\x92\x10\xb3\x3c\x7a\x9b\xff\x28\xf0\x2e\xd7\x04\x51\xb5\x63\x52\xe8\x58\x72\x9f\xae\x13\x83\xa1\x76\xbe\xe4\x3e\x5d\x70\x9f\xb2\xb4\x9b\xad\xa3\x4d\x38\xd8\x04\xad\xca\xd1\x26\xdc\x57\x7c\x91\xab\x29\x23\x27\xd0\xe1\xd2\xd4\x82\x29\x2e\x0e\xf5\x12\x53\x66\x72\xbc\x2d\xb9\x2d\x16\x78\x5f\x4e\x3a\x3e\xe2\x7d\x0b\x82\x58\x26\xa0\xaa\xad\x47\xc4\xf7\x44\x77\x1c\x89\x5c\xab\xc0\x95\x4b\x93\x02\xc2\x7a\x44\x7c\x60\x7d\x99\x60\x5d\xb6\xc5\xfa\x00\x0f\x97\x98\x8d\x60\x5b\x32\x1a\x90\xdd\xde\xd7\x16\xdb\x38\x01\x94\x6e\x4c\x59\xf6\xc3\x2d\xbb\xe9\x2e\xf1\x1e\x69\x7d\x4b\xf3\xdb\x90\x55\x58\x87\xce\xb6\x64\x95\x5d\x62\x4d\x68\xa2\xda\x8a\xf1\xd8\x25\x66\xc0\x75\xde\xb2\x2d\xee\x1a\xdd\xd1\xcb\xbb\xab\xba\x43\x9e\x80\x6e\xad\x2d\xa6\xb8\xc1\x14\x09\x9b\x65\x5b\x61\xbd\xbb\x45\xf2\xa1\x16\x45\x61\xbd\x3b\xf0\x6f\x49\x0b\x5b\xfa\xe2\x6e\x31\x10\x4d\x4e\xde\x93\x1d\xfc\x92\xf9\xa9\xb6\xc5\x2f\x77\x8f\x0d\xd7\x28\xe5\x93\xdd\xf0\xc9\xea\x6a\xdd\x7d\xa8\x69\xa1\x89\x3b\xa0\x38\x94\x0d\x2d\x33\x67\x92\xde\x96\x96\xb9\xa1\x65\xb2\x8c\x9e\x6d\xc9\x4c\x3b\xb8\x6c\xa6\x85\x6a\xcb\x5d\xbb\x83\x95\xb2\x8e\x98\x6d\xb1\xd2\x1d\xc9\x9a\x8a\x06\xde\xf2\xc9\x6e\xb0\xcb\xf5\xd3\xa4\xcd\x81\x1a\x99\x59\x36\xc2\xb6\x78\xe2\xde\xd1\x1d\x55\xd3\x2d\x0d\x0d\x78\x21\x69\x25\x35\x99\x9a\x1c\x4d\x1c\xe4\xfe\xf9\x62\xac\x09\x19\xd8\x96\x05\x74\x5b\xf4\x46\x2e\xb5\x4d\xbd\x21\xa5\x41\x62\xc3\x96\x99\x73\x7b\xac\x17\xe5\xba\x2d\x53\xe6\x0e\x9e\x28\x03\xe2\x96\x03\x67\x9f\xbf\x36\x0e\x45\x2c\x6a\x9f\xe8\x8e\x23\x39\xda\xd5\x27\xd6\x4b\x34\x24\x5f\xe7\x8e\x23\x2e\x43\xa0\x31\x51\xdc\x0c\xd2\x4d\x66\xb9\x0e\x33\x49\x37\x86\x10\xaf\x2c\x23\xa1\xc9\x60\x69\x90\x7c\x32\xa1\x1f\xcd\x24\xf9\x18\xfc\xa0\x59\xf1\x95\x26\x27\x87\xa5\x18\x0b\x2f\x34\x93\x54\x64\x80\x9d\xcb\x44\x69\x37\x93\xb3\xd3\x4a\x8c\x93\xc1\x5a\x26\xf5\xc7\x50\x8c\x9d\xd5\x7c\xcc\xe4\x92\x30\x94\x2f\xc9\x44\xa8\x35\x63\x06\xa4\x19\x6a\xe8\xc8\xd7\x69\x85\x87\xdc\x6a\xf4\xc6\x0d\x32\xa5\x03\x18\xdc\x15\x4c\x14\x32\x63\x7a\x91\xa1\x1e\xea\xfb\x1a\x27\x27\xbe\x81\xda\xa8\x3f\x12\x9f\xc9\x25\x61\x2d\x7a\xa3\xe9\xca\xe4\x92\xb0\xe0\x1b\x32\x9c\x9a\xf8\x86\xa1\x52\x53\x26\x04\xb9\x99\x78\x83\xf5\xd8\x03\xf2\x22\x93\x6b\xd5\xe0\x3e\xcd\x04\x02\x37\x93\x98\x62\x71\xee\x2a\xd5\x18\x9b\x3f\xef\x3d\xd1\xc6\xf7\x14\x0b\x61\xb0\xc6\x66\x59\x63\x4d\xd6\x58\x8b\xf3\x4a\x1c\x08\x33\xa9\x46\x16\x42\x4c\xd5\xbe\xea\x54\x5a\x48\x23\x44\x82\x30\x93\x34\x62\x28\xf6\x95\x09\x9b\x69\xa6\x53\x69\x16\xe3\xe4\x85\x60\xf2\x30\x58\x1c\x4b\x82\x41\x98\xe9\x58\x5a\x1c\x4b\xc2\xa5\x9a\xe9\x58\x9a\xc7\x37\x29\x42\x9b\x74\x23\x83\xc0\x91\x09\xd3\x6a\xa6\x90\x07\x7b\xe2\x9b\xbc\x4a\x4c\x0a\x89\x41\x21\x61\xe9\x43\xb3\x47\x94\x14\xc7\x99\x05\x50\xcc\x74\x9c\xed\x89\x6c\x5a\x3a\x50\x80\xf7\xf3\xfd\x39\xa2\x6d\xb0\x6d\xaa\x0d\xdd\x71\xe6\x02\xf8\x31\x07\xf0\x03\x4b\x24\x9a\xeb\xa0\x3b\x3c\x13\xb9\xd1\xcc\xe1\xf2\x8f\x7a\x02\x4e\x24\xef\x34\x81\xff\x98\xc3\x07\x9a\x1b\xe5\x5d\x97\x0f\x14\xe8\x3f\x89\xc8\x50\xe6\x04\x01\x35\xa0\xff\xbc\xaf\x2d\xb6\xa9\x37\x18\x55\x98\xc9\x66\x2e\x13\x35\x90\x80\x52\x26\x90\xb1\x39\xb3\x12\x2d\x4a\xf4\x66\x82\xcc\x9a\xcb\x09\x0a\x6c\xa0\x1f\x45\x45\xd8\x40\xe6\xc1\x70\x14\xba\xe4\xf2\x90\x78\x08\x31\x8d\x22\xa6\x8b\xe3\x78\x48\x23\xb2\x88\xbb\x9c\xa0\x80\x03\xca\x17\xaf\x50\x97\xa0\xe2\x2f\x57\xc9\xd7\xb5\xfe\x4d\xdc\x75\xf9\x48\x51\x50\x38\x65\xe2\x15\x9a\x8b\x21\x79\x0d\x32\xa2\x21\xca\x99\x94\x6d\xfe\x8a\x3b\x99\x25\xc9\x4c\x80\x44\xe6\x35\xe6\x40\x51\xd2\xc5\xac\xbc\xc5\x52\x53\x96\x74\x99\x71\x3c\x54\xa3\xc6\xe0\x0a\x97\x6a\xe4\x13\x13\xe4\xc5\xec\x8a\xbf\xf2\xe0\x47\x72\xeb\x0b\xd7\xc7\x1c\x6a\x53\x96\x39\xd9\xa5\x37\x01\xf3\x27\x13\xd0\xd6\x5c\xba\x11\x80\x7d\xde\xd7\xb8\x0b\x4b\x23\x59\x18\x09\x2f\x6d\x57\x30\xbb\xaf\x8d\x26\x2e\x97\xc2\x51\x01\xf2\x93\xb2\xfc\xec\x2e\x4f\x2e\x50\x7f\x7e\x34\x42\xa1\xfe\x98\x07\x5f\x54\xa0\xa7\x8b\x2f\x3a\x42\x55\xb3\x02\x3d\x5d\xb1\xaa\x40\x07\xca\x17\x6d\x99\x2e\x96\xe9\x21\xac\x10\x5b\xcf\x5c\x9e\x5c\x60\x00\x65\x16\xd9\x34\x97\x1c\xe3\x86\x69\x6b\x45\x64\x69\xf6\x50\xed\x3a\x45\x1c\x97\x6a\x07\x50\xa0\xcc\x32\x9b\x26\x50\x20\xf3\xe0\xb3\xf2\x60\xbb\xf8\xac\x07\x9f\x25\xb2\x83\x09\x16\xc8\x1c\xd1\x63\x99\xd0\x0e\xe6\x72\xd7\x3a\x90\x2f\x15\xda\xe2\x72\xd7\x02\x17\xe8\x7d\x8d\xa3\x54\xf8\x8a\x87\xd4\xd4\xa9\x65\xba\x5c\xb9\x7e\x62\x76\x64\xeb\x2e\xcd\xce\x43\x9f\xea\x64\xeb\x2e\x7d\x0a\x78\x3d\xf9\xd2\xee\xc8\x39\xe7\xc1\x9e\x07\x4d\x50\xfe\xfc\x7c\xf2\x89\xb6\xaf\xbb\x23\x85\xea\x84\xb4\x25\xe7\xd6\x51\x08\xff\xb9\xb0\x3f\x4d\xaf\x6d\x35\xc5\x27\x49\xb2\x47\xd6\xeb\x13\xfc\x79\x50\x28\x3c\xf2\x1c\x9f\xe0\xa6\xf2\xef\x9c\xfc\xd3\x16\x53\x20\x61\x1e\xd9\x9a\x4f\xf0\xb0\xa1\xb1\xc8\xce\x74\x42\xa3\x92\xf5\xf7\x48\xa3\x3a\xaf\x46\x95\x15\x0c\x24\xec\x1b\x3b\xc1\x89\x64\xa3\x3e\xd2\xb6\x4e\xb0\x1b\x19\xa9\x05\x8c\x63\x27\xe4\x1f\xc5\x58\x1e\x99\xa0\x80\x84\x93\x2f\x92\xd8\x91\x09\xea\x84\xda\x34\xc8\x89\x8e\x8c\xc6\x27\xcc\x4c\xac\xa8\x61\x47\x2e\xb8\x03\xaf\x57\x56\x8c\xe5\x51\x70\x29\x10\x68\x32\xeb\x93\xda\x21\x80\xb0\x9d\x60\x7c\x93\x1c\xe0\xc8\x21\x76\x80\x67\xa6\xaa\xfc\x76\x08\x68\x66\xc0\xa0\xc9\x2c\x71\x6a\x47\xcc\xed\x84\xb0\x25\x03\xdb\x51\x20\x3e\x40\x68\x32\x2b\x9f\xda\x91\x43\x0c\x65\xb5\xdf\xd7\x48\x0e\xe2\x6e\x27\xb8\x9b\x96\x59\x0e\xb1\x13\x6c\x8a\xf8\xe4\x26\x58\x1a\x3b\xc1\x6f\x08\xb6\x60\x47\x06\xa3\x13\xca\xd1\xa4\xf8\x76\x64\xa1\x3e\x27\xbe\x49\x43\x93\xd0\x62\xec\x1c\x10\xfb\x54\x93\x66\x10\x47\x99\xb5\x9b\xec\x9c\x9f\x4f\x5a\xb4\x71\xcb\x75\x94\x51\xae\x3b\x65\x45\x58\x1e\x99\x93\x0f\x4c\xc6\x2a\xe7\x6e\x47\x26\xe3\x13\x2c\x60\xd1\x2e\x7c\xe4\xdb\x3a\x21\xbd\xb1\x28\xbb\x1d\xf1\x80\x13\xe7\x9c\x05\xd8\xed\x96\x56\x05\xfc\x98\xa4\x6a\xe8\x76\xcb\x0b\x7f\xc3\x4d\x95\x89\x5d\x6b\x37\x01\xb8\xec\xbe\xc0\x6c\xe9\xce\x10\xa2\x8c\xdd\xc1\x03\x88\x78\x60\xb7\x78\xc0\x1d\x3c\x40\x1a\x90\xe0\x66\xec\x0e\x65\x8c\x65\xcd\xed\x56\xb2\xf4\x8d\x12\xf4\x32\x34\xdd\x12\xc4\xee\xd0\x80\x58\x8b\xdc\x6e\x69\x40\xc0\x83\xf9\xb1\x41\xdd\x12\x46\xee\xe0\x0e\x8b\x2a\xc9\x2d\x2f\xfc\x1d\x2c\x60\xd1\xf8\x76\x4b\x3b\xba\x43\x05\x22\x82\x81\xdd\xf2\x29\xdd\x0d\xdd\x91\xd7\xde\xd2\x80\x00\x11\xf3\x63\xbb\x12\x44\x8c\x01\x12\x26\x95\x8b\xa7\xfc\x56\x48\x2a\x30\x62\xb2\x12\xc1\x85\x11\x63\x37\x18\x47\xb9\x34\x39\x31\x0e\x80\xc4\x24\xd5\xf5\x36\xe0\xbf\x7c\x7f\x46\x77\xa4\xb0\x5b\x56\x15\x60\xbf\x64\x62\x2e\xda\x4d\x6c\x2c\xbb\x07\xe6\x26\x1a\x92\x7d\xfa\x1e\x3b\xbe\xc8\xde\x86\x7a\x1b\xd8\x38\x2a\xed\x02\x83\xb1\x7b\xc4\x40\x78\x57\xdc\xf2\xdb\x03\x28\x26\xa9\xca\xb7\xdd\x62\x53\x80\x83\x79\xdb\xd8\x9d\xfc\xf6\x80\x86\xc9\x89\xac\xe8\x96\xa0\x75\x83\x15\x25\x11\xb3\x72\x82\xee\x15\xcb\x45\x75\xf1\x56\xde\xcf\xfd\x72\x25\x58\x01\xff\x49\xdc\xbd\xe5\xd6\xbf\x77\x7c\x55\xb4\x2e\xc9\x08\xd8\x31\xa9\x5c\xf4\x91\xde\x4a\x8a\x06\x98\x4c\x4e\x3a\x3e\x12\x2c\xee\x13\xcb\x22\xe2\x93\x6f\xeb\x7e\x19\xd3\xdb\xc6\xa5\x3e\x43\x6d\x13\x9f\xe4\x4a\x8b\x51\xdd\x27\x46\xa2\x93\xac\xb8\xd8\x1b\x71\xb1\xe5\xe7\xfc\xc8\x64\x7c\xdf\xa0\x87\xaa\x26\xd1\x03\xcc\xc2\x2a\xfd\x6c\xb7\xcc\xc2\x80\x8d\x49\x45\x07\xe1\x91\xa5\x16\x38\x31\x49\xd5\x90\xed\x91\x4a\x08\xa0\x98\x4c\x30\x48\x7b\x24\x73\x3c\x29\x5e\xe3\x82\x3d\xf2\x8a\x3f\x29\x5e\x2b\x6c\x32\x35\x81\x54\xa8\x88\x3d\x72\x98\x3f\x25\x06\xa9\x36\x69\x46\x00\x7d\xc9\xac\x26\x6c\x8f\x72\x8a\x3f\x10\x18\xb2\x94\x47\x8e\x2d\xa0\xc0\xa4\xc2\x82\x27\xf6\x88\xdd\x00\xeb\x25\xa9\x16\xae\x3d\x0a\x81\x07\xee\x4b\x26\x58\xa4\x3d\xf2\x79\x3d\x2f\xe3\x49\x45\xe6\xd1\x47\x46\xdc\x07\x5a\x85\xaa\xe3\xda\xa3\x84\x8f\x27\x00\x05\x64\xef\x7b\x74\x4b\xa2\xf4\x7c\x52\x25\x4c\x7b\xe4\x90\x7d\xe0\xe8\x50\x89\x49\x7b\x14\xd6\x08\x4c\x92\x2c\xb8\x87\x47\x4e\x8e\x27\x48\xbd\xd0\x9a\xf9\xc8\x1e\x11\x20\x25\xaa\x29\x69\x02\x29\xb1\x00\x29\x29\xb2\x05\x0a\xa4\xc4\x9e\x13\xb8\x27\xbc\xb5\x1e\xf9\x71\x03\x1a\x44\x45\x20\x5d\xd0\x20\x7e\x95\xf8\x66\x67\x1b\x8d\xf3\x8e\x0a\xf2\x49\x05\xd9\xfc\xe2\x52\xfb\x05\xd9\xae\xb0\xdc\x93\x5f\xe4\xec\x7e\xc1\x26\x5e\xea\x27\x74\xf8\xd5\x7e\xbe\xf9\x44\x5b\xf9\xda\xe8\x43\xf4\x2b\x78\x34\xe1\x48\xfd\xa2\x0f\xd1\xaf\x0e\xb2\x9d\xfc\x24\x8d\xe2\x7e\xcd\xf8\x64\xe7\x27\x97\xa6\x17\x2c\xee\x13\x9b\x5c\x50\x17\x7e\x05\x41\xb4\x8f\x58\xfc\x22\x41\x78\xc0\x60\x94\x76\xe9\x93\x9a\x1d\x94\xc9\xc2\x42\x4d\x7e\x6d\x75\xb7\xa3\x3b\x35\x75\x35\x61\x51\x08\xb5\xe9\x17\x3d\x7e\x7e\x6d\xd0\xca\xe2\xe4\x08\x14\xeb\xd7\xab\x1f\x66\xd6\xf3\xf0\xcb\xb4\x5c\xa8\xad\x5e\x98\xc6\xe7\xc2\xc1\x70\xe0\x5e\x64\x9e\x1f\x07\xf8\xc5\xf7\x67\x0c\x44\xbb\x6a\x1a\x88\xc5\x40\x26\x9b\x34\x10\x47\xf1\x82\x8b\x63\x74\xad\x64\x1c\x11\x66\xff\xf9\xe5\x9a\xb6\xc7\x4a\x16\xae\xa4\x6b\x4f\x7d\xe1\x93\x1c\x88\x6b\x4f\xe3\x64\xb5\xc2\xd5\x72\x91\x50\x1c\x1f\xda\xc9\xfc\x3a\x5a\x93\x13\xdd\x55\x0e\xe5\xa8\xbb\x13\xdd\x71\x72\xc7\xd4\xf4\xce\x9b\x80\x95\x7e\x31\x4b\xc2\xaf\x3b\xc8\xa4\xf2\x35\xa6\x5f\xfa\x05\x8e\x9f\x13\xe7\x76\x6b\xde\x77\x0c\xa4\x71\x72\xb7\x28\x28\x6e\x83\x26\x3a\xbf\x35\xb9\x27\xba\xfb\xd4\x79\xbf\x1e\x75\xf7\x44\x77\x9c\xf7\xa3\xf5\x8a\x23\xde\x3e\x76\xe3\x89\x02\xad\xa7\x2b\x3e\xf9\x69\x2a\x9e\xe8\x26\xf0\xc0\xf1\x28\x2c\x7e\xe1\x89\xae\x40\x0f\x44\x8e\x42\x6b\x91\xa7\xa4\x6f\xa6\xd8\xf2\xc9\xf7\xe8\x26\x74\xc0\x6c\xa4\xd2\x3e\xc6\xee\x89\x52\xab\xa7\x57\x4a\xcd\x2c\x92\xee\x29\xeb\x93\x39\xc8\x79\xf1\x93\xc4\xdd\xf0\x94\xeb\xfb\x5a\xe1\x17\xb3\x7a\xcb\x03\x4d\x85\x4d\x53\x4d\x18\x08\xf3\xa1\x3d\xe5\x9f\x81\x60\xc7\x49\x5f\x89\xb1\xaf\x8e\x7a\x14\x99\x55\xc3\x3d\xd1\xb0\xe8\x01\xc8\x51\x98\x10\xe5\xa9\xa8\xb7\x02\xf2\xaa\x1c\x23\x3d\xa0\x9e\x82\xc9\x76\xd2\x57\x12\x93\x0d\xb4\x8e\xc2\xc0\x51\x4f\x55\x4b\x12\x57\x24\xab\x37\x78\xaa\xea\xae\x46\x77\x6a\x32\x35\x61\x6e\x95\x13\xa0\x75\xd0\x03\x75\xa3\xf4\xcc\xe5\xa2\xac\xee\x40\xdd\xc8\x84\x90\x71\xa1\x6e\x78\xa0\x6e\x14\x06\x8d\xba\x50\x37\x3c\x50\x37\x4a\xd7\xe6\x88\xdb\xa7\x90\xc8\x3b\x6f\x9e\xd4\xd5\x5d\x8f\xee\xd4\x34\xd4\x84\xb9\xf1\x7c\x24\x31\xfb\x14\xb2\x3a\x4d\x79\x9e\x86\x96\x6b\x44\x6f\x3c\xaa\x69\x88\xd0\x47\xcc\xa0\x71\x94\x43\x33\x40\xc9\xde\xd2\x35\x94\xa9\x99\x87\x68\xdd\x7b\xff\x27\x69\xd7\xd3\x14\x89\xcd\xfb\x9d\x05\xaf\xa5\xb4\x34\xd2\xb8\x7b\x98\x9a\xe1\x40\xe9\xf8\xfe\x8c\x1e\x75\x24\x97\x3e\xb9\xb0\xb3\x9d\xdb\xb0\x45\x9a\x3b\x26\x31\x39\x09\xdd\x3d\x81\xe5\x51\xba\x4e\xeb\x16\x1d\x6d\xac\xb5\x98\xc3\xd6\x5a\xc7\x95\x45\x40\x56\x4f\x5b\x3b\x1b\x22\x53\xd7\x21\xd7\xc5\x94\xde\x0b\xe5\x6d\xe3\x37\x4d\x04\x08\xdb\x62\x19\xbc\x3d\x93\x6b\x8f\xe2\xae\x18\x3a\x0a\xae\x3d\x8a\x0b\x61\xe8\x28\xe8\x42\x08\x58\x91\xc2\x28\x56\x17\xac\x88\xa7\xd0\x01\x46\xe6\x7b\x47\x2b\x0d\x1d\x20\x4f\x6e\xc2\x51\x77\xa1\x03\xb0\x44\x94\xa7\x5b\xd3\x8b\x1b\x61\x88\xa8\x6f\x75\x17\x6c\x7f\x88\x79\x88\xed\x07\xae\x48\x61\xc1\x72\x4f\x4c\xbb\x77\x40\x8c\x64\xc2\x65\x7a\x12\xd7\x4f\x4f\xcc\x5c\x54\xfd\x88\x1e\x1e\xd0\x83\x36\xe1\xd1\x42\xc7\x8d\xc0\x98\x53\xcf\xba\x11\x02\x8d\xa4\x30\x94\xd8\xb3\x6e\x04\xc0\x84\xa4\x42\xa4\x55\xcf\x34\x71\x38\x70\x42\x72\xfe\x74\x2d\xcf\x74\x35\x79\x0e\x95\x83\x41\xa7\x9e\xa9\x72\x78\x86\xca\x41\x64\x27\x17\x6e\x88\xe7\xb8\x2b\x18\x6d\xeb\x99\xee\x66\xcf\xe9\x8e\x36\x8e\x32\x91\x47\x67\xdc\x23\x2c\x16\xef\x82\x1b\x71\xd4\x42\x4b\x85\xd6\x4a\xcf\xba\x11\x72\x5e\x78\xed\xdb\xb9\x5c\xf4\xda\xcb\xe5\x33\x13\x75\x5c\x20\x25\x9e\x83\x0d\xd3\x20\xe9\x99\x9a\x8a\xe7\xd0\x54\x66\xe2\x72\x51\x53\xf1\x0c\x4d\x85\xda\x81\x67\x89\xcf\x39\xf8\x30\x03\x1a\x3d\x37\x75\x17\xcc\x76\x66\x4e\x40\xcc\x36\xb0\x4d\xca\x24\xff\x16\xb6\x89\xa3\xa0\x5b\x2a\x34\x56\xba\xea\xb8\x79\x86\x4b\xb9\x4c\xd2\x6c\xee\xda\xd5\x7e\x30\x4c\xce\x9c\xe1\x79\x9e\x83\xdb\x32\x06\xcf\xb3\xb8\x6d\x60\xa2\x14\x02\xc3\x7a\x16\xb7\x0d\xe0\x93\x32\x79\x3b\xe5\xa1\xee\x60\xff\x28\x9a\xc1\xd4\xaa\xcc\x98\x39\x19\x71\x9e\xda\xba\x89\xad\xe3\x81\x14\xee\x89\x07\xee\x49\x99\x9d\xa3\x14\xa7\x0d\x00\x93\xc2\x10\x5d\xcf\x92\xe4\x03\xc0\xa4\x30\xc8\xcb\xf3\xd2\xcc\x77\xcc\x4e\x84\xc9\xda\x5f\x9e\xff\x6a\x7f\xf1\x35\x71\xda\x1c\x9c\x76\x52\xe1\xc8\x5b\xdd\x05\x3b\x65\x48\x96\x67\x69\x00\x40\x33\xc9\xa5\xa8\x37\x8d\xc4\x62\x24\x64\xde\xd9\x34\x12\x8b\x91\x90\x8a\x4c\x8b\x12\xca\xe2\xd4\x61\x3d\xea\x0d\xe2\x6e\xd1\xce\x49\xdc\xcd\xc1\xf8\x18\xa7\xe2\x59\x8c\x2f\x87\xf1\x83\x96\x51\xcf\x34\x7e\x38\x40\x49\x72\xd1\x86\x8b\x27\x06\x12\x49\x59\x5a\x2f\x22\x91\x78\xbe\x63\x24\x9c\xdb\x23\x62\x78\x02\x5b\x8f\x02\x55\x7e\x44\x0c\x0f\x88\x81\x4a\x64\x7e\xf4\xc5\x97\x3b\xe6\xd2\x38\x90\x47\x0c\x25\x58\xe2\x62\x6f\x45\x2c\x31\x20\x45\x0a\x43\x43\xbc\xd0\xd2\xe2\x40\x17\xc9\x2c\x4b\xe6\x85\x96\x16\x2f\xc1\x2d\x57\xd3\x27\x5d\x6d\x98\x5b\xd7\x17\xb9\xca\x25\xc5\x4a\x52\xca\x17\x12\x89\x03\x89\x24\xb3\x44\x8d\x0b\x89\xc4\x4b\x30\xd9\x45\x65\xbd\xd0\x69\xef\x81\x52\x52\x98\x73\xef\x42\x29\xf1\x92\xa3\xd4\x26\xe5\x86\x42\xcf\xbc\x97\x1c\xdd\x71\x02\x12\xad\x4b\x70\xd2\xc5\x33\x50\xc4\x49\x4b\x70\xd2\x9f\x2f\x6a\x4d\x6a\x8d\xd7\xb8\x5e\x55\x9f\x84\x8a\x5f\x19\x42\xec\x45\x2a\x7e\x81\xd4\xc7\xb8\x1d\x2f\x92\xfa\x0a\xd8\x57\x65\xb8\xac\x97\xae\xc9\x81\x47\x55\xe2\xcf\x7a\x19\x5a\xcb\x11\xdd\x91\x2c\xcb\x50\x77\x23\xba\xe3\xc4\x87\xba\x1b\xd1\x9d\x88\x41\xec\xab\x04\xfb\x1a\x1c\xc9\xd0\xae\xc2\x44\x5b\xaf\xc6\x19\xd0\x44\xeb\x65\xc6\x48\x44\x44\x53\x5b\x37\xa3\x3b\x5e\xb9\xc2\x30\x71\x94\x55\x7b\xdb\xb8\xe5\x2e\x9a\x85\xb2\x5b\x13\x65\xa2\x22\x65\xb7\x40\xd9\x25\x7c\xa6\x97\xa3\xd9\x81\x33\x54\x26\x66\x7b\x39\xea\x0e\x66\xa4\x9a\xea\xbf\x81\x91\x79\x61\x34\xad\x97\x1b\x57\x32\x45\x98\x22\xe6\x10\x40\x1f\x95\xd6\x56\x2f\xb7\x06\x7a\x63\xa0\x14\x61\xca\xad\x81\xde\x81\x16\x59\xf5\x49\xad\xf5\x13\x90\x90\x94\xe7\x8b\x24\xa6\x02\x3d\x99\x88\x77\x5e\x1e\xd1\xdf\x13\x23\xd1\x79\x7d\xb4\x0d\x60\x0f\xaa\x68\xee\x82\x15\xf1\x7a\xc5\x7b\x3c\x5d\x55\x7a\x72\x40\x8e\xd4\x44\x11\x5a\x90\x23\x5e\x73\x0c\xf3\x0b\xdc\xf1\x4a\x2f\xae\x57\xa8\xa7\x55\x26\x95\x4a\x2f\xae\x57\x04\xbe\x54\x46\x6c\x7a\x95\xa4\x12\xd8\x21\x55\xd6\x0a\x61\x87\x78\x2d\xf1\x4d\xca\x1c\x95\xc9\x09\x5e\x5f\xa5\x33\x13\x5a\xd4\x2b\x93\x13\xbc\x42\xc2\xa9\xcc\x4b\xf7\x2a\x09\xa7\xf6\xe8\x8e\x62\x45\x95\x0e\x57\xa1\xc3\x31\x18\xcd\x85\x0f\xe2\x35\x4e\x3a\x0b\x07\x78\xed\x3f\x9f\x8c\x51\x6a\xa5\x75\x9c\x51\x15\x35\xd5\x4c\xfe\xa7\xb2\xa8\x5e\xe1\x71\xa9\x9a\xf8\x50\x77\x28\x65\x55\xa5\x1a\x55\x1d\xe7\x80\x23\xa9\x0c\xd9\x74\xc1\x91\x78\x5d\xd1\x1d\x99\x55\x95\x15\xb0\xae\x18\x26\x2d\x12\x75\x69\x98\x70\x9e\x56\x89\x92\xd5\x34\x3d\x58\xd8\x2a\x6d\xb1\x5e\x4d\xef\xc1\xd3\x59\x65\x8b\xad\xa2\xf7\x0a\x05\xa1\x16\x8d\x45\x0a\x42\x85\x82\xc0\xea\xd9\x2e\xf4\x0c\xaf\x71\x14\x58\x68\xcc\xeb\xa3\x29\x04\xbd\x33\x04\xd1\xab\x6e\xca\x8a\x58\xb4\x4a\x40\x49\x17\xb2\x86\xb7\x0b\xdd\x51\x6b\x6a\xf4\x49\x78\xbb\x62\x76\x3c\x5e\x8d\xa9\x7a\xde\xe2\x28\x54\xae\x4a\xd3\x51\x08\xb0\x8e\x5a\x49\xd2\x8d\x8e\x4e\x07\xc8\x46\xaa\xda\x59\x41\x6b\x38\xe0\x32\xde\x36\xbe\xa7\x5b\x08\x05\x66\x33\xe1\x4c\xbd\xe9\x16\x6a\x71\xba\x88\x90\xea\x2a\x39\xeb\x81\xad\x51\x2b\x49\x5a\x45\x67\x3d\x40\x32\x2a\x83\x28\xbd\xc9\xc4\x03\xbc\x8c\x4c\x38\x53\x6f\x3a\x41\xc0\xc4\x48\x95\x59\xeb\xde\xe8\x73\x75\x80\x64\x28\xbc\xd2\x05\x92\xe1\x2d\x0e\x1e\xb3\xd6\xbd\xc9\xc2\x03\x00\x8d\x5c\x79\xaf\xb5\xea\x6a\xba\xd1\xc4\x65\xa6\x37\xd6\x1b\x62\xdc\x2b\xb1\x40\xbd\x31\xc6\xdd\x01\x97\x91\x89\x2e\xea\x8d\x05\x3b\xbc\x21\x1e\x43\x26\xfb\xd6\xb4\x92\x88\x1a\xab\x32\xcb\x37\x19\x78\x5a\xc3\x40\x28\x88\xb5\x2e\x12\xea\x51\x13\x9c\x8b\xd5\x45\x42\xc1\x52\x08\xda\xe9\xad\x8b\x14\x82\x6f\x54\x9e\xff\x26\xbe\xd1\xe2\xaa\xaf\x9d\xdf\x1c\xea\x6e\x44\x77\x5c\x64\x49\x01\x2d\xd8\x06\xaf\xd7\x26\xb6\xd1\xe2\xa6\x67\xb8\xa9\x37\xdd\xf4\x0d\x37\x3d\x23\x58\xbd\xe9\xa6\x6f\xc1\x51\x58\x90\xda\x9b\x38\x4a\x0b\x29\x80\x51\xaa\xde\x24\x05\x34\xc4\x93\x54\x46\xa9\x7a\x93\x82\xd3\x42\x0a\x20\x10\x81\x37\x99\x92\xda\x8c\xa1\xb0\x3b\xb9\x31\x5a\x40\xbf\xb2\xf6\xb4\x37\x99\x92\xda\x9a\xef\x6b\xbc\x98\x9a\x74\x9f\x16\xbc\x8d\xb1\xad\xde\xc4\xdb\x02\xf8\xa4\x12\xa2\xd1\xdb\xd6\xec\x36\xf8\x17\x31\x1a\x5d\x08\x26\x0e\xe8\x91\xa4\x92\xfe\xde\xa4\xa9\x00\x8b\x24\xff\x2c\x98\x69\x0f\x82\x95\xb6\xac\xd7\xb4\x28\x06\xb2\xd4\x5a\x12\xa6\xc4\x01\x4b\x92\x89\xb6\xea\x4d\xbe\x8a\x80\x22\xa9\x8d\x3a\x66\x73\x0d\xc4\x71\xaa\xa8\x4d\xa9\x72\xb3\x47\xe5\xe6\x9f\x25\x39\x5a\xe5\x13\x5f\x14\xa7\x91\x89\x29\xa0\x48\xaa\x5c\x1c\x82\x22\xf1\x06\x75\xaa\x12\xe1\xd0\xdb\xad\xee\x5e\xcd\x2a\x37\x5e\xff\x4d\xde\x83\x40\x30\xa9\x0c\xdc\xf5\x76\x8b\x16\x5e\x21\x28\x37\xb1\xd8\x47\x9b\x13\x37\x01\x01\x02\xbd\x49\xf2\x69\xef\x4d\x90\x59\x04\xce\x9b\xb4\x29\xd4\xbb\x7d\x5f\xe3\x20\x65\x61\x02\x5e\x4a\x6e\x34\x6f\x08\x2e\xc5\x3b\xee\x08\x39\xb4\xba\xee\x88\x7e\x05\x1e\x31\x0f\x78\x97\x81\xa9\xbf\x8a\x55\x6e\x64\xe7\x5d\x92\x54\x8f\xab\x85\x68\x15\xde\x75\xb5\x04\x38\x4b\x25\x08\xa0\x77\x5d\x2d\x81\xb2\x52\x59\x2a\xdc\xbb\x8c\x4f\x00\x5c\xc9\x22\x85\x4e\x7f\xb7\xf7\xe4\x68\xfa\x37\x24\x32\xef\xba\x93\x7a\x88\x75\x72\x9b\x74\x29\x54\x1d\x0a\x15\x51\x32\x5d\xa8\x2e\xde\xe3\x2a\x23\x1e\xac\xf7\xac\xb9\xc7\x7d\x45\x9c\x0b\xef\x72\x56\xf4\x8c\x2d\xe7\x75\xd5\x75\x5d\xf5\x02\x76\x4f\x18\x59\x07\x3a\xcc\xf7\x27\x46\x42\x51\xa3\x4b\x16\xec\x25\x56\x93\xd6\x81\x5e\xb5\xaf\xf0\xe7\xcb\x85\xd6\xab\xf6\x35\x6e\xb9\x46\xce\xd0\xab\xf6\x35\xae\x32\x62\xd3\xb9\xa0\x67\xbc\xc3\x4a\x56\x3b\x89\xb6\xcb\x4a\xd6\x5b\x74\xa7\x26\x4d\x00\xf7\x15\x11\x34\xbd\xcb\x23\xd1\xe1\x75\xa8\x72\x9b\xf4\xa6\xc9\xbd\xf7\x93\xe2\xd0\xbd\x33\xca\xd9\x7b\x8b\x81\xd0\xee\xd6\x65\x3f\xeb\x21\x95\xb2\xce\xaf\x77\x49\xa5\xbd\xdf\x01\x25\xcd\xc9\x0d\x2d\x4a\x28\x99\x72\x72\x74\x29\x99\x1d\x4a\x26\x63\xdb\xbd\x4b\x2a\xed\x71\xf5\x74\xad\xf3\x50\x77\x71\xbf\xc8\xcb\xd1\x75\xbf\xf4\xd0\x24\x89\x7f\xe1\x5d\x77\x48\x9f\xd1\x1d\x67\x3e\x35\xf3\x10\x74\xe5\xe4\xe8\x4b\x24\x8b\xa8\xea\x9f\x63\xb7\xb4\xce\x2b\x7a\xd3\x49\xd6\x1d\x12\xc0\x40\x95\x20\x17\xde\x75\x87\x04\xc2\x4f\x65\x7c\xb1\x77\xd9\xcf\x00\xf6\x93\x09\x20\xe3\x5d\x57\x48\xdf\x31\x71\x5e\x59\xdd\x44\x28\x88\x8f\x66\xd5\x7f\x17\xc0\x8f\xf7\xb8\x79\x08\xfa\xea\xdd\x44\x97\x71\xbd\x30\xbc\xd8\xbb\xae\x97\x6e\xa8\xbb\xff\xd3\x9b\x98\x43\x28\xde\x9d\x1a\x74\x77\x8d\xc4\x63\x24\x9c\x80\xfc\xdd\xdd\x63\x4d\x78\x1d\x77\x17\x5d\x22\x24\xa4\xf1\x32\xeb\xae\xdd\xf1\xe8\x8d\x9e\xf7\x2e\x9f\x76\xa0\x17\xd5\xc1\x8b\x42\xe8\x45\xde\x43\x97\x1f\x54\xea\xba\xac\x7c\xfd\x44\x77\x9c\x80\xac\x7c\x3d\xae\xa5\xc1\x9b\xba\xeb\x5a\xea\x71\x2d\xf1\x82\xec\xb7\x96\x39\xf4\x78\x39\x68\x54\x09\xdb\x51\x09\x3b\x13\x8a\xc7\xbb\xf4\x9a\x1e\xb7\x99\xfc\x33\x5d\xfe\xee\x80\x5f\xaa\x43\x87\x4e\xd7\x59\x40\x2c\xd5\x21\xde\xad\x3b\x0b\x68\x4b\x99\x15\xef\xbd\xcb\x17\xde\x9f\x3f\x74\x73\x7d\x52\x13\x0f\x1d\x9f\x58\x22\x2e\x64\x26\x1f\x57\xac\x33\xc5\xfb\xc1\x00\x6f\x1f\x08\xf0\x26\x62\x90\x0b\x99\xc9\x47\x98\x06\x58\x8d\xcf\x87\x2e\xb4\x11\x17\xda\xa0\x0c\x3f\x74\xa1\x8d\xd0\x87\x06\x19\xdf\x48\xea\x0e\x36\x40\x39\xae\x87\x3c\x26\x28\x1e\x9f\x2a\x71\x46\x7c\x64\xcd\x20\x27\xbc\xc6\x2f\xe6\xac\xa6\xe8\x8d\xac\x61\xc8\x10\x11\xd8\x52\x55\x2e\x9f\xa1\x6b\x69\x84\xaa\x44\xa0\x11\x1f\x45\xdd\x95\xe8\x6e\xb2\x69\xaa\x29\x26\x3e\xf4\x9a\xab\xed\xa5\xcb\x4e\x13\xc5\x90\x16\x35\xe2\x5a\x92\xcb\x67\xc8\x19\x1e\x00\x52\x55\x7e\x1d\x01\x48\x39\xf0\xa2\xde\x36\x7e\x53\xba\x12\xf0\xa2\xb2\x38\xfe\x68\xfa\x64\x7b\x45\x11\xa2\x2b\xf9\x90\xa3\x65\xc4\xfd\xc2\x3a\x7a\x3e\xa4\xf4\x04\x7e\x54\x25\xe2\x89\x0b\x3f\xca\x03\x23\xaa\x0e\xda\x0c\x84\x11\xe5\xa3\x03\x30\x7d\x6a\x7f\xe4\x84\x19\x61\xf6\x98\x34\xa5\x0c\x99\x3d\x06\xf4\x97\x2e\x9a\x95\xfe\x32\xe2\xee\x21\x0e\x87\x0f\xb9\xb5\x03\x3c\xaa\xce\xa4\x4f\xfe\x74\x77\xe3\x93\x6a\xa2\xf0\x3c\x90\xf4\x5b\x27\x4d\x0d\x83\x49\xbf\x0e\xac\xa8\xdc\x45\xea\x0c\x87\xf7\x81\x70\x78\xdd\x58\x83\xe1\xf0\x1e\xd0\x51\x75\x32\xe2\x68\x28\x40\x6b\x20\x40\x8b\x29\x36\x3e\xa4\xd9\x8c\xb8\xb1\x18\x98\xef\xc2\x8e\xf2\x01\xcd\x86\x90\x94\x3e\x96\x7a\x0b\xed\x85\xc1\xf7\x3e\x14\x9f\x05\xa8\xa8\xac\x3b\x70\x6c\x4d\x6d\x77\x34\x71\x45\xb6\xa6\xb6\x63\x21\x69\x30\x1d\x72\xdc\x00\x3a\x2a\xeb\x7a\x14\x74\x94\x8f\xb8\xcb\x18\x97\xef\x43\x2e\xf2\x80\x95\xaa\x72\x90\x0d\x5d\x58\x23\xcc\x47\x93\x36\x81\xa1\x00\xad\x61\xd1\x1d\x27\x20\xa5\x67\xe0\x52\x22\xde\xbb\x0f\x05\x68\x0d\x0f\x2a\x69\xff\x18\xc4\x30\x14\xa3\x35\x10\xa3\x45\x54\x4a\x17\x56\x95\x8f\xb8\xea\x08\xd6\xe0\x43\x77\xd6\x08\x9d\x48\x6e\xb7\x21\x9d\x68\x00\x72\xa6\xca\xed\x36\x74\x31\x8d\x3b\xd6\x85\x57\xeb\x90\x1f\x69\xc4\xed\x33\x75\xc8\xe5\x5b\x0f\xdc\xac\x3a\x29\x3d\x0f\x5d\x31\x23\x78\xfe\xe4\xd5\x24\x24\x2b\x07\x92\x95\xd2\x92\x5c\x48\x56\x3e\xe3\x3a\x60\x42\xbd\x4f\xe9\x30\x33\x78\xfe\xe2\xfd\x39\x99\x8f\xe9\x01\x57\x55\x09\x63\xe3\x33\xa9\xbb\x84\xee\xa6\x9a\xf4\xc9\x04\xfa\xe3\xb5\x0b\x64\xab\xef\x4f\x4c\x8e\x99\x0c\x3e\x15\x50\x35\x11\xb3\xab\x10\x0d\x81\x5c\xf9\x8c\x9b\x62\x31\xd8\x6a\xca\x49\x1e\x00\x58\x75\xf1\x6c\x4d\x5d\x07\x81\x64\x55\xe5\xe6\x9b\xd2\x44\x00\x6a\x95\x59\x51\xd7\xa7\x62\xa3\x66\x18\xce\x98\xe4\xe0\x93\x89\x95\x3e\xe3\x3a\x60\xbe\xb6\x4f\x05\x40\x05\x94\x55\x5d\x14\xd7\x05\x65\xe5\x33\x74\x8a\x45\x85\x76\xca\x3c\x36\x11\x00\x25\xa9\x68\x32\x61\xc9\x67\x8d\xee\x9a\x3e\xa9\x19\xe0\x3a\x20\x84\xa4\x4f\x05\x47\xcd\x16\x8b\xc2\x7b\x70\xca\x29\x3f\xc3\xf4\xc4\xba\x8f\x3e\x65\x7a\x9a\x30\x3d\x0d\xfa\xb4\x84\x56\xe5\x33\xd8\x3a\x11\x7a\x7c\xca\x49\x1e\x48\x56\x75\x51\xa8\x98\x43\x44\x04\x05\xa0\x5d\x9a\xdd\x54\x77\xc8\x65\x92\xec\x36\x65\x5f\x9a\x2f\x3f\xce\x84\x81\xf3\x29\xd5\x60\x22\x19\xb3\x31\x81\xd5\xa7\x18\xf4\x84\x79\x69\xf0\xa2\x10\x34\x96\x4f\x30\xe1\x76\xa9\x37\xd9\xc7\x27\xf0\xb8\xdb\xa5\xf7\x14\x8e\x14\x90\x5a\xed\x12\xf1\xc9\x11\x3e\xc1\xe0\xda\x45\x0e\x3d\xc5\xe0\x26\x18\xdc\xe0\x55\x31\x15\x3a\x34\x3d\x86\x42\xcb\xe6\x54\xe8\xd0\xf4\xe8\x8e\xde\x86\xa9\xd0\xa1\x80\xcd\x6a\x17\x79\xb4\x60\xb3\x3c\xa0\xb1\x1a\xd3\xde\x7c\x32\xcf\xc9\x81\x92\xa5\xe4\x3c\x9f\x72\xa1\xcd\x13\xdb\x43\x8f\xc2\x94\xfc\x3c\x21\x3f\x4b\xc2\x14\xa0\x96\xcf\x3b\x7a\xa3\x78\x33\xc5\xdd\xe6\x53\xa3\xe0\x08\x47\x29\xdb\xcd\x8c\xea\x1a\x97\x28\x45\x06\x9a\x89\x10\x20\x05\x1c\x09\x19\xcb\x03\x19\xab\x25\xd2\xfa\x92\xbf\x3b\x90\xb1\x1a\xeb\x37\xfa\x92\xb0\xbb\x5e\xe1\x36\x2b\x4e\x69\x11\xc2\xcf\x17\x04\xda\xc6\xd2\x8e\xbe\xe4\xef\x5e\xf0\x77\x0f\x5e\x77\x4b\xd1\x41\x81\xb5\xd5\x98\xe3\xe0\xc2\xda\xf2\x95\xe3\x93\xd4\x00\x96\x0c\xf5\xab\xc4\x28\x29\x70\x2c\xb9\xba\x56\x8d\xd9\x91\xa7\x2c\xd9\x14\x16\x6c\x0a\x04\x74\x74\xe1\x62\xf9\x6a\xf1\x49\xde\x3e\x4b\x87\x3c\x30\xb3\x5a\xfa\xb2\xfa\x7d\x49\x20\x0c\xf0\xab\x96\xb8\x77\x4b\xa6\x6e\xe0\x60\x29\xe5\xd2\x97\x3c\x64\xab\xc7\xec\x78\x31\x2d\x19\x15\x56\x8f\x4f\x92\x39\x2c\x45\xd7\x04\x30\x56\x4b\x94\x23\x97\x18\x47\x20\x5c\x35\x39\x0e\x85\x70\xe5\x0b\xd6\x81\x26\xc7\xe1\x12\x0b\x00\xa2\x55\x96\x98\xbf\x14\x42\x03\x44\xab\xd4\x08\x5a\xed\x82\xb1\x72\xc0\x56\xa5\x26\xe7\xe0\x52\x78\xcd\x5a\xd1\x1d\x55\xb4\xb5\xd4\xdd\x8a\xee\xb8\x98\x8a\xae\x59\x16\x9f\x24\x07\x58\x52\xae\x17\xe4\x98\x41\x89\x43\x78\x54\xbe\x82\x03\x30\x4f\xc3\x97\x38\xc0\x02\xaa\x66\xcb\x8c\x80\x5e\x2e\xaa\x7d\xe5\x99\x4c\x24\x48\x5f\xac\x86\xe1\xcb\x63\x24\xb4\x2a\x2c\xd9\x83\x17\xec\xc1\x43\xd4\x20\xbd\x7b\x1d\x1c\x11\x11\x83\xa2\x0a\x01\x4b\xf5\x7e\x51\x6d\x22\xa2\x97\x85\x28\x91\xd6\x97\xb4\x75\x40\x56\x29\x8f\xd6\x97\x84\xa2\x15\xdc\x86\x85\xbb\x7d\x89\x6d\xac\xa8\x00\x94\xa9\xe5\x2f\xa9\xe4\x01\x46\xd5\x32\x65\x8a\x25\x2b\x32\x70\xa9\x32\x4b\x9c\xf8\xba\x29\x48\x2e\xb8\x1a\x07\x2d\x8a\x4b\xae\x46\xc0\x52\xa5\x96\x69\xdd\x58\xd2\xc8\x17\x34\x72\x62\x36\xfa\x92\x46\xbe\x82\x7f\x65\x5a\x37\x96\x82\x72\x02\xc3\xaa\xb1\x00\xb6\x6f\x31\xa9\x00\xaa\x6a\x2c\xee\xe8\x5b\x41\x39\xc0\xac\xca\xd2\xb3\xb6\x24\xb0\x1d\x8c\x68\xfd\x1b\x1e\x83\x6f\xc5\xe5\x6c\xe8\xe4\xad\xd0\xdc\xbd\x25\xa0\xed\xe0\x61\x85\x86\xeb\x2d\x1e\xb6\x81\x7e\xd3\x58\x30\xda\xb7\x1c\x91\x1b\xc2\x48\x53\x6c\xd7\x96\x30\x02\xd8\x2a\x65\x2c\xfb\x96\x30\xb2\x83\xbd\x11\xfd\xc6\xb7\xf4\xd6\x1d\x3c\x4c\xa1\x32\x5b\x3c\x2c\x00\xa9\x5a\x21\xd5\x6e\x19\x46\x81\x4d\x95\x27\x7d\x00\x9b\x38\xf8\xbe\xc1\xc2\x14\xc6\xb8\xe5\xad\x03\x34\x55\x6a\x84\xb8\xf1\x2d\x95\x76\x0f\x8f\x36\x7e\x52\x4e\x32\x80\x45\xa5\x56\xd5\x9d\x04\x95\x1d\x7c\xa3\xd2\x79\xb0\x65\x56\xdc\x21\x1e\x54\xda\x53\xb7\xc4\x83\x0d\xf1\x40\x61\x93\x02\x6d\xf2\x1d\x3c\x45\x4e\xb2\xad\x48\x99\x00\x74\x6a\x44\x9c\x71\x01\x3a\xf9\x0e\xf1\x40\x5e\xb2\x2d\x8b\xdd\x86\xc5\x6e\x32\xc3\x66\x4b\x3a\x08\xac\xa7\x26\x57\x9e\xb0\x9e\x1c\x58\x4f\x79\xd2\x05\x20\xac\x27\xdf\x71\x96\x2b\x0f\xde\x56\x7c\xdd\x8e\xf3\x4a\x2c\x1a\xdf\x52\x62\x36\x5c\x3b\xad\x89\x54\xe4\xe4\x0f\x8c\xa8\xd6\x68\x96\x33\x29\x38\x16\x47\x48\xfe\x0f\x93\x75\xca\xae\x78\x8f\x82\xbe\xc9\xa5\x62\x71\x12\x1a\x75\x5e\xd3\x49\x08\xfc\xa8\xd6\xaa\xde\xd3\x37\x53\x7c\x93\x56\x2d\x93\x79\x0a\x70\x51\x99\x38\x90\x6e\x32\x4f\x59\xbd\xf0\x1a\x65\x3b\xab\x3f\x6d\xd1\x1d\x59\xa3\x49\x09\x30\x28\x01\xcc\x98\x77\x01\x3a\xb9\xc5\xb9\x6b\x5c\x69\x23\x6a\x81\x5b\x1c\x2e\x79\x4d\x84\xe8\xe4\x81\xda\xd4\x64\x5a\xb4\xa6\xee\xe0\x25\x97\x46\x6f\xf2\x92\x5b\x94\xed\x92\xcd\xce\xe4\x75\x30\xf8\xbb\x5b\x27\x1f\x33\xf9\xbb\x0d\x5a\x40\x23\xa8\xb8\x9b\xbc\x07\x36\xa2\xbb\xc1\x26\x75\x07\xdb\x7b\x63\xed\x3a\x37\xd9\xde\xcd\xe2\x93\x54\xcc\x4d\xb1\x29\x16\x02\xaf\x14\x46\xd3\xa5\x66\x21\x9e\x4a\x0f\xb0\xfb\xa7\x0d\xf7\xcc\x10\xad\xc8\xbe\x6b\x41\x7f\x0a\x88\x77\xd1\x9f\x87\xc0\xa8\x30\x74\x97\xc0\x08\xe4\xa2\x4c\xe4\x49\x77\x31\x62\x0f\xd2\x64\xa1\x30\x77\x91\x66\xa0\x1a\x35\x85\x9a\xbb\x48\x13\x48\x45\x6f\x5b\x61\x9b\xba\x4b\xd1\xdd\x62\x93\xba\xcb\x20\x3f\x5d\xcc\x2e\x55\xd9\x5f\x2a\x15\x4a\x82\xbb\xd2\x92\x3c\xc7\xa2\x90\x33\x3a\x4b\xbb\xb8\x23\x34\x65\x76\x35\x6d\x35\xc5\x20\x79\x2f\xbb\xfc\x79\x01\x4f\xd4\x64\x77\x74\x19\x55\x81\x54\x94\x89\x28\xec\x4e\x3c\x34\xf7\x72\xbf\x4d\x43\x6f\x91\xb3\x03\xa8\xe8\xfd\x22\x5f\x53\x64\x4a\x20\x17\x4d\xde\x15\x82\x26\x72\x8f\x53\x27\x63\xa5\xcb\x9d\x17\xd0\x44\x4d\xc6\x4a\xd7\xd1\xf2\xb8\x9b\x74\xc9\xb8\x32\x8c\xbc\x45\x77\x6a\xd2\x72\xc5\xc9\xa2\x88\xe3\x3a\x59\x1e\x92\x37\x91\x9b\xdd\x65\x6e\xf5\x38\x59\x8a\x87\x77\xdd\x4d\x1e\xe2\xb5\xec\x87\x2e\xf1\xda\x47\x8d\x6a\x66\x9c\xb9\x6c\xaa\x1e\x77\x93\x98\x8a\x4b\xa6\x05\xde\x50\x26\x92\xb2\xfb\xd2\x30\xe3\x44\xca\xac\xe5\x3a\x91\x01\x40\xd4\x7e\x16\x5a\x11\x15\x1e\x9a\x32\xb1\x3f\xdd\x95\x9c\x03\xe4\xa0\x3c\x79\x21\xf8\xd6\x8e\xc3\xf0\x48\x98\x4b\x77\x19\x1e\x01\x1c\x94\x9a\x8c\x61\xae\x38\x8c\x40\x12\x9a\x22\x06\xc5\x61\x78\xb0\x8d\x49\xe1\xce\xc5\x36\x02\x65\xa8\xfd\x8c\x44\x21\x6d\x01\x17\xd4\x08\xec\xe1\xae\x68\x0b\x20\x07\x65\xc2\x5c\xba\xcb\x7c\xe8\x21\x79\x2f\x11\x91\xcc\x87\x1e\x5c\x8a\x98\x1f\xee\xe2\x52\x7e\xff\xb5\x71\x2d\xef\x9f\x36\x0c\x73\xd1\xf5\xe3\xba\x41\x3d\x8a\x5e\x2e\x6a\xca\x2e\x4f\x53\xe0\xfe\x34\xd9\xae\x8e\xec\x80\x27\x6e\xd0\x45\x0e\x76\x24\x84\x1e\x08\xa1\x8b\xf6\x16\xe1\xfe\xf8\x09\xc6\xb7\xc8\x84\x8f\x5c\x3f\x81\x09\xd4\x14\xc7\x2d\x4c\x20\x3f\x71\xb9\xca\xd0\x74\x14\xcb\x70\x52\x74\xa7\x26\xee\x79\xc0\x05\xb5\x35\xfe\xd1\xc4\x2b\x34\x21\x3f\x39\x7a\xe4\xfd\x7a\xe4\xfe\x09\xa4\xa1\xb6\xa8\x5e\x08\x69\xc8\x4f\x99\xd1\xf6\x11\xee\x51\xc6\xe3\x81\x14\xda\x65\xbf\x3a\x72\x9f\x1c\x9c\xe7\xce\xd2\x69\x7e\x74\x9e\x03\xfb\xa7\x13\x4e\xd9\x85\xfd\xe3\xa7\xc7\x37\xb5\x49\x72\x9f\x1c\xe4\xb0\xc8\x9c\x79\x64\x82\x3b\xb8\x60\x3b\xb1\xa0\xfc\xc8\x45\x02\x38\x9f\xd4\x2f\x5e\x41\x47\x51\xd9\x67\xc5\x50\x78\xcd\x1c\x39\xcc\x0f\x1c\xe6\x4b\x33\x90\x67\xe2\xac\xf8\x24\x39\x99\x40\x7c\xfc\xac\x98\x01\xef\x0b\xa1\xf8\x78\xa0\xf8\xf4\x8b\x87\xf6\xc8\x61\x0e\x40\x9f\xbc\x28\x8b\x1d\x39\xcc\x03\xe0\xa7\x13\xff\xc2\x05\xf0\xe3\x07\x07\xb3\x13\xa8\xd8\x8f\xa4\xde\x03\xa9\xb7\xcb\xea\x72\x64\x14\x3b\x38\x99\x9d\x10\x25\x7e\x74\x32\x0f\x8c\xf0\x9d\x75\xc2\xfc\xc8\x08\x7f\xee\xf8\x26\x5d\x93\x47\xa7\x2f\x50\x7c\x7a\xd2\x29\xd2\xe9\x0b\xa4\x9e\xae\xc0\xeb\x23\xad\x12\xa0\x3d\x59\xc6\xe1\x23\xf3\x56\x80\xf8\x74\x42\x2c\xf8\x2d\xb1\xe3\xbe\x62\xea\xdc\xbc\x5b\xc6\xfb\xfb\x8a\xee\x28\xf0\xdf\x12\x89\x03\xe0\xa7\x13\x73\xd8\x6f\x9d\xda\x40\xea\xe9\xc2\x20\x10\x52\x8f\xdf\x40\x53\xec\x89\x57\xfa\x2d\x8f\xed\x9d\x62\x9c\xbc\xd2\x05\xd5\xe3\x37\x44\xe2\xc5\xac\x80\x5b\x22\xf1\x9d\xa3\x3b\xb2\xd5\x5b\x47\xf6\xce\x31\x05\xb2\xf1\x5b\x47\xf6\x86\xc7\xb6\x67\x5a\xfd\x6e\x79\x6c\x6f\x78\x6c\xc5\x93\xee\x42\xba\xbd\x21\xf6\xf6\x4c\x0d\xf0\x96\xd8\x0b\xd4\x9e\xac\xd4\x92\x5b\x97\xf3\x1d\x07\x5d\x79\xc8\xb7\x0e\xfa\xfd\x4a\xc0\x6f\x1b\x67\x20\x7d\x33\x60\x7c\x94\x91\x22\x18\x1f\x0f\xa8\x9e\x9e\xab\xda\x34\x12\xe4\x88\x2c\x2a\xbe\xb7\x72\xd5\x80\xcc\x93\xba\x02\xce\x6f\x79\x50\x03\xaa\x47\x89\x2c\x82\xea\xf1\x3b\xd8\x83\xd2\x74\x6f\xb1\x07\xa0\xf6\xbc\x6d\x9c\x9c\x0c\x6d\x81\xc7\xd3\x65\x6f\xba\xa7\xba\x83\x9b\x74\x89\x50\x64\x68\x03\xfc\x4e\xea\x59\x04\x26\x5f\x68\xe0\xf1\xb0\x0a\x80\x0b\x8f\xc7\xef\x60\x46\xca\x55\xbd\x65\x86\x0f\xac\x9e\x2e\x13\xd0\x2d\x8e\x73\xaf\xe8\x8e\x3c\xfa\x96\x33\xf4\xde\xd1\x9d\x9a\x8a\x9a\x30\x01\x8a\x39\xb7\x32\xdc\xee\x28\x53\x97\x29\x78\xdc\x72\x86\xde\x90\x49\x08\x0e\xea\xb7\x64\x92\xdb\xaf\xa8\xfe\xc8\x9d\x93\x59\x0f\x18\x3a\xa9\x13\xf3\xc4\x6f\x41\x2c\x04\xa8\x8e\x7c\x24\x02\xd5\xf1\x3b\x58\x91\x52\xbd\x6e\xb1\xa2\x1b\x39\x67\xbd\x88\x18\x94\x73\x76\xdf\x8e\x4f\x92\xbc\xc4\xa5\xee\x27\x46\x42\x4e\x74\x2b\xab\xe4\x7e\x15\xee\x72\x91\x99\xde\x84\x68\xf7\xfb\x65\x52\x85\x50\xa4\x7e\xcb\xf4\x15\xe8\x3e\x5d\xf9\x55\x8f\x98\xd4\x73\x25\xbc\xd6\xd9\x94\xd5\x14\x03\xa1\x30\xf9\x88\x7f\x05\x28\x50\x97\x85\xe7\x11\xff\x7a\xae\xe8\x8e\xc2\xe4\x23\xe7\xe3\x93\xfe\xff\x8c\x5d\x3d\xd2\x64\xb7\x0d\xcc\x7d\x8a\xef\x06\x7e\xfc\x03\xc8\x44\x89\x63\xfb\x0e\x33\xd3\x83\x2a\x05\x92\xb6\xd6\xd2\xfd\x5d\x0f\xd0\x74\xaf\x5d\x0e\x14\x6c\xb0\x1f\x6b\x08\x12\x04\xfb\xe1\x87\x6c\xa6\x38\x56\x72\x42\x17\xcb\x92\x04\xa8\xd9\x20\x7c\x85\xce\x3a\x46\xc1\xd7\xe0\xaa\x86\x62\xa3\x28\x8c\x1a\x5c\x9e\x10\x46\x45\xaf\x3e\xa9\xe7\x50\x19\x31\x6e\x2f\x62\x90\x50\xf4\x15\x62\x5f\x88\x51\xa3\xe4\xaf\x54\x61\x8c\x8c\x8d\x4c\x37\x08\x42\x15\xc6\xc8\xb0\xc3\x26\x5d\xb1\x50\xd8\x11\x2b\x57\xae\xab\x49\x13\x2f\xd4\x9b\xf4\x29\x62\xfd\xd0\xe5\xb3\xda\x3a\xdb\xa4\x94\xf2\x53\x26\x61\x2f\x94\xf2\x0f\x2b\x71\x1c\xa5\xee\xb1\x45\x86\x24\x36\x59\x29\x08\x55\x11\xc3\x73\xe2\x0c\xb0\x43\x2e\x4c\x14\xb4\xe9\xbc\x7c\xa8\x18\x10\x85\x5f\x3a\x2f\x1f\xc2\xaf\xf0\x12\x47\xfc\x0a\x1d\x23\x8c\x24\x3d\xb0\x49\x28\x0d\x91\x1e\xc4\xae\x99\x13\x2f\x43\xd5\x80\x78\xe4\x46\x9e\xf4\x16\x43\x45\xbf\xc8\x50\xc6\x74\x38\x3c\x54\xf4\x2b\x8e\x25\xe3\x8b\xfa\x2f\x71\x2c\xbd\xa2\x1c\x15\x1d\x25\x0e\x39\x2a\x81\xfa\x1d\x7d\xad\x50\xa9\x2d\xde\xa9\xb2\xd9\xff\x9a\xcf\x2b\x4a\xa4\x57\x14\xe4\x2c\x46\xf5\xa1\x20\x22\x0a\x57\x74\x1c\x32\x84\x2b\x51\x6e\x8c\x4e\x21\x87\xae\xe8\x44\xd4\x68\xd4\x24\x85\x66\x02\xdc\x96\xb6\xac\x12\xe0\xc5\xce\x64\x3c\x16\x88\x8b\x09\x70\x5c\x05\x03\x3c\x30\x8c\x8b\x30\x80\xab\x5d\xd5\xe6\x9f\x36\xd6\xdb\x70\xb5\x9a\xc2\x67\xef\xe1\x62\x86\x0e\x57\xf2\x2d\x1b\x39\x4c\x70\x91\x6f\x19\x57\xd6\xdb\xcc\x3a\xdb\xc8\xd4\x8e\x6b\xa4\x59\x7f\x1c\x38\x5c\xf4\x1d\x70\xd5\xc6\xe4\xe9\x58\x5c\x43\xe2\xb2\xf4\x6f\x3c\xbd\x04\x11\x4c\xe1\x9a\x25\x6e\xb0\xcf\x29\x71\x33\xc5\x7d\x4c\x1e\x17\x33\x7b\xb8\x32\x7b\x67\x3c\x01\x8b\x6b\x49\x63\x85\x03\xe4\xf9\xc0\xb5\xa4\xb1\xda\xec\x3c\xfe\x03\x71\x56\xa1\x78\xa9\xcc\x16\xb5\x69\xea\xb3\x02\x0f\x9e\xba\xc1\xc5\xc0\x03\x97\x25\x92\x7d\xbc\x00\x5c\x26\x65\xd6\x66\x37\xe7\x30\x5d\x5d\xd6\x8e\x26\xc9\x07\x2e\xd7\x30\xcb\xeb\xe0\x61\x56\x5c\x2e\x71\x9e\xe2\x3e\x9b\x16\x97\x4b\xdc\xbe\xea\x67\xec\x72\xcb\x1e\x2a\xb8\xb0\xc3\x2e\x1f\x52\xf4\x23\x15\xad\x51\x3e\xb4\xae\xb5\x9f\x59\x8d\xc7\xf5\x90\xc2\xca\x0f\xe0\x43\x6f\xb8\x1e\x5a\xd7\x4c\x40\x18\x4b\xe7\xb8\x9e\x12\xf7\x2c\x71\x6a\xd2\xba\x66\x06\xdf\xf8\x90\x20\x2e\x56\x05\x91\xf4\x53\x83\x91\x13\x44\x3f\x85\xab\xd0\x83\x07\x29\x71\xbd\xa4\xcb\x57\xcd\x60\x72\x94\x3c\xda\x84\xa4\x9f\x1a\x0c\xb8\x20\xfa\x29\x14\xc5\x94\xf9\xe4\x28\xa1\x91\xa0\x46\xc2\x41\xf2\x89\x1a\x5c\xc8\xb9\x49\xcb\x90\x2a\x51\xea\xd2\xf6\x81\x16\x15\xb9\xa8\x87\x73\x83\x16\xb5\xd0\x8f\xaf\xf0\xe1\x7a\xcb\x86\x0a\xc3\x5c\x66\xf9\xd6\xbc\x2b\x14\xe3\x5b\x7b\xb8\xde\x12\xf7\x2e\x71\x6a\x0a\x36\x15\x84\x09\x36\x42\x5a\xae\x20\xcd\x65\x27\x21\x5b\x28\x08\x73\x42\x58\xa3\x93\x83\x96\x0f\x51\x18\x2b\x8d\x68\xcc\xf2\xa2\x55\xa8\xb2\x2f\xfe\x6e\xe8\x77\xe9\x07\xf0\x7c\x02\xc4\xc2\x84\x56\x28\xc5\xe4\x1d\x1a\x4f\x05\xa0\x15\x14\xed\x4f\x02\x01\x8d\x49\x52\x14\xd5\x92\xed\x49\x71\x53\xe2\x66\x89\x3b\x6c\x1a\x6a\xba\x57\x95\x1c\xa6\x68\x4c\x92\x22\x49\x97\xee\x1e\x29\x8d\xb5\x3d\x24\x0b\x93\x68\x1d\x21\x16\x26\xb4\x02\xb0\xfd\x09\x94\xd1\x04\x60\xc5\xd0\x64\xcc\x8a\xa3\x09\xc0\x8a\x6a\xc9\xf6\xa2\x2e\x97\xc4\xad\x12\xc7\x26\x93\xbe\x2a\xa0\xe2\xf3\x48\x68\x4c\x92\xa2\x15\xb6\x31\x6b\x89\xc6\xf3\x09\x68\xfe\x67\xdb\xc7\x66\x9b\xab\xad\xc2\x9f\x7d\xa8\x95\xad\x61\x56\x56\x85\x6f\xe9\xa0\x6d\xc9\xab\x80\xe4\x68\xc9\x1f\x5a\x83\x47\xae\x41\xe7\x30\x1f\x9a\x42\x01\x18\x09\x7b\xd1\x1e\x12\x57\x28\xc5\x73\x6e\x68\x42\xa9\xa2\x29\x32\xd2\x59\xa0\x3d\x25\xee\x99\xe2\xf8\xd1\x6a\x4f\xad\x6b\xbe\x0d\x63\xcc\xb8\xa0\x3d\x35\xf3\x42\xa9\x33\xa9\xb1\x97\x16\x0f\x35\x14\xc2\x8d\x28\x85\xd0\x2a\xb6\x60\xc8\x8b\x16\x9a\x42\x6d\x2e\x86\x39\x68\xf1\xc3\xef\x4a\x1e\x37\x65\xd7\xe6\xea\xf9\xda\xa6\x33\x84\x40\x67\x02\x12\x3d\x43\x01\xbf\x68\x80\x9d\x49\x46\xf4\xf4\xcd\x9d\xf4\xfb\xe8\xf4\xcd\xd1\xd3\x37\x6f\x44\xd3\x2e\xf7\xa0\xf7\xea\x92\xe6\x2e\xfe\x1c\xf4\xdc\x94\xce\x34\x1b\x44\xa0\x83\x3e\x4a\xdc\xe7\x18\x1f\xfa\x90\xb8\x51\xe2\x3e\x9a\xee\x2c\xfc\xa1\x78\x77\x9c\xbc\x08\x10\xef\x0e\xfa\xaa\x2e\x69\xd3\x9d\xce\x39\xba\xd5\x50\x88\xec\xdd\x34\x14\xaf\x29\x10\x6c\xfb\x96\x36\x77\x1a\x04\x77\x9e\x98\x69\xd0\xd3\xdc\xbd\x49\x61\x32\xf7\x62\xad\x71\x72\x04\xa3\xcb\xdc\x8b\x9a\xc6\xf9\x9c\x16\xfa\x91\xb8\x53\xe2\xa8\xb0\x23\x71\x79\xa9\xd3\xc9\xda\x8b\xce\x04\x23\x7a\x26\x11\xbd\x8d\xbf\x76\x6d\x0d\xfd\x48\x31\xa7\x46\x43\x00\xec\x0f\xad\xdf\xa3\x66\xa8\x75\xd7\x0e\x2b\xe6\x1a\x6f\x5a\x77\x7d\xeb\xfb\xf3\xcf\x97\xa2\xf9\xbb\xa7\xa6\xf1\x2c\xcd\x10\xaf\x3a\xaf\xde\xa0\xdf\x5b\x6c\x34\xad\x9f\xfc\x80\xfe\x2c\x71\xa6\x2e\x7f\x10\xf7\xae\x36\xae\x2d\x4f\x40\xa3\xdf\xee\xc2\x60\xce\x0f\xfd\x35\xd4\x54\x23\xe1\xe6\xeb\xf2\x03\x7a\xfa\x01\x3c\x10\x86\xfe\x92\x71\xa2\x94\xc2\x8f\x5e\x87\x94\x82\xea\x92\x2e\x49\xd7\x5e\x2f\xf2\x1d\x6f\xb2\x40\x68\x06\xef\xea\x73\x73\x28\xcc\x76\x20\x59\x73\x46\x73\x35\x69\xd9\xdf\xb5\x76\x84\x88\x1e\xb2\xa4\xfc\x6c\x93\x64\x02\x62\xd1\x41\x4f\xd4\xf1\x2e\x84\x10\xea\xf4\x44\x1d\x27\x23\x26\xba\x50\xa7\xb8\x72\x9c\xe9\x40\x0c\xa1\x4e\xd2\xe6\x8c\xf6\xc9\x37\x61\xf0\x32\x0c\x8a\x0f\xc7\x79\x56\x0c\xe2\xc3\x41\xf2\xdf\x88\x0b\x18\x43\x78\x94\xf4\x37\xf7\xcf\x9c\x6d\xae\xb6\xea\x92\x38\x3d\x9a\xba\x6c\x09\x1e\x87\x23\x21\x43\x18\x46\xcf\x41\xd2\xcb\x19\xcc\xac\x22\xd9\x6f\xee\x1e\xd5\xa6\x09\xf4\xd2\xc9\xe4\x04\xc8\x36\x80\xe4\xbc\x11\xbb\x30\xc4\x79\x83\x51\x80\xda\x3f\xb9\x02\x0c\xd6\x49\x30\x0a\x35\x3b\x77\xd6\x10\x6a\x8e\xf1\xa7\x38\x0e\x65\x48\xdc\x28\x71\x9c\x9c\x3c\x99\x91\xa0\xc9\x43\x7e\x18\xbc\x42\x83\x31\x4b\x95\x44\xb1\xa1\x98\x6a\xa4\x27\x43\xe2\x10\x88\x98\x07\x45\x79\xe3\x9d\x58\x2b\xca\x1b\x24\xe5\xcd\xe0\x2b\x70\x10\xe5\x0d\x46\xc1\xe9\x68\x94\xb6\x35\xb7\xc2\x4c\x1e\x98\x82\xe8\x70\x50\x94\x37\x3e\x64\x27\x5b\xe2\x76\x89\x33\x36\x69\x51\x13\x32\x79\x4a\x11\x43\x90\x39\x32\x0b\xea\xa3\xab\x4d\x9a\x3c\xa9\xc9\xce\xb9\x1d\x2d\x5c\xa1\x29\xf9\x38\x30\x04\x97\xa3\xe0\x92\x27\xb7\x30\x04\x97\xe3\x51\xe2\x06\xad\xf9\x21\x71\x8f\x12\x47\x9d\x3c\xa4\xaf\x67\xe9\x84\x9f\xbb\xf1\x94\x4e\x0a\x2d\x07\x91\x74\xb0\xfe\x8a\x51\x90\xc8\x7c\x26\x86\x20\x71\xbc\xaa\x4f\x86\xca\xe3\xa5\x15\x7f\xe5\x8a\xf3\x3b\x32\x5e\x5a\xf1\x82\x44\x66\x26\x31\x04\x89\x23\x21\xb1\x4b\x29\x0a\x8d\xc6\xab\x94\x42\x24\x1d\x90\x52\x0a\x12\x99\x99\xc4\x10\x24\x26\x3d\x50\xf3\xb1\x39\x14\xc1\xde\x78\xd7\xec\xe8\x4c\x0e\x45\x2b\x23\xa3\x95\x1f\xf6\xe3\x5b\xca\x2c\x48\x64\x86\x11\x23\x34\x94\xc2\xbd\xa9\xcd\x2a\xdc\x1b\x99\x8d\x71\xb2\x94\x60\x84\xc4\x45\x89\xfb\x34\x4d\xe6\x64\x51\x1c\x40\xce\x14\x23\xc4\x01\x84\x79\x63\xd2\xdd\xf6\x19\xca\x64\x69\x16\x33\xc3\x0e\x27\xff\x07\x26\x2f\x38\x60\xd6\x6e\x25\xff\x04\x26\x2f\xb5\x61\x96\x8b\xc3\x2c\x1c\xa6\x5c\x9c\xb9\xaa\x4f\x4e\x7d\x2a\x5d\x51\x84\x3d\xce\x2c\x1c\xa6\xdc\x9f\x69\xaf\x6a\xfb\xac\xd0\x64\x02\x12\x33\x33\x89\xbe\xe8\x30\x4e\x9e\x44\xc2\xf4\x34\x08\x9a\x9f\xd8\x75\x30\x0b\x39\x48\x43\x8d\xa9\x28\x61\xfa\xbb\xda\xd4\x25\xf7\xf2\xbc\x1d\xaf\xd1\x69\xb5\x93\xd7\xcc\x30\xcb\xa3\xe2\x1d\x7a\xcc\xad\x91\xec\x1c\x89\x51\x61\x5b\x8a\x3e\x35\x71\x9a\xad\xb8\x7c\x30\x93\xb7\xc2\x79\xab\x1d\xf3\xa1\x19\xbc\x6a\x06\x1a\xca\x4b\x33\x28\x73\x5f\x87\x7d\xca\xdc\x67\x79\x07\x64\x2c\xc6\x94\x77\x30\xcb\x03\xe0\x71\x30\x4c\x79\x00\x33\x49\xb6\xdc\x08\xdf\xf3\xad\x45\xc8\xe4\xa3\xf3\x38\x18\xe6\x5b\x46\x56\xdb\xc4\x9a\x7e\xa7\x3e\x6b\x2f\xf0\xf2\x3a\xa6\xf6\x42\x91\x00\x39\x49\x7f\x31\xf5\x9d\x9f\xf9\xba\xac\xf3\xfd\x2e\xcc\x90\x3e\xcb\x07\x50\xea\x4e\x04\x41\x58\x99\x99\x74\x3e\xd2\x85\xa5\xcc\xe4\xaa\x8d\xc2\x6b\x82\x58\xda\x28\xc5\x1e\xe4\xbc\x27\x08\xb1\x07\xa1\x18\x82\x5c\x79\xbd\xc5\x1b\xb1\x48\xb2\xa0\xd1\xf7\xf8\x6b\x4e\xef\xe2\xa1\x09\xac\x0a\x3e\x8c\xc1\xf6\x52\xf0\xb1\xea\x3b\x4a\x37\x4d\x84\x3e\x58\xb5\x6b\x79\x50\x0e\x4b\xbb\xb6\xc8\x7e\x9c\xe4\xb7\x58\xda\xb5\x6b\x96\x38\x1a\x8c\x68\x7b\xb0\x32\x25\xc0\x77\x3e\xb1\x78\x2d\x01\x49\xc5\xd3\x9c\x17\xb9\xb1\x96\x66\xb0\xd2\xe4\xd5\x23\xcb\xaf\x58\x85\x11\x4e\x73\x11\x37\x0f\x56\x61\x04\x1f\xba\xc2\x12\x46\xac\xe4\x0a\x75\x3e\x74\x85\x45\xe6\x2e\x14\x03\x8f\xf3\xba\x36\x96\x69\x28\x56\x43\xa1\x38\xa5\x3b\x93\x70\xa7\xb9\x13\x07\x96\x6b\xf5\xfc\x5e\xbd\xa1\xc9\xb9\xa4\x15\xea\x38\xbf\xdb\xcb\x65\x2c\x05\x2d\xbc\xc9\x8d\x25\x68\x29\x9a\x1d\x77\x19\xe7\x96\xb8\x5d\xe2\x9c\x4d\xae\xa6\x93\x4d\x9c\xc0\x96\x2e\x2b\x56\xe3\x65\x6d\xac\x23\x7d\x3d\x4a\x5f\xf4\xd3\x96\xb2\xa4\xab\x3e\xa4\xca\xb5\x2d\x7d\x48\x57\x7e\x48\x87\xd4\xac\x0f\xe9\x2a\xd4\x51\xf2\x6b\x09\x75\x56\xa1\xce\x96\xc2\x94\x64\x2c\xba\x19\xdf\x9a\x1d\x24\x0e\x25\x8e\xb3\x53\x26\x71\x55\xd8\xb1\x35\x14\x7d\x7f\x57\x86\x1d\xa4\x64\x85\x98\x68\xb0\x0a\x8f\x48\x46\x8b\x25\x3c\x2a\x96\x1a\xdf\x5a\x71\xe1\x51\x51\xd1\x38\x9f\xc2\xc7\x0a\x89\x8b\x12\xc7\x09\x84\x94\x52\x90\x43\x9e\x5a\x88\x6f\x06\xc9\x37\xa3\x17\x2e\x20\xbe\x19\x58\xa1\x11\x79\x6a\x21\xbe\x19\x58\xa1\x11\x79\x6a\x21\xc2\x19\x14\xa9\x8c\xf3\x1a\x2e\xac\x49\x5c\x2b\x71\x6a\x1a\x6a\xca\x09\x30\x7e\x30\x56\x52\x61\x15\xad\x28\xb5\x27\xd6\x18\x58\x2b\x69\x8c\xf8\x8d\x95\x54\x14\xa3\x8c\xf3\x32\x2d\xac\x6b\x06\x59\xb1\xf1\x6d\x1c\x8a\x52\x32\x56\x01\x84\xf2\x77\xa6\x00\xc2\x32\x80\x18\xf4\x65\x8c\xe7\xb3\x60\x05\x8a\xbc\x4b\x0b\x53\x55\xa6\xb8\x61\x7c\x33\xbe\x33\x21\x9f\x25\xb7\xa7\xf3\x9d\x6f\x98\x42\x88\x22\x80\x71\x9e\x1f\x84\x4d\x0d\x65\xd6\x50\x38\x73\x25\x43\x93\x0a\xe6\xfe\xd9\x07\x84\x4d\xa8\x98\x5c\x30\x77\x1b\x7f\xc7\xaa\x2e\x92\x1c\x66\xc8\x5b\x16\x39\x0c\xac\xc0\x54\x49\x46\x53\xa1\xa7\x88\x63\x9c\x47\x12\x61\x42\x4c\x33\xab\x36\x0e\xc5\xa4\xb1\xac\xe6\x38\x0f\xdf\xc1\xe4\x39\x59\x96\x6e\xe5\x80\x8b\x1c\x06\x56\xa8\xc8\x67\xa6\x61\x2a\xf4\x58\xde\xb4\xf7\xc3\x3d\x62\x5b\x53\xa8\x00\xe9\xc8\xa2\x15\x20\x59\x06\x48\x43\xe6\x20\x17\xc8\x0a\xc3\x94\x80\x34\x61\x58\x31\xc0\xf8\x61\xec\x61\x72\x8f\x2c\xaf\x72\xfa\x61\xd9\xcc\x94\x7b\xb5\x0a\x75\x78\x2d\x16\xa6\xfc\xaa\x55\x66\x88\xa7\x15\x61\xca\x0c\x15\x97\x8b\x1f\xe6\x63\xec\xa9\xb1\x3c\x77\xb5\x51\x2d\x4f\x4d\xaf\xe2\x19\x9e\x47\x84\x29\x9e\xb1\x8c\x67\x48\xda\x0a\x31\xaf\xc0\x0a\x86\x79\x68\x05\xf6\xd2\x30\x0b\x6b\x8f\x4c\x53\x58\x6b\xb8\xaa\x8d\xea\x84\xa6\x5e\x1e\x9e\x72\xaf\xa2\x5e\x81\x25\xb3\xfc\xbe\x64\x64\x90\xb1\x64\xd9\x66\x5f\x8c\x30\x4c\x65\x1b\x4b\x20\xde\x3c\x87\x01\x53\xd9\xa6\x08\x56\x36\x1f\x76\x85\x09\x6d\x8b\x29\x65\xf3\xb6\x2d\xc4\x94\x02\xcb\xcb\xa3\xfb\x92\x95\x85\xf4\x92\xd1\xce\xe6\x79\x04\x98\xa2\x1d\xcb\x68\x67\x48\x65\x72\xfe\x8a\x29\x65\xf3\x39\x52\xb8\xca\xd2\xc5\x94\xb2\xf9\x1e\x29\x5c\x70\xeb\x59\x96\xde\x7c\x74\x14\xae\xb2\xb4\xb7\x9a\xde\xe7\x5e\x26\x5c\x6e\x9a\xb7\x44\x08\xae\x82\x28\x4f\xe0\xad\x66\xc0\xda\x99\x0b\x53\x8b\x0e\x65\x93\x57\x17\x2e\x4c\x2d\x5e\x93\xad\xfc\xb1\x2b\x97\x93\x14\x27\x43\xa1\xa3\x0b\x52\x7d\xd4\xec\x68\xb7\xae\x22\xb8\x67\x11\x9c\x1c\xaa\x70\x15\xc1\x7d\x94\x34\x86\x6b\xae\x22\x78\xd1\xa1\x6c\x5e\xfc\x85\x0b\x6e\x8b\xd7\x64\xf3\xc0\x28\xc4\x6b\x02\x9f\x65\x63\x7b\xff\xb7\xdb\xeb\xff\xdf\xeb\x75\xd5\xc8\x7d\x96\x5e\xe8\xa2\x3a\x6f\xc7\x22\x19\x50\x06\xc9\x36\xe1\x02\x5c\x5f\x35\x18\x86\x34\x2e\x54\x4d\x76\x94\xa1\xf0\xd7\xe5\x86\x16\x23\xca\x6e\x8c\x76\xdc\x24\xcd\x4a\x1a\x7b\x94\xa7\xe9\xb7\x63\x79\xff\x8c\x6a\x11\xde\x7a\x16\xa6\xb6\xca\x6e\xae\xc2\x94\x5b\x89\xd3\x50\x54\x59\x2f\x22\x95\xdd\xb8\x4d\x5c\x80\x5b\x8c\x28\xbb\xd1\x3f\x12\x23\x0a\x3c\x93\x5c\x64\x3c\x85\x2b\xc9\xe5\x59\x59\xdf\x8d\x05\x26\x57\x61\x20\x19\x50\xee\x36\x76\xa9\x50\xd5\xd3\xd7\x24\x03\x29\x5c\xbe\x66\xb2\xa3\xb4\xdd\xb4\x83\xb6\x66\xb7\x6b\x76\x74\x2f\x5c\x18\xee\xa7\xc4\xf1\xb3\xe0\xca\x72\x79\x66\xb9\x26\x73\x3d\x7e\x34\x83\x47\x29\xe5\xf3\xfd\x8d\xc3\xa8\x2b\xce\xed\xd7\x4c\xe6\x6c\xe2\xf0\x54\x6b\xe4\xb5\xed\xc9\x94\x4d\x1c\x6e\xd7\x38\xf7\x16\x14\xaf\x6c\x1c\xe6\x3b\xe2\xf4\xeb\x6e\xfa\x84\x2b\x71\x78\x61\x26\x4e\x9f\x3f\x7d\x4d\xf2\x05\xc7\xe9\x92\xd5\x9f\xd9\xc4\x11\xb2\x22\x15\x79\x21\x7c\x32\xb7\x12\x87\x55\xe2\x38\xa3\xfd\xf4\x35\xd7\xc7\x10\xe2\xb0\x4a\x1c\xe7\xde\x8f\x93\x3c\x83\x71\x86\x06\x7f\x3b\x42\x93\x59\x89\x38\xcc\xac\xc6\x99\x57\x36\xed\x4f\x13\x7d\x9f\x38\xf7\x46\x9d\x7c\x92\x2a\x0e\x13\xab\x71\xee\x2d\x3b\x79\x21\x2e\x0e\xbd\xa2\x38\xb7\x13\x24\x26\xc7\x38\xf3\x07\x59\xef\xbb\xc9\xa8\x0d\xb2\xb8\x46\xde\x65\x9f\xe4\x3a\x0b\x5d\x60\x8f\xbc\xaf\x2e\x2a\xbd\x38\x4b\xb2\xee\x1d\x3a\x4d\x3a\x74\xa9\xf7\x0e\xb3\x26\xcd\x3b\x8e\x4b\x1b\xfe\xc8\x26\xfd\x4a\x23\xf4\xd4\xbc\xa6\xec\x1a\xe1\xbd\x29\xc4\x77\x1b\x67\x4b\x1b\x77\xf8\x35\xa7\x8c\x8d\xe1\x57\x9c\xdb\x8b\x99\x24\x85\x8d\xb3\xd5\xe1\xc9\x0e\x8d\x4d\x47\x53\x3e\x69\x36\xc6\x45\x39\x9a\xf2\xc9\x79\x49\x51\x4c\xed\xc6\x39\x69\x51\x32\xec\x23\x8b\x3a\x39\x2f\x57\x87\x1a\xc6\x23\x87\xb1\xd9\xe1\x43\xb2\x1e\x3b\x9b\x68\x51\x0f\x29\xea\x91\x1d\x1e\xda\xe1\x53\x66\xf3\xbc\x07\xcf\x67\xe6\xe2\x3c\xd5\xe1\x33\x6d\xe3\xe2\x30\x9e\x1a\xfc\xed\x0f\x4d\xde\x87\x0c\x5d\x90\x8f\xbc\x20\x2f\xb6\xce\xd0\x05\xf9\xc8\x0b\xf2\xa2\xdd\x8c\xf3\x52\x87\xb7\x0b\x34\x97\xe6\x05\x75\x88\xfc\xd5\xe1\xaf\xa0\xa5\xbc\x9d\x1c\xd1\x44\x86\xee\xb9\x47\xde\x65\x17\x15\x64\x9c\xb7\xa6\xfc\xee\xb7\x1d\x76\x76\xf8\xd6\xaf\xde\x69\xa2\x83\x66\xf3\x96\x0e\xdf\xf7\x94\xdb\xa6\x36\xde\x82\x94\xb8\x17\x85\x54\x89\x71\x42\xb2\x22\xb7\xc3\xe4\x76\x08\xc9\x8a\x94\xf5\x09\xc5\x22\xe8\xc1\x44\xdc\x3b\xbe\x7f\x0a\x8c\x11\xfc\x1c\x47\x1e\xf2\xe4\x13\x8b\xa1\xd3\x86\x91\xa7\x0d\xdb\xfc\x9f\x0c\xd4\xfd\x9f\x5f\x1e\xdf\xfe\xf6\x8f\x7f\x3e\xbe\xfd\xeb\xf1\xcb\xfb\xeb\xf5\xc7\xf7\xef\xef\x5f\x7f\xc7\xcf\xaf\xdf\xbf\xfe\x7e\xff\xf5\x0b\xef\xf8\xf9\xd7\xf7\xf7\xf7\xbf\x7f\xfb\xe3\xfb\xeb\xfd\xf5\xed\xb7\x6f\xf7\xaf\xf2\xdf\x7f\x02\x00\x00\xff\xff\x26\x2e\x42\x12\xc5\x7b\x02\x00"); +func _ebafc ()(*asset ,error ){_eadab ,_aaff :=_acaaa ();if _aaff !=nil {return nil ,_aaff ;};_geb :=bindataFileInfo {_ee :"GB-EUC-V",_ffd :782,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491964,0)};_ffec :=&asset {_da :_eadab ,_dc :_geb };return _ffec ,nil ; +};func _adb ()([]byte ,error ){return _gb (_dcb ,"Adobe-Japan1-1")};func _dbeda ()(*asset ,error ){_afea ,_ecbg :=_cfbeg ();if _ecbg !=nil {return nil ,_ecbg ;};_ccgbf :=bindataFileInfo {_ee :"GBKp-EUC-H",_ffd :80839,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492102,0)}; +_aacc :=&asset {_da :_afea ,_dc :_ccgbf };return _aacc ,nil ;};func _eeaa ()(*asset ,error ){_fgec ,_gfgd :=_egb ();if _gfgd !=nil {return nil ,_gfgd ;};_gaab :=bindataFileInfo {_ee :"HKscs-B5-H",_ffd :21008,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492459,0)}; +_eded :=&asset {_da :_fgec ,_dc :_gaab };return _eded ,nil ;};var _bbg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x8f\x63\xb7\x11\xbc\xeb\x57\xf0\xe8\x1c\x9c\x79\xfc\x66\x03\x03\x01\xc6\x4e\x06\x19\x07\x8e\x03\x6f\x9c\x04\x08\x72\x78\x24\xfb\x2d\x04\x64\x24\x41\xa3\x0d\xb0\xff\x3e\xe8\x2a\xcd\xca\x59\xc4\x80\x4d\x4f\xa9\xd8\x2c\x36\xab\xc9\x96\x1e\x3e\xbc\x3c\xbd\x1c\x0f\x57\xf7\xf0\x97\xcb\x69\x7c\xd4\xab\xdb\x0e\xc7\x79\xd1\xb7\xd3\xe7\xcb\x50\xd7\xf5\xd3\xe1\xb8\xdb\xf9\xe0\xe6\x61\x5c\xdf\xff\xc4\x30\x5e\xd7\xf3\x6e\x67\xf3\x3f\x7e\x79\xbb\xea\xeb\xcb\x71\x3b\xb9\x48\xde\xfc\x7c\xbe\x71\x9d\x7b\xf8\x45\x3f\x1d\xde\xae\x97\x2f\xee\xbb\x1f\xe6\xa9\xeb\xef\xdc\xd4\xcd\xf0\x9f\x2f\x53\x2f\x87\xe3\x27\xf7\xdd\x8f\xeb\x79\x3d\xfa\xaf\x1f\x7c\xfc\x7c\x3e\xff\x5b\x5f\xf5\x78\x75\x1e\x98\x1e\x27\xc6\xdd\xc3\x87\x9f\xd6\xf3\x9f\xd7\x57\x75\x0f\x2d\x9e\xff\xf3\xfd\x2f\x7f\xfa\xf8\xe3\xf7\x7f\xc4\x67\xf8\xe8\x6f\x7a\x79\x3b\x9c\x8e\xce\x2f\xbf\x5f\x96\x72\xc7\xff\xfa\xe5\xac\xb7\x58\xbb\x87\x5f\x5f\x9e\x7e\xde\xb6\x37\xbd\xba\x85\x8c\x7f\xfc\xfa\xf2\xe4\xfe\xe9\x9d\x5f\x5c\xc8\x31\xa4\x7f\xdd\x88\x7f\xff\xe9\x34\xf5\x46\xda\x65\x6e\x68\x9c\xa6\xbe\x9d\xd7\xa1\x97\xf5\xf8\x49\x77\xce\x3d\x2e\xcb\xde\x39\xf7\xd8\x96\xbd\xfd\xd5\x7c\x5a\xf6\xee\x51\x9e\x9f\x3f\xe0\xef\x1f\xf8\xe9\xd3\x33\xfe\xfa\xc3\x82\x4f\x9f\x3f\xdc\x3e\x7d\x7e\xc2\xa7\xcf\xcf\x7b\xdb\xe3\x37\xb1\x77\x9e\x4b\x1e\x4f\xd7\xa9\x1b\x31\xac\xf6\xe8\xb7\xbd\xf3\x36\xe3\xb7\x1f\xed\xfc\xb2\xdc\x34\x1e\xe6\x8d\x1d\x8c\x5d\xd5\x16\xc1\x3f\x7e\x67\x3a\x21\xf6\x86\x48\xdd\xbd\x6b\x6e\x1e\xcc\x12\xa3\x41\xe4\xf9\x75\x18\x24\xc5\xa0\xde\x00\xf5\x6d\xef\x5c\x4d\x16\xcb\x0f\x42\x43\x01\x89\x41\x73\x05\xa4\xcd\xa0\x8c\x89\x1b\x63\x6d\xd5\xa0\x8a\x89\xdb\x20\x34\x00\xd9\xc4\x90\x36\x83\x42\xc6\xc4\xb6\x18\x54\x30\x31\x54\x31\x48\x00\x35\x0f\x48\xd6\xbd\x73\xcd\x5b\xf8\x20\x9c\xb8\x79\x83\x52\xd8\x3d\xb6\xc8\x0d\x45\x6c\x48\x42\x36\x88\x1b\x8a\x52\x0c\x6a\xcd\x20\x4e\x8c\xbd\xec\x9d\x5f\xbc\xe9\x8a\x9d\xd0\x04\x14\x6d\x62\x62\xac\x64\x5a\xfc\x92\x4d\x6a\xaa\x84\x2c\xbc\x5f\xc4\x56\x4c\x0c\x9f\xc4\xef\x9d\xf7\x8b\x65\x35\x31\x3c\x86\x9a\xb0\xc7\xb4\x92\x65\x43\x4d\xcd\x03\xf2\x84\xbc\x41\x42\x28\x10\x0a\x80\x20\x62\x8d\x84\xe2\xde\xd5\xbc\x44\x40\x89\x50\x02\x8b\xe1\x33\xa1\x0c\x16\x44\xac\x85\x50\x31\x28\x70\x62\x25\x54\x0d\xf2\x0c\xdf\x08\x35\x83\x22\x45\x08\x21\x01\xc4\xf0\x2b\xa1\x15\xea\x17\x40\x9d\x50\x07\x84\x4c\xac\x83\xd0\x80\xae\x04\x68\x12\x9a\x80\x1a\x20\x25\xa4\x90\x5a\x00\x31\x5f\x36\xd4\xbc\x20\x56\x67\xbe\x6c\xa8\xd9\x23\x56\x67\xbe\x6c\xa8\x39\x42\x44\x67\xbe\x6c\xa8\x39\x70\x22\xf3\xd5\x91\xaf\x88\x15\x3b\xf3\x65\x43\xcd\x99\xb1\x98\xaf\x8e\x7c\xc1\x00\xa9\x33\x5f\x9d\xf9\x82\xae\xce\x7c\x75\xe6\x0b\x99\x60\x29\x60\xa8\x39\x32\x16\xf3\xd5\x91\xaf\x44\x11\xcc\x97\x0d\x35\x2f\x14\xc1\x7c\xd9\x50\x73\xc0\x09\x75\xe6\xcb\x86\x9a\x3d\x57\x64\xbe\x6c\xa8\x99\x2e\xec\xcc\x57\x47\xbe\x92\x41\x99\xc6\xcc\x30\x79\x88\xb6\x62\xa6\x0b\x31\xb8\x88\x82\xc9\x2c\x98\x2c\x60\xa1\x90\x33\x8d\x99\xe7\x34\x16\x44\xe4\x89\xf0\x19\xf5\x18\xe1\xc2\xc2\xf0\x05\xe1\x13\xb2\x5a\x18\xbe\x98\xc9\x5d\x6a\x26\xa2\x48\x20\x14\x10\x9e\x50\x24\x64\x13\xe9\xd5\x42\x47\x17\x9d\x5f\x4b\xa1\x32\x7c\xcd\xd8\x63\xb6\x89\x35\x43\x57\xad\x38\x0e\x84\xaf\x5c\xb1\x36\xf3\x44\x41\x0a\xab\x10\xb2\xc1\xd5\x12\x00\x79\x42\x1e\x90\x07\x14\x08\x05\x40\x58\x91\xba\xaa\xd8\x09\x95\x90\x00\xad\x84\x56\xb0\x18\xbe\x13\xb2\xe3\x28\x28\x85\xc6\x7c\x35\x4b\x8e\xf7\xb8\x4d\x84\xea\x05\x37\x40\x80\x27\x84\x52\x05\xac\x80\x52\x58\xc9\x5a\xc1\x4a\xa8\xc7\x95\xac\x15\xac\x54\xed\x84\x3a\x59\x1d\xac\x8c\x14\x76\xb2\x3a\x58\x25\x9b\xae\x41\xd6\x00\xab\x36\xcb\xea\x20\x6b\x80\xd5\x92\x1d\xed\x24\x6b\x82\x25\xb8\x6a\x27\x59\xd3\x58\x61\x81\x57\x95\x2c\x35\x56\xf0\xb8\xd2\x94\x2c\x05\x2b\xe0\xb4\x37\xb2\x36\xb0\x62\x32\xf5\x1b\x59\x1b\x58\xc9\x2f\xbb\x47\xe1\x8b\x26\x0b\x58\xf0\xaa\x2c\x8d\x10\x58\xd9\xca\x5d\x6e\xaf\x22\x5e\x98\x50\xed\x1a\x12\xbe\x30\x82\x27\x20\xd4\x56\x76\x8f\x12\xc8\x0a\x60\x89\xd5\xa3\x04\xb2\x02\x58\x52\xd3\xee\x51\x78\xb9\x0b\x2e\xf7\xb8\xd8\xc5\x27\xbc\xdc\x25\x1a\x2b\x7a\xf3\x84\xf0\xda\x16\xdc\xd1\x31\xb4\x6a\x10\x59\x09\xac\x98\x4d\x3d\x6b\x48\x50\x43\x31\x55\x53\xcf\x1a\x12\x94\x42\xc4\xd5\x21\x2c\x05\x41\x29\xc4\x52\x4c\x3d\x4b\x41\x0a\x58\x35\x14\xbc\xdf\xef\xef\xee\xff\x7b\x8a\x85\x86\x97\x8a\x20\x2d\xdb\xe6\xe8\x6e\xa9\x08\x22\x76\xbd\x49\x23\xab\xd5\xb0\x77\x69\xb1\x6b\x57\x68\x3f\x81\xfd\xd2\x62\x45\x2d\xb4\x9f\xc0\x7e\xc9\x37\x9b\x48\xfb\x09\xec\x97\x82\x9d\x96\xd0\x7e\x02\xfb\xa5\x58\x2d\x2b\xb4\x9f\xc0\x7e\x29\xe1\xb4\x68\x3f\x81\xfd\x52\x2e\x16\x9e\xf6\x13\xd8\x2f\x15\x9c\x16\xed\x27\xb0\x5f\xaa\xc9\xb2\x42\xfb\x09\xec\x97\x1a\x4e\x8b\xf6\x13\xd8\x2f\x49\xb4\x33\xa5\xfd\x04\xf6\x4b\x82\xd3\xa2\xfd\x04\xf6\xcb\xde\x0a\x51\x68\x3f\x81\xfd\xb2\xc7\x69\xd1\x7e\x02\xfb\xe5\xe8\x4d\x3d\xed\x27\xb0\x5f\x8e\x76\x5a\x78\x4f\xe7\x76\xeb\x66\xa2\xdd\xd7\x4a\x47\x2a\x1c\x99\xf3\xb2\x18\xd4\x08\x61\x62\xb6\x03\x54\x3a\x52\xe1\xc8\x5c\xac\x1f\x50\x3a\x52\xe1\xc8\x5c\xed\x84\x94\x8e\x54\x38\x32\xb7\x6a\xe1\xe9\x48\x85\x23\xb3\xd8\x09\x29\x1d\xa9\x70\x64\x59\x4a\x32\x88\x2c\x38\xb2\x78\xbb\x63\x95\x8e\x54\x38\xb2\x84\x1c\x0c\x22\x0b\x8e\x2c\xd1\x9e\x62\xa5\x23\x15\x8e\x2c\x29\x99\x7a\x3a\x52\xe1\xc8\x82\x0b\x55\xe9\x48\x85\x23\x4b\x09\xa6\x9e\x8e\x54\x38\xb2\x14\xbb\xc2\x95\x96\x53\x58\xae\xa0\x59\x52\x5a\x4e\x61\xb9\xd2\xec\x26\x56\x5a\x4e\x9b\xb1\xea\xb2\x98\xfa\x46\x16\x2c\x57\x97\x62\xea\x69\x39\x85\xe5\xaa\xb7\x9e\x47\x69\x39\x85\xe5\x6a\xb0\x2b\x5c\x69\x39\x85\xe5\x6a\xb4\x16\x41\x69\x39\x5d\xd9\xcd\x24\x53\xbf\xa2\x9b\xd1\xd5\x5a\x97\x16\xcc\xbe\x4a\x17\x72\x60\x0b\xaa\x3d\x79\x42\x36\xb1\x99\x27\xb4\xa7\x48\x68\x03\xcb\x36\xd4\x33\x27\x66\x0f\x96\x00\x0a\x84\xec\x56\x2f\x38\xc7\x9e\x3b\x21\x7b\x6d\x9a\x10\x52\x42\x88\x05\x4f\xf4\xc2\x58\x25\x81\x05\x5d\x25\x13\xb2\xae\xb4\xd8\x7d\xad\xbd\x08\xa0\xba\x82\x85\x15\x2b\xc3\xb3\x81\x46\x72\x58\x43\x1c\xd8\x40\x6b\x6f\xdc\x90\x0d\x55\x3c\x36\xd4\x28\xf5\xd6\x66\xdb\x39\x76\xf4\x16\xda\xef\x6d\xb6\xf6\x41\xe8\xde\x66\x6b\x47\x9b\xad\xfd\xde\x66\x6b\xdf\xb8\xe2\xbd\xcd\x56\x54\xf0\x6d\x60\x9b\xad\x03\x6d\xb6\x8e\x7b\x9b\xad\x83\xdb\x1e\xf7\x36\x5b\x07\xa5\x8e\x7b\x9b\xad\x43\x38\x11\xed\xac\x78\x93\x3a\x56\x4e\xb4\xc1\x35\x1c\xed\x58\x39\x71\xe5\x1e\xb1\x22\x1e\x7f\x0e\xae\x59\xeb\xa2\x83\x06\xc0\x50\x25\x60\x45\xb4\xb3\x1c\x5c\xb3\xfb\x4b\x07\xda\x59\x0e\x55\x82\x07\x54\x08\x15\xb0\x18\xbe\x12\xaa\x60\x05\x40\xc8\xd7\x18\xd0\x05\x03\x8c\x41\x5d\x03\xba\x02\xa4\x0e\xea\x52\xb0\x2a\x56\x54\xb2\x94\xac\x04\xe8\xc6\x32\xf5\xb2\x60\x45\xa5\x7a\xa5\x7a\x6c\x48\xa9\xde\x06\x87\x97\x4b\x87\x52\xbd\x52\x3d\x52\xa8\x54\xaf\x1d\x2c\x88\xd0\x41\x68\x80\x45\x11\x13\x10\xbe\xcf\x30\x39\xbc\x57\x39\x54\x41\xb9\x4f\x56\x07\x06\xc7\xf0\x33\x05\x42\x01\x2c\x01\x14\x09\x45\xb0\x38\x31\x11\x32\x93\x4b\x64\xf8\x4c\x28\x1b\xeb\x06\x15\x42\x05\x2c\x0f\xa8\x12\xaa\x60\x05\x40\x8d\x50\x03\x8b\x10\xaa\x63\x16\xe8\xb2\x76\x43\x67\xa1\xae\x02\x5d\xa8\xed\x59\xa8\x8b\x5f\xd0\x0a\x56\x64\xc1\xcc\x16\xde\xbf\xa0\xe9\x6c\x64\x35\x24\x9a\xb1\x1a\xd5\x37\x24\x1a\x95\x36\x1b\xd5\x37\x24\x3a\xe6\xff\x7d\x8a\x43\xf8\xf6\x25\xd6\xd9\xb8\xb7\x86\xaf\x82\xc2\xb0\xdc\x5b\x83\x89\x70\xb1\xcc\xc6\xbd\xb5\x09\x16\x21\x25\xa4\x60\x55\x40\xa8\x8a\x29\xc9\xbe\x0a\xe2\x6e\x9e\x42\x3d\xc2\xd4\x61\x23\xac\x9d\x79\xff\xa6\xa9\xb3\x13\xba\x7f\xd3\x54\xbe\x8b\xaa\xf7\x96\x58\x15\x2d\xb1\x6a\xc1\x8a\x78\x0d\xb4\x10\x42\x97\x5c\x16\x8b\xc5\xd7\x53\x95\x17\x0b\x2e\x03\xe5\xc5\xa2\x6c\x9c\x3d\x26\x0a\x59\xf7\xc6\x59\x15\x8d\x33\x07\x36\xce\xaa\xc2\x89\xf7\xc6\x59\x15\x8d\xb3\xea\xbd\x71\x56\x45\xe3\xcc\x81\x8d\xb3\x2a\x1a\x67\xd5\x7b\xe3\xbc\x99\x8f\xed\x3f\xfc\xed\xc1\x5e\xbc\xcd\x12\xb8\xbd\xff\x20\x11\xcc\x90\x9b\x6d\x67\x7b\x7f\xc2\xad\x1d\xf8\xed\xf9\xd9\xff\xbf\xae\xe7\xdd\xd7\x1f\x7e\xc6\xe7\xcb\x45\x8f\x57\xfc\xcc\x84\xdf\x76\xdc\xd4\xed\x70\xd4\xaf\x3f\x59\x9d\x4f\x67\x9b\x85\x7f\xff\x1b\x00\x00\xff\xff\x91\x5b\x63\x45\xde\x12\x00\x00"); +var _fabc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x96\x4f\x8b\x1b\xc7\x16\xc5\xf7\xfd\x29\x6a\xe9\xb7\x79\x53\x55\xf7\x5f\x35\x34\x82\x87\x6d\x78\x13\x70\x1c\xe2\x38\x09\x84\x2c\x34\x52\x6b\x10\x64\x24\xa1\xd1\x2c\xfc\xed\xc3\x3d\x67\x6c\x12\x2f\xcc\xf5\xfc\x54\x75\xba\xf4\x53\xdd\xaa\xbe\x7b\x7b\xff\xee\xfe\x74\xbc\x95\xbb\x9f\xae\xe7\xdd\xa7\xf5\x56\x0e\xc7\xd3\xfe\xba\x3e\x9f\x5f\xae\xbb\xb5\x3c\xac\x8f\xc7\xd3\x34\xb5\x5e\xf6\xc7\xdd\xed\xeb\x9f\x28\xbb\xa7\xed\x65\x9a\x72\xfe\xa7\x2f\xcf\xb7\xf5\xe9\xfe\x74\x38\x17\xe1\xb8\xfd\xcb\xe5\x75\x6c\x29\x77\x3f\xaf\x8f\xc7\xe7\xdb\xf5\x4b\x79\xf3\xbf\xfd\xf9\x61\xfd\x4f\xd9\xaf\x87\xe4\x1f\xaf\xfb\xf5\x7a\x3c\x3d\x96\x37\x3f\x6c\x2f\xdb\x53\xfb\xf6\xc1\xa7\x97\xcb\xe5\xaf\xf5\x69\x3d\xdd\x4a\x03\x5b\x4f\x7b\xd4\xe9\xee\xed\x87\xed\xe5\xc7\xed\xd3\x5a\xee\xfe\xff\x0f\xf2\xeb\x7a\x7d\x3e\x9e\x4f\xa5\xd5\xff\xd6\xea\xf8\x00\xfc\x97\x2f\x97\xf5\x35\x62\xba\xfb\x7c\xff\xee\xe3\xe1\xf0\xbc\xde\x4a\x1f\x95\x63\x7e\xff\x7c\xff\xae\xfc\xd1\x4a\xab\xa5\x9b\x88\xfd\xf9\x3a\xf4\xb7\x0f\xe7\xfd\x5a\x38\x68\x6a\xfc\x26\xbb\xf3\x7e\x7d\xbe\x6c\x77\xeb\x75\x7b\x7a\x5c\xa7\x52\x96\xde\x7a\xdb\x94\x25\xde\xc7\xfb\x4d\x2e\xf1\xbb\x11\x53\xab\xf5\x75\xea\x71\x4f\xf4\x75\x4a\x6f\xb1\x6e\x4a\x71\x91\x69\xe9\x9d\xa8\xf7\x44\xd1\x23\x91\x6c\x81\xb4\x25\xd2\x96\x48\x89\xac\x02\xcd\x89\x6c\x07\xe4\xdb\x44\xe6\x89\xa2\x03\xc5\x9c\x28\x30\x31\x1f\xf5\x5a\x4a\x44\x4e\x14\xa9\x89\x44\x30\x6a\xd4\x44\x8a\x45\x88\x21\x6b\x06\x72\xa2\x48\x34\x5a\xc6\x2b\x97\xaa\x21\x89\xb4\x4f\x4b\x37\x22\x0b\xdf\x94\x32\x77\x9b\x96\xee\x44\x2e\x63\x53\x5a\x6d\xb9\x08\x67\xbc\x1b\x90\xe4\xa8\xe0\xa8\xc8\x4f\x5a\xb5\x5c\x57\x18\x51\x00\xcd\x19\x3f\x38\x0a\x25\x14\xab\x1f\xbd\x13\xf5\x44\xa3\x01\x09\x91\x24\x9a\x89\x94\x48\x81\x0c\xc8\x88\x6c\x53\xc2\xaa\x00\x39\x91\x63\x14\xe3\x83\x28\x30\x2a\x80\x06\xd1\x48\xd4\x39\x71\x26\x9a\x13\x35\xc6\x6f\x89\xb6\x89\x84\x8b\x78\x20\x7a\x00\x62\xfc\x8e\x68\x87\xd5\x57\xa0\x3d\xd1\x1e\x88\x5f\x7b\x25\x5a\xb1\x2e\x05\x3a\x10\x1d\x80\x46\x22\xfe\x8e\x28\x61\xd5\x81\xe8\x2b\x4b\x58\x45\x96\xd0\x57\x96\xb0\x86\x2c\xa1\xaf\x2c\x61\x82\x45\x08\x7d\x65\x09\xeb\x9c\x48\x5f\x02\x5f\xc2\x27\xd2\x57\x96\x30\x63\x16\x7d\x09\x7c\xe1\xd7\x1e\x42\x5f\x42\x5f\x5c\x17\x7d\x09\x7d\xc1\x04\x37\x39\x4a\x98\x30\x8b\xbe\x04\xbe\x94\x8b\xa0\xaf\x2c\x61\x95\x8b\xa0\xaf\x2c\x61\x68\x98\x21\xf4\x95\x25\xac\xf1\x89\xf4\x95\x25\x0c\x5b\x6e\x28\x7d\x29\x7c\xa9\x4d\x8b\x54\xec\x2f\xa9\xd9\x1d\xad\xe5\xf6\x15\xb6\xa8\xa0\x45\x5b\xcf\xa5\x0a\x5b\x54\xd0\x43\x4d\x9a\x4c\x8b\x08\x91\x00\x69\x6e\x13\x61\x77\x88\x02\x59\x6d\xd3\x22\xec\x0e\x31\xa2\xdc\x85\xc2\xee\x10\x07\xf2\x91\xf1\x6c\x05\x09\xa0\x18\x19\xcf\x7d\x2f\x03\x68\x44\xc6\xcf\x44\x33\xd0\x9c\xbd\x2d\x5b\xa2\x6d\xa2\x5e\x3d\xe3\x1f\x88\x1e\x80\x5a\xb6\x95\xec\x88\x76\x40\xdd\x32\x7e\x4f\xb4\x07\x12\xcd\xf8\x95\x68\x05\xd2\x3c\x73\xe4\x40\x74\x00\x82\x42\xa5\x2f\x85\xaf\xee\x7d\x9e\x16\xa5\x2f\x85\xaf\x1e\xd9\x1d\x4a\x5f\x0a\x5f\x7d\xb4\x98\x16\xa5\x2f\x85\xaf\x3e\xe7\x36\x51\xfa\x52\xf8\x92\x5a\x33\x9e\xbe\xd4\x88\xb2\x1f\x95\xbe\x14\xbe\xa4\xcd\x19\x4f\x5f\x0a\x5f\xd2\x47\xc6\xd3\x97\xc2\x97\x48\x1e\x0a\x4a\x5f\x0a\x5f\xa2\x91\xf1\xf4\xa5\xf0\x25\xe6\x19\x4f\x5f\x0a\x5f\xe2\x9e\xf1\xf4\xa5\xf0\x25\x61\x19\x4f\x5f\x0a\x5f\x32\x2c\xe3\xe9\x4b\xe1\x4b\xe6\xdc\x4c\x4a\x5f\x7a\x30\xd9\x14\xad\xd9\xee\x46\x5f\x06\x5f\x5a\xf3\x5c\x35\xfa\x32\xf8\xd2\x36\x74\x5a\x8c\xbe\x0c\xbe\xb4\xc7\x98\x16\xa3\x2f\x83\x2f\x95\xe8\xd3\x62\xf4\x65\xf0\xa5\xea\x3e\x2d\x46\x5f\x06\x5f\x6a\x9e\xf1\xf4\x65\xf0\xa5\x9e\x2d\x6a\xf4\x65\xf0\xa5\xa1\x19\x4f\x5f\x06\x5f\x8a\x93\xdc\xe8\xcb\xe0\x4b\x67\xc9\x78\xfa\x32\xf8\xb2\x9a\xe7\x84\xd1\x97\xc1\x97\xb5\x9e\xf1\xf4\x65\xf0\x65\xbd\x65\x3c\x7d\x19\x7c\x99\xb4\x8c\xa7\x2f\x83\x2f\xd3\x3c\xac\x8c\xbe\x0c\xfb\xcb\xac\xd6\x69\x71\xfa\xf2\x4a\x94\x07\x9f\xd3\x97\xc3\x97\xf9\x18\xd3\xe2\xf4\xe5\xf0\x65\x91\x27\xa6\xd3\x97\xc3\x97\x8d\x70\x5c\xc8\x5f\xef\xdd\xa9\x8d\xef\x6f\x62\xa7\x4d\x87\x4d\x9b\x23\x1f\x4e\x9b\x0e\x9b\x5e\x3d\x1f\x4e\x9b\x0e\x9b\xde\x2c\x1f\x4e\x9b\x0e\x9b\xde\x2d\x1f\x4e\x9b\x0e\x9b\x2e\xea\xd3\xe2\xb4\xe9\xb0\xe9\xaa\x19\x4f\x9b\x0e\x9b\x8e\x03\xcf\x69\xd3\x61\xd3\xbd\x67\x3c\x6d\x3a\x6c\x7a\xe4\x41\xec\xb4\xe9\xb0\xe9\xb8\x89\x9d\x36\x1d\x36\x7d\x6e\x19\x4f\x9b\x0e\x9b\x51\xab\x4e\x4b\xd0\x66\x54\xa2\xbc\x33\xe2\xf5\x9d\x05\x36\xa3\xe5\x1d\x1b\xb4\x19\xb0\x19\x7d\xf8\xb4\x04\x6d\x06\x6c\x86\xe4\x2d\x15\xf4\x15\xca\x0b\x35\x14\xc8\x88\x7c\x53\x46\x1f\xfa\x2f\xe7\xf9\xff\x7c\x43\xfc\xf6\xc6\xb6\x7b\xb9\x5e\xd7\xd3\x0d\xef\x87\x78\x3b\xcb\xd7\xab\xe3\x69\xfd\xf6\xae\x79\x39\x5f\x72\x16\xfe\xfd\x1d\x00\x00\xff\xff\xfd\xdd\xf7\xfd\x97\x0a\x00\x00"); +var _bdbe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x4f\x6f\x23\xb9\x11\xc5\xef\xfa\x14\x3c\x6e\x0e\x1b\xf3\x3f\x59\x80\x20\x60\x31\x93\x41\xbc\xc1\x26\xc1\x38\xff\x80\x20\x07\x76\x77\xd1\x10\x10\x4b\x82\x2c\x1f\xe6\xdb\x07\xf5\x9e\x3c\x4e\xb2\x07\x83\xd6\xaf\x1f\x4b\xc5\xe2\xeb\x22\xf5\xf0\xe9\xf1\xf3\xe3\xe9\x78\x73\x0f\x7f\xbe\x9e\xd7\x27\xbd\xb9\x79\x3c\x6d\x57\x7d\x3d\xbf\x5d\x57\x75\x8b\x3e\x1f\x4f\xbb\x5d\x88\x6e\x3b\xae\xb7\xf7\x8f\x18\xd6\x97\x71\xd9\xed\x6c\xfe\xd3\xb7\xd7\x9b\xbe\x3c\x9e\xe6\xd9\x25\xea\xb6\xb7\xcb\x5d\xeb\xdc\xc3\x57\x7d\x3e\xbe\xde\xae\xdf\xdc\x0f\x3f\x6d\xe7\x45\x7f\xe3\x36\x9d\xc6\xff\x74\xdd\xf4\x7a\x3c\x3d\xbb\x1f\x7e\x1e\x97\x71\x0a\xdf\x1f\x3c\xbd\x5d\x2e\xff\xd6\x17\x3d\xdd\x5c\x04\xd3\xd3\x86\x71\xf7\xf0\xe9\x97\x71\xf9\xe3\x78\x51\xf7\x20\xfe\xe5\xf5\xf2\xe3\xd7\x3f\x3c\xfd\xfc\xe3\xef\xf1\x10\xcf\xfe\xa6\xd7\xd7\xe3\xf9\xe4\x42\xf8\xad\xf7\xf5\x83\xff\xe5\xdb\x45\x5d\xb8\x07\xf9\xc7\x5f\x1f\x3f\xbb\x7f\x06\x17\xbc\x8b\x25\xe7\xf2\xaf\x3b\xff\xfb\x2f\xe7\x4d\x9d\xe7\xa7\xcc\x05\xac\xe7\x4d\x5f\x2f\x63\xd5\xeb\x38\x3d\xeb\xce\xb9\xbd\xf7\x07\xe7\xdc\xbe\xfb\x83\x7d\xea\x21\xfb\x83\xdb\xcb\x97\x2f\x9f\xf0\xf9\x27\x3e\xfd\xfc\x05\x9f\x7e\xe7\xf1\xf4\xcb\x27\x7b\xaa\xa7\xed\xff\xa2\xed\x02\xbf\xe4\x74\xbe\x6d\x3a\xc9\x10\x7f\x1f\xe6\xc1\x05\x9b\xf1\xdf\x8f\x76\xc1\xfb\x7b\x56\xc7\xed\xae\x8e\xa6\x6e\x6a\xea\xf7\x5c\x7a\xb0\xcf\x35\x25\x23\x9d\x64\xac\x07\x57\xa5\x1a\x59\x3a\xc8\x32\x0f\xae\x65\xcc\x5a\x49\x56\x35\x22\x46\xb6\x01\xa2\xfd\xe0\x5a\xc1\xac\xc9\x38\xb3\x1d\x5c\x6b\x98\x35\x57\x92\xd5\x88\xcd\x8a\x79\x1a\x89\xc5\x66\x75\x6f\xa4\x62\x56\x6c\x72\x70\x4d\x40\x7a\x00\x91\x71\x70\x3d\x58\xe4\x28\x9c\x35\xc3\xc1\xf5\x1c\x77\xfb\x9e\xb8\x8a\x64\xab\x90\x58\x8c\x70\x15\x49\xea\xc1\x49\xef\x46\x38\x2b\x2d\xf5\xe0\x82\x0f\x96\x50\x5a\x88\x36\xa0\x64\xf3\x32\x23\x65\x4b\x23\xf8\x62\x49\xe6\x46\x84\x92\x79\xb1\xef\xcb\x8c\x9e\x25\x1c\x5c\x08\xbe\x19\x62\x78\x0c\x2d\x63\x75\x79\x50\x65\x43\xcb\x3d\x00\x05\xa2\x80\xc2\x11\x45\xa2\x08\x84\x24\x46\x22\x4a\x56\x4c\x9f\x80\x32\x51\x86\x8a\xe1\x0b\x51\x81\x0a\x49\x8c\x4a\x54\x0d\x45\x4e\x6c\x44\xb6\x0d\x25\x30\x7c\x27\xc2\x5e\x25\x26\x21\x44\x02\xc4\xf0\x83\x68\x20\x7b\x0f\xb4\x10\x2d\x40\xa8\xc4\x58\x89\x56\xe4\x95\x81\x36\xa2\x0d\xa8\x03\x29\x91\x22\xd5\x0a\xc4\x7a\xd9\xd0\x8a\x47\xac\x85\xf5\xb2\xa1\x95\x80\x58\x0b\xeb\x65\x43\x2b\x09\x49\x2c\xac\x97\x0d\xad\x44\x4e\x64\xbd\x16\xd4\x2b\xe1\x1b\x17\xd6\xcb\x86\x56\x0a\x63\xb1\x5e\x0b\xea\x05\x03\xe4\x85\xf5\x5a\x58\x2f\xe4\xb5\xb0\x5e\x0b\xeb\x85\x4a\xd0\xff\x18\x5a\x49\x8c\xc5\x7a\x2d\xa8\x57\x66\x12\xac\x97\x0d\xad\x78\x26\xc1\x7a\xd9\xd0\x4a\xc4\x0e\x2d\xac\x97\x0d\xad\x04\x7e\x23\xeb\x65\x43\x2b\x74\xe1\xc2\x7a\x2d\xa8\x57\x36\xd4\x68\xcc\x56\xa0\x2a\x40\x05\x25\x6c\x15\xf5\xea\x40\x35\x10\xd9\xab\xe1\x51\x89\x56\x23\x11\xea\xd5\x89\x12\x51\x32\x55\xf6\x40\x99\x08\xf5\x12\xa2\x42\x54\xa0\x8a\x40\x95\x08\xc5\x11\xa2\x4e\xd4\xa1\xca\x40\x42\x84\x4a\x08\xf3\x5a\x88\x16\xa8\x12\xd0\x4a\x84\x05\x09\xf3\x52\x22\x85\xaa\x01\x71\x8d\xcd\x36\xad\x7a\xdb\xb4\xd6\xa8\xb2\xa1\x27\x98\xbc\xf1\x7d\x6c\x3d\x41\x85\x58\x9d\x0b\xb2\xa1\x7b\xd6\xab\x73\x41\xdd\x2c\x57\x03\x26\x0a\x27\xda\xd0\x2a\xd6\x23\xac\xa0\x0d\xad\xe2\xfb\x84\x05\xb4\xa1\x55\x01\x61\xfd\x44\x30\x0b\x6b\x96\x41\x64\x6b\xae\x48\x40\xb8\x64\xb1\x9d\xae\x78\xcb\x3a\x7b\x44\xb7\x06\x18\x02\xfa\x94\x70\x5b\x05\xcd\x25\xc2\x6e\xc2\xc5\x08\x54\x11\x6f\xd9\xa0\x6a\x40\x95\xf1\xaa\x0f\xaa\x06\x54\xb9\xd9\x86\x2d\x54\x2d\x50\xb1\xee\x0b\x55\x0b\x54\xb5\x58\x5e\x2b\x55\x2b\x54\xad\x5b\x15\x56\xaa\x56\xa8\x7a\x36\x53\x6e\x54\x6d\x50\x09\xda\xf7\x46\xd5\x66\xaa\xe8\xf1\x1a\x28\x55\x6a\xaa\x18\xd0\x2d\x95\x2a\x85\x2a\xe2\xf5\x9c\x54\x4d\xa8\x12\xb6\x75\x52\x35\xa1\xca\xc1\xef\xf6\xc2\x73\x4f\x3c\x54\x78\x0d\xc4\x77\x22\xa8\x60\x11\xb9\x9f\x9d\x38\xaf\x62\xb3\xcd\x17\x1e\x58\x82\x63\x25\xb6\x5e\x77\x7b\x89\x54\x45\xa8\xc4\x5e\x75\x89\x54\x45\xa8\xa4\xe5\xdd\x5e\x78\x6a\x08\x4e\x8d\xe4\xad\xa7\x0a\x8f\x0d\x49\xa6\x4a\xc1\x0c\x21\x3c\x11\x04\xed\x3f\xc5\xde\x0c\x51\x95\xa1\x4a\xc5\xe3\x9c\x7e\x3f\x5f\x77\xed\x57\x27\xae\x14\xc6\x28\x88\x91\x9b\xad\xad\x30\x46\x41\x0c\xf4\x2c\xa9\x54\x55\xa8\x6a\xb5\xb5\x55\xaa\x2a\x54\xcd\x1a\x94\xb0\x11\x08\xec\x9f\x7a\xb1\xb5\xd1\xfe\xd2\xa0\x12\x6b\x9c\xd2\xa9\xea\x2d\x1e\x5c\xf6\xd6\xd0\x85\xee\x13\xb8\x2f\x7b\x7b\xc5\x85\xee\x13\xb8\x2f\x87\x6e\x13\xe9\x3e\x81\xfb\x72\xb4\xcd\x12\xba\x4f\xe0\xbe\x9c\x9a\x15\x85\xee\x13\xb8\x2f\x67\x6c\x16\xdd\x27\x70\x5f\x2e\xd5\xc2\xd3\x7d\x02\xf7\xe5\x8a\xcd\xa2\xfb\x04\xee\xcb\x2d\xdb\xb2\xe9\x3e\x81\xfb\x72\xc7\x66\xd1\x7d\x02\xf7\x65\x49\xb6\x6c\xba\x4f\xe0\xbe\x2c\xd8\x2c\xba\x4f\xe0\xbe\x12\xec\x35\x14\xba\x4f\xe0\xbe\x12\xb0\x59\x74\x9f\xc0\x7d\x25\x05\xcb\x9e\xee\x13\xb8\xaf\x24\xdb\x0e\x9c\xd4\xdb\xb4\x1d\xae\xbb\xbd\xd2\x8b\x0a\x2f\x96\xe2\xbd\xa1\x4e\x84\x39\xc5\x36\x47\xe9\x45\x85\x17\x4b\xb5\xce\xaa\xf4\xa2\xc2\x8b\xa5\xd9\xe6\x28\xbd\xa8\xf0\x62\xe9\xcd\xc2\xd3\x8b\x0a\x2f\x16\xb1\xcd\x51\x7a\x51\xe1\xc5\xea\x6b\x36\x44\x15\xbc\x58\x83\x9d\x1e\x4a\x2f\x2a\xbc\x58\x63\x89\x86\xa8\x82\x17\x6b\xb2\xf3\x5d\xe9\x36\x85\xdb\x6a\xb6\xf6\xae\x74\x9b\xc2\x6d\x15\x37\x0a\xa5\xdb\x14\x6e\xab\x35\x5a\xf6\x74\x9b\xc2\x6d\xb5\xda\xed\x44\xe9\x36\x85\xdb\x2a\xae\x5f\x4a\xb7\x29\xdc\x56\xbb\xdd\x74\x94\x6e\xd3\x6e\xaa\xe6\xbd\x65\xdf\xa9\x82\xdb\x9a\xaf\x96\x3d\xdd\xa6\x70\x5b\x0b\x76\x7a\x28\xdd\xa6\x70\x5b\x8b\xd6\xa5\x95\x6e\x53\xb8\xad\x25\xbb\x77\x28\xdd\xa6\x83\x57\x24\x3b\x3d\x74\xe0\x8a\xa4\xc3\xee\x43\x3d\x9a\x73\x95\xa6\xd1\x8d\xe7\x82\x35\x23\xa5\x69\x74\xb3\x8b\x41\xcf\xd6\x8c\x74\xc3\xc5\x80\x43\x10\x49\x40\x05\xc8\x92\xe8\xd9\x5a\x83\xd2\x5a\x0a\x6b\xf5\x62\x1d\x51\x69\x2d\x55\x35\x55\xf5\x16\x5e\x75\x02\x4d\x9c\x7d\x58\x90\x4e\x21\xc2\xc5\x20\x80\x0c\x12\x9b\xe7\x7d\xd9\xed\x27\x97\x38\x47\x96\xf7\x79\x73\xe4\x01\x54\x70\x85\x69\x50\x95\x4c\x94\xef\xa1\xe6\x28\x85\xa4\x7d\x84\xb2\xab\xf3\x7d\x68\x35\x74\x20\x21\xc2\xe9\x64\xbd\x75\x8e\x72\x8f\x3e\xde\x0f\xc3\x39\xca\x42\xb4\xdc\x0f\xac\x39\xca\x0a\xf2\x51\xbf\xc9\xc2\xcf\xb1\x4e\x43\x76\xbb\x9b\x63\x23\xb2\x81\xf5\x9b\x63\x0b\x40\x1f\xf5\x9b\x6c\x06\x73\x61\xfd\x90\x16\x9b\xc1\x44\x33\xe8\xc5\x6e\xc3\x93\xcd\x60\xae\xd9\x6e\x05\xcd\xd7\xff\xe9\xa3\xf6\xbf\xfd\x5e\xfc\xfe\xfb\x6d\x7d\xbb\x5e\xf5\x74\xc3\xaf\x45\xfc\x42\xb3\x5f\x5d\xc7\x93\x7e\xff\xe5\x79\x39\x5f\x6c\x16\xfe\xfe\x13\x00\x00\xff\xff\xa9\x31\x44\x80\xa5\x0e\x00\x00"); +var _bdfa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\xcd\xae\x3f\xcb\x92\xa6\x09\xcd\xcf\x55\xec\x21\x0c\x9a\x0c\x0f\xff\x96\x4a\x25\xd1\xd5\xaa\x56\x0d\x1a\x10\x45\x03\x12\x42\xad\x08\x0f\xf7\x22\x25\xf2\x64\xea\x64\xd6\xa0\xee\x1e\xed\xf5\x3c\xb6\x61\xa3\xd6\xf9\x8f\x96\x7c\xc5\x2f\x3c\xfc\xd3\xdc\x5e\xb3\xd7\xcc\xff\xe1\x3f\xfc\xa7\xff\xe1\x3f\xfd\xf5\x1f\xff\xed\xb7\x7f\xf8\x3f\xfd\xed\x9f\xd7\x7f\xde\xff\xf6\xdb\xf9\xc7\xbf\x7e\x7f\xdb\xff\xfa\xcf\xff\xf5\x6f\x6b\xff\xf6\xee\xff\xf2\x8f\x7f\xfd\xcb\x5f\xd2\xfd\xdb\xf7\x8f\xeb\xdf\xa2\xf8\xf3\x67\xfd\xd3\xf3\x2f\x7f\xf9\xcb\xef\xef\xff\xe7\xff\xf6\xaf\xff\xb6\xff\xe9\x3f\xfd\xf5\xfc\xf3\x6f\x99\xdf\x7d\xff\xf5\x5f\xfc\xed\x6f\xbf\xfd\xc3\xff\x79\xff\x97\x7f\xfc\xd7\x7f\xfb\xdb\x7f\xfb\xed\x7f\xf3\xbf\xff\xfe\xf9\xdd\xff\xdb\xdf\xbe\x7d\x7e\xff\xff\xff\xf1\x6f\xdf\xfe\xdb\x3f\xfe\xf5\xbf\xf8\xff\xff\xe5\x7f\xfc\xef\xd3\xff\xf2\x3f\xff\x87\xff\x7c\xff\xf1\x83\xff\xfc\x5f\xff\xe5\x5f\xfe\xdf\xfb\x9f\xf6\x5f\xff\xed\xb7\xfa\xf3\xbf\xfd\xd7\xef\xe7\xef\x5f\xfe\xe1\x3f\xfc\x4f\xcf\xbf\xfc\x1f\x9e\x7f\xda\xbf\xfd\xc3\xcf\xbb\xff\xdd\xff\xf8\xdf\xa7\xff\xee\xf7\x77\x7f\x1e\xff\x3c\xfd\xbf\xee\xbf\xfd\xeb\x3f\xfe\xf3\x5f\x7f\x1b\xff\xbb\xeb\x2a\xff\xdf\x7f\xff\x5f\xfe\xdb\xbf\xec\xdf\x6e\x6b\xf9\xbf\xff\xcf\xff\xe9\x7f\xf8\xed\xff\x91\x7e\x4b\xd7\x6f\x77\xcd\xb9\xfe\x96\xee\x74\xff\x3f\x7d\xf8\x7f\xfb\x9f\xfe\xf9\xdb\xbf\x5d\x94\x12\xdd\x59\xff\xfc\xed\x7f\xfd\x97\x67\xed\xbf\x3d\x7f\xfd\x2f\xfb\x2f\xbf\xfd\xf6\xef\xae\xeb\xba\xfe\xfd\x6f\xff\xee\x3f\xfe\xc7\xff\xf8\x1f\xff\xfd\xef\xed\xfb\xff\xfb\xc5\x5f\xd2\x75\xf1\xea\x7b\xd6\xff\xeb\xf9\xdb\x5f\x7c\xe1\xb7\x7f\x77\xce\xf9\xfe\xfd\xef\xc5\x96\xff\xfd\x4f\x3d\x6f\xa7\x58\x7e\x8a\xf7\x9a\x14\xab\x45\x9f\x36\x7e\xfc\x0c\x8a\xfd\xf7\x62\xbe\xae\x4c\x71\x58\xac\x14\xe7\xef\xc5\xfb\x4a\x85\xe2\xc3\x77\xeb\xa6\xf8\xfa\xb4\x51\x5c\x3f\xc5\x7b\x9f\x9f\x62\x3f\xb6\x2a\xfd\x14\xc7\x45\xf1\xa3\x19\x23\x51\x3c\x16\x6f\xde\xcd\x54\x35\x2a\xc5\xe4\xbb\x8d\xe2\x45\xcd\xa3\x53\xbc\x1f\x8a\xc3\x22\xfd\x1d\xd3\x1f\xd3\xc1\xf1\x58\xb3\x1f\x7a\xad\xd9\x77\x6d\xf3\x43\x7f\xc7\x67\x55\x16\xb7\xc5\x8b\xe2\x4f\x8f\xee\x9c\xee\x9f\xe2\xbc\x78\x3a\xf9\xee\x4c\xfe\xf8\xa5\x68\x8f\x6e\xc6\x6a\x66\x8a\x8d\x1e\xcd\x42\xb1\x2c\x8a\xf6\xb7\xd0\xe6\x69\x7f\x33\xf3\x3b\xed\x6f\xb2\x68\x7f\x1b\xad\x9a\xb6\x39\xf9\x21\xdb\x9c\xe9\xc2\x3c\x16\x99\xc1\x87\x36\xb7\x42\x17\x9e\x64\x91\xaa\x9e\xdb\x29\xb3\x48\xab\x92\x6b\xe3\x69\xcc\xfe\x65\x55\xdd\x85\x64\x91\x71\xbe\xb2\xef\xbe\x3e\x65\xd8\x1f\xc6\x39\xb9\x54\x1e\xda\xdc\x2e\x8b\xdb\x22\x6d\x7e\x68\x73\x5d\x8c\xe4\x7b\x59\x64\xf6\xdf\x64\x91\xfe\xbe\xb7\x45\x3e\xf4\x66\x8b\xd4\xfc\x32\xce\xf5\x61\xd8\xdf\x6a\x91\x46\xbe\x8c\x73\x7d\xe9\xe0\xdb\x2d\x32\x38\xef\xb0\x47\x36\x83\x75\x95\xa6\x4f\xed\xd1\xf4\xdd\x8f\x8d\x93\x7e\x8a\xe9\x9a\x8c\xd5\xfe\xe9\x51\x62\x87\x9e\xb3\x7f\x9e\xfe\x3e\xaf\x8c\xe4\xa2\xb8\xdd\x74\x37\xc5\x63\xf1\xa7\xcd\x77\xb9\xfd\xb1\x45\xab\x4a\x3f\xa3\x71\x57\x26\x65\x67\x9e\x56\xba\x70\xdd\x3f\xdd\xff\x7d\x89\xfc\x3e\x0b\xc5\x77\xdd\x74\xa5\x52\x9c\x3f\x5d\xb8\x92\x4f\x59\x48\xd7\xb5\x2d\x6e\x9e\x32\xce\xf7\x74\x3b\xef\x9f\xa1\xbb\x59\x48\x57\xa2\xbf\xf7\xe3\x76\xde\x93\xe2\xed\xd3\x97\xa2\x02\x6a\x0f\x8a\x08\xa8\x74\xfb\xb4\xfa\xf4\xa3\x88\x80\x4a\x9f\x1f\x72\x99\x6d\xc6\xea\x19\x3c\x2d\xfe\x78\x2a\x46\x6c\xc6\xe3\xbb\x8c\x64\x2c\xc2\x63\xd1\xfe\x36\xbf\x6b\x7f\xcf\x43\xd1\xfe\x7e\x85\xa2\xfd\x3d\xf4\xe8\xb5\xbf\x1f\x03\xcb\x22\xbc\xd2\x47\x8f\x5e\xfb\xfb\x51\x15\x8b\xf0\x4a\x1f\x6d\x66\x11\x5e\xd7\xb1\x18\xfd\xf5\xc7\xf4\xf7\xfe\x7d\x52\xf6\x5f\x3f\xa5\xfc\xff\x8a\xd8\xbf\x59\x9f\x69\x67\xa6\xfe\x8d\xa1\xa0\xc1\xac\xcf\x2b\x15\x9b\xe4\x50\x44\xfb\x19\x0a\xe5\xcf\xbd\x7f\xda\xbf\xfb\xfa\x19\xc6\x3c\xfe\xb4\x12\xf2\xf8\xd3\x4a\xc8\xe3\x4f\x2b\x21\x8f\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\x3c\xff\xb4\x12\xf2\xfc\xd3\x4a\xc8\xf3\x4f\x2b\x21\xcf\x3f\xad\x84\xfc\xfc\x69\x25\xe4\xe7\x4f\x2b\x21\x3f\x7f\x5a\x09\xf9\xf9\xd3\x4a\xc8\xcf\x9f\x56\x42\x7e\xfe\xb4\x12\xf2\xf3\xff\xb3\x12\x7e\x2f\xfe\x69\xba\xf3\xf3\xa7\xe9\xce\xcf\x9f\xa6\x3b\x3f\x7f\x9a\xee\xfc\xfc\x69\xba\x33\x2b\xbf\xd6\xe2\x87\x7e\xfa\x3b\x5b\xd4\xfc\xd3\xdf\xda\x17\x43\xc7\xca\x6f\xf9\xa6\x66\x56\x7e\x2d\xce\x3e\x2b\xbf\xd6\x8b\x0f\xb1\xf2\x6b\x59\xcc\x11\x2b\xbf\xb7\xc9\x77\x59\xf9\xbd\x71\xcc\x65\x56\xfe\xa8\xd9\xe2\x4f\x7f\x7b\xdf\xd6\xfc\xd3\xdf\x71\x77\x8b\x3f\xfd\xed\x63\x30\xbf\x2c\xef\x7e\x67\x6b\x7e\xe8\xc2\xb4\x91\x3f\xfd\x9d\x3d\x7e\xfc\xd3\xdf\xb6\xa2\x0b\x3f\xfd\xad\xef\xb0\xcd\x3f\xfd\x2d\xc7\xe9\x7e\xed\xaf\x3d\x5a\x3f\xfd\x6d\x6d\x76\x8a\xf4\x77\xbd\x54\xb5\x7e\xfa\x3b\x62\xa9\xac\x9f\xfe\xb6\xe1\x2c\xac\xc2\xd3\x87\x2e\xac\x4a\x55\x08\xf6\xbc\xe8\x6f\x73\x24\xd7\x4f\x7f\x6b\x4c\xd9\xfa\xe9\x6f\xab\x95\x75\xb5\xe8\x6f\x7a\x18\xab\xf5\xd3\xdf\x7e\x0e\xdd\x5f\x3f\xfd\x1d\x63\xb0\x18\x16\xf3\x7b\xbd\x7e\x88\xfe\xce\x56\x29\xfe\xf4\xb7\xa5\x65\x9b\xe9\xef\xe1\xd4\xcb\xdf\xc5\xb0\x3f\x0c\xdd\x97\x18\x0d\xa7\xec\xfb\xe9\x6f\xbb\x2b\x35\x7f\x3f\xfd\xad\xd9\x1d\xfa\x15\x66\xff\x66\xac\xbe\x9f\xfe\xf6\x97\x63\x3d\x7f\x8d\x0e\xba\xcb\xbe\x9f\xfe\xf6\x8a\xc2\x90\xbf\x9f\xfe\xd6\xef\x58\x9c\x7c\xc8\x4d\xf7\xfd\xf4\x77\x7c\xcb\x77\x9d\xdf\x6e\xcd\xcc\xef\x3d\xe8\xd1\xf7\x31\xec\x89\x91\xfc\x5c\xcf\xd5\x46\x1e\xde\xcd\xcc\xd1\xbe\x18\xc9\x46\x8f\x90\x84\xfd\x8e\xa7\x37\x73\xd4\x79\x77\x33\xbf\x1d\xdd\x23\x6f\xd7\xb3\x4b\x74\x33\xbf\xa5\xd0\xaa\xdd\x58\x57\x9d\xbd\xb0\x59\xcf\x1f\xca\x64\xde\xc3\x0e\x32\xb0\x9b\xf9\x7d\x52\xff\x85\xd8\xcf\xfb\x61\x61\xb8\xa7\xf6\xcf\x50\xf4\x98\x82\xcd\x50\x94\xdb\x6a\x3f\xbe\xd2\x99\xdc\xbd\x99\xdc\x78\xca\x50\x8c\x41\x55\x87\xa5\xde\x3b\xbd\x3b\x0e\x85\x8b\xf9\x38\xf5\x8d\xce\x1e\x86\xe2\x5e\x54\x75\x0a\x9d\x45\xb1\xcc\x87\xa9\x2f\x68\x38\xf9\x30\xf5\x59\x81\x73\x58\xea\xbf\xeb\x14\x3f\x45\xb6\xf6\x76\x41\x9e\x9f\xa1\x98\xbf\x2b\x98\x3f\xc5\x9f\xfe\xd6\x7d\xfb\xe3\x97\x2d\x36\x7c\x4a\x7f\xe7\xb4\x19\x4c\x7d\x1a\x8c\xf9\xd9\xd4\xfc\xd9\x41\x96\xfa\xe0\x14\x28\xe0\xa6\x3e\x56\xa5\xf8\xd3\xdf\xd1\xc6\xa2\xf8\xd3\xdf\x59\x11\xbf\xe5\x62\xa9\x5f\x88\x94\x72\xb1\xb5\xd7\x5d\x28\x22\xca\xee\x6f\x53\x6c\xac\xc0\x28\xd2\xdf\x7c\xf9\xa1\x9f\xfe\x8e\x99\x6c\xc6\x64\x34\x9a\x4f\x59\xea\x75\x58\x33\x4b\xbd\x21\x16\xca\xb5\x18\xe7\xcf\x66\xb0\xb5\xc7\x6d\x23\x7f\xfa\x3b\x67\xb7\x78\x10\x74\x93\x1f\x27\xe6\xf7\x06\x82\x95\xc4\xd6\x16\xec\x94\xc4\xfc\xb6\x97\xef\xa6\x4c\x07\x3b\xdf\x4d\x3f\xfd\x9d\xcb\xee\x27\xe6\xf7\x66\x6b\x97\xd4\x58\x39\xed\x50\x64\x6b\x8f\xe9\x87\x58\xea\x8a\xa3\x92\xe8\x6f\x76\x60\x13\xf3\x9b\x53\xa7\x88\x28\x3b\x63\x50\x5c\x8c\x24\xcb\xac\x24\xe6\xf7\x4b\x36\x83\xfe\x96\xc7\xaa\xe8\xef\x75\xf1\xf4\x66\x7e\xef\x45\x55\x37\xa2\x7b\x5e\x7c\xe8\xa6\xbf\xd7\x7e\x29\x72\x54\x25\x84\x46\xb9\x99\xdf\xf1\xf8\xb4\xf2\x6e\x65\x70\x6e\xe6\x57\x6c\xfb\xbb\xbc\xfb\xe9\x3e\xdb\xaa\xdc\xac\xe7\xf7\xf6\xbb\xf4\xf7\xbb\xad\x19\xd1\xbd\x8f\xcd\x60\xff\xd6\xdb\x36\x7b\x54\x1d\x26\xe5\xa6\xbf\xbb\x31\xce\x37\xfb\xf7\x1c\x6b\x66\xff\x5e\x1c\xa0\x25\xff\xf4\x77\x1e\x10\x4a\xc9\xcc\xef\x8b\x08\x2d\x99\xf5\x1c\x1d\xcc\xf4\xf7\x4d\x3e\x45\x74\x9f\x6e\x55\xcc\xef\x00\xaf\x95\x4c\x7f\x0b\x4a\x4e\xc9\x88\xb2\x0a\x20\x2d\x79\xf8\x21\xda\x9c\xa7\x45\x3f\xf4\x58\xf4\xdd\x97\xed\x8c\x6e\x59\x32\x47\xd5\x1e\x7e\xe8\x63\x34\x5c\xed\x40\xa1\x59\xb7\x1f\x3a\x9e\x89\x14\x0b\xaa\xc8\xb9\x1e\x8a\xcc\xef\x71\x3b\x03\x94\xc6\x99\xcc\x11\x40\xa9\x8e\xc5\x77\x0b\xf3\x9b\x16\x6b\xb2\x54\x46\xb2\xfb\xe3\xc6\xa6\xab\x8c\x64\xe9\x1c\x19\x8f\xdf\x65\xff\x9e\x97\x46\x16\x44\xf7\x01\xcc\x96\xe2\x51\xe5\x62\x28\xc8\xab\xbb\xf8\x5d\xf7\xef\xeb\x87\xd8\xbf\xbf\x9f\x7e\x7f\x5f\xec\x97\xb2\xdd\x35\x88\x94\x8a\xb0\x3a\xae\xcf\xca\xe4\x5e\x68\xbf\xa5\xaa\x87\xb8\xd4\xab\x93\xdb\x18\xa8\x8a\xb0\x4a\x28\x4b\x05\xcc\x38\x46\xb3\x48\x67\x97\xf3\x55\x99\xdc\x34\xfc\x90\xc2\xea\xb6\xc8\x62\x6e\xb7\x35\xbf\x7e\x88\xbe\x57\x16\x73\x55\xa2\x56\x0e\xa3\xa3\xf8\xad\xe8\x21\x7b\xfb\x5d\x85\xd5\x4b\x07\xc1\xaa\xad\x70\xfa\x94\xc6\xe4\xa6\xce\xe4\x36\xf4\xcc\x84\x69\xa2\xb4\x38\x97\x59\xcc\x98\xbc\xca\x76\xa9\x63\xf2\xea\x73\x59\x6c\x0a\x49\x5a\x85\xc9\xab\x5f\xe8\x3f\x05\x93\x57\xaf\xae\x22\x4c\x5e\x75\xa3\x69\x14\x4c\x5e\xfd\x77\x05\xf3\xa7\x88\xb0\xca\xdb\x66\x78\xf8\xba\x4e\x9a\x87\xaf\x1d\x6c\x0a\xab\xd7\x9a\x59\xcc\x6b\x33\x1a\xfd\x72\x7e\x19\xc9\x4e\x7f\x6f\x94\xf0\xd2\x11\x56\x05\x93\x57\xe9\x99\xaa\x5c\xbd\x1d\x3d\xe4\x9d\x74\xbf\x57\xd6\xd8\xed\x8f\x39\x7c\x37\x98\xab\x74\xf5\x6a\x6c\x6b\xa5\xb3\x98\x35\xc5\x94\x3e\x3d\x40\x6d\x06\x9b\x77\x7b\xcc\x75\x16\xf3\x5a\x3e\xfd\xe9\xef\x7c\xba\x8d\xa4\xbf\xb9\xd2\xc1\x1e\x2b\x96\x71\xc6\x00\x58\x0b\xaa\x72\xc1\x00\x38\x86\xa7\x1e\xb6\x88\xda\x1d\x49\x0c\x80\x65\x2b\xc9\x47\x56\x68\xf0\xa1\x51\x10\x29\xf1\x2e\xf3\xbb\xc0\x2f\x05\xf3\xe0\x14\x54\x16\xcc\x83\x4d\xb3\x64\xc1\x3c\xd8\xca\xb6\xc8\xe6\xcd\x89\x46\x62\x1e\x1c\x21\x25\x30\x0f\xb6\x5e\x6d\x95\x7a\xa6\xbb\x6c\x78\x18\xdd\xcc\x02\xb8\xb8\x77\x17\x3f\xb8\x78\x6c\xc5\x3e\xb8\x78\x26\x0c\x53\x65\x2a\xac\x9a\x4f\x11\x56\x19\x6d\xb0\x80\x8b\x47\xf5\x58\x07\x17\xcf\x99\x68\x06\xb8\xb8\x66\x67\x1f\x5c\x3c\xda\x64\x34\xc0\xc5\xed\x75\xc3\x4e\x0f\x5f\x45\x28\xb8\xb8\xc5\xe0\x80\x8b\x7b\xc8\x3d\x70\xf1\xb8\x97\x3f\x5e\x2e\x15\x9b\xf1\x31\x29\x1f\xb3\x00\x2e\x6e\xcb\x33\x02\x5c\x3c\xb4\xcb\x95\xc7\xfd\x6b\x55\xe0\xe2\xbe\x3c\x14\xc0\xc5\x6d\x1e\x9f\xb2\x7f\x43\xc9\x01\x17\x8f\x5c\x2c\xda\x5f\x3b\x08\x2e\xee\x2f\xc8\xa8\x80\x8b\xcb\xb1\x19\xe0\xe2\x9a\x94\x39\xe0\xe2\xf6\x15\x46\x03\x5c\x5c\x17\x06\xcf\x02\x2e\x1e\xbb\xd9\x0c\xe6\x37\x2b\xa0\x1e\x85\xb3\x72\x03\x5c\x3c\xb2\x82\x1d\x5c\x3c\xb2\xfb\xe8\x55\x79\xc6\xc4\x57\xc0\xc5\x7d\xa8\x4d\xbd\xee\x5f\x4f\x4c\x70\x71\x7d\xbf\xf3\x2b\xb1\x0f\x64\xae\xcb\xad\x0d\x64\xae\x1f\x18\xb9\x00\x99\xc7\xbb\xe9\x3b\x90\xb9\xdd\xcb\x26\x31\xf5\xfd\xf8\x2e\x5b\x7b\x75\x36\x20\x90\xb9\xfd\xae\x05\xff\x14\x59\xea\xbf\x23\xe9\x9f\x22\x53\xdf\x9d\x02\x20\xf3\x9c\x2e\x2a\x20\xf3\x58\xea\x6c\x40\xe6\x7e\x30\x8c\x17\x20\xf3\x2c\x58\x57\x0a\x90\xb9\x6c\x27\x08\xc8\x3c\x9b\x8b\x19\xc8\x3c\x07\x30\xb0\x00\x99\x5b\xc3\x16\x5a\x80\xcc\x3d\xbb\x79\x81\xcc\xb5\x67\x1a\x29\x64\x5e\x6a\x83\x40\xe6\xba\xc1\x6e\x05\xc8\x3c\xab\x6b\x1b\xc8\x5c\x63\xa9\x0b\x99\xaf\xc7\x66\xa0\x87\xe4\x61\x9b\x11\x65\xd5\xd3\x16\xc8\xdc\x6b\x61\x72\x81\xcc\xb5\xba\x2f\x80\xcc\xf5\x72\xb7\x02\x99\xc7\x37\xf8\x71\x40\x66\xf5\xf9\x4f\xd1\x0d\xf6\x29\x40\xe6\xd6\xed\x02\x90\xb9\xb6\x4c\x33\x80\xcc\xed\x34\x7f\xdc\x9d\x7d\x9f\xd2\xdf\x92\xfd\x10\xa2\xec\x9a\x3e\x45\x94\x1d\x55\xc7\x4f\x3d\x44\x15\xfd\x8b\xa3\xca\x56\x29\xba\x1f\xb6\xb6\x90\xf9\x74\xa6\xfb\xd3\x44\xa0\x4e\x0e\x64\x9e\x97\xeb\x0a\xc8\x3c\x12\x58\xaf\x6c\xf5\x2e\x8f\x66\x20\x73\x5d\xc9\x77\x9d\x5f\x95\x0d\x20\x73\xd5\x8e\x51\x80\xcc\x6d\x61\x99\x29\x40\xe6\xd9\xd4\x01\x80\xcc\xe3\x1b\xfe\x78\x7a\x82\xb0\x54\xc4\xc5\x45\xd0\x21\x2e\x9e\xc7\x66\x30\xbf\x1d\x63\x4b\x11\x17\x3f\xd5\x0f\x21\xca\x6e\xd7\xe4\xf6\xa8\xf2\xbb\xe0\xe2\xb2\xab\x45\xb6\xf6\x73\x31\x38\x27\x70\x04\x55\x89\x8b\x8f\xd3\x0d\x2e\x1e\x2f\x06\xc0\x02\x2e\x6e\xb7\x8b\xf0\x78\x54\xe1\xac\x29\xe0\xe2\xf9\xb8\xcb\xc4\xc5\x73\x5b\x15\xaa\x48\xf1\x10\x04\x17\xf7\xea\x2c\x88\x8b\xb3\x7a\xf5\x71\x3d\xab\x02\x81\x8b\xdb\xc2\x49\x54\x8e\x38\xe2\xb3\x19\xf4\xf7\xa0\x21\x54\x70\xf1\x7c\x30\x5c\x54\x71\xb1\x8e\x8f\x2a\x2e\x3e\x74\xa1\x82\x8b\x8b\x6b\xa3\x5e\xca\x2b\x76\x68\x15\x17\x7f\xad\x50\x44\x74\xab\xa2\x57\x70\x71\xab\x8f\x45\xfa\x7b\xbd\x1f\x45\xfa\x9b\x8a\x4f\xd9\xbf\x09\x14\x59\xc1\xc5\xa3\x35\x5b\x45\x7f\x3f\x34\xde\x2a\x2e\x7e\x1f\xbb\xe0\xfc\x46\xcd\xe0\xa6\xc4\xca\xa9\xe0\xe2\x5e\x3b\x8d\x04\x17\x8f\x7d\xf9\x14\x13\xd0\x83\x70\xab\xe0\xe2\xa6\x6d\xbc\x26\x55\x2f\x60\x72\x05\x17\x97\xcd\x29\x5f\xc1\xc5\x7d\x83\xd7\xaa\xb8\xb8\xff\x2e\x19\xfe\xae\xd8\xaf\x40\xe6\xb2\x93\x5f\x51\x2b\xe3\x10\xaf\x42\x66\x3d\x80\x15\xc8\x5c\x13\x9a\x55\x05\x32\xb7\xa7\xfb\xae\xa7\xd8\x63\x1b\x98\x7a\x01\x57\x05\x32\xcf\x8a\x17\xaf\x02\x99\x67\xe3\x10\xaf\x40\xe6\xb6\x51\x87\xea\xad\xe8\x76\x36\x81\xcc\x6d\xa2\xb2\x56\x20\x73\x1f\x78\x0f\xab\x90\x59\xcf\x72\xbd\xb5\xee\xe2\xf0\xad\x42\xe6\x92\xfc\xb1\x26\x11\xb4\xb2\x2a\x64\x9e\xd1\x2a\xb6\x76\x46\xc2\x54\x20\x73\xfd\xb0\x81\x54\x20\x73\x7f\x5c\x90\x40\xe6\x36\xb3\x4f\xb5\xee\x3a\x7d\x40\xe6\x71\x67\xe6\x0b\xc8\x5c\x2b\x50\xa8\x66\x8f\x2a\xc4\x6f\x05\x32\xf7\x8a\xfd\xb6\x0a\x99\x1f\x4c\xc1\x55\xc8\xbc\x9b\x3f\xa6\xbf\x1b\xcd\xb9\x02\x99\x67\xc5\x44\x50\xb3\x26\x2f\xb7\x58\x0e\xd1\x6d\x33\x14\xdd\xf1\xae\xfd\x05\x74\x54\x20\xf3\xac\x28\xe1\x55\xc8\xdc\x87\xdf\xa5\xbf\x0d\xbb\x62\x05\x32\xb7\x99\xfd\xae\x4b\xdd\xe9\x16\x32\x57\xb7\x09\x90\xb9\x7d\x78\x49\x2a\x90\xb9\xef\x87\x77\x81\xcc\x63\xa0\xdf\x56\x20\x73\xbb\xb3\x3f\xae\xae\x6d\x06\x16\xc8\xdc\x2b\xe8\xa6\x02\x99\x87\x5e\x83\x5a\xb4\xde\xbb\x90\x80\xcc\xb3\x61\xd5\xa9\x42\xe6\xc3\x99\x58\x85\xcc\xfa\x32\x2a\x90\xb9\x97\x63\x9b\xd1\xba\x5f\x14\xcb\x0a\x2e\x6e\xaf\x6b\xb2\x20\xca\x6e\xe5\x4f\x05\x65\x7c\x28\xf0\xb5\x6a\x12\xe1\xa4\xae\x55\xeb\x7d\xf3\xc7\xf4\xb7\xb8\x71\x44\xcd\xed\x58\x54\x0b\xc5\xe4\x55\x41\xcd\x65\x73\xa0\x54\x50\x73\x11\x64\xd5\xaa\x16\xfa\xf9\x2e\xf3\xbb\x5c\x39\xa0\xe6\x29\xa6\xae\xa0\xe6\xbe\x9c\x94\xaa\x89\x00\xe8\x57\xab\x26\x20\x97\x37\xa8\xb9\xbf\xdb\x9a\x8f\x6b\x92\x91\x0c\xd4\xdc\xa8\x4a\xd4\xfc\x61\xe4\xa9\xa2\xe6\xeb\xf1\xc7\xf4\x37\xd9\xa3\xa6\x35\x5b\xc9\x26\x6a\x5e\x58\x39\x2a\xa8\xb9\x7d\xdb\x77\x11\x65\x07\xbc\x56\x9b\xaa\x66\xf5\x5d\xf6\xef\xcb\x89\x59\x41\xcd\xf5\x55\x0c\x82\x9a\xfb\xc0\x98\x5f\xff\x40\xcd\x8c\xa4\xa8\xb9\xe0\x40\xac\xa0\xe6\x96\x1f\xe6\xa8\x85\x37\x8a\x77\x41\xcd\xb3\x72\xcc\x55\x50\x73\x2b\x18\xd3\x6a\x0f\x55\x84\x9a\xbb\x26\x2f\x8c\x78\x55\xd4\xdc\x6e\xdf\xf5\x68\xae\x7c\x57\xd4\x3c\xf1\x65\x54\x50\x73\xd5\xb6\x5f\xbb\x26\x2f\xc5\x3e\xa8\xb9\x5e\x8f\xef\x3e\xee\x14\x3f\xa4\xc9\xeb\x6e\xbf\x12\xfb\x00\xea\xf6\x0e\xbf\x22\xe0\x52\xee\x01\xa8\xc7\x97\x6d\x12\xa2\x6c\xb8\x8a\x86\xd6\x30\xd4\xce\x0a\xa0\x9e\x17\x66\xf3\x3a\xd4\x52\x14\x83\x00\xea\x71\x29\x24\x05\xd4\xb7\xe7\xf2\xf0\x14\x53\x3a\x0d\xad\xf7\xd5\xa7\x68\x29\x97\xb3\x29\xa0\xce\xaf\x45\x8e\xaa\x0b\x0c\x52\x87\xde\x0a\x05\xbb\x80\x7a\x45\xab\x5c\xea\x8e\x2a\x80\xba\x5d\xdb\xa7\xdb\x25\xc7\xa2\x12\x50\xbf\x18\xd5\xeb\xb4\xbf\x36\x72\x6a\xbd\x77\x51\x01\xa8\xeb\x71\x36\x01\xd4\x2d\xbb\xf1\x01\xd4\x35\x79\x72\x01\xa8\x47\x6e\x3e\x65\xa9\x8f\xe6\xbb\x8a\x6e\x80\x52\x15\x50\xe7\x78\x4a\x7f\xb7\xc2\x6a\x8a\x32\xb0\xed\x57\x00\x75\x5d\xd3\x56\x21\xca\x66\x67\x06\xa7\x5a\x0a\xfe\xdf\x0a\xa0\xae\x77\xf6\x43\x6e\x6d\xf5\x2e\x01\xf5\xf5\xf2\xe3\xc7\xf9\xb5\x83\x8f\x8e\x2a\x8f\x57\x00\x75\x3d\xaf\x45\x0d\x80\xca\x1f\x00\x75\x6f\xe8\xa8\x15\x40\x3d\xb6\xea\xd0\xa3\x41\x0c\xa4\x50\x01\xd4\xbd\x75\x9b\x81\x28\x7b\x01\x86\x15\x40\xdd\xbb\xdb\xf3\x09\x55\xc4\x56\x61\x20\xba\xa6\xc5\xf0\x56\xf8\x5d\x8f\xe6\xc2\x84\xea\x68\xde\x28\xb4\x15\x40\x3d\x0e\xde\xf0\x0a\xa0\x6e\x15\x47\x64\x05\x50\xf7\x57\x79\xab\xa3\xf9\x5e\xbe\xcb\x7a\xfe\x1e\x8b\xf4\x57\x75\xb7\x82\x9a\xeb\xe3\xba\x0a\xd4\xec\xc9\xf5\x8a\x22\xa7\x45\xb6\x76\x77\x52\x40\xcd\xa3\x78\xf8\x82\x9a\xfb\x7b\xdb\x2a\xad\xd9\x2a\x66\x3a\x9a\x25\xe7\x54\x50\xf3\x8c\xb5\x11\xa8\x59\xe1\x2c\x6a\x1e\xaa\xac\x4b\xc7\xab\x1f\x02\x35\xb7\x50\x2c\x41\xcd\x7d\xa8\xb7\x80\x9a\xfb\xa5\xac\x06\x35\xd7\xd4\x7d\x8a\x2a\xd2\xb1\x66\x57\x51\x73\x7f\x2c\x6a\xf0\x04\x45\x56\x50\x73\x39\x85\x29\xd3\xd1\x5c\xb3\x55\x29\xca\x5c\x48\xa0\xe6\x76\xb9\xbb\xff\x70\x34\xdb\x05\xf7\xef\xb2\xc8\xfc\xbe\x98\xbe\xeb\xa7\xf7\x0d\xac\x57\x41\xcd\x35\xbb\x17\x3e\x55\x4d\x7c\x0a\x55\x47\x73\x72\x77\xeb\x68\xbe\x3d\xaa\x40\xcd\x2d\x47\x55\xcc\x6f\xc1\x2f\x50\x41\xcd\xb3\xb8\x08\x41\xcd\x63\x5d\x16\xd9\xbf\x9f\xaa\x08\xa8\xb9\x87\x7e\xf8\x79\x54\x4d\xdb\xac\x55\x44\xc5\x4c\x47\xf3\x51\x2d\xff\xb4\x8a\x5c\x16\x51\x45\x7e\x8c\xc3\x7f\x5f\xec\x6f\x01\xa6\xdd\xd1\x07\xdd\x54\x1d\x01\xd4\x35\x2b\x15\xb7\x06\x04\x3b\x0b\xa0\x9e\xc3\x26\x01\xa8\xe7\xb9\xfc\xb1\x5a\xa8\x07\x22\x80\xba\xbe\x93\x91\x11\x50\xbf\x0f\x6b\x0c\x40\x5d\xb6\xfa\x1e\x80\xba\x6c\x4c\xa3\x75\xbb\xb5\x55\x1e\x00\xd4\xa3\x28\x06\x05\xd4\xfa\x53\xea\x56\x94\xa9\xfc\x6f\x1d\xaf\x40\xe6\x2a\xa0\x0e\x71\x04\xa0\x6e\x97\x50\xee\x84\x6d\xdf\x22\xa2\xfb\x03\x23\xd7\x13\xa2\x9b\x66\x04\xa0\x9e\x74\x1f\x40\xdd\x6a\xd4\xac\x01\x41\xc1\x7e\x9c\x7a\x8f\x9b\x70\x34\x27\x7f\xec\x52\x87\xba\x53\x01\xd4\xf3\xc2\x44\x59\x01\xd4\xbd\xdb\x5f\x01\xf5\x8b\xa9\xb0\xea\x68\x96\x81\x50\x01\xd4\xfd\x46\x59\x6a\x00\xea\xf1\x9e\x97\x22\x4b\x7d\xb0\xe3\x1a\x80\xba\x77\x74\x89\x06\xa0\x1e\x5f\xf1\x5d\x0d\x44\xd5\x22\xf3\x5b\x01\x59\x2d\x1c\xcd\x4c\x68\xd3\xd1\xbc\x71\x9d\x37\x00\x75\xdb\x9c\x7a\x4d\x40\x3d\x31\x10\x35\x00\x75\x7f\x58\x66\x0d\x40\xdd\x3b\x8b\xb9\x01\xa8\x67\xcd\xb6\xd9\xfe\xbe\xb6\x99\xad\x5d\x1f\x7f\xac\x28\x63\xd5\x35\x00\x75\x1d\x28\x96\x2d\xe9\xbb\x41\x39\x6c\x29\x0c\x80\x7c\x37\x69\x0b\xc5\xf6\xdb\x00\xd4\x75\x3c\x16\x11\x65\x05\x1c\xd1\x92\x47\x55\xa7\x0b\x49\x03\x42\xf3\x43\xc3\xbd\x60\xcd\xf4\xb7\x61\x3f\x69\xa0\xe6\x59\xf0\x86\x37\x50\x73\x6f\xc7\x36\x7b\x54\x15\x1b\xa9\x41\x0c\xdc\xd4\x40\xcd\xb5\x2c\x3f\xc4\xd6\x9e\xd0\x86\x1b\xa8\xb9\xce\x6c\x51\x5f\x06\x87\x7e\x03\x35\x8f\x8d\xe1\xa2\x89\x9a\xbb\xb3\xaf\xa3\xf9\x3b\xbe\x2b\x91\x20\x9e\x22\xca\xf4\x1e\x36\x51\xf3\x05\xe6\x6a\xa0\xe6\x3a\x92\x3f\x46\x94\x45\x8f\x6e\x6d\xdd\x98\xfa\x1b\xa8\x79\xee\xe2\x8f\x03\x65\x30\x38\xa0\xe6\x39\x1c\x1c\x1d\xcd\x2f\x07\x4a\x03\x35\xd7\x07\x8c\xd9\xb2\xaa\x08\x32\xa7\x65\x45\x37\xea\x44\xcb\x1a\x3c\xf1\xaf\x35\x50\xf3\xbc\x0a\x93\x02\x6a\x9e\x09\x12\x54\x03\x35\xcf\xe9\x94\x81\x9a\xdb\x85\x5b\xa4\xe9\x68\xbe\x2e\xab\x12\x55\x65\x7f\xac\xaa\x09\x20\x6d\xd9\xfe\x26\x9b\xf1\x5a\xb3\x6d\xe6\xa8\xfa\xb0\xd9\xb6\xac\x6a\x3d\xac\x39\x54\x6b\x06\x36\x2b\xba\x81\x6f\xad\xc8\x11\x42\x5d\x6c\xa0\xe6\xfe\xda\x23\x50\x73\x39\x98\x32\x1a\xa8\xb9\xec\xf2\x2b\xdb\x7e\x03\x50\xcf\x76\xf9\x22\xa2\x6c\x71\xe4\x35\x01\x75\xfe\x7c\xaa\xcf\x1d\x33\x63\x2b\x6a\x29\x6e\x31\x7d\xd0\xb5\xd9\xc2\xa0\x87\xb1\x02\x05\xd4\xcf\xe5\x53\x45\x99\xeb\x04\x40\x3d\x8b\x62\xa1\xc8\x99\x71\xc9\x09\xa8\x13\xca\x52\x03\x50\x77\x4f\xfc\x56\x9d\x7a\xc0\x78\x13\x50\x1f\x28\x07\x4d\x40\x9d\x39\x6a\x5b\x75\xa9\x03\xb8\x5a\x95\x43\x82\xb5\xa1\x55\xdd\xb2\xcd\xaa\xba\xa3\x41\x17\x04\xd4\x1d\x06\x51\x03\x50\x8f\xfb\xb5\x66\x51\x86\xcb\xb5\x86\x6d\xdf\x1f\xeb\xb6\x73\xd9\xd4\xa0\x3b\xd2\x5f\x00\x75\x9d\x1c\x55\x0d\x40\x5d\xf6\xe1\xc7\x4d\xd1\xfd\x5a\x64\xea\x37\x5e\x92\x06\xa0\x6e\x35\x33\x92\x02\xea\x8c\xe3\xa3\x01\xa8\x67\xaf\x3e\x45\x94\x55\x0e\xa3\xa6\x1b\x7a\x7c\x3e\x75\xa9\x63\x0b\x6d\x00\xea\x9a\x6f\x3f\x34\x3d\x41\x18\x1c\x01\x75\x01\xcd\x35\xdd\xd0\x57\xb4\x4a\x2d\x74\xda\x66\x6d\xbf\x00\xb4\xd6\x62\xa9\x33\x56\x4d\x83\x18\xc7\x7a\x13\x50\x8b\x8c\x9a\x6e\xe8\xe2\x94\xe9\x86\x5e\x68\xdd\x0d\x40\x5d\x65\x01\x35\x01\xf5\x06\x74\x34\x00\x75\xed\x95\x66\x00\xa8\x7b\x52\x66\x76\xe7\x17\xee\x5c\x03\x50\x77\x2d\xff\x4d\x40\x3d\x8b\x1f\x52\x15\xb1\xfb\x02\xea\xe3\x1c\x89\x9a\x13\xb0\xa2\x81\x9a\xfb\x72\xf6\x41\xcd\x65\xbb\xb5\x75\x43\x2f\x74\xad\x36\x74\xdb\xa1\x0c\x37\x50\xf3\xe8\x4a\x27\x50\x73\x5d\xca\x5b\x50\xf3\xac\x97\x3f\x56\xf5\xc2\x04\xd4\x74\x43\x57\xd7\x33\xa8\xb9\xab\x3f\xb4\x40\xcd\xb7\x35\x2b\xca\xe2\xc7\xc1\x21\xf1\xc7\x8f\xab\xce\xe2\xeb\x68\x30\x38\xa0\xe6\x9a\x3c\xd7\x40\xcd\xe5\x54\x5b\xe5\x51\x05\xe7\xbf\x0d\x8f\x2a\x0c\x26\x0d\xd4\xdc\x2a\x08\xb4\x89\x9a\x8d\xda\x68\xa2\xe6\x57\x99\x29\x6a\xbe\x95\xf3\x33\xac\x04\x74\x41\xd4\x7c\x26\x83\x33\xa5\x19\x78\xbe\xe8\x86\x5e\x9e\xf2\x33\x38\x51\x56\x25\xca\xb8\x7c\xca\xfc\x1e\x54\xaf\x36\x75\xbb\xa3\x48\xb7\xa9\xe8\xc6\x0b\xd6\x40\xcd\xed\x73\x7e\x41\xcd\x7d\x0e\xab\xd2\x2a\x02\xc9\xad\x3d\x5a\x09\xd0\xf1\x9a\x6e\xe8\xea\x68\xe8\x86\xbe\x55\x9f\x40\xcd\x43\x13\x4a\x7b\xe4\x34\xaa\x20\x81\x9a\xa7\xe4\xed\xf6\xa8\x6a\x3e\xd6\xcc\xfe\x4d\xf7\x2f\xc5\xfe\x23\xe3\x42\x75\xe8\x91\x61\x32\xad\xf6\xf1\x29\xa3\xaa\x87\xfa\xc3\x37\xd1\x64\x6e\xeb\xc5\x6b\x00\xea\x31\xb1\x17\x35\x3d\xd4\x3a\xbb\xdb\xe3\xd4\x3b\x8c\x32\xb7\x2f\x7b\xf7\x6a\xeb\x76\xcc\xdf\xd0\xca\x68\x46\x00\x6a\xbc\xdb\xed\x95\x2e\xa5\x8e\x2a\x73\xfb\x73\x72\x05\xd4\xef\xf2\x5d\x86\xe2\xc5\x1a\xd6\x00\xd4\xb3\xc1\x54\x6f\x02\xea\xa9\x66\xf5\x7a\x54\x29\x16\x00\xd4\xb5\xb8\xa8\x04\xd4\xcd\x15\x28\xa0\x6e\xea\x99\xba\xa1\xdf\x6d\x8f\xa4\x87\x29\xd9\x64\x6e\x4f\x10\x74\x03\x50\xcf\x32\x7d\x1a\x06\x13\x6a\x96\xb9\xbd\x95\x3f\x4b\xdb\xbe\x7a\xa6\x6e\xe8\x8a\x13\xb3\x2d\xe9\x8e\xc5\x77\xa5\xff\xa9\x2d\x08\xa8\x1f\xa5\xd3\x52\x4b\x51\xb3\x5a\xd2\xc3\xec\xd1\xd2\xd6\xed\x48\x2e\x0d\x44\xea\x99\xe1\x86\x6e\x36\xc3\xf9\x05\x83\x34\xdd\xd0\x09\xd7\x5b\xd3\x0d\x6d\x2c\x5b\xfb\xec\x2f\xe0\xae\x01\xa8\xfb\xc9\xfe\x58\x03\xa0\x3a\xea\x17\xa2\xdb\x1f\x23\xba\xb5\x57\x37\xdd\xd0\x1b\x42\x51\xfb\xec\x2f\x30\xbf\x7d\x6e\x6d\xa8\x1d\x4d\x37\x74\x1b\xd6\x8c\xd6\xfd\xb8\xcc\x00\xd4\x23\xb9\x5b\x01\xd4\xfd\x40\x6f\x68\x9f\xa2\x5b\x15\x08\x40\xdd\x0a\xd0\xaf\xc9\xdc\xae\x6e\x0d\x99\xdb\x8f\xc7\xfa\xf6\xa8\x52\x43\x10\x35\x17\xd7\x86\xcc\xed\x57\x54\xa5\x1b\xda\x48\xa8\x26\x73\xdb\x20\xc1\x26\x6a\xde\x58\x47\x9b\xcc\x6d\x63\x49\xda\xd6\x60\xe2\x42\xda\x32\xe2\x5c\x2a\xa0\xe6\xd9\xd5\x60\x41\xcd\xa3\x28\x9c\xa5\x67\x8f\x6c\x33\xd8\xbf\x81\x50\x40\xcd\xb3\x45\xab\xe8\x6f\x73\x70\x8e\xb4\x0a\x41\xe5\x71\xff\xaa\x21\x88\x9a\xcb\xe5\x8f\xd9\xbf\xdb\x49\x01\x35\xb7\xe1\xd6\x38\xee\x5f\x0c\x62\xed\x88\x22\xc5\x11\xa0\xe6\xd6\x8e\x55\x85\x41\xcc\x0f\x79\x54\xa9\x6b\x49\xcf\xee\x1e\x0a\x47\x55\xc4\x49\x91\x9e\x3d\x5c\x48\xa0\xe6\xfa\x39\x29\x47\x14\x29\xc6\xd4\x0d\x7d\xa3\xb7\xf4\x4b\x94\x81\x42\xd8\x41\xcd\xf3\xd0\x8c\x7e\xa9\x75\xb3\x80\xbb\xa8\x79\xa3\xc6\x74\xdd\xd0\x7a\x78\x3b\xa8\xb9\xbe\x8f\x3f\x6e\x1e\x0a\x99\x62\xd0\x2a\x26\x45\x50\xf3\x42\x6d\xeb\x97\x91\x08\xb8\x81\xfa\x15\xf4\x4e\x8b\x5a\x45\xfa\xaf\xc2\xb5\xba\x80\xba\x3c\x7e\x85\xa1\xb8\x8f\x5f\x91\x4c\x15\x7d\x57\x2b\x63\x82\xba\x1e\xea\x1b\xeb\x6e\x17\x50\x77\xb6\x76\x97\xb9\xdd\xc1\x5f\x5d\xe6\xf6\x87\xcd\xa7\x0b\xa8\x67\xb2\xaa\x38\xb5\x19\x19\x01\x75\x5e\xd6\xac\x9b\x03\xe3\x67\x4f\x6e\xed\x61\x55\x9e\xda\xa8\x52\x1d\x40\xdd\xd6\xeb\x53\x86\x42\x4f\x5c\x07\x50\xd7\x89\x54\xec\x00\xea\x19\x63\x2e\xa0\xce\xdb\x1f\xd3\xdf\x06\xb1\xb0\xeb\x86\x7e\xd0\xc9\x3b\x80\x7a\x2c\x1c\x1f\x5d\x40\x7d\xc1\xfa\xee\x02\x6a\xc9\x39\xfd\x0e\x83\x18\x03\xab\x1b\xba\x1d\x6b\x96\xd9\x6b\x7f\x6f\x6d\xfb\xb7\x3f\xa6\xbf\x85\x23\xbe\xeb\x86\xbe\x11\x38\x5d\x40\xad\xeb\xad\xdf\xc1\xb8\x60\x16\x00\xd4\x63\x46\x51\x80\x09\x4b\xad\xdf\x32\x10\x3e\xab\xe2\xa8\xba\xd8\xbc\x5d\x40\x3d\x6c\x64\x0e\xb2\x2b\x63\x95\xd5\xca\x30\xf6\xf6\xac\x2d\x14\x43\x71\x07\x50\x8f\xc9\x06\xec\x32\xb7\x5f\x07\x47\x37\xb4\x1a\x42\xcf\xba\xed\xec\x51\x0e\x72\x20\x6b\x23\xdc\xd0\x08\xc9\x9e\x63\xa9\xfb\xd4\xa5\x8e\x16\xda\x83\xb9\xdd\x7d\xca\xfc\x5e\x40\x83\x0e\xa0\xee\xa5\xfb\xa1\x63\x23\x99\x6e\xdd\xd0\xdd\x25\x2a\xa0\x1e\xce\x60\x09\xdf\x0d\x3d\x02\x50\x4f\x89\xdc\x5d\xd4\x5c\x1d\xab\xe2\x7a\x86\x50\xd4\x65\x6e\xbf\x08\xd8\x2e\x6a\x8e\x29\x2b\xe1\xcb\xf0\xc7\x6c\xed\x51\xfc\x10\xeb\xb9\x3b\xfb\x45\xd5\x6b\xfb\x21\xe6\xf7\xcb\x36\xd2\xfd\x9b\xed\x82\x8c\x9a\xe1\x8f\xf5\x65\x40\xfb\xe9\xd5\xf9\x05\x26\x77\x50\xf3\xac\xc4\x83\xf4\x20\x6f\x6f\x9f\x66\x57\xac\x45\x0d\x80\x6e\x58\xc9\xdb\x03\x73\x59\x97\xbc\x7d\x5c\xcf\xd5\xfd\x4b\xc8\x43\x07\x35\xcf\xe7\xb5\xa8\x5b\xb6\xf9\x2e\xfd\xfd\xba\xef\x86\x6f\x8e\xa5\xa2\x1b\x7a\x3f\x36\x52\x5f\x15\x88\xbb\x83\x9a\xe7\x33\x7c\x37\x18\x35\x3c\xd5\x0d\x9d\xdc\xbf\x4d\x5f\x15\x60\xa7\x83\x9a\x67\x57\xde\x82\x9a\x6b\x41\x27\xef\x4d\xdf\x0d\x96\xc6\x2e\x6a\xd6\xd0\xda\x9b\x41\x64\x0e\x0e\xa8\xb9\x56\x87\x5d\xf2\xf6\xa9\xbe\xeb\x51\x05\x7c\xeb\x4d\x86\x18\x1e\xb4\xde\xdc\xbf\xc5\xaa\x24\xab\x2b\xe7\x45\xcd\x09\xdf\x71\xd7\x0d\x6d\xf8\x4f\x07\x35\xf7\x74\x3d\xbf\x12\xfb\x00\xea\xb6\x2a\x03\xa5\x87\x7a\xb9\x89\x00\xd4\x75\xba\xc5\xba\xb6\x41\x8f\x3c\x00\xf5\x30\xb3\x41\x17\x50\x0f\xb4\xa3\xae\x87\xfa\x77\xc0\xf7\x53\x64\xa9\xaf\xe6\x8f\xf5\x50\x13\xde\xd2\xbb\xb6\xee\xcf\x9a\x11\x65\xb3\x5b\xf4\xd4\x4e\x36\x52\xf2\xd8\xb1\x28\xe0\x72\xd9\xc8\xeb\x2e\xdd\x66\x48\x86\x44\xbf\xed\xf2\xba\xb3\x8b\x4a\x40\x9d\x21\x14\x75\xdd\xd0\x03\x2d\xb4\x03\xa8\xfb\x74\x90\x87\xf1\x83\x18\xe5\xba\x6e\xe8\x98\xcd\x11\x6e\x1d\xdf\x45\x94\x35\x17\xc6\xd0\xb6\x8f\x02\xdf\x87\x0c\x13\xa5\xf1\x88\xa3\x8a\xf5\xa9\x1b\xfa\x73\x5f\x0c\xb7\x36\x0e\x88\x2e\xaf\x5b\xba\x75\x07\x50\xcf\xed\xb9\xa6\x1b\xfa\xc3\xd8\xdb\x75\x43\x1b\x3c\xdb\x01\xd4\xd3\x88\xb3\x3e\x65\x10\x39\x65\x53\xb7\x2c\x1a\x7b\x07\x50\xf7\x1b\x12\x45\x07\x50\xb7\x4b\x51\x26\xa0\x2e\x78\xc4\xfa\x94\x61\xe2\x9e\xd2\x0d\xfd\xb8\x36\x66\x90\x21\xfd\x2e\xfd\xbd\x14\xa1\xf2\xba\x0d\x45\xec\x00\xea\x5a\x94\xc6\x00\xea\x7e\x7d\xd6\x8c\x28\x6b\x60\xbd\x0e\xa0\x9e\xc6\x1d\x77\xdd\xd0\x9f\xdf\x05\x50\xd7\x77\xf8\x54\xd1\x0d\x50\xea\x8f\x5a\xa8\x8a\x8a\x6e\xe8\xea\x1c\x3d\xce\xaf\x62\x41\x5e\x77\x86\x35\xd1\x1f\x45\x99\x92\x5c\x5e\x77\x56\xfd\x13\x35\x1b\xe3\xd9\xe5\x75\x17\x80\x61\xd7\x0d\x5d\xba\xef\x2a\xca\x8a\x4f\x75\xcb\x2a\x43\x1e\x8f\xaa\x6a\xcd\xac\xe7\x71\x10\x83\xba\xa1\x8b\x6b\xe3\xd5\x60\xe2\x81\x02\x6a\x1e\x1d\x78\xde\x03\x35\x7b\xca\x1b\xef\x6c\xb8\x44\x07\x35\xb7\x50\x09\x44\xcd\x07\x86\x49\x17\x35\x37\x1b\xa9\x1b\xba\xe2\x59\xee\xaf\x5a\xe8\xe3\x87\x34\x88\x61\xb3\xed\x92\xb7\x35\x79\xf5\x37\x0c\x9e\xd6\xcc\x7a\x36\xee\xaf\xbf\xee\x5f\x95\xc9\x57\x5b\xb7\xdf\x05\x35\xf7\x9c\x2d\xca\x00\x74\x3d\x8b\x9a\xd5\xd8\xfb\xd2\x00\x88\x47\xbb\x8b\x9a\x65\x6b\x77\x50\xf3\x78\x95\x39\xa2\xe6\xe9\xe0\xe8\x86\x8e\x13\xd3\x78\xe7\xeb\xf2\xa9\xbc\xfd\x6d\x33\x44\x19\x98\xdc\xbb\xa8\xf9\xbd\xfd\x2e\x28\x32\xbb\x90\x44\xcd\x03\x6a\x44\x5f\x41\x76\x65\x4d\xae\x70\xbb\xf3\x14\xd4\xdc\x32\x10\xbb\x1b\xef\x2c\x93\xa7\x83\x9a\xab\xd4\xbb\x0e\x6a\xee\x75\xff\x52\xec\x7f\xc6\x87\x46\xb5\x68\x65\x09\x84\xd5\x05\xd4\x5f\x7c\x45\xb7\x2c\x6e\xbb\x2e\xaf\x7b\xc3\xb8\xe8\x7a\xa8\xb3\x7b\x19\x40\xdd\x92\x4a\x9a\xa1\xd0\xdb\xbd\x2c\xa0\x0e\x4d\x52\x0f\x75\xf7\xf4\x01\x50\xf7\xe5\x92\x03\x50\xf7\xe6\x21\x0e\xa0\xae\xc9\xe3\x72\x3b\x14\x6e\x04\x43\xa1\xe3\xbb\x02\xea\x06\x4f\xa0\x6f\x0d\x26\xf1\x54\x51\xe6\xd9\x0a\xa0\x1e\xcb\xed\xb9\x65\x98\x28\x8e\x0c\x85\xce\x78\x97\xba\xbc\xee\xa3\x94\x00\x50\xd7\x23\xca\x00\x50\xb7\xcb\x81\xd5\x0d\xdd\xf0\x38\xf4\xad\x81\xe8\xf3\x43\x92\x03\xa1\x1d\x76\xdd\xd0\x17\x80\xba\x1b\xef\x9c\x20\xcb\xf5\xa3\x2f\xc3\xa3\xf9\x0f\x5e\x37\x8d\xd4\x0d\xdd\x70\x35\x76\x79\xdd\x9f\x52\xd1\x78\x67\xe3\x59\xfa\x31\xf4\x1b\x53\x4c\x3f\xf6\x57\x85\xe7\x08\x30\x8b\xdf\xd5\xb6\xef\xd9\x74\xb4\xfd\xe2\x44\xe8\x00\xea\xae\x99\xae\x03\xa8\x47\xf6\x30\xd2\x0d\xdd\x2e\x9b\xc1\xd6\x7e\x14\x65\x00\xea\xf9\xa2\xdf\x0e\x01\xf5\x87\xe1\x71\x5c\x41\xfe\xec\x14\x11\x65\xab\xf8\x54\xb7\x3b\x3b\x7d\x5c\xda\x42\x91\xb7\x03\x40\xdd\x75\xd9\x0f\xdd\xd0\xf9\xb5\x2a\x19\x35\xc8\x81\x21\xa0\xbe\x3e\x6b\xe6\x68\xd6\xba\x3b\xfe\x00\xd4\xbe\x2b\x6f\x1f\x15\x7d\xc8\xeb\x4e\xc7\x0f\x31\xbf\x1d\xe9\x34\x2e\x43\xfb\x59\xed\x03\xd4\xdc\x0c\x0f\x19\x7f\xf0\xba\xa9\x2a\xc9\xdb\x47\x63\x1f\xf2\xba\x27\xd8\x67\x24\xc9\x81\x20\xdf\x91\x4c\xdd\x80\x2a\x32\x92\x6e\xca\xe6\x53\xb5\x6e\x94\xf0\xa1\x1b\xfa\x40\x74\x19\x29\x68\x15\xfe\x98\xfe\xea\x85\x1f\x92\xb7\xe7\xb6\x66\xe7\x77\x5b\x95\x06\xb1\xcb\xe2\xe7\xb9\x66\x91\xf5\xdc\x87\x55\x45\x3c\x3b\x1d\xbc\x65\x4c\x11\x01\x31\x6e\x43\xae\xd8\x83\x23\xc8\xdb\x98\x16\xc7\x6d\xea\x06\xce\xa6\x01\x6a\x6e\x17\x7b\x70\xdc\x1a\x3c\x51\xcc\xc6\x6d\x5c\x06\x36\xae\x21\x6a\xce\xe0\xd3\xa1\x1b\xfa\x21\x4e\x6a\x80\x9a\xbb\xf1\x3e\x23\xc8\xdb\x88\xd0\x21\x79\x3b\xb1\xad\x86\xa8\x39\x5d\x36\x43\x03\xd1\xb1\x0b\x88\xee\x82\x19\x64\x88\x9a\x6f\xa2\xfb\x87\xe4\xed\x14\x45\x55\x11\x30\xc8\xc8\x1a\x88\x90\x39\x43\xf2\xb6\xee\xc5\x21\x79\xfb\x76\x6b\x64\xe5\x15\x0a\xe1\xd0\x0d\xfd\x15\xdf\x55\x3e\xff\x2e\x63\xff\xae\xd8\x1f\x7a\xa8\xdf\x65\xb5\x6e\x6d\xc0\xf8\xc8\xe1\xd6\xb1\xc1\x88\xb2\xba\xfd\x31\x4b\xfd\x60\x45\x1f\x02\xea\x06\x28\x1e\x59\x37\xe5\xb4\x77\xc7\x65\xc3\x20\xeb\xa1\xde\x28\x00\xc3\x50\xe8\xe6\xb2\x29\x1a\x88\xdc\x9e\x86\x42\xcf\xec\x53\xb7\xb6\xb3\x59\x04\x5c\x2f\xeb\xa4\xc8\x40\xc0\xda\x30\x82\xd7\x5d\xfd\x90\x8c\x8b\x61\x51\x32\x95\xdb\xb3\x04\x79\x8c\x0e\x02\xa8\x67\x71\x51\x15\xb3\x94\x14\x5b\xf5\xb9\x3d\xe9\x7e\xd1\x6d\xa7\x74\x12\x50\x77\x5b\x55\x23\x44\x85\xaa\x74\x43\x3f\xc8\xf9\x01\xa0\x6e\x2f\xea\xdf\xa8\x66\xa1\x51\xfe\xc8\xeb\xee\x76\x41\x5e\xf7\x52\x58\x55\xa3\x0b\x95\x21\x46\x43\x1b\x65\x33\x00\xd4\x3d\xb9\x30\x04\xd4\x29\x3e\xc4\xfc\x5e\x98\xf8\x86\x6e\xe8\x9b\x63\x6e\x54\x0d\x62\x8a\x23\x00\x75\x37\x7f\xda\xa8\x11\x5d\x48\x7f\xab\x5b\x5b\x91\xd2\x22\xba\x90\x0f\xb5\x88\x2e\xa4\x47\x00\xea\x3e\xc0\x5c\xc3\x68\xe8\x1b\xda\xf0\x10\x50\xcb\x6e\x1d\xf2\xba\x5f\x77\x4d\xf3\xa8\xc2\xf8\x30\x04\xd4\x37\x28\x72\xe8\x86\x4e\xc0\xb7\xd1\x42\x15\xf1\x5d\xb6\xf6\xc4\x47\x3f\x00\xd4\xf3\x46\x19\x1e\x4d\x54\x45\x2a\x83\xd1\x8c\x96\xcd\x36\x83\xfe\x4e\xa7\xac\x69\xdb\xc7\x10\x37\x40\xcd\xfd\x85\x5f\x34\xba\xb6\x6e\x54\x91\x21\x6a\xbe\x94\xc6\xa0\xe6\x21\x6f\x76\x74\xb7\xb6\xc7\x5c\x0f\xd1\x4d\x17\xba\xbe\x8c\xe4\x8f\x11\xdd\x7b\x58\x15\x47\xd5\xa7\xec\xd2\x0d\xbd\x3d\x5f\x44\xcd\x97\x3d\xd2\x0d\x3d\xb1\x17\x0d\x51\xf3\xba\x6c\xa4\xa8\xb9\x58\xd4\xc0\x5b\x6d\x06\xfb\xb7\x62\x97\x1b\xa2\xe6\x82\xd3\x64\x80\x9a\x9b\x21\xf9\x43\x37\xf4\xac\xfe\x38\x2b\x46\xd8\x56\xa2\xe6\x0c\x19\x60\x0c\xdd\x94\x44\x31\x0c\xa3\xa1\x9b\xa7\xc0\x90\x46\x82\x92\x33\x24\x6f\x9b\x8a\x64\xe8\x86\x9e\x97\xef\xb2\x7f\xd3\xed\x77\xb5\x12\x38\x0b\x23\x0c\x44\x4c\xf7\xd0\x00\xe8\x81\x12\xe4\x6d\x77\x37\xa8\x79\x3e\xd8\xa8\x87\xa8\xf9\x21\xe4\x61\x18\x0d\xdd\xb0\xcc\x8c\x19\xd1\xee\x8c\xf3\x94\xf1\x88\x5e\x3a\x44\xcd\x1d\xcb\xc6\x98\x81\x22\xfd\x31\x47\xb3\x34\x83\x01\x6a\xee\x37\x78\x6d\x4c\xe3\x8c\x30\x1a\x0c\x50\xf3\x9c\xdd\x1f\xeb\x8b\xcc\x36\x32\x54\xaf\xfd\x2b\xb1\x2f\xa0\x36\xac\x6f\xcc\x88\x1e\x65\x90\x01\xd4\xd3\xdc\x05\x43\x0f\xb5\x01\x74\xe3\xf1\xd4\x1e\xec\x56\x01\x75\xb6\x77\xf2\xba\x1f\xf8\x8d\xc3\x40\x69\xb3\xfd\x8c\xc7\xad\x6d\xdf\xff\xe0\x75\xfb\x63\x44\xd9\x84\xa8\x3f\xf4\x50\x0f\xb0\xc0\x78\x74\xcb\x66\x7f\x2c\xc0\x04\xd7\x0f\x01\xf5\xfd\xd8\x0c\x45\x19\xbe\xd4\x61\xa0\xf4\x20\x92\x62\x00\xa8\x5b\x57\xd0\x3d\x86\x6c\x28\x8e\x00\xd4\xbd\xab\x2b\xbe\xba\xed\xec\x82\xbc\xee\xcf\x25\x27\xaf\xdb\x18\xf3\x01\xa0\x1e\x53\x51\x66\x34\xb4\x10\x72\x08\xa8\x85\x9f\xc3\x68\xe8\xaa\x1e\x12\x09\xc4\x1c\x1c\x13\x88\x49\x20\x1f\x6f\x18\x10\x98\x85\x00\xd4\xcb\x46\x9a\x95\x25\xde\x45\x94\x69\x4c\x1b\xba\xa1\x17\xae\xc6\x21\xa0\xfe\x70\xe5\x0c\x79\xdd\x2f\x5e\xf8\xa1\x1b\xda\x3c\x57\x43\x37\xb4\x91\x41\x63\x99\xe8\xc0\x5d\xa3\x1b\xda\x24\x51\xc3\x04\x62\x53\xa1\xa1\x1b\x3a\x54\xe5\x15\xe4\x5e\x66\x70\x69\x20\x5a\xbe\xab\x41\x0c\xe6\xe4\xd0\x0d\x7d\x94\xd5\x4b\x37\xa5\x87\xbe\x80\xba\x45\x9b\x75\x43\xab\x67\x2e\x79\xce\xd1\x66\x50\xa4\x99\xf7\x86\xbc\xee\xcf\x73\x4d\x37\xf4\x52\xcd\x96\xd7\x7d\x2b\xac\x3e\x13\x1d\x28\x15\x83\xd7\xdd\x7c\x6a\xe0\xbf\x3a\x9b\xa8\x59\xe2\xfa\x10\x35\x4b\x06\x18\xf2\xba\xe5\x35\x8d\xcf\x90\x49\x3c\x80\xc3\x04\x62\x21\x8e\xe4\x75\x2f\x75\x0f\x79\xdd\xda\x03\x87\xa8\x79\x7b\xcc\x7d\xfa\x6e\xc4\x02\xf2\xba\xdf\xe6\x77\xe9\x6f\xf3\x40\x31\x1a\x7a\x60\xd3\x1b\xa0\xe6\xd9\xdd\xfb\xba\xa1\x87\xbb\x5b\xd4\x5c\xf1\x4b\x0e\xc9\xdb\xb5\x5a\x34\x1a\x5a\x21\xb9\x0d\xa9\x73\x3d\x1b\x0d\xdd\x3d\x05\x74\x43\x3f\xea\xc6\x91\x40\x0c\xe4\x3b\x44\xcd\x49\xfd\xc1\x68\x68\x2d\xf0\x63\x1b\x32\x39\x6d\xb3\x64\x57\x3c\x1d\x03\xd4\xdc\x1f\xc7\x79\xab\x6a\xaa\x01\x1e\x0d\x44\x4a\xa4\x63\x7f\xdd\xce\xc7\xf5\xac\xd6\xaa\x1b\xfa\x72\x6d\x98\x25\x6c\x57\x7f\xec\x51\x85\x65\x63\x44\x96\x30\xd5\x27\xdd\xd0\x26\xe0\x1a\xa2\xe6\xaa\xc6\x2b\x6a\x4e\x58\x47\x87\xa8\xf9\xf6\xc8\x38\x1a\x00\xb1\x8d\x0f\xa3\xa1\x97\xba\xc7\x31\xcb\x10\xb6\xc4\x01\x6a\x9e\x3d\x3a\x28\xca\xf8\x65\x4e\x9e\x79\x85\x5b\xf6\xa7\xc1\xf3\x92\x5c\x84\xa5\x62\x5e\x92\xc7\x18\x8a\x09\xa0\x9e\x4f\xf7\xc7\x2e\x75\xd6\xe7\xd4\x43\xbd\xe0\x75\x4f\x3d\xd4\x65\x58\x34\x70\x78\xfb\xae\x4b\x1d\x35\x7b\xea\xa1\x5e\x8f\x45\xb5\xd0\x6a\xcd\x06\xfe\x73\xe4\xcd\xcb\x1c\x17\xcd\x1f\x87\x47\x7e\x50\x44\x94\x25\x44\xf7\xd4\x0d\x6d\xa4\xed\x04\x50\x8f\x0d\x1f\x63\x26\xdd\x58\x38\x2f\x66\x12\x70\x81\xdd\x66\x8a\xdc\x80\x74\x3f\x09\x30\x99\xbe\x69\x02\x31\x43\x11\x67\x12\x65\x34\x9f\x32\xf5\xea\x99\x53\x5e\xf7\xc6\xd6\x34\xe5\x75\x3f\xc9\xef\xaa\x95\x21\x06\xa7\x80\xba\x67\xab\xd2\x97\x61\x8f\x00\xd4\x7d\x83\xb9\xa6\x80\xba\x0c\x1b\x29\x83\x08\x57\xd4\xbc\x4d\x98\x86\x25\x6a\x1a\x0d\x9d\xd9\x35\xf3\x56\x0b\x85\x6f\x3c\xef\x60\x4c\x51\xd5\x1d\x6e\x59\xdf\x35\x24\x07\x81\x33\x4d\x20\xf6\xb2\x3d\x27\x80\xba\x6f\xc7\xf9\x0e\xb2\x2b\x6d\x96\xd7\x9d\x01\x86\xf3\x96\xc7\xfe\xf8\x54\x40\x3d\x6d\xb3\xb6\xfd\x64\xd1\xa3\xea\x58\x34\xe4\xca\x55\x77\x1b\x62\xc6\xf1\x3a\x73\x18\x88\x78\x9a\x75\xdb\xa1\x3b\x4d\x13\x88\x3d\x98\xfa\xa7\x6e\xe8\xea\x12\x15\x50\x17\xc4\xc2\x34\x1a\x5a\xd0\x31\xb3\xeb\xf9\xf1\x5d\x6d\xbf\x97\xef\x6a\x00\x74\x79\x9b\x40\xcc\x28\xb9\x29\xaf\x3b\x6d\xdf\x95\x31\x85\x6e\x3c\x45\xcd\xf7\x65\x9b\x23\xc4\xcc\xa2\x71\x28\x9f\x3f\x3e\x0e\x2c\x0b\x58\xd4\x3c\xb0\x44\x4d\xdd\xd0\x1d\x7a\xe7\xd4\x0d\x2d\x9d\x75\x16\x03\xff\x6d\x55\xd1\xb6\x8f\x1d\x63\x96\x88\x1e\xf5\x5d\x8e\xaa\x7b\xfa\xe3\xf0\xdd\xb0\xea\x74\x43\x5f\x9c\x2f\x53\xd4\x6c\xd2\xf5\xa9\x1b\xfa\x3e\xbe\xab\xe8\x86\x29\x31\x41\xcd\x53\xf2\xd5\xd4\x0d\xdd\xa3\x55\x26\x78\xfc\x6c\x86\xa8\xd9\xa1\x0b\x37\x34\xf8\x65\x56\x51\xe4\x67\x91\xf9\x95\xab\x33\x45\xcd\xf2\x37\xa6\xa8\x79\x40\x82\x9a\xa2\xe6\xe2\x7a\xae\x8a\xee\xf8\x90\xa8\x0a\x45\x7a\x46\x34\x34\xda\xc5\x8c\x1c\x62\xd9\xa2\xb4\x0a\x07\x47\xd4\xfc\xa2\x4d\xcd\x6a\x02\x40\x57\x8e\x6e\xe8\xaa\x28\x90\xbc\xdd\xb1\x9c\x4f\x51\xf3\x85\x56\x33\x9b\x34\x03\x4e\x90\xd9\x82\xcc\xcc\x74\x8b\x9a\x1f\x94\xff\x29\x6a\xbe\xea\xaf\xc2\xb5\x26\x80\xba\x1a\x47\x3c\x9b\xd1\x67\xee\x47\x03\xa5\x35\x98\x4c\x01\xb5\xb9\x0b\xa6\x81\xd2\x77\xb3\xa8\x47\x7e\xf9\xae\x0c\x04\x3b\xdb\x3c\xc5\xb6\x0d\x8e\x53\xdb\xa7\xba\x75\xa0\xe2\xcf\x16\x28\xc3\xaa\x58\xea\x1b\x7b\xd1\xec\xa6\xdb\x72\x15\xc9\xeb\x9e\xf8\x61\xa7\x80\xba\x7b\x82\xe8\x86\x56\x0d\x9b\xba\xa1\xe3\x8c\x00\x50\x0f\x49\x23\x53\x37\xb4\x2e\x86\x09\xa0\xee\xaf\xcd\x00\x50\x97\xc3\x99\x3e\x05\xd4\x07\x45\x7a\x0a\xa8\xe5\x39\x4f\xd3\x8b\xbd\x9e\x6b\xe1\x86\xc6\x70\x3a\xe5\x75\xbf\x1e\x0a\xdd\x90\x2b\x4c\x6d\xb3\x6b\x30\x41\xb1\x9c\x00\xea\xde\x21\x61\xce\xe1\xd6\xce\x3e\x95\xb7\xef\x16\x33\xbd\x58\x82\x72\x30\x87\x5a\x8a\x82\x4e\x5e\xb7\x2e\x86\xa9\x1b\x7a\xbd\x3e\xa5\xbf\xcf\xe3\xbb\x68\xdd\x3a\xc7\xe7\x08\x1e\x3b\x3d\x02\x50\xcf\x17\x1b\xfb\x94\xd7\x7d\x29\x42\x01\xd4\x73\xa2\x49\x4e\xa3\xa1\xd3\x6d\x23\x4d\x97\x87\x26\x39\xe5\x75\x77\x1c\x01\x53\x5e\xb7\x29\xf4\xe7\x8c\xb4\xbd\x16\x99\xdf\x06\x82\x9e\xc1\xeb\x46\x81\x9f\xc1\xeb\xc6\xbf\x3f\x4d\x2f\x26\x04\x9b\x53\x03\x82\xc7\x9c\xd1\xd0\xdd\x66\xe8\x86\xf6\x76\x89\x09\xa0\xae\x15\x8f\xd2\x04\x50\x8f\xee\x0c\xea\x86\x4e\xe0\xa6\x69\x7a\xb1\xf3\x58\x95\x5b\xbb\xd9\x66\x0d\x62\xaf\xef\x2a\xca\xb0\xf9\xcc\x27\x12\x3b\xf0\x63\x50\xf3\x28\x1e\xa0\xba\xa1\x1f\xac\x58\xf3\x89\x74\x88\x4c\x99\xa8\x39\x36\x8e\xa8\xf9\xc5\xd5\x38\x9f\xe8\x2f\xdf\xd5\x0d\x9d\xc0\xb6\x13\xd4\xdc\xa4\xcf\xcd\xc7\x9c\x5a\xd9\xa7\xda\xba\x8f\xcd\xa0\xbf\x13\x36\xce\x14\x35\x9b\x84\x7c\x3e\x61\x00\xb4\x19\xa2\x2a\xd7\x73\x44\x43\xab\x3e\x89\x9a\x35\x89\x4c\x51\xf3\xc4\x93\x35\x45\xcd\x37\xca\xf0\x34\xbd\x98\xa0\x72\x82\x9a\xe7\x45\x9c\xc2\x14\x35\x77\xc8\x1e\xf3\xd5\xd6\xed\x58\xbd\xa1\x7a\xf9\x63\x44\xb7\x81\x36\x33\xd2\x6e\x83\xd7\xa6\xd1\xd0\xde\x4d\x30\x41\xcd\xc5\xf4\x8f\x53\xf2\xf6\x8c\x2e\x60\x20\x4a\xf1\x21\xfb\xab\xf2\x2c\x79\xfb\x83\x46\x32\x97\x64\x66\xc7\x2a\x72\x88\xb9\xf7\x23\x87\x98\xfb\xd7\x1c\x62\xb5\xf9\x2e\xf2\xaa\x62\x1c\x9e\xa2\xe6\xe1\x68\x98\x76\x5b\x56\xdb\x8c\xb4\xdb\xf7\xaf\x08\x9c\xd3\xf4\x62\x7d\xda\x24\xb4\x14\x73\x30\x4e\x79\xdd\x17\x16\xbc\xb9\x04\x98\xdd\xa2\x69\x5d\xb7\x6d\xd0\x43\xad\xaa\x6c\xa0\xf4\x74\xcc\x83\xd7\xad\xe2\x21\xa0\x0e\xb5\x53\x0f\xf5\x78\x2c\x3a\xf5\x40\xf5\x69\x7a\x31\xd3\x92\x4c\x79\xdd\xaf\x1f\x12\x50\xdf\xc7\x77\x35\x10\x11\x69\x3b\xe5\x75\xeb\x19\x9f\xf2\xba\x8b\xeb\x53\x40\x1d\xba\x93\xbc\xee\xa4\x52\xaa\x1b\x7a\x61\xe5\x98\x02\xea\x99\x7d\xca\x51\x65\x80\xf6\x14\x50\x67\x0f\x50\x03\xa5\x4d\x6e\x39\xb7\x5a\x8a\xeb\x73\x47\x4e\x1e\x26\x37\xa2\xa1\xad\xca\xf4\x62\x72\x1b\xa6\x19\xb9\x87\x27\x88\x80\x3a\x63\x10\x9b\x5b\x94\x71\xfb\x6e\x57\xfc\x32\x1a\xdb\xa3\xca\x19\x34\x1a\xfa\x60\x6b\x9a\x5b\x5f\x86\xc0\x41\x40\xfd\x2c\x7f\x4c\x7f\x97\x6b\x43\x40\xbd\x3c\x14\x82\xd7\xfd\xda\x8c\xe0\x39\xf3\xae\x80\xba\x28\x51\x75\x43\x17\x95\x61\x01\xf5\x89\xa2\xbc\x7d\x87\x4e\x37\x74\xc6\xba\x32\xe5\x75\x1f\x8c\x00\xd3\xf4\x62\x55\xd9\x65\xda\xed\xad\xac\x16\x50\x5f\x44\x7c\xcc\x23\xe3\x42\xed\x22\xd2\x6e\xc3\xe4\x99\xa6\x17\xab\xea\xb7\xba\xa1\x93\xfa\xc3\x31\x84\x50\x9d\x4d\x5e\xf7\xa5\xbe\x67\x34\xb4\x99\x2b\x1e\x51\xf3\x26\xbf\xcd\x23\x6a\x16\xbd\x3e\xa2\xe6\x44\x23\x1f\xdd\xd0\xa6\x28\x7f\x2e\xb5\xee\xd7\xa2\xd1\xb2\x98\x62\x9e\xcb\x9c\x3c\xb8\x1a\x1f\x50\xf3\x38\xcc\xfe\x03\x6a\x9e\xfa\x32\x1e\x51\xb3\xc9\xdb\x9f\x4b\x03\x60\x34\x03\xd1\xbd\x90\xb7\xcf\x15\x39\x6a\x6c\x95\x19\xe6\x39\xc8\x1e\x51\xf3\xf5\x59\xd4\xb6\x8f\x22\xfd\xe8\x86\xf6\xbe\x8c\x47\xf2\xb6\x41\x2b\x4f\x8a\x1c\x35\x1f\x45\xd3\xc7\x71\x08\x3e\x29\x54\x11\x8b\x66\x98\xc7\x0c\xfb\x24\xe7\x17\x65\xf2\x91\xbc\xbd\x3f\x7f\xac\xc1\x84\x38\x85\x47\xd4\x7c\x27\x5b\x15\x99\x4e\xad\x4a\x94\xc1\x51\xf5\x88\x9a\xef\xc7\x9a\x39\xaa\x54\x08\x9f\x24\x63\x2a\xfb\xd4\xa3\xd9\xfe\x9a\x76\x7b\x1c\x8b\x1a\x88\xf0\xaf\x3d\xb7\x06\x22\xa0\xc1\x73\x1b\x1d\x8c\x08\x7a\x24\x6f\x2f\x16\xf0\x03\x6a\x6e\xa6\xfd\x7f\x8c\x86\x4e\x9f\x45\x33\xea\xa3\x4d\x3d\xa2\xe6\x42\x0c\xdd\x73\x6b\xd0\x76\xd8\xef\xc8\xdc\x4b\x7f\x6f\x33\xf7\x9e\x5f\x89\xfd\x07\x40\x3d\xdb\xb1\xfd\xf2\xd8\x87\xed\x37\xa9\xaf\x8b\x19\x40\x5d\x0e\x7a\xe6\x93\x0d\x1c\xc6\xd0\xf4\x04\xaf\x1b\x99\xf9\x98\x5e\xec\x42\x57\x7c\x0c\x94\x6e\x51\x34\x93\x1e\x2e\xb0\xc7\x40\x69\xf3\xde\x3f\x39\x00\x97\x45\x01\x26\xea\xfd\x23\xa0\x36\xa6\xec\x91\xd7\x2d\x8b\xe0\x31\xbd\xd8\x7c\xfd\xb1\x39\x2e\xb0\xcf\x3f\x39\xb4\x50\xb6\x49\x64\xe4\xae\xbe\x2b\xa0\x46\x2c\x3c\xba\xa1\x9b\x3b\xae\x68\x40\x70\x46\x4c\x2f\xd6\xc1\x8c\x8f\x80\x3a\x71\x4c\x3f\x7f\xf0\xba\xa9\xd9\x8c\xdc\x0a\x8d\x47\x37\x74\x89\xa7\xe1\x96\xa5\x47\x45\xad\x1b\x25\xfc\xd1\x0d\xad\xe3\xe3\x29\xe6\x6c\x71\x8e\x02\x50\x23\xba\x1f\xdd\xd0\x0d\xeb\xca\x53\xbc\x41\xa0\x5b\x33\x5a\xe8\x73\xf9\xae\x06\xa2\xcb\x77\xb5\xed\xa3\x1b\x3f\x02\x6a\xc3\x18\x1f\x79\xdd\x5a\xd1\x1f\xa3\xa1\x6f\xc0\xe9\x23\xaf\x5b\xa6\xd9\x53\x8d\x53\xc0\xf4\xf4\x08\xa8\x37\x81\x6f\x8f\x6e\xe8\x8b\x63\xee\x11\x50\xe7\xd7\xef\x4a\x86\x44\xf9\x7f\x8c\x86\x6e\xc5\x66\x70\x34\x2f\x65\x66\x95\x21\x36\x7d\x57\x86\x18\xcc\x96\xc7\x68\xe8\x9e\x6d\x95\x21\x66\xdb\xaa\x34\x00\x42\x93\x78\x00\xd4\x53\xce\xff\x03\xa0\x6e\x5e\x00\xf7\x08\xa8\xa7\xc3\x2e\xaf\x5b\xfa\xee\x63\x34\x74\x03\x92\x3c\xa2\x66\x23\x2f\x1e\xa3\xa1\x9f\xee\xbb\x92\x3f\x93\xef\x32\xbf\xaa\xf7\x4f\xf3\x68\x56\x3a\x89\x9a\x4d\xd9\xfd\x88\x9a\x57\xb3\xa8\xed\x17\x4b\xd4\xd3\xd4\xba\xa3\x66\xc9\xae\xd5\xa7\x26\xe5\x46\x39\x7c\x7a\xe4\xd4\x62\x42\x41\xcd\xdd\xa4\x10\x8f\xd1\xd0\xb1\xe9\x4c\x2f\x66\xe4\xf8\xa3\x1b\x7a\xb9\x43\x4d\x2f\x96\x93\x55\x19\x32\x89\x32\xfc\x84\x1b\x3a\x7e\xec\xfc\x2a\x0a\xba\x89\x59\x70\xe9\x3e\xa6\x17\xcb\x58\x18\x9e\xae\xaf\xca\xfe\x1a\x0d\x7d\x3f\xfe\x58\xdf\x0d\xf6\xde\xa7\x47\x3a\x44\x3f\x64\xb4\x3b\x46\x9e\xc7\x68\xe8\xe5\x8a\x1d\x11\xed\x6e\x91\xf5\xfc\x12\x66\xfe\xe8\x86\x0e\x79\x0b\x6a\x1e\x3d\x9e\x9a\x73\x09\xb3\xc0\x13\x49\xb9\xb1\xf9\x3c\x46\x43\xd7\x9b\x19\x1c\xc6\x19\x79\xbc\x4a\xde\x7e\xec\x42\x24\xe5\x46\x6b\x7d\x74\x43\x9b\x4b\xf9\x31\x29\xf7\xe7\xc0\xea\x86\x7e\x14\x05\x23\x6e\x00\x61\xb5\x47\x34\xf4\xf8\x95\x6d\xff\x31\x5f\xf7\xf6\x60\x9a\x4e\xfd\xb4\x28\xe3\x02\xe0\xf3\x98\xaf\xbb\x79\x2e\x9b\xaf\xfb\x01\x07\x3d\x00\xea\xf9\xc4\x53\x79\xfb\x36\x78\xc6\x52\x67\xa0\xa6\x28\xc3\x23\x6f\xc6\xd4\x33\xd7\x00\xea\x69\x82\x97\xc7\xf4\x62\xb9\x5a\x14\x50\x7b\x88\x4f\x2f\x43\x51\xec\x1b\x28\x2d\x7e\x79\xe4\x75\x9b\x0d\xe6\x11\x50\x37\x50\xf0\xf3\xc8\xfb\xc5\xf6\xfb\x00\xa8\x47\x05\x1a\x3c\x7f\xe4\xeb\xa6\x83\x02\x6a\xbd\x78\x0f\x80\xba\x1d\xac\xe8\x8f\xe9\xc5\x16\x5a\xf7\xa3\x1b\xfa\x8e\xef\x62\x30\xc9\xf1\x63\xa3\x47\x8f\x4f\xe5\xed\xc7\x77\x0d\xfc\xff\xac\x4a\x32\xa4\xba\x93\x80\xfa\x8f\xaa\x44\x19\xaa\x70\x8f\x0c\x13\x88\x01\x8f\xf9\xba\x5f\x75\x09\xf3\x75\xf7\x28\x02\x30\xcd\xf7\xf2\xbc\x21\xba\xd9\xda\x6f\xb8\x29\x69\xa4\x49\xb9\xbd\x0a\xf0\x91\xd7\x2d\x60\x79\x74\x43\x2f\xe5\xed\x6b\x12\x63\x34\xe7\xe7\x75\x7e\x8b\x45\xb5\x94\xc7\x66\x18\x08\xaf\xfe\x20\xaf\x3b\x8e\x8c\x00\xd4\xdd\x46\xea\xc6\x72\xba\x75\x43\x27\xcf\x88\x15\x5b\x9b\x09\x5d\x61\xeb\xe6\xc7\x4b\x83\x89\x5d\x08\x40\xed\x39\x6e\x52\xee\x57\xcd\x59\x40\x7d\x70\xae\x3d\xf2\xba\x1b\x76\xaa\x47\x40\xfd\x82\x9b\x1e\x51\xf3\x7c\xfd\x90\xbe\x1b\x7b\xa4\x1b\xba\x62\x5a\x7c\x96\x99\x4e\x55\x1d\x97\x0c\x13\xec\x54\x8f\x6e\xe8\x72\x59\x94\x1c\xa8\x86\xa0\x1b\xfa\xc1\xa3\xf4\x98\x5e\xac\xe1\x1e\x7d\x8c\x86\xae\x18\x6a\x1e\x51\x73\x48\xe3\x4f\x94\xe1\xb6\xfa\xc2\xc0\xeb\xbb\xba\xa1\x3d\x14\x40\xcd\x33\xd9\x05\xdd\xd0\xdd\xf3\x45\xd4\xbc\x14\x38\x92\xb7\x8f\x3d\x32\x29\xf7\x4a\x3e\x75\x3d\xe3\xee\x7f\x44\xcd\x0b\xf3\xf5\x63\x34\xf4\xc4\x79\xf1\x7c\xc1\x98\xf2\xc7\x1e\x55\x2a\x93\xa0\xe6\xd1\xad\xd9\x68\xe8\xd7\x05\x2c\x6a\xde\x9e\xe3\xba\xa1\x87\x20\x4b\xd4\xdc\x61\x10\x3d\x3b\x32\xbb\xf2\x21\x51\x73\x9a\x16\x35\x98\x40\x28\x7a\xb6\x06\xa2\xa8\xca\xf9\x75\xb3\x8b\x9a\x8f\x7b\x70\x7b\x6f\x97\x82\x42\xf2\xb6\x61\xad\x4f\xb8\xa1\x5d\x66\xba\xa1\x43\x8b\xdb\xde\x2f\xe0\xba\x12\x35\xcb\xe4\x79\xcc\x21\xb6\xa1\xed\x3d\x46\x43\x6f\xd7\xc6\x91\xf1\xf8\x7b\xf1\xef\x8b\x7d\x01\x75\xc5\xfa\xf7\x9c\xe0\x39\xd3\x59\xd3\x8b\xad\x78\x1a\x99\x03\x69\xb0\xf9\xba\x5b\x14\x01\x20\x55\xad\xec\x18\x92\xf3\x58\x8c\xa5\x6e\xcd\x6c\x6d\x33\x1b\x3c\xde\x63\xd5\xa7\x3f\x36\x04\xc9\xe3\x52\x5e\xb7\x7e\x81\xf7\xf2\x4a\xbe\xcb\xa2\x06\x84\x6e\x51\x5e\x37\x81\x24\xaf\x90\x59\xf3\xe6\x0b\x64\x6e\xcf\x6d\xd1\x2c\x16\xd3\x1f\x9b\xb6\x97\xed\xf9\x0a\x99\x0b\x86\xe2\xf7\xd2\x9a\x8d\x2d\xe2\x0d\x47\xf3\xeb\x53\x7a\xd4\x91\xc6\xaf\x90\x59\xc9\xf6\x0a\x99\xb5\x62\xbd\x66\xe4\x96\xe5\xfe\xa6\x10\x56\xfc\xd8\x9b\xaa\xcc\xe1\xfc\x26\xe3\x61\x01\x89\x6f\x12\x37\x41\xec\x79\x65\x6e\xaf\xcb\x77\x35\x79\xb1\x97\xdf\xb8\xa9\xea\xb3\xaa\xb8\x31\xa1\x53\xa4\xbf\xde\x93\xf8\x1a\xef\xbc\x51\x4b\xde\x60\x6e\xb3\xa7\xde\xa4\xb7\x82\xa0\xce\x57\xc8\x3c\x50\xb3\x5f\x13\x88\xb5\xc7\x46\xd2\xdf\x8d\x32\xfc\x9a\x40\xcc\xf8\xee\x57\x47\x73\xf2\xa9\x8e\xe6\x0e\x75\xe7\xbd\x4d\x55\xc1\xd1\xfc\xea\x68\xee\x98\x08\x5e\xd3\x6e\xeb\x3a\x7f\x65\x6e\x3f\xc5\xa7\x7a\xa3\x8e\x1f\x52\xd9\xc0\x0e\xf9\x06\x64\xc6\xac\xfa\x02\x99\x67\x79\x2c\x32\xbf\xc6\xc2\xbc\x3a\x9a\x1f\x24\xcc\x6b\xda\xed\xfd\xfa\x54\x93\x57\xf2\xbb\xd2\x77\x8b\x4f\xd5\xbb\x38\xaa\x5e\x70\xf1\xb8\x20\x61\xbe\xe2\xe2\xc9\x21\xf8\x1a\xef\x9c\x51\x1d\x5f\x99\xdb\x35\x5b\x14\x47\xc0\xe4\x79\x75\x34\x1b\x39\xfe\xca\xdc\x96\x0c\xf9\x9a\x40\x2c\xb9\xda\x23\xde\x19\xac\xf7\x66\x6f\x88\x80\xc6\xff\x8a\x8b\xbf\xcf\x46\xea\x7d\x43\x58\xbd\x7f\xe0\x62\xab\x02\x27\x26\xce\xe2\x57\x5c\xfc\x6c\xab\x42\x58\x99\xfc\xe7\x35\xde\x79\xba\x18\x4a\x98\x44\x18\x1c\x71\xb1\xc1\xe0\xaf\x8e\xe6\x85\x81\xe8\x2d\x91\x51\x9f\x36\x87\xa3\xd9\x95\x53\xa4\xef\xe2\x0e\x7e\x8b\xde\xc6\xec\x53\x53\xcd\x60\x85\x7e\x4d\xbb\x7d\x61\xd1\x7d\xc5\xc5\x26\xb3\x7a\x8d\x77\x96\xfc\xf0\x8a\x8b\xbd\x3d\xed\x15\x17\x6f\x00\xda\x6b\x96\xb0\xe1\x2c\xe8\x68\xf6\x6e\xa3\x57\x5c\x9c\xfd\xae\xf4\xec\x73\x7c\xaa\xb2\x81\x0d\xe1\x05\x17\xcf\x04\xa8\x7c\xc5\xc5\x3b\x59\x94\x18\x63\x8f\xaa\xf3\x5b\x2c\x9a\x9a\x83\x73\xed\x15\x17\xbf\x8a\x3e\x1d\xcd\xb5\xfd\x8a\xc0\xf9\x0a\x99\xbd\x11\xf5\x15\x32\xd7\x62\x3d\x42\x0c\xe7\xda\x7b\xac\xcc\x6c\xff\x7a\x8f\x95\x57\x17\xbd\x66\xe4\xf6\x2a\xc0\x57\x1f\x74\x02\xba\xbe\x2d\xe2\x25\x59\x45\x26\x10\xbb\x61\xc5\xbc\xfa\xa0\x57\xbc\xeb\xd6\xc6\xe8\xfa\x06\x64\x6e\x56\xd5\xdc\xad\xfe\x58\x0e\xc9\xeb\xd3\xb8\xd7\x89\x35\xd6\xb4\xee\x56\x8b\x72\x2a\x94\xf3\x42\x66\xb9\xe8\x6f\x0b\xa6\xba\x45\x43\xdd\x09\x2e\x78\x23\x14\x1a\xd6\xe5\xdb\x62\x6b\x53\x73\x8f\xfb\x52\x59\x63\xdd\xb4\xcc\x4a\x98\x6e\xfc\x20\xe7\xda\x1b\x8e\x66\x57\x7e\x17\x47\x6c\xdf\x35\x03\xf9\xf6\xc7\x72\x66\x8e\x3f\x0e\x51\xe6\x8f\x8d\x77\x46\x0b\x7d\x7b\x04\xdd\x30\x65\x42\xe6\x17\x93\xd7\x6b\xbc\xb3\x61\xb9\xaf\x8e\xe6\xa2\xf8\x05\x32\x57\xd3\x1b\xbe\xc1\xdc\x7e\x7c\xd7\x78\x67\x90\xfb\x2b\x73\xfb\xb3\x66\x21\xb3\x37\x6c\xbe\x32\xb7\x37\xd6\x86\x77\xc8\x31\x88\x22\xf3\x5b\xb0\x16\xbe\xc3\xf9\xf5\x40\x19\x2e\x75\x74\xf2\x57\x47\xb3\x77\xc4\xbf\x26\x10\x3b\x78\x85\x5e\x20\x73\x0b\x79\x6b\xbc\xb3\x81\x18\xaf\xf1\xce\x15\xbe\xcd\x2b\x64\x3e\xd5\x77\xd1\x33\x9b\x87\xaf\x90\x79\x78\x44\x0e\x4d\x7c\x60\xbd\x77\x1a\x54\xe5\xa1\x2f\x73\xfb\xbe\x2d\x2a\xba\x81\x51\xef\x34\x17\xa2\xab\xce\xb4\xdb\x9b\x3c\xff\xaf\xf1\xce\x95\x10\x80\x57\xe6\x76\x88\xc1\xe9\xd6\x56\x1a\x87\xa3\x79\x5a\xb3\x97\xa1\x0c\x9f\x4a\x57\xf6\xc4\x9c\x41\x77\xf4\x43\xe8\x99\xde\x1d\xfc\x8a\x8b\xbf\xcf\xef\x3a\xbf\xdb\xa2\xde\x28\x28\x8b\xaf\xb8\x58\xdb\xfe\x2b\x3d\xbb\x7b\x64\x88\x8b\x07\xe1\x21\xaf\x09\xc4\x3e\x07\xe7\xf1\xa8\x72\xa9\x44\x02\x31\xa5\xca\x13\xa2\xdb\xaa\x4c\x98\x66\x07\x8d\x77\xae\x38\x01\xdf\xc0\xc5\xea\x1e\xa6\xdd\x1e\xc0\x99\xf7\x51\xf5\x52\x22\x81\x8b\xfb\x15\x8d\xf4\xde\x3d\xf0\xda\xeb\xfd\xce\x47\x31\xe2\x3d\x56\xa6\x15\x7a\xc5\xc5\xc3\xfe\xc6\x3d\x56\x9e\x98\x91\x76\x1b\x38\xf3\x4a\xcf\x36\xcf\xc3\x6b\xda\x6d\x09\x54\x2f\xb8\x78\x6e\x65\xb5\x8e\xe6\xac\xa2\xf2\x7a\x49\x28\xc1\x50\xaf\x8e\x66\xaf\x10\x7d\x75\x34\x0f\x85\x8c\xf7\x3b\x77\x42\x96\x5e\x71\xf1\xdd\x2d\x86\xc9\xcb\xef\x2a\xaf\x7e\x69\xe4\x79\xdf\x70\x64\xb0\x1f\xf5\x41\xbf\xe0\x91\x57\x1f\x74\x05\x41\xbf\xcb\x7b\x8e\xdc\x53\x11\x0a\x8d\x43\xe1\x35\x23\x77\xe8\x7b\x11\x0a\x6d\x83\x23\x81\x98\x82\xdd\x7b\xac\x2e\x58\x79\x6f\xdc\x63\x05\xdc\x7e\x65\x6e\xbf\x98\x8f\x5e\xaf\x7e\x96\x23\xf4\xc6\x3d\x56\x8e\xaa\x8e\xe6\xbb\xf8\xd4\x2b\xf9\xa6\x45\xd3\xba\xba\xb5\x75\x34\x9f\xcb\x36\xb3\xb5\x0b\x86\xf1\x57\xc8\x3c\x61\xd6\xbd\x3a\x9a\x0b\xd6\xce\x57\xc8\xdc\xf1\x69\xbe\x42\x66\x29\x07\xef\xa7\x35\x9b\xd8\xc3\xf7\x33\xc1\x94\xba\x44\x64\xe4\x76\xa7\x7f\x6e\x6d\xe5\x4f\x30\xb7\xab\xcd\xd0\x7a\xef\xae\x11\x32\xdf\x2e\x66\x13\x88\x05\xd8\xf9\x22\x0b\x0d\x12\xe6\x53\x2b\x13\x19\x19\xef\x5c\xf0\xdd\xbc\x9f\x37\x08\x10\x2b\xfd\x1a\xef\xbc\x1c\x49\x21\xb3\x40\xfe\xdd\xe6\xba\xb4\x83\xa6\xdd\x1e\x8e\x86\xf1\xce\xa1\x66\x0b\x99\x47\xb6\x66\xb3\xd0\x14\x8b\x3a\x22\x61\x3d\xbd\x32\xb7\x17\x80\xfa\x8d\x04\x62\xd5\xaa\xf4\x56\x54\x9b\x61\xd0\x9c\xa7\xde\xd6\x24\xa2\x1c\xd8\xe1\x58\xb7\xa8\x49\x24\xba\xe0\x15\x75\x2a\xa5\xc7\x20\x23\x57\xac\x8e\xe6\x0e\xaf\xe9\x35\xde\xb9\xdb\x05\x21\x73\x87\x94\xf8\x9e\xb8\xb7\x8b\x05\x6c\xda\xed\x4f\x0c\x62\x02\x31\xf9\xd5\x6f\x24\x10\x53\xe7\x11\x17\x5f\x2a\xe1\xe2\xe2\xae\x82\x27\x2e\x36\xe0\xee\x8d\xfb\x9d\xc5\x11\xe2\x62\x93\xda\xbd\x26\x10\x93\xb1\xf0\x1e\x51\x46\x34\x52\xe2\x04\xf3\xbb\xae\xf0\xce\x34\x8a\xa2\x2a\x2c\x06\xeb\x72\x7e\xf1\x73\x2d\xef\x77\xd6\x98\xb6\x4c\xbb\xed\x1d\x25\x4b\x7a\xf6\x64\x97\x2d\x51\xf3\xdb\x2c\x22\xca\x64\x2e\x2d\x50\x73\xfd\xc0\xf2\xeb\x92\xa9\x0e\xd8\x59\xa2\x66\x53\x30\x2d\x51\x73\xfd\xac\x4a\xe2\x04\x50\x68\x5d\x9a\x80\x90\x0c\xcb\xfb\x9d\x9f\x69\x51\xef\x0c\x5c\xbb\x65\xda\xed\x85\x9d\x79\xa5\xe0\xcc\xd0\x8c\xa0\x67\x63\xb2\x5e\x29\xb2\xee\xd0\xfd\xc8\x12\x56\x7d\xea\x7a\xc6\xd4\xb6\xa4\x67\x7b\x6b\xdb\x4a\x91\xdb\x93\x71\x36\xde\xd9\x54\xd2\x4b\x47\xf3\x61\x52\x56\x64\x09\x43\x27\x5f\xa2\xe6\xb5\x7d\x6a\x64\x0d\xa2\x7b\x45\xda\x6d\xbc\x60\x4b\x7a\xb6\x89\x02\x96\x8e\xe6\x0f\xcb\xea\x8a\xfb\x9d\xf1\x92\x2c\x51\xf3\xdd\x7e\x75\xcd\xca\x32\x14\xda\xe8\x80\x75\xc7\x6d\xaa\xd6\xa3\xe8\x46\x95\x5a\x66\xe4\x3e\xc8\xae\xe5\x3d\x56\x6f\xf7\x5d\x1d\xaf\xc0\xb1\x75\x47\xd0\x0d\x2b\xe1\x0e\xeb\xbd\x3f\xd6\x7a\xcf\x8e\x5b\x77\xc4\xc3\x5a\xb3\x09\xe2\x5e\xbf\xeb\x29\x56\xec\xac\xa2\x9b\x50\x91\x15\x57\x3f\xe3\xfa\x5f\xc1\xdc\x26\xd6\x60\xe5\x48\x98\xc6\x87\x04\xd4\x83\x0d\xb8\x64\x6e\x9b\x61\x7e\x65\xad\xbb\x40\xe6\x65\x28\xb4\x17\x7c\x2c\x01\xb5\x17\x7c\x2c\x99\xdb\xe6\x33\x5c\x39\x72\x99\xfa\x21\x13\x2e\x0d\x6b\xe6\xa8\x1a\xd3\xaa\xd4\xba\x01\xf2\x2b\xe2\x9d\xb3\x35\x7b\x5b\x2e\x34\xe0\xe5\x3d\x56\x8f\x3b\xce\x7b\xac\xcc\xed\xb9\x4a\xa4\xb1\xe5\xc7\x3a\x9a\x2f\x4c\x85\xcb\x78\x67\xef\x96\x5d\x45\x83\x09\x04\xdd\x55\x22\x08\xc5\x1f\x47\xfc\x20\x6b\xdb\x78\xe7\x6f\xfb\x63\xad\xbb\xd3\xa7\xde\x1e\x8b\x91\x79\xc5\xd5\xcf\x9f\x4f\x23\xe3\x3a\x53\x56\xa4\xc3\x61\xcf\x5c\xa6\xdd\x7e\x86\x4f\x9d\xdf\xcb\x0f\x85\xb7\xc2\x56\xe9\x98\x73\x8b\x09\xa8\x2f\x77\xab\xcc\xed\x07\xca\xd0\x92\xb9\x5d\x30\x5f\xaf\xea\x95\x7c\x80\xf1\x55\xed\x2f\x62\x7f\x99\x76\xdb\xab\xd6\x96\x8e\xe6\xe2\x52\x31\x81\xd8\xbd\x2d\x32\xbf\xda\xf4\x56\xd5\x00\xa8\x08\xf5\xf6\xe7\x09\xe4\x5c\xde\xfe\x6c\xbe\x97\x25\x6a\xd6\x0d\xbd\xc2\xd1\x5c\x7d\xd7\xac\x2c\x98\x08\x56\x0d\xc7\x2b\x4f\x45\xcd\x17\xba\xd6\x12\x35\x67\x4c\x04\x4b\xd4\xbc\xb1\x2a\x2f\x51\x73\x59\xfe\xd8\xa3\x0a\xf4\xba\x44\xcd\x52\x34\x97\xf4\xec\xcb\xcd\x0e\x6a\x9e\x86\x4e\x2f\x51\xb3\xfa\xed\x8a\xdb\x9f\x39\x5e\x97\xb7\x3f\x9b\x92\x68\x79\x8f\xd5\x13\xef\x46\xee\x56\x7a\xd4\x0c\x22\xc3\xca\xb1\xa4\x67\x5f\x6e\x76\x13\x88\x79\x99\xe3\x8a\x2c\x61\xd8\x31\x96\xf4\xec\x86\x12\xbe\x40\xcd\x53\xfe\xfc\x12\x35\x2f\xbb\x10\xf4\xec\xe1\x53\x39\x6f\x6e\x2b\x51\xb3\xc0\x61\xf5\xc8\xed\xe9\x87\xe8\xaf\x37\xbe\x2d\xe9\xd9\xcb\xd3\xa7\x9b\xbb\x15\xbf\xf3\x92\x9e\xbd\x15\x14\x41\xcf\xfe\xac\x59\xe2\x44\xb6\x48\x7f\x4f\xb4\xca\xa3\x0a\x5b\xe2\xf2\xb2\x2a\xef\xd1\x5e\x71\xfb\x33\xa9\xbd\xd6\x30\x12\xc1\x0d\x2b\x6a\xee\x0a\x64\xd3\x6e\x1b\xf0\xb2\x44\xcd\x6b\xfd\xca\xb6\xbf\x64\x6e\x1b\x39\xb2\x04\xd4\x15\xcb\xe1\x32\x14\xfa\x3e\x7e\x45\xa6\xab\x3b\x7d\x08\x30\xb3\xef\xb2\xd4\x6f\xd8\xaa\x6b\x98\xb5\xc3\x31\x17\x50\x9b\x67\x66\x09\xa8\x5b\xbc\x6b\xc2\x25\xd7\x67\x38\x9a\x31\x3d\x2d\x99\xdb\x13\xdc\xb7\xc2\xd1\x8c\xde\xb5\x0c\x85\x6e\xc4\x0d\x2d\x00\xf5\x18\xf8\x43\xd7\xd4\x31\xf7\x58\xb3\x19\xd7\x9d\x11\x43\xa1\x13\x54\xa5\x35\xe3\xa2\x64\xdf\x55\x2b\xfb\x7c\xea\x52\x57\x0e\xe8\x68\x1e\x51\x34\x57\x9e\x6b\x5b\xe6\x76\x8b\x36\x1b\x2f\xf9\x58\xb3\x8e\x66\x35\x2b\x13\x88\x99\x15\x61\x99\x91\x7b\x63\x8a\x59\x66\xe4\x16\xba\x2e\x13\x88\x99\x1a\x71\x99\x40\x6c\x80\x55\xd7\x13\xb7\x6d\xb2\x3e\x05\xd4\xda\x33\x97\xcc\xed\xb3\x7c\x17\x0e\x49\x57\xb0\x3f\x1e\xcd\x40\xb0\x65\xda\xed\xd7\xa1\xd3\xd1\x7c\xbb\x3d\x4d\xbb\x3d\x87\x35\x1b\x44\xa6\xd2\x62\xbc\xf3\xed\x81\xf2\x28\xba\xfd\xae\x80\xba\x62\xce\x5d\x32\xb7\x6f\x95\x43\x13\x88\x65\xd7\x86\x80\xba\xe0\x4d\x5b\xe1\x68\xf6\x94\x37\xed\x76\xf7\x04\x79\x9d\x5f\x97\x99\xcc\x6d\xd9\x1a\x4b\x40\xed\x15\x1e\x4b\x40\xbd\x15\xdd\x6f\x18\x00\x19\x8d\xb8\xfd\x39\xbe\xab\xef\x46\x45\xc5\x04\x62\x92\x91\x96\x69\xb7\xc5\xb6\xeb\x35\xe3\x3a\x46\xad\x25\x6a\x4e\x20\xf7\xb5\x34\x78\x12\x65\xb3\x74\x34\x9b\x94\x7b\x2d\x33\xae\x2b\x15\x97\x47\x15\x68\x6e\x2d\xb7\x36\xe1\xa2\x6b\xc5\xfe\xf5\x43\xa0\xaa\x79\x5b\x54\x0b\xc5\x80\xb0\xbc\xfd\xb9\xc1\x2f\x5a\xd2\xb3\x35\xf0\x2e\x51\x73\x51\x37\x16\x35\x57\x55\x74\x51\x73\x3d\x16\x4d\x65\xe0\xf1\xba\xcc\xcd\xeb\x84\x7e\x71\x0f\x1d\x5d\x08\xd4\x8c\xd5\x6e\x79\xfb\xf3\xe7\x68\x98\x76\xdb\xeb\x6c\x96\xf1\xce\xc9\xdd\x0d\x6a\x9e\xcb\x1d\x2a\x6a\x1e\x36\x52\xd4\xfc\xa9\x7a\x05\x6a\xc6\x83\xbf\x44\xcd\xd9\xbd\xf0\x99\x51\x3f\xf9\xae\x28\xc3\x85\xf4\x45\xfc\xbe\x3f\x36\xf2\xc2\xbd\xff\x89\xaa\x30\xa5\x2e\x1d\xcd\x45\x55\xc4\x78\x67\x3d\xf8\x6b\x87\xd6\x4d\xab\x74\x34\x3f\xd0\x4a\x17\xa8\xb9\x17\xbc\x6f\x6b\x9b\xd0\x52\xb5\xcd\x2c\x61\x9f\x82\xc2\xdb\x9f\x07\x7e\xae\x15\xf4\x6c\x37\xac\x97\x55\x65\x95\x76\xe3\x9d\xc7\x75\xff\x4a\xec\x0b\xa8\x3b\xa1\xb5\xcb\x7b\xac\xbc\xe1\x6b\x99\x91\x7b\xa9\xa3\x6e\xb7\xb6\x0b\xd2\x7b\xac\xa4\xa7\xae\x1d\xb6\x5f\xa6\x5e\x1f\x74\x72\x82\xbc\x18\xfa\x75\x82\x04\xd4\x4d\x85\xc7\x50\x68\x03\x7e\x97\x8e\xe6\x7b\xfb\x63\x83\x32\xd4\xba\x0d\x85\x5e\x9e\xbc\x27\xd2\x14\xd3\x05\x01\x75\x12\x52\x9d\xc8\xfd\x68\x55\xc1\xa9\xf0\x43\xd2\x1d\xab\x6d\x96\xc9\xac\xf2\xa0\xa3\xf9\x6b\x7e\x88\xad\x6d\x98\xea\x12\x50\x57\xf4\xea\xef\x8a\x5c\xa6\x95\xa2\x53\x8f\x8a\xfe\x79\x8f\xd5\x61\xc7\x7d\x02\xea\xc1\x46\xf8\x22\x81\xd8\x6d\x55\x5e\x86\x82\xfd\xe4\x33\x81\xd8\x87\x29\xe6\x33\x81\x98\x2e\xdd\x2f\xe2\x9d\x89\xf1\xfc\xbc\xc7\x6a\x25\x8b\x41\x0f\xcb\x14\x35\x20\x3c\x7e\xd7\x78\xe7\x62\xab\xcc\x32\x84\xf9\xe8\xbb\x22\x95\x81\x5d\x70\x6b\x23\x60\x3f\x01\xf5\x8d\xed\xe5\x33\xde\xb9\x63\x4d\xfa\x74\x43\x4b\x06\xf8\x02\x50\xe3\x2b\xff\x92\x41\x37\x28\xe1\x9f\x80\xda\x43\xe1\x13\x50\x4f\x7c\x8b\x5f\x0a\x26\xb3\x1f\x62\xa9\x9b\xa4\xfa\x4b\x26\x22\x6e\x7e\xd7\x19\xc4\xb8\xf4\x99\x22\x6c\x5d\x16\x11\x56\xde\x2e\xf1\x05\x64\x46\x74\x7f\x42\xe6\x89\x5e\xfd\x99\x58\xfb\x7d\x2d\xaa\x6c\x00\xd0\xbe\x3b\x1c\xaf\x0c\xac\xb8\xb8\xa0\xb1\x7f\xb7\xb8\x89\x93\xeb\x33\xa2\xd9\x33\xf1\xf3\xa6\x2a\x13\x79\x7d\x91\x22\x8c\x05\xfc\x45\x8a\x30\x16\xe1\x27\x37\xdb\xf8\x97\xcf\xc4\xda\x6b\x58\x33\x87\xaf\x49\xb4\x3e\x71\xb1\xd9\x09\x3e\x70\x71\x97\xd6\xf5\x79\xbf\xf3\x65\x8f\xc4\xc5\xe6\x6b\xfa\xb2\x2c\x11\xb8\x76\x5f\xe0\x62\xe4\xfc\x17\x8e\x66\x0c\x53\x1f\xb8\xb8\x57\xce\x97\xcf\xc4\xda\xca\xae\x2f\x08\xd8\x2e\x7e\x13\x6b\x6f\x17\x21\xb8\xb8\x77\x8c\x2d\x9f\xb8\xb8\xe1\x16\xf9\xc4\xc5\x06\xdc\x7d\xe2\xe2\x0b\xca\xd0\x17\xf7\x3b\xdf\x56\xa5\xe3\x15\xdd\xf8\x8b\x3c\x60\xd9\x9a\xe3\xa6\x39\x3a\x18\xb8\x18\x44\xf6\x89\x8b\xe5\xeb\x7e\x45\x02\x27\xb6\xa6\xcf\x3c\x60\xcb\x19\x94\x80\xdd\x90\x39\x9f\x04\xec\x5c\x2c\xa2\x6c\xc8\xe5\xfe\x8a\xc4\x89\xe3\x77\x8d\x35\x70\x6b\x14\x95\x2b\xd4\xd4\x0f\x5c\x3c\xc7\x67\x33\xe8\x6f\x1b\x3e\x75\x7e\xa7\x55\xc5\xfd\xce\x56\x65\xa2\x78\x00\xcb\x27\x01\xbb\xef\x5f\x89\xfd\xaf\x7a\xc9\xa0\x7d\xd7\x07\xbd\x5c\x09\x42\xe6\x58\x45\x72\xb3\xc5\x6e\x9f\xc1\xce\xf2\xba\xbf\x80\xcc\xa8\xf7\x9f\xc1\xce\x63\xfb\xe3\xb8\xfa\xd9\xaa\xbc\x0a\xf9\xf8\xae\x43\x31\xfc\x71\x70\xd1\x99\x20\x83\x9d\x1f\x48\x23\x5f\xf5\x12\xba\xe4\x53\x4d\x04\xaf\x55\xb1\xb5\xdb\x6d\x51\xe1\xec\xb2\x11\x32\xb7\x66\xd1\xe0\x7d\x4c\xfd\x5f\x33\xec\x02\x35\xfb\x6b\x9a\x08\x14\x74\x72\xb3\x13\x67\xd3\xd7\xe2\x52\x36\x26\x48\xc8\xbc\x1c\x0d\xb9\xd9\x3b\x6a\x96\x53\x01\x3a\xfb\x22\xa2\x19\x45\xfa\x03\x32\x0f\x39\x33\x9f\x37\x55\xbd\xd1\x0c\x71\x44\xf6\xa9\x26\x20\x70\xee\x27\x64\x9e\xd3\xa7\xf4\xf7\x55\x2c\xc8\xcd\x7e\x1d\xe7\x1e\xf7\xa5\xfa\x34\x12\xb7\x32\xdd\xde\x54\x95\x5d\xf9\x7f\x5c\xfd\x4c\xcd\x3d\xee\x4b\x65\x34\x84\xcc\xa6\xde\xfd\x84\xcc\xde\xb6\xf0\xe9\x68\x1e\x1c\x91\x1f\x90\xb9\xbd\x40\x83\x2f\xae\x7e\xf6\xd4\xd3\xd1\x7c\x9c\xdf\x3f\x20\x33\x83\x23\x37\xdb\xfc\x45\x9f\x8e\x66\xfd\x92\xdf\x1f\x29\xc2\xe8\xe0\xf0\x92\x50\x4f\x01\x13\x6b\x9b\xa2\xf0\x1b\x71\x73\x13\x53\x66\x62\xed\x34\x7d\x57\x56\xdb\x63\x11\x65\xa3\x61\x46\xfe\x74\x34\x37\x50\xe4\x27\x2e\x3e\x0a\x3a\x23\x9a\xfb\x65\xcd\x3a\xd6\x3d\xc8\x8c\x68\x96\x9a\xf5\x89\x8b\xbd\x3b\xe3\x1b\xc1\x01\xf3\xbb\x72\xd1\x95\xb7\x46\x34\x6b\x96\xfc\x86\x61\x44\xe8\x8a\x9f\x11\xcd\xb7\x27\xb5\x04\xec\x07\x6b\xc3\x37\x23\xaf\x0e\x0b\xc9\xc4\xda\x62\x9f\xcf\x88\x66\x03\xdf\x3e\x1d\xcd\xaa\xe8\x9f\xf7\x3b\x5f\xaa\x31\x71\xbf\xb3\xa7\x9e\x29\xc2\xae\xf8\xae\x26\x2f\xc0\xdd\x67\x44\xf3\x88\x9a\xe5\xde\x43\x77\xfc\xcc\x03\xa6\x61\xea\x33\x0f\xd8\x80\x83\xf1\xe9\x68\xbe\x8f\x55\x81\x8b\x65\x6c\x7e\xde\x54\x65\x96\x8f\x4f\x5c\xec\xfd\x02\x9f\x8e\x66\xaf\x2d\xfb\x24\x60\x6b\xe0\xfd\x1e\x09\x9c\xcd\xa7\x72\xc0\xc0\x98\xdf\xa3\xf7\xcd\xbd\xe0\xfd\xce\xfd\xf1\x43\x71\x69\x26\x0b\xd8\x88\xe6\x3b\x5a\x15\xd9\x68\xfd\x90\xb1\x42\x0e\x9d\x11\xcd\x3d\xf9\x54\xbb\xc7\xb2\x19\x71\x49\x28\x13\x6a\x44\xb3\x77\x8b\x7c\x6f\x24\x4e\x67\xca\xc4\xc5\x21\xfa\x74\x34\x9b\x1e\xf0\x0b\x02\xf6\xf9\x95\x4b\xf7\x7b\x85\x90\x51\x8f\xd6\x6c\x95\x16\x53\x84\x5d\xc3\x8f\xca\x55\x56\xc1\x8b\x9c\xdb\xf8\x26\x3e\x53\x84\xc5\xa9\x6d\x8a\x30\x8d\x3c\x5f\x04\x3b\x63\x0c\xfc\x5e\xe9\x61\xee\x9a\x37\x12\x99\x5a\x95\x1c\x21\x1c\x01\x9f\x90\xf9\xf2\xe4\x95\x9b\x1d\xb2\xda\x14\x61\x63\x58\xf4\x7a\x08\xa7\xde\x9c\xdb\xaf\x07\x8a\xc1\xce\x2f\xc1\x95\x5f\xe4\xdc\x86\x6a\xf5\xc9\xcd\x2e\xce\xa6\x90\xf9\xae\x7e\x57\x6b\x36\x5e\xe9\x4f\x6e\xb6\x94\xd4\x4f\xc8\x7c\x63\xbe\xfe\xe4\x66\x8b\xbe\x3f\xb9\xd9\x47\x89\x0a\x64\xee\x9f\x72\x60\x69\xed\x54\x95\xd2\xd1\xec\xed\x36\x9f\x90\xd9\x0b\x95\x3e\x53\x84\x89\x46\x3f\x21\xb3\x36\xc9\xcf\x14\x61\xde\xc0\xf8\x09\x99\x5f\x2c\x15\x9f\x8e\xe6\x6b\x58\x95\xdc\x6c\xc8\x1b\x9f\x90\xb9\x40\x73\xfa\xe2\xa6\x2a\x8c\x1e\x9f\xdc\xec\xa6\xd8\x37\xa2\xd9\x8b\xab\x3e\x23\x9a\x9b\xe2\x37\x52\x84\x81\xfa\xbf\xcf\x30\x93\xcf\xef\xca\x99\x01\x9c\x7e\x46\x34\x6b\xfa\xfe\xe2\xa6\x2a\x08\x8d\x9f\x29\xc2\x24\xad\x7d\xdb\x60\xf6\xc7\xa7\xe6\x5d\x51\x0c\xee\xe0\xa2\xd3\x5f\x21\x73\x8e\xa7\x7a\xa3\x60\x5c\x7c\x3a\x9a\x8b\x27\x88\x89\xb5\x07\x21\x84\x9f\x8e\xe6\x8a\x3f\xf4\x0b\x6e\xb6\xb2\xcb\x88\xe6\x82\x0d\xe4\x33\xa2\xf9\xbb\x6d\xa4\x26\x11\x17\xa1\x89\xb5\xef\xe2\x8f\xcd\x99\x2f\x5e\xf3\x7e\x67\x03\x51\xbf\x13\x9c\x37\xc6\x4a\x6e\xf6\x84\xbc\xf1\xe9\x68\x36\x97\xe0\x07\x2e\xee\x19\x76\xca\x77\x22\x6c\x8a\x81\xd5\xd1\xbc\xd5\x10\xc0\xc5\x63\xab\x99\x78\xbf\xb3\x89\x0e\x3e\x71\xf1\xed\x69\xab\xa3\x59\x8b\xee\x67\x8a\xb0\xec\x61\x24\x2e\x5e\x51\x34\xb6\xc2\x83\xcc\xc4\xda\x13\x6e\xd2\x67\x8a\x30\xb7\xe4\x0e\x5c\xcc\xa1\xb0\x25\x60\x77\x3c\x77\x5b\x47\xb3\x17\x93\xed\xb8\xdf\xf9\xb6\x18\xaa\xc8\x4b\xd1\x3b\x02\x70\xd9\xef\x2b\x92\xab\xf8\x14\x55\xe4\x19\x7e\xc8\x94\x86\xc7\x22\x47\x95\xc4\x9e\x2d\x2e\x5e\xb7\xc5\x88\x68\x1e\x14\x45\x19\xa8\x13\x3b\xee\x77\x86\x6b\xb7\xc1\xc5\x43\xf0\xbe\x8d\x68\x56\xe7\xd9\xd2\xb3\x33\x1a\xd1\x36\xa2\x39\x63\xb3\xdd\x26\xd6\xbe\x58\x75\xdb\x88\xe6\x05\x8b\x66\xc7\xfd\xce\x88\xa0\x1d\x11\xcd\x8e\x86\xb8\x78\x5c\xd6\x4c\x7f\xc7\x2f\xaf\x50\xdf\x42\x66\x9d\x02\x5b\x1f\xb4\x06\xbd\x9d\xcc\xfe\xc7\x82\xdc\xde\x54\x75\x25\xdb\x80\x0f\x5a\xbb\xf1\xd6\x07\xed\x8d\xf0\x3b\x19\x11\x89\xec\xda\xc9\x60\x76\x94\xff\x2d\x73\x3b\x23\x25\xb6\x3e\xe8\xcf\x66\xdc\x8a\x32\x56\xe0\x16\x50\x1b\xe5\xb7\x4d\x11\xe6\x95\x6d\xdb\x60\xe7\x81\x22\xbd\xbd\xa9\xca\xac\x50\x3b\x00\x35\xae\xc6\x7d\x1b\xf1\xda\xad\x2a\x12\x4d\xfb\x54\xa6\x3a\x02\x67\xdf\x72\x84\xd8\x71\xdb\x9c\xdb\x75\xfb\x5d\xc3\xc4\x38\x9b\x76\x00\x6a\x0e\x94\x2d\xa0\x7e\xd0\x6f\x77\xdc\x54\x85\x70\xde\x32\xb7\x35\x7d\x6f\x00\xf5\xf0\x06\xf9\x6d\x44\xb3\xc1\x14\x5b\x47\xb3\x37\x1a\xef\x88\x68\xc6\xb5\xba\x73\x6c\x6d\xab\xf2\x66\x1f\x88\x67\x3b\x9b\x9c\x01\x26\xe1\x36\x45\x58\x3b\x36\x83\xfe\x2a\xab\xb7\x29\xc2\x2e\x50\xc6\x8e\xab\x9f\xa7\xc5\x70\xac\x5b\x15\x5b\xdb\x1b\x79\x76\x8e\xfb\x52\x29\x46\x44\x33\x6e\x82\x6d\x62\x6d\x4d\x6d\xbb\xc4\x75\x18\xf4\xa8\x84\x01\x81\x36\x17\x53\xde\x35\x8b\x26\x2b\x40\x59\xda\xc5\x44\xb5\x58\xc0\xb6\x80\x3a\x3b\x56\x02\x6a\x35\xba\x6d\x8a\xb0\x03\x53\x6b\x9b\x58\xdb\x44\xf7\x3b\x6e\xaa\xe2\x3c\xdd\x7f\xdc\x54\xe5\x87\x4c\xce\xb0\xac\xca\x48\x84\xe4\x77\xf5\x46\xa1\x48\xef\x6a\x2c\x09\xd8\x67\xeb\x68\xbe\xb0\x48\x6f\x13\x6b\x9b\xa5\x70\x8b\x9a\xcd\xd1\xbd\x45\xcd\x57\xf5\x5d\xbd\x33\xca\x01\x51\xf3\x1f\x45\xfb\x6b\x17\xc2\xd1\x5c\xac\x4a\xa6\x7a\xf2\x29\xa2\x7b\x54\xbf\x1b\xaa\x08\x2b\xd6\x88\xe6\xae\x74\xaa\x91\x33\xdf\x66\x18\xa1\xff\x59\xa4\xbf\x47\x71\xd4\x22\x1b\x2d\xdd\x37\xa2\x79\xb8\xad\x74\x34\xe7\xe2\x53\xef\x08\xc0\xa2\xbb\xa5\x67\xcb\xfd\xd8\x2d\x38\x7e\xac\x0d\x6f\xaa\xba\xf0\x0e\xef\xa6\xc1\xc4\x45\x68\x62\xed\xe9\x1c\xb5\x60\xe6\x5b\x95\xde\x19\x22\x5e\xb7\x8e\xe6\xe9\x2c\x44\x1e\x30\xb4\x8b\x2d\x3d\xdb\x6b\xdf\x77\x93\xde\xa9\xe8\x36\xb1\xb6\x59\x0a\xb7\x8e\xe6\x0f\xdd\x72\xeb\x68\x5e\x84\x0f\xec\xc8\x03\x86\xda\xb6\x45\xcd\xaa\x04\xdb\x88\x66\xc9\x1e\xdb\x88\xe6\xed\x31\x17\xd7\x51\xb9\x44\x45\xcd\x59\x89\xd4\x45\x19\x00\xe1\xdd\xe5\x44\x75\x3f\x64\x9e\x28\x5c\x48\x5b\xd4\xfc\x73\xda\xfe\x7d\xb1\xdf\x35\x98\x5c\xb6\xd0\xa9\x47\x5b\xd8\xde\x54\xb5\x9a\x5f\x41\x94\x99\x13\x75\x1b\xec\x7c\x7b\x28\x98\x73\x5b\xdd\x78\x1b\xec\x9c\xc0\x8c\xdb\xab\x9f\x37\x4c\xd1\x3d\x22\x98\xdd\xaa\x8c\xf0\x75\x41\x8e\x08\x66\x67\xc9\x01\xa8\xdb\xf4\x20\x96\xb9\x3d\x1f\xab\x32\x4f\x05\x9a\xe4\xd6\xd1\xec\x95\xe2\x5b\xe6\xb6\x57\xea\xec\x11\x37\x37\xb1\xa8\x04\xd4\x22\xf7\x1d\x39\xb7\xb3\xdf\x65\xa9\x3f\x9e\x20\x32\xb7\x25\xcc\x6f\xaf\x7e\x1e\xe8\xc6\xdb\x9c\xdb\x06\xa4\x6f\x01\xf5\xf4\xbb\x3a\x9a\x57\xf1\xc7\x26\xaa\x05\xd7\x6f\x01\xb5\x34\xa7\xad\xa3\xd9\x3c\xae\x7b\x06\xc0\xa4\xfb\x11\xd1\x0c\xf6\xd9\x3a\x9a\x2f\x65\x88\x8e\xe6\x77\xf8\x21\x93\x15\x4c\x9f\x4a\x0f\xcb\x56\xa5\x41\xac\xda\x66\x99\xea\xd8\x8b\xb6\x8e\xe6\x0b\x9b\xde\x8e\x9b\xaa\x3c\x9a\x23\x45\x98\x62\xff\x91\xa9\x0e\x1b\x67\x3f\x3a\xe6\xc0\xb9\xdb\x88\x66\xef\x56\xdb\x71\x53\xd5\xb0\xaa\xc8\xee\xc8\x52\x31\x45\x58\x1f\xd6\x2c\x47\xa8\xfa\xd4\xeb\x6c\x54\xe1\x64\x6e\x7b\x9b\xe1\xfe\x03\x50\x5b\xb3\x37\x55\x79\xe8\xcb\xdc\x36\xc1\xc2\x7e\x62\x7e\xa9\x59\x40\xfd\x61\x99\xd9\xaf\x41\x37\x10\x92\xf7\x2b\x33\xbf\xfb\x63\xd6\x73\x77\x31\xe8\x68\x3e\x9f\xef\x86\x2a\x42\xf7\x8d\x68\xf6\x42\xd8\x2d\x6a\x36\xef\xeb\x7e\xe3\x7a\x17\x8b\x31\xbf\xf4\x08\xd4\xdc\x8e\x52\xc2\xc4\xda\x3b\xaa\x32\x02\xd4\xf5\xfc\x46\x84\xaf\x6d\xb6\xbf\xaa\x4f\xaf\xc9\x55\x94\x4e\x4b\x03\xaf\xaa\xa3\x8e\xe6\xe5\xc6\x91\x9e\x6d\x3a\xe8\x6d\x62\xed\x1e\x3f\x8e\x30\x4f\x8b\x26\x1b\xc1\xef\xbc\x4d\x11\x66\xe4\xe6\x16\x35\xc7\x21\x68\x44\x73\x55\x84\xea\x68\x7e\xe3\xc7\x5a\x09\xec\xef\x0a\xce\x8c\x45\xfa\x6b\x3c\xfb\x5e\xe1\xbb\x61\xa9\xe8\x68\x36\xd7\xdc\x36\x0f\x58\x56\xd9\x88\x88\x66\xbb\xaf\xa3\x79\xab\xa8\x98\x58\xbb\xa9\xa7\x49\xcf\x36\x11\xdf\xfe\xe2\xd2\x4c\xab\xd2\x1b\xf5\xfa\xae\x06\xa2\xec\x53\x93\xab\xe0\xf7\xd9\xa2\xe6\xef\xb2\x66\x83\xe6\xf0\x38\xec\x4f\x79\x45\xf4\xc4\x36\xb1\xb6\x6c\xc9\x2d\x6a\x2e\xf1\x63\xf7\x2f\xc6\x99\x6d\x44\xb3\x99\xe8\xb6\x8e\xe6\xef\xf9\x55\x4e\x9e\x1d\x80\x1a\xfa\xcd\x0e\x1f\xb4\xba\x93\xcc\xed\xea\x7e\xdc\x11\xbc\xcf\x57\xbc\xfa\x39\xdb\x60\x01\xf5\x02\x9c\xee\x1d\xf4\x3f\x86\x62\x07\xdd\x91\x55\xb4\xcd\x43\xe2\xa1\xb6\x23\x78\xdf\xa7\x32\x5d\xd5\xd9\xbc\xfa\xf9\xdd\x3e\x35\x0f\x49\xb1\x66\xef\x08\x20\x6a\x6c\xcb\xdc\xbe\x95\xc6\xde\x54\x25\x03\x6a\x1f\xb5\x32\xd7\x76\xa4\x08\x53\x79\xd0\xd1\xfc\x2a\xe8\xbc\xa9\xca\x74\xe5\x3b\x72\x6e\x4f\x7f\x2c\xa0\xc6\xf8\xb0\x23\xe7\x36\x8c\xaf\x2d\xa0\xbe\x3d\x40\x8f\x5a\x37\xb6\xd0\x7d\x22\xef\x8a\x4f\xbd\x94\xad\x5a\x34\x28\xc3\x75\x72\x22\x6f\x92\x4f\x8d\x87\x55\xef\x3a\x66\xef\xc4\x05\xb6\xe3\xea\x67\xf4\xf9\x63\x44\xb3\x39\x4c\x8e\x8e\xe6\x6b\xfa\x54\x37\xd6\xb6\x68\x32\x0a\x34\x9c\x23\xa0\x4e\x38\xf4\x8f\x80\xba\xc3\x28\x3e\x3a\x9a\x67\xf7\x5d\x83\x50\xd0\xe8\x8e\x80\xba\x63\x01\x3b\x7f\xa4\x08\xf3\x5d\x51\x06\xdb\xe4\x78\xf5\x73\xe1\x20\x3b\xde\xef\x5c\x6f\xdb\x8c\x41\xec\xc6\xac\x7a\x74\x34\x3f\x97\x55\x69\x40\x40\x33\x39\x3a\x9a\x37\x2a\xeb\x49\x41\x67\xa5\x0b\xa6\x08\x4b\xac\xf6\x93\xe2\x68\xae\x14\x45\x19\x9f\xef\x7a\xd3\x1c\x67\xc4\x49\xe6\x11\x72\xac\x04\xd4\xde\x13\x74\x4c\x11\xb6\xd0\xab\x4f\x92\xf3\x36\x2c\xb2\x9e\x9f\xa8\x8a\xf5\xac\x35\xe9\x18\xef\xac\x64\x3b\x49\xba\x63\xf3\x5d\xe3\x61\xd1\xc9\x4f\x8a\x4b\x42\x69\xa4\xf7\x3b\x17\x0c\xad\x27\x50\x33\x72\xe0\xe8\x86\x36\x67\xf5\x91\x9e\xdd\x9c\x50\x6f\xaa\xba\x51\x95\xcf\x1d\x8e\xf5\x46\x51\x37\x25\x86\xb8\x63\x8a\x30\x93\xbc\x1d\xdd\xd0\xf9\xf6\xbb\xde\x44\x96\x7c\x8a\x16\x7a\xa6\x55\x79\x27\xc2\xb0\x55\xee\x5f\xe4\xc6\xf1\x7e\xe7\x43\xac\xf4\x11\x35\xeb\xd7\x3b\xe6\x01\xdb\xd8\xe5\x8e\x37\x55\x65\x18\x44\x27\xe2\x9d\xed\x82\x6e\xe8\xc2\xa1\x70\xb2\x41\x91\xce\x82\xf1\xce\x15\xca\xd0\x31\xde\x39\x15\x8b\x72\xde\xd0\x00\x4f\xf6\x4e\x04\xc7\x59\x37\xb4\x57\xb4\x9c\x6c\xd0\xdc\xeb\xbb\x71\xf3\x9a\x4f\x9d\xdf\x6a\xd1\xa3\x19\xb7\xc8\xc9\xc1\x89\x62\xa7\x48\xcf\xfe\x1c\x67\x51\xb3\x69\x85\x8e\xf1\xce\x0f\x26\x94\xa3\x1b\xba\x21\xbe\x4e\xd1\xe0\xc9\xde\x3f\xa2\xe6\xfc\xfe\xca\xc8\x73\xcc\xb9\x9d\x6f\xeb\xd1\x43\x8d\x65\xf8\x04\xa0\x76\xc7\xc9\xdc\x9e\x00\xdb\x63\xce\xed\xa3\x48\x29\xe1\xa6\xf4\xc7\xda\x7e\x01\x6b\x27\x52\x84\xb9\x2f\x4a\x84\xba\xfb\x21\xe3\x25\x41\x67\x27\x3c\xd4\x58\xc3\x4e\x91\xa9\x0e\x84\x3c\xde\x54\x35\x5d\xbd\x02\xea\x17\x7e\xd1\x31\x45\xd8\xc4\xe8\x71\x00\xd4\x6d\x83\x41\x4e\x30\xb7\x9b\x3f\x96\xde\xf9\xf9\x63\xb3\x77\x62\x90\x3f\x86\x42\xbf\xdb\xef\xaa\x95\x61\x13\x38\x86\x42\x17\x94\xc3\x53\x23\xdb\x21\xeb\x53\x40\x3d\xba\x8d\x64\xa9\x7b\x33\xe0\x31\xde\xf9\x89\x66\xc8\x89\xc2\x2f\x70\x04\xd4\x85\xc3\xf7\x00\xa8\x87\x87\xe0\x69\x26\xe6\x85\x4b\x76\xe2\xa6\x2a\x18\x7d\xa7\xa9\x85\x62\x01\x3b\x2d\x2e\x65\x63\x52\xbc\xfa\x59\xe5\xe1\x08\xa8\x1b\x14\xe2\x23\x73\xdb\x98\xd6\xa3\x1b\xfa\xc3\xff\x7b\xc2\x0d\x0d\xfd\xe6\x98\x22\xec\x53\x4a\x78\xf5\x73\xab\x56\x15\x37\x37\xd1\x23\x01\xf5\x1b\x8d\xd4\x4d\xa9\x60\x6f\xfa\x6e\x94\x12\xba\xa1\xbd\x64\xf0\x98\x22\xec\x75\x34\x4c\x11\x56\xdd\xad\x32\xb7\xa7\x5b\xac\xc7\xd1\xcc\x2c\xf4\x88\xbc\x60\xac\x74\x43\x9b\x70\xf5\x74\x23\x11\x86\x3f\x56\x94\xa1\x76\x1e\xdd\xd0\x39\x59\xf4\xaa\x6b\x94\xf0\x03\xa0\x9e\x97\xab\xdd\x14\x61\x21\x8d\x75\x43\xeb\xb6\x3b\xa0\xe6\xb1\x40\xfd\xc7\x78\xe7\x38\x4f\x45\xcd\x86\x6d\x9e\x11\xcc\x7c\x3a\x28\x6a\x36\x3c\xf6\xc8\xdc\x4e\xcb\xa7\x88\xee\x45\xa0\xd0\x09\xe6\xb6\x72\x7e\x44\x9e\x28\xf6\xd1\x30\x28\x12\xdc\x74\x74\x43\x57\xbb\x30\xb4\xed\x63\x87\x3c\xba\xa1\xab\x07\xe8\x88\xfb\x61\x99\x5f\xef\x77\x3e\x8e\xb3\x89\xb5\x6b\x74\x41\x83\x49\x34\x43\x51\x86\xb6\x7f\xa6\x28\x43\xb1\x1f\xa8\x19\x64\x74\x44\xcd\xea\xe4\xc7\x3c\x60\xfa\xc8\xce\x0c\x79\xc5\x68\xc4\xfd\xce\x60\xbd\x63\x1e\xb0\x04\x0f\xfc\x84\x1b\xda\x95\x13\x79\xc0\x9c\x6e\xe3\x9d\x0f\x84\xb1\x33\x23\x35\x87\x45\x45\x37\x8a\xe8\x01\x35\x4f\x13\x52\x9d\x19\xa9\x1b\x98\x05\x51\xb3\x77\xe9\x1e\x13\x6b\x5f\xee\x50\xdd\xd0\x13\x73\xc4\x11\x35\x27\x05\x94\xa8\x39\xc1\xf3\x39\xc6\x3b\x5f\x4a\x42\xe9\xd9\xf9\xb2\xe8\xfc\x2a\x55\x22\xb1\xb6\xb3\xaf\x1b\x3a\x8d\x5f\x19\x79\xce\xa3\x16\xea\xc8\xc8\xdc\x3e\x8a\x05\x43\xa1\xcf\xb4\x68\xca\x2c\x4c\x04\x47\xe6\xb6\xb9\x01\xcf\x13\x6e\x2c\x5b\xc8\xa9\x3d\xb1\x08\x1d\x43\xa1\x87\x5b\xdb\x9c\xdb\x5b\x2d\x45\x40\x3d\xd4\x42\x5f\x53\x37\xb8\xe4\x02\x50\x2b\x8e\x04\xd4\x9a\x26\x8e\x29\xc2\x1a\x1e\x87\x03\xa0\x9e\x03\xaf\xf4\x11\x50\x1f\x75\x54\x53\x84\xbd\x1e\xd3\x00\xea\xe1\x6d\xdd\xc7\x50\xe8\x84\x6d\xff\xbc\xba\xb1\x54\x00\x64\x6e\x57\xf5\x10\xdd\xd0\xa6\xb2\x3f\xc6\x3b\x7b\xdf\xd0\x79\x43\x0b\xa5\x66\xaf\x7e\xfe\xb0\x62\x1d\x01\xf5\xa3\xaa\x1c\x80\x1a\x5a\xe9\x59\xe1\xcb\xe0\x43\x02\x6a\x83\xd9\x8f\x80\xba\x82\x5f\x8e\xcc\xed\x57\xd1\x0d\xa0\x6e\x5e\xfe\x72\x74\x43\x57\xf0\xcb\x31\xde\x39\xab\x76\x9a\x22\xec\xba\xac\x19\x80\xd9\x9a\x55\x69\xfb\x75\x8b\xe9\x86\xde\x9f\x8d\x34\x25\x9a\x5b\x4c\xe6\x76\x55\x0e\xe8\x86\x16\x28\x9d\x4f\x86\x89\x3f\xfe\xd4\x52\xec\xaf\xcc\xed\x81\xc5\xef\x98\x22\xec\xb6\xcd\x71\xbf\xb3\xe3\x2c\xa0\x3e\x0a\x2b\x13\x6b\x57\x90\xe0\xf9\x9c\x5f\x2c\xa5\x47\xe6\xf6\xab\xfc\xd1\x0d\xfd\x08\x0d\x4c\x11\xf6\x29\x7f\x64\x6e\xbf\x42\x03\x01\xf5\xaa\xbe\x1b\x91\x17\x4c\x4a\xc4\x3b\x2b\x24\x65\x6e\x5f\x00\xb4\x03\x6a\x1e\xc7\xad\xf1\x47\x62\x6d\xaa\x32\x45\xd8\x8d\x1b\xe8\x78\x53\xd5\x56\xc1\xdb\x86\xf6\xab\xfc\x8b\x9a\x8b\x83\xb3\x35\x88\xdd\x56\x15\x41\x64\xfe\x58\x94\x81\x47\xfb\x80\x9a\x47\xf3\x30\x92\x9e\xfd\x25\x3f\x64\xea\x86\xf8\xb1\xbe\xb9\xe8\x91\x89\xb5\xa3\x0b\xaa\x22\xb8\xbf\x4f\xb8\xa1\x61\xaa\x9f\x13\x64\x57\x6a\x06\x35\x77\xb3\x23\x1e\xdd\xd0\xc5\x46\x1e\x0d\xbc\xf1\xd4\x3c\x60\xd8\xb8\x8e\x79\xc0\x3e\x8f\x39\xef\x77\x6e\x38\xb6\x8e\xa8\xd9\xdc\x23\xe7\x44\x2a\x03\xd6\xd5\x09\x5b\x37\xb3\xaf\x1b\x7a\x3d\x56\x25\xaa\x52\xc0\x4a\xcf\x0e\xd8\x68\x1e\x30\x6d\xb6\xc7\x3c\x60\x24\x0d\x4b\x97\x89\xb5\xaf\x61\x11\xad\x9b\x8b\x2a\xd2\x65\x62\x6d\x54\xcd\x74\x89\x9a\x31\xd2\xa6\x4b\xd4\xdc\x7f\x4c\xc7\xe9\x32\x4b\xd8\xf8\xb1\x62\xa5\xcb\x78\xe7\x93\x7c\x57\x2b\xc1\x8f\xb9\x2c\x5d\xc6\x3b\x93\x8c\x22\x5d\xa0\xe6\x9e\x7e\xbc\x6f\xe9\x12\x35\xe7\x61\xcd\x32\x88\xd2\x2f\xc4\x7e\xba\x04\xd4\xed\x47\x2d\x49\x97\x37\x55\xc1\x40\x48\xd7\x15\x59\x2c\x1a\x45\xb3\x1d\xda\x06\x01\x35\xf9\x5e\xd2\x95\x8c\x87\xfd\x31\xf7\xa5\x2b\xc5\x4d\x46\x34\x49\x0f\x35\xfc\x84\x74\x45\x28\xf4\xcd\x30\xa6\x58\xea\x0c\xa3\x80\x7a\xfe\x30\xc6\xd3\x25\xa0\xee\x3f\x31\x65\xe9\x4a\x71\xbd\x8b\x35\x7b\x54\x35\xdf\x35\x87\xfc\x43\x17\xcc\xb9\xcd\x0d\xf8\xe9\x92\xd7\xfd\xfd\x60\xc6\x74\x25\xef\xff\xcd\xb6\xca\x2c\x25\xb7\xdf\x15\x60\x1e\xfa\x2b\xaf\xbb\xfe\x44\xf7\xa4\xeb\xf6\xd4\xee\x54\xa5\x1b\x1a\x5e\x77\xba\x6e\x73\x8c\x67\x3a\x68\xce\x6d\x6e\x21\x49\x97\xf1\xce\x18\x21\xd3\x65\xce\x6d\x48\x98\xe9\xf2\xa6\xaa\xd2\x2d\xca\x20\x2a\xd6\x2c\x33\xdf\x46\x46\x02\xb1\xc6\x4a\xd0\x0d\x4d\xf4\x7a\xba\x74\x43\xaf\x9b\x0e\xca\xeb\x9e\x1f\xa3\x01\xa0\xae\x44\xda\xa6\x4b\x37\xf4\x7d\xd1\x2a\x13\x88\x65\x07\xd6\x78\x67\x72\x73\xa5\x4b\x37\xf4\x15\x3f\x56\xeb\x76\x6d\x98\x58\xbb\x15\xba\x9f\x65\x10\x65\x7a\x04\xa0\xee\xb7\x63\x25\xa0\x26\x79\x7b\xba\xbc\xdf\x39\xbd\xfe\x58\x03\x60\xb5\x19\xf2\x9c\x3b\xfd\xd5\x0d\x9d\x1d\xba\x6c\xea\x06\x17\xa1\x6e\xe8\x7c\x7c\xaa\x2f\xe3\x30\x1a\x26\x10\x23\xe4\x33\x5d\x91\x40\x2c\x31\x1a\x02\xea\xef\x65\xba\x8b\xe4\x5e\xfb\x2b\xaf\x7b\x1c\xb6\x76\x89\x54\x24\x56\xa5\x01\xf0\xe3\xbb\xc5\x2c\x52\x87\xa1\xf3\xa6\xaa\x33\xd9\xf8\x25\x0c\x80\xb4\xb9\x44\xa4\x09\x8d\x0c\x5e\xf7\xf4\xbb\xde\x87\xeb\xd0\x79\x53\xd5\x55\x2d\x9a\xca\xe0\xd8\x0c\x83\x8c\xb6\x35\x47\xc2\x34\xaa\xaa\xae\x67\x97\x4a\x55\x94\x0d\xfa\x6b\x02\xb1\x77\x32\x1a\x41\xde\xde\xec\xc1\x20\x6f\x57\xba\x00\x6a\x6e\xf3\x62\x52\xaa\xf1\xb0\x2e\x15\xe3\x9d\x2f\x27\xc5\x04\x62\xdf\xf1\x43\x31\xbf\x8c\xa4\xf1\xce\x7d\xd3\x7d\x50\x73\x81\x12\x96\x2e\x6f\xaa\xc2\xe2\x97\x2e\x51\xf3\x1d\x5d\x70\x7e\x93\xef\xea\x96\xf5\xa9\xe4\x6d\x54\xe5\x74\x35\x53\x37\x28\xba\x41\xcd\xf5\xc4\x53\x51\xc6\x62\x06\x25\x6f\x43\x26\x4c\x57\x0b\x46\x1c\xa2\xaf\xe9\xcb\x78\x18\xf6\x16\xbe\x2a\xdf\xe5\x68\x1e\x9f\x3f\x06\x45\xa6\xcb\xef\x9a\x9a\x63\xd1\xc1\xc8\x12\x16\xdf\x75\x3d\x17\x5b\xa5\x55\x64\xd1\x7d\x51\x33\x57\x9e\xa5\x4b\xd4\xfc\xfe\x3e\x74\x7f\x5f\xec\x7b\x53\xd5\xfb\xb0\xe3\x4c\x20\xb6\x5c\x81\x3d\x42\x18\x18\x37\x3d\xd4\x24\xb4\x49\x97\xbc\xee\x73\x58\x18\x26\x10\xe3\x46\xf5\x74\x01\xa8\xfb\x76\x2f\x03\xa8\x47\xce\xf4\xce\x50\x68\xbc\x2d\xe9\x32\x14\xba\x6d\x16\xe4\x1f\x09\xc4\x58\xcc\x02\xea\xee\x6e\xd5\x0d\xdd\x32\xc3\xa8\x1b\x3a\x96\xba\x6e\xe8\x92\x18\xd5\x6e\xf6\x4e\x37\xbe\x80\x1a\x8f\x43\xba\x46\x24\x6e\xa5\x55\x86\x42\xcf\x46\x9b\x47\x84\x6c\x30\xe6\x5e\xfd\x4c\x32\xf3\x74\xe9\x86\x6e\xee\x47\xe3\x9d\xb3\x92\xdc\xab\x9f\x6f\x77\xba\xf1\xce\x4f\xb6\x68\xe2\xd6\x4e\x17\x04\xd4\x3b\xde\x65\xea\x71\x22\xa4\x2b\xe2\x9d\x6f\x96\x9c\x6e\xe8\xfc\xd2\xaa\x19\xc2\x99\xb1\x12\x32\x77\xcf\x88\xe9\x85\x17\xce\x82\x90\xf9\x6b\xcc\xa0\x90\xb9\x2d\x6a\x0e\x47\x73\xa7\x91\xde\x45\x35\x94\xa8\x3a\x9a\x87\xa7\xad\x29\xc2\xda\x4d\x9b\x23\x45\xd8\xc7\xb0\xcf\x88\xbc\x60\xac\x66\xdc\x55\xc4\x0c\x9a\x22\x8c\xe0\xe8\x74\x4d\x6f\x3d\x88\x66\xc8\x99\x79\x2d\xaa\x77\x2d\x24\x8c\x29\xc2\xb6\x4b\xd4\xbb\xa8\x9a\xe2\x57\xc8\x5c\x06\xcd\x08\xe6\xb6\x2b\xc7\xd4\xd9\x9f\xaa\x48\x40\x66\xf7\xf2\x23\x53\xbd\xfb\xae\x26\x82\xc5\x48\x3e\xd2\xff\x9c\x85\xc7\x64\x05\xdd\x56\x45\x04\xa8\x4f\xe5\x44\x3d\x0c\x8e\xb8\xf8\xa8\xc6\xe8\x68\x5e\x37\xf3\x2b\x2e\xae\xae\x0d\x53\x67\x5f\x6e\xc9\x57\xeb\xfd\xa2\x2a\x53\x84\xdd\xce\xbe\xb8\x78\x45\x51\x93\xa6\x3d\xf2\x2e\xaa\xa4\xd0\x88\xbb\xa8\x2e\x8b\xae\xd8\xc5\x5e\x10\x17\x67\xc7\xea\x0d\x0e\x18\xad\x02\x17\x4f\x6e\x8a\x49\xd7\x1b\x4c\x75\x9f\x8a\x8b\x9d\xc1\x37\xf2\x44\x31\xce\x3a\x9a\xcf\x62\xd5\x49\xcf\xfe\x36\xdd\xd7\xd1\xbc\x55\xa4\xc5\xc5\xcd\x1f\x2f\x23\xf4\x07\x8b\x70\xe9\x78\xad\xfe\x58\x93\x97\x07\x8a\xb8\xf8\xbe\xfc\xb1\x41\x73\x1e\x28\xcb\x14\x70\x9f\xef\x76\x25\xb9\x45\xbc\x8d\xcb\x36\xaf\x10\xce\xbe\x6b\xf6\xce\xc4\x74\x87\xa3\x59\x15\xdd\x88\xe6\x36\x58\xed\x4b\xef\xcc\x60\x34\x96\xde\x19\xe7\x77\xb9\x9e\x3d\x40\x3f\x71\x93\xb0\x42\x7a\xf6\x72\x11\x9a\x07\x6c\x3a\xbf\x41\xcf\x1e\x2c\xa4\xa0\x67\x6f\x5a\x25\x2e\xfe\xb9\xdd\xe6\xef\x8b\xfd\x2f\x38\x15\x56\xeb\x35\x73\x6e\x5e\x21\xf3\x3d\x58\x18\xfa\xa0\x2f\xa1\x81\x3e\xe8\x22\x34\x90\xb9\x7d\x29\x70\x4c\x11\x56\x5f\xdf\x75\xa9\xab\x78\x7c\xe2\x08\x75\x72\x7d\xd0\xe9\x62\x28\xbc\x8b\xea\xcd\x4c\xfd\x76\xa9\xbb\xc6\xb6\x7a\xa6\x6a\x18\x90\x79\x3c\x76\x41\x47\xf3\xa7\x44\xf5\x2e\x2a\xae\x0e\x49\x17\x90\x79\x0c\x51\x92\x97\x3b\x0f\x4f\x6d\x21\xf3\xf2\x30\xda\x5e\x88\xd0\x18\xd5\xad\x70\x16\x1a\x6c\xa7\x5e\xf9\xa3\xa3\x39\x3d\x56\x65\x4a\xb4\xe2\x8f\xe3\xc6\x4c\x8b\x9a\xbc\x54\x87\x4e\xdc\x35\xc6\xb0\x9b\x55\x3b\x1f\xaa\x3a\x8a\xee\x49\x9b\x85\xcc\xcd\xb9\x3e\xc6\x87\x56\x86\x0e\xc8\x5c\xbb\x2b\xff\x38\xbf\xd9\x9a\x75\x44\x7a\x54\x19\xd1\x1c\xc2\x4a\xe6\xf6\xf9\x58\xf9\x71\xb9\xb3\x87\xbe\x8e\xe6\x14\x55\x81\x9b\x2e\xc5\xa0\xcc\xed\xe6\x81\x72\x42\xaf\xf6\x43\x71\x99\xf5\x4f\xab\xd2\x65\xf6\x4e\x20\x58\xba\x0c\xaa\xe2\x14\x48\x57\xe4\xd5\xa9\x14\x3d\x7c\x5f\x9f\x7a\x17\x15\xe3\x9c\xc2\xd1\xcc\xca\x49\x42\xe6\x2b\x3e\xc4\xfc\xb6\xcb\xaa\x64\xaa\x27\x7f\xac\x9e\x89\x36\x98\x4c\x11\x46\x54\x72\x4a\x3a\x9a\x33\xea\x7d\x0a\x5c\xdc\x7c\x37\xe6\xd7\x77\xcd\xab\xf3\xf9\x63\x4d\x5e\x2c\xc2\x04\x2e\x9e\x09\xdd\x38\xe9\x68\x26\x36\x3c\x25\x71\x71\x3f\x16\xdd\xda\xf1\x54\x1c\x91\x7c\x37\x52\xde\xd1\x8c\x48\xac\xfd\xc3\x2b\x48\x29\x98\xdb\xd9\x1f\x9b\x68\x1a\x59\x9d\x74\x34\x5f\x3f\x6e\xd9\x94\x52\x5c\x03\x4a\x9b\x75\x34\x9f\xee\xbb\xae\xe7\x61\xd1\x1b\x6f\x6f\xbf\xab\x72\xf5\xd2\xfd\xb8\xc1\x39\xd1\x0c\xe9\xd9\x5c\xcc\x91\x92\xf1\xce\x1f\xb2\x3a\x81\x8b\xc7\xc7\xd6\x48\xb7\x7a\x35\xda\x6f\x0a\x7a\x36\xda\x45\x02\x17\x4f\x52\xc1\xa7\xa4\xa3\x79\x7d\xfe\xd8\xac\xf8\xc7\xa2\xde\x0a\x34\xc0\xe4\x5d\x54\x6e\xba\x74\x7b\x61\xcd\x66\x34\x74\x34\x2b\x82\x92\xb8\xb8\xb9\xae\xa4\x67\xef\xe1\x53\xfa\x4b\x4e\xd1\x94\x22\x0f\x18\x3a\x4f\xf2\xc2\xa9\xe8\x6f\x96\xbe\x0b\x5a\x4f\x5e\x38\x95\x50\x81\x52\x8e\x48\x04\x5a\x95\xe3\x5a\x4c\x5a\xa5\xa3\xf9\x4e\x16\x0d\x02\x3d\x74\xdf\xc4\xda\x50\x0d\x53\x8a\xc4\xda\x1c\x19\x49\x47\xf3\x98\xbf\x48\xbc\x9c\x92\x39\xb7\xd3\xf0\x45\x1d\x73\xc7\xa2\x4c\xe6\x66\xef\x22\x3e\xd4\xa7\x5b\xc1\x6e\xfb\xbd\x31\xd3\xee\xc8\xdc\xee\x37\x0d\x2e\x5a\x3b\x51\x4a\x93\x3e\xe8\xb2\x19\x55\xef\xa2\xaa\x87\x45\x55\xe2\x42\x04\x8b\xd2\xe1\xdc\xbc\x5e\xee\x3c\x1f\x9f\xca\x11\xe2\x6c\x4a\x42\x66\x68\xb1\x29\x99\x22\xec\x7a\xfd\xb1\x5a\xca\xb2\x48\x7f\x95\x99\xc9\x9c\xdb\x35\xaa\xd2\x11\x39\xfc\xae\x1c\x12\xce\x88\x24\x73\xfb\xca\xac\x04\x99\xdb\x2f\x87\x78\xd2\xd1\xdc\x39\xf5\x92\xcc\xed\xd7\xfe\x56\x8f\x2a\x10\x65\xaa\x8a\xb2\xe9\xbb\x6a\xa1\x2f\xe3\xac\xa3\xb9\x2d\xd6\xb6\xcc\xed\xfa\xf8\xae\x79\x57\x26\x03\xab\xa3\xf9\x73\xd8\xbd\xdc\x79\x29\x43\x8c\x77\x6e\x0a\x0d\x53\x84\x0d\x65\xa6\xcc\xed\xec\x74\x0b\x99\x6f\x85\xa4\x89\xb5\x9f\x8f\xef\x02\x99\xdb\xae\x74\xb0\x99\x47\xc8\xf5\x29\x73\x9b\x3b\xe2\x53\x92\xb9\xfd\x80\xe6\x92\x8e\xe6\xd3\x2d\x46\x7c\x28\x2b\x47\x47\xf3\x71\x4f\xc9\xdc\xd6\x80\x99\xc2\xd1\xec\xec\x0b\x99\x7b\x65\x8b\x35\x1d\xeb\xf6\x48\xc8\xbc\x93\x55\xb9\x9e\x6f\x7f\xac\x56\xf6\x31\x74\xde\x45\x75\x2d\x7f\x2c\x9d\x15\x50\x99\xc0\xc5\x13\x3b\x79\x4a\xc6\x3b\x73\xd3\x77\x4a\x3a\x9a\x9b\xc3\xae\xa3\xf9\x56\xc0\x9a\x58\x7b\xbd\xbe\x6b\x76\x56\xec\x54\x49\x5c\x9c\xdc\x1a\xde\xe0\x8c\x2b\x27\x25\x1d\xcd\xc4\x29\xa4\x24\x73\xfb\x1a\xfe\x58\xeb\xee\xb6\x66\x55\xaf\xe6\x77\xcd\xde\xe9\xba\x0a\x7a\x36\xd6\x95\xa4\xa3\xd9\xa3\x39\x49\xcf\xe6\x3e\xb8\x94\x4c\xac\x7d\xb9\xe9\x86\x17\xb8\x24\xbe\x3b\xe2\x42\x22\x8b\xe6\x11\x72\x6d\xe8\x68\xfe\xaa\x45\x8e\xaa\x0c\x5e\x4b\xc6\x3b\x93\x84\x3c\x25\xe3\x9d\xbb\x4b\xc5\xbb\xa8\xea\xc5\xb0\x9b\x07\x6c\xdc\x7e\x88\xfd\x9b\x14\xec\xde\x45\xf5\x25\xfa\xeb\x0d\xce\x05\x35\x3b\x8d\xe0\x08\x31\x74\xd2\xb3\xfb\xb4\x47\xc6\x77\xa3\x48\x27\x51\xf3\x8b\xfd\x24\x4d\x93\x8d\x5c\x7c\x57\x47\x73\xc6\x0a\x9d\x66\x5c\xd0\xe3\x53\xbd\x15\x98\x32\x12\xa8\x79\x14\x65\xce\x8c\x3b\x11\x58\xde\xa2\xe6\xae\xc2\xa0\xa3\xf9\x78\xbe\x4c\xbd\x33\x4e\xca\x74\x3d\x0f\x1b\x29\x8a\x04\x65\xa4\xc8\x03\xa6\x76\x21\x3d\xfb\xde\xe7\x57\x62\x5f\x1f\xf4\xdb\x6c\x92\xa7\x36\x1a\x5d\xd2\x07\xbd\x1d\x73\x43\xa1\xeb\xb2\x68\x3c\x2c\xda\x60\xd2\x07\xfd\x2e\x8b\x02\x2e\x0c\x98\xe9\x09\xfa\x9f\x45\xa7\xde\x61\x14\x50\x97\xec\xbb\x86\xba\x2b\x70\x64\x6e\x77\x8f\x4b\x43\xa1\xf1\xb9\xa7\xe4\xe5\xce\xe9\xb2\x68\xfc\xa0\xa3\xfa\xb8\xb5\xb1\xdf\x26\x01\xf5\x8e\x2e\x68\xed\x2c\xec\x1a\x1d\xcd\xf0\xab\x53\x8a\xcb\x9d\x2f\xda\x2c\xa0\x7e\x31\x7a\x24\x01\xf5\xed\x6e\x7d\x0d\xba\xf1\x20\x7e\x05\x98\x9e\x11\x02\x6a\x72\x1f\xa5\x14\x97\x3b\xbb\xa8\x64\x6e\xbf\xa8\xca\x49\x47\xf3\xa7\xd8\x7f\x63\x6b\xb3\x20\x4d\x11\x56\x3d\x5f\xde\xe0\x44\x59\x0c\xa6\xba\x35\x33\xbf\x39\xf9\x2e\xf3\x9b\xb1\x9e\x25\x5d\xc9\x47\x29\x61\x44\xf3\xc6\xb8\x9d\x4c\x9d\xbd\xdc\xcb\xba\x92\x6f\xec\xf3\x29\x6e\x9b\xc2\xca\x9a\x80\xcc\x7d\xaa\xb4\x00\x99\xfb\xe3\x77\x97\x3d\xf2\x1c\x5f\xc6\x1a\x28\x61\x74\x25\x57\x8c\x9f\xc9\x3b\x9a\xf7\x67\xab\x74\xad\x7a\x80\x2e\x0f\xdf\xc9\x58\x2d\x4d\x04\xca\xdb\xe0\x66\x63\xb5\x4b\x42\xe6\xe3\x71\xa3\x2b\xb9\x28\x70\xc2\x95\xdc\x19\x0d\xef\x68\xde\xaa\x04\x42\xe6\xa9\xb0\xfa\x8c\x58\x7f\x7d\x37\xfc\x11\x3e\x55\xd9\x50\xa2\x7e\xfa\x9b\x94\x8a\x91\x3a\x5b\xc9\xf6\xc5\x85\x26\x7e\x48\x96\x97\xfd\xd5\x95\xfc\x65\xab\xd2\x95\x8c\xed\x34\x7d\x46\x70\x0b\x85\xbc\x6d\xea\xb8\xf1\x75\x25\x5f\xca\xf9\xb8\x6d\xca\x59\x90\x80\x5d\x1c\x3a\x6f\x9b\x6a\x6a\xec\x81\x8b\x9d\x14\x93\x80\x35\xd7\xb3\xb8\xf8\x51\x19\x36\x75\x76\x76\x60\xc1\xc5\x6d\xdc\x7e\x48\x57\xb2\x67\xe2\x0e\x2a\x88\x1f\x62\xc5\xe6\xf8\xb1\x79\x66\x54\xf9\x24\x60\xbf\xf1\x6e\x84\x4d\xf1\x21\x33\x7d\x3d\xd8\xf4\x92\x99\xbe\x2e\x7f\x1c\xae\x64\xd7\xb3\x04\xec\x7b\xd1\x66\x23\x9a\xbb\xfa\x92\xb8\xb8\xd9\xaa\x23\x81\x33\x5b\x95\x11\xdc\x38\x4d\xd2\x89\x64\x32\xfe\xd8\x54\xe1\x51\x95\xfd\x55\x61\x38\x1e\x46\xb7\xcd\xf0\x30\xb2\x83\xe0\xe2\xfe\x56\xab\xf2\x22\xc8\xc2\xda\x30\xa2\x79\xb1\xbb\x6f\x5d\xc9\x13\x9c\x78\x83\x8b\xe7\x83\x3f\xf1\x36\xa2\xf9\xfe\x09\xe6\x4a\x37\xb8\xb8\xdf\xbf\x0a\xd7\x4a\xb7\x59\xb5\xef\x63\xb5\x46\x08\x26\xeb\x41\x0f\x21\xf5\x77\xba\xe3\xfa\x66\xf0\xd7\x7d\xe9\x6a\x04\x24\xde\x66\xd5\xfe\x7e\x08\x36\xe9\x06\x32\x77\xb2\x06\xa5\x3b\x92\x80\xa1\xc3\xdc\x06\x3b\x6f\xa4\xe2\xed\x5d\x54\x83\xdd\x7a\x5f\x11\x56\xe3\xbb\x91\xa7\xe2\x67\x18\x6f\x5d\xc9\x64\xa5\x4b\x77\x0a\x6b\x27\x3f\x06\x32\xb7\x79\xf9\xd4\x73\xf9\xa6\x66\xef\xa2\x3a\xf6\x37\xa9\x77\xa1\xed\xdf\x06\x3b\x77\xd4\xdd\x3b\xa9\x77\x5d\x16\x35\x01\x5d\x7e\x88\xa9\xd7\xe9\x73\xcb\xcd\xce\xd8\x51\x6f\xb3\x6a\xdf\x9f\x45\xf3\xcc\x54\x06\xd6\x88\x66\xe8\x61\xe9\x8e\xeb\x9b\x7f\x88\x76\xe9\x4e\x66\x89\xc7\x7a\x76\xcb\xcd\x4e\xfe\x58\x57\x72\x85\x36\x70\xcb\xcd\xf6\x40\xb9\x8d\x68\xe6\x42\xa5\x74\xcb\xcd\x26\x8f\x59\xba\xef\xc8\xab\x43\xab\x74\x25\x13\x3d\x91\xee\x3f\xae\x6f\xb6\x66\xc3\xe2\x40\xd0\xb7\x90\x79\x63\x0a\xbe\xef\x20\x70\xfa\x63\xc3\xc4\xaa\xdf\x8d\x64\x05\xfe\x38\xf4\x6a\x7f\x4c\x7f\xc9\x40\x9e\xee\x5b\x9c\x88\x21\xee\x96\x9b\xfd\x56\x7a\xa4\x2b\x39\x71\xea\xdd\x39\x52\x0d\xf3\x6e\x0e\x93\x48\xa7\x88\xde\xf5\x5e\x56\x25\x4e\xc4\xa6\x77\x47\x44\xf3\x6d\x55\x26\x1b\x99\xbe\x2b\x37\x1b\x5f\xd5\x6d\x44\x33\x17\xa4\xa6\x1b\x5c\xdc\xf7\x6b\x55\xea\xd5\xe8\x8a\x77\xe0\xe2\x6e\x9b\xf5\x37\xb1\x97\x6f\x5d\xc9\xaa\xbb\xb7\x29\xc2\x26\x96\x8a\xbb\xc4\x85\x35\xb4\xd9\x88\xe6\x5c\x59\x0c\xa6\xce\xae\xcb\x1f\x47\x32\x0a\x56\x5d\x89\xe4\x1b\xb4\xaa\xe8\x6f\xb2\xcd\x25\xfc\x6b\x0c\xbb\x04\xec\xf2\xfa\xd4\xfe\x0e\x3f\xa4\x7f\x2d\xfb\x63\x59\x6d\xe8\x99\xb7\xb8\xb8\xbb\x17\x24\x60\x1f\x8c\x1e\x77\x89\xb0\x29\x8b\x26\x1b\xe9\xb6\x8a\xf9\x6d\x1c\xfa\xb7\xb8\xf8\xdb\x74\x01\x5c\x5c\x8e\xd3\x2d\x2e\xee\x1c\x82\xb7\xae\xe4\x4b\xa9\x22\x01\xfb\xb8\xcc\xbc\x8b\xaa\xc7\xbb\x11\xd1\xcc\x84\x46\x1e\x30\xec\x54\x77\x8d\xa4\x85\xbe\xeb\xfe\x75\xe3\x04\x01\x3b\x59\x14\x27\xba\xf8\x25\x60\x13\x77\x9c\xee\x1a\xa9\xa4\x2d\xea\x3a\x9f\x76\x30\x52\x85\xd3\x05\xef\x68\xd6\x64\x7d\xc7\x85\x53\x4a\x51\x5d\xc9\x4d\xc1\x68\x1e\xb0\xed\x58\x19\xd1\x3c\x5f\xba\xdf\x94\xcf\xa8\xe5\xb7\xb8\x38\xdb\x8c\x70\x25\xff\x8e\x41\xfe\xbe\xd8\x8f\x60\x67\x94\xa5\xbb\x09\x31\x5c\x36\x06\x3b\xe7\x66\xfb\xcd\xfe\xe7\xc8\xc8\xcd\x6e\xae\xde\x26\x57\x19\x4f\xcd\xfd\x47\x8a\x30\xa6\xa0\xc5\x05\x2e\xac\x6d\x20\x73\x27\xeb\x4e\xba\x81\xcc\x53\xed\xe8\xee\xb2\x26\x50\x2c\xef\xee\x50\xa0\xa4\xdd\x40\xe6\x79\x6c\x46\x77\x28\x5c\x09\xdd\x53\xdb\x61\xec\x0e\x85\x07\x62\x0f\x6f\x05\xa3\xaa\x2b\x99\xbc\xa0\xe9\x16\x32\x57\x67\x04\xc8\x5c\xdb\xe5\x77\xe3\x82\x0f\x3a\x28\x64\xce\x2e\x2a\x5d\xc9\x79\x5a\x34\x42\x10\xbb\xe2\x1d\x59\xb5\x51\xd2\xee\xe0\x66\xe3\xb6\xbb\x75\x25\xf7\xe6\xd3\xb8\xab\x88\xaa\x46\x58\x77\x99\xfa\x61\x6c\xc5\xf1\xc7\x4e\x3d\x86\x8b\x5b\x6e\x36\x81\x18\xe9\x36\xa2\x39\x67\x8b\x71\x34\xd3\xc1\x11\xf3\xeb\xbb\x5a\xb3\x9b\x6d\x66\x7e\x6f\x60\xd4\x3d\x22\x2b\x3e\x43\x27\x37\xfb\xf6\x78\x95\x9b\x7d\xbb\x90\xa6\x61\x62\xd8\x6d\x6e\x63\x96\x6f\x4f\x2e\x6f\x9b\xba\x31\xf6\xde\xba\x92\xb9\xdb\x31\xdd\xb2\xaf\x6f\x1b\xe9\x6d\x53\xe5\x61\x16\x04\xc5\xb7\x47\x86\xae\xe4\x5b\xd9\x15\xb7\x4d\x0d\xab\x8a\x64\xe0\x2c\x15\x93\x80\x85\x76\x34\xe3\xa2\x40\xdf\xe5\x30\x3a\x95\xf9\x9d\x6e\x5e\x85\xe4\xa3\xeb\x0d\x07\xc4\xfd\xc8\x03\xc1\x6c\x7e\x3f\xae\x58\x1c\x91\x77\xc4\x2c\xab\xb3\x3d\x46\x13\x60\xe2\xbb\x23\x39\xf6\xb6\xe6\x08\x14\x62\x34\x8c\x59\x3e\xc9\xa7\x81\x23\xfc\xae\x38\x42\x0d\x21\x5c\xc9\x8d\x36\x3f\xf2\x5e\x5c\x1b\x8f\x99\xa0\xd4\x79\x44\xbe\x07\xf0\x7e\x3f\xea\x99\x97\x5d\x30\x86\xd7\x93\xfa\x95\x5d\xef\x1c\xbd\x0a\x67\xb0\xed\x2d\xf2\xad\x58\x0b\xef\xd7\xa4\x85\x0a\xe7\x37\x84\x33\x73\x14\xc8\x17\x2e\xd6\xfd\xea\x5a\xf5\xa4\x7e\xed\xaf\x52\x31\x5c\xc9\xd9\x77\xed\x2f\x76\xf2\x3b\x32\x7d\x81\x6e\xee\xc8\xf4\x85\x77\xe6\x7e\xed\xaf\x47\xd5\x6b\x7f\x61\x0f\xde\xaf\xfd\x1d\x36\xc3\xfe\x2a\x82\x22\x66\x59\x45\x7a\xd9\xdf\x87\x1e\x2d\xaf\x68\x51\x9b\x5a\xf6\xf7\xb1\x68\x7f\xe1\x60\xdc\xe1\x4a\xf6\x5c\x0b\x57\xb2\x8b\x61\xd9\x5f\xd5\x98\x65\x7f\x3d\xb8\x97\xfd\xfd\x7c\x6a\x7f\xe1\x35\xdd\xcb\xfe\x7e\x7e\x37\x32\x7d\xd1\x7d\x5d\xc9\xe7\xfb\x95\x91\xe7\x5e\x0e\xc5\xb1\x49\xda\xab\x6f\xc6\x2d\x92\x80\xb9\x5b\x3f\x87\xc2\x15\xf8\xc5\x9d\x98\x3e\xf5\x5c\x56\x48\xca\xbe\xbe\x94\x3f\x40\xe6\x7a\x29\x16\x3e\x87\xe2\xf8\x34\x28\x5e\x56\x35\xac\xca\xe2\xf4\x5d\x46\x46\x57\xb2\xce\xc4\x5b\xc8\xac\xa3\xea\x16\x32\x93\xeb\x32\xdd\xba\x92\x49\x24\x98\x6e\x5d\xc9\x57\xf1\x5d\xfb\x8b\xb7\xe2\xf6\xb6\xa9\x4b\xb1\xef\x6d\x53\x97\x2b\x41\xc8\x7c\x29\xba\x85\xcc\x97\xaa\x85\x49\xc0\x2e\x70\xdf\x2d\x64\xbe\x3c\xa6\x65\x5f\x73\x53\x5e\xba\xe3\x82\x66\x81\x83\x17\x34\x93\x42\x3f\xdd\x26\x01\xbb\xb6\xcd\xb0\xbf\xae\x22\xd9\xd7\x97\x60\x27\x5c\xc9\x97\xcd\x50\x94\x5d\xb6\x59\x3d\xe4\xb3\x66\x21\xa4\x7b\xea\xc4\xd6\x66\x34\x4e\x6c\x6d\x3a\x78\x5c\xea\xb0\x80\x6e\x20\xf3\x24\x9a\x32\xdd\xde\x36\xb5\xb0\x39\xdf\xb2\xaf\x97\xfb\xf1\x44\x1e\x78\xdf\xa5\xbf\x9f\x20\x0b\xc8\x3c\x43\x66\x02\x99\xe7\x54\x59\x32\x66\x39\x29\xba\x65\x5f\xcf\x64\xcd\x8a\xee\xe3\xbb\x1e\xbe\x2a\xff\x26\xc7\x7e\x1c\x0d\x63\x96\x33\x1a\x42\x36\x66\x39\x21\x6f\xb3\x49\xc0\x26\xee\xb3\x2c\xfb\x9a\x84\x12\x29\x5f\x8a\xee\xc7\x77\x23\xb3\x4a\xa3\xa8\xe8\x46\x45\xcf\xc6\x2c\x73\x07\x44\xca\xe2\xe2\x81\x49\x24\x47\x72\xec\xd7\x9a\xe3\xb6\x29\x9f\x9a\xaf\x12\x62\x70\x96\x7d\x3d\x87\xdf\x35\xf5\x6e\xf6\xc7\xe2\xe2\xcb\xef\x7a\x54\x61\xe2\xcb\x97\x81\x60\x30\x09\xb3\xb8\x38\x61\xc6\xc9\x26\x01\x4b\x3f\xfc\xf9\x94\x4d\x8e\x9d\xf0\x38\x64\x5d\xc9\x09\xfb\x67\xd6\x95\x9c\x30\x69\xe6\x24\x4e\xc4\xb2\x9a\xc5\xc5\x89\xbd\x90\x4d\x8e\xfd\x3a\x56\x29\x6e\x6a\x78\x28\x6a\xc6\xc1\xb4\x98\xef\xb0\xa2\xd3\xc8\x48\x70\x0d\x9c\xc9\x3a\x7c\x5f\x56\x5d\x36\x67\xf5\xcb\xc6\xc9\x91\x44\x0b\xb9\x97\xf5\xc3\xbe\xa8\x9a\xf9\x0e\x06\x23\xef\xca\x40\x7e\xb1\x93\x67\x61\xe3\x8b\xf8\xca\x32\x90\x5f\x38\x7e\x59\x4f\xeb\xcb\xba\xca\x59\x18\x05\xf4\xcb\xfa\x52\x17\x2a\x50\xce\x01\xfc\xf9\x2e\xc0\x70\x2c\x56\x5d\x36\x68\x77\x5d\xbe\x1b\x59\xdd\xe8\x60\x09\xa2\x3b\x1f\x32\xe1\xf3\xe2\x94\xcf\xa0\xb9\xb1\xb0\x6f\x67\xd1\xdc\xc2\xa1\x9f\x4b\xdc\x5d\xc5\xb0\xcb\xf5\x95\xcb\x9d\xe5\xdc\xe6\xf6\x8b\x6b\x56\x52\x16\x43\x65\x2c\xb4\xd9\xfb\x7c\x9b\x5f\xa9\x62\x46\x54\x8b\x5c\x0d\x0a\xbb\x59\x45\x55\x9a\x44\xb6\x68\x96\xb3\xdb\xaa\xbc\xd3\x21\x5b\x95\x41\xbb\x98\x0a\xb3\x41\xac\xad\x58\xb3\x34\x09\x2c\x24\xd9\xeb\x87\x1a\x7a\x57\x36\x2b\x54\x43\x5b\xc8\xd2\x71\x1b\x8a\x47\x16\x43\x91\x4b\x39\x65\x73\x29\xb7\x4e\xcd\xcd\xc8\x20\xc4\x51\x36\x88\xb5\xa1\xed\x67\xe9\xb8\x0d\x8d\x3d\xb7\xe0\x64\x5a\xb3\xfd\xc5\x8a\x95\x0d\x62\xbd\xe2\xe9\xb0\xc8\x7c\x45\x56\xa8\x69\x55\xd2\x42\xb0\x94\xe6\x16\x41\x9d\x36\x52\xba\x35\x2c\x82\x0c\x50\x9a\xd7\x6b\x23\xe3\xfa\x21\xd6\x67\x64\x85\xc2\x8a\x95\xf5\x2d\x7a\xa0\x64\x81\x92\x3e\xeb\xec\xf5\x43\x97\x6d\x06\x28\xcd\xcb\x3d\x25\x50\xe2\x42\xa5\x94\xbb\x34\x09\x9c\x08\xb9\x9b\xc5\xee\xf3\x5d\xfb\x0b\xba\xc9\x66\x85\xba\x14\x0b\x5e\xda\x7b\x01\xdf\x72\x0f\x1a\x8c\x8d\xb4\xbf\x9b\x59\x88\xd4\x4f\xee\xd6\x6e\x7f\x3f\xab\xb2\xbf\x58\x68\xb3\x9c\xdb\x4b\xe1\x3c\xec\xef\xa6\x0b\xfa\x16\x2f\x14\x86\x2c\x50\x4a\x6e\x40\x53\x3f\x25\x57\x6c\x5c\x3f\x94\xfc\xb1\x97\xba\xe2\x5c\xcb\xa6\x7e\x4a\x2e\xe0\xa1\xb9\xfe\xf6\x43\xc3\xa7\xcc\xa0\xb9\x94\xa5\x66\x65\x39\xb7\x7a\x5a\x73\xdc\x31\xc4\xe9\x93\x05\x4a\xd3\xe5\x1d\x40\x49\x99\x19\x50\xc8\x61\xf7\x5a\xde\x82\x3d\x21\x9b\x2d\xf9\x76\x16\x02\x28\x29\xf7\x02\x28\x29\xca\x04\x4a\xf9\xf3\x5d\xbd\xc3\xca\xbd\xf0\x1e\x62\x5c\xca\x02\x25\xf2\xf9\xa4\x2c\x50\x4a\x40\x83\x3c\x23\x8f\x19\x73\x04\x50\x9a\xaf\xa3\x21\x50\xca\x2e\x42\x81\x12\x17\x14\xa6\x3c\x23\x56\x91\x35\xe9\xb5\xbc\x9f\x53\xa6\x8b\xb0\xa3\x3d\xe6\xb8\x96\x17\x05\x29\xcb\xb9\xed\xee\x85\xc7\x80\x08\xb4\xb8\x1c\xb7\x08\x79\x36\x01\x94\xaa\xd6\xe0\x6c\xb6\xe4\xf1\xf9\xae\x44\xc4\xdb\x9a\x0d\xcb\xbd\x7d\xd7\xbb\x4a\x15\x50\x26\x77\xea\x00\xd2\xec\x2d\x42\xdd\xe9\x36\x7d\x53\xaf\xbe\x7b\x7c\xca\x9a\x7c\xa3\x47\x4c\xe8\x1b\xb7\x91\xf2\xae\xe9\x9b\x3a\x54\x90\x6c\x3e\xe4\xde\x7c\xb7\xf8\x94\x91\x34\xda\xb4\x83\x23\x72\x38\x01\xbb\x3f\xb6\x47\xb8\x81\xf2\x1f\x17\xef\x32\xa1\x26\x3d\xee\xdd\xaa\xec\x51\xff\x15\x6f\x3f\x4b\xb8\xed\x8f\xf5\x98\x5f\x54\x2d\x45\xff\x60\x1f\x36\xc9\xa1\x78\xed\xac\x43\xa1\x48\xf1\x0a\x21\x2e\xec\x4b\xd9\x40\xd4\xae\x28\xf3\x0a\xa1\x0e\xbe\xce\x7a\x0f\xbb\xea\x81\xde\xc3\x8e\x0d\x36\xeb\x3d\xec\x1f\x9d\x35\x10\xb5\x03\x7c\xf2\x0a\x96\x29\x83\x6c\x66\xa7\xae\xb2\x64\x3e\xe4\xae\x18\xf4\xe2\xdd\xee\x52\x5f\xf6\xd7\x05\xb9\xec\xef\xf1\xc7\xf6\x57\xe5\x41\xc2\x6d\x47\x55\xce\x42\xa1\x81\x22\x9d\x85\x42\xc3\x9d\xfe\xc5\x1d\xd3\x16\xed\xef\xb6\xe8\x62\xc6\x34\x9a\x85\x42\x43\x71\x24\x14\x1a\x2a\x00\x71\x85\x10\x36\xf6\x2c\x14\x1a\xb7\xef\x1a\xb8\x87\x4e\x9e\x85\x42\xd2\xe9\xb3\x50\x48\x6a\x68\x16\x0a\x8d\x61\xcd\xf4\x77\x4c\x46\x52\x28\x34\x54\x2c\x3f\xed\x72\x98\xfa\x33\x50\x68\x1e\x5b\x25\xab\x56\xb2\x5c\xd6\x7b\x48\x7a\xd2\x94\x65\xd5\x6a\x7b\xc9\xb2\x6a\xef\xee\x8f\xf5\xef\x0f\x8b\x26\xd5\x84\xc0\x99\x65\xd5\xde\x7e\xd7\x7c\xc8\x37\x7e\x9f\x1c\x81\xa8\x90\xcd\xf2\x36\x87\x00\xb8\x3e\xeb\x3d\xbc\x3d\x8b\x4d\xdf\x74\x7b\xda\x1a\x88\x7a\xab\xfd\xea\x3d\xbc\x5d\x1b\x91\xbe\x49\xf1\x2b\xab\xf6\xf6\xc4\xf4\xe2\xdd\x1b\x0f\x6f\x36\x10\xf5\x86\xe9\x91\x65\xd5\xde\xa0\xef\x7c\xec\xef\xf4\xc7\xf6\x57\xfd\xf6\xd8\x5f\x6c\x7a\xd9\x8c\xc7\x37\xe4\x87\x1c\x19\x8f\x15\x83\xc1\x9b\x75\xe3\xe8\x1f\xbc\x95\x8a\x27\x7a\x64\x33\xec\x11\xf6\xcf\x2c\xd8\xd1\x89\x99\x8f\x3d\x42\x73\x2e\xf2\x66\x6f\x76\x77\x91\x37\x7b\x63\x7a\x2a\x26\x68\xca\xd8\x7c\x8a\x19\x8f\xef\x9f\x74\x22\xa9\x5c\x71\xf3\x91\xef\x56\x7f\x7c\x28\x36\x8b\xfe\xd8\x19\xe4\x94\x2f\xf2\x66\x49\xa1\x9f\xca\x15\x19\x9e\x6f\x8a\xc1\x13\x1e\x14\x5f\xab\xf2\x5d\xfb\x0b\x75\xa7\x08\x76\xc8\xbb\x98\x8a\xbc\x59\xf2\xaf\xa6\x22\x6f\x56\x73\x68\x49\x86\xb4\x80\xa9\x4b\xb2\x47\xb8\xa1\x8b\x6e\xbe\x1b\x99\x53\x74\xf3\x65\x0c\x0e\x25\xd9\x23\x1c\xaf\x05\x47\xde\x20\x49\x42\x2a\xc2\x19\x6e\xf9\x4f\x45\xee\x6b\xce\xbe\xbb\x2c\xd2\x5f\xc1\x4e\xce\x56\x65\x9b\x51\x17\x4b\x38\xf2\x30\xa6\x15\xa1\x90\x94\xa1\x22\x14\x22\x61\x48\x2a\x42\x21\xee\xaf\x49\x45\xee\x2b\x97\xde\xa6\x22\xf7\xf5\x27\xcd\xf8\xdf\x15\xfb\xc5\x70\xd1\x8c\x5f\xa3\x08\xa9\x72\xb2\x5a\x63\xac\x9a\x4f\x8d\xb1\xc2\x50\x53\x04\x5c\xe4\x80\x4d\xc5\xfc\x4b\x39\xdb\x06\x87\x02\xbb\x71\x11\x8e\x65\x84\x55\x91\x16\x9b\x39\xc5\xca\x1d\xd3\xc7\x50\x08\xd6\x32\xa7\x67\xf9\x23\x5c\x94\x51\x15\xac\x65\xdc\x49\x45\x38\x96\xd9\xad\xc5\x80\x50\x52\x9a\xa4\x22\x1c\xcb\x8f\x4f\x6d\xf3\xe3\xbb\x31\x7d\xb4\x59\x38\x96\xa7\x1f\xb2\xcd\x9c\xda\x25\xdb\xe6\xee\x53\xdb\x8c\xfe\x53\x0c\xf9\x34\x22\xbb\xe8\xa7\xcb\x88\xc1\x22\xb2\xcb\x08\x9c\x22\xb2\xcb\x9c\xe9\x45\x64\x97\xa7\x4f\xed\x11\x2e\xec\x62\xe6\x61\x72\xb1\xa6\x62\xa2\xa4\x8c\xb6\x5f\x8a\x73\x84\x3a\x54\x84\x81\x5c\x24\x97\x8a\x30\xd0\xd8\x8a\x22\x7f\x35\xc3\x89\x2a\x66\x1e\xce\xee\x38\xaf\xf2\x19\x6e\x5e\xaf\xf2\x29\xc9\xa7\xde\x4e\x7e\xd9\x66\xfb\xcb\x99\x58\xaa\xfd\x3d\x16\xed\x2f\x3a\x6a\x31\x51\x52\x71\x4f\xc9\x5f\x25\xf7\x5a\x2a\x55\xaa\xb6\x9b\xb7\xca\x7f\x73\xb7\x1a\xf2\xc9\xad\x2b\xa9\x98\x28\x49\xfd\xb6\xc8\x5f\x2d\xca\x9f\x1a\xfd\x65\x42\x0d\xea\x94\x04\x55\xaa\x33\x88\xae\x58\xbc\xc4\x36\x43\xc0\x28\xa0\xc8\x51\xf0\x92\x94\x16\x3d\xe2\xa9\xa9\x90\xb2\x42\xb2\xd9\x23\xb4\xc1\x62\x50\x67\x51\x4a\x34\x7b\x84\xf6\x5b\x0c\xea\x2c\x10\x1a\x0b\x28\x72\x90\xaf\x32\x95\x66\x9b\xbb\x3f\x66\x8e\xca\xf0\xc7\xaf\x4f\x19\x2b\x39\xa8\x45\x09\xa3\x43\xad\x14\xdb\xec\x1c\xb9\x71\x0c\xdb\x34\xdc\xbb\x18\x9b\x59\xd0\xe2\x8a\xb1\x99\xdc\xa3\x9d\x8a\xb1\x99\xb2\xe9\x4a\xb7\x47\x28\x96\xc5\x6b\x6a\x8b\xeb\x4a\x0e\x2a\x09\xa9\x52\x31\xd9\x51\x01\xa1\x14\x63\x33\xc9\x55\x9b\x8a\x0e\x35\x92\x33\xa4\x22\x07\xb5\x28\xba\xcd\x1e\x5c\x38\x4f\x8b\xd9\x83\x0b\x8c\xa9\xd2\xed\xaf\xab\xdd\x64\x47\x45\xd1\x2d\x07\xb5\x3c\xb6\xca\xfe\xe2\x67\x2f\x72\x50\x0b\x07\x68\xf1\xce\x9d\x82\x86\x50\xe4\xa0\x16\xf7\x82\x0e\x35\x92\xda\xa5\x12\x77\xee\x78\xfa\xc8\x41\xad\xe8\x78\xc5\x64\x47\xba\x36\x8a\xb1\x99\xc5\xa5\x12\xc9\x8e\xb2\xcd\xa0\xbf\x5c\x4c\x96\x8a\x1c\xd4\xaa\xd8\x94\x83\x5a\x31\x1e\x16\x93\x1d\x55\x60\x45\x31\x36\x53\x24\x58\x86\xfd\x3d\xb6\xca\xf0\x10\xd7\x95\x1c\xd4\x9f\x74\x55\x7f\x5f\xec\x1b\xd4\x59\x15\xbf\x06\x75\x56\x3c\x44\xc5\xa0\xce\xea\x49\x64\xf6\xe0\xea\xfa\xf4\x9a\x5a\x2e\x54\x4a\x65\x3a\x14\x1e\x3d\x7a\xe2\xb8\xda\x3b\x15\xaf\xe3\xa9\x0a\xba\xe9\x50\xa8\x78\x78\x1d\x4f\x55\xb2\x99\x07\x89\xac\xa7\xa9\x18\xd4\xc9\x0d\x4a\xa9\x00\x30\x47\xed\x76\x76\xfb\xae\x8d\x8c\xe4\x30\x8c\x8c\x41\x9d\x55\xd1\x6d\x50\xa7\x64\xdd\xe2\x75\x3c\x15\xad\xac\xc8\x41\xad\x9e\x20\x72\x50\xab\xeb\x13\x80\x39\xaa\x2b\xff\xb1\xbf\xaa\x34\x8f\xfd\x75\x82\xe4\xa0\xb6\xdb\x9a\xbd\xa3\xe4\xb2\x19\x32\xbe\x6e\x9b\x21\x9d\x1e\xc6\x54\x79\x8c\x1c\x71\x6b\x1b\xd4\xb9\x31\x6b\x14\xe1\xe7\x51\xf1\x10\x7e\x4e\x7f\x2c\xfc\x9c\xf0\x57\xcb\x2b\xa3\x8f\x58\xfe\x22\xfc\x9c\x98\xaf\x8b\xf0\x73\x2a\x9d\x84\x9f\x13\x53\x7f\x11\x7e\x86\x46\x27\xfc\x24\xaf\x57\x2a\xc2\x4f\xcd\x8c\x45\xf8\xb9\x6e\x9b\x61\x06\x09\x15\x1e\xb3\x07\xeb\xd2\x2d\x72\x50\x6f\x0f\xee\x37\xe8\xe5\x7e\x48\xfa\x31\xbe\xd4\x22\x07\x55\x35\xbb\xc8\x41\xbd\x81\x7e\x65\x45\xf6\x6f\x3a\x68\x50\x27\xf7\xe8\xa5\xb2\x82\x6e\x4d\x9b\x0d\xea\xbc\x31\xe7\x96\x65\x0a\x59\xb7\xe7\x8a\x94\xaa\x7c\x57\x86\x6a\xa8\x52\x2b\x12\xa1\xb3\xf1\x4d\x76\x94\xa3\x2a\xf3\xb6\x11\xe0\x5c\x0c\xea\xd4\x76\x5a\x0c\xea\xcc\x0a\x58\x19\xaa\x59\x71\x24\x43\x35\x2b\x60\xcd\x1e\x9c\xb1\x07\x96\x25\xe7\x16\x64\x54\x3e\x2f\xaa\x50\xb0\x9b\x3d\x58\x6e\x40\xf1\xce\x9d\xd0\x01\xcc\x1e\xcc\xa5\x7b\xa9\x7c\xf6\x17\x6c\x5b\x3e\xfb\xab\x08\xfd\xec\xaf\x0b\xd8\x64\x47\x19\xe0\x50\x3e\xfb\xfb\xf9\x21\xfb\x2b\x8e\xf8\xcc\x53\x57\xfd\x50\x5c\x43\xcc\xe0\x7c\xd1\x5f\x7f\x4c\x7f\x0b\xac\x98\x02\xc6\x6c\xc5\x15\x1b\xd7\xd4\xaa\x5d\x88\x31\x8b\x0a\xa1\x29\x82\x0b\xc8\xb7\x98\x22\xb8\x28\x9c\x4d\x76\x14\x07\xb7\x91\x9b\x05\xa3\x74\x31\x45\x70\x51\x9a\xc9\x50\x2d\x80\xca\x02\xc6\x6c\x71\xcc\x79\xe7\x4e\x99\x56\xe5\xf5\x61\x4e\xa8\xb7\xcd\x16\x40\x65\x31\x9d\x51\x9c\x4d\xde\xaa\x63\x60\x75\xd1\xa1\x16\x67\xe2\xb1\x47\xae\x58\x63\x33\x8b\x30\xca\x24\xc0\x05\xeb\x68\x91\x83\x5a\x85\x60\x3a\xd4\xe4\x25\x16\x93\x00\x73\x3b\x5e\x2a\x3a\xd4\xce\xef\x43\xf7\xf7\xc5\xbe\xbe\xb6\x23\xe0\x32\x6c\xb3\x26\xbf\x62\x92\x3a\xd5\x30\x7d\x6d\xdc\x55\x94\xca\x1f\x17\xee\xf8\x54\xeb\x9f\xfa\x5e\xf8\xda\xb6\x55\x49\x74\xc1\x9d\x5d\xc2\xd7\x06\x76\xab\xfa\xda\x0a\x51\x7e\x55\x5f\x5b\x41\x0c\x56\x7d\x6d\xaa\x7f\xd5\xb0\xcd\x52\x7c\x37\x52\x3a\xfb\xd4\xc8\x44\x76\x6b\xf5\x6e\x59\xa7\xbe\x9a\xbc\x48\x3a\x6e\x8d\x94\xbf\x1c\x97\x55\xf7\x59\xb9\x7d\xd7\xf0\x96\x6c\xab\x8c\x4c\x1c\x16\x4d\x4e\x85\xfb\xbe\xea\x3e\x2b\x90\xc0\xab\xee\xb3\x82\x1c\xa8\xba\xcf\x4a\xf3\xc7\x66\xc2\x1c\x16\x25\x52\xa2\x95\xd5\x64\x8f\x9a\x45\x7b\x84\xd7\xa0\xa6\x48\x83\x70\x51\xb4\x47\x8f\x4f\xed\x11\x94\x92\x2a\x71\x54\x85\xa7\x1a\x6b\x59\x3e\x9f\x46\x4e\x1e\xdb\x6c\x8f\x08\x6f\xa9\xb7\x6d\xe6\xe0\xae\xb7\xc3\x0e\x37\xa9\xc6\xed\xb1\x60\xe4\x2a\x35\x54\x72\x60\x0d\x6a\x28\x3a\x5b\x35\x9a\xb2\x40\x3e\xaf\x5e\x67\xc3\x15\x1e\xa9\x9a\x29\xa8\xa0\x03\xd4\xc8\x14\x04\x8e\xa8\xb7\xad\xc2\x96\x58\xa5\x77\x72\xc7\x59\xaa\xa6\xde\xad\x88\x85\x1a\xa9\x77\x89\xb4\xad\xd2\x3b\x2b\x52\xa2\x9a\x29\xa8\xb0\x44\xab\x11\x91\x15\xd7\x6a\xf5\x06\xd8\x82\xcb\xaf\xe6\xb8\x5d\xcb\xef\xca\xf2\x62\x2f\x54\x80\x61\xad\xb7\x1f\x32\x26\x1d\xbb\x71\x95\xc0\x59\x9b\x4f\x0d\x6c\x1c\x56\x65\xf2\x64\x3c\xbc\xd5\x5c\x40\x15\xc7\x56\x95\xc0\x59\x91\x3f\xb5\x78\xf1\x25\x52\xb1\x9a\x0b\xa8\x56\xdf\xa5\x47\x06\xda\x54\x33\xe8\x56\x08\x8d\x15\x60\x58\x2b\x2a\x41\x35\xb0\xb1\xa2\x03\xd4\x62\xde\x7b\x37\x8e\x58\x8f\xdb\x81\x53\x95\x93\xc9\x55\x38\xa9\x9a\x14\x97\x4c\x83\xa9\x96\xb8\x48\x9a\x61\x97\x93\x69\xba\xaa\xea\xdd\xac\x15\x0a\x4d\xd5\xd5\x58\xf1\x2c\x57\xfd\x89\xaa\x5e\xd5\xf4\x3e\x15\x77\x5b\x95\x93\x59\x87\x3f\xb6\x0b\xa8\x04\xb5\xc6\x2d\x42\xcc\xbe\xe9\x7d\x2a\xa0\xb2\xca\xc9\x34\xcb\x50\x35\x56\x51\x55\xb3\xca\xc9\xac\x9f\x55\xd9\x23\xf7\x6f\xdc\xbe\x8a\x24\xaf\x26\xf0\xe1\xd2\xed\x54\x65\x5d\x56\x4c\x5e\x55\xd6\x65\x5d\xfe\xd8\xc0\x79\xf4\xf9\x6a\x34\x62\xc5\xe3\x50\xbd\x5f\xd5\xb0\x94\xda\xe2\x52\x42\xda\x6c\x62\xdb\xea\x6a\x97\x3c\x59\x97\x3f\xb6\xcd\xdb\x9a\x9d\x23\x10\x4a\xf5\xb6\x17\x43\x78\x6a\xdc\x91\x7a\xea\x2f\xc4\x7e\x35\xcd\x0e\x37\x46\xa5\x2a\x94\x93\x89\x54\x7b\x24\xb7\x64\x90\xe3\x22\x98\xcb\xaf\x74\x8b\xac\x04\xc3\x09\x1b\xf6\x84\x1a\x69\x76\x6e\xab\x32\xc5\xba\x12\x55\x6e\x64\x3d\xd6\x2c\x17\x14\xd3\x77\x95\x1b\xa9\xaa\x5c\xe5\x46\x1a\x02\x59\xe5\x46\x36\x94\xd2\x3a\xe2\xba\x49\xa6\x40\x6e\x64\x53\xb0\x7b\x7d\x6a\x43\x0b\xad\xa6\xd9\x69\xc4\xf0\x56\xb9\x91\xa6\x14\xa8\x72\x23\x9b\xa7\x80\xdc\xc8\xe6\x52\x97\x1b\xc9\xdd\xe5\xa9\xca\x8d\xd4\xef\x5c\x4d\xb3\xd3\xf0\xd4\x54\xb9\x91\x4d\x39\xaf\xcb\xaf\x79\x0a\xe8\xf2\x6b\x78\x79\xaa\xec\x47\x73\x7a\x54\x5d\x7e\x0d\xd3\x53\xd5\xe5\xd7\x60\x30\x56\x5d\x7e\xcd\x55\xa4\xcb\xaf\xa1\x3c\x54\x5d\x7e\xcd\x55\xa4\xcb\xaf\x61\x9a\xa8\x33\xee\xfb\xf0\x43\xf6\x08\xe7\x69\xd5\xe5\x67\x7e\x9b\xaa\xcb\x8f\xab\xb8\x52\xd5\xe5\x47\x4a\xe7\x54\xe5\x46\x76\xa8\xda\x55\x97\x9f\xf9\x5e\xaa\x2e\x3f\xae\x40\x4d\x35\xd2\xec\x28\x42\x75\xf9\x6d\xb4\x8b\x1a\x51\x81\x8a\x5f\x5d\x7e\x5b\x01\xab\xcb\x6f\x67\x8b\xd5\x22\xfd\xd5\xa9\xc7\xe5\x62\xa9\xea\xd4\xdb\x4e\x8a\x4e\x3d\x43\x89\x6b\x24\xd2\x41\xdf\xab\x3a\xf5\xc8\xc2\x9d\xaa\x4e\xbd\x85\x0d\xa4\x9a\x48\x67\xa1\xe0\xd5\x48\xa4\x83\xf7\xbf\x8a\xb9\x16\xd4\xd0\x2a\xe6\x5a\x28\x87\x55\xcc\xb5\x14\x65\xa2\xaa\xa5\x38\x12\x55\x2d\x3c\x2c\x55\x54\x45\x6a\xf7\x54\x03\x55\x79\x28\x04\xaa\x02\x53\xd7\x40\x55\x18\x4c\x6a\xa0\xaa\xc7\x77\x0d\xca\xc6\x97\x51\xf5\xdc\x2d\xe5\xad\x9e\xbb\xe5\xc1\xad\xe7\x6e\x2d\x9f\xda\x23\x90\x6f\xd5\x73\xb7\x94\x3f\x7a\xee\x96\x82\x3d\xee\x64\xf9\xff\x10\x76\x1e\x57\xdb\xb3\x3a\x14\x6d\xc9\x06\x93\xca\x21\xf6\x5f\xc2\x5d\xf7\xd9\x9b\x7f\xf8\xbd\x43\x96\x13\x18\x10\x3a\x0a\x47\xca\x0d\x3d\x77\x93\xe0\x9c\xa4\xe7\x6e\x2a\x9d\xf4\xcd\x2d\xb7\xb3\xbe\x39\x73\xa5\x93\xbe\x39\x93\x9b\xd2\xbc\x69\xe6\xbe\x99\x11\x99\x87\x9b\xf4\xcd\x2d\x35\x40\x7d\x73\xcb\x43\x5f\xdf\x9c\x69\x38\x49\xdf\xdc\x8a\x3e\xab\xa3\x19\x04\x9a\xf4\xcd\x2d\x62\x4e\x92\xbe\xb9\x85\x25\x39\xe9\x9b\x5b\xae\x1c\x7d\x73\x0b\x5a\xc2\xa4\x6f\xce\x10\xeb\xa4\x6f\x6e\xb9\x9d\xf5\xcd\x2d\xf5\x52\x7d\x73\xe6\xce\x24\x7d\x73\x0b\xbc\x96\xf4\xcd\x49\x26\x93\xf4\xcd\x2d\x75\xcb\x4b\x12\xeb\x61\x74\x33\xfb\xd4\x00\xc1\x4d\x75\x62\x2d\x4c\x86\x29\xae\xf1\x57\xdc\x7e\x32\x82\x71\x61\xed\x4c\x46\x30\x1e\xdf\x63\x04\xe3\x51\x83\x35\x82\xf1\xd8\x25\x23\x18\x4f\xf5\xaa\x19\xf7\xd8\x24\x93\x11\x8c\xc7\x4d\x64\x04\xa3\xc4\x32\x69\x5f\x3e\x64\x6f\x36\x43\xd9\x95\x6f\x04\xe3\xc1\xe6\x93\x8c\x60\x3c\x2a\xb4\x46\x30\x1e\xf7\x85\x11\x8c\x67\xf8\xac\x11\x6e\x4a\xf2\x7d\x49\x44\x59\xdb\x00\xae\x12\x7c\x95\x49\x7f\x7a\xf1\xd2\xb9\x99\x5f\x4c\x81\x69\x7d\x81\x50\xed\x64\x8c\xa2\x9e\xb8\x24\xdd\x8d\xfe\xb2\x24\x43\x6c\x98\xbe\x19\xdc\xa4\xdf\x2a\xc9\x10\x1b\x3c\x97\xc1\x4d\x25\x78\x88\x1f\xab\x37\x82\x8c\x12\xb8\xa9\x84\xe3\xb3\xd6\x19\x39\xf6\xca\x3a\x14\x2a\x1e\xd2\xdd\x98\xdb\x95\x4d\xeb\x0b\xa8\xac\x19\xdc\x54\xe2\x63\x53\xba\x72\x7c\x37\xf9\x31\x6b\xfe\xf5\xaa\x04\x3e\xc1\x57\x59\xe4\x0b\xc1\x9e\xad\x9c\x42\x9d\xd6\x37\xcb\x01\x2b\x57\x4c\x36\x3b\xcf\xcc\x91\x6c\x14\xa2\xd6\x95\xfc\x98\x98\xc9\xd1\x9c\xad\x9c\x12\x83\x37\x6f\x9b\x93\xa6\x23\xc2\x70\x9a\x81\x51\x45\x8f\x58\x36\x3b\x2f\xa2\xd0\x66\x4b\x91\x46\xce\xf1\xfc\x5a\x69\x82\x43\x3f\xbf\xb7\xd4\xac\x37\x3b\x5e\xb6\x76\x96\xe8\x55\x8a\xd1\x6c\x76\x5e\x44\x93\xcc\x66\xe7\x05\x44\x4a\x16\x64\x35\xfb\xfc\x4a\x8c\xb9\xfd\x90\x51\xa6\x08\xab\x2c\xc8\x6a\xc4\xfb\x65\x89\x5e\x1b\x09\x11\x59\x3a\xd6\xc6\x4e\xcf\xd2\xce\x34\x76\x59\xb6\x2a\x68\xc3\x2b\x94\xc3\x2d\x72\xc1\x10\xac\x0a\x4a\x81\xb0\x37\x5b\xdf\xa4\x55\x9f\xed\x36\x99\x32\xfc\x6b\xad\x71\x54\x65\x91\xd1\xf6\x55\x22\x23\x29\x89\xb2\xc8\x68\xa3\xc0\x67\x91\xd1\xe6\x20\xcb\x22\xa3\x4d\xc4\x66\x8e\x37\x31\xca\x57\x79\xda\xa2\xc0\x67\x39\x54\x0d\x58\xcd\xe2\xa6\x8d\x91\x27\x8b\x9b\x8c\x7d\xcd\x3a\xd4\x56\xb2\x69\x22\x27\x1b\x27\x8b\x9b\xf6\xb2\x93\xea\x0f\xcb\x4e\xaa\x3f\xb0\xad\xb2\xb8\x49\xc6\xd1\xac\x43\xed\x1d\x36\x15\x5f\x1c\x64\x59\xdc\x74\xd0\xd8\xb3\xb8\xe9\x00\x1c\xb2\xb8\xe9\x80\x31\xb3\x84\x30\x8f\xfb\x48\xdc\x04\x41\xfd\x9b\xbf\xcb\x8d\xe3\x9b\x15\x5f\xe8\x5a\xf9\x53\x7c\x6d\xaf\x2a\xbe\x8e\xcf\x2a\xa0\x6e\x9f\xad\x4d\x40\x28\x48\x16\x46\x19\x60\x9f\x65\x49\x7d\xd0\x97\xb2\xa9\x6d\x0f\xa4\x10\xd9\xda\x22\xcf\xff\xcf\xd3\x7f\x8a\xfd\x9c\xac\x28\xe4\xda\x96\x0d\xc6\xd8\xfb\x9c\xee\x60\xed\x83\x5c\xee\xc1\x8f\x3a\xd8\xe0\xb3\x66\x35\x2a\x25\xac\xe3\xf9\x44\x5f\x25\x9b\x84\x22\x45\xbe\x17\x43\xe2\x73\x92\x9d\x1e\xcd\x2a\xcb\xf7\x42\xd5\xec\x37\x5b\xa9\xf3\xc9\x5e\x75\xb0\xee\x8b\xec\x60\x5d\x9f\xd9\x11\x35\x6f\x76\x44\xdd\x9b\x1d\x51\xb3\xe9\x88\x40\xa3\x59\xbe\x97\xa7\xf9\x5d\x47\xc4\xc9\x95\xa5\x48\x35\x62\x33\x9b\xbc\x66\x74\x7d\xce\x52\x93\x0d\xaf\x2e\x9b\x8c\x57\x8a\xd4\x67\xf9\x5d\xc7\x8b\x2f\x35\x97\x5b\xbe\x90\x21\xc8\xf7\xf2\x60\xbe\xce\xf2\xbd\x18\xde\x99\xe5\x7b\x79\x31\x5c\x64\xf9\x5e\xde\xe0\xb3\x8c\xf7\x55\xfc\x02\xd0\xb2\x21\x8b\xd9\x4a\x9d\xcf\xf1\x55\x8c\xf7\x7d\x7c\xd5\x65\x1d\x64\x41\xca\x83\xfa\x3a\xbf\x45\x2a\xb6\xcf\x5e\x31\xde\xb7\xf8\x21\xc6\xfb\xa2\x76\xe6\x62\x79\xbb\xe6\x87\xa4\xda\xc3\x9a\x94\xe5\x41\x7d\x87\x4d\xc6\xfb\x82\x5f\x32\x00\x2d\x1b\x58\x98\x05\x68\xc7\x5f\x77\xcb\x71\x2a\x34\x8c\xc9\x94\x5f\x2b\x1b\x93\x99\xc0\x2f\xd9\x98\xcc\x84\x1d\x32\x1b\x93\x99\x3c\x13\x81\x60\x2d\xe1\x20\xcb\x32\xba\x88\x40\x73\xbd\x8c\xeb\xfc\xd8\x66\x9c\x30\x50\x37\x37\x63\x7d\xdd\x29\xb2\x95\x66\xac\x94\xb9\x99\xd9\xe7\x41\x26\xc5\x68\x70\x2f\xb4\x4b\x76\xc4\x00\xdb\x4d\xa6\xa0\x69\x2d\xcb\x09\x60\xc9\x5d\x3e\x64\x20\x67\xee\xb7\x2c\x2f\xb3\x70\x29\x46\x51\xe0\xb3\x14\xa3\xb3\xfa\x2a\xc9\x9d\x80\x24\x59\x46\x94\xe9\xa4\x80\x8c\xb2\xe8\x26\x77\x4b\xda\x79\x18\x49\x22\x3a\x31\x3c\xe6\xcb\x79\x52\x6d\xca\x98\x41\x00\x43\xee\x32\x96\x2f\x3f\xe4\x88\x9c\xd0\xe1\x88\xdc\x83\xe3\xd2\xa2\x32\x29\xc3\x3e\x03\x57\xf3\xb8\x84\x54\xfc\xc9\x61\x9f\x71\x40\x64\x59\x4d\xa6\xc2\x59\x56\x93\x79\xf8\x1b\x60\x9f\x3c\x9d\x7d\x3d\x4a\x53\xe1\xac\x47\x49\xec\x93\xf5\x28\x4d\x3c\x77\x59\x8f\xd2\x44\x13\xcb\x7a\x94\xa6\x8b\x41\x8f\xd2\x52\x6f\xd1\xa3\x24\x7e\xc9\x7a\x94\x16\x76\x8f\xac\x47\x49\xae\xb9\xac\x47\x69\x91\x2b\x94\xf5\x28\xad\xc7\x67\x93\x4d\xfe\x95\x1e\xa5\xa5\x60\xd7\xa3\xb4\xdc\x92\x7a\x94\x4c\x7e\xcf\x7a\x94\x96\x3a\x8f\x1e\xa5\x1f\x6e\xfa\xb7\xd8\xd7\xd9\xb4\x5c\x72\x3a\x9b\x16\x11\x50\x59\x67\xd3\x22\x7c\x28\xeb\x6c\x5a\x38\x6e\xb2\xce\xa6\xe5\xfa\xd4\xd9\xb4\xb0\x0d\x66\x9d\x4d\x4b\x5d\x42\x67\x93\x28\x29\xeb\x6c\x5a\x04\xab\x64\x9d\x4d\x4b\xe5\x41\x67\x93\x94\x7d\x59\x77\x92\xb9\xa5\x59\x77\x92\x04\x71\x59\x77\xd2\x2a\x5e\x75\x44\x6a\x56\xba\x93\xa4\x25\xc9\x97\xf0\x84\xe0\xf3\xac\x3b\x49\xb0\x93\x6f\x31\x4a\xec\xc6\x59\x77\x92\x9c\xa8\x79\x5f\x02\x76\x86\xa0\x3b\x69\xb9\x20\x75\x27\x69\x9a\xc8\x97\x08\x14\x0b\x5e\xd6\x9d\xb4\x94\x5d\xba\x93\x16\x31\xa8\x59\x77\x12\xe5\xb9\xdf\xbc\x2f\xdb\x18\x93\xab\x3b\xc9\xa4\xf2\x6c\xc5\xc9\xd5\xed\xd5\x2d\x36\xea\xcd\x8e\x37\x7b\x95\xf1\xee\xcf\xa6\x04\xdd\xd9\x9b\x65\x45\x70\x8b\x9d\xcb\xae\xc6\x00\x75\x36\x6d\x77\xba\xee\xa4\x1d\xbd\x39\xf9\x5d\x7e\x9d\xd5\x31\x34\xb6\xe4\x4b\xf5\xb9\x7c\x55\xf5\x43\xfc\x9c\xe3\x88\x88\x5c\xca\x47\x56\x5b\xff\xa4\x54\x9f\x07\x9b\x5e\x96\xea\x73\x6f\xbf\xeb\x88\x54\x3b\xcf\xa5\x1c\x67\x42\xcf\x1d\xd1\xef\xd9\xf2\x38\x22\xce\xe2\x62\x75\x8c\xcd\x71\x53\xa4\x34\x91\x8a\xad\x58\x1d\x63\x73\xbc\x16\x79\x4b\x36\xfa\x5e\x91\xea\x93\xaa\x3a\x6f\x91\xea\xd3\xb4\xdc\xf2\x5c\x6a\x53\xaf\x32\x5e\x2a\x37\xbd\xe5\xb9\x23\xf2\xcd\x8c\x48\x06\xef\xf2\x38\x22\x6c\x6b\x05\xec\x93\xa9\xb3\xfc\x16\x99\x49\x0e\x19\xeb\x05\xec\x93\x0f\x06\x84\x22\x99\xa7\x59\xab\x45\x66\x12\xca\xe3\xbe\xc5\x22\x17\xe6\xe1\x16\xab\x46\x9e\x60\x53\x06\xbc\x6a\xd3\x7a\x1f\x40\x83\x22\x99\xa7\x68\xbd\x58\xe4\xe2\x10\x50\x54\xc0\x3e\xf9\xe0\xf7\x29\x32\x93\x98\xc4\x5a\x64\x26\x39\xc5\x6e\x38\x5e\x34\xf6\x22\x33\x89\x6a\x76\xb1\xc8\xc5\x61\x06\x8b\x64\x9e\x07\xe0\x50\x24\xf3\x3c\xc4\xcb\x15\xab\x46\xca\xe1\x5c\x2c\x72\xa1\x5e\x5d\x6e\x91\x0b\xe4\x7c\x91\x99\x44\xa6\xe5\x12\x1c\x2f\xcb\xac\x04\xc7\x8b\x9c\x2f\x16\xb9\xb0\x28\x40\x01\x55\x95\x07\x7d\xa9\x04\x19\x1d\x51\x8f\x4b\x90\x54\x2a\xda\xc9\x61\x93\x09\x95\x99\xe4\xf9\x7c\x33\x87\xfe\x93\xec\x06\xea\xfd\xa8\x76\xe3\xd8\x64\x06\x2f\x33\x09\x56\x91\x12\x6f\x01\x6b\xba\x21\x40\x1b\xdd\xab\x32\x93\x10\x1f\x58\x00\x68\xe5\x47\x74\xf6\x4f\xb1\x5f\xc0\x6e\xad\x23\x7e\x8b\x3c\x9f\xd4\x96\x7d\xcb\x25\x2d\xd9\x36\xab\x4d\x6f\x26\x3a\xc5\xca\x1a\x45\xec\x66\x4e\x5c\x11\xbb\x6d\x42\x4c\x8b\xc1\x90\xe3\xb1\x29\x05\xb7\xb3\x19\x2f\x6f\xad\xa3\x93\x0c\x10\x77\x61\x31\x18\xf2\x6c\x9b\x92\x79\xda\x0d\x83\x21\xc5\x50\xc5\x60\xc8\x83\xfa\x57\x0c\x86\x34\x51\xba\x18\x0c\x69\xa2\x71\x31\x18\xd2\xbc\xe9\x22\x69\x89\xac\x83\xe5\x33\x41\xe9\xf1\xcd\x26\x28\x11\x63\x50\x24\x2d\x79\x82\x6f\x36\x41\x09\xb1\x5f\x6e\xfd\x0b\x80\x52\xf9\x4c\x50\x7a\xbd\xd9\x04\x25\xb0\x4f\x49\xa6\x20\x21\xe8\x4a\x32\xe5\xca\x8d\x9f\x4c\xb9\x42\xa2\x16\x93\xe6\x1e\xac\x1c\xc5\xa4\xb9\x87\x58\xac\x62\xd2\xdc\x93\x6c\xda\x67\xe5\x8f\x49\x73\x0f\x16\xcb\x22\x04\xcb\x6e\x31\x93\xe6\x1e\x65\x88\x49\x73\xa2\xaa\x62\xd2\xdc\x53\x7d\x95\x49\x55\x98\xaf\x8b\x49\x73\xe2\xa6\x62\xd2\xdc\x83\xc5\xa0\xdc\x1a\x16\xf6\x59\x17\x98\xe9\xf9\xe5\x12\x72\xe2\x5b\x2c\x56\x7e\x34\x77\xb8\x48\x3c\x32\xa3\xaf\xd2\x3b\xdc\x6d\x6a\xeb\xbe\x6f\xd6\xd6\x8d\x77\xa6\xe8\x20\x1b\xb8\x54\x8a\x0e\xb2\x99\xed\xa4\xb6\xee\xec\x77\xd9\x9e\x5a\x0b\x4b\x16\x7d\x2b\x42\xf3\x2d\x72\xca\x9b\xad\xfc\xe8\xd9\x54\xca\xcd\x62\xe0\xd7\xe9\x5c\x3b\xf8\x52\x8b\x49\x73\xc3\x21\x14\x6d\xfb\x1c\xcd\x45\x0f\x9a\xf5\x6b\x8a\x1e\xb4\xe6\x9f\xd4\x83\xa6\xa1\xa6\xe8\x23\x6b\xdd\xab\x1a\x97\x08\x4a\x2c\xfa\xc8\x1a\x51\x4f\xe5\x96\xa2\xf0\x5f\xe9\x23\x6b\x6e\x76\x7d\x64\x0d\x4f\x7a\xa9\xb7\xf6\x1f\xf3\xab\x8f\xac\x0d\x9b\xc6\x80\xe1\x60\x2a\x42\xb0\xe6\x89\xa9\x8f\xac\x61\xc6\x29\x7a\xc1\x1a\x4a\x4e\xd1\x0b\xd6\x01\x4a\x45\x2f\x58\x23\x54\xb2\xe8\x05\x6b\xcb\xab\x8e\xc8\x43\x50\x2f\x58\x47\xe7\x29\x26\xbe\x75\x0f\xb2\x7a\xa9\xec\xed\xe4\xb1\xc9\x88\xf4\x91\x75\xb7\xa4\x3e\xb2\xae\x24\xd7\x47\xd6\x5f\x9b\x8c\xa8\x13\xca\x5e\xf4\x91\x75\x9c\xf2\x45\x1f\x59\x07\x64\x15\x7d\x64\x1d\xc7\x7a\xd1\x47\xd6\x9d\x6e\x7d\x64\xdd\x4d\xd7\x6e\x71\x0d\x6f\x96\x49\x72\x7b\x33\xe3\xed\xdd\x37\x3b\x5e\x4c\x0a\x45\x1f\x59\x2f\x76\xc3\xf1\x7a\x9e\xea\x23\xeb\xfe\x76\x7d\x64\x7d\xff\x15\xc9\x53\x74\x9f\x75\x27\x57\xf7\x59\x77\xea\xcd\x98\xeb\x80\xb5\x62\xc6\x5c\xf7\x70\xd1\xb9\x26\x9b\x6e\xd1\xb9\xd6\x9d\x4d\x9d\x6b\x1d\x28\x57\x74\xae\x75\xd0\x59\xd1\xb9\xd6\x95\xc6\x3a\xd7\xba\x53\xaf\x73\xad\x13\xe9\x51\x74\xae\x0d\xe7\x5a\xe7\xda\xc0\x40\x5d\x74\xae\x0d\x25\xaa\xce\x35\x89\x8f\x8a\xce\xb5\x81\x07\xb0\x98\x4f\x37\x9c\x5c\x03\x1a\xa7\x7a\xd7\x75\xbd\xe1\x88\x2c\xba\xde\x06\xf1\x8d\x45\xd7\xdb\xc8\xde\x6c\x35\x43\xfc\x20\x45\xd7\x9b\xc4\x7a\x45\xd7\xdb\x48\x5e\x95\xfc\xc7\x95\x60\xf5\xc6\xbb\x12\x00\x98\xed\xce\x26\x00\xb3\x51\x72\xf1\x2d\x00\xcc\xd6\x15\xbf\xf3\x96\x2d\xe3\x59\x20\x64\xeb\x8a\x5f\x20\x64\xeb\x58\x77\xcb\xbc\xc7\x3a\xe3\xb5\x96\x44\xc7\x20\x56\xa6\x05\x05\xd0\xba\xcb\x92\xdf\x4f\x5d\x42\xbe\xca\xae\x1a\xb6\x2c\xf5\xa8\x42\x7b\xf9\x2a\x09\x99\x2e\xf2\x55\x6e\xc5\x91\x75\x1c\xf6\x7d\x55\xb3\xc9\x10\xd6\xa5\x35\xa3\x57\x00\xb4\xa2\xed\xb7\x48\x32\x29\x75\x43\xd9\x56\x9c\xc4\x80\x50\xb6\xdd\x70\x4d\x4a\x23\x79\x35\xf6\x6d\x37\xb0\xfd\x16\x89\x22\xb5\xfd\x16\x6b\x0e\x4a\x86\x53\xb6\xcc\x06\x1e\xcd\xfa\x7d\x28\xba\xf7\x16\xe9\x1c\x8d\x9b\x2d\xba\x63\x0e\x56\x9d\xa2\xc3\x45\x16\xa9\xa2\xc3\xc5\xd4\xb6\xa2\xc3\xe5\xb0\x90\xaa\x0e\x17\x69\x76\xaa\x0e\x97\x43\xe0\x47\xd5\x3d\x71\xd0\x15\xab\x24\x09\x9b\xc5\x50\x75\x4f\xa4\xe2\xcd\x7a\x0f\x19\x60\xd5\x3d\x91\xf0\x5a\xd6\xf7\x26\x92\xfb\x2a\xdd\x31\xd5\xab\xba\x63\x00\xe0\xd5\x3a\x74\x06\x7f\x56\xeb\xd0\x51\xc0\xfa\xad\xaf\xee\x98\xe6\x77\x75\xc7\x4c\x9b\xba\x63\xa6\x37\xeb\x8e\x41\x9f\xaf\xd6\xa1\x93\xe8\xb5\x06\xdd\x31\xd8\xe5\xaa\xe4\x81\xa6\x4b\x54\xc9\x03\x23\xd3\x5d\x83\xee\x18\xb2\xe4\xaa\x85\xdd\xcd\x34\xa9\xf2\xed\x53\xe7\xf4\xad\x3a\x3e\x2a\x28\xa3\xaa\xa2\x7f\xd8\x99\xab\x2a\xba\xc1\x84\x55\x15\x3d\x6e\x7b\xe5\x78\xc1\x02\x55\x15\xdd\x74\x98\xaa\x8a\x6e\xec\x6b\x95\x3c\xd0\xf4\x90\x8a\x8a\x5e\x3e\x54\x82\x2a\xdf\xfe\x87\x36\x55\xe5\xdb\x37\x8e\xb4\xca\xb7\xff\x81\x8b\x2b\x2a\x7a\xf9\xe0\x96\xa9\xaa\xe8\x1f\xca\x73\x45\x0f\x2f\x1f\x0e\xee\x6a\x1d\xba\x0f\x6b\x61\x8d\xd6\xdd\x73\x21\x49\x1e\xf8\xbd\x76\x83\xf1\xfe\x42\x61\xff\x29\xf6\xab\xbc\x82\x66\x9d\x54\x54\xf4\x62\x7c\x63\x45\x45\x2f\x5f\xb2\xc3\xcb\x26\xbf\x31\xfa\x2b\x8a\x37\xfb\x2b\x08\x3c\xab\x9f\xbf\x02\x07\x59\xfd\xfc\x15\x38\x6d\xeb\xe7\xaf\x70\x41\x7e\x0e\x16\xcf\x54\x95\x39\x50\x0a\xfd\xfa\x39\xd8\xe6\xcd\xf6\x19\x51\x56\x3f\xfb\xdc\x7d\xd6\x3e\x73\x72\x55\xcb\xcc\x19\x52\x5b\xf5\x89\x98\x27\x5e\x2f\xdd\x1f\xc2\xb9\xea\x13\x29\xc0\xb1\xaa\xe3\xa3\x60\x94\xab\x3a\x3e\x4c\xc1\xae\x3a\x3e\x0a\x92\xad\xea\xf8\x28\x0e\x41\xc7\x47\xc9\x7e\x57\x5a\xf8\xe2\x87\x00\xc5\xa5\xf9\x66\xe9\x0d\x1d\x82\x34\xf8\xa5\xf8\xe6\xe5\x55\x6f\xbe\xb4\xe1\x76\xf2\x78\x95\xdf\xae\x5b\xa4\xf8\xeb\x74\x8b\x14\xe7\x48\xb7\x88\x99\xe0\x55\xb7\x48\x01\xa0\x55\xdd\x22\x95\xe3\xb5\xea\x16\x31\x57\xba\xea\x16\xa9\xee\x29\xdd\x22\xc5\x3d\xa5\x5b\xa4\x0c\x5f\x25\x13\xef\xe3\x87\x1c\xaf\xbb\x55\xb7\x48\xc1\xe5\x57\x75\x8b\x98\x85\x5d\x75\x8b\x14\xa5\x84\x6e\x11\x73\xa5\xab\x6e\x11\xf3\x9d\xab\x6e\x91\x82\xdb\xbd\xea\x16\x31\x47\xbb\xea\x16\x29\x18\x88\xaa\x6e\x91\x8a\xd5\xae\xea\x16\x29\xf8\xe8\xab\x6e\x11\xf3\xac\xab\xae\x8d\xfa\x79\xf3\xa5\x90\xf5\x55\x96\x2a\x00\x82\x55\x5d\x1b\x35\xdb\xa4\xcf\xb5\xda\x2b\xfb\x8c\xfb\xbb\xde\x9a\xe9\x6e\x2b\x5d\x1b\x15\xd0\x51\x75\x6d\x54\x22\x36\xab\x35\xd3\x2b\x6a\x67\x95\xca\x9e\xba\xc3\x6f\xb5\x66\x7a\x55\xec\x4b\x65\x5f\x51\x4a\x6b\xb5\xea\x0a\xa1\xa1\xd5\x12\x6f\x35\xd8\x74\x8e\x9c\x85\xea\x78\xb1\x62\x55\x6b\xa6\x57\xf0\x4b\xad\x8e\xd7\x85\x64\xcd\xf4\x8a\xf1\xa1\x4a\x65\x5f\x31\x1e\xd6\xea\x78\x3d\x14\xd0\xba\xb3\x45\xeb\x6a\x73\xbc\xb8\x54\x6a\x73\x44\xa8\xf7\xd5\xaa\xe8\x3a\xc7\xab\x64\xf5\xd5\x25\x8a\x5e\x9d\x1b\x88\xbb\x5a\xe2\xad\x11\xcf\x50\xd1\xab\x73\x53\x7c\x59\xe2\xad\xa2\x88\x56\xc9\xea\xdb\xeb\xab\x18\x51\x2b\x3e\xcb\x88\x5a\xb4\x1b\xdb\x3e\x7b\x33\x23\x92\x6d\xa3\xea\x7f\x91\x0f\xb9\xf6\x5b\x02\x8c\x3e\xeb\x7f\x69\xfe\x0d\xfd\x2f\x3a\xe5\xab\xfe\x17\x19\xa8\xaa\xfe\x97\x56\x6c\x5a\x4c\x24\xfa\x2a\xc7\x4b\xe4\x73\xd5\xff\xd2\x08\x23\xa9\xfa\x5f\x1a\x66\xba\xaa\xff\xa5\xe5\xbf\x5c\xba\x55\xd7\x8c\x31\x06\x55\xd7\x4c\x2b\xbe\xc7\xc1\x82\x38\xaa\xae\x99\xa6\x74\xba\x74\xf4\xc3\xab\x0e\xb6\xdb\x74\xb0\x8a\x23\x1d\x37\x0d\x25\xad\xea\xb8\x69\x18\x7b\xab\x8e\x9b\xe6\x06\x1c\x77\xb0\xac\x5e\x1d\x37\x12\xd5\x56\x1d\x37\x4d\x95\x46\xc7\x4d\x03\x74\xd4\x71\x7f\x85\xdf\xf5\x57\x1c\x9f\x65\xbc\x3d\xd8\x74\xbc\xf8\xcd\xab\xae\x99\x8e\x3e\x5f\x75\xcd\x34\x4f\x7c\x5d\x33\xdd\x9d\xae\x6b\xa6\xbb\xe3\x74\xcd\x74\xdc\x13\x55\xd7\x4c\x4f\x36\x8b\x4d\x7e\xce\xbc\x35\x16\xfd\x10\x23\xea\x1e\x82\xba\x66\x2c\xc2\x52\xf5\xbf\xf4\x68\x27\xa7\x43\x60\x9d\xe8\x7f\xe9\xc9\xe6\xf6\x59\xd6\x89\xfe\x17\x4b\xeb\x56\xfd\x2f\x2a\xff\x55\xff\x4b\xc7\x31\x57\xf5\xbf\x74\x2c\x06\x55\xff\x4b\x77\x42\x55\xef\x63\xf4\xaa\x6a\x18\x8e\x9e\xaa\xff\xc5\x72\x6f\x55\xff\x8b\x16\xcb\xfa\x5f\x75\x72\x86\xa0\x0f\x65\x80\x14\xea\x2d\xa6\x06\xce\xad\xb7\xfe\xb8\xbb\x46\xda\x87\xa3\x3a\x21\x57\x83\x46\xe6\x2a\x57\x83\xc1\x66\x55\x36\x06\x8d\xcc\xd5\xb0\x2e\x59\x16\xab\x7c\x0b\x16\x41\xa8\xf2\x2d\x18\x8a\x56\x6f\x15\x33\x4f\xcc\xa3\x01\xd0\xed\x29\x01\xfb\x21\x54\xa0\x4a\xb0\x60\xcd\xd0\xaa\xb7\x22\x28\x8e\xf4\x56\x84\xd7\x37\x9b\x9e\xa6\x92\xa6\xb7\x42\xfa\xfd\xaa\xb7\x22\x10\xf5\x54\xf5\x56\x04\x0c\x80\x55\x6f\x45\x40\x57\x6c\x7a\x2b\x02\x52\xb1\xe9\xad\x08\x68\x83\x4d\x82\x85\x17\x85\xb6\x49\xc0\xfe\x61\xbe\x6e\xc6\x71\x7d\xc7\x67\xd5\xb5\x8e\x57\x05\x0e\x8f\x4d\x74\x2d\xf3\x14\xda\x73\x33\x7a\x22\x4d\xc6\x9b\xa2\xaf\x62\x08\x19\x95\xa0\x3d\xb7\xa6\x6d\xa3\xa9\x66\x82\x23\xa0\xe9\x9e\xc8\x44\xc5\xb4\x5b\x6b\x0c\xc4\xdd\x74\x4f\x18\xcb\xdd\x0c\xcd\x7a\xaa\x57\xd9\x74\x99\x30\xb6\xa6\x7b\x42\x0e\xb1\xf6\xde\x1a\x01\xf4\x4a\xf7\x84\xa4\x61\x4d\xf7\x44\xc6\x4b\xd2\x74\x4f\x58\x1b\xa5\xc9\xb7\xf0\x3c\x5e\xd5\xfe\x89\x9f\xab\xe9\x9e\x30\x5a\xbb\xe9\x9e\xc8\x9f\x6f\x76\xbc\x9f\x37\x4b\x34\x8d\xd1\xb2\xdd\x5a\x63\x04\x13\xb6\x70\x6b\xab\x31\x04\xdd\x13\xb9\xd8\x64\xd3\x65\x96\x68\xd3\x3d\x91\xf1\xb0\x34\xdd\x13\xb9\x7b\xb3\xe3\x25\x40\xa5\x05\xc7\x3b\xfe\x72\xe9\x36\x59\xd3\xf3\xb6\x87\x0e\x16\x15\xae\xc9\x99\xb0\xfc\x51\x72\x26\x2c\x4c\x94\x4d\xce\x04\x03\x5f\x9b\x9c\x09\x0b\x3d\xa4\xc9\x6d\xbe\xb0\xed\xb7\x5b\x0e\xec\xf3\x66\x76\xcd\x42\xe1\x69\xf1\x12\x02\xf3\x5d\x39\x13\x1a\x8e\xd7\x26\x34\x08\x68\x0b\x4d\xca\x71\x93\x3a\x9b\xa5\xb8\x02\x27\x6f\x13\x38\x04\x74\xa7\x26\x70\x08\xd9\x9b\x0d\xa4\xf4\xaf\x0a\x1c\xac\x1a\xd9\x04\x0e\xa1\xfa\x2a\x03\x29\xab\xcf\x1a\x8f\x41\x9c\x4f\xfb\xcc\xa6\xc4\x62\xd9\x24\x15\x8f\x18\x97\x5a\x32\x9b\x12\xed\xb7\x89\x32\x3e\x62\x39\x9a\x28\xe3\x43\x91\x6e\x92\x15\xe8\x44\x68\xa2\x8c\x41\x4c\x57\x13\x65\xc8\x1c\xd8\x44\x19\x03\xa5\xb4\x89\x32\x06\x71\x2f\x4d\x94\x21\x91\x60\x13\x65\xcc\xc7\xab\xc6\x36\xe0\x61\x69\xa2\x0c\x2b\x08\x34\x51\xc6\x7c\x7c\xb3\xb1\x0d\xee\x47\x81\xc3\x44\x1c\x35\x81\xc3\x44\x75\x6c\x02\x07\xeb\xc3\x36\x81\xc3\x04\x05\xb7\x7c\xab\xd6\xf2\x73\x04\x0e\xc9\x1d\x27\x70\x30\x05\xa9\x09\x1c\x12\x62\xbf\x5d\x32\x70\x57\x4e\x76\xca\x92\xaf\x72\xca\xdc\x62\xd9\x29\x03\x32\x37\xb9\x0b\xcc\xcb\x68\x9a\xeb\xc3\xeb\xcd\x16\xd9\x71\x21\xc9\x5d\xf0\x00\x48\x5b\xb9\x25\x4b\xf8\xed\xe5\x96\xf2\xf4\xaa\x40\x49\x41\x67\xc2\xcb\x83\x2b\xb9\xc9\x5d\x60\x1c\x57\x93\xbb\xe0\xe1\x00\x6d\x72\x17\x18\x5d\xd6\xe4\x2e\x30\x52\xab\xdd\xfa\x59\x58\x48\x9a\xfc\x03\xf2\xd4\x35\xf9\x07\x1e\x14\xe9\x76\x6b\x60\x11\x94\xd8\xe4\x1f\x78\x40\x55\x4d\xfe\x81\x87\xa0\xe2\x26\xff\x80\x0c\x78\x4d\xe0\x50\xd0\x7e\x5b\xb5\xcf\xcb\x9b\xed\x33\x06\xb1\x26\xff\xc0\x83\xcd\xb6\xc9\x3f\x60\x48\x58\x93\x7f\x40\x0a\xd9\x26\xc3\xc0\x73\xec\xa4\x94\xec\xa8\xf7\xed\x56\xb9\x72\x5d\xc9\x30\xf0\x12\x04\xd5\x64\x18\x98\x58\x56\x9b\x34\x02\xaf\x22\x48\x1a\x01\xb9\xf5\x9a\x34\x02\xaf\xa7\x9e\x34\x02\x2f\x74\x22\xcd\x2a\x57\xaf\xab\x4e\x1a\x81\xf7\xf3\x6a\xb1\xe9\xb3\x8c\xe8\x05\xf8\x37\x69\x04\x5e\xc0\x4e\xbb\xd5\x9f\x81\x06\x4d\xa2\x80\x17\x2c\xd0\x24\x0a\x78\xb1\x03\x34\xa9\x00\x5e\x14\x95\x26\x15\x80\xd5\xd3\xda\xe5\x9a\x73\x3d\xff\x67\x39\xe7\x6f\x48\x05\xf0\x62\xb3\x6d\x52\x01\xc8\x0d\xde\xa4\x02\x78\xd1\xe2\x5a\x37\x52\x62\xf9\xac\x7d\xee\x7f\x51\xb1\x35\x59\x02\x5e\x14\xad\x76\x2b\x55\x81\x29\x9a\xa8\xa1\x60\xa4\x6a\xdd\xc1\x4e\x6f\x76\xb0\x68\xfb\xcd\x4a\x55\x2f\x1a\x7b\x03\x1a\xd4\x97\x94\xcf\x26\x34\x18\x8a\x85\x5b\xa9\x0a\xd5\xb1\x09\x0d\x06\x08\xab\x09\x0d\x06\x11\x50\x4d\x68\x30\x3e\x5f\xa5\xdc\xf3\x8c\xd0\x4e\x6e\x29\x8d\xa6\x3e\x3f\x86\xcf\xea\x98\xf3\x30\x32\x10\x6b\xb8\x6b\x08\xc4\xaa\x4d\x89\xaa\xb6\x9f\x50\x86\x9b\x56\x74\xab\x48\x37\xb5\xfd\xa4\x1c\x50\xdb\x4f\xca\x01\xb5\xfd\x44\x10\x66\x53\xdb\x37\xdb\xae\xa9\xed\xa7\xe9\xb3\x4a\x36\xff\xb3\xda\x7e\x42\x75\x6c\x6a\xfb\xe6\x3c\x36\xb5\x7d\x53\x11\xdb\x34\x4e\xa0\xda\x49\xe3\x04\x14\x56\x16\x9f\x32\x9c\xb5\xa1\xed\x17\x03\x56\x9b\xc5\xa7\x8c\x32\x6d\xcb\xe2\x44\x58\x59\x9b\xf5\x9a\xaf\xc0\xd1\x98\x7f\x85\x95\xda\xfe\x15\x65\x6a\xfb\x0f\x66\xf3\xa6\x31\xff\x71\x6d\x90\xa2\x52\x5e\x45\x0a\x58\xa0\xbc\xea\x8a\x9a\xfa\x5f\xc5\xaf\xa6\x7e\xa9\x2f\x9b\xa6\x7e\x89\x31\x1b\x48\xa1\xbc\xc5\x67\x19\xef\x8b\x59\xb2\x11\x8b\x55\xde\x6c\x37\x18\xef\x4b\xe2\x7f\x03\x47\x94\x57\x3d\xd3\xa2\xcc\xc6\xa0\x36\xbd\x06\x2f\xc0\xa1\xe9\x35\x78\x8b\x57\x19\xef\xdb\xbc\xca\x78\x5f\xd7\xd5\x96\xeb\xd2\xdd\xba\x1d\x6f\xf7\x66\xc7\x0b\xf4\x6b\xfa\x14\xde\x6d\xd3\xf1\x82\x7c\xdb\x76\xbc\xaa\xe8\x16\x9f\x7a\x3d\xb8\xb7\xca\x86\x0a\xad\xfe\x88\x10\xfc\x90\xf3\x4b\x26\x42\x33\x0f\xe5\xca\x3d\xf3\x50\x5e\x55\xa0\x5b\x7c\x0a\x0f\x7e\xbb\xc5\xa7\x80\xab\xcd\x48\xad\xa0\x16\x67\xa4\x56\x70\x0f\x9a\x87\xd2\x54\xf9\xcc\x43\x69\x6e\x2b\x1d\x1f\xcd\x1d\x6a\x1e\x4a\xfb\xfc\x10\x7d\x6e\x4a\x54\x1d\x1f\x52\x82\xf4\x5b\x40\x8a\xa3\xb9\xeb\xf8\xd0\x50\xd3\xc1\x2f\x45\x63\x4b\x17\xbf\x34\xb4\xb8\x2e\x7e\x69\xd9\x9b\x2d\x88\x56\x7c\x33\x73\xd4\x40\x0a\x5d\xfc\x62\x52\x43\x17\xbf\xb4\x66\xd3\x11\x75\x5f\xe5\x88\x98\xee\x6e\x3a\xbf\xc1\x48\xdd\x74\x7e\x4b\x27\x77\xc1\x8e\x95\xf5\xba\x60\xe7\x41\x11\xed\x82\x1d\x2b\xc5\x74\xc1\xce\x63\x9f\x05\x3b\x0f\xc0\xa1\x0b\x76\x1e\x84\x5b\x37\x16\xeb\xc1\x1a\xd3\x05\x3b\x6e\xc9\x2e\xd8\x91\xbf\xbd\x0b\x76\xde\xe7\xaf\x12\xea\x5d\x1c\x64\x71\xe7\x2e\x0e\x7a\xbb\x1f\x35\x90\xbb\x79\xd5\x40\xee\xe9\x47\x0d\xe4\xf6\x57\x88\x83\xc2\xed\x83\x47\x3c\xd2\xa9\xcb\x3b\xf7\xe0\x99\xea\xe2\xa0\x89\x08\xed\xe2\xa0\x89\x37\xad\x8b\x83\x16\xea\x41\xbf\x05\xa4\xee\xd5\x68\xb3\xd2\x64\xea\x35\xf6\x76\x7d\x40\x1a\xa8\xbb\x5e\x9e\x0a\x56\xed\x96\x88\x4a\xfe\x37\xbd\x3c\x95\x78\x8c\xae\x6b\xa6\x82\xbe\xbb\xae\x99\xea\x6c\xea\x9a\xa9\xc0\xed\xae\x6b\xa6\x06\xaf\xda\x0d\xe2\x04\xba\xae\x19\xed\xa8\x5d\xd7\x8c\x86\xe2\xae\x6b\xa6\x66\xbf\x7b\xbb\xc1\x00\xf5\xb0\x54\x0c\x44\x5d\x0f\x4b\x05\x37\x75\x3d\x2c\x56\xe6\xea\x7a\x58\x2a\x4e\x84\xae\x87\xa5\x62\x97\xeb\x7a\x58\xb4\xc1\x76\x3d\x2c\x32\x70\x76\x61\x54\xc5\xca\xd1\x85\x51\x95\x13\xa4\x0b\xa3\x2a\xa6\x98\x2e\x8c\xaa\xdd\x57\x39\x22\x82\x01\xba\xfe\x97\x8a\x48\xe9\x56\x6e\xaa\x38\x3e\xba\x20\xab\x22\xe8\xba\x20\xab\x2e\x6f\x76\xbc\xd3\xa6\xe3\xdd\x76\xc3\xf1\x1e\x3f\xa4\x0c\x79\x7c\xb3\xe3\x45\xed\xec\x49\x19\xc2\xf9\xd2\xad\x68\xac\xa1\xb8\x27\x65\x08\xba\x62\x4f\xca\x90\xe8\x55\xcb\xf7\xf8\xeb\x64\x1d\x37\xae\xb2\x03\xa3\x4a\x46\xdd\xed\xc9\x42\x9f\x8f\xcf\x76\x9b\x4c\x28\x30\xaa\xe4\xfb\x2c\x7d\x2e\xb8\xde\xba\x55\x89\x0b\x56\x9d\x9e\x2d\x39\x84\x49\xa4\x5b\x95\xd8\x22\xd4\x3d\xbb\xf8\x5d\x1b\x56\x25\x2e\x00\xa5\x6e\xf5\xa5\x42\x6a\x5b\xcf\xb7\x4e\x2b\x13\x0a\x6e\x2a\x05\xd1\xdd\xc5\x4d\x45\xf9\x23\x6e\x92\xd4\xb7\x8b\x9b\x8a\xe2\x57\xdc\x64\xe9\x9f\x6e\x98\x53\x71\xff\x66\x47\x54\xed\xa4\x23\x22\xea\xa0\xdf\x22\x4a\xee\xfd\xe2\x88\xb0\x54\xf4\xe2\x88\x50\x59\x7b\x91\xda\x6b\x78\x73\xb6\xc9\x77\xad\x2c\x5c\x86\x6f\xd6\xd6\x04\x8f\x59\x07\x19\x95\xf4\xf9\x6c\xb7\xc9\xfc\x16\x8b\x75\x12\xec\xda\x71\xc7\x94\x84\xb6\xdf\x71\xc7\x94\x94\xbc\x2a\x77\x34\x1a\x42\x2f\x56\xda\xc5\xd0\xda\x41\x55\x45\xba\x89\x5e\x75\xca\x63\x59\xed\xf5\x16\x27\x65\x44\xa0\xaa\x62\x59\x99\x2e\xab\x5b\xf7\xbb\xb2\xba\x1d\x7f\x3b\xa8\xaa\x18\x82\xdb\xad\x2c\x7c\x8a\xaf\xaa\x36\xed\x06\xe3\xb5\xf0\x6e\xaf\x86\x19\x60\xc3\xec\xd5\x55\x37\xff\x14\xfb\xc0\xb1\x92\x71\x94\x77\xe1\x58\x05\x16\x75\xeb\x08\xeb\x5a\xed\xcd\x52\xa4\x1e\x97\xcd\x1a\x6d\x64\x7f\x74\x50\x52\x93\xe0\xae\x83\x92\xda\x87\x05\xbe\xe3\x13\x69\xc6\xdd\x75\x7c\x22\xed\x03\x65\xf4\xee\x87\x80\xbd\xdd\x2a\xbd\x1f\xb9\x3f\x1d\xe0\xd3\x3e\x25\x0c\xc0\xa7\xc9\x33\xd3\x01\x1d\x4d\xfa\x97\xde\xfd\x10\x6a\x76\x37\x48\xe6\x53\xc2\x18\x24\xa3\x75\xa5\x1b\x24\xf3\x81\xa0\xbb\x51\x31\xf2\x20\x75\xe3\x5e\x3e\x8c\x2d\xdd\xb8\x97\x0f\x0b\x58\x47\x27\x6f\x1f\x28\xb8\x2f\x47\x84\xd5\xb1\x1b\x15\xf3\xb9\xf1\x51\x95\x9b\x76\xd4\xbe\x4c\x32\xc2\xbc\xd9\x97\x49\x46\x24\x75\xf6\x6d\x21\x48\x74\xb6\x8e\xda\xd9\xa4\x9d\xe9\xdb\x9c\x23\x85\xc6\x36\xe7\xc8\xf3\x65\x9b\x73\xe4\x61\x64\x29\x52\x6d\xb0\xdd\x52\x29\x92\xb4\xf4\xe3\x77\x71\x54\xf5\x63\x72\x93\x22\xe5\xf8\x66\x74\xb6\x6e\x49\xd0\xe4\x71\x73\x7c\x33\xc6\x96\xf1\xf8\x2a\x36\xd1\x40\x77\x6a\x09\x75\x62\xbc\x8e\x17\x25\x6d\xbc\x5e\x65\xf3\x0e\x43\x4a\x0a\xea\xee\x30\xa4\xa4\x20\xf6\xc7\x6b\x2d\x06\x0e\x85\x61\x48\x49\x03\xdc\x0d\x43\x4a\xf4\xce\x0c\x43\x4a\x0c\x0e\x1c\x86\x94\x34\xe6\x68\x18\x52\xd2\xd1\x4c\x86\xa4\x43\xda\x21\x87\xea\x44\x7f\x7c\xf6\xb3\xc9\x00\x55\x27\x3a\x47\xc6\x30\xa4\xa4\x43\x28\x31\x8c\xfa\xee\xc0\xd5\xa1\xb2\xd1\xa3\x6f\x66\xb7\x76\x60\xe3\x30\x97\xd6\x8c\x80\x71\x73\x69\x39\x22\x87\x21\x25\x9d\xfa\x8c\xc3\x90\x12\x2b\x44\x0c\x43\x4a\x72\xb5\x1b\x8c\x57\x1e\x8f\xa1\xde\x92\x49\x7e\x1f\xea\x2d\x99\x10\xcd\x71\x43\x4a\x88\x5d\x19\x37\xa4\x04\x0c\x32\xfe\x8b\xfa\xe6\xb7\x1b\xda\xbd\x83\x57\xb3\x4d\xfe\x06\xaa\x48\x33\x89\x63\xa0\x8a\x34\x09\x34\x06\xaa\x48\xb3\x3a\xde\x40\x15\x69\x9b\xb3\x69\xa0\x8a\x34\xe9\x35\x06\xca\x46\xdb\x80\x8e\xf1\xf9\x21\x3c\x68\xc3\xc8\x67\x13\x4f\x86\x91\xcf\xdb\x3f\xf9\xf9\x66\xcc\x83\x23\xf9\x66\x90\xc2\xf0\x1c\x97\x8b\x63\xdc\x73\x1c\xcd\x79\x18\x9f\xbc\x11\xb0\xc3\xf8\xe4\x8d\x26\x36\x8c\x4f\xde\x60\xcc\xe1\xd1\x9c\x30\xf0\x0e\x8f\x66\xf9\x7c\x86\x47\x73\x02\x62\x0f\x8f\xe6\x04\xd6\x1b\x1e\xcd\x09\xe5\x79\x64\xc9\x3c\x11\x6e\x23\xeb\x52\xe9\x7e\xc8\x83\x8c\x98\x84\xe1\xd1\xac\xd1\x60\x78\x34\xcb\x6e\x34\x3c\x9a\xa5\x8e\x1c\x1e\xcd\x3f\x93\xc2\x3f\xc5\xfe\xf0\xd4\x4e\xd3\xe1\x78\xc6\x61\x4f\x18\x9e\xda\x09\xdb\xe0\xf0\xd4\x4e\xee\x29\x4f\x6d\x89\x80\x46\x71\xb0\xdb\x67\x1d\x2c\xe1\xf4\xc3\x33\xdd\xf4\xc9\xe1\x99\x9e\xdc\xe9\x9e\xe9\x7a\x79\xc6\x3d\xd3\xd1\xac\xc6\x3d\xd3\x51\xfe\xc7\x3d\xd3\x11\xa1\xc3\x33\x3d\x63\x4f\x18\x9e\xe9\xba\x84\x86\x67\xba\xd4\x97\xc3\x33\x5d\x1e\xa1\xe1\x99\x9e\x71\xbd\x0d\xcf\x74\x3d\x53\xc3\x33\x3d\xa3\xde\x0f\xcf\xf4\x8c\x34\x1e\x9e\xe9\xba\xa2\x06\x67\x7a\xd1\x8d\x35\x3c\xd3\x33\xb2\x7a\x78\xa6\x4b\xaa\x39\x3c\xd3\xad\x5f\x33\x3c\xd3\xb3\x5b\xcc\x33\x3d\x7f\x36\xbb\x57\x99\x85\x7b\xa6\x47\xaf\x3a\x5e\xbc\x06\xa3\x3a\xde\x68\xaf\x1c\x2f\xfa\xde\xa8\x8e\xd7\x2d\xd6\x1c\x2f\x19\x76\xa3\x39\x5e\xac\x8e\xa3\x39\x5e\x77\x4d\x73\xbc\x78\xb5\x46\x73\xbc\x18\x5b\x86\x74\xac\xba\xb1\x86\xf5\x3e\x24\x1d\x1a\xd6\xfb\xc8\x8a\xfd\xa6\x0e\x83\x45\x68\x34\xa5\xa2\x2b\xa7\x29\xf7\xd0\x15\x87\x29\xae\xbd\x7a\x75\xdb\x64\x16\x50\x27\x4a\x47\xbb\x18\xa8\x13\xa5\x63\x5a\x1c\x16\xfd\xd7\xcf\x3e\x50\x27\x4a\x77\xc7\x75\xe5\x3c\x96\x99\xd1\x95\xf3\xe8\x1e\xa3\x2b\xe7\x81\xf9\xa3\xdf\xfa\x59\x0c\x5f\x2b\xab\xb5\xa1\x87\x84\xab\x15\x5d\x71\x68\x65\xad\xc5\x57\x59\x3f\x0b\x55\x79\x68\x4a\xad\xd5\x9b\xb1\x1b\xd7\x6e\xf3\xd6\x95\x76\x08\xc0\xe4\x8a\xe5\x6d\x68\x4a\xb5\xec\xc8\xd0\x94\x2a\x50\x1a\x12\xae\x56\xf4\x96\x81\x29\xb5\x56\x8c\x87\x03\x53\x6a\x35\xb2\x65\x60\x4a\xad\x15\x95\x6f\x60\x4a\xad\xd5\x4d\x87\x29\xb5\x36\x10\xca\x18\x8e\xd7\x3d\x38\x1c\xaf\x7b\xdf\xa2\xff\xf5\xf8\x21\xc7\x4b\xf8\xcd\x20\xca\xa2\xb6\xe0\x9b\xa7\x6f\xb6\xcf\xcb\xa6\xbd\xda\x36\x59\x39\x28\x66\xb5\xb9\x25\xaf\x55\x16\x35\x66\x60\x95\xad\x8d\x5c\xc5\x81\x55\xb6\x36\x8f\x1b\xb4\xb8\x2a\x1b\xed\xc0\x2a\x5b\x5b\xf6\x2a\xe3\x6d\xc5\x67\x95\x48\xd5\xa6\xbe\x0c\x7f\xce\x74\x87\xa2\x79\x8e\xe9\x0e\x1d\x76\x43\xbd\x85\x80\xf3\x81\x55\xb6\x3e\xaf\x37\xeb\xe9\x50\x43\x98\x9a\x41\x5e\xbb\xa1\x19\xe4\xf5\x59\x7d\x37\x8a\x82\xa5\xef\x46\x41\xb1\x74\x21\xa1\xe3\x8d\xa5\x3b\x06\x8b\xdf\xb8\x55\xfe\xe3\x5f\x01\x9c\x63\x39\x3a\x22\x10\xc6\xd2\x53\xa3\xd0\x58\x7a\x6a\x14\x1a\x4b\x67\x37\x16\xbc\xb1\x1c\x9d\x52\x62\x39\x3a\xd5\x3f\x69\x82\x1e\xf7\xc5\xba\x46\x1e\xa6\x60\x39\x9b\x80\xa6\x81\x0d\xb6\x55\xac\xac\x03\x1b\x6c\xb3\xfc\xc7\xc0\x06\xdb\xea\xbd\x39\xda\xe4\xcd\x58\x59\x9b\x81\x67\xc3\x12\xff\xd5\x83\xd8\xe0\x8d\x2b\xca\x0c\xde\xb8\xb2\xcb\xe0\x0d\x2b\x73\x0d\x8b\x65\x64\x7c\xc7\xc3\x62\x19\xd9\xdd\x6a\xb1\x8c\x8c\xe5\x70\x18\xe9\x91\x8b\xcf\x16\x9b\xfc\x49\x23\x3d\xb2\x22\xc5\x52\x1a\x96\xf1\x1a\xb7\xd4\xbe\x6b\xcc\x52\x1a\x59\x71\x64\x29\x0d\x1d\xf4\xc3\x52\x1a\xba\xef\x87\xa5\x34\xb2\xea\x81\xa5\x34\x32\xb8\x69\x5a\x4a\x43\xf5\x6f\x5a\x4a\x23\x63\xb5\x9b\x46\x7a\x64\xb2\xe4\xa6\xa5\x34\x32\xba\xc4\xb4\x94\x46\x06\x5f\x4f\x4b\x69\x64\x84\xc6\xb4\x94\x86\xb5\xc6\xa6\xa5\x34\xf2\xf0\xbb\x8e\x17\x3d\x64\x5a\x4a\x43\xfa\xb8\x69\x29\x0d\x35\xf6\x69\x29\x8d\x3c\xbd\xea\x78\x87\xdd\x70\xbc\xa0\xaa\x69\xb1\x8c\x8c\x3e\x3f\x5f\x47\x84\x3b\x66\xbe\x8e\x08\x2b\xeb\xb4\x94\x46\x79\xbd\xea\x88\xd0\x6f\xa7\xa5\x34\x32\x16\xa1\x69\x29\x0d\x8b\x41\x4f\x2b\x03\x66\x90\xe0\x94\x93\x27\x63\xc3\x9c\x16\xda\x28\x8f\x6f\xee\x36\x0b\x4d\x47\x74\x7c\x76\x7a\xd5\xe6\xb2\xc9\xbf\xd2\xe0\xa9\x45\x68\x5a\x68\x43\x16\xbb\x69\xa1\x8d\x82\xb5\x70\x5a\x68\xc3\xba\x4e\xd3\x42\x1b\x05\xd0\x31\x2d\xb4\x51\xd0\x4c\xa6\x85\x36\x4a\xf0\x6a\xf2\x66\xbe\x6b\x35\x8d\x12\xbd\xca\x78\x8d\x4f\x9e\x56\xd3\x28\x48\xd4\x69\x35\x8d\x82\x02\x3f\xad\xa6\x61\xe1\xaa\x69\x35\x8d\x82\xc6\x3e\xad\xa6\x51\xd0\x3d\xa6\xd5\x34\x0a\xe7\xda\x34\x32\x44\xa3\xd6\x34\xf6\xc3\x02\x52\xd3\xe2\x86\x05\xeb\xfd\xb4\xb8\x61\x29\x36\x1d\x11\x18\x73\x5a\x4d\xa3\xb0\x43\xa7\x71\x23\x86\x2b\x4f\xe3\x46\x8c\xc7\x9e\xc6\x8d\x94\x6c\xd3\x11\x15\x5f\xe5\x88\x38\xc7\xa7\xe9\xa5\x05\xa3\xfa\x34\xbd\x54\x1b\xd7\x34\xbd\xd4\x2a\x51\xd3\xf4\xd2\xe2\xf2\x36\xbd\xd4\x10\xeb\x69\x7a\xa9\x85\x9f\xa6\xe9\xa5\x85\x73\x7c\x9a\x5e\x5a\xaa\x37\x3b\x5e\x1c\x10\xd3\xf4\x52\xe3\xb1\xa7\xe9\xa5\x05\x13\xca\xfc\xee\x78\xe9\x86\xb5\x36\x0a\x26\x94\x69\xad\x8d\xb2\xff\x62\xe0\x9c\x96\xe1\x28\x08\x9c\x69\x19\x0e\x0d\x6b\xd3\x32\x1c\x46\x50\xcf\xcf\x5f\x31\xfd\x8a\xbf\x62\x79\xd5\x5f\x31\xec\xb0\xbf\xc2\x5d\x63\x19\x8e\x82\xf7\x70\xa6\xfb\x2b\x58\x90\x96\xe1\x28\x18\x5b\xa6\x91\x2d\x65\x7b\xd5\x5f\xb1\x7d\xd6\x5f\x41\x96\xee\xb4\x0c\x47\xe5\xf4\x9c\x96\xe1\xa8\x6e\x7c\xcb\x70\x94\xe3\xcd\xaa\x25\x6e\xc0\xa4\x5a\xf2\xfa\x5d\xd5\xb0\x60\x9f\x55\xc3\x40\xee\x33\x5d\x0b\x18\xff\x4a\x83\xad\x59\xf3\x53\x83\xed\xc1\x60\x32\x2d\xc3\x11\xc0\x20\x53\xdc\xd7\x21\x0f\x99\xe2\xbe\x4e\x34\xce\x14\xf7\x0d\xa5\x84\x26\xd9\x01\x8e\x98\xe2\xbe\x61\x9f\xc5\x7d\x03\x0d\x67\x8a\xfb\x06\x71\x77\x53\xdc\x37\x30\x5c\x4c\x71\xdf\x88\xbe\x79\xfb\xac\xaf\x3a\x7e\x88\x01\x0a\xee\x86\x42\x43\x70\x37\xdc\xf8\x82\xbb\x81\x1e\x32\x05\x77\x43\x81\x23\xb8\xd3\x65\x3f\x05\x77\x03\x1c\x31\x05\x77\x43\x81\x23\xb8\x1b\xca\x2e\xc1\xdd\xc0\x52\x3a\x05\x77\x66\xc9\x4d\xc1\xdd\xf8\xfc\x90\xe3\x2d\x36\xef\x78\x99\x14\xc1\xdd\xc0\xb8\x34\x05\x77\x43\x91\x22\xb8\x1b\x0a\x0d\xc1\xdd\x50\xfe\x08\xee\x4c\xa9\x9b\x82\xbb\x51\x6c\x3a\x5e\xf4\x96\x29\xb8\x1b\x78\xff\xa7\xf0\xcd\x34\xf9\x29\x7c\x1b\x6e\x2b\xe1\xdb\xe0\x1c\x9f\xc2\xb7\xa1\x94\x10\xbe\x0d\x37\xbe\xf0\xcd\x70\xd6\x29\x7c\x1b\xcd\x57\x39\xa2\x6e\xaf\x1c\x91\x1b\x5f\xf8\x36\x3c\x40\x85\x6f\xc3\x3d\x28\x7c\x1b\xd3\xa6\x23\x22\xae\x60\x0a\xdf\x06\x91\x3c\x53\xf8\x36\x48\xa6\x98\x02\x34\xa3\xcb\xa6\x00\xcd\x72\xb1\xb3\x39\x22\x77\x59\x73\x44\xc7\xab\xd3\x9b\x59\xa2\xc2\xb7\xe9\x86\x15\xbe\xcd\xc7\x21\x1c\xaf\x72\xb3\xf0\xcd\x90\xb0\x29\x7c\x9b\x78\x3a\xa6\xf0\x6d\xba\xbc\x85\x6f\x13\xf5\x7e\x0a\xdf\x26\xa8\x79\xde\x20\x19\x3b\x29\x40\x0b\x78\x67\xe6\x0d\x83\xc1\xb4\x38\x2f\x40\xfb\xbc\x6a\xd9\x32\x10\xf7\x14\x73\x05\x82\x10\xa6\x98\x4b\x3f\xfb\x14\x73\x05\x77\xa8\x98\x2b\xd8\x49\x31\x57\xf0\x1c\x17\x55\xe9\x58\x9f\xa2\xaa\xe0\x77\x45\x55\x01\x43\xeb\x14\x55\x85\xcf\x67\x2d\x4c\xf6\xd9\x0d\x0b\xb1\xfd\x7f\xe3\xfc\x5b\xec\x0b\xb8\x42\xf2\x41\x6b\x96\x65\x7b\x28\xc0\x2c\x76\x49\x80\xe9\xfa\x14\x70\x55\x8f\x2d\x01\x57\x55\x59\x12\x70\x55\x55\xa9\x0b\xb8\xb0\x18\x4c\x00\x57\x39\x6e\x84\xa9\x9b\xa3\x79\xb3\x6e\x0e\xf4\xdb\x29\xa4\x3a\x20\xac\x29\xa4\x9a\x9e\xda\x37\xd0\xc5\x3f\x63\xa0\x8b\x24\xb7\xd3\x40\x97\x79\x3f\xe4\x1a\x73\x13\x19\xe8\x32\x49\x7d\x9a\x06\xba\x48\x72\x3b\x0d\x74\x91\x15\x6a\x1a\xca\x22\x51\xed\x34\x94\x65\x12\x65\x3a\x0d\x56\x99\x64\x17\x4e\x83\x55\x26\x6c\x3f\xd3\x60\x15\xf9\xa6\xa6\xc1\x2a\x73\x7b\xb3\xb3\xa0\x38\x92\x38\x48\xa4\x30\x0d\x56\x39\x38\x2f\xa6\xc1\x2a\x56\x36\x9f\x06\xab\x48\x64\x31\x0d\x56\x91\xc8\x62\x1a\xac\x22\x69\xc9\x34\x58\x45\xaa\x8a\x69\xb0\x8a\x44\x16\xd3\x60\x15\x59\x2f\xa6\xc1\x2a\x12\x59\x4c\x83\x55\xa6\x0a\xad\xc1\x2a\x8b\x78\xe3\x69\xb0\xca\xea\xbe\xb9\xdb\xf4\x55\xe6\xe1\x7a\x18\x19\xac\xb2\x71\x9e\xce\xad\x95\x55\x99\xb9\xb5\xb2\x2a\xbb\xac\x75\xb8\xb0\xb2\x4e\xe1\xdb\x22\x04\x77\x0a\xdf\x56\xb3\x19\x6c\x32\x5e\xe1\xdb\x12\x83\x08\xdf\x16\x41\x14\x53\xf8\xb6\x30\xe7\x4e\xe1\xdb\xb4\x93\xc2\xb7\xe9\xba\xb2\xec\xbb\x51\x40\xd3\xb2\xef\x2f\x6e\xf7\xa9\xe3\xe3\x55\x75\x04\xa0\xb5\xd7\x13\x04\x80\xd6\xde\x6c\x37\xb0\x1b\xbf\x28\xb4\x0b\x80\xd6\x0c\xff\x5b\x00\xb4\xf6\x62\x10\x5b\x40\xb0\x66\x30\xd2\x02\x82\x35\x03\x0b\x97\x2e\x95\xb7\xf8\xac\xe5\x80\x71\x9e\xae\xc7\x3e\xb3\x61\x97\x0e\x97\xb7\xf9\x5d\xcb\x01\x83\x40\x17\x10\xac\x19\x1c\xb8\x1e\xfb\xcc\xe9\xb3\x40\x55\xcd\xc8\xa5\xf5\x5a\xb3\x98\x39\x5a\xaf\x9d\x1c\xde\xcc\x8f\x9d\xc9\x9b\x35\xd7\x23\x46\x96\xa8\x6a\x31\xdd\x4b\x54\xb5\x30\xff\x2e\x51\xd5\x7e\x7c\x16\xc9\xb6\x51\xc2\x97\xa8\x6a\xfb\xaf\x44\x55\xeb\xf6\x6a\xd9\xe4\xd7\x89\xaa\x16\x06\xb1\x25\xaa\x5a\x76\x52\x54\xb5\x80\xba\x4b\xdc\xb4\x96\x57\x5d\x2a\xe0\xc4\x25\x32\x32\x39\x7a\x89\x8c\x16\x0a\xfc\x12\x19\x2d\x8e\x8c\x25\xf6\x59\x18\xd3\x96\xd8\x67\xe1\xe6\x5b\x37\x2a\xfe\xf8\x2a\x7b\x85\x31\x7c\x19\x15\xbf\x81\x7e\xeb\x46\xc5\xa3\x1f\x2e\x91\x91\x14\xe5\x4b\x64\xb4\x5f\xaf\x7e\x36\xff\xe2\xe4\x59\x82\x26\xa9\x02\x97\xa0\x69\xa3\xef\x2d\x41\xd3\x06\x6f\x2e\x41\xd3\xe6\x8c\x5b\x82\xa6\x8d\x63\x6e\x09\x9a\x36\x67\xeb\xba\x9c\x3c\xd1\xfe\x4f\x9b\x4c\x90\xa0\x69\x47\x3b\xbc\x6d\xb2\xe4\x04\x4d\x9b\x1d\xb7\x04\x3e\x9b\x1d\xb7\x04\x3e\xdb\x5d\x23\xf0\xd9\x50\x05\x2e\x81\xcf\xe6\x50\x58\x02\x9f\xed\x26\x12\xdd\x6c\x77\x8d\xe8\x66\xbb\x2f\x44\x37\xd2\x6d\x2d\xd1\xcd\x6e\xde\x6c\x9f\xdd\x35\xa2\x9b\xdd\xfc\x90\x7d\xe6\x04\x59\xa2\x9b\x89\xd9\x6a\x89\x6e\x26\xb0\x77\x89\x6e\x26\xce\xf1\x25\xba\x91\x38\x71\x89\x6e\x66\xf3\x59\x37\x91\xdd\x30\x6e\x3f\x21\x33\x97\xe8\xa6\xe1\x8e\x59\xa2\x9b\xe6\x72\x15\xdd\x34\x17\xb3\xe8\xa6\x61\x84\x5c\xa2\x9b\xb6\xfd\xae\x46\x57\x37\xa0\xe8\xa6\x91\xec\xb3\x2c\x41\x68\x7a\xda\xb2\x04\xe1\x40\xef\x5a\x72\xf2\x88\xaf\xd7\x2d\x64\xcf\x81\xb2\x6e\x21\xfb\xe3\xd5\xe8\x55\xde\x6c\x21\xfb\xf2\xf8\xaa\x64\x93\xc5\x60\x21\x7b\x0d\x26\xcb\x42\xf6\xe5\xf1\xd9\x6a\x93\x5e\x59\xc8\xde\x32\xd9\xcb\x42\xf6\x46\xc5\x2c\x0b\xd9\x17\xdc\x22\xcb\x42\xf6\x1a\x3d\x96\x85\xec\x4f\xf5\xea\xb6\x49\x9f\x2d\x37\x2f\x35\xd9\xb2\xdc\xbc\xd4\x0d\xcb\x72\xf3\x07\x95\x75\x59\x6e\x5e\xda\x87\x65\xb9\x79\xb9\x8f\x56\xb9\x4e\x6a\x9f\xe5\xbb\x19\x9b\xc0\x12\xa1\x14\x65\x97\x05\xe5\x33\x50\x77\x59\x50\xde\xca\xc2\xcb\x82\xf2\x56\xe9\x5d\x16\x94\xb7\xfe\xef\xb2\xa0\x7c\x74\x80\x92\x97\x5a\x8d\x74\x49\x5e\x1a\xa7\x4d\x46\x14\x5d\xfc\x92\x97\x7e\xf7\x59\xc3\x1b\x70\xd6\x2c\x0b\xca\xcf\xe2\xcd\xfc\xe7\xbb\xbc\xc5\x20\xb2\xdf\x2c\xc9\x4b\x27\xa6\x98\x65\xa0\xc8\x74\x08\xe8\xe4\xcd\x1a\x01\x0b\x95\xaf\x4d\xd4\xc5\x85\x8d\xbd\x4d\xbc\x15\xcb\x28\x0b\x0d\x35\xcb\x28\x0b\x2d\x24\x6b\x3a\xa1\xee\x14\x54\xbe\xa6\x29\x66\xa1\xf2\xb5\x72\x3f\x74\x6c\xd2\x49\x43\x32\x2c\x14\xbe\x0c\xc9\xb0\x14\xf8\xba\x44\x25\xe8\x0f\x6b\xc9\x88\x82\xc1\x73\x19\xb0\xd1\xf1\xbf\x2c\x03\x36\x36\xe8\x75\x19\xb0\xd1\xb1\xac\x2e\xec\xea\xad\x7b\xfa\x2c\xf9\x52\x3c\x9b\x96\x7c\x29\xd3\x0f\xc9\xe2\x32\xfd\xd0\xb0\xc9\x78\x51\x17\x5b\x9f\xf6\x59\x16\x97\xf5\x97\x6d\x7f\x69\x54\x17\x41\x2f\x8d\xea\x06\xcc\x2f\x8d\xea\x5a\x0c\x96\x46\xf5\xa1\x34\x36\xc2\x64\x60\x1b\x5c\xe8\x8a\x6d\x60\x45\x5f\x9a\xdc\xe5\xa8\x59\xd7\xe4\xbe\xbd\x59\xda\x70\xf7\xc5\x96\x36\xdc\xe3\x66\x4b\x1b\xae\xb6\x60\xb0\x4a\xc3\x20\xbf\x0c\x56\xe9\x2e\x0c\x75\xc5\xbe\xfd\x90\x84\x36\x28\xb4\xcb\x50\x96\xae\x84\x41\x57\x6c\x5d\xc9\x76\x64\xa1\xf1\xe4\x3d\x4e\x2e\x66\xe4\x65\xdc\x4b\xf7\x98\x3e\x8e\x57\xf9\x73\x1c\xaf\xf2\xc7\xa8\x98\x81\x71\x69\x19\x15\x33\x5e\xaf\x32\xde\xe1\x46\x30\xb0\x79\x47\xbf\x6b\x5c\x84\xbb\x46\x6d\x50\xe6\xf3\xad\x36\xb8\x89\x22\xd8\x6a\x83\x96\xa9\xdd\x98\xeb\xdb\x06\xce\xec\xc7\xb8\x08\x70\xd3\x56\xfd\x93\xdc\x72\xab\xfe\x49\x8c\xb9\x55\xff\x24\xb7\xdc\xaa\x7f\x1b\x59\xbd\x55\xff\x36\x6e\xf7\xfd\xd8\x49\xce\x88\xfd\xa8\xa2\x83\xfa\xb7\xca\xe1\xde\xbe\x99\x21\x1c\xcc\xb9\x1b\xfb\x7c\x3b\x68\x17\x1b\xfb\x7c\x93\x64\x72\xab\x49\x1e\x34\x84\xad\x26\x79\xb0\x1b\x6f\x75\xc5\x03\xec\xdd\xe8\x8a\xf1\x79\xbc\xfa\x1b\xd1\x39\xa0\xc8\x8d\xae\x18\xf4\x97\x6d\x74\xc5\xf8\x30\x29\x1b\x5d\xf1\x9c\xc7\x9b\x27\x4d\x94\xa5\x8d\xae\x78\x0e\x93\xb2\xd1\x15\xcf\x89\x5e\x3d\x34\x51\xe1\x36\xba\xe2\x63\x0a\xd2\xc6\x02\xff\x3c\xf8\x50\x36\x16\xf8\xf0\x3a\x7c\x34\xc9\x20\x6b\xdf\x46\x93\x7c\x74\xdb\x6d\x63\x84\x32\x51\xb5\x5b\x0b\x7c\x3a\xbe\xca\x68\xf3\xd7\xa6\x21\xd6\x98\x25\xb7\x7c\xfb\x1d\xc9\xb6\xb5\xc0\xb7\xe4\x87\x2c\xa0\xef\x84\x1a\x23\x64\x46\xf3\x0e\x96\x02\x3c\x7e\x97\x68\xf3\x94\xbc\xca\x0c\x56\xfc\x92\x5b\x2d\xf4\x80\xe6\xb6\x31\x42\xeb\xb3\x29\x75\x3f\x87\xc2\x36\x46\x68\x11\x67\xb8\xa3\xc7\x0d\x4a\xce\x56\xd5\x94\x53\x6b\x1b\x23\x54\x51\x68\xf7\xa5\x7f\x3c\xbe\x19\x6e\xab\x1a\x7d\x15\xe3\x1d\xcd\x26\xe3\x95\x1f\x6f\xab\x6a\x0a\xed\xb7\xe1\x46\x61\xfa\xa1\x5b\xb7\xc2\xab\x64\xf4\x3c\xcd\x67\xe5\x06\xb7\x93\x46\x3e\x2f\xec\xdb\xdb\xc8\x67\x53\x87\xb6\x91\xcf\x09\x34\xb7\x3f\x33\x7a\xaa\x37\x5b\xaa\x20\xdb\x34\x8c\x0d\x5f\xe4\x36\x54\xe9\xb9\x1f\x62\x7e\x17\x82\x71\xab\xa6\xce\xe1\x87\x50\xdb\xc6\xbd\xd9\xf1\x3a\xdd\xaa\xa9\x87\x43\x7f\x7f\xe6\xef\xff\x7f\xa9\xfc\x53\xec\x6f\xe3\xa3\x44\xb2\xdb\xa0\x68\x53\x92\xb7\x41\xd1\x0f\x46\xe6\x6d\xe6\xe9\xc1\xd7\xbf\xaf\x06\x8b\x6d\x7f\xdf\xcc\x53\x37\xbe\xbc\x91\xc6\x57\x6f\x33\x4f\xbf\x6e\x93\x5f\x11\xfc\x6f\xb2\x4a\x86\xe4\x9b\x2d\x2d\x31\x6d\x1a\x36\x80\x8e\xba\xd5\x60\x67\xf7\xaa\xa5\x1e\xa7\xdd\xd0\x3e\x8f\xc9\x7d\x9b\x79\x3a\xd0\x9c\xb7\x99\xa7\x2f\x76\xe3\x2d\xbf\xcd\x9b\xbc\x6a\xb2\x0f\x47\xc6\xce\xb7\x04\x33\xdf\xb5\x88\x76\x00\x6f\x6e\x59\x25\x9f\xc7\xa6\xb4\xbd\x60\xc6\x2d\xab\xa4\xa5\xdb\xb7\xac\x92\x92\x5b\x6e\xd3\x54\x05\x59\x5b\x56\xc9\x99\xbd\xca\x78\xbb\x9b\x48\x7e\x1b\x2b\x5d\x6e\xf9\x6d\xbe\xe2\x55\xfd\x2f\xdb\x57\x4d\x8f\x48\x56\x82\x69\xaa\xc3\x23\x43\xdb\xbe\x70\x66\x63\xdb\x6f\x96\x23\xdf\x37\x70\x8b\xb3\x69\x63\xdb\x6f\x89\xf3\x74\x17\x1d\xeb\xf6\xca\xba\x6c\x15\x0f\xe0\x96\x55\xd2\x98\xa8\xad\x6e\x9c\x94\x30\xb2\x4a\xbe\xaf\x1f\x32\xd9\x10\x28\xb4\xad\xcb\x76\xcf\x26\x69\xff\x33\xa6\xb6\x8d\x6d\xbf\x85\xd7\x0f\x89\xc8\xd0\x51\x77\xb9\x45\x76\xf8\x39\x72\x4e\x56\x2c\xff\x1b\xcd\xb9\xe5\xe2\x88\x0c\x24\x00\xfa\x6d\x6d\xfb\x5d\x91\x72\x69\xff\x49\x10\xd8\xa6\xb8\x1a\x05\xb4\xd5\x9c\xfb\xe3\xcd\x88\xb2\xa7\x78\xb3\xa5\x52\x94\x12\x6a\xce\x27\x79\xd5\x64\x2e\xb8\xe6\xb6\x29\xae\x15\x07\xc4\x36\xc5\xb5\xdc\xef\x5e\x26\x5b\x86\xa0\xe5\xdf\xba\xd2\xdb\x04\xd8\xad\x1c\xd0\xf2\x3f\x71\x6d\x6c\x2d\xff\xcb\x5f\x67\xc9\x80\x17\x40\xba\xd5\xba\x03\xf6\x84\xad\xd6\x9d\x31\x5c\x6c\x2d\xff\xcd\x33\x51\x46\x4a\x53\x5c\xb7\x09\xb0\x0d\x13\xdf\x36\x01\x36\xa3\x98\x6d\x19\x29\x1f\x87\x7f\x03\xb7\xf0\x91\x6d\x43\xbb\x8d\x0f\xdc\x32\x52\x06\xe7\x08\xbf\x40\x8b\xaf\x6f\x66\xbc\xcb\xe9\xd6\x2f\xb0\xf0\x18\x6e\xd3\x63\xad\xb8\xb4\x4d\x8f\xed\xae\x76\xeb\x68\x4f\x05\x85\x75\xb4\x1f\xcc\x02\x5b\xda\xc9\x03\x1e\xdf\xd2\x4e\x46\x75\x1e\xeb\x68\x4b\x1e\xb8\x6f\x58\x97\xdb\xd9\x18\xf2\xa8\xa2\xd2\x2f\x0b\xae\x57\xad\x32\xa3\xcc\xe9\x57\x74\x33\xa2\x6e\x1d\xde\xe5\xcd\x96\x4d\x54\x56\x77\x6d\x6b\xfe\x67\x33\x64\x2d\x5d\xba\x6f\x86\xac\xc3\xef\xb7\x8c\x05\xb3\xaf\x8b\xc1\x30\xb6\x2d\xed\xe4\xf9\xb3\x84\xfa\x1e\xc6\x64\x62\x21\xd9\x26\xcf\x7e\x38\x6d\xf7\x50\x75\xf4\x24\x32\xe2\x2b\x61\x58\xdb\x26\xcf\x76\x20\xd5\x36\x79\xf6\x73\xe3\xdf\x62\x70\x9e\xda\xc3\x9c\x38\x50\xd2\xbe\xc5\xe0\x5c\x63\xc3\xbc\xc5\xe9\x87\xfc\x15\xc1\x57\xf1\x2b\x92\xeb\xc4\x3c\xdc\x8d\x2b\x6a\x1b\x8a\x2f\x9d\xf5\xc6\x01\x51\xa4\xc1\xdf\xd3\x18\x21\xe2\xc9\x37\x0e\x88\xb6\xb1\x81\x6c\x8b\xc1\x55\x37\x91\x71\xfb\xf9\x78\xb3\x7c\xdd\xf6\x59\x36\xcb\x57\x7d\x0f\x34\x5a\x3b\x60\x7c\x1b\xf1\x25\x6b\xe8\x16\x8d\xbe\x78\x3a\xb6\x68\xb4\x12\x04\xbe\x8d\xf9\x8f\xea\x7b\x46\x7c\xf5\x7b\xf5\x52\xb1\xf9\x5d\x44\x59\xc0\x7a\xbf\x65\xdd\xd1\x69\xb2\x2d\x15\xf7\x12\x64\xbb\xc5\xaa\x7a\x5a\xb7\xee\x89\xa0\x1c\x30\x0f\x37\xe2\xbb\xd9\x60\xd5\x2a\xf5\xf7\x36\x3c\x6c\x6e\x5f\xe5\x52\xff\x6c\x6a\x04\xf0\x4f\x5a\x62\xdb\xea\xf3\x5b\xd7\x86\xb6\xd0\x2d\x56\xcd\xfe\x58\x4b\xc5\x49\xfb\xb0\xd7\x2d\x31\x69\x37\x38\xaa\xf4\xc2\x6f\x5c\x1b\x2d\xdc\x9b\xa5\x0b\xce\xbe\x8a\xf1\x56\x77\x8d\x70\xd5\xf2\x76\xfb\xc6\x80\xd9\x67\xf9\x7c\xba\xba\xb1\x35\x11\x1e\x0f\x32\xe1\xaa\xa1\x83\xdb\x7a\x70\xaf\xb2\x5a\xd7\x86\xbe\xb6\x2d\x5c\x6d\x38\x31\xf7\xbe\x5b\xdb\x67\x8d\xe8\x2b\x5e\xbd\x79\x34\xfc\xd8\x9b\x5b\xa1\x48\xd1\xb5\xd1\x3c\xf4\x85\xab\xaf\x3a\xf9\xbe\x79\xc7\x36\x75\xda\x2a\x7f\x74\x6d\x58\xdf\x64\x0b\x57\xab\xba\x96\xae\x8d\x8e\x8d\x6b\x1f\xb5\x6e\xc5\xaf\x70\xb5\x2a\xe7\x75\x6d\x74\x4f\x4c\x0b\x70\x5f\xe8\x77\x5d\x1b\xc3\x9b\x9d\x5f\xff\xa4\x55\xb6\xab\xc3\xb7\xca\xb6\x64\x6b\x5b\x0e\xa2\xb7\xdb\x67\xdd\x6d\xae\x0d\x23\xd3\xe4\xca\xde\x72\x10\x99\xc3\xbb\x85\xba\x96\xa5\x3b\x42\xdd\x8a\x9f\xeb\x98\xc3\x9b\x31\xa6\x1d\xa1\x6e\x63\x31\x1c\x73\x78\xad\x3d\x71\x8c\x4c\xeb\xa4\xd2\x1c\xdd\x22\x13\x4b\xe3\x31\x32\x4d\x11\x7a\x8c\x4c\x13\xeb\x1d\x2b\x26\x98\x67\x74\x8c\x4c\x3b\x1c\x46\xc7\xc8\xb4\x89\x7e\x78\x6e\x0e\x2f\x93\x72\x8c\x4c\x9b\x28\x0c\xc7\xc8\x34\xf3\x41\x8e\x25\xb9\x7b\xf6\x59\x79\x5f\xf9\xb1\xc7\xb8\xb5\x8e\x3a\x71\xc4\xc5\x01\x4d\xec\x18\xb7\xa6\x7c\x3e\xff\x91\xb5\xf2\x5d\xe3\xd6\x56\xfb\x2b\x92\xe7\xe8\x7c\x59\xf7\xa3\x72\x9b\xa3\x48\x1f\x6b\x79\x87\xe4\x55\x44\x59\x00\xd8\x1e\x79\x5c\xf5\x97\x9d\xf7\x56\xbd\xe4\x27\x03\xa8\x5b\xec\xde\xec\x29\x76\xbc\x99\xa5\xbe\x88\xf8\x3a\x00\xea\x66\xce\xc2\x79\x9d\x7a\x14\xda\x03\xa0\x4e\x46\x99\x1e\x93\x6e\x96\xff\x2d\x68\x22\xe0\xf4\x39\x00\xea\x56\x50\x68\x8f\xae\x19\xbd\xb4\xc7\x02\x76\x81\xe3\xe6\xc8\x65\xa4\x85\xe4\x84\x4b\x01\xe7\x87\xdc\xda\x8e\x57\xc7\x8d\x78\xf3\x98\x74\x23\x35\xe2\x11\x50\xeb\x96\x3d\xc1\xe4\xa6\xe5\xb3\xda\xc9\xb1\xd1\x1d\x00\x75\x6b\xb8\xfe\x4f\x10\x60\x82\x0a\x4f\xbc\x5b\x9b\x6e\xdc\x5a\x78\xdb\xab\x06\x27\x3b\xc0\x28\xaf\x05\x22\xf4\xc4\x9b\x6a\xca\x77\x4d\xba\x49\xee\x9a\xeb\xbb\x99\x5e\xf5\xa8\xc2\xa7\x79\xa2\x04\x71\xd3\x0f\x89\xaa\x30\x6f\x1e\xeb\x29\x04\x24\xf9\x11\x50\x1f\xce\x97\x23\xa0\x8e\x9f\x7d\xb6\x96\xae\x53\x66\xfe\xce\x43\xd2\xcd\x31\x7f\xc7\x1c\xab\x63\xfe\x8e\x21\x61\xe7\xb3\x94\x06\x16\x92\x63\xc0\x9b\x08\xf4\x98\xdd\x93\x5c\xa2\x00\xea\xb6\xec\xa4\x7e\x9f\xe9\x7f\xbe\xf5\x14\xee\xb3\xc5\x55\x47\xaf\x4c\x25\x5e\x00\xd2\x63\x2d\xbc\x8a\xd1\xe3\x08\xa8\x07\x80\xe5\x7c\x96\xb3\x01\x55\x1d\x0b\x8e\x67\xcc\x0b\x47\xbf\x4f\xdc\x7e\xc8\x74\x98\xec\x87\x8e\xbf\x8e\x01\xa6\xbb\xb5\x19\x42\xba\x28\x83\x0f\x59\x70\xbc\x22\x24\x8f\xac\xb0\x23\x7b\xb3\x74\x6a\x58\x95\x8f\xa8\xf9\xc1\xc1\x7d\x40\xcd\x65\x71\x82\x1c\xfd\x3e\xc6\x80\x1d\xf9\x9a\xe2\xf6\xcd\x57\x94\x31\x0b\xfa\x7d\x2c\x9e\x7b\x4c\x34\x96\x34\xfe\x5c\x56\x58\x65\x57\x92\x22\xe3\x78\x33\xa2\x4c\x65\xf8\xe8\xf7\x91\x74\xfd\x88\x9a\xcd\x8f\x38\xe6\x3a\x6d\xce\xf1\x63\xcc\x9b\x44\xbe\xe7\xa2\x66\x4e\xdb\x63\xcc\x5b\x54\x0c\x66\xe7\xf7\xbe\xea\xd2\x2f\x30\x04\xc9\x9d\xbe\xe9\x9b\x5d\xcf\xce\xbe\x11\x71\xfd\xf3\xe6\x6b\x49\xb6\x93\xac\xe7\xf1\x79\x33\xeb\x59\x87\xef\x31\x22\xee\xbf\x5e\x89\xaa\x96\xaf\x92\xb2\x12\xbd\xf4\x48\xee\xa4\x0d\xf3\x18\x11\x67\xed\xaa\x53\xae\x55\x84\x19\x2c\x57\x74\xf3\x66\xc9\x9d\x92\xbb\xcc\x5a\x0c\x01\xa3\xd6\xb1\x58\xde\x59\xbe\xd9\xfd\x8b\xd9\xf9\x48\xee\xd4\xdf\xbf\xb4\xfd\x73\x9d\x4d\xf8\x07\x8f\xc1\x72\xfa\x43\x8f\xc1\x72\xeb\xb1\x87\x16\x71\x70\xec\xc5\xa5\xae\x44\x15\x50\xd7\xe8\xcd\x02\x2e\x14\xf8\x73\x5d\x51\x38\x7c\x8f\x45\x1c\x1e\x0c\x98\x47\x57\x94\xa9\x97\x47\xb2\xd9\x81\x7b\xe5\xdc\x4c\x28\xe5\x9e\x85\xce\xab\xbb\xd5\x4c\xa8\x81\x25\xfc\xdc\x3a\x7a\xcd\x9b\x8d\x80\x72\x8b\x19\x4a\xb7\x96\xbd\x72\xbc\xca\x3d\xc9\x66\xbb\x23\xb2\xca\xde\xfd\x1b\x92\xcd\xca\x13\x7e\x64\x94\x32\x3b\xf8\xe8\xc6\x92\xa9\xec\x58\xe2\xe1\xc5\x04\x74\x64\x94\x4a\x98\x46\x4f\x93\xeb\x12\x55\xea\x34\xb3\x83\xd1\x33\x4f\xbb\x1e\x79\x3e\x24\xa0\xb6\x5c\xf5\x91\x51\xaa\x39\x5e\x73\xa5\xa3\x4b\x4e\x46\x29\x99\xe8\xce\x05\xd4\xee\x0b\x01\xb5\xec\x04\x47\x2a\xda\x43\x68\xd9\x91\x8a\xf6\x28\xf7\xa4\xa2\x3d\xc4\x0c\x1f\x4b\x3c\x48\xe3\x76\xda\xad\xfa\xc4\xf0\x05\xd4\x1a\x88\xce\xa5\xa2\x55\xb3\x12\x50\x37\xf2\x23\x8e\x80\x7a\xa8\x6c\xe8\xd4\xb3\x20\xe3\xb9\x81\x76\x2a\x4b\xfd\x56\x7d\x62\x44\x5d\x8f\x18\xe6\x85\x63\x1d\x87\xf1\xf8\xac\x06\x31\xd4\xdd\xd3\x35\x10\x79\x26\xf6\x9b\xff\x6b\x9f\x59\xcf\xa6\xe4\x9c\x6e\xc5\x5b\x25\x5b\xd7\x20\x56\x6c\x8a\x22\x01\x95\xc7\x98\xbd\xe3\x41\x66\xcc\xde\xf1\xd9\xa1\x0b\xbb\x7a\xf5\x86\x4a\x32\x22\x29\xa7\x0e\x26\x82\x03\x6a\x2e\x2b\x79\x55\x14\xe9\xb9\x36\xb4\xfd\x2a\xca\x40\xcd\x2d\xe2\x26\x38\xa2\xe6\x07\x1f\xdf\x31\xa2\x4f\x6e\xab\x23\x6a\x7e\x30\x20\x9c\x71\xd9\x7e\xf8\x57\xc3\xcc\xbe\xed\x87\xe4\xa9\x9b\x36\xd9\xbf\x91\xcc\xd3\x23\x6a\x1e\x00\xff\x23\x6a\xee\x18\x4b\x0f\xa8\xb9\x2c\x37\x9d\xa8\xb9\xba\xae\xac\x01\x11\xfd\xd0\xb4\x8c\x8e\xa2\xec\xe6\x49\x91\x47\x7f\xa6\xf9\xce\xc7\xef\x1a\x20\x87\xeb\xfc\x4c\x23\x18\x3d\xc8\x44\xcd\x96\x86\x39\xa2\xe6\xe0\xa6\x13\x35\x7f\xcb\x9b\x45\x91\xc7\x5e\x69\x30\xf1\x6f\xcc\x7b\x34\xb3\xbc\xd7\x45\x91\x74\x52\xd4\xbc\xd4\xab\x97\xaa\x17\x6e\xd9\x23\x6a\xd6\x85\x7d\x0c\xf9\x5b\x98\x50\x8e\xa8\x39\xb8\xe9\xd6\x55\xbd\xd8\x92\x7a\x78\xa5\x08\x3e\x7a\x78\xcd\x1a\x3b\x16\x58\x7f\x3d\x40\xf5\xf0\xd6\xcf\x37\x0f\xe5\xa4\x37\x83\x32\x7e\xc5\x53\xfe\x2d\xf6\x97\xb6\xd0\x61\x97\xfc\x15\xd3\xb1\xb3\xb5\x3f\x57\xbe\x05\xd6\xb7\x5a\xa8\x04\xb9\xcd\x45\x75\x01\xb5\xff\x6d\x5f\xa2\x39\xfe\x8c\x05\xd6\x5f\x0f\x26\x01\xf5\x50\x77\x12\x50\x37\x17\xb3\x45\x06\x8d\x5e\x38\x02\xea\xac\x5e\x6d\x81\xf5\xa5\x4e\x2e\xa0\xd6\x33\x7e\xae\xff\x57\xb5\xd3\x22\x83\xc2\xed\xb3\xaf\x1b\x8b\x1d\xa7\xff\x37\xb9\xa7\x8c\x15\x94\x93\xe7\x08\xa8\x35\xd4\x1c\x63\x05\x2d\xe2\x70\x00\xd4\xdf\x15\x47\xc6\x0a\x4e\xdf\x6c\xac\xa0\x09\xce\x47\x62\xab\xf1\x78\xd5\x68\x1c\x31\xa3\xe5\xd7\x27\x9e\xf4\xa3\xff\x57\xa2\xb6\x73\x53\xbd\x82\xaf\xba\x05\xdd\x98\x32\x53\xbd\xac\xc2\x76\x24\xf5\x35\xc5\xfe\x08\xa8\xdb\xf0\xd9\xbb\xd4\xed\xb3\x00\xf3\x07\x0d\xc2\x73\xcb\xaf\xff\xa4\x71\x78\x24\xf5\x3d\xdb\xa6\x5a\xca\x2f\x5e\x37\x3c\x00\xea\x14\x7e\x4a\x69\x78\x2c\x41\x08\x89\x71\x78\x2c\x41\x88\xd9\x2a\x3c\xc6\x19\x7e\xbf\x30\xfe\xf0\x00\xa8\x13\xb1\xbe\xe1\xd1\xd1\x5c\x93\xaf\x32\xf6\x35\xdb\x2b\x96\x7a\xde\xbe\xca\x02\x76\x3f\xb1\x1f\x1e\x01\x75\xfd\x65\x7e\x85\x47\x47\xf3\xf8\xe5\x85\x85\xc7\xe2\xec\x18\x01\xc2\xa3\xa3\x79\x37\x3a\x09\xa0\x4e\x71\xf0\x66\x00\x75\x0a\x87\x37\x5b\xfd\x84\x0c\xd0\xf0\xbc\x17\x55\xf9\xac\xc4\x74\x3f\x55\x39\x3c\xb2\x4f\xe4\xc1\x88\x44\xcd\xb0\xf8\x86\xc7\x90\xc5\x27\xd3\x49\x43\x16\xbf\x4d\xaf\xa4\xaa\xa0\x7e\x5f\x78\x2c\xce\x4e\xa1\x8d\xf0\x5c\xe6\xab\x5f\xfc\x58\x78\x6e\x81\xc2\x7b\xb3\xb6\xfd\xe8\xcd\xba\x65\xab\x23\xba\xec\x88\xfc\x0d\x50\x73\xa3\x82\x49\x78\x64\xbe\x0a\x0f\x6f\x96\xf9\xea\xfd\xbc\x59\x03\xd1\x6f\x3d\x87\x47\xaa\x8a\xb9\x19\x7e\xd0\x20\x96\xbd\x59\x54\xe5\xca\x09\xd7\xe0\x49\x37\xa4\xaa\xc8\x9f\x4d\xc7\x5b\x98\x5f\x51\xf3\xf7\xda\x0d\xab\x9f\x14\x66\xc1\x60\xc8\x77\xdb\x67\x0d\x62\xd1\x9b\xd9\xbf\x33\xd9\xab\xab\x6a\xf2\x73\xa2\x81\x04\x3f\xa0\x14\x9e\xa8\xc1\x24\x32\x22\x50\x73\x23\x5b\x2d\x3c\x16\x28\x24\xbc\x33\x3c\xa2\xe6\xfa\x7a\x55\xdf\x8d\xff\xd9\x0a\xf2\xa1\x32\xfc\x68\x1c\x57\x65\x31\x18\xf1\xf8\x14\x6f\x46\x5e\x11\x8f\x1d\x1e\x09\xb8\x66\x66\x08\x51\xb7\xfb\x62\x6d\x44\xf7\xef\x63\xd3\x28\xaf\x61\x9f\xa5\x55\x7f\x1d\xa0\xd5\xb5\x3e\x06\x08\x6a\xce\x5f\xfa\x23\x80\x33\x3c\x7a\xa8\x31\xba\x86\xe7\x02\x6a\x97\xab\xdc\x5c\xd9\xb9\x16\x50\xd7\xe2\x57\x98\x7a\x60\x6f\x78\x2e\xc5\xb1\xd3\xf7\x5d\xc0\x45\x87\x2d\x2e\xbf\x8f\xaf\x52\x94\x25\x9f\x65\xea\x87\xfb\x42\x0f\xf5\x9c\xac\x13\x0b\x14\xc2\x69\x1c\x1e\xdd\xd0\x58\x86\xc3\x23\x4d\x07\x68\x34\x3c\xd2\x74\xa0\xb4\x84\xc7\xd2\xf3\xd3\xab\x72\x73\xc1\x07\x12\x1e\xdd\xd0\x6f\x66\x82\x04\xd4\x14\xb5\x0f\x8f\x80\x7a\x2d\x5f\x75\x0b\x1b\xf9\x2a\x45\xb7\x1b\x30\x19\x81\x50\x18\x82\xcc\x5d\x4f\x66\xf8\x00\xea\x6f\xbb\x1f\x25\x40\x8e\xd5\xab\xd7\x60\xc2\x92\x4b\x6a\xa1\x0a\x1c\x00\xf5\x77\x1a\x93\xa2\x1b\x7a\x6d\x6f\x56\x0b\x55\xe0\x5c\x40\xbd\xb8\x59\x37\x34\xd4\x0d\xe1\x91\x3c\xe4\x54\xf6\x94\x81\x94\x4f\xf5\xaa\xc4\x41\xee\x47\x93\xc8\xa6\x3f\xc7\x40\xca\xee\xca\xcf\x57\x4b\xe1\xe7\x98\x62\xb6\xdc\x62\x16\x37\xec\x83\x75\x65\x8a\xd9\x97\xe9\xb3\x29\x66\x30\x0c\x84\x27\x9b\x06\xd8\x7c\xb3\x5a\x77\xf7\xaa\x06\xb1\xed\x9b\x59\xea\xb0\x95\x86\x47\x40\x3d\x07\x13\xaa\x1b\x1a\xc7\x5c\x78\x64\x4b\x9e\x9b\x39\x2a\x77\xbc\xbc\xca\x14\xb3\xfb\x5d\xdd\xd0\xed\xf3\x59\xd3\x00\x23\xb3\x60\xf5\xf9\x7d\xf8\x57\x02\xea\xe1\xdf\x10\x35\xc7\xc0\x2c\x5c\x37\x74\x62\xbc\xba\xa1\xe7\xf0\x59\xd7\xb3\x8b\xc1\x00\xce\x54\xd9\x38\x96\x68\x79\x06\x33\x68\xe9\x43\x8a\x75\x86\x47\xd4\x1c\x3d\x40\x6f\xe9\xc3\xc0\xab\x74\x43\x8f\x87\x5e\xdd\xea\xf3\x1f\x7f\x52\x4e\xb0\xd6\x7c\x56\x94\x61\xaf\xea\x35\x10\x79\xb3\x6e\x4a\xc5\x91\x25\x5a\xf6\xe4\xe7\x58\xa2\xe5\xed\xfc\x1c\x03\x38\x53\x47\x0c\x5a\x9b\x7e\x7a\x64\x88\x9a\x43\xe3\xe7\x48\xfc\x35\x82\x1f\xda\xf6\x99\xe1\x8b\x9a\x61\x73\x0a\xcf\x75\x43\x3f\xbc\xd9\x04\xb4\xa5\xbc\x92\x25\x2c\x3b\xbf\xa0\xe6\xfc\x39\xc0\xcb\xc3\x9c\xf9\x93\x16\x70\x79\x5c\xb1\x56\xbd\x1f\x81\x95\x23\x6a\x6e\x2f\x7f\xd2\x02\x2e\x9f\x7f\xe3\xf2\x30\x3b\x40\x0b\xb8\x24\xe5\x64\xd3\x17\x39\x19\x02\xa8\xb9\xcd\xcd\xbf\xd2\x0d\xfd\x14\x6f\x06\x55\xc1\x9b\x14\x9e\x4b\x56\xa6\x3a\x21\x59\x19\x95\xc8\xc2\x23\x6a\xee\xee\x6e\xd3\xd3\x62\xe1\x43\x72\x38\x0f\xe5\xb3\x05\x5c\xbe\xf3\xfc\x25\xf6\xad\xed\x72\xd4\xbb\xf4\x50\x53\xd3\x3f\x3c\x5d\x80\xa9\x24\xd7\x43\xfd\xba\x4e\x04\xd4\xc7\xb3\xd5\xbc\xb6\xa3\xee\x24\xa0\xce\xfe\x55\x89\x47\xba\x12\xd5\xf2\x2e\x23\xf9\x66\xb6\xf6\x5a\xde\x7c\xe9\x91\xf9\x51\x7a\xa8\xf3\xcb\x2a\x92\xc3\xf9\xbc\xec\xa9\x21\x75\xcc\xf6\xaa\xe1\x7f\x6a\x47\xe3\xba\x29\x6d\x22\xba\x73\xf1\x66\xc6\xbb\x54\x2c\x87\x06\x84\x97\x19\x11\x50\x57\x4f\xae\xa1\x5b\x56\x39\x20\xa0\x9e\x9d\x3e\x9b\x22\x87\xb3\x29\x3c\xba\xa1\x49\x7e\x09\x8f\x79\x70\x5d\x1d\xd5\xf2\x2e\x50\x3a\x87\x67\xdc\x60\x39\x5e\x65\x5d\xfe\xcf\x3f\x29\xa0\x0e\xca\x79\xdd\xd0\xcf\xe2\x55\xb7\xf8\x4b\x64\x06\x25\x1e\x19\x9e\xa7\x12\x8f\xe0\xf0\x0d\xcf\xbc\xc1\x90\xbe\xca\xf1\x2a\x25\xa6\xbe\x0c\xf5\x1f\x00\x75\x4a\x89\xf9\x95\x0e\x7a\x7a\xcc\x5d\x37\xf4\xcb\x1c\x99\x25\x17\x8a\x1f\x52\x2b\x3b\x7e\x68\x2b\x06\xf9\x39\x86\x4c\x3f\x2e\xf5\x9b\x25\x17\x79\x16\x40\x5d\x87\xb3\x60\xc8\x74\x54\xb2\x19\x32\x1d\x54\xf0\x6e\xf1\x7d\x3f\x24\x4b\xc9\x70\x7e\x01\xd4\xa9\x16\x5f\x75\x7d\x37\x7e\xa8\x7a\x82\x30\x84\x75\xdd\x94\x74\x52\x2a\x12\xe8\xb6\xc2\x23\xa0\xfe\xa2\x37\x2b\xba\x5d\x39\x66\xd8\xf5\xcf\x67\xd9\xda\xc9\x93\x4b\x37\xf4\xa3\xfe\x70\x33\xec\x0e\xbd\x32\xc3\xae\x2b\x51\xcd\xb0\xeb\x93\x11\xed\xcb\x49\x4e\x9f\xb7\xa2\xbb\x7b\xf5\xa2\x66\x7e\xce\xbe\x5a\xb7\xaf\x2a\x4e\x19\xbd\x02\x35\xa7\x67\x30\xdd\xfb\x86\x19\x30\xa1\xa0\xe6\xda\xa7\x37\x8b\x32\x14\x56\xba\xa1\xbf\xdb\x2b\x89\x92\x84\x51\xdb\x14\x24\x15\x5a\x50\x73\x8a\x1f\x9b\x4e\xd4\xbc\x95\x8a\x37\x6a\xda\xe3\xd5\xa8\x69\xaa\xb1\x87\xc7\xa8\xe9\xea\x0c\x4a\x07\x8d\x7b\x22\x3c\x47\x5b\xf7\xe1\x43\x46\x4d\xaf\xfb\xec\xa5\x81\xf5\x66\x8f\x66\x4f\x01\x33\xec\x5a\xf2\x66\x23\xe2\x94\x48\x37\xa6\x5a\xc8\xa9\x1b\xfa\x1d\x4c\x99\xf9\x77\x65\x32\xa1\x12\xa4\x74\xd5\x7b\x51\xf3\xe2\x6c\x7a\x9f\x5b\x8e\x6a\xd3\xbc\xbe\xc8\x4a\xd3\x94\x2b\xce\xd3\xd7\x88\xeb\xf0\xf3\x73\x85\xd7\xec\xbc\x54\xbd\xaa\x7c\x46\x7b\x7c\xa5\x92\x7e\x90\x1b\xaf\x6e\x68\x4f\xdb\x57\xd4\x3c\xdf\x3f\xa8\xd8\xc2\xab\x87\x7a\x1e\x3f\x8a\xdb\xee\x69\xf6\x70\xb8\x7a\x3b\x4d\x03\xe6\x51\x95\x5f\x59\xa6\xe3\xcf\x51\x15\xde\x5b\xf1\x1f\xa5\xe5\x95\x65\x7a\x30\x05\xef\x6b\x1c\x2c\x92\xed\x7d\x8d\x83\xdd\x74\xf8\x96\xd4\xe1\x6c\x7d\x8d\xdc\x4e\xbe\xd9\x1c\xc0\x8c\x02\xf0\x5e\x37\xf4\x63\xd3\xb2\xad\x48\xd4\x57\x37\x34\xa4\xf1\xe1\x15\x50\x13\x45\x10\x5e\xdd\xd0\x2f\x1a\xfb\x2b\xf7\xe3\x8a\x76\x43\xad\xec\x5e\x45\x74\x47\xe7\xcb\x92\x3a\xe9\xf5\xbb\xd7\x60\xe2\x9b\x75\x63\x05\xae\xca\xfd\xb8\xd0\xca\x5e\x00\x75\xba\xe3\x95\xfb\x11\xce\x84\xf0\x9a\x21\xf8\x7e\xbc\xca\x92\x3a\xfb\xd0\x0d\x99\x55\x88\x15\x0c\xaf\xdc\x8f\x24\x2a\x86\x37\xe8\x76\x5f\x7e\x57\x80\xf9\x8b\xdc\x0e\x2f\x80\x3a\x11\xdb\x10\xde\x5b\x4e\x94\x1d\xf7\x5a\x55\x87\x0c\xdf\xf0\x0a\xa8\xfb\x7d\xf3\x2d\x21\xe4\x77\x25\xdf\xf0\x3f\xdf\x8a\xff\x9b\x0f\xe9\x86\x86\x60\x21\xbc\x02\xea\xb6\xf8\xae\x71\xdd\x01\xe9\xf4\x46\xb5\x6e\x3f\x24\xa0\x86\xd0\x3b\xbc\x02\xea\xea\x8f\xd5\x0d\xdd\x9a\x1f\xba\x6e\x68\x9b\xc6\x75\xbb\x80\x2d\x27\x1a\x8b\xdd\xb0\x4e\xd9\xeb\xab\x44\x55\xfe\x76\x01\x35\x44\x3a\xe1\x35\x85\x70\xbd\xbe\x59\x5f\x06\x82\xfd\x35\x85\xb0\x72\x08\xbe\x02\xea\xee\xca\x11\x35\x77\x8e\xe6\x17\xd4\x9c\x93\xdd\xf8\x74\xdb\x05\x7e\x9d\xa8\x39\x2f\x9f\xbd\x11\x35\x6c\x1c\xe3\xba\x2b\x9a\xe4\x6b\xfa\x21\xf4\x71\xe1\xfd\x8f\xd1\xda\x67\xad\x41\xe3\x5e\x90\xd1\x5a\x31\xf8\x5a\xd6\x1f\xfe\xb4\xf0\x8a\x9a\xc7\x7d\xf3\xd5\x42\x1d\x91\xeb\x39\x33\x0b\xa2\x66\xca\x62\x86\xf7\xba\xa1\x5f\xc4\x91\xc1\xdb\x50\xde\x85\xf7\x06\x6f\x1f\x9e\x35\xfd\x30\x3f\xec\x41\xd3\x0f\xa9\x6c\x1e\x5e\xd3\x0f\x29\x98\x15\x5e\x83\xb7\xf3\xf2\x55\xa8\x22\x9a\x44\x5e\x51\xf3\x52\x0c\x5a\x36\x68\x38\x40\x83\xb7\x87\x7d\xb6\x6c\xd0\xe7\xdf\x48\x26\x83\x63\x2e\x7b\x75\x43\x7f\x99\xf1\x4a\xb9\x19\x5d\x57\xa2\xe6\x58\x98\xc1\x7c\x55\x2f\xde\x2c\x6a\x56\x8d\x79\xad\x31\xf4\x7e\x5e\x35\x6e\x3f\x30\xc0\x7c\xc3\x48\xbc\xd9\xbc\x0c\x8c\x24\x6f\xbe\xa2\x9b\x01\x1a\xbc\x5d\x27\xff\xca\xe0\x6d\x98\x49\xc2\x0b\x6a\xae\xfd\x5e\x65\xbc\x5a\x63\x5e\x8b\x93\x92\x8b\x1a\x5e\x89\x59\xde\xf5\x47\xdc\x7e\x78\xad\x5b\x7a\xb6\x1d\xd6\x8d\x15\xfc\x8a\xa2\x0c\x6d\xf0\x2d\xe6\x3a\x61\x58\x7b\x2d\x3f\x84\xbd\x3a\xbc\xc6\x75\x07\x7f\x94\x80\x1a\x5a\xf8\xf0\x16\x13\xd9\x96\x37\x5b\x03\xb4\x31\x41\x02\xea\x39\xbc\xf9\x66\x08\xb2\x30\x6e\x5c\xf7\x61\xbe\x6e\xf9\xa1\xe2\xb3\xda\xba\x8f\x6f\x66\xa9\x07\x17\x95\x9c\x2d\xcb\x7f\x2e\xa0\xae\x0a\x67\x00\x75\x2a\xee\x74\x01\x75\x45\x93\x7c\x01\xd4\xa9\x60\xdf\x7b\xcd\x88\xac\xe8\x5d\xaf\x6e\xe8\x85\x66\xf5\x1a\xd7\x4d\x84\x6a\x78\x8d\xeb\x6e\x4a\x63\x6b\x9e\x6a\x89\x7a\x05\xd4\xdd\x85\x61\xe9\x22\x62\x14\xc3\x0b\xa0\x4e\xc7\x53\x40\x37\xf4\xe3\x72\x15\x50\x53\x41\x20\xbc\x00\xea\x4a\x91\xe5\xf0\xd6\x1b\xe7\xec\x87\xae\x96\xc2\xa4\xd4\x1b\xec\x6a\x9f\x19\x6f\x71\x9b\xc8\xe8\x12\x30\xa6\xbd\xd6\x3c\x3d\x87\xe9\x36\xae\x7b\x75\x6f\x66\x6b\x7f\x8a\x5f\x00\x75\x7a\xb0\x0c\xbf\xcd\x3c\x05\x4f\xdb\x76\x0d\x08\xac\xcf\x76\x23\x4c\xfc\xd0\x8d\x63\xa7\x93\x02\x6a\x22\x72\xc3\x2b\xdf\xcb\x7a\xbc\x7a\x23\x4c\xfc\x10\x06\xb1\xf4\xf9\x66\x7d\x37\xc3\x67\x3d\xaa\x14\xbf\xba\xa1\x77\xa0\xcf\xff\xd1\x75\xf2\x2a\xe3\xba\xd3\x62\x16\x64\xff\x26\x62\x21\xbc\xf2\xbd\x3c\x38\x11\xde\xae\x28\xeb\x4c\x8a\x74\x9d\x6f\x60\x52\xa4\xeb\x4c\x4e\xa8\x71\xdd\xd5\xd9\xef\xa6\x9a\xba\xcb\xba\x6e\x77\x4f\x01\x51\x73\xef\xac\x67\xe3\xba\xa3\x07\x77\x17\x55\x75\x9f\xd5\x77\xa3\x18\xd4\x0d\x7d\xd4\x5b\x24\x21\x27\x0e\x24\xbc\x16\x45\xbd\xf3\x6b\xf0\xf6\x72\x3b\x8f\x4b\x89\xc6\xcf\x91\x3a\x86\x2c\xb9\xf0\x82\x9a\xd3\xd5\x0f\x41\xcd\xdf\xd9\x3e\xab\x81\x17\xfc\xf2\x1a\xbc\x9d\x71\xf4\xbc\xd7\x0d\xfd\xd9\x0d\x53\xae\x54\x86\x0d\xde\xde\x8a\x5f\x51\xf3\x54\x43\x18\xd7\x40\xc4\xf2\x96\x47\x3d\xdd\x11\x19\x46\xa2\xdc\x13\x35\x67\xb7\x15\xa8\xb9\x44\xf5\x07\x50\x73\x89\x85\x3f\xa9\x1b\x1a\x0a\x82\xf0\xea\x86\x6e\xce\xa0\xc1\xdb\xaf\xfb\x48\xf6\x98\xd5\x7d\x56\x5f\x95\xbf\x5d\xd4\xfc\xaa\xed\x8b\x9a\xbb\xe7\xe9\x4d\x25\xc6\x3c\xf8\xea\x86\x26\x22\x25\xbc\xa2\xe6\x94\xf9\xb1\xd3\x08\xb1\xe9\x9b\x75\x43\xab\xc4\xea\x86\x86\xd2\x30\xbc\xba\xa1\x73\xe0\xcd\x4b\x5f\x55\xfa\xfe\x12\xfb\x56\x53\x25\x7d\x3b\xbc\x7a\xa8\x5f\xbb\x74\x3d\xd4\xd8\x8e\x5e\x00\x75\x1a\xf8\xf8\xde\x5b\x5f\xc9\xc1\xea\xa1\x1e\x2a\xc3\x7a\xa8\xc3\xf4\x55\xc6\xb1\x63\x72\x7f\xd7\xf5\xc8\xb3\x1f\xf5\x50\x87\xe1\xab\x8c\x20\xaa\x36\x8d\xeb\xbe\x37\x6b\x30\x89\xbe\xea\x06\x53\xf1\xa3\xa4\xac\xd9\x95\x75\xb2\x05\x98\x5e\xdd\x37\x58\x8e\x57\x99\x86\xfc\x28\x16\xa4\xac\xc9\x2a\x78\x52\xd6\x2c\x77\xeb\x05\xd4\xf7\x66\xdd\x3a\x2a\xb4\xfb\x6a\xa1\xde\x8c\xe8\x9e\x0a\xab\x9b\x86\x8c\x6b\xe6\xbd\x80\x1a\xd7\xcc\xbb\x6f\xdc\x3e\xcb\xd5\x34\xe4\x27\xd9\x0d\xdd\xee\xcb\x9b\x35\x88\xf9\xdb\x4d\x43\x5e\x58\x95\x5f\x00\x75\x4a\xca\x4c\x00\xf5\x07\x65\x44\x78\x6f\x5c\xb7\x73\x74\xe9\xf7\xfd\xed\xc6\x75\x6f\xcf\x53\x01\xb5\xee\xa4\x57\x40\x5d\x93\x4d\x23\xa6\x3c\xe5\xcf\x8d\x98\x62\xa9\x18\xd7\x1d\x3d\x23\x74\x43\xdf\xed\xa9\x1b\xba\xab\x3b\x99\xa4\xdc\x3d\x6d\x05\xd4\x4b\xe1\x7c\xe3\xba\x3f\x6f\xb6\x78\x25\xc2\x39\x3c\x97\x2b\x7b\xd1\x34\x05\xa9\xd8\xd4\x00\xc8\xa4\x84\xe7\xa6\x10\xfa\xac\xd5\x90\xd9\xf8\xe1\x31\x42\x8c\x4d\x14\x8c\xeb\x1e\xc8\x81\x70\x01\x35\x06\xdb\x60\x6d\xa6\x10\x7d\xd5\x35\x98\x78\xb3\xf5\x9d\xb3\xdd\xf0\x68\xe6\x4c\x0c\xa2\x66\x0d\xe3\x41\x37\x74\xe8\xbe\x59\x51\x86\xea\x18\x9e\x6b\x10\xe3\x43\xef\x8d\x10\x7b\x68\x4a\x69\x88\x9a\x1d\x8c\xeb\x4e\x28\x1b\xc1\xb8\xee\x17\xc5\x2c\xbc\x57\x94\x65\x9a\x52\x30\x71\xea\x05\xf9\x48\x3b\xda\x45\xd0\x0d\x3d\x8a\x1f\x52\x94\xa1\x98\x05\x99\x73\x74\xc6\x85\xf7\x46\x00\xfa\x2a\x45\x59\xb0\x1b\x92\x51\xdc\x57\x39\xde\x6a\xd3\xf1\x82\x6d\x83\xc1\xdb\x50\xb9\x86\x60\x01\xa6\xee\x00\x2f\x6a\xe6\xa8\x0a\x06\x6f\x43\x77\x13\x82\x85\x68\x75\x61\x07\xdd\xd0\x1b\x23\x4f\x30\x1b\xfa\xcb\x5e\x95\xcd\x92\x63\x3d\x98\x0d\xfd\x62\x7b\x09\xba\xa1\xdf\xe6\xd5\x4b\xe1\xc8\x1c\x99\x0d\xbd\x1e\x6f\x56\x15\x41\x4f\x0b\x41\x55\x64\xf8\xac\xaa\xc8\x74\x44\x66\x07\xb3\x35\xc2\xad\x98\xe0\xcf\xb9\x9c\x3c\x20\xa3\x60\xf0\xf6\x8b\xd7\x2f\x44\x51\x06\x5e\xa1\x70\x51\x33\x41\x08\x41\xd4\xfc\xcb\x34\xf9\xa7\xd8\x0f\x16\x81\x8a\x58\x2c\x83\x80\xba\x63\xe4\x09\xf1\xa6\x30\x30\xba\x28\xa3\xc2\xeb\x55\x4f\xed\x64\x97\x58\xea\xc7\x95\x1f\x6f\x30\x55\xa1\xc9\xaf\x58\x2e\x1b\x01\x75\x47\x1c\x05\xe3\xba\x21\x7b\x0c\xc1\x12\x51\x11\x4d\x23\x48\x64\x3a\xdc\xcb\x9f\x5a\x37\x1e\x87\xf0\xdd\x94\x0d\xaf\xf2\x2b\xc8\x44\x08\xe1\xbb\xb6\x5f\xfe\x8c\x80\xfa\x7c\x36\x11\xdd\x05\x3f\x4e\x00\x50\xa7\x0f\xef\x61\x00\x50\x27\x58\x7c\x43\x10\x50\xc3\xb0\x14\x82\x6e\xe8\x27\xdb\x0d\x01\x35\xd8\x2d\x58\x22\x6a\xb9\xe3\x2e\x9f\x4f\xb5\x93\x56\x7b\x71\xae\x05\xd4\x77\x9d\x58\x2d\x22\xbb\x11\x92\xdc\x5c\x40\x92\x90\x74\x63\x35\x86\x60\x36\xf4\x03\xde\x0c\x02\xea\x04\xf6\x09\xc6\x75\xbf\xcd\x67\xad\xb9\x4c\x34\x4e\xb8\x80\x7a\x31\x29\x66\x43\x1f\x0e\x94\x90\x6e\x30\xa4\xdd\xb0\xec\xb2\xc2\x4a\x37\xf4\x52\x84\xca\xe7\xb3\x5e\x5f\x65\x76\xa1\x9b\x28\xdd\xf1\xda\x44\x74\x57\x5c\x39\xc1\x1a\x16\x9d\x08\x93\x20\xa0\x9e\x98\x35\x42\xbe\x29\x84\xde\x6c\x04\xd1\x67\xd3\x08\x22\x74\xe3\x70\xe3\xba\x31\x41\x87\x6c\x41\xe7\xc7\x37\xcb\xd7\x04\xf6\x09\xf2\xf9\x44\xa7\x4c\x3e\x9f\xe4\xe2\xcf\x1e\xcd\xb8\x9f\x82\x7c\x3e\xc7\xff\x9c\x75\xbb\x0f\x66\x41\xd4\x3c\xef\x87\xcc\x76\x07\xec\x04\xe3\xba\x35\xf5\x87\x1b\xd7\x8d\xae\x15\x40\xcd\x09\x72\xb9\x10\x8c\xeb\xae\xe8\x5a\xa1\xdc\xd2\x87\x74\x43\x37\xf4\xe2\xb4\x0d\xc6\x75\x1f\x70\x71\xb8\x71\xdd\xe8\xf3\xa1\xdc\xec\x51\x56\xac\x6e\xe8\xb9\xed\x86\x6e\x4a\xec\x54\xa1\x28\xca\x9a\x4d\xb3\xbf\xa7\xbd\x9a\x6e\x1c\x16\xb0\xa8\x59\x93\x48\x30\x78\xfb\x79\x7d\xd6\x88\x1a\x77\xb7\x6e\xe8\xd7\xc3\xe8\x06\x6f\x13\xab\x13\x6e\x36\xb4\x07\xe8\xe5\x11\xea\x3e\xab\x41\xcc\xc3\xc8\xe0\x6d\x88\xbf\x42\xb8\x65\x2c\xb2\xaf\x52\xeb\xf6\xb8\x31\x78\x7b\x78\xda\x8a\x9a\x37\x7a\x4b\xa8\xd2\xc8\xa3\xa8\x04\x50\x73\x2a\xc7\xa6\x11\x62\x1e\x64\x66\x43\x2f\x07\x78\x83\xb7\x3d\xf5\xaa\x11\x8f\x6e\x58\x83\xb7\x77\xe2\xaa\xc1\xdb\x13\x03\x60\x30\x78\x1b\x1a\x93\x10\x6e\xf0\xb6\x42\x55\x1e\xd4\xf5\xf9\x2a\x8b\x3e\x60\xa7\x0a\xb7\x1c\x30\x46\xad\x20\x6a\x26\x9e\x33\x04\x51\xf3\x78\xfe\x48\xd7\x0a\x41\x40\xbd\x8f\x1f\xb5\xa2\xc7\xb0\x87\xb7\x7c\x3c\xbf\xb1\x5d\xad\xcc\x0e\x2b\xba\xef\xb3\xd7\xcd\xc1\x14\xb4\x4b\x74\xc0\xb3\x02\xea\xa2\x92\x26\xa0\x86\xcc\x3c\x04\xab\x0c\xcf\xce\x9b\xbb\xbf\x42\xb1\x6f\xa2\xb4\x51\x79\xc1\x44\xe9\xb6\x98\xfa\x6e\x8a\x99\x3b\x4e\x37\x74\xbd\x1f\x52\x94\x39\xf5\xfd\xfa\x32\xbc\xaa\xed\xd7\xa3\xca\xfa\x17\x90\x87\x84\x70\xeb\x5f\xb8\x5c\x01\xd4\xa9\x35\x9b\x9c\xda\xd5\xe9\x33\xae\x3b\xe0\xb7\x0a\x43\x8f\xbc\x67\x93\x71\xdd\x4b\x6d\x61\x98\x92\x03\x74\x0d\xc6\x75\x93\x73\x14\x82\x6e\xe8\xee\x8e\x33\x1b\x5a\x14\x1c\xcc\x86\x3e\x2a\x0f\x32\xb5\x4e\xa5\x22\x80\x3a\xc3\x7e\x13\xc2\xf0\xa8\xba\x1f\x52\x2b\xc3\x4e\x15\xc6\xa5\x06\xf2\x55\x6a\xa1\x1e\x82\xff\xb9\xa1\x59\x63\x43\x54\xe5\xa4\xdc\xc2\x64\x9e\xc5\x53\x94\x61\x37\x00\xd4\x29\x2a\x43\x74\x43\x47\x07\x28\xa0\xa6\x9c\x5f\x08\xba\xa1\x35\xe3\x04\xe3\xba\xa3\x9b\x17\x40\x9d\xa2\x9d\x34\x1b\x9a\x40\xee\x10\x00\xd4\x29\xd8\xab\x79\xf3\x14\x18\xef\x34\xc5\xac\x78\x75\x28\xab\x6d\x2a\xba\xd5\x9c\xcd\x86\x7e\xfc\xcf\x00\xea\xf4\x62\xc4\x0b\x37\x1b\x1a\xc3\x54\x10\x50\xbf\x84\x19\x84\xa5\x56\x16\xf9\x2e\xa8\x39\xbd\x78\xc1\x02\xa8\x39\x51\x77\x38\x04\x51\x33\x65\xd0\x43\x58\x06\x43\x12\x2a\x10\xd6\x25\xb2\xa0\x57\xa0\xe6\xf4\x2a\x15\x75\x43\x3f\xee\x85\x4b\xf4\xea\x29\xbf\x6e\xdd\x2e\xbb\x61\x36\x34\x88\x3b\xac\x1b\x61\xe2\x55\x0d\x44\xf7\xbb\xec\x5f\x0a\xfe\x86\xb0\xae\x81\x97\xdf\xbe\xaf\x6d\x9f\xab\x06\x6f\x77\x2c\xff\xe1\xbf\x6c\x68\x3e\xb4\xcd\xcb\xf0\xb8\xd9\xb7\xaa\x20\x53\xb6\xf5\x65\x04\x6f\x56\xd5\xfc\xfc\x90\xa8\x59\x45\xd4\xe0\xed\xae\x64\xdb\xda\xba\x15\xdd\x17\x35\x7b\x70\x5f\xd4\x8c\xd3\x36\x6c\x7d\x55\xd5\x67\x5d\xcf\x1e\xaf\xba\xa1\xbb\xaa\x88\xc1\xdb\x5d\x4d\xec\xdc\x94\x3a\x06\x68\xf0\x76\xf7\xa8\xba\xa8\x39\x7b\x55\xab\x08\x31\x6f\xe1\xdc\xfd\xcb\x02\xbe\xd9\xd0\x98\xad\xc2\xb9\xa8\x8a\xf1\x9a\x0d\xdd\x1b\xf3\x2b\x6a\xee\x42\xbf\x8b\x8b\x31\x2d\x06\x2b\x71\x74\xc5\xa6\xe1\xd9\xdd\xc5\x70\x1d\xcd\x6b\xfc\x25\xf6\x2d\xd2\xd1\xd1\xbb\xa2\x45\x3a\xa0\x74\x0b\xd1\x22\x1d\x70\xc7\x85\xa8\x0f\x9a\x4c\x8a\x10\x9f\x6b\x02\x1a\x34\x8d\x21\x61\x23\x44\x8b\x74\x0c\x96\x4d\x14\x32\xf7\xed\x55\x07\xcb\xa1\x10\x2d\xd2\xd1\xf1\x3d\x45\x1d\xcd\x1d\x63\x7e\x34\x15\x1a\x76\xb5\x10\x85\xcc\x9d\xb0\xe7\xf8\xdc\x5f\x61\xf3\x86\x87\x55\x9a\x86\x87\x35\xdf\x2c\x6f\x24\x9a\x73\x34\x15\x7a\x10\x14\x14\xdf\x1b\x43\xf2\xd0\x34\x1c\x0e\xb3\x6a\xb4\x84\xc7\x40\x1c\xc5\xf7\xc6\xcc\xf8\x2a\xc7\xfb\x63\xec\x09\x51\xc8\x3c\x58\xea\xf1\x42\xe6\x66\xd3\x73\x39\xfb\x66\x21\x73\xf3\x55\x46\xaa\xb3\x98\xe3\x7b\x59\x3b\xec\xe4\x15\xce\xfc\xc9\xf7\x46\x32\xdb\x54\xef\x42\xcd\x8e\x42\xe6\x97\x4d\x14\x8d\xdc\xa6\xe6\x72\x88\x41\x1c\x41\xe8\x4e\xb4\x84\x87\xde\x99\x18\xd4\xab\x09\x78\x8b\x40\xe6\xb4\x30\xf5\xc7\x70\x93\xe6\xe8\x55\x30\x66\x06\x03\x75\xd4\xd1\x4c\x99\xa7\x10\x83\x8e\xd7\xed\xb3\xc6\xcc\x2c\x9f\x45\x38\x97\xed\x87\x8c\x64\xc6\x5c\x1f\x85\xcc\xd5\x29\x0b\x9a\xbc\x92\x6f\xf6\xf0\xc5\x6c\x15\x75\x34\x53\x03\x2b\x44\x21\x73\xe2\x14\x88\xd2\xd8\x1a\x9b\x14\xcd\x77\x4e\xae\x67\x69\x6c\x23\x66\xf3\x28\x8d\xed\xf7\xd8\x64\x7e\xa1\x9c\x0a\x51\x5c\x1c\xb6\x57\x2d\xd1\x02\x32\x8a\x46\x6e\xa7\xe0\x9b\x1d\x2f\x48\x21\x1a\xb9\x0d\x2d\x73\x88\xe2\xe2\xe4\x74\xcb\x55\xfb\x61\x45\x8f\xe2\xe2\xe4\x42\x92\xab\x36\x55\x6f\x66\x3d\x27\xf4\xb4\x28\x81\x58\x70\x21\x99\xef\xbc\x09\x76\x8d\x86\x67\x27\x04\x6c\xb4\xc0\x47\xba\x57\xc5\x89\xfe\x58\x71\xf1\x87\x1a\x13\xcd\x77\xfe\xee\x55\xc6\xfb\xf9\x9f\x25\x10\xa3\xbe\x6a\x88\x86\x67\xeb\x9b\x8b\xdf\x8d\x89\xe2\xd7\x7d\x77\xbc\x5e\x35\x1f\xb6\x7b\x75\xf9\x2a\xe6\xc8\x7c\xe7\x8d\x52\x17\xe5\xb9\x4d\x9c\x02\x51\x47\x73\xf2\x4f\xea\x68\x4e\x78\xf0\xa3\xb8\xb8\x03\x0d\xe2\x75\x34\xbb\x8f\x2c\xb9\x18\xf1\xce\x44\x1d\xcd\xb0\x48\x85\x68\x15\x8f\x7c\x5f\xa5\x89\xef\xf8\xac\x99\x44\x60\xf9\x68\xbe\x73\xda\x5e\xb5\xa8\x90\x52\x05\x5c\x9c\x1a\xc6\xa5\x68\x78\xf6\x8c\x7e\xc8\xc0\x18\x45\x81\xe1\xd9\x5f\x71\x80\xe2\x08\x7f\xdd\x75\x34\x13\xc9\x13\xc1\xc5\xf9\xc3\x1a\x1c\x2f\x2e\x1e\x7f\x45\xf2\xc4\xeb\x83\xb6\xff\x42\xe6\xe4\x16\x03\x32\x67\xea\xc3\x86\x28\x81\xd8\xa7\x70\x36\x15\x9a\x1a\xaf\x21\x02\x99\x13\xc5\xfe\x42\x34\x72\x3b\x13\x35\x11\xaf\x0f\x7a\xda\x54\x0f\xe9\x7e\x48\x6b\xd8\xed\x06\x5b\x1b\x0e\xb4\x10\xb3\x91\xae\xd5\x37\xeb\xc8\x00\x83\xc4\x62\x78\x27\xc6\x96\x28\x64\xce\x2e\x39\x20\x73\xba\x5b\xdb\x54\xe8\x9c\x6d\x4a\x20\x86\x6b\x26\x0a\x99\xb3\x52\x42\x02\x31\x21\x64\x14\x32\xe7\xd7\xab\x8e\x17\xfc\x15\x8b\xe1\x8e\xc4\xea\xc4\xe2\x78\xfd\x93\xe5\xea\x5d\x76\x52\xc7\xcd\xe3\x10\x18\x6f\x26\x58\x37\xea\x68\xce\xe8\xf3\x51\x47\x33\x15\x09\x43\xac\x9a\x08\xd0\x16\xa2\x90\x39\x7b\x34\x03\x99\x93\x26\xa0\x68\xe4\x76\x51\x76\x55\xb9\x01\x3f\x3e\x74\x21\x33\x4a\x4b\xac\xb2\xb2\x28\x7f\x6e\xe4\x76\xf2\x59\xc6\xbb\xaa\x4d\x59\x95\xd0\x33\xa3\x04\x62\xa4\x9a\x86\x28\x64\x5e\xc1\x37\x6b\xe2\x53\xa2\x02\x99\xd3\xea\xde\xcc\x78\x57\xf3\x2a\xe3\x35\x52\x2b\x0a\x99\x4d\x4c\x88\xed\x9a\x44\x18\x7e\xb3\x1e\x2e\xa1\x02\x51\x02\xb1\xe3\x9b\xdb\x4d\xed\xe7\xcd\x42\x66\x7d\x8b\x51\x47\x33\x44\xc4\x21\x4a\x20\x16\xd1\x7e\xa3\x85\x45\xee\x7e\xb4\xb0\x48\x74\x11\x8a\x8b\x23\xda\x60\x34\x72\xfb\x9e\x6b\xe2\xe2\x86\xba\x1b\x9b\x81\x04\xae\x8d\x66\x26\x02\xd0\x20\xf6\xcb\xab\xc3\x78\x75\x25\x57\x7f\x6c\xbf\xfe\x08\x9e\xed\x97\x47\x88\x21\x5c\xe4\xeb\x1e\x34\x00\xbb\x29\x52\xcc\x68\x6e\x18\x69\xa3\xae\xe4\xe6\xec\x77\x3b\xf9\xd9\x0d\xd3\x25\x14\xa1\x82\xd9\xed\x59\x2c\xeb\xd7\xb4\xa9\x77\xd8\xc8\x96\x68\x4c\xf5\x8b\x65\x26\x8e\x9b\x0e\xe3\x55\x4d\xee\xd1\xab\x08\x19\xed\x63\x51\x30\x7b\xf5\x16\xc1\xec\x0b\x60\x89\x80\xd9\xfc\x62\x61\x88\x82\x59\xb3\xb7\x22\x60\x36\x3f\x58\xfe\x23\x60\x36\x0b\xb2\x22\x60\x36\x3f\xd8\x5e\xe2\x8d\xa9\xc6\xd3\x1a\xa5\xf6\x7a\xdd\xce\xe3\xb2\x9c\x79\xb3\x76\x57\xac\xe8\xd1\x24\xe5\x04\x70\x88\xc6\x54\x27\xa5\x19\x60\xb6\xa5\xca\x00\x05\xb3\x86\xfe\xc6\x79\x63\x32\xf9\x90\xd4\x5e\x3a\x89\xa2\xde\xe1\x84\x8d\x3a\xea\x1d\x4e\x98\x52\xe3\xbc\xcc\xbd\xbe\x59\x3b\x64\xf7\x55\xa6\x4b\x0c\xaf\x4a\xfd\xf4\x7f\x51\xf0\x6f\xb1\x2f\x43\xf5\x08\x2c\x2a\x1d\xc7\x89\xc8\xfc\x68\xb8\x75\x1a\x76\xe9\x9a\xa0\xf9\xa8\xf9\xcb\x89\xb8\xfd\xb8\xee\xaf\xa0\xc3\x86\x5b\x27\xf7\xa3\xe1\xd6\x09\xcb\x4c\x94\xa1\x3a\x11\x3a\x18\x6f\x49\x71\x35\xf6\x65\x8c\x93\xeb\xd3\x70\xeb\xa3\x22\x2d\xeb\xd7\x43\x20\x44\x14\xe7\x3e\x18\xc7\xe2\xd2\xc5\xe0\xd9\x64\xb8\xf5\x15\x56\xe0\xdc\x4c\x92\x75\x88\x86\x5b\x1b\xac\x1b\x4d\x52\x3e\xae\x5e\xbd\xc3\x0f\x8e\x9b\x08\xce\xcd\x1a\xc4\xa2\xde\xe1\xa3\x34\x06\xe7\xe6\xe5\xf9\x62\xb8\xf5\x29\x5e\x35\xa9\x53\x35\x7b\x1b\x8e\xab\x74\x32\x49\x19\xd2\xa1\x10\x2d\x68\xf2\x64\xfa\x6c\x41\x93\x07\x3b\x46\x94\xf5\xeb\xc1\x5e\x14\xb7\xe3\x55\xb2\x59\xd0\x04\x52\xdf\x10\x0d\xb7\x7e\x5e\xbb\x81\x89\x92\x6c\xfd\x10\x65\xfd\x7a\x44\x46\xb2\x7e\x3d\x9e\xa7\x97\xa4\x5a\xb0\x63\xb8\xf5\xe3\x9f\x34\xdc\x1a\x76\xd6\x10\xf5\x0e\x3f\xa4\x4b\xc4\x63\xe0\x07\x66\x9c\x78\xae\x09\x9a\x09\x95\xf5\xab\x1f\x9f\xe5\x7c\xb9\x90\xf3\x5c\xbe\x05\x5f\x65\xe6\x57\xb6\x57\xc6\xec\xa9\xfe\x81\x82\xd3\x50\x76\x81\x82\x53\xf7\x7c\x01\x05\x27\x1d\x82\x11\x14\x9c\x86\xff\xf9\x18\x83\x8a\xd3\xf6\x03\xea\x26\x4a\x8f\x85\xef\xd1\x7b\x88\x39\xf7\xbb\xac\x5f\xac\xe7\xef\x7a\x87\x41\x55\xdf\x73\x03\xb7\xbc\x99\xf5\xac\xa5\xe2\x33\x49\x59\x73\xd9\x27\x1b\x76\x5b\x7e\x57\x69\x4c\xee\xcc\xa7\x77\x18\xea\x98\xf0\x99\xa4\xdc\x3f\x7b\x65\x12\x3a\x30\xea\xbb\x31\xd5\xd9\xab\x92\x90\x3f\xf6\xca\x4c\xc6\xc7\x57\x49\x42\xce\xca\xf9\x64\xc3\xee\x98\x91\x3f\x59\xbf\x8c\x40\xfe\x64\xc3\x36\x2f\xe3\x33\xa6\x5a\x53\xcc\x67\x4c\xb5\x36\xe7\xef\xbd\xe3\x65\x08\x92\x77\x75\xf0\xda\x67\x1a\x72\xcf\x7e\xd7\x11\x81\x14\x3e\x2b\xe6\x4f\xdc\xb2\xdf\x7b\x9d\x62\x7e\x57\xa3\x3a\xb6\xb5\xcf\xb8\x68\x08\x48\xc3\x77\xe9\xb9\x10\xdd\x9f\x89\xc6\x06\xd7\x7d\x37\xd1\x18\xdf\xdc\xa7\x87\x77\x45\x9f\x35\x38\x27\xfa\x66\x83\xcd\xb0\x25\x7e\x7a\x78\x21\x48\x09\x9f\x1e\xde\x15\xfd\x90\xb6\xd3\xcf\xab\x37\x0e\x9c\xf1\xea\xe1\x85\x1e\x30\x7c\xf2\x5d\x2f\xf0\xda\x67\x4d\x7c\xca\x06\x85\xcf\x9a\xf8\x8b\x03\xe5\xd3\xc3\xbb\x88\x5d\xff\xac\x89\xbf\x00\x77\xdf\xe5\xbb\x46\xce\x7f\xd6\xc4\x37\xb3\xf8\xbb\x7c\xd7\xf3\x2f\x23\xcf\x17\x6f\x22\x2a\x53\xa0\x87\x17\x02\xa2\xf0\x45\x7f\x45\xf3\x2b\x66\x6f\x71\xd6\x7c\xd1\x5f\x41\x1c\xc8\x17\x6f\x7d\x25\x3b\xec\xaf\x20\x1a\xf9\x8b\xfe\x0a\x6c\xbf\x5f\xf4\x57\xb8\x4d\xa4\xc2\x36\x5d\xeb\x8b\xfe\x0a\x57\x82\x1e\xde\xc5\xa9\xfd\x89\x64\x77\xb6\xe9\xaf\xc0\x04\xf4\x49\x85\xad\xf8\xfd\xbe\x9b\x63\xce\x6c\x7e\x3a\xf7\xd9\xf8\xdf\xe7\x78\xb7\x57\x0d\x89\x47\xb3\xfa\xbe\x3b\xf5\x4c\x9f\x21\xd3\x1b\x11\xfa\xe9\xe1\xdd\xc0\xc0\xcf\x90\xe9\xed\xae\xf9\x34\x9b\x63\x03\xf9\xf4\xf0\xee\xd7\x0f\xc9\xec\x54\xbc\x59\x24\x1b\xfd\xae\xc1\x48\x00\x96\x2f\x39\x5e\xd7\xe7\x4d\x34\x06\xe7\x7e\xc9\x38\xb4\xcf\x9b\x25\x21\x74\x9d\x98\x68\xbc\x71\xbb\x7f\x20\xd9\xb2\x93\xaf\xba\x29\x00\x0c\x21\x39\xde\x62\xd3\xf1\x62\xed\xfc\x92\xe3\xe5\x98\xfb\xd2\x8d\xbb\xf3\x43\x8c\xf7\x73\xf6\x0d\x99\xfe\x30\x6b\x7c\x37\x64\x7a\xfa\xac\xc1\x1b\xfe\x1c\x43\xa6\x3f\xb4\x8b\x4f\x0f\xef\xe7\x26\x92\xb9\xeb\x23\xac\xeb\x33\xd1\xf8\x03\x27\x7e\x56\xab\xfc\x5c\xc0\x32\x77\x41\xc3\x12\xbe\x5b\xb1\xc5\x65\x76\x2b\xb6\xa0\x5d\x7c\xb7\x62\x0b\x1e\xed\x4f\xe6\x2e\x33\xa1\x3e\xf9\xae\x0d\xc5\xff\xe4\xbb\xae\x8e\xd7\x90\xe9\xba\xec\x86\x54\xe7\x4a\x54\x3d\xbc\xb5\x39\x04\x73\xea\x09\xfa\xfa\xf4\xf0\x6a\xc3\xfc\x8a\xc1\x2a\x68\xb0\x5f\x31\x31\xd3\x03\x45\x0f\x6f\x77\xf8\x7a\x78\x9b\x82\xbd\x18\x8c\xf4\xf9\x2c\xea\x44\xcb\x36\xd1\x9c\xdb\xf0\x66\xd4\x27\x9d\xa7\x5f\x91\xa9\x0c\xfb\xe7\x27\xdf\xf5\xc0\xb3\xf3\x01\x57\xf3\x70\x79\x17\xe9\xaa\xf0\x73\x7d\xc0\xd5\xdc\xb0\x71\x7d\xc5\xec\xcb\xdb\xab\xed\xb3\xfc\x9c\xe2\x78\xf1\x29\x7c\xd5\xf1\x3a\x47\xf2\x5d\xeb\x22\xfc\xea\xa5\xab\xe2\xe7\x48\xcf\x65\x30\xe1\x57\x1d\xaf\xcb\xec\xc6\x45\x2f\x9b\xd9\x26\x7d\x06\xae\xe6\x81\xbb\xff\x33\xd1\x58\x43\xeb\x67\xa2\xb1\x71\xa4\x5f\x75\xbc\xa8\xd9\x9f\xf4\x5c\x03\xd3\xd3\x77\xf9\xae\x5d\x66\x26\x1a\x6f\x27\xd4\x44\x63\x13\x6d\xbe\x6a\xc5\x25\x94\x8d\xaf\x5d\x78\xce\xb3\x7a\x78\xb7\xc2\xad\x99\xbd\x85\x9a\xfa\x19\x17\xbd\xb7\xcf\x4a\xcf\xb5\x7d\xd6\x88\x14\x45\x9f\x1e\xde\x0d\xe6\xfa\xf4\xf0\xfe\x4a\xff\xfc\x5b\xec\xb7\x1b\xbc\xe1\x83\x92\xf2\x61\x13\xf8\x9a\x89\xb7\x2e\xe6\x66\xb6\x8b\x0b\xa3\xe9\xdc\xc7\x80\xf9\x49\x76\x7d\x3c\x79\xfb\x0d\x57\x60\x46\xba\x5c\x55\x0a\x2b\x7d\xb8\xb0\x51\x85\xaf\x1b\xae\xf0\xda\x64\x72\x03\xfa\xfc\x67\x50\x74\x7a\x7c\xb3\xe1\x28\x9e\x20\x5d\x02\x1f\x8f\x2a\x90\x6c\xce\x6e\x13\x53\x89\x4d\x06\xf9\xfa\xa5\x19\x44\xfc\xf6\x9b\x35\x8f\x64\xd3\x87\x3b\x3d\x3d\x0d\x8a\x9e\x8a\x23\xeb\x69\x1a\x9c\xf3\x5d\xd8\x4b\xf8\xcd\x27\x37\x17\x55\x14\xc3\x77\x7d\xb8\x6a\x0b\x06\x45\x4f\x15\x3c\x83\xa2\xa7\x2b\xff\xa6\x12\x2f\x9f\xbd\xdc\x6b\x4c\xbd\xdc\x5c\xd2\xa1\x7c\xd7\x87\xeb\xa2\xb2\xda\x66\x53\x1c\x59\x6d\x53\x66\x83\xcf\x54\xe2\xd6\xfd\xae\xe5\xb4\x94\x03\x96\xd4\x6c\x8a\x50\x7d\xb8\xcd\xa5\x6e\x49\xcd\x76\x07\x28\x59\x3d\x21\xc4\x9f\xa9\xc4\x83\x68\xe4\x0f\xd8\x9b\xa7\x73\x04\xec\xcd\x33\xd8\x44\x38\x07\xcc\x47\x9f\x41\xd1\x06\xae\x7f\x37\x95\x18\x2f\xc9\x27\xa3\xf5\xeb\xcf\xd1\x87\x4b\x61\x91\xf0\xcd\x9b\x2a\xce\x6e\x95\x9b\x8b\x7a\x85\xe1\x03\xf6\xd6\xd7\xf3\xc5\x82\x9b\x23\xd9\xf4\xb8\x19\x7e\xc8\x8c\x24\xd0\xeb\x27\x7a\xad\x24\xed\x7e\xa2\xd7\x0a\x90\xff\x8c\x6d\x3e\xea\xc6\xa2\xd7\xa3\x42\x6b\xb2\x70\xc2\xb6\xf6\x19\xdb\xfc\x66\xdf\xcc\xf1\xfa\x7a\xda\x2e\x63\x05\x31\x6a\x7d\xa2\x57\x63\x9b\xbf\x75\x33\x0a\x7d\x56\x47\x00\x2e\xec\xcf\xd8\xe6\xe6\x8a\x5d\x72\x38\x57\xaf\x72\xbc\xde\x93\xeb\x52\x6c\x79\x82\xac\x4b\xf4\xca\x02\x16\xbd\x42\x24\x1e\xbe\x7d\x29\x7a\xe8\x95\xe8\xd5\xf0\xce\xcf\xd8\x66\x03\x18\x3e\xd1\x6b\xc5\x34\xf1\x59\x8e\xb3\x7a\xdc\x88\x5e\xeb\xb0\x69\xa5\x18\x61\x94\xe8\xb5\xa9\x57\x8b\x5e\xeb\xed\x95\xb1\xbe\xc7\x37\xcb\xe3\xe1\xe2\x17\xbd\xd6\xdb\x67\x0b\xa2\xf9\xdb\x45\xaf\xc5\xbd\x20\x7a\x2d\x60\xf9\xef\x18\x55\xe2\x74\x1f\xcb\x8f\xaa\x66\x9f\xcb\x5b\xc2\xb3\x86\x2b\xbf\x2a\x0c\x86\x2b\xbf\xea\xa5\xb7\xc2\xa6\x1b\xf6\x56\xd8\x3c\x5e\xb5\x5a\xa5\x7d\x3e\xfa\xe6\x14\xdd\xe7\x72\xd5\xfa\xdd\x9b\xcf\xee\xab\xac\x65\xe9\xa1\x70\x69\xa8\xc1\xb6\x49\x1a\xea\x80\xc8\x4d\x86\x2b\x07\x54\xbe\x24\x20\x0d\xef\x1f\xd5\xb5\x42\xba\xa9\xc1\x48\xa7\x24\x56\x0d\xf8\x61\x93\x58\x55\xf1\x9b\xc4\xaa\x14\x1d\x0e\x49\xac\x1a\x82\x1f\x95\x96\xf9\xf1\x55\xfc\x0a\x03\x9b\x93\x58\x15\x66\xc8\x90\xc4\xaa\x21\xfa\x66\x93\x32\x38\x23\xd2\x8d\x64\x4e\xbe\xd9\xd4\x7e\xe2\x4f\x92\x58\x95\x92\xc4\x21\x89\x55\x03\x93\x9b\x44\xa3\x01\x5d\x31\x89\x46\x3f\x2c\xff\x49\x34\x6a\x38\x5c\xb2\x72\x13\x15\x8a\x43\x7a\x1d\xd1\xe7\x9b\x1d\x11\x70\x3b\x89\x55\x43\xf0\x43\x8e\x28\xfa\x2c\x23\xfa\x6e\xaf\x1c\x11\xe2\x37\xdd\x58\xe5\xee\x77\x1d\x11\xf1\x6f\xe9\x12\x4d\xb3\x5b\x53\xb8\xe5\x30\xf8\x90\x8e\xd7\x80\x28\x4b\xc6\x2a\x7f\xe4\xd4\xa7\x70\x93\xbb\x6d\x3a\x5e\x7f\xfb\x25\x9a\x26\x0a\x3a\x05\xc7\x8b\x9c\x4f\x41\xf6\x4e\x4c\x22\x29\x38\xde\xe6\x55\xc7\x8b\x95\x35\x49\x99\x15\x90\x03\x29\x98\x46\xc4\x72\x4d\xe1\xa6\xd5\xd8\x0d\xc7\x5b\xec\xb3\x19\x91\xf7\xd9\x9b\x46\x44\x27\xe3\x8d\x7a\xb2\x79\x0b\x05\x0e\x9a\x2e\x66\x60\x6f\x32\x56\xf9\x7b\xbc\xea\x8a\x25\xa9\x33\x99\xe1\x1b\xba\x37\x9b\x56\x83\xa2\x92\xa4\xcc\x8a\xce\x51\xbc\x44\xe2\xfc\x1c\x03\x92\x23\x5b\x3b\x45\xc7\x8b\x0d\x36\x45\x57\x2c\x1e\xed\x74\x2b\x37\x21\x06\x93\x94\x59\x61\xfb\x66\xe7\x17\x09\x93\xe2\xe5\x90\x67\x21\x49\x34\x1d\x00\xa4\xc9\x90\xe3\x80\xb1\x34\x99\xc3\x1b\x90\xd5\xc9\xda\x4c\x61\x7b\xb3\x55\x0f\x1c\x91\x54\xd2\xf1\xf1\xaa\x21\xa9\x78\x0f\xd3\xe7\x88\x38\x31\x93\x21\xc7\x72\x26\x24\x43\x8e\xa3\x9b\xfd\x32\x5f\x61\x21\x49\x32\x5f\x45\x57\xbb\x21\xc7\x11\xbb\x6b\x32\xa8\x38\x82\x7c\x93\xce\xd3\x88\x41\x2c\x19\x54\x1c\xb1\xea\xa4\xeb\x3c\x25\xe6\x36\x19\x54\x1c\xf1\x5a\xa6\x74\xeb\x38\x20\x55\x0c\x2a\x8e\xd9\xa6\x23\x72\x6b\x24\x47\x04\x02\x4d\xc9\x11\x55\x6f\x76\x44\xdb\xa6\x23\xc2\x7a\x96\x80\x9c\xed\x0b\x36\x1d\x51\xb5\x57\x96\x1c\x72\xb5\x5b\x24\x34\x72\x82\x24\x8b\x84\xc6\x61\xd3\xf1\xa2\x3e\xa5\x7c\x83\x4e\x19\x91\xdc\x56\x91\xa3\x39\x09\x39\x23\xbe\x8c\x24\xe4\xfc\x3e\x3f\xe4\x78\xb1\xda\x25\xe9\xa0\x23\x51\x40\xc9\xb0\xe1\x08\x7e\x49\xd2\x41\x47\x97\x8a\xec\x55\x11\x05\x38\xc9\x5e\x15\xff\x2a\xaa\x18\x92\xf5\x95\x3e\xd4\xec\x64\x1e\xee\x87\x59\x23\x49\x6c\x15\x39\xc5\x92\x79\xb8\x9f\xb3\x59\x6e\xc4\x29\x7d\x28\x57\xc0\xfa\x6c\xf2\x27\x33\xf6\x72\xf3\xda\x58\x18\xe6\xe1\xc6\x63\xd3\x4a\x9d\x2e\x1b\x89\xad\x3e\xec\x99\x49\x62\xab\x0f\x2b\x47\x2a\x57\xc0\xf2\xcf\x25\xb6\xfa\x5c\x36\x46\x14\x9b\x82\x9d\x8c\x28\x8e\x18\x2e\x52\xb1\xca\x27\xca\x61\x32\xa2\x78\xe2\x6b\x4b\xe6\xe1\x4e\xf7\xe3\xcd\xc3\x45\xff\x49\x46\x14\x6b\x75\x4c\x46\x14\x2f\x92\x7d\x92\xf5\x95\x74\x22\x24\xeb\x2b\x6d\x37\x91\x11\xc5\xcb\x1f\x6b\x65\xd2\xe5\xae\xb1\x32\xe9\x52\xc2\x98\x87\xbb\x82\x57\x19\xaf\x06\xb1\x24\xb1\x95\xc9\x95\xc9\x3c\x5c\x03\x7d\x93\x79\xb8\x9a\x9e\x92\xf5\x95\x16\xb1\x2b\x49\x62\x2b\xcd\x56\xc9\xfa\x4a\xcb\x33\x51\x62\xab\x85\x52\x9a\x8c\x28\x5e\xc7\x67\x1d\x2f\x61\x03\xa9\x39\x5e\xff\xa4\xc4\x56\x4b\xb1\x2f\xb1\xd5\xc2\xe6\x9c\xac\xaf\xb4\x30\x10\xa5\xe6\x78\x41\x64\x49\x3a\xe8\xe5\x16\xd3\x3d\xba\x3c\x14\xda\x65\x3e\xb7\x93\x8e\x97\x08\xb7\xa4\x7b\x74\x79\xa0\x48\x6c\xb5\x08\x45\x4b\x12\x5b\x99\x2d\x92\x74\x9e\x6e\xcf\x17\x9d\xa7\x0b\x13\x41\xd2\x79\x4a\x11\xed\x90\x74\x9e\x9a\x59\x9c\x74\x9e\x6a\x4b\x4c\x3a\x4f\x35\x3c\x26\x9d\xa7\x0b\x4b\x45\xd2\x79\xba\x1f\xbf\xeb\x78\x8f\x6f\x36\xcc\x52\x69\x7c\xd9\xab\x14\x74\xe6\xe1\x1a\xc7\x95\xba\xf4\xc8\x38\x7a\x92\x79\xb8\x19\x5b\x77\x32\xd3\x36\xab\xb7\x5c\x7e\x2a\x67\xdf\xc0\xe0\x8c\x93\x3a\x8d\x1b\xe5\xee\xcd\xd6\xc0\x2a\xbe\x0a\x25\x5c\x1e\x80\x64\xe8\xaf\x51\x7c\xe9\xc2\x46\x97\xca\x85\x8d\xea\x69\x17\x36\x62\xcd\x4e\x17\x36\x2a\xe7\x2f\x6c\xf4\xb4\xbd\xb0\xd1\xf1\x9a\x4b\x2b\x79\x69\x02\x36\xd6\xc7\xe3\x06\xd8\x58\x1f\x60\x63\x02\x36\xd6\x47\x31\x62\xe8\xaf\x29\x00\x49\x6f\x69\x75\xc3\xea\x0f\xad\xf8\x6e\xd2\x2d\x75\xf4\xfa\x2a\x9d\x62\x9f\x57\x75\xca\xab\x48\xeb\xf4\xac\xea\xa5\x3a\x3d\xeb\x67\xaf\x84\x8d\x6e\xab\x0b\x1b\x31\xd7\xa7\x0b\x1b\x31\xc5\xa4\x0b\x1b\x71\x4d\xa6\x75\xab\xd4\xd1\x67\x61\x63\x05\x18\xa6\x75\xe9\x2e\xf9\xcf\x72\x4c\x15\x95\x3a\x53\x62\x25\xee\x48\xc0\xc6\x5a\x6e\xd3\x6c\xf7\xf0\x57\x24\x4f\x5a\xb7\xa0\x9b\x0f\x1a\x7a\xe4\xfa\x5c\xb7\x60\x1f\x2b\x5f\x3e\xe7\xe2\xd9\x6a\xdc\xaf\x69\x53\xc9\xb8\xdf\x02\x28\x4e\xeb\x92\x18\xf3\x57\x8d\xfb\x2d\x04\x07\x26\xe3\x7e\x0b\xc1\x63\x49\xfa\x29\xa9\x02\x93\x88\x72\x78\x6a\x8b\x28\x87\x2b\x7f\x5f\x66\x48\x7e\xa3\x88\x72\x28\x9d\x44\x94\x53\xd0\x21\xa2\x1c\xd3\xef\x1a\xe7\xac\xec\x12\x51\x4e\xb7\x89\x88\x52\xea\xaa\x24\xa2\x94\x7c\x2c\xe9\x0f\x9d\x8a\x32\x11\xe5\xc4\x80\x90\x8c\xfb\x0d\x2e\x66\xe3\x7e\x03\x71\x20\xc9\xb8\xdf\x4a\x1a\x51\xba\x88\x52\xd9\x65\x15\xa4\xa9\x0c\x39\x92\xdc\x3a\x29\xc7\xf1\xaa\x2b\x1e\x0d\xf2\xd1\xab\x56\xcb\x55\xee\x19\xf7\x2b\x39\x43\xba\xf0\x73\xfa\x21\xe1\xa7\xda\x82\xf0\x73\x0b\x3a\xce\x2d\xd8\xe7\xab\x34\x60\x3a\x29\x46\x05\x53\xd2\x37\x24\x43\x7f\x7d\x36\x1b\xfa\x2b\x33\x52\x36\xf4\x77\x37\xaf\x6a\xc0\xfc\xb1\x88\x87\x6c\xe8\xaf\xe9\x93\xd9\xd0\xdf\x4d\xc6\x7d\x36\xf4\x77\x77\x9b\x1a\x30\xb3\x37\x6b\xc0\xec\xbe\xb9\xda\xcc\x34\xb5\x71\x11\x06\x93\x0d\xfd\x6d\xc7\xab\x8c\xb7\x24\x9f\x65\x6b\x17\x4e\xcc\x2c\xc6\x2c\x80\xca\x2c\xc6\x2c\x9f\xaf\xb2\x3a\x30\xda\x45\xbe\xd5\x81\x99\xfd\x7c\xab\x03\xb3\xb5\xf3\xad\x0e\x8c\x90\xcc\xb7\x3a\x30\xab\x2e\x8b\x40\x0f\xc8\x37\x8b\x40\x4f\xf6\xaa\x74\x79\x2c\xb3\x2c\x02\xd5\x65\x9f\x45\xa0\x1b\x1b\x48\x16\x81\xca\x0b\x9a\x45\xa0\x26\xdc\x65\xb3\x65\x07\x26\xa0\x2c\x02\xfd\x8a\x4d\x75\x45\x10\x4a\x16\x81\x8e\xfb\xa1\x63\x93\xf1\x8a\x40\x07\x01\x54\x59\x04\x3a\x80\x60\x59\x04\x7a\x3f\x24\x02\x9d\xe4\xb3\x67\x7d\xa9\x9d\x85\x94\x45\xa0\x14\xfa\x0c\x59\x04\xea\x3e\xca\x22\xd0\x41\x6c\x40\x16\x81\x0e\xac\x49\x39\xdc\x5a\xba\xfc\x1c\x11\xe8\x70\x31\x88\x40\xb5\xde\x67\x11\xe8\xcc\x3e\x2b\x29\x37\x28\x32\x8b\x40\x47\xf3\xea\xb1\x1b\xf4\x59\x04\x3a\xb0\xbc\x65\x11\xe8\x74\xb5\x8b\x40\x67\xf4\xaa\xe3\x05\xf8\x67\x11\xa8\x72\x23\x8b\x40\x8d\xd8\xcc\x22\x50\x8a\x2f\x84\x2c\x02\x1d\xd3\x37\x3b\xde\xe9\xcd\x8e\xd7\xe9\x16\x81\x0e\x4c\xd6\x59\x8c\x39\xb6\xdd\x70\x44\xfb\x2f\x72\x86\x2c\xfc\x94\xba\x33\x0b\x3f\x07\x12\x26\x9b\x0f\x2b\xbf\x5f\x36\x1f\x76\x80\x73\xb3\xe0\x74\xe0\xd7\xc8\x82\xd3\xe1\x8e\x13\x9c\x8e\x65\xf3\x4e\xae\x6f\x66\xb0\xe6\x58\xe5\xef\x72\xc7\xf9\xe6\xe6\x55\x6f\xee\x5e\xb5\x1b\xd2\xba\xba\xb6\x2f\xc1\x94\x2b\xff\x56\x07\x0e\xbe\x4a\x46\xee\xe8\xb3\x4e\x2e\x8e\xd7\x6c\x3e\xec\x04\xf7\x65\xa1\xeb\xc4\x6c\x95\x85\xae\x93\x30\xa7\x9c\xee\xe4\x32\x9b\x42\x57\xa9\xce\xb3\xd0\x55\xfa\xca\x2c\x74\x9d\x28\x5a\x59\xe8\x3a\xa3\x6f\x76\xbc\x9f\x4d\xc7\x8b\x71\x3b\x0b\x5d\xa7\x12\x46\xe8\x3a\x51\xc2\x73\xba\x8b\x99\x29\x4b\x97\x75\xc7\x5e\x29\xac\x86\x03\x3c\x5e\x65\x08\xf9\x6a\xbf\xf4\x4a\xe8\x6a\x32\x48\x16\xba\x4a\xda\x9c\x85\xae\x1d\x03\x66\x16\xba\x4a\xb6\x96\x85\xae\x26\x26\x64\xa1\x6b\x23\xda\x33\x5f\x5a\x66\x05\x5d\xbe\x71\x68\x0c\x21\x5f\x61\xe5\xcd\x6a\xbf\xc7\xab\x6a\x92\x8a\x41\x81\xad\x3c\x99\xf9\x02\xdb\x68\x93\xe0\x1c\x7d\x46\x59\x16\x29\x0a\x19\x84\x6c\x75\xe0\xdd\x6c\x2a\x9c\x3d\x41\x0c\xee\xcd\xa8\x8e\x59\xf4\x2a\x7d\x65\xbe\xc1\xbd\x68\x83\x59\xf4\x6a\xb6\x48\x96\x45\xaa\xa1\x58\xe6\x62\x71\x10\xec\x27\x59\xf4\x4a\xcd\xc1\x90\xcb\x8d\xbb\xb3\x1b\x6e\x5e\x97\xb7\xf9\xb0\xc7\x8d\x73\xab\x03\x7b\x82\x14\xb9\x2e\xd1\x1f\xf2\x2d\x66\xe4\x96\xbc\xb4\xcc\x30\x0c\x64\x83\x7b\xa5\xac\xc9\x06\xf7\xbe\x04\xb9\x65\xbd\xa5\x54\xaa\x0a\xb9\xde\x7c\x67\xde\x6c\x31\xa3\x82\xb7\x22\x4b\xcb\x6c\x5e\x79\xae\xd7\xa1\xc6\x7f\xb6\x3a\x70\x51\x1a\x8b\x5e\x37\x5a\x77\x36\xb8\x57\xea\x98\x5c\xef\xfc\x32\xc0\x7a\x09\x00\xfd\xae\x71\x95\xd8\x31\xb2\xf9\xb0\x45\xb9\x67\x75\xe0\x07\x6c\x9b\x45\xaf\x1b\x83\x49\xd6\x5b\x4a\x51\x8f\x90\xdb\xad\xfe\xcc\x00\x45\xaf\xc5\x3e\x37\x95\x2b\x14\xb3\x6c\x70\xaf\x34\x08\x59\xf4\x5a\xd4\x1f\x44\xaf\x1b\x3f\x57\x6e\x06\x6f\x63\x02\xca\xed\xce\x2f\xff\xb9\xe9\xfd\xbf\x37\x5b\x52\xd3\xad\xd1\x6e\xa8\x12\x43\x00\xbd\x7e\x67\xda\x49\xa3\x3b\x9c\x5f\xd1\xab\x34\x17\xb9\x19\xbc\x8d\xdf\x39\x8b\x5e\xcd\x33\xca\x3a\x4c\x4d\x16\xce\xd2\x32\xff\x5c\x75\xff\x16\xfb\x12\x4c\x4d\x57\x42\xbf\x84\x69\x36\x6f\xf1\x08\xba\xd4\x0d\xec\x39\x36\x4d\x0d\xf6\x24\xea\x72\x03\x62\xfd\xcb\xf8\x25\x1f\x09\xa6\x32\x00\xf3\x57\xad\xe2\xd7\x2c\x36\x99\x3e\x00\xe6\xaf\x7a\xc3\xaf\xd9\x68\x2a\x24\x01\x98\x41\xa6\xa0\x0c\xc0\x0c\x12\x1f\x65\x40\x62\x90\x2c\x3a\x03\x12\x7f\xdc\x1e\xbf\x66\xa0\xe9\xc9\x0b\x48\xfc\x31\x1c\xfc\x9a\xf4\x2a\x60\xa3\xcb\x68\xb0\xc1\x65\x53\x50\x4a\x7f\x2a\xe4\xaf\xf9\x71\x33\xfe\xa3\x82\x52\x1a\x1f\x0e\xa3\x82\xbe\x17\xb5\x2a\x17\x94\xb4\x18\x51\x59\x0b\x4a\x5a\x8c\xf8\x9d\x0b\x4a\x5a\x8c\x80\x9d\x82\x1a\x16\x23\x02\xb6\xa0\x86\x9d\xcd\x52\x2f\xa8\x61\xe7\xd8\x2b\xd4\xb0\x23\x7b\x5e\x41\x0d\x0b\x92\x80\x95\x60\x37\xa2\xcd\xe0\x7f\xe6\x55\xa8\x61\xf1\x21\x6c\xa0\xa0\x4a\x45\xc3\x4a\x0b\xe7\x69\xa4\x80\x4b\x28\x9c\x4d\xdf\xc6\x9e\x50\x38\x6e\xbe\x4d\xb4\x46\xb1\x0a\xc0\x76\xf8\x1c\x37\xdf\x86\x61\xb5\x70\x82\x7c\xf2\x5c\x15\x4e\x90\x4f\x0e\xb4\xc2\x09\xf2\x6d\xce\xd3\xc2\x19\xf1\x99\x2c\x5c\xb2\xdf\x8d\x3e\x6b\xa9\x02\x16\x43\xe1\x8c\xf8\xac\x98\x50\x38\x23\xbe\x4d\x64\x5d\x41\xec\x7f\x1b\x15\xbd\x20\xf6\x3f\xa3\x9e\x4a\x91\xa1\x08\x29\x51\x8a\x9d\x24\xf9\xa5\x14\x3b\x09\x60\x29\xc5\x4e\x72\x90\x95\xea\x55\x76\x4a\x69\x5e\xc5\xa6\x57\x10\x1a\x9f\x81\x85\x05\xa1\xf1\x6d\x54\xd6\xd2\x1c\x02\x39\xcb\xc5\x8d\xbf\x5d\x2a\xcd\x3f\x89\xca\x5a\xba\x9d\x24\x95\xb8\x74\x9f\x05\x44\x97\xee\xf0\x91\x3f\xa5\xfb\x2c\x1b\xb6\x0c\x9f\x25\x7d\xa0\x0c\x07\xe8\xca\x91\x3f\x6d\x63\xd2\x2c\xc3\x37\xe3\xda\x28\xc3\x37\x23\x9c\xcb\x70\x42\x5d\x2a\xc3\x1f\x8b\x67\xb9\xb0\xe9\xbe\x03\xa6\x2e\xd8\x31\xbe\xe3\x22\x5c\x56\x20\x72\xf6\x31\x3e\x7c\xc7\xf9\xc5\xc2\xf0\x19\xec\x51\xb0\x30\x7c\xf2\x4b\x14\x2c\x0c\xdf\x71\x7e\x97\x42\x12\x45\xba\x2c\x6b\x4f\xa0\x4d\x95\xed\xcd\x6c\xe7\xb2\xbd\x19\x7d\xa9\x6c\x6f\x46\x9b\x2a\xc7\x3e\x67\x9b\xf6\x19\x37\x74\x39\x76\x92\x93\xab\x1c\x9f\x25\xd6\xae\x3e\x3e\x4b\x18\x7f\x7d\x7c\x16\x46\x82\xfa\xdc\x8a\x4b\x85\x66\xb4\xd9\x69\x7e\x36\x27\x4d\x59\xec\x40\x46\x15\x30\xfb\x49\x14\x5f\x1f\x7f\x4e\xf3\xcd\xb7\xd6\x06\xcf\xbe\x7e\x08\xfd\xa1\xbe\x7e\x08\xfc\x52\x5f\x3f\xf4\xff\xb3\xf8\x9f\x62\xbf\x46\xfb\x8f\x70\xae\xd1\xd7\x72\x10\xd7\xe8\x6b\x59\x36\x35\xda\x43\xa0\x41\x8d\xf6\x90\x53\xac\x46\xa7\xef\x78\xf3\xb1\xc9\x9b\x3f\x5f\x85\x4e\x5e\x3f\xd3\xe4\x89\x20\xaa\xdf\x4d\x93\xe7\x57\x7c\xa6\xc9\x23\xac\xea\x27\x79\x11\x47\x46\xb5\xd8\xe8\x83\x69\xb4\x5a\xfd\xc4\x48\xf5\x9a\x2c\x33\x87\x1b\xba\x66\xaf\xb2\x4e\x6a\xb6\xec\x11\x40\xbe\x9a\xea\xf5\x7c\x36\xe5\x9d\x26\xbe\xba\x4a\x9c\xf8\x10\x71\x51\xa5\xfd\x7f\xfc\xe7\x43\x6a\x11\xd4\x83\x3a\x2e\x99\x39\x4d\x69\x01\x1e\xf2\x14\xea\xbe\x45\x24\x79\x56\x56\xb7\x07\x63\x5a\xc5\xd6\x94\x5e\x9c\x6b\x95\xc5\x9c\x5e\x9c\xb6\x95\xc5\x9c\x3c\xf5\xaa\xcc\x6c\xaf\xbf\xee\xc8\x03\x80\x31\xad\x1e\xd9\xb7\xfc\x57\xc6\xb1\xbf\xfc\x9c\xf6\x5a\xe3\x0c\xb3\x46\x7b\xa5\x05\xc0\x06\xdb\xac\x09\xf5\x22\x15\x9b\x14\xd6\x2f\xd8\xbc\xbd\xf6\x0a\x7b\x66\x7b\x25\x2b\xe0\x5f\x35\x13\x6f\xcd\xd0\x69\x26\xde\xbe\xe8\x21\xcd\xc4\xdb\x17\x99\xd9\x4c\xbc\x7d\x81\xcc\xcd\x02\x43\x2f\xb6\xfd\x26\x7d\x13\xb5\xad\x43\xfb\xa4\x41\xe0\x00\x6d\x9f\x1a\x2c\x32\xb3\x59\x00\xf7\x45\x48\x36\xd7\x86\x46\xad\x96\xfc\x1b\xc8\xcc\x96\x1c\x3e\x80\xba\xb9\x72\x5e\x0e\xdf\x96\x1c\x3e\x53\xd6\xb2\xdf\x25\xa2\xa6\x99\x60\xf8\x6e\x9b\x76\x12\xe5\xbf\x99\x60\xf8\xb2\xf8\x9b\x18\x84\x52\xb3\xa1\x99\x60\x68\xa4\x47\x73\xd5\x19\x9c\xd3\x4c\x21\xb4\x92\x48\x33\xb3\x2f\x60\x82\x6e\x66\xd8\x05\xc2\x60\x9a\x19\x76\x21\x78\x55\x3e\x40\xdc\x40\xcd\x2c\xb9\x10\xbd\x3a\x6d\xf2\x21\x69\x51\x8d\x94\x68\x4d\xe6\x0a\x00\x78\x43\x93\x4c\x06\x5d\x34\xe9\x53\x02\x52\xb1\xb9\x17\x02\xe6\xeb\xd6\x2d\x41\x88\xbd\xa8\xb9\x35\x64\x57\x6b\xd2\x75\x06\x6c\x7a\x4d\x42\xce\x80\x55\xa7\x0d\x9f\x45\x94\x35\x79\x2d\x64\x35\x69\xf2\x5a\x04\x94\xe1\x26\x55\x45\x70\x06\xa5\xaa\x08\xce\xe0\x72\x80\x04\xc8\x35\xeb\x1a\x04\x9c\xf2\xcd\x6a\x80\x01\x67\x4d\x73\x0f\x06\x27\xd4\x7a\x7f\xc6\x42\x34\x77\x4a\x04\xbe\x75\x93\x38\x22\xde\x99\x6e\x12\x47\x44\x40\xf5\x47\xc2\x10\x60\x54\x97\xa0\xde\x92\x10\x5d\x06\xbc\x88\xda\xd6\xd1\xe2\x52\xfc\xbc\x6a\xdd\x61\x34\x93\xfe\xde\xda\x04\xbf\xdf\xde\x4d\x8d\x8f\xa4\x3d\x76\x93\xdf\x23\xbb\xac\x9b\xfc\x1e\x99\xb2\x6e\xf2\xbb\xae\xf3\xee\x1e\xfc\x11\xc5\xff\x53\xec\x77\xb7\xa7\x89\x8a\xdd\xcc\x77\x61\x60\x37\xf3\x5d\x9f\x7b\x37\xf3\x3d\x02\x40\xba\x95\xc5\xe4\xdb\xef\x66\xa0\x4b\x68\xd3\xad\xbd\x15\xb1\xb3\x75\x49\xcf\xd4\x7e\xbb\xa4\x67\x11\x11\xda\x25\x3d\x33\xa4\xa4\x5b\x72\xda\x12\x33\x3d\xdd\xe2\x77\x8c\x2e\x79\x33\xeb\xa4\x67\xf9\x5e\x50\x95\xbb\x54\x5d\x32\x34\x76\xe9\xac\xa9\xe3\x19\xba\xa9\xc4\x91\x93\xab\x9b\x4a\x1c\xd9\x9e\xdd\x54\xe2\x78\x7c\x96\xe1\x7f\xa8\xbb\xdd\xcd\xfb\x21\x7e\xbb\x9b\xd7\xe4\xfd\x6e\x76\xb0\x11\x26\x5d\x03\x82\xbe\xf2\x6e\xc2\xef\xc7\x5e\xee\x26\xfc\x7e\xae\x13\x8f\x9b\x8f\xad\xdd\xdd\xf8\x9f\xcb\x46\xd4\x6f\x45\xc2\x2e\xae\x37\x56\xa7\xcb\x0e\xfd\x71\x90\x75\x71\xbd\xfe\xee\xae\x58\xf8\x10\xec\xdd\xc4\x5b\xa9\x20\xbb\x62\xc1\x5c\xef\x6e\xf2\xec\x87\xe9\xbb\x9b\xf1\xaa\x73\xbc\x4b\xad\xac\x43\xbf\x2b\x43\x3e\x6c\x4d\xdd\x9a\x41\x1f\xa6\xe0\x6e\xdd\x9f\x0f\x53\x70\xef\x3e\xeb\x52\xe9\x3e\x8b\xb2\xd4\xbb\xc3\xc7\x9e\xd0\xbb\xc3\x6f\x3e\x6b\x27\x9b\xcf\x3a\x7c\x84\x46\xb7\x6e\xce\x87\x97\xa4\x0f\xc7\x0b\x28\xee\x0a\x1c\x0a\x8e\x87\xee\xd1\x6c\xfd\x9a\x6e\xf5\x58\x59\x9a\xbb\xe2\xe8\xc3\x5c\xd6\x65\x19\xfa\x38\x41\xfa\x74\x44\x58\xc0\xfa\x74\x44\x44\x89\x74\x79\x84\x3e\xf4\xa5\x2e\x8f\x10\x65\xb2\x43\x97\x75\x47\x3a\xfa\xae\x28\xb3\xc0\x47\x57\x94\xa5\xc7\x9b\xbb\x4d\xbe\x2b\xaf\x4e\xc2\x1c\xda\x3d\xf4\x13\x7a\x75\xf7\xd0\x4f\x78\xa3\xba\x87\xbe\xd4\x97\xdd\xa4\xb9\x84\x85\xb3\x2b\xd9\x92\x4b\xc5\x5c\xb6\x84\x61\xaa\x9b\xcb\x96\x94\x4e\xe6\xb2\x25\xec\x90\xe3\xb1\x24\x0d\x8a\xf4\x78\xbc\x19\xf9\x33\xd4\x1f\x28\x19\x1f\x86\x92\x2d\x15\xaf\xfa\x2a\xc2\xba\x86\xb4\x1e\x09\xfd\x76\x28\x73\x12\x82\x62\x44\xff\x06\x1a\xec\xb0\x9e\x82\x49\xac\x43\x0d\x21\x71\xca\x8f\x78\xb9\x2e\x33\x4d\x5f\x85\x77\x78\x58\x31\x41\xe6\x8a\x61\x09\x42\xb3\x4d\x87\x02\xca\x4c\xdb\xf1\xf9\xdb\x11\x23\x43\x55\x33\x31\xa1\x43\x89\x64\x3e\xe9\x50\x22\x25\xe6\x77\x24\x29\xbb\x51\x8f\x87\xba\x47\x42\xc8\x0c\xeb\xee\xc9\x8e\x38\x92\x9d\x44\x01\x1e\x8a\x2f\x6b\x13\x8c\x4b\x6e\x80\xed\x62\xa8\x5d\x64\x62\x30\xc6\x35\x4b\x62\x94\x1e\x97\x55\x00\xc9\x30\x2e\xab\xc0\xff\x81\xd2\x3f\xc5\xfe\xb8\x84\x03\xc8\x90\x71\x39\x04\x58\x09\xc3\x44\xf8\x4c\xb4\xc6\x30\x11\x5e\x36\xbc\xd1\x2e\xd1\x01\x1d\x6e\x7e\xb4\xf8\xac\x6f\x2e\xde\x2c\x95\x01\x18\x6a\x58\xda\x3b\x17\x9f\x95\xca\x00\xf5\x6f\xc8\xae\x96\x91\x03\x43\xb1\x90\xb1\xd0\x8e\x71\x6b\x53\xf2\xac\x34\x5f\x99\x43\x61\xcc\xcb\x6c\xc0\x7c\x59\x32\x49\x92\xc9\xe1\x9e\xb2\x0a\xdb\x50\x01\xb0\xbc\xcb\xd8\xd2\xef\xb3\xe3\xc6\xbe\x74\xf4\x5c\x3d\x97\xae\x93\xef\xba\x2f\x0a\x04\xb9\xd3\xda\xb2\x85\x0d\x38\x41\x67\xa9\x20\x7e\xa7\xdb\xa4\x60\x28\x9e\x6e\x93\x82\x59\x75\xba\x2f\x0a\x12\x75\x06\x79\xfe\xf9\xb1\x53\xb2\xd9\x82\xad\x7b\x5a\xa2\xa5\x90\x63\x35\x71\xa9\xa4\x82\xdc\x9b\x2e\xe6\x42\x40\xe3\xbc\x14\xa3\x18\x10\xa6\xa7\x6d\x21\xac\x74\x8a\xb9\x0a\xc7\xeb\xf4\xc4\x2c\xcb\xa6\x04\xa4\x2c\xf5\xa9\x52\x5a\xb6\x4d\xc9\x70\x40\x28\x53\x43\xb1\x55\x39\xa6\x04\x0b\x54\x25\x0e\x53\x6d\xd0\x40\x88\x29\x50\xaa\xa8\x34\xf3\x12\xd3\x81\x23\xe6\x90\x75\x87\x65\x36\x55\xff\x2a\x42\x63\x4a\x6b\x56\x81\xdb\x53\x5a\xb3\x4a\x98\xc1\x54\x85\xab\x8d\x1f\x2b\xaa\xb2\xac\xc3\x3c\xb7\x72\xf4\xaf\xb9\x9c\x32\x03\xf5\xd7\x73\x09\xae\x03\x4d\x07\x88\x73\x6a\x09\x94\x2a\xfa\xc3\x72\x06\x0d\x20\x5f\xf8\x52\x53\x25\xb7\x6b\x89\x8c\xe4\x5b\x58\x6a\x65\x14\x67\x0f\x0b\x77\x61\x6a\xa8\x8e\x4b\x41\x27\xc1\xc2\x52\x94\xb5\xe0\xcd\x12\x00\x62\x1f\x5b\x8a\xb2\xc6\xc6\x5f\x8a\xb2\x86\xf2\xbf\x44\x46\x0d\x85\x61\xb9\x18\x24\x5b\x5b\x2e\x86\x86\xd8\x5f\x02\x25\xb9\x1a\x96\x88\x5b\x82\xeb\xa5\xa0\x6b\xcc\xd1\x52\x94\x35\x3c\x0e\x4b\xd5\xab\x21\x19\x56\xb2\x57\x88\xfd\x95\x7c\x16\x5f\xea\xc2\xa6\x97\x1a\x7b\x7f\x09\xc0\x1b\x7b\x7f\x29\xd9\x5a\xf5\xaa\xe3\x25\xae\x60\x29\xca\x4c\x4b\x59\x72\x80\x50\xbb\x3c\xac\xe6\xcd\x18\x2b\x96\xba\x87\xc5\x7d\x96\xca\x46\xc3\x1c\xba\x54\x09\x1a\x4a\xdd\xc2\xa8\x95\x3a\xa7\xed\xc2\x74\x9c\xac\xfe\xbc\x94\x2a\xfd\xb5\xc9\x9b\x3b\x9b\x7d\x29\x55\x3a\xf2\x76\x29\x55\x3a\x76\xaa\x2d\x52\x30\x2b\x79\x3b\x65\x9d\xa3\x6a\x0b\x39\x4d\x31\xdb\x42\x4e\x3d\x68\x5b\xc6\x1e\x79\xdb\x36\xde\xb7\x64\xce\xe0\x2e\x37\x45\x9d\xa6\x48\x70\x00\x3a\xb6\x42\xf5\xc7\x63\xfc\x4f\xb1\xbf\x95\xb7\x72\xe5\x6d\x37\xe0\xc0\x56\xb6\x87\xb5\x1a\x31\x8e\x6d\xb1\xdb\x20\x42\x7e\x13\xb5\x95\xac\x74\xb3\xdd\xad\xba\xfe\xb7\xca\xd2\x00\x1a\x6c\x95\xa5\x01\x2a\xdc\x2a\x4b\x83\xcd\xbb\x55\x96\x06\xa9\x13\x5b\x65\x69\x00\x1c\xb6\x4c\x89\xa3\xf9\x66\x3f\xd4\xbc\xd9\x8c\x7b\x32\x22\xb7\x14\x85\x83\xac\xa2\x6d\x79\xbb\x81\x0a\xb7\x25\xc9\x1f\xa0\xc2\x2d\x3b\xfd\xe0\xd4\xde\xe7\xd6\xc0\xe2\x66\x55\xa9\xe1\x3f\x3f\xb7\x72\xe5\xa2\x79\xab\x0f\xf0\x5d\x39\x04\x06\x40\x7e\xab\x59\x19\x50\xb4\x3d\x23\x26\x07\xca\x71\x61\x98\xdc\x74\x84\x90\x7a\xb4\xcf\x23\xb3\x01\xe7\xcb\x91\x07\x7e\x12\xdd\x7a\x04\x98\x13\x29\x71\x04\x98\x86\x0d\x9c\xc7\xef\x22\x25\x8e\xb8\xcf\x30\x89\x23\xb8\xd3\x1d\x7c\xc2\x2d\x20\xb5\x68\xda\x49\x0e\xee\xa3\x66\x35\x41\xee\x47\x44\x36\xb1\x3a\x1e\xe5\x80\x25\x84\x8e\x16\x12\x93\xd7\x8e\x1a\xce\x64\xa9\x1f\xa5\xc4\x44\x2b\x3b\x2a\x3c\x13\x35\xfb\x28\x34\x26\xf0\xed\x88\x6e\x4c\x4f\x3b\x12\x16\x19\x64\x7b\xb4\x72\x4c\xf2\x05\x8e\x72\x60\x62\x82\x3e\x4d\x2e\x20\x94\xa5\xa3\xfe\xb0\x82\xcd\x62\xf3\xb7\x4d\x8e\x0b\xc9\x90\xd4\xe3\x5e\x36\xe8\xd4\xe2\xfb\xc9\x34\x79\xab\xcf\x27\xa3\x4c\xad\x3e\x9f\x88\x32\x8d\x96\x41\x4f\x64\xac\x47\xcb\xa0\x27\x5c\xe7\xd1\x1a\xe2\x69\xfd\x0c\xf2\xd1\x3a\xe0\x89\xc0\xd1\x68\xb5\xee\xb4\x16\x57\x45\xcd\xd4\x4a\x8e\xff\x55\xac\xfe\x25\xcb\x44\x2b\x56\xa7\xfd\x53\x0e\xa3\x85\xa4\x13\x2e\x95\x68\xc9\xe6\xb4\x03\xaf\x52\x86\x90\xdf\x1d\x2d\x9d\x9c\xf6\x4f\xf7\x88\xd6\x1d\x4e\xfb\xb7\xbb\xa3\xb5\x83\xd3\xfe\x45\x1f\xc5\x5b\x87\x17\x2f\x6d\x7c\x2e\x9b\x53\xe1\x43\x12\x34\xed\xea\x55\xbb\xd1\xf8\x90\x87\x3e\x19\xdc\xf1\xb9\x44\xc4\x8d\xbf\xa1\x32\xb9\x7f\x67\x71\xb4\x4c\x6d\xda\x9d\x3e\xeb\xc4\xc4\xb5\x11\xad\x28\x9a\xf0\x47\xc4\x5b\x51\x94\x24\xd6\x78\xeb\x7e\xee\x43\x37\xd4\x10\x08\x64\x8a\xb7\xa4\xe6\x79\x19\x91\xa8\x8a\x6c\xd3\x78\x4b\x6a\x9e\x97\x0f\x39\xfb\xe7\xe5\x6f\x6c\xc9\x9d\x02\x43\x50\x6e\x9c\x5f\x58\x69\xb4\x5a\x65\x3a\x91\x37\x5b\x5c\xe3\xf8\x9f\xb7\xaf\x8a\xbc\x59\x80\x86\x3f\x22\x5a\x08\x32\x9d\x8f\x3f\x29\xd9\x08\x8c\xd6\xd1\xda\x8e\x89\x34\xc0\x68\x6d\xc7\x44\xf5\xd5\x68\x6d\xc7\x84\xf3\x22\x5a\xbd\x31\x11\x21\x16\x2d\xc8\x98\x7e\x11\x0b\xff\x12\xfb\xd1\x5a\x8d\xe9\xfc\x0e\xa6\x68\x35\xc6\x74\x7e\xa7\x76\xbc\x45\x15\x29\x73\x19\xad\x93\x98\xce\x2f\x2e\x2b\x5a\x27\x31\x9d\x9f\x8a\x1e\x2d\x7d\x98\xce\x6f\x9b\x44\x4b\x1f\x26\x92\xe0\xa2\xf5\x0a\x13\x75\xc0\xa3\x15\x09\xd3\x61\xea\xad\x48\x98\xce\x4f\x74\x47\xeb\xf7\xa5\x33\xb8\x59\x71\x74\x06\xdf\x55\x1c\x9d\x9f\x49\x36\x5a\x48\x2e\x9d\xcd\xd8\x3d\x4c\xe1\xe4\x89\x16\x56\xcb\xf8\x05\xa2\xa5\xd3\xf2\xf3\xd2\x67\x73\xdb\x9f\x1f\xba\x89\x96\xe2\xca\xcf\xc7\xb3\x26\x95\x53\xb9\x32\x5a\xa9\x2a\x3f\x99\xef\xca\x9b\x0d\x5f\x77\xb4\xda\x54\xa6\x5c\x7e\xb4\x54\x53\x7e\x1a\xdf\xed\xde\xdc\xf8\xcf\x26\x1a\x3f\x8d\x0f\x99\x68\xfc\x34\x9f\xb5\x1b\x9d\x37\x5b\x59\xf8\xe9\x5c\x95\x05\xeb\x19\xf4\x59\x16\xac\x67\xf0\x21\x59\xb0\xa8\x29\x19\x2d\xe5\x93\x9f\x9f\x3a\x14\x2d\xe5\x93\x9f\xc5\xfc\x4e\x3f\xb4\x78\xb3\x35\x77\x1e\x04\x8e\x35\x77\x32\x45\x1c\xa2\xd5\x6d\xf2\x8b\xc0\xb1\xda\x4b\x7e\x7f\x12\x35\xde\xc2\x22\xef\xcf\x7c\x14\x2d\x2c\x92\x5f\x16\xb3\xf5\x3e\xf2\x9b\xb8\xfa\x4a\xb7\xf5\xd3\x1f\xa2\x55\x39\xf2\x9b\xbd\x7a\xab\xfb\xfd\x16\x83\x95\x35\xf2\xfb\x53\x27\xa2\x15\x22\xf2\x5b\xb9\x1a\x7d\x15\xff\xd9\x02\x0a\xf9\xfd\x1d\x46\xd1\x02\x0a\xf9\xed\x74\xc3\xd9\x7f\x91\xb7\xb2\xe2\x67\xb2\x29\xa3\x84\xf3\x99\x04\xc9\x28\xe1\x7c\x7e\x7f\x96\x99\x28\xe1\x7c\x7e\x0f\xaf\x32\x2a\x06\x83\x7c\x94\x25\x3e\x07\x96\x99\x2c\xf1\x39\xbc\x5e\x25\x73\x3c\xfc\x3c\x2c\x51\xe2\xf7\x4c\x98\x41\x94\xf8\x3d\x93\x7a\x19\xa5\x76\xcf\x21\xf0\x5d\xa9\xdd\x43\xf0\xbb\xc7\x26\xc3\x6f\xb7\x60\xd6\x4b\xd3\x0f\xfd\x0c\x35\x51\xa6\xf4\x1c\x3e\xfe\x86\x05\xac\x31\xd7\xc7\xcb\xe0\x4d\xf9\xe3\x28\xfd\x75\x0e\x8d\xff\x8c\x26\x96\x43\x63\x08\xd3\x3e\x77\xfa\xbc\xfc\xd0\xe0\xcd\xcb\xab\x83\x09\x95\xf9\x8a\x04\xb4\x28\xc3\x73\x0e\x93\x11\x99\x3b\x4c\xfa\x61\x94\xe1\x39\x63\x9f\x8f\x32\x3c\xe7\xb0\x58\x57\xb2\x57\x85\x4d\xaf\xb6\xdf\x3d\xfc\xc9\xed\x77\x0f\xe3\x95\x9f\x2a\x1c\x9f\xb5\x22\xcf\x4f\xf5\x8a\xd2\x0b\x67\x72\xca\xa2\xf4\xc2\x39\xfe\xec\xae\x51\x02\xe1\x1c\x03\x57\x11\x5f\x19\x0b\x7c\x94\x32\x37\x47\xfe\xa4\xf4\xb3\x39\x72\x44\xca\x28\x9b\x31\x95\x47\x19\x65\x33\x75\x96\xa3\x64\xad\x39\xfe\x0c\x9e\x51\x3a\xd6\x1c\x7f\x8e\x8f\x28\x1d\x6b\x8e\x3f\xcb\x46\x94\x8e\x35\xc7\xe6\xcd\x0e\xe1\xe7\x5e\x8c\x12\x9f\x66\x4c\xe5\x51\xe2\xd3\x8c\xa9\x3c\x4a\x7c\x9a\xe3\x5f\x91\x3c\x51\x4e\xd4\x1c\x3b\x7d\xf8\xfc\xe8\x2f\x12\x29\xca\x6b\x9a\x23\x3a\x8c\xbc\xa6\x39\xa2\xc3\xc8\x6b\x9a\xe3\xa0\xc3\xb8\xcf\x32\x99\x6b\x51\xaa\xd2\x1c\x7f\xa6\xd1\xf8\x1f\xbf\x28\x93\x7b\xd9\x3b\xe3\xe2\x66\xe9\x50\x48\x55\x8b\xf2\x64\xe6\xf8\x0b\xc5\x8f\xf2\x64\x66\x12\x42\xa3\x3c\x99\x99\x24\xb2\x28\xd7\x65\xa6\x74\x5a\x94\x82\x32\x7f\x8f\x4d\xae\x92\x80\x16\x65\x86\xcc\xdf\xcb\x77\x6f\xa9\x7d\xb6\x98\xb4\x8a\x19\xc2\xd8\x18\xbb\x34\xa7\x91\x57\x29\xc9\x3f\xce\x88\x78\xeb\xd4\x23\xe8\x62\xf7\xcd\x89\x3e\x2b\x7e\xbf\xc4\x77\xe5\x06\xfc\xd8\x71\x97\xee\xef\xe3\x04\x91\xa3\x2f\x53\x3d\x3f\xca\xa4\x97\xb1\x84\x47\xe9\xf2\xf2\xc7\x01\x2a\x6d\x5d\x86\xe4\x36\x5e\x0a\xb8\x0f\x41\x77\x29\xe0\x3e\x67\x70\xfb\xe6\xc1\x6f\x77\x13\x7d\xc3\x67\xa5\x54\xe5\x78\x95\x02\x2e\x7f\x4e\xb7\x5b\xec\x73\x7e\xdd\x62\x98\xbe\xe3\xa5\x80\xfb\xa6\xcf\xde\x12\x42\x2c\x75\x0f\x05\x48\x78\xa2\x24\x6f\xf9\x73\xf6\x8f\x3f\x16\xf1\x2b\x8d\x5b\xfe\x38\x9b\x64\x66\xcb\x9f\x6b\xe3\xd8\x8d\xed\xb3\x76\x63\xfb\xac\xdd\xf8\x65\xba\x45\x09\xd3\xf2\xc7\xca\x91\xf4\x2c\x43\x62\x1c\x25\x3d\xcb\xdf\xcf\xac\x1a\xe5\x31\xcb\x58\xd1\xe3\xe7\x61\x94\x10\xdd\xdf\x7b\x09\x66\xbd\x5a\x6d\x16\x9a\xd6\xa0\x41\x7f\x90\x5e\x2c\x27\x64\x88\x24\x60\x19\x1b\x7b\x94\xc8\x2b\xa7\xc8\xb3\x4a\x89\x14\x79\x36\xfa\xa1\x9f\x39\x25\xca\x5e\x95\xe1\x61\x8e\xb2\x57\xe5\x94\xbc\xd9\x82\xce\x28\x78\x32\x41\xe5\xf4\xab\x19\x1a\x65\x82\xca\xa9\x30\x84\xcf\x67\x7f\xbe\xb9\x28\xf7\x51\x4e\xe8\xe4\x72\x1f\x65\x88\x22\xa3\xdc\x47\x39\xa1\x98\xc9\x7d\x94\x29\x3a\x13\xbf\x4b\xd5\x0b\xba\x91\xdd\x28\xa7\x4e\x9f\xe5\x2f\x4a\xdd\x67\xed\x55\xf7\x59\x7b\xd5\x7d\xd6\x5e\xa1\xc6\x5c\x96\x21\x0c\xf2\xf1\x52\x03\xa5\x49\x27\xa5\xf7\x49\x93\x3f\x69\xb4\x67\x62\x31\xc8\x0f\x93\xf3\x43\x53\xe5\x2a\xff\xfc\x6b\xf1\x52\xbe\xc0\x73\x1b\xe5\x5a\xc9\xe4\xb2\x45\xf9\x52\x72\xe6\xb4\x95\xf3\x24\x43\xa8\x1b\xe5\x3c\xc9\xf0\x09\xc7\x4b\x45\x92\x23\xaf\x52\x23\xca\xe8\x2d\x32\x75\x64\x48\x80\xa3\x5c\x1c\x19\xe6\xde\x28\x17\x47\xc6\x18\x1e\x2f\x27\x06\xe6\xee\x28\x37\x45\xce\x6c\x76\xd9\x18\x72\xe6\x78\x95\x19\x20\x53\x31\x21\xca\x0c\x90\xe1\x31\x8e\xe6\xd1\xe7\xfc\xf3\x63\x46\xb3\xce\x73\x3e\x7f\x18\x79\xa2\x49\xe5\x39\xb3\x2f\x4c\x0c\xcf\x58\xb3\xa3\xd9\xdc\x99\x52\xb3\xd1\x04\xed\x5c\x5e\xaf\x1e\x9b\xbf\xb1\x9b\x64\x9d\x0b\xc7\xa5\x49\xd6\xb9\x04\xaf\xd2\xa5\xc2\x6f\x34\x9d\x39\x63\xeb\x8e\x26\x2c\xe7\x02\xf0\x49\xae\xa2\x82\xae\x68\xc2\x72\x2e\x3f\xd3\x53\x34\x59\x38\x17\x24\xaa\x39\xbc\x19\x5b\x77\x34\x87\x37\x17\x94\x43\x73\x78\x73\x61\xe5\x9b\x87\x9b\x0b\x1a\x8e\x79\xb8\xb9\x54\x7a\x25\x77\x53\xa9\xfc\x55\x95\xb4\x52\xf9\xab\xd6\x96\x2d\xec\x0b\x73\x5a\x73\x41\x1d\x32\xa7\x35\x17\x90\xac\x69\xaa\xb9\x70\x10\x9b\xa6\x9a\x89\x0a\x8e\xa6\xa9\xe6\xd2\x7d\xd6\x21\x80\x73\x4d\x53\xcd\x85\x7d\x61\x22\x6a\x2e\xc8\x6a\x13\x42\x73\x61\x5f\x24\x79\x6b\x0b\x0a\xbc\x99\x98\xb9\x20\x33\xcd\xc4\xcc\x50\xd9\x47\x53\x20\x73\x41\x3b\xba\x89\x8a\x85\x13\xd3\x64\xc3\x4c\x0e\x60\x34\xd9\x30\x57\x76\x8d\xc9\x86\x99\xec\xbc\x68\xb2\x61\xae\x40\x66\xd3\xd3\x72\x8d\x7c\xf7\x78\xb3\x13\x7a\xbc\xf9\xa3\x93\xca\xf9\xea\xfc\x62\x2e\xcb\x10\xec\x47\xd3\xd3\x32\x8c\xfa\xd1\x44\xb0\x5c\x51\xa5\x4c\xc8\xca\x95\x5d\x63\x26\x54\xc6\xd4\x1f\xcd\x84\xca\x98\xfa\xa3\xb9\x3f\xb9\x02\xa3\x4c\xba\xc9\xb5\xdb\xf4\x66\x7e\xac\x39\x2c\xb9\xfe\x32\x74\xa2\x99\x26\x99\x0c\xbb\x68\xa6\x49\xae\x9c\x6b\xe6\x83\x64\xea\x0b\x44\xd3\x25\x32\x94\x35\xd1\xa4\x86\x5c\x41\x0a\x26\x08\xe4\xc6\xb6\xca\x97\x4e\xed\xe5\x43\x2e\x95\x86\x76\x91\x05\x77\x2d\xf1\x2a\x69\x8a\x1b\x42\xc3\xc8\xe7\x4c\x52\x43\xcc\xb2\x07\x37\x96\xb7\xf1\xc9\xb9\xa1\x58\x66\xd5\x89\x86\x48\xc9\x2a\xf0\x58\xd1\x63\x56\x09\x6f\x2c\xc2\xac\x12\x0e\x9b\x53\xcc\x84\x93\xe5\xf6\xb3\xbc\xc5\xec\x1c\x35\xce\xf1\xe2\xa4\x34\x70\xa2\x01\xc9\xb9\x1d\x9b\xb7\x7a\xd1\xef\xd9\x12\xe5\x5e\x0b\x36\xe5\x5e\xfb\xc5\x33\xc4\xa2\x32\xdc\x91\x1b\xc5\x53\x8f\x82\xdd\xb1\x28\x46\x3a\xa7\x5e\xb1\x48\x7a\x47\xc0\x96\xcb\xea\x06\xf4\x2b\x1e\x0a\x1d\x65\xb8\xb8\x43\xa9\x58\x1d\x8d\x50\xcd\x1d\x63\x5a\x91\x36\xaa\x63\x3e\x2a\xf3\x72\xbe\xfd\xa6\xcc\xe0\xcf\x3c\xd0\x0f\x8b\x95\x3d\xc7\x2f\xd1\x38\x16\x85\xf3\xc0\x6e\x63\x78\x67\x1e\xbf\x00\xaa\x58\x55\x36\xc6\x2f\x85\x27\x56\xff\xc6\xa0\xcf\x55\x1d\x60\x60\x24\xa9\x96\x5c\x1c\x4c\x4a\x0d\x7e\x08\x11\x54\x83\x1f\xaa\xbc\xd9\x7f\x35\x50\xfe\xab\x0a\xc3\x40\x04\x55\x97\xe8\xf8\x8b\x78\x39\x1a\x2a\x99\x49\x19\x8b\x15\x0b\x49\x1e\xac\x6d\x63\x23\xf3\xc0\x9c\x52\x15\xdd\x63\xd1\xa5\x5b\xc5\x9e\xb3\xa6\xca\x3a\x48\xba\x56\xac\xaa\xe8\x83\x95\x50\xcb\xad\x3a\x67\x93\xd1\x91\x81\x15\xab\xe6\x14\xac\xd9\xb1\x0a\x99\x49\xb9\x8a\x55\xc8\x4c\x16\x55\xac\xd2\xee\x91\x72\x15\xab\x89\x24\x64\xcc\xc5\xaa\xe8\x26\xa9\x2a\x56\xa5\xf1\x74\x0a\x54\x0f\x48\x8c\x8a\xd5\xea\x5a\x13\x65\xa9\xaa\xb1\x4f\x94\xa5\xaa\xb1\x65\x22\x61\xaa\x1b\x70\x22\x52\xaa\xf2\x76\x56\xfa\xac\x3e\x30\x51\x87\xaa\x3b\x6e\xa2\x0e\x55\x77\xdc\xec\x8c\x77\xda\x67\xd4\xa1\x3a\xed\x33\x3b\xae\x5a\x28\x19\x46\xb8\x58\x55\x1e\x26\x18\xd9\x58\xd0\x3c\x11\xec\x55\x6d\x7f\x82\x82\x0d\x0d\xcd\x58\xc2\x63\x55\x63\x27\xff\x37\x56\x55\x8b\xe9\x1c\xa9\xb1\xc3\x79\x1b\xab\x5b\x1b\xa2\xfb\x68\xf0\x67\x5e\x2f\x9d\x74\xa9\x43\x28\x11\x1b\xe6\xc1\x4c\xc5\xdb\xd8\xd4\x9c\x17\xf6\xcc\x86\x01\x30\x43\x72\x1b\x9b\xc2\x19\x06\x89\x68\x1c\x69\xa6\x50\x57\x34\x8e\x34\x2f\x70\x93\x71\xa4\x79\x61\x6a\x33\x8e\x34\xc3\xe4\x1f\xdb\xeb\x87\x7e\x21\x6d\xb1\x11\x1d\x97\x21\xb9\x8d\x4d\x03\xd1\x42\x66\x36\xf7\x05\xac\xb6\xb1\x09\xa8\x17\x80\xba\xa9\xf3\x2c\xb4\xdf\xf6\xd9\x49\x2c\x6f\xed\x96\xe3\xec\x5e\xb5\x93\x3f\xd7\x79\x6c\x2a\xc3\x70\xc6\xc6\xa6\xde\xb2\x98\x94\xa6\xde\x02\xdb\x46\x34\xbc\x33\xaf\xcd\x77\xa5\xdc\x84\xd8\x21\x36\x29\x37\x17\x93\xd2\xca\x65\xf0\xae\x34\xf9\xed\x70\xc6\xc6\xa6\xa0\x23\x7b\x22\x36\x77\x0a\x1c\x20\xb1\x89\x6d\x37\x12\xb5\x69\x2f\xda\x81\x59\xd0\x5e\xb4\xd1\xc4\x9a\x6a\x0c\xf9\x11\xd1\xf0\xce\x0c\x0d\x6c\x6c\x72\x18\x92\xc5\x10\x9b\x3b\x85\x2c\x86\xd8\xa6\x6f\x66\x2f\x34\xd9\xce\x37\xe2\xa8\x79\x82\x50\xc1\x39\x36\x11\x28\x99\xd4\xb1\xb9\xea\x36\x56\xca\xe6\xf9\xb2\xb1\x52\x36\x5c\x2a\x99\x84\xac\xd8\xc4\x89\x7b\x30\x29\x2a\x0c\xfb\x7f\x8c\xbd\x4b\xee\x04\xad\xb2\xe4\x39\xaf\x55\xf4\x12\x00\xe7\x29\xfd\x75\xf7\xc2\xb3\x67\x3d\xe8\xfd\x0f\x5a\xe1\x3f\xcb\x73\x6e\xb5\xae\xce\x57\xa3\x54\x92\x19\x04\x10\x60\x98\x3b\x1e\xe6\x98\x9c\x43\x33\xf6\x62\x72\x0e\x19\x86\x17\xd3\x60\xc8\x30\xbc\x87\x1b\xc9\x30\xe4\x1d\x07\x1b\x4f\xf7\xf5\xd0\x2c\x53\xc4\x66\xbd\xfe\xa6\xaa\x29\x62\xb3\x5e\x8c\xca\x19\x7e\x99\x10\x1b\x5f\x55\x33\x46\xe5\x8c\xd2\x60\x67\x9b\x53\x5c\x65\xe5\x2d\x06\x53\x78\x64\xd5\xb9\x80\xc2\x23\xab\xce\x05\xa6\x36\x41\xde\x53\xb0\xa9\x19\xfb\xb2\x7e\x7d\xfa\xea\xdd\x9f\xe2\xe1\x8f\xd9\x3e\xc5\x3d\x78\xfd\xd0\x14\x00\x59\xdd\x63\xff\x1f\x61\x7f\x8a\xa2\x3f\x70\x6f\x6a\x6f\x7d\xe0\xde\x2c\x3f\x2d\xf7\xc1\x57\xbd\x5e\xe7\xa9\xe7\x6d\xca\x2a\xe4\x9d\x05\x53\x50\x62\x7d\x40\xd9\x14\xb0\x3f\x3f\xe3\x33\xc5\xdd\xd5\x07\xff\x99\x72\x50\x3f\xac\x8c\xb9\x7e\x1a\xf2\x93\xaf\x92\x85\x87\x58\x2a\x76\xae\x91\xa9\xd3\x14\x3b\xd7\x02\x46\x87\x62\xe7\x5a\xc0\xe8\x98\xb0\xd0\x16\xd8\x05\xe6\x4f\x9d\x1e\xd0\x50\x0c\x5b\x93\x7f\x7e\x29\x01\x77\xc0\x34\x58\x3c\xeb\x26\x77\xfd\x0a\xaa\x19\xd3\x60\x45\x35\x03\x37\xb2\xe2\xd0\x9a\x7c\xec\x4b\x7a\xdd\x81\xfe\x2e\x49\x70\x07\xa0\x7b\x49\x28\x9b\x5c\x78\xa6\xd0\xb2\x16\xd8\x31\x97\x04\x9f\x03\x28\xb1\x24\xf8\x2c\x1f\xfb\x92\xe0\x73\xb8\xb4\x59\xb2\xcc\x01\x58\x58\x55\x62\x8f\x9c\x4c\xad\x2a\xb1\x47\x36\xd0\xa5\x97\x1c\x23\x34\x7b\x75\x65\xba\x84\x66\x2f\x36\xc1\x16\x99\x45\x4b\x89\x2f\x23\xb3\x68\xe1\xd4\x6a\x11\x5b\x75\x29\xb5\x65\xac\xfa\xb3\xae\x65\x6e\x2c\x29\xab\xc8\xc7\xbe\x7e\x9a\x93\x1a\x8d\x9f\xe6\x24\xbc\x5a\x01\x54\x2d\x62\xb0\x28\x80\xaa\xc9\xe5\xae\x10\xa9\x16\x61\xce\x3b\xfc\x24\x28\xfd\xbe\x5b\x6f\xfa\x13\xd6\x6e\x5b\xfa\xe4\x09\xae\xb8\xa5\x4f\x2e\xc7\xf8\x96\x72\x38\x71\xec\xb6\x35\x92\x09\xec\xda\x92\xce\x4e\x30\xc9\x2d\xe9\xec\x54\xf4\xe7\xa5\xaf\x97\xaf\xf4\x37\xc1\xd9\xb6\xd4\xb0\xe5\x27\xdf\x7a\x0a\x24\x73\xb4\xad\xa7\x90\x3a\xd7\xb2\x16\x5a\xc2\xca\xd8\xd8\x98\x2d\x81\x6c\x7b\xa8\x2a\x88\xf4\x06\x8d\x9b\x7c\xdd\x5b\xb9\x60\x12\x5c\x6b\xeb\x95\x4f\x84\xda\x6c\x4f\x25\x7f\xf1\xf8\x13\xdb\x92\xd9\x31\x26\xc3\x86\xd0\x36\xd2\x53\xda\xde\xbf\x3c\x32\xdc\x77\x2b\x8f\x0c\x5b\xf3\xc6\xb5\xd8\x10\x6a\xb3\xad\x47\x66\x1c\x6c\x6d\xe9\x96\x20\xf2\x66\x5b\xba\x25\xc6\x3a\xda\xd2\x2d\x31\x60\x64\x4b\xeb\x92\xc0\x6f\xdb\xd2\xba\x24\xf0\xdb\xb6\x94\x49\x8c\x65\xb5\xa5\x4c\x62\x8d\x1e\xbd\x5f\x3a\x1b\xfa\xab\xe4\xfb\x84\x85\xdb\xd6\xdc\x30\x76\xea\x13\x55\x15\x7c\x5e\xe1\x55\xcd\x70\x69\x9e\xa8\x3f\x63\xbe\x1d\x49\xe8\xf3\x8e\xa4\x1d\xa9\xd3\xcb\xcf\x7c\x24\x23\x6f\xae\xb9\x64\x47\x32\xf2\x28\x57\xd8\xd1\xe3\xce\x1c\xac\x1f\x9c\xd2\x2d\xfb\xcb\x41\x76\xd8\xe5\x5b\x66\x12\x1e\xbc\x13\x4d\xae\xe3\x53\xa5\x49\xce\x53\x50\xe4\x52\xcb\x9c\xce\x28\x54\xa9\xc9\x75\x7c\x94\xf0\x37\xc3\x4b\x15\xb9\xd4\x32\x1e\xbf\xd3\x55\x15\x0b\xf6\xe8\x65\x5b\x52\x54\x9b\x22\x97\x5a\xfe\x2c\xdf\xff\x08\xfb\x47\xaf\xd6\x66\x06\xf9\x68\x16\x65\x06\xf9\x68\x69\x67\x6c\xa8\x23\xb1\xa6\xcc\x39\xec\x91\x90\x8e\x3c\xb4\x47\xea\x37\x84\x2e\xdb\x11\xde\xe6\xa3\x3f\xab\xfd\x1a\x64\xcd\x22\x39\x6c\x8f\x66\x91\x3c\xb4\xe7\xa9\x2a\x9c\xf9\x97\xf3\xc1\x56\xb0\x14\x2e\xc4\xb2\x15\x36\x85\x4b\xdc\x5d\x2b\x18\x0e\x57\x33\x81\x9c\x5f\x76\x71\xc9\xb6\xe2\x91\x57\x76\x95\xd3\xa1\xc0\x7f\xae\x72\x3a\x14\x36\xe2\xab\x9c\x0e\xc5\xf4\xe7\xab\xaf\x95\xaf\x4f\x5f\xfd\xe1\x5e\xe5\x74\x28\xb8\x35\xae\x72\x2b\x14\x10\xf5\x4a\xe7\x5f\x5e\xd6\x2b\x9d\xff\x82\xe1\x70\xa5\xf3\x4f\x06\x37\xbb\xd2\xbd\x27\x92\xd9\xae\x74\xef\x0b\x10\x7a\xa5\x7b\x8f\xa8\xaf\x5d\xe9\xde\xcb\xe9\xaa\x88\xaf\x46\xd8\xb3\x5d\x29\xdb\x17\x38\xea\x95\x1c\x3d\x61\xcf\x76\x35\x03\x11\x3a\xb0\xdb\xd4\x05\x9e\xe0\x6d\xfa\x33\x0c\xf6\x2a\x5b\x77\x61\x6f\x52\xf0\x58\x23\x2b\x90\xdd\xa6\xaa\x30\x2b\xae\xe6\x27\x69\xe6\xec\x2a\x8f\x15\xc9\xc5\xec\x0a\xbb\x48\x33\x67\x8a\x34\x6b\x95\x33\xcd\xfb\xcb\xe0\x4c\xd4\xc4\x15\xb2\x55\xc2\x51\xae\x26\xb3\xdc\xaa\x57\x2a\xdc\x68\x26\xd8\xd5\x04\xae\x58\x73\xf7\x27\x4d\x06\x47\xbd\x3f\x69\x32\x70\xfe\xfe\xb4\xc8\x58\x35\x57\x64\x83\x54\x6b\x76\x95\x68\xb8\x56\x55\xf5\x53\x48\xa3\xcd\x5b\xd7\xe2\x30\xb9\x82\xd0\x0a\xe7\x51\x38\x59\xab\xc0\xd1\x95\x30\x14\xe9\xd2\xec\x6a\xb6\x57\x0e\x4d\x14\x03\xd6\x50\x0e\xb7\x2b\xcd\x25\xa4\x0c\xec\x6a\xf2\x57\x3d\x14\xc1\x60\xe5\x88\xf3\x3e\xdd\xe8\x32\x55\x04\x83\x95\x43\x31\x45\x88\xb5\x0a\x76\xbd\xa0\x66\x70\x00\xfa\x82\x6a\x86\xa3\xbe\xa0\xaa\xd8\x4f\x9f\x30\xb3\x41\xbd\x1e\x36\x57\x93\xbf\xf7\x89\xd5\x34\x18\xac\x42\xc2\x1a\xd2\xd9\xa6\x90\xb0\x26\x8f\xee\x53\x16\x8f\xc6\x4a\x79\xca\xe2\xd1\x70\x89\x3c\x21\x2a\x52\x48\xf6\x84\xa8\xcd\x35\x13\xec\x29\x9d\x04\xd1\xcb\xf6\x90\xb9\x68\x0d\xbf\xcd\xd3\xac\x93\xb3\x54\x41\x5f\x8d\x70\x65\x53\xd0\x57\x6b\x9c\x54\x3e\x6d\xaf\xf2\x8e\xbe\xae\xaa\x38\x77\x7e\x9a\x48\x0d\x33\x59\x41\x5f\xad\x69\xe8\x94\x92\xbb\x01\xfb\x4f\xd3\xac\xc1\xc4\x9e\x04\xf1\xc8\xb7\x6e\x4f\x69\xa6\x3b\xa7\x42\x8f\x17\x40\x5a\xc7\x04\x7b\x62\x44\x1d\xd6\xfa\x70\xb4\xb6\x0e\x40\x3d\x6d\xcd\x1d\xd6\xfa\x34\xcd\x3a\x78\xf5\x34\xcd\x3a\x4b\xe3\x1d\x5d\xcb\x5a\x78\xa2\xb8\xf2\xac\x3e\xc9\x7d\xf7\xfc\x0f\x9a\x3c\xf6\xc4\xca\xc8\xbd\x6e\x4f\x6a\xde\x72\xba\x3e\xa9\x79\xcb\xe9\xfa\xa4\xe6\xdd\x21\x00\x4f\x24\xad\x3b\x01\xc8\x21\x48\x82\xdb\x77\x90\x1c\x82\x64\xb4\x7d\x21\xe4\x20\x70\xee\x83\x3f\x47\x0d\x85\xfb\x40\x72\x88\xea\xce\xe4\xcf\x82\xee\xee\x8e\xf1\x1c\x44\xb3\xbb\x3f\xeb\x1c\xe2\x4f\xeb\x9b\x1b\x09\xab\xbb\x1f\x34\xe7\x20\xac\x26\x36\x3b\x07\xc1\x6f\xf7\xa9\x9e\x83\x36\xe2\xe1\xfe\xa2\x1c\x38\x3f\x6a\x44\x32\xe7\x20\x64\x23\x09\x5d\x0e\x92\xeb\x44\x48\x30\x07\xa9\x85\x10\xab\x9c\x15\x96\xd6\x46\xa5\x55\x02\xba\xe1\xfc\x27\x07\x49\x6d\x8c\x46\x7f\x65\x92\x20\x65\x9f\x83\x1e\x2e\x52\xf6\x39\x6c\xa9\xa6\xbb\x25\x9b\xc3\xd6\xb5\x4b\x7f\xa6\x47\x63\xf3\x67\xce\x8f\xda\x70\x9f\x73\x0e\x04\xae\xb7\xb1\xb9\x56\x3a\x75\xe3\xd2\x41\xe9\xd4\x8d\xcb\x58\xfd\x94\xcf\x2f\xd7\xfe\x94\xcf\xaf\xae\xd5\x68\x5c\xba\x20\x1a\x36\x1e\xbf\x4a\x02\x8e\x9c\xda\x59\xb1\x64\x8d\x24\xda\x39\x8a\x93\x4f\x77\x01\xe5\x18\xa5\xdf\xe8\x21\x6d\x39\xea\x19\x91\x7d\x29\x2b\x8e\xab\x91\xef\x23\x2b\x8e\xab\x4d\x77\x6e\xe7\xa8\x34\x3a\x64\x8c\xca\x51\x14\x9d\xec\xd5\x39\x2a\x43\xcd\xec\xd4\xac\x0c\x35\x24\xee\xcf\x51\xa6\xd0\x74\xcf\x5b\x56\x1c\x57\x9b\x83\x9a\x95\xb1\x85\xdc\x5b\x39\x2a\x63\xcb\x74\x94\xc8\x0a\xeb\x6a\xd3\xf7\xc4\x1c\x89\x1c\x68\xe4\xa7\xce\x51\xa0\x41\x32\xe8\x1c\x65\x46\x21\xd1\x93\xa3\x36\xb2\xf9\xf4\x95\x46\xae\x40\xab\x38\x9d\x69\x2b\x70\x5f\x62\x14\xdb\x0a\xd4\x2c\xce\x46\x06\xe7\x1c\x45\xbd\xd0\x5d\xc9\x0a\xeb\x6a\x4b\x03\x8b\x99\xdc\x56\xa2\x2a\x6d\x73\x64\xc7\xcb\x8a\xe3\x6a\xa4\x7b\xce\x11\x3f\x64\x5b\x7a\x0a\xda\xd7\x96\xe9\xcf\x4b\x5f\xe9\xfe\xd2\x8d\x58\x0b\x51\x26\x36\x0e\xea\x1c\x65\x62\xaf\x4c\xab\x04\x47\xcb\x03\x18\x72\x94\xe1\xb0\x0a\xfd\xdd\xea\x42\xa1\x91\x5b\xf7\x2d\xdc\x57\x66\xc5\x2a\xcc\x1c\x4d\xef\xc5\xb2\x52\xc0\x58\x5b\x8d\xa7\x70\xf4\x6b\xa3\x19\x4a\x78\x87\x63\x3c\x47\x31\xcf\xd5\x18\x1c\xb1\x47\x3c\xe1\x39\xca\xac\x20\xd2\x3b\x27\x6d\x73\xcb\x8f\x47\x73\x0a\xaa\xca\x8f\x47\x73\x12\x22\x21\x89\x96\x93\x36\xc1\xe5\x1e\xa1\x9c\x94\x4e\x6b\x3d\xbe\xca\x78\x47\x21\x2d\x27\x65\xb9\x42\x16\x2c\x27\xe5\x90\xc2\xa1\x9d\x93\xac\x48\x5c\xd6\x39\xe5\x9f\xde\x23\x55\x29\xa9\xd0\xce\x7c\xed\xfa\xea\xb1\x94\x39\x71\x16\xd9\x08\xb1\xce\x49\x33\x67\xab\x47\xda\xb9\xb6\x9f\xff\xe6\xa4\x07\xba\xf7\x3f\xf8\xf6\x73\xd2\xb3\xde\xcc\xed\x24\xef\x0a\x6e\xe4\xac\x20\xae\xb6\x0f\x23\x73\x7e\xca\x90\x91\xaf\xfa\x15\x44\x55\xc6\xff\x46\x40\x75\x56\xc6\xff\xb6\x7d\x43\xcc\x8a\xf8\x6a\xfb\x31\xaa\xe7\x27\x4f\xc4\x40\x9d\x5f\x26\x35\xd5\xfc\xcb\xa4\xa6\x9a\x95\x6c\x0b\x84\x51\x5e\xfe\x76\x22\x7d\x97\x3e\x27\x2e\xe8\xac\x4c\xf4\xed\x30\x99\x93\x8c\xc4\x93\xa9\xf9\x29\xc9\x57\xa6\xe6\xf7\xcb\x77\xe6\x6d\x56\x10\x57\x3b\xbe\xcd\x65\xa5\x41\x6f\xc7\x89\x47\x56\xfe\xf1\x76\x98\x81\xf6\xcb\xb3\x06\xfe\xd8\x2f\x93\x1a\x80\x63\xbf\xf4\x61\x6e\x19\x65\x65\xa0\x6e\xe4\x89\xce\x0a\xa0\x6a\x08\x02\x67\x65\x64\x6e\x04\x72\x67\xa5\x51\x6e\x38\x8a\xb3\xd2\x28\xb7\x73\xb9\x91\xc0\xea\x5c\x6e\x54\xd5\x5f\x67\x74\x59\x31\x51\x0d\xb5\xe4\xac\x8c\xc6\xed\xf0\x50\x94\xb3\xb8\xa1\x00\x9c\x95\x3c\xb7\xdd\x48\x33\xb4\x91\x11\xf5\x9d\x15\xe6\xd4\xf0\xfd\x66\xfb\x97\x74\x15\xdd\xd7\x36\x77\x81\xee\x5f\x5e\x5a\xb4\x71\xb2\x92\xba\xb6\x0b\x2c\x28\x23\x6a\x23\x69\x6f\x56\x4a\xd0\x86\xd4\x67\x56\x4a\xd0\x86\x3e\x67\x56\x20\x53\xbb\xee\x21\xc9\x4a\xe5\xd9\xee\xa0\x0b\xe7\xa7\xae\x46\xf7\x35\x09\xef\xe4\xcf\x9a\x84\x44\x7d\xe7\x5f\xc2\x4d\xfc\xb7\x59\x09\x37\x1b\xb9\x8a\xb2\x12\x6e\xb6\xcb\xae\xa7\x84\x9b\x8d\xb4\x47\x59\x09\x37\x1b\x19\x88\xb2\x12\x6e\x36\x82\xc0\xf3\x2f\xe1\xe6\x8b\xdc\x97\xf0\x8c\x86\x87\x36\x2b\xe1\x66\x43\x49\x26\xff\xf2\x60\x3e\x66\x9d\x02\x99\x1a\xa1\xda\xd9\x7e\xf9\x3e\x34\xeb\x64\x0b\xa0\x24\x93\x95\x8f\xb2\xa1\xcc\x96\x15\xb9\xd4\xd0\xf6\xcc\xca\xed\xd8\xc8\xec\x99\x95\xdb\xb1\xe1\xa4\xcd\x0a\x64\x6a\x44\x5c\x67\xa5\x4d\x6c\x48\xc7\x64\xa5\x4d\x6c\x8f\xa7\xa0\xb4\x89\xed\xf1\x14\x94\x36\xb1\x3d\x3f\x07\xc9\xbf\xf4\x85\xa4\x01\xcd\xbf\x04\x85\x0f\x26\xf6\x4b\x50\x88\x83\x37\xff\xb2\x0a\x3e\x77\xb6\xe4\x5f\xb2\xbf\xe7\x34\x3b\xff\x32\xfa\xbd\x4d\x55\x5a\x29\x0f\xcc\xf9\x25\xda\x7b\x9b\xfb\x2a\x77\xde\x63\x69\xfc\x92\xc7\xbd\x4b\x7f\x95\x3c\x0e\x41\x98\xfc\xcb\xf8\xf6\x98\xde\x4a\xe2\xd6\x43\xe0\x57\x1c\x71\x3d\x44\x5a\x85\x23\xae\x13\xda\x9d\x15\x5f\xd4\x43\xd2\xaf\x4f\x5f\x69\x15\xc7\x31\x3d\xb0\x9f\x2a\xfa\xa8\x93\x9c\x34\x2b\xc7\x59\x0f\xee\x25\xc8\xca\x62\xd6\x03\x6b\x41\x59\xcc\x3a\x52\x57\x59\x09\xc2\x7a\x60\x69\x28\x41\x58\x0f\xec\x98\x4a\x10\xd6\x03\x3b\xa6\x12\x84\xf5\xc0\xd3\xff\xa5\xc1\xc2\x29\x9d\x7f\x69\xb0\x82\x9e\xaf\x32\x5b\x85\xfe\x0f\xe2\x0c\xf9\x97\xf4\x2a\x74\x06\x4a\xc9\xa7\x50\xa1\xc9\xbf\xe4\x53\x01\x8a\xfe\x4b\x3e\x45\x78\x79\xfe\x25\x9f\x0a\xec\x35\xbf\x7c\x52\x61\xd2\x59\xe5\x93\xc2\xf5\x9d\x7f\xf9\xa4\x08\x2f\xcf\xbf\x9c\x50\x01\x8a\xfe\xcb\x09\x15\xd8\x88\x7f\xf9\x95\x02\xdb\x8d\x72\x24\xf5\x70\x99\x63\x5b\xcd\x80\x68\xe5\xad\x66\x3c\x5d\xab\x67\xcd\x76\xa3\x0c\x4a\x3d\xb0\x96\x95\x41\xa9\x93\x73\x39\x2b\x57\x51\x8f\x91\x6b\xa5\x2c\x8d\x63\x3c\x2b\x57\x51\x8f\x91\x6b\x25\xad\x1c\x8d\x1e\x41\x86\x3b\xf9\x9a\xb3\x22\xaf\x3a\xfa\x36\x59\x79\x70\x3a\x71\xec\x59\x79\x70\x3a\x4e\xf5\xac\x3c\x38\x3d\xb2\xd2\x95\xec\xa6\x93\x7d\x29\x2b\xad\x4c\x8f\xee\x6d\xc8\x4a\x2b\xd3\x91\xbb\xc9\x4a\x2b\xd3\xc9\xdc\x94\x4b\x54\xcd\x2c\x7c\x65\x8a\xe9\xd1\x63\x39\xb2\xd2\xbb\xf4\xc8\xd2\x56\x8a\x96\x1e\xdd\x9b\x94\x15\x00\xd6\x23\xcf\x57\xe9\x4e\x7a\x84\x0c\x2b\x39\x48\x8f\xec\x4d\x8a\xf2\xea\x91\xe5\xa9\xf4\x1f\x1d\x41\x9b\xac\x28\xaf\x4e\x36\xa2\xac\xc0\xad\x1e\xaf\xbe\xea\x46\x97\x6b\xab\xaa\x82\x2c\x29\x0f\x45\x8f\x70\x00\x85\x75\xf5\xc4\xa6\xaf\x3c\x14\x3d\x05\x5d\xcb\x14\x4d\x2c\x5e\xe5\xa1\xe8\x04\xcc\x67\x45\x79\xf5\x14\xa9\x59\xcb\x93\x80\xf9\xac\xb4\x0e\x9d\x83\x80\xac\xb4\x0e\x9d\xbc\x39\x59\x21\x61\x3d\xb1\x96\x15\x12\xd6\xc9\x13\x94\x95\x4f\xa1\x93\x82\x27\x2b\x9f\x42\x27\x24\x3e\x2b\x16\xab\x27\x3f\x07\xc9\x8a\xc5\xea\x09\xc2\x20\x61\xff\x9e\x58\x9e\x8a\xc5\xea\x24\x8e\xc9\xd2\xdb\xef\x49\xcf\x48\xab\x8c\x63\x82\x2c\xbd\xfd\x9e\xf4\xc8\x94\x88\x2d\xb1\x06\x15\xc7\xd5\x49\xdf\x93\xa5\x99\xdf\x93\x9e\xa0\x96\x55\xc2\xa8\xfc\xa9\xe2\x13\x6c\x9f\x7f\xaa\xf8\x49\xcf\x57\xda\xf5\x09\x06\x28\xed\xfa\x9e\x0e\x35\x6b\x49\x26\x36\x50\x69\xd7\x77\x12\xc7\x64\x85\x84\xf5\x04\x33\x51\xd0\x57\x27\xba\x3e\xff\x54\xe2\xd3\xa3\xfb\x52\x89\x4f\x80\xf3\x4f\xa1\xdd\x02\x55\x49\xa1\xdd\xd8\x5e\xa5\xc1\xde\x0d\x8e\xa7\x90\xb0\x6e\x7a\x64\x5a\x83\xa8\xdf\x64\x85\x84\x75\xd3\x13\x64\xc7\xec\xc6\x0a\x95\x62\x79\x27\x45\x7e\xfe\x09\x89\x9b\x1e\xa8\xd6\x2f\x91\xf9\xf9\x27\x06\x6e\x80\xf3\x4f\xc1\x1b\x31\x9c\x2c\x05\xef\x6e\xae\xa8\x9f\xa5\x1d\xdd\x89\xae\xcf\x52\x87\xee\x06\xe5\x93\x3a\x74\x37\x7f\x29\x29\x4b\x1d\xba\x13\x7b\x9f\x15\x4e\xd6\x51\x9e\xc9\x52\x69\xee\x04\xc9\xe7\x6a\xfa\x33\x16\xa8\xa4\x95\xbb\xb1\x06\xa5\x72\xdc\xd1\xa5\xc9\x8a\x3d\xeb\x9e\x27\xe8\x3f\xc2\xbe\x34\x8d\x3b\xd9\x5b\xb2\x84\x79\x3b\x2a\x34\x59\xc2\xbc\x1d\x15\x9a\x2c\xe9\xdd\x9e\x79\x22\x52\x1f\xed\x1c\x37\x64\x29\x88\xf6\xac\xa1\xc0\xb0\xed\x48\xb8\xe4\x7f\x6b\x84\x32\xaa\x5a\x08\x04\xae\x67\x09\x81\xf6\xdc\xa8\x79\xea\x46\x8d\xaa\xb0\x65\x3a\x7a\x2f\x59\x42\xa0\x9d\x8c\x2d\xb9\x6a\x7f\xe1\x3c\x22\x57\xed\x2f\x08\xbc\x64\xa9\x77\xf6\x3c\x68\xa4\x60\x3f\xb3\xfb\xd4\xa3\x1b\x69\x90\x95\xd4\x00\x91\x96\x5c\xb5\x0b\x10\x8b\x9e\xab\xe6\x67\xc6\xee\xab\x57\xdd\xd7\xd0\xe1\xbf\xed\x19\x26\x59\x25\xb0\x9f\x2f\xcd\x90\x76\x3d\x32\x2c\xb9\x09\xd8\x39\x8f\xc8\x0d\xb3\xa2\x17\xd0\x49\xea\x9d\xbd\x60\x06\x36\x4d\x1b\xc4\x52\x72\x23\x30\xa0\x17\xf6\x97\xa6\x69\x83\x58\x4a\x6e\x9a\x36\xa5\xe8\x57\xfd\xd9\x4f\x69\x73\xcb\xaa\xb9\xe9\xab\x6a\x06\x8e\x1a\x2f\x62\xf4\xe2\x71\x2f\xb9\xc1\xac\x7a\x01\x8e\x5a\xd1\x8d\x60\x83\x8a\xac\xeb\x9c\x47\xe4\x26\xac\x2e\x1e\xe8\x92\x25\xaa\xd9\x0b\xf8\x23\xe9\xcb\x4e\x6c\x76\x6e\x22\x3c\xa4\xd7\xcf\x92\xa0\xec\x85\x8d\x5b\xea\x8e\x1d\x57\x7f\x6e\xda\xc7\x2b\xcc\xb9\x69\x1f\x27\x75\x48\x6e\x38\xb5\x7a\x2d\xfa\x5a\xf5\xd5\x87\x5d\xa2\x8b\xbd\x62\x23\x2b\xd0\xae\x93\x70\x33\x4b\xfc\xb0\x23\xfa\x91\x25\x60\xd8\x2b\x3e\x9f\x9e\xf4\x15\x2a\xd2\x93\x6e\x84\x4f\x40\x71\x77\x9d\x90\xe9\xdc\xb5\x3c\x2b\x2c\xb4\x23\x51\xde\xeb\xd3\x57\x46\xb2\x61\xcc\x4a\x78\xb0\xb7\xc8\x7d\x71\x5b\x75\xc2\xa4\xb3\x84\x07\x7b\x83\x6c\x74\xdc\x56\xbd\x45\x5a\x55\x94\xb7\x82\x7d\xad\xeb\x19\xa1\x10\x92\xbb\x38\x2a\x91\xcf\x59\xd1\x74\xbd\x31\x37\x7a\x53\xce\x0e\xec\x88\x2e\xed\xe8\xc6\xfa\x55\x44\x5c\x6f\xf0\x87\xce\x61\x4d\x6f\xf8\xd6\x7a\x57\xea\x0d\x3f\x8d\xca\x5d\x49\x5d\x1b\x7b\x53\xd7\xde\x44\xc8\x71\x96\x4a\x61\xc7\xa9\x9e\xbb\xb2\x82\x92\xcd\x30\x77\xed\x3e\x4d\x03\xab\xdd\x07\xa5\xe5\xdc\xd7\x2f\x6d\x07\xdd\xd7\x82\xc5\x03\x9f\xfb\xbf\xd2\x8e\x30\x1a\xda\x50\x1a\xab\xac\xff\x52\x7e\xb0\xa1\x28\xaa\xad\xf7\xc0\xb5\x38\xa5\x3b\x21\xc7\xb9\xdf\x5f\x42\x10\x7e\x7d\xd2\x13\x66\x0d\x0e\xe1\x7c\x67\xd3\x57\xec\x59\x27\x02\x39\x2b\x9c\xac\x77\x86\x4e\xe1\x64\xbd\x17\xfd\x59\x37\xc2\x8b\x35\x34\x91\x88\x40\xce\x43\x13\xa9\x33\x27\x87\xb6\x8c\xce\xb0\x8f\xa4\x66\xf8\xe1\x78\x96\x68\x61\xef\xac\xd0\x21\x62\xd6\x3b\x8d\x34\x65\xf1\x80\x3f\x0c\x53\x55\xdf\x43\xf9\x8f\xb0\x3f\xb2\x12\xb2\xc0\xd8\x87\xe6\x58\x87\xb1\x2b\x0e\xad\x77\x2c\x2c\xe9\x0a\xf6\x0e\xd0\x0d\xb1\xa3\x8e\x85\xa5\xf0\xb0\x4e\x34\x72\x1e\x82\x6e\x32\x66\xe6\x21\xe8\x1e\x1e\x45\x90\x87\xa0\x7b\xb0\x11\x0f\x91\x87\xc1\x1e\xa1\xf0\xb0\x8e\xc4\x47\x1e\x62\xdd\x43\x9d\xd5\xc3\x1d\x78\x57\xc6\xd5\xaf\x6c\xb5\xe3\xfd\x12\xc2\xfa\xb5\xf3\x97\x68\x03\x24\x97\x56\x5e\x1f\x1e\x00\x96\x67\x50\x56\x20\x2c\x4a\x49\xe7\x75\x34\x3d\xf2\xd4\xb3\x1e\x47\xbf\xaa\x91\xcc\xc0\xa9\xa7\x39\x00\xab\xa9\xa7\x39\xb0\x32\xa6\x1e\xd0\xc4\x7f\xab\x30\xad\x3e\xa1\xac\x13\x67\x60\x9f\x30\x9c\x89\x15\xdc\xa7\x47\xe5\x65\x69\xdc\xf5\xc9\x84\x54\x4c\x57\x9f\x51\x35\x4f\x7d\xdd\x7c\x5d\xfa\x4a\x07\x45\xd1\x11\x0f\xc9\x33\xeb\x57\x86\x5d\x2a\x76\x7d\xb2\x65\x4c\x59\xc1\x13\xa3\x63\x16\x5d\xeb\x67\x37\x79\x8a\x03\x4c\x08\xcf\x24\x0a\xb1\xcb\xe5\x2e\x9d\xba\x3e\x99\xae\xd2\xa9\xeb\x93\xad\x59\x6a\x72\x7d\x72\xd0\x23\x81\xb8\x3e\x01\xd8\x29\xd8\x9f\x58\x19\xb3\xab\x55\xd0\xa1\x49\x30\x43\x9f\x1c\xf4\x4c\xe1\x8f\x1c\xf2\x53\x19\xa8\x27\x0e\x84\xa9\x2d\x63\xea\x81\xca\xce\x9d\x80\xf3\x14\xd9\x98\x38\x6c\xa7\xc8\xc6\x64\x1f\x97\x5e\x5c\x9f\x18\x2c\xd2\x8b\xeb\x13\x7e\x2b\x45\xb8\x3e\xf5\xf4\x95\x3a\x79\x5e\x6e\xa4\xd4\xc9\x93\x33\x94\x29\x12\x4e\x96\xf0\x2c\x09\xb8\x3e\x59\x1a\x53\xdc\x63\x62\x72\x4e\xa5\xa6\x9a\x98\x9c\x53\x30\x38\xb1\x7d\x14\xc6\xd6\x27\x5b\x86\xf4\xe2\xfa\x0a\xba\xef\xd3\x57\x87\x6e\x85\xb1\xf5\xa5\x99\xa3\x75\xb4\xb0\x5e\xa7\x48\x38\x9a\x2d\x79\xca\x6a\x5e\x9a\x39\x1c\x12\x75\x1d\x13\x4c\x25\xe8\x91\x43\x7e\x3e\x55\xc5\x7e\xba\x34\xdb\x11\x48\xc9\x0a\x54\xeb\xe4\x28\xc9\x4b\x0c\x16\x81\x94\xbc\x04\x56\x0b\x18\x91\xd8\x5a\x5f\x3c\xb2\x95\xd4\xa3\xa5\x9a\xd5\x23\x60\x7f\x69\xe1\x2c\x9e\x82\x42\xe0\x3a\x02\x29\x79\x69\xe1\x90\x6b\x23\x2f\x2d\x1c\xd2\x24\x65\x29\x95\xf5\x0d\x33\x59\x9a\x75\x5b\xad\xd2\x34\xdb\x6a\x86\xa6\xd9\x86\x66\x2f\x4d\xb3\xbd\xa8\x59\xdb\x1c\xfa\x21\x79\x29\x85\xfa\x86\x75\x2f\xa5\x50\x97\x6f\x7c\x29\xd1\xf9\x86\xc6\x48\x70\xac\x6f\x60\x44\x82\x63\x9d\x34\x49\x79\xc9\x12\x24\x00\x3b\x2b\x9a\xae\x6f\x26\xd2\xfa\xe5\xe0\x56\x07\xc5\x69\xe5\xdf\x5e\xe2\xb4\x87\x53\x83\xa5\xa9\x72\xd8\xaa\x14\x4d\xd7\x4f\xf9\x27\xb6\xbf\x94\xc2\x8c\x38\xe7\x2c\x59\xb3\x7e\x80\xdf\x25\xcb\xee\xe0\x4f\x58\xf8\x15\xfb\xd1\xc8\xe0\x27\xef\x47\x8f\x4f\xb9\x99\x0e\x67\xa9\x5b\xcc\xea\xb0\xa7\x6f\xa5\x4c\x3a\x5b\xbf\xaa\x66\x1e\xae\x84\xcb\x3a\xb2\x24\x79\x0b\x6f\x0f\x2e\x82\x1d\x75\x5f\x0f\x6c\xce\x5b\x39\x83\x8e\xa7\x4c\xca\x5b\x3b\xef\xe1\xe4\x71\x6b\xbb\x24\xce\x39\x6f\x53\xc6\xa8\xa4\xaf\xca\x18\x85\x8f\x6e\xcb\x68\x42\xd9\x3e\x2b\xc0\xaf\x5f\x7c\xb0\x92\x26\xeb\x17\x93\x64\xcb\xd8\xb9\x6c\xc4\x8a\xd9\xeb\xb7\xe9\xcf\x4a\x02\x05\x3b\xda\xf2\x45\xdc\xc6\x7d\x85\x99\x97\x9d\x6b\x8b\xfd\x5e\x78\xf5\x6e\xbf\xe4\x53\x9d\xaf\xba\x2f\x54\x6a\x8b\xb3\xc9\xd7\xbd\xb5\xdb\xa2\x70\x92\xb7\x00\x16\x85\x93\xbc\x85\x7b\x97\x9d\x7a\x0b\x25\x48\xc6\x94\xb7\x0c\xf9\x07\xff\xd9\x02\x8d\x07\x86\x6c\x3d\xee\x17\x68\x86\x68\xf6\xc3\x7f\xa2\x98\xbd\x2e\x07\xf5\xd1\xf3\x7d\x1e\xdf\x98\x8f\xbc\x58\xf2\x39\x1f\x79\xb1\x88\x28\xce\x12\x3d\xeb\x68\x80\xe4\x23\x0b\x9a\x04\x52\xf9\x68\x6e\xbc\xae\x6b\xd5\x0c\xba\x7f\x94\x4e\xeb\x11\x1b\x70\x94\x4e\x0b\x59\x8f\x2c\xc1\xb4\xfe\xd8\x14\x8e\x1c\x62\x6f\x52\xb3\x1c\x62\x0f\xfc\x91\x42\x5a\x7f\xec\x11\x47\x33\xe7\xb1\x96\x8f\x3c\x60\xcf\x03\x29\xf3\x49\x6a\x33\xc6\xdd\x11\x2b\x7b\xd0\xfb\x23\x43\xfe\xb1\x0b\x1c\xc1\x20\x9a\xe4\xf9\x08\x06\x11\x0c\xc9\x47\x30\x28\x8f\xb4\x62\x05\x47\x60\x2d\x2b\x56\x70\xa0\x3a\x9e\x8f\x32\x28\xc9\xe7\x7c\x94\xc3\x37\x00\xdd\x12\x6a\x1b\x44\x2f\x67\xc9\xa9\x8d\x00\x7d\x92\x9c\xda\x40\x57\x3c\x4b\x4e\x6d\x04\x3d\x32\x65\x02\x42\x7b\x24\x1f\x65\x02\x0a\x90\xff\xa3\x5c\x3f\x01\x43\xe9\x28\xd7\x4f\x00\x19\x8e\x72\xfd\x04\x0e\x5e\x8f\x72\xfd\x04\x0f\xbf\xc9\x52\x57\x1b\x81\xb5\x70\x94\x73\x27\x70\x2c\x7b\x94\x73\x87\x4c\x88\x59\xd1\x8f\x23\xb0\x34\x14\xfd\x38\x50\x35\xc9\x8a\x6f\x1c\x01\x8b\xec\x28\xcd\x6b\xd0\xd3\x57\xa2\x9c\xc0\xee\x73\x94\xe6\x35\x70\xc4\x79\x94\x28\x27\x60\xda\x1f\xa5\x79\x0d\x83\x47\xa6\x44\x39\x28\xa2\xe4\xa3\x84\x35\x01\x7e\x78\x9a\xc6\x6a\xd2\x7d\xa5\x5b\x25\x1e\x3b\x1f\xa5\x5b\x45\xf3\x24\x1f\xa5\x95\x09\x9a\x39\xca\x64\x1a\x34\x55\x94\xb1\x05\xcd\x93\x7c\x94\xb1\x25\x5c\xa6\xb7\x92\x84\x06\xcd\x0d\x25\x09\x95\xcb\xfa\x40\x36\x06\xa2\xeb\x59\xb1\x94\x03\xd1\xf5\x7c\x96\x32\xb9\x6b\x6e\x2c\x65\x72\x67\x97\x3f\xec\xf2\x23\xa6\xfb\x0f\xb0\x7f\x94\x41\x32\x72\x6c\x77\x94\x41\x32\x42\x0e\x25\x34\x37\xe4\xaf\x96\xd0\xdc\x88\xb0\x41\x45\x6c\x8e\x08\x27\x57\xc4\xe6\x20\xae\x3b\x2b\x62\x73\x44\xcd\x04\xbc\x70\x23\x02\x74\x07\x2f\xdc\x88\x00\xdd\xc1\x0b\x37\x22\x8e\x9a\xab\xbc\x72\xc4\x75\x7b\xea\x0e\xbe\x66\xbe\xea\xbe\x8c\xf9\x8d\xbf\xbc\x81\x9d\xaf\xba\x2f\x1b\x8a\x22\x36\x47\xc4\x27\x79\x95\xd0\x2d\x12\xd9\x72\x95\x2b\x2d\xb2\x83\x5c\xe5\x4a\x8b\x38\x21\xef\x2f\xd5\x35\x54\xea\x6a\x11\x25\x88\xb4\xa2\x2e\x07\xea\x28\xf9\x6a\xba\x26\x16\xd1\x55\x6a\xdd\xc4\x54\xbf\xca\x87\x9b\x3a\xd7\x6a\x26\xa0\x40\x9e\x15\xd0\x38\x12\x06\x8b\x02\x1a\x07\x72\x28\x59\x01\x8d\x23\x81\xf3\x77\xfe\x32\x8c\x53\x95\x12\xc2\xca\x9d\x7b\x95\x10\x36\x31\x7b\xaf\x66\x51\xc2\xbb\x72\x35\x8b\xe4\xdd\x55\xb8\xe3\x48\x1a\xe7\xa5\xaa\x34\xce\xeb\x97\xda\x9b\x1e\x29\x51\x69\x62\x32\x5f\x65\x26\x4d\x00\xdd\xd5\x94\x4b\xec\xd4\x57\xf9\x43\x13\xb6\xcf\xe5\xd8\x7d\x18\x96\xe0\x65\x07\x19\xc6\xf1\x99\x04\xf1\x86\x41\x3b\x15\xb2\x38\xe4\x92\x55\x8c\xe2\x30\xc2\xab\x14\xa3\x38\x50\x2f\xcf\x12\xa6\x1b\x06\x94\xbd\x5f\xa2\x40\xe6\xe4\xfb\xa5\x6e\xc7\x0a\x7e\x4a\x42\x27\x1f\xec\xfb\x65\x18\xe7\x20\xf2\xfd\x32\x8c\x83\x03\xef\x97\x61\x9c\x91\x7c\xbf\x0c\xe3\x1c\xca\x3f\x4d\x06\xc3\x8f\xf1\x7e\xf9\xb8\xa1\x7f\xef\x5f\xf9\xb8\xa9\xea\x97\x17\x9b\x85\xff\x7e\x79\xb1\xd9\x32\x14\x94\x38\x8c\x49\xa8\xa0\xc4\x61\x4c\xc2\xa7\x8c\x51\x99\xa1\x53\x60\xe1\xc8\x9c\x1e\x3e\xa5\xe5\xcd\x78\xc0\x9e\x60\x21\xe3\x8b\x78\xb0\xc1\x81\x60\x48\x7e\x5a\xec\x19\xac\x56\x34\xe0\xc8\x90\xba\xa7\x2c\xae\x19\x56\x23\x61\xba\x91\x71\x2f\xbc\xab\x3f\x0f\x7e\xbd\x4a\xab\x0d\xde\xbe\xab\xb4\xda\x43\x7f\x56\x55\x10\xf8\x87\xb3\x65\xa0\xd4\x91\x9f\x70\x23\xb3\x81\x3e\xe1\x46\xbe\xaa\x4a\x3d\xc2\x14\x7a\xf8\x4e\x07\xaa\x17\x59\xfa\x78\x43\xee\xd0\x87\xa5\x3f\x4a\xd2\x8d\x78\x0a\x05\x34\x7b\xb8\x71\x06\x42\xd3\x9e\x17\xc4\xbf\xb2\x09\xbe\xa7\x54\x5c\xf8\xf6\x1f\xa7\x06\xa3\x68\xe8\x84\x57\x85\x93\xd6\x27\xbc\x42\x22\x23\x3f\xe1\x55\x81\xe4\x3c\x4e\x0d\x46\x71\x7e\x58\x82\xa6\x68\xf1\xf3\xb5\x12\x82\xfe\xec\xe0\x56\x82\x66\x6c\x71\x2f\x74\x09\xb0\x9a\x81\xb3\xb4\x04\x58\xcd\x40\x40\xa3\x28\x6a\x71\x10\x8f\x5d\x82\x90\x10\x99\x8b\x12\x94\xda\x12\x65\x69\x4f\x31\xe2\x5f\xf7\x3f\xb0\xfd\x22\x6d\xc0\x51\x7c\xba\x16\x89\x01\x8e\x72\x68\x92\x98\x46\xf1\x8d\xa9\x04\x31\x0d\x94\xa2\x3d\x55\xc9\xf7\x15\xa5\xe8\x12\x94\xc9\xb1\xfa\x4e\x54\x82\xd2\x35\x56\x67\x29\x25\x08\x42\xab\xbb\x28\x4b\x50\xba\x46\xf4\x31\x4a\x50\xba\xc6\x9a\xe8\xbb\xd2\x17\x56\xe3\x57\xa5\x2f\x24\x54\xbb\x04\x91\x96\x9a\xb9\x91\xe0\xb7\x66\xfa\xae\xbc\x81\xb5\xd0\x66\xe5\x0d\x44\x3d\xa3\x04\xe5\x0d\x44\x3d\xa3\x04\xb1\x94\x5a\x69\x95\x88\x47\x6d\xdc\x48\xf4\xa0\x76\x3a\xa8\x2c\xf0\x78\x86\x4b\x50\x16\xf8\xda\xb9\x91\x16\x6f\xf5\x85\x50\x82\x16\x6f\x1d\xb4\x4a\x29\xd4\xeb\xe4\x5a\xe5\x3d\xaf\x8b\xa7\x29\xb6\x80\x76\x74\x91\x80\xe1\xa8\x8b\xfb\x2a\xef\x79\xd5\xc3\x15\x0e\xd4\xc5\x53\x50\x66\x73\x7c\xce\x45\x81\xa3\x03\x9f\x73\x09\xda\x23\xea\xa5\x47\x53\x37\x7a\xfc\x79\xea\x46\x8f\x3f\x0b\xf6\xab\x9e\xef\x52\x9a\xb9\x40\xab\x88\xe8\x1b\x78\x95\x8b\xd4\x0e\x47\x33\x6a\x3e\xbf\xcc\xb3\x3c\x14\xad\xa9\x56\xa8\x4a\xd0\x8d\xa3\xb8\x44\xa5\x9a\xc5\x33\xec\x29\x61\xf8\x7a\xf9\x4a\x8f\x1a\x0b\x41\x9a\x7e\xa3\xf9\x5b\x0c\x25\x6a\xc6\x22\x64\x51\xa2\x92\xab\xe2\x55\x2e\x51\xe9\x53\x91\x92\x2e\x51\x73\xb2\xb9\x93\xc7\x13\xc6\xf8\x57\xa6\xb7\x54\xfb\x06\xb1\xd9\x25\x8a\xdf\x36\x37\x2a\x4b\x54\x4e\xc9\x1e\x68\x86\x72\x4a\xe2\x28\x2e\x51\x33\xa7\xbb\x31\x5e\xa2\xf8\x6d\x77\x1b\xb3\x44\xf1\x5b\x74\x2d\x8a\x42\x43\x47\x4f\x74\x5f\x94\xa0\x1b\x5d\xd0\x2e\x8f\x67\xb8\x48\xb5\x6f\x74\x0f\x0c\x2e\x51\xd9\xd8\xbb\x9f\x73\x15\x85\x77\x8e\xde\xb9\x91\x60\xbf\x6b\xe8\xb4\xcb\x13\x35\x5d\x14\xfc\x39\xfa\xe0\xbe\x78\xe0\x07\x41\xd4\x25\x6a\x32\xe0\xe0\xf5\x44\x35\xfe\x75\xd1\x5f\x3d\xfd\xce\x14\x55\x00\xe7\xe8\x9b\xaa\x7e\xc9\xca\x1d\xd8\x4b\xfc\x65\x18\x3f\x0c\xce\x2f\x4b\x38\xb3\x2e\x1e\x8d\x06\x30\x12\x8f\x7a\x74\x69\xf3\x51\x9b\x1f\xcd\xb8\x4a\xc7\xa9\x71\x16\xec\x0f\x06\x56\x41\x98\x83\x88\xeb\x92\x34\x91\x86\xbf\xee\x5d\x92\x18\xe0\xf0\x6d\xae\x24\x31\xc0\xe1\x4c\xac\x24\x65\x07\x26\xcf\x7b\x49\x4a\xf8\x4b\x26\xf7\x92\xf0\x62\x0d\xe2\xb1\x4b\x12\x3f\x1c\x8d\xaa\x34\xeb\x46\xa3\x19\x9a\x75\xc3\x2d\x14\xcf\x79\xe3\x5f\x41\x86\xa4\xa4\xbd\x83\xe9\x9d\xc4\x3d\x06\xcf\x28\x09\xfa\x08\xde\x2e\x49\x76\xd3\x38\xdc\x48\x84\x61\xb0\x7e\x15\xde\x39\xc6\xa1\x2a\xa1\x19\x9a\x18\x25\x09\xcd\x86\xd3\x89\x92\x78\x6d\x61\xb8\x26\xc6\x7f\x84\xfd\x24\x58\x98\x89\x6a\x35\xe5\xa6\x33\xd8\x22\xc9\xbe\x31\x8d\xaf\x9a\x18\x33\x73\x53\x3c\x96\x63\x6a\x54\xb7\xae\xad\xb4\x9f\xc8\xde\x41\x0e\x50\xcf\x8e\xe3\x5f\x99\xbd\x12\xf4\x1b\xb3\xeb\xcf\xaa\x4a\xe3\xa6\x4c\xf4\xf8\x7e\x4b\x52\x26\xfa\x39\xb9\x91\xe6\xc9\x5c\xfa\x75\xeb\x2b\x37\x12\x79\xc0\x43\x5b\x24\xca\x37\xa6\xbf\x82\x54\x92\xe0\x68\x6a\xa0\x94\x52\x1c\x97\x6c\x51\x00\xe7\x98\xc0\xa0\x69\x8e\x11\x6e\x5d\x4c\xe8\xb4\xdc\x18\x2f\xa6\x69\xb3\x9c\xfc\x17\xd3\xb4\x59\x2e\x56\x50\xec\x97\x27\xda\xcf\x25\x8b\xfd\x72\x3d\xbb\x37\xa9\xd8\x2f\x6f\x72\xe6\xcf\xda\x5e\x57\xe1\xd7\x5f\x0a\x63\x8f\xda\xf2\xdc\x39\xfe\xd5\xcf\x32\x8a\xb5\x5f\x32\x6b\x7f\x28\x26\x0c\xc1\x8f\x5a\x4c\x26\x24\xd1\xc8\x45\x81\x94\x63\xf9\x59\x7f\x91\x5e\xdc\x58\xcc\x22\x9b\xbf\x4c\xca\xfe\x14\x24\x1f\x37\xd6\xe5\xbe\xfb\x97\x3a\x99\xfe\xea\x29\x6c\xa7\x9d\x45\x11\x8c\x63\xab\xfb\xa2\x70\xdb\xf4\x55\xd9\x81\x8d\x0e\xea\x29\x6c\xa3\x55\x5a\xcb\xdb\x18\xe7\xa7\x7c\xc7\xac\x56\x7b\xbf\x64\xd6\xde\x66\x05\x25\x8e\xcd\xc6\x9d\x65\xbe\x6d\x37\xa3\x3c\x6f\x0d\x5f\x17\x5f\x75\xad\xfb\x8b\x8a\xe2\x0c\xc7\x66\x01\x2a\xce\x70\x6c\x86\x2e\xff\x92\x77\xb3\xa1\x28\xec\x70\x6c\x77\x1f\x95\xfc\x4b\xc0\x0d\xb3\xca\x5a\xcb\x08\x68\x94\xac\xb5\xbc\xa7\xaa\xd2\x7d\x99\x93\xf9\x97\xfd\xf9\xd1\x05\x6d\x28\xc7\xbd\x67\x45\xd2\x64\xe3\x44\xaa\x92\x9d\x78\xa0\x40\x59\x8e\x8b\xe3\x0c\xb6\x64\xc1\xfe\x61\x1d\x65\xbc\xb2\xe3\x74\xaa\xd2\x4a\x39\xac\x14\x05\x9b\x8d\xe3\xef\xa5\x96\x2c\x7e\x7b\x36\x1d\xd4\xc0\x1e\xc0\x59\xe1\x64\xe3\x78\xbc\x5c\x91\x90\xd7\x20\x9a\xb7\x14\xb9\x9e\x2e\xcf\xb7\xc8\xf5\x74\x69\x55\xd1\x8c\x45\xe7\xa1\x14\x11\x42\x9c\xa5\x45\x4a\x5f\x83\x34\xb5\x9e\xc7\xc5\xbf\x66\x7e\xd5\xf4\xbe\x7e\xee\xec\x69\x5d\xfc\x6b\xd1\xaf\x55\x5f\x2b\x5f\x9b\xbe\x0e\xbe\xaa\x91\x45\xd7\xea\x46\xee\x3c\x2c\x45\xa9\xb1\x49\x7c\x59\x8a\x52\x63\xdf\x46\x33\x44\x17\xf1\xbb\x96\xa2\x61\x47\x41\xa2\x48\xad\x6b\xa0\x02\x51\x8a\x88\x19\xc2\x0e\xa5\xc8\x6f\x73\xd9\xc8\x24\xb1\x35\xee\xa5\x91\x43\x19\x7e\xd9\xb9\x14\xb8\x35\x2e\xe4\xaa\xc8\x00\xbf\xa0\x8a\x42\xb3\x06\x81\xc1\xa5\x68\xf3\x7d\x81\xfb\x6a\x49\x3e\xf7\x30\x94\xa2\x25\x89\x3a\x74\x29\xeb\x97\xee\x99\xfb\x0a\x90\x1f\xd4\xba\x70\x66\x34\x5c\x14\xe2\x3f\xc2\x7e\xd9\xba\x29\xeb\x51\x62\x5c\xe3\xb1\x1e\x25\xc6\x35\x1e\xb4\xa4\x88\xd1\x3d\x96\x67\xd1\xbe\xfc\x2a\x83\x2c\x83\x0b\xd1\xe6\x52\xf1\xb2\x3e\x12\x40\x14\x49\x66\xbd\x09\x68\x54\xdc\x38\x6f\xd2\x60\xa5\xe9\x4f\x17\xb3\x48\x69\xfa\x4f\xcf\xe1\x20\x79\x53\x94\xaa\x5f\x45\x83\xa2\xf4\xef\xa2\xcd\x5d\x80\xe2\x84\x54\x48\x51\xca\x7e\x17\xf9\xf3\xaf\x85\xaf\x59\x55\x56\xfd\x99\x36\x60\x22\x25\xa2\xc7\xcb\x2f\x65\xff\x5b\xaa\x8a\xec\xb7\xbc\x0c\x5b\x14\x94\x65\xbc\x76\x5a\x14\x94\x65\x35\xe8\xd7\xad\xaa\xd4\xaa\xc3\xd7\xa1\xfb\xfa\x30\x1a\x2f\x76\x15\xa5\xec\xb7\xa1\xa1\x50\xca\xfe\x07\xf3\x97\x7a\x98\x21\x81\x55\x94\xb2\xdf\xc6\xd1\x57\x72\xe3\x4e\x75\x10\x63\xcd\x06\x73\x55\x49\xf9\x8d\x2c\xe7\x45\x49\xf9\x6d\xeb\xbe\xac\x6b\xdb\x57\x7f\x9e\x34\x72\xd2\x48\xd6\xf5\xe9\xb9\x1c\x74\x67\x4a\xd5\xda\x46\xff\xba\x28\x6d\x7f\x22\x05\x6c\x51\x6c\x59\xc6\x53\x5c\xa4\x6b\x96\x23\x74\x5f\xb9\xf9\x13\xe1\xf5\x45\xb9\xf9\x33\x7e\x9c\xa2\xdc\xfc\x09\x59\x96\xa2\xb8\xb4\xd3\xf3\x3c\xa7\xeb\x7a\xf2\x79\xf2\xda\x7d\x91\x2e\x5a\x36\x30\x58\x19\xf8\xd3\x65\xe7\x57\x06\x7e\x8f\xbc\xf7\xaf\xde\xb3\x4c\x5e\xac\xa2\x0c\xfc\x99\xdc\x41\x45\x19\xf8\x73\xcd\xaa\x4a\xb3\x18\xfc\x96\xe2\x5a\x6e\x49\x2d\x7b\xfa\xca\xaf\xc0\x4c\x6e\x8d\x6b\x81\x99\xdc\x30\xdf\x95\x81\x3f\x5d\x4c\x0d\x65\xe0\xcf\x43\xb3\x0f\x53\xc3\x03\x23\xfc\x6b\xd1\x57\x5d\x4b\x9b\xc7\xa0\xfb\x78\xd6\xf3\x18\x74\x50\x69\x8d\xc7\x52\x55\x47\x5f\xe9\xa0\x1c\x4e\x6f\xa9\xe6\xc7\x68\x96\x70\x0e\x3b\xb8\x02\xf6\x32\xaf\xf9\x14\x45\xe8\xe5\xdd\xa8\x0e\x9a\x91\xd1\x8f\x2a\xca\x59\x9f\x8f\x1e\x5d\xfd\xd5\x4e\x53\x00\x90\x40\x76\xe6\x52\x01\x90\x10\xb0\x6a\x15\x38\x97\x62\xa2\x2a\xdc\x4a\x29\x40\x8d\x24\xd1\x16\xc8\x25\x5a\x24\xd1\x16\xc2\xd5\xd7\xc4\xaf\x7e\xe0\x5e\x1a\x53\x3d\xe0\x21\x2f\x0a\x60\x0b\x78\xb9\x8b\x02\xd8\x42\x80\xb1\x48\xde\x2d\x44\x7c\x0b\x8d\x85\x10\x02\x66\x5d\x63\x21\x84\x98\xf4\xeb\xd0\xaf\x87\xaf\x93\x5f\x8f\x6e\xb4\xf4\xeb\xe6\xeb\xe6\xd7\xac\x3f\x1f\x75\x5f\xcd\xb8\xba\x36\xf1\x55\xa3\xf1\xf8\x9a\xd5\x5f\x10\xb2\x65\xf5\x97\xed\xa0\x65\xf5\x97\x4d\xb9\x65\xf5\xf7\xd1\xa3\xac\xfe\x32\x89\x1b\x4b\x24\x44\xb6\xec\x96\xd5\xdf\xa3\xaa\x9a\xbe\xd2\x66\x96\x07\xcf\xe8\xbf\x6d\x07\xa5\xfe\xff\x76\x83\x96\x7f\x23\xa1\x6a\x18\x89\x54\x78\x20\x2c\x9c\x78\x31\x02\x5a\xfe\x8d\x84\xda\x7b\xf4\x55\x2d\xd2\x48\xfc\x9a\xcf\x48\x24\x16\x5d\x63\xe1\x04\x12\xe1\x96\x56\x34\x2f\x58\xce\x8a\x28\x0c\xc1\xa3\x02\x8b\x22\x0a\xff\xfd\x6b\xd6\xb5\xdc\x97\x85\x63\x41\xad\xc2\xf7\xf3\xef\x3f\x03\x81\x21\xeb\xbe\x4a\x1e\xce\x1a\x6c\x1c\x67\x19\x67\x5f\xa5\xb1\xe8\x2c\x64\x9e\x0f\x8b\xee\xdf\x5f\x37\x5f\x35\x1a\x2c\xba\x7f\x7f\xbd\xfa\xaa\xaa\xde\xff\xf6\x95\x05\x67\x21\x33\x1a\x18\x6d\xc6\xc9\x58\x51\xe2\x71\x4f\xad\xe1\x5f\x95\xf0\x1c\xeb\x50\x89\xc7\x3d\x01\xc6\xff\x22\x15\x17\x5f\xe9\x02\x6e\x06\x0b\x5d\xd7\xaa\xbf\x43\x35\xab\xbf\x93\x46\x56\xf5\x77\xea\x5a\xf5\x77\xaa\x66\xf5\x68\xe9\xeb\xfd\xdf\xbf\xaa\x47\xac\x6c\x65\x29\xb7\x00\xa3\x54\xa8\xa6\xfd\x1e\x59\x53\x8f\x30\xe8\x95\xa5\xdc\x93\x58\xf8\x57\xf5\xe8\xd2\x8c\xa6\x1e\x5d\x5d\xab\x1e\x3d\xfd\xaa\x1e\x69\x22\x35\xf5\x08\x4a\xd5\x9a\x7a\xa4\x35\xd4\xd4\x23\xd0\x48\x49\xcb\x13\x27\xea\x45\x81\x9c\x09\x76\x56\x75\x20\x99\x87\x93\x85\x16\xfb\x7f\x9f\x66\x2d\xf6\xfc\xdf\x26\x61\x93\x87\xe6\xdf\xbf\xd6\xff\x36\x09\x5b\xec\xed\xdf\x93\xf0\x7f\x26\x5c\xff\xef\xfc\x7f\xfe\xef\xfb\xbf\xfe\x42\x08\xf1\xbf\xbe\x0b\xbf\x09\xf2\x5b\x00\xc1\x5d\x94\xdf\x47\xfa\x2f\x4f\x6d\xaf\xc2\x43\xe1\xfd\x2f\xcf\x86\xdf\x29\xe4\xba\x6f\xf8\xbf\xc2\xed\x85\x8d\x3a\x1b\x97\x3b\x45\x0c\xe1\x1b\xf4\xef\x63\x52\x27\x97\xb7\x45\xe1\xe6\x9f\x95\x42\x6e\xd4\x2e\x85\xdc\xbd\x73\xf9\x37\x0c\x7f\x29\x39\xdb\x0f\x9e\x1b\xe5\xfb\x98\x5e\xe8\x44\x22\x84\x41\x9d\xdf\x60\x7f\x85\xdc\x7d\x72\xf9\xf4\xcb\x79\xbf\x29\x84\xcf\x84\x61\x73\xf8\xbf\xfe\xde\xbb\xdc\x68\x4d\x2f\xfc\x38\xeb\x5f\xe2\xd5\x92\x10\xd6\xf5\xc2\x6f\xc3\xf8\x4b\x68\xc8\x04\x77\x30\x7e\xe8\x54\xbc\xb0\x71\xa3\x5b\x29\x7c\x5e\x58\xb9\xfc\x31\x9e\xef\xbb\x91\x25\x0d\xf2\xe3\x46\xcf\xff\x19\xf9\xa7\xa7\x2c\xf9\x3e\x0a\x85\x95\xc2\x4a\x61\xf7\x76\xfa\xf6\x14\xfc\x85\xf4\x0f\xbc\x13\x85\xc5\x0b\xbf\xc5\xf9\x17\xe2\xaa\xff\xf5\x2f\x94\x09\x71\x35\x2f\xf4\x1b\x69\xed\x85\xc4\x8d\x52\x60\xe4\x1d\x61\x43\x0a\x3e\xf2\x29\xfa\x07\x62\xfb\xc1\x13\x4f\xfc\x05\x77\x3f\xfd\x05\xf3\xc5\x19\xdc\xfb\xf4\x17\x3c\xed\xc4\x5f\x80\x06\x05\xcf\x3a\xf1\x7d\x6c\x2f\xdc\xfc\x33\x73\xa3\x6f\x77\xf9\x7b\x2f\x72\xa3\x9c\x29\xfc\x2e\x7f\xd7\xcf\x70\x83\x67\xa9\xf8\x3e\x1a\x85\x83\xc2\x4e\xe1\xa0\xf0\x51\x38\x29\x5c\x14\x1e\x0a\x37\x85\xcf\x0b\xe9\x7b\x2a\xdc\xfd\x43\xf4\x7f\x4d\xb0\x54\x12\x85\xc6\xe5\x8b\x42\x9a\x54\xd4\xa4\x46\x21\x77\x2f\xba\x3b\x3d\x2a\xdc\x9d\x25\xc3\x7b\x04\xbe\x93\x7c\x85\x3d\x50\xc8\x8d\x3a\x37\x62\x46\x66\xa3\x70\xd1\xce\xfb\xfd\xd3\x38\x25\x0f\xe9\xf2\x4f\x26\x03\x89\x4d\x83\xf1\x8c\xec\xe3\xeb\x7f\xa9\xb8\x19\x1e\x2c\xf9\xe3\x70\xed\xfe\x6f\xc1\x7a\x37\x73\xa6\x2d\xde\xdb\xce\xeb\x8a\x61\x05\x9f\xf3\x2b\x7c\x1d\xab\x9c\x8e\x85\x13\x7d\xc9\x78\x1e\xbe\xbf\x9e\xdc\xb8\x8b\xee\xde\xff\x3e\xbe\x5a\x7a\x76\x10\x89\x71\x7f\x95\xc5\xf8\x19\xf6\x7f\x3d\x3a\x48\xc5\x34\xbe\x6f\x31\x8d\xaf\xb9\x25\xf9\xe3\x88\x9e\x06\xe2\xfb\xf8\xaa\xee\xcb\xbd\x61\xd1\xe2\xa2\x70\x7b\xa1\x9b\x2d\xd1\x7c\x2e\x45\x8b\x7e\xa3\xe5\x87\xb9\xd1\x1d\x56\xdf\x47\xf1\xc2\xa3\xc2\x46\x61\xa7\xb0\x53\x38\x29\x5c\x14\x72\x77\x1f\x9e\xc8\xb8\xf4\x75\xf9\xa7\x4f\xcc\xe8\x49\x26\xfe\x3a\xef\xad\x47\x7f\x79\xf9\xfb\xf8\x2e\xe8\xf8\x8b\xa2\x19\x4d\xf2\x69\xda\x77\xa4\x9d\x99\xcb\x7d\x2a\xf6\x1d\xb9\x3c\x73\x77\x9f\x75\x7d\xbb\xb0\x52\xb4\x4c\x9d\x99\x3a\xdd\xed\x10\x2d\xab\x4e\xef\xe6\x36\x7a\xe4\x0f\x27\x7a\xde\x88\xaf\xb0\x78\x21\x23\x6f\x3e\xf2\x25\x39\x9a\xc7\xcf\x8c\xf8\x0a\x3f\x83\xfc\xaf\x34\xd5\xf9\xaa\x17\x3e\x6f\x12\x49\x43\xa2\xbf\xfa\xfa\x7d\x7c\x8f\xa3\xa3\x81\x16\x5d\xab\xff\xfb\xf0\xa1\x23\xff\x75\xcc\x1f\x7d\xfd\x3e\xcc\x0b\x3d\xf2\x21\x66\x1f\x9e\xe8\x9a\xfb\x7f\x9d\xe4\xd1\xd1\x9d\x42\xdf\x87\x77\x93\xb3\xdd\x98\x2b\x75\x56\xaf\x33\xfb\x66\x1f\xf3\xe5\x9f\x77\xf9\x04\x73\xf6\x1f\x8b\x4f\xb7\x58\x1c\xb3\x4a\xf6\x77\x00\x63\x89\xfe\x88\x4b\xcc\x5e\xe8\x47\x4e\xb1\x24\x1f\x90\xf2\x99\xd2\x7f\x05\x71\xad\x58\xfc\x81\x47\x7f\x97\xef\x2b\x1c\x14\x2e\x0a\xb7\x17\x4e\x0a\xbd\xd5\xd1\xdd\x43\x7f\x85\xd7\x4c\x62\x71\x9c\x88\xc5\x9f\x51\x41\x84\x2a\x96\xe2\xe3\x59\x8a\x8f\x67\xf1\x60\xbf\xe8\xaf\xe9\x7d\x1f\xde\xce\xe2\xa1\xf8\xb1\xf8\x1e\x17\x8b\xef\x71\xa5\x3c\xea\xf4\x3d\x2e\x16\xdf\xe3\x4a\x71\xd3\x3e\xba\x1f\xe6\xfb\xf0\x7f\xd6\xc6\xe5\x93\x6e\xfa\x2e\x53\x00\x96\x58\x96\x3f\x23\xf7\x98\xfc\x95\xed\xe7\xce\xd1\x5f\x4f\xfb\x3e\xbe\x46\x94\x13\xb8\xd1\xf3\x67\xe4\xaf\x81\xfd\xb5\xc4\x78\xd6\xe0\x85\x35\x50\xe8\xc4\x22\x56\xd6\x91\xfb\x17\xfe\x06\xb2\xd8\xd1\xcd\xfc\xef\xe3\x78\xa1\xef\x5c\xd1\xad\xfb\xbf\xe8\x66\xfc\x57\xe8\x83\x5c\x99\xb4\x6e\x5c\xfe\xd5\xe0\x10\x14\x2b\xa3\xe4\xd6\xdb\x5f\xe5\xdd\xdb\x58\xbb\x8f\x67\xed\xdf\x93\x1e\xfe\x6e\x8b\xf3\x09\xe8\xc3\xff\x40\x28\x62\x65\x60\xaa\x0f\xcc\xa8\x81\x1b\x02\x1b\x75\x64\x0a\xe9\xc4\x68\x14\x0e\x2f\x8c\xb4\xc2\xf7\xf2\x58\x1d\x32\x47\xf5\xd7\x47\x62\xf5\x8d\x3a\x56\xdf\xa8\xeb\xae\x34\x8d\x71\xf5\x37\xa7\xfe\x2a\x7a\x0c\xb1\x1e\x9f\xd1\xf5\x7c\x55\xd7\xa3\xee\x32\xae\xd5\xc7\xb5\xf2\xee\x7e\x6c\xc1\x7b\xd6\x7c\x1b\xad\xcf\x1d\xde\xd1\xed\x82\xbf\xe8\xf6\xc0\xdf\x08\xac\x51\x67\xf8\xdf\x47\xf1\x42\x27\xd8\xd1\x89\xdf\xf7\xe1\xf3\x14\xf9\xf0\xd8\xba\xcf\xa9\xd6\x7d\x4e\x4d\xc6\xb5\x39\x93\x88\xcd\x61\x7f\x4c\x37\x6a\x63\x03\x5c\x9b\x83\xeb\x98\x4e\x08\x63\xdb\x95\xc2\xe6\x85\x7e\x44\x16\xdb\x9e\x14\x72\xb9\x5b\xdc\xb1\xed\x43\xe1\xa5\xf0\x51\x48\xe3\x8f\x37\x9e\x08\xf4\xd8\x7c\x24\x62\x3b\x5f\x73\xdb\xf5\x9d\x21\xb6\xb3\x29\xbc\x5e\xb8\xb9\xfb\xa5\x49\x37\x52\xc8\x8d\x2e\x4d\xba\xcd\x0b\xaf\xfe\x49\x93\x7c\xdd\xb7\xeb\xa4\x3a\xb6\x4b\x9d\xf7\x78\xe1\x63\x94\x1e\x75\x3e\xea\x64\xf2\x36\x7f\x0e\xb1\xbd\x6f\xb0\x1a\x74\x26\x36\xe0\xad\x39\xbc\xb5\x17\x18\xa5\xc7\x20\x3b\x6f\x6a\x2f\xd0\xa4\xc7\x78\xbe\xed\x85\xa0\x78\x67\x95\x74\xa7\x48\x0d\xf5\xd9\xd8\x79\xc4\x3d\xf0\x4f\x00\xbb\x3b\xc7\x89\xdd\x91\xb3\x3d\x3f\x50\x8a\xfe\x6e\xd3\xf7\xf1\x3d\xe9\x96\x79\x1c\xdd\xa9\x47\xec\x0e\x29\x2d\x33\x74\x1d\x68\xef\xcc\x10\x54\xb2\xa2\xbf\x84\xf4\x7d\xf8\xac\xeb\xe0\x7d\x67\x86\x74\x9f\x21\xb5\x57\xea\x1c\xb4\x73\xf8\x54\x1c\x6c\x2c\x9d\xe9\xdd\x99\xde\x03\x70\xed\xcb\x9f\xa6\x6b\x6b\xff\x55\xde\x9f\x88\x9d\xe9\xdd\x99\xde\xab\xd3\xcd\x33\x29\x74\x18\x5e\x4c\x9b\x7e\xe8\xa6\x3f\xe2\xba\x40\xdc\x7e\xe9\xa6\x33\xd6\x8e\x02\x6e\xec\x3c\xe2\xee\x8f\xb8\x3f\x20\xb3\xf3\x88\xbb\x3f\xe2\x8e\x1a\x6e\xf4\x77\x8f\xbe\x0f\xdf\xd6\x9e\xee\xce\xd3\xec\x8f\x3a\xdd\xd7\x14\xfd\xc5\xa3\xef\xe3\x1b\xf9\x5a\x98\x21\x03\x68\x1f\x0e\xed\xb5\x7a\x80\x79\x1c\x80\xd6\x70\xd0\xea\x87\xa1\x1b\x6c\x56\x83\xcd\x0a\x15\x93\x38\x2c\x53\x58\x28\xec\x14\x2e\x0a\xfd\x72\x24\xa3\xe2\x60\x4b\x1f\x4e\x39\xfb\xd8\xdc\xdd\xf7\xf2\xe8\x2f\x0d\xfd\xb5\xd4\x28\x2c\xfc\xd3\xed\x9d\xba\x23\x75\x36\x1a\xef\x66\x48\xc7\x2a\x8c\x2e\x2f\xfd\x7d\xf8\x80\xc4\x40\x37\x01\xab\x31\x28\xf4\xa3\x80\x38\x86\x3f\xb8\x31\x9d\x50\x44\xf7\xc5\xc5\xb1\xb8\xfb\x72\xac\xeb\x2e\x74\x1a\x07\xc8\x30\x40\x06\xb2\x28\xc4\xc1\x42\x18\xbe\x10\x6a\x52\x37\x1f\xa3\xf4\x7c\x71\x0d\xb6\xf4\x99\xfc\x9f\xd3\x99\x52\xeb\xcc\x90\xc9\x56\x39\x7d\x58\x5b\x77\x83\x2c\x4e\x28\xd2\x4c\xcf\x0b\x9d\x59\xc7\xe9\x1b\x67\x9c\xe6\xd3\xbb\xbb\x9f\x34\xba\x3a\xf2\xf7\xe1\x10\x74\x1f\x37\x62\x67\x98\xbe\x33\xb4\xc6\xda\x9c\xec\x9f\xd3\xf7\xcf\xd6\xfc\x90\x24\x4e\x37\xf2\xe2\x6c\xbe\x8e\x1a\xb8\x34\xe1\x38\x73\xf8\x92\xc9\xee\x19\x88\x73\xf0\x4f\x76\x84\xdc\x69\xe7\xa0\xce\x51\x29\xe4\x72\x06\x79\xba\x3d\x37\xc4\x1d\xfc\xd5\x99\xef\xc3\x01\x30\xbb\x51\x12\x27\xdb\xaf\xbf\x0b\xf3\x15\x72\xf9\x6c\x14\xfa\x86\x42\x72\xa7\x38\x61\x58\xd3\x19\xd6\xc8\x8b\xbb\x2f\x07\xab\xb9\xb8\xbb\x1f\x54\xc6\xc9\x83\x9b\x3c\xb8\x7c\xe8\xe6\xa2\x49\x3c\xb8\x7c\xe8\x11\x90\x3e\x77\xa2\xf0\x52\x98\x29\xf4\xbd\x83\xd7\x6a\xe3\x04\xe7\x27\x38\x9f\x99\x60\xfe\x82\xcb\xf7\x41\x9d\x57\x97\xd3\x4d\x47\xf6\x41\x1e\xa7\xe8\x7a\xcf\xdf\x87\x51\x48\xe3\xc1\xf9\xe9\x38\x3f\x4a\xa0\x9b\x67\x50\xc8\xee\x1d\x78\xee\x87\x1b\x39\x40\x8c\xc2\x4c\x9e\x87\x67\xe4\x66\xc8\xe0\x8d\xde\x38\x2f\x8f\xc3\x91\x61\x94\xc8\x3f\x2f\x75\x5e\xea\x04\x54\xe7\xa5\x9d\x0e\x10\xa3\x78\xc4\x4d\x9c\x80\xff\x7c\xd4\x69\x34\xe9\x31\x20\x0e\x17\xa3\xd8\xfd\x47\x42\x31\xd9\x04\xe6\xe3\x86\x99\x21\x7c\xdc\xf0\x71\x43\x3f\x51\x88\xae\x6d\xfd\x7d\xf8\xa6\x5a\xd8\xe7\x17\x3b\x83\x2b\x5b\x7f\x85\x95\xc2\x46\x21\xa3\x55\x74\xf9\xa4\xd0\x67\x4a\x71\xd7\x60\x5c\x0e\x61\x71\x39\x73\x1d\xc5\xbd\x09\x71\xc5\x4a\x21\x97\x83\xa3\x0b\x3e\xba\x1c\x91\xc6\xf5\xf3\xf5\xb8\x1c\x83\xe2\xca\x3e\x06\xd8\xb4\x71\xf9\x36\x13\x97\x1b\x19\x03\x4b\x35\x2e\xf0\x69\xb9\x91\x31\x2e\x7c\x64\x39\x8f\x8d\xcb\xf9\xda\xb8\xee\xf9\x8b\xab\x50\xa7\x9b\xaf\xe3\x7a\x50\x4e\x5c\x2c\xdc\x55\xf8\x67\xe5\x72\x58\xfb\x72\xd6\xde\x0a\xfc\x7e\xb1\x9e\xfc\x55\x9e\xbf\x36\xe1\x79\xeb\x50\xa7\xcf\xa9\x1e\x3c\x0c\x28\xae\x4b\x3b\x7d\x1a\x8c\xce\x1a\xfd\x0c\x2c\x2f\x04\xc9\x58\x8e\x8b\xed\x62\xf9\x76\x31\xc8\x34\x13\x17\x8c\x60\xf9\xdc\x18\x7d\xd2\x4d\xf6\x90\xe5\x7b\xc8\xe8\xee\xcd\x8a\x9e\xf5\xff\xfb\xf0\x8d\xa5\xc2\x1d\x5c\xe7\xfa\x2f\xba\xbe\xf5\x5f\x27\x59\x51\xdc\x8e\xd4\x71\x57\x76\x6f\x26\x83\xbf\xc7\xf2\x7d\x38\x10\xf2\xb2\x59\xdc\x70\xb1\xed\x5c\xac\xc9\x28\x75\x69\xe9\xef\x83\x7f\x5e\xee\x3e\x29\x9c\x58\x56\xf0\x91\xed\x78\x11\xb7\x23\x44\x4f\x10\x8a\xbd\x7c\x40\xf6\xf2\x2d\x28\x19\x37\xf2\x65\x1c\x5d\x5b\xfa\xaf\x3d\x50\x67\xb3\x46\x3d\x09\xff\x5f\xdb\x00\xcc\x66\xf7\x76\x9d\xe9\xbf\xc6\x19\x61\x74\xb9\xe7\xef\xc3\x87\x2e\x32\x93\x0f\x93\xd6\xdf\x41\xf9\x1b\x91\xbe\x1f\xa6\xa2\xa7\xdf\xff\x1b\x11\x7e\xe7\x6f\x8f\xfc\xc5\xe3\x74\x66\x90\xd1\x33\x1e\x37\xa9\xa2\xbf\x1d\xf2\xd7\x8f\xfb\xe8\xe3\x71\xfb\x3a\xfa\x4b\x21\x7f\xfd\xb0\x2b\x1e\x2c\xea\x83\x45\x7d\x20\xd1\x9e\x1d\xff\xfb\xf0\xfd\x53\xf3\xf3\x64\x9a\xe4\x4c\xa9\x5f\x58\xf0\xc1\x34\xf2\xb7\x16\xfe\x06\xb2\xf8\xf1\xb0\x7f\x9e\x06\x85\xa7\xef\xae\xe3\xfc\x7d\xf8\x82\xdd\xfa\x27\x6c\xe8\xb0\x09\x6c\x2c\x96\xc3\x26\x70\xd8\x04\xb6\x7b\x8e\xe3\xc1\x56\x38\xa3\x53\x38\x29\x1c\x14\x52\x27\xb3\xee\xb0\xfd\xba\x50\xf4\xdf\xd8\x4c\xb0\x33\xa9\x73\x52\xa7\x46\x89\x9d\xe1\x4c\x2e\x5f\xdc\x7d\x72\xb9\x5b\x15\x83\x34\x24\xf1\x2c\xa3\x90\xcb\x37\x4d\x62\x67\x38\xeb\x50\xa8\x7f\xfa\x4c\x3e\xbe\x17\x8c\x8d\x4d\x7b\x36\x8f\x63\xd3\xa4\xc3\x20\xb3\x33\x1c\x76\x86\x7d\x18\x25\xc8\xbe\xbf\xeb\xf0\x37\xda\x60\x90\xa1\x72\xe7\x40\xf6\x21\xe6\xe7\xd1\x77\x50\xf1\x62\xd3\x1e\x50\xf1\x80\x8a\x17\x22\x79\x31\xc8\xaf\x1b\xe4\xe3\x42\xbb\x6e\xa4\x30\xfa\xdd\x9f\x7b\xd0\x52\xf2\x3a\x93\x07\x1f\xfd\xf5\xe9\x77\x4f\xe6\xe3\x99\x3c\xfd\xe3\xdf\xe8\xe4\x7a\x37\xa7\xaa\xc9\xd8\x54\x87\x93\x94\xe4\x29\x03\xbf\x0f\xcc\x17\x3f\xc4\x48\xd9\x2d\xd5\xe4\xf1\x2f\x7f\xed\x38\x77\x48\xd9\x77\xef\x94\xfd\xc1\x75\xb4\xc6\x92\x0b\x21\x7d\x1f\x82\x0b\x0a\x9d\x5d\xa6\xcc\x76\xc1\x39\x56\x72\x91\xa0\xef\xc3\x9f\x51\xf2\xa0\xf0\xe4\xd1\x1b\xdf\x07\xdb\x2f\xf9\xdd\x3d\x3d\xdb\x5f\x2a\xb0\x75\xe3\xee\xc5\xe1\x30\x79\x82\xb5\xbf\x61\x87\xcb\x27\xff\x74\x0e\xd0\x6a\xe6\x72\x5f\xef\xc9\x65\x69\xfe\x1a\xfa\x0b\xc9\xb5\x63\xbe\x0f\xef\x66\xf7\x23\xf6\xe4\xe7\xd3\xdf\x87\xc3\xaf\x32\xe2\x63\xaf\x26\x2c\xd4\x14\x49\x1b\xef\xd2\x1e\xdf\x07\xee\xc6\xcd\x3f\x9d\x49\xa4\xba\xf0\x05\x93\xb9\xdf\x33\x57\x7d\x1f\x05\x47\xb6\x0a\x9b\x17\x3a\xe0\x26\xb2\x24\x26\x97\xed\xf8\x4b\x95\xe7\x47\x30\x77\xaa\xfe\x18\x53\x75\xea\x98\x90\xd8\x4e\x2e\xe1\xf1\x7d\x5c\x3a\xe6\x7d\xf7\x44\x56\xdf\x87\xb7\xb3\x90\xdd\xbf\xf9\x7c\x49\xcd\x77\x4a\x0b\xbe\xf9\xa7\xe6\x1b\x66\x6a\xd1\x7d\x97\x38\x1f\x53\xf3\xe7\x90\x9a\xfb\x78\xcc\xfc\x98\x28\x35\x9f\x60\xc9\x45\x41\xfe\xcc\x06\x37\x72\xaf\x63\x6a\xee\x1a\x34\xb2\x9f\xa6\x96\xf8\xa7\xc3\x93\x05\x37\x70\x53\x4b\xdc\x3d\x71\xf7\xc7\xdd\xdd\x72\x48\x2e\x25\xf2\xfd\x53\x85\xde\x77\x3f\x80\xfd\x7b\x37\x8f\x7f\x22\x14\xc9\x0f\x67\xbf\x0f\x77\xa7\x5f\x97\x95\x48\x7e\xea\xfa\x97\xfc\xe4\xf2\x2b\xf4\x64\xfa\x7e\x70\xf9\x7d\x4c\x2f\x74\xbf\x43\xf2\x83\xc6\xbf\xe4\x47\x79\x7f\xe9\xb9\x28\x50\xf2\xa3\xbb\xef\xe3\x6b\x4c\x26\x19\x7d\xf2\x53\xb7\xbf\xe4\xc7\x6b\x7f\xf9\xba\xb1\x97\xfc\xc0\xec\xfb\xa8\x5e\x98\x18\xad\x4a\x9d\xee\x77\xca\xc4\x23\x25\x3f\x88\xfa\x3e\xf8\xa7\xef\xf3\xc9\xcf\x9f\xbe\x8f\xe9\x85\x1e\xeb\x92\x5a\x63\x0c\xfc\x18\x25\x5f\x77\x07\xa5\xe6\xf6\x4b\x6a\xee\x83\xce\x97\xac\xfd\x8d\xf3\x93\xe6\x4e\x9a\x4c\x00\x52\x6a\x0e\xca\xa9\x39\x41\xcf\xb7\xd1\x4e\x77\xd9\xa4\xe6\x3c\x3d\x5f\xb2\xfc\xb7\xc1\xdd\x1d\x86\xfd\xdd\x20\x2f\xe4\xa9\x0e\xfa\xae\x47\x3d\xa8\x73\x52\xe7\xa4\xce\xc9\x4c\x71\x34\xce\x77\x71\xf9\xe4\x51\x4f\xea\xd4\x94\x9c\xf4\x68\xd2\xa3\xad\xcb\xa9\x73\x51\xe7\xa1\x47\xac\xa7\xe6\xeb\x29\x13\xf8\x94\xda\xa2\xce\x45\x9d\x97\x99\xc2\x91\x4e\x5b\xf4\xfd\xf1\x34\x37\xdd\xf4\x65\x95\x5f\x60\x3c\x37\xd3\x7c\x0f\x0a\x99\x92\x9b\x6e\xba\xcf\x25\x93\x25\x3f\xe1\x73\x49\xf8\x5c\xf2\x8b\x34\xfe\xd0\xa4\xe3\x4d\x22\x45\x7e\x6a\x87\xa7\x79\xb8\x51\xd2\x3f\xe9\x91\xd3\xee\xfc\x8c\xc9\x70\xb9\xfc\x72\x79\xe6\x19\x71\xca\x84\xeb\x25\x93\x1c\x3f\xb5\xab\xcb\x9f\x17\x56\xd6\xd3\x63\x90\x1d\x39\xf3\xd3\x73\x7f\x3c\x77\xc7\xd1\xfc\x40\x32\x7c\x2e\x09\x9f\x4b\xc6\x1d\x90\x70\xb6\x24\xdc\x2b\xf9\x35\x6e\x04\x5e\x78\xca\xb7\xbf\xcc\x4b\xaf\xc9\x53\xbc\x7d\x1f\x3e\xc8\xbc\xeb\x9a\xba\x93\xe8\x84\xcf\x25\x3f\xf7\x76\xa6\xee\xfc\x2e\xf5\xc0\xe5\xbe\x51\xa7\xee\x20\x92\x70\xc4\xe4\xe7\xf4\x30\x75\xdf\x90\x52\x8f\x8c\xfc\xe2\x46\xc0\x46\x4f\x8c\x12\xd3\xa6\xbb\xef\x33\xb9\xc0\xcd\x5f\x46\x74\x31\xb9\xbe\xcd\xf7\x41\x93\xb6\xfe\x39\x28\x5c\x14\x2e\x0a\x7d\xc5\x75\xe3\xc1\xb1\xb1\x74\x07\x91\xd4\x8d\x51\x72\x6b\x2d\x79\x82\xb9\xef\x83\x3a\x2f\x97\x83\xf7\xdd\x98\x0c\x8f\x7f\x66\x7a\x94\x69\xe7\xe3\x9f\x99\x3a\xdd\xef\x50\x42\xa0\x9b\x99\x26\x39\xb0\xf8\x8b\x35\x5e\xe8\x73\xa9\x3b\xbd\x2f\xc1\xfd\xa1\xc9\xb5\x71\xbe\x8f\x4c\xe1\xa1\xb0\x52\x48\x9d\x89\xc6\x17\x46\xa9\xf2\x4f\x77\x6c\xa5\x5e\x69\x7c\xe5\x46\xa6\x42\x1a\xef\xce\xee\x12\x98\x60\x9d\x73\x5d\x17\xdf\xf9\x0a\x7d\xda\x74\x3f\xc9\x4d\xae\xb9\xf3\x57\xc8\x28\x94\xf0\x76\x25\x1c\x5b\x85\x00\xab\xd4\x81\xa0\xee\x68\x53\x78\x21\x37\x79\x32\xbb\xef\x83\x76\xb2\x83\xf5\x4e\xdf\x39\xf2\x08\x4c\xc5\x3e\x18\x3a\xce\x95\x70\x3e\x27\xbc\x64\xa9\x0f\x7a\xe4\x9e\x94\xe4\xa2\x3d\xdf\x07\x75\xb2\xd7\xf5\x41\x9d\x83\x6e\x76\x6e\x34\x68\x92\x23\x51\xe1\xe5\xdc\xd4\xa1\x33\xdd\x41\xa7\x10\xd3\x90\x70\xc0\xa5\x3e\x69\xd2\xa0\xef\x6c\xdb\xdd\xf1\xa5\x84\xa9\x42\x9e\xa6\x73\x3f\x7f\x5b\xc5\x0b\xb9\xfb\xe2\xee\x8b\xc6\x83\x36\xae\x13\xf4\x15\xd2\x78\xc7\x9e\x84\x6f\xaf\x84\xc5\xe3\xd8\xf4\x7d\xf3\xdc\xfd\xd8\x34\xf5\xcd\xdd\x37\x7d\xd7\x4c\x86\x0a\xf4\xcd\xc8\xc3\x1d\xfa\xe6\x46\x9b\xa7\xa9\x99\xbc\x79\x9a\x8e\x4b\x25\x1c\x26\x18\xc7\xd7\xfd\xd0\xa3\xc3\xfc\x3c\xf4\xe8\x50\xe7\xa1\x49\x87\xb9\x74\x68\xfc\x65\xe8\x0e\x8d\xbf\xd4\x79\xf9\xe7\xa5\x9d\x97\x76\x3e\xda\x79\x99\x21\x97\x3a\x1f\x7d\x07\xac\xba\xfb\x82\x4b\x0c\x14\x82\x4b\x78\x0f\x4b\x8c\x5c\x0e\x2e\x75\x37\x89\x0a\x7a\x95\xa9\xc3\x5c\x3c\x15\xdf\x5f\x21\x82\x2b\x0d\x98\xcb\x70\x8a\x5b\xa2\x9b\xad\x69\x70\x78\x3e\x02\x97\x7b\x54\x55\xc2\x15\x99\x46\xe0\x72\x37\xdd\xd2\x00\x82\x46\xa4\x49\x1e\x74\x9a\x06\x74\xc6\xf3\xf6\x7d\x85\xe7\x1f\x09\xc5\x70\x3f\x40\x1a\x0e\x53\x05\x13\x2e\xb9\xba\xd2\xf7\xe1\xb3\x2f\xba\x30\x49\x1a\x89\x1b\x26\xda\xcb\x2a\x19\x80\x96\x6b\x28\xf1\x56\x8f\x17\x36\x0a\x3b\x85\x95\xc2\x43\x21\x75\x36\x6e\xe4\x76\x72\x72\x55\xa5\xbf\x12\xd9\xa8\x5d\x54\xe9\xfb\x48\x14\x72\xb9\xfb\x53\x13\x8e\xd4\xc2\x1b\xcc\x09\x7f\x6a\x1a\x1c\xa3\x45\x16\xc4\x80\x0d\x79\xd2\xc0\xbf\x42\x86\xab\x84\x93\x35\x0d\x63\x08\xa1\x5f\x23\x33\x5a\x99\xc6\x4f\x6e\x04\x6f\xc2\xd7\x5a\x30\x4a\xd3\x70\xb0\x4b\xc3\xe9\x53\x89\xac\x92\x91\xa9\x33\xd3\xa3\xc5\xdd\x01\xc2\x01\x10\x46\x8f\x19\x4f\x03\xbe\x35\x0a\x77\x67\x9a\x8f\x4a\x37\x2b\xdd\x3c\x5c\x5e\xe9\x26\x40\x18\xaf\xfe\x49\x37\x01\xc2\x78\x99\x29\xc0\x9b\xa7\x1d\xfc\x2b\x09\xd6\x36\xdc\x98\x4d\x03\xcc\x43\xa7\x33\x0d\x30\x6f\x38\xfb\x2a\xbc\x66\x9d\x46\xe3\xb9\x3b\x17\x2b\x68\x76\xa6\xd1\x78\xee\xce\xbe\x4a\xc2\xb6\x19\x1e\xcb\x92\x3c\x83\xe1\x5f\xc1\x9b\x90\x46\xe7\xee\x0e\x92\xfe\x3e\x8f\x17\xd2\x4d\x20\x33\x99\xfe\xc9\xe3\xe8\xdc\xc8\x68\x67\x67\xe8\x38\x81\x4c\x59\x97\x33\x74\x83\x1b\x61\x98\x0d\xa8\xdc\xd0\xa1\xbd\xe6\x27\xe0\x3a\x00\xd7\x54\x18\xa5\x41\x37\x1d\x4e\x4b\xd2\xa4\x05\x47\x87\x3b\x60\xfd\xfd\x1f\x2f\xe4\xee\x83\x83\x6b\x78\xe8\x80\xdf\x0d\xce\x3f\x53\x65\xe8\x26\x23\x0f\xe2\x26\xac\xa0\x01\xe2\x8e\x49\xe3\x1b\xd3\x66\xd1\x4e\x10\x97\x17\xd0\xd3\x58\x5c\xbe\xb8\x5c\xf3\x73\x71\xf9\xe2\xf2\xc1\x3f\xc1\xd1\xb1\xb9\x7c\xaa\x90\xa7\xb9\xb9\x1c\xc0\x1e\x18\x51\x03\x74\x4c\x8b\x7f\xc2\xda\xc6\xe1\xb9\x6f\x15\x72\x23\xf7\x99\x96\xe4\x2e\x9b\x34\x00\x42\xd7\xf2\xfa\x2b\xe9\xf0\xdc\x01\x42\x4f\xf8\xf8\x57\xd2\xa5\x9b\xb0\x36\xcf\xe4\xf8\x15\xf2\x8c\x1e\xed\x7c\x3c\x8e\xc7\xd0\x61\xe8\x7a\x56\xc7\xaf\x90\x01\x79\x5c\xfe\x98\x75\x10\x0a\xcf\xf4\xf8\x7d\x78\x93\x0c\x42\xc1\xc9\x40\x1a\xa0\xa3\xb9\xa7\x37\x4d\x0c\xba\xe9\x78\x58\x78\xa3\x3d\x4d\x58\xdb\x74\xd6\x56\xcc\x23\x52\x93\x27\x75\xfc\x3e\x26\x85\x97\xc2\x4d\xa1\xcf\x64\xf3\xa8\x90\x34\xa1\x72\xd3\x91\xb3\xf0\x1e\x7c\x9a\x18\xe4\xd3\x91\xb3\x18\x88\x3b\xb1\x00\x27\xa8\x88\x88\x69\x9a\x6e\xfa\xa5\xe9\xe0\x58\xcc\x03\xf9\xd3\x04\x15\x67\xe2\xf2\xcc\xe5\x98\x85\x2e\x4d\xf6\x57\xcc\x35\xea\x12\xa7\x1b\x89\xd3\x8d\x62\x58\xfe\x2e\x57\xf6\x7d\xf8\xc8\x5b\xe3\x72\xa8\xdc\x34\x2e\x87\xb1\x4e\xa8\x1c\x27\x1f\xc5\x3a\x8d\x77\x90\x4b\x33\xd3\x23\x26\xd8\xc4\x9b\x30\x33\x4d\xc2\xd0\x99\xee\xfb\x4a\xd3\x19\x5d\x31\x2c\xd5\x09\x95\x9b\x44\x1c\x90\x96\x2d\x4d\x6c\xc4\x09\xac\xf1\x22\x7e\x9a\x85\x3a\xa1\x72\xb6\xb8\xbb\x9f\x2a\x27\x0e\x5c\x8a\x41\x13\x26\xd6\x24\xe7\x2e\xc5\x98\x8a\x1c\xbf\xa4\x09\x00\x92\xd2\x2d\xb9\xce\xd9\xf7\xe1\x50\x69\xa0\xe2\xac\xf4\x9d\xd0\x06\x39\x38\x26\xa4\x6f\x42\xfa\xec\x71\x79\xa3\x47\x60\x5d\x8e\x0c\x32\xb0\x36\xe1\x77\x59\xcf\x1d\x6b\xd2\x73\x5c\xfe\x15\x42\x99\xd2\xec\x4c\x30\x10\x2c\x67\x26\x18\x26\xe6\xec\xd4\x09\xbb\x74\x99\xb4\xef\x63\x51\x48\x93\xb0\x3b\x27\xb8\x44\x86\xb7\xc4\xe1\x4f\xe2\x80\xa7\xe4\xca\x4c\x86\xb5\xb9\x42\xda\x5f\x41\x33\x35\xb9\x40\xda\xf7\xc1\xe5\xec\x86\x13\x6b\x72\x4e\x1a\xaf\x47\x3c\x69\x3c\x68\x93\x07\x85\x8b\xa1\x5b\x8a\x49\xe1\x72\xa8\x9c\xab\x9c\xfd\x95\xec\x2f\x3d\x24\xce\x79\x92\x8b\x9b\x7d\x85\xdc\x1d\xc3\x91\xe3\x9e\x92\xe1\x62\x1c\xe9\xa4\x09\x41\xcb\x6c\x3d\x13\xc3\x91\x03\x9e\x92\x3f\x03\xe2\x1f\x08\x05\x87\x40\x69\x6e\xda\x0b\xd3\xe2\x10\x28\xcd\x43\x7b\x31\x39\x38\xef\x49\x1c\xf4\xf8\x9b\x53\x5e\xc8\xe5\x10\xb5\x12\x68\xda\xa5\xbd\x0e\x53\x85\x13\x9e\x34\x31\x35\xe7\x25\x86\x06\x93\x83\x13\x9e\x34\xdd\x7d\x5f\x90\x33\x48\x1c\xed\xa4\x09\x92\x15\x36\x2b\x4e\x78\xd2\x84\xd2\x15\x0c\x5d\x8e\x76\xd2\x04\xb4\xc8\x30\x97\x38\xc4\x49\x13\xd0\x2a\x30\x2d\xce\x6b\x12\xe7\x35\x05\x29\xd8\xc4\x79\x4d\xe2\xbc\xa6\xa0\x71\x90\x16\xce\x28\x8e\x6d\xfc\xfd\x29\x2f\x1c\x14\x12\xd6\x53\x74\xb9\x8f\xd2\x02\x9f\x0a\x9b\xd5\x02\x9f\x16\xf8\x54\xd8\xac\x3c\xb9\xe9\xf7\x91\x29\xa4\x49\xf8\x30\x57\xa4\x9d\x55\x97\x6f\x0a\xb9\x11\xb3\x6f\x01\x5a\x8b\xe8\xa5\xe2\x0e\xed\xb4\x12\x8d\x87\xdf\x15\x3f\x31\x49\x0b\x5f\xd6\x4a\x34\x1e\x3b\x79\x39\xb1\x4b\xae\x45\xc7\x6b\x5c\x5e\xb8\x28\x64\xe4\xb1\x43\x5c\x72\xee\x2f\x2d\x58\x5b\x71\x69\xec\xb4\x60\x6d\xcb\x88\x5e\x9a\x34\x1e\xd6\xb6\x60\x6d\x05\xd4\x59\x18\xa5\x9c\x39\x95\xb2\x54\x48\x93\x32\x4d\x62\xf2\x7a\xd6\xd5\xef\x83\xb9\xb4\xf5\x4f\x9a\x94\xe9\x3b\x86\x04\x47\x4f\x69\x81\x64\x05\xf7\xca\x02\xc9\x38\x88\x2a\x05\xbf\xd8\x2a\xd4\x09\x92\x15\x7c\x2e\xab\xd0\x23\x40\xab\x32\x69\x17\xac\x6d\xc1\xda\x08\x11\x4a\x0b\xd6\xc6\x01\x56\xa9\x91\x3a\x9d\xc3\xa5\xe5\x80\x56\x08\x11\x4a\xcb\x71\x2d\x2d\xcc\x57\x64\x1a\xd2\x22\x2c\x79\x35\x6e\xc4\xa4\x5d\x60\xde\x6a\xdc\x28\x71\x23\x30\x6f\x41\xe5\x2a\xfb\xd2\x82\xca\x2d\x90\xac\x66\xda\xd9\x19\x3a\xb8\x58\xcd\x8c\x52\x67\x94\xba\x77\x93\x9c\x7c\x69\x41\xd0\x96\x42\xc4\xf0\xdf\x2d\x08\xda\x82\xa0\x21\xfa\x90\x5c\x83\xef\xfb\xe0\x46\x98\xc4\x1c\xd0\xa5\x05\x10\xd6\xa6\x42\x86\x6e\xd2\x23\xac\xdf\x05\xed\x5a\x93\xcb\x3b\x83\xec\xa7\x1b\x69\x01\x84\x75\x30\x20\xb8\xd5\x16\x91\x85\x28\x41\xa4\x85\x5b\x6d\xc1\xb0\xaa\x66\xdd\xe2\xf2\xc5\xc8\x43\xa6\xd6\x62\xe4\xa1\x5d\x48\x45\xa4\x85\xd3\x7a\x61\xbe\x56\x5c\x36\x6b\x33\xc8\xd0\xae\x0a\xd9\x5f\xa0\xe3\x02\x1d\xeb\xa2\x47\xa0\xe3\x02\x1d\x2b\xd6\xef\x02\x00\x17\x36\x6d\xc5\xfa\x5d\x00\xe0\xf2\xa3\xb5\x52\x37\x97\xc3\xda\x16\xa8\x58\xd9\x00\x17\xbe\x36\x4f\xc9\xfb\x15\xf2\x38\x0e\x77\x3f\xf4\xe8\xd0\xa4\xc3\x80\x00\x95\x15\x82\xb6\xa0\x72\x0b\x2a\x57\x2f\xcf\xe8\xf2\x8c\x2e\x83\x0c\x6b\x5b\x18\xba\x9c\x89\x96\x0a\x6b\xe3\x68\x34\x71\x26\x5a\x2a\xac\x8d\xa3\xd1\xc4\x61\x68\x69\x81\x51\x02\x3f\x97\x73\xbf\xd2\x38\x4a\x58\x98\xc4\x0b\x93\x18\x79\xe5\xb4\x1e\x8d\x77\xe7\x5c\x69\x9a\xf3\x78\xf8\x17\xa0\x8a\xec\x45\x5a\xf8\xfb\x97\x7b\xec\x4a\x63\x21\x6c\x90\x76\x3b\xb6\x96\xc6\x42\xd8\x6e\x35\xa7\x0d\xd2\x22\x93\x91\x36\x48\xbb\x61\x82\x0d\xf4\xde\x6e\x4a\xa7\xed\x84\xd0\xdf\x39\xf2\x42\x7f\x1c\x1b\x50\x45\x56\x23\x6d\x40\x75\x03\xaa\x0d\xfb\x63\x03\xaa\x1b\x26\xd8\x30\x35\x36\x4c\x70\xc3\x04\x91\x6f\x4e\xdb\x21\x36\x6d\x8c\xe6\x06\x50\x6f\x3c\x7d\x1b\x26\xd8\x30\x20\x36\xa0\xba\x01\xd5\x86\x23\x7b\x03\xaa\x1b\x50\x6d\x78\x91\x36\xa0\xca\x71\x72\xe1\x1c\x39\x71\xaa\x9c\x36\x9c\xb1\x41\x13\x36\x9c\x71\x43\x0f\x79\x6d\x2e\x6d\x40\x75\x63\xf5\x36\x4c\x8d\x0d\xa8\xee\xcc\xe5\xb8\xbc\x37\xf8\xb9\x71\xea\x35\xe0\x77\xc3\x04\x37\x4c\xb0\x41\x28\x36\x06\xee\x86\xf4\x35\x08\xc5\x06\x2a\x77\xe1\x9f\x90\xbe\xcd\x11\x02\xc7\xde\xa5\x61\x7f\x70\xfa\x9d\x36\x56\x6f\x3b\xe1\x1f\x09\xc5\x86\x11\xba\xfe\xe3\x77\x45\xa5\x1a\x86\xb0\xd2\x0a\xdc\x41\xbb\xd2\x5d\xec\xe4\x06\x83\xd9\x70\xc7\x8d\x9d\xdc\x58\x25\x1b\x3b\x79\x63\x12\x37\xf0\x7e\x83\xa3\x1b\xee\xd8\x9e\xfe\x39\x29\x64\x9e\xb2\x20\x36\xe0\xba\xb1\x93\x1b\x7c\x74\x37\xba\x8b\x9d\xdc\x03\x73\x0a\x3b\x79\xe3\x5a\xec\x81\xa7\x0a\xcb\xe4\x78\xbf\xe8\x14\x6e\x63\x3c\x6f\x37\x97\x0b\x12\xd9\x69\x77\xee\x0e\xf5\x24\x4c\x2a\xed\xce\xdd\xc1\xe6\xee\x6f\x25\xa4\x8d\x13\xd2\xd3\x51\xff\x95\x8e\x8b\x69\x3b\x3b\x4d\x44\x0e\x94\xae\xa5\xc3\x39\xc8\xc6\xdf\xd8\x31\x78\x36\x80\xbd\xb1\x93\x89\x02\x4c\x1b\x3b\x79\x4f\xfe\x09\x6f\x26\xb8\x20\x6d\xfc\x8d\x1d\xd3\x7d\x73\x90\x41\x8c\x41\xe9\x45\x85\x85\x42\x7a\xc4\xb1\xd4\x06\x86\x37\xae\xc5\x0e\xc7\xd9\x0e\xca\x69\xc3\x47\xd1\x66\x49\x1b\x18\xde\x9b\xbb\xb3\xb1\x6c\x1c\x86\x1b\x70\xed\x4d\xff\xe4\xf2\x43\xdf\x1b\x03\x02\x8e\x12\xb0\x50\x3a\x5e\xa4\x0d\xe5\xdc\x58\xbf\xc8\xbc\xa4\x7d\x78\x70\x40\x66\xd7\x2a\x01\x1d\x37\x98\x47\x2a\xcc\xb4\x21\x92\x1b\xce\xd8\xb1\x97\x36\x67\x16\x1b\xcc\xeb\x5a\x3a\xb8\x01\xf7\xa3\x9b\x58\xe9\xfb\xe9\x72\x86\x0e\x3a\x73\x80\x37\xa2\x26\x4a\xf7\xd7\x0a\xd2\x01\xde\x88\x9a\x28\xdd\xc3\xb9\x12\xe1\x12\xe9\x40\x0f\x3b\x0b\x81\xe0\x89\x74\xf0\xf8\x75\x16\xc2\x01\xb4\x78\x5f\xa2\x74\xe6\xfc\x81\x09\x1e\x98\x60\xf7\x40\x95\x74\x38\xe2\xf6\xdc\xdb\x5f\xa1\xb7\xf3\x40\x0f\x89\xc4\x28\xdd\x03\x2b\x12\x01\x19\xc9\x65\x3a\xbf\x42\x6e\x84\xa1\x7b\x40\xb2\xce\x42\x38\x9c\x59\x10\x9e\x51\x46\xe0\xee\x20\xd9\x01\xc9\x06\x0b\xe1\xe0\xe9\x3b\xd0\xc3\x01\x45\x3a\xd0\xc3\x03\x3d\x1c\xcc\x79\xd7\xf0\xfc\x3e\x08\x59\x66\xbb\x38\x58\xbf\x2e\xd9\xf9\x57\x06\xdb\x05\x91\x1f\x89\x90\x8f\x32\x98\xc9\x44\x7e\xa4\x03\x91\x44\x0b\x3d\x1d\x3c\x7d\x07\x4f\x1f\x79\x45\xd3\xc1\xd3\x77\x30\x89\x47\xd6\x3f\x0f\x85\x97\x42\x47\x32\x4f\x32\xfe\x7d\xf8\x28\x0d\x76\x86\x03\xbb\x3c\xa0\x23\xc1\x8e\xe9\x60\x12\xbb\xc4\xe7\x5f\x19\x38\x49\x5d\xe1\xf3\xfb\x38\x14\xf2\x34\x31\x89\x8f\xf3\xc9\x32\xa0\xf0\x07\xac\x3b\x10\x49\x5e\x72\x4e\x07\xac\x3b\x10\x49\xa4\x72\xd2\xe1\x1c\x84\xc8\x96\x32\x98\xde\x07\x22\xe9\x62\x9d\x5f\x21\xff\x04\x00\x0f\xc6\xf3\x60\xce\x1f\xce\x67\x8f\xe2\xc2\x21\x53\x44\xc4\xa4\x03\xd6\xf1\x12\x75\x3a\xf8\x04\x5d\xc4\xf3\xaf\x0c\x3c\xa7\xae\xe1\xf9\x7d\x30\x20\x93\x51\xc2\xcc\x3e\x98\xd9\x03\x86\x75\x00\xc0\x03\xd6\x8d\xc5\x80\xc0\x43\x0f\x3c\x94\x74\xab\xe9\xc0\x43\xcf\xd0\xe5\xdc\x1d\xca\x49\x94\x4d\x19\x9b\x19\x02\xac\x1d\x60\x8d\x8c\xab\xe9\x00\x6b\x07\x58\x1b\x90\x29\xa2\x6c\x12\x51\x36\x05\xb5\x9f\x44\x94\x4d\x22\xca\xa6\x0c\x8e\x62\x89\xb2\x49\x07\x1e\x3a\x38\x4a\x38\x93\x01\x59\x0c\x1d\x06\x04\x01\x35\xe9\x80\x75\x64\x65\x4d\x07\xdb\x9b\x28\x9b\x32\x31\x0b\x88\xb2\x49\xc4\xd5\x14\x84\xe8\x13\xe1\x35\xe9\x40\x39\xd1\x9f\x4f\x07\xca\x79\xa0\x9c\x13\xde\x44\x94\x4d\x22\xca\xa6\x4c\x2d\x04\x28\xe7\x01\x15\x27\x2e\xda\x03\xe5\x3c\xa0\xe2\x24\xa8\xe4\x1c\x1e\x07\x44\x72\x62\x40\x1c\x88\xe4\x71\x1c\x2c\xd3\x18\xcf\xcb\xd3\xc4\xe6\x9e\x44\xd9\x1c\x6c\xee\x73\x69\x27\x56\xc5\xb9\xb4\x13\x22\x89\xc4\x7d\x3a\x10\xc9\x83\xa3\x70\x62\x0a\x1f\x1c\x85\xe7\x71\x39\xa7\x6f\x07\x7a\x48\xfc\x4f\x99\x5a\x32\x40\xe5\x01\x2a\x91\x3f\x4a\xd7\x8d\xed\x74\x81\xca\x89\xd5\x7b\x3d\xce\x2c\x11\x29\x54\x5c\x19\xe9\x1f\x08\xc5\xe5\x8c\xe5\x42\x13\xa7\xbf\x79\x99\x2e\x34\xf1\x82\xb8\x44\x16\x26\xcf\x5a\xff\x97\x2e\x88\x3b\xf1\xce\x5d\x10\xf7\xe2\xf1\xe3\xf5\x87\x74\xe1\x79\x97\x57\x7f\x26\x87\x0e\xd7\x11\x30\x5d\xe0\x6d\xc2\xb4\x2e\xf0\x76\x81\xb7\x89\xf5\x7b\x71\xee\x5d\x63\x0c\x26\x37\x72\xda\x96\x2e\xce\xbd\xc9\xd1\xf1\x05\xde\x2e\x48\x86\x5c\x53\xf2\x4c\xf5\xdf\x07\x75\xb2\x4a\x2e\xf0\x76\x39\xb3\x40\xa7\x3f\x5d\x90\xec\x82\x64\xc8\xf3\xa7\x0b\xa5\xbb\x8e\x5d\x65\x62\x9c\x5c\xce\x69\x2f\xe7\xb4\xf3\x70\x23\x90\xec\x16\x66\xdf\xd1\x3f\xa9\x13\xf2\x47\x0e\xde\x74\x21\x7f\x17\xf2\x37\x3d\x4e\x38\x5d\x67\x7d\xe9\xe2\xdc\x43\x20\x2a\x5d\x8e\x79\x6f\x65\xe8\x30\x4e\x2e\x76\xf2\xe5\x65\xa6\x89\x71\x72\x2b\x75\x42\xe5\x26\x8b\xec\x62\x12\x5f\x40\x6b\xe1\x52\xbe\x9c\xe8\x5e\x50\x67\xb1\xc8\x5c\x2c\x16\x51\x92\xaf\x10\xde\x74\x21\x53\x17\x80\x59\xf0\xa6\x0b\xc0\x5c\xce\x69\x17\x14\xe9\x82\x25\x17\x2c\x59\xec\x21\x17\x8a\x74\xc1\x12\x92\xf7\xa6\xcb\x9b\xba\x17\x97\xdd\xc2\xb5\x78\x09\xd2\x72\x31\xd8\xaf\x90\x26\x41\x91\x2e\xe6\xeb\xaa\xcc\x25\xb0\xe4\x62\xbe\x2e\x22\x62\x2e\xce\xbd\x8b\x73\x6f\x55\x5d\x7e\x29\xf4\x55\x42\x56\xde\x74\x71\xee\x5d\xc8\xd4\xd2\xa4\x05\x4b\xee\xa6\x4e\xcc\x03\x17\x97\xfd\x3e\xa8\x13\x33\xfb\x02\x1b\x17\xd8\x58\x93\xbb\x03\x1b\x97\xf3\x05\x64\xb1\xd2\x3d\xcc\x10\x18\x16\x49\x06\xd2\x3d\xd4\xc9\xa1\xc3\x5a\x0c\x32\x4e\xbd\xeb\x67\x0f\x65\x11\xef\x70\xa1\x5d\x17\x80\x41\x5b\x2b\x5d\x00\xe6\x62\xa9\x2e\x4d\x45\x00\xe6\xe2\xbf\x5b\x87\x09\x86\xab\xce\x13\xf1\xff\x95\x05\x9d\xb9\x58\x95\x17\xab\x92\x0c\xc0\xe9\x72\xbe\x70\xb1\x2a\x37\x2e\x9b\x87\xab\xee\x39\x7a\x94\x1d\x55\x48\x5c\x14\xc8\x40\x72\x83\xf4\x00\x81\x07\x08\x6c\x1c\x85\x0f\x10\x78\xd8\x8a\xdb\xe5\xed\xd3\x23\x00\xc4\x93\xf2\xff\x15\x5e\x9d\x4c\x2f\x52\xa7\x9f\xb3\x16\x5e\x9d\x4c\xcf\x99\x59\x7a\x58\x95\x1b\xfb\xf3\x61\x55\x3e\xac\xca\x4d\x18\xdf\x8b\xba\x3b\x8d\x87\x7a\x3c\xa7\x6b\xe9\x41\xd0\x36\xd4\xe3\x41\xd0\x1e\xfe\xbb\x0d\xb8\x3e\xce\x67\x1f\x47\xb1\x1b\x3f\xce\x83\x8b\x3d\x3f\x91\x2d\x1b\x37\xf5\xc3\xaa\x7c\xe0\xd2\x6e\xd4\x09\x2e\x3d\xbc\x72\xe8\x81\xa5\xe7\x81\x82\xe9\x81\x4b\x9b\x43\xdb\x07\x2e\x3d\xac\x4a\x64\x85\xd2\x23\x7e\xe4\x39\x3c\x95\x0d\xf5\x78\xf8\xef\x1e\xfe\xbb\x8d\x4b\xf1\x71\x12\xf1\x00\x2b\xd4\xc2\xd2\x03\xac\x1e\x0c\x6b\xe3\xc7\x79\x30\xac\x57\xa8\x93\x43\xb1\x07\x2e\x3d\x5c\x75\x08\x86\xa5\x07\x04\x3d\x20\x68\xc3\xac\x1f\xf6\xe7\x03\x82\xf6\xe6\x71\x00\x41\xaf\x72\x39\xdc\xe1\xe1\x95\x7b\xa0\x0d\xe1\xb0\xe9\x81\x36\x0f\xb4\xd9\x84\x71\x3d\x28\xd2\xc3\x46\xdc\xd8\x9d\x0f\x8a\xf4\xa0\x48\x9b\xd0\x9b\x07\x45\x7a\x50\xa4\x8d\x77\xe6\x41\x91\x5e\xe7\xc1\x31\x93\x1f\xae\xba\x07\x45\xe2\x0d\xc1\xf4\xa0\x48\x0f\xcb\x6f\x3f\x5d\x4e\x37\xf1\xca\x1d\x0e\x82\x1f\xc7\xa6\x6f\xe8\x1d\x4d\x26\x2d\xc7\x13\x0f\x8a\x74\x38\x08\x7e\x68\x0d\x3c\x22\x4d\xc8\xd8\x9c\x1e\x14\xe9\x71\x66\x81\xa6\x5a\x7a\x9c\x59\x3c\x5c\x75\x87\x90\xc0\xc7\x61\xe8\x83\x22\x1d\x08\xc5\x83\x22\x3d\x00\xf0\x24\xfd\x93\x3a\xc1\xba\xa3\x85\x00\xd6\x3d\xbc\x72\x07\x0e\xfe\xf0\xca\xbd\xcd\xdd\x71\xc4\x3c\x60\xed\x71\x42\x7a\xc0\xcf\xc7\x09\xe9\xc3\x46\x3c\xf8\xd6\x1f\x36\xe2\x73\x52\x54\x0e\x76\xe7\xc3\x46\x7c\x10\x9f\x83\xef\xf2\x11\x2a\xf2\x00\xab\x03\xa8\x3e\xc0\xea\xc1\x86\x3e\xf6\xfc\x4f\x84\xe2\x41\x95\x5c\x44\xf9\xbb\x82\x9e\x5d\xa6\xcf\xa5\x67\x5d\x85\xf4\x0c\xae\x83\xde\x9c\x6b\x54\xb8\xac\x84\x4f\x8a\xe3\x47\x73\x16\x82\xf4\x2b\xe8\xae\x9f\xf0\x58\x70\x92\x63\x21\x30\xd8\x1e\x76\x66\x21\x10\x52\x0a\xc0\x9c\x49\x9d\x84\xa9\x06\x48\x0a\x39\x42\x2c\x38\x49\xb1\x80\xb5\x76\xdc\x33\x69\xc1\x29\x8b\x05\xfc\xf6\x84\xd6\x5b\x48\xe8\x57\xe0\x62\x3a\xce\x9b\x2d\x18\x51\xae\x20\x04\x99\xb0\x2d\x18\x51\xae\xf8\x9d\x8e\xc7\xdf\x5a\x30\x9a\x84\x61\x76\x7c\x9f\x37\x17\x38\xfe\x3e\xe8\xfb\x53\x9d\xdc\x08\x6b\xed\x3c\x1a\x9f\x69\x27\x1c\xe7\x3c\x6e\x94\xb9\x11\x1e\xfe\xeb\xa7\xc4\x16\x32\x37\xc2\x5a\xbb\x81\x6e\x66\x6e\x84\xdb\xff\x3a\xb4\x5b\xc8\x28\x48\x00\x1b\x37\xd2\xcd\x82\xd6\x04\x1c\x87\xd7\x5e\x2c\x14\xea\x84\xe3\xdc\xc4\xdd\x9d\xe3\x58\x80\xe3\xa0\xc1\x67\x08\x8f\x18\x8a\x23\x85\x17\x64\xcc\x35\x91\xbf\x8f\x44\x21\x37\xaa\x3c\x38\x38\x0e\x2f\xc8\x58\xa8\xdc\x88\x77\xb3\x51\xee\xb3\x9f\xf0\x08\xd6\x1a\xb1\xbc\x16\x1a\x97\x63\xad\xdd\xc2\x78\x36\x06\x04\xc3\xec\x56\x9a\x24\xe1\x11\xfc\x4d\xb7\x52\x67\xe7\xc1\xb9\x87\xa9\x20\x0c\x67\xa1\xf3\xdc\x39\x0b\xb8\x9a\x8a\x9d\x69\xd3\xa9\xb3\x73\xa3\x41\x93\xc0\x92\xab\x59\x37\x18\x3a\x28\xd2\xd5\xac\x1b\x8a\x6e\x66\x94\x26\x7d\x9f\x4c\x6f\x28\xd2\x75\x46\x60\x88\x99\x58\xc0\x99\x7f\x17\x83\x3c\x69\x3c\x31\x14\xbc\xc5\x6b\x61\xf1\x4f\xcc\xad\x7b\xe8\xa6\x44\x42\x30\xb7\xae\x9f\xec\x18\xea\x27\x16\x70\x2d\xdd\x43\xe3\x17\x0f\x0e\x2c\x21\xcb\xb8\x2b\xed\x78\x21\x8d\xbf\x8c\xd2\xe6\x72\xd8\xd0\xd5\x54\xdc\xcc\x25\x4e\x33\x79\xa7\xd0\xc2\xe6\xb9\x43\x91\x90\x2f\xb1\x70\xa8\x13\x8a\x84\xf2\xa0\x85\x43\x9d\x00\xcc\x8b\x3c\xcd\x43\x9d\x38\xa1\x88\xbb\xb5\x70\xa8\x13\x36\xc4\x4b\xc0\x16\x2e\x7d\x87\x0d\xbd\xc4\xdd\x2f\x75\x72\xc4\xf9\x8c\xb9\x74\x19\x3a\x77\xca\x17\xde\x89\x30\xd7\x89\xfe\x3e\xb8\x3c\x53\xe7\x53\x58\xfa\xa0\x90\x26\x3d\x5d\xee\x98\xf7\x9c\x26\x58\x74\x40\xb2\x08\x04\x91\x78\xc6\xd0\x73\xb1\xc8\x69\xe6\x73\x72\x6a\xd1\x01\xc9\x90\x75\x29\xaf\xea\x9f\x9b\x42\xba\xe9\x5e\x6e\x8b\x91\x3a\x71\x57\x3d\x77\x68\x5b\x24\xd0\x3e\x82\x60\xbc\x86\x6b\x31\x52\x27\x14\xe9\xb9\x45\x65\x31\x52\x27\x3e\xac\x37\x68\x67\x42\x8d\x04\x1f\xfb\xf3\x77\x8b\x2c\x26\xea\x04\xeb\x9e\x5b\x54\xe6\xf2\xd6\xdf\x07\x97\xbb\xab\xce\xa2\x71\xb9\xf1\x34\x99\x9f\xd1\x83\xcf\x2c\x82\x75\x64\x49\xb7\x08\xd6\x45\xb0\xee\x6d\xfa\x6e\xb4\x13\x8a\xf4\xb6\x2e\xa7\x9d\x46\xdf\x0f\x8d\x77\x7b\xce\x62\xe6\x46\x87\x7f\x66\x6e\x04\x6f\x7a\x87\x1b\x39\xf2\x59\x84\x37\xbd\x4b\x8f\x32\x3d\x82\x37\x3d\x77\xea\x59\xcc\xf4\x08\x54\x7c\x2e\x20\x62\xd1\xe1\xd0\x22\x64\x8a\x2c\x38\x16\x1d\x0e\x2d\x66\x1e\xf1\xa3\xce\x42\xdf\x61\x58\xcf\xcd\x2c\x8b\x85\x26\x61\x0e\x3e\x17\x8b\xb2\xe8\xc0\x69\xd1\x1d\x5b\x95\xa8\x5f\x8b\x85\xbb\x3b\xfb\xaa\x21\x30\xc8\xe0\x67\x74\xfc\xac\x48\x20\x59\x04\x3f\xa3\xe3\x67\x0d\x91\xcb\x2b\x77\x77\xc4\xac\x01\x4c\x46\x14\xc8\x50\x03\xaa\xc4\x07\x9b\x0b\x82\x7f\x1f\xdc\xdd\x03\xd0\x2d\x56\xee\xee\xac\xad\x06\xe3\x46\x95\x1b\x35\xea\x64\x75\x44\x40\x35\x3a\xa8\x56\xb2\xf5\x58\x6c\xd4\xd9\x68\x67\x66\x7e\x36\x5d\x4e\x3b\x33\x4d\xea\xb4\xb3\x53\x67\xe1\x69\x76\xea\xec\xb4\xb3\x70\x23\x90\xd6\x25\xad\xbe\x42\x06\xa4\x33\x6d\x1c\x69\xeb\xb7\x85\xfc\x03\xa1\xb0\x08\x0c\xc7\x4e\xcf\x2a\x8f\xda\x59\x9f\x45\xa7\x7b\x35\x78\xc4\xbb\xc5\x41\xd3\x06\x4d\xd3\x22\x1b\x4c\x9f\x41\x2b\x3a\x03\x33\x68\xc5\xa0\x15\x9d\x3a\x07\x37\x1a\xdc\xa8\x33\x25\x07\x63\xe0\xb8\x5d\x09\x33\xb6\xe8\xf0\x6d\xd1\xc9\x5f\x25\x2b\xbd\xb9\x7c\xfa\xf7\xc1\xf3\x67\x67\x70\xd5\xf4\xef\x83\x71\x9d\x34\x69\xaa\x4e\xc6\x75\x32\xa7\x16\x75\x2e\x86\x70\xa9\x90\x21\x5c\x34\x09\xe6\x12\x41\xf1\xb8\xe8\xbb\x56\xde\xa6\xef\x9b\xcb\x37\x93\x62\x73\xf9\x66\xa6\x1c\xa6\xcf\xa6\x9d\x9b\x76\x1e\x9e\xd5\xa6\xce\x43\x37\xb5\xc8\x40\xf1\x78\xa8\xf3\x71\xa3\x43\x9d\xce\x1d\x2b\x21\xc1\x16\x0f\xeb\xde\xc1\xbc\xc6\xa0\xcb\x79\x46\x4e\x08\x6b\x0c\x8c\xe7\x05\xf3\x1c\xc5\x6b\xd4\x82\xb8\xac\x66\x77\x93\x55\x82\x87\x2d\x02\xed\x11\x51\x9a\x18\xe9\xfb\x05\x4b\x9c\x4f\xd6\xc8\xce\x10\x2f\x58\xe2\x08\x5f\x23\xcc\x25\x3e\xa6\xe4\xa3\x4e\xad\x92\x47\x9d\x8f\x3a\x8d\xe7\xfe\xa8\xd3\xf1\xbe\x12\x3c\x6c\xc8\x6a\x59\x0a\xd4\xe9\x27\xa5\x96\xe0\xa1\x29\x50\xa7\xbf\xdd\x63\x52\xde\x42\x72\xab\x92\x3a\xdf\x5c\x3d\xfe\xcf\x52\xa4\xef\x6e\x94\x5a\x02\xef\x5d\x4a\xfe\x2b\xac\x14\x66\x0a\x19\x10\x56\x49\x72\x3b\xd9\x92\x6f\x02\x15\x49\x31\x4b\x6c\x02\xae\x35\xff\x15\x16\x0a\xb9\x7b\xe4\xee\x95\x76\xba\x49\xec\xfa\x64\x5f\x21\xab\x23\x25\x1a\x9f\xe8\x7b\xa3\x9b\x89\xcb\x8d\x26\xb9\xf9\x6a\xc9\x99\xae\x25\x77\xd5\xd5\x08\xf1\x49\xe0\x7d\x32\x2e\x1f\xdc\xdd\x74\x39\x77\x87\xad\x27\x68\x6c\x72\x14\xaf\x11\xb6\x8e\x50\x98\x21\x14\x56\xe3\xe4\x72\x00\x1b\x15\xb0\x1a\xd9\x82\x10\x03\xb3\x84\xa6\x4d\x5c\x34\x29\x53\x67\xa1\xce\x45\xe3\x0b\x75\x3a\x71\xad\x11\xde\x94\x0a\xed\x2c\xd4\xb9\xb9\xbc\x50\x27\x88\x1b\xdd\x93\x62\x09\xc4\x4d\x95\x41\x86\xd7\xa7\xca\x20\x57\xba\x79\x19\xf9\x4a\x37\x2b\x4d\x82\x37\xa5\xca\x20\xa3\x15\x12\xdd\x1f\x6e\xa9\xd1\x23\xb4\x42\xd0\xda\xb2\x04\x8e\x26\x20\x93\xf7\x92\x2d\x81\x8e\xa9\x23\x0f\x01\xf1\x49\x60\x5d\x02\xeb\x12\x33\x19\xa9\x2e\x43\xaa\xab\x26\x26\x6d\x1a\x3c\xa3\xc1\xe5\x9a\xb4\x83\xc6\x3b\x90\xd5\x04\x8a\x27\x10\x2c\x39\x0f\xad\x49\xf3\x73\xd0\xf8\x49\x93\x0a\x75\x4e\x66\x88\xa3\x5b\x4d\xd0\xed\x04\x39\x4d\x0e\x64\x35\x41\xb7\xd3\xa4\x9d\x93\x76\x42\xb7\x13\x8c\x35\xb9\x69\x5b\x93\x66\xdd\x62\x90\x17\x37\x02\x93\xd3\xe2\x46\x8b\x1b\xf9\xab\x49\x96\xe0\xb6\xc9\x21\xaf\x26\x3f\xd9\xb1\xb4\x78\x9a\xce\x6d\x6b\xea\xaa\x73\x52\x78\x28\xa4\xf1\x8b\xbb\x6f\xea\xec\x4c\x45\x3f\x43\x30\xcf\x0d\xf0\x57\xd3\xa0\xf1\x70\xdb\xb4\x19\xa5\xc9\x32\x84\xdb\xa6\x4d\x9d\x60\x72\xda\xd4\x79\x68\xfc\x64\xda\x1c\x1a\x0f\x2a\xa6\xc5\xd2\x06\x15\x13\x7a\x2e\x69\x51\x27\x84\x37\xa1\xe7\x92\x36\x73\x09\x00\x44\x27\xae\xa6\x43\x9d\x97\xa7\x79\xa9\x53\xb3\x0e\x54\x4c\x97\x3a\x2f\x03\x72\x19\xf9\xcb\xd3\x84\x98\xa7\xc7\x20\xa3\x8b\x64\x81\x59\xf7\x18\x4f\xf4\x47\x0c\xf8\x4d\x8f\xf9\x09\x2a\x5a\x60\x32\x80\x8a\xc9\x0d\xf1\x6a\xd8\x88\x09\x16\x8c\x90\x5d\x35\x48\x8a\x01\x80\x16\xb8\x91\x1f\xa3\x98\xf9\x11\x82\x59\xe0\x46\x20\xad\x79\x58\xb2\x19\x50\x69\xf0\x11\xc3\x3a\xb7\x40\x9d\xfe\xee\x86\x19\xef\xa0\x9a\x83\x63\x35\xd7\xda\x32\x8b\xdc\xc8\xc1\xb1\x92\x87\xcb\x4c\xef\xa0\x46\x6e\x94\x69\x12\xa8\x88\x3c\x5d\xb5\x12\xff\x91\x50\x98\x63\xa5\x79\x3e\x85\xef\x0a\x3a\x01\x45\x46\xa6\xae\x1a\x33\x1a\x7d\x3a\xb3\x44\xdd\x95\x56\x24\x5d\x4e\x27\x1a\x9d\x80\x37\x9b\xd1\x09\xc0\xd5\xe0\xcd\x48\xd8\x55\x6b\x0c\x0c\x38\x6a\xc6\x8d\x98\xbc\x08\xda\x19\x12\x76\xd5\xe0\xf7\x28\xd9\x99\x39\xd5\xad\xe6\x02\xfc\x86\x4c\x9d\x21\x53\x57\xd1\x6b\x34\x64\xea\x0c\x99\xba\x6a\x8b\x3a\x41\x47\x03\x1d\x6d\xf3\x4f\x48\xaa\x41\x52\x0d\xee\x60\x90\x54\x2b\x74\x13\xd6\x6e\x85\x3a\x51\xd4\x31\x58\xbb\x61\xcf\x5b\xe5\xf9\x63\x6a\x1a\xf6\xbc\x55\x6e\x74\x78\x80\xe0\xa8\x01\x99\x06\x64\x5a\x55\x9d\xb4\xf3\xf2\xcf\x46\x37\x9d\x96\x56\x83\xa0\x5b\xe3\x71\x80\xa3\x06\xed\xb6\xc6\xe3\xf0\x80\x93\x9a\x99\xe6\x06\xb8\x1a\xe0\x9a\x03\x4f\xb3\xeb\x15\x66\x14\x13\x23\x7d\x07\x71\x0d\x3e\x9a\x23\xa3\x04\x1f\x35\x77\x00\x54\x02\xa7\xcd\x3a\x83\x0c\xbb\xcc\xd0\x6e\x83\x5d\x1a\x30\x9c\x13\x7d\x87\x5d\xda\xe0\x72\x7f\x09\xd8\x0c\x22\x69\x0e\xbc\x35\x9b\xfe\x49\xdf\x07\x75\x6a\x9a\x83\xb8\x06\xe2\xe6\xcc\x8d\x26\xed\x04\x71\xc9\xab\x66\x48\x09\x9a\xc1\x19\x33\x80\xed\xe9\x35\xfe\xcc\x00\xd7\x0c\x60\x1b\x44\xd2\x80\x4c\x84\x4b\xcd\x16\x4d\x02\x32\x73\xe5\x11\x2f\x2e\xdf\x5c\xde\xf8\xe7\xa6\x49\xe0\x28\x62\xa8\x66\x10\x49\xdb\x34\x49\x33\x19\xce\x68\x00\x61\xee\xdc\xfd\xf0\xe0\x00\x42\x22\xb4\xcd\x0e\xb3\x0e\x20\x44\xf9\xc7\x0c\xcb\xdf\x10\xb6\xca\x93\xbb\x63\xf9\xdb\xa5\x49\x60\xb3\x81\x79\x76\x79\xee\x9b\x67\x84\x3d\x6f\x8f\xc7\xc1\xee\x6d\x60\x1e\x12\x8b\x35\x6b\x2a\x3e\x2e\x07\xc9\x50\xe9\xb1\x0c\xbf\xcb\xf0\xbb\x8c\xd7\x23\x3b\xae\x59\x96\xd0\x26\x5e\xb9\x0c\xbc\xe5\x40\x9d\x20\x6e\xc6\xc8\xcf\x7e\x50\x5a\x0b\x5b\x7a\x76\x0a\x68\xd9\xb9\x5f\x2d\x41\x37\xf2\x1e\x65\x37\xf2\x2b\x31\xdc\x96\x21\x7d\x19\xd2\x57\x60\xc1\x19\x37\x25\x42\x0b\x15\x95\x50\x43\x6f\xc1\xb2\x93\xb7\x5a\x40\x5c\xcf\x3a\xf2\x7d\xf8\x20\x17\xc0\x35\xf3\x36\x7d\x86\xdf\x15\x18\x6b\x86\xdf\x65\x87\xa7\x5a\x60\xac\xd9\x51\xca\x50\x92\xac\x05\x07\x1c\x82\x92\x96\x21\x7d\x25\xd3\x4e\xbc\x9c\xc8\x4b\xd6\x82\x57\x2e\x3b\x74\x59\x76\x23\xbf\x16\xb8\x6d\x86\xf4\xe5\xcc\x8d\x3c\x94\xc9\x72\xe6\x46\x99\x1b\x01\xaa\x19\x87\x66\x06\xd6\x0a\x4e\x93\x8c\x43\x33\xbb\xe9\x5e\x0b\xae\xba\x8c\x95\x9e\x0b\xa3\xe4\xe1\xda\x96\x71\x53\x66\x07\xb2\x5a\x3a\x75\x16\x1e\x07\x66\x76\xc1\x7f\x97\x0b\x7d\x87\xf4\x91\xfb\xce\x32\x60\x95\x2b\x75\x0e\x15\x72\x77\x98\x20\x89\xef\x2c\x63\x3c\x67\x70\xa9\x80\xb4\x19\xe7\x63\x6e\x5c\x8e\x7f\x24\x03\x56\xb9\x71\x39\xfe\x91\x8c\x3e\x72\x76\x78\xaa\x05\xa4\xcd\x8d\xa7\xd9\x19\xa5\xc3\xe3\xe8\x8c\x52\x67\x86\x80\xb4\xb9\x73\xa3\x4e\x8f\x0e\x3d\xea\x34\xa9\xd3\xa3\xab\x7f\x52\xe7\xa0\x4e\x68\x42\x86\x33\xe6\xc1\xd3\xc4\xc1\x91\x07\x4f\x13\x53\xb8\x68\x26\x63\x0a\x67\x38\x63\xc1\xa9\x87\xae\x87\xa1\xeb\x51\x6b\x60\x90\xe1\x8c\x19\xce\x58\x35\xbd\xa1\x87\xd9\x43\x45\x6a\xd5\x4c\x9e\xd4\x89\x29\x5c\xb1\xe7\x32\xa6\x70\x86\x33\x92\xe0\xc2\x32\x9c\x31\x83\x60\x15\x7b\x2e\x83\x60\x79\x51\x67\xe2\xb9\x2f\x1e\xb1\x73\xbf\x5a\x8d\x1e\x01\x6b\x19\x53\xb8\x82\xb4\x9e\xc1\xe6\xfb\x48\x14\x32\x15\xf1\x72\x66\xac\xde\x0a\x35\xce\x30\xc1\x0c\x13\xac\x9a\xde\x30\x41\xe4\x4b\x6a\x2d\xff\x78\xe4\x61\x19\x9a\xe8\xa9\x72\xbe\x2b\x18\xd7\x03\xc0\xc0\x1d\x2b\x76\x5d\x3e\x8c\x96\xb3\xc5\x5a\x2b\x9d\x00\x1d\x33\xc6\x73\xad\x74\xf7\xf0\x04\x0e\x75\x42\xa6\x33\xdc\x31\xc3\x1d\x2b\x2c\x23\xc3\x1d\x33\x16\x35\x02\xa6\x96\xe1\x8e\xd9\xc3\x50\x6a\x6d\x8c\x01\x16\xb5\x64\x5e\x2b\xd4\x23\x63\x51\x67\x2c\xea\x8a\xd7\x23\xe3\x41\xcd\x58\xd4\x55\x4b\x07\x8b\x1a\x09\x97\x5a\x07\x8d\x7f\xdc\xe8\xf1\x58\x06\x4d\x02\x71\xf3\x63\xfa\x60\x01\x16\x10\xd7\x93\x02\xfd\x55\x02\xd1\xad\x80\xb8\x68\xcd\x56\x02\xd1\xad\x80\xb8\x28\xcf\xd6\xea\x07\xec\x56\xd0\x2f\x29\x20\x6e\xc5\x56\x2c\xd8\xde\x05\x42\x49\x52\x43\x2b\x10\x4a\xa4\x6a\x2b\xb9\x0c\x0d\xc5\x5a\x2b\x58\xd4\x64\x34\xb4\x02\xe2\x96\xc4\x8d\x20\x3e\x05\xa9\x12\xf4\x6b\x6b\x85\xe3\x14\xc0\x15\xfd\xda\x5a\xf1\x4c\x22\x63\x6b\x05\x70\x25\xf1\xa1\x15\xc0\xb5\x00\xae\x95\xdd\xa6\x00\xae\x05\x70\xad\xac\xd1\x02\xb8\x22\x7f\x5b\x2b\x5b\x50\xc1\x83\x5a\x00\xd7\xca\x16\xe4\xc9\x90\xbe\x0f\x66\xc8\xd3\xe5\x97\x42\xef\x7b\x63\x0b\x2a\x70\xc6\x82\xed\xdd\x58\xb8\x25\x73\x23\x10\x97\xe8\x74\x2b\x20\x2e\x3a\xbb\xb5\x45\x5d\xce\x8d\x60\x97\x0d\x36\x84\xe8\x8e\x15\x60\x98\x40\x74\x2b\x20\x6e\xc1\xcc\x6e\x2c\xc7\x82\x99\x5d\x40\xdc\x86\xbf\xb1\x70\x30\x54\x20\x92\x0d\xe2\x53\x20\x92\xc5\xfd\x9b\xb5\x71\x30\x54\xc0\x66\x04\x7d\x6b\x63\x8d\x16\xb0\x19\xad\x9f\xda\xd8\x97\x4a\xe5\x46\x78\x3b\x5b\xd1\x3f\x7d\xc9\x14\xbc\x9d\xad\x30\xf2\x8d\x91\x07\xb0\x09\x44\xb7\x02\x60\x17\x4c\xf7\x56\x69\x27\xa6\x7b\x81\x72\xb6\x4a\x3b\x61\x97\x05\xc0\x26\x10\xdd\x0a\xec\xb2\xc0\x2e\x5b\xa7\x4e\xd8\x65\x81\x5d\x36\x16\x57\xe1\x5c\xa9\x60\xcf\x93\x84\xd2\x50\x1c\xb6\x02\x60\xa3\x0d\x65\x05\x22\x59\xc0\x66\x04\x17\xad\x0c\x26\x18\x44\xb2\x2d\xfd\x93\xf1\x04\x71\x89\x39\xb7\x82\xf3\x11\x89\xe2\xda\x36\x77\xc7\xcc\x46\xfc\xa8\xb6\xa3\x42\xfd\x93\x6e\xb2\x87\x14\x2c\xea\x82\x9f\xb1\x5d\x06\x04\x3f\x63\x59\x3c\x4d\x4d\x5a\x38\x63\x41\xcd\xb4\x69\xd2\xc2\x19\x0b\xe0\xda\x34\x69\x37\xcf\xc8\xc1\xb1\x76\xcd\x4f\x5c\x8a\x05\xce\xd8\x23\x0f\x0e\xe3\xb9\x1c\x04\x56\x35\xeb\x30\x9e\x0b\xa8\xd8\x61\x43\x05\x54\x2c\x0e\x79\x95\xc0\x6e\x2b\x1c\x0c\x15\x47\xb7\x4a\x0c\xb7\x15\x38\x63\x01\xd6\x3a\x67\x94\x05\x58\x2b\xee\x2f\xac\xdd\xe8\x11\x08\x56\xa0\x87\xc8\x67\x5a\xe5\xb8\xa7\xba\x15\x5b\x3b\x6e\xb5\x8a\xf9\x5a\xf1\xdf\x75\x26\x43\x75\x0e\x67\x15\xfb\xb3\xfb\x0b\x08\x56\x31\x31\x3d\xfd\xd4\x5f\xed\x1e\x4c\x64\x95\xa3\x99\x0a\x95\x23\xb4\xda\x50\x7e\xb6\x0a\x04\x91\x2f\xd3\x2a\x47\x33\x15\x81\x55\xe2\xad\xad\x02\x41\x88\x43\x57\x52\x69\x1a\x1a\xd1\x86\x2a\x74\xed\xe0\x67\xc5\xee\xf4\x24\x4e\x7f\xb5\x33\x6d\x2a\x68\x53\x31\x31\x3b\x1e\x8a\x0a\x5c\x54\xbc\x72\x1d\x67\x59\xc5\x2b\xe7\xf9\x8c\xbe\xc2\x4b\xe1\xa6\x90\xf1\x3c\xfa\xa7\x4f\x06\x4f\x48\xf4\x15\xfa\xc8\x7b\x3e\xa2\xef\x83\x47\x0c\x2a\x56\x4e\x4c\x2a\x27\x26\x1d\x73\xb0\x62\x8c\x4a\xa8\xba\x73\x5e\x53\x81\x8b\xca\x39\x48\x87\xb9\x54\xce\x41\x2a\xe7\x20\x9d\xa3\x99\xea\x06\xa7\xd5\xca\x28\x79\x7c\x93\x55\xce\x91\x2b\xc8\x30\x82\x2e\x67\x94\x40\x86\x81\x8d\x58\xa1\x72\xd5\x29\x59\x1d\x91\x1e\x71\xba\x51\xfd\x3c\xa3\x0e\xf8\x48\x65\xbd\xa3\x9d\x5d\x87\xbf\x39\x60\x15\x57\x5d\x65\x69\x0f\x2c\x3f\x34\xb3\xad\x62\x38\x0e\xe3\x72\x0c\xc7\x2a\xa9\x60\xfb\x47\xe9\x6d\x43\x5e\xdb\x2a\x60\x30\x98\xa7\x75\x30\x5a\x98\x9a\x03\x2a\x8f\xca\xb6\x55\x8e\x27\x46\xa6\x13\x93\xc9\xeb\x98\x50\x07\x06\x24\x1a\x66\x56\xb1\x2a\x07\x06\x64\xc5\x8f\x57\xe1\x64\x03\xe6\x52\x39\x9e\xa8\x98\x9a\x84\x6d\x5b\xc5\x8f\x87\x56\x77\x1d\x95\x9e\x01\x30\x28\xa1\x55\xd2\x9b\x5a\xe5\xcc\xa2\xc2\xde\x06\x74\xa6\x82\x3a\x15\xd4\x21\x96\xdb\x2a\xa8\x83\x66\x5a\x1d\x8d\x67\x85\x1f\x0f\x05\xb5\x4a\x80\xb7\x55\x4e\x37\x2a\x94\x8e\x5c\x56\x56\x71\xee\x55\x9c\x7b\xa3\xeb\x9f\x74\x13\xd4\x21\xc0\xdb\x2a\x67\xd4\x95\xd3\x8d\x31\x78\xfe\x87\x51\x3a\xd4\xa9\x95\x07\x3e\x55\x50\x67\x60\x1e\x54\x8c\xd2\xca\x41\xc6\x80\x7a\x54\xb8\x58\x85\x8b\x91\x62\xd5\x2a\x5c\xac\xe2\xc7\x1b\xf0\x91\x7a\x19\x10\xfc\x78\x03\xdf\x75\xbd\x0c\x08\xa0\x45\x80\xb7\x55\xb8\x98\xf4\xcd\xc7\xa6\xce\xc7\xe5\xf8\xf1\xc6\x61\xe4\xf1\xe3\xa1\x02\x57\x89\xe5\x36\xc4\xe0\xac\x82\x64\x24\x72\xb5\x06\x92\xa1\x02\x57\x07\xcb\x51\x62\x70\x0d\x32\x35\x58\x79\x0d\x32\xd5\x20\x53\xc3\xe3\xb1\x4c\x0a\x71\x0d\xde\x34\xfc\x9d\x08\x93\xee\x5b\x03\xf3\x26\x8e\x98\x06\xe6\x35\x0e\x1d\x26\x8b\xac\x25\xee\x0e\x99\x9a\x1c\x8a\x22\xff\x66\x08\xbe\x55\x02\xbc\xad\x41\xa6\x1a\x6e\xb5\x89\x79\xd0\x40\x32\x84\xde\xea\x4c\xfc\x13\x0f\x5a\x83\x22\x4d\xf0\xbe\xe1\x41\x6b\xc0\xdb\x84\x8f\x34\x0e\x99\x1b\x46\xe9\x84\x8f\x34\x8c\xd2\x86\x51\x3a\xe1\x23\x0d\xa3\x14\x9d\xb8\x4a\x3a\x5a\x6b\x00\x61\x83\x22\x4d\x7f\xfd\xc1\xd0\x90\xb3\x06\x3a\x4e\x42\x06\x90\x92\x33\x54\xe7\xeb\xcc\x8c\x3c\xbc\xa9\xe1\x80\x9b\x85\x91\x07\xf3\x1a\xbc\x69\x16\xfd\x93\xcb\x01\x42\x02\xbc\xad\xe1\x80\x6b\x10\x9f\x09\x49\x69\xb8\xd5\x1a\x1e\x34\x72\xdd\x5a\xc3\x83\xd6\x80\xb7\xc9\x92\x69\x1c\xf3\x7a\x4e\xa4\xaf\xf0\x50\x58\x28\xa4\x9b\xb8\xd3\x51\xc0\x37\xb4\xe7\xea\x84\xb9\x20\x41\x67\x0d\x74\x9c\x2c\xae\x86\xa5\x8a\x12\x5d\x45\xd7\xde\x1a\xe8\x88\x20\x5d\x9d\x1c\x0c\x21\xa0\x6f\xad\xd3\x78\xcc\x82\x06\x1b\x6a\xd8\xb4\x93\xc5\x85\x82\x9d\xa1\x52\x57\x27\x66\x01\x62\x75\xd6\x30\x5f\x27\x8e\xf7\x86\xf9\x8a\x74\x5d\x9d\xfe\xf6\x84\xa1\x60\x67\x68\xd6\xd5\xb9\x74\x39\x8d\x87\x37\x11\x17\x6e\x08\xd9\x59\x9b\xd4\xc9\x8a\x43\xc1\xce\xd0\x9e\xab\x73\x73\x39\x27\x11\x0d\xb0\x9a\x47\x85\xcc\x79\x9c\x65\xa4\xf7\xb5\xb6\xf9\x27\xc4\x67\xc2\x86\xd0\x97\x33\xa4\xfd\xeb\xd4\x92\xc1\x46\x44\x66\xae\x4e\x1c\x9a\xa8\xcd\x19\x52\x72\x95\x18\x6e\x43\xe1\xdf\x90\xf6\xaf\x8b\x80\x9a\x06\xf1\x41\xda\xbf\x2e\xad\x23\x20\x08\xd1\xb9\xba\xb0\xbd\x11\x9d\x33\x64\xe6\xea\x62\x5b\x43\xfd\xdf\x90\xf6\xaf\x0b\x67\x3e\xa2\x73\x86\xe8\x5c\x5d\x6c\x6b\x08\xfd\x1b\xe2\x71\x95\xe4\xc2\xd6\x38\x20\x68\xa0\xcd\xc2\x6f\xdf\x01\x96\x8e\xe9\xb6\x58\x32\x1d\xd3\xad\x83\x36\x0b\x0a\x8f\xb0\x9c\xa1\xe2\x5f\x17\x14\x1e\x7d\x39\x43\x5f\xae\x12\x02\x6e\x68\xfa\x5b\xc7\xed\xbf\x58\x32\x48\xc9\x19\x52\x72\x75\x11\x8f\xd3\x81\xa0\x0e\x04\x2d\x7f\xfd\xc1\x3a\x10\x84\xa2\x5c\x5d\x50\x78\x84\xe5\xac\xe3\x2c\x5b\xf8\xeb\x91\x92\x33\xc4\xe3\xea\x62\x75\xa0\x21\x67\x1d\xde\xb4\xd8\x3b\x90\x92\x33\xa4\xe4\xea\x82\xb5\xa1\x21\x67\xdd\x68\x12\xe7\x4a\x9d\x40\x3f\x14\xe5\xea\x82\xc2\x77\x70\xa9\x73\x42\xba\x70\x2d\xa1\x36\x67\xe8\xcb\xd5\xc5\x61\x28\xa9\x0b\x0c\x99\xb9\x4a\x58\xb9\x75\x4c\xb7\x8e\xe9\xb6\x98\xf3\x48\xd0\x19\xda\x73\x75\x7d\x1b\xca\x3f\x10\x0a\xf4\xe9\xac\x67\xba\xbb\x54\xb7\x5a\xc1\xf3\x87\xfc\x91\x0f\xc1\x50\xab\xab\x0b\xb7\x15\x32\x75\xd6\x61\x6f\x0b\xb7\x15\x32\x75\xd6\x31\xf6\x48\xf8\x6c\x1d\xf6\xd6\x39\x0b\x58\xc4\x11\xa0\x5d\x67\x1d\xa2\xb6\x88\x80\x44\xc9\xce\x3a\x44\x6d\x3d\xea\xe4\x80\xa0\x37\xa6\x39\x3c\x0f\xed\x3a\xeb\x04\xac\x2c\xac\x5f\x94\xec\x4c\x49\x19\x76\xe0\x72\x7c\x6e\x9d\x03\x82\x4d\x58\x64\x87\xd2\x21\x68\x57\x37\x07\xad\x28\xd9\x19\x12\x76\x95\x24\xd2\xd6\x3b\x97\x3b\x22\xd5\x6d\xba\x9c\x26\x41\xe9\x36\x96\x2a\x2a\x77\x86\xca\x5d\x25\x64\xdd\x90\xb7\x33\x04\xed\xea\x86\x76\x21\x68\x67\x48\xd8\xd5\xad\x19\x8d\x7b\x0d\x09\xbb\xba\xa1\x5d\x9d\xd0\xc0\x8e\x7b\x6d\x63\xa9\x76\x0e\x08\x3a\xa0\xb5\x39\xf3\xef\x80\x56\xff\x65\x51\xe1\x46\xb0\xb6\x0e\x6b\x23\xe5\xa6\x21\x84\x67\x1d\xd6\xb6\xd9\x19\xd0\xc3\x33\xf4\xf0\xea\xc6\x37\xd4\x09\x22\x44\x0f\xaf\xee\xae\x7f\x32\x4a\x00\xe1\xc6\x0d\x84\x3a\x9e\x21\x8b\x57\x37\xe6\x2b\xea\x78\x86\x1e\x5e\xdd\x6c\x02\x08\xe1\x59\xe7\x28\x61\x6b\x95\x10\x7e\x82\xf4\x5d\x25\xbb\xb5\x75\x20\x13\xe9\xbb\xba\x41\xf1\x0e\x6b\xeb\x10\xb4\xcd\xf1\x29\x9a\x77\xd6\xf1\xa0\x6d\xc2\x76\x49\xa3\x61\x48\xdf\xd5\xcd\xf1\x3e\xd2\x77\xa6\x6c\x1a\x1b\xde\x84\x10\x9e\x29\x9b\xc6\xc6\xad\xda\xe1\x77\xe8\xe1\xd5\xad\x99\x0c\x8e\xa2\x87\x57\x37\x26\x31\x7a\x78\x46\x8a\x8d\xba\x35\x93\x31\x35\x3b\xe0\xba\x89\xd0\xed\x97\xc7\xc1\x39\x2d\x79\x81\x8c\x84\x1b\xd6\x1d\x63\xeb\x01\xda\xd1\xd1\x33\xd2\x6f\x54\xa2\xd3\x0d\x1d\x3d\xeb\x90\x3e\xa2\xd3\xad\x43\xfa\x90\xd3\xab\x07\x68\x47\x4e\xcf\x3a\xbe\x36\xa2\xd3\x0d\x39\x3d\x43\x4e\xaf\x1e\x5c\x36\x83\x68\xc5\xc1\x39\xed\x01\xda\x07\xd8\x3c\xc0\xe6\x93\x74\xf9\xa4\x90\x1b\x11\xf5\x3b\xc0\x66\x84\xf7\xea\x61\xc9\xa0\xb8\x67\x48\xed\x55\x42\xd6\x0d\x19\x3d\x1b\x91\xcb\x31\x35\x06\x07\x19\x08\xe7\xd5\x83\x01\x31\xa0\x87\x03\x93\xf8\x60\x40\x0c\x4c\x62\xb4\xf5\xea\xe1\x80\x00\x6d\x3d\x43\x4d\xaf\x92\xab\xdc\x10\xd5\xb3\x01\x91\x3c\x1c\x60\x91\x88\xc4\x90\xd8\xab\x04\xa0\x1b\x4a\x7b\x86\xc4\x5e\x3d\x2c\x04\x94\xf6\x0c\x19\xbd\x7a\xd8\x04\x90\xd1\xb3\xc1\x91\xc7\x21\x22\x06\x51\x3d\x43\x4d\xaf\x9e\xae\xcb\x17\x85\x9b\x42\xfa\x0e\xb4\xa3\xa6\x57\x0f\xa6\x06\xa2\x7a\x86\x9a\x5e\x3d\x40\x3b\xa2\x7a\x36\x40\xf1\x03\xb4\xa3\xad\x67\x03\x76\x79\x08\x7e\x41\x69\xcf\x90\xd8\xab\x67\xa9\x4e\x6e\x04\x50\x1f\x38\xce\xe0\xcc\x77\x40\x39\x49\xd2\x6e\x08\xee\xd9\xe0\xcc\xf7\x70\x7c\x36\x40\xef\x01\xe5\x3c\x2c\x19\xb2\xa8\x18\x62\x7c\xf5\x10\x2f\x86\x0a\x9f\xa1\xbb\x57\x0f\x91\x9a\x03\x48\x1f\x90\xd3\x73\xf5\x4f\xea\x04\xd2\x0f\xae\xcf\x51\x55\x27\x23\xcf\xf1\xee\xc0\x2b\x87\xe0\x5e\x3d\x98\xee\x83\xe3\x5d\x24\xf6\xea\xc5\x80\x40\x5b\xcf\x06\xe8\xad\xf8\xf5\xc1\xe1\xc8\x70\x92\x59\x2f\x0e\xa3\xd1\x19\x64\x02\x6a\x6e\x64\x86\x80\xf3\xe8\xee\x55\x45\xba\x93\xfb\xc5\x06\xa6\x3b\x09\xe7\x0d\xc1\x3d\x43\x70\xaf\x92\x67\xde\x50\xda\x33\xb4\xf5\x2a\xe9\x0d\x0d\x6d\x3d\x1b\xe0\x3c\xc9\xc1\x0c\xa5\x3d\x43\x5b\xaf\x5e\x2d\x04\x70\x1e\x19\xbd\x7a\x31\x20\x90\xd1\x33\x84\xf3\xea\x25\x1e\x67\x60\x88\x0f\x0c\x71\x45\xba\x8f\xa9\xcb\x19\x10\x6c\x85\x01\xa4\x93\x80\xa6\x5e\x8e\x77\x07\x98\x4c\x1e\x9a\x7a\x71\x57\x91\x8e\xc6\x06\x48\x7b\xb5\x3a\x40\xda\xb1\xb9\x51\x57\x21\xcf\x08\x72\xea\x72\xf3\xff\x40\x28\x50\xdc\xb3\x81\x1f\xef\x6a\x41\xe0\xc7\x1b\xc0\xf0\x65\x67\x40\x71\xcf\x90\xda\xab\x17\x33\x7b\x80\xb8\x03\xc4\xbd\x38\xb8\x06\x74\x16\xfd\xbd\x7a\x71\x70\x0d\x9c\x7b\xe8\xef\x55\x85\xd6\x0f\x60\x78\x10\x2f\x78\x89\x67\x1e\x20\xee\x00\x71\x2f\x66\x36\x12\x7d\x86\x44\x5f\xbd\x1c\xcd\xa1\xc6\x67\xca\xcc\x73\xb5\x20\x88\x02\x44\x7f\xaf\xde\xa3\x42\x06\x06\x8b\x1a\xc9\x7d\x9b\x9c\x59\x4c\xc0\xf5\xe2\x17\x45\x9b\xcf\x26\xc4\x57\x51\xf4\x48\xf4\x19\x12\x7d\xf5\xc2\x71\xd0\xe6\xb3\x09\xb8\x5e\x9c\xa5\x48\xf4\x19\x6a\x7c\x95\xfc\x5a\x86\x0c\x9f\xa1\xbf\x57\x1f\x66\xf6\x84\x0d\x4f\x8f\x85\xa9\xe4\xd7\xb2\x49\xbc\x20\xa2\x7c\x95\xc4\xff\x86\x36\x9f\x4d\xce\x93\x1f\xe6\xc1\x04\x86\x91\xe8\xab\xa4\xf9\xb7\x09\xe2\x92\x80\xa8\x3e\x96\xce\x84\x22\x23\xd1\x57\x1f\xe6\x01\x99\x87\x0c\xa5\xbe\xfa\x70\xab\x4e\xac\xf4\x09\x64\x3e\x78\x13\xda\x7c\x36\x61\xc3\x8f\xd0\x86\x09\x1b\x9e\x58\xe9\xcf\x5f\x66\x32\x04\xfb\x0c\x89\xbe\xfa\x08\x33\x46\xa2\xcf\x90\xe8\xab\x8f\x43\xe6\x09\x1b\x9e\xe0\xe8\x63\x63\x99\xe0\x28\xf2\x7d\x55\xe1\xfa\xa8\xf8\xd9\x04\x32\x1f\xc7\xd1\x13\x6e\x8b\x52\x5f\x55\xb8\xfe\xc4\x20\x47\xa9\xaf\x92\x35\xcb\x10\xec\x33\x94\xfa\xaa\x22\xf3\x27\xe8\x88\x52\x5f\x25\x6b\x96\x4d\x3c\x93\x93\x88\x98\xc7\x42\x40\xb7\xcf\x50\xea\xab\x8f\x9d\x61\x12\x44\x38\x01\x42\x04\xb5\x6d\x62\xba\x4f\x0e\x99\x1f\x26\x31\x62\x7e\x46\xf2\xa5\xaa\x18\x7e\xa4\xfd\x6c\x36\x06\x19\x9b\x01\x85\x3f\x9b\x98\xee\x6f\x72\x77\x4c\x77\x84\xfe\xaa\x02\xfb\x27\x27\xcf\x93\x83\x8c\x07\xc3\x9a\x80\x2b\xea\x7f\xf5\x2d\x06\x04\x7b\x1e\xa1\xbf\xaa\x57\x00\x26\xa6\xfb\x84\x1a\xbf\xad\xcb\x19\x10\xd0\x51\xd1\xfe\xa4\x7e\x32\xd4\xff\xaa\xa2\xfd\x27\x87\xcc\x13\xc8\x7c\xc4\x1c\x4f\x20\x93\xb4\x50\xf5\x1d\xa6\x0d\xb1\x33\x24\x89\xaa\x0f\x2e\x86\x86\xa0\x91\x24\xaa\xea\x15\x00\xa4\x04\x8d\x24\x51\x55\xaf\x00\x4c\xc0\x15\xf1\xc0\xfa\x20\x68\x64\x8e\x32\x54\x03\xab\xa2\xfd\xe7\xa2\xef\xb8\x29\x1f\xac\x8d\x24\x51\x36\x9d\xf7\x36\x05\xf6\x93\x24\xca\x10\x0f\x6c\x81\x97\x59\x26\x6e\x4a\x72\x45\xb5\xc0\xbe\x84\x94\xa0\x21\x25\xd8\x82\x16\x17\x6e\x4a\x14\x05\x1b\xa9\x16\x6c\xc2\x82\x51\x14\x6c\x64\x7b\x36\x84\x05\x6d\xba\x63\xb2\x05\xce\xbd\xc9\x0e\x65\xa8\x05\xb6\x80\xed\x3d\x41\x5a\x72\x45\x35\x05\xf6\x23\x21\x68\xa4\x85\x6a\x01\xaf\x31\x12\x82\x36\x1d\x70\x1b\xba\xe1\x86\xa0\xa0\x4d\x87\xd1\x46\x7a\x70\x23\x3b\x94\x21\x21\xd8\x02\x06\x39\xd9\xa1\x0c\x09\xc1\x16\xb4\x0c\x41\x5a\x94\x04\x9b\xa2\xfd\x11\x14\x34\x92\x44\xb5\xc0\x0e\x36\x1f\x8d\x7f\xdc\x48\xcb\x90\x97\x6e\x50\x12\x6c\x0a\xe8\x9f\xa4\x54\x46\x57\xb0\x05\xec\x79\x92\x43\xd9\x7c\x34\x9e\x43\x70\x74\x05\x8d\x6c\xb8\x2d\x10\x15\x82\xae\xa0\xa1\x24\xd8\x10\x13\x37\xf2\x40\x19\x99\x9f\x1a\x62\xe2\x86\xca\xa0\x21\x2f\xd8\x02\x71\xa2\xa8\x0c\x1a\xba\x82\x2d\xb0\x60\x11\x14\xb4\xe5\x80\xdb\x14\xe5\x8f\xae\xa0\xad\xc8\xc8\x13\xca\x44\xfe\x28\x43\x2d\xb0\x05\xce\xbb\x91\x09\xb4\x95\x68\x12\x2b\x0e\x61\x40\x43\x18\xb0\x85\xa5\x7f\xd2\x24\x63\x2e\xb1\xb8\x16\xa0\x8a\x3e\x60\x0b\xbc\xff\x85\x4c\xa0\x2d\xf7\x26\xb4\x80\x21\xbe\xf0\x72\x92\xa1\xaa\x05\x96\x0c\x89\xaa\x8c\xd4\x54\x2d\xe0\xae\x42\x11\xd0\xc8\x42\xd5\xc2\x53\x21\x77\xcf\x3c\x4d\xf6\xa3\x05\x54\xae\xc2\x80\xb0\x1f\xa1\x16\x68\x8b\xf4\x71\xe1\xd1\x78\x50\x71\x39\x0e\xb6\x88\x67\x0a\x0d\x40\x43\x03\xb0\xc5\xf8\xcf\x41\x99\x64\xb8\xb2\xe5\x20\xd9\x62\x54\x35\x34\xcd\x41\xb2\x21\x15\x6e\x88\x00\x1a\x42\x7f\x2d\xc2\xde\x56\xa3\x67\x8d\xcb\x4d\xff\xe4\x72\x37\xeb\x5b\x24\x3a\x04\x85\x3f\x43\xd3\xaf\x45\x82\x9f\x50\xf1\xb3\x35\xe8\x04\x9c\x6c\xe1\x84\x54\x7e\xad\xc8\x9b\x2e\xa8\xf8\xd9\x72\xf0\x69\x91\x19\x8d\x6e\x9f\x2d\x0f\xe3\x6b\x91\xe8\x3a\x54\xfc\x0c\xf9\xbe\x16\xab\xfe\xc9\x4c\x99\xd4\x49\x74\x1d\x2a\x7e\x86\x7c\x5f\x8b\x44\x70\x2c\x78\xde\x5a\x0c\x61\x63\xb0\x39\x5b\x59\x4e\xfe\x3c\x77\xbc\x17\x32\xcd\x17\x3d\xd2\x8c\x06\x9f\xd0\xf4\x6b\x64\x3f\x37\xa4\xfd\x6c\x81\x4f\x8a\xe1\x47\xe1\xcf\xd0\xf4\x6b\x51\x33\x1a\x7c\x5a\x9b\x26\xf1\x32\x0b\xba\x7d\x46\x8a\xb1\x16\x39\x6c\x44\xc5\xcf\x50\xea\x6b\x48\x84\x1b\xda\x7c\xb6\x0e\x23\x8f\xc5\x82\x44\x9f\x2d\x92\x95\x46\x36\x96\x05\x13\x44\xb7\xaf\x29\x86\x1f\xdd\x3e\x43\xa2\xaf\x45\x2d\x08\x48\x1f\x6a\x7c\x2d\x6e\xee\x8e\xed\x8d\x1a\x5f\x8b\x5b\x97\x53\x27\xc9\x4a\x23\xbb\xcd\x22\x7a\x05\x89\xbe\x16\x31\x63\x90\xe8\x33\x24\xfa\x5a\x24\x18\x7b\x71\x20\x8c\x44\x5f\x8b\x9c\x98\x20\xd1\x67\xa8\xf1\xb5\xc8\x89\x09\x6a\x7c\xb6\x49\xe9\x1b\x59\x4f\xa8\xf1\xd9\x0e\x8c\x27\xeb\x69\x63\x66\x6f\xf0\x29\xb2\x9e\x50\xe3\xb3\x4d\x06\xd3\xc8\x16\x84\x0c\x9f\x6d\x00\x26\xb1\x05\x6d\x00\x66\xbb\x0b\xb4\x25\x22\x38\x90\xe1\x33\x54\xf5\x5a\x22\x82\x03\x71\x3d\xdb\x6e\xef\x36\x54\xcb\x6d\x13\x93\x82\x48\x5e\x4b\x2e\xd0\x60\x88\xe4\xd9\x06\x60\xc8\x81\x66\x9b\xb3\x95\x0d\xc0\x24\x0e\x19\x37\x36\x2d\x5a\x79\x2d\x71\xe4\xb1\x39\x46\xd9\x64\x5a\x45\x8b\xdc\x36\x04\x6d\x67\x1a\xcf\x92\xd9\x00\x0c\x5a\x79\x2d\x71\xba\xb1\x49\xe4\xbe\x0b\x97\xb3\x64\x36\xa7\xc4\xdb\xcd\xd7\x86\xc2\xb8\x21\xae\x67\xa8\xea\xb5\xd4\x74\xf9\xa0\x70\x51\x58\x29\xdc\x14\xd2\x78\xd6\x11\x32\x7c\x86\xfe\x5e\x4b\x04\x6b\x20\xc3\x67\xa8\xe9\x35\xbd\x41\x80\x7e\x9e\x6d\x92\xec\x25\x96\x0c\x32\x7a\x86\x70\x5e\x4b\x44\x66\x6f\xa8\xdc\x6e\x8c\x27\x3b\x03\x32\x7a\xb6\x1b\xe3\x89\x4d\xb3\x89\x34\x41\x46\xaf\x25\x6c\x1a\x64\xf4\x0c\xc5\xbc\x96\xb0\x69\x50\xcc\x33\x34\xf2\x5a\xe2\xd0\x7e\xc3\xc5\x76\xa7\x49\x2c\x19\x54\xf1\x0c\x1d\xbc\x96\x88\xf5\x40\x07\xcf\x76\xa7\x9b\xac\x0e\x24\xef\x6c\x0f\x9a\x04\x17\x43\xf2\xce\x90\xbc\x6b\x89\x85\x80\xd6\x9d\xed\xc9\xdd\x61\x58\x1b\x58\xdb\xc0\x9a\x5e\x40\xd8\x04\xfc\xed\x49\x9d\x9a\xde\x93\x6e\x4e\xda\xc9\xce\x80\x54\x9e\x21\x8e\xd7\x8c\x58\xa4\xcd\x39\xf2\x76\x1f\x64\x33\xb6\x0b\x14\xf3\x6c\x3b\x17\x6b\x7a\x2b\x61\xe3\x7c\x44\x23\xaf\x19\x46\xfe\xe6\x14\x06\xc5\xbc\x66\x51\xff\x64\x82\x39\xe4\x35\x4b\x74\x93\x40\x95\xed\x90\xd7\xf4\xaa\x02\x32\x7a\xb6\xfd\xd8\xa6\x19\x8e\xad\x4d\x70\xf3\xde\xdc\x9d\xbd\x63\x73\x8e\x8c\xe0\x5e\x43\xdf\xdc\x36\xa1\x81\x08\xee\x35\xcb\xfa\x27\x13\x0c\x82\x66\x6c\x28\x08\xee\x19\x89\x02\x9b\x69\x75\x80\x8a\x1b\x82\x66\x5a\x1d\x10\x34\x04\xf7\x1a\xf2\xe8\xb6\xb1\x7a\x37\x58\x67\x38\xcb\x10\xdc\xb3\x7d\x19\x4f\x2d\x04\x10\x0c\x89\xbd\x66\x10\x9f\x0d\xc3\xda\x30\x2c\xbd\x63\x40\x62\x42\x43\x85\xaf\x19\xb1\x48\x1b\x86\x85\x18\x5f\x33\x88\x0f\x2a\x7c\x86\x0a\x5f\xd3\xdb\x08\xa4\x30\xb4\x13\xb8\x11\x73\xfe\x60\xe0\x1e\x60\x8d\xe4\x60\x76\xa0\x5d\x27\xd0\x4d\x16\x02\xea\x7d\x86\x42\x5f\x33\x16\x02\x42\x7d\x76\x22\x43\x87\x5f\x0c\xbd\x3e\x3b\x91\xc6\xc3\x9b\x50\xef\xb3\x13\x19\x90\xff\x83\x23\x8f\xc3\x01\x11\x9a\x7e\x0d\x3d\x76\x43\xcc\xcf\x50\xea\x6b\xc6\x91\x07\xf9\x14\x8d\x7c\x8a\xcd\x60\x5a\x07\xd7\xe2\x01\x47\xd1\x63\x37\x04\xfb\xec\x18\x03\xc3\xd2\x41\xb0\xcf\x8e\x23\x67\x33\xb6\x0b\xd4\xf8\xec\x18\x83\x7d\xf5\x4f\x1f\x6c\xb2\x32\x36\xe3\x80\x1d\x89\x3e\x43\x63\xaf\x19\x6f\x8c\x1d\x3c\x7e\x07\xc8\x34\x76\x06\xc4\xf5\xec\xc0\xc9\x32\x3b\x03\x1a\x7b\x76\x80\xcc\xcc\x7a\x42\x71\xcf\x0e\x98\xa7\xd7\x1f\x90\xd3\xb3\xe3\x7e\xbc\x96\x71\x14\x23\xa7\x67\x87\x8c\x9b\x99\xa5\x73\xa0\x5d\x08\xe8\xb5\x6c\xba\x9c\xbe\x83\x79\x7a\xa9\x01\xe5\x3c\x43\x39\xaf\x65\xde\x25\x46\x39\xcf\xd0\xc3\x6b\x7a\xa9\x01\x3d\x3c\x3b\x20\x19\xba\xf1\x86\xbc\x9d\x91\x4b\xb2\xe9\x55\x85\x83\x23\x0e\x95\xbb\x96\xf1\x09\xa3\x72\x67\xa4\x94\x6c\x19\xf7\x2f\x9a\x77\x86\xd8\x5d\xcb\xbc\x69\x4f\x66\x49\x43\xe5\xae\x65\x6c\x86\x03\x6b\x3b\x93\xa1\x23\x72\x0b\x95\x3b\x43\xd7\xae\x65\x22\xc9\x11\xb4\xb3\x03\x41\x23\x9d\xb1\x1d\x08\x1a\xba\x76\x2d\xe3\xd8\x42\xde\xce\xd0\xb5\x6b\x99\xe3\x3e\xe4\xed\x0c\x5d\xbb\x96\x39\xcd\x3e\x40\x11\x89\x22\x5b\xc6\x4a\x27\x5f\xa4\x21\x53\xd7\x32\x78\x7f\xc0\x12\xd4\xea\x5a\x5e\x74\x13\x5f\x1b\xc2\x74\x2d\x63\x33\x1c\x60\x03\x99\xba\x96\x35\x69\xb1\xeb\x0e\x99\xdf\xc9\x71\x6c\xc8\xd4\x19\xc2\x74\x4d\x2f\x4a\x1c\x4c\x38\x34\xe8\x9a\xde\x89\x38\x60\x09\x1a\x74\x2d\x43\x67\xc8\x4f\x69\x88\xcf\x35\xbd\xfe\x70\x41\x08\xe4\xe6\x5a\xe1\xf4\x0d\xd5\x39\x43\x4a\xae\x15\x4e\x37\x2e\x2f\xc2\xa2\x13\xd7\x0a\xb1\x1e\x97\x75\x4f\xee\xca\x46\x3e\x62\x23\x85\xa5\x5d\x88\x4f\xe1\xcc\xe2\xb2\xee\x2f\xeb\x5e\xaf\x3f\x5c\x56\xf1\x4d\xd4\x09\x36\x23\x3a\x67\x97\x55\x5c\xd0\x77\xb8\xd8\x60\xd7\x17\x73\xd3\x9b\x0e\xe8\xd2\x19\x82\x74\xad\x40\x67\x2e\xa7\x06\x97\xcc\xda\xa4\x63\xb4\xcb\x01\xc1\x85\x37\x15\xfc\x4d\x28\xd8\x19\x2a\x75\x8d\x94\xc3\x76\xf1\x76\x5d\x72\x70\x17\x38\xce\x05\x04\x2e\x20\xa0\x37\x1d\x90\xb5\xb3\xeb\xf6\x59\x2b\xb8\x6a\x11\xab\xb3\x9b\x69\x12\xc7\x13\x17\x1f\x16\x2a\x75\xad\xe0\xaa\x45\xac\xce\x50\xa9\x6b\x7a\xfd\xe1\x62\xad\x5d\x90\x41\xaf\x3f\xa0\x60\x67\xd7\x39\x55\x43\xc2\xde\x2e\x6e\x7f\x34\xeb\x5a\xe1\x85\x5d\xc4\xea\x0c\x41\xba\x56\x78\xe9\xe6\xe2\xc3\xba\xc0\x45\x59\x2a\xa4\x9d\xc0\x85\x5e\x7f\xb8\x48\x0f\xa0\x52\xd7\x10\xa6\xb7\x0b\x45\xba\x95\xc6\x33\x3f\x51\xb0\xb3\xdb\x78\x70\x44\x16\x5e\x1c\x5b\xb7\xf1\xe0\x30\x5f\x2f\x18\x82\x90\x5d\x2b\xc8\xeb\x5c\x1c\x5b\x17\x60\x29\x38\x77\x2e\xc0\x72\xe1\x4d\x7a\xd3\xe1\xa2\x47\x80\xc8\x5d\x2b\x90\x94\xcb\x01\xc1\xed\x34\x1e\x0e\x7e\x39\x20\xb8\x9d\x1b\x71\x12\x81\x2a\x9e\x5d\x70\xa9\x72\x12\x71\xc1\xa5\xeb\xa6\x62\xab\x70\xf0\xcb\x7b\x16\x68\xe4\xb5\x0a\xd2\x5e\x18\x16\x8a\x79\xad\x82\xb4\x48\xe5\x19\x1a\x79\xad\x26\x5d\xce\x80\x60\x4d\x56\x90\xf6\x72\x10\x7c\xe1\x62\x15\xe7\xce\x85\x8b\xa1\xad\xd7\x2a\x3e\xd6\x0b\xed\xba\x20\x98\x5e\x6a\xb8\x04\xfa\x5d\x07\xb2\x56\x89\xb6\xb8\x9c\x2f\xdc\x5f\x56\x54\xee\x0e\xed\xba\xca\x8a\x8a\xcb\x06\xc1\x3d\x43\x70\xaf\x55\x30\xf9\x72\x94\x70\xf1\x76\x55\xa8\x07\xda\x7a\x86\xb6\x5e\xab\x38\x62\x2e\x0c\xeb\x6e\xea\xe4\x70\x19\xa5\x3d\x43\x62\xaf\xd5\xae\x7f\x32\x15\xdd\xe9\xd5\xaa\xe6\xe7\xd6\x8d\x18\xa5\xae\xcb\x19\xf9\xc3\xdd\x09\xc1\x40\x93\xcf\x10\xe3\x6b\x15\x3e\x72\x71\x96\x21\xb8\xd7\xaa\xa6\x37\x50\x79\x2f\xcf\x08\xcf\x29\xa2\x7a\x76\x71\x81\xf9\xeb\x04\xff\x40\x28\x2e\x11\x7b\x17\x4e\xa6\x77\x0d\xee\x55\xdd\x3c\x40\x00\xfb\x72\xe8\x70\xb1\x3f\x2b\x07\xd7\x17\xfb\xf3\x82\xb8\xc8\xe3\xdb\xc5\xd4\xbc\x20\x6e\xd5\x2a\xc1\xd4\x44\xb7\xaf\x55\xfc\xa2\x97\xe3\x09\xe4\xfb\x5a\x65\x95\x3c\x42\x70\x1e\x9c\xac\x62\x94\x3e\x5e\x4d\x7b\xd0\x2f\xbd\x41\xf0\xa0\x5f\xc8\xf7\x35\xbd\x41\xf0\x78\x35\x0d\x31\xbf\x56\x61\x19\x88\xf9\xd9\xc3\x15\xd6\x38\xb8\x7e\x00\x36\x0a\x7f\xad\x01\xed\x88\xf9\x19\xc2\x7b\x4d\xaf\x15\x20\xbc\x67\x48\xed\xb5\x86\x1f\xe7\x25\xfd\xd3\x9f\x7f\x83\x65\x20\xbc\x67\x08\xef\xb5\x96\x68\x12\x0c\xeb\x81\xb8\x8d\x53\x38\x64\xf8\xec\x39\xc6\xb6\x06\xcb\x40\x86\xcf\xd0\xdf\x6b\x7a\x59\xe0\x01\xae\x08\xef\x35\x54\xeb\x0d\xe1\x3d\x7b\x30\x2c\x54\xeb\x0d\x71\x3d\x43\x55\xaf\x35\xce\xd6\x1e\xe0\xfa\x00\xd7\x86\x73\xe7\xa1\x00\x83\xd4\x5e\x6b\xc4\xb3\x3e\x0e\x5a\x51\xd5\x6b\x8d\xf7\xd5\x10\xd7\xb3\x07\x8e\x36\x50\xfc\xe1\x0a\x7b\xe0\x68\x83\xa0\xa3\xb8\x67\x0f\xab\xb2\xe1\x99\x44\x71\xcf\x90\xda\x6b\x8d\xb9\xff\x80\x4c\x84\xf7\x5a\x83\x8b\x23\xbc\x67\xcf\x41\xb2\x35\xce\xd4\x90\xe1\x33\xf4\xf7\x5a\x9b\xfa\xa7\x2e\xa7\x9d\x88\x50\x21\xbc\x67\x08\xef\x35\xbd\x56\xf0\x30\x35\x1f\xe8\xd8\xc0\x7b\x14\xf7\x0c\x55\xbd\xd6\x98\xc9\x88\xeb\xd9\x03\xf3\x1a\xc7\x67\x88\xeb\xd9\x03\xde\x1a\xd0\x8e\x8e\x9e\x21\xa0\xd7\x1a\x67\x6a\xe8\xe8\xd9\x9b\x5c\x8e\xcf\x05\xc9\x3c\x7b\xd0\x2e\x34\xe8\xed\xf1\xce\xeb\x9b\xd4\x49\x20\x1d\xca\x79\xf6\x30\x20\x1b\x81\x74\x0f\x24\x7b\x80\x16\x72\xf3\xf6\x20\x68\x0f\x03\xb2\x73\x28\xf6\x30\x20\x1f\xce\xb2\xae\x49\x0b\x68\x3d\x40\xab\x43\x3d\x1e\xa0\xf5\x00\xad\xae\xf9\x09\x68\xa1\xaa\xd7\x7a\xd2\xe5\xb4\x13\x67\x59\x07\xc5\x1f\xa0\xf5\x00\xad\xce\xd1\xf1\x03\x9f\x1e\xb6\x62\x87\xa4\x3c\xa2\x57\xd0\xdf\x6b\x5d\x93\x16\xf1\x14\x84\xf7\x5a\xc7\x56\x44\x5b\xcf\x1e\x48\xd6\xb1\x15\x1f\x48\xf6\xc0\xa5\x0e\x1f\x41\x7e\xcf\xd0\xdd\x6b\x1d\x1f\x3b\x82\x7b\xf6\xf0\x76\x75\xdc\x2b\x0f\x08\x7a\x78\xbb\xf4\x52\xc3\x03\x82\x1e\xa4\xaf\xfb\xf9\x57\x46\x9a\x2f\xa3\xc2\xd7\xba\x47\x46\xe4\xe0\xe7\x9e\x39\x00\x41\xdd\xcf\xbf\x72\x70\xb3\x30\x87\xc0\xe3\xf0\x99\x9c\x91\xe6\xcb\x01\x6f\x3c\xaf\x3f\xe4\xe0\xf4\x30\x07\xbc\xf1\x7d\x70\xa3\x48\x9d\x30\x41\x94\xe5\x33\x92\x7e\x39\xe0\x02\x23\xab\x78\x0e\x91\x3a\x23\x75\x3a\x26\xe7\xe0\x47\x9c\x39\x24\x46\x7e\x71\x77\x47\xa9\x8c\xea\x5f\x43\x59\x3e\x07\x72\xce\x06\x38\x63\xf7\x60\xa2\x8c\x22\x60\x0e\xd0\xc3\xee\x4a\x3a\x39\x90\x73\x36\x00\x56\xdd\x83\x89\x32\xc2\x80\x39\xe0\xb7\x47\x83\x3e\x07\xe3\x46\x80\x15\xef\x44\xe4\xe0\xbc\x30\xa3\x01\xd8\x78\xfd\x21\xa3\x01\x98\x51\xfd\x6b\xdd\x05\x44\x72\x30\x1a\x8f\x8d\xd8\x2f\x03\x92\xa9\x13\xce\xd8\x7d\x75\x64\x14\x01\x73\xc0\xc3\xdf\x1f\x7d\x77\x22\x99\xd1\x07\x6c\xdd\xd9\x7a\x0e\x99\xa1\xcb\x0c\xdd\xa3\x49\x99\xa1\xe3\x2c\x00\xb5\xfa\x8c\x4c\x60\x46\x1f\xb0\xf1\xf6\x44\x0e\x85\xe7\xee\x46\x65\xe3\xed\x89\x8c\x4c\x60\x46\x18\xb0\x8d\xc0\x20\x17\x7a\xe4\x38\xd8\x46\xa4\x9b\x64\xcd\x46\xf5\xaf\x8d\xc8\xd3\xac\x3c\x62\xf7\xae\xb5\x11\xb9\xbc\x32\xc8\x00\xe0\x70\xcf\x7e\x0e\xa4\xd2\x0e\x70\xc6\x91\x18\x10\x87\xc3\x8c\x30\x60\x43\xd7\x3e\x23\x0c\x98\x03\x07\x03\xe8\xda\xe7\xd0\xa8\xd3\x71\xb0\x8d\xcc\x3f\x3b\x3d\xc2\x18\x1d\x99\x26\x75\x9e\x11\xa7\x05\xa3\xd0\xf8\xce\xe5\x6e\xa8\x36\x5e\x90\xc8\xa1\xd3\x24\x50\x11\x09\xfb\x1c\x06\xdd\x04\x15\xfd\xb5\x87\xff\x4c\x28\x32\xaa\x81\x39\x60\xa9\x8e\xc6\x53\x1d\xd4\x8d\xa5\x3a\x1a\xcf\xca\x59\x5f\x46\x27\xb0\x8d\x4e\x27\x48\xbe\x1d\xf0\xb9\x8d\xce\x63\x99\x74\x02\xf2\x87\xe8\x7d\x0e\x93\x4e\x70\x94\x30\x06\x37\x5a\x5c\xce\x01\xc1\x18\xfc\x73\x33\x30\x38\xcd\xc6\xa4\xbb\x9b\xc1\xc6\x7c\x1d\x53\xff\x64\x95\x00\x84\x63\x31\x5a\x9b\xc9\x0b\xe6\x8d\x4d\xe1\x61\x60\x20\x6a\x08\xd4\x67\x94\x01\x73\xe0\x00\x73\x6c\x66\xdf\x61\x4e\x1d\x26\xc5\x61\x5c\x0f\xf3\x14\x4a\x37\xb4\xc8\x0e\x13\x0d\x43\x77\x1c\x96\x0e\xc9\xb7\xd1\x09\x6c\xe3\xd2\x4d\xf2\x6c\xa3\x05\xd8\xc6\x63\xe1\x3e\x9a\xc4\x59\xe5\x78\x5c\xfe\x98\x3e\xa0\xe3\xd0\x82\x20\xa5\x76\xc0\x93\x36\x03\x3d\x7a\x0c\x32\x9e\xb4\x19\xe8\xd1\xe3\xc1\x01\x99\x93\x05\x11\x81\xcc\x88\x27\x6d\xba\x79\x90\xd1\x10\xcc\x91\x03\xcc\xe9\x3a\x14\x39\x82\xa3\x28\x0a\xb6\xe9\xde\xce\x8c\xb0\x60\x46\x51\xb0\x4d\x27\x53\x39\x3a\xb1\xcb\x28\x0a\x36\xf4\xed\x73\x74\x62\x97\x11\x0f\x6c\xbc\x28\x91\x63\xe4\x72\x3c\x69\x33\xd1\x24\x20\x13\xf1\xc0\x36\x8d\x7f\x26\xda\x89\x5f\x6c\x66\xea\x4c\x34\x09\xd6\x86\x94\x7d\x8e\x89\xcb\x1d\x0f\xdb\xcc\xd4\xe9\xc6\x73\x46\x3c\xb0\x4d\x67\x58\x19\x0d\xc1\x8c\x24\x60\x9b\x2c\x1d\x94\x01\x33\xea\x7f\x8d\x37\x1d\x32\x22\x80\x19\xa1\xbf\x36\xdd\x24\xce\xe8\xfd\x65\x14\xfe\xda\x6c\x34\xc9\x21\x2c\x23\xe6\xd7\xd0\xa0\xcf\xe8\xf6\x65\x24\xfa\xda\x74\xeb\x22\x47\x27\x68\x39\xe2\x17\x9b\x1e\xcb\x9d\x11\xec\xcb\x28\xf5\x35\x84\xe9\xff\x3f\xc2\xee\x27\x87\x42\x5c\xc9\xf3\xfd\x3c\x57\x71\x77\xf0\x0e\x10\x61\x87\xa5\x9c\xbd\x71\xf7\x1e\x00\x83\x54\x83\xaa\xba\xba\x5d\xb5\xff\x56\xfa\x83\xd4\x52\x4d\x72\x70\x26\x08\xb0\x31\xf6\xcf\xf1\x8f\xef\x09\xc0\xbe\x80\xe8\xeb\xe7\xf8\x2e\x37\x9e\x94\xec\x3c\xb5\xde\xbc\xb8\xe6\x9e\xa7\x67\x6f\xee\x29\x6b\xe0\x03\x84\xd8\x9a\x7b\xb2\xef\xce\xcb\xd0\x35\xa3\xd4\x3c\xfb\xa5\xf3\x5d\xe7\x29\xd9\xb9\x2c\xac\xd8\x96\x2f\x1c\x1b\xab\xed\xb4\x05\x01\xef\x05\xf0\x5e\x3f\xa7\x7b\x2e\x47\x37\xa0\xf6\xfa\xb9\x22\x92\x81\xb8\x17\x50\x7b\xfd\x7c\x74\x9e\xbc\xa1\xe9\x75\x0c\xfa\x00\xd5\x8b\x4d\x32\xf4\x7c\x74\x69\xe9\x5a\x00\xe7\xf5\xd3\x6e\xb3\x0d\xaf\x63\x78\xf6\xd7\xe5\xc3\xb3\x73\x74\x4f\x1b\x0b\xa8\x5e\xc0\xe8\xf5\xeb\xe7\xf2\x53\xe7\xc9\xda\xf5\xf3\x44\xa7\x77\x24\x95\x70\x6d\xa6\xcd\xa9\xf3\x64\xed\x5a\x35\x14\x01\xa3\x17\x30\x7a\xfd\xda\xbe\xcb\xbd\x23\xf9\x85\xeb\x5b\x08\x97\x77\x44\xeb\xae\x6f\xce\x5f\xee\x29\x6d\x7a\x7d\x73\xfe\x72\x39\xf7\xd5\xf7\x0b\x81\x98\x17\x9b\x5c\x80\xaf\x12\x62\xbb\x8d\x12\xa7\xf4\x4a\x73\x89\xd6\x6d\x64\xed\xfa\x66\xf2\xd4\xfa\xd4\xf9\x66\xce\x4f\x23\xcf\xbe\xbb\x9a\x86\xa6\x55\x3c\x8d\x52\x77\xf9\x63\x94\xc8\xda\xd5\x3d\xe6\xe3\x9e\x3c\xd5\xab\x3c\xe6\x63\xe4\x1f\x03\x42\xfc\x51\xf1\x62\x53\x97\x71\x7d\x73\xfe\xd1\x4f\xce\xe8\x35\x5c\xfe\xba\xa7\xac\xc1\x35\xf4\x93\xd6\x21\xe6\xf5\x6b\xb8\xfc\x35\xf2\xb4\xee\x3a\xf5\xf3\xd5\x10\xad\xbb\xd8\x62\x88\x79\x81\x98\xd7\xaf\xf5\x41\x5c\x20\xe6\xc5\x4e\xeb\x2e\x06\xda\x4e\xeb\x76\x1e\xea\xb5\x4a\x57\x03\x46\x2f\x60\xf4\xfa\xc5\x40\x43\xcc\x0b\x8c\xbc\x8e\x80\x1f\xfb\x12\xb9\xc0\xc1\xeb\x08\xf8\xb1\xaf\x70\x7f\xc0\xe1\xf5\x8b\xd9\x85\x8a\x17\x70\x78\xfd\x9a\xfa\x49\xeb\x76\x6e\xab\x4f\x14\x02\x1c\x2f\x76\xe6\xe1\x65\x75\xec\xcc\xc3\x9d\x79\x78\x59\x1d\x3b\xf3\x70\x17\x52\xbc\x56\x3d\x6b\xec\x54\x11\x4d\xaf\x5f\xaf\x2e\xed\x5a\xa7\x8a\x17\x5b\x0c\x5b\x2f\x76\xe6\xe1\xbd\xbe\x8a\x8e\x9d\x79\x88\xad\xd7\xef\xdf\x77\xa6\xcb\x19\x7d\xf7\xf6\xb7\x1c\x8a\x40\xdc\x8b\x9d\x9d\x77\x6f\x1e\x22\x8c\x2b\x47\xf7\xb6\x33\xc0\xe9\xc5\xce\xce\x83\xf1\x8f\x9d\x8e\x62\xe5\xf5\x7b\x95\x82\xc7\xce\xa4\xdb\x39\xba\xbe\x89\x88\x9d\x49\x87\x9c\xd7\xef\x70\x4f\x9a\xb7\x8b\xe3\xdd\x61\xb0\xbb\xd1\x62\x93\xdd\xe9\x05\xf6\xef\x4c\x0d\x35\x63\xd0\x35\x44\xf3\x7c\xe9\x10\x3b\x79\xdb\x57\xbd\x6f\xbf\x2d\x1d\xe4\xbc\xd8\x19\x6a\x77\xff\xce\xf4\xfe\x25\x08\xee\xae\x75\x16\xd6\x4e\x8a\x7c\xd4\x10\x78\x78\x81\x87\xd7\x6f\x9b\xc0\x4e\x9f\x10\xf0\xfa\x6d\x13\x00\xc2\x0b\x04\xbc\x7e\xaf\x44\x56\xec\xf4\x69\x3f\x0d\xf2\x0a\x96\x06\x3a\x5e\xe0\xe1\xf5\x9b\x89\xb4\xd3\x27\x58\xbc\xee\x4b\x87\x40\xc7\x0b\xe8\xbb\xee\x4b\x87\x80\xbe\x0b\xe8\xbb\x7e\x5f\xfa\x49\xb4\x10\xf0\xfa\xcd\x8d\xd9\x97\x87\x1b\x08\x78\xfd\xfe\x56\xc9\xe5\x6d\x32\xd0\x6e\xc6\x14\xf4\x5d\xec\xca\x3a\xc0\xf9\x03\x08\x2f\x50\xee\xfa\x6d\x67\x40\xb9\x8b\x7d\xea\x12\x3f\x64\x27\x5a\x10\x76\xfd\x7e\x4d\x86\xa9\xf3\x8a\x35\xe6\x4f\x43\x8f\xc9\xb0\xac\xaf\x3e\xd9\x38\xfb\xe3\x1d\x49\x3a\xcc\xcd\x7b\x7f\xb4\x4e\xb4\xe6\x6e\xe4\x1f\xef\x9d\x68\xcd\x6f\x2a\x12\xad\x9d\x68\xcd\x6f\x2a\xbe\x26\x03\xd1\x9a\x54\x1c\xd0\x2e\x00\xed\xfa\x3c\x34\x44\x9f\xb0\xeb\xfa\x64\xb9\x1c\xf4\x09\xbb\xae\x4f\x46\x3f\x76\x5d\x60\xd0\x75\xcc\xfc\x80\xa2\x0b\x0c\xba\x3e\x57\x18\x28\x8e\x15\x02\x8b\x43\x35\xd8\xa4\xf7\x50\x74\x71\x6c\x9e\x68\xc5\x86\x02\x8a\x2e\x60\xe6\xfa\x6c\xdf\xe5\x8f\x83\xba\xb4\x0a\x7f\xe2\xe0\x94\x1e\xbb\x51\xea\xba\xb4\xec\xad\x38\xf8\x9f\xb3\xbe\x33\xdd\x93\x96\xf8\x00\x21\xd0\xe6\xe2\x10\x2c\x9b\xec\xfa\x63\xa5\x27\xe2\xa0\x25\x93\x9b\x7d\xd0\x92\x83\xd9\x35\x87\x2e\x85\x01\x51\x37\x36\x4f\x67\x2e\xb9\x89\x83\x57\x39\x4f\x43\x17\x1e\x93\xb0\x4c\x2a\x7e\xac\x78\x5a\x60\xcf\xf5\xc9\x72\x81\xa0\x8b\x23\xf5\xf3\x76\x66\xea\xa7\xf4\x84\x0f\x10\xe2\x48\xe3\xc9\xab\x9c\x6c\x1c\x5c\xba\x00\xa4\xeb\x50\xfb\x71\xa4\x86\x94\x75\xf8\x00\x21\x70\xe9\x02\x90\xae\x4f\x1e\x35\x2e\x5d\x00\xd2\xf5\xf9\x7c\x67\x7a\xc5\xac\xb6\xc9\xa3\x3e\x56\xb2\x22\x0e\x06\xda\x64\xce\x80\xd5\xc5\x41\xac\xa6\x39\x0f\x41\x17\xa0\x73\xfd\xf9\x7d\x07\x9d\xc9\xec\xf2\x55\x42\x40\xc9\x05\x94\x5c\x7f\x76\x03\x52\x1a\xe2\x40\x3e\xe4\xf7\xa8\xef\xf2\xd7\x41\x03\xc2\x81\xc4\x97\xeb\x50\xfb\x71\xb0\xb0\x0e\x16\x96\xcf\x0a\x02\x6d\x2e\x60\xe6\xfa\xc3\xa7\x3d\x86\x19\xc2\x98\x7a\xc2\x3d\x4f\x97\x73\x07\x9f\x55\xa9\x19\x07\x77\xf0\x10\x56\x7b\xd6\xf7\xfd\x01\x2c\x17\x87\x04\xc1\xf3\xcd\xf9\x4b\x97\xd4\x65\x3c\xdf\x9c\x27\x41\xf8\x72\xfd\x61\x98\x1f\x97\xc7\x94\xf7\x7c\xbe\xe9\x7d\x99\x0c\xb2\x06\xcf\x37\xbd\x6f\xf7\x5c\x21\xb7\xfe\x74\x0d\xdd\x26\xed\xed\x31\x85\x96\x0e\x66\xd7\x21\xac\xf6\x7c\xd3\x9b\x37\x79\x30\xbb\x7c\x4e\x10\x07\xb3\x0b\x89\xae\x3f\xa2\x48\x10\x74\x81\x3d\xd7\x1f\xe6\xf6\xc1\x47\x3c\x14\xb9\xbe\xc7\x77\x50\xe7\x05\xf1\xdf\x30\x4a\xd4\xe6\x10\xaf\x57\x80\x1e\xc0\x72\x71\x50\x9b\xf7\x1b\xba\xd7\x78\x52\x9b\xd7\x28\xe1\xcb\x45\xf0\xfc\xde\x95\xb0\x0e\x28\xb9\x80\x92\xeb\x6a\xcd\x23\x56\x94\x2c\xa0\xe4\xfa\x6b\x94\x82\x35\x84\x28\xd7\x5f\xa3\x04\x2c\x17\x41\xac\x5e\x61\x00\x0c\xb9\x08\x71\x31\xb5\xe6\x11\x9c\x3c\x28\xb9\xfe\x0e\x0d\x89\x8b\x85\xb8\xd8\x3b\xfe\xf6\xcf\xc1\x02\x75\x2e\x82\x55\xa4\x10\x3d\x62\x99\x43\x01\x37\xd7\xd5\x9c\x07\xce\x5c\xe0\xcc\xf5\xf7\x32\x06\xf4\x09\x67\xae\xab\x24\x0f\x48\xb9\x08\xe9\xd3\xd7\x0e\x06\x29\x17\x41\xb4\x5e\x81\x38\x48\xb9\x80\x94\xeb\xef\xed\xc9\xe8\x13\x88\x5c\x57\x49\x1e\x21\x14\x86\x1e\xd7\x55\x92\x47\x08\x70\x05\x5f\x51\xd1\x78\x40\xca\x45\x10\xad\x97\x9d\x17\x44\x2b\xe8\xd3\x4b\x36\x50\xe7\x02\x59\xae\xbf\x4c\x3a\x80\xb9\x08\x52\xf4\xae\x6c\x61\x44\xba\x7c\x85\xfd\x4b\xd1\x78\x04\x29\x82\x9b\xab\x9f\xad\x12\x67\x2e\x70\xe6\xea\x27\x14\x16\xec\xa6\x58\x52\x54\x3f\x5b\x25\xf8\x5c\xc4\x0a\x7e\xd5\xcf\x56\x19\xdd\x78\x76\x0d\x51\x08\x28\xba\xc0\xa0\xab\x1f\x03\x2d\x88\x16\x06\x5d\xfd\x56\x19\x5f\x84\x50\x58\x2c\x25\x2b\x8c\xf7\xc0\xa7\x0b\x60\xba\xfa\xd9\x2a\xf1\xe9\x02\x91\xae\x80\xdf\x23\xca\x3b\x2a\xf7\x34\xf7\xf1\xe9\x02\x67\xae\x14\x78\x07\xce\x5c\xc4\xf0\x98\xdf\xdc\x1f\xdf\x99\x73\x1d\xfc\xa6\xb9\x68\x17\xb2\x5c\x29\xdb\x8e\x38\xbd\xe2\xa5\x5d\xf5\x2b\x03\x72\x6a\x7d\x99\x5d\xf5\xb3\xad\xa1\xc7\x45\x2c\xd1\xaa\x1f\x5b\x2c\x18\x53\xb1\x8c\xa9\xfa\xd9\xac\xb0\xe4\x22\x2e\xf7\x5c\x1f\x07\x05\x96\x5c\xc4\x65\x90\x45\xa6\xb0\xe4\x22\x6e\x97\x7f\xb3\x4e\xb4\x2b\x6e\x4f\x34\xbf\x83\x06\xf9\x36\x20\xdf\x04\xa3\x4f\x40\x6f\xa5\x46\x3a\xf0\xde\x22\x56\x35\x58\x6d\x3f\x6f\x93\x3e\xa1\xbf\xd5\xf6\x4d\x1b\x66\x57\x2c\xb3\xab\x54\x53\x47\x4c\x8f\xb9\xac\xaf\xda\x78\xbf\xc1\x57\x84\x6f\xab\x4d\x04\x15\xc5\x2d\xe0\xdb\x6a\x13\x2c\x8d\xd7\x99\x4b\xd0\x6a\x3b\xb4\x2e\xda\x15\xcb\xe7\xab\xed\xf0\x3a\x18\x53\xb8\x6d\xb5\xd9\x6d\xb0\xd9\x02\x94\xad\xb6\x85\xd5\x0a\x6c\xb6\xc8\x9f\x7e\x9a\x0c\xd8\x6c\x91\x4b\xb4\x6a\x5b\x5f\x30\x47\x2e\x2b\x2a\xd0\xd8\x6a\xeb\xdf\x41\xf7\xdc\x0c\x08\x21\xc4\x66\x8b\xdc\x3c\x91\x4d\x20\xd9\x4d\xb9\x2c\xa5\x52\xdc\x1c\xb9\x04\x29\x20\xda\x6a\x1b\xee\xc9\x07\x83\x68\x2b\xd8\xf1\x80\x68\x8b\xdc\x75\x49\x1c\x27\xf7\xef\x9e\xc6\x93\xe1\x83\xdb\x16\x79\xb8\x27\x13\x1e\x8d\x2d\xa0\xd6\x6a\x63\xad\x63\xac\x45\x86\x2e\xdd\xdf\x41\x8f\x19\x1e\xd3\x5c\x42\x5c\x0b\x38\xb5\xda\x56\x3d\x4e\x24\xb5\xc9\xf4\x3a\x78\xaa\xc9\x1a\xca\x15\xb5\x2a\x35\xc7\x81\xb8\x16\x99\xde\x11\x1b\x07\x71\x2d\x30\xd6\x6a\x7b\x3c\x26\x09\xca\xa6\x75\xb9\x00\xc8\xb4\xc8\xa5\x2f\xa5\x68\x38\x20\xd3\x02\x24\xad\x76\xc1\xc7\x14\x39\xc7\x43\xab\x9d\x91\x92\xfd\x3b\x73\x75\x7e\x5f\x55\x36\x91\xdd\xd0\x2d\xbf\xac\xf6\x6f\x86\x94\xce\x2f\x2f\xad\xf6\x70\x4f\xd6\x10\x02\x5a\xed\xe1\x72\xd6\x50\x0e\xad\xa7\x01\x19\x86\x6e\xa9\x46\xed\xdf\x5c\xe2\xba\xe5\x70\x79\xfb\xce\xd4\x25\x1a\xb2\x33\xb7\x93\x86\xc0\xa2\xd5\x2e\x7a\x98\xfc\xb9\x3c\x35\xf4\x4d\x30\xfe\x5c\x9e\xfa\x29\x7a\x98\xc2\xe8\x70\x6a\xb5\x97\x86\xa8\x4d\x2e\xbb\xa9\xd4\x07\x47\x52\x1b\x8c\xb5\x52\x0a\x1c\x18\x6b\x91\xcb\x9f\xab\x7d\x55\xcf\x47\x52\x9b\xa4\x36\xbb\x7d\x13\x63\x2d\x72\x25\x20\x6b\xa7\x4b\xe0\x6a\x81\xaa\x56\x3b\x27\x0f\x5c\x2d\xf2\xd6\x90\x2d\x12\x63\x2d\xf2\xd6\x10\xcb\x3a\xe9\x52\xd2\xa5\xdd\xc6\x07\xbc\x16\x79\x1b\xa5\x55\x15\x10\x30\x6c\x91\x2b\x34\x5f\xfb\x63\x94\xa6\x7b\x4e\xf7\x7c\x35\x34\x4d\x86\xe9\x75\x7c\x73\x49\x68\x1e\x8d\xad\xf6\xf7\xbb\x7c\x3a\xb8\xa6\xe2\x22\x8c\xff\x8d\x41\x91\x7c\xc5\x5c\x56\x58\x21\x8d\x07\x7e\x5b\xe4\x72\x19\x4b\xa1\x6f\xe4\x63\x08\x97\x4d\x56\x87\x5d\x31\x29\x59\x2e\xb7\xb0\x8e\xdd\xe3\x0a\x5b\xe5\xb2\xc9\xea\x38\xbe\x33\x0d\xf6\x32\xcd\xea\x10\xd0\xce\xd7\xf4\x59\xde\x61\x1d\x36\xc0\xc6\x50\x6b\xcb\x2d\xac\x63\x51\x1b\xa2\x31\xd4\xda\xcf\x3d\x57\xe1\x57\x34\x36\x19\xfc\x5b\x1d\xf2\x35\x8d\x5b\xd8\x96\xa0\xd5\xb1\x8a\x60\x02\x13\x2e\xda\xa6\x75\xc1\x08\x84\xb8\x80\x86\xab\x63\x81\xe2\xa2\x91\x37\x68\xb8\x3a\xc8\x5b\xe3\x16\x42\xc3\x95\xa2\xdc\x68\x82\x51\x6d\x37\x4a\x36\xc0\x26\x18\x85\x17\x57\x10\xe1\x81\x10\x17\x8d\xbc\x29\xb5\x0d\x84\xb8\xc0\x84\x2b\xa5\xb6\xd1\x56\x61\x45\xb4\x65\x8b\xd5\x71\xe9\x27\x5b\xac\xad\x48\x7d\x1d\x66\x5f\x93\xab\x6c\x87\xce\x73\xe1\x9a\x5c\x25\x88\x5c\x1d\xa2\x73\x4d\x30\xbf\x85\x01\xa1\x79\x8d\x03\xd9\xc2\x78\x9a\xa7\x00\x73\x01\x29\x57\x87\xfd\xb3\x89\x4c\xb5\x74\xcf\x85\x5d\x88\xc6\x81\x84\x94\x2b\xdc\xf0\x80\x94\x8b\x96\xee\xf9\x7a\x4c\xea\xd8\x56\xd4\xaa\x8e\x55\xe7\x12\x00\x73\x81\x2c\x57\x87\x3d\x19\x52\x2e\x1a\xc9\x0c\x31\xb7\xc6\x57\x04\x91\xab\x30\x3f\x9b\xb4\x24\x88\x5c\xc5\xa6\xf3\xd2\x92\xad\xbb\x7c\x73\x4f\x3a\xda\xd8\x62\x61\x7e\x36\x21\xb0\xc6\x16\x0b\x7b\x72\x63\x8b\x35\xe2\x1a\x12\x98\xad\x7f\xf7\x7c\x1d\xf4\xec\x6c\x31\x44\xba\x0a\xf6\x1d\x22\x5d\x20\xd2\x55\x1c\x5a\x67\x8b\x21\xd2\x55\x30\xe5\x10\xe9\x02\x7c\xae\x42\xd4\x03\x5f\x2e\xda\x72\x2e\x2b\xd2\xd0\xf1\x2a\xdb\x70\xb9\x50\x5d\x1b\x5e\xf1\x92\xd3\x8a\xe6\x9e\xbc\x4a\x9c\xb8\x0a\x3a\x0a\x17\x17\x00\x71\x15\x76\xef\xc6\x16\x6b\x84\x30\xbe\x99\xcc\x81\xc4\x82\xab\xe0\x9c\xb4\x4b\xe7\x2f\xad\xd3\xd1\x26\x44\x8f\xfe\x56\xc1\xaf\x6b\x1c\xc8\x46\xde\x82\xb8\xe2\xbd\x05\xd0\x5b\xc5\x65\xd6\xb1\xc5\x30\xdd\x2a\x28\x6e\x9b\xe6\xfc\xd4\xa5\x6f\x7a\x93\xb7\xb6\x82\xf2\x15\xf7\x77\xa6\xd6\xc9\x5b\x08\xab\x81\xc0\x05\xfa\x5b\x85\xe0\x33\x08\x5c\x20\xbc\x55\x48\xcd\xb4\xc7\x78\x3e\xde\x91\x2d\x1d\xe1\x2d\xda\xeb\x89\xf8\x1f\x8d\xab\xd9\x5e\xcf\x2e\x47\x09\xe6\x16\x60\x6e\xa5\xc4\x36\x3a\xb1\xea\x74\x29\xe5\xe7\xbb\xc2\x8a\xce\xec\xca\xf5\xbf\x7f\x81\xe2\x16\xf0\x6d\x95\xf6\xf9\x2e\xb0\xd5\x29\x58\x52\xda\x4e\xc1\xfa\xd2\xac\x4a\x49\x46\xbc\xb7\xe8\x9b\x86\x58\x04\x9d\x57\x09\xf4\x56\x29\x3f\xdf\x29\x58\x5f\x5e\x61\xe5\xaa\x88\x89\x4e\x97\x80\xde\x2a\x8f\xef\xe0\xe5\xe0\x7a\xcc\x24\xbf\x9d\x2d\xd6\x0f\xfd\x24\xbf\x9d\x2d\xd6\x89\x55\x4a\x32\x76\x62\xd5\x0f\xf7\x5c\xdf\x79\x07\x08\x5c\xa0\xbf\x15\xec\x78\x80\xc0\x05\xec\x5b\xa5\x50\x32\xec\x5b\xc0\xbe\x55\x72\x4a\x60\xdf\xa2\x87\xce\x37\xfd\x54\x2e\x01\xfb\x56\xd9\xbf\xcb\x75\x3e\x34\x24\x35\xd3\x79\x93\x7d\xc9\x53\x25\x2f\xbd\xd3\x25\xd8\xb7\x82\x1d\x0f\xd8\xb7\xe8\xc4\x2a\x59\xac\x20\x70\xd1\xe9\x52\x5a\x08\x5d\x60\xab\x37\xf7\x34\xe7\x3b\xb1\xea\xcd\x3b\x12\x89\x46\x86\x8b\x4e\xac\x92\xc5\xda\x89\x15\x24\x5c\xa1\x96\x07\x16\x5c\xc0\xbe\x55\x0a\x85\xc0\xbe\x45\x5f\xa2\x53\x69\x21\xe0\xbd\x05\xd0\x5b\xe5\x6d\x90\x45\xe1\x81\xde\x2a\x15\xbf\x20\xbc\x45\x27\x41\xc9\x11\x87\x76\x8b\x3e\xb4\x2e\xe1\x02\xed\x16\x98\x6e\x95\x24\x1d\xda\x2d\x90\xda\x2a\x49\x3a\x44\x5b\x74\xa6\xdc\x5f\x1b\xfb\xdf\x19\x14\x9d\x9d\xd7\x4f\x6f\x95\x5d\xd2\xd9\x79\x9d\x49\xd7\xbe\xa5\x43\xb4\x3a\x07\xb2\xd1\xfb\x2e\x6e\xdf\x97\x76\x55\xfb\x7d\x97\x1b\x83\x65\xd9\x55\xb3\x09\x20\xc4\x45\xe7\x55\x36\xb9\x95\xce\xce\xeb\x4b\xd0\xaa\x7d\x4b\x67\xe9\x5a\xe0\xc5\x55\xe3\x98\xf5\xa5\x6b\xd1\xd9\x79\x8d\x3f\x8f\x25\x17\x9d\x49\xd7\x76\x83\x2d\x14\x86\x1e\x57\xed\x5b\x4f\xd3\x63\x2e\x41\xab\xc6\xc6\xe9\xac\xb7\x4e\x9f\x1a\x27\xbf\x0b\xd1\x03\xc5\x55\x13\xb6\x02\x8a\x8b\xbe\x0c\xad\x6a\xc2\x80\x5d\x0a\xb1\x3f\x3a\xcf\xc2\xee\x44\x0b\x28\xae\x9a\x58\x56\xe7\x55\x02\xc5\x55\x93\xd5\xec\x6a\x28\x3a\xaf\xb2\x89\x72\x77\x79\x45\xf4\xb8\x6a\x9c\x3d\xf4\xb8\xe8\x94\xac\xd9\x19\xd0\xe3\x02\x2f\xae\x9a\x5c\x65\xa9\x77\xc0\x84\xab\xb6\xe0\x39\x81\x09\x17\xb5\x79\x76\x7e\x5d\xf1\x2a\x8b\x57\xa9\xa6\x37\x80\xe2\xa2\x78\x95\x6d\x7d\x8a\x1a\x25\x44\x5f\x9b\xc7\x94\x96\xc4\x92\x0b\x10\xb9\x6a\xf2\xf3\x58\x72\x51\x6c\x31\xb5\xbc\x51\x6c\x31\x48\xb9\x6a\x8b\xa8\x13\x25\x04\x06\x29\x57\x4d\xec\xba\x96\x11\x16\xc8\x72\xd5\xa6\x86\x38\xa5\x38\x73\xd5\x04\xb4\x8b\xe6\x15\x03\x4d\x2d\x6f\x80\xcf\x05\xf8\x5c\x35\xd5\x2b\xe0\x73\x51\x0c\xb4\xf6\xb8\x9c\x81\x06\x37\x57\x60\xe2\x81\x33\x17\xc8\x72\xa5\xea\x37\x8a\x81\x56\x3c\xd5\x26\x3f\x0f\x30\x17\xc8\x72\x05\x11\x1e\x00\x73\x51\xcb\x4e\xab\xfe\xfb\xce\xd4\xd0\x92\xbe\x52\xe0\x1b\xc5\x16\x2b\xee\x6b\x37\xbd\x4b\xb5\x05\x4e\x5c\xf5\xdd\x8b\x53\x6d\x81\x13\x57\x0a\x7c\xa3\x44\xd0\x8a\x81\xd6\xf7\xef\x72\xaf\x98\x4f\x0b\x26\x1e\x50\x72\x51\x4b\x0f\xab\x2b\xe7\x2a\x99\xc7\x62\xb5\xf5\xf5\xb7\x57\x51\x4d\xeb\xd4\xb1\xf3\x54\x21\xe8\x02\x5f\xae\xba\xd5\x51\xc2\x6a\x30\x73\x05\x26\x1e\x68\x73\x81\x2f\x57\xdd\x6e\x53\xac\x36\x28\xb9\xea\xf9\x9d\xe9\x72\x92\xd9\x25\x2e\x8b\x64\x56\x69\x9d\x89\x54\xbc\x5f\x7c\xb9\xea\x82\xe4\xa5\xda\x02\x5f\xae\x3a\x5f\x01\x5f\x2e\x10\xe5\xaa\xdb\x43\x8a\x64\xe2\xcb\x95\xfa\xe0\xa8\x25\xa0\x01\x33\x57\x5d\x9d\x4b\xf1\x93\x6b\x18\xe4\x6f\x1d\x89\xb5\xc1\xcc\x55\xe7\x2b\x14\x71\xad\xd3\x63\xca\xf9\x03\xcb\x05\xa2\x5c\x75\x1b\x4b\x49\x71\x16\xef\x57\x25\x71\x94\xac\x41\x9d\x06\xe4\xd4\x3a\xa3\xaf\x04\xe0\x3a\xb3\x0b\x5f\x2e\x8a\x54\xaa\x24\x0e\x60\xb9\x40\x94\xab\xce\xd5\x00\x96\x0b\x28\xb9\xea\xdf\xe2\x12\x80\x2b\x46\x5f\xff\x16\x17\xa9\xac\xdb\x80\x88\xca\x01\xcb\x05\x94\x5c\x75\xb6\x18\x94\x5c\x40\xc9\x55\xff\x16\x17\xf3\x10\x51\xae\x3a\x5b\xac\x98\x87\x25\x54\x07\x7a\x1e\x50\x72\x51\xa2\x72\x0a\x91\x03\x58\x2e\xa0\xe4\xaa\x73\x35\xa0\xe4\xa2\xa6\x86\xa4\x90\xa0\xe4\x02\x4a\xae\xba\xfd\xa8\xc8\x2f\x94\x5c\xf5\x57\xe7\x39\xb8\x45\x7e\x4b\xf8\xaf\xc8\x2f\x78\x5c\xd5\xb7\x0c\x79\xbd\x00\x71\x55\xb6\x9e\x12\xbf\xab\x95\x90\xa8\x12\x13\x04\x88\x8b\xa2\xb4\xc5\x6a\xc3\x82\x0b\x2c\xb8\x2a\xb9\xd4\xc1\xc1\xc5\x82\xab\x12\x13\xc4\x82\x0b\x2c\xb8\xaa\xf5\x89\x5f\x80\xc0\x05\xfa\x5b\x95\xad\x67\xc8\x44\x0c\xd6\xa5\x3a\xe6\xc0\x82\x8b\x41\x93\x8b\xff\x31\x68\xf2\x60\x48\x96\x50\xf2\x60\x48\x02\xc4\x55\x71\xaf\x01\xe2\x02\x12\xae\xd4\x31\x07\x32\x5c\x40\xc2\x55\x2d\x08\x6e\xc0\xbe\x05\xec\x5b\x95\xda\x19\xbc\xb7\x40\x78\xab\x12\x5f\x1e\x87\xcb\x89\x6a\xfd\xb5\x8e\xfe\xc6\xa0\x00\x83\x0b\x14\xb8\x2a\x8b\x6c\x2c\xfd\x8d\x41\x71\xcb\x22\x83\x7f\x8b\xc1\x25\x2e\xe1\x20\xf8\xb7\x80\x7f\xab\x1a\xc6\x80\x95\x09\xff\x56\x5f\x91\x33\xee\x5b\xc0\xb8\x55\xd9\xc1\x86\x12\x8c\x41\x5c\xbf\x22\x67\x88\xb7\x80\x71\xab\xb2\x83\x0d\x06\xe5\x48\x63\x20\xa0\x3d\x14\x6b\x0c\x06\x65\x5d\x1a\x62\x50\x82\xba\x15\xc6\x7b\x0c\x06\x25\xb6\x5b\x95\x70\xe5\xa0\xa3\xa3\x99\x53\xeb\x6b\x94\x40\x7a\x0b\xa4\xb7\x2a\xfe\x3c\xd2\x5b\x0c\x39\x8b\xaf\xf2\x19\xf7\x2d\x06\x3f\xb9\xe4\x69\x71\xdf\x62\xb0\x47\xcb\xb6\x36\x24\x32\x86\x44\x46\x59\x79\x98\x70\x31\xba\x99\xa2\x0c\x01\x13\x2e\x06\x3f\xf9\x2b\x72\x46\x88\x8b\xc1\x4f\x2e\x4e\xfe\xe0\x27\x03\xc5\x55\x59\x64\x83\x9f\x0c\x0d\x57\x43\xe0\x1d\x21\x2e\xa0\xe1\x6a\xb0\x04\x11\xe2\x62\xd0\xe6\x61\xe5\x61\xc2\xc5\x60\xb9\x7e\xf5\xcc\x60\x70\x01\xff\x56\xc3\xca\x83\x7f\x8b\xb1\x84\xb7\xc6\xee\x1d\x09\x57\x0e\xe6\xec\xb0\x2b\x0e\x16\xeb\x20\xc3\xe3\x5b\x8e\x8c\x53\x4c\xb8\x1a\x9c\xfc\xa1\x96\x17\x05\xae\xc6\xf1\x9d\xe9\xd9\x4f\xf7\x94\xfb\x1d\x97\x7b\xf2\xbd\x87\x00\xec\x20\xc3\xe3\xfa\xce\xf4\x98\x42\x8b\x43\x76\x63\x08\xe6\x0f\xa5\x22\x43\x14\x11\xdb\x3d\x80\xe2\x02\x28\xae\x46\xfb\xce\xd4\x3a\x1d\x1d\xcd\x04\x63\x9c\x0e\xc6\xe9\x57\xc7\x3c\x18\xa7\x58\x70\x35\xbe\x35\xaa\x96\x77\x88\x22\x0e\x4e\x14\x16\x5c\x60\xc1\xd5\x50\xef\x80\x05\x17\xe8\x6f\x35\x04\xcb\x40\xe0\x62\x70\xb3\x47\xb9\x5c\x51\xc9\xe0\x66\x7f\xc5\xcd\xe3\x31\x6d\x98\xb1\x63\x7c\xf7\xd4\xf9\xd7\xb3\x0b\x96\x0d\x19\xdd\xc1\x62\x1d\xa2\x09\x83\xc5\x0a\x09\x57\x43\x11\x04\x16\x5c\x60\xc1\xd5\x60\x5d\x9e\xc4\xf5\xfc\x79\x76\x1b\xe0\xa9\xe8\x0d\x12\xae\x86\x64\x28\x32\x5c\x40\xc2\x15\x0a\x7c\x20\xc3\xc5\x49\x71\x07\x93\xf3\x64\xf0\x9e\x3f\x0d\x29\x83\x46\x86\x0b\x48\xb8\x1a\x42\x0c\x58\x70\x71\xb2\x6d\x87\xb4\xd4\x49\x5c\x4f\x5e\xfa\x78\xbe\x33\x57\xe7\x4f\xb6\xed\x10\xfe\x3d\xd9\xb6\xe8\x6f\x35\xec\x75\x27\xdb\x16\xf6\xad\xbe\xda\xe8\x93\xb8\xa2\xbf\xd5\x57\x06\x7d\x92\xca\x93\x54\x7e\xc5\xcd\xb0\x6f\x71\xf2\xd2\x4f\xc1\x32\xd8\xb7\x80\x7d\xab\x53\x65\x04\xec\x5b\x00\xbd\xd5\x69\x75\xe0\xbd\x05\xd0\x5b\x61\xbb\xc7\xc9\x38\x05\x7a\xab\x93\x4b\x84\xf7\x16\xe7\xca\xf2\x16\xe0\x7b\x9c\x8a\xdd\x4e\xa2\x7a\xda\xc1\x4e\x09\x97\x93\x97\x0e\xf8\x1e\x67\x7a\x47\xa9\x75\x89\x8c\x93\x19\x7b\x52\xda\xd3\xe2\x42\x86\x0b\x2c\xb8\x02\x7c\x8f\x93\x1d\x8a\xfe\x56\x27\x8f\x0a\x04\x2e\xd0\xdf\xea\xcc\xef\x4c\xef\x88\xa8\x02\xbe\xc7\x49\x54\x4f\xa2\x7a\x0a\x5b\x9c\x12\xc1\x27\x7f\xfe\x6c\x06\x99\x3f\x0f\x1e\x57\xa7\x65\x88\x1a\x17\xa8\x71\x75\x76\xad\xd3\x4f\xd4\xb8\x42\x81\x0f\xd4\xb8\x40\x8d\x2b\x14\xf8\x38\xd9\xb6\xa7\x88\xe4\x29\xe5\x81\x1a\x17\xa8\x71\x75\x8a\x44\x9f\x94\x16\x35\xae\xbe\x2a\x6a\xb8\xb8\xc0\x89\xab\x93\x97\x76\x0a\x07\x9c\x65\xe8\x7c\x4e\x70\x0a\x07\xa0\xc6\xd5\xc9\x66\x44\x8d\x8b\x93\xc1\x7b\x7e\xeb\x48\x0e\x08\x4a\xae\xce\x6f\xc9\xc8\x23\x43\xc9\xd5\x57\x45\x0d\x25\x17\x50\x72\x75\x2a\x2a\x80\x92\x0b\x28\xb9\x3a\xaf\xef\x9e\x5a\x17\x62\xf8\x4a\xab\x31\xe4\x02\x3c\xae\x4e\x91\x3e\xd4\xb8\xc0\x89\xab\xf3\x5b\x71\x72\x40\x27\x2b\xf8\x9c\x16\xec\x69\x94\x04\x0c\xce\xf9\xb7\x9f\x8d\x06\xce\x5c\x9c\x12\x44\xa7\x6c\xcc\xe9\xe3\x0b\xf0\xb9\x3a\x15\x91\xa2\xce\xc5\x29\x2e\x8a\x1b\x1f\x00\x73\x81\x2c\x57\x97\xcd\x0a\x60\x2e\xce\x15\x2a\x28\x34\xf8\xc0\x99\x0b\x64\xb9\xba\xbe\xe5\xa8\x86\xe6\x5c\xba\x5d\x97\x30\xf5\xa9\x74\xf9\x5c\x12\x5d\x97\xcd\x0a\x60\x2e\x90\xe5\xea\x12\xbb\x3e\x05\x4b\x4f\xe9\xe8\xeb\x5b\x79\x4a\x97\x21\xe5\xea\xab\xa6\x86\x94\x8b\x73\x15\x2b\xd7\x25\x9f\x7c\xca\xec\xe0\xc5\xd5\x57\x62\x0d\x1b\x17\xa7\x24\x0e\x1a\x7c\xc0\xc6\x05\x34\x5c\x5d\x12\x83\x27\x19\x86\x7f\xab\x4b\x44\xfa\xa2\xb8\x28\x70\xf5\xd5\x5d\x5f\x3e\xa9\x40\x81\xab\xcb\x2a\xb9\x44\x13\xae\x9f\x01\x69\xdf\xe5\xc3\xc1\xb5\x51\x5f\x1c\x33\x84\xb8\x80\x86\xab\x4b\xc4\xef\x62\xe3\x62\xc2\xd5\xb5\x3e\x8c\x8b\x4b\xb0\x14\x1a\xae\x2e\x99\x1d\x84\xb8\xb8\x28\xee\x57\xa1\x7d\x51\xdc\x8b\xe2\x5e\xd6\xd3\x45\x71\x2f\x8a\x7b\x89\x87\x5f\xbe\xb3\x00\x8a\xab\x8b\xcd\x78\x11\xd7\x4b\x60\xf3\xe6\xe8\xe2\xbe\xc5\x25\xb0\x79\xd3\x27\xdc\xb7\x00\x7c\xab\xdb\x78\x5e\x4c\x4e\xf8\xb7\xba\xd5\xb1\x5f\x74\x14\x05\xae\xb0\xc8\xe3\x52\x26\x83\x02\x57\x37\x25\x03\x83\x0b\xc0\xb7\xba\xa5\x64\x2f\xea\x78\xf1\xe7\xef\x6f\xe4\xf9\xf3\x17\xeb\xf2\x96\x7d\x05\x83\x8b\x8b\x43\x7e\xab\x06\xbb\x38\xe4\x08\x6f\x75\xcb\x1a\x20\xbc\xc5\xc5\x21\xbf\xc5\x86\x2e\x36\x23\xd0\x5b\xdd\xbc\xdf\x8b\xbc\x01\xbd\x15\x16\x79\x5c\x5d\xe7\x79\xe9\xb0\xe3\x01\xfb\x16\x17\xd1\xfa\x6a\x79\x2f\xa2\x75\xf1\xd2\x6f\x3e\xed\xe5\x43\x89\x8b\x68\xdd\xa4\xe8\xa2\x4f\xe8\x6f\x75\xb3\x82\x2f\x52\x74\x51\x9d\x9b\xc1\x8b\x05\x17\xd7\xd0\x79\x4b\x1b\x19\x2e\x2e\x49\xe6\x5b\x7e\x1e\x0b\x2e\x2e\xc1\xc7\x9b\x19\x7b\x09\x3e\xc2\xbe\x15\x6e\x78\xc0\xbe\xc5\xc5\xa3\x9e\x3e\xb6\x03\x81\x8b\x8b\xf3\xfc\x95\xd8\x82\xc0\xc5\x25\x63\x32\xb9\x85\xb0\x6f\x01\xfb\x56\x5f\x3d\x2b\xc2\x5b\x5c\x8c\xbe\x29\x7e\x87\xf7\x16\x40\x6f\x35\x85\xbe\x2f\x25\x2d\x97\x92\x96\xf9\xad\x0e\xf9\xe4\x4b\x1a\x65\x7e\x0b\x81\x5c\xc0\xbe\xd5\x54\x8b\x76\x91\x8b\x8b\xd1\x37\xbf\x17\xc7\xe8\x83\x7d\xab\xc9\x6a\x83\x7d\x0b\xd8\xb7\x9a\xe2\xe1\x17\xa3\xef\xa2\x21\xd8\xd9\x71\xd1\x90\x8b\x9f\x3c\x25\x86\x2e\x7e\x32\xfa\x5b\x4d\x61\x8b\x4b\x6e\x05\xfd\xad\xbe\x7a\xd6\x8b\xf3\x7c\x11\x96\x69\x0b\xba\xf8\xc9\x08\x6f\x05\xa8\x1d\x97\xa2\xe1\x8b\xda\x7c\xf5\xac\xb7\x30\x25\xa6\x5b\x4d\x7e\x12\xb4\x5b\xdc\x8a\x5f\x60\xb2\x03\xcc\x2d\x6e\xb1\xcb\x69\xbb\xb8\x69\xc8\xcd\x4f\x9e\xbc\x1f\xbc\xb7\xb8\xf9\xc9\x53\x50\xef\xa6\x21\xb7\xd8\xe5\x57\xa5\x0a\x02\x17\xb0\x6f\x35\xdf\xef\xf2\xd5\x4f\xd8\xb7\x9a\xb2\x99\xb7\xec\xf0\x2d\x0b\x83\x9d\x1d\x37\x3f\xf9\x26\x2c\x8f\xc4\xd0\x2d\x22\x79\xb3\xef\x1e\x73\xe9\x66\xdf\x41\xc2\xd5\x23\x5b\x84\x0c\x17\xf7\xe1\x9e\xac\x36\x80\xb8\xb8\x97\xf3\x5b\x5f\x3d\xeb\x2d\xce\x08\x10\x57\x0f\x5b\x0c\x20\x2e\x6e\xf6\xdd\x23\x9b\x09\x17\x17\x38\x71\x85\x9d\x1d\x37\x5d\x42\x8d\xab\x47\xb6\xe8\x66\xdf\xdd\xec\x3b\xec\xec\xb8\x65\x61\x6e\xf6\xdd\x43\xd6\x80\xe5\xe2\x96\x32\x7e\x64\x33\xf1\xe5\xe2\xa6\x60\x5f\xe5\x2b\xda\x5c\xe0\xc4\xd5\x23\xa8\x07\x17\x17\x38\x71\xf5\x30\xbb\xe0\xe2\x02\x27\xae\x1e\x1b\xca\xcd\xe8\xbb\x19\x7d\x4f\x73\x39\x53\x0e\x27\xae\x9e\xfe\x9d\xa9\x9f\xb4\xee\x61\x76\xdd\x52\xc6\x37\x57\xf8\xb1\x64\xe0\xe2\x02\x20\xae\x9e\xf1\xb7\x7f\x0e\x16\x37\x43\x0d\x3d\xae\x1e\xb5\xdc\x37\x43\xed\xa6\x79\x0f\x37\x06\x4b\x2e\x40\xe4\xea\xe1\xc6\xdc\x65\x0c\x08\xe1\x43\xf3\x6e\x42\x78\x13\xc2\x87\x1b\x83\x3a\x17\x77\x19\x18\x36\x19\xc0\x5c\xdc\xd4\xf1\xab\xaa\xbd\xb9\xc4\x20\x72\xf5\x88\xe3\xdd\xd4\xf1\x66\x69\x3d\x42\x76\x00\x73\x81\x17\x57\x8f\x78\xf8\xcd\xfb\xbd\xa9\xe3\x23\x64\x87\x1e\x17\x37\xef\xf7\xf9\x96\x0e\xef\x17\x2f\xae\x9e\x6f\xe9\x50\xc7\x9b\xdd\xf4\xf0\x6d\x60\xe3\x02\x13\xae\x1e\x21\xbb\x9b\x31\x85\x02\x57\x0f\xc5\xbd\x09\x21\xa8\x5b\xbd\x8c\xa9\x9b\x89\x74\xd3\x3c\x98\xec\x80\x78\x0b\x18\xb7\x7a\xbf\x05\x21\x36\x78\x33\x91\x5e\x49\x51\x88\xb7\xb8\x69\xde\xcb\x8d\xb9\x69\xde\x2d\x75\xfc\x1e\x2e\x97\x3a\xbe\x15\xbf\x00\x6a\xc7\x2d\x36\x78\x73\x74\x01\xb5\xe3\xe6\xe8\xde\x4b\xfa\xea\x15\x0e\x40\x88\x8b\x9b\x10\xbe\xf1\xdd\xd3\xc8\xab\x02\x7c\x05\xe2\x60\xe3\xe2\x66\x76\xbd\xcc\x84\x9b\xd9\x85\x1e\x57\xaf\xd0\x37\x7a\x5c\xdc\x84\x10\x65\x3b\x20\xde\x02\xd4\xad\x5e\x8a\x0b\xea\x16\x93\xdd\xf4\x52\x5c\x88\xb7\xc0\x76\xab\xaf\x14\x18\xe2\x2d\xa6\x24\x33\xd2\x74\x20\xbd\x05\xd2\x5b\x7d\xf5\xc1\x48\x6f\x81\xf4\x56\xaf\x8a\xa8\x49\xf3\xa6\xd8\xe0\xbb\xe8\x86\x81\xe2\x16\xf0\x6d\xf5\x95\x02\x4f\x99\x67\xf8\xb6\x7a\x4d\x9b\xb9\x7f\x97\x1b\x10\x09\x76\x30\xb7\x98\x32\xcf\xaf\x3d\x79\xca\x3c\x4f\x01\xc3\x57\x68\x09\xe1\x2d\x26\x47\xf7\xa5\xb8\x53\x3a\x1a\xf6\x6d\x7c\x55\xbf\x08\x6f\x31\x97\xa3\x3b\x60\x9d\x63\x52\xc7\xb9\xa4\x6f\xfc\xcc\x90\xe9\xf3\xd6\xb9\xa4\x6f\xfc\x4c\x86\xa9\x4c\x66\x2e\x47\x77\x60\x3d\xc7\x64\xa0\x01\xc4\x8d\xaf\xc0\x77\xca\x3c\xcf\xd0\x10\xcb\x7a\x8a\x1e\xe2\xc4\x0d\x58\xe7\x80\x8b\x8b\x99\x5a\x17\x06\x02\x88\x8b\x99\x1a\xe2\xa9\x4e\x42\x38\xd3\x3d\xc5\x5a\x31\xe4\x62\x36\xf7\xa4\x79\x93\x7d\x37\x9b\x7b\xca\xfd\x4d\x31\xc1\xd9\xf4\x53\xcd\x1c\x94\x5c\x80\xc7\x8d\x9f\xcd\x7f\xfa\xbc\x75\x76\xad\xcb\xe8\x4d\x25\xcb\x73\x59\x74\xe3\xf7\xcd\x25\xe1\xbf\xb9\xb4\x6e\xfc\x28\xd8\x64\xca\xcd\x25\x6b\xe3\x77\xb9\x27\x59\x9b\x4b\xd6\xc6\xef\x9b\x36\x64\x6d\x96\x77\x24\xc5\x3d\x45\xfa\x66\x69\x48\x29\xd3\xe4\xa9\xce\xd2\x10\xa3\x0f\x89\x2e\xe6\xf0\xec\xf2\x0b\x93\xa7\x0a\x48\x37\x7e\xf6\x79\x08\xba\x98\xcb\x0d\x1d\xbf\xc7\x8b\xf3\x21\xec\x1c\x06\x44\x40\x73\xf2\x3f\xe7\xe9\x9e\xb6\x74\x5c\xba\x98\xa7\x27\x7a\x8d\xbc\xd4\x0c\x3c\xdd\xf8\x09\xc4\x4c\x4e\x29\x4a\xdd\xf8\x51\x30\x78\xba\x98\x4b\x1c\xc7\x57\x49\x3c\x19\x92\x73\xb9\x98\x63\xfb\x79\x71\x6c\xc6\xb9\xc4\x71\x6c\x6c\xc6\xa9\xf4\x06\xb3\x6e\x6c\xdb\x77\xa6\xcb\x97\xdf\x39\xbe\xf2\xe2\xc9\xef\x04\xb2\x1b\xdb\x37\xbd\x7d\x32\x3b\x97\xe9\x38\x36\x1f\xb3\xc0\xda\x05\x9e\xdd\x80\x5e\x0e\x58\xbb\x98\x53\x97\x6c\xfe\x53\xc2\x65\x2e\x51\x1d\x9b\xaa\x10\xac\xbb\x98\xd3\xe5\xb6\x74\xac\xbb\x00\xb9\x1b\x9b\x0f\xca\xb1\xee\x62\x2e\x19\x1d\x5f\x21\x32\xe4\x5d\xcc\x47\x3f\x85\x57\xa6\xe8\x21\x0e\xde\xd8\xbe\xe9\x2d\x50\x08\x87\x37\x36\x41\x93\xc9\x43\x9d\xaf\x7b\x8a\x8f\x4c\x81\x42\x70\xbc\xb1\x09\x85\x4c\x86\xe4\x7c\x8d\xa7\x1c\xc0\xf4\x3d\xc8\x7c\xdd\x93\x3f\x37\xdf\xef\x9e\xaf\x83\x6b\xdb\x85\xd1\x8b\xe7\xa7\x21\x5b\x39\xa8\x5e\x3c\x3f\x03\x62\x21\x3c\xe4\xf7\x59\x82\x3b\x36\x1b\xf4\x23\x50\xf8\x6c\x06\x84\x19\x8b\xb4\x17\x68\x7a\x63\xbb\xfe\xfe\x2b\x8f\x47\xde\xfb\xd9\xf4\x57\xdc\xfe\xe1\xbe\x3e\xbb\xae\xa9\xe4\xc0\xd8\x8b\x67\x37\xae\xb6\x5f\xc4\xbd\xc0\xca\x1b\x9b\x74\x34\x64\x5e\x80\xe4\x8d\x4d\xe6\x19\x24\x2f\x40\xf2\xc6\xae\x7a\x09\x24\x2f\x40\xf2\xc6\xfe\x73\x4f\x3a\xfa\x2c\xe5\x1c\xbb\xc9\xfb\x30\x28\x91\xf3\xc6\xae\x2e\xe3\xe1\xe8\x22\xe7\x8d\xdd\x46\x8d\x9c\x17\x58\x79\x63\x37\x79\x41\xf2\x02\x0f\x6f\xec\xe6\xe9\x43\x08\x1f\x42\xb8\x2f\x74\x4f\x3c\x22\x7e\x58\x79\x63\x97\x79\x86\xcc\x8b\x27\xf5\xd3\xe4\x7d\x48\xe6\xb3\xcc\xc4\xb1\xcb\x83\x3d\xcc\x44\x38\xbd\xb1\xfb\x9c\xe8\x11\x1b\x84\xd3\x1b\xbb\xed\x17\x4e\x2f\x00\xf4\x06\x86\x72\x3c\xc2\x80\x0f\x1d\xdd\x55\x70\xe0\xe8\x05\x80\xde\xd8\xcd\xfd\x87\x9f\xfc\x74\xad\x0b\x2d\x82\xeb\xc5\xb3\xdc\xe5\xb1\x9b\xfb\x8f\xc2\x44\x8c\xbd\x01\xc1\x1c\x18\x7b\xf1\x74\x0d\xb1\x71\x31\xf6\x02\x4e\x6f\xec\xdc\x42\x38\xbd\x78\x96\xc6\x8e\xaf\x9a\x1a\x4e\x2f\x00\xf4\xc6\x2e\x98\x8f\xa3\x17\x0f\x71\xdd\x85\x42\x1e\x79\xef\x67\xe8\x12\xb7\x10\x32\x2f\x9e\x61\x40\x84\x42\x90\xf3\x02\x39\x6f\xec\xe2\xf6\xc8\x79\x81\x95\x37\xf6\x6f\xe9\x70\xb3\xb1\xf2\xc6\xae\xb0\xff\x21\x99\xcf\xe9\x9e\xbe\xb8\x05\xc9\x0b\x3c\xbc\xb1\x4b\x9f\x3d\x24\x13\x0f\x6f\xec\x02\x86\x0f\x43\xf2\x21\x99\x18\xca\x81\x87\x17\x78\x78\x63\xbf\xbf\x33\x3d\x26\x1d\xdd\x25\xc5\x1e\x3a\xfa\x50\x47\xb4\xe5\x78\x44\xe5\x10\xf0\xc6\xce\x1e\xc1\xbc\x0b\xb0\xbb\xb1\x2b\x7e\xc2\xbc\x0b\x94\xbb\xf1\x15\x63\xc3\xdb\xc5\x33\xdd\xd3\x26\xf0\xf8\x9c\xe4\x21\x99\xbb\xaf\x90\x1e\x76\x28\xd8\xdd\x38\xbe\xc5\xa5\x84\xf1\x59\x7a\x38\x8e\x9f\xcb\x09\x21\xf4\xdd\x38\x36\xfd\x54\x0d\x04\x72\x37\x8e\x6f\x1d\x71\xb3\x9f\x25\x92\xe3\x90\xea\x7a\x9e\xef\x9e\x6b\x6d\xa2\x2d\x07\xd6\x5d\x80\xdc\x8d\xaf\x32\x1b\xeb\x2e\x9e\x95\xaa\x1e\x87\x54\xd7\xf3\x6a\xfd\xd5\x3a\xc3\x07\x00\x2f\x9e\x57\xeb\xac\x60\x1c\xbc\x78\x96\x72\x8e\x83\xe1\x03\x79\x17\x2f\xc9\xfc\x6a\xb8\x5f\x92\xf9\xae\x84\xcb\x38\xd8\x38\x2f\x2f\x1d\xf9\x6e\x40\x30\x07\x00\x5e\x20\xdf\x8d\xaf\xb0\x1b\x00\x2f\x90\xef\xc6\xc1\x1a\x02\xc0\x8b\x77\x99\xa3\xe3\xb0\xb8\x5e\xb9\x95\x77\x73\x4f\x7b\xc8\x4b\x2a\xdf\x15\xe9\x1b\x87\x38\x23\x2a\x5e\xbc\xa4\xf2\x10\x49\x41\xc5\x0b\x38\xbc\x71\xf0\x15\x5f\x5e\xfa\xbb\xfc\xf2\x71\x88\x8b\x81\xe3\x05\x38\xde\x38\x54\x85\x80\xe3\xc5\x4b\x69\x61\x9d\xe3\x65\xb1\xbe\x87\x01\x29\xcf\x4e\x7e\x81\xf3\xc6\x57\x56\xfe\x72\xdd\x11\xf3\xc6\x21\x53\xf6\x4a\x58\xbf\xec\xd0\xaf\x82\xfc\x65\x87\xbe\xec\xd0\xc3\x16\x04\x95\x17\x18\x79\xe3\x50\x59\xf8\x12\xd5\x97\xc9\x79\xd8\x82\x10\xf3\xe2\x4d\x8f\x89\xef\xf0\x4a\x58\xbf\x44\xf5\x10\x5e\x79\x89\xea\x9b\x1e\xd3\xa7\x34\x30\x7a\x01\xa3\x37\x0e\x75\xb7\x30\x7a\x01\x9c\x37\xf0\x98\xe3\xe5\x7b\xbf\xcd\x3b\x52\x56\x0e\xa3\x17\xc0\x79\xe3\xb0\x49\xbd\xa4\x12\x1c\x6f\x1c\x6c\xb1\x57\xa0\xf0\x65\x33\x7e\xc5\xe2\x2f\x59\x7b\x97\x66\x8d\x90\xea\x7a\x55\x51\x23\xdf\x8d\x50\x27\xf8\xb2\x04\x71\xf0\x46\x08\x9a\xe0\xe0\xc5\xbb\x84\x6c\x04\x63\xea\x1d\x9e\x9d\x79\xf8\x15\x8b\xbf\xcc\x43\x8c\xbc\x11\xf0\x25\x50\x79\xf1\xb2\x04\xbf\x0a\x72\xa8\xbc\x78\x97\x90\x8d\x50\x33\xf5\xb2\x04\x81\xf3\xc6\x57\x2c\x8e\x9f\x17\x88\x79\x23\x6c\x52\x2f\xa7\xf9\x5d\x89\x88\x11\x7c\x44\xfc\xbc\x78\x69\x5d\xf0\x15\xf0\xf3\xe2\xbd\x3c\xbb\xf0\xca\x2b\xa4\x08\x87\x37\x22\xff\x3e\x42\x01\x99\x17\x58\x79\x23\xe4\x93\x41\xf2\x02\x0f\x6f\xc4\xb7\x74\xc8\x1b\x2c\xde\x40\x70\x8e\x97\xbc\xbd\xe4\x2d\xa4\x8e\xd1\xf1\xe2\x5d\x86\xe1\x08\x86\xda\xab\x04\x07\x16\x6f\x04\x43\xed\xe5\x3c\xbf\xec\xbc\x20\xc3\x2f\x81\x79\x09\x4c\x8a\x48\x63\xde\x05\xca\xdd\xc8\x15\xd8\xcc\xdf\x12\x98\xfc\x11\x18\x80\xdd\xc4\xbc\xcb\xdf\x0a\x03\x8e\x5c\xe9\xe8\xfc\x2d\x9b\x2c\x7f\xcb\x25\x1e\xca\x77\x13\xde\x2e\x7f\xcb\xfb\x1d\xb9\xd6\x53\x02\xda\xe5\x6f\xf9\xbb\x03\x60\x37\x01\xed\xf2\xb7\xb9\x7c\xd5\x7a\x24\x92\x5d\xfe\x96\xa4\x8c\x5c\xce\x73\x02\xda\x25\xa0\xdd\xc8\x4b\xeb\xcb\x32\x4b\x08\xbb\x91\x6b\x3d\xe5\x6f\xd7\xd0\xae\xa1\x5b\xe7\x77\xfd\xdc\x35\xb4\x76\xb0\xfc\xed\x1a\xda\x35\xb4\x6a\x7a\xf3\xb7\x6b\xe8\xd0\xf9\xa9\xa1\xc3\x3d\x69\x09\x14\x6f\xfe\x96\x96\x24\xca\xdd\xc8\x47\x3f\x0f\x0d\x2d\x8b\x6e\x28\xf4\xcd\x5f\x18\xba\x15\xce\x1b\x2a\x5f\x13\x7c\x2e\xc1\xe7\x46\x5b\xf1\x91\x04\x9f\xcb\x1f\x81\x69\xbb\x86\x42\x97\x96\xa4\x8c\x76\xe8\x52\x6a\x9d\xd5\x86\x66\x9b\xbf\xd4\xfa\x92\x94\xd1\xd2\x13\xa5\xc7\x24\x30\x2a\x5f\xf3\xb7\x3c\xdc\xfc\x2d\xd7\x76\xe0\xde\xe6\xaf\xe9\x27\x9f\xb6\x35\x6f\x73\xc9\x4d\xfe\x18\x68\xad\x19\xba\xa6\xf3\xcd\x3d\xfb\x77\xb9\x7b\x76\x97\x77\x5d\xea\x5e\x31\xd5\x69\x43\x97\xba\xc7\x5c\x3a\x33\xda\x70\xcf\x72\x26\xd5\x69\xa7\x01\x19\x5e\x31\xbb\xa9\x2d\xf7\x35\x7f\xc3\xeb\x18\x2e\x5f\x15\xda\xf9\x1b\x06\x84\xdd\xd4\xa6\xc9\x30\x0c\xc8\xd0\xfa\x34\xf2\xcb\x1b\x4d\xd0\xb9\xd1\xbe\x57\x3c\x74\x9e\x31\xd5\xa6\x2e\x9d\x5a\x67\x4c\xb5\xc7\x5c\x3a\x0d\x08\xd5\x69\x8f\x7e\x9e\x06\xe4\x34\xf2\xaf\xd6\x4f\x23\x4f\x8a\xda\xeb\xf2\x65\x6f\xe5\x8f\x14\xb5\x55\x1e\x97\xbf\xcb\xc8\x2f\xeb\x6b\x20\xce\xe6\xef\xd2\x10\xb3\xab\xff\x3c\xe6\xe5\x89\x96\xa1\x35\xfa\xa6\xa1\x4b\x43\xeb\x5b\x91\xd1\xb7\xaf\x21\x4f\xb4\x1c\xd6\xd1\x37\x8f\xb9\x2c\xb3\xc4\xac\x1b\x4a\x57\xf3\x77\xbb\xfc\x76\xf9\x4e\x04\xee\xef\xf2\xd7\x41\x8f\x39\x75\x7e\xd5\xb9\x8c\xbe\x7b\xc5\x53\xe7\x97\x17\x3b\xfa\x61\x90\xa7\xb7\xb9\x34\x6b\xf4\x43\xe7\xa7\x91\x9f\x1a\x3a\xb4\x3e\x4d\xef\xc7\x3d\xc3\xac\x7b\x8c\xfc\xe3\xf2\x30\xc1\x1e\x97\xaf\x24\xc7\xe8\xe9\x31\x1f\x73\x69\x39\xac\xa3\xa7\xc7\x7c\xdc\x73\x65\x3e\x06\xb4\x6d\x62\xdd\xe5\x6f\x99\x64\xa3\x37\xfd\x7c\x0d\xc8\x32\xc9\x46\x6f\x56\xc7\x6b\xe4\x99\x5d\x7d\x45\x7c\x12\xc8\x2e\x31\xeb\x46\x5f\x96\x4b\x62\xd6\x25\x12\xdd\xe8\x2b\xca\x9d\x48\x74\xb9\x31\xa6\x94\xae\x26\x2e\x5d\x22\xd1\x8d\x4e\x2a\xb7\x65\x5a\xe5\xb6\x19\x64\x52\x89\x44\x97\xdb\xee\xf2\x65\xd7\xe7\x46\xeb\xb6\x5d\xe7\x97\x3d\x92\x60\x75\xb9\x31\xa6\xfa\xa9\x4b\xcb\x8a\x4a\x78\xba\xa1\x20\x35\xb7\x5d\x97\x0e\x9d\xbf\xb4\x4e\xd6\xe0\xe9\x86\x82\xd4\x84\xa7\xcb\xed\x70\x39\xfd\xdc\x96\xc1\x94\xdb\xe1\xc5\xdd\x1a\x5a\xae\x69\x62\xd6\x8d\x4e\x54\x31\xeb\x12\xa5\x6e\x28\x48\xcd\x8d\xd6\x6d\xe2\x77\x7d\x1a\x4f\x5a\x87\x59\x37\x3a\x51\xdd\xd2\xe5\xe9\xf2\x47\x97\x96\x9e\xe5\xc6\x1a\x52\x66\x9a\x68\x73\xb9\x2d\x25\x1a\x65\xce\xa3\xcd\xe5\x46\x97\x6a\x33\x9e\x74\x69\x5b\x5e\xe1\xa8\x4d\x3f\xbb\xf1\xe4\x23\xd6\x2a\x00\xc8\xad\x6b\x9d\x58\xd5\xae\xa1\xee\x9e\xcb\x2b\x1c\x78\xb7\xb9\x51\x30\xec\xb9\x81\x77\x9b\xdb\x0a\xc7\xe5\xc6\x47\xac\x43\xeb\xe5\xbd\x0b\xab\xd5\xe1\xf2\xd2\xa5\xe1\xf2\xf8\xdb\xaf\x3c\x72\x1b\xee\x4d\xf3\x2a\x8c\x16\xcd\xdb\x18\x55\x8a\x48\x73\x23\x6f\xe0\x73\xa3\xcc\xfd\x6d\xe8\xef\xb2\xad\x46\xa5\xcb\x4f\x13\x4d\x20\xae\x2c\x88\xed\xd4\x10\xcd\xab\x95\x29\x4d\x44\xba\xdc\x04\xe2\xca\x26\x80\x3a\x97\x70\x73\xa3\x4e\x8f\x4b\xb4\xb6\xcb\x99\x97\xd7\x72\x79\x57\x8c\xaa\xb2\x7b\x83\xcf\xe5\x76\xbb\xfc\x72\xcf\xdb\xe5\xec\xa6\xba\xdd\xf3\xf6\x44\x7c\xc5\xba\x75\x9e\x3e\x61\xd0\x0d\xf5\x97\xb9\xd1\xa7\x8d\x3e\xd5\xf4\xec\xf4\x69\x13\x73\x2b\x1b\x35\x22\x5d\x22\xd2\x0d\x3c\xd9\x84\xa2\xcb\x4d\x24\x4d\xa9\x65\x82\xcf\x25\xf8\xdc\x50\x55\x99\xdb\xe3\x89\xe8\x13\x20\x6c\x6e\xcf\x77\xf9\x74\xd0\xab\x7e\xf4\x73\x79\x87\x63\x7c\xf3\x94\x14\x61\xd0\x8d\xf1\xcd\x53\x52\xb4\x91\x22\x55\x95\x89\x4f\x97\xc0\x74\x03\x25\x36\xb7\x57\xeb\xc2\x6b\xe3\x9b\xbc\xef\xd7\xd0\xeb\xe0\xba\x27\x22\x5d\x62\xd0\x8d\x41\xc5\x77\xa6\xdc\xbe\x4a\x45\xc6\x60\x65\xec\xcb\x57\xcc\x7d\x59\x74\x63\x2c\xff\x33\xf7\x95\xdf\x4d\x44\xba\x31\x56\x09\x46\xee\xcb\x73\x4c\x60\xba\x31\x96\x31\x9d\xfb\xe6\x9e\x2b\xc9\x31\xc6\x8a\xf8\xe4\xce\xe8\xdb\x69\xde\x58\xc6\x74\xc2\xd4\xe5\xce\xbe\xc3\x93\x4d\x44\xba\xc4\xa0\x1b\xc3\xfc\x44\x9d\x4b\xb8\xb9\x31\xfa\x77\xa6\x2e\x91\x37\x20\xd8\xdc\x59\x6d\x20\x72\x63\xac\x0c\x79\xee\x94\x0c\x52\x6e\x0c\x26\xe7\x4e\xc9\x76\xe9\x89\x61\xd2\xee\x94\x6c\x5f\xc9\xdb\x31\x4e\xad\xaf\x20\x5b\xa2\xc6\x8d\x41\x32\x51\xe3\x12\x20\x6e\x0c\xf6\xc8\xbe\x4c\xab\xdc\x65\x0d\xf0\x59\x73\x67\x4c\xed\xcb\x15\x1b\xc3\xac\xdb\x9b\x33\xe5\x02\x06\x79\xdb\xbb\x67\x27\x30\xe3\x75\xcf\xae\xa1\x95\xcd\x1c\x27\x8b\x60\x5f\x21\xa9\xdc\x05\xf3\x4f\xb3\x6e\x67\x37\xed\x04\xe6\x64\x11\xec\xf5\x5d\xfe\x3a\xb8\x56\xdc\x3e\x34\xc4\xc6\x39\x37\xa3\x64\xbd\xef\x96\xf6\x49\xc9\xf6\xd3\x3d\x97\x01\x33\x4e\x4a\x86\xe2\x96\x3b\xcb\xe5\xfc\x5e\xf1\x65\x94\x88\xc0\x19\x26\xd8\xe5\xbd\x2f\x5b\x65\x9c\xa9\x4b\x97\xf7\x4e\x04\xce\xef\xbd\x13\x81\xfd\xd2\x4f\x62\xb5\xdf\xfa\x29\xf0\x7e\x36\x97\xdf\xfa\xb9\x04\x62\x9c\x36\xea\x9d\x32\xec\x94\xe1\x2c\x13\xec\x76\x4f\x81\xf7\x73\x98\xc9\xd3\xd0\x11\x81\xf3\x7b\xef\xd3\x9c\x27\x02\xe7\x65\x90\xa7\xcb\xa7\x2e\xd1\x25\xbc\xb7\x04\x7a\x1b\xe7\xed\x6d\x32\x52\x76\xca\x70\xde\xba\xf4\xb8\xa7\x28\xd2\x79\x7f\x97\xeb\x27\x7b\xe4\x9c\x5a\x27\x02\xbb\xf5\x7e\x3e\x5a\xb7\xde\xc1\xdc\x06\x46\x69\xee\xef\x77\xb9\x2e\x11\x2b\x30\xb7\x04\x73\x1b\x27\xb1\x02\x73\xcb\x83\x43\x76\xb2\x2e\x0f\x0e\xd9\x61\x15\x5f\xcb\x9f\xcf\xc3\x2a\x46\x78\x1b\xd7\x8a\x8b\xe5\xb1\x96\x6f\x1e\xbc\xb4\xcb\x5c\x42\x78\x4b\x4c\xb7\x71\x51\x30\x68\xb7\x3c\x38\x64\xd7\xfa\xee\x2f\xc1\xdc\xf2\xb0\x8a\xaf\xdd\xe5\x56\x31\xa6\xdb\xb8\xd6\x37\x50\x79\xac\xe5\x9b\x87\x90\xcd\xc5\x66\x44\x71\xcb\x83\x9b\x75\xad\xef\x2c\xf2\x58\xfe\x55\x1e\x3c\x2a\xb5\x72\x79\x58\xc5\x98\x6e\xe3\x5a\x01\xe2\x3c\xd6\x9a\x4e\x4c\xb7\x71\xd9\x0d\xc1\xdc\xf2\x10\xf2\xbe\x52\x3f\x53\x97\x58\x19\x57\xd7\xcf\x15\x96\x49\xa8\xb5\xa1\x02\x2e\x0f\xce\x13\x9c\xda\x50\x01\x97\x38\x6a\x79\x58\xc5\x17\xff\xf8\xe8\x9e\x7d\x45\x94\xc7\x35\x3c\x11\xef\x07\x40\x6d\x5c\x43\xeb\x5d\x43\xcc\x84\x6b\xa5\x3c\xf2\x60\x26\x1c\xf6\xf7\x8b\x04\x41\x9f\x25\xca\xd9\x00\x04\xcd\xc3\x56\x8e\x72\x36\xae\xdb\x3d\x4f\x67\x8a\xf0\x5e\xf3\xef\x0d\x8a\x83\x73\x02\x7a\x36\x80\x41\x13\xfb\x2c\x41\xcf\xc6\xf5\x18\x03\xce\x09\x04\xda\xb8\x1e\x73\xea\xd2\xa0\x25\x7e\xad\x7c\x72\x42\xa0\x25\xbe\xd9\xb8\xbe\x29\x69\xe1\x1e\xb6\xf4\xfb\x67\xb0\x2d\xdc\x83\xcb\x71\xf3\x6d\x60\xce\xf2\xb0\xa5\xdf\xf6\x4f\xb4\xb3\x3c\x04\x75\xef\x6f\xf6\x59\xa3\x87\xe4\xd8\xbd\x6b\xdd\x1a\x3d\xac\xd1\x7b\x55\x53\x27\xda\x59\x1e\xf2\x60\xf7\x37\xfb\x1e\xab\x44\x7c\xe4\x66\xd2\x1d\x76\xef\xc3\xee\x7d\x1f\x1e\xd3\xee\x0d\x81\x36\x6e\x1e\xcb\x61\xa3\x3e\x2c\xdc\x9b\x10\xe2\xa2\xe5\x61\x4f\x56\x83\x98\x10\x68\x19\xd6\xe8\xcd\xcd\x86\x40\x4b\xb4\xb3\x71\x93\x37\xb4\xb3\x04\x36\x1b\x37\xb3\x2b\xd6\x16\x9b\x50\x66\xe3\x5e\xb1\xa1\x0c\x2b\x0f\xd8\x6c\xdc\x5c\x0e\x44\xb3\x0c\x3e\x83\x22\xc2\xc4\x2e\x4b\xec\xb2\x71\x97\xd6\xd7\x6e\x9a\xd8\x65\xe3\x5e\x15\x66\x09\x5a\x96\xc1\x3d\xb8\x79\x02\x30\x65\x19\x96\xe3\x7d\xeb\x92\xa8\x07\x5a\xd9\xb8\x05\x4d\x42\xd4\x23\xac\x51\xa0\xcd\x44\x32\xcb\x10\x6b\xbd\x1f\x8f\x79\xe8\xbc\xed\xf7\xb6\x2b\x86\xed\x37\x42\xe7\x05\x4d\x50\xce\x12\xe5\x6c\xdc\x8f\x7b\x2e\x5f\x23\x51\xce\xc6\xfd\x78\xf6\xd0\x90\xd5\x7c\x73\x0f\x60\xca\x32\x24\x9b\xa6\x09\x16\x16\x6e\xf0\x19\xe6\xa6\x21\x7b\x72\x58\xcd\x93\x68\x85\x3d\x19\x6e\x6c\xcc\x95\xe6\xcd\x58\xce\x42\x86\xa4\xfd\x64\x61\xe1\x8c\x65\xf0\x04\xa6\xfd\x13\x36\x2c\x43\x58\x75\x9a\x4b\x61\x89\x87\xdd\x7b\xb2\x9b\x20\xc5\x12\x2f\x6c\xcc\x30\x20\xc3\x99\x6b\xa5\x8f\xc9\xd1\x05\x0a\x4b\xa0\xb0\x31\xd3\x3b\x62\xc2\x03\x85\x8d\xb9\x78\x53\x89\x10\x96\x41\x0c\x26\x6b\x3d\x4e\x03\x62\x4b\x9f\x34\x2f\x4e\xcf\xbe\x36\xdc\x31\xbb\xd6\x6f\x23\x6f\xc1\x02\x6d\x66\x58\xb0\x61\x53\xc5\xd4\xcc\x60\x6e\x23\x76\x8d\x49\xde\x80\xbb\x32\x2c\xd8\xc9\xec\x0a\x0b\x36\xac\xcd\x79\xba\xa7\xb5\x19\x8f\x67\xe7\xa9\xc6\xe3\xd9\x25\x5c\x80\x36\x13\xe2\x2b\x41\xbd\xc6\xb4\x27\xc7\x6b\x75\xf0\xd2\x81\x36\x33\xad\xb8\xfc\x69\x68\x7e\x07\x0f\x07\x75\x69\xf1\xa6\x12\xa3\x2b\x71\xb8\xc6\xb4\xd3\x26\x8b\x15\x95\x6b\x28\x37\xcc\xb4\x01\xa6\x65\x38\xc5\x71\x92\x19\x8b\xb5\x35\xe6\xeb\x9e\x42\x8a\x29\x7a\xa8\xdc\x30\x73\xad\xaa\x4c\x89\xe0\xc7\xac\xc3\xd3\xca\x94\xde\x55\x05\x98\xd0\x59\x99\xcb\x87\x1e\x8f\x6d\x2d\xd7\x64\xcf\x14\x28\x84\xa5\xcc\x64\x87\x02\x69\x8d\x87\x32\xe0\x69\x25\x82\xd6\x78\xba\x86\xec\x75\x08\x5a\xe3\x29\x4f\xb4\xc2\x86\x99\xf6\x3a\xb0\xc9\x4c\x7b\x5d\x0a\x14\x3e\xe4\x02\x64\x2b\x61\xb5\xc6\xb3\xaa\x57\x32\x9b\x27\x92\x89\x78\x4c\x86\x6c\x46\x49\xd2\xf6\x59\x1f\xd7\x66\x5a\x5c\x58\x5b\xe3\x39\xb5\xce\xf7\x4e\xbe\xb7\xa2\xbc\x04\xe0\xca\xb4\xb8\x1e\x33\x24\x2d\x2e\x1c\xae\xa1\x28\x2f\xe1\xb8\x12\x87\x6b\x3c\x97\xc7\x5c\x5f\xc2\x65\xb2\x97\x9f\x4b\xe7\x4b\x43\xe2\x8c\xcf\x65\xe8\x4a\x3f\xe5\x67\x9f\x6f\xda\x94\xb7\x29\xf8\xf8\x08\x29\x26\x23\x3a\x19\xd1\xcf\xf4\x3a\x18\xd1\x88\x5d\xe3\xf9\x26\x18\xef\x3c\xe5\x41\x1e\xf6\x1d\x7e\x57\xa6\x3c\xc8\x43\xeb\xd0\xbc\x12\xc6\x6b\x3c\xa2\x87\x68\x5e\x09\xe3\x35\x9e\x6f\xd6\x59\xda\xf8\x5d\xe3\xb1\x99\x02\x77\x65\x5a\xc5\xaf\xcd\x34\xed\xda\xa8\x5c\xe3\x5d\xf5\xac\x99\x6c\x70\xc8\xad\xf1\x32\xf6\x53\xa0\x30\xe5\x67\x5f\x91\xe8\xbc\x9d\xc9\xb2\x7e\x77\x93\xf6\x36\x4a\x36\xe8\x55\xa9\xf7\x37\x06\x45\xda\xa8\x41\xb3\xc6\x6b\xab\xcc\x69\x0c\x58\xd8\xaf\xe0\x5e\x0a\x03\x62\x67\x8d\x37\xcc\x29\x61\x40\x5c\xac\xa1\xe4\x2e\x93\xef\x0d\x8f\x35\xde\xf4\x10\x76\x6f\x78\xac\xf1\xa6\xfe\x72\xc8\x73\xa5\x6b\xc7\xdb\x4c\xc9\xe5\x9e\x67\x0a\x18\xbe\xcd\x44\xb3\xa5\xa7\x3c\xed\x4b\x1d\xf3\xd5\x90\x94\xec\x4b\x08\x61\xb5\x12\x2c\x6b\xbc\x8c\xbf\x7c\xbf\xcb\xd7\xa4\x78\x57\x7a\x3f\x11\xb4\xb2\x51\x9d\x77\x55\xc6\x64\x5b\x4e\x77\x36\x01\xc3\x77\x7c\x67\xa6\x83\xdd\xc1\xe6\x60\x39\xa8\xf3\xe2\xe1\x8d\xef\xdd\x56\xfd\xf4\x78\x85\x01\xdb\xa6\xa1\x65\xb5\xbf\x27\x81\x41\xde\x4a\xc8\xad\xf7\x5c\xd9\xec\x6c\x44\xab\xad\x08\xe3\x7b\x0a\x1c\xb4\xcd\x3d\x97\x76\xbd\xe7\xfe\x9d\x79\x3b\xf8\x38\xb8\x46\xa9\xd9\xfc\xe1\xb1\xc6\x6b\x91\x35\xfa\x04\x6c\xb5\x7f\x2b\xaf\x11\x98\x96\xdf\x27\xa5\xbb\x83\x9e\x28\xbf\x4f\x4a\xd7\xdb\x6c\xab\x2a\x24\xf1\xa6\x56\x55\xec\x3a\xe8\x72\x29\xcb\xf9\x75\x7e\x6d\xc6\x09\x70\xf4\xfb\xd9\x93\xdb\x34\x9e\x6b\xe4\x7f\x3f\x46\x1f\x1c\x50\xf6\xdd\x41\x71\x31\x04\x98\xec\xfe\x4d\xcc\xff\xf9\x67\x17\xc7\xeb\xfe\x11\x5f\x65\x61\x42\xbf\x64\xf7\x77\x60\x3f\x01\x0e\xe8\x97\x04\x7b\x39\x36\x36\x63\x5f\xe6\x7a\xf6\x65\x8b\x1f\x1b\x25\xeb\x16\x2e\x68\xcb\xae\x9e\x39\xb1\x5b\xb2\xaf\x85\xbb\x3f\x9e\x1d\x9e\x25\x71\x59\xf6\x4f\x5c\xbb\xd5\xdc\xd7\x2e\xbc\x3f\xdc\x57\x24\x96\x84\x60\xd9\x3f\x1d\xed\x96\x38\xa2\xca\xfe\xd8\x69\x11\x55\xb2\x5f\x2e\x3f\xbf\x33\x5d\xbe\xb6\xf4\xfd\x91\x46\x81\x59\x49\x60\x95\xfd\xe1\x5d\x74\xeb\xbe\xaf\x75\xbf\x3f\x42\x75\xdd\xba\xef\x2b\x7f\xb9\x3f\x97\x7b\x2e\x53\x20\xfb\x72\x97\xf7\x67\x95\x1b\x66\x17\xe1\xc7\x34\xd9\x1f\x7e\x08\xa6\x49\x82\x68\x1c\x41\x9f\x40\x34\xb2\x96\xec\x1f\xb1\x6a\x13\x12\x6b\x22\x7d\xa8\x7f\xc4\x4a\x47\xa6\x0f\xf5\xd3\x57\xc3\x47\xae\xbf\x06\xc8\x61\x90\x7d\x75\x7a\xa4\x69\xe3\xab\xd3\x3c\xfd\x7f\x7c\x13\x1f\x39\x19\xd1\xa7\xbf\x4f\x6e\x3f\x67\x5a\x08\x3e\xa1\x3a\x10\x6a\xd2\x27\x54\xe9\x4b\x87\x03\x01\x24\xfd\x97\x7d\xaa\xfa\x3d\xca\x41\xff\x04\x9d\xdf\xff\x34\x8f\xef\xa0\x15\x37\xfd\xed\xe7\x17\xbf\x9b\x2b\x07\x9f\xd3\x9f\xa6\x8d\x55\x12\x9a\x6a\x02\x53\xc1\xdf\x31\xd8\xcb\x0a\xfe\x52\x25\xdc\xe1\x6f\x7a\x52\x25\x5c\xaa\x7d\x3a\x4e\x0e\xb9\x7f\x14\xcd\xc7\x99\xa7\x51\x7a\x9d\xe9\x2f\xfe\x8e\x8b\x6d\xeb\x2f\xfe\x52\x26\xf7\xb8\xd6\x42\x68\xfe\xaf\xac\xfd\x56\xe4\x7c\xfd\xd9\xfe\x5f\x07\xd7\xfa\x6b\xd2\x36\x87\x7f\x14\x68\xbf\x55\x5e\xd3\xfc\x77\xcf\x01\x8b\xdf\xa4\x3c\x9a\x90\xe2\x31\x97\xda\x34\x21\xc5\x26\x18\x71\xb0\x71\x9a\x60\x44\x03\x80\x5e\xff\xb1\xf8\xc7\x9f\x8d\xf7\xd3\xe2\xfb\xef\xad\xef\xe0\x32\x67\x5a\xac\x33\xd7\x3f\x6a\xfd\xf1\x67\x63\xb5\xb5\xfc\xfe\xc6\x66\x79\x7e\x2d\x57\x45\x45\xa3\xb4\xeb\x7f\x68\xfe\xf8\xb3\x51\xda\x46\x04\x62\x5f\xaf\xb8\x11\x81\xf6\x21\xb7\x8e\xef\xe0\x2a\x2a\x69\x16\x6c\x1c\x6b\x69\x37\xb0\xa5\x66\x89\x2e\xfe\xf7\x5f\x07\x4f\x97\xfb\xdc\xfb\x58\x61\xa0\xd6\x97\xc1\xdb\x4c\xef\x38\x96\x7f\xdc\x4a\x43\x18\x1c\x11\x4b\xac\x1a\x06\x47\x33\x93\x03\xfa\xac\x99\xc9\xcd\xa4\x0d\x7f\xfa\xdb\x4c\xda\x76\xaa\x42\x69\xdf\xc1\xe5\x4a\xb5\xf3\xff\xa1\x00\xff\x3a\xb8\xac\xbd\x66\xd2\x2e\x50\xdf\x1f\x7f\x36\x93\xb6\x7d\x9f\xea\xf5\x65\x48\x36\x5f\xec\xb5\xeb\xe3\x9a\x2d\x4f\xa5\xf9\x62\xaf\x5d\x94\x16\x77\xa6\x5d\xcb\x6a\x6b\xdf\x57\x64\x72\x55\xed\xea\x0e\xbe\x1f\xf4\x6a\x3d\xa6\x85\xd0\x2c\x84\xa8\x65\x3b\x34\x0b\xa1\x4d\x68\xc5\xf1\x1d\x5c\x79\xa5\xa6\x60\x3a\x7c\x61\xdf\x14\x4c\xb7\xf9\x51\x17\x56\x39\x4f\x53\x3e\xdd\xe6\x07\x58\xe8\xcf\xff\x30\x28\xc6\xff\xb0\x27\x9a\xff\xe5\x6e\x5f\x51\xb4\xef\xdf\x9b\xda\xe8\x36\xfb\x87\x15\xb8\x1d\xd4\x09\xc5\x28\x63\x49\x73\xf3\xe7\xd9\xcd\x1a\x0b\x1f\x9b\x37\x6b\xac\x59\x4e\x71\xee\x7f\x49\x73\xb3\x9c\x9a\x95\xb3\x3e\x45\xfc\xe3\xcf\x6e\xe5\xf4\xdf\xf7\x0d\xcd\x77\x10\x1e\x5b\x4e\x3b\xee\x65\x10\xf4\x9f\x3f\xe8\xfd\x3d\xdf\x17\x1c\xb1\x0e\xa2\xab\x5b\x4e\xab\x92\xff\x8f\x3f\xbb\xe5\xd4\xb7\xaf\xa2\x7b\x7d\x23\xd4\xe5\x95\xfa\xf7\x2f\x46\x73\x49\x73\xdf\xfc\x2d\x9b\x85\x77\xfe\x96\x8c\x76\x0b\xaf\xef\xdf\x41\xad\x5b\x78\xdd\xc2\x3b\x37\x07\x2d\xbc\x6e\x8d\x9d\xbb\x83\xd6\x58\xb7\x9c\xce\xc3\x41\xcb\xa9\xb3\x20\xce\xf8\x0e\xfa\x83\x07\x70\xca\x33\xc6\xff\xb0\xfd\x9e\xff\x98\xf7\xbf\x9f\xff\xfc\xe3\xff\xff\x5f\xe7\x3f\xff\xf7\xf9\xef\xcf\x3f\xee\xff\xfe\xd7\xbf\x9e\xff\xf8\xaf\xf9\x6f\xf7\x7f\xfd\xe3\xff\xfb\xeb\xe8\x3f\xe6\xf3\xfe\xdb\x7f\x3c\xff\x7a\xfe\xcf\x7f\xfe\xf7\xbf\xee\xe7\x1f\xff\xfc\xcf\x7f\xfe\x75\xd5\xfa\xfd\xdf\x00\x00\x00\xff\xff\xe7\xdc\x37\x17\xd8\x80\x03\x00"); +var _dcda =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x41\x6f\xdb\x3e\x0c\xc5\xef\xfe\x14\x3c\xf6\x7f\xe8\xdf\x92\x35\x47\x31\x50\x14\x58\x93\xa1\xf3\xa1\xeb\xb0\x2c\xdd\x80\x61\x07\x59\xa2\x02\x01\x8b\x2c\xc8\xf6\x21\xdf\x7e\x10\xe9\xb9\x87\xe0\x25\x3f\xf1\x3d\x91\x11\xeb\x43\x7f\xec\x63\x98\xa1\xfe\x9a\x47\x7b\xc2\x19\x7c\x88\x2e\xe3\x34\x2e\xd9\x22\x0c\x78\x09\xb1\xaa\x64\x03\x2e\xd8\xf9\xdf\x4f\x12\x7b\x35\xa9\xaa\xea\xe7\xa7\x64\xef\x3f\x9d\x0f\xf7\x9f\x61\x99\x70\x85\x87\xfe\x78\xba\x4d\x33\x5e\xfb\xe8\x47\x50\x6c\x76\x4b\x5a\x03\x00\xea\x6f\x78\x09\xd3\x9c\x6f\x70\xf7\xd1\x8d\x03\xfe\x07\x0e\x7d\xe1\xaf\xd9\x61\x0e\xf1\x02\x77\xcf\x4f\x72\xa3\xa7\x25\xa5\x3f\x78\xc5\x38\x83\x20\x86\xd1\x91\x56\xf5\xe1\xc5\xa4\x2f\xe6\x8a\xf0\xde\xc9\x1b\x1d\xd1\xc9\x1b\xe6\x29\x8c\x11\xba\xff\x85\xd8\xbd\xe3\xef\xb7\x84\x20\xd7\x84\x73\x7f\x7c\xf5\x7e\xc2\x19\x94\xe0\xf4\xfa\xe7\xb9\x3f\xc2\x2f\x09\x52\x40\xd3\xaa\x5d\xfb\x7b\x2d\xfd\xf1\x32\xba\xcd\xd8\x08\x1e\xc7\x06\x97\x4d\xbc\x60\xf5\x60\xa4\x69\x1e\x61\x15\x68\x75\x4b\x48\x31\x52\x84\x3e\x10\x32\x8c\x4c\x41\xdd\x9e\xd0\xc0\xc8\x3e\x82\xd6\x82\xab\x1c\x23\x47\x55\x5d\x41\x03\xc7\x0f\xbe\xa0\x7d\x53\x90\x47\x42\x45\xb4\x16\xbb\xea\xc1\x28\x23\x0b\x22\x81\x56\xef\x09\xed\x19\x75\x64\x14\x84\x2c\x23\x4b\x55\x8a\x10\x32\xe2\x2c\x5d\xd0\x40\xad\xaa\x61\xa0\x2a\x8a\x1f\x1c\x23\x47\x55\x14\x5f\x1a\x5a\x05\x5a\x5d\x5a\x55\x8e\x06\x22\xd1\x5a\x30\x62\xa3\x23\xa3\xa4\x26\x1c\x1b\x8b\xc0\x4e\x10\xf2\x6c\xf4\x74\x63\x47\x37\x7a\x36\x7a\xfe\x27\xa8\x2f\x1e\x5b\xf1\xd8\x52\x96\x85\xd8\xde\xa1\x7c\x2f\x7b\xb8\xad\x86\x5d\x72\xc6\x38\xd3\x16\xd2\xfb\x97\x07\x0c\x11\xb7\x35\x4f\x63\x2a\x2e\xfa\xfc\x0d\x00\x00\xff\xff\x92\xaf\x31\x14\x12\x03\x00\x00"); +func _ggfg ()([]byte ,error ){return _gb (_ccgb ,"Adobe-KR-2")};var _bgfd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x51\x6b\xdb\x3c\x14\x86\xef\xf5\x2b\x74\xd9\xef\xa2\x5f\x74\x8e\x65\x4b\x02\x53\x18\x2d\x85\x50\xba\x8d\x76\x6c\xd7\x8e\x25\x07\xc3\x62\x1b\xc7\xb9\xe8\xbf\x1f\xe7\xbc\x49\x07\xbb\x08\x8e\x9f\x48\x6f\xc4\xf3\xda\x67\xf7\xb8\x7f\xda\x4f\xe3\x66\x77\xdf\xd7\xb9\x7f\x2f\x9b\x1d\xc6\x29\xaf\xe5\x3c\x5f\xd6\xbe\xd8\x43\x39\x8e\x93\x31\xc4\x36\x8f\xfd\x76\xbb\xd5\x4b\x7f\xea\x16\x63\x64\xff\xfb\xc7\x79\x2b\xa7\xfd\x34\xcc\xb6\xc2\xba\x7c\x59\xae\x6b\xad\xdd\xbd\x95\xe3\x78\xde\xd6\x0f\x7b\xf7\x25\xcf\x87\xf2\x9f\xcd\x65\x10\xfe\x6d\xcd\x65\x1d\xa7\xa3\xbd\x7b\x79\xfb\x84\xef\x97\x65\xf9\x5d\x4e\x65\xda\x6c\xad\xac\x4c\x59\xaf\x66\xf7\xf8\xda\x2d\x5f\xbb\x53\xb1\x3b\xcd\xb9\x7f\x79\xbb\xc7\x12\xfd\xe5\x67\x59\xcf\xe3\x3c\x59\xfa\xdf\x39\xfe\x8b\x7f\x7c\x2c\xc5\xd2\x35\xe1\xd7\xeb\x9c\x8b\x75\xb7\xbc\xfd\xd3\xe3\x7c\x99\x36\x4b\xcc\x15\x92\x0c\xe1\xd8\xfd\x9c\xcb\x79\xe9\xfa\xb2\x76\xd3\xb1\x18\x6b\x5b\xe7\x9c\x7b\xb0\x2d\x3f\x3f\x3f\x3f\xc8\x99\xfe\x59\x61\x7c\xbc\xee\x1c\x33\xc8\x6d\x87\x73\xc3\xf0\x60\x9d\x69\x1d\xe1\x9e\xe4\x9e\xeb\xc6\xb4\x8e\x41\x58\x48\x4d\x6c\x5a\x57\x81\x54\x42\x42\x13\x4d\xeb\x3c\x88\x17\x42\x8e\xbd\x69\x5d\x0d\x54\x2b\xe2\x28\xd9\x0d\x50\xa3\xa8\xae\x24\x3c\x00\x05\x45\x21\x49\x7a\x04\x8a\x7a\x02\xe7\x25\x3e\x01\x25\x45\x95\x93\xf8\x0e\xa8\xbb\x9e\x53\xe2\x0f\x40\x07\x45\x91\x24\xbe\x07\xea\x05\x55\x2e\x48\x7c\x06\xca\x8a\x2a\x96\xf8\x02\x54\x14\xd5\x51\xe2\x07\xa0\x41\x51\xf4\xce\xb4\x04\x53\xa4\xa6\xbc\x4b\x8d\x69\x09\xb2\x48\x65\xf9\xaa\x66\xd3\x12\x6c\x91\xda\xf2\x8d\x8b\xa6\x25\xe8\x22\xd5\xe5\x63\xe3\x4d\x4b\xf0\x45\xfe\xea\x54\xe2\xe1\x8b\xd4\x57\x5d\x05\x89\x87\x2f\x52\x5f\x75\x53\x49\x3c\x7c\x91\xfa\xaa\x63\x94\x78\xf8\x22\xf5\xd5\x90\x97\x78\xf8\x22\xf5\xd5\x78\x27\xf1\xf0\x45\xea\xab\x69\xa4\x58\x82\x2f\x52\x5f\x4d\x92\x66\x09\xbe\x48\x7d\x05\x92\x6a\x09\xbe\x48\x7d\x05\x2f\xd5\x12\x7c\x51\xb9\xf6\x2f\xf1\xf0\x45\xea\x2b\x24\xa9\x96\xaf\xcf\xa2\xfa\x8a\x24\xd5\x32\x7c\xb1\xfa\x8a\x5e\xaa\x65\xf8\x62\xf5\x15\x83\x54\xcb\xf0\xc5\xea\x2b\x26\xa9\x96\xe1\x8b\xd5\x57\x62\xa9\x96\xe1\x8b\xd5\x57\xf2\x52\x2d\xc3\x17\xab\xaf\x14\xa4\x5a\x86\x2f\x56\x5f\x29\x49\xb5\x0c\x5f\x1c\x6f\xcf\xaa\xe4\x43\x18\x27\x30\x2f\xe5\x32\x8c\x71\x07\x16\xa4\x5d\x86\x32\x56\x65\xd2\xbe\xfc\x05\x9c\x71\x0f\xc6\xd2\x2f\x43\x1a\x67\xb0\x5a\x0a\x66\x58\xe3\x02\x16\xa4\x61\x86\x36\x1e\xfa\x4e\x5e\x12\x57\xb1\xbe\xb5\xb7\xb7\x53\xbe\xcb\xfc\xfa\x9c\x29\xfd\x65\x5d\xcb\xb4\xe9\xf4\xd2\xc1\x21\xf3\x60\x9c\xca\xe7\x24\x5c\xe6\x45\x76\xe9\xe7\x4f\x00\x00\x00\xff\xff\xc3\x2d\x7b\xce\x35\x05\x00\x00"); +func _bcb ()([]byte ,error ){return _gb (_ega ,"Adobe-Japan1-UCS2")};var _caf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\xcd\xce\x35\x3b\x72\xa6\x07\xcf\xeb\x28\xde\x61\x7f\x83\xfe\x94\x24\x23\xf8\x03\x08\x2f\xe0\xee\xb6\xda\x1a\xb4\x6d\x58\x96\x6d\xc0\xf0\x20\x33\x57\x2e\xa1\x00\x6b\x57\xa1\x54\x1a\xe8\xec\x0d\x5e\x57\xee\xb6\x61\x18\xd8\x7b\x74\xe3\x89\x87\x2b\x93\x0c\xfe\xc5\x1d\x11\x64\xfe\xcd\x7f\xfc\xfb\xff\xf4\xf7\xbf\xfc\xf1\xaf\x3f\xfe\xe6\x7f\xfc\xcb\x9f\xee\x7f\x78\xfe\xfa\xe3\xfb\xc7\x5f\x3e\x7f\x79\xfe\xe5\x4f\xff\xfa\x97\xfb\xf9\x71\x3d\xff\xf4\xc7\x5f\xfe\xf0\x87\x52\x7f\x7c\xfe\x78\xff\xf5\xd7\x3f\x81\xfb\x9f\xcf\x3f\xff\xe1\x0f\xfb\xf7\xff\xf0\x6f\xff\xf2\xd7\xe7\x9f\xff\xfe\x97\xef\x9f\x7e\x34\xcb\x7d\xfe\xf5\xcf\x6f\xd9\x1f\x3f\xfe\xe6\x7f\x7a\xfe\xe9\x8f\xff\xf2\xd7\xbf\xfc\xdb\x8f\x7f\xf7\xdf\x7c\xfe\x74\x3d\xff\xbf\x1f\x9f\xe7\xbb\xe5\xff\xc3\x5f\x3e\xcf\x5f\xfe\xf8\xcb\x3f\xfd\xf8\x77\xff\xf9\x3f\x94\xff\x2a\xfd\x87\x7f\xfd\xf3\x9f\xff\xcf\xe7\x9f\x9f\x5f\xfe\xfa\x23\x90\x3d\xbf\x7c\xc0\x3f\xfc\xcd\x7f\xfc\x2f\xe7\x9f\xff\xfb\xf3\x9f\x9f\x1f\x7f\xf3\x8f\xbf\xfc\xf1\x3f\xff\x87\x7f\xff\x8f\xff\xf1\x1f\xea\xbf\xff\xef\xf8\x27\xff\xfb\x5f\x9e\xbf\xfc\xcb\x1f\xff\xf4\xcb\x8f\x52\xff\xff\xc7\xd1\xff\x6f\xf9\xff\xfc\x6f\x7f\x7e\x7e\x94\xf7\x21\xff\xdb\x3f\xfe\xfd\x7f\xfa\xf1\xbf\x97\x1f\xe5\xf8\x51\xb3\xf5\xfe\x7f\xbc\xf2\xff\xf5\xbf\xfc\xe9\xf3\xfc\x38\xfc\xab\x5a\xfb\xfb\x4f\x9f\xe7\x5f\xfe\x7c\xde\xcf\x5f\xce\x5f\xfe\xe9\xf9\xc3\x8f\x1f\x7f\x7b\x1c\xc7\xf1\xf3\xc7\xdf\xfe\xa7\xf1\x77\x7f\xf7\x73\xff\xfd\xdf\xfa\xf7\xdf\xfd\xdd\xfe\xfb\xf9\xe5\xf3\xff\xfa\xc5\x1f\x8a\x0f\xfa\xe5\x4f\x7f\xfd\x3c\x5f\x65\xbf\x3e\xe3\x38\xca\xf7\xe7\x8f\xb2\x7f\xf5\xff\xfc\xf7\x1f\xca\x71\xbc\x6f\xff\xe3\xe7\xbf\xfe\xa2\xfa\x8b\xf1\xec\x5f\xfc\xed\x71\x9c\xc1\xdf\x1b\x4a\x1f\x48\x52\x49\xfe\xfc\x51\x6b\xcb\x40\x36\x94\x8d\x9f\x3f\xca\xf0\x77\x53\xc9\xfc\xf9\xa3\x1c\x75\x4b\x2e\x9f\xbc\xa1\x74\x25\x45\x49\xf9\xf9\xa3\x54\x9e\xfd\xf1\x39\x1b\x4a\x9d\x5b\xf2\xf8\xab\x0d\xdd\x27\x3f\xfe\x6a\x43\xef\x0b\x89\xef\xda\xd0\x47\x22\x59\x4a\xd6\x96\x34\x24\xa7\x92\xf3\xe7\x8f\xbe\x94\xdc\x4a\xee\x5d\xc6\xe7\x7c\x94\x7c\xb6\x84\xfa\x7c\x2b\x92\x0d\x7d\xf2\xab\x6f\x53\xd2\xb6\x84\xfa\x7c\xad\xf3\x97\x3a\xf3\x9c\xaf\x6f\xdf\xd0\xa7\xcf\xf1\xed\x1b\xfa\xa4\x86\x5f\xdf\xbe\xa1\xaf\xad\x8d\x72\xd0\x2e\xa0\xf7\xdd\xf6\x52\x78\x17\xd0\x07\x65\xca\xa5\xe4\xda\x92\xad\xf9\x52\x95\x54\x24\x7d\x4b\x82\x56\x00\x7d\x1e\x5b\xd2\x2d\xb3\xa1\x4f\x7e\x75\x3f\x48\x36\xf4\x41\x99\x0f\x7a\x06\xfa\xe0\xed\x9f\xaa\x84\xb6\xf3\xf6\x4f\x28\x89\x2d\xe1\x5d\x9f\xae\xa4\x6f\x89\xbf\x9a\x4a\x76\x5f\xcc\x85\xe4\x54\x82\xe6\x7d\xd7\xad\x84\xb6\x6f\x1d\x16\x35\x06\xf4\xb5\x9f\x53\x6f\xb4\x0a\x94\xa3\x20\x59\x4a\xd6\x96\x1c\x48\x4e\x25\xd7\xcf\x1f\x6b\x1d\x5b\xd1\xf5\x63\xa1\x0d\x6b\x1d\xfb\xfd\x6d\xa1\xd7\x76\x96\x9f\x3f\xb2\x6e\xdd\xb7\xb3\x29\x59\x3f\x7f\x64\xec\x96\x35\x47\x62\xbb\x77\x99\xe0\x57\xb7\x65\xf6\xdb\xb2\xef\xb6\x86\xfd\x03\xf4\x63\xd7\x31\x0a\x3a\x8b\x92\x5b\x52\x91\xa0\x8f\x68\x48\xf6\x73\xa2\x29\x89\xef\xcf\x1f\x9d\x77\x45\xfa\x9c\x0d\x3d\xca\x1f\xfe\xb6\x3c\xed\xfb\xf3\xc7\x0b\x7d\xe5\x1f\xfe\xb6\x1e\x3c\x59\x28\xc7\x51\x26\xb2\xa6\xac\xed\xa6\x95\x03\x51\x28\xda\x93\xf3\xf0\x87\xa9\x24\x29\x54\x10\x75\x45\x7d\x17\x1a\x48\xa6\x12\x34\xb9\x90\xdc\x4a\x3e\x3f\x7f\x14\x7f\x55\x7d\x50\xf5\x41\x15\x91\x0f\xaa\x3c\x88\x2a\x35\xab\xb9\xa1\x0c\x6a\xd4\xaa\x92\xb6\x27\x79\x43\xe2\x83\x9a\x0f\x52\x74\x29\xba\x7e\xfe\x28\x7b\x3c\xd6\xe3\xf4\xfd\x1b\xf6\x9a\xb2\x4b\x95\x83\xf6\x02\xa5\x27\x92\x54\xe2\xa3\x02\xd1\x52\x44\x7f\x17\x4a\xd9\x5e\xa0\xec\x59\x53\x4b\x2d\x48\x36\x6c\x6d\xf6\x2d\xeb\x54\x9d\x39\x51\x73\x57\xbd\x0c\x25\x63\x3f\x6a\xae\xad\xa8\xb2\x14\xed\x11\x54\x26\x3f\x5b\x55\x49\xdd\x12\x5e\xb7\xac\xe6\x86\xb2\xa7\x40\x2d\xcb\x0a\x2c\xeb\xb4\x7f\x56\x0f\x34\x0e\x94\x36\x90\x7c\x95\xec\x95\xb9\xed\xa6\xd4\x42\x2d\x81\xd2\x1a\x92\x54\x42\x7b\xeb\x81\xe8\x54\x74\xee\x42\x0b\xc9\x47\xc9\xee\xba\x2c\x48\x1e\x25\x7b\x09\x4f\x5e\x56\x7c\xd9\x86\xb5\x2a\x85\x58\xe7\x85\xb2\xc7\x65\xad\xb5\x29\x61\x7c\x55\x45\x56\x60\x43\x09\x7f\x36\x94\xd0\x10\x25\x4b\xc9\x1e\x4c\x8d\xc6\x56\xeb\x58\xa9\x63\x22\xb9\x94\xec\x0e\x0f\x25\xd6\x71\x43\x09\x7e\xd5\x18\xcb\x40\x49\x5a\xe6\xc8\x01\x4a\x4e\x24\x5d\xc9\xee\xda\x86\x3e\x9a\xf5\xd9\x50\x9a\x65\xd4\x47\x43\x1f\x94\x09\x95\xbf\xa1\x04\x4f\x8e\x5b\xc9\xbd\x25\xfc\x2a\xe9\x57\x60\xad\x8a\xf6\x1d\x21\x40\xc9\xca\x9e\xfb\xeb\x3e\xf9\xff\xb5\x75\xd6\xda\xed\xc0\x0d\x25\xd0\x7b\xb7\x4d\x9d\x16\xd0\xee\x6e\x0b\xfa\xe0\x3d\xf4\x7b\x57\x15\x7d\x8f\x04\x46\x7e\x5d\x36\x7c\xd1\xef\x8c\xa9\xba\xd4\xf2\x86\x12\xfc\xec\xb4\xd0\x49\xdf\xd0\xce\xcb\x5e\xbe\xec\x65\x94\xfa\x28\xda\xe0\x94\x6d\x85\x86\x02\x25\xf6\xdb\xc2\x76\x46\x5f\x3f\x7f\x54\x94\x1a\x83\x6a\xc7\x1c\x3f\x7f\x54\x16\x9a\x98\xa8\x30\xd6\xee\xc0\xbd\x86\xd7\xc4\xb2\xa8\x19\xd7\xcf\x1f\x03\xc5\x67\x2a\x19\x8e\x9f\xdd\xfe\x9c\x68\x24\x27\x35\x62\x39\x48\xa7\x4b\xda\xb6\xc1\x0f\x4f\x7f\xb8\xa1\xec\x2d\xb5\xe6\xe9\xef\x4e\xe6\x1d\xaf\xbb\xa8\x36\x50\x26\x0f\xba\x7c\xd0\xc5\xbc\xab\x48\x6e\x25\x1f\xd4\xc6\x83\x6e\xd4\x0d\x94\xbd\xc7\xd7\x64\x5f\x11\x8a\xaf\xbf\x2f\x25\xbb\x6d\xdb\x7a\xa8\xc9\xee\x28\x94\x41\x43\xee\xaf\x92\xad\xc7\xbd\xcb\xd6\x7c\xac\xd0\x63\x1f\xed\x1a\x75\x97\x27\xa0\xec\xcd\xb9\xf6\xa3\x2b\xe1\xf5\x96\x59\x4a\x58\x1b\xb6\x6d\x50\x7b\xd0\x7c\xa0\xf4\x82\xa4\x2a\xd9\x8d\xed\xbb\xf9\xcf\xa4\x0c\x50\x6b\x6c\xcb\xa8\x3e\x2a\x17\xa8\xf5\x60\xc0\x3d\xb3\x2a\x6b\x96\x5b\xc8\x42\x59\x50\x8e\x25\xe2\x99\xa9\x6c\x50\xae\x29\x9b\xca\xa6\xe5\x02\xd9\x52\x76\x5a\x4e\xd9\xa5\xec\xb2\x5c\x22\xbb\x95\xb1\x7e\x1f\x6f\x9d\x99\x88\xcf\x5e\x0d\xf7\x6f\xb7\xd6\x9e\x35\x94\x0d\xcb\xf1\xde\xe5\x7b\xf7\xd0\xae\x35\xc2\x72\xbe\xe3\xf4\xb7\x4c\xd1\xe7\xf4\xb7\xa7\xbf\x45\xc1\xcf\xe9\x6f\x4f\x7f\xeb\x7b\xcf\x53\xd9\x69\x39\xf4\x72\xbe\xcf\xfb\x58\xae\x22\x7b\x94\x3d\x94\x9b\xfe\x96\x7e\x7e\xf6\x30\xdb\xe5\x68\x9b\x03\x0d\xd8\xe5\xf8\xed\xa5\x4e\xaf\xb4\x1c\x7a\xbe\xba\x32\xeb\xc7\x90\x78\x2e\xeb\x77\xa9\xbf\x41\x7b\x2f\xeb\x72\xa9\x3f\xa6\xf7\xe3\xd0\x7d\x6e\xdb\x61\xdb\x6e\xdb\x71\xdb\x8e\x45\x39\xc7\xea\xf3\xb5\x7f\xf9\xed\xd7\x99\x08\x04\x86\x75\xfd\x62\xaa\x08\x31\xd8\xf3\xbf\x47\x55\x54\xb7\xa8\x5a\xaa\x29\x6a\x94\x5a\x88\x42\x51\xec\x67\xb1\xbf\x7d\x1d\xd5\x40\x39\x5c\xf3\xbf\x8e\x6b\xa0\xe4\xf2\xf9\x43\xd1\xf8\xf9\x23\x66\x57\x34\x15\xcd\x9f\x3f\x5a\x6d\xd6\x75\x29\x5a\xfc\xd0\x5a\x9c\x8a\xce\x5d\x0a\x23\xe2\x7b\x5c\x8a\xb6\x5d\x37\x2d\x74\x2b\xb9\x77\x55\xbb\xf5\xfa\x28\xfa\xec\x17\x62\x45\x7c\x8f\x47\xd1\xb3\x45\xc3\x06\x7d\x15\x7d\x7f\xfe\xa8\xc7\xa2\xf2\xda\x56\x40\x1e\x85\x9a\xba\xf5\x02\xc5\xd9\xf0\x75\x9d\x04\x6a\xb2\x50\x7e\x35\xc0\x80\x98\x8c\xb5\xaf\x06\x18\x10\xa3\x28\x52\x5f\x1b\x62\x84\x22\xd5\xf5\x5a\x60\xac\x3a\xdf\xa2\xbe\x36\xb4\xa6\x0a\x35\xcb\x80\xe2\xd6\xf5\x2d\xea\x6b\x43\x2c\xa6\xc6\x57\x0b\x00\x28\xb5\xfa\x2c\xf5\xb5\x21\x8f\xea\x0f\x55\xd8\x86\xa8\xd3\xea\xab\xb0\x0d\x35\x1c\x14\x5a\x0a\x40\x66\xb5\x94\x0a\xdb\xd0\x30\xc5\xeb\x57\x53\x01\x68\x81\xd9\xf5\xd5\xa2\x02\xb2\xab\x8a\xaa\xc2\x36\x94\x92\xf6\x91\x26\x05\xd0\x26\x9b\xfa\xb7\xaa\xb1\x0d\xa5\xbd\xcf\x57\x63\x1b\xaa\x1b\xc7\x57\x53\x13\x88\x9e\xb4\x5b\xcb\x03\xc8\xd5\xe2\xb7\xf7\xe3\x6f\x55\x9f\xda\x2a\xd3\x87\xa8\xcf\x0d\x6d\x85\x6f\x57\x9f\x1b\xb2\x1d\x8c\x36\xcd\x15\xa0\xb5\x65\x4b\xd4\xe7\x86\x7e\x1c\xea\x40\x7d\x6e\x68\xad\xf8\x2c\xf5\xb9\xa1\x97\x57\x05\xea\xb3\xb2\x73\x4c\x54\xa0\xd5\x0c\xd4\x63\xa1\xf5\xa6\x3e\x1b\x6b\xb9\x53\x45\x4b\x1a\x28\xa3\x51\xaf\xa6\x3a\x37\x74\xad\xeb\xaf\x56\x13\x50\x66\x5a\x4a\x75\x6e\x48\x8d\xdd\xaf\x76\x13\x90\xf5\x7d\xa3\xea\xdc\x90\xad\x5b\x4a\x7d\x6d\x28\xc3\xae\x69\xea\x6b\x43\x2e\x55\xd8\xd4\xd7\x86\xec\x8e\x06\xed\x79\x20\xfb\xc1\x68\x68\xea\x6b\x43\x73\x7b\xfc\x6a\x98\x01\xe5\x9d\xc3\x4d\x7d\x6d\x28\xf5\x1d\xdf\x4d\x85\x6d\x68\x81\xad\xfc\x75\x87\x04\x22\xd5\x74\xa8\xb0\x80\x44\xb9\x76\xb9\x6b\x02\x6d\xd8\x6b\xa1\xc2\x36\x94\xc4\x22\xfa\x86\x0a\x0b\x76\x43\xa7\x67\xa8\xb0\x0d\xa5\xbf\xa5\x54\xd8\x86\x36\x31\x98\xbf\xa1\xc2\x36\xb4\xea\xd0\xd1\xb0\x04\xa2\x39\x61\x43\x85\x6d\x88\x96\xd6\x5e\x85\x6d\xa8\x33\xac\xaa\x0a\xdb\xd0\x0a\x56\xe0\x57\x93\x14\x88\x6c\x56\x42\x85\x6d\x28\xa1\x5a\x43\x85\x6d\xe8\xe9\x68\x0a\xf5\xb5\xa1\x4d\x6b\xaf\x25\x06\x94\x03\xbb\xe3\x9b\xea\x6b\x43\x1d\x3e\x5e\x93\x17\x68\x81\xe1\xf7\x4d\xf5\xb5\xa1\x1d\xaa\x30\xd5\xd7\x86\x16\x2e\xa0\xa9\xbe\x36\xd4\x23\x7d\xbc\xfa\x4a\xe6\x6b\xb1\x94\xfa\x4a\x5d\x42\x3e\x4b\x7d\x6d\x88\x51\xfc\xa1\xfa\xda\x90\xef\xf4\x48\xf5\xb5\xa1\x1d\x45\x91\xfa\xda\x10\xbf\x36\x48\x7d\x6d\xa8\x92\xac\x6f\xaa\xaf\x0d\xad\x3a\x26\x52\x7d\x6d\x88\x23\xac\x97\xfa\xda\x10\xcd\x25\x5b\x0b\x18\x28\xd3\xa9\xa6\x2d\x0f\xb4\xe1\x2a\xdb\xd5\x57\x77\x42\x52\x89\xae\xbe\x36\xb4\xe6\x86\xa3\xc9\x0f\x44\xed\x74\x6d\x57\x5f\x1b\x5a\x77\x98\x48\x03\x80\x51\xde\x4a\xa8\xaf\x0d\xe3\x38\x7c\xa3\xfa\xda\x50\xfa\xe1\x84\xef\x2a\xac\x63\x40\xfa\x78\xf5\xd5\xd5\x17\x6d\xec\xea\x0b\x72\x3b\xdf\x67\xa9\xaf\x0d\x75\xbe\x95\x50\x5f\x1b\xea\x70\xa6\xc9\x45\x80\xf6\xee\x11\x5d\x7d\x6d\x68\xef\x82\x2d\x53\x06\x5a\xd8\x8f\x43\x7d\x6d\x28\x3d\x31\x6c\xbf\x43\x85\x6d\x28\x72\xaa\xef\x50\x61\x1b\xe2\x70\x2e\x48\x36\x80\x9a\x4d\x91\x0a\xdb\x10\xaf\x95\x30\x54\xd8\x86\x3a\xb0\xd5\xbe\x43\x85\x6d\x18\x6d\xf9\x43\x15\xb6\x61\x54\x4d\xa1\xa1\xbe\x36\xb4\xe1\x60\x1d\x2a\x6c\x43\x94\xb7\x5e\x2a\x6c\x43\x34\x87\xce\x50\x61\x1b\x6a\x2c\xdf\xa8\xc2\x06\xd4\xd2\xb9\x30\x54\xd8\x86\x51\x1c\xe5\x43\x85\x0d\xf8\x9c\x8b\xad\xe6\x3b\xd0\xbb\xcb\xa8\xd6\x3b\xd0\x2a\x86\xf0\x57\xe3\x1d\x28\x55\xe5\x4c\xf5\xb5\x21\xba\xcb\x89\xe6\x3c\x10\x09\x15\xfc\x6a\xcd\x03\xb5\x6a\x4b\x4c\xf5\xb5\xa1\xe9\x4f\xf9\x4e\xf5\xb5\x21\xdf\x3d\x55\x93\x1f\x88\xd4\xf6\xd2\xe2\x07\x46\xd3\xc0\x9c\xea\x6b\x43\x6b\xae\x43\x72\x00\xa0\x8c\xbd\xea\xfc\xf6\x6e\x2c\x45\x00\x46\x71\xa7\x92\x21\x00\xa5\xaa\xcf\xa9\x3e\x27\x13\x36\x15\xa9\xcf\x0d\x6d\xb9\x28\xe9\x97\x01\xa2\x60\x7d\x7f\x97\xfa\xd4\x55\xb3\x1c\xf3\x3a\x6b\x80\x79\xa8\x76\xe9\x27\x50\xab\x6d\x59\x2a\x74\x43\xbc\xdb\xb1\x04\x1c\x28\xb3\xfa\x4a\x15\xba\x30\x79\x5d\x10\x24\x33\xc0\x88\xb0\x94\x0a\xdd\x30\x52\x33\x41\xe6\x0e\x8c\xe1\xf8\x5e\x2a\x74\x61\xc2\x69\x65\x4b\x78\x80\xc0\xfb\x5b\xbf\x4b\x85\x6d\x08\xdc\xbf\xf5\xbb\x54\xd8\xc2\xe4\x70\xd3\x5e\x2a\x6c\xc3\x98\x87\xb5\x57\x61\x0b\x85\x39\x57\xa4\xd8\x40\xd1\xdd\xf5\x95\x63\x03\x65\x0d\x8d\xde\x53\x85\x6d\x88\x62\x87\x9c\x2a\x6c\x43\x54\xa8\xef\xf7\x54\x61\x84\x04\xd6\x72\x7e\xea\x8d\x00\x6a\x4a\x2f\x4e\x35\xf6\x72\x38\x1f\xa6\xc6\x36\x8c\xe1\x40\x95\xc1\x01\xb3\x69\x8d\x9f\x6a\x6c\x43\x19\x5a\x18\x72\x3a\xa0\xe2\xb2\xad\x5f\x29\x1d\x30\x52\xed\xeb\x45\x04\xa2\xa9\x8b\x53\x8d\x41\xfc\x8e\x5f\x1f\xa6\xca\x36\x94\xee\x5e\x28\xef\x03\xea\x6b\x3b\x5c\xaa\x8c\x70\xc5\x70\x6e\x5c\xaa\x6c\xc3\x7c\x77\x5f\xfd\x12\x5f\x09\xe3\x2b\x52\x63\x17\x1a\x73\xff\x92\x2e\x02\xf3\xdd\xf8\x2e\x15\xb6\x61\x2c\x2b\x21\x81\x04\x86\xbe\xa1\xef\xa5\xc2\x36\xb4\xd0\x38\x95\x52\x02\x2d\x34\x15\x2f\x15\x76\x61\xd5\x6a\xff\x5f\x2a\x6c\xc3\x6c\x07\xca\x97\x77\x02\x65\xbe\x8f\x57\x61\x1b\xca\x48\x45\x2a\x6c\xc3\x78\x2d\xfb\x4b\x7d\x5d\x0c\x31\x97\x04\x5d\x4d\x40\xbe\x7b\xf4\xad\xbe\x36\xc4\x70\xe8\xdf\xea\xeb\xd6\x7d\x4a\xed\x6f\xf5\xb5\x61\x0e\x97\xbd\x5b\x7d\x6d\x98\x4d\xc3\xea\x56\x5f\x1b\xd6\x74\x13\xbd\xd5\xd7\x86\xfa\xae\x5e\x3a\x77\x80\xd9\x70\x7f\x7f\xf5\xee\x00\xf5\xd7\x4a\xa8\xaf\x0d\xb5\x4c\xb7\xcc\x5b\x85\x6d\x68\xb2\xfc\xaf\x6c\x1b\x28\xcb\xcd\x50\xb2\x0d\xf4\xe1\x00\xbe\x55\xd8\x86\x35\x5c\xc4\x6e\x15\x76\xeb\x6f\x54\x15\x2a\x0c\xff\xd1\x6b\x3d\xea\x40\x02\x5a\x38\x73\x3f\x2a\xec\xa3\x95\xc6\xb3\x3e\x2a\x6c\xc3\x6c\xee\x39\x1f\x15\xb6\x61\x4c\xc7\xef\x47\x85\x6d\x98\x15\xbf\xcf\xf7\xa3\xc2\x36\x0c\x3d\x86\xdf\x8f\x0a\xdb\x10\xd3\x95\xf4\xeb\x1b\xbf\x17\x7e\xf0\xdd\xb9\xcd\x08\x61\x3b\x8e\xfa\xf3\xc7\xea\x08\x9a\x82\x6d\x33\xef\x39\xd4\x0e\x3c\x00\x42\xd9\x3a\x6d\x07\xfc\x5f\x28\xc7\x51\x95\x0d\x65\xcc\xed\xf7\x87\x53\xd1\x17\x4a\xb8\x25\xc5\xb7\x41\xb4\xab\x92\xaa\x04\xc7\xeb\x9e\x40\xcd\x40\x87\x50\x5e\x49\x28\xd9\x35\x28\x3c\xba\x58\x83\x42\xd0\x4d\xc9\x47\xc9\xb3\x1f\xb4\x68\x1b\x2c\xb5\x1d\x15\x5b\x69\xaf\x53\x8d\xc0\xc4\x06\x83\x97\x8b\x2a\x34\xab\xd9\x4e\x65\x13\xd9\xa3\xec\xa1\x85\x49\x2d\x60\x26\x42\xad\x18\xf7\xed\x08\x5f\xb1\xf7\x93\x96\xe8\x6f\x59\xd7\x05\xc1\x68\x83\x37\xb0\xba\xb7\x63\x2f\xe5\x5b\x5f\x54\x6e\x59\xdf\xe5\x1b\x54\xc6\xe9\xd3\xbe\xdb\x8c\x6e\xbc\xf3\xab\x56\xbf\x6f\xdd\xf8\xe5\xd7\xa7\x7d\x09\x7b\x21\xb8\x15\xf8\xf8\xb2\x7e\x73\x37\x6e\xc7\xd7\xb7\x7f\xdf\xb7\x6f\xdd\x18\x5e\x69\x65\xab\x6b\xec\xad\xb1\x15\xb8\x71\x2b\xf5\x96\x2c\x95\x2d\x63\x2b\x69\x45\x37\x57\x30\x1e\x0c\x26\x34\x62\x00\x70\xaa\x56\x21\xb4\xc2\xae\xd2\xd6\x55\x65\x2b\x11\xca\x71\xf0\xb4\xc6\x7e\xdf\xda\xfc\x2a\xdb\xf5\x68\x6c\x7c\xad\xbd\x9a\xe1\x0d\x4d\xcd\x00\x5b\xb6\x9f\xd7\x58\x25\x84\x2d\x9b\xc8\x7c\xde\xfd\xfe\x76\xab\xa7\x7d\xfc\xed\x9e\x42\xbb\x2e\x07\xb2\x54\x96\xca\xf6\x7b\xc3\xa9\x10\xc1\x86\x95\x75\xff\x36\x60\x7d\x42\x95\xec\xb4\x80\xf6\xb5\x18\xac\xf9\xf0\xdd\x16\x18\xb6\xc2\x2e\xc7\xf3\xb0\x6c\x5b\x7c\x19\x2f\x3d\xf6\x6f\x75\x9b\xb7\x5c\x38\x22\xc7\x44\xc6\x16\x2e\xec\xdf\x0e\x64\x8c\xb5\xf4\xb7\x6b\x2f\x3e\xad\xfb\xdb\x7e\x7c\x70\xd4\xef\xa5\xbf\x75\x5c\x5e\xc2\xfe\xed\x42\xc6\x6f\x7b\xd1\xa1\x4f\x5d\x3a\x5e\x23\x61\x97\xe3\xb7\xb8\x8d\x5a\xe7\x1d\x0d\x7a\xd1\x86\xef\x18\xca\x2a\x73\x66\x2a\x9b\xca\x72\xaf\xd0\x6d\x29\x5b\x7b\xfe\xd5\x36\xe9\xa3\x85\xff\x4a\xa8\xd5\xe7\x2d\x1c\x58\x6d\xc1\x31\xda\xac\xfc\x16\x92\x21\xec\x72\x15\x19\x75\x5e\xbb\xdf\x6a\x23\x4c\xd8\xd6\xfd\xca\xbe\x96\xdb\x33\x64\x7d\x7c\xef\xe7\x50\xc6\xf3\xec\xdf\xf5\x79\x18\x7d\xf4\xf9\xfa\xf8\xdb\xcf\xfb\xdb\x3d\x33\xd7\xe3\x6f\x69\x47\x1c\xac\x1a\xa7\xed\x38\xe9\xcb\xc0\x99\xdd\x4e\xfb\xf2\x7c\xfb\xb2\x0f\x64\xf4\xe5\xe9\x6f\x89\x75\xb6\xcb\xdf\x5e\x81\x43\x0d\x2a\xd9\x2e\x08\xba\x50\xb7\xc1\x81\x8c\xba\x5c\xfe\x16\x9b\xba\xdd\xfe\xf6\x46\x2f\x81\xb7\xac\xdd\xea\xe5\x7e\xf5\xb2\x77\x84\x76\xab\x97\x9b\x76\x04\xc9\x0d\xed\xb6\x1d\xc0\x2e\xd7\x90\xa1\x83\xdb\x77\x0c\xde\xf1\xf1\x1d\x1f\x65\x73\xef\xd2\xed\x51\xf6\x20\xcb\x83\xe7\xe9\x40\x6e\x5f\x65\x6d\x5b\x82\xe1\xb6\xb0\x15\xb2\x65\xf0\xb9\x38\x20\xf9\xc2\x7e\xef\x44\x36\x90\xf9\x5b\x52\x2d\xa2\xf8\xdb\xb2\x49\x77\xcd\xb9\xad\xb5\x28\xb0\x6e\x61\xff\x76\x6d\x59\xb7\x9c\xbf\x65\xcf\x8d\xea\x6f\x2b\xb2\x7e\x6c\x13\x31\x9a\xb2\xd6\xf6\x7b\x3b\x64\x26\x1a\xee\x2b\xa1\xd6\x63\x16\x64\x13\xd9\xb6\x08\x6b\x8f\xbd\x1e\x44\xc3\x24\x14\x76\x39\x9e\x87\x4d\x18\x6d\x5b\x76\xb5\xe7\xde\xbd\xc2\x04\x00\x61\x97\xeb\xc8\x2a\xb2\xcf\x6d\x39\x9e\xf7\xf1\xb7\x9f\x8f\xe5\x16\xb2\x07\x99\x75\xce\xdd\xe7\xe1\x5a\x12\xf1\xc1\x5c\xe9\xdb\x38\x89\x20\x59\x42\xa8\xf5\xd8\x6b\x79\x04\x09\x2f\xe1\x1a\xd1\xe9\xa3\x70\x8d\x88\x7c\x65\x7b\x9b\x0e\xe7\x7e\xf4\xd8\x6d\x1b\xa5\xec\xfa\x75\x5c\x46\xc2\x7e\x5e\x45\x46\xfd\xfa\x56\x6d\x1d\x45\x19\xbe\x0c\xa1\xea\x04\x8f\x8e\x33\x23\x9c\xfb\xa3\xee\xf5\x2f\x9c\xfb\x31\x6a\xd5\x1f\xb0\xdf\x3b\xf0\xe0\x0a\xfb\xb7\x81\x2c\x94\xed\x79\x3e\x82\xb6\x0d\x1c\xab\xc2\x2e\xa7\xec\x44\x36\xa8\x73\x14\x9e\x07\xab\x16\x76\xb9\x8e\x8c\x3a\x0f\x82\x47\x23\xa8\xf3\x98\xaf\x4c\x3d\x33\x0e\x06\x7b\x45\xb8\x36\x8d\xa4\x7f\x5d\x9b\xc2\xb5\x69\xf4\xbd\x8f\x85\x6b\x53\xac\xd0\x57\xc0\x38\x5d\xac\xe3\xc2\x7e\xde\x42\xc6\x78\x59\x63\x61\xf4\x07\x32\x7c\x03\x42\xad\xa4\x99\xc4\xc2\x39\x10\x8b\x3a\x8f\xe5\x6f\xad\x33\xb0\xcb\x15\x64\xd4\x6f\x11\x90\x9b\x87\x32\x38\x7d\x2c\x03\x72\x24\x42\xc5\x82\xc1\x0b\xbb\x5c\x22\x4b\x65\xdd\x72\x81\xcc\x3a\xaf\xd3\x72\x5b\x57\x6b\x59\x97\x75\x59\x6e\xfc\xe6\x56\x1f\x8b\xed\x34\x16\xdb\xcb\x3c\xaa\x8f\xf9\x2a\xfb\xfa\x18\x64\xa7\x6a\x23\xa6\x35\x8f\x4a\x33\xa1\x24\xc2\x2e\xa7\xcc\x6a\x69\x00\x10\x55\x8e\x75\xa9\x4a\xba\x61\xc2\xdb\xc3\xa5\x35\x5c\x32\x27\x46\x5a\xb8\x64\x86\x4b\xe1\xc4\x63\x16\x2e\x85\x71\xe3\xda\x99\xbd\x6d\x75\xdc\xf8\x76\x84\x5a\x1d\xee\x37\xce\x9d\xb8\x6d\x07\x6c\x25\x6e\xdb\x71\x9f\xc5\x72\xfb\x1d\x37\x24\x56\xd8\xb2\x81\xac\x29\xb3\x1b\x18\xee\x37\x34\x36\x5c\x32\xe7\xd8\xc4\x3f\x5c\x32\xe3\x43\xd4\x67\xce\x4d\xcd\xe3\x83\x39\x1a\x1f\xb6\xd3\x5a\xca\x44\xc6\x30\xf9\x40\x2b\xe7\xa2\xbb\x3e\xd0\x4a\xa1\x56\xac\xdb\xf8\xc0\x2b\xe3\x83\x4e\x17\x5b\x71\xb8\x04\x0b\xc6\xeb\xe2\x21\x5e\x27\x14\xdc\x06\xf1\x10\xaf\x13\xca\xc1\x66\x10\x0f\xa6\xb9\xd0\x0e\xe6\xe7\x43\xc0\x2e\x9e\xd7\x12\x67\xfd\x7d\xb0\xc4\x85\x36\x36\x3f\x88\x07\x4b\x5c\x88\xd8\xbb\x7f\x3c\x84\xe2\x84\x56\xa7\xa2\x53\x11\x8e\x9e\xcd\x49\xe3\x21\x14\x27\xb4\x39\x7d\xd6\xad\x08\xbf\xc4\xb2\xd4\x47\x11\xe9\x43\x69\xfd\x1f\x45\x0f\x5c\x5c\xd1\x57\x91\xb6\xde\xe0\x97\x45\x65\x6c\x08\xc2\x4d\xf1\x14\x95\x61\x1e\x8c\xbf\x2c\x2a\xa3\xbc\xca\xa0\x1a\x76\x0b\x10\x9d\x9e\x7f\x8a\xca\xd8\xd0\xc8\x85\x89\x87\x68\x9c\x10\xe3\x50\xd4\x15\x75\xbc\x97\x89\x48\x8d\xc1\x26\x0e\x77\xb6\xa7\xa8\xb2\x0d\x8d\xb4\x84\x78\x8a\x2a\x23\x6f\x0a\xb7\x7d\x3c\x0e\x04\x20\x4a\xda\x24\x55\xb6\xa1\xb4\x6e\x5d\x55\xd9\x86\x92\xc5\x1f\xaa\xb2\x0d\xcd\xb5\xec\x29\xaa\x6c\x43\xc0\xa0\xe2\x29\xaa\xec\xcd\x5c\x62\xbe\x3c\x55\x65\x10\x68\x4b\x1b\xee\x2a\x0d\x94\x83\x10\x75\x3c\xae\xd2\x40\x25\x83\x2d\x9e\xaa\x32\x36\xc4\x61\x97\x57\x95\x61\x4e\x17\x41\xeb\x78\xaa\xda\xa8\x44\x3a\x58\xf2\x9f\xaa\x32\xea\xfc\x35\xa0\x1c\x8f\x2b\x3e\xb0\x7f\x69\x31\xb5\x41\xe6\xcf\xb0\x9b\xaa\xda\xa8\xba\xee\x51\x63\x55\x1b\x1b\x72\xbc\xd5\x50\x1b\x1b\x22\xd3\x66\xaa\x8d\xea\x68\x61\x2a\x3e\xcd\xd1\x42\xbe\x59\x77\xea\x34\x47\xcb\x4b\x34\x1c\xa1\x4d\x0d\x11\x3a\x6b\x2c\x64\x4f\x53\x43\xed\xd5\x10\x2f\x6d\x6a\xa8\xa1\x21\xdb\xd9\xd4\x50\x93\x16\x4c\x7f\xaa\x8a\x36\x18\x39\x8f\x47\xeb\x03\x28\x87\x3b\xf9\xa3\xf5\x01\x34\xbc\xe9\xf1\x34\x55\xd4\x48\xda\xb1\xa7\x9a\x1a\xda\xd0\x46\xf7\xf9\x6a\x68\x43\xa4\x53\xa0\xa9\xa1\x26\xa1\x63\xc7\x7e\x9a\x2a\xda\x20\x39\x89\xa7\xa9\xa2\x86\xd1\x5c\xac\x99\x03\x66\x83\x31\xfd\x78\x42\xa5\x85\x93\x87\xed\xf5\x09\xd5\xb1\xa1\x4e\x15\x19\x6a\x23\x64\x53\xec\xe0\x4f\xa8\x8e\xd0\xb1\x4c\x33\x43\x6d\x84\x03\xc6\xe9\xef\xe6\x0a\xc4\x28\xd4\xd6\xbd\x15\xa8\x23\x7c\x98\xda\x20\x34\x56\x9d\xd7\xa1\x36\x36\xec\x87\xa1\xb4\x50\x1d\x81\x3a\xaa\xbf\x54\x1d\x1b\xda\x2c\x96\x52\x1b\x1b\x22\x9c\x8a\xa1\x36\x36\x94\xd5\x15\xa9\x8d\x0d\xa5\x3b\xa3\x52\x6d\x6c\xa8\xe1\x1b\xd3\x21\x94\x0e\x21\x7b\x20\x1d\x42\x04\xc7\x8e\x86\x82\x52\x9d\x6d\xa8\x24\x33\xc5\x93\xea\x8c\xe0\x18\x49\x58\xf1\xa4\x2a\x4b\x47\x10\xc6\xc2\xa3\xe1\x0c\x94\xd9\x7e\xc7\x9e\xfd\x68\x56\x03\xe5\xd0\x0c\x79\x52\x95\x6e\x28\xd5\xf6\xa5\x2a\xdd\x60\xba\x46\x3c\xa9\x4a\xf3\xf2\x97\x74\x46\xaa\xbf\x24\x7b\x42\x95\xa6\xfa\x4b\xec\x17\xc7\x44\xaa\xbf\x0d\xed\x1d\xfa\x5a\xed\x40\x90\x9b\x16\x8f\x46\x3b\xd0\xa6\x03\x58\xfb\x12\x68\xcb\xbe\xd0\xbc\x7c\xba\x49\x23\x6a\xbe\xab\x85\xce\xba\xeb\x52\xd9\x6d\x26\x01\xae\xa3\xb8\xae\x74\xdb\xb4\x21\x46\xb5\x98\x6d\x22\x43\xee\xd0\x0a\x79\x86\xf5\x18\x1a\xba\xbc\x60\x58\x8f\x0d\xb5\xbb\x62\x0f\xeb\x41\x08\xea\x28\x2e\xf6\xc3\x7e\xdc\xd0\x6a\xa7\xb7\x87\xfd\x48\x60\xe7\xd0\xdc\x78\xb4\xe6\x80\x56\xde\x17\xa8\x8e\xc9\x40\x29\xd6\x4d\x03\x0f\x98\xd5\x97\x4e\x5f\x30\x6d\xbc\x53\x75\xda\x78\xec\xbb\x9c\xf4\xa7\xe6\x1d\x50\x8e\xe2\x18\x9b\xf6\x31\x01\x99\x66\xe7\x4d\xf5\xb1\x21\xf2\xf0\x9d\xea\x63\x9e\xfe\x92\xba\x4d\xa7\xcd\x86\x16\xce\x91\x69\xb7\xcf\xfb\xd7\x2c\x9d\x30\x27\x4b\x88\xee\x1c\xd7\xaa\x06\xa2\xba\x7e\xce\xb7\x9d\x12\x56\x5e\xb9\x54\xf7\x3a\x7c\x25\x9d\xbc\xd4\xf7\x86\x68\x9d\xca\x2e\xb5\x41\x7a\xec\x72\x1f\x5d\x6a\x63\x91\x65\x54\x79\xfe\x52\xdd\x1b\xf4\x09\xc4\xb3\x9c\x36\x8b\x95\xc6\x61\xb5\x54\xd9\x7a\xf5\x43\x65\x97\xfa\x59\xee\x43\xa8\x6c\xa9\x1f\x32\x23\x8f\xe2\xc2\xbb\x54\xd0\x86\x38\xd4\xb6\x86\x33\xd0\x96\xa3\x4f\xc3\xf8\x59\xf6\x7a\xb3\x1e\x6a\x63\xc3\xec\x4e\x02\x6d\x4c\x60\x13\xa1\x2d\xd2\x54\x06\x4c\x76\x8a\xe7\x54\x19\x27\x01\x63\x6d\x0f\x0d\x51\x40\x47\x60\x3c\xda\xa1\x8f\x2e\xb0\x77\xc5\xd0\x0e\x05\x6a\x71\x67\x3a\xd5\x06\xb9\x9d\xd3\xad\xf5\x54\x1b\x1b\xa2\xb8\xac\x9c\x0e\x20\x0e\x5d\x54\xbb\xfc\x54\x3f\x9c\xba\x58\x61\x5d\xd5\x0f\x29\x72\x33\xac\x98\xea\x39\x1d\x3f\xaf\x4c\xfd\x9c\xe8\xa7\x59\x31\xf5\x23\x77\x76\xc1\x91\x3a\x03\xad\xdb\x4d\x9a\xbd\xa6\xd1\xa5\x46\xa9\x56\xef\x73\x39\x4f\x70\x00\x3c\x92\x69\xa0\xbd\x86\xd2\xa5\x32\x2e\xf3\xa9\x78\xd8\xa5\x2e\xae\xf0\x97\xe8\xec\x52\x19\x17\x8e\x6c\x0d\x61\x69\xc9\x73\xd9\xe7\xe1\xd3\x6c\xd4\x75\xfe\x9a\x6d\x16\x66\xda\x09\x31\xec\xa6\xcb\x36\x5d\xf8\x07\x49\xb2\x8a\xe7\x7a\xab\xcb\x2a\x07\x0f\x78\x6e\x3b\xf8\x26\xc2\xed\x3c\xbc\xed\xe0\x9b\x80\xad\xc3\xec\xb6\x4d\x37\x39\x75\x36\xfd\xb6\x4d\x37\xa3\xdd\xc5\xe5\xb6\x4d\x37\x39\x62\x4e\xf3\xdb\x26\xdd\xa6\x0f\xfa\x2c\x9b\xb4\xa1\xbd\x44\xe1\xb6\x7f\x49\x55\x7d\x17\x83\xdb\xfe\xbd\x5d\x30\x5d\x91\x6f\x3b\xf8\x66\xc1\x54\x8d\xb7\xba\x30\x75\x50\xfd\xdf\xea\xe2\x86\x38\x3a\x7f\x6f\x75\x71\xdf\x3e\x4c\x99\x1d\x7c\x93\x43\xf1\xd6\xcc\x0e\xc6\xa5\xda\x34\x24\x6f\x35\x66\xe8\x82\xcc\xe6\x78\x3e\xea\xe7\xe3\xea\xcb\x2f\x3f\xea\x47\xc7\x2b\xa9\xe8\xf1\x7c\x54\xd0\x86\xf2\x9a\xd5\x1f\x15\xb4\x21\xba\x6d\xfa\xa8\xa0\x0d\x2d\x5c\x68\xf5\x9e\x00\x2d\xd5\xac\xce\x13\x20\xc2\x05\xe8\xa3\x82\x3e\xe4\x30\xb9\x6a\x7f\xd4\xcf\x86\x36\x35\xf3\x3e\xea\xe7\xf3\xb6\xdc\x87\xd9\xf2\x0f\xf9\x84\xf1\xdb\x11\xed\x78\xf4\xfb\x00\x31\x86\x0f\x7e\x15\xf3\x65\xd3\xa0\x46\x8f\x43\xe9\x51\x57\xd6\xf2\x51\x57\x0f\xf9\x99\x0e\xe9\x47\x5d\x3d\xea\x4a\x93\xec\x51\x57\x1b\x8a\x7e\x96\xe7\x51\x57\x1b\x6a\x77\x3f\x7b\xd4\xd5\x86\x28\x2a\xfe\x51\x57\x8f\x4b\xa7\xb6\xca\xa3\x66\x1e\x96\x4e\x0d\xf1\x47\xcd\x3c\x4e\xa3\xee\xd3\x54\xcd\x03\xa1\xb1\x51\x8f\x43\xe7\x61\x1a\x49\x31\x1f\x87\xce\x83\x4b\xc4\xa5\xe1\x51\x7f\xa6\x9a\x17\xc7\xc9\xd7\xb6\x7f\xa1\xba\xae\xfd\x5f\x9b\xfe\x75\x6d\x70\xb8\x7e\x6d\xfb\x86\x78\xbb\xf6\x6b\xd3\xbf\xcc\x23\xa9\xe2\xd7\xa6\x7f\x5d\x1b\x9c\x6e\x5f\xdb\xfe\x85\xde\x49\x8f\xbe\xb6\x7d\x43\x7d\xd5\xfd\x75\x9c\x7c\xc9\x67\x77\x34\x7d\xd5\xc6\xd7\x25\x50\x75\x7c\x6d\xe7\x86\x56\x5d\x15\xbf\xb6\xd3\xc8\xca\xab\x8e\xaf\x0d\xdd\x50\xba\x63\xe7\xeb\x48\x30\x9a\x52\x5c\xea\xbf\x0e\x85\x2f\xb6\x27\x4e\x55\x1d\xad\xc2\x2e\xd6\x91\x15\x65\x85\x94\xab\x03\x51\x55\xe4\x24\x87\x46\x99\x38\x2b\xc4\x80\xe0\x99\x38\x2b\x44\x41\x6b\x26\xce\x06\x69\xb2\xe5\xe0\x68\x4d\x98\x27\x2b\x34\x92\x9b\xc2\x3c\x59\xc1\xc4\xe2\x30\x4f\x56\x28\xee\x7b\xe6\xc9\x0a\x85\xe3\x4d\x61\x9e\xac\x10\x04\x5c\xc2\x3c\xd9\x78\x73\x5b\x39\x24\x13\xe6\xb6\x0a\x91\xdd\x87\x4d\x45\x93\xb4\x28\x4b\xd9\x24\xfc\x2a\xae\x78\xe6\xb6\x0a\x95\x00\x47\x98\xdb\x2a\xc4\x40\xb3\xe6\xb6\x06\x89\xac\xe5\x20\x4d\x21\xcc\x64\x15\x9a\x4c\xc5\x4c\x56\xa1\xbd\xbf\xac\x36\x89\x43\x2f\x8d\x81\x60\x26\xab\xb0\x1f\xd6\x90\xd9\xa6\xea\xba\x8e\xfe\x65\xd8\x5f\x19\x76\x61\x15\x31\x95\x55\x68\x4d\xcd\xca\xb0\x81\x20\x4d\x29\x4c\x65\x15\x6a\x57\x3f\x12\x6c\x20\x06\x6b\xa0\xb9\xaa\xf1\x95\x4d\x97\x65\x6d\xd5\x46\x85\x2b\x3a\x5a\x64\xd3\x40\x10\x3d\x0a\x33\x53\x83\x9c\xd3\xfd\x4b\x6b\x6b\xd3\xe1\xce\xee\xef\x26\x9d\x0a\x45\x0e\x65\xd2\xa9\x50\x0e\x92\x61\xc2\xac\x53\x21\x86\xaa\x95\x3a\x7f\xa5\xce\xf5\x50\x66\xd3\x9b\x73\x91\xa6\x4b\x9d\xbf\x52\xe7\xea\x78\x91\x3a\x7f\xf5\xdc\x1f\xbe\xd4\xb6\x4b\x9d\x2b\xcc\xc0\xc4\x53\xa1\x35\x96\x21\x13\x4f\x85\x5d\x0c\x7d\xcb\x9d\x81\xa6\x17\xc5\xcc\x53\x61\x17\xf3\xa7\x2a\x84\xd4\xd3\x2c\x8a\x9c\x03\x1b\x62\x2c\xab\xe6\x80\x91\x15\x57\xec\x6a\xd3\x45\x85\x12\xf6\x8b\xac\xd8\xdc\xd0\xa3\x16\x65\xb6\x0a\x0a\x1c\x15\xb5\xc9\x80\xc9\xde\xdc\xc5\x68\x95\x14\x15\x68\xc3\x8e\x8f\xf7\xa5\x9c\x7a\x62\xc3\x35\x7d\x53\x88\x6e\x35\xa4\xa8\x40\xbc\x73\x51\x8a\x0a\x44\x75\x5c\xc9\x50\x81\xfd\x4a\x8b\xd9\x00\xf2\x37\x7b\x58\xcc\x06\x24\x3d\x55\xad\xad\x1c\x15\x28\x0b\x3e\x68\x02\xa7\xb0\x8b\xd1\x4e\x49\x28\x10\xc3\x39\x25\x07\x35\x83\x73\x06\x13\x54\x0e\x0a\x44\x75\xfe\xc8\x41\x81\x18\xec\x48\x66\x70\x0a\xa5\x3b\xa5\x64\xa5\x40\x74\x3b\x45\x56\x0a\x18\xc4\x0a\x33\x38\x85\x18\xae\x68\xb2\x52\x33\x38\xc7\xfc\xed\x68\x77\x98\xe0\x29\xd4\x69\x57\x48\x5a\xcd\xe6\x3c\x2a\x6e\x1d\xd3\x39\x85\xa8\xd8\xf0\xa6\x73\x0a\x41\xe6\x7e\x98\xce\x29\x04\xf9\xbc\x61\x3a\xa7\xb0\x1f\x46\x2d\xe5\xb6\x40\x0c\xb8\xb9\xf9\x9c\xc2\x2e\xa6\x4c\xf5\x71\xfa\x6a\xb9\xb0\x4b\x77\xc9\xde\xdc\xc5\xac\xae\xca\xea\x66\x23\x5a\x35\x95\xd5\x1f\x8b\x59\x37\x55\xd3\x31\x65\xed\x45\x89\x32\xb0\x5c\xeb\xe5\xc9\xe6\x65\x1e\x1c\xf9\x0a\x13\x33\x85\xd7\xdf\x6e\x62\xa6\x10\xc3\x15\x6f\xd8\xf4\xe1\x6c\x70\xc9\x1b\xb6\x7d\xe0\x1e\xb3\xff\xf5\xde\x93\x60\xb9\x8b\x29\x73\x00\x90\x61\x39\x5d\x6b\x8c\x05\x01\x31\x5d\x30\x0c\xab\x98\x61\x79\x68\x65\x9b\x62\x29\xc4\x80\xf9\x98\x62\x29\x34\x03\x7d\xa6\x58\x86\xc9\x93\x87\xf6\xbf\xd9\x93\x42\x0c\x57\x46\x63\x2f\x6f\xf6\xa4\x35\x33\xf4\xf2\x95\xae\xbb\xef\x9b\x3e\x29\xcc\x62\xb7\x4b\xd7\xbf\xd2\x75\x8d\x6a\xf3\x27\x85\x52\x5d\x8e\xa5\xeb\x40\x0c\xdc\x63\xe6\x4f\x0a\xfb\x97\x16\x53\x1d\x1c\xa2\x22\xdd\x3b\x4c\x90\x14\x76\x31\x14\x2e\x5f\x07\x5a\x54\x5b\xa0\x3a\xa6\xdd\x0e\x45\x32\x45\x52\x88\x61\x27\x4b\xd8\xbf\x12\xf6\x0a\x45\x32\x47\x52\x88\xe1\x1e\x23\x61\x27\x1f\x72\x17\xe3\x0d\xd2\x73\x13\x22\xa7\x4b\xaf\xf4\xdc\x84\xc8\xa3\x3a\xe8\xe5\xe7\xc0\xac\x0e\xf0\xa5\x8e\xa0\xec\xe9\x5a\x23\x63\x37\xd7\xf1\x20\xf5\x30\x4c\x76\x14\xca\x3b\xb2\xe4\xe2\x5f\x33\x64\x2a\x24\xc0\x6c\x47\x21\xb8\x7b\x20\xcc\x76\x0c\x52\x1b\x77\x31\x7e\x2a\x19\x07\x9a\x21\x1b\x73\x1b\x83\x3c\xc6\x5d\x8c\xc6\x4b\xbd\x81\xda\xdd\x64\x64\xde\x26\x32\x1e\x15\x53\xce\x44\x46\xa1\xbe\xbb\xa9\xd4\x1b\x88\x70\x84\x4b\xbd\x81\xf2\x5a\x20\x52\x6f\xa0\xbd\x7b\xae\xd4\x1b\xa8\x3a\x29\x4d\x64\x14\x62\xba\x97\xca\xbc\x81\x5d\x0b\x74\x2b\xf5\x36\x93\x71\xba\x49\x4a\xbd\x81\x72\x54\xa2\xc2\x66\x32\x0a\x6d\x3a\x9a\xe5\xde\x40\x59\x50\x2e\x33\x19\xe3\x2b\xa9\x26\xd7\x38\x4c\x3f\x14\x9a\x04\xce\xf4\xc3\xf8\x4a\x8d\x5f\x1b\x4d\x6a\x0c\x14\xdd\x90\xe6\xf9\x85\x49\x7d\x47\xd5\xae\x92\x08\x03\x4b\x7f\x85\x59\x7d\x42\x69\x50\x1c\xb3\xfa\x84\xa2\x0f\xcc\xac\x3e\x21\xa6\x13\x59\x22\xfc\xf5\x98\x7f\x75\xab\x90\xcf\x02\xb5\x39\x86\xe4\xb3\xa6\xdd\x1d\x3a\xde\xcc\xbb\x13\x62\xbe\xc5\x6c\x00\x79\x77\xc5\xe1\xfd\xb1\x01\xa4\x90\xa4\x4b\x8c\xdc\x15\x88\xa9\x39\x23\x77\xfd\x7e\x5c\xd2\x6d\x93\x7c\x13\x68\xe9\xea\x27\xdf\x04\x4a\x77\x8f\x94\x6f\x02\xfb\x97\xf4\xa7\x84\x13\x88\x79\x28\xb2\x01\x1f\xbb\xfd\xfd\xa9\xdd\xfe\xa1\xdb\x35\x36\xa4\xa5\x40\x39\x5c\x28\xe4\x9d\x40\x18\x9f\xf9\xca\x3b\x81\x98\x9a\x1f\xf2\x4e\x60\x76\x9c\x90\x5f\x69\x27\xd0\x96\x4d\x92\x76\x7e\xa5\x9d\xd5\x91\x2c\xed\x04\x62\x12\xb6\xff\x4a\x3b\xbf\x8f\xf3\xdf\xcd\x5a\x92\x09\xc4\xd4\xf4\x7a\x54\x90\xbc\xf3\xad\x9a\xbc\x13\x88\x79\xfc\x0e\x5e\xfd\x95\x96\x02\x35\x5d\xb9\x64\xa5\x40\x4c\x0d\x49\x59\xe9\xf7\x71\xc5\x70\x35\x93\x83\x02\x55\xe7\xce\xf7\x51\x59\x0f\x09\xe5\x6a\xfe\x51\x59\x30\xd5\xe1\xa0\x96\xa8\x02\xfb\x61\xbc\x40\xa6\x0a\xd4\xa6\x81\x20\x51\x05\x76\x31\xc6\xab\x4c\x15\x88\xd7\xb0\x96\xa9\x7e\xbf\xaf\x1a\x78\xa9\x84\x13\x88\xa9\xf1\xfa\xb5\x9d\x5f\x06\x4a\x73\x96\x7f\x6d\xe8\x86\xe5\x82\x24\x2b\xfd\x7e\x1d\x00\x2e\xc7\xf2\x4d\x20\xe6\x5b\x35\x1b\x05\xdd\x3c\xda\x56\x51\x9a\xc4\x23\x98\x12\x9f\x07\x74\x33\xdf\x5c\xce\xf6\xca\xba\x32\x16\xf2\x5d\xb5\x34\x99\x33\x0f\x29\x68\xdb\x03\x2a\x0f\x28\xa8\x30\x30\x85\xf2\x80\x82\x0a\xbb\x58\x22\xbb\x94\x5d\x3f\x7f\x8c\xd5\x2d\x76\x2b\x62\x58\x57\x5f\xf0\x51\x44\xab\xd2\x1f\x3e\x8a\x1e\x1f\xd6\x91\x7d\x95\x39\xae\xd7\x16\x15\x1b\xe5\xd5\x18\x64\x8c\x27\xf9\xa4\x2f\xcc\xf6\x16\xab\x8a\x3c\xe7\xce\x3b\x89\x18\x0b\xfb\x97\x54\x8d\x90\xb1\x50\x5b\x53\x94\x8a\x86\xc5\x7c\xda\x54\xb6\x17\x77\xce\x37\x25\xb7\x67\xbc\x50\x56\x57\xa4\x3a\x0c\x06\x4f\x94\x56\xd4\x06\xc1\xe0\x83\x51\x94\x5e\xb6\x21\xc4\xac\x16\x53\x1d\xc5\xb6\xbf\x32\xdb\x5e\x4c\x37\x45\x54\x6d\x7b\xb5\xed\x15\xb5\x55\xdb\x0e\x81\xc5\x24\xcb\xa3\xda\x76\xce\x58\x1e\xf0\xdc\xf4\x3e\x0f\x21\xe6\xfb\x4b\xfb\x1d\x66\xda\xb6\x19\x98\x47\xb5\xdf\xab\x6d\xaf\xb4\xbd\xda\x76\x62\xbf\xf3\x7d\x98\x6d\xdf\x10\xd3\x6e\xaf\xb6\xbd\x92\xac\x32\xad\x86\x6d\xdf\x30\x59\x41\xf3\xa8\x36\xbd\xba\xc0\xa1\xee\x6a\xd3\x09\xfd\x92\x2c\x9d\x47\x75\x24\x54\x87\xb7\x15\x53\x19\xf2\xc1\xb7\xb2\xcd\x57\x6e\x08\x4e\xed\xa6\x37\x8b\x08\xe5\x68\xa1\xcc\x77\x36\x4f\xd6\x51\xb3\xe6\x3b\x9b\x73\x2a\x94\xf9\xd2\x46\xbc\xc7\x71\xdb\x7c\xa9\x1c\xb1\x05\x5d\x10\x0e\xa2\x60\xba\x57\x8a\x85\x63\xc8\x90\x68\x0b\x46\x64\xa8\xc8\xd0\xe5\x44\xdb\x43\x3d\x72\x5a\x70\xda\x82\x50\x8f\x1b\x66\x2e\x54\x1b\x36\x2a\x6c\x41\x5a\xcc\x16\x84\x5a\xb3\x98\x2d\x08\x5b\x90\xb4\x20\x6c\x41\xa0\x36\xf5\x11\x6f\x0b\xbe\x9c\x0d\xa3\xb6\xe9\x18\x92\x10\x92\x4d\x97\xa4\xf9\xbd\x10\xd3\x5e\x4f\x07\x47\xaa\xf0\xf4\xa7\xd6\x0d\x5e\xc7\xc5\x3d\x79\xa4\x0a\x37\xdc\xd8\x3a\xf5\x48\xab\xbb\xa1\x75\x35\x99\x56\xb7\xfb\xd2\xce\x4b\xbb\x2f\xed\x58\x5a\xfe\xb2\xfb\x52\x99\x4f\x1b\xbc\xa1\xfb\xb4\x4e\xe3\xed\xbe\xee\xd3\x86\x13\x79\xa0\xf0\x61\x27\x6c\x18\xf8\x54\xf2\x18\xbe\x60\xc3\x9c\x4e\xa0\xe1\x0b\xc8\x35\x5a\x0e\x8f\x61\x4f\x6d\x68\xf8\x67\xf2\x18\xf6\x94\xfc\xa5\x39\x72\x87\x0d\x95\xbf\xbc\x0f\xb3\x66\x92\x95\x36\xad\x86\x7d\x30\x1c\xba\x8a\xec\x03\xce\x83\x55\xe7\xcf\xb4\x0f\xb8\xce\x21\x1c\x57\xd3\x69\x3c\xd5\xd0\xa4\x0f\xa6\x0d\x80\x99\x8c\x42\xd3\xa7\x0d\x90\x85\xb4\xe5\x4f\xad\x2e\x17\x37\x64\x63\x36\x4e\x07\x96\x5c\x82\x34\xf7\x3c\xa6\x5a\x9b\x5a\x4c\x54\x6d\x5a\x5b\xcd\x7a\xce\xd0\xe5\xb1\x7c\x03\x66\xfd\x3a\x7e\x9b\x5d\xe7\xb1\xd4\xa0\x81\xba\x70\xeb\x59\xd6\x69\xc3\x0c\x47\xcf\xb2\x4e\x1e\x84\x72\xce\x2d\x07\x94\x59\xdd\xe1\x6e\x74\xba\x78\x9d\xd8\x92\xee\x0c\xa7\x73\xee\xd4\x0f\x4e\xaf\x9d\x76\xb7\xa6\x7b\x38\x27\x4e\xd5\x75\x32\x8a\x5d\xf2\x4f\x1b\x73\x76\x8b\x51\xb5\xd3\xea\x9e\xdc\x54\xa0\xba\x4e\x6b\x7b\x7a\xab\x8d\xa5\xac\xed\xc9\x12\xd7\x7c\xfe\x5b\xdb\xcb\x87\x59\x5b\xc7\xc0\x86\xd2\xdc\x14\x4f\xf5\xbc\x61\x0e\x27\xf0\xa9\x9e\x0d\x88\x85\x2b\xda\x65\x3b\x37\xac\x81\x36\x2e\x9b\xb9\x61\xbc\x0b\xc4\x65\x33\x39\x38\xb4\xd4\xec\x65\x2b\x2f\x46\xb5\x83\xe2\xb2\x95\x97\xad\x74\xb5\xb9\x6c\xe5\x86\x19\xce\xa4\xcb\x56\x1a\x35\x0b\xf7\x80\xcb\x36\x5d\x18\x56\xcd\x17\x38\xd2\x2f\x4e\xbf\x17\xab\x61\x2b\xaf\x8f\xbf\xb4\xd8\xdb\xa6\x67\xbf\xe0\x7d\xa7\x23\xfd\x7e\x9b\xc9\x70\xba\x6d\x26\x07\x7e\x96\xfd\x74\xdb\x4e\xf3\xf6\xc3\x29\x7d\xdb\xaa\x0d\xb3\xb8\x0b\xdc\xb6\xca\x58\xd7\xbb\x85\xdf\xf6\xca\x86\xb9\xd4\xe3\x6d\x0b\xcc\xf8\x0f\x9b\x70\xbf\x15\xe1\x04\x9c\xbf\xfc\x38\xe5\x0c\x59\x85\xc3\xef\xe3\x9c\xe3\xb8\x4d\xb8\x8d\x7d\xac\xee\xc7\xba\x39\x35\x3f\xd6\x6d\xc3\x6c\xae\x10\x1f\xeb\xf6\xc1\xf6\xd5\x6c\xf8\xa8\x70\xcd\x7e\xae\x31\xc9\xe3\x63\xdd\x3e\x1c\x5b\x1b\xd6\x43\xed\x6a\xcf\x47\xa0\xa3\x8f\xaa\xdc\x30\x09\xd4\xe7\xf1\xb1\x05\x8f\xf5\x70\x7d\x7f\xac\xc7\x83\x8e\x9c\x2c\x8f\xf5\xd0\x06\xb7\x51\x8f\xf5\x78\xb8\x58\xe2\xa0\x01\x8f\x1d\xbf\x61\x2e\xdb\xf9\xa8\xc8\xc7\xb1\xec\x04\x7d\xec\xe5\x87\x95\xd6\xc5\xf1\x71\x2c\x3f\x06\xc5\xd0\xf7\x63\x65\x31\xa8\xa7\x0a\x7a\xac\xac\x66\x71\x68\x0b\x7d\xed\xe4\x2f\x07\x63\x9c\x3f\x5f\x07\xb3\x01\x1c\x8e\x5d\xe5\xf1\xb5\x4d\x5f\x36\x81\xc1\x0b\xbe\xb6\xe9\x6b\xbf\x77\x7f\x6a\x75\x37\xcc\xe3\xfd\xa5\xba\x35\x82\xc3\x15\x2c\xe9\xc9\x18\xa1\x1d\x5a\xb2\x5f\x1b\xa5\x5d\x1c\xbc\xc1\x04\x75\x61\x8e\xaa\xa8\x28\x72\xe8\xd2\x55\x85\x38\x8c\x30\xb9\x4b\x2d\xbd\x93\x4c\xd8\xc5\x12\x59\x28\xe3\x70\x1f\xa6\x9b\x27\x69\x84\x5d\xac\x23\xeb\xca\x1c\x32\x0b\xd1\x50\xc4\x4a\x14\xbe\x73\x2a\xda\x5d\x55\xba\xa2\xa5\x88\xb6\x4f\x6b\x7b\x2a\xb2\xed\x6c\x80\x45\xbb\x1b\x88\x19\xd6\xec\x56\xf4\xb6\x7d\x77\x72\xd1\x7c\x06\xe6\x2a\x8a\x6c\x7b\xb1\xed\xd8\x6e\x45\xf3\x19\x68\xd5\x7a\x68\x3e\x17\xcd\xe7\xc0\xbc\x2d\x9a\xcf\xc0\xe4\x96\xb8\x2c\x9a\xcf\xc0\xe4\x9a\xba\xf4\x46\xb6\x2c\x5a\xd4\x31\x7d\x9a\x0d\xdd\xb0\x66\xd2\x02\x2d\xea\xa2\x11\x1c\x4c\xb4\xa2\x11\x0c\x0c\x3c\x5b\x59\x34\x82\x8b\x46\x30\xe9\xe2\xe9\x0d\x6f\x42\x4d\x06\x7d\xd1\x08\x2e\x46\x54\x70\xdb\xa4\xe7\x99\x84\xc9\x61\xf0\xf4\xfe\xc4\x2c\x06\x41\x92\xcd\xa5\x34\x7f\xda\x38\x73\xc7\x6a\x57\x9a\x8d\xe7\xe6\xb1\x83\x7c\xcd\x2c\xcd\xee\xdb\x30\xb9\x8e\x2e\x4b\xb3\x55\x9a\xa9\xa9\x42\x34\x53\x81\xb9\xa0\x13\xa5\xbd\x2f\xbd\x10\xf9\x02\xfb\x6a\xc3\xe4\xfc\x4b\x16\xad\xd4\xe2\x19\xb4\x7c\x5f\xa0\x3e\xda\xf7\xd7\x0b\x74\xb2\x84\xfa\x08\x53\x68\x7f\x3b\xbb\x2c\x4b\xa8\xad\x30\x71\x87\xa1\x12\x36\x59\x53\x37\x59\xa7\x8b\xa6\x2e\x10\x0d\x93\xa7\x68\xea\x02\x71\xa8\xac\xb0\xbf\x89\x90\xe0\xed\xc8\x12\xf6\x77\xe0\x30\x1b\x56\x52\x5d\xc5\xf0\xf9\x34\x59\x83\x18\x68\xd3\x0e\xd2\x20\x06\x0a\x87\x16\xb3\x68\x10\x17\x73\x04\xd3\x11\x1b\xea\x8f\xd3\x10\xed\xd5\x82\xfa\x33\x02\x93\xaa\x59\x23\x19\xa8\x04\xb3\xb2\x68\x23\x17\xaf\xc6\x48\xe7\x7e\xaa\x0e\xf2\xff\xd2\x51\x91\xaa\x63\xc3\xe0\x1a\xc9\x2c\xa9\x36\xb2\xf9\x4b\x8b\xa9\x0e\xf2\xff\xf0\x24\x64\xd1\x94\x2e\x9a\xd2\x2c\x5e\x45\x53\x1a\x88\x89\x3d\x5c\x52\x75\x68\x5d\x73\x04\x25\x8b\xd6\x35\x50\xb8\xe2\x2b\x8b\xd6\x75\xd1\xba\x4e\x47\xa2\xd6\x35\x50\x7e\xfd\xa5\xed\xec\x8e\x61\x7f\xda\x6d\x41\x27\x0b\x3e\x69\x41\xb7\x05\x1a\xe1\x69\x87\x6a\x84\x03\xde\xbe\x94\x45\x23\xbc\x74\xbb\x0a\x03\xa9\x74\xbb\xaa\x73\x95\xd3\x41\xab\xba\x5d\xb5\x61\xd6\xea\x0b\x6c\x41\xb7\xab\xd8\x8a\xbd\x7b\x54\x58\x2e\x2d\x1a\xf4\x40\xc1\x43\x9e\xa5\xbf\x0d\xd8\x1d\xc5\x0d\x2c\x59\xba\x1d\xd5\xf5\xe5\xd1\xcc\xee\xd8\x37\x0d\x30\xd9\x75\xbd\xb4\x51\xf0\x7e\xad\x2c\xc3\xee\x1c\x5e\x1e\x47\x2b\x87\xca\x30\xe2\x91\x2e\xbe\x43\x6d\x40\x22\xdc\xed\x8a\x1c\x02\x68\x1c\x21\xcd\x22\x87\x00\x8a\x76\x49\x91\x43\x00\xed\x70\x0b\x90\x43\x00\x55\xc7\x42\x91\x43\x00\xe5\x5d\xa1\x87\x1a\xdb\x10\xdd\x15\x7a\xa8\x31\x99\x46\x86\xaf\x54\x63\x30\x8d\xa2\x62\x65\x1a\x40\x2d\xea\x75\xa8\xb2\x41\x64\xe0\x7d\x98\x2a\x1b\xea\xc7\x26\xc9\x34\x00\x8f\xdb\x64\x91\x69\x00\x31\xd9\xf9\xcb\x54\x3f\xb3\xfe\x7a\xbd\x56\x96\xa9\x7a\xe4\x23\x5c\x80\x95\x45\x3e\x02\xd4\x69\x9b\xe4\x23\x45\x3e\x92\xd6\x43\x3e\x02\x94\xf1\xfe\xd2\xa6\x4f\x0e\x1b\x38\x68\xa7\x4d\x9f\x8e\xed\xf0\x69\xb6\x13\xda\x52\x9c\xd7\xb2\x16\x20\x9a\xbb\x9f\xac\xc5\x5b\x39\x0f\xae\x6b\x4d\xef\xe5\x14\xea\xb0\xe9\xcb\x16\x2c\x5b\xe0\xbc\x5e\xb6\x80\x34\xc3\x61\x0f\xcb\x77\x00\xef\x11\xcb\x22\xa1\x01\x5a\x55\x43\xf2\x19\x60\x3f\x8c\x76\x4a\x68\x80\xb6\x3a\x0d\x90\xd0\x14\xa3\x1d\x99\xe8\x7b\xd9\x9f\x1c\xd9\xd1\x3b\x50\x96\xed\x5c\x5c\x5e\x83\x53\xa8\x2c\xdb\x69\x64\x23\xdd\x10\x4f\x3b\xcf\x8b\x11\x55\xe4\x69\xe7\xc9\x98\xb2\xd3\x02\x19\x13\x10\x04\x40\xb2\xc8\x98\x8a\x79\x86\x89\x45\x56\xa4\x4c\x40\x90\xae\x90\x45\xc6\x54\x64\x4c\x6e\xb8\x32\xa6\x62\x6e\x60\x76\x8b\xd9\x82\xf3\xfa\xf5\x5e\xb5\x2c\xf2\x1e\xa0\x10\x64\xcf\x22\xef\x29\xa7\xdb\x95\xfa\x38\x9d\xb2\x44\x23\xba\x3b\xc1\x65\xa3\xb8\x57\xa1\xd8\xf6\xcb\x46\x5d\x8c\x48\xfb\x58\x76\x04\x94\x6a\x47\x49\x8f\x80\xaa\x6b\xa7\x48\x8f\x8a\x91\x0d\x32\x4d\xb2\xc8\x8f\x80\x1a\xae\x5e\xf2\x23\x20\xb8\x7a\x24\x8b\xf4\xc8\x53\xcc\xa9\x6d\x27\x3d\x2a\x97\x2d\x77\x2d\x94\x0b\x01\x25\xdf\xca\xda\xf2\x0b\x2b\xd9\x15\xed\xb2\xe5\x97\x57\xd1\xf9\x30\xc7\xe8\x65\x77\x0e\xfa\xee\xb6\xe5\x37\xe7\x36\xe7\x6f\xdf\x28\x9a\xe5\x56\x31\xb7\xdd\xe8\x5a\x73\xdb\xe6\x0d\xed\x70\xc5\x93\x3c\x01\xbb\x18\x03\x56\xf6\x04\x44\x77\xad\xbf\x6d\xf3\x8d\xb9\xa9\xfd\x76\xdb\x66\x39\x56\xda\xb5\x72\x2c\xa0\xbe\x03\x40\x8e\x05\x94\x23\xed\xa1\x5b\xd5\x70\x6d\x66\xb8\xb9\xde\xaa\xe6\xbe\x3d\xbc\x89\x48\xd5\x6c\x18\x9c\x1f\x4a\xef\x9e\x16\xf6\xc3\xfc\xa5\xe3\x84\xa3\xbe\x6f\x0f\x49\xd8\x8a\x84\x2d\x55\xb4\x84\x0d\x28\xcd\x9d\x54\xc2\xc6\xed\xd2\xbb\x18\xad\x92\x63\x01\x35\x35\x1a\x3f\x56\xcd\x8c\xbf\xd7\x70\xfa\x58\x37\xce\x72\xbe\xc6\xab\x4c\xac\x7c\xec\x36\x6d\x92\xc7\x8a\x3c\xc7\xaf\x57\x08\x66\x79\xac\xc7\xc3\x6d\x47\x8e\xfe\xc7\x7a\x3c\x76\xd5\x52\x66\x57\x3d\xde\x9d\xce\xf4\x92\xc3\x95\xc7\xea\xc2\xf5\xca\x63\x75\xc9\xaf\x9b\xda\xda\x52\xb1\x62\x70\xa3\xbb\x89\xc9\xc5\x80\x76\xb8\x09\xc8\xc5\x80\x5d\xcc\x9f\xaa\xca\x87\xd3\xda\x76\xdf\xd7\x16\x7c\x69\x81\xb6\xdd\xd7\x16\x6c\x98\xc5\xb5\xf1\x6b\x0b\x64\x71\x1c\x59\xcd\x22\x8b\x03\x4a\x68\x8f\xc9\xe2\x8a\x2c\xae\x6b\x0b\xc8\xe2\x00\xaf\x54\xcc\x22\x8b\x03\x82\x73\xfd\x59\xbe\x8e\x3f\xc3\x22\xa4\x03\x65\xf9\x3a\x00\xbf\x38\xd6\x9d\xe7\x72\x3d\xe0\x5d\x55\xa5\x7a\x40\x69\xef\xef\xd4\xd9\x06\xef\x1b\xcd\x22\xd3\x03\x52\x5f\x67\xf9\xaa\x32\x62\x27\xa4\x7e\x66\xf9\xaa\xb2\xef\xab\x32\x8b\xa9\xb2\x2f\x57\x82\xd1\xc3\x9e\x43\x16\xbc\x11\x32\xab\x14\x11\x28\xd2\x8e\x2a\x43\xac\x5e\xaa\x19\x13\x51\x53\xc4\xe9\x02\xd6\xec\x2a\x41\xac\xb2\x41\xe7\x45\x95\x0d\x02\xa5\xa7\xcf\x1f\x8a\x06\xa1\x4a\x4b\x4d\x45\xe4\x6c\xbe\xa2\xa5\x08\xcb\xd1\x50\x44\x95\x0e\x02\xb5\x31\x80\xaa\x6c\xb0\x9a\x09\xd8\x8b\xb5\xfd\x28\xfb\x6c\x05\x1d\x56\xed\x51\x44\x6e\x05\xbe\x2a\x2f\xa6\xce\x6a\x7c\x85\x0b\xfe\xd2\xab\xa9\x85\xb6\x54\x90\x04\x11\x28\x5c\x64\x9b\x55\x82\xc8\x75\xd5\xfb\x97\x1d\x99\xed\xdc\xd0\x13\x36\x58\x8b\xed\xe4\xea\x80\x64\xbb\xaa\x92\x41\xa0\x72\x88\x37\xab\x64\x10\x08\x72\x5f\xd3\xbb\xaf\x85\x32\xc2\x8a\xd9\x4c\xcf\xda\x35\x4b\xdd\x8a\xde\x96\xa3\x34\xc3\x2b\xde\x91\xdd\x0e\x2b\x66\xcb\xf9\x32\xc2\xd1\x21\x02\x5e\x63\x21\x34\x03\x3f\x55\x62\x59\xcd\xfb\x7b\xab\x56\xed\x4f\x4e\xd6\x19\xf9\xf1\xa2\xec\xac\xc6\x4d\x3a\xae\xb5\x6a\xdc\x04\xa8\x6b\xf8\x02\x1b\xc5\x29\xe9\xc4\x2f\xe5\x65\xd9\xc2\xfe\x25\x63\x48\x4e\xea\x75\xd9\x1c\x3d\xc9\x6a\xe0\x04\xd8\xc5\xac\x9b\xad\x22\x72\x32\x1c\x43\x46\x4e\xbc\x56\xdb\x10\x40\x35\x72\x52\x3d\x47\xd7\x71\x2b\xd6\x66\x43\x9b\xa3\x9b\x77\x36\x1b\xda\x9c\xfd\xfe\x54\xd2\x0b\x04\xb7\xdd\xa4\xb7\x74\xa7\x77\x72\x1f\xee\x2b\xde\xca\x2d\x84\xe6\x98\xd7\x72\x0b\x2d\x86\x22\xd5\x41\x92\x5f\x75\x24\x34\xd5\xb1\xa1\x39\xaf\xab\x64\x19\x28\x2d\xfd\xa1\xda\x68\x92\x3d\xdf\xa8\x36\x3c\x1f\xd7\xed\x77\xd9\xb2\xf7\x7e\x73\x9a\x20\xab\x21\x9d\x2a\x81\xe6\xa6\xa7\xac\x12\xe8\x0a\x5b\xd6\x05\x50\xa5\xc3\x40\xd1\x4b\x57\xa5\xc3\x00\xa7\xc0\x7f\x73\xab\xae\x92\x65\xa0\x69\xdc\x57\xc9\x32\xe0\x19\xe1\xac\x92\xe5\x6a\xa8\xa8\xb3\x88\x57\xa9\x31\x30\xe5\x2b\xde\x58\x9e\x35\x9c\xe4\xf0\x95\x2a\x0f\x06\xda\x82\x29\x54\x69\x30\xb0\xa6\xca\x92\x06\x03\x31\xd2\x6a\xa8\x18\xf2\x10\x39\x0e\x9d\x55\x16\x5c\xc3\x31\x81\x2d\x55\x8d\x0b\x01\xc5\x00\x47\x95\x18\x03\x55\x67\x94\xf7\xa4\x67\x95\x05\x77\xd7\x37\x59\x30\xd0\xde\x21\x21\x0b\xae\x9e\x82\x7b\xd5\x21\x0d\x06\xda\xe1\x30\x91\x06\xd7\x74\xf0\xe3\x33\xad\x72\x5e\x60\x2c\x1b\x25\xe5\xad\x9e\x5f\xc3\x1e\xaf\x52\x5e\xa0\x1c\xdd\x95\x2b\x6d\x95\xa9\x82\xe9\xc3\xec\xed\xee\x62\xe6\x1c\xe9\xb6\xaa\x93\x05\x85\xa1\x5d\x25\xcb\x55\x66\xdc\x1d\x15\x32\x63\xef\x6e\x3f\x6c\x95\xcc\xb8\x9a\xe6\xd7\x7d\x43\xb7\x09\x1d\xea\x57\x15\xd9\x7b\xa6\xf9\xf5\xf7\x0d\x0e\xf5\xce\x50\x9f\x16\xb3\x43\x37\xd4\xf2\x56\xcd\xb6\xf7\xb7\x55\xb4\x54\x22\x0c\x8c\xe5\x54\xea\x6f\xab\x4c\x60\xa0\x94\x3c\xb8\x42\x7a\x8f\xee\xa2\x24\xeb\x05\xca\x70\x46\x48\x7a\xab\x91\xb3\x4e\x1c\xae\xca\x7a\x81\xb9\x5c\x1c\x65\xbd\xc0\x78\xc7\x82\xac\xb7\x0e\xa7\x9c\x83\x41\x0e\x0a\xc4\x60\x13\xae\x72\x50\xa0\x1c\x7c\xb0\x25\xab\x01\x30\xa0\x56\xe7\x81\xb4\x14\xd8\xc5\x58\x5a\xe4\xa5\x40\x8c\xae\xc8\x16\xbc\xbc\x94\x87\xc9\x4b\x81\x79\x60\x7a\xd5\x69\x03\xa6\xdd\x82\xad\x5d\xa7\xdd\xb2\x61\x16\x87\xa9\xb4\x14\x68\x87\x3b\x8a\xb4\x14\x98\xd5\xe1\x27\x2d\x05\x06\x17\x6c\x66\x9d\xf6\x8a\x4c\x55\x3b\xae\xca\x54\x81\xb9\xde\x87\xa9\x8d\x0d\x93\xf3\x93\x59\x65\xaa\xd5\xdb\x8d\x48\x7b\xcd\xba\x6c\x3a\x77\x17\x0e\x7b\x60\xd9\xf2\x0d\xf3\x70\xf4\xc9\x67\x81\xfd\x4b\x9e\x26\xa1\xad\x9e\xa4\xb3\x07\x96\x4d\x97\x6f\xf2\xb5\x97\xac\xf2\x4d\xc0\x9b\xab\xb3\xca\x37\xab\xd9\x75\xdd\xdd\x5a\xc2\x09\xb4\xaa\x1d\xb1\xac\xee\x7a\x0f\x47\x21\xb2\xef\xa0\xa5\xba\xd0\xaa\xac\x14\xf0\x3a\x84\xac\xb2\x52\xa0\x19\x26\xa8\x92\x52\x20\x5f\x6d\x4b\x4a\x81\x9a\xd3\x1f\x5a\xff\xd3\x7d\xf3\x95\xd9\x4f\x04\xe3\xf2\x7d\xbe\xfd\x44\x30\xae\x1f\xd6\xc2\x7e\xe2\x46\xc0\xe5\x86\x2b\x4d\x05\x6a\x7d\x7f\x68\xc3\x4f\x4d\x1e\x7a\xce\x58\x5c\xbd\x1c\x7a\xda\x71\x12\x50\xa0\xa6\x7b\x9f\x04\xb4\x7a\xb1\x9f\x73\x58\x02\x0a\x78\xf7\x7a\x56\x09\x68\x35\x30\xc6\x81\xca\xac\xd7\xfb\x82\x87\x77\x5a\x4c\x2d\x5e\xe4\xab\xe2\x45\xaa\x92\x41\xa0\x1c\x43\x05\x49\xf7\x80\x59\x5c\x4b\x0c\x9f\x01\xbb\x98\x32\xeb\x01\x2b\xd4\x1b\x54\x25\x85\xf5\xf6\x86\x71\xb7\x52\xe9\x1e\x10\xd5\x81\x26\xdd\xab\xd2\xbd\xe1\x26\x2c\xdd\x03\xea\x50\x1d\xd2\xbd\x2a\xdd\x1b\x8e\x0d\xe9\x1e\x10\x87\xb6\x80\x74\xaf\xf2\x51\x84\xc3\xf8\x74\x95\xb5\x01\x79\xf8\x02\x49\x1b\xb0\x8b\xd1\x04\x59\x1b\x50\x63\x29\xb2\x55\x46\xde\x86\xfb\x94\x91\x37\x60\xe8\xd9\xa8\x46\xde\x80\x3c\xac\x9a\x91\x37\x60\xff\xf2\x77\x84\xac\xeb\x47\x45\x6c\xa8\x9c\x69\x4b\xbf\x1c\x24\xcc\xfe\xbe\x5e\x3d\xc8\x2d\x0d\x14\x55\xb9\x25\x30\xf9\x50\x52\x56\xb9\x65\x95\x5b\x0e\xbb\x57\x6e\x09\xcc\x70\xc2\xc9\x2d\x81\x59\x1c\x2a\x46\xf9\x80\x3a\x71\x0d\x55\xd9\x66\x7d\xd4\x96\x06\xa7\xdc\x12\x98\x01\x9f\xad\x8f\xda\x92\x6e\x0e\x3c\x6a\x55\xba\x09\xb4\xe2\xce\x29\xdd\x7c\xbf\xff\x31\x9c\x26\xb2\x41\x20\x0f\x7b\x4d\x36\x08\xcc\x65\xd5\x64\x83\x55\x9a\x37\xb4\x9d\xa4\x79\xc0\xac\xf2\x18\x69\x5e\x95\xd3\x0d\x2d\x15\x39\x1d\x30\x0d\xc8\x56\x39\x1d\xe0\xd5\xf9\x59\x25\x75\x40\x6b\x5a\xf3\x92\xba\x6a\xaa\x9b\x5e\xbc\x2a\x5f\x03\xca\x74\x9a\x48\xd7\x80\x66\x24\xcd\x2b\xa2\x84\x30\xbd\xa4\x49\xd7\xda\x61\x03\x78\x41\x33\x2e\xd7\xde\xec\xb7\x82\xa8\x2b\xe2\x93\x32\xb8\x3e\x9b\x44\x0c\xd8\xbf\x9c\xc8\xa6\xb2\x09\x9d\xf5\x61\x4b\x91\xdd\x1e\xd6\xe3\xa3\x0c\x4f\x50\xf7\x05\x8f\x22\x16\x55\x2d\xce\x26\xc7\x02\x92\x93\x9d\xd9\x8c\xcb\x01\x31\x6d\x81\xac\xab\xf9\x75\x27\x2e\xbc\xc9\x66\x74\xad\x79\x9f\x09\xf3\xab\x49\xb1\x80\xc2\xdd\x8f\xd9\xa4\x58\xcd\x80\x5b\x5a\xca\x06\x14\xa7\x7e\x5a\xcc\x16\x90\xc2\xc6\xdd\xae\xd9\xe4\x58\x80\x5f\x2f\xc8\x26\xc7\x6a\x12\xaa\xc1\xb8\x6a\x12\x2a\x20\xc8\xee\xcd\x26\xa1\x6a\x12\x2a\x37\xeb\x26\xa1\x02\x2a\x1f\x72\xc9\x26\xa1\x02\xfc\x90\x49\x36\x23\x75\xc0\xfe\x25\x6d\xe7\xbc\x95\xd0\xe6\xfb\xcb\x50\x94\x16\x43\x1d\xa6\xb0\x01\x61\x4e\x49\x33\x85\xad\x19\xf7\x1b\xcc\xed\x26\xc9\x02\x4a\xb7\x55\x72\xac\x26\xa1\xd2\x3a\x6a\x12\x2a\x60\x2e\xbb\x45\x42\x05\x84\xbe\xec\x26\xa1\x02\xe6\x01\x9f\x6a\xf2\x29\xa0\x1c\x1c\xae\xcc\x26\xa1\x02\xe6\xc2\x01\xd2\x8c\x2b\x72\x4f\xd9\x2e\xa6\xcc\x3e\x80\x03\x39\x1b\x9b\x1c\x08\x68\x5c\x80\x99\x4d\x0e\x04\x84\x96\x78\x93\x03\x35\x73\xd8\x38\xfb\x98\x4d\xc2\x03\xc4\x3b\xe4\xe5\x3b\x40\xd5\x01\xd7\x0c\x18\x02\x53\xdf\x46\x93\x02\x01\x7e\x8d\x22\x9b\x14\xa8\x19\x11\x34\xa3\xaa\x49\x72\x80\x66\x06\x42\x93\xe4\x34\xaf\x0d\xe1\x64\x62\x36\x59\x0e\x10\x86\xc5\x9a\x21\xc1\x26\xf1\xe1\xe4\x5a\x36\x89\x0f\xd0\xda\xfb\x4b\x47\xa9\x21\x41\x75\x6b\x48\x10\xa8\xda\xe1\x4d\x2a\xd4\xe2\x3d\xbf\x8e\x48\x05\x99\x0f\xc7\x39\xa1\x6c\xb2\x9c\xe6\x85\x20\xef\x2b\xd5\x06\xf9\x70\x8b\x75\xa8\xc9\x7b\xda\x7b\x59\xbe\x1a\x92\xf8\x34\x6f\x04\x71\x66\x4b\x7c\x80\xd0\xc6\x6c\x46\x04\x81\x90\x5d\x36\xa9\x10\x30\x25\x08\x4d\x2a\x04\x94\xb0\xb2\x32\x21\xa0\x72\x35\x7e\x36\x99\x10\x50\x0d\x1b\xb6\x54\x17\xc6\x08\x87\x13\xdb\x18\x21\x50\xca\xfb\x4a\x5b\x6e\x8c\xd0\x98\x46\x93\x30\x01\x7e\x49\x24\x9b\x84\xa9\x49\x98\xb4\xe4\x9a\x84\x09\x28\xc5\x21\x2a\x61\x02\x92\x2b\xe0\xb2\x75\x15\xb4\x21\x8c\x34\x35\x29\x14\xe0\x45\xa8\xd9\xa4\x50\x80\x77\x5d\x66\x33\xde\x08\x04\xf7\x50\x65\xeb\xea\xa7\x73\x7c\x39\xe6\x6f\xef\xd4\x4d\x1a\xd6\xa4\x61\xda\x27\x4d\x1e\x06\xc4\xc0\x6c\x6f\xd2\x30\xa0\x91\x39\x9f\x4d\x1a\xd6\xa4\x61\x9c\x4c\xca\x26\x0d\x03\xfc\x9e\x4a\x36\x69\x58\x33\x68\xc9\x69\x94\x6c\xf2\x30\xa0\xbd\xba\x32\x6a\xd9\xfa\xab\x3f\xd5\xa0\xfe\x88\x51\x0e\xbb\x56\x6a\x06\x54\xb7\xc3\x26\x35\x03\xa2\x3a\xa6\x0d\x51\x02\x4d\xaa\xd3\x24\x6b\xcd\x10\xe5\x70\x0a\xca\xd6\x00\xef\x2e\xcc\x26\x59\x03\x5a\x75\xe8\x48\xd6\x80\x2a\x05\x68\x92\x35\x60\x3f\x8c\xa1\x63\x8c\xb2\x19\xa3\x6c\xbe\x53\x0d\x6d\x68\xcb\x25\xd0\x18\x25\xb0\x7f\xa9\x4c\x0d\x71\x5f\xfe\xb2\x1f\x8d\x51\x36\x69\xde\x74\x8a\x4b\xf3\x80\x56\x7c\x9a\x34\xaf\x79\x61\xca\x74\xdb\x94\xd3\x35\x6f\xb9\x77\x03\x90\xd3\x01\xbb\x18\xdd\x22\xa9\x03\x8a\x5e\xc2\x66\xf8\x11\x68\x72\xd7\x66\xf8\xb1\x79\xad\x8a\x8b\x83\xcc\xaf\x11\x7d\x3c\x38\x2b\x90\x4d\x9e\x07\xd4\xb4\x0b\xe4\x79\xcd\x43\x59\x1c\xc9\xc8\x26\xd1\x03\xe2\x70\x12\xca\xf3\x80\x28\x6f\xcd\x9c\x49\x44\x24\xc7\xfb\x4e\x07\x82\xa1\xc6\xe9\xb6\x6c\xa8\x11\x28\xef\x2a\x6e\xa8\xb1\x99\x28\xc9\x59\x81\x6c\x06\x16\x81\x6a\xc2\x48\x33\xae\x08\xcc\xe9\x48\x30\xae\x08\x94\x77\xdd\x92\xe6\x35\x39\x9d\xb9\xf1\x4d\x4e\x07\xc4\xc0\xbf\xd8\xd6\x5b\x35\x7b\x0a\xe3\xb4\x49\xea\x80\x68\xae\x22\x92\x3a\x60\x0c\x07\x91\xa4\xee\xbd\x72\x97\x53\x06\xd9\x64\x75\x40\x33\x7b\xc8\x8f\x69\x0a\x31\x70\xc5\x35\x59\x5d\x33\x39\xd3\x0c\xf7\x66\xa8\x11\x88\xf1\xbe\x53\x75\x9c\x7c\x64\xc5\xf5\xcd\xdc\xcc\x26\x1f\xf4\xa8\x40\x93\x0f\x36\x93\x33\xed\x28\xf9\x60\xf3\xb3\x5f\x4e\x59\xf9\x20\x17\x7d\xee\x5f\x5a\x0f\xd5\x41\x26\x66\x57\x91\xb2\x3f\x20\xb8\xa5\x2b\x9b\x31\xca\x76\xbd\xed\xa4\x1e\xb2\x3f\x60\x56\x37\x3a\xd9\x1f\x50\x0e\x7d\xab\x4d\xfa\x07\xcc\xe9\x34\x33\xfc\x08\xec\x62\x68\xcd\xf8\x23\xe0\xf7\x99\xb2\x19\x7f\x6c\x06\x1b\x75\xb1\x34\x83\x8d\x40\xab\xce\x29\x83\x8d\xcd\x33\x59\xe6\x67\xb6\xeb\xad\x2f\x7b\x98\xfa\x90\x4c\x36\xc9\xa4\x04\xbc\x49\x26\x9b\xf7\x95\x38\xfe\x24\x93\x40\x29\xee\x61\x72\x49\x60\x0c\xd7\x7b\xb9\x64\xf3\xcb\xab\x66\x46\x34\x89\x23\xe0\xe7\xa4\xb2\xc9\x1b\x81\x52\x54\xae\xbc\x11\xf0\x03\x68\xd9\xa4\x8d\x40\x54\xe8\x52\x93\x36\x02\x4d\x1a\xdd\x8c\x12\x02\x45\xee\xe5\x45\xce\xd9\x3e\x6f\x93\xe8\x4f\x99\x24\x50\xd2\xb5\x49\x22\xd9\x3e\xf6\x8a\xb6\xfa\xc7\x06\x7c\xf8\x64\x0d\x54\xd5\xeb\x9e\xf3\xbd\xee\x79\xba\x23\xca\x24\x81\x56\xe0\xa0\x4d\x26\x09\x34\x93\x3f\x9b\x4c\x11\x28\x45\x9b\x50\xa6\x08\x84\x89\xd4\x4d\xa6\xd8\x64\x8a\x26\x2e\x35\x99\x22\x50\x97\x8b\xbc\x4c\x91\x0b\x63\x77\x31\x65\x76\xe7\xc7\xab\xf4\x79\xa7\x1c\x10\x28\x66\xb3\x35\x23\x8e\x4d\x5a\x68\x5a\x74\x93\x16\x02\xc3\xe4\xcf\x26\x2d\x04\xfc\xc6\x57\x36\x59\x21\x50\xde\x59\x2c\x2b\x04\xaa\x87\x4d\x9a\x89\xa4\x40\x35\xe8\xd3\x4c\x24\x6d\x1e\xe6\x9a\xf9\xdb\x27\xb7\xb2\x99\x68\x0a\xec\x3d\x0a\x91\xca\xda\xb0\x77\x32\x44\x2a\x8b\xc3\x5c\xa6\xf1\x34\x43\xa0\x40\x95\x59\x36\x43\xa0\x40\xc4\xfb\x2c\x87\xc9\x06\x3d\xa1\xcd\x00\x28\x50\xd2\xe5\xd9\xf8\x67\x33\xfe\xa9\x39\x24\xe3\x05\x9a\x41\xee\x26\xe3\x05\xd2\x83\x06\x4d\xc6\x0b\xb4\xf0\x59\x86\x3f\x81\xa8\xef\x0f\x55\xa7\xbc\xd8\xc4\xc5\x26\x2f\x6e\xde\x42\xe2\x84\x91\x17\x03\x51\xde\x52\xea\x13\xaa\x6c\x26\x74\x93\x29\x03\x2d\xed\x2e\x99\x32\xd0\x74\x75\x35\x99\x72\xfb\xbe\x83\x0b\x85\x49\x95\x81\xe4\x6e\xa9\x6c\xc6\x3f\x81\x12\x4e\x78\xe3\x9f\x40\xbe\x34\x4d\x3e\xdd\xcc\x87\x35\x68\xe0\x65\xc5\x42\x39\xa4\xad\x7e\xed\x58\x88\xc6\x80\x08\xa3\x9d\xe1\x95\xa4\xdc\x1a\x98\x61\xb8\x13\x28\x95\xee\x0d\xc3\x9d\x40\xf1\x9c\x58\xc8\xbb\x43\xde\x2d\xbb\x0d\x89\x37\x90\xed\x2d\x36\x14\x39\xe2\xba\x2f\x9d\xca\xb8\xd1\x0a\x9f\x58\x48\xbc\x01\xbf\xef\x98\x61\x04\x14\x28\xb1\xfc\xe1\xa5\xe8\xf2\x61\x89\xec\x56\xc6\xc9\x94\xf7\x97\x1f\x45\xdc\xe4\x5a\x7c\xfe\xa3\xc8\x8b\x04\x6d\xe6\x57\x11\x57\x55\x33\xe5\xfd\xf8\xb3\xd0\x3a\x8b\x51\x48\xd8\xc3\x30\x29\x5b\x61\x18\x26\x05\xb6\x3d\x86\x48\x95\x15\xa8\x2d\x03\x34\x4c\xa3\x0d\x99\xbe\xe6\x7f\xc8\xf4\x81\xaa\xb5\xe3\xd7\xa5\x85\xf4\xd8\x4b\xc8\xf4\x81\xaa\xa7\x2e\x64\xfa\x51\x1c\x2e\xdd\x62\x2a\xa3\x98\x83\x84\xb2\x8d\x93\x86\xb4\x7e\x0e\xeb\xa1\x32\xf8\x44\x20\x17\xdb\x67\x48\xeb\x81\xc6\x85\x92\x19\xe6\xe4\x02\xc1\xcd\x09\x19\x12\x7d\xa0\xf0\x99\xeb\x0c\x89\x3e\xb0\x6d\x36\x44\x2a\x43\xa2\x3f\x99\x75\x21\xd1\x07\x92\xbb\xd1\x33\x24\xfa\x21\xd1\xe7\xc6\xaf\x0c\x89\x3e\x50\x74\xbb\x85\x44\x1f\xe0\x2b\x37\x19\x46\x5c\x81\x62\x0a\x55\x18\x71\x05\x4a\x87\xc9\x85\xce\x80\x30\xe2\x3a\x59\x59\x42\x6f\x00\x50\xe6\xb2\x62\xea\xa7\x7a\x8a\xc9\x52\xaa\xa7\xfa\x05\x45\x4b\xa9\x9e\xca\x07\xb3\x1c\x78\xfa\x07\x80\x66\xbe\x48\xe8\x1f\x08\xfd\x03\x93\xe9\x1a\xfa\x07\x80\x30\x5f\x35\xf4\x0f\x00\xe9\x11\xa0\x30\x04\x1b\x5e\xbe\x32\x1d\x40\xc6\x60\x81\xa6\xa5\xc3\x07\xc7\x5f\x28\x7c\x81\x21\xfd\xf0\x78\x86\x17\xad\x98\xad\x17\xc6\x60\x81\xe6\x2e\x15\xfa\x1f\x80\xa2\x2d\x18\xfa\x1f\x80\xfd\x4b\xeb\xa1\x82\x9a\x8c\x08\xfd\xeb\x80\x00\x8a\x81\xba\x30\x06\x1b\xfa\x24\x74\xdb\x84\x3e\x09\xa0\x69\xd1\x85\x3e\x09\x60\x17\xa3\x1e\x3a\x25\x80\x38\x1c\x8d\x3a\x25\x42\x0f\x84\xa9\x56\xa1\x07\x02\x48\x4f\x66\x85\x1e\x88\xf0\x8a\x96\xf9\xca\x6c\x3c\xee\x06\xcf\x35\xf9\x25\x07\x61\x17\xa3\xa5\xba\x1b\x80\xa2\x8b\x3c\x74\x37\x84\xa1\x57\x1d\x26\xa1\xbf\x01\x28\x7a\xb6\x42\x7f\x03\x90\x4d\x15\x19\x7a\x8d\x78\x5b\x85\x8e\x74\x2e\x00\x75\xe2\x0f\xf0\xf3\xef\x42\x39\x26\x84\x36\x74\x2e\x44\x06\xad\xa2\xf1\xba\x0d\x80\x6a\xb8\x37\x74\x1b\x00\x9b\x2c\x21\xb2\x51\xc9\x57\x1c\xe7\xef\xd8\xa2\x43\xaf\x02\x10\xed\x7d\xae\x4d\xe6\x1b\x7c\x1e\x63\x0b\xfd\x0c\x61\x60\xd6\xdc\xec\xd0\xd1\x00\xb4\xe2\x1a\xa8\x9f\x01\x68\x9e\x03\x0d\xfd\x0c\xd1\xdf\xe6\xd1\x1b\xfa\x06\x80\xfa\x8e\x7e\x7d\x03\xc0\x2e\x86\x02\x75\x0e\x00\x9b\x4b\x21\x52\x0b\xb2\xff\xe5\x8a\x24\xfb\x07\xf2\xed\x5b\xd9\x7f\x98\xb2\xac\xe7\x2e\xa4\xff\x40\xa4\x6b\x8d\xec\x3f\xc6\x61\x31\x54\x2f\x15\x07\xd2\xec\x82\x90\x8a\x03\xc9\xb5\xf5\xe9\xe7\x3d\x84\xa6\x2f\xcc\xaf\x7b\x08\xe5\x58\x6f\x31\xab\x4b\xb6\xb0\xf4\x28\xa4\xe2\x40\x36\x27\x8e\x4c\x1c\x48\xb3\xd7\x43\x26\x0e\xd4\xa5\x86\xc6\x5b\xd9\xd3\xe7\xfb\x4e\xbb\x60\x70\x34\xcb\x35\xc9\xd4\x60\xa0\x2c\x87\xb0\x61\x59\xa0\xca\x32\xc3\xb0\x6c\x98\x1a\xec\xf1\x82\x90\x9c\x03\xd5\x73\x5e\x61\x08\x36\xe4\xeb\x9e\x14\x0a\xf9\x3a\x90\xda\x53\x21\x5f\x0f\xf9\xba\xa6\x4c\xc8\xd7\x81\xd4\x83\x18\xf2\xf5\xf0\x62\x15\x8f\x39\x84\x84\x1d\xa8\xba\x1c\x42\xc2\x1e\xf3\x6d\x28\x2a\x92\x89\x03\x11\xd5\xea\xda\x50\x72\x83\x97\xeb\x88\x4c\x3c\x3c\xd1\x68\x1e\x6d\x48\xc5\x81\x5a\x1d\x1d\xd3\xe5\x86\xdb\x51\x4c\xe7\x0d\x83\xb0\x40\xf1\xcc\x4e\x18\x84\x0d\xb3\x8a\xd7\x2b\xb3\xed\x8b\x8b\xe9\x9c\xe5\x06\x61\xc3\x0b\x53\xde\x7a\x18\x85\x05\xd2\xfc\xb1\x90\xfd\x87\x5f\x90\x53\x91\xb2\x7f\xa0\x36\xd7\x02\x13\x8d\xc3\xac\x62\xa3\x98\x21\xfb\x07\xaa\x89\x3e\x21\xfb\xe7\xeb\xeb\xe9\x61\xce\x30\xa2\x1b\xb2\xff\xe5\x6c\x94\xfd\x03\x19\xce\x15\xd9\x7f\x78\x11\xca\x82\xdb\x86\x84\x1d\xd8\xb6\x0a\x22\x1b\xb0\x21\x8d\x4f\x86\x7c\x1d\x28\xc7\x82\xa0\x86\x84\x1d\x48\xd9\x45\x48\xd8\x81\xd4\x68\x0e\xf9\x3a\x10\xe6\x74\x84\x7c\x3d\x36\x47\xcf\x70\xaf\x33\x58\x0b\xa4\x29\x65\x61\xb0\x16\x88\xa2\x11\x21\x83\x07\x32\x9c\xb0\xe7\xdb\xa4\xc7\x8a\xd1\x01\x52\x78\xa0\x7a\x56\x39\x4c\x33\x0e\xc3\xbc\xaf\x31\x66\x98\x17\x08\x1d\xce\x21\xd1\x07\x76\x31\x6a\x2b\xd3\x0f\x13\x8d\xdd\x86\x25\xfa\x40\xf2\xcd\xa3\x0c\x89\x7e\x5c\xae\x39\x50\xf3\x30\x85\x18\x68\x7a\x6e\xe2\xb2\xe9\x12\xfd\x77\x21\x97\xe8\x03\x19\x4e\x46\x89\x3e\xb0\x0e\xe7\x85\x59\xc5\x40\xc8\xa6\xc3\xd0\x72\xe8\x0e\x58\xaa\x48\x77\x00\x90\xfa\x97\x43\x77\x00\xa0\x93\x33\x74\x06\x00\xcd\x98\x45\xe8\x0c\x00\xb6\xfd\x8e\xc8\x86\x9b\x6e\xcc\xf5\xb1\x19\x7a\x03\x80\xb2\xb4\x1c\x4d\x37\x0e\xd3\x8d\x57\xf8\x4a\x87\x06\x01\xe8\xd4\x80\x35\xfe\x0c\x34\x23\x94\xa1\x1b\x01\x28\xaf\x61\xa1\x1b\x01\x88\xd7\x40\xd6\x8d\x10\x64\x16\x1f\x0b\xea\x1f\x3a\x0d\x80\xf4\xa8\x66\xe8\x34\x00\xda\x72\xa2\xe8\x34\x00\x7e\xad\x97\xda\xb9\xd1\x8e\x93\xda\x10\x35\x90\xaf\x15\xa7\x63\x01\x88\xc3\x7a\xe9\x58\x00\xd2\xfc\xc3\x30\x42\x1d\x1f\x07\x01\xaa\xd0\xaf\x00\x6c\x23\x1f\x91\x9a\xf0\xe2\x18\xdd\xa5\x7e\xe5\x45\x28\xeb\xf7\x64\x7e\x87\x6e\x07\x60\x3f\xc5\x97\xa9\xaa\x8f\xb3\x08\x55\xe9\x63\x88\xcf\xab\x2a\x6b\xae\xaa\x3e\xaa\xca\x5f\xaa\xaa\x0f\xd3\xc8\x75\xd2\x68\x34\x90\x1e\xdf\x0d\x3d\x11\x40\x54\x9f\xa5\x27\x22\xbc\xbc\x74\xe1\x37\x09\x5d\x11\xc0\x1c\xee\x55\x7a\x22\xc2\xd3\xaa\x4b\xc3\x52\x27\x03\x50\xf4\x71\x87\x4e\x06\xa0\xbe\x53\x52\x27\x03\x90\x21\xbd\xd3\x89\x00\x34\xcf\x4b\x84\x4e\x84\x78\x6f\x84\xf1\x87\x0e\x92\x87\xfb\x26\x52\x91\xca\x30\x69\x7a\x11\x2f\x0d\x5d\x06\x40\x7d\x17\x3b\x7d\x06\x40\xf3\x0e\x80\xd0\x67\x10\x5e\x4a\xba\x5c\x9b\x75\x07\x00\xe1\x01\x9e\xd0\x1d\x00\x64\x38\x8b\x74\x07\x84\x77\xb8\xbc\x56\xb0\x7c\x1d\x28\x26\x76\x85\x74\x3d\xfc\xf2\xde\x92\x8c\xca\xd7\x81\xf2\xce\x65\xf9\x3a\x90\x06\x47\x43\xbe\x1e\xe6\x2b\x2f\x67\xd6\xf7\xad\x2e\x2e\x23\x38\x99\xdf\x0c\x12\x76\xb1\x81\xac\x28\x2b\xf8\xae\x2d\x56\x15\x39\xc3\xc9\xa0\x4f\xf9\x3a\xb0\x8e\x57\x94\x8a\x9c\xe1\x58\xe3\x29\x5f\x07\x9a\x27\x4a\x52\xbe\x0e\x14\x43\xf8\x29\x5d\x4f\x2f\x8e\x59\xc3\x62\x4b\xd9\xda\xb3\x32\x91\x9c\x4a\x6c\x14\x0c\x2f\xa5\xd8\xc0\xe6\x3b\x5b\x24\xc5\x4e\x29\xb6\x0d\x90\x62\x03\xe9\x99\xf0\x94\x62\xa7\xe7\x52\x17\x3d\x95\x12\x6a\x20\x3d\x88\x9e\xf2\xe9\x94\x16\xeb\x3e\x4a\x69\x31\x90\x1e\x88\x4f\x69\x71\x1a\xc6\x5e\xf0\xd6\x94\xdd\x02\xe9\xe9\xf7\x94\xdd\xa6\xd7\x86\xf2\xdd\xc2\x4c\xe9\x6d\x56\x87\x07\x4d\x97\xca\x02\xd5\x2c\xf8\x34\x55\x38\xfd\xe2\x86\xa7\xcc\x52\x2a\x0b\xa4\x67\x56\x52\x2e\x9b\x86\xb1\xf9\x78\x61\xa6\xcc\x15\x48\xee\x65\xcf\x94\xb8\x02\xbb\x18\x0a\x91\xb9\x02\x65\x0d\x8b\x7d\x14\x69\x29\x2d\xdf\xf0\x28\x83\xba\x86\x2f\xb0\x0f\xa0\xae\xc3\x41\x24\x75\x05\x32\xc8\x5e\x48\x99\x2b\x50\xaa\xed\x94\xb9\xa6\xd9\xc3\x0b\x67\x6a\x4a\x5d\x81\xd4\x0d\x9b\x32\xd7\x6c\x6f\xdb\x7d\x81\x6d\xe7\x43\xf4\x11\x8a\x6c\x3b\xb7\xb8\x94\x03\x4b\x26\x65\x9b\x40\x7a\xba\x3e\x65\x9b\xc0\x2e\x46\xdb\x65\x9b\x40\x33\x7b\x26\x65\x9b\xc0\x26\x8b\x5b\x24\xd9\x04\xf6\x2f\x51\x87\x6c\x13\xc8\x57\x1d\x86\xc0\x81\x5d\x8c\x97\x4a\x40\x81\xaa\x9d\x9b\x12\x50\x20\x4c\xa6\x4d\x23\xe0\xc0\xfe\xa5\xc5\x9c\x40\x7c\x53\xde\xe3\xb4\x29\x27\xcd\xd0\xb9\xcc\x96\x92\x12\x50\x60\xd3\x61\x44\xf6\xfb\x86\xf5\x4a\xec\xf6\x30\x72\x5b\x94\xd9\xce\x0d\xd3\xb3\x20\x29\xfd\x04\xd2\xd0\x6d\x4a\x3f\x33\x6d\x53\xb1\x98\x6d\x4a\xbe\xc0\x0a\x07\x4a\x03\xd9\xc0\x2e\x46\xd3\xa5\xa4\x40\xea\x1d\x4f\x29\x29\xb0\x69\x34\x22\xdb\x94\x76\x1e\x56\x7f\xca\x13\x81\xe4\xde\xd3\x4c\x79\x22\x50\xca\x61\x4f\x19\x8f\x06\xa6\xc9\x80\x69\x3c\x3a\xbb\x3d\xc5\x06\x9e\x46\x9f\x81\x62\x0e\x75\xca\x30\x13\x3a\x59\x0e\x67\xb2\x74\x12\x68\xaf\x6e\xa5\x93\x40\x6b\xec\x06\x29\x9b\x04\xaa\x57\x17\xa4\x6c\x12\xc8\xf8\x1d\x9f\xeb\xc8\x94\x6b\x66\x5f\xbe\xde\x2a\xd9\x69\xa4\xf7\x6a\x4b\xa5\x61\x65\x60\x17\x63\xd1\x30\xae\x0c\xc4\x60\x4f\x49\x4f\xc3\x02\x19\x8e\x27\x23\xcd\x40\x35\xdd\x34\x8d\x34\xe7\xb0\x87\xfc\xa5\xfc\x33\x87\x73\x89\xe7\xcb\x2c\xd3\x18\xaf\xb3\x50\x66\x99\x30\x4b\xef\x94\xcb\x94\x59\x02\xe9\x9d\x0b\x29\xb3\x04\x9a\x39\xe8\x29\xb3\x04\xf6\x2f\xd1\xa9\xd4\x12\xd8\x7c\x1e\xd1\x5b\x35\x6f\x0d\xf4\xa7\xb2\xcd\x94\x6d\xb2\x5f\xa7\x6c\x13\xc8\x57\xf5\x92\x4d\xa0\x99\xc5\x91\x92\x4d\x20\x03\xa7\x5e\xca\x35\x81\xd6\xd4\xb6\x5c\x33\xc9\x01\x2e\x87\x93\x44\x62\x09\xd4\x5f\x7f\xa9\x36\x36\x64\x74\x4b\xa9\x8d\xc9\x3d\x5e\x6c\xfd\x69\x6c\x18\x28\xd3\xc5\x52\x42\x0a\x64\xbc\xd5\x57\x3f\xd3\x39\xe8\x8a\x21\xd5\x04\xd2\x83\x15\x29\xd5\x04\x76\x31\x7e\x2a\xd7\x04\xd2\x8b\x30\x52\xaa\x99\xcb\x11\xec\x02\x27\xaf\x04\xd2\xab\x2b\x52\x5e\x99\x84\x90\xcb\xe1\x8c\x33\x84\x0c\x94\x56\x15\xd9\xa8\xc5\x22\xe2\x2e\x2c\x89\xcc\xe5\xe0\x4b\x65\x36\x61\xe1\xbf\x79\x8b\xd9\xc5\x7c\x14\xc3\xdb\x0a\xfc\x3e\xa9\xb0\x7f\x49\x17\x1b\x42\x06\x32\xb0\xee\xd2\x10\x72\x9e\x76\x81\xb3\x5c\x7a\x08\x84\x67\xd6\x52\x7a\x98\xa7\x73\xc5\x6e\x37\x78\x0b\xcc\xc0\x88\x4a\xf9\x21\xb0\x8b\xf1\x52\x09\x22\x30\xa5\x3a\x29\x41\x04\x76\x31\x65\xd6\xf7\xe4\x7b\xd5\xd8\xac\x29\x41\x4c\x0f\x9d\x7a\x81\x48\xca\x06\x81\xf4\x06\x94\x94\x0d\x02\xd3\xc4\xbf\x94\x0c\x02\xf1\xbe\x53\x32\x08\xec\x87\xd1\x2a\xd9\x20\x90\xe1\x88\x37\xea\x0b\xec\x62\x3e\x4d\x7d\x70\xec\x74\x39\xbe\xe5\x8c\xc0\x2e\xe6\x4f\xed\xbe\x8b\xee\x53\x1f\x5e\xd4\x03\x94\xa2\x83\x34\xe5\x91\x40\x78\x61\x5e\xca\x23\x81\x5d\x0c\xed\x4a\x24\xf3\x72\x86\x5a\x0f\xf5\x61\x0a\xf1\xa1\x01\x26\xd3\x03\xd2\x5b\x40\x52\xa6\x07\x84\xc9\x69\x29\xd1\x03\xa6\x24\x28\x25\x7a\xc0\x9c\xee\xfd\x12\x3d\x60\x3f\x1f\x15\xc9\xf4\x80\x34\xa0\x97\x32\xbd\xbc\xed\xe4\xe1\xd3\x6c\xc1\xcd\xea\x37\xfd\xa5\x1d\xba\x61\x7a\xa5\x4d\xca\xeb\xf2\x63\x87\xe2\x32\x4d\x59\x1c\x90\x5e\xba\x92\xb2\xb8\x94\xc5\x39\xb9\x65\x71\x40\xab\x6e\x76\x06\x8c\x53\x62\xa7\x65\x28\xb1\x03\xf6\xf3\x69\xba\xcc\x0e\xc8\x70\xa8\x49\xec\xf2\xe3\x60\x9e\x3e\xcd\x46\x6d\x98\xaf\xd5\x2a\x4d\x03\x76\x31\xeb\x61\x3b\x3f\x84\xc1\xdd\xd8\xa4\x69\x29\x4d\xc3\xcb\x98\xd2\x34\x60\xff\x12\x75\x7c\xde\xb6\x3b\xf7\x10\xc9\xd3\x80\x5d\x0c\x45\xca\xd3\x80\x36\xb5\x3d\xe5\x69\xc0\x2e\x46\xdd\x0c\x19\x03\xcd\x04\x94\x34\x64\x0c\xa4\x47\x7b\x53\x36\x07\xa4\x37\xb8\xa4\x6c\x0e\xc8\xb0\x07\x64\x73\x40\x29\x87\xb6\xad\x74\x0e\xc8\x78\x5f\xe9\x48\xd8\xb0\x0e\xdb\x29\x9d\x03\xd2\x2b\x43\x52\x3a\x97\x0f\x46\x83\x43\x48\x36\x97\x8f\xda\x78\x6b\xa6\x36\x1e\xb4\x31\xdb\xef\xd8\xad\x0d\x07\x27\x6c\xaf\x1c\x0e\x01\xd9\x5e\x4a\xed\xb4\xfa\xa5\x76\xc0\x2e\xa6\x4c\x35\x70\xd0\x35\x6c\x9f\x91\x5e\x60\x1d\x0e\x6b\x23\xbd\x40\xc6\xf0\xf9\x6a\xe1\xeb\xbc\x74\x92\xc8\xf6\x80\x96\x5a\x03\xb2\x3d\x20\x63\x29\xb2\x7d\x04\x6c\xdf\x0c\x04\xbf\x06\x2b\x6c\xce\x87\xa8\x28\x62\xf0\xf3\xfc\x2e\xd9\xeb\xb0\xb8\x37\xbf\xaf\xcb\xe2\x80\x99\xac\xd1\x5d\x16\x07\xec\x62\xfe\x74\x2a\xa3\xd3\x96\xc5\x96\xa2\xc5\xb1\x8f\x86\xe8\x54\xe4\x39\x45\xac\xdc\x6e\x88\x15\xc8\x40\x69\xdd\x10\x2b\xb0\xf8\x50\x60\xfa\xd9\x6a\xa1\x98\x96\xee\x57\xab\x85\x18\xb0\x8a\x2e\xff\xeb\x30\xbb\x22\x83\xed\x32\x3b\x60\x7a\x04\xbc\xcb\xec\xba\x5f\x87\x7f\xab\x66\xa8\x14\x58\x4e\xdf\x6e\xa8\x14\x18\xde\x3b\xd2\x0d\x95\x02\x71\x54\xdf\x69\x33\xa1\x89\xa5\xb0\xe0\xfb\xa1\x6c\xa1\x9a\x74\xdd\xa5\x89\xc0\xd2\x63\xd4\x0d\x9e\x02\xfb\x97\xbe\xc0\x76\x16\xfb\xd3\x9a\xd9\xce\xc2\x78\xc5\x7d\xd2\xe5\x97\x9d\xb8\x68\xf1\x88\x5e\x37\x2e\xda\x25\x93\xc4\x0d\xba\x64\x12\x48\x3e\x5d\x97\x5d\x32\xd9\x21\x93\xa5\x90\x5a\xd4\x25\x93\x40\x7a\xa1\x51\x97\x4c\x02\xe5\xbd\x74\xa1\x1b\x19\x05\xa6\x6b\x7b\x97\x5f\xf6\xf7\xdc\x29\x6b\x52\x97\x4c\x02\x69\x86\x45\x97\x4c\x02\x99\x0e\x2b\xb9\x24\xb0\x5c\x8d\xbb\x5c\x12\x98\x1d\x8b\xa9\xcb\x25\x81\xe5\x5e\xdd\xe5\x92\xdd\x28\xa8\x6d\x92\x4b\x02\x85\x2b\xe0\xb3\x4b\x25\x81\x5d\x31\x1f\xa6\x36\x1a\xac\x8b\x45\xa4\x1b\x05\x05\x16\xdf\x42\xcd\x6e\x14\x14\x68\x7c\x59\x35\xbb\x84\x13\xd8\x0f\xa3\x49\x32\x4e\x60\x69\x1e\x74\x03\xa3\x40\xfe\xfa\x4b\xf5\xd3\x1c\x1b\xd5\xaa\x39\x36\x08\x8c\x6a\x6c\x74\xa9\x6a\xe7\xd8\x69\x29\x18\x64\x5d\x12\x0a\x14\xdd\xcc\x5d\x12\xda\x25\xa1\xc5\x11\x2f\x09\x05\x96\x37\x82\x75\x49\x28\x5f\x7e\xde\xc5\x50\xb7\xa1\x46\x20\xbd\xbd\xc2\x0f\x3f\x0b\x69\x2a\x49\x37\xff\x19\x88\x82\x35\xd3\xe5\x88\x3d\x55\x24\x36\x6b\x97\xea\x01\xe9\x06\xd0\x65\x7a\x3d\x1d\x56\x90\xf2\x2e\xaf\x03\x32\xa1\x20\xdd\x58\x22\x90\xe6\x29\x75\x63\x89\x40\xa6\x33\xd6\x58\x62\x97\x10\x7a\xb0\xbd\x4b\x08\x81\xf4\x58\x78\x97\x10\x02\x4b\xc3\xa5\xcb\x07\x7b\xba\xf4\x61\xb2\x76\xb3\x91\x81\xa5\xe1\xe2\xf7\xad\x85\x5d\x8c\x7a\x48\x08\x81\xf4\xba\xae\x6e\xc8\xb1\xcb\x11\x8b\x6b\x9f\x1c\x11\x48\x6f\xd8\xea\x72\x44\x60\x69\x92\x74\x39\x22\xb0\xbc\xf1\xa7\xcb\x11\x81\xfd\x30\x65\xaa\x83\x4b\x92\x0e\x17\x4d\x23\x8e\xdd\x8f\x19\x3a\x7b\xe4\x85\x40\x18\x10\xec\xf2\x42\x20\xbd\x7b\xab\x4b\x0b\x81\xa6\x7b\xb6\x4b\x0b\x7b\x77\x58\xa5\xc5\xec\xcf\x0d\x4b\xeb\xa0\x9b\x6e\x0c\xec\x62\xbc\xc0\x20\x27\x90\xde\xd6\xd2\x0d\x72\x02\x8b\x6f\xf1\x66\x37\xc8\x09\xec\x5f\xd2\x51\x46\x39\x81\x69\xfa\x56\x97\x64\x76\xaf\x44\x2a\x90\xa8\x6e\x94\x13\x28\xfa\xfa\xbb\x51\x4e\x60\x17\xa3\xf3\x24\xa3\xc0\x98\xeb\x77\x1c\xd4\xea\x72\x55\x60\x99\xe3\xd6\x4d\x47\xee\xd2\x57\x2f\x8e\xed\xd2\xd7\x3e\x1c\x4f\xea\x41\x75\x49\x42\xf9\x06\x56\x76\x49\x28\xb0\xb4\xa1\xbb\x24\xb4\x93\x67\x5c\xf8\x6c\x55\x76\xc9\x24\x90\xa6\x66\x74\xe3\x96\x40\xa6\x5b\x8c\xf4\x12\x98\x1e\x98\xef\xd2\xcb\x3e\x1d\xea\xef\x0b\xec\xc9\xe9\x4e\x41\xd5\x8c\x5b\x02\xbb\x18\xea\x32\x6e\x09\x14\xa3\xc9\x5d\x32\x09\x34\x93\x6a\xba\x64\xb2\x2f\x77\x0a\x87\xa2\x11\x49\x20\xbd\xd1\xac\x4b\x1c\x81\x5d\x8c\x31\x20\x73\x04\x96\xa6\x59\x37\x22\xd9\x97\xdb\x82\xbb\x98\xcc\x11\x98\x5e\x3f\xdc\x65\x8e\xfd\xf4\xa5\x6e\xa6\x06\x11\x81\xa6\xf3\xba\x1b\x44\xec\xa7\xe3\x02\xe3\xac\x1b\x31\x04\x96\x4c\xa9\x4b\x09\xbb\x9f\x4e\x28\xee\x89\x72\x42\x60\x1a\x79\xe8\x86\x0c\xbb\xc4\xae\x38\x9b\x24\x76\xc0\x32\x35\xa3\x4b\xec\x80\x4c\x77\x70\x23\x7f\xfd\xb2\xba\x18\x51\x5d\x16\x07\x2c\xbe\x25\x9c\x5d\x16\x07\xcc\x6e\x35\x24\x71\xc0\xde\x4c\x69\x95\x2c\x0e\x58\x5a\xcc\x5d\x12\x07\x34\x6f\x3e\xeb\x92\xb8\xce\x3d\x41\xa5\xba\x14\x4a\xc5\x80\xfa\xb6\x53\x26\xd6\xfd\x9c\x42\x75\x95\x36\x58\x07\x2c\x19\x44\x37\x5a\x07\x2c\xd9\x42\x37\x5a\x07\xcc\x8e\x1b\xa7\x1b\xad\xeb\x44\xe6\x8a\x37\x2a\x74\x09\x1b\x30\x8d\x61\x77\x09\x5b\x27\x9d\xb7\x54\xd7\x77\xe9\x19\xb0\x4c\x74\xef\xb2\x33\x60\x99\x2d\xd7\x65\x67\x40\xf5\x46\x85\x6e\x3a\x6f\x97\xb0\x79\x57\x7c\x97\xb0\x01\xcb\xa0\x5e\x37\x34\xd7\x65\x67\x1e\x53\xe8\xb2\x33\x60\xbe\x2f\x90\x9d\x75\xbf\x05\x58\x9d\x68\x72\x31\x20\xbd\x71\xa9\xcb\xc5\x3a\x11\xb5\x52\xed\x64\x89\x17\x90\x5e\xc6\xd7\x0d\x99\x75\xb9\x58\x7d\x65\x36\xe1\xe3\x51\x2a\x5f\x6a\x13\x36\xb4\x77\x26\x4b\xc5\x80\xfd\x4b\x8b\xbd\x4d\x60\x3f\x75\x45\x93\x8b\x01\x55\xef\x5d\x97\x8a\x01\xe1\xd1\xd6\x2e\x15\x03\xa2\xba\x14\xc9\xc4\x80\x4c\x1f\x2f\x13\x03\xda\x70\xa4\x49\xc4\x80\xf2\x5e\x14\xdd\x65\x62\x40\x31\xe8\xd2\x65\x62\x9d\x1b\x84\x4a\xd5\x08\x91\x2a\x01\x99\xaf\xc8\x36\x3d\xb6\x09\x77\x73\x97\x3e\x01\xd1\x70\x52\x74\x83\x61\xfd\x71\x44\x12\x50\xe9\xf2\x23\xa0\x86\x4b\x80\xe9\xb2\x40\x31\xf1\xa4\xcb\x98\xfa\xd7\xea\x6a\xd2\x48\x99\x80\xe6\xd1\xbb\x2e\x63\x02\x32\x6d\x94\x8c\xa9\x73\xc1\x6b\xe1\x53\x3d\xd9\x4d\x7b\x05\xd2\x1b\x0c\xbb\x61\x34\xa0\x78\x29\x79\x37\x8c\xd6\x65\x51\x7c\xaa\x27\xbb\x2c\xaa\x7b\xc7\x8f\x2b\xa2\x2c\x0a\x68\xef\xd4\x96\x45\x01\x29\xd7\x1a\x92\xa8\x41\x3a\x6b\xf1\xaa\x9e\x61\x3a\xeb\xf0\x0b\xfb\x69\xb1\x50\xc4\x80\xc4\xcd\x3a\x0c\x8f\x0d\x89\x95\xf7\x06\x0c\x89\x15\x10\xde\x4e\x36\x24\x56\xc0\x92\xac\x0e\x79\x15\xd0\xf8\x94\x5a\x0e\x79\x15\x90\x5e\x4f\x3f\xe4\x55\x40\x7a\x1c\x7d\x98\xcd\x3a\xfc\xaa\x02\x76\xf2\x90\x69\x01\xbb\x16\xca\x3e\xca\x3e\xdc\x24\xec\x2f\x51\xc6\xe0\x76\xd7\x52\x31\x03\x87\x21\x33\x60\xf2\xe5\xca\x1c\x66\xa5\x02\x93\x8f\xcd\xe5\x90\x6a\x0d\x79\x55\xcd\xdf\x11\xb6\x1e\xd2\x2e\x60\xe6\xfb\x60\xb5\x50\x5c\x7f\x52\x99\x6a\xd8\x30\xf3\x7d\x99\x6a\x28\xae\x2c\x18\x54\x43\x92\x05\xa4\xa7\x7b\x86\x24\x6b\x70\x47\x6c\x31\x99\x67\xc8\xa8\x80\xd6\xb1\xa8\x86\x8c\x6a\xc8\xa8\xf8\x58\x4e\x0e\x19\x15\xd0\xcc\x34\x1d\x32\xaa\x51\xad\x1b\x36\xc2\x90\x2b\x01\xd1\xe0\x15\x43\xaa\x04\xa4\xc7\x86\x87\x54\x09\x48\x4f\x25\x0e\x43\x71\x43\xf6\x54\xd9\xec\x86\xec\x09\xc8\xc3\xce\x95\x3d\x01\xc5\x94\xc0\x21\x7b\x1a\x95\x78\x2e\x33\x69\x48\x95\x86\x37\xf4\xb0\x5a\x0e\xa9\xd2\x68\x6f\x9b\x68\x80\xc4\x08\xc8\x83\xd9\x3b\xe4\x45\xa3\x39\xbb\xb0\x41\x86\x5c\x06\xc8\xa3\xf9\x34\x1b\x00\x97\x31\x89\x77\x48\x65\x80\xd4\x6b\x3f\xa4\x32\xc3\x10\x1b\x1f\xfb\xc9\x61\x88\x0d\xa8\xfa\x6f\x87\xec\x06\xd8\xc5\x68\xba\xf4\x06\x08\xef\x3a\x1a\xb2\x1b\x60\x17\xa3\x05\xd2\x1b\x20\xf5\xdb\x0f\x43\x6c\x23\x5c\xef\xd9\x51\x86\x91\x32\xa0\x1a\x6a\x1e\x26\x6f\x8e\x70\xbd\x67\xe7\x1c\x46\xca\x80\xd2\xab\xc5\x6c\x95\xfc\x89\xef\x54\xe5\x90\x3f\x01\x79\xbc\xc5\xec\x16\x6e\xc9\xc9\xb7\x94\x0d\x0d\x3e\xaf\x6f\x7f\xca\x9f\x80\x62\xb4\x75\x18\x63\x1b\x7e\xad\x8f\xc5\x66\x18\x63\x03\xaa\x89\x58\xc3\x0c\xcf\x21\xa3\xaa\xec\xe9\x43\x46\x05\x54\xb3\x32\x86\x8c\x6a\xa4\x6d\x72\x02\xcb\x9f\x80\x2a\xff\x1b\xa6\x62\x02\x2d\x97\x2f\xb0\x49\xe9\x48\x43\xb5\x32\x2a\x60\xbd\x85\x6c\x51\xfa\xbd\x28\xab\x6f\x8b\xe0\x58\xde\x7c\x33\xa4\x58\x40\x78\x61\xd4\x90\x62\x01\xed\x70\x75\x93\x61\x0d\xe9\x94\x8e\xd4\x21\x9d\x02\xaa\xb1\xdc\x21\x9d\x02\x76\x31\x14\x2b\x9f\x02\x9a\x9f\xbd\x18\xf2\xa9\x21\x9f\xaa\xaf\x4c\x65\x6c\xc8\xe3\x7d\x9a\x03\xb9\x33\x90\xdf\x7a\xa8\x9e\x0d\xed\x9d\x89\xf2\x29\x20\x0f\x17\x76\xf9\x14\xb0\x9f\xef\xc3\xd4\x0f\x71\x36\x43\x29\xc3\x38\xdb\x90\x63\x55\xd7\x12\x39\x16\xd0\x0c\x46\x0f\x39\xd6\x18\x4e\x45\x4c\xcc\x21\x7b\x02\xd2\x33\xf7\x43\xf2\x34\x64\x4a\x8d\x5d\x7e\xc8\x94\x80\xf4\x68\xf1\x90\x29\x0d\x4f\x66\xba\xe2\x48\x94\x86\x1c\x87\x8f\xfe\xe4\x90\xe3\x00\x69\x80\x68\x18\xa2\x03\xd2\xd0\xd2\x90\xf6\x0c\x52\x38\xdf\xcb\xf2\x86\x51\x35\xa0\x98\xf3\x3b\x8c\xaa\x01\xd5\x78\xd6\x30\xaa\x06\x54\xaf\x71\x1a\x12\x21\x20\x8d\x70\x0d\x89\x10\x90\x87\x13\x51\x22\x34\xa6\x95\x2d\x16\xb3\xb2\x7c\x8e\xde\xec\x85\x21\x11\x02\xd2\x28\xd2\x90\x08\x8d\x65\x65\xb1\x9f\x86\x81\x30\xa0\xea\x77\x19\x32\x1c\x20\x0f\xd7\x7c\x19\xce\x58\xbe\x13\x9b\x70\x78\x22\x12\x28\x5e\x06\x3a\x0c\x70\x0d\xae\xaf\x79\x63\x63\xc3\x38\x15\x90\xef\x1e\xef\x51\x47\x20\x0f\x8c\x94\xe1\x49\x47\xa0\x78\x3c\x74\xc8\x79\x80\x68\xce\x1e\x39\x0f\x90\xde\x8a\x32\x4c\x9c\x1c\xd2\x20\x0f\xda\x0e\x69\x10\x50\xe5\xfc\x43\x1a\x04\xe4\xe1\x36\x20\x0b\x02\xf6\x2f\xd1\x90\x34\x08\x48\xe3\xda\xc3\x60\x19\xb0\x8b\x59\x0f\x9b\x4e\xb4\x2c\xc6\xef\x20\xd6\xc3\x58\x1a\x50\xde\xab\xf3\x86\xc1\xb4\xe1\x6d\x39\xb8\x5b\x86\x94\x0b\xa8\x26\x93\x0d\x29\xd7\xb8\xec\x34\xb7\x2b\x03\x67\x40\x1a\xfa\x1b\x52\x2e\x60\x17\x43\x83\x72\x2e\x20\x0f\x22\xb2\x43\xce\x35\x48\xa3\xfc\x75\x70\xca\xa6\x80\xd4\x1b\x37\x8c\x88\x8d\xdb\x97\x3a\xa7\xe5\x44\x40\x19\x2e\xa9\x72\x22\x40\x56\x3a\x8c\x6a\x8d\x5b\x6d\xd9\x45\xb2\x18\xa0\x7a\x6f\xcd\x90\xc4\x0c\x4e\x20\xbe\x17\xcf\x0d\xc3\x4e\xc0\xaf\x36\x84\x61\x27\x20\xfd\x6c\xd5\x30\x9d\x70\x7c\xac\x99\xfb\xa1\xc4\x06\x48\x1d\x9d\xc3\xb0\xd3\x90\xeb\x78\x45\xc9\x90\xeb\x00\xed\x55\x87\x5c\x07\x48\xef\xb5\x1c\x86\x9d\xc6\x47\x0d\xbd\x4f\x53\x43\x1f\x35\xe4\x3b\xd5\xd0\x87\x91\xf2\x3e\xdf\x91\x42\xc2\xe0\x81\xa3\x64\xc8\x7e\x86\x54\xc7\x9b\x6f\x86\x54\x07\x48\xbd\x22\x43\xaa\x33\x0c\x3b\xe9\x66\x1f\x72\x1d\x20\x4c\x9e\x18\x72\x9d\x61\xd8\xc9\x29\x2d\xd7\x01\x96\x19\x4f\x43\xae\x33\x9e\xb7\xe9\xe8\x56\x62\x03\xe4\xf1\x8a\x6c\xba\x8c\xc5\x33\x79\x43\xc6\x02\xa4\xc1\x95\x21\x63\x19\xc6\x80\x3c\x7a\x31\x8c\x01\x01\xa9\x9b\x61\x48\x62\x86\xf4\xc4\x33\x15\x43\x7a\x02\xa4\xb4\x77\x48\x4f\xc6\xb7\x5b\x8c\x37\x18\xbe\x01\xa6\xd7\x2e\x0f\xc3\x37\x40\x1a\xca\x1d\x32\x16\xa0\x9a\x75\x36\x64\x2c\x40\x7d\xf5\x2d\x63\x19\x32\x16\x2f\x7e\x1b\x32\x16\x20\x75\x53\x0f\x19\xcb\x30\xc8\xa3\x71\x3a\xe5\x27\x40\xea\x75\x9c\x06\x79\x80\x52\x4c\xc6\x9f\x46\x79\x80\xe6\x75\xac\x53\x16\x33\x39\x81\x57\x4c\x48\x9f\x72\x16\x60\xaa\xf0\x29\x65\x01\x4a\x32\x33\xa6\x94\x05\x48\xcf\xc4\x4e\x29\xcb\xe4\xc2\xd1\x62\x76\xd0\x94\xa0\x00\x53\x36\x32\x25\x28\x40\xea\xbe\x9d\x12\x94\x29\x41\x31\x6f\x7d\x4a\x50\xa6\x77\x90\x0e\xdf\x49\xdb\x27\x17\x8e\x96\xe6\x4b\x4d\xf3\x03\x9a\xf1\x8a\x29\x67\x99\xe5\x6d\x14\x2d\x30\xf2\x03\x14\x79\xc4\x94\x81\x4c\x03\x3f\x6c\x1f\x53\x06\x32\xb9\xfa\xa6\x98\x45\x3e\xa5\x1b\x40\xea\x95\x9b\x5e\x7d\x33\x39\x10\x57\xe2\xfd\xa9\xd5\x2d\x38\xa5\x55\x6e\x79\xab\xcb\xf5\x5e\xef\x3b\xbf\x8a\xfc\xdc\x36\x7b\xee\x94\x81\x00\x69\x80\x68\x9a\x33\x38\xcd\x19\x6c\x96\xb2\x51\x5c\x2f\x5a\x0c\xa7\x4f\x49\x09\x50\xcc\xb8\x9b\x86\x79\x26\xc9\x80\xc5\x23\x29\x53\x06\x02\x54\x2f\x2e\x9a\x32\x90\xc9\xed\x9f\xc5\x2c\xe9\x69\x18\x06\x98\x9e\xdf\x9b\x72\x0b\x20\x8a\xed\x94\x5b\x00\xc3\xd3\xf9\xd3\x30\xcc\x34\xe6\x62\xd2\xfe\x94\x5b\x00\xc3\x3b\x30\xa6\x31\x17\xa0\x78\xe5\xff\x34\xe6\x32\xc3\x5f\xb2\x37\x4f\x73\xe4\x80\xd4\xab\x3e\xcd\x91\x9b\xda\xef\x66\x3d\x4e\xed\x77\x60\xea\xb3\x9d\xda\xef\xc0\x32\x9d\x6c\x6a\xbe\x03\xcd\x8b\xc6\xa7\xe6\x3b\xd0\xf3\xfd\xa1\x1d\x65\x8e\x9c\x99\x74\x53\xfb\x1d\x58\x5e\x81\x3b\xb5\xdf\x81\x5d\x8c\xda\x6a\xc0\x03\xed\x6d\x94\x06\x3c\xb0\xcc\x18\x9c\xa6\xcd\x4d\x83\x29\xa6\x0c\x4e\x83\x29\x40\xf3\xd4\xd1\x34\x98\x32\x35\xfd\xcd\x9b\x9b\x9a\xfe\xc0\xcc\x91\xbf\xbd\x5f\x4f\x99\x01\xd0\xcc\xee\x9b\xc6\x5a\xa6\x29\x74\xa6\xf7\x4d\x2d\x7c\xa0\x49\x33\xa6\x16\xfe\x34\x3c\xa2\x3f\x67\x6a\xbc\x03\xd3\x0b\xac\xa7\xe1\x91\xa9\x3d\xff\x8e\x3b\xed\x79\x60\x99\xc5\x38\xb5\xe7\x81\x34\xd2\x37\x35\xe7\x27\x37\xa8\xf8\x59\xf3\x9c\x9a\xe0\x40\xf3\xdc\xe5\xd4\x04\x07\xd2\xa8\xff\xd4\x02\x9f\xe6\xb0\x99\xe8\x32\x0d\x2f\x4c\xef\x9e\x54\xd1\xda\xcc\x73\x38\x81\xed\x70\x03\x03\xc0\xf4\xe0\xc9\x34\x30\x30\xcd\x4e\x33\x5f\x6a\x9a\x9d\x06\xa4\x89\x79\xd3\xec\xb4\x69\x60\xc0\x44\x94\x69\x60\x00\x48\xfd\xc3\xd3\xc0\x00\x90\x46\x90\xa7\x76\x34\xb0\x7f\x69\x31\xd5\x86\x21\x5d\xdf\x87\xa9\x35\x43\x0a\x26\xa2\x4c\x2d\x69\xa0\xfd\xfa\x4e\x5b\x35\x6d\x95\x6b\x90\xc9\x68\x40\xea\x0c\x9e\x26\xa3\x01\x63\xbe\xbf\x54\xb9\x9a\xcd\xa6\x5e\x4c\xcd\x66\xa0\x35\x7c\x14\x53\xb3\x19\xa8\x06\x13\xa7\x66\xf3\xd4\xe3\x6f\x76\xcd\xd4\xe3\x0f\xb4\xd2\x7c\x98\xef\x5c\x18\x0e\xd3\x5f\xbe\xef\x84\x46\x7b\xfd\xf5\xd4\xba\x06\xa6\xe7\x33\xa7\xe9\x63\xc0\x2e\x46\x0b\xcc\x1f\x03\x22\x5c\x82\x4c\x1f\x03\xe2\x9d\xd4\x9a\xe5\xd3\xb8\x80\x39\x07\x53\x8b\x18\xa8\x5e\x07\x35\x35\x88\x81\xe2\x07\x16\xa6\x06\xf1\x34\x54\x60\x40\x7a\x6a\xb7\x02\x63\x39\xd1\xb5\x5b\xa7\x71\x01\x43\xd9\x53\x23\x15\x18\x9e\x21\x99\xda\xa8\xf3\x7a\xb3\xf7\x79\xa9\x89\x56\xc0\x7c\x5b\xa0\x77\x1f\xc8\x03\x62\x31\xf5\xee\x03\xfb\x97\xb4\xca\x13\x3b\xc0\xf4\x1e\x80\x69\xee\xd5\xbc\x35\x9a\xb0\xa9\xa7\x1e\xff\x79\xbf\x07\xef\x10\xd9\xa1\xba\xf7\x8d\xeb\x4c\xdd\xfb\x40\xea\x81\x9e\xba\xf7\x81\x5d\x8c\x96\x9a\x90\x05\xcc\x4c\x9f\xa6\x26\xf5\xc8\xeb\xcf\x9e\x7a\xe4\x81\x34\x81\x74\x6a\xb8\x02\xdb\xa0\xe3\x69\x5a\xae\xc0\xec\xce\x0d\x0d\x57\x60\x17\xf3\x69\xd6\x8d\x8c\x29\xaf\x25\x99\x5a\xae\x53\xcb\xd5\x2f\xc9\xcc\xcf\x5b\x11\x3e\x70\xe5\x2e\xae\xe5\x0a\x4c\x3e\x51\x9f\x53\xcb\x15\x58\x7e\x67\x68\x6a\xb9\xce\x8f\xda\x75\x51\xd6\x4c\x05\xa6\x57\xbe\x4f\xad\x54\x60\x56\xdb\xae\x95\x0a\x2c\x09\xfc\xd4\x4a\x05\x4a\xf1\xbb\x2b\x53\x33\x15\x98\xcb\x9a\xe9\x92\x9f\x5a\xae\x7e\x51\x65\x6a\xb9\x02\x4d\xf7\xfb\xd4\x72\x9d\xcf\xb4\x18\x03\xd0\x1c\x27\x60\x78\xc2\x70\x9a\xe3\x34\xf5\xdc\xf3\x61\xe3\x9c\x7a\xee\x81\x66\x7a\xe1\xd4\x73\x0f\x34\xfd\xea\x53\x33\x18\xd8\xbf\xf4\xa5\xb6\x9d\xef\xb0\xe9\xea\x9a\x9a\xc1\xc0\x9c\x6e\xb2\x9a\xc1\x40\x6b\xaf\xc8\xb6\x7f\xed\xe3\x50\x66\x43\xbf\x1e\x79\x53\x64\x3b\xbf\xf0\xd8\x74\xdb\xd0\x73\x0f\x14\x0f\x99\x4c\x8d\xe5\xa9\x33\xff\xb5\x22\x35\x8d\x81\x78\x77\x71\x4d\x63\x60\x7a\x64\x65\x6a\x1a\x4f\x4d\x63\x73\x91\xa6\xa6\x31\x30\x25\xff\x53\xd3\x78\x6a\x1a\x3b\xe3\x97\xa6\xf1\xd2\x0e\x4e\x3c\x02\x4b\x3b\x18\xc8\x0e\x73\x5a\xda\xc1\x40\x29\xf9\xca\x42\x59\x90\x2c\x5b\x10\xa5\x22\xa7\x50\x57\x36\x94\x79\x83\xe2\x40\x34\x15\x59\xdf\xfe\x3b\x32\xcd\x96\xd6\x2e\x50\xbc\x9d\x61\x69\xed\x02\xfb\x29\x56\xfd\xab\x8c\x0b\x2d\x89\x31\x2e\x53\x9f\x56\x79\xab\xae\xcc\xaa\x17\xbe\xcb\x9f\x8a\xac\xfa\x86\xf6\xab\xa8\x2b\xea\x3f\x7f\x34\xf3\xa8\x96\x06\xf0\xd2\x00\xf6\x63\x24\x4b\x03\x18\x08\xc3\x71\x4b\x03\x18\x28\x9a\x55\xcb\xcc\xa7\xa5\x57\xde\x0f\x90\x2c\xbd\xf2\x40\x18\xfe\x5f\x9a\xc9\x4b\xaf\xbc\x86\xf8\xd2\x28\x06\x8a\xdf\xa9\x5c\xda\xc4\xab\xda\x6d\x8c\xc6\xa5\x05\x0c\xcc\xb7\x3f\x74\xd4\x2f\x8d\x62\xbf\x36\xb2\x34\x8a\x81\xec\x36\x54\xa3\x18\x48\x6f\xd9\x5e\xde\x12\xb1\x4c\x87\xf2\xd3\x22\xcb\x74\x28\xa0\xe8\x7b\x59\xba\xf8\x97\xe9\x50\x7e\x5a\x64\xe9\xe3\x07\x5a\x0f\x9f\xa6\x3e\x36\xb4\x5f\x4b\xa9\x0f\x7c\xfc\xde\xca\xbc\x74\xf1\x03\xfb\x61\x28\x57\x1f\xff\xf2\x66\xfe\xb7\xed\xf6\x3b\x17\x49\x9a\x1c\xb6\x34\xcd\x81\xe2\xc5\xdb\x4b\xd3\x1c\xd8\x0f\x0b\x64\x45\x99\x77\x33\xa2\x0d\x6d\xf3\xd5\x5e\x0d\xd1\x2d\xda\xe6\x40\xf3\xf0\xc4\xd2\x36\x5f\xed\x55\x07\x8d\x32\xfb\x09\x88\x82\x81\xba\x4c\x7e\x02\xaa\xdf\x48\x5d\x06\x0c\x80\x5a\x8a\xcf\x57\x1b\xcd\xd1\xe1\xf3\xd5\x86\xe7\x74\xd2\x81\x6b\xc4\x00\x48\xdd\xbd\xcb\x73\x3a\xcb\x20\x42\xbe\x2d\x50\x1d\x8d\x95\xdb\x41\x64\x10\x61\x99\x0f\x65\xf0\x6a\x19\x31\x00\x52\xaf\xf0\x32\x60\xb0\x0c\x18\xb0\x44\x2c\x03\x06\x4b\xc2\xe1\x57\x5b\x96\x84\x63\xf9\xa5\x3a\xbb\x5d\xc2\xb1\x8c\x2b\xe4\xf2\xa7\xaa\x83\x3b\x28\xe5\x81\xcb\xb8\x02\x50\xdf\x99\xe1\x99\x1c\xa0\x74\x67\x81\x4c\x05\xd8\x0f\xb3\x6a\xea\x83\x50\xc3\x3b\x22\xa5\x2a\x2b\xde\xb6\x2b\xb3\xed\xc4\x15\x24\x1c\x2b\xde\xb6\x6f\x7b\xa8\x3b\xdb\xe5\x25\x2b\x5f\x75\x28\x53\x1d\xf0\x92\x03\x1b\x6c\xc9\x4b\x96\x24\xc4\x3b\x5b\x96\x24\x64\xf9\x89\x67\xd7\x33\x49\x08\x90\xfa\xb5\x97\x67\x77\x80\x6a\x8e\xc8\x92\x96\x00\xcd\xef\xb0\x2d\x79\x07\x90\xed\x7d\xbc\xda\x30\x48\xd1\x0f\xab\xa1\x3a\x36\x64\x7d\x2b\xab\x36\xcc\xde\xf2\x1b\x36\xcb\xd0\x02\x50\x4c\xb3\x5d\x86\x16\x96\xf4\xc4\x0f\xb2\x2c\xe9\x09\xd0\x4c\x42\x59\xd2\x93\xc5\x15\xfd\xc5\xb4\xea\x25\x17\x01\x96\xab\x9a\x54\x64\x71\xe7\x63\xf1\xeb\x28\xcb\x98\x01\xb0\xf4\x6a\x2e\x63\x06\xc0\xf0\x1e\x88\x25\x61\x59\x9e\xcd\xf1\x06\xac\x25\x63\x01\xe6\x3b\x86\x64\x2c\x40\x79\x3f\xfd\xb3\x0c\x1a\x2c\x6f\xe8\x6f\xd6\xd6\xfe\x34\x40\xe0\xa7\x50\x96\x01\x02\xa0\x7a\x62\x7f\x19\x20\x00\xaa\x77\x09\x2c\xe9\xcf\x32\x66\xe0\x77\x49\x96\xfc\x07\xa8\xde\x9e\xb4\x8c\x19\x2c\xb3\xab\xba\xeb\xa6\x41\x03\xa0\x96\xf0\x97\xb6\x7d\x43\xf3\x93\x56\x4b\x96\xb4\xb8\x30\xa2\xf8\x45\x93\x65\xd0\x00\x28\x7e\xc9\x72\x49\x9c\x16\x37\xf4\x17\xbf\x68\xb2\xa4\x44\x40\x97\x03\x2f\x29\x11\xd0\x2a\x2e\xb5\x25\x23\x02\xba\x3e\x93\x25\x23\x02\x9a\x77\x0f\x2f\x09\x11\xb0\x9f\xaf\xcc\x76\x4e\xbe\x59\x65\xcd\x8c\x2d\x00\xc5\xab\xb5\x97\x49\x56\x40\x1d\x0e\x2b\x69\x13\xb0\x1f\xc6\xe0\x90\x37\x01\xad\x46\xfc\x8e\xdd\x5a\x5a\xb5\xfc\xfa\x9c\x81\xaf\x65\x84\x02\xe8\x32\xe0\x65\xa6\xd6\x92\x7d\x75\x1c\xfc\x4b\xf6\x05\x14\x0f\x28\x2f\xd9\x17\x50\x0b\x34\x62\xc9\xbe\x96\x57\x42\x7a\x63\xec\x32\x07\x0b\x88\x82\x25\xbd\xbc\x15\x02\xe8\x5e\x71\xbe\x3c\xe2\xb3\xe4\x6d\x9d\xf0\xde\x92\xb7\x01\xd5\xef\x86\x2c\x79\xdb\x5a\x6f\x0b\xd0\x83\x8c\x0c\x98\x5e\x03\xb4\xd6\xdb\x82\x87\x17\xf8\x4e\x07\xac\x39\x5e\x26\x9b\x2d\xe3\x1d\x40\xf7\x8c\xe1\x32\xde\x01\x74\xbf\x10\xb0\x8c\x77\x00\xcd\x3b\xd2\x97\xe1\x8e\x25\x95\xf3\x0a\x88\x25\x95\x03\x7e\xd5\xad\x54\x6e\x6d\xfa\xd6\x3d\xa0\xb7\x8c\x63\x00\xdd\xcb\xf0\x96\x81\x8a\x25\xbb\xeb\x61\x31\x1b\x40\x54\xc2\x6b\x86\xd6\xf9\x36\xe0\xcb\x2f\x29\x65\x22\xd8\x32\x50\xe1\x37\x42\x96\x81\x0a\xa0\x4b\x3c\x97\x1c\x70\x79\x00\xc7\xdc\xaa\x65\xb8\x01\xa8\x7e\xd9\x62\x79\x00\x67\xc9\x0b\xfd\x36\xc7\x92\x17\x02\x4d\xa7\xea\x92\x17\x2e\x49\xe0\x6b\xa9\x48\x02\x81\xee\xfd\x8f\x4b\x12\xb8\x6e\x87\x82\x6b\xb4\x54\x0e\xa8\xe6\x3a\x2e\x99\xdc\xf2\x92\x45\xbf\xa5\xbf\x4c\xcb\x02\xba\x89\xdb\xcb\x80\x06\xd0\x3c\xe5\xbe\x0c\x68\xac\xdb\xd5\xd7\x8d\xde\x50\x05\x50\xbd\x7a\x75\xc9\x01\x81\x32\xad\x9a\x1c\x10\xe8\x9e\xfc\x5c\x52\x40\x20\x64\x50\x4b\x0a\x08\x34\x53\x48\x96\x0c\x70\x99\xa7\xf5\x6e\x93\xe6\x69\x01\xfd\xc0\x89\xb8\x64\x80\x40\x37\xd8\xb6\x64\x80\xcb\xd4\x2d\x2f\x66\x5b\x52\x40\x20\x8a\xbb\xa4\x14\x70\x79\x8c\xc6\x5b\xc0\x96\xb9\x5b\x40\x7d\xed\x19\xe3\x19\x40\xf7\xc8\xe8\x92\x28\x2e\x0f\xbe\xbc\x86\x9b\xe4\x0e\xe8\x86\xd6\x96\xdc\x0e\x28\xa5\x6b\x7e\x49\xee\x80\xaa\xdf\x63\x79\xf2\x65\x79\xcc\x45\x4a\xbc\x3c\xe6\x02\x44\x79\x5f\x60\xab\x1e\xab\xab\xf9\x25\xb9\x03\xaa\x01\x8d\x25\xb9\x5b\x32\x28\xbf\x81\xb6\x64\x50\x40\xd7\x6d\xb5\x64\x50\xcb\x5b\x05\x4c\x19\x5b\x52\x28\x20\x4c\x8c\x5b\xde\x2a\xb0\xb8\x2f\xa0\xbc\xcb\xa3\xc9\x4f\x40\x38\x83\x4e\x19\x14\xb0\x8b\x75\x64\x45\x19\xb7\x12\x33\x72\x4f\x49\xd5\x69\x8e\x94\xdf\x95\x38\x65\x55\x40\x1b\x55\x51\x28\x32\x74\xac\x28\x15\x75\x5a\x50\x10\x0d\x45\x83\x84\xc8\x8a\x68\x2a\x72\x2c\x04\xa2\xa5\xc8\xa6\x5b\x8b\x53\xd1\x65\x2d\x6c\xc0\xad\xec\xa6\x98\x22\x14\x79\x1a\x48\xf0\x9c\xc6\x69\x20\x01\xe8\x26\xe0\x9c\x06\x12\x80\x5d\x8c\x97\x9a\xfd\x04\x74\xf3\x68\x4e\xd9\xd6\x69\xde\x92\xb7\x74\x9f\xe6\x2d\x01\xd5\xfb\x5e\x4f\x79\xd4\x29\x43\x1a\x8c\xf0\x53\x86\x04\x54\x59\xd9\x59\xde\xba\xd9\x2d\xd5\x8a\x7c\x95\x71\x6b\x8d\x2d\x95\x21\x9d\x7e\x81\x8c\xe9\x7e\x1a\x35\x38\x4d\x65\x32\xb7\xfa\x94\x21\x01\xdd\x9c\x87\x53\x82\x04\xec\x62\x74\xa8\x0c\x09\x78\x99\xc9\x29\x43\x3a\xa5\x3e\x6f\xef\x49\x7d\x80\xea\x3d\xd9\xa7\xd4\xe7\x94\x87\x78\x2c\xf9\x94\x87\x00\x61\x32\xc3\x29\x0f\x01\xfa\xf1\x96\xb2\x6a\x52\x13\x6f\xd8\x3d\xa5\x26\x40\x37\x7f\xea\x94\x9a\x00\xbb\x18\x2d\x35\x6e\x00\xb4\xf2\x7b\x3e\x64\x7d\x4a\x66\x4e\x09\x88\xd7\x6d\x9f\x12\x10\xa0\x1f\xaf\x48\xe5\x9b\x9e\xe4\xbd\xf8\xa7\xe9\x49\x40\x37\x25\xea\x94\x6c\x00\xd3\x0c\xb4\x53\xb2\x71\x7a\x8e\xdf\x3b\xcc\x4f\xcf\xf1\x03\xed\x78\x1f\x66\x3d\x3c\xc7\xef\xa7\xd8\x4e\x39\x03\xd0\xbc\xa4\xfc\x94\x33\x00\xdd\x00\xd0\x29\x65\x38\x3d\x67\xef\xd7\x21\x4e\x6d\x75\xa0\x9b\xca\x73\x6a\xab\x9f\x9a\xdc\x7e\x22\xe1\xd4\xe4\x06\xaa\xf9\x20\xa7\x26\xf7\xa9\x2d\xed\x05\x0e\xa7\xb6\x34\xd0\x4d\xb0\x3a\xb5\xa5\x4f\x73\x72\x5c\xbc\x4f\x2d\x67\x60\x78\xd1\xcb\x69\x4e\x0e\xd0\x4d\x4b\x3b\x4d\xc9\x39\x3d\xe8\x3e\x86\x2f\xb0\x1e\x1c\x74\xf7\xe8\xf8\xd9\xdf\x7a\xdc\x16\xa3\x13\xb4\x9c\x81\xe5\x15\xaf\xa7\x86\xf3\xe9\x81\x03\xaf\x55\x3b\x35\x89\x81\x30\x6d\xf5\xd4\x24\x06\xba\x49\x3f\xa7\x16\x31\xd0\x3c\x96\x70\x6a\x11\x03\xdd\x5c\x98\x53\x83\xf8\x1c\xd6\x96\x05\xf8\xd4\xfc\x05\xfa\xab\x35\x13\x6b\xce\xe1\xdc\x84\xc6\x9e\x06\x09\x80\x78\x67\x98\x31\x82\x53\xbb\xef\x9d\x27\xda\x7d\xa7\x9f\x1d\xc6\x85\x75\x6a\xf7\x9d\x8b\x97\x7a\x15\xfd\xa9\x5d\x06\x54\x2f\x10\x3c\xf5\xa7\x03\xfd\x1d\x45\xba\xd3\x4f\x0f\x50\x4f\x6c\x98\xd3\x34\x11\x60\x99\xbc\x7d\x6a\x49\x9d\x1e\xa0\x36\x31\xf6\xd4\x05\x7e\x6a\x4a\x11\x62\x3a\x35\xa5\x4e\xad\x1f\xef\xab\x3e\xb5\x7e\x4e\xad\x1f\xa2\x32\xa7\xd6\x0f\xd0\xbc\x05\xf4\xd4\x03\x7e\x7a\xbe\x79\x3a\x00\x4d\xd3\x00\x7a\x92\x83\x70\x9a\x19\x7f\x9a\xb9\xe1\x77\x58\x4e\x33\x37\x80\x6e\x3e\xcc\xa9\x29\x75\x7a\x22\xd9\xeb\xa4\x4f\x3d\xe5\xc0\x34\x19\xeb\xd4\x46\x3a\xb5\x91\x9c\x68\xda\x48\xa7\x8e\x72\xaf\x80\x3e\x75\x94\x03\xd5\x8f\x63\x9f\x3a\xca\x81\x26\xb5\x3d\x4d\x03\x39\x3d\x7e\xec\x87\x75\x4e\x13\xdc\x81\xea\x09\xd9\x53\x4b\xea\x34\x9b\x7d\x3a\xf9\xb4\x9b\x80\xe6\x47\xfb\x4e\xb3\xd9\x4f\x33\x3c\xbc\x6b\xe8\xd4\x48\x3a\x35\x92\x9c\x2e\x1a\x49\xa7\x19\x1e\x7e\xe4\xe6\xd4\x4a\x02\xba\xdc\xf3\xd4\x4a\x3a\x3d\x59\xec\x65\xbb\xa7\x8e\x72\xa0\x9b\x0c\x74\x6a\x38\x01\xcb\x93\x02\xa7\x86\xd3\xa9\xe1\x84\x01\x7a\x6a\x38\x9d\x5a\x44\x5e\xc9\x7b\x6a\x11\x01\xdd\xfc\xa6\xf3\xf3\xb6\xe0\x6b\x31\x5a\xa0\x57\x1c\xe8\xa6\x63\x9d\x7a\xc5\x81\xe2\xa1\xfe\x53\xa7\xf8\xa9\xe1\xe4\xc7\xeb\x4f\x0d\xa7\x53\xc3\xc9\x41\xaf\xe1\x74\x3e\x6f\xa3\x78\xa9\x56\x12\xd0\x75\xa1\x9e\x9e\x0f\x3e\x75\x94\x7b\xe1\xc0\xa9\x95\x04\x54\x9d\xd6\xa7\x8e\xf2\x53\x47\xf9\x74\x7a\xeb\x28\x07\xba\xc9\x7a\xa7\xb6\xd4\xf9\x75\x7c\xb8\x8c\xe9\xdc\x06\xba\x09\x3a\xa7\x89\xea\xa7\xe7\x78\x3d\xa0\x70\x9a\xf6\x01\x2c\xbf\x67\x7f\xea\xdb\x3e\xb5\xaf\x8c\x66\x9d\xda\x57\xc0\xaa\xd0\x91\xf3\xfb\xbe\x54\x55\xb2\xa6\x5c\x1a\x53\xc0\xf2\xb6\xf8\x4b\x5b\xea\xf2\x50\xad\x37\xca\x5e\x1a\x3b\xc0\xf2\xbc\xc6\xa5\xb1\x73\x69\xec\x74\x45\xa7\x22\xeb\xb1\x7c\xda\xa5\xcc\x7a\x04\xa2\x5b\xd1\xfd\xf3\xc7\x34\x88\x7f\x69\xff\x5c\xe5\xfd\xe2\xc0\x6e\xe8\xa5\x37\x18\xe8\xa6\xa4\x5c\x7a\x83\x81\xae\x77\xe8\xd2\xae\xb9\x74\x10\x2f\x5b\xa0\x61\x03\x2c\xcf\x31\x5c\x3a\x88\x2f\x6e\xf9\x7d\x63\x3c\x97\xe6\x09\xb0\x6a\xf9\x1d\x91\xec\x4b\x8f\xef\x65\x32\x83\xb7\x47\x5e\xf5\x7d\xf2\xc9\x53\x14\xd9\x66\xbc\xa3\xef\x85\x8f\x97\xee\x51\x60\x6a\x5b\x5c\x5a\x25\xc0\x2e\x46\x9d\x34\x4b\x2e\xcd\x12\x36\xcb\x4b\xb3\xe4\xd2\x2c\xd1\x49\x73\x69\x96\x00\xe1\xd5\xba\x97\x66\xc9\xa5\xc7\x74\xb1\x68\x5e\x1a\x19\x40\x37\x99\xeb\xd2\x63\x0a\x4c\xaf\x4a\xb8\xf4\x98\x5e\xda\x18\xde\x97\x78\x69\x63\x5c\xda\x18\xcc\xba\x4b\x1b\xe3\x32\x1b\xd9\xcb\x7c\x2e\x7d\x84\xc0\xf2\x4b\x7c\x97\xe9\x0c\x57\xf8\x34\x16\x8e\x4b\x87\xe0\x65\xa2\x31\x8b\xc4\xa5\x3f\x10\xe8\x26\xdd\x5c\xfa\x03\x2f\xef\xf7\xf1\x12\xb4\xcb\x44\x05\xa0\x9b\x74\x73\xe9\x22\x04\xaa\xb9\x2e\x97\x66\x07\x10\xed\x7d\x98\xa3\xc7\xd4\x85\xc5\x74\xba\xf4\x11\x02\x21\xbf\xbd\xf4\x11\x02\xc5\xab\x9e\x2f\x7d\x84\x40\xcb\xb7\xb2\xf6\x71\xb2\x47\xb1\x92\x5c\xda\x2b\x40\x0c\xfb\xce\x3c\x66\x20\xfa\xdb\x70\x95\x91\x5c\xf4\x17\x96\x7a\x14\x3d\x56\xcc\xe7\x7f\x95\xf1\xe9\x15\x5b\xa9\xbb\xf1\xd2\x1e\x5a\xac\x41\x97\xf6\xd0\xa5\x3d\xc4\xda\x72\x69\x0f\x01\xf5\x58\x96\x52\x3f\xb8\x1b\xfd\xb8\xc6\xa5\xb7\x11\xe8\x92\xfd\x4b\xa3\x09\x08\x17\xa5\x4b\xa3\xe9\xd2\x03\xe9\x85\x70\x97\x1e\x48\xa0\x78\xdd\xf1\xa5\xd1\x04\x54\x99\xec\xa5\xd1\x04\x4c\xaf\xc5\xbf\x74\x40\x5e\x5e\x0e\x84\xc3\xed\xd2\x8c\xba\xba\x23\xc3\xe9\x6b\x3a\x32\xd0\xbc\xc9\xe4\xf2\xc4\x27\x90\x26\xaa\x5f\x9e\xf8\xbc\xf4\x49\x2e\x07\xb2\x3e\x49\xa0\x9b\xfa\x77\x69\x80\x5d\xe6\x64\x78\x55\xdd\xa5\x05\x06\x94\xee\x78\xd7\x02\xbb\x74\x40\x7a\x2f\xdd\xa5\xbd\x05\x4c\x59\xfc\xa5\x03\xf2\xd2\x04\xf3\xc2\xb9\x4b\x13\x0c\x68\xf5\x7d\x81\x6d\xd7\x29\xe9\xbd\xb0\x97\x4e\x49\xa0\xba\x13\x5f\x3a\x25\x2f\x2d\x35\x6f\x97\xbb\xb4\xd4\x80\xe9\x61\x81\x4b\x4b\x0d\x48\x6f\x08\xbd\x74\x5d\x02\xd5\xfb\x6f\x2f\x5d\x97\x97\xd9\x1c\x5e\x42\x77\xe9\xbb\x04\x9a\x51\xb7\x4b\xdf\x25\x90\x5e\x5a\x78\xe9\xbb\x04\xc2\xdb\xe5\x2e\x5d\x97\x97\xf7\x0f\xe9\x8c\xbe\xf4\x5d\x02\x61\x26\xf6\xa5\xef\x12\x68\x5e\x13\x73\xe9\xbb\x04\xde\x11\xaa\xe7\xf2\x32\x9f\x7a\x0d\xeb\xaf\x82\xc8\xa7\x36\xca\x7f\x99\x4f\x0d\xb4\xf1\x3e\x4b\x95\xcd\x57\x3f\x56\x56\xfd\xf0\x0d\xd2\xc5\x3e\x7f\x79\x8a\xf4\x5a\x6f\xcb\x79\xa9\x66\x2b\x90\xde\x66\x7a\xe9\xae\xbc\x3c\x45\xea\x15\xeb\x97\xa7\x48\x81\xf4\x1c\xfb\xa5\x07\x13\xd8\xc5\xe8\x14\x5d\x98\x40\x78\x79\xfd\xa5\x0b\x13\x28\x7a\xb7\x2e\x3d\x98\x40\xe4\xfb\x43\xdb\x4e\x5e\xb7\x27\xdb\x2f\x2d\x65\xa0\x0d\xac\xc0\x4b\x4b\x19\x08\x43\x17\x97\x6e\x4e\xe0\xbd\x72\xea\xd2\xcd\x09\xb4\x77\x8d\xd3\xcd\x79\x99\x0f\xbe\x1c\xc9\x26\x9e\x00\xef\x39\x86\xcb\x7c\x70\xa0\xf9\xdd\x84\xcb\x7c\x70\xa0\x7a\x39\xf5\xa5\x7f\x14\x08\x79\xda\xa5\x7f\x14\x68\x5e\x62\x78\xe9\x1f\x05\x72\xbd\xa5\xd4\x18\xe9\xe0\x3a\x95\x2f\xed\xfc\x4b\xa3\xde\x8f\x95\x5d\x1a\xf5\x40\x7b\xc7\xac\x46\x3d\x50\xfc\x48\xd4\xa5\x7f\xf4\x3a\xdf\x26\xd1\x25\x7a\x3e\x81\x30\xea\x7f\x79\xdb\xd1\x65\xf6\xcb\x5a\xbf\xe3\x93\xd6\x97\xd4\x00\x28\x7e\x7d\xf3\x92\x1a\x00\x51\xa0\x23\x97\xcc\x00\x68\x5e\xef\x78\xc9\x0c\x80\xea\x75\x16\x97\x67\x66\x2f\xc9\x82\x07\x02\x2e\xc9\x02\x90\xcb\x2e\x93\x2c\x00\xad\xba\xac\xeb\x77\xbd\xe4\x0f\xcb\xfe\x91\x3f\x00\xd5\x5b\x43\x2f\xf9\x03\x50\x8a\x0b\xb6\xfc\x01\x68\xe9\xf3\x3d\x6c\x7b\x99\x46\xee\x3d\x85\x97\xfc\x01\xa8\xaf\x25\x25\x7f\xb8\xbc\x1e\xc9\x94\x94\xcb\x44\x72\xa0\x16\xfc\x6a\x97\xe9\x38\x40\x78\x6c\xf4\xd2\x87\x0b\xd4\xa1\xce\xf4\xe1\x02\xd5\xe4\xa1\xcb\x6c\x9c\x4b\xe2\x61\xae\xc9\x25\xf1\x00\xca\x28\xbe\xd2\x66\xe2\xc3\xad\xa6\x2b\x5e\xfa\x70\x81\xaa\x93\xee\xd2\x87\x0b\xec\x62\x34\x4a\x7e\x02\x14\xef\x6f\xbf\xe4\x27\x40\x34\x6b\x2b\x3d\xb9\xc8\x06\xff\x75\x24\xca\x15\x80\x66\xf2\xc6\xa5\xf7\x14\xa8\x1e\x1b\xba\x4c\xb3\x01\xde\xf3\xce\x97\x84\x02\x28\x55\xc7\xf1\x25\xa3\x00\xca\xfb\x4b\x19\xc5\xe5\xc7\x4c\x71\x0c\x5e\x12\x0a\x60\xff\x92\x6a\xc8\x28\x80\xf4\xfa\xbc\x4b\x4f\x2c\x50\xd3\x55\x4b\x8e\x01\x4c\x6f\x9b\xb9\xe4\x18\xc0\xf4\xa2\xb9\x4b\xdf\x2c\x10\x81\x13\xf0\x92\x75\x00\xd3\xab\x96\x2e\x59\x07\xb0\x6b\x41\x0f\xc8\x3a\x80\x69\x52\xc9\x25\xeb\x00\x66\x71\xf7\xd2\x83\x0b\xec\x5f\xd2\x29\xa6\xe7\x00\xe9\x5d\xc4\x97\xe9\x39\x40\xa9\xc6\x01\x2e\xf3\x73\x80\xf4\xae\xe6\x4b\x0a\x73\xc1\x57\xaa\xae\xd3\x4b\xbe\x02\x0c\x3d\x03\x97\x7c\x05\x18\x7e\x77\xeb\x32\x17\x07\xd8\xbf\x54\x66\xdb\xbf\xda\x66\xbe\xc0\xb6\x7f\x4d\xa1\xb3\x94\x6d\xe7\x63\xac\xef\xb2\x2b\xf7\x01\x42\xfa\x76\xc9\x7d\x2e\xbf\x30\xe3\x1e\x61\xc2\xce\x85\xbb\xb9\xea\xcd\xbf\x74\x37\x03\xcd\xbc\xdb\x5b\x86\x04\xec\x62\x13\x59\x51\xc6\x35\x8e\x0c\xb4\x5b\x77\xf3\xed\xd7\x64\x74\xfe\xde\xfa\x96\x81\xe6\xb7\x06\x6f\x7d\xcb\xc0\x1e\x7c\x05\x59\x57\x66\x34\xbb\x22\x1a\x8a\x06\xe1\xdb\x40\x34\x15\x4d\x82\x61\x56\x6d\x29\xc2\x4f\x37\x7d\xe5\xa9\xe8\xe4\x6a\x99\x44\x74\x29\x62\x20\x4c\x7f\x78\x2b\x72\xf2\x34\x5f\xf9\x51\xf6\xe1\x82\x0b\x9b\xf9\x28\xe2\x36\xba\xee\xc3\xbe\x8a\xf8\x82\x17\x66\xe3\x6d\xbe\x0f\x50\xde\xcf\x5c\xde\xfa\xae\x81\xd6\x18\x1b\xb7\xbe\xeb\xbb\xa8\x20\x26\xd4\xad\xa3\x1a\x78\xb3\x1a\x6e\xd3\x82\x80\xee\x41\x87\x5b\x22\x08\xd4\xf2\x3e\x5f\xfd\x14\x87\x4b\xb3\x98\x0a\x82\x09\x9a\x3e\x77\x4b\x04\x6f\xbf\x12\xab\xdb\xf2\x96\x09\x02\xad\xbd\x22\x35\x84\x23\xbc\xba\x1d\xde\x3a\xc2\x81\xee\xb9\x8c\x5b\x47\x38\xf0\x1e\xd2\xbf\xcd\xa8\xbf\xab\xeb\x17\x0b\xf5\x2d\x49\x04\x52\x67\xf3\xad\xd3\x1b\x28\x55\x27\xd7\xad\xd7\x1b\x88\xda\xfd\xa5\x6d\x27\x2d\xc8\xcb\xe2\x6e\x9d\xde\xc0\xfe\x25\x2a\x32\x2d\x08\x08\x3f\xa2\x7d\x9b\x16\x74\x57\x5b\xc0\x56\x76\x9b\xdd\x03\xa4\xe7\xf0\x6e\x93\x7b\xee\x66\x57\xc1\x47\x6e\x59\x28\x50\xcd\x92\xb8\x25\xa1\x77\xb3\xba\x18\x5e\xb7\x8c\x13\xc8\x86\x3d\x7f\xcb\x38\xef\x66\xdd\x52\x99\x75\x6b\x1c\x1c\xff\x3d\xe7\xae\x6f\x09\x29\xd0\x3c\x69\x71\x4b\x48\x81\x30\x4f\xf1\x36\x85\xe7\xf6\xcc\x2f\xd1\xad\xdb\x14\x1e\x20\x3d\x24\x7a\xeb\x40\x07\xea\x7c\x4b\xbd\x4d\xfe\xf0\x31\x74\x06\x8a\x09\x3c\xb7\x17\xed\x0e\x1f\xef\xb0\xe6\x53\xb3\x7e\x84\xe3\x96\x01\x03\xd5\x6f\xf7\xdd\x32\x60\xa0\x19\x42\xbe\xf5\xb2\xdf\xde\xb3\xeb\x08\x36\xa5\xe7\x0e\x17\x41\xa7\xbd\xf9\x3b\x40\x6d\x6c\x73\xb7\xbe\xf8\x3b\x1c\xc2\xe9\x0b\xd4\x05\xdf\x90\xf5\xde\x8d\x5b\x5f\x3c\xd0\x8c\x47\xdf\xfa\xe2\x81\xea\x2d\x53\xb7\xbe\x78\xa0\x19\x0b\xbd\xa5\xe6\x77\xb8\xb2\x77\xdb\x64\xcb\x43\xb3\xd2\x57\xda\x72\x3e\x2b\xab\x8f\xfd\x96\xad\x03\xa9\xbd\x73\xcb\xd6\x81\xa6\x71\x7e\xcb\xd6\xef\xb4\x99\x2e\x82\xf2\x70\x20\x3c\x55\x70\xcb\xc3\x6f\x08\x76\x7d\x27\xb4\x0c\x1b\x48\xcd\xa2\x5b\x86\x7d\xe7\x5b\x5b\xaa\x26\x53\x06\x9a\xa9\xf3\xb7\x44\x19\x28\x55\x0a\x7c\xcb\x94\x81\xe6\xa7\x12\x6f\x13\x73\x80\x6a\xe8\xf9\x96\x3b\x03\xb3\xba\xc8\xca\x9d\x81\xf4\x62\xe9\x5b\xee\x0c\x0c\x3f\xf5\x7b\xcb\x9d\x81\xda\xad\x85\xdc\x19\x48\x2d\xb1\x5b\xee\x0c\x94\x37\x3a\x7a\x1b\x71\x00\x56\x75\x02\x4a\xa7\xef\xee\x3c\x55\x91\x32\x65\x60\x9a\xb4\x7d\xcb\x94\x81\x5d\xcc\x06\xa8\x8d\x8e\x97\xf9\x7d\x9a\xda\xe0\x78\xaf\x41\xc3\x5b\x3e\x0d\xec\x5f\xa2\x47\x09\x35\xd0\x1a\x3b\xf0\x2d\xa1\xbe\x87\xbd\xe2\xa6\x20\xdf\x05\xc2\x18\xe7\x2d\xdd\x05\xd2\x74\xdb\x5b\xba\x7b\x0f\x77\x4d\x9c\x88\xb7\x3c\x16\x88\x77\x6d\x90\xc7\x02\xa5\x9a\x16\x7e\x4b\x64\x81\x66\x6e\xf7\x2d\x91\x05\x9a\x9e\xed\x5b\x1e\x7b\x4f\x35\x69\x3d\xe4\x9e\x40\x9a\xa8\x7b\xcb\x3d\xef\xa9\x26\xed\x76\x69\x25\x90\xa6\x1a\xdf\xd2\x4a\x20\xd3\x05\xcf\x24\x98\x1b\x56\x59\x8b\x2b\x9e\xb4\x12\x48\x13\x86\x6f\x2f\xba\x05\x52\x53\xe3\x36\x64\x72\x73\xd1\x6d\xf5\x56\xc2\x5b\xa6\x09\x94\xb7\x93\x25\x9a\x40\x79\xcd\xf2\x5b\xa6\x09\xe4\xdb\x76\x89\x26\x50\xfc\x06\xfb\x2d\xd1\xbc\xb9\xfb\x36\x5d\x77\x65\x95\x40\xea\x8d\xba\x65\x95\xc0\x7b\xf8\xe8\x96\x55\x02\xe9\xe7\xc3\x6e\x59\xe5\x2d\x37\x2c\xf6\x8a\xe4\x10\x18\x0b\x6f\xcb\x2d\x39\x04\x32\x5d\x85\x24\x87\x40\x1a\x30\xb9\x25\x87\x37\x29\x30\xd5\xeb\x0c\x6f\x73\x60\x80\x78\x7b\x58\xda\x07\x94\xea\x0d\x84\xb7\xbc\x0f\xc8\xc4\x8d\x7b\xcb\xfb\x80\x34\x69\xf9\x3e\xdf\xda\xf2\xf9\xb6\x62\x29\xfb\xe9\xb2\x01\x2e\xb7\x52\x41\x20\x3d\x2b\x75\x1b\x18\x02\x76\x31\x1a\x25\xfd\x03\x42\x43\xfa\x96\xfe\x01\xbb\x18\x2d\x90\xff\x01\x69\x2a\xf6\x2d\xff\x03\x4a\xf5\x56\xc2\x5b\x02\x08\xa4\x1f\x08\xb9\xe5\x7f\x80\x8e\xac\x5b\xfa\x77\xc3\xf5\x6a\xa9\xca\x6c\xd4\xc5\xe0\xeb\x3e\xeb\x6d\xd4\x63\xb1\xff\x8b\xb1\x3b\xc9\x81\x15\x56\xb2\x30\x3c\xaf\x55\xd4\x12\x12\x77\x18\xa9\xf4\xf6\x92\x49\xb3\xff\x25\x94\x38\x9f\xef\x9b\xde\x3b\xfa\x25\x44\x26\xee\x30\x71\x1c\xe1\xb0\xa2\x79\x7d\x5e\x14\x99\x97\x4f\x62\x2f\x78\x6f\xcb\x33\xf9\x8f\x82\xde\x59\x63\xf4\xdf\x79\x1a\x90\xbe\x94\xc4\x5e\xd0\x85\x42\x9f\xc4\xde\x79\xea\x16\xb6\xa9\xb8\x9b\xa0\xf7\xfd\x1f\x34\xf5\x49\xe5\x9d\xb4\xda\x66\xdc\xd1\x6a\x41\x17\x59\x7b\xd2\x6a\xe7\x65\xa8\xc4\x69\x76\xf2\xf5\x04\x6d\xcd\x23\x62\x64\x4e\x92\x4b\x9e\xbe\x93\xe4\x3a\xa5\x7d\xf5\xf9\x26\xb9\x4e\xfa\x4a\xe6\xbb\x93\xbe\x0a\xba\x95\xae\x93\xbe\x0a\xba\xbd\x6b\x27\x7d\x75\x3a\x16\x34\x4b\xe4\x27\x7d\x15\xbc\x7f\xe6\x9a\x9e\x8c\x5f\x47\x5c\xf7\x49\x60\x05\xef\x6d\x8a\xb6\x8a\x9b\xd4\x77\x9b\x4b\x5a\xf0\xd6\xe3\x86\x0f\x39\x15\xd4\xcd\xd7\x9a\x9a\x3a\x49\x27\x41\xe7\x27\xe9\x14\x6c\xc3\x88\x22\x9d\xce\x47\x45\xbd\x27\xf6\x31\x04\xc7\x9a\xe2\xa8\xa9\xe0\xbd\x2d\x9d\x40\x4e\x05\xbb\x18\xcb\x93\x9c\x3a\x1f\x3d\xbe\x9e\xa0\xbc\x8f\x83\x14\xd3\x6c\x54\x51\xb0\x15\x49\xdf\x4e\xb2\x28\x98\x82\x1b\x4f\xfb\x18\xce\x47\x15\xd2\xbc\x17\x59\x74\x7d\x8c\x86\x7c\x89\x2f\x1a\xe8\xfa\x64\xe2\xc8\x37\xf6\x22\x81\x2e\x7a\x47\xd6\xb7\x8b\xde\x09\xba\xa3\xa9\x2e\x7a\x27\xd8\xca\xe1\x97\xd3\xa5\x55\xb6\x3d\xd7\x2e\xd7\xae\xff\xfc\xef\x61\x21\xe3\xa2\x51\x82\xea\x43\x76\xd1\x28\x17\xa5\x21\xe9\xdb\x45\x69\x04\x9b\xf3\x27\x2f\x4a\x23\x78\x6f\x73\x4d\xd1\xb6\xac\x8a\x2b\x2d\xa9\x11\xec\x8e\xd4\xbc\x28\x8d\x6b\xd3\xba\xf9\x6c\x5d\x34\x44\xd0\x05\xfe\x5f\x24\xc4\x45\x2f\xc8\x2a\x77\x11\x0c\x41\x37\xdc\x2e\xb1\x34\x17\x71\xc0\xea\xbb\x88\x83\xa0\x5b\x2f\xb8\x88\x83\xe0\xbd\x2d\x3f\xa5\x0e\x82\x6e\x8b\xc3\x45\x1c\x5c\x52\xa8\xc6\x0e\xb9\x88\x83\xe0\xfd\x65\x1a\x5c\xe0\xcc\xe5\x8c\x8e\xe1\x97\x5f\x97\xf2\x45\x75\x88\xf3\x45\x43\x04\xc7\x67\xfd\x52\x1f\x64\x83\x80\x10\xf0\xcb\x06\x81\xa0\xdb\x42\x71\xd9\x20\x70\x91\x10\xf2\xd1\x5d\x24\x44\xd0\xc5\xf4\x5c\x24\xc4\x95\x83\x18\x0b\x5f\xf1\xc5\x62\x0f\xba\x7d\x04\x17\x8b\x3d\xe8\xb6\x33\x5c\x2c\xf6\x2b\x11\xf1\x45\x9e\xb6\x4b\x2c\x4b\x30\xac\x48\x5c\x2c\xea\x2b\xe1\xef\x85\x68\xbb\xd8\xcf\x41\x17\xac\x7f\xb1\x9f\x83\x2e\xcc\xff\x62\x3f\x07\x75\x5b\x3f\x54\xb2\xb8\xb6\x8a\x55\xb3\x8b\xb1\x1c\x1c\x02\xad\x2f\xc6\xf2\xd5\x77\xb7\xb9\xa6\x1c\xf2\x8d\x66\xd1\xe6\x62\x05\x5f\x5d\x1a\xa3\xea\xdf\x94\xa3\x1b\x45\xa9\x01\xaf\x52\xb0\x2d\x73\xff\xe2\x56\x0a\x7a\x37\xfe\x18\xcb\x57\x9c\x37\x45\x66\xb2\x8b\xb5\x19\xf4\xee\xad\xe2\xbc\x09\xb6\x22\x5f\xe1\xc5\x7b\x73\xc9\xe1\x39\x5d\xf2\xd0\x6c\x78\xb5\x49\xe3\x62\x93\x5e\xc9\x2f\x53\x4a\x6c\xa4\x8b\x01\x1a\x74\x9b\x34\x2e\x06\xe8\xb5\xeb\xf8\xd8\x6a\x17\xbf\x4c\xd0\xed\x71\xb8\xb8\x65\x2e\xf6\x21\x5d\x76\xb1\x0f\x83\x83\xc1\x72\xb1\x0f\x83\x6e\x81\xe0\x62\x1f\x06\x5b\x91\x4b\xea\xe2\xe8\x08\xa6\x63\x03\xaf\xb9\x1e\x60\x7c\xe4\x2b\x71\xf1\x6a\x04\x87\x44\xd6\x17\xcb\xf2\x3a\xdc\x66\x6a\x63\x98\x05\x07\x2b\xef\x3a\xd6\x6d\x5a\x57\xc7\x70\x01\x5c\x8c\xb5\xc8\x87\x8b\xb1\x76\x1d\xfa\x4a\x83\xb0\xc3\x82\x6e\xb3\xc5\x65\x75\xff\x3a\x8c\x23\xc3\xcd\x52\x7e\x70\x48\x95\x7d\xb1\xd6\xae\xaf\xb2\xe9\x3f\x8b\xed\xc1\xf1\xda\xae\x7f\xfd\x6c\x5f\x62\x6e\xae\xdf\xfa\x97\xb4\x17\x8b\xe6\x62\xd1\xac\x4b\xeb\xb6\x99\x3f\x4e\x4b\x33\x69\x82\xad\xd4\xac\xe2\x5f\x96\xb4\x83\x29\xf1\xdc\x25\x92\x38\x78\x6f\xf3\x53\xe3\xe7\xc5\xdc\x87\x4b\xda\x21\x9b\x42\x4b\xf5\xc2\x32\x4c\x82\x6e\x9f\xc8\x65\x15\xfa\x62\xab\x38\xe1\xfb\x62\xab\x04\x73\xd3\x95\x8c\x91\xe0\xbd\x2d\x55\x38\xd7\x13\xae\xa4\xf0\x4b\xab\xca\x83\x72\xb1\x59\x04\x2a\x5e\x6c\x96\x60\x4a\xf8\x75\xb1\x59\x82\xad\x48\x5f\x73\x59\x60\x0e\x0e\xa9\xc5\x2f\xf1\x2f\xd7\xa5\x6c\x59\xc2\xba\x04\xf6\x06\xc3\xf7\xf8\x12\xc5\x72\x59\x9a\x96\x17\xe6\xb2\x34\x1d\x6c\xab\x56\xd7\x2a\xdb\x9d\x13\x1a\xd3\xbb\x96\xa6\x2f\x46\x91\x54\x7c\x17\xa3\x28\x68\x96\x09\x2e\x46\x51\xb0\x95\xea\x92\x1a\xdc\x5a\x57\xc7\x30\x8a\x2e\xc7\x98\x79\xaf\x19\x45\x41\xb3\xd3\xea\x62\x14\x05\x55\x5a\xe5\x8b\x4d\x14\x14\xc6\xce\xc5\x26\x0a\xb6\x5d\x4f\x31\x89\x2e\x8b\xce\x35\x6b\x4e\x17\x9b\x28\xa8\xd3\x50\xb0\xe8\x7c\x59\x61\xb6\x16\x78\xb1\x89\x82\xad\x78\xd3\xef\x55\xf5\xe4\x41\xd1\x40\xac\xa4\x60\x92\xd9\x17\x2b\x29\x28\xd2\xdf\x5f\x62\x64\x82\xb6\xf9\x5c\xd8\x12\x1a\x54\x9b\x99\x2f\xa6\x54\x70\xac\x9b\xb4\x4e\x36\x84\xae\x83\xa5\x2f\x66\x53\x50\x8f\x2c\x8b\x5e\x16\xa1\x2f\x26\x92\x0d\x3d\x17\x13\x29\x68\x82\xaa\x2e\x26\x52\xf0\x67\xf6\xb5\x96\x7c\xb1\x9a\xa8\x90\x9b\xd5\x74\x5b\x4c\x76\x92\xe6\x6d\x31\x39\x58\xe7\x30\xdc\x0c\xa9\xa0\x3a\x8e\xeb\x16\xba\x7c\xaf\x0d\xa1\xfe\xac\xb9\xa4\xcf\x63\xa7\xde\xd6\x97\x83\xea\xb0\x83\x9b\xb9\x15\xac\x4d\x4a\x37\x73\xeb\x66\x6e\x39\x75\xf2\x66\x6f\x05\xd5\xd1\x91\xb7\xf5\xe5\xfb\xe3\xcd\xee\xae\x9d\xae\xe5\xdc\x95\x55\x81\xcb\xa5\xf4\x66\x8d\x89\x74\xb3\xc1\x82\x6e\x97\xf5\x6d\x9d\x38\x68\x12\x26\xdc\x96\x89\x83\x6e\x5f\xf4\x6d\x99\xf8\x66\xbc\x49\x19\x74\x33\xde\x82\xde\xb3\xd8\x7b\x33\xde\x82\xe2\x53\x7f\xb3\xdd\x82\x3a\x94\x82\xed\x76\x5b\x26\x96\x32\xe8\x66\xbc\x05\xc5\xd6\xdd\xdb\x32\x71\xd0\xed\xf5\xbe\xad\x12\x07\x8d\x9d\x76\xb3\xf0\x6e\xe1\xd2\xcd\xff\x6b\x8c\xec\x27\xb5\xe0\x70\x5b\x24\x0e\x36\x27\x96\xdc\x6c\xbe\xbb\xe8\xa7\x48\xb2\x9b\x35\x17\x4c\x69\xad\x6f\xc6\x5c\xb0\x39\xd5\xf2\x66\xcc\x05\x4d\x7e\xf3\x9b\x31\x77\x17\x6f\x5d\x0c\xbc\x5b\xbc\x51\x30\x9d\x53\x71\x33\xdc\x82\xf7\x36\xcf\x54\xb4\x17\x55\x3c\xdc\x5d\x56\xd1\x72\x9a\xdd\xe6\x92\x9e\xb3\x46\xcc\x03\x7b\x5b\x23\x0e\xba\xf8\x8e\xdb\x1a\xf1\xbd\x52\xdd\xc7\xe0\xbd\x45\x2a\x05\x73\xe6\x1d\xbe\xd9\x7c\xb7\xd3\xbd\x65\x88\xbb\x05\x4b\x07\xbb\x08\xc7\xdb\xb2\x71\xd0\x6d\x56\xbf\xad\x0b\x07\xaf\xa5\x92\x4b\xfa\xc9\x22\xb0\x63\xa4\x6f\xab\xc0\x77\x95\x68\x33\x75\x67\x40\x06\x65\xd7\x51\x0c\xc8\xbb\x7a\x17\x63\xd0\xdc\x16\x78\x83\x39\x0d\x3e\x0b\xbc\xc1\x7b\x9b\x6b\x2a\xda\x12\x27\x9b\x2f\xff\x6d\x85\x37\x38\xac\x50\xdd\xf6\x6c\x06\xdd\x36\xfa\xdb\x9a\x6f\xb0\x8d\x7f\x39\xe0\xfa\xb6\x24\x7c\x37\xef\x5b\xa6\xe7\x9b\x19\x1a\x2c\xc7\xdb\xcd\x0c\xbd\xbb\x57\x24\x56\xd1\x2d\x28\xea\x96\x09\x3f\xd3\xff\x6d\x31\x36\x28\xd3\x2b\x62\x31\x36\xd8\xd6\x31\xf0\xb7\xa0\xa8\xe0\x70\x54\xc8\xcd\x58\x0d\x8e\xcf\xfa\x7f\x4d\xcf\x58\x95\x88\xe8\x66\xac\xde\x8c\xd5\xe6\x36\xa5\xb5\x8c\x2b\x70\xe1\x66\x99\x06\xdd\x06\xb3\xdb\x32\x6e\x30\x67\xa6\xde\xdb\x2a\x6e\xf0\xfe\x32\xc5\xb5\x8c\x1b\x74\x49\x07\x6e\xcb\xb8\xc1\xca\x50\x77\x5b\xc6\x0d\xf6\x7d\xfd\x99\xd6\x18\xab\xb4\xe9\x47\x56\x6e\xb0\xdb\x16\x70\xb3\x72\x83\xc3\xd7\xe4\x66\xe5\xde\x7b\x46\x80\xac\x06\xb7\xc5\xd2\x60\xdb\x3d\x53\xf0\x51\x50\xb9\x9f\x6e\x46\x6e\x50\xb8\xad\x6f\x46\x6e\xf0\xfe\x59\x06\xa7\xe0\xa3\x60\xb3\x14\x73\x0b\xff\x0e\xb6\xd2\xf4\xb1\x78\xa4\xdb\xd9\x67\x91\xfe\xb7\xf5\xd9\x60\x17\xd0\x76\x5b\x9f\x0d\x06\x87\xf7\x6d\x7d\x36\x28\x76\xa6\xdd\x52\x2d\x06\x8d\xef\xe4\xde\x57\x35\xaf\x38\x9f\xfc\x97\x6e\xda\xb3\xad\x39\x2b\x94\xb7\x75\xdd\x60\x9b\x31\xe5\x6f\xeb\xba\x41\x77\x74\xc5\xcd\x6c\xbf\x19\xe4\xdc\xe2\x37\x83\x3c\x68\x76\x82\xde\x0c\xf2\xe0\xbd\x2d\xc5\x10\x7a\x14\x54\x12\xff\x66\xa3\x07\x9b\xfc\x2d\x37\x1b\xfd\xce\x16\xc9\xe2\xac\xcb\x5b\xa0\x51\xb0\xf2\x0d\xde\xe2\x8c\x82\x3e\x4c\x0e\x16\x84\xef\x04\x15\x15\xc7\x5f\xde\x82\x8a\x82\xc6\x4f\x7b\x5b\xfd\x0d\xca\x30\x42\xad\xfe\x06\x5d\xd8\xd8\x6d\xf5\x37\xd8\x8a\x33\x54\x6f\xa1\x47\x41\x91\xb5\xea\xb6\x20\x1c\x34\xaa\xee\xb6\x20\x1c\x6c\x4e\x5f\xba\xad\x07\x07\xdd\x6e\xad\x9b\xec\x08\xb6\xa6\xfc\x64\xc7\x4d\x76\x2c\x43\x80\xec\xb8\xd7\xde\x49\x25\xd3\x18\x89\x3c\xda\xd7\x9f\x69\x8c\xac\x11\x17\x81\x03\xb7\x45\xe2\x60\x13\x92\x77\x13\x27\xc1\x7b\x9b\x87\x1a\x08\x47\x0e\xec\x5b\xa5\xd5\x66\x11\x2c\xc3\x9b\x4e\xaf\x04\x7d\x98\x16\xe9\x95\xfb\xdb\xfc\x99\xdb\x54\x3d\x21\x44\xfc\xd1\xb7\x10\xa2\x60\x5b\x53\x15\x55\x13\xb4\x61\xc2\x21\x5b\x6e\x4b\xc9\x56\x45\x6f\x4b\xc9\xc1\xb4\x92\x76\x5b\x4a\x0e\xb6\xb5\x23\xfd\xb6\x96\x1c\xd4\xb1\xbb\x4d\x9d\x2c\x12\xf3\x4c\xdd\x16\x89\x83\x6e\xef\xda\x6d\x91\xf8\xb6\x48\x2c\x0b\xec\x6d\x91\x38\xe8\x4c\xe6\xdb\x22\x71\x50\xe5\x52\xba\x29\xaa\xa0\x54\xcf\xa4\xa8\x82\x26\x79\xf4\x4d\x51\x05\xdd\xae\xba\x9b\xa0\xba\x7f\x7a\xc0\xf4\xf5\x5b\xa5\xbd\x73\x5b\x86\xa8\x35\xe2\xfb\x34\x12\xbc\x8b\xb6\x05\x04\x85\x4f\xe1\xb6\x2d\x20\x28\x6b\x0c\x11\x4f\xf7\x65\x62\x65\x17\x09\xbb\x09\xba\xc4\xbf\x37\x55\x14\xf4\xe1\x9b\x46\x15\x05\x45\x56\xad\x9b\x28\xba\x2f\x2f\x31\x1b\xc2\x0e\x80\xa0\x58\xd6\xb9\xed\x00\xb8\x09\x25\xe9\xac\xee\x6b\x95\x23\xaf\xa7\x3e\x26\x94\xee\xcb\xeb\xc9\x96\x21\x81\x82\xe9\x80\xc4\x5b\x74\x4e\xb0\xcf\xac\x4b\xdd\x44\x51\x70\xd8\x7a\x7c\x13\x45\xc1\x7e\x64\xc5\xfc\x26\x8a\x82\xdd\x79\xb8\xb7\xb5\xe3\xdb\x12\xb0\xcc\x55\x37\xb9\x13\xf4\x71\xfc\x43\x1c\xf8\x4d\x0d\xdd\x56\x88\xc5\xe0\xdc\xe4\x50\xd0\xc7\xe1\xf9\xaa\x7c\x7b\x09\xcd\x22\xe4\x50\x30\xcb\xf0\x4b\xe3\xf5\x31\x38\xb5\x20\x09\x13\x4c\x0b\xeb\x37\x09\x73\x4b\x01\x99\x18\xa5\x9b\x86\xb9\xad\x06\x2f\xcb\xcf\x6a\x70\xd0\x96\x71\x42\xd6\x04\x95\x0b\xf3\x26\x6b\xee\x47\x0d\x8c\x7e\x91\x34\x41\x21\xb3\x6f\x6b\xc6\xf7\x63\x74\xae\x7f\x33\x3a\x73\xd0\x97\xa0\xc3\x9b\xd4\xb9\xed\xd2\x8c\x3a\x7c\x28\x9d\x60\x49\x87\x87\xd0\x09\xba\xe0\xa0\x87\xd0\x09\x9a\xf8\xf1\x87\xd0\x79\xe4\xb1\xcf\x97\xef\x21\x74\x82\xe2\x68\x88\x87\xce\x79\x28\x18\xe1\x53\x0f\x05\x13\xf4\x92\x11\xf6\x50\x30\xc1\x7b\xdb\xcc\xb5\xaf\x6b\x39\x4d\x79\xba\xf4\x73\xe9\x1d\x9b\x64\xc2\x43\xe7\x3c\x44\x4d\x5b\x75\x7a\x5c\x4b\x74\x50\xcc\xf1\x87\xa8\x79\x04\xbf\x48\xe0\xf5\x50\x35\x41\x97\x33\xf4\xa1\x6a\x82\xf7\xb6\x54\xc1\xc6\xcd\x60\xdb\x15\x8d\xd0\x09\xb6\x95\x41\xf8\xa1\x74\x82\x66\x31\xf1\xa1\x74\x82\xf7\xb6\x54\x9e\xd4\x09\x36\xc3\xef\xa1\x74\x82\x15\x4e\xff\x50\x3a\x8f\x95\x6b\x89\xc4\x1e\xba\xe6\x11\xfd\xb2\x2b\xae\xca\x67\xcb\x67\x71\x06\xd1\x63\x99\x3a\xd8\x9a\x5a\xd9\xf2\x19\x34\xc9\xf3\x1e\x7b\x2a\x1e\x5a\x47\x38\xd6\x43\xeb\x04\xc5\x8e\xba\x87\xd6\x09\xaa\x1c\x67\x0f\xad\x13\xac\xc8\xe1\x87\xd6\x79\xca\x8a\xe8\x49\x3d\x2d\x5c\x07\x5d\xf8\xe1\x63\xe1\x3a\xe8\x22\x1e\x1f\x8a\xe8\x21\x7f\x9c\x4b\xf4\x90\x3f\xc1\xb0\x13\xfc\x21\x7f\x82\xf7\x36\x3f\x55\x4f\x07\x49\xe7\x8b\xf8\xd8\xbb\xf1\x90\x44\x4e\xd5\x79\x48\xa2\xa0\x96\xc8\x9f\x87\x24\x7a\x48\x22\x69\xcf\x1e\x92\x28\x38\xac\x74\x3c\x24\x51\xf0\xde\x96\x26\xb2\x0e\x1e\xcc\xb9\x2e\x69\x22\xfa\xc7\x71\x22\x0f\x01\x14\x6c\x4c\xa8\x47\x60\x4c\x50\xa5\x58\x7f\x48\xa2\xe0\xfd\xa5\x87\xea\x51\x5b\x4b\x0d\x53\x32\xe9\xa1\x89\x9c\x6f\xf1\xd0\x44\xc1\xb0\x0e\xfe\xd0\x44\x4f\x64\x4c\x71\xfe\xc4\x43\xa8\x04\x87\x5d\x76\x8f\xb5\xf7\x47\x38\x0b\xc5\xff\x58\x7c\x0f\x76\x6b\x05\x8f\x70\x96\x87\xc4\xa1\xb5\x1f\x12\x27\x98\xd6\xc6\x1e\x12\xe7\x11\xbc\xd2\xd7\x13\x74\xd6\x8b\xc9\x2f\xf0\x08\x5e\x79\x2c\xc8\x53\x7f\x8f\x05\xf9\x47\xf4\x4a\x0c\x93\xc7\x82\x7c\xb0\x15\x29\xd3\x1e\xe1\x2b\xc1\x36\xb3\x02\xf2\xd8\x6b\x12\x6c\x42\x73\x1f\xb2\xea\x11\xe4\x42\x98\x3e\x74\x55\x50\xec\x22\x79\xe8\xaa\xa0\x1f\xa6\x14\xb2\x2a\xe8\x47\x3e\xf5\x0f\x59\x15\x74\xe7\xae\x3f\x64\x55\x70\xb0\xb0\x1f\x91\x30\x8f\xf5\x7e\x52\xf2\xb1\xde\x1f\xb4\xcd\x60\xa3\xaa\x1e\x7a\x89\xac\x7a\xe8\xa5\xa0\xcb\x03\xf3\xd0\x4b\x41\x15\x6a\xf3\xd0\x4b\xc1\xfb\xcb\x94\x96\x60\x0a\xaa\x1c\x03\x8f\xb8\x97\xe0\xbd\xcd\x35\xf5\xcc\xa6\x11\x89\x41\x1e\x81\x2f\x0f\xbf\x83\xd0\x89\x87\xdf\xe1\xb1\xd5\xd6\x54\xc1\xef\xf0\x48\xb4\x69\x42\x21\xc8\x1e\xb1\x30\xa2\x3a\x1e\x8a\xec\xb1\xfb\xd6\x0b\x4f\x91\x05\x45\x98\xd7\x33\x56\xdd\x75\x7b\xff\x87\x74\x66\x0f\xb7\x44\xd0\x98\x4f\x8f\xb0\x98\xa0\x15\x0d\x48\xe9\x05\xef\x1f\xbb\xa6\xb9\x92\x1c\x5f\x92\xa2\x87\xd4\x7b\x76\xf3\xaf\x81\x4d\xc4\x05\x7d\x44\x59\x3f\x34\xdc\xb3\xaf\xa6\x49\x3b\x10\x71\xcf\x0a\xb2\x49\x17\x11\x71\xc1\x56\x84\x09\x3c\x54\x5c\xb0\x4e\x69\x79\xa8\xb8\x60\x93\xbc\xf7\xa1\xe2\x9e\x5d\x3b\xc4\x98\x78\x08\xb4\xa0\xda\xd6\xfb\x10\x68\x41\x5b\x1f\x15\x7e\x95\xa0\x4b\x83\xf4\xf0\xab\x3c\x64\x9c\xb0\x8f\x87\x8c\x0b\x8a\xa5\xf2\x87\x8c\x0b\x56\xd6\xdf\x87\x8a\x7b\xb8\x5a\x44\x26\x3c\x64\x5c\xd0\x25\x50\x7a\xc8\xb8\x60\x13\x33\xff\x08\xe2\x09\xfa\x58\x25\xd3\x1a\x11\x76\xc7\xa1\x4a\x1a\xe3\x45\x19\xbb\xc2\x6a\x8c\x44\xfa\x0c\xd3\xaa\x48\x9f\x67\xae\xc6\x48\x03\x11\x76\x41\xb3\xa8\xfc\x10\x76\xc1\x14\x4c\xfa\x10\x76\x41\x65\x99\x3e\x74\xdd\x23\xaa\x47\x8c\xc1\x43\xc5\x05\x5d\xb6\xea\x87\x8a\x7b\x78\x8f\xc4\x1d\x3c\x64\xdc\x43\xc6\x35\xff\xa6\xe6\x2f\x8a\x83\xcc\x1f\x2a\x2e\xe8\x23\x0b\x14\x0f\x15\xf7\x90\x6c\x1c\x02\x0f\xc9\x16\x74\x6b\xb7\x0f\xc9\xf6\x90\x6c\x3c\xbc\x0f\xc9\x16\xec\xf6\x29\x3f\x24\xdb\xc3\xc7\xc4\x37\xfc\xd0\x6c\xcf\xf2\x31\xe5\xa1\x34\x5b\xd0\xc4\x86\x3d\x22\x82\x9e\xaf\x99\xdc\x48\xa3\xc6\x82\x2e\x83\xd5\x23\xfc\x27\xd8\x8f\xe6\xcf\xd4\xe0\x45\xb3\xbb\xf6\x21\xd9\x1e\xfa\x8c\xeb\xf6\xa1\xcf\x82\x3e\xcc\x22\xf4\x59\x50\xed\x32\x7f\x64\xc5\x79\x68\xb1\x35\xdf\xd3\x62\x0f\x2d\xc6\xb8\xa0\xc5\x1e\xee\xad\xf5\xc9\x22\xc6\x82\x95\xb5\xf8\x21\xc6\x82\xf7\x36\x3f\x55\x83\x17\xfb\x34\xfa\xa8\xb1\x87\x2f\x8b\xcb\xf4\xe1\xcb\x0a\xba\xd0\xa4\x87\x2f\x2b\x58\x91\xe3\x0f\xcd\xf6\x9c\xa6\x0e\xa3\xc8\x5e\x8c\xa0\xda\x18\xf3\x88\xce\x09\xba\x03\x7f\x1e\x4e\xb0\x60\x1d\x6c\xfc\x70\x82\x05\xcd\x16\x85\xc7\x56\x8c\xe7\x5c\x15\x70\x9b\x0a\xe4\x58\xea\x65\x76\x13\x80\x4f\xb6\x67\x94\x35\x0f\xf1\x95\x05\x65\xcd\xbd\x5c\x65\x41\xe5\x41\x7a\xce\x55\x81\x75\x64\x80\x87\xea\x83\x9c\x19\xb0\xfb\x33\x9b\x38\x82\x21\xb4\xf2\xa1\x26\x83\x41\x5e\x3c\xd4\x64\xd0\xeb\xba\xa4\x31\x48\xc7\xf5\xb2\x93\x8e\x41\xdf\xcd\xad\xa4\x63\xd0\xd6\x07\xd7\xe6\xf1\xa0\xee\xdd\x9f\xa9\xf9\x95\xbc\x1f\xd5\x5d\x6a\xce\xeb\xb6\x5e\x29\x5e\xb7\xa0\x4b\x3d\xf1\xf0\xba\x3d\x76\x7f\xac\xd1\x47\x60\x06\x6d\x4d\xa3\x04\x66\xd0\xad\x95\x3c\x04\xe6\x23\x14\x69\x0d\x04\x72\x32\xe8\x52\xd1\x3c\xbc\x6e\xcf\x3d\xdc\x96\x7a\xf2\xb1\x05\x8d\xcb\xfa\x21\x3a\x1f\x12\x52\x9a\xb5\x87\x84\x0c\xfa\xbe\x8a\xe6\xfd\x79\xb1\x96\xbe\x1e\x0a\xf2\x11\x77\x34\xbc\xb3\x24\x64\xd0\x65\xeb\x7c\xf8\xd8\x82\x2e\x99\xce\xc3\xc7\xf6\x24\xec\xa8\x0c\x76\x2c\x8f\x5a\xf0\x9a\x50\xb9\xa4\xa2\x76\x71\x48\xd0\xf6\x50\x9a\x41\x99\x54\x19\xa1\xf9\xd8\xb2\x21\x8d\xeb\x43\x56\x06\x5d\xf6\xc8\xc7\x96\x8d\x47\x28\xd2\x28\xff\xb0\x0e\xfe\x50\x9d\x41\xb5\xd3\xed\x11\xa9\xf4\x70\xc3\x09\x4b\x7a\xb8\xe1\x82\xb5\xdb\xf3\xa1\x4d\x83\x2e\xe7\xcf\xf3\xac\x4a\x3b\x25\xe8\xf8\x9f\xff\x7b\x8d\xff\xff\xfc\xef\x82\x0d\x5d\xe3\x13\x6d\x0a\x35\x8b\x18\xaf\x95\xec\x52\xc9\xbe\xc5\x4f\x2e\x55\x97\x6a\xfe\xde\x0f\x9b\x4b\x46\x40\xcb\xa5\xee\x92\x51\x3d\x73\x69\x77\x49\x6f\x17\xa5\xf8\xba\x96\xde\x7e\x5b\x79\x7c\xa2\x43\xc7\x47\xcc\x53\xf2\xb3\x8d\x4f\xbc\x6b\xd0\xb3\xb9\x6a\x7c\x12\xf3\x04\xad\xad\x07\x3c\x2e\xe5\x4d\xdd\xf6\xf7\xd2\xa6\x96\x39\x3d\xad\x8c\x9a\xa2\x6d\xea\xf4\xa2\x64\x91\x64\x7c\x36\x75\xe2\x70\x4b\x66\xb7\xf1\xd9\x54\x2a\xe9\x5a\x73\x22\xef\xf8\x6c\x2a\xb5\x1c\x6e\x2e\x0d\x97\x56\x52\xca\x5c\x52\x4f\x7b\x30\x92\x4e\x69\x7c\xa2\x39\xa1\xef\x5b\x9a\x76\x53\x75\x32\x34\xc9\xde\xc6\x67\x53\xf7\x04\x50\xe5\x3c\xc2\xf1\x89\x0c\x05\x06\xe2\xf8\x6c\x5a\x63\xcb\x59\x57\xef\x7b\x39\x3e\x9b\xd6\xd8\xbc\xd1\x2d\x1d\x55\xd4\x3d\xdb\xfd\x73\xe8\xc0\xf8\x14\x3d\x5c\xf2\x46\x97\x14\xa3\x68\x0d\x62\x35\x99\xe3\xc6\xa7\xa8\x67\xc4\x6a\xd6\x9f\xc7\xa7\xa8\x67\xa2\xac\x92\x4d\x69\x7c\x8a\x7a\x96\x38\x8a\x8f\x94\x3f\x62\x15\x5a\xdc\xc9\xe3\x53\xd4\xbc\xa8\xb9\xbb\xd4\x3c\xee\xbb\xa9\xe2\x45\xc5\x4b\x2a\x6e\x9c\x15\x15\xa7\x4b\xb3\x22\x3d\x3e\x45\x0f\x47\x97\x6e\x1a\xa3\xaa\x65\x5d\xe5\xcf\x33\xab\xf2\xbf\xe8\xc9\x10\x35\x3e\x55\xf9\xb9\xcd\x72\x50\xd6\xf8\x54\x0f\x7d\xd1\xc6\xc8\x03\xaa\x87\x46\x22\x26\x91\xe7\xf8\x54\xad\x5d\x95\xa3\x7b\x80\x72\xd4\x8c\xb4\x92\x72\x34\xe5\x68\xe6\x95\x91\x2a\x34\xcd\xdd\xf2\x51\xd8\xf3\xcc\xa6\xb9\x93\xfe\x74\x2f\xf9\xb3\x66\xf0\xbd\xa8\xcd\x78\x6f\xc6\x5e\x53\xda\x91\xf7\xa2\x29\xed\x8b\xd2\x15\xa3\x29\x6d\xf3\xaa\x0c\xd7\x14\xb7\xf9\x2c\xfb\xa5\xc1\x41\x21\xae\x5a\x75\xc5\xed\x39\x24\xf2\x93\xa2\x75\xa5\xa5\x10\x93\x72\x6e\x7c\xba\xe2\x46\x21\xc6\xc5\x3c\x3e\x5d\x71\xc9\xc1\x98\xa2\xe3\xd3\x35\x78\x97\x1e\x3f\xe5\xe8\x1a\xdc\x9e\x87\xb1\xa7\x13\xba\xb1\xf0\x62\xfc\xb9\x64\x2c\x24\xab\xc0\x9f\x67\xaa\x28\xf1\x97\x7d\xe8\xe3\xd3\xd5\xea\xc5\xc8\x72\xf6\xf8\x74\xb5\x1a\xab\xb8\xa9\xd5\x50\xdc\x17\x25\x79\xd7\xc6\x67\x28\xee\x8b\x91\xa4\x76\xe3\x33\xb4\xee\x48\x6e\xd9\x9a\x67\x0e\x15\x18\x3e\x58\xe6\xbe\x61\x7c\x27\x7f\xd2\xaa\xe7\x30\xbe\x23\xf4\x8e\xe6\x97\xea\x14\x9d\x17\xd3\x6b\x7c\x86\x3a\x0d\x93\x9a\x82\xa9\x53\x74\x5e\xd7\x2b\x43\xe7\xe5\x88\xe8\x61\x2c\x0f\xb5\xcc\x96\x87\xdd\x9c\x3c\x56\x2d\x8d\xbe\xa9\xfc\x46\x5f\xb6\x3c\x24\xf4\x62\x7c\x76\xdd\x99\x14\x02\x9b\x49\x79\xd7\x9d\x74\x5c\xbc\x13\xe3\xb3\x6b\x8c\xe4\x30\xad\x5e\xd9\x5d\x63\xf0\xcf\x65\x6d\x7f\x7c\x76\x7d\x17\x6d\xd7\xbd\xff\xbb\xc6\xe0\x9f\x1b\xea\xb9\x6b\x8d\x3d\xaf\x76\x71\x9b\xaa\xef\xaa\x9e\x0e\xd8\x55\x7d\xf7\x6a\x2b\x86\xaa\xef\xd9\xa2\xa4\x65\x77\x55\xdf\x33\xc3\x57\x7f\xaf\xea\x76\x59\x8c\x23\x8d\xb6\xab\x7a\x76\x59\x94\x91\x5f\x4e\x55\x9f\xea\xa9\xd5\xa6\x7a\xce\x7c\xa3\x6a\x5a\x68\xaa\x67\x72\x98\x6e\x26\xe5\xa9\xd3\xa7\x21\x7a\xb8\x4d\x77\xbe\xa8\xb3\xff\x3d\x89\xd9\xf8\x4c\x55\xb6\x09\x63\x68\xd4\xa9\x82\x91\x66\xfb\x7a\x98\x0a\xe6\xd0\xe8\x43\x0f\x4d\x15\x4c\x46\xaa\x12\xd3\x72\x7c\x0e\x23\xf8\xc8\xfc\xe0\x43\x74\xa8\x8c\x1d\x17\xbb\xf9\xfe\x50\x9b\x17\x65\x0d\xe1\x43\x6d\xec\xb8\x88\x1d\x36\x3e\x87\x8e\x8c\x87\x6d\x5f\xb7\xe9\xc8\xe4\xb7\x2a\xbb\xef\xda\xa1\x0a\xd9\x5f\xb1\x9b\x81\x0e\xbd\x76\xa4\xd7\x6a\x46\xc5\xa1\x52\x02\xfb\x76\x1f\x94\x43\xad\x0e\xdd\x96\x21\x70\xac\x5a\xdd\x6e\xf3\x50\xdd\x76\x64\xc4\x7a\x6f\xbe\xba\xed\x9b\x73\x76\x47\x8a\xf1\x35\x62\x93\xc4\xd4\xc1\x5e\xe3\xf3\x55\xf9\x6f\x72\x7b\x68\xa2\xaf\xba\x7f\x55\xd4\xf4\xfe\x55\xd1\x6f\x8e\x6f\x35\x39\x7e\x55\x94\x84\x5b\x1f\xd3\xaf\x11\x9b\x03\x29\x92\x00\x67\x7c\xbe\x3a\x9c\x8f\x6d\x59\x0d\x5f\x95\x4f\x1a\xd3\x84\xcd\x8f\xcf\x57\xe5\x5f\xb4\x8f\x6f\xd6\x57\xdd\xbf\xea\x9e\x29\xe3\xab\xee\xdf\x55\x77\xb7\xa9\xfb\x8b\x32\xb5\xda\x4f\xdd\xed\xea\x58\x9f\xbb\x9f\xca\x67\x57\xc7\xae\x89\x7e\xc6\x42\x1c\x76\x1f\x5f\xb6\x9f\xe6\xf8\x19\x0b\x26\x92\x9f\xf6\xc8\xa9\x6c\xbb\x39\xfa\x67\x2c\xbc\x38\x36\xd6\xc0\x4f\x0b\xbd\x98\x95\x09\xf5\xd3\x42\x3f\x2d\xe4\x33\xf6\xd3\x42\xbf\x24\x21\xd6\xde\x3f\x2d\xf4\xd3\x42\xac\x86\x9f\x16\xfa\x65\x78\xac\x07\x68\xa1\x6c\xfe\x68\xeb\x92\x16\x12\xee\xb8\x97\x8c\xdc\x53\xd1\x5e\xd4\xcd\x37\xe0\x54\xb4\x33\xa3\xb4\xb9\xa4\x68\xa7\x51\xaa\x71\x4f\xa3\x34\x7e\xbd\xe2\x73\x7d\x2a\xc6\x29\xb7\x84\x5f\x2a\x06\x57\xdf\x7a\x83\x2e\x6d\x7b\x25\x62\xae\xbb\xa4\x6d\x2f\x45\xd3\xde\x97\xa2\xbd\xa8\xa3\xe5\x99\x97\xa2\x5d\x9a\xc8\x13\x2e\x4d\x94\xc3\xdb\xf6\x75\x9b\x26\xba\x14\x57\x1f\x5c\x8a\x9b\xd3\xdb\x76\xe6\xcb\xa5\xb8\x17\x2f\x03\x03\xf2\x5a\xe5\x4d\x2c\x19\xb3\xe1\xd2\x6c\x14\x1b\x8b\xec\x32\xb0\x78\x09\x77\x63\xe1\x32\xb0\xae\x2c\xd2\xfb\xf8\xdf\x06\xd6\x0b\xdb\x8b\xc7\xe7\x56\xf7\x3b\xdb\x9d\xbc\xee\xb7\xba\xdf\x5e\xa0\x96\x51\x7a\xab\x68\x14\x5b\x33\xe5\xdf\xfa\xe0\x8e\x3b\xd7\xf4\x7e\xab\xba\x04\x60\xbe\xcc\xb7\xaa\x2f\x0d\x97\x9a\xdf\x6a\x2e\x28\x72\x67\x6b\xdd\xaa\x1e\x37\xe0\xc7\x0b\x7a\xab\xf9\x6d\x92\x54\x0a\x35\x77\x50\x86\x17\xef\x56\xf3\x84\x49\x36\x03\xfe\x56\xf1\xec\x26\x99\xda\xe2\x51\xf1\xa8\xba\xee\x2b\xff\xa8\xf8\x8b\x59\x75\xf0\xa3\xe2\x2f\x8e\x4d\xf3\x3f\x5e\xa8\x84\x49\x1e\xec\xb1\xc7\xfb\x14\x1f\x63\x92\x41\x8e\xcf\x63\x64\xf0\x31\x66\x45\x71\x7c\x1e\x2d\xf6\x24\x0b\x88\x79\xe3\xd1\x62\xd9\xac\x5f\x76\x5f\xe6\x47\xfb\x3c\x49\x89\xa1\x4b\x1e\xed\x93\xdd\xfa\x59\x03\x1f\x9f\x47\xf3\x24\x53\xd9\x66\xb0\x3c\x9a\x47\xe8\x64\x24\xff\xd8\x88\xb6\xa0\xef\xb1\x19\x36\xa2\x6d\xb3\x07\x25\x5f\x9f\x8d\x68\xdb\xec\x37\xc9\x4a\xd2\xd8\x12\x00\x09\x83\x4d\xb5\xd1\x63\x1b\xf7\xe1\x9e\x17\x6a\x8b\xfb\x10\x5a\xdd\xfc\xdb\xe1\x52\x36\x22\x1f\x7e\xf9\x75\xc9\x97\x20\x9d\xbe\x91\x68\xc1\x48\x46\xa4\xb1\x91\x68\x41\x37\x0c\x36\x12\x2d\x68\x39\x40\x7b\x6c\x24\xda\xc6\xdf\xb7\xc7\x3a\xdd\x08\xad\xa0\x1b\xa0\x1b\xa1\xb5\xd9\xc6\x9e\xa4\x97\x63\x23\xa1\x82\x56\x8e\xed\xef\x1f\xeb\x8d\xc0\x0a\x76\x13\xef\x46\x60\x05\xc7\xb6\x9e\xa5\x2e\x5c\x7f\xbb\xca\x6c\x4a\x1e\x85\x65\xb4\x6e\x04\x56\xd0\xbd\xcd\x1b\x81\xb5\x15\x9f\xb0\x99\x07\x64\xe3\x3b\xf4\xbd\xbb\xd4\x5c\x6a\xd9\xfb\xe4\x92\x2a\xdb\xda\xb2\xcf\xf4\x2d\xd1\xb5\x11\x5d\x19\xe8\x1b\xd1\x15\x94\x9c\x19\x36\x36\xa2\x6b\x13\x0d\x99\x0d\xbb\x63\xa3\xa7\x36\x7a\x2a\xe3\x75\xa3\xa7\x36\xbb\x51\x12\xc4\x37\xb6\xaa\x1c\x35\xf1\xdd\x79\x47\x36\xda\x69\xb3\xa1\x7d\x3f\xf2\xd3\xea\xa1\xd9\xd0\x9e\x1d\x5d\x63\xab\x1e\x9a\x43\x21\xca\x7e\xb8\xa6\xbf\x5f\x1c\x9b\x26\x22\x94\x82\x56\x35\x11\xa1\xb4\x71\x92\x25\x78\x67\x6c\xcd\xbf\x25\x01\x6b\xa2\x84\xc7\xd6\x0c\x3b\x9b\x56\x7c\x37\xb7\xa6\xbf\xb3\x69\x65\x5f\xb7\xa9\x68\x4b\xd6\x2d\x45\xa3\x8a\x36\xd1\x82\xeb\x87\x3a\x94\x2b\x2d\x49\x3d\xc7\x46\x15\x05\xb5\xee\x7e\xa9\xb4\x39\xb3\xa1\xe4\xd0\x93\xb1\x51\x45\x41\x65\x59\x6c\x44\xd1\x46\x01\x25\xc2\x7b\x6c\x14\xd0\xb6\x02\x0d\xdd\xa6\xf7\x6c\x81\xc9\x8e\x8c\xb1\x75\x15\x7d\xb1\xaf\x41\x4c\x14\x05\xef\x6d\x69\x36\xaa\x28\xd8\xf7\x08\xc7\x8d\x2a\xda\xa8\xa2\x69\xe8\x52\x45\xdb\x52\x45\x7e\xa9\x56\xc9\xac\x56\x66\x51\x85\x55\xad\x27\xdd\x97\x7f\x1b\x3a\x81\x78\x4a\x98\xea\xd8\x88\xa7\xa0\x30\xe7\x37\xe2\x29\xd8\x0f\x23\x8b\x78\x0a\x8e\xa6\x93\x89\xa7\x8d\x78\x9a\xf9\xcc\x6f\xc4\x53\x20\xb9\xc6\xd8\x88\xa7\xa0\xe4\x04\xd5\xb1\x11\x4f\xc1\xfb\xcb\x34\x11\xf5\x14\x1c\x5b\x2c\xcf\x8d\x7a\xda\xa4\x56\x8b\x84\xd8\xa8\xa7\xcd\xee\xf0\x59\xdc\xa6\xee\x2f\x66\xd1\xb8\xa4\xd2\xc6\x4b\x96\x23\xc8\xc6\x46\x2b\x05\x75\x3f\x5c\xd2\xc9\xb4\x52\x92\xad\x8e\x8d\x56\x0a\x8e\x4d\x8f\xd2\x4a\xc1\x7b\x5b\xaa\xb0\xab\xfc\x9e\xa9\x2a\xb6\xc5\x46\x3e\x05\xb3\xa9\x14\xf9\xb4\x39\x23\x7a\xf7\xff\x9a\x63\xea\x82\x7c\x19\xb6\xa9\x0b\x66\x0e\xf6\xf7\xda\x92\x32\x9b\xc0\xbf\x1c\x03\x37\x36\x92\x23\xd8\x59\x20\xdb\xd4\x44\x51\x21\x9b\x91\x4b\x84\x6c\x53\x13\xe5\x43\xb6\x91\x1c\x41\xb3\x26\xb4\x4d\x4d\xc4\x67\x34\x4d\xd3\x87\x26\x7a\x31\x8b\x21\x79\x68\xa2\xf8\x8c\xaa\x89\x8d\x56\x09\x8e\xcd\xc4\x46\xab\x6c\xb4\xca\x54\x03\x5a\x25\xe8\xbb\x37\x88\x56\xd9\x88\x10\x12\x76\x23\x42\x82\xfd\xcf\x2f\x55\x8a\xe2\x60\x1c\x6d\x14\x47\x30\x12\x7c\x39\x36\x8a\x63\xfb\x7a\x68\x54\xe1\x46\x24\x04\xfb\xa1\x43\xbf\x1e\x6a\x2b\x51\x62\xbf\xc7\x46\x24\x04\x3d\xe9\x98\xc6\x46\x23\x04\xdb\x9c\xee\x32\x4c\xbf\x59\xb7\x50\xf7\xaf\xd2\x92\x0d\x49\x45\x33\x36\xb2\x21\x98\xd9\x67\x33\x36\xb2\x21\xe8\xeb\x1b\x4e\x36\x04\xef\x2f\x15\x6d\xd5\xc0\xcc\xe9\x36\xdd\xf2\x33\x3c\x22\x92\x37\x82\x20\x98\xc3\x50\x20\x08\xb6\x5f\x77\x5b\x5a\x92\xa9\x1f\xcc\xf5\x22\x33\xf5\x83\xbe\x6b\x48\x96\xfe\xf6\x5b\xe5\x48\x45\x7f\xca\x91\x9d\xd9\x87\xcf\xf3\x4f\x39\x4e\xe5\x88\x65\xb8\x9d\xca\x11\x3f\x4f\x37\xb1\x9d\xca\x71\x6a\xdc\xe9\x9a\x87\xe6\x1c\xbb\x4d\xc7\x9f\x1e\x7a\x26\xa4\x77\xff\x97\x2f\xf6\xa9\xed\x5f\xcc\xf5\xdd\x25\x04\x82\xc3\x6b\x4e\x07\x04\x63\xf8\x76\xd2\x01\xc1\x91\x9d\x0a\x63\x3b\xb5\x3c\x69\x90\xa4\xae\x63\x23\x0d\x36\x7e\x1b\x33\x1c\x69\x10\x94\xe6\xc3\x70\xa9\x9d\xbd\x51\x33\x2b\x05\xdb\x65\x84\x5d\x19\xd6\x8c\x2c\x02\x62\xbb\x34\xa9\x8f\x22\xcb\x3d\x38\xd6\xa0\x63\xb8\x07\x47\x33\xc3\x31\xdc\x37\xbb\x99\x8e\x68\xfc\xed\xf6\xd0\x3b\x87\x61\x47\x50\x6d\xb7\x67\xb2\xdc\x93\xe8\x75\x6c\x2c\xf7\xa0\x1c\x66\x5a\x96\xfb\x26\xc0\xef\xf0\x9a\x33\xdd\x83\x63\x33\x76\x98\xee\x1b\xb7\xc7\xe1\xab\xc8\x44\x0e\xf6\x9c\x9b\x3e\x36\x26\xf2\xc6\x15\x72\xf8\xf2\x30\x88\x83\xbe\x7b\xe3\xd8\xc3\xc1\xdc\x4c\xab\xec\xe1\x60\x32\x91\xb7\x47\x31\x1e\x39\x26\xd3\xde\xcf\x2a\xc6\xe1\xff\xfd\x99\x2e\x7e\x7c\x04\xd2\x90\x4c\xe4\x60\x13\x01\x37\x36\x36\x72\x30\x57\x27\x3f\x3a\x59\xb4\xde\x61\xf4\x3f\xfa\xe0\xc5\xb4\x3c\xb9\x3d\xfa\xe0\xc9\x56\xab\xbc\xe5\x85\x71\x1d\xcc\x6c\x6c\x1d\x85\x71\x5d\x58\xd2\xc7\xba\x36\x5c\x8b\x25\x9d\xf7\xa1\xb0\xa4\x83\x23\xf1\xb7\xa3\x30\xa4\x83\x8d\x6d\x5d\x18\xd2\x85\xff\x23\x39\x6c\x47\x61\x49\x07\x75\x56\xb7\xfd\x5c\x7a\xc7\x72\xce\x6b\x1e\x25\x71\x78\xd0\xb2\x43\x65\x14\xe6\x76\x50\x5b\x66\x87\xc2\xdc\x0e\x6a\x76\xb5\x8e\xc2\xdc\x2e\x4e\xa6\xcb\x50\x2e\xcc\xed\x22\x58\x2f\x3d\x57\x36\xb5\x4c\xa2\x2a\x7d\x5e\xf8\x48\x82\x52\x8a\x4b\xd5\xa5\xaa\xf8\xa9\x25\x1f\x49\x70\xe4\x2c\xef\x51\x98\xee\x85\xe9\x9e\x61\x50\x98\xee\x81\x14\x49\xa3\xf0\x91\x04\x23\xbb\x37\x46\xd9\xb4\xd8\x96\x2c\x6f\x4d\x59\xb5\xd8\xb6\x5a\x4c\x61\xb5\x58\x52\x57\x25\x0d\xed\x28\x8c\xfa\x60\x24\x7b\xd2\x28\x8c\xfa\xc2\x82\x4f\x3a\xdf\x51\x58\xf0\xc1\xc8\x39\xd5\xa3\xb0\xe0\x83\xf7\x36\xd7\xb4\xc6\x8b\x91\x03\xe7\x46\xe1\x23\x09\x46\x8d\x04\x2a\x8c\xfa\x52\x56\x6b\xb8\xa6\x35\x5e\x8c\xf6\x49\xd5\x59\xf5\xc1\xb0\xe0\x5a\x18\xf5\x45\x36\xab\x64\x94\x1c\x85\x55\x1f\x1c\x3e\xae\x85\x55\x5f\xca\xaa\xbb\x9f\xaa\x7b\xce\x8c\x4e\x4e\xe7\x51\x18\xfa\xc5\x86\x75\x4b\xd2\x85\xa5\x1f\x8c\x6c\x70\x19\xa5\x18\x2e\xc5\x5b\x91\x37\xa5\x14\xe3\xe5\xc5\xf2\x31\x14\xfe\x95\xe0\xbd\x2d\xcd\xc6\xc1\x12\x4c\xe6\x69\xa9\x9a\xa8\x9a\x38\x32\x99\x94\xaa\x8d\x6a\xbe\x4d\xc5\x25\x6d\x14\xc5\xc1\x1b\x54\x08\x8e\xc0\x51\xde\xa3\x10\x1c\x85\xe0\x48\x06\xca\x51\x08\x8e\x40\xe6\xd2\x51\x08\x8e\x62\x97\x3c\xe7\x5b\xe1\x9a\x09\xc6\x58\xc5\x50\xa9\x17\x63\xac\x0a\xa8\x54\x62\xfc\xe2\x35\x1d\x85\x06\x09\x6a\xc2\x64\x46\xe1\xab\x09\xb6\x8f\x9e\xe2\xab\x09\x36\x31\x2b\xa3\x70\xd6\x04\x83\x53\xaa\x70\xd6\x14\xbb\xf0\x93\xa2\x75\x94\xa6\x02\x39\x97\x8e\x29\x50\x68\x9c\xd2\x62\x44\x18\xdf\xf4\x4c\xe1\xe6\x49\x1a\xe4\x51\x08\x9a\xa0\x36\xe3\x8a\xa0\x09\x7a\x12\x67\x8d\x42\xd0\x94\xb6\x4e\x55\xca\x25\x35\x6f\x4c\x3b\xa5\x50\x73\x7a\x26\xd9\x69\x47\xa1\x67\x8a\x33\xe8\x62\xb4\x15\x7a\x26\x38\x32\x3b\x16\x3e\x9e\x60\xab\xff\x70\x94\xc7\x28\x5d\x23\xe4\xe0\xec\xa2\x76\x24\x51\xa1\x7f\x92\x4a\x79\x14\xfa\x27\xa8\xfc\xa0\x85\xfe\x29\x76\x55\x1d\x66\x24\x62\x27\x28\x39\x1f\x62\x94\xae\x11\x86\xce\x50\x65\xf2\x24\x28\x7c\xc0\x85\x3c\x29\x22\xf6\x92\x62\x78\x94\xe1\x8d\x1b\xd9\x61\x93\x6f\x6b\x21\x4f\x82\xd6\xcd\x65\xe4\x49\x11\xc4\x77\x78\x28\x7d\x12\xd8\x70\x30\x0a\x79\x12\xf4\x64\x05\x1e\x85\x3c\x09\xaa\x15\x92\x32\x56\x69\x93\xe1\x36\x9f\xcc\xc2\xb9\x53\xc4\xf0\x79\x79\x09\x96\x60\xa3\x54\x0b\xc1\x52\x08\x16\xe3\x97\x5e\x09\x6a\x31\x09\xd2\x2b\x85\x5e\x61\x03\x15\x7a\x25\xd8\x3e\x6a\x49\xaf\x94\x7d\x35\x46\x7a\x85\x38\x09\x36\x06\x4f\x21\x4e\xca\xbe\x6a\x9e\x76\xdc\xd5\x3c\x27\xcf\x25\x75\xe9\x28\x7c\x3b\x45\x3c\xde\x7a\x2b\x79\x72\x82\x2d\xb9\x1a\x46\xe1\xc9\x09\xde\xdb\x94\x57\x45\xf7\x8c\xcd\x2c\xf6\x17\x9e\x9c\x22\x6e\x2f\xab\x3e\x85\x27\x27\x28\x1f\xf3\xf8\x54\x51\x01\x79\x14\x68\xe1\xc9\x09\x36\x2b\x6a\x85\x27\xa7\xf0\xe4\x1c\xca\xc1\x93\x13\x94\x6a\x6a\xa7\x9b\x82\xc3\x37\x9f\x6c\x2a\x87\x37\xc4\xe7\x8a\xd2\x09\xda\x96\xe5\xb9\x42\xe9\x04\xb5\x79\x69\x28\x9d\xa0\x0d\x7d\x47\xe8\x14\x01\x73\x87\x2f\x0c\xa5\x13\xd4\xec\x76\x19\x85\x53\x26\xd8\x3a\x9b\x82\x53\x26\xb0\x9f\x75\x94\xc3\x70\x3c\xf2\x39\xd4\x75\x87\x1a\x51\x4d\x87\x81\x46\x35\x05\xdb\xf0\xb5\x3a\x56\x9d\x7e\xd9\xbb\xe4\x92\x6e\xe2\x93\x39\xd6\x6d\x3a\xe0\x45\xaf\x5e\x1e\x3e\x99\xc0\xf6\xc3\x51\xf8\x64\x82\xb2\xac\x9d\xaf\xc6\x78\x51\x37\x9f\x56\x5e\x9a\x60\xab\xdc\x34\x85\x02\x0b\x24\xa9\x1e\x85\x02\x0b\xb6\x8f\x6f\x15\xc7\x4d\x89\x97\xa6\x7e\x7c\x11\x28\xb0\xc2\x4b\xa3\xcd\x28\xb0\x12\xb9\x55\x93\xf9\x6d\x14\x72\x2b\xf8\xef\x25\xf5\x7c\x51\xbb\x81\x4c\x6e\x95\xf8\x5a\xea\x47\xa5\xf8\x5a\x82\x2d\xf9\xfe\x46\x21\xad\x4a\x22\xed\xea\x7a\x17\x79\x51\x82\xad\x65\xc1\xa2\x90\x56\x25\x21\x74\xf5\x63\x02\xe3\x1f\x09\xd6\x1a\x46\xf9\xe9\x95\x9f\xe2\x6e\x1e\xaa\xb8\x71\x99\x54\x56\x16\x97\x49\xd0\x3e\x5e\x8b\xdf\x2a\xee\xfa\x50\xe7\x92\x97\x27\xa2\xac\x32\xa3\x0b\x55\x16\x94\x69\x16\x3a\x75\x5e\x84\x5a\x5d\x56\x22\xa1\x16\x6c\xab\xf7\x08\xb5\x60\xab\x1f\x53\xd3\xa9\xab\xce\x84\xba\x78\xf1\xb8\x69\x82\x2d\xdb\x3c\x46\xe1\xa6\x29\x24\xde\x7a\xa6\x71\x9b\xdc\xc8\x22\x39\x0a\x85\x17\x94\x79\xf8\xa1\x06\x3a\xcd\xa2\x69\x0c\x12\x2e\xe8\x55\x6b\xd3\x70\xc1\x5b\xb0\x8c\x0e\x22\x2e\xd8\x72\x94\xe2\x28\x44\x5c\x50\x0e\x56\xee\xa9\x81\xce\x18\x32\x06\xdf\xa9\x7d\x92\x7a\xb9\x7e\xa2\x29\xca\xa5\x81\x22\xff\x26\xbb\x8b\xfa\x0b\xde\xdb\xd2\x9d\xe4\x5f\x20\x45\xc7\x28\xe4\x5f\x50\x39\xdd\x0a\xf5\x17\x64\x57\xd5\x28\xc4\x5f\xf0\xfe\x57\x1a\x9b\xfb\x28\xa8\x1c\x9a\xe5\xd2\x64\x2f\x7a\x5d\x97\x34\xd9\x95\x85\x31\x73\x2d\x87\x52\xd0\x06\x5d\xc0\x9f\x14\xf4\xaa\x2d\xf8\x93\x82\xd6\xc6\xdf\x37\x6d\x8d\xc2\xdb\x14\x6c\x1f\x26\x2a\x6f\x53\xb9\x0c\x2f\xf3\x11\x85\x1a\x94\xa9\x7a\x14\x6a\xb9\x57\x53\xa5\xfb\x39\x92\x82\x15\x5c\x55\x88\xd6\x40\x46\xb3\x51\x88\xd6\xe0\xfd\x65\xba\xec\xd6\x58\x77\x36\xf4\x98\x50\xe9\xd8\xc0\xae\xba\x51\xe8\xd8\xa0\xe4\x5c\xd3\x51\xc8\xd8\xc2\x03\x65\xf2\x21\x63\x83\xd6\xcc\x03\x3c\x50\xe5\x36\x96\x48\x2d\xee\xa6\xa0\xb4\xac\x86\x15\xee\xa6\xa0\x36\x6f\x0c\x77\x53\xd0\xab\xf7\x9b\xbb\x29\x68\xdd\x8b\xcb\xdd\x14\xbc\xff\x9f\x5e\xe4\x6f\x0a\xb6\x69\x14\x12\xd3\xc1\x7b\x5b\xfe\x8d\x9a\x0e\x6a\x31\xed\x72\x38\x05\xb5\xf9\x78\xd1\xd7\xc1\xfb\xcb\x54\x8a\xc0\x0e\xfa\x1a\x98\x04\x76\x20\x4d\xc1\x28\x04\x76\x79\x56\xd5\xdd\xa6\xea\x2f\xfe\x74\x1d\x99\x1c\xb4\x61\x18\x52\xc9\x41\x5d\x5a\x85\x4a\x0e\xd6\x6a\x5e\xa5\x92\x83\xf7\xff\x8f\x5c\xdb\x5c\x13\xc8\xd0\x73\xa9\xb8\x94\xad\x25\xd5\xa5\xea\xd2\xc8\x2f\x33\xed\x56\xca\x39\x68\x7d\xdd\x36\x5d\x9a\xaf\x7a\x49\x9d\x2a\xe5\x1c\xb0\x23\x2b\xdd\x5c\x73\x32\xbb\x53\xdc\x46\xa5\x7f\x03\x1b\xcd\x47\xa5\x7f\xeb\xa6\xb0\x91\x20\x95\xda\x0d\xea\x88\x1a\xad\xd4\x6e\xdd\xb4\x76\x86\x63\x25\x5a\xab\x73\xd8\x33\x33\x54\xa2\xb5\x46\x8e\xd6\x8f\xe6\x20\x47\xab\x1c\x19\xd1\x55\x95\x1c\x0d\x56\xf8\x52\x25\x47\x83\xf7\x97\xae\x5d\xae\x25\x13\xc5\x47\x39\xd4\xe0\x45\xcd\x39\xef\xa3\x6e\xab\x06\xc9\x35\x1d\x91\x56\x89\xd6\x60\xad\x3c\x56\x9a\x35\xd8\xac\x38\x57\x9a\xb5\xca\xc0\x9c\x77\xa7\xd2\xac\x41\xcb\x36\xbd\x51\x49\xd6\xa0\x7c\x0e\xff\xd5\x5d\x4a\xf0\x5f\xf1\x43\x6d\xe1\x0c\x76\xde\xdb\x4a\x9f\x06\x84\x62\x15\xe9\x17\x6c\x35\xa7\x21\x8d\x4a\xb1\x06\x6b\xcd\xa0\x52\xac\xc1\x56\x0f\x97\x34\x4f\x31\x05\xad\x5a\xaa\xf8\x8b\x96\x4d\x8b\xa3\x52\xa2\xb5\x9a\x82\x22\x01\x2a\xd9\x19\x8c\x96\x15\x88\x4a\x76\xd6\xea\x1b\x1d\x75\x57\xab\xb2\xbd\xe8\x75\x73\x49\xd1\xb2\x69\x4c\xe4\x59\x15\x10\x58\xab\x6e\xca\xaa\x4a\xa5\x31\x83\x2a\x4e\xa0\xd2\x98\xc1\x1c\x3a\x93\xc6\xac\x4d\xd1\x62\xc1\x55\xf2\x31\xa8\x39\xe7\x6d\x54\xea\x31\xe8\x82\x30\x2a\xf5\x18\x6c\x8e\x30\x1f\xb5\xe9\x82\xc6\x68\x4c\x31\x9a\x2e\x68\x99\x1d\x9b\x3f\x33\x1c\x39\xcd\x3e\xde\x14\x5e\xb3\xa0\x99\x91\x2b\x91\x19\x6c\xb2\x03\x8e\x4a\x64\x06\x3d\xc9\x8d\x46\x25\x32\x83\x63\x95\x42\xcd\xa3\x31\x73\x1c\xd5\xa8\x34\x66\xe5\x33\xf3\x06\xb7\x55\x73\x59\xa3\x53\x56\xb1\x85\x41\xa9\x46\x23\xd5\x59\xbb\x5a\x66\xd9\xbe\xd2\x87\xc1\xc6\xf1\x5a\xb9\xcc\x6a\xf7\x5a\xe7\xc3\x53\x79\xb4\x82\xd2\xa6\x7f\xf3\xcc\x9e\x93\x21\x74\x00\x87\x56\xb0\xd5\xe4\xb1\x18\x75\x78\x68\x32\x20\xf3\xe0\x54\x3e\xae\x2a\x40\x30\xdf\xbf\x4a\x44\x06\x9b\xf0\xcb\x4a\x44\xd6\x61\xa6\x8a\x15\x56\x29\xc6\x60\x59\xd0\x95\x62\x0c\x26\x13\xbd\x12\x8c\x41\x4f\x46\xae\x51\x09\xc6\x60\xcb\x66\xde\xbf\x7e\xa5\x2b\x41\x19\x1c\x49\x3d\x3e\x2a\x41\x19\xbc\xff\xe2\x9f\x75\xd0\x8b\x9e\x13\x21\x46\xa5\x28\x83\xb2\xc6\x39\x45\x59\xf7\xd5\x32\x69\x67\xfa\x31\xe8\x35\x06\x4d\xdd\xb5\xcc\x8b\x63\x7a\xc5\x29\xca\x1a\xf9\x58\x05\x03\x55\xf2\x31\xd8\x6a\x75\x9b\x96\x89\x6f\xab\xc4\xd4\xaa\x7c\x5b\x35\xc7\x06\xd5\x64\x52\x1b\x95\x7c\x0c\x7a\x5d\xb7\xa9\x67\xf2\x74\x58\x2e\xaf\x04\x65\x8d\x2c\xac\x49\x39\x36\x2a\x5d\x18\x54\xcb\xf6\x95\x2e\x0c\xb6\x9a\x5d\x78\xa3\x72\x9e\x05\x5b\x33\x7b\x72\x9e\x05\xb3\x99\x57\xa8\xc7\x60\x16\xef\x16\xf5\x58\xb3\x77\xab\x6e\x9b\xdb\x54\x2a\x29\x38\xb2\x9d\x6b\xd4\xa9\x52\x0e\xff\x31\x13\xd0\x98\xc1\xd6\x0c\x3a\x1a\x33\xe8\x6b\xf0\x13\x99\xc1\xfb\xff\x6e\x53\xcf\x17\xad\xf9\x0a\x89\x10\x0c\xde\xdb\xd2\x68\xfc\x75\x41\xaf\xbe\x42\xfc\x75\x41\x1d\xba\x98\xbb\x2e\xf8\xd3\x4f\x44\x6c\xf0\xfe\x59\x1e\x40\xc5\x06\xe5\xf0\x95\xa3\x62\xeb\xa1\x8b\xd7\xbf\xe9\x62\x47\x9a\x2b\x1a\x7d\x1a\xbc\xb7\x65\x0c\x11\xa8\x41\xc9\x19\x02\xa3\x12\xa8\xf5\xd0\x79\xd1\x16\x95\xa6\x0c\xca\x9a\xcb\x68\xca\xe0\xbd\x2d\x3f\x25\x2a\x83\x3a\xbc\x98\x44\x65\xe5\xd6\xcb\x52\x5b\xa5\x29\x83\xf7\x97\x19\x7e\x44\x65\x50\x72\xc4\xe6\xa8\x44\x65\xf0\xde\x96\xe2\xf2\xf4\x05\xa5\xf9\xdc\xd2\x99\x41\xcd\xee\x90\x51\xe9\xcc\xba\xf2\x39\xfb\xa1\x0e\x25\x3d\x7d\x22\x29\xcf\x60\xab\x5b\x75\x4d\x87\xc6\xd3\x57\xe3\xa3\xae\xa4\x67\xd0\x05\xd3\x54\x8e\xbe\xa0\xd7\x55\x30\xfd\xf9\xd5\x68\xbe\x91\x02\x04\x83\xd1\x4c\xd9\x34\x6b\x4d\x30\xa0\x4d\xce\xa3\x72\xfe\x05\x65\xc4\xd8\xae\x82\x01\x83\x2e\x68\xab\x92\xb1\xf5\xa7\x35\x7c\x14\xf8\x03\x83\xd6\x7d\xbe\xf9\x03\x83\xad\x19\x09\x94\x6d\xf0\xfe\xd2\x35\xcd\xf1\x5b\xe9\xad\x73\x49\x73\xfc\x56\x73\x28\x87\xe6\xc8\x86\xb1\xaa\x85\x48\xdb\xe0\xbd\x2d\x9d\x47\xdb\x06\x7d\x7d\x50\x48\xdb\xe0\xbd\x2d\x6d\x44\xdb\x06\x73\x7d\x23\x4f\xed\x41\xc7\x8a\x71\xac\x74\x6c\xd0\x2b\x6b\x92\x8e\x0d\xde\xdb\x52\x53\x42\x36\xe8\x75\x3d\x40\x7b\x64\x67\x59\xe5\x1e\xab\x64\x6b\x50\x0b\xb3\x93\x6c\xad\xd1\xa3\x72\x1b\x8f\x4a\x90\x06\x4d\x68\x7a\x25\x48\x83\xbe\x5e\x0d\x82\x34\x28\x39\xf9\x69\x54\x7a\x34\xa8\xf6\x9c\x54\x7a\xb4\xd2\xa3\xeb\x9b\x48\x8f\x06\xdb\x66\x92\xa4\x47\x2b\xa9\xc9\xf3\x5e\x49\xcd\xa0\x6d\x26\x2c\x52\xb3\x5e\xba\xcf\x77\x84\x8a\x0c\xe6\x1a\xf3\x54\x64\x95\x96\x31\x19\xa1\x47\xe5\xb5\x0c\x7a\x5d\x65\x53\x83\x4b\xbf\x68\x0f\xa2\x30\xe8\xc9\x40\x34\xaa\x78\xc3\x2a\x7f\xb5\xd7\x91\x4c\x0c\xb6\xba\x31\x0c\xe9\xc4\x60\x5b\x5f\x03\x3a\xb1\xde\xfa\xc0\x6c\x4d\xdb\x05\xa5\xae\x5f\xaa\xc1\x1d\x27\x08\x13\x41\x70\x61\xbd\x75\x0b\x8b\x8f\xb6\x0b\xca\x1a\xa7\xb4\x5d\x30\x97\x65\x4b\xdb\xd5\x47\x83\x47\x75\x56\xaa\x2d\xe8\xb5\xfe\x83\x8f\xba\xd2\x74\xc1\x56\x37\xb6\x24\x51\x17\xb4\x35\x06\x88\xba\x4a\xd4\x6d\xcc\x4b\xa2\xae\x12\x75\x66\x4c\xa2\x2e\x78\x6f\x4b\xab\x52\x75\x41\xaf\x5e\x7e\x6e\xd3\xfa\xa8\x34\x93\x93\xaa\x0b\xe4\x92\x19\x95\xaa\x0b\xde\xdb\xd4\x70\xd5\x3a\x4b\x7f\x99\x10\x1a\x59\xd7\x3e\x2b\x53\x7e\x2e\x6d\x2e\x6d\x71\x61\xba\xab\xb8\x44\xf0\xcf\x5c\xaa\x2e\x99\x92\x63\x81\x37\x9b\xbf\x82\x92\x0d\xde\xa3\xf1\x9a\xb6\x24\x1c\xa9\x5b\x0c\xc0\xc6\xd3\xd9\x64\x1c\xc9\xab\xd9\x78\x3a\x83\x9e\x3c\x99\xa3\xf1\x74\x06\x33\xe9\x0d\x46\xa3\xf4\x82\xf7\xcf\xdc\xf6\xb8\x96\x73\xd4\x14\x8d\xab\xb3\x51\x7f\x99\x7f\x1b\xf1\xd7\x36\x43\x31\xd6\x64\xe3\xd8\x0c\xb6\x24\x7d\x1c\x8d\x5f\x33\xa8\x25\x0b\x62\x8d\x5f\xb3\x6d\x66\xd1\x75\xdb\xee\xda\x9e\xa4\xe3\x25\x97\xa6\x4b\xea\x19\x63\xa5\x11\x84\x41\xaf\x99\x5b\x1a\x41\x18\x54\x11\x4d\x8d\x1e\x0c\xde\x5f\xba\x4d\x45\xe3\xc6\x14\x3a\xd3\x08\xc2\xe0\xbd\x2d\x65\xa3\x08\x83\x9e\x24\xa4\xa3\x51\x84\x41\xe7\x7b\x6b\x14\x61\x2b\x86\x5f\x66\x92\x46\xd9\x05\x5d\x7c\x5e\xe3\x8b\x6c\x64\x5c\x52\x60\x8f\x46\xc6\x05\x35\x5b\xcd\x47\x23\xe3\x1a\x19\x97\xfd\xb9\xa3\xd1\x71\xc1\x66\x45\xb6\x71\x3c\x06\x1b\x6f\x76\xe3\x77\x6c\xdc\x82\xc5\x6d\xfc\x82\x41\xe7\x9e\x6c\xfc\x82\xc1\x56\xd7\x90\xb4\x8b\x2b\x98\x2d\x2f\x75\xe3\x2a\x6c\x55\x71\xd7\x35\xc5\x8d\xb4\xe3\x51\x6a\xa4\x5d\x23\xed\x72\x06\xef\x68\xa4\x5d\x13\xc3\xf8\x71\xdb\x2a\xdb\xed\xb6\xb4\x11\x6d\x17\x8c\x66\xe4\xf2\x1f\x06\xef\x6d\x69\x37\x0e\xc4\xa0\x57\x55\xa0\x00\x5b\x53\xd3\xe8\xbd\x46\xef\x05\x35\xc9\x4f\x47\x23\xf7\x82\x2e\x52\xb9\x91\x7b\x81\x85\xfe\x46\xed\x05\xcd\xa7\xb8\xf1\x28\x36\xc7\xd6\x67\xee\x68\xf4\x5f\xf0\x4e\xab\xae\x69\x8d\x96\xc3\xc1\xbc\x2c\xf4\x5f\xeb\xca\x1f\x01\xd0\x48\xb4\xe0\x10\x24\xdf\x38\x06\x83\xce\xd8\x6f\x3c\x83\xad\xaf\x79\x3b\x45\xe3\xfb\x0b\xea\x6a\x20\xda\xae\xc5\xf7\x57\x93\xb1\x67\x34\xbe\xbf\xa0\xb5\xf5\x4b\xc5\xed\x06\x51\xf5\x53\x83\xa8\x27\x21\x61\x77\x9b\x8e\xea\x2b\x71\x70\x3a\x8f\x2c\x0c\x7a\x32\xf9\x8f\x46\x16\x06\xb3\xa8\x01\x59\xd8\x28\xb9\x64\xa2\x1b\x8d\x92\x0b\x36\x81\x9f\x8d\x92\x0b\xb6\x5a\x74\x1e\x29\x17\xac\xa0\xc6\x46\xca\x35\x22\x8c\x77\xae\x11\x61\x8d\x08\xcb\xb2\x62\x23\xc2\x82\x6d\x39\x43\x1b\x15\x16\xcc\xe9\x12\xbf\x5e\x8b\x13\xaf\x16\x2f\x1f\xc9\x15\x4c\xdf\xd8\xc6\x89\xd7\xa8\x30\x6b\xa5\x8d\x0a\x0b\x0e\x0b\x51\x8d\x0a\x0b\xde\xdb\x52\x05\x32\xac\xed\xa9\x82\x09\x90\x0a\x6b\x54\x58\x4c\x82\x46\x85\x05\xbb\xb8\xe0\x46\x85\x35\xf2\xaa\xb8\x8d\xbc\x0a\x4a\xd7\xcb\xe4\x55\xb0\x2d\x13\xa9\xd1\x57\x41\xaf\x4a\x4b\x5f\x05\x65\x7d\x6e\xa6\x0a\x90\x5c\x65\xb8\x4d\x0d\x5e\xac\x75\xe8\x46\x72\x05\x73\x4d\x89\x24\x57\x3b\x0c\xdd\x58\x09\x8d\xd8\x69\x36\x52\xf5\xf9\xf7\x2f\x76\x23\x85\x82\x5a\x54\x86\x14\x0a\x26\xab\xb0\x71\xe8\x05\xef\xb3\x5c\x53\x99\x38\xf4\xba\x69\x8f\x60\x0a\x7a\xd5\xf2\x04\x53\x3b\x0c\xa8\x58\x85\xed\x58\x25\xcf\xda\x80\xe1\xc9\x7b\xd7\x0e\x03\x7b\xf7\x53\xa3\xe7\x45\x1b\xc5\x03\x0c\x9e\x17\x87\x00\x9a\x46\x56\xb5\xaf\xc1\x63\x14\x13\x4c\xc1\x3e\x95\x83\x60\x6a\x2b\x1d\x61\x1a\x90\x5e\x0a\xf6\xf5\x59\xa7\x97\xda\x77\x95\x36\xf5\xa4\x84\x02\x89\x38\x46\xa3\x84\x1a\x25\x44\x3b\x37\x52\x28\xd8\x8f\xf5\x00\x83\x27\x4e\xb8\x6d\x5d\xf2\x92\x24\xe6\x91\x76\x69\x94\x50\xb0\x25\xcd\xeb\x68\x94\x50\xa3\x84\x4a\x9c\xbd\x8d\x12\x0a\x1a\xb5\xdb\x28\xa1\xe0\xbd\x2d\x0f\xe0\xbe\x0b\x66\x5d\x97\xb4\xc6\x2f\x09\x6a\x7d\x3b\x89\xa3\xc6\xc9\xc7\x76\x6c\xd4\x51\xb0\x22\xfb\x1a\x27\x5f\x23\x98\x8a\x37\x82\x60\x6a\x39\xec\xb4\x7a\xe3\xa8\xa3\x46\x1d\x15\xb6\x04\x75\x14\xf4\x6a\xf2\xa2\x8e\x82\xd9\x35\x07\x71\x14\x38\x22\x7e\x34\xe2\xa8\x11\x47\x45\x7b\x10\x47\xc1\x5c\x5f\x5d\xe2\x28\x98\x96\xfc\x1a\x6d\x14\x74\x01\xea\x8d\x36\x0a\xa6\xed\x13\x8d\x27\x30\x90\x2d\x6d\x34\x9e\xc0\x46\x41\x15\x16\x0d\x05\x15\xcc\x12\x97\x67\xa3\xa0\x82\x4a\x51\x36\x02\x2a\xd8\x6a\x72\xf7\x8f\x46\x41\x05\x53\x54\x7f\xe3\x0a\x6c\xa7\x06\x62\x0b\x51\x50\xc1\xe4\x3d\x68\x1c\x7f\xc1\x3e\x57\x05\x34\x10\x9d\x55\x98\x0d\x74\x56\xb0\x6d\xba\x98\xce\x0a\x96\xd9\xdd\xe8\xac\xc6\xf1\xc7\x81\xda\x08\xad\xa0\x57\xb3\x14\xa1\xd5\x08\xad\x65\xe1\x11\x5a\xc1\x92\x1f\x8d\xd0\x0a\xde\xdb\x32\x12\x78\xfe\x82\x7d\x6a\x5c\xae\xbf\x76\xad\xf6\x48\xb7\x13\x5f\x8d\x9f\xcf\x04\xc7\xcf\x17\x8c\xe6\xf5\xe1\xe7\x6b\xd7\x6a\x22\xff\xa6\x89\x22\xd1\x08\xdb\x46\xa2\x35\x12\xad\xb2\xc9\x48\xb4\xa0\x76\x5f\x58\x12\xad\x91\x68\x3c\x89\x8d\x44\x0b\x26\xd7\x46\x23\xd1\x1a\x57\x5e\x65\x80\xd1\x68\x41\xaf\x4c\x26\x12\xad\x91\x68\xd5\x98\xa1\xd1\x82\x5e\xb5\x11\x57\x5e\xf0\xde\x96\x36\xe2\xcb\x0b\x36\x82\xaf\xf1\xe5\x35\x2e\x39\x81\x33\x8d\x4b\x2e\x98\xcb\x30\x26\xdb\x5a\xb6\x7b\x55\xfe\xd1\x46\xa4\x05\xbb\x60\xd3\xc6\x01\x17\xcc\x35\x97\xf2\xbf\x05\xbb\xf8\xa0\x46\xc9\x05\x73\xfa\xc0\x92\x6a\x8d\x54\xe3\x17\x69\xa4\x5a\x30\xe9\xad\x46\xaa\xb5\xc7\x32\x67\x96\xcf\x1a\x5d\x16\x1c\x9c\x14\x8d\x2c\x6b\x09\x5d\xad\x16\xd2\x9b\xd0\xd5\x60\xb7\xe7\xb1\x09\x5d\x0d\x66\xcf\x62\x48\xe3\x92\x0b\x8e\xcf\xaa\x93\xaa\x3f\x3a\xd9\xe7\x9a\x7a\x6b\x22\x57\xd9\x25\xc4\x5b\xb0\x55\x92\xb1\x53\x6f\x41\x49\x5a\xe4\xd1\xa9\xb7\xfe\x51\xd1\x98\x78\x5d\x9e\x8e\xe0\xc8\x31\x0a\xa3\x93\x6a\xc1\xb6\x5e\xef\x4e\xab\x05\x93\x08\xeb\xfc\x74\x3d\xe1\xac\xd5\x5a\x73\xe7\x95\x0b\xba\xfd\x1c\x9d\x5b\xae\x13\x66\x56\x3f\x3b\x61\x16\x4c\x76\x49\x27\xcc\xfa\x66\x00\xd6\xbf\x9f\x90\x39\x3a\x17\x5d\xd0\x92\xf5\x7c\x74\xba\xad\xd3\x6d\xec\x8a\x4e\xb8\x05\x33\xa7\x1e\x8d\x4e\xb8\x75\xce\x3d\xab\x42\x9d\x73\x2f\x38\x78\xaa\x3a\x2d\x17\xbc\xb7\xa5\xd6\xc4\x5c\xb0\x8c\xd8\x2e\x24\x35\xd8\x73\x40\xf4\xe8\x5c\x80\x7d\x5b\x69\x98\x53\x69\x92\x2f\x38\x3e\xda\x86\xe4\xeb\x7c\x80\xac\xe9\x4e\xf3\x05\x33\x89\x58\x47\x27\xf9\x7a\x59\x6d\x93\x4e\xa2\xdc\x82\xb9\x67\x36\xec\x7c\x79\xc1\x2c\xf9\x10\x74\xbe\xbc\x60\x26\x11\xff\xe8\x7c\x79\xdd\x61\xaa\x79\x27\x3a\xc5\xd7\xc9\x3b\xaa\xbb\x93\x77\xc1\x14\x20\xd7\xc9\xbb\xa0\xac\x46\xa3\xee\x82\x99\x03\x9f\x46\xa7\xee\x3a\x75\x57\xd7\x33\x57\x05\x62\x98\x0f\xbf\x34\x04\xe2\xcb\x4b\x86\xc9\xd1\xf9\xf2\x3a\x11\x48\xa0\x76\x22\x30\x18\x39\x99\x73\x74\x22\x30\x18\x5c\x96\x9d\x06\x0c\x6a\xd3\x4f\x34\x60\xb0\x55\x16\x58\x17\x2f\x1a\x34\x56\x6d\xe7\x04\x0c\x36\xc9\x09\x3a\xa5\x18\xbc\xbf\x4c\x6b\x90\x8a\xc1\x26\x82\xb9\x4b\x0b\xd2\xab\x7a\xe6\xf3\xdf\x49\xc5\x60\xe3\x6a\xeb\x94\x62\xd0\x92\xf7\x73\x74\x4a\xb1\x73\xef\x99\xa9\x3a\xbd\x17\x6c\x02\x86\x3a\xbd\xd7\x9b\x1a\x0c\x3f\x55\x83\x1c\x84\x7a\x78\x26\x79\x17\xec\xb6\x11\x75\xea\xae\x37\xf3\xaa\xa1\xd6\x14\xb7\x65\x2b\x76\xf7\x00\x3d\xd5\xbc\x99\xba\x85\xeb\x2e\x28\xe2\xbe\x3b\xd7\x5d\x27\x0c\x93\xb4\x6a\x74\xc2\x30\x28\x3e\x95\x9d\x30\xec\xdc\x79\x35\xcb\x66\x9d\xe4\x0b\x06\xc3\xb8\x73\xe7\x05\xc7\xba\x49\x4f\xbd\xd8\x25\x83\xe8\x64\x61\xb0\xd5\x55\x29\xba\x30\x28\xc5\x80\xb4\x25\x2e\xd8\x1c\xea\x3f\xba\x30\xd1\x40\xa6\xc2\xd1\xa9\xc7\xe0\xbd\x4d\x31\xd4\x3d\xf2\x31\xa7\x75\x8e\x4e\x3d\x76\xdb\xe4\x8a\xaa\x6b\x8d\xe1\xc5\xcb\xe2\x59\xe7\x2e\x0c\x36\xce\xdf\xce\x5d\x18\x2c\x9b\xa6\x73\x17\xf6\x61\x86\xf1\x1a\x8b\x39\x0d\xb6\x6e\xaa\xa5\x3b\xfb\x58\x35\x70\x4d\x0d\x5e\x8c\xa4\x25\x1c\x9d\xa7\x2f\x28\x82\x29\x3a\x8d\xd9\x87\x29\xdf\xec\x47\x3d\x06\x95\xf3\xb1\xf3\xea\x05\xef\x6d\xae\xa9\xc1\x2e\x58\xcf\x25\x35\xd8\xbd\x7a\xda\x83\xc8\x0c\x5a\x72\xdd\x8e\x6e\x63\x5b\xb0\xdb\xb8\xd2\xc9\xce\xfe\xc7\xf9\xe7\x9a\x5a\x45\x77\xda\x1b\xd5\xc9\xce\x60\xf6\x7c\x62\xbb\x70\xd2\x3e\x57\xd1\x52\x77\x82\x32\x98\xfc\x86\x9d\xa0\x0c\x76\x3b\x6a\x3b\x3d\xd9\x29\x45\xf1\xf8\x9d\x52\x0c\xea\x6e\x44\x52\x8a\x5d\x2e\x7c\x41\xef\x9d\xdf\x2d\x68\xcd\xf4\xcd\xed\x16\x6c\xdc\x5d\x9d\xdb\xad\x67\xff\x5b\x15\x3f\xd4\x39\xd4\x82\xd1\x4d\xb8\x34\x66\xb0\x89\x53\xec\x44\x64\xf0\xfe\x32\xc5\xa5\x22\x83\x21\x94\xae\x53\x91\x9d\x8a\x14\xa6\xdc\xa9\xc8\xe0\x58\x45\xa3\x22\x83\xad\xae\xe9\x8f\x8c\x0c\x36\xcb\x84\x9d\xdb\xad\x53\x96\xb6\xf0\x75\xca\x32\x90\x25\x70\x74\xca\x32\x78\x6f\x4b\x7b\x08\x0c\x0d\xf6\xbe\x7e\xa9\x3d\x5e\x54\x46\x53\xb7\xc1\xae\x27\x56\x54\x86\xe7\xd1\x09\xd0\xa0\xb5\x7f\x38\xc6\x63\x74\xfa\x34\x78\xff\x25\xff\xcc\xef\x17\x54\x3b\x7a\x3b\xb7\x5f\x17\x38\x9a\xc3\x03\x46\xa7\x59\x83\x52\x9a\xdb\x34\xd7\x77\xed\x72\xcb\x25\xcd\xc5\xc7\xd7\x36\xd7\x34\x57\x82\x49\xa5\x26\xeb\x7c\x7c\xfd\xbb\x9a\x2b\x2d\x4d\xda\x06\xcd\x16\xd6\x4e\xda\xf6\xef\x6a\x2e\xd7\x34\x97\x2c\x20\x87\x07\x68\xae\x17\x73\xae\xd2\x6a\xae\x48\xdb\xa4\x7e\x1d\x9d\xb4\xed\xa4\x6d\x63\xa1\xd1\xb6\x41\x5d\x1f\x32\xd2\x36\xa8\x47\xd6\x20\x3a\x69\xdb\x29\x4f\xd9\x0e\x3a\xe5\x19\xec\x04\x6a\xe7\xaa\xeb\xa2\x50\x2d\xa5\x75\x6a\x34\xd8\x86\xa1\x42\x8c\x76\x7e\xb9\x35\xca\x48\xcf\x60\xe4\x24\xb6\xd1\x49\xcf\xa0\xd6\x43\xd1\xd4\xe0\xd4\x7b\xb1\x58\x3b\x51\x19\x94\xc3\x07\x84\xa8\x0c\xde\xdb\xf2\x9e\x50\x95\xc1\x48\x8a\xc6\xd1\x89\xca\x60\x74\x6f\x30\x51\x19\x94\x1c\xfe\x39\x3a\x51\x19\xbc\x23\x3e\x97\x54\xfd\xd4\x2b\xbe\xb1\xd4\x62\xd0\x04\x91\x75\x6a\x31\x18\x7c\xc7\x9d\x58\x0c\xde\x5f\x7a\xe6\xaa\x54\xb6\x86\x98\x21\xa8\xc5\xa0\x49\x48\xd5\x89\xc5\x4e\x19\xae\xd1\x41\x19\x06\x63\xe8\x3c\xca\xb0\x73\xc1\x89\x06\xe8\x5c\x70\xc1\x18\xbe\x80\x54\x60\x50\x3f\x26\x6e\x2a\xb0\x13\x69\x49\x8e\x3a\x3a\x91\x16\xd4\xa9\xdb\x89\xb4\x4e\xa4\xd9\x7b\xd0\x89\xb4\xa0\x6c\xe6\x1b\x22\xad\x0b\xae\x6c\x0c\x18\x8a\x2c\xa8\x85\x69\x45\x90\x75\xe9\x3d\xbc\x05\x04\x59\x50\x48\xdb\x2e\xb8\x32\x68\x5c\x2d\x9d\x03\x2e\x68\x36\x6a\x75\x0e\xb8\x4e\xc9\x89\x5d\xe8\x94\x5c\xd0\x3e\xeb\x92\x2e\x78\xd1\x3e\x06\x1f\x07\x5c\x7f\xe2\xd6\x36\x01\x50\x6d\xc1\x76\xe8\x3b\xaa\xad\x73\x93\x2d\xf3\x85\x9b\x2c\xa8\x6d\xdd\xa6\xfc\x89\x7d\x5c\x63\x83\x1c\xeb\xe4\x98\x78\x8f\x4e\x8e\x05\x55\xce\x80\x4e\x8e\x75\x0a\x4a\x60\xf7\xa0\xa0\x82\xa1\x81\x06\x05\x15\xbc\xb7\xb9\x56\x5c\x2b\xaf\x45\xd3\x73\xa5\xba\x52\xf3\xc3\x91\x4b\xcd\x25\x15\xc8\xb2\xe1\xa0\xa9\x02\x27\x5c\x8c\x41\x53\x8d\x8f\xd2\xc6\xf0\x19\x04\x54\x30\x6c\xe2\x19\xbc\x64\xc1\x7b\x5b\xcb\xb5\xd3\xb5\x75\x64\x68\x2e\x5d\x2e\x19\xf1\xbb\xb2\xdd\xae\xdd\x59\xff\x2d\xb9\xf4\xb8\xf4\xda\x7c\x9f\xb8\x8a\x06\x35\x36\xf8\xc4\x98\x12\x83\xb6\x0a\x9a\xcd\x9c\x83\xb4\x0a\xea\x8c\x6e\x18\xa4\x55\x30\x4c\xc1\x83\xb2\x1a\x9b\xa9\x29\x46\xce\xa0\x99\x82\xe1\x53\x30\x68\xa6\x41\x0c\x59\x0b\x19\xc4\x50\x30\xcc\x7d\x83\x18\x0a\xde\xdb\x14\x57\x0d\x44\x44\xc6\xc8\x19\xfc\x5f\x41\x33\xe0\x07\xff\xd7\x28\xde\x8b\x75\x9b\xe2\x72\x80\xe5\x95\x1d\xd4\x50\xb0\xd5\xa6\xa2\x1c\x60\x41\xe1\x74\x1b\x82\x1d\x83\x66\x17\xc7\x10\xed\x38\x8a\x1a\x1c\xfe\x4d\x0d\x1c\x0b\x3b\x3c\x53\x0d\x84\x36\xe6\x8c\x86\x31\xc8\xa1\xa0\xb6\x18\x3e\x83\x1c\x0a\xde\xdb\xf2\x53\xbb\xec\x82\xd1\xb2\x10\x3c\x44\x3b\x8e\xb5\xa3\x2e\x93\xe4\xa0\x9a\x06\xd5\xb4\xfe\x4d\x45\xa3\x9a\x5a\xf9\x87\xb8\xf0\x41\x54\x05\x23\x49\xf5\xc7\x20\xaa\x46\x35\xee\x32\x93\x0f\x3a\x28\x68\x5d\xaf\x71\xa2\x0d\xd2\x88\x09\x3b\x48\xa3\xa0\xda\xcc\x3c\x48\xa3\xc1\x63\x66\x01\x72\xf0\x98\x05\xa3\xc5\x08\x1f\x3c\x66\xc1\x14\x50\x35\xc4\x4c\x06\xe5\xb3\xb9\x4b\x95\x85\x34\xca\xcd\x39\xb8\xb4\x82\x52\xe2\x87\x19\x64\x50\xb0\x84\xff\x20\x83\x06\x19\xc4\x36\x1d\x6d\x15\x2d\xfe\xbd\x7c\xeb\x06\x19\x34\x92\x0a\xb1\x76\x6f\x35\xcd\x13\xac\x85\xa3\xc1\x19\x16\x54\x5b\x12\x07\x5f\x58\x30\x7c\x72\x07\x61\x14\xb4\x6a\x36\x20\x8c\x82\x91\x23\x8d\xc6\xa0\x8c\x82\xe1\x53\x3a\x28\xa3\x91\xcc\x20\x95\x6e\x1e\x64\x50\x50\xe5\x86\x1a\x54\xd0\x20\x79\x24\x69\x1d\x24\x4f\x30\x67\xf7\x4c\x9d\xd2\x55\xdd\x40\xa1\x79\x82\xc1\x8e\x18\x3c\x66\x43\x20\x65\x37\xec\x04\x52\x06\x43\x88\xe4\xa0\x8c\x46\xa2\x26\x6b\x37\x62\xe8\xa0\xa0\xe6\x30\xb9\x31\xa4\x06\x19\xa4\x11\x0b\x76\x90\x46\x41\x11\xa0\x3e\x48\xa3\xc1\x25\xd7\x57\x41\xd4\x7e\x25\xd5\xf7\x50\xef\xdc\x30\xd6\xb4\x2e\x67\x5b\xb0\x82\x8e\x07\x5f\x5b\xe0\x38\xdb\x31\xa8\xa5\xa0\x5a\xb4\x1d\xd4\xd2\x20\x83\xba\x16\x27\x83\x82\x15\xa0\x31\xc8\xa0\xc1\xfd\x96\x83\x17\xc7\xa0\x83\x82\x62\x0f\xf5\x20\x83\x82\xe1\x6b\x34\xc8\xa0\x21\x08\xb2\x6b\x0f\xee\xb7\xa0\xb1\x16\x07\xf7\xdb\xd8\x55\xaa\x2a\x9b\x4a\xbd\x90\x79\x7d\x0c\xfb\xe5\x06\x05\x25\xd2\x7c\x50\x50\x41\xe3\xf5\x18\x14\xd4\xe0\x92\xeb\x26\x78\x12\x2a\x18\x4d\x83\x73\xc9\x0d\xaa\x4a\xde\x9c\x41\x55\x05\x75\xc6\x56\x19\x54\x55\x30\x2d\x85\x0c\xfe\xb7\xe0\xf8\xf3\x4c\x95\x12\xdf\xd8\xcd\xbf\x84\x56\x30\xac\xd2\x0c\x42\x6b\xf0\xdc\xad\xca\x53\x55\xc1\xfa\x60\x0f\xaa\x6a\x08\x49\xcc\xe1\x94\x63\xd0\x46\x41\x91\xa5\x6b\x90\x46\xc1\xa1\xdb\x29\xa3\x71\x78\x0f\x4c\xdc\xc7\x7a\x66\xbe\x29\xd5\x25\x6d\x2b\xfa\xb0\xfb\xfa\x93\x21\xc1\x6e\xef\xc6\xe0\x4c\x1b\xf4\x45\xcf\x4a\xc8\xa0\x2f\x82\x61\x6f\xee\xa0\x2f\x82\x9d\xae\x1d\xe4\xc5\xa0\x25\xba\xf1\x47\x4b\x04\x53\x52\xa5\x41\x4b\x8c\xaf\x7e\xdf\x95\x63\x95\x2d\x1f\x6c\x9d\x47\x38\x8c\x9f\x0e\xf5\x5d\xe7\xc7\x0a\xb6\x8f\xa1\xc0\x8d\x35\x48\x82\x9c\xbd\x3e\x06\x49\x10\xf4\xc3\xa7\x98\x24\x18\xdc\x4c\xa4\xe2\x60\xec\x07\x83\xc1\x3b\xb8\x99\x06\xd7\x50\x0e\xd7\x1e\x83\x15\x1f\x1c\xd6\x20\x06\x2b\x7e\x08\xae\xa3\x93\x07\x33\x3e\x38\xc4\xc4\x0c\x66\x7c\x70\x54\x5f\x0d\xae\xa1\x21\xde\xae\x6b\x10\xf1\x76\xc1\x1c\xfa\x9d\xb7\x68\x5c\xeb\x01\xa9\x3c\x2b\x3b\x38\x2a\x93\x80\x95\x3d\xae\xfc\xdb\xf0\x3d\xe0\x59\x09\x6a\x53\x8e\x6b\xfd\xdb\xd7\x6d\xa9\x29\xcf\xca\xb8\x32\x4e\x23\x27\x86\x0d\x51\x41\xb5\x76\x3b\xf8\x5a\x06\x9b\xdd\x6e\xcf\xc1\x66\x0f\xe6\x66\x7c\xb0\xd9\x07\x57\x88\x5d\x35\x83\xe5\x1d\x0c\x2b\xf8\x83\xe5\x3d\x04\xba\x0d\x76\x13\x3b\x3b\x18\xad\xfd\xfd\x34\x8f\x31\x98\xe1\x83\x19\x3e\x7c\x18\x99\xe1\xc1\x5c\x06\x08\x33\x7c\xdc\x8a\xce\xac\xe2\x3d\x09\x1a\x1f\xfd\x60\x87\x0f\x81\x70\xf6\xef\x0f\x86\x78\xb0\x42\x99\x06\xf7\x49\xd0\xa4\x74\x19\xbc\x27\xc1\x26\xfb\xd8\xe0\x3d\x19\xbc\x27\x23\xde\x82\xc1\x5c\x0f\x06\x4d\x3c\x98\xeb\xc1\xb4\xe8\x34\x04\xb5\x05\x9b\xf0\xac\xc1\x80\x1f\x36\x34\x0d\xdf\x06\xde\x93\x60\x65\xa4\x1c\xbc\x27\x83\xf7\x44\x76\xf1\xc1\x7b\x12\x34\x6b\x20\x83\xf7\x24\xa8\x23\x36\xe0\xce\xf4\x0f\x9a\x1d\xd1\x3b\xd3\x7f\xcf\xee\xa5\x3a\x62\x13\xec\x0c\xfd\x60\xd2\x33\x3b\x43\x7f\x4f\x06\xbd\x2a\x55\xf9\x6e\xfb\xd2\x2e\x83\x5e\xc4\xcb\xce\x51\xb2\xcb\xa0\xb7\xbb\xf4\x75\xe9\xb5\xf3\x73\xa8\xd3\xd8\xd9\xf9\xc1\xda\x3c\xbc\x33\xf3\x83\x6d\x85\x88\xee\xec\xfc\x60\x93\x14\x77\x67\xe6\xef\x1f\x5d\x9c\x79\x69\x67\xd4\x07\xa3\x2b\x99\xd8\xb7\x9d\xbf\x44\xc2\xf1\x9d\x51\x1f\xd4\x1e\x5d\xb5\x33\xea\x83\xe1\x3b\xb3\x33\xea\x77\xb1\x6f\x63\x5d\xdb\x5d\x8b\xfc\xca\x6b\xb8\x73\x97\xec\x1c\x21\x92\x2f\xec\x1c\x21\x41\x95\x1e\x6b\xe7\x08\xd9\xd9\xfe\x32\x21\xec\x6c\xff\x60\x2b\x2a\xca\xf6\xdf\xd9\xfe\xa2\x9b\x77\xb6\x7f\x50\x3f\xd1\x5f\x3b\xdb\x7f\x67\xd4\xcb\xff\xbd\xb3\xea\x83\x21\x76\x61\x67\xd4\x07\x87\x45\xad\x9d\x51\x1f\x14\x36\xc1\xce\xa8\xdf\x39\x47\xcc\x41\x3b\xe7\x48\x50\x73\x72\xd7\xd8\x39\x47\x82\x95\x7b\x6c\xe7\x1c\xd9\x85\xbe\x65\xd2\xd8\xa9\x81\x9d\x1a\x88\x0d\xb9\x53\x03\x3b\x35\x60\xf3\xd9\x4e\x0d\xec\xd4\x40\x54\xe6\x4e\x0d\xec\xd4\xc0\xd0\x6a\xd4\x40\xd0\x7a\xde\x8c\x9d\x1a\xd8\xa9\x01\x1b\x91\x76\x6a\x20\x58\x3b\xb5\x76\x6a\x20\xd8\x7c\x8e\x76\xe6\xfe\x5e\x57\x3d\x53\x29\xae\x90\xa0\xac\x1a\xf0\x84\xec\x82\xe6\xc6\xba\xa6\x56\x35\xb2\x7e\xf3\x6f\x6a\x55\x8d\x3f\xdd\xc2\xef\x11\x2c\xa7\xf0\xce\xdc\xdf\xed\x91\xca\x19\x19\x63\x67\xef\x07\xcd\x9a\xfb\xce\xde\x0f\x56\x5c\xe1\xce\xde\xdf\x9b\x3e\xd6\x46\x3c\x26\xc1\x26\xf3\xf0\x2e\x44\x6e\xe7\x44\x11\x8a\xbd\x73\xa2\x04\x83\x0b\x6f\xe7\x44\x09\x96\xcf\x76\xe7\x44\xd9\x39\x51\x6c\x06\xdb\xa9\x87\x60\x48\x07\xb4\x53\x0f\xc1\x7b\x9b\xb2\xa9\x7c\x8b\xa9\x56\xfc\x52\x8f\xb6\x28\xd4\xac\x77\xed\x04\x45\xb0\x6d\x1a\x92\x5b\x65\xa7\x31\xf2\x25\xde\x49\x8c\xe0\xfd\x7f\xd7\x34\xc7\x8b\x51\x62\x40\xef\x34\xc6\xde\x35\x47\x4c\x82\x9d\xa2\x08\x9a\x35\x93\x9d\xa2\xd8\xfb\xaa\x94\x6b\x2a\x15\xad\x90\x43\xc0\xc6\x4e\x2a\xec\x82\xeb\xec\xd0\xd8\x69\x85\x60\x08\xf2\xdb\x49\x85\x60\x2d\x56\xec\xa4\x42\xb0\x49\x94\xba\x53\x0a\xc1\x9f\x81\x4b\x29\xec\xa3\xf9\xff\xd4\x9d\x2c\x08\x8a\x05\x98\x9d\x2a\xd8\x49\x00\xe9\xca\x77\x12\x20\x68\x76\x9d\xec\x24\x40\x30\x38\x6e\x76\x51\x79\xc1\x90\x1f\x63\xe7\x56\xd9\x05\xea\x49\x6a\xbe\x73\xa2\x04\x9b\x44\xb8\x3b\xed\xb0\x0b\xd4\x93\xd4\x7c\x27\x1e\x82\xed\x63\x72\x22\x1e\x82\x22\x58\x72\x27\x1e\x82\x7d\xce\xf6\xf7\xcf\xf5\xce\x11\x13\x0c\x0b\xdd\x3b\x47\x4c\x30\x4a\x04\xc8\x4e\x80\x04\x6f\x89\x3c\x4b\x63\xbd\x18\x6b\x6e\x24\x40\x76\x8e\x18\x39\xcf\x77\x0a\x24\x18\xc5\x97\x8d\x02\xd9\x77\x23\xe0\xf0\x04\x23\x60\xcf\xb0\x36\x95\xcb\xd8\xb1\x53\x20\x56\xba\x77\x0a\x24\x58\xd2\x73\xa7\x40\x82\x2d\xa7\x2a\x8f\xdd\xce\xac\xe0\xfd\xa5\x6b\x9a\x66\x26\xd9\xf2\xee\x92\xba\x13\x25\x52\xa4\xef\x44\x49\xb0\x71\x06\xec\x44\xc9\x4e\x94\xc8\x87\xbe\x13\x25\xc1\x10\x20\xba\x13\x25\xc1\xb6\xf6\xed\xec\x54\x49\x50\x25\xc6\xdd\xa9\x92\x9d\x47\xc8\xa9\x24\x3b\x8f\x50\x30\xb8\x16\x76\x42\x65\xe7\xfe\x91\x5d\x7d\xe7\xfe\x09\x2a\x33\x7c\x27\x54\x76\x4e\x9c\x3d\xb6\xe3\xce\x89\x13\xb4\x16\x1b\x76\x27\x54\x76\x4e\x1c\x09\x6e\x76\x4a\x25\x70\xea\xd2\xd8\x49\x95\x60\x88\x67\xdd\xf9\x70\x82\xf7\x97\xae\xa9\xc2\x8b\x95\x2e\x7a\xe7\xc3\x09\xde\xdb\x94\x4d\x15\x22\x7c\x64\xf9\xda\xe9\x9e\xa0\xc9\xd0\xb7\xd3\x3d\xc1\x28\x91\x42\x3b\xb7\xce\x4e\x0a\x49\x91\xbe\x93\x42\x41\x6d\x9e\x49\x0a\x05\x4d\x0c\xf7\xce\x47\xb3\xdb\x88\x25\xd1\xf9\xce\x49\x13\x8c\xc2\x66\xe2\xa4\xd9\x89\x28\xf9\x76\x77\x22\x2a\x18\x22\x72\x77\x22\x2a\x18\x85\xfd\x42\x44\x05\xdb\xca\xb9\xb0\x73\xd2\x04\x75\x33\x15\xd2\x55\xc1\x36\xe2\xbf\xda\xe9\xaa\xe0\xfd\x65\xc6\x02\x27\x4d\x30\x0a\xcb\x87\xd4\xda\x39\x69\xd8\x90\xfb\x77\xb5\xc7\x93\x1d\xe4\x29\x2d\x27\x4d\x30\x2c\x2d\xee\x9c\x34\xbb\x9d\x58\xf2\x2b\xee\x82\x0d\x83\x21\x5e\x76\x27\xd2\x76\xc1\x86\x7c\xdd\x3b\x95\x16\x0c\x8b\x54\xbb\x60\xc3\xa0\xd8\x0b\xb7\xf3\xf8\x04\xc5\x3e\xc0\x9d\xc7\x27\x18\xc5\xf4\x4e\xdd\xed\x7c\x34\xc2\x19\x76\x3e\x9a\x60\x88\xaa\xdd\xf9\x68\x76\x3e\x1a\x67\x21\xec\x7c\x34\xc1\x10\x28\xbd\x53\x77\xc1\xb6\x69\x0d\xea\x6e\x3f\xb5\x90\x89\x87\xc3\x24\x38\x22\xc7\x76\xfe\x92\xa0\xc8\xaa\xb1\x0b\xae\x0b\xb6\xf5\x44\x1e\x94\xa0\x7e\x7c\x38\x79\x50\x82\xba\xbe\xaf\x42\xeb\x82\x15\x14\xbc\x0b\xad\xdb\x2f\xc1\xda\xe6\x63\x1e\x94\x60\xd8\x18\xb8\x53\x7b\xc1\x10\x23\xbd\x53\x7b\xc1\xb0\x7e\xb4\x13\x7b\xc1\xfb\x67\x19\x07\x32\x62\x04\xdb\x1c\xfe\xdf\x68\xb9\x32\x5a\x18\x81\x04\x60\xd0\xd6\x87\x42\xb0\xdd\x4e\x13\xca\xeb\xbc\xd3\x84\xc1\xca\xbb\xb8\xd3\x84\x3b\x3f\xce\xfa\x4a\xf2\xe3\x04\xa3\x30\xd2\xf8\x71\x76\x7e\x9c\x35\x83\xf1\xe3\xec\xb2\x3d\x32\xce\xa9\xc9\x9d\x74\x94\x21\x76\x27\x1d\x83\x21\x8c\x7c\xa7\x0d\x77\xda\x50\xde\xd1\x9d\x36\x0c\x8a\xb0\xdc\x9d\x36\xdc\x05\xdb\x49\x7f\xba\x0b\xb6\x0b\x0a\x99\xbf\x93\x8b\xc1\x10\xf5\xbe\x93\x8b\x41\xe3\x72\xdb\xa9\xc5\x5d\xb2\x0b\x09\x31\x77\x72\x31\x28\x74\xe0\x4e\x2e\xee\xb2\x49\xfa\x8a\x90\x8b\xbb\x9d\x4c\x02\xfc\x76\x72\x2e\x18\x65\xfd\x99\x3e\xb0\x93\x69\x67\xde\x91\x73\x41\x65\x63\x4f\x72\x2e\x18\x25\x26\xf6\x24\xe7\xa6\x3d\x4a\xfb\xbf\xa4\x1d\x9d\xe2\xe2\x82\xc6\x19\x31\xb9\x70\xa6\xfc\x15\xfb\xee\x9f\x77\xd7\xf6\x1c\xe9\xb9\xe7\xd2\x74\x49\x1e\xc3\x96\x4b\x87\x4b\x7a\xc8\xa5\xaf\x4b\x19\x9d\x4d\xc1\x7f\x2e\xe5\x8c\x98\x4c\xa9\x93\x00\x0c\x86\x94\x8e\x93\xfe\x9b\xfc\x3c\xfb\xee\x97\xb7\x6b\x99\xda\xbb\xdb\x1e\x97\x32\x95\xc5\xd6\x9e\x24\xe1\xb4\x1d\x6a\xdf\x5d\xd3\x32\x49\x86\x91\x33\xca\xc7\x14\x69\x37\xb9\x83\x24\x3f\x9f\xdc\x41\xc1\x72\xc3\x4c\xca\x71\x0a\xab\xa3\x8b\x26\x9d\x18\xd4\xcf\x7a\xa8\x06\x8a\x4c\xb4\x62\x3b\xc9\xc4\x49\xff\xed\x71\x7c\x4f\xfa\x2f\x18\x96\x6c\x27\xfd\x37\x8b\xe2\xc6\x20\x9c\xbc\x3a\x41\xb5\x83\x79\x8a\x8d\x9b\xc5\x1b\x91\x15\xb8\x49\xc6\x05\x23\xe7\x12\x8f\x49\xc5\x05\xad\xab\x01\x15\x37\xa5\x93\x90\xc2\x7c\x92\x54\xb3\x66\x66\xcc\x48\x9c\x14\xd5\x4c\x7e\xc2\x3a\x63\x6e\x4c\xbe\x91\xa0\xd9\xff\x3b\xc5\x9b\x05\x9b\x24\xa6\x53\xbc\xd9\x14\x6f\xa6\x18\x44\xd6\xe4\x54\x99\x1f\xcf\xd4\xc9\x51\x59\xfb\xee\x97\x9a\x23\x22\xab\x1a\x69\x44\x56\x30\x2c\x22\x4c\x3e\x95\x49\x77\xcd\xbc\x4b\x93\xee\x0a\x86\x6d\x01\x93\xee\x0a\x86\xb4\xd8\x93\xec\x0a\xb6\x19\xc1\x36\xc9\xae\x60\x2d\x13\x4d\xb2\x2b\x18\x39\xb1\x6f\x4c\xa1\x6b\x41\xdd\xd7\x0f\x75\xba\xcc\x14\xd5\x0f\x35\x0f\x21\x26\xb2\x6c\x12\x62\xc1\x11\x8b\x7f\xd2\x61\xc1\xb0\xe9\x60\xd2\x61\xc1\x10\xd5\x38\xf9\x75\x26\x69\xc6\x50\x9c\xa4\x59\xd0\xac\x77\x4c\xd2\x6c\x92\x66\x32\xbc\x4f\xd2\x2c\x18\x8e\xa6\x98\xa4\x59\xb0\xad\xed\xa9\x93\x36\x0b\x96\xe8\x9a\xb4\x59\x50\xcb\xe1\x2e\x4d\x46\x9b\xcd\x58\x76\x93\x36\x0b\x36\xdb\xb4\x26\x6d\x16\x14\x9e\xd9\xc9\xff\x13\x0c\x7b\x3c\x26\xb5\x36\xfb\x2a\x46\x9e\x49\x4d\xcd\xe1\xdb\xed\x92\x67\x8e\x7c\x27\xbc\x4f\xc2\xcf\xe6\xca\x56\x91\xff\xe7\x76\x09\x86\x4d\x2a\x93\xbe\x0a\xd6\x4e\xeb\x49\x5f\x05\xa3\xe4\x0b\x3c\x79\x5d\x82\x21\xd2\x6c\x52\x5c\x41\x71\xc0\xc7\xa4\xb8\x82\x66\x99\x71\x52\x5c\x53\x24\xdb\x2c\xca\xaa\x9f\x12\xc9\x66\xcf\xc4\x14\xc9\x36\x79\x58\x6c\xa1\x9a\x04\x4e\x30\x6c\xf1\x98\xf4\xcd\xe4\x61\x91\x55\x7d\x12\x38\x41\x95\xe5\x7b\xd2\x37\x93\xbe\x89\x5e\x9e\xf4\xcd\x24\x3f\xa4\x50\x9f\xe4\x47\x50\xac\xee\x4f\xf2\x23\xd8\x96\xeb\x7a\xf2\x93\x04\xc3\xfe\x9c\x49\x91\x04\xef\x6d\xfe\x4d\xd9\xb2\x75\xc9\x09\x0c\xd3\xd6\xa5\x60\xe3\x8f\x9c\x44\xca\x9c\xf6\xb2\xc4\x22\x99\xd2\x34\x04\xc3\x5e\x99\x49\x56\x4c\xf1\x62\x32\xad\x4f\xf1\x62\xc1\xb0\x23\x65\x8a\x17\x9b\x34\x44\x8e\x0c\x1f\x93\x86\x08\xb6\x3d\x7a\x76\xd2\x10\xc1\x61\x07\xf5\xa4\x21\x26\x0f\x08\xb7\xdf\xa4\x04\x82\x29\x91\xc5\xa4\x04\xa6\x08\xaf\xa9\x8d\x48\x81\xe0\x10\xdf\x3d\x85\x70\x4d\xea\x60\x1a\x91\xd4\x41\xb0\x82\x93\x27\x75\x30\xbf\xba\xcf\x6b\xc6\xee\x0f\xca\x6e\x3a\x67\xf6\x07\xd5\x81\x03\x93\xd9\x1f\x94\xee\x8d\x62\xf6\x4f\xc6\xfb\x1c\xc7\x3f\x7c\xa9\xd9\xf6\x41\xcd\xc9\xd1\x63\xb2\xed\xe7\xda\x5b\x64\xb0\xb3\xed\x83\xb5\x54\x3b\xd9\xf6\x53\x00\x96\xf9\x8d\x6d\x3f\xd9\xf6\xd3\x64\xc0\xb6\x0f\xaa\xd0\x8d\xc9\xb6\x9f\x6c\x7b\x92\x6b\xb2\xed\x27\xdb\xde\x90\x65\xdb\x4f\xa9\x0c\xa6\xd7\xc9\x76\x9d\xa0\xc8\x47\x30\x59\xed\x53\xe6\x3e\xb9\xd3\x27\xb3\x3d\x18\x65\x5d\x52\x0e\x3e\x13\x99\xe9\x27\x9f\x49\x50\xf6\x75\x9b\x97\x53\xd0\xd4\x8c\x2c\x9d\x82\xa6\x82\xfa\x51\x5c\x41\x53\xd3\x16\x1b\x71\x65\x53\xd4\x54\xb0\x49\x39\x3f\x05\x4d\x4d\xe1\x50\x72\xb4\x4c\xc6\x7c\xb0\x49\x9a\x37\x19\xf3\x33\xc7\x29\x55\x71\x3c\x93\xe9\x1e\x34\xf9\x85\x27\xdf\xcd\xe4\xbb\x59\xbf\x34\x2e\x5e\xcc\x3d\x4b\x03\x93\x7d\x1f\x94\x8f\x0f\x03\xfb\x7e\xda\x27\x23\xcd\xd0\x64\xe0\x07\xc5\x09\xa6\x93\x81\x3f\xe5\xb2\x3b\x7c\xab\xd9\xe9\xc1\x3e\x4d\x4c\xcc\xf4\x60\xb9\x8b\x26\x33\x7d\xca\x51\x70\xac\x6b\x2a\x75\xe7\xdd\xcc\xe2\xc6\xb4\xff\x65\x26\x8e\xaa\x3a\x41\x6c\x72\xe7\x04\x73\x6e\x6e\x53\x83\xdb\xae\x67\x9f\x19\xc1\x4f\x41\xad\x6a\xc0\xd6\x9e\x7c\x33\x87\x9f\x32\xb6\x27\x63\x5b\xef\x31\xb6\x83\x22\x01\xdd\x64\x6c\xcf\x47\x7b\x9b\x85\x98\xd1\x41\xb1\xa0\x38\x85\x4d\xcd\x1c\x48\x54\x97\x55\xc2\xc5\x12\x8c\xf5\x6d\xe3\x62\x09\xb6\x99\x65\x91\x29\x46\x6a\xf2\xba\xc8\x7c\x3e\x79\x5d\x82\x61\xbf\xd8\x64\xa6\x4f\xa1\x54\x0e\x53\x3d\x18\xe0\x87\x0c\x71\x47\xd6\xe8\x0e\x16\x78\x30\x04\x9b\x1d\x42\xa9\x0e\x46\xb9\x74\xe8\x07\xab\x3b\x68\x92\x04\x1c\xac\xee\x43\xe2\x00\x99\xbc\x0f\x96\x72\x30\x44\xa4\x1f\x2c\xe5\x83\xab\x44\x56\xed\x83\xa9\x1c\xb4\xbe\xca\x71\xbb\x64\x73\xa5\x72\x3c\x2e\x65\xe6\x8b\xfd\x72\xb0\x94\x83\x61\x53\xd6\xc1\x50\x3e\x6c\x59\x91\x8e\xfb\x60\x29\x07\xc5\x8e\xb4\x83\xa1\x7c\x70\x5a\x1c\x69\xca\x83\xd3\xe2\x28\xfe\x2d\x97\xd8\xb1\x47\x91\x5f\x39\x6a\xef\xb0\x7d\x23\x18\xb6\xbc\x1d\x02\x96\x0e\x31\x46\xf6\xf5\x1c\xbc\x0a\xc1\x5a\x78\x39\x78\x15\x8e\xa2\x13\x32\x9f\x1f\x5c\x08\x41\x93\x87\xf1\xe0\x41\x38\xb8\x0b\x44\xaf\x1d\x8c\xdb\x60\xc8\xc3\x79\x70\x17\x1c\xd2\xa7\x99\x16\x0f\x96\x6c\x30\x6a\x16\xe6\x0e\x96\xec\xc1\x37\x70\x64\xb2\x38\x98\xad\x87\x58\xa0\xe2\x01\xca\x66\x43\xfd\xb1\xbb\xa6\x41\xd8\xad\x59\x82\x3c\x98\xad\x07\xdf\x80\x4c\xc5\x07\x23\x35\x18\x36\xb3\x1d\x8c\xd4\xc3\xf6\x76\x99\x8a\x0f\x36\x63\x30\x05\xfd\x1e\x6c\xc6\x83\xad\x26\x3d\xe7\xc1\x56\x0b\xf6\x23\xa6\xc2\xc1\x56\x0b\xfe\xb4\x2e\x5b\xed\xe8\xde\x6f\xbd\x60\x1d\x3d\x18\x36\xf7\x1d\x22\x73\x0e\x91\x39\x16\x42\x0e\x91\x39\x87\x0d\x0a\x9b\x4b\xab\x1c\xda\x68\xfd\x54\x1b\xe5\xcc\x1e\x7b\xef\x0e\xab\xed\x41\x11\x97\x7d\x58\x6d\x3f\x18\x88\x0e\xd7\x3d\x18\x88\xc1\x30\x81\x1c\x96\xdb\x8f\xec\x4f\x68\xf2\x99\x1d\x2c\xc4\x60\x70\x6f\x1c\x2c\xc4\x23\x51\x38\xed\xb3\x7e\xea\xbd\x8a\x3d\x28\x53\xd8\xc1\x1e\x0c\xde\xdb\x52\x36\x06\x61\x70\xc8\xf0\x72\x30\x08\x8f\x58\x7f\x4d\xa6\xe9\x83\xf5\x17\x8c\xfa\xf9\x87\x00\xf1\x83\x71\x18\xbc\xff\xa2\x9c\xda\xe6\xc5\xb4\x04\x7a\x58\xa2\x0f\x86\x6d\xb1\x87\x15\xfa\x23\x09\xcd\x9a\x85\xe8\xc3\x7a\x7c\x30\xec\x8f\x3c\x2c\xb8\x1f\xbb\x54\xf3\x9a\x95\xa9\x19\xcc\x8f\xb7\x82\xa5\x19\xbc\xb7\xa5\x86\x4c\xcd\xc3\x69\x3d\xf9\x72\x1d\x4c\xcd\x60\xc8\xde\x7b\xd8\xd3\x10\x0c\xc9\xfc\x0e\xe1\x3d\x47\x16\xdc\xdb\x47\x0d\x2c\xb8\x07\xeb\x68\xe9\xc3\x82\xfb\x91\x95\xf4\x26\x3d\xf0\x61\x29\x3d\x18\xb6\x47\x1e\x4c\xd9\xe0\xbd\x2d\x0f\x65\xcb\x06\x9b\xf3\x83\x0f\xa6\x6c\xb0\x35\x19\x7d\x0f\xb6\x6c\x30\x6c\xdd\x3c\x98\xb2\xc1\x7b\x5b\x6a\xc5\x96\x0d\x9a\x19\xfd\x60\xcb\x1e\x33\x15\xcd\x97\xeb\xb0\xb8\x1e\x8c\x35\xb2\x2d\xae\x1f\x53\xef\x15\xb7\xa9\xd5\xcc\xc8\x36\x91\x4a\x5f\x76\x1c\xab\x68\xf9\x29\xf3\x36\x28\xb2\x45\x1c\x16\xd2\x83\x21\x2b\xd6\x61\x21\xfd\x38\x8c\x45\xff\xc6\xe2\x0d\x86\x8c\xd5\x07\x8b\xf7\x38\x8c\x45\xe3\xd3\x12\x79\x30\x6c\xa3\x3c\xac\x90\x07\xdb\x6a\x21\x76\xf1\xf1\xd5\xef\x59\xa5\x3c\xd8\xa8\xc1\xb0\xb3\xf2\x60\xa3\x06\x4d\x74\xe5\xc1\x46\x0d\xb6\x26\x86\xf6\xb0\x34\x1d\x1c\x7f\x7e\xa9\x18\xd9\x3e\x50\xd7\x2f\x15\xe3\xab\xd5\xb2\xea\x73\x7c\x57\x39\xd2\x6a\x31\x89\x0e\xe6\x6b\x30\x19\x9c\x07\xeb\xf5\xf8\x19\xf3\x46\x2e\x5b\x35\x18\x6b\xb6\xb5\x0d\xfe\xf8\x69\xef\x2c\x18\x1d\x6c\xd5\xc0\x49\xf9\xe3\x60\xaa\x1e\x3f\x75\xcf\x9a\xe4\x61\xd1\x39\x58\x19\x4d\x0e\x8b\xce\xc7\x4f\xe3\x46\xaf\x1c\x76\xb3\x07\xc3\xae\xd2\xc3\x96\x82\x23\xf9\xa9\x9b\xcc\x21\xc7\x6f\x95\xd7\x47\x35\xef\x01\xc3\x37\x78\x6f\x4b\xd9\x58\xbe\xc1\x90\x34\xed\x60\xf8\x1e\xa7\xd6\x8d\x3d\x7f\x30\x69\x83\x61\x57\xe9\xc1\xa2\x0d\xf6\xf5\x59\x61\xd1\x06\x43\x82\xe4\x83\x41\x1b\x4c\x1b\x74\x0e\x06\x6d\x30\x84\x71\x1e\x16\xb5\x83\xf7\x91\x69\x22\xcb\xda\xc1\x26\x2f\xfc\x61\x59\xfb\xb8\x34\x6e\x84\xf6\x61\xc5\x3a\x18\x76\xcf\x1e\xcc\xde\xe3\xd2\x6a\x3e\x8c\xec\xd2\xa0\x6c\xdd\x6d\x4a\x7b\x69\x35\x9f\x32\xa6\x6a\x30\x64\x8f\x3c\x98\xaa\xc1\x90\x47\xed\x60\xaa\x1e\x62\xf9\xe5\xd2\x3c\xd8\xa0\xc1\x21\x8f\xda\xc1\x06\x3d\x6e\x83\x2d\xda\xe0\xb0\xe0\x1b\x8c\xd5\x2d\xcc\xd2\xe3\x31\xc9\xc4\x1e\x3c\x58\x97\xc1\xb0\x53\xf5\xb0\x92\x1b\xcc\x8f\x2f\x99\x95\xdc\xe3\xf1\x00\x46\x1d\x7b\x30\xd8\x24\x66\x3a\x9e\xf5\x80\xdb\x31\xf4\xe9\x2a\xcb\xb6\xc1\x90\xce\xea\xcb\x6a\x0c\xde\xdb\x46\xae\x6d\xae\x6d\xaf\x65\x1d\x31\xf6\x65\x35\x06\x73\x4b\x39\xbe\x02\x73\xbe\x31\x24\x9b\x45\xd8\x2f\x43\x32\x38\xf4\xcb\x97\x21\xf9\x4d\xb8\x7d\xdb\x32\x85\x7f\xad\xc2\x06\xdb\xc8\x90\xf9\xb2\x2d\xbf\x59\xfe\x6c\x92\x35\x7e\x59\x75\xc1\xe4\x10\xf8\x5a\xfe\xfc\x6e\x36\x54\xe4\x45\xf8\x5a\xeb\xfc\x6e\x99\x9f\x32\xa3\x7c\x85\xbe\x7f\x6d\x17\xce\xab\xf1\x15\xfa\xfe\x4d\xa8\x4b\xdb\x94\xcd\x5a\x67\x30\xbb\xba\xb3\x1a\x83\xe6\xc8\x81\xaf\x50\x97\xef\x3a\xd0\x3f\xe3\xe3\xcb\x92\x0c\xd6\x71\x7f\x5f\x2b\xa2\xc1\x7b\x5b\x2a\x6a\xbb\x70\x30\xf7\x8f\x5f\xaa\x41\x92\xfa\x66\x11\xf3\xaf\xdf\xec\xaf\x88\x99\x60\xd8\xb3\xfb\xb5\xd4\x1a\xbc\xff\x92\xda\x58\x6b\x0d\x36\x39\x41\xbe\xd6\x5a\xbf\xc5\x20\xd0\x36\x02\x5f\x82\xc1\xb4\xf8\xb2\x5a\x83\xf7\xb6\x14\x9d\xd9\x1a\x34\xee\xfd\xaf\x55\xda\xaf\x53\x64\xa4\x48\xf8\x32\x5b\x83\x21\x97\xc0\x57\x94\xcb\xb7\xaa\x61\xf3\x04\x55\x78\x31\xed\x7d\xfc\x32\x6e\x83\xd9\x37\x0f\x50\x83\x9a\xe9\x5c\x69\xc5\xc2\x7c\x63\xef\x36\x47\xb4\x7e\xd9\xbb\xc1\xb0\xfb\xf9\xcb\xde\x0d\x46\x5d\x25\x53\xcf\x64\x81\x5a\xb6\xf8\xd7\xd2\x6a\x30\xac\xa3\x7c\x2d\xad\x7e\x9b\x11\x15\x4d\xf0\xb5\x90\x1a\xac\xcc\x8d\x5f\xeb\xa8\xc1\xb1\x5e\x1d\x0b\xa9\xdf\x84\xc3\x37\xd3\xcb\x97\x09\x1c\x4c\x1b\x49\xbe\x56\x4d\xbf\x59\xfb\x6c\xf2\xfc\x7d\xad\x7d\x06\x83\x29\xfe\xb5\xf6\xf9\xed\x5a\x2d\x13\xf0\x97\xbd\x1b\x0c\xc9\x96\xbe\xb6\xe8\x7e\x1d\x5b\x19\x1b\xe9\xcb\x02\x0e\xde\x5f\xa6\xa2\x4c\xe0\x60\xd8\x6d\xfe\x15\x83\xf2\xed\xc6\x42\xa6\xdb\x2f\x7b\x37\x98\x76\x75\x7d\x99\xbb\xc1\xd6\x64\xf7\xf8\xb2\x77\x83\xa5\x05\xbf\xd6\x48\x83\x29\x2d\xd1\x97\x05\xfc\x1d\x86\x47\x66\xe0\xaf\x15\xd1\x60\xd8\xa3\xff\x65\x01\x7f\xf7\xf5\x80\x34\x1b\x3b\xf2\x6b\x0b\xad\xf7\x84\x1d\xf9\xdd\xe5\xc5\x8c\x98\xf8\x32\xfd\xbe\x4c\xbf\x7c\xc7\xbf\x4c\xbf\x2f\xd3\x6f\xcb\x3c\xfa\x65\xfa\x05\x43\x9c\xe5\x97\xe9\xf7\x65\xfa\x49\x69\xf4\x65\xfa\x05\x55\x80\xc0\x97\xe9\xf7\x65\xd3\xad\x79\x8e\x4d\x17\xac\x75\xb6\x2f\x9b\xee\x9b\x50\x88\xc6\x45\xf8\x65\xad\x7d\x05\x68\x57\x97\x94\x2d\x99\x65\x9b\x8c\x6b\x5f\xa6\x59\x30\xe4\x8c\xfb\x5a\xb2\x0c\xde\xdb\x52\x7b\x6b\x96\xc1\xb0\xb3\xfe\x2b\x14\x22\x18\x32\x5e\x7d\xc5\x6c\x7f\xd9\x79\xc5\xdc\xca\xce\x0b\xf6\x69\x80\xb0\xf3\xbe\x59\xd9\x6c\x72\xb5\x7d\xad\x6c\x06\xc3\xce\xfa\x2f\x3b\xef\x9b\x18\x87\x56\x0c\x5e\x16\x5c\x70\xc8\xce\xf0\x65\xc1\x7d\x0f\xc5\x8d\xc9\xf2\xb5\x66\x19\x0c\x5b\x7c\xbe\x76\x9d\x06\x5b\xb3\x24\xff\xb5\x8c\x19\xcc\x4f\xac\x87\xaf\x65\xcc\xe0\x58\x73\x9b\x20\x87\xef\x57\xeb\x9a\xe3\x19\x7f\xc1\x90\x2f\xe0\xcb\xf6\x0b\xde\xdb\x52\x36\xc6\xdf\x97\xf1\xd7\x3d\x40\x0d\xbe\x89\x59\xf5\x72\xb0\xfd\xbe\x5f\x67\x5b\x17\xd7\x74\xc2\x8b\x63\x1a\xcf\xd6\x29\xbf\x59\x94\x6c\x82\x9e\xbe\x16\x25\x83\x63\x8d\x40\x86\xde\x37\xc7\xb9\xff\x99\x29\x99\x70\xc1\x5c\xc5\x15\x37\xf0\x65\xd5\x89\x27\xfa\xb2\xea\x82\xf9\x99\x7e\xa9\xb8\xa7\x87\xc6\x08\xf8\x5a\x81\x0c\x76\x2b\x6e\x5f\x71\x03\xdf\xcb\x6d\xc6\x91\xc5\xc0\xe0\x58\xb3\xc5\xb5\x6e\xcb\x67\x82\x6b\xff\x6b\xfd\x2e\x38\xd6\x8c\xcd\x4e\x0a\x0e\xf6\xe0\x97\x9d\x14\xbc\xbf\x74\x4d\xbb\xbd\x38\xd6\xec\xc9\x41\x1f\x1c\xeb\x55\x63\x4d\x05\x07\x55\xf1\x65\x4d\x7d\x99\x4e\x3c\x2a\x5f\xa6\xd3\x77\x99\x4e\x2e\x69\xb5\xdb\xd2\x7a\xaa\xce\xc9\x1e\x6c\x8d\x17\xed\xcb\xcb\x1e\x1c\x6c\xe1\xaf\x4c\xa4\xc1\x7b\x5b\x9a\x83\xe3\x3d\x38\xd6\x14\xc8\x0e\xfb\x3e\x5a\x2d\xcb\x1d\x5f\x16\x56\x70\x30\x72\xbf\x2c\xac\xef\xa3\x47\xf5\x8b\xa0\xe9\xe0\x78\xdf\xdb\xbf\x7f\xb5\x2d\xf8\x7d\x1f\x1d\x3e\x3d\x4c\x39\x93\x91\x46\x68\xc7\xd7\xea\xde\xf7\xf1\x3a\x45\x6a\xff\x18\x65\xbf\x8f\xf7\x3a\x3d\xfe\x13\xf4\x1c\x4c\x6b\x74\x3f\xd6\xd6\x8f\x69\x65\x79\xef\xc7\xb4\x0a\xa6\x0d\x20\x3f\xa6\xd5\x2f\xd9\x61\x9a\x65\xa4\x9f\xd5\xb7\x9f\xd5\xb7\xbc\xb0\x3f\xab\x6f\xbf\x2c\xb5\x35\xe2\xf5\x67\xa9\x2d\x38\x4c\xdf\x3f\x46\xd9\x2f\x0e\xe8\x46\x31\xff\x38\xa0\x83\xc3\xe7\xec\xc7\x28\xfb\x31\xb7\x2c\x71\xfd\x98\x5b\xc1\xc1\xbe\xfd\x31\xb7\x82\xf7\xb6\xfc\x1b\x7b\x2b\xa8\x0c\xb5\x1f\x73\xeb\x27\x3b\x4b\x26\xb5\x1f\x73\x2b\xd8\x2c\x05\xfd\x58\x5b\x41\xb5\xf1\xe2\xc7\xda\x0a\x46\xdf\xfd\xbd\x56\xcb\xde\xc3\x66\x01\xe1\x27\x4c\x39\x58\xe7\x11\xfe\x18\x5d\xbf\xaa\x39\x32\x7f\xfd\x18\x40\xc1\x7f\x2f\x79\x66\xf5\x6f\xd5\x35\xff\xf6\x62\x38\x0e\xe9\x57\xd7\xbf\x4d\xb7\xa5\x52\x0c\xa0\x60\x74\xc5\x65\x00\x05\xeb\x08\x85\x1f\x03\xe8\xc7\x00\x62\x14\xfd\x18\x40\xc1\xb4\x6b\xfe\xc7\x00\x0a\x8a\x2d\x65\x3f\x06\xd0\x2f\xde\xe6\x95\x0b\xf7\x67\x25\x2f\x18\xb6\xab\xfc\xd8\x44\xbf\xa6\x43\x8d\x05\xce\xe5\x60\xf8\xba\xff\xd8\x44\x41\x75\xa6\xdd\x8f\x4d\x14\xbc\xbf\xac\xb9\xa6\x52\x89\xf2\xdd\xa2\x8e\x7f\x56\x0a\x7f\x71\x25\x37\x33\xce\x8f\x51\x14\x6c\xfb\xf0\x4b\x95\x62\x27\x99\x5b\x7f\xec\xa4\x60\xca\x9e\xf2\x63\x27\xfd\xfa\x7a\x68\x2a\xcf\x28\x0a\x86\xfd\x91\x3f\x46\xd1\x8f\xb5\x63\x43\xc0\x8f\xb5\x13\x1c\xab\xd9\x58\x3b\x3f\xd6\x8e\x04\x5c\x3f\xd6\x4e\x30\x3f\xeb\x36\x1d\xff\xa2\xd9\x8c\xf6\x63\xed\x04\xcd\xea\xe1\xcf\x7a\xdf\x4f\xc8\x6d\xe2\x8b\x7e\xec\x9f\x60\x63\xfb\xfd\xd8\x3f\x41\x95\x86\xe6\x67\x05\x30\x58\x27\x4a\xfc\x2c\x00\xfe\x72\x44\x77\x93\x5f\xe6\xc7\xff\x1b\xd4\xdd\x50\xb3\x00\xf8\xdb\x8d\x52\x2d\xc4\x72\x0a\xa6\xfd\x6f\x3f\x21\xaf\x3f\xab\x6d\xb2\xb8\xfc\xac\xb6\x05\x93\x51\xf0\xb3\xda\x16\xec\x4e\x00\xfb\x31\xb9\x82\xcd\x0e\xf0\x1f\x93\x2b\x78\xff\x2c\x95\xda\x57\x39\x7e\xd9\xd0\x90\x36\x63\x85\x05\x45\xb0\xc6\x8f\x15\xf6\x9b\x5a\xdb\xeb\xc8\xe4\xfa\xcd\x88\x5e\x8d\x66\x65\x2d\x68\x72\xe8\xff\x18\x61\x3f\x0b\x6b\x26\x00\x46\xd8\xcf\xc2\x5a\x35\x48\x2d\xac\x05\x9b\x9c\x22\x3f\x0b\x6b\xc1\x90\x10\xee\x27\x92\xf5\xc7\x7c\xb3\x33\xea\xc7\x7c\x0b\xd6\xf2\xc7\x8f\xf9\x16\x54\x67\x7f\xfc\x04\xb2\xfe\x1c\xf7\xbd\x2b\x99\x6a\x5a\x92\x13\xb9\xf5\x9b\xab\x9e\x11\x28\x43\x31\xbc\x9f\x87\x8e\x8a\xd7\xe2\xc7\x7c\xfb\xc5\x09\xbd\xc6\x1e\xeb\xed\x77\xac\x4a\xa5\x39\xac\xc9\x05\x4d\x1a\xb3\x1f\xeb\xed\x67\x99\x4e\x76\xfc\x1f\xf3\x2d\xd8\xc5\xb3\xfc\x2c\xd3\x05\xef\x6d\x69\x22\xc1\xad\x3f\xcb\x74\x06\x0c\x23\xef\x77\x98\xab\x7d\x6e\x8e\x55\x5e\x1f\x76\x97\xbc\x3e\x5f\xbd\x17\x1b\xfa\xc7\xca\x0b\x86\xbc\x45\x3f\x46\xde\xef\x2b\x54\xc2\x57\x89\x49\x17\x1c\x6c\xd7\x9f\xb0\xd5\xdf\x77\x95\x2d\x35\x65\xd2\x05\x43\x7a\xa3\x1f\x8b\x2e\x38\xd8\xa9\x3f\x16\xdd\x2f\x3b\xf8\x5a\x8b\x87\xe2\x67\xed\x2e\x38\x18\x5c\xbf\xef\x2a\x6e\x3e\x71\xfd\x1f\xbe\xd8\x3f\x06\xdf\x2f\x19\x2e\x9b\xc3\x0a\x7e\x96\xf6\x82\x29\xb6\xea\xc7\x06\x0c\x46\xcf\xea\xed\x8f\x0d\x18\xac\xb3\x65\x7f\x16\xfb\x82\xad\x1b\x3d\xfc\xd2\x3f\xeb\x7f\xd6\xc5\x7e\xd6\xff\x82\x26\x55\xf1\x8f\xf1\xf8\x4b\x4a\x91\x26\x71\xcd\xcf\x06\xc2\x60\x8a\xdc\xff\x31\x1e\x83\xe9\xbc\x88\x1f\xe3\xf1\x67\x49\x50\x24\xed\xcf\x92\x60\xb0\x39\xc7\xe5\x67\x49\xf0\x67\x49\x90\x4a\xfd\x59\x12\x0c\x8a\x93\xbb\x7e\x96\x04\x83\x41\x1f\xfd\x58\xa2\xbf\x84\xab\x36\x39\x05\x7e\xe2\x55\x83\x26\x9d\xf3\xcf\x66\xc4\x60\xae\x51\x61\x33\xe2\x2f\xee\xf1\xb5\x2d\xe7\x67\x31\x31\xa8\xb3\xb8\xa4\x06\x71\x8f\x37\xfb\xd5\x7e\x56\x13\x83\x22\x8c\xe4\x67\x35\x31\xd8\x56\x9c\xe0\xcf\x72\xe2\x4f\xaa\x7f\x53\xad\xd5\xc4\xdf\xa5\x43\xb3\x4c\xf3\xe3\x45\x0f\x36\xdb\x8f\x7f\x0c\xe7\xa0\xf1\xed\xfd\x18\xce\xc1\x26\x70\xf6\x67\x81\x31\xd8\x9c\xe7\xf3\xe3\x57\x0f\x36\xf6\xfb\x8f\x5f\xfd\x27\xf3\x88\x2e\xe6\x57\x0f\xde\x52\xa4\xd1\x38\xd6\x83\xcd\x5a\xe2\x8f\x5d\xfe\xb3\x80\xd9\x7c\x3a\x19\xe6\x41\x61\x2f\xfe\x18\xe6\xbf\x5b\xe7\x69\x35\x4b\x93\x41\xb3\x0b\xfa\x27\xd6\xf5\xc7\x70\x16\x1f\xf6\x63\x38\x07\xa3\x99\x82\x18\xce\xc1\xc6\x61\xfe\xbb\xd7\x03\xb4\x6d\xcc\xfc\x1f\x8f\x79\x50\x25\x89\xf9\x71\x98\xff\xd8\xd2\x76\x58\xfe\xd8\xd2\xc1\x10\xaf\xf8\x63\x4b\x07\xef\x6d\xae\x69\xc9\x27\x79\x12\x0c\x49\x1e\xf3\xdf\xa3\x8d\x7c\xfc\x19\xd0\xc1\x68\xa6\x42\x1e\xf3\x9f\xb5\xcf\x35\x27\x5b\xfb\x0c\x86\x8c\x13\x3f\x6b\x9f\x3f\x6b\x9f\x92\xb8\xfc\xac\x7d\x06\x87\x97\xea\x64\x66\x9f\x56\x30\x25\x71\x39\xd9\xd4\xc1\x68\x79\xb9\x4f\x2b\x98\xc1\x90\x71\xe2\x14\x7f\x1a\x0c\xe9\x2b\x4e\xf1\xa7\xc1\x14\xa7\x76\x8a\x3f\x3d\x13\x59\xda\x5a\xf7\xcc\xd3\xb5\x33\xc5\xf0\xff\x97\x4b\xa9\x40\x66\xdf\x93\xbf\xfc\x64\xb2\xdb\xa0\x7d\x32\xd9\x83\x95\x1b\xe8\x64\xb2\x07\xcd\xa6\x84\x93\xc3\x3c\x28\x02\x1d\x4f\x46\xfc\x69\x69\xd5\x9e\xdc\x93\x15\x1f\x94\x7d\xfd\x59\x73\x29\x5b\xd8\x0e\x7f\xa6\x31\x24\x1a\x89\x57\xf6\x64\xea\x07\xc5\xf2\xc2\xc9\xd4\x0f\xde\xff\x77\x9b\xd6\xd8\x32\xd4\xf2\xa9\x38\x6d\x49\x0c\xb6\xd1\x3d\x52\x63\x6c\xab\x9a\x6e\x53\xcd\x28\x02\x39\x3f\x4e\x82\xe0\xb4\x00\x2b\xaa\xf6\xa4\x08\x82\x21\x23\xc7\x49\x11\x04\x75\x5b\x77\xa9\x66\xd6\x5f\x7d\xb1\x4e\x8a\xe0\x74\x5a\x78\x3c\xbc\x27\x45\x10\xbc\xff\x9f\x7e\xb2\x97\x31\xd8\xec\xca\x3f\x89\x84\xa0\xd9\x07\x71\x12\x09\x81\x73\xa4\x4f\x0b\xb3\xc1\x70\x7e\xda\x69\x5d\x36\x18\x36\x7b\x9e\xd6\x65\x83\x29\xc7\xc8\x69\x27\x63\x70\x98\xba\x4f\x31\x07\xc1\x5b\x2e\x65\x35\x32\xd6\x8a\xae\x4b\x5a\xec\x45\xb1\x89\xee\xb4\xa0\x1b\xac\xa3\x2c\x4e\xeb\xb9\x27\x3d\x23\xe6\xf8\xa4\x67\x82\xd1\x3f\x7e\xa9\xc5\x12\xad\xd0\xda\xfa\x37\x4d\x96\xcd\x8d\xeb\x05\xb0\xec\x1b\xf4\x7d\x5d\xd2\x62\x96\x7d\x9d\x8d\x7f\x92\x3d\x41\xb3\x5a\x79\x52\x3d\x27\x3d\x23\xaf\xce\x49\xcf\x04\x6d\xb6\x7f\x38\xaa\xeb\x24\x77\xce\xc4\x32\x34\xc7\x15\x9e\x82\x19\x82\x2a\xb9\xd5\x29\x06\x37\x68\xb2\x65\x9c\xc2\x1b\x82\x2a\x7a\xe4\x24\x8a\x4e\x0a\xc8\xb9\x3f\x27\x05\x14\x34\x49\xbd\x4f\x0a\x28\x28\x16\x4b\x4f\x0a\xe8\xa4\x80\x9a\x61\x42\x01\x05\x9b\x2c\x2c\x27\x05\x14\x74\x69\x08\x4e\x0b\xc5\x27\xb5\x63\x32\x3e\xa9\x9d\x60\x05\xfe\x9d\xd4\xce\xd9\x75\x87\xf9\x48\xfc\x44\xd0\x77\xf3\x85\xf8\x89\xa0\x5a\x39\x39\xc5\xba\x06\x5b\x5b\xd3\x8a\x90\x8a\x60\x3b\x3e\x1e\xa0\x06\x16\x8f\xd7\x3b\x6e\xf1\x38\x68\x32\xee\x9e\x16\x8f\x83\xbe\xaf\xbb\x74\xda\x8b\x95\xa4\xfd\x14\x51\x11\x6c\xd3\x48\xa7\xb9\x82\x62\xb1\xf7\xa4\xb9\x82\x4d\x48\xf5\x49\x72\x05\x55\x2c\xd7\x49\x72\x9d\x22\x6e\xa5\xe6\x39\x09\xac\xa0\xca\xf4\x75\x12\x58\xa7\xe0\x89\xf5\xc2\xd1\x4e\x67\x4e\x83\x5b\xc5\x20\x9d\x4e\xd2\x29\xdf\x8d\x93\x74\x3a\xb3\xe3\xb0\xad\xd1\x6f\xcb\x61\xb0\xd2\x34\x9c\x96\xa6\x4f\x0a\x8b\x93\xe8\xa4\xb0\x82\xf2\x99\x2e\x19\x43\x09\xba\x6d\x72\xe3\x9c\x82\x6e\x83\x2e\x37\xf7\x29\x12\x22\xd8\x56\xc6\xc7\x53\x28\x44\xd0\x05\xba\x9f\xb4\xd9\x69\xf1\x9b\x9e\x3a\x29\xb1\x60\x85\x7f\x9c\x94\xd8\xb9\x4b\x38\xba\xa9\x82\x6e\xd9\x93\x46\x41\x7b\xd8\x54\x18\x6c\x76\x3f\x9f\x36\x15\x9e\x94\x98\x84\x3c\x27\x25\x16\x54\x87\xdb\x9f\xc2\x1e\x82\x26\x2e\xf9\x24\xce\x82\x15\x8f\x7d\x12\x67\xc1\xfb\x67\x69\x0f\xea\x2c\xe8\x82\xfc\x4f\xe2\x2c\xe8\xd3\xe8\x23\xce\x82\x6d\x6d\x98\x3b\xa9\xb3\x60\xe5\x25\x3d\x89\xb3\x60\xe3\x08\x3c\x89\xb3\x33\x4a\x6c\x25\xb7\x3d\x49\xb1\xa0\x8b\x69\x3c\x29\xb1\x33\x21\xc2\x4d\x92\x9e\x73\xae\xba\x67\x37\xbb\x21\x69\xb9\x3d\xe8\x8e\x89\x3a\x2d\xb7\x9f\x89\x1a\x6e\xf2\xf6\x9c\xa2\x86\x83\xb1\xbe\x4d\x04\x5b\xd0\x77\xcd\x6d\xb9\xfd\x3c\x74\x9e\x59\x87\x12\x0b\x2a\x07\xc7\x49\x88\x9d\x62\x28\xec\xd1\x38\xc5\x50\x9c\xce\x10\x37\x9d\x10\x67\xe7\xb1\x6a\x90\x5a\x51\x62\xc1\xb6\x3e\xf2\x56\xe0\x4f\xe2\x4c\xe6\x81\x93\x38\x0b\x8a\xbd\x4d\x27\x71\x16\xbc\xb7\xe5\x09\x96\xe0\x83\x2e\xad\xe7\x49\xaf\x05\xc5\xb9\x30\x27\xbd\x16\x94\x9e\x55\xa2\x53\xb8\x71\x50\xec\xf6\x3d\x85\x72\x04\x9b\x44\xd0\xa7\x50\x8e\xd3\x72\x7e\x8f\x75\x7a\x5a\xce\x0f\xba\x43\x58\x4f\xda\x2f\xd8\x2c\xde\x9d\xb4\x5f\x50\xe6\xaa\x92\xd6\x10\xca\xe1\xe4\xda\xd3\x72\x7e\xd0\x6d\xc7\x38\xc9\xc1\xa0\x38\x4e\xf8\x24\x07\xcf\xdf\x6a\xa0\x34\x9a\x50\x8e\xa0\x3b\xa8\xe3\xa4\xf7\x82\xbe\x86\x37\xbd\x17\x6c\x02\x26\x4f\x7a\xef\xb4\xe6\xdf\x23\xf8\x4e\xb2\x2d\xd8\x46\x0c\xdd\xd3\x9a\x7f\xb0\x16\xaf\x4f\x42\xee\xe4\x06\x90\xe7\xe1\xa4\xe4\x82\xe6\x5c\xcd\x93\x92\x0b\xfe\x58\x24\xf2\x45\x06\xdb\x9a\x23\xa5\x90\x09\x9a\xc4\x38\xe7\x6f\x55\xf3\xc9\x49\x7a\xb9\x44\xee\x9d\xa7\xa9\x29\x02\xea\xe4\x3f\x08\x56\x14\xe1\x49\xc7\x05\xeb\x88\xa6\x93\x8e\x3b\x4f\x5d\xd7\x5c\x53\x27\xc7\xb3\x7d\xfe\x41\x56\x9f\xc2\x48\x82\x6d\x5b\x7f\xa2\xc6\xa7\xb7\x97\x31\x48\xfa\x05\x45\x42\x93\x93\xf2\x3b\x45\x88\xf4\xac\x1b\x9c\x34\x5d\xd0\xd7\xd8\x17\x21\x72\x72\x86\x48\x5d\x74\xd2\x74\x41\x9f\xde\x7b\x9a\x2e\xe8\x0e\x6f\x3f\x69\xba\x60\x73\xd4\xc3\x49\xd3\x05\x5d\xae\xd1\x93\xa6\x0b\xba\xcd\x2b\x27\x4d\x77\x12\x6b\x9d\xe9\x47\xac\x05\x9b\x13\x44\x4e\x62\xed\xcc\x01\x02\x4d\x3e\xe2\x93\xcb\x24\x28\xc7\x7a\x80\x4e\xbb\xd4\xd3\x17\x97\xcf\x24\xe8\xb6\xaa\x9c\x64\x5e\x50\x0e\xc3\x89\xcc\x0b\x36\xfe\xfd\x53\xf8\x74\xb0\xce\x1d\x3d\x85\x4f\x07\xef\xff\xa7\x06\x76\x39\x06\x65\x19\xb8\x76\x39\x9e\xb7\x51\xcd\x90\xe7\x93\x09\x9a\x98\xed\x93\x4f\xe6\x24\x2d\xed\x6d\x38\x49\xcb\xa0\xac\xcf\x1a\x69\x19\xf4\x69\x6a\x27\x2d\xcf\x5b\x73\x30\xd1\x04\xc2\x04\x7d\x0d\x6b\x6a\x33\xe8\xd2\x72\x9e\xd4\x66\xb0\xd2\x2c\x9d\xc2\xb3\x83\x6e\xe7\xd1\x29\x80\xe6\xa4\x49\xbb\xd7\x86\x26\x0d\x9a\x4d\x7a\x27\x4d\x7a\x3e\xab\x39\x5c\xd3\x1c\xc9\x7e\xf9\x59\xbf\xd4\x1c\x4f\xf2\x8a\x9a\xde\x64\xd3\x39\x73\x1e\x9c\x0d\x56\x27\x95\x1a\x6c\xad\xb3\xab\xc9\xd4\xa0\x4f\xdf\x43\x9e\x9f\xa0\x1e\x2c\x72\x9e\x9f\xd3\xf1\xe0\x66\x02\x5a\x36\x68\xcd\xe0\xa6\x65\x83\x2e\xd2\xe4\x24\x65\x4f\x2e\x23\xa9\x45\x2e\x5a\xf6\x12\xc7\x23\xf9\xca\x25\x8e\x27\x28\xb6\xfa\x5e\xe2\x78\x2e\x9e\x25\xd9\xaf\x2e\x9e\xa5\xa0\x3b\x30\xf9\xa2\x82\xaf\xec\xb9\x6c\xb2\x5f\x5d\x34\x6f\xd0\x65\x5f\xb9\x68\xde\xeb\xe3\x2d\x88\x7d\x70\xf1\x36\x05\x2b\xcc\xe6\xa2\x79\x83\x3e\x57\x39\x2e\x97\x8c\x84\x74\xe8\x45\xf4\x06\x7d\x56\xb5\x4a\x4d\x2f\x3e\x29\x8e\x88\x8b\x9c\x0d\xd6\x69\x38\x17\x35\x7b\x89\x0a\x62\xb7\x5d\x54\x69\xb0\xf6\xa2\x5c\x44\x69\xf0\xde\x96\x2a\x88\x14\x0a\xfa\xcc\xe4\x7e\x89\x14\x0a\xfa\xcc\x87\xe2\xa2\x5d\x83\xb2\x7f\xdc\xa5\x52\xdb\xaa\x41\x9a\x8d\x83\x2b\xd8\xe4\xf0\xbb\xc8\xd9\xab\x18\x6b\x51\x4a\x17\xbd\x19\x14\x1b\x7b\x2f\x72\xf3\xe2\x94\xb2\xc2\x72\xd1\x9b\x41\xb7\xdb\xeb\xa2\x37\x2f\x61\x3f\x72\xfa\x5e\xe4\xe5\x25\xec\x27\x5f\xf9\x8b\xbc\x0c\xba\x0f\xe7\x45\x5e\x5e\xb4\xa4\xad\xc3\x17\x2d\x19\x74\xdb\xb8\x2e\x5a\xf2\x12\x09\x24\xe7\xee\x45\x39\x06\x9b\xdc\xc5\x17\xe1\x18\xfc\x19\x45\x84\x63\xd0\x6d\x66\xb8\xe8\xc6\x4b\xbc\xd0\x88\xc5\x77\x11\x8e\x41\x77\x40\xfd\x45\x38\x5e\x7c\x63\x66\xe1\x8b\x4a\x0c\xba\x6d\x4b\x17\xdf\x58\xf0\xde\x96\xba\x73\x8e\x05\x45\x40\xe5\x65\x5b\x67\xb0\xb6\xff\x5f\xe4\x65\x50\xb7\x8f\x3f\x53\xf5\xb8\xcb\x24\xf9\xbf\xb8\xcb\xae\xb6\xaa\x9e\x0e\xa5\x1f\x83\x22\x3b\xd7\x45\x3f\x5e\xbc\x6a\x82\xd7\x2e\x02\x32\xe8\x16\x32\x2f\x5e\xb5\x60\x5b\x27\xfd\x5f\x42\x8d\x82\x75\x4c\xef\x45\x66\x06\x85\x50\xbf\xc8\xcc\xa0\xc8\x01\x7b\x91\x99\x41\xe7\x32\xba\xa8\xcc\xe0\xfd\x7f\xbf\xd4\x42\x2f\xda\x68\x4a\xab\x81\xe2\x7b\xdb\x8e\x7f\xc8\x6f\x76\xf1\xcc\x05\xef\x1f\xfb\x17\x0d\xd8\x62\x61\x55\xcf\xd2\x80\xc9\xbf\xb3\x19\x27\x6d\x35\x60\xa6\xed\x58\x23\x17\x45\x1b\xbc\x7f\x96\xae\x25\x69\x83\xf2\x49\xc4\xc7\x65\x93\x67\xd0\x25\x33\xb8\xec\x1b\x08\xca\x91\x6f\xc0\x45\xf7\x06\x7d\x66\x5d\xf2\xa2\x7b\x2f\xce\x40\xe7\x54\x5d\x9c\x81\xc1\x12\xd6\x17\x67\x60\x50\x38\x33\x2e\x1a\x37\xd8\xda\xd0\x19\x44\x6e\xd0\xe7\x2a\x99\x9a\x77\xaf\xcd\x2a\x87\xaa\xe7\x08\x3c\xbb\x0e\x2f\x2a\x37\x78\x6f\xcb\x13\xc8\xdc\xa0\xcb\x73\x75\x91\xb9\x97\x7d\x03\x4c\x84\x8b\x1f\x31\xe8\xd3\x10\x26\x73\x2f\xfb\x06\xec\xdf\xbf\x78\x0d\x83\x75\x54\xff\xc5\x6b\x78\x0d\x95\x37\x2c\x6c\x12\x08\xb6\x63\x73\x49\xe5\x5f\x14\xeb\xa3\x17\xe9\x7b\x8d\x55\x2b\x65\x53\xab\x24\xe5\x91\xda\xe6\x12\xf1\x1f\xf4\x99\x0f\xd4\x45\x20\x5f\x64\xae\xfd\x7c\x17\x99\x1b\x34\x41\x9f\x17\x99\x7b\xf1\x37\x8a\xbe\xbf\x68\xda\x60\x9b\xe6\x6d\xfe\xc6\xa0\xc8\x19\x70\x51\xb9\xc1\xb1\xf9\x2e\x50\xb9\x97\x10\x2f\xc7\x9f\x5e\x9c\x8b\x41\x9f\xdd\x6d\xba\x4a\xd8\xfe\x30\x03\xd1\xaf\x41\x1d\xa6\x2e\xfa\xf5\x22\x56\xd9\xe9\x17\xb1\x1a\x94\xc3\xcc\x42\xac\x5e\x3c\x89\xd2\xa0\x5d\xd4\x6a\x70\x38\x72\xf5\x22\x56\x83\x2a\xe6\xf2\x22\x56\x83\xea\xd8\xab\x8b\x58\xbd\x88\x55\xc9\xd2\x2e\x62\x35\x58\x91\x39\xd7\x5c\x35\xd0\x2d\x6a\xc5\x6f\x18\xac\x0d\x78\x17\xfd\x7a\x1d\x5e\x2a\x43\x86\x5a\x0d\xfa\x6c\x2e\xa9\x3b\x01\x3b\xb2\xba\x7d\x11\xb0\x57\xd4\xaa\xe3\x10\x2f\x6a\x35\xa8\x6b\xd2\xe0\x70\xbc\x28\x53\xe9\xd8\x2e\xca\x34\x58\xb9\x13\x2f\xca\x34\x78\x6f\x4b\x4d\x05\x87\x05\x45\xda\xe5\x8b\x27\x31\xe8\xdc\x37\xd7\xb1\x6a\xf0\xe4\x00\x91\x5c\xa2\x5f\x83\x6e\x13\xf0\x45\xbe\x5e\xce\x2d\x88\xe9\x79\x91\xaf\x17\xf9\x3a\xb4\x1a\xf9\x1a\x94\x4f\x6c\xa6\x8b\x7c\x0d\xde\xa9\x3c\x97\x54\xf3\xeb\x9d\xf2\x02\xd1\xaf\x41\xb5\xed\xfd\xa2\x5f\x83\x22\x46\xf2\xa2\x5f\x2f\x5b\x11\xba\xff\xd7\xc5\x5f\x6a\xde\x7f\xe9\xe2\xc8\x57\x29\x9f\x2e\xf2\x35\xe8\x96\xf3\x2e\xf2\xf5\xe2\xba\x1c\x31\xc4\x2f\x5a\x35\xe8\xe2\x0b\x2f\x5a\x35\x68\xce\xdd\xbe\xf8\x26\x2f\xbe\x49\x29\x77\x2e\x5a\x35\x68\x4e\x4e\xbb\x68\xd5\xeb\xa7\xe6\xfe\x8d\x27\x32\xd8\xa6\x37\x9b\x27\xf2\xa2\x5f\x65\x76\xbb\xe8\xd7\x60\x3b\x98\x5f\xf4\xeb\xc5\x9f\x28\xb3\xdb\x45\x60\x06\x7d\x46\xac\x5e\x04\xe6\xc5\x9f\x68\x86\xe1\x4e\xbc\x68\xce\xb1\xbb\xa6\x57\x5e\xfc\x19\xdd\x34\x67\xd0\xa7\x81\x46\x73\x06\xf5\x30\x44\xf9\x0e\x83\x6e\xff\xf6\x25\x91\xe9\xc5\x9d\x38\xbc\x8b\x44\x65\x50\x96\x09\x45\x53\x06\x75\x7d\x24\x69\xca\xeb\xf2\xf6\x98\x87\x08\xc8\xa0\x36\xc5\xe0\x26\xbc\x2e\xe3\x45\xa5\x48\xc3\xa0\x88\x8b\xbf\x48\xc3\x60\x5b\x19\x6a\x2e\xda\x30\xa8\x6b\x92\xe7\xee\x0b\xba\xec\xac\x17\x77\xdf\x25\xc0\x4e\xca\xb1\xeb\x5a\x65\xcb\x77\x76\xfc\x43\xbe\x94\x8b\x98\x0c\xfa\x34\x83\x12\x93\x17\x31\x39\xb2\xda\x7c\x11\x93\x17\x31\x19\x47\xd4\x45\x4c\x06\x1b\xd7\xe8\x45\x4c\x5e\xb7\x4e\xf3\xf6\x92\x8e\xc1\x0a\x62\xbb\x28\xc7\xe0\xbd\x2d\x0d\x4d\x3a\x06\x7d\x7a\xe3\x04\xf8\x5d\x64\xa2\x24\x65\x17\x99\x18\xcc\x3f\xff\xa6\xd7\x5e\xb4\xe2\xeb\x41\x26\x5e\xce\x15\xd7\x43\x22\xf7\x2e\xca\x51\x8e\xb2\x8b\x72\x0c\x36\x7b\x06\x2f\xca\xf1\x7a\x3e\x6e\xcb\x4f\xe9\xc4\x60\x1d\xad\x74\xd1\x89\x17\x9d\x28\x47\xd9\x45\x27\x5e\x4e\xa8\xf3\x59\xa0\x13\x2f\x3a\x51\x8e\xb2\x8b\x4e\x0c\xa6\x28\x8b\x8b\x4e\x0c\x0e\x9b\x2f\x2e\x3a\x31\x28\xf6\x03\x5d\x02\x08\x2f\x1e\xce\xdd\x3c\x45\x3b\x06\xed\xb3\x7e\xa9\x85\x9e\x38\xfa\x57\xc9\xb4\x50\xa4\xe3\xfa\x78\x90\x8e\xc1\x18\xb4\x07\xe9\x78\x11\x85\x7b\xa6\xcb\x9b\x28\xbc\x39\x38\xf7\x38\x95\x6e\xd2\x2e\xa8\xdb\xee\xd2\x70\xe9\x70\x5b\xcf\xb5\xaf\x6b\xdf\x9c\xa3\xbe\xe5\xd2\xcf\xa5\x9f\xdb\x8e\x5c\x3b\x5d\xcb\x77\x78\xf8\xe5\xe5\x52\x0e\xe6\xcf\x58\xbb\x29\xbb\x9b\xb2\xcb\x14\x7a\x53\x76\xc1\xd6\xa4\x28\xbb\xb9\x33\x83\xe2\x38\xf9\x9b\x3b\x33\xe8\x32\x2b\xdc\xf4\xdf\x9d\x7c\xaa\x4d\x8a\xb2\x9b\xef\x32\x68\x76\x0e\xdf\x7c\x97\xb7\x38\x45\x89\xc6\x6e\xce\xcb\xa0\x4b\xc0\x70\x93\x89\xc1\x3a\x43\xea\x26\x13\xef\x4d\x73\x64\x48\xde\x34\xe1\x4d\x13\xc6\x82\xbc\x69\xc2\x3b\xf9\x74\x1a\xa5\x71\xcb\xa7\x13\x34\x5b\xd7\x6f\x9a\xf0\xde\x56\x45\x73\x8d\x43\xf3\x16\xe1\x98\xf7\xec\xe6\xcf\x0c\x36\xc7\x95\xde\xfc\x99\xb7\x0d\x25\x9c\xb4\x37\x87\x66\xd0\xa4\x33\xbc\x39\x34\x83\x6d\xcb\x84\x79\x13\x98\x41\x97\xff\xe0\x26\x30\x83\x69\x1d\xe7\xa6\x2f\xef\x62\x44\xea\x63\xee\xcb\xa0\xf2\xf3\xdc\xf4\x65\xf0\xde\xe6\x9a\xba\x13\x98\xc3\xbf\x19\x09\x2f\xf6\x3d\x2f\xed\xcd\x7f\x79\xdb\x33\x3d\xdd\xa5\x35\xb8\x2f\xe5\x0f\xbd\x69\xce\x60\x93\xd0\xeb\xe6\xbf\xbc\x39\x2b\xe5\x32\xbb\x69\xce\xa0\xcb\xfd\x70\xd3\x9c\x37\x67\xe5\x1e\xc9\x71\x13\x9d\x41\x11\xf2\x74\xd3\x9c\x37\xcf\xe4\x1e\x03\xf2\xe6\x99\xbc\x79\x26\x77\x0f\x50\xf7\xaa\xdf\x9b\x9f\xaa\x7c\xb2\xb3\xca\x50\x7e\xd3\x9c\x77\x35\x15\xc5\x2c\xbe\xc9\xc9\x60\x7e\x56\x71\xd5\x8a\x4e\xdc\x33\xa1\xdc\x74\x62\x50\x8e\x7c\xc8\x6e\x3a\x31\xe8\x33\x36\xc8\x4d\x26\xde\x14\x18\x67\xd5\x4d\x81\x05\x2b\x45\xe3\x4d\x81\x05\x7d\x0e\x77\x79\x66\xf7\xcc\x7c\x9c\x6f\x42\xea\xa6\x9a\xf2\xd1\xba\xa9\xa6\x60\x6b\x52\x86\xdd\xdc\x85\xc1\x66\x7d\xea\xe6\x2d\xbc\xed\x48\x91\x1f\xec\xe6\x2e\x0c\xea\xe1\xa5\xa2\xb7\x6e\x1e\x44\xb1\x9c\x37\x75\x15\x34\x5b\x29\x6f\xe2\xea\xa6\xa4\xe4\x30\xba\x29\xa9\xe0\x10\xd3\x7c\xf7\x55\x85\x98\x17\x99\x5f\x6f\x42\xea\x1e\xeb\x01\xa9\x15\x05\x13\xf4\x69\x16\xb3\xb3\xf9\x26\x6a\x24\xd0\xba\x89\x9a\xa0\x3b\x4c\xed\x26\x6a\x82\xe9\xf0\xba\x9b\xa8\xb9\x77\xbf\x8c\xe8\xb8\xf9\xcc\x82\xba\xc6\x29\x9f\x59\x50\xe5\x63\xbc\x6d\x21\xb9\xa7\x06\x3f\xfe\x21\x21\xe9\x4d\x7f\x04\x45\xa0\xcb\xcd\x7f\x76\x93\x24\xdc\x4f\x37\x49\x12\x14\xc1\x0c\x37\x49\x72\xf3\x9f\xe9\x22\x8a\xe4\x16\xc9\xc8\xfd\x74\xd3\x1f\xc1\xb6\xde\x6a\xfa\xe3\xe6\x05\xe3\x11\xbd\xa9\x88\xa0\x4f\xb5\xe1\x05\x0b\x56\x38\xef\x4d\x57\xdc\xe2\x11\x79\x6a\x6e\xf2\x20\x98\x73\xba\xa4\x1c\xe2\x11\x65\x8b\xba\xc5\x23\x06\xdd\x8e\x8a\x9b\x17\xec\xb6\xc3\xc4\x9a\xed\x4d\x45\x04\x85\x82\xbf\x89\x88\x60\xb7\xce\x7d\x13\x11\x37\x2f\x98\xe5\xf0\x9b\x8a\x08\xba\x4c\x2a\x37\x15\x71\xdb\x74\x62\xf5\xfe\xa6\x19\x82\x56\xf2\xdd\xbd\x49\x86\x9b\x3e\xb0\x36\x7d\x13\x08\x41\x5f\xb5\xa2\x0f\x6e\x7b\x95\xf9\x87\x6e\x02\x21\xe8\xd2\x9a\xdc\x04\xc2\x2d\x92\x91\xaf\xe1\x26\x07\x82\x95\xea\xe7\x26\x07\x6e\xbb\x4e\xac\xe4\xde\x0c\xfd\xdb\xf1\x64\x26\x26\x86\xfe\xcd\x4f\x65\x31\xe9\xe6\xa7\xba\xf9\xa9\x8c\x4f\xb6\xff\xcd\x4f\x95\x25\xe0\x9b\xed\x7f\xdb\x85\x6c\x99\xe8\xe6\xa8\x0a\xfa\x34\x1b\x92\x03\xc1\x7b\x9b\x87\xaa\xe9\x2f\x4a\xc8\x4b\x21\x30\x31\xe8\x33\x26\xc6\x4d\x21\xdc\xbf\x55\x51\xd7\x54\xf4\x97\x09\xf2\x50\x34\x15\xfd\xe5\xdd\x9c\xfe\x5f\x27\xe7\xe4\xed\x66\x6d\xf7\xe6\xcf\x0a\xba\xec\x3b\x37\x7f\xd6\xbd\x84\x44\x56\x17\x6e\x4a\xe2\x96\xa5\x27\x26\xfc\x2d\x30\x31\xe8\x32\xed\xdc\x02\x13\x6f\x7a\xc3\xba\xe2\x4d\x6f\x04\xbb\x4c\x79\x37\xbd\x11\x4c\x71\x12\x37\xbd\x11\xbc\xbf\x4c\x7b\x13\x1c\xc1\x26\x44\xe5\x26\x38\x6e\x82\xc3\xea\xd6\x4d\x70\x04\x6d\x98\xa7\x09\x8e\x60\x5f\x93\x32\xc1\x11\x6c\xcd\xca\xe8\x7d\xae\x8a\xbe\x13\x9f\xfd\xf9\xb7\xf0\xc5\xa0\x53\x69\x37\x57\xd7\x4d\xaa\x50\xf5\x37\xa9\x12\x6c\x52\x6c\xdc\xa4\xca\xcd\xfd\x65\x9d\xe6\xe6\xfe\x0a\x1a\x97\xff\xcd\xfd\x15\x54\x1b\xd2\x6f\xee\xaf\x60\x70\x97\xdc\x34\x4e\xf0\xfe\x59\xda\x9b\xc8\xb9\xf9\xbf\xf4\x31\x8d\x73\xdb\x58\x44\xaf\xdf\x14\x4d\xb0\xad\x21\xc9\x25\x76\x5f\xab\xee\x69\x5c\x92\x25\x58\x9e\xb3\x9b\x64\x09\xfa\xd4\x53\x14\xcb\x4d\xb1\x30\x27\x28\x96\xa0\x2c\xbb\x8f\x62\x09\xfa\xcc\x5a\xdf\xcd\xfd\x75\x13\x31\xd6\xdd\x6e\x22\x26\x28\x52\xcd\xdd\x44\x4c\x50\xda\x7a\xa4\xaa\xdf\x71\x67\xaf\x4b\x6a\xce\x23\x66\x9d\xe9\xe6\x11\x0b\xb6\x4d\x3b\xf2\x88\x05\x95\x2b\xe0\xa6\x74\x6e\x3b\x92\xac\xeb\xdd\x74\x4d\x30\xe5\x70\xbf\xe9\x9a\x5b\xb0\x25\x6d\x7b\x13\x31\xc1\x5c\xcf\xe4\xfe\xba\xed\x16\xa7\xf3\x6e\x22\x26\x98\xd6\x39\x6f\x1a\x26\x78\x6f\xcb\x20\x25\x62\xee\xe5\xec\xf2\x4b\x75\x7f\xf4\x31\x13\x9d\x62\x09\xa6\x34\x78\x37\xc5\x12\x1c\xdb\x7a\x80\x8a\x3e\x39\xda\x84\x19\x42\xb0\xdc\x62\x2d\x49\xbf\x9b\x83\x2a\x98\x52\x02\x3c\xa4\xc8\xf3\x59\x6b\x04\x3d\xd7\x36\xd7\x72\x5e\x7e\xec\x8b\x87\x7f\x2a\xa8\xf2\x5b\x3c\xf6\x99\x3f\x1f\xf3\x55\x64\xc1\x43\xb1\x04\xd5\x5e\xff\x87\x7b\xea\xc9\x51\xd9\xcd\xab\xf7\x08\xc0\x0c\xba\xe4\x52\x0f\x5d\xf3\x88\xac\x9c\xff\x92\x93\xf4\x21\x55\x82\x62\x5d\xf1\xa1\x54\x1e\x21\x95\x8c\xd1\x87\x13\x2a\x28\xf2\x88\x3e\x64\x49\xd0\x2c\x92\x3f\x64\x49\xd0\x25\xec\x7a\xa8\x92\x87\xde\x30\xfc\x1f\x7a\x23\x98\x0e\xaf\x7a\xe8\x8d\x87\x90\xe0\xb1\x7d\x08\x89\xa0\x58\x98\x7f\x08\x89\xe0\xbd\x6d\xe6\x9a\x56\xcd\x41\xd6\x9f\x74\xdb\x43\x48\x3c\x0e\xb2\xce\x37\xeb\x21\x24\x82\x3e\x23\xa2\x1e\x42\xe2\x21\x11\x7c\x05\x1e\x12\x21\xe8\x16\x4b\x1f\x12\x21\xe8\x47\x3e\xb1\x0f\x85\x10\x14\xc7\xb1\x3f\x14\x42\x30\xff\x14\xec\x72\xc9\x37\x40\xf9\x6f\x97\x74\xd0\xe1\x9a\x1e\x78\xd1\x2d\x82\x3e\x14\xc2\xc3\x51\xe5\x23\xf0\x70\x54\x05\xd5\xb1\xde\x0f\xd1\x10\x4c\xdf\xdc\x87\x68\x08\x56\xd0\xef\x43\x33\x3c\xd5\x10\x8b\x29\xf1\xf0\x4a\x05\x5d\x4a\xb3\xc7\xbe\xae\x87\x8e\x98\x87\x07\x4c\xd7\x66\x12\x34\xa4\x69\xe9\x88\x87\x40\x98\x31\xca\x1e\x02\x21\x68\x5b\x75\x9b\x4a\xd5\xec\xbd\xf6\x4c\x11\x8c\x0f\x17\xd4\x7a\x28\x17\x54\x70\x98\xbb\x1e\x2e\xa8\x47\xbc\xa2\x38\xbe\x87\x23\xe9\x69\xe6\xe8\x14\x8d\xd7\xe8\xb1\x3f\x7d\xf5\x14\x7f\x50\xd0\xff\xfc\x52\xb7\x90\x1b\x87\xb7\x95\xdc\x78\xc8\x8d\x98\xd7\x0f\xb9\xf1\x70\xe5\x08\x15\x7f\xb8\x72\x82\x69\xa1\xe6\xe1\xca\x79\x04\x2c\x0a\x6f\x78\x38\x6e\x82\xe9\xf4\xdf\x87\x04\x79\x68\x0b\x8e\x8a\x87\xb6\x08\x8a\x68\xda\x87\xb6\x08\x0e\xfb\x6d\x1e\xbe\x9c\x87\xe3\xe6\x30\x72\x69\x8b\xa0\x9a\x92\x1f\x8e\x9b\x87\xdc\x90\x82\xed\xe9\xab\x0a\xf7\xfb\x22\x77\xcf\xd4\x09\x39\x7d\xba\x11\x34\x8f\xc8\xc3\xa0\x4b\xbd\xf7\x70\xd2\x3c\x82\x11\xe5\x5b\x7b\x78\x69\x82\xb9\xc6\x91\x60\xc4\x87\xe3\xe6\x88\x05\xf6\x70\xdc\x04\xc5\x2e\xbf\x87\xe3\xe6\x91\x83\xc9\xb9\x5a\x8f\x1c\x4c\xc1\x3a\xd2\xe9\x21\x5e\x82\xcd\x4e\xe0\x67\xac\xe2\x3e\x99\x92\xd3\x1e\xc4\x4b\x30\x6d\xba\x7f\x84\x2c\x3e\x42\x16\x25\xdd\x7a\x84\x2c\x06\xfd\x88\x19\xf5\x08\x59\x7c\xf8\x72\x8e\xea\xdf\x54\x2a\x21\x8b\x82\x57\x1f\xbe\x9c\x87\x2f\xc7\xe6\xc8\x87\x2f\x27\x38\xec\xa6\x7f\xf8\x72\x82\xbe\x86\x07\x5f\xce\x63\xef\x98\x6d\x31\x0f\x67\x4e\xd0\xd7\xf0\xb0\x77\xec\xe1\xdf\x91\xe3\xed\xe1\xdf\x09\xfa\xb1\x79\x80\x16\x4a\x14\x63\x93\xe3\xed\x21\xc9\x82\x43\xcc\xd2\x43\x92\x05\x53\xb0\xfb\x23\xb0\xf1\xb1\xab\x5f\x38\xdb\x43\x73\x05\x9b\x1d\xc9\x0f\xc9\xf5\xd8\x50\x76\x44\xb1\x3f\x34\x57\x30\xd7\x0c\x4e\x73\x05\x73\x33\x3c\x78\x81\x82\x4d\x2a\xf0\x87\x0a\x0b\xba\x84\x85\x0f\x15\xf6\xf0\x02\x59\xda\x7e\x78\x81\x82\xbe\xde\x3d\x5e\xa0\xa0\x4b\x66\xfe\x70\x02\x05\xe5\x30\x0b\x93\x6f\x8f\x3d\xfd\x47\x24\xf6\x43\x85\x05\xf3\x63\x0c\x11\x61\x0f\xc5\xb5\x5e\x2a\x8a\x2b\x28\xe2\xb4\x1f\x8a\xeb\xb1\xa7\xdf\xb9\x6e\x0f\x2d\x15\x1c\x9b\x87\xf2\xc8\x04\xad\x9a\xb2\xa8\xab\xc7\x6e\x2f\x49\xf0\x1e\xee\x97\x60\x0a\xf4\x7c\xa8\xab\x87\x94\x92\x04\xef\x21\xa5\x82\x2e\x0b\xe3\x43\x4a\x3d\x62\x05\x0f\xdd\xc2\xd9\x12\x1c\xad\x95\x7f\xf8\x60\x13\x5f\x0f\x2f\x8b\x54\x7a\x0f\x2f\x4b\x70\x08\x4c\x7c\x88\xaf\x87\xd2\x12\x04\xf7\x50\x5a\xc1\xbe\xbe\xeb\x94\xd6\x23\x0d\x00\x39\xfa\x90\x5a\x81\x2c\x48\x0f\xa1\xf5\x50\x55\x7f\xae\x19\x3c\xbf\x7c\x42\xcc\x54\x54\xd5\xf3\x53\x41\xdf\x28\x5e\x96\xc7\x79\x71\x0c\x07\xaa\xea\xb1\x69\x4b\x34\xe4\xc3\xcb\x12\x94\x4f\xcc\xeb\x87\x36\x0a\x26\x31\xfa\xd0\x46\x41\xe7\x37\x7f\x68\xa3\x60\xda\x3b\xf9\x90\x46\x8f\xc0\x3e\x32\xe2\x11\xd8\x17\xf4\x35\x23\x8b\xdc\x7b\x08\x10\xe9\x98\x1e\x02\x24\xe8\x87\xc9\x9c\x00\x09\xb6\xcd\x2f\xe9\x8f\x27\xfb\xa7\x9a\x14\x7c\x0f\xb5\x11\x4c\xdb\x08\x1e\x6a\xe3\xe1\x3e\x91\x6f\xef\x21\x2d\x82\x69\xe3\xee\xc3\x7d\xf2\x44\x59\xf4\x65\xc0\x90\x16\xc1\x61\x09\xf2\x11\x6d\xf7\x44\x6d\xf4\x8f\xcf\x27\xb5\x11\xf4\x23\x6b\xb9\x0f\xb5\x11\xcc\x4f\xbc\x3d\x0f\xb5\x11\x74\x59\x37\x1f\x6a\x23\xe8\xeb\xfb\x41\x6d\x3c\x91\x16\x5d\x08\xf6\x43\x5a\x04\x53\xec\xe6\x43\x5a\x3c\xf7\x2a\xad\x6b\x4a\x7b\x67\xb3\x9e\x57\x93\x1a\x78\x6e\xa5\x35\x25\x73\x69\x04\x7d\x7d\x8d\xa8\x81\xa0\xaf\x2f\x0f\x35\x10\xcc\xf5\xad\xe0\xe4\x08\xf6\xdd\xfb\x4b\x1f\x3c\x09\x4c\xeb\x1f\x53\x2d\x63\x3d\x98\x92\x4e\x3d\xbc\x0b\xc1\xd6\xa5\x95\x7d\xb8\x17\x82\x63\xcb\x4a\xda\xc3\xbd\x10\xbc\xb7\xa5\xd5\x84\xa6\x05\xd3\x1a\xea\xc3\xf2\x0f\xde\xdb\xfa\xff\xfc\xdf\xfe\x89\xe9\xbf\x7f\xe2\x85\xe8\x9f\xb7\x0a\xfb\x27\x5e\x08\x38\xd2\x1e\xfb\x27\x36\x3d\x1c\xdb\x6b\x1e\xee\x9f\xd8\xf4\xfb\x27\x36\x7d\x4f\x36\xba\xfd\x13\x9b\x1e\x66\xfc\xb8\xfb\x27\x36\x3d\xbc\xb7\xf9\xb7\x9f\x6b\xbf\x3c\xe0\x93\x4b\xa7\x4b\xb7\xdb\x5a\xae\x3d\xae\xf9\x80\xe4\x97\x9b\xe2\x26\x5f\x7f\xff\xbc\x4a\x7f\xff\xc4\x0d\x01\xf5\x33\xf2\xcb\xb8\x21\xf6\xcf\xa6\x56\x35\xe5\xdd\xd4\xea\xc5\x9e\x73\x1d\xf6\xcf\xa6\x56\xd9\x1c\xd5\x3f\x2d\xe5\x8d\x83\x01\x8e\x44\xd5\xef\x9f\x4d\xad\x36\x9d\xd5\x14\x44\xb5\xe2\x73\x88\x31\xb1\x7f\x36\xb5\xda\x62\xbe\x15\x0f\x50\xab\xb8\x21\xfa\xa7\x29\xdb\xe5\xda\x95\xad\xdd\x25\x97\x6e\x97\x54\xbe\xa5\x63\x36\x95\xdf\x52\xf9\x23\xfd\x52\x54\xbe\x64\xd2\x3f\x72\x57\x51\xf7\xb8\x21\x7a\xb2\xe7\xed\x9f\xa8\x07\xe8\x31\x60\xf6\x4f\xd4\xc3\xfe\x49\x04\x5b\x4f\x5c\xcf\xfe\x29\xfa\xaf\x08\x98\xf0\x4b\x75\xcf\x8e\xa9\xed\x70\x97\xba\x17\x63\xa6\xa7\x89\xaa\x72\xbc\x38\xb2\xbe\xbb\x7f\xaa\x72\x08\x43\xcb\x19\x6b\xfb\xa7\xea\x84\x17\x47\xd2\xf5\xec\x9f\xaa\x68\x55\xbf\xe8\x84\xaa\x5f\x12\x74\x76\x18\x46\x55\xbf\x54\x43\xcb\x38\xaa\x0a\x92\xa0\xb3\x04\x7a\xef\x9f\xaa\x0f\xaa\x61\xaf\xe7\xab\xa6\xcc\x62\x7f\xfc\x7d\xfb\xa7\x6a\xc9\xa6\x8d\x46\xca\xd6\x14\xe4\xc5\x91\x9d\x2f\xfb\xa7\x69\xa3\x17\x47\x72\x15\xed\x9f\xa6\x68\xcd\xeb\xb7\xbb\xa6\x4b\x63\x91\x67\x05\x63\xff\x34\x3d\xda\x74\xdf\xee\xda\x7a\x68\x66\x86\x9a\x5f\x76\xcd\xd6\x8d\xdd\x99\x5a\x75\xed\x16\x23\x3d\xce\xed\xfd\xd3\x35\x5b\xd7\x46\xd3\x4f\x15\xe4\xc5\xcc\xf9\x6f\xfb\xa7\x6b\xa3\x6e\xec\xce\x8c\x86\xae\xff\x7a\x0e\x8f\xec\x69\xa3\xae\xd9\x1c\x6e\x96\x8c\x77\xfb\xa7\x2b\xef\x8b\x63\x3b\xfe\x9e\x4f\x7c\xff\x74\xad\x9a\xa8\xaa\xc3\x3b\xdc\x55\x70\x68\xd5\x23\xb5\x19\x5a\xf5\xc5\xec\x8a\x34\xb4\x6a\x0c\xf1\x1c\x3b\xb1\x7f\x86\xca\x0c\x83\xd1\x38\x1e\x06\xe3\x60\xb3\xfa\x33\x95\x19\x26\x0e\xe3\x67\x78\xc5\x86\x90\xc2\x94\x63\xe8\x8f\x11\x6f\x6b\x4d\xdb\x0f\xf5\x1b\xd9\x93\xfc\xf1\xff\x2a\x10\x73\xbd\x6f\x1f\xe5\x58\x35\x58\xdb\xd4\xde\x4b\xbb\x2e\xca\xa9\x66\x99\x6e\xf7\xcf\xae\x87\x92\x32\xb5\x6f\x9f\x14\x6d\x57\x83\x17\x25\x27\x9f\xee\x9f\x5d\x77\xec\x39\x6b\x6e\xdd\xa5\x4e\x89\xa9\xea\x9b\x72\xec\x2a\x25\xa8\x4a\x3d\x77\x3d\xb4\x3b\xe2\xe4\x93\x21\xbb\xab\xd4\x9e\xc3\x1c\x4c\x38\xbb\x4a\xc5\x0f\xd2\x93\xaa\x6f\xff\xec\x6a\xf5\x42\xc6\x86\xfd\xb3\xab\x54\x72\x69\xe5\xeb\xb0\x7f\xa6\x4a\x25\x8b\x6a\x02\x3d\xf7\xcf\x54\xa9\xa9\x52\x6a\x30\x55\x6a\x3a\xb8\x3e\xff\x3f\x55\x2a\xa6\x73\xcf\xa9\x4b\xfb\x67\x2a\xee\x8b\x32\x4c\x38\xd3\x7b\xe8\x54\x31\x73\xf2\xd4\x51\x53\x69\x37\xd7\x94\xf6\x85\xd4\x88\xfb\x67\x2a\x6d\x12\x2f\xf4\x44\x5d\xee\x9f\xc3\xf8\x4f\x68\x54\x31\x27\x1f\xc6\x55\x52\x69\xf5\x4d\xbf\x1c\x06\xd6\x91\x73\x91\x36\x97\xd4\xe0\x48\xb2\x6f\x33\xda\xa1\x06\x47\xc2\xc4\xb5\xed\xa1\x5b\x0e\x95\x2a\xa9\xd4\xa1\x52\x2f\xec\x51\xd8\x3f\x87\x4a\x1d\xba\xc5\x87\xf1\xd0\x2d\x47\xc6\x9a\x0e\x3d\x74\x4b\x0e\x53\x8e\xeb\x76\xff\x1c\xea\x99\x68\xa3\xbe\x99\x80\xbf\xda\x23\xb9\xaf\x12\x97\xba\x7f\xbe\xfe\xec\xff\x19\x3b\x93\x1b\x6b\x7a\x18\xd9\xee\x9f\x15\xcf\x84\xab\x91\x14\xd0\x68\x5f\x72\xf4\xdf\x84\x46\x9e\xa3\x6f\xfd\xd7\x2a\x50\x42\x66\x5d\x4d\x29\x45\x90\x14\x45\xee\xab\xe6\x66\x7c\xf8\xcf\x48\xdb\x4f\x7c\x6f\xfc\x8e\xfd\xcf\x50\x17\xe1\x8b\x76\x1a\x37\x72\x55\xb7\xc5\xd3\x21\x86\x2d\x8f\x62\xa7\x9d\x8e\x31\xa9\x50\xa7\xfb\xcc\x69\xd7\xc2\x96\x47\xe9\x96\xd9\xb7\x38\x26\x8a\x1b\xd9\x69\xd7\x92\x0a\x61\x14\xa7\xdf\x69\xaf\x7d\x30\xf7\x94\x3f\x9d\xcb\xa7\x69\x60\x69\xc0\x69\x3f\xea\x84\x70\x04\x4e\xfb\xf1\xb4\x37\x9c\x30\xa7\xbd\x41\xc2\x54\x82\x85\xe3\x77\xda\x1b\x1f\xd4\xe1\xc6\x70\xda\x1b\x9c\xa9\xa9\x72\x8e\xd3\xde\x80\x7a\x8f\xe2\x37\x7b\xd9\xf6\xcb\xe9\xcd\x9b\x97\x4d\xff\xa0\x0d\x3f\xc6\xcb\xa6\x7f\x50\xbb\xdf\xc5\x65\xcb\x2f\x6e\x77\x99\xd4\xff\xb2\xe5\x97\x9f\xac\xab\xfb\x65\x33\x2f\x6e\x64\x70\x01\xbd\x6c\x26\xf9\x58\x47\x71\x1d\xba\x6c\x27\xf9\x58\xa7\x9f\xca\x65\x33\x2f\x17\x1d\xa7\xd5\xe5\xe0\x7d\x90\x7b\x22\xdc\x36\xe0\xf6\x47\xdd\x3b\x6f\x7f\x94\xb4\x04\xcb\x7a\xdc\xfe\xe8\x07\x95\x53\xdb\xf1\xbb\xfd\x4d\xa9\x37\x41\x19\xf1\xbb\xfd\xd1\x9b\xf3\x4a\x92\xb7\xdb\xbe\xbd\xad\xc7\xa4\x09\xb7\xf5\xb8\x89\x62\x73\xa9\x7e\xac\x87\x0c\xba\xb8\xaf\x3f\x76\x08\xc6\xf9\xe6\xce\xf6\xf8\x95\x11\x61\x34\xf6\xde\xf9\xf8\x99\x91\x43\x0c\x3f\x61\xfc\x1e\x27\xcc\x43\xec\x86\x53\xed\xb1\x51\x1f\xcc\xe9\x27\xfb\xd8\xa8\x0f\xea\xcf\xd5\xfb\xb1\x51\x32\x74\xec\x4a\xf1\x7b\x6c\xd4\x63\x80\xa3\x45\x36\x8a\xab\xbb\xaa\x7d\xfb\x38\x61\x1e\x0e\xbd\x36\x9f\x72\xc2\x3c\x36\xdd\x19\xf9\xd8\x74\xf2\x25\x10\xef\x15\xbf\xd7\xa6\xbf\xbb\xe9\xf4\xd0\x6b\xd3\x5f\xc4\x83\xbd\xf1\xda\xf4\xd7\x0f\xc3\x1d\xfc\xb5\x9d\x1f\xb4\x90\x69\xbe\xb6\xf3\x75\x85\xf1\x0b\x7d\x6d\xe8\x07\x75\x39\x99\x5f\x1b\x4a\xbe\x84\x81\x0d\x3f\x7e\xaf\x4d\x80\xc9\xcf\xfd\xa3\x36\x41\xd6\x5e\xf2\xbf\x0f\x60\x47\x91\xd4\x97\xdf\xae\xc0\xa2\x6c\x59\x66\x38\x53\xa5\xe8\xb0\x88\xc3\x09\xb0\x8a\x22\x33\x2f\x3f\x7f\x0c\x0a\x58\xe4\xdc\xc0\xb4\xf3\x8b\x94\xbb\x60\x62\x1f\x12\x92\x82\x89\x5d\x98\xce\x81\x82\x89\x5d\xf8\x1e\xf3\xd5\x61\xd9\x20\x22\xd4\xa2\x69\x11\x8b\x34\x7b\x45\x21\xf2\x47\xf8\xde\xf4\xbf\xa5\x65\x4c\x9f\xfe\xa3\xc8\x46\xc1\xcc\xa5\x93\x45\x62\x0e\x14\xc2\x63\xa3\x48\xcc\x0b\x29\x0a\x46\x65\x91\x2e\x12\x67\x20\x9d\x8b\x05\x43\x7c\x14\x32\x0d\x8c\xba\xcb\xac\x5a\xe5\x08\x00\x74\xb2\xc8\x9b\x4b\xf5\x1c\x89\xd5\xc5\x06\x2e\x4c\xdc\x77\x51\x24\xc9\xc5\xcb\x06\xf8\xd0\x8b\x24\x19\x98\xdc\x1a\x14\x45\x8e\x5c\xbc\x87\x98\x63\x40\x51\x64\xbf\x40\xab\x95\x91\x6a\xfe\x66\xb7\x23\xd1\x16\x45\x72\x0a\x4c\x22\x19\xa3\x74\xdf\xe4\xc4\xfb\xe0\xf0\x4a\x94\x6e\x17\x7d\x90\x24\x62\x8c\xd2\xed\x22\x6e\x94\x9a\xfe\x66\xb7\x8b\x64\xba\xdc\xbd\x16\x45\xa6\x0b\xd4\x9f\x8d\x92\xe9\x02\xdf\x63\xb4\x1d\xdb\xb3\x50\x4b\xf3\x4d\xbb\x83\x6b\x7c\x07\x37\x44\x46\x91\xd6\x02\x8b\x0c\x19\x51\x86\x33\x66\xf8\xa3\x68\x8b\x32\xfc\xd1\xc1\x16\x5b\x2d\xf2\x47\x87\x3f\x3a\x7d\xd5\x1f\x1d\x5c\x1c\xc2\xe6\x56\x24\xa4\x65\xfa\xa3\x88\x86\x32\xfd\xd1\x0f\xd6\x6e\x82\x1c\x15\xf8\x1e\x63\x82\x48\x52\x81\x1a\xd6\x43\x92\x0a\x7c\x8f\xd1\x49\xd3\xee\xe5\x7a\x00\xee\x49\x8f\x22\x6f\x05\xcc\xdb\x10\x45\xde\x0a\xcc\xe9\xf0\x4d\xc7\xe0\x83\x58\xbb\x1a\x8e\xc1\xb4\xed\x2c\xdd\x45\x2a\x0b\xac\xee\x20\x4b\x65\x81\xef\x31\x5f\xb5\xed\x13\x1f\xed\xb2\x01\xb6\x3d\x76\xdb\x79\x35\x6c\x3b\x97\xeb\x72\x3c\x26\x4a\xd8\x76\x2e\xd7\xe5\x58\x45\x94\xb0\xe9\x92\x54\x6e\xe2\x8a\x22\x49\x05\xe6\x74\xca\x48\x52\x81\xef\x31\xcb\x6c\x42\x38\x8d\x98\x0b\xe1\x34\xe2\xcc\xfb\x20\x7d\x40\x14\x89\x2b\xd0\xda\xfe\x51\x5b\x90\x8e\x01\xdb\x4a\x49\x2b\xb2\x33\xb9\xd2\xb9\x32\xd2\x92\xfe\x28\x9b\x54\x91\x6b\x02\xde\x90\x10\x45\xae\x59\xd2\x0f\x12\x73\x42\x91\x58\x02\x66\x69\x8f\xb2\xfc\x20\xe5\x9a\xd5\x7e\x93\x6b\x02\x19\xdd\x22\xfb\x48\xae\x49\xde\xc6\x28\x72\xcd\x22\xd7\x74\x4d\x91\x6b\x16\x4c\xbc\x83\x1b\x30\xa2\xc8\x2c\x81\x45\x56\x9f\x28\xcb\xae\x5c\x76\x25\xc3\x27\xd7\x04\xbc\x51\x2b\x8a\x5c\xb3\xac\xdd\x02\xfa\x63\xd9\x82\x45\x46\x19\x97\xb6\xc3\x16\x90\xc8\x95\xe3\x1d\x51\x0e\x97\x14\x8e\x74\x0f\xae\xce\x88\x72\xf8\x9b\xdc\x1c\x3b\xad\xc6\xe1\x6f\x72\x25\xec\x68\xae\x46\xf2\x4f\x60\x39\x63\xa4\x9f\x45\x16\x49\x1e\xf8\x28\xb2\x48\x20\xbb\xb5\x95\x45\x16\x59\x64\x73\x3a\xcb\x22\x81\x39\x9d\xba\xb2\x48\xe0\x7b\xcc\x32\x7b\x8d\xfb\xa0\xa6\x8b\xc0\xe9\x47\x85\xd1\x75\xec\xf9\x21\x8d\x04\x26\x57\xeb\x47\x91\x46\x16\xc8\xe0\x68\x2e\x77\xb2\x41\x20\xd2\x8d\xe9\xb4\xd7\x2e\x9b\xe0\xa4\x94\x0d\x02\xab\xdb\x6d\xb2\x41\xe0\x7b\x8c\xba\x49\x07\x81\x56\xfd\x01\xe9\x60\x91\x0e\x36\xeb\x2b\x1d\x04\x22\xfd\x6e\xa5\x83\xe5\xb2\x6e\xd8\xae\xca\x65\xdd\x2e\xee\x2f\x89\xff\xbe\xfc\x23\x8a\xcc\xb0\x10\x3c\x32\xc8\xe0\x1a\xe5\xb6\x9e\x37\x61\x04\x41\x9d\x6e\xab\x49\xc6\xfd\x21\xb1\x2a\xb7\xf5\x24\xe3\xfe\xf4\xf7\x6f\x7b\x9a\x8b\xa6\xd4\x9e\xe5\xb6\xa7\x6f\x7b\xda\xdd\x41\x52\x09\x24\xf1\x1e\x51\x24\x95\xe5\x76\xae\xb8\x15\xc8\x20\x81\xd5\x9b\x6f\x3a\x59\x24\x95\xcd\x35\xfe\xde\x4d\x78\xf9\x9c\x78\x4c\x52\x09\xcc\xe9\x9b\x8f\xe3\xf1\x38\x31\x30\x53\x14\x49\x25\xd0\x3b\xca\xa7\xc8\x29\x81\xe0\x66\xd1\x28\x72\x4a\x60\xce\x66\x91\xc3\x41\x38\xfa\x68\x7e\x9b\xf2\x40\x20\x89\xef\x8a\x22\x0f\x04\xc6\xcf\x99\x2d\x0d\x2c\x72\xbe\xe6\x17\x26\xe7\x03\xf2\xe7\xb4\x90\xf3\x15\xc9\x5c\x73\xbf\x90\xcc\x01\x73\xba\xe5\x49\xe6\x8a\x96\xda\xe6\x42\xfd\xda\x6b\x1f\xa4\x42\xb3\xc8\xef\x8a\x96\xda\xe6\x86\x21\xc1\x03\x56\x77\xf4\xde\x5d\xb7\xd7\xc7\xbe\xef\xb5\x4a\xea\x2a\xa1\x16\x83\x34\x91\x51\x35\xcb\x02\x45\xbb\x61\xd5\x2c\x5b\x7f\x76\x08\x4a\xa7\x12\xf5\x2d\x24\xf7\xf1\x47\x25\xea\x3b\xaa\x44\x8f\x94\x87\x51\x25\x7a\x40\x72\xd1\x67\x54\x89\x5e\x85\x4d\x8d\x06\x01\xaa\xd2\x29\x20\x35\x94\x55\xed\x9c\x55\x3b\x27\x69\x05\xa3\x6a\xe7\x04\x26\x17\x52\x46\xd5\xce\x59\xab\xdf\x13\x8b\x66\xd5\xe6\x08\x4c\xce\x8f\x45\xd5\xe6\x08\x94\x41\x2a\xbe\xa8\x44\x31\x08\x1e\xec\x8c\x5a\xad\x47\x3d\x7d\xcc\x57\xad\xc8\x07\x75\xd9\x21\xd5\x7a\x68\xc1\x24\xab\x57\x54\xc9\x19\x30\x87\x6f\x4a\xce\x00\xa2\x7f\xa3\xca\xcd\x80\x1c\xb6\x53\xfb\x65\xd5\x7e\xd9\x8b\x65\xc3\x32\xac\x0e\xcd\x7f\xef\xb0\x90\x77\x96\x90\xfd\xa8\x32\xb8\xea\xed\xa8\xcc\xf9\xda\x6c\xf9\x07\x9c\x90\x88\xaa\x8d\xb3\x1a\xe4\xbc\xac\x96\xed\x6e\xdc\xe4\xb4\x7f\xd0\x76\x7f\xd0\xb9\x4e\x3d\x6a\xb3\xd9\xe4\x6d\x1a\xa4\xfe\x8b\xda\x6c\x37\x07\x6b\x49\x4e\x14\x55\xe3\x28\x10\x78\x2f\xa3\x6a\x1c\x05\x46\xf8\x54\xb7\x73\x48\xba\x3f\xba\xd5\xef\x56\x9f\x04\xb3\xa4\x5d\x8d\xda\xad\x3e\x64\xf3\x67\xb7\xca\x35\xab\x2c\x92\x73\x2b\x51\x65\x91\x40\x5d\x70\xab\x2a\x8b\x04\xe6\xf8\xf9\xff\xad\x99\x8c\x51\x63\x42\x95\x31\x02\x93\xdc\x3e\x51\x65\x8c\x75\x98\xb7\x91\x0f\xb4\x6a\x08\x05\xe6\x70\xb2\x0c\x6b\xab\x6d\xd4\x25\xbf\x6a\x1b\x05\x56\x77\x02\x69\x1b\x05\x3a\x79\x04\xa3\x0e\xbb\x9b\x78\xe9\xe1\x4a\x57\x87\xfd\x3d\xc8\xfb\x52\xac\x87\x8d\xd2\xaa\xea\x37\x5b\xa5\xa9\xc0\x24\x2b\x48\xd4\xb1\x5b\xf5\xf8\x98\xad\xb2\xc3\xc9\xb9\x94\x7e\x16\xd3\x0e\x27\xe7\xd2\x20\x2f\x74\xd4\xe9\x74\x9c\xa4\x8a\x43\xec\x54\xc9\x2c\x50\xf7\x80\x4a\x66\xab\x2c\xb5\xef\xff\x66\x7f\xc0\x52\xc9\x4b\x16\x55\x96\x0a\x54\x0e\x48\x44\x95\xa5\x02\x65\xf4\xfd\x03\xf6\xc7\x84\x99\xf8\x29\x4a\x53\xab\xfc\xb3\xc3\x79\xab\xfc\x13\x98\x7d\x5a\x5b\x1b\xf5\xc1\x94\x06\x57\x4d\xa9\x35\xf6\x99\x09\xda\x2e\x25\x05\x1a\x49\x61\xa3\x4a\x49\xab\xe6\x55\xad\xb0\x55\xf3\x2a\xd0\x0a\x9c\xa6\x6a\x5e\xad\xb1\xab\x4b\xab\xe4\xa4\x40\x93\x7f\x56\x29\x29\xe0\x65\xa2\x51\xa5\xa4\x55\x4a\xda\x6d\xbc\x94\x14\xc8\xbd\x5a\x49\x49\x6b\xd8\x82\xff\x8e\x3c\x8b\xaa\x59\x15\x68\xc4\xcc\x45\xd5\xac\x5a\xbd\x67\xd5\xaf\x30\x6d\xb2\x54\x57\x0b\x7f\x95\xea\x02\xd3\x5d\xbd\x4a\x75\xab\x54\x97\x83\x8c\x51\xa5\xba\x40\x19\xce\x31\xa9\x2e\x30\x89\x7d\x8d\x9a\x4e\xc5\xb4\x7d\x10\xe7\x9a\xb6\x8f\x14\xb7\x3d\xac\x9a\xed\x93\x24\x77\x17\x77\x49\x32\x30\xb5\xd6\x55\x49\x72\x95\x24\x93\x2e\x30\xaa\x24\x19\x98\x44\x6e\x45\x95\x24\xd7\xe5\xbc\xb3\xf1\x9a\x5a\x81\x85\x0f\x32\xaa\x84\xb8\xae\xfd\xa3\xcc\x28\x79\x2d\x30\x49\x17\x18\x55\x5e\x5b\x0f\x7f\xd4\x8a\x1c\xfe\xe8\x07\x91\x4e\xf6\xc3\x1f\x3d\x5c\x97\xdc\xd9\x0e\x7f\xe1\x83\x54\xd1\x54\xe9\x6f\x95\xeb\x76\x2c\x1d\x55\xae\x0b\xb4\xea\x5a\x25\xd9\x05\x86\x56\x8d\xaa\xad\x15\xf8\xde\xb4\x1e\x56\xf7\x20\xe3\xa1\x5b\xa7\xc6\x56\x60\x68\xe8\xa8\xb2\xe4\x7a\x3a\xca\x18\x09\xab\xfc\x17\x18\x5a\x35\xaa\xf4\xb7\xfe\x4b\x3b\x4b\x75\xe5\xbf\x80\xc7\xc9\xa3\x6a\x6b\xad\x1f\x25\x1e\x5a\x13\xaa\x8c\xb8\xee\x64\x45\x0c\x8b\x8c\xb8\x6a\x0b\xc5\x65\x1f\x55\x5b\x28\x90\x04\x2b\x46\x95\xfd\x02\x63\x37\x40\xf6\x5b\xb5\x85\xc2\x6a\xab\xe4\x17\x18\xbb\x1f\x25\xbf\xf5\xda\xc9\x31\x28\xb2\xfe\xf2\xe1\xee\xfe\x2d\x1f\x06\xca\xcf\x89\x2b\x1f\xae\xe4\x89\x1d\x24\x55\x8c\x7a\xd9\xdd\x17\xdd\x0d\xbb\xae\x52\x64\x60\x28\x94\xab\x1c\x18\xf8\xde\x64\x12\x69\x1e\xad\xde\x3a\x25\x15\xba\x6d\x93\x54\x79\xef\x20\x52\x65\x60\x28\x77\xab\x54\xb9\x12\x2e\x3d\xf6\x0e\x72\xdb\xb7\x18\x5b\xd3\x9d\x5f\x5b\x6b\x95\x17\x0f\xb7\x45\x79\x31\x50\xdb\xae\x87\xfd\x6d\x00\xc3\x70\x07\xb9\x6d\xc2\x4e\x17\x64\x91\x4d\xb8\x6d\x82\x13\x4b\x12\x0c\x94\xe5\x5a\x2b\x09\x06\x6a\x41\xf1\xd5\xc7\x16\x10\xcf\x3c\x86\x13\x4b\x7a\x0b\x8c\x3d\x3b\x34\x99\x02\x63\x2f\x7b\x9a\x4c\x2b\xf1\xcc\x63\xd8\x95\xda\x47\xeb\x3f\x62\x4c\x91\x63\x80\x7d\x34\x9d\xde\xf2\xe2\xea\x05\xac\xce\x21\x79\x31\x30\x54\xff\x55\xf3\x28\xd0\x77\x77\xbf\xd6\xff\x25\xda\xc8\x69\xf5\x5a\xff\xd7\x11\xa0\x6b\x5f\x47\xe0\x65\x5a\xb9\x0f\x4b\xb1\x81\xa1\x52\xac\x52\xec\xaa\x59\x75\x38\x76\x9a\x55\x81\xa1\x52\xac\x9a\x55\x81\x3a\xfc\xa0\x24\xe2\x40\xfe\x7b\xca\xbe\xf8\x88\xf8\x50\x0b\x55\x79\x38\x50\xf7\x82\x20\x0f\x07\x22\xdc\xd6\xa4\xe1\x55\xce\x3d\x68\x78\x93\x73\x03\x5f\x59\x52\x56\x2c\xe3\x83\x42\x5e\x37\x02\xa3\x85\xef\xb1\x45\x59\xb3\xcc\xa6\x37\x8a\xba\x45\x2c\xf2\x24\x0b\x8f\xa6\x0d\x16\x18\xba\x2f\x9b\x36\xd8\xf6\x73\xa2\x35\x2b\xf2\x58\x86\x9c\x4c\x1f\x63\x9c\x9a\x36\xd8\xe1\xab\xda\x60\x81\x21\xe7\x6e\xda\x60\x9b\x36\x58\x12\x8c\x45\xd3\x06\x0b\x0c\xf5\x75\xd3\x06\x0b\x14\xae\x75\x89\xa6\x0d\x16\x18\xaa\x9c\xa6\x09\xb6\x29\x07\x38\x09\x19\x4d\x39\xd0\x4c\xbf\xc3\xde\xdf\x94\x03\x40\xe1\xec\x7b\x34\xd5\x00\x30\xb4\x9d\x35\xd5\x00\x30\xb4\xe7\x36\x83\x1e\x9a\x96\x5a\x72\x9a\x45\xd3\x52\x0b\x0c\x05\x42\xd3\x52\x0b\x8c\xd9\xff\x3b\x71\x4a\x34\x63\x22\x5a\xdd\xbd\x40\x67\x55\x7b\xa1\xda\x0b\x83\x22\x7b\xa1\xba\x14\xc0\x56\x9b\x6a\x04\x68\x5a\xee\x9b\x62\x04\x30\x55\x51\x34\xc5\x48\x33\xa4\xda\xe1\x56\x8b\x00\x43\x4f\x69\x53\x8b\x00\xdf\xff\xa7\xff\xaa\xdd\x50\x4d\x22\xe1\x3f\xb3\x1b\x9a\xdd\x30\xa8\x9a\xfa\x04\x18\x1c\x34\x8e\xa6\x40\x69\x9c\xb0\x1c\xc4\x37\x45\x6b\x0e\x37\x0a\x65\x0d\x1f\xb3\x9d\xda\x98\xf5\xad\x35\x15\x0a\x90\xb1\xdf\x74\xb8\x9b\x97\x0e\x51\x5d\x15\x0a\x30\xa6\xa3\xa1\x44\x01\xc6\x74\x02\x28\x51\x80\x32\xb8\x6d\x3c\x9a\x1a\x05\x58\x5a\xbf\x9b\x1a\xa5\x19\xad\x31\x9c\x15\x0a\x12\xa0\xac\xf4\xbf\xed\xb6\xbf\x9c\x73\x63\x6e\x2a\x48\x80\xef\x4d\x3a\xb7\xdb\x1d\x44\x5e\xeb\x0d\x6f\xdd\xee\xe8\x76\x07\x4a\xbd\x19\xd4\x01\x24\xa7\x13\xa3\x69\x37\x07\xd2\x3d\xb8\x69\x37\x6f\xdd\x0d\x0b\x4a\xdb\x14\x29\xc0\x20\x21\x42\x34\x45\x4a\xeb\xae\x10\xec\xc2\xcd\xa0\x0e\x60\x4c\xe7\x95\x31\x1d\x4d\x2d\x43\x7e\xae\x68\x6a\x19\x60\x36\xfb\x5b\x2d\xd3\x86\xab\x1e\xac\xa7\x29\x5c\x80\x31\x9d\x7e\xea\x96\x36\xfc\x51\x22\x28\x9a\x82\x01\x18\x13\x4a\xdb\xd4\x0b\x6d\xba\x79\x38\x27\xe5\xf8\x40\xa4\x2d\x95\xe2\x03\x65\x0c\x62\x2f\x9a\x1c\x1f\x58\xc6\x02\x34\xe3\x2c\x80\x55\x8a\x3f\xe0\xf0\x4d\x66\x33\xd4\xba\x69\x9c\x6e\x86\x45\x87\x4f\xd9\x45\xc6\x59\x90\x8f\x2a\x9a\xe2\x00\x18\x7a\x64\x9a\xe2\x00\xc8\xb6\x8b\x6c\x80\x7a\x81\x0c\x11\xd1\xd4\x0b\x40\xfe\x5c\x81\xd4\x0b\x4d\xbd\x40\x92\xad\x68\xea\x05\x20\xf5\xfb\x35\xf5\x02\x50\x06\x19\xb5\xa2\x19\x8f\xd1\x8c\x8b\xf6\x43\xd3\xd2\x0d\xa4\x1b\x5b\x53\x55\x34\x2d\xdd\x13\xe7\x71\x53\x56\x00\xb9\x97\x50\x65\x05\x90\x7b\x3d\x33\x68\x03\x58\x06\x4b\x34\x85\x46\x33\x68\x43\x8f\x7e\x53\x69\x00\x63\xfa\x6d\x1b\xb4\x01\x7c\x8f\xf1\x03\xca\x0b\x60\x71\xe5\x62\x34\xe5\x45\x53\x4b\x18\xc9\xd1\xd4\x12\x40\x37\x82\xad\xa9\x25\x5a\xee\xb6\xd3\x93\x69\xdb\x3f\xa8\xd3\x99\x9b\xb6\xdd\xe0\x0e\x1d\xe7\xcd\xe0\x0e\xc0\x7b\x81\xa2\xa9\x42\x9a\x2a\x64\xee\x32\x1b\xff\x41\x0b\xbf\x0d\x65\x48\x33\xe0\x43\x03\x4d\x53\x73\x00\x93\x7c\x2d\xd1\x94\x1c\x8d\xf4\x38\x43\xbf\x5b\x5b\x36\x8b\xbb\xd3\x0a\x82\xb5\x29\x39\x9a\xfa\x42\x76\xde\xd4\x17\x40\x35\x1c\xa0\xa9\x2f\xda\xda\x75\xf3\x55\xeb\xb6\xcc\x06\xe7\x9b\xd6\x4d\x19\x22\xf9\x6c\x6b\x57\xe4\x93\x21\xc5\xb9\xab\x0c\x69\xca\x10\x99\x4f\x53\x86\x00\x93\xfb\xf6\xa2\x29\x43\xda\x61\xbf\xc9\x09\xb4\xaf\x03\x2d\x9c\x81\x87\xfd\x66\x14\x88\x44\xa4\x19\x05\x02\xd4\x70\x47\x50\x99\xb4\xc3\x7e\xdb\xaf\xda\x6f\x07\xfd\xe6\x8e\xaa\x0c\x01\xca\xf2\xb3\x52\x86\x00\x5e\xce\x1f\x4d\x19\x02\x94\x7f\xfb\xbf\xd6\x7a\xa0\xee\x19\xa8\xb1\x1e\x98\x3a\xbb\x9b\x62\xa5\x19\xf2\xb1\x77\x59\x65\x08\x30\x75\x9d\x37\x43\x3e\xda\xe9\xc7\xe1\x74\x53\x87\x00\xd3\xd0\xd0\x66\x7c\x07\x50\x8a\x3c\xc7\xf8\x8e\xa6\x5a\xf9\xdb\x9e\xad\x98\x01\xa6\xa1\x4c\x4d\x31\x03\x94\x7f\x3b\x92\x6a\x06\x98\x86\x23\x34\xd5\x4c\x53\xa7\xec\xcd\x52\x9d\x02\xcc\xe2\x32\xaa\x4e\x01\x26\x29\xa3\xa2\x19\xc5\x01\xb4\xe6\xbc\x33\x8a\xa3\xa9\x66\xf6\xca\xa7\x9a\x01\x3a\x77\x29\x44\x53\xcd\x34\x83\x3d\xf6\x77\xad\x9c\x01\x66\xf1\xab\x53\xcd\x00\xc5\x80\xa4\xa6\x9a\x01\xa6\xf1\x0e\x4d\x31\xd3\x94\x24\xd3\xcd\x58\x49\x02\x4c\x82\xe4\xa3\x29\x49\x9a\x92\x64\xba\x31\x2a\x49\x80\xc9\xa9\x8b\x68\x4a\x92\xa6\x24\x99\xee\x82\x4a\x12\xc0\xa4\x8c\xd1\x94\x24\x4d\xbb\xfc\xf4\x7b\xd5\x2e\x0f\x4c\x03\x1e\x9a\x76\x79\xa0\x8c\xe9\xa7\xa3\x61\x1e\x98\xba\xc9\x9b\xca\x05\xf8\x1e\xa3\x6e\x4a\x17\x60\x16\xbb\x4d\xe9\xd2\x94\x29\xd3\xe1\x53\xa7\x00\xe5\xe7\x6a\xa8\x4e\x69\xaf\x03\xef\x9c\x55\x6f\x00\xd3\x20\x87\xa6\xde\x68\x9a\xd7\xa7\xf5\x7d\xf7\xab\x0f\x2b\x35\x03\xaf\x79\xbd\x49\xf5\xc9\xa7\x16\x5d\xaa\xdf\xe5\xf0\x24\x89\x8a\x2e\x87\x07\x9a\x71\x1c\x5d\x0e\xdf\x8d\x97\x26\x6b\x59\x74\xe3\xa5\x81\x4a\x86\xfa\xe8\x1a\xe6\x81\x4a\x66\xeb\xe8\x1a\xe6\xbb\x41\x19\x64\xe6\x89\x6e\x50\x06\x50\xb5\x11\x74\x05\x01\x30\x0d\x0a\xe9\x0a\x82\x6e\x6c\xf4\x44\x2c\x76\xd9\x3f\x30\x0d\xa1\xee\x9a\xef\x81\x26\x4b\xea\x9a\xef\xbb\x91\xcb\xf1\xb3\xcc\x1f\xe0\xf6\x07\xae\xc7\x8c\x2e\x85\x07\xa6\x62\xb4\x4b\xe1\xbb\x29\x4f\x34\x3c\x77\x69\x37\x60\xaa\xb7\xe8\xf2\xea\x2e\xaf\x8e\x62\x99\xdd\x51\x99\x33\xf8\x59\xbb\xbc\x1a\x98\x46\x94\x77\xc3\x28\xba\xbe\x80\xb0\x8b\xf4\x05\x00\xd3\x00\xe7\x2e\xfb\xee\xfa\x02\x38\x58\x1c\x5d\xfa\x0d\x4c\x83\x45\xbb\xf4\xbb\xeb\x0b\x88\x6a\x75\x77\x13\x2e\x1e\xb3\x6a\xb7\x45\xb7\x8f\x59\x91\xc7\x32\x3e\x18\x87\x45\xfe\xdd\x75\x19\x90\x64\x26\xba\x2e\x03\x60\x1a\x8f\xdd\xa5\xe4\xbd\x55\x1f\xa3\xbe\x7a\x08\x80\x3a\x1c\x17\x29\x39\xd0\x0c\xef\xea\x52\x72\xa0\x91\x16\x2d\xba\x8c\x1c\xa8\x1c\x19\x8a\x2e\x23\xef\x6d\x37\x8a\xaa\xc9\xa2\x81\xe6\xa2\xd8\x35\xf4\x77\x48\xf4\x08\x54\x76\x97\x45\x03\xcb\xf8\x88\x2e\x8b\xee\xb2\x68\xb2\x66\x44\x97\x45\x03\xb3\xc2\x75\xba\x2c\xba\x73\x30\x71\xb8\x97\x75\xa3\x43\x80\x45\x82\xf4\xe8\x9a\xf5\xbb\x51\xca\xba\xce\xbb\x51\xca\xc0\xe4\x46\xd5\xe8\x1a\xe7\xbb\x24\x37\x58\x3c\xbb\x24\x17\x98\xc6\x0e\x75\x49\x2e\xf0\x3d\xe6\xab\x8e\x3c\xf7\xc6\x19\x3b\xd4\xb5\xce\x03\x65\x41\xd3\xbb\xc6\x79\x60\xea\x8c\xea\x63\x57\xed\xe2\x45\x8b\xec\x22\x43\x48\x62\xf8\xcf\x1c\x77\x42\x48\x38\x20\x11\x5d\xdb\x3c\xd0\x74\xc3\x77\xa9\x76\x37\xcc\x99\x9b\x8b\xa2\x6b\x75\xef\x86\x39\xb3\x09\x76\x23\x48\xfa\xdc\x0d\xf0\x55\x1b\xf0\x41\xc6\x7e\xcc\x06\x4c\x52\x6c\x39\x25\xa5\xda\x9d\xf3\x86\x23\x50\x2d\x5d\x62\x0d\x4c\xe3\x95\xba\xc4\xba\x4f\xa7\xa4\x6d\x97\x45\x03\x25\xed\x34\x59\x74\xe7\x0a\x83\x11\xac\xe1\x5d\x2e\x0c\x78\xcd\x74\x74\xa9\x30\x30\x8d\xae\xea\x52\xe1\x2e\x55\x0d\xd6\xeb\x2e\x55\x05\x66\xfd\xe5\x7f\xef\xd9\x5d\x26\xdb\x65\xb2\xe4\x75\x88\x2e\x93\xed\xc9\x24\x83\x19\x76\xad\xe2\x40\x19\xe1\x92\x99\xf6\x2a\xb9\x57\x34\x2d\x74\xc9\x6d\x97\xc9\x46\xfa\xaa\x55\xe7\xca\x38\x83\xb4\xba\x4c\xb6\xcb\x64\xc3\x35\x53\x26\xdb\xbd\xf1\x77\x3f\x66\xe7\xcb\x64\x83\xed\xa7\xcb\x64\x81\x59\x8b\x6f\x3a\x7d\x64\xb2\xc1\x66\xd6\x65\xb2\xc0\xac\xc5\xea\xda\xd2\xb4\xa5\xf0\x9e\xae\xf5\x1c\x98\xd5\xc5\x50\x72\xdb\x0d\x23\xd6\xc1\xd6\xe5\xa3\xc0\xd4\x1a\xdd\x0d\x23\x06\x8a\xd7\x62\x44\x37\x8e\x18\x98\x15\x2e\xd2\x65\xad\x9d\x14\x8b\x23\xfd\x60\xe5\xa3\xdd\x4b\x7a\x9d\x2c\x87\xfd\x46\x3e\x45\x53\xf8\x47\x3f\x9c\x05\x07\xd7\x80\xda\x52\x8d\xe7\xc0\xac\xb0\xe7\xae\xf1\xbc\x73\x95\x6f\xc5\x04\xd9\x25\xb2\x1d\xea\x69\x6a\xf6\xe8\x72\x4f\x20\x7f\xae\xdd\x72\xcf\x2e\x35\x4c\x7b\x5c\x6a\x08\x4c\x8d\x4a\x5d\x6a\xd8\x49\x36\x62\xca\xec\xe8\x06\xfa\x02\xcb\xe0\x94\x6e\x68\x47\x37\xc2\x36\x5d\x81\xe5\x66\x40\x76\x78\x77\x97\x9b\x75\x49\x17\xf9\x41\xa2\x4b\xba\x80\xd5\xec\x5d\x49\x57\xd7\x5e\xac\x37\xad\x4b\xb1\x80\x59\x6d\x82\xf6\xe2\x6e\x68\x05\xb9\x3a\xa2\x1b\x5a\x01\x2c\x09\x61\x37\xb4\xa2\xdf\xd6\x0d\x39\xd8\x65\x62\xdd\x7b\x7b\xed\x37\x03\x71\xbb\x71\x14\xe9\x8a\x6e\x1c\x05\x50\xd2\x95\xda\x38\x8a\x2e\x87\xf3\x40\x49\x97\xc3\x01\x73\x4d\x1f\xb3\x55\x72\x38\x12\x4f\x44\x97\xc3\x01\x73\xb9\xe1\xcb\xe1\x80\x62\xc6\xda\xe8\xda\x95\x81\xe6\xa1\x86\xfe\xd8\x52\x42\x7d\x7f\x8e\x95\x91\xbe\x40\x33\x4e\xb0\x4b\xfe\xba\x91\xbe\xfa\x0d\xbb\xec\x0f\x68\xe1\x20\x48\xfe\xba\x67\xe5\xf4\xba\x75\xf9\x1a\xd0\xd2\xad\x40\xbb\x32\x30\xbb\xcb\xbe\x76\xe5\x6e\x08\x06\xe9\x29\xa2\x6b\x1f\x06\x66\xf7\x4d\xed\xc3\x40\x31\x59\x67\xf4\xd7\x7a\xbc\x24\x99\x90\x8b\x68\x32\x06\x8a\x06\xac\xae\xc9\xb8\xbf\xce\x0f\xfc\x54\x5d\xf2\x07\x4c\xee\x11\x8c\x21\xf7\x1b\x3f\xeb\x01\xa5\x1d\x12\x3d\xa0\x73\xc1\x59\x0c\x79\xde\xf8\x39\xa2\x28\xa2\xe1\xb9\x35\x60\xe9\xd2\x1c\x46\x5b\x00\xa3\xd2\x1d\x43\xf3\xed\x90\xc1\x91\x4b\x21\x86\x0c\x0e\x98\xa4\x93\x8f\x21\x83\x1b\x9e\x6e\x23\x65\x4a\x0c\x29\x1c\x30\x8d\x85\x18\x9e\x6e\x1b\x5a\x7e\x49\x87\x14\x43\xcb\x2f\x30\x8d\x85\x18\x5a\x7e\x87\x31\xb4\xda\xfb\x87\x06\x5c\xa0\x68\xa6\x1c\xc6\xd0\x02\x3b\x70\x65\x48\x11\x81\xd6\xc2\x6a\x9c\x16\xd9\x76\x88\xcd\x90\x23\x02\x4d\x6b\xd5\xd0\xcc\x3b\x3c\xc9\x46\x4e\xa3\x18\x1a\x75\x81\x66\x0c\xf9\xf0\x24\xdb\xf0\xd8\x1a\x79\x24\x62\x48\x25\x81\xe0\xe6\xa4\x18\x1e\x5b\x1b\xb2\x4b\x4e\xfb\xc7\x90\x5d\x02\xad\xb1\x73\x0c\xd9\xe5\x90\x4a\x92\x5f\x21\x86\x54\x12\xe8\x46\x79\x0e\xa9\x24\xd0\xba\x63\x20\x93\x04\x8a\x69\x35\x62\x48\x25\x81\x32\xf7\x3f\xb3\xa1\x30\xc9\xb5\xff\x99\x0d\x85\x49\x72\xf5\x64\x0c\x89\xe4\x30\x30\x98\xf4\x21\x31\x64\x92\xc3\xe4\x18\x2c\x3c\x43\x22\x09\x34\x0d\x8b\x43\x22\x09\xf4\x1a\x16\x39\xc6\x1f\xd4\xc2\x32\x39\xa4\x96\x40\xe3\xd2\xd9\x18\x52\xcb\x61\x3c\x0a\x39\x5f\x62\xc8\x2d\xc7\xce\x97\xf1\xfb\xef\x4d\x7b\x48\x3d\x81\x62\x0a\x8f\x18\x72\x4f\xa0\xa6\xed\xd3\x1a\x3c\x4c\x05\x9f\x3e\x65\x97\x12\xb0\x62\x22\x8e\x18\x9a\x83\x81\x19\x7e\x24\x5a\x83\x81\xb2\x9c\x88\xf2\xd8\xa1\x35\x98\x64\x17\x31\xb4\x06\x03\xd3\xd3\x0c\x43\x1e\x0b\x14\xb3\x97\xc4\x90\xc8\x02\x33\x90\x82\x43\x1e\x3b\xfa\xee\x07\xcb\xec\x07\x12\x71\x54\x8c\x10\x43\x3b\xef\xe8\x4c\x14\xfd\x75\xc3\x30\x16\x60\xca\x44\x86\x61\x2c\x43\x0a\x4c\x3e\x86\x18\x52\x60\x60\xca\x6b\x86\x14\x18\xa8\x5c\x2d\x1f\x43\xa3\xf1\x30\x3e\x9a\x0c\x0a\x31\xb4\x1a\x03\x93\xcc\x77\x31\x8c\x8f\x06\x5a\xd8\x93\xda\x91\x07\xa9\x39\x3c\xba\x1d\x63\x38\xba\x83\x8b\x7e\x58\x1d\x87\x14\x7b\x48\x94\x39\xb6\x1e\x43\xa2\x0c\x54\x3d\xbc\x43\xa2\x0c\x8c\x9f\xb3\x47\xa2\x0c\x4c\xa9\xd4\x90\x28\x03\xfd\x67\x0f\x49\x94\x81\xe4\x3e\xeb\x18\xf2\xe4\x61\x5c\x35\xa7\xb4\x63\x18\x8a\x02\x84\x86\xac\x21\x29\x1e\xd3\x21\x60\x67\x18\x06\x51\x03\x75\xfa\xc5\x19\x9d\x32\x4c\x95\x6e\x3f\x1a\x9d\x32\xb4\x49\x7b\xb4\x73\x48\x94\x81\xa2\x6d\x72\x48\x94\x81\x34\x84\x6f\x68\x93\x1e\xda\x8c\x3d\x97\x38\xb4\x19\x03\x73\xf7\xad\x36\x63\xe0\x7b\x8c\xff\x66\xdc\x33\x50\x8c\xf2\x1d\x9a\x91\x87\xdc\x79\x7f\xac\x72\x67\x20\xc8\xd9\x14\x43\xee\x3c\x8c\x98\x5e\xf0\xfa\x21\x79\x06\xaa\x07\x51\x87\x76\x64\x60\x86\x6d\xd7\x8c\x3c\xc2\x05\xa2\x5b\x37\xa7\x02\x71\x27\xc5\x37\xe5\xcb\x43\x72\xbc\x30\x72\x0d\xc9\x31\x30\x65\xb8\x43\x72\x3c\xd2\xea\xba\x90\x78\x60\x0f\xa8\x9a\x92\x86\x7c\x19\x08\xd2\xe4\xc5\x90\x2f\x0f\x89\x30\xb7\x52\xc4\x90\x08\x03\xa1\x13\x60\x48\x84\x87\x21\x23\x6b\xf8\xdf\xac\x6e\x1a\x95\x4c\x91\xa4\x77\x68\xd2\xd5\xe5\x34\x64\xbd\x40\xd7\x74\x38\x34\xe9\x02\xf1\x73\x83\x32\x8a\x64\x18\x6a\xbd\x10\x4d\xc3\x50\x6b\x20\x8c\x2a\x1b\x86\x5a\x0f\x8d\xc1\xfb\x3b\xd0\x18\x0c\xc4\xcf\xea\x6a\x0c\x06\xaa\x5e\x97\x61\xf4\xf5\xf0\xa8\xdf\xc2\xe5\x34\x0c\xbf\x06\x8a\x02\x69\x18\x7e\x0d\xd4\xe6\x22\xaa\x15\x79\x90\x3e\x7d\x48\xc1\x86\x1c\x1d\x88\x5f\xb1\xc8\x6f\x43\xcb\xf2\xde\x19\xe4\xe8\x40\xdd\xb3\x59\xcb\x32\x10\x3f\x97\x1d\x03\xb7\x81\xbe\xd7\x77\x6d\xcd\x43\x72\x4f\x1a\x8e\x18\x92\x7b\x20\xf6\xa4\x97\xdc\x03\xcb\x79\x75\xd8\x41\xdc\xfe\xa5\xff\x63\xc8\xf6\x87\xd6\x67\xa5\xf2\xd0\xfa\x0c\x74\xed\x21\x43\xeb\x33\x10\xf2\xc0\x61\x5c\xcc\xd0\x20\x6d\xbc\xc5\xd0\x20\x0d\x94\xb6\x9b\x64\x2b\x8d\x8b\xc1\x68\x3f\x14\x05\x40\x28\x0a\x86\xa2\x00\x08\xc3\x06\x87\xf6\x68\xa0\xed\x91\xd3\x1e\x3d\x4e\xc6\xdc\x45\xd3\x48\x19\xa0\x18\x22\x3c\x0c\x94\x19\xa7\xdf\x9d\x24\x4d\x7b\x34\x10\x3f\xec\x67\xc3\x48\x19\xa0\x93\xe4\x3e\x86\x32\x64\x60\x8e\x1e\x4b\x3e\xa3\x3d\x1a\x68\x46\x0e\x0c\x65\x08\x50\x9b\xc4\x50\x19\x02\x54\x4f\xc9\x0d\x23\xcc\x87\x26\xe8\xe5\xdc\xd6\x04\x0d\xc4\x5e\x6e\x35\x41\x03\xf1\x73\x51\x36\xa0\x06\x08\x0f\xa3\x0c\x03\x6a\x80\x52\xea\x1f\x04\xf6\xb8\xec\x85\xcb\xbd\xda\x05\xf4\x72\xe6\x7f\xd0\x87\xa3\xa8\xb5\x1b\xe8\x9b\x83\x6a\xed\x06\x6a\x75\x1f\x52\x51\x01\x4d\x3b\xc3\x50\x51\x0d\xad\xdd\xcb\xfd\x50\x6b\x37\x10\x46\x76\x0d\xad\xdd\x43\x45\xb5\x5c\x66\x55\x54\x40\xf7\xd8\xeb\x50\x51\x0d\x15\xd5\xde\xf9\x55\x54\x40\xd7\xb7\x3d\x54\x54\x40\x21\x15\x51\x0c\x83\xd5\x81\x50\xb4\x0c\x43\x77\x86\xe7\x24\xb9\x01\x3f\x86\xb1\x3b\x63\xc7\xb4\x53\x5b\xed\xe4\x40\x16\xcc\x5c\x43\x75\x36\x3c\x27\xa9\x0f\x7f\x28\xcf\x80\x36\x1d\x5a\xd5\xd9\x50\x8a\x91\xca\x27\xc6\xbd\x1b\xfa\x30\x5d\xad\x87\x33\x40\x8d\xb5\xe4\xb8\x6a\x2c\xa0\x0e\x5b\xa0\xc6\x02\xc2\x64\x1b\x43\x8d\x05\xc4\xcf\x1e\x52\x63\x0d\x35\xd6\xc2\x5a\x3a\xd4\x58\x40\xfc\x30\xfb\x0d\x35\x16\x10\x7b\xab\xd6\xc0\x0e\x84\x89\x3b\x86\xf6\x75\xe0\xfb\x67\xfe\xa6\x6d\xe7\xf2\x2f\x8d\xe9\xc3\xd3\x94\x40\x18\xe5\x3e\x8c\x16\x1a\x8f\x3c\xcb\xfd\x50\x75\x36\xbc\xd6\x4b\x42\x6e\xd4\x0f\x10\x3f\x29\x8f\x56\xf8\x81\x86\x9b\x3f\x59\xaf\x1a\x0e\x28\xd5\xef\x4d\x0d\x37\x08\xa3\x9f\x3f\x39\xa6\xd1\x3b\x40\xd9\x5f\x97\xd1\x3b\x83\x30\xfa\xa9\x65\x74\x18\xbe\x03\x84\x09\x44\x86\xe1\x3b\x03\x5d\x37\xf7\x6e\xa2\xae\x03\xc2\x04\x22\x53\x5d\x07\x84\xfe\xe3\x69\xf4\x0e\x50\x94\x0f\xd3\xe8\x1d\x60\x19\xa7\x31\x35\xfc\x03\x61\x6a\x93\xa9\x1e\x04\xca\x74\xe1\x9a\x0a\x42\x20\x4c\x46\x32\x35\xfc\x4f\x62\x7c\xa6\x6b\xfd\xd4\xa4\x0f\x04\x77\xd3\xc6\xd4\xa4\x0f\xc4\xda\x6f\x5e\x16\xd9\xcc\xa4\xe8\xb6\xe8\x63\x63\x64\xc2\x8f\xa9\x92\x9c\xc4\xed\x4f\x17\xcb\xa9\x6c\x04\x82\x04\xd7\x31\x55\x8d\xb3\xec\xda\xf2\x03\x46\xfd\x00\x61\x16\x93\x69\xd4\x0f\x50\xa6\xcb\xd4\x34\xec\x07\x08\x8f\xe4\x4e\x55\x23\x10\x5c\x86\x16\x53\xd5\x08\x84\x89\x4d\xa6\xaa\x71\x7a\xf2\xd2\x65\x70\x2a\x1b\x81\xf0\x80\xc2\x54\x35\x4e\xee\xe6\x9a\x7e\xda\xd3\x50\x20\x60\xa9\x89\xa6\xaa\x11\x68\xca\xc1\xa9\x6a\x04\xc2\x24\x26\xd3\xe0\x20\x20\xd2\x81\xd2\x4b\x01\xc4\x0f\xf6\x34\x95\x96\xc0\xf7\x93\x54\x43\x6d\x09\x54\x7d\xc2\x53\x69\x09\x84\xbe\xf4\xa9\xb4\x04\x9a\xc7\x9f\xa6\x8e\x0b\x20\x95\x61\x53\xb1\x09\x7c\xff\x9f\x29\xa4\xda\x04\x8a\x31\xc6\x53\xb5\x09\x14\x03\x04\xa6\x62\x13\x68\x46\x6d\x4c\xc5\x26\xf0\xfd\x33\x1b\xe0\x44\xa8\xac\xc0\xf6\x8f\x6a\x73\x56\x27\x02\x8b\xc9\x54\x5a\x02\x61\xae\x96\xa9\xb4\x9c\xf8\x28\xa6\x2b\xc7\x54\x48\x02\x61\xc8\xe6\x54\x48\x02\xde\x12\x1e\x53\x1d\x09\x84\x47\xe8\xa6\x42\x71\x92\x63\x71\xfa\xfd\x4f\x55\x21\xd0\xb4\xa0\x4e\x55\xe1\x6c\x4e\x04\x3f\x45\x25\x20\xb0\xe6\xae\x9a\x0d\x6d\x4c\x78\xbf\x3b\x5d\x19\xc0\xf7\xa6\x65\x36\x94\x43\x0b\x3f\xf6\x8b\xa9\x2a\x04\xe2\x07\x7f\x9d\x8a\x42\x20\xb8\xd4\x21\xa6\xa2\x10\xf8\xfe\x19\x1d\xa9\x77\x03\x48\x35\xdb\x34\x15\x0c\x10\x64\x9c\x8a\x69\xd4\xd0\xec\xde\x3c\xe9\xb7\xa8\x76\x9c\x9f\x76\x5c\xf3\x0f\xd7\x60\xc7\x54\x59\x02\x65\xee\xef\x5e\x69\x09\xac\xb9\xab\xe9\xac\xe8\x2e\x79\x4e\x3b\xa5\x25\xa0\x2f\x68\xaa\x2c\x81\xf8\x0d\xdb\x62\xc7\x0c\x67\xb5\x1f\xb4\x92\x11\x08\x0f\x44\x4f\x25\x23\xf0\x3d\x66\x99\x8d\x19\xec\x30\xf0\xe2\xa9\x57\x06\x28\x73\xcf\x31\xdd\x32\xc0\x32\xd8\x6b\x2a\x36\xe7\xb0\xb6\x0e\xa4\x3a\x12\x88\xdf\xf4\x4d\xab\x3b\x1c\x48\x7b\x75\xec\xfa\x3a\x90\xb4\x4a\x87\x0b\x10\x61\x91\x0e\x97\x39\x1d\x35\xc7\x5b\xb9\x09\x24\xb7\x73\xc4\x54\x6e\x02\x7d\xb7\x5d\x1f\x0c\xb0\xe6\x2e\xb2\xed\x1f\xa4\x27\x1a\xa6\x02\x14\xf8\xfe\x3f\x3d\xa9\x02\x05\x96\x91\x80\xd3\xd8\x29\xe0\x7b\xcc\x57\x6d\xfb\x64\xf0\x6c\x93\x3a\x75\x6e\x9d\x6a\x87\x2b\x54\x81\xf8\x21\x1d\xa6\x42\x15\xc8\x19\xfe\x80\x3d\x34\x5d\xf2\x7c\xca\xde\x98\x4c\x6b\x3f\x42\x5d\x3c\x40\x7a\x32\x79\xea\xe2\x01\xd2\x48\xc6\xa9\xe6\x05\x96\xa1\x07\x53\xcd\x3b\xc3\xe1\x74\x50\x54\xa9\x40\xd1\x8c\x3a\x55\xa9\x33\xac\xff\xf4\x55\xeb\x6f\xca\x47\x67\x9f\xa1\x4d\x40\x68\x10\x99\x86\x36\x01\xd2\x96\xa9\xb7\x08\x90\x41\x4c\xc5\xed\x4c\xc7\x12\x2b\xd2\xd4\xf5\x03\xf4\x0e\x5d\x98\x8a\x5b\xa0\xcc\x5f\x58\xe6\x60\x9a\x76\xdf\x21\x31\xae\x09\xf8\x1e\xa3\x33\x14\xbc\x40\xd5\x1b\x34\x15\xbc\x40\xdd\x1b\xa4\x82\x17\x98\xcb\x21\xd7\x3f\x34\xd3\x86\xa3\x26\xa6\x1a\x18\x28\xfa\x2a\xa7\x1a\x78\xa6\xf3\x18\x2a\x33\x75\x06\x01\x53\xbd\x3b\x95\xc5\x73\x19\xd5\x81\x28\x98\x6a\x60\x40\x11\x3f\x95\xc0\xc0\xf7\x14\x6f\xaa\x81\x81\xa9\x04\x9e\x4a\xe0\xb9\x76\x3b\x2d\xb3\x9d\x0b\xb3\xbb\x73\x5b\xbd\x3b\x97\x33\x14\x8b\xce\x54\xdc\x02\x53\xa5\x3c\x15\xb7\x40\x84\x44\x40\x71\x3b\x0f\xfb\x1b\x0d\x39\x55\x95\xc0\x54\x29\x4f\x65\xe5\x3c\x6c\xbb\x5b\xb0\x4a\x10\x68\x9b\xdd\xa8\x04\x27\xa7\x86\xa7\x09\x92\xa6\xba\x0f\xf0\x02\xd1\x98\xea\x3e\x20\x0c\x29\x9c\xea\x3e\xe0\x7b\x93\x7a\x18\x88\x04\x84\x61\x6f\x53\x2d\x38\x11\x7e\xd3\xf3\x40\x53\xe1\x07\xac\xe9\x54\x56\xf8\x01\xdf\x63\xb4\x54\xe5\x07\x64\x3a\x54\x3a\xa0\x26\xd7\x66\x4d\xc3\x00\xe7\xb9\x9b\xc0\x99\x2c\x8b\x0c\x3e\x9a\xc8\xbc\xb9\xeb\xab\xcc\x03\xba\x11\x68\x53\x99\x37\x39\x24\x31\xf7\x9e\xae\xa8\x03\xba\xe1\xb0\x53\xd5\x06\x54\x32\x3a\xc6\x54\xb4\x01\xdf\x9b\x4c\x19\x55\xdb\x54\xb5\xb9\xde\xaa\xda\x80\xef\x31\x5a\xa5\x6c\x03\xba\x9e\xf1\xa9\x6c\x9b\xc8\xb6\x49\x96\xdd\x98\xca\x36\x60\x72\x75\x78\x4c\x65\x1b\xa0\x51\x60\xea\x2d\x03\x7a\x77\x85\xd4\x5b\x06\x74\x33\x86\x4d\x43\x94\x80\x5a\xa4\x59\xaa\x3d\xa0\x98\x00\x6f\xaa\xf6\x80\x32\xcd\xe6\x34\x55\x7b\x40\xf5\x80\xda\x54\xed\x4d\xef\x75\x2e\x92\x4e\xe5\x1e\x50\x42\x96\xa2\xdc\x9b\xa6\x9f\x94\x74\xaa\xf6\x80\xba\xbf\x63\xd5\xde\x44\xda\x4d\x0d\x29\x53\x69\x07\xb4\x96\xff\x7d\x0b\x76\x4c\x95\xdf\x44\xf9\x4d\x8f\xea\x4e\x95\x1f\x90\xe9\xc8\xaa\xfc\x80\xaa\xed\x68\xea\x83\x03\xbe\x37\xe9\x53\x9d\x70\x40\x16\xd9\xa6\xfa\x10\xf8\x1e\xa3\xea\x0a\x44\x20\x7f\xfb\xbf\xd9\x5b\x24\xac\xf4\x74\xf0\x54\x20\x02\x33\x5c\x56\xd5\x87\x73\x67\xdb\x91\xfa\x29\x10\x81\xac\xae\x23\x0a\xc4\xf9\xec\x46\x59\x66\xa3\x3e\xa8\x7a\x11\xa7\x7e\xb9\xf9\xec\x0c\x7f\x5f\x91\xca\x0f\x28\xd3\x90\x81\xa9\xf4\x03\xa6\xf1\x1e\x53\xe9\x07\xd4\xf0\xff\x1b\x80\x35\x55\x83\x66\x03\x99\xaa\x41\xc0\xab\xf4\x63\xaa\x06\xe7\xeb\xe4\x77\x5a\xe8\xab\x03\xda\x72\xa2\x2b\x10\x81\x19\xae\xa1\x0a\xc4\xa9\x40\x2c\x92\x2a\x05\x22\x50\xf7\x1a\xaa\x40\x9c\xe6\xd1\x31\xd3\xd5\x34\x10\x6c\xea\x0c\x74\x7b\x55\x33\x02\xdf\x63\x5f\x59\x28\x1a\x81\xaf\xac\x53\x56\x2c\xe3\x9a\xb2\xb4\xa8\x5a\x64\x4b\xd9\xa1\x42\x8d\x08\xcc\xd8\x45\xc3\x22\xc7\x8a\x36\x84\x91\x60\xf1\xc3\xe5\xc0\x06\x1b\x06\x82\x01\xd5\xad\x27\x54\x8d\xc0\xf7\xe6\xa2\xec\xb4\xec\xfc\xdf\xff\x5f\xc9\x3c\x1f\xa1\x6c\x04\xca\xf4\x64\x71\xa8\x1b\x81\xa9\x79\x3e\xd4\x8d\x81\xe3\x6f\x16\x98\x44\xa8\xe1\x80\x19\x50\x90\x50\xc3\x01\xd3\xc8\xde\x50\xc2\x45\x71\xc1\x9c\x3e\xf6\x5a\xc6\xaa\xc1\x12\x11\x8a\x33\xa0\x1a\x0e\x11\x8a\x33\xa0\x6c\x87\x4e\xa8\xce\x80\x29\xa1\x09\xd5\x59\x54\xd7\x83\xe9\x7f\x9b\x96\x4d\x1e\xa3\xc3\xd5\x5d\x40\xd9\x61\xb1\xa1\xf0\x02\x7a\xaf\x16\xd9\xa8\xca\xa1\x5e\x47\x4f\xdd\x15\x2a\x2a\xa3\x78\x43\x45\x05\xcc\xdd\xe1\x2a\x2a\xa0\xec\x48\xd2\xd0\x7f\x07\x54\x83\x62\x42\x91\x15\xcd\x25\x1f\x32\x17\x6a\x25\x60\x1a\x5e\x14\x6a\x25\xa0\x7a\x90\x38\xf4\xa9\x01\x95\x6b\xdb\x22\x54\x4f\xc0\x34\xba\x28\x54\x4f\x40\xd9\x91\xaa\xa1\x4f\x0d\x68\x5c\xdb\x16\xa1\xa0\x02\xca\x0e\xcd\x0c\x15\x15\xd0\x4d\x72\x18\x2a\xaa\x68\xce\x70\x0c\x75\xa1\x56\x02\xba\xc7\x7f\x42\xad\x04\xf4\xc1\x4e\x1c\x4a\x25\xa0\xec\x68\xcd\x50\x2b\x01\x93\x4c\xb6\x11\x6a\xa5\xe8\x4e\x70\x4c\x7c\xe1\x69\x71\x60\x1a\x0c\x15\x8a\xa1\xe8\x76\x6e\x5a\x66\xe7\x7e\xb0\xf4\xfe\x87\x6e\xb0\x18\xac\x32\xac\xf0\xe1\xd1\x89\x18\xf6\x07\x2b\x60\xe8\xdf\x02\x26\x77\x64\x45\xe8\xdf\x02\x6a\xdd\x45\x76\x87\x22\xc4\x80\xb4\x50\x84\x00\x4b\x07\x46\x28\x42\x82\xe3\xd7\x3b\x1a\x2a\x3c\x4e\x01\xb4\x0e\xf5\x09\x45\x08\x30\xb9\x49\x2b\x42\x11\x12\xe6\x12\x6a\x3e\x65\x77\xe0\x06\x23\x66\xea\xfb\xc3\xd9\x31\x99\x1d\x90\x95\x50\x85\x00\xd5\x30\x8d\x50\x84\x00\x65\x87\x05\x85\x2a\x04\x98\xe1\xa7\xa7\x08\x09\x15\x87\xb1\x48\xa1\xe2\x00\xaa\xa9\x4b\x42\xc5\x01\x94\xfd\xe9\xa9\x38\x02\xfa\x3f\xcd\x3c\x1b\xf2\xff\xf0\xb4\x03\xdb\x7f\xe8\xa5\x0a\x0e\x4c\x4f\x2e\x7d\x8c\x88\xfd\x2a\x5f\x8b\x5f\xa8\x6c\x1f\xf0\x8a\xc0\x08\xe9\x3e\x30\xb9\x44\x2c\x42\x5f\x16\x30\xdd\x31\xc3\x53\x0c\x21\xdb\xaf\x6c\x85\x21\xdb\x07\x6a\xac\x3f\xd8\xc1\x43\x31\x00\x94\xe6\x84\x55\x0b\x04\xf4\x7d\xea\xf1\x0d\xf9\x3b\x30\xc3\x05\xd3\xc3\xd1\xc0\x34\x90\x2e\x64\xf4\x40\xe3\x9e\xb7\x08\x19\x7d\xc8\xe8\x2b\x1b\x59\xc8\xe8\x81\xe9\x49\xb7\x90\xd2\x03\xd5\xf0\xd7\x90\xd1\xc7\x72\x1c\xed\x53\x1d\x51\xc0\xf2\x10\x78\x48\xd5\x63\x39\x39\xdd\x7a\x74\x27\x01\x69\x9c\x65\xe8\x4d\x8a\x43\x67\x37\x13\x45\xd7\x11\xf0\xbd\xc9\x63\xfa\x8e\x80\x9d\xff\x29\x74\x1d\xc5\xe1\x4c\x74\xff\x90\xd2\x03\x4d\x3b\x55\xe8\x29\x02\xca\x34\x09\x57\x18\x18\x06\xb4\xd2\x7c\xd3\x16\x1c\x4e\x1e\x37\x0b\x4f\x3d\x00\xdd\xb3\x3e\x61\xb0\x18\x50\xba\xfb\x87\x6e\x27\xe0\x7b\x93\x86\xea\x77\x02\x9a\x4e\x9a\xd0\xef\x04\x2c\x93\xb6\x84\x62\x23\xf6\xd9\x6b\xbb\x4d\x27\x13\x30\xf7\x82\xac\xd8\x08\xf2\x11\xcd\xea\x22\xaa\xb4\x00\x1a\x37\xdc\x46\xa8\x2c\x80\xef\x31\xba\x4d\x69\x01\xcc\x70\xc5\xd7\xcd\x14\xa7\xdf\x97\x8b\x97\x9a\x01\xe8\x7b\x2d\xd7\x7f\x04\xac\xbe\x7f\xd3\x16\x9c\x4c\x2c\xf7\x05\xfd\x47\xa1\xd8\x30\x0c\x25\x14\x1b\x40\x98\xa4\x37\x14\x1b\x71\x39\x06\x7e\x39\xea\x03\x60\xa5\x23\xaa\x3c\x08\x49\xbe\xb9\xba\x42\x92\x0f\x98\x47\x3c\x42\x92\x1f\xb7\xff\x8d\x00\x89\x90\x4c\x03\xc5\x94\x4d\x21\x99\x0e\xc2\xd8\x66\x75\xe1\xd6\x51\x02\xa4\x16\x82\x90\x4c\x03\x95\x5b\x1c\x23\x64\xcb\x40\xa8\x79\xc2\x28\xb6\x78\x9c\x93\x6e\xff\x72\x5e\xa0\x19\xb9\x14\x52\x5e\xa0\xef\xbd\x42\xca\x0b\x94\x59\x09\x05\x0a\x39\x2f\xd0\xcd\x57\x13\x72\xde\x90\xf3\x9a\xbd\x2b\xe4\xbc\xc0\xd4\x6d\x14\x72\x5e\xe0\x7b\x8c\xfe\xd0\x2b\x02\x54\xc3\x0b\x43\xa7\x08\xf0\x3d\x66\x45\x6c\xe8\x07\x75\x6f\x33\x7a\x45\x80\x69\xdc\x40\x3c\xbb\xa1\x26\xc4\xb0\x51\xf6\xf7\x07\xba\xe1\x43\x4a\x0d\xa4\x4a\x34\xa4\xd4\xf1\x3a\x49\x97\x65\xf6\xc6\x4b\x40\x0f\x0e\xd9\x90\x2b\x07\xa1\x6e\xb3\xb9\x85\x1b\xea\x06\x4c\x6e\x31\x8e\x30\xd4\x2d\xe4\xcf\x0d\x6f\x4a\xc8\x9f\x81\xc9\x95\xc5\x11\xf2\xe7\x20\xc3\xe4\xdc\xab\xa4\xcc\x18\x68\x46\x25\x86\xc4\x38\xf4\xa6\xb8\x2f\x48\x8c\x81\x6a\x02\x95\x94\x17\x03\xd3\x33\x13\x29\x2d\x06\xaa\x76\xb9\x94\x16\x03\x4d\x27\x6a\xea\x4c\x49\x0e\x3e\x4c\x23\x54\x53\xbe\x0b\x4c\x0f\x5b\xa4\x7c\x37\x89\xae\x9b\x86\xec\xa6\xe4\x16\x68\xbf\xfd\xd8\x6d\x11\x5e\x5a\x76\x94\x94\xdb\x26\x61\x73\xd3\x20\xcd\xd4\x01\x02\x4c\x8f\x69\xa4\x61\x73\x40\xe3\x9e\x82\x48\xa3\xe6\x80\xef\x4d\xfe\x9b\x61\x73\x40\xff\x41\x54\x52\xcf\x09\xf0\x3d\x66\xd9\xb4\x8c\xbc\x0d\x7c\x04\xa9\xe7\x24\x4d\x50\xb9\x2c\xb2\x9d\x1c\xc0\x98\x66\x37\x4b\x39\x36\xd0\x9d\x1d\x29\xc7\x06\xbe\xc7\xac\x9b\x6d\x37\x7f\xd2\xf2\x37\x77\x43\x1f\x1f\x63\x0c\xa4\xe2\xc0\xd4\x47\x94\x52\xf1\x24\xba\x6e\x9a\x2b\x2d\x25\xd9\xc0\x0c\xb6\x96\xd4\x03\x02\x7c\x8f\xd1\x47\xba\x40\x80\xb9\x47\x54\x2a\x9e\x52\x71\x1b\x2a\x15\x07\x7a\xcf\x3f\x24\x10\x4f\x89\x7a\xea\x21\x31\x2f\x5b\xca\xd4\x81\x19\xf0\x9d\x94\xa9\x67\xdd\xfd\x60\x35\xed\x07\x82\xef\xc2\xee\x92\xbc\x03\x93\xcb\xab\x23\x25\xef\xa9\x3b\xc4\x18\x85\x94\xa9\x03\x55\xe7\x73\xea\x0e\xc9\xe6\x80\x3b\xb1\xf5\x7d\x00\x4d\x1f\x55\xca\xe7\x93\x88\xb8\x69\x1c\x54\xca\xde\x81\xd6\xa6\x6f\xda\x2a\xee\xa9\x6d\x6c\x46\x29\x7b\xcf\x46\x98\x95\x93\x4c\x56\x0e\x4c\x4f\x24\xa6\xac\x3c\xf5\x73\x98\x32\x3b\xf5\x73\x00\x75\xec\x9a\x39\xb6\x6d\x37\x8a\x86\x4a\xde\x81\x62\xa4\x71\x4a\xde\x53\xa6\x6e\x0a\xaa\x94\xa9\x03\xcb\xc8\xc9\x94\xa9\x03\x65\x36\x1c\x0d\x69\x90\x1c\x50\x8c\x6f\x4a\x1d\x1d\x29\xa1\xf7\x04\x76\x4a\xe8\x53\x42\xbf\x7f\xd4\xb6\xeb\xb6\x30\x9b\x5c\xea\xb6\x00\xa6\xb6\xc6\xd4\x6f\x01\x7c\x8f\x59\x66\x4b\x8d\x88\x83\xc1\xa6\x52\x00\xf8\x1e\xa3\xa5\x6a\x01\x60\x9a\x45\x2b\x3d\x5a\x0d\x7c\x8f\xd1\x52\xf5\x01\xd0\xd2\x1f\xf0\x68\x75\x0e\x5b\xca\x9a\x9c\xba\x41\x80\xd6\xfd\x9c\xf4\x82\xe4\xb0\x55\x34\x54\x8f\x47\x0e\x57\xcc\x61\x99\x4d\xf8\xa0\xb9\xcd\xa4\x2a\x22\xa7\xd3\xc8\x7e\x93\xf9\x03\xcb\x0c\x45\x29\xf1\x4f\x29\xbd\xbe\xc2\x94\xd2\x03\x4b\xc3\x76\x4a\xe9\x81\xef\x31\xba\x57\xc7\x02\x30\x25\x96\x29\xcb\x07\xaa\x87\x5d\x53\x96\x0f\x74\xd3\xb1\xa6\x2c\x1f\x98\xc1\x6e\x97\x73\xd7\x96\x93\x2e\xfb\x7f\xd9\xdf\x5c\xb4\xbb\xbf\x20\x5d\x0d\x19\x8e\x3b\x24\x3f\x8d\x75\x03\xaa\xb9\xbb\x53\x27\x42\x86\xe3\x0e\x67\x4a\xdd\x03\x40\x35\x95\x59\xaa\x18\x32\xfd\x6f\x70\xea\xd4\x32\x0f\x4c\xcf\x68\xa5\x96\x79\xa0\xcc\x96\x3e\x66\x77\xa4\x57\xee\x59\x64\x6f\x48\xed\x9b\x8b\xb2\xd4\x1e\xa8\x3a\x50\x32\xf7\x8f\x7e\x1c\x72\x97\xd8\x74\x98\xbd\x64\x2b\x65\xf6\x29\xb3\x37\xe7\x49\xca\xec\x81\xa2\xcf\x38\x65\xf6\xa9\xb1\xbe\xd9\x28\xa9\x3d\x30\xd5\x3c\xa9\xb1\x3e\x97\xed\x74\xd1\xd7\x32\x0f\xb4\xe8\x3e\x66\x3b\x97\x77\x01\x33\xea\x0a\x00\xe0\x7b\xd3\x1f\xb5\x9d\x8b\x51\x77\x1b\xd0\x58\x0f\xcc\x70\xd4\x3d\x3f\x02\x4c\x0f\xb1\xa5\xb1\x69\xb9\xdc\x19\x1c\xd0\xb5\x1b\xea\x3d\x45\xbc\x69\x20\x1a\x50\xa6\xde\x97\x54\x4e\x00\xd3\xb3\x6e\xa9\x9a\x00\xbe\xc7\xa8\x87\x72\x02\x98\x9e\x75\x4b\x7d\x06\xa9\xc2\x30\x6b\x63\xaa\x30\x80\xe9\xf9\x80\x54\x61\xa4\x0a\xc3\xc8\xff\x54\x61\x00\xe5\x07\x45\x4d\x15\x46\xaa\x30\x8c\xfc\x4f\x15\x06\x90\x1e\xa3\x4c\x15\x46\x1e\x97\x8f\x59\x11\x5b\x8f\x76\xd0\x4b\x9f\x6a\x87\x54\x3b\x18\x10\x9f\x6a\x07\xa0\x2e\x3b\x44\xed\x00\x54\x8d\x78\xa9\xa3\x02\x98\xe1\xae\xa8\x9a\x00\xda\xd8\x2f\xda\x76\xd4\x84\x27\xe7\x52\x31\x91\xfa\x29\xba\xeb\x9a\x7e\x0a\x60\x75\x3f\x20\xfd\x14\xc0\xf4\x50\x5f\xea\xa6\x00\xb2\xbb\x7e\x2b\x39\x80\xef\x9f\xd1\x69\x6a\x0e\x20\xeb\xae\x86\x2d\x27\x2d\xea\x34\xf1\x5f\x2a\x3a\x80\x9a\xce\x48\x35\x47\x5e\x8e\x7b\xf9\x83\x49\x3c\x3d\x6a\x9d\x5e\xed\xeb\xc7\xa4\xff\x23\x75\x76\x74\xd7\x77\x9d\x1d\x40\x31\x36\x2c\x75\x76\xe4\xe5\x40\x3a\x6a\xba\x31\x80\xc9\xbd\xd7\x91\x7a\x31\x80\x6a\x92\xfe\xd4\x8b\x01\x94\x96\xfe\x7f\xdb\x7c\x39\x8e\x4e\x76\x1d\x14\x40\xd5\x01\x97\x3a\x28\x52\xd7\x43\xb7\x57\x75\x3d\x00\x53\xf3\x74\xea\x7a\x00\x6a\xc3\xa4\x95\x7a\x1e\xf2\xb6\xb6\x12\x07\x9d\x0a\xc0\x8c\x5d\x64\x6d\x55\x46\xe8\xf0\x54\x19\xa5\x36\x7d\x65\x61\x2a\x70\x80\x65\xb2\xb9\x54\xe0\xa4\xca\xc5\x14\x7a\xa9\x72\x01\x56\x1f\x16\x39\x53\x3e\xa8\x1e\x78\x4a\x85\x4b\x3e\xce\x01\xe7\xb5\x92\x04\x98\x9e\xf5\x4c\x25\x49\x92\xe3\x7e\x9a\x42\x2f\x55\x20\xc0\xea\x6e\xce\x2a\x90\xe4\x08\xf5\xdc\x1b\x94\x16\x7c\x60\x7a\x1c\x24\x15\x25\xa9\x05\x7f\xd7\x4d\x55\x02\x4c\x8f\x84\xa6\x16\xfc\x7c\x6d\x95\x2d\x55\x95\x00\xd5\x80\xb1\x54\x94\x24\x21\x5e\x53\xcb\x47\x6a\xc2\x07\xaa\x71\xb4\xf9\xda\x95\x0a\x15\xe5\x74\x2a\x54\x80\xa5\x29\x21\x15\x2a\xa9\xb9\xbe\x33\xf2\x4b\x59\xb2\x34\xd7\x77\xac\x88\x4b\x5d\x02\x54\x2d\x97\x4b\x5d\xb2\x0c\xdf\x32\x4d\xde\xd2\x36\x0f\x4c\x0f\xc4\x2e\xc3\xb7\xd6\xcf\xef\x69\x5a\xf6\x58\x46\x9a\x61\x16\x84\xe5\xd9\x9d\x55\x1c\x7a\x94\xf8\x52\x4b\x00\x33\x30\x18\x2d\xa5\xc4\xd2\xe8\x6e\x62\xbb\xa5\x22\x00\xc2\xf5\x7c\x29\x08\x96\x11\x51\x1d\x53\xee\x92\xea\x03\xd3\x6b\x05\x96\x4c\x7f\x19\xc5\x64\xd6\x81\x25\x87\x07\xa6\xea\x7c\x49\xe1\x97\xe6\x74\x13\xdc\x2c\x39\x3c\x90\x5a\x03\x97\x1c\x7e\x55\x47\x86\x6d\x70\x49\xbf\x81\xe5\x44\x5a\x06\x28\x01\xa9\xb5\x71\x49\xc8\x81\xf0\xa4\xc2\x92\x90\xaf\xe6\x20\xb0\xe6\x2c\xa9\x36\xb0\x0c\x23\x58\x1e\x6a\x59\xb2\x6f\x13\x9c\x2e\xd9\x37\x30\x83\xb5\x6f\xc9\xbe\x97\x16\x70\xf3\xc7\x2d\x2d\xe0\x40\x73\x39\x5c\x5a\xc0\x81\x39\xf7\x0f\x58\xb5\xc6\x2d\x22\xd5\x6a\xec\xaa\xdd\xfe\x33\x7a\x4d\xaa\x0d\xb4\xe6\x94\x91\x6a\x2f\xa9\xb6\xb9\xe2\x96\x54\x1b\x98\x06\xeb\x2c\xa9\x36\xd0\x0c\x59\x5c\xda\xc9\x97\xc1\x42\x26\x20\x5d\x72\x68\x60\x1a\xcf\xb6\xa4\xd0\x40\x99\xa6\x8f\x5b\x72\x68\xa0\xfd\x70\x2b\x2d\x03\x84\x80\x69\x9c\xd4\x32\x40\x68\x8d\xea\x9b\x4c\x36\x19\x2e\x30\x0d\x45\x59\x86\xfe\x2c\xe3\x7c\xb4\x9a\x2c\x19\x2e\xd0\x8d\x3b\x59\xc6\xf9\x00\x93\x7b\x56\x63\x49\x7a\x97\x16\xf6\xc1\x1a\xbb\xc6\xfe\x51\x92\xbb\x0f\xdf\xb4\xbf\x4d\xcd\x3f\xac\x86\x9d\xfb\x41\xf7\x22\x97\x25\x35\x5e\x66\xe6\xc7\x48\xba\x34\xb0\x03\xcd\x88\xdf\x65\x94\x0f\x30\x75\x68\x2c\x4d\xee\xcb\xc0\x9f\x51\x7d\xcc\xbe\xc5\xe6\x6e\x1a\x8c\xa5\xcd\x7d\x69\x60\x37\x4d\xdb\x92\x67\x03\x6d\xed\x22\x5b\x6e\x98\x8f\x5e\xc7\xa5\x85\x1d\x98\xd3\x61\x97\x8d\x03\xcd\xed\x6b\xc9\xc6\x17\x96\xf3\x69\x32\xb7\x25\xa9\x06\xea\x6f\x59\x64\x3b\xc9\x74\x34\x07\x6b\xe7\x92\x55\x03\x73\x62\x3a\x5c\xb2\xea\x25\xab\x36\x8b\xe7\x92\x55\x03\xc5\x74\xaf\x4b\x56\xbd\x3c\x40\xb2\xdf\xb4\x1e\xe1\xa8\xf4\x3f\xa4\x24\x5d\x9a\xee\x97\x19\xf9\x5d\xe3\x0c\xe6\x59\xe1\xbc\x46\xcd\x2d\x8d\xf2\x40\x4f\x67\x85\x46\x79\xa0\x6a\xdd\x5d\x06\xea\x2c\xed\xf4\x9a\xba\x96\x76\x7a\xa0\xee\x61\xd3\x10\x0f\xcc\x39\x7d\xd3\xbe\xcf\x5d\x73\x5a\x23\x83\x07\xa6\x99\x4a\x96\xe1\x36\x2b\xed\xe8\x61\x99\x1d\xfd\x41\x1a\x78\xb7\xa4\xf0\xc0\xda\xbd\x25\x85\x07\x8a\x86\x96\xe5\x29\x94\x25\x9b\xde\x93\x4c\x36\x0d\x4c\x83\x44\x96\x6c\x7a\x1d\x7e\x24\x58\x5a\x97\xfc\x14\x58\x9e\x6c\x5c\xd2\x53\x60\xce\xfd\x94\x23\x74\xf8\x03\xae\xe5\x72\x51\x60\x19\xdc\xb0\x8e\xfd\x03\x2e\x37\xe8\x9e\x25\x17\x05\x52\xff\xd2\x32\x68\x66\x49\x4f\x87\x4b\xbe\xf4\x14\x58\x26\x0b\x5e\xd2\xd3\xe5\x8d\xa7\xb6\x40\x7a\xba\xb4\x76\x0f\x1c\x7a\x4b\x7e\xba\xcc\xbe\xef\xf2\x2e\x3f\x5d\xa4\xd5\x9f\x83\x18\x9f\x25\xf3\x04\x7a\xb3\x1e\x32\x4f\xa0\x6b\x16\x5a\x32\x4f\xa0\x8e\x62\x91\xcb\xea\xe9\x48\xa5\x65\x8e\xd4\x07\x4d\xaf\xf0\x92\x78\x02\x65\xb9\x8c\x48\x3c\x81\xef\x4d\xa6\x82\xd6\x6e\xa0\x7b\xa6\x65\x49\x36\xd7\xbe\xb0\x89\x9a\x49\x36\x81\x32\xcd\xa4\xb1\x8c\xb6\x59\xde\xd8\xe4\x96\xe5\xa1\x8a\x75\x39\xa0\xbb\xcc\x01\xc5\x9c\xae\xfe\x5a\x5a\xd3\x97\x9c\xd4\x6b\x91\x96\x9c\x14\x28\x86\x69\x2c\x39\x29\xf0\x3d\x66\x99\xfd\xf1\x41\xd3\x1d\xbb\x24\xa5\x4b\x43\xbc\x9e\x8f\xa5\x21\x1e\xe8\x7b\x62\x69\x88\x5f\xe6\xfa\x31\xa5\xd9\x92\xa8\x02\x55\x8a\xbb\x8c\xa4\x01\xaa\x47\xff\x97\x91\x34\x8b\x1b\x5a\xe7\xdc\x65\x7e\x68\x1f\x4c\x8f\x9d\x2d\xb9\xeb\xc2\xaa\x3f\x4d\xee\xb4\x34\xeb\x03\xd5\x73\x7e\x4b\x3a\xbb\x48\xd5\xbf\x6f\x80\x5b\x86\xb2\x00\x7d\xc2\x67\x97\xa1\x2c\x4b\x3e\x6b\xa6\xaf\x25\x9f\x05\xe6\x82\x47\x2e\xf9\x2c\x50\x74\x42\x2c\xed\xf5\x40\xd9\x37\x3b\x2d\x0d\xf6\x40\x2b\xee\x33\xb2\x5e\xa0\x1b\xa3\xb4\x64\xbd\x4b\x7b\xbd\x66\xd4\x25\xed\x05\xba\x39\x18\x97\xf6\xfa\xa5\xbd\xde\x7c\x60\x4b\x7b\x3d\x30\x57\xf7\x4d\xc7\x85\x64\x42\xfb\x0e\xa2\x25\x3b\x06\xa6\x67\xee\x96\x06\xfb\x25\x61\x36\xed\xce\x92\x30\x03\xf5\xe7\x27\x24\x61\x06\x8a\x8e\xa0\x65\x10\xcc\xd2\xee\x6e\x6a\xde\x25\xc5\x05\xaa\x01\xd0\x4b\xbb\xfb\x7a\xad\xae\x53\x4b\x8a\x0b\x74\x73\x41\x2d\xe3\x56\x96\xac\xd7\x54\xae\x4b\xd6\x0b\x54\x63\x96\x97\xac\x77\xc9\x7a\x4d\x38\x76\xc8\x7a\x81\x66\xea\x8f\x43\xd2\x0b\x94\x7d\xb9\xc6\x21\xeb\x05\xa6\x81\xc4\x87\xd6\x78\x60\x1a\x97\x78\x18\xb6\x72\xfc\x1c\x3e\xd4\xd9\x21\x11\x06\xa6\x89\xf4\x0f\xc3\x56\x0e\x03\x52\x4c\x69\x7a\x18\x90\x02\x14\x1d\x57\x87\x36\xfb\xc3\x80\x14\x93\x90\x1d\x1a\xed\x81\xa6\xe5\xf1\x90\x55\x03\xad\x2f\xff\x19\x63\x70\x68\x8d\x37\xc1\xd0\x21\x85\x06\xa6\xde\x95\x43\x6b\xfc\xe1\xa1\x05\x03\x7d\x0f\x4d\xef\x40\xd1\xb6\x7f\x78\x68\xe1\xd0\xf4\x6e\x54\xef\x21\xd3\x06\xfa\x60\x9b\x3b\x34\xbd\x1f\x92\x6f\x53\x8a\x1d\x92\x6f\x60\x7a\xfb\xda\x51\x76\xdd\x1c\x04\x2b\xa2\x9d\x1d\x28\x66\x73\x39\x0c\x79\x39\x34\xbd\x7f\xfc\xed\x3f\x37\xed\x43\xcb\x3c\x10\x03\xb3\xdb\x21\xab\x3f\xaa\x75\x62\x67\x3c\x34\x70\x03\x99\xbb\xc8\x3a\xc9\xba\xdd\x54\x0f\x59\x37\x10\x86\x32\x1e\xb2\xee\xc3\x23\x00\xee\x66\x87\x47\x00\x80\x16\x10\x9a\x43\x22\x7e\x68\xf3\x76\x17\x39\xb4\x79\x03\x53\x8b\xda\xa1\xcd\x1b\xf8\x1e\xf3\xd5\x65\x19\x61\xa7\x7c\xb1\x87\x7c\xfd\xf0\x0c\x80\x37\x99\x1d\x12\x76\xa0\x68\xe6\x38\x24\xec\x40\x75\x0d\x3e\x24\xec\x40\xfd\xed\xda\xda\xf6\xe6\x07\x1b\xfe\xc0\x6e\xfc\xcb\x39\x4e\xfe\xbf\x7c\x1d\x58\x5a\x82\x0f\xf9\xfa\x21\x39\x37\x59\xd9\x21\x39\x07\xea\xee\x49\xc9\xf9\xa1\x31\xdb\xf4\x62\x87\xc6\x6c\x60\x19\xb5\x71\x68\xcc\x06\xd2\x48\xfd\x43\x5b\x36\x90\xb1\x7f\xd3\x9a\x0d\x87\x85\x1d\xfa\xd0\x70\x0d\x4c\xaf\x97\x38\xb4\x5b\x1f\xc3\xfe\x86\xfd\x1f\x92\x73\xa0\xed\xf9\x29\x39\x3f\xe6\xfe\x6f\xf4\x9a\x54\x19\x58\xda\xa3\x0e\x99\x32\x90\x1e\x1a\x39\x64\xca\x87\x21\xec\x1a\x79\x0f\xc9\x2d\x90\x26\x9a\x3c\xb4\x34\x1f\x06\x94\xe8\x41\x3a\x34\x35\x03\x6b\x77\x91\xa6\xe6\x83\x04\x44\xdb\x8d\x71\x48\x6e\x81\xc9\xfd\xf5\x71\x18\x9d\x7e\x70\xd6\x7a\x7b\x75\x0e\xcf\x5a\x03\xdd\x03\x08\x87\x67\xad\x81\xb2\x6d\xef\x87\x67\xad\x81\xaa\x3f\xfa\x90\x29\x03\xcd\x0c\x7d\x87\x4c\xf9\x08\x0e\x1e\x39\x4b\xa5\xbd\x40\xd5\x0c\x79\x48\x7b\x0f\x8e\x5a\x4f\x2f\xc9\x38\x0c\x4f\x01\x4a\x83\xeb\x1f\x32\x61\x20\x0c\xc1\x3c\x64\xc2\x40\xd3\xcd\x79\xc8\x84\x81\xb2\xfd\x1a\x87\x31\xeb\x40\xf3\x06\xc8\x43\x72\x0c\x74\x0d\x49\x87\xe4\xf8\xc8\xdd\x4c\x7f\xc0\x66\xa6\x67\x2f\x68\x93\x86\x71\xa0\x6c\x23\xef\xa1\x65\x1c\x08\x63\xe2\x0f\x0d\xe3\x87\x84\x59\xfb\xf3\x21\x61\x06\x5a\x71\x85\x97\x30\x1f\x1a\xb8\xb5\xe8\x1e\x1a\xb8\x0f\x0f\x64\xfb\xe9\x69\xe0\x06\xfa\x80\xcb\x1f\xda\xb7\x8f\xd5\x7d\x93\x86\x7a\xfa\x1a\x08\x83\xee\x0f\x83\xd1\x0f\x33\x71\xc2\x13\x0e\x4d\xde\x40\x31\xb4\xed\xd0\xe4\x0d\xd4\xea\xf4\xd6\xe4\x7d\x90\x0c\x69\x9b\xe4\x0e\x8d\xd9\x40\x69\x88\x91\x43\x63\x36\xd0\xf6\x1a\xb6\x76\x9b\x1c\x4f\xec\x5e\x87\xf6\x6d\xa0\x7a\x17\xcb\xa1\x7d\xfb\xf0\xa0\x35\x9b\xec\xa1\x79\xfb\xd0\x48\xad\x8d\xeb\xd0\x48\x0d\xd4\xbd\x10\x29\x02\x80\xf0\x38\xc0\xa1\x08\x00\xca\x36\xae\x1c\xaa\x00\x20\x7e\xd6\x56\x1b\x35\x90\x6a\xe0\x43\x5d\x00\xa4\x14\xfd\x50\x17\x1c\x46\xc1\x68\xd0\x39\x8c\x82\x39\x3c\x7d\x8d\x27\xe5\xd0\x92\x0d\x84\xe7\x08\x0e\xd5\x03\x90\x5e\x79\x72\xa8\x1e\x0e\x35\x80\x46\x93\x43\x0d\x00\x84\x16\xf5\x43\x0d\x70\x9c\xce\x3e\x37\x4a\xc3\x5b\x80\xa5\xfc\x3f\xcc\xf3\x79\x18\x38\x6f\xd8\xea\xa1\x2e\x00\xd2\x58\xcb\x43\x5d\x70\x18\xcb\x62\xd8\xea\x71\xee\x8a\x7c\x43\xb0\x89\x83\xec\xfe\xb8\x5c\x00\x5c\xc3\x24\xe9\x40\x78\xe5\xd9\xa1\xdd\x18\x48\x4d\xc9\x87\xb4\xfd\x30\x0a\xc6\x60\xc8\x43\xde\x0e\xac\xb9\x8b\x1c\x82\x0f\x52\xba\x7c\xc8\xe4\x0f\x83\xe4\x0d\x1b\x3c\xa4\xf2\x87\xd9\xa2\xfc\xf2\x64\xf2\x40\x35\x61\xfa\x21\x93\x3f\x8c\x45\x8f\xf1\x87\xc8\xb3\x43\xd2\x0d\x34\x6f\xef\x38\x8c\xae\x39\xb4\x21\x1b\xe6\x76\x48\xba\x81\xae\x2d\xed\xd0\x86\x7c\x18\x65\x6e\x00\xd9\x61\x94\x39\x50\x2b\x74\xfd\x90\x9a\x03\xd5\x2b\xb3\x0f\xa9\x39\xd0\xb5\xc9\x1e\x06\x99\x1f\xb2\x75\x63\x97\x0e\xd9\x3a\x50\xdb\x7e\xcc\xae\x37\xbc\xc6\x74\x2c\x87\x74\x1d\x68\x73\xff\x80\x8d\xf2\xc8\xb1\x9b\xae\x6c\xfd\x78\xec\x54\x67\x94\x3c\x1c\x48\x4f\x9a\x1f\xd2\xf0\x43\xce\x1d\xfb\xbf\x39\x8b\x3f\xa8\x46\x10\x1e\x72\xee\x43\xce\x6d\x5e\x8e\x43\xce\x7d\x18\x79\x8e\x73\xe4\x90\x73\x1f\xc6\xbf\x98\x36\xe3\x30\xfe\x05\x48\x83\xd1\x0f\x2d\xcd\x87\xa7\x89\xcd\xaa\x76\x48\xba\x81\xae\xf5\xf9\xd0\xd2\x0c\x44\x95\x5a\x49\xc3\x0f\x39\x77\xa0\x17\x0f\x39\x37\x10\xde\xb1\x78\xc8\xb9\x0f\x43\x62\x42\x7a\x6a\x4c\x0c\x50\x34\xf0\x9e\xd2\xf0\xf3\xe7\x20\x60\x89\x38\x25\xd8\xe7\x47\xaa\xc3\x64\x3e\xa7\x86\xe6\x53\x82\x1d\x08\xc1\x53\x82\x0d\x2c\xc6\xfd\x94\x5f\x03\xdf\x53\x49\x59\x5a\x96\x54\x6d\x51\xb4\x2c\x72\x5c\x96\x65\x87\x65\x34\x94\x39\x79\xca\xcc\x81\xe6\xf2\x7e\xca\xcc\x4f\xb2\x50\x4d\x3f\x9d\x53\xce\x0d\x84\x59\x10\x4f\x8f\x13\x9f\x86\xd3\x24\x24\xe1\x34\x9c\x06\x68\xf2\x97\xd3\x70\x9a\x53\xb6\x6e\x8e\xaf\x53\xb6\x0e\x94\xdf\xfe\x6f\xb6\x9d\x53\xc7\xca\xc5\xd3\xd0\x99\x53\xb3\x78\x22\xf7\x4f\xcd\xe2\x40\x78\x23\xe4\x29\x59\x3f\x3d\x4f\x9c\x3f\xcb\x6c\x15\x81\x32\x3a\x00\x4e\xe3\x64\x4e\x09\x7c\xb2\x1d\x9d\x12\x78\x20\x2a\x2a\xfb\x94\xc0\x9f\x12\xf8\x64\xbb\x38\x25\xf0\x40\xd4\xb4\xc8\x86\x6a\x64\x37\x8d\xdd\x29\x1d\x07\xc2\x9d\xec\xd4\xc8\x0e\x84\x77\x70\x9f\xda\xd8\x81\x32\xb1\x91\x9c\xda\xd8\x4f\x43\xd6\x13\x3d\x7a\x1a\x09\x03\x14\x53\xc5\x9c\x06\xc2\x9c\x9a\xe2\x93\xc5\xf0\xd4\x14\x0f\x84\xd9\x1a\x4e\x4d\xf1\x40\x78\xaa\xfe\xd4\x14\x0f\x14\x2f\xd3\x39\x35\xc5\x9f\x75\x77\x87\x6f\xda\x1d\xd5\xee\xa0\x87\xd4\x0e\xa7\xda\xc1\xbc\x30\xa7\xda\x01\x08\xd7\xa2\x53\xed\x70\xaa\x1d\xb2\x5a\xe6\x04\xe7\xf8\xb0\xb7\x72\x9e\x6a\x87\xd3\x83\xc1\x66\xf5\x3b\x15\x0a\x40\x18\x85\x78\xaa\x13\x4e\x0d\xfb\xba\x52\x4e\x85\x02\x50\x4d\xd7\x70\xaa\x13\x4e\x43\xdb\xb3\xfa\xaa\x2d\x45\x28\x28\x6e\x4f\x85\xc2\xa9\x65\x3f\xd1\xc5\xa7\x4a\x01\x08\x39\xe4\xa9\x50\x38\x0d\x7b\x49\x36\xd0\xd3\xb0\x17\x20\xbc\x31\xf4\x54\x15\x00\xe1\x26\x78\xaa\x0a\x80\xf0\xce\xd3\x53\x8b\xfd\xe9\x99\xde\x6c\x3e\x66\xab\x3a\xf1\x0a\xdd\xff\x6f\xa3\xba\x53\xd7\xb5\xc2\x0c\x52\x40\xad\xcd\xc7\x6c\xd4\x07\x51\x59\xb2\x4e\x25\xc6\x69\x9c\xbc\xf7\x83\x9d\x7d\xb7\x60\x9f\xf9\xff\x8a\x8c\x8d\x01\xaa\xa4\xe0\x54\x62\x00\xdd\xcb\xe9\x4f\x25\x06\xd0\xcc\xbf\x74\xea\x38\x38\x3d\x34\x9c\x56\x43\xcf\x01\x50\xda\xf2\x4d\x3b\x48\x67\x82\x19\x13\x4f\x9d\x09\x40\x31\xe5\xf0\xa9\x5e\x39\x3d\x34\x9c\xdd\xaa\xd9\x45\x83\x71\xf7\x3b\xf0\xd0\xf0\xa9\x83\xc1\xc4\x8a\xa7\x0e\x06\x20\x6a\x5a\x0f\x7b\x68\x70\x6e\xcb\x4f\xcf\x10\xfe\xd3\x78\x1c\x73\x2d\x9e\x3a\x1d\x80\xa8\xeb\x0f\x99\xc4\x4f\x7d\x12\xe7\xf0\xdb\x87\x80\x9c\x7a\x20\x80\x30\x9e\xf4\x54\x56\x9d\x7a\x20\x92\x0d\xe9\x54\x57\x01\x61\xd8\xe6\xa9\xae\x3a\x75\x2d\xa8\x33\x4f\x5d\x0b\xc0\x0a\x57\x56\x5d\x0b\xe7\x74\x7a\xb2\x1b\x9f\x3a\x0d\x80\x30\x3a\xf5\xd4\x67\x70\x86\x1f\x22\xdc\xe5\x54\x44\x01\xa1\xa3\xff\xf4\x88\x2f\x10\xda\x1a\x4e\x8f\xf8\x9e\xe1\xc4\x1e\x3e\xe6\xb8\x85\x13\x9b\xdf\x54\x56\x9d\x7a\x20\xbc\x59\xf7\x54\x57\x01\x55\xa7\xfa\xa9\xae\x3a\x3d\x1d\xe0\xb5\xe8\xa7\x2e\x08\xa0\x18\x8c\x7a\xaa\xb5\x4e\x0f\x0c\x1b\xa7\x7d\x2a\xb6\x80\x30\x98\xf6\x34\x22\xe8\x0c\x1b\xef\x32\xe7\x89\x01\xa0\x99\x62\xea\x8c\xdd\x78\x07\x06\x35\x77\xaa\xc9\x80\xea\xb1\xa7\x53\x4d\x76\xa6\x2d\x75\x9d\x53\x5a\x01\x61\x50\xe9\xa9\xb2\x3a\x3d\xd3\xab\x93\xfe\xd4\xc9\x00\xa4\x32\xea\x34\x70\xe8\x54\x46\x99\xc6\xf1\x54\x46\x01\x65\x2f\xd4\xca\xa8\x53\x27\x43\xba\x80\xe9\x65\x00\x62\x77\x88\xca\xea\x5c\x7e\x50\xee\x5c\x06\x05\x01\xc5\x33\x6a\xa7\x32\x0a\xa8\x9e\x84\x3e\x95\x51\xe7\xda\x1b\x06\x3d\xae\x8e\x02\x9a\x49\x70\x4f\x75\xd4\xa9\x68\x32\x77\xe4\xa9\x68\x02\xc2\x1c\xa7\xa7\xa2\x09\x08\x03\x6f\x4f\x45\xd3\x69\xb4\x4f\xba\x0d\x2a\x87\x80\x92\x2e\x73\x46\xfb\x00\xe1\xa5\x0f\xa7\xc1\x3e\xa7\x6e\x12\x7d\x22\xa7\x0a\xe9\xfc\xe4\x50\x98\x25\xeb\x54\x0d\x01\xa1\x43\xe1\x54\x0d\x01\xd5\xb8\xdb\x53\x35\x04\x84\xa7\x1a\x4e\xd5\x10\x10\x86\x64\x9f\x8a\x21\x20\xbc\x71\xeb\x54\x0c\x01\xb5\x4c\x2b\x61\x93\x3c\x6c\x6c\xe2\xc8\x53\x27\x09\xd0\x96\x5b\x94\x4e\x92\xd3\x93\xc5\x86\x3f\x9e\xaa\x21\x20\x4c\x89\x7d\x1a\xb1\x73\x1a\xb1\x93\x7e\x55\x46\xec\x00\x61\xc8\xf4\xa9\xdf\xe4\xd4\x89\x61\x96\xc5\x53\x99\x03\x64\xc1\x20\x7d\xea\xc4\x00\xc2\x0c\xbb\xa7\x4e\x8c\x53\x31\xe4\xe5\x3e\xa7\x62\x08\x88\xe5\xc6\xab\x18\x3a\x75\x62\x78\x31\xe7\xa9\x1a\x02\xba\x96\xe6\x53\x31\x04\x34\x73\xba\x9c\x8a\xa1\x53\xbf\x86\x19\x0d\x4f\xd5\x10\x90\x39\x7d\xd3\x21\xd0\xaf\xb1\x6c\xbc\x6a\x08\x58\x9a\x7d\x4e\xd5\x10\x10\x6d\x37\xca\x31\xd0\x87\xe1\xd1\xff\x53\x1f\x06\x10\x7b\x9d\xd6\x87\x01\x7c\x8f\x51\x37\x9d\x18\x40\xf5\x6a\xab\xd3\x90\x9c\xf3\xde\xd5\xa5\x6e\x0a\x25\xa0\xa8\x17\x4f\x85\x12\x10\x6d\xff\x33\x6b\x4b\xe6\xdc\xa9\x73\xe9\xbc\x77\xdd\x98\xf2\x7e\xb4\xca\xa9\xd3\xe3\xb8\x0b\x83\xe2\xa9\x52\x02\x8a\x01\x8b\xa7\x47\x13\xce\xc7\x71\x91\x3a\xa8\x94\x80\x65\xbc\xf5\xa9\x50\x3a\x51\x45\x46\x87\x9f\xaa\xa2\x53\x87\x85\xe9\xdd\x4e\x1d\x16\x40\x7a\x19\xe2\xa9\x50\x02\xc2\xb0\xef\x53\xa1\x74\x7a\x1c\x77\x61\xc2\x38\x9f\x5d\xdd\x4f\xfd\x79\x57\xe7\xa9\x28\x3a\x3d\x7b\xbb\x64\x18\xba\x1d\x80\xea\xc5\x70\xa7\x91\x3b\xa7\xe7\x09\xcc\x20\x74\x1a\xba\x03\xac\xc0\x0e\x76\x1a\xb9\x73\x1a\xa6\x63\xf0\xea\xa9\x78\x02\xaa\xa9\x1b\x4e\x7d\x18\xa7\xa7\x6a\x75\x2e\x9d\x7a\x27\x80\x30\x88\xfc\x54\x28\x9d\x9e\xaa\xd5\x2b\x70\xaa\x94\x80\x30\x24\xfd\x7c\x77\x13\xb6\x7b\xf6\xab\xef\xa5\x52\x02\x56\xfc\xfe\xb0\x69\x5f\xfa\x33\x2e\x4f\xce\xea\xa9\xb8\x94\x48\x40\xf1\x5a\xe4\x4b\x85\x74\xe9\x95\x50\x9a\x5c\x6a\x1f\x20\x0c\x6c\xbf\xd4\x3e\x40\x18\x60\x7f\xe9\x94\x00\xb2\x0e\xff\xff\x63\xd1\xe3\x3f\xf3\xcd\xd7\xb2\x97\x37\xbf\xee\xba\x54\x48\x97\xe7\x01\x3c\x88\x7e\x29\x6a\x80\x68\x4c\xbc\x4b\xa7\xc4\xa5\x32\x31\x41\xf3\xa5\x32\x01\x96\x01\xf6\x97\xca\x04\x08\x43\xe3\x2f\x85\x09\x50\xe6\x62\xdb\xba\x54\x26\x40\x9a\x15\xe2\xf2\x30\xed\xa5\xb7\xc1\x5c\x7d\x97\xee\x04\x60\xe9\xd1\xbd\xd4\x2f\x97\x11\x41\x66\xce\xbb\x54\x2b\x40\x78\x01\xfa\xa5\x5a\x01\xaa\x7e\xd9\x4b\xb1\x72\xa9\x4c\xcc\x9c\x77\xa9\x4c\x80\x30\x44\xff\x52\x99\x00\xcb\x10\xfd\x4b\x65\x72\xa9\x08\x4c\x93\x77\xa9\x08\x80\x30\x44\xff\x52\x11\x5c\xcd\xcf\x1a\xb6\x78\xc9\xeb\x81\x34\x46\xf5\x92\xd6\x03\x69\x22\xf1\x4b\x5a\x0f\x14\xfd\x8b\x97\xf6\x7f\x20\x8c\xed\xbf\xb4\xff\x03\xa1\x5d\xf2\x32\x5e\xe7\x32\x5a\x7e\x2d\x1f\xb3\xd3\x3e\x48\x2f\xfa\xb8\x8c\x96\xbf\x74\x09\x18\xd4\x7c\xc9\xd7\x81\x50\x0c\x5d\xf2\x75\xa0\x9a\x84\xe3\xd2\x25\x70\x91\x22\x27\x74\x46\x5d\xf2\x58\x60\x69\x3c\xbf\xa4\xb1\x17\x97\x03\xef\xb4\x87\x97\x91\x32\xc0\x32\x32\xfe\x92\xa7\x02\x59\x87\x45\x36\x8a\xe8\xf3\x9d\xf6\xf0\x32\xfa\x1c\x58\xc6\x74\x5c\x46\xc5\x5c\xd8\xff\x77\x42\xc6\x4b\xfb\x3f\xb0\x3c\x9e\x70\x69\xff\x07\x96\x06\xfb\x4b\xf3\x3f\x50\x76\xc6\xbf\x4b\xfb\x3f\x90\x75\xbf\x69\x0b\x60\xb8\x3b\xc5\xdd\x25\xc3\x05\xd2\xd3\x5c\x97\x0c\xf7\x22\x4b\xeb\xce\x54\x77\x49\x67\x81\x65\x9a\xe8\x4b\x3a\x0b\x54\xed\x48\x97\x8e\x03\xa0\xeb\x86\xb8\x24\xb8\x17\xfc\x73\x27\xaf\xbb\xe4\x9f\x40\x35\x00\xeb\x92\x7f\x02\x61\x14\xd2\x65\x44\x3a\xd0\x0d\x99\xba\x64\xa4\x57\xda\x43\xac\xb5\x97\x46\xf6\x6b\x07\xaf\x50\x59\x63\x57\x2e\x0c\xea\x3b\x53\xd5\x25\xed\x03\xc2\xcb\xd8\x2f\x0d\xea\x40\x1d\xb0\xbe\x4b\x83\xfa\x05\x11\xdc\x49\xb4\x2e\x99\x20\xd0\xcc\x62\x76\xc9\x04\x81\xb2\x73\x5c\x5d\x32\xc1\x4b\x8b\x3a\x5b\xc3\x25\x13\x04\xba\x91\x30\x97\x16\xf5\x6b\x39\x52\x56\x57\x72\x78\x49\x0e\xfd\x66\x25\x87\x97\xe4\x30\xac\x86\x6d\x5f\xac\xdb\x4e\x18\x0d\xea\x40\xf3\xca\xd0\x4b\x83\xfa\x75\x38\x76\x68\x8c\x4b\xbe\x78\xc9\x17\xfd\xb2\xe5\x8b\x40\xd9\x09\xa5\x2e\xa3\xc3\x81\x6e\x3a\xf6\x4b\xbb\x3b\xd0\x4d\xd1\x7a\xc9\x2a\x2f\xc2\x6a\x76\xb6\xa4\x4b\xc2\x08\x94\xb9\xff\x99\x43\x7c\x38\xd5\xa6\xff\xcd\x16\x1c\x1c\x98\xd9\x8f\xd9\x82\xd3\x91\xb2\xd7\xa4\x87\x40\xf5\x56\xc0\x4b\x7a\x08\x44\x83\xd9\x5f\x9a\xcf\x81\xaa\xa9\xf0\x92\x30\x5e\xa7\xb3\xc3\xd5\x55\x2a\x08\x14\xd3\xbd\x5f\x9a\xca\xaf\xd3\x21\xb0\x3f\x0c\x98\xb9\x4e\xfb\x9b\x31\x36\x38\x06\xa8\xd5\x06\x68\x3d\xbf\x2e\x6b\xeb\x63\x92\xc8\x4b\x12\xe9\x57\x20\x89\xbc\x2e\x27\xd1\x2e\xb3\x27\x2f\xd4\x0f\x36\x98\x4b\xc2\x78\x19\xf5\x62\x56\x9f\x4b\xc6\x08\xc4\xae\xae\x8c\x11\x08\x53\x59\x5c\x12\x46\xe0\x7b\xd3\x32\x5b\x05\x63\xfc\xb6\x8c\xff\xde\xaf\xe5\x93\xc0\xf7\x5f\xac\x93\xfd\x40\xe6\xd0\x86\xc2\xb9\x0c\x8a\xb9\xee\xdd\x1a\x3a\xc2\xd0\x16\xa0\x68\xbe\xbf\xb4\xb2\x03\xcd\x58\x94\x4b\x2b\x3b\x10\x6d\xbf\x68\x63\x6e\x87\xc8\xe5\x46\x3e\x09\x14\x83\x7f\x2f\xf9\xe4\x75\x5b\x35\x28\xcf\xe5\x21\x56\xa0\x6a\x17\xbf\xe4\x93\xc0\xd2\xcd\x77\xdd\xbb\xb6\xdc\x98\xef\x96\xa2\x79\x1e\xe8\x0d\x69\x74\x69\x9e\x07\xea\x5e\x0c\x24\x9d\xd7\xe3\x68\xa0\x40\x2e\xb9\xe3\x65\x8e\x16\x77\x4e\xe3\x5f\x80\x30\x1c\xe8\x92\x4d\x5e\x58\xca\xa3\xfc\xfc\x6f\xfe\xe6\x63\x4e\x61\x9a\xa9\xa5\x1c\x58\xaa\xc2\x4b\x9a\x08\x7c\x6f\xf2\x03\xf2\x44\x60\x79\x88\xea\x92\x26\x02\xdf\x63\x7c\x24\xf2\x44\x20\xd5\x50\x97\x11\xde\x40\xd9\x29\xa1\x2f\x4d\xf1\xc0\xf2\x1c\xd8\x25\x9b\x04\xbe\xc7\x7c\xd5\x56\xbd\xb4\x6a\xf9\x03\xb6\xea\x83\xe5\x69\xf7\x4b\xeb\x3c\x50\x76\x4a\xa8\x4b\xf3\x3c\xd0\xd2\xb5\x4b\x1e\x7a\x41\x3a\x77\x4a\xa8\x4b\xd2\x09\xa4\x59\x66\x2e\x49\xe7\xa5\x75\x5e\x45\x76\x4b\x3a\x81\x74\xf1\xba\x65\x95\xc0\xf7\xd8\xa4\xac\x5a\x56\xa9\x9b\x6f\x36\x8b\xec\x23\xe6\xc2\x6d\x98\x0c\x90\x6e\x50\xb7\x86\x7d\x20\x4d\x43\x7a\x6b\xd7\x07\x96\x39\x9c\x6e\x59\xeb\xfd\x31\xd5\x55\xbb\x3f\xb9\x2c\x42\x32\x74\xff\xfd\x61\x11\x77\xd7\xff\xfc\xf7\xa7\x45\x5c\x32\xc9\x4c\xb8\xe5\xb1\xc0\x57\x31\x7f\xf2\xb6\xcc\xa4\xed\xfe\xb3\xc7\xa2\xdd\x1b\x34\x5d\xd6\x0a\x64\xb3\x37\x34\xeb\xdf\xc4\xb1\x87\xa9\x98\x6e\xe3\xd8\x81\x65\x3e\x80\x5b\xb3\x3e\x10\x1a\x3d\x6f\xcd\xfa\xc0\x92\x96\xdc\x32\x60\xe0\xfb\x67\x8d\x32\x9b\xfe\x41\x1a\x4e\x7f\x1b\x97\x73\x7b\x05\x85\xb9\x96\x6e\xad\xff\x40\x6a\x95\xb8\xb5\xfe\x03\x69\xd0\xc0\xad\xf1\x1f\x08\x45\xdb\xad\xf1\x1f\x58\x75\x3f\x65\x6f\x14\x9b\x0e\x2b\xb9\xe5\xd3\x40\x33\x56\xf7\x96\x4e\x03\xa1\x9e\xbc\xa5\xd3\x40\x73\xa7\xb8\x65\xd3\x77\xdd\x6d\xe2\x37\xe5\xc9\x40\xdd\xd3\x45\x9e\x7c\x57\xa7\x32\xeb\xc4\x2d\x29\x06\xba\xe1\xd2\xb7\xa4\xf8\xae\x7e\xda\x76\xa4\x86\x78\xa0\x0e\xc7\xd8\x73\xab\x40\x1a\x3d\x76\x6b\x9a\x07\x96\x99\x10\x6e\x4d\xf3\xc0\x32\xad\xc2\xad\x65\x1e\x48\x2f\xa2\xbb\xb5\xcc\xdf\xcd\xde\x46\x00\xde\x92\x6e\x20\x7b\xf8\xcf\xec\xed\x0f\x96\xf1\xbf\xb7\x56\x78\xa0\x84\xb9\x91\x6e\xad\xf0\xc0\x32\xd3\xc2\x2d\x5b\xbf\x9b\x6d\x72\xc2\xcb\xcd\x81\x65\xa6\x85\x5b\x6e\x0e\x2c\xc5\xd6\x2d\x37\x07\xbe\x37\xf9\x6f\x92\x73\x20\xbd\x71\xe6\x96\x9b\x03\xdf\x63\xbe\x6a\xab\xb8\xd6\xd7\x23\x4e\xb7\x26\x7d\xe0\x7b\xcc\x1f\x75\x46\x6a\xd3\x87\x2b\xde\xda\xf4\xef\xee\x6a\xe2\x8c\x91\xb0\x03\xab\x62\x67\xba\x35\xb9\x03\x25\x8a\x2d\xd5\xe6\x0e\xe4\x5e\x12\xb4\xb9\xdf\xc3\xaf\xd1\x66\xc9\xeb\x81\x65\xd8\xe0\xad\xfd\x19\x48\x97\xc8\x5b\xa6\x7f\x13\xd6\x13\xde\x7a\x7a\xcb\xeb\x81\xd4\x8e\x7a\x6b\x7e\x06\xd2\x3c\x16\xb7\xe6\xe7\x7b\xda\x50\x68\xc9\x6d\xb4\x3b\x10\x6b\xfe\xe1\x40\xf6\xad\xc1\x1a\xf8\xfe\x0b\x5d\xa8\xc5\x1a\x48\x1d\x19\xb7\x7a\xe1\x96\xe2\x9b\xec\xe8\x96\xe2\x03\xdd\x24\xb0\xb7\x14\xff\x0e\x5b\xe3\xcc\xd3\x88\x7d\x9b\xa7\x92\x4d\xf1\x96\xf5\x03\xe9\x35\xf5\xb7\xac\x1f\x58\xa6\xed\xb9\x65\xfd\x77\xd8\xc0\xf4\x31\x1b\x18\xf8\x80\x1d\x5c\x6d\xd8\x40\x28\x13\x6f\x6d\xd8\xc0\xf7\x26\x8d\xd2\x86\x0d\xa4\x27\xfc\x6e\x6d\xd8\x77\xee\xda\x52\xa6\x89\x19\x08\x0f\xa8\xdd\x86\xfd\x00\x25\xbc\x5b\xee\x36\xec\x07\x58\x15\x45\x7f\x1b\xf6\x73\xa7\xd5\x5d\x96\x59\xdd\x64\x13\x98\xbe\x69\x75\xd3\x0e\x5f\xfe\xa8\xf5\x4d\x36\x06\x17\x1c\xe5\x07\x90\x5e\xd5\x79\xe7\xae\xae\x5f\x98\xf3\xc2\x08\x78\x20\xbd\x22\xfe\xd6\x36\x7d\x73\x60\x35\x54\x68\xb7\xfa\x03\x48\x2f\x62\xbd\xb5\x4d\xdf\x2a\x06\x93\x22\xdd\x2a\x06\x20\x13\x5f\xcc\xad\x62\x00\x4a\x98\x2c\xe8\x56\x32\x00\x4b\xcf\xf6\xad\x64\xb8\xd5\x07\x26\xe0\xbc\xd5\x07\x40\xe8\x0b\xbc\xd5\x07\xc0\xd2\x3f\x7d\x2b\x0f\x6e\x4c\xcc\xe1\x55\x63\xb7\x62\x00\x08\x8f\x9d\xde\x06\xe1\xdc\x68\x81\xf0\xf0\xf2\xad\x18\x00\xd2\xc0\xce\x5b\xeb\x31\xb0\xaa\xdf\x84\xd6\x63\x20\x87\x6b\x84\x8a\x01\x08\x03\xc5\xee\x63\x37\x80\x0f\xbd\x5a\x5b\x03\xf1\x81\xa5\xa3\xf5\x56\x44\x00\x61\x7a\xcc\x5b\x11\x01\xa4\x31\xf1\xb7\x22\x02\x08\x73\xe4\xdd\x8a\x08\x20\xa5\x69\xb7\x56\xe7\x1b\xab\x73\x98\xae\xe9\xd6\xea\x0c\xa4\x0e\xeb\x5b\xa9\x01\x2c\x1d\xe7\xb7\x52\x03\x58\x6a\x88\xdb\xa8\x1c\x20\x13\x8d\x7f\x2b\x3e\x80\xef\xff\xfb\x98\x9d\x81\x20\xd1\x1f\x79\x2b\x48\x80\x65\xe8\xee\xad\x20\x01\x52\x1b\xd6\xad\x9d\xfb\xc6\x82\x1d\x66\x6b\xba\xb5\x60\x03\xcb\xa0\x84\x5b\x3d\x72\x2b\x3e\xaa\xdf\x8f\xe2\x03\x58\x86\x16\xdc\x8a\x8f\x5b\xa5\x51\xdd\x88\x55\x1a\x40\x6e\xa6\xa2\x94\x00\x96\x62\xec\x56\x49\xdc\xd8\xa1\xc3\x4b\x2e\x6e\xed\xd0\x40\xea\x9f\xbd\xb5\x43\x03\x69\xd4\xe9\xad\x19\x1a\x28\x51\xbb\x65\xb6\xe0\xb6\x05\x8c\x9d\x1a\xe4\x36\x03\x65\xc5\x04\x7a\xab\x38\x80\xa5\x0b\xfb\x56\x71\x00\x69\x84\xd9\xad\xe0\x00\xd6\xbf\x6a\xd8\xa6\xdb\x21\x70\xef\x54\x5d\x00\xa9\x11\xe1\x56\x5d\x00\xa1\x97\xe2\x56\x5d\x00\xdf\x9b\x94\x29\x2f\x80\xd0\xad\x75\x2b\x2f\x80\xa5\x0f\xfe\xd6\xa6\x0d\x7c\x6f\x52\x5b\x03\x82\x80\x34\x84\xe7\xd6\xcc\x7d\x3f\x7e\x77\x2e\xa5\x46\xff\x00\x4b\xc7\xff\xad\x56\x01\x4a\x6c\x82\xa7\x58\x01\xc2\xdc\x7d\xb7\x62\x05\x48\x53\xbe\xdf\x9a\xbe\xef\xc7\x05\x66\x3f\xe6\xe8\x7d\x90\x1a\x64\x6f\x63\x84\x6e\x65\xce\xe6\x2f\xca\x1c\x20\xbd\xdb\xfd\x56\xe6\x00\xdf\x63\xb4\x54\x9d\x03\x2c\x83\x2f\x6e\x65\x0e\xb0\x0c\x1f\xb9\x95\x39\xb7\x32\x67\x93\x15\x65\x0e\x90\x7b\x32\x2b\x73\x6e\x65\xce\x66\x26\xca\x1c\x60\x19\x17\x72\x2b\x73\x6e\x22\x8e\x62\x73\x1a\x35\xcd\xad\xa6\x09\x8b\x6c\xbc\x9a\x66\x73\x09\x35\x0d\xb0\x36\x59\x51\xd3\xdc\x8a\x95\x6f\xdb\xfb\xcf\x0d\xfb\x51\xcb\x3c\x3f\x07\x84\xef\xf5\xd1\xf6\x0d\x2c\x4f\x4b\x3d\x0a\x0b\x60\x19\x00\xf1\x28\x2c\x80\xa5\x4f\xf8\x51\x58\x00\xcb\x88\x96\x47\x61\xf1\xa8\x18\x5c\xa3\x1f\x15\x03\xb0\xec\xfb\x47\xc5\x00\x2c\x43\x16\x1e\x03\x81\x9e\x62\x9b\x99\x65\x8f\x54\xfd\x91\xaa\x33\x07\x1e\xa9\x3a\x50\x76\x6c\xc6\x23\x57\x07\x96\xcb\xde\xa3\x81\x1c\x58\xc6\x05\x3c\x1a\xc8\x81\x65\x44\xc1\x23\xa1\x7f\xaa\x93\xdd\x37\xe5\xea\x40\x9a\xd6\xf0\xd1\xf2\xfd\x48\xdf\x0d\xf4\x78\xa4\xef\x40\x1a\x18\xf5\x48\xdf\x1f\xe9\xbb\x56\xcb\x47\xfa\x0e\x84\xb9\x9f\x1e\xe9\x3b\x50\xb6\xa3\xfb\x31\xdc\x06\x58\xff\x7e\xc0\x16\x10\xa9\xaf\x1d\xf0\x91\xe4\x3f\xcd\x59\x4c\x18\xc1\x23\xa5\x07\x52\x13\xe8\x23\xa5\x7f\xa4\xf4\xfe\x7f\x29\x3d\x50\x76\x2c\xc0\x23\xa7\x07\x96\xfe\xeb\xc7\x23\xb3\xc0\x32\xb0\xe0\x31\x01\x25\xb0\x0c\x3d\x7e\x0c\xe7\x07\x72\x0f\xb1\x36\xf9\x47\x7d\xa0\x4b\xfb\x51\x1f\x00\xcb\xd0\x88\x47\x7d\x00\x94\xed\xfd\x7d\x14\x08\x40\x78\xb8\xf4\x51\x1f\x00\xdf\x63\x8c\x81\x02\x01\x48\x5d\xc9\x8f\xe6\x7c\x20\xcd\xb8\xf3\x28\x19\x1e\xd2\xda\x6c\xbf\xeb\xa3\x40\x78\x4c\xe0\x8f\x43\xe2\x51\x1f\x3c\x04\xf3\x6c\x37\xf7\x23\xf3\x07\x96\xa1\x11\x8f\xc4\x1f\x58\xbb\xbb\x25\xfe\x40\xf4\xfd\xff\x6d\x3b\xd9\x64\xb6\x67\xfa\x31\x64\x06\x58\xbb\x9d\x86\xcc\x00\x65\xbb\x01\x1f\x43\x66\x80\x34\xee\xe5\x31\x64\x06\xc8\xce\xd6\xf3\x18\x31\xf3\x10\xf7\x12\xe6\x8d\x7a\x8c\x7b\x01\xd6\xee\x6f\xe3\x5e\x1e\xf2\x54\x6e\x57\xdb\xa3\x64\x00\xd2\x03\xfc\x8f\x92\xe1\x99\x56\x97\x55\xf4\x51\x1f\x00\xcb\xc8\xae\x47\x7d\xf0\x68\xf6\xd7\xb5\xf3\x48\xe3\x81\xec\x7e\x7a\x9a\xfd\x81\xf4\x56\x95\x47\xb3\xff\x63\xd4\x3f\x9b\xca\xa3\xd5\x1f\x28\x61\x22\xa4\x47\xb3\x3f\x90\x86\x2d\x3f\x4a\x02\x60\xed\x61\x9f\xbb\xb6\x5e\xc3\xca\x8b\x1e\x17\x00\x96\x2e\xfe\x47\x91\xf0\x44\xf5\xff\x53\x33\x25\x01\x90\xda\x9d\x1e\x25\xc1\x13\xfb\xda\x4a\x86\x40\x62\x0f\xa4\x49\x1a\x1e\x89\xfd\x43\x6e\x9a\x30\x27\xd1\xa3\x27\x00\x48\xf3\xf8\x3f\x7a\x02\x80\xb5\xbf\x76\x3d\x01\xc0\xda\xb3\xcf\xd8\x94\x27\xed\x6e\x67\xa9\x92\x00\xe8\x46\xce\x3e\x2a\x82\x47\x5e\x6f\xe6\xa2\x47\x5e\xff\xc8\xeb\xfd\x66\xe5\xf5\x40\x89\xc6\x76\xf7\x48\xec\x81\x55\xf7\x9b\x0e\x81\x29\xe8\x1b\x42\xff\x31\x5e\x05\x48\x0f\xbf\x3c\x86\xab\x00\xcb\x90\x9e\xc7\x70\x95\x47\x95\xd0\x5c\xac\x73\x37\x81\xeb\x15\xfc\xf4\x54\x09\x8f\x2a\x41\xb3\xfc\xa3\x4a\x00\xd2\xf3\x92\x8f\x2a\x01\x58\xb9\x8b\x9c\xdf\xa4\xa5\x0f\xed\x47\x8f\x8e\x0b\x20\x27\xc1\x7b\x8f\x7e\x0b\xa0\x84\x87\xeb\x1f\x1d\x17\xc0\x32\x4e\xe4\xd1\x71\xf1\x2c\x17\x14\x9b\xe0\xe1\x5c\x20\x4c\x00\xf3\xa8\x4c\x80\xf4\xaa\xf7\x47\x65\xf2\x2c\x1b\x8a\x06\x7b\x94\x21\xc0\xf4\x7c\xf6\xa3\xe7\x02\xa8\x7b\x83\x30\xf6\x05\x98\xa6\xc7\x7d\xd4\x2a\x40\xf1\x8a\xbb\x47\xad\x02\xec\x74\xf6\x8f\x5a\x05\x68\x1f\x4f\xfb\xef\xdd\x5a\x4f\x07\x30\xb5\xe1\x3e\x8a\x1b\xa0\x1b\x9c\xfd\x28\x6e\x80\x6a\xaa\xb9\xc7\x90\x9a\x87\x0b\x98\x4d\x89\xff\xe8\x0e\x01\xaa\x66\xd2\x47\x05\x04\x34\x4d\x50\x8f\x0a\x08\x68\x5e\x33\xf9\xa8\x80\x80\x59\xfc\x04\x55\x40\xc0\xd7\x79\x96\xd9\x79\x48\xa0\x06\xe3\x7c\x54\x40\xc0\x2c\x0e\x98\x0a\x08\x68\x86\x1c\x3d\x2a\x20\xa0\x78\x20\xe0\x51\x01\x01\xd5\x94\xbe\x8f\x0a\x08\xf8\x7e\xd2\x7f\x66\xf7\x7c\xd0\xe7\x2e\xb2\x7b\x3e\xa8\x1e\x73\x7a\x3c\x98\xf0\x18\x9e\x83\x31\xe8\x51\x27\x01\x7d\xef\xad\xea\x24\xa0\x19\x5b\xfd\xa8\x93\x1e\x73\x78\xba\xb6\xa9\x93\x1e\x45\x91\xd9\xad\x1e\x45\x11\x50\x8d\xc4\x79\x14\x45\xc0\xbe\x43\xe0\x51\x14\x01\xcd\x74\x17\x8f\xa2\xe8\xb9\x2a\x4f\xd1\x70\x8f\x26\x03\xd5\xa4\xff\x8f\x32\x09\xe8\xd3\x11\x51\x26\x01\x4d\xa7\xde\xa3\xdb\x06\x68\x46\x99\x3d\x0a\xa7\xc7\xfb\xdc\x5c\xe7\x15\x4e\x40\xd7\x34\xf9\xe8\xb5\x01\xa6\x46\xa5\x47\x29\x05\x94\xdf\xae\xaa\xed\xfe\xe4\xd3\xbe\xc6\xe0\x31\xa4\x07\x68\xe6\x50\x7b\x74\xca\x00\xdd\x33\xac\x8f\x17\x03\x00\x55\x89\xf4\x98\x77\x07\xd8\x77\x1d\x3c\x4a\x30\xa0\xc8\xff\x1f\x25\x18\xd0\xe4\xd3\x8f\x12\x0c\xa8\x0a\xd2\x47\x05\x06\x4c\xad\xf5\x8f\x0a\x0c\x68\x6a\xc3\x47\x2f\xd0\xb3\xaf\x05\xb0\xc3\x14\x65\xc0\xbe\x37\xe1\x51\x94\x01\xd5\xcb\x60\x1e\x45\xd9\x63\x54\x51\xf8\xa2\xbd\xf3\x41\xdf\xac\xc3\xa8\x22\x60\x5f\xae\xf0\xe8\x17\x7a\xf4\x0b\xf9\xe5\xaa\xdc\x80\xba\x77\x15\x95\xdb\xe3\xb1\x0d\x3f\x53\x95\x1b\xd0\x3c\xce\xf7\x28\xdc\x9e\x87\x05\x47\xe2\xa0\x4a\x03\x6a\xb3\x91\x8a\x34\xa0\xef\x51\x53\xa4\x01\x65\xfb\xaf\x1f\x83\x91\x80\x36\xfc\xda\xd4\x6d\x40\x33\x23\xdc\xa3\x6e\x03\xea\x9e\x15\xca\x36\x60\xdf\xca\xf0\x28\xdb\x80\x6a\x9c\xfe\xa3\x6c\x03\xba\x77\x36\x3d\x46\x2c\x01\xfb\x9e\x86\x47\x21\x07\x7c\x15\xb3\xcc\xee\xf9\xa0\xeb\x44\x7f\x8c\x6b\x7a\xb8\xeb\xdb\x4b\x19\x1e\x85\x1c\x50\xf6\xac\x53\xc7\x3d\x64\x1f\xd2\x11\xf0\x28\xda\x1e\x53\xa2\x22\xed\x1e\x35\x1b\xd0\xcc\x80\xfc\xa8\xd9\x80\xea\xe9\x8f\x47\xc9\x06\xec\xfb\x15\x1e\x25\x1b\x50\x74\x19\x3f\x3a\xa6\x80\xb2\x79\x8a\x22\x0e\x28\xdb\x93\xff\xa8\xe2\x9e\xd7\x86\xd3\xd5\x2a\x36\xa0\x9b\x4b\xe2\x31\x1a\x0a\xe8\x7d\xb7\xc8\x76\xbf\x2c\x1f\x72\x12\xfd\x52\x40\x95\x25\xbf\x4a\x39\xa0\x7b\x6a\xea\xd5\x2d\xf5\x72\x2a\xbb\xec\xa2\x6e\x51\x27\x0e\xd6\xa2\x61\x11\xed\x86\x98\xbf\xba\x9b\x80\xda\x59\x3e\x5e\xdd\x4d\x2f\xd7\x0b\x18\x51\xff\xaa\x0a\x81\xaa\x8b\xfa\x55\x15\x02\x65\xc7\x04\xbc\xca\xc2\xf7\xc7\x62\xd1\x7c\xec\xb6\x88\x3d\xa4\x5a\xf4\x58\xc4\x3d\x0a\xc3\x8a\xbd\x16\x31\xde\xd0\xb3\x57\xed\x08\x94\x1d\x86\xf0\x2a\x1e\xdf\xc2\x80\xa3\xa9\x5e\xbd\x4d\x40\x31\x27\xdb\xab\xb7\x09\x28\x9d\x01\x7f\xf5\x36\x01\xd5\x33\xc7\xaf\xde\x26\xa0\xfc\xd6\x1f\xee\xe3\x7a\xf5\x45\x01\x73\x77\xa8\xbe\x28\xa0\xb7\x6e\x1d\xed\x2a\x2e\x45\xf0\xe2\x88\x57\x57\xd4\xbb\x05\xae\x45\xf6\x54\x61\x86\xec\x17\x2f\x8b\xe8\x3c\x56\x89\x57\x79\xfb\x1a\x00\x66\x17\x2b\x6f\x81\xb2\xe3\x2e\x5e\xf5\x2d\xb0\x6f\x92\x78\xd5\xb7\xaf\x47\xcb\x8b\x45\x76\x5e\xb5\xfa\x8c\x84\xba\xf5\xf5\x92\x73\xc7\xcb\xb3\x24\x40\x1b\x58\x9e\x5f\x03\xb6\x5e\xb2\xa5\x7a\x54\xf5\x55\xa2\x02\xcd\x48\xac\x57\x89\xfa\x36\x66\x20\xcb\xf6\xab\xce\x04\x6a\xe5\x6b\x79\xd5\x99\xc0\xbe\x0b\xe2\x55\x67\x02\x51\x77\x91\x3d\xdd\xe4\x80\xce\x37\x85\xe6\xab\xd0\xb4\xfa\xea\x4c\xa0\xec\x38\x8c\x57\xa1\x09\x34\xcd\xce\xaf\x3a\xf3\xd5\x4f\x64\x34\xc5\xab\x0e\x04\x42\x3b\xfc\xab\x9f\xe8\xd5\x4f\x64\x4c\xc4\xab\x9f\xe8\xf5\x9c\x07\x5f\xed\xab\x34\x7c\xbb\x0c\x1b\x2d\xf4\x1a\xd7\x05\x2c\x0f\x4a\xbf\xc6\x75\xbd\xfa\x89\x1a\x86\x8e\x57\x3f\x11\xb0\x8c\xd7\x7e\xf5\x13\xbd\xfa\x89\xcc\x12\xf9\xea\x27\x02\x8a\xc7\x03\x5e\xfd\x44\x40\xf3\xb6\x89\x57\xa1\xf9\x6e\x55\xe9\xc7\xac\xaa\x04\xba\xa9\xe9\x5f\x55\x25\x50\x34\x11\xbe\xaa\x4a\xe0\x7b\xd3\x32\x7b\xfc\x83\x3a\x77\x35\xec\xf0\xe1\xc5\xe6\x74\x87\xe7\x30\xde\xad\x47\x97\x55\xb3\xc3\x87\x17\x61\x31\x15\xd4\xa3\xaf\x91\x69\x26\x93\x7c\x15\x9f\xc0\x0c\xe8\xf4\x6b\x64\xda\xab\x0b\x4b\x73\xfa\xab\x0b\x0b\x98\x61\xe7\x2a\x51\x01\xa3\xed\x5e\x15\xea\xab\xef\x49\x2d\xfe\xea\x7b\x7a\xbd\xe9\x80\x25\xfd\x55\xb4\x02\x7d\xaf\x03\x8a\x56\xa0\xbb\xc7\xbe\x8a\xd6\x57\x0f\x95\x89\x1e\x5f\xe5\x28\xd0\x3d\x58\xf8\x2a\x47\x81\x12\x9d\x8d\xf1\x55\x8f\x02\xb1\xe0\x33\xaf\x7a\x14\xd8\xa7\x03\x5f\x9d\x56\x40\xf3\x6a\xc4\x57\x85\x0a\x7c\xff\x8c\x46\x29\x51\x81\xa9\xd6\x7a\x8d\x55\x7b\xc3\x3c\x34\xc5\x57\x1d\x28\xbc\x56\x9e\xcd\x7e\xf5\x5a\xbd\x8a\xdb\xee\xc7\xae\xb8\x7d\xbd\x3d\xdc\x5e\x53\xdc\xbe\x61\x43\xe1\x09\xaf\xb2\x15\xd8\xc7\x0f\x5f\x65\xeb\xab\x73\xcb\xec\x8b\xaf\xce\x2d\x60\x1f\x66\x7c\x55\xb2\x2f\x47\x2a\xa2\xbb\xa8\x79\xa4\x02\x48\x6d\x59\xaf\x8e\x2c\x60\x75\x57\x05\x1d\x59\xaf\x82\xb7\xe3\x25\x78\x15\xbc\xc0\xf2\x58\xde\xab\xe0\x7d\x15\xbc\xdd\x9d\x43\xc1\x0b\x74\x03\x04\x5e\x05\xef\xab\xe0\x35\x71\xe3\xab\xe0\x05\x9a\xf7\x16\xbd\x0a\x5e\xe0\x7b\xcc\x5f\xb0\xf1\x1f\xd4\xd8\x75\xb3\xf1\xcb\x81\xf1\x55\xa5\xec\x6b\x0c\x1e\x82\xf7\x55\xca\xbe\xde\x01\xde\xdd\x22\x4d\x16\x05\x54\x8f\x71\xbf\xea\xd1\x97\xa3\xe9\xe1\x39\xf1\x57\xf5\xf9\x1a\x49\xe7\x8a\xa2\x5b\x0c\xe8\x5e\x0c\xfb\xae\x5d\x0f\x42\x7a\x51\x59\xaf\x7a\x14\x28\x61\x1a\xc8\x57\x41\x0a\x34\xa3\xf2\x5f\x05\xe9\x6b\x24\x9d\xd7\x5e\xbd\xca\x4f\xa0\x19\xfd\xfa\xaa\x2f\x81\x65\x52\xee\x57\x7d\x09\x7c\x6f\x5a\xe6\x58\x79\x66\xc3\x05\x45\x81\x09\x7c\x8f\x59\x37\xc7\x8a\x23\xec\xe6\x76\x7d\x15\x9d\xaf\x42\xd1\xcc\xa5\xaf\x42\xf1\xe5\x82\x6f\x25\xd4\xab\x2a\x04\x4a\x78\x32\xf9\x55\x16\xbe\x46\xd7\xb9\x59\x2b\x0b\x5f\x5d\x5e\x7d\xfc\x21\x9c\xec\x55\xe9\x01\xdd\x3b\x39\x5e\x95\x1e\x50\xf6\x8a\xa6\xd2\x7b\x0d\xbe\xdb\x13\x54\xff\x17\x30\x96\x8b\x9c\x4a\x0f\xe8\x8a\xd7\x57\xa5\x07\x7c\x6f\x5a\xb6\x1b\xc8\xb0\xf9\x01\x28\xf5\x5e\x63\xf4\x4c\x2f\xf9\x1a\xa3\x07\x34\xcf\xc7\xbe\xc6\xe8\xbd\xc6\xe8\x99\x5e\xf2\x55\xec\x01\x45\x7b\xf7\xab\xd8\x7b\xf5\x7f\x19\x0f\xf3\x2a\xda\x80\xf8\xed\x22\x27\x9e\xa1\x74\x1d\xf1\xf5\xea\x00\x03\xba\x8e\xd6\x57\x21\x07\x7c\x8f\xd1\x04\x95\x1c\x10\x26\x37\x7e\x55\x72\xef\xed\x18\x21\x26\x5e\x45\xda\xab\x9f\xcc\xaf\x5f\x91\xf6\xea\x27\xf3\x60\xfb\xab\x4a\x03\x9a\xa7\x29\x5e\x55\x1a\xf0\x6f\x5f\x54\xa5\xbd\xb7\xa3\x2b\xd5\x53\x92\x01\x6d\x73\x1a\x25\xd9\x7b\xdb\xe3\xb2\x82\x7b\xd7\x8d\x1c\xc5\x76\x9b\xa2\x09\x28\x4a\x80\x57\x6f\x17\xf0\x6f\xab\x54\x47\xbd\x2a\xa4\xee\x66\xac\x42\x02\xfe\xed\xc5\x2a\xa4\xd7\x13\x1c\xd8\xc5\x5f\x15\xd2\xfb\xf8\x01\x38\x8d\xd4\x43\xc0\xbf\x1d\x55\x3d\xf4\x3e\x76\xae\x3b\x9e\xb2\x06\xf8\xb7\x7d\xea\xb2\x02\x4a\x98\x46\xf3\x55\xea\x00\x25\x7d\x4c\xa9\x03\x18\xce\xff\xea\xb1\x02\xbe\x17\x69\x80\xea\x07\xf8\xb7\xef\xaa\x7e\x5e\xfd\x4e\xe6\x49\x7a\x95\x2c\x40\xee\x8d\x40\xc5\xf2\xea\x77\xea\xfb\x55\x67\xd1\xbe\x2a\xcd\x1f\x75\x12\xbd\x4e\x22\x7f\xd3\x49\xf4\xee\x06\xac\xff\xf7\x3f\xf9\x43\xa0\x08\x1d\xaa\x99\x3f\x04\x8a\x50\x49\x2a\x9a\x3f\xc2\xe6\x84\x12\x84\x2e\xe5\x8f\xb8\x39\xa1\xc2\xe8\xf2\x87\x8e\x11\x66\xff\xc6\x33\x7f\xe8\x18\xa1\x13\xa7\x94\x3f\x74\x8c\x30\xd9\x2d\xf2\x87\x8e\xc9\x9f\x0a\x85\x4b\xa9\xf2\x87\x42\x11\x02\x99\x97\x3f\x1c\x57\x42\x21\x01\x5c\xfe\x10\x2d\x42\xfb\xf7\xff\x1f\x8b\x5e\xff\x19\x6f\x16\x9b\xf9\x41\xe5\x8c\x62\xfe\x8a\xcd\x2c\xc5\xc7\xe8\x8d\x62\x3b\x8b\x37\x57\x0e\x8a\x6c\x26\xaa\x25\x46\xe1\x17\x8a\xed\x2c\xde\x5c\x49\x0b\x8a\xed\xe4\x9c\x08\x39\x0f\xf2\x57\x6c\x27\xc7\x44\xb0\x38\xe4\xaf\xd8\x4e\x72\x57\xad\xfd\xff\xd3\x22\x74\xc9\xf4\xdf\x2f\x8b\x16\x5e\x44\x4a\x0e\x4b\xbc\xae\xb4\xd0\xf2\x62\x67\x14\xaf\x66\x49\x8a\xec\x0c\xe3\xe1\x48\xda\x90\xbf\x6a\xcb\x39\xf8\x8e\xcf\x3d\x7f\xd5\x96\x57\x5b\x6e\xfd\xab\x2d\xe7\x2a\x6d\x2c\x07\xf9\xab\xb6\xbc\xba\x9b\xda\x80\x6a\x33\x3f\x65\x62\x10\x61\xfe\xaa\x0d\xf8\xc0\x18\xbc\xfc\x55\x1b\xf0\x81\x61\x7f\xf9\xab\xb6\xe0\x83\xca\x7d\x94\xf9\xab\x0e\x70\xdd\x8d\xb2\x6a\x36\xaa\x42\xcf\xf7\x63\x36\x8a\x53\xee\x31\x76\xd5\x1c\xe2\xea\xe5\x96\xfe\xe6\x4b\x91\x7e\xb7\x61\xd5\x9a\x0d\xe5\x94\x7b\x71\xa6\x35\xdb\xd9\x9c\xc9\x95\x2e\x6a\x36\x14\xc7\x1b\x09\x03\xf3\xd7\x1c\xe1\x66\xdb\x6d\x42\xb3\xed\xdc\x92\x8d\xa9\x20\x7f\xcd\x21\xfe\xa0\x13\x61\x96\xbf\xe6\x10\x7f\x30\xf0\x47\xe5\xaf\xd9\x43\xdc\x9b\xbd\xdb\xd9\xec\x21\x9d\x6c\xc3\x5e\x6b\xf6\x07\x51\x78\xb8\xe6\xf3\xd7\xec\x0e\x9d\x6c\xc3\x8f\xa0\xd9\x1f\x9c\x85\xef\x4e\x85\x66\x77\x18\x98\x37\x76\xd5\x76\x7f\x30\x17\x92\x37\xbb\x53\x41\x75\x45\xba\xd3\xfc\x75\xfb\xe3\x83\xba\xfe\x70\x58\x2b\x7f\xdd\xde\xe2\x12\xed\xb2\xff\x89\xbd\x65\x40\xde\x68\xd4\xa9\xdb\x35\x04\xe4\x61\x1f\xc9\x5f\xb7\x6b\xba\xc7\xff\x1a\x1d\xdd\x9d\x17\x9d\xd4\xe0\x61\x91\xfd\xc0\xe9\xf9\x69\x63\xba\xfd\xf0\x41\xdf\xdd\xd0\xed\x06\x6e\xc9\x2e\xfb\x27\xed\x06\x9d\x7c\x84\x4a\xe5\x6f\xd8\xbe\xc1\xbc\x6e\x7c\x97\xc3\x06\x28\xc7\xb0\x2c\xe7\x6f\xd8\x82\x0f\x2a\x09\x50\xf3\x37\x1c\xee\x61\xa3\x3a\xbf\x30\x6c\xd4\x07\xc9\x7d\x05\xf9\x1b\x36\x8a\x73\xf1\x41\xd6\xd5\xfc\x0d\x07\x7c\x90\x6a\xd6\xba\x0d\x07\x5c\x3d\x36\x3a\x0d\x1d\xb6\xfd\x83\xca\x29\xd2\xfc\x0d\xdb\xae\x7f\x90\x53\xc1\xf9\x1b\xbb\x59\x0f\xa1\xc1\xfe\x37\x07\x57\xc7\xdf\xae\xef\xf4\x17\x26\x1f\x9d\x9d\x3b\xfd\x01\xf2\x7d\x71\x8f\x49\xfe\xa6\x3f\x30\x9d\x2a\xc3\x37\xf7\x7f\x7b\x49\xfc\xcc\x5c\x0c\xa7\x0a\x7a\x29\xed\xa2\xf0\x63\xe2\xa4\x3a\xb6\xa6\xfc\x85\x9d\x4b\x90\x1f\xdb\x6b\xfe\xc2\xce\xc5\xa3\xb7\xe7\x75\xd8\xb7\xb1\x59\x39\x0d\x08\x3b\xf7\x83\x35\x27\x1d\x19\xf6\x2d\x71\x7f\xcd\x6f\x29\xec\xdb\x0f\x32\xed\xda\xb0\x6b\x55\x50\xc3\x36\x85\x2d\x0f\x2e\xeb\x9e\x34\x29\x6c\x79\xf8\xe1\x4c\x7a\x23\x9c\x31\x41\x94\xd8\xf4\x07\xec\xda\xe0\x08\x53\xb7\x1a\x76\x06\x37\xdb\xcd\x64\x0e\xa5\x9d\xc1\xcd\x76\xd3\x66\xa6\x9d\x61\xc0\xe0\x70\xa1\x4a\x9b\x4e\x9e\xb0\x3d\x5f\xd2\xa6\x93\x27\xac\xb8\x18\xa4\x2d\x47\x79\xed\x6f\x20\x6d\xf9\x07\x6d\xef\x30\x69\xcb\x93\x6b\x77\xfc\x2c\xd2\x96\xe7\x6e\x39\x95\x4d\x5b\xfe\x41\xab\xf6\x6c\xda\xf2\x74\x65\xb1\x99\xe9\xa0\xa7\xa7\xa6\xac\xac\x5f\x14\x57\x6a\xfc\xf6\x3f\xb3\x7f\xf4\x17\x8e\xa0\x1e\xcb\x36\x71\x0d\xc6\xde\x50\x96\x6d\x5a\xfb\x04\x07\xff\x6d\xd9\x02\xee\xac\x26\x06\x24\x7f\xcb\x16\xe8\x1c\x24\x3b\x6e\xfe\x96\x4d\xe0\x54\xd3\x90\x32\x2c\x5b\xa0\x3e\x1b\x41\x75\x97\x4d\xc0\x61\xb8\xbf\xa8\x65\x0b\x0c\x65\x74\xbe\x2f\x5b\xc0\xd5\x18\xa4\xca\xce\xdf\xda\x2d\xd0\x92\xe3\x53\x8e\xb0\x2e\xc4\x21\x41\x58\x0e\x31\x2e\xc4\xbd\x99\x1e\x0e\x31\x92\xad\xba\xc0\x1c\x0e\xb1\xc7\xe7\xdd\x3c\x0e\xe7\xfb\x41\x1e\xb5\xca\x4f\x1e\x76\x90\x22\x6e\xb8\x6a\x1f\xf6\x90\x79\xc8\x76\x91\xa3\xee\x29\xfb\x46\x2b\x0f\xfb\x4c\x75\x36\xa4\x0c\x87\xbd\xc1\x91\x7a\x8c\xab\xf9\x3b\xec\x0c\x4f\x48\xed\x9a\xd9\x19\x1f\xcc\xe1\xce\x7f\xd8\x19\x87\xf3\xdd\x39\x7a\xd8\x1b\xf8\x04\xf7\xb6\x73\xd8\x1b\x07\xfb\x26\x9f\xf0\x61\x5f\x7c\x50\xa1\xc3\xf9\x3b\xed\x0b\x4f\x56\x0d\x3f\x81\xd3\xce\xf8\x60\x6e\x2a\x70\xda\x19\x1f\xf4\x66\x67\x9c\x76\xc6\xb9\x3b\xc3\xc7\xec\x8c\x0f\xe6\xde\xbd\x4f\x3b\xe3\x9c\x3e\x46\x03\x4e\xa7\xcb\x07\x73\xef\xde\xa7\xb3\x45\x0d\x38\x24\xa2\xa7\xbd\xa1\xbb\xcf\x55\xf4\xb4\x37\xd4\x85\x64\x83\xca\xdf\x69\x77\x9c\xce\x0d\x1a\x7a\xda\x1b\xa7\xbd\x61\xa3\xec\x8d\xd3\xfc\xe5\xf4\xd9\x69\x77\x7c\xd0\xf7\x67\x7d\xd9\x1d\xe4\x30\xee\x2e\x38\x97\xbd\x81\x2a\x5c\xd2\x8f\xcb\xde\xc0\x4f\xb8\x77\xa8\xcb\xde\x20\x85\x71\xc8\x86\x2f\x3b\xe3\xb2\x33\x68\xf8\x65\x67\x5c\x7e\x4e\xb2\x8f\xcb\xa9\x41\x88\x65\xb7\xb7\x2f\xfb\xe7\xda\xad\xec\x7f\xd8\xa8\x2f\x3b\x81\xd4\xc5\xbf\x61\xc5\xed\x04\xee\x09\x1f\x6e\xca\x97\x9d\x70\x71\x6d\x8e\x5f\xf3\x65\x27\xec\x33\x5a\xea\x84\xdb\x2a\xdd\x5c\x6b\xee\x1a\x7b\x5b\x25\xbc\x73\x7b\xd3\xbf\x1d\x32\x0f\x69\x4d\x57\x9a\xdb\x39\xcd\x0d\x1b\x9b\x74\xdc\x8e\xe2\x0d\x19\xf4\x37\x6f\x47\x11\xf7\xdc\xf0\x6b\xbb\xad\xff\x07\xad\x39\x99\x6e\xeb\x7f\x5b\x7f\xfa\xea\xb6\xfe\x48\xcd\x9f\x4d\xba\xad\x3f\xb2\x32\xa6\x02\xe0\x71\xc8\xc8\x0c\xb0\x5c\x15\x1f\x87\x8c\xcc\x00\x31\x15\x00\x8f\x03\xf4\x60\x96\xb5\xe7\x1f\x07\x08\xa9\x59\x5c\x2d\x1e\x3b\xc3\x13\x5f\x73\x97\xd9\x1b\x9f\x96\x9c\x7b\x6d\x78\x6c\x13\x4e\xb5\xe1\x8e\xf9\xd8\x26\xee\xf4\xf8\xb9\xb4\x3d\xb6\xe9\xb1\x4d\xfe\xa4\x6d\x32\x60\x72\xba\xb6\x3d\xbb\x51\xa4\x40\xf4\x03\x79\x9d\x99\x2f\xda\xcd\xf9\xfb\xda\x4c\xae\xee\xe6\x5c\x67\xfe\x5e\x9b\x89\xeb\x6d\xb3\x9d\xd7\x99\x69\xbc\xa4\x83\xf9\xda\x70\xee\xfd\xd8\xd4\xe9\xb5\xe1\x86\x4b\x4e\x17\xff\xd7\x96\x7f\x50\x8b\x63\xf2\xda\x70\x4f\x85\x4d\x3f\xb6\xd7\x79\xf0\x41\xff\x29\xe7\x5e\xa7\x81\xce\xb7\x29\xcb\x78\x9d\x07\x1f\x2c\xbf\xac\xd7\x2e\x43\xc8\xc6\xf4\x33\x7d\xed\xb3\x97\x8f\xd9\x7d\xf5\xb5\xcf\x48\x9d\x9c\x6e\x1a\xaf\x7d\xa6\xb8\x25\xd3\x73\x16\xc5\x6d\xf1\x04\x18\x5e\xd3\x2c\x4a\x59\xa0\xcb\xff\x8b\x4a\xb6\x70\x61\x48\x4c\xfa\xb6\xa8\x5b\x81\x24\xfd\x7d\x16\x75\x2b\x50\x5a\xf8\xcf\xc2\x22\xe7\xfb\xfe\x6f\xcb\x32\xee\xf7\xde\xf5\x38\x2c\xe2\x1a\x14\x56\xa8\xa2\xba\x2d\x1e\xee\xe2\xe4\x4f\x16\xb5\x6c\xf9\xf4\xeb\xe4\x86\xde\x2c\x78\xdb\x84\xee\x37\x50\x94\xb2\x40\xe3\x18\x7a\x16\xa5\x2c\x50\x89\x1a\xce\xa2\x92\x05\xa6\x74\xb3\xa8\x64\x81\xba\x58\x89\x8b\x42\x16\xe8\x19\x3e\x65\xc3\x15\xb2\x6e\x38\x45\x25\x0b\x14\x5c\x60\x59\x54\xb2\xc0\xf7\x18\x95\x55\xca\x02\x13\xb7\x75\x16\xa5\x2c\xf0\x3d\x46\xa7\x29\x66\x81\x5a\x96\x8f\xd9\x1b\x1f\x2c\xcc\xe2\x59\x94\xb7\x05\x87\x5a\x90\x06\x2c\x0b\x1e\x35\x61\x62\xec\xcf\x52\xec\x20\x45\xe4\x84\xe0\x17\x45\x24\xe0\x6d\x06\x59\x14\x91\xc5\xe3\x58\x1c\x24\xc8\x52\xf7\xab\xcc\x18\x26\x69\x69\xf6\xad\x22\x72\xfa\xaa\x22\x12\x68\xd8\x5f\xb3\x28\x22\x01\x2f\x3d\xc8\xa2\x86\x2c\xcd\x6e\xb3\xf1\xaa\x43\x60\x0e\x7f\x53\x75\x58\x74\x97\x71\xe9\x47\x16\xe5\x21\x50\xc7\xa0\x55\xca\x43\x20\xd3\xc9\xd1\xec\xb5\x66\x7f\xb0\x9c\x17\x75\x1f\xd0\x7e\x3f\xeb\x61\xa3\x94\x62\xd3\xff\xa6\x14\x03\x1a\xc7\xe1\xb3\x28\xc5\x80\x12\xe4\x93\xce\xd2\xad\x47\x67\xf8\x06\x1d\xde\xad\x87\x8a\x0d\x5f\x78\x16\x15\x1b\x50\x31\xa6\x66\x51\xb1\x01\xbd\xec\x22\xc7\x80\xfb\x01\x87\xed\x54\xb1\x15\xfd\x6c\xaa\xf6\xa2\x64\x03\x52\x8b\x51\xe9\xbb\x05\x7e\xc8\xec\xc1\x65\x38\x2e\x63\x1f\xf6\xa6\xc8\x61\x51\xec\xfd\xa8\x99\x5a\x0f\xf8\xde\x64\xf4\x14\x7b\xc0\x1c\xf6\x9a\x5a\x0f\x68\xea\xf8\xa2\xd6\x03\x5a\x38\x78\x4a\x3d\x60\xe1\xd0\xc9\xa2\xd4\x2b\xc3\xaf\x7d\xfa\x98\x3d\xc4\xe5\x29\xc3\xbe\x55\xc3\x95\x61\x03\xe2\xf7\xdf\x5b\x75\x99\xb6\x8f\x3b\x52\x14\x65\x65\xda\x3e\x12\x3f\xcb\x01\xca\xb4\x7d\xd3\x75\x8a\x05\xbf\x4c\x6b\xee\x7d\x28\x2e\x10\xd3\x9a\x4f\x85\x14\xe3\x38\xad\x39\xd7\xa1\x28\x9a\xca\x74\xb4\x95\x90\xc4\x2c\x65\x51\x42\x02\x73\xb8\xe8\x29\x21\x81\xef\x31\xc6\x56\x0d\x09\x64\xda\xe6\xe9\x70\x1b\x3c\x4a\xb8\x64\x96\xe9\x78\x73\x3d\xa1\xb2\xaf\x4c\x87\xdb\xeb\x09\xd3\x37\x1d\x6e\xbd\x75\xb2\xe5\xa2\xfa\x04\xba\x52\xb6\xa8\x3e\x81\xb9\x3f\x12\xd5\x67\xd1\x35\x47\xf2\xed\x2c\x6a\x4d\xc0\x7b\x46\xb2\x28\x35\x4b\x38\xd5\xfd\x51\x55\x24\x10\xe4\xd5\xcc\xa2\x88\x04\x0a\xe7\x9d\xb3\x28\x22\x81\x46\xaa\xa6\x2c\x61\xd3\xc9\x3f\x91\x30\xd7\x12\x36\x9d\x0b\xd3\x87\x93\x5f\x59\x09\xb4\xbd\xe8\x29\x2b\x81\x46\x56\x90\x2c\xca\x4a\xa0\xfc\xdc\x75\x94\x95\xc5\x40\xd4\xe9\x70\xa6\xcd\x4c\x16\x1b\x3f\x07\x95\x66\xc9\xdd\x24\xaa\xa1\x3c\x04\xbc\xed\x24\x8b\xea\xb0\xe8\x97\xc3\x55\x9c\x45\x79\x08\x94\xe2\x9a\xa4\x3a\x2c\x86\x93\x72\xc7\x4a\x96\xb4\xba\xa9\x25\x91\xc7\x96\xd5\x35\x35\xc6\x74\xdd\x5e\xd6\x97\x6b\xd2\x87\x1f\xdc\xb2\xba\xea\xbe\x69\xdf\xaa\xfb\x80\x52\x5c\xa7\xd4\x7d\x45\xdd\xb7\x3b\x44\xdd\x07\x04\xf7\x37\x64\x51\xf7\x01\x0d\x57\x5d\x16\x75\x1f\x50\xd3\x2d\x57\xdd\x57\xcc\x22\xed\xbc\x55\xf7\x15\x6e\x44\x8c\xbd\x64\x28\xf2\x80\x24\xdc\x33\x8b\x22\xaf\x10\x14\x1a\xe1\x0f\x28\xe9\x80\xa9\x80\x2e\x2a\xba\xe2\x09\xb6\x70\x2a\xa8\xdf\x00\x2f\x89\xc9\x72\xf8\x99\x91\x46\x3a\x48\x75\x9e\xe5\xb0\xed\x1f\xd4\xb5\x68\xa7\x2a\x0f\xc8\xe6\x18\xa8\xf2\x80\xa9\xf4\x2e\xaa\xbc\x62\xc8\x65\xb8\x02\x29\xb0\x80\x46\x58\x78\x16\xf5\x55\x51\x25\x85\xd3\x48\x95\x04\x8c\x89\xd9\xa1\x9c\xfb\xbf\xc1\x45\x83\x31\x56\x24\x15\xe3\x24\xc3\x9d\x5e\x95\x54\x3c\x3c\xe6\xf7\xa3\x4a\x02\x56\xf7\xc3\x50\x25\x15\x0f\x8f\x61\xb3\x2e\xaa\x24\xa0\x71\x17\x69\x16\x55\x12\x30\x87\xab\x95\x2a\x09\x28\x9b\x08\xa9\x92\x80\x5e\x5d\xa0\x55\x49\x45\x49\x14\xae\xd0\x4a\x22\xa0\x17\xbb\x51\x49\x54\x48\x88\x16\x21\x43\xb8\xec\x5a\x12\xa2\x55\x27\xc7\x65\x67\x5c\x76\xad\x45\x76\x86\x62\x2a\x24\x0d\xaa\x25\x60\x0e\x39\x94\x6a\x09\x48\x6e\x22\xcd\xa2\x5a\x02\xbe\x37\xfd\x6f\xf6\xc6\xc5\x05\x7c\xc8\xf1\x72\xdb\x1b\xba\xc9\xb8\x6f\x2e\x8b\xda\x08\xc8\xe2\x7c\x51\x1a\x95\x1d\xb9\xe8\x8c\x57\x1b\x01\xab\x4b\x37\xd4\x46\x45\x6f\x5a\x48\xe6\xd4\x38\x40\x86\x43\xfc\xf8\xa3\x1f\xe4\x72\x72\xa8\x7a\x8a\x07\xc5\xb4\x9b\x94\xc7\x0e\x47\xf6\x54\xc9\x8b\xaa\xa7\xa8\x67\x62\x97\xd9\xbb\xdc\xb8\x4e\xc4\x47\x96\xc7\x16\x3c\x9c\x5c\x6c\xfe\x80\x2d\x78\x6c\x81\xc3\xf7\xd8\x02\xc2\x0b\xa7\x9b\x99\x4a\xa8\x78\x50\x2c\x9c\x57\x4a\x21\x20\x48\x65\x90\x45\x29\x04\x94\xe6\x9a\xa0\x14\x2a\xfa\xce\xc2\xcd\x46\xf9\x52\x3e\xad\xd2\xb5\x91\x16\xb5\x4a\x79\x77\x3d\x68\x81\xea\x02\xc8\x4d\xbf\x94\x17\x40\xd7\xb5\x55\x54\x17\x40\xad\x7f\x08\x2e\xcb\xa2\xf8\x28\x66\xa9\x08\x49\xd1\xbb\xab\x89\xbb\xd0\x69\xf1\x3a\x42\x0a\x92\x60\x45\xae\x0a\x92\xba\xbd\x6d\x8d\xa2\x62\x11\x2e\x74\x66\x4a\x55\x8f\x54\x33\x52\x10\x1c\x94\x55\xd7\x1a\xe0\xe1\x89\xac\x4a\x14\xa0\x72\x18\x26\xab\x12\x05\xe8\x1c\xd9\xca\xaa\x44\x01\x32\xa6\x3f\x99\x16\x25\x07\x8f\xad\xd8\xb2\x88\xa3\xd3\xd8\xa7\xaa\xa2\x05\xf8\x08\x2b\x45\xa7\x45\x0e\xe3\xb4\xec\xb2\x8c\x10\xe3\xe1\xff\x7f\x2c\xda\x2d\xa7\x66\xaa\x16\x20\xaa\x4d\x52\xb5\x54\x1d\x70\xe4\x48\xcf\xaa\x6c\x01\x5a\xf7\xbf\x29\x5b\xaa\x0e\x38\xa2\x42\xb3\xaa\x5b\x80\x36\xf7\x63\xf6\x86\x91\x7b\x11\xb4\x5d\x59\x01\x0c\xb9\x70\x55\x56\x00\xad\xf3\xdd\x54\xbd\x66\x55\xa5\x41\x3c\x7d\x56\x95\x06\xd0\xb2\xf9\x9b\xaf\x45\x98\x86\xac\xad\xbe\x35\xe0\x7b\x93\x6e\xd3\xb9\x56\xb9\xe3\xa5\xd9\x93\xd5\xda\x56\x57\x83\xf4\x55\xc7\x00\xaf\x19\xe1\x88\x59\xf5\x9a\x01\xdf\x63\x96\x39\x08\x1c\x57\x23\xa9\x64\x56\xdd\x66\x80\x67\x55\xb2\x2a\x78\x80\xf2\x63\xaf\xab\x0a\x1e\x20\xb8\xd9\x3b\xab\x4e\xb3\xaa\x06\x22\xa8\x22\xab\x1a\x08\xf0\x14\x4d\x56\x35\x10\x50\x8b\x13\x46\x09\x04\x94\x62\xfd\x95\x40\x55\x3f\x1a\xe1\x5f\x59\xd5\x40\xb5\x31\x47\x61\xd1\x55\x9f\x19\x50\x5c\x7c\xab\xaa\x08\x28\xfb\x1b\x50\x15\x01\x6d\xfd\xfc\xff\xf6\x8f\x09\xe4\xba\xff\xde\xfe\x21\x86\x90\xe4\x79\x59\x15\x45\x55\x37\x9a\x5e\xae\xaa\x1b\x0d\x08\x6e\x21\xcf\xaa\x1b\xad\xaa\x9d\x22\xad\x99\xbd\x41\xfa\x68\xee\x0d\xcf\xaa\x76\xaa\x86\x15\x12\xd8\x95\x55\xd7\x16\x10\x1c\xe5\xc8\xda\x6d\x53\x77\xb5\x64\x2f\xaa\xea\x29\xa0\x4d\x27\x9f\x72\x0a\xf8\x1e\xa3\x22\xea\x29\x20\xb8\x69\x37\xab\x72\x0a\xf8\x1e\xa3\x6e\xea\x29\x20\xf6\x37\xa5\x9e\xaa\xdd\xc1\x83\x56\xd5\xbe\xeb\xcb\xe0\xb1\x34\x56\x85\x52\xd5\x1b\x95\x2c\xdb\x55\x6f\x14\xd0\x34\x4d\x56\x55\x0b\x10\x1c\x16\xce\xaa\x33\x0a\xf0\x4c\x51\x56\x85\x4c\x35\x38\x90\x74\xeb\x59\xf5\x3c\x01\x9e\x29\xca\xaa\x78\xa9\xe6\xa8\x4b\xb6\xac\x3a\xed\x36\x72\xd4\x49\x07\xaa\x4a\xa5\x9a\xcc\x82\x6c\xe5\x59\x95\x2a\x40\xfe\x1c\x17\xa5\x4a\x35\x62\x90\x6c\xe5\x59\xd5\x2a\x40\x70\x05\x7b\x56\xa5\x4a\x55\x97\x70\x1a\x3e\xab\xba\x04\x58\xb2\xaf\xaa\x2e\xa9\x86\x0c\x92\xa1\x20\xab\x22\x04\x88\xb6\x7f\xd4\x56\x4d\x32\xb3\xb8\x22\xaa\x41\x80\xba\x57\x44\x35\x08\x90\x3f\x07\x59\x0d\x02\xb4\xe6\xcc\xd5\x03\x06\x74\x8e\xf5\x64\x55\x95\x00\x93\x2c\x81\x59\x55\x25\xd5\x80\x41\x2e\x01\xce\xaa\xbb\x0b\x48\x12\xea\x66\x55\xa8\x54\xdd\x5d\x7a\x21\xaa\x4a\x05\x18\x1c\x25\xca\xaa\x52\x01\x7a\xb1\x49\x2a\x95\xaa\x07\x2c\x1d\x76\x3d\x60\xc0\xf8\x39\xbf\x95\x2a\x80\x8e\x9b\xaa\x52\x01\xc6\x8f\x20\x8b\xaa\x52\xa9\xca\x12\xf2\xaa\x67\x55\x96\x00\xb5\x3a\x4c\xca\x12\xa0\xc4\x5e\x35\xf5\x80\x01\xe3\xe7\xb7\xa2\x07\xac\xaa\x5e\x12\xf6\x55\x55\x2f\x40\x97\xf1\x55\xd5\x4b\x55\xbd\x90\x8a\x28\xab\xea\x05\x18\xbf\x3f\xe4\x03\xcf\xaa\xb8\x01\x7a\x73\x4e\xe8\xfa\x02\x8a\x19\x12\xb2\xea\xfb\x02\xda\x5e\x07\xd3\x9e\xf9\x60\xfc\x1c\x0d\x55\x11\x30\xa4\xaf\x55\x55\x54\x55\x45\xe9\x36\xa9\x2a\x02\xc6\xcf\x0f\x5f\x55\x04\x54\xa9\x76\xd5\xb5\x56\xcd\x04\x98\x98\xfb\xaa\x4e\x33\x60\xfc\x5c\x0b\xd4\x4e\xc0\xe0\x98\x52\x56\xb5\x13\x30\x7e\x2e\x05\x4a\xa7\xaa\x7f\x4c\x57\x69\x55\x28\x01\x6d\x4f\x7d\x85\x12\xd0\x75\x82\x54\x85\x52\xd5\x41\x96\xee\x44\x3a\xc8\x80\x61\xe4\x4a\x55\x3b\x55\x63\x1a\xd3\x6d\x47\xf1\x04\x0c\xa3\x65\xaa\x1e\xb2\xaa\x3b\x2c\x5d\xb7\x15\x4f\xc0\x30\xb4\xa4\xea\x0e\x03\x6a\x75\xa2\x28\xa7\x80\x3a\x6d\x80\x72\xaa\x2a\xa7\xd2\x0d\x45\x39\x05\x0c\xd2\xbb\x65\x55\x4e\x01\x83\xa4\x61\x59\x95\x53\xc0\x30\x40\xa7\x2a\xa7\x80\x51\xfc\x52\x75\x9a\xd5\x7d\xbf\xbc\xcd\xb4\x83\xb8\x5e\x3e\x7c\xcf\xfe\xf9\x60\xa8\x5d\xab\x3e\x33\xa0\x2d\x57\x4f\x7d\x66\xc0\xd8\x1f\xbd\x2e\x33\xa0\x70\xed\x47\x56\x5d\x66\x55\x49\x97\xf0\xec\xaa\xa4\xab\xe6\xaf\xc6\xd4\x57\x95\x74\xc0\x28\xae\xa7\xba\xcc\xaa\x2e\xb3\x74\xbb\xd2\x65\x06\x8c\x22\x37\xd0\x65\x06\x0c\x15\x6e\x3d\xed\x1d\xce\xcc\x91\x59\x3b\xab\xf2\x10\xf8\xfe\x19\x7d\xad\x3e\x04\x72\xd9\xaf\xea\xc3\xaa\x3e\x54\x0c\x56\xf5\x21\xd0\xf7\x12\xa8\x3e\x04\x46\x71\xc7\x51\x1f\x56\x23\x29\xb5\x10\x55\xd5\x20\x30\x8a\x1f\xa2\x6a\xb0\x9a\x70\x24\xdd\x4c\xd4\x7e\xc0\x30\xaa\xa9\xea\x21\xab\xd7\x6e\xbb\x65\xb6\x9d\xfc\xd8\x9b\xec\x5d\xb6\xfd\xb2\xed\xfe\xa6\x6d\x37\x06\x33\x6d\xbc\x72\x10\x18\x9c\x94\xcc\xaa\x1c\xac\x9f\xf4\x1b\xc5\x6d\x4e\xe9\x07\x94\x22\xb1\x53\xfa\x01\xc3\x40\xaa\x7a\xed\x76\x9a\x45\x93\x17\x55\x7e\xd5\xe4\x25\x9c\xd7\xcd\x7a\xdb\xf4\x0f\xfa\xe6\x32\xb7\x4d\xff\x60\x18\x44\x53\x6f\x27\xc2\x07\x43\xa3\x57\xbd\xed\x0c\x62\x32\xf5\x97\xd7\xdb\xce\xf8\x60\x90\x6f\x3e\xab\xae\xb9\xea\xc9\x39\xd2\xf9\x67\xd5\x37\x07\xd4\x70\xf1\x52\x7f\x02\xa3\xec\xca\xda\x3f\xb7\x13\x41\xae\xa7\xd8\x04\x2a\x79\x1c\xb3\xea\x88\x03\x86\x91\x78\x55\x47\x1c\xf0\xbd\x49\x37\xea\x89\xab\x7a\xe2\x76\x9b\xec\x20\x62\x3e\xd3\xc5\x4b\x95\x0a\x8c\xbd\xaf\xaa\x52\x81\x61\x50\x59\xd5\x37\x57\x15\xae\xa9\x5e\x50\xb8\x02\xa3\xc8\x72\x15\xae\xc0\x30\xd0\xac\xea\xae\x03\x5a\x75\xe4\x74\xd7\x01\x55\x53\x6e\x55\xdd\x02\xeb\xe7\x27\xa6\xba\xad\xcf\xee\x0c\x2b\x6b\x67\x3c\x5e\x53\xe1\x4f\xda\x19\xfa\xe6\x52\x1d\xa0\x6f\x0e\x28\x3f\x07\x40\xdf\x5c\x35\x99\x89\xae\x95\xaa\x73\x0e\xe8\x7b\xd5\xd3\x39\x57\xf5\xc4\x91\x05\x31\xab\xae\x38\x60\x68\x9f\xae\xca\xdb\xfa\x3a\xc4\x2e\x4c\xfa\xdd\x80\x41\x84\x7d\x56\xdd\x6e\xd5\x08\xd2\x54\xc9\xe8\x77\x03\xda\x4f\x7d\xa9\x30\xae\x46\x90\xea\x3e\xab\x2a\x63\x60\x18\x27\x55\x55\xc6\x55\x01\x9b\xd0\xfe\xa6\x80\x05\xbe\xb2\x4e\x59\xb1\x8c\xdb\x48\x18\xd1\xa6\x93\x0d\xa8\xd1\xff\x60\x01\x6f\x6a\x5e\xa0\xe8\xa9\x6b\x4a\x5e\xa0\x95\xe1\xcf\x0f\x8b\x38\x15\xd7\xfc\xf5\x69\xd1\xa4\xe2\x93\xa2\xb0\xc8\x9e\xb1\x28\x2d\x62\xf2\xb3\x7b\x35\x25\x2f\x30\x38\xb8\x98\x4d\xc9\xdb\xd4\xb7\xa4\x45\xc8\xa6\xbe\x05\x86\x71\x66\x4d\x3f\x1d\xf0\x3d\x16\x94\x3d\x96\x99\xf3\xd5\xca\xbe\x16\xb1\x8b\xb2\xb2\x37\x55\x70\x2b\xbb\xfb\x92\x32\xbb\xaf\x30\xfb\x6d\x93\x2a\xb8\x29\x79\xc9\xd2\x95\x4d\xc9\xdb\x0a\x1f\x3e\x3c\xa3\xe9\x96\x6b\x66\x61\x24\xaf\x48\x36\xfd\x72\xc0\x28\xc3\x1f\xb0\xed\xfa\xe0\x12\xda\xd2\xf4\xc1\x01\x83\xec\x84\xd9\x14\xcb\xc0\x28\x7c\x71\x4d\xb1\x0c\x0c\x8e\xd1\x65\x53\x2c\xb7\xba\x7f\x93\xea\x56\x7f\x93\x2c\x89\x9c\xa3\xcb\xa6\xbc\x05\x8a\xb2\xa9\x29\x6f\x9b\x99\x57\xd6\xcf\x37\xfd\xcd\x0f\xaa\xb4\xaf\xa9\x65\x81\xa2\x77\xb0\xd5\xfd\x9b\x37\x35\xa3\x6f\xd5\xb2\x4d\x2d\xbb\x58\x0c\x9a\x5a\x16\x18\x85\x5d\xad\xa9\x65\x9b\xfe\xbc\xc5\x02\xd4\x14\xb3\xc0\x30\x66\xb3\x29\x66\x9b\x62\x56\x99\xdd\x14\xb3\xc0\xe0\xf8\x5b\x36\x83\x42\x81\x41\x66\xba\x6c\xea\x5b\xa0\x1b\x3a\xd7\xd4\xb7\x4d\x7d\xbb\xfc\xff\x76\x90\x5e\xbf\xf5\xb3\xcc\x1e\x22\x28\xb4\x3a\xbb\x15\xb8\x40\xab\xfb\x27\x1d\xa7\xc6\x38\xb1\x9b\x34\xf5\x6d\x33\x59\xa3\x6e\x89\xa6\xc0\x05\x06\x79\x13\xb3\x19\x26\xda\x8c\xff\xe4\xba\x88\x6c\x06\x80\x02\x83\x83\x7f\xd9\xba\xbd\xd1\x6d\x3a\x2b\x61\x33\xc2\x13\x18\x05\x29\xd8\x94\xc1\x4d\xb7\x22\x47\xe3\xb3\xe9\x56\x04\x6a\x75\xaa\x29\x83\x81\x51\x86\xff\xcc\x76\x2a\x83\xb9\x07\x22\x9b\x32\x18\x28\xca\x95\xa6\x0c\x6e\xea\xdb\xe5\x02\xa0\xbe\x05\x06\xa7\x19\xb3\xa9\x6f\x81\xfa\xaf\xc8\x16\x0c\xc7\x93\x5e\xd3\x11\x08\x54\xfd\xa2\x4d\x3f\x60\x33\xe8\x73\xb1\x55\x34\x1d\x81\xcd\xa0\x4f\xd7\x09\x1d\x81\xcd\x30\xcd\xe5\x47\xab\x32\x06\xaa\x1b\x7f\x53\x19\xb7\x61\x7f\x5b\x0d\xfb\xdb\xc8\x4d\x6e\x8b\xc8\x66\xe4\x26\x30\x8a\x5f\x81\xfa\x19\x18\x24\x9b\xcc\xa6\x7e\x06\x86\xde\xd3\xa6\xf3\x0f\x28\x9c\x6d\xca\xa6\xf3\x0f\xf8\xfe\x3f\xff\x6c\xda\xa8\x0f\x9a\xb6\xf3\xa6\xf0\x06\xea\x0f\x36\xdf\x14\xde\xc0\x28\xd3\x22\x87\x6e\xb2\x68\xb2\xef\x37\x75\x37\xd0\x49\x9d\x96\x4d\xd9\x0d\x8c\xc2\x1e\xdf\x94\xdd\xc0\x28\xec\x91\x4d\x0f\x21\x30\xc8\x6e\x99\x4d\x21\x0e\xf4\xea\x64\x51\x88\x03\xa3\x60\x12\x6c\xfa\x07\xdb\xa4\x77\xc2\x5f\xb4\x77\x3e\xe8\x06\x1a\x34\x75\x78\x53\x28\x93\x97\x39\x9b\x42\x19\x28\x46\x32\x34\x85\x32\x30\xb8\x73\x3b\x9b\x3a\xb9\x99\x3f\x7e\xb9\x31\xa9\x8a\x81\x51\xb0\x5a\x35\xfd\x77\xc0\x28\xf0\xf4\xa6\x4e\x06\x46\x71\x93\x53\x27\x37\x0f\xd1\x2d\xd7\x42\x85\x2c\x30\x34\x8b\x35\x43\x39\x81\xf6\x73\x7e\x1a\xca\xd9\x8c\xdb\x5c\x2e\x1b\x6a\x5b\xa0\x1a\x25\xdb\x94\xb6\x40\x92\xd5\x3f\x9b\xda\xb5\x79\x12\x6e\xb9\x46\xe4\xae\x07\x31\x6b\x2e\xa2\xaa\xd2\xb6\x8a\x8f\xf1\xa3\xea\x4d\x60\x78\xac\xa3\xa9\x37\x81\x51\xe0\x06\xcd\x50\xce\x66\x28\xe7\x1a\xff\x9d\xed\x24\x9b\x91\x9e\x40\xca\x05\x9b\xa2\xb5\xe9\xf1\x5b\x2e\x04\xaa\xd6\xa6\x6a\x75\x87\x54\xb5\x36\xd3\xc0\x2c\xe7\xb9\xee\x3d\x60\xec\x2d\x5e\xd5\x0a\x0c\x99\x77\x53\xb5\x36\xc3\x3a\x97\xab\xa0\xb2\x15\x18\x7b\x09\x59\xbb\x1f\x5c\xf1\x5c\x3f\x95\xad\xc0\xd0\xe9\xd2\x54\xad\xcd\x3c\x96\xcb\xc9\xaf\x6c\x05\xf2\xe7\x0f\xe8\x05\x6c\x9e\xb1\x33\x58\xb2\x29\x48\x81\xf5\x73\x49\x55\x8f\x02\xa3\xb8\x53\xab\x47\x9b\x7a\x34\xfd\xff\x0e\xae\x7a\x14\x22\xdf\xd4\xa3\x40\xd5\xa4\xd2\xd4\xa3\xed\xd8\x0d\xa0\x51\x0a\xcb\xa6\xb0\x44\xe8\x34\x85\x25\x50\x0d\x48\x6c\x0a\x4b\xa0\x1a\x79\xd3\xd4\x95\x4d\x11\x09\xb1\x6c\x8a\x48\xa0\xc4\xda\xff\xcc\xf1\x3c\x59\x09\xd2\x22\x5b\x79\x92\xaa\xc6\x45\x5c\x5d\xd9\xd4\x95\xf2\x22\x75\x25\xd0\xab\x7c\x44\x5d\x09\x0c\x6e\x8d\xcb\xa6\xac\x6c\x06\x67\x2e\xbf\x4b\x75\x25\x30\x8a\xac\x45\x59\x09\x54\xfd\x71\x4d\x59\xd9\x4e\x3b\xc3\x06\xe8\x64\x04\x46\x75\xaf\x52\x56\x36\x65\xa5\xdc\x46\x59\xd9\x3c\xa0\xa7\x8a\x6f\x6a\x48\x60\x70\xa4\x2e\x9b\x1e\xc5\xa6\xac\x5c\xce\x34\x65\x25\x50\x72\xff\x80\x4d\x57\x43\x2e\xbf\x72\x35\x24\x50\x9b\x74\x41\x0d\xd9\x74\x29\x2e\x3b\x52\x97\x22\x50\xb5\xd4\x37\x75\x65\xd3\x7f\xb8\x9c\x1c\xaa\x48\xa0\x90\x90\x3d\x9b\x2a\xb2\x79\x40\x6f\xd9\xe1\x8a\x41\x60\x54\x19\x8f\x62\xb0\x19\xa8\xe9\x51\xa1\xa6\x1a\x04\x06\xa9\x61\xb3\x29\x06\x9b\xde\xc8\xe5\xc0\xa8\x06\x9b\x6a\x70\xf9\x03\x8e\xa8\xa9\xf3\x97\x03\xa3\xf4\x03\xca\x5e\xa3\x95\x7e\xc0\xd8\xfc\x46\xe5\xd7\x74\x50\x6a\x3d\x68\x4a\x3f\x60\x54\x99\x97\xd2\x0f\x28\x9b\x4a\x2b\xfd\x80\x51\x8b\x4f\x39\x7c\x1e\xf7\xd3\x63\xde\x14\x75\xc0\x28\xfe\x7f\x45\x5d\xf3\x6c\xdf\x92\x28\xea\x8d\x04\xda\x4f\xe2\xa2\x33\x12\x18\x1c\x83\xcb\xa6\xa8\x6b\x28\xb8\xd4\x1c\xdb\x54\x70\x40\xfe\x9c\x1f\x2a\x38\x60\xec\x4d\x4c\x01\x07\x54\xae\x54\xcf\xa6\x80\x6b\x5e\xce\x24\x91\xd6\x3d\xd9\x08\x88\xcc\xdf\xcf\x32\xbb\xfb\x53\x61\xa3\xca\xd9\x54\x61\x8d\xeb\x69\xf3\xb7\xcb\xec\xdb\x0f\x46\xfd\x59\x64\xdf\xbe\x4a\x68\xaa\xd6\x55\x61\xc0\x57\x36\x28\x2b\x96\xf9\x21\xf8\x58\xb5\xa8\xfa\xd8\xa4\xac\x59\xd6\xf8\x85\x45\x51\xb7\x08\x67\x1a\xbb\x69\x57\x67\x01\xdf\x9b\x41\xd9\xb4\xcc\x89\xe5\x6f\x86\x45\xae\x87\x95\xa2\xb4\x68\xf9\x66\x52\x76\x58\xe6\x0d\xd3\xfe\xb3\xd3\x22\x16\xfe\xe5\x53\x97\x45\x64\xe3\x99\xfe\xff\xdb\xa2\x1b\xed\x6a\xd1\x63\xd1\x83\xe1\xc7\x66\xbe\x16\x39\xd3\xf8\x5f\xea\x2c\xa0\xe4\xcf\x36\xa9\xb3\x80\x41\x32\xe4\xec\xea\xac\x5e\x1c\x29\x3e\xbd\xae\x5a\x02\x86\x47\x36\xba\x41\x8c\x9d\xd3\x77\xde\xb8\x9f\x5d\x69\x04\x0c\x12\x66\x64\x57\x1a\x01\x75\x2e\xff\x99\xb5\xe5\x8a\xd9\x34\x3a\xb9\xeb\x0d\xec\x15\xc9\x80\xd9\xb7\x57\xbb\xb6\xd2\xb5\x0e\xa7\x9a\x0a\x68\xdc\xf9\x95\x5d\x4d\x05\xb4\x9a\x7f\x30\x7e\x77\x25\x57\xaf\x56\x1c\x71\xdc\xd5\x57\x40\x1a\xa2\xdf\xd5\x57\xbd\xd9\x5b\x10\xa5\xae\x4a\x02\x46\x45\x95\x76\x55\x52\xe7\x4c\x5c\x92\x7b\x29\xbb\xfa\x07\x58\xa4\x16\xcc\xae\xfe\xe9\xcd\x4e\x85\x7b\x74\xc5\x0e\x30\xc8\xa1\x94\x5d\xb1\xd3\x9b\x75\x63\xcf\xea\xca\x18\x60\x70\x6b\x46\xf6\xb6\xeb\x66\xa7\x5a\x35\x3b\xb5\x3b\x39\xa1\xd5\x5d\x2d\x02\x8c\xca\x6e\xda\xd5\x22\x1d\xe1\xe1\x95\x10\xd9\x15\x1e\x40\x86\x1d\xad\xf0\xe8\xa6\xf0\x70\xef\xef\x4a\x0a\x60\xe8\xdb\xe8\x4a\x0a\x60\xed\x81\x54\x52\x74\x92\x73\xa4\x67\x68\xba\x21\x82\x40\x37\x72\xbe\xeb\x7e\x03\xca\x76\x1b\x75\xfd\x6f\xc0\xa8\xce\xbb\xb1\xeb\xc1\x42\xe5\x8c\x55\x65\x74\x6f\x97\x0a\x9f\xb2\x87\x10\x1e\xd5\xaf\x4b\xe1\xd1\xa7\x0d\xf0\x93\x50\x3f\x00\xcd\x2d\xbc\xab\x1f\x80\xef\x31\x06\x5e\xfd\x00\x14\xdd\x01\x5d\xfd\x00\x2c\x8f\xae\x75\xf5\x03\xf0\xbd\xc9\x8f\x2a\x20\x80\x1c\xac\xd1\x5d\x01\xd1\xe7\x6e\x27\x6d\x57\x2e\x00\xa3\xda\x6b\xca\x05\xa0\xa4\xf1\xcb\x5d\xbd\x00\x14\x79\x4f\x57\x2f\x00\x5d\x27\x5d\x9f\xbb\xa1\x2c\x8e\xae\x06\xba\xf2\x80\xef\x9f\xd1\xb7\x6a\x08\x60\x69\x3b\xe9\x6a\x08\xe0\x7b\x8c\x2e\xfa\x3f\xc6\xce\xe4\x68\x7a\x96\x59\xa2\xae\x5c\x13\x9a\xb1\xa8\xcd\xef\x8b\x46\xff\x4d\xb8\xa1\x73\x78\xd7\xdf\xb3\xca\x08\x42\xdd\x02\x84\x50\x66\x4d\xe8\xcc\x03\x0a\xa5\x05\x57\xd7\x99\x07\x7c\x97\x31\x6d\x7a\xf3\x80\x41\xcd\xf0\xd5\xf5\xe6\x01\xdf\x65\x74\x44\x77\x1e\x50\x3b\xea\xa9\x9b\xcf\x06\x0c\xad\x7d\x5d\xdd\x02\x2c\x6d\x71\x5d\xdd\x02\x0c\x13\x8f\xba\xba\x05\xf8\xfe\x9f\xc7\xa2\x83\x0f\x18\xb5\x7a\x4b\x27\x0d\xa7\xdc\xfa\xf9\x26\xeb\x94\x03\x4a\xc7\x86\xd3\x75\xca\xf5\xe5\x2a\xe5\xdb\xd9\x95\x24\x7d\x79\x53\xc6\xae\x22\x01\x06\x75\xdb\x56\x57\x91\x00\xdf\x2f\x79\x06\x6b\xdf\xf4\x63\xad\xf2\xe9\xae\x3b\x0d\x18\x15\xee\xd6\xf5\xa6\x75\x8f\x58\xd5\x43\xd5\x15\x2e\xc0\xa8\xee\x14\x0a\x97\x4e\xc2\xd9\xd2\x27\xd3\x55\x29\x40\xfe\xdc\xf7\x54\x29\x40\xfe\xbc\x41\x3a\xdd\xf8\xce\x96\xc6\xfe\xae\x0c\x01\x86\x71\x4d\x5d\x15\x02\x7c\x97\xd1\x5d\x65\x08\x50\x8d\xad\xe9\x3a\xcf\x3a\xce\xb3\xa5\x8f\xad\x2b\x43\x80\x66\xfc\x7c\x57\x86\x74\x5c\x60\x4b\x57\x50\x57\x4c\x00\xa3\xba\xd7\xa9\x25\x3a\xe5\x34\x96\xfe\xa8\xae\xc7\x08\xe8\x46\x27\x75\x89\x7d\xc7\x3d\xb4\xb4\x52\x76\x69\x3c\xd0\x38\xe1\x6b\x75\x69\x3c\xf0\x5d\xc6\x43\xd0\x3f\x04\x0c\xb3\x16\xbb\xd4\xbe\x9f\x12\x57\x37\x40\x49\x7b\xb7\x80\x22\x34\xa7\x4b\xda\x81\x41\xdd\xf0\xd5\x25\xed\xc0\xe0\x10\x9b\xd5\x25\xed\x40\x59\x1a\x83\xbb\xa4\x1d\x88\xf0\xc1\x4b\xda\x81\xa1\xc5\xa0\x4b\xda\x81\xef\x97\x8c\x5d\x67\x10\x30\xaa\x33\x29\x8f\x07\x52\x4f\x41\x97\xc7\x03\xc3\xd8\xb2\x2e\x8f\xef\x97\x43\xf7\x75\xd1\x3d\x04\xf4\x9f\xef\x81\xd4\xbe\x5f\x3e\xe4\xfd\x53\xc7\x79\x61\x49\xf3\x0b\x21\x67\x07\x46\xc5\x4c\xd4\xe5\xec\x40\xa4\xbb\xa4\x94\x1d\xf8\x04\x00\x83\x92\xb3\x03\x43\xa5\xd3\xf5\x05\x75\x28\xfb\xd2\x32\xda\xe5\xec\xc0\xd8\xdf\x75\x1d\x3f\x40\x1b\xe3\xbf\xcf\xea\x58\x5d\xbf\x10\xf0\xfd\x31\xb3\xa5\x63\x08\x18\x75\xdf\xcb\x69\x80\xf8\x2f\x0d\x25\x5d\xe2\x0f\x94\xbd\x4b\x4b\xfc\xfb\xbd\x47\xc3\xd4\x48\xdf\x81\xda\xa5\x59\xd2\x77\xa0\x2c\x2d\xa7\x5d\xfa\x0e\xd4\xbd\x6b\x48\xdf\x81\x41\x25\xd2\xd5\xa5\xef\xfd\xb1\xbb\x98\x1e\xba\x6e\x1a\x60\xec\xb9\xd7\x4d\x03\x7c\x97\xf9\x53\x1f\x1b\x94\x5e\xfb\x67\x97\xd2\x03\xa3\x4a\x43\xf4\xd3\xf4\xc7\xa5\xe8\x2b\xa1\x07\x06\xa8\xca\x94\x6e\xe0\x20\x50\x96\x76\xd2\x6e\xe4\x20\xb0\xe4\xef\x5d\x96\x0f\xe4\xa6\xd2\xb2\xfc\x2e\xcb\xb7\x67\xb2\xfc\xfe\x7a\x4f\x04\x76\xd7\x17\x02\x8c\xba\x9b\xbc\xe7\x07\xb9\x29\xa6\x5c\x1d\x28\x4b\x2b\x54\x37\x0c\x10\x18\xa6\xe8\x0e\xe9\xfb\xf8\x79\x03\xa4\xed\x90\xfd\x02\x43\x53\xde\x90\xfd\x0e\x49\xac\xc6\xaa\x21\x89\x1d\x66\xfa\xb0\xef\x0d\x49\x2c\x50\x96\xb2\x7b\x18\x33\x07\x54\xca\xd8\xad\xa1\xff\x00\x48\x0e\x83\x5f\xc3\x90\xb9\x51\xdc\x45\x99\xc9\xa1\xff\x00\xe8\xd4\x5a\x59\x43\x46\x3c\xf0\x1f\x2c\xa5\xc5\xd0\x7f\x00\x34\x23\xda\x86\xfe\x83\x51\x7c\x06\x70\x82\x21\xff\x05\xf2\xd7\xbd\xc1\x6b\x13\xf3\x81\x0d\x7a\x18\x46\x07\x7c\xbf\x5c\xb4\x39\x50\x6a\x54\x70\xf2\xcd\x1a\x96\xa8\x00\xbe\xcb\x18\x82\x35\x2a\x80\x65\x90\xc6\x90\x5f\x0f\x8e\x40\x5d\x8a\xa8\x21\xc1\x06\x52\x21\x34\x24\xd8\x03\x77\xc4\x92\xc1\x0f\xdd\x11\x40\xd5\x9f\x32\xa4\xcb\x40\xa3\x36\xd2\x1a\xd2\x65\x60\x71\x7e\xcc\x1a\xba\x23\x06\x36\xff\xa5\x38\x1f\x1a\xfd\x81\xa6\xda\x1d\xd2\xe0\x21\x0d\x66\xc3\x19\xd2\x60\x60\x70\x72\xc1\x1a\xda\xfc\x81\xa1\x5d\x7d\x68\xf3\x07\x86\xde\xa5\x21\x57\x06\x92\xaf\xdd\x90\x2a\x03\x45\xfe\x35\xa4\xca\x83\x52\xeb\x3b\xb5\x7f\x68\xf1\x07\x92\x23\x3a\xd7\xb0\x08\x04\xf0\x5d\xc6\x2d\x75\x02\x00\x83\x13\x60\xd6\xd0\x09\x30\x24\xde\xf2\xe2\x21\xf1\x06\x52\xe9\x30\x24\xde\x40\xf1\x08\xd7\x35\xf4\x02\x00\x83\xea\x7c\x6b\xc8\xc5\x81\xaa\x99\x6c\xc8\xc5\x81\x56\x7d\x2f\x0c\x85\x1b\x24\x0d\x2d\x09\xd8\xe8\x7b\x54\xac\xaa\xfd\xff\xae\xaa\x61\xb2\x36\x1f\x86\x21\x65\x1f\x52\x76\xbe\x9c\x43\xca\x0e\xa4\x8e\x81\xa1\x13\x00\x28\x1e\xd5\xb7\x86\x5e\x00\x20\xd5\x9d\xc3\x74\x20\x60\x70\xd4\xd3\x1a\x72\x7d\xe0\xfb\xa5\x6d\x8e\x73\x70\x4c\x83\x33\x24\xd7\x1f\x72\x7d\x88\xe6\x90\xeb\x8f\xe1\xa0\xe0\xc5\x43\x5f\x01\x30\x38\x08\x65\x0d\x7d\x05\x63\x3a\x28\x3e\x80\x43\x1a\x0f\xe4\x8f\xef\xd3\x90\xc5\x03\xdf\x65\xfc\x54\x1a\x0f\x0c\xc3\x6d\x87\x34\x7e\x4c\xbb\xcb\x07\x6a\x68\xe1\x07\x06\x07\x4d\xac\x21\x65\x07\x76\xc8\xc4\x90\xb2\x03\xcb\x04\xcf\x21\x63\x1f\xe4\xfb\x2c\x3f\x4a\x43\x7e\x0e\x2c\x53\xdb\x86\xfc\x7c\x84\x23\xe0\x73\x36\x64\xd9\xc0\xa8\xbe\xd9\x92\x6c\xe0\xbb\x8c\x11\xc8\xb2\x81\xde\x9c\x0f\x49\xf6\x08\xdf\x32\x88\xcf\x90\x52\x03\x49\xa5\xdf\x35\xa4\xd4\x40\xf1\x1c\xdd\x35\xe4\xd4\xc0\xe0\xdc\x8a\x35\xa4\xd4\x43\x4a\x3d\xfd\x33\x47\x85\x77\xa0\xfe\xe1\x24\xcc\x35\x74\x1e\x8c\xf0\x49\x3a\xe8\xd8\x83\xe6\xb0\x52\xf7\x1f\x63\xea\xc6\x72\x80\x7c\x27\x87\x91\x71\x40\x51\x0c\x0c\x1d\x0a\xc0\xa8\xee\xaa\x3a\x14\x86\xf4\x7d\xef\x06\xd2\x77\x60\x70\xda\xce\x1a\xc6\xcf\x01\xf9\xf3\x2d\x91\xd1\x03\xdf\x2f\x59\x8b\x52\x7a\x60\x99\x12\x3e\x64\xf4\x40\x59\x7b\x6f\x91\xd2\x03\xc9\x59\x87\x6b\x48\xe9\x07\x49\x42\x6b\x7f\xc7\xd6\x1e\x15\x5b\x39\x9c\x70\x18\x0e\x07\x7c\x97\x31\x50\xc3\xe1\x80\x34\xca\x67\xe8\x9e\x18\xe9\x7c\xb8\x1f\x48\xf3\x81\xd5\x31\x87\x0d\x69\xfe\x48\xf7\x68\x97\xb1\x2e\x03\xa0\xff\x5c\x2a\x72\x75\x60\x18\xf2\x31\xe4\xea\x23\xed\x2e\xa2\x7b\xe8\x1f\x00\x72\x4f\xb8\xee\x81\x71\xd8\x0f\x77\x1c\xc3\xd5\x80\xc1\xc9\x19\x6b\x18\xae\x06\x7c\x97\x31\x21\xc6\xab\x01\x5b\xc6\x0e\xdd\x03\xc0\x77\x19\x1d\xd1\x3f\x00\x8c\x7f\x37\xf0\xc1\x90\xfe\xd3\xa1\x1c\x43\xff\x00\xd0\xb4\x58\x0f\xfd\x03\xe3\x70\x65\xb9\x18\x8c\x45\x03\xc6\xbf\x6e\x38\x28\x62\xd1\xba\x4f\x4f\x65\x01\x8c\xea\xc6\xaa\xcb\x60\x9c\xae\xa2\xdd\x66\x6f\x09\x1f\xab\x7e\xe9\x55\x0c\xc0\x77\x19\x03\x50\x32\x0c\x25\x83\xe3\x54\x32\x00\xf9\xab\xfe\x99\xbd\xbd\x7c\xee\x92\x10\x29\xfd\x90\xd2\x23\x93\x87\x94\x7e\xc8\xd5\xab\xdf\x6b\xb9\x3a\x50\xf7\x5e\x28\x57\x1f\xb2\x70\xce\x68\x58\x43\x16\x0e\x2c\x9d\x6d\x43\x16\x0e\xa4\x66\xb9\xa1\x2d\x1d\x28\xfb\xa3\x22\x2f\x07\xaa\x81\xd3\x43\x5e\x3e\x64\xd9\xcd\xcf\xb5\x2c\x7b\xc8\xb2\xd1\xfe\x43\x96\x0d\x7c\x97\x31\xdf\x9a\xdc\x81\xaa\x4f\x71\x48\xbc\x07\x76\xf3\xd5\xfc\xaa\x68\x37\x07\x46\x95\xba\x49\xbc\x81\xb5\x39\x99\xc4\x7b\x90\x8a\xb3\x9a\x9f\x67\xb9\x32\xd0\xcc\xab\x1e\x52\x65\x60\x19\x4c\x3d\xa4\xca\x03\xeb\xf7\x6a\x7e\x03\xb5\x7e\x03\xc5\xaa\x07\x43\xeb\x37\x90\x3f\x59\x82\xd6\xef\xf1\x7a\x4f\x1c\xe1\xc3\x88\x23\x60\x19\x1e\x3f\x8c\x38\x02\xca\x32\xa3\x65\x98\xfc\x0f\xa4\x06\xeb\x61\x10\xd2\x78\xed\x87\x2f\x95\x11\x47\x40\x84\x64\x42\x5b\x37\x90\xfb\xa5\x7d\x77\x3f\x08\xcc\xc5\x71\x33\x24\xd9\x43\xfa\x6c\x92\xcb\x90\x3e\x0f\xe9\x33\x46\x8e\x29\x7d\x9e\x3f\x47\xc0\x33\x98\xda\xb0\x81\xd4\x98\x38\xb5\x61\x03\xc3\xb5\x3c\x35\x61\x03\x7b\x2f\x9d\x9a\xb0\x81\x65\x11\x8b\xa9\x09\x7b\x52\x8c\x6e\x19\x0c\x3c\xb5\x57\x03\xcb\xdc\xff\x29\x63\x9f\xd2\x73\xc3\xfa\xa6\xf4\x7c\x4a\xcf\x79\x2a\x53\x7a\x3e\x8b\x13\x39\x6c\xb3\x1f\x05\x32\x91\x36\xd9\x0f\x49\xb6\xf1\xf7\x53\x92\x0d\xe4\x8f\xef\xd8\x94\x64\x4f\x49\x76\x73\x08\x92\xec\xb9\x49\xb6\xfd\x60\xd6\x26\xec\x79\x71\xe4\xc6\x9a\xd2\x67\x20\xf5\x19\x4c\xd9\xf3\x24\x98\x67\x51\xe2\x74\x4d\x79\x31\x30\x38\x81\x69\x4d\x0d\xcf\xc0\x77\x99\x6d\x69\x1b\xdb\x02\xef\xfb\x34\x57\x65\x56\xdf\x5a\x22\x01\xa6\x5c\x19\x58\x3a\x0e\xa7\x5c\x79\x6a\x1f\xa6\x0a\xfb\x9a\x12\x63\xa0\x77\x67\x5c\x62\x0c\x94\x65\x20\xe2\x94\x19\x03\xf9\xdb\x97\x39\x21\x9a\x91\xdb\x5f\xac\xe2\x53\xe6\x3c\xb5\x32\xa7\x7f\x6c\x37\x9b\x2b\x8f\xb7\x7f\x9a\x0d\x02\xec\xbd\x70\x1a\x3f\x33\xbb\x23\xe4\xb5\x9e\x66\xb5\x4f\xeb\x90\xf1\x49\x9d\xf2\x53\xa0\x24\xdf\xe7\x29\x3f\x05\xea\xe4\x45\x9c\x86\xb2\x00\x35\xab\x4d\x2e\x9f\x81\x7f\x09\xce\x3d\x25\xb1\x73\xb8\xd8\xd3\xcb\x5c\xec\x83\xf2\x83\x90\x89\x29\x63\x05\x76\x80\xfe\x94\xb1\x4e\x42\x59\x16\x47\x2c\xae\x29\xf1\x04\xba\x9a\x75\x6a\x64\x06\xbe\xcb\xe8\xad\x56\x66\x60\x49\x0b\xa7\x56\xe6\x29\x65\xed\x6c\x99\x53\xca\x0a\xf4\xbd\x06\xa4\xac\xc0\xfa\x21\xaa\xa6\xe1\x2d\x53\x16\xdb\xd9\x97\xa6\x2c\x16\x98\x96\x5e\x9c\xb2\xd8\x39\xa7\x97\xd9\xe6\x5a\xfc\x60\x19\x34\x32\x65\xac\x53\xf3\xb1\xc1\x9c\x53\x32\x0a\x94\xfd\x3a\x69\x3e\x06\xc2\x40\xa4\x29\x3d\x05\x8a\xb5\x34\xd7\x94\x9f\x02\xa1\x5d\x62\x6a\x3e\x9e\xda\x8a\x4d\xbc\x9f\xda\x8a\x81\x66\x91\xa4\x29\x8b\x9d\x92\xcc\x0e\xd3\x9f\x92\x4c\xa0\x18\xae\x31\x25\x99\x80\x87\xc6\xae\x29\xc9\x04\xc2\x70\x9f\x29\x8b\x04\xc2\xa0\xbd\x69\x08\x0a\xd0\x4c\x5e\x9c\xf2\x4a\xa0\x19\xb5\x39\x63\x77\xf6\xe5\x87\x74\xcc\x5c\x0d\xa0\x51\x70\x7b\x4d\xb3\xca\x81\xae\x8f\x7f\x6a\x28\x06\x6a\xf8\x4c\x34\x14\x4f\xf9\xa2\x75\x39\xa7\x7c\x11\x68\x14\x9d\x5e\x53\xbe\x08\x84\xc6\x91\x29\x5d\x04\x8a\x46\xb9\x29\x5d\x04\x42\x7b\xcc\xd4\x00\x3c\xb5\xf6\x76\xbe\x28\x53\x6b\x2f\x10\xfb\x01\x4b\x03\x81\xef\x32\xdb\x5c\xdd\xc4\xa9\x68\x2f\x99\xc6\xa1\x4c\x6d\xb6\xdd\x8f\x80\x3c\x10\xe8\xbf\x7d\x99\xfd\x48\xfb\x61\x93\xfd\x38\xec\x87\x53\x6b\xb0\x07\x10\xc6\x3e\x4e\x69\x20\xd0\xf7\x33\x97\x06\xce\xc3\x25\xea\x03\x96\xf3\x01\x61\x8c\xd4\x94\xf2\x01\x61\xb8\xe2\x94\xf2\x01\x9e\x00\xbc\xa6\x94\x0f\x08\x23\xa9\xa6\x94\x0f\xf8\xfe\x9f\xb9\x35\x26\x04\x08\x23\xb5\xa6\x39\x0a\x53\x03\xb3\x49\x92\x53\x1a\x08\x84\x2e\xd6\x29\x0d\x04\x62\x4f\x9a\x34\x10\x08\xad\xf7\x53\x93\xf3\xd4\xbe\x2c\x1b\x9d\xda\x97\x01\x4f\xf8\x5d\x53\xfb\x32\x10\x86\xa1\x4c\x23\x47\x80\x30\x34\x60\x4a\x29\xe7\xe9\x12\x72\xb9\x4b\x16\x01\x4f\x15\x5e\x53\xb2\x38\x09\xed\x58\x92\xd6\xa9\x49\x18\xe8\xd3\x8d\x43\xfe\x38\xb5\xff\x6a\xaa\x9c\xda\x7f\x01\x0f\x44\x5e\x53\xfb\x2f\xf0\x5d\xc6\x82\x31\xb6\x03\x68\x9a\xc4\xa6\xa1\x1d\x40\x33\xf5\x6e\x1a\xda\x31\x65\xa3\xdd\xc7\x22\x1b\x05\xc2\x28\xa9\x29\x1b\x05\x8a\x05\x07\xa6\x96\x63\xa0\x74\x57\xbc\x96\xe3\x79\xb9\xbd\x38\x1f\x12\x54\x20\x34\x07\x4e\x09\x2a\x10\x86\x37\x4d\x09\x2a\x10\x9a\xf9\xa6\x04\x15\xf0\x38\xe2\x35\xb5\x0c\xcf\xdb\xd9\xf0\x11\x48\x50\x81\xaa\x85\x63\xca\x4f\x27\xb1\x1e\x9e\xf8\xbd\xa6\xb1\x1e\x40\x68\xe6\x9b\xc6\x7a\x00\x2d\x1c\x80\x89\xe7\xc0\xf7\x4b\x1e\x9e\xc9\x00\x40\x1f\xbb\x6b\x8e\xf3\xde\xe3\xf4\xa6\x8e\x93\xc3\x4d\x0d\xc6\x9a\xda\x8f\x81\xd8\x4f\x40\xfb\xf1\x94\xed\xf6\xf5\x87\xa8\xf0\x29\x19\x9e\xc6\x82\x38\x81\x92\xe1\x29\xf3\xed\x7e\xaa\x65\xbe\x40\x18\xc2\x37\x65\xbe\x93\xd3\x6b\x76\xa9\xce\xa9\x95\x18\xf0\xc8\xe8\x35\x35\x12\x03\x35\xfc\x20\x6a\x24\x06\xca\xea\x4e\x97\x56\x62\xa0\xef\x31\x6b\x25\x9e\x2f\x85\x45\xdd\x54\x0d\xfc\x00\x62\x93\x1d\x99\x35\x10\x86\x87\x4d\x99\xf5\x34\x3c\xa4\xfb\x70\x0d\x0f\x01\x3c\x30\x7a\x4d\x59\x34\xd0\xb5\x93\x4e\x59\xf4\xb4\x5c\x96\x73\x2a\x8b\x9e\xaf\x4f\x63\xff\xd2\x31\x41\xa3\xcd\x1a\x99\xb2\xe8\xf9\xee\x31\x7d\x03\x08\x69\x34\xd0\xa8\x4f\xbe\xc2\x18\x12\xe0\xbb\x2c\x69\xab\xb6\x11\xe0\xc2\x4b\x18\xc6\x90\x00\x9e\x82\xbd\x42\xfe\x1d\x06\x8c\x68\xf4\x08\xd9\x36\x90\xd6\x32\x09\xd9\x36\x10\xc6\xf1\x84\x6c\x1b\xf0\xc4\xeb\x15\x46\xe6\x03\x51\x76\x2f\x0e\x9b\xd8\x45\xd2\xff\x3a\x6d\xba\xbc\x65\xa5\xed\xb6\x8d\x27\xbc\x87\xc9\x6c\x04\x59\xe6\x6b\x60\x32\x0f\x39\x39\xd0\xcd\x83\x0c\x2d\xe6\x40\x18\xb0\x18\x5a\xcc\x81\xef\x97\xfc\x9b\x26\x73\xa0\x59\x55\x24\x24\xf3\xa1\x15\x5d\x32\x13\xb2\x79\xa0\xad\x7d\x99\xe3\xa4\xce\xb3\x75\x10\xc3\xb8\x92\x90\xf3\x5b\xf8\x33\xe4\xfc\x40\x18\x65\x13\x72\xfe\x30\xfc\xc4\x7a\x95\x61\xf8\x09\x50\x4d\x15\x0f\xc3\x4f\x42\x69\x60\x41\xcc\x28\x7b\xf0\x0f\xff\x66\x13\x4b\x21\x34\xb6\x5b\xd2\x33\x34\xb6\x03\x95\x33\x1d\x3e\x81\x6a\x13\xa7\xae\x60\xf3\x0b\xd5\x02\x10\xda\xd5\x43\x5b\x3b\xf0\xfd\x19\xdd\xb5\x44\x34\x10\xc6\x7a\x84\xe6\xf7\x50\x40\x18\x68\x10\x0a\x08\x20\x8c\x88\x0a\x05\x44\xd4\x3d\x02\x66\x52\xb5\x00\x78\x84\xf9\x0a\xe3\xfc\xc3\x70\x15\x4b\xb8\x85\xe1\x2a\x40\x18\xd6\x14\x86\xab\x04\x55\x9d\x77\x29\xda\x30\x82\x1f\x08\x43\x85\xc2\x08\x96\xd0\x74\x6f\x7a\x74\x68\xba\x07\xa2\x3a\xe1\x2a\x94\x20\xd3\x7c\x59\xc6\x30\xd4\x1e\x80\xa7\xb0\xaf\x50\x5b\x44\x73\x08\xb8\x4e\x43\x23\x3c\x10\xfa\x06\xa2\xed\x21\xbc\xdc\x80\xab\xd4\x16\xd1\xed\x07\x4a\x3a\xb4\xa4\x03\x5d\x23\x6b\x68\x48\x07\xc2\xb0\xba\xd0\x90\x0e\x94\x7f\x7f\xe6\x4c\x76\x97\xcc\xfe\xa5\x5d\xfb\x20\x0c\x30\x09\xb5\x4b\x68\x5c\xd7\xcb\x1d\x8a\x17\xa0\x19\xcc\x1b\x8a\x97\xa0\xae\xd6\xb2\xe0\x46\x68\x49\x07\x3c\xd8\x7c\x85\xb2\x24\xb4\xa4\x1b\x85\x1a\xea\x92\xf0\xa4\x54\x5f\x78\x75\x49\x18\x36\x63\xf5\xb4\xd0\x94\x0e\x54\x1d\x73\xa1\x25\x3d\x0c\x9b\xb1\x1c\x59\x68\x4a\x07\x3c\xa0\x7c\x85\x8a\x26\x28\xb6\xb5\x2c\x34\x16\x2a\x0e\xc0\x73\xe4\x57\x18\x10\x13\x46\xbf\x58\x61\x2b\x54\x1c\x40\x54\x0c\x21\xa1\xd9\x1c\xf0\x38\xf5\x15\x9a\xcd\x81\xd0\x3d\x10\x06\xbf\x00\x9f\x78\xa6\xc9\x01\x28\x2e\xac\x02\x15\x8a\x0b\x20\x74\x83\x84\xe2\x02\x28\xcb\x62\x4e\x61\x70\x0a\x10\x3a\x55\x42\xbd\x11\xda\xc3\xad\xab\x14\xda\xc3\x81\xc2\xb9\x02\x2b\xb4\x87\x03\x65\x8d\xdd\x66\xdf\xb0\x91\xef\x7d\x58\x13\x39\xf0\x5d\x46\x47\xb4\x91\x03\xcb\x3a\x9d\xa1\x7a\x89\x70\x85\x43\x30\x42\xad\x02\x44\x2d\x7f\x28\x8e\x12\x4a\x19\x20\xf4\xc3\x84\x52\x26\x82\x79\x70\x8f\x50\xb7\x84\xb1\x2b\x96\x23\x0a\x25\x09\x10\x86\xe8\x86\x92\x04\x08\x3d\x16\xa1\xd5\x1c\xc8\xc9\xc7\x33\xb4\x9a\x03\x1e\x17\xbf\x42\xab\x79\xac\x3d\x64\x26\x50\x13\x39\x10\x3a\x53\x42\x13\x79\xac\x3d\x64\xe6\x5e\x7d\x03\x84\xfe\xa6\x50\xdf\x00\x65\x59\xe3\x37\x14\x38\x40\xd3\xa0\x1f\x0a\x9c\x50\xe0\x58\xd0\x37\x14\x38\x40\xe8\x22\x0a\x05\x4e\x18\xbb\x62\x04\x5e\x18\xbb\x02\x84\x1e\x9c\x30\x76\x25\xd2\x15\xe5\x47\x2a\xf7\x1d\x9e\xff\xfd\xdf\xb2\xda\x40\x68\xd4\x06\xea\x72\xd6\x34\x6a\x87\x85\x8b\x87\x9f\x54\x83\x52\x80\x65\xa1\xa1\x50\xf3\x84\xd6\xea\xe1\xc7\x52\xe9\x02\x78\xb4\xff\x0a\xa5\x4b\x50\x7f\x78\x19\xf4\x1a\x0a\x15\x20\x74\xd4\x87\x3a\x05\x88\xbd\x55\xa9\x53\x80\x30\xa4\x23\x34\x60\x87\xd2\x65\xfa\x79\x53\xba\x00\xa1\xfd\x37\x94\x2e\x41\x9e\xf4\xbf\xe5\x69\x20\x0c\xe0\x31\xfb\x2b\xd4\x29\xc0\x77\x19\xfd\x50\xa8\x00\x61\x98\x47\x28\x54\x42\x55\x32\xfd\xd4\xa8\x4a\x80\xba\x97\x91\xaa\x04\x48\xab\x2f\x84\x41\x2f\x40\xd9\x9e\xaf\x30\xea\x05\xf0\xd0\xfe\x15\x46\xbd\x84\x7a\xc6\xd2\xa6\xa1\x9e\x01\x3c\x7a\x7f\x85\x7a\x26\xd4\x33\x56\x28\x0d\xf5\x0c\xb0\x2c\xd2\x10\xea\x99\x50\xcf\x18\x8f\x1b\xea\x19\x20\x0c\x9e\x0a\xf5\x4c\x18\xaa\x6e\xd1\xd2\x50\xd0\x00\x69\x21\xb7\x50\xcf\x00\xc5\xe3\x5f\x56\x28\x68\x80\x30\x52\x2a\x14\x34\x40\x18\x05\x14\x0a\x9a\x50\xd0\x58\xdb\x34\x14\x34\x40\x5a\x58\x2c\x14\x34\x41\xc2\xf3\x32\x81\x3d\x94\x2f\x40\xe8\xce\x0b\xe5\x0b\x10\x46\x89\x85\x16\x77\x20\x8c\x27\x09\x05\x4d\xa8\x41\x2c\x3e\x1a\x6a\x10\x20\xf4\xe6\x85\x1a\x24\x4c\x2b\x9e\xbe\xcb\xaa\x0b\x20\x0c\xa0\x08\xa3\x53\xc2\xe8\x94\xe9\xfe\x61\x74\x0a\x90\xd6\x72\x0f\x45\x46\x18\x9d\x32\xf1\xa9\x86\x2a\x03\x88\xba\x9b\x7c\x06\x8f\x33\xe9\x12\x57\x65\x00\xa1\xf7\x2f\xb4\xaf\x87\x11\x2b\x56\x1a\x0d\x23\x56\x80\x5d\xa5\x26\xd4\x22\x61\xc4\xca\x74\x1d\x29\x46\x80\xd8\x7b\x8a\x62\x04\x48\x63\x8a\x43\x2d\x12\x6f\xf1\x97\xfc\x9b\x51\xe8\x40\x2c\x57\x96\x62\x24\x34\xe0\x6b\x72\x0c\x0d\xf8\x40\x72\xf0\xee\x0a\x0d\xf8\xa1\x01\xdf\xb2\xa2\xa1\xf4\x00\xda\xfe\xd4\x28\x3d\x80\xef\x32\x66\x5c\xed\x01\x2c\x0b\xcf\x85\x16\xfc\x50\x8e\x4c\xac\x09\xa1\x1c\x01\xc2\x08\x87\x50\x8e\x84\x72\xc4\x12\x61\x4b\x39\xb2\x0c\x56\xb7\xe2\xee\x52\x68\x00\x9d\x03\x73\xd7\x52\x68\x00\x65\x4d\x2c\x4b\x4b\x4b\x3f\xb0\x82\x19\x5f\x6a\x8f\xb5\xb5\xc7\xa4\x29\x6c\xf2\xf9\x61\xb9\x5a\xca\x0a\x20\xea\xee\xc7\x69\x93\x7d\x43\xf0\x2c\xc3\xc9\x81\xb4\x8e\xe2\xd2\xd2\x0f\xe4\x4c\xaf\xaa\x36\x39\x02\xe6\x6d\x29\x2b\x80\x30\xbc\x68\x29\x2b\x96\xb2\x82\x43\xbe\xd7\x52\x56\x00\x4d\xaf\xe9\x52\x56\x00\x61\xac\xc8\x52\x55\xac\xe2\x43\xe0\x0b\xbd\x14\x07\x40\xe8\xd2\x58\x6a\x83\x55\xdc\x64\xe3\x0f\x59\x5d\x4b\x51\x00\x2c\x8d\x34\xcb\xa0\x9c\xa5\x4e\xb0\xf0\xe7\x52\x27\x00\xa1\x47\x79\xa9\x13\x80\x62\xb5\xa5\xa5\x4e\x00\xd2\xe2\x94\x4b\x9d\xb0\xa4\xec\x96\x07\x5d\x52\x76\x20\xac\xa2\xb1\xa4\xec\xc0\xb4\x62\xd2\x32\x0d\x77\x35\x97\xb1\x73\x6f\x84\x39\xb0\x0b\x82\x2d\x19\xfb\x6a\x2e\x63\x76\xef\xa5\x07\x01\x08\x1d\xdb\x4b\x07\xc2\x92\xc5\x5b\xc3\x72\xc9\xe2\x81\xd5\x8a\x97\x39\x83\x8d\x8f\x99\x6b\x4c\x0f\xc1\x6a\x2e\x0b\x44\xe9\x92\xb2\x03\xdd\x38\xf4\x65\x70\xcd\xa2\x84\xd4\xe2\x4c\xe1\xb5\x0c\x9b\x59\x96\x90\x62\x17\x5a\x96\x90\x02\x9a\xe9\x3d\xcb\x40\x1a\x60\x2d\x57\x8a\xf4\x7f\x41\xec\x97\x35\x32\x97\xcc\x1e\xc8\xe5\x12\x30\x44\x66\x49\xf6\xad\x61\xb9\x24\xfb\x40\x33\x87\x66\x49\xf6\x81\x6e\x6d\x90\x25\xd7\x5f\x12\xfb\xe0\x03\xba\x24\xf6\xc0\x16\x9b\x4b\x62\x0f\xb4\xe5\xd0\xe5\xf5\x4b\x12\x6f\x55\xe4\x25\x89\x07\xaa\x3c\x6f\x49\xe2\x97\x24\xde\xaa\xaa\x4b\x12\x0f\x74\x0e\xa8\x5d\x4b\x12\x0f\x7c\x97\xf1\xe0\xf5\x4b\x00\x8b\xc3\x2a\xd7\xd2\x2d\x01\x7c\x97\x31\x50\xfd\x12\x40\xac\x7d\x03\x47\x65\x40\x7c\xc0\xa8\x97\xfc\x1f\x28\xe9\x16\xa1\x0f\x02\x18\x56\x37\x5f\x2a\x02\xa0\x6b\xa6\x5d\x2a\x02\x20\x8c\xaa\x5c\x2a\x02\xa0\xe8\xf1\x59\x2a\x82\x65\x6c\x8d\xce\xdd\xa5\xa7\x02\x28\x56\x15\x59\xc6\xd6\x00\x61\x84\xd6\x32\xb6\x66\xe9\xcf\xe0\x94\xc8\xb5\xf4\x67\x00\x4d\xdf\xee\xd2\x9f\x01\x94\xbd\x51\xe9\xcf\x58\x4a\x0e\x6d\x78\x6b\xee\xa1\x3f\x6c\x98\xde\xd3\x57\x5b\xc9\x11\xa8\x95\xa5\xe4\x00\x9a\x41\x7e\x4b\xc9\xb1\x8c\xd4\xb1\x42\xd1\xd2\xc7\x01\xc4\xcf\x97\xd6\x48\x9d\x65\x08\x8e\x19\xfb\x4b\x7d\x01\x74\x8f\x5a\x59\xca\x8b\xa5\x77\xc4\x84\xbe\xa5\xbe\x00\x96\x75\x86\x96\xde\x91\x15\x3e\xd0\xe6\x4f\x1d\xd6\x07\x61\x5c\xc5\xd2\xf1\x01\x84\x3e\xcf\xa5\x80\x00\xc2\xb8\xff\xa5\xe3\x03\xf8\xfe\x8c\x81\xea\xf9\x00\x7a\x43\x1a\x2c\x65\x06\x10\xa6\x02\x2c\x65\xc6\x32\x3a\xc7\x73\x43\x96\x3a\x03\x48\xb7\x18\x65\x06\x10\xcd\xcd\x4f\x99\xb1\x94\x19\xe1\xab\xad\xcc\x00\xc2\xda\xa8\x4b\x99\xb1\x94\x19\xd1\x6d\xf3\x19\x13\x76\xa3\x53\x6c\x29\x33\x96\x32\x43\x92\xbe\x94\x19\x40\x35\x63\x73\x29\x33\x56\xfa\xa4\x60\xc2\xcb\x78\x1a\xa0\x49\xe5\x97\xca\x63\xe1\x33\x59\x96\xfe\x5c\x3a\x4d\x80\xae\x0b\x78\xa9\x3c\x96\x7e\x94\x80\x5e\x2d\xfd\x28\x40\x0b\x44\xcb\xd2\x8f\xb2\xd4\x14\x16\x04\x5e\x6a\x0a\x20\xcc\x96\x58\x6a\x8a\x65\x3c\x4d\x38\x7a\x1d\x29\x40\xb7\x38\xfd\xd2\x91\xb2\xd4\x14\xe1\x06\xab\xa6\x00\xca\x6f\xff\xd2\x7e\x1c\x4e\x08\x32\x78\x1d\xbb\x23\x94\xfa\xdd\x4d\x4e\xc8\xe9\x83\xc7\x01\xb0\xf4\x74\x00\x65\x7f\x9e\xf5\x74\x2c\x63\x60\xf6\x67\x43\x87\x05\x10\x66\x5a\x2c\x63\x60\x96\xc1\xef\x46\xba\x2f\x75\x00\x10\x66\x5a\x2c\x65\xc0\x32\xe0\xc5\x08\xd8\x25\xc1\x07\x8a\xae\xb1\x65\xc0\x0b\x50\x35\xa0\x2f\x0b\xde\x2e\xd2\x53\x97\xb6\xbb\x25\xe7\x07\xfa\xc7\xe5\xff\xfb\x8b\xad\x22\x00\xc2\x1c\x94\xa5\x22\x58\xba\x33\x62\xdf\xcc\xa5\x87\x3b\xc3\x02\x7b\x4b\xf6\x0f\xa4\x65\x85\x97\xec\x7f\x49\xf5\x63\x5f\xe6\xac\xe2\xbb\xd0\x46\xba\xa4\xfa\xc0\xd2\x16\xb7\xf4\x5d\xac\xdb\x75\x01\x41\x5d\x52\x7d\xa0\x5b\xd2\x66\x49\xf5\x97\xce\x8b\xf0\x2b\x2e\xd7\x07\xba\xe6\xc4\xa5\xf3\x02\xe8\x96\x37\x5e\x06\xd7\x2c\xfd\x19\xba\x20\x97\xfe\x0c\x20\x0c\x6e\x58\xfa\x33\x80\xa6\x71\x6b\xe9\xcf\x58\x86\xe5\x58\x03\x69\x29\x1c\x80\x5d\x98\x74\x19\x96\x03\x2c\x2b\xeb\x2c\xdd\x19\xcb\x78\x78\x4b\x32\x2e\xfd\x19\x40\x78\x94\xd6\x52\x71\xac\x67\x8f\x9d\xf7\xc4\xe4\x55\x20\xac\xcd\xb7\x54\x1c\x40\x58\x4f\x6f\xa9\x38\x80\xaa\x27\x7a\x29\x38\x80\xb0\xb4\xdc\x52\x70\xac\x87\xa1\x2f\xbf\xd8\x16\x29\x02\xc2\x78\xe7\xa5\xf3\x63\xe9\xaf\xe0\x8c\xd2\xb5\xd4\x08\x40\x98\xb9\xb3\xf4\x57\x00\xf1\xf3\x09\xa8\x1a\x80\xb2\xac\xef\xb8\x94\x0d\xcb\x53\xf9\xdd\xd1\xf4\x61\x00\x35\xfd\x04\xea\xc3\x58\xfa\x30\x96\x2c\x41\x1f\x06\x50\x37\xb5\x52\x48\x00\x65\xf3\x77\x85\xc4\x32\xb8\xde\x14\xeb\xa5\x6a\x00\xc2\x1a\x81\xcb\xe0\x7a\x20\xd7\x6e\xf2\xa9\xbc\x2e\x48\xff\xcc\x87\xa2\x8e\xf0\xeb\x9f\xea\x88\xd4\x87\xa1\x16\x4a\x7d\x18\xa9\xb6\x68\x5e\xd6\x6c\x9a\x5e\x96\xb4\x85\x6d\xf1\xdd\xb4\x7b\xd9\xb2\x89\x11\xe8\xfc\x4b\x45\x43\xea\x8b\xf8\xd9\x74\xda\x64\x47\xf8\x16\xa7\xa2\x01\x28\xc9\xb7\x2d\x15\x0d\xa9\x2f\x62\x61\xeb\x48\x55\x03\x50\xcc\x6e\x4a\x45\x43\xea\x8b\xe0\xb9\xa7\xa2\x21\xcb\xf2\x97\xb6\xa5\x6d\xb8\x49\x7e\xfe\x99\x5d\xc3\x7b\x60\xd6\x46\x2a\x10\x80\xb0\x3c\x5b\x2a\x10\x52\x6a\xbf\xe7\x43\x6a\x0f\x84\x19\x5b\x29\xb5\x4f\x8d\xfb\x0b\xc1\x9b\x1a\xf7\x81\x66\xf0\x6e\x6a\xdc\xcf\xea\x14\xf1\x61\x4f\x2d\xf9\x40\x33\xbc\x20\x8d\xad\x07\xc2\xba\x6b\x59\x77\x3f\x9c\x35\x8c\x24\x69\xc5\x1e\x60\x48\xd4\x52\xa1\x00\x94\x65\xb9\xba\x54\x29\x00\x3b\xdf\x23\x55\x0a\x40\x4e\xbe\xcf\xa9\xb9\x1f\x08\xb3\xc4\x52\x73\x7f\xaa\x27\x2c\x6a\x97\xea\x09\x20\xcc\x12\x4b\xf5\x44\x1a\xa4\x64\x05\xbb\xd4\x05\x00\xa4\xfa\x31\x95\x18\xa9\x9e\x90\xb5\xa7\x7a\x02\x58\x56\x90\x49\xf5\x44\x1a\x86\xbf\xa0\x6f\xa9\x52\x00\xc2\x9c\xb3\x34\x0c\x3f\x15\x0f\x16\x72\x4b\xc5\x03\xd0\xb2\xda\xe4\x10\xf4\x14\x78\x98\x69\x2a\x15\x80\x54\x15\xa7\x9e\x82\xf4\x38\x79\x4b\xa8\xa5\xb6\x77\x20\xa4\xa9\x29\x6b\x4f\x49\xb5\x55\xbe\x52\x52\x0d\xe4\x9c\x36\x3d\x36\xc1\xc1\x20\x79\x69\xac\x0f\x50\xb5\x19\xa5\x96\x77\x20\xd5\xf0\x29\xf3\x4e\xa3\xd3\x17\x5f\xa5\x94\x54\x03\xe9\xe1\x23\x29\xa9\x4e\x93\x4c\x4d\xdb\x4c\x59\x35\x10\x16\x38\x4c\xed\xec\x39\x5d\x6c\x7c\x96\x52\x0a\x0d\xac\xb1\xfc\x37\x9f\xc1\x74\x97\x49\xdb\x7c\x08\x1f\xa4\xe5\x44\x53\x0a\x9d\xa6\x8f\x5a\xcc\x2a\xe5\xcb\x40\x58\xb2\x2e\xa5\xcb\x29\x37\xe6\x64\xfe\x95\x72\x63\x60\xfd\xe9\x8b\x9d\x52\xe7\xd4\xbe\xbe\xd8\x20\x53\xfb\x7a\x1a\x0b\x84\xfe\x4a\x0d\xe8\x19\xf4\xc9\xca\x56\x29\xdb\x05\xda\xde\x98\x64\xbb\x29\xdb\xb5\xa4\x54\xca\x76\xd3\x38\x1f\xdf\x1d\xd9\x2e\x50\x96\xc5\xa2\x52\xba\x0b\x84\xb5\xbf\x52\xb6\x9b\x6b\x78\x19\xeb\x47\x72\x0b\x94\xd8\x37\x70\xf6\x25\xb2\x09\x77\x48\x89\x2c\xb0\x93\x55\x53\x22\x9b\xc6\x8a\xa7\x5b\xb0\xb1\xe2\x40\xa4\x97\x19\x2b\x9e\xda\xcb\x2d\xe3\x93\xb2\x56\x60\x07\xa7\xa6\xf6\xf2\x94\xc8\xa6\x5b\xb0\x44\x16\xd8\xae\xdf\x94\xc8\x02\xe5\xdf\x7b\xa7\x0d\x1d\xc8\xee\x0e\x69\xfa\x67\x9a\xc4\x69\x95\xfc\x34\x89\x13\x48\x4b\xdd\xa7\xdc\x36\x8d\xf8\x4e\x2c\x8c\x69\xc4\x37\x90\xdd\xdd\xc4\xe8\x9f\x3c\xd2\xcb\x78\xa6\x06\xf6\x00\xab\x3b\x2a\xb9\x6d\x1a\xd8\x63\xf1\xa0\x94\xdc\x02\x69\x74\x5e\xca\x6d\x53\xeb\xb8\x07\x60\xa4\xd6\x71\x20\x8d\xce\x4b\xad\xe3\x69\xe6\x68\xfa\xe2\x49\x6e\x81\x34\x3a\x2f\x35\x98\xa7\x7c\x37\x5d\x35\xf2\x5d\x20\x55\x1d\x29\xdf\x4d\xad\xe3\x46\xad\xa5\xd6\x71\x60\xa7\x0d\xa6\xd6\xf1\xd4\x14\x9e\x6e\xc2\x72\x60\x60\x19\xdc\x90\x9a\xc2\xd3\x04\x50\x73\x2a\xd3\x04\x50\x20\x8d\x48\x4b\xad\xe3\x40\x58\x1b\x35\x25\xcf\x40\x35\x06\x2e\x25\xcf\x40\xd9\x1f\x16\xc9\x73\x6a\x43\x4f\x37\x5c\x6d\xe8\x29\xa1\xde\x4d\xee\x26\x17\x75\x02\x91\x87\x29\x61\x06\x5a\xf7\x81\x4a\x98\x81\xd9\xf7\x2d\x9d\x8d\x0f\x6a\x0f\xff\xcb\x15\x43\x7c\xba\xc7\xe9\xa4\x14\x3a\x39\x2b\xc2\x23\x90\xd2\xf0\xf4\x94\x42\x27\x66\xce\x94\x42\xe7\x47\x8e\xa7\x85\x7a\x52\x6e\x0c\x54\x49\x6f\xca\x8d\xd3\x5c\xce\xf4\xe3\x20\xeb\x05\xf6\x71\xcf\x69\x2e\x67\xde\x3e\x27\x37\x65\x29\x2e\xb0\x8f\x7b\x4e\xad\xe5\x29\xeb\xb5\xba\x51\xca\x7a\x81\xf0\x34\xc4\x94\xf5\xa6\x51\x3c\x56\x37\xca\x7b\x77\xf7\xe1\x32\xbb\xeb\xa3\xd3\x82\xee\x49\x87\x29\x9f\x05\xaa\x4e\xd8\x94\xcf\xa6\x16\x74\x4f\xd7\x4b\x09\x2d\x10\x46\x06\xa4\x84\x16\x28\xcd\x37\xc3\xfc\xce\x7c\xdc\x51\xc2\x36\x87\xf0\xc1\x3e\x9d\x3a\x35\xa0\xa7\x25\x5b\x2c\x06\x94\xcf\xee\xdb\xcb\x65\xf4\x43\xda\x9b\x12\x5a\x6d\x8a\x29\xa1\x05\xa6\xa7\x43\xa6\x84\x16\x48\xe5\x7e\x4a\x68\x53\x6b\xb9\x55\x7e\x52\x6b\x39\x90\x8a\xfb\xd4\x5a\x9e\xf2\xde\xbd\x70\xe5\xbd\x40\xac\xea\x65\x2e\x19\x79\xa9\xc5\x80\x0e\x79\x29\xd0\xe5\xdf\x87\xe1\x36\xc0\x4a\x66\xf2\x90\xa9\x02\xb1\x96\x57\x35\x9b\x1a\xa7\xe2\x24\x4d\xdd\x26\x5f\xed\x65\x5b\xd8\x16\x9f\xea\x9a\xde\x72\xd9\xb4\xc8\xf6\x19\x34\xa5\x4d\xae\xa2\xf4\xb2\xc3\x36\xd2\xbb\xf6\x3d\x4f\x9b\x5c\x45\xbb\xb7\x97\x6d\x17\xbd\xf5\x9e\xb7\x4d\xae\x22\xbe\x9f\x87\xf1\x36\xc0\x76\x84\x1f\x16\x68\x39\x64\xc7\x5a\x23\x0f\xd9\x31\xb0\x92\x59\x3b\x64\xc7\x87\xf6\xf3\xe4\x33\x7b\x48\x85\x81\xe5\x11\x4f\x87\x54\xf8\xd0\x7e\x6e\xe1\x9f\x43\xfb\x39\xb0\xac\xbd\x77\x68\x3f\x07\x56\xdb\xf7\x74\x8a\x2c\xf7\x92\xf9\x87\x7c\xec\xc3\xa8\x1d\x60\x99\x91\x7f\x48\xbb\x8f\xe2\x91\x0c\x3f\x6f\xe6\x7c\x41\xb2\xfd\x66\x1f\x92\x6c\xe0\xbb\xcc\xae\x3b\x5f\x85\x0c\xb9\xf4\x97\x4e\x17\xc6\xfa\xf4\xa8\xc4\x43\x6b\x3c\xb0\x3c\x25\xf4\xd0\x1a\x7f\x60\x66\xcf\x1f\x1f\x9f\x43\x3b\x3b\xb0\x2c\xfa\x78\x68\x67\x07\xbe\xcb\x6c\x73\x6e\xaa\x73\xc3\x0d\xa4\xec\x07\x94\x7d\x27\x78\x1d\x52\x76\x20\x24\x9a\x87\x94\xfd\xa8\x0e\xa1\xd8\xe6\x10\x08\xe8\xef\x98\x30\x0f\x43\x74\x0e\x8c\xfb\xbb\x98\xee\x21\x67\x07\xd6\x64\x43\x38\xa4\xec\x07\xf1\x38\x69\x4d\xa1\x43\x82\x0e\xec\x68\x99\x43\x82\x0e\x94\x9d\x42\x79\x48\xd0\x81\x8f\xba\xd3\xe4\xb3\x6c\x0e\x81\xcd\xe4\xd0\xba\x0f\xac\xd5\xec\x87\x43\x20\x1e\x67\xe7\x2a\x1d\x6d\xf7\xd7\x7d\x8e\xc1\x1b\x8f\x73\x74\x87\x00\x2b\x38\x24\xe8\xc0\x66\x00\x87\x04\xfd\xe8\xf6\xcd\x27\xa3\xdd\x1e\xf8\x24\x04\x4d\xf6\x8d\x04\xd8\x5d\xb1\xe2\x90\x8d\x03\x53\x0b\xcb\x61\xdc\xce\xd1\xed\x9b\x4f\x46\x8b\x3c\xb0\x72\xff\x72\xf7\xed\xf5\x32\x7e\x6a\xee\x00\xb0\x85\xfb\x61\xee\x00\x50\x76\x26\xee\x61\xf2\x00\xb0\x72\x37\xb9\x68\x86\x4f\xa1\xfb\x53\x9f\xc2\x07\xcb\x5a\x43\x87\xf6\x7d\x60\x35\xf6\xb9\x43\xed\x70\x0c\x47\xd5\x6d\x73\x54\x1f\x6c\xfa\x73\x68\xde\x3f\x86\xaf\x07\xe6\xc9\x43\x5b\x3e\xb0\xd9\xf8\xa1\x2d\xff\x18\x0e\x1e\xb2\x7a\xa8\x31\x80\x5d\x10\xff\x50\x63\x1c\xd3\x07\xe3\x22\x57\x51\x00\x9b\xb0\x1c\xda\xf2\x81\xed\xab\x3a\xb4\xe5\x03\xdb\xec\x7d\x28\x3b\x8e\xe9\xe3\x73\x2b\x55\x63\x1c\x16\xb2\xf1\xf5\x53\x63\x1c\x18\xee\x53\xbf\xce\xa1\xe5\x1e\xd8\x31\x9b\x87\xb2\x03\xf8\x2e\xf3\xa7\x0e\xf4\x83\x7d\x82\xcb\xa1\xec\x00\x36\x0b\x3b\x94\x1d\xc0\xae\xb3\x76\x68\xb8\x07\x3e\x15\x47\xd3\x1e\xba\xcf\x1d\x2a\x75\xa8\x44\x80\x4f\x27\xd2\xe4\x6c\x78\x28\x05\x5f\xcb\x43\x6d\x02\x84\x54\xed\x50\x7c\x00\xcb\xd3\x29\x0f\x03\x8a\x0e\x03\x8a\xf6\xe7\xc1\x88\x22\x60\xa9\xbe\x0f\x03\x8a\x8e\xd8\xb3\xe1\x0d\x9c\x8d\x0f\x7a\xf7\x7d\xd4\x94\x7f\xc4\xe9\x65\xcc\xad\x52\x06\xd8\x3c\xf5\xd0\xba\x7f\x84\xdb\x1d\x42\xf5\x50\xdd\x00\x9b\xf5\x1e\xaa\x9b\x63\xb9\x4a\x61\x31\x87\x1a\x05\xd8\x1c\xfa\xd0\x24\x0f\x6c\xbd\x7c\xa8\x5a\x80\x4f\x70\xd3\xe4\xf3\x5c\x66\x91\x78\x95\xeb\x76\x39\x28\xcc\xc8\x87\x56\x7a\xa0\x37\x77\x0a\xd3\x1f\x80\x36\x9b\xb7\xf4\x09\x2f\xf7\x44\x4c\x88\x87\x46\x7a\x60\x59\x23\xe0\xd0\x48\x7f\xa4\xeb\x16\x5e\x73\x98\x07\x7b\x24\x6f\xa3\xeb\x45\xb9\x03\x34\x93\x48\x0e\xe5\x0e\xf0\xfd\xd2\xcb\x1c\x67\x92\xdd\xe3\x93\x52\x01\x1d\xe9\xdb\x08\x23\x3a\x94\x3b\xc0\x0a\xf8\xec\xa1\xdc\x01\xbe\xcb\xe8\x9b\xe5\x6e\x80\xe5\x99\x1f\x87\x49\xb5\x47\xfa\x36\x42\x9c\x8e\xdc\x43\x78\x38\x38\xca\x9b\xfa\xa4\xd2\x25\x09\x4b\x3a\x8c\x36\x02\xf6\x19\x31\x87\x7a\x0a\x58\xd6\xf0\x3f\xd4\x53\xc0\xf7\x4b\x6e\xaa\xb3\x00\x58\x1e\x72\x7c\xe8\x2b\x00\xd6\xdc\xbf\x74\xec\x07\x4b\x72\xfc\x21\x27\xfb\x50\xa7\x01\x3b\x52\xf3\x50\xa7\x01\xdf\xed\xbd\x97\xb3\x75\xf0\x69\x77\xab\x35\xd6\xe9\x38\x5c\xc4\x52\x21\x75\x1a\xb0\x63\x52\x0f\x75\xda\x71\xec\x69\x60\x52\x15\x65\xc0\x92\x8d\x1e\xfa\x20\x0e\x0f\x80\xd0\x18\x7c\xa8\xd3\x80\x5d\xce\xe4\x50\xa7\x1d\xa7\xbb\x92\xac\xc0\x90\x25\x60\x59\xf0\xf4\x50\xba\x1d\xa7\x4b\xd6\x4d\xd4\xdc\x5c\x60\x17\x2b\x3e\x94\x6e\xc7\xe9\x10\xe4\x3d\xba\x2f\x80\xed\xb3\x3b\x94\x6e\xc7\xe9\x7b\x98\xf6\xd7\xa7\x7b\x62\xf9\xc0\xce\x7b\xa8\xd3\x8e\xcb\x21\x60\x16\x3c\x54\x65\xc0\xd6\x21\x87\xaa\x0c\x28\xa9\xc5\xf2\x50\x95\x1d\x46\x36\xb9\x15\xaa\xca\x0e\x2a\x6e\xa6\xb6\xc8\x43\x0d\x06\x2c\x0f\xec\x3c\xd4\x60\xc0\x77\x99\x3f\x75\xa4\x9c\xeb\xa7\x46\x3a\x14\x61\xc0\x77\x19\x23\xd5\x91\x01\xec\x14\xa6\xc3\x30\x26\xe0\xbb\xcc\x36\x47\x4f\x2e\xb1\x15\x79\x0f\xb5\x1a\xf0\x5d\xe6\x1d\x9c\x10\xfc\x1d\x6a\xcd\x43\x7f\x07\xf0\x5d\xc6\x4f\x8d\x76\x02\xb6\xf2\x3b\x94\x79\xc0\x32\x8e\xee\x50\xe6\x1d\xc8\xbc\xd4\xd6\x73\x28\xf3\x80\x65\xae\xe5\xa1\xcc\x03\x96\x45\x72\x0f\xdd\x1d\xc7\xed\x40\x7d\x51\x94\x79\xc0\x32\x4a\xf7\x50\xe5\x01\xbb\xa8\xff\xa1\xca\x03\xbe\x5f\x3a\x02\x07\x7a\xf3\xa5\x09\xff\xcc\x71\x7a\x36\xba\xc7\xa5\x1c\x3a\x32\x80\xb5\x55\x87\xc2\x0f\xf8\x2e\xb3\xcd\xa7\xfc\xb0\x29\x4f\x7f\xe9\x53\x7e\x1c\xa8\xcc\x4c\xe5\x07\x6c\x95\x77\xa8\xfc\x80\xa5\xb9\xf6\xd0\xb9\x71\x3c\x0e\x14\xc7\xf7\xa1\x18\x04\xb6\x9c\x3d\x14\x83\xc0\x77\x19\xeb\xc3\x70\x2a\x60\x79\x3c\xfd\x61\x34\x15\xb0\x74\xe1\x1e\x4a\xc6\xe3\xf5\xe9\xf9\xc2\xe8\x17\x01\x96\x05\xef\x0e\xfd\x22\xc0\x77\x19\xff\xa6\x8c\x04\xb6\xc2\x3d\x94\x91\xc7\xbb\x07\xca\x43\x50\x33\x02\xcb\x12\xc4\x87\x9a\x11\x88\xfd\x45\x52\x32\x02\xcb\x33\x42\x0e\x25\x23\x50\xd2\xe3\x39\x0e\x7d\x25\xc0\x0e\x39\x39\x8c\xb9\x02\xbe\xcb\xfc\xa9\xf3\xf1\xf2\x99\xf5\x8b\xa4\xfb\x04\xf8\x2e\xb3\x1f\xce\xc7\x4b\xf0\x28\x8a\xff\x78\xf7\x7c\xbc\x5e\xf6\xcd\xee\xa9\x4e\x05\x76\x42\xf7\xa9\x4e\x3d\xd5\xa9\x7c\x09\x4e\x75\x2a\xb0\xac\x73\x78\xaa\x53\x81\xef\xcf\xfc\x65\xb7\x0d\x7e\xcf\x40\x4f\x83\xb5\x80\x65\x35\x88\xd3\x60\x2d\xe0\xfb\xa5\x37\x08\xdb\x02\x3f\xc0\xa2\x69\xd9\xb4\xa7\xc8\x9f\x1e\xb6\x51\xd0\xa2\x3a\x80\xd3\xa6\x3d\x76\x7f\xfa\xd8\xc6\xd8\x11\x37\xa7\xa2\x14\x28\x69\x09\xaf\x53\x51\x7a\x2a\x4a\xf9\x0a\x9e\x8a\xd2\xb3\x38\x2a\xd8\xc9\xa9\x02\x05\xb6\xed\xe4\x54\x80\x02\xdf\x65\x0c\x41\x05\x0a\x2c\xd3\x80\x4f\x15\x28\xb0\x4f\x0f\x3d\x55\x98\xc0\xf7\x4b\x46\xa5\xc4\x04\x76\xe6\xee\xa9\x67\x07\x58\x56\x88\x38\x15\x9d\xc0\x2e\xb2\x77\x2a\x3a\x4f\x45\xa7\x9a\xf0\x54\x74\x9e\x8a\xce\xe9\x00\x9c\x8e\xea\x7b\xe0\xec\xea\x00\x02\x96\x27\xdc\x9e\x3a\x80\xce\xea\xa0\x60\x0a\xa7\xd2\x11\x08\x3f\x87\xa7\x19\xe3\xc0\x77\x19\x03\x35\x65\x1c\x58\x19\x7f\xc8\xca\x3e\xcd\x07\x39\x3d\xe9\xd0\x4f\xe3\xa9\x00\x05\x96\x9e\xc7\x53\x9f\x11\xb0\xcb\x12\x9c\x4a\x52\x60\x59\xc7\xf9\x54\x92\x9e\xcd\x37\x98\xfd\xf1\xd4\x3f\x04\x2c\xeb\xe7\x9f\xca\xcf\xb3\x39\xf7\xec\x2e\xa7\x2e\x1d\x60\x79\x2c\xc8\xa9\xae\x3c\x15\x91\xa6\xa9\x9e\x6d\xdf\x81\x15\x55\xbc\xcc\x15\xd5\xfd\x37\xb6\xd6\x53\x8d\x07\xac\xc5\xcb\x7f\x1a\xc1\x75\x2a\xfb\xcc\x1c\x3b\x95\x7d\xa7\xb2\x6f\x37\xed\x7f\x23\x93\x1a\xaa\x7f\xaa\xfa\xce\xe1\xf3\x80\x77\x9c\xaa\x32\x60\xdb\xad\x4e\x3d\x3a\xa7\x42\xcd\xec\xc1\x53\xa1\x06\xac\x9e\xfe\xd2\xae\x0d\x3e\xa9\x30\xb2\xd3\x38\x2c\x60\x79\x58\xfa\xa9\x74\x03\xbe\x3f\xb3\x1f\x3e\x03\xd2\xc3\xad\xcd\x79\xea\x31\x3a\x95\x56\x66\x76\x9d\x4a\x2b\xa0\x5a\x41\xea\x54\x5a\x9d\x6a\x26\x93\x83\x4e\x35\x13\xb0\x72\xf9\x4b\x6f\xf0\x41\x53\xd3\x9c\x73\xdf\xe0\xf1\x97\xac\x6c\x15\x12\xb0\x8c\x53\x39\x15\x48\xc0\x8e\x62\x3a\x15\x48\x27\xc9\x14\x69\x6e\xd0\xa9\xf6\x01\x76\xce\xfb\xa9\xf4\x39\x89\x6c\x4a\xd3\x68\x4e\x23\x9b\x4e\xeb\x75\xfa\x4e\x18\xd9\x74\x12\xb2\x94\x26\x46\x9d\x8a\x1a\x60\xc7\x9f\x9c\x86\x2c\x9d\xb1\x6b\x7a\x73\x53\x45\x0d\xb0\x4f\x6b\x39\xf5\xd8\x9c\xe4\x5c\xa7\x39\x22\xa7\xa2\x03\xd8\x47\xe5\x9e\x8a\x8e\x93\x7a\x9a\x69\x8c\xfc\xa9\xc2\x00\xd2\x80\x9c\x53\x1f\xcb\x49\x64\x50\x1a\x26\x7e\x1a\x19\x04\x44\xc0\x41\x4f\x45\x07\xb0\xac\x55\x7a\x2a\x3a\x4e\x45\x87\xb1\xfa\xa7\xa2\x03\x58\x66\xc4\x9d\x8a\x0e\x60\x19\xb6\x78\xea\x76\x39\x89\x1f\x4a\x53\x17\x4e\xe3\x87\x80\x6d\xac\x3d\x8d\x1f\x3a\x15\x18\xc6\xe5\x9f\x0a\x0c\x60\x59\x0a\xfd\xcc\x3d\x02\xa7\xcd\x55\xaf\xc0\x00\xba\x87\xed\x9c\x0a\x0c\xa0\xca\xfc\x4e\x05\x06\x50\x34\x5e\x9f\xea\x8b\xd3\xb3\xe8\x7c\x04\xea\x0b\xa0\xed\x5e\xa8\x2f\x80\x6a\x75\xde\x53\x01\x71\x1e\x98\x52\x5d\xdf\x8a\x05\xa0\x19\xe4\x7e\x2a\x16\x80\xb6\x9f\x89\xae\x1f\xa0\xeb\x9c\x3c\x75\xfd\x00\x4d\x27\xfd\xa9\xa2\x00\xbe\x41\x32\x3f\x4a\x0a\xa0\x7b\x82\xd4\x69\x58\x13\xd0\xcd\x55\x3b\x75\x06\x01\x5d\x55\x7c\xaa\x3b\x80\x2a\xbb\x3d\xd5\x1d\xa7\xba\xc3\xc0\xfa\x53\xdd\x01\x54\xd3\x8e\x4f\x75\x07\x50\x35\xe7\x9c\x26\x54\x9c\x9f\x14\xe9\x7b\x85\xaa\x44\x80\xae\x6e\x3b\x55\x22\x40\xd7\x9a\x73\xea\x44\x02\xfa\x0f\x46\x76\xaa\x4d\x80\x62\x32\xcc\xa9\x36\x39\x77\xd2\x05\x73\xa1\x5b\xe9\x54\xae\x98\x4e\x71\x2a\x57\x80\x36\xf6\x9f\x39\x3d\x1f\x94\xe9\x8a\xd2\xd3\x04\x34\x83\x80\x4e\x05\x0c\x50\x26\xa4\xe7\x54\xc0\x00\xd5\x63\x70\x4f\x1d\x4d\x40\xd7\x31\x71\x2a\x69\x4e\xce\x20\xd7\x0d\x7c\x2a\x5f\x80\xa6\x35\xed\x54\xbe\x9c\x06\x69\xf9\x09\xd6\xa9\x74\xea\x54\x72\x21\x2a\x68\x80\x6f\x44\xac\x57\x15\x0d\xd0\x95\x25\xa7\x82\x06\x68\xc3\x97\x50\x41\x03\xf4\xbd\x47\xab\x67\x80\xbe\x76\x93\xb3\xf3\x41\x37\x73\xea\x54\xce\x00\xc5\xe3\x51\x4f\xe5\x0c\xd0\xf5\x35\x9f\xaa\x19\xa0\x2f\x14\xdf\xa9\x9a\x39\x55\x33\xb5\xaf\x3f\x7c\xa6\x15\x3b\x40\x37\x6d\xf3\x54\xec\x9c\x04\x72\x19\x1e\x7c\x1a\xc8\x05\x34\x0d\x44\xa7\x5a\x07\xe8\x89\xf6\x3b\xd5\x3a\x40\x6b\x4e\xbb\x5a\xe7\xbc\x93\xab\x58\x5b\x3a\xb9\x80\x62\x9d\xb6\x53\xf5\x73\x9a\x96\xee\x42\x52\xfd\x00\x3d\x7d\x12\xaa\x9f\x53\xf5\xe3\xd6\xa7\xf8\x01\x4a\x97\x2e\x2a\x7e\xce\xe7\xc7\x0f\x99\x62\xf3\x46\x4e\x03\xbb\x7c\xcd\x94\x43\x40\xd7\x08\x76\x2a\x87\x80\xbe\x3f\x48\xaa\x21\xa0\x7b\x8c\xd4\xa9\x1a\x02\x8a\x66\xc8\x53\x31\x04\x34\xdd\x3e\xa7\x62\x08\x28\x75\x77\xc2\x99\x78\x9c\x09\x7a\x6f\xb6\xc9\xa9\x3e\x32\x71\xe7\x54\x1f\x01\x75\x6f\xdc\xea\x23\xa0\x19\xd9\x74\x2a\x8f\x80\xde\x76\xc7\x9c\x8a\x0f\xba\x1e\xff\xf3\xd9\x53\x61\x98\x01\x8f\x48\x8f\x1a\xd0\xd3\x6d\x55\xc1\x74\x7a\x8a\x9d\x2f\xb6\x82\x09\xa8\xbf\xfd\x43\x67\xe7\x83\x6e\xa4\xc0\xa9\x5e\x02\x9a\x39\xe8\xa7\x6e\x37\xa0\x99\xa2\x7b\xaa\xa0\x80\xee\x79\x54\xa7\x0a\x0a\x68\x96\xad\x38\x55\x50\x40\x1f\x3e\x5b\x15\x14\xd0\xd3\xf7\x5a\x01\x05\x54\x4d\xf8\xa7\x02\x0a\x28\xc3\xf9\x52\x3f\x01\xdd\xa3\xad\x4e\xf5\x13\x50\x4c\xf5\x39\x95\x4f\x40\xd5\x9f\x74\x2a\x9f\x80\x6e\x98\xc3\xa5\x7a\x02\xba\x87\x5d\x5d\xaa\x27\xa0\x79\xe6\xfc\xa5\x7a\x02\xba\x67\x5d\x5d\xaa\x27\xa0\xf8\xf2\x5f\x8a\x27\xa0\x1b\x1e\x71\x29\x9e\x80\x6a\x26\xe7\xa5\x78\x02\xba\x9b\xde\xa5\x76\x02\xba\x07\x8a\x5c\x6a\x27\xa0\x59\xaf\xfd\xd2\x15\x78\x29\xa7\x4c\xac\xba\x94\x53\x40\x97\x2a\x5d\xca\x29\xa0\x1a\x2b\x76\xe9\x09\x04\xba\xae\xa2\x4b\x4f\x20\x50\x0c\xc8\xb8\xd4\x5c\x40\xfd\xed\xab\x5e\x9b\x98\x30\x5e\xbf\x4b\xc9\x05\x34\x0d\x08\x97\x92\xeb\x22\x3b\xdf\x93\xba\x2e\xdd\x80\x40\xd3\x7b\x72\x29\xc2\xae\xc2\x3a\xa9\xfe\xd0\x71\xe3\xdf\x93\x9a\x5d\xaa\x2b\xa0\x4b\xfa\x2f\xc5\x15\xd0\xf5\x63\x5e\x8a\x2b\xa0\x5b\xb1\xfb\x52\x5c\x01\x5d\x8f\xe2\xa5\xb8\xba\xcc\xb9\x0f\x3b\xe1\xb0\x3f\xe8\xba\x6b\x2e\xb5\xd5\xa5\x43\xcf\x9c\xb0\x4b\x87\xde\xf5\x69\xab\xae\x0b\xee\x52\x5b\x01\x4d\x8e\x74\xe9\xcf\x03\xba\xa5\xa7\x2f\xfd\x79\x40\xd1\xdf\x74\xe9\xce\x03\xba\xfe\xa6\x4b\x4d\x06\x34\xed\x43\x97\x9a\x0c\xe8\xba\x74\x2e\x25\x19\x50\xcd\x48\xbc\xd4\x5c\x40\x75\x73\xba\x74\x03\x5e\xd5\x71\x7b\x95\xe3\xfe\xa0\x7a\x6e\xf7\xa5\xe4\x02\xda\x48\x7b\xef\xb8\x2b\xcf\xd6\xde\x1b\xcb\x07\xd4\x8e\x25\xfb\xd2\x2f\x08\x34\x79\xce\xa5\x5f\xf0\x6a\xec\x14\xdd\x26\x87\xdd\x38\xf9\xd1\x05\xac\x5b\xf0\x6a\x3c\x6e\x38\xd3\xa5\x0b\xf0\x32\x46\x8f\xcd\xe3\x32\x44\xef\xd2\x8f\x67\x16\xe0\xa5\x1f\x0f\xa8\x56\x51\xbb\xf4\xe3\x5d\xfa\xf1\x4c\xf0\xb9\xf4\xe3\x01\x45\xa7\xeb\xa5\x1f\x0f\x88\xee\x7a\xea\xfb\x06\x0b\xaf\xb2\xff\xef\x24\x72\xa6\x7b\x67\xdf\xb9\x94\x78\x57\x97\xd5\x4c\xdb\x9c\x45\x32\x72\xcc\x88\xb8\xcc\xc8\xb9\xf4\xec\x59\xf3\xf5\x52\xe3\x01\xf1\x2d\x95\xff\xfc\x22\x5f\x3a\xfe\xae\x21\x77\x47\x67\x5d\xba\xef\x80\xb0\xc4\xd1\xa5\x50\xbc\x86\xaf\xbb\x2b\x4e\xbd\x07\x4c\xf3\xfa\x2f\xf5\xde\xa5\xc3\xcd\x1a\x93\x97\x0e\x37\xa0\xed\x25\xa7\xc3\x0d\xa8\xba\xa3\x2f\x1d\x6e\xd7\xf4\x06\xcb\x36\x6f\x30\xb7\xe9\x92\xa6\x7d\x03\xea\xfe\x39\xcf\xca\xbd\x8b\x73\x17\xd2\x02\x5e\x97\x0e\x2b\x60\x0c\xd8\xca\xa5\x68\xbb\xf6\xa9\x6f\x7c\x40\x2e\xe5\x18\x10\x16\xf7\xb8\x74\x4e\x01\x45\xe1\x7c\xe9\x9c\x02\xca\xde\xd6\x8c\xbc\xbb\xc8\x40\xcf\xe6\x8e\x65\xb0\x1c\x10\x03\x0e\x71\x19\x2b\x77\x51\xa4\x35\xad\xed\x78\xe9\x75\x02\x62\xf0\xe1\xbf\xf4\x3a\x5d\xfa\x93\x9a\x03\xd5\x9f\x74\x6d\x6d\x47\x6f\x95\x76\x40\x0c\x3e\xf3\xd7\xda\xfd\x38\xfd\x25\x23\x30\x7e\x0e\xa8\x26\x78\x5c\xba\x98\x2e\x0a\xa6\xa6\x95\x22\x2f\x45\x1b\x10\xd6\x1d\xb9\xd4\x6c\x97\x5e\x21\x0d\x5d\x97\x5e\x21\x20\xac\x62\x72\xe9\x15\xba\xf2\xf2\x32\xff\x6d\xdf\xe1\xc6\x34\xe5\xbf\xf9\x4a\x23\xd0\x8c\x39\xbe\x14\x68\x97\x02\xad\xb9\x7b\x2a\xd0\x80\x7d\xbe\xdd\xa5\x40\x03\x22\xa6\x57\x39\xb9\x64\x8b\x68\x77\xbe\x14\x68\x17\xf5\xb4\xb2\xb9\xc9\xea\xa9\x01\x56\x73\xf9\xa9\xbd\xae\xed\xa8\x61\xbe\xd5\x5e\x40\xec\x4f\xa3\xda\x0b\xd8\xc5\x27\x2e\xb5\x17\x10\x5a\x16\x2e\xb5\x17\xb0\x43\xea\x2f\xa5\xd7\x45\xd4\x5d\x6a\xf1\xbc\x14\x5a\xc0\x0e\x9d\xbd\x14\x5a\x40\x36\x64\xe8\xa5\xd0\xba\x14\x5a\xd6\xab\xbc\x14\x5a\x40\x36\x97\xb2\x42\x0b\x08\x39\xd4\xa5\xd0\x02\xc2\xf0\x9a\xcb\xc4\xf5\x4b\x37\x50\x73\x98\x8a\x2f\x20\xc2\xdd\x4c\xf1\x05\x2c\xcf\xff\xbb\x14\x5f\xc0\x3e\x25\xfd\x52\x7c\x01\xdf\x9f\xd9\xe6\x04\x51\xb5\x55\xab\xcd\xa5\xfa\x02\x42\x26\x7a\x29\xbe\x80\x5d\xa0\xe2\x52\x7c\x01\xd9\xe0\x5a\x97\xe2\xeb\x3a\xf7\x9c\xd9\xe6\x9c\x7d\xb0\x6b\x99\x5e\xaa\x2f\x60\x1f\x84\x75\xa9\xbe\x80\xb4\x82\xe2\xa5\xfa\x02\xd6\xde\x05\x75\x28\x01\xcb\x02\x03\x97\x82\x0c\x58\x46\x68\x5c\x0a\x32\x20\xf7\x66\xac\x20\xbb\x74\x31\x19\xad\x77\xa9\xc8\x80\xa5\x01\xe1\x52\x90\x01\x4b\x21\x7d\x29\xc8\x80\xef\x97\x3c\x39\x15\x19\xb0\xd6\xee\xbf\x53\xa6\x64\x52\x51\x5e\x6a\x22\x20\xd5\x31\x97\x9a\x08\x58\xc6\x11\x5e\x3a\x80\x80\x30\xe7\xe9\x32\x05\x06\xf8\xfe\x8c\x67\xa2\x74\x02\xd2\xba\x73\x97\xd2\xe9\xba\x77\xd7\x98\x0e\x55\x11\x90\xd2\xd1\xeb\xde\x5d\x73\x2b\xc1\x72\x74\x29\x8b\x2e\x9d\x42\x4e\xa4\xb2\xe8\x52\x16\xb5\x61\x77\x7d\x9e\x38\x85\xac\x2d\x76\xa9\x8b\x80\xef\x32\xee\x60\xc6\x0b\xb0\x2b\x77\x5e\x6a\x25\x60\x9b\xee\x2f\xb5\x12\xb0\xe6\x6e\x72\xec\x0f\x61\xbd\x6e\x7c\x6a\x25\x60\x1f\xa2\x73\xa9\x95\x2e\x3d\x47\x6d\x78\x99\x63\xff\x20\x0c\x9f\xb8\x14\x4b\x40\x36\x3f\x03\x8a\xa5\xeb\x71\x86\x90\xc0\x97\x6a\x09\x58\x9e\xb5\x7f\x29\x96\x80\x6c\x7e\x54\x14\x4b\xc0\x5a\x92\x4d\xc5\x12\xb0\x8f\x4b\xbe\x14\x4b\xd7\xeb\xf6\x8b\xb7\xea\x52\xce\x00\xab\xc4\x1f\x82\xc9\x2e\xd5\xce\xa5\x8f\xa7\x49\x0b\x94\x28\xc0\xf2\x98\xf0\x4b\x89\x02\xa4\x15\x3f\x2f\x25\x0a\xb0\x4f\x34\xbc\x94\x28\xc0\x2e\xb5\x77\xbd\xbb\x97\x18\xd4\x7e\xfe\x97\x4f\x51\x0f\x4f\x83\x1c\xdc\x6a\x94\x5b\x47\x4d\x43\x45\xdc\x6a\x0d\x20\x5b\x7a\xd9\xb0\x09\x47\xcd\xf2\xaa\x69\x93\x9f\x17\x96\xf5\xad\xb2\x00\x96\xa5\xae\x6e\x95\xc5\xad\xb2\x68\xf8\x51\x6e\x95\x05\xb0\x22\xfd\xe5\x69\x13\x86\xdf\x9f\xf7\xbc\x6c\xf2\xc3\xc4\xf6\x7f\x2b\x2d\x80\x5d\xa4\xef\x56\x5a\x00\xdf\x65\xb6\xbd\xb6\x61\x0c\x66\xa1\xdc\x6a\x0b\x20\x1b\xbb\xec\xad\xb6\xb8\xf5\xd3\x34\xec\xe5\xb7\x7e\x1a\x60\xd7\xef\xba\x55\x12\xb7\x31\x7e\x8d\xd5\x79\xab\x08\x6e\x63\xfc\x98\xf0\x5b\x45\x00\xec\x0c\xb3\x5b\x45\x00\x14\x83\x82\x6e\x15\x01\xd0\xad\x27\x77\x2b\x08\x80\x62\xbe\xf3\x6d\x84\xdf\xad\x4f\xc6\x6d\xf6\xd6\x27\x73\x5b\xc6\x17\x8e\x72\xab\x1b\x80\x62\xbd\xc9\x5b\xdd\x00\x74\xe3\xab\x6f\x75\x03\xd0\x34\xff\xdc\xea\x06\x20\xd3\x7f\x77\xdc\x1f\x74\xab\x30\xde\xca\x06\xa0\xfe\x86\xbf\xf3\xf9\x56\x94\xb6\x03\x52\x36\x00\xc5\x02\x25\xb7\xb2\x01\x68\xd6\xb4\xb9\x75\xde\x00\xcd\x43\x7e\x6e\x95\x04\x50\x7e\xbb\x5b\xce\x97\x35\xbf\x20\x4e\xb7\x4a\x02\xe8\x73\x8f\xc7\xf9\x32\x53\x08\x0e\x7f\x2b\x2e\x80\x62\xca\xeb\xad\xb8\x00\xaa\xc5\x56\x6f\xc5\xc5\xfd\x89\x8b\xd9\x61\xb8\xb7\xe2\x02\x68\x26\xb7\xdc\x8a\x8b\x7b\x17\x19\xf0\xbf\x9c\x9c\x0f\xa6\x31\x3d\xb7\x7a\x03\x28\xc6\xd8\xdf\xea\x0d\xa0\xc6\xfe\x7b\x27\x87\xc0\xc4\xb9\x7f\xe8\xe4\x34\x57\x13\xcf\xcc\xb8\x44\x60\xf6\x6e\x57\x9d\x9c\x0f\xba\xb1\xf9\xb7\x45\x07\x80\xd9\xbb\xfd\x72\x72\x3e\xa8\x4a\xa3\x5b\xbf\x13\x50\x3d\xe4\xef\xb6\x32\x01\x30\x3b\x7b\xdf\xad\x0c\x02\xaa\x1e\xdb\x5b\x19\x04\x54\x8b\x75\xdc\x9e\xfa\x01\x74\x3f\xcf\xb7\x19\x48\x40\xb7\xdc\xc8\x6d\x06\xd2\xdd\x99\x1c\x1f\x87\x5a\x09\x98\x9d\x8f\xca\xad\x56\xba\x3f\x61\x34\xad\x66\x7a\x2b\x8c\x80\x66\x2d\xec\xdb\xea\x05\x40\xd1\xef\x78\x2b\x95\x80\x32\x9a\x5d\x75\x26\x3a\x33\xb1\xbb\xea\x4c\x50\xa8\xcc\x0d\xf0\xd6\x67\x06\x34\x99\xdc\xad\x9e\x02\x8a\xe9\xd8\xb7\x82\xe9\xa6\xea\xc1\xbf\xcd\xce\xb0\x48\x60\x58\x67\xe5\x36\x2a\x12\xa8\xba\x15\x6f\x65\x15\x30\x3b\xdf\xa7\x5b\x59\x05\x54\xab\x28\xde\xfa\xdf\x6e\xfd\x6f\xf2\x92\x5b\xff\x1b\xd0\xa7\x2f\x83\xfe\x37\x60\xee\xfe\xab\xc7\x80\x6e\x81\xa0\x5b\x3d\x06\x34\xeb\x9f\xdf\xba\xdf\x80\x6e\xb9\x93\x5b\xf7\x1b\xd0\x25\xef\xb7\xc1\x94\x40\xdf\x3b\x98\xc1\x94\x40\xf9\xb7\x21\x9a\xb1\x05\xf4\x0e\x39\xbd\x95\x7b\x40\x53\x1c\xdc\xca\x3d\xa0\xeb\x96\xb9\x95\x7b\x40\x31\x59\xfd\x36\xbe\x12\x28\x16\xfc\xbf\x4d\xeb\xba\xf5\x0b\xca\x8d\x6e\xfd\x82\x40\x93\x58\xdc\xfa\x05\x81\xf8\xd7\x0b\x67\x4c\xe9\x28\xc3\xb9\xd5\x8e\xb7\xe7\x04\x36\x2f\x73\x32\xa6\x5f\x0c\xf7\x01\x7d\x85\x40\xf4\xf2\x07\x0d\x7d\x1b\x7e\x79\xcf\x3d\x33\x4c\xa0\xae\x44\xa0\x4f\x37\x05\x5d\x89\xb7\x42\x55\xc7\xfc\xad\x50\x05\x62\xbf\xb6\x0a\x55\xa0\xc4\x6e\x72\x1e\x3e\xe8\xfb\x23\x66\x60\xe5\xed\xc1\xe6\xcd\xff\x77\x1a\x3e\x68\xe6\x99\xdf\x0a\xdc\x9b\x3c\xaf\x9d\x3d\x73\xeb\x35\x04\x8a\x15\x75\x6e\xa5\xeb\x6d\xc0\xe4\x9e\x41\x03\x26\x81\xe8\x08\xbf\x5b\xe9\x0a\x14\x1d\x84\xb7\xd2\xf5\x56\xa6\x6a\xe5\xb8\xd5\xa9\x40\xb7\x56\xee\xad\x4e\x05\x9a\x25\x5e\x6f\x65\xea\x6d\x8c\x63\xc7\x30\x74\x1b\xe3\x08\x84\x87\x78\xdc\x7a\x20\x6f\xa5\xab\x46\xf7\x5b\xe9\x0a\x84\xb5\xbe\x6f\xa5\x2b\x10\x46\x51\xdd\xba\x1b\x6f\x8e\xef\x4b\xcb\xec\xde\x4a\x57\x60\xad\xea\x65\xf6\x96\xb3\x3e\xb2\x57\xfb\xe1\x52\xff\xa0\x59\xb8\xeb\x56\xa6\xde\x86\x20\x5a\x7f\xfa\x56\x81\x02\xcd\x4a\xa3\xb7\x2e\xc2\xdb\x50\xc1\xee\x76\xaa\x02\x05\x56\x47\xa7\xde\x2a\xd0\xfb\x74\xf0\x08\x8d\x5b\x3d\x08\x44\xf7\x5b\xa6\x1c\x04\xd2\xfa\xb2\xb7\x72\x10\xe8\x16\xf1\xb9\x95\x83\x40\xd5\xb8\x75\x2b\x07\x81\xd8\x9b\xa7\x6a\xf0\x3e\xed\x99\x9f\x03\xb5\x1f\x10\xfb\x3b\x72\xee\x9e\xf9\x40\xdd\x9d\xd5\x7e\x40\xec\xed\x53\xed\x77\xeb\x79\xeb\xee\xc5\x8a\x3f\x20\xf6\x26\xae\xf8\x03\xbe\xcb\xec\x88\x6f\xcb\x07\x7d\x34\x6f\xea\x7c\x13\x3b\x68\x49\xea\x5b\xf1\x77\x5f\xce\xf7\x6e\x73\xec\x38\xda\xda\x6e\x72\xec\x54\x74\xde\x7b\xaa\xba\x0e\xf8\x7e\x69\x9b\x83\xa7\xde\xc1\xde\x67\xd5\x75\xb7\x01\x80\x7b\x07\x55\x9e\x01\x66\x19\xde\xfa\xcb\x80\xd2\xd3\x8b\x1c\xd3\xe5\x98\x90\x62\xb7\x0e\xb3\x9b\xba\xcc\xbb\x49\xef\xd8\xad\xd4\x33\x7f\xeb\x56\xea\x01\xd5\xe3\xcc\x6f\xa5\xde\x6d\x60\x5f\x9f\xb6\xd9\xdb\x9b\xfd\xcc\x9e\xe9\xd9\xba\x15\x71\x7d\xda\xe6\x63\xb9\x7d\x2c\x2c\x3f\x45\x1c\x10\xff\xfe\xcc\x11\x70\x8a\x5f\xee\xcd\x43\x11\x07\xd4\x56\x6c\x72\x04\xa4\x6f\x6d\x3a\xa7\x86\x03\x4a\x48\xe1\x95\x70\xf7\xe3\x53\x51\x10\xa8\xce\x80\xb0\x80\xf6\xad\x3a\x03\xa2\x2b\x11\x54\x67\xf7\xe3\xf2\x73\xec\xea\x2e\xa0\x9a\xeb\x78\x5b\x8e\xe0\x56\x8a\x75\xb4\xca\xad\x14\xbb\x9f\x5d\xb8\x8a\x26\xc7\x49\x92\xd7\x5e\xcb\x4a\x31\x20\x2c\xf7\x7d\x2b\xc5\xee\xc7\x57\x5b\x25\xa1\x97\x0a\xa8\x56\x22\xbb\xf5\x52\xdd\xef\x1e\x14\xd3\xa1\x03\x0a\x68\xc6\x17\xde\x2a\x36\xa0\xa4\x75\x6f\x6e\x35\x19\x50\x8d\x3a\xba\xf5\x40\x01\xdf\x65\x0c\x54\x17\xd4\x4d\x92\x97\x07\xab\xde\xfa\x9b\x80\xd8\x4f\x45\x31\x07\x14\x2b\x68\xde\x8a\x39\x20\xf6\x74\x2b\xe6\x80\xef\xff\x1d\x81\x03\x7d\xf9\x64\x39\xb7\xaa\xb9\x5b\xe9\xd6\xf9\x9c\x3e\x4a\xb7\xe7\xb7\x47\x10\xb4\x0d\xdb\xb4\xf5\x26\x4d\xd3\x26\x37\x4e\x18\xc8\xa3\x28\x03\x42\x89\xff\xa8\xc9\x1e\xbd\x3d\x8c\xfd\x51\x93\x01\xdf\x2f\xbd\xe9\x65\x1b\xb5\x87\xd2\x7b\xde\x36\xf9\x5c\xd2\x9f\xbe\xb6\x7d\x5b\xee\x40\x1b\x3e\x0a\x30\x60\x9f\xa7\xfb\x28\xc0\x1e\xe3\xe9\xf4\x02\x3e\xba\x72\x80\xe8\xd1\xff\xfb\x7b\xfd\x18\x6e\xf7\x18\xe7\xe6\xd9\xa6\x8f\xca\x0b\x88\xbe\xef\xff\xd8\x84\xcf\x8e\xe5\xf9\xa8\xbc\x80\x70\x75\x3e\x2a\xaf\x07\x95\x95\x0a\xc0\x47\x99\x05\x34\x0b\x0c\x3e\xca\x2c\x20\x5c\x63\x8f\x32\xeb\xa1\xae\x71\x9a\xa7\xf9\x28\x8e\x80\x62\x5d\xff\x47\x71\x04\x74\x23\xf0\x1e\xc5\x11\xf0\xfd\xd2\x7e\x38\xcf\x95\xf5\x1f\xfe\xd2\x31\xa1\x8e\xd2\xb0\xf2\x47\x79\x04\x84\xb5\xc8\x1f\xe5\x11\x10\x1d\x51\xfb\x28\x8f\x1e\x93\xb2\xcc\x72\x7a\xd4\x47\x40\x74\x76\xc7\x47\x7d\xf4\x98\x94\x65\x3c\xdf\xa3\x40\x02\x96\x56\xc7\x47\x81\x04\x84\x2b\xf6\x51\x20\x3d\xc6\xce\x0d\x94\xc8\xa3\xf6\x01\xc2\x17\xe7\x51\xfb\x00\xd1\x97\x57\x39\xf6\xe6\xc3\xab\xfe\x9b\x03\x6d\x3c\x3c\xd7\xba\x4a\xe7\xa1\xe2\x5a\x0e\x3e\xf5\x8f\xba\x06\x08\x5f\xe0\x47\x5d\xf3\x7c\x22\x26\xac\xf3\xfe\x28\x62\x80\xef\x97\xb6\x39\x28\xea\x28\x58\x0a\xf2\x51\xc5\x3c\x78\x7c\xd2\x44\x81\x47\x19\x03\x0c\xf3\x70\x1e\x65\x0c\x50\xa4\x0d\x8f\x2e\x9f\x47\x97\x8f\x6f\xa1\xca\x06\x88\xfd\xc6\xa9\x6c\x80\x66\xa4\xc6\xa3\xb2\x01\xd2\x92\x5d\x8f\xca\xe6\x19\x3e\x28\xac\xec\x8f\x0a\xe5\x19\x8c\x09\x81\xf2\x28\x50\x1e\xbd\x3c\x03\x11\xf9\x28\x47\x80\x34\xae\xff\x51\x8e\x3c\xc3\xa7\xc2\xb7\xf9\x51\x68\x00\x21\x1f\x78\x14\x1a\x0f\xe5\x90\xd3\xf0\x93\x47\x42\x0f\x64\xb8\xe4\x25\xf4\x8f\xec\xdd\x52\xcd\x8f\xec\x1d\x28\xbf\x69\x93\x93\x66\xc2\x94\x35\x98\x1f\x13\xa6\x80\xe8\xbb\x69\xdf\xd4\x35\xcf\xd7\xff\x91\xbe\x03\x45\x99\xfd\xc8\xde\x81\x62\x2d\xfc\x47\x7a\xfe\x18\xfc\x37\x86\x6d\xae\x79\xea\x34\xec\x1d\x48\xc6\x0e\x44\x47\xde\x3c\x32\x76\xe0\xfb\xa5\x97\xb9\xe6\x61\xf1\x03\x23\xc7\x23\x89\x7f\x8c\x11\xb4\x3c\xf4\x23\x8b\x07\x42\xe2\xf0\xc8\xe2\x81\xef\x32\x7f\xea\x7c\x04\xc4\x04\x81\xf3\x48\xe3\x9f\x7d\x0e\x0c\xdf\x9e\x47\x17\x14\x90\x06\x26\x3e\xba\xa0\x1e\x53\xa6\x86\xfb\x82\x29\x53\x40\xec\xed\xd7\xe8\xc2\xc7\x94\x29\xeb\xab\x3d\xa6\x4c\x01\xa5\xf1\xb9\x78\x8c\x2e\x7c\x14\x0a\x83\xcf\xe7\xa3\x50\x78\x2c\x7f\xe6\x10\x14\x0a\x8f\x0e\x2d\x0d\xfc\x8f\xaa\x00\x88\xbd\x25\xab\x0a\x80\xef\x32\x86\x60\x1e\x15\x50\x2c\x94\xf8\x98\x47\xf5\xe8\xf7\xb2\x02\xf5\xa3\xdf\x0b\x48\x0b\xda\x3d\xea\x09\x20\x96\xfb\xb0\x7a\x02\xc8\x68\x36\x39\x76\x53\xab\x8c\x6e\x78\xf4\x7b\x01\x4b\x06\xf3\x18\xf8\x08\x7c\x97\x31\x6d\x46\x3e\x02\xe1\xb9\x05\x8f\xd5\x25\x80\xd8\x5f\x08\xc5\x09\x90\xba\x60\x1f\xc5\x09\x90\x7a\xc0\x1f\xc3\x23\x81\xf4\x78\xd7\x47\xb9\xf2\x6c\x4f\x1b\x9d\x55\xae\x3c\x26\x56\x0d\x1f\x81\x42\x04\x48\xe3\x51\x1f\x13\xab\x1e\xc3\x23\x87\xbb\xb5\xe1\x91\x40\x18\x2b\xf1\xe8\x7c\x7b\x0c\x8f\xb4\x10\xf5\xa3\xf7\x0d\x08\x33\x13\x1f\x55\xcd\x73\xf8\x8c\xdd\xe8\x75\xb5\x01\x69\x48\xf9\xa3\xab\xed\x39\x7c\xc6\x6e\x93\x86\x39\x02\xb1\xba\x97\xf9\x8c\x0f\xf3\xdb\x19\xbb\xde\xb7\xe7\x70\x54\xee\xc3\x3a\xd6\x80\x0c\x37\x1e\x1d\x6b\x40\x6b\xf3\x0f\x05\x46\x1f\xfd\x6e\x40\xd1\xfc\xfb\xe8\x77\x7b\xf4\xbb\x0d\x77\xee\x63\x0f\xf0\x45\x8f\xd1\x71\xfd\x6e\x8f\x4e\x36\x83\xbd\x1e\x55\x15\x50\xf6\xaa\x53\x55\x3d\xaa\x9e\xb1\x7f\x6a\xcf\x4f\xd2\xf7\x8a\x4d\xf6\xfc\xf4\xa3\xe2\x4a\x51\xa8\x00\xab\xbb\x2c\xf4\x52\x3d\x3a\x83\x26\x6e\xb6\x47\x67\x10\x10\x96\xd9\x7a\x54\x1b\xc0\xb2\x56\xcc\xa3\xdc\x00\x22\xed\xad\x72\xe3\xf1\xe4\x42\xf7\x5f\xd5\x06\x30\xb5\x10\x3d\x86\xe7\x3d\x54\x52\x4b\xeb\x51\x3e\x4a\x0b\x60\xd7\x7b\x7d\xf4\x22\x01\xdf\x65\x3c\x35\xdd\x48\xc0\x76\x9b\x3c\x7a\x91\x1e\x73\x86\x34\x25\x3d\x4a\x0b\x60\xfb\x48\x1e\xa5\xc5\x43\x3c\x5c\x5a\xe3\xf9\xb9\x77\x47\x5e\x1c\x0b\x74\x57\xd1\xf0\x98\xf9\x63\xc5\xfb\x47\x85\x00\xa4\xe9\x24\x8f\x0a\xe1\x31\x3e\x6d\xfa\x52\xcb\xf3\x1f\x5d\x2e\x6e\x5e\xf2\xfc\xe7\x75\xa4\x2e\x3c\x23\xc8\x80\xb4\xc4\xe3\x23\x81\x7f\xa8\xb5\x90\x13\x0b\xd3\x63\xd8\xd7\x63\xe2\x8c\x43\x90\x86\x03\x69\x1c\xe8\x23\x0d\x07\xb2\xb9\xc5\x49\xc3\x1f\x7d\x2a\xee\xc8\xef\xee\xc6\xc5\x55\xfe\xbd\x4f\xca\xb4\x19\x6d\x9d\x8f\x34\x1c\x48\xcf\xa1\x7d\x74\xaa\x3c\x32\x73\xb3\x69\x5f\x99\xf9\x4b\x89\xb1\xb4\xdc\xf2\x6b\x4c\x17\xb0\x0c\x2b\x7a\xf5\xb3\xbc\x12\x78\xcb\x2d\xbf\x12\x78\x60\xbb\x68\x5e\x09\xfc\x6b\x46\xcc\x1c\xfe\x34\x6c\xc3\xed\x35\xbd\xc1\xb2\x69\x79\x59\xa7\x2d\x6d\x4b\x7c\x12\xde\xe0\xb0\xc9\xf9\xb0\xbb\xcc\xc7\x5b\x7c\x06\x7c\x51\x5f\x2b\x91\x01\xdb\x2d\xf4\x1a\x77\xf5\xca\xd6\xa5\xae\xaf\x6c\x1d\x08\x73\x84\x5f\xe9\x38\xb0\x7a\xf5\x2a\x47\xa0\x07\xc5\x1a\x4f\x6f\xd9\x37\x3d\xf1\xea\x32\x50\x3d\x28\xc0\x76\x28\xbd\xf2\x78\x60\x79\x9a\xd8\x2b\x8f\x7f\x3f\xd2\x9e\x7e\xee\x5e\x49\xfb\x6b\xa5\x03\xcd\x73\xaf\x2e\x0e\x20\x2c\x33\xf1\xea\xe3\x00\x52\x8f\xe5\xab\x8f\xe3\x95\xb4\xcf\xfd\x6f\x4e\x1a\x87\x91\x68\x8b\x7b\x25\xed\xc0\x3e\x31\xf5\x95\xb4\xbf\xd5\xb7\xc5\xde\x4a\xbd\x81\xe5\xc1\x93\xaf\xd4\xfb\x35\xf9\xc4\x6c\xf4\xd7\xe4\x13\x20\x1b\xb2\xe3\x95\x66\xbf\xcd\xf5\xcd\x2e\xfd\xea\x4f\x00\x96\xa1\x25\xaf\x9c\xfa\xd5\x79\x60\x29\xeb\x57\x06\x0d\x84\x69\xe0\xaf\xde\x83\xd7\x1c\x15\xab\x2e\xbf\x32\x68\x60\x57\xc7\x7b\xf5\x15\x00\x2b\x78\x0f\x5e\x39\xf5\xdb\x5d\x0a\x6c\x59\xaf\x9e\x01\x20\x0d\x58\x7e\x25\xd5\xaf\xa4\xda\x92\xf9\xaf\xa4\x1a\xd8\xd5\xda\x5f\x49\x35\xb0\x3c\xb1\xe9\x35\xb2\x0a\xd8\xde\xc0\x57\x9a\xfd\x9a\x2a\x63\x55\xe7\x57\x52\xfd\x9a\x2a\xe3\xa3\x92\x54\xbf\x38\x02\x76\x95\xed\x57\xbe\x0c\x2c\xcb\xad\xbc\x7a\x02\x80\x65\xfc\xdb\xab\x27\xe0\x1d\xbb\xb7\x5c\xa6\x41\x1f\xd8\xbe\xc5\x57\x06\xfd\x0e\x4f\x6a\x64\x53\x7f\xc7\xfe\xa9\x47\x18\x32\x76\x8d\xe4\xaf\x41\x51\xd6\xcc\x7c\xb5\x92\x03\x69\x65\xcd\x57\x2b\x39\xb0\xdd\xbb\xaf\xa4\x1a\xf8\x7e\xc9\x1b\x2a\xab\x06\x52\x97\xc4\xab\x99\xfc\x95\x68\x47\xf1\xa7\x4e\x1b\x44\xdb\x5c\x85\x57\xa2\x0d\x74\x8f\x26\x7c\x35\x93\x03\xc5\x54\xc2\x57\xea\x0d\x74\xfd\x41\xaf\xd4\xfb\xd5\x98\x1e\xe5\x0f\x5f\xec\x57\x5b\x3b\x30\xf7\x76\x23\x59\x07\xfa\xdc\x9d\xf4\x69\x7c\x30\xf7\xde\x25\x59\x07\xaa\x15\xf6\x5f\xb9\x3a\xd0\x3c\x8c\xf9\x95\xab\x03\x45\xa1\xf5\xca\xd5\xdf\x8f\x84\xcf\xbd\xff\xc8\xc1\x81\x3e\x7c\x6d\xe4\xe0\xef\xc7\xb7\x67\x43\x55\xbd\xf2\x6d\x60\xee\x05\xa6\xd9\x1c\x98\xfb\x7d\x33\x2e\xec\xfd\x18\xf8\xdc\x8f\x5f\x06\x0e\x34\x8f\xfd\x7b\x25\xe0\xc0\xd4\x3f\xfc\x4a\xc0\x81\xae\xb3\xf9\x35\xbd\x07\x98\x96\xc7\x78\xa5\xe4\x40\x35\x1c\xfc\x95\x92\xbf\x6b\x2f\x1b\xdb\x1c\xe4\x47\xc3\xa7\xa7\x9a\xbe\xc6\x98\x01\xd5\x44\x8f\x57\xd3\x3d\x30\x3d\x8e\xf4\x95\xa4\x03\xc5\x64\xd0\x57\x92\x0e\x54\x4f\x89\x79\xe5\xe8\xc0\xd4\xeb\xf3\xca\xd1\x81\x62\x35\x8b\x57\x8a\x0e\xd4\xbd\xc5\x4a\xd1\xdf\x5d\xa3\x98\x71\x4b\xd1\x81\xa9\x2f\xf0\x95\xa2\xbf\x52\x74\x2b\x70\xbf\x52\xf4\xf7\xe3\xde\xd3\xc0\xa8\x57\xee\x0d\x94\xbd\x04\xe4\xde\x40\xb5\x72\xc0\x2b\xf7\x06\xbe\x3f\x63\x48\x92\xef\xd7\x82\x08\x76\x56\xf2\x0d\x0c\x95\xf5\x2b\xf9\x06\xba\xd1\x4d\xaf\xbe\x02\xa0\x2d\xe7\xd5\xd4\x24\xa0\x6b\xa1\x7f\x8d\x85\x03\xa6\x9e\xbf\x57\x87\x02\xd0\x35\xeb\xbc\xf2\x78\x60\x1a\xc3\xf5\xca\xe3\x81\x96\xbb\xfb\xce\x05\x41\x74\x9e\xbc\xf2\x4a\xe3\x5f\x69\xbc\xe6\xfe\x57\x1a\x0f\x14\xa3\x6d\x5e\x69\x3c\x50\x4c\xf8\x7f\x75\x4e\xbc\x3a\x27\x3c\x4c\xe1\xd5\x39\x01\x54\x0d\xba\xaf\xce\x89\xf7\x70\x9f\x40\x5c\xbd\xd2\x78\x20\xb4\x02\xbc\xd2\xf8\x57\x1f\x86\xb2\xe6\xd5\x87\xf1\x42\xed\xad\x5a\xfa\xca\xec\x81\xb2\x45\xe9\x2b\xb5\x07\x8a\xa9\x55\xaf\xdc\xfd\x35\x5f\xe9\xdf\x1d\x1c\x29\x67\xbb\xac\xe6\x2f\x1d\xe8\x07\x61\x42\xda\x2b\x9d\x07\x22\x1c\xbb\x74\x1e\x28\x06\x9d\xbf\xba\x4d\x80\x66\xfc\xd7\x2b\xc1\x07\x96\xdc\xec\x95\xe0\xbf\xe7\x1e\x3a\x0f\x4a\x8f\x08\x30\x4c\x52\x7f\x8d\x8f\x7b\x2d\x93\xa0\xc8\x7b\xf5\x88\x00\xc5\xa2\xb9\xaf\xd2\xe0\x3d\x1d\x53\xb3\x6b\x8e\xe9\x83\xaa\x54\x7b\xf5\x74\x00\x45\xef\xe5\xab\xa7\xe3\xbd\x7c\xa9\x1d\xba\x72\x01\x68\xa6\xf6\xbf\x06\xb5\x01\x5d\x5f\xe8\xab\xf3\xe3\xb5\x4a\x82\x5e\xda\x57\xef\xc7\x6b\x9a\x91\x5d\xd3\xfb\x01\xf4\x9f\x5f\x11\x9d\x1f\xaf\x51\x6d\x16\x10\x7f\xf5\x7e\xbc\x9e\xff\x62\x6f\x8d\x6a\x03\xaa\xc5\xf6\x5f\xa3\xda\x5e\x5d\x1d\x41\x54\xdb\xab\xf8\x00\xfa\xfe\xb0\x5c\x7b\x50\xaf\x97\xf1\x53\xdd\x1f\x40\x97\x45\xbf\x7a\x3f\x80\xea\x01\x25\xaf\x12\x05\xf8\x7e\xc9\x74\xa8\x51\x80\x61\x81\x9e\x57\x89\x02\x14\x0b\x7b\xbc\x4a\x14\x60\x58\x86\xe4\xd5\x6d\xf2\xde\xae\x5b\xd9\x94\x7e\x13\xa0\x58\xed\xeb\xb5\xd8\x33\xd0\x35\x33\xbe\x7a\x52\x5e\xf5\x4e\xec\x7b\xba\x94\x6f\x52\x63\x5c\x1d\xea\x1d\xa0\x37\xb9\xab\x9e\x14\xa0\x05\x3a\xe6\xd5\x93\x02\xd4\xb1\x7f\xe8\x04\xe1\x49\x31\x2a\xfa\x55\x14\xbd\x56\x4d\x08\x07\x60\xe8\x1b\xd0\x3c\xd7\xe4\xd5\xb9\xf2\xaa\x9d\xcc\xe7\x7c\xd5\x4e\xc0\xb0\x48\xe2\xab\x76\x02\xc6\x9f\xca\x9c\xbc\x46\xc6\x01\x43\x87\xe9\x6b\x64\xdc\xab\x8b\x66\xbf\x70\xba\x68\x80\x61\xa5\x88\x57\x17\x0d\x30\xac\x6b\xf1\xea\xa1\x01\x4a\xdf\x7f\xe6\xf4\x3d\xc4\xef\xf8\x60\x55\x6e\xaf\x95\x17\xf6\x3b\xae\x8b\x06\x28\xda\x59\x5e\xa3\xe5\x80\x91\x7b\xc4\xce\xdf\xe3\x02\xf3\x06\x7a\x6d\x80\xa6\x03\xe5\x35\xb7\xe8\xd5\x91\x13\x4e\xa0\x3a\x10\x18\xb9\x9b\x9c\x3f\x0a\xf8\x2d\x67\x5e\x3f\xce\xab\xd3\x66\x33\x5b\x9d\x36\x40\x0d\x79\x81\x02\x12\x28\x96\xe5\x79\x15\x90\x40\xfd\xd7\xe4\x6c\xe8\xa1\x31\x56\xf3\x55\x1b\x02\xdd\x73\xf9\x5f\xa5\xe1\xab\x0e\x64\xed\xe4\x0f\x1d\x28\x34\xce\xe2\xc8\x1f\x09\x40\x42\x1b\x9f\x3a\xca\x1f\x09\x40\x42\xc3\xb1\x9d\x3f\xc4\xa2\xd0\xe6\xbe\xaa\xdb\xc4\x32\xf9\x3e\x00\xf9\x43\x2b\x0a\x83\xf2\x20\xf9\x43\x2b\x0a\x95\xc2\xb9\xf9\x43\x2a\xe6\x4f\x5d\x18\xdf\xbb\x9b\x3f\x74\xa1\xd0\xc9\xd1\xca\x1f\xba\x50\xe8\xbf\xdd\xfd\xd3\xa6\x93\x5b\x16\x9a\x2e\x9b\xf6\x64\x38\xa4\xdb\xb6\x9b\xcb\xfc\xe5\x63\x93\x54\x7a\xda\x8f\xd7\x36\xbc\xf0\x76\xad\x38\x3f\x1f\xf4\x91\xdc\xa0\x38\x3f\x1f\x0c\x4a\x7c\xe4\xaf\x38\x3f\x94\x02\xc4\x6b\x96\xbf\xe2\xfc\x28\x45\x63\xb7\x39\x41\x05\xa3\x7e\x32\x8d\xc5\x09\xfa\x20\x39\xf1\x32\x7f\xc5\x09\xe2\xb4\x7d\xca\x57\xe4\xaf\x38\x41\x64\x0a\x61\xf9\xcf\x1f\x99\x42\xc2\xf7\xff\xf6\xcc\x39\xa3\x0e\x03\xe5\xba\xf3\x57\x9c\xb3\x82\x4d\x29\xec\xac\x73\xb6\xcf\xe7\xb4\xc9\x39\xd3\x3f\x15\x61\x37\x9c\xb3\x0f\x1a\xbe\xd2\xfc\x15\xe7\x8c\x5c\xa1\xba\x87\xe4\x94\x15\xbc\x68\x8d\x99\xad\x4e\x59\x65\x23\x4e\x3a\x5b\x9d\xb2\xea\x94\xf1\x7c\xab\x53\x46\x60\xe0\xb4\xfb\xd5\x29\xa3\x40\x60\xfd\xe8\x67\xfe\xaa\x33\x66\x49\x87\xb0\xff\xd5\xf9\xa9\xce\x0f\x7d\xad\xce\x4f\xdd\xfd\x67\xce\xaa\xfd\xaf\x3e\x73\xbb\x61\xff\x11\xc4\x84\x71\xe4\xaf\xda\xff\x0f\x46\x3a\xa4\x66\xff\x9b\x1b\xe5\xa2\x6b\xcd\xde\x5a\xbf\xbb\xd2\x8d\x66\x6f\x9b\x07\x1c\x2e\xdb\x7c\x9a\xcd\xae\x31\x82\x66\xd7\x94\xcd\xb1\xe8\x5a\xf3\xd9\x7d\xd0\x39\x43\x36\x7f\xcd\x47\xa7\x6c\xe6\x30\x84\xfc\x35\x1f\xd4\x07\x95\xe3\xd1\xf2\xd7\x7c\x50\xf8\xa2\x7e\xce\x5a\x73\x9c\x2a\x69\x92\xcd\xf2\xd7\x1c\x68\xf3\xa4\x7b\xef\xe9\x40\x4d\x35\x0a\x17\x77\xf7\xb1\x20\xa5\x87\xaf\x45\x77\xa0\x9d\x93\x39\x5c\x1c\xdd\x81\xaa\xa4\xc3\x77\xa0\xfb\x5c\x3a\xaf\xba\xfd\xe8\x8e\x5d\xf7\x14\x96\x9c\xfc\x75\x07\xcf\x81\xa0\xc4\xd8\xe7\xaf\x3b\xf6\xee\x40\x1d\x55\x77\xa0\x9d\x93\xb9\x16\xd3\xd6\x1d\xa8\x52\x9a\xb3\x95\xf2\xd7\x1d\x29\x95\x28\xc8\x1d\xcf\x5f\x77\xa0\x1f\x04\x5f\xdb\xfc\xf5\x3d\xd0\x97\x44\x6e\x7e\x38\x7c\xa2\x83\x22\xed\xc1\x2d\x87\x43\x1f\x95\x26\x3a\x3b\x1c\x27\x1a\xbc\x77\xc6\x34\x1c\xe6\x07\x41\x21\xeb\xfc\x0d\x87\x49\xa5\x41\xcc\xbb\xf9\x1b\x2e\xc8\xb1\x47\x4e\x2f\x86\x23\xff\xa0\x97\xfd\xff\x8e\x7c\xf0\x65\x0b\xff\xcc\xa7\x3e\xf6\x64\xf0\x50\x86\x93\x31\xd8\xd2\xc2\x3f\x73\x32\x28\x60\x31\x97\xfd\x77\x2e\xac\x47\x48\x66\x48\xfe\x86\x93\x61\x3d\x42\xd7\xf2\x70\x32\x0c\xa1\x5b\xbf\xff\xfe\x4e\xe7\x6f\x3a\x59\x93\x92\x14\xde\x7f\x3a\x59\x9e\x46\x84\x2d\x39\x7f\xd3\x85\x32\x9d\x40\xa6\x79\x3a\x81\x93\xe8\xa4\xc2\x60\xa6\x13\x48\x88\x5d\xae\x1f\x5d\x9f\xce\xe0\x07\x9d\x7a\x37\xf9\x9b\xce\x20\xe7\x11\x25\x99\x0b\xf9\x9b\x4e\xd7\x74\xba\x6c\x72\xba\x76\x55\x43\x6f\xe0\xfe\x66\x3c\x1d\x36\xed\xfc\x4d\xe7\x66\x22\x80\x5d\xe9\xd3\xa9\xe1\xa0\xa1\xbe\xff\xcc\xa9\xd1\xd5\x46\x25\xb8\xfc\x85\x83\x0a\xcf\xa5\xe3\xa9\x85\x83\xd2\xd5\x86\x6e\xca\x5f\x38\xaa\x60\xf5\x2f\x7f\xe9\xa0\x08\x98\x9b\xbe\xbe\xe1\xa0\xac\xd0\xc1\xd1\x11\xf9\x0b\x97\x05\x15\x3a\xf6\xde\x18\x8e\xd3\xa3\x4d\x5d\x9c\xe1\x38\x75\xc8\x2d\xdf\x9b\x70\xa0\x41\x40\xba\x93\x1b\xae\x14\x1d\x72\x18\xcc\xf2\x17\x2e\x15\x6a\x18\x12\x31\x97\xbf\x70\x3a\x82\x8d\xd0\xed\x2c\x9c\x0e\x7d\x74\xcb\xad\x36\xf6\x7c\xa8\xf2\xf8\xe5\x72\x29\x7c\xd0\xa9\xca\x94\xbf\xe5\x52\xf8\x60\x35\xa7\x7b\x39\x69\x8b\x95\xb0\xbc\xca\x49\x5b\x70\x20\x17\xec\x72\xce\x96\xf9\x30\xf4\x62\x39\x67\x6b\x4f\x10\x2b\x61\x39\x41\x1f\x64\x75\x59\x2f\x27\x68\xb1\x10\xdc\x67\x97\x13\x64\x10\xe0\xf2\xe3\xb4\x9c\xa0\x5d\x87\xc4\x26\x27\x68\xf1\x2a\xb9\xf5\x2e\xe7\x47\x6f\xdc\xda\xfd\x70\xe4\x8b\x73\x62\xdc\xdf\xd2\x91\x7f\x60\xdd\x97\xfc\xa5\x23\x4f\xaa\xd5\xef\xab\x1c\xb9\x16\x01\xb2\x31\xf2\x97\x0e\x9d\xf0\x41\xe2\xcf\xf2\x97\x0e\xdd\x6a\x25\x4b\xfa\x94\x8e\xfd\x83\x59\xfc\x52\xa4\xeb\x25\x9d\x8e\xca\xe3\x4c\xa7\x03\x9b\xc0\xfe\xa0\xa4\xd3\x61\x94\x21\x67\x70\xe6\x2f\x9d\x0f\x8c\x02\xfb\x2b\x96\x4e\x47\x1e\x5e\xc6\xe4\xa6\xf3\x91\x24\xcb\xca\x8c\xd2\xf9\x30\xb5\x6e\x49\x2d\xd2\x05\x93\x64\x09\xfb\xe5\x4c\x17\x8c\x9e\xbc\x4d\x2d\x0e\x27\xe4\x20\x4b\xd8\x2d\xee\x70\x42\x0e\xb2\x84\xdd\xdb\x0f\xe7\x03\xab\xc0\x1a\xdc\xf3\x70\x3e\xb4\x0a\x2c\x17\xe9\xe1\xe0\xc9\xad\xfb\xb9\x20\x0f\xc7\xae\x73\x8f\x13\x10\xf2\x77\x38\xaa\x0f\xda\xe6\x5e\x87\x83\xb2\x08\xe2\x72\x3f\x39\x1c\xd5\x41\xc6\xb7\x9f\xa7\xc3\x41\x1d\x6e\x98\x8d\x51\x1d\x7b\x54\x7c\x26\xf7\x65\xae\x85\xc3\x33\x3e\xb8\xea\x74\x2d\x9c\xe4\xc8\xbb\x21\x9e\x0e\x1d\x13\x40\x71\xc9\x9f\x0e\xfd\x74\x2d\x74\x66\xe8\x74\xec\x84\x4e\xee\xef\xce\xe9\xd8\x4f\x92\xe4\xe5\x33\xa7\x4b\xe1\x83\x46\x52\x55\xfe\x4e\x67\x83\x2a\x26\x7b\xef\x3b\x9d\x0d\xa3\x29\x97\x9f\xa7\xd3\xa5\x40\x19\x93\xbd\x07\x9f\xae\x84\x0f\xfa\x74\xc1\x9c\xce\xd9\x07\x7d\x7f\x77\x4e\xe7\xec\x83\x3a\xe4\x07\xa7\x53\x66\xe0\xe4\x92\x70\x9f\xce\x0f\x81\x93\x7b\xe7\x38\x9d\x1f\xcd\x09\x14\xb9\xcf\xdf\xe5\x6c\x50\xa1\xa4\xb9\x43\x5e\xce\x86\xb6\x83\xfd\xe5\xbc\x1c\xfa\xc5\xd0\x7d\x8f\x2f\x87\x8e\xed\x60\x6f\xa4\x97\x43\xd7\x76\xb0\x9c\x8e\xcb\xb1\x5f\xbc\x05\x6e\x27\x97\x43\xd7\xe3\x49\xba\x54\xfe\x2e\x07\xfa\x41\x2d\x3e\xbb\xcb\x81\x6a\x4f\x40\x7a\xe5\xef\x72\x54\x1f\xd4\xbe\xff\x6d\x8f\x8a\x64\xf0\xe0\x97\xb7\x4f\x1d\x73\xc2\xde\xd5\x6e\xc7\x79\x5b\x89\x85\x1f\xde\x8e\x53\x73\x02\xe7\xae\xe4\xef\xf6\xa9\xdf\x3c\x75\x77\x9d\xdb\xa1\xdf\x0e\x6a\xd8\xe6\xa0\x6e\x07\xe5\x3d\x1d\x94\x56\x81\xef\x65\xf9\xef\xaf\xf5\xed\x00\x29\x2d\x92\xd2\x91\xdb\x27\x69\x69\x11\xf9\xe0\xed\xe2\xdf\x85\x15\x99\xfa\xdb\x59\xd0\x95\xba\x94\x4e\xb7\xd3\x80\x2b\x75\xff\xd9\xe3\x34\x3c\x3e\x6f\xd9\xf6\xe3\x3c\x7c\x50\x9b\x1c\xf1\x71\x1e\xa8\x37\x92\x92\xae\xc7\x69\x30\x3b\x6e\xf9\xae\x3e\x3e\xdc\x87\x75\xed\x57\xf2\x71\x1a\x1e\x28\xe2\xfe\x7f\xa7\xe1\xe1\x24\x42\xb7\x8c\xc7\x65\xad\xab\x76\xa9\x20\x1e\x87\xfe\x38\x74\x06\xf0\x38\x74\x05\xff\x72\x87\x7b\x1c\xbb\x27\xd7\xfa\x12\x3e\x8e\xfd\xd9\x63\x67\xee\x1f\xc7\xfe\xb0\x04\x64\xaf\xaf\x63\x37\x8b\x6e\x13\xaa\xd7\x27\x49\x4c\x66\x75\x75\xbe\x2e\xe2\x17\x17\x92\xcf\xf6\x75\x9c\xfa\x82\xf7\x4d\x5f\x47\x85\x94\xef\x7e\xd3\x5f\x47\xa5\x6e\x5f\xbe\x9a\xaf\xdd\xc5\xa7\x4b\x78\x55\xfe\x5e\xbb\xfb\xf2\x1a\xfa\x65\x7e\xed\xad\x52\x9e\x53\x70\xb2\x28\xe5\xcb\x4f\x42\xc3\xeb\x5a\x14\xee\x40\x21\x66\x21\x8b\xc2\xbd\x98\x4e\x47\xcd\xfe\x2c\x2a\xf7\x62\xe9\x0e\xf6\xed\xa2\x72\x07\xbe\xcb\x6c\x9b\xb6\x51\x4f\x8b\x39\x2a\x4a\xf7\xa2\x74\x5f\xac\xf6\xa2\x74\x07\x3c\xf0\x37\x8b\xd2\xbd\x94\xdd\x37\xda\x14\xcd\xc0\x5a\xfe\x9b\xa2\xb9\x28\x9a\x39\x47\x2b\x8b\xa2\xb9\x58\xbd\xd0\x21\x28\x9a\x8b\x59\x71\xd4\x19\xca\xa2\x6a\x06\x96\x32\xab\xa8\x9a\x8b\x12\x99\x12\x42\x59\x94\xc8\x40\xa1\x0c\x71\x96\xb2\xfb\xb6\xeb\xee\x24\x6d\x8f\x6d\x4e\xb9\x37\x60\xca\x8b\x61\x97\xa4\x2b\x66\x51\xc4\x02\x3d\xed\xae\x22\x16\xe8\xe9\x3d\x15\xb1\xa5\x4e\x7f\xc9\xbf\xa9\x58\x81\x20\xc4\x38\x0b\x99\x6b\x59\x14\xb1\x94\xd0\xc9\xa2\x88\x05\x96\x1f\xad\xa2\x88\x2d\x7a\x75\xa9\x38\x93\xa5\xee\xbe\xb9\x78\xb9\x4c\x15\x0b\x2c\xea\x9c\x65\x21\x9e\x52\xe8\x8a\xa5\xa2\xae\x05\xc2\xed\xb1\xa8\x6b\x8b\x21\x96\x14\xa6\xc9\xd2\x1c\x41\xf3\x19\xf8\xff\x3e\x03\xeb\xde\x53\x86\x26\x4b\xf3\x19\x58\xf7\x3e\xfd\x37\xc7\x69\xd8\x25\x45\x67\xb2\xa8\x75\x81\xc1\x81\x04\x59\x9a\xcf\x80\x52\xf8\xee\x1f\x45\xf5\x5b\x7a\xf5\x97\xdc\x54\x29\x0a\x8c\x1f\xec\xb0\xa8\x44\x8b\xb5\x31\x48\x0a\xcf\xd2\xed\xc7\x07\x83\xa3\x0c\xb2\xa8\x44\x8b\x35\xee\x29\xa3\x92\x45\x29\x0a\x78\x68\x44\x96\x6e\xd7\x3e\xe8\x95\x17\xb2\x74\xbb\x66\xa4\xa4\xe3\xec\xbb\x6b\x26\x97\xd8\x74\xd9\x84\xaf\x91\xaf\x7f\x51\xae\x02\xd5\xaf\x67\x51\xae\x96\x4e\xdc\x17\x84\xb7\xa8\x4d\x81\xe8\xce\x8f\xda\xb4\x58\x1a\x9f\x62\x2e\x59\x86\x0f\x6a\x70\x10\x8b\x7d\x55\xaf\x16\x65\x27\xc5\x62\xb2\x28\x3b\x81\x4e\xd6\x79\x16\x65\x67\xb1\x90\x06\xe9\x7c\x59\x86\x63\x42\x77\x12\x10\x92\x45\xd9\x59\x86\xab\xcf\x05\xa3\xc8\x04\x3a\x81\x18\x59\xd4\x98\x40\x1b\x0e\x4a\x8d\x59\xf4\x36\xa7\x8b\x54\xc5\x08\x04\x11\x16\x59\x14\x8c\x40\x74\x88\x77\x51\x30\x96\x7d\xd6\x16\xb7\x54\x30\x02\xa1\xd5\xa9\xa8\x17\x81\xe6\x8e\x58\xd4\x8b\xc5\x08\x4e\x8a\xab\x67\x51\x1c\x16\x23\x38\xe1\xe2\x45\x71\x08\xd4\xee\xa4\x4d\x87\x69\x50\x27\xb9\x2b\x59\xa6\xcf\xce\xc3\x6a\x7d\x8b\x95\x90\xc0\x77\x99\x6d\x0e\xfd\x83\x46\x34\x45\x96\xb9\x87\xce\xf3\xac\xe3\xbf\xbf\xd7\x25\x7c\xdc\xc6\x7c\x62\x48\x2a\xe1\x5c\x05\x69\xa0\x4e\xa9\x3a\x14\x08\x32\x84\xb2\xa8\x43\x8b\x3a\x94\xcc\xf2\x2c\xea\xd0\x62\xc8\xa7\x6b\x5a\x1d\x0a\xd4\xea\x56\xa3\x0e\x05\x6a\x74\xaf\x72\x99\x7c\x50\xbb\x5b\x88\x32\x14\x68\x03\xfa\x57\x94\xa1\x40\x74\x97\xa1\x2a\xb4\x58\x4e\x32\xdd\xdb\xd5\x97\x85\xe3\x6e\xbb\x6b\x4e\x2d\x09\xd4\xbd\xa3\xaa\x25\x8b\x81\x9c\x78\x59\xb2\x28\x00\x8b\x81\x9c\xe8\xcb\xb2\xec\xac\x9a\x10\x63\x7f\x16\x35\x61\x31\x90\xb3\x33\x67\x6a\xc2\x62\x20\x27\xde\x84\x2c\x8a\x42\xa0\x13\x9f\x92\x45\x4d\x08\x7c\x97\xd1\x5d\x45\x21\x50\x08\x01\xc8\xa2\x28\x04\xa2\xbb\xc2\x96\x83\x5a\x04\x78\x63\xd7\x2c\xcb\xe7\xbf\x5e\xff\x8c\xa7\xa2\x4e\x04\x82\x60\xeb\x2c\xea\xc4\x62\x4a\x99\xaf\x9b\x3a\x11\x68\xfb\x6b\xa2\x4c\x2c\xe9\xb6\x85\xb1\xbc\x28\x00\x81\xa5\x85\xae\xa8\xff\x8a\x61\x9b\x0a\x9e\xa2\xb2\x03\x6a\xf8\x09\x53\xd8\x01\x8d\x93\x4e\xb3\x28\xec\x80\x58\x2e\x34\x75\x5d\x39\xdc\x57\x20\x51\x45\xc5\x56\x0e\xb2\x04\x9a\x4d\xae\x2a\x75\x97\xea\xa9\xa8\xbb\x80\xe8\x68\xac\xa2\xee\x02\x3c\x2a\x3b\x8b\xb2\x0b\x58\xc5\x8d\xfd\xd8\xf7\xe4\x0d\x71\x6f\x50\x4f\x95\xd3\x95\x8c\x6c\x29\xca\x22\x20\xba\x8f\x58\x59\x54\xcc\x28\x73\x41\x2a\x8b\x8a\x41\x93\x7b\x4b\x55\xdd\x14\x53\xc5\x7c\x9f\x55\x37\xc5\xa0\x49\x19\x78\xb9\xbc\x29\x41\x93\xcd\x75\xab\x6c\x01\xd6\xc4\xfa\x59\x94\x2d\xc5\x1c\x30\x19\x70\xb9\x7c\x52\x17\xf1\xb5\x6e\x65\x2a\x19\xe0\xbb\x8c\x7e\x28\x65\x00\x1d\xe2\x59\x94\x32\x45\x29\xb3\xf9\x92\x52\x06\x28\xc5\x2d\x55\x29\x53\xac\x1f\xbf\xbf\x43\x97\x6b\xf9\xe2\x3b\xe4\x40\x55\x37\x40\xdb\x7b\x82\xea\x06\x58\xc3\xf9\xbe\x7c\x04\x1f\xd4\xb1\x7b\xeb\x23\xf8\xa0\x0f\xa9\x86\x12\x08\xe8\xc5\xcf\xbe\x12\x08\xa8\xc3\x8e\x29\x81\x8a\x09\x65\x9b\x16\xaa\x81\x8a\x2e\x55\x37\x5e\x35\x50\x21\x9c\x93\xac\xb0\x2c\xb7\x93\x41\x51\x90\xee\xd4\xde\x4e\xc6\xbd\x27\x83\x87\xa2\x04\x02\xcc\x44\xcb\xa2\x04\x02\x62\xf3\xda\xdb\xb9\xf8\xc0\xb4\xb6\x2c\xb7\x73\x61\xe9\x90\xfd\x46\x29\x7b\x80\x12\x72\x03\x65\x4f\xf1\xac\x5c\xf7\x17\x65\x4f\x79\xf6\x13\x66\x9c\x2a\x15\x20\x96\xeb\xf1\xf1\x09\x13\x2d\xda\x9d\xb3\xc7\x31\x7d\xda\xa5\xfe\x7e\xf2\x3f\xc5\x0b\x90\xdd\x17\x4a\xf1\x02\x7c\x97\x31\x4e\xd5\x0b\x10\x9b\x03\x3d\x8e\x80\x43\x6a\x7f\x3f\x37\x6a\x85\x04\x60\xde\x5c\x16\x85\x04\x50\x7f\xda\x45\xca\xeb\x4d\x5f\x6f\xca\x0d\xd4\x16\xc0\x77\x19\xa3\x52\x5c\x00\x26\xce\x65\x79\xf7\x4d\x0f\xac\x8f\xfe\x99\x4b\xe8\x7d\xfd\xe5\x77\xd3\xaa\x90\x00\x92\xf4\x9c\xac\xfa\x04\x01\x93\xe4\xb2\x2a\x2d\xea\x8f\x7a\xac\x14\x51\xcd\xaa\x8e\x00\x92\x5c\x9f\xac\xea\x88\xfa\x0b\x2f\xf3\xa7\xcb\x36\xce\x39\x64\x83\xa9\x6a\x06\x60\x51\x9a\x28\xab\x9a\xa1\xfe\x2e\x7f\x69\xd7\x6e\xdb\x38\x8a\xe6\xe7\x2f\x1f\x9b\x70\x01\x60\x51\xa9\xfa\xf1\x80\xfa\xe3\xac\x8c\xac\x3a\xf2\x80\xec\xf1\x87\x4f\x75\xd5\xcf\x07\x64\x67\x9f\xad\x4a\x96\x5a\x1c\x33\xfb\x7d\x55\x9f\x00\x41\xd1\x8b\xac\xea\x13\x60\x11\x1d\x9c\x55\x79\x52\x3f\x91\xf1\xfd\x72\xd0\x66\xcf\x0b\x71\x80\x7c\x98\xab\x22\xa3\xd6\x5d\xa7\x8c\x1b\xa8\x28\x80\xc0\x3d\x9d\x55\x45\x01\x7c\x97\x05\x6d\xde\x94\x82\x19\x04\x06\x65\xd5\x53\x06\x24\x39\x74\x59\xd5\x1d\x80\x09\x8a\x59\xd5\x1d\xb5\xda\x35\xd8\x60\x55\x64\x00\x49\x32\x49\xd6\xba\xbb\xe6\xa4\x62\xea\xa8\x8a\x0c\x20\x25\x58\x55\x91\x51\x9b\x23\xe0\x03\x5e\x95\x14\x80\x09\x84\x59\x55\x14\xc0\x72\x1f\xa9\x2a\x8a\xda\x5c\xeb\x7c\xac\xab\xf2\x01\x30\xb5\x31\xab\xce\x33\xc0\x94\xc2\xac\x0a\x0a\xc0\x1c\xbd\xac\x0a\x0a\x20\xc9\xe3\xca\xaa\xa0\xa8\xcd\xf5\xc4\x46\x55\x75\x9e\x01\x49\x8a\x59\x56\x7d\x67\xc0\xc2\xf3\x9f\x55\xdf\x19\x90\x54\x44\xc9\xda\x1d\x79\x27\x55\x90\x1d\xae\xea\x4d\xab\xdd\x87\x32\xbd\xcc\x31\x75\x1f\x0a\xfd\x57\x9c\xd4\xee\x0b\xc1\xfb\x5b\x55\x22\x80\x59\x8c\x59\x55\x22\x40\x92\xa7\x93\x55\x25\x52\xbb\x03\x60\x57\xaa\x8a\x0c\xc0\xc4\xc6\xac\x8a\x8c\xfa\x29\x8a\xfa\x23\x42\x20\xab\x92\x02\x08\x1d\xec\x55\x45\x51\x87\xdd\xb5\x6f\x3a\xb7\x00\x53\x38\xb3\xea\xdc\x02\xbe\xcb\xfc\xa9\x4f\xe5\x83\x45\x8e\x7f\x56\x55\x46\x1d\xe9\x65\xf4\x4d\x95\x01\x2c\x4a\xc5\x65\x55\x65\x00\xab\xf9\xa4\x74\x6e\xd5\xe1\xf2\x73\xe1\x8e\x3d\x04\x96\xdf\xf2\x32\x9f\xc1\x24\x20\xef\xe7\x13\x55\x52\x00\x11\xce\xa4\x92\xa2\xce\xe1\x65\xdc\x54\xb5\x00\x98\x46\x9b\x75\x3a\x82\x4f\x06\x7c\x97\xd1\x5d\x65\x40\x9d\xae\x05\xfa\x21\xe5\xaf\xe1\xfb\xce\x17\xbc\x4a\xba\x81\x5a\x5c\xdf\x92\xee\x1a\x3e\x52\x87\x25\x9f\x06\x96\xce\xca\x2a\x9f\x06\xea\xaf\xb8\x7b\x49\xa8\x81\x1c\xee\x1e\xba\x75\x80\xd0\xe6\x5f\xf5\xea\xd4\x78\xfc\xa5\x97\x39\x21\x1f\x98\x6a\x99\x55\x8e\x0d\xac\x70\x77\xd2\x5f\x53\x57\xf5\x97\x74\x57\xef\x0c\x90\x72\x84\xaa\x77\x06\xf8\x2e\xf3\xdf\x1c\x15\xa7\x55\x0d\x77\x69\xd9\x79\x5d\xb7\x97\x31\x50\x69\x31\x10\x14\xe1\xcf\xaa\x43\xa5\x26\x2b\x90\x03\x5a\xb2\x4a\x8b\x81\x45\xe6\x46\x56\x69\x31\xf0\x5d\xc6\xbf\xc9\x8b\x01\xf3\x4c\xb3\xea\x3e\xa9\x39\xbc\x8c\x07\x23\x55\x06\x92\xf2\xe9\x59\xa5\xca\x40\xfd\x51\x6a\x26\xab\xbe\x12\x60\x35\xbf\x03\xba\x4a\x80\xef\x32\xdb\x7c\x08\x24\x42\x8d\x7d\x03\x1f\x42\x9e\x5e\x66\x7f\x7d\x0a\xd4\x89\x9f\x7e\xa3\xa4\xd4\x35\x5f\x2f\x63\xb9\x1d\x3e\x85\x0f\xcc\xf5\xcd\xaa\xab\xa4\x1e\x8e\x14\x23\x45\xd5\x31\x02\x24\xb5\x84\xb3\xca\xbc\x81\xef\x32\x3a\x72\xf8\x14\x38\x4f\x2a\x7c\xcc\xfa\x4a\x80\x1c\x38\x2e\xab\xbe\x12\xa0\xfe\x38\x8e\x25\xeb\xe1\xe0\x3f\x30\x6d\x35\xeb\xe1\xe0\x3f\x48\x2d\xd8\x55\x66\x0f\xe4\xf0\x5d\x96\xd9\x03\x66\xca\x66\x95\xd9\x03\x29\xd3\xac\x32\x7b\xe0\xbb\xa5\x97\xb9\x16\x0e\xd7\x82\x7f\xe6\x5a\x38\x5d\x0b\x3e\x03\xdd\x27\x80\x09\xcc\x59\x75\x9f\xd4\x73\x7a\x19\x5d\xd3\xe5\x01\xac\x39\xfe\xbb\x2e\x4a\x56\x1d\x22\xc0\xf7\x2f\xfe\xb3\x63\x3e\xb1\x46\xba\xf5\xa9\x19\x80\xfa\xa3\x74\x6d\x56\x45\x03\xb0\x48\x6e\xcc\xaa\x4b\x04\xc8\xb1\xbb\xe4\xa0\x2f\x47\xe3\x77\x4b\x1d\x01\x2c\xbd\x48\x55\x1d\x01\x7c\x97\xf1\x70\xd5\x11\x40\x0e\xbb\xa6\x8e\x00\xbe\xcb\xe8\x9b\x3a\x02\x58\xe4\xa1\x64\x55\x47\x00\xdf\x65\xac\x01\x75\x04\x10\xe1\x08\xd4\x11\x40\x0c\xbf\xcf\xca\x88\x7a\xb9\x8a\xfd\xb4\xab\x10\x80\xe4\x10\xde\xac\xd7\x1e\x95\xdb\xcb\x70\x08\x3e\xb7\x8b\xed\xc5\x7d\x43\x3d\x50\xe1\xfe\xbf\xe2\xe3\x95\xfc\x03\xa1\x71\xa9\xea\xff\xa8\xf7\xe5\x65\xb6\x79\x87\x0f\xcc\x06\xce\x2a\x13\x07\xea\xaf\xb8\x7b\xeb\x80\x00\x4c\xf3\xcd\xaa\x03\xa2\x3e\x4e\xa5\xcf\x4f\xc2\x0e\xe4\x70\xb3\x92\xb0\x03\xa1\x27\xb6\x4a\xd8\x81\x1c\xbe\x12\xfa\x1f\x80\x1c\x3e\x3d\x29\x3c\xf0\xfd\x3f\xcf\x45\x0e\x0f\xe4\x70\x1f\x95\xc2\x03\xf5\x57\xfc\xa8\xca\xe1\x81\xd5\xfc\x5a\xea\x93\xa8\x8f\x63\x77\x31\xe8\x80\x00\x56\x77\x72\x75\x40\x00\x49\x19\xd8\xac\xfa\x1f\x80\x1c\xbe\x26\xfa\x1f\x00\x33\xad\xb3\xbe\xae\xb5\x97\x37\x07\x11\x58\x5f\x9f\xc0\xeb\xf6\xe8\x77\x5c\xd9\x00\xe4\x70\xa7\x52\x35\x00\xdf\x65\x4c\x9a\xb2\x01\x58\x7b\x31\xab\x1a\xea\xeb\x8a\x91\xc2\xbf\xae\x18\xab\xf9\x61\xaa\xa8\x7a\x29\xaa\xb2\x41\xa3\x55\x53\x36\x00\x5f\x5b\xa7\xad\xd8\x46\x7f\x59\xb9\x4d\xdd\xd0\x7e\xf6\x97\x69\x6b\x3a\x16\x80\x1c\xb0\xde\xa6\x63\xa1\xa1\x11\xc8\xd1\xce\xa6\x46\x68\xbf\x7d\xd3\xef\x51\x35\x69\x3d\xb0\xd4\x8b\x4d\xde\x0e\xd4\x9f\xe1\x55\x4d\xe2\x0e\xa4\xd6\xad\xa6\xaf\xa1\x15\x5f\x3e\x38\x6e\x93\xb8\x03\x49\x51\xd6\x6c\x12\xf7\x56\x9c\xb7\xf4\xa6\xcb\x36\x44\x2a\x1b\x43\xd3\xaf\x00\xa4\x2f\x5f\xd3\xaf\x00\xe4\xa8\x76\xed\xb4\x89\x9d\x95\x6d\xa1\x19\x7a\xd7\x8a\x65\xc7\xf9\x5c\x34\x55\x00\x60\xe2\x79\x36\x83\xea\x80\x20\x5f\x20\x9b\x41\x75\xc0\xf7\x4b\xee\xa9\x43\x02\x58\x1c\x0d\x9f\x4d\xf9\xd0\xea\xf0\x32\x6e\xaa\x30\x00\x56\xb1\x6b\x0a\x83\x66\x29\x3d\xd2\x3a\xb2\xa9\x0c\x80\xa5\x63\xb7\x55\xc7\x59\x0f\x2f\x63\x3a\xaa\xa3\xe2\xd8\xa3\x59\x6c\x72\x54\x6a\x8a\x5a\x18\x95\x9a\x02\x30\x39\x3f\x9b\x9a\x02\x88\xe5\x7c\x28\x29\x5a\x73\x54\xde\x54\x2f\x05\xb0\x38\x52\x21\x9b\x92\x02\x58\xcd\x11\x28\x29\x5a\x73\xa0\xc5\x7f\x73\xa0\x1f\x24\x71\xff\xd9\x94\x14\xc0\x77\x99\x6d\x0e\xb4\xf9\xa9\xb4\xc9\x81\xb6\x3d\x02\x6f\xea\x08\x3c\x89\x77\x78\x03\x47\x60\x31\xbb\x0a\x4f\x68\x6a\x03\x20\x07\xbb\x7a\x53\x1b\x00\x8b\xaa\xf7\xd9\x8c\xb4\x03\xbe\x5f\xf2\xf8\xf4\x6f\x00\x39\xb0\x91\x36\xfd\x1b\xad\x3b\x2a\x78\x42\x53\x42\x00\xd9\x9d\x0f\xfd\x1b\x80\x75\x03\xb2\x29\x2a\x5a\xf7\x51\x39\x2a\x3d\x17\x40\x68\x37\x69\x7a\x2e\x9a\xaa\x82\x34\xc7\x6c\xaa\x0a\x20\x38\x32\x25\x9b\xaa\xa2\x8d\xe6\x65\x3c\x51\xc3\xe3\x00\xcb\x0b\x64\x53\x41\xb4\xe1\xec\xb6\xf8\xef\x8f\x76\x53\x3a\x00\x6b\xb9\xf0\x8c\x8b\x6b\xc3\xae\xf3\x21\x68\x4a\x07\x20\x38\xf4\x24\x9b\xd2\xa1\x4d\xfb\xe4\x6b\xad\x03\x01\xb0\x96\x41\x36\x1d\x08\x40\xee\xc7\xa6\x24\x68\x73\x99\x51\xc4\x0d\x74\x20\x00\x49\x75\xf1\x6c\x3a\x10\x80\xd8\xb3\xaa\x03\xa1\xa9\x1c\xaa\x2f\xe7\xdc\xfd\xf8\x88\x21\xc5\xcc\xb2\xe9\x40\x68\xd3\x75\xe1\x86\xa0\xed\x1f\x48\x4e\x97\xcb\xa6\xed\xbf\x21\x26\x7e\x15\xcd\xdb\x54\x13\xc0\x52\x9a\x34\x4d\xf8\x80\xe5\x1e\xb2\x69\xc2\x6f\x8a\x89\xba\xff\xcd\xee\x12\x23\x66\x2c\x4f\x53\x4c\xb4\x70\x19\x4f\xfb\xe1\xa3\x0c\x5e\x44\xd4\x4a\x53\x4c\xb4\xe5\x5b\x87\xe8\x68\xc6\x75\x01\xab\x41\xc5\x9b\xca\x01\xa8\x3f\x23\x80\x9b\xd2\x01\xb0\x2a\x44\x36\x95\x43\x23\xd1\xeb\x27\x25\x6a\x1a\xf1\x01\xeb\x38\x64\xd3\x88\xdf\x76\x5a\x17\x5f\xae\xa6\xc5\xbe\x19\xc5\xe5\x8b\xa2\xc1\xbe\x2d\x77\x48\x1c\x2f\x6d\xed\xfe\x72\x98\xbe\x2b\x4f\x53\x7c\x53\x26\x54\x74\x64\x53\x26\x00\x6b\x6f\xfb\xca\x84\xa6\x4c\xa8\x7e\x7e\x94\x09\x40\x6a\xfb\x6c\xca\x84\x76\x38\x21\x58\x06\x9a\xb6\x72\x60\x4d\x78\x77\x93\xc4\x03\xf9\x73\xcd\x48\xe2\x9b\x07\x34\xe9\x4e\x6a\x32\xf6\x26\x63\x77\x3e\x64\xec\x80\xa5\x78\xb2\x49\xd8\x81\xef\x97\x3c\x84\x63\xf7\x43\xc6\x4e\xd7\x64\xec\x4d\xc6\x3e\xed\x86\x53\x74\xb8\x28\x7d\xa4\x52\x76\x20\xf4\x1c\x34\x29\x7b\x93\xb2\x57\xbf\x65\x52\x76\x60\x19\x64\xd5\xa4\xec\x40\xfd\x35\xd8\x7e\xd3\x68\x0f\x58\xc4\x22\x9b\x2c\xbe\x71\x46\xd3\xaf\xf9\xe5\x32\xe2\x09\x58\x54\xe2\xcb\xa6\x69\x1f\xf8\x2e\xa3\x23\xda\xf6\x01\x8b\x51\x64\xd3\xb6\xdf\xce\xf0\x32\xa6\x52\x3a\x0f\x58\xd4\x23\x9b\x6c\xbe\x9d\x8f\x97\xf1\x5c\x8c\x49\x02\x2c\xea\x91\x4d\x73\x7f\x93\x80\x37\x5f\x49\x09\x78\x93\x80\x4b\x15\x24\xe0\x4d\x66\x6d\x80\x72\x93\x59\x03\xa9\x87\xb3\xc9\xac\x81\xb5\x77\x6a\x99\x35\xf0\xfd\x92\x19\xd7\x42\x0f\xc4\x7e\x4b\xb5\xd0\x37\x09\x78\xf3\xdb\x28\x01\x6f\x12\x70\x5f\x35\x09\x38\x60\xd5\x8d\x6c\x9a\xe8\xdb\x0d\x9b\xda\x5f\x38\x8d\xef\x80\x75\x32\xb2\xc9\xbf\xdb\x3d\xbc\x8c\xa9\xd4\xd4\x0e\xc4\x74\x04\x5a\xda\x01\x4b\x07\x65\xd3\xd2\x0e\xa4\xc1\xdf\x4d\x4b\x7b\xbb\xed\xad\x5f\x0c\xcd\xea\x4d\xe6\x8e\xf9\xa7\xdd\xbb\x6b\xec\x1f\xbe\x68\x12\x77\x20\x0c\x11\x6f\x12\x77\xa0\xfe\x9a\xdf\x15\x23\x87\x80\xa5\x16\x6c\x46\x0e\x01\x39\x7c\xb9\xa5\xf7\xc0\xf7\x4b\xff\xcd\x27\xf5\xb8\xcb\x30\x4c\xf9\x7d\x93\xb9\xb7\xfd\x6f\x0e\x0a\xe6\x1e\x3e\x02\x99\x7b\xd3\xd2\xde\x5c\xe1\x5a\xda\x81\x1c\x3e\x76\x29\x73\xd3\xd2\xae\x87\xa8\xc9\x99\x01\xab\x8b\x64\x93\x32\x37\x2d\xed\x46\xeb\xb5\x77\xdf\x81\x77\xd4\xc1\x6b\x69\x6f\xf2\x63\x4a\xa0\x67\x97\x1f\xf7\x9f\x6b\x92\xef\x50\x37\x18\x07\x48\x4e\x58\xc8\xae\x0d\xbd\xff\x0e\x2f\x5b\xb4\x9d\xb6\xa9\xc8\x1b\x4d\x97\x4d\xbb\x8a\x2e\xff\x26\x19\x06\x56\x85\x97\x76\xc9\x70\x97\x0c\x93\x17\x9d\x5d\x32\xdc\x25\xc3\x58\xe4\xbb\x64\x18\xc8\xb1\xfe\xf0\xd5\xee\x9a\xbd\x81\x1c\x58\x66\xbb\xec\xb9\x4b\x95\x75\xad\x76\xa9\x32\xb0\x0c\x30\xe9\x52\xe5\x2e\x55\xc6\xa6\xd6\xa5\xca\x9d\xa3\x6a\x7e\x54\x4c\xc8\x6e\xfe\x09\x90\x63\x39\x98\xc7\x26\xc7\xcc\x62\xec\x12\x63\x20\x39\x59\x29\xbb\xc4\xb8\xcb\x78\x49\x9d\xce\x2e\xe3\xed\xd8\xbd\xa9\x33\x95\x5d\x76\x0b\x58\x80\x28\xbb\xec\xb6\x4b\x5b\x9b\xa3\x92\xb6\x02\x4b\x1e\xd8\xa5\xad\x5d\x8e\xca\xd9\x04\xd9\xe5\xa8\x40\x72\xc4\x4c\x76\x39\x2a\xb0\x4a\x7a\x95\xb3\xd6\x5c\x8c\xac\x95\xae\xdd\x1b\x58\xee\x07\x5d\xda\xda\xe5\xa8\xcd\x39\x92\xa3\x76\xed\xde\xec\xdd\x5d\x8e\x0a\x7c\x97\x79\x53\xa7\xb2\x69\xcf\xf1\xa6\xae\x1e\xa9\x2c\xa5\x69\xb3\x4b\x65\xfb\xa6\xb2\xfe\xdb\x1e\x15\xdb\xa8\x57\xc9\x64\x7b\xf7\x4d\x74\x08\x12\x52\x60\x19\xb9\xd4\xb5\x72\xf7\x4e\x3f\x94\x1d\x5d\x63\x35\x90\x03\x0a\xd9\x25\x9f\xc0\x77\x99\x3f\x75\x19\x53\x61\x8c\xa2\x63\xd9\x25\x9f\x7d\x14\x2f\xe3\xa6\x1a\xab\x81\xf5\xf3\xb9\x18\xfe\xd2\xc7\x3e\x0f\xd0\x36\xfb\x26\x21\x85\xde\x76\x09\x69\x1f\xaf\x97\x71\x07\x53\x1c\x00\xcb\x0d\x66\x37\x60\xa5\xcf\x7d\x24\x18\xa3\xd7\x96\x0c\x24\x67\xba\x64\x97\x5d\x02\xdf\x65\xb6\x79\x07\xe9\x25\x4c\xa1\x4b\x2f\x3b\x81\x27\x3f\x9d\xb5\x5d\xe2\x08\x84\x9f\xed\x2e\x6f\x04\xea\xcf\xf0\x81\x2e\x71\x04\xac\x32\x94\x5d\x2b\x74\x97\x4b\x1a\x8c\xd0\xe5\x92\xdd\x83\x43\xf9\x14\x74\xb9\x24\xf0\x5d\x46\x47\x0c\x24\x01\x16\xd5\xbd\xb3\x1b\x48\xd2\x09\x07\xf9\x75\x5f\x05\xc9\x64\x37\x2d\xc1\xb7\x54\xfb\x35\x50\x7f\xa6\xc3\x74\x0d\xd8\x80\xa5\x8d\xb2\x4b\x39\x7b\xf8\x4c\xbb\x1d\x71\x58\xe6\x20\x38\xbd\xc6\x88\x00\xcb\xb8\xbe\x2e\x0b\x05\xcc\xb0\xcc\x2e\x0b\x05\x96\x79\x34\x5d\x93\x76\xd7\x30\xad\x7f\xbf\x4b\x2f\x3b\x45\x03\xfe\x5d\x66\x6f\x17\x27\x16\x7a\x4b\xc3\x41\x80\xa2\x91\xa8\x4b\x2e\x81\xa9\xab\xae\x4b\x2e\x81\x69\x1a\x4d\x37\x1a\xa4\xaf\x9b\x26\x1e\x8a\x36\x6e\xa0\x69\xcc\xef\x32\xd0\xfe\xb1\xce\x69\xc6\x4a\xd7\xc4\xdd\xad\x19\xd0\xdd\xf4\xb5\x71\x03\x65\xba\x48\x35\x71\x77\x33\x04\x9c\x0b\x4d\xdc\xc0\x34\x89\xa5\x9b\x20\x00\xcc\xf5\xf3\xbf\x5c\x55\xe9\x93\x43\xb4\x74\xe9\x2c\x30\x15\x4f\x5d\x36\x0b\x7c\x97\x31\x26\xe9\x2c\x50\x48\x46\xcf\xae\xd1\xbb\xe7\xf5\xfd\xb2\xf8\x67\x3e\x25\xea\x01\x48\xe5\xbb\x81\xff\x40\xa9\xcd\xce\xee\x91\xbf\xc4\x13\x70\x95\x26\x6f\xa0\x52\xe7\x28\xbb\x26\x6f\xa0\xe8\x2d\xec\xf2\x67\xa0\x50\x08\x3c\xbb\xfc\xb9\x1f\x0c\xdc\xe9\xd1\xe0\x0d\xf4\xb6\x7f\xe8\xc0\x0f\x0e\x0c\xdb\x4d\x8e\x1b\x83\x77\x73\x61\x4b\x9f\x81\x66\x36\x4c\x97\x3d\x03\xc5\xec\xa3\x2e\x7b\x06\xe6\xbf\xab\x5c\x03\x07\x6b\xa0\xd8\x2f\xd7\xc0\xe1\xe4\x30\xad\x92\x67\x60\x9a\x32\xd3\xe5\xce\x40\xcd\x7d\x95\x93\x73\xb2\x2c\xe0\x7b\x5d\x9e\xdc\x4d\x16\xf0\xef\xb5\x76\x03\xd3\x24\x94\x2e\x73\x06\x9a\x2e\x93\x2e\x73\x06\xe6\xc2\x53\xd1\x25\xce\x40\x29\xed\xbf\x4b\x8f\x66\x97\x57\xf7\x93\xf1\x4a\x1d\x34\x75\x03\x9d\x7a\x3f\xd9\x35\x75\xf7\x93\xc1\xb9\x5f\x19\xfc\x0f\xd4\xb2\x7f\xb8\x07\xf7\x7e\x57\xc1\xe8\xba\x44\x1b\xe8\x94\x4a\xc9\xae\x3d\x1c\x68\x13\x61\xda\xb5\x87\x03\x45\xb3\x7c\x97\x8d\x03\x75\xfa\x4a\xc9\xc6\x81\xc9\xf9\x4d\xd9\xb5\x86\x03\x4d\xb7\x54\xd7\x1a\x0e\x54\x6a\x1f\x65\x97\xb2\x03\xdf\x8a\xb7\x17\xae\x06\x4a\x96\x19\xfb\xd1\x35\x69\x03\xdf\x65\x0c\x49\x9b\x76\xbf\x79\x12\xf6\x4c\xfb\x75\xbf\xdd\x72\x5c\x6e\x06\xb4\xf4\x9b\xd7\xcc\x5d\x4e\xfe\x0c\x4c\x33\x1c\xba\xfc\x19\x98\x9a\xb3\xba\x91\x2a\xc0\xf7\x67\x5e\xe6\xfc\xdf\xac\x37\x98\x66\x97\x65\x03\x6d\xca\x58\x34\x99\x03\xd5\xf0\xa4\x2e\xf1\xee\x0f\x8b\x0b\xee\xd9\x65\xd4\x40\x37\xa2\xb4\xcb\xa8\x81\xb9\x29\x97\x8c\x1a\x68\xcb\xa7\x24\xa1\xee\x0f\xfb\x8b\x53\xa6\x75\xbc\x3f\x7b\x7f\xa1\x63\x9a\xc7\xfb\xc3\x28\x9d\x0b\x09\x35\x30\xf7\xcb\xae\x25\x1c\x98\xcb\x41\x6a\x09\x07\xa6\x79\x3f\xdd\xe8\x7c\xa0\x84\xec\x4d\xdb\x38\x50\xf7\xab\xf7\xec\x41\xb2\xc8\x64\x26\x1a\xc2\x81\x5a\xdc\x31\x35\x84\x03\x5d\xaf\x40\xd7\x10\x0e\x94\xea\x1b\xf4\x3a\xee\x97\x41\xba\x14\xe5\xf9\x40\xd7\x5e\xd7\xa5\xf9\xc0\x5c\xce\xb4\x34\x1f\xe8\xd3\x8d\x43\x96\x0f\xcc\x25\x5d\x94\xe5\x03\xed\xe7\x4c\x1b\x4f\xd3\xb5\x9f\x77\xc7\xad\xfd\xbc\xbf\xbc\x5c\xbb\xaf\x0e\x92\xd3\x39\x95\x8a\xdd\x90\x7e\x60\x9a\xba\x30\x54\x0c\x40\xa3\x6e\x56\x0e\x0d\xea\xc3\xe4\x7c\x7a\x31\x34\xa8\x03\xd3\x2c\x85\xa1\xac\x00\xa6\xf9\x0d\x43\x59\x01\x14\x4e\x7c\xcb\x61\x68\x0e\x50\x38\xcb\xe7\x93\x20\x36\x31\x15\xe1\x55\xcb\x26\xce\x4a\x2e\x5e\x95\x36\xf1\xb8\xf7\x0f\x4f\x9b\xce\xef\x3b\x07\x2b\x1c\x2a\x14\xa0\x99\x37\x35\x0c\xdf\x19\x3f\xc6\x88\xd8\x1b\x6a\x16\xa0\x19\x71\x3d\xd4\x2c\x40\xe3\x40\xa6\x1c\x4a\x96\x51\x26\x3f\xe4\xbf\x8c\xee\x07\xba\x11\x1e\x43\xb1\x01\x4c\x33\x1b\x86\x62\x03\x28\x12\xe9\xa1\xd8\x00\x6a\xec\xbf\xb7\xf7\x85\xc5\x8a\xd6\x18\xda\xe5\x87\x92\xc4\xb0\xb6\xa1\x24\x19\x85\xee\xa3\x07\x87\xf2\x03\xa8\x3f\xaa\xde\xe4\x50\x7f\x00\xcd\x57\x6b\x68\x97\x07\x26\x47\x74\x7f\x32\xce\x26\x36\xc0\xf4\xcf\x7c\x46\x14\x89\xe3\x94\xb2\x1c\x46\xf5\x00\x9d\x92\x65\x9f\x62\xb3\x89\x73\xea\xd9\x78\x86\xc6\xfb\xa1\xf1\x9e\x72\xf0\x39\x94\x37\x40\x33\xbd\x62\x28\x6f\x80\xc9\x79\xd9\x39\xaa\x93\x51\x1d\xb9\xb7\x74\xe4\x95\x6f\xdf\xfe\xa1\x03\xa7\xae\xb3\x1e\xe7\xa1\x2c\x02\x6a\x71\x7a\x94\x45\x40\x6d\x7c\xd5\x86\xd6\x7c\xa0\x5a\x64\x61\x18\x20\x34\x1a\x53\x81\x30\x18\x0a\x25\xe0\xeb\x3e\xb7\x54\x29\x01\x53\xc6\x38\x14\x4a\xc0\x34\x01\x63\x28\x94\x46\xe3\x89\x43\xf8\x87\xa2\x08\x68\xc5\xc7\xab\x26\x02\xa6\xa1\xed\x43\x4d\x04\x14\x3d\x3d\xc3\xdc\x7a\x60\x1a\xb4\x3c\x0c\x0f\x1a\x2a\x27\x23\x14\x87\xca\x69\x7c\x32\x69\x72\x0c\x54\x0e\x65\x12\x50\x46\x2f\xff\xfd\x55\x1e\xfa\x03\x80\x6a\xce\xd0\xd0\x1f\x00\x4c\x0e\x9c\xce\xa1\x3b\x60\xf4\x3d\x2f\xac\x4b\xe5\xd7\xe0\x2c\x9b\xfc\xd9\xe4\xd3\x27\xcb\x5e\x65\x38\xb4\xfd\x03\xdf\x2f\xbd\x81\x13\xc3\xf9\x36\xc9\xb7\x74\x28\xd2\x80\x6a\x62\xca\x50\xa4\x8d\x2d\xd2\xa6\x6d\xce\xcc\x07\x93\x73\xa2\x73\x28\xd2\x86\xc9\x0d\xfb\xcf\x9c\x98\xee\xc4\xd0\x0d\x93\x1b\x80\x12\x2e\x12\x23\x91\x80\x62\x38\xe0\x50\xdc\x8d\x4f\xb5\xcd\x74\x6b\x52\xb5\x01\x5f\x2f\xf8\x7f\x23\x91\x06\x07\xd0\x98\xf7\x32\x8c\x30\x1a\xfa\x09\xf4\x84\x0c\xfd\x04\xc0\x94\x94\x0d\xfd\x04\x40\xdd\x7b\x8c\xa9\x0d\xc0\x4c\xd7\xaa\x41\x47\x63\xd0\x7f\xa8\xdb\x50\x28\x02\xdf\xff\xdb\xe6\x00\x26\xcf\x09\x56\x36\x14\x8a\x40\xd5\x2e\x37\x14\x8a\x63\x32\x65\x98\x0c\x87\xca\x0e\xa8\xfb\x31\xa9\xec\x80\xfa\x33\x48\x73\x98\x53\x00\x4c\x0e\xdf\xcd\xa1\xd8\x03\xaa\x6e\xa1\xa1\xd8\x1b\x14\x9f\xe3\xa8\xe8\x4f\x3d\xdb\xe4\x9c\xb9\x79\xeb\x38\x00\xda\x1e\x93\x5a\x0f\x08\x0b\x2b\x0c\xb5\xde\x88\xdd\x0d\xef\x69\x37\x48\x07\xd7\xed\x34\xd4\x62\xc0\x6a\x30\xe0\x61\x78\xd1\xd0\x6f\x60\xac\xe8\xd0\x6f\x00\xa4\xc1\x04\x43\xbf\x01\xb0\xf6\xd3\xd4\x6d\x30\x96\xbd\x75\xff\x36\xbc\x08\xc8\xe2\xc6\xa9\xdb\x60\x2c\x17\xb2\x7b\xba\xca\x0e\x08\x13\x1a\x86\xca\x0e\xf8\x2e\xb3\xbb\x2e\x84\x0f\xd6\xbf\x7f\x73\x21\x7c\x90\x9c\x9e\x90\xc3\x40\xff\x61\x48\x93\x21\x80\x43\xb9\x07\xa4\x7a\x63\x28\xf7\x80\x25\xc3\x1c\x3a\x1c\x86\x51\x4e\x46\x22\x0e\x25\xe0\x30\xca\xc9\x9d\x46\x05\x38\x8c\x72\x32\x98\x6d\x28\x01\x81\x65\x19\x8f\xa1\x04\x04\xd2\xa0\x89\xa1\x04\x1c\xba\x2a\x8c\x48\x1b\x8a\x3b\x60\x29\x0b\x87\xda\x6e\x1c\xf6\xc3\x0d\x5b\xf5\x05\x2c\x63\x95\x87\xea\x6b\x18\x83\x64\x0c\xcf\x50\x7e\x01\x61\x42\xc0\xd0\x7d\x01\xec\xbc\xda\xa1\x22\x03\xc2\x84\xb0\xa1\x22\x1b\xc6\x1b\x19\xe4\x34\xd4\x5f\x40\x98\x24\x36\x8e\xdd\x35\xa3\x7a\xbd\xa5\x4f\xea\x38\xfc\xa5\x5d\xf3\x49\x11\x70\xb4\xbf\x25\x0a\x30\x20\x8b\x1f\x34\x05\x18\x90\xa6\x85\x0e\x05\xd8\x38\xf7\x59\xc9\x3c\x29\xb5\x15\xb0\x2c\xcb\x32\xd4\x56\xe3\x1c\x5e\xc6\x4f\xd5\x45\x40\x16\x77\x76\xe3\x8d\x86\xd1\x43\xfa\x64\x86\xfe\x86\x61\xf4\x90\x9f\x4c\xa3\x87\x86\xd1\x43\x46\xd0\x0c\x25\x15\xb0\xf6\xc7\x5c\x49\x05\xa4\x19\xfe\xc3\xe8\x21\x20\x25\xad\xe3\xdc\x23\x60\xa9\xf9\xe5\x53\x65\x01\x69\x5c\xcc\x50\x65\x0d\xdd\x19\x06\x6e\x0d\x05\x14\x90\x66\x12\x0c\x05\xd4\xb8\x1c\xa7\x6f\xa8\x72\x09\x48\xce\x43\xcf\xa1\x5c\x1a\xca\x25\xe3\xdd\x86\x72\x09\x48\x43\x7b\x86\x2e\x8e\xa1\x8b\xc3\x00\x86\xa1\x8b\x03\x58\x25\xec\x87\x43\xe7\x08\x1b\xe3\x67\x86\x1e\x0e\x60\x19\x08\x32\xf4\x70\x0c\xb5\x97\x41\x65\x43\xed\x05\xa4\xb1\x32\x43\x0f\xc7\xb8\x9b\x97\xf1\x53\x93\xa7\x81\x34\xf2\x66\x28\xc7\x80\xb4\xba\xca\xd0\xe9\x01\x84\x7a\x6f\xe8\xf4\x18\xba\x33\x74\xeb\x0f\x85\x16\x10\xb9\x7e\x7f\xf8\x54\xab\xc3\x80\xfa\x1b\xfb\x9f\x7d\x6a\x78\x40\x0c\xb9\x19\x7a\x40\x86\xee\x0e\x83\x86\x86\xe2\x0c\x88\x90\xea\x28\xce\x80\xdc\xd4\x59\x71\x36\x9e\xee\x2f\x79\xe0\xfa\x36\x80\xe4\x68\xc0\x1c\xaa\xb3\xa1\xbb\x43\x13\xf6\xd0\xdd\x01\xd4\x70\xf5\xa8\xce\x80\x61\x4c\xec\x50\x9d\x01\xad\xf9\xc5\x52\x9d\x01\xc3\x78\xe0\xa1\x3a\x1b\x86\x2e\x19\xa0\x36\x94\x67\x40\xf9\xb9\x37\x2a\xcf\x80\xa6\xc1\x6c\x3c\x7b\xe8\x54\xf7\xf7\x5b\xa4\x62\x03\x5a\x25\xd8\x68\xa8\xd8\x80\x11\xbe\x0f\x2a\x36\xa0\x19\xcd\x3f\x54\x6c\xc0\xb0\x78\xd7\x30\xe5\x1a\xa8\x9b\xd0\xe9\xbf\x19\x9f\x88\x1b\x9b\x56\x2a\xe2\x86\xc5\xd3\x7c\x9f\x15\x71\x40\xef\x2e\x73\x45\x1c\x50\xf7\xf4\x2b\xe2\x80\xb2\x24\xf0\x8a\x38\xa0\x85\xac\x52\x0d\x07\x0c\xab\x6d\x0d\x63\xa0\x80\xba\xdc\x2d\x94\x75\xc0\xb0\x8c\xd6\x50\xd6\x0d\x3d\x41\xc6\xb4\x4d\x75\x1d\x50\x54\x97\x53\x5d\x07\x14\x93\xba\xa6\xba\x6e\xfe\xf6\x31\xe3\x34\x35\x9b\x3a\xff\xdf\x68\x1a\x36\x69\x2e\xf3\xaa\x69\x13\xb3\x83\xca\x9a\x46\x53\x4d\xb3\x30\x8c\x7c\x9b\x0a\x3b\x60\x28\xc7\xa7\xc2\x6e\x5a\x74\x6d\xd9\x8b\xc3\xa6\x9b\xab\x82\xa6\xc7\xa6\xe7\xbb\x2a\xfd\xff\xd7\xa6\xf7\xbb\x8a\x8f\xf9\x54\xd8\x01\x45\xbf\xc9\x54\xd8\x01\x55\xb6\x33\x15\x76\xc0\xd0\x8e\x3d\xf5\x45\x4d\x93\x2c\xf4\xda\x4f\xbd\x4d\x40\xd5\x24\x33\xf5\x36\xcd\x4f\xff\x0d\xf7\xf9\xa9\xfe\x03\xbe\x5f\xda\xe6\x90\x3e\xb5\x37\xac\xab\x35\x55\x7b\xc0\x77\x99\xff\x76\xd9\x86\x6d\xa2\xd8\x74\xdb\x44\x19\x94\xee\x00\x1c\xb9\xc1\x5a\x06\x70\x4d\x83\xb5\x80\x62\xe4\xd7\x54\x14\x4e\x45\xa1\x11\x40\x53\x51\x08\x74\xd3\x1f\xa7\xa2\x70\x9a\x3d\xce\xa7\x76\x2a\x0a\x67\x75\xcf\xc5\x36\x34\x95\x68\x40\x4f\xa8\xc7\x34\xe2\x6a\xea\xa7\xfa\x77\x53\xfb\xf6\x41\x33\x98\x62\x2a\xc8\x66\xb3\x1f\x6c\x23\x53\xf9\x35\x4d\x02\x87\x9d\x4d\x5d\x57\x40\x99\x2e\x34\x15\x19\xd0\x0b\xec\x6f\x2a\xc8\x80\x5e\xf9\x1a\x4c\x05\x19\xd0\x65\x14\x53\x41\x06\x54\x8d\x30\xd3\x80\xab\xd9\xfc\x5e\xba\x44\x95\x5f\x40\x9f\xae\x2a\xe5\x17\xd0\xd3\x21\x29\xbf\x80\x6e\xe6\xcb\x54\x7d\x01\xf5\xa7\x23\x78\xb6\x3d\x4c\xd2\x33\x18\x91\x82\x0c\x68\xe6\x26\x4e\x15\x17\xf0\xfd\x90\xff\x57\x72\x01\xdd\x5c\xd3\xa9\xe4\x9a\x4a\x2e\x0d\x2c\x53\xc9\x05\x94\x70\xe4\x7a\xbc\x80\x4a\x05\xd5\x9c\x06\x65\x01\x95\x73\x5a\x73\x2a\xcc\x80\xaa\x21\x63\x2a\xcc\x80\x52\xf7\x2d\x5d\xa1\xe4\x9c\x9b\xca\x3a\xd5\x65\xd3\xd0\x2d\xa3\x65\xa6\xc2\x0c\xa8\x73\x0f\xd3\x29\x23\x74\x6b\xed\xff\x77\xca\xd0\x65\x56\xa6\x99\xea\xb2\xd9\xdd\x81\xd8\x79\xa7\xc2\x0c\x68\x52\xba\xa9\x30\x9b\x63\x8f\x9c\x31\xe9\x4f\x03\xba\xe9\xb3\x53\x65\x06\x34\xe3\x0d\xa6\xc2\x6c\x1a\xf3\x65\x70\xc8\x34\xa8\x0b\x58\x56\xfa\x98\x06\x75\x4d\xc5\x9a\xbe\xbe\xa9\x58\x03\xca\x2f\x6d\x72\x50\xc3\xef\x50\xfc\x77\xed\xef\x9c\x8a\x39\x60\xa9\x02\xa7\x62\x0e\xf8\xfe\xc5\xae\xbb\x4e\x06\x55\x12\x20\x90\x53\x81\x37\x15\x78\x46\x5e\x4c\x05\x1e\x50\x64\x0d\xd3\x44\x13\xa0\xeb\xcd\x9f\x6a\x3e\x60\xc9\xab\xa6\x9a\x0f\x28\xe6\xbb\x4c\x7d\x83\x73\x4e\xff\xdf\x5f\xba\x2a\xa8\x8a\x6e\x4d\xcc\x69\xad\x33\xa0\x37\xd7\xa6\xd1\x68\x40\x53\x9a\x4f\xa3\xd1\x80\x6a\xb5\x9c\xa9\x53\x71\x1a\x8d\x66\xb4\xca\xd4\xab\x08\x74\xc3\x75\xa7\xd2\x73\xea\x41\x54\xa1\x4e\x45\xe5\xd4\x83\xd8\x6c\x72\xe4\x7a\x10\x0d\x78\x98\x7a\x10\x81\x6e\x85\xcd\xa9\x07\x11\x88\x65\xd7\xd4\x9e\x40\xb7\x26\xe3\x34\x8c\x0d\xa8\xb3\xf8\x43\x17\x0a\x6a\x74\x42\xee\xa6\x6a\x14\x68\x8a\xfa\xa9\x1a\x05\x56\x75\x1d\xea\x78\x9c\xe1\x9a\x70\x39\xe9\x52\x04\x56\xfc\xec\xab\x0f\x5d\x67\xa1\x0e\xca\xa9\xb3\x10\xe8\xc6\x32\x4d\x65\x26\x50\x0d\xc6\x9c\xca\x4c\xe0\xfb\x25\x0f\x5d\x9f\x22\xd0\x0d\xa0\x9a\x2a\xcf\x69\xc4\x9a\xa1\x73\x53\xe9\x39\x3d\x2c\x68\xff\xd2\xa7\xc2\xe1\xa3\x7b\xfb\x57\x79\x02\xdf\x2f\x19\x95\xd2\x13\xe8\x56\x25\x9d\x6b\x8f\xc0\xa3\x01\x6c\x72\xd5\x2e\x2a\x6c\xfa\x45\x50\x79\x02\xbd\xba\x61\x2b\x3c\x67\xf2\xf6\x4e\xc7\xa9\xa4\x04\xca\xe6\x01\x4a\x4a\x60\xed\xaf\xa1\x5e\xc5\xa9\x57\x91\xf3\xab\x73\xea\x55\x9c\xbb\xec\x98\xbf\x74\x36\x8c\x91\xa3\x63\xea\x4e\xa0\xad\xfd\xf7\xce\x05\xa9\xe9\xbf\xcd\x6c\xcc\xa4\x01\x96\x59\x7d\xd3\x44\x1a\xa0\x6b\xd6\x9a\xba\x1e\xe7\xb1\x7b\xc1\xbf\xe9\xe3\x03\xda\xfe\xc8\xa9\x31\x81\x25\x55\x9e\x6a\x4c\xa0\xfe\xa6\x7b\x99\x22\x13\x58\x13\x2a\x3b\xd5\x98\xd3\xa0\xb6\xe9\x37\xc1\xa0\xb6\x69\x65\x2f\x77\x59\x9d\x75\xc0\xd2\x38\x3c\x15\x94\xd3\x38\xb7\x89\x74\x99\x2a\x4a\x60\x58\x49\x77\xea\xad\x03\x96\x71\xa1\x53\x6f\xdd\x54\x77\x5a\x24\x77\xaa\x3b\x81\xba\xc9\x8d\xba\x73\x1a\xfa\x66\x6e\xd4\x34\xf4\x0d\x58\x46\x41\x4f\xa5\x28\x10\x9b\x7b\x28\x45\xa7\x52\x74\xbf\x51\x4a\x51\x20\xb5\xaf\x4e\xa5\xe8\xfc\x74\x67\xec\xf5\xa8\xee\x04\xaa\xde\x86\xa9\xee\x04\xbe\x3f\xe3\x06\x0a\x4f\xa0\x55\x28\xf4\xd4\xbd\x07\x74\x53\xc0\xa6\xee\xbd\x79\xb9\xf8\x30\xea\x4d\xb5\x28\xd0\xcd\x6f\x9e\x3a\xf3\xa6\x95\xc2\xdd\x6b\x55\xa7\xd3\x00\x3c\xf7\x25\xd5\xe9\xb4\x50\x38\x36\x83\xa9\x38\x05\xbe\xff\xf7\x97\xce\xc6\x85\x35\x50\x5a\xad\x38\x9d\x06\xdb\x6d\x22\xa3\x14\x05\x8a\xb5\xaa\xa6\x52\x14\xe8\xfb\x13\x6c\xb0\x1d\x10\x5a\x83\xa7\xce\x42\xa0\x18\x40\x38\xd5\xab\xd3\xfc\x97\x89\x83\x72\x1a\x7f\x07\x84\x41\xed\x53\xff\xe1\xd4\x7f\x38\x51\x82\x53\xc1\x0a\x94\xee\xc6\xa4\x60\x05\x96\xd9\x45\x53\xc1\x3a\x6f\xc7\xe9\xea\xd3\xa7\x08\x2c\x13\xe2\xa6\x3e\xc5\xa9\x4f\x51\x2b\xd3\xd4\xa7\x08\x84\x25\x06\xa7\x52\x17\x58\xc6\xe4\x4d\xb5\xec\xbc\x7d\xc4\x38\x4f\xa7\x71\x7a\x40\x98\x68\x31\xd5\xad\x40\xfd\x6d\xae\xa1\x70\x05\x96\x85\x8a\xa7\xc2\x15\x58\xad\xfd\xa1\x5a\xd9\xd4\xe9\x38\xd5\xb0\xd3\xd5\xaf\x86\x05\xba\xe1\xa1\x53\x0d\x0b\x84\xb6\x82\xa9\x86\x05\xfa\x4f\xfa\xac\x86\x9d\xcf\xe3\x9f\x31\x35\x4a\x51\x20\x0c\x94\x9b\x4a\xd1\xf9\x3a\x18\x7f\xaa\xf0\x04\x56\xa8\x73\x14\x9e\x40\x98\x14\x39\x15\x9e\xd3\xcc\x9a\x29\xf3\xd6\x7d\x08\xd4\xbd\xc1\xa9\x3c\x81\x6a\xf6\xf1\x54\x79\x4e\xa3\x04\xa7\x5b\x97\xd2\x13\x28\x26\x80\x4f\xa5\x27\xf0\x5d\x66\x9b\xa3\xe2\x00\xd6\xbd\xab\xaa\x3d\x27\x42\xf3\x37\x65\x88\x2a\x4d\xa0\x6d\xfa\xa1\xd2\x9c\x2a\xcd\x09\xbf\x09\x95\x26\xd0\xcd\xee\x0f\x95\x26\x10\xe6\x1d\x86\x4a\x33\x4c\xe5\xe7\xf0\xd9\x0c\xfd\x85\x40\xb3\xa8\x4f\x28\x35\xc3\xcc\x1d\x3d\xfb\xa1\xd6\x04\x42\x7b\x4d\xa8\x35\x81\x6e\xee\x78\x28\x35\x81\x30\xe2\x30\x94\x9a\x40\xb5\x5c\x67\x28\x35\xc3\x84\x7f\x4e\x6f\xca\xd0\x63\x08\x54\xbf\x1e\xa1\xfc\x04\xc2\x1c\xa8\x50\x7e\x02\x21\x65\x0b\xe5\x67\x14\x77\x6d\xbe\x61\xa1\xb2\x04\xaa\x05\xd2\x42\x61\x19\x65\x8f\x89\x7f\x33\xe5\x07\xa8\x86\xae\x85\xce\xc6\x50\x32\x4e\xa4\x6b\x28\x19\x81\xa6\xf9\x37\x94\x8c\x61\x96\xbf\x35\x82\x42\xcd\x08\xb4\x7f\x37\xb5\xbb\xd5\x8f\x1d\xd2\x3b\x74\xe1\x01\xcb\xcf\x53\xe8\xc1\x0b\xc5\xa0\x75\x7f\x43\x31\x08\x84\x81\xbc\xa1\x18\x8c\xea\xb4\x2d\x7f\x6a\x47\x2a\x3b\x3e\x9b\x68\xa8\x0f\xc3\xfc\x7d\x4e\x5c\xca\xd0\x3d\x07\x84\x19\x66\xa1\x3e\x0c\x63\x1b\x39\x5e\x29\x43\x81\x08\x54\x4e\xf7\xca\x50\x20\x86\x11\x8a\x1a\x46\xc3\x08\x45\x20\x77\x8b\x0f\x19\x5f\x9c\x85\xb8\x42\x5f\x5c\x98\x85\x3f\x31\xae\x84\x3a\x0f\xf0\xd0\x87\x0c\x75\x5e\x18\x9f\xd8\xfc\xa5\xb3\xd6\x77\xcf\x18\xbb\x0a\x0e\xf0\xa0\x89\x0c\x15\x5c\xa8\xe0\xc2\x9b\xaa\xe0\x80\xe4\xf0\xff\x0c\x15\x5c\x98\x86\xcf\x51\x4a\x19\x8a\x33\x60\xd5\x7d\x99\x23\x30\x18\x31\xf8\x8e\x85\xfe\x2a\xa0\x69\xa0\x0d\x83\x11\x81\xd0\x54\x1a\x6a\xa7\xd0\x85\xc5\x19\x49\x19\x2a\x25\xa0\x9a\xa2\x10\xe6\xd2\xc7\x58\x5e\xc6\x32\x1a\xfb\xa6\xc9\x65\x74\x4d\x4f\x17\xe0\x59\x1c\x19\x6a\x27\xa0\x58\x6c\x23\xd4\x4e\x61\x2e\xbd\x55\x82\x43\x25\x04\x14\xb3\x96\x43\x21\x14\xc6\x44\x5a\xac\x26\x54\x42\x40\xe5\x20\xa1\x0c\x85\x10\x50\xe5\x8f\xa1\x10\x02\x2a\xe7\x22\x66\x28\x84\xc2\x90\x48\x0b\xe4\x84\xb2\x07\xe8\xc6\xe8\x84\x21\x91\x31\x9d\x6f\x77\x0a\x65\x0f\xb0\xf4\xb8\x86\xb2\x07\x28\x56\xcd\x0f\x65\x4f\x44\xf5\x97\x8c\x40\x09\x02\x54\xd3\x77\x42\x09\x02\xf4\x5f\xf7\x2a\xbb\xa1\x47\x4c\x36\x17\x6a\x10\xc0\x42\x73\xa1\x04\x09\x43\x18\xc3\x19\x32\x84\x11\x08\x79\x55\xa8\x37\x42\x71\xb1\x57\xa9\xe2\x02\x08\x19\x53\x28\x2e\x42\x4f\x94\xde\xa9\x50\x0f\x00\x4d\xc5\x17\xea\x81\x50\x0f\x70\xf4\x45\xc6\xda\x77\x20\xf4\xd3\x3f\xf3\xd9\x99\xfa\x12\xbb\xcd\x87\x47\xea\x8b\xd5\x99\x42\x3d\x10\x7a\xa2\x8c\xa5\x0c\x05\x41\x64\xa5\x6b\x36\x39\x69\x6a\x84\x18\x7f\x88\xf2\x0e\x25\x04\x10\x12\xaf\x50\x42\x84\x5e\xa9\xf0\x33\xa3\x38\x00\x5a\xc1\xee\x16\xaa\x83\x30\x33\x3e\xfc\x58\x18\x26\x08\xd4\xe6\x9b\xa9\xa3\x2a\xf4\x4a\x69\xf0\x0d\xbd\x52\x40\x48\xb3\x42\xaf\x54\x98\x54\xb3\xd7\x85\x3e\x28\x20\x2d\xdb\x13\x2a\x86\xd0\xb9\xa4\x01\x36\x24\xfe\x40\x4c\xb7\x42\x9d\x4b\xc0\x77\x19\x93\xa3\x77\x09\x28\x1a\x35\x43\xef\x12\xf0\x5d\xe6\x1d\x9c\x7d\xea\x59\x49\x31\x43\x15\x11\x3a\xa1\xac\x98\x1e\x6a\x06\x20\x94\x98\xa1\x64\x00\xea\x2f\x7c\xc3\xd4\x0c\x40\xc8\x14\x43\xcd\x10\xa7\x7d\xf3\x7b\xa1\xdf\x08\x48\x03\x01\x43\xfe\x1e\x7a\x84\x2c\x16\x16\x7a\x84\x80\x5d\xda\x3a\x64\xe1\xa1\x47\xc8\x6a\xfb\x21\xe7\x0e\x3d\x42\x61\x93\xf3\x26\xc1\xd6\xe2\x1d\x12\x6c\x20\x0d\x1c\x0c\x09\x36\xf0\x5d\xc6\x48\x75\xff\x84\x35\xa8\x76\x3f\x9c\x5e\xdc\x3f\x1d\xa1\x12\x72\xee\xb8\xed\xae\xaf\xba\x3c\x19\x58\x96\x81\x0c\x5d\x3d\x21\x01\x36\xaa\x36\x24\xc0\x40\xea\x75\x0e\x09\x70\xe8\xd8\x31\x76\x35\x64\xbb\x40\x9a\x68\x13\xf7\xbe\xe9\xed\x65\xcc\x9b\x9e\x1b\x20\x4d\xdb\x09\x3d\x37\xf1\x0c\x2f\x63\xa4\x3a\x5b\x80\xa6\x37\x21\x8c\x84\x03\x9a\x29\x89\x21\x75\x0d\x6b\x3d\x59\x86\x3c\xe4\xae\x40\x59\x7e\x3e\xe5\xae\xf1\x5c\xff\xfb\xbf\x59\x7d\x7c\x3a\x56\x80\x5a\x9d\x35\x1d\x2b\xf1\x56\xff\x8c\xc7\x27\x29\x05\xba\xf2\x2b\x24\xa5\x61\x3a\x8b\x55\xc2\x43\x77\x08\xd0\xcd\xbb\x08\x79\x2a\xd0\x9a\xcf\x40\x9e\x1a\xc4\x9c\xfd\x2c\x1c\x1e\x72\x46\x60\x71\x0a\x68\x2e\x29\xe3\x32\x8d\x5b\xab\xe2\x92\x33\x02\x8b\xf3\x04\x73\xc9\x19\x81\x90\xd6\x2c\xbd\x13\xc0\x32\x84\x7e\xc9\x22\x81\xef\xcf\x26\x6d\xc3\x36\x2a\x1c\xb0\x77\x2f\x59\x24\xb0\xcc\x72\x5b\xb2\x48\x20\xe7\xb4\x67\xcb\x26\x2a\xe5\x4f\xaf\x4a\x9b\xd2\xff\x0f\xda\x0e\xdb\x38\x3e\xb4\xf8\xff\xa7\x4d\x2e\x98\xe6\x4f\x2f\xdb\xbe\x55\x2a\x67\x5c\x92\xcd\x25\xd9\x34\x1a\x74\xc9\x36\xd7\x47\x2d\x53\xe2\xb7\xa4\x96\xc0\xd2\xfb\xb4\xf4\x6c\x00\x4b\xfb\xd4\xd2\xb3\x01\x44\xf8\xff\xf2\x4f\x20\x0c\x1d\x5a\xf2\xcf\x55\x14\xc0\xdd\x36\x87\x5e\x88\xc6\xc7\xb3\xb1\xf4\x6c\x00\xab\xe2\xb1\x58\x3a\x36\x96\x94\x94\x23\x92\x73\x49\x49\x01\x8f\x0a\xcd\x25\x25\x5d\xfa\x22\x8c\x53\x5d\xfa\x22\x80\xe4\x9c\xde\x6f\x57\xb1\x89\xdd\x69\xf9\x54\x0c\x47\x03\x56\xf8\x54\x0c\x47\x5b\xa6\xd6\x18\xdb\xb6\x8c\x47\x03\x3c\x65\x34\x97\x64\x76\x49\x49\x3d\x63\x66\xd5\xdd\x91\x9b\x72\x32\x36\x39\xb7\x52\x52\x63\x3d\x97\x94\x14\x58\x3f\x34\xc0\x92\x92\x2e\x0b\x43\xfd\x3f\x63\x77\x93\x33\x3b\x93\x5c\x77\x7c\xee\x55\xf4\x0e\x5c\x24\xab\xc8\x0c\xc0\x33\x8f\xed\x3d\x24\x93\x49\x40\x03\x49\x8d\xb6\xb4\x7f\x83\xe7\xc7\x77\x20\x4d\xfa\x0e\x2e\xfe\x17\x04\xeb\x29\x7e\x15\xf3\xc4\x89\xc8\x48\x65\x9c\x4d\x52\x21\x28\x0a\xba\x91\x9f\x41\xd3\x8f\xa4\xd1\x9f\x4d\xea\xc1\x64\x95\x26\xf5\x10\xb4\xac\xbe\x58\x4d\xea\xa1\xd1\xa4\xea\x25\x1b\x4d\x1a\xb4\xdf\xbb\x9b\xc3\x35\x15\x5b\xa5\x65\xe3\xfa\x07\x4d\xa9\x48\xe3\xfa\x37\x15\x54\x8a\x15\x1b\xa7\x3e\x68\xb2\x16\x8d\x53\x1f\x1c\x95\x57\x5d\xfb\xbe\x5f\x30\x73\x52\xf9\x4e\xab\x99\xb4\x9f\xb7\x42\xfb\x83\x26\x28\x8d\x16\x0d\x4a\x2d\x71\xa3\x45\x83\x66\x25\x99\xc6\xc7\x6f\x4c\x7b\xcd\x57\x1b\xd3\x3e\x68\x47\xe4\x69\x23\x45\x83\x32\x97\xb0\x91\xa2\x8d\x8f\xef\x15\xd7\x68\xd1\x66\x72\xb6\x27\x8a\x16\x6d\xb4\xa8\x6a\xc3\x46\x8b\x06\x6d\xf5\x03\xa0\x45\x9b\xbe\x4e\xfc\xaa\x46\x65\x06\xb5\x67\xa4\x6c\x54\x66\xa3\x32\x55\xfa\x35\x2a\x33\xb0\x20\x6d\x35\x2a\xb3\xf1\xdb\x5b\x46\xa8\xc6\x6f\x0f\x0e\x75\xa8\x8d\xf0\x6c\xfb\x7b\x0a\x39\x53\x56\x7a\x70\x18\x29\x1b\x27\x3d\xa8\xdd\x0f\x91\x93\xde\x54\x6c\x29\xd3\x6b\xfb\x7b\x0a\x79\x89\x7a\xb9\x30\xd7\x83\x12\xb9\x35\xe6\x7a\xd0\xd6\xd8\xf2\x8d\xb7\xde\x28\x5b\xc5\x7c\x8d\xb2\x0d\x2c\xc6\xfb\x8c\xd1\x36\x7d\xb3\xe0\x77\x9e\x14\xca\x36\xf8\xbe\x8f\x1d\x61\x1b\x2c\x6a\x5c\x1a\x65\x1b\x6c\x8b\x5f\x26\x73\x3d\x38\x16\xef\x63\xe6\x7a\xb0\x69\x23\xdc\xcc\xea\x09\x36\x5d\xc5\x9a\x89\xe4\xc1\xf7\x93\x41\xac\x11\xc9\xc1\xbe\xb8\x3c\x44\x72\xb0\x1d\xef\x9f\x77\xcf\xb3\xd6\x88\xa9\x05\x4d\x6d\x59\xb0\x98\x0a\xd5\xd4\x96\x05\xc7\xe2\x3d\xae\xb6\x2c\x58\x3e\x1f\x9b\x5c\xb0\x96\xd5\x89\x32\x44\x36\xa5\x65\xc1\x61\x35\x99\xa6\xb4\x2c\xf8\x9a\xc5\xda\x08\xf5\x60\xdd\xbd\x3f\x09\xf5\x26\x0b\x60\x4c\x93\x05\x08\x36\xcd\xf7\x9a\x24\x40\xb0\x9a\xdf\xd0\x24\x01\x82\xc3\x64\x86\x26\x07\x10\xac\xfa\x69\x34\x9a\x3f\x78\xee\x6d\x2e\x3e\xd1\xdf\xd2\x54\x56\xdb\xa1\x46\xe1\xb7\xf6\x3e\x4f\xb9\x62\x14\x7e\x70\x2c\x09\x43\x1b\x85\x1f\x7c\xd5\xc0\x34\x02\x3f\xd8\x3e\xae\xab\x52\xb3\x56\xef\xf3\x94\x33\x27\xfa\x83\xed\xf0\x88\x11\xf5\xc1\x41\xad\x37\xa2\xbe\x99\x3c\xaf\xc4\xb3\x49\x0c\x04\x5f\x75\xc6\x4d\x5e\x20\x58\x37\xc3\x1c\xe9\x1f\x6c\xbc\xc8\x46\xfa\x37\x2d\xb6\x54\x82\x36\x99\x81\x56\x67\xbe\xd3\x61\xb8\x1a\xc9\x02\xc8\xfd\x35\x59\x80\x66\x02\x92\xb7\x8d\x09\x48\xad\x5c\x8c\x7c\xa5\x30\x22\x58\xb4\x35\x6c\xc2\x88\xf6\x84\x11\x87\x3e\x47\x4d\x14\x11\xac\x9f\xa2\x03\x84\x11\xc1\x42\x4f\x35\xc5\x6d\x2d\xcb\x91\x2e\xc6\x3d\x51\x44\xb0\xb1\x3a\x9b\xbc\x43\x53\xdb\xe6\xb9\x96\x77\x68\x26\xd3\x2b\x5b\x6d\x22\x86\xd6\x93\x89\xf6\x1c\x88\x0e\x9a\xfe\x57\xfa\xa4\x37\x49\x86\xe0\x6d\xde\xdf\x04\x0c\x4d\x92\x41\x8f\xd0\x26\x62\x08\xde\x95\x30\x9a\x80\xa1\xc9\x28\xa8\x6e\x6d\x32\x0a\x41\xe9\xb5\xdd\x64\x14\xda\xe9\xe1\x7b\x0f\xc4\xe5\x4e\x3d\x9a\xce\xd3\x4d\x5c\xd1\xf8\xf6\x45\xb1\x89\x18\x82\x66\x8a\x6d\xe3\xdb\x37\x41\x44\x25\x9a\x69\x82\x88\xa0\x74\xdb\x6e\x82\x88\xa6\xac\x4c\xe5\x6a\xe3\xdc\x07\xf5\x4a\x42\x71\x45\x1b\xae\xdb\xe6\xa3\xae\xdb\x88\x47\x41\xd9\xf1\xdf\x9b\xf9\xef\x0c\xc8\xa6\x3a\xac\x3d\x11\xc3\x6e\xce\x71\x13\x31\x34\x66\xbb\xec\x7f\x63\xb6\x07\xfb\x2b\xc6\x98\xed\xed\x72\x6c\x7e\x53\x26\xf0\x04\x9b\x15\x89\x9a\x58\xa3\x3d\xf1\xc5\x6e\xed\xb0\xc6\x58\x0f\x0e\x85\xbc\x4d\xa8\xd1\xc4\x15\x7a\x88\x37\x71\x45\xb0\xec\x7f\xe2\x85\xb7\xeb\x3d\xc1\xfb\x79\xc7\x7a\xca\x58\xf1\x41\x99\x29\xd6\x58\xf1\x8d\x15\xaf\xed\x77\x63\xc5\x37\x35\x64\x5e\xfe\xac\xf8\x66\xea\x8e\xbe\xdc\x4d\xc0\x12\xfc\xd8\xc1\x4d\xc0\x12\x1c\xfc\xe6\x26\x5e\x09\x6a\xf1\xdc\x89\x57\xda\x4c\x45\x9f\x5f\x89\xe2\xb0\xa6\x38\x4c\xd9\x48\x13\xc3\x04\xa5\xdf\x5e\x13\xc3\x34\x96\xbc\x5a\x95\xc6\x92\x0f\x0e\x95\xd6\x8d\x25\xdf\x58\xf2\x0a\x3b\x1a\x4b\xbe\xb1\xe4\x3d\x15\xa2\x9f\xe0\xd9\x2d\x87\x2b\xfc\x09\x4a\xf7\xbe\x26\xfa\x69\xa6\xdc\x28\xa0\x68\x2c\xf3\xa0\xc9\x03\x34\xe5\x5a\xc1\xf1\xd7\x17\x38\xdc\x07\x4d\x11\x6b\x13\x10\x35\x26\xba\xac\x6f\x89\x88\xca\xc4\x7d\x89\xda\x12\xeb\x04\x4d\x01\x48\x89\x75\x4a\xac\xa3\x71\x63\x89\x75\x82\xe3\x78\xff\xda\x6e\x53\xb3\x5b\xcb\xb6\xb2\x2d\x37\x61\xb5\x5b\xb7\x29\xeb\x7d\x7d\xfc\xb1\xd3\x26\x27\x1a\xeb\xa7\x44\x31\xc1\xe1\x25\x54\xa2\x98\xe0\x90\x2d\x28\x41\x4c\x69\x16\x60\xad\xa6\x12\xc5\x04\xcb\xf2\x6e\x5a\x6c\x5a\x72\x18\x39\x4f\x51\x4c\xd0\xf4\x5e\x2f\x51\x4c\xbd\x51\x4c\x8e\x5f\x14\x53\x66\xfe\x5b\xe9\xa8\x84\x2c\x41\x3b\x32\xc8\x97\x90\xa5\x32\xf3\xe6\x43\x8a\x95\x62\xac\xa0\x54\x1a\x95\x28\xa6\xb8\xe8\x0a\x1d\x8a\x8b\x1e\xb4\xac\x41\x5d\xc5\x45\x2f\x91\x8d\x25\x7a\x4a\x64\x13\xb4\xdd\xe1\x8a\x6c\xca\xdc\x18\xab\x07\x15\x67\x3d\x38\xfe\xfa\xa4\x63\x53\x52\xa5\xf5\x77\x89\x4f\x82\x23\xcb\xe3\x56\x29\xa9\x2a\xed\x6d\xb5\xb1\x2e\x5e\x78\x50\xa6\x6e\x96\x62\xa9\x12\xb2\x58\x91\xa3\x84\x2c\x41\x2d\xab\xdd\x1c\x47\x56\x78\x5c\x18\xe4\x25\x18\x09\x4a\x53\xcc\x12\x8b\x04\xcf\x6e\x3e\xea\xd8\xd2\xa6\x76\xfd\x3a\x8e\xf7\xd8\x52\x38\x1c\xdd\x53\x0a\xa1\x2a\x4d\xa6\x5e\x11\x55\x0c\xf2\xa0\x96\x08\x87\xe2\x8f\x07\xeb\xf2\xc9\x58\x59\x0c\xf2\xa0\x6d\x9e\x70\xc1\x4e\xc5\x33\x5f\x3e\x9e\x36\x9e\x79\x65\x9e\xbf\x96\x95\xa5\x52\x29\x68\xea\x7a\x4b\xfc\x13\x94\xc6\x1f\x25\xfe\xa9\xb4\xa9\x5d\x4c\x2c\x2b\x35\x48\x41\xb3\xe8\x6b\x31\xdb\x83\x66\x1a\x7a\x09\x70\x82\xf5\x5d\x2c\xac\x44\x38\xc1\x21\x83\x55\x22\x9c\xe0\xf0\xfe\x2b\xfe\x7b\xf0\x7c\xd2\x36\xb7\xe5\xc1\xbb\xb2\x59\x89\x83\xea\xe7\xb6\x2c\xfe\x9a\x33\x78\x50\x26\xa7\xd6\xef\x3d\x03\xb7\xc5\xcf\x56\x84\x13\x1c\x16\xe3\x2c\x11\x4e\x25\xc2\x59\x34\xca\x2e\x11\x4e\x50\x4b\x86\xca\x12\xe1\x04\x3f\xc9\xb5\x52\x50\x14\x3c\x9f\xcc\x89\x0a\x7a\x4a\x83\xdb\x84\xaa\x25\xe8\x09\x9e\xdd\xf2\xa5\x82\x9e\x7a\x42\x97\x9f\x54\x5a\x09\x5d\x82\x45\x31\x42\x99\x7f\x12\x7c\x57\x8f\xe4\xfe\x1e\xed\xf3\xaa\x90\xdc\x28\xc1\x4c\xb0\x59\x66\xa2\x04\x33\xc1\xf2\x89\xea\x2e\xc1\x4c\xb0\x49\x54\x97\x58\x26\x78\x0e\xcc\x27\x9d\x53\xd6\x4e\x34\xd4\x97\x60\x26\x58\x34\x9e\x28\xc1\x4c\xb0\x69\x36\x56\x82\x99\xe0\xc7\x10\x2a\xc1\x4c\xa5\x07\xd6\xf2\x71\xef\x84\x2e\xc1\xaa\x9d\x5e\x09\x5d\x82\x67\xb7\x9c\xb9\xd8\x25\x58\x9e\x1f\xe3\x3f\x1d\xaf\x4b\x68\x13\xfc\x18\x41\x25\xb4\x09\x9e\x3f\x9c\xdb\x28\xb6\x29\xb1\x4d\x9c\xbd\x12\xdb\x04\x3f\x4b\xdd\x96\xd8\x26\x58\x2d\xfc\x54\x62\x9b\x6a\x2e\x56\x06\xa8\x12\xc9\x04\x3f\x46\x4d\x89\x64\x82\xed\x7d\xe1\x8b\x64\x82\x85\xc3\x53\x22\x99\xe0\xc7\x08\x2a\x91\x4c\xb0\x6a\xa4\x50\x22\x99\xe0\xf9\x4a\x9f\x74\xfd\x1e\xfc\x2c\x47\x59\x42\x99\x60\x51\x8b\x52\x22\x99\xe0\xf9\x64\x9e\x4c\xe9\x8b\xe0\xc7\x07\x2a\xd1\x4d\xb0\xfe\xf5\x9c\x88\x6e\x82\x75\x8f\x34\x2d\xd1\x4d\x3d\xa1\xcc\x8f\x99\x53\x42\x99\x60\x95\xc8\x2a\x91\x4c\x3d\x31\xca\x8f\xaf\x51\x42\x94\x60\xb3\x2c\x45\x09\x51\x82\x2f\xd3\xaa\x84\x28\xc1\xd7\x84\xe5\x12\xa2\x04\x5b\xbd\x07\xe1\xc4\xbb\x1f\x5b\x04\x67\x09\x0e\x82\x9d\x00\x29\x59\x87\xea\xde\x81\x09\x18\x4a\x74\x10\xfc\x94\xc9\x97\xe8\xa0\xba\x67\x2e\x4a\xa8\xa4\x1d\x82\xa6\x5f\x56\xc9\x3a\x04\x4d\x5a\xa3\xc4\x10\xc1\x51\xce\x49\xd2\xa1\x4e\xaf\x4a\xc7\x21\x86\x08\x9a\xc2\xc2\x12\x43\x04\xcf\x6e\x39\x51\x31\x44\x70\xf0\xb6\x4b\x0c\x11\x34\x96\x4e\x49\x3a\xd4\x78\xbf\x20\x5f\xaa\xce\x27\x38\xd4\xeb\x97\x3a\x9f\xca\x24\x0e\xcb\x91\x57\x29\x8a\x09\x1a\xeb\xac\xc8\xf4\xa0\x4c\xb1\x2e\x65\x32\x41\x13\xa5\x17\xfb\x3f\x58\x17\xc5\xe6\x45\xcd\x07\xa5\x66\xbc\x88\xf9\xa0\x7d\x52\xa3\x55\xc4\x7c\x5d\x6e\x41\xca\x14\x8b\x98\x0f\x4a\x8b\xae\x22\xe6\x83\x52\xb0\x5c\x12\x07\xc1\xf3\xc9\x9c\x14\x81\x1f\x34\xe5\x0a\x45\xe0\x07\xcf\x6e\x8e\xc3\x9d\xca\x5a\x12\xba\x87\x15\xcd\x1f\x3c\xbb\x39\x77\xb7\x2a\x1d\x6c\x45\x98\x45\xd5\x07\xeb\xf2\x6a\x17\xb2\x3e\x68\x32\x61\x45\xd5\x07\xa5\x5b\x63\x51\xf5\x35\x1d\x47\x2c\xb4\xa2\xba\x83\xe3\x15\x16\x54\x77\x99\x1e\xaf\xaf\x78\x99\x6d\x11\x34\x4d\xe8\x8a\xc2\xae\xf8\xff\xcb\x12\x2b\xa0\xc8\xdd\xa0\x99\xab\xd7\xa9\xdd\x60\x5d\x44\x04\x9d\xff\x1f\x1c\xa6\x3a\x74\xfe\x7f\x8f\xda\x5d\xe8\x94\x4e\xed\x06\xe5\xad\xdd\xa9\xdd\x9e\x9a\x8e\x45\x94\xd0\x09\xd4\xa0\x34\x9c\xec\x04\x6a\xd0\xb4\x45\xea\x6a\x3a\x82\x52\xe4\xd8\x49\xd6\x9e\x62\x8d\x85\x74\xe9\x8a\x35\x82\xd2\xf3\xaa\xf3\xcf\x7b\xa6\x01\x2c\xcb\xbb\xad\x6c\xcb\x4c\xb4\xbc\x9c\xba\x79\xe0\x3d\xad\x4c\x17\x5e\x58\x57\x4b\x11\x14\x83\xb2\x9b\x0e\x1d\xac\x8b\xa9\x51\x9d\x97\x1d\x94\x55\x76\x3b\xad\x18\xd4\xfa\xfe\x31\x67\x10\x7b\x7b\xe1\xd2\x75\xf6\x76\xd0\x58\x5f\x9d\xbd\xdd\x37\x67\x95\x5f\x77\x57\x46\x1f\xd4\xea\xaa\x91\x8f\x41\xfb\xbe\x9f\x6c\x36\xe5\xa1\xcf\x4b\xb8\x73\xbc\x3b\xa9\xb8\xbc\xbb\x39\x34\x52\xb1\x1c\x86\x43\xdb\x1c\x5a\x86\xf9\x4e\x2b\x06\x45\x7c\x75\x45\xf3\x41\xe9\xfe\xd2\x55\x5c\x04\xb5\x6e\xf6\xda\x6c\xca\xaf\x36\x3f\xee\x4e\x3c\x06\x4d\x63\xa3\x4e\x3c\xf6\x34\x89\x5a\xcc\x7e\xeb\xea\xdc\x83\xa2\x3f\x3a\xf1\xd8\xbf\x2e\x77\xde\x31\x9d\x54\x0c\x6a\xfd\x93\x65\xb6\x3a\x27\x3d\x58\xdf\xe8\xa6\xb3\xd2\x83\x92\xc0\xeb\xca\xe0\xfb\xcf\x43\x9c\x71\xb2\x93\x8d\x41\x5b\x3e\x36\x39\x74\xb2\x51\x53\xe4\x4e\x36\x06\xed\xf0\xa4\x90\x8d\xfd\xe7\x0c\xf3\x4e\xee\xcc\xf2\xa0\x91\xc7\x9d\x57\x1e\x94\x74\x60\x27\x2e\xfb\xcf\xe1\xe6\x9d\xdc\xc9\xc6\xa0\x99\x97\xd4\xd5\x68\x74\x4a\xd2\xc4\xba\x4e\x49\x06\x4d\x47\xce\x4e\x49\x06\xcf\x6e\xb9\xac\xa4\x64\x50\x4a\x5b\x3a\x25\x19\x94\x25\x38\x3a\x25\xd9\x77\x67\x90\xf7\x63\x57\x7e\x11\xd4\xea\x37\xc7\x2a\x0f\xd6\xc5\x5a\xc8\x9d\x57\x1e\xac\xc7\xc7\x6e\x6e\x9b\x75\xb8\x9d\x3b\xc1\x19\x6c\x8a\x5d\x3a\xc1\x19\x7c\x0d\x3d\x9d\xe0\x0c\x96\x35\xef\xda\x4e\x70\x06\xdb\xe2\x19\x26\x38\x83\xe7\x28\x72\x4e\x14\x67\xb0\xf0\x01\x3b\xc1\x19\xac\x94\x70\x27\x38\x83\xdd\x22\x90\x9d\xe0\x0c\xb6\xef\xe2\x2b\xdd\xe1\x47\x64\xee\x1f\xaf\x0c\x56\x79\xb0\x5a\xfd\xba\xd3\x9b\xc1\x6e\xdd\x8b\x4e\x6f\x06\xdf\x3d\x91\x53\x27\x37\x83\x8d\x2a\xe9\xf4\x64\xb0\x5b\xf6\xa2\xd3\x93\x9d\x9e\x74\xa9\xc9\xc9\x60\x57\x33\xdb\xc9\xc9\xfe\x68\xc7\xfd\xe3\xea\xd0\x8e\xc1\x7a\xf8\x46\xbe\x78\x27\x27\x97\xe4\x55\x3a\x39\x19\xac\xef\x6d\x23\x27\x83\x5d\x01\x6e\x27\x27\x83\xd5\x42\x4a\x9d\x9c\x0c\x96\xe6\x81\x22\x27\x83\x5d\x47\xb6\x4e\x4e\x76\x72\xf2\xbd\x49\xe4\x64\xb0\x1b\xe4\x3b\x39\xd9\xc9\xc9\xc3\xdf\x77\x79\x1e\x7c\x95\xbd\x77\x6a\xb2\x93\x8e\x9a\xbe\x74\xd2\x31\x58\xb5\x86\xea\xa4\x63\xb0\x93\x02\x9d\x31\xde\x19\xe3\x0e\x96\x9a\xec\x8f\x82\xdc\xff\xda\xe4\x5a\x94\xb7\x6e\xc6\xfd\x4e\x4e\x06\xbb\x61\xbf\x93\x93\xc1\xf6\x89\x88\xe8\xe4\x64\xb0\x1b\xf5\x3b\x39\x19\x3c\x7f\xcc\x36\x67\xfe\x60\x5b\xcb\x77\x3a\xf3\xca\x2d\x2f\x7f\xcc\x2d\x7f\xf0\x63\x5f\x76\xfd\xb5\x7a\xcf\x29\xb9\x71\xec\xed\x60\xdd\x1d\xab\xe9\xdc\xbd\xe7\x94\x5c\x1e\xee\x76\xf0\x65\x8f\x76\x02\x36\xd8\x3f\xef\x07\x9d\x64\x2a\xed\x97\x77\x8c\xe3\x78\x07\xbb\xf5\x4b\x3a\x4d\x1b\x2c\x1a\xea\x77\x9a\xb6\x77\x8f\xa7\x27\xa3\xbf\x07\x9b\xc6\x9f\x06\x2a\x8e\x77\x70\x28\x62\xee\xc4\x6a\x70\xec\x06\x64\x62\xb5\xc7\xc9\x5e\x56\xbf\x25\x4e\x76\x70\x48\xa4\x75\x4e\x76\x70\xa8\x5e\xeb\x4a\xe3\x83\x85\x7b\xde\x95\xc6\x07\xeb\xa2\xdd\x78\x57\x1b\x1f\x1c\xe6\x00\x74\xa5\xf1\xc1\xb3\x5b\x9e\x76\xb6\x78\x70\x58\xb8\xb3\xb3\xc5\x7b\x0a\xe1\xdf\x80\xa7\x2b\x84\x0f\x0e\x85\xcb\x9d\x40\x0e\x0e\x45\xd2\x9d\x40\x0e\x0e\x69\xa6\xae\x28\xa7\x67\x8d\x87\xb7\x2d\x51\x67\xa8\x07\x07\x97\xaa\xf3\xd3\xbb\xb5\xab\x49\xdf\xae\xb4\xa6\x0f\x87\x96\x0b\xa9\x8e\xa6\x0f\xb7\x60\xf5\x51\xb7\x20\x2b\x35\x28\xfd\xee\x44\x79\xb0\xbe\xdd\x1b\x3a\x55\x1e\x1c\x56\xe5\xed\x54\x79\x50\x3a\xbd\x74\xaa\x3c\xd8\xd4\xb3\x77\xa2\x3c\x68\x26\xce\x75\xa2\x3c\x78\x97\xa0\xef\x44\x79\x90\xc5\xeb\xff\xf9\x18\xad\xda\xbd\x93\xf1\xef\xe8\x4f\xc6\x07\x8b\xaa\xb8\x4e\xc6\xf7\xeb\x3d\x65\x5f\xe6\x94\xd3\x6e\xd6\x5c\xbb\x4e\x65\x77\x2a\xfb\xd5\x64\x54\x76\x70\xb0\x54\x3a\x95\xdd\xa7\xc7\xce\xa3\xa8\xd8\x27\x38\xde\x11\x82\x77\xde\xa7\xdb\xe1\x51\x54\x6f\x1e\x1c\x1a\x72\x75\xb6\x78\x27\xd0\xdf\x61\x95\x40\x0f\x0e\xeb\x8d\x74\x02\x3d\x28\x7d\xc1\x3a\x57\x3c\x38\x2c\xf3\xd1\xb9\xe2\x3d\x45\xe3\xcb\xea\xb1\x50\x34\x1e\x1c\xda\x2a\x75\x45\xe3\xc1\xba\xac\x89\x2c\xbb\xa2\xf1\xe0\x50\xeb\xdc\x39\xe0\xfd\xf6\x10\x47\xb6\x9e\xa4\xfd\x19\x23\x7b\xd1\x6d\xfc\x64\x64\x07\x5f\x97\xf2\x64\x64\x9f\x1f\xd7\xe8\xdd\xb6\xdb\x96\x0a\x9d\xbc\x0e\x4e\x15\x3a\xc1\xb3\xdb\x9a\x6d\xcd\xb6\x24\x18\xe2\xee\x9c\xbc\xed\x53\x04\xb0\xee\x0e\xe4\xb2\x2d\x05\x6d\x3f\x5f\x30\x6d\x72\x9b\x77\xc7\x76\xdb\xe6\x22\x3d\x0f\xe3\x29\x04\x38\x17\xa7\xe0\x1b\x18\xd2\xc1\xc1\x99\x39\x19\xd2\xe7\xe2\x85\x90\x41\xe6\xa4\xf7\x83\xd2\x83\xe9\x64\x3e\x9f\x8b\x2f\xcd\xe8\x7d\xb2\x95\x83\x83\x5b\x73\x9a\xcf\x7b\x66\xa5\x85\xc5\x72\x8c\x27\x5b\x39\x28\xfd\x06\x4e\x93\x77\x83\x83\x5b\x73\x2a\xa1\x09\x9e\x4f\xe6\xe4\xd5\xd0\x04\xc7\x7b\x1c\x4a\x68\x82\x67\xb7\x5c\x5e\x35\x34\x41\xdb\xbe\xfe\x9a\xab\xbb\x7a\x42\x32\xda\x9d\x7c\xeb\xa0\x96\xdd\x27\x9d\x68\xac\xec\x45\xef\xf2\x53\x78\x12\x94\xb0\xe0\x14\x9e\x04\x3f\x26\xe7\x29\x3a\x09\xd6\x65\xcd\x08\x75\x0a\x4f\x82\xa6\x55\xc0\xa9\x1e\x3c\xf8\xca\x29\x9f\x3c\xf0\x73\xf3\x54\x46\x5b\x9c\x2a\x6d\x82\x5d\x13\x92\x93\xb9\x1d\x2c\x56\x93\x3f\x99\xdb\xe7\xf7\xfd\xce\x1c\x87\xb8\x23\x58\x35\x15\x3d\xc5\x1d\xa7\xe5\x12\xf2\xfa\x3a\xc5\x1d\xc1\xa1\x78\xed\x64\x64\x07\x9b\x22\xe0\x53\x28\x12\x1c\xd6\x3a\x3e\x85\x22\xc1\xba\x98\x73\x72\xaa\xda\x09\x0e\x55\x69\x27\x6b\x3b\x38\x4c\xff\x38\x95\x83\x07\xc7\x9e\x78\xf9\x14\xc3\x9c\x02\x16\x8d\xcb\xcf\xef\x7b\x4e\x52\x30\xfe\xbe\x1b\x90\xda\x1e\xbd\xf9\x4f\x01\x49\xb0\x59\xb2\xfc\x14\x90\x9c\x4c\x71\x0a\xf3\x64\x8a\x07\x87\xb9\x24\x27\x53\xfc\xe4\x80\x6f\x51\xdb\x27\x07\x3c\x58\xd5\x05\x9e\x42\x99\x33\x35\x3e\x8b\x52\xb8\x53\x90\x12\x94\x72\x8c\x53\x8d\xcf\x29\x6e\xb1\xce\xc7\x29\x6e\x09\x9a\xea\xdd\x53\xdc\x72\xa6\xf4\xe5\x9d\xdf\x7a\x12\xef\x41\x5b\x3d\x1c\xc4\xfb\xc9\xf4\xd5\x0e\xe2\xa4\xc1\x83\xd2\x07\xea\xa4\xc1\xcf\xc3\x3d\xc8\x1b\xf6\xa4\xb8\x83\x52\x59\x7c\xb2\x78\xcf\xe6\x82\x64\x7c\x3e\x99\xa7\x41\xc9\x2c\x9d\x04\x70\xf0\xec\x96\x6f\xa0\x80\x83\x7a\x4f\x81\x00\x3e\xd3\xec\x67\xd9\xdc\x65\x1e\x65\x50\x7a\x68\x9c\x74\x66\xb0\x2e\x9b\x6f\x20\x34\x83\x62\x87\x9d\x84\x66\x70\x1c\x9b\x4d\x8e\xa3\x32\x1f\x21\x2f\xe2\x93\x6d\x79\xd2\x86\x9b\xe3\xa0\x0d\x83\x52\x41\x78\xd2\x86\x67\x79\x8c\xbc\xd8\x94\x43\x04\xa5\x29\xc4\x49\x2f\x06\xa5\x0f\xc5\x49\x2f\x9e\xdd\x17\x78\xff\x99\x00\x19\xd4\xf1\x6e\xf2\x05\x69\xb2\xa3\x77\xc4\xc9\x90\x0c\xd6\x65\x6b\x7f\xd0\xb8\xec\x64\x58\x06\xa5\x5c\xfb\x64\x58\x06\x4d\x11\xf3\x49\x15\x9e\x14\xd4\x96\xb0\xe2\xa4\xa0\x82\x3a\xde\x4d\x2e\xe0\xc8\x8d\x8c\xef\x7b\x52\x50\xe7\xf0\x58\x78\x1b\x28\x2c\x08\xca\x6c\xad\x53\x5d\x41\xb0\x2e\x5f\x3f\x3a\x85\x05\x41\xb3\xce\xcd\xa9\x60\x39\x28\x3d\x22\x4e\xa2\xea\x64\x3b\x7e\xed\x46\xe1\x04\xa5\x25\xd6\x49\xe1\x04\xeb\xa2\x6d\xf4\x49\xe2\x04\x65\xf2\xec\x49\xc3\x9c\x0c\xc5\xef\xe2\xaf\xbd\xdf\x90\x0b\x5d\x36\xb9\xd0\x0c\x45\xad\x48\x4e\x86\x62\x50\x47\xc4\xd7\xc9\x50\x3c\x69\x18\xf5\x23\x27\x0d\x13\x94\x3a\xef\x93\x86\x09\x4a\x5b\x99\x93\x53\x18\x3c\x9f\xb4\xcd\x59\x4d\x67\xe5\x8f\x39\xab\x94\x09\x2c\xca\x36\x4e\x52\x27\x28\xd3\x04\x4f\x65\x02\x41\x13\x87\x9e\xca\x04\x82\xe7\x93\x39\x79\x75\x02\x67\xea\x04\x8e\x98\x05\x27\x41\x74\xce\xdb\x6e\xd9\x46\xd7\x04\xa5\xb0\xee\xe4\x4e\x9e\xb7\xc3\x8d\x53\x78\xca\xec\x07\xa5\x04\xfd\x94\xd9\x3f\x6f\x97\xcd\xab\x44\x1a\x3f\xa8\xf7\xa5\x29\x8d\x7f\x32\x36\xdf\xe1\x82\xb1\x19\x94\xce\xbf\x83\xfa\x19\xf4\x8a\x45\xa6\x07\xbd\x12\x94\xb2\xf4\x41\xaf\x04\xa5\xfd\xf3\x90\x8b\x1f\x24\x8c\x8e\xca\x83\x84\x19\x24\xcc\xc7\xa6\x69\x93\x93\xcf\x9b\x7a\xd0\x2b\x41\xb5\x04\x5b\x43\x96\x3d\x78\x76\xdb\xb3\x6d\xb5\x2d\x6a\x22\x7e\xf0\xa0\x6a\x82\xf6\xd7\x5e\x5f\x9b\xde\x2f\x78\xae\xee\xa0\x4d\x82\x52\x31\x3f\x24\xc1\x47\x16\x91\x5d\x74\xad\x1b\xb4\x49\x50\x26\x1f\x0c\xda\x64\xd0\x26\xfa\xc5\x0d\xda\x24\x28\xed\xc5\x06\x6d\x32\x56\x97\x2d\xb2\x66\x10\x22\x41\xe9\x3a\x3d\xe8\x90\xa0\x94\xe4\x0f\x3a\x64\x70\x4e\xad\xa0\x3b\x38\xa7\x41\xe9\x74\x3d\x48\x93\x41\x74\x58\x93\x76\x10\x1d\x41\x99\x52\x31\x88\x8e\xa0\x74\x1d\x18\x44\x47\x50\x6c\xe9\x21\xf1\x1e\xac\x8b\x86\x74\x43\x9b\x92\xa0\x34\x99\x1d\xfc\xd5\xe0\xd9\xcd\x47\x0f\xdb\xbc\x66\x6c\x72\x9e\x9b\xd7\x4c\x5e\x5a\x83\xc3\x1a\x94\x22\xd9\x61\x4e\xdb\x20\x7e\x34\xa9\x1b\xc4\x4f\x50\x2d\xef\x8f\x41\xfc\x0c\xde\xac\x75\x70\xc7\xf6\x9e\x7c\x64\xc1\xe2\x0b\xf2\xe8\x8e\xef\x7b\x0a\x39\x53\x22\x26\x28\x5d\xab\x07\x11\x33\x24\xe3\xb5\x7d\x1b\x14\x4b\x50\xb2\x3d\x83\x62\x09\x0e\x2b\x62\x0c\x8a\x65\xfc\x3c\x80\xf9\x45\x0e\x8a\x22\x28\x7d\xab\x87\x34\xfb\x20\x32\xac\x4d\x3a\x88\x8c\xa0\xf4\xc5\x1e\x44\x46\xf0\xec\x96\x2f\x65\x98\x06\xa5\x57\xf6\xe0\x97\x06\x4d\x40\x35\x48\x91\xa0\xcc\x2f\x1b\xa4\xc8\x48\xf3\x8f\x45\x43\xb7\x21\xcd\x1e\x94\x49\x27\x43\x96\x7d\xf0\x4b\x15\xbb\x0e\x7e\x69\x50\x74\xea\xe0\x97\x0e\x89\x71\x0b\x4d\x0e\x89\xf1\xa0\x4c\xd9\x18\xaa\x81\xc7\xee\x4b\x5d\x5d\xde\x65\x50\x26\x12\x0d\xde\xe5\xc8\x2a\xaf\x8b\xea\xd3\x41\x9e\x04\xa5\xbe\x67\xf0\x08\x87\xa4\xb4\x49\x95\x83\x49\x18\x94\x89\x44\x83\x49\x38\x24\xa5\xcd\x70\x1c\x5c\xc2\xe0\xcb\x32\x1a\x5c\xc2\xc1\x12\xd4\x56\x6c\xf0\x04\x83\xe3\xb7\xff\xc1\xa8\x3d\x58\x86\x83\x8a\xd2\x37\x61\x50\x51\xc1\x4a\xf0\x0e\x2a\x2a\x38\x74\x76\x1f\x44\xd4\x60\x19\x5a\x4a\x70\xf0\x0c\x47\xcb\x6c\x5e\x27\xcd\xfa\x1b\x0a\x60\x7f\x6e\x2f\x9f\x2f\x38\xac\xaa\x34\xf8\x7c\x43\xda\x58\x33\xac\xc1\xe8\x0b\x16\x4b\x28\x0d\x92\x6c\x58\x52\xd6\xfb\x8b\x24\x1b\x24\x99\x06\x56\x83\x24\x1b\x99\xe2\x66\xdd\x9f\x41\x6c\x05\xcf\x6e\x39\x05\x4e\xdf\xa8\x5f\x76\xcb\xe1\x32\xfa\x06\x4d\xa6\x51\xd4\xa0\xc9\x46\x2a\x54\x2d\x44\x33\x54\xa8\x06\x9b\x1e\xb4\x83\x24\x0b\x9e\x4f\xe6\x56\xd2\x64\x23\xf3\xd5\x4c\x15\x18\xac\xb8\x60\x55\x7f\x36\x58\x71\xa3\x67\x52\xbb\x77\x04\x95\x16\xac\x6f\x17\xda\x41\xa6\x05\x87\xf5\x1f\x06\x99\x36\xfa\x7b\xd5\x72\x3d\xe8\xb0\x61\xa5\xd5\x66\x93\x4b\xd4\x5d\x22\x77\x94\x17\x37\x62\x9f\x59\x9a\x66\xb0\xcf\x82\x55\x38\x3e\xd8\x67\x83\x7d\xa6\x07\xc0\x60\x9f\x0d\x3d\x23\x8c\x8c\xe6\x9c\x8d\xcc\x39\x5b\x2c\xf5\x3b\xd8\x5b\xc1\x26\x22\x1d\x2a\x48\x47\x96\x26\xd5\x4f\x64\x90\x6b\x63\xbc\x5f\x90\x4b\x44\x9b\x8d\x2b\x8e\x9a\x91\x80\x45\x35\xae\xf7\x0b\xf2\xa5\x0c\xa9\x71\x25\x7c\xf3\x1e\xa5\xc3\x82\x65\xf1\xda\xa7\xc3\xc6\x95\xb8\xcc\x0b\xe7\x7a\xff\xbe\x1f\xd8\x6e\x37\x57\xf2\x4a\x5c\xe6\xc7\x4f\x73\x05\xab\x25\x43\x06\x77\x69\x70\x97\x92\xa0\x19\xdc\xa5\x91\x32\xcc\xe5\x7d\xe6\xc9\xb0\xe0\xd0\xb5\x63\x90\x61\x63\xfa\xb5\x44\xff\x0f\x9a\x2b\x68\x16\x0c\x1a\x0c\xa7\x91\x79\x63\x8b\x8e\x4c\x83\xc0\x0a\x4a\xff\x96\x41\x5f\x8d\xe9\x0c\x3c\xe0\x04\x56\xd0\x94\xa3\x0e\x86\xd3\xb8\x5d\x35\xef\x2a\xa5\x93\xc1\xc1\x56\x1e\xf4\x55\xd0\x2c\xaa\x34\xe8\xab\xe0\xf9\x64\x8e\xcd\xc4\xb1\xa0\x76\xba\xc6\xc4\xb1\xc1\x4a\x52\x6b\x70\x11\x53\x17\x8f\xc8\x73\x7a\xf1\x88\x82\x72\xe3\x2f\x1e\xd1\x65\x16\x57\x86\x90\x8b\xe4\x0a\xd6\xc5\x4a\x39\x17\xcd\x15\x34\x33\xd8\x2f\x9a\xeb\x5a\x5c\xca\xfc\xf8\x2e\x2d\xdf\x82\xe6\x70\x2f\xe9\xdf\x2b\x25\x85\x8b\x75\x04\x2e\xae\x4e\xd0\xc4\x48\x97\x92\xc2\x60\x5d\x74\x23\xba\xcc\x8c\x0a\xca\x03\x78\xa9\x32\xbc\xf8\x41\x7b\x86\xe3\x8b\x1f\x14\xd4\x9e\xa1\xe6\xa2\xb9\x2e\x02\xcb\xdc\x81\x8b\xc0\x0a\x4a\x63\x88\x8b\xc0\xba\x32\x59\x6a\x31\xa7\xff\xa2\xa6\x82\x26\xb9\x72\x31\x7a\x2e\x02\x6b\x5f\x7c\x83\x8b\x94\x95\x37\xf7\x48\xeb\x8b\xc0\xba\xd6\xf7\xd8\x72\x17\x58\x38\x41\x59\x91\xee\x62\xe1\x04\xf5\x9e\x01\x31\x75\x91\x27\xa6\x29\x5f\xe4\x49\xd0\xd4\x05\x5e\xe4\xc9\xb5\xf9\x82\xcd\x6e\xbe\x60\x4b\xf1\x6e\x9e\xe7\x4b\x9a\xf8\x8a\x37\xb3\x70\xe9\x2f\xe6\x4c\x50\xef\xf5\x60\xce\x5c\x9c\x0c\xc6\xfa\xc5\xc9\x08\x9a\x49\x00\x17\xdd\x11\xd4\x7b\xee\xbf\xf7\x93\xb9\x92\x91\x6b\x17\xd9\x71\x29\xc8\xe3\x81\x5c\x72\xa6\x41\xf9\x2d\x5f\x94\x42\x70\x98\x4e\x73\x51\x0a\xd7\x4f\x39\x5b\xc6\xb4\x8b\x2c\x08\xca\xcb\xe2\x32\xd5\x3d\x28\x2d\x7e\x2e\x89\xd5\x4b\x2e\x94\xdf\x7b\xc9\x85\x06\xe5\x27\x7f\xc9\x85\x5e\x72\xa1\x5c\xbf\x4b\x2e\x34\x68\xdb\xe1\x93\x0e\x8d\x79\xb2\x1f\x7f\x30\x8f\xeb\xe2\xad\x04\x65\x0e\xfa\xc5\x5b\xb9\x0e\xd7\x3e\x83\xd4\x25\x0d\x1a\x34\x35\x50\x97\x2c\xe8\x95\x0c\xde\x62\x22\xd9\x25\x85\x17\x94\xfe\x4a\x97\x14\x5e\xb0\x2e\xd2\x4a\x97\x81\x3c\xa8\xf7\x51\x91\xc2\xbb\xca\xd3\x1e\x01\x76\x19\x67\x83\xf2\x8a\xbc\x0c\xb3\x57\xe6\x86\x2c\x2a\x96\x2f\xa9\xb2\xa0\x4c\x42\xbf\xa4\xca\x2e\x43\xef\xe1\x97\x58\xef\x37\xb8\xac\x3e\xe9\xb2\xaa\xc6\x3a\x3c\xc7\x46\xd0\xa0\xcc\xbd\xbe\x24\xb3\xae\x2c\x99\xb8\x68\x3e\x70\x49\x53\x05\x65\xc2\xf7\x65\xa0\xbd\x64\xae\x0e\xa7\x65\xb8\x0c\x4a\xed\xdb\x65\xb4\xbc\x32\x45\x7b\x39\x7c\x54\xb5\x54\xd0\x3e\x9e\x29\xd5\x52\x57\xba\x2e\x2d\x4a\xc9\x2f\xa9\xa5\x4b\xd7\x25\x37\x4b\x66\x29\x28\x73\xc0\x2f\x99\xa5\x8b\x2f\xa2\x5f\xc5\xc5\x17\x09\xca\x14\xfb\x8b\x2f\x12\x3c\xbb\xe5\x39\x63\x8c\x04\x65\x52\xfc\x65\xec\x0d\x9e\xdd\xf2\xa5\x06\xdf\xa0\x7d\xde\x4d\x0e\xd7\xa8\x6a\xdd\x9d\xcb\xa8\x1a\x94\x84\xdc\xc5\x04\xb9\xae\x3c\x34\x4c\xba\xcb\xb0\x1a\xb4\x2d\x9a\xfa\x92\xa1\x09\xd6\x85\x5f\x76\x49\xd1\x04\xf5\xbe\x5c\x8d\xbe\x41\xbd\xef\x12\xbe\xc8\x65\x70\x24\x96\x2f\x83\x63\x50\x52\xe5\x97\xc1\x31\x28\x13\x8a\x2e\x16\xc5\x35\xdd\xbe\xc3\x27\xdd\xbe\xac\x97\x2d\x31\x78\x31\x1a\xae\xdb\x65\x4b\x04\x77\x29\x7a\x0a\xea\x7d\x59\x19\x1b\x83\x7a\xdf\xa3\xc6\xc6\xeb\xf6\xec\x46\x9c\x5d\x7a\xf8\x04\x25\x7f\x78\xc9\xc6\x04\xed\x78\xff\x98\xf3\xbc\x73\x9e\x5f\x5f\xe9\x3c\x0d\x97\x7c\x91\x69\xb8\x9c\x29\xdd\x5f\xb8\x3d\x53\xe9\x7e\x50\x5e\x90\x93\xa9\x30\x0d\x7a\x6c\x8b\x69\xd0\x0b\xca\x00\x37\x0d\x7a\x53\x76\x43\xd4\x38\x65\x37\x82\xe2\xc2\x4d\xe3\x60\x50\x72\x96\xd3\x38\x38\x8d\x83\x02\xc9\xb9\xbc\x5f\x9a\x71\xf0\xdd\x34\x6d\xca\x44\xd4\xc5\x61\xdc\x36\xdd\x69\xf8\x9f\xa3\x35\x0c\x06\xbb\xc1\x61\xb2\x1e\xa6\x35\xa9\x73\xa3\xa6\x44\x49\xb0\x6b\xb2\x36\x8d\x95\xc1\x2a\x36\x9e\xc6\xca\xc9\x8c\x10\x32\x4e\x66\x44\xb0\x5a\xb6\x61\x1a\x3e\x83\xef\x27\x31\xc5\x34\x7c\x4e\xc3\xa7\x98\x74\x1a\x3e\x67\x96\xb0\x30\x13\x63\x32\x1e\x82\xaf\xba\xe9\xc9\x78\x98\x46\x54\x41\xef\x34\xa2\x06\x5f\xc5\x6f\xd3\x88\x3a\xf9\x13\x42\xc6\x69\x48\x0d\xf6\x72\x9e\xfc\x89\x60\x37\xc5\x62\xf2\x27\x82\xaf\xf6\xe7\x93\x3f\x31\xf9\x13\x66\xf9\x4f\xfe\x44\xb0\x69\x14\x33\xf9\x13\xc1\x6e\x3e\xc5\x64\x4f\x04\x7b\xc5\x2c\x9d\xec\x89\x60\xaf\xc3\x07\xcb\xa6\x2c\x75\x71\x38\x7e\x8f\xc1\xe6\x9e\xaf\x8e\xcc\xd5\x78\xb0\x08\x96\x27\x27\x22\xd8\x2b\x22\x6f\x1a\xfd\x83\xc5\xa4\x9f\x69\xf4\x9f\xdf\xf7\x62\xe4\xc8\x64\x6b\xa6\x95\x2b\x62\xb9\x4c\xa3\x7f\xb0\x6e\x79\xa9\x4d\xa9\x99\x60\x37\xe7\x62\x72\x35\x82\x57\x57\x4e\xae\xc6\xb4\x48\x45\x7e\x88\x93\x5d\x11\x6c\x12\xe8\x53\x91\xd8\xb4\x20\x85\x5f\x98\x94\xcb\xfc\xab\xf1\x69\x2e\x86\x9c\x4b\xb0\xeb\x48\x3f\xe5\x5c\x82\xb5\x32\xe4\x4d\x39\x97\xf9\x7b\x4f\x29\x5f\x40\xa9\x04\x7b\xd5\x1f\xb4\x09\x9f\x84\xcc\xfc\xbd\x37\xd6\x5f\x76\x7e\xbf\x94\x0f\x27\xfa\x9a\x9c\x91\xa9\x94\xcc\x74\x83\xc9\x1a\x09\xf6\xf2\x6e\x60\x8d\x04\x87\x97\xe0\x64\x8d\x4c\x59\x1a\x33\x10\xa6\x2c\xcd\xfc\xe5\x3a\xc4\x09\x9e\x34\xd0\x34\x29\x41\x62\x72\x12\x41\xc1\x6e\xd5\xef\xc9\x2d\x99\x69\xe4\xb3\x34\xef\x0b\x75\x63\xc1\xfe\x5e\x1b\x65\x63\xc1\x62\xae\xde\x54\x36\x16\x3c\x9f\xb4\x9b\xb3\xb2\xda\x45\x14\xc2\x24\x78\x82\xc3\x94\x95\xc9\x40\x99\xa6\x16\xe8\xc2\x30\x29\x9a\xe0\x2b\x1d\x3f\x95\x7a\x05\xc7\x27\x4a\x65\xd2\x38\x53\xa9\x97\x2e\x09\x93\xc8\x09\x0e\x0a\x76\x4a\x33\x05\xcf\x6e\xb9\x44\xf2\x4c\x41\x59\xdc\x69\xaa\xf5\x9a\x59\xda\x70\xb1\x9a\xd7\xe4\xda\x04\xa5\xc2\x69\x32\x6d\x26\xd3\x26\x62\x6f\x32\x6d\x26\xd3\x46\x26\x7f\x32\x6d\x82\xf6\xf1\xbb\x64\xda\x04\x6d\x77\x43\x95\x76\x05\xc7\xf7\x6b\x2f\xb7\xe0\x48\x21\x7c\x0c\xde\xc9\xa7\x99\xf1\x64\xde\x52\xfe\xc9\x94\x09\x0e\xc5\xf1\x93\x29\x33\xe9\x3b\x33\x43\x27\x7d\x37\x63\xca\x90\x7c\x93\x96\x9b\x4c\x19\xcd\x1a\x26\x53\x26\x38\x4c\x2f\x9f\x4c\x99\x59\xbe\x34\xe2\x7a\xca\x63\x4d\xdd\x83\xfc\xa4\x49\xbe\x60\x95\xfa\x9c\x24\xdf\x2c\xc7\xb1\xdb\xcd\x71\x54\x7c\x3e\xb7\x85\x0a\x9c\x52\x5b\x2d\x03\xff\xe4\xa3\x04\x87\xb9\xfb\x93\x8d\x12\x3c\xbb\xe5\xac\xe4\xb6\x82\xc3\x0c\xfc\x69\xf6\xef\xa4\x0c\x55\x9c\x4f\xca\x30\x68\x9b\x47\x86\x32\x0c\x56\x0d\xbd\xa7\x2a\xa7\x49\x2c\xea\x7c\x33\x89\xc5\xa0\xcc\x33\x98\xc4\xe2\x24\x16\x4d\xce\x98\xc4\x62\x50\x5a\x3a\x4c\x62\x71\x12\x8b\x3a\xa0\x4c\x62\x31\x38\xbe\x1e\x7a\x62\x31\x28\x2b\x6a\x4d\x65\x4e\xf3\x34\x62\xc5\x34\x99\x5c\x99\xe0\x90\x95\x9a\x5c\x99\x49\x66\xea\xd0\x30\xc9\xcc\x60\x95\x79\x9f\x64\x66\xf0\xec\x96\x53\xa0\x33\xe7\x99\x89\x6b\x86\x27\xdd\x3d\x27\xb1\xa8\x6b\xc3\x24\x16\x83\xd5\x74\xae\x49\x2c\x4e\x89\x35\x9e\xd7\x94\x58\x0b\xbe\x56\x77\x9b\xcc\x9b\x39\xfc\x10\x62\x0f\x4d\x6d\x7f\x82\x66\x61\x9c\xa9\x5c\x29\xd8\xac\x42\x34\x4d\xf5\x0d\x56\x4b\x2f\xcf\xf1\x1e\x5a\x56\xbc\xf1\xfc\x29\x60\x9a\x0a\x98\x2c\x0d\x30\xb9\x43\xc1\xf2\xca\x01\x05\x4c\x53\x32\x4f\x37\x86\x49\xc7\x06\x9b\x5a\xc2\x29\x99\x37\x55\x1a\x09\x0c\x27\x1d\x1b\xac\xef\xdb\x94\x8c\x9d\x92\x79\xa6\xcf\x4f\xa2\x75\x72\x8c\x9a\x4f\x3a\x83\x07\x87\x35\x04\x26\xc7\x68\x72\x8c\x62\x86\x4c\x8e\x51\x70\x88\xe0\xa7\x54\xde\x64\x22\x99\x17\x3f\x99\x48\x93\x89\xe4\xe6\x31\x91\xe6\x7c\xab\x34\x73\xa7\xe8\xe4\xe0\x78\xdf\x28\x74\xf2\x94\xcb\x2b\x22\x90\x50\x0e\x0e\x4d\xf9\xa6\x5c\x5e\x70\x68\xb1\x32\x59\x4d\xc1\xa1\xc3\xdf\x64\x35\x05\xc7\x6e\x20\x51\xee\x34\x89\xee\x5a\x6c\x73\x9e\xaa\x96\x62\xdd\x4c\xa2\x7b\x12\xdd\x26\xae\x4f\xa2\x3b\xa8\xe6\xa5\x4e\x74\x4f\x19\x3f\x2b\x11\x4d\xaa\x3b\x28\xeb\xe2\x4d\x8e\xd4\xbc\x9d\x14\xad\xc5\x7e\x0a\xea\x1d\xa9\x68\xf3\xa9\x54\xea\x7d\xd6\x88\xf3\x60\x3f\xfe\x64\x11\xae\x49\xbb\x4f\x95\x54\xe5\x0d\x4f\xbc\xcf\x7b\xe4\xaf\xf8\xc3\x1e\x62\x19\x47\x6f\x51\x19\xc7\xe0\xf8\xbd\x7b\xb9\x34\x49\x38\x1e\x29\xf9\xb8\x89\xfe\xfb\xf3\x1e\xe5\x37\xdb\xca\xb6\xbc\x6f\x7e\x36\x75\x9b\x1c\xc6\xe6\xa3\xa7\x6d\x71\x81\xbf\x36\x0d\x9b\x86\xdd\x7c\xf4\xb2\x4d\x63\x5f\x9b\xa6\x4d\x33\x6d\x40\x2a\x9b\x6e\x9b\x6e\x9f\x7c\x7e\x73\xb7\xbc\x64\xf0\xd5\x8d\xef\x96\x97\xbc\x95\x56\x69\x72\x70\x4b\x42\x06\xaf\x5a\xbd\x25\x21\x6f\x31\x8a\x09\x4a\xb7\x18\x25\x28\xad\x88\x6e\x31\x4a\xf0\xec\x96\x03\x31\x31\x23\xf8\x1e\xef\x5f\x6b\x36\xb9\x46\x19\xd9\x6f\x73\x35\x82\x9f\x49\x3a\xb7\xe8\xe6\x96\xf9\x64\x68\xde\xc2\x8f\x60\xb3\x50\xd9\x2d\xfc\xb8\x15\x6a\x99\x06\x7f\x8b\x3f\x82\xc3\xd2\x3c\xb7\xf8\xe3\x5e\x4f\xbb\xe5\x14\x4c\xf3\x08\x0e\x6d\x29\x6f\x21\xc3\x2d\x3e\xd0\xfe\xfe\x16\x1f\x04\x07\xcb\xe4\x16\x1f\xdc\x72\x89\xda\xfb\xdd\xc4\x7a\x70\x68\x55\x79\x13\xeb\xb7\x5c\xa2\x40\xe8\xa6\xd6\x83\x83\xb3\x72\xcb\x25\xde\xcc\x3a\xb1\xcb\x4d\xc1\x07\xcb\x27\xa1\xc5\xcd\xac\xbb\x89\x7a\xb3\xc8\x6f\xa2\xfe\x4e\xcf\x4c\x53\x12\x6e\x0a\xfe\xfe\xfa\xd9\x65\xb0\xbc\x09\xf1\xe0\xd0\x1f\xf3\x26\xc4\x6f\x73\x33\xc4\x1b\x37\xd9\x1d\xb4\x2d\x6f\x89\x9b\xec\x0e\x9a\x7c\xeb\x6d\x62\xef\x6d\xa2\x85\xb0\xe1\xfe\xbe\x5f\xaa\x0b\x46\xce\x80\xc6\x0e\x36\x65\xe6\x37\x89\x1d\xec\x6c\xe0\x9b\x86\x0e\x0e\x71\xe1\xcd\x0c\xbc\x25\x21\xeb\xfd\xa4\x13\xf8\xe9\xe6\x99\xa7\x8d\xd2\xbe\x7f\x2e\x6e\xb3\xcd\xc5\x4d\xeb\x22\xb6\xc7\x4d\x2f\xdf\x7c\x44\x81\xc3\xcd\x47\x0c\xea\xf0\xc8\xd0\xd0\xb7\xf4\xa2\xc0\xe1\x26\x98\x6f\xe9\x45\x3f\x35\x3e\x62\x50\x47\xc4\xda\xcd\x47\x0c\x9a\x39\x26\x37\x1f\xf1\xa6\xb4\x45\x01\x37\xa5\x1d\x14\x9d\x7a\x53\xda\x37\x59\x2d\x0a\xb8\xc9\xea\xa0\x0e\x8f\xa9\xf4\xe5\xcd\x95\x2c\x97\x8d\x2b\x19\x94\x56\xba\x37\x57\xf2\xe6\x4a\xd2\xf2\x37\x57\x32\x28\x8d\x29\x6f\x22\xfd\xe6\x27\x12\xee\x37\xad\x7d\xbf\x7e\x62\xbe\x80\xd4\xbe\x53\xab\xb5\xaa\xe4\xbb\xd5\x6a\xdd\x6f\xad\x56\x4e\x41\x32\xf4\x4e\xae\x72\x25\xc9\x6f\x22\xf7\xb6\x8c\x9c\xdb\x47\xe4\x06\x87\x8c\xe6\x2d\x17\x79\xa7\x7c\x6b\xfd\xb8\xf3\x44\x6e\x70\xe8\x8f\x7d\x2b\xdf\x0a\x56\x1e\xe6\x2d\x17\x79\xa7\xfb\xbe\xc4\xe6\x4d\xe2\x06\x9b\x65\xf7\x6f\x12\x37\x38\x24\x0f\x6f\x69\xc7\xa0\xad\x6e\xbb\xb4\xe3\x9d\x1c\xe3\xfa\x49\xa4\x79\xcb\x31\x06\x6d\x8b\x7c\xbb\x95\x7d\xdd\x11\xc2\xab\x49\xe4\x37\x25\x1c\x1c\x95\x4c\xcd\xad\xa5\x4e\x50\x16\x1b\xbe\xa5\x1d\xef\xac\xcc\xbd\x6a\x39\x72\xf3\x43\x83\x95\xf7\x79\xb3\x43\x83\x45\x7d\xcf\xcd\x0e\x0d\x76\xbe\xe1\x2d\x39\x19\x1c\xd5\x1c\x85\x73\x2a\x37\xc0\x5b\x9d\x82\x0e\x16\xe3\xff\x4d\x41\x07\x5f\x0b\x04\xdf\x26\x18\xdc\xe9\xaf\xb9\x66\x59\xc6\x99\x9e\x74\x0f\x1c\xed\xf3\xf8\xcd\x16\x63\x08\xd6\xf5\xf3\xcb\x7e\xab\xfd\xac\x47\xfa\x79\x42\xac\xd9\x32\x8f\x6e\x6a\x00\x67\x9a\xfa\xd4\xc6\x6d\xb6\xcd\x4d\x3e\x7e\xd9\x66\xbf\x34\x40\x58\x3f\xed\xbf\x4d\xed\x5a\x7f\xff\x7d\xd0\x9e\x2d\xce\x02\xac\x6b\xa6\x47\x4c\xed\xcd\x66\x5a\x9a\xad\xeb\xf2\x28\xa6\x99\x4e\x61\x2f\xd6\x35\xed\x16\xee\xca\x3b\x1e\xd6\xf5\xf3\x88\xbe\xdb\x64\xc4\x3b\xd3\x0c\x9f\x6d\xeb\xb3\x2d\x23\x21\x3c\xdb\x7e\xd9\xb6\xd9\xf6\xb5\x6d\xcf\xb6\x66\x9b\x2b\xf4\x0c\x85\x77\x8f\x4f\x76\xf7\xf5\xfd\x6c\x3d\xdb\x56\x9f\x5d\x7d\xf6\x9b\xef\x88\x6d\x75\xf7\x34\x77\x5e\xe3\xd4\xde\x9c\x26\x58\x3e\x69\x89\x70\xc7\x09\xf9\x5f\x77\xec\x85\xe5\x93\x1e\x00\x77\x4c\x86\x07\x47\xb6\x6d\xb6\xd9\xef\x79\x57\x2c\x9f\xcf\xf3\x8c\xdf\x33\x85\x0d\xf7\xdc\x33\x6e\x64\xde\xf0\x7d\x67\x2a\xe7\x7d\xa7\xd7\xf7\xbe\x66\xcb\xd7\x96\x6f\x9a\xef\x64\xcb\x2f\x5b\x7e\x96\x9e\x7e\xb6\xc4\x41\x80\xac\x7f\x7f\xdf\xd1\xb7\xf7\xfd\x88\xd9\xac\x3e\x77\xdf\x91\xb2\xf0\x1c\xfd\x37\xdb\x36\xdb\x32\x9d\x20\xdf\x3f\x7d\xdb\x83\x67\x2f\xdb\x7c\x5f\x8a\xf2\xf7\xff\xfa\x0c\x3c\xff\xff\xd7\xfe\xf7\xff\xf1\xbf\xff\x4f\xff\xfb\xff\xed\xff\x3a\xff\x36\xfe\xf3\x1f\xff\x98\xff\xf6\x1f\xd7\xbf\x8c\xff\xf8\xdb\xff\x7c\xb6\xfe\xed\x9a\xf7\xbf\xfc\xdb\xfc\xc7\xfc\x7f\xff\xfe\x9f\xff\x18\xf3\x6f\x7f\xff\xf7\xbf\x3f\x9f\xca\xbf\xff\x1f\x00\x00\xff\xff\xf9\x94\xac\x5b\x06\x27\x04\x00"); +var _afbf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x41\x8b\xe3\x46\x10\x05\xe0\x7b\xff\x8a\x3e\x6e\x0e\x1b\x77\x55\x75\xb7\x5a\x20\x06\xc2\x0c\x0b\x26\x6c\x36\x64\x32\x49\x20\xe4\xa0\x91\x5a\x83\x20\x96\x84\x6c\x1f\xe6\xdf\x87\xaa\x67\x4f\x60\x0f\x8b\xd7\xcf\xad\xb2\xfc\xbd\xe9\xd6\xe1\xf1\xf8\x74\x5c\xe6\x8b\x3f\xfc\xba\xaf\xc3\x73\xbd\xf8\x69\x5e\xc6\xbd\x9e\xd7\xeb\x3e\x54\xff\x5a\xdf\xe6\xc5\x39\x62\x3f\xce\xc3\xe5\xfe\xd6\x5e\x86\x53\xbf\x39\xa7\xd7\x3f\xbf\x9f\x2f\xf5\x74\x5c\xa6\xd5\x0b\xd6\x8d\xd7\xed\xb6\xd6\xfb\xc3\x6f\xf5\x6d\x3e\x5f\xf6\x77\xff\xe9\xa7\x71\x7d\xad\x3f\xf8\xb1\x4e\x9a\x7f\xdb\xc7\xba\xcf\xcb\x9b\xff\xf4\xf3\xba\xd7\x9e\x3e\x3e\x78\xbe\x6e\xdb\xbf\xf5\x54\x97\x8b\x27\xcb\xea\x32\xda\xab\x3b\x3c\x7e\xed\xb7\x5f\xfa\x53\xf5\x07\x9b\xf5\x19\x57\x7e\xc6\x32\xfb\xf4\x8f\xba\x9f\xe7\x75\xf1\x14\x7e\x0c\x21\xff\x9f\xff\xfe\xbe\xd5\xdb\x38\x77\x78\x39\x3e\x7d\x9b\xa6\x73\xbd\x78\x91\x80\x35\x7f\xbd\x1c\x9f\xfc\xdf\xe4\x29\x78\x4e\x91\xca\x3f\xb7\xa5\x7f\x7e\x5d\xc7\xea\xc3\xfd\xfb\x8f\x4f\x8f\xeb\x55\x6f\xac\x50\x4a\x08\x09\x3f\x75\x58\xc7\x7a\xde\xfa\xa1\xee\xfd\xf2\x56\x9d\xf7\x5d\x08\x21\x3c\xf8\x2e\xe6\x2f\x5f\x1e\xf4\x37\x7c\xb7\xc2\x35\xf7\x2b\xe7\x11\xc9\xfd\x8a\x10\xa6\xe9\xc1\x07\xd7\x05\xc2\x7b\xd2\xf7\x9c\xb2\xeb\x02\x23\x61\x4d\x12\xb1\xeb\x82\x20\x11\x4d\x9a\x5c\x5c\x17\x22\x92\xa8\x09\x05\x8e\xae\x0b\x09\x51\xb2\x88\x8b\xce\xce\x88\xb2\x45\x49\x74\x78\x83\xa8\xb1\xa8\x69\x75\x7a\x41\x54\xec\x0e\x42\xd4\xf1\x2d\xa2\xd6\x22\x09\x3a\xbe\x47\xd4\xdf\xee\x53\xc7\xbf\x22\x7a\xb5\xa8\x90\x8e\x1f\x10\x0d\x1a\x49\x68\x74\xfc\x88\x68\xb4\x48\x58\xc7\x57\x44\xd5\xa2\x54\x74\xfc\x84\x68\xb2\xa8\xc4\xe0\x3a\x82\x14\x99\x54\x0c\x6d\x76\x1d\x01\x8b\x0c\x2b\x4a\x62\xd7\x11\xb4\xc8\xb4\x62\x0e\xc5\x75\x04\x2e\x32\xae\x58\x72\x74\x1d\xc1\x8b\xe2\xcd\x54\xc7\xc3\x8b\xcc\x2b\x49\xa3\xe3\xe1\x45\xe6\x95\xb2\xe8\x78\x78\x91\x79\xa5\x52\x74\x3c\xbc\xc8\xbc\x32\x45\x1d\x0f\x2f\x32\xaf\x1c\x83\x8e\x87\x17\x99\x57\xce\x5a\x2c\xc1\x8b\xcc\x2b\xb7\xda\x2c\xc1\x8b\xcc\xab\x21\xad\x96\xe0\x45\xe6\xd5\x44\xad\x96\xe0\x45\xf5\xd6\xbf\x8e\x87\x17\x99\x57\xd3\x6a\xb5\x0c\x2f\x36\xaf\x42\x5a\x2d\xc3\x8b\xcd\xab\x44\xad\x96\xe1\xc5\xe6\x55\x1a\xad\x96\xe1\xc5\xe6\x55\x5a\xad\x96\xe1\xc5\xe6\xd5\xb2\x56\xcb\xf0\x62\xf3\x6a\xa3\x56\xcb\xf0\x62\xf3\x6a\x1b\xad\x96\xe1\xc5\xe6\xd5\xb6\x5a\x2d\xc3\x8b\xcb\xfd\x6f\x55\xe7\x03\x8c\x5b\x64\x51\xcb\x65\x88\x71\x8f\xac\xd1\x76\x19\x64\x6c\x64\xda\xbe\x7e\x05\xcc\x78\x40\xc6\xda\x2f\x03\x8d\x47\x64\x49\x0b\x66\xa8\x71\x45\xd6\x68\xc3\x0c\x36\x9e\xb0\x49\x82\x56\x2c\x70\x93\x80\x8c\xb5\x63\x01\x9c\x10\xb2\xa4\x25\x0b\xe4\x84\xef\x1b\x2c\xb8\x4e\x40\x27\x46\x47\x12\xb4\x66\x81\x9d\x60\x6f\x8a\x68\xcf\x02\x3c\xc1\xe6\x94\xa4\x45\x0b\xf4\x04\xbb\x53\x8a\x36\x2d\xe0\x13\x6c\xcf\x18\xb4\x6a\x81\x9f\xc0\x2f\x8a\x76\x2d\xf0\x13\xf8\xc5\xa4\x65\x0b\xfc\x04\x7e\xb1\x68\xdb\x02\x3f\x81\x5f\x22\xad\x5b\xe0\x27\xc3\xfd\x54\xd0\xef\x80\x9f\xc0\x2f\x65\x2d\x5c\xe0\x27\xf0\x4b\x45\x1b\x17\xf8\x09\xfc\x32\x69\xe5\xf1\x76\x06\xc2\x2f\x8b\x76\x1e\xe1\x17\xe1\x97\xb3\x76\x1e\xe1\x17\xe1\x97\x8b\x76\x1e\xe1\x17\xe1\xd7\x90\x76\x1e\xe1\x17\xe1\xd7\x44\xed\x3c\xc2\x2f\xc2\xaf\xc9\xda\x79\xcc\xb7\xb3\xb7\xf6\x38\xca\x82\x9d\xc0\xf7\x93\x56\xff\xaf\xcf\xaf\x8f\xe7\xc9\x70\xdd\xf7\xba\x5c\xec\xe9\x65\xcf\x0b\x3d\xdb\xe7\xa5\x7e\x3c\x09\xb7\x75\xd3\xab\xec\xdf\x7f\x01\x00\x00\xff\xff\x4b\x22\x59\x16\x35\x07\x00\x00"); +func _affa ()([]byte ,error ){return _gb (_dcbcf ,"UniJIS-UCS2-HW-V")};func _bcgd ()([]byte ,error ){return _gb (_eaece ,"KSCms-UHC-H")};func _fgb ()([]byte ,error ){return _gb (_fcfb ,"Adobe-Japan1-4")};var _cec =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\x4f\x8f\x9b\x30\x10\xc5\xef\x7c\x8a\x39\x6e\x0f\x5b\x6c\xfe\x19\x4b\x11\x52\x37\x51\xb7\x1c\xb6\xad\x9a\xcd\xb6\x52\xd5\x03\xd8\x43\x6a\xa9\x31\xc8\xc0\x21\xdf\xbe\xb2\x3d\xd0\x1e\x22\xf8\x3d\x3f\x3b\xef\xe1\x49\x8f\xed\xa9\xb5\x66\x81\xf4\xab\x1b\xd5\x19\x17\x18\x8c\xd5\x0e\xe7\x71\x75\x0a\xa1\xc7\xab\xb1\x49\xc2\x33\xd0\x46\x2d\x1b\x86\x87\xba\x75\x53\x92\xa4\x17\x6b\x9e\x9f\x1e\x2f\xaf\x1f\xeb\xc7\x4f\xb0\xce\x48\xf2\xb1\x3d\x9d\xef\xf3\x82\xb7\xd6\x0e\x23\xe4\x71\xbb\x5e\x27\x3a\x02\x20\xfd\x86\x57\x33\x2f\xee\x0e\x0f\x1f\xf4\xd8\xe3\x3b\xd0\x38\x78\xfd\x8b\xd3\xe8\x8c\xbd\xc2\xc3\xf3\x13\xdf\xd5\xf3\x3a\x4d\x7f\xf0\x86\x76\x81\x32\x68\x68\x75\x78\x26\xe9\xf1\xa5\x9b\x3e\x77\x37\x84\xff\xb3\xbc\x85\xc5\xb0\xf6\x86\x6e\x36\xa3\x05\x9e\xbf\x67\x4c\xfc\xd3\x5f\xef\x13\x02\xa7\x43\x7e\x5c\xda\x13\xfc\xe4\xc0\x19\x64\x65\x51\xb2\x5f\xa4\x7f\x7f\x19\xf5\xee\xe2\x22\xc6\x57\x46\xab\xdf\x9d\x4b\x0e\x98\xd5\x4c\x16\x0d\x94\xb2\x8e\xd0\x55\x1e\x64\x72\xc0\xbc\x66\x35\x6f\xa0\x14\x25\x41\xe6\xa1\x88\x20\xf3\x06\x84\x60\x55\x72\xc0\xa1\x57\xd1\x57\x13\x28\x0f\x39\x01\x06\x9f\x88\x24\x75\x20\x32\xca\xc1\x1b\x65\x84\xbe\x0f\x4b\x1b\x05\x23\x67\x44\x43\x03\x15\x8b\xa0\x65\xef\x03\x56\x04\xda\x83\x20\x88\xff\x55\x04\x1a\xba\x90\x90\x73\xff\x9d\xb7\xba\x49\xb5\xd7\x77\x9d\xbd\x22\x15\xab\x1b\x88\x2f\x3e\x50\xbd\x35\x64\xa4\x4a\x5f\x4e\x6e\x6a\xb1\xa9\xa5\xf7\x66\xa4\x56\x9b\x2a\xbc\x37\xa3\xee\xe1\x5c\xff\x22\xbd\x97\xca\xc8\x8e\xd4\x50\x44\x54\x94\x2f\xe6\x09\xe0\xe7\x6f\x1f\x09\xb5\x3a\x87\x76\x09\xd3\x17\x2e\xdd\x5f\xa4\xb1\xb8\x0f\xf8\x34\x4e\x7e\x57\xf8\xfd\x0d\x00\x00\xff\xff\x48\xe4\x8e\x49\x0c\x03\x00\x00"); +func _fd ()(*asset ,error ){_dgg ,_dfc :=_cfbbd ();if _dfc !=nil {return nil ,_dfc ;};_ebfa :=bindataFileInfo {_ee :"Adobe-CNS1-0",_ffd :1587,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491131,0)};_beb :=&asset {_da :_dgg ,_dc :_ebfa };return _beb ,nil ; +};func _cegcb ()(*asset ,error ){_acaf ,_fcaeg :=_aced ();if _fcaeg !=nil {return nil ,_fcaeg ;};_bgba :=bindataFileInfo {_ee :"UniJISX02132004-UTF32-H",_ffd :243189,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492992,0)};_cdcf :=&asset {_da :_acaf ,_dc :_bgba }; +return _cdcf ,nil ;};var _dfgb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\xcf\x6e\x1b\x37\x17\x05\xf0\x3d\x9f\x82\xcb\x7c\x8b\x7c\xe6\x7f\x72\x00\x62\x80\xc4\x8e\x53\x2f\xd2\x14\x4d\xd3\x16\x28\xba\x18\x92\x97\x86\x80\x7a\x24\xc8\xf2\x22\x6f\x5f\xdc\x7b\x14\xb7\xe8\xc2\x90\x75\x86\x3c\x20\x7f\x43\x68\xe6\xe6\xf6\xe1\xee\x61\x3f\x5c\xf4\xcd\x4f\xe7\x63\xff\x42\x17\x3d\x0f\xfb\x38\xd3\xf3\xf1\xe5\xdc\x49\x37\x7a\x3c\xec\x4a\x59\xa7\xc7\xa1\x5f\xbe\x7f\x95\x8f\xfe\xb4\x9d\x94\xe2\xf9\x5f\xbe\x3d\x5f\xe8\xe9\x61\x9f\x47\xed\x31\x6e\xbc\x9c\xae\x63\xb5\xbe\xf9\x99\x1e\x0f\xcf\x97\xf3\x37\xfd\xe6\xdd\x38\x36\xfa\x9f\x1e\x34\x39\xff\x7c\x1e\x74\x3e\xec\x8f\xfa\xcd\xc7\xf7\xf6\x35\xfd\xf2\x72\x3a\xfd\x45\x4f\xb4\x5f\xb4\x91\x8c\xf6\x21\x9f\xea\xe6\xf6\xd3\x76\xfa\x71\x7b\x22\x7d\xf3\xf1\xfd\xa9\xbf\xfd\xf0\xf5\xf6\xed\x0f\x72\x49\xae\xfc\x4a\xe7\xe7\xc3\x71\xd7\xcb\xff\x8d\x49\xff\xc4\xbf\x7c\x3b\x91\xb6\xd7\x86\xaf\x0f\x77\x9f\xe7\x7c\xa6\xef\xdd\x37\xbf\x7f\x7d\xb8\xd3\x7f\x58\x6d\x8d\x76\xd1\xa7\xf0\xe7\x75\xe0\x6f\x9f\x8e\x83\xae\x83\x94\xc7\x5e\xfa\x71\xd0\xf3\x69\xeb\x74\xde\xf6\x47\x52\x5a\x57\x63\x56\xad\x75\x2d\x66\xe5\x6f\xef\xec\x3b\xbb\xea\x7a\x7f\x7b\xff\x41\xbe\xdf\xdf\xc9\xd5\xfb\xfb\x95\xf7\xf0\x9f\xd9\xca\xa2\x74\x3f\x5e\x06\x4d\x64\xd2\x57\xed\x5c\xb5\xe5\x19\xff\xbe\xa4\x96\xeb\xf8\x7e\x18\xd7\xc1\x8e\x07\x67\xe2\xc1\xbc\x02\x59\x86\xce\xd9\x3a\x55\x37\xbb\xf1\x4a\x36\x3b\x69\xd5\x4b\x52\x75\x73\x4d\x02\x47\x6e\xd5\x76\x31\x9c\x50\x44\x42\xab\x76\x41\x92\x89\x31\xb3\xaf\xda\x45\x4e\x3c\x6a\x3c\xd7\xb8\xc4\xc5\x01\x49\x98\x7e\xd5\x3e\x72\x73\x44\x12\x67\x5a\x75\xf0\x8b\xaa\x5b\x42\x92\x5a\x59\x75\x74\x91\x93\x8e\x64\xc6\x55\xc7\xc0\x63\x32\xc6\x64\xbe\x90\x0c\x37\xe7\x81\x84\x17\x91\x3c\xcf\x2a\x18\x53\xba\x59\x75\x4a\x85\x93\x2e\x6b\x2e\xb4\xad\x3a\x1b\x5e\xe1\xb2\x05\x4e\x16\x9a\xab\xce\x9e\xc7\x6c\x98\xb5\xf1\x9a\x8b\x0d\xaa\x6e\x0d\x49\xe3\x9e\xc5\x14\x55\x9b\x91\xa4\x19\xe1\xe1\xbd\x37\x80\x35\x01\xb3\xc6\x07\x55\x9b\x43\xe4\x24\xb2\x8e\xe7\xc1\xa3\x89\x87\x75\xce\xa9\xda\x00\xd2\x82\x44\xde\x26\x55\x1b\x44\x5a\x94\x28\x58\xae\x07\x49\x4b\x12\x45\xc3\xf5\x10\x68\x19\xd1\xc2\xf5\xd8\x70\x2b\x12\xa5\x85\xeb\x17\x44\x8b\x44\xb9\x70\x3d\x36\xd8\x64\x83\xb6\x14\xae\xc7\x0e\x5b\x93\x68\xc9\x5c\xdf\x11\x75\xb9\x75\x86\xf5\xda\x40\x34\x24\xb2\x7c\x3b\x1b\x21\x22\x89\x1c\xdf\xcf\x36\x11\x4d\x89\x3c\x1f\x83\x0e\xae\x2e\x5c\x2e\x84\xa0\x6a\x87\x57\x17\x2f\x17\x19\xbe\xc3\xab\x3b\x1c\x16\xef\x54\xed\xf0\xea\x38\x3f\xd9\x25\x55\x3b\xbc\xba\x78\xb9\xe2\xb8\x1e\x5e\x5d\xbc\xdc\xc2\xb7\xac\xc3\xab\x8b\x97\x37\x7c\xcf\x3a\xbc\xba\x78\x79\xcb\x47\xa6\xc3\xab\x17\x44\x7c\xce\x3b\xbc\xba\x78\x79\xc7\x07\xbd\xc3\xab\x8b\x97\xf7\x85\xeb\xe1\xd5\xc5\xcb\x87\xcc\xf5\xf0\xea\xe2\xe5\x63\xe6\x7a\x78\x75\xf1\xf2\x29\x71\x3d\xbc\xba\x78\xf9\x9c\xb8\x1e\x5e\x5d\xbc\x7c\x89\x41\xd5\x01\xaf\x21\x5e\x7e\x09\x45\xd5\x01\xaf\x21\x5e\xc1\x04\xa7\xea\x80\xd7\x10\xaf\x60\x7d\x52\x75\xc0\x6b\x88\x57\x70\xde\xa8\x3a\xe0\x35\xc4\x2b\x78\xc7\xf5\xf0\x1a\xe2\x15\x82\xe5\x7a\x78\x0d\xf1\x0a\x91\x7f\x02\x06\xbc\x46\x9e\xcb\xaa\x43\x32\x5c\x0f\xaf\x21\x5e\x21\x2d\x51\xd5\x01\xaf\x21\x5e\x21\x97\x45\xd5\x01\xaf\x21\x5e\xa1\x14\xaf\xea\x80\xd7\x10\xaf\xb0\xe4\xac\xea\x80\xd7\x10\xaf\x68\xb2\x55\x75\xc0\x6b\x88\x57\xb4\x89\xeb\xe1\x35\xc4\x2b\xba\xc8\xf5\xf0\x1a\xe2\x15\x7d\xf4\xaa\x12\xbc\x48\xbc\x62\x08\x59\x55\x82\x17\x89\x57\x8c\xc1\xaa\x4a\xf0\x22\xf1\x8a\xf2\x0b\x41\xf0\x22\xf1\x8a\xd9\x2d\xaa\x12\xbc\x48\xbc\x62\x71\x5c\x0f\x2f\x12\xaf\xb8\x58\xae\x87\x17\x89\x57\x32\x96\xeb\xe1\x45\x72\xbe\x92\x35\x5c\x0f\x2f\x2a\x88\x16\xae\x87\x17\x89\x57\x72\x0b\xd7\xc3\x8b\xc4\x2b\xf9\xc2\xf5\xf0\x22\xf1\x4a\xa1\x70\x3d\xbc\x48\xbc\x52\xcc\x5c\x0f\x2f\x12\xaf\x94\x12\xd7\xc3\x8b\xc4\x2b\xe5\xc4\xf5\xf0\x22\xf1\x4a\x25\x66\x55\x27\xbc\xa6\x78\xa5\x25\x5a\x55\x27\xbc\xa6\x78\x65\x13\xa2\xaa\x13\x5e\x53\xbc\xb2\xe5\x5f\xe6\x09\xaf\x29\x5e\xd9\x79\xaf\xea\x84\xd7\x14\xaf\xec\x1d\xd7\xc3\x6b\x8a\x57\x0e\x8e\xeb\xe1\x35\xc5\x2b\x47\xcb\xf5\xf0\x9a\xe2\x95\x93\xe1\xfa\xc1\xc1\x94\x87\x90\x97\x47\xde\xf7\x67\x15\xff\xcf\x6f\x0b\xaf\x0f\xf0\xfe\x72\x3e\xd3\x7e\x91\x77\x05\x79\x4a\xf3\x83\xf6\xb0\xd3\xeb\x7b\xc7\xe9\x78\xe2\x59\xf2\xf7\x77\x00\x00\x00\xff\xff\x10\x63\xff\x07\xa3\x08\x00\x00"); +var _ecaff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x4d\x6b\x24\x37\x10\x86\xef\xf3\x2b\xfa\xb8\x39\x6c\xac\xcf\x96\x04\x8b\x21\xec\x12\xe2\x85\x4d\x42\xbc\xbb\x09\x84\x1c\x5a\x2d\xb5\x33\x10\xcf\x0c\xe3\xf1\xc1\xff\x3e\xe8\xad\xb7\x66\x71\x72\x30\xee\xa7\x4a\x5d\x1f\x52\xa9\xaa\xe7\xe6\xfd\xdd\x87\xbb\xc3\xfe\x32\xdd\xfc\x7a\x3e\xae\xf7\xfd\x32\x6d\xfb\x43\x3b\xf7\xa7\xe3\xf3\x79\xed\x53\xed\x0f\xfb\xc3\x6e\x67\xdd\xd4\xf6\xeb\x45\x11\xff\xd6\xc7\xe5\xb4\xdb\xdd\x7c\x39\xec\x3f\xde\xdd\x3b\x63\xc2\xdb\x2f\x9f\x7f\xcc\x6f\x7f\x9a\x9e\x9f\x3a\x75\xef\xef\x3e\xdc\xbf\x3c\x5d\xfa\xe3\xdd\x61\x3b\x4e\x5e\x6c\xb4\xe7\x13\xed\x4c\xd3\xcd\x6f\xfd\x61\xff\x74\x39\xbf\x4c\x6f\x7e\x68\xc7\xda\xbf\x9b\x5a\xdf\x86\xfc\x97\x73\xeb\xe7\xfd\xe1\x61\x7a\xf3\x71\x39\x2d\x07\x7b\x55\xdc\x3f\x9f\x4e\xff\xf4\xc7\x7e\xb8\x4c\x09\xb2\x7e\x68\xf8\xbf\xbb\x79\xff\x69\x39\xfd\xbc\x3c\xf6\xe9\x7f\x31\x7d\xc5\x0a\x2c\xf8\xda\xcf\x4f\xfb\xe3\x61\xb2\xdf\x1b\x33\x7f\x13\x7f\x7e\x39\xf5\xc9\xd2\xd0\x1f\x5f\xee\x3e\x4c\x7f\xda\xc9\x9a\xc9\xc5\xd9\xbb\xbf\x28\xff\xfd\xd3\xb1\x5d\x57\x59\x63\x24\x8d\x75\xdf\xd6\xbf\x97\xf3\xee\xdd\xea\xaa\xb9\x9d\xb2\x9b\xcb\xee\x5d\x77\xd9\x14\x73\x3b\xa5\x5c\x3c\x29\x82\x1c\x69\x06\x45\xa1\x45\x74\x99\x24\xba\x24\x54\xdd\xb0\x99\x68\xa5\xfa\x41\x59\x68\x86\x07\x9f\x09\x76\xc0\x4c\x70\x03\x0a\xc1\x0f\x10\x7b\x29\x87\xdb\x29\x7b\x6b\x49\x11\x64\x48\x33\x48\x62\x4c\x23\x8e\x6c\xae\x94\x40\x81\x94\x41\xb4\xb2\x14\x90\x44\xd5\x4b\xbd\x9d\xac\xb3\x21\x13\x57\xe0\xac\xd8\x44\x9b\x88\x1d\x18\x0d\x71\x7b\xb5\x78\x31\xb2\xb8\x10\xad\x2c\x9e\x89\xee\xf5\x62\x2f\xda\x48\x0c\x82\xaa\x8d\xaf\x17\xcf\xa2\x65\x18\xc8\xee\x9b\x32\x83\x54\x57\x40\xea\x74\x79\x6d\xa7\x0e\x65\x72\xa4\x15\x64\x49\x0d\x84\xd4\x4a\xc8\xeb\xed\x94\x82\x1c\x79\x09\xb9\x81\x12\xa9\x83\x66\xd2\x06\xca\x42\x38\xe4\x68\x3c\xc9\x82\x68\x05\xc7\x1c\x4d\x20\x79\x10\xad\x94\x00\x2b\x96\x14\x41\x6a\x65\x06\x39\x52\x02\xa9\x95\x0c\x2a\xa4\x02\x9b\x6a\x65\x01\x31\xa3\x71\xd0\x29\x1a\xb5\x32\xf2\x8b\x4e\x3d\x34\x10\xf3\x1b\xa7\x9c\xa2\xd3\xa8\x37\x10\xfd\x2d\xc8\xcf\x31\xea\x05\xf9\x39\x7a\x5f\x90\x9f\xe3\x4e\xe0\x9a\x44\x4f\x2b\xb8\x26\xd1\xd3\xdf\x38\xc0\x14\x3d\x63\x19\x07\x98\xa2\x57\x0f\xc8\xc1\x33\x96\x05\x39\x78\xf5\x87\x1c\xbc\x7a\x40\x0e\x96\x1e\x2a\x22\xb3\x5c\x59\x03\xb2\xa5\x95\x0a\x0f\x46\xde\x8b\x19\x2b\x83\x25\x21\x87\x60\x48\xc8\x21\x38\x12\xce\x48\xaa\xbf\xc4\x0c\x9b\x52\xde\x25\x66\xe4\x17\x66\x12\xf2\x0b\xea\x01\xf9\x45\x4f\x82\xf7\x28\x36\xf3\xd8\xf9\xec\x9c\x25\x8d\xaa\x73\xb6\x90\x3a\x74\xba\x72\x03\x49\x64\x6b\x96\xfb\x93\xc4\x05\x6e\x57\x76\x66\xbc\xe8\xb3\xc1\x71\x66\x14\xc5\xa0\x71\x9c\x05\x17\x6f\xd0\x06\x4a\x20\x8b\x74\x8b\xcd\x24\x0f\x2a\xa4\x91\x52\x81\xc3\x41\x09\x64\x49\x05\xe4\x84\x16\xbc\x87\xf2\xf1\xa3\xc3\x81\x02\x49\xac\x44\x92\x58\x99\x49\x1d\x94\xc6\x20\xd0\x56\xbc\xcb\xf1\x3f\xbd\x79\xac\x1c\xe5\x9a\x5d\x72\x24\x6c\x5a\x92\x58\x1c\x1a\xcd\xec\xbd\x22\x52\x72\x99\x24\xc1\x14\x12\x82\xf1\x86\x84\x60\xae\xef\x21\x25\x2f\x2e\xbc\x24\xe1\x25\x25\x2f\x56\x7c\x20\x89\x95\x48\x12\x2b\x33\x09\x29\x79\xd9\x5e\x5f\xe5\x20\xc4\x43\xad\xdb\xed\xe4\xbc\x89\x12\xcc\x3a\x0a\x2f\xfb\x68\x48\x63\x3a\x78\x9f\x49\xa3\x01\xda\x32\xab\x12\xad\x9e\xd1\xac\xa3\xba\x86\xd2\x12\x93\x60\x24\x66\x41\x5d\x5c\x04\xd5\xf0\x22\x38\x13\x2b\x30\xa9\x9f\x55\xd0\x11\xa5\x72\xa8\x44\x53\x2a\x81\x5e\x0b\x42\x0a\xaa\xc3\xf4\xf1\x4a\x12\x51\x56\xcc\x50\x32\xed\x22\x01\x65\xfa\x40\x91\xfb\xc8\x68\x47\xd3\xc8\x9e\xc7\xb5\x2e\xd8\x93\xc0\xd0\x17\xd9\x13\xee\xe6\x8a\xa1\x60\x4b\xd1\x37\x67\xc4\xaa\x4a\x1c\x4a\xe0\x96\x8c\xb6\x91\x3d\x6f\xc0\x8a\xb6\x51\xae\x1e\x9b\x98\xa1\xcb\x6a\xb1\x94\x2e\x2b\x6e\x99\x31\xb4\x53\xe5\x8c\x02\x09\x1e\x43\x22\x25\x2c\xb5\xaa\xcc\x82\xf4\x59\x0b\x32\xa1\xcf\xba\x88\x52\x5f\xad\x50\x6a\x04\xab\x28\xb9\x79\xb5\x09\x4a\x44\x2d\x63\xaa\x1a\xde\xbc\x96\xad\x68\x0b\x11\xdb\xc7\x90\xda\x28\x8c\xec\xa3\x92\x44\xe4\x14\x51\xee\x3c\xbf\x36\xca\x22\x95\x18\x48\x38\x77\x46\xdb\x32\x4e\x88\x25\xdd\x30\xc4\x0a\xcf\xa4\x15\xd9\x20\x6e\x49\x2b\x5e\x50\xb5\x41\x30\x12\x11\x4f\xe0\xda\x8a\x4f\x0d\x73\x45\x49\x5b\x9d\x32\xed\xc0\x3c\x6b\x17\xb4\xc4\x0d\x65\x32\x5e\xdd\x2a\xaa\x36\x3b\x54\xf8\x20\x74\xcd\x44\x5d\x91\x91\x8f\x21\x38\x10\x99\x61\xe3\xb7\x8a\x8d\x4f\x05\xe3\x79\x10\x74\x86\x2f\x0e\x17\x29\x17\x03\x6a\x45\x56\x46\x92\x5c\xeb\x99\x24\xef\x29\xf5\x6b\xef\xdd\xea\x86\xc6\x91\x73\x79\xd5\xe1\x7c\xba\x76\xb8\xf3\x72\x78\xe8\xf2\xc5\x31\x26\x96\x3c\x58\xf4\xb3\xa8\xdf\x1e\x22\x2f\x01\xbd\x3a\x64\x8e\xf3\x71\xd4\xf2\x30\x5c\x84\xc4\xa9\x3b\x1a\x87\x3c\xe0\xa3\x21\xeb\x27\xcb\xac\x62\x7c\x2f\x64\x4e\xde\x51\x13\xf2\x50\x20\x56\x23\x8b\x8a\x2b\xc4\x3a\x7d\x3d\xc5\x0b\x46\x9f\x67\x80\xe3\x06\xc9\x03\xbe\x0d\xac\x4e\x59\x4b\x71\xc5\xd8\xe4\xe0\x0a\x35\xaa\x18\x53\xd1\xd0\xe5\xb8\x20\xf2\x80\xa1\x6e\xf9\x31\x50\xd5\x36\x8e\x23\x06\x9d\xa1\x5c\x1d\x51\xb7\x91\x1d\xca\x64\xb8\x1c\x0f\x0e\xdb\x9e\x28\xce\x14\x4b\xed\x1a\x8a\x4b\x50\x31\xfa\xb9\xb1\x14\xcf\x2a\x4e\x38\x07\xa7\x43\xf5\x6a\xa5\xa0\xa4\xd8\xcf\x5c\x89\x22\x77\xe8\x81\x6e\xe6\x90\xa8\x14\x7b\x69\x13\xbc\x12\x49\x4e\x79\x3c\x14\x99\x5a\x9e\xf2\x45\xe5\x1b\xe4\xbc\x16\xab\xa6\x24\x03\xdf\x16\xed\x4c\xa3\xca\xa5\x7f\x7a\x69\xd9\x6c\x2d\x65\x51\xb9\xf4\xb5\x4c\x3b\x63\xec\x4b\xbf\xb3\x22\xd7\xa6\x9a\x55\x2e\x6d\xb9\x68\x93\x54\xfb\x55\x1a\x8e\x61\xbb\xae\x41\xe5\x51\xe4\xda\x29\xaf\xeb\x37\x69\x33\xda\x58\xbc\xc8\x1b\x86\x96\x33\x4e\x9b\x4a\x55\xb9\xdc\x7b\xa7\xfd\x8d\x71\xb6\x22\x7e\x39\x52\x9a\xee\x72\x2b\x62\x07\xbb\x3f\x6e\x3b\xe2\x1f\x0f\x05\xf7\xae\xf0\x16\x6e\x22\x6e\xfa\x2b\xc4\xf2\x06\xca\x85\x03\x8c\xdf\xb9\xd7\xdf\x9d\xeb\xf3\xf9\xdc\x0f\x17\xfc\xca\xc5\xaf\xca\xf1\x4b\x71\x7f\xe8\xd7\x5f\xd3\xa7\xe3\x69\xbc\x85\xbf\x7f\x03\x00\x00\xff\xff\x7a\x11\xd0\xb4\x79\x0f\x00\x00"); +func _gdg ()(*asset ,error ){_acaa ,_ggcd :=_adb ();if _ggcd !=nil {return nil ,_ggcd ;};_gbb :=bindataFileInfo {_ee :"Adobe-Japan1-1",_ffd :1098,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491308,0)};_ddb :=&asset {_da :_acaa ,_dc :_gbb };return _ddb ,nil ; +};func _dfff ()([]byte ,error ){return _gb (_gfe ,"Add-H")};var _abga =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9a\x4b\xab\x65\x47\x72\x85\xe7\xf7\x57\xec\x61\x7b\xd0\xae\x9d\x3b\x23\x5f\x70\x39\xd0\x48\x2d\x2c\x9a\x76\x1b\xcb\x6d\x1b\x8c\x07\x3b\x5f\xa2\xc0\xba\x55\x54\x95\x06\xfa\xf7\x26\xbe\x75\x24\xb9\x1b\x83\x06\x22\x54\xab\x22\x63\x47\x46\xc6\x63\x65\x9e\x7a\xf7\xd5\xb7\x5f\x7f\xfb\xf6\xfe\xcb\xf1\xee\x5f\x3e\x7d\x18\xdf\xad\x2f\xc7\x7e\xff\x36\x3f\xad\xcf\x1f\x7e\xfc\x34\xd6\xd1\xd7\xf7\xef\xdf\x5e\x5e\xc2\x75\xcc\xf7\xe3\xcb\xcf\x7f\x44\x8c\x1f\xee\x8f\x2f\x2f\xbe\xfe\xbb\x9f\x3e\x7f\x59\x3f\x7c\xfb\xb6\x3f\x1c\x51\x7a\xf3\xc7\x8f\x4f\xdd\xe3\x78\xf7\xaf\xeb\xfb\xf7\x9f\xbf\x7c\xfa\xe9\xf8\xdd\x1f\xe6\x87\xbe\xfe\xe1\x98\x6b\x3b\xfe\x97\x4f\x73\x7d\x7a\xff\xf6\xfd\xf1\xbb\x3f\x7d\xf8\xb4\xee\xf0\xcb\x5f\x7c\xf7\xe3\xc7\x8f\xff\xb3\x7e\x58\x6f\x5f\x8e\x13\x6c\xbd\x4d\xe4\xcb\xbb\xaf\xfe\x7c\x7f\xfc\xe7\xfb\x87\x75\xbc\xfb\xd3\x77\x5f\x7d\x1c\xbf\xff\xe3\x5f\xbf\xfa\xfd\x3f\xf1\x77\xfc\xd5\xbf\xaf\x4f\x9f\xdf\x7f\x78\x3b\xda\x3f\x9e\x67\xfe\x15\xfe\xb7\x9f\x3e\xae\x23\x3c\x4d\xfc\xf5\xdb\xaf\xff\xb2\xf7\xe7\xf5\xb3\xf1\x77\xff\xf9\xd7\x6f\xbf\x3e\xfe\x2b\x1c\xe1\x3c\xae\x64\xa7\xfd\xf7\x53\xf1\x3f\xfe\xfc\x61\xae\xa7\xd2\x4b\xd4\x7e\xc6\x87\xb9\x3e\x7f\xbc\xc7\xfa\x74\xbf\x7d\xbf\x5e\x8e\xe3\xf5\x3c\x1f\xc7\x71\xbc\x56\x7b\xf8\x9f\xfe\x10\x2c\x3c\x8e\xd7\x6f\xbe\xfe\xe6\x8f\xfc\xf9\x9b\x3f\xf2\xb7\xdf\x7c\xf3\xf0\x4d\xfc\xdd\xea\x97\x20\xa3\x6f\x1f\xbe\xcc\xb5\x85\x61\xef\x35\xec\xc7\x11\x7c\xc5\xff\xfd\xab\x97\x70\x9e\x4f\x2f\xde\xcf\xa7\xf6\xe5\xda\x65\xb9\xf6\x6b\xf5\x2f\xd7\xf8\x38\x5a\x7e\x79\xbd\xe5\xc8\x1d\xca\x7c\x1c\x35\xb4\xe0\x50\x15\xd4\xee\xc7\x51\xaf\x74\x39\xd4\x06\xd0\x7d\x3a\x54\xaa\x43\xb7\xb4\x5c\x84\x93\x75\xf7\x25\x24\xba\x52\x8d\x40\x06\xb4\xfd\xd3\xa7\xbd\xbc\xde\x97\xbe\x77\xd9\x40\x29\x39\x24\x4b\xd7\x4a\x8f\x23\x34\x90\x95\x41\x7c\x59\xbd\x5a\x79\x79\xbd\xa3\xd6\x45\xfc\x8c\x97\x3b\x15\xe5\x67\x6c\xdb\x21\xbe\x17\x65\x2a\xfa\xc2\x2b\xfb\xf7\x4c\xeb\x8c\x75\x16\x80\xb4\xce\x58\x67\xc5\x3f\x68\x5a\x67\x33\x3e\x8e\x98\x7c\x7b\x36\x13\x88\x5b\xb2\xb3\xbd\xbc\xde\x49\x96\x12\x96\xd2\xe9\xc1\x4b\xb2\x94\x6a\x77\x28\xbb\x9f\x49\x96\xd2\x7d\x3f\x0e\x4b\x1e\x96\xd4\x4f\x90\xde\x1e\x87\x65\x90\x21\x9d\x59\x1f\x87\x15\x90\x79\x0b\xf1\x0d\x27\xe2\x9b\x96\x94\xb6\x2b\x11\x95\xb4\x9b\x10\x0f\x5d\x62\xbf\x59\x3e\x65\xf9\x54\xdd\x81\x2c\x9f\x72\xf5\xd3\xcb\x56\x81\x26\x50\xf3\x83\xc9\x6c\x2f\xb7\x2c\xc8\x3d\xcf\x39\x01\x2d\x41\x1e\x96\x8c\x5b\x59\x9b\xc9\xcb\x1e\x47\x0a\x1e\x84\xbc\x08\x4b\xe6\x64\x72\x71\x1f\x8a\x7c\x28\xf8\x90\x9b\x6b\x15\xf9\x50\x30\x55\xf2\xe9\x90\x4c\x95\xb5\x1f\x87\x1c\x2d\x9b\xb8\x14\x4c\x15\x32\xaf\xca\x54\xc5\x54\x25\xc4\x55\xa6\x2a\xa6\x2a\x21\xae\x32\x55\x3d\xb7\x72\x46\xe9\xce\x42\xf2\xe3\xc8\xe5\x04\xa9\x42\xb6\x23\xd8\xee\x5a\xe5\x9f\xcb\xc5\xbd\x6c\xfa\x5a\x2b\xe6\xa6\x9b\x87\xa5\xc9\x74\x73\xa5\x92\xfc\x63\xb7\x94\x6e\x5c\x6a\xc9\x6d\xdf\x72\xe9\x76\x97\xda\x19\xdc\xf8\xad\x75\xf7\xf6\x08\x73\xea\xf7\x36\x21\xcb\x95\xcc\xf3\xb5\xcb\x54\x77\x53\xed\x4c\x1e\xbb\x2e\x53\x1d\x53\x81\xec\xec\x32\xd5\x77\x7e\x1c\x2d\x82\xec\x22\xe4\x76\x25\x4b\x40\x5d\x90\x9b\x8a\xd1\xbd\x1a\xb2\x3e\xb0\x1e\xcc\x37\x38\x64\x7d\xb4\xf2\x38\xda\x15\xd0\x92\xf5\x31\xa8\xda\x0b\x68\x50\xb6\x63\x9e\xae\x15\xdd\xad\x31\xa5\xb5\xd1\xc2\xd3\xb1\xa5\x85\x5b\x17\x69\x35\xf5\xc5\xc9\x17\x2f\xb4\xa6\xcc\x4f\x4f\xf9\x16\x7d\x3f\xfd\x04\xea\xa7\x5a\x40\xcd\x2f\xaf\x5d\xad\xa3\xab\x2b\x84\x7a\xbe\xbc\x76\xf5\x80\x4e\xc5\x87\xab\xf8\x42\xd5\x72\xa7\x96\x43\xcc\xf5\xe5\xb5\xab\x4c\x3b\x45\x19\x2c\x5f\x2f\xaf\x5d\xf5\xd6\x13\x50\x4a\x6e\x5e\x59\xdb\xc9\xd1\x90\xfd\xc8\xba\xb2\xaf\x93\x6b\xa1\x98\x9b\x57\x16\x75\xf2\x21\xd4\xe8\xe6\x75\xfa\x9d\xd3\x0f\x2d\xba\x79\x1d\x6c\xe7\x18\xaf\xf3\x72\xf3\x3a\xa0\xde\x81\x82\x87\xb0\x2b\xaa\x7d\x00\x5d\x6c\x5b\x91\xe8\x13\x28\x9e\x6e\x7e\x09\x5a\x40\x76\xba\xf9\x2d\x68\x0b\xf2\x86\x3c\x14\xaf\x41\xbc\xae\xd4\xce\x97\xd7\xa1\x78\x8d\xa0\xae\x56\xed\xe5\x75\x28\x5e\x83\x78\x5d\xc5\x1b\xc6\x50\xbc\x86\x7a\x5f\x2d\xd7\xcb\xeb\x50\xbc\x06\xf1\xba\x9a\x97\xca\x50\xbc\x06\xf1\x8a\xa7\x97\xe6\x50\xbc\x06\xf1\x8a\x21\xb9\x79\xc5\x6b\x10\xaf\xc8\x69\x0f\xc5\x6b\x10\xaf\x18\x3d\xa1\x87\x82\x33\x08\x4e\xb4\xe8\xe6\x15\x9c\xd1\xc7\xf6\x46\xea\x89\x39\xba\x27\xd6\x53\x58\x08\x68\x4d\x69\x79\x8f\x8d\xa9\x14\xa0\x2c\x28\x3f\x8e\x98\xd9\x50\x9f\x05\xc8\x87\x41\x4c\xd5\xbf\xd8\xd7\x13\x2a\x8f\xa3\x90\x98\xa3\xaf\x0a\x84\x13\xc9\xab\x78\xe8\x38\x06\xc7\x11\xf3\x15\x5e\x5e\x87\x8e\x63\xcc\xe1\x50\x09\xc9\x21\xf7\xf1\x29\xa2\x11\x89\x29\x57\xa7\x9b\x8f\x25\xb3\x50\xe6\x11\xa5\x9d\x27\xf3\xf9\xe7\xb9\xfa\xff\x8d\xda\x31\x57\x63\x05\x5f\x2f\x3e\xe1\x86\x4e\x7e\xac\x7b\x3c\x8e\x58\xcf\x02\x34\x05\x4d\xa0\x0b\x68\x01\xb1\xb0\x7a\xbb\x1d\xca\x8f\xb1\xbd\xf4\xa3\x7f\xdd\xff\xbf\x0b\xea\x40\x17\xd0\x10\xe4\x0b\x9b\xa7\xcc\x54\x16\x49\xc4\xd6\x22\xd0\x25\xe8\x72\xc8\x32\x50\x04\xea\x05\x2d\x73\xa8\x57\x41\xf5\x57\x2d\x9f\x5c\xaf\xf3\xf4\x40\xd9\xe9\xb1\x9b\x27\x81\x92\x88\xc5\xb3\x7b\x9e\x53\x5f\x9c\xc3\xb5\xa2\xa0\x29\x68\xfa\xc9\xc7\x00\xb4\x80\x34\x56\xbd\x36\xa7\xb2\x7b\x06\x9f\xbd\x76\xfa\x58\x9b\x61\x9a\x20\x7b\x1c\x16\xbd\x1b\xcc\xc0\x3c\x96\xb0\xe0\x75\x3e\x03\x29\x33\x83\xa7\x89\x85\x28\xad\x2a\xa8\xb2\x30\x01\x35\x41\x37\x5a\x5a\xd8\x81\xd6\x89\x16\xd0\x92\x13\x2e\x2c\xe0\x7d\x58\x97\xa0\xcb\x27\xd6\x89\xab\x2b\x0a\x72\x27\xa2\x67\xe4\x0c\x4b\x4e\xb8\xb0\x58\x65\xab\x08\x92\x5f\x0d\x48\x7e\xad\x8e\x56\x01\x1a\x82\x3c\x5e\xc1\x64\x7e\x0a\xf2\x78\x45\x9f\x88\x33\xac\x25\x68\xa1\x25\x68\x03\x6d\xbc\xe7\xd0\xc2\x96\xf7\x1b\xef\x0d\xbf\xb6\xbc\x77\x61\xb1\xe1\xd7\x96\xf7\x9b\x10\x1a\x81\xde\xf2\x7e\xe3\x7d\xc3\xd5\x2d\xef\x9d\x6c\x58\x30\x2d\xbc\x05\x79\x08\xed\xd4\x42\x85\xd0\x85\x31\x6d\x66\xd8\xda\x90\xcf\x24\xb3\x53\x0b\xe5\x3d\xa7\x0d\x8b\x9a\x6a\x5c\x12\x16\x48\x80\x4b\x89\x79\x79\x32\x9a\x05\x41\x26\x28\xa3\x15\x80\x8a\x20\x9c\x08\x17\x50\x17\xd4\x81\x64\x7e\x08\x22\xaa\xde\xcb\xe6\x45\xa5\x49\x98\x5d\x32\x8f\x5f\x57\x97\x13\x9e\x26\x57\x97\x13\x2e\xcc\x2e\x16\xf6\x28\x88\xf4\x4d\x98\xef\xcf\x85\x0b\x76\x87\x5f\x9d\xe3\xb8\x06\xb6\x0a\xe6\x87\x6c\x8d\x88\x56\x04\xd2\x86\x5c\x58\x0a\x05\x28\x09\xe2\x38\x8a\xb4\xb2\x20\x91\xc7\x0a\xa4\x3d\xba\xb0\x24\xbf\x86\xf6\x38\xd8\x63\x11\xa4\x3d\x0e\xfc\xba\xd8\xd0\x90\x5f\xd4\x50\xba\xb0\xa5\x1a\xba\x28\x98\x14\xd1\x52\xc1\x20\x2c\x14\x41\x4d\x10\x4e\x90\x72\x97\x0a\xe6\x52\x21\x53\x30\x97\x0a\xf9\x9a\x1b\x2d\x16\x2e\x9a\x02\xc2\x42\x21\x5e\x2a\x2b\x84\x25\x63\xdb\x2a\x2b\x84\x25\x25\x80\xca\x0a\x61\xf0\x81\x79\x2d\xc5\x6b\xe1\x7d\x66\x8f\x4b\xde\x7b\x29\x59\xca\x38\xb1\xe4\xea\xc2\xd5\x82\xab\x4b\xae\x52\x69\x49\xae\xaa\xd2\x2e\xaf\x1b\x0b\x15\xad\x2d\x57\xbd\x22\x2c\x9f\x98\xdf\xfa\x22\xd5\x91\x95\xab\xaa\x0e\x84\x85\xca\x1e\x55\x1d\x17\xac\x3c\x2b\x01\xb6\x9c\x20\xc9\x03\x1d\x40\xa3\x78\x46\x41\xcd\x73\x55\xa3\x78\x1a\xad\xe3\x42\xcb\xd4\x3a\x4c\xad\x83\xd3\x36\xb5\x0e\xa3\xac\x22\x89\x69\x2a\x2b\xc4\xb3\x7f\xd9\x9e\x82\xd6\x2f\xfd\x4b\x63\x7d\xa6\x5b\x1d\xb3\x02\x25\x41\xe9\x97\xfe\x95\xe0\xc9\x53\x97\x13\xf5\xaf\xa4\x1a\x42\x3c\x9b\x55\x52\x0d\x25\x0a\x46\xcd\x2a\xa9\x60\x10\xcf\x0d\xa5\x9b\xfc\x4a\x72\xa2\xfa\x42\x11\x89\x99\x7d\x9c\x98\x65\x20\x8d\x13\x84\x05\xa7\xef\x33\x6b\x9c\x64\xd2\xd7\xb0\x95\x95\xbe\x08\x0b\x45\x10\x5f\x84\x94\x58\xa2\xdc\x45\x4a\x66\x51\x75\xe4\xf0\x9b\xa3\x78\x16\x15\x0f\x22\xa5\x84\x11\x15\x4f\x59\x3a\x79\xaf\xba\xa2\x5c\x43\x64\x95\x7e\x51\xae\xc1\x7f\x2c\x5f\xee\xb6\xf8\xcf\xac\x82\x9c\x7a\x4c\xf1\xc5\x09\x5f\xb4\x42\x76\x8b\x12\x4d\x28\x91\x55\x8a\x47\x94\x68\x76\x4a\xbf\x51\x75\x5d\xa5\x8f\x48\x6a\x6f\x5d\xa5\xdf\xf1\xab\x91\xca\x5d\x7e\x21\xac\xf9\x95\x77\x76\xf9\x05\xd9\x49\xa7\xdf\xba\xa7\xc8\xce\x1c\x7e\xf2\xe9\xc4\xd5\xa1\x93\x47\x14\xb5\x91\xa1\x93\x1f\x5a\xc8\x28\x16\x25\x9a\x93\x85\xf0\xd8\x39\xb5\x10\x91\x4e\x2a\x78\x6a\xe1\x9c\xd2\xf2\xe0\x4c\xb5\x11\x44\x0a\x54\xca\xd4\x28\x9e\x5e\x4f\x29\xe0\xfd\x54\x3d\x21\x4a\x76\xce\x33\xe7\xd6\x42\x9c\xb8\xf0\x5e\xcc\x68\x2e\x4f\xf8\x74\x51\x4f\x4b\x09\x8f\x48\xc9\xd9\xee\x5c\x4a\x78\x44\x8a\xce\x79\xe6\xd2\x68\x41\xa4\x48\x62\x89\x2c\xcd\xed\x2d\x3c\x45\x8e\x76\xab\x85\x23\x8a\xb8\xc5\xee\xf8\xb5\xbd\x4b\xa5\xe8\xe4\x70\x6e\x75\x29\x44\x8a\x7e\xad\x98\x5b\x5d\x6a\x7b\x3d\xa6\x48\xb3\xd9\x9a\xe1\x88\x64\x74\x83\xad\xfe\xb3\xe5\x84\xe7\xed\x12\xf1\x5a\xe7\xc6\xbc\x4f\xe7\x75\xee\x27\x14\x1e\x47\xe6\xd0\xd6\xc9\x74\x5e\xd0\xa0\x64\xde\xc2\x97\x68\xd0\x0a\x5e\x7c\xc9\xbc\xea\x56\x60\x72\x49\x24\x18\xea\x0a\x14\xe2\x82\x35\x24\xf3\x81\xbd\xc4\x1a\x24\x52\x0c\x2c\x5c\xd2\xc2\x7c\xf2\x0d\x2d\xcd\xdd\x75\x09\xf2\xa3\x5d\xea\x52\x2b\xfa\x09\x25\xee\xf2\x2b\x72\x42\x12\xe5\x3c\xd1\xa2\x09\x2e\x7a\x59\xe2\x4e\xbc\xd4\xcb\x24\x4a\xf4\x91\xb7\x8c\x19\xbe\xcc\xaf\xdd\xa9\x78\xbc\x96\xdd\x4d\x50\xc3\x7c\x05\xba\x81\x64\x8b\x2f\xaa\x71\x2d\x9a\x4d\xaa\xa9\x02\x2d\x41\x8b\xa7\x02\x03\xda\x40\x7e\xaf\x4c\xd5\xf3\x6b\xa5\xae\x85\xcf\x81\x9d\x80\xa2\xa0\x8a\x16\xe6\x69\x36\x12\x66\x5e\x1d\x2b\xf5\x5b\xd0\x8d\x56\x03\xea\x82\x68\x49\x97\x20\xa2\x9a\x7c\x86\xa7\xea\x33\x69\x25\x66\xb8\x84\x59\xc4\x09\x0a\x79\xa5\x81\xf7\x1c\x5a\x1a\xf2\x9e\x51\x6c\x11\xbf\x86\xbc\x1f\xbc\x7d\x38\x17\x5b\x09\x02\x2d\x61\x5c\x9d\x56\x9a\xda\x90\x8b\x54\x1b\xb6\xe6\x25\x88\x3d\x46\x41\xda\x23\xc5\xc7\xa3\xc5\x4a\x14\x9f\x84\x59\xc4\x7b\xae\x4e\x8b\x17\xa3\xd4\x48\xb9\xb4\xb5\x6d\x46\x8b\x39\x47\x5c\xbc\x24\x3d\x85\x08\xce\x4a\x5b\xdb\xa6\xd2\x9a\xfc\xda\xda\x90\x48\x9c\xdf\x9d\x97\x1a\xbd\x84\x99\x37\xbe\x95\x95\x00\xd9\x49\x5c\x6a\x51\x90\x09\x22\x5e\xce\x11\x57\xa6\xc1\xac\xec\x4d\x25\xb5\x28\xa8\x08\x62\x68\x38\x1f\x58\x99\xc7\x9b\x95\x29\x85\xe6\x4d\x74\x65\x95\x42\x16\x89\xf3\xee\xbb\xb2\xd2\x04\x91\xb8\xa9\xac\xac\x34\xc9\xf0\x3a\xf3\xf1\xb9\x72\x97\x5f\x34\x85\x26\x57\x95\x26\x08\x33\x52\x2e\x77\xb9\xda\xf1\xcb\x04\xc9\x2f\x26\x97\x11\x1c\x4d\xae\x95\x3d\x5b\x52\x4b\xf8\xd5\x87\x20\x32\x27\xe3\x97\x32\x27\x93\x39\x2d\x11\x2f\x65\x0e\xc2\x02\x85\x9c\x95\x39\x88\xd4\x32\xb6\x18\x01\x2b\x0f\x8d\x4f\xbc\x1f\x8a\xc4\xe0\x1c\x29\xe4\x3c\x6e\x41\xdc\x67\x9e\x0b\x49\xdf\x4c\xe6\xb4\xcc\x17\x95\x39\x59\x99\x93\xd9\x90\x32\x27\x93\x39\x4c\x98\x95\x95\x39\x59\x99\x93\xd9\xa3\x32\x27\x3b\x21\x4c\xad\xc8\x96\xb6\x3d\xa9\x21\xca\x3d\x4f\x39\x31\x89\x44\xc9\xbf\x39\x8a\x57\x9e\x0a\x14\xd7\xc3\xa0\x9d\x4c\x05\x6a\x72\x80\x45\x3e\xea\x00\x61\x95\x26\x1f\x61\x95\x12\xa9\x51\x88\x79\x29\xfd\x60\x95\x46\xdb\xcd\x4b\xfb\x5d\x04\xbd\x6a\xa1\x82\xce\xf8\x54\x8f\xd5\xeb\xa5\x84\x19\x0d\x22\x2f\x85\x00\x12\xc6\x63\xf0\xca\x4b\x21\xa0\xf7\xb7\x2a\x2d\x9d\x03\xdc\xd3\x0a\xb9\xb6\x14\x95\xc5\xd1\x54\x99\x57\x54\xe0\x9e\xa6\x0d\x2d\x6d\xdb\x45\x7e\x56\x8a\xfa\x75\x5e\x6c\xbb\xea\x8b\xda\x36\x0c\xd5\xe4\xfd\xd6\xb6\xb7\xb6\xcd\x42\xcd\x11\x84\x59\x65\xdb\x9a\x23\x88\xe7\x84\xc8\x5b\xc7\x4c\x57\x6f\x15\x27\xd4\xd5\x11\x66\xda\x90\xba\x7a\x16\xb5\x55\xde\x6e\x6d\x7b\x73\x6d\xa5\x85\xe7\xad\x6d\x6f\x92\xa1\xc9\xbc\xb6\xcd\xf5\xd0\xe4\xbd\x3a\x0b\x54\x2d\x35\xbf\xb6\x2e\x51\x35\x09\xd3\x30\x2b\x6a\x10\x05\x6e\xd1\x68\x82\x05\x6e\x21\x61\x86\xab\x45\xdd\xa0\x78\x07\xc8\xa7\x93\xd6\x55\x34\x47\x10\x66\x4e\x34\x57\xd1\x1c\x29\xba\x0b\x3e\xbf\xd8\x05\x75\x16\x5e\x40\x43\xd0\xf8\x99\x7b\xae\xa2\x36\x52\xd4\x46\x5a\x04\x5a\x82\x36\x0b\x81\x78\xb1\x97\x30\x63\x86\x17\x4d\x9b\xe2\x17\xbf\x7c\x9e\x09\x68\x0b\xe2\xd0\x1a\xd0\xd0\x42\x17\xf9\x0c\xb8\x3a\xb4\xd0\x45\x29\xc4\xbe\x0c\x45\xc2\x4b\x3f\xf3\x06\xbb\x8a\x4a\x1f\x61\x46\xef\x2f\x43\x91\x50\x37\x68\xb2\x55\x05\xdd\x2c\xc4\x2f\x95\x7e\xd1\xf5\x90\x46\x2f\x86\x2b\x91\x21\x84\xab\x0c\x6d\x1b\x7e\x9d\x14\x1c\x8d\x29\x44\x3e\x2f\x62\xaf\x31\x55\x98\x49\x49\x91\xd0\x4c\x2a\xde\x46\xf2\xc9\x60\x2c\x6a\x23\x08\xe3\x67\x90\x55\x78\xae\x59\x65\x62\x8b\xc1\x58\xe6\xd3\x16\xd7\xc3\x13\xf3\x2a\x64\x98\x77\xe6\x45\x7c\x89\x79\x4b\x58\x82\x6e\x88\x79\x4b\xe4\x93\xae\x5e\x54\xa2\x08\x4b\x81\x78\xa9\x44\x8b\xa7\x6f\x3e\x29\xab\xb2\x9f\x90\x57\x6d\x51\x08\x95\xbe\xb0\xf8\x7c\x92\xe4\x62\xf1\xab\x2e\x16\xd2\xcb\xaa\x6c\x55\xdd\x2b\xe9\xea\x55\xb5\x5d\xbd\x1e\x33\x6f\x33\xab\xaa\x1e\x11\x96\x18\x40\x55\xf5\x58\xf5\xea\x52\xa5\x75\x09\xca\x2c\x2c\x40\x32\x4f\x59\x25\x66\x52\x95\x5f\x88\x1c\xfc\x5a\xb2\xaa\xca\x0a\xa1\xcb\xda\xaa\x2a\x2b\x44\x0e\xcf\x2f\x76\x41\x9c\x76\xca\x40\x43\xd0\x44\xcb\x80\x96\x20\xae\x4e\x30\x36\xdd\x54\x56\xe3\x07\x12\x5e\xcf\x56\x53\xa5\x21\x2c\xd1\x3a\x9a\xe6\x6e\xa3\x86\xd4\xa3\x9b\x6a\x08\xc1\x9d\xcb\xff\x9f\x64\x6a\x43\x5a\xd8\x52\xca\x21\x2c\x11\xe8\xa6\x94\x6b\x8a\x04\xc7\xd1\x14\x09\x44\x51\x67\x6a\x8a\x04\x37\xa8\x7c\xc1\x07\x74\x83\x5a\x37\x35\x74\x91\x00\xf7\x78\x42\x4e\xa0\xc3\x15\x81\x08\xf4\xcd\x9d\x8d\x1f\x24\xd7\xad\xcc\x41\x18\x8f\xca\xeb\x56\xe6\xf0\xb3\x4c\x8e\x81\x85\x5c\x4b\x24\x2c\x54\x41\x5a\x88\xab\x91\x82\xb9\xe5\xea\xad\x43\x83\x23\xde\x72\xf5\xf6\xd8\xe7\x78\x09\x1a\x82\xd8\x36\x6d\xfb\x16\x7f\x42\xe4\x18\x65\x7e\x09\xe2\x38\x68\xdb\xba\x12\xae\x7e\xe3\x57\x34\x20\x13\x44\x29\x54\x41\x49\x10\x7e\x41\xa9\xba\x0e\xad\xeb\xd0\x6a\x06\xaa\x82\x2a\x5a\xed\xb7\x47\x71\x57\x43\x45\x58\xe2\x1c\xba\x1a\x2a\xc2\xc2\xf3\xeb\xe4\x5a\x77\xce\x93\x23\x35\xd0\xc5\x9c\x7b\x27\xfd\x9a\xa0\x21\xc8\x9b\x0d\x0f\x16\xab\x8b\xff\x20\x2c\x35\xf6\xcb\xb3\xd9\xea\x9c\x69\x24\xfd\xba\xce\x14\x61\x89\x4e\xdc\x75\xa6\x08\x4b\x34\xd4\x3e\xa2\xa0\xc4\xc2\x06\x94\x05\x11\x82\x26\x5b\x0a\x01\x19\xc9\xfd\x6d\x75\x65\x64\x57\x46\x36\x2d\x94\x5f\x74\x3c\xae\x74\xab\xab\xe3\xf1\x73\x84\x65\xaa\xae\x8b\x38\x21\xf4\x64\xb0\xba\x3a\x1e\x3f\x47\x64\x7e\x88\x5a\x7d\xea\x8b\x3c\x9b\xf1\x8a\xb0\xba\x58\x12\x57\xf3\x1c\xe1\x16\xba\x9a\x2f\xee\xe1\xd9\xfc\x72\xbb\x74\x0f\x97\xb0\x1c\x0c\xa8\x08\x2a\x40\x19\xa8\x0a\x6a\x2c\x14\x74\x0b\xba\xd1\xaa\x40\x5d\xd0\x42\x4b\xd0\x16\xb4\xe1\x9e\xbe\xa1\xa1\x61\x36\xe0\xc4\xf9\x12\x74\x09\xba\x38\xed\x02\x14\x05\xe9\x0d\xe4\x02\x4a\x82\x78\x10\xe3\x82\x35\xba\xbc\x77\x6a\xac\x97\x92\x35\xba\x5c\x85\x26\xf3\x52\xb2\x86\x68\x32\x22\xdb\x85\xf7\xca\x1c\x84\x65\x8a\x67\xe8\xce\x35\x7c\x7c\x66\xdd\xcc\x86\xc6\x27\x3f\x4e\x5a\x8e\x38\xa1\x9c\x18\x03\xbf\x9e\x90\xfc\xe2\xdd\x34\x53\x3c\x43\x39\x81\xb0\xcc\xad\x65\x68\x7c\x0e\x4f\x8d\xac\x6b\xd8\x18\xf2\x4b\xcc\x99\xbc\x1f\x1a\x9f\x63\xca\x3c\x4e\x4c\x99\x9f\x32\x8f\x96\x68\xf2\x98\xbf\x92\xb8\x21\xee\x3a\x26\xaf\x41\x54\xc7\xd0\xc8\x1b\x3e\xe6\xb2\xd1\x89\x87\x88\x2a\xc2\x32\x23\x6f\x88\xa8\x0e\xa6\xa0\x51\x0a\x43\x53\x10\x61\xd9\xb4\x50\x4e\x30\xa6\x74\x45\x19\x1a\x53\x83\x31\x95\x8d\x0d\x69\x4c\xf1\x9b\x6c\x16\xfb\x1b\x6a\x5c\x43\xef\x93\x72\x75\x3f\xb5\x38\x0e\x78\xf0\xd0\x68\x41\x58\x56\x9a\x68\xb4\xf0\x40\x94\xc5\x83\xf5\x40\xb4\x26\xef\xf2\xbc\x78\xad\xa9\x2e\x35\x9d\xc2\x66\xa3\x2f\x4e\xbd\x35\x20\x52\x64\x7c\x4e\xd1\x59\xde\x79\xb2\x66\xa5\xde\x79\xd6\xf2\x7b\x43\x4e\xdc\x34\x16\x8f\xca\x12\x59\x2c\x6b\xe9\x92\xc0\xa3\x4e\x56\x32\xe9\x51\x67\x6d\x41\x5e\xdb\x5b\x4f\x2c\xfb\xd4\x2f\xf9\x1e\xc2\xad\xc7\x93\xcd\x83\x47\xae\xbe\xa1\xad\x07\x8f\x7d\xd1\x99\x9a\x47\x75\xf3\x92\xff\x14\xa9\x38\x4f\xd9\x7a\xd0\xdf\xbc\xe1\xe6\xe6\x57\x89\x7d\x11\x1c\x89\x54\x0a\x5a\x04\x67\xf3\x78\x52\x4e\xcf\xc2\xad\xc7\x93\x1d\xbd\xba\xca\xe9\x29\xb7\x63\x7f\x42\xf0\x01\x67\xa5\x3b\x52\x69\x3b\x6a\xa1\x77\x93\xad\xc7\x93\x6d\xde\x01\x4a\xf0\x52\xd8\x46\x07\x90\xc8\xe6\xdd\x77\xf3\x90\xf2\xba\xcd\x03\x5d\x82\xa7\xef\x36\x02\x2d\x91\xb3\xb4\x08\xf4\xe6\x3d\xa5\x5c\xce\x4a\xb7\xde\x53\x76\x12\x74\xb9\x13\xba\xad\x6f\x2e\x06\x25\x06\xd7\xe2\x76\xf0\x14\x76\xf9\x39\x6e\x5d\x12\x24\x4a\x6c\x15\x28\x0b\xc2\xd5\x28\xad\x22\x68\xa1\xe5\x90\xb8\xfe\x2e\xde\x14\x8a\x9d\xc5\x21\x9a\x82\x84\x5d\x26\xa8\x01\x0d\xb4\xa2\x9f\x90\xe8\xac\x84\x5d\xde\x90\x77\x19\xd2\xf2\xee\x5b\xcc\x93\x7c\x8b\x6f\x4a\x18\x73\x68\x8b\x6f\x6e\x78\x5d\xe1\x9a\xbf\xc5\xeb\x76\xf5\xfc\x2a\x86\xf7\x95\xfc\x92\x28\x89\xa3\xad\xe4\xd7\x86\xd7\x15\xf8\xd3\x16\xaf\x93\x48\x67\x65\xe1\x96\xad\xe7\x3f\x02\x71\x2d\xf1\xa7\xfd\xfc\x77\x21\x3e\xf9\xb6\x78\x8a\x44\x29\xce\x5d\xf7\xcd\x15\x47\x22\xa6\x54\xff\x76\x14\xb7\xbf\x1f\xc4\xfb\xe6\xe7\xd7\x0d\x63\x29\x3a\x51\x31\x16\x89\x48\x2f\xd8\x37\x85\xbf\xe1\x0f\xa5\x78\x81\x6d\xf1\x87\xdd\x05\x79\xb1\x6e\xcd\x9a\xcd\xe4\x28\xd5\x0b\x6c\x33\x3e\x9e\x22\xd6\x20\x2d\x72\x9b\x2a\x2f\xd5\x39\xd2\x56\x95\x6f\x8a\xb5\xf0\xc4\x00\x5f\xd9\xfb\x71\xb4\xbf\x25\x13\xfe\xff\x3f\xdc\x1f\x5f\x7e\xf9\xc7\x75\xe3\xc7\x4f\x9f\xd6\xdb\x17\xfe\x29\x1f\xff\x80\xee\x98\x6b\xbf\x7f\x5b\xbf\xfc\xb3\xc0\x8f\x1f\x3e\xfa\x2a\xfe\xfb\xdf\x00\x00\x00\xff\xff\x07\xd3\x93\xda\x42\x28\x00\x00"); +var _deag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xdd\x51\xcf\xfd\x3a\x96\xe7\xf5\xfb\xf3\x2a\xfe\x97\xc3\xc5\x50\xdb\x4e\xe2\xc4\x52\xe9\x48\xa8\xbb\x47\x34\xa3\x61\x10\xcd\x00\x12\xe2\xc2\xf6\xde\xbb\x29\x89\x3e\xa7\x54\x55\x7d\xd1\xef\x1e\xe5\xf7\x49\x01\x42\x48\xa7\xae\x7e\x7a\xfc\x64\x27\xb6\x63\x2f\x2f\xc7\xfe\x7a\xfd\xee\xef\xfe\xf1\xef\xff\xf1\x97\x3f\xfc\xe5\xc7\xef\xfe\x87\x3f\xfd\xba\xfe\xe9\xf3\x97\x1f\xdf\x3f\xfc\xf2\xfe\xd3\xe7\xcf\xbf\xfe\xeb\x9f\xd6\xe7\xc7\xfc\xfc\xf3\x1f\x7e\xf9\xe9\xa7\x52\x7f\xbc\xff\xb0\xfe\xf2\xd7\x3f\x23\xeb\x5f\xc6\x1f\x7f\xfa\xe9\xfe\xfd\x3f\xfd\xdb\x9f\xff\xf2\xf9\x97\x7f\xfc\xe5\xfb\xeb\x8f\xcd\x75\xef\x7f\xfd\xe3\x73\xed\x8f\x1f\xbf\xfb\x1f\x3f\xff\xfc\x87\x3f\xff\xe5\x4f\xff\xf6\xe3\xdf\xfd\x37\xef\x5f\xe7\xe7\xbf\xfa\xf1\xfe\x7c\xef\xf4\xff\xfc\xa7\xf7\xe7\x4f\x7f\xf8\xe5\x9f\x7f\xfc\xbb\xff\xf8\xeb\x9f\x3e\xa3\xfc\xdf\xff\xf8\xa7\x7f\xfd\xe3\x1f\xff\xcf\xcf\xbf\x7c\x7e\xf9\xcb\x8f\x92\xb4\xcf\x2f\xef\xe8\x4f\xbf\xfb\xbb\xff\x34\xfe\xf8\xdf\x8f\x7f\xf9\xfc\xf8\xdd\x7f\xfc\xa7\xbf\xfb\xf7\xff\xdd\xaf\xff\xc7\x98\xff\xfe\xbf\xcd\xff\xf2\xaf\xff\xf9\xf3\xa7\x3f\xff\xe1\xd7\x5f\x7e\x94\xd7\x7f\xfd\x7a\xb5\xff\x27\xfd\x7f\xfa\xb7\x3f\x7e\x9e\x7b\xfd\xf4\xbb\xff\xf2\x8f\x7f\xff\x9f\xbf\xdf\x3f\x7f\xfe\xf2\xe3\x68\x2f\xd7\xfc\xaf\xff\xe5\x1f\xff\xfe\xc7\xff\x56\x7e\x94\xd7\x8f\x7a\xec\xa5\xfc\xef\xcf\xa5\xff\xcb\x7f\xfa\xf5\xfd\xf9\xe1\xa2\x9f\x76\x45\x5a\xbf\xbe\x3f\x7f\xfe\xe3\x58\x9f\x3f\x8d\x5f\xfe\xf9\xf3\xd3\x8f\x1f\xbf\x7f\xbd\x7e\xfe\xf1\xe3\xc7\xef\xaf\xd7\xcf\xf7\x5f\xd7\xbe\x97\x9f\x7f\xfc\xfe\xef\xb7\xff\xf0\x0f\xf9\xfb\xef\xaf\x2d\x7f\xff\xc3\xf3\xf7\x3f\xbc\xf2\xf7\x7f\xe8\xf7\xdf\x9f\x5f\xde\xff\x9f\xfb\xfd\x54\x3c\xe6\x97\x5f\xff\xf2\xfe\x7c\xa5\xe5\x09\xbf\x2f\xdf\x9f\x7f\x94\xfb\x17\xff\xef\x7f\xfd\x54\x5e\xaf\x27\x5f\x7f\x78\x3f\x57\xd7\xfb\xea\xf3\x73\x5f\x7d\xe7\xa6\xfe\x9c\x4c\x5d\x3f\xff\xd8\x8e\x2b\x29\x3d\x29\x47\xf9\xf9\xc7\xd6\xda\x9d\x72\x6c\x52\xb6\x9f\x7f\x6c\xe7\x91\x94\x5d\xca\xfd\xab\xf3\x4c\xca\xf3\xab\xf7\xcf\x3f\xb6\x6b\xbb\x53\x5a\x49\xca\x2d\xdb\x95\x3b\x5f\x52\xae\xa4\xf4\x3b\x65\x48\xb9\x65\xeb\xaf\x3b\x65\x49\x59\x49\x49\x0e\x3f\x52\x3e\x49\xa9\x3f\xfd\xfe\x3a\x52\x83\x64\xeb\xf7\xb3\x0e\xcf\x8a\x6c\x7d\xbf\x53\x3c\x2b\xb2\xf5\x3b\xcf\x87\x67\x1d\x9e\x75\x97\xeb\xf0\xac\xc3\xb3\xee\x52\x1c\x9e\x75\x78\xd6\x9d\xe7\xe6\x59\xcd\xb3\xee\x3c\x37\xcf\x8a\xec\xaf\x3b\xcf\xcd\xb3\x22\xfb\xeb\xce\x73\xf3\xac\xc8\xfe\xba\xf3\xdc\x3c\x2b\xb2\xbf\xee\x3c\x37\xcf\x8a\xec\xaf\x3b\xcf\xa7\x67\x45\xf6\xd7\x9d\xe7\xd3\xb3\x4e\xcf\xba\xf3\x7c\x7a\xd6\xe9\x59\x77\x9e\x4f\xcf\x3a\x3d\xeb\xce\xf3\xe5\x3e\x11\xef\xf4\x72\x9f\xab\xd5\x9f\x7f\x94\xd7\xd5\x92\xb4\x49\xda\x7f\xfe\xd1\xb7\x6d\x4b\xd2\x21\xe9\xc8\x55\x7e\xd8\x24\x9d\xb9\xea\x48\xd2\x25\x69\xe6\xaa\x9e\xa4\x95\xa4\xf3\x95\xab\xee\x5c\x5d\xa7\x27\xde\x52\x5e\x79\x49\xd7\xe9\x89\x67\x4f\xd2\x9e\xa4\x21\x69\xdc\x3f\xdc\x6b\x92\xa6\xa4\xf7\xcf\x3f\x4a\x49\x6d\x5e\xca\x7c\x5d\x35\x49\xf9\xe1\xe5\x5e\x57\x72\xbf\xe7\xf6\x97\xdc\xdf\x52\x4a\x2a\xeb\xba\xe4\xfe\xba\x72\x55\x72\x7f\x75\x49\x3d\x57\x25\xab\x97\x4c\xf4\xe4\x7e\x4f\xb1\xbb\x27\xde\x52\x8a\x4a\xed\x9e\x78\x4b\x29\xaf\x14\xbb\xef\x92\x92\x89\x23\xb7\xef\x32\xd1\xcf\xfb\xaa\xf2\x4a\x92\xfa\xea\xef\x5c\x95\x7c\x79\x65\xd7\x48\x81\x4a\x72\x3f\xdc\x7e\xe4\x5e\x2d\x35\x31\xdc\x6b\xa4\x40\x25\xb7\x1f\x0a\x34\x52\xa0\x96\x9a\x18\x0a\x34\x52\xa0\xe2\xf6\x0a\x34\x4b\xae\x4a\x19\xa7\xdb\xcf\xdc\x3e\x7d\xf8\x9a\x6e\x3f\xdd\xde\x55\x6e\x7f\x4b\xd7\xaf\xaf\x79\x4a\x52\xa0\xd4\xc4\x54\xa0\x99\x02\x9d\x49\xd2\xba\x23\xa5\x94\x54\xce\xaa\x92\xf2\xc4\x2b\x59\x5d\x9e\xb8\xf2\xc4\x9a\xca\x59\x9e\xb8\x52\xa0\x2b\x4f\x5c\x0a\xb4\x52\xa0\x9a\x06\xb0\x14\xe8\x9d\x02\xc5\x4e\x5c\x6f\x05\x7a\x27\x13\xe9\xaa\x97\x0e\x75\x7d\x52\xab\x35\x55\xf8\x71\xd5\xe7\xce\xc4\xee\xa5\x7d\x64\xe2\x23\x13\xc9\xd7\x47\x26\x3e\x77\x23\xdf\x4b\x9e\xf8\x51\xc6\x8f\x4c\xa4\xbe\x3e\x32\x71\x4b\xdf\xbd\xb4\x8f\xb6\x7a\x4b\x29\x35\xb9\xff\xe8\x0a\xdf\x57\xae\xca\xed\xbf\xf2\xf5\x4d\xe5\xd4\x64\xf5\x2b\x5f\xdf\x34\xa6\x9a\x7c\x7d\x35\xa6\x6f\xb2\xaa\x0a\xbf\xb2\xfa\xbd\xee\xab\xb6\x14\xfb\xab\x72\xbe\xc9\x84\x2a\xfc\xca\xc4\x37\x1d\x66\xbb\x9f\xd8\x19\x80\x48\x29\xe9\x8f\x9d\x9d\xef\x7b\x6e\x9f\xca\xe9\xfb\x21\x29\x35\xb1\x5d\x49\x6a\x92\xae\x5c\x75\x24\xa9\x4b\x4a\x4d\x6c\x3d\x49\xa9\x89\x7e\xa4\x8c\x29\x50\x3f\x3c\xf1\xc8\x13\xf7\x57\x92\x36\x49\x29\xe3\x5e\x92\xb4\x4b\x4a\x26\x62\x4d\xfa\x21\x13\x47\xda\x57\x2c\x40\x3f\x2e\x49\xef\x5c\x75\xb7\xe8\xce\x7e\xf5\xe6\x5e\xf9\x61\x73\xaf\xd8\xaf\xdd\x0f\xd9\xaf\x48\x29\xe9\xc8\x9d\xfd\xea\xb1\x5f\x7b\xec\x44\x67\xbf\x7a\x4b\x81\xf6\x14\xa8\x29\x50\xec\xd7\xee\xf6\xec\x57\xa4\x94\x23\xb9\x67\xbf\x22\xa5\x1c\x35\xa3\xf3\x5f\x47\xd5\xff\xbf\x81\xf6\xea\xa7\x3c\x9e\xc9\xe3\x91\x3c\x9e\xf2\x78\xa6\xbc\x47\x32\x74\xca\x50\x8c\xe0\xfe\x24\x4d\x49\x69\x58\xb1\x19\xfd\x5c\x92\x52\x2b\x92\xd8\xc5\x48\x29\x47\x5e\xf3\xe5\x35\x5f\x9e\x98\x2a\x60\x17\x3b\xbb\xf8\x24\xa9\x95\xd8\xc5\xbd\xa5\x70\xec\x62\x67\x17\x8f\xd4\x0a\xbb\xd8\x6f\x23\xd8\xf7\x18\x9b\xce\x08\x76\x46\xb0\xe5\x35\x33\x82\x91\xbe\x9f\x29\x23\x23\x18\x29\xc5\xed\xbb\x27\xc6\x08\xee\x67\xca\xc8\x08\x76\x46\x30\x16\xaf\x33\x82\x3d\x46\x70\xbf\xf2\x43\x46\xb0\x33\x82\x32\xc1\x08\xf6\x91\x77\x7a\xb9\x97\x2a\x64\x04\x5b\x5e\x20\x23\x18\xe9\xfb\x25\x49\xad\x8e\xd4\x6a\xec\x62\x1f\x6a\xf5\x96\xbe\x67\x60\xec\xe3\x2d\x29\xfd\xa9\xa5\xbe\xc6\x47\xd2\x37\x57\xe5\x87\xf3\x95\xa4\x99\xba\x6f\xa9\x2f\x36\x36\x52\xca\x99\xdc\x4f\x95\x33\x15\xc8\x55\x0a\xc4\xec\xaa\x2f\x66\x37\xd2\xf7\x98\xb7\xce\xec\xf6\x99\xae\xaf\xbe\xa6\x37\x14\xb3\xbb\xc7\x35\xea\xcc\x6e\x5f\xa9\xc2\x58\xf5\xbe\x64\x22\x66\x77\x8f\x9b\xd3\x99\xdd\xce\xec\xc6\xaa\x77\x66\xb7\xc7\xec\xee\xb1\x9e\x9d\xd9\xed\xcc\xee\x29\x49\x15\xde\xd2\x8f\x97\x27\xaa\xc2\x95\x2a\x3c\x53\xa0\xa5\x0a\xdf\xaf\x5c\x95\x02\xbd\xe5\xeb\x9d\xca\xb9\x52\x20\xf6\x3a\x52\x8a\x57\xfb\x56\x39\xb7\xf4\x23\x43\x71\x7f\xcb\xea\x3b\x59\xbd\xdc\x4b\x56\x6f\xe9\x47\x86\xe2\xfe\x56\x39\xef\xf4\x21\x0d\xe0\xad\x01\x64\x38\x38\x62\xe8\xbb\xe1\x20\x52\x4a\x06\xa0\xfe\xd1\x3b\x32\x1c\x1c\x19\x51\xbb\xe1\xa0\x1b\x0e\x34\x13\xc3\x41\xbf\x87\x80\x7e\x64\xc8\xeb\x1f\x95\x63\x38\xd0\x4c\x0c\x07\xfd\xb6\xea\xfd\xc8\x30\xd5\x59\xf5\xce\xaa\x6b\x26\xac\x7a\xbf\x2d\x79\x3f\x62\xe8\xfb\xd7\xed\xbf\x72\x9f\xdb\x7f\xe5\xfe\x9b\xdc\x6f\xf7\xbd\x06\x13\x3e\xf6\xbc\xda\xb4\x89\xb1\x6f\x92\x92\xfb\x58\xf5\xc1\x84\x0f\x26\x3c\xce\xf1\x60\xc2\x47\x4c\xf8\x11\x7b\x3d\x98\xf0\xc1\x84\xc7\x17\x1b\x4c\xf8\x88\x09\x3f\x62\x3d\x07\x13\x3e\x98\xf0\xb8\x67\x83\x09\x1f\x4c\x78\xbc\xe8\xc1\x84\x47\xfa\x11\xeb\x39\x98\xf0\x48\x29\x69\x72\xe3\x90\x89\x23\x2f\xed\x48\xee\x8f\x53\x52\x8a\x1d\x6f\x7b\x30\xf4\x23\x86\xfe\x88\x8d\x1d\x0c\x7d\xa4\x94\x34\xcc\xd1\xaa\xa4\x3c\x31\x56\x6e\x30\xf4\x83\xa1\x8f\x57\x3e\x18\xfa\xd1\x52\xec\x58\xa6\xd1\x14\x3b\x86\xbe\xbe\x24\x29\xf6\x99\x97\xd6\x52\x13\xac\x7a\xa4\xd4\x34\xf2\xc1\x6c\x47\xfa\x71\x4a\xf2\xc4\x5b\x4a\x4d\x23\x1f\xa7\x27\xc6\x20\x1f\xe9\xc8\x83\x41\x1e\x71\x54\x6b\xbc\xfc\xc1\x51\x1d\x31\xc8\x47\xba\xc2\x60\x90\x23\xa5\xc6\xcf\x1f\x0c\xf2\xb8\xce\x5c\xe5\x5e\x2a\xe7\x9a\xb9\x2a\xb5\x7a\x2d\x49\xdf\x5c\x95\x37\xd4\x63\x86\x46\x1c\xd5\x1a\x7f\x73\xb0\xd1\x91\x52\x4b\xee\xc5\x46\x47\xfa\x91\x26\x37\xd8\xe8\x48\xa9\xf1\x66\x06\x1b\x1d\xe9\x47\x8c\xd5\xe8\x5e\xda\xed\xc2\x96\x5a\x3c\x51\xad\xc6\x92\x1f\x1a\x26\x4b\x3e\x62\xc9\x6b\x5c\xd0\xc1\x92\x8f\x58\xf2\x43\xcb\x61\xc9\x23\xa5\xa6\x5b\x0d\x96\x7c\xc4\x9d\x3d\xb4\x09\xee\x6c\xa4\xd4\xb8\x41\x83\x25\x1f\x71\x67\x9b\xf7\xc8\xd4\x8e\xdb\x88\xf6\xf6\xba\x7e\x7b\x28\x1e\x6c\xec\x88\x1f\x5b\xab\x9b\xa8\xe1\x18\xd4\x16\xb7\x6f\x30\xa8\x91\x52\xe3\x25\x0d\x7e\xec\x88\xef\xd9\xe2\x26\x0f\xb6\x6c\xc4\x70\xb5\x4c\x9d\x06\xc3\x15\x29\xb5\x4a\xf2\xc4\x98\xa4\x16\x67\x67\x30\x49\x23\x1e\x6a\x8d\xef\x39\x78\xa8\x23\x26\xa9\xc5\x41\x19\x4c\x52\xa4\xd4\x9a\xea\x64\x92\x46\x4c\x52\xdb\xdd\x4b\x45\xc5\x24\xd5\xf8\x9e\x83\x49\x1a\xf1\x3d\x5b\xfc\x9f\xc1\xf7\x8c\x94\x5a\x25\x79\x62\xac\x54\x8d\x49\x1a\xac\x54\xa4\xb7\x4c\x64\x06\xdf\x33\x52\x6a\x7c\xcf\xc1\x70\x8d\x58\xa9\x16\x0f\x64\xb2\x52\x91\x52\x63\xb8\x26\x47\x73\xc6\x4a\xb5\x0c\xd8\x93\x95\x8a\x94\xba\xd5\x24\x35\x49\x29\x50\x86\xe2\xc9\x4a\x45\x4a\x4d\xad\x4e\x56\x6a\x1e\xa9\xfb\xf3\xce\xc4\x64\x92\x66\x6c\x46\xcb\x30\x35\xd9\x8c\x99\xc9\x6d\x8d\x03\x3c\x4d\x6e\x67\x6c\x46\x4b\x53\x9e\x6c\x46\xa4\xd4\x78\x95\x93\xcd\x98\x71\x0e\x5b\x46\xd4\xc9\x39\x9c\xb7\x9d\x28\x35\x36\x76\xb6\x0c\x79\x33\xce\x61\x8b\xf5\x9c\x9c\xc3\x48\xa9\xf1\x76\x27\x33\x32\x99\x91\x78\xbb\x93\x19\x89\xf4\x16\x2b\x35\x99\x91\xc9\x8c\xc4\xec\x4e\x66\x24\xd2\xcf\x97\x7b\x9d\x92\xd2\x56\x77\x4f\x94\xaf\x18\x9b\x33\x56\x6a\x32\x36\x91\x52\xf7\x14\x9b\xf7\x37\xe3\xb1\x9d\x19\x51\x27\x6b\x30\xd3\x5d\xcf\x34\xcc\xa9\xbb\x4e\xdd\x35\x8d\x69\xea\xae\x33\xdd\xf5\x54\x85\xba\xeb\xd4\x5d\xf7\xdc\x4b\x77\x9d\x71\xbc\x4e\x55\xc8\xf1\x9a\xba\x6b\x9a\xdc\xd4\x5d\x23\xfd\xdc\x24\xa9\xc2\x38\x5e\x35\xc3\xc1\xe4\x78\xcd\xdb\x8d\xea\x67\x86\xa9\x39\xe5\x2b\x2e\x55\xcd\x70\x30\xf5\xf3\x48\xa9\x71\xa0\x27\x97\x2a\xd2\x4f\xc5\xe6\x52\x45\x4a\x8d\x03\x3d\x75\xf7\x48\x3f\x95\x91\x4b\x35\xe3\x52\xd5\xc3\x0f\x35\xb9\x39\x73\x55\x0a\x34\x9f\x7c\xad\x5c\x25\xe9\x2d\x29\x55\x98\x21\x6f\x69\xf7\xcb\x17\x96\xa4\x68\x84\xab\xc9\xe9\x99\xa4\x5d\x52\x72\x9a\x52\x2f\x8d\x70\x69\x84\x4d\x52\x93\x74\xe5\xaa\x92\xa4\x2e\x29\x95\xda\x24\x0d\x49\xa9\xd4\x64\x7e\x69\x97\x91\x52\xe3\x3f\x2f\xdf\x61\x56\x9a\xea\x99\x7e\xbc\x34\xd5\xa5\xa9\x66\xc4\x5b\x9a\xea\xd2\x54\xd3\x43\x97\xa6\x1a\xe9\xa7\x7c\x69\xaa\x4b\x23\x6c\xee\x75\x49\x4a\x26\xe4\xcb\x44\x25\x52\x6a\x9c\xe5\x75\x3e\x99\x48\x75\xb9\xbd\xa6\xba\x8c\x8b\x71\x96\x97\x71\x71\x5d\x9e\xd8\x92\xe4\x89\xc6\xc5\x0c\xbb\xcb\xb8\xb8\x32\x51\x39\xdd\xde\x44\x25\x52\x6a\x86\xdd\x65\xa2\xb2\xf2\x01\xe7\xf4\x43\x1f\x70\x96\x71\x31\xfe\xf3\xd2\x13\x96\x71\xf1\x4c\xbe\x8c\x8b\x91\x7e\xc6\x98\x2c\xe3\xe2\xca\x07\x9c\x1a\x97\x7a\xf9\x80\xb3\x74\xa1\xf8\xbc\x4b\x17\x5a\xba\x90\x1f\xea\x42\x2b\x63\xd9\x19\x47\x72\x19\xcb\x96\xce\x91\xb1\x7f\xe9\x1c\x2b\x63\xd9\x19\x93\xb3\xb4\xf1\xa5\x79\xc5\x4c\x2c\xc3\xd0\xca\x98\x73\x65\x54\x5f\xc6\x9c\x95\xd1\xe4\x8a\xb9\x5f\x46\x93\xf5\x49\x81\xe2\x52\xaf\x8f\x02\x65\x34\xb9\xd2\xf7\x96\xd1\x64\x19\x4d\xe2\x34\x2c\xa3\xc9\xca\x68\x72\xa5\xef\x2d\xa3\xc9\x32\x9a\xc8\xbd\xd1\x64\x65\x34\xb9\x62\xab\x96\xd1\x64\x19\x4d\xe2\x06\x2f\xa3\xc9\x32\x9a\x5c\xe7\x6f\x8f\xc4\xcb\x60\x13\xe9\x97\xee\x64\xb0\x59\x71\x89\x6b\xfc\x93\xc5\x25\x5e\x19\x6c\xae\x74\x9e\xb7\x4e\xf7\x8e\x4b\x5c\x53\x77\x6f\x2e\xf1\x3b\x83\xcd\x95\xde\xfa\x36\xd8\xbc\x0d\x36\x31\xd7\x6f\x83\xcd\x3b\xce\xee\x95\x19\xf0\x9b\xb3\x1b\x29\x35\xce\xee\xdb\xc8\xf2\x8e\x67\x7b\xa5\x91\xbe\x79\xb6\x91\x52\xe3\xc5\xbc\x8f\xe7\x5e\xb7\x61\xb9\xd2\xd6\xde\x3c\xdb\x48\xa9\xf1\x7f\xdf\x3c\xdb\x77\x46\xa9\x2b\x8d\xf4\xcd\x40\x44\x4a\x8d\xaf\xf3\xe6\xd9\xbe\x63\x20\xae\xb4\xa2\x37\x03\xf1\x66\x20\xba\x24\x4f\x8c\x81\xb8\xf2\x9a\xdf\x0c\xc4\x9b\x81\x48\x93\x79\x33\x10\xef\x78\xb6\x57\x5e\xf3\x5b\x3f\x7f\xa7\x53\x5f\x99\x1c\xbc\x75\xea\xf7\x3d\xd8\x94\x2d\x83\xcd\xdb\x60\xf3\x4e\xa7\xbe\xd4\x84\x4e\x1d\x29\xdb\xcb\x0f\x97\xa4\x14\x48\xbe\x74\xea\x48\xd9\xe2\xec\xbe\x8d\x3f\xef\x8c\x3f\xdd\xed\xf5\xba\x77\x3a\x4f\x8f\x6f\xf8\xd6\x79\xde\xe9\x3c\x5b\x3e\xe7\xbe\x75\x9e\x77\xc6\x9f\x9e\xd6\xfd\x36\xfe\x44\xca\xf6\xf2\x43\x35\x71\x4b\xef\xf1\x5c\xde\x43\xee\x6f\x29\xdb\xcb\x0f\xd5\x7d\x3a\x62\x8f\xe7\xf2\xd6\x11\x23\x65\xcb\x1c\xf2\xad\x23\xbe\x33\xfe\xf4\x78\x2e\x6f\xe3\x4f\xa4\x6c\x99\x43\xbe\xf5\xcd\x48\xd9\xd2\x11\xdf\xc6\x9f\x48\xef\xe9\x62\x6f\xe3\x4f\xa4\x6c\xc5\xbd\x64\x35\xe3\x4f\xdf\xdc\x4b\x56\x67\x32\x11\xbf\xfc\x3d\x9f\x4c\xa4\x72\xe2\x47\xbc\x75\xfd\x77\xa6\xf4\x5b\xa6\xa8\x6f\x53\xfa\x77\x26\xeb\x3d\x23\xde\xdb\x64\x3d\x52\xb6\x38\xa5\x6f\x93\xf5\x77\x6c\x46\xd7\x61\xd8\x8c\xf7\xed\x94\xf6\xae\xdd\x73\x4a\xdf\x99\x3a\x6f\x45\x92\xfa\x8a\x65\xe9\xb1\xea\x6f\x96\xe5\x1d\x3f\x75\x8b\xb3\xfc\xe6\xa7\xbe\x33\xdd\xed\x71\xd8\xde\xdf\x27\x29\x65\xcc\xa4\xe5\xfd\x55\xc6\x74\xe4\xad\x4a\x72\xfb\x74\xe4\x1e\x9b\xf1\xd1\x91\x23\x65\x8b\x4f\xf2\xe1\x35\x7e\xd2\x91\x7b\xda\xea\x47\x47\x8e\x94\x2d\xce\xf2\x47\x47\xfe\xc4\x6b\xec\xe9\x8f\x1f\x5e\x63\xa4\x6c\x55\x52\x6a\xe2\x93\xee\xde\xd3\x56\x3f\xba\x7b\xa4\x6c\x71\xa9\x3f\xba\x7b\xa4\x6c\x69\x72\x1f\x73\xdb\xcf\xdd\xb7\xcb\xeb\x95\x99\xd9\x47\xe7\x8e\x94\xad\xba\xd9\x25\xe9\xed\xb2\xa4\xe9\xdd\x91\xb2\xa5\x69\x7e\xf4\xee\x8f\x15\x90\x57\x26\x4f\x1f\x5d\xf2\x73\xfa\x69\x1a\xe7\x47\x3f\xfa\x64\x70\xdc\x9e\x24\x97\xdd\x83\x63\x79\xbd\xe2\x4d\x7e\x8c\x8e\x91\xb2\xc5\x89\xfe\x18\x1d\x3f\xf7\xe8\x78\x5f\x96\x8a\x34\x3c\x46\x8a\x65\x9d\x8f\xe1\xf1\x73\x4f\x1b\xef\xcb\x52\x7a\xf3\xc6\x4f\xc6\xc7\x2d\x0e\xdf\x47\x4f\x8d\x94\x6d\x73\x95\x0a\xe9\xf2\x11\xff\xeb\x63\x80\x8c\x14\x6b\x3d\x1f\x13\xc7\xc8\x7d\x59\x1e\x6a\xe6\xf8\xc9\xcc\x71\x4b\x37\xf9\x98\x39\x7e\xba\xc2\xc7\x89\xf9\xb0\x05\x91\xb2\xa5\x07\x7c\x86\x7a\x1b\x4a\x15\xef\xea\xa3\x03\x7f\x74\x60\xf5\xa1\x03\x7f\xa6\xea\x8d\x07\xf1\xd1\x5d\x3f\xe9\x88\xaf\x57\xc6\xf8\x8f\x9e\xf8\xc9\xc4\xcf\x12\xd3\xc7\xc4\xef\x33\x65\x24\x5f\xc4\x3e\xfa\xdd\x47\xbf\x4b\x27\xfb\xe8\x77\x9f\xa5\xf4\xf9\xce\xf4\xf1\x2d\x2d\x52\x36\x55\xe9\x5b\xda\x67\xc9\x6f\xc6\xce\x8f\xfe\xf9\xd1\x3f\x77\x0f\x90\xdf\xf7\xcb\x65\xa9\x11\xdf\xc9\x22\xc5\xca\xd3\x47\x9f\x8d\x94\x2d\xa3\xe3\xc7\x77\xb2\xcf\x5b\xa9\x34\x7b\xfd\x38\x52\xb6\xf4\xf6\x8f\xaf\x62\x9f\xb7\x52\x65\x84\xf9\xe8\xc8\x91\xb2\x1d\xe5\xb7\x47\xe7\x8f\x4f\x64\x9f\x4f\x0a\x6d\xb1\xed\xc3\x85\x88\x94\x4d\x2b\xe0\x42\x7c\x3e\x97\xcb\x3c\x4c\xa1\xe3\x43\x6c\x5a\x01\x1f\xe2\xf3\x4d\xa1\xad\x87\x7d\x38\x11\x91\xb2\x69\x05\x2c\x49\xa4\x58\x48\xfb\xf0\x12\x3e\x59\xd5\x78\x59\x9e\xfa\xb2\x1b\x5f\x76\x23\xa3\xfd\x97\xdd\xf8\xa6\x63\xbf\x2c\xc1\x7c\xf5\xec\xaf\xfe\x59\xd2\x2d\xbe\xfa\xe7\x37\x73\xc4\x2d\xee\xf9\xd7\x1c\xf1\xdb\x94\x34\x19\xf9\x1a\x7e\x23\x85\x63\xff\x35\xfc\x46\xee\xcb\xf2\xd4\x76\x4a\x4b\x9b\x8a\xbb\xfc\x35\x71\x8c\xdc\x97\x79\x42\x97\x96\x0a\x89\x65\xfd\x1a\xa6\x23\xf7\x65\x57\xd2\xa6\xb4\x0c\xb7\x71\xe4\xbf\x1c\xf9\x6f\xfb\xba\x2c\x19\x39\xd3\x65\xbf\xb1\x27\x5b\x3c\xf9\x2f\x73\x12\x29\x5b\x7c\xf4\x2f\x4f\x3e\x52\x5e\xe5\xb9\x4c\xa9\x32\xeb\xb4\xa4\xff\x35\xeb\x8c\xdc\x97\xa5\xf0\x3c\x81\x48\xb1\x6c\xf8\xe5\xf1\x7f\x4f\xd9\x7d\x9e\x20\xbb\xbc\x83\xf8\xe4\x5f\xde\xc1\x97\x59\xf3\xcd\xfc\xcb\xac\x7d\xbb\x37\x93\xc9\xfb\x97\x89\xf9\xb2\x00\xbe\x90\x7e\x59\x80\x2f\x6f\x20\x6e\xd7\x97\x37\xf0\x1d\xca\x10\x0b\xfe\xe5\x0e\x7c\xb9\x03\xf1\xbb\xbe\xdc\x81\x2f\x43\xe1\x03\xdf\x97\xa1\xf8\x32\x14\x71\xbc\xbe\x0c\xc5\x77\xbe\x5c\x96\x1a\x31\xd4\x7f\x0d\xf5\xa7\x24\x0f\x35\xd4\xc7\x74\x7c\x0d\xf5\x91\xf2\xf2\x75\xed\x6b\xac\xff\x1a\xeb\x33\x3f\xf8\xb2\x30\x91\xfb\xb2\xe4\xcd\x60\xff\x65\x75\xce\x54\x39\xab\xf3\x65\x75\xf2\x61\xae\xbf\xd2\xa2\x49\x1a\x48\x7f\x35\x29\x4d\x36\xce\x24\xed\x92\x9e\x6c\x5c\x49\x3b\xa4\x25\x1b\xf7\xd4\xa2\xbf\xd2\x50\xfb\x2b\x8d\xf2\x95\x4f\x67\xfd\x95\x56\xd9\x5f\x9a\xd6\xe5\x01\x2b\x49\xa7\xea\xa8\x49\x3b\x3d\x54\xd3\xba\x2d\x58\x7f\xa5\x69\x91\xb2\xdd\xc3\x76\x7f\x9d\xf2\xa1\x69\xe5\xc3\x54\x7f\x9d\xf2\x91\x35\xfd\xac\xdf\xf6\x57\xd6\xf4\xc9\x7d\x99\xb4\x29\x2d\xf9\xe8\x29\xfa\xf9\xe4\x63\xb9\x2c\xa5\xba\x1b\xd0\x23\x25\x3b\x3b\xfa\xeb\x92\x35\xa3\xe3\xed\x9e\xf6\xd7\x25\x6b\xd7\x93\x8f\x14\xf4\x92\x0f\xa3\x63\x4f\xd6\x2e\xf5\x61\x74\xcc\xc7\xa9\xfe\xca\xe8\x48\x4a\xb6\x7c\xf4\xd7\x25\xbb\x5d\x7d\x6c\x79\x42\xf7\x50\xa3\x63\x4f\xd6\xba\x87\x1a\x1d\x7b\x9e\xd9\xd5\x87\xd1\x31\xdf\x7c\xfa\xab\xcb\x47\xa6\x8f\xd9\x1d\xd2\x5f\xdd\x3b\xd0\xe8\xf3\xd1\xa7\xbf\x86\x07\xa4\xd1\x67\x3b\x48\x7f\x0d\x0f\x18\xcf\xdd\xf2\xd0\xe1\x6e\x69\xf4\xd9\x11\xd2\x5f\x43\xa9\x9e\x46\x7f\xe4\x09\x43\xa9\xd2\xe8\xb3\x4d\xa4\xbf\x86\x52\x3d\x8d\xfe\xc8\x13\xa6\x87\xa6\xd1\x67\xef\x48\x7f\x4d\x0f\x7d\x9a\x6e\xcb\xdd\xd2\x74\x49\xc9\x86\x92\xfe\x9a\x8a\xf0\x34\xdd\x96\x3a\x5a\xee\x96\xb1\xeb\x55\xcf\xfc\xf4\xed\x76\x86\xa0\xaa\x39\x7c\x5c\xf7\x51\xd4\x54\xdc\xc7\x65\x99\xb8\xbe\xaa\xfa\xfd\xa8\xcc\x8c\x31\x59\x83\xef\xaf\x8f\xa2\x1a\x63\xaa\x3a\xff\x28\x6a\xc6\x98\x2c\xc2\xf7\xd7\x47\x51\x3f\x69\x6f\x99\xae\xf4\xd7\x47\x7b\xfb\xac\x5c\x96\xfc\x7e\xb4\x2d\x43\xd1\xa6\xce\xbf\xf2\x96\xa1\x68\x2f\xa9\xb8\xaf\xbc\x65\x28\xda\x4b\x4a\xf0\x95\xb5\xef\xee\x97\xd2\xbc\x99\x38\xba\xbb\x2e\xf9\x55\x49\xdf\xe5\x32\x69\xcf\x43\xef\x0a\xd9\xd3\xd7\x8a\x2e\x5f\x32\x8b\xcd\x42\x7c\x2f\x99\xc5\xf6\xb2\x7b\x40\x4a\x55\xe2\xfd\x92\xb2\xd7\xfd\x37\x47\xee\x5e\xe2\x1c\xf7\xb2\x5f\xee\x72\x24\xad\x4b\x4b\x75\x55\x49\xa9\xae\x72\xa8\x87\x64\xbd\x1c\xf2\x94\x51\x74\x4f\xc7\x2e\x87\x3c\xc5\x3d\xde\xd3\x89\x4b\xdc\x63\x52\x5e\x9b\xbb\x1d\xb2\x19\xf7\x38\x5b\x01\x7a\x89\x7b\xdc\x8b\xe1\x77\x73\x37\x56\xad\x64\xf8\xdd\xd3\x15\x4b\xf3\x00\x56\x2d\x0e\x6d\x2f\xac\x5a\xa4\xec\x5b\xea\x81\x55\x2b\xc6\xd5\x78\xaa\xbd\x34\xa5\xca\xb8\xba\x3f\x49\x4a\xc5\xaa\xc5\x2d\xed\x85\x55\x8b\x94\xec\x36\xe8\x85\x55\x8b\x94\x6c\x2d\xe8\x85\x55\x2b\x19\x1c\x5f\xf1\xfc\x7a\x39\x3d\x34\x23\xe1\xfe\xdc\x4c\xa9\x6c\x5e\x8a\xe7\xd7\xcb\xf9\x3c\x74\xe4\xb2\x9e\xa4\x29\x49\xe1\xd3\x8b\x0b\x13\x16\x29\xfb\xed\xe3\xf6\x92\x89\x72\x2f\x4c\xd8\xed\x98\xdd\x7f\x28\x7c\x4c\xd8\xbe\x4b\x92\x0f\x63\x68\x7c\xa5\x5e\x18\xa2\xc2\x9c\x64\x34\xef\x85\x39\x29\xcc\x49\x2c\x4c\x61\x4e\x0a\x73\x62\x20\x29\xcc\x49\x61\x4e\x94\x94\x39\x29\xcc\xc9\x76\xa6\x0c\xcc\x49\x61\x4e\xf6\xd4\x1b\x73\x12\x29\xaf\xed\xf2\x04\x45\xcd\x47\xdd\x5d\x85\xe4\xa3\x6e\x2f\xac\x4e\xb6\x01\xf6\xc2\xea\x14\x56\x67\x4f\x3e\x58\x9d\x48\xd9\xd5\xd1\xf4\x16\x0c\xb5\xd9\x2e\xd8\xcb\x94\xdd\x29\xbb\xc9\xda\x94\x5d\xf6\x2a\x7b\x08\x7b\x61\xaf\x0a\x7b\x15\x83\x58\xd8\xab\x32\xb3\x45\x2d\x1b\x86\x7a\x99\x4f\xde\xd2\x15\xd5\x38\x13\x16\x29\xd9\x78\xd1\xcb\xf2\x62\xf8\xfc\xc6\x9b\xb2\xe4\x23\x3e\xff\xee\x25\x2c\xf9\xe0\xf3\x1b\x48\xca\x52\x6d\xf1\xf9\xf7\x23\xd5\xb6\x54\x1b\x1b\x69\x38\x28\x6c\x64\xe1\xcd\xb3\xaf\xe5\xed\x76\xf1\xe6\xb3\xb7\xa3\x97\xb7\x52\x31\xa5\x0c\x62\x61\x4a\xcb\xd7\xed\x74\x5d\xf6\xaa\xf0\x93\xb5\xf2\xca\xc4\x44\xca\x7e\xbb\xa2\xbd\xc6\x4f\xee\x95\x89\xf1\xb6\x2a\x13\x53\x99\x98\xdb\x15\xed\x95\x0d\xa9\x6c\x88\x3a\xaf\x6c\x48\x65\x43\x0e\x49\x29\x57\x65\x43\xb2\xb1\xa5\x57\x36\xa4\xb2\x21\x19\x49\x2a\x1b\x52\xd9\x90\xb8\x37\x95\x0d\xa9\x6c\xc8\x73\x37\x36\x24\x52\xf6\xe6\x66\xf2\xc1\x86\x3c\x77\x63\x43\x2a\x1b\x72\x3b\xb6\xbd\xb2\x21\x95\x0d\xd9\x5b\x8a\xc0\x86\x54\x36\xa4\xa5\x3e\xd8\x90\xca\x86\xec\xa7\xbb\x29\x15\x1b\x92\x5e\x54\xd9\x90\x6a\xc2\x9e\x4d\x2a\xbd\x32\x18\x95\xc1\x68\xa9\x4a\x06\xa3\x72\x83\xb2\x4b\xa5\x57\x6e\x50\xa4\x3c\xf9\x60\x43\x2a\x0f\x7b\x4f\x97\xa9\xf1\xb0\x49\xd9\x5b\x0a\xcf\xae\x54\x06\x23\xbb\x59\x7a\x65\x30\x6a\x7c\x9e\x27\xbb\x7c\x9e\x7a\x3d\x0f\xcd\x4f\x19\x8c\xca\x60\x9c\x79\x00\x83\x51\xaf\xf8\x80\xd9\x24\xd2\xeb\xe5\x09\xf1\x79\x9e\x52\xf1\x79\x2a\x9f\x67\x8f\xa3\x55\xf9\x3c\x91\xb2\x9f\xa9\x37\xa6\x26\x52\xf6\x33\x75\xc4\xe7\xa9\x7c\x9e\x23\x2d\xba\xf2\x79\x22\x65\x8f\xa5\xa9\x5d\x3e\x7c\x11\xc8\xd6\x91\x5e\xbb\xc2\x73\x8d\xce\xd4\x11\xd7\xa8\xb2\x65\xd9\x3b\xd2\x2b\x5b\x16\x29\x7b\x0c\x52\x1d\x1a\xaf\xa9\x7e\xf6\x80\xf4\xca\x86\x54\x53\xfd\xa3\xee\x49\xf3\xd4\x58\x87\x3d\x4e\x71\x65\x1c\x2a\xcf\xe5\xc8\x38\x56\x75\xfb\xaa\xdb\x7b\x7f\xba\x7d\xd5\x51\x8f\x0c\x29\x55\x47\xad\x7a\x60\x36\x31\xf4\xaa\x07\x46\xca\xf3\x4e\x3f\x7e\x6a\xc2\x7c\x68\xe5\x1f\x35\xc2\x99\xb9\xb6\xdf\x1e\xbc\x2b\x5f\xa7\xf2\x75\x8e\x78\x58\x95\xaf\x53\xf9\x3a\x97\x24\x2f\x8e\x13\x73\x68\x8f\x9c\x98\xca\x89\x89\xf3\x5e\x19\x85\xca\x89\x89\xf3\x5e\x39\x31\x95\x9d\x38\xee\xf9\x4d\xdf\xd8\x89\x8d\x2b\x12\x6f\x6d\xe3\x8a\x6c\x0c\x40\xf6\x18\xf4\x8d\x01\xd8\x18\x80\x34\xbd\x8d\x01\xd8\x18\x80\xec\x02\xe8\x1b\x03\xb0\x31\x00\x4f\x92\xbb\x31\x00\x69\x8d\x1b\x03\xb0\xf9\xc6\x96\x35\xff\xbe\xe5\x1b\x1b\x29\x7b\x66\x07\x1b\x27\x62\x63\x00\xb2\xe8\xdf\x37\x06\x60\x63\x00\xd2\x68\x37\x06\x60\x63\x00\x5a\x5c\xdf\x8d\x01\xd8\x18\x80\x7e\x24\xa9\x49\xba\x5c\x76\x25\x4d\xa9\x32\x35\xca\x46\xa9\xbe\x99\x1a\x6d\x9c\x88\xec\x08\xe8\x1b\x27\x62\xe3\x44\xc4\x07\xdd\xd8\x84\x48\xd1\x05\x36\x36\x61\x63\x13\x5a\x3c\xc9\x8d\x4d\x88\x14\x5d\x60\x63\x13\x36\x36\x21\x9b\x09\xfa\xc6\x26\x6c\xb7\x1d\x28\xba\xc0\x76\xca\x5a\x66\x4b\xaf\x16\x3b\xbf\x9d\x4f\xde\x56\x2e\xcb\x7b\x31\x5b\xda\x98\x8e\x16\xef\x72\x63\x3a\x22\xe5\xc8\x8c\x61\xe3\x6b\x6c\x4c\x47\x8b\xc7\xb9\x31\x1d\x91\x72\xa8\x36\xa6\x63\x33\x5d\x6a\xd5\x4f\x65\x24\xa6\x23\x3b\xb4\xfa\xc6\x74\x6c\x5c\x92\x16\x8f\x6f\x63\x27\x36\xdd\xb8\xc5\xad\xda\x74\xe3\x2d\x2e\x89\x2e\xbb\x71\x49\x36\x2e\x49\x8b\x2b\xb0\x71\x49\x22\xe5\x28\xa9\x4b\x2e\xc9\xc6\x25\x69\x19\x83\x36\x2e\x49\xa4\x1c\x5e\x0c\x97\x64\xe3\x92\xb4\x8c\x41\x1b\x97\x24\x52\x8e\x22\x49\xbd\x71\x49\x5a\x06\xf9\x8d\x4b\x12\x29\x47\x91\x24\x6f\x71\x49\x8e\x4c\x18\x36\x2e\xc9\xc6\x25\x69\x19\x1f\x37\x2e\x49\xa4\x64\x03\x59\xdf\x18\x9d\x8d\x4b\xd2\x32\xa2\x6d\xac\x4e\xa4\x1c\x5a\x03\x97\x64\xe3\x92\xb4\x8c\x68\xdb\x7c\xf2\x96\x77\xaa\x35\x4c\xef\x94\xbd\xca\xf6\x89\x0e\x18\x21\x9b\x14\x3d\x61\x6f\x72\x7b\x25\x69\x97\x24\xb7\x19\xf7\x76\x3d\x21\x52\xb2\x45\xad\xef\x7a\xc2\xee\x23\x41\xcb\xb8\xb7\xfb\x48\xb0\xb7\x64\x23\xed\x63\x6f\x6f\x49\x5f\x97\xe5\x09\xf9\xfe\xd4\xf7\xf4\x04\x96\x74\xd7\x13\x76\x3d\x21\x13\xf1\x5d\x4f\xd8\x9f\x9e\x70\xe6\xa1\x7a\xc2\x1e\xdf\xf9\xd8\x5e\x49\x1a\x92\x96\xcb\xf2\x50\xed\x39\x52\x8e\x78\x32\x88\x91\xbe\x67\x24\x3c\xd2\xb0\x76\x23\xe1\xfe\x34\xe7\xd3\x65\x1e\xa0\x39\x6f\xc9\xad\xe6\xbc\x3f\xcd\x39\xa3\xd2\xae\x39\xef\x9a\x73\xfc\xf5\x5d\x73\xde\x8d\x84\x2d\x63\xc6\x6e\x24\x8c\x94\x63\x97\xe4\xa1\x19\x09\x8f\xf8\xe6\xbb\x91\x70\x37\x12\xb6\x58\xcf\xdd\x48\xb8\x67\x88\xcb\xae\xba\xbe\x1b\xe2\xf6\xa7\x6f\xc4\xb1\x45\xbd\x90\x72\xc4\xc1\xde\x0d\x71\xbb\x21\xae\xc5\xef\xdc\xb5\xc9\x5d\x5b\x38\xd3\x39\xe0\x31\x7d\x37\x50\x9d\xde\xa9\x81\x6a\x37\x50\x9d\x8a\x6f\xa0\xda\x3f\x32\x9c\x8a\x33\xc3\xde\x0d\x54\xd9\xc7\xd0\x77\x03\x55\xa4\x1c\x4f\x92\x8a\xfb\xa4\x85\x64\xdb\x42\xdf\x3f\x0a\x91\x91\xe8\x78\x92\x54\x9c\x59\xf7\x99\xee\xb7\x9b\x75\xef\x99\x75\x1f\x4f\x92\x77\x6a\xc0\x3a\xd3\xfd\x76\x03\x56\xa4\x1c\xf1\xa7\x77\x03\x56\xa4\x1c\xf1\x9d\x77\x03\xd6\x6e\xd6\x7d\xc6\x8b\xdd\xcd\xba\x23\xe5\x88\x9f\xbc\x7f\x65\xf7\xdb\x5c\x96\xc2\x67\x15\x8a\x94\xe3\xf9\xa5\x12\x64\x2b\xfd\xeb\x4c\x2f\xdd\xbf\x9a\xc3\x57\xa9\xfc\x52\xa9\xbe\xe9\xa5\x67\x7b\xfd\xf6\xc8\xbd\x7f\x97\x9f\x28\xb4\x1b\x3f\x85\xf6\x42\xe2\xd1\x62\x96\xfa\x91\xb1\x36\xfb\x13\xfb\x61\xac\x3d\xf8\xe4\x67\x3c\xda\x83\x4f\x1e\x29\xc7\xf3\xcb\x26\x49\xd6\xd3\xb3\x0f\x43\x72\xa4\x1c\xcf\x2f\x93\xf5\xc3\x90\x9c\xbd\x12\xfd\x30\x24\x47\x0a\xa7\xe2\x30\x24\x47\xca\xe1\x66\x86\xe4\x83\x4f\x7e\x9e\xd2\xe4\x23\x43\xf2\x11\x33\x71\x18\x92\x0f\x43\xf2\x19\x77\x10\x77\x45\xca\x11\x87\xf6\xc8\xb2\x57\x3f\x18\xa2\x33\x3e\xd2\xc1\x10\x1d\x0c\x51\x1c\xda\x83\x21\x3a\x0c\xc9\xd9\x2f\xd1\x0f\x43\x72\xa4\x64\xdf\x65\x3f\xf8\xe4\x07\x9f\xfc\x4c\xf7\x39\x58\x9d\xc3\x8c\xfd\xcc\xd0\x7d\x18\x59\x8f\x78\xd6\xd9\x8c\xd9\x0f\x9e\xf5\x61\x78\xcc\xc6\x8a\x8e\x0a\x23\x85\x13\x74\x18\x1e\x0f\xf6\xe4\xca\x90\x79\xb0\x27\x07\x7b\xa2\x42\xd8\x93\xc3\xb8\x77\x65\x40\x3b\x58\x85\x43\xdf\xbe\x6a\xca\xa5\x6f\x1f\xc6\x3d\x95\x64\xdc\x3b\x8c\x7b\x57\xbe\x7e\x1c\xc6\xbd\xc3\xb8\x17\x67\xf8\x30\xee\x1d\x59\xca\x7e\x5d\xf9\xfa\x71\x0c\x65\x30\xee\xc5\x19\x3e\x8c\x7b\x87\x71\xef\x8a\x99\x3c\x8c\x7b\x87\x71\xef\xf2\x80\x25\x69\xb9\x4c\x46\xde\xd2\x62\x60\xbd\x99\xec\x6c\xef\x87\xe1\xf1\xca\xa7\x8e\xc3\xf0\x78\x18\x1e\x33\x23\x39\x98\xa2\xc3\xf0\x18\xaf\xf0\x30\x3c\x1e\x86\xc7\x2b\x66\xf2\x30\x3c\x1e\x86\x47\xef\xd4\xf0\x78\x18\x1e\xaf\x98\xce\xc3\xf0\x78\x18\x1e\xe3\x9e\x1e\x86\xc7\xc8\x7d\x59\xf2\x36\x35\x87\x2c\x98\x1f\x97\xac\x29\xfc\x54\xf8\x5d\xde\x14\x7e\x2a\x7c\xaa\xd2\xc0\x7a\xb0\x9c\x57\xbe\x74\x80\xfd\x48\xc9\xee\xd6\x7e\xf0\xfa\x8f\xf5\x14\x21\x19\x31\xd9\x8f\x14\x8e\xed\x61\xb2\x7f\xac\x27\x6f\x7e\x2a\x6f\x99\xec\x1f\xf1\x6c\x0f\x93\xfd\x83\x69\xbe\x62\xfe\x0e\xa6\xf9\x60\x9a\x2f\xdd\x9e\x69\x8e\x94\x23\xde\xee\x61\x0e\x71\x98\xd8\x5f\x5a\x3e\x93\x78\x7c\x1f\x18\x2f\xc5\x67\xec\x22\xe5\x88\x07\x7c\xb0\x75\x07\x5b\x73\x25\xc3\x98\x45\x52\x8e\x8c\x25\xcd\xfc\xbf\xb1\x35\x57\xdc\xee\xc6\xd6\x34\xb6\x26\x8e\x72\x63\x6b\x1a\x5b\x93\x1d\x1c\xbd\xb1\x35\x8d\xad\x49\x6f\x6b\x6c\x4d\x63\x6b\x7a\xbe\xa5\x36\xb6\xa6\xb1\x35\x1e\xc0\xd6\x34\xb6\x26\x9f\x79\x1b\x5b\xd3\xd8\x9a\x9e\x31\xad\xb1\x35\x91\x72\xa4\x9f\x36\xf3\xff\xc6\xd6\xf4\x38\x7c\xb8\x4b\x52\xcc\x08\x1a\x5b\xd3\x1e\xc8\x30\x4b\x1e\x8d\x75\x68\xba\x7d\x4f\xff\x00\x68\xf6\x16\x37\xa2\xc5\x15\x6f\xdc\x88\xa6\xdb\xf7\xbc\xfb\xa6\xdb\x47\x4a\x53\x2a\xdd\xbe\x71\x23\x7a\xbe\x55\x35\x6e\x44\xa4\xb4\xb8\xe2\x8d\x1b\xd1\xb8\x11\x3d\x5f\x97\x1a\x37\x22\x52\x5a\xec\x4a\x63\x30\x22\xc5\x6c\xa5\x71\x23\x1a\x37\x22\x9b\x34\x7a\xe3\x46\x44\x4a\x8b\xdb\xdd\x4c\xa8\x9b\x09\x75\xcf\x30\xd3\x4c\xa8\x23\xc5\xa4\xa6\xf1\x36\x1a\x8b\xd4\xd3\xde\xb0\xa8\xa4\xb4\x7c\x80\x6f\xbc\x8d\xc6\xdb\xe8\x31\xef\x4d\x17\x6f\x26\xd4\xd9\xce\xd1\x9b\xce\x1b\x29\xcd\xcb\xd2\x77\x9b\xae\xd5\xd3\xc7\xb1\xad\xa4\x98\x36\x35\x5d\xab\xe9\x0c\xd9\xd0\xd1\x9b\xce\xd0\xf2\x95\xab\xbc\x64\xd8\x67\xae\x48\x69\xc5\x65\xca\xf0\x7e\x00\xd0\xa4\xe9\x33\x91\xd2\xe2\xb1\x37\x7d\xa6\xc5\x9d\x29\xaf\x38\xc1\x8d\x3b\x13\x29\xad\xfc\x0d\x1f\xcd\x1b\x6f\xa7\x65\xde\x5d\x5e\xf1\xa7\x9a\x79\x77\xa4\xb4\x38\xf9\x8d\xb7\xd3\x20\x7c\xaf\x7c\x6d\x68\x3a\x68\xa4\x98\xf2\x35\x3e\x4b\xa4\x94\x57\xbe\x69\x37\x3e\x4b\xa4\x98\xf2\x35\xdd\x38\x72\x5f\x96\xe2\xe8\xc7\x91\x62\xca\xd7\xf8\x2c\x0d\xd8\xf7\xca\x47\x09\x88\x30\x29\x2d\x0d\xfe\xd4\xb5\xcf\xdd\x43\x63\x88\x4f\x5d\x3b\x52\x5a\x95\xd4\x24\x29\x69\x4c\xe7\xa9\x6b\x47\x8a\x09\xe4\xa9\x6b\x9f\xe9\xda\x25\x9b\x45\xfa\xa9\x6b\x47\x8a\x09\xe4\xa9\x6b\x9f\x87\x22\xc4\xaf\x3b\x4d\xe3\x23\xa5\x55\x49\x97\x24\x45\x88\x2b\x86\x69\xee\x67\xa6\xf1\x2d\x55\x79\x9a\xc6\x9f\x4d\x11\xe2\xcf\x9c\x7c\x86\x48\x69\x59\x45\x38\xf9\x0c\x67\x26\x2f\xf7\x5c\x2b\x69\x9e\xd0\x14\xc1\x03\x14\x21\x6b\xec\xb7\xef\x9f\xb4\x29\x6d\xe6\xb2\xd4\x9b\xd9\xfe\x79\x2a\x69\x1c\xa6\xd3\x6c\x3f\x52\x5a\x66\x2a\x27\x7b\x12\x29\x2d\x83\xf7\x69\x8e\x13\x29\xb7\xc7\x9d\x34\xd9\x8d\x53\xd2\xf2\xe6\x4f\x3e\x49\xe4\xbe\x2c\x25\x35\xdb\x8f\x94\xa0\x03\xfd\xe4\xa7\x9c\x0f\xf0\x1c\x6f\x03\xe5\x4d\x4a\xf3\xe6\xf9\x29\xe7\x5f\x91\xe4\x64\x84\x3d\x39\xbb\x9f\xc6\xe8\xc2\xc1\xfb\x19\x07\x24\xd8\x41\x3f\x39\x20\x67\x1c\x10\x38\x73\x3f\x39\x20\x91\xd2\x36\xbf\x94\xdf\x01\xf5\x4d\x77\x3f\x39\x20\x67\x1c\x90\xb6\xf9\xa5\xea\x8d\xcb\x50\x4a\xfa\xe7\xc9\x65\x88\x94\xa6\x09\xb2\x27\x91\xd2\x32\xee\x9f\x5c\x86\x48\x81\x09\xf7\x93\xcb\x70\x66\xe0\x6f\xbb\x9b\x69\x95\x31\x31\x38\xe1\x0e\x69\x27\xd9\xe8\xd0\x21\xed\x1d\xd2\xde\xd2\x4e\x21\xed\xfd\xd2\x8c\x42\xed\x76\x4c\x3b\x29\x61\x22\x3a\xa6\xbd\x87\x63\x2f\xb0\xdd\x7e\x71\x3d\x2f\xcd\x28\x43\xfc\xa5\x19\x5d\xda\x47\xf0\xdb\x8e\x6a\x27\xa5\x1d\x92\x3c\x54\xfb\x88\xe5\xbf\xb4\x8f\x4b\xfb\x08\x7f\xdb\x2f\xed\xe3\xf2\xe2\xe3\x1c\x5c\x5e\xfc\x95\x39\x30\x00\xb7\x5f\xe6\xc0\xe8\xf7\x90\x18\x1d\xfd\xde\xd1\xef\xc1\x2e\x3a\xfa\xbd\x87\x7e\x2f\x25\x3b\x5c\x3a\xfc\x9d\x14\x5f\x2b\xe0\xef\x3d\xf8\x7b\x81\xcd\x76\xfc\x3b\x29\xbe\x56\xe0\xdf\x7b\xf8\xf7\x82\x9b\xed\x00\x78\x52\x7c\xad\x00\xc0\x93\xd2\xf2\x9d\x13\x00\x4f\x4a\x29\xb2\x6b\xf0\x42\xc0\xb7\xcc\x60\x10\xf0\xfd\xd2\x4c\x8b\x22\x68\xa6\x17\x7e\xb2\xb8\x4e\x93\xb9\x9e\x17\x1f\x77\x17\x59\xde\xaf\xf7\x43\x96\x27\x27\x06\x92\xcb\x08\x51\x33\x40\x82\xbf\x3b\xf8\xdb\xe7\x0f\xf0\x77\xbf\x8c\x10\xf6\x4d\xa0\xbf\x49\x09\x77\xd2\xd1\xdf\xfd\x32\x04\x54\xcd\xcd\x10\x00\xff\xf6\xf9\x03\xfe\x4d\x0a\xc4\xa7\xe3\xbf\x7b\x98\xef\xd2\x32\xfd\xb9\x4c\x78\xc3\x7f\x17\x8c\x4f\x07\x80\x93\xe2\x93\x08\x00\x9c\x14\x9f\x3f\x00\xe0\xa4\x60\x75\x3a\x02\xbc\x5f\x46\x85\x18\x9a\xcb\xa8\x70\x65\xbe\x89\xdf\xe9\xd7\xf7\x79\x68\x5a\x4d\x26\x1d\x10\xf0\x1e\xec\xbb\xf8\xfc\xd1\xcd\x37\xbb\x81\xc2\x4e\x07\x0c\x38\x29\x2d\x35\x8e\x01\xef\xdd\x40\x11\x52\xa6\x83\xc0\x49\xf1\x95\x04\x04\xde\xbb\x81\xa2\xe6\x6b\x0a\x0a\x9c\x94\x16\x13\x85\x02\x27\xa5\xc5\xab\x40\x81\x93\x52\x6a\xba\x2e\x0c\xbc\xc3\xc0\xdb\xdf\xf2\xc5\x1c\x25\xde\xbb\xa1\x25\x80\x4a\x87\x89\x93\xd2\x32\xb1\xe8\x5c\xc4\x87\xe3\xb6\x11\x02\xc8\xdd\x83\x62\x17\x3c\x42\xef\x8c\x75\xa4\xf8\x9a\xd3\xd9\xea\xce\x30\x07\x35\xe8\x90\xeb\xde\x59\xe1\xaa\xc2\x74\x8c\xae\x79\x67\x03\x78\x07\x37\x77\x70\xb3\xaf\x3e\xe0\xe6\xde\x59\x61\xdb\x08\xd0\xcd\xa4\xb4\x34\x6e\x74\x73\x0f\xd1\x5c\x6c\x43\xee\xdd\xe7\x4f\x78\x73\x40\xa5\x0e\x6f\xee\x0f\x7f\x9c\xed\xc4\x1d\x80\xdc\xc3\x11\x17\xfb\x76\x3b\x90\x98\x94\xd6\x5d\xa6\xe6\x74\xb3\xec\xac\xed\x48\x62\x52\x02\x39\xf5\xce\x85\x0b\x23\x5c\x6c\x4c\xed\x20\x61\x52\x7c\xa5\x02\x09\xf7\x87\xf5\xb5\xf2\x0e\xf6\xed\xfd\xfd\x1c\x49\x70\xf7\x46\x38\x2e\x29\xad\x4b\xf2\x04\x5e\x55\x36\xf4\x75\x0c\x6d\xef\xcf\x69\x06\xa9\x74\x2c\x2c\x29\x2d\xf5\x3b\x38\x3d\x43\x5b\xb6\xd2\x0c\x86\x25\xa5\x65\x30\x04\xc3\xf6\x87\x69\xb5\x8d\x09\xd4\xda\x87\x86\x63\x77\x0f\xec\xb4\x8f\xf3\x39\xbe\xe0\xae\x74\x60\x68\x1f\x5e\xbf\x5d\x11\x00\xcf\x0e\xf0\x6c\x7e\xca\x16\x0f\xb6\xd8\x66\x01\x84\x27\x29\x61\xba\x3a\xc2\xb3\x0f\xb6\xd8\x66\x81\xc1\x16\x47\x4a\xa0\xae\x3e\xd8\xe2\x20\x9e\xe5\x59\xca\xc7\x78\x76\x8c\xe7\xf9\x92\xe4\xa1\x99\x0e\x3c\x4b\xe8\x58\x4d\x52\xce\x4c\x4b\x06\xc3\x3b\xb4\x4c\xeb\xb4\x60\xcd\x3e\x34\x1c\xcb\xbe\x70\xca\x3e\xb4\x08\x8b\x7f\x50\x48\x52\xce\x97\x24\x95\xee\x55\x5b\x57\xc2\x42\xf6\xe1\x55\x5b\xbf\x80\x39\x92\x72\x66\x9a\x33\xbc\xea\xc1\x16\xfb\xe6\x8e\x73\x24\x25\xb4\x5a\xc7\x39\xf6\xc1\x16\xfb\x72\x0e\x74\x24\xe5\x8c\xf3\x02\x74\xec\x83\x91\x3d\xe2\x48\x20\x1d\x49\x39\xbd\x41\x6d\x09\xe9\xe8\xfb\x29\xd2\xb1\x0f\xae\xf7\xe1\xa5\x72\xbd\x23\xe5\xcc\xf4\x65\x30\xb2\x43\x2b\xf4\x65\x1b\xeb\xd8\xa7\xb6\xe4\xfb\x34\x1a\xb1\x4f\x6d\xc9\x27\x4f\x38\x62\x87\x23\x9e\x45\x92\xcb\x38\x26\xbe\xd7\xe1\x11\x49\x39\xb3\xe2\x80\x47\xec\x93\x7f\xeb\xe3\x1c\x20\xb1\xcf\x38\x26\x67\x91\x94\xd2\x4f\x8e\x89\x45\x40\x44\x22\x29\x67\x91\xe4\xa1\xa7\xd2\x5f\x49\xda\x25\xc9\x47\x3c\x52\x48\x22\x29\x67\xaa\x12\x92\xd8\xa7\x96\xef\xfb\x17\xda\x90\x94\x33\xa6\x05\x6d\xd8\xa7\x96\xef\x43\xd1\xd4\xf2\xa7\x96\x9f\x19\xc5\xd4\xf2\xa7\x96\xef\x73\xcf\xd4\xf2\xa7\x96\x9f\x19\xc5\xd4\xf2\x27\x2f\xc4\x07\x9a\xc9\x0b\x99\x5a\x7e\x86\x5c\x3c\x23\x29\x67\x6c\xd7\xe4\x85\x4c\xad\xdc\x17\x0a\x8c\x23\x29\x67\x3c\xc1\x69\xd2\x3b\xd9\x5f\xb3\x6f\x90\x23\x29\x67\x95\x24\xbb\xec\xaf\xf9\xf2\x64\x7f\x51\x8e\x67\x1c\x46\x94\x63\x9f\xbc\x60\x33\x57\x00\x23\x29\x67\x06\x70\x00\x23\x29\xa7\x76\xc4\x0b\x9e\xbc\x60\x73\x38\x04\x23\x29\x67\x4c\x2d\x82\x91\x94\x67\x0e\x07\x61\x24\xe5\xcc\x5c\x64\x32\xe6\x53\xd7\x35\x87\x43\x27\x12\x1b\x84\xd0\x89\x7d\x69\x93\x99\x9d\x2c\x6d\x72\x69\x93\x66\x4e\xf0\x44\x52\x82\x81\x76\x78\x62\x5f\x9c\x65\x33\x27\x7c\x22\x29\x67\x3a\x02\x3e\xb1\x2f\x6d\xf2\x9e\xff\xfc\xe6\x00\x8e\x4c\x24\x25\x34\x69\x47\x26\x92\x72\xc6\x94\x22\x13\xc9\x7d\xe3\x3c\x5f\x93\x0d\x8e\x58\xac\x77\x2c\x4b\xa6\x38\xc4\x67\x06\x02\x44\xec\x01\x11\xcb\x19\x53\x0a\x44\xec\x40\xc4\xc0\xa3\x1d\x88\xd8\x97\x56\x1c\x02\xbb\x23\x11\x49\x09\x17\xda\x91\x88\x7d\x69\xc5\x41\xb0\x3b\x14\x91\x94\x33\x1e\x08\x14\xb1\x2f\xad\xd8\x7c\x03\x8b\x48\xca\xf9\x24\x79\xa8\x56\x9c\xe9\x06\x16\x91\x94\xc7\xf5\x07\x23\x76\x30\xa2\xa5\x18\x30\x62\x5f\x1a\xbb\xe9\x00\x1a\xb1\xa3\x11\xad\xb1\xa0\x11\xfb\x7a\x1a\x7b\xdc\xeb\xa5\xb1\x2f\x8d\xdd\x03\x34\xf6\xf5\x9c\x62\x92\x15\x02\x3c\x62\x5f\x4f\xfb\x8c\x37\xb9\xb4\xcf\xa5\x7d\x7a\xe8\x7c\x7e\xaa\x7d\xe6\x13\xf6\xd2\x3e\x97\xf6\x99\xd9\xfe\xd2\x3e\xd7\xd3\x3e\xe3\x30\xc1\x1b\xfb\x32\x8e\xb4\x7c\x43\xc2\x37\xf6\x65\x1c\x31\xca\x01\x1c\xfb\xfa\x28\x57\x9e\xc0\xa7\x5f\xc6\x91\x33\xe3\x08\xc2\x91\x94\xc0\xab\x1d\xe1\xd8\x97\x71\x84\xd9\x84\x38\x92\x12\x7a\xb5\x43\x1c\xfb\x32\x8e\xb0\x91\x18\x47\x52\xac\xdd\x60\x1c\x49\xb1\x4e\x03\x62\x24\xe5\x31\x30\x28\xc6\x8e\x62\x3c\xd5\xa5\x71\x64\x71\xd6\x19\x98\xc5\x59\x8f\x94\x33\xd6\x1b\xd9\xd8\x91\x8d\x96\x6e\x90\x8d\xfd\xcd\xc1\xd1\xd7\xa1\x8d\xa4\x9c\x59\x46\x81\x36\xf6\xf7\xfe\x9c\x13\xb3\x25\xad\x4b\x4b\x41\x4f\xbf\x4c\x41\xdf\x9c\x75\x9d\x0d\x02\x49\xca\x19\x47\x0b\x02\x49\xca\x99\xe9\xc6\x9b\xb3\xfe\xe6\xac\x9f\xbb\x34\xf9\x38\xe4\x63\x4f\x92\x7c\xf8\x1e\xa4\x67\xe1\x22\x49\xb1\xac\x84\x8b\xec\x6f\xe3\x65\xb8\xec\x0e\x8c\xec\x6f\xb6\x29\xcd\xed\xcd\x36\xbd\xd9\xa6\x40\xd1\x1d\x19\x49\x4a\x58\xdd\x8e\x8c\xec\x6f\xb6\x49\xc3\x87\x46\x92\x12\x58\xb7\x43\x23\xfb\x9b\x6d\xd2\x7a\xdf\x8c\xcf\x9b\xf1\xc9\x84\x06\x2e\x49\xca\x99\xc9\xcb\x9b\xf1\x79\x33\x3e\xde\x3c\x84\xb2\x07\x9b\x2c\x96\xb7\xde\x26\xf2\x6f\xe3\xa5\x37\x8f\x8e\x24\xc5\xf2\x16\x3a\xb2\xbf\x59\x9a\xe7\xfd\xb1\x34\x6f\x96\x26\x63\xe3\x9b\xa5\x79\x9b\x62\x3c\x6f\x81\xbd\x78\xb3\x17\x99\x9d\xbc\xd9\x8b\x37\x7b\xf1\x3c\x81\xbd\x88\x14\x8b\x65\xef\xfe\xdc\x4d\xde\x3c\x81\xbd\x00\x60\x9e\x19\x69\x01\x98\xfd\xcd\x5e\x9c\xf1\xec\x11\x98\xa4\x84\x55\xee\x08\xcc\xfe\x36\x38\x5a\x7a\x03\x57\x92\x72\x66\x86\x01\xae\xec\x6f\x83\xa3\xa5\x37\x74\x25\x29\x67\x66\x18\xe8\x4a\xf2\xd7\x67\x1a\x1c\xdf\x8c\xcf\x95\x41\x1a\x5e\x49\xca\x99\x99\x03\xbc\x92\xdc\x97\xa5\x42\x18\x9f\x37\xe3\x23\x6b\x8c\xcf\x9b\xf1\xb1\x68\x07\xb0\x24\xe5\xcc\x2c\xe1\xcd\xaf\x7d\x2f\x0f\x8d\x2f\xf6\xb6\x0e\x14\x29\x67\xf7\x4b\x0f\x7d\x4e\x35\x8a\x93\x05\xb1\xec\x6f\xdf\xb4\xaf\x0c\x8f\x6f\xdf\xb4\x31\x96\x4f\xe1\x7d\xd3\x7e\xb3\x6e\xd6\xf6\x40\x96\xfd\x6d\xf6\x13\x0c\xbb\x43\x2a\xfb\xfb\xfb\x9c\x46\x94\x42\xf8\x5a\x1c\x29\x57\x26\x13\x30\xcb\xfe\xe6\x9e\x5e\xf9\x8a\x03\xaa\x24\xe5\xca\x64\x02\x54\xd9\x3f\x6c\xc8\x15\x4f\x00\x55\x49\xca\x15\x33\x8b\xaa\xec\x1f\x36\xe4\x6a\xfd\xb7\xc7\x6e\xd4\x25\x29\x57\x56\x4a\x50\x97\xfd\xc3\xc4\x84\x79\xee\xb0\x4b\x52\xae\x4c\x49\x60\x97\xa4\x58\x6d\x85\x5d\x92\xfb\x97\x29\x0d\x13\x13\x79\x9a\xc1\x87\x89\x41\x67\x96\x2b\x7d\x16\x9d\x49\x9e\x66\x80\xce\xec\xe8\xcc\x12\x5e\xba\xa3\x33\xc9\xd3\x0c\xd0\x99\xfd\xc3\xc4\x58\x5e\xfb\x30\x31\x91\x72\xc5\xf3\xfb\x30\x31\x1f\x26\xc6\xf2\xda\x87\x89\x89\x94\xd0\xf9\xfd\xc3\xc4\x60\x3d\xcb\x95\xd6\x8d\xf5\x24\xe5\xca\xb4\xe2\xc3\x9e\x7c\xd8\x93\xee\x25\xb1\x27\x91\x72\xc5\x8f\xfc\xf0\xbf\x3f\x3e\x1c\x77\x2f\xc9\xc7\x88\x48\xb9\x8a\x07\x28\x29\xb3\x63\x15\x0e\x4c\xda\xc1\xa4\x5a\x32\x98\xb4\x83\x49\x4b\x57\x2c\x66\x07\x4c\x7a\x65\x9a\x05\x26\xed\x60\xd2\x62\xc9\x0d\x4c\x4a\x9e\x06\x0f\x26\xed\x1f\x0e\x4e\xf7\x04\x0e\x0e\x98\xf4\xca\x28\x0a\x26\x25\xe5\x8a\x8f\x0b\x26\x25\xa5\xf4\x78\xaa\x60\x52\x52\x2c\xa0\x83\x49\xc9\x7d\x59\x0a\x6f\x6a\x1b\x29\xd7\xf3\x4b\x85\x67\xd7\x7a\xe6\x06\x60\x52\x52\x2e\xbf\xe4\xf4\xa3\x44\x4b\x98\xf1\x8e\x12\xed\x28\xd1\xd2\x33\x08\xa1\x44\x49\xb9\xdc\x8d\x3d\x41\x89\x16\x4b\x7f\x28\x51\x52\xae\xcc\x3e\x3e\x8c\x07\x86\xb3\xf4\xb8\x55\x20\xce\x0e\xc5\x2c\x3d\x43\x30\x14\xb3\x87\xaf\x2c\x57\x1c\x86\x0f\x67\x06\x6b\x59\x2c\xb9\x61\x2d\x49\xc9\x39\x0f\x1d\x6b\xd9\xb1\x96\xa5\x67\xf5\x1d\x6b\x49\xca\x95\xa9\x06\xd6\xb2\x63\x2d\x4b\xd7\xa2\x39\x33\x58\x4b\xd6\x09\x6b\xd9\x3f\x3c\x97\x1e\xab\xfb\xe1\xb9\x44\xca\x95\xe9\xc7\x87\xd5\xf9\x98\x28\xf7\x98\xd3\x0f\xb3\x13\x29\xf6\x31\x7c\x38\x38\x30\xcd\xd2\x63\x4e\x61\x9a\x3d\x68\x66\xb9\x32\xd9\xf8\xf2\x66\xbe\xb1\x44\xf5\x95\xa6\xfa\x65\x89\xbe\x2c\x51\x26\x1b\x5f\x96\xe8\x1b\x4b\x54\x03\x60\xf7\x2f\x53\xf3\x65\x6a\x36\x49\x29\xe9\x37\xa6\xa6\x5a\x48\xfc\x32\x35\x40\x50\xdb\x1d\x70\xa0\xa4\xd8\xda\xf0\x65\x6a\x22\xa5\xbe\xe2\x17\x7e\x99\x9a\x2f\x53\xb3\xb9\x99\x7c\xc4\xd4\xd4\x57\x71\xb7\x53\x9a\xc2\xf7\x24\x5d\x92\xde\x2e\xcb\x13\x98\x1a\xa0\xa9\x5d\x11\x40\xd3\x0e\x34\xad\xaf\x34\x2e\xa0\x29\x29\xb6\x3b\x00\x4d\x3b\x82\xb4\xbe\xd2\x42\x10\xa4\xa4\xd8\xee\x80\x20\xed\xa1\x41\xef\xcb\x92\x5f\xde\x0c\x34\xd4\x76\x07\x68\x28\x29\x57\xda\x38\x34\x94\x94\xfa\x52\x95\xac\x0f\x34\xd4\x0e\x08\x68\x28\xb9\x2f\x93\xa6\xf0\x99\x71\x5d\x99\xe9\x7c\xcd\xb8\xa0\xa1\xf5\xa5\x7a\xd1\x2f\xc1\x41\x8b\x8d\x12\x5f\x0b\x1a\xd0\xd0\xfa\x52\x6f\x8c\x14\x34\xb4\x5a\xb1\x84\x86\x76\x68\x68\xb5\x52\x08\x0d\xed\xd0\xd0\x2b\x5e\x20\x34\xb4\x43\x43\xab\x45\x3b\x68\x28\x29\x57\xbc\x40\x68\x68\x87\x86\xd6\x57\x5c\x2d\x68\x28\x29\x57\xb6\x9d\x41\x43\x3b\x34\xb4\x5a\xc8\x83\x86\x92\x72\xa5\x3b\x43\x43\xc9\x33\x28\x43\x43\x49\xa9\xaf\x0c\x46\xd0\x50\x52\x2e\x25\x60\x56\xa0\xa1\xd5\xa2\x1d\x34\x94\x94\x9c\x46\xd2\xa1\xa1\x1d\x1a\x5a\x5f\xb7\x21\x18\xd0\x50\x12\x1c\x75\x40\x43\xc7\x4b\xd3\xba\x07\xfd\x11\x4c\xf4\x96\x27\x1b\xbf\x7d\x10\xda\x40\x8e\x92\x72\xdd\xd3\xa0\x81\x1c\x25\xa5\xbe\xee\x41\x6e\x04\x23\xbd\x65\xe6\xb2\xe4\x28\x0b\xa6\xe3\xf5\xb4\xbc\x9e\x9f\x9e\xf2\xa4\xe5\xdd\x93\x99\x81\x1c\x25\xe5\xba\xdf\xd0\x40\x8e\x92\xfb\x97\x2d\x69\xf2\xa1\xe5\xb5\x94\xe6\x94\x8f\xa7\xe5\x75\x77\x93\x0f\x2d\xef\x4c\xd6\xd2\xf2\xc6\xeb\x69\x79\xdd\x13\xa6\xb4\x64\xf7\x4c\x76\xcf\x27\xbb\xcb\xd1\x78\x7e\xfa\x96\xf6\xce\x65\xdb\x9d\x74\x29\x81\x11\x53\x45\x5f\x4a\x90\x11\xb3\xe6\x0c\xea\x01\x30\x25\xe5\x3a\x53\x82\x4b\x76\x2f\x87\xe3\xbd\xdc\x4d\xde\x8c\x98\x67\x4a\x90\x11\x73\x00\x4c\x6b\x0e\xa6\x1e\x00\x53\x52\x72\xf2\xcb\x00\x98\x12\x4e\xd0\x00\x98\x92\x52\x73\x4e\xf4\x00\x98\x8e\x40\xa5\x9c\xa0\xf1\xea\x9e\xa9\xeb\x94\x92\x22\x0c\x0f\xd0\x75\x2e\x49\x1e\xa0\x4f\x64\xf5\x75\x20\x47\x49\xb9\xae\x64\x6d\xc8\xae\x53\xb8\xb2\x88\x3a\x60\xa2\x03\x26\x5a\xcb\x96\x8c\x4c\x2f\x46\x33\xbe\x52\xd2\x34\xe3\x01\x13\xad\x59\xf7\x1c\x30\xd1\x01\x13\xad\x59\xaa\x1c\x30\xd1\x01\x13\xad\x39\x46\x76\xc0\x44\x07\x4c\xf4\xba\x52\x23\x1f\x97\x7d\x14\xff\xcc\x6b\xf8\x28\xbe\xe1\x51\x4b\xfd\x78\x0d\x1f\xe5\xf2\x52\x3f\xca\x65\x78\xd4\x52\x3f\xca\x95\xf5\xbb\x5a\xbc\xc1\x8f\x56\x93\xf3\x9b\x73\x42\xce\x08\x32\xfa\xfb\x01\x13\xad\xc5\x1b\xfc\xca\x9b\x51\xb4\xe7\x01\x5f\x79\xcb\x27\x81\x9c\x9a\x33\x60\xa2\xa4\xd4\xa2\x13\x7f\x65\xd7\xc0\xda\x53\x97\x5f\xd9\xfd\xaa\xcb\xcb\xdd\xd4\x65\x76\xa7\x5e\xba\xc7\x57\x09\xbe\x5a\xaf\x37\xf8\xd5\x7a\x33\xd8\xe6\x10\x9e\x81\x26\x1d\x68\xd2\xeb\x9e\x6b\x0c\x34\xe9\x40\x93\xd6\x1c\x30\x3a\xd0\xa4\x84\xdf\x39\xe0\xa2\x03\x2e\x5a\xb3\xb0\x3a\xe0\xa2\x84\xdf\x39\xe0\xa2\x03\x2e\x5a\x73\x78\xe8\x80\x8b\x12\x7e\xe7\x80\x8b\x92\xd2\x6f\x4f\x7f\xc0\x45\x49\xa9\xc1\xf3\x07\x5c\x74\xc0\x45\xfb\x3d\xbe\x0f\xb8\xe8\x80\x8b\xd6\x2a\x6f\x2c\x1d\x5c\xb4\xbf\x52\x02\x96\x0e\x2e\x5a\xb3\xe6\x3b\xe0\xa2\xa4\x64\x2f\xd9\x80\x8b\x0e\xb8\x68\xad\xaf\x54\x48\x53\xaa\x0c\xa2\x71\x6c\x07\x5c\x74\x40\x43\x6b\x58\xfc\x81\x0d\x1d\x85\x91\xca\x3a\xf0\x28\x8c\x14\x10\xb4\x3f\x97\xc9\xef\xe9\x09\x55\x9a\x27\x9c\x9e\x90\x62\x9d\xcf\x13\x14\xab\xa6\x92\x98\x1a\x20\x68\xce\x42\x1a\x40\xd0\x81\xf0\xac\x81\xe5\x07\xc2\x73\x20\x3c\x6b\xce\xff\x1b\x08\xcf\x81\xf0\xec\x25\x97\xe9\xcf\x91\x52\x73\xa0\xdd\x08\xee\x79\x8b\x1a\x49\xe9\x87\x1a\xd1\xed\xeb\x91\xcc\xe9\xf6\x08\xcf\x78\xe2\x03\xe1\x49\xee\xcb\x52\xe7\xd9\x56\x4a\x78\xe2\x03\xe1\x39\x10\x9e\xb5\x66\x10\x42\x78\x12\x9e\xf8\x40\x78\x92\xd2\x6b\xb2\x36\x65\xcd\x88\x19\x86\x7c\x20\x3c\x49\xe9\x31\x35\x08\x4f\x72\x5f\x26\xed\x94\x96\xb7\x50\x53\x6f\x4c\x0d\x9a\xb3\xd6\x96\x34\xa6\x06\xce\xd9\x55\xe5\x52\xbd\xcb\x43\x33\x2e\xc0\x39\x49\xe9\x35\x05\x5d\x1e\xca\x48\xe5\xd4\xb7\x81\xd3\x1c\xe5\x39\xd1\x33\x06\x0e\xa7\x39\xc2\x66\x9a\x4c\x8c\xf2\x96\x11\xb6\xac\xea\x46\x6c\x59\x79\x0e\xdd\x4c\x7f\xc6\x69\x0e\x9c\x66\x0d\xe3\x3d\x70\x9a\xa4\xf4\xed\xb7\x4f\x67\x19\x30\xce\x01\xe3\xac\x59\xba\x1d\x30\x4e\x52\xfa\xed\x6e\x0f\x18\xe7\x80\x71\xd6\x1c\x6e\x34\x60\x9c\xa4\xf4\xcd\xf3\xf3\xce\x21\x9b\x35\x2b\xbc\x03\xb3\x49\x4a\xdf\xf2\x00\x1d\x19\xb3\x59\x73\x96\xcf\xc0\x6c\x92\x92\x4d\x96\x03\xb3\x49\xee\xcb\x7a\xd2\x4e\x69\xa9\xb0\xdb\x95\x1c\x55\x7f\x87\x76\xd6\x1c\xf9\x33\xa0\x9d\xa4\xf4\x8c\x1b\xc1\x3c\x6f\xf1\xd0\x3d\x3f\xd5\xdf\xa1\x9d\x5d\x3e\xf4\x77\x68\x67\xcd\x79\x39\x03\xda\x49\x4a\x97\x0f\xfd\x1d\xda\x59\x73\x84\xcd\x80\x76\x92\xd2\xe5\x83\x9f\x02\xed\xac\x39\xd8\x65\x40\x3b\x49\xe9\x7b\x49\x92\x87\xea\xdb\x39\xb7\x63\x60\x36\x47\x38\xcd\xd2\xf7\x3c\xe0\x72\xb7\xeb\xb9\x5b\x32\xc2\x8d\xc0\x6c\x66\xea\x39\x30\x9b\x03\xb3\x59\xb7\xb8\x38\x98\xcd\x51\x73\xf8\x6f\x57\xf8\x1c\xfe\x3b\x30\x9b\x35\x0b\xe3\x03\xb3\x49\x4a\xce\xfc\x1a\x98\x4d\x52\xb2\x11\x75\x60\x36\xc9\xfd\xcb\x54\x2f\x37\x02\xb3\xd9\xd5\x47\x97\x8f\xee\xfd\xc5\x29\xc1\x6c\x92\xd2\x8f\x34\x9a\x2e\x6b\xfd\x39\x21\x35\xa5\xea\x53\x5a\xb2\x1b\x4b\x54\xfb\x93\xdd\x8c\x5f\x21\xc6\x47\x38\xcf\x47\xcc\x94\x07\xda\x93\x94\x7e\xa4\xa0\xc3\x9b\xe7\xe2\x67\x69\x7f\xd4\x21\xbb\xec\xda\x91\x12\xb0\x6b\x95\x5d\xcb\xd2\xfe\xa8\xec\x5a\x65\xd7\x62\xc3\x2a\xbb\x86\x1d\xad\x21\xc6\x07\x76\x94\x94\xec\xa5\x1d\x95\x75\xaa\xac\x53\x80\xee\x51\x59\x27\x88\x69\xd7\x18\x58\x27\x38\x69\xcd\xde\x81\x01\x27\x25\xa5\x6b\x0c\xcc\x0e\x9c\xb4\xe6\x44\x8e\x01\x27\x1d\x70\xd2\x9a\x83\x1f\x06\x9c\x94\x94\xde\x24\xf9\x29\xa7\x67\xd7\x4f\x39\x3d\x70\xd2\xde\x24\xc9\x08\xa7\x67\xd7\xb3\x38\x3d\x78\xd1\x1e\x03\x8b\x17\x1d\xd8\xd0\xba\xeb\x0b\x2c\x11\x12\xb4\x86\xc8\x1f\x48\x50\x52\x7a\x8c\xee\xc6\xd4\x6c\x4c\x4d\xf6\x09\x8c\x8d\xa9\xd9\x98\x9a\x18\xdd\x8d\xa9\x01\x8c\xd6\x40\xde\x03\x30\x4a\x4a\xce\x8a\x1b\x80\xd1\x01\x18\xad\x09\x26\x30\x00\xa3\xa4\xf4\x4c\x14\x00\xa3\x63\x63\x6a\xf6\xb8\x7c\x1b\x53\xb3\x31\x35\xe9\x45\x1b\x53\x83\x0e\xad\x61\x9a\x07\x3a\x94\x94\x9e\x5e\xb4\xb1\x21\xe8\xd0\x1a\xd2\x77\xa0\x43\x89\x2f\x33\x03\x1d\x3a\xd0\xa1\x35\xa0\xed\x40\x87\x92\xd2\xd3\xd9\x36\x36\x04\x1d\x5a\x83\xcb\x0e\x74\x28\x29\x5d\x3e\x98\x15\x28\x68\xdd\xe3\x1a\x42\x41\x49\xe9\xa7\x24\x0f\x65\x43\xc2\x9f\x0e\xf0\xe6\xc0\x56\xd6\x40\x9e\x03\x5b\x39\xb0\x95\x35\x10\xdf\xc0\x56\x0e\x6c\x65\xcf\x68\x85\xad\x1c\xd8\xca\x7a\x64\x14\xc0\x56\x92\xd2\xd3\xed\xb1\x95\x63\xcb\x16\xcf\x1a\xce\x79\x04\xb4\xbc\x45\x51\xf3\x1a\x74\x1a\x6c\x65\x0d\x77\x37\xb0\x95\xa4\xf4\x4c\x3c\xb0\x95\x03\x5b\x59\x73\x22\xfd\xc0\x56\x92\xd2\x55\xb9\xee\x86\xad\xcc\x57\xae\x81\xad\x24\xa5\x86\x94\x1b\xd8\xca\x01\x9a\xec\xe9\xf6\xa0\x49\x72\x5f\x26\xcd\x9b\x09\x15\x92\xf3\x04\xc7\x36\x65\x77\xca\xee\x9e\x52\x4d\xd9\x9d\xb2\x2b\x6b\x4f\x76\x55\x65\x8c\x2f\xb6\x92\xe4\x34\xa7\x81\xad\x1c\xa0\xc9\x1e\xef\x19\x34\x39\x40\x93\xf5\x48\x8f\x01\x4d\x0e\xd0\x64\xef\xbf\xbd\x61\x6d\x60\x2a\xc7\xae\xfd\x04\xb6\x1b\xbb\xf6\x83\xa9\xcc\x51\x85\x03\x53\x49\x4a\xef\xae\xda\x25\xa9\xad\x98\x61\x4c\x25\xa9\xaf\x38\xd7\xbb\x26\xb5\x9b\x3e\x07\xac\x1b\xbb\xe9\x73\xa4\xbe\xe2\x5c\xef\x1c\xd8\xdd\xf4\x39\xb0\xdd\xd8\x4d\x9f\x23\xf5\x15\xc7\x7f\x37\x7d\x46\x63\xd6\xe0\x71\x03\x8e\x39\x82\x63\xfa\x8a\x37\xe0\x98\x03\x8e\x59\x03\xb6\x0d\x38\x26\xf1\x15\x6f\xc0\x31\x07\x1c\xb3\x06\x6c\x1b\x70\x4c\x52\x5f\x31\x92\x70\xcc\x01\xc7\xac\xd9\x01\x33\xe0\x98\xa4\xbe\xe2\xf8\xc3\x31\x89\xef\x7f\x03\x8e\x49\x4a\x0d\x01\x36\xe0\x98\x23\x38\x66\x7d\x65\x2e\x00\xc7\x1c\xbb\xd1\xeb\x48\x8f\xdd\x8d\x5e\x91\x1a\xde\x60\xec\x46\xaf\xfd\xe9\x75\x99\x2c\xa2\x36\x47\x48\xcd\xfa\x8a\x03\xb7\xeb\x75\xfb\xd3\xeb\xd2\x77\x76\xbd\x2e\xe2\x0b\xe3\xd8\xf5\xba\xfd\x39\xd8\x3a\x7d\x07\xdc\x49\x7c\x61\x1c\xbb\x4e\xb1\x3f\xed\x33\xd3\x51\xbc\xe7\xc0\x7b\xd6\xe6\xcd\x18\x49\xf0\x9e\x35\x1b\x48\x06\xde\x73\xec\x1f\x99\x4b\x25\x99\x3e\xe3\x3d\x6b\x36\xb3\x0f\xbc\x27\xa9\xaf\xe7\x97\x32\xf7\x71\xce\x73\x2c\x07\xde\x73\x84\xf7\xac\xaf\xea\x97\xde\x8c\xe9\x73\xb6\xa4\x0f\xbc\x27\xa9\xaf\xea\x97\x2a\xce\xf4\x39\xdb\xcf\x07\xde\x93\xf8\xfc\x39\xf0\x9e\xa4\x06\xa7\x18\x78\x4f\x52\x6a\x76\x70\x0c\xbc\x27\xf1\x45\x74\xe0\x3d\xc9\x7d\x59\x5a\xb4\xe9\x73\xe0\xce\xfa\xca\xfc\x00\xdb\x39\x20\x98\x35\xfb\xca\x07\x04\x73\x04\xc1\xf4\xe1\x74\x40\x30\x07\x04\xb3\x06\x49\x1f\x10\x4c\x52\x73\x44\xe7\x80\x60\x8e\x63\x57\x47\xe9\xba\xe1\x31\x6f\x49\x1d\x6d\x25\x49\xa9\x23\x08\x66\xcd\x5e\xf0\x01\xc1\x24\x35\xa8\xc7\x80\x60\x92\x1a\xac\x63\x40\x30\xc9\xfd\xcb\xe4\xcd\xb8\x17\x04\xd3\xd7\xda\x01\xc1\x1c\x10\xcc\x9a\xdd\xdb\x03\x82\x39\x82\x5d\xd6\x57\x9c\xe2\xc3\x5c\x19\x82\x59\xb3\x19\x7a\x40\x30\x89\x4f\xae\x03\x82\x39\x20\x98\x35\x9b\xa1\x07\x04\x93\xd4\x1c\x3c\x3a\x20\x98\xe3\x78\x4e\x10\xcf\xc8\x0a\xc1\x24\xf5\xa5\x76\x19\xa9\x83\x91\xca\x7e\x90\x71\x30\x52\x07\xeb\x13\xf3\x8d\xca\x1c\x07\xeb\x93\xfd\x20\xe3\x60\x7d\x0e\xd6\x27\xde\xee\xc1\xfa\x80\x37\x6b\xf6\x0d\x0f\xf0\x26\xa9\x2f\xef\xca\xf4\x19\xbc\x59\x5b\x86\x6e\xf0\x26\xa9\xaf\x3d\xf9\x60\x7d\xc0\x9b\x35\xbb\x7b\x07\x78\x73\x80\x37\x6b\x8e\xe7\x1f\xe0\xcd\x11\x60\xb3\xbe\xbc\x66\x33\x6a\xf0\x66\xcd\x26\xc2\x01\xde\x24\x35\xa7\xa2\x0e\xf0\xe6\x38\x78\xa3\xd9\x44\x38\x0e\xde\x68\xa4\x06\x91\x19\xe0\xcd\x01\xb7\xac\xd9\xf5\x37\xe0\x96\xa4\xe6\x54\xd4\x01\xb7\x24\xf5\x15\x0b\x0d\xb7\x24\xa5\x66\x67\xdd\x80\x5b\x92\xfa\x8a\xf3\x0c\xb7\x24\xf7\x65\xc9\x9b\xe9\x73\xc4\x97\xf5\x01\xb7\x1c\x00\xc9\x9a\x9d\x75\x03\x20\x49\xea\x4b\x13\xe4\xc7\x02\x24\x6b\xb6\xaf\x0d\x80\x24\xa9\x2f\x4d\xd0\xf4\x19\xf9\x58\xb3\xbd\x6c\x20\x1f\xc7\x61\xfa\x9c\x0d\x21\xe3\x78\x3f\xd7\xb5\xfb\xa7\x19\x2a\x8e\xb7\xbc\xb1\x65\xa7\x97\xca\x96\x45\xea\x2b\x1e\x25\x40\x72\x00\x24\xeb\xa9\x92\xd8\x10\x80\x64\x3d\xb5\x4b\xd6\x21\x52\x5f\x19\x65\x00\x92\x03\x20\x59\xb3\x9d\x62\x00\x24\x47\x63\x09\xda\xdf\x30\x78\x37\x86\x02\x3f\x59\xb3\x61\x64\xe0\x27\x49\x0d\x8d\x34\xf0\x93\x03\x3f\x59\xb3\x3b\x64\xe0\x27\x49\xcd\x39\xb5\x03\x3f\x39\xf0\x93\x35\x7b\x37\x06\x7e\x92\xd4\x40\x4b\x03\x3f\x49\xac\x75\x0c\xfc\xe4\x00\x46\xd6\xec\xb6\x18\xc0\x48\x52\x5f\x71\x90\x81\x91\xa3\xb1\x00\x59\xe6\x1f\x8d\x05\x68\x2c\x40\xaa\xab\xb1\x00\xf8\xc9\x9a\xd5\xf8\x81\x9f\x1c\xf8\xc9\x9a\x45\xdf\x81\x9f\x1c\xcd\xb8\x1f\xa7\x19\x3f\x39\xf0\x93\x35\x2b\x90\x03\x3f\x49\xac\xa6\x0c\xfc\xe4\x68\x26\xb7\x59\x5a\x1c\xcd\xe4\xb6\x5d\xe9\xee\xf1\x86\x9b\xc9\x2d\x7e\xb2\x66\xcd\x70\xe0\x27\x49\x7d\xc5\x9e\xe0\x27\x49\x7d\xc5\x76\xe0\x27\xc9\xfd\xcb\x64\xd7\xb8\x1f\xb1\x36\x33\xf0\x93\xe4\xbe\xcc\xdd\x4e\x69\xe9\x17\x71\x55\xf1\x93\xa3\x71\x0f\xb2\xca\x37\x1a\xf7\xa0\xdd\x2e\xc1\xb3\x36\xd3\x4c\x64\x61\x96\x35\xcb\x77\x03\x66\x49\xea\x2b\x96\x08\x66\x39\x1a\xa3\x90\xe5\xbb\xd1\x18\x85\xc6\x28\x78\xf3\x8c\x02\x1a\xb3\xe6\xac\xfb\x81\xc6\x1c\x68\xcc\x9a\x55\xa2\x81\xc6\x24\x35\x41\x3c\x07\x1a\x73\xa0\x31\xab\xd5\x1c\x34\x26\xa9\xaf\xd8\x3a\x34\xe6\x40\x63\x56\x6b\x32\x68\xcc\x01\xb3\xac\x96\x08\x60\x96\xa3\xf1\x22\xe2\xfb\x36\x5e\x04\xcc\xb2\xfa\x84\x0d\xb3\x24\xcf\x72\x11\x8e\x72\xe0\x28\x6b\xf8\xe2\x81\xa3\x24\xcf\x72\x11\x8e\x72\xe0\x28\x6b\xf8\xe2\x81\xa3\x1c\x68\xc8\xea\x6b\x2f\x1a\x92\xd4\x97\x56\xfe\xf5\x6a\xf4\x63\xdf\x62\xd1\x90\xa4\x26\xc8\xe8\x40\x43\x0e\x34\x64\xed\xe5\x4a\xda\x21\x4d\x7e\xf7\x24\x35\x49\xc9\xaf\x4f\xa0\x68\x48\x52\x73\xcc\xf2\x40\x43\x0e\x34\x64\xf5\x21\x13\x0d\x49\x9e\xb5\x2c\x34\xe4\x38\x0d\xdf\x39\x4d\x7e\x9c\x86\xef\xc8\xb3\x96\x75\x9a\xb6\x82\x26\xab\x6f\x70\xa0\x49\xf2\xac\x65\x81\x26\x07\x68\xb2\xfa\x06\x07\x9a\x1c\xa7\x51\x3e\x83\x15\x68\x72\x80\x26\xab\x0f\x58\xa0\x49\xf2\x2c\x5c\x81\x26\xc7\x69\x94\xf7\x65\xea\x34\xca\x47\x6a\x79\x49\x52\x52\xb3\x13\x5f\xa6\xd0\x90\xe4\x59\xdf\x42\x43\x92\x9a\xd3\xa1\x07\x1a\x92\x94\xea\x5b\x12\x1a\x92\xd4\xf2\x72\x33\xf9\x60\x57\x7c\x4b\x82\x39\x0e\x4c\x63\xf5\xed\x04\xd3\x38\x30\x8d\xd5\x7c\x14\xd3\x38\xc2\x34\x3e\x2b\x68\x98\xc6\x81\x69\xac\x3d\xdf\x75\x30\x8d\xa4\x06\x73\x1c\x98\xc6\x71\xea\x82\x3d\x8d\xf0\xd4\x05\x23\x35\x91\x5c\x07\xa6\x91\xdc\x97\xa5\x5c\x26\xbc\x91\x1a\x1a\x72\x9c\x26\xbc\xd0\xc7\xda\x35\x11\xc3\x77\xa4\x96\x0c\xfc\xd0\x47\x52\x8b\x96\x6a\xf8\x86\x3e\x6e\xe6\x6b\xd0\x47\xf2\xac\xee\x9d\xba\x78\xe4\xbe\xcc\xdd\xb4\x90\x99\xec\xc6\x65\x38\x4d\x78\x11\x92\x9b\xf9\x1a\x42\x92\xe4\xc0\xe1\x81\x90\x1c\x21\x24\x6b\x4e\xd0\x1e\x08\xc9\x81\x90\xdc\xcc\xb9\x10\x92\xe4\x59\x16\x44\x48\x0e\x84\xe4\x66\x82\x85\x90\x24\x35\x50\xe6\x40\x48\x92\xb2\xbd\x52\xf6\x84\x05\x7e\xa4\x26\x7a\xeb\x10\x1d\x78\x00\x29\x37\x13\x2c\x20\x25\xa9\x89\xd5\x3a\x80\x94\xa4\x96\xb8\x24\x40\x4a\x72\xff\x32\x45\xd0\xb4\x02\x52\xd6\xf2\x37\x1c\x8c\x3a\x70\x96\x03\x67\xb9\x85\x14\x1f\x38\x4b\x52\x83\x80\x0e\x9c\xe5\x08\x67\x59\x13\xa6\x75\xe0\x2c\x07\xce\x72\x33\x75\xc1\x59\x92\x1a\x2a\x74\xe0\x2c\x07\xce\x72\x33\x4f\xc1\x59\x92\x5a\x62\x11\x70\x96\x03\x67\xb9\x99\x80\xe0\x2c\x49\x2d\x19\xf7\x70\x96\xe4\x59\x6b\xc5\x59\x92\xb2\x99\x0b\xe0\x2c\x47\x38\xcb\x9a\xb0\xaf\x03\x67\x39\x70\x96\x5b\x76\x6e\x0c\x9c\xe5\xb8\x74\x9d\x0c\x8f\x42\x0d\x8f\x6b\xca\x47\x2c\xc2\xa5\x15\x5f\x5a\x71\xc6\x3d\x34\xe6\xb8\x9e\x46\x16\xf7\x12\x8d\x39\xd0\x98\x1b\x2f\x05\x8d\x39\xd0\x98\x9b\x91\x0f\x8d\x39\x42\x63\xd6\x84\x83\x1d\x68\xcc\x81\xc6\xdc\x98\x57\x34\x26\xa9\x45\x46\x0c\x24\x89\xc5\x7b\x5f\x96\x27\x98\x8e\x86\xc6\x7c\x96\x90\xd1\x98\x03\x66\xb9\x31\x88\x30\x4b\x52\x43\xbb\x0e\x98\xe5\xc0\x54\x6e\x2c\x07\xa6\x72\x84\xa9\xac\x65\x97\xe4\x01\x19\x5b\x36\x96\x03\x40\x49\x6a\xc2\xc4\x0e\x31\x74\x07\xbc\x71\xd3\x15\xf1\x8d\xa3\xc7\xa6\x6f\xda\x43\x67\xd3\x23\xb5\x1c\x92\x2e\x49\x9e\x90\xd7\x85\x56\x1c\x5d\xff\xcc\x6c\xb1\xeb\x9f\x5d\x57\x51\x71\x22\xd1\x92\x9a\x88\xb1\x03\xc0\x48\x6a\x4e\xae\x1f\x42\xcd\x92\xb2\xfd\x35\xed\x90\x26\x1f\x47\x92\xe4\xc3\x09\xdb\x4f\x9a\x86\x8f\x69\xdc\x12\xaf\x75\x60\x1a\x07\xa6\x71\x4b\x38\xd0\x81\x69\x1c\x5d\x53\x3a\x24\xb9\x6c\x78\x6a\xac\x30\xa6\x91\x3c\x8b\xfb\x98\xc6\x81\x69\xdc\x4a\xac\x30\xa6\x91\xd4\xe7\xa1\xac\x70\xd7\x30\x13\x82\x72\x74\x0d\xb3\x6b\x98\xf1\xe8\x61\x8e\xa4\xe6\x84\xfb\x21\xce\xea\x40\x3e\x6e\x16\x91\x91\x8f\xa4\xe6\x84\xfb\x81\x7c\x1c\xc8\xc7\xad\x66\xf8\x42\x3e\x0e\xfc\xe2\x96\x43\xde\x07\x7e\x71\xe0\x17\x37\xab\xb2\xf8\xc5\x01\x56\xdc\x6a\x3c\x48\xb0\xe2\x00\x2b\x6e\xd6\x56\xc1\x8a\xa4\xe6\xc4\xfc\x01\x56\x1c\xe3\xaf\xd1\x47\xee\x26\x87\x42\x1c\x28\xc4\xad\xc6\xad\x44\x21\x92\x5a\x5c\xc6\x91\x07\x26\x6e\x09\x67\x34\x80\x89\x63\x08\xe2\x13\x42\x74\x0c\xdf\xf9\x86\x57\x9d\x7e\x39\xbc\x6a\xfc\xe2\x66\xc5\x11\xbf\x38\x06\x1b\x17\x3f\x10\xbf\x38\xf0\x8b\xdb\x16\xfb\x8f\x5f\x24\x35\x47\xf7\x0f\xfc\xe2\xc0\x2f\x6e\x5b\x0c\x3b\x7e\x91\x3c\xfb\x33\xf0\x8b\x63\xb0\x71\x16\x28\x07\x1b\x37\xd8\xb8\x7c\x99\xc3\x2f\x8e\xc1\xa0\x6d\x31\x8f\x22\x52\x92\x67\x1b\x87\x88\x94\xe4\xbe\x4c\x9a\x92\xb2\x7b\xa7\x07\x28\xa9\xc6\x9a\x33\xa2\x07\xcc\x71\xc0\x1c\x37\xcb\x8c\x30\xc7\x01\x73\xdc\x12\x05\x62\xc0\x1c\x07\xa6\x71\xdb\x54\x89\xd7\x8f\x69\xdc\x72\x1e\xfe\xc0\x34\x0e\x78\xe1\x96\x13\xe6\x07\xbe\x70\xa0\x04\xb7\x9c\x46\x3e\x50\x82\xa4\x26\x24\xef\x10\x11\x71\x00\x07\xb7\x3d\x75\x02\x1c\x1c\x93\xd9\xc8\xa1\xd0\x63\x32\x1b\x93\xd9\xc8\x10\x3e\x99\x0d\x7c\xe1\x96\x23\x9b\x07\xbe\x90\x3c\x1b\x54\xa6\x56\x82\x2f\xdc\x72\x06\xf2\xc0\x17\x92\xaa\x03\xe3\x0b\xc7\x34\xac\xe7\xc0\xe3\x31\x0d\xeb\xd3\xb0\x9e\x29\x15\xbe\x70\xe0\x0b\xb7\x1c\x47\x3c\xf0\x85\xa4\x26\xa2\xef\xc0\x17\x92\x9a\x88\xbe\x03\x5f\x38\x80\x83\x5b\xce\xe8\x1d\xc0\xc1\x81\xe1\xdb\xac\xd5\x80\xf8\x06\x62\x6f\xdb\xfb\x6f\x1f\xb3\x36\x00\x7d\x63\x32\x3e\xe9\x2e\x82\x16\x0e\x40\xdf\x96\x13\x36\x07\xa0\x8f\x3c\xbb\x66\x00\x7d\x03\xd0\xb7\x1d\x71\x63\x01\x7d\xa4\x26\xea\xef\x00\xf4\x0d\x40\xdf\x96\x33\x31\x07\xa0\x8f\xd4\x84\xfd\x1d\x80\x3e\x52\x13\xc1\x62\x00\xfa\x48\xd9\x0e\xcd\x80\x6f\x37\xf9\x76\x99\x49\x01\xfa\xc8\x7d\x59\xf2\xc6\x46\x4d\x36\x2a\xe6\x13\xd0\x37\x00\x7d\x5b\xce\x98\x1c\x80\x3e\x62\x61\x16\xd0\x37\x96\xb1\x23\x53\x30\x40\x1f\x29\x9b\x95\x22\x21\x08\xc7\xd2\x08\x32\x8f\x02\xf4\x8d\x25\x76\x49\x8e\x7b\x1c\xcb\x62\xc6\xe2\xb4\xc5\xee\x0a\x25\x38\x00\x7d\x5b\xce\xd7\x1d\x88\x3d\x52\x13\x96\x63\x20\xf6\x48\x4d\x24\xde\x81\xd8\x23\xf7\x2f\xa5\x1d\xd2\xee\x72\xda\x0a\x24\x98\xe0\x48\x30\xc1\xb2\xe5\x54\xc8\x21\x9a\x20\xa9\x89\xd4\x31\x40\x7c\x03\xc4\xb7\x1d\x31\x01\x28\xbe\x11\x8a\xaf\xb2\xe2\x28\xbe\x81\xe2\xdb\x02\xe7\x0e\x14\x1f\xa9\x89\xa0\x3b\x50\x7c\x03\xc5\xb7\x59\xb1\x42\xf1\x91\x67\x63\x11\x8a\x6f\xa0\xf8\xb6\x1c\x01\x39\x50\x7c\xa4\xd6\xb8\x08\x28\x3e\xf2\xec\x35\x42\xf1\x91\xfb\x97\xb9\x1b\xc3\x16\x8a\xaf\x1a\x60\x50\x7c\x03\xc5\xb7\x1d\xf9\x48\x89\xe2\x1b\xa1\xf8\x6a\x22\xf2\x0e\x14\xdf\x58\x4f\x0b\xcf\xa0\x8e\xe2\x23\xb5\x6a\x1e\x5a\xf8\x7a\x5a\x78\x3a\xac\xd8\x83\xa4\x26\x26\xef\x10\x7b\x70\xac\xa7\x85\xe7\xd3\xdd\xd2\xc2\x23\xb5\xc6\xc1\xc6\xff\x91\x9a\x53\x33\xc6\xd2\xc2\xd7\xd3\xc2\x33\x32\x41\x02\x49\x4d\xb4\x91\x01\x09\x24\xf7\x65\xee\x76\x4a\x4b\xe1\x33\x6d\x80\x04\x8e\xf5\xb4\xf0\x98\x5c\x48\x20\xa9\x55\xdb\xf5\xd1\x62\x2d\x0f\x8d\xa5\x5f\x3e\x3e\x46\x9e\xbd\x57\xcb\xc7\xc7\xb5\x14\x3e\xf6\x70\x2d\x85\x5f\x29\x7c\xdc\xf6\xb5\x14\xfe\xad\xf0\xb1\x60\x01\x10\x1f\xa9\x55\x13\x67\xfa\xd7\x13\x57\x29\xfd\x7b\xf9\x46\x19\xa9\x35\xde\xfd\xb2\xeb\x07\xad\xb8\xe5\xfc\xb7\x81\x56\x1c\xc1\x10\x6b\xa2\xa3\x0c\x18\xe2\x58\x9c\xd9\x1c\x8a\x36\x16\x67\x36\x18\x62\x4d\x54\x92\x01\x43\x24\xf7\x65\xa9\x4b\x6b\x2b\xeb\xb3\x72\x59\x8a\x90\xa3\x45\x06\x5a\x71\x6b\x7a\x11\x9f\x37\x52\xab\x66\x6f\x54\x8a\xd4\x1c\xdf\x31\xd0\x8a\xe4\xfe\x65\x4a\xca\x0d\x0e\xad\x58\xab\x9e\xc0\x0d\x5e\x5f\x91\x7d\x5e\xee\xa6\xff\x7d\x93\x0f\x3d\xe1\xfb\xe4\xe3\xed\xb2\x3b\xbb\x08\xc6\x11\x82\xb1\x26\x14\xca\x40\x30\x0e\x04\xe3\x96\xd3\xc3\x06\x82\x91\x3c\x3b\xdb\x10\x8c\x03\xc1\xb8\x05\xa4\x1e\x08\x46\x52\x13\xda\x76\x20\x18\x07\x82\x71\xcb\xa9\x5c\x03\xc1\x48\x6a\x02\xd9\x0e\x04\x23\xa9\x39\x5a\x64\x20\x18\x49\xd9\x72\x7c\xd5\x40\x30\x8e\xa0\x89\x35\x67\x87\x0c\x68\xe2\x80\x26\x6e\x39\xbe\x6a\x40\x13\x47\xd0\xc4\x9a\x58\x2b\x03\x9a\x38\xa0\x89\x5b\x78\xe8\x01\x4d\x24\x35\x51\x6a\x07\x34\x71\x40\x13\xb7\x1c\x1b\x35\xa0\x89\xa4\xe6\x24\x92\x01\x4d\x1c\xd0\xc4\xcd\xaa\x1a\x34\x91\x3c\xdb\xfa\xa0\x89\xe4\xd9\xc2\x07\x4d\x24\x65\xb3\x0e\x06\x4d\x1c\x6f\x56\x36\x66\x00\x9a\x38\xa0\x89\x9b\x75\x30\x68\x22\x79\xb6\xf0\x41\x13\x07\x34\x71\x0b\xb6\x3c\xa0\x89\xa4\x26\x34\xcc\x80\x26\x8e\x37\xf3\xd9\xfe\x86\x78\x62\xe3\xcd\xba\xbe\x59\xd7\xb8\xf9\x6f\xd6\x15\xe0\xb8\x35\x25\x64\x4a\xdf\x3c\xbd\xf0\xca\xe3\xcd\xd3\x7b\xb3\x9b\x4f\x92\xe2\xb0\x9b\x39\xbe\x78\xa0\x19\x47\x08\xc6\x9a\x08\xb7\xe3\x6d\xd1\x06\xcd\xb8\xe5\x78\x9d\x81\x66\x24\xcf\x86\x41\x34\xe3\x40\x33\x6e\x39\x5e\x67\xa0\x19\x49\xad\x31\x61\x68\x46\x72\x5f\xe6\xa7\x53\x5a\x46\xaa\x98\xb0\xb7\x8f\x43\xa0\xc7\x2d\x47\xee\x0c\xd0\x23\xa9\x39\x68\x66\x80\x1e\x49\x4d\xd8\x9c\x01\x7a\x24\x65\xb3\xd8\x05\x7a\x24\x35\xc1\x70\x07\xe8\x91\xdc\x97\x25\xbb\xcc\xeb\x9b\x79\x55\x50\xe6\x35\xb1\x25\xef\xcb\x52\xbd\x76\x43\x44\x6a\x55\xd0\xf9\x64\x57\x55\xc6\xd2\x61\x23\x47\x78\xc8\x9a\x10\xb9\x43\xf0\xc9\x81\x8d\xdc\x12\x4a\x7b\x60\x23\x49\xad\xea\x83\x15\x7e\xb3\xc2\x39\xa2\x66\x08\x52\x49\x6a\x55\x1f\xac\x30\x84\x72\xcb\x01\x32\x03\x42\x39\x20\x94\x5b\xc8\xef\x01\xa1\x24\x35\xf1\x75\x07\x84\x72\x40\x28\xb7\x9c\x2a\x32\x20\x94\xa4\xe6\x30\x9e\xf1\xb6\x52\xf4\xf6\x99\xe1\x64\x4e\x7c\x66\x78\xb3\xcc\x31\xfd\x6f\x96\xf9\x9d\xef\xd5\xdb\xc9\x9c\xf8\x5e\xfd\x66\x99\xe3\xd0\xbe\x59\xe6\x37\x93\x1b\x40\x7c\xbc\x99\xdc\x37\x93\xeb\x65\x31\xb9\x6f\xf6\x35\x34\xf8\x78\xb3\xaf\xc1\x36\x6b\xf5\xb2\x7c\xd5\x86\x6d\x6e\x39\x47\x62\xc0\x36\x49\x4d\xe0\xdd\x01\xdb\x1c\xb0\xcd\x2d\xc7\x30\x0c\xd8\x26\xa9\x89\xbc\x3b\x60\x9b\x03\xb6\xb9\xe5\xb4\x84\x81\xcb\x24\xcf\x9e\x55\x5c\xe6\xc0\x65\x6e\x67\x2c\x38\x2e\x93\xd4\xc4\xdb\x1d\xb8\x4c\x52\x6b\x5e\x33\x2e\x93\xdc\xbf\xcc\xdd\x18\xce\xc8\xb3\xdb\x15\x97\x39\x00\x97\x5b\xce\x37\x18\x80\xcb\xf1\x61\x38\xd3\x1a\x3e\x0c\x27\xe0\x72\x0b\x85\x3d\x00\x97\xa4\x9a\xdc\x02\x2e\x07\xe0\x72\x0b\xf4\x3f\x00\x97\xa4\x26\x58\xef\x00\x5c\x8e\x0f\xc3\x19\x9a\x7f\x7c\x18\xce\x0f\xc3\x99\x0f\x4c\x18\x4c\xf2\x6c\xc4\xc5\x60\x92\xfb\x97\x79\x00\xc3\x19\xa9\x89\xcd\x3b\x30\x98\xe4\xbe\x2c\x15\x62\x92\xfd\x61\x5f\xbb\x5f\x5e\x92\x14\x3e\xdd\x19\x83\x39\x3e\xdc\xd3\x8c\xe6\x18\xcc\x81\xc1\xdc\x02\xb9\x0f\x0c\x26\xa9\x5b\x66\x2f\x18\xcc\xf1\xb9\x44\x8d\x4b\xbb\xff\x58\x2d\x0b\x83\x59\x13\xdd\x6a\x60\x30\x07\x06\x73\xb3\x18\x89\xc1\x24\x35\x41\x75\x07\x06\x93\xd4\x2d\xa3\x39\x06\x93\xdc\xbf\x4c\x49\xb9\xa7\x91\x9a\x40\xbb\x03\x83\x49\xee\xcb\x92\x0f\xd6\x38\x52\x73\x7a\xd5\xc0\x60\x8e\x27\xc6\xe7\xa9\xd1\x80\x51\x22\x35\x41\xb0\xc6\xa7\x3f\xd9\x8d\x41\x3a\x35\x1a\x8b\x6a\x9f\x2c\xaa\xf9\x84\xf1\xb1\xa8\x86\xe8\xdc\x4e\x8d\x86\x6d\x8f\xd4\x44\xd6\x1d\x88\xce\xf1\x79\x42\xf7\x65\x4e\x83\xe8\x1c\x88\xce\xed\xf2\x54\xd6\x32\x52\x73\x3e\xd6\x40\x74\x0e\x44\xe7\x76\xb9\x1d\x93\x17\x8a\xf3\xd9\x96\x2d\xee\xe7\x10\xf7\x73\x0b\xcf\x3a\xc4\xfd\x24\x35\xb1\xb5\x86\xb8\x9f\x43\xdc\xcf\x2d\xf0\xea\x10\xf7\x93\xd4\x2d\x5e\xb7\xb8\x9f\x43\xdc\xcf\x2d\x68\xe9\x10\xf7\x93\xd4\x84\xef\x1d\x90\xd1\xf1\x04\xf4\xb4\x50\x2a\xa2\x27\xa9\x9b\x7c\xb0\x82\xc8\xd2\xed\x62\x1b\x58\xc1\x90\xa5\xd5\x07\x1c\x64\xe9\x40\x96\x6e\x97\x4e\xcf\x0a\x46\xea\x56\xff\x86\xb1\x1b\x78\x3a\x80\xa7\x9b\x65\x4e\xe0\x29\xa9\x89\xf0\x3b\x80\xa7\x03\x78\xba\x85\x35\x1c\xc0\x53\x52\x37\x85\x66\x24\x23\xcf\xd6\x75\x41\x3e\x49\xd9\x72\x64\xf2\xc0\xa2\x92\x9a\x20\x63\x03\x8b\x4a\xee\xcb\xdc\x4d\xdd\xc4\x7d\x4d\x90\xb1\x81\x45\x1d\x58\xd4\x2d\x84\xdf\xc0\xa2\x8e\xb0\xa8\xcf\x46\x78\x2c\xea\x00\x99\x6e\x39\x93\x79\x80\x4c\x49\x4d\xf8\xde\x01\x32\x1d\x20\xd3\x2d\xf0\xfc\x00\x99\x92\x67\xbf\x3c\xc8\x74\x20\x4a\x37\x48\x19\xa2\x94\x54\x1f\xb7\x10\xa5\xe4\xbe\xec\x48\xda\x29\x2d\x45\xc8\xb7\x7f\x44\xe9\x40\x94\x6e\x30\x33\x44\xe9\x08\x51\x5a\x7d\x03\x43\x94\x0e\x44\xe9\x76\x65\x0c\x42\x94\x92\xba\x65\x26\x80\x28\x1d\x88\xd2\xcd\x12\x2f\xa2\x74\x84\x22\xad\x89\xf2\x3b\xc4\x1f\x1d\x88\xd2\x0d\xca\x85\x28\x25\xcf\x96\x7f\x44\x29\x79\xb6\xf7\x23\x4a\x49\xd9\x90\x51\x88\x52\xf2\x6c\xef\x47\x94\x92\xfb\xb2\xe4\x83\x2d\x8d\xd4\x44\xf4\x1d\x82\x8d\x0e\xa8\xe8\x66\xa9\x19\x2a\x3a\xbe\x4f\x24\xc6\x58\x49\xa8\xe8\x80\x8a\x6e\x96\x78\xa1\xa2\x23\xa8\x68\x4d\x94\xdf\x01\x15\x1d\x50\xd1\x0d\xad\x01\x15\x25\x35\xb1\xde\x06\x54\x74\x7c\x45\x10\xb7\x76\xfb\xb5\x25\x36\xa8\x68\xcd\xf1\x75\x03\x2a\x3a\xbe\xe3\xeb\xb2\x14\xf5\x76\xf5\x6e\x49\x25\x65\x7c\x84\x8a\x92\x07\x47\x80\x8a\x92\xfb\x97\xd2\xe4\x23\xde\x5d\xc2\xf7\x0e\xa8\x28\x29\x9b\xe5\x5c\xa8\x28\xa9\x89\x12\x37\xa0\xa2\xe3\x3b\x45\xd2\x54\x71\x5c\xb9\xc8\x03\x37\x04\x25\x7d\xe4\xbe\xec\xf8\xe9\xf7\x13\x51\x3a\x1f\xa2\xb4\xdf\x29\x4d\x8a\xa6\x75\xf7\xab\x89\x28\x9d\x4f\xfc\xd1\xa0\x07\x53\x00\xd2\xf9\xd2\xb4\x8e\xdc\x2b\x4d\x6b\xbe\x34\xad\x7e\x97\x7d\xbe\xd2\xb4\x48\xcd\xd7\xd5\xf9\xca\x30\x3d\x21\xa3\x5b\x08\x85\x09\x19\x25\x75\xbb\x07\xf8\x09\x19\x25\x35\x61\x77\x27\x64\x74\xc2\x43\xb7\xee\x6e\xa7\x87\x6a\x33\xcd\xcd\x2e\x49\xcb\x65\x7e\xfa\x96\xf6\xce\x65\xf5\x4e\xba\x3c\x33\x43\x72\x62\xe7\x4e\x90\xe7\x04\x79\x6e\xd9\x2e\x3f\x41\x9e\xa4\xe6\x98\xd9\x09\xf2\x9c\x20\xcf\x2d\x7b\xde\x27\xc8\x93\xd4\xed\x49\x52\x50\x43\x72\x76\xa9\x4f\x90\x27\xa9\x89\xa7\x3b\x41\x9e\xa4\xe6\x63\xf3\x04\x79\xce\x97\x78\xda\xfd\xcc\xdd\xba\x87\x1a\x6b\x9f\x9b\x29\xe8\xd3\xe8\xcf\xfc\x74\x78\x80\xa1\x30\x07\x03\x4c\xa8\xe6\x84\x6a\xee\x59\x41\x9e\x50\x4d\x52\x13\x3b\x77\x42\x35\x27\x54\x73\xcf\x1e\xdd\x09\xd5\x9c\x50\xcd\x3d\xcb\xb9\x13\xaa\x39\xa1\x9a\x7b\xd6\x2c\x27\x54\x73\xbe\x8c\x37\x67\xea\xf7\xe3\xb2\x8c\x37\x7b\x28\xef\x09\xd5\x24\x35\x04\xf3\x84\x6a\x4e\xa8\xe6\x9e\xed\x85\x13\xaa\x49\x6a\xb6\x60\x4f\xa8\x26\xb9\x2f\xf3\xd3\x29\x6d\xe6\xb2\xd4\x52\xf6\x9a\x4e\xa8\xe6\xfe\xd2\xc6\xbf\xf2\x66\xdc\x39\x53\xe7\x5f\x79\x33\xee\xa8\xb8\xaf\x3a\xff\x3e\x71\x55\xd3\x92\xbe\xf2\x66\x40\xd1\x3d\xbe\x2a\x49\xf4\xce\x6c\xf4\x9b\x80\x4b\x52\x13\x51\x77\x06\xbe\xbc\x45\xe1\xd3\xa2\x01\x97\x04\xfd\x32\x01\x97\x13\x70\xb9\x67\x5f\xdb\x04\x5c\x12\xa8\xcb\x04\x5c\xce\x27\x16\xe7\x2b\xed\x12\x5d\x39\x31\x92\xfb\xeb\xfc\xed\xd3\xd5\x26\x84\x72\x3e\xc1\x2f\x5f\x6e\xad\x9b\x61\x12\xf7\x10\xd1\x13\x93\x38\x45\xa2\xdc\xb3\x7f\x61\x8a\x44\x49\xea\x96\x66\x25\x12\xe5\xc4\x29\xee\xe5\x76\x80\x26\x4e\x71\xe2\x14\xf7\x2c\xa2\x4f\x9c\xe2\x2c\xec\xf0\x95\xcb\x86\xcb\x86\x27\x6c\xa9\x9e\xe1\x09\xec\xf0\xe5\x97\x9e\x30\x44\x54\xdd\x93\xb9\xd8\xe1\x59\xd8\xe1\xcb\x2f\x55\x4f\x26\xe3\x7b\xd6\x8c\x27\x4e\x91\xd4\x44\x7b\x9c\x38\xc5\x89\x53\xdc\xb3\x66\x3c\x71\x8a\xa4\x6e\x3d\x25\xd5\x5b\x0a\x73\xdd\x73\xb3\x98\xeb\x09\x40\xdc\x73\x1a\xf2\x04\x20\x92\x9a\xb8\xc4\x13\x80\x38\x9f\x70\x92\x59\xbd\x9d\x00\xc4\x59\xf8\x92\x3d\xf5\xb6\x3c\x60\x29\x7c\xcc\x18\x00\x91\xd4\xac\x24\x4d\x00\xe2\x04\x20\xee\x89\xf7\x3d\x01\x88\x13\x80\xb8\x67\x79\x6d\x02\x10\x09\x4a\x69\x0a\x14\x39\x01\x88\x7b\x16\xc4\x26\x00\x91\xa0\x94\x66\xf9\x68\xa4\x4f\xa8\x5b\x0d\x57\xcf\x28\xba\x41\x71\x3b\xdd\x20\x52\x13\xe7\x78\x96\xaf\x27\x3c\x41\x6c\xd3\x6c\xa0\x8b\xa4\xee\x4f\x52\x95\xb4\xbb\xec\x4c\xda\x21\xed\xc8\x65\x25\x49\x4d\xd2\x25\x24\xae\x9f\x76\x69\x3d\x97\xd5\x24\xe5\x3d\x0b\x31\xb9\xe7\x73\xf8\x14\x62\x92\xd4\x44\x4d\x9e\x70\x45\x52\xf7\x7b\xda\x33\xe1\x8a\x13\x60\xb8\xe7\x93\xf3\x04\x18\x92\x9a\x40\xca\x13\x60\x38\x21\x81\x7b\xdd\x72\x99\x0e\x02\xec\xdb\xf3\xf9\x70\x02\xfb\x66\x82\x31\x42\xb9\xa6\x60\x8c\x13\xd8\xb7\xd7\xbc\x54\x60\x1f\xa9\x89\xea\x39\x81\x7d\x33\x2c\xdf\x7d\x59\x4f\x9a\x92\x5e\x4a\x2a\x49\x49\xbb\x92\x66\xbc\x02\xf6\x91\xba\xab\x23\xbd\x2d\x52\x13\x0f\x74\x02\xfb\x26\x62\x6f\xcf\xe7\xa5\x89\xd8\x23\x75\x2f\x6e\x76\x49\x52\xaa\x18\x6c\xdc\x1d\xa9\xbb\xda\x1d\x2a\x44\xa0\xd6\x7c\x74\x99\x48\xb9\x09\x81\xdb\x33\xf5\x9e\x18\x38\x52\x13\x5b\x79\x8a\xb2\x38\x61\x71\x7b\x26\xd0\x13\x16\x47\xea\x1e\x83\x01\x8b\x9b\xb0\xb8\x7d\xf3\xb6\xb4\x72\x58\xdc\xbe\x79\x5b\x9a\x6f\xa4\x26\x2c\xf3\x84\xc5\x4d\x58\xdc\x1e\x9f\x7a\xc2\xe2\x48\x4d\xa8\xe6\x09\x8b\x9b\x4f\x2c\xc4\xac\x04\x4f\xbc\xdb\xc4\xbb\xed\x21\x49\x27\xde\x6d\x3e\xb1\x0a\xf9\x2a\xd8\xb3\x29\x32\xe1\x6e\xc0\x12\x99\x90\xd4\x04\x5c\x9d\x22\x13\x4e\xec\xd9\x6e\x3c\xc1\x9e\xcd\xf0\x66\x75\xbf\x67\x60\x53\x64\xc2\x89\x3d\xdb\x19\x51\xec\x19\xa9\x89\x06\x3d\xb1\x67\x13\x7b\xb6\x87\x62\x9c\xd8\x33\x02\x14\x9c\xd8\x33\x72\x5f\xe6\x09\x53\xda\xcc\x65\x5b\x92\x96\xa4\xaf\x80\xc4\x77\x65\x86\x57\xbb\x25\x95\x59\x93\x0f\xcd\x3c\x52\x73\xb0\xf1\x14\xc0\x70\xc2\xd1\x76\xb6\x0b\x8e\x46\x6a\x42\x40\x4f\xb1\x04\xa7\x58\x82\xbb\xfe\x26\x96\x20\xa9\x09\x01\x3d\xc5\x12\x9c\x62\x09\xee\x09\x35\x3e\xc5\x12\x24\x75\xaf\x29\x81\x96\xbf\x69\xf9\x9a\xf9\xa6\xe5\x6f\x5a\xfe\x26\x49\x76\xb5\x5f\x2f\x1a\x02\x37\x83\xc0\xd5\x04\x94\x9e\x10\xb8\x09\x81\xdb\x9f\x8c\x18\x67\x22\x60\xca\x09\x81\x9b\xc2\x0b\xee\xcf\x13\x86\xbc\x65\x9c\x49\x40\xe9\x09\x81\x9b\xd8\xb6\xfd\xf9\xa9\x01\x24\x52\x13\x6a\x77\x62\xdb\x08\x0c\x73\x62\xdb\x48\xd9\xb3\xb4\x3f\xb1\x6d\xa4\xee\xdb\xf9\xdb\xe3\xb7\xb0\x82\xe4\xbe\x4b\x4a\xa8\x9b\x45\xea\x9e\x81\x14\x21\x37\x31\x6d\x7b\xce\x8b\x9e\x98\x36\xb2\x5d\xf7\xe3\x31\x6d\x73\xd7\x3e\xe3\x9d\xed\xda\xa7\x78\x81\x7b\x4e\x90\x9e\xe2\x05\xce\x70\x6e\xd5\x23\x61\x6e\xa4\xec\xd9\x59\x30\x77\xed\x73\xd7\xf0\xe2\x9d\xed\x1a\x9e\x78\x81\x7b\xa2\x2b\x4f\xf1\x02\xe7\xae\xe1\x65\x86\x80\x6d\x23\x35\xd1\x85\x27\xb6\x8d\xdc\xbf\x3c\x92\x26\x1f\xf1\xf3\x9f\x67\xf2\xf3\x41\x6b\x7b\xf6\x24\x4c\xd0\xda\x0c\xa8\x56\xb3\x9b\x61\x0a\x21\x48\xee\xcb\xf2\x04\xcd\x18\xb4\xf6\x3c\x80\x01\xdf\x9f\x66\x9c\x99\x04\x68\x8d\xd4\x04\x4d\x9e\xa0\xb5\xb9\x3f\xcd\x38\x96\x19\xb4\x46\x50\xb1\x13\xb4\x36\xf7\xa7\x19\x67\xda\x00\x5a\x23\xf5\xc9\x87\x66\x0c\x5a\x7b\x9e\xc9\x80\x83\xd6\xf6\x84\xf0\x9d\xa0\xb5\x09\x5a\x0b\x4f\x3b\x41\x6b\x73\x7f\x3a\xc0\x99\x92\xea\x00\x68\xb4\xf0\xb4\x13\x8d\x36\xf7\xa7\x03\xc4\x85\x45\xa3\x91\x9a\x30\xc7\x13\x8d\x36\xf7\xa7\x03\xc4\x13\xd8\x75\x80\x5d\x07\xc8\x54\x65\xd7\x01\xf6\x27\xbc\xf7\xe5\x09\x5e\xf3\x48\x8d\x67\xfa\xb2\x0f\x35\xfe\xf4\x93\x18\xb0\x5d\x3f\xd9\xf5\x93\x0c\x4b\x70\x37\x52\x13\xd2\x78\xc2\xdd\x48\xd9\x13\x30\x76\xee\xfa\xc9\xae\x9f\xc4\xe5\xd9\x75\x84\xfd\xe9\x08\x5d\xda\x29\x2d\x75\xa4\xda\x74\x84\x7d\x6a\x20\x5d\x9a\x06\x92\x55\x8f\xa7\xda\xa6\x12\x24\xe4\xe6\x9e\xe8\xb0\x33\xc0\xdd\x23\x75\x8f\xdd\x87\xdd\x91\x9a\xf3\xd0\xe7\x6e\xf0\xda\xd7\x93\xdd\x14\x94\x27\x17\xa9\x09\x90\x3c\x77\x9e\xdc\xbe\xd4\x6e\x1c\xa8\x7d\xa9\xdd\x7c\x15\x4c\x80\xe4\xb9\x2f\xb5\x6b\x28\xcc\xb1\xe9\x13\xd7\x47\x6a\x02\x24\xcf\xfd\xad\x8e\x8c\x8e\x89\x8f\x3a\xa1\x7e\x13\xea\xf7\xbc\x65\xd3\x2f\xa8\xdf\x7e\x54\x97\xc9\xdb\x27\xc3\xb4\xb7\xfc\x51\x6d\x1f\x91\xd2\x33\xb2\x40\xfd\x26\x86\x2f\xe1\xa7\x27\x86\x6f\x62\xf8\xf6\x23\x23\x0b\x86\x8f\x60\x9f\x27\x86\x6f\xa2\xee\xf6\x38\xe7\xa8\x3b\x72\xff\x52\x9a\x92\xde\x02\x87\x9e\x09\xaf\xf8\xc8\x7d\x59\x8a\xf0\x7d\x1e\x9a\xa6\xe5\xbd\x7c\xbd\x17\x03\x77\x76\x88\x4c\x0c\xdf\xc4\xf0\x79\x09\x18\xbe\x89\xe1\xdb\x8f\x8c\x05\x18\x3e\x52\xf7\x38\xc0\x18\xbe\x29\x8c\xe2\x9e\x8d\x24\x53\x18\x45\x52\xbd\x2b\x0c\xdf\xc4\xf0\xed\x41\x9f\x27\x86\x8f\xd4\x04\xfc\x9d\x18\x3e\x52\xb3\xf5\x68\x62\xf8\x48\xd9\x03\x2b\x4f\x0c\x1f\xa9\xde\xf2\x71\xc8\x07\x37\x23\xb0\xf2\x3c\xb8\x19\x50\xbf\xec\x50\x9a\x50\xbf\x09\xf5\xdb\x03\x2b\x4f\xa8\xdf\x0c\xde\x07\x0f\x9f\x87\x4f\x33\x50\xbf\xfd\x88\xe1\x85\xfa\x91\x9a\xa8\xbd\x13\xea\x37\xa1\x7e\x7b\xce\xa9\x9f\x50\x3f\x52\x13\xa1\x77\x42\xfd\xc8\x7d\x99\x87\x4e\x69\x2b\x97\xa5\x8e\x42\x32\xcf\xe3\x54\x47\x31\xc6\x87\xaf\x3a\x91\x9a\x08\xbd\x13\x24\x38\xd1\x7f\x89\xc6\x3b\xd1\x7f\x13\xfd\xb7\x87\x16\x9e\xe8\xbf\x19\xd4\xaf\x26\x0a\xee\x44\xfa\x91\xaa\x39\x23\xfd\x26\xd2\x6f\xcf\x11\xfa\x13\xe9\x47\xa0\xf1\x13\xe9\x37\x0f\x26\x3b\x3b\x55\xe6\xc1\x64\x47\xaa\x56\x7f\x30\xd9\x07\x93\x9d\xc0\x95\xf3\x60\xb2\x23\x55\xab\xc7\x08\x92\x7a\xfc\x0d\x7b\xcd\xe7\xc1\xa2\x1f\x2c\x7a\xc0\xe1\x79\xb0\xe8\xc7\xed\xa6\xd7\xa3\xa6\x52\x79\xe9\xe0\xc3\x3d\x9b\x56\x26\xf8\x70\x26\x72\x64\x4d\x7c\xdd\x29\x72\xe4\x04\x1f\xee\x89\xbb\x38\xc1\x87\xa4\xea\x3b\xe0\xc3\x09\x3e\xdc\x73\xc2\xfe\x04\x1f\xce\x84\x84\xac\x4f\xdf\x61\xbd\x85\x84\xdc\x73\xc2\xfe\x14\x12\x92\xd4\xa7\x53\x24\x24\xe4\x3c\xf2\xa5\x73\x4f\x08\xc4\x19\x60\xf1\x96\xd4\x4d\x1c\x24\x8c\x22\xa9\x4f\x3f\x61\xd1\x31\x8a\x7b\x00\xe6\x89\x51\x24\x8e\x08\x98\x18\x45\x72\x5f\x96\x87\xb2\xe8\x18\xc5\x44\xf0\x9d\x18\x45\x72\x5f\xe6\xa1\x4a\x15\x16\x22\x11\x7c\xa7\x90\x90\x13\xca\xb8\x27\x8c\xe1\x84\x32\xce\xe0\x8b\x35\xdb\xb7\xe6\x61\x22\x0e\x65\xdc\x0f\x7d\x9d\xf9\x86\x32\xe6\x10\x82\x09\x65\x9c\x62\x3d\xee\x4d\xc7\x66\xbe\x23\xf5\xe9\xd7\xcc\xf7\x91\x45\x9d\xbd\xe9\x8a\x6f\x0f\xcd\xa2\xce\xd3\xaf\x59\xf4\x48\x7d\xfa\x30\x8b\x1e\x29\x7b\xd3\x51\xde\xf2\x91\x75\x9e\x04\xeb\x9d\xc7\x5b\xe1\x19\xfe\xa6\xf3\x30\xfc\x61\x21\x9d\x1f\x30\x0f\x86\xff\xf8\x3c\x77\x4b\xbd\x31\xfc\x91\xfa\x58\x04\xd3\xa2\x83\x45\x6f\x3a\x14\x8b\x1e\xa9\x8f\x45\x60\xd1\x8f\xaf\xbb\xb1\xa4\x5f\x77\xfb\xba\x5b\x0a\xff\x7d\xee\xd6\x5c\x26\xcd\xfb\xcb\xd7\xb3\x6c\x54\x9b\x87\xaf\x67\xc0\xcb\x3d\x7b\x5b\x26\xf0\x72\x02\x2f\xd9\x17\x64\xe5\x44\x56\xee\xe1\xbe\x27\xb2\x92\xd4\x04\xf0\x9d\xc8\xca\x89\xac\xdc\xb3\x91\x65\x22\x2b\x89\x13\x0a\x26\xb2\x72\x22\x2b\xf7\x1c\xd3\x3f\x91\x95\xa4\x66\xdb\xdb\x44\x56\x12\x87\x16\x4c\x64\x25\x29\x7b\x22\x74\x4d\x91\x29\x49\x4d\x68\xff\x29\x32\x25\xb9\x2f\xdb\x92\x76\x4a\x4b\xe1\x9b\x5f\x5e\x92\x14\x3e\x15\x82\xd3\x9c\x61\x33\x2b\x0b\xd6\x78\xe1\x38\xcd\xbd\xc9\x08\xf3\x8d\xd3\xcc\x11\x08\x13\xa7\x39\x1b\xf3\xdd\x3c\x81\xf9\x6e\xcc\x77\x0c\x5d\x63\xbe\x1b\xbb\xdc\xfc\x94\x5d\x6e\xec\x72\x3c\x3b\x84\x27\xa9\xd9\x7e\x37\x1b\x2f\xbc\xf1\xc2\xb3\x61\x66\x36\x5e\x78\xa4\x32\x91\xcd\x07\xf8\xc8\x7d\x59\x8a\x70\x2a\x3c\x2b\x1f\xcf\xae\xb1\xf2\x10\xd2\xbd\xc5\xa3\x82\x90\x4e\x08\x69\x62\xfb\x4e\x08\xe9\x84\x90\xee\x89\x2a\x35\x21\xa4\xc4\xf1\x0c\x13\x42\x3a\x85\xe0\xdc\xb3\x3b\x66\x0a\xc1\x39\x21\xa4\xc7\xf3\x80\x58\x37\x08\xe9\x9e\xa0\x02\x13\x42\x4a\x2a\x2b\x0b\x21\x25\x4e\x6c\x98\x10\x52\x52\xf6\x44\x61\x9a\x10\x52\x52\x13\x78\x77\x42\x48\xc9\x7d\x59\x8a\xc0\x8e\x43\x48\x0f\x25\xe0\xac\x63\x43\xf7\x44\x5c\x9a\xd8\xd0\xd9\x98\xf6\xf8\x62\x8d\x69\x6f\xe3\x79\x68\x32\xc2\xb4\x37\xa6\x3d\xbe\x58\x63\xda\x21\xa4\x7b\x42\x09\x4d\x08\x29\xa9\x06\x05\x08\xe9\x6c\xbc\xf0\x33\x1e\x44\xe3\x85\x37\x36\x5b\x7d\xb0\xd9\x8d\xcd\xce\x38\xd1\xd8\x6c\xa0\xe9\x1e\xbe\x7d\x02\x4d\x67\x63\x8c\xe3\xec\x35\xc6\x18\x68\xba\x67\x5b\xcd\x04\x9a\xce\xc6\xca\x66\x38\x69\xac\x6c\x63\x65\xb3\x5f\x66\x36\x56\xb6\xb1\xb2\xaa\x8d\x95\x6d\xac\x6c\xa2\xc9\xcc\xc6\xca\x36\x56\x56\xb5\xb1\xb2\x8d\x95\x0d\xa5\x3e\x1b\x2b\xdb\x58\xd9\x2e\xc9\x43\x59\xd9\x8c\x13\x8d\x95\x15\x6a\x74\x3f\xb7\xdf\xde\x60\x3e\x45\x22\x25\xd5\x30\x22\x12\xe9\x84\xc8\xee\x09\xae\x30\x21\xb2\x13\x22\x9b\x58\x33\x13\x22\x3b\x21\xb2\xfb\x99\x51\x09\x22\x4b\xea\xe1\xed\x32\xc2\x10\xd9\xfd\xcc\xf4\x1a\x22\x4b\xaa\x41\x09\x22\x3b\x1b\x5b\x1d\x70\x7e\x36\xb6\x3a\x52\x9b\x46\xc0\x56\x47\xaa\x71\x4a\xf4\x51\x52\xf6\x44\x4d\x98\xa2\x8f\x12\xc7\x87\x4c\xd1\x47\xc9\x7d\x99\x34\x85\x8f\xf9\x6e\x9a\x0f\xf3\x8d\xb7\xdd\x13\x5c\x61\xe2\x6d\x67\x18\xdb\x6a\xd4\x3b\x99\x6f\xbc\xed\x9e\xc0\xea\x13\x6f\x4b\x6a\x02\xed\x4c\xbc\xed\xc4\xdb\xee\xd9\xaf\x33\xf1\xb6\xa4\x26\xcc\xed\xc4\xdb\x4e\xbc\xed\x9e\x48\x0a\x13\x6f\x4b\x6a\xc2\xdc\x4e\xbc\x2d\xa9\xd9\x80\x3a\x4f\xe6\x1b\x82\xbb\x27\xea\xc5\x84\xe0\x92\x9a\x0d\xa8\x13\x82\x4b\xee\xcb\x6a\xd2\x4e\x69\x29\x7c\xf1\xcb\x4b\x92\xec\xc6\x0e\x9d\x87\xec\x1e\xc9\x6e\xf1\xcb\x27\xbb\xea\x28\x76\x08\xa9\x3b\x91\xba\x09\x55\x3b\x91\xba\x13\xa9\xbb\x67\x5b\xcf\x44\xea\x92\x9a\xed\xac\x13\xa9\x3b\x91\xba\x7b\xb6\xf5\x4c\xa4\x2e\xa9\x09\x32\x3b\x91\xba\xf3\x6c\x1f\x97\x79\xc2\x57\xda\x37\x97\xa5\x2a\x7d\x7e\x01\xf4\xee\xd9\xc3\x33\x01\xbd\xa4\xf2\x16\x00\xbd\xc4\x59\x32\x13\xd0\x4b\xee\x5f\x4a\x93\xdd\x0c\x06\x1c\x08\x40\x2f\x29\x7b\xb6\xf5\x4c\xe1\x4d\x67\x20\xdf\x9a\x60\x44\x13\xe3\x4b\x6a\xcb\x94\x50\x28\xd3\x79\x32\xfc\xd9\xe9\x33\x4f\x86\x3f\x52\xb3\xad\x76\x9e\x0c\xff\xc9\xf0\x27\x3e\xc4\x3c\x19\xfe\x88\x33\x6d\xe6\xc9\x97\x3f\x19\xfe\x44\x74\x98\x27\xc3\x1f\xa9\x1c\x19\x5c\xf1\x3c\x59\xf9\x4b\xe3\x65\xe5\x23\x8e\xbe\x99\x27\x2b\x0f\x3f\xde\x2f\x8d\x97\xf9\x86\x1f\xf3\x77\xe0\xc7\x13\x7e\xbc\xe7\xa0\xfd\x09\x3f\x26\x8e\xbe\x99\xf0\xe3\x09\x3f\xde\x2f\xef\x8f\xf9\xc6\x15\xb7\x4d\xd2\x92\xf4\x75\x59\x4a\xcf\xe5\xc6\x15\x27\xee\xd1\xc4\x15\x13\x47\xdf\x4c\x5c\x31\x29\x7b\x76\x17\x4d\x5c\xf1\x4c\x48\x55\x47\xdf\x4c\x21\x55\xe7\x99\x5d\x03\x7b\x0e\xae\x9f\xa7\x4f\x21\x91\x9a\x00\xaa\xf3\xf4\x25\x04\x57\xbc\xe7\xf4\xf9\x89\x2b\x26\xd6\x3b\x71\xc5\x13\x57\x9c\x33\x73\x26\xae\x78\xe2\x8a\xf7\x9c\x06\x31\x71\xc5\xc4\x99\x39\x13\x57\x4c\xca\x9e\x4d\x4e\xf3\xca\x41\xd3\x13\x57\x9c\x90\xaa\x13\x57\x4c\xee\xcb\x3c\x74\x4a\x4b\xad\xc5\x1a\xe1\x8a\x27\xae\x78\xcf\xa1\x11\x13\x57\x4c\x2a\xb7\x0b\x57\x4c\x6a\xe2\x2a\x4d\x5c\x31\xb9\x7f\x99\x22\x68\xe1\x81\x85\x6b\xe2\x2a\xcd\x2b\xc7\xba\x4e\xc1\x58\xf7\x1c\x1a\x31\x51\xc2\x13\x25\xcc\x61\x43\x09\x4f\x94\xf0\x9e\x63\x1e\x26\x4a\x98\x54\x0e\x1b\x4a\x78\xa2\x84\xf7\x6c\x93\x9a\x28\x61\x52\x5b\xf3\x4b\x85\xd7\x9c\xaf\x7c\x98\x45\x09\x93\x9a\x28\x4d\x13\x25\x4c\x1c\xf1\x33\x51\xc2\xa4\xec\x97\x92\x6a\xe1\x28\xe1\xec\x97\x9e\x28\xe1\x79\x3d\x2d\x5c\x49\xb5\x70\x94\x70\x02\x99\x4e\x94\xf0\xbc\x9e\x16\xae\x08\x5a\xf8\xa5\x85\xc7\xc6\x5e\x5a\x78\xe4\xbe\x2c\x79\x1b\x5e\xe9\xc8\x43\x4f\xbf\xf4\xd0\xa7\x23\xc8\xaf\x8e\x10\xa9\x9c\xc9\x8b\x1f\x03\x4d\xde\xaf\xd6\x7e\x7b\xdc\x46\x2e\x93\xca\xd7\x44\x2e\xcf\xcb\x04\xf3\x72\x67\x13\xcc\x48\x6d\xf9\xa2\x77\xf1\x69\xae\xa7\xb5\xc7\x3d\x04\x38\x93\x9a\xad\xde\xf3\xf2\xe1\xef\xe2\xd3\x5c\xb1\xb7\x17\x9f\x26\x52\xdb\xf3\x4b\x15\xc1\xa7\xc9\x59\xda\xf3\xe2\xd3\x44\x1c\x89\x34\x2f\x3e\x0d\x82\x7a\xbf\x62\x5c\x11\xd4\x13\x41\xbd\xe7\xf0\x8c\x89\xa0\x9e\x08\xea\x1c\x93\x34\x11\xd4\x13\x41\xbd\xe7\xa0\x8c\x89\xa0\x26\xb5\xe9\x9e\xfc\x0c\xf1\x6c\xf7\x1c\x8b\x3c\xc5\xb3\x25\x4e\x53\x9a\x08\x6a\x72\x5f\x96\x62\xd9\x64\x11\xa9\x4d\x49\x7d\x0c\x04\x5a\xef\x89\xf7\x31\x81\xd6\xc4\xa1\x4b\x13\x68\x4d\x2a\xe7\x5b\x3c\x5b\x72\xff\x32\x45\xe0\x8e\x5c\xdc\x11\x75\xc4\x1d\xb9\xb8\x23\x3d\x43\xcb\xc5\x1d\x09\x96\xed\xb8\xa6\x79\xf9\xb4\x08\xd1\xde\x73\x60\xc7\x84\x68\xcf\xce\x1d\x49\x55\x8a\x71\x3b\xc5\xb8\xdd\x73\x56\xf0\x14\xe3\x96\x54\x7e\xbb\x18\xb7\x53\x8c\xdb\x3d\x87\x00\x4f\x31\x6e\x49\xe5\xb7\x8b\x71\x3b\xc5\xb8\xdd\xb3\x37\x6c\x8a\x71\x4b\x6a\x22\xa5\x4e\x0c\x38\xa9\xd9\xd4\x3e\xc5\xb8\x25\xf7\x2f\xf3\x00\xee\x48\xe7\x8e\xc4\xc3\xec\xdc\x11\xf4\xf8\x9e\xbd\x61\x13\x3d\x4e\x6a\xa2\x9d\x4e\xf4\xf8\x44\x8f\xef\xd9\x1b\x36\xd1\xe3\xa4\x26\xda\xe9\x14\xeb\x76\x76\x56\xd8\xde\xad\xce\x0a\x77\x56\x38\x8e\x68\x67\x85\x3b\x3f\xa3\xc7\x32\x77\x7e\x46\x67\x85\xbb\x24\x85\x67\x5e\x73\xae\xc7\xc4\xa2\x93\x6a\x36\x82\x45\x27\x35\x41\x4c\x27\x16\x7d\x8a\xaf\xbb\xdb\x94\x25\xbe\xee\xc4\xa2\x67\x93\xff\xc4\xa2\x4f\x2c\xfa\x9e\xd3\x3f\x26\x16\x9d\xd4\x04\x31\x9d\x9d\xb7\x00\x4f\xdf\x73\x9c\xe8\x84\xa7\x4f\x78\xfa\x9e\xc3\x22\x27\x3c\x7d\xc2\xd3\x13\xb0\x74\xc2\xd3\x27\x3c\x7d\xef\xde\x0c\x1b\x06\x4f\x4f\xd4\xd1\x09\x4f\x9f\xf0\xf4\xbd\xab\x72\xc6\x09\x9e\x9e\xa8\xa3\x13\x9e\x4e\xee\xcb\x52\x2c\x5b\x4f\x22\x35\x51\x47\x67\x37\x98\xa3\xd8\x8f\x97\x4a\x62\xa4\x50\xec\x26\x59\x28\x76\xe2\xc0\xb0\x89\x62\x27\xf7\x2f\x53\x04\x83\x79\xa4\x9a\x77\x75\xd3\x33\xb0\xfb\x91\x43\x3c\x26\xd8\x7d\xf6\x7c\x18\x4b\x58\xbc\xd9\x7d\x18\xeb\x59\xea\x38\x5e\x4a\x6a\x80\x8f\xd4\x33\xee\x08\xfe\x7d\x26\xda\x6f\x4d\xe4\xd0\xd9\xcd\xe2\x44\xfe\x3d\x5e\xb2\xcb\x94\x45\x6a\xc2\x84\x4e\x91\x7f\x27\x72\xfe\x78\xb9\x1b\x53\x16\xa9\x26\x76\xdd\x5c\x2c\x52\x8e\x1c\xf6\x37\xbb\x2f\x5e\x11\x87\x99\xcd\x6e\x6b\x4b\xe4\xbe\x2c\x85\x37\x27\x8b\x38\xcc\x6c\x76\x73\x32\x68\xfe\xf1\xd2\xc1\xd9\xca\x88\xc3\xcc\xa6\xd0\xc2\x13\xad\x7f\xbc\xe2\x1b\xa0\xf5\x67\xcf\x76\x97\x23\x27\xc3\xcd\xce\xfa\xf4\xaf\x27\x24\x6f\x26\x3e\xa0\xfe\xe3\x95\x69\x14\xa8\x9f\xd4\x84\xf1\x9b\xa0\xfe\x29\x02\xf1\x91\x63\xd5\xa6\x08\xc4\xa4\x86\xef\x98\x22\x10\xcf\xb1\xab\xcb\x38\x0c\x83\xa5\x89\xd4\xc4\x09\x9d\x83\xa5\x19\x87\x46\x13\x4f\x60\xb0\x34\x11\x87\xaf\x4d\xa7\x06\x90\x9a\x38\xa1\x73\xb0\x34\x91\x72\xe4\x5c\xaf\x39\x58\x9a\x48\x4d\xec\xc0\x39\x58\x9a\xc8\x7d\x99\xb4\x53\x5a\x0a\x9f\x3a\x1a\x2c\x8d\x63\x09\x8e\x57\xc6\x6e\xc7\x12\xcc\x1c\x45\x50\xcd\x82\x07\x7f\x6f\xb4\xe7\xa1\x29\x02\x4b\x13\xa9\xe7\x76\xfc\xf6\xd0\x3d\x18\x22\x87\x1b\x1c\x39\xa8\x6b\x3a\xdc\x60\x3a\xdc\xe0\xc8\xd1\x4f\xd3\xe1\x06\xa4\x26\x78\xe1\x74\xb8\xc1\x74\xb8\xc1\x91\x53\x98\xa6\xc3\x0d\xa6\xc3\x0d\xc2\xc3\x4c\x87\x1b\x4c\x87\x1b\x1c\x39\xe9\x68\x3a\xdc\x80\x54\xb3\x75\x87\x1b\x4c\x87\x1b\x1c\x39\xd6\x68\x3a\xdc\x60\x8e\x7c\x62\x0a\x36\x33\x87\x4f\x4c\x0e\x37\x38\x4a\x7a\x94\xc3\x0d\x48\x4d\x78\xc4\xe9\x70\x03\xe2\xe4\xbb\x39\xb8\x66\xce\x3b\x38\x72\x24\xd0\x74\xde\x01\xa9\x09\x85\x38\x9d\x77\x40\xee\xcb\xdc\x4d\xe1\xe3\xc1\x25\x16\xe9\x74\xde\xc1\x74\xde\xc1\x91\x73\x48\xa6\xf3\x0e\x88\x73\xf4\xe6\xb0\xa1\xc7\x11\x08\x47\x8e\xec\x99\x8e\x40\x98\x23\x9f\x7b\x8e\xa2\x2e\xd9\x93\x48\x0d\xbf\x33\x07\x73\xe2\xa4\x84\xa3\xa8\x24\x86\x22\x52\x13\xb3\x74\x0a\x08\x3d\x1d\x9e\x70\x14\x99\x63\x01\x1c\x9e\x70\xe4\xc4\x8e\xe9\xf0\x84\x99\x20\xd0\x35\x71\x4c\xe7\xe0\xcc\x08\x08\x7d\xe4\xb8\x87\x29\x20\x34\xa9\x3e\x4c\x08\x08\x3d\x05\x84\x3e\x72\x9e\xc2\x14\x10\x9a\x54\x1f\x26\x04\x84\x9e\x02\x42\x1f\x45\x7b\xe4\xa5\x44\x1c\x19\x38\x1d\xd8\x40\x6a\x22\xa0\x4e\x01\xa1\x49\x39\x72\x14\xc0\x1c\xbc\x94\x48\x0d\xa9\x34\x07\x3b\xe1\xa8\x87\x23\x47\x01\x4c\x47\x3d\x90\x9a\x68\xa7\xd3\x51\x0f\x73\x32\x0a\x21\xe9\xe7\x64\x14\x26\xa3\x90\xaf\xd4\x93\x51\x98\x8c\x82\x8d\x77\x93\x51\x98\x8c\x42\xc6\xcc\xc9\x28\x4c\x46\xc1\xc6\xbb\xc9\x28\x4c\x46\xa1\x49\xda\x24\xbd\x5d\x96\xbb\xe9\xb3\x53\x9f\xcd\xd0\x2a\x08\xf5\x74\x48\xc4\x11\xb0\x7b\x3a\x24\x82\xd4\xc4\xb7\x9c\x0e\x89\x98\x0e\x89\x38\x6c\x9f\x73\x48\x04\xa9\xbe\xca\x38\x24\x62\x3a\x24\xe2\x08\x63\x3d\x1d\x12\x41\xea\x19\x1f\xdf\x21\x11\xa4\x9e\x99\x7f\x38\x24\x82\x94\xc3\xc6\x3b\x41\xa8\x49\x4d\x4c\xd4\x29\x08\x35\xb9\x2f\x4b\x11\x18\x82\xc9\x10\xe4\xcb\xf5\x64\x08\x1c\x39\x71\xd4\x18\x31\x47\x4e\x4c\x47\x4e\x1c\x39\xaa\x65\x3a\x72\x62\x3a\x72\xe2\x08\x43\x3b\x9d\x29\x31\x9d\x29\x11\xc4\x6b\x3a\x53\x62\x3a\x53\xe2\xa8\x32\xcc\x63\x70\xa6\x84\x2f\x4b\xce\x94\x98\x33\x9b\x55\x8f\x2a\x27\xa6\x38\xce\x94\xf0\x65\xc9\x99\x12\xa4\x1c\x81\x3d\xe7\xe4\x31\x4c\x1e\x43\xe6\x2b\x93\xc7\xe0\xe8\x89\xa3\x7a\x02\x8f\xc1\xd1\x13\x09\x9e\x3a\x1d\x3d\x41\x6a\x18\xb2\xe9\xe8\x09\x72\xff\x52\x9a\xec\xf2\x18\x32\x37\x71\xf4\x04\xb9\x2f\x93\xa6\x2e\xf3\x95\xc0\x37\xa9\xe9\x2b\xc1\x9c\x4f\x76\xa5\xc9\x6e\xbe\x12\xf8\x26\x35\x39\x11\x4e\xa8\x38\xc2\x53\x4e\x27\x54\x10\xdb\x9d\x9d\x50\x31\x9d\x50\x71\x3e\x49\x9b\x24\xb9\xcd\x6c\x45\xc8\x69\x52\xcf\xcc\x25\x9c\x50\x41\xee\xcb\xb6\xa4\x9d\xd2\xf2\xe6\xd3\x4b\x1d\x5a\x41\xee\xcb\xfc\xb4\x4b\xcb\x3b\x48\x2f\x15\x99\x7a\xe6\x6c\x8b\xfb\x32\x3f\x5d\xd2\x14\xea\x4c\x52\x0a\xb5\x9e\xf6\x2c\x4d\x7b\x76\xde\x85\x2f\x68\xce\xbb\x20\xd5\xa7\x31\xe7\x5d\x90\x72\x04\x76\x9c\xce\xbb\x98\xce\xbb\xf0\x69\xcc\x79\x17\x73\x3d\x0d\x35\x03\x9b\x83\x2c\xa6\x83\x2c\x12\x13\x75\x3a\xc8\x62\x3a\xc8\xe2\x08\x64\x38\x1d\x64\x41\x6a\x02\xa0\x4e\x07\x59\x4c\x07\x59\x1c\x5b\x4c\x83\x83\x2c\x48\x4d\x00\xd4\xe9\x20\x8b\xe9\x20\x8b\x63\xcb\x87\x5d\x07\x59\x90\xea\x73\x99\x83\x2c\x48\x3d\xfb\x6f\x47\x11\x9b\xce\xb9\x20\xe5\xd8\xe2\x22\x3a\xe7\x62\x3a\xe7\x22\x71\x4f\xa7\x73\x2e\xa6\x73\x2e\x8e\x00\x7c\xd3\x39\x17\xc4\xd1\xa4\x73\x19\xa9\x9c\x73\x71\x04\x88\x9b\xce\xb9\x20\xf5\x92\x73\xbd\x4e\xb4\xea\xc3\x5e\x51\xa7\x55\x4c\x67\x4e\x1c\xa1\xa8\xa6\x33\x27\x48\xf5\xa5\xcf\x99\x13\xd3\x99\x13\x47\xb8\xa7\xe9\xcc\x89\x29\x0c\xf5\x11\x68\x68\x3a\xff\x61\x3a\xd8\xe1\x80\xa2\x38\xd8\x61\x26\x0c\xb5\x43\x52\xa7\x30\xd4\x53\x18\xea\x23\x31\x3b\xa6\x30\xd4\xa4\x26\x16\xe9\x74\xfe\xc3\x14\x86\xfa\x80\x4a\x08\x43\x4d\x6a\x50\xc5\xe9\xfc\x87\xe9\x60\x87\x03\x03\xe1\x60\x07\x52\x13\x8b\x74\x3a\xd8\x81\xd4\x4b\x95\x1b\xbd\x1c\xec\x70\x3c\x1d\xcf\xe8\xe5\x60\x87\x4b\x95\x73\x69\x9d\xd8\x70\xe0\x0c\x9c\xd8\x40\xaa\x0f\x98\x6f\xa3\x97\x88\xd0\x87\x5d\xa6\x0e\x54\x98\x02\x3b\x1f\xb6\x4e\x0b\xec\x4c\xea\x55\x24\x5d\x92\xde\x2e\xcb\x4f\x59\x80\x48\xf5\xed\xf3\x6d\x86\x2a\xec\xf2\x61\x57\xb0\xc3\x0d\x66\x0e\x2f\x28\x87\xbd\x9c\x6f\xc6\x3f\xe2\x0c\xda\xf9\x66\xfb\x9d\x64\x70\xd8\xa4\xe9\x24\x83\xe9\x24\x81\xc3\x8e\x45\x27\x09\x4c\x47\x04\x1c\x76\xe8\x39\x22\x60\x26\xe0\x71\x0d\xd0\x39\x05\x3c\x9e\x8e\x08\x38\x6c\x52\x73\x44\x00\xa9\x01\x3a\xa7\x23\x02\xa6\x23\x02\x0e\x3b\xd2\x1c\x11\x40\x6a\xa2\x91\x4e\x47\x04\x4c\xec\xff\x61\x0f\x19\xf6\x9f\xd4\x44\x23\x9d\xd8\x7f\x52\x7d\xac\xc5\xfe\x93\x72\xd8\xa7\x85\xfd\x27\xd5\xc7\x5a\xec\x3f\xb9\x2f\x73\x37\x35\xa2\x99\x67\xc2\x84\xfd\x27\xf7\x65\x9e\x20\xbb\x53\x76\xf3\x1a\xe6\x93\x5d\x75\x14\xd3\x89\xfd\x9f\xd8\x7f\x9f\x7e\xb1\xff\x13\xd4\x7f\xd8\xe2\x05\xea\x27\x35\x11\x45\x27\xa8\x7f\x82\xfa\x0f\x5b\xbc\x40\xfd\xf3\x1d\x78\xe1\xb0\xf3\xe9\x6d\x86\x17\x71\x14\xf0\xc4\xf9\x4f\x50\xff\x71\x68\x5d\xba\x1b\xa8\xdf\xc7\x5f\x50\xff\x14\x2a\xf9\xb0\x95\x08\x73\x3f\x85\x4a\x3e\xec\x35\x13\x2a\x99\x38\x45\x78\x62\xee\x27\xe6\xfe\xb0\x3b\x0c\x73\x4f\x6a\x82\x31\x4f\xcc\xfd\xc4\xdc\x1f\x36\xa0\x60\xee\x49\x0d\x6a\x3b\x31\xf7\x13\x73\x7f\x1c\xbb\xbb\x75\x69\xa9\x91\x7c\xf6\xc7\xdc\x4f\xcc\xfd\x61\x2f\x08\xe6\x9e\xd4\x04\x28\x9d\x98\x7b\xe2\xe8\xe2\x89\xb9\x9f\x60\xfa\xc3\xee\x0d\x30\xfd\x14\x5c\xf8\xb0\x0d\x01\xd8\x3e\xe1\xe9\x87\x75\x6c\x78\x3a\x71\xc4\xf1\x84\xa7\x4f\x78\xfa\x71\xa4\xd9\xc0\xd3\x27\x3c\x3d\x47\x1c\x4f\x78\xfa\x84\xa7\x1f\x47\x5e\x34\x3c\x9d\xd4\x4b\x49\x0d\x3a\x42\x04\x1f\x76\x06\x09\x11\x4c\x9c\x84\x3c\xe1\xe9\x13\x9e\x7e\x58\xa3\x85\xa7\x13\x27\x21\x4f\x78\x3a\xa9\x97\x3a\x32\xaa\xe0\xce\x0f\x0b\x9d\xb8\x73\x52\x7d\x35\xc7\x9d\x4f\xa4\xf8\x61\xb9\x12\x29\x4e\x6a\x02\x99\x4e\xa4\xf8\x44\x8a\x1f\x96\x09\x91\xe2\x13\x29\x7e\xb4\x74\x1a\xa4\xf8\xfc\xe8\x47\x99\x3a\x7d\xf4\x23\xa4\xf8\x61\xd5\x0a\x29\x3e\x05\xfa\x3d\xec\x67\x41\x6d\x4f\x38\xf6\xd1\xbc\x2e\xed\xf7\xa3\xfd\x66\x9e\xf4\xd1\x7e\x85\xe1\x3d\x2c\x07\xc0\xa1\x27\x5a\xf9\xf0\x71\x18\xad\x4c\x1c\x04\x3d\xbf\x1a\xa6\xb8\xb6\x87\x8f\x9c\x98\xe3\x89\x12\x3e\x7c\xea\x42\x09\x93\x7a\xfd\x0d\x27\xb3\xcc\x2f\x5b\x0c\xfb\x3d\x7c\x0c\x82\xfd\x92\x1a\x1e\x7b\xc2\x7e\x27\xc6\xf7\xf0\x31\x01\xe3\x4b\x6a\x78\xec\x89\xf1\x25\xf7\x65\xd2\x4e\x69\xa9\xd8\xcc\xc0\x30\xbe\x13\xe3\x7b\xe4\x6c\x8b\x89\xf1\x9d\x18\xdf\xc3\x54\x1b\xe3\x3b\x31\xbe\x87\xc9\x15\xc6\x77\x62\x7c\x2d\x6f\x60\x7c\x27\xc6\xf7\x30\x23\xc0\xf8\x92\x7a\x3d\xbf\x94\x39\x56\x3c\xa7\x34\x4c\xe1\x60\x89\x03\xb6\x27\xc6\x77\x0a\x07\x7b\x58\xf5\x15\x0e\x96\xd4\x04\x5d\x9d\x18\x5f\x52\xc3\x8f\x4f\x8c\xef\x04\xef\x1e\xdc\x64\xf0\xee\x0c\xb0\xeb\x68\xee\xf9\x65\x8a\xbf\x3e\xc9\x59\xba\x45\xea\x92\x7a\xdd\x53\xb0\x05\xd4\x25\x19\xac\x17\x50\x77\x01\x75\xb3\xc8\xb2\x80\xba\x4b\xe8\xd7\x23\x4e\xec\x12\xdb\x95\xd4\x20\xeb\x0b\xa8\x4b\xee\xcb\x7a\xd2\x4e\x69\x79\x2f\xcd\x2f\x2f\x49\x6a\xe8\xee\xda\x0b\xcf\x4b\x1c\x1a\xbe\xf0\xbc\xeb\xf5\xb4\x99\xdb\xd7\x5d\x78\x5e\x52\x13\xc8\x75\xe1\x79\x49\x4d\xd0\xd6\x85\xe7\x25\xf7\x2f\x73\xb7\x53\x76\xb3\xe4\x76\x9d\x6e\xe6\x99\x4f\xfb\xe8\xb9\xdb\xe5\x01\x0c\xd6\xed\x1d\x2d\xf0\xee\x02\xef\x1e\x71\xf1\x16\x78\x97\xd4\xac\xe6\x2c\xf0\xee\x02\xef\x1e\x59\xcc\x5d\xe0\x5d\x52\x13\x7a\x75\x81\x77\x17\x78\xf7\x88\xb3\xb5\xc0\xbb\xa4\x26\x1c\xeb\x02\xef\x92\x9a\xd0\xab\x0b\xbc\x4b\xca\x11\x1f\x67\x89\xd0\xba\xc0\xbb\x89\x3f\xbf\xc0\xbb\x0b\xbc\x7b\xc4\x9f\x59\xe0\x5d\xe2\xf8\xf5\x95\x68\xad\xb7\xb8\x5b\xcd\x9b\x1f\xee\xa6\x35\x5f\x29\xfc\x50\xaa\x2c\xb9\x1d\x19\xd1\xd7\x6b\x78\xa5\xc3\x43\x25\x79\xa8\x46\x9f\x11\x7d\x89\xf7\x4a\xea\xa5\xcd\x0c\x85\xd7\xe8\xb3\x74\xbb\x42\x14\x3f\x52\x13\x8c\x75\xe1\x8a\x17\xae\xf8\xc8\x30\xb7\x70\xc5\xa4\x5e\x9a\xd6\xf4\x50\x86\x33\xa3\xcb\xc2\x15\x2f\x5c\xf1\x11\x13\xbe\x70\xc5\x0b\x57\x7c\x64\x75\x71\xe1\x8a\x17\xae\xf8\xd2\x04\x3f\x2e\xe3\x67\x67\x25\x6f\xe1\x8a\x49\x4d\xd0\xd6\x85\x2b\x5e\xb8\xe2\xe3\x69\x22\x1f\x45\xe5\x67\x77\xbf\x54\x54\x7e\xf6\xf3\xee\xbf\x1e\xca\xcf\xee\x79\x0d\x5f\x0f\xe5\x67\xf7\xdc\xec\xeb\x3d\xf3\xb3\x9f\xd7\xf0\x95\x0f\x7e\x76\x4f\x95\x7f\x95\x9e\x4d\xf7\x1a\x00\xc3\x2b\x90\x70\x4d\x84\xd6\x25\x42\xeb\x02\x0c\x1f\x8a\x00\x18\x26\x35\xe7\x1c\x2c\xc0\xf0\x02\x0c\x1f\xf2\x06\x18\x26\x35\x11\x5a\x17\x60\x78\x89\xd0\x7a\x64\xf5\x70\x89\xd0\x4a\x6a\x22\xb4\x2e\x0c\x31\xa9\x89\xd0\xba\x44\x68\x25\xe5\xf8\x6b\x9a\x7c\x1c\xf2\x71\x24\x49\x3e\x4c\x01\xfe\x9a\x76\x4a\x3b\x73\x59\x0a\x9a\x29\xc0\x02\x29\x1f\x4f\x1a\xbb\x15\xa9\xfd\x95\xac\x65\xd8\x59\x02\xb9\x1e\x39\xc7\x7f\x09\xe4\x4a\x44\x00\x58\x02\xb9\x2e\xfc\xf2\x91\x98\xaa\x0b\xbf\xbc\x8a\x99\x42\x22\x7c\xae\x72\x3e\xd7\xb5\xfc\x34\xd5\x7b\xca\x1b\x1b\xd2\x6f\x47\x73\xc1\x9c\x49\xcd\x9a\xe8\x12\x7a\x75\x21\x9f\x8f\x44\x9d\x5c\xc8\x67\x52\x13\x2a\x76\x21\x9f\x17\xf2\xf9\xc8\xda\xdb\x42\x3e\xaf\xc2\x4f\xc9\xd2\xd8\x2a\xdd\x53\xd3\xed\x9f\x62\xe9\xf6\x00\xe9\x23\xd1\x0d\x17\x40\x7a\x01\xa4\xb3\xea\xba\x00\xd2\x0b\x20\x7d\xf4\xf6\xdb\x74\xf7\xc2\x4f\x93\xfa\x54\x0e\xab\x20\xce\xeb\x91\xf3\x0c\x96\x38\xaf\xa4\x26\xe0\xec\xc2\x4f\x2f\x60\xf4\x91\xd5\xb4\x05\x8c\x26\x35\xc1\x65\x17\x30\x9a\x88\xa2\xb0\x80\xd1\xa4\x1c\x89\x62\xb7\x04\x70\x25\x35\x4b\xbc\x4b\x00\x57\x72\x5f\x96\xbc\x31\x14\xf8\xe9\x2c\xf1\x2e\xfc\xf4\xc2\x4f\x1f\x39\xf6\x60\xe1\xa7\x89\x98\x0c\x4b\x00\xd7\x85\x9f\x3e\x12\x3c\x6e\xe1\xa7\x49\x4d\x58\xda\x85\x9f\x5e\xc5\x4c\xa5\xa7\x7f\x96\xa5\xf0\x99\xa9\x24\x2c\xed\x2a\x4b\xe1\x59\xa2\x04\x77\x5b\x30\xeb\x55\xac\x3b\x65\xf1\x6f\x61\xaa\x89\xa8\x0f\x4b\x9c\xd7\x05\xb3\x6e\x59\xd5\x5b\x30\xeb\x85\xa9\x6e\x2f\x2d\x9e\xf1\x00\x4b\xb7\x1c\x19\xbf\xc0\xd2\xa4\x26\xcc\xed\x02\x4b\x2f\xb0\x74\x4b\x10\xa8\x05\x96\x26\x35\x4b\xd7\x0b\x2c\xbd\xc0\xd2\x2d\x41\xf6\x17\x58\x9a\x54\x9d\x00\x2c\xbd\xc0\xd2\x2d\xd1\x9d\x16\x58\x9a\xd4\xac\x70\x2f\xb0\x34\xa9\x39\x10\x65\x81\xa5\xc9\xfd\xcb\xdc\x8d\x09\xa8\x4c\xc0\xe6\x66\xf2\x11\x13\xd0\xb2\x74\xb6\xc4\x76\x25\x62\x5e\x2c\xb1\x5d\x17\xf4\xba\x25\x80\xd2\x82\x5e\x93\x9a\xf0\xb4\x0b\x7a\xbd\xea\x29\xbb\x47\x2a\x84\x17\x11\x11\x1a\x63\xa1\xb1\x17\x1a\xbb\x65\x65\x6b\xa1\xb1\x17\x1a\xbb\xab\x36\xbe\x00\x1a\xbb\x25\x8e\xcb\x42\x63\x93\x9a\xb8\xb3\x0b\x8d\xbd\xd0\xd8\x2d\x07\x22\x2c\x34\x36\xa9\x2c\x00\x1a\x7b\xa1\xb1\x5b\xa2\xac\x2c\x34\x36\xa9\x59\xcb\x5f\x68\x6c\x52\xb3\x6e\xbf\xd0\xd8\xa4\xb4\x44\x23\x59\xc2\xac\x12\x21\x3a\x96\x30\xab\xe4\xbe\x2c\x45\x60\x3b\x40\xdb\x39\xd3\x65\x81\xb6\x17\x68\xbb\xe5\xb8\xfc\x05\xda\x26\x22\x79\x2c\xd0\xf6\x02\x6d\xb7\x44\xfc\x58\xa0\xed\x05\xda\x6e\x09\xfc\xb0\x40\xdb\xa4\xf6\x3d\x79\xd3\x29\x41\xdb\x2d\xcb\x43\x0b\xb4\x4d\x6a\xdf\x93\x37\x3d\xb0\xa6\x07\xb6\xa2\xbd\xe9\x81\x55\x0f\xcc\x80\x5e\xf5\x40\x6c\x77\x2b\x5a\x8d\xae\x85\xed\x6e\x45\x86\xf5\x19\x6c\x77\xb6\x28\x2c\x6c\xf7\xc2\x76\xb7\x9c\x70\xbf\xb0\xdd\xa4\x76\xcd\xd2\x20\x2f\xe4\x69\x2b\x87\x9f\x7a\x81\x19\xe4\xbb\x66\x69\x90\xaf\x19\xe4\x5b\x8e\x52\x58\xd5\x20\x1f\xa9\x5d\xb3\xd4\x4f\x23\x35\x07\xd3\xac\x6a\x90\x8f\x94\x96\xf3\xd7\x57\x35\xc8\x47\x6a\xc2\xe9\xae\xfa\x95\x8f\x6c\x58\x69\x39\x6b\x7d\xd5\xaf\xba\x8c\x2f\x60\x3c\xa8\x7c\x01\xd8\x79\xcb\x59\xeb\x0b\x76\x4e\x84\x40\x59\xc2\xac\x2e\x61\x56\x5b\x8e\x6f\x58\xc2\xac\x92\x9a\x70\xba\x4b\x98\xd5\x25\xcc\x6a\xcb\xa9\xdf\x4b\x98\x55\x52\x13\x4e\x77\x09\xb3\xba\x84\x59\x6d\x39\xa7\x7b\x09\xb3\x4a\xaa\x41\x08\xea\xbe\xa0\xee\x2d\xa7\x58\x2f\xa8\x3b\xa9\x39\x6f\x67\x41\xdd\x17\xd4\xbd\xe5\xd8\xfe\x05\x75\x5f\x50\xf7\x84\xd8\x5d\x50\xf7\x05\x75\x6f\x59\xcd\x5a\x50\x77\x52\x13\x3b\x77\x41\xdd\x17\xd4\xbd\xe5\xac\xe8\x05\x75\x27\xe2\xbf\x2c\xa8\xfb\x12\x66\xb5\xd5\xb8\x38\xc2\xac\x92\x9a\x38\xb9\x0b\xc3\x4e\x6a\x62\xe2\x2e\x0c\x3b\xb9\x7f\x99\x07\x98\x62\x44\xaa\x41\x51\xe4\x55\x52\x5a\x0e\xa0\x58\x1b\x97\x21\x52\x13\xff\x76\x6d\xa7\xc2\xb3\x3e\x35\xbe\x00\x22\x7e\x09\xd0\xda\x72\x5c\xf2\x42\xa7\x2f\x74\x7a\xab\xdb\x6f\x43\x62\x0b\xbc\xbe\xc0\xeb\x39\x52\x68\x81\xd7\x17\x78\xbd\xe5\x2c\xdb\x05\x5e\x27\xb5\x6b\x40\x06\x79\xf1\x5b\x5b\x0e\xae\x5d\xe2\xb7\xae\x00\xeb\x35\x27\x0f\x2d\xb1\x5a\x17\x78\xbd\xd5\x34\x78\xf0\x3a\xa9\x89\x68\xbb\xc0\xeb\xa4\x26\x7a\xed\x02\xaf\x93\xd2\xaa\x46\x65\x90\x07\xaf\x1b\xf7\xd1\xe9\xe4\xbe\x2c\x45\x60\x4f\xd0\xe9\xc6\x7d\x74\xfa\x42\xa7\xb7\x1c\x94\xb1\xd0\xe9\xeb\xa1\xd3\xef\x9b\xa1\xd3\x17\x3a\x9d\x27\x80\x4e\x5f\xe8\xf4\x96\x43\x5d\x17\x3a\x9d\x88\x0b\xb4\x04\x66\x5d\xe8\xf4\x96\x60\xf1\x0b\x9d\x4e\x6a\xcf\xc4\x6d\xd7\xa4\xf6\xa7\x49\xa5\x26\x45\x5e\x25\x35\xe1\x6c\x17\x3a\x9d\xd4\x84\xae\x5d\xe8\x74\x52\x5a\x02\xc3\x2f\x74\x3a\xa9\x3c\x12\x91\x57\xc9\x7d\x59\x8a\xa0\x49\x81\xd8\xb3\x43\x69\x81\xd8\xd7\xfe\x34\xa9\x74\x62\x74\xfa\x42\xa7\x77\xf5\x61\x40\x43\xa7\xb7\xea\xa7\x06\x34\x74\x7a\xa2\xde\x2e\x74\xfa\x42\xa7\xb7\x2c\x6c\x2d\x74\x3a\xa9\x89\x7a\xbb\xd0\xe9\x0b\x9d\xde\x72\xd8\xe7\x42\xa7\x93\xda\x9f\x24\x0f\x35\xa0\x65\x2e\x87\x4e\x27\xa5\xe5\x40\xcd\x85\x4e\x5f\xe8\xf4\x9e\x39\x1a\x3a\x7d\xed\x4f\x07\x88\x03\x85\x4e\x5f\xe8\xf4\x9e\xa1\x10\x9d\xbe\x04\x41\x6d\x39\xc8\x72\xa1\xc2\x17\xb6\xbb\x65\xdd\x67\x61\xbb\x89\x10\x4b\x0b\xdb\xbd\x04\x46\x6d\x89\x3d\xb1\x10\xda\x0b\x40\xdd\x72\xb2\xdf\x02\x50\x2f\xb4\x74\xcb\xf1\x6e\x0b\x2d\xbd\xd0\xd2\xbc\x3b\xb4\xf4\x42\x4b\xb7\x9c\x67\xb6\xd0\xd2\xa4\x26\x10\xef\x12\x18\x75\xa1\xa5\xdb\xa6\xf1\x7e\xe4\xc4\x78\x13\x13\x26\x30\xea\x42\x4b\xb7\xac\x18\x2d\xb4\x34\x11\xc5\x69\xa1\xa5\x89\x88\x4d\x4b\xc4\x53\x52\x5a\xce\x11\x5b\x22\x9e\xae\x44\x34\xdd\x12\x61\x77\xed\x06\x12\x18\x74\xcb\x39\x62\x0b\x06\xbd\x82\x41\x0b\xe3\xb4\x60\xd0\x0b\x06\xdd\xb6\xf4\x66\x18\x34\x11\xc6\x69\xc1\xa0\x17\x0c\xba\x65\xad\x69\xc1\xa0\xc9\x96\x38\xb9\x0b\x06\xbd\x60\xd0\x2d\xa7\x9c\x2c\x18\x34\xd9\xb2\x2b\x6c\xc1\xa0\x89\x00\x50\x0b\x06\x4d\x4a\xcb\x11\x50\x0b\x06\x4d\x04\x80\x5a\x30\x68\x72\x5f\x96\x22\x18\x82\x22\x5b\x22\xec\x2e\x18\xf4\x82\x41\xb7\x9c\x14\xb5\x60\xd0\x64\x7b\x95\x3d\x49\x55\x92\x87\xa6\xc1\xc1\xa0\xc9\x96\x40\xbc\x0b\x06\xbd\x60\xd0\x2d\x47\x2f\x2d\x18\x34\xd9\xb2\x89\x6d\xc1\xa0\x17\xbe\xb9\xe5\x10\xa4\x85\x6f\x26\x22\x51\x2d\x7c\x33\x11\x56\x6a\x09\x82\x4a\x4a\xdb\xbd\x18\xf6\x22\x18\xf4\x96\x98\xbb\x0b\x06\xbd\x44\x37\x6d\x39\x1f\x65\x61\x9e\xc9\x96\x60\xba\x0b\xf3\xbc\x84\x2d\x6d\xbb\x0a\xd1\x4f\x91\xc3\x2d\xe7\xa8\x2c\xe4\xf0\x0a\x39\x2c\x4a\xd5\x42\x0e\x2f\xe4\x70\xcb\x21\x24\x0b\x39\x4c\x44\xa9\x5a\xc8\xe1\x85\x1c\x6e\x39\x3e\x64\x21\x87\xc9\x96\x0d\x76\x4b\xd8\xd2\x25\x6c\x69\xdb\x33\x3a\x09\x5b\x4a\xb6\x57\xfa\x1f\x24\x98\x88\x6f\xb5\x20\xc1\xa4\xb4\x3d\x9e\x11\x24\x98\x6c\x2f\x25\x30\x9e\x40\x82\x5b\xce\xf2\x58\x90\x60\xb2\x25\x0e\xef\x82\x04\x2f\xac\x6f\xdb\xe3\x19\x61\x7d\x57\x58\xdf\x2d\x71\x78\x17\xd6\x77\x61\x7d\x5b\x8e\xda\x58\x58\x5f\xb2\x25\x0e\xef\xc2\xfa\x2e\xac\x6f\xdb\xff\x96\x79\x37\x14\x98\x6c\x66\x6d\x50\xe0\x05\x05\x6e\x39\xfd\x63\x41\x81\x89\x70\x5d\x0b\x0a\xbc\x12\xfb\xb4\xb4\x9c\x59\xb1\x04\x3f\x25\xc2\x75\x2d\xdc\xef\xc2\xfd\xb6\x1c\x29\xb1\x70\xbf\x64\x33\x07\x14\x0f\x75\x89\x87\xda\xb2\x1c\xb8\xd0\xbb\x0b\x96\xdb\x72\xe8\xc1\x82\xe5\x92\x2d\xc1\x81\x17\x2c\x77\xc1\x72\x5b\x56\xe6\x16\x2c\x97\x6c\x39\xbd\x6f\x35\x7e\x29\xde\xb6\xe5\x78\x80\x85\xb7\x25\x9b\x59\x26\xde\x76\x85\xad\x2d\x2d\xd1\x4a\x16\xb8\x76\x61\x5f\x5b\x48\xfa\x85\x7d\x25\x5b\x0e\xfe\x5b\x62\x94\x2e\xc1\x47\x5b\xa0\xf2\x05\x4d\x5d\xc8\xd1\x76\xc4\x2d\x47\x8e\xae\x90\xa3\xa2\x95\x2d\xe4\xe8\x42\x8e\xb6\xac\x88\x2d\xe4\x28\xd9\x72\x66\xe0\x42\x8e\x2e\xe4\x68\x0b\x71\xbb\x90\xa3\x64\xcb\x99\x81\xab\x19\x21\x91\xa3\x2d\x28\xed\x42\x8e\x92\x2d\x21\x89\x17\x72\x94\x6c\x66\xca\xc8\x51\x52\x5a\x70\xd5\x85\x1c\x25\x9b\x99\x32\x72\x94\xdc\x97\x25\x6f\xa6\x7c\x91\xcd\x4c\x19\x39\xba\x90\xa3\xed\x88\x69\x46\x8e\x92\xed\xa5\x3e\x4c\xf9\x90\xa3\x2d\x34\xe9\x42\x8e\x92\x2d\x5b\x56\x17\x72\x74\x21\x47\x5b\x30\xd1\x85\x1c\x25\x5b\xce\x33\x5c\xc8\xd1\x25\xf8\x68\x0b\xec\xb9\x60\xa2\xab\xe9\x8d\x61\x21\x97\x48\xa3\x64\x4b\x30\xe3\x85\x09\x5d\x98\xd0\x16\x7a\x71\x61\x42\xc9\x96\x60\xc6\x4b\xf0\xd1\x25\xf8\x68\x4b\x54\x89\x05\xd9\x5c\xf8\xcc\x16\x50\x6c\x01\x30\xc9\xe6\xa3\x00\x00\x73\x01\x30\x5b\x56\xeb\x16\x00\x73\x05\xc0\x14\x95\x6e\x01\x30\x17\x00\xb3\x05\xf7\x5a\x00\x4c\xb2\xe5\x4c\xc6\x05\xc0\x5c\x00\xcc\x16\x8e\x6b\x01\x30\xc9\x96\x68\xc6\x0b\x80\xb9\x00\x98\x2d\x80\xd6\x02\x60\x92\x2d\x9b\x78\x17\x00\x93\x6c\x2f\x4d\xd0\x80\x0e\xc0\x6c\x2d\xb3\x6c\x00\x26\xd9\x12\x91\x78\x01\x30\xc9\x7d\x59\x2a\x49\x47\x6d\x3a\xaa\x96\xaa\xa3\xfe\x5f\x8c\xbd\x4d\xee\xf4\x3a\x72\x67\x3d\x7f\x57\x71\x77\xf0\xa6\x14\x14\xa9\x04\x0a\x77\xd2\xe3\xee\x3d\x64\x46\x04\x01\x0f\x6c\x17\xaa\xed\xfd\x37\x74\x4e\xba\xd0\xf0\xe4\xf6\xe0\xc1\xef\x01\xa1\x7f\x8a\xa4\xc8\xe0\x57\x1c\x86\x00\xe6\x04\x65\x4f\x01\x4c\x25\xb8\x1b\x32\x0d\x78\x9a\x02\x98\x93\x23\xc8\x14\xc0\x54\x82\xc8\xc4\x29\x80\x99\x02\x98\x13\x32\x2a\x05\x30\x95\x20\x32\x71\x0a\x60\xa6\x00\xe6\x9c\x4c\x7a\x04\x30\x15\x63\xfe\xa5\x00\x66\x0a\x3e\xce\x69\x46\xec\xe2\x80\x8f\x41\xb4\xe2\x14\x7c\x4c\xc1\xc7\x09\x75\x93\x82\x8f\x4a\xb8\xa9\x23\xf8\x98\x82\x8f\x13\x9c\x26\x05\x1f\x95\xc0\x5d\x39\x05\x1f\x53\xa2\x71\xc2\x8b\xa7\x44\xa3\x12\xb8\x2b\xa7\x44\xa3\x12\x44\x21\x4e\x89\xc6\x14\x55\x9c\x00\x25\x29\xaa\xa8\x04\x51\x88\x73\x39\x2c\x1b\xa2\x74\x02\x82\xa7\xf8\x62\x1a\xa2\x74\x82\x63\xa4\x28\x61\xca\x08\x4e\xbc\xed\x53\x46\x30\x97\x63\xb0\x25\x75\x0c\x96\x11\x9c\x38\x97\xa7\x8c\xa0\x12\x2f\x4b\x6a\x47\x95\x11\x9c\x38\x97\xa7\x8c\xa0\x12\xb8\x57\xa7\x21\x4a\xd3\xd8\xa3\x13\x77\xf0\x34\xf6\xa8\x12\xc4\x43\x4e\x19\x41\x25\x5e\xd6\x91\x63\xb0\x8c\xe0\xc4\x7f\x3a\x65\x04\x95\x70\xcf\xcc\xd8\xa3\xca\xf3\x18\x79\xb3\xd7\x2f\x7b\x3d\xc3\xcc\xb2\xd7\xcb\x08\xce\xc5\x98\x22\x23\x98\x3f\x46\xf0\x29\xbb\x8c\x60\xde\x36\x06\x96\x30\x32\x82\x29\x23\x38\xf1\x8b\x4e\x19\x41\x25\x5e\xbf\xbf\x9c\x26\x59\x1d\x98\x5e\x63\x8f\x26\x40\x60\xb8\x27\x27\x0f\x98\xc2\x7f\x73\x8d\xf7\x5f\x0f\xde\xb2\x81\x4a\x10\xdd\x38\x65\x03\x95\x78\xb1\xea\x91\x0d\x54\x8e\x89\x93\x70\xca\x06\xe6\x6d\x5b\xa1\x5d\x18\x54\x34\x65\x03\x27\x4e\xc2\x29\x1b\x98\xb7\x23\x15\x93\x50\xd9\xc0\x94\x0d\x9c\x8b\xfe\x2f\x1b\xa8\x18\x08\x33\x65\x03\x53\x36\x70\xe2\x61\x9b\xb2\x81\x4a\xe0\xe1\x9e\xb2\x81\x29\x1b\x38\xf1\x93\x4d\xd9\x40\xc5\x78\x99\x29\x1b\xa8\x04\x31\x85\x53\x36\x50\x39\x26\x6e\xa7\x29\x1b\x98\xb7\x43\x10\xe6\x5b\x36\x30\xef\x5f\xcb\xa6\x19\xcb\x06\x2a\x81\x0b\x7d\xde\x0e\x41\xb7\x83\xc6\xa2\xf9\x08\xdd\xe5\xfd\x6b\x3e\x66\xc4\xe6\x83\x04\x01\x84\x53\xe8\x2e\x85\xee\xe6\xcd\xda\x48\xe8\x2e\x65\xe2\x26\xae\x73\x29\x13\x97\x32\x71\x13\x27\xa8\x94\x89\x4b\x98\xb8\xc0\x4b\x3f\x65\xe2\x52\x26\x6e\x7a\x2c\x29\x13\xa7\x18\xf3\x33\x65\xe2\x52\x26\x6e\xe2\x6a\x93\x32\x71\x4a\x1c\xbe\x54\xd3\x2f\x13\x37\xb9\x36\x3f\x65\xe2\x14\x43\x83\xa6\x4c\x5c\xca\xc4\x4d\x7c\x63\x52\x26\x4e\x09\x82\x0a\xa7\x4c\x9c\x12\x04\x10\x4e\x99\x38\xe5\xf9\x4b\xf2\xe6\x08\x01\xf3\x16\x5c\xc0\x9b\xc6\x23\x4d\x61\xb7\x89\x4b\x4a\x0a\xbb\x25\xb0\x9b\xb1\x47\x53\xd8\x2d\x85\xdd\x26\x7e\x18\x29\xec\xa6\xc4\xc1\x72\x46\xd8\x2d\x85\xdd\x26\x8e\x13\x29\xec\xa6\x84\x5b\xc4\xc2\x6e\x29\xec\x36\xf1\x88\x48\x61\x37\x25\x8e\xc3\x24\x5f\x7a\x59\xaa\x37\x49\xc3\x24\xf3\xc1\x78\x23\xec\xa6\x84\x9b\xcb\xc2\x6e\xca\xf3\x18\x79\x73\xc9\x87\x04\xe1\x82\x53\xd8\x2d\x85\xdd\xa6\xee\x09\xc2\x6e\x4a\x10\x2e\x38\x85\xdd\x52\xd8\x6d\x7a\x34\x2c\xec\xa6\x04\x21\x84\x53\xd8\x2d\xdf\xce\x32\xb9\x51\x3f\x45\xd6\x52\x3e\x6d\x7a\xbe\x2d\x9f\xa6\xc4\x41\x73\x7b\x3b\x42\xc8\xa7\xcd\x9b\xed\x4f\xf9\x34\x25\x0e\x26\x24\xf2\x69\xf9\xb6\x8b\xdf\x74\xb7\xb7\x5d\x1c\x89\x03\x93\xfe\xb6\x8b\x8b\xb1\x4d\x4f\x78\xc5\xd8\x52\x8c\x6d\x7a\x1a\x28\xc6\x96\x60\x6c\xe1\x76\xbb\x18\x5b\x8a\xb1\x4d\xcf\xa3\xc4\xd8\x94\x38\x18\x0d\xc4\xd8\x52\x8c\x6d\x7a\x80\x24\xc6\xa6\x18\x9d\x36\xc5\xd8\x52\x3e\x6d\x7a\x0c\x24\x9f\xa6\x04\xd1\x8a\x53\x3e\x4d\x09\x22\x13\xa7\x7c\x9a\x72\x4c\x8f\x55\xe4\xd3\x94\x20\x5a\x71\xca\xa7\x29\xcf\x63\x14\x41\x4b\xf0\xd6\x12\x30\xd7\x37\x18\x6b\xbe\x61\xd2\xa7\xc7\x2a\xc0\x6a\x3f\x89\x83\xde\x2c\xb2\xa6\x1c\xd3\x53\x0f\x99\x35\x25\x0e\xf3\xe1\x2c\xf3\xed\x9a\xcf\x13\x8e\xb7\x6b\x3e\x24\x0e\xf3\xe1\x9a\x4f\x66\x6d\x7a\xfe\x20\xb3\x96\x22\x65\xd3\x3d\x6d\x91\x32\x25\x0e\xf3\xe6\x9a\x4b\xa4\x6c\xba\xd1\x2a\x52\x96\xb2\x62\xd3\x73\x47\x59\x31\x25\x40\x67\x52\x56\x2c\x65\xc5\xa6\xbb\x50\xb2\x62\x8a\x91\x7e\x53\x56\x2c\x8d\x13\x3b\xdd\x5e\x92\xf8\x4a\xf1\xae\xe5\x16\x8b\x78\x97\x12\xc7\x30\xe9\xf7\xa7\xd3\xc7\x82\xb4\x65\x1a\x75\x4e\xc5\x89\x77\xa5\x78\xd7\x72\xef\x44\xbc\x4b\x09\x6e\xca\x4e\xa3\xce\xa6\x60\xd6\x7a\xd1\x7b\x05\xb3\x52\xe2\x6a\xb9\x5a\x95\xb8\x4a\x88\xab\x38\x18\xd1\x25\xae\x52\xe2\x6a\xb9\x4c\x92\xb8\x52\x02\x4a\x28\x25\xae\x52\xe2\x6a\xbd\xfe\x5f\x86\x6f\x81\x2c\x25\x8e\xdf\x0f\xd3\x94\x05\xb2\x96\x0b\x1a\x81\x2c\x25\xb8\xbe\x3b\x05\xb2\x94\x20\x94\x73\x0a\x64\x29\xcf\x5f\x9a\x66\x36\x59\xb9\x11\xb6\x39\x05\xb2\x94\x63\x39\xf1\x17\xc8\x52\x82\x8b\xbf\x53\x20\x2b\x05\xb2\x96\x8b\x01\x81\x2c\x25\x0e\xb3\xe6\xb0\x29\x90\xb5\x9c\x49\x0b\x64\xa5\x40\xd6\x72\xa6\x24\x90\xa5\x84\xe7\x61\x02\x59\x29\x90\xb5\x9c\x02\x09\x64\x29\x46\x7c\x4e\x81\xac\x14\xc8\x5a\x4e\x41\x04\xb2\x52\x20\x6b\x39\x34\x09\x64\xe5\xc7\x91\x94\x11\x41\x20\x2b\x05\xb2\x96\x16\x5b\x20\x4b\x09\x2e\x2f\x4f\x81\xac\x14\xc8\x5a\x9a\x62\x81\x2c\x25\x08\x0c\x9d\x02\x59\x29\x90\xb5\x34\x94\x02\x59\x4a\x78\x30\x27\x90\xa5\xc4\x61\xf5\x3a\x44\x02\x5c\x1d\x4b\xc3\xf3\x71\x75\xf4\x71\x88\xb4\x7a\x1d\x22\x05\xb2\x96\xa6\x42\x20\x4b\x09\xc8\xb3\x14\xc8\x4a\x81\xac\x65\x5f\x11\xc8\x52\x82\xf8\xd1\x29\x90\x95\x02\x59\xcb\x96\x2c\x90\xa5\x04\xf1\xa3\x53\x20\x2b\x05\xb2\x96\x6d\x50\x20\x4b\x09\xe2\x3d\xa7\x40\x56\x1a\xdc\x77\xf9\x65\x0c\xee\xab\x84\x67\x8b\x06\xf7\x4d\xb9\xad\x65\xbd\xc9\x6d\x25\xdc\x56\x78\xb6\x28\xb7\x95\x72\x5b\xeb\x97\x11\x07\xba\xaf\x03\x1d\xa6\x48\x6e\x2b\xbf\xc4\x75\x5d\xbf\x37\xe8\xd5\x07\xb7\x15\xc4\x71\x4e\xb9\x2d\xe5\x79\xcc\x97\x7e\x4d\x63\x8a\xc3\x22\xea\x0b\x21\x93\xe2\x5d\xeb\xf7\x06\xe7\xcf\x48\x40\xec\xa5\x78\x97\x12\x1e\x5e\x8a\x77\x29\xc7\xfa\xaf\x34\xb3\xbb\xc8\x2e\xb3\x4a\xf1\xae\x94\xdb\x5a\xbf\x34\xcd\xc9\xd7\xc1\x95\xa1\xfa\xeb\xe0\xfa\xd5\x9c\x1c\x74\x8f\xaf\xe6\xe4\xab\x39\x61\x0d\xf5\xd5\x9c\x7c\x35\x27\xe0\x79\xf9\xd5\x5e\x7c\xb5\x17\xac\xa1\xbe\xda\x8b\xaf\xf6\x82\x78\xbb\xf9\xd5\x5e\x7c\xb5\x17\xcb\x24\x4b\xa5\xbd\x60\x0d\xf5\xd5\x5e\x88\x8f\xad\x03\x0b\x2e\x3e\x96\x5f\x47\x6a\x26\xc1\xe2\x63\x29\x3e\xb6\x88\x39\x9b\xe2\x63\x4a\xfc\x4a\xe0\x48\x6d\x48\xe2\x45\x30\xd9\x34\x24\xb1\x12\x44\x2e\x4e\xf1\xb1\x94\x0b\x5b\x1e\x41\xca\x85\x29\x01\xae\x98\x72\x61\x4a\xfc\xca\xee\x48\x2d\x17\xb6\x60\xfd\x52\x2e\x4c\x09\xcf\x7c\xe5\xc2\x94\xe7\x31\x0a\xaf\xa5\xf9\x3a\x52\xdf\xfe\xa5\xcd\x48\xe3\x03\x12\x98\x02\x5f\xf9\x03\xbe\x9e\x77\x0a\x7c\x25\x90\x97\xa1\xe0\xd3\xf0\xc3\xca\xf3\x87\x3e\x76\x99\x46\x36\xf0\x7d\x13\xf8\x4a\x49\xae\x45\xb8\xf5\x94\xe4\x52\xe2\xc0\x90\x49\x72\x29\xc7\x02\x1c\xcc\xb4\xe9\xa6\x4d\x17\x67\x0a\xe1\xae\x94\xe4\x5a\x80\x83\x29\xc9\xa5\xc4\xc1\x92\x4b\x92\x4b\x09\x3f\xa8\x24\x97\xf2\xfc\xa5\x69\x66\x97\xa5\x9f\x67\xdb\x92\x5c\x69\xe4\xe2\x45\xe8\xd4\x34\x72\xb1\x12\x90\x9a\x69\xe4\xe2\x14\xf8\x5a\x84\x4e\x4d\x81\xaf\x04\xf8\x32\x4c\x7d\x0a\x7c\xa5\xc0\xd7\x3a\x19\xa6\x05\xbe\x94\x20\x0e\x72\x0a\x7c\xa5\xc0\xd7\x22\x26\x6a\x0a\x7c\x29\x46\xb3\x4f\x81\xaf\x14\xf8\x5a\x1e\x10\x0b\x7c\x29\x71\xb2\xff\x26\xf0\xa5\x84\xcd\x54\xa2\x4b\x39\x16\x71\x47\x53\xa2\x2b\x21\xba\x02\xb0\x34\x25\xba\x52\xa2\x6b\x9d\xd7\x5f\x63\xde\x29\xf0\x95\x40\x5e\x06\xd8\x4f\x03\x1b\xa7\x24\xd7\x22\x2c\x68\x4a\x72\x65\xfe\x5a\x19\xdd\x5f\x44\x2b\x45\xb4\x16\x54\x5e\x8a\x68\xa5\x88\xd6\x0a\x8b\xed\x78\x06\xa2\x15\x27\x07\x4c\x22\x5a\x29\xa2\xb5\x08\xd9\x96\x22\x5a\x4a\x9c\x87\x7f\x69\xbd\x3a\x9e\x79\x04\x29\xa2\xa5\xc4\xf9\xfb\x4b\xeb\xd5\xf1\x2c\xec\x02\x8e\x67\x48\x10\x62\x39\x45\xb4\x94\xd0\x3f\x40\x44\x4b\x79\xfe\xd2\x34\xf3\xc1\x78\x66\xef\x14\xd1\x4a\x11\xad\x15\x1c\x9e\x88\x68\x25\x58\x56\x10\x14\x39\x0d\xaa\x9b\x06\xd5\x5d\x04\x38\x48\x83\xea\x2a\x01\x89\x9b\x06\xd5\x4d\x83\xea\x2e\x70\xb7\x34\xa8\xae\x12\x44\x3b\x4e\x83\xea\xa6\x41\x75\x17\x31\xbd\xd2\xa0\xba\x4a\x10\xed\x38\x65\xc0\x94\xb0\x17\x1b\x54\x57\x39\x16\x41\x15\xd2\xa0\xba\x4a\xd8\x8b\xcb\x69\xa9\xf4\xd8\x22\x44\x56\x4a\x8f\x29\x71\x5a\x50\x47\x42\xe9\xb1\x15\x4c\xda\xa4\xc7\x94\x38\x59\xa5\x48\x8f\xa5\xb1\x77\x57\xd0\x44\x8d\xbd\xab\x84\x36\xc1\xd8\xbb\x69\xec\xdd\xe5\xc1\xad\xb1\x77\x95\xd0\x26\x18\x7b\x37\x8d\xbd\xbb\x08\x27\x95\xc6\xde\x55\x02\x98\x38\xc5\xd3\x94\x20\x10\x73\x1a\x7b\x37\x25\xd6\x96\x27\xb2\x12\x6b\x09\xa5\x16\xa7\xdf\x45\x3b\x21\xb1\xb6\x08\xe3\x94\x12\x6b\x4a\x68\x61\x8c\xbd\x9b\x06\xd5\x5d\x9e\xc8\x1a\x35\x57\x09\x2d\x8c\x51\x73\x53\xd6\x6d\x81\xfa\xa5\xac\x9b\x12\x70\xce\x59\x76\xe3\xb2\x1b\x13\x02\x22\xcb\x6e\x8c\xc4\xe9\x57\x76\x62\x2b\x25\xb7\x08\x86\x93\x52\x72\x59\xf6\x53\xec\x95\x94\x5c\x4a\xc9\x2d\x4f\x42\xa5\xe4\x94\xd0\x5e\x49\xc9\xa5\x94\xdc\x22\xce\x4b\x4a\xc9\x29\x41\xa8\xe7\x94\x92\x4b\x29\xb9\x45\xf4\x88\x94\x92\x53\x42\xb3\x26\x25\xa7\x84\xae\x30\x52\x72\xca\xb1\x88\x7e\x92\x52\x72\x4a\x9c\xb6\x40\xc7\x33\x29\xb9\x45\xf4\x93\x94\x92\x53\x42\x83\x28\x25\x97\xe2\x6f\xcb\x73\x55\xf1\x37\x25\x4e\x5b\xa0\x93\x69\xb9\xb6\x45\x58\x8f\x94\x6b\x4b\x83\xd5\x2e\x62\x40\xa4\x10\x9b\x12\x3a\xdb\x18\xac\x36\xe5\xda\xd6\xb0\xca\xb5\x51\x42\x6c\xcb\x43\x54\x21\xb6\x94\x4e\x5b\x44\x18\x48\xe9\x34\x25\x08\x3a\x9d\xd2\x69\x29\x9d\xb6\xb8\xc9\x3e\xa5\xd3\x94\x38\x59\x86\x48\xa7\x25\x88\xd9\xf3\xd8\x53\x25\x32\x66\x29\x50\xb6\x60\xf8\x52\xa0\x4c\x09\xe2\x55\x67\xdb\xb5\x8c\xce\xba\xb8\x0a\x3d\x8d\xce\xaa\x04\xf1\xaa\xd3\xe8\xac\x69\x74\xd6\xe5\xe1\xa1\xd1\x59\x95\x70\xdc\x30\x3a\x6b\x4a\xac\x2d\xb0\xbe\x94\x58\x53\x42\xc7\x22\x43\xb1\x2a\xc7\xba\xf8\x0e\x86\x62\x55\x42\xc7\x22\x43\xb1\xa6\x10\xdb\xba\x30\xdb\x42\x6c\xd9\x0e\xa4\x74\x71\x21\xb6\x14\x62\x5b\xdc\xf3\x9d\x42\x6c\x4a\x10\x81\x27\x85\xd8\xd2\x18\xab\xeb\x3a\xfd\xb5\xdb\x34\x8a\x80\x25\x10\x62\x53\x9e\xc7\xc8\xc8\xfd\x35\x8d\x41\xde\x8f\xc5\x95\x20\x29\xeb\xb6\xb8\xb5\x3b\x65\xdd\x94\xd0\x77\x49\xd6\x4d\x89\x93\x29\xbc\xac\x9b\x72\xac\x0b\x5b\x63\x28\x56\x25\x74\x67\x32\x14\xab\xf2\x3c\xe6\xaf\x2d\xd3\x68\x70\xcc\xf4\x45\xe2\x52\x24\x6e\x79\x98\x2a\x12\xa7\x04\xa1\xac\x53\x24\x2e\x45\xe2\xd6\x35\xfe\xfa\x5e\xd4\x94\x98\xcb\xb6\x4f\x5d\x7e\x11\xfb\x54\xdb\xa7\x58\x43\x48\xcc\xa5\xc4\xdc\xba\xac\x43\xfb\x94\xc4\xdc\xf2\x60\x55\x62\x2e\x25\xe6\x16\x97\xdc\xa6\xc4\x9c\x12\x84\x31\x4a\x89\xb9\x34\x80\xe9\xe2\x52\xd7\x34\x80\xa9\x12\x5c\xa6\x90\x46\x28\x4d\x23\x94\x2e\x02\xec\xa7\x11\x4a\x95\xe0\x32\x85\x34\x42\x69\x1a\xa1\x74\xc1\x15\xa6\x11\x4a\x95\x20\x28\x52\x8a\xe4\xa5\xe1\x48\x17\x37\x92\xa6\xe1\x48\x95\x38\xed\x79\x9e\xdf\x49\xee\x2d\xb8\xc2\x94\xdc\x53\x82\xc8\xd9\x29\xb9\x97\xdb\x4e\xcb\xa5\x9c\xb9\xed\xb4\xdb\x4e\x8b\xa9\xdf\x76\x5a\xc3\x91\x2e\xae\xd6\x4c\xc3\x91\x2a\xe1\x4c\xc8\x70\xa4\x69\x38\xd2\x45\x78\xfa\x34\x1c\xa9\x12\xba\x93\x89\x06\xa6\xe1\x48\x17\x17\x64\xa6\xe1\x48\x95\xe0\x56\x87\x34\x1c\xa9\xf2\x3c\x76\x92\xb6\x4c\xe3\xa3\xb2\x10\x32\x1c\x69\x0a\x1a\x2e\x4f\x4c\x05\x0d\x95\xe0\xf2\x87\x94\x24\x4c\xc3\x91\x2e\xee\xaa\x4c\xc3\x91\x2a\xc1\x55\x0f\x69\x38\xd2\x34\x1c\xe9\xe2\x62\xca\x34\x1c\xa9\x12\x04\xd3\xce\xad\xf1\x90\x4b\x5c\x9e\x7b\xca\x25\x2a\xa1\x47\x9c\x5c\xa2\x12\xdc\xfe\x90\x86\x23\x55\x8e\xc5\x15\xde\x29\xaa\xa8\x84\x4e\x72\xa2\x8a\x29\x83\xb8\xb8\x4b\x32\x65\x10\x53\x06\x71\x4d\x26\xa4\x32\x88\x29\x83\xb8\xa6\x15\x67\x9f\xda\x8e\x91\xac\x7b\x64\x10\x53\x06\x71\x41\x68\xa6\x0c\xa2\x12\xfa\xdc\xc9\x20\xa6\x0c\xe2\xe2\x1a\xba\x94\x41\x54\xe2\xfc\xfd\xa5\xa5\x77\x8c\xe4\x32\xb9\x94\x41\x54\x82\xa0\xdb\x29\x83\xa8\xc4\xe9\x8f\x39\x46\x1a\x67\x74\x71\x13\x5b\x1a\x67\x54\x09\xee\x9c\x48\xe3\x8c\x2a\xcf\x63\xa6\xf9\xe9\xed\xcf\x2c\xb6\x8c\x33\x9a\x06\x10\x5d\xdc\x28\x5d\x72\x89\xf5\xe3\x12\xd7\x93\x32\x4d\x61\xbb\x82\xf0\x60\x25\x97\x58\x72\x89\x8b\x2b\xd1\x4a\x2e\x51\x09\x3c\x04\x4b\x2e\xb1\x04\x0e\x17\xf7\x9f\x95\xc0\xa1\x12\x44\x11\x2b\x81\xc3\x7a\x4d\xb3\x71\xf8\x86\x36\xad\x79\xec\x26\x69\x93\x64\x9b\xe1\xde\xe9\x92\x4b\x54\x82\x30\xdc\x25\x97\xa8\x04\x97\x66\x94\x5c\xa2\x72\x2c\x6e\x2c\x2b\xb9\x44\x25\x88\xcc\x5d\x86\x1e\x55\x9e\xc7\x4c\x5b\xa6\x2d\x1e\x3b\x49\xba\x4d\x32\xbb\x27\x69\xb7\xf9\x60\xa8\x0a\x2b\xf2\x36\x1f\xf7\xef\xa5\x64\xf7\xf6\xa5\xb7\x2f\xbd\x48\xf2\xa5\xce\x0c\xb9\xee\xab\xc4\x17\x95\x20\x5a\x77\x89\x2f\x96\xf8\xe2\x02\xbd\x2d\xf1\x45\x25\x88\xd6\x5d\xe2\x8b\x4a\x10\x99\xbb\xc4\x17\x95\x63\x41\xde\x96\xf8\x62\x81\x2f\x46\xf8\xf9\xde\x96\xca\x8e\xc0\xcd\xd5\x25\xbe\xa8\x04\xe1\xb5\x4b\x7c\xb1\x0c\x47\xba\xb8\x83\xaa\xc4\x06\xeb\xf5\x6b\x6d\x93\xbc\x7d\xad\x37\x5a\x1b\x21\xb7\x4b\x6c\xb0\x5e\xbf\xd6\x36\xf9\xd3\xf4\x0d\x8e\x1e\xd0\xb8\x25\x36\x58\x62\x83\x0b\x4c\xb5\xc4\x06\x0b\x6c\x30\xc2\x16\xd2\x3e\xe6\xe8\x71\xfb\x05\xdb\x72\x31\x7a\x10\x9a\xbb\xc4\x06\x4b\x6c\x70\xdd\x7e\x9a\xb6\x7e\x19\x3d\x58\x0e\x96\xd8\xa0\xf2\x3c\xe6\x9f\x7e\x4d\xfb\xf2\x18\x95\xc9\xa9\x60\x49\x17\xae\xdb\x3a\xdf\xe6\x6d\x5b\x4b\x54\xe6\x36\x6f\x2c\x11\xc3\xf6\xb6\xfd\x0c\x8e\x3b\xb7\x95\xb9\xcd\x2e\xe3\x4e\xd8\xde\xb6\xd9\x75\x67\xf4\x3e\xe2\x2f\x07\xef\x02\x4e\xfc\x49\x84\xcd\x71\x5b\xd5\x8e\x5e\x5c\xfc\x51\x32\x8a\x05\xa3\x18\x44\xeb\x2e\x19\xc5\x92\x51\x5c\x5c\x86\x51\x32\x8a\x4a\x10\x9a\xbb\x64\x14\x4b\x46\x71\x71\xcb\x45\xc9\x28\x2a\x41\x68\xee\x92\x51\x2c\x19\xc5\x75\xfb\xa7\x97\x2f\x65\xf4\x62\x5d\x5c\x32\x8a\x4a\xb0\x06\x2e\x19\x45\xe5\x58\xdc\xe9\x50\x32\x8a\x4a\x10\xad\xbb\x64\x14\x95\xe7\x31\x8a\xc0\x80\xa6\x04\xd1\xba\x4b\x46\xb1\x64\x14\x17\x77\x3a\x94\x8c\x62\xc1\x25\x06\x91\x05\xeb\xd0\x86\xc9\x28\x2e\xce\x81\x4b\x46\x51\x89\xf0\x05\xda\xb0\x43\x1b\xc6\xe5\x07\x75\x68\xc3\x90\x88\xdf\x0b\x2c\xbc\xc6\x09\xfe\xb5\x0e\x8d\x13\x12\x44\xeb\x2e\xe9\x46\x25\x58\xb2\xd7\xa1\x71\x3a\x34\x4e\xf0\xf8\x75\x68\x9c\x0e\xad\x4e\x50\x6d\x5a\x1d\x81\xc7\xc5\x39\x70\x09\x3c\x2a\x11\x96\x80\x85\x66\x09\x3c\x2e\x58\xf6\x12\x78\x54\x82\x30\xdc\x25\xf0\x58\x87\x56\x07\x34\xb7\x0e\xad\xce\xa1\xd5\xb1\xa0\x5a\x1d\xb9\xc8\xc5\xa1\x6f\xc9\x45\x2a\x11\x83\x7c\x68\x62\x64\x20\x17\xc7\xb4\x25\x03\x59\x30\x90\x81\x9b\x76\xc9\x40\x96\x0c\xe4\xe2\x92\xdd\x12\x72\x54\x82\x2d\x86\x12\x72\x2c\x21\xc7\x05\x87\x5b\x42\x8e\x4a\xb0\xc5\x50\x42\x8e\x75\x7c\x7c\xe9\x4d\x43\x22\xac\x8d\x12\x6c\x31\xd4\xf1\x61\xd4\x90\x85\x5c\x70\xb8\x25\x0b\xa9\x04\x01\xbc\x4b\x16\x52\x09\x82\x75\x97\x2c\xa4\xf2\xfc\x25\x45\xf8\x9a\x5d\xc6\x5a\x82\x75\x97\x2c\xa4\xf2\x3c\x46\x76\xb5\x7e\x87\xd6\xcf\x4f\xaa\xf5\x3b\xbe\x1a\x18\xc6\xc7\x83\x7b\xb7\x94\x08\x3f\x29\x87\xa3\x25\x32\xb9\x40\x89\x4b\x64\xb2\xc0\x24\x83\x1d\x91\x32\xe4\x6c\x89\x4c\x2e\x0e\x9a\x4b\x64\x52\x89\xb8\x78\x41\x9a\x37\xbc\x5f\x17\x8c\x70\x89\x4c\x2a\xc1\xc6\x49\x89\x4c\x96\xc8\xe4\x82\xea\x2d\x91\xc9\x3a\xca\x37\x68\x42\xca\x37\x94\x6f\xa0\x7a\xcb\x37\xb8\x56\x06\x3f\x2d\xc9\x4a\x25\xc2\x26\x58\x96\x5e\x9b\x0e\x7e\x5a\x92\x95\x75\x68\xd3\x27\x55\xae\x4d\x3f\xb4\xe9\x6f\x8d\x94\x36\xfd\xd0\xa6\xdb\x52\xb5\xe9\x32\x99\xeb\xad\xa5\xd1\xe4\x1e\xda\xd7\xb7\x7d\x46\xfb\x7a\x68\x5f\x19\x97\x0c\x7d\xab\x3c\x8f\x91\x39\x0d\xe8\xa1\x01\x9d\x94\x54\x03\x2a\xe1\xb9\x80\xfa\x4a\xc2\xb3\x4e\x0d\x28\x7d\xe1\xd4\x80\x4a\x78\x2e\x4e\x9a\x4b\xc2\x53\x09\xf6\x8d\x4a\xc2\xb3\x24\x3c\x17\x08\x5b\x49\x78\x2a\x41\x94\xf0\x92\xf0\xac\xd3\xa5\x3d\x20\x5a\x89\x73\x2a\xc1\xf6\x52\x89\x73\x2a\xcf\x63\xa6\xf9\x52\xad\xe5\x22\xbb\x5a\x4b\x71\xce\x05\x9e\x55\xe2\x9c\x4a\x10\x24\xbc\xc4\x39\x4b\x9c\x73\x81\x67\x95\x38\xa7\x12\xdc\x68\x55\xe2\x9c\x75\x6a\x2d\xdf\x16\x4b\x6b\x79\x6a\x2d\xe9\xf5\xa7\xd6\xf2\xd4\x5a\xbe\xcd\x88\xd6\xf2\xd4\x5a\x3e\xcb\xa6\x3a\xb5\x96\xc6\xe5\x5d\x6f\xff\x54\xd3\x78\x6a\x1a\x17\xd5\xab\x69\x3c\x35\x8d\xd0\x3a\x75\x6a\x1a\x4f\xe7\x6d\x8b\x1a\x77\xde\x26\x43\xba\xa0\x75\x4a\x86\xb4\x4e\x27\x64\x8b\xec\x3a\x21\x93\x21\x5d\x70\x2d\x25\x43\xaa\x04\x01\xc1\x4b\x86\xb4\x64\x48\xd7\xfb\xed\xaf\x59\x04\x4d\xe3\xed\x5f\x5a\x84\xdb\x97\xd2\xed\xcf\xbb\x4d\xc3\xfc\xdc\x7f\x7d\x3f\x4b\x9d\x37\xd6\x49\x12\x75\xe1\x0d\x50\x92\xa8\x4a\x84\xa5\xd1\xe6\x8a\x9d\xde\xc0\x26\x25\x76\xaa\x04\x37\x88\x94\xd8\xa9\xf2\x3c\x66\x9a\x9f\xdc\xa9\xde\x4d\xed\x3b\xd5\x13\x3b\xbd\x5f\x2f\xd2\x34\xd7\xa7\x53\x3d\x6c\xae\xd8\x69\x9d\x1f\x5f\x7a\x50\x6a\xcd\xf5\xa9\xb9\xbe\xa9\x7d\xcd\xf5\x89\xb9\xbe\xf1\x4a\xa8\x53\x73\x7d\x6a\xae\x59\x45\x9c\x9a\xeb\x13\x3b\x7c\xc3\x60\xd4\xa9\x1d\x3e\xb5\xc3\x58\x70\xb9\xd6\x82\x61\x3d\x6e\x38\x87\x12\x62\x55\x82\x1b\xcb\xea\xd4\x9a\xca\xb5\xde\x90\x09\x25\xd7\x5a\xa7\x66\xd2\xcf\xab\x99\x94\x6b\xbd\x21\x02\x4a\xae\x55\x89\xf0\xf3\x6a\x26\xcf\xb4\x08\x8c\xd4\xa7\x66\xf2\xd4\x4c\xbe\xfd\x4b\x8b\x80\x99\xbc\xf1\xb4\x2f\xf1\xd7\x3a\xcb\xfc\x6a\x01\xb4\x7f\xa7\xf6\x8f\x71\xe3\xd4\xfe\x49\xc9\xde\xf8\x78\x97\x94\x6c\x9d\xda\x3f\x1b\x90\xf6\x4f\x4a\xf6\xc6\xf1\xb9\xa4\x64\x95\x20\x1c\x78\x49\xc9\x96\x94\xec\x8d\xe3\x73\x49\xc9\x2a\x41\x38\xf0\x92\x92\x2d\x29\xd9\xfb\x65\xd7\x76\xb2\x7a\x3a\x59\xb5\xbd\x69\x39\x91\x20\xcc\x77\x49\xc9\x2a\xcf\x5f\xf2\x6b\x1a\x53\x24\x86\x4d\x50\x63\x2a\x25\x7b\xbf\xb4\x4e\x1a\x53\x24\x08\xf3\x5d\x52\xb2\x25\x25\x7b\xe3\x0e\x5c\x52\xb2\x05\x19\x1b\x84\xf9\xae\xd0\x98\x4a\xc9\xde\x2f\xba\xb6\x94\xac\x12\x5c\x4c\x57\x52\xb2\x25\x25\x7b\xe3\x37\x5b\x52\xb2\x4a\x40\xe4\x94\x94\x6c\x49\xc9\xde\x78\xbf\x96\x94\xac\x12\x10\x39\x25\x25\x5b\x71\xf9\x52\xda\x60\x68\x4c\x91\x20\xcc\x77\x85\xc6\x54\x98\xf6\xc6\x3b\xb4\x84\x69\x95\xe0\x36\xbc\x12\xa6\x2d\x61\xda\xfb\xf5\xe6\xa5\x1a\x53\x60\xda\x20\xfe\x71\x09\xd3\x96\x30\xed\x8d\x3f\x67\x09\xd3\x2a\xc1\xae\x76\x09\xd3\x2a\xcf\x63\xbc\x61\xfa\x52\xbc\x64\xd9\xd5\x2e\x63\x44\x97\x30\xed\x4d\xc4\xff\x12\xa6\x55\x82\x68\xca\x25\x4c\xab\x04\x61\xae\x4b\x98\x56\x79\xfe\x92\x7a\xd3\xbe\x22\xc1\x7e\x78\x09\xd3\x2a\xcf\x63\xfe\x9a\xf9\x60\x86\x3a\x4e\xdf\x69\xe1\x39\x32\xbd\x0f\xeb\x6d\xfd\xf2\xf6\xe5\x31\xea\x83\x23\xd3\x92\xb9\xbd\xf1\x85\x2c\x99\x5b\x25\x88\x86\x5d\x46\xa1\x2e\xa3\x50\xdf\x87\x25\xd5\x5a\x23\x41\x34\xec\x32\x0a\x75\x19\x85\xfa\xc6\x17\xb2\x8c\x42\xad\x04\xd1\xb0\xcb\x28\xd4\x65\x14\xea\xfb\xb0\x58\xda\x59\x24\x06\x93\x08\x39\x5f\x25\x08\x9a\x5d\xe1\xdc\x36\xb4\xa9\xc7\x2f\xcd\xc2\xbf\x2d\x3c\xf5\xa1\x4d\x95\x10\xbe\xf1\xd5\x2b\x11\xe0\x02\x01\x0e\x62\x55\x97\x08\x70\x89\x00\xdf\x78\xb4\x94\x08\xb0\x12\xc4\xaa\x2e\x11\xe0\x32\x7e\xf5\x8d\x57\x5b\x19\xbf\x5a\x09\x6e\x50\x2c\xe3\x57\x97\x08\xf0\x8d\x7f\x59\x89\x00\x2b\x31\x58\x4a\x89\x00\x2b\x41\x94\xeb\x12\x01\x56\x9e\xbf\xe4\x05\xce\x6d\x91\xe0\xee\xc5\x12\x01\x56\x9e\xc7\x28\x82\xd6\x18\x89\x61\x09\xb4\xc6\x22\xc0\x37\xce\x57\xf5\x0e\xf2\xf1\x5e\xfd\xe7\x1f\x5c\x59\x50\x6f\xeb\xfb\xdd\x9c\xa8\x3d\xcf\x7c\x7c\xe6\xf3\x3c\xc3\x86\x79\xe9\xd8\x55\x9f\xcf\x8b\x2a\x7b\x52\x9c\x73\x7e\x76\xff\xf9\x87\x9d\xec\xeb\x5f\x7d\xe3\xf3\xe7\x1f\x44\xa1\xae\xef\x78\x91\xf2\x74\x7f\xa2\x29\x97\x0e\x3b\x85\x6f\x0c\x17\x3a\x96\x8e\x2d\xf5\x7d\xde\x45\xe8\xd9\xd2\x29\xa4\xbe\xef\xcf\x9f\x7f\x5c\xaf\xbf\x76\x4e\x2b\x7d\x41\xea\xfb\x58\xe7\x8b\x26\x94\x66\x25\x9f\x1f\x05\xab\x29\xcf\xe1\x15\x22\xb6\x94\x27\xe3\xc5\xbd\xa7\x04\x67\x29\xaf\x38\x55\x26\xd6\x30\xc1\xbb\x2b\x9f\xb5\x0a\x21\x57\x2a\xfd\x8c\xf9\x14\x9b\xc8\x20\x55\xbe\xab\x9e\x77\x71\x57\x5a\x95\xef\xe2\x7c\x09\xaf\xe8\x6a\x9f\xe9\xe7\x19\x2e\xce\x28\xcf\x29\x8a\xa3\x83\x03\x2a\xb3\x3c\x32\x28\x36\xee\x0f\xfc\xfe\x8a\xdd\xfb\xbf\x95\x77\xd7\x01\xfe\xf4\x8b\x9f\xea\xd7\xf3\x53\x41\xd0\xf3\x76\xbf\xa9\x5f\xb9\xff\xfc\x23\x38\xa2\xe9\x57\xbd\x48\x7a\x64\xd0\xfb\x9a\xbd\x9c\x47\x9e\x66\x44\x3c\xbe\x7e\xb1\x48\x50\x82\x3d\xd6\x7e\x31\x46\x36\xbb\x33\xc1\x9d\x85\xfd\xea\x5f\xd2\xfa\xf3\x8f\xf5\xcb\x04\x28\x6e\xbf\x9e\x5a\x08\x22\xac\xf5\x61\xbe\x0e\xf2\x05\x54\xd4\x87\xf9\x3a\x92\xa4\xc7\x4c\xf6\xf1\xe4\xf1\x27\x01\x1c\xd8\x87\x59\x3d\x9e\x9f\x0f\x6e\xcb\xee\xc3\x9f\x47\xd6\xfb\xc5\x53\x0c\xa3\x7d\xf0\x46\xee\x20\xee\xd3\x37\x9e\x91\x84\x5a\x5f\x24\x95\x49\x45\xd2\x49\x52\x93\x44\xbe\x88\xee\xd4\x4e\xe4\xfa\xdc\x8f\xad\xe6\xf6\xaf\x3e\x89\x8a\xac\xc4\xdb\x3f\x24\x28\x72\x9f\xbc\x91\x59\x69\x87\x6f\x44\x02\xb2\xba\x23\x4e\x93\x1e\x5b\xc2\x42\xa3\x23\x82\xa4\xb1\x78\xea\xf9\x79\x06\xc5\x9f\xfc\xd7\x53\x0c\x8d\x1d\xd7\x7e\xfa\xcf\xf1\x14\x28\x26\x35\x81\x04\x61\x2f\xda\x41\xaa\x63\xe6\xf3\x54\x98\x54\x26\xd5\xf3\x69\x1f\x7b\xd3\xc1\xa6\x6c\x07\x7d\x88\x49\x4c\x6b\x44\x3b\x9e\x69\xd0\xc0\xdb\xb1\x83\x58\x10\xca\x60\xbe\xdf\x41\x27\x56\x06\xb7\x7a\x74\xd8\x26\xe2\x69\x07\x03\x67\xe1\x8e\x32\xf7\x8f\x0c\x56\x00\x1d\x65\xee\xeb\xc3\x53\xfe\x21\x55\x18\xfd\xe2\x29\x92\xda\x4c\x3c\x32\x0e\x73\xdf\xd6\xd7\x23\xd7\xcd\xa7\x8d\xb6\xbe\x1e\xfb\x33\x98\x57\x77\xb4\x99\x78\x64\x30\x9d\xed\xb0\x15\x22\x03\xcf\xde\x0e\x9b\x49\xf4\x97\xa7\x28\x23\xfb\x80\xca\xc0\xf0\x76\xb4\xf5\xf5\xc8\xe0\xb0\xbd\xa3\xad\xaf\x47\x06\x7e\x89\x1d\x4d\xc3\x8c\x4d\xee\xfd\x68\xdb\xdc\x6f\x72\x3f\xc8\xd7\x36\xf7\x8f\x0c\x10\xe6\x8e\x6d\xee\x37\x55\x38\x68\x13\xdb\xdc\x6f\x72\x4f\xbb\x8f\x6d\xee\xf7\x9b\xa7\xfc\xc3\x8f\x49\x4f\x15\x32\xd3\xea\xb0\x15\x22\x03\x73\xdd\x61\x2b\x8c\x67\x8e\x36\x98\x41\x75\x6c\x73\x8f\xe5\xc5\xf4\xf6\xb0\x61\x22\x03\xef\xd9\x1e\x36\xcc\xf1\x34\xc6\xc1\xf4\xa6\x47\x0c\x93\x26\x4f\x1d\x24\x2d\x93\xc8\xc4\x63\x86\x7a\xc4\xd7\xa4\x2f\x49\xfe\x7c\x9a\x44\xad\x5e\x83\xa4\x32\x89\x7c\x9d\xfe\x3c\xf9\xe2\x72\x89\x81\x5f\x6b\x8f\x61\x26\x1e\x19\x8c\xf8\x3d\x98\x4d\xf6\x18\x34\xdf\x8b\x9f\x1f\xbf\x3f\x6c\x06\x0e\xf2\x35\xf8\x1c\xe3\xe2\xb7\x16\x3f\x7f\xf9\x5b\xcf\xc4\x70\x70\x5e\xdd\xe3\xb2\x40\x8f\x0c\xa2\x57\xf7\x60\x8e\xa8\x0c\xfc\x24\x7b\x30\x47\xec\x71\x39\x2e\xdd\x24\x59\xc6\x47\xc6\x65\xbe\x2e\xcb\x78\x51\xc6\x65\x92\x65\xbc\xc8\xd7\x49\x81\x2e\xf3\x35\x79\xe3\xc9\x6f\x4d\xdf\xf8\x4c\x00\xc7\x15\x3c\x85\xeb\xa7\x32\x70\xaf\x6c\x6f\xc6\x68\x6e\xc3\x18\xdc\x5d\xdb\x63\x9a\x09\x3b\x32\x1d\x66\xd8\x91\xc7\xdc\x3c\xc5\x1f\x12\x4a\x50\x19\x0c\xcf\xed\xf5\x19\xca\xb8\x06\xc5\x5e\x56\xce\x23\xe3\xb2\x01\x2c\x2b\xfa\x91\x81\x23\x65\x7b\xa3\x86\x32\xae\x49\x19\x97\xb9\x7f\xe6\x88\x86\xec\xee\xb1\xcc\xea\x22\xab\xeb\xaf\x57\xcb\x3d\x96\x25\x59\x54\xa7\x25\x59\x56\x27\x26\x09\xff\xcc\xf6\xe2\x0b\x65\xe0\x64\xd9\xe3\x6d\xb6\x9f\xb5\xb2\x91\x9c\x7b\xbc\xfd\x5a\xcf\x1c\x6e\x4c\x5b\xf7\xdb\xea\x7c\x53\x9d\xd8\xfe\xf1\x36\x8f\xcf\x1c\xc1\x40\xce\x3d\xde\x66\x62\xfb\xc6\x27\x13\x97\xdd\x82\x4b\x00\xc6\x69\x12\x73\x66\x65\x70\x76\xd0\x5c\x0e\xf0\xc8\xf3\x87\xdc\x48\xd1\x86\x23\x6f\x40\xff\xc1\x06\x55\x5f\xef\x36\xa9\xff\x69\xf1\xae\x37\x8d\x01\xce\xff\x67\xf1\xc4\xfc\x95\x9f\x79\x13\xf3\x6f\x30\xfe\x9f\x79\x23\x30\xf8\x4f\x7e\xb6\xcc\xf8\xe0\x4d\x2c\xf0\x9f\x2d\x33\x16\xb8\x32\x70\xd6\x6c\xe2\x82\xff\xad\x2f\xca\xc8\x8a\xbb\xa7\x65\x9c\xcf\x68\x33\xb8\x4a\xbb\xa7\xa3\x0d\x32\xf0\x63\x6e\xe9\xf1\x9e\xb4\xee\xc1\x6f\x4d\x5b\x37\x32\x70\x3c\xee\x79\xf1\xc6\xb9\xec\x88\x24\x59\x13\x44\x83\xfd\xb5\xc8\x99\x5f\x93\xbe\x7f\xfe\x71\x11\xbc\xba\x67\x92\x7b\x58\xe0\xc1\x9d\xc0\x0d\x10\xfc\x93\x69\xd7\x17\x0b\xee\x49\xee\xe7\x33\x3d\xef\x65\xee\x17\x6f\xe4\x34\xb8\x0d\x1f\xd9\x8b\xa7\xb8\xf2\xb6\x6f\x9f\xba\x79\x0a\xe4\xab\x25\xef\x9a\xc0\x70\xc6\x37\x6b\xe3\xc2\x29\x97\xe6\xcd\xb8\x70\x0d\xa8\x36\xde\x8b\x24\xf3\x85\x0c\x2e\xb0\x6b\x99\xb5\xbe\x9f\x37\x5e\x6c\xe2\xb4\xb3\xe4\x7e\x3f\x16\xf3\x62\x1b\xa3\xdf\x71\x99\x74\x3d\xf3\x3c\x5a\xce\x3b\xf8\x79\xe6\xd2\x17\xd7\x1f\xb4\x93\xe9\x06\x17\x32\x98\x4d\x4b\x0b\x29\x17\xa0\x68\x4b\x0b\x35\x61\x99\x2e\x80\xa7\x36\x2a\x93\x72\x01\x0a\xb4\x51\x99\x1a\xce\xe5\x3a\xc8\xfd\x9b\x0d\x00\x45\x27\x89\x26\xa4\xd2\x23\x4f\x26\x70\x6b\x6d\xe7\xef\xcd\xfc\xfd\xc2\x75\xb9\x9d\xc0\x37\x94\xc4\xc5\x69\x77\x7f\x6c\xd1\xc8\x05\xa3\xde\x1f\x5b\x34\x72\x71\xaa\xda\x4c\xf9\x7f\x72\xb1\x6d\xda\xd2\x15\xfd\xf9\x9e\x3c\xf5\x7c\x34\x49\x0a\x45\x90\xa2\x3f\x2c\x65\xfa\xd3\xfc\x21\x13\x42\xc9\x07\xe5\x62\xcb\xb8\x3f\xce\x07\x3e\xcf\xb0\x7e\x71\x0d\x4b\x7f\x1c\xd6\x91\x6b\xd0\xdd\x85\x1c\x9a\xc5\x86\x57\xf9\xb7\xab\x8d\x66\xdd\x70\x39\x60\xbb\x70\xe8\xef\x63\x54\xae\xe1\x53\x2c\x1c\x95\xe9\xa7\xd5\x9b\xbc\x89\xfb\xe1\x6d\xf1\xfd\x25\x10\xbf\x72\x39\x2b\xfd\xda\xf9\xbe\xcd\x53\x8c\xe1\x5f\x27\x12\x88\x71\x12\xfa\xeb\x44\xe2\x4b\xbe\x08\x3e\xde\x2e\x3d\xda\xa5\x07\xc1\xab\xdb\xb5\x47\xe3\x85\x7a\x81\x75\xb7\x4e\xa8\xca\xe2\xd6\x97\x4e\x67\x0d\xac\x2c\xbc\x74\xb9\x5d\x5a\x28\x8b\xdd\xe3\x2e\x87\xf5\x8a\xa7\x72\x88\xe9\xd2\x15\x6f\x93\xde\xcf\xcf\x33\x8b\xaf\x60\x6e\xc1\x9a\xc4\xbb\x94\xdb\x45\x49\x17\x65\xe4\xb8\xac\xcb\x32\x22\xd7\x4d\x4d\x94\x06\x06\x2f\xc1\x8b\x5b\x81\x5b\x27\xc1\xae\xaf\x63\xf8\x45\x52\x98\x74\xf3\x14\x3f\xff\x35\x13\x8f\x0c\x96\xde\xed\x45\xf7\xca\xc5\x2d\xbe\x5d\x1c\xac\x74\x7d\x31\x43\xa7\x49\xd4\x2a\xd7\xdd\x5f\x5c\xec\xdb\x95\xc3\xa4\xa7\x8b\xb2\xa2\xee\xb2\x6f\x57\x92\x7b\xcc\x63\xa5\xb9\x4f\xa6\x41\x8c\xbb\xe5\xea\x02\xb9\x38\xca\xe9\x72\x75\x81\x0c\x97\x4b\xe5\x42\x08\xf1\xca\xd6\xae\xb2\x56\x8b\x32\x86\x49\x96\x91\xfe\x08\x58\xd8\xde\xa1\xaf\x0c\xfc\x0a\x5b\xf7\xc3\xae\x67\x5e\x77\x71\xdc\xd3\xe5\xbc\xae\x98\xc4\x0d\x2b\xda\x49\x1c\xf2\x9b\xf3\xe0\x75\xf8\x93\xeb\x6d\xbe\x9c\xd7\x95\xf3\xba\xf1\x7c\x0e\xd7\x8d\xca\x18\x63\xfd\xf5\x50\xdc\xb6\x8f\x7e\xa6\x7d\xde\xab\xda\xed\xb4\x0f\x19\x83\x59\x65\x6b\xcb\xfa\xb1\x5f\x17\x87\x2d\xdd\xce\x04\x91\x31\x98\x41\x74\xdc\x26\x3d\x7d\x80\x9b\x11\xbb\x9d\xf6\xb5\xd3\x3e\xec\x75\x3b\xed\x43\x2e\xd7\x36\x1d\x7c\x07\xbc\x28\xc7\x60\x44\xd5\x8b\x52\xb9\xb8\x53\xb0\xdb\x99\x20\x32\x88\x15\xd1\x38\x59\x3e\x42\xbe\x86\x49\xe6\x8b\xc1\x6c\x50\x77\x5e\xfa\xdf\x3d\x9e\x01\x88\xe3\x98\xee\x91\x26\xd1\xb0\x18\xb0\x7b\x98\xd5\x8b\x9a\x60\xd2\xea\x05\xff\xca\x80\x78\xea\x76\xbe\x88\x5c\x9c\xb2\x74\x3b\x5f\xec\xcb\x11\x95\xdc\x5f\xd6\xc4\xc5\x67\xa6\x9f\x37\xe1\xa7\x95\x71\xfc\xfe\x90\xd6\x8d\x6b\xa7\x97\xc0\xb6\xae\x9d\xca\x18\x93\x02\x4d\x8b\x3d\x79\x23\x5d\x4c\xcf\x4e\xe5\x37\x86\xf7\xb4\xd8\xcf\x14\xd2\xfb\x5e\x5b\x5f\x4f\x65\x0c\xac\x81\xbe\x9e\xdd\x93\x9a\x60\x06\xd2\xd3\x9a\x60\xc5\x78\x98\x55\x57\x8c\x3d\xf9\x42\xcb\x4c\xf8\x85\x98\x68\x0e\x33\xe1\x44\x13\xb9\xb8\x94\xad\xdb\x89\x26\x32\x34\xa8\xed\x44\x13\x4f\xd2\x8b\x93\x9f\xd6\x93\x54\x19\x1a\x54\x1d\x49\x95\x81\xcb\x6c\xeb\x48\xaa\x8c\xc1\x9c\xd8\x98\x09\xca\xc5\x2d\x6d\x6d\xcc\x04\x65\x0c\x0b\xe4\x74\x14\xb9\xb8\xa4\xad\x7b\x59\x6c\xe6\x9b\xc3\x02\x39\xdf\x44\xe6\xb0\x7d\x2d\x8b\x8d\x11\x04\x0f\x6d\x77\x5d\x94\x31\xcc\xbd\x53\x50\xe4\xe2\xd6\xb6\xd6\x61\x54\x19\xdc\xef\xd3\x3a\x8c\x2a\xbf\x11\x42\x7f\xd1\xc6\x39\xd4\xeb\x6c\x5b\xdf\x50\x65\x0c\x0b\xe4\xdc\xb5\x9d\xbb\xda\x30\x9d\xbb\x22\x03\x56\xac\xfb\x6d\x81\xd8\xf2\x72\xaf\xa1\x9d\xce\x22\x63\xfc\x72\x6f\x19\x19\x8a\xdf\xac\x64\xdd\x33\x52\xc6\x30\xf7\x1f\x0b\xc4\x74\x03\xdc\xb5\xdb\xe9\x06\x32\x86\x59\xfd\x98\xd5\xcf\xcd\xc0\xc8\x1b\x3f\xe6\xeb\x43\xfb\x62\x8a\xd0\x1f\xf3\xc5\xdc\x75\xfc\xde\x68\xbe\x1e\x99\xdc\xa5\xd6\xfd\xf9\xe5\x2b\xff\x39\xdf\x6c\x47\x54\x64\x0c\x76\x4a\xda\xd1\xa6\xd9\x4b\xe3\x0c\xac\xfb\x6b\x93\xfb\x62\x9c\x19\xc3\xdb\xd1\xa6\xbf\xcd\x53\x14\xfb\x6b\x5b\xfd\xd2\x56\xdf\x24\xa5\x7f\xf8\xc8\xe4\x5a\xaf\xd6\xdf\x55\x59\xcb\xba\x4f\x6b\xe2\x19\x3b\x26\x1b\x6a\xdd\x4e\x08\x91\x31\xb0\xfd\x9d\xd6\x44\xf2\xd1\xde\xfe\x96\x1f\xed\x99\xf4\x4e\x82\x66\x76\x3b\xe9\x45\xc6\x85\xa1\x6f\x27\xbd\xc8\x74\x8e\xd8\x69\xb1\x1f\x19\x97\x95\xe3\x30\x85\x4c\xee\xe5\xea\x76\x98\x6a\xc6\xa4\xcb\x9a\x70\x4c\xea\x67\x00\x9a\x5c\xcb\xd5\x3a\xeb\x2a\xe3\x62\xe5\xdf\xee\xe0\x74\xf1\x5b\x0c\x8c\x5d\xbf\xdf\x62\xc5\xc8\x9e\x51\xb7\x95\xd3\xcc\x79\x18\x80\xda\x49\x2f\x32\x2e\xa6\x1b\x3a\xf4\x2a\xf3\xa5\xd9\x76\xd7\x05\x19\x17\x5b\x06\xed\xae\x0b\x5e\xb7\xde\x50\xdc\xbd\x7f\x49\x4f\xaf\x5d\x56\xe1\xb6\xbe\xd8\x14\xe5\x02\x9d\xde\x8e\x5c\xb8\x7b\x7a\x7d\x70\x1b\x91\xa2\xb7\x4b\x4d\xcc\xf6\xb6\x6f\xef\xa7\x8b\x4e\xb7\x6b\xb6\x5d\x14\x99\xee\x94\x6c\xbb\x28\x32\x2e\x06\x1d\xdd\x43\x95\xdf\xe2\x76\xdb\x45\xf7\xd3\xd3\x26\x3b\xe7\xbd\xed\x69\xc8\xb8\x18\x87\xb6\x3d\x0d\x99\x90\xc1\xbd\xed\x69\xc8\x6f\xcd\xb6\xed\x69\x88\x97\xe2\x36\x9e\xa8\x3f\x19\xd7\xf5\xd7\xc1\xb1\x7b\x3b\xbf\xde\xcf\x64\x7a\xba\x6b\xb2\x9d\x4c\x23\xe3\x62\x8e\xa7\x53\x6b\xe3\xa1\xea\xc5\xba\xbd\xed\x9b\xc8\xc0\x9b\xbb\xf1\x5c\x7d\xe4\xe9\x75\x5a\xf5\x6d\xaf\x43\x06\xd7\x70\xf5\xb6\xd7\xed\xf4\x29\x7e\xcb\x46\x8a\x8c\xcb\x4f\x63\x23\xdd\x7c\x53\xa8\xba\xde\x7e\x53\x64\x69\xcb\xb6\xdf\x74\xf3\x4d\xe1\x56\xb6\x5b\xcf\xfb\x75\x3d\xbd\x0e\xe8\x63\xbf\xae\x5f\x12\x5f\xeb\x0c\x92\x4e\x92\x9e\xe1\x60\xe2\xf1\xbc\xf5\xe9\x54\x06\x5b\xcf\x5b\x9f\xce\xcd\x36\xf6\xc4\x0f\x71\xbb\x8d\xbd\xf1\x81\x9c\xf8\xcb\xed\xd7\xdb\xa7\xde\xec\x58\xdd\x3e\xb5\x4c\xba\x79\x8a\xdf\xe2\x33\x2b\x83\x29\xf7\x7e\xf1\x99\x37\x5e\x93\x13\x2f\xb5\xfd\xe2\x73\x28\x83\x9b\xbb\xf6\x8b\xe5\x8e\x32\x71\x2b\xdb\x2f\xbe\x90\x32\xd8\xff\xde\x7a\x5b\xee\xd7\x27\x78\x6a\x90\x34\x4c\xa2\x3f\xdd\x26\x59\x46\xbe\x23\xae\x61\xdb\xb8\x10\xca\xb8\x6e\xea\x8b\xef\xa8\xcc\xb0\x56\x3f\xe6\x1e\xb3\x4b\xf8\x9f\x6d\x58\x08\xc5\x9d\x92\xfd\xc2\xec\xee\xd7\x33\xbf\x9e\xb8\x94\xed\xd7\xd7\xa7\xbe\x98\xa4\xb7\x49\x69\xd2\xd3\x6e\xd9\xca\xd8\xb8\x75\xfe\x64\x5c\x6f\x0a\xf4\xb5\x26\xb0\x9e\x38\x24\x6d\xfd\x3d\x95\x41\xd4\xa0\xfd\x4a\xbf\x63\xd2\xeb\xde\xfc\x16\xc7\xf6\xfb\x85\x41\xc5\x81\x68\xbf\xd2\x2f\x84\xf5\xbc\xde\xfe\x96\x65\xa4\x15\xb2\xca\xdb\xaf\x34\x5f\xb6\xc2\xb7\x7f\x68\xbe\xb0\x8b\x2c\xfc\x36\x07\x18\x7f\xdb\x1c\x54\x0c\x40\x81\xfd\x2a\x33\xf1\x88\x7b\x0d\x5b\x37\xd4\xcd\x41\xc5\xc4\x41\x67\xbf\xca\x37\xb2\x41\xcd\xf6\xc3\x7e\x95\xb5\x4a\xf3\xc5\x07\x66\x7b\x42\xb1\x8f\x67\xee\x3b\xc1\x98\xf6\xc1\x02\x5e\x19\xf3\x18\x24\x2d\x93\xd8\x7f\x3a\x26\x49\xb7\x49\x6f\xfe\xd0\xa4\x8f\x49\xee\x3f\xdd\x24\x7d\x4d\x6a\x9e\x32\x69\x9b\xb4\x99\x82\x3e\x05\x3a\x38\x12\xdb\x38\x7d\x0e\x80\x83\x8d\xe7\xe7\x4f\x06\x6c\xf0\xd6\x01\x74\xe3\x00\x3a\x39\x77\xdd\xfa\x7f\x2a\x83\xdb\xd8\xb6\xfe\x9f\xfb\x78\x66\xc8\x6e\xb1\x6c\x7c\x41\x7f\xe2\x16\xcb\xd6\x23\x54\x99\x9c\x9d\x6e\x3d\x42\x95\x31\xe9\x1d\xc7\x30\xf7\x63\xf3\x14\x7f\x78\x99\x55\xf6\x60\xc1\x14\xf6\x61\xdf\xc6\x21\x74\x8e\x5f\x92\xf9\x62\xc3\x95\xc0\x4c\x5b\x7f\x50\x65\x70\x87\xdb\xd6\x1d\x74\xe3\x02\x3a\x59\xac\xed\xe3\x32\x5f\x4e\xa0\x69\xf7\xc7\x65\x26\xa6\x3f\x4f\x26\xa6\x3f\x3f\xfd\x79\x9e\x9a\xfe\xfc\xfc\xe7\x54\x6f\x1f\xcc\x70\xf7\x31\xd9\x46\xa2\x77\x1c\xd3\xba\x7f\xa6\xb3\xde\x56\xb9\xf5\xfb\x54\x06\x08\xc4\x3e\x96\x05\x7a\xa6\xb3\x73\xd0\x15\xf4\xfb\x54\x06\x17\xc4\x6d\xdd\x3e\x37\x71\x2e\x26\x2b\x95\x6d\x9c\x8b\x8d\xf7\xe7\x80\x93\xd8\xc7\xb2\x40\x98\x34\xe6\x88\xdb\x13\xb0\x4d\x2c\x8a\x39\x68\xe4\x87\xc6\xea\x70\xe7\xd2\xdc\xbf\x2d\xf6\x23\x93\x09\xf4\x3e\x18\x80\x94\x31\x6d\x39\x6f\xcb\xf8\xa1\x40\x8b\x37\x6a\x99\xf0\xdf\x74\xf7\x6c\x1f\x5a\xa6\xa3\x8b\xa7\xf8\xb4\x6c\x52\x28\x17\xbe\x91\xfb\x68\x2b\x87\xde\xc1\x88\xba\x3d\x4d\xdb\x78\x80\xcd\xeb\x59\x83\xec\x93\x0d\x6a\x65\x32\x3d\xdb\x27\xab\x8b\xcd\x69\xda\xb4\x7d\x79\x9a\xb6\x39\x27\x9b\x93\x51\xc1\x73\xb2\xcd\x79\x94\xd7\x73\x6d\xcf\xa3\x36\x87\x16\x13\xdf\xdf\xed\xa1\xc5\x1e\xcf\x9a\x6d\x72\xdf\xfd\xe6\x54\xe0\x27\x86\xbb\xda\x1e\x0e\x6c\x36\x92\x27\x57\x67\x6f\x37\x92\x37\x1b\xbe\xeb\x75\xfe\xb7\x0d\xea\x58\xff\x7d\x24\xde\xc3\xda\x44\x2e\x82\xc8\xee\x61\x6d\x8e\x67\xea\xb9\x08\x51\xbe\xb9\x1d\xf9\x27\x83\x0b\xd7\xf7\xf8\xd2\x3c\xd8\x53\xf6\x8a\x93\xed\x9e\xf2\xbe\x1e\x93\xb1\xf0\x27\xd8\x97\x26\x03\x99\x04\xf4\xdb\x97\x26\x83\x4b\x66\xbd\x20\x63\xb3\xbf\xfc\x93\x39\x7d\xca\x82\xb0\x9d\xbb\x80\xc3\xb7\xdb\xb9\x9b\x2d\x58\xc1\xe9\xed\x16\xec\xe6\x52\xcb\x85\xc7\xd3\xf6\x52\x4b\x65\x80\x0b\x6d\xef\xb4\x54\x16\x7e\x46\xdb\x3b\x2d\x95\xc5\x36\xf3\x9e\xb6\x3e\x6e\x92\x14\x29\xdd\xde\x24\xa9\x0c\x18\xcd\x3d\xbf\x3e\xf5\x18\xf5\x85\xe7\xc3\x9e\x1a\x75\x64\x80\xbd\xed\x99\x3e\xf5\xd8\x66\x91\xca\xed\xd5\x92\xca\x70\x94\x9a\xcc\x59\x37\x9b\xbe\x8b\xbd\x80\xed\xa6\xef\xe6\x4a\xc1\xc5\x5d\xa9\x7b\xd9\xd4\x90\x75\xf1\x95\x97\x4d\x6d\x79\xae\x4e\x23\x72\x6b\x58\x59\xdc\xd1\xb9\x17\x73\x43\xe5\xc2\x4d\x68\x7b\x43\xe0\x66\x03\x79\x71\x1a\xb1\xdd\x40\x56\xc4\x62\xf6\xcd\x46\x89\x12\x17\x7d\xfa\xe6\xe0\x76\x73\xe1\xdc\xf2\x0b\xdd\x4e\x53\x90\xd0\x18\xdc\xf6\x7c\x36\xa3\xd7\xa2\x3b\xb9\x19\xbd\xd9\x40\x5e\x84\x8f\xde\x6e\x20\xef\xf7\xd3\x0e\x16\x81\xb9\xf6\x9b\x7d\x3a\x25\x88\xdc\xb9\xdf\x0e\x23\x6c\x20\x2f\xc2\x66\x6d\x37\x90\x37\xdb\xb9\x78\xae\xfe\xdf\x8d\xfb\xf9\xff\xbf\x7e\xfe\xfe\xff\xfd\x8f\xff\xf9\xf9\xfb\xff\xfa\xfc\x6b\xff\x91\xff\xf9\x8f\x7f\xf4\xbf\xfd\x47\xfd\x4b\xfe\xc7\x1f\xff\xff\x93\xfa\x47\xf5\xfe\x97\x7f\xeb\x7f\xf4\xff\xfe\xf7\xff\xfc\x47\xf6\x1f\x7f\xff\xf7\xbf\x3f\x7f\xc5\xbf\xff\x13\x00\x00\xff\xff\xe4\xfe\x34\x66\x50\x40\x01\x00"); +func _daca ()([]byte ,error ){return _gb (_cgaa ,"UniJIS-UCS2-V")};func _fbad ()(*asset ,error ){_ccbe ,_dcec :=_cbgg ();if _dcec !=nil {return nil ,_dcec ;};_bfgc :=bindataFileInfo {_ee :"UniCNS-UTF32-V",_ffd :697,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492713,0)}; +_cedg :=&asset {_da :_ccbe ,_dc :_bfgc };return _cedg ,nil ;};func _aefc ()(*asset ,error ){_ddef ,_dcbd :=_fbeg ();if _dcbd !=nil {return nil ,_dcbd ;};_gefe :=bindataFileInfo {_ee :"V",_ffd :905,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493073,0)}; +_ggbf :=&asset {_da :_ddef ,_dc :_gefe };return _ggbf ,nil ;};var _gdad =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x8b\x1b\x47\x18\x04\xe0\xfb\xfc\x8a\x39\x3a\x07\x67\xbb\xdf\xaf\xee\x86\xc1\x10\xdb\xd8\xec\xc1\x49\x88\xf3\x05\x21\x07\xad\xa6\xb5\x08\xb2\x92\xd0\x6a\x0f\xfe\xf7\xa1\xba\x24\x93\xf8\x60\x64\x95\xa5\x77\xe4\xa7\x7a\xa6\xfb\xee\xdd\xfd\xfb\xfb\xc3\xfe\x32\xdf\xfd\x7c\x3e\x6e\x3f\xf7\xcb\xbc\xdb\x1f\xd6\x73\x7f\x3e\xbe\x9c\xb7\x7d\x7e\xe8\x8f\xfb\xc3\x34\x65\x99\xd7\xfd\xf6\x72\x7b\x3b\x5e\xb6\x4f\x9b\xd3\x34\xe1\xfb\x9f\xbf\x3c\x5f\xfa\xd3\xfd\x61\x77\x9c\x95\x9f\x5b\x5f\x4e\xd7\xcf\xce\xf3\xdd\x2f\xfd\x71\xff\x7c\x39\x7f\x99\x5f\xfd\xb0\x1e\x1f\xfa\x77\xf3\xda\x77\xc8\x7f\x3a\xaf\xfd\xbc\x3f\x3c\xce\xaf\x3e\xbe\xcd\x5f\xd3\xcf\x2f\xa7\xd3\x3f\xfd\xa9\x1f\x2e\xb3\x8f\xac\x1f\xd6\xf1\x3a\xdd\xbd\xfb\xb4\x39\xfd\xb8\x79\xea\xf3\xdd\x18\xf4\xfa\xe3\xdb\xfc\x9a\x9f\x19\xff\xf4\x7b\x3f\x3f\xef\x8f\x87\x39\x7f\x9f\xd2\x7f\xe2\x5f\xbf\x9c\xfa\x9c\xaf\x23\xfe\xfc\xed\xfe\xfd\xfc\x57\x9e\x73\x9a\xc5\x23\xf9\xdf\xd7\xfc\x8f\x4f\xc7\xb5\xcf\xe9\x76\xa1\xfb\xf7\xef\x8e\x2f\x87\xcb\xac\x49\xaa\x31\xcc\xfc\x0f\x6d\x8f\x6b\x7f\x3e\x6d\xb6\xfd\xbc\x39\x3c\xf6\x69\x9e\x97\x94\x52\x7a\x33\x2f\x25\x3e\x7c\x78\x83\x1f\xfb\xcd\x27\xa6\x9c\xd2\xf5\xab\xfb\x95\xd1\xed\x2b\x29\xed\x76\x6f\xe6\x34\x2d\x29\xf3\x7d\xc6\x7b\xf1\x98\x96\x24\x4c\x04\x89\x67\x99\x96\xa4\x4c\x14\x49\x89\x3a\x2d\xc9\x98\x18\x92\x9c\xc4\xa6\x25\x39\x23\x1f\x91\x54\xcc\x0e\x46\x31\x22\x57\x0c\x2f\x8c\xca\x88\x4a\xc3\xf4\xca\xa8\x8e\x5f\x90\x0c\xe3\x1b\xa3\x36\x22\x4d\x18\xbf\x61\xb4\xb9\xfe\x4e\x8c\x7f\x60\xf4\x30\xa2\x9a\x31\x7e\xcb\x68\x8b\x48\x53\xc1\xf8\x95\xd1\x3a\x22\x15\x8c\xef\x8c\xfa\x88\xbc\x62\xfc\x8e\xd1\x6e\x44\xd5\xd2\xb4\x64\x4a\xe5\x21\x65\xa9\xc5\xb4\x64\x62\xe5\x81\x65\xea\x32\x2d\x99\x5a\x79\x68\x59\xa4\x3a\x2d\x99\x5c\x79\x70\x59\x0d\x9b\x96\x4c\xaf\x6c\x57\x53\x8c\xa7\x57\x1e\x5e\xae\x05\xe3\xe9\x95\x87\x97\x87\x62\x3c\xbd\xf2\xf0\xf2\x5a\x31\x9e\x5e\x79\x78\x45\x36\x8c\xa7\x57\x1e\x5e\x61\x09\xe3\xe9\x95\x87\x57\x04\x8a\xcd\xf4\xca\xc3\x2b\x1a\x9a\xcd\xf4\xca\xc3\xab\x64\x54\x9b\xe9\x95\x87\x57\x31\x54\x9b\xe9\x95\xfb\xb5\x7f\x8c\xa7\x57\x1e\x5e\xa5\xa1\x5a\xa1\x97\x0c\xaf\x9a\x51\xad\xd0\x4b\x86\x57\x35\x54\x2b\xf4\x92\xe1\x55\x0b\xaa\x15\x7a\xc9\xf0\xaa\x0d\xd5\x0a\xbd\x64\x78\x35\x41\xb5\x42\x2f\x19\x5e\xcd\x50\xad\xd0\x4b\x86\x57\x2b\xa8\x56\xe8\x25\xc3\xab\x35\x54\x2b\xf4\x92\x7a\x5b\xab\x98\x4f\x30\x69\xcc\x0c\xe5\x0a\xc5\x64\xc3\xac\xa0\x5d\x21\x99\x0c\x32\xb4\x8f\x4b\xd0\x4c\xb6\xcc\x04\xfd\x0a\xd1\x64\x65\xe6\x28\x58\xa8\x26\x9d\x59\x41\xc3\x42\x36\xd9\xf1\x26\x49\xa8\x58\xe9\xa6\x89\x99\xa0\x63\x25\x9c\x66\x66\x8e\x92\x95\x72\x2a\xb7\x1b\x2c\x4d\x8b\x92\x4e\x07\x5d\xd6\x84\x9a\x95\x76\xca\x7b\x53\x15\x3d\x2b\xf1\x94\x37\xa7\x3a\x8a\x56\xea\x29\xef\x4e\xad\x68\x5a\xc9\xa7\xbc\x3d\x2d\xa1\x6a\xa5\x9f\xd2\xcf\x14\x5d\x2b\xfd\x94\x7e\xe6\x28\x5b\xe9\xa7\xf4\xb3\x8a\xb6\x95\x7e\x4a\x3f\xcf\xa8\x5b\xe9\xa7\xdb\xdb\x53\x01\xd7\xa0\x9f\xd2\xcf\x03\x85\x2b\xfd\x94\x7e\x5e\xd1\xb8\xd2\x4f\xe9\x17\x19\x95\x1b\xfd\x8c\x7e\xa1\xe8\xdc\xe8\x67\xf4\x8b\x40\xe7\x46\x3f\xa3\x5f\x54\x74\x6e\xf4\x33\xfa\x95\x8c\xce\x8d\x7e\x46\xbf\x62\xe8\xdc\xe8\x67\xf4\x2b\x81\xce\x8d\x7e\x16\xb7\x47\x19\xae\x41\x3f\xa3\x5f\xcd\xe8\xdc\xe8\x67\xf4\xab\x86\xce\x8d\x7e\x46\xbf\x1a\xe8\xdc\xe8\x67\xf4\xab\x0d\x9d\x1b\xfd\x8c\x7e\x4d\xd0\xb9\xd1\xcf\xe8\xd7\x0c\x9d\x1b\xfd\x8c\x7e\xad\xa0\x73\xa3\x9f\xd1\xaf\x35\x74\x6e\xf4\xb3\x1d\x9f\xb5\x82\xce\x9d\x7e\x9e\x6e\xcf\xdf\x34\x2d\x4e\x3f\xe7\xae\x90\x0a\x3a\x77\xfa\xb9\x30\x6b\xe8\xdc\xe9\xe7\xc3\x4f\xb2\xa0\x73\xa7\x9f\x1b\x33\x47\xe7\x4e\x3f\x77\x66\x05\x9d\x3b\xfd\x7c\xf8\x89\x24\x74\xee\xf4\xf3\xc2\x4c\xd0\xb9\xd3\xcf\xb9\x3f\x88\xa3\x73\xa7\x9f\x73\x83\x90\x82\xce\x9d\x7e\xbe\xb9\x6d\x1a\xb8\x06\xfd\x9c\x5b\x84\x0a\x3a\x77\xfa\xf9\x96\x99\xa3\x73\xa7\x9f\xaf\xcc\x2a\x3a\x77\xfa\xf9\xf0\x13\x4b\xe8\xdc\xe9\xe7\xf4\x33\x45\xe7\x41\xbf\xa0\x9f\x39\x3a\x0f\xfa\x05\xfd\xac\xa2\xf3\xa0\x5f\xd0\xcf\x13\x3a\x0f\xfa\x05\xfd\x5c\xcd\xc6\x36\x7e\xdb\xad\xa7\xdc\xbe\xdd\xbf\x83\xba\x61\xb7\x7d\x10\xbf\x80\xba\x41\x5d\xaf\x58\x11\x41\xdd\xa0\x6e\x64\xac\x88\xa0\x6e\x50\x37\x14\x2b\x22\xa8\x1b\xd4\x8d\xc0\x8a\x08\xea\x06\x75\xa3\x62\x45\x04\x75\x83\xba\x25\x63\x45\x04\x75\x83\xba\x45\xb1\x22\x82\xba\x41\xdd\x12\x58\x11\x41\xdd\xa0\x6e\x69\x58\x11\x41\xdd\xe8\xb7\xcd\x1b\xd7\xa0\x6e\x50\xb7\x1a\x56\x44\xb9\x1e\x71\xa8\x5b\x03\x2b\xa2\x50\xb7\x50\xb7\x36\xac\x88\x42\xdd\x42\xdd\x96\xb1\x22\x0a\x75\x0b\x75\x9b\x61\x45\x14\xfa\x15\xfa\xb5\xc0\x8a\x28\xf4\x2b\xf4\x6b\x0d\x2b\xa2\xc4\xf5\x68\x65\x0f\x38\x49\x48\xaa\xff\x6b\x06\x7f\x1f\x87\xd0\xaf\x07\xc3\xed\xcb\xf9\xdc\x0f\x97\x71\x06\x1d\x87\x3f\x9c\xdd\xf6\x87\xfe\xf5\x3c\x7b\x3a\x9e\xf0\xb5\xf1\xe7\xdf\x00\x00\x00\xff\xff\x1a\x9a\x7e\x09\xfb\x0a\x00\x00"); +func _dfcc ()(*asset ,error ){_gbggd ,_dgce :=_edgg ();if _dgce !=nil {return nil ,_dgce ;};_febg :=bindataFileInfo {_ee :"UniJISPro-UTF8-V",_ffd :5120,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492871,0)};_dgd :=&asset {_da :_gbggd ,_dc :_febg };return _dgd ,nil ; +};func _affd ()(*asset ,error ){_abeg ,_gaba :=_cdac ();if _gaba !=nil {return nil ,_gaba ;};_aedb :=bindataFileInfo {_ee :"UniJISX02132004-UTF32-V",_ffd :4412,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492998,0)};_ccdg :=&asset {_da :_abeg ,_dc :_aedb }; +return _ccdg ,nil ;};func _bea ()([]byte ,error ){return _gb (_dfgb ,"GBpc-EUC-H")};func _gbe ()([]byte ,error ){return _gb (_bab ,"78-RKSJ-H")};func _aaede ()(*asset ,error ){_cedd ,_fea :=_bgb ();if _fea !=nil {return nil ,_fea ;};_aaaa :=bindataFileInfo {_ee :"KSCms-UHC-V",_ffd :716,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492580,0)}; +_cffa :=&asset {_da :_cedd ,_dc :_aaaa };return _cffa ,nil ;};var _fce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x14\x05\xf0\xbd\x3e\xc5\x2c\x5f\x17\xaf\x99\xfb\x67\x46\x23\x10\x81\x47\xc2\x83\x2c\xde\x6b\x69\xfa\x0f\x4a\x17\x8e\x35\x0e\x86\x46\x36\x8e\xb3\xc8\xb7\x2f\xe7\x1e\x3b\x85\x2e\x82\xa3\x13\xe9\x4a\xf9\x1d\x8f\xe6\xe6\xee\xe1\xfe\x61\xdd\x9f\xd3\xcd\xcf\xa7\xc3\xf6\xb1\x9f\xd3\x6e\xbf\x2e\xa7\xfe\x7a\x78\x3b\x6d\x7b\x7a\xea\xcf\xfb\x75\x18\x44\xd3\xb2\xdf\x9e\xaf\x87\xf1\xb1\x7d\xd9\x1c\x87\x01\xd7\x3f\xbe\xbf\x9e\xfb\xcb\xc3\xba\x3b\x24\xe3\x79\xcb\xdb\xf1\x72\x6e\x4a\x37\xbf\xf4\xe7\xfd\xeb\xf9\xf4\x9e\x3e\x7d\x59\x0e\x4f\xfd\x87\xb4\xf4\x1d\xf2\x9f\x4e\x4b\x3f\xed\xd7\xe7\xf4\xe9\xee\xfb\xa3\x7c\xc4\x8f\x6f\xc7\xe3\x3f\xfd\xa5\xaf\xe7\x54\x23\xeb\xeb\x12\x9f\xc3\xcd\xdd\xb7\xcd\xf1\xfb\xe6\xa5\xa7\x9b\x98\xf4\x19\xd7\x7d\xe6\x49\xf1\xb7\xdf\xfb\xe9\x75\x7f\x58\x93\xfc\x98\xb3\xfd\x17\xff\xfa\x7e\xec\x49\x2e\x33\xfe\xfc\xed\xe1\x3e\xfd\x25\x49\x72\xd2\x52\xa6\xe9\xef\x4b\xfe\xc7\xb7\xc3\xd2\x53\xbe\xde\xe9\xe1\xfe\xee\xf0\xb6\x9e\x93\x4c\x52\x78\x87\x41\xf8\x2f\x6d\x0f\x4b\x7f\x3d\x6e\xb6\xfd\xb4\x59\x9f\xfb\x90\xd2\x9c\x73\xce\xb7\x69\xf6\x2f\x5f\xbf\xde\xe2\x69\xff\x77\xc6\x30\x96\xcb\x95\xfb\x85\xc9\xf5\x8a\x9c\x77\xbb\xdb\x94\x87\x39\x0b\x8f\x05\xc7\x5a\xea\x30\x67\x65\xa2\x48\x8a\xe8\x30\x67\x63\x62\x48\xc6\xda\x86\x39\x3b\x13\x47\x22\x59\x7d\x98\x73\x61\x54\x22\xd2\x86\xd9\x95\x51\x8d\xa8\x18\x86\x8f\x8c\xc6\x88\xc6\x09\xd3\x1b\xa3\x16\x4f\x90\x1d\xe3\x27\x46\x53\x44\x96\x31\x7e\xc3\x68\x73\x79\x4e\x8c\x7f\x62\xf4\x14\x51\x13\x8c\xdf\x32\xda\x22\xb2\x3c\x62\xfc\xc2\x68\x89\xc8\x14\xe3\x3b\xa3\x1e\x51\x69\x18\xbf\x63\xb4\x8b\xa8\x79\x1e\x66\xa1\x94\x84\x94\xe7\xa9\x0e\xb3\x10\x4b\x02\xcb\xad\xe8\x30\x0b\xb5\x24\xb4\xbc\xe6\x36\xcc\x42\x2e\x09\x2e\x6f\xd5\x87\x59\xe8\x25\x7e\x31\xc5\x78\x7a\x49\x78\x15\x1b\x31\x9e\x5e\x12\x5e\xa5\x1a\xc6\xd3\x4b\xc2\xab\xb4\x86\xf1\xf4\x92\xf0\xaa\xe2\x18\x4f\x2f\x09\xaf\xea\x19\xe3\xe9\x25\xe1\x55\x2b\x8a\x15\x7a\x49\x78\xd5\x09\xcd\x0a\xbd\x24\xbc\x46\x41\xb5\x42\x2f\x09\xaf\xd1\x51\xad\xd0\x4b\xfa\xa5\x7f\x8c\xa7\x97\x84\xd7\x38\xa1\x5a\xa5\x97\x86\x57\x13\x54\xab\xf4\xd2\xf0\x6a\x8e\x6a\x95\x5e\x1a\x5e\x6d\x44\xb5\x4a\x2f\x0d\xaf\x36\xa1\x5a\xa5\x97\x86\xd7\xa4\xa8\x56\xe9\xa5\xe1\x35\x39\xaa\x55\x7a\x69\x78\x4d\x23\xaa\x55\x7a\x69\x78\x4d\x13\xaa\x55\x7a\x69\xbb\x7e\x57\x31\x9f\x60\x3a\x31\x73\x94\xab\x14\xd3\x0d\xb3\x11\xed\x2a\xc9\x34\xc8\xd0\x3e\x6e\x41\x33\xdd\x32\x53\xf4\xab\x44\xd3\x85\x59\x41\xc1\x4a\x35\xed\xcc\x46\x34\xac\x64\xd3\x1d\x17\x49\x46\xc5\x46\x37\xcb\xcc\x14\x1d\x1b\xe1\x4c\x98\x15\x94\x6c\x94\x33\xbd\x2e\xb0\x3c\xcc\x46\x3a\x0b\x3a\xb1\x8c\x9a\x8d\x76\xc6\xb5\x69\x86\x9e\x8d\x78\xc6\xc5\x69\x05\x45\x1b\xf5\x8c\xab\xd3\x1a\x9a\x36\xf2\x19\x97\xa7\x67\x54\x6d\xf4\x33\xfa\xb9\xa1\x6b\xa3\x9f\xd1\xcf\x0b\xca\x36\xfa\x19\xfd\xbc\xa1\x6d\xa3\x9f\xd1\xaf\x08\xea\x36\xfa\xd9\xf6\xfa\x56\xc0\x3d\xe8\x67\xf4\x2b\x15\x85\x1b\xfd\x8c\x7e\xa5\xa1\x71\xa3\x9f\xd1\xaf\x0a\x2a\xf7\xcb\x3b\x90\x7e\xd5\xd0\xb9\xd3\xcf\xe9\x57\x2b\x3a\x77\xfa\x39\xfd\x6a\x43\xe7\x4e\x3f\xa7\xdf\x28\xe8\xdc\xe9\xe7\xf4\x1b\x1d\x9d\x3b\xfd\x9c\x7e\x63\x45\xe7\x4e\x3f\xaf\xd7\x57\x19\xee\x41\x3f\xa7\x5f\x13\x74\xee\xf4\x73\xfa\x35\x47\xe7\x4e\x3f\xa7\x5f\xab\xe8\xdc\xe9\xe7\x9b\xc5\x90\x4d\xee\xf1\x46\xbf\xbe\xb9\xf1\x3b\xf6\xbd\x8f\x9d\x68\xfb\x76\x3a\xf5\xf5\x1c\xbb\x5e\x6c\x36\xd8\x2b\xf6\x6b\xff\xd8\x41\x8f\x87\x23\xae\x8a\x9f\x7f\x03\x00\x00\xff\xff\xd8\xa1\x1c\x9d\x6d\x07\x00\x00"); +func _ggf ()([]byte ,error ){return _gb (_eaef ,"Add-RKSJ-H")};var _daag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x98\x41\x6f\x23\xb9\x11\x85\xef\xfe\x15\x7d\xdc\x1c\x36\x26\xab\x48\x91\x04\x16\x03\x04\x33\x87\x78\x81\x4d\x16\x71\x66\x13\x20\xc8\xa1\x25\xb1\x07\x02\x62\x49\x90\xed\xc3\xfc\xfb\xa0\xde\xa7\x38\x08\x90\xc3\xe0\x8d\x3f\x93\xd5\xf5\x1e\xd9\xa4\xe4\xc7\xcf\x4f\x5f\x9e\xce\xa7\xb7\xe5\xf1\xd7\xdb\xe5\xf0\x3c\xdf\x96\xed\x74\x3e\xde\xe6\xeb\xe5\xfd\x76\x98\xcb\x7e\x7e\x3b\x9d\x1f\x1e\xb2\x2d\xc7\xd3\xe1\xed\x3f\x3f\x4a\x0e\x2f\xeb\xf5\xe1\xe1\xf1\xeb\xf9\xf4\xf3\xd3\xf3\x8f\x5f\x3f\x3f\xdb\x8f\x7f\x5c\xde\x5f\xe7\x9d\x7f\x7e\xfa\xf2\xfc\xfd\xf5\x6d\xbe\x3c\x9d\xb7\xcb\xe2\xcc\x3f\xbe\x5f\xef\x35\x96\xe5\xf1\x2f\xf3\xdb\xe9\xf5\xed\xf6\x7d\xf9\xe1\x0f\xc7\xcb\x7e\xfe\x6e\x39\xce\x2d\xf8\x9f\x6f\xc7\x79\x3b\x9d\xbf\x2d\x3f\xfc\xbc\x5e\xd7\x73\xfe\xf8\xc5\xf3\xfb\xf5\xfa\xaf\xf9\x32\xcf\x6f\x4b\x11\x9b\xe7\xa3\xf4\xe1\xf1\xf3\x2f\xeb\xf5\x4f\xeb\xcb\x5c\xee\xfd\xfc\x7a\xbb\xd0\xd2\x6f\x1a\xa0\xdf\xff\x36\x6f\xaf\xa7\xcb\x79\xc9\xbf\x4f\xa9\xfe\x17\xff\xf5\xfb\x75\x2e\xf9\x5e\xe7\xef\x5f\x9f\xbe\x2c\xff\xc8\x4b\x4e\x8b\xd5\xea\xf5\x9f\x77\xfe\xb7\x5f\x2e\xc7\x8f\x51\x39\x25\x5c\x1c\x4e\xc7\xdb\x7a\xfe\x36\x1f\x7e\x4a\x69\x9f\x3e\x2d\x77\xe9\xb6\x1b\x0f\x3f\x59\xca\x81\x90\xd6\x87\x0b\x55\x50\x15\x32\xa1\x1d\x68\x27\x54\x85\x3a\x68\x7c\x5a\xb2\xe5\xc6\xcc\x03\xec\xf8\x69\x69\xa3\xee\x02\x19\xc5\x8c\x62\x5d\x88\x62\x46\xb1\x16\xc8\x4d\x28\xa4\x1b\xb5\xdc\x41\x1e\xa8\x07\xca\x43\xbd\x4a\x9a\x77\x91\x0c\xc9\x41\x76\x22\x06\xb1\x20\x43\xc4\x21\x1e\xa4\x89\x54\x48\x8d\xd6\x2d\x97\x60\x87\x22\x16\xd2\x3d\x67\x21\x86\x85\x74\xcf\x49\x68\x07\xda\x09\x45\x34\x79\x82\x42\x7a\xba\xa3\x06\x6a\x42\x2a\x3f\x3b\xa8\x0b\xa9\xfc\x1c\xa0\x21\x14\x06\x8d\xb0\xec\x1e\x56\xc4\x6c\xae\x48\x25\xad\x8f\xa8\x65\x73\x13\x0a\xb9\xe7\x57\x93\x92\xa9\x29\x72\x28\x3d\x0b\x19\x28\x6c\x97\x36\x84\x0a\xa8\x6a\x54\x15\xda\x81\x9a\x90\x0b\x75\xd0\x10\x62\xe2\x0a\xda\x0b\xf1\xc4\x03\x28\xfa\x2a\x83\x5a\x47\xd0\x51\x88\x51\x13\x34\x85\x76\x42\x1b\x68\x13\x8a\x55\xac\xec\x41\x49\xab\x49\x4d\xe4\x0c\xca\x42\x2a\x9f\x31\x14\xd2\x6a\x2a\x42\x0e\x72\x21\x95\xcf\x78\x0c\x69\x65\x28\x09\xf6\xb3\xa4\x95\x41\x79\x6c\x6b\x3f\x17\x6d\xf1\x9a\x1b\x48\x49\x0c\xca\x93\x44\x48\x2b\x43\x49\xe4\x01\x1a\x7a\x22\xe5\x09\x27\xa4\xd5\x94\x84\xf6\xa0\xbd\x10\xe5\xc9\x2b\xa4\x55\xa3\x09\xf2\xd2\xdb\x52\x4d\x79\x65\xf2\x0a\x69\xd5\xb0\x4d\x5e\x21\xad\x9a\xfa\x32\xf2\x32\xe5\x65\xb2\x6d\xe4\x65\xca\xcb\xd4\xaa\x91\x97\x29\x2f\x53\xd0\x46\x5e\x16\xe1\x54\x57\xab\x6c\x39\x49\xab\xae\x27\xf2\x7e\x4a\x5a\x75\xb5\x6a\x84\x13\xd2\xaa\xcb\x90\x11\x4e\x48\xab\x4e\x5f\x84\x63\x0a\x47\xaf\x5a\x35\xc2\x31\x85\xe3\xb4\x4a\x38\xa6\x70\x9c\xbe\x08\xc7\x14\x4e\xa6\x09\xc2\x31\xd9\xce\xaa\xe5\xd8\x76\xd9\xce\xaa\xe5\xd8\x76\x6d\x00\x93\x21\x67\x03\xb8\x3c\x26\x26\xe2\xd1\xd5\x7d\x52\x38\x4e\xf7\xae\xee\x93\x9a\x70\xba\x77\xf5\xa5\x17\xb9\x3a\x4d\xb8\x9a\x28\x4a\xa2\xd0\x44\x51\x13\x45\x1b\xa0\xd0\x44\x51\xf6\x45\x4d\x14\xb2\x2f\xca\xbe\xa8\x56\x21\xfb\xa2\x56\x8b\xfa\x2a\xb4\x5a\xd4\x6a\x51\x5f\x85\x56\x8b\x96\xa3\xc8\x63\x61\x39\x8a\x96\xa3\xa8\xd5\xc2\x72\x14\x19\xaa\xf4\x85\xa1\x22\x43\x95\x27\x62\xa8\x28\xfb\x1a\x7d\xed\xd8\x85\x92\x6e\x96\x85\x8e\xa0\x63\xa0\x3c\x84\x26\x68\x6a\x94\x09\x6d\xa0\x4d\x28\x6a\x35\x0e\x18\x49\x5c\x00\xd1\x58\x5b\x15\x85\xa4\x5b\x24\xed\x29\xce\xa4\x90\x88\xa2\xc7\xd9\xe1\x49\x27\x8c\x27\xbd\xdc\x23\x09\xe9\x4d\x46\xba\xb5\x24\x54\x40\x55\xa3\xb2\xd0\x01\xf4\x71\x18\xba\xee\x9a\xbb\x70\xe5\x78\x52\xaf\x48\x1b\x55\xe5\x0b\x4d\x68\x89\x46\xee\x42\x3c\x51\xeb\x31\xb2\x5a\x55\xf8\x48\x1b\xa6\x26\x94\x34\xd2\x86\xa9\x09\xc5\x8a\xb4\x11\xe9\x78\xda\x51\x6b\xa7\x5a\xe6\x71\xe7\x7f\x5c\xbb\xff\xef\x26\xf6\xd4\x99\xd1\x99\x21\x27\x9d\xa7\x77\x9e\x5e\x85\x78\x7a\xe7\xe9\x32\xd7\x27\x68\x0a\xc9\xdc\xd8\x0b\x85\x74\x6b\x6a\x68\x10\xd4\xd0\x3a\x37\xb5\xbd\x12\xc1\xaa\x08\x4c\x11\xac\x34\xb1\xd2\x84\x22\x58\x69\x62\x55\x13\xae\x08\x56\x9a\x58\xd5\x84\x53\x8b\x08\x56\x45\xe0\x7a\xe2\x81\x5a\x07\xd5\x8a\x43\xc3\xd3\x04\x4d\x90\x3c\x4e\xca\x4f\xca\xcb\xe3\xa4\xfc\xa4\xbc\x3c\x4e\x3c\x4e\x79\x74\x79\xdc\x98\xb8\xed\x84\xd4\xfd\x86\xc7\x8d\xcd\x10\x7d\xb9\xae\x41\xa4\x7b\xec\x78\x77\xb6\x9f\x6b\x97\xe6\x51\xbb\x98\xc3\x62\xb3\xb9\x83\x0a\xa8\x68\xd8\x8e\xa9\x15\xa6\xfb\x5f\x96\x5c\xd7\x25\x12\xc3\x78\x68\x83\x35\x58\x15\xeb\xb0\x0e\x63\xee\x80\x0d\x18\x8f\x5d\x61\x2b\x6c\x27\xb6\x87\xed\xc5\x1a\xad\x1c\x60\x07\x98\x89\x1d\x61\xec\x7c\x86\x29\x38\x8f\xb7\x28\x86\xe9\xb1\xbc\x46\x92\x36\x8a\x3a\xce\x18\xcb\x32\x56\x34\x33\x63\x2c\xeb\x83\x8d\x83\xf0\x95\xf1\xd5\x61\xf8\x0a\xe9\x1e\x1f\xaf\xdc\x33\xb6\x32\xb6\xba\x5a\xcb\xd8\x8a\x97\x32\x58\x11\xbb\xf7\x36\xb5\x36\xb4\xa6\x17\xd5\xe3\xd2\x8a\x61\x4a\x44\xb7\x16\xd2\x5d\x7b\xd2\x8d\xe5\x32\x2d\x57\x61\x14\xa6\x8c\xe5\x62\xf1\x0d\x57\x21\xc1\xf4\x04\xc3\x96\xae\xb2\x51\x19\x86\x2d\x5d\x65\xa3\x68\xb5\x0c\x57\x86\x85\xa1\x55\x30\x2c\x84\x74\xaf\x20\x16\x46\x17\xd7\xc0\x81\xb1\x06\x86\xd1\x41\xbb\x18\x8d\x6b\x2a\x5b\x4a\x0a\xc4\xd9\x85\x21\xdd\xd9\x84\x8e\x51\x37\x86\xa9\x11\xc7\xa9\xb3\x31\x15\x9b\xe3\xd4\x2b\xc3\x98\x8a\x2b\x97\xab\xb8\x4a\xdc\x1d\x57\x21\xd9\xf4\x99\xd3\xdd\xb1\x15\x12\x4c\x1e\x9c\xd5\x0a\xe9\x5e\xe4\xc1\x71\x1a\x12\xc3\x28\x87\xd5\x90\xee\x45\xb6\x9c\x2d\x18\x12\xc3\xb4\x1d\x1c\xfb\x21\xc1\x68\x0e\xfb\x05\xfb\x3a\x45\x9d\xe3\x57\x12\xe3\x54\xaf\xe0\xbf\x68\xa1\x31\xc1\x91\xec\x71\xd3\xc5\x54\x75\xc7\x01\x2c\xe9\x5e\x19\x86\xaf\x82\x2f\x83\xe1\x8b\x43\x99\x2d\x5d\xf0\xa5\xeb\x6f\x54\x25\x52\xb0\x55\xf0\xa0\x43\xd0\x0b\x1e\x8a\x5e\x23\x12\x29\x77\x0b\xda\xaa\x4e\x7d\xb6\x6a\xc5\x15\x2f\x48\xc5\x55\xd5\x89\xca\xbe\xac\x98\xaa\x2c\x2a\x2b\x58\x71\x15\x12\x8c\x71\xac\x6a\x48\x30\x2d\x7e\x65\xff\x56\xdc\xf3\x72\x55\xdc\x57\xb9\x2f\x2a\xd7\xf0\x10\x92\x2d\xdd\x19\x6b\xd3\xf0\x85\x89\x86\xaf\xc6\xda\x14\x6d\xc3\x86\xb1\x90\x60\x7a\x1f\x1a\xce\x42\xba\xc7\x4d\xb4\x6d\x3a\xbd\xb6\x4d\xdf\x00\x7a\x6c\xea\x6d\xd3\x01\x84\x74\x8b\xb3\x6b\xdb\x74\xd8\x20\xdd\x9a\x26\xea\xbd\x47\xb2\xe5\xb8\xb3\xb7\x4d\x17\x34\xd2\x46\xec\xae\x6d\xd3\xee\x42\xda\x88\xcf\xfb\xdb\xe6\x8c\x72\x8d\x4a\x2a\x16\x9f\xba\xee\xd2\xfa\x48\x81\x2a\x13\x2b\x13\xab\x10\x8d\x55\x6e\x81\x9d\x10\xb5\x2a\xb5\x40\xf4\x1a\xc2\x07\x87\x6d\xd3\xed\x84\xb4\xde\xc7\xff\xdc\xd9\xf1\xff\x97\xf5\xfa\xf0\xf1\x8d\xfd\xf0\x7e\xbb\xcd\xf3\x9b\xfe\x3e\xa0\x2f\xe4\xf1\x25\xfb\x74\x9e\x1f\x7f\x83\xb8\x5e\xae\x31\x4b\xff\xfe\x1d\x00\x00\xff\xff\x08\x57\xa3\x4a\xaf\x10\x00\x00"); +func _cedad ()([]byte ,error ){return _gb (_ggd ,"HKdlb-B5-H")};func _afeg ()(*asset ,error ){_bcc ,_bff :=_dcd ();if _bff !=nil {return nil ,_bff ;};_cbfa :=bindataFileInfo {_ee :"B5-H",_ffd :5259,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491473,0)}; +_fbc :=&asset {_da :_bcc ,_dc :_cbfa };return _fbc ,nil ;};func _ecf ()(*asset ,error ){_def ,_aa :=_cgad ();if _aa !=nil {return nil ,_aa ;};_ba :=bindataFileInfo {_ee :"78-H",_ffd :12437,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490877,0)};_eca :=&asset {_da :_def ,_dc :_ba }; +return _eca ,nil ;};func _egag ()(*asset ,error ){_aeea ,_fecf :=_dade ();if _fecf !=nil {return nil ,_fecf ;};_egge :=bindataFileInfo {_ee :"UniAKR-UTF16-H",_ffd :184302,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492659,0)};_ggae :=&asset {_da :_aeea ,_dc :_egge }; +return _ggae ,nil ;};var _gdedg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfd\x4b\xcf\x6e\xbf\x91\xde\x07\xcf\xf5\x29\xf6\xd0\xef\xc0\x6f\x2f\x2e\x92\x55\x45\x20\x10\x60\x38\x68\xc4\x30\x9c\x04\x3e\x24\xe3\x75\xec\x08\x48\x4b\x82\xba\x3d\xe8\x6f\x1f\xdc\xfc\xf1\xbe\xea\x69\x03\x41\xb6\x26\xfa\x3f\xdc\x5c\x64\x15\x0f\x75\x62\xd5\x75\xff\xdd\xbf\xff\x0f\xff\xf3\x7f\xf8\xf3\x9f\xfe\xf9\xd7\xdf\xfd\xef\x7f\xfb\xcb\xf5\x5f\x9e\x7f\xfe\xf5\xfe\xe9\xcf\xf7\xdf\x9e\x7f\xfa\xcb\x7f\xff\xdb\xf5\xfc\x3a\x9f\x7f\xf8\xd3\x9f\xff\xf0\x87\xb2\xff\xba\xff\x74\xfd\xf3\xf7\xcf\xf9\x7f\xd7\x3f\x1e\x7f\xfd\xc3\x1f\x3e\xdf\xff\x97\x7f\xf9\xa7\x7f\x7e\xfe\xf1\x3f\xfc\xf9\xfd\xcb\xaf\x4a\xbf\xfb\xbf\xff\x75\xf5\xfd\xf5\xeb\xef\xfe\xf3\xf3\x0f\x7f\xfa\xa7\x7f\xfe\xdb\xbf\xfc\xfa\x37\xff\xee\xfe\xcb\xf9\xfc\xff\x7e\xdd\xcf\xfb\x69\xff\xdf\xfe\x76\x3f\x7f\xfb\xd3\x9f\xff\xe1\xd7\xbf\xf9\x8f\xff\x59\x8d\xff\xe5\xbf\xff\xf5\xaf\xff\xf7\xf3\x8f\xcf\x9f\xff\xf9\xd7\x98\x6d\xcf\x9f\xef\xf9\xff\x7f\xf8\xbb\x7f\xff\x9f\x8e\xbf\xfe\xaf\xc7\x3f\x3e\xbf\xfe\xee\xbf\xfd\xf9\x4f\xff\xee\x3f\xfe\xe7\x7f\xfb\xdf\xfe\xeb\xdf\xd7\xfd\xdf\xfe\x2f\xf3\x9f\xe7\xbf\xfe\x1f\xcf\xdf\xfe\xe9\x4f\x7f\xf9\xf3\xaf\xf2\xff\xdf\xb6\x3d\x9b\xff\xeb\xbf\xfc\xf5\xf9\x55\xd6\x28\xff\xe7\x7f\xfa\xcb\xfd\xfc\xda\xf8\xab\x40\xe5\xf5\x97\xfb\xf9\xa7\xbf\x1e\xd7\xf3\xb7\xe3\xcf\xff\xf0\xfc\xe1\xd7\xaf\xff\x69\x5b\xff\xfb\xe3\xe7\x3f\xcb\xf6\xf7\x7f\xff\xf7\x7f\xff\xc7\x0f\x29\xff\x43\xcf\x3f\x94\x6d\x5b\x43\xfc\xe9\xbe\xfe\xaf\xe3\x6f\x7f\x58\x5f\x1e\xdb\x1f\x7f\x15\xfd\x51\xfe\xf8\x6b\xdf\x5b\x6c\x6a\x18\x7f\xfc\x55\xb6\xfc\xf3\xe0\xdf\x9b\x1a\xee\x3f\xfe\x2a\xf9\xd7\xf3\xe9\x9d\xa3\xbd\xf4\xee\xdf\x86\x33\x68\x08\x35\x7c\x86\x2f\x11\xbb\x1a\xd6\x04\xe3\xdb\x70\xfb\x67\x48\xfb\xfe\xf9\xce\x3f\x7d\xfd\x59\xca\xa4\xb7\xf7\xfa\x6d\xa8\x41\xc3\xf7\xfb\xfd\x72\x66\xf8\x7e\xb2\xdf\x1b\x0d\x5f\x1a\xda\x36\xc7\xb0\xfd\xcb\x45\xeb\x34\x7c\x69\xd8\xb7\xb2\x25\x93\xfb\xf6\x99\xf3\xc7\x5f\x36\x87\x1b\xfd\xdb\x50\x19\x7f\x98\x1a\xce\x3f\xfe\x2a\x75\xd7\x9f\x17\xff\xee\x6a\x78\x68\x88\x6f\x43\x6b\x34\x68\x7e\x9f\x43\x8e\xad\x7e\x1b\xe6\xae\xd4\xfc\xf3\x33\x64\xfd\x92\x54\xb6\xfa\xf9\xb3\xeb\xcf\xd9\xf9\x4b\x4e\x29\x75\x0e\xb6\x17\x35\x18\x0d\x5f\x0a\xcb\x5e\x68\xa8\x6a\xd8\x3f\x23\xb8\xfe\x5c\x1f\x68\xc2\xfd\xa4\x41\x53\xde\xfb\x6c\xe8\x1a\xf2\x6e\x34\x7c\x87\xdc\x37\x58\xea\x4d\x0d\x8c\xf1\xdd\xb8\x7d\xdf\xde\xd9\x60\xdb\xb7\xa1\x40\x96\x15\x35\x7c\x66\x69\xa1\x3f\x0f\xfe\xfd\x3b\xe9\xbe\x33\x87\x75\x35\x74\x1a\x4c\x0d\x73\xe9\x87\x8b\xac\x0e\xe1\x2e\x2a\x6c\x6e\x7d\xfe\x09\x0d\x21\xa2\xc6\xa0\x41\x3d\x0e\xe6\x18\xea\xf1\xc0\xc7\xf8\x92\x5d\x0b\x73\x8c\x2f\x9d\xed\x9d\x3d\xec\x7b\xcb\xf6\x3e\x3e\x3d\xf6\x4d\x9c\xf6\x79\x47\xf7\x4d\xac\xf5\xcf\x3d\x2d\x5a\xde\x7e\x7d\x16\x4f\x8b\xdb\x9f\xcf\x06\x69\x69\xad\x5c\xf3\x6b\x91\x64\xe5\xa1\xe1\x3b\xbe\x35\xc6\x17\x49\xd6\xa0\x60\x7c\x87\xf4\xf6\x19\xa3\x7f\x57\xf2\x9d\xdb\xd7\xf6\x1a\x6a\x68\xb3\xc1\xb2\xc1\x66\xc3\xf7\x66\xef\xef\x16\x9f\x86\xaa\x43\xfc\xce\x73\x39\x4a\x31\x35\x7c\x36\xb0\x75\xad\xc3\x3b\xcf\x44\xeb\x5b\x4e\x7b\xcd\x4f\xf6\x6c\x78\x67\x43\xd3\x18\x5c\xce\xfe\xa3\x61\x1e\x92\x2e\x4e\xde\x32\x29\x35\x5d\xc8\x77\x9e\xff\x51\x46\x53\x83\xcf\x1e\x2d\x1b\x26\xe9\xd6\xc5\xdc\x5c\xd1\x66\xc9\x5c\x99\x62\xd0\x7e\xcc\xf2\xce\xb3\xa9\x93\xf3\xee\x1c\xa4\x2e\xe6\xf6\x4a\x43\xf6\x98\x84\xe5\x71\x7d\xe7\x71\x6d\x23\x09\x9b\x17\xaf\x6f\x9e\x63\x7c\x08\xeb\xe5\xc7\xa0\x63\x36\xe8\xe4\xbc\xf3\x6a\xf6\x92\xfb\xb2\xdf\xb3\x61\x64\x8f\x77\x1e\xa5\xa4\x74\x0a\xb0\xbe\xe7\x66\x57\x0e\x5b\x0e\x5a\xf7\xd9\x10\xf9\xc9\x67\xc5\x86\xe7\x9a\xd6\x49\x58\x6d\xf9\xc9\x3c\x3f\x6d\x2b\x53\x35\x2d\x0d\xf4\xff\xa2\x93\xf6\xb7\x4e\x22\xfb\x8f\x19\x9f\xd9\xe0\x62\xa3\x4e\xaa\x7b\x68\x9f\xe7\x11\xee\xae\x3b\xf1\xce\x23\xdc\x3d\xb4\x25\xad\xd2\xe0\x6a\x68\xb3\x21\x37\xad\x7d\x16\xbc\xc7\xa6\x69\xdb\x5c\xf0\x28\xd9\xe0\x34\xe4\x27\x93\xd1\x51\xb4\x03\x6d\xee\x40\x0a\xcf\xb7\x1d\xb3\xa1\x26\xa5\x9f\x2d\xb1\x92\xfb\x3c\xef\x96\x15\x09\x9d\xb7\x3d\x7f\xfc\xb5\x6f\x7b\x6e\x7c\xfb\x70\x6b\xfb\xa6\x1e\x7d\x9b\x0d\x52\x43\xef\x47\x67\x7d\x1a\xb4\x40\x53\x92\xd9\x2e\xa9\xfe\xf6\x46\x83\xe8\xe8\x1f\x6e\xad\xd7\x1c\xe3\xc3\xad\x59\x15\xb7\xdd\x69\xd0\x8a\xf5\xa0\x21\xe9\x38\x66\x43\x5e\x95\x7e\xcf\x06\xcb\x86\xcf\xce\x99\xe7\x1d\xee\x2f\x0d\xa2\x74\x8a\x58\x0b\x29\xa4\x77\x0a\x59\x8b\xbc\xe5\x36\x79\x89\x3c\x5e\x56\x69\xc8\x1e\x8d\x06\x11\x66\x93\xb9\x68\xf9\xc9\x64\x2e\x24\xea\x5f\xfb\x6c\x94\x8d\x3d\x3f\x99\xbc\x8c\xe4\xd6\x4e\x1a\xb2\xc7\xdc\xa8\x91\x37\xc3\x26\xb7\x63\x64\xc3\x43\x43\x8e\xf1\xe1\xd6\xb7\x4d\xeb\x31\x75\xb9\x6f\x79\x65\x7d\x9f\x0d\x91\x3d\x3e\xcc\x79\x5a\x0c\xaf\xb7\xd9\x90\xd3\x7a\x9f\x0d\xa6\x59\xfc\xc3\x9c\xef\xb9\x1e\xee\x7f\xfc\xb5\x97\xad\xe7\xa0\x9f\x9d\xf3\x9a\x12\xcb\x8f\xd9\x20\x23\xe3\xf5\x0f\xb7\xde\xf2\xac\xfb\x35\x1b\x72\x81\xfc\x9e\x0d\x79\x60\xfc\x73\x4e\x4b\x89\xfc\x64\x72\xdb\x9a\x98\x8b\xc9\x6d\x4b\xc9\x19\x65\x36\x98\xb6\x21\x26\xfb\xbd\x89\xf4\xa8\x34\x68\xda\x98\xec\xf7\xae\x59\xa2\xd3\x90\x9f\x4c\xf6\x7f\x88\x8b\x70\x1a\x44\x69\x04\x0d\x5a\xb1\x18\xb3\x21\xd7\x23\x0e\x1a\x72\xd0\x93\x86\xfc\xe4\xfe\x70\xdb\xf6\xe4\xe5\xb3\xd9\x1e\x3d\x79\x79\x69\xd0\x18\x63\xb2\x1f\x79\xd5\xa7\x66\xf7\xb4\xb5\xde\x31\xb9\x1d\xb2\xe5\xde\xd1\x68\xd0\xb4\xe3\xc3\x6d\x6c\xb9\x62\xc3\x68\xd0\x45\x1e\x3e\x1b\x52\x2d\x8c\x8f\x11\x5c\x2c\xa5\xef\xb4\x52\x62\x8b\xec\xf1\xe1\x36\xd2\x66\x7c\xc7\x49\x43\x4e\x7b\xcd\x86\x54\xa4\xe3\x9e\x0d\x29\x4f\xc7\x43\x43\xf6\xf8\xb0\x1f\xfb\xae\x31\xa6\xd9\x12\x7b\xce\x72\x7c\xd8\x8f\x9a\xec\x1f\x75\x36\xe4\x6d\x38\xda\x87\xf4\xa8\xd9\x30\xd9\xaf\x79\xc6\x0e\xa3\x41\xd3\x4e\x63\x38\x7a\xc9\x41\x3f\x3e\x44\xf9\xa1\x37\x8f\x93\x86\xfc\x64\x32\xd7\x53\xe2\x4e\x37\x26\x6c\xcb\x1e\x0f\x0d\xea\x71\x96\xd9\xb0\xf7\xdf\x52\x60\xe7\xfe\x71\x21\x7e\xdc\xbf\xb3\xf2\xb9\x0e\xcf\xd9\x66\x43\x6e\xfc\x39\x19\xfd\x21\x39\x4f\xa3\x21\x49\x98\xfb\x6c\xae\xa5\x38\xe7\x2e\xfe\x90\xad\xe7\xdc\x45\xcf\xcb\x74\x5e\x34\xe4\x18\x9f\x43\xbc\x97\x10\x1d\xd7\xe4\xcb\xbb\x38\xbf\xe6\x1e\x79\xd2\x71\x4d\xd2\x3d\x6f\xc6\x35\x49\xff\xa1\x04\xaf\x4e\x43\x8e\x31\x49\x8f\xdc\xe7\xe9\x85\xc5\x0f\x91\x7e\x4d\xd2\x7f\xec\xf3\x75\x7d\x08\xab\x79\xaa\xa7\x0f\x11\xd1\x74\x9a\xee\x49\x47\xe4\x9a\xde\xd0\xd1\xb3\x47\x9f\x63\x7c\x65\x5a\x9d\x5e\x71\xf9\xc8\x41\x35\x54\x1a\xec\xdb\x50\x56\xc3\x1a\xa3\xd6\x39\xcb\xc7\x55\x50\x83\xd1\x60\x6a\x08\x1a\xbe\x9f\x34\x2e\x53\x7c\x85\x5c\x6d\x37\xdc\x7e\x4d\xbb\xda\x0b\x0b\xf4\xf5\x65\x6a\x9f\x2e\x56\xc4\x57\x62\xd5\x3e\x7d\x80\x88\xaf\x85\x5f\xcd\x56\x43\xfd\x36\x3c\xac\xe9\x57\x84\x55\xdf\x59\x8f\xaf\x69\x57\x7d\x5f\x9f\x7c\xa7\xf5\x0a\x61\x5f\xc1\x50\x9d\xe3\x10\xdf\x13\x54\x63\x5b\x0d\xdf\x69\x63\x9a\xba\x21\x35\x59\x23\x98\xc5\xdb\xb7\xe1\x5c\x83\x7e\x17\x28\x1e\xb8\xf5\xef\x02\xc5\x7b\xd3\xf0\xa5\x74\x4c\x0d\x1f\xf1\xb5\xde\xea\x30\xd6\xe3\x7b\xff\xea\x58\xb3\x7c\x05\x54\x1d\x83\x4f\xbe\xd7\xbe\x0e\xe4\x80\x22\x05\x75\x70\x3d\xe2\x2b\x8f\xea\x51\x07\x0d\x5f\x4a\x8f\x83\xf3\xf1\x3d\xb8\xf5\xb8\xe1\xf6\x2b\x3a\xea\xf1\xae\x31\xbe\x94\x9e\xdb\xa2\xe3\x4b\xe9\xb9\x16\xf9\x6b\xea\xd6\xd3\x99\xe5\xeb\x4c\xd5\xf3\xa5\xc7\xd7\xa0\xae\x57\x61\xda\xaf\x33\x55\xaf\x7d\x35\x54\x35\xb0\x40\x5f\x01\x55\xaf\x17\xc2\xbe\x66\x43\xbd\x0b\x6b\xfa\x8d\x09\xd4\xbb\xb3\xb7\x3a\xda\x37\x5b\x39\xbe\xce\x52\xbd\xb9\xb7\xe3\x6b\xbc\xd6\x87\x6b\x3a\xb6\x2f\x1d\xcf\x8c\x7c\x84\xc2\x08\xf5\x79\x6e\x1a\xbe\x74\x3c\xef\x6a\xf8\xae\x18\x6e\x5d\x8c\xef\x7d\x69\x1b\x67\x6c\x7c\xef\x4b\xdb\xea\xea\x11\xdf\x06\x5b\x74\x8c\x6f\x03\xf2\x59\x26\x72\xdb\xae\xd5\xb0\x28\x6d\x65\xba\x0f\x31\xbe\x12\xbc\x15\xe4\xf3\xf8\x4a\x98\xb6\xf7\xf5\xc9\xa2\xb4\x55\x24\xdd\x28\xfd\xdb\x70\xad\x31\xbe\x94\xd6\x67\x35\xb8\x1a\x0e\x1a\xbe\x94\xb6\xce\x7a\x94\x2f\xa5\xbd\x40\xfa\xfe\xa5\xb4\xbf\xab\xe1\x4b\xa9\x71\x3d\xa4\xbf\x9b\x21\x93\x65\xee\x37\x3b\x1f\x1a\xbe\x94\x1a\x52\x4a\xc1\x91\x66\xf7\x1a\xc3\xd4\xc0\xaa\x7f\x05\x4a\xf3\x7d\x35\x7c\x29\x75\x63\x3d\xbe\xa6\x58\x73\xa7\xc7\x57\x7c\x36\x47\xf7\x8e\xaf\xed\xde\x62\x9a\xc8\x31\xbe\x56\x64\x5b\x17\xf9\x63\x69\xfc\x7f\x2b\xb0\x16\x18\x19\xe3\xab\xba\x5b\x1c\xab\xe1\xcb\xc6\x98\xde\x69\xc8\xaf\x69\x03\x7b\x40\x96\x4b\x5b\x57\x76\x7c\x83\x04\x6d\x5c\x6c\xda\xd7\xa0\x6e\xc7\x5a\xf0\xaf\xbd\xd8\x8e\xc5\xf9\xd7\x72\x69\xc7\xc9\x62\x7d\xed\xf8\x76\xdc\x30\xda\xbe\x0b\x7e\x3c\xab\xc7\x97\xd2\xe3\x65\x96\xaf\x12\x6c\x67\x87\xf3\xaf\x29\xd3\x4e\x2f\x34\x7c\x29\xbd\x0b\x9f\x7c\xcd\x90\xf6\x4c\x39\xd0\xf6\x96\x0d\xb0\xff\x35\x42\xdb\xb3\xdd\xf4\xf8\x0e\xfa\x10\x79\xd8\x35\xe8\x33\xa3\x2c\x6d\xff\x9a\x87\xed\x29\x90\xfe\x75\x51\xdb\xb3\xaf\x41\xd5\x63\x5f\x74\x34\x35\x30\x4b\x36\x4c\xd7\xbb\xc9\x39\x6f\xcf\xba\x3b\x5d\xd3\xce\x70\x63\xdb\xbf\xda\xa8\x3d\x0d\x6e\x7f\x34\x74\x62\x35\xe2\xa5\x71\x33\xbe\xfa\xaa\x3d\x8d\x31\x4c\x94\x76\xa2\x39\x26\x6e\x3b\x94\x9a\x16\xc8\xa0\xc3\xc4\x8b\x31\x86\x6b\x8c\x75\x88\x4d\xbc\x18\xcc\xb9\x3e\x71\x8e\x83\x89\x17\x67\x1b\x5c\x9f\x38\x6b\xea\xea\x11\xac\x87\x8b\xb9\x80\x52\x17\x2f\x01\x61\x49\xc7\xf4\x05\xda\x1e\x22\x3d\x18\x34\x44\x47\xb0\x51\x49\xd8\x58\x9f\x68\x50\x0c\xea\x91\x84\x0d\xb8\x1d\x1a\x14\xfb\x79\xb8\x36\x6a\x30\xcb\xd0\xaa\xaf\x2b\xeb\x5a\xd3\x83\x59\x86\x98\x3b\xd8\x97\xe4\xf6\x44\x62\x25\xb7\x53\x09\xb6\xba\x89\xb9\x13\xc2\x42\xb3\x4c\x75\x9d\x61\xb7\xf6\x9c\x5c\xb1\xd0\x27\x53\x4f\xb4\x2a\x19\xff\x60\xbd\x8d\x5c\x8f\x29\x5b\x5b\x95\xd0\x7f\xae\xb9\x73\x55\x22\xfd\xc1\x58\x1b\xa1\xf5\xb8\x57\x0f\x7d\x72\x23\x1d\x42\xeb\x31\x2f\x72\xab\x12\xc7\xcf\xc3\x39\x0d\xd1\xf1\xac\x4f\x34\xc6\x3b\x63\x68\x72\x1f\xda\x33\xe5\x73\xab\x92\xbe\x0f\xca\x78\x84\x06\x7d\x91\x41\xb9\x73\x53\x3a\xb4\x2a\xe9\xfb\xd5\x79\xb9\x73\x98\x62\x0a\xd8\x36\x82\x9d\xa1\x80\x6d\x7b\xb7\xc2\x18\x5f\xc2\xde\xc2\x46\x7d\x35\x7c\x23\xa8\xd6\xaa\x84\x23\x41\xb5\x90\x4f\xd2\xde\xca\xaa\x4b\x5a\xbe\x95\xad\x94\xb4\x24\x86\xd6\xaa\xa4\xe5\x5b\xd9\x4a\x09\x25\xa2\x62\xa1\xf0\x43\x23\xe6\x15\x72\x74\x1a\x31\xaf\x56\x25\x2d\x09\x4f\x85\x02\x14\x8d\x68\x54\x8c\xa1\x69\x67\x58\xa8\x55\x49\x29\x02\x25\xad\x4a\xc2\x10\x28\x19\x9b\x0e\x0c\x11\x8b\x56\x25\x0c\x88\x58\x8c\x4d\x07\x86\x00\x45\xab\x12\x39\x84\x1f\x5a\x95\x84\x21\x52\x30\x36\xa9\x7c\x22\x05\xad\x9a\x98\x8b\x35\x46\xfc\x8e\x02\xc3\xe3\x6f\xd5\xb4\x7a\xd3\xe3\x1f\x9b\x4c\x88\xe9\xcf\x97\x56\x3d\x49\x78\xe8\x91\x33\xb2\x8b\x92\x03\xf8\xf3\x63\x93\x91\xf1\x0e\x88\x94\x1c\xc0\xc1\x1f\x9b\xce\x3d\xfe\xfc\xd8\x74\xcc\x71\xdf\x5b\x95\x60\xc0\x7d\x1f\x9b\xcc\x90\x17\x69\x53\x3d\x67\x61\xc1\x65\x97\xe0\xad\xb7\xea\x39\xcb\x45\x0f\xad\xef\x58\xcc\x69\xda\x03\x3a\x74\x77\xa6\x8b\xfa\x69\x10\x73\x27\x0b\x24\xcb\x05\x6f\x72\x6c\xb2\x5c\xde\x93\xf5\x90\x60\xc0\x79\x1c\x9b\x2e\x13\x9e\xe0\xd8\xf2\x66\x5c\x0f\x9f\x88\xb9\x9b\x15\xd3\x75\xc3\xcf\x1b\x9b\x0c\x95\xf7\x46\xda\xe4\x65\xba\x39\x2b\x79\x77\x6e\x08\x93\x2d\xf2\x2e\x69\x93\x17\xe1\x66\x2b\xf3\xfe\x3d\x95\x06\x11\xf6\xb2\x95\x79\xdd\xde\x49\x58\xdb\xb4\x84\x53\x96\xb4\x26\xd9\xfa\xbe\x2c\x61\x5e\xc8\x29\x5c\x5a\x93\x6c\x7d\xa7\x3f\x31\xb6\xbc\xa1\x6f\xd0\x43\xa4\xbf\x07\x0d\xa2\xf4\x85\xd2\xaf\xc5\xd3\xf1\x59\xc7\xf6\xb5\x78\xfa\xb6\xed\x7c\x62\x6a\x60\x91\xbf\x97\xba\x6f\xbc\xb5\xb4\xef\x75\xeb\xdb\xc6\x91\xfa\xda\x44\x7d\x9b\x6f\x2d\xad\x7d\xad\xf4\xbe\xf1\xb4\xd2\xbe\x56\x7a\xdf\xb0\x67\xda\x57\xa4\xf7\x8d\xa7\x95\xed\x6b\x46\x75\x5e\x3a\x5b\x2b\x9a\x76\x1a\xc3\x63\x6b\x1a\x94\x67\x91\x56\x44\xe9\xce\x9a\x16\xcd\xb2\xb3\xd9\x2d\x1b\xe0\xa5\x6b\xda\x9d\x53\xd8\xb5\x1e\x3b\x0b\xd4\xb5\x1e\x95\x05\xea\xa2\x03\x8b\x47\x81\xca\xbe\x21\xf5\x5a\xd5\xa0\x8d\x9d\xeb\x5a\x8f\xc6\x8d\xea\x62\xae\xad\x59\x44\xfa\x0c\xb9\x37\x05\x3b\xfb\xd6\x39\x41\x5d\x8b\x8c\xa0\x6c\x55\x63\x74\x76\xbf\x6b\x3d\x3a\x9b\x5d\x35\x68\x67\x81\xaa\xc6\x30\x78\x31\x71\x6b\x2c\x90\x89\x5b\x5b\xb3\x68\x50\x63\x16\x13\xfb\x4b\x1c\x9b\x28\xf5\x35\xa8\x08\xf3\x35\xa8\xe8\x70\x8e\x65\x9e\xb1\x29\x7d\x5b\xcb\x23\x15\x70\x6b\xa2\x34\xa0\x23\x8f\x54\x70\x09\x4d\x84\x21\x4f\x5b\x1e\x18\x84\x63\x6b\x9a\x76\x09\x47\xd3\x46\x2d\xe1\xe8\xda\xa8\x01\x73\xae\xf5\x38\xf8\xc4\x35\xc6\xc1\x46\xb9\x08\x3b\xd7\x18\xa2\xe3\x84\xd2\x3c\x1f\xd3\x47\x6b\x2d\x77\x7f\x9a\x40\x63\x73\xd1\x31\x9d\xb6\xd6\xf2\x38\x9c\x1c\xfe\x10\x61\x17\x74\x84\x08\xbb\x98\x36\xb4\x84\xd7\x9a\x56\x94\x5e\x9c\xa0\xae\x59\x10\x7d\xcd\xb6\xdf\x50\x60\x7d\xbb\xd7\x04\x62\x03\x31\xd8\x72\xe3\x97\x18\x0c\xf1\x75\xc3\x46\x9e\x84\x67\x51\x2d\xbe\x1e\x88\xcc\xa3\xf1\xb0\xe0\x21\xaa\x1f\x16\x2b\xcf\xca\xc3\x85\x0c\x2d\xf8\x83\xae\x09\x2d\xf8\xc3\xc6\xe7\x59\x79\xd8\xa3\x10\xe7\x2f\xb7\x7c\x68\x39\x5f\xe4\x51\x1e\x1e\xcc\xb2\x96\x47\x63\xc9\xc5\xa1\x05\x7f\x59\x4e\x9d\x95\xc2\x93\x73\xfb\x6a\xe7\x5e\x96\x18\xfc\x2a\xe3\x5e\x96\x18\x1c\xd9\xc0\xb4\x5f\xdd\xdb\xcb\xc6\x12\x0e\x35\x14\xee\xce\xd7\x82\xea\x85\xf7\xe3\xe6\xd9\xb0\xe8\xf8\x72\x5b\x96\x90\xd3\x01\x24\x5d\x62\x28\xea\xd8\xcb\xee\x34\x64\x0f\xb6\x52\x07\x90\x0c\x8a\x51\x24\x8e\xcb\x7c\x73\x1d\x45\xe2\xb8\xe0\xf8\x29\x33\xa7\x97\x5a\xe9\x51\xd4\xd0\x69\xd8\xd5\xc0\x56\x46\xf6\x60\xda\xc8\x1e\x4c\x5b\x44\x69\x45\x40\xe9\xd0\x95\xfa\xfe\xab\x47\xfa\x5e\x66\xd0\x64\x94\x22\xf6\x3b\x84\x8d\x6c\x38\x78\xa4\xd7\x2c\x4b\xea\x0d\xb1\x6f\xeb\x13\x71\x8b\x90\xd3\xcb\x7f\x2f\xc6\xb4\xbb\xe8\x70\xde\xf5\x73\x81\x7c\xcd\xa2\xbd\x9d\xcf\x55\xad\x17\x35\x20\xd3\x7a\x32\x17\xfb\xbf\xca\x1e\xe8\x05\x8b\xb2\x27\x73\xd8\x88\x65\xcf\x06\x52\x12\x92\xdb\x58\x19\x08\xd9\x70\xd3\x43\xcc\xc5\x22\x5d\x0d\x83\xad\x94\x7a\x2a\x83\x94\x84\x92\x0d\x6c\xa5\xf4\x55\x19\xac\xc7\x9e\x0d\x4e\x83\xb6\x72\xda\x88\xa3\xd4\x6c\x78\x68\xd0\xaa\x1f\xb0\x9f\xdb\x70\xac\x41\xb5\xa6\x07\xcc\xe5\x12\x1e\x2c\x61\x2e\xd0\x09\x73\xc9\xcb\xb9\x66\x11\xe9\x38\x8f\x3d\x99\xc3\x02\x2c\x4d\xa4\x5f\x2c\x72\x32\x37\xc3\x7f\xad\x27\xe9\x17\x5b\x29\x13\x88\xf4\xa1\x51\xa4\x9e\x48\x1f\x1a\x45\xea\xa9\xdc\xe4\x6c\x48\x1b\x15\x64\x61\x91\xf2\x29\xcf\xf6\xaf\x32\x43\x7a\x79\x38\x41\x52\xa4\x05\xc1\x56\x9a\xb6\x72\xca\xb1\xa1\x8c\xa2\x5e\x5e\x48\x4f\xc2\x5e\xd6\x43\xb3\x90\xc6\x94\xe9\x26\x7d\xdf\xd8\x6c\x99\x2f\x3b\x91\xa4\xae\x59\xf6\x95\xe5\xf2\xa3\xc7\x43\xc3\x97\xdb\x7d\xe5\xb0\x48\x81\xed\x85\xf3\xf1\xa3\x07\xec\xff\xe8\xc1\xf9\x90\x8a\xdb\x49\x48\xd1\x1b\x69\x27\xd5\xa9\xf5\xaf\x8f\xd6\xf7\x0a\xe9\x32\x3d\x76\xac\xa6\x2e\x99\xbc\x63\x35\x15\x29\xb0\xbd\x31\xed\xef\x29\xb0\xbd\x41\x93\xe5\xe7\x2c\x78\xce\xd8\x39\x3c\x12\xd8\x7b\xe7\xf0\xc8\xfa\xd9\x89\x3b\x75\x09\xec\xbd\x23\x4a\xa5\x04\xf7\x25\x6d\x2c\xc7\x20\x69\x48\x02\x7b\xef\x2c\x85\x04\x36\x49\x5c\x4d\xc9\x24\x7d\x9f\xd2\xa6\x75\x09\xca\xdd\xb9\xa1\x12\x94\x3b\x0e\xad\x5e\xdc\xfb\xee\x5c\x26\x09\xca\xdd\x17\x61\x1a\x74\x09\xa8\x64\xdf\xa1\x43\xea\x7a\xf7\x35\xad\x98\x5b\x02\x4a\x2a\x6e\x0f\xb6\x44\xda\x79\x5f\xd2\x46\x8a\x74\x5f\xa2\x43\x06\xd3\x8e\x6b\xa8\x7c\xa7\xbe\x1f\x10\x96\x8b\x8c\x9f\x57\x92\x7d\xac\x1f\xdb\x34\xc6\x74\xeb\x9a\x6d\x62\x7f\x3e\x01\x36\xdb\x34\x28\xc6\x8e\x6d\x1a\x94\x10\x91\x49\xe7\xed\xdc\x72\xbd\xa8\xf6\xfd\x42\x72\x4a\xe7\xed\x04\x91\x4c\x5e\xcb\x3e\xaf\x7d\x33\xa9\xc9\x7d\x5e\xea\x66\xf2\x38\x76\xac\x95\x92\xfb\xb2\xae\x6c\x6e\xc3\xcb\x12\xe6\x22\xe3\xc5\x99\x44\xe9\x8e\xd3\x66\x12\xa5\x3b\x3e\x9a\x49\x50\xd6\x6d\xf5\x70\x35\xac\x1e\xa1\x06\xf6\x56\x06\x4e\x5d\x89\x69\xda\x97\x8a\x3b\x65\x92\x8b\xb5\xb0\x1e\xf2\x16\x2a\xf9\x5f\x26\x79\x54\x97\x95\x20\x8b\xa7\x62\x25\x28\xdb\xa6\x57\xa2\x4a\x26\xd9\x5a\x97\x95\x30\x44\x7a\x5d\xb9\x6c\x55\x0d\xf1\xaf\x92\xdb\x7a\xad\xd0\x21\x99\x56\x1b\x77\x4e\xfa\xbb\x36\x48\x97\x80\xaa\x9d\xbd\x95\x65\x5b\xf1\x6b\x4c\xae\x50\x45\xc3\x2b\x41\xae\xd7\xce\x91\x92\xe8\xa8\xe4\x51\x9a\xc4\x4f\xb5\x45\xba\x3e\x99\x7e\x4d\x33\x49\x87\x6a\xac\xba\x84\x41\xc5\xd1\x29\x23\x07\x9d\xab\xbe\x6f\x39\xe8\x43\x83\xc6\x70\x48\xd7\xad\xac\x5c\x42\x3d\xaa\xf7\xea\xeb\x93\xec\xc1\x22\xeb\x12\xd6\x19\x88\x1a\x4a\xbe\xea\x35\xc8\x20\xd4\x9d\xab\x04\x8e\x76\x19\x6b\x15\x95\xbf\xcb\x36\xab\x83\xcd\x76\xf1\x82\xa3\xb3\x97\x6c\x80\x5b\x59\xb3\x75\xb0\xc8\xba\xb7\x75\x86\x74\xc6\xae\xdb\x50\xa7\xfe\x1e\x4a\x02\xeb\x95\x64\x6c\xd3\x15\xab\xc7\x22\x4c\x87\x8e\xbb\xaf\x34\xb1\xce\x3b\x5a\x33\x99\x95\xf5\x64\x4d\x65\x9c\xd4\x75\xf7\x25\x1c\x2b\x1a\x7e\xd7\x8d\xaa\xdc\xec\x7d\xcf\x1e\xd0\x21\xb1\x55\x6f\x56\x4c\x3e\x44\xbd\xa1\x23\xef\xdc\xba\xea\x79\x81\x66\x78\x78\xec\xb2\x56\x2a\x77\x7f\x97\xb5\x52\xe7\xc3\xcf\xd0\x4b\x7d\xaf\xb8\x1d\x7a\xa9\xef\x95\x9b\xed\x92\x41\x0d\xed\xbc\xd7\xdf\xc9\x42\xec\x0d\xe7\x60\x97\x49\xd5\xe6\x33\x51\x73\xad\x5e\x43\xcb\xba\x16\xab\xcd\x17\x9d\xe6\xe2\xab\xcd\x70\x46\x73\xb1\xd1\x76\xc6\x10\x1b\x6d\x67\xf5\x6a\xf6\x80\x0d\x45\x1e\x5a\x5d\x54\x77\x35\x54\xc6\xc8\x06\xd6\x46\x81\x86\x56\x39\x2b\x0a\x34\xb4\x19\x2a\x6e\x2e\x2b\xac\xcd\x7c\xc9\xa1\x0c\xde\xde\x66\xec\xb8\xb9\xcc\xb2\xd6\xd6\xa0\x62\xae\xb1\x9c\xb9\x1e\x33\x8a\xd2\x3c\x49\x27\x8a\xa2\x67\xb3\x3e\x53\xe9\x3f\x3d\xc4\x4b\x87\x30\x89\x9f\xd6\xd9\x67\xd9\x7a\x8d\x08\xc8\x2e\x5b\xaf\xcd\xdc\xbe\xb1\xcb\xd6\x6b\x44\x40\x76\x59\x61\xcd\x16\x61\xd9\xb0\x08\xd3\x7a\x18\x5b\x29\x3b\xad\x11\x23\xd1\x6b\x5d\x6f\xbe\x28\xcd\x06\x16\x39\x17\x08\x95\xef\xb9\x1e\xbe\xe8\xc8\x1e\x8b\x17\xf5\xc0\x05\xf1\xe4\x25\xe0\x45\xe1\xae\x86\x0b\xe2\xc9\xdc\x7c\xae\x1a\xbb\xa4\x6f\x23\xce\xb2\xcb\xf8\x6b\xd3\x05\x69\x9e\xec\x07\x6b\xda\x73\x16\x36\x3b\xb9\xc5\x27\xd1\x33\x62\x6f\x63\x11\x26\x6e\x97\x3c\x92\xbd\xd8\x0e\x16\x48\x42\xbf\x11\x89\xd9\x25\xf4\xdb\x8c\x28\x37\x4f\xf6\x0f\x04\x43\xcf\x06\xf6\x25\xd7\xe3\x58\x74\xa8\x81\x20\xf4\x2e\xb5\xd0\x4e\x56\x3d\xb9\x3d\x19\x23\x99\xc3\x27\xf1\xe4\x85\x58\xcd\x2e\x93\xb0\xe1\x93\x78\x52\x8a\x73\xa0\xe4\xf4\xde\xf0\x05\x3c\xa7\x25\x2e\xe2\x52\x3e\x6d\x49\x1b\xe9\x89\xf6\x40\x87\xb4\x51\xc3\x7d\xd8\xa5\x27\xda\xcb\x35\x95\x5a\x68\xbc\x4e\xb9\x82\x2d\x8d\xe0\xaf\x2b\xb6\xd2\x5e\x76\x4e\x6a\x81\x52\x80\xa1\x27\xd1\xde\x09\x72\xb8\x0c\xcf\xbe\xad\x69\x9b\x1a\xd8\x6c\xd1\xd1\xb7\x35\xc6\x77\xda\x4e\xf9\x8a\x8b\xb0\x5e\x38\x85\x32\x91\x3b\x81\x5b\x17\x1d\xbd\xac\x31\x34\x2d\x01\x0a\xbd\xb3\xf6\xbe\xa4\x94\x74\x4d\xc7\x38\xf1\x24\xbd\xb2\xc8\x49\x29\x11\x0b\x3d\xbc\xf6\x5e\x59\xf5\xa4\xb4\xc2\x9c\x74\x4d\xaf\x08\x47\x19\x7c\x7d\xc9\xb1\x24\x7d\xc9\x31\x59\x80\xbd\x71\xa4\x64\x01\xf6\xc6\x12\x26\x2f\x8d\x3b\x97\xbc\x10\x0d\xde\x65\x88\xf7\xb6\x78\x11\x73\x9d\x63\x99\xa4\xe3\x98\x78\x52\x8a\x63\xb2\x4b\xe7\xf5\xbe\x48\xd7\xb4\xd8\x44\x9e\xbc\xd8\x1a\x54\xa4\x3b\x8b\xac\xc8\x5a\x27\xa6\xe1\xc9\xcb\x12\x28\xf1\x3b\x59\x88\xbd\x63\xa8\x78\xd2\xb4\x64\x89\xc2\x5d\x7d\x19\x2a\x0a\x77\xf5\xe9\x2d\x34\xff\xd1\x30\xb5\xac\xde\x8f\x7b\x9f\x36\x45\x53\x92\x7c\xef\xf3\x51\x7a\x54\xf9\x02\xfd\x5c\x9f\x68\x96\x69\x42\x0c\xbd\x30\xf7\x8e\xfb\x10\x72\x30\x3a\xee\x43\xe4\x2c\xd3\x7d\x18\x7a\x72\xee\x7d\x06\x4f\x47\x95\x9d\xd6\xb1\x29\x22\xa7\x25\x3e\x1a\x39\x2d\xd7\xbe\xca\x70\xeb\x33\xff\xab\x45\xd2\xc1\x1b\x74\xe4\x2c\x44\x0d\xf4\xb0\xdd\x3b\x11\xd4\x2a\x4b\xae\xe3\x71\x54\x19\x6e\x7d\x56\xa4\x8d\x2a\xb3\x8c\x54\xbe\x51\x65\x96\xd9\xbc\xc3\xa3\xca\x0a\x33\x02\x95\xa1\x31\x6c\x63\xc5\x14\x88\x32\x02\x95\x4a\xb1\xec\x56\xa0\x43\x86\x85\x51\xc6\x12\x39\x0b\x31\x01\xbd\x85\x77\x23\x26\x10\x39\x2d\x4f\x2b\x55\xa6\x87\x61\x7a\xd4\x3d\x7b\xb0\x1e\x49\x07\x51\xc7\x50\xfc\xcb\xea\x9a\x36\xd4\xb0\x78\x19\x6a\x60\xd5\xf7\x6c\x60\x3d\x64\x7a\x18\x71\x80\x2a\xb3\xc1\x1a\x9f\xc8\x4a\x30\xae\x5b\xc8\xc4\x34\x02\x03\x7a\x1c\xef\x86\xca\x57\xd1\x40\x37\xd2\x4d\x22\x17\x88\x10\x62\x95\x9a\x34\x5e\x41\xaa\xb4\xa2\x39\xbc\xe4\x8a\xa1\xd0\xab\xb4\xa2\x39\xfb\x22\x15\x67\x38\xf5\x55\x1a\xcd\x78\xb6\x56\x02\x73\x37\x34\x7c\x95\xfe\x36\x34\x7c\xe4\xaa\xa3\xe1\xf5\xc0\xde\x0d\xed\x5c\xa5\xe2\x8c\x48\x5d\xe4\xbe\x1c\xeb\x13\x91\x4e\xa4\x2e\xf6\x6c\xe0\x56\xca\x67\xb5\x93\x3b\xd7\xb3\x61\x71\x2b\x5e\x4e\xb8\xed\xd9\xb0\x06\x15\x73\x17\x37\x2a\x77\x0e\xc3\x3e\x64\x23\x1a\x4f\x1a\xaa\xcc\xe8\x76\xb3\x51\xd2\x79\xc6\x9b\x84\x4a\x35\xba\x61\xd8\x2b\xd1\xb7\xdb\xbc\x73\x2d\x6a\x36\x70\x1c\xa4\x7b\x0d\xc3\xbe\x4a\xc5\xd9\xbb\x3e\x11\x73\xeb\x12\x4a\xc5\x19\x9a\x55\x8f\xfb\xdd\xd6\xad\x94\x7a\xf2\x6d\x7d\x62\x6a\xe0\x48\xc9\x12\x75\xde\x48\xa3\xe5\x27\xb0\x2f\x63\xcd\x79\x12\x55\x8e\x72\xf7\xb2\xc6\x08\x35\x70\xc5\xa4\x49\xfc\x7f\x28\x0c\xeb\xce\x0b\x68\x95\x6a\xf1\x9d\x31\x7a\x36\x30\x86\xf4\x04\xf9\x81\x2d\x74\xc6\x1c\x65\x5c\xa5\x27\x9c\xe0\x5e\xe8\x8c\x39\x6f\xa4\xaa\x55\xe8\x5e\xd7\x27\xdf\x7d\xf1\xb6\x3e\xd1\x18\x0d\x89\x2b\xed\xe1\x78\x08\x2a\x6f\xe8\x4e\x84\x2f\x7a\xf6\xe0\xc0\xe8\xd0\x51\x36\x38\x6a\x64\x03\xdb\x10\xbf\x93\xc4\xd1\x9d\x48\x9d\xb2\xa2\xbb\x1b\x87\x58\xb6\x9e\x13\x35\x08\x85\xff\x1c\xd3\x5f\x25\x17\xdd\x8d\x03\xa8\xf3\xe6\x4b\x30\x28\x68\xe2\x0e\xe7\xb2\xb1\xdc\xe1\x5c\x51\x14\x77\x2e\x93\xa2\x28\x8e\x2f\xa0\xdc\xeb\xee\xa8\xee\x3a\x72\x0c\x2e\x93\x0e\xb1\x93\xa9\xa6\x64\xec\xee\x64\xa8\x28\x19\xbb\x7b\xb0\x47\x3a\xb3\xce\x63\x43\x55\x8c\xc4\x09\x23\x44\x1e\xe2\xc1\xe1\x51\x48\xc4\x79\x06\x68\x0a\x89\x38\xcf\x00\xca\xdf\xee\x4e\x22\x88\xf2\x1c\xba\xa3\xae\x95\xe7\xd0\x9d\xe7\x51\xa5\x35\x74\xbf\xd6\xb4\x62\x6e\xc6\xf4\x87\xd2\x1a\xba\xa3\xae\x95\xd6\xd0\xfd\x82\x97\x3c\xd5\x24\x82\x28\xa1\xbb\xfb\x7c\x1e\x1d\x99\xd6\xe0\x53\x3b\x8f\x4c\x49\xf0\x07\x4a\xa5\x8c\x1d\x93\x5b\x25\x4a\xdd\x97\x1c\xc8\x73\x3f\xa3\x7d\xa3\x95\x6c\xe0\xc0\xe4\x31\x27\x45\xa3\x95\x6c\xe0\x10\xe7\x31\x9f\x4f\x91\x23\xb3\x18\xfc\x65\x2b\x15\xed\x73\x84\x4b\x93\x56\x0c\x9e\x01\x94\x14\xde\x83\x9c\x0d\x25\x85\xf7\x20\x96\xd0\xa4\xd1\x62\x6a\xe7\xd1\xa4\xc0\xa2\xc0\x9c\x14\x58\x14\x66\x91\x7a\x0a\x12\x4a\x95\x25\xde\x63\xd6\x94\x8e\x26\xd5\x12\x3c\x45\x2a\x6d\xbc\xc7\xce\x7a\x48\x93\x04\x45\xa6\xca\x23\xef\xb1\xb3\x1e\xd2\x24\x31\xc3\x90\x4d\x89\xe5\x3d\x08\x43\x2a\xb1\xbc\xc7\xbe\x08\x13\x1d\x75\xf5\x50\x43\x5b\x84\x89\x8e\xb6\x98\xd3\xb4\x58\xd8\x4a\x0a\xef\xc1\xbb\x62\x93\x26\x09\x42\x07\xca\x12\xef\x31\x1f\x1a\x47\x93\xd9\x10\x3c\x1f\x28\x6d\xbc\x47\x67\x16\xd9\x11\x41\xa0\x52\x59\xe2\x3d\xb0\xc1\x95\x25\xde\xc3\xd6\x18\x22\xcc\xd6\x18\xfa\x84\xab\x3e\x72\xe7\x66\x05\x40\x1b\xb9\x73\x5c\xf5\x91\x3b\xe7\x2c\x90\x34\x5a\x90\xb6\x3a\x72\x2b\x09\xec\x8f\xdc\xb9\x58\xb3\x68\xda\x58\xb3\x68\x8c\xf9\x14\x39\x9a\xc2\x0f\x41\x32\x5a\x26\x71\xc4\x58\x83\x6a\x1b\xc6\x22\x4c\xdb\x40\x08\x31\xd3\x3c\x62\xd6\x91\x8f\xcc\xea\x88\x83\x03\x23\xab\x29\x0e\x0e\xae\xac\xa6\xc0\xd2\x18\xb9\x0d\xb8\xec\x23\x57\xfd\x5c\x3d\x44\x07\xef\x09\x4a\x04\xef\x71\xad\x59\xc4\x0b\x0e\xc1\x48\xe6\x70\x08\x94\x19\xde\x03\xf9\xa1\xcc\xf0\x1e\x98\x1e\x23\xd9\xbf\xa1\x23\x99\xe3\xd5\xb0\x49\x91\xc6\xcd\x2c\xc9\xed\xcd\x9a\x4a\x91\xc6\xc3\x7a\x48\x09\xc6\xc3\xf9\x48\x4a\x1f\x0e\x6e\xdf\x7f\x47\x81\x51\x0a\xd3\x86\x34\xe4\xd8\xb8\x6e\xd2\x90\x03\xd3\x5f\x15\x92\x7d\x6c\x6b\x02\xf5\x20\x25\x21\xf3\x48\x46\x61\x4b\x14\xbd\x18\xb8\xef\xca\xbd\xee\xa3\xa0\x05\x14\xce\x18\x33\x25\xa1\x29\xf7\xba\x8f\x75\xcb\xa5\x26\x07\x46\x46\xfb\xd1\x03\xf9\x9c\x3d\xf0\xe7\x87\xf4\xd5\xa8\x5c\x48\x69\xd6\x41\xc2\x81\x52\xad\xfb\xe0\xf5\x21\x33\x43\x46\x5d\xa4\x8b\x5b\x02\x95\x99\xf7\x31\x70\xf0\x95\x7b\xdd\x07\xee\xbb\x52\xad\xfb\xc0\xa6\xc8\x44\x90\x41\x66\x56\x4b\xc2\x78\xb0\x50\x36\x72\x1f\x1d\x3a\x92\xb0\x25\x18\xa4\x16\x46\x5f\x83\x6a\xda\x05\xfc\x20\xb5\x30\x48\x5a\x50\x36\x72\x1f\xb6\x66\x11\x2f\x4b\x74\x24\xa5\x78\x1c\x99\x6e\x32\x70\x30\x32\x99\x64\x90\x88\xa5\x84\xdd\x3e\x78\x9f\x50\x7e\x6e\x1f\xf3\xda\xf7\x4d\xd2\x77\xcc\x5b\xde\x37\xa9\xeb\x31\x73\xd1\xfb\x26\xdd\x3b\xd6\x2d\x97\xaa\xa5\x10\xa3\x2b\x61\xb7\x0f\xfc\x89\x96\x0b\x34\xbd\xfc\xae\x84\xdd\x3e\xa6\x83\xd1\x37\xb9\xdb\x83\xd0\x5d\xcb\x15\x23\x74\xd7\x72\x81\x96\x1d\x21\x35\x39\xce\x45\x58\x36\x4c\x30\x82\x4d\x42\x7f\x4c\x49\xd1\x37\xc9\xf8\x41\x2c\xaf\x49\x91\x0e\x32\x4c\x9b\x14\xe9\xb8\x60\x5f\x42\x7f\x5c\x80\x22\xc8\x55\x1e\x17\x74\x8c\xec\x01\x1d\x32\x0a\x06\x09\x07\x6d\xe4\x27\x8b\x30\x31\x77\xb1\x84\x32\xf8\x06\x29\x09\x4d\x91\x93\x41\x86\x69\xcb\x9d\x03\x74\x43\xe9\xb3\x7d\x3c\xac\xa9\x44\xfa\x78\xd8\xca\x3d\x3f\x99\xb7\xa1\xe7\xde\x3e\xac\xba\x24\xf8\x78\x58\x20\x49\xf0\x41\xda\x6a\xcf\xdd\xe7\xc1\xb3\xcb\x58\x1b\xb8\x42\x5d\xb6\xd9\x78\x17\x1d\xda\x86\x17\x6e\xe5\xd6\x8d\x69\xe0\x8c\x9e\xbb\x3f\x9d\xa5\xbe\xc9\xcf\x3b\xe6\xc3\x49\x57\x92\x6e\x3f\x36\xb6\x41\x5a\xe0\x98\xbe\xd1\xe8\xda\xdb\xa3\xac\x4f\x9a\x1a\x2a\x3d\x34\x68\x81\x30\xa9\xda\x63\x5f\x3d\xf4\xc9\xce\xc1\x95\x16\x38\x78\x23\xcd\x9c\x9e\x03\xc0\x8b\x4c\x9f\x3d\x08\x54\x66\x4e\x0f\x25\x45\x23\x53\x78\x0e\xf2\xa4\x32\x63\xe7\xa8\xec\x9c\x34\xc9\x01\x58\x45\x26\xd8\x1e\x0d\x5e\xa4\x38\x8e\xb6\x3e\x11\x1d\x0d\xc2\x64\x14\x1c\x6d\x11\x26\x3a\x3a\xbb\x2f\x5f\xf1\x20\xf7\xb3\xeb\x38\x1c\x53\xc2\xf4\xcc\xa7\x3d\x8c\xf5\xd8\xf3\x93\x35\xed\x50\xc3\x9a\x36\x3f\x81\xdb\xdc\x39\x64\x50\xcf\x9d\x23\x51\xa1\xff\x56\x1d\x58\x3f\x78\xd2\xe8\xb9\x8b\xc4\x37\x7a\x6e\x5a\xac\x19\xc5\x06\x76\x49\x97\xfa\x3f\x06\x7c\x49\x0f\x1f\x24\x2d\x64\x2a\xce\x81\x1b\xd3\xa5\xfe\x0f\x1e\x1b\x7a\x6e\xc9\xf4\x5a\x7a\x26\xfd\x1e\x88\xb0\x9e\x7b\xc4\x6b\x68\xcf\x3d\x22\x02\x92\xc9\x3a\xc7\xc9\x2c\xb9\x25\xd7\x1a\x34\x1b\xa6\xe8\xc8\xcc\x9b\x63\x89\x0e\x29\xe3\xe3\xe2\x78\xc9\x40\x38\x2e\xce\x8a\xf4\xf7\x71\xb3\x1e\xd2\xbd\x07\x31\xc5\x2e\x27\xf6\x78\x38\x4d\x52\xe8\xc7\x12\x1d\x52\xe8\xc7\xc3\xb4\x3f\xc6\x60\x5a\x29\x52\x2a\x57\x47\x97\xce\x3b\xf0\x49\x32\x97\xe6\x24\x8f\x3c\x53\x67\xce\x8d\xcb\x24\x3a\x4e\x4c\x8f\xcc\x94\x39\xb7\x35\xed\x97\xfd\xb3\x2c\xc2\xd4\x03\x27\x25\x73\x69\x4e\x6c\x91\xcc\xa5\x39\x09\x67\xa8\xb4\xbe\x9f\x3b\xb3\xc8\x13\x3c\x77\x2e\x82\x78\x39\xd7\x0d\x95\xbe\x3a\xc9\xf0\xce\xf4\x9b\x13\x4b\x23\xb3\x6d\xce\xca\x29\x94\x02\x3b\x81\x7f\xc9\x6c\xe4\x13\xb4\x97\xcc\x35\x3e\xc9\x73\x10\x9e\x43\x3f\xb1\x23\xba\xf4\xf7\x49\xfe\x76\x97\x02\x3b\xd7\x95\xcd\x05\xea\x70\x2b\xf5\x74\x76\x04\x65\x72\x4b\x5a\x43\x97\xbe\x3a\x8d\x35\x4d\x5e\x0c\xe9\x9b\xbc\x38\xfb\x22\x45\x7a\x62\x25\x74\x29\x9f\xd3\x11\x94\x49\xba\x43\x58\x92\xee\x9c\xc2\x24\x7d\xdd\x5b\xe9\xab\x33\x98\x25\x49\xc7\x9f\xe8\xf2\x15\xcf\x80\x17\x69\xb4\x73\x59\x1a\xb2\x45\x4e\x0c\x8b\x2e\xe7\xf1\x9c\x25\x6c\x43\xc8\x55\xfd\xc4\x6c\xc8\xa4\xd4\x73\x7a\x0b\x3d\x93\x52\xcf\xf9\x5a\xd0\x8b\xd4\xf5\xc9\x05\xca\x7c\xc9\xf3\xa6\x87\xf4\xd5\x49\xb2\x5f\xe6\x27\x9d\xb3\x42\xa4\x0b\x00\xad\x9f\xb3\xa4\x76\x64\xc2\xd2\x49\xe8\x3f\x13\x96\x4e\xc2\xf6\x99\xb0\x74\xa2\x48\x33\x61\xe9\x7c\xff\x35\x96\x52\x3f\xe7\x6b\x5d\xcf\x54\xbe\xf3\x5d\xdc\x7e\x17\xe8\x42\x2b\x66\x5e\xde\x35\x23\xfd\x3d\xf3\xf2\x2e\xf2\x82\x04\x23\xd1\x2f\xb4\x62\x66\xb8\x51\x2d\x3e\x4c\x7a\xf3\xe2\xce\x65\x86\xdb\x55\x16\xa6\xd3\x97\x74\xea\xc9\xbb\x00\x84\xfa\xb5\x60\xa0\x74\x4d\x2f\x94\x60\x26\x4e\x5d\x75\x4d\xeb\x6a\x60\x3d\xa4\x6a\x2f\xa2\x7d\x26\xcd\x7a\xa1\xd1\x4c\x8a\xf4\x02\xea\x28\xf3\xc6\xae\x06\xb6\x94\x0e\xff\x85\x0f\x6f\x52\xb5\x57\x67\x5a\x1d\xfe\x6b\xc6\xf1\x7b\xe6\x6b\x5d\x9d\x31\x74\x91\x2f\x63\xf7\x65\x67\x5e\x68\x45\xc1\x8c\xf4\xcb\xd8\xec\xf2\x5b\x21\xc4\xcb\x38\x5e\xba\x19\xd7\x0c\xff\xf5\x4c\xd5\xba\xbc\xfc\x2b\x44\xac\x7e\x11\xed\x33\xc5\x04\x2e\x67\x07\x64\x51\x5e\x3c\x03\x64\x52\xd9\x15\xd0\x24\xf5\x7f\xc5\xea\xa1\x4f\x88\xe5\x99\x42\x00\x17\x51\x7f\xc1\x0e\xf6\x8b\xea\x08\x93\xbd\x78\x51\x1d\x61\x32\x10\x2e\xee\x5f\x26\xa6\x5d\xc7\x22\x5d\x9f\xe0\xbe\x67\xa6\xda\x75\x2c\xd2\x35\x06\x6a\x52\xb8\x23\xfd\x3a\x18\x54\x1a\xfe\x3a\xd7\xa0\x62\x7f\x2a\xd2\x9e\x69\x56\xd7\x54\xa4\x3d\xd3\xac\xae\x59\x64\xda\xf7\x2d\xc7\x78\x68\x10\x61\x17\xa0\x62\x79\x77\x50\xa4\x99\x0f\x77\x61\x61\x9b\xec\x88\x6b\xe6\x08\xf5\x5d\x56\xe9\xf5\xac\x31\xc4\x1c\x16\x76\x66\x66\x5d\x04\x08\x05\x58\xd5\xaf\x75\xed\x65\x69\x5c\x3c\xd2\x67\x4e\xdd\x35\x03\x84\x3d\x13\xb1\xae\xa9\x59\x7b\xa6\x59\x5d\x98\xcb\x99\x66\x75\x4d\x55\xdb\x33\xab\xea\xc6\xa9\xcf\xbc\xbc\x7b\xbe\x2d\xf4\x5d\x77\xe7\xc6\x87\xcf\xac\xbb\x1b\x39\x90\x69\x56\x77\x81\x0e\x1d\xa9\x7b\x62\x86\x0c\x93\x09\x74\x53\x6e\x65\xb2\x78\x6e\x04\x43\xa6\x48\x51\xc6\x3e\x84\xc6\xd5\x6f\x9e\xf1\x4d\x26\xd0\x4d\x69\x82\xc9\x04\xba\x77\xce\x98\xac\xd2\x7b\x5f\xbc\x84\x1a\xe0\x45\xe7\xf4\xde\xd7\xb4\x1a\xb4\xae\x31\xc4\xcb\x12\x2e\x12\xa5\x37\x99\xc4\x26\xb9\x78\x93\x28\x64\x32\xa3\xee\xce\xde\xea\xe0\xde\xb6\x66\xd1\xa0\x5c\xe4\x5d\x5e\xcb\xcd\x45\xde\x65\xea\xde\x84\xed\x33\x2d\xf1\xc6\x56\xcd\xa4\xc3\x3b\x60\x4e\x76\xd5\x1d\x30\x27\xeb\xf8\x0e\x36\x5b\xd7\xe3\x5e\xb7\x52\x02\xfb\x1e\x9c\x31\x49\xdf\x7b\x70\x1c\x74\x81\xee\x03\x5e\x74\xb4\xef\x03\xbc\x3c\x1d\xed\x1b\xe3\xd5\x2c\x1b\xb8\x40\x3a\xb8\x37\x61\x37\xb3\x6c\x60\xc5\x64\xe0\xdc\x3c\xbb\x67\x26\xe3\x7d\x32\xa8\xe2\x22\xf7\xc9\xf5\xa8\xf9\xc9\x9a\x25\x3f\x61\x50\x59\x91\x37\x71\xfc\xcc\x53\xbc\xd7\x35\x55\x5c\xe4\xbe\xe0\x36\x8f\x25\x0f\xf3\x99\xa7\x78\xdf\x70\x9b\xe7\xf4\x46\x28\xc9\x12\xbd\x6f\xae\x58\x9e\x53\xe2\x70\x26\x43\xeb\xc6\x66\x36\xd9\x99\xf7\xb3\x7a\x88\x97\x87\x8d\xca\x23\x85\xab\x9c\x39\x4e\x37\x45\x47\x99\xb8\x78\xbf\x6c\xb6\xec\xee\x1b\xbf\xd7\xa4\x7c\x40\x79\xe8\xbb\x65\x03\xeb\x21\x6d\xf4\x6c\x9c\x42\xed\xfe\xb3\x2e\xb2\xb6\xf2\x59\xf7\x36\xb2\x61\x0d\xea\x6a\xe0\x68\xff\x56\x21\x73\x7f\x0a\x9c\x47\x7e\x0e\xe7\xda\xf8\xa7\xb0\x25\xda\xf8\x87\x77\x01\x93\x79\xf8\xe0\x47\x67\x6a\xd2\x83\x51\x2e\x88\xdb\x0e\xf2\x44\xcf\x4c\x24\x90\x27\x7a\x66\x22\x3d\x15\x2d\xa0\x7d\x7e\x70\x9b\x33\xcf\x08\x28\x8a\x91\x39\x9c\x0f\x28\x90\x99\x67\xf4\xd4\x35\xa8\x78\x69\x1c\x0d\xe9\xde\x07\x80\xc5\x4c\xf8\x79\x00\x1e\xcd\xfc\x9e\x67\x89\x0e\x29\xe3\xa7\x73\xcb\x15\xcd\x79\x30\x32\x32\x03\xe8\x21\xfc\x67\x23\x1b\xd6\x18\x22\x1d\x3b\x3e\x33\x80\x9e\x65\x64\x48\x6f\x3e\x18\xe5\x2e\x13\xf3\xc1\x06\x70\x99\x98\x0f\x25\x93\x99\x6d\xfa\x04\x22\x5d\x8a\x14\x28\x8a\x5e\xa5\x48\x1f\x82\x7b\x55\x8a\xf4\x21\x41\xc7\xa5\xf3\x80\xa2\xe8\x35\xa7\x9d\xae\x72\xcf\x7c\x9c\x67\x2c\xc2\xb4\xd9\x63\xcd\x22\x6e\xc7\x9a\x45\xcc\xcd\x77\x81\x9e\xf9\x38\x0f\x12\x2b\xb3\x6d\x1e\x52\xf9\x5c\x9a\x15\x6c\x8a\xe1\x32\x53\x9f\x03\xc8\xd9\x1f\x0d\x37\x0d\xe2\x05\xff\xdb\x7f\x34\xdc\x34\x88\x17\xac\x84\x4c\x7b\x79\x88\xf6\xb9\x74\xef\x33\xcb\x2e\xbb\x60\x24\xfa\x83\x3c\x72\x29\xe3\x87\x67\x44\x97\x32\x06\xe5\xa8\x57\x99\x62\xcf\xbd\x06\xd5\x2c\x53\x1e\xf5\xcc\xa5\x79\x48\x5a\xf0\x9c\x05\x01\x95\xb9\x34\x0f\xf9\xca\x99\xf9\x0b\x58\xc5\xf0\x9c\x85\xd0\x5d\x66\xb9\x3c\xef\xea\xa1\x41\x5f\xa6\x95\xbe\x02\x68\x62\xb8\x74\x1e\xb8\x12\x5d\xa8\x11\xfd\xdd\x58\x42\x29\x41\xf0\x98\xba\x50\x23\x3a\x98\xb9\x3d\x13\x63\xc0\xcc\x4d\x28\xd6\x0e\x44\x6e\x17\x8c\x44\x07\x22\xb7\x0b\x46\xa2\x03\x91\x3b\x32\x8d\xf7\x45\xc2\x64\xa6\x0c\x68\xb6\x3d\x13\x63\xde\x7d\x7d\xd2\xd4\xc0\x12\x4a\xe7\x2d\x24\xda\x4c\x8c\x01\x78\x76\x64\x4e\xee\x82\x95\xcd\x4c\x19\x20\x31\x46\xa6\xe0\xbe\x95\xb3\x2e\xff\x4a\x38\xb3\xe2\xb6\xc2\xbe\xb4\xc0\xc2\x99\xad\xd2\x02\xe0\xc2\x8e\xcc\xda\x05\xd3\x75\x78\xb2\x8f\x5f\x53\x95\xd6\xb0\x10\x5b\x33\xdb\x06\x80\xd6\x9e\xb9\x34\x13\xa0\xf5\xd3\x20\x3a\x90\x41\x2e\xfb\x0e\xa4\xd4\xe1\x52\x93\x6f\x67\x3d\x2c\x7b\xb0\xc8\x96\x3d\x58\x20\xe9\x4d\x60\x4f\x7b\x95\x27\x38\x51\x3d\x4b\xcf\x1c\x96\x17\xc7\x44\xf0\x13\x1d\xcc\xce\x2e\x70\x89\x0e\xbc\xe6\xc8\x54\x60\xc0\x33\x7b\x26\xa4\xbc\x4b\x28\x29\x3e\xb3\xb0\x24\x32\x6b\x17\xa0\xc7\x2e\xc8\x86\x0e\x6a\xe3\xf0\xfe\x5b\x75\x60\x2f\xc6\x8e\xe7\x3e\x1f\x6b\x3c\xd1\xc4\xdb\x42\xa6\xf4\xbe\x4b\x74\xe4\x96\xe0\x71\x64\x7a\x05\x58\x88\x3d\x53\x23\x40\xaf\xe8\x99\x09\x01\xf4\xe1\xf0\xdc\xc5\x29\x7e\x7a\xa6\x46\x00\x6c\xd8\x33\x13\x02\xf4\x8a\x9e\x99\x10\xa0\x57\x0c\x97\xc5\xf0\xde\x9c\x26\x59\x94\xef\x12\x1d\xb9\x47\x38\x29\x99\xc5\xf0\x2e\x49\x21\xf5\xff\x92\xd6\xe0\xb2\xe4\x5e\x0a\x19\xdc\xf2\x93\x79\x34\x32\xf1\xe1\x5d\xb2\x24\x37\xfe\x85\x52\xc9\x56\x80\x26\x46\x26\xdb\xbe\x38\x29\x4d\xc2\xf6\x25\xa6\x2f\xf8\x06\xdb\x28\x62\x52\x5e\xac\x01\x01\x31\x94\x17\x6b\x40\x40\x74\x65\x53\xd8\x36\x25\x45\x57\xf2\x84\x81\x09\xd1\x95\x2b\x61\x1b\x69\x0d\xca\x8b\xb5\x8d\x88\xa1\xb2\x5e\x6d\xc3\x49\x51\xd6\xab\x01\x01\xd1\x95\x09\x61\x1b\x2e\x88\xb2\x5e\x6d\x61\x42\x08\x81\xd2\x36\x42\x88\x4a\x7c\x30\x60\xe9\xba\xf2\x1c\x6c\x81\x44\x28\xf5\xd5\x36\x92\x8f\x85\xfe\x6c\xc0\xee\x0f\x0f\x71\x4b\x16\xb0\x0f\x51\xda\x58\xc2\xaf\xf4\xb5\x0d\x27\x45\xb8\x12\xb6\x75\xd6\xa3\x8a\x74\x4c\x0f\x65\x31\xd8\xc6\xb5\x57\xd2\x82\x81\x09\x31\x04\x3a\x6d\x5b\x67\x96\x2a\x5e\xa8\x55\x50\x0a\xae\x6d\xce\x19\x1b\x22\x9d\x8a\x24\x1f\x22\x9d\x4b\xad\x47\x7a\xdb\x70\x74\x94\xa4\x6b\x5b\x40\x47\xcb\x31\x5e\x7a\x68\x5a\x1c\x1d\xa5\xcf\x1a\xe0\x0c\x5d\xcf\xe7\xb6\x11\xa5\x57\xfa\xac\x81\xd6\xd0\xf5\x7c\x6e\x1b\x50\x36\xca\xa7\xb5\x05\xdf\x10\x9b\x28\x9d\xc2\xa0\xeb\xb9\xdb\x36\xe2\x81\x7a\xdd\xb6\x6d\x86\x1f\x46\x6c\xd9\xc0\xb4\x45\x74\x9c\x4c\x6b\x5a\x42\x1c\x1d\xbd\x5d\xdb\x06\x72\x8d\x70\xbb\x0d\x80\x87\xa1\x8c\x5b\x5b\xf0\x0d\x91\xb7\x61\xdd\x7d\x13\xe9\xe4\x38\x45\x1e\xfe\x0b\xd2\x4d\xa4\xe3\x2c\x45\xde\x86\x6b\x4d\xab\x05\xc2\x38\x51\xfa\xac\x01\x01\xd1\xf5\xdc\x6d\x1b\xbe\x91\xf2\x69\x6d\xbb\x17\xb7\xd9\x83\xb3\xee\x62\x9f\xd8\xa6\xd2\x56\x6d\xbb\xc1\x56\x77\x71\x4b\xd2\xb2\xb2\x43\x6d\x7b\x57\x83\xe8\xc0\x16\x69\x79\xf7\xc1\xb6\x51\x76\xa8\x6d\x84\x41\x5a\x0a\x03\x9c\x25\xe5\x7e\x5a\xe1\x81\x41\xb9\x9f\x56\x30\x5f\x04\x2f\x60\xfc\x10\xc5\x08\x1d\x7e\x10\x1a\xba\xe0\x05\xac\x10\xfd\x0c\x1d\xfe\x52\xd8\x86\xaf\x63\x62\xfc\x3a\xc5\x50\xfe\xa8\x95\xb2\xe8\x30\x35\xb0\xb7\x5f\xb3\xc1\x40\x68\xe8\x7a\x00\xb6\x05\xc8\x10\x5f\xb3\xc1\x00\x64\xe8\x6d\xfc\xce\x1b\x98\x15\x9c\x25\x81\x8b\x5b\x01\x21\x5f\xaf\xc3\x56\x2a\x57\x65\x88\xc8\xba\x26\x10\x91\x0b\xff\x5e\x77\xb8\x00\x4f\x2f\xc8\x03\x2b\xa0\xd1\xeb\x31\xd8\x0a\x86\x8a\xd2\x4f\xad\x4c\x79\x34\x94\x7e\x6a\x85\x64\xca\x68\x9a\x96\x14\xa9\x90\x1c\x28\x33\x35\xa2\xeb\x65\xd7\x0a\x86\x8a\x32\x56\xad\x20\xb1\xba\x6e\xe8\x82\x6f\x50\x0a\xab\x01\xdf\x30\x94\xb1\x6a\x05\x89\xa5\x87\x5c\x2b\x78\x4f\x42\x60\xb6\x42\xa5\xa6\xd2\x4f\xad\xf0\xe8\xa1\x37\x57\x2b\x06\xa0\xbf\x8e\x79\x99\x49\x98\x5d\x90\x07\x06\xe2\xc3\x50\xc6\xaa\x2d\xc4\x07\x25\x97\x1a\x88\x0f\x43\xb8\xbb\x56\xf0\xc0\x84\xbb\x6b\xc0\x37\x74\x3d\xa0\x1a\x68\x0d\x43\x40\xbc\x56\x02\x3a\x74\xee\x0b\x52\xaf\xe7\x31\xc7\xbf\x52\xca\xa9\x95\x63\xf5\xd0\xaa\x23\xd3\x7a\x9e\x48\x9c\x25\x25\xa5\x5a\x21\x0a\xdb\xf3\x88\x62\x02\xf5\x26\x3a\x30\x81\x94\xb6\x6a\xe5\xe4\x7c\x34\xd1\x81\xd4\xd3\x93\xa8\x95\x73\xcd\xa2\x69\x09\xef\xf4\x3c\x30\xe7\x9a\x45\x74\x60\xf1\xf4\x3c\x30\x4b\xc8\x49\xb8\x14\x6a\x39\x95\x94\x6a\x65\x89\x30\xd7\xb4\x4b\x40\xb9\x66\xb9\x11\xfa\xae\x59\xc0\xda\x52\xba\xa8\x15\xde\x37\x05\x79\x60\xe5\x85\xb9\x3c\x1f\xbc\xb5\xf4\x2e\x5e\x5e\x7e\x6f\x24\x37\x1b\xf3\xa5\x6b\xb3\x81\x5e\xe8\xfa\xa5\x1f\x03\x58\xa1\xeb\x9d\xd5\x40\x49\xe8\x02\x20\x30\x7e\x21\xa6\x77\x71\xbb\x2f\xd1\x11\xf9\x09\xb3\x88\xfd\x7d\x66\x54\xf6\x2e\xf6\xf7\x25\x4b\x24\xc2\x76\x52\x12\x94\x83\x6a\x3b\xd6\x8a\x52\x4e\x6d\xdf\xd7\xb4\xf9\x09\xa7\x50\xc6\x09\xe0\x0c\x5d\x8f\xb7\xb6\x23\x50\xf4\xce\x6a\x3b\x49\x0b\xca\x41\xb5\x9d\xe8\x8b\x1e\x5e\x6d\xa7\x76\x4a\x39\xa8\x06\x9e\xc3\x50\x0e\xaa\xed\x18\x38\x02\x26\xb6\x9d\x07\x9c\x9e\x74\x60\xf1\xe8\x8d\xd4\x76\x82\x2d\x82\x2e\xb6\x7d\x09\x14\x59\x4d\x0b\x90\x41\x3f\x77\x64\xfb\xf4\x7c\x7a\x4f\x4a\xfb\x1a\x43\x0d\xa4\x35\x28\xc3\xd4\x76\x82\x2d\xca\x30\xb5\x7d\x49\x87\xe4\x85\x37\x9a\x9e\xbc\xf8\x1a\x43\xbc\x38\xeb\x91\xcc\xe1\x1b\xf5\x24\x1d\xf9\x21\xf8\x63\xdb\x71\x96\xf4\xce\x6a\x3b\xb5\xe0\xc2\x43\x36\xf0\x17\x86\xf0\x90\x6d\x27\xa4\xd3\x25\xc6\x77\x0c\x2d\x01\x24\xdb\x8e\x5d\xa5\x5c\x58\xdb\x79\xc5\x11\x40\xb2\xed\x44\x70\x2c\x49\x1f\x6b\x0c\x2d\xd0\xc4\x70\xe8\x96\xd3\x1e\xf4\x90\x09\xb4\x23\x61\x46\xf9\x9d\x42\x66\xdb\x8f\x35\x9e\x88\x9c\xcf\xb4\x43\x99\xb3\xb6\x13\x5d\x16\xe0\xb2\xed\x3c\x02\x59\xb2\x41\xba\x97\x10\x98\x6d\x3f\x17\x1b\xe2\x0b\x0f\xcc\x92\x0d\x82\x37\x96\xb3\x10\x89\x51\x2a\xad\xed\xc8\x12\xa5\xd2\xda\xfe\x32\xad\x2c\x06\xe0\x1b\xba\x5e\xa7\x6c\x27\x88\xab\x77\x23\xdb\x49\x7c\x50\x2a\xad\xd5\x6d\x8d\x11\x6a\x80\x74\x39\x07\x75\x5b\x63\x0c\x35\x40\xba\xc4\xf1\xc2\x73\x50\xf6\xad\x55\x1e\x70\x94\x5b\x6b\x95\x28\x8a\x5e\x74\x8c\x9f\x75\x1a\x4a\xb6\xb5\x8a\xd9\x20\xd0\x66\x03\xcf\x61\x08\xb4\xd9\x2a\x41\x57\x3d\xf1\x18\x00\x0f\x5d\x4f\x3c\x06\x5a\xc3\x10\xac\xb3\x55\x8c\x02\xc1\x30\x5b\x6d\x8b\x74\x4d\x4b\xb0\x42\xaf\x31\x56\x49\x8f\x1c\xb9\x1e\xa8\x7c\x93\xf4\x05\xe0\x61\x8c\x5c\x0f\x6c\x80\x91\xeb\x41\x6a\xe3\x48\x6e\x71\x52\x46\x92\xce\x95\xb5\x2e\xc2\xd0\xdf\x23\x79\x71\x8e\x83\x64\x7c\x25\xa4\xaa\x74\x5c\x03\xad\xa1\xeb\x01\xc7\xc0\x62\xe8\x7a\xc0\xb1\x4a\xb9\x95\xb0\x9d\xad\x06\xe7\xc3\x44\x18\x6f\x3e\x02\x7b\xb6\x4a\xb9\x95\xc0\x9e\xad\xc6\x62\x4e\xeb\x11\xac\x98\xd4\x75\x25\x61\x49\x4f\x3c\x06\x5a\x43\xd7\x7b\x8d\x81\xd6\xd0\xf5\x3c\x63\x75\x5d\x59\x39\x07\x95\x28\x8a\x00\xa3\xad\x92\x2b\x31\x72\xd5\xc9\xca\xd4\x5b\x8b\xd5\x75\x2b\x65\xf1\x54\xbc\x16\xc1\x41\x5b\xe5\x15\x55\xcf\x22\x06\x38\xc3\x18\xb9\xea\xa4\x34\xe9\x9d\xc4\x2a\xe9\x91\xc2\x84\xb0\x8a\xd7\x32\x72\x1b\x78\x78\x1d\xb9\xea\x44\x3f\xf5\xeb\x56\x56\x49\x58\xd2\x2b\x88\x55\x34\xfc\xc8\x7d\xe1\xe1\x75\xe4\x36\x90\xb0\xa4\x1f\x63\xb3\x8a\x0b\xa2\x1c\x65\xab\x3c\xbc\xea\x91\xc2\x2a\xef\x35\xca\x51\xb6\xc6\xb3\xaa\x72\x94\xad\x6d\x6b\x16\x53\xc3\xd4\x57\x7a\x3e\xb0\x46\xc4\x42\x8f\x03\xd6\xd6\xad\xd4\x46\x35\xde\x59\xf5\x5a\x60\x8d\x67\xd5\xa1\x9d\x6b\x85\xe3\x20\x8d\xd6\x78\x4e\x19\xb2\x23\xda\xce\xf9\x90\x16\x68\xeb\xaa\x6b\x2b\x1b\xa1\x4c\x21\x37\xdb\x42\x68\x10\x72\xb3\x35\x22\x97\x2e\x25\x08\x42\x43\x77\x29\xc1\x86\x22\xd5\x8b\x83\x35\xb2\x8f\xf4\xe3\x74\xd6\xd0\xac\xfa\x35\x3a\x6b\x24\x4f\xe8\x4d\xc2\x1a\xf9\x81\x82\x83\xb6\xc6\xb3\xaa\x4b\xc5\x35\x12\x06\x05\x07\x6d\x8d\x67\x55\xfd\xa8\x88\xb5\xa5\x6a\x65\xf1\x34\x6a\x9d\x94\x5e\x6d\xcd\xd7\x18\xfa\x24\xd8\x4a\x19\x16\x2d\x16\x2f\x22\x9d\x24\xc1\x11\xfe\x3b\x0a\xac\x8d\x35\x9e\x56\x8f\x47\x58\xc1\x3a\x1b\xbf\xc1\xd1\xf5\x72\x60\x6d\x40\xa4\x4c\x88\x46\xf2\xc4\xc8\xb3\x42\x58\x53\x4f\x09\xd6\xd6\x0d\xcd\xc3\x73\x30\x4b\x9e\x15\x14\xa9\x1e\x0a\xac\x11\xbd\x70\x69\x34\x00\x0d\xba\xde\x05\xac\x91\xf3\x2c\x44\x10\x6b\xc4\x25\x85\x04\x6d\x6d\x3e\x7a\x74\x41\x84\x58\x23\xd0\xe0\x52\x3e\x6d\x5d\xd9\x3c\x6f\x17\xdc\x4a\x1b\x35\xe2\x92\x42\x71\xb6\xc6\x23\xac\xf0\x3e\xac\xdd\xfc\xd8\x99\x34\x49\x5b\xba\x57\x66\xd9\xfc\xd5\x92\xfd\xf3\x9f\x6a\x60\xd3\xe4\xe0\x37\x42\x11\x7a\x28\xb0\xf6\x6c\x7c\xa2\x41\x3f\x82\xe1\xd3\xa0\x4f\x78\x16\x51\xf8\xdd\xda\x73\xd3\x23\xc7\x78\x69\xd0\x7a\x7c\x6c\x80\x4f\x83\x4e\x13\xde\x82\x22\xf6\xd6\x10\x1d\x8a\xb6\x1b\xc0\x0a\x5d\xd1\x76\x6b\x2f\x7b\x2b\xe5\xd3\xf1\x16\x84\xb3\x61\xfd\x63\x14\x7c\x66\x31\x35\xac\x41\xbb\x1a\xd6\x7a\xb8\x1a\x0e\x1a\x42\x0d\x8b\xf4\x2f\x73\x13\x58\x61\xdf\x94\xe0\x6e\x9d\x14\x67\x85\xdf\xad\x97\x41\x8f\xa2\x86\x9b\x1e\x9a\x65\x87\x30\x59\x4d\x7d\xe7\x77\xeb\xa4\xaf\xfa\xbe\x66\x11\x73\x98\x0d\x02\xcd\xb0\x5e\xd7\x18\xe2\xb6\x72\x0a\x25\xe3\x7b\x65\x1b\x14\xbb\xea\x8d\x9d\x53\xec\xaa\xf3\x63\x78\x0a\x75\x5b\xe7\x9d\x44\x18\x19\xd6\xdb\xe2\x45\x83\x92\xee\x25\xc0\x0b\xeb\x7d\xd1\x21\xd2\x3b\xd3\xea\xac\x03\x8a\xd0\x15\x0c\xb7\x4e\x8a\xb3\xc0\x2a\xac\x63\x36\x28\xb2\x6d\xdd\xf9\x44\x62\xb0\x07\x07\x46\x16\x60\x27\x1c\x9a\x31\xe7\xce\x1b\x47\xc6\x9c\x3b\x2a\x3f\x43\xcc\x7d\xac\x1e\xe2\x85\xaa\x8a\x0c\x0f\xf7\xb1\x48\x17\x73\x83\x55\x97\x40\x59\x3f\xca\x99\x01\x64\xc0\x14\xba\x2b\x2c\xd4\x79\xb5\x08\x5d\xb1\x8e\xcd\x9c\x71\xda\x8e\x30\xc8\xb0\x2c\x50\x09\x3d\xc3\xb2\xfd\xa3\xd0\xf7\x4d\x99\xf7\xd6\x2f\x8e\x65\xcd\x4f\x5e\x3e\x11\xe9\x08\x83\x0c\xa9\xf6\xf9\x43\x49\x9b\x32\xef\xad\xdf\xeb\x77\x0d\x45\x18\xcf\x18\x19\x41\xed\x53\xe5\xf7\x8c\xa0\x76\x4c\xf5\x0c\x54\xce\x1f\x4b\xf9\x0c\xaa\x13\xc4\x35\x55\x15\xbf\x81\x8c\xd0\x55\xd7\x6e\xb6\x21\x3f\x14\x17\x31\xd2\x2b\x54\x71\x6e\xb6\xb1\xea\xba\xfb\xb6\xb3\xd9\xba\xd9\xc6\xf3\x41\x48\x18\xd8\xc7\xaa\xfe\xf4\x30\x35\xdc\xf4\xf8\x2e\x10\x20\x06\x3d\x43\x5c\x56\x59\x0f\x5d\x42\x50\x0d\x7a\xc6\xbc\xac\x22\x0c\xf2\x93\xcf\x6d\xf8\x34\x8c\xdf\x51\x60\x40\x1e\x74\x55\x4a\x1b\x90\x07\x3d\x83\x59\xf6\x31\xdb\xf7\x4d\x49\xf2\x66\xfc\x08\xa4\x80\xb0\xcd\x1a\xab\xa7\x08\x88\x75\x68\x92\x79\x68\x7d\xcd\x22\xaa\x3b\x47\x43\xe6\xa1\xf1\xe8\x98\xf1\x2f\x60\x13\x7a\x06\x80\xcc\xd9\x12\xdd\x72\x73\x6e\xb9\x2c\x39\x30\x10\xba\x7e\xcd\xc9\xcc\x59\x70\x99\x76\xe6\x6c\x9a\x2c\x39\x73\x04\xa5\x04\x03\x28\x09\x5d\x3f\x00\x65\x46\x1c\x2e\xc3\x2a\x36\x20\x5d\x82\xc1\x48\xb3\xca\x08\x88\x0d\x16\x48\x66\x99\x91\xc5\x90\x11\x10\x23\xef\x2a\x23\x20\x76\x20\xe4\x92\x5b\x14\x7a\x86\x44\x26\xb0\xc2\xa7\x47\x7e\x02\x61\xb2\x01\xec\xe4\x00\xca\xd6\xb3\x93\xc3\xe3\xd9\x83\xa3\x21\x89\x65\xeb\x96\x4b\x7f\xdb\x09\x73\xae\xf5\x38\x17\x1d\xe2\xf6\x5c\xd3\x8a\x39\x0c\xfb\x0c\x9a\xd8\xb5\xa6\xcd\x1e\x4c\x1b\xd9\x83\x9f\x22\x95\xaa\x35\x0c\xfb\x8c\x6f\xcc\x9f\x22\xfa\x7c\x92\x3d\xd6\x27\x22\xec\x66\x91\x65\xc9\x81\xd6\xd0\x33\x9c\x61\x4b\xe5\x4b\x72\xf2\x43\x65\x3d\xc3\x19\xf6\xb0\xa6\xb9\x0d\x2f\x63\x48\xda\x18\xd1\x3e\xfd\x34\x93\x39\xea\x3a\x03\x03\x4e\xbd\x91\x6a\x6c\xcd\x97\x32\x96\x95\x0e\x5a\x43\x4f\x2f\xdf\xb7\x35\xad\xab\xe1\xa6\x87\x3e\x99\x8f\x95\x3d\x3d\x74\x27\xf1\x21\x3d\x74\xdf\xb9\x0d\xda\x17\xdf\xe7\x6d\xd0\x6f\x9c\xdb\x44\x5a\xf8\x34\x88\x30\xd2\x1a\xd2\x33\xf6\x5a\xe9\x51\xd5\xc0\x56\xb6\x6c\x60\xc5\x24\xa0\xf8\xe1\xb6\x9e\x6e\xae\x93\x38\x95\x5e\xed\x84\x6f\xf8\x0c\xaa\x4f\x5a\xa7\x41\x9f\xb4\x35\xa8\xd8\x5f\xbf\x4c\x2b\x11\xe6\xc4\xf2\xd2\xdf\xf4\xce\x27\x12\x28\xde\xd9\x17\xc9\x0f\x47\x7f\x0b\xc9\xda\xdc\x16\xfb\x5a\x42\x83\x0e\xed\xed\x04\x64\xf8\x34\x68\xc5\xec\xa2\x41\x0b\x64\x30\xd7\x73\x50\x98\x93\x81\xe3\xbe\xd3\x20\xc2\x1c\xd2\x25\x94\x00\x64\xe8\xe9\x5e\x3a\xb1\x84\xf4\x26\x41\x68\xe8\xe9\x4d\x4e\x84\x86\xcf\xa0\x6a\x08\x36\x4a\x26\x90\xc7\x1a\x43\x84\xf1\x8a\x9a\x9e\x20\x90\x0d\x7d\x48\xa0\x4c\xc8\x86\xcf\x18\x5a\xf5\xb1\x48\xd7\x18\x54\x55\xa8\xc0\xd5\xc0\x70\xe8\x2a\x70\x35\xc7\x16\xd1\x4f\x07\x99\xe3\xdc\xe8\x97\x82\xcc\x4f\x06\xcd\xeb\x41\x8a\x76\xfa\x79\x8e\xfc\x48\x97\xcc\xaf\xc2\x27\x5a\xb1\x25\x50\xc2\x7e\x47\x81\x39\xd2\x46\x80\xdc\xe6\x58\x1d\xc2\xdf\x36\xc7\x39\x48\x67\xc9\x6f\xb6\x55\x8e\x8e\x3f\x50\x2d\x17\x04\x3c\x87\xae\xdf\xaf\x31\xc7\x5b\x18\x79\xa9\x5f\xae\x9b\x5c\x10\xc0\x19\x2c\xbd\x05\x9f\x96\xbe\xa5\xb7\xe0\xef\xcb\x27\x5f\x3a\x02\x13\x42\xbf\x80\x6f\x51\x38\xb3\xb2\x3a\x40\x38\xb0\x34\xb9\x63\xe7\x00\xca\xea\x88\x69\x61\x5b\x9a\xdc\x51\x1b\x3d\xb2\xe1\xa4\xe1\x4b\x58\xb4\xd5\xa3\xab\xc1\x68\x10\x1d\xd3\xa0\x36\xfd\x24\x8b\x05\x06\xb5\x10\xa9\x2d\x1a\xcc\x69\xd5\x83\x1f\x1c\x56\x3d\xa8\x85\xc1\xad\x2e\x75\xf8\x9a\x76\xa8\xc1\xf8\x24\x1b\xa6\xd9\xa0\x42\x17\x9b\xe8\x04\x9f\x86\xa2\x06\xb8\x95\x18\x8c\x99\x70\x60\xaa\x07\xb5\x58\x57\x45\x1e\x07\xf8\x05\xa6\x02\x51\x8b\x80\x5b\x09\x97\x88\x35\xa8\x1a\xe6\x31\xb7\xb4\x17\x63\xb0\x84\x12\x3f\xc0\x15\x58\x9a\x87\x31\xd6\x18\xe2\xf6\x60\x2b\x25\xa0\xe2\x58\x84\x69\xd0\x83\x31\x72\xa3\xe6\x55\xb1\xb4\xf5\x62\xaa\x49\xdb\x92\x97\x75\xb4\x7b\xf6\xe0\xd0\x25\x2f\x17\xb7\x5c\x12\x2b\x2e\x66\x49\xd2\xef\x45\x98\x56\x7d\xda\xe0\x96\xa6\x18\x60\x04\xb6\x25\xa5\x37\x2b\x26\xdb\x0c\x74\x02\xdb\x72\x0c\x54\xad\x00\xb4\x2d\xd0\xac\xaa\x26\xb2\x78\x38\x30\x92\x7a\xf1\x32\xad\xa4\xde\x98\x9a\xd5\xd2\xae\x1a\x1b\x82\x41\x41\xb5\xb1\x71\x82\x14\x32\x1b\x1b\x94\x4a\xea\x4d\x10\x83\x4f\x8f\x1c\x83\x9d\xfb\xd1\x83\x63\x29\xb9\x38\x0a\xb3\xc8\xae\x1a\x05\xc2\x64\x46\x0d\x3c\xe3\x92\x0d\x3b\xe7\x43\x82\x72\x54\x48\x97\xa0\x1c\xeb\x12\xfe\xe8\x01\x61\x3f\x7a\xb0\x2f\x12\xa5\xa3\x72\x82\x24\x4a\x47\x43\x28\x29\x52\x37\x1a\xab\xfe\xa3\x61\xf1\x22\x6e\xf9\x59\x74\xfd\x16\x88\x8d\xa5\x15\x65\x8a\x0d\x7e\xf4\x5c\xbf\xcc\x61\x63\x69\x45\xd9\x66\xc3\xb8\xfb\xb2\x66\xc7\x52\x93\x39\x28\xbf\x3e\xae\x82\x3d\x1b\x4b\x6f\xca\xab\x1d\xce\x71\x90\xf5\x36\x9c\x8d\x92\xc4\x1d\x58\xe6\x25\xe9\x08\xae\xba\x8c\xb5\x31\xd8\x17\xb9\xb9\x63\xb0\xa6\x49\xd8\x58\x83\x66\x8f\x69\x34\x96\x24\x6c\xb0\x40\xb2\xef\xc6\xc1\x18\xb2\xaa\x01\x20\xb0\xb4\x9a\xc6\xc1\x46\x49\x59\x80\x48\x60\x69\x46\x8d\x83\x35\x4d\x5e\xa6\x21\x6e\x69\x46\x8d\x09\x68\x66\x1f\x13\xe8\x37\x14\xd8\x38\x91\x7a\xc9\x06\x36\xb8\xca\x9c\x0c\x74\x02\x4b\x0b\x6a\x9c\x73\xc1\x55\xf7\x64\x80\x11\x98\x7e\x3d\xd8\x00\x23\x30\xfd\x7a\xb0\x8d\xcb\xf9\x44\x54\x23\x4b\xf6\x1c\x74\x46\xea\x2c\xcd\xa1\x71\x57\x7a\x88\x30\xe4\x80\xaa\x9a\x6c\xa0\x37\x05\x2f\x6d\x20\x0b\x58\x5a\x50\xe3\x19\xf4\xd0\xb4\xb3\x5c\xc2\xd2\x82\x1a\x84\xdd\x54\xb3\x64\xe3\x5d\x83\x8a\x97\x77\x8d\x21\x5e\x50\xb5\x69\x74\x8d\xf9\xd2\x66\xe5\xc7\x18\x2f\x0d\xdf\x31\x0e\xfc\x79\xc1\x4b\xdb\x31\x9f\xde\x2c\xcd\xa1\x63\xeb\xf4\x18\x6a\x58\x94\xe6\x27\xf3\xcc\xaa\x10\xca\x00\x12\xb0\x92\x9f\x14\x48\x97\xf5\x03\xb2\x80\x95\x1f\x9f\x34\x7a\xec\x6a\xe0\x78\xfd\xf8\x64\xd0\x90\x3d\xd6\xb4\xdf\x15\x3b\x76\xa6\x95\x3f\x01\x3a\x81\xe9\xc7\x41\xec\xc0\x17\x50\x65\x94\x1d\xfb\x1a\x43\x9f\x54\xce\xbd\xe2\xb4\x47\x5d\x3d\x34\x06\x02\x2a\x6d\xa2\x83\x38\xdc\x9e\x9f\x34\x8e\xb9\x34\xeb\x81\xa5\xaf\x52\x29\x9b\xd8\x03\x9f\x06\x2d\x10\x86\x45\x9a\x40\x47\x63\x2b\x15\x22\x3a\x3a\x1b\xf5\xa3\x81\x73\xaa\x88\xd0\xd1\xd9\x5b\x05\x6e\x0f\x63\x3d\x64\x13\x4d\xb8\x82\xcf\x27\xe2\xc5\x58\x75\xa9\xeb\x09\x57\xf0\x69\x10\xa5\xc8\x34\xfd\xd2\x87\x1d\xbe\xc6\xd0\x2c\x48\x2c\x95\x17\xd9\x41\x2c\x41\xd5\x44\x76\x10\x4b\x50\xf1\x90\x1d\xc1\x8d\xca\x4f\x30\x4e\x84\x0f\x6d\x60\x16\x58\x1a\x6b\x47\xb0\xfb\x39\xc6\x60\x3d\x64\x9b\x1d\x88\x41\xe1\x43\xdb\x81\xb5\x52\x7e\x34\x5c\x34\x88\xb9\xb1\x28\x55\xc3\x31\x85\xad\xa0\x9c\x0d\x44\x02\x2b\x3f\x1a\x58\x20\x99\x1e\xc7\x92\x41\x3f\x1a\x90\x41\x32\x3d\x8e\x13\xf6\x65\x69\x1c\xf7\x1a\x54\xdc\x3e\x41\x0f\xad\xe9\xc3\xde\xca\xb0\x38\x30\x1b\xf4\x03\xb0\x76\x10\x72\xd7\xef\xbd\x1a\xf0\x02\x96\x06\xce\xf1\x72\xc6\xe4\x5f\x1d\x4b\x3a\xe4\x2c\xef\x1a\xf4\x4b\xd8\xb9\xb1\xea\x9a\xf6\x5c\x57\x5d\xd3\x9e\x1b\x4b\xa8\x69\xcf\xb2\xe8\x70\x35\x20\x3f\x34\xed\x59\x38\xfc\x32\x3d\x80\x28\xb0\x92\xd3\x16\x56\x5d\xb6\xc8\xb9\xee\x6d\x0e\xba\x43\xa9\x8c\x13\xe0\x05\x2c\xed\x99\xb3\x2e\x4a\x35\xc6\xba\xb7\x32\x2c\xce\xca\x36\xc8\xb0\x38\xd7\xbd\x95\x61\x01\xbc\x80\xa5\x2d\x72\x62\xcc\x97\xfc\xa4\x73\x70\xfd\xb7\x3c\xb0\xb3\x73\x22\x65\x64\x9c\xeb\x86\xca\x50\x39\xf1\xc5\x55\x2a\x65\xa7\xb1\x69\x52\xff\x13\x8c\xe0\xd3\x20\x12\x0c\x46\xb3\x87\xb3\x14\xd9\xc3\xd9\x67\x19\x08\x20\x0b\x58\x1a\x08\x67\xac\x69\xc5\x79\x70\xa9\x65\x64\x9c\xc1\x1e\xc9\x1e\x38\x83\xab\x92\x83\x62\x86\xec\x39\xe8\x58\x9f\x88\x8e\x81\x4c\x93\x6b\x78\x0e\x96\x53\xe1\x9d\xf3\x60\x5a\xd9\x25\x27\x66\x88\x7e\x71\xd7\xce\x83\x5d\x4c\x3a\x30\x32\x76\x99\x21\xe7\x7c\xbe\xb3\x54\xf9\xe7\xc9\xb6\xca\x0c\x39\x67\xda\x8b\xa9\xf6\xd9\xce\x19\xd3\xb7\x5d\x96\xcb\x39\xd3\xf0\x6c\xdf\x72\xd0\x8b\x86\x1c\x63\x4d\x2b\xe6\x26\xec\x91\xa5\x95\x70\x5e\xac\x69\x72\x8b\xe9\xa1\xfa\x69\x3b\xaf\xc5\x9c\xd8\xc7\x49\x49\xb3\xe1\xc4\x27\x49\xb3\xe1\xbc\x98\x45\xa6\xc7\x79\x23\x18\x64\x13\x01\x9b\x60\xa9\xbf\x4f\x1e\xe7\x54\xc2\x66\xf3\xd7\xee\xf7\xad\xe6\x02\xbd\x41\x83\x06\xc5\xff\x56\xc5\x9a\x5d\xa8\x7c\x55\xac\xd9\x35\x71\x47\x2c\xf5\xf7\xb5\x41\x98\x94\xf1\x85\x87\xae\x12\x36\x03\x36\xc1\x52\x3b\x5f\xa8\xfc\xd4\xbd\x17\xfa\x5b\x45\x6e\x76\xed\xab\x47\x36\x34\x7a\x7c\x97\xf0\xaa\x8b\x17\x57\x43\xe3\x93\xec\x61\xf4\x08\x35\x3c\xf4\x18\x6a\x58\xdc\xaa\x01\x39\xa0\xba\x38\x9b\x28\x09\x9f\x06\x71\x8b\x1c\x50\x89\xb1\x5d\x38\x18\x82\x94\x36\x70\x14\x2c\xb5\x33\xb0\x09\x96\xda\xf9\xc2\x05\x49\xdd\x7b\xf5\xc1\x18\xd9\xc0\x29\x94\x32\xbe\x50\xc6\x55\x66\x14\x38\x0a\x96\xaa\xf6\x42\x3a\x54\x99\x51\x17\xd2\x21\x75\xef\x45\xf8\x21\x75\xef\xe5\x50\x2a\x55\x7b\x21\x3f\x52\x91\x5e\xc4\x23\x6a\x6e\x36\xf1\x88\xd4\xac\x80\x29\x58\xea\xcd\x2b\xd6\x27\x22\x2c\x16\x61\xa2\x23\xb8\x51\x3d\x3f\xb9\xe9\x21\xc2\x06\x84\x49\x3d\x5d\x78\x2d\x35\x8f\xc3\xc1\x59\x97\xd0\xbf\x08\xfd\xd7\xdc\x7d\x3c\x8e\xd4\x24\x00\x21\x58\x2a\x8e\x0b\xfd\x5d\xf3\x38\x5c\x9c\x20\xf9\x79\xd7\x05\xa5\x92\xc9\x17\xea\x3a\x65\xf2\x75\xc3\x6d\x6e\x36\x81\x81\x14\xd2\xd7\xcd\x66\x4b\xc0\x5e\xeb\x9a\x4a\xc0\x5e\xbc\xc3\xab\xc6\xcf\xae\x87\x31\x24\xfa\x80\x4a\xb0\x14\x7d\xd7\xc3\x18\x12\x7d\x17\x36\x80\xca\x02\xed\x7a\xa1\x54\x12\xe6\x5a\x37\x5b\xd6\xdb\x4d\xa4\xa0\xb6\xdf\xc1\x42\xb4\x9b\xf7\x74\xfd\x16\xb5\xdd\x84\xf0\xab\x4e\x13\xa0\x08\x96\xc2\xe5\xc6\xd2\x17\x86\xb7\xdd\x65\xcd\x68\x6a\x70\x3e\x11\x4d\x18\xf6\x29\x7e\x00\x45\xb0\x14\x3f\xf7\x4c\xfa\xb5\x14\x2e\x13\x25\xe1\x33\xe8\x97\xd1\x7b\xe7\x0e\xeb\x44\xde\xf3\x8d\xd1\x52\xb8\x00\x8a\x60\x29\x4b\xee\x9d\xe3\xa5\xb0\xdb\x4d\x08\x51\xb5\x8b\x76\x63\x64\xa4\xa4\xb8\x2b\xec\xcb\xb4\xbb\x2b\x94\xca\xe1\xba\x2b\x27\x52\xb6\xde\xdd\x58\x20\xb9\x53\x77\x5b\x3d\x44\xd8\x8c\xd8\x5b\xde\xe1\xdb\xd8\x56\x85\x99\xee\x99\x7d\x6b\x79\x21\xef\xf9\xe2\x6e\x79\xdd\x6e\xcc\x86\xaa\xbb\x03\xf4\x82\xe5\xdd\xb9\x8d\x25\xdc\x73\x50\x96\x50\xb6\xde\x8d\x61\xaf\x72\x47\xbb\x27\xd8\xba\xe9\x37\xd3\xed\xc6\x8e\x50\x39\xac\xdd\xb1\x3e\x11\x1d\xc4\x14\x6b\xcd\x86\x35\x8b\x56\x6c\xb0\x1e\x3a\xf7\xf7\x80\x39\x1d\xe2\x1b\x3b\xbe\xca\x3c\xbc\x09\x67\xfc\x38\xc4\x07\x74\x48\x0c\xde\xd8\x00\x3f\xce\xe9\xc9\x18\xba\xf6\xf7\xb9\xc6\xd0\xa0\x58\xe9\x2a\xcc\xb4\x1b\x2b\x5d\x85\x99\x76\xcf\xcc\x3d\xfb\x71\x92\x79\xad\x53\xa5\xa6\x81\xb4\x60\x2a\x87\xb5\xfb\x5a\x83\x6a\x91\xd1\xdf\x3f\x8e\x14\x41\x46\xfd\x0c\xb8\x81\xc5\x60\x3f\x8e\xd4\xcd\x9a\x2a\x76\x75\x13\x5c\x50\xf9\xa7\xdd\x37\x92\x53\x12\xeb\xbe\xd9\x5b\x45\x3f\xef\x25\x5c\x14\x99\xba\x9f\x35\x8b\x06\x45\xb8\xfc\x38\x30\x38\x18\x82\xfd\x36\xc0\x19\xec\xc7\xde\xbe\x8c\x91\x5b\x89\xb4\xf9\xb1\x51\x2f\x8b\xac\xc8\xe5\xfd\x42\xba\x8c\xc6\xfb\x5d\xb3\x7c\xa7\x7d\x96\xa5\x21\x0b\xf0\xd9\x58\x64\x89\xc1\x67\x89\x1c\x89\xc1\x67\xc9\x0f\xc5\x25\x27\x98\xc2\xa7\xc7\x97\xb0\x87\x7c\x1c\x61\x7f\xdb\xb3\xae\xba\xac\xb7\x87\xc7\x01\x41\xa9\xdb\xb3\xae\xba\x04\xf6\x83\x61\x91\xeb\x01\x76\x82\x25\x2f\x0f\xf9\x05\xaa\x89\x35\xb0\x13\xec\x07\x73\xf8\x24\x3f\x98\x6b\xec\x8b\xe4\xf3\xd3\x16\xfb\x1a\xb4\xad\x4f\x34\xe8\xcc\xef\xb7\x9f\x9f\x20\xa5\x64\xdf\x3d\x7d\x8a\x0b\x15\xc9\xda\xd3\xa1\x34\x07\xed\x10\x96\x9f\x58\xe5\x13\x2d\xd0\x4c\x3a\xb4\x9f\x0d\x27\x0d\x5a\x20\xef\x7c\x92\x0d\x93\x52\x55\xbc\xda\xc3\x55\x17\x3a\xb8\x3d\x28\x74\x55\xbc\xda\x04\x42\xf8\xf4\x10\x2f\xb8\x0c\xaa\x78\xb5\x07\x95\xaf\x1f\x3d\xb7\x87\xe7\x83\x2c\x5f\x7d\x66\x82\x80\xb5\xf2\x5b\x1e\x18\xa0\x08\x26\xd8\x6f\x7b\x10\x1d\x02\xf5\xb6\x67\x66\xcd\x5b\x96\xb2\x3e\x3c\xd4\xfd\xa0\x9a\x64\x81\x1f\x44\x9e\x50\xbd\x67\x83\xd3\x43\x07\x10\x7f\x42\x38\xe0\xf6\xe0\x3e\x64\x59\x2e\x28\x09\x96\xe5\xb0\xcf\xc5\x96\x24\xa3\x48\x9b\xac\xd3\x7d\x78\xf4\x10\x86\xb7\x3d\xb3\xd4\xd9\xb2\xb6\x15\xd8\x04\xcb\xda\xd6\xe7\x5e\xa4\xeb\x93\x7b\xd0\xa0\xf5\x7d\x58\x0f\x99\x32\x0f\x41\xc6\x1f\xeb\x31\x53\x82\x4c\xe8\xda\xf6\xbc\x0c\x9a\xec\x13\x68\xf8\xc1\xed\xac\x6c\x36\x81\x69\xdb\xc3\xb5\x4f\x6e\x5f\xcc\x90\x2c\xfe\x7d\x37\xd6\x54\x32\xfe\xdd\xa0\x54\xfa\xea\xdd\xd6\x18\xae\x06\x48\x97\x16\x00\x25\xc1\x04\x95\x6d\x6f\x61\x4d\x15\x76\x7b\x77\x4e\xa4\x6c\x91\x17\x07\x23\x57\xec\xdd\x0f\x1a\x44\xd8\xce\xce\x89\x97\x97\xec\x01\xfd\x20\xbc\xbd\xf8\x24\xfa\xb9\x77\x7b\x91\x03\xfa\x35\x73\x7b\x31\x0a\x84\x03\x6e\x2f\xa9\x00\x4d\x3a\xef\xe5\x8d\x43\x20\xd6\xf6\x62\x36\xe8\xe7\xcd\xed\xc5\xe3\xf8\xb1\x40\x7d\xf5\x10\x61\x64\xee\xfd\x58\x8f\xce\xce\x49\x2d\xbc\x78\x1c\x3f\x16\x08\x4b\xe3\xc7\x7a\x18\xc7\x52\x22\xfd\x5d\x92\x42\x86\xd6\x6b\x0c\x2a\x19\xff\xe2\xa4\x34\x59\x5e\xaf\x2d\x4a\xc5\x2d\x1e\x47\x56\xe1\xbe\xce\xb4\x7a\xce\x7c\xf1\x38\xb2\x2a\xf9\x75\x0e\xbf\xf4\xe6\xbb\xa4\x8d\x0c\xfb\x97\xf7\x4d\xa1\x3f\xdb\x8b\x2d\xf2\x63\xd5\x09\x21\x0a\xdb\xd9\xde\x60\x5f\xa4\xbf\x5f\x9c\x94\x1f\x4b\xb8\x24\x96\x74\xef\x3b\xd6\xa0\x9a\x76\xac\x41\xb3\x01\xc9\x29\x65\xfc\x2e\x11\x26\xbd\xf9\xf2\xd6\x92\xb5\xcf\xef\x01\xfb\xb9\xc8\x07\x37\x2a\xd7\xf4\x58\x83\xe6\x27\x6b\x50\x51\x7a\x70\x4e\x15\x21\x7b\x97\x1c\x93\x02\x03\x90\xc1\x5a\x64\x0f\x36\x2a\xb7\xe1\x44\xa0\x44\x36\x20\x50\xa4\xc0\xde\x8b\x05\x92\xaa\x7d\x2f\xb6\x41\x9a\xf5\xc5\x15\x12\x4c\xb7\x81\xae\x60\x59\x57\xfb\x92\xb0\xf4\x63\xa3\xee\x35\x86\x28\xbd\x4f\x7a\xe4\xa0\x5c\x8f\xdc\xa8\x89\xbf\x60\x59\x79\xfb\xce\x34\x04\xcb\xca\xdb\xf7\x59\x9f\x88\x17\x04\x9b\x30\x95\x0d\x40\x06\xeb\x52\x60\x2f\xc6\x89\x30\xb7\xed\x7d\x59\x53\xbd\xd6\xbd\x24\x2a\xf4\xaf\x46\xf3\x6d\x5b\x63\xb8\x1a\x10\x7d\xdf\x8d\xf2\x6d\x83\xb0\xaf\x56\xf4\x6d\xe6\x38\x99\x2a\x6f\x1d\x84\x06\xeb\xe5\x77\x3c\x30\xdf\x90\x69\xbd\x68\x82\x59\x6d\x6d\x02\x5c\xf6\x6d\xe6\x2b\x9b\xf0\x95\x7d\x23\x8a\xa2\x5f\x11\xf7\x09\xce\xf0\x21\x52\x6c\x60\xfd\xe8\x47\xc3\x7d\x5b\x32\x2d\xc4\x17\xd9\xc8\x3a\x1a\xbe\xcd\xea\x68\x13\xf2\xb1\x6f\x95\x6d\xfd\x9e\x15\xdf\x96\x90\x1b\xe2\x9c\xc0\x8b\x2a\x79\x7d\x23\xbd\x42\xc0\xe0\xbe\x91\x5e\xa1\xaa\x6f\xdf\x08\xc0\xaa\xb4\xd7\x37\x8c\x1d\xc1\x7e\xfb\xd6\x91\x47\x43\xec\x63\xdb\xa8\xf8\xd7\x01\x67\x30\xa1\x27\xfb\xd6\xd7\x18\xe2\x16\x77\xaa\x57\x0d\xba\x44\xd8\x10\x73\x84\x55\x54\xfa\xed\x00\x3c\x98\x30\x95\x7d\x5b\x42\x6e\x88\x52\x84\x9c\x4a\x8c\x7d\xf3\x45\x98\x06\xf5\x45\x87\x56\x8c\x24\x68\x9d\x6a\x07\x13\xc2\x84\xa9\xec\x1b\x19\x19\x3a\xe6\xbe\xcd\x42\x28\x53\x11\xb2\x6f\xc1\x22\x37\xf5\x98\x85\x50\xa6\x9a\x63\xdf\x30\xba\x04\x3f\xee\x1b\x39\x1b\x82\x1f\xf7\xed\xe0\x8c\x35\x51\x7a\x70\xdd\x9a\xd8\x3f\x16\x1d\x62\x9f\x77\x12\x5d\x26\xdf\xb0\xab\x54\x2f\xec\x13\x24\xe2\xd3\x43\x83\x22\x8f\x54\x40\xec\x1b\xaf\xb9\x3f\x2e\xd3\xc5\x8a\x75\x7d\x72\xad\x1e\x5a\x64\x1c\x2e\x95\x18\x3b\x68\x0d\xa6\x12\x63\x9f\xc0\x0a\xfb\xf6\xe3\xba\xdd\x1c\x07\xcb\x06\x3e\x31\xd1\x41\xc0\x54\xa5\xf0\xbe\x2d\x49\x61\x5a\xa0\x97\x4b\x6d\x62\x1f\x49\xf1\xe3\x56\xbe\x6b\x96\xef\x7a\x4c\x1c\x85\x4f\x8f\xa6\x06\xd6\xf4\x2b\xc1\xbd\x90\x91\x91\xf7\xb6\x2c\xd1\xf1\x15\xe9\x5e\x78\x6b\xd1\xaf\xbb\xfb\xc4\x51\xf8\x7c\xa2\x31\x88\x8b\xa8\xf6\xd9\x0b\xc9\x8f\x42\x4e\xf7\xc2\x93\xa8\x8a\xa1\xbd\x4c\xa4\x16\x53\x65\xb3\x83\x8c\x60\x2a\x64\xf6\x52\x39\x96\xbb\x06\xad\xeb\x13\x51\x4a\xc0\x34\x25\x4c\xe1\x22\xf7\x5d\x83\x36\xc4\x85\x8b\xd2\x75\xb3\xbf\x7a\xd3\x0b\x21\x55\x61\x4c\x7b\x21\x82\x2a\x48\x69\x9f\x30\x07\x9f\x41\x35\x06\x7e\x8d\x30\xa6\xbd\x90\x4d\x9d\x12\xa6\x74\x96\x50\xe2\x18\x20\x04\x13\xe8\xb4\x17\xf2\x3e\x52\xc2\x94\xbe\xe8\x10\x73\xbc\x91\xf6\x5d\x94\xda\x94\x74\xbd\x8a\x52\x63\x96\x91\x0d\xcc\x22\xc1\x06\x54\x82\xa9\xb2\xd9\x8b\x73\x3e\x24\xc7\x0a\x2f\x30\x29\xb6\x0a\xd6\x8a\x2a\x9b\xbd\x04\xec\x4b\x8e\x15\xb2\xb1\x54\xc8\xec\x65\x5d\x75\xc9\x20\x80\x10\x4c\x60\xcf\x5e\x66\x45\x84\x09\xec\xd9\xcb\xba\xfb\x92\x52\x05\xff\x4a\x40\xcd\x5e\xf0\xaf\x54\xea\xec\x85\x27\x19\x21\xbf\x7b\x99\x35\x8f\x66\xdb\xef\x20\x71\xf8\x44\x49\xd8\xb7\x14\x50\x05\x43\x45\xb0\xce\x5e\x70\xb8\x52\x62\x81\x81\x60\x2a\x64\xf6\x72\xad\x4f\x44\x02\x49\x1c\xaa\x5b\xf6\x72\xc1\x57\xd3\xfa\xe2\x1b\xa9\x90\xd9\x27\x28\xc2\xa7\x87\xa6\x25\xab\x43\x80\xcb\x5e\x48\xf7\xb2\xbc\xb2\x04\x5e\x04\xbd\xe0\x05\xef\x29\x05\x65\xb9\xd7\xb4\xa2\x14\xe1\x62\x79\xff\x88\xc4\xf4\x26\xd2\x89\xb3\xf4\x26\xd2\x49\xe2\xe8\x5d\x7b\xf4\x72\x44\x25\x4a\x81\x4d\x30\x61\x08\xfb\x4e\xfe\x57\x8a\xd2\x1d\xef\x49\x18\xc2\xbe\x63\x97\x08\x15\xdf\xf7\xb2\xc6\x18\x6a\x60\x5b\x25\x4a\xf7\xb2\x3e\xd1\x18\x05\x21\xd7\xf3\x93\x29\x7d\x4d\x17\x61\x27\x0a\xdb\x4d\x0d\x3b\x67\x56\xc2\x76\x27\xf0\x92\xc2\x16\x60\x05\x33\x9d\xfb\x1d\xf1\xa3\x6a\x71\xdf\x89\xc4\xa8\x5a\xdc\x77\xfc\xab\x14\xc7\x7b\xe3\x13\x1d\x98\x9d\x84\xb0\x94\xad\x3b\x0f\x38\x29\x4a\x77\xc4\x8f\x40\x74\x7d\xef\xcc\xa2\x9d\xdb\x3b\x9b\xed\xe2\x85\xf4\x8a\x94\xad\x7b\x87\xfd\x9e\x3d\x6e\x1a\xb2\x07\xbb\x9f\xfb\x82\xf7\x94\xd2\x77\x27\xce\xa2\x92\x6b\xdf\x91\x25\xaa\xb0\xf6\x1d\xc3\x22\xe5\xf3\xce\xf3\x8c\xe5\x46\xe1\x2c\xa5\xc0\xde\x71\x96\x52\x3e\x83\xa3\x60\x96\x5b\xe9\x8b\x52\x6d\x25\xce\x52\xca\xe7\x3d\xd8\x7d\xd7\x2c\x3c\xcf\x08\xac\xc2\xf7\xb1\x3e\xd1\x18\x83\x15\x93\x04\xdf\x07\x47\x5b\x12\x7c\x5f\xb2\x24\x77\x1f\xbf\xc6\x72\x2b\x97\x2c\x91\x66\xdd\xb1\x23\x54\xc7\xed\x3b\x51\x58\xcb\xbd\xbd\xd6\xa0\xa2\x94\x07\x1c\xd5\x71\xfb\x8e\xd7\x92\x22\x7d\x5f\xc2\xc0\x44\xfa\xba\xfb\xb9\xd9\x04\x5d\x05\xab\xe1\x3b\x0f\x38\x96\xbb\x7f\xb3\xa6\xb9\x95\x84\x54\x2d\x37\xea\x59\x63\x88\xb0\x87\xdb\x20\x23\x7a\x27\xcd\x43\x38\x1b\xbe\x3f\x6b\x50\xb1\xff\xb2\xb7\x52\x2d\x3b\xb1\x95\x54\x2d\x95\xb8\x48\xea\x89\x4a\x8a\x86\xaa\xc5\xbd\x12\xf5\xd0\xef\x08\x78\x25\xdf\xc2\xb4\x51\x75\x59\x09\xd2\x13\x95\x80\x69\xea\x89\xca\xeb\x89\x60\x76\xbd\x62\x14\x08\x9d\xdf\x2b\x89\x9c\x29\xc6\x2b\x46\x81\x10\x30\xbc\x62\xbb\x0b\xc2\xc2\x2b\x1a\xde\x92\xf4\x75\x09\x93\x52\xde\x48\x55\xc7\xed\xb5\x07\x63\xb8\x1a\x2e\x1a\xbe\x6b\x5a\xc9\xa0\x48\x55\x50\x49\x69\x12\x3a\xbf\x57\x1e\x4d\x55\xfa\xed\x15\xeb\xde\x7e\x0b\x89\xc3\x2b\x2f\xaa\x36\x72\xc6\x97\xcf\xc5\x86\x2f\xbe\x44\x02\x57\xd6\x73\x39\xc9\xf2\x54\xa1\xb8\x57\x12\xba\x05\xdd\xef\x15\x6f\x41\x95\xe3\x5e\x29\x75\x10\x96\xbf\x57\xbc\x85\x54\x2d\xc0\x26\x98\xe7\x82\x07\x8b\x55\x44\x29\x39\x53\x9e\x8b\x35\x6b\x1f\xcc\x73\xb1\x70\x1f\x3c\x17\x8b\x5b\x2e\x20\x7d\xaf\xd8\x14\x82\x84\xf5\x8a\x3f\x21\x20\x7d\xaf\x14\x75\x09\x48\xdf\x81\x4d\x30\x4f\xe6\x48\xf9\x16\xb2\xbe\x57\xfc\x09\x21\xeb\x7b\x45\x30\x78\x72\x7b\x40\x7a\x72\x4b\x52\xb8\x27\x73\x3c\xf1\x08\x6a\xdf\x2b\x51\xd8\x54\x93\x95\xf8\x86\x27\x61\x3c\xf1\xa4\xf2\x01\x9c\xc1\x3c\x09\x43\xb8\x78\x12\x46\xe9\xa6\xd5\xec\xc1\x22\xd7\xec\x01\xb7\xd2\xbd\x15\x59\x92\x1a\x0d\x70\x06\x13\x24\xac\x57\x64\x89\x2a\xbd\xbd\x3e\xd0\x91\x83\x3e\x6b\x0c\xf1\xf2\x9c\x34\x68\x96\x87\xf5\x68\x39\x06\xdb\x20\xe7\xb1\x12\xa7\xb5\xec\xf1\xb2\xc8\x32\xc5\x2a\x89\x20\xf6\xa3\x01\xc2\xa4\x59\x1b\x01\x0f\x55\x58\x7b\x9b\x45\x5d\xa6\xea\x68\x6f\x44\x72\xed\xc7\x27\x8c\x21\x35\xd9\xc8\xfb\x10\x98\xa8\x37\xec\x08\xd5\x3e\x7b\xe3\x01\xc7\x72\x16\x0c\x8b\x54\xd7\x6d\x5f\xb3\xb8\x1a\xb8\x2f\x52\x71\x8d\xa0\xab\x10\x39\x1d\xb4\x06\xd3\x8f\xec\x7b\xc3\x4a\x48\xfd\xdd\x48\xb1\xd4\x0f\xd3\x7b\xe3\x69\x36\xb5\x73\x5b\x22\x4c\xda\xb9\x91\xd5\x21\x00\x4e\x6f\x48\x2c\x01\x70\x7a\xc3\xc1\x48\x75\xdd\x08\xa9\x0a\xd6\xd2\x1b\x46\x41\x6a\x67\xe0\x1b\x4c\x45\xc8\xde\x48\xa0\x4c\x25\xd8\x9c\x6b\x2a\xf7\xa1\xe1\x3e\xa4\x56\x6c\x01\x1d\x23\x1b\xd8\x06\x49\xbd\x16\xd3\x9e\x49\x9d\xd7\x96\x30\x90\x60\x6b\x14\x42\xa5\xce\x6b\xa4\x58\xa6\xce\x6b\x64\x74\xb9\x24\x5d\x23\xa3\x52\xd5\xd1\xde\xc8\xa8\x4c\xad\xd8\x08\x2e\xe8\x67\xe2\xbd\x4d\x24\x5a\x53\xb9\xb4\x37\xde\x68\x54\x2e\xed\x6d\x22\xeb\x9b\x8a\xa1\xbd\x91\x04\x96\x6a\x12\x0c\x07\x53\x75\xb4\x37\x2a\x3c\x85\x57\xef\x80\x3a\x98\xaa\xa3\xbd\xf1\x00\xac\xea\x68\x6f\x84\x43\x2d\x77\x9f\x1a\x50\xcb\xbd\x45\x7e\xa8\x7e\xda\xdb\xb9\x16\x48\x84\x4d\x7c\x5a\x13\x24\xa5\x37\xb2\xc2\x84\x40\xe9\xed\x5a\x4b\x28\x4a\x27\xb8\x8b\x09\x81\xd2\x01\x86\x30\x21\x50\x7a\xbb\x58\x42\xa9\xeb\x76\xad\x41\x45\x18\x8f\xc8\x16\xbf\xa5\xc0\x1a\xd9\xea\xc2\x86\x71\x70\x25\x4c\x00\x96\x0e\x6a\x84\xa9\x2e\xdc\x41\x8d\x30\x95\x81\x7b\xc3\xd1\x31\x39\xd6\xed\x66\xe3\x25\x5b\x1b\x22\x4c\x3f\xe6\xee\xed\x81\x51\x05\x19\x1b\x19\xef\x69\x53\x34\x5e\x98\x85\x79\xe9\x0d\x01\x25\xcc\x4b\xef\x88\x1f\x41\x5c\x7a\xdf\x16\x2f\xd9\x03\x5e\x24\x5b\x3b\x01\x53\x95\xa3\x7b\xc7\x1c\x12\xe0\x8c\x77\x22\xa8\x42\xc5\x74\x10\x1f\x4c\xa8\x98\xde\x89\xb3\x08\x92\xc6\x3b\x09\xaa\x42\xa0\xf1\x5e\xd8\x12\x39\x29\x0b\x02\x22\x6d\x1b\x20\x20\x4c\x98\x97\xbe\x20\x20\xd2\xd8\xe9\xfb\x9a\x56\xa4\x23\xb1\x54\xe3\xee\x9d\x14\xd6\x34\x87\x3a\xa9\x6b\x69\xca\x2c\x08\x88\x34\x4e\x3a\x81\x17\x55\xc1\x7b\xc7\xf3\xd1\x4f\x93\x7b\x47\xa6\xa5\x2d\xd2\x1b\xbc\x48\x3e\x83\x09\x61\x82\x82\xf4\x4e\x58\x45\xbf\x22\xee\x1d\xdf\x28\xad\x95\x8e\x15\x26\x14\x1b\xef\x48\x3d\xd5\xb5\x7b\xc7\x2c\x13\x8a\x8d\x77\x52\x56\xd2\x7c\xe9\x18\x5a\xfa\xe5\x70\xef\x76\xd2\x43\xec\x63\x24\xe9\x57\xbf\xbd\xfb\xfa\x44\xec\x93\xa1\xa2\x9f\xf0\xf6\x8e\x4d\x24\x74\x7e\xef\xe4\x9f\x84\xae\x7d\x1f\x8b\x30\x8d\x41\x09\x9b\xb0\x10\xbd\x53\xa0\x96\x26\x50\x5f\x12\x4b\x72\xa0\x1f\x83\x1e\x22\x9d\x4c\x35\x15\xcb\x7b\xc7\x5a\x11\xd8\x8d\xf7\x25\x8f\x74\xa3\x3a\x92\x42\xd8\x36\xde\xb1\x45\x54\x3d\xef\xfd\x5a\x74\x68\xc5\x2e\xc6\x90\xb7\xd0\x2f\x76\x3f\xcf\x3a\x11\xd4\xb4\xab\x3a\x19\xa6\x91\x47\xfb\xe2\x38\x48\xb8\x80\x3c\x61\x91\x67\xfd\x5e\xd3\x8a\x5b\x72\xd9\x22\x0f\xdd\xbd\xc6\x10\xa5\xcf\x1a\x23\x1b\xd8\x6c\x49\x87\x3e\xeb\xc9\x4d\xb5\xf1\xde\xa9\x7a\x1b\x79\x2c\x49\x5b\x4d\x53\x0c\x6c\x0a\x1b\x79\xe8\x88\x9c\xf8\xae\x15\x9b\x98\x32\x36\xf2\x14\xce\x22\x75\x1b\x79\xe8\xc8\x87\x73\x09\x25\xdb\x16\x1d\xd9\x50\xe8\x61\x6a\xe0\x14\x4a\xa0\x4c\x7c\x8b\xcf\x27\xea\x41\xea\xab\x70\x7a\xdc\xc8\x78\x17\x0a\x8f\x1b\x19\x6e\x42\x18\x74\xdb\xe1\x45\x07\xc6\x08\xcb\x0a\xcd\xcf\x6d\x67\xc5\x64\x12\x1a\xa9\x66\x42\xf3\x73\x6b\xac\x98\x8e\x83\x21\x0c\x04\xdc\xe3\xc6\xdd\xd7\x4f\x67\xbb\x11\x74\x1d\xda\x6c\xeb\x6b\x8c\x50\x03\xa4\x2b\x4c\x66\x7d\x11\xa6\x41\x71\xc9\xd2\x24\x34\x5c\xb2\x34\x09\x8d\xb2\x13\x61\x06\xba\x11\x52\x15\x60\x8e\x1b\x8f\xc8\x63\xff\x2d\x05\x66\xb6\x68\x12\x91\x04\x4d\x84\x2c\xe0\x46\x00\x56\x3f\xd6\xed\x86\x4b\x26\x84\x41\x37\x9e\x9c\x85\x57\xef\x86\x8f\x36\xf2\x24\x20\x5c\x46\x6e\x3c\x35\x29\x02\xe0\x71\x10\x30\x6c\xe4\x3e\x07\x47\x43\x96\x1c\x90\x18\xa6\xdf\xd5\x76\xe3\x41\x59\xd8\x7f\x6e\xf8\x57\x82\xa7\x77\x23\xfd\x6d\x48\x4f\x2c\x8c\x0c\x21\xf2\xb8\x11\x80\x75\xd9\x7a\x0b\xf0\x42\xf0\xf4\x0e\xe0\x85\xe9\xd7\xbb\xdd\x96\xb4\x91\x5c\x34\x8c\x9d\xb4\x8e\x17\xe0\x45\x5a\xc7\x46\xca\x8a\x20\x07\xdd\x30\x65\x46\x9e\x26\x2c\x17\xa1\x24\xb8\xf1\x5e\x23\x50\x04\x37\x4c\x99\x91\x87\x07\x59\x32\xf2\xac\xdc\x6b\x0c\xf1\x42\x48\x35\x6d\x70\x23\xac\x22\x10\x3e\x37\xa2\x28\x69\x72\xdb\xe3\xf4\xd0\x2c\x14\xcb\xa4\x0d\xbe\xd0\x2b\x04\x37\xe4\x86\xa5\x21\x50\x04\x37\x32\x67\x5d\x36\x96\x2d\xf1\x23\x4b\xdf\x96\xb4\xc9\xdd\x27\xa9\x65\xe4\x66\x2f\xf1\xa3\x70\x97\xbd\x1c\x07\x19\x5a\xb6\xc4\x4f\x6e\x36\x0f\xca\x02\xe1\x73\x5b\xf2\x48\x5a\xc0\x29\xc7\x13\xca\x91\x3b\x26\x90\x60\xfa\xdc\x41\xc1\x12\xb2\xbe\x3b\x26\x90\x80\x15\xdc\x09\xfe\xa6\xc7\xb1\x80\x37\x84\x94\xe4\x00\x6f\x98\x80\x15\x7c\x01\x6f\x08\x3a\xc9\x7d\xc9\x34\x29\x1f\x2f\x8b\x74\x0d\x8a\x8f\x96\x5e\x8b\x93\x5c\x23\xdc\x3e\x77\x82\xbf\xc2\x52\xf2\x89\xc4\xf1\xe9\xa1\x59\x08\x22\xa5\xd7\xe2\x95\x35\x95\x81\x03\xac\x86\xe9\x17\xcc\xdd\xb1\x89\xd2\x6b\xf1\xca\x22\xcb\x49\x59\x38\x1b\xe9\xa4\x38\xf1\x62\xc1\x37\xb8\x23\x28\xd3\x6b\x71\x92\xec\x84\xe7\xe0\x4e\x2e\x4d\x7a\x2d\x8e\xc5\x93\x5e\x8b\x13\x0d\x16\xe2\x83\xfb\x92\x7a\x3a\xc9\x6e\x6b\x0c\xf1\xc2\xbb\xb3\x10\x06\x7d\x01\x6f\xa4\xa3\xe3\xe4\xf5\x0a\x72\xd0\x9d\xb7\xa7\x74\x74\xdc\xd6\xb4\xd9\x30\x77\x2e\x1d\x1d\x27\xb4\x94\x8e\x8e\x13\x0d\x16\xe4\xa0\x3b\xee\x65\xfa\x35\x40\x62\xd8\xc8\x53\x88\x91\x34\xf2\x14\x12\xeb\x4d\xaf\xc5\xc7\xa0\x41\xdc\x52\xdb\x33\xf2\x58\x12\xf4\x49\xaf\xc5\x29\xf6\x49\xb7\xc3\x31\xa3\x46\x9e\x53\x92\x5a\xd2\x0f\x71\x9e\x99\xd3\x0f\x71\x1c\xbf\x91\xc7\x92\x57\x65\x61\x06\xba\x9f\x10\x26\xc7\xc4\x49\xbd\x4b\xc7\xc4\x97\x60\x93\x81\xe3\x54\x00\x0b\x9d\xdf\xfd\x5a\x63\x88\xfd\x6b\x8d\x21\xe6\x08\x0f\x8f\xf1\x3b\x85\xcc\xee\xf7\x62\x43\x9c\x3f\x85\x06\xb1\x41\xf2\xff\xc8\x33\x8b\xc1\x94\x6e\x0c\xc0\x1b\xbe\xe5\x99\x7d\x59\x5f\x69\x23\x9f\xe9\xb8\xbe\xe5\x11\x25\xbc\x93\x7e\x4d\xcc\xd2\x5e\x17\xf0\x86\xc7\xb6\x66\x71\x35\x70\x9a\xa4\x05\x02\x54\x80\x74\x52\x82\x7a\xbf\x50\x54\x29\xca\x1a\xf4\xbb\x8b\x81\x2b\x24\x74\x2f\x8f\xfd\x9a\x3d\x74\x44\x83\x9c\xba\x90\x26\x09\xf2\x4f\x84\x9b\xef\x51\x19\x54\x87\x78\x82\x77\x7c\x1a\xf4\xc9\xba\xc3\xd2\x35\x31\xc1\xef\x5c\x78\x1f\x1e\xd3\xaf\x71\x21\xea\x79\xcc\xf7\x1a\x17\x80\x9e\x87\xad\x69\xc5\x3e\x15\xfd\xe9\x2c\x05\xb0\x36\xe9\x1b\x4d\xf0\x8e\xcf\x18\x5a\x20\x2a\xfa\xd3\x59\x0a\x5f\xdc\x6a\xc5\x66\xa6\x9a\x6f\x3a\xc4\x41\xb1\x8c\x60\xf2\x3d\x66\xf0\xc6\x37\x9d\xd9\x20\x95\x36\xa4\xe2\x62\xac\x31\x44\xfa\x58\xd3\x66\xc3\x1a\x43\xdb\x30\xd6\x18\x6a\x38\x38\x1f\xf2\xae\xe3\x58\x74\x64\xc3\x1a\x43\xcc\x91\x76\x26\xfc\x32\x8f\x83\x53\xa8\x83\x1b\x27\x0b\x24\xf5\x14\x17\x94\xca\x6e\x8d\x8b\x7d\x91\x4d\x14\x44\x50\xd3\xcf\x8b\xf9\x3c\xe3\x5b\x9e\x42\xde\x6a\x85\xdf\xef\x13\x9a\xe3\xd3\x43\x74\xdc\x9c\x42\xbd\x1b\x05\x48\x98\xe9\x1a\x06\x85\x72\xe9\x1a\x06\x2f\xb1\xe9\x1a\xc6\xba\x62\x32\x81\x62\xe6\xc4\xfb\x96\x67\x1d\xc3\x42\xc8\xfa\x3e\xc1\x3b\x8a\x6f\x79\xf8\x1f\x8e\x43\x9e\x75\x1e\x70\x84\xbd\xef\xf1\xc2\x7e\x9e\xf5\x77\x4d\x2b\xe6\xde\x35\x8b\x78\x99\x75\xba\x2e\xfc\x13\x9f\x78\x1f\x9f\x86\xa6\x06\xae\xa9\x34\xc9\xd8\x58\x42\x19\x5a\x0b\xcd\x23\x5d\xd4\x31\x1f\x81\x5c\x10\x7b\xbe\xc0\x3b\x42\xe6\xcb\xc0\xe3\x10\xb2\xbe\x8f\x75\x4d\xa5\x16\x06\x8f\x40\xc2\xcd\xf7\x31\xb5\xb3\x0b\x01\xcf\x07\x49\x60\x02\xd2\xf7\x51\x21\x4c\x17\x68\x62\x75\x7c\x7a\x7c\x17\x79\x74\xf6\x56\xa7\x70\xe0\x60\xa4\x03\x3a\x3a\xbc\x28\xb6\x32\x8c\x4f\x64\xbe\x8c\xa5\x6a\x47\x36\xb0\xea\xb2\x56\x06\xd1\x06\x61\xde\x3b\x68\x1e\xae\x9f\x34\xf7\x61\x48\x07\x1d\x98\x01\x8a\x9e\x20\xe0\x7c\x38\xdc\xea\x04\x0d\xde\x68\xd2\x11\x1e\xce\x71\xd0\x91\x1a\xc4\x69\xd3\x11\x1e\x4b\x18\xe8\x48\x8d\x75\xb3\x65\x47\x2c\x34\x8f\x74\x73\x07\x39\x1b\xe9\xd5\x0e\x62\xac\xe9\xd5\x0e\xae\x69\x3a\xb1\xe3\x80\xd2\xdc\xfd\x63\x8d\x21\xf6\x0f\xf6\xc5\x7f\x07\x0b\xd1\x07\xc9\x5c\xe9\xbf\x8e\x13\xaa\x65\x53\x8c\x13\xe1\x92\xa7\xe9\x5c\x6c\x88\x84\x13\xd1\x91\xc7\x8b\x72\xd8\xf4\x81\x07\x6f\x2d\xe9\x03\x8f\x9b\x5d\xcc\x93\x70\xb3\x69\x79\x12\xd0\xac\xe9\x14\x8f\x9b\x1d\xc8\x93\xf0\xa0\x38\x72\xe3\x97\x22\xcd\x2d\xe1\x9d\x24\xdd\xd5\x81\xde\x14\x92\x9d\x03\xab\xe1\x45\xba\x77\x82\x66\x7c\x1a\x8a\x1a\x3a\x0d\xbb\x1a\x82\x86\xaa\x86\x83\x41\x9b\x1a\xd6\xa0\xd9\x70\xd1\xa3\xab\xe1\xa6\x87\x1a\x26\x10\xb6\x0b\xcc\xc4\xc1\xc8\x70\x81\x99\xf8\x51\x16\xe9\xd9\x63\x4a\x2c\x61\xbb\xf9\x41\x28\x53\xa8\xf8\x7e\xa0\xae\x05\x82\xef\x07\x81\x4a\x41\xec\xf9\x81\x60\x10\xc4\x9e\x1f\xf3\xb7\x2f\x5c\x50\x25\x7e\xa0\xbf\xd3\x33\x3e\x26\xa2\x9e\x0b\x88\xc4\x0f\x92\x38\x86\x6c\x91\x03\x4b\x7f\x48\x4f\x1c\x3c\xcf\xa4\xef\xbc\x40\x33\xd2\x77\x3e\x26\x3c\x9e\x0b\x00\xc4\x8f\x09\x8f\xe7\x42\x38\xf3\x83\x07\x9c\x74\xa6\x8f\xbe\x06\x15\xb7\x9d\x15\xcb\x05\xb2\x45\xba\xd8\x27\x19\x34\xfd\xde\xc3\xd6\x2c\xd9\xc0\xce\xe5\x7a\x38\xc7\x21\xd9\x77\x36\x2a\xb9\xa5\x7a\x46\xe8\xfc\x7e\x38\xbc\x24\xfb\xce\x66\x27\xe9\xa4\x8b\x0a\xbf\xdf\x0f\x84\x4b\x49\x5e\x10\x2e\xe9\x90\x1f\x08\x97\x92\xbc\xc4\xa2\x43\xa4\x07\xc7\x32\xe9\xe0\x55\x48\x90\x83\x7e\x0c\x4e\xb2\x94\xcf\x31\xd6\x27\xda\x17\x4c\xff\x21\xa1\x7f\x2c\x01\x25\x19\x7f\x0c\x28\x95\x36\x3a\xf0\x05\x04\xa4\xef\x07\x21\x55\xe1\x18\xfa\x41\x4c\x23\x9d\xfa\xe3\x5c\x3d\x34\x06\x21\x8c\xf4\xd0\x8f\x73\xd1\x21\xd2\x67\x08\xc3\x4b\x12\x76\x2e\xc2\xb4\x1e\x17\xbb\x9f\xd3\x62\x8b\xa4\x77\x7d\xdc\xab\x87\x66\xb9\xd9\xfd\x9c\x85\x0c\xd3\x74\xb7\x8f\x9b\x9d\xcb\x59\x78\xbc\x15\xb0\xa1\x1f\x13\x88\xd7\x4b\xce\xf2\xb0\xc8\x39\xc6\x03\x73\xb2\x67\x26\x00\xc8\xa7\x47\x8e\xc1\x2c\x3f\x7a\xb0\xc8\x52\x82\x07\xa6\xc7\xf8\xd1\xc0\x19\x93\x12\x3c\x96\x60\xfb\xd1\x80\x26\x91\x12\x3c\xde\x35\xe8\xf7\xc0\x9c\xdb\x22\x2c\xd4\xb0\xc6\xc8\x1e\x9c\x20\xe9\xbc\x73\xc9\x31\xa9\xb8\x73\xe3\x24\xcb\x26\x3a\x37\x66\xc9\x4f\x0a\x07\x37\x3f\xa1\x8a\x38\x5d\xf6\x73\x09\x36\x19\x49\x67\x61\x5f\xfc\xb7\xd2\xe8\xcf\xc2\x95\xfd\x31\x1e\x22\x2c\xc7\xdb\xb9\xc3\xd2\xc3\x27\xb9\x6c\xe3\x47\x03\xcb\x29\x07\xff\xdc\x5f\x7a\x68\x6d\x96\x90\x93\x73\x7e\x02\x52\x9c\xae\xf7\x59\x17\xd5\xea\xb1\x84\x9c\xf4\xe6\xb9\x84\x5c\x7e\x02\x6a\xb1\xd0\xfe\xfd\x5c\x52\x2f\x3f\x21\x27\x3e\xdd\xf7\x89\x3b\xf2\xe9\xa1\x59\x3a\x83\xca\x4b\x3e\x31\xa9\xd2\xc1\x3f\x31\xa9\x04\x08\xe6\x0b\x77\x44\xf8\xfd\x7e\x1a\x9a\x44\xf1\x9e\xd3\x58\x42\x69\xe7\x93\x18\x6b\x3a\xe7\x27\xbe\x51\x3a\xe7\xa7\x73\xee\xa5\xbf\xcf\x25\xf5\xa4\xae\x4f\x5c\x21\x61\x86\xf8\x19\xec\x9c\xac\xb0\x33\x38\x3c\x32\xba\x4e\x42\xaa\xe9\xcf\x9f\xb8\x42\xc2\xfb\xf0\x73\x49\xac\x9c\x76\xa2\x73\xba\x00\x40\xfc\x24\x75\x6d\x24\x1d\xf3\x11\xc8\x85\x08\xe2\xe7\x12\x61\x49\xd8\x7c\xd8\x76\x41\x84\xf8\x44\x26\xf9\x34\x68\x8c\x73\xf5\xd0\x27\x13\xfe\xcc\x77\xa9\xeb\x73\xfe\x1e\x98\x0b\x48\xcc\x4f\xdc\xa9\x91\xdc\x5e\x7c\x22\x47\xf8\x9c\x55\x80\x2e\xdc\x30\x3f\x67\x8c\xd5\x05\x13\xe6\xe7\x2c\xc9\x29\x5b\xb2\x3f\x63\xac\x65\x4b\x6e\xe7\x6b\x6e\xd9\x92\xb9\x59\x51\x5c\x32\x74\x70\xce\xd7\x5c\x17\xd4\x98\x9f\x33\x62\x51\x32\x74\x70\x3e\x8b\x30\x51\x3a\x45\x58\xc9\x38\xc0\xf9\x2c\x4a\xc5\xdc\x74\xa7\xca\x96\xec\xcf\x27\x9e\xb2\x25\xfb\xd3\x37\x2a\x42\xe7\xf7\xf3\x7d\x66\x83\xcc\x97\x6b\xc6\x47\x4b\x06\x06\xae\x8d\xcd\x96\xbb\x7d\x6d\x70\x2b\xb3\xf2\xda\xe0\x56\xd6\xca\xc4\x2e\xf9\x34\x7c\xb9\xbd\x08\x61\x08\xbf\xcc\x2f\xa4\x83\xe0\x4e\xfc\xda\xd9\x4a\x99\x1e\xd7\xce\xb4\x32\x3d\x26\x88\xc8\xa7\x41\x74\xf4\x45\x69\x36\xec\xb3\x21\x67\xe9\x6c\x54\xce\xd2\x21\x4c\x36\xe2\xc5\xad\xdc\x65\x47\x5c\xc6\xaa\xcb\x6c\xb8\x66\x08\xb1\x64\x60\xe0\x32\x96\x50\x06\x0e\x10\x21\x25\xdd\xfe\x8b\x8b\x2c\xa8\x12\x9f\x00\x20\x9f\x1e\xa1\x06\x78\x91\xe5\x75\x39\xdb\x90\xcc\x05\xc7\x41\x26\xd0\x15\xeb\x13\x4d\x1b\xec\xbe\xac\x15\xf0\x3e\x8a\x00\x49\xfd\x1a\xac\xba\xac\x95\x0b\xd3\x43\xc8\x62\x7e\x61\x47\x08\xee\xc4\xaf\x03\x4a\x73\x3d\x0e\x96\x30\xd7\xe3\x60\x8c\x96\x0d\x1c\xcb\xe4\x96\x20\x87\x00\x51\xfc\x9a\xde\x53\xd9\x92\x5b\x7c\x23\x21\xa4\xf8\x85\xeb\xb2\xeb\x51\xfd\x3a\xe9\x21\x4b\xe3\xba\x10\x28\x32\x81\x26\x22\xc8\x5e\x32\x52\x70\xcd\x97\x0f\x17\x6e\x98\x4f\x88\x90\x4f\x8f\xdf\x7a\x03\xbb\x1e\x38\x97\xfb\x3e\xe1\x42\x3e\x0d\x5a\xdf\x07\xbe\x7a\xf6\xe0\x34\xe9\xd9\xec\x7a\x61\x54\x36\xd6\xf5\x72\x21\x65\x63\x5d\x38\x3a\xbb\x8c\x9d\xeb\x5d\x8c\x7e\xc7\xb8\xf1\x7c\x04\xd2\xe2\x37\x31\x45\x21\x95\xf9\xbd\x71\xa9\x45\xc7\x8d\x1b\x23\xd4\x16\xbf\x0b\x63\xc8\x84\xb8\xcb\xfa\xc4\xd5\xc0\x31\x97\x81\x70\x17\xb8\x4d\x3a\x66\x8a\x46\xd9\x92\x8e\xca\x01\x94\x46\xbb\x2b\x27\x41\xa1\x88\xbb\xc2\xbe\x8c\xae\x09\xcd\xf1\x69\xa8\x6a\xe0\xaa\xc8\xc6\xba\x1b\x67\x56\x26\xd5\x4d\xb0\x42\x10\x2c\x7e\xf7\x35\x86\xb8\xed\x6b\x0c\x11\xd6\x59\x42\x29\x9f\x89\xe6\xb1\x17\xc1\xa8\x3a\x68\x1e\x2e\xd4\x16\xbf\x89\x4d\x08\xe4\xc9\xef\x75\x87\x65\xbe\xdc\xc6\x79\x93\x13\x0b\xbc\x87\x0b\x87\xc5\x6f\x47\xfc\xc8\xc0\xb9\x9d\x25\x94\x3d\x73\xe3\x82\x08\x54\xc5\xef\xf9\x50\xe0\x82\x4c\xf1\xdb\x39\x1f\xb2\x78\x00\x00\x71\x61\xa8\xf8\x1d\x8b\x17\x91\x1e\x5c\x37\xd9\x44\xc0\x7b\xb8\x30\x54\xfc\x1e\x6c\x83\x67\xc3\x94\x47\x82\x5f\xf2\x7b\xfe\x28\x80\x0b\x7e\xc9\xef\x99\x47\xee\x42\x5b\xf2\xfb\x60\xda\xc8\x4f\x58\xa0\xdc\xfd\x03\xa1\x9f\xbb\x7f\x20\xc2\xf4\xd8\x70\x9f\x2c\x90\x1e\xc5\x6e\x94\xb1\xd0\x96\xfc\xbe\x10\x2e\x32\x81\x6e\xdc\x07\x81\xaa\xf8\x84\xf7\xd8\x8b\x60\xf2\xfd\xe6\x96\x57\x89\xd2\x7b\xdd\x72\x59\x4d\x37\x21\x0c\xe1\x0f\xf9\x3d\x73\xad\xbc\x4a\x94\xde\x37\x47\x3b\xcf\x18\xee\x43\x95\x80\xba\x97\xaa\xcd\x23\x45\x5c\xb2\x4a\x94\xde\x38\x07\x42\x59\xf1\x7b\x3e\x67\xba\x50\x56\x1c\x68\x8e\x92\x81\x92\xfb\x65\x09\x65\xe0\xdc\x08\x03\xc1\xae\xf8\xb3\x6e\xb6\xce\xe9\x83\x66\xcd\xb8\xc8\x33\x53\xab\x5c\x28\x2b\xfe\x94\x35\xc6\x77\x96\x67\xa6\x9e\x97\x8c\x69\x3c\x68\x56\xa1\xf0\x38\xe0\x1d\x25\x83\x1c\xcf\x0e\xfb\x12\xb6\xcf\xce\xa0\x12\xb6\x0f\xd1\x06\x81\xee\xf8\x33\xed\xee\x22\x88\x7b\x9f\x58\x1d\x9f\x1e\x9a\x76\x86\x1f\x4a\xc6\x45\x9e\x0a\x2f\x3a\x74\x4f\x5b\x83\x86\x1a\x16\x1d\x1a\x74\x5a\xe6\x25\x83\x1c\x0f\x2a\x5f\x68\xab\xfe\x74\x0e\xae\x44\xce\x83\x30\x10\x42\x8a\x3f\xc6\x2c\x92\x1f\x8f\xc1\xbe\xac\x84\x87\xb8\xa4\xa0\x6c\xfc\x99\xf9\xe7\x45\xc0\xa8\xfe\x10\x7e\x10\x20\x8a\x3f\x6e\xf4\xd0\xb4\xeb\x66\x7b\x36\x70\x60\x24\x50\x1e\x14\xba\xa0\x53\xfd\x09\x48\x97\xfc\x78\x66\xa4\xa0\x14\x1d\xed\x27\xd6\x18\xfd\x77\x14\xd8\x83\xfa\xcf\x28\xca\x83\x1d\x2f\xac\x1c\x7f\x96\xa4\x90\x2c\x79\x66\x24\xb4\x64\x9c\x05\xb8\x10\x17\x34\x8e\x3f\xc4\x26\x04\x8d\xe3\x6f\xa5\x87\x9c\xa5\x77\x82\xb4\x94\x0c\xcd\x00\xce\xe0\x55\xce\xd2\x4b\x0c\xbb\x4a\x74\xbc\x6d\x7d\xe2\x6a\xe0\x68\xe8\x76\xbd\x0d\xce\x25\x5c\x5e\xd4\x82\xd0\x63\xfc\xed\xec\x80\xee\xce\xdb\x39\x2b\x32\x65\xde\xce\x7a\xc8\x50\x01\x69\xa1\x08\xad\xd4\x01\x56\x28\x42\x2b\xf5\xd7\xd6\x18\xe2\x76\x09\x7d\x89\x9f\x77\x9d\x04\x49\x9b\xd7\xd9\x45\xc9\x92\x17\x0f\x4c\xd0\x38\xfe\x3a\x37\x43\x72\x00\xe8\x85\x92\x51\x94\x77\x1d\x1e\x09\x06\x90\x16\x8a\x40\xdf\xfd\x8d\x35\xa8\x48\x27\xcc\x24\x04\x1a\x7f\x83\x45\x96\xbe\x7a\x39\x3c\x02\xad\xf1\x77\xa6\xce\x78\x93\xd7\x02\xd2\x82\x37\x79\x2d\x2f\x4e\x5b\x93\xd7\xf2\x0e\x96\x50\xa6\xc7\x3b\xd6\x18\x22\xec\xe0\x54\x2b\xf0\xf2\x1e\x6b\x50\x71\x8b\x9e\xc8\x48\xcc\x7b\x70\xbb\x64\x14\xbc\x33\x93\xd8\x05\x49\xe3\xe0\x28\x94\x8c\xc4\xbc\x33\x0b\xd8\x85\x18\xe3\xef\xb9\xc6\xd0\x2c\x3c\x8a\x09\x42\xc6\x5f\x1e\xc5\x84\x18\xe3\x00\x2b\xb8\x00\x62\xfc\xbd\x58\xa0\x92\x63\xc0\x9c\x5c\xb2\x17\xc7\x4f\xe0\x2e\xfe\xde\x8b\xb0\xec\xb1\x98\x53\x0f\x14\x47\x06\x5e\xc0\x51\x70\x41\xb7\xf8\x3b\x31\xe6\x5c\x48\x2d\xfe\xce\x5c\x9a\x92\xa1\x19\x90\x16\x8a\x40\xdf\xfd\x9d\xa9\x7c\x2e\x2c\x17\x7f\x71\xeb\x32\xd8\xf2\xbe\x6b\x16\x11\xf6\xc2\x9c\x7c\x92\xf7\x5d\x83\xae\x1e\xb1\xcd\x3a\x03\x17\xb6\x4d\x6c\x1b\xc2\xe0\x2b\x1d\x02\xa4\x05\x6f\x5f\xd3\x3f\xb6\x8d\x41\xbf\x96\x7e\x6c\xd8\x99\xc2\x72\x89\xad\x30\xc6\x57\x3a\x04\x60\x0a\x2e\x70\x97\xd8\x0a\x0b\x14\x1a\xb4\xa0\x27\x22\x07\x85\xd2\xd0\xa0\x3b\x67\x2c\x34\xc6\xbe\xc6\x10\xa5\x3b\x37\xea\x6b\x47\xc4\xb6\xb3\xa6\xdf\x40\x49\x6c\x3b\x27\xa8\xaa\xa1\xa2\x49\x86\xd8\xc7\xbc\x15\x62\x4c\x6c\x48\x3a\xe1\xc1\xc4\x56\x19\xa3\x89\xb9\x89\x29\xe3\x42\x7b\x89\xad\xad\x31\xc4\x4b\x5b\x63\x88\x97\xa5\xd1\x86\x06\x6d\x1c\xcb\x26\xe6\x70\x62\x15\x05\x8a\xad\xa3\x6a\x87\x66\xe9\x6b\x50\xb1\x3f\x11\x1a\x5c\x00\x31\xb1\xf5\x35\xa8\xb8\x45\x2b\x0a\x0f\x26\x36\x63\x4d\x87\x28\xf5\xd5\x20\x4a\x11\x5b\xc2\xc7\x89\x0d\x7f\x53\x28\x2b\xb1\x0d\x4e\xe1\xd0\xb4\x68\x0f\x61\xa8\xc4\x36\x16\xb7\xbf\xf3\x06\x16\xdb\xfc\x75\xab\x22\x9c\xd9\x98\x38\x0a\x9f\xf1\xc4\x28\x31\x23\x01\xac\xc4\x86\x33\x2a\xf8\x94\x00\x47\xa1\x28\x32\x15\x1b\xe2\x47\x81\xa8\xd8\x26\xbc\x6d\x51\xdc\x29\x00\x56\x70\x81\xa3\xc4\x46\x10\xa9\xe5\x45\x98\xf8\x54\x45\x81\xa8\xd8\x88\x83\x0b\x0b\x25\xb6\x6b\x4d\xab\xc5\xba\x16\x2f\x5a\x8a\x25\x6d\x42\x84\x2d\x69\x93\x57\x85\x20\x92\xb0\x6a\x03\xa4\x85\x22\xac\xda\xd8\xee\xf5\x89\x66\x99\x2f\xee\x45\xb1\xab\xd8\x1e\xc4\x60\x5e\x15\x5c\xd4\xbd\x68\x96\x77\xf5\xd0\x2c\xd8\xad\x2d\x2f\x02\x21\xa2\xbd\x68\x81\x5e\x8e\x57\x9e\xd9\x97\x6d\xc8\x23\x8a\x70\x51\xc8\x2c\x0a\x3e\xab\x50\x45\xa2\x10\x33\x52\x0c\x2d\xca\xc6\x12\xea\xf0\x94\xb2\x66\xf9\x12\x56\xb0\x4a\x05\xab\x11\x65\x3e\x9b\x15\x85\xbb\xa2\xec\x8b\xd2\xfc\x64\xf0\x89\xa6\xc5\x90\x15\xac\x46\x94\x09\xcc\xe2\x82\xd5\x88\x82\x1c\x50\x64\x2a\x4a\x5d\x63\x98\x1a\xd8\xca\xaf\x35\x18\x85\x17\x77\xc1\x6a\x44\xc1\xcd\x55\xec\x2a\x40\x6b\x28\x8a\x5d\x45\x69\x6b\x0c\xd1\xd1\x16\x61\xe2\xa5\xad\x41\xc5\x8b\x2d\xc2\x34\x8b\xc1\xfe\xae\x4f\x78\x25\x13\x58\x45\x14\xe3\x68\xef\x1a\xc3\xf9\x44\x32\xbe\xe0\x3c\x2a\x88\x14\x05\x3b\xa2\x27\x61\xd8\x11\x42\xae\x89\x12\x5c\xa0\x2a\x3a\x30\x2b\x85\x1a\x11\x65\xac\x4f\xd4\x63\x70\x1c\xaa\x28\xc5\xdf\xec\x49\x07\x99\x32\x02\x67\x88\x72\x40\x47\xd5\x12\xe2\x6f\x2a\x54\x15\x05\x6f\x72\x97\x7c\x2e\xe7\x1a\x43\x8b\x7c\xc2\xad\x04\x76\x99\x15\x00\x2e\x4c\x99\x28\xdc\x5b\x81\x33\x44\x99\x15\x00\xde\x73\xd0\x99\x82\xeb\x3d\xc7\x58\x17\x59\x22\xbd\xcc\xfc\x7e\x17\x98\x42\x80\x7b\x50\x14\xcc\x8a\x72\x73\x1c\x24\xd2\x0b\x1e\xa9\xb0\x13\xa2\x10\x0d\x56\xb8\x2b\x40\x35\xf0\x9e\xb3\xac\x9b\x2d\x81\x5d\x70\x51\x7b\xce\xc2\x0b\x57\xcf\x59\x78\xd0\xea\x39\x28\x86\x85\x42\x66\x51\x78\xe1\xea\x39\x28\x2e\xaa\x42\x66\x51\x88\x46\x09\x20\x26\x76\x9e\xdd\x05\x62\x10\x3b\xf7\x56\x88\x04\x31\x71\x0f\x3e\x63\xe8\x13\x62\xbd\x42\x13\x88\xbd\xac\x59\x34\xc6\x7c\x6a\x2a\x8a\x79\xc5\x8e\x8b\x2a\x1c\x96\x00\x91\xa0\x28\x08\x16\x3b\xa1\xa5\x3d\xa7\x5d\xd7\xf4\x1b\x6c\x89\xbd\xb2\xa6\x5f\x4b\x34\x00\x31\x70\x55\xe0\xc7\x4e\xfe\x9a\x2a\xf0\x63\x9f\xa5\x3c\xae\x0a\xfc\xd8\xdb\x1a\xe3\xbb\x1e\x3b\xc1\xa7\xdd\x7e\x07\x89\x23\xf6\xbe\x88\x6c\x6a\x58\x44\x8a\x8d\xce\x69\x32\x51\x4d\x40\x7a\x97\xca\xdc\x89\x3f\xab\xe6\x3f\x76\x62\x57\xaa\xf9\x8f\xdd\xd6\x2c\x62\x63\xdd\x72\xd7\x27\xbe\x3e\xd1\xa0\x8e\xa0\x94\x9a\x9c\x80\x06\x9f\x1e\x39\x06\x1b\x2f\x0b\x6a\x27\xee\xb4\xbb\x96\x02\xef\x74\x77\x6d\x2b\xef\x46\xaa\xb5\x8f\x7d\x70\x12\xa4\x48\x77\xe2\xcf\x02\x69\x89\x7d\x2c\x4a\xc5\x3e\x06\xc2\x9e\x7b\x84\x86\x57\x69\x7d\xec\x44\xa8\xfb\x50\x0f\x12\xe4\x54\x5a\x1f\xfb\x12\x0c\x32\x20\x77\x5e\x85\x54\x38\x1f\x3b\x92\x42\x85\xf3\xb1\x9f\x08\xa8\xc8\x86\x39\x8b\xc0\x4c\x62\xbf\x50\xf9\xb9\x84\x37\xeb\x91\x2b\xc6\x3b\xb6\xaa\xc5\x63\x9f\x45\x3b\xae\xe2\xf0\xd8\x97\xfe\xce\x35\x5d\x97\x3a\x57\x0c\x75\xad\xc2\xee\xd8\x1f\x66\x91\x32\x9e\xf8\x05\x9f\x86\xec\x81\x38\xce\x35\x7d\xd7\x18\xe2\xe5\xe5\x48\x49\xb3\x56\x5e\x74\x14\xca\x8c\x3a\x5f\x98\x8b\x42\x99\x51\xb1\xf4\x55\x72\x1d\x95\xb4\x17\x55\x58\x47\x9d\xa5\x74\x2e\xcc\x90\xa8\x13\xc6\xb1\x08\x27\x3e\x2a\xaa\xd6\xa4\x5a\x2a\xaa\x56\x15\xd6\x51\x09\x22\xa9\xc2\x3a\xea\xcc\x65\x2b\x8a\x4b\x46\xe5\xca\x9a\xc4\x20\x90\x07\x45\x81\xca\xa8\x5c\x59\x15\x32\x47\x25\x07\xd5\x64\xfb\x56\x42\x44\x0a\x65\x46\xb5\x35\x86\x98\xe3\xf1\x45\xa8\x22\x51\x31\x75\x85\x2a\x12\x95\xb0\xac\x40\xa7\xa3\x3a\xcc\x75\x8d\x81\x87\x5e\x65\xcf\xd4\x09\x26\x54\x84\x35\x1f\x14\xfe\xbb\x2a\x9b\xa3\x62\x1d\xab\x6e\x39\x2a\xb1\x15\x95\x29\x47\xc5\xdd\x16\x0a\x75\xd4\xb1\xc6\xd0\xce\x11\xa7\x35\x89\xc1\xca\xd3\x8a\x30\xde\xa3\xce\x8c\x8c\xa2\x08\x6a\x54\x7c\x67\x01\x80\x44\xc5\x55\x56\xed\x73\xcc\x92\xfc\xcf\x27\x9a\x05\xdf\x59\xb5\xcf\x51\x31\x5e\x05\xef\x11\x15\x15\xa7\x90\x6a\xd4\x9b\x35\xf5\x6c\x68\xf4\x10\x2f\x04\x6e\x55\xfb\x1c\xf5\x86\x74\xa9\xfc\x7a\x33\x8b\x44\x4e\xc5\x77\x56\xa9\x73\x54\x7c\x67\x95\x29\x47\xc5\x78\x55\xf1\x6f\x54\x34\x5a\xcd\x53\x88\x67\xac\x5a\xdf\xa8\x2f\x0b\x94\xc7\x12\x6b\xd6\x24\x60\x1b\x2a\x4e\x65\xb4\xd1\x88\xc2\x2a\xb4\x1b\x6d\x5f\x83\x86\x1a\x20\x5d\x37\xbb\xad\xb3\xae\x8b\xdc\x08\x98\x2a\xd6\x1b\x94\xd3\xbb\xaa\x66\xa3\x11\x30\x15\xe6\x76\xb4\x75\x3d\x64\x36\x34\x1c\x50\x55\xcd\x46\xc3\xce\x54\x34\x38\x1a\x99\x0b\x2a\xa3\x8d\x86\xe1\x59\xdb\xef\x84\x10\xa3\xa1\xee\x84\x24\x1f\x14\xdf\xbb\x8a\x6e\xa3\xf5\x35\x9e\xab\x81\x2d\x91\xc0\x6e\xb6\x38\xd7\x18\xc6\xd1\x18\xfa\x04\x8d\xa6\x92\xda\x68\xd8\xad\x8a\x3f\x07\xf5\xfa\xae\x0a\xda\x68\xce\x1d\xd6\xfd\x6b\x44\xd9\x54\x1f\x1b\x0d\x15\xa7\x08\x75\x34\x72\x49\x55\x30\x1b\x6d\x5d\x59\x39\xb4\xd4\xeb\x17\xa1\xc0\xc7\xac\xc6\xff\x7c\xa2\x31\x06\xeb\xa1\x2b\xdb\x08\x99\xa9\xa4\x36\xda\xc4\xff\x72\x55\xd0\x06\xf5\xfa\xae\x72\xd8\x68\x33\x4b\xbc\x28\xca\x1d\xd4\xeb\xbb\xca\x61\xa3\xad\x3b\xac\x5b\xde\x70\x51\x05\x1c\x1f\x8d\x90\x99\x80\xe3\x83\xe2\x7b\x17\xcc\x48\x34\x6c\x5f\xc5\xc1\xa3\xf1\xd6\x22\xdc\x91\x98\x95\xf4\x9f\x1e\x22\xfd\x82\x39\xdd\xf2\x86\x31\xac\xea\xd7\x68\xa4\x46\xa8\xb6\x35\x28\xad\x77\x95\xb2\x46\x23\x57\x42\x95\xab\xd1\x30\x97\xab\x65\x8f\x93\x1e\xa2\x14\xfb\xd9\xe5\x70\xb5\x9b\xf5\x90\xd4\xa3\x9c\xbe\x28\x1e\x1f\x8d\xb0\x9b\xc2\xef\x41\xf5\xbc\xab\xd8\x35\x1a\xcf\x33\x2a\x65\x8d\xf6\xc0\xad\x67\x8f\x87\x1e\xda\x5b\x3c\x63\x05\xe8\xa3\xbd\xac\x87\x84\x4b\x43\xb8\xa8\x94\x35\x1a\xaf\xb9\x82\xa7\x8f\xf6\xae\x69\xb5\x40\xef\x9a\xf6\xdb\xd0\xd1\xbd\x0a\xb9\x47\xdf\x16\x2f\xa1\x86\x87\x86\xef\x02\x51\x5f\xef\x2e\x77\xaa\xf3\x34\x2b\x34\xfa\xe8\x05\xf6\x25\x39\x3b\xd9\x14\x2a\x65\x8d\x59\x3d\xff\xf9\xe4\xbb\x62\x1d\x0b\xdb\xa5\xd0\xa9\x9e\x77\x97\x42\xef\x3b\x37\x4a\x92\xb3\x13\x65\x53\xa4\x3f\xfa\x52\xf9\x0a\xdd\x75\x34\xbc\xca\x61\xa3\xe3\x4c\x2b\xd2\x1f\x1d\x89\x25\x0c\x95\xe8\x84\xcc\x84\x90\x12\x9d\x47\x20\x01\xa2\x44\x27\x86\xe6\x92\x7a\x7d\x09\x39\x19\x6b\x1d\x21\xa7\x0a\xda\xe8\xf8\xce\x2a\x98\x8d\xde\xd7\x18\xe2\xa5\xaf\x4f\xb4\xa6\x9d\x55\x97\x28\xed\x04\xc4\x14\xc7\x8f\x6e\x6b\x0c\x6d\x14\xfe\xb7\x02\xfb\x41\xf5\x7c\x51\x60\x3f\x3a\x0f\x49\x82\x5d\x89\x4e\xa4\x5f\x81\xfd\xe8\xcb\xb0\x90\x2c\xec\xbe\xe8\xd0\x2c\xc1\x12\xca\x58\xeb\x64\x98\xba\x44\x5f\xc7\x87\x57\x60\x3f\x3a\x19\x5d\xaa\xbc\x8d\x3e\x61\x46\x8a\xe2\xf8\xd1\x71\xd9\x5d\xa2\x8f\x1a\x7d\x77\x89\xbe\xbe\x04\x9b\x24\x5d\x1f\xce\x18\x1a\x74\xa6\x78\x15\x05\xf6\xa3\x13\x9d\x53\x6d\x6e\x74\xcc\x17\xc1\xd3\x47\x3f\x10\x17\x12\x6c\x9d\x60\x5c\x93\xd8\xea\x38\xe4\x2a\xc5\x8d\x8e\x71\xa2\x52\xdc\x98\x05\xf7\x7b\x69\x65\xfb\x1d\x05\xd6\x97\x3c\x92\xf8\xe9\x13\xc8\xa3\xe8\xe5\x20\x3a\x19\xef\x2e\x59\xd2\x5f\x56\x2f\x2f\x24\xcf\xb4\x7a\x4a\x88\xce\xa5\xd6\x53\x42\x74\x72\x38\x55\x97\x1a\xb6\xad\x59\x9a\x1a\x10\xa5\xba\x3b\x46\x70\x5d\x8f\x0d\x61\x18\x19\x2a\x32\x0d\xaa\xe0\x8b\x5e\x1f\xc2\xf0\x92\xf5\xfa\x10\xb6\xae\xbd\xac\x0e\xe3\x96\x0b\x6b\x3e\x8c\x97\xdd\x26\x61\x4b\x8d\x7b\x11\x18\x7f\x18\x71\x70\x55\x9d\x86\xed\x8c\x21\xc9\x69\x58\x1d\x7a\x9f\x08\x5b\x57\x56\xa6\x8c\x11\xee\xd2\x73\x44\x58\x83\x39\x89\x41\x5b\x17\x52\xb6\x8d\xf1\x7c\xa7\x52\xd6\xb0\x99\x51\x59\xf4\x3e\x11\x66\x6c\x83\xce\xbd\xf1\x08\x9b\xef\x13\x14\x98\x17\x21\xc9\x87\x71\xbb\x9a\xc4\xa0\xf1\x8e\xa6\xaa\xd3\x30\x82\x59\x21\x3b\x82\x7a\xf2\x92\x0f\x16\xc6\x2b\x59\xc8\x8e\x30\x5e\x51\xf3\xc1\x82\xf2\x71\x57\xa1\x6a\xd8\x84\xe7\x2a\x82\xa7\x0f\x3b\x16\x1d\xda\x86\x63\xd1\xa1\x31\x66\xd9\x65\xc9\xd7\x07\xca\xc7\x4b\xbe\x1c\xd8\xc5\x09\x92\x4c\x33\x32\x21\x54\xdb\x1a\x76\x71\x2c\x5b\x36\x9c\xf4\xd0\xb4\x13\x75\xc6\x55\xca\x1a\x46\x66\xb5\x2a\x57\xc3\x70\x51\x55\xb9\x1a\x36\xab\x3b\x4a\xbe\x1c\x18\x81\x28\x55\xae\x86\xe1\x91\xe6\x53\x82\x91\x96\x28\x44\x9e\x30\x5c\xd4\x7c\x5b\xa0\x38\xbc\x08\x6b\x3e\x8c\xb8\x53\xe4\xf5\xc0\x06\x17\x18\x7f\x50\xb6\xed\xaa\x7e\x0d\x27\x0b\x4a\xd5\xaf\xe1\xe8\xcd\x7c\x8e\x70\xea\x3f\x54\xca\x1a\x5e\x38\x1f\x3d\x1b\xe8\xa1\xc3\xef\x5c\x20\x55\xae\x86\x53\xbb\xa1\xca\xd5\xf0\xc2\xee\xcb\xf2\x72\xde\x9e\x9a\x2c\x2f\xdf\xd9\x7d\x19\x5a\xce\xfb\x77\x3e\x52\x78\x83\x7d\x99\x1e\xce\x6d\x50\xf5\x6b\xf8\xc4\xb8\x72\x55\xbf\x86\x63\x66\xab\xfa\x35\x9c\x1c\x27\x41\xba\x87\x77\xf6\x45\x57\xcc\x09\x0f\xe7\xab\x05\x95\xcd\x2e\x68\x9f\x70\x5b\xec\x87\x1a\xd8\x6c\xd9\x22\x4e\x11\x85\x8a\x64\xc3\x09\x1c\xa9\x26\x36\x9c\x38\x91\x4a\x60\xc3\x49\x5a\x50\xc5\x6b\x38\x71\xa2\x7c\x0a\xf1\xa5\x7c\x64\xcf\x78\xb0\xfb\x32\x4e\x9c\xa0\x8f\x00\xfd\xc3\x89\x17\xe7\xdb\x88\x13\xf4\x09\x59\x2b\x7e\xac\x69\xb5\x40\xe4\x27\xe5\xeb\x89\xf3\xf0\x23\x9c\xf8\x70\x8c\xe8\x26\x5b\x84\x42\x66\x17\x5e\x50\xf8\xba\x84\x12\xc1\x8e\x36\x52\xb1\x6e\x38\xce\x74\x3e\xa7\x50\xea\x5c\x04\xe3\x1e\xbe\xee\xad\x64\xb2\x63\x33\xab\xbe\x37\x7c\x29\xb0\xf8\xad\x37\x30\xbf\x91\xe0\x12\x94\x4e\x9e\xb0\xca\x83\xc3\xd7\x85\x94\xd5\xe1\xd8\xbe\xaa\x17\x0e\x27\x35\x49\xe5\xc1\xe1\x2f\xab\x27\x1b\xcb\x79\xe2\x11\x1c\x7b\x38\x5e\xb2\xca\x83\xc3\x49\x4d\x52\xf1\x6f\xf8\xba\xa1\xb2\xb1\x82\xc8\x70\xc8\xc6\x8a\x8d\xb5\x91\x6d\x13\xeb\x42\xca\xb6\x09\x0c\xd9\x7c\xe2\x89\xb2\x28\xd5\x27\x5c\x37\x01\xb6\x47\xe0\x47\xab\x5e\x38\x66\xdd\xf2\xa7\x47\x51\x03\x67\xb6\x67\xc3\xa0\xc7\xae\x06\x78\x91\x59\x16\x84\x99\x54\x1e\x1c\x81\x02\xcb\x77\xa3\x68\x6b\xd0\xa6\x86\x83\x1e\xd9\xf0\xd0\xa0\xf5\x58\x77\x58\xe2\x27\xb0\x39\x43\xb2\x24\x70\x95\x55\xc9\x1b\xab\x5c\x5a\x75\xba\x11\x7d\x0d\xaa\x35\x5d\x77\xd8\xb2\x61\x8d\xa1\x15\xb3\xf5\x89\x1a\xc8\x50\x51\x59\x6e\x04\x19\x2a\x2a\xcb\x8d\x20\xdc\xa5\xb2\xdc\x88\x09\x57\x50\xf2\x31\x2a\x78\x15\x0a\x39\x3a\x41\xac\x57\x98\x4e\x11\xeb\x52\x4b\x96\x04\xb1\x5e\x95\xc3\x46\xcc\x9a\xa5\x92\x0f\x5a\x81\x79\xa8\x1f\x6e\x88\x20\xba\xa5\xfa\xd8\x08\x92\x8f\x05\x2d\x1f\x81\xde\x14\x70\x7c\xc4\x01\x1d\xba\xf6\xc1\x5b\xad\x2a\x68\x23\xb8\x90\x02\x8e\x8f\x20\x92\x2b\x9c\xf8\x88\x6b\x0d\x2a\xe6\xae\x45\x98\x98\xbb\x38\x96\xba\xf6\x71\x2f\xc2\xc4\x2d\xb1\xab\x2e\xcb\x2b\x96\xaa\x95\x5d\x15\x4b\x91\xea\x22\x07\xb1\x5e\x15\xdd\xc6\x2a\x86\x56\xd1\x6d\x04\x1e\x69\x97\x46\x0b\x3c\xd2\x2e\x05\x16\xef\xfa\x44\xd3\x62\xab\x0a\x49\x3e\x82\x60\x56\xe4\x15\xe3\x69\x56\x48\xf2\x31\xb0\x44\x85\x24\x1f\x83\xfc\x7e\x01\x45\xc5\xd8\x58\x20\xa9\x27\x8a\xa1\x4b\xbe\x09\x0e\xf2\x3e\x04\x25\x15\xa3\x2c\x4a\x4d\x0d\xac\xba\xb4\xd1\x28\x6b\xd0\x2f\xe9\x03\x7f\x53\x05\xb3\x41\x75\x74\x11\x2c\x7c\x8c\x89\x64\xed\xaa\x89\x8d\xb1\x73\xa4\xa4\x9e\x06\x77\x5f\x25\xb0\x31\x08\xaa\x0d\x1d\xba\xc1\xe3\x6d\x3e\x12\x0e\x84\xc1\xd0\x29\x1c\x38\xa0\x43\x87\x6e\xcc\xdf\x16\x77\x55\xcd\xc6\xe0\x55\x28\x9f\x11\x07\x29\x1a\xf9\x8c\x38\x48\x46\xd3\x2f\x51\x04\x15\xd6\xa5\x4b\x93\x8c\xce\x12\x4a\x2d\x8c\x75\xd5\x25\xd7\x07\x1a\x5e\xb5\xb9\x31\xd0\xf0\xf9\x36\x39\x6c\x11\x26\x3a\x78\x09\xca\xc7\xca\x41\xd2\xb2\x00\xab\x62\x10\x59\xcb\xc7\xca\x81\x55\x9d\x4f\x91\x03\xe9\x20\x04\xab\x18\xbc\x26\xe5\x53\xe4\x2a\xb9\x1e\xc5\x7f\x47\x81\xad\xf2\x6b\xe1\x5d\xc5\xa0\x6e\x41\xf0\x56\x31\x90\x25\x23\x4f\x24\xde\xe9\xc8\x13\x89\xc9\x3d\xf2\x00\x12\x3a\x1f\x79\x00\x8f\xb5\x36\x1a\x94\xa0\xda\xc8\x03\x88\x51\x9e\x6f\x9d\xe3\x60\x07\xa4\x27\x06\x41\x35\x61\xbc\xc7\x20\xa8\x36\xf2\x00\x62\x0f\x8c\x3c\x6f\xc4\xd2\x55\x85\x1b\xe3\x5c\x63\x88\xb0\x8b\x9b\x21\xfb\x68\x90\x43\x36\xf2\x00\x12\x18\xcf\x27\xd6\x71\x73\x44\xa5\x38\x06\x4f\xbd\x23\xcf\x1b\x95\x08\xc2\x78\x8f\x41\xfe\x97\x7e\x0c\x23\x06\xa1\xaa\x91\x27\x12\x49\xa1\x3a\xdd\x58\x05\xd5\xaa\xd3\x8d\x63\xe3\xba\x59\xf6\xe0\x13\x9d\xb7\x83\x9c\x0d\x61\xbc\xc7\x81\xcf\xaa\x82\xd9\x38\x48\x08\x53\x7d\x6c\x1c\xa0\x24\x08\xb0\x2a\x8e\x02\x2f\x3a\x4d\x07\xf9\xca\x43\x1e\xc7\x51\x58\x53\x6d\xe5\x81\x51\xa0\xea\xd7\xa0\x7e\xba\x08\xe3\x3d\x0e\x62\x57\x2a\x87\x8d\x63\xc9\x92\x9e\x3d\xa0\x54\x1a\xfe\xc0\xef\x55\xf5\x6b\xac\xfa\x69\x55\xbf\xc6\x01\xfe\x89\xaa\x5f\xe3\x58\xc2\x45\x21\x91\x03\xcf\x58\xc0\xf1\x71\x54\xee\xb0\x6c\xf0\x03\xcf\x38\x1f\xa5\x0f\x62\x57\xf9\x06\x7d\x90\xe9\x9a\x6f\xd0\x07\x9e\xb1\x00\xab\xe2\xe8\x6b\x0c\x2d\x10\x66\x83\x8a\x5d\xe3\x20\x99\x4b\xa5\xac\x71\xd8\x1a\x43\xd3\x12\xcc\xd2\xef\x78\xc4\x81\x73\xa0\x22\xd3\x58\x25\xd7\x2a\x32\x8d\x83\x80\xfa\x48\x4a\x71\xa6\x47\x52\xea\xb0\x2f\x73\x79\x96\x4b\x7f\x1a\xf4\x09\x11\xf6\x7c\x55\x9e\xd5\xd1\x9f\x06\x4d\x1b\x6b\x96\x6c\x60\x81\xa4\x37\x0f\x82\x59\xaa\xf0\x8c\x83\x18\xbc\x00\xdb\xe3\x58\xd2\x21\x99\xa3\xaa\x49\xd5\x99\xb1\x0a\xaa\x55\x7b\x19\x07\x99\x65\xc2\x78\x8f\x03\xd3\x63\x24\x2f\xcb\xf4\x90\xba\x3e\x0e\xae\x87\xd4\xf5\x41\x86\xca\xf8\xd1\x83\x33\x96\x3d\x4e\xb6\x41\x0a\xfd\x58\x02\x45\xa6\xfa\x41\x99\x93\x4a\x1c\xe3\x38\xb9\x40\xb2\x99\x8f\x19\x83\x0f\x81\x10\xc5\x31\xfd\x89\x50\xad\x61\x50\x61\x1d\xaa\x35\x8c\x83\xc0\x40\xcf\x69\x67\x60\x20\x54\x7c\x18\xc7\x0c\xb9\x87\x8a\x0f\xe3\x98\x06\x4e\xa8\xd6\x30\x8e\x7b\x4d\x2b\xc2\xe6\x6b\x5d\xa8\x92\x30\x8e\x69\xbe\x84\xea\x04\xe3\x78\xd8\x5b\x59\x1a\xc7\x84\x4b\x2a\x96\xa4\xbf\xeb\x13\x8d\x31\xd1\x23\x43\xe5\x78\x71\xcc\x5f\x2d\x2c\xf9\x52\x7f\x4c\x2f\x23\x36\xe9\x86\x73\x83\x7d\xc9\xf5\x13\xb1\x95\x6f\xf9\x14\x43\x17\x81\xe0\xc7\x2c\x86\xfe\x7c\xf2\x9d\xf6\x9c\xd6\x4a\x6c\x7b\xfc\x8e\x02\x3b\x31\x65\x04\x88\x1f\x67\x59\x24\x0c\x35\xac\x19\x43\x0d\xac\xaf\xa4\x2f\xa5\xce\xb1\x49\xfa\x9e\xf3\xc7\x93\x8b\x30\xf4\xe3\x24\xb8\x2e\x0c\xfd\x38\xe7\x03\x7b\x08\xa2\x27\x66\xa9\x73\x09\xd5\xb7\xc5\x49\xa0\xc1\x64\xa8\x50\xea\x1c\x82\xc6\x89\x13\x01\x95\x59\x0c\x27\x02\x4a\xbf\xc0\x12\x67\x63\x4b\x24\xb0\x4f\x1e\xd8\x05\xb5\x1f\x67\x5b\x84\x89\x97\xb6\x66\xc9\x31\xd6\x2c\x62\xae\xaf\x4f\xc4\x5c\x87\x97\x96\x3d\xe6\x11\x15\xa2\x7d\x9c\x9d\x93\x20\xc7\xef\x9c\x3f\x23\x14\x2a\xa5\x8b\xd3\x38\x80\x52\x0b\x27\xd1\x76\x21\xda\x07\xe5\xd2\x21\x68\x9c\xa0\x3a\xba\x98\xcc\x86\xd3\xd9\x39\x69\x81\xd3\xb9\x3b\x3d\x7b\xb0\x73\xd2\x02\x27\x32\x2d\xb3\x29\xce\x60\x2b\xa5\x16\x4e\x02\x1e\x96\x27\x32\x16\x73\xe2\x25\x60\xae\x67\x03\x2b\x26\xdb\xf7\x0c\xf6\x25\x8f\xd4\x58\xb3\xa8\xc7\x80\x7d\xf9\x8a\x14\x54\x87\x6a\xeb\x82\x82\xea\xa2\xdf\x8a\x89\x93\x28\x8a\xb0\xf7\xe3\xaa\x70\x2b\xc5\x31\x7f\x97\xff\xd3\xf0\x65\xff\x5a\xc7\x41\x8a\xe3\x6a\x6b\x5a\x53\x03\x87\x4e\xf6\xcc\xd5\xd8\x5b\x19\x05\x17\x25\x7d\x99\x3b\x72\xb5\x45\x69\xa8\x81\x8d\x92\xae\xb9\xda\xa2\x54\x74\x90\xb3\x91\xd9\x25\xfc\xb6\x7f\x08\xe6\x27\xae\x75\xc6\x74\xa3\xae\x75\x82\x14\xc7\xbf\x0c\x5e\x64\x25\x5c\xd4\xf9\x64\xfe\xc9\x85\xb9\x9c\xf9\x27\xb3\x4e\xf7\xd3\x20\xc2\x78\x66\x16\xa0\x7f\x5c\x84\x98\x85\xdf\x1f\x57\x20\x28\xa5\x15\xaf\x75\x1c\x74\xa3\xae\xb5\xfb\x52\x71\xfc\x2e\x7f\xa8\x1c\x2f\x56\x9d\xae\xe9\x46\xf1\x33\xfc\x45\x60\xfc\x71\xf1\x66\x2c\x30\xfe\xb8\x4e\x78\xd1\xf5\xb8\x48\x38\xce\x1c\x16\xea\x63\x43\x05\x59\x71\xcd\x67\xd5\x50\xfd\x55\xf0\x23\xfb\xa1\xfa\xab\xb8\x48\x38\xce\xb4\x97\xeb\x66\x8c\x92\x0d\xdc\x39\x5d\xa0\x6b\xa6\x68\x84\x70\x69\xe2\x9a\x29\xc9\xa1\x0a\xad\x98\xbf\xba\xff\x69\xd0\x56\x52\xd7\x6e\x3d\x7b\x74\x1a\xb2\x87\xf1\x89\x48\x7f\xa0\x43\xe2\xe2\x22\xa2\x9c\xb9\x34\xd7\x8c\x28\x87\x2a\xb4\xe2\xc2\x22\xce\x4c\x99\x6b\x5a\xc4\xa1\x0a\xad\x98\x3f\xac\x5f\x42\xb5\x4e\x71\xf3\xe0\x92\xb9\x34\x94\xd1\x86\x2a\x99\x62\x56\xcd\x7e\x1a\x34\x06\xe5\x0d\xfa\x75\x9d\xb8\x0b\xa4\xd7\x6c\x58\x83\x7e\xb9\xbd\x0d\x3a\x6a\x36\xac\x4f\xba\x1a\xb8\x62\x96\x0d\x27\x3d\xbe\xdc\xce\x4a\xd3\x4f\xc3\x6f\x79\x60\x37\xb5\x69\xfa\xb5\x9e\xb8\x91\x7a\x82\xa4\x89\x9b\x52\xb4\x4c\xe7\xe1\x47\xe5\x43\xc5\x54\x71\x73\x88\x55\x4c\x15\xf7\x92\x58\xba\x90\x37\xc9\x7e\x99\xce\x73\xcf\x4c\x88\x50\xb9\x55\xdc\xc7\xea\xa1\x31\x0e\x96\x53\xbe\xc0\x3d\x4d\xaa\x10\x8a\x4d\xac\x9a\xd2\x4c\xf8\xb9\xd7\xb9\x97\x85\x7d\x9f\x6b\x0c\xad\xcd\xb9\x28\x75\x35\x70\x22\x75\x55\xee\x6b\x8d\xa1\x59\x2e\x76\x40\xaa\xe5\xbe\x16\x73\x1a\x14\xfb\xa8\xe8\x66\xdc\x37\x5b\xa2\x8b\x30\x7f\x21\xfe\xd3\x20\xc2\x6e\xae\xac\x82\xda\xfc\x20\x7c\x14\x1d\x73\x8a\x4c\x43\xc0\x37\xc1\x2f\xc4\x87\x80\x6f\x82\x9a\xd2\x10\xce\x4d\xdc\x04\x80\x4c\x66\x2a\x3f\x08\x1f\x45\xc7\xfc\x5e\x16\x94\x6c\xf0\x87\x77\x12\xe1\xf7\xc7\xb3\xce\xbd\x8e\xf9\xb3\x0e\xf1\xc8\x06\xe4\x91\xac\xe3\xa7\xb0\x84\x3a\xe6\x0f\x0f\x8d\x99\x78\xf4\xec\x6b\xd0\x2f\xfb\x4f\xe5\x88\xea\x10\xcf\x5f\x77\xff\x7c\xa2\x31\x2a\x67\x4c\xaa\x65\xfe\xdc\xfb\xa7\x47\x8e\x71\xd0\x90\x63\x2c\xc2\xf4\x49\xe3\x48\xc9\x5c\x7e\x26\x42\x77\xa8\xfe\x2a\x9e\xc6\x75\xd3\xe1\x7f\x96\xb5\x32\xb2\x61\xf1\xf2\x5d\xc2\x87\xfa\x1a\xfd\x96\x50\x3c\x9d\x93\xac\x53\xf8\x10\xbc\xc9\x74\xa4\x07\x3c\x87\x4c\x14\x7a\xb0\x34\xb2\xba\x6a\x16\x88\x7e\x1a\x44\x98\x9f\x7c\x22\xe6\x82\xf3\x21\x3d\xf1\xc4\xa2\x43\x63\x04\xf7\x56\x8a\xe3\xc1\xd2\xc8\xdc\xa2\x67\x5d\x53\x1d\xba\x27\xd6\x2c\x39\x28\xe7\x54\x31\xd6\x87\x67\x7c\xc1\xe4\xc7\x83\xd9\x20\x54\xfc\x78\x28\xe9\xcb\x34\xa0\xe7\x58\x9f\x88\xb0\x73\xf5\x10\x1d\x13\x4a\xaa\x64\x1a\xd0\x73\xae\x41\x45\xfa\xc5\xf9\xd0\x49\x7e\x50\x60\x99\x06\xf4\xe0\x82\x64\x41\xd6\xc3\xdb\x64\xe6\x05\x3d\x37\xd7\x23\xcf\xe9\xfc\xb5\xaf\x92\x69\x40\xcf\xc3\x35\xcd\x73\xfa\x72\xc5\xf2\x14\xbe\xab\x87\xb8\xe5\x02\x65\x92\xcf\x83\x0b\x92\x85\x50\xef\xc6\x9d\xd3\x29\x7c\x37\x4e\xb2\x4e\xe1\xfc\x25\xf5\x4f\xc3\x97\xfd\x77\x5f\x84\x65\xc3\x4d\xc3\x50\xc3\xe4\x25\xeb\x72\xf8\xd1\xf3\x22\x10\xfc\x78\xb1\xff\xb3\x0c\xe7\x9d\x91\xcb\x10\x62\x4c\xbc\x6d\x7d\x52\xd4\xc0\xb1\x94\xbe\x7a\x31\xe6\x33\x2f\xe8\xc5\x98\xcf\x5a\x16\x7e\xd2\xbc\x64\x5e\xd0\x0b\x64\x4a\xe6\x05\xcd\x32\xda\xcf\x27\xd9\x83\x7d\x91\x19\xf5\x76\x78\xd1\x12\xf2\xa3\xe7\x25\xf3\x82\xf8\xd1\xf3\xd8\x77\xfb\x1d\x05\xc6\xcf\x79\x97\x4c\x09\x7a\x71\xce\x33\x25\xe8\x45\x93\x64\xa1\xcb\x3b\x33\x4d\x22\x0b\x5d\x5e\x54\xcb\x9e\x6b\x73\xc0\x46\xae\x0d\x70\x05\x99\x45\xf4\xf2\xd8\x97\x59\x44\x2f\xbe\x78\x56\xbe\x50\x53\x1a\x59\xd7\xf2\xf2\x72\xa0\x5f\x62\x0a\x4a\x48\x23\xab\x56\x5e\xac\xb0\xac\x5a\x79\x49\x6e\xd3\x6f\x35\xc5\xfc\x7d\xef\x4f\x8f\x6c\x40\x0e\x48\xf9\xbc\x20\x93\x64\x06\xd0\x8b\xc1\xb4\xe7\x02\xad\x8b\x20\xd5\xb2\x6a\x4a\x33\x9d\xe7\xc5\x60\xca\x22\x15\x6a\x4a\x23\x8b\x54\xde\x17\x6e\xa5\x48\xdf\x97\x93\x20\x6d\xf4\xce\x4c\x99\xd8\x5b\x36\xac\x69\xc5\xed\xcb\xf1\x6a\xd9\x30\x45\xba\x4b\xf9\xbc\xeb\xba\xc9\xaf\x79\x5f\x08\xcb\x25\x24\x7d\xdd\xbf\x8e\xce\xe0\x17\xc0\x8b\x7f\xb5\xd1\xd8\x36\xf6\xf6\xcb\xdc\xe0\x17\xc0\x43\xf5\x24\x63\xdb\xd6\x2c\x4d\x0d\x6b\x96\xa1\x06\x76\xff\xab\xaf\xc6\xaa\x4b\x55\xe2\xd1\xd8\x0a\xdc\x66\x8f\x9d\xbd\x75\x35\xa0\xe2\x94\x6c\x34\x36\x54\xdc\xee\xa2\xa3\xae\x41\xb3\x01\xd2\x5d\x74\x4c\x6c\xf5\xd8\xbf\x12\x7c\xf0\x9b\xde\xb1\x7f\x05\xf6\xd8\x1a\x74\x84\x78\xc1\xe1\xd2\x2f\x0d\x8c\x0d\x8d\xa6\x5f\x1a\x18\xab\x84\x54\x39\x4e\x63\xe3\x39\xc2\x5d\x6b\x8a\x8a\x13\x64\xca\xd8\x3a\x87\xdf\xb5\xc8\x33\xfd\x2d\x54\x23\x30\x36\xd2\xdf\xdc\xf5\x89\xad\x41\xb5\x1e\x33\xa6\x18\x75\xd3\xb4\xf8\x57\xfa\xe9\x81\xb1\xcd\xc7\x86\x10\xfe\xc9\xd8\x66\xd4\x31\x04\x77\x32\x36\x8c\x57\xfd\x16\xc1\xd8\x66\x1a\x6f\x08\xdd\x64\xf0\x23\xdf\xc5\x73\x91\x97\xde\xcc\x35\x45\x2b\xd6\x5d\xa4\xcf\x07\x86\x50\x5e\xfd\xd8\x30\x5e\x95\x9e\x35\xb6\x99\x0f\x17\x75\xcf\x06\x08\xdb\xb5\x1e\x98\xb7\x4a\xb4\x1f\xdb\xb1\xc6\x10\x2f\xc8\xa0\xba\x8b\x74\x64\x90\xa0\x4a\xc6\x76\x2c\xc2\x44\xe9\xd2\x9b\x21\xf6\x4f\xa6\xad\x9a\xf6\x64\x8c\xaa\x69\x2f\x28\xad\x9a\x16\xc7\x4f\x19\xef\x63\xc3\x9a\x55\xae\xd5\xa0\x6c\x34\x94\xf1\x3e\xa8\x12\x0d\x81\x99\x8c\x6d\x49\x98\xa1\x41\x9f\x35\xad\x28\x45\x7e\x28\x05\x7e\xac\xc2\x52\xfd\x4a\xc0\xd8\x5e\x48\x6f\x5a\xe4\x77\x7d\xf2\xa5\x83\xa2\xd0\x50\x3e\xfb\x28\x65\x35\x34\x35\xac\x31\xba\x1a\x58\xf5\xaf\x94\x1a\x85\xe2\x70\x65\x63\x8d\x59\x03\xfa\xe9\xe1\x6a\x58\xd3\x7e\x09\x2b\x75\xcd\x32\xd4\xd0\x18\x23\x7b\xdc\x34\xa8\x07\x55\xda\x4a\x9c\x1a\xa5\x33\x46\xff\x1d\x05\x36\x8a\xad\xde\xa2\x89\x50\x95\x12\xba\x47\xc1\x80\x54\x7a\xd3\x58\x95\x9a\xc2\xf2\x1f\x65\xdd\x8c\xaf\xa0\x1c\x85\x9b\x21\x70\xff\x51\x26\x7a\x72\x51\x02\xd4\x28\x84\x22\x94\xef\x34\x0a\x06\x64\x95\x18\x2c\xc1\x72\x4a\xa6\xcd\xe2\xce\x4f\x83\xe8\xc0\x5e\x54\xfe\xf6\x28\x5c\x15\xe5\x4c\x0d\x7e\x13\x3b\xaa\x64\x5a\x19\x8b\x39\xd1\x81\x45\xa9\xac\xaa\x51\xd0\xdf\x4a\x80\x1a\x85\x77\x7d\x25\x40\x0d\x7e\xb2\x3a\x94\x7b\x3d\xf8\xc9\xea\xa2\x8c\xa8\x51\xe6\x2f\xc3\x15\x25\x40\x8d\x82\x45\xa9\xcc\xea\x51\xc8\x67\x57\x02\xd4\x98\xbf\x61\xfd\x69\x10\xa5\x84\xce\x95\x7b\x3d\xca\xc5\x7a\x48\x74\x50\x65\x19\xc2\xfb\x18\xe5\xe1\x13\x5d\xa6\x42\xb6\x9b\x52\x93\x06\x65\x97\xa1\xc4\xe1\x51\x48\x3d\x57\xae\xd2\x28\xeb\x66\x48\xd8\x16\x54\x9c\x32\x91\x06\x3f\x26\x5d\x94\x78\x34\x76\xf4\x95\x52\x8b\xc7\x5e\x16\x1d\x43\x0d\xac\x87\x2e\xe4\x8e\xd3\xa6\xb4\xe0\xc1\x6f\x47\x17\xa5\x01\x8d\x9d\x98\xb3\xd2\x80\xc6\x5e\x59\x31\x5d\xc8\x7d\xbe\x81\x85\x20\x42\xc6\x4e\xd5\x8a\xd2\x80\xc6\x3e\xb1\x5c\x42\x98\x21\x63\x6f\x6b\x0c\x91\x4e\x2e\x8d\x7e\x63\x6d\x50\x76\x19\x4a\x1c\x1e\x3b\x46\xa8\xf2\x84\x07\x3f\x26\x5d\xf4\x93\x6a\x63\x9f\xb9\x34\xd1\x36\x0d\x3a\xdf\xc0\x42\x10\x21\x63\xef\x8b\x5b\x7d\xc2\x9d\x6b\xba\xb2\x3b\xcf\x55\x42\xd6\x1f\x3b\x8a\x43\x09\x3a\x63\x27\xb4\xab\xac\xdd\x31\x6b\x1e\x3f\x0d\xa2\x94\xb8\x88\x72\x72\xc7\x8e\x7f\xa5\x9c\x9e\xb1\xa3\x38\x94\xa4\x3b\xf6\xb1\xc6\xd0\xb4\xa4\x8b\x2a\xeb\x67\xec\x84\x76\x95\xa4\x3b\x66\x11\xe4\x67\x5b\x72\xd0\x8b\x86\xff\x87\xb1\x37\xc7\x9a\x9e\x87\x95\xc6\xb6\xf2\x2d\x41\x9c\x89\xe4\xdd\x0b\x07\xc9\x99\x03\xef\x3f\xf0\x61\x41\xaa\xea\xff\xfa\xdc\xe3\x27\x6b\x35\x25\x8e\x20\x08\x62\x28\xf0\x13\xd7\x7a\x64\xee\xa8\xe8\xae\x6b\x9d\x1b\x39\x4e\x9f\x53\xee\x97\xe8\xf7\x2b\x7a\x0e\x59\x5c\x6f\xa5\xfa\xe3\xf1\x3f\xd8\x75\x0f\xea\xa2\x6f\x91\x45\xbf\x92\x65\x6e\xa0\xb8\xdf\xb1\xe8\x0f\x27\x5c\xee\xfd\xe8\x6a\x10\xfa\x16\x59\xbc\x9d\xa4\x78\xe6\x79\xce\xe6\x40\xc8\x7f\x8b\xbe\x81\xe8\xe8\x6b\xf1\xf1\xbd\x4f\x69\x25\xfa\x2d\x8e\x9e\xbf\x16\x1f\x1f\xcb\x27\xcc\xdb\x1b\xe2\x48\x77\x24\x4b\x6e\x37\x22\x76\x89\x25\xd7\x8b\xd0\x3f\xc9\xd2\xf5\xf6\xf4\xeb\x58\x72\x33\x11\xd1\x4d\x2c\xb9\x0f\x4b\xa7\x6c\x96\xc2\xdb\x8f\xc2\x3f\x9c\x19\x50\x58\x4b\xe1\x1d\xcb\x37\xc9\xc9\x0d\x3f\x74\x58\xb2\x14\xbd\x63\x59\x7f\x38\x39\x70\x13\x26\xf7\x83\xa1\x4b\x93\x79\xec\x65\xa7\x6f\xb0\xbd\xb1\x97\xcc\x12\x60\x1e\x7b\xd9\x09\x33\x62\xc9\xf1\x4f\x98\x25\xc0\x52\x7e\xeb\xf8\x8b\x0d\xcc\x52\x7e\xc7\xc5\x61\x20\x7d\x4f\xa7\x4b\xaf\x25\xb7\x52\xf7\xce\x09\x2f\x3e\xae\xc2\x71\x95\x77\x18\x9c\xf0\x77\x0f\x17\x8e\xab\xfa\x1e\x2e\x1c\x86\x23\xea\x31\xc9\x80\x79\x56\xe7\x4e\xa7\x5f\x43\xce\xe6\xf3\x07\x3b\xd6\xde\x3a\xd8\x0f\x0f\xea\x62\x1a\x02\x4b\xfd\xfd\x84\xfd\xb0\xb7\xa7\x5c\xf8\x77\x43\x72\x53\x27\x8f\x7d\x60\x5e\x02\x4b\x6e\x7c\xa1\x17\xb0\x25\x77\x6e\xa3\x23\x96\x25\xbf\x91\xd2\x2d\xd8\x92\xe3\x66\x32\xc9\x80\x79\x02\xe6\x4e\xf8\x14\x4b\xd3\xe9\x8d\x3b\xf4\x0d\xdd\x64\x1a\x02\x4b\xeb\xad\x94\xfd\xf0\xdb\x24\xf1\x4f\x2c\xb9\x68\x97\xb9\xff\x92\xef\x3f\xfa\x08\x59\x72\x59\x2f\x73\x43\x7a\xe2\xe3\x40\x1f\x21\x4b\xef\x0e\xe5\x86\x4c\x8e\x61\x44\x97\x20\x4b\x7e\xbd\x64\x52\x3b\x43\x94\xe5\xf9\x84\x83\x73\x87\x6e\x22\xfc\x5b\x76\x24\x3b\x22\xfc\x5b\x7e\x37\x24\x2f\x18\xf9\xdd\x4c\x3c\xf2\xb3\x6f\x26\xba\xf0\x58\x8e\xbe\xfa\xbc\x60\x64\xa7\x7b\x22\xeb\x5b\x7e\xe9\x9e\x17\x8c\x9c\xde\x4f\xf8\x86\xdf\xc0\x88\xbd\x6f\x1e\x76\xd9\xe9\xaf\x6c\x39\xbd\x95\x7e\x53\xe8\x59\x8c\x03\xbd\x7e\x2c\xe7\xb7\xeb\x7a\xc3\x3f\x21\x3f\xf2\xb4\xc6\x81\x5e\x3f\x96\x5d\xa7\x48\xaf\x1f\xcb\x2f\xf1\x77\xbd\x71\xfb\x1b\x1c\xbe\xbb\x7b\xd1\x85\xc7\xb2\xc3\x49\xd2\x97\xc6\xde\x10\x47\xfa\xd2\x58\xf6\x23\x8e\xc9\xdf\x2c\xbb\x39\x93\x4e\xd0\x96\xfd\xcc\x63\x36\x38\xcb\xcd\x99\x3e\x59\x47\x71\xe3\x00\x9d\xa0\xad\xbc\xa7\x22\xf7\x7e\x79\x4f\x45\x6e\x75\xcf\xf8\x19\x88\x68\x6f\xc5\xc5\x4a\x3a\x41\x5b\xf1\x4d\x48\x27\x1f\x2b\xfd\x1d\xbe\xf1\x8f\xb7\x63\xfa\xc3\x3b\xf6\xa9\xff\xac\xbc\xa7\x22\x99\x41\x71\x83\x27\xfd\x82\xac\x8c\xf7\x0d\xd6\xe1\x3a\x1e\x7a\x0f\x5b\x71\xb1\x92\xce\xc2\x56\x1c\x59\x8c\x3e\x3d\x56\xa6\x13\x1d\xb9\x83\xa7\x00\x0d\xc4\xab\x37\xcf\xf8\xd9\xe9\xf9\x6b\x65\xf9\xf0\xb9\xd5\x8b\xdf\xc0\xe8\x0a\x6c\xc5\x11\x41\x88\x02\x6f\x9e\xe0\x33\x10\x05\xde\x8a\xfb\x7c\xd1\x1f\xc7\x8a\x1b\xd6\xe8\x2d\x6b\x9e\xf1\x33\xd0\x41\xc7\x8a\x83\x07\x10\x05\xde\x8a\x1f\xa4\x44\x81\xb7\x1a\xbc\x8e\x4f\xa7\x68\x35\xfa\xf0\x3f\x15\xa2\x55\x47\xd0\x21\x4e\xbc\x55\xd7\xe3\xd3\x39\xd6\xaa\x2b\x2a\xe9\x06\x64\xd5\xb5\x1e\xf4\x96\xb5\x37\x60\x88\x7e\x41\x56\xfd\x7e\x45\xf7\x59\xf3\x3c\x9a\x9d\xde\xb2\xe6\x79\x34\x3b\xfd\x58\xad\xfa\x8e\xa2\xdb\xaa\x79\x7c\x50\xa7\x87\xa9\x55\xb7\xf7\xd2\x51\xc8\x3c\x29\x66\xb0\x3f\xa5\x53\xb1\xea\x1a\x48\xc2\xc2\x5b\xad\x3e\x50\x6e\xb7\xea\xba\x09\xc2\xc2\x9b\x27\xb4\xec\x74\xea\xb4\xea\x77\x34\xfa\x19\x59\x05\x6e\x40\xa7\x97\xa7\x55\xbf\xb4\xd1\xf1\xc8\xaa\x5f\xc9\xe8\x78\x64\xf5\xdd\xa1\x5d\x95\x3a\x89\x52\x28\xaf\xfd\xad\x83\x95\xda\xdb\x75\xce\x9e\x9f\x46\xc4\x89\xb7\xea\x67\x4d\xe1\xb9\x59\xdf\xb3\x86\xbb\xab\xba\xc6\x9e\xb0\xf0\x56\x5d\xf3\x40\x18\x17\xab\x0e\x9a\x61\xbc\xe8\xd4\x77\xab\x70\x23\xd4\x77\xab\xf0\xd6\x52\xa7\x6f\x04\x9e\x9b\x75\xfa\x3a\xf3\xdc\xac\x7e\x47\xa3\x37\x93\x55\xbf\x5f\xd1\x83\xd0\x3c\x22\xa9\xd3\x63\xce\xea\xbb\x11\x78\x90\x7a\x9a\xc8\x5e\x34\x85\xae\x53\x2c\x9a\x0f\xe8\x14\x23\x3d\xa2\xac\xba\x4e\x9f\x5e\x66\xe6\xc1\x43\x9d\x4e\x65\x86\xd0\xa0\x23\xf9\x47\xfe\xe1\x53\xc8\x4b\x5b\x83\x51\x2c\xd2\xbd\xc9\x9a\x5b\x76\xe9\x55\x65\xcd\x55\x11\x44\x26\xb1\xf6\x6e\x37\x4a\x1a\x9e\xc0\xb1\x17\x0e\xbf\x41\xf8\x8b\x84\x52\xb7\x86\x1b\x58\x24\x72\xba\x35\xd7\x5e\x14\x0e\xbf\x45\x1f\x1c\xb7\x6c\x73\xc3\x1a\xdd\xac\xac\xf9\x76\xa3\x9b\x95\x35\x40\xe3\x44\x82\xad\x5b\x73\xbf\xa0\xca\x09\x6a\x88\xc2\xed\x95\xb2\x48\xcb\x6f\x1d\x6c\xc5\x37\x24\x1d\xb1\xac\xe5\xb7\xa7\x1c\xad\x0b\x90\xf4\xbb\xb2\x06\x19\x31\x5e\xdc\xf6\x1e\xf7\x14\xe9\xee\x65\x0d\x59\xae\x3b\x3d\xb3\xcc\x73\x3e\x46\xa6\x76\x33\x04\x42\x9d\x3f\x38\x38\x40\xdb\x75\x3a\x5f\x59\x73\xbf\x20\xfa\x5a\x59\x03\xaa\x67\x24\x82\xbb\x35\xbf\x09\xd2\xb5\xca\x3c\x32\x2a\x12\xb0\xdd\x10\x19\x75\xfe\x60\x3f\xaa\xcf\x18\xe5\x88\xe6\x9a\xcb\xaa\x75\xa9\x3e\x63\x5a\x86\xe6\x4b\x49\x39\xc2\x63\xa7\x7a\xd5\xac\x37\x1f\x0b\xe5\x88\xe6\x27\x6b\xd5\x14\xba\x2a\xb3\x6a\xc6\x9a\xcf\x18\x25\x0d\x4f\x13\xd9\xab\xa6\xb0\xbf\xfd\x60\xb3\x7e\x4c\x56\xcd\x98\xf9\x58\xc8\xb6\x90\x15\x32\x74\xfa\x5a\x99\x87\x4a\x45\x3a\xa3\x99\x87\x4a\x45\xba\x9a\x59\xf3\x83\x94\x30\x34\xd6\x86\xf7\x83\xf7\xcd\x36\xde\x9e\xb2\x1f\x7e\xd4\xd2\x1b\xcb\x3c\x98\x2a\xd2\x19\xcd\x1a\xd4\x31\x91\x29\xd5\xac\x2d\xef\x07\xa5\x95\xe6\x76\xf8\xaa\xa5\x5c\x6f\xb3\x7c\x63\xfb\x52\x52\x8e\x68\xee\xc3\x52\xb5\x94\xdb\xa9\x90\x72\x44\xf3\x83\xb4\x6a\x6d\x9f\xf7\x13\xd6\xf1\xf8\x42\x15\xfd\xf1\xf6\x83\x75\xbc\x1c\xa6\xe8\x0f\xef\x98\x16\x0a\x51\x15\xf1\xaa\xfa\xc3\xd7\x85\x22\x61\x77\x23\x05\x9d\x8d\xac\xbb\x1d\xbe\xa6\x3f\x1d\x60\x48\x13\x19\x3a\x3d\x91\xac\x07\x5f\x34\xea\xf2\x7a\x78\xbb\xf0\x4d\x96\xc7\x4e\x45\xfa\x6e\x59\x7f\xb9\x0d\x45\x88\x8e\xf8\x89\x48\xaf\x2a\xeb\xae\x2b\xa5\x9f\x91\xf5\xe8\x95\x52\xa6\xe8\xce\x7e\xe8\x78\x64\x1e\x7f\x15\xe9\x66\x65\x1d\x6e\x89\x91\xc8\xe9\xe6\xe1\x56\x9d\xae\x49\xd6\x93\x13\x0f\x99\x7e\x47\x92\xfd\x48\xa0\x74\xeb\xf9\xad\x94\x5d\x77\x3f\x34\xba\x26\x59\xcf\x6f\xd7\x39\x16\xbf\x6f\xd2\x25\xc8\xfa\xcb\x4b\x78\x5c\x77\xf7\x42\x24\xde\x8e\x21\x20\xeb\xbc\xc1\x9e\xba\x0f\x19\x01\x78\xac\x17\xef\x29\x0f\x9f\xfe\x32\x17\x52\x42\x47\xda\xbb\x4e\xa7\x21\xeb\x2f\x73\xe1\x09\xdf\xab\x6f\x7b\x0a\x90\x1e\xb2\xd5\x2b\xe5\x45\xcf\x70\xd9\xe9\x45\x64\xfd\xdd\x7f\x5a\xdb\xe1\x4c\x8e\xe7\x77\x1f\xef\x27\x6c\xc5\x8f\xeb\xaa\xc5\x9e\x3e\x85\x3c\xd0\xfb\xf4\x8e\xf1\xcc\xeb\xd3\xa9\x9a\x67\x5e\x9f\x3e\x5a\x1e\x71\x7d\xfa\xba\xf0\x88\xeb\xeb\xad\x94\xad\xb8\x37\x72\xe5\x81\xde\xd7\xdb\x8a\xfe\x78\x87\xcf\x39\x5d\x3e\xeb\xa6\x3f\x7c\x29\x79\xa2\x79\xa8\x54\xaf\x22\x3a\xb8\xbd\x44\x26\x6e\xb3\xee\xce\x5c\x95\x32\x27\x12\x38\x9e\x37\xbe\x9e\x9a\x1b\xe9\x09\xe2\x63\xf6\x6e\x20\x2e\xa5\xc7\x2c\x75\xfa\xd2\x98\x21\x03\x52\x24\x0c\xba\x59\x78\xeb\xd0\x1f\xbe\x2e\x14\x3d\x3c\x88\x29\xd2\xc9\xce\xcc\x8f\x7c\x02\x01\x99\xc5\xb7\x15\xbe\xe1\xca\x1b\x7a\xdb\x98\xf9\x09\x4f\x27\x3b\x33\xe8\x6a\x22\x7d\xea\xcc\x7c\x13\xd2\xa7\xce\x0c\x68\x78\x31\xf0\x58\x30\x84\x38\xc6\xc0\x63\xc1\x7c\x03\xd1\x1f\xce\xcc\x95\xae\xf4\xe9\x31\x83\x49\x23\xd2\x1f\xce\xcc\xb5\xb0\xf4\xe9\x31\xa4\x89\x3c\x6f\xb0\x1f\xef\x16\xe3\xca\x99\x6f\xb1\x40\x86\x6d\xae\xa7\xa5\x2f\x8d\x79\x98\x53\x24\xc8\xb9\x79\x98\x53\x64\x36\x38\xf3\x50\x9e\x4e\x6f\x1b\x33\x37\xac\xd1\xb9\xc6\xcc\xde\x3a\x58\x29\x30\xe1\x3a\xb1\x7e\xcc\xe0\x20\x10\xe9\xca\x67\x88\xfe\x39\x7f\xb0\x0e\x3f\xf3\xe8\xb9\x67\x06\xa0\xd8\x4e\x34\x20\x33\xf8\xf7\x47\x7a\xee\x99\xf9\x26\xa4\x4f\x8f\x21\xc5\xe3\x79\x83\x7f\x4c\x9f\x20\x1e\xb5\x9e\xa3\xb1\xd3\xdb\xc6\xcc\xf7\x1c\x3d\xf7\xcc\x53\x32\xf6\x46\x09\xd0\xdc\x7c\xd7\xb4\xfa\x48\x81\x10\x89\x85\x6e\xb6\x7c\x70\xe4\xfc\x9e\xa3\xb1\xd3\xfd\xc6\x90\xa3\xf1\xbc\xc1\x4a\xf7\xdb\x0a\xeb\x70\xef\xb4\x26\xfa\xd8\xbe\x0c\x3c\x8c\x3d\x8b\x63\xa7\x83\x8e\xd9\xed\x14\xc4\xd3\xd9\xee\xb7\x15\x36\x7b\xfb\x7c\xe4\xbf\x78\x21\x9a\xb9\xc1\x90\xfe\x3d\x66\xf7\xdb\x05\xf6\xc9\xc3\x03\x9a\x68\xf6\x79\x5b\x64\x9f\x00\xbc\x11\xe9\x86\x67\xe6\xa7\x2c\x1d\x7e\x6c\x5c\x6f\x1d\x89\x7f\xf8\x2a\x92\x44\x91\x04\xf2\xd4\xd1\xf8\xc7\x5b\xe9\xd7\x8f\x11\x9c\x78\xc8\xe3\x87\x1f\xb5\xf4\x98\x33\xcf\xf9\x18\x09\x72\x6e\xc3\xef\x02\x84\xe8\x31\x44\x35\x9d\x37\xd8\x31\xd7\x4c\xd1\x03\xc8\x10\x80\x74\xde\x60\x4f\xfd\x64\xa5\x4b\x90\x8d\xe4\xbb\x8b\xa7\xc0\x48\x6f\xb3\x85\x7f\xf8\x14\x92\xe9\x8f\xec\x75\x90\xcc\x07\xc0\x73\x3a\x1d\x7e\x6c\x64\x27\x2f\xca\x00\xc3\x19\x03\x1d\x7e\x6c\x64\x5f\x56\x0a\x05\x9e\xe2\x31\x12\x8f\xdc\x86\x2b\x7f\xe9\x12\x64\x9e\xf3\x31\x32\xb5\x9b\x8d\xf2\x56\xca\x8e\x39\x63\x68\xa4\xea\x51\x7c\x2c\x4d\x75\xf8\x52\x92\xcc\x87\x1b\x70\x88\x0c\x64\xa3\x7a\xd7\x29\x14\x0c\x3f\x7b\xe9\x17\x64\xe3\xdd\xb2\xa4\xd9\xf1\x6e\x59\x9e\x13\xe3\xdd\xb2\x54\x23\x8c\xf9\x7e\xc2\x4a\xa7\xb3\x52\x0a\x16\xc3\x4f\x45\xfa\xd4\xd9\xf0\x23\x8e\x88\xe5\x36\xde\x1d\xca\xa3\x65\x6c\xa7\x20\x1e\x2d\x63\xbf\xad\xb0\xd2\xfd\x7e\xc2\x7e\xdc\xef\x27\x7c\xe3\x76\x8e\xc5\x73\xc2\x33\x18\x76\xfa\x16\x99\x67\x30\x8c\x74\x7f\xb3\x71\x3b\xd1\x91\x83\x23\x83\xe1\xf9\x83\x3d\x05\xe8\x55\xa7\xb3\x91\x79\x8c\x4e\xa4\xfb\x9b\x8d\xc7\x97\x92\x47\xbe\xe7\x38\x8c\xf4\x76\x33\xcf\x60\x18\x89\xca\x6d\xf3\x8a\xfe\x47\xe0\x1f\xef\x1b\xdf\x27\x08\xb8\x39\x7f\x34\xfe\xf1\x7e\xd2\xf9\x47\xf5\x3f\x8c\x7f\x0c\xef\x69\xe4\x1f\x98\x31\x3a\xc8\xd9\xf4\xab\x32\xbd\xa0\x6c\xc6\xf7\x93\x6f\x2c\x33\x39\x33\xa0\xb5\x60\xba\xac\x4a\x7c\x68\x9b\xd0\xf5\x46\x82\x3d\xdb\x74\xf7\x1b\x3a\x4e\x99\xe7\x02\x8c\x74\x90\xb3\xe9\x82\x27\xb1\x9d\x6d\x66\x27\x5c\x6e\xf5\x09\x53\x48\xa4\xfb\x9b\x79\x72\xc0\x2e\x87\xa5\x59\xde\x4a\xd9\x8a\x0b\x9e\xf2\x4f\x9a\x2e\x45\x12\xec\xd9\x66\x7d\x5b\x61\xa5\xd0\x35\x45\xa2\x3f\x1b\x02\x53\xce\x1f\x1c\x1c\xcc\xff\x91\x3e\x70\x86\x28\x93\x53\x07\x9b\x35\xff\x84\xc7\xe4\x74\xeb\xa5\x3c\x98\x90\xd8\xef\xbc\xc1\x8e\xd9\xdb\x0f\x36\xeb\x5b\x8c\x4e\x71\x36\xfd\xae\x28\x77\xa4\xe9\xc2\x2b\xbd\xe4\x6c\x0e\xef\x07\x39\xcc\xf4\x3d\x47\x2f\x39\x9b\x7e\x57\xa4\x97\x9c\x4d\xdf\x73\x74\x8a\x33\x4f\xca\xd7\xe5\xd2\x34\x97\xf7\x83\xcc\xc0\x93\xf2\x45\xe6\x25\xb3\xe9\x21\x6c\x72\x7a\xf2\xa4\x7c\x31\xe6\xfc\x97\x03\x6c\xfa\x81\x48\x8f\x39\xf3\x7c\x7c\x5d\x2e\x52\xd3\x9d\x64\xe4\x11\xe5\xc9\xf5\x22\x7d\xea\x6c\x5d\xbe\xf0\xbc\x5f\xad\xeb\xed\x75\xe7\x1f\xcb\xff\x30\xfe\xe1\xcc\x96\x8c\x72\xb9\xdc\x2a\x27\x2a\xcf\xa5\xd7\xe5\x22\xb5\x82\x2f\x3c\x39\xc5\x72\x37\x1a\xb9\x48\xad\xe8\x73\x43\x3e\xb0\xe2\xfb\x06\x9b\x4d\xbe\x02\xdc\x3b\xcb\xd5\x4c\x8d\x6c\x70\xf9\xf1\x44\x9c\x67\x5b\x7e\xcf\x23\x0a\x96\x2d\x3f\x9e\xe4\x64\xb7\xdc\x75\x4d\x6e\x56\xcb\x65\xce\x46\x56\xba\xb2\xef\x72\x1e\xb5\xeb\x3d\x38\xc8\x5b\x97\x6b\x73\x22\x37\xd3\xaa\x3e\xda\xaa\x37\x7c\xd6\xb9\x55\x3c\x68\x27\x12\x53\xd9\x56\xf3\x85\x27\x99\xaf\x97\xb7\x92\x61\x2f\xe7\xad\xcc\xa0\x66\x9e\xeb\xad\xcb\x33\x6b\xdd\x6f\xd7\x59\x87\x6b\x0d\x08\x8b\x65\x9e\x96\x2d\x32\xe9\x9a\x6d\x77\x0b\x26\x0a\x96\xed\x77\xb1\x49\x41\xfb\xe5\x8b\xa4\x20\xcf\xc2\x16\xe5\x63\x88\x78\x92\x53\x47\xe4\x1f\x3e\x63\x5c\xdb\xed\x4a\x46\xb9\x14\xee\xe8\x75\x70\xe5\x76\x7c\x7b\xca\x66\xfd\x4e\xd2\x78\x0a\xec\xe4\xc3\xe7\xba\xec\x77\x6d\x79\x2c\x6c\x97\x23\x88\x87\x6c\xdb\x95\x7b\xcd\xf4\x87\x13\x2e\x6f\x82\xdb\x45\x7f\xa2\x1d\xdb\x7e\x99\x9c\x66\xac\x3a\x1f\xd0\x04\xb9\x9f\x14\x01\xbc\x6c\xbb\xc3\x20\x01\xbc\x0c\xb1\x2c\xe7\x13\x76\xfd\x5d\x5b\xf5\xb4\x79\xb3\xea\x58\xf7\xae\xab\x63\x86\x7e\xc8\xb5\x71\x23\x3c\x38\xca\x71\x71\xfb\x7d\x22\xf1\xc6\xb1\xa1\x61\x8f\x89\xd7\x07\xa4\x43\x3b\x1d\xd3\x1b\xcb\xdf\x60\xc7\xfc\xca\x2e\x4f\xb5\x0d\xa8\x92\xde\xf5\x06\xd2\x4a\x44\x79\x43\x6e\x18\x80\x63\xe2\x31\xb9\xfd\x42\x2e\xe7\xc7\xbd\xde\x3a\xf8\x09\xd0\x85\x22\xd1\x8e\x6d\xc3\xd4\x14\x89\x76\x6c\x48\x98\x76\xfe\x60\xb3\x00\xae\xee\x44\x27\xb3\xed\x3a\x34\x62\x19\x9b\x67\x3f\x8b\xc4\x32\xb6\xfd\xbc\xcb\xc0\x29\x7c\xbc\x15\x9e\x8a\xdb\xa5\x04\xf9\x4b\xee\xc7\xbb\x4e\x41\xfc\xbe\xbc\xa7\x3c\x26\xef\xeb\x7d\xe3\x6b\xe5\x76\xe2\x97\x03\xe5\xed\x42\x01\xe1\xca\xec\x0d\x4c\x21\x3a\x99\xdd\xee\x20\x40\x30\x32\xbb\x9d\x3e\x08\x4c\x6c\x9e\x98\xab\x13\x7b\xcc\x6e\xb7\xc0\x10\x6a\xcc\x6e\x37\x89\xca\x17\xef\xf6\x93\x55\x4e\x98\xc8\xd4\x75\xfe\x60\x1d\x4e\x52\x72\xc2\x44\xaa\xad\xf3\xc7\xb7\x72\xb7\x39\x05\xf1\x88\xbb\xcd\x67\x3d\xe8\x0f\x70\x29\x79\x54\xde\x7e\xcd\x95\xfb\x9e\x47\x66\x44\x79\x54\xde\x7e\x18\xf7\xf8\x97\x84\x96\x76\xbf\x34\xcb\x13\xf2\xf6\x3b\xb0\xfc\xf2\xee\xe1\xbd\xe6\x11\x77\xbb\x45\x47\x5e\x77\xf7\xf4\x65\xe5\x89\x76\x7b\x74\x95\xdc\xf0\xee\x97\x44\x79\xc4\xdd\xee\xb4\x20\x37\xbc\x7b\xf9\xb2\xf2\xcc\xbb\x97\x6f\x15\x9e\x79\xb7\xbb\x35\x74\x2d\x9a\xfb\xc4\x13\x76\xcc\xee\x97\x88\x29\x1e\xde\x2e\x61\x13\x87\xcc\xee\xed\x7b\x98\xe2\xe1\xbd\xbd\xeb\x14\x0f\x6f\xf7\x95\x90\x5f\xde\x7d\xfb\x3a\x17\xfd\xe1\x3d\xe5\x11\x77\xdf\x6f\x2b\xfc\xc3\xc5\x65\x42\xf5\xda\xfd\xbc\x3d\xe5\x68\x5f\xba\xe7\x59\xf3\x5c\xde\x0a\x8f\x96\xc7\xe5\x67\xf9\x4b\x3e\x97\x2f\x14\xe5\xa3\xc7\x23\xd8\xe5\xdb\xf7\xb8\x40\x4d\xac\x5a\x7b\x5c\x55\x25\xdf\xbe\x27\xbc\x75\x64\xfe\xe1\x1b\x81\x27\xc9\x13\x7c\x97\x53\x8e\x78\x5c\x55\x25\x77\xc0\x27\x7a\xc7\x28\x58\x20\x48\xe5\x08\x72\xec\x47\xf2\x56\x78\xe4\xbf\x31\x29\xf2\x20\x7c\x5c\x06\x20\x02\xac\x3d\xf9\x1d\x0b\x9b\x75\x57\x5a\x39\x0c\x3e\xc5\x7b\xda\xf5\x87\x93\x39\x09\xe6\x71\x19\x20\x75\xfd\xe1\x04\x43\x0a\xf2\x4c\x6e\x31\x75\xfd\xe1\xdb\x8d\x32\xd1\xe3\x67\x4d\x32\xfd\xe1\xcc\x85\x32\xd1\x53\x9d\xfb\x9a\xfe\xf0\xd3\x88\x44\x87\x5c\x6f\xe7\x0d\xfd\xe1\xcd\xf2\x64\xf5\x5c\x6f\x9d\xc8\x62\xf6\xb8\x01\x87\x40\x62\x86\x2c\x6c\xe7\x13\xfe\xe1\xa1\xdf\x9d\x54\x88\xb4\x6c\xe7\x0d\xce\x87\xfb\xa2\x77\x92\xe5\x63\x6f\xc7\xf4\x86\xd3\x3a\x35\x75\xcf\xf0\x19\xa3\x62\xce\x43\x68\xa2\xbc\x43\x9f\x51\xfc\x8f\x77\xb4\x63\xbd\x54\xc8\xc7\xf5\xef\xbf\xc4\xf8\xf3\xb1\x42\xff\xf7\x5f\x66\x98\xf3\x58\x48\x33\xf9\xf3\x18\x50\x5c\xf8\x1c\xf1\xb9\xca\xef\x53\x5e\x58\x7d\xf2\x72\x3d\x37\x94\x57\x3e\x1f\x1e\x51\xf8\x79\x7a\xf0\x3a\x8b\x11\xfa\xa4\xda\x72\x40\x71\xe3\xf3\x38\xb5\xfd\xbc\x7e\x96\xf6\x5b\x83\x81\x80\xf4\x44\x23\xc7\x58\x00\x78\x2a\xec\x3b\x42\xa0\xd4\x15\xdc\xde\x0a\xeb\x86\x8a\xf3\xd3\x1e\x0d\xe4\x8b\x4e\x34\x87\x0c\x4f\x17\xfd\xf1\x87\x81\xcc\xcf\x99\x11\x8c\x03\x11\xe6\x89\xc6\x92\xb1\x70\xad\xd3\x34\x9d\xf3\x2c\xd1\x52\x32\xd6\x21\xb0\xcc\x78\xc7\xb1\xce\x69\x96\x68\x38\x19\x0b\x78\xc2\x95\x8f\xbd\xa1\x98\xad\xf5\xb3\x68\x54\x7a\x8e\x85\x0b\x60\x63\xdf\xcd\x3b\xc3\xda\x41\x79\x8d\x7d\x3f\xe7\x4f\x66\x1c\xe0\x40\xe6\xe7\x74\xe9\xf3\x51\x51\xfe\x17\x83\xd6\x40\x52\xe8\x74\xa9\xf2\x73\x6d\xcc\x54\x0f\x8e\x05\xf9\xa9\xb3\xee\x89\x15\xed\x2c\x9e\x98\xe6\xce\x25\x9b\x03\x9f\xb3\xeb\xe7\x5c\x4a\x34\xfe\x8c\x85\x63\x49\xf3\xb6\x2e\xbc\xce\xea\x71\xe1\x34\x3d\x82\x1a\x3b\xe7\xe9\x9c\x61\x99\xaa\xb9\xb1\xa0\xa4\x35\x3d\x62\x22\x3a\x57\x69\xf5\xf3\xcc\xbe\xae\x89\x62\xce\xdb\x02\xb9\xb1\xeb\xdb\x87\xc2\x45\xda\xa8\x8d\x3d\xdf\x98\xd5\xac\xd7\xb1\xe4\x9d\x43\xb9\x9d\xe0\xf8\xe8\xc5\x1c\xca\x3d\xfe\xfd\xc7\x8c\x1a\x63\xdd\xde\x17\x76\xfd\x3e\x7d\x09\xac\xfc\xde\xa7\x31\xed\xb3\x1b\xd3\x68\xfc\xfc\x9c\x77\xb9\x69\xa3\x1d\xb9\x2f\x89\x22\xce\xe9\x97\x9b\x36\xd6\x83\x45\x36\x56\xff\x80\xfe\xb4\xb3\x9e\xd3\xd9\x4f\x2b\x3d\x90\xea\x9a\x51\x39\x03\x17\xa8\x44\x73\xd4\xd8\x87\x23\x51\xc4\x1c\xfb\x2a\xa7\xb2\xef\xaa\x38\xf6\x55\x4f\x71\xe2\x23\xa8\x95\x7b\x7e\x1f\x86\x45\x39\x70\xec\x80\x79\xfa\xae\x09\x03\xe9\xad\x99\x9d\x62\xe0\x5a\x95\x68\xe8\x1a\xfb\xb0\x37\xa6\xa6\x18\x1b\xec\x8d\x77\xf0\xb1\xc1\xde\x12\xdb\x8e\x20\x00\x92\xdb\x8e\xa7\xb1\xc4\x81\x44\x10\x6b\x57\x6d\x58\x14\x92\x1f\xf2\x66\x53\x54\x1c\xb8\x7c\x25\xda\xc7\xc6\x3e\xbc\x90\x72\xe2\xd8\x09\x6b\x66\x6c\xfc\x1c\xb9\x89\x29\x82\xc7\xce\x20\x20\x7d\x7e\x6e\xe1\x0c\xba\x19\x3b\x77\xbc\xce\x91\x9f\x3b\x39\x43\x70\x06\xf2\x6f\x53\x22\x1c\xb8\xe6\xa5\x40\xea\xdc\x87\x37\x52\x1c\x1c\xfb\x9c\xdd\x29\x90\xc1\xec\xc3\x2b\x29\x0b\x8e\x5d\x0f\xf9\x30\xa8\x65\x20\x31\x37\xd3\x3c\x0c\x60\x23\xe4\x2e\x7a\x38\xbc\x93\x49\x87\x07\x60\x0f\x28\xbf\x0d\x5c\xfd\x32\xc1\x6a\xc7\x6e\x3e\x10\x95\x1f\x02\xe8\x5a\xb3\x23\xd7\x33\x21\xc2\xd8\x47\xaa\xcf\x5d\x6b\xd6\x2b\x3e\xe7\x48\x3b\xaa\x4f\x1c\x5a\x3f\xb3\x5e\xd9\xb7\x23\xe1\x27\x1a\x0b\x07\xf0\x0f\x28\xc3\x0d\x5c\x21\x33\x45\x96\xb1\x6d\xe2\x75\x96\x1f\x61\x9c\xd9\x08\xc6\x06\x2b\x25\x36\xc7\x00\x12\x42\x22\x34\xc7\xd8\xf3\xac\x61\x17\x31\x4f\x6c\x9c\xc0\xe7\x85\xea\x38\xaf\x0b\xcb\xa0\x79\x06\x43\x22\xa3\xde\xcb\x4e\x6d\x3f\xaf\x83\x47\x68\xde\x37\x96\x89\xec\x0f\x77\x48\x0a\x79\x63\x83\x61\x11\x9e\x63\x6c\x30\x2c\x51\xf3\x3e\x13\xf5\xf3\xf1\x3e\x6f\x93\xb1\xef\x23\x65\x53\x1e\x1c\x1b\xec\xab\xff\x25\x1d\xc9\x00\x40\x42\x0a\x62\x10\x87\x3b\x65\x13\xe9\xde\x58\x13\x71\x88\xe7\x42\xb9\x9e\x41\xbc\x62\x11\xcf\xe9\x29\x99\x1b\xee\xac\xd9\x34\xe9\x0f\x36\x52\x64\x57\x8f\x28\x4f\x71\x70\x00\x48\x21\xd3\xb3\x7a\x20\x37\x37\x45\xae\x71\x1f\x81\x29\xd3\xad\x7a\xdc\xd7\x99\x07\xee\xc2\xfb\xf2\xca\x1b\x9f\x9f\x7f\xff\x51\x1c\x1b\x77\x40\xd7\xb9\xc0\x77\x38\x0c\x87\x23\xbd\x43\xc4\xd7\x6c\x2c\x80\x7e\xb8\x17\x6e\x48\x67\xdc\x0a\x37\x98\x1b\xed\xa3\x03\x39\xc1\x13\xcd\xa3\xe3\x8e\x87\xbc\x4c\xd5\x45\xd0\x0f\x19\xd6\x7d\xf8\x59\x36\x55\x7f\xf8\x19\x03\x78\x06\xb0\x1d\x18\x8b\x33\x90\xe9\x3b\xd1\x2c\x3a\x80\xe3\x40\xc4\xfd\x81\xbc\xdf\x99\xb0\x82\xe3\x4e\xde\x39\x0e\x35\x47\x94\xb3\xf1\xec\x9d\xe1\x4c\x65\x74\x86\x2c\xe9\xce\xde\x1c\x9b\x87\xb0\x17\xf4\x88\x9d\x47\x6e\x0a\xbc\x87\x4c\x0f\xe8\x81\x14\xe2\x8c\xa4\x19\x77\xc1\x89\xa6\xde\x1d\x06\x47\x34\xfc\x01\x70\x88\x4c\x37\xe5\x71\x97\x33\x73\x24\x11\x64\x1b\xcf\x04\x11\x1c\x37\x38\x1a\x31\x04\xc7\x7d\x38\x5a\xd6\x3a\x54\x6c\x3c\xf2\xe2\xbb\x62\x6a\x28\x2d\xde\xe7\xc6\xc1\x98\x95\x71\x37\xef\x1b\x5b\x6b\x60\x59\x9a\x09\x70\x44\xba\x19\x8f\xbb\x81\x42\x29\x06\x03\x62\x22\x05\x0d\x1d\x2c\xce\x28\x7c\xde\x1d\xfb\x2b\xeb\x7d\x4c\x1d\x99\x18\x74\x16\x29\x68\xf0\x86\x95\xa0\x60\x03\x2c\x89\xc4\x3c\xd6\xe3\x3e\xb7\x8e\xac\xe6\x0e\xcf\xcb\xaa\x7d\x82\x66\xc9\xde\xa1\x39\x28\x74\x17\x1c\x80\x88\xc8\x2a\x3e\x22\x5a\xb9\xb4\xae\x87\xe5\x31\xbc\x64\xdc\xeb\x3e\xc5\x91\x8d\x6d\xec\x10\x9e\x16\xf7\xe1\x61\x0c\xfa\x18\xd0\x28\x94\x4b\xdb\xef\xf0\xb0\xac\x89\xdf\x58\x18\xad\xe3\x9e\xe7\x75\x2d\xdc\xe1\x71\x0c\xee\x18\xd0\x0b\x30\x92\x63\xdc\xb7\xcf\x03\x1b\x3b\x32\x58\xb9\x44\x53\x47\x08\xcb\x95\x5d\x73\x19\x4c\x8d\x43\x08\xa3\x10\x7f\x3b\xd7\xa2\x9c\x03\x15\x43\xd6\x22\x3f\x98\x46\x5e\xcc\x00\x71\x91\xb5\xe6\x0f\xd6\x50\x5d\x7d\xd0\xf3\xaf\x6b\xcf\x11\x9a\x0a\xa1\xc9\xc6\x73\x41\x98\xf8\xde\x86\xa2\x81\x31\x1a\x03\x4a\x84\x44\x03\xf4\x78\xa2\xb7\xfd\xf5\x05\xa0\x15\x8c\xbe\x18\x4f\xf2\x9e\xb3\xf2\x54\x4e\x63\x64\xb8\xc8\x1d\x9f\x82\x3a\x73\x2e\x7d\x45\xe2\x22\x32\xc7\x27\xda\xaa\x07\xb4\x0b\x89\x96\xe9\x01\xe5\x42\x39\x02\xe2\x1f\x0e\x8f\xe7\x5c\x19\x19\x6f\x31\x00\x96\x51\x24\xff\x3d\x19\x04\x41\x81\xef\xc9\x05\x27\x2e\x1f\x31\x4f\x94\xe8\x1e\x67\x4a\xbc\x32\x22\x41\x3d\xc3\x19\xc6\x93\x71\x12\x69\x1e\x8b\x9f\x44\x7c\x3c\x04\x21\x69\xe0\x29\x3e\x30\x76\xa6\x62\x63\xf1\x11\xa2\x0a\x4f\x96\xc7\xb7\x31\xef\x42\x4f\x07\x93\x61\x65\xb8\xf4\x11\xe1\x65\x20\x35\x3c\x63\x20\xc6\x63\xf1\xb4\xcd\x5d\x09\x6d\x02\x91\xce\x07\x74\x09\x0c\x6e\x18\x50\x1c\x24\x9a\xb6\x07\x72\xb3\xa7\xa0\x81\x4e\xbc\xce\x69\x99\x18\xb7\x06\xba\x30\xcb\xec\xf9\x42\xcf\xb5\xc0\x0b\xf3\x40\x59\xe1\x39\x37\x25\xc6\x2b\x0c\x64\x64\x2f\x3f\x8d\x63\xd3\xf2\x4c\x04\x30\x46\xa2\xb9\x7b\x3c\xfb\x0c\x94\xfc\x03\xb9\xd8\x13\x8d\xdf\xe3\xd9\x5e\xdb\xf7\x78\x9f\x15\x8d\x9a\x97\x1b\xd3\x26\x02\x38\xdb\x8c\xa8\xd8\x03\x60\x17\x29\x88\x00\xce\x36\x23\x24\xf6\xbc\xae\x33\xab\x4c\x45\x3c\x91\x4d\x3d\x11\x01\x66\x22\x99\x3a\xd1\xaf\xe7\x75\x79\xd7\x8d\xcf\xa7\x6f\x51\x6f\x1f\x59\x81\x7d\x9b\xc8\xab\x4e\x20\xec\x79\x85\x84\xe2\xc0\xe7\x53\x79\xd2\xdb\x37\x7a\x5e\xf9\xfc\xe0\xf5\xf8\x3d\x47\xd4\x96\xd8\x99\x73\x99\x49\x4c\x80\x3d\x91\x3d\x9d\x08\xd9\x13\xb9\xd3\x13\x93\x5d\x4f\x64\x4a\x67\xe0\xc4\x04\x62\x05\xa3\x24\x26\x12\x9a\x13\xd6\x7a\x02\x9c\xa2\xd0\x8e\x36\x91\xde\x9c\x20\xd7\xf3\xc2\xe1\x4c\xc7\x80\x79\x9d\x6d\x44\x84\xeb\x79\x65\x9f\x07\x7d\x7d\x46\x96\x39\xee\x82\x25\x6c\xec\xe9\xb9\x7d\x30\x23\xee\x04\xca\x45\xa1\x31\x6d\x02\xe4\x82\xf9\x71\x27\x92\xa2\x17\x9a\xd6\x26\x20\x2f\x12\x5d\x10\xe6\x55\xb0\x26\x4d\xef\xef\xf3\x39\xbb\x5a\x30\xcb\x4d\xcf\x98\xe5\xc0\xbe\xd7\x33\x4d\x99\x5d\xaf\x98\xe4\xc0\xbe\x1f\xc9\x80\x78\xd5\xf3\xaa\x68\x3c\xb0\xaf\x38\xea\x99\x1e\x7b\x5e\x0d\xf4\x63\xfc\x1c\x8a\x21\x62\xff\xcc\xeb\xb0\x08\x42\x57\xcf\xab\xfb\xe7\xec\xdc\x61\x11\xa5\x70\xa2\xba\xb7\xc6\xce\xf5\x1b\x04\xc4\x67\xf3\xda\xd9\x3b\xdc\x5e\xe8\x26\x31\x2f\x30\x89\xca\xd6\x46\x3a\x9f\xab\x33\xc3\x2f\xea\xec\xec\x18\x78\xe6\xfb\x13\xf7\xfc\xc8\xee\xcc\x73\xb4\x6b\x9d\xc0\x63\xa2\xf6\xd6\x3c\xeb\xd8\xd8\xb9\x55\x41\x9e\xac\xfd\x9c\xfc\x89\xee\x16\xf3\x5a\x0f\xca\xd9\x1b\x70\x8d\xce\xcf\xef\x08\xf2\xfd\x4b\xe0\xeb\xbc\xee\x33\x32\x63\x47\x6f\x6c\x34\xad\xda\x7d\x78\xa7\xb1\xa3\x37\x34\x10\x91\x2d\x43\x0e\x88\xda\xf5\xe7\xa0\x67\xc0\xc8\x0c\x17\x36\x12\xc9\x37\x5c\x20\x11\x72\x01\xa4\x44\x4f\x74\xe8\x98\x01\xa7\x2f\xfd\x39\x66\x08\xd8\x4b\x9d\xf5\x05\x4c\x04\x27\x26\x04\x4c\xc4\x77\x86\xcd\x70\xf6\x35\x03\x14\x66\x48\x98\x47\xb2\x28\xa4\x31\xa7\x8b\xff\x0c\x50\xb1\x8a\x8b\x84\x23\x96\x17\x5e\x41\x66\xc8\x20\x31\x72\x91\x70\x0e\x50\xba\xea\xcf\xe0\x3b\x9b\x8c\x00\x88\x19\x85\xe1\xf8\x33\x14\xff\x9c\x83\x3b\x9b\x95\xb0\xa2\x33\x9c\xcd\x47\x0c\xd1\x19\x0a\x18\x41\xe6\xf3\xd9\x5c\xc4\x0b\x9d\xa1\x82\x2f\x44\x3d\xa3\xef\xdc\x7c\xa1\x61\x2f\xaa\x73\x2d\x9c\xcf\xf5\x88\xc6\xf4\x36\x36\xba\xfa\xd2\x07\x9e\x59\x7e\x76\x0f\x73\xd2\xce\xd0\xc1\xb3\x34\x92\xbe\x4f\x31\x2b\xef\x58\x15\xee\x3d\xa4\x4b\x2f\x99\x3c\x0e\x80\x1a\x89\xca\xe8\x19\x7c\xef\x15\x7e\x7f\x84\xec\x5a\xf4\x3a\xe6\xb5\x70\x59\xce\x56\xa4\x6f\xfd\x0c\xbe\xf5\x0a\x57\x65\x94\x53\xcc\xa1\x8c\x0a\x0e\xa9\x67\x90\x54\xe1\xd0\x06\x1a\x63\x5f\x07\x08\xb8\x70\x68\x67\xe3\x56\x75\x15\x4a\x58\x3a\x6b\xcc\x70\x36\x6a\x62\xc6\xed\x19\x8e\x88\x5e\x35\x92\x8d\xaf\xd9\x16\xb4\x0a\xd4\x75\xcf\xb0\xf1\x36\xdb\xda\x58\x53\x6e\x2e\xa4\x44\xaf\x7a\x1b\x6a\x04\xba\x81\xcc\x70\x9f\x25\xfd\x79\xc4\x56\xac\xfc\xfa\xc6\xd1\xc0\x03\x17\xb9\xd0\x69\x10\x98\x01\x9a\x03\x2a\xce\x67\x78\x4e\x57\x2b\x67\xf1\x39\x14\xc0\x3c\x24\x33\x1c\xa1\x9a\xd8\x97\x33\x1c\x99\xba\x50\x6e\x99\xe1\x39\x14\xf0\xc9\x86\x33\x5e\x67\x52\xc9\xde\x90\x20\x3d\xd1\x1b\x65\x46\x3f\xcd\xd9\x18\xd2\xa3\x17\xc9\x0a\x80\xfa\x20\x8e\xe4\x44\xb2\xf4\x22\x59\x21\x06\x3b\xc5\x6c\x0c\x4c\x41\xb2\x42\x0c\xa0\x97\xaa\xd7\xd1\xd7\xa4\xea\x4e\x5f\x3f\xb1\x78\x46\xe7\x21\x55\x9f\x3f\x78\x9d\xd5\x1f\xd9\xa1\x7e\x02\xdb\x8c\x2e\x3a\x70\x26\x62\x04\x45\x68\xe8\xe9\xec\x7a\x66\x97\x98\xc8\xe3\x9e\x74\xa6\x02\x60\x84\x3e\xf9\x13\xf0\x22\x49\x67\x6a\x3c\xb2\x05\x3d\xf4\x27\x52\xba\x27\xda\x2b\x26\x32\xba\x27\x1a\x28\x66\x84\x78\x50\x48\x7f\xc8\xbf\x4e\xf7\xfd\x89\xec\xeb\x89\x19\xbb\x67\x04\x8f\xf9\x79\x04\x0d\xf0\xa0\x88\xe0\x31\x3f\x8f\x98\xd8\x3f\xc5\x9b\xce\xe8\xc7\x79\x67\xcf\x2a\x66\x5d\x8b\x58\x31\x12\xd3\x33\x7a\xae\x55\x74\x06\xc6\xe3\x1e\xf9\xd9\x13\x93\x7c\xcf\xd8\x41\x23\xc6\xbe\x43\xe6\x8f\x3c\xa8\x22\x64\x7e\x86\x11\xce\xd8\x0f\x91\xe8\x75\xcb\xff\xfe\xa3\xcb\xfd\x8c\x87\xa7\x14\x06\xd9\x4d\xe0\x8d\x24\x7a\xcc\xcc\x38\xce\x2a\x12\x68\x7c\xc6\x73\xde\x37\xbd\x7e\x78\x4e\x61\xb0\xdc\x8c\xc3\x07\xc7\xf2\xc3\x35\x88\x27\x39\x01\x5e\x92\xa2\xfa\x76\xb8\x08\xad\x4a\x33\x9e\x1b\x05\x9d\xdb\x67\x9c\x5e\x19\x67\x72\xde\x10\x3d\x54\xfe\x9c\xd7\xd9\xd6\x82\x9e\x5e\x43\x3b\x37\x0e\xfa\xbd\x4f\x80\x9e\xd0\xc3\x7c\x02\xe1\x24\xd1\x14\x33\x01\x70\x42\x5f\xf1\x19\xf7\x59\x72\xc6\x5c\x4d\x64\x74\x6f\xda\x98\xb8\x50\x10\x0b\x7a\x02\xeb\xa4\xd0\x24\x3a\x91\xde\xbd\x69\xa7\x1d\x0e\x55\xaa\xf6\xc2\x11\x44\x9a\x76\xd6\x11\x35\x12\xfd\x85\x66\x04\xc7\xd2\x31\x13\xef\x7e\x5e\xe7\x34\x3d\x3e\x50\x3d\x7b\xed\xec\xdc\x03\x8b\xc4\xc5\x79\x7a\x2a\x9e\x55\x0e\x7b\x07\x45\xbe\x78\x78\x16\x1d\x94\x67\x84\xee\x93\x8e\x46\x13\x49\xe4\xe9\x7b\x3c\x01\xa7\x42\x33\xd0\x4c\x57\x83\xf1\x44\xc5\xa7\xaf\x3c\x27\x52\x00\xfd\x90\xb5\x03\x26\x25\xd1\xea\x34\xd3\xe1\x49\x84\x00\x9c\xe9\xb0\xa4\x44\x17\xa6\x99\x0e\xcf\xa1\x7f\xed\x04\x62\x4a\xa2\x43\xd3\x04\x3e\x4a\xa2\x3f\xd3\x4c\x11\x14\x42\xb9\x1e\x79\xe7\x53\x22\x89\x24\xdc\x5f\x08\xee\x3b\x91\x86\x9e\xce\xb9\x33\xb9\xf1\x85\x24\x83\xa4\xf4\x29\x51\x16\x06\xf4\x49\x22\x98\xdc\x04\xae\x49\x61\xcc\xc7\x4c\x87\xe9\xd0\x83\x76\x26\x30\x1d\x1a\xb5\x66\xc2\xad\x83\x89\x9a\x67\xc2\xad\xa2\x69\xea\x2a\xd6\x89\x62\x58\xaa\xed\xdf\x7f\x74\x29\x9d\xa9\xa2\x77\x14\x9d\x53\xb5\x53\xcc\xb1\x42\xa1\x48\x27\xab\x99\x0e\x1f\x6a\x1a\x2a\xd8\x90\xf6\x5a\xaa\x3e\x16\x3e\x9f\x5b\x06\x1d\x38\x27\xf2\xe0\x27\x3a\x64\xcd\x74\xb8\x10\xcd\x56\x13\x39\xef\x8b\xf6\x43\xea\xde\x75\x3d\x7b\x67\x38\x33\x47\x6e\x2a\xa2\x78\x20\xb1\x30\x7b\xe9\x4c\xdd\x3b\xc3\x99\xc1\xa5\x84\xb1\x0c\x33\xc1\xe2\x42\x0b\xde\x4c\x47\x70\x62\xe2\xd2\x99\x60\xbc\xd6\xb5\x00\xb0\x2e\xf4\xc6\x9c\x48\xae\x9f\x92\x6a\x33\xd4\x9e\xf5\xba\xd7\xce\xa9\x38\x92\x10\x8d\x6a\x33\x41\x12\xd2\xa5\x22\x8d\xd3\x77\x0a\x27\xc0\x6e\x49\x44\xd4\x9b\x69\x62\x95\x29\x19\x01\xca\x25\xa5\xfc\x97\xa4\xb5\x33\x41\xa7\xf2\xb3\x1f\xc0\x02\x93\xba\xba\xd0\x35\xb6\xb5\x40\x41\x3c\x83\xd3\xb9\x0f\xd1\x65\x72\xa6\x85\x81\x91\x8f\xa4\x23\x85\xd1\x81\x72\x22\x51\x7f\xa2\x81\x6f\x22\x2d\x7f\xa1\x53\xf3\x4c\xbb\x9d\xd7\xf5\x35\xee\x62\xa2\xc7\x6d\xa7\x58\x5f\x63\xc9\x79\xc7\x4e\x87\x63\xd2\xb3\x70\x22\xa3\x7f\xa2\x3d\x70\xa6\xbd\x4f\x31\x1f\x6f\x74\x8d\x04\x71\x83\x3b\x8b\xe9\x9c\xdb\x57\xd7\xce\x39\x0c\xb1\x6b\xe3\x3c\xa0\x46\x1e\xe7\xe9\x30\x38\xba\x0a\xce\x0c\xdb\x32\x5d\xb9\x66\xbe\xce\xfa\xab\x6b\x80\x9f\xa1\x57\xe0\xcc\xce\xa2\xb8\x06\x39\xa0\xb6\xc2\x47\x4c\x2a\x79\x52\x3e\x2c\x8a\x1e\x83\x33\x3b\x8b\x22\x4f\x01\x50\x4d\x21\xbc\xdd\xcc\x47\xec\xa1\xdf\xdd\x04\x4a\x4d\x22\x2c\xdf\xcc\xce\x82\x28\x8d\x22\xad\x7f\xa1\x63\xd6\xcc\x50\x3e\xd2\x3f\x6c\x66\xe8\x5c\xe8\x74\x35\x91\xf5\x3f\x31\x3d\xfa\xcc\xd0\x46\xd2\xda\x38\x73\x41\xf3\xac\xde\x59\x14\x97\x1c\x39\xfd\x89\x92\x37\x01\x55\x93\xe8\x49\x36\x73\x3d\x13\x4d\x67\xa3\x89\x7c\xfe\x74\xcd\x9b\x19\x8a\x0d\xc2\xac\xcd\x5c\xcb\x29\x66\xdb\xce\xa1\xc8\xb1\xf2\xe1\x50\xa5\x6b\xaa\x0e\x8b\xa2\x55\x76\x66\xe7\x50\xe4\x60\x19\x36\x60\x5a\x3a\x27\x00\x6d\x4a\x57\x75\x30\xf2\xd2\x18\x39\x73\x3f\x0b\xc3\x8b\x62\x86\xea\x94\xc6\xc9\x99\x8f\x9c\x44\x0f\xc0\x99\x3b\x66\xa2\xeb\x75\xd0\x2b\x05\xd0\xec\x4c\x84\x2c\x0b\xd9\xfe\x69\x22\x9e\xd9\xb0\xcc\x64\x1a\xd9\x0e\x79\x93\x29\xe4\x23\x27\x31\x11\xe8\xcc\xb0\xf9\xd2\x9e\x38\x91\xf6\x9f\x79\x3d\x67\x1e\x98\x76\x8a\x7c\xf9\x70\x1c\xba\x00\x4e\x24\xf8\x4f\x49\x6d\xcd\x33\xcd\xe4\x11\x79\x1e\x92\x31\x91\xff\x91\x8b\x98\xac\x73\x22\xd7\x7f\xa2\xd3\xd9\x44\x66\x7f\xfa\xe4\xcd\x7c\x38\x0c\x3d\xf2\x66\x06\xcb\xe0\x6d\x3a\xbb\xd4\x44\x3d\x46\x3e\x52\x53\x21\x3e\xd2\xcc\xce\x52\x28\x3e\x66\x28\x60\x4c\x14\xb2\xd1\x55\x0e\x14\xbb\x9e\x57\xd2\x7c\xbb\xf3\x03\x1b\xbf\x6f\xe8\x58\xd8\xda\xb9\xaa\x11\x70\x6f\xe6\x23\x07\x15\x53\xd7\x8f\x1c\xd4\xb5\x6f\x9f\x33\x12\xed\x53\x38\x9c\x48\xe7\x81\x84\xfd\x3f\xc4\x07\x0b\x2f\x8d\xb4\x13\xd9\xfa\x3b\xf7\x65\xb9\xce\xfa\xda\xcf\xf3\x84\x23\x46\xe4\x33\xf4\x3b\xdc\xb7\x05\x6a\x5c\xa6\x5d\x9f\x05\x3c\x86\xa2\x01\x12\xea\x17\xa2\xc5\xcc\x12\xf1\x39\xa9\xaf\x44\xff\xfc\x2f\xe6\x8d\x59\x8e\xd4\x43\x93\xfe\x44\x2a\xfe\x44\x13\xed\x2c\x09\x8a\xac\xae\xe7\xb3\xe0\x3c\xe9\x91\x86\x3f\x11\x3d\x71\x16\x28\x7b\x88\x06\x33\x91\x51\x3f\x49\x7b\x53\x0e\x47\x29\x04\x76\x99\xa5\x9c\x89\x22\xad\x22\xdf\x7e\xa2\xc9\x77\x16\x30\x1c\xd2\x2a\x92\xed\x57\xe6\x92\x9a\xa5\xc2\xa1\x85\xdc\xb5\x60\x93\x13\x65\x71\x96\x86\x89\xa0\x04\x87\x14\xf8\x5d\xab\x74\x36\x31\xd3\x55\x4e\xa4\xae\xa7\x53\xc0\x44\x9e\x7a\xd3\x1a\x0d\x94\xb2\x29\x28\x40\x68\x2d\x9e\xc0\x90\x62\x0e\xca\x59\xce\xb1\x5f\x2f\xad\xf8\xc0\x3c\x51\x18\x2c\x33\xa2\x9c\x9f\x9f\x6d\x66\xea\xe8\xc2\x3c\x50\x56\x2c\x67\x9b\x99\x1a\x5b\x98\x07\x2d\xca\x39\x5c\x99\xe5\x70\x16\x78\x7a\x11\xf5\x71\x02\x13\x2a\xd1\x54\x3d\xcb\x46\x67\x28\x0b\x96\x7b\xfc\xfb\xaf\xd2\x01\x66\x16\xf8\x7a\x11\xe0\x71\x96\x7b\x9d\xea\xd9\xda\x8d\x59\xa5\xb8\x56\x1e\xb8\xf2\x90\xef\x97\x07\xbe\x3b\x94\xc7\x2a\x6c\x16\x34\x5e\xcf\x7a\xa1\x7b\xdc\xd6\x15\x3e\x09\x52\x9b\xd5\x90\x4e\x77\xc8\x5c\x6b\x38\x83\x67\xf5\x35\xb8\x1b\x52\xe2\x33\x06\xcf\xd6\x70\xc2\x12\x38\x71\x22\x95\x7d\x65\x02\x92\x59\x63\xfa\xf7\x9f\xa9\xb1\x73\xe2\x56\x5a\xd2\x67\x8d\xe5\x14\xf3\xf1\xc8\xfc\xa6\xca\x0e\xf5\x33\xf5\xe1\x44\x02\xfb\x94\x7f\x9e\x7d\x64\xec\x2a\xfc\x43\xa5\xe1\xab\x05\x13\xcd\x8d\x5b\x71\x42\x12\x8f\x71\xd6\x72\x26\x9a\xac\xba\x9e\x13\x91\x49\x12\x67\x85\x57\x13\xb1\x19\x67\x3d\x22\xbd\x69\x60\xad\xfe\xfb\xaf\xca\x5a\x53\xc7\xe9\xba\xde\x1e\x20\xa9\xa2\x67\x54\xce\x91\x41\xdf\x27\xb5\x6a\x1d\x15\xaf\xab\xbc\x9d\xd7\x39\x52\x5c\xd5\x89\x96\x38\xeb\x80\x0e\x58\xd3\x78\xe8\x9d\x08\x6b\x13\x28\x51\x35\x6a\xa0\x33\x9c\x62\x8e\x0c\x16\x7d\x1a\xd9\x67\x9d\x67\x64\xe4\xec\x80\x83\x4a\x34\xb2\xcf\x0a\x63\x21\x61\x16\x27\xf2\xd5\x33\x45\xe3\xac\x1b\xf4\x47\xe6\x5c\x0f\xa7\x67\xc2\xc6\x59\x1f\xbc\xcd\x79\x80\x7d\x8e\xb0\x86\xb3\x3e\x68\xfb\x1b\x77\xbb\x0e\xf9\xe8\xba\xdc\x60\x9f\x23\xc6\xe1\x6c\x87\x75\x13\xe4\x6d\x36\xe7\xdc\x94\x98\x00\x07\x95\x68\x08\x9f\xc0\x7a\x4a\xc4\x2a\x9c\x48\x0b\x9f\x88\x4c\x38\x5b\x44\x75\x2c\x4e\xd0\x37\x73\x55\x80\xd9\x94\x68\x28\x9f\xed\x70\x67\xfa\x69\x4c\xa4\x90\x4f\x04\x2d\x9c\x2d\x0d\x68\xbb\xd9\x7a\x9a\xff\xfe\x23\xf0\xdb\x6c\xd0\x92\x49\xc2\x6f\x19\xcb\xd0\xfe\x64\xe1\x00\x8e\x93\xa9\xe3\x87\xd4\x4d\x1d\x83\x68\x48\xa4\xc3\xd9\x40\xca\x3c\x36\x5a\x45\x47\xa9\xd6\x02\x90\x12\x01\xd2\x66\x6b\x98\x74\xbd\xde\xce\x30\xc9\xee\x00\x99\x54\xd3\xcf\xeb\x67\xcf\x52\x5d\xd7\x1a\x76\x95\xbe\x3e\xa2\x1c\x31\xcd\x66\x83\xb3\x4a\xd6\xd7\xe7\xba\x58\x75\xb4\x37\x38\xc5\x33\x2d\xe2\x6c\xe3\x4c\xa2\x8e\xb0\x06\xb8\xcd\xeb\xe7\x19\x4b\xa8\xe6\x91\xac\x91\x58\x5d\x13\xe9\xe2\x6b\xa6\xda\xa1\x21\x72\x9c\x28\x5b\x13\x89\xde\x53\x56\xff\x90\x1c\x82\x80\x59\x13\xe8\x46\x55\x36\x08\xe4\x81\x0f\x84\xcb\x9a\xed\xc8\x5c\x55\xdc\xba\x21\xc2\x95\xee\x30\x13\xd8\x47\x81\xfe\x2f\xb3\x21\x26\x86\x50\x59\x13\x79\xe0\x13\x7d\x0c\x66\x43\x42\x07\x66\x4e\x9c\xed\x08\x46\x55\xbb\x0d\x90\x45\x29\xf3\x88\x77\xc4\x22\x02\x5a\xcd\x7e\x81\x46\x79\xa6\xf7\x0b\xe3\xaf\x2a\xc7\x78\x79\xa8\x23\xff\x7b\x25\xf2\xe8\xec\x70\xc7\x95\xfe\xde\x11\x8c\xae\xa4\x67\xec\x7e\x4a\x91\x1d\x71\xad\xc4\xad\x9a\x3d\x60\xbd\xb8\xfc\x1d\x41\x8a\x4c\x3b\x38\x81\x44\x94\xa4\xd1\x47\xde\xf7\xfa\x53\x1f\xf4\x36\xf4\x7b\x98\x3d\xc1\x2c\x43\xfa\xe8\x70\x93\x25\x14\xe4\x04\x08\x51\xfd\xa9\x0f\x58\x0a\x17\x99\x5b\xc7\x21\xc1\x2c\xf2\x13\x39\xe2\xc3\x45\xee\xd6\xe1\x28\x4b\xd0\xc7\xd9\x11\x10\xc9\x5c\x83\xb3\x97\x08\x43\x0d\xeb\x3b\x32\x52\x60\xea\xc1\x09\x00\xa3\x2a\x23\x02\xf0\x8b\x12\x53\xbf\xcf\x5e\xbd\x3f\x8d\xcf\x1d\xe5\x7a\x9e\x78\xe6\xf8\xea\x0d\xcb\x8f\x9e\xb1\xbe\x14\x85\x91\x17\xbe\xca\x50\xd0\x1b\xfa\x4b\x76\xdb\xcf\xee\x4c\x04\xa0\x9c\xbd\xc1\x92\x94\xf4\x3d\xd6\x93\x66\x8c\xde\x31\x7e\xf5\xbf\x0f\xd8\x8a\x38\x1f\x88\x7c\x61\x4c\xc6\xec\x80\xdd\x95\xe8\xd4\x71\xb7\xa2\xfb\xc6\xec\x90\xcc\x88\x11\x39\x1d\x14\xe9\x12\x7d\xf9\xfe\x25\x17\x04\x02\x52\x22\x84\xe4\xf4\x4c\xf0\x0c\xea\x98\x1d\x87\x13\xf3\x9e\x4f\xe0\x21\x55\x66\xe2\x9d\x7d\x7a\x7b\x1c\xbf\xef\x6f\x1e\x01\xc0\x3e\xaa\xc4\x21\x9c\x1d\x71\x6d\x0c\xbd\x98\x80\x42\x4a\xf2\x08\xe9\xbe\xff\x55\x3f\xf0\xb6\x19\x5c\x31\x91\x65\x3e\x11\xe1\x72\x76\xdf\xdf\x34\x6e\x74\xdc\xa2\x98\x41\x7d\x76\xdf\xef\x64\xc5\x1d\xd2\xa0\xcc\x44\x1d\x18\x2f\x8c\x90\x98\x7d\x9f\xf5\xaf\xa2\x57\x20\xbc\x5c\xda\x4f\x37\x4c\x5c\xbc\x9c\x78\x3e\x7a\x46\x4c\xcc\x7e\xa3\xbf\xe4\xd6\xc8\x46\x9f\xca\x9f\x92\xa6\xce\xee\xcc\x87\xcc\xb4\x3f\x3e\x18\x76\xfe\x19\x30\xe6\xb1\xb3\x00\x54\x63\x58\xc2\xec\x0f\xcc\x73\x5a\x4c\xe4\x8e\xa0\xe7\xd8\x34\x68\x73\x64\xc5\xb2\x0b\xd6\x3f\x4e\xbe\x81\x79\xc9\x6c\x05\x38\xa8\x2a\xeb\x34\x92\xde\x07\x7a\x9a\x4d\x83\x6c\x2b\xe2\x36\xc0\xc6\x10\x2b\x6b\x5a\xa8\xb0\x2e\x36\x3e\x83\x58\x7e\x9e\xfd\xfd\xc4\x67\x43\xf9\xb7\x98\x0e\x03\xc5\x50\x86\x69\x90\x17\xe4\x07\x63\xd1\xfb\xc3\xfe\x21\x80\x40\x8e\x30\x76\x04\x86\xca\x70\xa8\x69\xce\x9c\xc8\xcc\x0c\xc6\x78\xf9\xb6\x78\xce\x7a\x86\x0c\x4c\x43\xca\x4d\xc6\x04\x4c\xa4\xb0\x4f\x72\x66\xb1\x0c\x62\xa1\x3c\x63\x00\xb5\x60\x50\xc0\x34\x67\x6e\x54\x01\x18\x98\x1b\xc3\x00\x26\x70\x9e\x02\x9d\xe7\x27\x92\xd7\x27\xb9\xb7\x20\x77\x7d\xa0\xb7\xfc\x44\x62\xfa\x5a\x35\xbf\xc0\x44\xa3\x43\xdc\xb4\x8a\xf5\xd7\x7c\x02\x7f\x91\xfe\xf1\xd3\x5a\xc7\x33\xcb\x21\x2b\x30\xb9\xfb\x34\x30\x27\x22\x66\x4d\xc3\x0d\x92\xb9\xde\xa7\x39\xb3\x22\xf3\xb6\x5e\x61\xd0\x65\xfb\xc8\x94\x41\x07\xfa\x69\x1d\x26\x5c\xb5\xdf\xbd\x3d\xb6\xdf\x17\xca\x59\xbf\x61\x7d\xc9\xdc\x0d\xcc\x2e\x88\x3e\x9d\xd9\x51\x7a\x35\xc3\x61\xa4\xf5\xb5\x73\x18\x11\xd7\x68\xda\x88\x78\x66\x7b\xb8\x05\x10\x7a\x75\xda\xb9\x05\x54\x59\xae\x00\x6f\x95\x88\xc4\x3a\x01\x55\x15\xe8\x6d\x3e\x0d\x36\x38\x59\x4a\x6d\x7a\xff\xb8\xbe\x08\x9f\x92\x87\x8f\x39\x73\xe3\xe1\x60\x87\xb9\x55\xe6\xca\x9a\x06\xe8\x46\x3a\x8c\x4f\x3b\xc2\x4d\x25\x10\xcf\x34\x44\x18\x94\xaa\x72\x18\xd0\x45\xaf\x60\x8e\x41\xfb\x69\xc1\x82\x2e\xfa\x3c\xcc\xb0\x36\xd1\x1f\x98\xa1\xae\x7b\xc8\x99\x5f\x9b\xd6\x13\xde\x01\xcc\x87\x3f\xed\xc6\xfa\x6a\xbd\xe0\xec\xc7\x5c\xf7\x13\xe0\x56\x21\x68\xfe\x71\x37\x26\x4e\xed\xb4\x07\xdf\x6b\x3e\xc0\x9f\x64\x34\x02\x32\x55\x08\xaa\xef\xf1\xf9\x63\x7f\x1f\xac\x27\xc7\x3f\xc0\x7f\xe8\xd9\x3a\x1d\xa6\x8a\x9e\xad\x73\x40\x18\xa2\x7b\xe9\x04\x26\x55\x2a\x7a\x3f\x80\x1e\x78\x98\x20\xad\x7e\x2a\x3f\xdf\x83\x1e\x78\x98\x0c\x20\x80\xd0\x1f\x75\x02\xc1\x2a\x95\x9f\xfa\x71\x98\xa8\x1c\x37\x0e\x69\xcf\x07\x3c\x6f\x99\xe9\x7e\x22\xf5\x7d\xa0\xc3\xea\x1c\xd0\x1f\xc9\x85\xcb\x81\xa8\x08\xd5\x34\x87\x0b\x4f\x7a\x1f\x80\xb3\x41\xfd\xcf\xde\xde\x9f\x8c\xeb\x23\x7b\x63\xac\x1c\xc0\x8e\x81\x9a\x7f\xa4\xbf\x4f\x45\x95\xd7\x0a\x9f\x05\x76\x1e\x2a\x68\x39\x94\x0d\x67\x3e\x64\xbe\x03\xcc\x47\x4a\xe3\x01\x1d\x74\xe1\xc9\x3b\x00\xf5\x2a\xdf\x4e\x64\xc6\xaf\xd2\xbd\x8e\x86\xfa\x79\x12\x23\x0d\x7e\x95\x3a\x15\x39\xee\xab\xf4\xa9\x9e\xe2\x5e\x0e\x96\x03\xcc\x46\x0a\xd2\x01\xad\x74\xa1\xba\x61\x20\x83\x41\x24\xb3\x1d\x30\x9c\x49\x32\x19\x88\x20\x26\xfc\xd2\x44\x72\xfb\x2a\x2d\xe7\x80\xa9\x8b\x68\xc8\x73\x0c\x38\x3a\x88\x38\x07\x16\x8b\x87\x2d\x72\xe1\x57\xe6\x16\x99\xc3\x99\x0f\x0f\xcf\x01\xe6\xc3\xe0\xa4\x89\x54\xf9\x55\x7a\x4e\xa0\x70\x55\x26\x09\x99\x03\x37\xa9\x2e\xe2\x83\x2a\x5b\x6e\x74\x63\xe2\x7d\x11\x0b\x50\x08\xe4\xcc\x08\x44\xae\xda\xb5\xfe\x73\xa3\x5c\xf5\x63\xbc\x5a\x7f\xe8\x19\xe4\x77\x37\x96\xf7\x9f\xdf\x03\x44\x43\xde\x8e\x03\xe1\x9c\x72\xae\x18\xe7\x66\x16\xe4\xfd\x88\x5c\xf8\x55\xda\xce\xb1\x0f\x33\x91\xa4\x35\x90\xf2\x58\xee\x8d\xc8\x8c\x9f\x24\x69\x0d\x68\xb8\xab\xd6\x1b\x0e\xfe\x55\xeb\x09\x0c\x01\xf9\x3f\x22\x2b\x7e\x90\x83\x23\x10\xb8\x12\x61\x94\xe7\xbc\xbc\x3d\x3d\x27\x94\x37\x3e\x7b\x7d\x7a\x3e\xf3\x23\xe5\xd8\x3c\x37\xb1\x20\xbf\x42\xc0\x75\x55\x66\x22\x98\xc8\x80\x1f\xe4\x57\x38\x21\xec\x30\x73\xe2\x9c\x10\x76\x08\xc9\x3c\x91\x0f\x3f\x44\xd5\x0f\x55\x1e\x01\x99\xa7\x67\xc3\x8f\xaa\x1f\xc2\x0e\x53\xdf\xcf\x19\x0d\xe5\x85\xcf\x87\x1e\xa4\x47\x9a\xc0\xd2\x93\x67\xe2\x8c\x0b\xe5\x6c\x0f\x7a\x73\xb9\xab\x20\x51\x7e\x35\x1e\x86\x13\x29\x1f\x08\x2e\x35\x91\x37\xbf\x4a\xf9\x03\x54\xb0\x24\x7f\x96\x89\x9b\x21\xf1\xfd\xe7\x84\xdb\x11\xb1\xa0\x27\x52\xe4\x57\x86\xdd\xcc\x09\x98\x23\x82\x3c\x4d\x60\x88\x55\xa9\x77\x3c\x83\xbe\xbc\x13\x27\x98\x1f\xb1\xff\x27\x20\xc6\x92\x1c\x35\x91\x60\xbf\x12\xf9\x7f\x4e\xe0\xef\x11\x22\x6a\x4e\x08\x6f\xd2\x07\x01\x80\x2c\x11\x67\x7a\x3a\xfe\x58\xd4\xfc\x21\x48\x93\xb0\xd3\xd3\xd3\xf3\xcb\x43\x71\x56\x1f\x1f\xfb\x0b\x74\x05\x79\x28\xce\x7a\xf8\x81\xd4\x3c\x9e\x78\x5f\x4e\x84\xb3\xfa\xfc\xf3\xb9\x79\x7d\xec\x2f\x6e\x96\x12\xfe\x67\xbb\xe1\x8d\xc4\xf9\xef\xde\x1f\xbe\x0f\xfe\x27\x97\x1f\xcf\xa7\x2f\xb7\xc3\x79\x84\xb1\x76\x89\xfe\x9c\x3f\x6a\x3d\x9d\x1f\xd6\xf8\x97\xc3\x65\x42\x32\xab\xda\x2c\x80\x23\x95\x9f\x21\xf2\xee\x37\xa9\x5d\xa6\x81\x18\xc9\x3c\xe7\xc0\x64\x93\x59\x4e\x48\x62\x55\x9b\x0b\xd7\x58\x79\xff\x01\x2e\x2d\x55\x6d\xae\xe1\x9d\x67\xfb\xd3\xeb\xe3\xe0\xa6\xd7\xc7\xc9\x3f\xd7\xd8\x46\xec\xee\x39\x81\xca\x2f\x07\xbe\x79\xae\xb1\x8d\x40\xdd\x13\x58\x6b\x41\x1e\x7b\xf3\x5c\x6b\x1b\x41\xb8\xe7\x04\x73\x94\xe7\xed\x74\xe6\xd8\xf4\x0c\xe2\xd1\xe6\x75\xe6\xd8\xf4\x8c\xc5\xd2\xe6\x45\xb0\x7b\xd5\x66\x85\x3b\x82\x6e\x52\x13\x2e\x57\x52\xa3\x4c\x20\x7a\xcb\x05\x10\x30\x6e\x4d\x6a\x94\x09\xf4\x53\xf9\x00\xce\xed\xed\xe9\x19\xf3\xc7\xc3\x7a\x22\xfc\x94\x29\xfd\xe7\x74\xe6\xcc\xc3\x79\x3a\x73\x16\x33\x40\x30\x96\x9c\xba\x26\x70\x4b\x99\x7e\x73\xce\x1b\xc4\xda\xf4\x8c\xf1\x50\x7d\x3f\xcf\xcd\xb7\x49\x6d\x30\x81\x6a\x1a\xb5\x59\xe0\x97\x25\x2f\xb0\xe9\xcc\x9d\xd7\xec\x09\x35\x1c\x71\xb5\xe6\x72\xe6\x4e\xe1\x66\xc1\x49\x5c\x6e\x61\x0b\x49\x14\xe5\xb5\xb8\x2e\xf8\xe6\xb1\x3d\xc0\x78\x24\xb9\x23\x03\x71\xae\x5d\x3f\xf5\xdf\x28\xd7\x33\xda\xe7\x61\x0c\xb8\xb9\x24\xbf\xb2\xe5\x87\x01\x0f\x53\xe0\x7e\x24\xe2\x81\xcf\x15\x41\x8f\xbc\xb9\xad\x88\xf6\x54\x1f\x98\xb7\x9c\xbb\x56\xf4\xf9\x36\x3e\x6f\x94\xeb\x7b\xcc\xf7\x4f\x7b\x98\x6f\xde\xf4\x56\xc2\x78\x79\x98\x2f\xa4\xac\x93\xb7\xd7\x3a\x92\x66\xd3\xcd\x73\x1d\x66\x9d\xe4\x30\xed\x10\x74\x72\x81\x5a\xc8\x3c\x22\xa7\x25\x80\x7f\x24\x79\x50\xaf\x72\xfa\xc3\x18\xe2\xb9\x00\x4e\x23\xb7\x23\xe0\xd3\x35\xdd\xf4\x16\x98\xa7\xfc\x8e\x96\x33\x43\xde\xfc\x16\x7c\xac\x74\xb3\x5f\xb8\xa9\x12\xa4\x7c\xae\xee\xfd\x65\x7f\x8e\xb0\xd8\x18\xd7\x38\x01\xe9\x11\xe4\xb7\xb4\xba\x7f\xcf\xf9\x04\xe8\x23\x81\xa8\xe6\xea\xf0\x97\x54\xfd\x1e\xb7\x4e\x66\xba\xac\xc2\xfd\x92\xe3\x39\xfc\xad\x31\x7e\x70\x2e\xf8\x86\xd6\x9f\x72\xac\x97\xe8\xcb\x30\x3f\xe4\x97\x6b\x80\xde\xf5\x3d\x7c\x47\x09\x6a\x3b\x17\xf8\xa5\x42\x2a\xd6\xc4\x7a\x91\x9f\x00\xa9\x23\x24\x8d\xc7\xf9\x13\xf9\x2b\xa0\x38\x42\x52\xff\x11\xea\x2e\xcf\xee\xb5\xd0\x1f\x0a\xbb\x6b\x7b\x7f\x38\x7e\xf0\x9b\xa4\xf7\x11\xdc\x4e\xb8\xf2\x09\x34\x8e\x90\x7e\xde\xc7\x7c\xff\x94\x83\xff\xd4\x3f\xdd\x5c\x16\x98\x13\x51\x02\xe6\xc2\x35\x55\x8e\xe4\x00\xeb\x68\xba\x09\x38\x5a\x47\x25\xf3\x05\x5a\x47\x93\xe4\x0f\xb8\x8e\x24\xb5\x8d\xe3\x6d\xc8\xf5\x11\x78\x1b\x41\x9e\x3d\x80\xc8\x68\x92\x94\xf7\x75\x0e\x0b\x19\x68\x36\xfc\x36\x25\x09\x3b\x62\xa1\x2c\x34\x00\x2c\x6c\x92\x84\xf7\xe5\xed\xab\xbe\x1b\xe5\xaa\x0f\x9b\x95\xcc\x78\xe3\x5a\x2b\xf7\x9b\x8d\x6b\xad\x7c\xdb\x77\xc0\x62\xf2\x26\x03\x58\x8d\x26\x49\x72\x47\xcc\x1f\x99\xdd\x86\x0d\x40\x0e\xe2\x3b\x7b\xfd\x6c\x2f\x43\x92\xd3\xfb\x19\x0e\xbc\x24\xce\x0d\xb5\x98\x7c\x6c\x36\x6e\x96\x55\xdf\x3b\x33\x20\x33\xdb\x05\xeb\xa3\xf9\x84\xe1\x97\x58\xee\x73\x17\xaf\xaf\xf2\x19\xf3\xc3\x9b\x12\x00\x2e\x82\x7c\x5b\x1c\xe0\x42\x6a\xb0\x5d\xb1\x5e\xbc\x59\x02\xff\x30\x49\x0d\xb6\x9b\x7f\xcf\xfe\x35\xff\x9e\xf3\xd5\xb0\xbe\xaa\xcf\x99\x0b\x99\x27\x20\x32\x5a\xfc\xa9\x0f\xc4\xab\xfe\x76\x6c\x0e\xf5\xaf\x27\x78\x30\x73\x7c\xfd\xb4\x2f\x87\x97\xdd\x7d\xfc\xec\x2f\x62\x5d\xaa\xfa\x07\x66\x23\xab\xeb\x36\xb8\x3c\x93\x19\x3b\x2a\x06\xf1\x88\xe6\x46\xae\x12\x39\x7e\x6c\xdc\x34\x09\xc1\x3e\x81\x9a\x11\xe4\x08\x02\x90\xc5\xd4\x54\x3f\xb2\x90\xc8\x9b\x63\x8f\x1b\x2e\xd6\x7a\x7e\xf0\x3e\xeb\x9f\xde\x1e\xfb\x0b\x1b\x82\x3c\xdb\x1d\xa2\x51\xfe\x1b\x1b\x36\x01\x79\x64\x38\x0c\x87\x7c\x7f\xf7\xf4\xfe\xb0\x3e\xa0\xbb\xcb\x63\x03\x40\x1b\x8d\x40\x30\x73\x6f\xaf\x8f\xfd\x47\xc8\xaa\xbc\xd9\x01\xa5\x11\x64\x13\x74\xb0\x0c\xb9\xb3\x6f\xe0\x96\xca\x85\x03\x40\x8d\x8d\xa8\x78\x73\x43\xcd\xd5\x34\xbe\xd7\x87\x9c\xf3\x0d\x10\x53\xb9\x7c\x00\x30\x23\xc8\xe5\xc3\x01\x33\x9a\xc6\x8f\x9b\xa9\x5c\x40\x36\xf8\x8d\xfc\xe9\x37\xf8\x8d\x5c\x42\xee\x0b\xeb\xdd\xf4\x9c\x50\x9e\xf9\x9c\x51\x1e\xf9\x8c\xf1\xf0\x30\x03\x0a\x46\x90\x23\xc6\x0d\x35\x97\xd4\xa2\x77\xc0\x78\xc9\x4f\x6e\x04\xbb\xb4\xa8\xef\xb1\xfe\x14\x76\xee\x73\x13\x0d\x4c\xad\x39\x81\x83\xd1\x88\x34\x37\x6f\x24\x48\x93\x23\xc7\x0d\xfe\x23\x7e\x73\x47\x6f\x9f\xf5\x45\xf4\x9f\xfc\xe2\x46\x3c\xbc\x3c\xa2\x81\xab\xd1\x88\x30\x32\x1d\x57\x83\xb0\x53\xf3\x86\xf0\x43\x5c\xa9\x79\x03\x03\x9e\x10\x09\x13\xc8\x19\x2d\x5f\xe9\x2f\x87\x0b\x70\x35\x92\xfc\xa5\x81\xab\xd1\x08\x02\x32\x6f\x64\x7d\xca\x94\xd4\x80\xa3\x11\x08\xb0\x30\xef\x8c\x08\x00\x5e\x1b\x6f\x20\xf5\x31\x1b\xe7\x04\xd4\x45\x13\xf1\x03\xeb\xa2\x89\xb8\x6f\xe8\xfc\x15\xa1\x70\x9f\x6b\x62\x22\x06\xfc\xbc\x6b\xc2\xfb\x9c\x7c\x30\x43\xc2\x20\xcc\xbb\x9d\xc9\xfe\x21\x1e\xa0\x5b\x10\x32\x7e\x02\xb9\x33\x35\x11\x43\xc3\xe4\x88\x98\xda\x83\x67\xb6\x8f\xc4\x85\x4c\xec\x38\x6f\xc4\xc4\x36\xde\x04\x6e\x67\x66\x4d\xcf\x18\x0f\x25\x99\x1b\x0e\x04\x59\xc4\x81\x9b\x5b\x16\x31\x40\x6d\x45\xc0\xfa\x79\x23\xfa\x4d\x1e\xe5\x0e\x5a\x29\x03\x3b\xe0\x25\x83\x0c\xd4\x37\xdc\x9b\x89\x5e\x3f\x6f\xc4\x83\xc8\x80\x7a\x23\x84\xad\x89\x58\x61\x90\x93\x81\x1a\x30\x11\x49\x3a\xf8\x1b\x9b\x57\x06\xef\xfb\x39\xe3\x91\xcd\x0d\x48\x94\x49\x21\x1e\x00\xa2\x6c\xb2\xa1\x3d\xc8\x9d\x20\x83\xf8\x03\x83\x3d\xa1\x00\xe6\x13\x06\x82\x3a\x3a\x9f\x51\xbf\xea\x83\x9a\x47\x3a\x78\xe0\x49\x36\xd9\x64\x1e\xd8\xbc\xa4\x83\x7f\xe0\x24\xad\x28\x11\x20\x30\x04\x8d\xdf\x21\x16\x1a\x25\xdf\x07\xf4\xca\xe4\x85\x13\xc0\x91\x4d\x81\xbd\x0f\x0c\xea\x84\x07\x98\x4f\x41\x8c\x0a\x37\xe7\x83\xa4\x04\x32\x30\x3f\xf0\x6d\x69\x45\xe5\x18\x1f\x0f\x47\xa0\x4c\x26\xe9\xfc\x1f\x80\x55\x49\xe7\xff\x20\x26\x4b\x3a\xfd\x07\xae\xc7\x44\x68\x9f\xc0\x6d\x0c\x04\x1c\x98\x8f\x1f\x56\x94\x1c\x1f\x18\x88\x65\xb0\x7e\x60\x00\x96\x01\xf9\x81\x01\x98\x08\xe7\xf3\xd9\x67\xbe\x99\xf5\x64\x3e\x30\xe8\x6a\x7d\x1f\x84\x1b\xe9\x30\x7d\x60\xd0\xfd\x59\xdf\x1b\xcc\x89\xcc\xf6\x81\x1a\x52\x9e\xfe\x0f\x6e\xb2\x74\xed\x5f\x80\x2c\x48\x8c\x2d\x59\x80\x0d\x08\xb4\xa9\x2e\x87\x0d\x60\x70\xc9\x02\x10\x40\xa0\x0d\x75\x5d\xc5\xdb\x4f\x7c\xc6\xfa\x25\xd6\xef\xf3\xff\xed\xbf\x85\x78\xfb\x40\x24\x81\xe5\x01\xf5\x04\x1c\x5f\x08\xa8\x0f\xcc\xb6\xb8\xae\x3a\x10\x8d\xc2\xfa\xe1\x00\xc1\xe8\x95\x75\x55\x84\x97\x44\xb6\x07\x1b\x22\x6d\xae\x0b\x21\xf5\x89\xe1\x2c\xeb\xf2\xf5\xca\x7a\x06\xfd\x75\xd6\x8f\x04\xa4\x8c\x65\x5c\xd7\xb9\xd9\x34\xa6\xba\x5e\x88\x82\x0f\xb4\xc1\x2e\x8f\x82\x27\x72\xf9\xba\x00\xb7\x4b\x9b\xeb\xba\x86\xf7\x57\xcf\x37\x9e\xfb\xf7\x7c\x84\x8b\xd6\x35\xff\xf3\xc6\x33\xeb\x87\x26\x86\x80\xdb\xeb\x82\x70\x41\xb5\xf7\xba\x00\x3b\xc8\x38\x91\x75\xc1\xc6\x46\x9b\xd8\xba\x36\xde\xef\x7f\x49\xdf\xb2\x10\x08\x9f\x9a\xb1\x73\x30\x98\x15\x75\xee\xf6\xc6\x38\x19\x60\x56\x45\x9d\x7d\x2a\xa2\x71\x38\x19\x47\x72\x08\x45\x8b\x0f\x67\x53\x46\xad\xac\x0b\x59\x1e\x8b\x16\xff\x19\xf8\x9e\xed\x01\xd6\x86\x61\x2c\xeb\x3a\xcc\x2e\x14\x2d\x3e\x98\x1d\xe1\xb8\x57\x80\x0e\x9c\x36\x92\x15\x60\x70\x2b\xdf\xcd\x61\x05\x48\x1a\xe5\x93\x14\x56\x80\xc1\x8c\x49\x26\x57\xc0\xc9\x4e\xf0\xee\x85\x58\xfa\xc4\xb8\x98\x15\xa2\x21\x5c\x88\xed\xc5\x81\x72\xd6\x1f\x27\xca\xf5\xfd\x8d\x67\x7e\x9f\x00\x83\x76\xb1\xfd\x54\x50\xce\xf6\x53\xfd\xf7\x5f\xa8\x1a\x4f\x6a\x28\xef\x7c\x5e\x28\x67\x7b\x19\xf3\xf5\x31\xdf\x15\xe0\xc0\xcd\x50\x9b\x15\xb0\x39\xa9\xc3\x5e\x08\xcf\x4f\x8c\xbd\x59\x08\xcf\x6f\xd4\xa9\xaf\x80\xc3\x9f\xde\x97\x2b\x40\x87\xcc\x60\x9c\x85\xf0\xfd\x40\x9d\xf2\x0a\xb8\x19\x31\x3a\x67\x21\x9e\x3f\x50\xa7\xbc\x42\x45\x7d\x95\xe3\xc1\xe1\x4f\x1d\xf7\x0a\xcd\x21\xe7\xd8\x3e\x6e\x3e\x74\xe0\x58\x01\x0e\x00\xd4\x09\xaf\xd0\xf1\x3d\xe9\x25\x20\x53\x3f\x53\xf8\x2d\x44\xdd\x37\xd3\x7a\x42\x27\x5c\xb5\x1e\x88\xba\xef\xea\x3f\xd2\x52\x51\x6d\xb9\x02\xd4\x1a\x66\x7a\xff\x41\x39\xeb\x3f\x37\x97\xc6\xe4\xa8\x2b\x0c\xcc\x6f\x66\x7f\xc0\x2c\xcc\xd8\xff\xe1\xe3\xd3\xf7\x88\x56\xe3\x66\x46\xdc\x7e\xa0\x1a\x72\x21\x70\x3f\x11\x0b\x7c\x21\x70\xbf\xd1\x01\x7f\x05\xa8\x8d\xa9\x16\x5c\x88\xd4\x0f\x54\xfb\xad\x30\x07\xa2\xbe\xf8\x3d\x6c\x66\x54\xfb\x2d\x84\xea\x07\xaa\xf9\x56\x58\x8e\xe9\xc7\xef\xa1\xe6\xa5\x9a\x6f\x05\x30\x97\xae\xf9\x5f\xde\x3e\xc7\x03\xe1\xa7\x8a\xfe\x5e\x8c\x40\xd6\xbf\xeb\xe9\x4f\x64\x7d\x50\xa3\x74\x3d\x43\x58\xaa\xa2\x3f\x08\x4b\x5d\xeb\x79\x7b\xfd\x1c\x2f\x6e\x3a\x44\x0c\x5f\x01\xfc\x89\x6a\xb6\x15\x9e\x88\x30\xb6\xaf\xbf\x11\x6a\x55\xe2\x05\xac\x08\x9b\x19\xa3\x98\x56\x04\xbf\x60\x06\xbe\x15\x2f\x04\xd5\xfd\x3c\x63\xfd\x3f\xb5\xd0\x42\x50\x7f\x67\xf2\xc5\x15\xa1\x26\xa5\x1a\x69\x21\xa8\x3f\x54\xd2\x37\x82\xfa\x3b\xbd\xd7\x16\xc2\xf2\x43\xfd\x0e\xe7\xe5\x81\xf5\x0c\x9b\x5a\x1e\x58\x4f\x1b\xf6\x8a\xd1\xc7\xcb\xfe\x44\xac\x2f\xf9\x69\x84\x9a\x95\x09\xf2\x56\x3c\x37\x8d\x4e\xef\xb0\x15\xa1\x66\xa5\xe6\x66\xc5\x08\xfe\xc0\xc3\x37\x46\x8c\x4f\xf5\x25\x0f\xcd\xe3\xfc\x24\x9f\x2f\xce\x27\xd4\xae\xc4\x11\x58\x1e\xc9\xdf\xd3\x9f\x0e\x97\x88\x78\x37\x46\x46\xad\x98\x41\x1c\xdc\x6c\x11\x92\x20\xe3\xdb\x56\x84\x24\x48\x14\x82\x15\xe1\xaf\xdf\x49\xfc\xb1\x78\x67\xd8\x39\x67\x56\xdc\x0c\xd1\x99\x15\x99\x01\x22\xfd\x03\xd5\x44\x2b\x02\xab\xa7\x8b\x58\xce\x4d\xa6\x13\x8d\x73\x45\x24\x9e\xa2\x9a\x68\x45\xa4\x8a\xa6\x1a\x67\x45\x67\x5e\x59\xe5\xe8\x8f\xc6\xd3\x0e\x31\x11\xad\x71\x45\x64\x1c\xa0\x1a\x66\x45\x04\xad\x11\xae\x71\xc5\x0e\x62\xe2\x66\x47\xf4\x7f\x22\x96\xf9\x42\xf4\x7f\x0f\x5a\x3c\x18\xc0\x18\xdf\xbf\x22\x22\x67\x89\x6c\xbe\x22\x98\x1f\x33\xec\xad\x08\xc9\x86\x92\xe5\x8a\xc0\xf1\x63\x48\xd6\x8a\x36\x10\x1b\xc9\xf6\x61\xf3\xa2\xa4\xb9\x80\x17\xd0\x89\x13\xb8\x22\x74\xc2\x54\xdb\xac\x38\xbc\x7e\x7e\x3f\x03\x82\x29\x39\x7e\xb8\x5a\x37\xcd\x2f\xbc\x93\x88\x6f\xbe\xe2\xac\x88\xae\xe4\x78\x60\xe3\x22\xa2\xc0\x8a\x13\xb1\x9b\x55\xdf\x1b\xca\x39\x1f\xf0\x66\xea\x3f\xed\x3d\x78\x9f\xdf\xc3\xbb\xa9\xab\x7e\xe8\x90\xbb\xea\xdb\x58\x7f\x6d\x26\xc7\x43\xd5\xf7\x87\xd9\xf5\xa0\xcd\xe4\xcc\x4e\xcc\x60\xa3\xfd\xca\xf1\x6c\xb4\x4f\xe1\x03\x40\x01\x81\x6a\x96\x05\xa4\x80\x1e\x44\xbf\x37\x0e\x67\x31\x1b\xdc\x0c\xbb\x98\xcb\x8d\xf5\x17\x3d\xdf\xde\x7f\x8e\xf7\x06\xbd\x19\xeb\x07\x33\x24\x0c\xdb\x8a\x48\x89\xdb\x44\x6f\x88\x04\xea\x62\x4e\x4f\xc1\xfb\xa4\x07\xa4\xba\x69\x62\x96\x0f\xda\x17\x7d\x3f\xa0\x17\x1e\x86\x00\x0f\x08\xd4\x04\xac\x04\xe6\xcb\x9b\xfd\x4a\x17\x02\x4e\x49\x7f\x09\x71\x75\xfd\xbb\x99\xac\x04\x1b\x55\xe7\xcd\x24\x41\x6d\x2c\xc9\x18\xf8\x02\x9d\x6a\xf1\x95\xe0\xa0\x40\xef\xb3\x95\x82\xd7\xc7\xf6\xc1\x6c\xe9\x7d\xb6\x52\x3c\xf4\x45\x07\x93\xe5\x88\x02\x92\xa4\x1d\x41\xa0\x73\x7d\x93\x0b\x6b\x64\x8e\x29\xa3\x7d\x32\xe3\x04\x6f\xcc\xde\xf5\x8c\x78\x5b\xee\xcf\x84\x9c\x7b\xbc\x09\xaf\x84\xf8\xa2\x4e\x7a\x48\xf0\xb6\xec\x5c\xff\x04\x1b\x54\xe7\xfa\xa6\xe2\xef\xb3\x3f\xce\xaf\xc8\x8f\x1c\x05\xa0\x73\xbd\x81\x02\xd0\x69\x93\x5e\x80\x01\x08\x4c\x72\xb6\x12\xd0\x46\x3a\xe9\x21\x81\x9f\xb5\xc2\xf6\x5a\xc0\xf7\x6c\x0f\x59\x78\x78\x33\x5f\xa9\x61\xfd\xb4\x3e\xf0\xc6\xa4\x83\xcc\x02\x50\x40\xe0\xcd\x79\xa5\x9e\xf0\x3e\xfb\x0b\x1b\x16\xa1\xba\x17\x80\x02\x12\xe3\x05\x57\x72\x7e\x46\xfa\x47\x68\x7f\x38\x37\xe9\x3f\x1c\x2e\xc9\x25\x3b\x12\x63\x32\x2c\xb6\x06\x7b\x98\x55\xea\xbc\xd9\x24\xe8\xa0\x99\xbe\x6c\x25\x78\x43\x31\xda\x70\x25\xe8\xa0\x19\x6e\xbf\xd2\x61\x5e\x9d\x40\x1a\x2b\x4d\x2c\x6e\x63\xfd\x13\x9d\xe7\xc9\xee\xd1\xfc\x0c\x31\x5c\x09\x06\xae\x26\x62\x47\xf8\x3e\x0d\x90\xcb\x43\xe8\x93\x88\x67\x7b\x7d\x9c\x0c\x30\x0b\x1a\xf8\x56\xba\x31\xd9\x3c\xe9\xd3\x3d\x10\x01\xcd\xf1\xe3\xa6\x66\x81\xfd\xb9\x11\x70\xad\xcd\x02\x83\xb7\xae\xbd\x09\x3a\x60\x0b\x7a\xc6\x62\x89\x38\x1f\xaf\x8f\xf5\xc3\xa0\xad\x6b\x6d\xbe\x2a\x62\xa4\x23\x9f\x1b\xde\x57\xb9\xd7\xd7\xf9\x6c\x28\xd7\x33\xfa\x4f\xe2\xc9\x17\x0e\x1f\x12\x7b\xc6\xcd\x8d\x40\x0f\x2b\x07\xef\xaf\xca\xcf\xe6\x31\x32\xd7\x0c\x1d\xae\x51\x6d\x80\x58\xfd\xc0\xa4\x5c\x2b\xc3\xc6\xc4\x04\x5b\x2b\xc3\x9b\x88\x51\x99\x2b\x27\x6f\x8f\xdf\x27\xaf\xaf\xf0\xd9\xeb\xd3\xfb\x37\xe2\xb6\xd9\x3e\x5c\x25\x8d\x92\x73\xce\x5e\x1f\xe7\x03\xae\x92\x16\xf5\x8c\xf9\x21\x7d\x7a\x70\x3f\xe3\x28\x57\x06\xf3\x60\xe0\xe4\xf2\xe8\xfd\xac\xf9\xc3\x4d\x4c\x37\xcd\x5c\x10\x47\xae\xf9\x41\x9e\x2e\xdd\xdc\x33\x6c\x50\xba\x39\x23\x40\x3f\x19\xe9\x2f\x7b\x16\x14\x1e\xfe\xb9\x9d\xf5\x65\xf0\xe4\xca\xb0\x39\x31\xd6\x72\xe5\x86\x58\x72\xd2\x67\xf6\x04\x4c\x97\xca\x6f\xbc\xaf\xef\xcf\xe1\x48\x1d\xfd\x42\x04\x7f\xd0\xcd\xd5\x43\xf8\x75\xf3\xcd\x1d\xeb\xcb\x9b\x58\xf6\xfc\x29\xdc\x8f\x19\xae\xd8\x8c\xaf\x5c\xd9\x22\x22\xe1\x39\x1e\xe0\x86\x98\xda\x03\x73\xd1\xcd\x36\x83\x7f\x10\x8e\x7a\x65\x4f\xb6\xc2\x9b\x14\x82\xfc\x13\x03\x34\x57\xf6\x7c\xfb\x14\x66\x10\xb7\x1f\x98\xa2\x6a\xe5\xe1\xef\xb3\x7f\x03\xf4\xc1\xfd\x9f\x3d\x23\x69\xd0\x33\xd6\x9b\xc2\x58\x9e\x5e\x1f\xfb\xb3\xb0\xde\xa2\x5f\xdc\xcc\x8c\xcc\x3b\x2f\xac\xb7\xe8\x19\x71\x27\x46\xe6\xed\xd1\xfa\xc4\x9c\x5e\xd9\x73\x2d\x51\x78\x42\xb4\x7e\xa2\xf7\xdc\xca\x08\xcb\xa4\xb7\xdc\xca\x47\x18\xe9\x45\xf3\x85\x9b\x18\xbd\xe1\x16\xe2\xf9\x7b\xd1\x7c\x79\xe2\x3c\xde\xb4\xb3\x67\x4c\x12\x3d\x3e\xfe\x3d\xfb\x0f\x7e\xa3\x9b\x2f\x42\xf8\x3b\xd5\xa6\x2b\x3f\xc8\xdb\xf3\xf3\x8c\x6c\x41\x9f\x59\x62\x95\x2b\xe2\xfd\xca\x67\xa4\x4a\xe2\x7e\x2d\xe7\xa6\xd7\x19\x47\xb3\xca\xe5\xe3\xfd\xd3\xe1\x52\x3c\xab\xf8\x4f\xe5\x98\x5c\x1e\x1e\xc5\x93\x35\xaa\x72\x18\xb8\x75\xcd\x2d\xc1\xbf\xd7\xfb\xf8\x9e\x87\x4b\x09\x87\x38\xa4\x53\x2c\xd0\xb1\x1b\x0f\x97\x02\xdc\x11\xe9\x14\x0b\xae\x8d\xc6\xc3\xa6\xe0\x5a\xc8\x38\x84\xe5\xb0\x00\x44\xfc\x5e\xc5\x93\x0e\x93\x39\x94\xe4\xdf\xeb\x19\xdf\x57\xbd\x8f\xfe\x54\x95\x63\xb2\xa9\xe6\x28\x70\x8d\x64\x38\xe9\x2a\x90\x84\x18\x4f\xba\x0a\xd4\x4c\xc6\xc3\xab\x94\x8a\x67\xce\x07\x74\xbe\x0c\x30\x5d\xa5\x7a\xca\x71\x8e\x07\x01\xa7\x74\x3d\x5c\xc5\x99\x95\xfa\xd7\xb0\xd8\x2a\x3f\x92\x48\x97\x5a\xaf\x38\xb3\xa1\xa4\x55\xc0\x6c\xa4\xe6\x2b\xce\x6c\x34\xbf\xb0\x19\x99\xbe\xef\x9e\xf3\x93\xf5\xf7\x37\xaf\x31\x9f\x31\x3f\xbc\xc9\x15\xc3\x78\x55\xff\x61\x36\x9d\xae\xc5\x0b\x58\x05\xc9\x78\xf8\x15\x4f\xed\x44\xc9\xa8\x40\x58\x21\x8e\xdb\x02\x98\x41\x62\x10\xec\x2a\x6f\xe6\x27\xf6\x07\xae\xdd\xc6\xc3\xb0\x38\x33\xe2\x61\x0e\x78\x83\x44\x5c\x87\x55\xde\xb4\x85\x5c\xcf\x31\x80\x9e\xa1\xef\xc1\x4c\xc8\x3c\xca\xc4\x7a\xf1\xf0\x2b\xe7\x26\xd6\xa5\xd6\x2b\xd3\xdb\x67\x7d\x87\x19\xf5\xaa\xcd\x08\x35\x91\xf1\xf0\x28\x87\x19\xf5\xca\xc3\xb8\x80\xf9\x18\x99\x77\x81\x6b\xb5\xd4\x66\x40\x48\x08\x46\x66\x53\x8e\xb0\xd3\xe9\x6d\xb8\x00\x79\xd0\xa5\x96\x2b\x0e\x16\x22\xfa\x84\x8d\x4c\xc2\x45\x71\xe1\x46\xf3\x8b\x9b\x91\xd4\x6e\x05\x71\x6b\xc6\xc3\x11\x18\x09\x41\xc2\x45\xc1\xcd\x88\xde\x7f\x0b\x98\x09\xf9\xe2\x61\x5f\x2f\x64\x46\xe0\x4d\x1b\x98\x09\x99\x41\xc9\xab\x82\x7f\x48\x6d\x5c\x03\xe6\x9f\xcc\xb8\x9e\xfd\x9d\x2f\xce\x57\x8d\x98\x6f\x4a\xf2\x15\x41\xb1\x3a\xbc\x6a\x34\x94\x57\x3e\x0f\x7c\xff\xad\x47\x4d\x40\x47\x21\x73\xad\x29\xa2\x9c\xf5\xa5\x8a\xf2\xce\xe7\x43\xdf\x52\x03\xd7\x04\x04\x13\xf2\xb7\x9a\x0c\xe5\xaa\xdf\xdb\x63\xfb\xc8\x07\xc7\x28\xfd\x55\x13\xf0\x56\xc8\xdf\x6a\xc2\xfa\x70\xbf\x55\xd8\x00\x75\x38\xd5\xdc\x50\x1f\xdb\x83\x30\xa4\xc3\xaa\xc2\x46\xad\xc3\xa9\x66\xd4\x47\xfe\x51\x0b\xd6\x93\xfb\xa3\x42\xf3\xa3\xc3\xa9\x16\xac\x07\xe9\xbd\x42\x13\x24\xfe\x5d\xeb\xd9\xcf\x74\x70\x59\x15\x71\x65\xe2\x5f\xb5\x21\x6b\x07\x0f\xeb\x0a\xfe\x21\x7e\x56\x8f\xb0\xd2\x9b\xfa\xdf\x31\xdf\xe1\x2f\x90\x2e\xab\xf6\x43\x0c\x52\x63\x54\xf3\x8f\xf5\x7c\x98\x89\xd4\x06\x15\x6a\x1c\x31\xab\x6a\x13\xef\xeb\x19\x9d\x27\x33\xaa\x47\x72\xc9\x8c\x30\x5f\xc0\x8a\xe8\xba\xd6\x03\x2b\x22\x88\x99\x54\x00\x14\x35\x11\x2b\x98\x87\x98\x49\x3d\x92\x4e\x66\x84\xfa\xaa\xf0\x9e\x11\x33\xa8\xf3\x6c\x4e\x1a\xbc\x17\xf0\x20\x32\x5d\xa9\x57\x05\x08\x91\xae\xe5\x15\x89\x22\x7f\x88\x7f\xd5\xf3\xbe\xc6\x8b\x5c\xa7\x3f\xc4\x0d\xd4\x22\x06\x8d\xad\x8a\x34\x37\x17\x25\x83\xba\x2f\xbc\xcf\xf2\x8d\xc5\xa1\x64\x05\xfc\x89\x48\x3f\xf2\x05\x00\x8a\x7c\x51\xf2\xaf\x1b\x10\x3b\x22\xbe\x73\x73\x8a\x3f\xf3\x7b\x83\x18\x78\xd8\x03\xb0\x22\xfe\xcc\x2f\xd4\x22\x32\xa8\xd6\x73\x73\x8a\x3f\xe3\x41\x6a\x06\xe9\xc4\x2b\x72\xa8\xaa\xff\x0d\x68\x44\x0c\xea\x5a\xed\x42\x4e\x18\x0a\x0f\x0d\xd9\xa5\xd5\xdf\x76\x61\xfd\xa9\xd6\x01\xc6\x45\xbc\x28\xf9\x00\xe4\x42\x49\x8f\x57\x43\xc6\xac\x8b\xeb\xdf\x42\xc2\x73\xe4\x33\xe8\x83\xf4\xd0\x90\x45\xfa\xa2\x4e\xba\x45\x6c\x56\x32\xe3\x16\xd1\x1f\x0a\x17\x40\xbd\x50\x9e\xd9\x05\xd4\x8b\x48\xd7\xf5\xd5\x1c\x93\xe8\xd2\x33\xd6\x9f\x92\x7e\x4b\x58\xff\xa4\xef\xb1\xfe\x64\xf6\x0d\xcc\x44\x92\x79\x43\x52\x40\x22\x06\xac\x96\xf1\x3e\xe9\xab\xe5\x81\x67\xb6\x97\x27\xbe\x67\xff\x01\x6a\x24\x49\xb5\x39\xb3\xe0\xe1\xd0\x90\xf9\xef\x22\xf3\x69\x05\xeb\x4f\xfa\x6e\x48\x53\xc9\x94\x89\xab\x55\xf4\x5f\xfd\x39\xc2\x8c\x52\xa7\xae\x56\x07\x9e\xd9\x1f\xe4\xad\x66\xc4\xfb\x6a\x10\x56\xa4\x26\x07\x20\x46\xbe\x78\x33\x69\x60\x36\x5d\xf3\xe1\xcc\x86\x37\x93\xd6\xbd\x7d\xb6\xd7\x41\x1f\x1a\x7f\xf7\xfe\xb3\x7e\xdc\x94\x24\xdc\x35\x03\x3d\x50\xad\xdd\x90\x1e\x90\xae\xe4\xab\x1d\xe1\x45\x39\x48\x57\x33\xcf\x12\xa4\xef\x31\xdf\xa2\x9f\xe1\xf5\xb3\xfd\x01\xfa\xa1\x9a\xba\x81\xdf\x74\xf5\x67\x62\x3e\x79\x18\x03\xb1\x43\x09\x3b\x57\x3b\xfc\x26\x32\xc8\x79\xb5\x79\xa3\x9c\xef\x2f\xcc\x07\x6f\x46\x0d\x79\x67\x03\xf7\x7b\x83\x30\x22\x35\x6b\x5b\x37\xca\xf5\x3d\xe6\x87\x87\x13\x10\x39\x62\x10\xbd\x1d\x7e\x11\x65\x26\x68\xdb\xc7\xcf\xef\x37\xd6\x97\xfb\xbf\x6d\xcc\xbf\xe8\x67\x2f\x94\x73\x3e\x91\xb1\x36\xf0\xe6\xd8\x6e\x8c\x8f\x87\x4d\xbb\xbd\x3d\xae\xff\xed\xf5\xfd\x25\x1b\xf0\x6a\x60\x5e\x41\xc4\x8e\xac\x32\x84\x87\x58\xed\x48\x36\x31\x88\xf8\x9f\xb3\xf9\xbb\xe9\x7d\x2c\x16\x25\xef\x06\xa0\xb5\x6e\x7a\x1f\x83\xe7\x4d\x01\xf0\x21\x5d\x92\x1f\xe0\x43\x22\xd3\x82\x2d\xc0\x87\x74\x39\x08\x00\x3e\x24\xcb\xa0\xd6\xa1\xe3\x95\xe4\xd7\x83\xd7\x5f\xf9\x7c\x26\x57\x6a\xad\x1e\x7c\x32\xbe\xc5\xec\xc8\x4f\xca\x08\xe5\xd5\x23\x88\x99\x92\x4e\x07\x33\x93\x0d\xa5\x03\x4f\x4d\x6a\x9f\x8e\xdc\xb7\xcc\x32\xb5\x00\x3f\x92\xb5\x39\x3b\x12\xe6\x33\xcd\xd4\xea\x2e\x59\x51\xd2\xe9\xce\xbc\x28\xe9\xf4\xc3\xbc\xba\xd4\x38\x80\x2b\x89\xc4\xb7\x5a\x80\x23\xc9\x8c\x23\x59\x80\x23\x89\x8c\x78\x5e\x80\x23\xc9\x4c\x1c\xba\x7a\x8e\x28\x67\x7f\x33\xc6\xd7\xf4\x8c\xf5\x22\xf1\xf5\x8c\xf9\x22\x33\xed\x19\xcc\x9f\xc4\x07\xf8\x92\x4c\xb8\x8a\x05\xf8\x92\x2e\x35\x0b\xe0\x4b\x32\xe1\x2a\x16\xe0\x4b\x22\x73\x3f\x2d\xc0\x97\x64\x19\x24\x7b\xc1\x61\xda\x55\x8e\xc3\x8e\x92\x5a\x3f\xcc\xb1\x4b\xcd\xd1\x2b\xfa\xcb\x9b\x09\xe0\x4e\xba\x24\xd1\x5e\xb1\xfe\x3c\xbc\x00\x57\x12\x83\xca\x9b\x7f\xcf\xf1\x80\x99\x32\x6e\x62\xf5\x76\x24\x65\x13\x7d\x22\x73\x2a\x33\x3e\xad\xde\x31\x5e\xad\xdf\xb9\x09\x46\xe6\x74\x5a\xdd\x31\xe8\xb4\x9e\x48\xa5\x1a\x44\xaf\x16\x50\xce\xf9\x03\xb3\x0c\xa2\x57\xc3\xfc\xf0\x26\xd7\x0d\xf3\x41\xe6\xd8\x91\xc2\x37\x88\x7e\x0d\xf4\xa8\xf9\x30\xd0\xa3\xe8\x17\xb9\xb6\x88\x68\xb1\x3a\x52\xd6\x07\xd1\xe7\x11\xee\x62\xd0\x78\x06\xe8\x4f\xed\x0f\xcc\x8f\xc6\x33\x30\xbf\xbc\xf9\x75\xe4\x63\x0d\xa2\xc7\x89\xf5\x24\x3f\xe8\x13\xfb\x8d\xfb\xbf\x2f\xaf\x8f\xfd\x5f\x5e\xae\x67\xaf\x8f\xfd\xdf\x15\x30\x7d\xec\xdf\xb9\xf9\xc5\x20\xfa\x70\x61\xcc\xf4\xbe\xa1\x9c\xfd\x71\xe6\x28\x7a\x38\x37\x39\x93\xf0\x00\x04\x92\x1c\xc4\x7f\x00\x1f\x26\xe1\xa1\x3b\xbf\x13\xbd\x1c\xe1\x2c\x13\x4c\x6f\x01\x71\x24\x32\x8e\x64\x01\x51\x24\x13\xf1\x62\xd9\xd5\x4e\x7d\x59\xe5\x1d\xe5\x95\xcf\x37\x70\x07\x13\x9f\xb1\x7e\x9c\x3f\x0b\x17\xca\xd9\x5e\xc0\xfa\x71\x3e\x81\x38\x92\x03\x85\x23\x20\x8e\x44\xe6\x23\x5a\x40\x1c\xc9\x3a\xcc\x2c\x2c\x3c\xb3\x3f\xe7\x26\x68\xe2\x3f\x16\x31\x3e\x1e\x1e\x16\xb1\x1e\x9c\x5f\x8b\x1b\xe5\xec\x1f\x52\x7d\x07\xfb\x4b\x9c\xcb\xb2\x23\xb9\x65\x1d\x1e\x96\x30\x19\x94\x84\x2d\x63\xb1\x35\x99\x60\x1e\x32\x00\x5a\xc1\x60\x29\xa9\x1a\x52\x2e\x33\x43\xd1\xb2\x7a\x16\xf7\x67\x32\x6a\x42\x39\xdb\x03\x4c\xd9\xcf\x64\x20\xed\x5e\xa0\xa4\x65\x0d\xe9\xb0\x35\x39\x60\x1e\xcc\xdd\xb3\x00\x1f\x12\x99\xac\x67\x01\x3e\x24\x13\x3e\x63\x59\x3b\x8b\xf9\xfb\xfc\xa0\x9c\xed\x01\xaa\xec\xf7\x19\xd9\xff\x79\x38\x01\x2e\x24\x46\x4d\x6e\xf7\xef\xd9\x1f\x30\x93\xa8\xf9\x3b\xcc\x24\xcb\x21\xc0\x0c\xd9\xbb\x35\x9f\x47\x32\x33\x1d\x3e\x80\x1b\xc9\xcc\xef\xb8\xec\x48\x5e\xa6\xc3\xc3\x0c\xa9\xcd\xa3\xea\x5b\x28\x27\x31\x78\xfe\xf0\xa8\xef\x6f\xd4\xc7\xfe\x0f\xcc\x57\xd4\x33\xe6\x97\x37\x01\x1b\x58\x6f\x1e\xb6\x86\x9b\xa1\x0e\x57\x9b\x67\xfd\x19\x54\xb6\x6c\x62\xbd\xb9\x59\x0d\xc0\x81\x0c\x22\x5b\x36\x41\xdc\x1a\xdf\xf2\xf6\x59\xdf\xb9\xe9\x19\x83\xc6\x16\xe0\x46\x62\xd4\xfc\x43\x72\x63\x52\xc7\x65\x48\x70\x1a\x28\xa9\x1a\x80\x37\x03\x0f\x2b\x83\x64\xa6\xc3\xd8\x36\xc6\xaf\xf9\xdb\x0f\x70\x3c\x59\xdf\x7d\x79\xf2\x74\x3e\x07\x94\xb3\xfe\x1b\x29\xed\x35\xbf\xc8\x17\xf8\x33\xdf\x37\xe8\x89\x37\x73\x83\x70\xc5\xc4\x8e\x0b\x70\x23\x31\x8a\x79\x3c\x3e\x9e\x8f\x3e\x06\x98\x13\x23\xb4\xd7\xb8\xce\x7a\x6b\xbf\x00\x0e\x24\x32\x62\x7a\x01\x0e\x24\xcb\xa1\x03\x70\x20\x91\x11\xd3\x6b\x1c\x66\x62\xa2\xd7\x11\x90\x52\x93\x92\xf8\x38\xc2\x95\xc5\xa0\xfa\xb1\xbe\x64\x7e\x23\x7a\x7b\xfc\x3e\xa2\x3d\x0a\x07\x23\x9e\xf5\x17\x7d\x0d\xdc\x1c\x99\x0a\x72\x8d\x08\x2c\xd0\xa8\xef\x91\xac\x9f\xf4\x30\x9c\x39\x51\x58\x18\x09\xe3\xe7\x61\x3e\x90\x90\x54\xc2\xc0\x28\x5e\xce\xf1\x42\x78\x91\x30\x30\x9c\xff\xf0\x30\x1d\x05\xeb\x5f\xf4\xfe\x59\x9f\x9f\xf1\x54\xef\x2f\xdf\xaf\x98\x3f\xd2\xdf\x80\x70\x22\x07\x17\x20\x8a\x64\x39\xb0\x8c\x8a\xf5\xd3\x7c\x3b\x3f\xa2\x70\x06\x04\x11\x93\x81\x7c\x34\xec\x47\x0a\x67\xa3\x83\x1f\x54\x3d\xa3\xff\x3c\x6c\x47\xc7\x7c\x6b\xbc\xc8\xfb\x2e\x61\x61\x18\xe6\x9f\x87\xcb\x30\x8c\x87\xc2\xe4\x30\x1f\x8f\xde\xc7\x78\x34\x3e\x64\xf2\xd4\xe1\x3e\x7c\xbf\xeb\xfd\x79\xf8\x33\xf3\x82\x2f\x20\x7e\x64\xed\x07\x20\x7e\x18\x13\x86\xad\x31\xd1\xdf\xfe\x97\x08\xfd\x05\x78\x8f\x4c\xf4\xd5\x05\x78\x0f\x63\x4a\x84\x35\x16\x26\x53\x8d\x2d\x40\xc1\x92\xf9\x0f\xa8\x91\x98\x55\x70\x8d\x73\xcd\x33\x46\xe8\xae\x71\x98\x45\x64\x04\xf6\x1a\x1b\xd8\xb1\x64\x6e\x80\xfb\xc8\x92\x34\xc6\xc6\xe6\xa4\xa4\x34\x36\x16\x57\xdf\x3b\x73\xa0\xce\x7c\xdc\x67\x71\x93\x36\x13\xae\x6d\x92\x2c\xc6\xed\xf5\xb1\x7f\x48\x07\x2a\xef\x1d\xc0\x83\x44\x46\x60\xaf\xf1\x60\xf2\x28\xf9\x0d\xe8\xa0\xe5\xad\x33\xa1\x16\xd2\x62\x03\xde\x23\x32\x3d\xcb\x02\xbc\x47\x96\x24\x32\x9d\x59\x50\x12\x98\x2e\x79\xfc\x7c\xef\xf5\x7d\xfd\x9d\x11\x8b\x4d\x1b\xc6\xc4\xe6\x66\x50\xd4\x9a\x67\x73\x47\x26\xb4\x5f\x13\x37\x27\x26\x37\x5c\xf3\xdc\x9c\x2c\xa9\xfe\x73\x73\x8a\x0c\x1a\x5c\x13\xe0\xa8\x49\xfd\xc5\xe6\x66\xf6\xc3\x35\xd3\x0d\xb4\x5d\xbd\xff\xa0\xfc\x9b\x3f\xc0\x75\x58\xa6\x70\x30\xcf\xcd\x29\xa6\x9f\xe7\x81\xf7\xf9\x7d\x9e\x80\xeb\x4d\x7c\x5e\x78\x9f\xe3\xc9\x5e\x3f\xbf\x07\x73\x61\xf2\x93\x05\xf8\x0d\x63\x10\xe3\x9a\xe7\xe6\x94\x99\xe3\x70\xcd\x32\x80\xf7\xcb\xf9\x38\xcc\x26\x26\xb5\xe7\xe8\xc1\x51\xcf\x1b\xe5\x1c\xcf\x11\x6e\xa2\x36\xd7\x84\x70\xc3\x24\x89\x6b\x22\x79\xa8\x84\x9b\xd9\xce\x7a\x64\x1e\x76\x13\x37\xa3\xa8\xfa\xba\xf7\x9f\xdf\x83\xb9\x48\x38\x99\x48\x2f\x2a\x61\x64\x1e\xe1\xc3\x08\xe3\xbb\xe6\x11\x3e\x22\x13\xa4\xac\x69\x98\x2f\x0a\x17\x13\x6a\xe6\xa8\xf1\x0c\x4f\xb8\xcc\xf6\x07\xd6\x8f\xcc\x64\x0e\xcc\x2f\x85\xa1\x39\xb1\x7e\x64\x2e\x73\xa2\x7f\x14\x86\x80\x70\x11\x99\x61\x65\x01\xe1\x22\x13\xae\x66\x4d\xa8\x99\x09\x57\xb3\x26\xf2\x0a\x33\xa8\x78\xcd\x85\xf5\x10\x7d\xe1\xa6\x42\x78\x99\x05\x04\x0b\xcb\xda\x0f\x0b\xeb\xa1\xf5\xc3\xcd\x84\x89\xf0\x16\x10\x25\x22\x11\x05\xd6\xbc\xb1\x3e\x14\x0e\xe6\x5d\x01\x9a\xcc\xfa\x21\x1c\x88\x3f\xcd\x1b\xc8\xc5\x41\xf5\x19\xca\xf5\x0c\x7a\xd5\x7a\x42\x73\x23\xe1\x62\x62\xff\x47\x0a\x0f\x40\x88\x30\xc5\xd5\x00\x21\x22\x13\x7e\x66\x01\x21\xc2\x14\x57\x03\xc4\x87\xc8\x3c\x2b\x6b\x85\x1b\x40\xcb\x89\xcf\x0f\xca\x59\x5f\x04\x2e\x33\x0f\x53\x20\x3a\xc4\x44\xe1\x09\x88\x0e\x46\x2c\xba\x05\x44\x87\x48\x34\xe3\x05\x44\x87\x1c\x79\xf8\x2f\x1c\xe6\x72\x58\x5a\x09\xeb\xcd\xc3\x7e\xa5\x81\xfa\xbe\xf9\x00\xc2\x43\x96\x70\xb4\xf2\xe1\x17\xc4\x42\x5b\x2b\x83\x3e\xca\x9f\x6c\x2e\x2b\x63\xf1\x35\x18\xdf\xfc\x54\x0b\xac\x82\xc5\xe3\xb5\x73\x61\x33\x13\x9b\x6b\xad\xe2\xdf\xeb\xfd\x1b\xcf\x9c\xdc\x02\x40\x6d\x1e\x0e\x80\x8b\x88\xcc\x33\xb2\x00\x17\x91\x99\xbf\x6f\x2d\xdf\xec\x94\x3c\xd6\xd9\xec\xc6\xa0\xb6\xb5\x6a\x45\x39\xdb\x3f\x92\x89\x11\xbb\x6b\x2d\x48\x26\x4c\x2d\xb2\x00\x3f\x11\x99\x5a\x64\xad\xe6\xed\x91\x18\x1a\x88\xc5\xf4\x0c\x62\xe1\x66\x5f\x0d\xc4\x62\x7a\x2e\xa8\x8f\xe3\x41\xca\x71\x49\x9a\xab\x1d\x66\x4a\xac\xab\xb5\x1a\x36\xa3\xc6\x8b\x9b\x8d\x24\xab\xe5\xcc\x83\x6a\x8b\x65\x20\x0e\x8d\x6f\xa0\xff\x5a\x5c\xe8\x8c\x25\xf9\xad\x31\x00\xbc\xcd\xfa\x07\xe6\x5f\xe3\x9d\x20\x16\xf5\x77\x02\x79\x5b\x9b\xc5\x99\x09\x99\xcd\x82\x5a\x43\x92\xe3\x9a\xe8\x1f\x25\x33\xc0\x51\x64\x49\x8e\xeb\x08\x17\x56\xb5\xde\xb0\x51\x25\xd1\xcb\xc2\xe6\xd4\xf8\xa0\x43\x66\x86\x91\xb5\x36\xe6\x43\xe3\x83\x4d\x2a\x89\x5e\x6e\x30\x2f\x4a\x6a\xeb\xc6\x61\xc6\x9b\xc3\xba\x23\x90\xc4\x55\x8e\xfe\x51\x72\x03\x82\x44\x4c\xa2\x0f\x08\x17\x92\x3c\x17\x6c\x56\x4c\x4a\xb2\x96\x33\x17\x4a\x9e\xeb\x39\xcc\x40\xae\xee\x0b\x37\x11\x49\xaa\xfb\xdc\x44\x4c\xae\xee\xfb\x42\xff\xf8\x3e\x10\x24\x22\x73\x87\x2c\x20\x44\x64\xc2\xf1\xac\xed\xcc\x87\xc2\xc0\x3e\x37\x0f\x93\x6b\xf8\x0e\x38\x2c\x49\x7f\x3b\x00\xaf\x9c\x37\x95\x1d\x0e\x73\x96\xb7\xdd\x86\x0d\x8a\x41\xd0\x6b\x43\xed\x21\xe1\x10\x88\x12\x51\xc2\xc3\x76\xe1\x82\xeb\xb5\x61\x83\x92\xf0\xb0\xd3\x59\x5f\x46\x6c\xaf\x9d\x40\x7f\xdc\xff\x3b\x01\x4e\x9d\xcc\x73\x27\xc3\xf7\xdf\xfa\x00\xa1\x22\x66\x1e\xd6\x3b\x7b\x7b\xec\x5f\xf1\xfe\xb0\xfe\x82\xf5\xe1\xfa\x6e\xf0\x0b\xa2\x98\xaf\x5d\xb1\xbe\x14\xbe\x80\x30\x11\xb3\xe6\xab\x9e\xf5\x92\xf7\xe9\x3e\x37\x8f\x98\x79\xf8\xef\x06\x7a\x22\x3f\xd9\x87\x1f\x44\x06\x81\x2f\x20\x46\x44\x09\x33\x40\x8c\xc8\x4c\x5c\xb8\xb6\xef\x67\xd2\xcb\x86\x4d\x4a\xc2\xf0\xee\xfe\x3d\xfb\xdf\xfd\x7b\xce\x57\xc7\xfa\xfe\x7c\x8f\xf5\xa1\xf0\xbb\x3b\xd6\xf7\xa7\x3e\xcc\x87\xe8\x07\x37\x15\x22\x34\x2c\x20\x4a\x64\x09\xbb\x1b\xfc\x84\x41\xeb\x6b\x8f\x0a\x00\x7b\xbe\x7f\xf8\x47\x64\xe6\xd8\xb5\x91\xff\x43\xde\x7b\x7b\x60\xfd\x78\x98\x03\x31\x22\x12\x91\x61\x6d\x17\x46\xec\x4f\x71\x2e\x80\x93\xc8\x92\xac\xf7\x8a\x80\xcb\xe7\xe4\x83\x99\x24\x5e\xdb\x37\xd4\x1c\x84\x77\x58\xfb\xdc\x64\x72\x12\x31\x83\x79\x64\x11\x1b\x98\x05\x23\xe8\xd7\xde\x67\xf1\x65\x40\x03\xfc\x43\x64\x86\x8e\x05\xf8\x87\x2c\xc9\x75\x83\x39\x30\x25\xc7\xda\x30\x68\x27\x4d\xc6\xe3\xed\xb1\xfd\x67\x00\xb0\x9f\x93\x01\x83\xb6\x5c\x41\xf7\xb3\x50\xae\x67\x6c\x4e\xaa\x79\x6e\xdc\x4c\x24\x99\xde\x60\x0e\x99\x92\xc3\x8d\x9b\x88\x5c\x41\x6f\xa8\x2d\x88\x1d\xb5\x00\xff\x60\xf2\x93\xbf\x71\x53\x91\x24\x7d\x23\xa5\x88\xfc\xe6\xef\x80\xc5\xa4\x64\x01\xf8\x86\x48\xb8\x85\x05\x78\x86\x2c\x49\x1b\xf0\x0c\x59\x92\xf6\x7d\x6e\x26\x26\x1b\xd6\x0d\x03\x36\xb3\xe9\xae\x1b\x69\x45\x64\xc3\xba\x9d\x79\x14\xbd\x8f\xf1\x15\x95\x6f\xd4\xcf\xfe\x1f\xe6\x90\x89\x5d\xb5\x6e\x30\x07\x49\xe6\x40\x64\x30\xb9\x2e\xdf\xb8\x89\x48\xf2\xbd\xcf\x4d\xc4\x64\xb3\xba\x61\xc3\x91\xa4\x7a\x3b\x73\xa1\x70\x71\xd7\xb3\x7e\x4c\x54\xb2\xee\xc3\x1c\xcc\xb4\x1e\x10\x16\x08\xf9\xbf\xee\xc3\x1c\x4c\xae\xb4\x40\x6c\xc8\xba\x79\xdf\xc8\xef\x20\x6f\xa4\xdb\x99\x07\x75\xce\x77\x3f\xeb\x25\x6f\xa0\xbb\x63\xf3\xf1\x70\xb9\xa1\xa6\x48\xea\x7f\xc7\x7a\xf1\x66\x70\x77\xf4\x8f\xc2\xc8\x0d\x9b\x0a\xd3\x4f\xac\x1b\x6a\x0c\x49\xca\xb7\x33\x07\x32\xfb\x7b\x60\xfd\xd4\x9f\xe1\xe5\x7c\x7f\x4c\x94\xb3\x7d\xdf\xec\x64\x76\x40\x7c\xc8\x92\x8c\xef\x89\xf5\xd0\xf7\x13\xeb\xc1\xfd\x73\x23\x1b\x90\xbc\xfb\xee\x05\xe6\x4a\x66\x77\xfb\xfe\x26\x73\xbb\x21\x1c\x10\x1e\x66\xdd\x0b\xf4\x47\x49\xfb\xf6\xfd\x4b\xe6\x77\x23\x0e\xe7\x92\xc7\xc6\x0d\x5f\xd8\x4b\x2e\x1b\x37\xac\x18\x4c\x5b\xb8\xee\xc7\x93\x62\xa8\x8b\xd8\x92\x45\x24\x7d\xce\xf7\xcc\x44\x86\xeb\xf6\xac\x10\x72\xe2\x78\x60\xb7\x65\x5a\x82\xf5\x5c\x98\x73\xee\xe9\x07\x7b\x9a\x69\x09\xd6\x13\x90\x46\x43\x5e\x07\x80\x91\xc8\xcc\x85\xb2\x9e\x30\xfd\x05\xfd\x71\xa8\xb4\x70\xd7\x3d\x01\xbb\x84\x54\x0a\x5c\x89\xa8\xfb\xd3\x03\x4b\x2e\xd3\x23\x2e\xe0\x4a\x44\xdd\x9f\x9e\x73\xdf\x08\x97\xfc\x30\x9e\x84\x2e\x92\x6c\x9f\x04\x36\x48\xb2\x7e\x12\xa6\x9d\x64\xfc\xf8\xb6\x24\xdb\x78\xb2\xcf\x32\xe9\xee\x29\x5e\x21\x7b\x54\x7d\x5d\xc8\xe8\x9f\x23\x95\x47\x41\x27\x3c\x70\x5b\xbd\xe4\xca\xf0\x54\xc3\x0b\xec\x42\xc5\x24\x51\x61\xfa\x54\x2c\x4b\xf9\x93\x69\xff\xf1\x4c\x0f\xb2\x75\x3d\x30\x6f\xe8\x06\x08\xe4\x8a\xa8\x1b\xdf\x03\x0d\x00\xd1\xec\xd7\x03\x0d\x00\x61\x84\xd6\xd3\xdf\x54\x28\xfa\x20\xe1\x03\x8e\xaf\x7b\x2e\x12\xcd\x79\x2f\x78\x81\xe3\x83\xc1\xa3\x68\x0d\x71\x8c\x13\x88\x68\x3d\x86\x29\x26\x67\x7c\x0c\x6b\x26\x8b\xc1\x83\x7b\x00\x61\xe0\xd6\x33\x3c\x1b\x8a\xc6\x00\x7b\x67\x11\x15\x60\x6f\x0b\xcd\xe1\x81\x3d\x93\x38\x71\x0b\x68\x1c\x59\x17\xaf\x07\x7b\x5d\xe8\x0e\xcf\x1c\x9e\xbe\x85\x3d\xc0\x4d\x40\x37\xa9\x07\x7e\xf8\x17\x31\xc3\xd7\x33\x31\x26\x5e\x35\x1e\xec\xee\x22\xb2\xf1\xd3\x9b\xa7\xe5\xb3\xbc\x87\x7a\xdf\x7b\xc4\x39\xdc\xd5\x13\xc0\xf0\x05\x28\x1e\x75\xf7\x79\xb6\x67\xa0\x21\xff\x7c\xe0\x70\x42\xb8\xa5\xf5\xdc\xde\x03\x2e\xd3\xed\x15\x70\x4e\x6e\xef\x01\x27\xf5\xf1\x75\xa6\xf4\xf5\x3c\x58\x67\x11\xc2\xf3\xe6\x9c\x61\x97\x60\x35\x95\x6e\xe0\x79\x40\xb7\x4d\xcf\xd8\xdc\x54\xf6\xed\x0b\x96\x0a\x02\xdd\xef\x0b\xca\x08\x26\x97\xdc\x97\xb3\x97\xef\x88\xda\x17\x44\x82\xf2\xdd\x4f\xf7\x75\x61\x92\xbf\x39\xd9\x57\x00\xe1\x34\xd6\x07\xb3\x29\x81\xf1\xf7\x05\x65\x25\x95\x0f\xfb\x0a\x3e\x45\xac\xdf\x99\xcd\x47\x06\xfb\x72\xe6\xf2\xdd\x47\xf7\x15\x41\x06\xd4\x1e\xed\x2b\x82\x61\x7e\x17\xd2\x7d\x39\x33\xa9\xec\x40\x02\x99\x74\xbe\x9f\xbc\x01\x36\x98\xb1\xaa\xb1\xb0\x47\xf0\x4a\xa3\xba\x62\x5f\x70\x71\xbd\xa8\x0f\xd9\x57\x06\x6f\x68\x7c\x86\xbe\x91\x58\xed\xfb\xf2\x53\xbe\xb3\x47\x30\x66\x10\xab\x7d\x5f\xce\x9d\x34\xc5\xd5\xbf\xe7\x14\x56\xff\x5e\xe5\xa0\x82\xa8\x1e\xe1\x8e\xc1\x3b\xea\xbe\xe0\x94\x7f\x45\xf5\x08\x1a\x48\x5e\x52\xf7\x05\x0d\x24\x2f\xa5\xfb\x6a\xde\x22\x17\xd1\x53\xcd\xf0\xd6\xb8\xaf\x23\x48\xc4\xf2\xf3\x9c\x3c\x17\x11\xbb\xe0\x1c\xec\xe7\xb9\xf8\x0b\xec\x42\xab\x68\x52\x4d\xdc\xfe\x82\xfa\x00\x06\xd2\xd9\x44\xf7\xf4\x48\xfa\x02\x36\xda\xa2\x69\xec\xde\x24\xa7\x05\x37\x99\xa2\x59\xc0\x4d\x86\x37\xe9\x7d\x75\x6c\x5f\x63\x8f\x9c\xa5\x19\x97\xc9\x40\x49\xd4\x3b\xef\x0b\x57\x15\x5e\x85\xf7\xe5\x09\xab\x98\xa2\x7b\x5f\x50\x9c\xf2\x2e\xbc\x2f\x67\x69\xea\xf1\xf0\x0a\xf8\x3e\x5c\x34\x8a\x86\x38\x41\x6a\xd4\x44\x6e\x20\xc8\x64\xc2\x0b\xee\x6b\xe2\xa0\xa0\x40\xb3\x2f\x67\x59\xaa\x71\x61\x3b\xff\xc9\xe8\xbf\x2f\x18\x59\xb3\xb6\xfa\x8e\x5e\x3b\xfb\xb3\x07\x5e\xe0\x0c\xed\xe9\x19\xa1\x38\xc5\xb0\x94\x10\x48\x7c\x5f\x9e\x92\x86\xf9\x82\xf7\x05\x86\x46\x24\xf1\x7d\x41\xb5\xca\xdb\xfd\xbe\xee\xdb\x73\x48\xf1\x8f\x23\x21\x65\x5e\xef\xb7\xc3\xce\x5c\x49\xfc\xe1\x39\x73\x4a\xac\xec\x0d\xdc\x99\x9c\xb5\x48\xf0\xc9\xe5\xfd\x7d\x87\xc3\xbf\x32\xef\xef\x3b\x5c\xbe\xaa\xdc\x8d\x01\x4e\xb7\xbc\x80\xef\xf0\xa6\xbd\xe2\x76\x0c\x87\x83\x45\x22\xa5\xec\x80\x4b\x0e\x43\x28\x76\x38\x1c\x2b\xe7\xc0\x0a\x03\xf2\x80\x69\x7f\x07\x08\x50\xb4\x4f\x6c\x40\xc7\x44\xc2\x69\x6f\x40\xc3\x64\x5e\xf1\x77\x00\x87\x62\x2e\x9d\x1d\x20\xee\xf0\x8a\xbf\x03\x72\x31\x5c\x3f\x15\x82\xc1\x10\x92\x7a\x03\x0b\x26\x67\xf5\x18\x0c\x86\x10\xd4\x3b\x94\xdb\x33\x73\xe9\x83\x07\x2f\xb0\x85\x8a\x49\xd3\x10\x0f\xc7\x89\x04\x57\xd9\x00\x83\x89\xc4\x84\xde\xa1\x36\xaf\x50\x2f\x60\x08\x89\xb3\x5e\x7d\x08\x7a\x5e\x28\x37\x3e\x83\x14\x03\x9f\xc1\x80\x18\x06\xb2\x43\xc3\xaa\x11\x0b\x6f\x07\x38\x78\xd0\x26\xb3\x03\x36\x3f\x51\x9a\x37\xe0\x64\x32\x6d\x32\x3b\x80\x19\x10\x6e\x65\x07\x6c\x7e\xaa\x11\x76\x80\x03\x06\xd5\x06\x3b\xe0\x66\x42\xb5\xc1\x0e\xe6\xc9\xcc\x2a\x7b\x08\x0b\x2b\xaf\xfa\x1b\x78\x30\x91\x78\x2c\x3b\x78\x36\x3a\xde\x55\x76\x98\xe7\x68\x26\x2e\xf1\x0e\x9e\xee\x8a\xf0\x74\x3b\xcc\x82\x17\xd8\x65\xe7\x06\x4c\x50\xb7\x01\x09\x13\x09\xa1\xb2\x03\xd2\x2c\x5c\xbc\xee\xec\x00\x5d\x27\x31\x54\x36\x30\x63\xf2\xcf\x32\xc3\xd0\x4a\x5d\xe7\x06\x86\x4c\xce\xa2\x8b\x05\xba\xe0\xe5\x62\x07\xe7\x10\xa2\x0b\x4f\x79\x45\x88\xb9\x1d\xa0\xfd\xfc\x59\x77\x78\xd4\x12\x0c\x79\x07\x98\x3e\x09\x86\xbc\x03\x4c\x9f\x59\xeb\xee\xbb\xb9\xe8\x79\x9e\x67\x9e\xfe\xc1\x77\x33\xe9\x20\x5e\xd5\x73\xb0\x35\xfe\xd1\xf0\x41\xe0\x33\x36\x23\xe9\x20\x5e\x86\xf2\x6f\x88\x80\x7d\x89\x84\x91\xd9\x80\x7d\xc9\xd4\x30\xec\x18\x30\x25\x9f\x8c\xb7\xa3\x6f\xee\xef\x32\xb4\x63\xc4\xb2\x4a\x7c\x88\xb8\xcc\xe4\x4f\x24\xdb\xd1\x13\x43\x49\x7e\x88\x11\xcb\x5a\xd9\x42\xf2\x1e\xb0\x3c\xa1\x02\x8a\x17\xd1\xb9\xc3\x77\x87\xdf\x00\x66\x09\x97\x0e\xe3\x98\xb0\xf9\x48\x89\x31\xf9\xaa\x75\xb5\x80\xdd\x4c\x0e\x17\xdf\xc4\x78\x3c\x09\x23\x0c\xaa\xd4\x39\x6f\xc0\xb3\x44\xa2\x12\x6f\xc0\xb3\x64\x02\x4d\xee\x98\xb1\x0a\x24\x5d\xc0\xb5\x64\x46\xe4\xee\x58\xb0\x3b\xeb\xf5\x17\x77\x80\x1d\x61\x71\x61\xd2\xd1\x1d\xa1\xe4\x20\x06\xf2\x8e\xd0\xa0\xd2\x5c\xb9\x23\x34\xa4\x95\x12\x23\xc0\x5c\x32\xf3\x22\xee\x08\xe1\x25\x8b\x04\x5a\xf5\xbc\x79\x7c\xa1\x81\x46\x28\x42\x46\xe7\x15\x94\x4d\x80\xc6\x92\xb3\x66\xdc\x79\x05\x45\x95\x68\xd1\x13\xed\xf1\x05\xf8\xd5\x8b\x17\xc4\x37\x33\x5e\xd2\x1f\x58\x73\xad\x08\x94\x9a\x55\x0b\x00\x41\x81\xb9\x4f\x77\x84\x91\x84\xf8\x37\x3b\x3a\x33\x21\xef\x88\xc3\xbf\x67\x07\x86\x7f\xcf\x1e\x0e\x90\x80\xf6\x59\x84\x49\x36\x8b\x04\x3c\xf7\x9e\x36\x1a\x10\x5d\x22\x11\x71\x76\xf4\xdb\x53\x15\x5d\xe3\xf6\x94\x45\x23\xce\x5b\x28\x1d\xc5\x85\x8d\x23\x9a\x59\x11\xe5\x1c\xa2\x67\xdb\xfb\x21\x53\x67\x36\x5a\xe6\xe5\x2d\xaa\x85\x85\xbd\x4f\x61\x27\x7a\xfe\xbd\x1f\xb2\x84\x1d\x97\x60\xc5\x3b\x1e\xe6\x13\x89\x9a\xb3\x81\xea\x12\x89\x92\xb3\x81\xea\x92\xb3\x08\x07\xcc\x89\xa8\x39\x3b\xc2\x0f\x84\xa8\x38\x1b\xa8\x2e\x39\x8b\x4e\x6e\x27\x24\x4a\x88\x80\x6d\xc9\x59\x3b\xf1\x7e\x33\x1c\xb2\x46\xe8\x67\x89\x50\xba\x81\xcb\x12\x09\x37\xbc\x81\xbb\x92\xb3\x28\xef\xf1\x1e\x7d\xef\x27\xe4\x06\xb8\x98\xb6\x6c\xa7\x73\xdb\x8a\xb4\x96\xec\x74\xbd\x39\x12\x03\xff\x28\x78\x21\xf1\x19\x9b\xa1\xab\xdc\xfc\x83\xcc\x3f\x20\x8c\x74\xd5\x38\xfd\x85\xc2\x3f\x1e\xff\xe3\x9b\xb6\x14\xde\x4e\x35\xfe\xe1\x89\x12\x79\x9a\xa7\x70\x38\x12\x51\x85\x77\x0a\xb7\x67\x62\x64\xa3\xce\x35\x89\xf3\xbb\x93\x73\x4d\x8a\x48\x00\x74\xc9\xb9\xeb\x83\xe6\x1f\xb0\x13\x30\xfb\x30\xd4\x6d\xa7\x04\xea\x21\xb8\xec\x4e\x70\xaf\xcf\xdc\x62\x29\xfb\x44\xb0\x02\xe7\x61\xdc\x52\xa9\x54\xcf\x06\xc9\x17\xe0\xc2\xaa\xc3\x34\x15\x4f\x27\x59\xf4\x05\x16\x97\xd4\x90\xe0\xe6\x41\xf8\xd8\x9d\x5c\x68\x22\x31\x24\x28\x69\x08\xf7\xba\x01\xa2\x92\x99\x7f\x75\x27\xb0\x21\x82\xde\xec\xd4\x6f\x94\xf3\x7d\x38\x9c\x53\x79\xb8\x81\x83\x12\x1b\xb9\x72\xb2\xe6\xf9\x23\xf5\x01\xe6\xa8\xe8\x19\x4c\x80\xd7\x11\x00\xa5\xc4\x46\xb6\x9d\xc6\xf0\x04\x93\x7a\x61\xe2\x05\xce\x29\x54\x2e\x74\xb4\xd8\x69\x60\xc4\x64\x22\x40\x52\xc9\x74\xb4\xd8\x69\x26\xcf\x48\xc9\x2e\xc2\x38\x4b\x44\xd6\x9d\xa6\x4f\xa1\x2a\xf0\x1e\x88\x50\xc0\x75\x08\x89\xbb\x81\xc5\x12\x09\x44\xb3\x13\xd2\xd6\x5d\x84\x59\xdb\x69\x35\x7c\xf0\x17\x3d\xdb\x4e\x30\xbf\x10\xd0\x75\x27\x48\x2f\xcc\x10\xbb\x93\x33\x10\xb2\xac\xb4\xbd\x72\xb6\xee\x0c\x84\x6c\x3b\x81\x61\x48\x1a\x02\xb2\x4b\x24\x92\xcc\x76\x64\x97\x8b\xb8\x5f\x3b\xdd\xd8\xce\x64\xcb\x09\xa0\x78\x57\xd7\x9a\xe2\x7e\xc4\x9c\xb4\x3b\x9d\xfb\x51\xa6\xf2\x76\xa7\xdb\x73\x82\x6a\x89\x60\xe1\x61\x88\xe2\x4e\xf0\x9a\xa7\x36\x77\x27\xe7\x40\xe4\x81\x09\xb0\x9b\x57\xd7\x1c\x3c\x0f\x5e\xf8\xc6\x9c\xaf\x37\x11\xa8\xfe\xc0\xa0\xc8\xb3\x32\x22\xa4\x99\xb6\x76\x67\xe7\x40\xe4\x38\x80\x8f\xc9\x84\x97\xd8\x80\x8f\x09\x17\x43\xf0\x77\x3e\x17\xac\x4c\x7c\x89\x0d\x3c\x98\xcc\x3c\xbb\x3b\x07\x27\x0a\x6e\xe5\x8c\xc8\xa0\x42\x16\x96\x83\x27\x3a\xe5\xde\xce\xb0\x21\x13\xb8\x75\x03\x21\x26\x53\x21\xbd\x81\xd8\x12\x9b\x2a\x04\xaf\xa0\x42\x7a\xe7\x8c\x49\x52\x7d\xe0\x1d\x54\x48\xef\x5c\xa2\x27\x0b\xe5\x10\x70\xc1\x62\xaa\xdb\x9d\x8b\x67\xef\xfc\xb4\xf4\x3b\x23\x98\x86\x98\x17\x1b\x18\x2e\x91\x18\x3b\x1b\x18\x2e\x99\xb9\x6d\x77\xae\xde\x43\x4e\x6a\xf5\x06\x58\x5f\xf5\x1e\x72\x52\xe1\x9f\x4a\xe8\xe1\x9d\x2b\x66\x80\xcc\x2b\xd7\xdb\xd3\x93\xb2\x03\x30\x23\xd3\x6c\xbb\x73\xf3\x7c\xa4\x94\xe9\x32\xfc\x4a\x98\xdd\x76\x67\x78\xd4\x13\x15\x67\x03\xc5\x25\x5c\xc6\xad\x98\x7b\xc4\x0b\x1c\x12\x92\x3c\x5d\x26\xc2\xe9\x87\x9b\x10\x21\x76\x67\x80\x42\x5d\x8c\xd0\xd9\xb9\x6f\xbc\xc0\x3e\xc1\x3a\x44\x20\x9b\x0d\x20\x97\x4c\x2d\xfd\xce\x86\x65\xe1\x95\x2b\x8f\xea\x39\x55\x39\x6b\xb0\xfd\x12\xe9\x66\x67\x98\x7f\xa8\x36\xdf\x40\x6a\xc9\x54\x9b\xef\xbc\xa2\x27\x59\xd5\x1f\x98\x76\x5e\x37\x32\x40\x36\xc3\x25\x62\x87\x4a\x98\x4a\xeb\x0d\xac\x96\x28\x16\x0c\xac\x96\x4c\x25\xf6\xce\xe0\x38\x44\x95\xdd\xc0\x6a\x89\x8c\xa8\xdd\x79\xfb\xf7\xec\xc0\xf6\xef\x39\x82\x7d\x7b\xda\x56\xbd\xf0\xe0\x03\x76\xe8\xf6\x3c\xad\x51\x7f\x60\x1d\x79\xea\x00\xcd\x25\x76\x6d\x47\x88\x28\x54\x62\xef\x0c\x13\x72\xd7\x6e\x84\x09\x99\x00\x26\x3b\x83\xc1\x74\xed\x4e\x88\x2c\x44\xc7\xd9\x40\x77\xc9\xba\x90\x39\xba\x4b\xb8\x7e\x2a\x00\x19\x50\x42\xc9\x8f\x67\x9e\xfd\xf9\x02\x64\xc0\xed\x0d\x7c\x97\xc8\xa8\xde\x0d\x7c\x97\x4c\xa5\xf8\x2e\x97\xf7\xa0\xf2\x19\xec\x81\x37\x30\x40\xbc\xc4\xce\xdd\x5b\x9c\xbf\x90\x09\x17\x20\x7b\x06\x46\x3a\xee\x12\xce\xfd\x80\x80\x35\xbb\x00\x8d\x2e\x30\x94\x71\x17\x98\xa1\x75\xac\x01\xc4\x25\xf6\xf8\xa7\xeb\x0e\x10\x5e\x32\x33\xd9\xee\xe2\xcc\x89\x1b\xaf\x44\x10\x25\xaf\xfd\x25\x39\x51\x92\x9b\x15\x5c\x10\xa5\x81\x2f\xc9\x89\x92\xec\xac\xc0\x6a\x4d\x5c\xed\x0d\x4c\x97\xc8\x30\xe5\x0d\x4c\x97\x2c\x15\x7d\x01\xbb\x63\xd8\xf2\x2e\xc0\x64\x08\x34\x3f\xed\x52\x3c\x99\x2e\xc9\xb2\x80\x7d\x11\x6c\x74\x03\xf5\x25\x4b\x49\x5f\xc0\xbe\x08\x2e\xba\x0b\x34\xd4\x52\xd2\x17\x68\xa8\x03\x23\x63\x77\x71\xfe\x56\xf5\x5c\xfd\x05\x76\x01\x0e\xfb\xd2\xda\x97\x3a\xfc\x05\xce\x4a\x05\x59\x65\x35\x01\x8e\xa8\x45\x05\x47\xec\x59\x2d\xe0\x24\xd5\x9a\xc2\xe6\x16\x82\xc8\x0c\x2a\x27\x62\x96\xee\xe2\x0c\x91\x17\x22\x20\xd5\x9c\x0f\xf4\x07\xe8\x90\x74\x5c\xba\x8f\x81\x5b\xb1\x74\xef\x73\x24\x65\x3a\x47\xa4\x00\x56\xba\x27\x3d\xa6\x3a\xb7\xc0\xca\x26\xdd\x01\xd0\x69\xce\x0b\x1c\xa5\x79\xa7\xd8\x84\xb3\xcc\xa2\x67\x10\x13\x79\x70\x19\xde\x69\xb2\x83\x32\x12\x3e\xd0\x0b\xd9\x5f\x60\x9f\x06\x88\x49\x4b\x0b\x9d\xb5\x8c\x17\x05\x57\xd1\xae\xa5\x85\x4e\xa9\x6b\x25\x9d\x23\x6a\x9e\xa1\x42\x92\x71\xa3\x38\x47\xd4\xb4\xba\x0c\xc6\x4b\x5e\xd9\x11\xe5\x9c\x02\x5c\xe2\x64\xfc\x28\xdb\x67\xb9\xab\x42\x9f\x65\xed\x97\x8d\x59\xa6\x14\x56\x36\x28\xa3\xa9\x45\x50\x86\x46\x74\xa4\xb4\xcc\xec\xb3\xbb\x38\xc7\xe4\x2d\x0f\x10\x35\xb9\xfc\x3c\x63\x84\x94\x98\xca\xe3\x3d\xa2\x18\x5c\x60\x92\x2f\x3f\x2f\x80\x67\x73\xbf\x56\x67\x70\x3c\xb6\x2a\x2c\xf2\xb2\x95\x54\x67\x70\x3c\xec\x2b\x2e\x60\x81\x0e\xe0\xbb\xc2\x06\xc6\xd0\xee\x5d\x61\x70\x27\x96\xfa\xae\xce\x9f\x28\xf8\x57\x18\xd8\x3b\x8f\xea\x0a\x37\x19\xfa\xc4\xee\x0a\x13\x19\x11\x15\x77\x85\x01\x5e\x09\x41\x37\x50\x62\x82\x32\x70\x6e\xc0\xc4\x64\x7a\xc5\x6e\xc0\xc4\x44\xe3\x51\x5e\x93\xf7\x88\x2d\x26\xaf\x31\xeb\x05\x90\x85\xe6\x00\x3c\xcb\x78\xf6\x57\x17\xd1\x34\x07\xf0\xac\xa1\x9b\xec\xae\xb9\xe0\x7d\xf6\x10\x56\xba\x40\xa7\xea\xed\x40\x34\xcc\x79\xbb\x6b\x7e\x87\xc0\x49\xcb\x13\x35\x70\x08\x9e\x71\x3d\x66\xfd\xb1\xf1\x02\xc7\x50\x02\x9e\xd9\x65\x98\xe9\x8c\x27\x63\x85\x5e\xab\xf0\xfe\x57\xc1\x34\x19\xe0\xbe\x01\x55\x93\x99\xae\x62\xd7\xea\x43\x62\x8f\x2b\x86\x14\x54\x0e\x41\x5a\xab\x0c\x93\x9a\xfd\x29\xe5\xf2\x06\x6e\x4d\x50\x5a\xc5\x5d\xe1\x01\x40\x54\xc5\x5d\x11\x24\x50\x2f\x3d\xa3\x75\x9e\x71\x15\x11\x8d\x74\x4d\xda\xc0\xae\xc9\x55\x2b\x0c\xce\x43\x14\xc5\x0d\xac\x9a\x5c\xb5\x80\x88\x48\x24\x6a\xe2\xae\xe6\x14\x20\x22\x44\x3c\x34\x61\x13\x77\x1d\x9e\xf1\x5c\x54\x08\x07\x01\x06\xdc\x6f\xa0\xd9\x44\xe2\x26\x6e\xa0\xd9\xe4\x2a\x12\x00\x67\x32\x32\xd3\x0a\x1d\x18\x3d\x99\x77\x85\xc3\x80\x91\x97\x56\x48\x83\x44\xe0\xdf\xf5\x5c\x4e\xa3\x84\xfc\x8a\xcb\x69\xa0\xb7\xd7\x06\x1c\x4e\x94\x90\x0f\x38\x9c\xa0\xd4\x85\xbb\x4e\x8c\x39\xb1\x45\x38\x0c\x10\x29\x71\x57\x04\x2a\x54\x91\xdc\xba\xf1\xac\x72\x9c\x49\x49\x43\x46\xd8\xa3\xec\x6b\xd5\x99\x5f\xd2\x1c\x20\xe8\xda\x44\xd4\xf0\x30\x08\x32\x10\x56\x44\x5d\x9b\x88\x1a\x16\x3b\xe3\xa1\x55\x21\x2e\x56\x11\x31\x0c\x76\x04\x3b\xdc\x15\xcc\xd0\x28\x5c\x39\x44\x0e\xd3\x14\xec\xfa\xf8\xf7\x9c\x34\x78\x24\x04\x59\x00\x2b\x1c\x0e\x74\x11\x01\x26\x4e\x24\x00\xd5\x6e\xf0\x27\x90\x3d\xaf\x81\x39\xd2\xe5\x6c\x03\xe3\x26\x04\x7a\x69\xec\x06\x87\x01\xa3\x38\xd4\xc0\x0c\xe9\x63\xb6\x5b\xc0\xb2\x93\xd0\x1b\x98\x21\x11\xa7\x76\x8b\xbe\xac\x3c\x40\x5a\xc4\xb2\x56\x3d\xfb\xb2\xf2\x40\x69\x60\x8f\x44\x1e\xd8\x0d\xf6\x39\x02\x1e\xee\x06\x4c\x2d\x65\x9d\xdb\xcd\xb9\x21\x4f\xe9\x06\x01\x8c\xa0\x69\xbb\x41\x00\xd3\x4d\xa9\x1d\x66\x96\x2b\xf7\x5a\x73\x66\x26\xcb\xac\x03\xe1\xe8\xe6\xd4\xe0\x72\x10\x64\x99\x6d\x70\x39\xa0\xa3\xdc\x6e\x87\x77\x65\x66\x5f\xd8\x0d\x16\x40\x3a\xca\xed\x56\xbc\x45\x4e\x22\x74\x59\x46\x6e\xd1\x60\x21\x0c\x32\x6a\x3a\x54\x0e\xb3\xec\xee\xe6\x12\x9d\x6c\x90\x0d\x11\xdd\x04\xfa\xdb\xad\x7a\xc2\x7f\x1e\x5a\xcd\xd9\x9b\xa6\x1d\x6a\xfb\x4a\x5a\x6f\xf0\xa8\x32\xcd\x3a\x4c\x84\x44\xfe\xdb\xad\x62\x48\xdc\xbe\x0d\xf2\x1a\xc1\xb3\x76\x43\xe0\x83\x8c\x9c\xcd\xd9\x25\x8f\xa0\xd6\x7c\x48\x6a\x10\x0e\x06\xcc\x28\xb1\x81\xce\x13\x94\x4c\x6d\x03\x9e\x27\x12\x4e\x6b\x37\xf8\x44\x99\x96\xb9\x7b\x05\xec\xb1\xb3\x4c\xd3\x73\x43\x39\x47\x00\x87\x82\x20\x63\x52\x43\x60\x95\xcc\xaa\x0d\x39\x26\x08\x46\xf7\x00\xc2\x20\x74\x62\xa2\x3c\xe6\x19\x9f\x78\x46\x3c\x06\x85\xb1\x90\xc7\x1f\x73\xb0\x4c\x46\xd2\x3f\xe6\x79\x11\x68\x04\x7c\xcc\x53\xb6\x31\xe2\xe5\x31\xd8\xd4\x32\x55\xf7\x0f\x90\x11\x42\xef\x45\xcd\xf6\xef\x8f\xff\xff\xa3\xe7\x31\xa8\x9c\x33\x31\x21\x1f\x83\xc9\xbd\xa7\x9f\x4e\x4e\x4f\xf4\xa5\x4e\x7a\xa6\xac\xa6\x37\x90\xfa\x87\xb7\xa2\x07\x68\x0c\xa1\xda\xa7\x31\x79\x00\xc7\x10\x1a\x9d\x29\x1e\x73\x58\x61\xea\x40\x1e\x00\x32\x84\xd6\x93\xde\x70\xa0\x65\x63\xb3\x01\x93\x45\x7f\xdc\xc7\x80\xf6\x59\xe9\x16\xf7\x18\x54\xdd\x95\x1e\xde\x8f\x79\x5a\x08\x5e\x7d\x1e\xc0\x3c\x84\x4a\x90\xb5\xc7\x1c\xcb\x9c\x46\x81\x07\x40\x0f\xa1\xd3\x85\xe1\x31\x28\xb8\x7a\xfb\x69\x76\x7a\x56\x40\x75\x0c\xf3\x51\xb5\xf0\x61\x7b\xb6\x16\x35\x7b\x7b\x3a\x0c\xfd\x81\xf9\xa0\x8a\xe8\xb1\xe8\x48\x92\x81\xfd\x40\xae\xbc\xc2\x20\xfb\xc7\xa0\x95\xaf\xd4\x7f\x3e\x16\x01\x2b\x4f\x05\xe9\x63\x1f\xd4\x72\xe6\x1f\xc8\xb2\x43\x76\xfd\x58\x04\xb2\x3c\x35\x16\x8f\x41\x73\xdf\x78\x2d\x7a\x2c\x7a\x16\xa9\xc8\x9e\x22\x5b\x7c\xe1\x41\xfe\x00\xe9\x22\x54\xba\x11\x3f\xe6\xb9\x30\x68\xb1\x7b\x5e\xac\x8b\xa6\x39\x45\x36\x8c\x9c\x7e\x7a\xea\xb9\xef\xa2\x3e\x41\xe6\xc0\x9f\x9e\x02\x39\xb5\x34\xb5\x92\x3c\xa3\x8e\x36\x02\x6e\xde\xb5\xaa\x63\xe7\xe6\x1d\x2a\x0f\xab\xc7\x1c\x2a\x3a\xff\xbc\xe1\xd8\xe1\x9d\xc3\x47\xda\x9f\xc6\x24\x4f\x8f\x01\x90\xb1\x33\xf4\xfc\x01\xb4\x46\xe8\x55\xbb\x1c\xc7\x47\x67\x1e\xb2\xc7\x20\x6d\x0b\x17\xed\xb1\xe4\xe9\x1b\x44\xfc\xc9\xf3\x45\x34\xbd\xb1\x1d\xe0\x9f\x24\x05\x81\xbb\xfd\x50\xd0\x0b\xfc\x9a\xd8\xd3\xfc\xd2\x07\x7b\x7a\x44\xee\xd0\xa9\x0d\x7b\x0c\x7e\x26\x99\xc2\xc0\x63\x39\x79\x82\x30\xbd\x81\xf9\x88\x22\x7e\x07\xca\xcf\x62\x1d\xd9\xd3\xa8\x68\x0a\x91\x6b\xbf\x11\x74\xee\xb1\xec\xf0\xc9\x97\xde\xc0\x7c\x14\xb1\x0b\x88\xee\x99\x52\xce\x63\x47\x74\x0f\xe5\x87\xeb\x65\x4f\x56\x24\x1a\x43\xc6\xfd\x9a\x8a\xde\xb8\x3d\xdd\x8e\x7a\x8a\xfd\xc2\xc0\xa1\xc7\x8a\xe7\x38\x10\x39\x20\xe3\x52\x2f\x9a\x75\xa8\x81\x25\x8e\x3d\x86\x04\x76\x8d\x19\x11\x1f\xc0\xa2\x84\x5c\x34\x38\xa4\xb0\xcb\x45\xb3\x0e\xb3\x53\x0b\x5a\x5b\xe8\x5a\x1a\x7d\xf2\x1f\x40\xa7\x84\xf6\x43\xfc\xc5\xe7\x43\xb3\x0e\x73\x7b\xbf\x34\xb8\x32\x7d\x57\xaa\x63\xeb\x7f\xf0\x31\x60\x86\xf7\x1f\x0a\xc2\x01\xaf\xb8\xc5\xc7\x90\x16\xbb\x10\x62\xe3\x31\xcf\xde\x96\xb5\x81\x90\x18\xbb\x36\xd1\x07\x64\x80\xda\x35\xfc\x8a\x6c\xa1\x3c\x11\x1f\xc0\xba\x84\x76\x89\x3b\x54\xcf\x17\xaa\xfd\x02\xc5\x4f\x49\xa6\x4f\x1a\x3a\x96\x39\xb8\xea\x89\xa3\x7e\x3e\x01\xff\x68\xe2\x96\xd0\x0d\xb5\x1f\xf6\x59\xc1\x4f\xab\x4e\xa0\xea\xe7\x4b\xa8\x7f\x3a\xc0\x90\x77\xae\x12\x31\xfb\xb1\xea\x9b\xc9\xd4\x85\xc7\x21\xd8\xf9\x87\x27\x94\x89\x3a\x27\xe0\x31\xa9\x14\x13\x8f\x41\x7d\x54\x7f\x26\x1c\x2e\x93\x85\xa7\xff\x03\x4c\x9b\xd0\xaa\xd6\xa8\x39\xb3\xad\xe4\x36\xf0\x6c\xa8\x5d\xa7\x40\x6b\x9e\xde\x95\x3d\x6d\x9e\x22\xf4\xa7\x1f\xe6\x04\xa8\x37\xc0\x6c\xaf\x9f\x3f\xc0\x5c\xa2\xa8\xa9\x79\xb2\x09\x4d\x78\x73\xe2\xb9\xf4\xc6\xed\x07\xba\x06\xe7\xcc\x56\x27\xda\x9b\xca\x53\xad\xc0\x7c\x90\x4d\xeb\x8c\x0b\x6a\x49\x3a\xc0\x7a\xf2\x04\x72\xa4\xb7\xfe\x66\xa4\x62\xb3\x48\x11\xd6\x2e\x1d\x2d\xd0\xb8\xf5\x22\x56\xfa\xa2\x3b\x67\xb5\xe2\x92\x4b\xe0\x14\x76\xc7\x4f\x16\x07\x87\x92\x4e\xd7\xf2\xc7\x3a\x36\x93\x69\x4e\xbb\x6f\x26\x71\x9b\xbe\x1d\xb0\x5c\x7f\xdc\x9e\xd8\x51\x9f\x60\x33\x15\xb5\x02\x8c\xfb\x52\x24\x03\x18\x0e\xe3\x26\x49\x0e\x4e\x26\x35\x8b\xd9\x1a\x0e\x9f\x22\x3e\x00\x2f\x93\xda\x24\xf1\x98\xcf\x87\x8e\x7c\xf3\x34\x2f\x99\xf3\x01\x13\x71\xa3\x27\xcf\x63\xf6\x62\xb3\xab\x15\xf3\x64\x17\x9c\x31\x73\x74\xf6\xa6\x3f\x26\x0e\x8e\xac\x56\xb0\x99\x8a\x58\x3a\xb2\x07\xe5\xa2\x33\x0f\x77\xfd\xdc\x7e\xde\x78\x3c\xb9\x17\xdf\xf0\x9c\x1d\xd4\x89\x3d\x86\xf4\x6b\xbf\x3b\x6a\x38\x7d\x68\xe5\xde\x6c\x8d\x3a\xe2\xa0\xba\x2c\x55\x73\xea\x29\xd8\x82\xe4\x3b\x18\x88\x5a\x94\x50\x30\x5c\x58\xd3\xda\x7a\x8a\xd8\x1f\xe1\x04\x10\xb9\x99\x98\x9d\x8f\xc1\x48\xfe\xcb\x17\x07\xe8\x23\x26\x35\xbb\xbc\x63\x6a\xc5\x53\x75\xfd\x74\xfd\xf6\x95\x53\x2b\xe0\x1f\x59\xdb\x14\xfe\x39\xca\x65\xfb\xd8\x0c\x8e\xd3\xce\x66\xe1\x4f\xd8\x8b\x66\x0c\xc6\xf6\x5e\xb5\x5f\xa6\x43\xaf\x8b\x73\x4e\x67\xb6\x4d\x75\x54\x17\x1b\xd8\x31\xe4\x65\xea\xf4\xce\x7f\x80\xe3\x14\x83\xe9\x2e\x80\xcc\x4c\x25\x8b\x1c\xa0\x15\x51\x00\xf1\x63\xf0\x42\xcc\xb9\x6a\x2c\xcb\x67\x4c\xfd\xd8\x9e\xc7\x55\x75\x60\xbf\xfc\xc8\xff\xf0\x6b\xfe\x3d\xaf\x96\x67\x7b\x93\xf0\xba\x3c\xa3\x96\x4e\x23\xd8\xee\x5a\xd3\x26\x5c\x2e\xcc\xeb\x64\x85\xf1\xae\x77\x51\xa1\xe7\x6f\xed\x3a\x16\x96\xf3\x8f\x9f\x4a\xc1\x4f\x8b\x76\x14\xb2\xe8\x15\x93\x6c\xb6\x0c\xec\x53\x2c\x67\xb9\xf0\xfa\xd3\xf5\xe9\x89\x00\x39\x1f\x9e\x69\xaf\x15\x7d\x02\xfa\xe8\x92\x34\xe0\x77\xd9\x2e\x89\x62\xcb\x85\x13\x71\x7e\x38\x5e\x02\x67\xfc\x2f\x07\xd8\x0e\x7e\x0a\xb0\x4f\xf0\xec\x2e\x45\x2b\xb0\x31\x59\x45\x9c\xc2\x73\x1f\x67\x4d\xe7\xf6\x64\xb7\x92\x4b\xf6\x9b\x60\x51\x9f\x34\xcf\xe3\xc0\xe9\xdc\x2e\xe9\x4b\xa4\xda\x20\x9e\x22\x22\xde\x7e\xf8\x5c\x1a\xd7\xfc\x1f\x32\x05\x92\xe5\xf4\x9f\xfb\xc4\x76\xe6\x22\xf9\x79\x3b\x73\xd1\xa2\x79\x5a\xdd\x20\x6a\xba\x3d\x35\xa8\xa4\x30\x4f\xac\x6b\x62\x61\x70\xcc\xa8\x97\xa4\xc1\x3b\x79\xf6\x49\xf6\xd4\xd3\x15\x36\xb1\xe3\xfb\x4d\x21\xa7\x3a\x9c\xd9\x8a\xeb\xdd\x7e\xf3\xd1\x39\x71\x7b\xa2\x1c\xf1\x34\xcf\xa4\x91\x44\x80\x37\x98\xed\x0f\x8f\xbf\x5d\x72\xf9\xe9\x98\xa7\x69\xd4\x32\x20\xdb\x4f\xfe\x61\x2e\xb7\xdf\x04\x45\x6f\xf7\x9b\x09\x90\x6f\x3c\x7e\x33\xd6\x96\x7d\x5c\xb2\xd5\xce\x80\xd6\xae\x37\x1d\xe8\x48\x30\xd6\xbb\x0e\x74\x04\x12\x15\x13\xa7\x78\xfc\x66\xac\xa3\xe5\x79\x6f\x82\x9c\xb1\xc7\x93\xbe\x89\xcc\x3d\x11\x51\xf8\xa9\xc3\xfc\xfa\xa0\x4f\x40\x1f\xf4\x42\x7c\x0c\xe1\x48\xb5\xe8\x40\x7f\x3c\x99\x8d\x98\xcb\xe3\x37\x41\x5d\x1f\x1e\x17\xd6\xc4\xb0\x11\x11\x29\x4b\xde\x03\xf0\xb5\x20\x8b\xf1\x33\xae\x37\xf1\x72\xe7\x1f\xd8\x2f\x92\x67\x06\xd4\x2a\x8d\x98\x26\xcf\xf0\xf4\xb4\x84\xff\x7c\xc6\xf5\x6a\x0a\x32\xff\x80\x64\x4b\x2b\xcc\x33\xae\x77\xbf\xe8\x0f\xa7\x0f\x4e\xd0\xb8\x5c\xd2\x8f\xaa\x63\x78\x6a\x23\x35\x3b\xfd\x32\xcd\x3f\xa2\x8b\x62\xbc\x1c\x0c\xdc\x7b\xbb\x24\x8d\xc7\x55\x79\x4c\xa3\xfe\x78\x24\x5e\xa4\x5f\xd8\xf3\x80\xf8\x03\x6d\x76\x0f\x12\x4f\x87\x28\xe1\xf5\x01\xad\x87\xcf\x6a\x17\x1e\x44\x55\x04\x66\x0c\x8c\xd7\xb5\x1d\x30\xef\xd5\x25\xc4\x2b\xe0\xca\x1e\xbf\x23\x2e\x5e\xc5\x21\xfe\x32\x3f\x31\xc7\x40\xfb\x62\x3d\x62\x08\xe7\xb2\x14\x89\xdd\x10\x43\x84\x83\x08\xc1\x18\x62\x70\x73\x27\xd1\x18\x62\x00\x82\x79\x24\xfc\x42\x0c\x4f\xf1\x66\xdf\x53\x20\xc6\x3c\x1d\xe9\xef\xe5\x52\x31\xe6\xdb\x2b\x7d\x8f\x96\x18\x71\x13\x3c\x7f\xbc\x3d\x8d\xab\xbe\x7f\xbc\x3d\x8d\xf7\x8b\x16\xf8\xb2\x9c\x98\xae\xe7\xad\xe3\xed\x69\x42\x02\xb9\x48\xd8\x84\x98\x60\x20\x3b\x7f\xbc\x3d\x4d\x03\x8a\xf8\xf8\x85\x38\xc4\x1c\x1f\x40\x4c\x7e\x48\x08\x31\x27\xc7\x70\xfc\xa0\x0f\x62\xee\x8f\x37\xfb\x2e\x76\xcc\xa0\xd3\xf3\x47\xfa\xfe\x08\xd1\xff\x78\x7b\x5a\xae\x77\x0a\x5f\xc5\x6f\x2c\x29\xdd\xfe\x47\xfd\xfe\x98\xef\x1b\xed\xfb\xe3\x79\xdf\x78\x7b\x5a\x00\x84\x7c\xfe\x30\xfe\xe1\x2b\xf7\x8a\xea\xb1\x38\x74\x2f\x71\x0b\x62\xc1\xb5\x23\x12\xa8\x20\x96\x69\xbe\x2e\xef\xbd\x37\x16\x44\xc6\x47\x40\x11\xfc\x1e\x60\xb1\xfe\x7f\xcf\xaf\x58\xaf\xf2\x7e\xfd\x8e\xa2\x96\xf1\x7e\xfd\x8e\xa2\x3a\x72\x37\x91\x0b\x62\x0b\x5f\xfd\xef\x28\x9a\x1b\x5d\xe3\x17\x6a\x10\x5b\x8d\x3e\xf0\xf7\xc8\x8b\x6d\x14\x9f\xcd\x97\x51\xc4\x36\x2f\x1f\xf8\xcb\x7c\x63\x5b\xb7\xd7\xf1\x1e\x46\xb1\xdd\x0e\xeb\xf7\x85\x0b\xc4\x86\x58\xe8\xf3\xc7\xdb\xd3\x9e\x0e\x17\x3c\x7f\xbc\x3d\xed\xee\xe1\x43\xcc\x82\xd8\x01\xa0\x71\xfe\xe8\xdf\x1f\xe3\xed\xc7\xdb\x53\x43\xea\xdd\x18\xbf\x90\x80\x68\xe1\x76\xea\x7a\x79\x6d\x34\xb8\x05\x45\x02\x19\x44\x2b\x97\x53\xd7\xab\x2f\x8d\xd6\x5f\xfa\x7b\x59\x7c\x1c\x70\x19\x3f\x7f\xbc\x3d\x1d\xee\x9a\x14\xf3\x2b\x93\xc7\x01\x7b\x64\x24\xda\x40\xf4\x94\xda\xe7\x8f\xb7\xa7\xab\xed\xb7\x1f\x6f\x4f\xef\x52\xbd\xd9\x7a\xfd\xaf\x62\xc9\xff\x33\xfe\xef\xff\xeb\x76\x36\x72\x21\x56\xf3\xfd\x89\x2b\xe4\xf7\xff\x91\xf5\xbf\x9f\xe5\xdf\x7f\x1f\x67\xba\xae\x23\xc0\x7f\x3f\x7d\xc5\xbb\x3e\x9a\x2a\x83\xc5\x86\x26\xfb\xeb\x9a\x6a\x68\x7a\xe8\x22\x4b\xd4\xd4\x74\xb6\xf7\xd9\xdd\xaf\xeb\x08\xd0\xdf\x4f\x1f\x7a\x67\x4f\xa6\x7a\x32\x3d\xd8\x89\x25\xea\x07\xe4\x5a\x65\xef\xb9\x10\xaf\xf7\xfe\xdc\x4e\x18\xc6\xd6\x0e\x09\xbf\x3f\x9d\x68\xe8\xe1\x78\x21\xc8\xed\xfb\xf9\x38\x52\xe8\xcb\x9c\xaf\x10\xd9\x93\xe0\xdc\x8f\xe7\xf8\x15\x52\x60\x19\xa0\x2e\x14\xb8\x7b\x85\xc4\xbe\x20\x80\x2c\x2a\xc8\xf6\x0a\xd9\x54\x36\xbd\x8c\x75\xe6\x5b\x65\xde\x97\x4f\xa9\x78\x21\x09\xf9\xf7\xd3\xdb\xfb\x44\xd6\x0b\x31\x62\xdf\x4f\xef\xe7\x77\x11\xb9\x10\xfe\xf5\xfd\xdc\x5e\xf6\xcd\x59\xd4\xbc\x44\xc8\x7e\x81\x9e\x10\x57\x32\x8e\x2f\xf9\xae\xa1\x63\xc8\x95\xce\xfd\xf0\xfb\x09\xb2\xa4\x29\xfe\x4a\x53\xdf\xad\xb7\xec\xab\x13\xee\xa7\xef\x4f\x1f\x1f\xcd\x66\x01\xc7\xdc\xfb\x13\x52\x84\x80\x8a\xe2\x75\x7d\x63\x8f\xd7\xeb\xe2\xca\x12\x53\x89\x9b\x7c\xbe\x92\xa0\x6f\x60\x59\xf8\x64\x81\x88\xb0\xe7\xef\xe7\x91\x02\x22\xdb\x09\x4b\x25\x1b\xe7\xf2\x57\xc2\xed\x14\x2f\x68\xee\x23\xdb\x39\xbc\xee\xfb\x79\x8e\xee\xc8\xbe\x25\xf5\x00\xda\xed\xc4\x76\x72\x63\x09\x34\xb0\xc1\x34\xd6\x96\x59\xd6\xde\x32\xb6\xd5\x1e\x96\x75\x2f\xfb\xae\x60\x11\x44\xf1\xfd\x84\x3d\x90\x0e\x01\x11\x09\xe7\xbf\x9f\xb7\x97\x7d\xbd\x44\xfc\xe1\xf7\xd3\xeb\xfc\x54\xcc\x11\xa1\x81\xdf\x4f\x2f\xcb\x2c\x33\x95\x41\xb1\xf1\x49\x96\x31\x6a\xb5\x90\x39\x3c\x28\xc7\x51\x44\x0c\xd9\xf7\xb3\x7b\x59\xfb\xca\xce\x94\x7f\x3f\xbd\x97\xdf\x45\x37\x22\xa5\xf7\xf7\x73\x79\x19\xbf\x4b\x9c\x31\xc4\x6b\x85\x40\xe3\x6b\x8c\x69\xa9\x6c\x7b\x19\xbf\xab\xfa\x0e\xba\xd2\xef\xd6\x18\x23\xf7\x53\x8c\xd0\x91\x06\x5a\xd8\x62\xac\x43\x65\xd3\xcb\xd8\xcb\xae\x91\x77\x1f\x79\xe7\xc8\xbb\xea\xec\x6f\x9d\x5f\x4f\x52\x24\x15\x27\x18\x68\xbe\x1b\x58\xcc\x5a\x1d\xcf\x05\x18\xa8\x60\x8a\x85\x3b\x26\x96\x77\x9e\xbf\xeb\x4f\x84\x63\xe6\xfb\x33\x7b\x2f\x3f\x5d\x56\x2c\xdc\xbd\xd1\x53\x9c\x45\x66\xaa\x88\x85\x3c\x3b\x16\xf0\xec\x48\xc3\x47\x2c\xe4\xcb\x11\xa9\xcd\x4e\x59\x64\x99\xda\x83\x0a\x22\x32\xbb\x42\x84\xdb\xda\xf7\x33\x78\x59\x65\x99\xea\x5c\xde\x97\xef\x64\x89\x65\xdd\x2c\xdb\xfe\xdd\x77\xdd\x3d\x72\xcb\x57\x56\x21\xfc\x2b\xd5\x4a\xac\xd7\xad\xb2\xc7\xcb\xbe\x3a\xab\xe6\xb3\x56\xaf\xf3\x53\x93\xc6\x5a\x93\xca\x8a\x97\xb1\xce\xda\x54\x36\xbc\xcc\x58\xb6\x54\x86\xb1\xd3\xbd\x33\xb6\xc6\xf1\xc1\x06\x1e\x02\xdd\x7a\xe2\x9d\x48\x49\x77\x72\xab\xc2\x5b\xf2\x24\xf6\xe4\x81\x19\xcc\x18\x39\x15\x1f\xed\xe5\xc7\x4d\x0f\xf5\xbb\x5c\xc5\x67\xb0\x97\x80\xf8\x08\x9d\x41\x3a\xf1\x19\xe4\x1d\x80\xf3\x08\x9d\x9e\x28\xf1\x99\x5d\x65\x6e\x21\x23\x3f\x7a\xa6\xbe\x73\xf0\xe0\xf8\xd9\x3e\x22\x50\x3a\xbe\x9f\xaf\xb2\xb7\xb1\x8c\xbb\xf9\xc1\xea\x29\x59\x4e\xba\xae\xef\x8c\x48\x60\xed\x41\xf9\xb2\xd3\x75\x75\x96\xc1\xaa\xfc\xed\x85\x74\x85\xac\x12\xd7\x10\xb0\xa4\xaa\x64\x79\x7d\xe9\x2b\x8b\x37\xcb\x70\x5f\x8b\xcc\x35\x9d\xae\xac\x7e\x20\xe2\x27\x56\x63\x1f\x6d\xab\xec\x76\x04\xe9\xfa\x95\x0d\x7d\xf7\xbc\x65\x5f\x5f\x24\x17\xa4\x00\x1b\xcd\xb7\x7f\x52\x20\xbf\x49\x01\x5a\x6c\xa5\xd7\x49\x91\x7b\x39\xbd\xbc\x8f\xab\x93\x62\x61\x8d\xf1\xa5\xa1\x8f\x0b\xa7\x38\x55\x36\xbd\xec\x3b\xc1\x13\x82\xa2\xbe\x9f\x19\xed\x7d\xbc\x23\x21\xab\xf4\xfb\x13\x5a\xb5\x48\xea\x4b\x69\x3d\x2c\x83\x2e\x2c\x52\x33\x95\x90\x70\xf9\xfb\xe9\x27\xe4\x77\x92\xa4\xba\x3e\xaa\x4d\xc8\x4e\x16\x3a\xcd\x55\x69\x4d\xce\xe6\x82\xe4\xa6\x6c\x39\x79\xed\xaf\xbd\x0c\x04\xc7\xd0\x2d\x7f\x09\x46\x5d\xa4\xfd\xdf\xa4\xdc\x7c\x73\xda\xf2\x0d\xc5\x42\xa6\x82\x23\xdf\x3c\x6a\xf2\xed\x4e\x10\x74\x89\xcc\x37\x49\x29\x03\x27\x2d\x08\xf2\x35\xdf\x14\x0f\x32\x30\xd1\x82\xe0\x57\xf3\x9d\xd4\x1e\x4c\xda\x9d\x47\x5b\xbe\x93\xbe\x4b\xef\x77\xf5\x2b\xcb\x91\x65\x30\xec\x0a\x35\x34\xdf\x79\xab\x0c\xea\x13\x22\x7a\xe6\xbb\xa8\xce\xe2\x75\x7e\xc7\x5e\xbe\x8b\xbe\x2b\xef\x77\xac\xb3\x6a\x7c\x60\x65\x9d\x16\xb6\x7c\xd7\x5b\x65\x8f\x97\x71\x0c\x64\x57\xf9\x76\x7b\x17\xd1\x2f\xf3\xdd\x86\xca\xb6\x7f\xc7\x39\xeb\x93\x65\x30\xe1\x08\x45\x32\xdf\xa6\x39\x83\xe1\x45\x88\x8e\x19\x20\x65\xdf\x4f\xf7\x95\xe9\x1c\x1f\x37\x59\x06\x36\x59\x10\x72\x62\xbe\x87\xbe\x1b\xbe\x7e\xc6\x3a\x87\xfa\x32\xdc\xf2\x6a\xec\xe7\x4c\x2c\x73\x15\x3e\xfd\xb0\xf2\xbd\xd4\x4f\x1c\x53\x52\x74\xe5\x7b\x69\xec\xd0\x39\x67\x2a\xb0\xf2\xbd\xd5\x17\x28\x61\x05\x0a\x98\xef\x5b\xed\xdd\x6e\x21\x08\x6c\xef\xd1\x5c\x3f\x6e\x5b\xfc\x84\xca\xfc\x50\xac\xcd\x8f\xd3\x2e\x1d\x15\xf3\x73\x71\xdd\x9f\xe0\xfd\xfc\x98\x67\x7e\x28\xee\xe4\x27\xb9\xb2\x8e\x34\xff\x64\xb6\xf7\x64\x37\xc5\x64\xb6\x27\x1a\x7c\x8a\xd7\xf9\x59\xfe\xf2\x43\xc1\x32\x3f\xc5\xe7\xec\x3b\xfa\xf2\x53\x54\x27\x8c\xeb\xc6\x74\x9e\xf9\x29\x1a\x03\x0e\x2a\x41\x5a\xe5\xa7\xfc\xb4\xf7\xf8\x77\x2c\xab\x64\x07\x0f\x4c\xbd\x39\x15\x8e\xbd\x75\x95\x99\x7f\xa7\xb2\xa9\xb2\x8d\xb2\x4f\x38\xce\x4f\xbb\x55\xf6\xb8\x3b\x0b\xdb\xeb\x1a\x1f\xd8\xa4\x60\xa8\xf2\xd3\x87\xca\x7c\x1d\x1a\xeb\x1c\xaa\x73\x78\x9d\xa4\xa5\x67\x16\x96\xc1\x10\x94\xa9\x88\xce\xcf\x22\x2f\x00\x0a\x56\x10\xbc\x50\xc6\x29\xfa\xfd\x1c\x5e\xc6\x75\x58\x5a\xdb\xe5\xe3\x13\x4d\x2c\xcd\x19\x58\xb6\x31\xb3\x61\x7e\xb6\xc6\xe7\x96\x07\xe2\xf0\xe4\x67\x6b\x3e\xb7\xcf\x67\xe2\xbc\x88\x2d\x3f\xb7\xd3\x84\x71\x5e\x6e\x8d\xfd\xf6\xb1\x7f\x34\x51\x70\x6a\x7f\x3f\xb1\x6f\x69\x47\x2c\x57\x48\x2a\xf3\x6c\xb6\x9f\x76\xb9\xe0\x2e\xf6\xfd\x1c\xfe\x5d\x66\xd9\xad\xb2\xc7\xcb\xda\x57\x16\x55\x67\x7c\x2d\x2b\x17\xcb\xaa\xca\xba\x97\x45\x96\x0d\x95\x6d\x2f\x2b\x5f\x19\x2f\x68\xc5\x2f\x68\x42\xf6\x28\x17\x79\x72\xb9\x8a\xcf\x59\xe1\xd8\x79\x79\x2b\x00\x5d\x0a\xc2\xdf\x28\x97\xe9\x3b\xf3\x3a\x33\xc7\x60\xea\x0b\x6c\xc0\x46\xd1\xba\x48\x10\x29\x10\x44\x4e\x19\xe7\x65\x2c\x96\x0d\x1f\x43\x66\x7b\x14\xe5\x8b\xab\x5f\x84\x32\x51\xae\xa5\xb9\x76\x3a\xa3\x1b\x51\xb9\x76\x61\xd9\xf6\x31\x7c\x67\x47\xd1\x25\xbd\x04\x3f\x6f\x09\x8c\x50\x02\xaf\x7d\x25\xe0\x3a\x62\x4c\x90\x55\x82\xd6\x1d\x9a\xae\x53\xd6\x58\xd6\x54\x86\x24\xad\xcc\x52\x58\x00\xe7\xf3\xfd\x5c\x5e\xc6\x3a\x23\xe7\x3a\xc0\x55\xce\x98\x50\xaa\x04\x9e\xc5\x25\x78\x16\x5e\x86\x3b\x95\x90\x35\x86\xec\x63\xf8\xf6\x5f\x09\x59\xfd\x7c\xd7\xbd\xb3\xce\x3c\x55\x86\x73\x85\xf1\xe5\x05\x37\xee\xef\x67\xf3\xf6\xfa\x57\x56\x35\xbe\xea\x9e\x73\x17\xe7\xac\x71\xae\xc3\xeb\x4e\x12\x38\xf6\xa1\xf9\x1c\x9e\x59\x39\xb1\xbd\xa9\x31\xc0\x58\x6d\x04\xfb\x2b\x81\xd7\xb4\x12\xa6\xdb\x58\x23\xcb\x96\xc6\xb0\xdc\xd8\x97\x38\x9f\x9b\xb4\x14\xdc\xee\x47\xdf\xaa\x12\x1e\xb5\xf7\xb8\xc1\x93\x74\x1d\x1e\xcd\xd9\x9b\x01\x3a\xab\x4c\xeb\xf0\xb8\xf3\xc7\x27\xba\x16\xe0\xcb\x7c\x3f\x7d\xec\x9f\x0c\x56\xa2\xd6\x16\x98\x2e\x41\x31\x79\x25\x6a\x4f\x43\x2b\x10\x8c\xb9\x6a\x4a\xe4\x45\xba\xc4\x38\xfe\x0f\x63\x66\x89\x14\xcc\x0b\x70\x60\xce\x77\xac\x33\xa9\x4e\x5c\xc5\x14\x2f\x57\x62\x26\x0d\xc6\xec\x73\xf6\x9d\x01\x25\x16\xf2\xa5\xe8\xe7\x18\x93\xdc\x95\x58\xd5\x97\xea\x7d\xf9\xce\x87\x02\x0d\xc0\xf7\xd3\xbd\x86\x3e\x3e\x5f\xa2\xa9\x9f\x2e\x2f\x15\x0b\x7f\x12\x87\x4b\x34\x55\xeb\xf9\x8e\x99\x93\xae\x44\x7b\x58\x36\xdc\x28\x67\x9c\x36\x6a\x04\x0a\xe0\x50\x7e\x1c\x4c\x4a\x1c\x1a\xc6\xf0\xa9\x31\x4e\xa9\xd8\x8f\xc3\xa2\x18\x0d\x8e\x25\x8a\x8d\x44\x67\x23\x84\x26\x2b\xd2\x3b\x96\xe8\x22\x13\x6f\x3b\x05\x8a\xc8\xef\xe7\xeb\x57\xca\x7e\xde\x24\xc3\x88\x23\x49\x69\xa6\x4a\xbc\xa3\xca\xb2\x7f\xc7\x29\x7d\xb4\x84\x8f\x5b\x7d\xbf\x1b\x4d\x89\x8f\x96\xf0\x79\x5d\xab\xbe\x31\x24\xb1\xbb\xe4\x2c\x8d\x99\x6d\x0a\xb0\x3b\xde\x9f\x70\x87\xce\x74\x10\x2e\x40\xed\xf8\x7e\x36\x2f\xfb\xd6\x21\x45\xd5\x09\x2f\x61\x39\xa5\x97\x94\x38\x76\x18\x93\x82\x11\x4d\xb2\xa4\xa4\xf6\x9c\x6d\xf1\x16\x58\x92\xd8\x56\xca\x3e\xf6\xcc\xef\x74\x94\x25\x77\xee\x24\x70\x56\x49\xbc\x59\x96\xe4\xee\x94\xc4\xcc\x2a\xa9\xaa\xbd\xe6\xed\x7d\x22\x53\x49\x2d\xaa\x0c\xf3\xc2\xf4\x74\x25\xe9\x08\x4c\x70\xaa\xcb\x34\x31\x97\x44\xf1\xad\x24\xb8\xc2\x19\x33\xd1\x94\x24\xfa\x4c\x4e\x9f\x84\x29\x2a\x69\x68\x3e\x5d\xdc\xa7\xcb\x66\x49\x3a\xe6\x1c\x13\xc3\x68\xf5\x2d\x69\xa9\xbd\xf5\xfa\x29\xb2\x9f\x9b\x5b\x1e\xd8\x13\xa7\xec\xa3\x6b\x80\x4b\x7c\x3f\x7d\x0c\x9f\xc8\x54\xd2\x6d\x2a\xdb\x5e\xc6\xf6\x6e\x8d\x01\x56\xfd\x4c\xf7\xa7\x02\x74\x88\xef\x27\xd8\x16\x7d\xa5\x4a\xbe\xb8\x7e\x80\x7c\x38\xdf\xa9\xac\xab\x6c\x78\x99\xb1\x8c\xfb\x2f\xfb\x55\x80\xf0\x35\x25\x07\xf6\x25\x47\xf7\x10\xa4\x58\x94\x75\x3c\x66\xbf\xaa\xd2\xb7\xa7\xe4\x34\x55\xb6\xbc\xec\x9b\x97\xdc\x54\xd6\xdc\x37\x22\xb3\xce\xa1\xb2\xe1\xdf\x15\x96\x4d\x95\xc1\x63\xc9\x98\xe4\xa2\x64\x5e\xbb\x4a\xf6\x6b\x17\x51\x53\x4a\xa6\xa8\x5c\x00\x17\x70\xbe\xcb\x2c\xab\x2a\xf3\xf9\x24\x9d\x65\xad\x7b\x5e\x3e\x3e\x1e\x03\xb0\x49\x7f\x3f\xdd\xbd\x85\x74\x5d\x74\x24\x15\xd8\x19\x32\xfd\xf3\x4b\x69\xfc\xae\xe0\x0a\x61\x4c\x0c\x50\x4a\x27\xbd\x94\xee\xfd\xa4\xe8\x53\xba\xea\xec\x5e\x27\x59\x7d\xe9\xa6\x32\x5f\x5b\xd5\x69\xa4\x09\x98\xe2\x4f\x9d\xfc\x4e\xa2\x64\x31\xff\x8e\xf4\x59\x6c\xa9\xcc\xd7\x88\x7c\xbe\xd8\xad\x32\x1f\x03\xc5\x76\x69\x85\x8b\x07\x2a\x1b\x5d\x5d\x4b\xd1\x19\x50\xde\xb5\x55\x5f\x6e\x7d\xe7\x7c\x97\x88\x09\xa5\x3c\x9a\x33\xb8\x8a\x64\x3a\xda\x97\x2a\xda\xad\xe0\x9f\x46\xbf\xae\x52\x13\x79\x56\x75\xf1\x8d\x19\x80\x4a\xa5\xce\xae\x54\x38\xcd\x1b\xaf\xbf\xa5\xf2\x1a\x5b\x2a\x54\x29\x46\x7c\xf0\x52\xa9\x12\x29\xae\xdd\x35\x82\x6f\x96\xaa\xa3\xda\xb5\xbb\xc6\x6b\x73\x91\x76\xb7\xb8\x76\xd7\x08\x7e\x5d\xaa\xe9\x3b\xf3\xef\x28\x8a\x54\xd1\x75\x75\xda\x65\x54\x4a\xa9\xa2\x4f\xe4\xe1\x0f\xc6\xeb\x68\xa9\x9b\x67\x55\x85\xc7\x56\xee\x14\xfb\xea\x4d\x5a\xaa\xf0\x80\x32\x22\x22\x97\xfa\xa8\x2f\x2e\x6a\xd1\xb1\xb2\x34\xea\x5b\x4b\xbb\x7c\xce\x78\x85\x68\xe2\x3d\xcd\x79\x0f\xf5\xb4\xa5\x51\x0d\x51\xda\xe5\xe3\x23\xdf\x6d\xb4\xaf\x15\xe4\xc2\x3f\xdf\x7d\x73\xdd\x24\x86\x79\x08\xa0\xf1\xfa\x5b\x9a\xd6\xa8\xb9\x18\xcd\x90\xfa\x82\xa4\xf2\xdf\x4f\xf0\x02\xfa\x5f\x97\x26\x31\x1a\xe1\x6b\x41\x59\xd4\x4a\x6b\x2a\x83\x18\x6d\x44\x8e\x2d\x4d\x62\x34\x62\xbe\x42\x66\x92\xf1\xd2\x96\xbe\x83\xf7\x61\xa6\x5d\xbb\xb4\xad\x39\x83\x4b\x9f\x11\xe8\xb4\x34\x5e\x8d\x4b\x83\xc6\x32\x77\x9e\x2b\x4d\xfc\xa5\x81\xbf\x18\x23\xfb\x4a\xd3\x1a\xb5\x77\x8d\xc8\x0b\xba\xd6\x01\xe9\xbf\xcf\x77\x9d\x65\x45\x65\x38\xff\x3a\xf9\x4b\xd7\xf9\xd0\xfd\x7c\xe8\xdc\xef\xc8\xcb\xfd\xfe\x4c\xee\x14\xce\x73\xba\xd3\x6a\x56\x3a\x22\x6b\xb2\x7d\xee\xad\xa5\x4b\xe4\xed\xb0\x1e\x65\x86\x62\x97\x9e\x97\xca\xb0\x1f\x98\x63\xa3\xf4\xc2\xf9\x44\x4a\xeb\x90\x19\x3e\x57\x7a\xe5\x7c\xf6\xea\xc1\x2e\xdc\xef\x9d\x9a\xea\xd2\xe1\xbc\x6e\xcc\x93\x51\x7a\x57\x7b\xdd\xdb\xcb\xd7\xdf\xc4\xe1\x2e\x76\x87\x8c\xd0\x21\x33\x10\xaa\x20\xa5\xf3\xf7\xd3\x83\xe8\xc8\x46\xba\x6e\x57\x7d\x7a\x77\x28\x32\xf5\xa9\xa9\x71\x6f\x5c\x23\x8b\xe9\x12\x6b\xbb\x8b\xb5\x8c\xa3\x29\x5d\xb7\xab\xbe\x7d\x18\x14\xb5\xfa\x56\x3f\x5d\xe4\x35\xb5\x77\xf3\xe8\xec\xb7\x47\x56\xf0\x58\xed\x22\xb5\xfe\x92\x1a\x8f\xce\x2e\x52\xeb\x2e\xf2\x32\x3d\x78\x31\x6a\xbf\x8b\xc7\xd8\x65\xe3\x16\x34\x69\x61\x3c\x76\x2e\x53\x73\x5c\x4c\xb7\x32\x0f\x4e\xb3\xcc\x5b\x92\x69\xcb\x7b\x48\x59\x36\x1e\xc7\x88\x20\xfb\x7e\xde\x5e\xf6\xad\x83\x49\x3c\xf5\x60\xa4\x4c\xbf\xc7\x62\x74\x87\x28\x1e\x20\x94\x8d\xdb\xd3\x74\xe3\x7e\x03\x7f\x18\x0f\x5b\x8c\x26\xda\xe2\xe1\x24\x99\xa9\xbc\x0b\x42\x41\xbe\x9f\x60\x77\x8c\x93\x28\x46\xf3\x6d\xf1\x80\x88\x6c\xbc\xea\x98\xc8\xd0\x5e\x32\x24\x2b\x34\xdd\xd8\x3c\xb4\xc0\x08\x4b\x58\x10\x27\xf0\xfd\x6c\x30\x32\x5f\x5c\x07\x1d\xb9\xee\x60\x6f\x59\x63\xa0\x06\xb1\xb8\x2b\xb9\x11\x4f\xaf\xc0\x43\xf9\xfb\x09\x13\x19\xdd\x99\x8b\x6d\xd5\xb9\xdd\x6f\x92\x6c\x04\x3e\xc2\xdf\x4f\x98\x99\x99\x52\xbc\x98\xe8\xd3\xdd\x80\x0b\x03\x98\x8a\xe9\x6a\xe5\xae\xb9\x4a\x08\x58\x4c\x74\xe6\x1e\xa5\x46\x44\xb5\x32\x74\x7c\xb8\x77\xa5\x11\xca\xac\x0c\xd1\x19\x12\xe8\x06\x2b\x64\x93\xc8\xa0\xfb\xfd\x84\x83\xfb\xc5\x2b\xd2\x90\x58\x3b\x20\xd6\x16\xa6\x31\x2f\x43\x57\xa4\x81\x88\x3b\x2b\x9f\xb6\xbd\x0c\x69\x6f\x06\x22\xd8\x8c\xc1\x66\x65\xe8\xd8\x81\xa3\xda\x29\xfb\x68\x62\x48\x34\x18\x2e\x1a\x30\xd2\xa4\x0c\x69\xed\x06\xb4\x76\xe5\xa2\x86\x6d\x88\xf7\x0c\x17\xb5\xe8\x00\x5e\x86\x78\x08\xf2\xb3\x9e\xb2\x6f\x3e\xc7\x22\x2d\x0d\xb8\xdd\x17\xa6\x3d\x2f\x43\x57\x6a\xe4\x59\x0d\x56\xb8\xdf\x87\xd6\x76\x40\x6c\x30\x69\x3e\x86\xd6\x6f\xf8\xfa\x11\xec\xa7\x0c\xf1\x90\x71\x7b\x5f\x28\xf2\x0e\x5d\x9b\xc7\xe3\x75\x52\x9d\x30\x2f\xce\xe7\xbc\x7c\x8d\x28\x9a\x23\xe9\xe8\xf7\xd3\xeb\xe4\xb5\x79\x6a\xae\x91\x0b\x34\x14\x3a\x18\x94\xa9\x3d\x3d\x8b\x3b\x64\xa8\x3d\x1d\x2d\x13\x47\x4b\x91\x16\x14\x49\x41\xbf\x9f\x4e\xbb\xdc\x9b\x93\x46\xfd\x82\xdc\xa0\xa1\x30\x35\x49\x41\x72\xd0\xef\x27\xf6\x18\xdd\x98\xca\x6c\xea\x67\xf3\x7e\x52\x4b\x38\x25\xee\x4f\x84\x56\x99\xd4\x25\x53\x9a\x9d\x09\xcd\x4e\xb9\x28\x9a\xcf\xae\x39\xeb\x3e\x67\xe4\x3d\xd3\xd4\x17\x7b\xcb\xbe\x75\x98\x12\x61\x26\xae\xbf\x45\x9a\xce\x39\x35\xbe\xe9\x65\x54\x97\x4c\x9a\xf5\xcb\xf4\xd8\x12\x69\x25\x27\xcd\xfa\x05\x39\x3f\x43\xa1\x1b\x54\x99\xba\x76\x4d\x5c\xad\x0a\x1d\xa1\xca\xdc\x2a\x73\xfe\x42\xb7\xa6\x32\x75\x8e\xcd\x37\x50\x20\xb1\x2f\xba\x52\x4f\x44\x04\x14\x69\x2c\x91\x14\xf4\xfb\xe9\xfd\xe4\x9e\x9e\x3a\xff\xe6\xfd\x06\xbb\xa8\x4e\xb5\x77\x3f\xff\x47\x20\x4c\x99\x8f\xe6\xf3\xf1\x79\xa1\x76\xf1\xff\x65\xec\x3b\x8e\xac\xe9\x79\x5e\x53\xf9\x43\x68\x39\x92\xda\x7c\xb9\xc8\x74\xe7\x1f\xc2\x2d\x41\x73\x80\xe7\xee\xde\xdd\xd4\xa8\x4e\xcb\xd3\x42\xe0\x92\x39\xb5\x60\x4e\x75\xf2\x82\xb4\xc5\xac\x71\x5b\x17\x00\xae\xe8\xe2\x62\xe6\xad\xad\xe7\xf6\x47\x93\x7e\x49\x2e\xa1\xe6\x67\xea\x0a\x69\x2d\xb9\xdb\xab\xdc\x39\xf0\x8e\x2d\xdd\x95\x55\xef\x3e\xfc\xe0\x79\x6d\x55\x8d\xb3\xde\x39\xfc\x20\x08\x6d\xc9\x8c\x5e\x30\xa3\x9b\x42\x61\x4b\xae\xce\xba\xc0\x26\x56\x4f\x6f\x8b\xd9\xd8\xb6\xee\xbb\xb8\xc4\x28\xf6\x52\x98\x65\x01\x3e\xd2\xf9\x3e\xbb\x2d\xb9\xf7\xeb\x3e\xc2\x4a\xd4\x01\x6b\x6a\xcd\x26\xee\xa6\xc2\x41\x4b\x21\x11\x94\x4f\x4c\x2d\xd3\x05\xdc\x5a\xcf\xfd\xdc\x67\x7d\x34\x09\x37\x21\x1d\x6d\x23\x84\xd6\x58\x11\xbd\x6d\xb9\x80\xfb\xba\x80\xd6\xd4\x36\xd5\xb6\xee\xef\x7e\x6b\xb6\x99\xc9\x6c\x1b\xe1\xae\x4e\xfe\xf6\xb6\x75\xa7\x77\xfc\x7d\xf3\xb7\x47\x9b\x59\xea\xb6\x91\xa5\xee\x0a\x85\x6d\x02\x9f\xda\xbe\x6f\xaf\xc8\xdc\xd4\xb6\x42\x99\xa8\x36\x77\xda\xd8\x9f\xee\xc3\xbe\xf7\x21\x53\x07\xec\xb7\xa9\xed\xae\x27\x23\xea\x28\x43\xf7\xfb\x13\x76\x88\x79\xff\x6f\xe6\xf0\xfe\xd4\xe5\x7d\x62\x92\x35\x7d\x05\xea\x37\x5e\x8a\x74\x45\xca\xb6\xbc\xf8\xfd\xdd\x69\xd0\x2b\x7b\x95\xf4\x79\x11\x21\x6d\x2c\x57\xda\x5e\xa9\xe3\xf7\x1e\x6d\x3e\x1b\xbe\x18\xf5\xdf\x9f\xf7\xf5\x13\x8f\xef\x2b\x4f\xe1\xb5\xfb\x4d\x26\x61\x5e\x99\x76\x2f\x1e\x1a\x77\xe3\x31\x7c\x25\xb2\x51\x8c\x2d\x75\xa2\x98\xda\xab\x88\xe5\xeb\x77\xee\x34\x09\x5f\x79\x8f\x2f\x92\xca\x4d\xd1\x9b\x57\x11\xaf\xd7\xff\x5e\x9e\x36\xb6\x69\x7e\x78\x83\xdb\x9d\xd1\xcc\x97\x68\xea\xf6\xe2\x21\xa4\x5e\xbc\xb4\x57\xa6\xdd\x7b\xaf\x0b\xab\xf6\xb5\x57\x91\x01\x60\x0e\x4e\x1b\x7f\xa7\xc8\xc0\xbb\xff\xde\xa6\xb0\x3f\x1d\xb5\x17\x47\xad\xf3\xd5\x52\x7b\xe5\xad\xbe\xf7\xb9\x96\xa2\x29\xaf\x4c\x03\x60\x15\x4e\x1b\xfb\x93\x58\xbe\xe0\x85\xee\x54\x03\xef\xab\x35\x83\xc8\xee\xae\xb1\x7c\x9a\xfb\x77\xe7\xce\xe8\xf7\x2b\x93\x02\xe5\xd7\x4e\xdb\xef\x77\x9f\x44\x2f\x0a\xa5\x25\x95\x0a\x6d\x9f\x12\x88\x1f\x12\x88\x4d\x11\x9a\x4f\x09\xc4\x2f\xdd\xf5\xa4\x8a\xf8\x94\x2c\xfa\xf2\x1d\x0b\xd5\x80\xc0\x0b\xed\x82\x17\x9a\x22\x34\x9f\x44\xe8\x77\xa3\x45\xae\x6f\x9a\x7e\x67\xf7\x77\xa6\xb6\xae\xb6\x7d\xdb\x7e\x6b\xfd\xe9\x7c\x7e\xd7\xa4\xe0\x73\xd1\xf6\xe9\x2c\xa1\xc0\xd8\x69\xe3\xef\x88\xd5\x6a\x5f\xdc\xb5\xa6\xa8\x10\x40\xa1\x7d\xd7\xa4\x50\xa4\xe5\x93\xa8\xff\xfa\x7d\xe1\x4b\x13\xe6\x53\xa6\xe8\x43\x32\xba\x11\x68\xd0\xf0\x68\xe9\xf7\xe7\x1d\x0b\x4d\x98\x4f\x6e\xf3\x77\x5f\xeb\x92\x8a\xa9\x7d\xca\x06\x7d\x48\x46\x77\xa7\x8b\x2b\xa4\x60\xbb\x48\xc1\x4e\xb2\xef\x26\x60\x43\xbb\xc0\x86\xc6\xc7\xba\xed\x93\xb9\x01\x1c\x43\xea\x4e\x77\xf4\x53\x04\xff\x82\x17\x1a\x6b\xd9\xb4\x4f\xf7\x01\x38\x86\xf3\x3b\xce\x5d\x26\xef\x05\x2f\x74\xd2\x4c\x37\xd4\xe4\xfa\xfd\xb9\x6e\xdb\xdf\x37\x4d\xf8\x43\xbb\xf8\xc3\xce\x67\x7e\x26\xe4\xb8\x5d\xe4\xb8\xde\x28\x9b\xb0\xe3\xf6\x5c\x5e\x18\x16\x5f\xb1\x87\xb8\x66\xbb\x00\x85\x46\x80\x82\x09\x9d\x68\xcf\x65\x03\xe1\x93\x51\x7b\x08\xe6\xb1\x5b\x13\xab\x33\x72\x6c\x4f\xfb\xd8\x66\x57\x2e\xfd\xcc\x4c\x43\xfd\xaa\xdf\x9f\xb8\x47\xac\x38\x62\xa8\x4c\xf5\xfb\x73\xdc\x36\x7e\xd3\x34\xbf\x7b\xae\x49\xef\x61\x8f\xa9\x3f\xbf\x44\x16\x95\xfd\x11\x5c\x63\xa8\x19\x75\xc6\xc2\x6f\xf2\xec\xda\x03\x70\x4d\x27\x1f\xb1\x3d\xa1\xfe\xe2\xaf\xbf\xf8\xb5\x75\xfd\xee\xba\x5d\x0c\xa5\xd8\xd3\x35\x96\x71\xc7\xd2\x38\x96\xa1\xb1\xdc\xf7\xec\xbf\x07\x39\x8f\x09\x2c\x61\x78\x9a\x92\x1a\x8b\x5e\xd8\x33\x35\x96\xab\xe2\xab\x71\xcd\xb6\xf6\xef\x02\x68\xc8\x6d\x6b\x0f\xcf\xa0\x3d\x57\x26\x93\x7c\xdd\x9e\xad\x71\xde\x17\xb3\x2c\x20\x61\xcf\xa7\xf3\xf2\xfd\xb5\xb1\xbf\x4f\xfd\xe1\x89\xa7\x2a\xe4\xda\x43\x57\xdc\x9e\x2b\x5b\x19\x86\xb0\xc4\x28\xa1\xa5\xe7\xde\x95\x9f\x2c\xb0\x44\x33\xcc\xd2\x35\x6b\x09\x7a\x30\x01\x30\x2c\xa5\xfb\xcd\x1f\x42\xd6\x52\x9e\x6c\x03\x80\xa6\x33\x72\x6c\x89\x66\xad\xe1\x31\xcc\xf9\xdd\x6f\xff\x12\x43\x3e\x96\x70\x76\x1b\x69\x91\x2c\x55\xf5\x77\xcd\x37\x52\xbe\x5b\x6a\x9a\x43\xfb\x7b\xed\xcc\xf9\x11\xd7\x6d\x28\xa0\x94\x3a\x99\xe0\x2d\xe9\xcc\xa7\xeb\x02\xb6\x5f\x54\xd2\x04\xce\x30\xd4\x51\x3a\x6d\x9c\x3b\x43\x45\x06\x9c\xc6\xf9\x26\xc7\x42\xa0\xa4\x25\x00\x25\x1b\x09\xc8\x2d\xb9\xd6\xf3\xda\x0c\x24\x17\xb7\x44\x33\xd3\xd2\x65\xe5\x20\x0d\xb8\xe9\x45\x85\xa5\x6b\x9a\x33\xd4\x60\xa9\x6b\x0e\x20\xab\xe8\xa4\x85\xb5\xd4\xb5\x2e\xc8\x42\x34\x82\x3a\x2c\x0d\xed\xd1\x35\xdb\x59\x98\xd2\xd2\x54\xdb\xbc\xfb\xf7\xcb\x26\x58\x5a\x5a\x17\x64\x4e\x1b\x69\xaa\x2d\x6d\xed\xed\x95\xad\x8c\xa8\x5b\xfa\xb4\x2e\xdf\x5d\xcf\xc6\xb9\x7f\x5a\x97\xef\xde\x87\x9f\x3d\x68\x7a\x17\x62\x17\x0c\xd2\xf8\x62\xca\x32\x33\x45\x96\xaf\x9b\xc0\xf0\x85\x65\xbe\x28\xb2\x9c\xee\x7a\x9a\xfd\x27\x73\xd8\xb2\xc4\x79\xbe\xe2\x9c\xcf\xd3\x2c\x17\x7d\xb6\xdc\xad\xe0\x14\x33\x9f\xf5\xd8\x1f\x8e\x84\x41\x7c\xcb\x3a\xf6\x28\xfc\x73\x7e\xf7\xdb\xc2\xac\x63\x8f\xa2\x3f\xa9\x91\xf6\xc5\x04\xf1\xb6\x0c\xe6\xa3\xce\x20\xbe\x65\x02\xfe\x0d\xe5\x7b\x4e\x1b\xfb\xa3\xd9\x60\x39\x2e\xed\x49\xe7\x38\x99\x5c\xb4\x1c\xf7\x58\xf0\x0a\x0a\x63\x62\x17\x63\xd2\xc8\x91\x65\x02\x91\xd8\x05\x91\x34\xf2\x7e\x5a\x96\x28\xcc\x57\x14\x5a\xe2\xef\x96\xd6\x13\x64\x0f\x9d\x0c\x12\x96\x75\x9c\x32\xd4\x7f\xe3\x1b\x7a\xcb\xc4\xd6\x1a\xca\xd2\x9c\xdf\x71\x9c\x4b\xfd\xad\xbf\xfe\x8c\x6d\x9a\x3b\x30\x8f\x22\x65\xb2\xbc\xb5\x47\x37\x4a\x41\x92\x4a\xcb\x34\x1b\xec\x82\x4f\x1a\xc1\x20\x96\xb7\xd6\x1a\xec\x08\x8d\x34\x8c\x96\x5f\x8d\xe5\x46\x1b\xe8\x1d\x5b\x66\xb4\xc1\xf2\x77\xe7\x4e\x35\x2e\x80\x89\x5d\x80\x89\x78\x88\xac\xf0\x09\x88\x95\xbf\x27\x20\x54\x9d\x02\x83\xd8\x05\x83\x34\xd2\x8d\x58\x21\x9e\xdc\x2e\xe0\xa3\xf3\xd1\x96\x95\xaa\xdf\x21\x32\xd0\xbb\xfa\xab\x5c\xb3\xd2\xee\x9a\x51\x4c\x16\x89\xc2\x72\x45\x21\xeb\xa3\x59\x71\x8d\xd3\xef\x38\x7f\xde\xb1\xe9\x29\x81\x95\x1b\xf1\x62\x09\x30\x43\x9d\x95\xdf\x9f\x10\x15\x24\x86\xb0\x42\x33\xd3\xca\x25\xa0\x21\xfb\x92\x95\xa1\xb1\x5c\x33\x93\xb5\x8b\x4c\xcf\x13\xac\xfc\xed\x3b\xef\x6d\xd9\x1a\xe7\x75\x91\x8c\x77\xac\x48\xe5\xa2\x98\x48\xea\x5d\x73\x78\xb5\x66\xef\x5d\x6b\xaa\xc0\x22\x91\x76\x81\x1b\x8d\x4f\x2c\xac\x32\x4a\x61\xf5\x46\x29\x8c\xf7\xb6\x32\x5b\x62\xf5\x66\x4b\x48\x2a\x6a\x95\xd8\x53\xab\xf9\x9e\x79\xce\xaf\xe6\xa5\xb6\x7b\xe6\x79\x6f\x2b\x13\x7a\x56\xcb\x9d\x03\xe5\x52\x25\xb8\xc6\x2a\x88\xa7\x9a\xff\xa2\x84\x56\x75\xdf\x2b\xd4\x47\x63\xdd\x23\xab\x43\xe3\x04\xab\x4f\x23\xdf\x87\xd5\xb1\xd5\x76\x89\x64\x78\xc7\xea\xe4\xde\xd6\x1b\xc5\x26\x95\x8d\x55\xc9\x82\x7a\x99\x60\xe8\x1e\x5a\x5d\xfa\xe6\xba\xdf\xcc\xfc\xe6\xab\x71\xde\xa8\x88\x17\xfe\x8e\x51\x11\xab\x48\x7e\x37\xe7\xb9\x6e\x5a\xcf\x86\xe7\x81\xcd\x79\xce\x1a\xb1\x7d\xd6\xca\xa5\x33\xe3\xb9\x6e\x92\xd7\xed\x9a\x29\x04\x8a\x58\xd3\x3d\x6a\xf5\xb6\xf1\x5c\x37\x46\xaa\xad\x81\x06\xe0\x79\x68\xd2\xb7\xa6\xfe\xae\x5b\xe9\xc6\x71\xca\x84\x69\xc7\x84\xc9\xcf\x43\xb3\xa1\xc9\x4c\x69\x37\xec\xc1\xea\x38\xd6\x64\x7e\xb7\x6b\x7e\xb3\xb0\x8d\x35\xd7\x58\x2e\x8b\x99\x5c\x96\xc6\xd0\x86\x81\x42\xff\xb4\xfd\xe4\x59\x0b\xf5\x77\xf9\xc0\x58\x78\xc6\x9a\x4c\x91\xf6\xc7\x9e\x15\xfc\x66\x9f\x6a\xbb\x6b\xcd\xfb\xd0\x74\x96\xda\xdf\x59\xea\x5c\x6b\x99\x22\x17\x44\xd2\xc8\xdc\x68\x8d\x8f\xd3\xac\xcd\xcb\x1d\xc9\x33\xdf\xf8\xc4\xc9\xf0\x3a\xf1\xac\x19\x7f\x27\x7d\x74\x9f\x1d\x36\xb9\x10\x6d\xea\x9b\x78\xb8\xf6\x10\x2f\x6f\x6d\x69\xee\x28\xeb\xfa\x10\x2f\x6f\x6d\x69\x9c\xa0\x13\x6a\xac\x21\x62\x4d\x67\xb0\xbd\x97\x73\x84\x7a\x0c\x5c\xf6\xbf\x3f\xfb\x6d\xe3\x9a\x49\x77\xb4\xf7\x8e\x93\xee\x61\xfb\x74\x76\xbf\xdb\xc6\x33\x61\x0c\xaf\x99\xa1\x3c\xd9\xc3\x6c\x97\x19\xc1\x4a\x06\x56\xfb\xf3\x3b\x63\x5b\x57\xdb\x7d\x50\x9a\xf5\x3b\x9e\x79\xfb\x7b\x60\x57\xd8\x1f\xc3\x2c\x66\x37\xcc\x42\x66\x1f\x33\x66\xe5\xec\x92\xe2\x3f\x4f\xd5\xef\xf4\xcd\xfc\xc7\x08\xc4\xfe\xb2\xbe\x99\xef\x5a\x53\xc7\x99\xdc\x5f\xbb\xee\x2f\xab\x48\x98\x49\xd6\xd9\xb5\xc1\x08\x30\x31\x93\xde\xb4\xab\x37\x65\xee\x0b\x20\x64\x60\xb2\x3f\x6d\xfc\x26\xb3\x4f\x76\x29\xe6\x9f\xe7\x9f\xb6\xad\x36\xdc\x77\x99\xd8\x7a\x36\x6a\x66\xf7\x0c\xd2\x75\x14\xb0\xc8\xec\xd2\x25\xf2\xd9\x9b\x09\x3c\x64\x00\x0f\x9d\xdf\x75\xb6\x69\xcd\xec\xf6\xe7\xec\x4f\xae\x87\xdd\x70\x65\x50\x3f\x98\x5c\x0f\xbb\x77\x5a\xe6\xb7\x85\xd6\xf3\xea\xe2\x63\xd3\xfe\x27\x73\xd8\x42\xdb\x1b\x77\x7b\x29\xb6\x4c\xe2\xc0\xae\x38\x08\x7a\x8f\xd6\x35\x9c\x6b\x2e\x92\x95\xc9\x4c\x5e\xb5\x5d\xaf\x5a\x66\xad\xe9\x7a\xda\xba\x5b\xe1\xfc\xdd\xd2\x37\x6f\x02\x8a\x14\x81\x66\x5b\x4b\xb3\xef\x71\x0a\xb5\xe9\x58\xa0\x32\xc5\xf3\x68\x9c\x5b\x5b\x71\x13\xdc\xac\x47\x60\xa6\xab\x6b\xef\xb8\xbf\xe3\xf1\x7d\xb5\x4d\xe0\x28\x79\xf8\xac\xc1\xc0\xc0\xfe\xfb\xf3\x92\x36\x25\x8e\x45\x9e\xfa\xc5\x63\x35\x52\xfb\x9a\xc9\x24\xb4\x6b\x12\x76\xaa\x0f\x80\xb0\x7e\x7f\x5e\xd5\xc2\x35\x73\x79\xf1\xfe\xfc\x31\xfb\xfe\x8e\x85\xcb\x9d\xf1\x7b\x75\xc9\xf7\x6f\xce\x97\xf5\x06\xca\xf6\xd4\x08\x76\x31\xcf\x9c\x83\xe7\x2b\x62\x18\xa1\x71\x46\x4f\xcd\xef\xf5\x24\xe1\xbe\xb9\x54\xae\x03\xd4\xd1\x48\xbe\x6f\xce\x24\x8c\x79\xc5\x59\x62\xc2\xd2\x9c\xa0\x0e\xbb\x18\x2f\x71\x85\x99\xb7\x7f\xda\xee\x38\x79\xcd\x5c\x51\x26\xbf\xd1\x53\xf2\xd0\x9b\xbb\x7e\xe7\xf7\x77\x3c\xbb\x60\x0e\xff\xfb\xf3\x32\x43\x92\xba\xdd\x5c\x9e\xb3\x77\xa8\xe3\xa4\x7d\x20\x8e\xd2\xbc\xdf\xf3\x42\xd5\xe9\x52\x57\x3e\xff\xbe\xc9\xdf\x4d\xad\xd9\x8d\xee\x13\x98\x62\x2e\xd3\xd5\xaf\x5b\x42\x0e\x00\x73\xb9\x25\xbe\xef\x58\x18\x19\x70\x79\xdc\x80\x9e\x9d\x36\xf6\xf7\xea\x9b\x37\x5a\xc4\x97\xfe\xe6\x7c\x9a\x61\x0e\xb7\x44\x64\x7a\x26\xbc\x99\x01\x6f\x96\x1f\x26\x6b\x2d\x88\xed\xb3\x00\xb6\xcf\x48\x48\x6a\x21\x93\x37\x2e\x1f\x37\x9f\xe0\x59\xe8\x9c\xc5\xd1\x08\xe7\x9b\x6c\xcb\x14\xcb\x71\xc9\xb0\xf9\x3c\xcf\xa2\xa8\x0d\x8c\x48\x0f\x39\x20\x2d\x98\x3c\xb5\x28\x97\x10\x90\xf7\x28\xf8\xdc\xd1\x02\xcf\x1d\x8d\x40\x18\x0b\x3e\xf3\xb1\xa8\x77\x0e\x34\x5d\x43\x6a\x20\x70\x06\xed\xa1\x79\x1a\x4d\xeb\x82\x24\xa1\xc9\xdc\x88\xae\xb6\xcb\x10\xfa\x68\xcd\x86\xe6\x30\xee\xfc\x18\x3d\x0d\xb9\x33\xc0\x9d\x25\x93\xea\x0c\x9d\xa5\x0b\x36\x33\xa9\xc7\x60\xa6\xc8\x62\xde\xfd\x63\x14\x34\x64\x62\x07\x4c\x6c\x7b\xa8\x02\x43\x51\x49\x60\xd2\x4e\x9b\xb3\x4d\xfd\xc1\x0d\xb2\x87\x91\x96\x78\xf5\xbb\xf7\xfe\x8e\x26\xaf\x00\x65\x16\x97\x3a\x4e\xfa\x21\x18\x35\xb7\x00\x5d\xd7\x93\x18\xa1\xe9\x8a\x2e\xfe\x11\xcb\x13\xf0\x61\xa0\xe3\xfe\xfd\x09\xb9\xcb\xf7\x23\xd6\xb5\x0f\x17\xe0\x65\x64\x86\xb0\xde\xf4\xbb\x76\xc7\xc2\x3b\xd6\xa5\xaa\x2f\x47\xb2\xb1\x7a\x97\x81\x6d\xf8\xf7\x27\x98\xfb\x08\xce\xb0\x2e\x53\xf9\x12\xf9\xda\x43\x77\xa6\x4b\x37\xf6\xab\x1b\x93\xbe\x29\x73\xf8\xb2\xb5\x9a\xe4\x67\x9f\x1a\xcb\x35\x5d\x93\xbe\x29\xf7\xa9\x5f\xf3\x34\x53\xc7\x75\x99\xa0\x7f\x04\x96\x64\x0a\xb0\xbe\xfe\xf9\xdd\x77\x7f\xf7\xdb\x87\x2e\xf3\x14\x0c\x89\xf9\x21\x63\xa4\x0d\x99\x68\xc0\x50\x25\x4b\xd4\x1d\x43\x77\x6c\x80\x10\xdd\xc8\x62\x63\x83\x7c\x45\x36\x2a\xf6\x28\xd3\x54\x1e\xc4\x82\xda\x40\x05\x9f\x87\xf4\xe4\x36\xc8\x57\x64\x03\xdc\xdd\x96\x68\x4a\x0e\xb9\x41\x03\x91\x5c\x4b\xd4\x1d\x43\xee\xcc\x70\xe8\x3f\x26\xd4\x6d\x04\xf7\x6f\x80\x41\xc1\x58\x4c\xcb\x86\x22\xff\x63\xdc\xf5\xa4\x5e\x19\x43\x63\x19\x77\x2c\x6a\x93\x2b\x30\xd6\x6d\xa3\x7b\x38\x64\x4f\x5c\x50\x95\xf1\xc9\x98\x0d\xd9\x13\xe3\xca\x64\x66\xd3\x6d\xca\x6c\x9f\xd7\x6c\xcf\xcc\x18\x4c\x65\x83\x66\xbe\xac\xf8\x6a\x23\xee\xdd\x66\x81\x0e\xc8\xd4\x55\x53\xe1\x20\xe0\xab\x92\x91\x59\xc2\xa6\xb2\x41\x13\x9c\xef\xc6\x77\x5f\x36\xb5\x7f\xf3\x6f\xff\xa8\xc7\xa6\xee\xd1\x6c\xb0\x97\x98\x85\xb7\xc9\x2c\xbc\x5d\x70\x94\x25\xde\xbf\xa9\xbb\x32\x61\x82\x8a\xb1\xd9\xa6\x32\x3e\xf3\xb2\x4a\x27\x66\x0c\xa6\x42\x92\x33\xee\x39\xa3\x7b\x38\xf9\x9c\xda\xe6\xf8\xfe\x3f\x72\x61\x9b\x8b\xe7\x7a\x22\xb4\x68\xf9\xe1\x1c\x14\xea\xbb\x80\x24\xcb\x89\x73\x97\x4e\x9d\x57\x0e\xe6\xd4\xfe\x9b\x39\x2c\xdc\x91\x5d\xdc\x91\x65\x9a\x06\x4b\xdb\x04\x68\x4f\x32\x3e\xe5\xb1\x25\xb5\xb3\xea\xa5\x21\xe7\x75\x59\xba\x12\x0b\x45\x62\x9e\x42\xef\x71\x29\xca\xbb\xc0\xab\xf8\xf0\x39\x84\x2d\x79\x26\xcb\x2e\xf9\x39\xd5\xea\x52\xb2\x61\x21\xd9\x60\x3a\xf6\x4b\xc9\x86\x15\x97\x74\xf5\x87\x93\xb1\x15\x4d\x6d\x77\x0e\x4c\x6e\x2c\x25\x1b\x56\xbf\xcb\x4d\x15\xb1\xf8\xe4\xc1\x16\x92\x6f\xa6\xa3\xbd\x24\xee\x16\x6a\x9e\x3f\x45\xeb\x42\x2c\x9a\x2d\x60\xd1\x4c\x47\x7b\x29\x11\xb1\x2e\x3b\x71\xa6\xb7\xb3\x96\xe6\xb0\xee\x7a\xf2\x18\x2e\x1d\x8b\x75\x8e\x45\x7e\x8a\xd6\x7a\x69\x9c\x97\x36\x98\x8c\x14\xb6\xb6\xc6\xb9\xef\x38\x29\xb6\xd6\xd6\xef\xf6\xb8\x6d\x9c\x9f\xae\xfc\x42\x61\xbb\x87\x5c\xa0\xb6\x14\xb9\x5a\x7f\x04\xb7\x74\x21\x96\x5c\x88\x8b\x81\x32\xb2\x55\xd8\x26\x8e\xd2\xf6\x73\xcf\x19\x8f\xfd\x26\xa6\xda\xf6\x5f\xdd\x0e\x1e\xfb\xad\xe4\xdb\xce\xf7\xbc\x50\xfd\xef\xc2\x75\xd9\xe5\x32\x09\x27\xb5\x85\xda\xfa\x6d\xcb\x6c\xdb\x6a\x7b\x6f\xdb\x6f\xee\x5b\xa2\x62\xb7\x3f\x1a\x66\x8e\x53\x1e\xf0\x46\xe5\xa1\xa7\xd0\xdc\xd8\xa6\xdf\xd9\x5f\xed\x91\xdf\xde\x6e\x89\x91\x7d\x55\x2e\xc1\x27\xb6\xe5\xc9\xee\xb8\x6d\x85\xbf\x53\x72\x78\x5f\x35\x50\x18\x09\xdc\x72\x47\x37\x88\x31\x1f\x96\xb3\xb2\x3d\x28\xce\xf7\xb8\x6b\xc6\x84\xd7\x9e\xea\x0f\xc4\xdc\x0f\xc1\x19\xb6\x49\x6c\x63\x1b\xee\xa8\x15\x46\xe2\xf7\xd6\x7a\x5e\xc6\x65\x3e\x01\xb2\x4d\x70\x8d\xed\xf7\x9e\x4f\x9a\x29\xfb\xd5\x58\x40\x44\x2c\xb6\x67\xdb\x72\x1d\xf7\xf7\xd7\xf6\xeb\xef\x25\x6e\xda\xde\x74\xdb\x28\xea\x5f\x62\x10\xed\xbd\xaa\x85\x6c\xe3\xf6\x2a\x0a\xf3\xe6\x7b\x26\x78\x8f\x5e\x9d\xa5\x37\xdf\x62\x1e\x1c\xe7\x2b\x13\xfb\xfd\x3b\x13\x34\x99\xde\xaa\x6f\x22\xd2\x62\xac\x2d\x61\xaf\xcc\xb7\xf7\x46\x48\xc9\xaf\x6e\xaf\x64\xdd\x7b\x29\xac\x48\xf5\x67\xaf\x5c\xc0\xcb\x6a\x63\x95\x11\x3d\x31\xd7\xd8\x65\xae\xb1\x4a\xd3\x47\x00\x2f\x7b\xf1\x24\xd5\x2a\x4d\xa6\x57\xae\xdc\x0b\x57\x4e\x8c\xe1\xf6\xca\x34\x7f\x41\x7b\xf9\x54\x26\x95\x5f\x9d\x17\x90\xca\x9c\xdf\xf1\x9b\x32\xbf\xdf\x6b\x7e\x93\x3d\xc2\x5e\x99\x6f\xef\xfa\xe3\x94\xe6\xef\x14\xbe\x78\xf7\x5f\xb9\x28\xce\x4f\x51\xc2\x17\xcc\xb9\x8f\x80\x22\xaf\x42\x06\xef\x77\xe7\x4e\xd9\xf3\xf1\x79\x97\x7d\xcf\x2d\x6d\x40\xd7\xe3\x53\x58\xe0\x02\xa7\x4c\xe0\x8c\x4f\x67\xe9\x4b\x90\x75\xac\xb6\x63\x9f\xc2\x02\x5f\xbe\xeb\x59\xd9\x9f\xc2\x02\x5f\xbe\x6b\xc6\x39\x7c\x3a\x4b\x5f\xbe\x73\xa7\x3e\xfa\xe4\xe6\x7d\xb7\xfe\x0f\x19\x29\xec\x23\xbe\xdb\x3e\xe0\xbb\xad\x32\x12\xff\xb5\xa1\xb6\xbb\x0f\xbc\x2b\x1f\xb1\xdf\x06\x52\x99\xfc\xfc\x33\x3f\x9d\xa5\xef\xef\x2c\xd1\x9d\xf9\xe4\x0a\x7c\x76\xeb\xd5\xf0\x8e\x7d\xae\x6f\x5e\x9d\x5a\x69\x6a\x7d\xa1\xb9\x07\xe4\x8b\x00\x26\x9f\xdc\x84\xef\xba\x09\x64\xd5\xb0\x4f\xa6\xeb\x17\x7f\xdf\x64\x7f\xc4\x7e\xdb\x07\x1a\xb2\xe7\x9f\xf9\x09\xb4\xf2\x8d\x7b\x5e\xa8\xc7\xc4\x40\x63\x97\x81\xc6\x04\xea\xf8\xf8\xfc\xd0\xbe\x6b\xd6\x0a\xb8\xf1\x29\xbc\xf6\xad\x3b\x07\x66\x1a\xc4\xfa\x62\x97\xf5\xc5\xf8\xd6\xc3\x3e\xb9\x17\xdf\x95\x67\xff\xcc\x41\xf6\xd2\x77\xed\x25\x81\x3a\x3e\x85\x21\x3e\xd4\xc8\x7f\x08\x4c\xf1\x87\x58\x6c\x7f\x9e\x5b\xef\xeb\x77\x6f\x5d\x14\x9e\x0e\xe2\x98\xfc\x70\x7e\xfe\x10\x98\xe2\x97\x11\xc6\x08\xdc\x70\x81\xaa\xfc\x82\xaa\x8c\x00\x0c\x7f\xe8\xfa\xfb\x73\x5d\x7f\x82\x2c\xfc\xe1\xbe\xfb\x83\xe7\xcd\xc6\x42\x40\x2e\xf6\x16\x07\xfe\x28\x19\x79\xf3\x5d\xf4\xb8\x7e\x59\x58\x8c\x4c\x16\xfe\x4c\x8d\xe5\xda\x3d\x04\x44\xf8\x43\x59\xe0\xcf\x0d\x65\x12\xd0\xe2\xa2\xac\xf5\x0b\x2c\x32\xd2\x8c\x7b\xe2\xbd\x75\xe0\x73\x92\x91\x0a\xd6\x13\xdf\x5a\x79\xca\x70\x4b\xda\x4f\x66\xb9\xa8\x67\x1d\x38\x9b\x5b\xf1\xe4\xbf\x98\xc3\x2e\xf6\x59\xbf\xec\xb3\x0f\x9f\xc8\xb8\x78\xed\x1c\x70\x9a\x64\xac\x27\xe5\x89\x6a\xdc\x53\x40\x54\xb0\x3e\x93\xa7\xd0\x70\xae\x37\x40\xf0\x82\x27\x26\x87\x3d\x81\x7d\xf6\x61\x69\x79\x4f\xc4\x20\x7a\x02\xfb\xec\x43\x32\x12\x4f\x53\xdf\x9c\x97\xe0\xfe\xe1\x37\x97\x7e\x77\x4b\x4b\x10\xbc\xe0\x69\x6b\x0e\xa8\xc6\x60\xac\x66\xe6\x89\xc7\xde\x13\x12\x8f\x66\x5a\xd2\x57\xcb\xfd\x57\x1c\xe0\x97\xbc\xf1\xc4\xa8\x88\xa7\xef\x32\x35\xf2\x18\x26\x8a\x73\xbf\x6c\xb7\x46\xd6\x09\xcf\x34\x09\x3d\x3f\x10\x69\x64\x1d\xf6\xcc\xe4\xb0\xe7\xab\xaa\xc9\x2c\xe1\x99\x66\x9f\x5f\x1e\x54\x23\xd0\xc0\x33\xcd\x3e\xcf\xd7\xb3\x24\xeb\xb0\x67\x26\x53\xfc\x92\x9f\x98\xfd\xdc\x0b\xcf\x34\x09\x3d\x5f\xf5\x6f\x3f\x6f\xdc\x33\xbd\x4e\xcf\xc0\x71\x99\xf1\x4a\x64\xaa\x7f\xcf\xd7\xd5\xe1\xb3\x22\xcf\x4d\x63\xb9\xde\xbf\xf1\xba\x64\x7a\x9d\x9e\x6f\xc9\x2b\x82\x10\x3c\xf3\x95\xa8\x67\x60\x64\xcd\x8c\x63\x99\xea\x0f\x7c\xd2\x0f\x4b\x2e\x7b\xfe\xd4\xdf\x77\xfb\x73\xae\xf5\xa7\xb9\xa3\x78\xfe\xc3\x27\x40\x9e\x3f\xad\xf5\x77\xd7\xfa\xe7\x39\x7b\x21\xe6\xd8\x4b\xba\xeb\xf9\x4b\x66\x7a\x61\xa2\xcc\xcb\xad\x25\xc8\xea\x58\x5e\x24\x9a\xca\x55\x9d\xe4\x03\x75\xb1\xc0\x7a\xf9\xab\xca\xf7\x8b\x32\x79\x61\x12\xdb\x4b\xb9\x67\xf0\xe7\x5e\x78\x61\x12\xdb\x41\x12\x92\x8c\x2c\x96\x5e\x88\xb3\xf7\x52\xef\xb9\xe6\xfc\x8a\x69\x9c\x28\x00\xfa\xb0\x06\x8c\x0b\xf0\xe1\x17\xf0\x61\x64\x20\xf5\x12\x1a\x4b\xfc\x15\xf9\xe1\xdc\xbb\xda\x90\x0d\x32\xd7\x37\x87\xbe\x39\xb0\xd6\x2c\xc3\xea\x62\xf1\xf0\xcb\xe2\xa1\x92\x3e\x5e\xa6\xc6\x89\xaa\xbf\x0f\x2b\x99\x7a\x59\x5a\xb3\xeb\xe6\xb9\xbe\x49\xf0\x90\x97\x1b\x45\x23\xcb\x85\x97\xad\x7d\xd8\x77\x1f\x0a\xd7\x9a\xb8\x4d\x2f\xfb\x56\x13\x2a\xdc\x23\xb2\x1d\x78\x41\x02\xd8\x08\x50\x70\x31\x83\x78\x79\xef\x58\x78\x8f\xca\xa7\x6f\x7e\xf7\x9b\xbc\x2b\x55\x2a\xb0\x3e\x77\x3d\x7f\xa6\x96\x57\x9d\xb3\x9a\xee\x38\xf5\x3b\x46\x92\xbc\xde\x88\x3a\x81\x0d\x5e\xb3\xbe\x79\xcd\x7d\xff\x45\xae\x5c\xe0\x13\xaf\xf9\xaf\x5e\x4e\x67\x1b\xcf\xd2\x05\x98\x18\x41\x0f\x5e\x69\xbe\x79\xbd\x51\x7a\xdd\xdb\x4a\xc6\x5a\xaf\x57\xf6\xb0\xc6\xa2\x57\xbe\x03\xf1\x5a\x6f\x5d\xbb\x9f\x6b\xe5\xb5\xea\x77\xd7\x85\xf0\xdf\xb3\x3e\xaf\x55\x73\xa8\x30\x37\xf8\xcc\xc7\x6b\x0d\xb5\xf5\xdb\xc6\xb9\xd3\x55\xf5\x7a\xdd\x0b\xe2\xb4\xbd\x36\xcd\xef\x86\x52\x58\x4f\xd2\xab\xf4\x58\x05\x36\xda\xc8\xd4\xe1\xd5\xd4\xdf\x75\x63\x09\x7a\xf0\x4a\x53\xd2\xab\xbd\x77\x2c\x6c\x73\xed\x91\x43\x6f\x9a\x71\x0e\x04\x60\x78\xbd\xe1\x19\xe2\xb4\xbd\x86\xc6\x12\x77\xee\xc6\xb1\x74\xcd\xe1\x16\xfb\x0a\xca\x90\x3a\x74\x5e\x6e\xa6\x81\xe0\x05\xaf\xaf\xfa\xbb\x21\x8a\xa0\x3e\xaa\x9f\xda\xbe\x3b\x4e\xca\x1e\x71\x49\x7b\x7b\xee\xfc\x28\x7b\x9a\xcc\xb0\x76\xdd\x51\xb2\x55\x78\xd3\x19\x6c\xf7\x0c\xb2\x3e\xac\x37\xba\x09\x7e\x01\x3b\x46\xec\xb0\x37\x82\x2f\xbd\xdd\xaa\xa0\x04\x05\x78\x63\xe8\xcd\xdb\x0d\xbd\xc5\xcf\x15\xf7\x56\x35\x96\x7a\xe5\xcb\x2f\x12\xef\x4d\xfa\xa8\xdd\xac\x4e\xf0\xbc\xb4\xa6\xb1\xb4\xbf\x72\x51\xfc\xa6\x69\x0e\xf6\xff\x57\x04\xf4\xc6\x8c\xa4\xb7\x5b\x93\x30\x8c\xdf\x74\xfd\xee\x57\x49\x90\xeb\x29\xf9\x79\x19\x61\x2c\x9c\xdf\x0c\xcd\x21\xee\x7a\x3a\xe7\x4e\x30\x9d\xb7\xb8\xfb\xce\xbb\xd2\x18\x96\x73\x30\xc2\xe4\x87\x2c\x41\x2e\x00\x8d\x5f\x4e\x6f\x23\xd0\xd5\x1b\xc3\x72\xde\xae\x79\xca\xcc\xbe\x0b\x5c\xe3\x0d\x9c\xbd\xc6\xcc\xbe\x37\xd9\x4b\x6d\xff\x55\x6b\xe2\xef\x64\xba\xb6\x6b\xba\xb2\x30\x8f\x8b\x2d\xc6\xc1\x16\x93\x1f\xb2\x12\xb9\x11\x03\xec\xc0\xaf\x9c\xb6\xdf\x79\x31\x86\x36\xdc\xae\xac\x23\x23\x85\x0b\x28\xe2\x00\x8a\xe4\x47\x32\xd9\x24\x97\xac\xdc\xfe\x78\x06\x4d\xf6\x8b\x5d\x19\xe2\xff\x91\x59\xc2\x45\x07\xee\x66\x71\x7f\xda\xd9\xb6\xd5\x06\x0b\xdc\x29\xb6\x8c\xcf\xc9\xdc\xfc\xaf\xca\x32\x87\x23\xf3\xc6\xe2\x4e\xe3\x97\x50\x70\xd3\x91\xb1\x7b\x64\x88\xf7\x74\x01\x30\xdc\x6e\xc4\xcb\x79\x44\x8d\x4f\x25\xdc\xfa\xba\x6d\xfc\x1d\x13\x1f\x7e\x09\x6a\xac\xf3\x0a\x9a\x54\x27\x0a\xe7\xe7\x47\x22\x5b\x00\x0c\xff\x03\x60\x48\x64\xdb\xd6\xfc\x80\x9f\x35\x32\x59\xb8\x31\x89\xed\x06\xd8\xb8\x75\xad\x99\x8e\x85\xdd\x6a\x60\xfd\x87\xcb\x71\x81\x1e\xfc\x82\x1e\x8c\x65\x01\xdc\x25\x7e\x1c\xe5\x61\x1e\x16\xfe\x73\x97\xf8\x01\x8e\xe1\xb4\xf1\x77\x12\x23\x7e\xc5\x08\x19\x29\xdc\x75\x2c\x6e\x2d\xf8\x47\xe2\xd5\xf9\xb4\xc6\xdd\x9e\xdb\xf6\xdb\x23\x81\x10\xfc\x82\x10\x8c\x45\x03\xdc\xe9\xfd\xbb\x07\xd6\x93\xb8\x31\x77\x3e\x9b\x72\xbf\xde\x23\x41\x01\xee\x32\x7d\x7c\xde\xf5\xec\xfc\x26\x23\xd5\xee\x37\x52\x4d\xfc\x97\xbb\xf6\xc1\xff\xf6\x81\xae\x95\x4b\x0d\xf8\x55\x03\x04\x0c\xb8\xc8\x6b\x1c\xb8\x82\xe4\x8f\xe6\x2e\x53\xd9\x6f\x92\x57\xa2\x3e\xb4\xd6\x71\x8b\x52\xb3\xb4\xb1\x87\xc4\x6b\xdc\xcc\x06\x71\x5c\x1e\xba\x47\x71\xef\x51\xd0\xa4\x08\x99\xa7\x61\xeb\xff\x2b\xda\xe7\x22\x85\xf1\x88\xf7\xff\x2b\xd8\xec\xa1\xf5\x8c\x71\xc7\x49\x75\x2c\xf6\x16\x8f\x79\xbf\xf9\xcb\x18\x78\x2c\xb5\xad\xf9\xff\x15\x4e\xf6\x90\xb8\x0b\x54\x0c\x7a\x24\xce\x43\x6e\xc2\x5f\xf2\x9b\x78\x2c\xef\xe4\xc2\x75\x54\x44\x3f\x6d\xbf\xb1\x74\x99\x61\xa8\xb9\xfd\x4f\xb5\x55\xef\xcc\x22\xf9\x2d\x15\xed\xc4\xa9\x79\x97\x49\xdf\xaf\x59\x24\xb1\x2c\x36\x15\xbf\x6c\x2a\x4e\xf6\x08\x57\x42\xdd\xfb\x8d\xc8\x06\xef\x4a\x27\x66\xd5\xff\x8a\x24\x3f\xbf\xe8\x9b\xf7\xa6\x71\xb6\xbb\xd6\x94\x2f\x5d\xea\x0a\x39\xf2\xfc\xb0\x90\x89\x77\x9d\xf9\x5b\xa3\xd5\xc9\xe6\xe0\x7d\xa8\xbf\x71\xfb\x73\xce\x41\x7b\x84\xf2\x96\xe7\x9b\x5c\xb3\xa9\x6f\xae\xbb\x2e\x34\xdf\xba\x5c\x81\xfe\xb7\x7f\x34\x53\xfa\xd6\x3e\x80\xcc\xc9\x99\xf8\x77\xb1\x9b\x38\x4a\x13\xe6\x87\xef\x16\xbc\xbf\x1a\xe7\x2d\x39\x48\xde\x5a\xef\xaf\xc6\xf9\xde\x71\xfe\x32\x76\x3e\x18\x91\x75\xd4\xb7\xcb\x0f\xdf\x03\xb8\x98\x4f\xfc\x32\x9f\x38\x93\xfb\x2e\x76\x13\xbf\xec\x26\x9e\x7e\x09\x7c\x1f\x72\x01\x47\xb9\xe5\xfe\x38\xce\x41\xd2\x3e\x1f\xb7\x3c\x79\xd2\x58\x64\x7e\x5f\x56\x14\x27\xd3\x83\x0f\x62\x9c\x7d\xe0\xad\x80\xb3\xb0\x8d\x0f\xb9\xe2\x03\xae\xb8\x27\xea\xaa\xe1\x9a\x83\xdf\x39\x50\xe5\x0e\x99\xb5\x23\xee\x7a\xd2\x65\x19\xcc\x3a\xfa\xb8\x66\x2d\x19\x92\x7c\x74\xfd\x0e\x18\x75\x27\x08\xc8\x87\x74\xdc\xb8\x3a\x8e\x95\xd2\x7d\x0c\x8d\x65\xdc\xb1\xd0\x24\x1c\x8c\x90\xfa\xb8\x75\x60\x93\x7e\x37\xd5\x36\xa1\xa7\x09\x28\xf3\xc1\xe8\xbe\x0f\x44\xf7\x9d\xa5\x13\x7c\x48\x4e\x8c\x7b\xce\xc8\x10\xe1\x63\x6b\xad\xdf\xbb\xd6\xfa\xe6\xa7\x71\x7e\x77\x9c\x34\xe9\xa7\xc2\x02\xf3\x86\x05\x3a\xef\xc3\x54\xc8\x67\xe6\xbb\xb7\x0c\x43\x4c\x02\xed\x7c\xd6\xdb\xc6\xb0\xc7\xe4\x5b\x0f\x9f\xed\xee\x1f\x4d\x7a\x31\x9f\xf8\xb4\xbb\x9e\x6a\xd3\xbd\x9d\x57\x57\x49\xe7\x4c\x32\x21\xf8\xbc\x15\x91\x13\x4d\xec\xc9\x88\xb3\xcf\x7b\x37\xf3\xa3\x36\x53\x1b\xce\x2e\x93\xf4\x3e\xb5\x9e\x73\xdd\x7b\xf4\xcb\x80\xba\x58\x35\x1c\xac\x1a\x39\x3d\x3c\xf3\x4b\xf2\x73\xe5\x5b\x57\x9b\x67\x57\x19\x7a\x47\x86\xfe\xfc\xce\xd9\xb6\xd5\x76\x6b\xbf\x52\x6f\x2e\x02\x5a\x7c\xdd\xf5\x64\xf6\xde\x95\xa1\xf7\x9b\xa1\x4f\xd2\x39\xab\xab\x3f\x84\x3d\x9c\xa0\x15\x5f\x32\xbf\xd7\xbc\xa5\x2d\x79\x3e\x97\x4c\x6c\x54\xc8\xc8\x89\x4c\x47\xae\xec\xb6\xdf\xec\x76\x22\xf6\xdb\x95\xa5\xf6\x9b\xa5\x4e\xac\xaf\xea\xca\x52\xfb\xcd\x52\x27\x02\xca\x7c\xc9\x06\xbb\xa5\x36\x3c\xd3\x0d\x5a\x9f\xc6\x79\xbc\xc1\xf3\xbb\xff\xc6\x2c\xe1\x8b\xdc\xa6\xbe\xbe\x3b\x54\x5e\x97\x4d\x3c\xab\xef\x5b\x84\x93\xdc\x9f\xbe\x9f\xa1\xb6\xbb\x85\xbf\x24\x8c\x6f\x45\x3e\x76\xba\x6d\x34\x41\xb7\x22\x1f\x1b\xde\x80\x67\x5e\x17\x25\xc6\x7d\x5f\xb5\xca\xfa\xc9\xbe\x15\xdd\xd8\xe5\x4e\x9f\x26\xda\x56\x74\x63\x97\x3b\x7d\xaa\xb9\x4d\x9c\x9a\xef\x72\x0b\xe0\x53\xe5\x6e\x3e\xc5\xf2\x5d\x6f\x0d\x6c\xaa\x9d\xdd\xb8\x85\xbb\xdd\x75\xe1\x95\xdf\x3a\x4e\xfb\xef\x38\xd1\x0b\xdc\x12\xbd\xfb\x8a\x5e\xb2\x4e\xf8\x76\xb5\x21\xd1\xe9\xe4\xe9\xf4\x2d\x0f\x71\x5f\x95\x4b\xc0\x80\xef\xa1\xb1\x1c\x95\x9b\xd3\xa3\xb9\xcb\x64\xda\x30\x41\x9d\xc0\x14\xdf\x3a\xbe\x1b\x54\xe3\x4e\x50\x80\xef\xa9\xbd\x45\x01\x6c\x27\x68\xc5\xb7\xd4\xf8\x06\x51\x9e\xb3\xf2\xb7\x6f\xa9\xf1\x3d\xef\x38\x79\x95\xb6\xc4\xc1\x5e\x7f\xbf\xe3\x5a\xcb\x2d\xd9\xeb\x1e\x6d\x46\x61\x44\xb6\xe2\x97\x6c\xc5\xc9\x0b\xea\xfb\xd5\x79\x41\x52\xcb\x09\x26\xf0\x4d\xec\xb7\x6f\x3c\xdb\x70\x82\x09\x5c\x25\x64\xfc\x7d\xae\x18\xa1\x68\x7a\xf9\xc4\xc2\xdf\x5b\x3a\xb6\xf0\x0a\xbe\x7c\x95\xea\xef\xb1\x00\x73\x4a\xdc\xa3\x57\xe7\x1a\x95\x66\x4e\x5b\x61\xdb\x56\xdb\x5d\x17\x8a\x8a\x57\x67\xf7\xcd\xb7\x8d\x26\xe1\xcb\x27\xa9\xfe\xa2\x16\x61\x4a\xdc\xf7\x57\xe2\xee\x26\xf0\xbd\x30\xba\x21\x16\x16\x07\x0b\x4b\x4e\x89\x62\xf9\x95\x1b\xf4\x02\x53\xe6\x04\x28\xf8\xdb\xf4\xbb\x76\xf7\x9d\x2e\xd9\x2b\x53\xf2\x45\x6d\xd1\xc4\xca\x7b\xfe\x2a\x32\xf7\xb6\x71\xdb\xb8\x9e\xa6\x36\xbb\xfb\xce\xbb\xf2\xba\xe6\x70\xbc\xac\x9c\x88\x5d\xf4\x57\x19\xa6\x37\xee\x7a\xf2\xbc\xbc\xc4\x66\x3a\x30\x00\xc9\x0b\x23\x1f\x9f\xa2\xe6\xdf\x51\x03\x39\x25\xba\xd4\x9f\xa2\x92\xdf\xdf\xba\xd0\xbc\x51\xa9\x14\xff\xea\x1d\x0b\xb3\x4f\x9f\xd6\xe5\xfb\x5b\x17\xba\x72\x9f\x5c\xc7\xcf\xee\x99\xa0\x58\xfe\xc8\x6a\xe3\xdf\xdf\xdc\x79\xae\x95\x8c\xf6\xef\x6f\xee\x94\xad\x4a\x46\xfb\x4d\x46\x27\x56\x80\xf6\x4f\x26\xd3\xd7\xef\xba\x34\x8e\x45\x19\xb4\x0f\xe4\x97\x4e\x20\x85\xab\x16\x98\xdf\x5a\x60\x4e\x40\x84\x7f\x72\x83\x3e\x44\x7d\x9c\x80\x08\x57\xe2\xd8\x6f\xe2\xd8\x59\x86\xc3\x3f\xb9\xf7\x1f\xa2\x3e\x89\x04\x58\xfe\xc9\xad\x04\xf9\x46\x4e\x2c\x5e\x1f\x0f\xf9\xd7\x03\x25\xc3\xce\x37\x83\x6d\x4d\x6d\x90\xbb\x2c\xd1\x11\x0f\xef\x6d\x3c\xf7\xde\x12\xbb\x18\x2a\x4f\x12\xc8\x2f\xe7\x44\xe2\xac\x78\x92\x7e\x07\x26\x19\x27\xc8\x22\xc4\x72\x11\x97\xe5\xc2\x09\x5e\x88\x87\xe0\x93\x78\xae\x4c\xfe\x55\x87\x3d\xff\xd0\x38\x1d\x3a\x20\xfd\xa2\x61\xf1\xf0\x5c\x07\x4a\x3b\x9e\xdf\xb1\x8d\x11\xe0\x78\x10\xf2\xf1\x5f\x2d\xd8\xf3\x8f\xa9\x36\x9c\xeb\x6a\x5c\xb3\xa1\xf9\x01\x87\xee\x4c\xee\xc7\x43\x53\x39\x9e\x6b\x2a\x93\x75\x22\x9e\xa9\xdf\x5d\x39\x4f\xd6\x89\x78\x08\x80\x8a\x07\x25\x6b\x9c\x09\xfc\x50\xb9\x90\xb8\x75\x57\x13\xb1\x99\xf1\x10\x3f\x1b\x0f\xf0\xb3\x5e\x83\xeb\xf2\x6a\x7e\xef\x3d\x4b\xbf\xbb\x12\x49\x7b\x9b\xae\xcd\x50\x7f\xd1\xc5\x48\x7c\x7f\x10\xa8\x1c\x92\x13\xf9\xde\x43\x6c\x15\x71\xd9\x2a\xbc\xfd\xdc\xd1\x48\x4c\xfc\x47\x42\xe2\xdf\x59\x6a\x23\x94\xdd\x8e\x9b\xdd\x4e\xf9\x97\x8d\x0d\x95\xf6\x88\x74\xef\x34\x89\x2a\x23\x99\xc6\x69\xb7\x24\x7b\xe2\x38\x5d\xfd\xf9\x5f\x7f\x9c\x9f\x6b\x0e\x7e\xe7\xc0\xb3\x9b\xf8\x8c\x37\xd2\x75\xad\x48\x62\x19\x89\xcf\xfd\x23\xe1\xb9\xbf\x93\xc4\x32\x52\x68\x0e\xa8\xf6\x9d\xf2\x4f\xc7\x45\x22\x00\x2a\x12\x00\x50\xde\x78\x8f\xd2\x54\x7f\xe7\xbe\xe7\x94\x2b\xbf\x49\x3d\x1d\x69\xdd\xfe\x0a\xd7\x9a\x26\x68\xa4\x6b\x82\x92\xc0\x2c\x12\xdf\x11\x44\xba\x85\xf9\x9b\xda\x08\x06\x89\x5b\x2e\xc4\x1b\xef\x51\xfa\xb4\x7f\xc8\x98\x3b\xc1\x12\x91\xe9\x52\x07\xaa\x8a\xe6\x94\xff\x69\x73\xb5\xdd\xfe\x7e\xe1\x8b\x10\x7b\x44\x20\x9b\x9e\xbc\xfd\xec\xcf\xc8\xcc\xd4\x46\x4e\xb7\x3f\xde\xa3\x4c\xbc\x7c\xe4\xab\x8b\xff\x2b\xb3\x44\x64\x7a\x26\x71\x8b\x95\x3a\xf1\x19\xa1\x24\x7d\xe4\xeb\xc5\x93\x53\x33\x54\x5a\x34\x50\x5a\x34\xa7\x6c\x9c\x86\x69\x38\x76\x87\x13\xfc\x9d\x6b\x69\x3c\xdf\x36\x4e\x83\xde\x5c\xe4\x1b\x29\x6b\xbf\xa8\x4f\x64\x26\x0d\x22\xf7\x7b\xd4\x3a\x97\x54\x62\x04\xd5\x41\x72\x22\x6c\x3c\xf2\xd0\x1c\xc6\x3d\xf6\x5d\x6d\xda\x0a\xe0\xe9\x12\x21\xe5\x91\x87\xe6\x37\xee\xfc\x34\x87\xa1\x6d\xba\x9e\x3a\x19\x29\x22\x4f\x7d\xf3\xaa\x24\xfb\xa9\xab\xc8\x53\x5b\x88\x17\xc0\xce\x32\x23\x91\xb7\xe6\x70\xa3\x3e\x64\x9d\x88\x4c\x55\x16\xf9\xaa\x32\x02\x3e\x22\x6f\xad\xf5\xbe\x63\xe1\x15\xcc\xaf\xe6\x7e\x23\x42\xc6\x2b\x98\x75\xb4\xf3\x77\xaf\xa0\xd6\xf3\xd3\x5a\x5f\x35\x47\x93\x3e\xf2\xa7\x3d\x42\x72\xd8\xed\x67\xc2\x44\xd1\xb1\x2f\xcf\x1d\x27\xaf\xae\x80\x06\x01\xa0\x41\x4e\x74\x05\xa2\x10\xef\x19\x05\xd5\xd8\x13\xab\xd9\x45\xa1\xb9\x18\xe5\x9a\x8b\x24\xa7\x8b\x42\x5a\xf0\x00\xe6\x20\xb9\xfd\xcc\x9b\x28\x04\x91\x44\x29\x77\x1f\x28\x2a\x0a\xb1\x45\x71\xcb\x8c\x38\xd9\x2a\x42\x65\x46\xa2\xdc\x48\x04\x4b\x96\x46\x09\xfd\x2e\xee\xef\x1a\xc7\xd9\x35\xce\x7e\xc7\x49\x11\x5a\x98\xd9\x88\xd2\xe7\x6d\xe3\x37\xf9\x14\x24\x40\x32\x91\x13\xdd\x8b\x28\x52\x81\x00\x21\x24\x67\x42\x36\x0a\x23\x42\x51\xd6\xdf\xef\x38\x87\xa5\xdf\xad\x3b\x4e\xe3\x58\xb6\xfa\x7b\x61\xda\xd1\xbd\x08\x95\x04\x89\xf2\xdd\xb9\x53\xad\xaa\xec\x47\xdc\xb2\x1f\x4e\xd2\xc5\xa8\x7c\xdd\x1d\x00\x05\x9c\x6f\x06\xdb\x96\xda\xee\x79\x09\x7e\x93\x66\x74\x20\x51\x9d\x13\x09\xef\xa2\x32\xa2\x1e\xf5\x46\xd4\x99\x20\x0d\x25\xaa\xa3\xfa\x9d\x03\xc5\x72\x9d\xfa\xe6\xbc\xdf\xfc\x99\xfb\xa1\xd2\x1e\x71\x4b\x7b\xb8\x27\xfd\x8e\x73\xaf\x57\x7d\x38\xef\x5f\x5d\x6a\xdb\x77\xad\x29\xeb\x1a\x5f\xa1\x47\x43\x95\x38\x27\x43\x44\x34\x99\x68\xed\x9a\x68\x24\x09\x8c\xc6\x48\x59\xb4\x1b\x29\x63\xb2\x2f\x94\x1c\x8e\x9b\x1c\x4e\xe5\xe7\xc2\x47\xa3\x9b\x1e\x20\x68\x38\x6d\xec\x8f\x89\xff\x68\x48\xfc\x3b\x33\x7d\xa1\xf2\x1d\x81\xbc\x6d\x4e\xc4\x38\x87\x98\x10\x02\x4c\x08\xa7\x8d\x63\x19\xfa\xe6\x35\xc3\x98\xb1\x0b\x31\x21\xc4\x65\x42\x70\x96\x27\x89\x46\xe6\x8c\x68\xeb\xbb\x6d\x1c\xe7\xd6\xdc\xf7\x9d\x3b\xf5\x4a\x93\xa9\xd5\xae\xa9\xc5\x8c\x5d\xb4\x57\x73\x78\xef\x58\x9c\xeb\x22\x75\xdc\x80\x43\x77\x02\x29\x42\xec\x03\x71\xd9\x07\x9c\x40\x8a\x30\x99\x68\x96\xfe\xda\x7e\xdf\x34\x82\x9c\xc2\xf2\x5d\xb3\x1f\x60\x2e\x4c\xa6\x96\x5d\x53\x8b\x19\xbb\x30\x86\x4b\xc2\xda\x3d\x67\x94\x9f\x46\x50\x47\xdc\x97\xfb\xce\xf2\x24\x61\x3a\xf3\x78\x8c\x7f\xfa\xfb\xad\x99\x11\xe4\x14\x48\xcc\xe6\x54\x79\x6f\x8d\xb8\xdb\x30\xe0\x6e\x3d\x28\x3f\x4d\x7b\x64\x78\xe7\x92\xea\x2f\xda\x17\xc6\xa8\x5d\xd8\x8d\xda\xd5\xca\x71\x12\x88\x16\xa8\xd6\x91\x13\x89\xeb\xc2\xf9\x64\x2c\x50\x91\x23\x39\x19\x22\x42\x65\x38\xc2\x9f\x3b\x4e\xba\x09\x78\x97\xfd\xfb\xf3\x7e\x93\xe7\xc5\x25\xcb\xbd\xdc\x33\xf8\xcb\x5a\x85\x13\xf4\x17\x5e\xee\x37\x79\x96\x9c\x19\x83\xf0\x8a\xbb\x49\xfc\x73\xb8\xe9\x9b\x76\xbf\x49\x79\xe6\x4b\xdf\x5c\xf7\x9b\xb4\x35\x5c\xae\x00\x92\x93\xa7\xed\x37\xce\x20\xd6\x3c\x22\xdf\xb9\x53\x66\xa9\xdc\x44\xdc\x72\x13\x1e\x3f\x17\x37\x42\x66\x3b\x5e\xed\x9e\xb6\xdf\x9a\xa9\xdc\x44\xc4\x2d\xc3\x4c\x70\x46\x04\x33\xb5\x11\xd7\xed\x22\xf3\x42\x44\xe8\x77\x20\x68\x73\x32\x2f\x44\xd0\xa5\x8e\x00\x97\xbf\x33\x9b\x17\xb1\xf4\xbb\x75\x7f\x47\x1b\x4c\xd9\xc3\x88\x6b\x6b\x90\x31\x2c\x54\x17\x22\x6e\x5d\x08\x67\x56\x2e\x42\xf6\x44\x7c\xf7\x77\x3c\xf3\x9d\xd8\xe8\xe8\x78\xa2\xed\x2c\xed\x11\x9d\x15\x8c\x03\xe5\x1c\x4e\xdb\x6f\x2c\x9d\x60\x89\xe8\x05\x7b\xdb\xe8\x7a\x74\x86\x13\xa2\x5f\x97\xb3\xff\x5c\xf8\xe8\xa1\x6f\x06\xce\x59\xab\xff\xed\x29\x5d\x74\x06\xc7\xa3\xdf\x48\x84\xbc\x81\x2e\x75\xdc\xaf\x28\x24\x20\x22\xfa\xd4\x70\x26\x54\xa0\xbc\x81\xbe\xd5\xb6\xff\xda\xf8\x3b\x2d\x69\xbf\x01\x70\x72\xc9\x45\x27\xb7\x62\xf4\x2f\xdd\xb6\xdf\x37\x87\xae\xe0\xb8\x57\xb0\x53\xe5\x0e\x46\xf4\x62\xa4\xbf\xdf\xa9\xad\xaa\x0d\x57\x82\x05\x02\x63\x48\x14\x8e\xab\xae\x98\xf0\x8a\xa1\x2b\x88\xfc\x5d\x72\x12\x52\xc5\x90\x28\x1c\x57\x14\xb2\x0c\x47\x8c\xa6\x6f\x5e\x75\x45\x92\xb9\x18\xa6\x39\xdc\x63\x4f\x26\x84\x18\x12\x85\xe3\x8a\x42\x12\xd0\xc5\x20\x68\x25\x06\x9e\x43\x78\xd7\x1c\x64\x1a\x8c\x1b\xdd\xe8\x54\x2d\x83\x89\xf8\xc0\xe3\xdc\xe4\x9d\xe6\xfe\x18\xfa\x1d\x78\x64\xbd\x53\x0d\x0c\x89\xd7\x71\x5d\x88\x4e\x95\xab\xc4\x5c\xdc\xf2\x08\xce\x84\x50\x8c\xad\x39\x00\xd8\x10\x64\x1f\x88\xb1\x35\x87\xf7\x1e\x6d\x5e\x97\xf1\x6a\xcd\x60\xb6\xc7\x43\x33\x65\xbc\xda\x07\x3c\xc5\x8a\x87\x66\x8a\xca\x23\xc4\x00\xbe\x3b\x98\x80\x8a\xf1\x69\xad\xaf\xb9\x4f\x2c\x6f\x8c\x4f\xfd\x81\x07\x31\xc8\x3e\x10\x53\x51\x2d\x3c\x14\x4e\xf1\xfc\xa2\x99\x31\x75\x5e\x66\xba\xe3\xa4\x79\x33\x99\x38\x8e\x99\xee\x38\x7f\x11\xcb\x98\xcc\x7a\x04\xf2\x85\xa7\x8d\xfd\x91\x71\x23\x90\x13\x4c\xc1\x84\x50\x4c\x82\x02\x02\xd5\x17\x72\x62\xd5\xc4\x98\x52\xab\xb3\x21\x42\x4a\x6c\x7b\x4c\x45\xc3\x50\x29\x21\x05\x33\x3e\x31\x65\xb6\x4f\x24\x72\x83\xa4\x37\xb1\xe4\xe2\x2e\xbb\x73\xa0\x78\x5d\x4c\x2a\xc7\x42\xe4\x23\x1e\xaa\x96\x45\xe6\x85\x58\xfd\x8e\x93\x73\x58\x2c\x90\x1b\xab\xdf\x3d\xe2\x19\x5c\x3a\x83\x6b\xdc\xb5\xa6\x89\xbd\xe4\xaa\x5e\x4a\xfb\x20\x53\x40\x2c\xa9\x78\xbc\x6a\x4d\x41\xc0\x40\xac\xa9\xb1\xdc\x22\xe2\x0f\x55\xd9\x92\xcc\xba\x54\xf8\x41\x16\x81\x58\x32\xa3\xd7\x35\xa3\xe5\x06\xe9\x09\x6c\x20\x11\x78\x7e\x17\x6c\xd3\x58\x10\x7d\x0b\x66\x13\x62\x2d\xcd\x01\x15\xac\x82\x91\xff\x58\x04\x36\xc4\x7a\xef\xef\x18\x29\x5b\x92\x83\xeb\xca\x41\xa3\xfc\x5c\x9f\xc6\x02\xdc\x7b\x30\xda\x1e\xca\xe6\xc5\x86\x3b\x1a\x8c\xb6\xc7\x56\x14\xe6\x66\xfa\x82\x2c\x02\xb1\x59\x2d\x33\x76\xc2\xdd\x94\xdb\xb5\x25\x7b\x36\xf0\xb3\x89\x15\x23\x63\x93\x08\x29\xb6\xdf\x39\xf0\x5c\x6f\x3e\xb3\x0b\x24\x86\x52\xa4\xdf\x13\xd8\xd8\x8a\x4a\xee\xab\x1f\x88\xdd\x0f\x3d\xbd\x0c\x50\xe8\xe7\x44\x7c\x7e\xbc\x04\x9b\x05\x12\x3c\xa7\x2d\xd8\xc6\x39\x20\xc1\x93\x22\x71\x0e\x2f\x81\x37\xf1\xc2\xfd\x8d\xc4\x90\xcf\xdb\xf4\x3b\xbb\xbf\xa3\xf9\xfd\xb2\x3c\x49\xa0\x66\x7f\x4e\x4e\x35\xae\xc2\xf9\xf1\xf6\x74\xdb\xf8\x4d\xdd\x87\xf7\xde\x07\xb9\x5d\x7a\xb6\x18\xef\x3d\xd7\x04\x05\x84\x0a\xd9\xc7\xbb\xee\xde\x52\x26\xbf\x0a\x51\x80\xa6\x3d\x27\xe7\xbe\x8b\x9b\x3d\xbe\x1b\x51\x27\x96\x3e\x3e\x99\x22\xf7\x89\x61\x10\x14\x10\x9f\x42\x14\x1f\xa2\x68\x91\x1f\x7e\x93\xcf\x08\xe3\x72\xb3\x47\xa6\x2c\xff\xe4\x26\x7c\x78\xfa\x1c\x2c\x1b\x11\x9f\xc2\x10\x1f\xc2\x10\x91\x19\x75\x55\x56\x27\x90\xd5\x39\x6d\xbf\x7d\xff\x98\xed\x0a\x64\x75\x4e\x1b\xc7\xc9\xac\x4e\x20\xab\x93\x22\x33\x64\xa0\xa7\x89\xf1\x5d\x7d\x4b\xe2\xc1\xf8\xb4\x7f\xdf\xdf\xfe\xd1\x15\xf8\xba\xe6\x8e\xec\x53\x90\x26\x20\x3e\xc9\x97\x0f\xd1\xf6\x50\xb4\xf6\xd3\x7d\xff\x6e\x18\xc2\x19\x4a\xf9\x14\x89\x47\xf1\xf8\xd3\xc6\x35\x93\x9b\x87\x97\x7a\x39\x39\x43\x29\x9f\xce\xfc\x77\x75\x5c\xfe\x81\x72\xba\xb2\x2c\xfd\x81\xdd\x13\xa4\x09\xe8\xca\xb2\xf4\x9b\x65\x09\xb2\x5c\xf4\x87\xf7\xa1\x23\xa9\x92\x82\x34\x01\x5d\x5c\xe9\xfd\x72\xa5\x47\x36\xf6\x47\x3d\xd6\x6f\xa1\xf7\x60\xd6\xbf\x3f\xcc\x80\x76\xd4\x75\x3f\x6d\xf1\x6b\x63\x86\xbe\x3f\xe5\xae\x99\xf3\x77\x55\x6d\xf5\xb6\xfd\xce\x7c\x7f\xe8\xfa\xf7\xa7\xde\xb9\x07\xe7\x50\xd5\xdf\xdf\xbe\xff\x4c\xf3\xae\xa7\x82\xfd\x3e\x15\x0c\xd6\x8c\xe8\x0f\xf5\x66\x7f\xda\x9d\xdf\x7f\x2c\xd2\xdc\x1f\xbe\x58\xed\x4f\xbb\x5d\x76\x0e\xc7\xd4\xa5\xdd\x2e\x3b\xa7\x6f\x1a\x2a\x22\xc0\x51\x1e\x4e\x91\x2f\xe9\xfb\x03\x42\x8e\x60\xe2\xbf\xeb\x55\x63\xbf\xaf\x1a\x83\x6c\x00\xfd\x71\x6d\x21\xc8\x3a\x82\x6c\x00\xfd\x09\x7d\x33\xee\x37\x13\xc7\x12\xfa\x66\x40\x84\x92\x3b\xb2\x3f\x5d\xbf\xbb\xe6\x3e\x23\x03\xfd\x21\x11\x4b\x07\x1b\x7b\x8a\x92\x39\xf7\xa1\xb1\x80\x08\x29\xc8\xe6\xd0\x9f\xa9\xb9\xcf\xf7\x7e\x93\xf3\x5b\xda\x8a\x75\x8f\xbd\xb6\x69\x6b\x9c\xd7\x15\x60\x44\xa1\x3f\xaf\x8e\xc5\x3b\x6f\x1b\x8f\xd3\xa7\x6f\x5e\xd3\x8e\xb4\xf5\x5d\x09\xa8\xfe\x97\x80\x22\x3e\xb8\x27\x7a\xb2\x3d\x81\x4c\x2d\x31\x6a\xd0\x13\x9f\x35\xf4\x04\x98\x7a\xe2\xd3\x8c\xae\x97\x99\xfd\xd6\x96\x0f\xb2\x39\xf4\xd4\xd4\xdf\x4d\xa8\x47\x62\x7f\x14\x3f\x3d\x5d\x6f\x9c\xb8\xe2\x9e\x4c\xdf\x44\xe4\x2a\xca\xcf\xbd\xe8\x49\xe7\x25\xfd\x9d\x97\x1f\x2e\xbc\x8b\x32\xbc\x5f\xca\xf0\x28\xce\xb1\x10\x4f\xd7\xd3\xb8\x67\xd0\xf9\x3b\x82\x41\x7a\x02\x18\x24\xc8\x3e\xd0\x13\xa3\x22\x3d\xdd\xa8\x08\x69\xeb\xbb\x6a\xd2\xf7\xb4\xef\xbe\xf3\x2c\xa5\xad\x71\xee\x3b\x4e\xee\xbb\xea\xd5\xf7\xb4\xef\xb9\xe6\xbe\xa7\x57\x63\x79\x6f\x7f\x3f\x2f\xb7\x8b\x32\xbc\x5f\xca\xf0\x28\xdc\x77\x71\x82\xf7\x7c\x5d\x39\xf2\x58\xf6\x4c\x4c\x59\xcf\x17\x53\x46\x1c\x73\xcf\x8c\x98\xf4\x0c\x8c\x65\xb0\x84\x45\xcf\x12\x31\xe0\xf6\xce\x89\x5c\x95\x3d\x9b\xfa\x43\x02\x31\x2a\xf7\x36\x6b\x8f\xb2\xdf\xfe\x1a\xc7\xc9\xcc\x4d\xcf\x37\xfa\x1d\xdc\xbf\x4c\x13\xb4\x23\x71\x92\xa2\x66\x8e\xe5\xd3\xef\xae\x8a\x67\x74\xa3\x2b\x0b\xd1\x91\x85\x38\x6d\xbf\xf9\x15\x26\xc3\x7a\x01\xe0\x2a\x98\x18\xef\x25\xff\xd3\x86\x33\x51\x7f\xea\xaa\x17\x89\xde\x72\x45\x2f\xd9\x00\x7a\x91\x1c\x2c\x78\xb9\x9f\x82\xfb\x57\xb4\x2e\xe5\xef\x5c\xff\xcc\xef\xae\x67\x8b\xfd\x3e\x5b\x4c\xc1\x3b\xad\xc8\x7f\x2f\xe3\xde\x31\xde\xdb\x32\xd4\x1f\x40\x4e\xc1\xa4\x79\x2f\x34\xa3\x3b\x6a\x86\xe7\xc4\x88\x49\x2f\x4b\x73\x00\x3e\x31\x91\x38\xb2\xab\x88\x78\xbf\xcf\x08\x13\xb1\xca\xbd\xe8\x7c\x96\x2b\x7b\x3a\x65\x6b\x61\x24\xb0\x97\x1b\x09\x24\xe7\x79\xaf\x52\xab\xf5\x9a\xca\xc4\x0e\xf7\xca\xc8\x78\xaf\xa9\xde\xb6\xdf\x38\x2b\xb3\x2c\xbd\xb6\xbb\x47\xbc\x47\x95\x61\x81\x5e\x0d\x72\x89\x9c\xe0\xbd\xd2\x25\xeb\xf5\x66\x1d\x19\xf6\xe8\xca\x0a\xf4\xea\x38\xbb\x7c\x23\xd2\x1b\x39\xa5\xfb\x2d\x50\x1d\x95\x7b\xd4\xb4\x0f\xed\x66\x60\x3a\x4d\x0a\x15\x9a\xee\x97\x23\x38\x2a\xef\x9f\x0a\x4d\x77\x70\x04\x9f\xdf\xfd\xf6\xb6\xd1\x45\xea\x78\x99\x74\xae\x51\x66\xdb\x56\xdb\x7b\x7f\xf7\xdb\x07\xf1\xf9\xf6\x76\x41\x63\x7c\x3f\xd2\xf5\x8c\xa9\xb7\x6d\xf7\x9b\x1c\xcb\xab\xf9\x81\x8b\x3a\x08\x18\xe8\xe2\xad\xed\x76\xa3\xae\xe4\xef\xee\x26\x59\x60\x57\x16\xf0\x05\x7e\x37\xe2\x75\x3b\x6a\x55\xa7\x60\x02\xbf\x2b\xc2\xdd\x6f\x14\x3b\xda\xcf\xc4\xee\xa6\xfd\x03\xdd\x6c\x0a\x46\xed\xba\x11\x60\xd2\x2f\x1f\x6c\x90\xb5\xa0\x5b\xa8\x2d\xee\xfc\x2a\xfb\x23\x76\xbf\x83\xfb\xf5\xb4\x55\xb6\x6d\xb5\xbd\xb7\x8d\x63\x21\x06\xb8\x1b\x30\xc0\x41\xb6\x83\x6e\x64\x49\xe8\xa8\x8d\x9d\xa2\x51\xd6\x59\xd7\xfc\xae\x39\xdc\x1a\xc7\x32\xb4\x9e\xe3\xce\x81\x66\xa6\xd1\xdd\xee\x20\x91\xcd\xa9\x77\xfe\x6e\xaa\xbf\x0b\x5e\xe0\x3b\x97\xae\x02\xdc\x1d\x04\xb3\x47\x7c\x72\xcd\x96\xe6\x00\x3c\x72\x30\x0c\xd8\x4d\xe7\x05\x6f\x9f\x4e\x1b\xe7\xb7\xb5\x9e\x7f\xe7\x85\xfa\x4f\x6f\x9f\xfa\x7d\xfb\x14\xac\x19\xd1\x6d\x6b\x3d\xf7\x3d\x9f\x94\x4b\xf6\x6a\x6f\xf1\x1e\x27\x9a\x73\xff\x5e\xcd\x0f\xd9\x99\x60\xa8\xaf\xdb\xab\x73\xf6\xdd\x73\x46\x93\xd7\x18\x7e\xea\xe0\xa1\x3d\x6d\xbf\xb1\x88\x60\xb6\x5f\x82\xd9\xfc\xf0\x1e\x39\xb3\x3a\xdd\x9f\xfb\xbb\x5f\x34\xba\xeb\x1d\x56\x47\x42\xe2\xfc\xae\xb2\x6d\xa9\xed\xbb\x6d\xff\x0d\x2c\xd1\xbd\xe9\xb3\xe0\xa0\xcb\x2c\x4a\xdb\x9d\x41\xfc\xee\xc0\xc1\x06\x19\x1b\xba\xf3\xb9\x5c\x77\x3c\x97\xcb\x0f\xaf\x84\x87\xa6\x18\x77\x8a\x3f\xef\xaa\xfb\xd4\xef\xe6\xdf\xef\x3a\xdb\x34\x96\x79\xa7\xc8\xeb\xe2\x4b\x53\x84\x18\xc9\x0f\xaf\x84\x6b\x7b\x41\xd5\x9a\x33\xb9\x38\xbb\xbf\xea\xef\xbd\xfd\xf1\xd8\xeb\xb9\x55\x47\xad\xf0\xd3\xc6\x25\xfd\x34\x77\xc0\xb1\x33\x29\xa7\x7b\xc8\x63\x8b\xeb\xb1\x91\x05\xa2\xab\x56\x78\xbf\xb5\xc2\x83\x2c\x10\x3d\xc8\xc5\xd9\xe3\x6f\x9b\x78\x25\x42\x66\xd1\xe5\x7c\x0d\xab\x6a\x73\xb5\xc5\x6d\xfb\x1d\xa7\x20\xd0\xa0\x07\xe8\xbd\x33\x31\xce\x5d\xdc\xad\xfd\x72\xb7\x06\x23\x5e\x3d\xaa\xbe\x59\x03\xbf\xe3\xb1\x57\xd2\xa7\xc7\x35\x87\xf9\xba\xbb\x2b\xe9\xd3\x91\xf4\xc9\x99\xd1\xbe\x1e\x52\x57\xe1\x77\xad\x83\x73\x77\x8d\xd3\xef\x38\x7f\x91\x9d\x1e\xba\xba\x71\xaf\x2e\x4b\x51\xf4\x90\x1a\x88\xab\x06\x8c\x57\x3e\x18\x55\xee\xa0\x4e\xcd\x39\x3d\x1c\x8b\xdc\x0b\xd4\xf0\x3e\x6d\xfa\x9d\xf6\x01\xcf\xec\xc2\x7e\x11\xa1\xae\xe7\x64\x3d\xbe\x3b\xf7\x1f\x76\xb1\x77\x26\x02\x7b\x07\xe6\x38\x08\x18\xe8\x2a\xea\xdd\x3b\x4c\xd7\xcc\x48\x60\xef\x8c\xb4\xf4\x9e\xef\x38\x79\x8f\xba\xdc\x92\x0e\xb7\x24\xf3\x59\x51\xef\x24\xff\xea\xbd\xec\xdb\xf6\x5b\x97\x2e\x55\xd6\xaf\x2a\x33\x9a\x61\x5d\xa6\x48\xbf\xa6\x88\x51\xc5\x2b\x1b\xd4\x6f\x36\x28\xf3\x59\x51\xef\x32\xd1\x3a\xca\x4d\x84\x3f\x1c\x8b\xd4\x40\xbf\x51\x57\x46\xc3\x7a\x27\xb3\x4b\xc7\x2b\xb0\x9c\x19\x25\xec\x2a\x96\xdd\xef\xd3\xaf\x20\x08\xa1\x77\xed\x3b\x92\x46\x39\x27\xde\xf7\xce\xe4\x77\xef\xdf\xdd\x3f\xde\x69\x65\x8a\xfa\xb8\x22\x94\x9c\xa1\x7d\x90\x5e\xbf\x0f\x54\xd3\x0a\xa7\x8b\xab\x27\x5c\xfd\x3e\xe1\x0a\x82\x17\xfa\x50\x04\x63\x54\xdc\x77\x3e\x0f\xea\xa3\xea\x9b\x15\xf7\x96\xfc\x9e\x7d\xf0\x79\x5e\x1f\x20\xc7\x0a\xb2\x4e\x74\x15\xaf\xee\xb7\x78\x75\x90\x75\xa2\x0f\x46\x99\xfa\x40\x94\xe9\xf8\x8e\xbf\x36\x3e\xf1\xed\x63\xdf\xb5\xae\x1c\x8b\x4c\x5e\x14\xa1\x3e\xbf\xfb\xed\xad\x9e\x38\xf5\xf1\xb7\x66\xbf\x44\x7c\x9f\x92\x4b\xf3\xc8\xa5\x9c\x59\x24\xb6\x4f\xbe\x03\xe9\xa8\x2b\x7d\xda\x7e\xf7\x61\x32\x99\xd9\x91\x00\xc9\x99\x91\xc0\x3e\xe5\x6e\x4f\xb8\xdb\x67\xe3\xd9\xa6\xdf\xe5\xbf\xdf\x35\xb6\xbd\x6a\xfb\x6e\x1b\xc7\xa9\x7d\x98\x37\x4a\xc8\x4a\x85\x7d\xca\x95\x43\x52\x25\xe7\x4c\xd7\x4a\x59\x8f\x8e\xac\xc7\x69\xe2\xfc\x64\xde\x4c\x80\xe2\x72\xfe\x3d\x2d\xed\x8b\x84\x4d\x7d\xfd\x8d\x85\xfa\x61\xf1\xdd\x49\x5f\xe0\x47\xce\x99\x63\x11\x99\x68\x5f\x57\x0e\xf2\x5d\x4d\x5f\x0a\x5f\xe0\x69\x4e\x0a\xa7\xac\xdb\x52\xf1\x88\xd2\xe7\x9c\xe9\xde\x6f\xad\xf5\xfe\x5b\x6b\x46\xd8\x36\x13\xc7\x1d\x6f\x67\x72\xe6\xdb\x99\xae\x82\xbc\x7d\xdf\xb3\x9b\x7f\xc9\xef\xae\xa2\xbb\x1d\x45\x77\x4f\xdb\x6f\x0e\x5b\xe1\xae\x7d\xc3\x5d\x2c\xfb\xd1\xb7\xa9\x3f\xbf\xfd\xd1\xec\xdb\x04\xde\xf4\x1d\x77\x5d\xf4\x3b\xe9\xf0\x7d\x75\x78\xa1\x49\xbf\x97\xc6\xb9\x30\x4e\x85\xc2\xf6\xab\x6f\x5e\x79\x4d\xb0\x59\xdf\x9f\xc6\x89\x6c\x49\xe6\x5b\x96\xae\xca\xb9\x7d\xe3\x59\x5f\xc4\x2f\x8a\xdd\x5f\x46\xbf\xfb\x8b\x92\x19\x99\x04\x97\xfd\x25\xf8\xa4\xa3\xc8\x6c\xce\x7c\xaf\xd2\xdf\xd0\xef\xe2\xfe\x8e\x3a\xfc\xd5\x39\x7b\x6f\x76\x8d\x40\x91\xfe\xca\x7d\x42\x12\x20\xe7\xc2\xfb\xfe\x2a\x3c\xf3\xde\xf0\x0c\xd9\x3f\xfa\x4b\x60\x51\x7f\xaf\xc9\x1b\x1a\x27\x81\x5a\xfd\x05\x50\x2b\x2b\x34\xf5\x4a\x7e\xbe\x57\x6f\xf2\x49\x78\x7f\x49\x7a\xda\x5f\xd4\x4d\xc8\x24\x05\xed\x2f\xcb\x65\x75\x54\x88\xcd\x99\x6f\x4b\xba\x2a\xc4\xf6\x17\xcf\xa9\x33\xc1\x66\x5d\x59\x88\x7e\x2b\xc4\x86\xc2\x33\x9f\x74\xe3\xf7\xdc\xb9\xff\x40\x1d\x5d\xa4\x84\x1d\xa4\x84\xa7\x8d\xbf\x93\x8d\x82\x6c\x42\xce\x24\xbf\xec\x9f\xc2\x17\xdf\x0d\x5f\x04\x5d\x24\xbd\xf5\xe8\x78\xeb\x71\x7e\xf7\xbb\xd3\x9f\x5c\x63\x54\x5e\xcd\xb9\xf4\xff\x06\x96\x18\xa2\x2f\x1f\xdd\xcf\x92\x66\xfb\x99\x7d\x63\xd1\xec\x1b\xeb\xb9\xaa\x9a\x2d\x59\x2d\xe5\x7f\xff\x57\x98\x71\x1d\x2a\x76\x3e\x50\xec\xbc\xda\xcf\x3b\x1c\xaa\x75\x3e\xd6\x15\xbb\x95\x2d\x5b\x2d\x1f\x7e\xc4\xef\x25\x0d\x02\xe1\xcf\xac\x96\xae\x96\xb3\x73\xea\x88\xe1\xa3\x81\x17\x9d\x95\x24\x46\x63\xd1\x7c\x1c\x0b\xe6\xe3\x3f\x2d\x1a\xf8\xd9\xbf\x4a\x40\xe9\x58\x04\xfa\x0d\x88\x4f\x96\xd5\x1e\x8b\x52\x6a\x2c\x58\x33\x95\x63\x28\xea\xa8\xd4\xf3\xb9\xc6\xd9\x16\xf5\x74\x34\x74\x79\x4c\x4d\xa1\xa6\x73\x3a\x7e\x67\x7f\x2c\xa2\x37\xc6\x2a\x18\x5e\x53\x57\x5a\xbd\xf2\xa2\x89\x6b\x54\xb5\x51\x15\xbb\x61\xdc\xc3\xaa\xdd\xa8\x1d\xa3\x08\x36\x69\xfd\x8e\x38\xad\xc4\x9e\x8e\xd5\x34\xf6\xe6\xa7\xc9\xb9\x80\x4d\xfb\xd1\x30\x42\xe7\x02\x36\x8d\xd0\xf0\x41\xe7\x08\x59\xdd\x78\x2c\xc3\x5e\x05\x7f\xe5\xda\x7a\x98\xd7\xc6\xc5\x70\x8d\x1d\xb1\x4a\xe3\x20\xc8\x78\x32\x96\xe3\x73\x9d\xb3\x0a\x7d\x0e\x8f\xc1\x8d\x1d\x85\x46\x8e\xf4\x82\xe6\x14\x5a\x89\x38\x9f\x63\xc9\xed\xb1\x78\xe9\x06\x08\xac\x2b\x59\xc9\xc6\xea\x5a\xa4\x3e\xd1\xc4\x41\x74\x1d\xa5\x7e\xba\x0a\xce\xa9\xeb\x28\x21\x96\xf8\x13\x0b\x63\x0d\x6d\xe2\x38\x47\xc9\x13\x7b\x1a\x3a\x2f\x90\xc0\xc1\x93\x39\xb4\xe4\xc7\xb6\xad\xae\xdb\x3b\xd4\xd3\xf1\x4e\x99\x66\x1a\x6b\xaa\xa7\x63\xff\x56\x66\x64\xc7\x9a\x9a\xd3\x34\x34\xb1\xab\xa9\xdd\x80\x0a\xec\xec\x69\x6a\x37\xf0\xde\xb8\x73\xf5\x96\xb6\x7d\x9d\x73\x44\xcb\x74\x88\x4a\x7b\x80\x4a\xbb\x7a\xe1\x4a\x2c\x4d\x6a\x63\x7c\x85\x1f\xdc\x1a\xc4\x8e\x73\x9c\x39\xf2\xad\x9b\xb3\xb1\x87\x95\xdf\x7b\x75\x24\x8e\xdf\x55\x1e\xce\xe9\xd5\x4a\xbc\xe8\xa9\x72\x0b\x5f\xad\xc4\x8b\x95\xd0\x25\x7d\x35\x88\x17\x83\xd0\x8f\xb4\xe6\x47\xa5\x33\xef\x35\xd6\xa7\xcf\x7d\x47\x1a\x68\x73\x3f\x0d\xfc\x98\xb7\x85\x95\x80\xc6\xfa\x74\x8c\x8e\xd6\x22\x18\x7d\xac\x4f\x27\xf6\xc3\x6c\x29\xcf\x37\xb1\xfd\x63\x3f\x38\xb1\xbf\x04\xcd\x10\x96\x62\xe0\x65\x74\x65\xd9\xeb\xb1\x19\x6b\x19\xfb\x88\x69\x16\x81\x1f\x02\x59\x8c\x9d\xf2\x69\x61\x4f\x8c\x1b\x0f\xbc\xab\xae\x4e\x01\xb2\xf9\x66\x6a\xe0\x9d\x75\x25\x6e\x78\x6c\x26\x63\xc7\x4e\x38\xb2\xce\xae\x24\xb6\x77\xc6\x07\x9d\x1f\x94\x70\xde\x47\x38\x93\x3f\x7d\xe8\xf9\xf5\xd8\x05\x7b\xf8\x4b\x0c\x8e\x4d\xa8\xea\x00\x7b\x39\x89\xd5\xc7\xa6\xcf\x34\x76\x41\x4f\xbc\x1d\x7a\x96\x3d\xf0\x2c\xbb\x3a\x0f\xfa\x2e\x5a\x8a\x8a\xae\x78\xd2\x77\x55\x57\xc7\xc0\x67\x21\xf9\xb1\xab\x96\xe2\xb8\x59\x35\x7e\xde\xfc\xd8\xb4\xb6\x07\x0c\xda\xca\xdc\xdd\xd0\x23\xef\x81\x47\xde\x95\xf6\xdf\x10\x69\xfa\xd8\x0d\x1f\x4c\xfc\xa0\xf4\x3c\x4c\x5f\xa2\xf4\xc7\x96\x00\xde\x36\xf1\x23\x4e\xd8\xb4\xb4\x76\x96\xb6\x71\xab\x4c\x4b\x0b\xa9\x1d\x94\x06\x7a\x30\x3e\xb6\x67\x34\x71\x6d\x5d\xbb\xe8\xe7\xa8\x37\xfd\x48\x23\x3f\x86\x6a\x0d\x8a\x83\x2d\x89\xbe\x1d\x83\xe0\xf0\x42\x3d\xc5\xb1\x42\xa8\x05\x76\x68\xcd\xa3\xe1\x73\xdc\x0e\x02\x4b\x07\xcc\x7a\x52\x9d\x8f\x1d\xda\x8e\xc0\x42\xe8\x50\x84\x4e\xe6\xd1\x08\x35\x68\x9f\x6c\xa9\x01\x10\xc0\xd7\xd0\xfe\x76\x75\xd5\x4f\x57\x8c\x90\x8c\x2d\x35\xb0\x8f\x1a\x60\xca\x73\xec\xae\x95\x1d\xd8\xf9\xca\xae\x86\x76\x6a\xa0\x2b\xad\xdf\xd0\xfa\x0d\xac\x1f\xad\x83\x3d\xb4\x7e\x63\x9d\x51\x50\xf4\x6c\xe9\x88\x0d\x71\x1f\x5a\xdb\xa9\x15\x3c\x92\xbf\xa4\xc4\x15\x94\xb8\x87\xf3\x53\xa8\x2d\xf5\x06\x7f\xe0\x9d\x7d\x0d\xfb\x6f\x7c\xbf\x63\x2f\x1d\xcf\xe3\x34\x31\x95\x3b\xf6\xd2\x4d\x58\x18\xa3\xba\x5b\xba\x09\x0b\x37\xe1\x9f\x5f\x69\xd2\x0b\x23\x71\x9e\xf7\xad\xae\x36\xba\xe2\x9c\xb7\xd6\x77\xe3\x00\x04\xe7\xbc\xb5\x2b\xd0\x21\x44\x4d\x8f\xfd\xea\x00\x40\x53\x04\xa5\xf4\x96\xa6\xd8\x2f\x36\xac\x73\x80\xaf\x36\xec\x45\x5f\xb4\x53\xf6\xab\xb3\xf1\x9e\xb3\x41\x83\x68\x7f\x5a\x8b\xe3\xc7\xd4\x4e\x25\x27\xb7\x70\xec\xef\x9c\xb5\xe0\xe7\xa4\x45\xc0\xee\x5f\x99\x32\x1c\xaf\x0c\xfc\xf7\x28\x84\xc2\x91\xbf\x7c\x2a\x34\xde\xa7\x42\x5d\x35\x36\x35\x35\x9d\x55\x67\x9a\x71\x88\xbf\x60\x00\xcd\x56\x38\xdd\x57\x0a\xe1\x4d\xc7\x84\x79\xf8\x1b\xc2\x1b\x06\xa8\x0a\x2a\x59\x8d\x86\x6a\x0f\x0c\x78\xb6\x95\x55\xeb\x86\x98\x0b\x06\x98\x0b\x2a\x73\x96\xe3\x65\xe1\xaf\x81\x22\x04\xb5\x6b\xe8\x2c\x91\x3b\xde\x8c\x43\x5d\xf4\xab\xa1\x26\x7c\x90\x02\xe8\x2d\x5a\xa5\x63\xe3\xf3\xed\xfa\x10\x0f\xc2\x00\x0f\x42\x65\x96\x73\xbc\xb2\xf1\xdf\x82\x55\xfa\x79\x8e\xe3\x2d\x5a\xa5\x63\xee\x57\xed\x87\x0c\xf9\xb7\x60\x10\x94\x25\x6f\xd5\x20\xea\x19\x84\x16\xbd\x6a\x69\x61\xe2\xf3\xa2\xbe\x0c\x6b\x8f\xf7\x58\xf4\x55\xcb\xd7\xb4\x46\x47\xd3\x54\xd2\xe6\x8d\xb7\x69\x74\xb0\xe2\x3b\xad\x9b\xb7\xe9\x7b\xc7\xa0\xaf\x5a\x58\x42\x0e\xc7\x7b\xb4\x4b\xa5\xc8\x7f\x4d\x4b\x74\x2c\xff\x92\x34\x25\x29\x9e\xd7\xb0\xf3\x4d\xbf\x0a\x35\xf5\xff\xfd\x1f\x9f\xda\x8f\xd7\xb4\x44\x47\x07\xd5\x4e\xa7\xe0\x35\x0d\xe2\x78\x0e\x95\x32\xff\x95\x4a\x42\xdd\x86\xda\x8d\xab\xe7\x3a\x12\xde\xd0\xa4\x5f\x69\x10\x8e\x41\x70\x73\xa5\x92\x40\x15\x51\xb5\xb7\x7c\xea\x31\xde\xe3\x6e\xd4\x4e\xa7\xea\x0d\xad\x44\xe0\xb0\x38\x27\x25\x75\xf5\x1e\xcf\xa4\x6a\x8d\xe4\x99\xbc\x47\x3d\xd5\x4e\x93\xe8\x0d\xed\xc6\x51\x4f\xac\x43\x30\x5e\x39\x2d\x6f\xc7\xd9\xa3\x23\xf6\x76\x1d\xf3\x8e\x13\x46\xe1\xf2\x0e\x2d\x12\x14\x4f\x97\x34\x18\x3a\xcc\x47\x2f\xd4\xae\x8b\x3d\xb5\x89\xc7\xd8\x6f\xc4\xb9\x8f\x77\x6a\x80\xf3\x6c\x15\x4d\x8e\x57\x32\xfd\x5d\x38\x14\x34\x2c\x5e\xc9\x74\x94\xb5\x68\x8f\x0e\xed\xd2\xf7\x8e\x1f\x40\xce\x83\xa1\x98\xd1\x78\x8f\x48\xaf\xd4\x8b\xaf\x44\xfa\x7b\x1c\x84\xc6\x9a\xbc\xe3\xdd\xda\xde\x7d\xb6\x57\x07\x69\xeb\x8c\x1d\xb9\xdf\x1e\x1d\xbf\xad\x9e\x8e\xef\x50\x58\xa0\x6b\xbc\xd2\x03\xef\x8b\xae\x0a\xc7\xf7\x6a\x43\xbe\xe7\x34\x69\x83\x25\xd2\xdf\xaf\xa0\x89\xdb\xf8\x69\xec\x1f\x3e\xc8\x80\x84\xa0\xb3\x03\xf1\xab\xf6\x68\x6d\x3f\x0d\xfe\xd8\xff\x8d\xa9\xc1\xf1\x49\xdc\x7f\x0f\xfa\xe2\x0a\x7e\x4c\xd2\x8e\xef\x81\x64\x34\x35\xb9\x9a\xb0\x4e\x9d\x2d\x43\x2d\x0b\xdf\x0b\x36\xbd\x6a\xc2\x28\xe8\x4f\x7c\x24\xc4\x18\xdf\x91\xfd\xed\x51\x57\x8c\x07\x8f\xef\x88\xea\xf6\xa8\x2f\xa6\x94\x06\xa2\x6b\x8d\xb8\xfa\xf1\xc9\x01\xf8\x8e\x03\x50\x79\x45\x3e\x39\x00\x5f\xc6\x28\xa8\x15\x3f\x89\xee\x0f\xe1\x19\xfa\x13\x9f\xac\xfc\xaf\x60\x6d\x79\x0f\xbe\xa2\x9e\x8e\xa8\x26\xe0\x65\x7c\x55\x93\x82\xfd\x4f\x4f\xe3\xab\x9a\x53\xed\xb0\x44\xd8\xa2\xe5\xab\x98\x12\x4d\x00\xc1\x83\x07\xe0\xc1\x8d\x79\xbe\xf1\x49\x74\x03\x28\xdc\x98\xe6\x1b\x5f\x53\x57\x0d\xf6\x26\x4d\x25\x95\x2d\x19\x28\x5b\x42\xe8\xcc\x50\xd1\x92\x01\x70\x71\x63\xaa\x6e\x7c\xa6\x43\x61\x90\x8d\xfc\x9c\x44\xf7\x67\x18\x04\x9d\xd6\xcf\xb4\x7c\x36\xd0\xc4\x59\x11\x49\x35\x3e\x83\x25\xea\xfa\x95\x26\xec\x18\x45\xe6\x28\x24\xa1\x3f\xc7\xd1\xa4\x29\xf7\xb9\x86\xe1\x18\x06\xf5\xce\x27\xe1\xfd\x41\x78\xf7\xff\x86\x0f\x18\x9f\x6b\x57\xfc\xc3\x37\x79\x06\x25\xc1\xbf\xc0\x20\xe9\x6a\x7e\x04\xbe\x0c\x90\xe4\x34\x16\x18\x1c\x9f\x44\xf8\x17\xf8\x20\x7d\x87\xaf\xeb\x42\x1e\x37\xa2\x3d\xdc\x15\xe2\xed\xc7\xd7\x61\x7f\xe9\xb8\x77\x4d\xba\x9f\x63\x93\xa8\xbb\xbf\xae\x55\xec\xe8\x4a\x17\x5c\xd2\xfd\x1b\x19\x4d\x5c\xfb\xa1\xbe\xc6\xed\x8b\xd3\x92\xe0\xff\x06\xfa\xd2\x0d\x1f\x3a\x51\x03\x11\x08\x1d\xec\xa1\x23\x35\xcf\xb4\x58\x71\x70\x7c\x53\x7d\x4d\xec\x98\x6e\xf8\xd4\x8e\xcd\x0e\x69\xc2\x16\x6d\x09\x74\x4c\xd2\x0d\x9f\x9a\xf1\xc4\x45\xd1\x91\x92\x92\x41\x01\x9a\xf6\xcf\xb9\x59\x12\x69\x0b\x5d\x71\x10\x0a\x30\x7d\xeb\x6e\xd6\xaf\x45\x6e\xc3\xb7\xb1\xf9\x5a\x25\x29\x99\x0f\x4a\x26\x31\x64\xf0\x6d\x6d\xfe\xc6\x6d\xd0\xc5\x93\x96\x01\x5f\x51\x4b\xba\x5e\xaf\x8e\xfc\x8b\x23\xcf\x68\xc2\xf7\x6a\x95\x8e\x0b\x41\xb2\x96\x21\xc8\xfd\xf8\xde\x33\xf4\xac\xd3\xf4\x69\xec\xdf\xd9\x90\xac\x16\x2d\x12\xd4\x0f\xc9\x74\xc6\xa7\xb8\xd4\x77\x34\x51\xcb\x5a\x25\xa9\x9f\x0f\x3a\x86\x65\x3f\xa7\xc0\xfd\x13\x14\x4a\xed\x67\x23\xce\x87\x89\xc0\xf9\x3c\x13\x3f\xea\x6c\x7a\xd5\x84\xef\xe9\x57\xd4\x16\x13\xf4\x49\x8d\x6f\x1a\x26\x80\xfe\xbf\x3f\xf1\xc1\xcc\x0f\xa6\xa5\xa6\xfd\xbf\xff\x23\x7a\x6d\x3e\x4c\xe1\x4e\x94\xed\x69\x2c\x6d\x38\x1f\xbe\x01\x99\x0f\x54\x4c\xfe\xa9\xe2\xf9\x30\x69\x3a\x1f\x28\x12\xc6\xf9\xa7\x5e\x09\xcc\xa7\xe0\x83\x3f\x7d\x3b\x1f\x06\xf3\xe7\x73\x94\x4a\xc9\x0f\xa7\xc5\x68\xfe\x7c\x0a\xfa\x6a\xfa\xa0\xfa\xaa\xd8\x92\xc6\x69\x31\x94\x34\x9f\xda\xce\xb4\x8c\x2d\x5a\xdc\x8a\x51\x98\x9a\x3e\x36\x35\xac\xa0\xf1\x7b\xcc\x95\x4e\xbc\x2a\x20\x58\x6f\x3e\xa6\x65\x82\x56\x60\x15\xc4\xf9\x98\x96\xdd\x70\x2e\x82\x13\x26\xbd\xf2\x7c\x8e\x05\x5f\xc8\xba\x39\x1f\xd3\xe2\x42\x2d\x30\xbc\x3d\x1f\xd3\x66\x39\x06\x18\x5c\x77\xd7\xb4\x1c\xcb\xd4\xf9\x2b\xff\xe7\x57\x67\x8b\xb5\xec\xae\xd3\x04\x09\xce\x64\xed\x7c\x42\x9b\x75\x84\x79\x2b\x0f\x7f\x15\x9a\xd6\xb1\xb4\x1b\x5f\x3b\x4c\xbd\x3e\x98\x78\x7d\xc0\xf2\x38\xf3\x09\xad\x2d\x04\x78\xe3\xaa\x77\x2d\xe0\x11\xe0\xad\x3c\x5c\xf5\xae\x49\x75\xc7\xe1\x64\x4f\x5d\x27\xe6\x58\xea\x4d\x5b\xdf\x75\x2a\xfa\x8b\x1f\x71\x10\x5d\x83\x80\x68\xff\xd9\x53\xf3\x19\x9a\xd3\xb8\x3d\xf1\x94\x0d\xf5\x34\x8e\x1c\x31\xb5\x4c\xb5\x9c\xe5\xd3\x71\x99\x3a\x2e\xf3\x1c\x17\xe7\x71\x9e\x9a\x12\xc4\x3a\xf3\xd5\xf3\x99\xda\xf8\x89\x75\xcd\x9c\xed\x54\x4f\xc7\x57\x20\xd6\x70\xea\xfd\xc5\xc4\x73\x8b\xc6\xa0\xf3\x7c\x96\xee\xc0\xf1\x15\x5a\xf0\x6a\x2f\x9d\x3e\x48\xf5\xe0\x3a\x2c\xdd\xb6\x05\x71\x50\x38\x86\x2d\x79\x75\x5c\x07\x96\x92\x9a\xcf\xd6\x0e\x42\xe0\x33\x46\x3c\xc5\x41\x36\xc1\x41\xd6\x4a\xe1\xc8\xb7\x06\x71\x1c\x8c\x16\x6a\xd1\x42\x1c\x2f\xa2\x31\x10\x3c\x9f\x57\x83\x38\x5e\x44\xeb\x6a\xd1\xe7\x8e\xe4\x6f\x45\xc7\xfc\xd5\xa4\xde\x89\x26\x4e\xea\xd5\xf2\x41\x3e\xb3\x46\xe4\x4c\xcc\xdc\xce\xf4\x60\xa7\x5c\x4d\xa1\xa6\xb3\x7e\x3f\x0c\xd5\x4c\xac\x10\x35\x13\x0c\x7d\x5e\xa8\xc4\xc4\xed\x4c\x0f\x8e\x25\x85\x41\x62\x76\x60\xa6\x54\xfe\xf7\x7f\xe4\x57\x9a\x89\xd0\xb1\x89\xc7\x2d\x8d\x19\xf0\x99\x92\xc6\x90\xfa\xf9\x51\x63\x8b\xc6\x70\x44\xba\xfd\x14\xd5\x4c\x64\x67\x9d\x29\xa7\x23\x75\xb8\xbb\x7a\x1f\x33\x53\x6e\xff\xfb\x3f\xc2\x39\x67\xa2\x3f\x31\x13\xf4\x00\x1f\x7a\xcc\x24\x3d\x90\x32\x4e\x2c\xf7\x30\x65\x0d\xe2\x78\x1d\xe4\x70\x9a\xaa\x83\x36\x53\xc1\x69\xe1\x1e\xa6\xa2\xe9\x16\x0c\xe2\xbf\x05\x45\x67\x62\xa0\x68\xa6\xa3\x3f\xc8\x0a\x35\x93\xd4\x47\x82\xfa\x28\x5d\x4d\x4b\x4d\x48\xd7\x14\x6e\x70\xd5\x42\x1d\x7f\x85\xe5\xc1\x66\x62\xe9\x9b\x99\x8e\x26\x69\x8c\xcf\xcd\x54\x35\x88\xe3\xca\x90\x2a\x6a\xea\x11\xd1\x44\x79\xb7\x56\x1f\xf5\xa4\x41\x1c\xf5\xd3\x18\x33\x9b\xe2\xc5\x9b\xe0\xc5\x23\xbd\xd4\x14\xf3\xdd\x04\xf3\x9d\x15\x6e\x56\xd3\x66\xc1\xe7\xe1\xab\x95\x99\x9a\x06\xd1\x26\xb2\x53\xfa\xd5\xab\x26\x0c\x22\x71\xbe\x04\xfa\xce\x74\x34\x5d\xab\xda\x48\x3e\x71\x9a\x28\x34\x57\x64\x05\x88\x7e\x6f\xa6\xe3\xca\xb4\x4a\x71\x9a\xa4\xc3\x92\xdd\x24\x19\x27\xec\x3a\x83\x70\x52\xaa\x56\xd0\x75\xda\x8f\x93\x42\xe4\xec\x4c\xae\x0d\xf6\x3b\x2d\x6e\xb0\xd4\x1b\xf8\xf9\x0a\x5f\x4f\xce\x14\x5a\xdb\xa3\xde\x88\xa2\x98\x29\x34\xab\xc0\x20\x0a\xd7\x22\x34\x88\xe3\xaa\x90\x63\x6b\xa6\xae\x55\x3a\x3a\xcc\x34\x27\xa9\xb0\x04\x15\xc6\x88\xd5\x4c\x5d\x1b\x02\x15\x56\x2b\x7b\x92\x0e\x4b\xc7\xe7\x68\xa4\xaa\x99\x69\x68\xbe\x50\x3a\x0c\xee\xcc\x34\x35\x8a\x89\x5f\x51\x29\xa6\xa9\x0d\x81\xda\x61\xbd\xcd\xa9\xc2\x7c\x33\x41\x83\x90\x8a\x66\xea\x71\xd8\xc4\x5b\xb0\xc6\xaa\x92\x33\x2d\x6d\xe3\x51\x14\xc4\xc2\xcc\xb4\xb4\xea\x70\x0c\xe8\xe1\xcf\xb4\x35\xc0\x8d\xc3\x14\xec\x4a\x8a\x22\x6d\x74\x25\x29\xb3\xd5\xd5\xf1\x04\x58\x5b\x6e\xa6\x57\x07\xe6\x85\x55\xd6\xf9\xbd\x57\x7b\x75\xac\x7f\x33\x9e\x4d\x69\x83\x04\x6d\xd0\x24\x6e\xa5\x0d\x50\x33\xb0\x35\x5d\xee\x4f\x43\x47\x88\xa9\xe9\x0a\x7f\xea\xea\x43\x57\xbc\xa7\x9f\x96\x02\xda\x85\x4e\xd2\xcc\xb2\xfe\x41\x9a\xd8\x1a\xef\x55\x66\x84\x69\xe6\xe7\xdc\xee\x5f\xda\x77\x66\x39\x06\x20\x56\x6c\xf4\x69\x66\x26\xc8\x6a\xe6\x07\xf6\xd0\xcf\x73\x99\xaa\x5a\x38\xc1\xb3\x48\x9a\xb3\x99\xe5\x4d\x64\x78\x13\xac\xc6\x39\xb3\xbc\x09\xbc\xc5\x6b\x72\x4f\xf4\x14\x6f\xe2\x29\x1e\x51\xd0\x33\x4b\x89\xe4\x8c\x49\x51\xbf\x64\x62\x86\x66\x3e\x0a\xa5\x35\x0a\xdb\xcc\x27\x3b\x33\x67\xd8\xc2\x9a\xb0\x14\x4c\x86\x37\x21\x3b\x3e\x17\x2d\x60\x81\x2e\xa3\x7a\xce\x45\xcb\x04\x99\xcf\xe7\x33\x33\x17\xcd\xb8\xe0\x83\xb4\x12\x72\xd5\x8c\x2b\x66\x4c\x2b\x21\x33\x71\x30\x73\x85\xa4\x0b\xfd\x4a\xf3\x42\x68\x4a\x26\x6f\x96\x68\xc7\x4b\xc3\x22\x43\x3e\xcb\xd3\xc8\x0d\x83\xa7\x21\x9f\x9b\xd6\x10\x12\xbc\xf1\xa6\x66\x02\x8a\x67\x6e\xe8\x8b\x27\x2d\x13\x36\x34\x73\xc3\xc9\x75\x8e\x50\x12\x3c\x23\x02\xd5\xb4\xbc\x4c\x1e\xcc\x7c\xbc\x0e\xa3\xfa\xce\xae\xd5\x45\x94\xa9\x69\xec\xae\xed\xf7\xb3\xfd\x54\xdf\x59\x3e\x08\x9e\x48\x36\x99\x88\xd9\xb5\x91\x8e\xe3\x19\x1c\xba\xeb\x78\x1e\x4f\x85\x60\xf5\x99\x5d\x93\x42\x14\x89\x4f\x5e\x66\x0e\x0d\x22\x30\x08\x9e\xce\xd0\x22\x05\xf4\x41\xe7\xd2\xca\x3b\xc9\x88\x2f\x35\xda\x02\xb9\x6b\xbe\x47\x96\x13\x0b\x35\xb3\xdc\x93\xdc\xcf\x20\xec\xe1\xf8\xba\xf6\xfe\x88\xf9\x26\x1b\x2c\x77\x9d\xe9\x23\xdb\xfd\xe1\x22\x49\xb4\x67\x44\x9e\xec\x61\x57\x43\x83\x18\xe9\xfc\x88\x9f\x93\x7b\x02\x1a\x4f\xff\xe7\x37\xda\xc2\xeb\x9d\x48\xc4\x48\x53\x80\xc3\x93\x3c\x14\x33\x0f\xdd\x82\xeb\xb8\x48\xf8\x48\x87\xe4\x09\x17\x89\x9a\x3b\x4b\x87\x80\xdb\xb3\xc9\xca\xca\x4b\x8b\x74\x7c\x8b\x66\x8c\x3d\xe4\xa5\x01\x1e\x5f\xc3\xff\xf9\x91\xc6\x07\xed\x62\xd4\xb4\x79\x69\x91\x8e\x3a\x69\xac\x01\x39\xf3\xd2\xd5\x39\x1e\x89\xd3\x49\xca\x5b\xb7\x74\x9f\x5b\x2a\xbf\x34\x4b\xbb\x64\xc4\x9d\x08\xb5\x9c\x79\x6b\x7c\xc7\xef\x70\xc9\xb9\xad\x41\xec\xf7\xb4\xc4\x7f\xb3\x46\xf3\xab\xc3\xf9\xda\xff\xfe\xcf\x25\x05\x5f\x5d\x83\xa3\x86\x1a\x5f\xeb\xcc\xfc\xea\x1a\xbc\xdf\xf9\x11\xef\xce\xa7\x79\x7d\xed\x7f\xff\xe7\xb4\x20\xf2\xa7\x53\xf6\xcd\xd3\xf2\x3b\xea\x45\xea\x05\x3c\xa5\x2c\x74\x36\x8b\xdc\x9a\x02\xc5\xc3\x52\x91\xb3\x30\x5f\x3d\xcb\x83\xf3\x4c\xe1\x58\xa4\x5e\x0a\x34\x85\x51\x38\x96\xa4\xae\x12\xba\x6a\x6c\x29\x6a\x39\xeb\xc0\xc8\x8d\x8a\xb4\xce\x72\xfc\x98\x26\x9d\x5e\x88\x7a\x9a\x60\x51\x6d\x66\xea\xe9\x55\x13\x06\x41\xa5\x5e\x98\xca\x9e\xe0\x57\x6d\x24\xaa\x99\x45\x9a\xa7\x40\xf3\xf0\x05\xd1\x2c\x7c\x89\x30\x51\xd7\xb5\x99\x73\x99\x98\x2a\x99\xe5\x62\xa5\x78\x45\x44\xd2\x3a\x51\xf1\xb5\x91\xc0\x66\x96\xa2\x65\x82\xe6\x31\xda\x3e\x45\xc1\xaa\x72\x14\x43\x23\x7a\x73\x96\xaa\x79\xb5\x33\x78\x32\xcd\xcc\x22\x4b\xbf\x1c\xd3\xde\x35\x63\x3e\x4a\x9d\x78\xaf\x4d\xc2\xc9\x59\xda\x3f\x9f\x3b\x27\x89\xaa\xa0\x98\xb6\x0a\xb1\x2a\x89\x04\xbd\xeb\x9e\x78\xd7\x4d\xac\xd9\x2c\xa6\xcf\xf9\xd9\x5f\xcd\x56\xf6\x7a\xf1\xfb\x39\x4e\xc9\xb5\xe8\x47\x2b\x34\x4f\x1c\x9e\x54\x41\x41\xd0\x89\x75\x06\x67\x91\x55\x5e\xe2\x74\xa5\xd5\x93\x55\x5e\x8e\xbc\x77\x1a\x8e\x25\x74\x94\x8e\x51\xde\xc8\x48\x3a\x8b\xac\x72\x10\xd6\x36\xa7\x80\x29\x12\xdd\x05\x66\xb9\x53\xc0\x14\x99\xe5\xe0\xaf\x6d\x7c\xb5\x33\x4b\xd7\xa1\x00\x16\xa9\xe8\x83\x92\xdd\x78\xdf\x4e\xc0\xdb\x2c\x43\xab\x84\xd0\x12\x41\x95\x53\x75\x77\x27\x28\x6f\x9b\xeb\x2e\x0e\x1d\x17\x88\x68\xd7\x5d\x94\x88\x2e\xb0\xe5\x59\x5c\x76\x96\xa9\x03\x7d\xcc\xfa\x52\x34\xf6\xa9\x6d\x84\x99\xef\xba\x57\x0a\x14\x95\x63\xf1\x93\xbf\x73\x16\x62\x4f\x27\x1e\xe2\x97\xa2\xb1\x2f\x2d\xd3\x11\xe4\xed\x9f\x03\xb8\x74\x34\x8f\x9b\xc0\xa7\x23\xb3\xc8\x01\x28\x70\x00\x5c\x17\x6e\x6b\x10\x47\x5a\x87\xee\xc0\xd6\xc8\xf7\x87\x41\xf0\x7b\x72\x00\x50\xff\xb7\x39\x6d\xdb\xf2\x6a\x87\x91\x64\xfe\xe7\xdc\x4a\x0a\x83\x04\xb8\x91\x22\x65\x96\x4f\xdb\x08\xf0\x69\x91\xe0\x94\x18\x2e\x1f\x80\x90\x5a\xf6\x4f\xcb\xf4\x61\x1f\x69\xdd\xa8\xbc\xf0\x2c\x70\x01\x08\x77\x9c\x95\x20\xd3\x59\x1f\x2c\xc6\xef\x49\xd6\x14\xff\xf0\x04\xff\x70\xe1\x0b\x8d\xa9\x9a\xc4\xb3\x22\x39\x40\xfe\x93\x29\xf6\xe1\x59\x9f\x8b\xef\x54\x13\xb5\x26\xa8\x0b\x82\x81\xd4\x2a\x43\x1f\x25\x8d\x5b\x30\x5c\x54\x25\x8a\x2b\x44\x71\x30\x92\x5a\x89\x2a\x9a\xf5\x48\xe5\x16\xbc\xfa\x55\xa2\xb8\x42\x14\x07\xaf\xbe\x6a\x1f\xcf\x8a\x50\x52\xd0\x49\xa9\x12\xc5\xf5\x18\xfd\x7c\x3a\x33\xab\x22\x49\xf5\x48\x62\x82\x2e\xa7\x4a\x22\x4f\x54\x39\x6e\x84\x56\xce\x2a\x17\xa0\x42\x46\x93\x65\x64\x56\xc9\xe8\x8a\xac\x35\x5f\xc6\xcc\x5a\xd4\x55\x59\x67\x01\xa9\x45\xaa\xc4\x37\x2a\x23\xb7\xa0\xc0\xa8\xca\x35\xa0\x30\x72\x21\x5f\xf2\xac\x55\x2b\x88\xec\x34\x5f\xa9\xcc\xaa\xe8\x0e\xf8\x21\xf8\xe6\x67\x56\x79\x00\x15\xea\x80\xb8\xc6\x59\x9b\x16\xf0\xa8\x83\x16\x3c\x9e\x95\x68\xa4\x59\x5b\x9c\xef\x71\xe8\x4d\xc7\x02\xd1\x1d\x16\xd8\x9d\x55\x0a\xa1\x1a\x06\xc1\x9e\x4c\x0b\x68\x08\x11\xeb\x2c\x49\x21\x54\xc3\xf7\xa8\x94\xaa\x6b\xef\x91\xa0\x08\x2d\xa0\xeb\x48\x3b\x8e\x34\xdd\xc6\x2a\x65\x51\x91\xbb\x08\x2d\xa0\x72\x17\x15\x90\x56\x45\x4d\x55\xa4\x79\x56\x04\x6a\x82\xc1\x89\x2a\x1f\xa0\x06\x3e\x48\xef\xa5\x86\xf6\x31\xb0\x23\xf4\xbc\xaa\x52\x14\xf5\xb8\x03\x85\x70\xc2\x59\xa5\x49\x2a\xd4\x45\xfc\xd3\xa4\x33\xd3\x71\x66\xe8\x44\xa9\x1c\xf4\xac\x88\xe2\x84\xee\xfe\xd0\xf2\x42\x29\xb0\x3a\xe3\xac\x43\xe7\xf3\xe8\x87\x46\xfa\xd8\x59\xa5\x14\x2a\x02\x3c\xfd\xa9\xff\xcd\x24\xad\x53\xa7\xe3\x28\x06\xd6\x6d\x9e\x75\x6a\xad\xe6\x87\x88\x3a\x9b\x64\xd5\x57\xa8\x8c\xae\x9b\xac\xc8\x50\x85\xc1\x4f\x3e\xda\x59\xa5\x18\x40\x25\xde\xba\x4e\xf6\xd6\xac\x11\xe4\x61\xad\xdc\x59\x15\xe4\xa9\xc7\xee\x26\x13\xcf\xac\x12\xff\x15\xd9\x00\xe2\x03\x67\x7d\xb5\x2d\x47\x13\x34\x72\xa0\xcc\xfa\xea\xb8\x1d\xf1\xff\xcf\x99\x97\xf4\xaf\x88\xff\x74\xad\xc5\xab\x41\xbc\x18\x04\x7b\xfa\xb4\x14\x08\xff\x10\x06\x38\xeb\xa7\x05\x84\xf0\xef\xea\x4a\xc2\xbf\x7e\x2f\x9a\x7e\x42\xa3\x49\xf8\x37\x84\x72\x08\xe9\x9b\x4d\xd9\x85\x06\x6c\x68\xe5\xd9\x68\x0a\xd8\x80\x8a\xbd\x91\x43\x76\x36\x45\x65\x5a\x3a\xfa\x93\x51\xbc\x46\xdc\xe8\x04\x47\x7b\x23\x49\xec\x6c\xc4\x8d\x4e\xd4\x0b\x6f\x04\xcd\xcd\xa6\x2c\x42\x4b\xeb\x7c\x2f\xd8\xc2\x59\x35\x08\x78\x82\xe6\x66\xcb\x1a\xc4\x91\xf5\x2c\x9f\x3d\x9b\x82\x3c\xa8\x30\x1e\x1a\x83\x02\x39\xed\x58\xd6\xc4\x1f\xcf\x46\x64\xe8\x6c\x47\x9e\x37\x42\xf0\xa6\xaa\x8d\x4f\x54\x1b\xd7\x05\x6f\x12\xef\xed\x88\xf3\xa2\x80\x7a\x53\xc0\xbf\x15\x6c\x07\xd5\x74\x53\xc0\xbf\xd5\x23\x08\x29\x15\x9a\x62\x3f\xed\x48\x77\xdd\xfc\xa6\x4c\x32\x38\xec\x1b\x61\x80\xb3\x55\x2d\x5e\x3d\x07\x89\x32\xa1\x35\xed\x3b\x72\xcc\x64\xd0\x9d\x22\xbb\x9f\x28\x7c\x6e\x8f\xf6\x5d\x22\x1c\x85\xd0\x25\x48\x1a\xf1\xa4\xb3\x41\x82\x33\x15\xd5\x94\x98\x46\x81\x74\x23\x1f\xef\x6c\xca\x3e\x37\xc3\x09\xe3\x9d\x6f\xe4\x1c\x9a\xcd\x30\x08\xc6\x13\x9a\x69\xdf\x8f\xdc\x37\x12\xee\xce\x26\xb9\xdf\x10\xc3\x21\xa7\xee\x6c\x0a\xc2\xb7\x40\x72\x8b\xc9\x8a\xa6\x44\x32\xca\xad\x1b\x4b\x2c\x4e\x11\xf8\xcf\xd6\xef\xaf\xb8\x82\x32\xdd\x5b\x0f\x24\xbe\xf8\xc1\xae\xc1\x77\x8c\x90\xc1\xb8\x26\xfb\xbc\x1d\xfb\x9c\x78\xf0\xd9\x64\x9f\x83\x00\xc9\x58\x5d\x70\x36\x85\x5d\xda\xc0\x12\xd2\x66\x6e\x32\xdd\xdb\x31\xdd\x3b\xad\xa6\x36\xb4\x57\xe3\xc5\x8f\xb8\x4c\x53\x83\x98\x18\x04\x27\xa5\x84\x71\x9b\xed\x7f\xff\xd7\xe9\x98\x35\x25\x8c\xdb\x11\xd5\x46\xa4\xdf\x14\xef\xd2\x04\xcd\x52\xa7\x79\xd6\x64\xec\xb7\x89\x85\xd0\xbd\x5e\xda\xaa\x23\xdf\xed\xd1\xed\x95\x50\x07\x35\x93\x3d\xba\x8a\x0a\xf7\x83\xaa\x89\xf8\xf2\xd9\x14\x8f\x69\xc7\xba\xef\x34\xe9\x9a\xd2\xc2\x6d\x63\x7b\x75\x75\xb6\x56\x6f\xa3\x27\x5d\x1d\x45\x5d\xda\xc6\xf2\xe9\xac\x2b\xf9\xdb\x5e\x7c\x50\x87\x5d\xe1\x7e\xd4\x4d\x28\x35\xeb\x57\x5a\x8b\x63\xc2\x5b\x62\x58\xad\x7d\x9a\xf0\x91\xea\x96\xb4\xec\x9f\x0e\xe0\xb1\xdb\x8d\xaf\x3a\xa6\x29\xb6\x62\xc7\x38\xb7\xc4\x29\xab\xf6\xc2\xb4\x23\xc5\x8d\x1c\xbc\xd3\x08\x01\x9d\xf6\xe0\x83\xb4\xb5\x4c\x11\x14\x4b\x58\x42\xfe\x48\xc0\x1d\x94\x6e\xb0\x54\xd4\xd4\xd5\x34\xce\x8c\x19\x50\x37\x89\x6e\x3b\xc6\xb9\x91\x73\x63\x9a\x32\xc0\x76\xec\x74\x62\xf7\xa7\x29\xcd\x6b\x47\x40\x1b\x8b\xe0\x4d\x53\x2c\xc4\x8e\x05\xde\xd5\x93\x2c\x70\xd4\xfa\x37\x32\x71\x4c\x13\xda\x07\xa5\xfe\x8d\xc8\xe5\x69\x92\xeb\xe0\xe1\x32\xd6\xc6\x9b\xc6\x57\xb8\xd3\x2a\x26\x4c\xb4\x85\x29\xbd\x6a\x35\xce\x28\x38\x29\x59\xd9\xa0\xf1\x32\x72\x70\x4c\x23\x3c\x74\x5a\xc5\x52\xf0\x22\x98\x62\xf0\x76\x6c\xf1\xc2\x52\x11\xd3\x24\xa4\xad\xe1\x5c\xf0\x8e\x18\x91\xa3\xd3\x80\x1c\xad\xb4\x1e\x4c\x31\x78\x33\xcc\x98\x4a\xc4\x64\x4d\x9b\xe1\x83\x0c\x0f\x98\xe0\x3e\x76\x64\xaf\x11\xdc\x36\x55\x21\x63\xa2\x42\x46\x21\x7d\xdf\x34\xc9\x62\x73\xf4\x45\x9f\xdd\x14\x9f\x07\x01\x59\x21\x9a\x7c\x9a\x6b\x09\x1d\x83\xd7\x76\x29\x8d\x6a\x7e\x76\x92\x6c\xc0\xd3\x14\x95\xb1\xc0\x83\xb8\xa6\x26\x6d\xd7\xb1\x83\x2d\x3f\xff\xad\x30\xed\x34\x85\x52\xac\x9f\x33\xc5\xdc\xa7\xc9\x6a\x36\x08\x71\x32\x72\x4c\x1b\xda\x97\x23\xb5\x8d\x0f\xd9\xa7\x29\x0e\x6e\x47\x34\x9b\xb2\xdb\x26\x98\x8e\x1d\xd9\xdc\xb5\x1e\x53\xc3\x9f\x15\x3f\x62\x57\x12\xbb\x76\x6c\x67\xcb\xff\xfc\x4a\x3b\x36\x31\x69\xad\xa2\xd0\x38\x76\x44\xb0\x65\x2d\xd5\xd2\x2a\x2e\x0c\x50\x87\x5e\xf1\x12\x5b\xd8\x67\xe3\xe9\x50\x20\xdc\x76\x01\xa6\x80\x47\x40\x31\x6d\x83\x78\xe5\x5b\xec\x69\x02\xd0\xd8\x46\x5f\x3a\xbf\x5b\x7d\xed\xdb\x17\x0f\xa9\x24\x2f\xe8\xce\x4c\x48\x36\x53\x44\xdb\x00\xb3\xac\x1a\xc6\xab\x85\x82\x50\xe6\xc3\xea\x29\x8e\xb4\x69\x57\x28\x9b\x3e\xa8\xe3\xf6\x62\x93\x99\xee\x35\x65\x5a\x0d\xf2\x3a\xeb\x42\x48\x5e\x83\x47\xcd\x32\x15\x80\x49\x5e\x1b\xe4\xb5\xa0\x6c\x2e\x79\xed\xc7\xea\x96\xa5\x2d\xc2\xb5\x09\xc2\x35\x52\x13\x4e\xd1\xad\x4d\x14\x76\x31\x52\x95\x4c\x97\x0d\xee\x40\xeb\x08\x94\xe6\x12\xd7\x9e\xf0\x2b\x9a\x41\x2e\xa3\xd9\x8f\x0c\x36\xd2\xeb\x4e\x57\xd6\xd4\x8f\x95\x6c\x85\x9a\x41\x35\x64\x26\x6a\xc8\xf0\x35\xce\x74\xbe\xc2\x9a\x0e\x71\xcd\xc7\xbc\xd3\xf3\x3f\x5d\xbd\x68\xe2\x84\x49\xc2\x30\xfd\x98\xdd\x9d\xa6\x89\x2a\xd2\x4c\x3f\xb6\xb6\x15\xde\x1f\x17\x38\xd3\x0b\x06\xc1\x49\x29\x28\xe2\xc7\xa0\xe6\x3b\x9d\xa9\x42\x35\xd3\x2b\xf0\x15\xbc\x59\x2e\x83\xda\x6b\x3d\x3f\x2a\x6c\xd1\xa2\x57\x2c\x04\x03\x1f\x2e\x04\x8d\x43\xc4\x2b\x2e\xe7\x12\xf1\xde\xb0\x1f\x34\xfa\x5c\xd1\x73\x3f\xc6\x75\x67\x08\xd0\x85\x93\x01\xcd\x9d\x15\x5e\x39\x57\x96\xd5\x8f\x71\x6d\x85\x37\xc4\x15\x2e\x01\x01\x5e\x27\x0c\xcf\x65\x6c\x3b\x64\x3f\x9f\xa9\x4e\x17\x16\xc6\x61\x87\x93\x98\x77\xba\x64\xbf\xc3\xa2\x16\xc4\xcc\x95\x80\xf5\x63\x5c\x77\x86\xc2\x5d\x59\x56\x3f\x42\xdb\xca\x3f\x4d\x4b\x4d\x47\xa8\xf2\x52\xb9\xac\x70\x87\x78\xe7\xab\xc7\xe9\x42\x7a\xfa\x1f\x14\x86\x43\x57\xd4\x1d\xc4\x7d\xfd\x9f\x16\x4d\x0a\xa6\x3b\x1f\x44\x4e\x97\xe9\xee\x81\xad\xa2\x6a\x72\x25\x60\x3d\xce\xf8\xfe\xf9\x91\xce\x4b\xcf\xa7\x85\x0b\xd1\x35\x86\x0e\xd1\xa3\xe9\x0a\x5b\xe3\xfd\x1c\x4c\x5d\x79\x39\x02\xde\xef\x18\xb8\x53\xca\xbf\xfa\xd1\x34\xc6\xca\x60\xd3\x05\x0f\xf5\xe3\x2e\xa4\x87\x3a\xd0\xa5\x79\x7c\x38\x7e\xa5\x26\x5d\x0f\x94\xec\x7d\x68\x5f\xba\x34\x8f\x83\xd8\xf6\xa1\x97\xe0\x4a\xc1\xfa\x38\x1b\x22\xa0\x96\x4f\x9d\x5a\xf0\x01\x3d\x12\x30\xd2\x4a\x0e\xad\xc4\x27\x8c\xd3\xa5\x95\x1c\x7e\x42\x65\x44\xd6\xe5\x27\xf8\x84\xcc\xd7\xb9\x90\xc2\xf2\x55\xf0\x2b\xae\xa1\xd2\xb3\xbe\x30\x42\xe6\x74\x5d\x61\x7c\x87\x56\x12\x46\xca\xa5\x95\xfc\xcd\x68\xe2\x30\xa4\x44\xfc\x3d\x9b\x22\xeb\xc3\x15\x78\x01\xf3\x62\x22\xd3\xe4\x74\x99\xef\x0e\x4d\x51\x19\x94\x71\x05\x65\x1c\x64\x5a\xac\xd6\x32\x5d\x9a\xc2\x3f\xf4\xa5\xfb\xfd\xa9\xaf\xef\xf6\xf5\x1b\xa1\xd8\x1b\x67\xa0\xaa\xf1\x43\x49\x1c\x7c\xdb\x35\xe3\xc1\x2e\x33\xa0\x1c\xb2\xec\x03\xba\x82\x35\xb9\xa6\x68\x1d\x67\x3c\x38\x6c\xbc\xfb\xa1\xb8\x3b\x48\x1c\x8d\x8f\xb1\x66\x08\xda\x19\xe9\xf6\xc5\x11\xca\xb4\x8f\x84\xc1\xd3\x0a\x0e\x65\x47\x03\x1a\xa6\x32\x26\x12\x0a\xc9\x83\x14\xb2\x90\xd7\x77\x86\x22\x36\x91\x71\xd8\x98\x5d\x0e\x79\x04\x01\xbd\x24\xb4\x56\x08\x97\x13\x19\x87\x8d\x27\x2a\x14\xae\x0f\xd4\xbb\xe1\x33\xbd\x19\x52\x4c\x01\x6f\xa1\x32\x2c\x12\xf2\x16\x02\xde\x42\xa5\x68\x08\x69\xa6\x28\x77\x84\x1c\xbc\xa2\x40\x97\xc5\x92\x8f\xfb\x66\x08\xf7\x19\x05\x9b\xf2\x1f\x9f\x35\xcd\x90\x0b\x12\x47\x55\x99\xf0\x61\x21\xb0\x4f\xc0\x3b\x11\x3e\x4c\xa4\x99\x13\xa4\x99\xa5\x51\x40\x84\x74\x57\x1c\x9f\xc3\x04\x1d\x0b\xa9\xa1\x40\xc8\x47\x00\xb1\x50\xc8\x27\x1a\x76\x9a\xf6\x62\x28\xc1\x1b\xd0\x50\x82\x81\xa9\xb8\xda\x8c\xa3\x92\x4c\x30\xb0\x10\x5c\x33\xc0\x54\xcc\x37\x88\x33\xa4\xa2\x02\xee\x89\x70\x60\x21\x15\x15\x70\x4f\x9a\x6e\x8b\x90\x9c\x61\x18\x21\x03\x27\xa1\xcc\x30\xd8\x3d\xad\x15\x35\x69\xca\xc7\x1d\x29\xe4\x6e\x9e\x21\x90\x67\x38\xb6\x93\x9a\x37\xe4\x9e\x84\x63\xa1\x28\x71\x42\x28\x21\xd4\x8c\xb3\x46\x4b\x48\x25\xe3\x66\x40\x4b\x35\xdd\x16\x61\x39\x03\xe4\x16\xff\xac\x7c\xe8\x04\x1f\x85\x55\x04\xcd\x8b\xd0\xca\x23\x2c\xd5\x74\x16\x15\x96\x42\x09\x3a\x13\x7c\x2c\x94\x51\x8e\x8e\x35\xd4\x56\x2a\x7b\x10\xfd\xf6\xc5\x11\x4a\x51\x05\x82\x4f\xac\xa3\x36\x43\x29\x82\x80\xf2\xd0\x9b\x84\x90\x4b\x13\x13\x23\x94\x58\x91\x86\x08\x04\x85\xc8\x66\x3c\x43\xce\x09\xca\xe5\x25\xd6\x7e\x9a\xa1\x14\x70\x20\x28\xd4\x24\x05\x84\xf4\x0c\x68\x08\xa1\xf1\x43\x1a\x22\x36\xce\x21\x8d\xf8\x90\x86\x00\xbb\xab\xb1\x16\xd8\x0c\xa5\x73\xc1\xda\x6a\xa6\x9b\x22\x5f\x22\x5e\x9c\x0d\x9a\x01\xe2\x73\x9d\xe0\x73\x35\x61\xd7\x45\xe7\x3a\xe3\xe8\x11\x33\xaa\xd2\x90\x9b\x11\x47\x8f\x98\x51\x95\xc6\x27\x89\x83\xb0\x90\x51\x95\x86\xb0\x9e\xf1\xdd\x61\x70\x0d\x05\xf6\x0c\x78\x20\x2c\x3f\x3c\xbb\xbc\x89\xfe\xe0\x83\xbc\x44\x22\x8e\x9d\x20\x8e\x35\xa1\xbc\xbb\x70\x9b\xfd\xc1\xd9\xe0\x99\xef\xd2\x2b\xa8\x31\x68\x42\x80\x8b\x6d\x76\x82\x6d\xb6\xe8\x3a\x74\xe5\x73\x7b\xc2\x08\x79\x1d\xba\x7c\x90\x9e\xf1\x41\x4a\xed\xae\xa4\x2d\x28\x6a\x4d\xe0\xe6\x2e\x35\x80\xea\x85\x46\x12\xe1\x29\xf2\xda\x09\xf2\xda\xd2\xa8\x57\x3a\xf9\xde\x66\x07\xa3\x50\xa3\xef\xdf\x95\xb6\xed\x90\xda\xa4\x6e\x9b\x62\xbc\x9d\x60\xbc\x4d\x0a\xfe\x75\x81\x3a\x7b\xc1\x30\xf8\xae\xa7\x0b\xd4\xd9\xe1\x87\x18\x3d\x9e\x2e\x61\x0e\xc6\x5c\x23\x75\xdb\xec\xca\xc0\x76\xc4\x7f\x04\x99\xed\x8a\xff\xf4\x76\x0e\x40\xa2\x9c\xef\x72\x1c\x3a\x84\x39\x8b\x57\xcd\xae\xd0\x50\x6f\x38\x87\x3c\xbd\x5d\x12\xbb\x43\xf6\xb2\x62\xf0\xec\x82\x67\x76\xbb\x7d\x71\x84\xca\xc1\x76\x08\x58\xa3\xc1\xdc\x15\xff\xe9\x7e\xf4\xa5\x82\x9a\x5d\xb2\xb7\x1f\xd9\x6b\x4e\xd5\xd6\x85\xca\xe9\xf0\x2a\x84\x41\xea\xfe\x4f\x5f\x1f\x9a\xd8\x97\x04\x6c\x47\x70\x9f\xcc\x6e\xb3\x0b\xa1\xd9\xe3\x0e\x83\xf3\x92\x87\xd0\x51\x59\x9a\x0f\x9f\x67\x57\x7a\xb6\xf7\x63\x82\xf3\x75\xf3\xec\x02\x62\x76\xc8\x5e\xe7\x5d\xee\x92\xbd\x20\x31\x36\xe7\x5d\xee\x92\xbd\xbd\x03\xfc\x4c\x60\x41\x57\x4a\xa0\x0f\x1c\x51\x1d\x36\xa5\x67\xfb\xb1\xe1\x4d\xa8\x40\x31\x21\xcf\x0e\x9b\x3e\xfd\xd3\xa4\x85\x82\x58\x76\xda\x88\x5d\x98\x9d\x7e\x24\xb4\x09\x8a\xd4\x05\xab\xec\x08\x27\x09\x8a\xd4\xa7\xfa\x9a\xb7\x2f\xde\x2f\x92\x04\xcf\x0e\x89\x9d\xd4\x97\xd2\xb6\x1d\x36\xbd\x00\x47\xa2\x63\x9e\xa0\x63\x4e\x49\x7d\x49\x98\x5f\x36\x66\x05\x8d\xbb\x24\x36\x4a\x7a\x9a\xeb\x9a\x0b\x3d\xd9\x37\x3e\x28\xb9\xa1\x48\x53\x47\xad\xf6\x24\xb9\xa1\xbc\x6d\x47\xd9\xe3\x44\x6f\xbe\x2b\x3b\xdb\x5f\x9c\x43\x7a\xf3\x5d\x08\xc9\x7e\xfc\x85\x94\xb4\x5f\x72\x12\x3a\x62\x46\xa4\x72\x9b\x5d\xc2\xbc\x7f\xb7\x2f\x0e\x5e\xf0\x49\x10\x49\x27\x56\x8d\x9b\x43\x9e\xc0\x80\x27\xa0\x38\xb4\x28\xa6\x27\x8a\x91\x9a\x53\xa4\x0c\x61\x73\x06\xe4\xbc\xff\xf3\xab\xae\x26\x9c\x0d\x3a\x09\xaa\x44\x3a\x07\x3c\x01\xf7\xff\x18\x44\x1d\xca\x01\x0c\xc4\x9b\x9c\x12\x67\x28\xde\x04\x42\x6b\x73\x06\xa3\x87\xe2\x39\x03\x56\x33\xc9\x0f\xe6\x28\xff\xfc\xea\xc8\x29\xe1\x84\x86\xc2\x36\x03\xc1\x19\x81\x81\x46\xd5\x07\xeb\xfd\x60\xb0\x69\xaa\xe9\x3d\x4d\xc4\x6f\x0c\x01\x60\xc6\x91\xb7\x16\x59\x4d\xea\x0b\x35\xbc\x14\x49\x57\x89\xd5\x39\x20\x9a\x85\x9b\x19\x7a\xe0\x04\xea\x6d\x13\x1c\x68\x08\x2c\x39\x50\xa3\x3a\x31\xfc\x31\x24\x9a\x07\x8c\x69\x92\xb0\xcd\x21\xd1\x8c\x92\xad\x46\xaa\xb5\x39\x04\x97\x1c\x86\x11\x76\x35\xb9\x9a\xb0\x1a\x74\x65\x86\xa4\xf6\x40\xbc\x47\x20\x22\x95\x72\x9d\xc3\x71\xe0\xa8\xde\x86\x8c\x69\x54\x79\x35\xb2\xad\xcd\x21\xe4\xcc\x38\xb2\xdd\xc8\xb6\x36\x87\x62\xfd\x03\xc5\x47\x58\xfa\x6f\x0e\x21\xee\x07\x04\xba\xd0\x20\x43\xb1\xfe\x81\x58\xbf\x1e\x8d\x0e\x05\x83\x06\x04\x3a\x5f\xcd\xcf\x21\xbc\xcd\x40\xc8\x47\xe8\x8d\x21\x8b\x79\x04\xfa\xa2\x59\x3c\x04\xaa\x19\x1d\x07\x80\x57\x7d\x28\xe8\x33\x40\xea\x20\xa3\x73\x48\xd6\x8f\x7e\xfb\xe2\x42\x29\xa7\x30\x00\xcf\x6c\x34\xce\x86\x32\xb9\xa8\x6a\x5b\x9a\x36\x45\xf1\x9b\x81\xf8\x0d\x1f\xf6\xcf\xa1\xf8\xcd\x40\xc1\x2d\x3e\xec\x9f\x43\x50\x9c\x81\x2c\x6f\x98\x9a\x28\x9a\x07\x2a\x08\xea\xcd\xff\x90\xac\x1f\x88\xdf\x08\x06\x31\x04\xdd\x1c\x13\xc3\xa0\xbe\x1c\xb2\xce\x07\x52\xb6\x82\x48\x0c\x59\xe7\x63\xe1\x83\xda\x2f\xe1\x70\x06\x12\x0e\x41\x9b\x63\x28\xe1\x30\x90\x70\xd0\x33\xd5\xa1\x84\x03\xb8\xe6\x2d\xb4\xf2\x42\x68\x8e\xa3\x11\x8a\xde\xa9\x0e\xa9\x81\x01\x35\x40\x02\xe4\x39\x94\xea\x1d\x1b\x07\x80\x9e\xc0\x90\x1a\x18\x48\x38\x84\x8e\xa8\xd0\x9b\xa8\x0a\x6c\x02\x41\x0d\x69\x88\xf1\x3d\x68\xe2\x08\x15\x10\x1a\x50\x03\x9d\x4e\xdd\x50\x40\x08\x04\xf8\xd6\xb5\xbc\x32\xdc\x07\x0c\x77\x32\xa4\xcd\x29\x94\x0e\x0a\x02\x1b\x8b\x3a\x4d\xb1\xe6\x4f\x30\xe3\x9b\xb2\xb6\x53\x38\xcc\x79\x0c\xf5\x94\x69\xd3\x4f\x56\xe4\x9c\xa8\x22\x6c\x9d\x12\x60\xca\x3a\x47\x11\x61\x23\xa5\xd9\x9c\x12\xe6\x13\x09\x5d\x65\xcb\xa6\x42\x3b\x13\xd6\x39\xab\x58\x4f\x71\xe9\xcf\x89\x98\x4a\xe7\xfd\x9a\x8a\xa9\xcc\x63\x72\x27\x25\xd2\xa6\x30\x90\xf3\xa8\x80\x94\x35\x0c\x19\xd3\x13\x91\x11\x96\x6b\x9a\x53\x18\xc8\xcb\xcd\xaf\x4c\xda\x54\x9e\x75\x1e\x91\x9f\x94\x2e\x9b\xb2\xb3\x51\xee\xd8\x94\x40\x98\x02\xc3\xcc\x23\xf2\x4d\x69\x82\x29\x39\x8f\xea\xc7\xd6\x69\x9d\x4f\xc5\x38\x26\xc4\xb2\x92\x6c\x53\x29\xd8\x09\x60\x8b\x22\xea\x53\x62\x19\xd5\x93\xad\x33\x2e\x35\x05\x6c\x99\x90\xbd\x9d\x2e\xee\x94\xec\x9d\x08\x49\x28\x66\x3d\x15\x87\x9f\x40\x2d\xb2\x3c\xf3\x9c\xae\xd5\x80\x80\xd5\xd3\xe2\xa9\x64\xea\x0c\x3c\xf2\xe1\x99\x9f\x32\x8b\xe7\x91\xa2\xfe\x50\x10\x4d\x49\xd1\xd9\xf1\x2b\xaa\xec\x29\x79\x38\xfb\x1d\x06\xcf\xa1\x92\xac\x73\x94\xf3\x2b\x2a\xdf\x29\xdb\x77\xde\xb7\x46\x3a\xd8\x8a\x3b\xcc\x81\x57\x4d\xfa\xa0\xe4\xe1\x9c\xf8\x20\x75\xe5\x14\xc2\x70\x4e\x0c\x9e\x4a\x6a\x4a\xb2\x4d\x58\xb1\x59\x07\x40\x60\x94\x79\x84\x9c\x2b\xec\x37\x15\x99\x9e\x47\x92\xb9\xc2\x7e\x53\xe2\x6b\x1e\x83\xd6\x05\x0e\x9a\xe2\x2f\x98\xfb\xf6\xc5\xb3\x21\x5c\xe2\x3c\x92\xcc\x85\x1b\x9a\x12\x5f\x73\xa3\x2f\x1a\x9d\x53\xc0\xc4\xb9\x31\x2f\x5a\x96\x53\x92\x6d\xbe\x58\x0d\x5a\x96\x53\x92\x6d\xbe\xf8\x20\x83\x5c\x53\x08\xf3\xf9\x61\xe5\x75\xe6\x15\x77\x98\x88\x3b\x64\x9d\x5e\xe1\x0f\x27\x1e\x01\x09\xb5\x33\x85\x3f\x9c\x1f\x56\x83\xd6\x97\xc8\xe7\x27\xc8\xe6\x5d\xf1\x94\x25\xfc\xe1\x7a\x6e\x5f\x9d\x4d\x53\x4d\x90\x6c\xff\xb1\xb6\xea\x5c\x12\x7c\x2b\x61\x45\xa8\x9b\x97\x22\x16\x0b\x35\x8c\x94\xd5\x15\x71\xfd\x5c\x09\x07\x4e\x43\x51\x24\x1c\xcc\xf5\xa9\xd0\x1c\x59\x92\x89\x2b\xe7\xf3\xab\xae\xa6\xa2\xa6\x86\x5f\xb1\x2f\x21\x14\x57\xee\x68\x62\x5f\x0a\x66\x2c\xd4\xb7\x15\xa5\x88\x18\xea\x27\x18\xea\xfd\x21\x88\x7f\x29\x3a\x0d\xb2\xfa\xa4\x6c\xb0\xca\x87\xcc\x55\x70\x74\xa8\xf9\x96\x90\x88\xeb\xc8\xdb\x24\x82\x90\x25\x13\x7c\x41\xc8\x8a\x20\x44\x14\xf5\x73\x1d\x6b\xdc\x15\x2a\x58\x42\xc7\xac\x63\x8d\x7b\xd2\xbc\xf4\x42\x75\xa1\x52\x10\x79\xa9\xa7\x88\xed\xe7\x3a\x02\xdc\x15\x45\x58\x42\xc7\x80\xf3\xde\x13\xb5\xac\x38\xef\x27\x88\xed\x9d\x6c\x67\x73\x29\x9e\x0d\x8e\xfb\xa4\x2c\xf7\x52\xf2\x14\x1c\xf7\x2e\x97\x7a\xc9\x98\x5e\xe0\xc9\x61\xb9\xa9\xb9\x14\x99\x06\x1d\xbe\x27\x4a\x9c\x25\xa9\xbd\x1c\x1f\xa4\x7a\x5b\x8a\x31\x2f\xc7\xa3\x48\xaa\xd2\xa5\x38\xc7\x0a\xcc\x8b\x62\x65\x29\x98\xb1\x60\xfb\xea\xe1\x8f\x18\xf1\xe7\x3a\x66\xb0\x0b\xcc\xb4\x14\x48\x5e\xb1\xf0\x2b\xae\x86\xa4\x36\x0a\xe8\x3b\xe9\xc2\xe6\xea\xea\xab\xdf\xbe\xb8\x50\x7a\x55\xba\xfa\x38\x4d\xd4\xcd\xe2\xc4\x9f\xe0\xc4\x4f\x85\xe2\x72\xc9\xf6\x5d\x03\xab\x41\x87\x55\x85\xf6\x27\xf8\xf1\x93\x48\x53\x96\x64\x3d\x58\xf0\x5d\x1e\xf0\x12\x8c\x71\xa1\x1e\xb0\xf8\x54\x54\x81\x7f\x82\x06\x3f\x29\x19\xaf\x02\xfc\x13\x34\xf8\x9e\x28\x7f\x97\x6c\x5f\xd0\xe2\x17\x05\xf0\x96\x94\x07\x28\xf2\x3d\xb9\x86\xa1\x13\x85\xe8\x88\x1e\xc9\x2c\xe1\x1f\x51\xa3\xdf\x13\x33\xf5\x4b\xf8\xc7\x75\x8c\x69\x67\x71\xa5\xb9\xa4\x72\xc0\xb4\xef\x49\x32\x51\xc6\xf4\x82\xca\x61\x69\xa5\xb9\x04\x8d\x04\xe9\x7e\x12\x94\x60\x09\x1b\xb9\xa0\x72\x8a\xe6\x25\x95\x03\x3e\x7e\x97\x03\x29\x16\xfe\xb9\xa0\x72\xe4\x40\x2e\x41\x74\x40\xd0\xef\xa4\x3b\x9b\x4b\x2a\x07\xdc\xfa\x9e\x24\x88\x14\x3b\x5f\xc0\xe1\xe8\x99\xe3\x52\xe0\x04\xa5\x89\x3c\x4b\x1e\x2a\x70\x02\xb6\xfd\x24\x48\xc3\x12\xd8\x06\xcc\xfb\x2e\xf6\x2a\xd0\xef\xff\xfe\x84\x58\x66\xfe\x61\x2b\xa6\xb2\x1f\xf4\x95\xd4\x54\xd5\x84\x63\xc3\xfd\xda\xca\xae\x82\x6f\xbf\xb0\x56\xc6\xdc\xd2\x29\xa0\xd1\x77\x56\x86\x9f\x5b\x48\x9c\x8d\xa7\xa7\xac\xa0\x32\xb7\xde\x9e\xa2\xaa\x52\x51\x98\x76\x4b\xdd\xec\xa3\x53\x3c\x53\x1e\x6e\x01\x27\x37\xa8\x73\x14\xc1\x15\xe3\xfe\xdc\x57\xa7\xd0\x65\xda\x4a\xa1\xee\x7c\xb6\x52\x14\x33\x5b\xc9\x50\x14\x70\x72\x01\xd6\xb6\x92\xa1\xfb\xa8\x1b\x67\xe9\x95\xb9\x15\x3b\x07\x31\x7f\xd1\x2b\xd2\x2d\x4d\x04\x8e\x7d\x97\x09\xae\x2a\x50\x73\x1f\x45\xe1\x99\x3e\xf3\x56\xec\x66\x23\x76\x23\xf4\xc7\x16\xb0\x66\x57\xbc\x7f\xa6\xa5\xb2\xa5\x02\x76\xc3\x07\x89\x07\xdb\x0a\x90\x83\x64\x3f\x95\xae\x5f\xf1\xb0\x6d\xc3\x7e\xe9\x6c\xc8\x3a\xdf\x86\x0f\xd2\x52\xd9\x92\xf3\x60\xdd\x77\xd1\x28\x6c\xa1\x20\x41\x98\xef\xc2\x9e\x6d\x25\x0c\xb7\x63\x35\x34\x0c\xc5\x38\xc0\x8b\x9f\xf4\xbe\x62\x0b\xd6\xb2\x03\x2f\xb7\x69\x54\x6c\xbd\x33\x05\xfd\x7d\x12\x02\x64\x0b\xd6\x02\xfa\x7b\x2f\x6a\x12\xaf\x00\xe8\xef\x53\xa5\x5e\xde\x8a\x71\x6c\xc8\x79\xb2\x5b\xcf\x2d\x60\x0b\x98\xf1\x8b\xe2\xf4\x5b\xf1\xec\x0d\x15\x20\xe8\xbe\x98\xf2\x27\x98\xf2\x93\xc0\x21\xa2\xca\x9f\xbb\xe3\x71\xb9\x86\x21\x64\xcb\x1e\x19\x4d\x1c\x86\x14\x07\xa8\xf1\xbd\xd0\x06\xd8\x4a\x33\x82\x0f\xdf\x59\x56\x63\x6e\xc5\x38\xc0\x7f\xef\x25\xeb\x57\xda\x14\x08\x73\x91\x95\x6d\x01\x51\xf6\x11\xde\x2e\x53\x64\x2b\xd4\x0d\xf2\xfb\xe2\xcc\xef\x89\xf2\x7e\xee\x75\xfb\x0a\x36\xe9\x1c\x1e\xe1\x5d\x3c\xe5\xff\x66\xaa\x8a\x11\x7f\xee\x85\x8a\x03\x5a\x47\x05\xc9\xf7\xc6\xb4\xe9\xbe\x6f\x45\x47\xf6\xc6\x76\xd2\xb1\x13\x5b\xfe\xdc\x90\xf5\x52\xdb\x5b\x48\xcd\x7d\xc4\xbe\x17\x5d\x75\xc9\x7a\xb0\xe5\xbb\x20\x74\x5b\x19\xcf\x7d\xb9\x02\xa8\x65\x45\x7c\x3f\x37\x04\x3a\xeb\x77\xcd\xad\x10\xc8\xfe\x70\xb8\x89\x26\xdc\x12\xe8\xfb\xbb\xe4\x03\xbf\x0f\x8a\xf9\x7e\xbe\x88\x84\x57\xbe\xd9\x7a\x95\xd6\x7c\x1f\x6c\x27\xfd\x95\x57\x21\x90\x17\x8e\x82\x60\x40\xaf\xf0\x93\xef\x83\xbe\x28\xeb\x5f\x61\x62\xde\x84\xb3\x48\xd1\xfc\xca\x49\x78\x13\x96\xb7\xe8\x57\xae\x26\xdc\x16\xae\xbc\x78\xf1\xe7\x0b\xff\xa1\x30\x90\xfc\x8a\xf8\x12\x14\xf9\x49\xc4\x4c\xaf\x50\x97\x2f\x3c\x01\xb1\x2f\x89\xfc\x7e\xbe\x10\xe8\x22\x2f\x7b\x25\xd0\xc1\x8b\xef\x85\x81\xae\x57\x02\x1d\x94\xf6\xce\xba\xf6\xf3\x55\x30\xfe\x05\xf3\x25\xab\xfb\xcc\x57\x69\x4d\x30\xd7\x7b\x65\xa0\xeb\x55\xb8\xe5\x85\x27\xc0\xe2\xed\xf3\x15\x88\xf2\x85\xac\x17\xb0\xec\x15\x10\xe5\x3d\x4e\x81\x8b\xe6\xeb\x55\x9c\x1e\x5c\xf8\xa9\xd2\xa4\x7b\x15\xbf\x79\x61\xee\x0b\x58\xf6\x0a\x5f\xf9\x22\x4e\x4f\x3a\xf1\x29\x72\xfc\x09\x72\xfc\x54\x69\x9c\x89\x1c\x7f\x82\x1c\xbf\x28\x17\xf6\x0a\x60\x09\x76\xfc\x24\x9a\xaa\x57\x18\x15\xd0\xe1\xbb\x5e\x78\xbc\x72\x12\x5e\x14\xd3\x14\x83\xd5\x2b\x08\x3d\x48\xef\x5d\x94\x62\xaf\x22\xee\x60\xbd\x4f\xa4\xeb\x9e\xaf\xde\xaa\x82\xea\x3e\x55\x1a\x4c\xaf\xc2\xea\x60\xbd\xf7\x7f\xae\x83\xc2\xea\x20\xb7\x4f\x42\x74\xbd\xca\x93\x82\xdc\xde\xff\xb9\x0e\x52\x39\x28\x2e\xe8\xa4\xc8\x9f\xe2\xad\x9f\xe0\xad\x4f\x64\xd1\x9e\xaf\xf0\x92\xef\xd5\x2b\x54\x8a\x2a\x43\x38\x5f\x04\x84\xf4\x6a\xe0\x15\x69\xe6\x8b\x22\xe0\x42\x74\x89\xee\x7e\xbe\x1d\xc3\xd0\x01\x10\x10\xe5\x45\x40\xa8\x52\xda\xa8\xac\xe1\x7c\xa1\x06\xfe\x59\x79\xa9\x81\x17\x6a\x40\xdc\x61\xaf\x80\x28\xe0\xa3\xf7\x2a\x09\xa0\x20\x0d\xf8\xe9\x93\x20\x62\xaf\x9e\x13\xbd\x90\xbd\x02\x5f\xbd\x4a\x50\x82\xc6\xde\x85\xb0\x7a\xc5\x32\x09\xee\xfa\x24\x60\xd9\x2b\x3b\x1b\x64\xf5\xce\x0a\xf3\xf3\xd5\xeb\xd1\x17\x09\x4a\x01\xe6\x5e\xf1\x4c\xbe\x88\xdf\x08\x38\x24\xf2\xfa\x89\xc2\x8a\x2e\x30\xcf\x2b\xb4\x09\x78\xec\xbd\xd1\xab\x7f\x15\xf5\x79\x8f\xc9\x5d\x5c\xd2\x46\x12\xfb\x45\x68\x87\x35\xe9\xe7\x2b\x14\x23\x78\xec\x0b\xeb\xc0\xce\x4f\x09\x4a\x30\xd2\xbb\x38\x7d\x3f\x85\x76\xc0\x50\x9f\xb4\x86\xa2\xa8\x9f\x1f\x84\x39\x6b\xd5\xcf\x4f\x68\x13\xb0\xd5\x7b\xa3\xec\xfd\xc4\x2b\xf0\x25\xe8\x66\x3a\x90\x62\xaf\x9f\x5f\xc2\x30\x28\x60\xc5\x5e\x3f\xbf\x74\x87\xd1\xd8\x34\xd5\xb4\xd1\xc4\x61\x08\xa3\xf2\x65\x1c\x00\x66\x8d\x3f\x61\x54\x3e\x44\x61\x1a\xc3\x04\x9f\xa2\x30\xdf\x15\xb0\x94\x51\x9f\x30\x82\x1f\x2c\xe6\xc6\x6b\xfe\x29\x0a\x03\xc2\xfa\x24\x94\xda\x27\x7c\x20\x08\xec\x5d\x30\xaa\x4f\x90\x92\xaf\x5e\xc2\x1b\x2e\x94\x64\xef\x87\x78\x8a\x12\x6b\x9f\x12\xa1\xa0\xac\x4f\x8d\xf6\xc6\xa7\x6c\x27\x28\xeb\x5d\x0c\x58\x9f\x52\x9a\xa0\xac\x2f\x6e\x6a\xd2\x7e\x81\x00\xa6\xd1\xf6\xfd\x94\xd2\xfc\x0c\xe7\x90\x5e\xa2\x38\xec\x27\x28\xe2\x5d\xec\x58\x9f\xc0\x21\xdf\x91\x6c\x2e\xe6\xa7\x4f\xc6\x34\x98\xd8\xdd\x18\xbb\xf9\x94\xa9\x03\x71\xba\x8b\xec\x08\xec\xe9\xbf\x3f\x1b\x06\x6f\x6c\xd2\x94\x61\x74\x8a\x1a\xe8\x53\x8c\xf9\x43\x48\x42\x24\x3f\x9f\x42\x12\x20\x52\x4f\x82\x44\x7e\x32\x55\xbf\x79\x7f\xc5\x26\x85\x9f\xbf\x5b\x4b\xe9\x9f\x26\xfd\x6a\x55\xd0\xeb\xf0\x44\x29\xe7\xf6\x21\x16\x20\x1f\xec\x53\x2c\x00\xfc\xe8\x49\x17\xf6\x93\xe9\x08\xbe\x74\x37\x0a\xa2\x4f\x60\xb9\xef\x08\x39\xb7\xfe\x1f\x9f\xf5\x7f\x32\x3a\x3f\x18\x9d\x62\xe9\x13\xd5\xfa\xfc\x10\x45\x60\xa1\xef\xf9\xe9\xad\x3d\xa8\xd5\x53\x63\xca\xfb\x13\x02\x0f\xd4\xea\x2e\xac\xcf\xa7\x87\x3e\x1f\x02\x0c\xae\x9b\xa9\x94\xdc\x77\x64\xa0\xb3\x00\xf8\x14\xa1\xfa\x04\x01\xba\xfb\x2f\xef\xb6\x44\x80\xbe\x1e\xc4\x03\x08\x97\x59\x0f\xa3\xd3\xeb\x81\x23\x4e\x4c\xcc\x12\x2d\xf9\x02\x1f\xb8\x93\xc7\x66\x89\x0f\x7c\x3d\xe7\x92\x3a\x69\x58\xd6\xc3\xd0\xe9\x02\x35\x78\x21\x1b\xcc\x7a\xaa\xfa\x3a\x37\xd1\xc9\xd0\xb2\x9e\xa6\xbe\xe0\xe6\xb2\xb6\xdc\x7a\x08\xf6\x5a\x0f\x22\x9d\x44\x4a\xac\xa7\x69\x18\xc7\xe3\x75\x22\x25\xd6\xc3\xeb\xb7\xc0\x00\xee\xa4\x4d\x59\x0f\xc1\x5e\x0b\x0c\xe0\x89\xf2\x77\x3d\xcc\x4f\xad\x07\x6e\x2e\x81\x0d\xeb\x71\x0d\x1e\x89\xa1\xd0\x1a\x76\x2d\x2f\x4c\x84\xf6\x0b\x30\x2c\x51\x6e\xaf\x07\x97\x96\x44\x07\xeb\xe9\xfa\xe0\xf1\x42\x3d\x4c\xbf\xea\x6a\x42\x5f\x5a\xf9\xa1\xbe\xc6\xed\x8b\x53\xe6\x7d\x5e\x60\xd6\x2e\xa4\x6e\x5a\x62\xd6\x5e\x0f\xd2\x49\xa4\x0b\x58\x0f\x51\x56\xeb\x01\xca\xaa\x55\x8e\x90\xe9\xf5\xf5\x9c\x5b\x9f\x48\xe1\xb8\x9e\xa9\xe5\x3d\xb7\xde\x59\x01\x6d\x89\x91\x7b\x81\x82\x3b\x11\x9e\xbb\x1e\x72\x63\xac\xe7\x56\x69\xfb\xd9\x1c\xeb\x99\xda\xe5\xe3\xb0\x16\xd2\x3a\xad\x67\x6a\x84\x88\x3e\x92\xd1\x7c\x3d\x53\x23\x44\x56\xab\x69\x79\x97\x56\x7e\xe1\x1c\x76\x8e\x70\x69\xe5\x17\x46\x68\xec\x6b\x69\xa1\x00\xdb\x22\x71\xf9\x7a\x96\x0e\x1b\x12\x5e\xc4\x06\xac\x67\x69\x18\x1b\x0b\x65\x1c\xe1\xd6\x42\xc1\x23\x8d\xe0\x1a\x6e\xf5\xb5\x6f\x5f\xfc\x20\x11\x5d\xeb\xb9\x72\x43\xfb\xb5\x75\x44\x5f\xac\xbc\xae\x1e\x9f\x7d\xac\x07\xb6\x54\xd3\xa6\xbc\x3a\x1b\x10\x29\xa1\xd5\x78\x75\xd8\x5e\x9c\x8d\xce\x63\xf3\x6a\xca\x70\x71\xa3\xf3\xa6\x7c\xea\xeb\xbb\x7d\xa9\x49\xfb\x75\x0c\x26\xef\xbc\xcb\x49\x82\x28\xc1\xc5\x25\xd9\xe5\x12\x09\xf8\x4a\x90\x51\xfd\x47\xa2\xb0\x92\x64\x14\xf8\xc1\xbd\xff\x4c\x84\x95\x08\xf6\x5a\xe0\xf6\x76\xe2\x10\x56\xa2\x55\xb4\x40\xee\xed\x24\x4e\x59\x89\x38\xb0\x05\x0a\x6f\x27\xd8\x60\x25\x3a\xab\x0b\x1c\xde\x89\xf4\x99\x2b\x65\x7d\x10\xc9\x2e\x3e\xe9\x5e\x89\x81\xc9\x95\x72\x3d\xbf\xe2\xf2\x8a\xd4\x7b\x81\xd4\x3b\x11\x84\xbd\x52\xfe\xa7\x2f\xec\x32\x97\x37\xf1\xf9\xe0\x4a\x05\x0b\xf5\x33\x11\x56\x2a\x5a\xa8\x82\x85\xa2\xc4\x4e\x74\x71\x17\xc8\xb9\x13\x19\x34\x97\xd8\xb9\x17\xd8\xb9\xbd\x17\x7d\x70\xab\xe9\x1c\x6c\xc2\x21\x56\x2a\x1a\xc6\xb1\xd3\x92\x69\x2b\xab\x56\x03\xde\x2f\x91\x12\x2b\x55\x0d\xa3\xde\x61\x70\x0d\xe9\xfd\xae\x84\x3c\x98\x69\x2b\xab\xfa\x82\x76\xe8\x8d\xc3\xa0\xf7\xbb\xc0\xc2\x9d\x88\x20\x5f\xe2\xda\x5e\xe9\x28\x0a\x27\xf1\xcb\x4a\xd2\x0e\xa0\xdd\x76\x3e\x47\x5d\xa9\xa9\xaf\xe3\x08\x97\x48\xec\x4b\x8a\x03\xb4\xdb\xce\xa7\xaa\x2b\x99\x86\x61\x77\x18\x9c\x17\x1d\xe3\x95\xa0\x53\x4c\x87\xcd\xb4\xf2\x70\x8c\x89\xe5\x58\xc9\x75\x1d\xe0\x18\x13\xa2\xb0\x92\xd4\x0d\x18\xba\xbd\x53\x02\x24\xd7\x94\x11\x70\x25\x60\x63\x89\x6c\x7b\xa5\xb8\x1f\xe4\x94\x43\x47\x34\x2a\xa6\xcc\x35\x0c\x1d\x51\x38\xc6\x3d\xb8\x1a\xa1\x23\x1a\xc7\xd3\x36\x9d\xf9\xae\x85\xea\xb8\x0e\xba\x29\x5d\x7d\xf5\x8a\x5f\xb1\xaf\xae\x85\x42\xc0\x95\xf4\x63\x4b\x2c\xdd\x2b\xc1\x31\xe6\x23\xc8\x95\xba\x86\x81\x80\x2b\x59\x45\x57\x92\x6a\x4b\x00\x95\x91\x2b\x7c\x89\xc0\x7b\xa5\x71\x3f\xc8\x11\x0e\x9d\x8d\xa3\xe5\x82\x0c\x30\x4b\xdc\xde\x0b\x04\xde\xf1\xe8\x12\x4d\xf5\x85\xec\x19\x59\xd5\x56\x9a\x3a\xd8\x78\xf9\x17\xda\x4a\xa6\xc8\x16\x68\xbf\xe3\xd1\x61\x5b\x5a\xf9\x85\xbe\xb4\x1a\x4b\xab\xb1\x06\x9a\xfe\x1b\x56\x75\x25\x29\xaa\xb4\xd1\x9f\x46\xb9\xb5\xfa\x47\xfb\x24\xd3\x1d\xdb\x5a\xac\x8d\x15\xc9\x3c\xf7\xaf\x24\xce\x8b\x0f\x4a\xe2\xbc\x3a\xa6\x47\xc5\xc4\xa3\x8d\x91\x5e\x49\x2f\x3e\x28\x89\xf3\xe9\x98\x7e\x38\xa6\xd4\xe8\xe9\xd3\xd1\x81\x5e\x31\x6a\xf4\xf4\x69\xb1\x8e\x8f\x1e\x4f\x65\x5f\x52\x39\x09\x2f\x0d\x59\x52\x7e\x89\x19\x7c\x81\x19\x3c\x58\x60\x6e\x65\x62\xce\x56\x3e\xda\x27\xf8\xf0\x6b\x65\xa9\x1c\x90\x7a\x07\xc1\x28\x2b\x33\xe0\xba\x40\xf2\x9d\xf8\xd0\x61\x65\xa6\xc9\x16\xf8\xba\xe3\xa1\x1d\x90\xe9\x88\xaf\x0c\x47\xdc\x78\x9f\x33\xe1\x68\x2b\x27\xf4\xf5\x73\x8e\x57\x26\x1c\x6d\xe5\xf4\xa2\x89\x83\x4f\x14\x61\x19\x8a\xca\xd4\x24\xc3\x1d\xe4\xe0\xf1\x38\x47\x98\x35\xaf\x8c\xfd\xa2\xda\xce\x59\x23\xcc\x77\x84\xfc\x55\xd1\x42\x01\x95\x61\x34\x62\xc4\x00\xbe\x72\xc1\x09\xa6\x46\xcf\x84\x5e\xac\x5c\x70\x82\x7f\x21\xe1\x95\x09\x7d\x5b\x19\xf4\x7f\x44\xd3\xae\x2c\x6d\x04\x32\xf0\x20\x97\xcd\xca\x8c\xc5\x2e\x90\x81\x17\x96\x35\x5e\xb9\x6a\x0d\x2b\x76\x99\xae\x45\xa6\xd3\xbf\xc0\x00\x9e\x4c\xc3\x90\xd7\x91\xdb\xe9\x8b\x25\xed\x56\x6e\x5a\xa8\x66\x68\xe2\xbc\xa4\x72\xf2\xd1\x23\x91\x1e\x7e\x90\xa8\xb8\x95\x51\xa8\x21\x78\x44\xb3\x69\xa1\xec\xec\x32\x4b\x1e\xaf\x6c\x3a\x51\x78\xde\x67\x14\x7c\x59\x0e\x49\x36\xf4\x45\x95\x93\x5d\x9b\xe2\x19\x44\x93\xfc\x95\x94\x07\x38\xbf\x23\x65\xf6\xe5\xea\xcb\x6f\x5f\x1c\x7c\x68\x35\xe2\x9c\x5e\x3e\x74\x58\x39\x74\x36\x02\x67\x83\x92\x54\x2c\xe0\x0b\x2c\xe0\x41\xe2\x9c\x95\x43\x5b\x79\x94\x47\xf0\xa1\xc3\xca\x52\x1e\x20\xf0\x8e\x44\x97\x29\x77\x4d\x79\x60\x53\x2a\xcf\xc6\xd0\x01\x18\x47\x38\x90\xb7\x7b\x65\x39\x3f\xe0\xed\x8e\xa4\xbb\x3c\xb4\x5f\x47\x23\x44\xd2\x5d\x1e\x3a\x87\x70\x7e\x48\xf7\xbd\xc4\xdc\xbd\xf2\x84\x89\x20\xb9\x31\x35\x0c\x40\x2f\x5c\x5b\x29\x37\x06\xcc\xdd\x25\xd4\x97\xdc\x98\x3c\xc1\xae\x49\xa7\x2e\x2f\x1d\x51\xb8\x31\xa4\xf7\x5d\xe2\xfb\x5e\x19\xca\x23\x49\xda\xc8\x8d\x01\x15\x78\x10\x37\xb2\xb2\x94\x07\x58\xbc\x23\x49\xda\x6c\xf5\x85\x52\xd3\xf2\x2d\xf3\xd6\x1a\x6e\x6c\xa5\x73\xe5\xb7\x06\x0f\x87\xc4\x75\x0e\x5f\x9d\x79\x78\x1d\x4e\x75\x23\x12\xee\x05\x12\xee\xe0\x63\x80\x25\x12\xee\x95\xf1\x0e\xdd\x69\x82\x83\x94\xfb\xef\x4f\x68\x07\xa7\x11\x93\x3f\x9d\x43\x80\xf3\x48\xf8\xbd\xf2\xa7\x0f\x1e\x6d\x90\x9c\x36\x47\xfe\x74\x0e\x3f\x9c\x43\x9a\xe0\x45\x2a\x00\x74\xdd\x25\x28\x7b\x0b\x99\x61\x57\x79\xb0\xbc\xb4\xce\x0b\x83\xbb\x0b\x74\xdd\x89\xc4\xc5\xab\x48\x3b\x14\x68\x07\xe7\xc1\x2e\x8c\xe0\x2e\x30\x79\x07\x89\x7f\x96\xf8\xbb\x57\x41\xce\x8d\x0f\x89\x56\x91\xaf\x02\x2e\xef\x20\x6e\x64\x15\xe6\xdc\x16\xb8\xbc\x23\xf3\xf4\x16\x29\x0e\xb0\x74\x47\xa6\x9d\x5d\xf8\x0e\x7d\x81\xb0\x3b\x31\x9e\xbd\xc4\xd2\xbd\x0a\x54\x00\x9f\x1f\xad\xc2\x74\xdc\x2a\xf9\xc5\x07\xd9\x17\x31\x7b\xab\xc0\x57\x21\x05\xfa\x12\x81\xf7\x2a\x05\xc3\xa0\x55\x54\x08\xa2\x58\xe5\xe8\x90\x60\x7d\xbd\x55\x18\x48\x5e\xa5\xc0\x46\xa4\xba\x11\xed\xf7\x2a\xc7\x37\x09\x96\xde\x5b\xa5\x6a\x18\x15\x07\x9b\x9a\xa8\x54\xad\xe1\x71\x40\x22\x53\x46\x95\xaa\x85\x82\xe2\xc8\x5a\xf9\xa6\xb3\x01\xed\x40\x98\xc7\x2a\xd2\x0e\x60\x07\x0f\x72\x16\xad\x22\xaf\x03\x24\xe0\x41\x60\xf4\x2a\xa6\xd5\x30\x6c\x25\x5d\x8b\xa2\x98\x54\x81\xff\xc0\xc7\x58\xab\xd8\x3f\x1f\xc4\xca\xd3\xa8\x28\xae\x63\xe3\xf8\xa0\xf1\x83\xae\x0f\xfa\xfd\xa0\x9a\x74\x44\xa1\x02\x9c\xc6\x52\x21\x30\x6f\x81\x16\x3c\x88\xdc\x5d\x25\x74\x6c\x00\xcc\x23\x41\xfa\x2a\xf2\x1f\xc0\x11\x1e\x39\x9e\xff\x66\xaa\x96\xd0\x76\x06\x4e\xb0\xf6\x4c\xca\xa3\x74\xac\x3e\xd5\x76\x91\x0f\x01\x0a\xf1\xa2\x88\x45\xe9\x3a\xa6\xc7\x67\x08\x16\xe7\x5b\x45\x7a\xa5\x74\xec\xb4\x7e\x35\xb4\x31\x50\x39\x59\x57\x7d\x68\xa7\x07\x8e\x29\x1d\xf1\x32\x34\x8c\xe3\x84\x14\x32\xcb\xae\x22\x95\x03\x4e\xf1\x20\xba\x65\x95\xa9\x63\x7a\x3c\x8d\xc2\xf7\x16\xab\x28\x72\x56\x8e\x8a\x29\x9d\x86\x45\x99\x5a\xe2\xa3\x57\x82\xd8\x91\x25\xba\xf1\x55\x26\xfa\x62\xdc\xb7\x2c\x9d\xe0\x85\x5f\xd1\xbd\x28\x4b\x87\x00\xd0\x0b\xd2\x2a\xae\xa2\x68\x16\x58\xc4\x4b\x57\x5f\x5b\x0b\x75\x5c\x89\x20\xb4\x74\x15\x45\xb3\xca\x71\x25\x92\x3b\x07\xbf\xb5\x95\xfb\x9c\xe0\xa2\xeb\xb7\xd5\xd7\xfb\xe0\x57\xbc\x48\xd2\x2b\xa0\x15\x0f\xa2\x33\x57\x79\xd5\x17\x9e\xa8\xf3\x35\xde\x2a\xaf\x56\xe3\x78\x19\x41\x74\xe6\x2a\x9f\x06\x7f\xbc\x8c\x28\x92\x6e\x8a\x66\x81\x71\x3c\xb9\x0e\x9b\xbc\x8e\xf2\x61\x18\x92\x6e\x9f\x76\xf9\x1b\x68\xa2\x74\x93\xca\x01\x19\x79\x14\x4a\x81\xaa\x18\x18\xc8\xc7\xa3\xd0\xc3\xa9\x04\xe7\x2d\x90\x8f\x17\x3e\x9d\x59\x62\x1c\x5f\x60\x18\x0f\xe2\x46\x56\x95\xd7\x51\x13\x3e\xc8\x38\x62\x25\x38\x6f\xd5\xa3\x47\x82\xc8\xc2\x55\x89\xe5\x58\x15\x58\x0e\xd2\x49\xae\x2a\xbd\x52\x8f\x2b\x11\xe4\x51\x5a\xe2\x15\x5f\x60\x0b\x0f\x96\xc9\x5b\xe2\x08\x5f\x35\x63\x84\x0c\xee\x56\xf9\x0f\x15\xc4\xb3\xc4\x72\xac\x2a\x35\x00\x4e\xf0\x20\x96\x63\xd5\xa2\x29\xe3\x1d\x3a\xd9\xf2\x57\xad\x9a\x72\x3d\x9b\x42\x6a\xa1\x25\x22\xf0\x55\x21\xeb\x89\x03\x5b\x55\xb2\x1e\x1c\xe1\x41\x1c\xd8\xaa\x0a\x3e\x81\x2e\xbc\x28\xb6\x57\xa5\x06\xc0\xfc\x1d\x84\x79\xac\x4a\x04\xde\xaa\xa0\x28\x24\xcb\xf2\xaa\x4d\xab\x71\x9c\x82\xa8\xb4\xce\xab\xc2\x48\x15\x61\xa4\x78\xd4\x64\x6a\x42\x5f\x3f\x10\xc5\xaa\xa6\x4d\xb1\x81\x26\xee\xb2\x34\x04\xb8\xbf\xa3\x6a\xf0\xae\xbe\xfc\xf6\xc5\x63\xe3\x5a\xa8\xa3\x06\x82\x38\x9f\x25\xc2\xef\x55\x03\x1f\x64\x92\xa1\x86\xf6\xeb\x88\xfd\x20\xe6\x61\xd5\xd0\x89\x0a\x9c\x28\x9a\x3e\x55\x72\x1e\xdc\xdf\x41\xa6\xc4\x55\xbb\xa6\xdc\xb1\x5f\x8c\x05\x88\xd5\x7b\x55\x48\x6c\x62\x54\x56\x1d\xda\x94\x23\xbc\xa3\xea\x3a\xb0\x74\xf4\xaa\x28\x1d\xdd\x35\x42\x09\xf3\x3a\xd0\x97\xa9\x49\x07\xe0\x8a\x65\x0a\x87\x3a\xb5\x1a\x08\x08\x11\x6d\xb2\x44\xe9\xbd\x2a\xc4\x32\x71\x23\xab\x4e\x6d\xca\xc4\x61\xd3\x4d\x51\xd6\xa2\x02\x66\x47\x1e\xeb\x55\x25\xb1\xc1\xf6\x1d\x95\x82\xa8\x2a\x35\x01\xe2\xef\xa2\x48\x67\x5d\x5a\xa8\x8d\xd5\xd0\x25\x92\x4d\x5f\x21\xb1\x2b\x3d\xb7\xba\xb5\x29\x47\x62\x47\xd3\x39\x54\xfe\x01\x74\xe1\xa5\x6b\xe5\x25\xcc\xc1\xfc\x1d\x04\x36\xac\xaa\xfc\x43\x05\x77\x61\xd7\xa6\xbc\x5a\x28\x04\x83\x9a\x2e\x91\x82\x41\x15\xe6\xbe\x22\x82\xe2\x02\x5f\x15\x12\xbb\xfd\xd3\xa4\xad\x3c\x12\x3a\x98\x86\x5e\x55\x9e\x00\xb8\xc0\x83\xa9\xe1\xd5\x24\x7b\x41\x0b\x9e\x14\xa5\x6b\x84\xd8\xad\x86\x88\x4f\xe3\xfd\x12\x17\xf8\x6a\x90\xbd\xac\xa8\xb6\x9a\x92\x0c\xa0\x09\x0f\x96\x4d\x5b\x4d\xb2\x17\x0c\xdf\x41\x2c\xc7\x6a\x0a\xd0\x80\xad\x3b\x94\x73\x6b\x32\xc1\x1b\x4c\x70\xbe\x84\x5e\x8d\x7c\x4f\xab\x81\xef\x29\x28\x6d\x1a\x11\x71\xab\xc1\x3a\x27\xef\xcd\x6a\x32\xc1\x41\xe5\x1d\xe4\x5e\x58\x4d\xe9\x02\x70\x79\x27\x3e\x92\x5e\x4d\x01\x9a\x06\xd9\xcb\x97\xd0\xab\x29\xf0\xdf\x8e\x18\x8e\x46\x8f\xb4\x29\x40\x03\x06\xef\xa4\x00\x8d\x28\xbc\x57\x83\xc4\x26\x91\xce\x6a\x4a\x17\xb4\x23\x86\x53\x30\x93\xd0\x14\xbb\x01\x9d\x77\xb0\xf0\xef\x6a\x7c\xb9\xbe\x40\xe7\x9d\x58\xa0\x61\x35\x22\xe2\x56\x03\x30\x9a\xcf\x9d\x57\x53\x32\x19\xcc\xdf\xa5\xff\x47\x06\x80\x25\x62\xf0\xd5\x8e\x6c\x4f\xf2\xec\x9b\x69\x94\xc0\xd2\x29\x93\x2b\x6a\xf0\xd5\xa0\x06\x08\x7c\x59\xcd\x74\x3e\x0c\x27\x98\x01\xbc\x26\x59\x0f\xfe\xef\x60\x55\xe3\xd5\x94\x32\x00\x15\x78\x62\x49\x88\xd5\xe4\x0d\xb4\x2b\xeb\x29\xdd\x9a\x6b\xf5\x8f\x63\x10\xac\x43\xbc\x9a\xb2\x09\xed\x68\x84\xd2\xff\x69\xd2\x94\xe1\x28\x84\x56\x3f\x74\x08\x02\x87\x80\x9e\xbd\xb8\xc6\x57\x83\x86\x20\x92\x66\x35\x85\x91\x1a\x62\x45\x7c\x1b\xbe\x9a\x12\x0d\x0d\x08\xbc\xa0\x90\x6d\x44\xe0\xad\x86\xf4\x3a\xcb\x4f\xac\x26\x4f\x00\x0c\xe5\x49\x9e\xa2\x18\xca\x57\xeb\xb7\x2f\x0e\xbe\xeb\xb6\x1c\x15\x13\x46\xeb\xa1\x49\xaf\x34\x84\x91\x94\x41\x13\xdb\xf8\x6a\x88\x15\xf1\xbd\xf6\x6a\x8a\x15\x81\x5e\x3c\x8c\xd2\xad\x29\x56\x04\xba\xf1\x14\xc1\x63\xa3\x6c\x02\x58\xc4\x13\xb9\xeb\x57\x53\x40\xa8\xad\xfb\x41\x2e\xef\xd2\x07\xd7\xb1\xb3\xc9\x43\xbf\x9a\xd4\x00\x08\xc2\x93\xfc\x07\x31\x84\xaf\x86\x9c\x80\x65\x35\x69\xbf\x8e\xb2\x08\x52\x26\xad\x26\x0d\xd1\x90\x13\x30\xc9\xc4\x57\x23\x7c\xd1\x17\x03\x0c\x4d\x86\x7b\x43\x40\x88\x75\x2e\x56\x53\x1a\x1a\x3c\xe2\x61\x12\x97\x8a\x15\xb5\x17\xe7\x50\xf3\x7a\xb5\xf2\xc7\xbc\x4f\x32\x8b\x9b\xac\x73\xf0\x8a\x27\x25\x79\xc5\x2b\xbe\x1a\xd2\x05\x26\xb1\xa2\x74\x01\x28\xc7\x13\xdf\xa1\x2f\x51\x8e\x2f\x83\x86\xe0\x63\xf3\x65\xca\x50\x1b\x0c\x77\xd2\x33\x2d\x53\xba\x00\x6c\xe4\xa9\x73\xa1\xc4\x46\xbe\xec\xb9\xc3\x50\xd3\x56\x13\xce\x21\xf1\x15\xa6\x58\x11\x38\xcb\x53\xff\x21\x77\x97\x49\xe5\x18\x02\x42\x2c\x10\xb7\x4c\x49\x06\x90\x96\x27\xa5\x86\xc5\x54\xbe\x0c\x68\xbf\x4e\x81\x6e\xa4\x33\x5c\x96\xb0\xcb\x14\x5f\xa6\x94\xb7\x21\x8c\xc4\x12\x71\xcb\x14\x46\x02\xa1\x79\x92\xb5\x67\x52\x54\x56\x30\x78\x9a\x8f\xc6\x57\x35\x0b\xdc\xe4\xa9\x6b\xca\x0a\xfc\x5b\x79\xff\xf7\x7f\x95\x14\x9e\xcb\x14\xda\x31\x60\x04\x3b\x6d\x44\xd1\x98\x2f\x43\xba\x80\x35\x5c\x97\x09\x6e\x04\x86\xf3\x30\x8a\x14\x23\x46\x70\x81\xb7\x3c\xf8\xd4\x69\x99\x54\x0e\xc8\xc9\x53\x67\x74\xc4\xa4\x72\x0c\x2a\x47\x99\x5c\x23\x7c\x70\x81\xc7\x3c\x08\x62\x5b\x26\x95\x63\x88\x15\x91\x76\x6a\x99\x74\x0a\x28\xcd\x53\xa7\x52\x34\xf9\x0f\x86\x24\x83\x51\x6e\x98\x32\xd4\x76\xd4\x4b\xb0\x98\xe8\x32\xe5\x1f\xec\x78\x19\x55\xa9\x46\x93\xba\x01\xdb\x79\xb0\x9a\xe8\x32\xe5\x1f\xc0\x76\x9e\x94\x6b\x36\xd3\x39\x84\xba\xe9\x5a\x5e\xd7\xca\x23\xf8\x64\x14\xb0\xa6\xe0\x13\xd8\xcf\x13\x79\x03\x96\xd8\xcf\x97\x21\x35\xa1\x10\xbe\xb9\x0e\x80\xbf\x68\xe2\x94\x95\xbc\x36\x44\x98\xf8\x30\x65\x99\x74\x8a\xc5\xed\x8b\xc3\x08\x9d\x43\xe8\x14\xe5\xb5\x2d\xb4\xbc\x47\xa7\x84\x22\xee\xd6\x75\xb0\xf1\x5a\xa8\xd3\x04\x37\xf9\x2a\x86\xac\x85\x42\xdd\xa6\xe4\xb5\x1d\xcd\x13\x7c\x1a\xb1\x44\xb3\xbe\x0c\xd1\x25\x52\x5c\x2d\x53\x42\xc3\xc6\xed\x8b\xc2\x41\xc9\x6b\xd0\xaa\x87\x4b\x02\x28\x79\x6d\x88\x2e\x09\xb3\x67\x8a\x2e\x19\xd0\x99\x24\xfe\x5d\xa2\x60\x5f\x06\x25\xa5\xa0\xb5\x4d\x9d\x8d\x79\x6e\x8a\x82\xd6\x26\xc8\x96\x1d\x67\x27\xf5\xae\xbe\x34\x0c\x04\x9e\x9c\x02\x56\x14\xec\xcb\x8e\xfe\x4a\x5d\x67\x63\x69\x5e\x88\x49\xb9\xe4\xa1\x62\x52\x60\x63\xcf\x8f\xce\x86\x54\x9b\x21\xa1\xe1\x92\x1b\x52\x6d\x20\x6e\xaf\x8f\x84\xb9\x54\x1b\x88\xdb\x83\xf5\xfb\x96\x88\xdb\x17\x88\xda\xc3\x25\x52\x94\xeb\x00\x51\x7b\x26\x05\xc4\x32\x85\xab\xec\x68\xbd\xfc\xcf\xfd\x52\x92\x1c\x9c\xee\xe1\x92\xa2\xf2\x8b\xc0\xe9\x5e\x1f\x1d\x00\x29\x44\x70\xba\x87\x30\x96\xe2\x74\x5f\xe0\x74\xcf\x4f\xfa\x6f\x58\xd5\x25\xca\xf7\x65\x2f\xe6\x46\x1b\xd1\x84\xe8\xb2\x17\x77\x8c\x36\xa2\xd8\xe0\x97\x7d\x77\x28\xdc\x18\xa5\x5d\xc0\xfe\x9e\x59\x74\x66\x99\xd2\xeb\x60\x83\x0f\xa7\x24\x75\xe9\x4b\x87\xbe\x74\xde\x4c\xd1\xc1\x2f\xd0\xc1\x67\xed\x99\xf8\xe0\x97\x23\xed\xa2\xd8\x9e\x0b\xec\xe5\x0f\xee\x18\x85\xac\x4b\x5f\x7a\xba\xa5\x8d\x38\x8c\xa4\xbe\xd2\xed\x4b\x4d\xae\x26\xcc\x8b\x6a\xdb\x95\x94\x07\xc1\x7c\x08\x8f\xe8\x82\x88\x81\x6b\xbe\x3e\xbc\x99\x2e\x55\xea\x50\xa5\x02\x1d\x3a\x9f\xb5\x2e\xcf\x38\x3a\xcc\xae\x8a\x96\x7e\x39\xb4\xac\x02\x5d\xae\x78\x9b\x23\x5f\xcf\xca\x85\xcb\xb3\x56\x23\xdf\xbe\xb8\xbc\xca\xc8\x78\xb9\x7d\xf1\x83\xf2\xf9\x40\x31\x5f\x05\xd8\x70\x41\xc4\x1c\xa1\xb8\x60\x3a\xc9\x15\x8a\x03\xfd\x7c\x7e\x28\x20\x5c\xee\x20\xf8\xe7\x43\x50\x2a\xf1\xcf\x2f\xf0\xcf\x67\x12\x14\x2f\x97\x6e\x06\x17\x7d\x15\x38\xc4\xe5\x0e\x82\x8b\x3e\x82\x90\x3e\xaf\x1a\xc6\xf1\x14\x33\xe9\x48\x96\x2b\x4a\x07\x9a\xf9\xfc\xd0\x2a\x12\xcd\xfc\x72\x28\x60\x05\x18\x5c\xc9\x1a\x3f\x0a\x37\x58\xf2\x70\xb9\xb4\x2c\x78\xe5\x43\x58\x1f\x57\xb2\x06\xbc\xf2\x99\xc5\x8a\x96\xf3\x15\xd4\x72\x83\xec\xe0\xd5\x73\xa5\xf2\x1d\x51\xba\xd0\x61\x53\x94\xce\x1d\x47\x94\x76\x80\x38\xe8\x97\x43\xcb\x06\x63\x0f\x2e\xcf\x0d\xf4\xf4\x11\x34\xa6\xdd\x35\x0c\xc7\x7e\x51\xa3\x8b\x69\x7e\x81\x5a\x3e\xb3\x60\xd1\x72\x05\xf0\x3c\x06\x9a\x38\x0c\xb9\x67\x1e\xf8\xa0\x6e\xa5\xd0\xcf\xde\x71\xd8\xa8\x2f\x45\x1b\xbf\xbc\x63\x53\x68\xc4\x78\xd7\x08\x11\xdb\x23\x33\xda\x72\x41\x9c\x41\x06\x9f\x1f\x5d\x3d\xc5\xf6\x7c\x18\x9a\x78\x36\x94\x72\x01\x19\x7c\xfd\xe7\x00\xc8\x73\x03\x39\x7c\x7e\x74\x89\xe4\xb9\x81\x1c\x3e\x58\x01\x72\xb9\xf4\xa5\x4f\xe8\x15\xc6\x54\x5c\xfa\x12\x8c\xef\x11\xea\x4b\x59\x7e\x30\xbe\xe7\x44\xdf\xd2\x15\xf6\xf3\x95\xd0\xc4\xc1\x2f\xcd\x0b\x61\x3f\x45\x10\x5c\x61\x3f\x5f\x1d\xbf\xe2\x2e\x4b\x95\x3a\x54\x29\x2b\xd1\x2d\xf1\xc6\x2f\xdf\xf7\x83\x3c\x6c\x02\x10\x3b\x14\x55\x68\x97\x85\xe6\x72\x68\xa3\x90\x80\x95\x7b\xe6\x48\xe5\x87\x04\xac\x74\x8a\x23\x4a\x27\x44\xb2\x7f\x1a\x21\xb4\x83\x00\xc4\x62\x80\x5f\x71\x14\x45\x4e\x49\x4d\xae\xa6\xf9\xff\x18\x3b\x7b\x64\xdf\x79\xe6\xb8\xe7\x5e\xc5\xb3\x03\x13\x20\x48\x02\x89\x13\xc7\xf6\x1e\x48\x0c\x58\xa5\x40\xd2\x5b\xaf\xa5\xfd\xbb\xd8\xf3\x9c\xfe\x1d\x55\x29\xb8\xc1\x0d\xee\x41\xfd\x89\xef\x99\x41\x4f\xa3\xf1\x15\x79\xeb\x75\xd2\x20\x5d\x50\x9c\x25\xc9\x66\x2f\x7c\xb0\x68\x78\x6d\xe7\x3b\xe9\xf5\x5e\x4e\x15\x75\x17\x51\xd7\x77\x7a\xea\x9c\x63\x3b\x76\x5e\x0a\xf0\xb5\x18\x6f\x43\x01\x7e\x76\xd9\x79\x68\xc7\x28\xc0\xcf\xae\xe4\x09\x87\xd5\x8e\x31\x97\x76\x7b\x1f\x74\x19\x2a\xb0\xb4\xdb\x2b\x2c\x9a\xce\x91\x49\xaa\xec\x7d\x38\x7a\xe8\x18\x73\xa9\xb2\x57\x58\x34\xa8\xb2\x4f\xa9\xb2\xf7\xe1\x4c\x5d\xe7\xa0\xd5\x3f\x63\xde\x87\x3d\x51\x07\xc0\x93\xec\x7a\xe7\xd8\xd9\x31\xcb\x92\x59\xaf\xc5\xd9\xf0\x0e\xa9\xb7\x37\x35\xde\x8c\x82\x4e\x5e\xa5\x7f\x07\xab\xce\xb1\x13\x45\xf6\xd9\x75\x64\xe2\x00\xd9\x61\x58\x49\xac\xbd\xfb\xe1\xc8\xd9\xb1\xd8\x92\x59\xef\x83\x66\x90\x57\x91\xcc\x7a\x83\x8a\xd6\xe1\xe0\x76\x01\x6a\x16\x68\x9b\x1d\x40\xad\x5f\x5a\x36\xc6\x11\xd1\x56\x9f\xd2\x56\xef\xc3\xbb\xb2\xc3\xb0\x92\xcc\x7a\x07\x20\xef\xd8\x5e\xa9\xa4\x77\x3f\xfd\x32\x3b\xf4\x5c\x09\xa6\xd7\xe2\xa0\xb3\x83\x9a\x49\x40\xbd\x5a\x3c\x75\x22\xa0\x3e\xbb\x92\xe4\x9c\xc1\x10\x50\x9f\xbd\x6b\xe4\x69\x06\x27\x9c\xae\x94\x0b\x67\xb0\xce\xa5\x14\x69\xab\x37\xcc\x72\xc7\x62\x4b\x30\xbd\x0f\xe7\x63\x3b\x49\xf2\x7e\x6b\x1d\xfa\x1c\xdb\x39\xab\x74\x9d\x55\xc6\xf8\x43\x02\x40\xe7\x28\xd3\x6f\xad\x45\x9f\x57\x3a\x19\x99\xfe\x9d\x6a\x1a\xb6\xbe\x43\xd1\xed\xca\xc8\x58\x10\x6e\x22\xbd\x3e\xfb\x77\x5e\x19\x9b\xed\x6f\xc7\x34\xf7\x34\xcd\x17\x1f\x64\xb0\x3e\x53\x3c\xe0\xfc\x76\xf0\xb6\x3e\x0f\xfd\xca\xdd\x86\xbd\xdb\x3f\xab\x3d\x38\x28\x74\x08\x58\x7d\xaa\x19\x8e\x8a\x3a\xf4\xdc\x1e\xaa\x0b\xdb\x11\xd4\x15\x59\x97\x3f\x08\x3d\xb7\x7f\x87\x90\x01\xa9\xb7\x03\xc5\x75\x1d\x4a\x2c\xa6\x33\x91\x79\x9f\x7d\xa9\x2e\xd3\x65\x3a\xb6\xbe\x7f\x87\x90\x01\xdf\xb7\x2f\x6c\xe2\x77\x08\x69\xd6\xcc\x9a\x1d\x37\xd0\x97\x9a\x81\xed\x20\x8f\x23\xc5\xf7\x86\xe7\xeb\xa0\x74\xfd\xd5\x68\xb0\xd5\x81\xe2\xfa\xab\x49\x61\x2d\x72\xb4\x90\xcc\xfb\xd8\xbc\xd5\x07\xb4\xad\xf1\x39\x8f\x01\x15\x78\x70\xb4\x90\x18\x7c\xb5\xdc\xcf\x44\x01\x7e\x4a\xf1\x7d\x58\xb2\x6e\x0e\xfc\x8a\x14\xdf\xab\xdf\x86\x9b\x83\xf4\xfa\x28\x1a\x28\xc7\x01\xc8\xbc\xcf\x51\xf4\x41\x1b\x88\x01\x01\x6b\x7c\xce\x62\x10\x23\x0e\x98\xbb\xe3\x3b\x14\xb4\x62\x97\x33\x70\x1e\x52\x80\x1f\x84\x8f\x83\xc4\x90\xc4\xe0\x1b\xfc\xd1\x41\xe6\x5d\x8a\xef\x63\xb3\x81\x40\xe6\x7d\x8e\x5d\x1f\xf4\x7e\x1e\x50\xa9\xc6\xae\x49\x31\x76\x3e\xc8\xfe\x48\x0c\xbe\xc1\x3a\x1d\x38\x8f\xd1\x54\x97\x8d\xec\xc0\x79\x48\xf1\xbd\x41\x48\x1d\x16\x4d\x9b\xa3\xa9\xf1\x95\x5f\x31\x86\x4d\xb3\xcc\x7c\x01\xc5\x8d\x2f\xbc\xaf\x75\xa3\x88\x49\x39\xd4\x0c\xa3\xc5\x03\x6e\xd6\x38\x34\x5f\xce\x78\x0e\xfc\xca\x38\xbe\xba\xe0\xfb\x0e\x72\x38\xd2\x89\xaf\xd5\xd8\xf9\x20\x29\x3f\xbe\xf0\x7e\x58\xd6\x6d\x0e\x90\xb3\xa1\x70\xdf\x8a\xb6\x13\xdd\xf8\x39\x4e\xd5\xe5\x38\x60\xc0\xdc\x95\xa4\xfc\x20\xf4\x19\xf8\x95\x71\xa9\x2e\xc6\x90\xa4\xfc\xf8\x3c\xc4\xb0\x44\xf9\x1c\x78\x08\x29\xbe\xd7\x6a\x93\x32\xa0\xe7\x8e\xae\x0f\xfa\x28\x88\x02\xfc\x1c\x9f\xb3\x18\xd6\x6e\x9b\xc8\xbc\x4f\xc9\xbc\x0f\x02\x8b\x31\xa8\x6b\x64\x5d\x1e\xde\xc1\xc2\xbe\xd5\x2f\x36\x2c\xf4\xdc\x71\xeb\x83\x6c\x3d\x02\x77\x29\xc0\x0f\x3f\x5f\x39\x07\xde\x61\x3c\xfa\x20\x5b\x8f\xbc\x8a\x64\xdd\x1b\x01\xd3\x20\x29\x2f\xed\xf6\x51\xd8\x44\xe0\x52\xd2\x72\xaf\xf0\x11\xd1\x72\x9f\xd2\x72\x1f\x50\x66\x07\x44\xdb\xf1\x99\xfc\x51\xd8\x5f\x93\x85\xfd\x05\xea\xd5\x3a\x56\x73\x4c\x36\xd1\xd4\xf0\xda\x71\x0c\x38\xb8\x23\xb2\x19\x9e\xca\xd8\x29\xfa\xe2\x80\x6a\x03\x3b\x80\xac\xc6\xe7\x0d\x2a\x2c\xc6\x01\x64\x35\x04\x59\x55\x63\x7b\x03\x17\x30\xd6\x77\x08\xb7\xca\xec\x1c\xb8\x80\x21\x17\x50\xd8\xcb\xd8\x79\x89\xc1\x0f\xeb\x82\xcf\x41\x36\x66\x2c\xd5\xc5\x2c\xc3\xdc\x1d\x6f\x55\x91\x57\x14\xf7\x3a\xc6\x9b\x75\xb9\x85\xa0\x4b\x43\xe8\x52\x75\x04\x36\x38\x3f\x48\x37\x7e\x58\xa0\x6d\x0e\x18\x56\xe3\xd5\xf0\x3a\x06\xb8\xf1\x0e\x12\x87\x1f\x56\xf8\x9e\x37\xcc\x5d\xe9\xc4\x57\xd8\x99\xb7\x15\x37\xe7\x2d\x17\x50\x9d\xe0\xbd\x21\x00\xdc\xdf\x51\x62\x60\x1c\x90\x94\x9f\x92\x94\x1f\x10\x6d\x11\x86\x9f\x77\xd5\xaf\x7c\xe3\xea\x86\x4d\x7b\x7f\x91\xff\x60\x1d\xde\x18\xf3\xbb\xbe\x2a\x72\xe3\xa1\x51\xdd\xb2\xf3\x56\x3b\x9e\x37\x34\x2a\x09\xc1\x0f\x96\xcd\x0d\x68\x72\x2b\x3a\xaf\x8e\x47\xef\x46\x5d\xb2\xbd\xd5\x61\xf1\x0d\x9e\x22\xcd\xf8\x61\x21\xb3\x79\x63\x60\xa5\x11\x3f\xaa\x09\x6c\x37\x99\xf7\xfb\xf8\x22\x07\x36\x2c\x9a\xf1\x53\x9a\xf1\xa3\xda\x57\xde\xa4\x41\xa4\x11\x5f\xa1\xb1\xde\x5c\xd4\xbb\xd3\x2c\x3b\x7f\x7e\x93\x5a\xbf\x4f\x35\xc3\xd9\x98\x9b\x70\xff\x96\xc5\xae\x3e\xfd\xde\x70\xa5\xa4\x11\x3f\xea\xf5\x87\xa1\xea\x8d\xd5\x96\xe2\xfb\xa8\xb6\x02\x37\xf9\x8e\xfb\x92\x7b\x3b\x29\x62\x55\x5d\x72\xa5\x36\x46\x37\x64\x5b\x89\xc1\x0f\x2b\xb1\xcd\x1b\x5b\x2f\x31\xf8\x61\x11\xda\x79\x43\xb6\xbd\xe5\x06\xac\xc4\x36\x6f\x58\x56\xd2\x89\x1f\x7e\xea\x73\xde\x1c\x14\xee\x9e\xcd\xf0\x10\xe3\x06\x24\x06\x3f\x2c\x42\x3b\x6f\x52\x21\x12\x83\x6f\x85\xd1\x27\xbd\x7e\x0f\x2d\x1d\x9f\xec\x6f\xf0\x9b\xfb\x56\x20\x68\xc3\x77\x73\x86\xb8\xe5\x21\xac\xdf\x36\xd1\x8d\x9f\xb7\x3c\xc4\xbe\xf1\x2b\xfa\xf5\x1d\x0a\xc6\x6e\x60\xf2\x26\xdf\x71\x3f\x59\x97\x1b\x0f\x65\xf6\x7e\xbe\x45\x00\xf9\xf5\xe6\x24\x70\xeb\x24\x50\xf9\x15\x04\x2c\x29\xc0\x0f\x0b\xa7\xcd\x1b\x90\xe6\x9e\xb2\xa4\x36\x97\x37\x6e\x40\x8a\xef\x63\x77\x9c\x7d\x93\xd4\x90\xe2\x7b\x85\xc7\x7c\x03\xd2\x48\x01\xbe\xfe\x9a\x2f\x4e\x02\x77\x7c\x8b\x7b\xdf\xf9\x15\x8b\x2d\x64\xc2\x1c\x30\xa1\x00\x3f\xef\x50\x33\x76\x3e\xc8\x2c\xc7\x52\x91\xbb\xbc\x68\xc6\xd2\xc8\xdb\x43\xdc\xe4\x20\x24\x06\xdf\x88\xce\x6f\x88\xb6\x52\x80\x1f\xb0\x69\x6f\xc2\xfd\xfb\xd5\x07\xb1\x02\x24\xe5\x6f\x9d\x04\x76\x8c\x2c\xb4\xad\xfb\xd5\x12\x75\x08\x7e\x63\xeb\xa5\x1b\x3f\x76\x1f\x8e\x1f\x60\xa4\x47\xb6\xde\x52\x6b\xf3\x21\xdc\x7f\x36\xfd\xca\x1e\x1d\x71\xf8\xf9\xc8\xa0\xef\xc6\xc0\x1e\x68\x5b\x8f\xc2\x7d\x8b\xa6\xcd\x07\x5e\xec\x53\xf4\x41\x83\xa0\x0f\xe8\xbe\x74\xe2\xeb\xee\xc8\xf2\xe1\x6e\xf8\x53\xb5\x89\xbc\x53\x1e\x62\xfa\xa7\x6a\xbe\x06\xbf\x9a\x14\x85\x3e\xb8\xbb\x68\x51\xa4\x66\xd8\xf3\x3d\xb8\x01\xa9\xcb\x8f\xdd\xb1\xef\x03\x84\xff\x7c\x31\x7c\xab\xe6\xed\x3d\xe4\xd0\x9f\x2f\x50\x1f\x50\x66\x1f\x50\x9f\x47\xa8\xcf\xfe\xab\x28\x28\xfa\x56\x94\x45\x10\xe7\x43\xa2\xfc\x39\xf4\x41\x6f\xbd\x07\xca\xac\xd4\xe5\xab\x95\x0e\xe7\x43\xca\x5b\xea\xf2\xc3\xba\x63\x13\x49\xf9\xf9\x9c\xfa\xa0\x59\x71\x0f\x5c\xa9\xe7\x33\xfb\xc3\x32\x61\xf3\x01\x8c\x7f\xbe\x40\xbd\xe1\x9b\x1f\xdc\x80\xd4\xe6\x87\xdf\x74\x9f\x0f\x60\xbc\x84\xe7\x9b\x25\x57\xe7\x83\x9d\x7f\xae\x6c\xfc\xe9\xa2\x9b\xa2\x6f\x52\xfc\x5a\xf9\x44\x6d\x7e\x3e\x32\xe6\x90\x5f\x1f\x50\x9f\xe7\xb3\xeb\xc3\x0f\x75\xce\x07\x30\xfe\xf9\xc2\xfb\x56\x19\x43\xec\xbc\x34\xea\x87\x15\xc4\xe6\x03\x18\x2f\xb9\xfa\x56\x9d\xd0\x78\x30\xe6\x8f\x8c\xb9\x5f\x8e\x98\x0f\xa8\xcf\x33\xbe\x65\xd3\xec\x9b\x91\xaf\x9f\x8f\xec\x3c\x94\xd9\x07\xae\xd4\xf3\xd9\xf5\xe1\x47\xa7\xe7\x03\x4e\xff\xdc\x4d\x75\x1d\x2e\xa2\xcb\x0a\xf7\x1b\xbb\x12\x9c\x5e\x22\xf7\x8d\xcb\x3d\x0f\x60\xfc\xf3\x68\x01\xb0\x2b\x09\xf7\x1f\xd9\x79\x4b\xad\xcd\x87\x0c\xb5\xf4\xf0\x87\x1f\xcf\x9c\x0f\x76\xfe\x11\x76\xd3\xd8\x7a\x20\xee\xcf\xfc\x8c\x5e\x65\x6d\x90\x86\x7e\x84\xdd\x34\x23\x23\x0f\x16\xfb\x11\x76\xb3\x3b\xa4\x43\xf4\x7e\x3e\x5f\x4c\x3f\x2c\xc2\x35\x1f\x62\x7a\xe9\xdf\x8f\x83\xfd\x05\x07\xf7\x09\xad\x5e\xc7\xf4\x0f\xc6\x5c\xa2\xf7\xe3\xf0\x89\xf4\xe1\x5e\xdd\x23\x80\xc6\xca\x68\xf3\x01\xa0\x79\x04\xd0\x70\xd5\xe9\x81\x68\x2b\x69\xfc\x71\xd0\x78\x88\xb6\x92\xca\x1f\x07\x53\x89\x31\x7f\x64\x96\xa1\xcc\x4e\xcc\xf2\xdc\xb2\xae\xd3\x45\x07\x45\xa7\x8a\x86\x8b\x2e\x8a\xbe\xa9\x44\x99\x67\x02\xd0\x48\x0f\xbf\xee\xbf\xea\x5a\x14\xa9\x19\xee\xd7\x84\x2b\x25\x59\xfc\x81\x5a\xce\x24\x27\x20\x59\xfc\xba\x3b\x62\x9e\xb8\x00\x69\xdf\x8f\x83\xc6\x93\x13\x98\xca\x09\x58\x9e\x7c\xa2\x85\x3f\xa5\x85\x5f\xb9\xe5\x82\x16\xfe\x94\x16\xfe\x80\x9e\x3b\x91\x07\x91\x16\x7e\xdd\x3d\xcb\x93\x43\xc2\x94\x77\x38\x8e\xfe\x67\xa1\xea\x84\xf3\x2b\x69\xfc\x81\xc0\xcd\x24\x65\x20\x69\xfc\x6a\xad\xd3\x39\x41\x7d\x24\x95\x5f\x77\x9f\xde\x90\xca\x9f\x92\xca\x1f\x48\xd5\x4c\x50\x1f\x49\xe5\x57\x4b\x94\xcf\x09\xe7\x57\xaa\xf9\x03\xf2\xeb\x84\x80\x25\xd5\xfc\x01\xf9\x75\xe2\x57\x24\x7a\x3f\x20\xbf\x4e\x74\x40\xa4\x7f\x5f\x77\x1f\x4a\x26\x27\x8f\x99\x7e\xc5\x87\x12\xf4\xf0\xa7\xf4\xf0\xc7\xe1\x08\x0c\x3d\xfc\x39\xe5\x72\xfc\x8e\xd1\x44\xf4\x7e\x4a\xf4\x7e\xf8\xc9\xcd\x39\xc9\xc9\xce\x4b\xcf\xb4\xdb\xd9\x4f\x38\x4c\x73\xe8\xd9\x77\x6f\xf5\x09\xea\x2e\x75\xf9\x61\xfd\xb6\x39\xc1\x54\xa6\x30\x95\xdd\xf9\xdf\x49\x9c\x3d\x65\x9a\x4f\x96\xe9\xf8\x55\xd7\x52\x91\xc7\x10\xd3\x2c\x21\xfa\x71\x1a\xf5\x99\xe8\x65\x48\x78\xbe\xee\x4c\x0a\xb7\xa1\xa7\xf2\xa4\x3b\x93\x02\x18\x2f\x21\xfa\x81\xca\xc6\x04\x89\x91\x10\x7d\xdd\xcd\x00\x41\x88\x7e\x4a\x88\x7e\xc0\x98\x9c\xe0\xf4\x12\x9e\x1f\xd0\x22\x27\x56\x5b\xba\xf1\x03\x5a\xe4\x04\x8c\x97\x84\x7c\xdd\x3b\x45\x7c\x70\xde\x2a\x72\xe3\x41\x62\xa4\x13\x3f\xfc\xd6\xe5\x9c\x90\x87\xa6\x0c\x3a\x04\xc7\x09\x79\x48\x12\xf2\xe3\xf4\xc9\x6d\x22\xa3\x31\x43\xbe\x99\x31\xc4\xa0\x4b\x37\x7e\x58\x39\x6f\x4e\x68\x40\x73\x65\xe3\xdd\x65\x68\x40\x53\x70\x0b\x54\x45\x74\xe3\xe7\x94\x41\x47\x7b\x61\xc2\xd8\x91\xa4\xfc\x38\x7d\x20\x99\x58\x6d\xe9\xc4\x0f\x48\x87\x13\xc4\x7d\xbe\xf2\xb2\x8e\x7d\x03\xc6\x4e\x28\x98\x46\x1c\x20\x00\x4e\x42\xc0\x09\xf7\xb4\xd0\x8d\x9f\xd2\x8d\x1f\xd6\xd0\x9e\x01\xc3\x35\x3e\x2b\x3d\xfc\xd6\xe5\x0c\x4c\xb3\x74\xe2\x87\xf5\xef\x66\x40\x63\x95\x4e\x7c\xdd\x1d\x31\x07\x89\xd7\xf8\x8c\xec\xb8\x8c\x74\x22\x0e\x3f\x25\x0e\x5f\xb9\x13\x86\x38\xfc\x0c\xc1\xea\xdc\x5e\x0f\x58\x34\xf1\xd9\xdb\x71\x19\x70\x45\x37\x7e\x4a\x0c\x7e\x5c\x06\xad\x83\xec\xaa\x14\xe0\x07\x82\x7a\x28\xc0\xcf\x10\x40\x7e\xd9\x87\x05\xa4\x97\x10\xa6\x02\xcd\x2e\x88\x98\xe3\x50\xc0\xe4\xf9\x8a\xe3\xd7\xaf\x34\xbc\x06\x69\x90\x79\x9f\x21\x3c\x9b\x9b\xbc\x01\x7d\x25\x4e\xd5\x65\x74\x24\x60\x82\x4a\xe6\x7d\xf8\x59\xc5\x19\xe0\xd9\x52\x7c\xaf\xd6\x3c\x9f\x41\x32\x34\x04\x7f\x5c\x36\x0e\x28\xc0\xcf\x10\x68\x0d\xd1\x2b\xb0\x87\x12\x87\x1f\xb0\xb9\x82\x2b\x04\x52\x7c\x1f\xdc\xb9\x0c\x72\x97\xd2\x6e\x1f\xd0\xa8\x82\x28\x56\x5a\xee\xb5\x31\x95\x44\xb1\x21\x03\x0b\x21\x0a\x2d\xf7\x29\x2d\xf7\xd1\x59\x1b\x58\xd1\x10\x24\xd1\x7d\xd0\x0a\xd8\x99\x12\x68\xaf\x8d\x05\x40\xc6\x33\x04\x49\x20\x4a\x88\x60\xfb\x94\x60\xfb\xe8\xb4\x10\xde\x48\x7c\xa6\x71\x74\x16\x1b\x3c\xcb\x78\x64\x52\x68\x3c\xa6\x52\x02\xed\xa3\xd3\x0c\xf0\xec\xf8\x02\xda\xc6\x3d\xe3\x20\x39\x29\x99\xf5\xc1\x45\xa2\x00\x92\x90\xec\x7a\xe5\x2a\x21\xb2\xeb\x33\x64\x2a\xe1\x14\x05\x68\x85\x14\xd9\x47\x77\xa4\x12\x98\xca\x10\xee\xc0\xbd\x9f\x00\x99\x96\xcc\x7a\x03\xd6\x09\xc8\x94\xb1\xb2\xf1\xde\x29\x80\xd6\x21\x48\x02\x5a\x0e\x8a\xec\x33\x64\x2a\xbb\x63\xa9\x80\x88\x12\x9f\xd5\x1c\x5c\xd1\x09\x4c\x65\x28\x8a\xed\x46\x10\x02\xf8\x59\xe2\xec\xb5\xd9\x57\x06\x19\x48\x89\xb5\x0f\x58\x34\x88\xb5\xcf\xb5\x69\x34\x7c\x8c\x59\x64\x20\x97\xc8\x8d\x5c\xac\x44\xc7\x7d\x2e\x19\x58\x6e\xb9\x2c\xd0\x0a\x49\xbc\x0f\x6e\xb9\x2c\xac\xe8\x2a\x59\x97\x3f\x48\x06\x72\x09\x92\x80\x7b\xb3\x80\x24\x96\x20\x09\x6b\xab\xcf\x05\xe1\x70\x09\x99\xee\xb6\xf3\x0b\x8e\xca\xaa\x5a\xa2\xc6\xce\x11\x6b\x9f\x12\x6b\xaf\x9c\x63\x11\x6b\x9f\x12\x6b\x1f\x7d\xfc\x61\xa8\x8a\x96\xfb\x94\x96\xfb\xe0\x12\xfd\x82\xc5\x28\x59\xf7\xca\xe1\x78\x91\xd6\x5c\xc2\x39\xa0\x01\xa1\xe5\x3e\x97\x4c\xf3\x30\xc0\xb0\x30\xcd\x92\x79\x1f\xb0\x76\x16\xa6\x59\x02\xed\x63\xf8\x64\xbf\xc0\xcf\x57\xd3\x0a\xf6\x91\x7a\x91\x85\x94\x0a\xfb\x80\x9a\xb3\xc0\x39\x96\xe2\x51\x0b\xb6\xcf\x05\x1f\x51\x82\xed\x03\xfe\xcd\x82\xdd\xb2\x3e\xdb\x3e\xe0\xdf\x2c\x90\xf0\xf5\x19\xf4\xda\x1c\xe0\x2e\x58\xff\x12\x68\x1f\x5c\xfb\x58\x50\x15\x97\xa8\x8a\x5c\xa1\x45\xb0\x7d\xae\x73\xa9\xc8\x8b\x00\x08\x44\xaa\xec\xd5\x82\xed\x73\x11\xfb\x4a\xa0\x7d\x70\xb7\x63\xc1\x47\x5c\x9f\x47\x18\x5c\xbc\x45\xb0\x7d\xae\x6b\x7e\x1f\x34\x76\xbe\xf0\x10\x4b\xe8\xc8\x60\x55\x21\x39\x21\xed\xf6\xca\xc5\xdb\x45\x5a\x53\xda\xed\x83\x1b\x21\xab\xff\xfa\xe0\xfa\xe6\x8b\x49\x01\x1d\x91\x96\x7b\x6d\xce\x86\xa3\xe5\x3e\x97\x5c\x0e\x5c\x9f\x45\x32\x74\x7d\x2e\x66\xc0\xf5\x59\xf8\x95\x25\x74\x84\x1b\xaf\x0b\x14\x7c\x89\xc5\xc8\xfd\xdf\x05\x3a\xb2\xd2\xaf\x74\x7e\xc5\xf0\x0a\x05\x87\xeb\x83\x02\xfc\x5c\x9f\xf7\x69\x9c\x80\x17\xc0\xc9\x52\xe0\xde\xb0\x02\x10\x1c\x97\x1c\x15\x34\xa0\x05\x8b\x46\x92\xf2\x63\x38\x10\x44\x52\x7e\x2e\x61\x2a\xc3\x41\xe7\x02\x3b\x5f\x8f\xb6\x03\xab\x97\x14\xea\x52\x0a\xd5\xaf\x3b\xce\x45\x0a\x75\x09\x6e\xf1\xeb\x8e\x73\x11\xb8\x2f\x39\x2a\xc8\x3c\x0b\xaa\x8c\x74\xe2\xc7\x70\x20\xb8\x08\xa6\xa5\x1b\x5f\xb9\xf2\xbc\x08\xa6\x25\x21\x5f\x36\x3f\xb9\x38\x17\x79\xcd\xf5\x39\x92\xaf\xcc\x03\x0c\x74\xb2\x96\x16\x29\xa6\x0f\xcf\x22\x11\xf9\xef\x67\x6e\x24\xda\x11\x52\x91\xaf\xdc\xb0\x5e\x7e\xf6\x7a\x2e\xb9\x16\x6e\x58\xbf\xf8\x8f\x77\x2b\x2a\x6a\x2e\xaa\x14\x65\x65\xde\xcf\x2f\xe0\xc9\xfb\xf9\x92\xaf\xec\x72\xd9\xa0\xec\xcd\xb2\x9f\xf1\x7f\x21\x47\x4a\x2d\xbe\x1e\x4e\xa1\xbc\x00\x21\xaf\xf8\xf1\x16\x60\x9f\x2f\xc9\x4d\x09\xcb\x97\x0d\x9e\x0d\xca\xf2\x53\xca\xf2\xd5\xea\xfc\xf3\x25\x48\x7f\x4b\x36\xc4\x96\xfb\x05\x25\x91\xca\xfc\x57\x56\x5d\x46\xe7\x3e\x2f\xf2\x95\x79\x50\xc0\xc3\x5f\xe1\xe1\xe0\x5a\x2f\x5a\xa9\xaf\xfc\x84\x15\xff\xe7\x0b\x10\x22\x75\xfa\xb2\x41\xc3\x41\x93\x7e\xbe\x7b\xd6\x66\xef\xfe\xc2\x72\x91\x5e\x7d\xd9\x20\x50\xbf\x78\x91\xb7\xe5\x37\x1d\x09\xbf\xc0\xe5\x92\xa1\x6f\xa0\x2b\x2f\x24\xc9\x37\xdd\x08\x43\x49\x1a\xf6\x3d\x72\xc2\x1d\x25\xbf\x40\x1e\xaf\x20\x8f\xc3\x0b\x0f\xc9\xfa\xf9\x1e\xd9\x10\xa3\x17\x2f\xd9\xd6\xf7\xc8\x75\xee\xbd\x88\x9e\xfd\x94\x9e\x7d\xb5\x28\xf9\x44\xcf\x7e\xbe\x67\xb6\xc4\xfb\x14\xd5\xfa\xf9\x9e\xd9\x12\x7f\x11\x57\xf2\xea\x02\xd9\x06\xb1\xe6\x85\x5f\xf9\x8a\x5f\x79\xd8\xa5\xbd\x1c\x29\xde\x6b\xcf\x9f\xb9\x73\x10\x61\xa4\x91\xff\x95\x9d\x2e\xa3\x73\xd7\x9b\x65\x6e\x0a\xe9\xd1\xb7\x6b\x56\xe1\x2e\xbd\x1c\x2b\xde\x9e\xbf\x63\x30\x11\xa4\x7b\x47\xcd\x32\xd7\x87\x9c\xe9\xfb\x1d\x3f\x1a\xf9\x2c\x94\xf7\xe7\x3b\xb2\x3a\x5b\xe5\x17\xd1\xd2\x77\x68\xc6\x1d\x8e\xbe\xe4\x41\xdf\x3b\x7b\xc7\x36\xe6\x68\x21\x59\xfe\xb2\xf9\xe1\xc4\x89\x2e\xff\x94\x2e\xff\x57\xe6\xa6\x60\xce\xdf\x27\xbf\x69\x4f\xfa\x72\xd5\xf8\x7d\xb4\x2e\xd9\x06\x50\x1f\xdf\x99\x93\x40\x33\x39\x43\xbc\x33\x3f\xe9\x53\xe4\x8b\xd9\x96\x36\xff\x57\xe6\xa6\x60\xb7\xdf\xc8\x6f\xb2\xb5\xc0\xc9\x25\xa4\xdf\xf6\x5f\x45\xf4\x3c\xb2\x77\xf6\x48\x2f\x24\xc7\x57\x24\x47\x30\x59\x94\xf4\xe7\xbb\xb2\x36\x43\x3f\x2f\x14\x17\xa9\xea\x7f\x65\x6e\x25\xbe\xe0\x5d\x59\x1d\xfb\x07\xac\xfc\x7d\x55\xdd\xf1\x87\x34\x81\x97\xe4\xe7\x2b\x89\xba\x0d\xf6\xc9\x0b\xf4\xf2\x8a\xec\x78\x60\xdf\x38\x6a\x48\xbd\xbf\x6c\x7e\xf4\x3d\x36\xf3\x59\x62\xdb\x6a\x96\xed\x2e\x3b\x28\x7b\xb2\xec\x70\xd9\xa2\x2c\xbf\xf9\x73\x4a\x8d\xcd\x19\xd0\xd8\xd2\xb4\x9b\x9d\x12\x9b\x0f\x15\xb1\x95\xfc\xe6\x8f\x45\x8d\xcd\xa4\x96\xd8\xd2\xb6\xfb\x29\xc0\xd8\x2a\xed\xac\xf9\xcd\xea\xb6\xf8\xf0\x10\x9b\xe8\x8b\xfb\x4f\xe8\x15\x9b\xaf\x0b\xc7\xf6\x59\xf9\x66\x50\x2f\xb6\x4a\x0f\x76\x4d\x6d\xdd\xdd\x73\xbf\xac\x1d\xdb\x2e\x7b\x74\xba\x03\x3e\x1e\xc4\x96\x66\xbf\xfe\x78\xc2\xd8\x4c\x7b\x8c\x6d\x97\x65\x34\x21\x2a\x78\xd6\x20\xf4\x8c\xc1\x57\xe6\xea\x1a\xd5\xb5\xac\xce\x1d\x68\x8c\x57\xcb\x31\x39\x3c\x26\x07\xe3\x9c\xb6\xdd\x6c\x99\xd8\x0e\xe6\x2e\x0d\xb8\x39\x31\xb1\x1d\x34\xf3\xc8\x6f\x9e\x6e\xca\x49\xf7\xce\xfc\xdd\xe5\xfa\x4e\x7e\x77\xe6\xdc\x5d\x1e\x16\xa3\x3b\xb1\x09\xdd\x39\x7e\x8e\x98\xc1\xc3\x07\xb1\x9d\x59\xdd\xcf\xd6\x8b\xcd\x0f\x31\xc5\x76\xe5\x27\xbb\xab\xbb\xf8\xe4\xa5\x4f\x76\x0f\x66\xa7\xe7\x3d\x7b\xde\x3d\x09\x9d\x9e\xf7\xec\xc1\xe0\x77\x8c\x66\x5a\x70\x3f\x28\x18\x5b\x67\x82\xd2\x82\xfb\x05\xe3\xd8\x06\xab\x6f\xfc\xfd\x4d\xd7\x37\x58\x7d\x43\xab\x6f\x78\x30\x07\x3d\xbf\xd5\x4c\xb3\x4b\x62\xbb\x99\x73\x05\xea\x47\x77\x6d\x37\x73\x90\x16\x7c\x67\xff\xdc\xcc\xc1\x7d\x67\x19\xbf\xa3\x07\x4f\x56\x57\x5c\xdd\x43\x75\x42\xd2\xad\x9c\x11\xbc\x9c\x10\xdb\xa3\x68\x6b\x78\x0a\x1e\xc6\x4b\xcf\x23\x6c\x7e\xd0\x2f\x36\xe3\x43\xa1\xf7\x11\xaa\xc5\xe7\x83\xf7\x11\x62\x4b\xbb\xef\x40\x3e\x78\x20\x21\xf2\x81\x84\x6d\x67\xdb\x4d\x5a\x32\xb3\x25\x6e\xff\x64\x23\xcf\x95\x3f\x73\x75\x41\x4b\x44\x79\x3c\x31\x6f\xa6\x3c\xc6\xa6\xcc\xe9\x89\x75\x0b\x46\x59\x4f\x24\x6c\x7b\xf3\x90\x04\x4b\x4f\x9c\x47\x6b\xd3\x07\x6f\x24\xc4\x96\x8e\xc4\x71\x58\x6c\x8b\x7e\x7f\xde\xa2\xb5\xcd\x23\xb9\xa8\x6d\x3d\xf9\x33\xf7\x6d\x51\x9b\x58\x8f\x16\xae\x8f\xcd\xac\xc7\xd8\xe4\x2b\x4e\xac\xec\x4b\x65\xd2\x95\xdb\x1c\x3a\xc4\xf6\x32\x6f\x6f\xd6\xc6\xee\x7f\x59\x25\xe9\x0d\xec\xb0\xa3\xe0\x0d\xf4\x1a\xc2\x57\x76\xb8\xac\x53\x36\xd4\xb9\xe1\x22\x8f\x49\x29\x39\xdf\x36\x0c\xc5\x09\xcf\x28\xe9\x0c\x30\xc1\xc5\xc2\x11\xa1\x47\x09\xbe\x32\xff\xce\x08\x4d\xe8\x95\x82\x6a\x99\x92\xe0\x95\x82\x28\x69\xb9\xfd\xa6\x5e\x94\x9d\xea\xf6\x33\xcb\x2e\x97\xdd\x94\x3d\xdf\x27\xed\x5e\x8a\x19\x2c\x51\x32\x28\xff\xd5\xbb\x46\x4b\x9a\x5a\x52\xdd\x48\xdf\x42\x8d\x22\xc3\x6d\x7d\x93\x28\x4e\x50\x86\x1e\x26\x28\x9b\x39\x2c\x51\x1a\xb5\x89\x36\x79\x56\x2a\x63\x28\xd3\xde\x5b\xdc\x2d\xca\xc1\xec\x1c\x35\xcb\xdc\x01\xec\x7d\x39\xb2\x3a\x5a\x79\x50\x9d\x38\x90\x4e\xe6\x45\x39\x19\x4a\xe9\xc5\x6d\xa6\xb8\x04\x8f\x0b\x44\x49\x73\xdf\x76\x0f\xa5\x39\x2e\x51\xce\x95\x65\xee\xc2\x45\x33\x33\xbc\xf6\xa3\x8c\x51\x2e\x16\x91\xd8\x8c\xbf\x7a\x77\xb1\x18\x84\xe3\x9c\xbf\x7e\xc5\xa0\xa4\xb9\xf7\x4b\x89\xc1\x03\x03\x51\xd2\xdc\x1b\x0d\x8b\x62\x32\x4b\x94\x34\xf7\x7e\xbf\x30\x0a\xe6\x5e\x4f\x0a\x94\xcd\xc4\x94\x28\x83\xc1\x1c\xb9\x88\x4e\xff\x6e\x30\x2a\x23\x27\xe8\xf2\xef\x6e\x56\x8a\x70\x19\xbf\x95\x15\xe5\x66\xa0\xd3\x15\xf8\x25\xbd\x28\x37\xd5\xdd\x59\x9d\x03\x98\x62\x21\xd0\xd0\x6b\x04\xd5\xb9\xcc\x28\xb8\x82\x92\x01\x7b\x63\x67\x3d\xb4\xe4\x51\x4b\x0e\x8a\xf8\xe2\x93\x53\xe0\x2f\x3e\x8c\xf3\x93\x5f\xb4\xeb\x2c\x93\x59\x4d\x9b\x6e\x54\x24\x0a\x36\xbd\x64\xbc\x6e\x78\x23\xca\x64\xf1\x7d\xa1\x7b\x6b\xfb\xfe\x47\xd1\x6e\x94\x60\xc8\x42\x33\x7b\xb0\xcd\x83\xbe\xa7\x39\xb5\xe8\x5b\x14\xcc\x69\x59\x59\xa3\x27\x6f\xd1\xc1\xc4\x5a\x8e\xdd\xe3\xf2\xb2\x90\xde\xac\x6e\x77\x27\x5e\xaa\x7b\xef\x2c\xf3\xa0\x61\x4f\x4b\xda\x53\x3f\xd1\x14\xd5\x48\x4c\xd4\x84\x5b\x0e\x07\x7d\xd5\x50\x7e\xe8\x45\x80\xc6\x2e\xa9\xce\x7a\x46\xdd\xfe\xfe\xe4\x4f\x75\xbc\x03\x10\x35\x6d\xad\x03\xfd\xa8\xd8\xda\x9a\xb6\xd6\xcf\x19\x45\x35\xc1\x30\x6a\x06\xd7\xc7\x4f\x9a\x22\x6a\xa5\x99\x5f\x9c\xdd\xda\x0f\x7e\x10\xd5\xe9\xcd\xa8\x89\x9b\x10\x9b\x56\xe3\x26\x51\x85\x9b\xf8\xb5\x82\xa8\x04\xd7\x35\x2d\xfb\x61\x8f\x80\xe2\x7f\xa4\xe2\xff\x46\xac\x58\x2d\xcf\x1c\x35\x81\x13\x3f\xbe\x17\x15\x1b\x2d\x21\xff\xea\x67\x0e\xa2\x36\x06\x25\x71\x13\xa2\x29\xe4\xfb\xa3\xa6\x21\x26\xbe\xa9\xe6\x83\x44\x6d\x2b\xcb\xdc\x4c\x5f\x2f\x0d\xc9\xfc\xb7\x76\x78\xea\x30\xc4\x35\x03\xef\xc3\xeb\x1d\x71\xff\xa8\x19\x78\x5b\x1c\x2c\xaa\x81\xfb\x90\xd0\x7f\x6b\x4c\xcf\xc1\x80\x25\x3a\x42\xa4\x82\xbc\x7f\xd4\x8c\xc9\x4f\x3b\xa7\x4a\x4c\x5e\xf5\x6a\xea\x66\x7d\xb0\xa8\x86\x4e\x42\xcf\x00\x34\x03\xf4\x51\xb1\xdf\x35\xe1\x91\xb3\xb8\xba\x8b\x85\x29\x92\xa2\xc1\xfb\xa8\x98\xef\x9a\xe6\xfb\x74\x07\x2e\x86\x39\x81\x93\xb3\xba\x21\x9d\xf5\xa5\xbb\xa9\xa7\xed\x1b\x0f\x03\x44\x4d\xd3\xee\x67\x65\xa2\x12\xc9\xd7\x7e\x66\x99\xfb\x8d\x69\xaf\x19\xad\x9b\xbc\x12\x75\x50\x9d\xa0\x78\x73\x17\xa2\x0e\x86\x32\x31\x95\x93\xcd\x4a\xb4\x5e\xd3\xb2\x9b\x52\x12\xf5\x66\xc6\xd3\x7c\x63\x87\x2b\xe6\xbb\x26\xa8\xe2\x97\x4f\xa2\x3e\x74\x2f\x81\x13\x0b\x60\x45\x7d\x18\x4c\xc5\xdd\x7e\x9a\x21\xea\xc3\xf4\x48\xbe\x6d\x3b\xed\x80\xea\xc3\xba\xfc\x42\xf0\x7a\xda\x0e\xa3\xda\x1f\x35\x31\x95\x5f\x5b\x64\x52\xdb\xcc\xda\xdc\xb9\x49\xc7\xf5\xc4\xd8\xe6\xe7\x39\xa2\x62\x84\x6b\xc2\x2d\xbf\xe6\x8e\x08\xba\xa6\x81\x36\x7f\x24\x2a\x06\x5a\x7a\xff\x5f\x99\x27\x21\xe8\x5d\x86\xd0\x66\x90\x44\x5d\x0c\x74\x02\x2e\x67\x77\x7d\x8b\x85\x29\x5c\xde\xb4\x8e\xa8\x8b\xd5\x97\x78\xcb\xaf\x51\x79\x59\x0e\x8a\xa1\x2f\x07\xf3\x95\x18\xba\xa6\x3f\x38\xd9\xac\x2f\x83\xf9\x6a\xf5\x5d\x3e\x56\x54\xfc\x41\x4d\x9b\x7f\x79\xb7\xee\xd8\x7c\xbd\x00\x50\xad\x27\x15\xbb\x53\xb4\xb1\x67\x78\xed\xd7\x1d\x02\x71\xff\xd8\xbf\x70\xba\xfa\xbd\xf2\xd8\x0b\x5f\x2c\xf9\xc5\xcb\x45\x3b\x45\x4d\x45\xc3\x45\x17\x45\x4f\x56\x46\x19\x95\x89\x6a\x68\xfa\x49\xec\xbe\x41\x1a\xbb\x52\xbb\x7e\x3c\x21\x50\xf7\x0f\xa9\xfb\x57\x3f\x9e\x10\xa8\xfb\x87\xd4\xfd\xeb\xe5\x9d\x8a\xba\x7f\xec\xe9\x41\x7e\xff\x2c\x28\x5b\x59\xc6\xef\x68\xc8\x77\x16\xa8\x7e\x8f\x21\x76\x3c\xc8\x9e\x18\x8c\x39\x32\xb1\xef\xb4\x44\x24\x44\xbf\xd5\x10\xbb\x49\x88\xb1\xcb\x81\x5c\x76\xf0\xbb\x33\xbb\x21\xad\xff\xef\x8b\x6e\x08\xce\x65\x4f\xe4\xc6\x2f\x28\xc4\x0e\x72\xb3\xeb\x00\xf0\xfb\x67\x4c\x76\xfa\xa4\xab\xb9\x25\xa6\x28\xc6\x9e\x3e\xe9\xb2\xa9\xe1\xd5\x80\xd8\x8f\xbf\xab\xf3\x37\x0f\xaa\x3b\x64\x9a\xbd\x39\xf6\x83\x61\xfe\xe2\xfd\xb2\x5d\x07\x65\xf4\x2e\x01\x1f\x93\x79\x62\x3f\x19\xcb\x44\x60\xcc\xe6\x09\xd4\xfc\x43\x6a\xfe\xf5\x57\xc7\x09\xc9\xf7\x34\xf7\x97\xad\xd7\xde\xf9\x64\xaf\x59\xe6\xdf\x61\xd3\xf7\x0c\xc9\xfd\x50\x67\xec\x9d\xea\x7a\x56\xe7\x41\xe9\x2c\x06\x99\x74\x2b\x7b\xc5\x3e\x98\x1e\x3d\x08\xb6\x99\x80\x13\x3b\xd8\x8c\xd4\xfc\xeb\x65\xf0\x0c\x35\xff\xd8\xd3\x13\x74\x47\x97\xfb\x60\x0a\xc6\xca\x32\x2f\x59\x3c\xc1\x9e\xe0\x4c\xb7\x33\xde\x6f\xaa\xbb\xb3\xba\xf3\xcf\x62\xdd\xfd\x66\x38\xa5\xad\xb6\x75\xf6\x38\xd0\xcd\x2e\xe8\xc6\xea\x5f\x81\x74\x7f\xec\xe9\x5e\x3a\x1b\x19\x1f\xb2\x67\xc0\xee\x07\x47\x63\x9f\x7c\x72\xe6\x27\x3d\x09\xf8\x89\x5d\x7e\xc2\x2a\x5e\xb1\x4f\x86\x6c\x6a\xce\xbb\x0f\x92\xa8\xf7\xc7\x9e\x7e\xa2\xb3\x13\x82\x39\x0f\x59\x52\x73\x78\x62\xc7\x4f\xec\xe9\x0b\xac\xd0\x1b\x3b\x98\xc9\x9e\x41\x7e\x67\xfa\x08\xf2\x77\x61\x26\xa6\x8c\xc5\xfe\x32\x43\x6f\xcd\x9f\xb9\x29\x18\xf5\x3d\x81\x91\xce\x4e\x78\xf9\xe4\x9b\x9f\xfc\x99\x82\xe6\xb4\x69\xb4\x8c\xe3\x4d\xc9\x89\x06\x2e\xd2\xc4\x5e\xbc\xec\xe8\x1a\x71\x7c\x4b\x00\xdd\x4f\x99\x46\x33\xf1\x26\x5a\xc6\xf8\xdd\x4e\xb7\x99\xbf\x18\x2d\xe3\x78\xbf\x07\x1a\xad\x50\xdd\x17\xd2\xb7\xc3\x2e\xa4\x39\x37\x1a\xad\x66\x2b\xbb\x7b\xe0\xfc\x67\xb4\x04\x38\xfc\x4a\x67\xa0\x78\x1f\x2d\x0d\x9c\x95\x4e\xa3\x35\x7e\x97\x56\xcc\x7a\xa6\xd1\xb0\x62\x2d\xb1\x0a\x73\x54\xa2\xf9\x7e\x7d\x48\xe4\xbe\x39\xa7\x1a\xcd\xb9\xc5\x68\x09\x55\x0c\x9b\x68\xa4\xed\xa3\xa5\xa5\xb2\x72\x4b\x34\x2c\x55\x3b\x6b\x96\xb9\x29\x27\xcd\x4c\xac\xc2\xdc\x91\x68\x17\xdd\x4b\x3c\xc2\x9a\xe8\xd1\x08\x68\x9b\x6e\xdd\x60\xa9\xd0\xb0\x8f\x96\x86\xd1\xaf\x35\x46\xbb\x98\xbc\x4b\x06\xc2\x4a\x9e\xd1\x2e\x9b\xaa\xd6\xe5\xb7\x8c\x8b\x36\xeb\x63\x45\x4b\xac\xc2\x9c\x8e\x68\x9d\x96\xf4\x6c\x89\x07\xac\x33\x28\x09\x55\x8c\xcb\xb5\x11\xd0\xb6\x44\xa6\x07\xab\x76\x30\x3f\xe3\xce\x32\xf7\xc0\x1a\x59\xd1\xc6\x77\x36\xf0\xfd\x8a\x68\x58\xbf\x96\xb1\xae\xb5\x2d\xa3\x81\x5a\x4b\xf0\xbe\x71\x7e\x6e\x20\x15\xed\xb3\x83\xed\xb0\xbf\x6e\x37\x43\x99\x48\x85\xd9\x1b\xd1\x40\x2a\x24\x8e\xdf\x0e\x16\x03\xc1\x73\x4b\x3c\x7b\x30\x94\x0f\x13\x9e\x96\xcf\xfc\x8d\x68\x0f\xfd\x16\x8c\x51\xfc\x02\x63\x34\x50\x6b\xe9\xe1\x37\x0e\xf2\x6d\x32\x94\x42\x31\x8a\x35\x57\x02\x15\xfc\x68\x33\x3f\x59\xdc\x94\x60\x5d\xca\xf4\x15\xbf\xb4\x18\x0d\xd3\x27\xdd\xfb\x52\x36\xb6\x16\x68\x71\x13\x97\xa4\x58\x26\x25\xd0\xb4\x8f\xb6\xf2\x77\x86\xbb\xdb\x62\x7e\x24\x59\x5c\xcc\xd3\x88\x86\xed\x6b\x6f\x7e\xd3\x66\xb8\xbd\xf4\xe1\xcd\x3e\xd8\x89\x22\x5e\x1f\xc7\x96\x7d\x30\x60\x84\x7a\x7d\x1c\x5b\x7e\xd3\x88\xc3\x61\x5e\x48\x1c\x9f\xb1\xfb\xca\x4e\x97\x05\x65\x59\x9f\x23\x12\xb4\xed\x43\xda\xf6\xe5\x3b\x80\xba\xac\x51\xf6\x39\x27\x93\x5c\xe3\x20\x7b\x78\x94\xfc\xa4\xbd\x13\xc2\xf7\x71\xd4\xfc\xa4\x33\x57\x07\xd6\x4f\xa2\xf8\x5f\x99\xbb\x50\xe9\x42\xcd\x6f\x7a\x07\x1d\x80\xd0\xc7\xae\xd5\x42\xcf\xc9\x03\x4a\xd0\xbe\x14\x3f\x26\x18\x07\x48\x85\x14\xee\x6b\xaf\xfc\x6c\x51\x94\xb5\xd9\xe2\xa0\x7e\x1f\x52\xbf\xff\xca\xfc\x3b\xec\xf0\xd1\xb2\x3a\x9f\xdf\x0e\xe0\xe4\xa3\x65\x75\x1e\x30\x40\x0c\x89\xdc\x57\x33\x75\xe3\x20\x7b\x78\x7c\x61\x65\x29\x66\x48\xc4\x01\x88\x71\x7c\xd6\xba\x1d\xcc\x1c\x18\x86\x04\xf0\x2b\x31\x00\x02\xf8\x21\x01\xfc\xef\x8b\xfc\x8c\xc5\x20\x89\xfb\x62\x65\x9a\x38\x4e\x26\x5c\xec\x0f\x3f\x08\x10\xc7\x49\x6d\x67\xd6\xf6\xb3\x9c\x91\xa4\x0f\x49\xd2\xd7\x6e\x8b\x8f\x24\x7d\x1c\xb2\xf8\xc5\x2a\x28\x81\x26\x7d\x48\x93\xfe\x2b\xe3\x93\x0f\x65\x53\x9f\x74\xfb\xb1\xf8\x87\x70\x8a\x62\xe1\xb8\x38\x3a\xed\x17\x97\xb0\xb3\x77\x7c\xd3\x32\x0e\x59\x75\x22\x18\xa4\xe7\xe3\x18\x9b\x8a\x3c\xa1\x84\xb4\xc7\xc8\xca\x6c\x4b\x0f\xb0\x69\x29\xd4\x7f\x65\xee\x37\x06\xff\x10\x82\x51\x0a\x23\x09\x36\x2d\x21\xfa\xe6\x67\xbf\xe3\x20\xdf\x78\xdc\x39\x24\x0e\xbc\x0f\x72\x8a\x47\xda\x52\x6b\x98\xc5\x01\x24\x7c\xcc\x6c\xca\x1f\x0a\x1e\xc4\x41\x94\x79\x28\xca\xec\x3e\x74\x1c\x44\x99\x47\x9a\xe1\xc2\x7e\x9c\xb4\x66\xe6\x2a\xb2\x47\x3b\x48\xf5\x1d\x91\xeb\xd9\x6e\xeb\x08\xa6\x21\xb2\x3a\x4f\x2c\xf9\x3c\xe9\xd0\x7f\x3f\xfb\xb1\xb4\x08\xd1\x87\x84\xe8\x2b\xe1\x1b\x42\xf4\x21\x21\xfa\x4a\xf4\x86\x10\x7d\x1c\x69\xd7\xcd\xfd\x08\x94\xe8\x43\x4a\xf4\x5f\x99\x3b\x80\x5d\x3f\xde\x9c\x75\xa3\xef\xc7\xcb\x12\x13\x11\xd0\x8f\x11\xc4\xf1\xd2\x37\x11\x01\xfd\x36\x5d\x1c\xa4\x01\x0f\x3d\x5d\x5b\x8a\xe1\x0d\xc4\xe8\x43\x62\xf4\xd5\xa2\x8b\x81\x18\x7d\x9c\xe9\x0c\xe0\x84\xa0\x46\x1f\xa7\x48\x82\x05\x4e\xc8\x89\x33\x38\xd3\xe0\x5b\xb2\x28\x4e\x30\x0c\x89\xcc\xd7\xee\xe3\xe2\x09\x86\x71\xa6\xbd\xb7\x45\x3c\x4d\x12\x0c\x89\xcc\x7f\x9b\xce\xb5\x11\xed\x9e\xe9\x0b\x7c\xe9\x38\xd0\x96\x8f\x33\x7d\x81\x45\x50\xe2\xc4\x17\x48\x4c\xfe\x2b\x73\xcf\xc1\x1c\xce\xb4\xf7\xdd\x3f\x23\xe9\x78\x0a\x73\x28\xbe\xba\x1b\x27\x98\xc3\x29\xcc\xa1\x33\xcc\xc4\xd6\xd2\x90\x2f\xc5\x37\x63\xe3\x6c\xfc\x4c\x17\xe0\xfd\xa6\x42\x9c\xa4\x01\x25\x1a\xff\xfd\xcc\x43\x89\xe1\x96\x6a\x7c\x29\xd5\xf6\xe6\x04\x20\x90\x8c\x7c\xf5\xfb\x6a\x81\x8c\x7c\x48\x46\xfe\xfb\x99\x5b\x02\x23\x44\x92\xf2\x5f\x99\x9b\x82\xe5\x96\x5a\xfc\x57\xe6\xf1\x22\x24\x97\x3c\xfc\x57\xe6\xfa\xfc\x6c\x79\x9c\x32\xdd\xc3\x80\xd6\x49\x66\x51\x22\xf0\xa5\x54\x23\xd3\xe7\xc5\x42\x11\xa7\xcf\x42\x96\x81\x2a\x7c\x9c\x57\xd6\xe6\x6d\x7c\x5e\xcc\xea\x95\xeb\xd2\xf6\xed\x84\x64\x22\xf5\xf8\x06\x5a\x7f\xe2\x0d\xce\x2b\x5b\xe2\xa0\xe1\x04\xb5\x3e\xbb\x16\x83\x23\xf2\x93\xa4\xa3\x84\xe0\x4b\xb1\xbe\x4a\x9c\xa0\x18\x52\x86\xaf\x1c\x98\x50\x86\x8f\xb3\x67\x6d\x6c\x3a\x28\x26\xa7\x48\x82\xa5\x1a\xdb\x39\xb1\xf9\xe7\xc8\xea\xd8\x3d\x24\x16\xcf\x3b\xa7\x95\xc5\x47\xdc\x2d\x9d\xf7\x52\x76\x36\x2b\x86\xfd\xbc\x57\x96\x79\xa0\x1f\xda\xa2\xe0\xba\xec\x2c\x23\x72\x84\x29\xbf\x5e\x20\x99\x9c\xc0\x0a\xa7\x60\x05\x5f\x16\x88\x93\xe0\xfa\x4c\x5f\x61\xf1\x93\x38\x27\x93\xa0\x67\x47\x0a\x2c\x13\x74\xdb\x23\x75\xdb\x87\xe3\xf5\x13\xda\xc7\x29\xda\x07\x47\xc5\x13\x5f\x20\x9d\xf6\xca\x49\xf1\x0c\xc6\x24\x23\x72\xb8\x29\xa8\xb3\x87\xd4\xd9\x1b\x79\x96\x13\x37\x71\xa6\x9b\x80\xb6\x82\x3c\x7b\x48\x9e\xfd\x2b\x73\xbf\x17\x53\x97\xce\xc0\xba\x29\x71\xe2\x0c\xce\x95\xdf\xa4\x07\x2f\x3d\xf8\x6c\x7f\x23\x3f\x73\x92\xa8\x3c\xdf\xec\x81\xc3\x94\x13\x0c\xe3\x14\x86\x31\xd8\xe3\x84\xff\x67\x86\xff\xbb\xf7\xf8\x05\xef\x43\xca\xea\x5f\xd9\xe9\xb2\x83\xb2\xac\xce\xc1\xe0\x05\x68\x7d\x6d\x1a\xb0\xc2\xcf\x6c\x4a\xaf\xcf\xf6\x37\xf8\x1b\x17\x29\x4c\xa9\xa4\x97\xb2\x3b\x8a\xbf\x80\x37\x52\x36\x7d\x38\x63\x8f\x6c\x7a\x5c\xe9\x0c\xfc\x76\x60\x5c\x50\x07\xa5\x93\xfe\x95\xb9\x73\x38\x83\x2b\x83\x7f\xdf\x22\x8e\x0b\xdc\x5a\x9a\xe7\x95\x73\xfc\x45\x0a\xf3\xda\x73\x56\x1d\x18\x5c\xf0\x03\x2f\xf1\x03\xad\xc3\x1a\x17\xe7\x82\x2b\xfd\x84\x1f\x24\x0c\x54\xd0\x43\x2a\xe8\x8d\x14\xd9\x05\x3d\xf0\xca\xd8\xdf\xca\x2b\x71\x91\xc1\x94\x4a\x79\x29\xf0\x8a\x2e\x1c\x85\x64\xcb\xbf\x32\x37\x05\x0c\x46\x12\xe6\x75\x30\x5e\xf8\x90\x2b\x7d\x08\x34\x99\x0b\x47\x71\x29\xc2\xf7\xb5\x8e\x40\xee\x3c\xae\xe3\xef\x96\xfc\xec\x90\xeb\xa4\x36\xc9\x69\xf9\x5e\x47\x5c\x24\x30\x2f\x25\x30\x4b\xb3\x1b\xbf\xf0\x05\x12\x38\x6f\xe4\xf8\x50\x35\x8f\x2b\xdd\x84\xb5\x5e\xe2\x82\x64\x72\x5d\x35\xcb\xfc\x3b\x7c\x81\xc4\xca\x4b\x69\x8c\x33\x90\xf6\x25\x48\xdb\xaf\x62\xc4\x45\x2a\x52\x6a\xe5\xa5\x58\x09\x26\x2e\xd0\x99\x4b\x71\xfc\x18\xe5\xbf\x46\xba\xb5\xfe\xb7\x81\xee\x05\xe3\xf0\x4a\x4f\xd1\x9c\x74\xb8\xa0\xa0\x48\xf8\xfc\x2b\x73\x63\x70\x07\x52\x3a\x2f\xa5\xd9\x36\x5c\xa0\xda\xd7\xc8\xc6\x78\x34\x81\x75\xae\xa1\xee\x19\x15\xb9\x48\x6f\x5e\x79\x38\x20\xcb\x7f\x01\x6a\x5f\x77\x8e\xa6\x73\x0e\x17\x00\xcd\x25\xc2\x5e\x25\x5b\x77\xc1\xca\xbb\x64\x8a\xaa\x1f\x39\x7f\x51\x4f\x7a\x9f\xad\xfd\xaf\xbf\x76\xab\xe5\xbe\xcb\xc1\xe0\xbb\xf4\x96\x10\x2f\x59\xbf\xdc\xcc\x7b\x57\x6e\x3b\x3f\xc7\xf1\x2e\x93\xbb\xde\xd5\x5a\x96\xb5\x9f\x32\xcb\x80\xbe\xeb\x8b\xab\xbe\x53\xc3\xcf\xef\x5e\x9b\xb7\x57\xb7\x10\xbe\xb2\xfa\x53\x76\x53\xa6\x54\x2b\xbf\x32\x8b\xf1\x15\x43\xdd\x0a\xa1\xef\xeb\x23\xca\xfb\x4e\xbd\x15\x70\xfe\x94\x04\xbf\x91\xc4\x62\x71\x3d\xc1\x6f\x3e\x37\x63\x69\xcb\x17\xfa\xf9\x2b\xba\x79\xb1\x2e\x63\x79\xcb\xcf\x48\x95\xb7\xd4\x1c\xa9\xed\xf8\xaf\x0b\xef\xfb\xcf\xbf\xde\xff\xf8\x1f\xff\xfb\xff\xdc\xff\xf8\xbf\xf7\xbf\xae\xbf\xe6\x7f\xfe\xf3\x9f\xeb\xdf\xfe\x23\xfe\x65\xfe\xc7\x5f\xff\xf3\xfb\xeb\x5f\xb1\xde\x7f\xf9\xb7\xf5\xcf\xf5\xff\xfe\xfd\x3f\xff\x39\xd7\x5f\xff\xf8\xf7\x7f\x7c\xbf\xd2\xbf\xff\x1f\x00\x00\xff\xff\xaa\xf1\x6a\x04\xb3\xc9\x03\x00"); +func _bed ()(*asset ,error ){_ecff ,_fgfd :=_dbgd ();if _fgfd !=nil {return nil ,_fgfd ;};_facd :=bindataFileInfo {_ee :"Ext-RKSJ-V",_ffd :1151,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491925,0)};_ggcda :=&asset {_da :_ecff ,_dc :_facd };return _ggcda ,nil ; +};func _aacf ()(*asset ,error ){_acfa ,_eed :=_daca ();if _eed !=nil {return nil ,_eed ;};_bfdb :=bindataFileInfo {_ee :"UniJIS-UCS2-V",_ffd :4167,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492912,0)};_fdae :=&asset {_da :_acfa ,_dc :_bfdb };return _fdae ,nil ; +};func _babd ()(*asset ,error ){_befb ,_cfda :=_cccf ();if _cfda !=nil {return nil ,_cfda ;};_eaae :=bindataFileInfo {_ee :"Katakana",_ffd :467,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492475,0)};_bbbgb :=&asset {_da :_befb ,_dc :_eaae };return _bbbgb ,nil ; +};var _efaf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\x41\x0f\x93\x30\x14\x07\xf0\x3b\x9f\xe2\x1d\xe7\x61\x42\x81\x52\x4d\x8c\x89\xb2\xc3\x88\xd9\x34\xa2\xd3\xc4\x78\x80\xf6\x8d\x34\x19\xa5\x29\x70\xd8\xb7\x37\xef\x15\xd9\x61\x79\xe3\x57\xfa\xcf\xeb\x2b\x69\xdd\x9c\x1a\x67\x17\x48\xbf\x85\x49\xb7\xb8\xc0\xdd\x3a\x13\x70\x9e\xd6\xa0\x11\x7a\x1c\xac\x4b\x12\x91\x83\xb1\x7a\xf9\xff\xc8\x45\x8f\x9d\x4f\x92\xf4\xfc\xc5\x3c\xfa\xe3\x67\x79\x3c\xc3\x3a\xe3\x86\x75\x73\x6a\x9f\xf3\x82\x63\xe3\xee\x13\x14\x71\xb3\x59\xfd\x16\x00\x90\x7e\xc7\xc1\xce\x4b\x78\xc2\xe1\x93\x99\x7a\x7c\x03\x06\xef\xe4\x5f\x83\xc1\x60\xdd\x00\x87\xfa\xda\x8a\x9d\xdb\xd5\xfb\x07\x8e\xe8\x16\x10\x6c\xe8\x0c\xd7\x24\xad\x2f\x9d\xbf\x76\x23\xc2\xab\x95\x1b\x2f\xf1\xca\x0d\xc3\x6c\x27\x07\x22\x7f\x9b\x65\xf2\xe5\x3f\x9e\x1e\xb7\xa8\x24\xfd\xfd\xb3\x39\xc1\x1f\x01\x22\x83\x5c\xca\xbc\xfc\xbb\xf9\xaf\xcb\x64\xf6\xb7\x44\x1e\xbb\xd7\xd6\x84\xce\x0d\x98\x7c\xe8\x44\xd9\x7f\x84\xad\x88\xa2\x2a\x2b\x32\xd9\xb1\x51\x11\x85\x2a\x0b\x36\x1d\x4d\x47\x93\x6c\x26\x1a\x92\x65\x24\x95\x60\xa9\x72\x92\x92\x45\x46\xa9\x48\xde\xb1\xbc\x8f\x42\xe9\x65\xce\x12\x73\x2a\xca\x89\x1d\xa8\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\x32\x16\x2c\x54\xe8\x2c\x8a\x46\xbc\x9f\x95\xfe\xd3\xd5\xee\xc3\xd6\x6b\x08\xe8\x16\xbe\x58\x1e\x28\x0d\xc9\x3a\xdc\xbf\x1c\x3f\x79\xda\xc5\xbf\x7f\x01\x00\x00\xff\xff\x33\xf7\x40\xf6\x65\x02\x00\x00"); +func _bdec ()([]byte ,error ){return _gb (_bcce ,"UniGB-UTF32-V")};func _ced ()([]byte ,error ){return _gb (_gce ,"Adobe-KR-UCS2")};var _gbfg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x39\x6e\x0f\x5b\x6c\x63\x6f\x12\xa9\x42\xaa\x88\xaa\x72\xd8\xb4\x2a\x9b\xb4\x52\xd5\x03\xb1\xc7\xd4\x52\x31\x96\x81\x43\xfe\x7d\x65\x03\x46\x7b\x40\xe6\xbd\xcf\x8c\xe7\xe1\xc9\xab\xfa\x5c\x5b\x33\x41\xfe\xdd\x0f\xb2\xc1\x09\xb4\xb1\xca\xe3\x38\xcc\x5e\x22\xdc\xb1\x33\x36\xcb\x28\x03\x65\xe4\xb4\xc9\xb8\xc8\xbe\x75\x59\x96\x5f\xad\xa9\x2e\xcd\xf3\xf5\xed\x4b\xc1\x9e\xbf\xc2\x3c\xe2\x0a\xaa\xfa\xdc\x3c\xc6\x09\xfb\xda\xea\x01\x8a\xa5\x80\x9a\xdd\x5a\x04\x20\xff\x81\x9d\x19\x27\xff\x80\xa7\xcf\x6a\xb8\xe3\x07\x50\xa8\x83\xff\xcd\x2b\xf4\xc6\x76\xf0\x54\x5d\x1a\x9a\xec\x66\x76\xee\x1f\xf6\x68\x27\x38\x44\x0f\xad\x8a\x6b\x96\x57\xaf\xad\xbb\xb4\x3d\xc2\xfb\x76\x6e\x11\x47\x7a\x43\x3f\x9a\xc1\x02\xfd\x48\xc8\x69\xb7\xdf\x1e\x0e\x81\xae\x55\x7e\x5d\xeb\x33\xfc\xa6\x40\x09\x30\x21\x4e\xfc\xcf\xea\xff\x7c\x1d\x54\xda\xf5\xb2\xf4\x2f\x8d\x92\x7f\x5b\x9f\x7d\x22\x84\x10\x46\x68\x51\x02\x65\x24\x49\x1e\x24\xdb\x24\x13\x25\x50\x72\x5a\xa4\x46\xae\x4b\xa0\xc5\x81\x8b\xd5\xd0\xe2\x1e\x0c\x9e\xa4\x0a\x52\x84\x7c\xdb\x31\xd9\x21\x1d\xeb\x5b\xdb\xe1\xb2\xb5\x20\xe4\x58\xc2\xf6\x7a\x2a\x81\x0a\x92\x48\xbb\x93\x50\x9e\xbf\x24\x22\x77\x12\x4e\x12\x3c\x11\xdc\x49\xe8\x51\x1c\x37\x42\x49\x22\x94\x86\x6a\x2c\x11\xbe\x93\x10\xb3\x38\x6e\x31\x52\x6f\x5a\xc7\xde\x0a\xb2\x26\x5a\x12\x44\x11\x46\x25\x5d\x9e\x9c\xbd\x47\x3b\xc5\x41\x89\xb7\x13\xfe\xb8\xb1\x98\xa6\xd1\x0d\x2e\x7c\x15\x9f\xff\x01\x00\x00\xff\xff\xad\xc7\x92\x12\xb9\x02\x00\x00"); +var _bdeee =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\xcf\x6a\xdb\x4c\x14\x05\xf0\xbd\x9f\x62\x96\xf9\x16\x5f\x2d\xcd\x7f\x41\x08\x94\x64\x51\x17\x92\x86\xa6\x4d\x0a\xa5\x0b\x59\x73\xc7\x08\x6a\x49\xc8\xf2\x22\x6f\x5f\xe6\x1c\x55\x5d\x84\x1b\xfd\xac\x7b\x39\x23\x69\x66\x7f\x7f\x78\x38\x0c\xfd\xa2\xf6\xcf\xf3\xd8\xbd\xc8\xa2\x72\x3f\xa4\x59\x2e\xe3\x75\xee\x44\x1d\xe5\xd4\x0f\xbb\x5d\xad\x55\xea\xbb\xe5\xef\x25\x4a\x77\x6e\xa7\xdd\x6e\xff\xf4\xf6\xfc\xff\x27\x75\xbd\xc8\x7a\x7d\x7f\x78\x78\x79\xbf\x2c\x72\x3e\x0c\x79\x54\x86\x7d\xe9\x3a\xad\xbd\x4a\xed\xbf\xca\xa9\xbf\x2c\xf3\xbb\xba\xf9\x98\xc6\xa3\xfc\xa7\x92\xe4\xe2\x5f\xe6\x24\x73\x3f\x9c\xd4\xcd\xe7\x76\x6a\x87\x7a\xfb\xe1\xe5\x3a\x4d\xbf\xe5\x2c\xc3\xa2\x2a\x98\x0c\x09\x75\xb7\xbf\x7f\x6c\xa7\xa7\xf6\x2c\x0a\x39\x5e\xa1\xc0\x57\x99\x2f\xfd\x38\xa8\xba\xfa\x50\x55\xfe\x9f\x7f\x7b\x9f\x44\xd5\x6b\xf7\x8f\xef\x87\x07\xf5\xb3\x56\x75\xa5\xb4\x33\x26\xfc\x5a\xfd\xed\x71\x4c\xdb\x5d\x36\x32\x7a\xd7\xa7\xb9\x1d\x4e\xb2\xbb\xd5\xb5\xd6\x77\xaa\x14\x73\xa7\x42\x8c\x01\x64\x49\xf6\x4e\x45\xed\x23\xc8\x91\x5c\xa1\x60\x41\x47\xd2\x11\xa4\x41\x1d\xa9\x03\xd5\x85\x0c\xc9\x48\x19\xdf\x80\x6c\x0d\xb2\x0e\x84\x59\xd6\x93\x7c\x69\x8c\xbc\x2b\x90\x02\x66\x79\x50\x24\x45\x50\x03\x6a\x48\x0d\x08\x51\x6d\x0b\x72\x47\x8c\xc7\x5d\x9e\x51\x3d\xa2\x7a\x12\x73\x79\x46\x35\xa0\x44\x4a\x08\x51\x48\x6b\x29\x84\x12\x75\xa8\x76\xb7\xda\x6a\xa4\x47\x09\x4d\x1d\x41\x86\x64\x40\x0d\xc8\x91\xca\x1a\x1b\xcd\xc6\x40\x0a\xa0\x1a\xd4\x90\x1a\x50\x79\x84\xd6\x72\x96\xc5\x2c\x5d\x42\x58\x4f\xf2\x24\x0b\xe2\x78\xcf\xf1\x0e\xc4\xf1\x9e\xe3\x3d\x48\x48\x02\x2a\xaf\xd6\x31\xbd\x63\x7a\x1d\x41\x86\xc4\xf1\x0d\xc8\x91\x30\xde\x54\xa0\x40\xc2\x78\x53\x83\x1a\x12\xd2\x9b\x92\xde\x31\xbd\x63\x7a\x53\xd2\x3b\xa6\x77\x4c\x6f\x2c\x88\xe3\x99\xde\x38\x10\xc7\x33\xbd\xf1\x20\x21\x21\xbd\x41\xfa\xc0\xc6\xe0\x41\x25\x7d\xb2\x55\xa1\x64\x73\x21\x5b\xa2\x26\x4f\xf2\x58\xa3\x2b\xb3\x32\x97\x8d\x12\x62\x8c\x20\x4d\xe2\x4b\xab\x41\x96\x64\xb7\xad\x90\xb9\xec\x5c\x3e\xf2\xf5\x79\x65\x7e\xe4\x59\xcb\xb6\xa0\xac\x33\x29\x6f\xcb\xce\x06\x21\x50\xd6\xef\x3e\x3b\x2c\x08\x65\xdd\x30\xd9\xb1\xb1\x14\x6c\x18\x19\xd2\xb6\x37\xcb\xff\xe5\x1c\xda\xce\x85\xee\x3a\xcf\x32\x2c\x38\x85\x70\x00\x94\x4d\xdd\x0f\xb2\x9d\x70\xd3\x38\x95\x2e\xfc\xfd\x09\x00\x00\xff\xff\x92\x05\x36\x37\x0d\x05\x00\x00"); +func _dade ()([]byte ,error ){return _gb (_gfcc ,"UniAKR-UTF16-H")};func _edgcd ()(*asset ,error ){_eacg ,_bcge :=_cadc ();if _bcge !=nil {return nil ,_bcge ;};_bdag :=bindataFileInfo {_ee :"UniJIS-UCS2-H",_ffd :166343,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492896,0)}; +_ceed :=&asset {_da :_eacg ,_dc :_bdag };return _ceed ,nil ;};func _cda ()(*asset ,error ){_cgc ,_gcd :=_fg ();if _gcd !=nil {return nil ,_gcd ;};_ggag :=bindataFileInfo {_ee :"90ms-RKSJ-H",_ffd :3820,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491019,0)}; +_bgc :=&asset {_da :_cgc ,_dc :_ggag };return _bgc ,nil ;};func _faac ()([]byte ,error ){return _gb (_ecaff ,"UniJIS2004-UTF8-V")};func _cfd ()([]byte ,error ){return _gb (_cfgb ,"ETenms-B5-V")};func _feecb ()([]byte ,error ){return _gb (_daag ,"UniJISPro-UCS2-V")}; +var _efgf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x4f\x6f\x5b\xbb\x11\xc5\xf7\xfa\x14\x77\x99\x2e\x52\x93\x1c\xf2\x5e\x12\x30\x0c\x14\x09\x8a\x3a\x40\xda\xa2\x4e\xd2\x02\x45\x17\x57\x12\xe9\x0a\xa8\x65\x41\xb6\x17\xf9\xf6\xc5\xfc\x8e\xec\xe7\xf7\xde\x42\xe0\x99\xe1\xfc\x39\x24\x87\x43\xdd\xab\x4f\xb7\x9f\x6f\x8f\x87\xe7\xe9\xea\xef\xe7\xc7\xdd\x5d\x7f\x9e\xc6\xe1\xb8\x3f\xf7\xa7\xc7\x97\xf3\xae\x4f\xdb\x7e\x7f\x38\x6e\x36\x31\x4d\xfb\xc3\xee\xf9\x55\x64\xd8\x3d\xac\xa7\xcd\xe6\xea\xfb\xf1\xf0\xe5\xf6\x2e\x85\x90\x3f\x7e\xff\xf6\xe7\x38\x7f\xfc\xcb\xf4\xf2\xd4\x2f\x93\x9f\x6e\x3f\xdf\xfd\x7c\x7a\xee\x0f\xb7\xc7\xf1\x38\x99\x82\xec\x5f\x4e\x97\x40\xd3\x74\xf5\x8f\x7e\x7f\x78\x7a\x3e\xff\x9c\x3e\xfc\x69\xff\xb8\xed\x7f\x98\xf6\x7d\xb8\xfe\x6f\xe7\x7d\x3f\x1f\x8e\xf7\xd3\x87\x2f\xeb\x69\x3d\xc6\xb7\x89\xbb\x97\xd3\xe9\x7f\xfd\xa1\x1f\x9f\xa7\x05\x5d\x3f\xee\x19\x37\x57\x9f\xbe\xae\xa7\xbf\xae\x0f\x7d\xfa\x3d\xa9\x1f\x98\x60\xf1\xa3\x9f\x9f\x0e\x8f\xc7\x29\xfe\x31\x84\xf9\x17\xf5\xb7\x9f\xa7\x3e\xc5\x4b\xa4\x7f\x7d\xbf\xfd\x3c\xfd\x3b\x4e\x31\x4c\xa9\xcc\x16\xfe\x73\xd1\xff\xf3\xeb\xe3\xfe\xcd\x2a\x86\xa0\x75\xec\x0e\xfb\xdd\x7f\xd7\xf3\xe6\x3a\x84\x6d\xb8\x99\x6a\x9a\xdb\xe6\x3a\x85\x18\x6e\xa6\xa5\x36\x03\x17\x70\x02\xcf\xe0\xe2\x38\x49\x5f\xc1\xd2\x2f\x8e\x2d\x79\x9c\x05\x5f\x33\xc7\xd5\x71\x6c\x1e\xd3\x2a\x30\x3a\x9c\x81\xc9\x61\x03\x9a\x43\x8f\x11\x77\xf9\x66\xaa\x16\x23\xb8\x80\x03\x78\x06\x3b\x97\xd8\x1d\x87\x0b\x5e\xc0\x19\x5c\xc1\xf8\xf6\x06\xf6\xfc\xd6\xb6\x37\x53\x4c\x31\x57\x84\x1d\xc2\x2c\x61\xaf\x99\x05\xa1\x23\x94\x80\x30\xde\x99\xad\x41\x66\x0d\x21\xca\x6c\x46\x48\xef\xcd\x4c\x33\x05\x21\x4b\xd0\x4c\x79\x6f\x36\x6b\x86\xa4\xab\xf3\x7f\x9d\xa8\x60\xe9\x1b\x58\x49\xd6\xf7\xde\x5b\x9f\x58\x12\x78\x07\x8e\xe0\x3d\xd8\xc9\x97\xb0\xbb\x99\x96\xcc\x61\x95\xb0\x07\x2f\xe0\x0e\x9e\xc1\x03\xec\x31\x0b\x87\x5e\x82\x81\x23\x18\xdf\x98\xc0\x19\x6c\x60\x7c\x63\xc6\x37\x82\x0b\x58\xbe\x33\x38\x81\x17\xb0\x7c\x2b\xb8\x81\x1b\x71\xe4\xbb\x82\xe1\x1c\xb7\x60\xf9\x3a\xff\x92\x14\x73\x0f\x86\x7f\xec\x60\x71\x1b\x60\xe2\x27\xf8\x27\xb8\x25\xf8\x27\x72\x25\xf8\x27\xd6\x48\xd1\x16\xc3\x97\xa2\x2d\x46\xfc\xb4\x80\xc9\x9b\x2a\x58\x31\xe1\x49\x51\x96\x04\x4f\x53\x7c\x78\x9a\x62\xc2\x33\x12\xd3\xe0\x10\xb1\xb1\xcc\x5a\xf0\x35\x62\x06\xec\x33\x36\x99\xb5\x67\x78\x66\xd6\x9e\xe1\x99\xe1\x90\xd9\x67\x2a\xb2\x64\xe2\x50\x76\x25\xc3\x3f\x13\x3f\xc3\x3f\x2b\x26\xfc\x0b\x6b\xc9\xe4\x2a\x1e\x67\xf6\x3d\xac\x29\x45\xb0\xd7\x46\x8a\x0d\xdc\xd1\xcb\x66\x80\x9d\xc3\x12\x54\xc9\x8b\x07\x5d\xbc\xc6\x6b\x0a\x6d\x73\x6d\x81\xc3\xa8\x7e\x90\x16\x38\x8c\xe6\xa5\x6f\x81\x03\x68\x5e\xc5\x16\x58\x4c\x8b\x15\x6c\x60\x7c\x21\xdd\x3c\x81\x05\x88\x36\x27\x64\x21\x37\x70\x72\x3c\x63\xef\x87\x6d\xa1\x0a\x93\xab\xca\xb7\x80\xe5\x4b\xde\xda\xc1\x8b\xf7\xd0\xd7\x26\xb6\xa9\xf9\x37\x5d\xcd\x82\xdf\xfa\x9a\x16\x72\x34\x36\x63\x21\x37\x97\x79\x36\x93\x00\xf1\x04\xf1\x55\xc9\x21\xbe\x92\xdc\x20\xbe\x92\xfc\x62\x0f\x71\x23\xe8\x0e\x7b\x83\x78\x17\x86\x78\x97\x2f\xc4\xbb\x7c\x21\xde\x21\x6e\x6c\xd8\xd0\xa6\x7a\xcc\x34\xc6\xcd\x94\x2c\x14\x4f\x6c\xc1\x7b\xb1\x79\x0f\x32\x0b\xde\x43\xcd\x4b\xcd\x2c\x78\x3b\x89\x6d\xd6\x04\x8d\x91\xcc\x16\x66\x4d\x44\x84\x45\x42\x41\xa8\x12\x64\xd6\x24\x28\xd8\x2a\x61\x46\xd8\x22\x2c\x8a\xbc\x93\x90\x10\x74\xda\x4c\x70\xe5\x5b\x26\x4b\x24\x7d\x96\x9e\xbe\x6c\xc2\xca\x5e\x25\x54\x26\x58\x54\x54\xf2\x4a\x54\x0a\xd0\x0a\xac\xfc\x82\x56\x63\xcb\x2d\xb1\xda\x0c\xc1\xa4\xd5\xb2\x3f\xe6\x37\xd7\x05\x79\xcc\x70\xd2\x04\x9b\x9b\x59\xac\x5f\xd1\x6a\x54\xa6\x71\x45\xdb\x25\xc3\x5e\xce\xa4\xb0\x88\x11\x29\x8c\x7a\x0f\x01\x6f\xd3\x4e\x67\x30\x19\xfc\x02\x9a\xd9\x82\x51\xd4\x44\x95\x40\x0e\x6b\xb0\x25\x87\xad\x9a\x90\xcb\x96\x09\xe5\xdb\x69\x82\x0d\xb1\xbd\x04\xb2\xe7\x28\x01\xb3\xcc\x2e\x28\xa3\xdf\x92\x6a\x45\x58\x09\x93\x04\x2a\x4f\x9b\x9e\x57\x16\x08\xab\xcc\x21\x89\x48\x66\x6b\xa9\x30\x2b\x54\xb6\xb6\xb3\x68\xad\x5a\x5f\x31\x09\x9a\xc9\x12\xd8\x85\x42\xee\x8c\xd5\xc2\x9b\x19\x2e\x82\xd6\xa1\x24\x8b\xd6\x91\x39\xcc\xa5\x4b\xe0\x3c\x96\xc1\x69\xe6\xcd\xf5\x18\x81\x1b\xe7\xe5\x36\x46\xa0\xe5\x2c\xe8\xa3\xde\x32\xef\xff\x63\xa8\x9d\xf8\xbe\x8d\x61\x1c\x9a\xbf\x41\x63\x18\xfa\x80\x83\x0d\x6e\x4a\x70\x5c\x64\x53\xc0\xba\x41\x33\x58\xf6\xc2\xfd\xb5\x5d\x8d\xc1\xad\xac\xb5\xfd\xaa\x55\xd8\xf2\xd6\x2a\xce\xeb\xf1\xbe\xfb\xe3\xe9\xff\x80\x7c\x88\xb4\x86\xa2\x47\x14\x5d\x09\xbe\x8f\xb9\xd2\xb3\xbd\x47\xfa\xe0\x61\xf3\x42\x5b\xf6\x7b\xe9\x03\xaf\x60\xd5\x8b\x3b\x4b\xc5\x03\xc8\x3f\xa0\xe2\x57\xd1\x87\x86\x4a\x8e\xab\x54\x5b\x54\x7a\x66\x0c\x55\xa2\xeb\x1b\x24\xbc\x7c\x7d\xe0\xb1\x8b\x7a\x50\x22\x2a\xe3\x9d\xa0\x77\x17\x2b\x52\xf1\x14\x04\xc2\x7b\x7d\xfa\xc0\x6b\xc5\x5f\xa5\x62\x8a\xc5\x86\x96\xac\x07\x43\x56\xd4\x53\xe1\xa2\x07\x5f\xaf\x0f\x89\xad\xa3\x59\xc1\xde\x02\xff\x0c\x5a\x40\xe5\xed\xc0\x07\x5a\x5d\xa0\x35\x7a\x27\xf0\x61\x61\x0f\xd5\x46\xe3\xc5\xb3\x71\xe8\x34\x83\xd0\x0a\xba\x36\x53\x20\x74\xcc\x21\xd5\xe0\xe6\x51\x98\x71\xf8\xee\x5b\x1c\x4d\xcd\xda\xd0\xad\xd2\x0d\x74\x2a\x4d\xd1\x35\x5e\xaf\xd8\x74\xb5\xbd\xde\xbc\xd1\x98\x7a\x19\x55\x1b\x57\xe9\xd4\x0e\x2a\xbe\xfe\x82\x79\x8b\x88\xd2\xa9\xf3\x54\xe9\xd4\xb1\x9a\xfa\x89\xe2\x59\x50\xc7\xa0\xf0\x2d\x4b\x57\xa4\x53\x4b\x91\x5d\x96\x5d\xd2\x55\x35\xe9\x66\xe9\x74\x4d\xb7\xd2\xe9\x56\x25\x35\x04\x71\x29\xf2\x55\x3f\x2d\x45\x3a\xf9\xfa\xee\x8d\xc1\x59\x8c\x41\x25\xd5\x86\xaa\x0c\x54\xf3\xe5\x4f\x6a\xbc\x54\xbb\x8a\x1b\xc1\xbf\x6b\xde\xbe\x33\x76\x2f\xe7\x73\x3f\x3e\xf3\x55\xc3\x47\x84\x7f\x18\x1c\x8e\xfd\xed\xf3\xe9\xf4\x78\x72\x2f\x7e\xff\x0f\x00\x00\xff\xff\xb3\x28\x27\x75\x6a\x0d\x00\x00"); +func _ggcc ()(*asset ,error ){_fge ,_gbec :=_ddc ();if _gbec !=nil {return nil ,_gbec ;};_aage :=bindataFileInfo {_ee :"Adobe-GB1-4",_ffd :2711,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491274,0)};_edf :=&asset {_da :_fge ,_dc :_aage };return _edf ,nil ; +};func _efa ()([]byte ,error ){return _gb (_bdc ,"90ms-RKSJ-V")};func _fcb ()(*asset ,error ){_eef ,_cfcf :=_abdb ();if _cfcf !=nil {return nil ,_cfcf ;};_gff :=bindataFileInfo {_ee :"Adobe-KR-8",_ffd :2133,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491451,0)}; +_egae :=&asset {_da :_eef ,_dc :_gff };return _egae ,nil ;};func _adeg ()([]byte ,error ){return _gb (_acc ,"B5-V")};var _ffdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xcf\x2d\x39\x72\xe6\xb7\xaf\x4f\xf1\x2e\xc7\x8b\x71\x9f\xe4\x7f\x02\x85\x0b\x68\x24\xcd\xb8\x17\x9a\x31\xac\x91\x6d\xc0\xf0\xe2\x24\x83\x14\x0a\x70\x57\x15\xaa\xab\x17\xfa\xf6\x46\xfe\x7e\xa7\x65\x43\x36\x70\xb5\xe8\x7e\xea\xc6\x9b\x99\x87\xc9\x8c\x08\x06\x19\x0f\x83\x7f\xf8\xdb\x3f\xfe\xdd\x1f\x7f\xfe\xe9\xf7\xaf\x3f\xfc\xcf\xbf\xfd\xb2\xfe\x71\xff\xfe\x75\x7e\xfa\x39\x7e\xdb\x7f\xfe\xe5\x2f\xbf\xad\xfd\x75\xef\x7f\xfe\xe9\xe7\x1f\x7e\xb8\xd2\x57\xfc\xb4\x7e\xff\xeb\x3f\x81\xf5\xa7\xf7\xaf\x3f\xfc\xf0\xdc\xff\x8f\xff\xf2\xe7\xdf\xf7\x9f\xfe\xf8\xf3\xf9\xe5\x2b\x7b\x5d\xfc\xe5\xd7\xcf\xb5\x5f\x5f\x7f\xf8\x5f\xf6\x3f\xff\xf4\xe7\xdf\x7f\xfb\x97\xaf\xff\xf0\x37\xf1\xcb\xbd\xff\x87\xaf\xd8\xe7\x91\xff\xb7\xdf\x62\xff\xf6\xd3\xcf\xff\xfc\xf5\x1f\xfe\xcb\x7f\xba\xfe\x55\xfa\x8f\x7f\xf9\xf5\xd7\xff\x6b\xff\x69\xff\xfc\xfb\xd7\x85\x6c\xff\x1c\xe0\x0f\x7f\xf8\xdb\x7f\x78\xff\xfa\x5f\xdf\x7f\xda\x5f\x7f\xf8\x2f\xff\xe9\xbf\xff\xc7\xbf\xff\xa7\xbf\xfd\x8f\xff\x13\x7f\xe1\x0f\xff\xeb\xfe\xed\xcf\x3f\xfd\xf2\xf3\xd7\xf5\xfa\x1f\x5f\xaf\xf6\xff\xc8\xff\xfb\xbf\xfc\xba\x3f\x4f\xfa\xe1\x0f\xff\xf4\xc7\xbf\xfb\x6f\xe7\xfc\x79\xff\xfe\x55\xc6\xcb\x6b\xfe\xf7\x7f\xfa\xe3\xdf\x7d\xfd\x1f\xd7\xd7\xf5\xfa\x4a\x35\xf7\xd7\xff\xf9\xb9\xf4\x7f\xfb\x87\x5f\x62\x7f\x79\xd1\x0f\xc9\xb7\x59\xbf\xc4\xfe\xf3\xaf\xef\xb5\x7f\x7b\xff\xfc\xcf\xfb\x87\xaf\xaf\x1f\x5f\xaf\x6f\x5f\x5f\x5f\x3f\x8e\xd7\xb7\xe7\x5f\x7f\x73\xfd\xcd\xf5\xed\xeb\xc7\xff\xfc\xf7\xff\xf9\xef\xbf\x3d\xed\xfe\x37\xd7\xff\x70\xf9\x98\x9f\x7f\xf9\x3d\xf6\x51\xc6\x13\x7e\xbc\xce\xb7\xaf\xde\xaf\xf6\xdc\xf4\xff\xfe\xeb\x0f\xd7\xeb\xf5\xf9\xe9\x9f\xe2\x73\x43\x7a\x6e\x78\xfe\x8f\x1b\x7e\x4c\xcf\x2f\xf6\xfd\xed\x6b\x5c\xe5\x87\x1f\xdf\xd7\xfb\xf9\xf7\xfb\x3a\xfb\xdb\xd7\x6c\x3f\xfc\xf8\x4e\x37\x82\xb4\xd3\xb7\xaf\x6b\xbe\x1e\xc9\xae\x4a\xf6\xb7\xaf\x54\x90\x1c\xaf\x39\xeb\xdb\x57\xaa\x8f\x24\xfb\x98\xfc\x3c\x26\xb5\xf4\xc3\x8f\xef\xa2\xa4\x9c\xfc\xed\x2b\xd7\xe7\xc9\x55\x49\x3d\xed\xdb\x57\xc9\xf3\x87\x1f\xdf\x4d\x49\xbb\xc7\xb7\xaf\x9a\xea\x23\x59\x4a\x4e\xfd\xf6\x55\xcb\x73\x4d\xf7\x9a\xfe\xfc\xa1\xbd\x9e\x27\xf7\x50\xf2\x34\xa2\xe5\xe7\xae\xe1\x35\x63\xbd\xbe\x7d\xb5\x36\x1e\xc9\xa2\xcd\x63\xbf\xbf\x7d\xf5\xd7\xd3\xc2\xf9\x2e\x8f\x64\xee\xa7\xeb\xf2\x73\xcd\xdb\xbb\xde\xe7\x5f\x3b\xe3\x56\x72\x3f\xcf\x99\xaf\xf1\xc3\x8f\xf7\x0b\xc9\xfd\x7a\xf7\x6f\x5f\xf3\x79\xf7\xfb\xf5\x1e\x4a\x06\x3d\xda\x11\x4d\x45\xf3\xb9\xc8\xdb\xde\x4a\xde\x5c\xa4\xe8\x56\xb4\xbe\x7d\xcd\xea\x93\x42\xc9\xe6\xa2\x89\xe8\x20\x7a\x3a\x64\xd6\xf2\x48\x6e\x9f\xfd\x40\xef\xe9\x42\xe4\xc3\xef\xf3\x7c\xb2\xfa\x48\x9e\x06\x7f\xa0\xf7\x94\x10\xd9\xf0\x48\xdf\xbe\x66\x47\x12\x59\x49\xe6\xa2\x8c\xa8\x28\x2a\xdf\xbe\xe6\xe4\xd9\x51\x95\x54\x2e\xa2\x05\xd1\x14\x3d\x6f\x37\xbd\xcd\x06\x04\x6f\x97\x68\x41\xf8\x76\x0f\xcc\xc9\xfb\xc6\x52\xb2\xb8\xa8\x21\xf2\x85\x77\xfe\xf6\x75\xbd\x5e\xf4\xc1\xb6\x05\x0f\xf4\x9e\xe8\xcd\x6d\x13\xf6\xcd\x55\x3c\x6b\xfb\xac\x1d\x5c\xa5\x68\x2b\xda\xcf\x55\x7e\x86\x6d\xe7\xf1\x85\x7b\xe6\xf1\xc7\x8e\x39\x89\xab\xe8\xe2\x63\x37\x1c\xba\x21\xf3\xd2\xc7\x46\x3c\x8a\x79\xbd\xec\x99\xd3\x15\x75\xae\xa2\xff\x8e\x1f\xfe\x81\xeb\x65\x53\x8f\x1f\xe7\xf0\x71\xb2\x37\xda\x37\x87\x76\xa5\xe7\x17\x35\xb1\xfb\x7a\x14\xf0\x7a\xe5\x82\xa8\x2a\x6a\xdc\xa8\xa8\x2b\xea\xcf\x55\xa8\xda\xa5\xaa\x5d\xaa\x5a\x6e\x88\xa6\xa2\x37\x57\x25\x44\xb7\xa2\x9b\xab\x3a\x22\xfa\xeb\x7a\x4c\xf9\x7a\x95\xe7\x03\x5d\x77\x52\x94\xb8\x6a\x20\xca\x8a\xf8\x1c\x95\x67\xdd\x45\x11\x9f\x3f\xd3\xfa\xbb\x29\xa2\x73\xaa\xcf\xb2\xa9\xea\x64\xb9\x10\xf1\xda\xd7\xa3\x81\xd7\xab\x72\xa3\x1a\x08\xf4\x5e\x78\xc7\x65\x23\xd6\x7c\xae\x6a\x34\x75\x7d\x6e\x44\x97\x6c\xea\xf2\x85\x16\x5d\xd8\x79\xed\xc5\xa7\xbd\x02\x05\x2f\x88\xc2\xc7\x07\xef\x38\x68\x7d\xf8\xf8\xe0\x1d\x31\xc4\x4b\xa5\xbf\x82\xbe\x1f\x34\x42\x15\xbf\x54\xf1\x42\x53\x55\xf1\x2b\xf8\xc5\x41\xbb\xc2\x5f\xdc\xb4\x1e\x7b\xbd\xb6\x8f\x57\x7d\x27\x37\xaa\xbe\x97\xea\x5b\x33\x22\x1f\xbf\x9f\xfe\xba\x5e\xb4\x6b\xdb\x5f\x9b\xef\x88\x59\x5f\xdb\xef\xf8\xc0\x75\xbd\x78\xa1\x6d\x4f\xe0\xb2\x7a\x55\x64\x4f\x3c\x7a\x7f\x5d\x98\xc2\xa5\xde\x03\xbd\x57\x9a\xaa\xde\x5f\x8f\xae\x5f\xd7\xc5\x2f\x1e\x3b\xe7\xd8\x7a\x6e\x3c\xb6\xfe\xd1\xfb\xeb\xba\xe8\x68\xf5\xfe\x52\xc9\xfd\x68\x2a\xf9\xf5\x78\xf6\xeb\xc2\xdd\x5c\x27\x14\x61\x7c\x8d\x77\x3c\x36\x02\x25\xbf\x30\x85\xa4\x92\xa7\x47\xb1\xaf\x0b\x13\x4d\xef\xa6\x88\xc7\xb7\x82\x68\x28\x7a\x6c\xfb\x7a\x7c\xf7\x9d\xd4\x55\xa0\xf7\xd6\x10\xf1\x8b\xe9\x51\xc6\xeb\xc2\x14\xd2\x5d\x15\xf1\xd1\xd0\x9c\xa4\x62\xa6\xc7\x57\x5e\x17\xdf\x31\xe9\x2c\x93\x8a\xd9\x68\x84\x8a\x99\x16\xed\xe2\x0b\xa5\xe5\x8d\x0b\xe3\x6b\xdc\xb8\xba\x22\x3a\xda\x46\x2c\xde\x31\x05\xad\xef\x2f\xc6\xe7\xbf\x0e\xaa\xff\x7f\xe3\xec\x9d\xc2\x97\x0b\x1e\x32\xf8\xa9\xf8\x3c\x84\xaf\x35\x78\x13\x15\x0b\xb8\x18\x60\xef\xb4\xf1\x52\x40\xef\xe3\x42\x64\x77\x3e\x70\x5d\x33\x21\x4a\x8a\x70\x5c\x43\x51\x51\xc4\x77\x98\x74\xa7\xca\x90\x74\x82\x28\x7c\xd2\x09\x26\x9c\x60\x7a\xd1\x77\x3a\x41\x06\xf0\xde\x07\x37\xfa\x99\x13\xdf\x34\xa5\xa7\x5d\x0e\xea\x77\x7e\x63\x4f\x3c\x3e\xbf\xb3\xa2\xcc\x55\x05\x51\x51\x44\x47\xcd\x8e\x68\x28\x1a\x5c\x35\x11\x4d\x45\xcf\xa7\x19\xaf\x0b\xd1\x5b\xd1\xd3\x5f\x29\x2b\xda\x8a\x36\x57\x25\x44\xbc\x50\x46\x19\x12\x4e\x30\xab\x0c\x40\x1f\xaf\x8c\xa8\x29\xe2\x17\x8b\x22\x7f\xf1\xf6\x17\x69\xaa\xca\x90\x6f\x7e\xb1\xd0\xd4\xdb\x5f\xbc\xfd\x45\xde\xf1\xf6\x17\x1f\xc7\x75\x25\xfc\x62\xd6\x71\x01\x7d\x60\xae\x79\xd9\x13\x8b\x9e\xa8\x8a\xec\x89\x07\xfa\xa0\xa3\xf3\xb2\xa9\xa8\x5f\xc2\x10\xb3\xea\x07\xf4\xf1\x52\xd4\x15\x3d\x56\x97\x1a\x7d\xbf\x42\x51\x70\x15\x5d\xa8\x46\x02\x57\x6a\x3e\xfe\xd3\xd4\xe7\x6b\x8f\x8b\x1b\x83\xaf\x9d\xf1\x8b\x09\xed\xce\xfa\x45\xa0\x8f\x8b\x8e\xd6\x2f\xe6\xa0\xbf\x88\x0f\x72\xd8\x5f\x41\x7f\x5d\x8a\xec\xaf\x07\xae\xd4\x7d\xd6\xad\xe8\xe6\x2a\x3a\xda\x91\x1e\xb8\xd2\xf0\xf1\xb6\x3e\x68\xfd\x45\xdf\x6b\x0a\x99\xb8\x32\x61\x1d\x79\xdb\x08\x34\x7a\xe0\x92\xb2\x1a\x0d\x5c\x69\xf0\x8b\x3a\xd4\xbc\xe9\xaf\x8b\x8e\xd6\xa1\x02\x57\xc2\x3a\xf2\x56\xe5\xf0\xb1\x83\x88\x2b\xeb\x63\xf3\xa6\xf5\x93\x46\xe8\x50\xf3\x13\x4f\xf4\x71\xf9\x78\x9b\x8a\x0d\xa5\xe9\x8d\xf6\x2a\x36\x34\x70\x82\x59\x1b\x02\xae\xac\xfa\xea\x63\x81\x3e\x08\xba\xb2\x3e\x16\xb8\xb2\x8a\xa9\xa5\x01\x7d\x24\x45\xbe\xe3\x13\x35\x5c\x59\x95\x33\x6a\xc8\x87\x5e\xd5\xac\x8e\xbd\x8a\x3d\x66\x3a\xda\x90\xfa\x2e\xd8\xe3\x20\xa4\x2a\xda\x63\x21\xb6\xc8\xbc\x76\x31\xb6\x28\xc4\x16\x23\x29\xea\x8a\x9e\x9e\xc8\x34\xb5\x18\x35\x00\x7d\x10\x2c\x15\x3d\x71\x79\xf3\x8b\x78\xf5\xa2\xf1\x01\x7d\x60\xa2\xe5\xa6\x27\xca\xcd\x3b\x7e\x44\x36\xe2\x46\xef\x09\x96\x8a\x26\x5a\x9e\x48\xe1\xca\x58\x6d\xb9\x87\x22\xbe\x10\x31\x4f\xd1\x44\xcb\xcd\x2f\xe2\xe8\x8b\xc6\x07\xf4\xc1\x08\x51\x8c\x6e\x0b\xf6\x98\xb1\xda\xa2\x3d\x16\xed\xd1\xc7\x6b\x8f\xe5\x31\xab\x2b\x33\x60\x17\xcd\x0a\xe8\x23\x7b\xa3\x8d\x20\x02\xc9\xd5\xc7\xbf\x15\xbd\xb9\x8a\xfe\x32\x02\x29\xd8\x63\xae\x8a\x42\x11\x1a\x4d\x64\x54\xb4\x47\xe0\xca\x8d\x9e\xd0\x1e\x8b\xf6\xe8\x0b\x69\x8f\x25\xe8\x2f\x86\xcf\xa2\xf1\x95\xa0\xbf\x88\x9f\x8a\x41\x49\x09\xda\xc5\xc8\x55\x34\x3e\xa0\x8f\xe2\x8d\xb6\xeb\x81\x2b\x77\xba\x50\xe3\x03\xfa\x28\x8a\x6c\xea\xa6\xf5\xc4\x4f\x65\x7f\x44\xb4\x9e\x28\xab\x18\x48\x00\x57\x26\xae\x2f\xea\x7d\x51\xef\x89\xb2\x8a\x7a\x5f\x0e\xdf\x91\x21\xa0\x18\x22\x00\x7d\xf8\x39\x8c\x83\xcb\xa3\xc5\x57\xc1\xd5\x96\x63\x53\xd5\x68\x62\xb1\xa2\x46\x17\x34\xba\xe0\x1e\x9d\x12\xde\xf5\xd1\xe8\xab\xe0\xbf\xaa\x1a\x0d\xf4\xc1\xb0\x5e\x1d\x61\x80\xab\x5c\xf9\xfb\x43\x71\xd5\x06\x2a\x91\xf3\xa8\x3e\x77\x2a\xba\x79\xc8\x40\xb4\x14\xd1\x77\xc4\x65\xd5\xd0\x03\xb8\x0a\x96\x52\x1d\x93\xaa\x36\x80\xca\x54\x6d\x00\xb8\x4a\x52\xe4\x9b\x38\x26\x11\x97\x55\xc7\x24\xe0\x2a\x58\x4a\x35\x72\x06\xfa\x68\x3c\x5e\xb3\xa8\x8f\x29\x5c\x85\x39\x44\x75\x98\xaa\x37\xed\x6a\x8a\x6c\x17\xe3\x48\x41\x49\xab\xe3\x48\x75\x1c\x21\x66\xa9\x2a\x7c\x5d\x7c\x87\xe2\x55\xb7\x22\xbe\x03\x83\x46\x5d\xbe\xf6\xa3\xa4\x57\x21\x24\xaa\x2a\x29\xd0\x07\xea\x57\x8d\xaf\x2b\x7a\x5b\xaa\x22\x3f\x0d\x33\xc8\xc1\xd0\x52\x9d\x41\x56\x7c\x7f\xc1\x06\xaa\xea\x57\x83\xfe\xea\xf4\xbd\x01\x4e\xc5\xf7\x97\xce\x2f\xea\xfb\xab\xbe\xff\x23\xf2\x59\x9b\x77\xec\x34\x75\xfb\x8e\x9b\xfe\x42\xe1\xab\x8e\xbe\xa2\xdd\x85\xd1\xa6\xaa\xdd\x55\xed\x46\xe1\xab\xda\x5d\x0f\xcf\x22\xa2\x67\xdd\xe1\x01\x9f\xa5\xc8\x67\x11\xed\x96\xa9\xc8\x67\x1d\x9f\xc5\x3b\x9e\xcf\xb3\x1e\xbd\xad\x78\x75\x17\x2e\xee\x46\x18\x54\x51\xf8\xa6\x92\xb6\x37\x0a\x40\xa8\xd7\x0c\x80\x81\xab\x32\x86\x37\x3d\x31\xd0\x07\x41\x5c\x33\x58\x02\xae\xca\xe8\xdc\xd4\xd5\x66\xb0\x34\xfc\xc5\xb7\xa2\x37\x57\x29\xba\x15\xf1\x69\x87\x8d\x58\x8a\x68\x2a\x23\x6a\xd3\x85\xb7\x9b\x4f\x4b\xa8\xd7\xd4\xd5\x86\x0b\xaf\x84\x7a\x4d\x17\x0e\xf4\x41\x7f\x35\xe7\x82\x0d\xf5\xad\x8c\x5c\x4d\xf5\x6d\xaa\xef\x18\x88\x6c\x3d\x2e\xbc\x26\x6f\xf4\x17\x99\xf8\x0d\xc6\xf0\xa6\xbf\x6e\x04\x4b\x15\x4f\xdc\x0c\x96\x9a\xc1\x12\x63\x78\x33\x58\x02\xae\x8a\xf7\x6c\x2a\x79\x53\xc9\xf1\x52\x4d\x25\x6f\x38\xe7\x5a\xbc\x31\x14\xf1\xd1\x18\xe9\x9b\xce\x19\xb8\x58\x49\xba\x9b\xce\xb9\xa9\xe4\xf8\xb2\xa6\x92\x37\x94\xbc\x12\xea\x35\x95\xbc\xe9\x9c\xd1\x89\xa6\x73\x06\xae\x4a\xa8\xd7\x9c\x31\x02\x7d\x30\x17\x6c\x61\xbb\x08\xa9\x2a\x06\xd3\x0c\xa9\x80\x3e\x59\xf0\x68\x7a\x75\xe0\xaa\x18\x4c\xd3\xab\x03\x7d\xbe\x14\xf9\x1d\x1f\xbb\xb9\x2a\x1e\xa0\x39\x23\x00\xfa\x24\x34\x6e\xce\x08\xda\xe6\x17\xb1\xc7\x66\xcc\x03\xf4\xa9\xae\x3a\xaf\x6c\xac\xa7\x54\xf4\xbe\xed\xcf\xe3\x17\x57\xd1\x5f\xda\x10\x70\x55\xd5\x57\x1b\x6a\x0c\x07\x93\x38\xa5\x39\x1c\x00\x57\x55\x31\x0d\x83\x80\x3e\xf1\xea\xcd\x30\x88\x45\xbc\xab\xaa\x72\x1a\x1f\xd0\x5d\x5a\x6b\x2e\xb1\x34\xd6\x53\x2a\x13\xa1\xe6\x38\x02\xf4\xa9\xc1\x18\x19\x01\x57\x55\x01\x1c\x5a\x1a\x93\x97\x79\x79\xa3\xad\xd7\x44\xe7\xf3\x85\x5c\x37\xbc\x3b\xe3\xc8\x24\x9c\xed\x9a\x68\xc7\x1e\x1b\x1d\xdd\xb5\x47\xa0\x4f\x0c\xa6\x6b\x8f\x1d\x1b\x6a\x2f\x45\x68\x4e\xc7\x86\x26\x21\x68\xd7\x86\x3a\x36\xd4\x88\x70\xbb\x36\x04\xf4\xc9\x08\xd3\xb5\xa1\xfe\x8c\x0a\x57\x63\x95\xaa\x3b\x2a\xf4\xdb\x5f\x9c\x88\xfc\x45\x26\x2f\x8d\x78\xb3\x1b\x19\x01\x7d\x7e\x44\xf4\x44\x5f\xfc\x22\xf6\xd8\x8d\x79\x3a\x36\x34\x19\xad\xba\x36\xd4\x17\xcf\x22\xca\xea\xcb\x67\x2d\x9f\xa5\xe8\xf3\xac\x9b\xab\x68\x84\xa3\x02\xd0\x27\x63\x5a\xd7\xac\x3a\x36\xd4\x8a\x8f\xb7\x27\x08\x70\x66\x6a\xdf\x1f\x8a\xbb\x43\x0b\x70\x35\x42\x0f\x17\x70\x85\x3e\xf1\x19\xdd\x29\x4a\x0f\x3e\x4d\x51\xe4\xa7\x79\xec\xa9\x4f\xe2\xd8\xae\x3d\x75\xe2\x9f\xc6\x80\xdd\xb5\x14\xa0\x4f\xe2\xd8\xee\x00\xd4\x59\xcd\x69\xd5\x1b\x6d\xb6\xc6\xc3\x50\xdc\x35\x1e\xe0\x6a\x98\x58\x77\x4c\x02\xfa\xb4\xef\x1c\x93\x3a\x63\x52\x63\xb1\xb5\x3b\x26\x75\x66\x1a\x33\x2b\xb2\x5d\xcc\x34\x1a\x43\x5e\x77\xa6\xd1\x19\x93\x26\x03\x76\xd7\x9e\x80\xab\x75\x6f\xfc\xb4\x8b\xee\x24\x12\xec\x9a\x58\x67\x9d\xa6\x61\xae\xdd\x09\x03\xd0\xa7\xdf\xe1\xf8\x99\x89\xcb\xda\x50\xa4\x16\x11\x97\x4d\xe2\xc5\xae\x3d\x75\xcc\xa2\x8d\x47\x6f\x5d\x2a\xbf\x87\x36\x80\xdb\x1d\xda\xc0\x78\x7b\x63\x41\xc4\x8d\x03\xed\x66\xfd\xfc\x1e\x6a\xf7\xb8\x6d\x04\xcf\x32\xc8\x1f\x84\x2e\x1d\x13\x1b\x2a\x29\xd0\x5d\x0b\x1f\xf7\xad\xe8\xe6\x2a\x45\x4b\x11\x1f\x0d\xe7\x3c\x0c\x70\x80\xab\x27\x7f\x71\x2b\xa2\x73\x08\xe2\x86\x53\x81\x81\x0d\xb8\x86\x3d\xb4\x01\xa0\x4f\x5c\xf8\x70\x68\x21\x07\x70\xb9\xa8\x3c\x1c\x47\x06\x53\x81\x59\xbd\x71\x28\x7a\x2c\xc5\x85\xe0\xa1\xa5\x0c\x2d\x85\x50\x6f\x68\x29\x03\x1b\x70\x89\x77\x68\x03\x43\x1b\x60\x38\x18\x2a\xf9\x60\x1c\x71\xdd\x74\x38\x8e\x0c\x46\x88\x49\x40\x38\xd4\xe8\xc1\x08\xe1\x2a\xe6\x50\xa3\x07\x41\xfe\x64\x38\x18\x0e\x07\x83\x65\x46\x57\x1e\x87\x5a\x08\xf4\x89\xae\x0e\x67\xc5\x03\xdf\xdf\x9b\x57\xf9\x2c\x7d\x3f\xeb\x6d\x43\xdf\x0f\x5c\x1d\xf5\x1d\xfb\xf3\x78\x46\x9b\x8f\xc8\xcf\xc1\xb4\xd5\xc5\xb5\xe1\xb4\x15\xe8\x93\xe0\x72\xa8\x85\xc0\xd5\x51\xdf\xa1\x16\x0e\xbd\xfa\xe7\x46\xdf\x11\xc5\xec\x9d\xaf\xad\x62\x0e\x15\x93\x61\x6a\xa8\x98\x03\xc5\x74\x5d\x6c\xaa\x98\x93\xf5\xef\x8e\xae\x4e\x3d\xf1\x54\x31\xbb\x57\x4d\x45\xa8\x09\x23\xfd\x34\x3e\x07\xfa\xec\x17\x22\xbe\xd0\x24\x3e\x1f\xa8\xef\xd4\x5f\x03\xdd\x84\xc8\x74\x49\x1c\xb8\x5c\x46\x9a\x2a\xf9\xd4\x85\x77\x45\x45\x51\xe1\xaa\x8a\xa8\x2a\xaa\x5c\x45\x23\xf4\xea\x13\x17\xee\xd2\xcf\xd4\x85\x4f\x4d\xa1\x7b\x23\x7d\x3f\x51\x4c\x97\x58\xa6\x8a\x09\xf4\x89\xb9\x4f\x03\x9c\x49\x14\xef\x62\xc0\x5c\x9f\x1b\xf9\x68\xf4\xea\xd4\x5f\x4f\xa2\xf8\xc1\x1a\xdb\x54\x0b\x81\x3e\xbb\x22\x5f\xfb\xd1\xbc\xcb\x49\xf7\x74\x99\x72\xea\x57\xed\x7b\xb5\x70\x12\x94\x0c\x1c\xcc\x54\x0b\xa7\x41\x09\x61\xf6\xd4\xd5\x02\x97\x93\xc8\xa9\xab\x05\xfa\x1c\xde\xe8\xe7\xc0\xfb\x3a\x3d\x9c\x7a\x5f\xa0\x4f\xa2\x86\xe9\x8c\x00\xb8\x9c\xe5\x4d\x03\x9c\xa9\x8f\x26\x9c\x9d\xfa\x68\xe0\x1a\x95\x46\xe8\xa3\xa7\x3e\x9a\xd8\x62\x6a\x1d\x13\x1f\x3d\xaa\x8f\xb7\x57\x59\x33\x9a\x2a\x93\x6b\x46\x13\x83\x19\x55\x91\xaf\x6d\x18\x44\xd0\x3b\x0d\x83\x80\xcb\x09\xda\xd4\x6d\x03\xdd\x2c\xd9\xd4\x6d\x4f\xc2\xa0\x81\xa5\x4d\xc3\xa0\x69\x18\x84\x5f\x9d\x86\x41\xc0\xe5\xd4\x6b\x6a\x56\xf3\xa0\x39\x44\x33\xd3\xc8\x68\x62\x30\x43\xf5\xd5\x60\xa6\x06\x43\x34\x33\x35\x18\xe0\x72\x22\x34\x8d\x8c\x80\x3e\x67\xff\xfe\x50\x3c\x0d\x9c\x26\xd3\x1d\xe7\x49\xd3\xc0\x09\xe8\x26\xee\xa6\xd3\x1d\xe0\x72\x06\x64\xa6\xf4\x7e\x33\x68\x38\xb7\x79\x3b\x68\xbc\x0d\x9c\xa6\x57\x0d\x45\x68\x11\xdd\xf9\x76\x8a\x02\x0c\x33\x7e\x6f\xa7\x28\x6f\x06\x8d\x41\x77\xbe\x1d\x34\x80\xf1\x7a\x29\xf2\xc6\xc7\x93\x5f\x93\x05\xd7\xb7\x91\x0d\x30\x5e\x04\xc0\x6f\x8d\xe7\xcd\x5a\xe7\x24\xbc\x7a\x1b\x48\x00\xe3\x85\x51\xbf\xf5\xc4\x6f\x62\x0b\x43\x84\xb7\x9e\xf8\xfd\xd8\xc0\x78\x11\x00\xbf\xb5\x81\x37\x6e\x77\xb2\xa4\xf4\x56\xb1\x80\xf1\xb2\x11\xba\xdd\x37\x2b\x8f\x8e\x6f\x6f\x27\xa4\xc0\x78\x61\xfa\xef\xfd\x79\xd6\x33\xe4\x39\x26\xbd\xf5\xb1\xc0\x30\xab\xf9\x56\xd7\xde\xe8\x87\xe3\xc8\x5b\xfd\x00\xaa\xb1\xe7\x5b\xb7\xfb\x46\x3f\xf4\xfd\x6f\xf5\x03\x18\x2f\xc2\xe4\xb7\xfa\x41\x2e\xfb\x9a\x4c\xe0\x4d\x66\xdf\x37\x73\x54\xbd\xd4\x6d\x00\x0c\x8c\x17\x91\xf3\xed\x4a\x09\x70\xe9\x59\x6e\xa7\xad\xc0\x78\x31\x21\xbd\xfd\xda\x37\x73\x54\x7d\xc6\xad\x27\xbe\xdf\x7c\x34\x7c\xd9\xed\xd7\xbe\x9f\x2f\x7c\x69\xc1\xb7\xeb\x29\xf7\xe3\x9c\xc7\xeb\x52\x74\x14\x1d\xae\xe2\x17\x5d\x4f\x01\xc6\x8b\xf8\xfa\xd6\x5f\xdf\x38\xe7\xc9\xec\xe0\xd6\x39\x03\xc3\x94\xef\xad\x73\x06\x2e\xed\xe9\xd6\x39\xdf\x4f\x7c\x3d\x5e\x97\x8f\x1f\x8a\x68\xfd\xf4\x46\x5b\xaf\xca\x11\x5f\xdf\xaa\xdc\xfd\x78\xcf\xa4\xae\xde\x7a\x4f\x60\x98\x18\xbe\xd5\x2f\x20\xfd\x55\x64\xbb\x82\x5e\xc5\x5f\xdf\xce\x18\xef\xc7\x09\xa6\x17\x2b\xb5\xb7\x4e\xf0\xde\xb4\x4b\x91\x9a\x73\x3f\xa3\x73\x32\x4d\x7b\x3b\x3a\x03\xe3\x95\x15\xa1\x39\xf7\xa1\x5d\xb8\xca\x5b\x67\x03\x8c\x17\xba\x7a\xeb\x6c\xee\x47\x5b\x92\x69\xda\xdb\xd1\xf9\x3e\xfc\x22\x93\xee\x5b\xcd\xb9\x1f\x6d\x49\x2f\xc2\x8d\x5b\x37\x02\x0c\xf3\xce\xb7\x7e\xe2\x86\xde\xf1\xc2\xbd\xdd\xfa\x09\x60\xbc\x8a\x37\x6e\x45\xbc\x23\xee\x6d\xa9\x72\x40\x7a\xa1\x85\xeb\x9d\x14\x61\x8f\x0c\x2d\xcb\x15\xbe\xf5\xa6\xa9\x0c\xeb\x4b\x2d\x5c\xaa\x1c\xb1\xeb\x52\xe5\x80\xf4\x42\x7d\x97\x0e\x66\x3d\x9a\x37\xec\xaf\xe5\xb2\x08\x90\x5e\xdd\x46\xdc\x8a\xe8\xc2\xa2\x68\x29\xe2\x85\x70\x69\x4b\xc5\x04\xc6\xab\xd8\x54\x5e\x68\x3d\x0a\x94\x5e\x0c\x79\xcb\x61\x7d\xdd\x58\x1a\x7d\xbf\xd4\x9c\x75\xf3\x8b\x38\xfa\xa5\xe6\x00\xc3\x44\xfa\x32\xc2\x5d\x8b\x8f\xc6\x5a\xc3\x32\x1f\x0e\x8c\x17\xc3\xd4\x72\x59\x04\x48\x17\x8e\x6f\x19\xce\x02\xe3\xc5\x14\x67\x19\xce\xae\xc7\xf1\xa5\xeb\xe5\x8d\xb6\x6b\xf1\x69\xab\x8f\xb7\x73\x9e\xd8\x35\x5d\xb8\xa1\x65\xec\x0a\x8c\x57\x55\x64\x53\x1f\x48\x17\x1e\x60\xad\x4f\x53\xe9\x09\xa6\x4b\xcb\xc5\x93\xf5\xc4\x16\xe9\x62\xb1\x69\x19\x5b\x00\xe3\x45\xbc\xb9\xb4\x8e\xf5\xa8\x7f\xba\xb0\xda\xe5\x72\xe0\x0a\xbe\x23\xfa\xb5\x74\xb5\x40\xba\x98\xa3\x2e\x23\x90\xa5\xf7\x45\xbf\x96\xde\x77\x3d\x11\x48\xba\x92\x22\x9b\x1a\xf4\x2a\x81\xea\x32\x02\x01\x92\x79\xe7\x65\x04\x02\x8c\x57\xb3\x11\xb6\x1e\xe3\xbb\x88\x8c\x96\xc6\xb7\x36\x7d\xaf\xae\x1a\x5b\x00\xe9\x22\xb0\x5f\xc6\x16\x4b\x7f\xaf\x62\xea\xef\xd7\xa6\xf5\x58\xda\xd2\x6a\x97\xfe\x9e\x48\x72\xe9\xef\x81\x74\x95\x7f\x47\xae\x78\x19\x98\x2f\x87\x83\xee\xaf\xfb\x26\xd0\xac\x2e\xa6\x61\xcb\x38\x63\x1d\x94\x81\x01\x7b\x39\x1c\xac\x83\x32\x10\x12\x2d\x23\x88\x75\x78\x96\x7a\xab\xb9\x2e\x6c\xf3\xe2\x6b\x85\xb6\x09\xa4\x8b\xc8\x26\xb4\xcd\x78\xa3\x45\x78\xe2\xd0\xc4\x02\x7b\xba\x88\xd5\x43\x7b\x8a\x37\x8f\x27\xe4\x0e\x8d\x27\xde\x3c\xbe\x2b\xa2\xa9\x71\x63\xe7\xc4\x2c\xa1\xbf\x06\xd2\xc5\xa0\x11\xfa\x6b\x60\x5c\x2f\x45\x55\x11\x7d\x47\x08\x19\xc6\x03\xc0\xd0\x2c\x42\x13\x8b\x9b\x2f\x6f\x53\x9d\x31\xc6\x33\x3d\x1c\x12\x2d\xc2\xe9\x21\x90\x2e\x86\x83\xd0\xea\x62\xf9\x8b\x15\x91\xbf\xb8\xf8\xa6\xc4\x3c\xa1\xf1\xc4\xf2\x17\x79\x6d\x2d\x25\x1e\xb3\x48\x89\x10\x21\x34\x8b\x58\xfc\x22\x43\x5e\x68\x16\xf1\x28\x7c\x4a\xde\xa8\xc2\x03\xe3\x62\xc8\x0b\x15\x3e\x1e\x25\x4f\x89\x91\x2b\x5c\x07\x04\x86\x74\x8c\x50\xe1\xe3\xd1\xd5\x64\x06\x3e\x0c\x93\x03\xbd\xd5\xc4\x42\xbd\x0d\x06\x8d\x84\x0d\x84\x83\x06\x30\x2e\x86\xbc\x70\xd0\x88\x47\x73\x52\xc2\xf7\x87\x9a\x13\x44\x0d\x17\x0b\x4f\x61\xd4\x10\x38\x7a\x88\x7c\x77\xa8\x39\xc0\xd0\x10\x43\x47\x0f\xa4\x84\xb3\xd9\x2a\xd3\xc6\xab\x5f\x49\x51\x56\x54\xb8\x6a\x20\xaa\x8a\x2a\x57\x75\x44\x4d\xd1\xd3\xf7\x09\x07\xb1\x55\x39\x60\xc8\x1c\xd9\xc6\x16\x40\x4a\x38\x88\xad\xa3\x07\x86\x46\xbd\x55\xcc\x8d\x57\x4f\x98\xfe\x56\x31\x81\x71\x11\xea\x6d\xbd\xfa\x7e\x62\x8b\x64\x3e\x7c\x1b\x5b\x00\xe3\x62\xe6\xbf\x9d\x0b\xee\x9b\xd6\x63\x8f\x5b\xc5\xdc\x04\x12\x17\x59\xcd\x6d\x20\xb1\xd1\x55\xf3\xe1\x5b\x5d\xdd\xea\x2a\x03\xf6\x56\x57\xf7\xcd\x77\x44\xa3\xb7\x8a\x09\x0c\xdd\xc8\x56\x31\xf7\xa3\x79\x29\xa1\xd1\xdb\xe5\x07\x60\x5c\x7c\xb4\xad\x0b\xdf\xf8\xd8\x44\xe8\xb2\xf5\xb1\xc0\xb8\x58\x59\xda\x86\x1b\xfb\x51\xb3\x94\x5f\x8a\x7c\x56\xf8\x2c\x9a\x1a\x9f\x67\x3d\xfd\x65\x46\x79\xeb\x3d\x81\x21\xd3\x66\xeb\x3d\xf7\xa3\x72\x29\xa3\xab\x5b\x95\x03\xc6\xc5\xe0\xbf\x75\x95\xfb\x71\x95\xc9\x8c\xf2\xd6\x55\x02\xe3\x2a\x8a\xfc\xda\x0f\xa4\xac\x9a\x38\x0d\x03\xc6\xc5\x48\xbf\x75\xa8\x40\x32\xef\xbc\x75\xa8\xc0\xd0\x17\x6e\x3d\xe6\x7e\xbc\x64\xca\x2a\xc0\xfe\x34\x55\x02\xa7\x8f\xc7\x0d\x6d\xc2\xa0\xcc\x7c\x77\x1b\x06\x01\xe3\x62\xd5\x65\xeb\x31\x81\x94\x7d\x21\xd7\x2d\xb6\xd6\x41\xd4\xb0\xb5\x8e\xfd\x44\x46\x29\xdb\x08\x23\xa3\x8d\xab\x95\x73\xb4\x35\x98\x8d\x75\x64\x02\x89\xa3\x75\x1c\x4c\xc1\x54\xf4\xd1\x14\x8e\xa6\x80\xdb\x3e\x9a\xc2\x41\xc9\x4d\x45\x1f\x95\xfc\xa8\xe4\x04\x12\x47\x25\x3f\x28\x79\x6e\x3e\x2b\x14\xf1\xd1\x08\x24\x8e\x4a\x7e\x16\xbf\xc8\x24\xe1\xe8\xe5\x80\x71\x11\x48\x1c\xa3\x06\x20\x65\x26\x68\xc7\xb5\x06\x60\x5c\x36\x42\x5f\x78\x70\x7c\x99\xf4\xcd\x59\x9f\xc7\xd3\xd1\xcc\x54\x8e\x8b\x60\x87\x68\x39\xe3\xef\x8f\xf1\xc0\x61\xea\x75\x11\x6e\x1c\x43\xe3\x83\x62\x16\xfc\xfd\x51\x31\x8f\x8a\x09\xe9\xec\xa8\x98\x07\x95\x33\x31\x7c\x54\xb9\xc3\x50\xec\x00\x76\xd4\xaf\x83\x9a\x98\xc0\x3d\xaa\xc9\x51\x4d\x7c\xed\xfd\x79\xd6\xf3\xd1\x4a\xfa\x77\xe4\x8a\x8f\xde\xf3\xe8\x3d\x71\x36\x47\xef\x09\x24\xf3\xbb\xc7\xd1\x19\x18\x57\x53\x64\xaf\x3c\x91\x77\x2a\xe8\xed\x71\xfe\x06\x0c\x79\x64\x47\xb7\x0b\x24\xf3\xbb\x47\x8d\x3c\x6a\x64\xf3\x46\x3f\x0d\x1a\x59\x70\x23\x47\x8d\x04\xc6\x45\x30\x7d\x0c\xdf\x81\x54\xb2\x37\xda\x05\x84\xef\x0e\xd8\x47\x25\x3d\x68\x64\x79\x8c\x7a\x49\x63\x16\xc6\xd5\x2f\x44\x49\x11\xad\x7f\x8c\x67\xbd\x70\xe1\xc2\xb8\x9e\xc8\x66\xbd\x98\x31\x2e\xd8\xce\xa9\x3c\x66\xb1\x64\x3b\x0b\xe3\x7a\x5c\xe5\x92\xee\x2c\x24\x32\xca\x4b\xba\xb3\x30\x08\x11\x16\xd4\xe7\x07\x68\x57\xf5\x17\x0f\x22\x26\x7e\x57\x47\x74\xdb\xd4\x9b\x76\x35\x5a\x7f\xdb\xae\x27\x18\x1f\x57\xa7\x11\x64\x22\x85\x54\x9e\x8e\x5e\x90\xa6\x7f\x5c\x2f\x47\xfa\xc1\x3b\x62\x03\xeb\x45\xb4\x5b\x06\xcf\x5a\x36\x82\x68\xf7\x9a\xb4\x0b\xed\x5e\x10\xa3\x53\x79\x14\x7e\x49\x8c\x16\xc6\x35\x79\x7c\xf8\xac\x07\x52\xf9\x88\x9a\x22\xda\x35\x69\x57\xd8\x2e\xa2\xdd\xf2\xc4\x16\xeb\x15\xb6\x8b\x68\xf7\xfa\x88\xec\xc2\x90\x3f\x4f\xbb\xf0\xc4\xc2\xb8\xa6\x8d\xf8\xb4\xeb\x70\x15\x9d\x43\x3c\x20\x8c\xe4\x8d\xdb\xfe\xc2\x2c\xea\x8b\xc7\x6f\x1f\x8f\x59\xa4\x17\x3d\xb1\xfd\x42\x98\x45\xbd\x68\xea\xf6\x0b\x11\x82\xa6\x17\x5f\x7b\xdb\x08\x42\x50\x12\xc3\x4b\x52\xf5\x7a\x31\xd5\x24\x0c\x5a\xb0\xa9\x1f\xa8\x5c\x45\xbb\x8e\x3d\x81\x16\x42\x31\x5c\xaf\xe3\xe3\xd1\xc2\xfa\x78\xe2\x25\x11\x7a\x5d\x8f\x7e\xa5\xfa\x8c\x5c\xeb\x52\xbf\xe0\x43\x8f\xf4\x84\x54\x0b\x52\xf4\x03\xbc\xd0\x33\x42\x2c\x59\xcf\xeb\xc2\xe3\xa5\xcb\x67\x6d\x45\x3c\xfe\x71\xa8\xeb\x52\x99\x2e\x26\x6b\xe9\x09\x70\x16\x14\xe5\x07\xe8\xe8\xc6\xe3\x09\x1b\xd7\x75\x3f\xbe\x0c\x6e\xe2\xba\x6e\x6f\x7c\x46\xe4\x54\x1b\xed\x62\x66\x26\x0c\xb8\x89\xeb\x62\x66\xb6\x2e\xa6\x61\x15\xeb\xb8\x96\x4d\x7d\x60\xa4\xac\xa8\x2b\xa2\xf5\x4f\xc8\xbe\xa0\x3b\x7f\x60\xa4\xcc\x0b\x31\xac\xaf\x6b\xd1\xae\x4e\x23\x96\xed\x42\x31\x93\xfd\xa5\x62\xc2\x61\x4e\x64\x5b\xd7\xa5\x62\x02\x23\x3d\x7e\x62\xc9\x67\x5e\x17\x3e\x96\x3c\xea\xba\xd4\xaf\x8b\xa9\x13\x9c\xc9\x75\x31\x75\x5a\xd7\xa3\x5f\xa9\xa2\xab\x57\x7c\x1e\x4f\x4f\x64\x1a\x11\xf6\xc4\x33\xba\xa7\x86\x7e\x49\x71\x5e\xd0\x9a\x07\xdb\x3f\x16\xdc\xe6\x07\x06\x57\xf1\x2c\x55\xee\x52\xe5\x0a\x3d\xa1\xca\x01\xa9\x5d\x74\xa1\x2a\x77\xa9\x72\x7e\x5a\x55\x0e\x76\x72\x6a\x7e\xda\x63\x47\xe3\x44\x13\x9e\x49\xa6\xb2\x90\xc8\x90\xae\xeb\xf8\xda\xc7\x76\xf1\x8e\x6a\xe1\xc5\xea\x06\x19\xd2\x75\x1d\x1b\x41\x38\x0b\xe3\x73\x49\x5e\x16\x52\xe3\xd3\x4a\x5e\x16\x52\xe3\x3b\x26\xdd\x23\x84\xe5\x91\xaa\x57\x4d\x45\xbc\x10\x3d\x91\xf4\x72\x89\x25\x29\x82\xde\x05\x6b\xf9\x81\xc7\x03\x34\x6f\xd4\x33\x25\x15\xf3\xf1\xf7\x4b\xa6\xf2\x4a\x4f\xa8\x98\xda\x33\xa2\xae\xc4\x92\xc1\x4a\x37\x4d\x6d\x3e\x6b\x2b\xa2\xa9\xcd\x67\x1d\x45\xcf\x1c\x24\x75\x1a\x41\x70\x29\x24\x32\x99\x2b\x2d\x5f\x88\xb5\x86\x84\xbf\x4f\x6a\x74\x22\x44\x20\x93\xb9\x92\xee\x11\xf2\xf3\x80\x04\xba\xd2\xb2\xa9\x8b\x77\xfc\xdc\xe8\x3b\x32\xf3\x4f\xf8\xe8\x14\x3e\x3e\xe8\x2f\xfc\x6a\x0a\x1f\xcf\xe0\x0f\x09\x74\x25\x06\xff\x95\x82\x5f\x1c\xe9\xbb\x43\xf1\x4a\xaa\x72\x0a\xf4\x63\xd0\x20\xfd\x22\x90\xc8\x57\x2e\x49\xd5\x0b\x3e\xf4\x48\x28\x3c\xa4\xe8\x07\x2a\x57\xd1\x77\x2a\x69\x62\x9a\x9e\x26\xcd\x56\x49\x81\xd4\xf1\x65\x49\x25\x85\x41\x3d\xd2\xe7\x46\x7b\xf8\x81\xd4\x2f\x1e\x7f\xec\xe1\x07\x06\xbc\xce\xe5\x16\x28\x21\x91\xfb\x5c\x49\xbf\x98\xd0\xc8\xec\xe3\xd5\x48\x20\xb1\x59\x68\x25\x86\xf5\x95\x70\x95\xc4\xea\x2b\xe9\x2a\xa1\x5e\x27\xb6\xef\x2c\xa9\xd7\xc2\xc8\x97\xa2\xa4\x88\xd6\x3f\xe1\xc6\x92\x41\x2d\x0c\x22\xfa\x95\xd5\xc8\x4c\xbc\xc8\x9e\x91\x05\xc1\xfa\x03\x23\x63\x62\xf2\xac\x57\x66\x90\x25\x5f\xb9\xb2\x83\x2c\x30\xf2\x33\x21\x5d\x59\x55\x06\x7a\x63\xa4\x97\x7a\xbd\x60\x50\x27\x52\x98\x4b\x06\xb5\x30\xf2\xa5\x88\x2e\x84\x08\x9d\xd8\xca\xb0\x24\x42\x2f\x98\xce\x83\x69\xc5\xca\xea\x5a\x66\x74\x26\x39\xb9\xb2\xa3\x33\x30\x32\x03\x90\x44\x68\x21\xf5\xae\xc8\x5f\x24\x1c\xcd\x78\x03\x89\xd0\x2b\xa3\x6b\x1d\x55\xce\x2a\x53\x66\x74\xce\xf6\xaa\xa3\x33\xac\xe7\x44\xda\x71\xc9\x7a\x16\x46\x4e\x74\x4e\xd8\xab\x8c\xbb\x1d\xb7\x9b\x1d\x77\x81\xc1\x44\x66\x65\xc7\x5d\x98\xca\xa9\xa3\x85\x32\x95\x85\x91\x13\xaf\xad\x16\x42\x38\x4e\x50\xe8\x97\x84\x63\x61\x64\xbf\xe3\xf6\x85\x50\x39\x32\x91\x4b\xc2\xb1\x30\xf2\x33\x2b\x5e\x12\x8e\x17\xf4\xe1\x04\x09\x7d\x65\x9d\x60\x3e\xbe\x23\xdf\x51\xfd\xca\xc4\x88\x43\xcd\x39\xbe\xa3\x2a\x87\xc7\xcb\xaa\x1c\x24\xe3\x34\xfc\x68\xc7\x76\xe1\x2a\x73\xb6\x11\xb6\x0b\xc5\x84\x2e\xbd\xe4\x20\x2f\x58\xc0\x69\xf0\x85\xca\xfd\x11\xa1\xab\x8c\x5c\xb0\x83\x1f\x78\xec\x11\xe6\xed\x2a\x2c\xa5\x0a\x23\x33\x72\x15\x83\xb8\xc2\x88\x4a\xda\x71\x15\x47\x54\x60\xc0\x1b\x5e\xb2\x78\x17\xcc\xdd\x34\xf0\xb1\xc5\x11\x15\x18\xd9\xc7\x3b\xa2\xc2\xb6\x4d\x03\x57\x59\xf4\x52\xc0\xc8\x84\x1b\x45\x2f\x05\x24\x18\x8c\x4b\x32\xee\x2a\xaa\x49\x56\xe4\x2f\xa2\x26\x24\xdb\x56\x51\x4d\x8a\x6a\xc2\xc8\x25\x3f\x77\x15\x66\x2d\xf0\x09\x57\xd9\x3e\x1e\xcf\xc4\x8c\x71\x15\x3d\x53\x41\x4d\xc6\xe0\x85\x54\x93\xa2\x9a\x30\xbe\x15\xd5\xa4\x3c\xe3\x63\x82\x32\xb7\xa0\xef\x7e\x60\xe4\xe2\x8d\xa1\x08\x35\x21\x04\x95\x9f\xbb\x0a\xe1\x19\xdc\xe8\x55\x74\x43\x6c\xbc\x4c\xd0\xc9\x56\x71\xf8\x04\x46\x2e\x3c\x5e\xcd\x01\x12\x14\xb0\x55\x74\x56\x10\x7b\x07\xd3\xd6\x25\xb1\x77\x41\xec\x4d\xd0\xb6\x96\xc4\xde\x05\x99\x77\x64\x62\xfd\xa2\xe6\x00\x09\xaa\xd5\x2a\x6a\x0e\x30\x98\xdc\x2e\xb9\xbe\x0b\xae\xef\x60\x47\xe8\x92\xeb\xbb\x20\xf6\x26\x78\x55\x4b\xe6\xee\x82\xad\x3b\xa0\x5e\xaf\xaa\x97\x83\x6d\x9b\x26\xc3\xba\x6c\x5b\x61\x30\xdf\x5d\x55\x95\xab\xac\xe0\x40\xf1\x59\x55\x67\x05\x8c\xfc\xcc\xec\x96\x9c\x5c\x21\x41\xde\x59\x72\x72\x17\x04\xdc\x91\x9b\xa2\xcf\x2f\xf2\xda\xe8\x44\x65\x51\x47\x18\x10\xb4\x57\x75\xc0\x06\x12\xe4\x9d\x25\x4d\x57\x18\xb9\x79\x23\x3d\x01\x01\x37\x41\xcb\x59\x12\x70\x85\x91\x71\x69\x55\x2f\x07\xdb\x36\x4d\x5f\x5b\xc5\x04\x46\x66\x28\x96\x6d\xbb\x2a\x2a\x37\x6d\xaa\x2a\x57\x55\x39\x1c\x9f\xd4\xda\x05\x77\x36\x91\xac\x5b\x10\x68\x3f\x30\x72\xff\xfe\xac\x78\x49\xb3\x5d\x55\x2d\x1a\xfc\x94\x5a\x54\xd5\x22\xcc\xa2\xaa\x45\x50\x63\x13\xe9\xe3\x25\x35\x76\xc1\x44\xcd\x24\x3a\x57\x73\x00\x82\x95\x3a\x32\x11\x84\xac\xd4\x05\xc7\x34\xbf\x70\xce\xcd\xaf\xd5\x74\x10\xd8\x93\x7c\xd3\xd5\x9e\xef\x90\x5f\xf9\x85\xe8\x56\xc4\x77\x20\x72\x6e\x7e\x87\xf6\x74\x7a\x26\x67\xb6\x9a\x9d\xde\x1c\x93\x86\x37\x7e\x7e\xf1\x70\x15\xed\x32\x70\x02\x46\x26\x66\x71\xff\xf1\x82\xaf\x9a\xc9\x86\xad\x66\xdc\x0f\x51\x75\x64\x82\x12\x89\xaa\xab\x2d\xda\x85\x9d\x37\xa3\x24\x28\xa8\x23\x0f\x45\x36\x22\x78\x16\x96\x22\xb9\x54\x18\xac\xc0\xac\xe6\x37\x85\x49\x9a\xd9\x39\xb9\x64\x92\x0a\x23\x0f\x9a\xea\x24\x12\x5e\x67\x7e\xa1\xf0\xf2\x3a\x17\xbc\xce\xc1\x3a\xcd\x92\xd7\xb9\x20\x6e\xe6\xd7\xf0\x2a\x5f\xfb\x81\x91\x27\xef\xa8\xcf\x00\xf2\xcb\x46\x38\xb4\x34\xdd\x08\x51\x96\x24\xce\xd5\xd8\xbf\xfd\xf2\xf1\x2a\x40\x53\x01\x26\x8f\x57\x01\xe0\x72\xe6\xd7\xe7\x46\x9b\xaa\x1b\x61\x86\x2d\xaf\x73\xc1\xd8\xcc\x24\x07\x96\x8c\x4d\x61\xb0\xb1\x60\x35\x7d\x06\x90\x59\xf6\x5f\x92\x38\x57\x7f\x7c\x46\x66\x8d\x7f\x75\x7d\x06\x30\x58\x78\x5a\xf2\x3a\x85\xcc\x1a\xff\xea\xba\x11\xa8\x9e\x23\x33\xdd\x91\xea\x29\x64\x36\x53\x2e\xa9\x9e\xab\xeb\x6c\x98\x74\x77\x9d\x0d\x90\xaf\xcb\x46\xdc\x8a\x9e\x8e\x2e\x9f\x76\x2d\x45\xc1\x55\x19\xd1\x56\x74\xb8\x8a\xa6\x92\xd6\x5e\x70\x44\xf3\x45\xcc\x23\x47\x74\x41\x08\x1d\xec\x94\x58\x12\x42\x17\xec\xcf\x7c\xe1\xde\x64\x7f\x2e\x18\x9f\x83\x05\xb1\xd5\xd5\xfb\xfe\xe8\x7a\x66\x95\x7c\x75\x9d\x4d\x47\xc9\xcb\x8b\xd6\xab\xe4\x40\x66\xcd\x7a\x75\x95\x1c\x18\xc5\x17\x52\xc9\x81\x7c\x31\x60\x77\x67\x07\xc0\x28\x97\x37\xda\xd4\x45\xaf\x32\x14\x4b\x2e\x15\x46\xf1\xb5\x1d\xb0\x81\xcc\x3a\xf3\xea\x0e\xd8\x50\x50\x47\xb9\x7c\xbc\x2f\xf4\x18\x49\x66\x6d\x78\xc9\x37\x15\x46\xb9\x7c\xbc\x2f\xb4\x50\x80\xa2\xc8\x17\x22\xe5\x52\xec\xc2\xf0\x85\x1e\x1b\xca\xac\xc1\xae\xae\x0d\xf5\xb0\x5d\x74\x8e\x6b\x33\x40\x66\x61\x73\x49\x28\x15\x46\x21\x74\xe9\x9a\x15\x8c\xd1\xcc\x92\xe5\xea\xce\x2e\x80\x51\x08\x2e\x65\x8f\xae\xfe\x44\x7f\x99\x15\xc2\xd5\x8d\xfe\xa0\x8a\x0e\xf6\x89\x2c\xa9\xa2\x0b\x2e\x68\x66\x25\x6e\x75\x4d\x14\xc6\xe7\x60\x1d\x71\xc9\xf8\x5c\xfd\xd0\x2e\x3c\x53\x37\x62\x83\xb8\x39\x4a\x56\x64\x7f\x1d\xb4\x70\x2a\x52\x01\x0e\x5a\xe8\xa7\x3d\x76\x21\x66\x45\xba\x6b\x75\xcd\x0a\x18\xac\x36\xae\xae\x59\x75\xcd\x0a\x4b\x93\x04\xba\x86\x66\x85\x0d\x0d\xcd\x0a\x18\x05\x9d\x18\x9a\x15\x54\xd1\xec\x92\x94\x54\xd1\x05\x55\x74\xb0\x4c\xb9\xa4\x8a\xae\xf1\xe8\x7d\x76\x81\x68\xa8\xf7\xc0\x60\x99\x72\x0d\x07\x6c\xd8\xa3\xd9\x75\x1e\xd9\xa3\xc2\x60\x4b\xcb\x1a\x9a\x02\x90\xc9\x93\xad\xe1\x10\x00\x0c\xaa\x46\xac\xe1\x74\x1a\x12\x68\x76\x9d\x47\x12\xe8\x82\xe5\x39\x5c\xf2\x1c\x6a\x21\x90\x5d\x4f\x91\xf1\x29\x8c\x52\x14\xd9\xfa\x47\x0b\xb3\x2b\x25\x43\x2d\x04\x86\x0b\xa3\x43\x4f\x0e\xe4\xc4\x48\x2f\x09\x54\x18\x05\x5d\x95\x04\xba\xc6\x13\x6f\x66\x57\x37\x86\xf1\x26\x30\x5c\x3e\x95\x17\xba\x20\x81\xe6\x54\xbe\xcf\xa0\x5e\x72\x44\x85\xc1\xae\x9e\x35\x8c\x3d\x07\x7a\x9b\xaa\x3f\x65\x1b\xd5\x5b\xcc\x62\xa8\xb7\xd0\x3b\xb3\xab\x13\xc3\x10\x12\x18\x85\x18\x6f\x38\xf9\x18\x0c\x07\xa4\xbe\xd6\x70\x38\x80\xfd\x39\x0a\x6b\x18\xb2\x3f\x17\x54\xcf\x4c\xea\x6b\x49\xf5\x5c\x43\xbd\xad\x74\xa7\x7a\x0b\xe4\x34\x14\xd9\x54\x26\x1f\x85\xb0\x6f\xa8\xca\x40\x4e\x43\xd1\x52\x84\x37\xc0\x10\x87\xaa\x0c\x47\x34\x93\x20\x5b\x72\x44\x85\xc1\x9e\xa4\x35\x9d\x15\x53\xdd\x23\x27\xc6\xb7\xa9\xef\x07\x46\x61\x44\x9d\xae\x29\x02\xd9\xc5\x80\xa9\x2a\x4f\x55\x99\x75\x66\xc9\xa5\x6b\xbe\x69\xd7\xf4\xf1\x4b\x11\xed\x62\x01\x71\x1a\xcd\x40\x2e\xcd\x19\x47\x2f\xb9\x54\x18\x85\xd1\x59\x72\xe9\x82\x49\x9a\x33\x2e\x5c\x26\xa9\x30\x0a\x6e\x44\x26\xe9\x9a\x8f\x76\xe7\xcc\x5a\xc3\x54\xbb\x61\x8f\x8e\x42\x8c\x37\x0d\x47\xe7\xe2\x17\x99\x9a\x4f\x5d\xf8\xd4\x5f\xb3\xa4\x34\xb5\x01\x20\x3b\x93\x9d\xcb\x5f\x5c\xfe\x22\x3d\xa1\x0b\x9f\x8f\x0d\x64\xe7\xa8\x53\x1b\x00\x46\x21\x1c\x9d\xeb\xf3\x8b\x8f\xff\x71\xc6\x28\x05\x55\x18\xa5\x2b\xb2\x73\x30\x1e\x67\x8c\x53\xe3\x99\x1a\x0f\xe1\xe8\xd4\x78\xe6\xe3\xa3\xb3\x13\xbf\xe9\xd4\x7c\xea\xaf\x51\xb9\xa9\xbf\x86\x6f\x9a\x9d\x60\xc9\x37\x15\x46\x21\xde\x94\x6f\x2a\x64\xa7\x28\xf2\x4d\x85\x51\xba\x8f\x47\xef\x21\x97\xe6\x5c\x69\x84\xfe\x1a\x18\x85\x65\x59\xc9\xa5\x42\x76\x8a\x22\xb9\x54\x18\xec\x40\x5b\x92\x4b\x85\x9c\xab\x22\x5b\xbf\x6d\x3d\x6a\xe2\xfc\x0d\x8e\x69\xce\xaa\x9c\x01\x34\x30\x4a\x57\x64\x47\x3f\x43\x40\xce\x2a\x93\xb1\x18\x30\xcc\x50\xc8\x24\x5d\xd0\x46\xb3\xb3\x03\x69\xa3\x6b\x12\x78\xb1\xe7\x6d\x4d\x03\x2f\x20\x1b\x8c\xcb\x24\x15\x46\x21\xfa\x9b\x9a\x28\x90\xb3\xaf\x6d\x78\x06\x93\x74\x94\xe1\x8d\x7e\xed\x43\xaf\xda\x54\x07\x0d\x60\x14\x4c\x54\x12\xe8\x7a\xbf\xd1\x2f\x6e\x7c\x3b\x42\xc0\x0b\x1d\xec\xb2\x5b\xf2\x42\x85\x9c\x19\xb9\xe4\x85\x0a\xa3\x7c\x44\x53\xd1\xe4\xaa\x84\xe8\xad\x08\xfd\xc2\x90\xa5\x8a\xae\xb7\x96\x86\xd5\xbe\xb5\xb4\xb7\x96\xc6\x90\xf7\xd6\xd2\xde\x58\x9a\xe1\xd9\x5b\x4b\x7b\x33\x95\x28\x84\xa0\x6f\xc7\x11\x38\xa6\xb9\xb0\x78\x22\xc7\x54\x18\xec\xfe\x5b\x6f\xa7\x12\x70\x4c\xb3\xc1\x92\x1c\x53\x61\x98\xd1\x79\x3b\xb4\xbc\x1f\x83\xc9\x0e\xfe\x6f\x0d\x06\x18\x85\xb1\xf2\xad\xc1\xbc\xb1\x8e\x82\xa5\xbd\xb5\x8e\x37\x0b\x57\xe6\x7d\xde\x8e\x23\xf0\x55\xb3\x83\xbf\x7c\xd5\xf5\x66\x8d\xbf\xe2\x60\xde\x1a\x0c\x7c\xd5\x5c\x18\xa6\xe4\xab\x0a\x83\x2d\x88\xeb\xed\xa8\xf0\xc6\x3a\x0a\xc3\xd4\x5b\xeb\x00\x86\x39\xa4\x77\x7c\x7e\xf1\x70\x15\xcf\x72\x79\x0b\x18\xd5\xce\xd1\x60\xa0\xc3\x66\x07\x1d\xe9\xb0\xc2\xa8\xb8\x34\xe9\xb0\x0b\xee\x6b\x2e\x58\x9a\xdc\xd7\xf5\x7e\x42\x9f\x61\x3e\xea\xed\xb2\x3f\xac\xd6\xac\xdb\x96\xd5\xba\xde\xac\x95\x56\x1c\xdf\x5b\xf5\x05\xb2\xce\xea\xad\xfa\x02\xa3\x12\x35\xc8\x7d\x5d\xf0\x5d\xb3\x6e\xe8\xad\xfa\x02\x83\xad\x91\xeb\x7d\x3e\xbf\x48\xdf\x63\x1d\x6f\x87\x13\x60\xd4\x4b\x91\x9d\xc3\x08\xf3\x98\xfb\x77\x87\x62\x39\xb5\x0b\x6a\x6c\xd6\xf4\xa5\xc6\x0a\x83\x2d\x97\xeb\x56\xe1\xa1\xc6\xe6\x32\x14\xdd\x8a\x6e\xae\x6a\x88\x96\x22\xda\xc8\x04\x4b\xb6\xac\x30\xcc\xd2\xdd\x4e\x2b\xe0\xc1\x66\xcd\x42\x1e\xac\x30\x2a\xd1\xae\x3c\x58\x21\xab\xca\xf2\x60\xd7\x8d\x0d\x54\xa2\xa4\x5b\x1b\x00\xb2\xea\x27\x35\x56\x18\x35\xf9\xf8\xa9\x68\x73\x55\x42\x74\x14\x1d\xae\x42\xe4\xb4\xe2\x26\xee\x67\x6f\xeb\xba\x35\x0b\x60\xb0\x61\x74\xdd\x46\x5c\x40\xfe\xbc\x90\xa3\xcd\x4d\xdc\x5f\x19\xa6\x6e\xcd\xe2\x26\xbc\xfa\xeb\xe3\xfd\x45\x92\x0e\x95\xe9\x8e\x64\xdc\x05\xf3\x36\x57\xec\x49\xe6\xad\x30\x2a\xc6\x73\x3b\x15\x00\x72\x65\x45\x54\x32\xae\x30\x2a\x83\xd9\xed\x68\x03\x3f\x37\xff\x55\xe4\x2f\x6a\x03\xc4\xd7\xb7\x36\x70\x63\x03\xec\x34\x5d\xb7\x36\x70\x6b\x03\x44\x95\xb7\x36\x00\xe4\x8a\x3d\xdd\x0e\x07\x72\x7d\x2b\x43\x9e\x5c\xdf\x75\x33\x3b\x60\x3f\xea\xba\x9d\x1d\xdc\x5a\x0a\x61\xb2\xf4\xdf\x75\x33\x81\x67\x3f\xea\xba\x9d\x30\x40\xff\x1d\x26\x4d\xa5\xff\x2e\xb8\xbe\x99\x9d\xa6\x4b\xae\xef\xba\xf1\xfd\x6c\x9d\x5d\xb7\xc6\x03\xe4\x4a\xb8\x21\xfd\x57\x18\x9f\x17\x32\x62\x83\xc5\x9b\x2b\x89\x74\x59\xbc\x4b\xca\xae\x09\x58\x29\xbb\x0b\x32\x6e\xae\xd8\x93\x64\x5c\x61\x54\xc2\xe4\xa5\x57\x87\x79\x9b\xd9\x43\xba\x64\xde\x0a\xc3\xce\x91\x79\xbb\x60\xdb\xe6\x3a\x7c\x16\xef\xb8\xd4\x68\xc2\xe4\xa5\x46\x43\xc0\xcd\x15\xbd\x5f\xaa\xaf\x64\x5c\x3b\x47\x32\xee\x5a\x2c\xfd\xb0\xef\x73\x2d\x97\x7e\x80\x51\x89\x4a\xd7\xfd\x79\xfc\xe3\xf1\xa8\x21\xb7\x96\xea\x0b\x8c\xca\xe0\x2f\x3f\x77\x41\x8d\xcd\x0d\x87\x2a\x35\x56\x18\x6c\xfc\x5d\x4b\x5d\x05\x72\xbb\x14\xf9\x8b\x7a\x75\x42\x84\xa5\xfa\x02\xb9\x61\xa2\x12\x68\x85\xe1\x47\x93\x40\xbb\xd6\xa3\x98\xb9\x31\x21\x5d\x2a\xa6\x04\xda\x4a\x20\x21\x81\x76\xc1\x90\xcd\x0d\xbd\x5f\x3a\x7a\x60\xd4\xe6\x8d\xb7\x22\x5a\x9f\x15\xd9\x7a\xe2\x27\xb6\x1a\x2f\xd9\xb2\x0b\x3a\x6c\x36\xd1\xb9\xf4\xfd\x4b\xbd\x6f\x8a\x6c\xd7\x03\xb9\x31\xda\xc8\x96\x15\x06\x1b\x92\x97\x6c\xd9\x05\x5b\x36\x37\x14\x53\xb6\xac\x30\x54\xb9\xa5\x29\x40\x5b\xcd\x8d\x31\x69\xa9\xab\x4b\xdf\x4f\x84\x2b\x85\x75\xad\x47\x31\x73\xb3\x0b\x55\xcc\xa5\x57\x57\x31\xf5\xea\x40\x6e\x36\xd5\x79\x03\x44\xd7\x61\xea\x5e\xa2\xeb\x82\xaf\x9a\x1b\x37\xca\x57\x15\x46\x65\xd0\x08\xfd\x2a\x7c\xd5\xdc\x88\x79\xe4\xab\x0a\xc3\x04\xbf\x7c\xd5\x15\x68\x61\xc3\x93\x87\x5a\x08\x8c\x4a\xec\x1a\x3a\x51\x38\xaa\xb9\x0d\x9f\xb5\x14\xd1\xf7\x18\x8c\x7c\xd5\x15\xf8\xd5\x36\x15\x1d\x45\xf8\x55\x62\x57\x29\xac\x0b\xbe\x6a\x6e\x78\x72\xf9\xaa\xc2\x90\x52\x10\x06\x25\x40\xee\x24\x8c\x42\xef\x1b\x7a\xdf\xee\x8d\xb6\x8b\x09\x69\x67\xf0\x0f\x27\xa4\xc0\xa8\x0c\x60\xa1\x13\x05\x32\x25\x22\x57\xe8\x44\x43\x2d\xb4\x73\xd4\xc2\x78\x94\x29\xb3\x3f\x73\x85\xca\x04\x8c\xca\xc2\x68\x18\x6e\x40\x61\xcd\xe6\x28\xa5\xb0\x0a\x43\x12\x43\xa8\x5f\x81\x5f\xa5\x50\xdf\x0a\xfd\x6a\xa8\x39\xa3\x7c\x7f\x28\x0e\x15\x0b\xc8\x1d\x1f\x1b\xae\x72\x87\x6e\x97\xa0\x35\x74\xbb\x71\xe8\x02\x7c\x6c\xb8\xb0\x09\x8c\x3a\x14\xd9\x05\xb8\x4a\x0a\xc7\xad\x38\x9f\x1b\x71\x36\x43\xd1\x54\xf4\x7c\x40\xca\xb8\x2d\x79\xb0\x0b\xee\x6b\x66\x17\xe6\xda\xc6\xc4\x92\x5e\x2b\xca\x20\xe9\x55\xc8\x26\x3a\xb7\x51\xc3\x36\x6a\xc0\xbd\xc9\x83\x5d\x90\x5e\x33\xbb\x30\x97\xa4\xd7\x25\x9d\xb5\x12\x26\x4b\x67\x5d\x9b\xe5\x96\x8e\xfa\x6d\x97\x5b\xa4\xb3\xea\x04\xa5\xb3\x0a\xb9\xa3\x0c\x5b\xed\xde\x6a\x37\x71\xec\x56\xbb\x37\x6b\x8a\x9d\xcf\xbc\x55\x52\x60\xd4\xa9\xc8\x5f\xc4\x7b\x76\x5f\x48\x25\x95\xce\x2a\x4d\x44\x3a\xeb\xda\xe8\x6d\xb7\xa9\xea\xed\x26\x72\x66\xbb\xfd\xda\x2a\x29\x90\xbb\x8d\x50\x49\x81\xd1\x50\x65\x79\xb0\x42\x1e\x9f\xc7\xdb\x13\xc4\xd7\x3a\xe7\x6d\x7c\xbd\xf1\xc4\xd4\x0a\x5b\x5b\x4f\xbc\xc9\xf8\xb1\x7d\x6a\x6d\x15\x7e\x3f\xea\x9b\xa9\xa3\xb5\xb6\x8b\x7e\xd0\x61\x47\xfb\x88\x7c\x16\xde\x93\xea\x51\x6b\xeb\x3d\x81\xd1\x88\x3d\x65\xcb\x0a\xd9\xdc\xa7\x6c\xd9\xb5\x1f\x85\x1f\x8d\xd8\x73\xab\xf0\xf0\x55\x33\x15\x9f\xd6\x76\x58\x07\x46\x23\x46\xdc\x2e\xd5\x03\x99\x3a\x47\x6b\xbb\x36\x03\x0c\x87\x16\x19\xae\x6b\xb3\x36\x63\x1e\x75\x3b\xf8\x03\x83\x92\x02\x6b\xab\xd1\x40\xa6\x9e\xd0\xda\x6a\x34\x30\x1c\x80\xb6\x21\x37\xdc\xd5\x4c\x3d\xa1\x25\x77\x75\xc1\x5d\x1d\x8d\x18\x51\xee\xea\x82\x5c\x9a\xa9\x89\xb3\x24\x97\x0a\x43\xf2\xcd\x71\xc0\x06\x32\xf5\x62\xd6\x51\x0b\x81\xd1\x08\xe2\x8e\x93\xb5\x83\x16\x52\x09\x66\x1d\xb5\x10\x18\x52\x74\x8e\x5a\x78\xf0\xb1\x54\x82\x59\x47\x1f\x7b\x18\xe9\x1b\x31\xe2\x71\xa4\x07\xf2\xe8\xfe\xe2\x5b\x11\xdf\x91\x81\xf1\x38\xa5\x3b\x68\x34\x1b\x15\xd7\x51\xa3\x81\xd1\x70\x49\x47\x8d\x06\x32\xe5\x55\xd6\xd1\x13\x1f\x08\x33\x8d\x78\xf3\xb8\x24\x0e\xa7\x36\xb3\x9d\x71\xc9\xa9\x15\x86\xd4\x21\x39\xb5\x42\x66\x3b\xe3\x92\x53\x2b\x0c\x07\x59\x39\xb5\xeb\xa8\xd1\x4c\x5b\x8f\x1a\x7d\x58\x4f\x69\x59\xd1\x52\x44\xeb\xa7\xbf\x68\xeb\x89\x2d\x28\x76\xbb\x64\xde\x0a\x99\xa2\x22\xeb\x18\x5b\x00\xa3\xa1\x26\x92\x71\x17\x04\xdc\x4c\xb9\x90\x75\xf4\xea\x90\x71\x87\x03\xb6\x64\x5c\x21\x53\x4a\x63\x49\xc6\x15\x46\x43\x4d\x8e\xd6\x01\x64\xf3\xbb\x47\xeb\x38\x5a\x07\x4b\xa9\x47\xeb\x38\xc4\xd4\xf3\x52\x64\x53\xb5\x0e\x62\xc4\xa3\x75\xc0\xf5\xcd\x6c\xd9\x5c\x72\x7d\x85\xd1\x88\x11\x8f\xb1\xc5\xc1\xb9\x4f\x2c\xed\xe8\xdc\x81\x41\x85\x88\x75\x74\xee\xd0\x7f\x33\x25\x2b\x96\xf4\x5f\x61\x34\x3c\xb9\xfc\x5e\x21\x4f\x3f\xad\xc6\x07\x8c\x46\x30\x2e\xbf\x57\xc8\x6c\x12\x5d\xf2\x7b\x85\xd1\xaa\x22\x5f\x88\x99\xec\xf4\xd3\x6a\x56\xc0\x90\xef\x25\xbf\x77\x41\xd3\xcd\xd3\x8e\x76\xec\x90\xa6\xdb\xaa\x37\xda\x2e\x56\x5d\xa6\x5d\xe8\x84\xf4\x68\x8f\x8f\xf1\x85\xcc\xdd\x80\x87\x9b\xd9\x70\x1a\x2f\xd6\x37\x85\xd1\x9e\xd8\x35\x5e\x8c\x30\x01\xc3\x36\x53\xde\x20\xac\x2e\x1c\x2f\xad\xf6\x89\x5d\x43\xb6\x6d\xc0\xb0\xcd\xf3\x89\x9f\x02\x9a\xed\x03\xb6\x9e\xc7\xdf\x3e\x1e\x4b\x9b\x6d\x7c\x77\x28\x0e\x0b\x12\xc7\x8b\x85\x14\x68\x6a\xf1\x22\xfe\x89\x17\x26\xc6\xe6\xf7\xa0\x5e\xf1\x07\x06\x34\xb5\xb0\x6e\x71\x40\xd3\xcd\x6c\x58\x8f\xd7\xf2\x4d\x1c\x34\x1a\x5d\x80\x3d\xc5\x8b\xc5\x48\x36\x73\x07\x8c\xde\x0f\x0c\xc8\x6c\x21\xb1\x37\x5e\x2a\xd6\xa4\x11\xdb\x97\x53\xb1\x1a\x37\xa2\x58\x41\xbd\xe1\xc2\x7e\xd4\xb0\xde\xb0\x30\xda\x33\xee\xc6\x6b\xdb\x88\x47\x8b\x0a\x3b\x4d\x43\xb6\xac\x30\xa8\x31\x1d\x56\x25\x16\x0a\x5b\x41\x43\x02\xad\x30\x5a\xe3\x85\xd0\xa2\x80\x21\x5b\x5e\x89\xa6\x1e\x5f\x88\x25\x38\xca\x85\x84\x65\x83\x03\xd2\x6c\x61\xaf\x66\xbc\x8e\x8f\x67\x49\x1c\xf6\x55\xbc\x8e\x8f\x7f\xf4\xa3\x90\x9d\x0e\x39\xb5\x71\x31\x59\x6b\x4f\xa0\x19\xf0\x6b\x3f\x50\xc8\x4e\x87\x34\x5b\x61\xb4\x27\x84\x0c\x4b\x10\x07\x6c\xdb\xf2\x2a\x8a\xba\x22\x4c\xec\x89\x1a\xc2\x12\xc4\x41\xbd\xe1\xc2\x06\xc8\xb0\xde\xb0\x30\xda\xe3\x89\xc3\x7a\xc3\x01\x19\xb7\x90\xe9\x0e\xc9\xb8\x41\x09\xe2\x41\x7c\x1d\x96\x20\x0e\x6a\x0c\x17\x32\xdd\x71\xa9\x6b\x14\x14\x1e\x94\x31\x09\xe8\xbb\x1f\x28\x6c\xfb\x0b\x59\xbc\xc2\x20\x0a\x0f\xeb\x0d\x0b\x85\x0d\x7d\x71\xdd\xb6\x8b\x90\x9b\x62\x27\x21\xd7\x37\xa0\xec\x16\x36\xf4\x85\x94\xdd\xb8\x0c\x37\x06\xad\x5f\x3e\x7e\xf1\x2c\x1b\xa1\x7e\x5d\xea\x17\xca\x74\xa9\x5f\xf0\x73\xcb\xcb\x46\x10\x6e\x04\xc5\x89\x07\xdc\xc4\xa0\x42\xf1\x03\xbc\xe3\xe0\x1d\xc3\x77\x24\x98\x26\xee\x8f\x2b\xec\xe8\xe0\x59\x93\xa6\x86\xcf\x62\xa1\xae\x7d\x44\x76\xe1\xe3\x31\xcb\xf5\xe2\xc6\xed\xd7\x56\xa3\x27\xaf\xad\x46\x53\x63\xb8\x90\xd6\x0e\x88\xb9\x0f\xd0\x5f\x93\x46\x6c\xfb\xeb\x51\xdf\xc2\x76\xb3\xb8\x54\x5f\xc9\xb8\xfd\xc5\x3b\xaa\xbe\x40\x61\x23\x59\x58\x6f\x38\xa8\x31\x3c\xfa\x8b\x77\x3c\xbe\xe3\xa1\x5d\x89\x1b\x8f\xed\x22\x28\xe9\x36\xf5\xf8\xb5\x1f\x57\x59\x48\x6b\x87\x2c\x5e\x61\x30\x1f\x09\x59\xbc\x01\x73\xb7\x5c\x89\xd7\xd6\x3a\x60\xf1\x8e\xfe\x52\x64\xeb\xd1\x7b\x36\x6c\x85\x94\x5d\xa1\x90\x9d\x0e\x29\xbb\xc2\xe8\x4f\x5c\x17\x49\x53\x48\x8f\xde\x17\xf6\x4a\x45\x52\xef\x81\x01\xbd\x33\x2c\x54\x1c\x70\x7d\x0b\xfb\x9b\x42\xae\xaf\x30\xfa\xa5\xe8\xad\x88\x46\x3c\x83\x59\x24\x95\x1c\x18\x90\x40\x23\x11\x06\x45\x7a\x74\xbd\xb0\xd1\x27\x60\x07\x7f\x60\xf4\x27\x46\x0c\x49\xc2\x42\x21\x3b\x1d\x56\x38\x0e\xaa\x1a\x8f\x8e\x67\x82\x43\xfc\xc0\xe2\x2a\x5a\xaf\x46\x4b\x12\x66\xb2\x16\x92\x84\x85\xc2\xce\x94\x90\x24\x2c\x0c\x68\xa7\x21\x49\x38\x60\x01\x17\xf6\x9c\x44\x5a\xb6\x6b\xd9\x2e\x1e\xbf\x6c\xd7\xa2\x5d\x9d\xd6\x2f\xdb\xb5\xec\x2f\x7a\x55\x1b\x02\x0a\x3b\x40\xc2\x02\xca\xc2\x60\x7a\x18\x52\x89\x83\x3a\xca\x85\xbd\x1d\x91\x96\xed\xc2\x60\x28\x66\x1f\x49\x83\x81\x24\x5c\x28\x9a\x1c\xb2\x80\x85\x01\x1d\x36\x52\xf8\x8b\x4f\x9c\x52\x2e\xcc\x2a\x85\x9f\x83\x38\x85\x52\x40\x91\x88\x53\x02\x32\x70\x61\x6f\x47\x58\x21\x39\x20\x06\x0f\xea\xd9\x87\xc4\xe0\x48\x18\x4c\x42\x0b\x93\x06\x93\x70\xee\xd4\xaa\x8f\xa4\x75\x40\x0c\x2e\x49\x05\xd8\xb6\x5e\x53\xc8\xbc\xa3\xa6\x00\x94\x84\x59\x49\x0c\x16\x46\x57\x57\x35\x85\xf4\xe8\x7d\x49\x7e\x0e\xf5\x5e\xae\x30\xf5\xe5\x43\xae\x70\xc0\x0f\x2e\xc9\xce\x39\xb6\x8b\x49\x68\xcf\xdf\xa7\x6d\x45\x3a\xea\xed\x63\x30\x25\xf9\xbe\xc7\x5e\x81\x38\x40\xad\xf9\x48\x0e\x2d\x94\x7c\x2e\xec\x21\x0d\xc8\xc7\x1f\x18\x4c\xa7\x43\x0e\x72\xc0\x3b\x2e\x89\xf7\xb5\xfc\x73\xc0\x2e\x1e\xb0\x8b\x43\x76\xb1\x50\x60\xfe\x87\xec\x62\x61\x40\x12\x0e\xab\x38\x47\xbe\xe9\x28\xc6\xa4\x7c\xfb\x78\x46\x88\xfe\x04\x74\x91\x1d\x21\xe0\x20\x97\xf4\x11\x15\x45\x98\x05\xf1\x4f\xd6\x2c\x80\x42\x7d\xe6\xc8\x0e\x1a\xc0\xe8\x58\x9d\xe5\x9f\x83\x92\xcf\x25\x55\x7f\xf1\x56\x44\x4f\x7c\x6e\xa4\x27\x60\x2a\x97\x54\xf9\x45\x15\x3e\xab\xf0\x0c\x66\x96\x6c\x16\x0a\x04\xfe\xb0\x64\xb3\x30\xba\x8f\x57\xe1\xf3\x33\x9c\x14\x76\x9a\x46\x26\xc8\x0f\xf9\xcc\x1d\x3b\x97\xcf\x1c\x30\x95\x4b\x62\xc0\x96\xa9\x2c\x0c\xaa\xb5\x47\x56\xe1\x29\x9a\x5c\xa8\x96\x1c\xd9\xe1\x40\x0e\x32\xd5\xda\x43\x0e\x72\x50\x53\xb9\x50\xe1\x38\xac\xa9\x2c\x8c\x4e\x2c\x66\x4d\xe5\x80\x96\x5c\xd8\x43\x1a\xd2\x92\x85\xd1\x89\x04\xad\xa9\x1c\x54\x4b\x2e\xf9\xc5\xd7\x36\xe6\xc9\x8e\x10\x44\x6c\x92\x97\x03\xc2\x72\xc9\x38\x67\xab\x25\x0b\x83\xd5\x8d\x90\xbc\x1c\x14\x3d\x2e\x19\x4f\x6c\xd1\x63\x61\x50\xe6\x3d\x24\x2f\x07\x54\xe4\x02\x2f\x3d\x2c\x7a\x2c\x8c\x6e\x47\x1b\xf3\x00\x05\x1a\x77\x48\x4b\x16\x06\x65\xde\x43\x5a\x72\x50\x0e\xb9\x90\xfc\x8e\x62\xcc\x03\x0c\xca\xbc\x87\xa5\x91\x85\x02\xa9\x3a\x8a\xbe\xbf\xb0\x8c\x0d\xbd\x3c\x8a\xbe\x9f\x3a\xc8\x25\x63\x9b\xd6\x41\x0e\x68\xcd\x83\x55\x97\xb0\xe8\x71\x50\xf4\xb8\x64\xf4\xde\xa2\xc7\x21\xc5\x99\x55\x97\x90\xe2\x2c\x14\x58\xbc\x61\x1d\x64\x61\xb0\xea\x12\xd6\x41\x8e\x72\xd3\x13\x28\x79\x51\x31\x81\x01\x55\x3d\x8a\xbe\x1f\x28\xa4\xb5\xa3\xe8\xfb\x8b\x8e\x7e\x3c\x5f\xdb\x6a\xc9\x41\x39\xe4\x42\x5a\x3b\x8a\x5e\x1d\x18\x10\xda\xa3\xa8\xe4\x40\x61\x5b\x69\x48\xbd\x8e\xa2\x46\x0f\xba\x50\x8d\x06\x0a\x34\xdb\x90\x7a\x2d\x0c\xca\x74\x85\xd4\x6b\xa1\x40\xa0\x0d\x0b\x28\x07\xa5\x91\x47\x1f\xf4\x84\xbe\x1f\xea\x75\xc9\x76\x74\xd8\x85\xa4\x6f\x3a\x51\x16\x35\x91\x1f\xa0\xbf\x18\x34\xa0\x61\x7f\x60\xb0\xb2\x14\xb2\xb1\x83\x3a\xc8\x25\xdb\x39\x61\x7f\x69\x1d\x93\xa6\x6a\x1d\x30\xb0\x0b\x34\xca\x28\x9a\x02\x30\x58\x7f\x0a\xd9\xd8\x42\xc9\x3e\x5e\xeb\x28\x5a\x07\xf1\x53\xd1\x3a\x60\x60\x17\x48\x8d\x61\x01\x65\x61\xb0\x4a\x15\x16\x50\x16\x0a\x1c\xc0\x90\xa0\x1d\x52\xaf\xa9\x7b\x1f\x52\xaf\x03\x9e\x75\x29\x44\x6c\xf2\xac\x85\x01\xb5\x3f\x8a\x31\x0f\xa4\xea\x02\xd7\x2e\x24\x55\x0b\x83\x22\x63\x21\xa9\x3a\x24\x55\x53\x4c\x3e\x24\x55\x07\xb5\x8f\x0b\x34\xb7\xb0\xf6\xb1\x30\x28\x13\x1f\x92\xaa\x85\xc2\xe6\xd5\xa8\x06\xf6\xc0\xa0\x4c\x7c\x58\x21\x39\x28\x87\x5c\x4a\x9a\x88\xb6\x22\x1a\x41\xcc\x53\xb5\x0e\x08\xda\x05\x6a\x5a\x48\xd0\x16\x06\x65\xe2\x43\x82\x76\x40\xd0\x2e\x70\xc7\x42\x82\x76\x50\x02\x79\x50\x26\x3e\xaa\xa6\x00\xf5\xba\x94\xe2\xb3\x6c\xd7\x6d\xbb\x78\x47\xad\x03\x28\x70\xb4\x42\xea\xb5\x30\xd8\xab\x10\x52\xaf\xa3\xde\x7c\x0e\x86\x93\xaa\x75\x00\x63\xd8\x39\xcb\xa6\x32\x04\x40\x89\x8a\xaa\x75\x00\x83\x02\xf0\x61\xb5\x65\xa1\x94\x5a\xbf\x3f\x14\x5b\x8c\x59\x18\xd4\x87\x8f\xaa\x3d\x55\x46\x08\x58\x4e\x51\x35\x1e\xe8\xe1\x83\xd5\xc2\x90\x1e\x2e\x14\x6a\x2a\x87\xf4\x70\x61\x0c\x26\x91\xd5\xc9\x07\xf4\xf0\x02\xe7\x28\xa4\x87\x0b\x83\xfa\xf0\x51\x1d\x5a\xa8\xcf\x5c\xe0\xf6\x84\xf5\x99\xa3\x32\xd3\x18\x7e\x79\x87\x16\xa0\xc0\x42\x09\x4b\x36\x0b\x63\xf8\xe5\xb5\x27\xa0\x14\xe6\x49\xb2\xcf\x85\x41\x15\xf9\x90\x7d\x1e\x75\xf3\x8e\xb8\x91\xea\xe4\x83\x92\xcd\x83\x2a\xf2\x61\xc9\xe6\xa0\x4c\x73\x81\xa1\x11\x55\xe3\x01\x06\xa5\xea\xa2\x6a\x3c\xf5\xf0\x8b\x8c\x5c\xd5\x58\x0a\x5e\xfa\x18\x6a\x91\x43\x8b\xe7\x4a\x55\x4c\xac\x3a\x87\x00\x6a\x53\x95\x8d\xa5\xa0\xaa\x17\x98\x10\x21\x55\x3d\xa8\xdc\x3c\x58\x5d\x8d\xe6\x08\x01\x55\xbd\x90\xa7\x0f\xa9\xea\x41\x01\xe5\xc1\xea\x6a\x58\x40\x39\xa8\x96\x5c\xc8\x4e\x87\xd5\x92\x85\xc1\xea\x6a\x48\x68\x0f\xd8\xeb\x85\x8c\x72\xc8\x5e\x17\x06\xd5\xda\x43\xf6\xba\x50\x6a\x9e\x88\x42\x11\x5f\x1b\xed\x96\xd0\x2e\x94\xfa\x69\x84\xed\x52\x95\x19\x5a\x64\xaf\x07\x8c\xf5\x52\x7d\xbc\xbe\x5f\xf6\x3a\x75\xd8\x43\xf6\x7a\x34\xb4\xb0\x7e\x44\x6f\x45\x6f\xae\xa2\x11\xba\x70\xca\x2c\x17\xf2\xa8\x61\x99\x65\x61\x50\x55\x3d\xe4\xb8\x07\x1c\xf7\x42\xee\x33\xe4\xb8\x0b\x83\xa2\x7d\x21\xc7\x5d\x28\x64\x0f\xc3\x9a\xca\x21\xc7\x7d\x30\x98\xc9\x71\x0f\xaa\x25\x97\xda\x7c\x96\xed\x22\xc8\xa7\xf6\x7a\x58\x2d\x39\x1a\x91\x51\x45\xa3\x9b\xea\x0b\x0c\x4a\xfb\x45\x53\x7d\x81\x42\x66\x2d\x2c\xa0\x2c\x8c\x61\x53\x55\xdf\xc6\x6a\x10\x39\xb3\x68\x0e\x07\xc0\x60\xb7\x51\x34\x87\x03\xa0\x54\x06\xd9\xe6\x70\x40\xe5\xe5\x31\x88\xc5\xac\xbc\x1c\x14\x50\x2e\xa4\xb5\xc3\x02\xca\x21\xf7\x9e\x3d\x49\x21\xf7\x3e\x20\xda\x17\xf2\x3e\x21\xd1\x5e\x18\xc3\xce\x39\x76\x21\x13\x86\x8a\x75\x48\xb4\x0f\x0a\x28\x0f\x4a\x0e\x86\x05\x94\x83\x72\xc8\x85\x8c\x4e\x34\xe3\xa7\xe6\x08\x41\x94\x25\x85\x3e\xe0\xcb\x97\xf6\x52\x54\x14\xa1\x13\x44\x46\xf2\xe5\x03\x72\x7c\x69\x8c\x10\x92\xe3\x03\x26\xfc\x60\xf5\x3e\x64\xc2\x0b\x85\x0c\x45\xc8\x84\x17\x06\xab\xf7\xd1\x9d\x11\x00\x85\xdc\x43\x48\x8e\x8f\xee\x70\x40\xd0\xdb\x1d\x0e\x80\x42\x26\x20\x24\xc7\x47\xd7\x86\x58\x59\xea\xda\x10\x50\x58\xe3\x0f\xf9\xf2\xc2\x60\x8d\x3f\xba\x51\x16\x50\x58\xbd\x0f\x6b\x2a\x07\x7c\xf9\x31\xf8\x68\xf2\xe5\x03\xaa\x7a\xa1\x34\x72\x48\x55\x17\x06\xbb\xb3\xa2\xeb\xa3\x61\xac\x17\xd6\xac\xc3\x6a\xc9\xc2\x20\x13\x10\x5d\xeb\x80\x78\x5e\x58\x67\x8e\xae\x46\x4b\x42\xa7\x38\x7a\x48\x42\x8f\xfe\xa8\x6f\x69\xa8\x49\x8f\xcf\x8d\x7c\xa1\xa1\x08\xf5\xa5\xae\x70\x71\x69\xb1\xab\x5f\xc0\x20\x5f\x10\xdd\x39\x2a\x50\x5c\x9c\xb3\xec\x70\xc0\x32\x1f\x94\x3d\x0f\xcb\x0e\x07\xfc\xf1\xc2\xce\xdc\x90\xec\x1d\x50\xa4\x4b\x9b\xcf\x0b\x59\x20\x57\x18\x6c\x24\x0b\x0f\xcc\x0b\x18\xd4\xc5\x69\xab\x0c\x6a\x61\x90\x8e\x08\x19\xd4\x42\x71\x2e\x29\x83\x5a\x18\x03\x2d\xb4\x66\x6e\x8c\xa7\x8f\x8a\xb3\xc4\xe1\x98\x26\xa9\x9a\x7a\xe9\x21\xa9\x3a\x60\x50\x97\xce\x62\xa6\x0c\xea\x80\x41\x3d\xd8\xba\x16\x32\xa8\x85\xc2\x29\x62\x21\x83\x5a\x18\xf3\xf5\xef\x98\x15\x0f\xfd\x0f\x9c\xeb\xe2\x84\x54\x52\xb5\x30\xd8\xff\x16\x92\xaa\x85\xe2\xf4\xd0\x5a\xbc\x31\x48\x73\x50\x02\x3d\x86\xc3\x27\x74\xe9\xe2\x94\x4e\xba\xb4\x30\x28\x81\x1e\x43\xa3\xa6\x40\x6e\xe9\x2c\xb8\x0e\xe7\xf7\xb0\xa6\x07\x7b\xe9\xc2\xca\xb8\x01\xc5\xb9\x70\xa4\x53\x48\x71\x0e\x08\xc7\x85\x6c\x6b\x48\x38\x16\x06\x49\x9a\xb0\xe6\xad\x50\xc8\x7d\x86\x35\x6f\x85\x31\x19\xf2\xa6\x6b\x51\x40\xe1\x04\xa4\x90\xa9\x1c\xd0\x92\x07\xa9\x9c\x90\x96\x1c\x54\xa0\x2d\x86\x90\x56\xa0\x15\x06\x55\xd1\x63\xfa\xe5\xe1\xfa\x16\x4e\x95\x09\xb9\xbe\x41\xb9\xd9\xc1\xee\xbd\xb0\xdc\x6c\x40\xd9\x2d\x8e\xa8\x52\x76\x85\x41\x2a\x27\xa4\xec\x06\xfc\xdc\xe2\x38\x22\x3f\x57\x18\xd4\x3b\x0f\xf9\xb9\x01\x19\xb7\x90\x89\x0c\xc9\xb8\xc2\xa0\xde\x79\x48\xc6\x15\x8a\x5e\x5d\x32\xae\x30\xd8\x2f\x18\x16\x7f\x8d\xc9\xf2\xa7\xfe\x7a\xba\xc0\x03\x0c\xaa\xa2\x87\xc5\x5f\x03\xb6\x6d\x19\x4c\x64\xa6\xb1\x05\x34\xdb\x41\x8a\x29\xa4\xd9\x06\xd4\xd8\xa2\x2f\x93\x1a\x1b\xd0\x61\x0b\x09\xc5\x78\xeb\x50\x61\x59\x0e\x6a\x9c\x87\x2c\xcb\x80\x20\x59\xa8\xa0\x1d\x6f\x23\x23\xc9\x92\xa6\x36\x24\x4b\x06\x34\xc8\x42\xdd\xe8\x90\x06\x29\x0c\xea\xd4\x86\x34\x48\xa1\x50\x1a\x39\x2c\x01\x2a\x0c\xea\x6a\x86\xcc\xc8\x80\xf3\x58\x28\x7a\x1c\x72\x1e\x85\x31\xd1\x2f\x49\x8d\x71\xb3\xce\x43\x09\xe2\xb8\x9d\x43\x00\x83\xea\x9b\x61\xed\xd0\xa0\x50\x68\x61\x57\x61\x58\x28\x54\x18\xa6\x5c\x64\x43\x06\x0c\xc8\x42\xa9\xdf\xb0\x50\x68\x58\x28\x94\xca\xb8\x21\x1b\x32\xa8\xbe\x59\x7c\x21\xab\x6f\x0a\x63\xe2\xcb\x6e\x23\x23\xa0\x52\xa4\x35\x6e\x5d\x38\x30\x26\xbe\xec\x36\x32\x82\x3c\x58\x29\xd2\x1a\x92\x07\x85\x41\xfd\xdc\xb8\xf5\x2c\x40\xa5\x46\x67\xc8\x27\x14\x06\x55\x41\xc3\xe2\x9e\x71\x3f\x1e\xa0\x52\xa3\x33\x6e\x3d\x00\x30\xd8\xe1\x18\xb7\x53\xcd\xfb\xd1\xe8\x4a\xf5\xcd\xb8\xd5\x68\x60\x50\x0d\x37\xe4\x13\x06\x1c\xc2\xfa\x22\xae\xbb\xd5\x68\x60\x52\x61\x34\x6e\xa3\x65\xa0\x52\xf8\x32\xa4\x18\x0a\x93\x6a\xb8\x21\xc5\x30\x60\x0a\x56\x0a\x5f\x86\x4c\x41\x61\x52\x0d\x37\x2c\x14\x1a\xf7\xa6\x5d\x55\x91\xed\x7a\x60\x52\x0d\x37\xe4\x13\x06\x7c\xc2\x4a\xe9\xc8\x90\x4f\x28\xcc\x4f\x47\xeb\xbf\xa0\x18\x56\x8a\x42\x86\x14\xc3\x80\x4f\x38\x5f\x2f\x6f\x1c\x8a\xe8\x7b\x82\x12\xc9\x83\x41\x2d\xcc\xfa\x62\x05\xd9\x5a\x98\xc2\x64\x47\x68\x2c\xbf\x23\x24\xbd\xca\x51\x8a\x21\x49\x4f\x98\x14\xb5\x0d\x49\x7a\x01\x31\xaf\xb2\xfb\x2f\xac\x98\x29\x4c\x2a\xd8\x86\x15\x33\x83\x5a\x98\x95\xdd\x7f\x61\x2d\xcc\xa0\xf0\xe5\xa4\x82\x6d\x58\xf8\x32\xa0\xdf\x55\x76\xec\x85\xf4\x3b\x61\x9a\x0b\x5c\x2a\x00\xf4\xbb\x7a\xe1\xac\xa4\xdf\x09\xf3\x85\x2f\xb4\x7e\x65\xc0\xa2\xab\x26\x2d\x64\xd1\x09\x93\x0a\xb6\x21\x8b\x2e\xa0\xcc\x55\x2a\xc3\x85\x94\xb9\x58\x7e\x5a\x16\x82\xa5\xcc\x05\xd5\x24\x2b\xfb\xe7\xc2\x6a\x92\x41\x89\xc8\xc9\xa1\xa5\xb1\xfc\xda\x8b\x8f\x66\xee\x61\xf9\xd1\x96\x1f\x0d\x8f\xb9\xfc\x68\x10\xeb\x2a\xe5\xc3\x42\x62\x9d\x30\xd9\x67\x1b\x4b\x6f\x02\xd7\xae\xb2\xe7\x2d\xe4\xda\x09\xd3\x4c\xe6\xd2\x75\xc0\xaf\xab\x14\xe0\x0a\x8b\x4a\x06\x5c\xbb\xa9\x0d\xc9\xb5\x13\xe6\xeb\xdf\x71\x1c\x44\x58\x73\x52\xa8\x54\xc8\x8a\xd0\xd9\x50\x86\x72\x72\xb0\x6a\x58\x86\x32\xe2\x71\x1d\x95\x4a\x54\x11\x2e\x58\x50\x8d\x72\xbe\xb2\x22\x14\x2b\x6e\xf4\x83\x41\x36\x8c\x2a\x81\xc9\x59\xab\x21\xad\x2f\xa0\xf2\x55\x33\x0c\xd6\x9c\x14\x26\x3b\x86\x23\x8c\x2a\x29\x43\x59\xaf\xe1\xb3\xfc\xc5\xdb\x5f\x54\xe4\x2f\x06\xad\xc7\x97\x49\x9f\x13\x26\xfb\x8a\x43\xfa\x5c\x50\xdb\xb1\x26\x94\xc1\xda\x8e\xc2\xd4\x1b\x44\x7c\x9e\xf5\x98\xab\x4b\xf5\xd2\xe7\x84\x69\x7e\x37\x74\x23\x70\xe5\xaa\x4b\xf5\x72\xe5\x84\x49\x2d\xde\x08\xb5\x88\xa2\x90\x95\x12\x43\x61\x51\x48\x61\x52\x78\x37\x2c\x0a\x19\x81\x16\x25\x1f\xaf\x16\x85\x5a\x84\xff\x91\x1f\x17\x81\x16\x51\x58\x27\x42\x2d\x0a\x4d\x9f\x20\x4c\x7e\x5c\xc4\x33\xf9\xa8\x2e\xc2\xc7\xf9\x3c\x1e\x3b\xff\xdc\x18\x8a\x78\x47\x74\xcd\x6a\x92\xc2\xa4\x3c\x6f\xc8\xa2\x0b\x0a\x39\xd6\xc4\xe8\x6c\x21\x47\x61\x52\x9e\x37\x64\xbe\x05\x04\xb6\x4a\xb5\x9a\x90\xc0\x26\x4c\xb3\xd3\x56\x6d\x0c\x4a\x34\x56\xf6\xa9\x85\x25\x1a\x85\xf9\x22\xdc\xb0\x44\x63\xc0\x50\xab\x89\x64\xee\x76\x81\x07\x98\x2f\xa6\xad\xb2\xd5\x02\x56\x59\x75\xe1\x7c\x3b\xb4\x00\x53\x1f\xbb\x1d\x5a\x80\xea\x92\xf8\xd6\xb3\xc0\x3d\x9b\xe6\xc3\xb7\x6a\x02\x0f\xad\xba\x24\x2e\x0f\x4d\x98\x7a\x62\xab\x36\x06\xc5\x17\x2b\x3b\xbd\xc2\xe2\x8b\xc2\x7c\x31\xb9\xb5\xf8\x62\x50\x43\xb1\x52\x8d\x24\xac\xa1\x28\x4c\x4a\xfd\x86\x35\x14\x03\xd2\x59\x65\x0f\x57\x48\x3a\x13\xa6\x5e\x5d\xd2\x59\xc0\x1d\xab\xec\xce\x0a\xb9\x63\xc2\x34\x4f\x2f\x77\x2c\x28\x7f\x58\x5d\xec\xde\x7e\xed\xed\xd7\xc6\x41\x48\x27\x0b\xe8\x64\x35\xd3\x85\xd2\xc9\x84\x4a\xb5\x88\x38\x7a\x80\xf3\xe6\xf1\xcd\xab\x8a\xa2\xc2\x55\x0d\x51\x55\x84\x89\x36\x6f\xe4\x0b\xc1\x1d\xab\x94\x86\x08\xb9\x63\xc2\x74\x00\x3a\x2a\x00\x4c\xb0\x9a\x99\x90\x1e\xad\x16\x0a\xd8\x94\x52\x20\x05\x4c\xa8\x6c\xea\x0f\x29\x60\xc2\x94\x52\x70\x1c\x80\x60\x85\x55\xb6\x3c\x85\xac\xb0\x38\xcb\xd6\xd3\x08\x67\x53\x30\xb9\xaa\xeb\xcc\x32\xb9\x84\x29\xf1\x40\x26\x57\x40\xdb\xaa\xec\x48\x0f\x69\x5b\xc2\x74\xac\x94\xb6\x15\x50\xb5\x2a\x9b\x99\xe2\x38\xaf\x04\x26\xf5\x86\xe3\x38\xaf\x3c\x28\x13\x9b\x99\xe2\xa8\x4c\x30\xb9\xe6\xcb\xd7\x76\x3e\x03\x6d\xab\x72\xb8\x5e\x48\xdb\x12\xe6\x8b\x65\x11\x69\x5b\x01\x47\xab\xba\xce\x2c\x47\x4b\x98\x94\x1d\x8e\xe3\x60\x06\x54\xf6\x61\x87\xb4\x2d\x61\x52\x7a\x3b\xa4\x6d\x05\x95\x1a\x6b\x61\xe4\x3a\x06\xe3\xc0\x7c\x31\xa7\x97\xc9\x15\xb0\xb7\x6a\x49\xfe\xe2\x54\x64\xeb\xbd\xd1\xd6\xe3\xd2\xd8\x3e\x15\x32\xb9\x84\xf9\x22\x04\x95\xc9\x15\x70\xb4\x6a\x49\x3e\xde\xef\xb8\xf9\x8e\xcc\xfc\x8f\xab\x2e\x70\xb4\xaa\x0b\xd4\x72\xb4\x84\x29\xe9\xc3\x1a\x8c\x01\x6d\xab\xb2\x21\x39\xa4\x6d\x09\x93\x82\x0a\x71\x1c\x18\xe1\x68\x55\x16\xa8\xb7\x1c\xad\x0d\x71\xaa\xb2\xce\xbc\xa9\x55\xf8\x00\x1e\xf3\xd1\x9c\x6d\x7d\xc2\x0d\x25\xaa\xb2\x14\xbb\xa5\x44\x09\xf3\xf5\x0c\x3a\x5b\x4a\xd4\x86\xf3\x54\xd9\x61\xb4\x5f\xcb\x1b\x17\xb6\x3d\x78\x3c\x93\xee\x4d\x15\xc3\x5a\x3e\xa2\xad\x08\xbf\x3a\xbe\x4f\xdb\xda\xaf\xe5\xaf\x33\x98\xb1\x97\x6e\x7b\x46\xbc\x30\xa1\xaf\x6c\x4b\x21\xee\x97\xfa\x31\x69\xd0\xb6\x8d\xea\xc7\xe4\x4d\xb6\x5d\xf0\x74\x7a\xe5\x10\xbb\xed\xd9\xeb\xc2\x7c\x4d\x45\x5e\xc5\xb2\x2c\x87\xc5\x6d\x4f\x55\x17\x26\x05\x24\xb6\xa7\xaa\x6f\xb8\x50\x95\xdd\x33\x5b\x2e\xd4\x7e\x39\x68\xd0\x54\x89\x4f\x1b\x66\x52\x65\x45\x74\xcb\x4c\x12\x26\xb4\x9a\x2d\x33\x49\xa8\xec\x19\xd9\x54\x11\xfc\xc0\x7c\x3d\x86\xb8\x2d\x26\xb8\xe1\x2c\x55\xd6\x3a\xf7\xc5\xdc\x59\x98\x2f\x5e\x1b\x2e\xd3\x03\x99\xab\xb8\x11\xff\x23\x4c\xe2\xd8\x2d\xa5\x69\xc3\x4c\xaa\xec\xba\xd8\x32\x93\x84\x49\xd5\xeb\x0d\x4b\xe9\x03\x95\x7d\x0b\x5b\xb2\x92\x30\x29\x7f\xb1\x29\x52\xf8\x00\xed\x42\x65\x2e\xf5\x83\x5a\x85\x93\x98\x78\x5b\xab\x70\x43\x69\xaa\xec\x35\xd8\x52\x9a\x84\x09\x75\x68\x5b\x72\x70\x43\x56\xaa\xb0\xf5\xb7\x64\x25\x61\x12\x39\x6f\x4f\x55\xdf\x17\xa1\x0b\xec\xf5\x4d\x15\xc1\x0f\x4c\x8e\x2a\xdf\x16\x13\xdc\x30\x93\x6a\xf3\x85\x54\x00\xe0\x82\x5b\xb8\x3d\x2f\x5d\x98\x54\xa4\xdf\x92\x95\x36\x05\x04\x6b\xfb\x88\xba\xa2\xce\xba\x3c\x4d\x65\x30\xdb\xd0\x90\x2a\xd4\xeb\x2d\x0d\x69\x43\x43\x9a\xb0\x9c\xb6\x34\xa4\x0d\x83\xa8\xb2\x7b\x66\x5b\x00\x50\x98\x54\xb7\xdf\xb2\x89\x84\x0a\xfd\x77\x7b\xc6\xb9\x30\x29\xf1\xb1\x2f\x55\x8e\x63\xcf\x6b\x4b\xbc\xf6\xf1\x73\x1c\x3e\x87\x8d\x38\x36\x02\xd3\x67\x01\x71\x4b\x43\xda\xf0\x8c\x2a\xfc\xdc\x0d\xd9\xe8\x03\x93\x99\xc6\x96\x73\xb4\x39\x09\xbd\x72\xdc\xda\xf6\x24\x74\x61\x52\x25\x7c\xcb\x39\xda\x9c\x58\x5e\x61\xde\xee\xa4\xe6\xc0\xc7\x99\xd0\xb6\xb6\x7c\x1c\xa1\x24\x4c\x41\x3e\xce\x86\x69\x33\xa9\xc6\xbd\x65\xda\x08\xb5\x3d\x4e\x70\xcb\xb4\x11\xe6\x65\xeb\xfd\xda\x1c\x5c\x5e\xdb\xe0\x59\x61\x23\x18\x47\x2e\x5f\x88\x71\x64\x53\x6f\xaf\x42\x73\xdb\xd6\xdb\xdb\xb0\x6b\x26\xec\xab\x0d\xc5\xe6\x03\x95\x2d\x29\x5b\xa6\x8d\x30\x61\x5f\xed\xe4\xd7\x86\x70\x53\xa1\x80\x6d\xab\xf2\x6d\xc8\x37\xf3\xb2\x73\xf0\xea\x1b\x2a\x4c\x85\xa3\xb5\xa5\xc2\x08\x93\x0a\x22\x5b\xae\x8b\x50\x61\x00\x6d\x78\x2f\x0f\xf0\xd1\xec\x42\x3f\x1a\x50\xfb\x33\x42\x6c\x89\x2d\x42\xed\x7c\x6d\x8b\xeb\x09\x93\xf2\xcf\x5b\xae\xcb\xe6\x78\xf3\xca\x8a\xe8\xce\x7e\x47\x60\x5e\xc5\x67\x35\x45\x6f\xae\x2a\x88\x6e\x45\xbc\x50\xf1\xf1\xbc\x10\xc4\x96\xca\x5a\xe7\x96\xd8\x22\xcc\xab\x2a\xf2\xf1\x8b\x5f\xf4\x46\xbf\x76\xd6\xf8\x2a\x8d\xd0\xf8\x20\x7d\xd4\x3e\x68\x84\x9f\x03\x98\x14\xdb\xdd\x92\x3e\x36\xdc\x8d\xda\xf1\x85\x72\x37\x84\x09\x21\x6b\x5b\x78\x6e\xc3\xd7\xa8\xe4\x9d\xb7\x55\xe6\x36\x67\x58\x4f\x26\x55\xdb\x33\xac\x37\x95\xe5\x2a\x89\xe1\x9d\xfd\x1c\xd9\xcf\xc1\x30\x65\x95\xb9\x0d\x51\xa3\x8e\x8b\x2e\x3c\x9f\xc7\xa3\x98\xcf\xb0\xbe\x25\x6a\x6c\x88\x1a\x95\x7c\xe7\x96\xa8\xb1\x8b\xbd\xfa\x0c\xeb\x5b\x56\xc6\xe6\xc0\xea\xca\x6a\xe3\xf6\xc0\x6a\x61\x72\x4e\xc0\xf6\xc0\xea\x0d\x51\xa3\x92\x31\xdc\x12\x35\x36\xb5\xe8\x26\x93\xbd\x6d\x2d\xba\x0d\x51\xa3\x72\x26\xf3\x96\xa8\xb1\x21\x6a\x4c\x26\x7b\x5b\xa2\xc6\xe6\x90\xe9\x4a\xce\x6d\x7b\xc8\xb4\x30\x39\x73\x60\x7b\xc8\xf4\x86\x49\x51\x59\x6d\xdc\x32\x29\x84\x09\x35\x6d\xcb\xa4\xd8\xd0\x26\xea\x68\xdf\x3f\x0e\x62\xcb\xaa\x10\x26\xf5\x5e\xb6\xac\x8a\x0d\xed\xa1\x92\xf0\xd9\xd2\x1e\x84\x79\x31\xa2\x5a\x84\x6e\xc3\x84\xa8\xc3\xbe\x53\x3f\x80\xc9\x1c\x75\x7b\x22\xb4\x50\x87\xbd\xc2\x54\x53\x98\xd4\x8e\xd9\x25\xec\x3b\xa6\x9a\x9c\x14\xbb\xe5\x4b\x08\x13\x46\xdd\x96\x2f\xb1\x0b\x71\xd9\xb0\x11\xdb\x4f\xb3\xfd\x45\x6f\xf4\x17\x0f\xdd\xc9\xc0\x68\x5d\x3a\x61\x52\x2d\x79\x17\x15\x0b\x8e\x43\x65\x79\x7d\xcb\x71\x10\x26\xd5\x92\xb7\x1c\x87\x0d\xcb\xa0\xb2\x65\x60\x7b\x00\xb3\x30\x29\x4d\xb3\x65\x1c\x6c\xb8\x04\x75\x3e\x53\xe0\x2d\x97\x40\x98\x54\x4b\xde\x56\x76\xdb\xa4\xf1\x2b\x47\x29\x6e\xf3\xf4\xc2\xa4\x5a\xf2\x36\x4f\x2f\x54\x4e\x66\xda\xd5\x2f\x04\x4c\xaa\x25\x6f\x53\xf7\x9b\xa4\x7c\xa5\x66\xdb\x36\x29\x2f\xcc\x84\x13\xac\x7a\x62\xd2\xda\x95\xf3\x9b\xb6\x69\x6d\x61\x52\x32\x67\x57\xad\x0e\xa8\x2c\x46\x6e\x33\xdd\xc2\x84\xa7\xb8\xab\xfd\x55\x89\x8c\xa6\xaf\x6d\x64\xc4\x79\xc5\x33\x61\xc1\x9e\x57\x2c\x34\xd6\xc8\xb6\x99\xee\xdd\x1e\xf7\xd6\x58\x10\xdb\x4d\xf7\x06\xcc\xc4\x88\xea\x11\xc6\x9b\x33\x86\x1b\x0b\x62\xdb\x33\x86\x37\xd5\xdc\x26\xe7\x5b\x6c\xab\xb9\x09\x8d\xc5\xa2\xdd\x8c\x9f\x80\x99\x3e\x8f\xe7\xb5\x49\x91\x37\x68\xef\xdb\x14\xf9\x26\x2d\x3e\xa9\x01\xb4\x9b\x61\x32\x69\xed\xc6\xa2\xce\x36\xad\x2d\xcc\x64\x23\x8c\x79\x38\xf8\xb7\xb1\x94\xb1\x9b\x5f\xa8\xf9\x39\x18\x18\xcd\x61\x6f\x12\xd6\x8d\xa9\xf9\x36\x61\x2d\x4c\x88\x97\xdb\x84\xf5\x26\x57\xdc\x98\x4e\x6f\x73\xc5\x9b\xa4\xe9\x4c\xd7\xd3\x13\x26\x4d\x37\x89\xbb\x99\xf0\xc4\x26\xee\x36\x45\xa0\x1a\xb5\xe6\xb7\x45\xa0\x36\x47\x88\x4e\x6a\xbc\x6c\x8f\x10\xdd\xe4\xf2\x1a\x04\xda\x6d\x2e\x4f\x98\xcc\xfc\xb7\xb9\xbc\x4d\x5d\xa8\xa6\x8f\xb5\x2e\x94\x30\xa9\x04\xb3\x3d\x09\x74\x73\x12\x68\xbb\x98\x43\x78\x12\xe8\xa6\x7a\xd4\xcc\x74\xb4\xd5\xa3\x36\xe5\x9d\x9a\x4e\xc1\x8c\xdf\xa6\x58\x53\xd3\x3a\x86\xe1\x06\x30\xe1\xda\x6d\x0b\x37\xed\xf1\x7c\xe1\x46\xcd\xee\x3d\x74\xa8\xc0\x64\xf9\x61\x0f\xbf\x36\x55\x9a\x9a\x9f\xd6\x2a\x4d\xc2\xa4\xe0\xeb\xb6\x4a\x93\xd0\xe0\xae\x6e\xab\x34\x6d\x4e\x02\x9d\x14\x7c\xdd\x9e\x04\xba\x39\xd7\xb3\x25\x74\x62\xf8\xb5\x39\xd7\x73\x52\xf0\x75\x8f\x65\xeb\x1f\x1f\xdb\x28\xbd\xbd\x4d\x4e\x0a\x13\x0e\xe0\xf6\x40\x4f\xa1\x51\xb8\x69\x9b\xaf\xdc\x64\x22\x67\x46\x31\xcd\x44\x6e\xd2\x8e\x8d\x15\xaf\x6d\xda\x51\x98\x14\xc0\xd9\xd6\x72\x12\x1a\x05\xa7\xb7\x99\x48\x61\x52\xa4\x75\x0f\x83\x25\x32\x91\x0d\x72\xea\x36\x13\x29\x4c\xf8\x84\xdb\x54\xe3\x26\x63\xd8\x38\x52\x65\x9b\x31\x14\x26\x45\x5a\xb7\xc5\x9a\x84\x96\x9a\x57\xd9\x88\x40\x01\x32\x22\x15\x73\x3c\x6a\xd6\x12\x31\xf5\x30\xa6\xe6\x70\xd0\x99\xed\x1c\x7d\x34\xd0\x38\x06\x65\x7b\x38\xa8\x30\x29\xcc\xb3\x87\xb1\x18\xd0\xa8\x2e\xbd\x87\x8a\x39\x54\x4c\x86\xcf\xa1\x62\x72\x5e\x68\xa3\xba\xf4\xf6\xbc\x50\x61\xb2\x40\xb4\x3d\x2f\x54\x68\x50\x58\xb7\x75\xa5\x84\x99\xfd\x1c\xc6\x16\x40\x4b\x5d\x91\xef\xa8\x92\x67\xba\x50\x25\x27\x13\xda\x12\x81\x84\x45\xa4\x84\x49\xdd\xd6\x6d\x11\xa9\x4d\xc5\xa8\x46\x2d\xa8\x6d\xc5\xa8\x4d\x95\xa8\x49\xdd\xd6\x3d\x74\x7c\x40\x4b\x8c\x7c\xa6\x53\x85\x99\xcb\xf5\xfd\xa1\xd8\x82\x52\x9b\x04\x6c\x83\x53\xbb\x4d\xc0\x0a\x93\xd5\xaf\x6d\x02\x76\x93\x47\x6d\x2c\xfa\x6d\xf3\xa8\x9b\x92\x4e\x93\x0a\x46\xdb\x53\x41\x85\xa6\xd5\x4d\x2d\x05\x98\x14\x7f\xdd\x56\x7c\xda\x14\x6e\x6a\xda\x93\x85\x9b\x84\x09\x6d\x74\x5b\xb8\x49\x68\x6a\x91\x67\x87\x0a\x93\xe2\xaf\xdb\xcc\xed\x26\x5b\xdb\xd4\x0f\xcb\x3b\x09\x13\x72\xe9\xb6\xbc\xd3\xa6\xfe\x52\xf3\xcb\x5b\x7f\x49\x98\x94\x88\xdd\x1c\x1a\xfa\xc0\x7c\xae\xf2\xf1\xf1\xb9\x11\xa3\x46\xbb\x3d\x28\x74\x93\xa6\x6d\x2c\xfa\x6d\xd3\xb4\xc2\xfc\xab\xc8\xd6\x6f\x7e\xb1\x29\xf2\x17\x55\x3f\xfc\xb5\x35\x93\x84\x46\xc1\xd6\x6d\xcd\x24\x61\xe6\xaa\xc8\x46\xa0\xa4\x19\x85\x9f\xfb\xd3\x08\x94\xb4\xd2\xab\x2a\x29\xd0\x28\xd8\xba\xcd\xef\x6e\x32\xb7\x93\x65\xc6\x6d\xe6\x76\x93\xad\x9d\x94\x51\xda\x6f\x63\x4f\xa0\x41\x08\xdd\x16\x35\xda\x6f\xbd\x27\x71\xac\x15\x8c\x36\xb5\x89\x1a\xb5\x89\xb6\xb5\x89\x84\x49\x39\xd1\x6d\x6d\xa2\x4d\x89\xa1\x46\xb9\xc7\x6d\x89\x21\x61\xb2\xf2\xb8\xdf\xce\xfc\xa9\x27\xd4\x0a\x6e\xd7\x7a\x42\xc2\xcc\x44\x6c\xd6\x13\xda\xd4\x13\x6a\x70\x31\xb7\xf5\x84\x84\xc9\xfa\xe4\x7e\xeb\xde\xa8\x27\xd4\x58\xea\xda\xd6\x13\x12\x66\x26\xae\x7b\xeb\xa5\x28\x1e\xd4\x58\xea\xda\x16\x0f\xda\x6f\x6d\x93\x98\xf8\xad\x6d\x92\x2b\x6e\x1c\xb2\xb1\xcd\x15\x6f\x52\xbe\x8d\x4a\x54\xdb\x94\xaf\x30\xa1\xb3\x6e\x0b\xe0\x6c\x32\xbf\xad\x0c\x45\x6f\x45\x6f\xae\x9a\x88\x78\x21\x4e\x7a\x6c\x94\xb6\xd9\xb7\xfd\x05\x4c\x96\x2c\xb7\xd5\x6e\x36\x15\x6a\x1a\x95\x95\xb6\x15\x6a\x84\x49\x95\xa6\x7d\x1b\xd7\x51\x5c\xa6\x51\xc1\x68\xdf\xeb\x23\xba\xb9\x2a\x21\x5a\x8a\x9e\x2e\xa4\xf6\xcc\xb6\xf6\x8c\x30\x29\x56\xb9\x6f\xbb\x90\x7a\x31\x8d\x42\x33\xdb\x7a\x31\xc2\xf4\x0b\xdd\x5a\xc7\x4d\x17\xba\x4a\x75\xdb\x85\xc0\xa4\xa4\xe5\x36\x7d\xbc\xa9\x2a\xd3\x60\xf7\x6d\xab\xca\x08\x93\xa5\xd4\x6d\x62\x78\x53\xbd\xa5\x51\x25\x65\x5b\xbd\x45\x98\x94\xb4\xdc\x66\x5b\x37\xd9\xd6\xe6\x9a\x91\xd9\xd6\x4d\xa9\x96\x06\xcd\x6d\x5b\xaa\x45\x98\xac\xc1\xee\x65\x5c\x47\xa9\x96\x46\xd1\x87\x6d\xa9\x96\x4d\x11\x96\x09\x49\x78\x5b\x84\x65\x2f\x34\xda\xa5\x9f\xa5\x46\x03\x93\x35\xd8\xbd\xfc\x42\x94\x6a\x69\x94\x24\xd8\x96\x6a\xd9\x9c\x9b\x38\xa1\x12\x6f\xcf\x4d\xdc\xa4\x79\x1b\x25\x09\xb6\x75\x59\xb6\xf9\x5d\xd5\xd7\xfc\xae\xd0\xa0\xa6\x6d\x8b\xb0\x08\xb3\xe0\xbf\x4c\xf9\x6e\x8e\x3c\x6c\x0d\xfd\x5a\x7a\x39\x60\xaa\xe4\xa6\x7c\x37\x29\xdf\xc6\x39\x12\xdb\x94\xaf\x30\xa9\x85\xb9\x2d\xe8\xb2\x49\xcd\x36\xa8\x69\xdb\xca\x26\xc2\xa4\xf0\xe5\x36\x4d\xbb\x49\xad\x36\x6a\x96\x6c\x53\xab\xc2\x84\xbc\xbc\xd7\xf9\x5c\xf5\x8c\xbb\xd4\x2c\xd9\x56\x36\x11\x26\x65\xba\xb6\x09\xd8\x4d\xd2\xb5\x35\x46\xfa\xe5\x77\x04\x26\xe5\x31\xb7\x09\xd8\x4d\x6a\xb5\xb1\x37\x76\x9b\x5a\x15\xa6\x26\x6a\xee\x74\x93\x28\x6d\xec\x1b\xdd\x26\x4a\x85\x49\x79\xcc\x1d\x7e\x5a\x0a\x9c\x34\x88\x62\xdb\xc3\xf9\x76\x30\x5d\xa2\x3c\xe6\x0e\x3f\x2d\xc9\xd1\xc6\x9e\xca\x6d\xb1\x13\x61\xba\xb2\x6d\xa2\x54\x68\x54\x36\xd9\x26\x4a\x85\x59\x18\xe6\x2c\x89\x22\x34\x76\x4b\x6e\x4b\xa2\x08\x93\x52\x9b\x3b\xb4\x5a\xa0\xb5\xf9\x7d\xda\xd6\x36\x01\x2b\x4c\x58\xde\xdb\x73\x00\x37\x45\x54\x1a\x64\xb6\x6d\x11\x15\x61\x52\xcf\x6c\x5b\x44\x65\x73\xf6\x5f\xe3\xf8\xfa\x1d\x6a\x51\x90\xb7\x71\x8d\x3e\x1c\x64\x39\xe8\xaf\xb1\x69\x71\x87\xfa\x11\x7a\x03\x46\x41\x0f\xfd\xdb\xa4\x7c\x1b\xfb\xf2\xb6\x29\x5f\x61\x52\x1e\x73\x9b\xf2\xdd\x54\x4c\x69\xec\x7f\xdb\x56\x4c\x11\x26\xb5\xd1\xb6\xe7\x00\x6e\x0a\x94\x34\x76\xa3\x6d\x0b\x94\x08\x93\xa3\x93\x76\x38\xe4\xc5\x33\x5a\xb5\x8e\xfa\x85\xb1\x14\x30\x29\xb5\xb9\xc3\x58\x8a\x3c\x6c\xeb\xbe\x90\x5a\x14\x87\xfe\x62\x14\x24\x3f\xfb\xc0\xd3\x5f\x6c\x1a\xda\x66\x5b\x37\x29\xd0\xc6\xae\x9e\xbd\x1d\x93\x80\x09\x2f\x7d\x5b\x08\x64\x53\xfc\xa3\xb1\x37\x63\x6f\x3b\x7a\xdb\xd1\xcc\x77\x2d\x04\xb2\x37\xa1\x0b\xc7\xb1\xef\x6d\xaf\x92\x04\x9c\x54\xdf\xdc\x26\x01\xf7\x21\xc9\x4c\xc1\xb2\x7d\xb4\x27\xb2\x28\x8d\x2d\xf2\xc7\x2c\xca\xe1\x40\xaa\x36\x9f\x5e\x3d\x1e\x48\x25\x4c\xaa\x91\x1c\x0f\xa4\x3a\x6c\x6b\x6f\xf3\xe9\x89\xe3\xb6\xf6\xc3\xa1\x4a\x93\xd5\xe8\xf3\xc2\x13\x9f\x17\xa7\x97\x43\x39\x39\x1c\xb6\xf4\xc0\xf3\x69\x59\x5d\x3d\x1e\xb0\x24\x74\x8e\x30\x3e\xa4\x39\x3e\x30\x61\x7f\x1e\xb3\x1d\x87\x03\x96\x3a\xb3\xe2\xe3\x01\x4b\xc2\xa4\x62\xc1\xf1\x80\xa5\xc3\xfe\xf0\x0e\x39\xe2\xb8\x3f\x5c\x98\x54\x2c\x38\xee\x0f\x3f\xec\x09\xef\x50\x1d\x8e\x07\x2c\x09\x13\x26\xe9\x31\x73\x72\xd8\x32\xde\x29\x7b\x7e\xdc\x32\x2e\x4c\x2a\x16\x1c\x33\x27\x42\x7f\xd9\x85\xc7\x76\x11\x39\x53\xb1\xe0\xb8\xb1\xfc\x90\x4c\xe9\x50\x0a\x8e\xc9\x14\x61\x36\x3b\xfa\xd8\xae\x43\xbb\xe8\x1c\xf3\x2b\x87\xcd\xe0\x1d\xce\xd1\x71\x33\xb8\x30\x29\x62\x70\x3c\x99\xe9\x90\x85\xe9\x64\xba\x8f\x59\x18\x61\xb6\x8f\x68\x29\x0a\xae\x6a\x88\xb6\xa2\xcd\x55\x05\x11\x3d\x41\x9a\xa5\x93\x77\x3e\x6e\x19\x17\x26\xa5\x0e\x0e\xe9\x97\x07\x78\xa1\xc6\xe3\x6f\x1f\x7f\xfb\x42\x3c\x1e\xf5\x3d\x64\x4e\x3a\xe9\xd0\x63\xe6\x44\x98\xf8\xeb\x43\x16\xe5\x01\xba\xb0\x2b\xf2\x85\x96\x5d\x38\x10\xbd\x15\xad\xe7\xaa\xc1\xe3\x97\x8f\xc7\x4f\x34\x9b\xba\x7c\xa1\x45\x17\xce\x17\x22\x5f\x88\x49\x24\xbe\xff\x98\x5f\x39\x1c\xd0\xd4\x49\x64\x9d\x4b\x5d\x05\x26\x55\xad\x8e\x29\x17\xa1\x73\xe2\xef\x31\xe5\x22\xcc\xe6\x6b\x87\x8d\xe0\x28\x7c\xd2\x37\xc7\xc3\x9a\x84\x49\xf5\x84\xc3\xc1\x4d\x0f\xf0\xac\x8b\x1b\x55\xcc\x4b\xc5\x6c\xde\xf8\x79\xd6\xd3\x7a\xf6\x74\x9f\x4b\xc5\x34\xe5\x42\xf5\x84\x63\xca\xe5\x90\x5f\xe9\x1c\x0e\x7a\xcc\xaf\x08\x93\xea\x09\xc7\xfc\x8a\xd0\x29\x42\x7e\xcc\xaf\x08\x13\x8a\xf3\x71\x4f\xf7\xb9\x50\x4c\xd2\x11\xe7\x52\x31\xc9\xaf\x4c\xaa\x27\x1c\xf3\x2b\x27\x31\xf5\x6a\x3d\x21\xa2\xa3\xd9\x68\xdd\x61\x39\x9d\x74\x7b\x95\x6a\xf2\x0c\x66\xc7\x4d\xd7\x87\x33\x97\x3a\x2c\xa7\xe3\x99\x4b\xc2\x6c\x43\x11\x8d\x60\x57\x74\xa7\xb2\xf7\x71\x57\xb4\x30\x29\x10\x70\xdc\x15\x7d\xd8\xd0\xdc\x59\x5e\x3f\x49\x35\x49\xaa\xc9\xa0\xa9\xeb\xf3\x2c\x5e\x68\xbc\x10\x2d\x45\xb4\x7e\x2a\xb2\xf5\xa8\x09\x8b\x3a\xc7\x5c\x8d\x30\xc9\xaf\x1c\x73\x35\x87\xd3\x94\x3a\x0b\xd4\xc7\xd3\x94\x84\xd9\xd0\x1c\x36\x4d\xff\x78\xc8\xc2\xf4\xcb\xc7\xfb\xb5\x81\x49\xb1\x81\x63\x16\xe6\xa4\xe7\x0b\x77\x16\xfa\x0e\xbb\x9a\x3f\x30\x9f\x51\xf4\x7b\x43\xf1\x71\xef\xf3\x61\x8f\x72\x67\x25\xed\x78\x90\x91\x30\xa9\x58\x70\x4c\xd2\x1c\xb6\x17\xf7\x94\x14\x85\x22\xbb\xc0\x1b\xfd\x75\x9c\x0d\xa7\xa6\x1d\x33\x32\x87\x33\x84\x3a\xfc\xa5\xe3\x19\x42\xc2\xe4\x48\xa7\x93\xb5\x60\x72\x22\x9d\x63\x61\x8f\x3b\x73\x85\x49\xa9\x83\xe3\xce\x5c\xa1\x73\xf6\xd5\x71\x67\xae\x30\x89\x07\x4e\xf6\x03\xb2\xe7\xb6\x53\xf5\xfa\xb8\xe7\x56\x98\x14\x44\x38\x1e\x18\x74\x38\x30\xa8\x27\x54\xc6\x03\x83\x84\x49\x41\x84\xe3\x81\x41\x87\x94\x4b\xe7\x40\xaa\xe3\x51\x40\x87\x0d\xb6\x93\x6c\xd8\x71\x83\xed\xc9\xcf\xa0\xd1\xf3\x47\xf4\xb9\xf1\xcd\x55\x15\xd1\xad\xe8\xe6\x2a\x7e\x51\x73\x05\x26\x05\x11\x8e\xa9\x9c\x43\xfa\xa6\xb3\xa6\x78\xdc\x86\x2b\xcc\xee\x8d\x9a\x2b\xd0\x39\x44\xea\x98\xdd\x11\x66\x47\x19\xc8\xf4\x3c\xb0\xb8\x8a\x5e\xf5\xa3\x01\xb3\xfb\x78\x3f\x1a\xd0\x59\x36\x3b\xa6\x72\x0e\xe9\x9b\xce\x1a\xd9\x71\x83\xad\x30\x49\xdc\x1d\x53\x39\x87\x24\x4d\x67\x37\xed\x31\x49\x23\x4c\x8a\x2b\x1c\xce\x13\x7a\x80\x67\x15\xae\xba\x7d\xd6\xed\xb3\x14\xf9\xac\xc5\x0b\x31\x56\x16\x5d\x38\x30\x29\xae\x70\xcc\xdb\x1c\xb2\x30\x9d\xbd\xad\xc7\x33\x84\x84\x49\x10\x77\xdc\xdb\x7a\xd8\xa2\xda\x59\x45\x38\x6e\x51\x3d\x9c\x21\x34\xfb\x33\xcb\x3b\x9e\x21\x74\x0a\x6a\xc2\x7e\xd4\x53\x54\x93\xa2\x9a\x60\x0a\x1e\x18\x74\x8a\x9f\x76\xf0\x42\x7e\xda\xe2\xa7\xbd\x68\xaa\x9f\x96\x0d\xa3\x1d\x6e\xcf\x71\xc3\xa8\x30\x29\xae\x70\xdc\x30\x7a\xd8\x30\xda\xe1\xf6\x1c\x37\x8c\x0a\x93\xe0\xf2\x78\x56\xcf\x21\x4d\xd2\x99\xdc\x1e\xd3\x24\x87\x03\x74\x3a\x07\x17\x9c\x6a\xdf\x57\xa6\xe6\xfd\x23\xe2\xb5\xc9\x89\x74\x08\x33\xc7\x9c\xc8\x61\x7f\xe5\x24\x8f\x7a\xdc\x5f\x79\xea\xe3\x04\x3b\xd5\x7f\x4f\xd5\x09\x02\xb3\xa7\x8a\xa8\x2a\x7a\x2c\x8d\xb0\xf1\x98\x39\x11\x26\x95\x14\x8e\x99\x93\x43\x9a\xa4\xb3\x9d\xf1\x98\x26\x39\xa4\x46\x26\x65\x02\x4f\xd5\xe3\x01\xbd\x30\x42\x54\xfb\x9e\x33\x71\x26\x69\xda\xe3\x99\x38\xa7\x62\x8f\x54\xff\x3d\x55\x7b\xac\xda\x63\x56\xe4\x0b\x31\x7c\xc2\xa1\x39\xd5\xe1\x13\x98\xd4\x5b\x38\xee\x83\x3c\x75\xd3\x5f\x7c\xb4\xaa\xab\xe4\x98\x9c\xd9\x71\x43\x9e\x83\x73\xaa\x1f\x0d\xe7\xec\x46\x45\x61\x52\x2a\xe1\x98\xd1\x39\xa4\x6f\x3a\x95\x75\x8f\xe9\x1b\x61\xb2\x09\xe6\x98\xbe\x39\xa4\x6f\x7a\xc5\x03\x98\xbe\x11\x26\xf5\x09\x4f\xd5\xf8\x48\xdf\x74\xca\x19\x1f\xd3\x37\x87\xf4\x4d\xa7\xc6\xf0\x31\x7d\x23\xcc\x4e\xf4\x67\xfa\xe6\xb0\x85\xb1\x13\x66\x9f\xa6\x02\x00\x93\x73\xde\x4e\x63\xb9\x46\xe8\x54\xfc\x3d\x4d\x9d\x00\x26\xd9\xe9\xd3\x8c\xeb\x48\x05\x75\x6a\xf9\x1e\x53\x41\xc2\x64\x5a\x72\x9a\x71\x1d\xb9\x9e\xce\x4a\xc9\x69\x1a\x32\x30\x3b\x86\xec\x6e\xc9\xd3\x6e\x5a\xcf\x17\x6a\x8e\xce\xe4\x7d\x66\x27\xde\x34\xef\x73\xd8\xa8\xd8\xa9\x27\x7b\xdc\xa8\x28\x4c\xb6\xda\x9c\xa6\xbf\x07\x3a\x7c\x9e\xd3\xb4\xed\xa6\x6d\x13\xfd\x99\x1d\x12\x3a\x7c\x9e\xd3\xd4\x42\x13\x46\x1d\x5d\x35\x61\x74\xc8\x08\xf5\xfa\xb9\xd1\x46\x10\x81\x50\x89\xe1\x98\x0a\x3a\x9c\xeb\x32\x49\x91\x1f\xcf\x75\x39\xec\x66\xeb\x94\xa7\x3b\xee\x66\x3b\xec\x60\x9b\xec\x18\x3e\x6c\x63\xfb\x40\x67\x53\xda\x71\x37\x9b\x30\x49\x7e\x1f\x77\xb3\x1d\xf6\xa9\xf5\x96\xff\x4d\xae\x78\xe4\xff\xcf\x48\xec\x2e\x36\x61\x8e\xcf\x8f\x63\x4e\x1c\xde\xd2\x29\xec\x76\x3c\xbc\x45\x98\x6c\x18\x3e\x5d\x03\x06\x3a\x25\xdb\x8e\xe7\xb9\x1c\x76\xc4\x4d\x36\x0c\x1f\x77\xc4\x1d\xb6\xbf\x75\x27\x2d\x6e\x7f\x3b\x6c\x79\x9b\xc3\x17\x31\xb0\xe1\xa4\x96\xee\x4c\xc0\x93\x5a\x0e\xa7\xb3\x4c\xb6\x02\x9f\xae\x01\x73\xba\x4a\x37\xe2\xf6\x74\x15\x61\x0e\xec\xd0\xed\x6f\x87\xc4\x5a\xe7\xc8\xc9\x63\x62\x4d\x48\x1d\x5d\x20\xc9\xf6\xe3\xe9\x58\x18\x75\xae\x4e\x3f\x1f\x51\xe2\x59\xf4\xa6\x16\x46\x9a\xac\xb3\x12\x71\xba\xce\x13\x98\x90\x04\x4e\xd7\x79\x92\x32\xeb\x06\x49\xa6\xcc\x0e\x67\x9d\x4c\xb6\x15\x1f\xcf\x3a\x11\xae\xc4\x6b\x9b\x45\x13\x2e\x07\x7a\xb3\x68\xc2\xc5\xa1\x8f\x67\xb0\xd4\x79\x48\xac\x4d\x36\x0c\x1f\x13\x6b\xc2\x55\x3e\xcf\x0a\x45\xf1\x88\x08\xf1\x86\x91\x2d\x30\xd9\x43\x7c\x86\x43\x25\x70\x69\x61\x9e\xae\x72\x38\x51\x65\xb2\x87\xf8\x0c\xb5\x0f\xb8\xa8\xe3\x78\x86\x16\x06\x5c\xce\x2a\x86\x0a\x09\x4c\x36\x0c\x1f\xcf\x60\x11\x2e\xdd\xa2\xd9\xbd\x43\x2a\x6f\x0e\x14\xc0\x54\x9e\x70\xb1\x57\xf7\x0c\x63\x69\xb3\x7b\x6c\x18\x3e\x66\xf7\x84\x8b\x4d\x3d\x67\x38\x8c\x90\xe4\x9b\x6c\x05\x3e\xc3\x18\x0e\x48\xb0\x02\x8f\x09\x3f\x61\xb2\xc9\xf7\x0c\x87\x70\x20\x5d\xbe\xb6\x1a\x0d\x24\x4e\x3d\x3f\x6e\x63\x3c\xa6\x05\xd9\xf7\x7b\x4c\x0b\x0a\x89\x5c\xca\x31\x2d\x78\xd8\xb3\x38\xd9\xd1\x7b\xdc\xb3\x28\x24\x96\x60\x8f\x99\x42\x61\x0e\x82\x06\xf6\x2f\x3e\xc0\x29\xe0\x9f\x1b\xfd\x68\x04\xf4\xec\xe8\x3d\xe6\x13\x85\x44\xf1\xf2\x63\x3e\x51\x98\xc3\xbe\x77\x78\x03\x92\x1e\xc9\x7c\xe2\x61\x8b\xe1\x64\xdf\xef\x19\x8e\x52\x40\x66\xf7\xc2\x31\x79\x28\x64\x0a\xc3\x1d\x93\x87\x42\x86\xcf\x7e\x4c\x1e\x0a\xf9\xe5\x17\x72\xd9\x02\xc8\x2f\x5b\xaf\x59\x99\x16\x64\xe7\xda\x31\x2d\x28\x64\x72\xdf\xc7\xb4\xa0\x90\xb3\x4d\x75\x10\x1c\x96\xf9\x6f\x5e\x65\x17\x5a\xcf\xfc\x73\xa3\x5d\x48\xc8\x33\x3a\x3a\x61\xc8\x03\xe4\xfa\x11\xf9\x8e\xcc\x3d\x60\xac\x1c\xd3\x82\x42\x76\x26\x61\x5a\x50\x98\x30\x56\x8e\xbb\x2c\x85\xdc\x55\x4c\x3d\x00\x5b\x2a\xe7\x60\x32\xe5\x96\x4a\xa1\x38\xef\x33\x9f\x28\x14\x4e\x49\x3d\xe6\x13\x0f\xf9\xc4\x39\x34\x64\x47\x62\xa0\xe4\xcf\xe3\xed\x7b\x4b\xcf\xf8\xb5\x0d\x83\x81\x39\x08\x07\x4c\x31\x0a\xc5\xf1\xda\x1c\xa2\x30\xd9\xbe\x7b\xa6\xe3\x35\x50\x28\xe3\x7e\xa6\xe3\x35\xe7\xd4\x4c\xb6\xef\x1e\xcf\xa9\x11\x0a\xa5\xb1\x8f\xe7\xd4\x08\x93\xbd\xba\x67\xea\x86\x80\x42\x99\xdb\xe3\xd1\x35\x42\x69\xff\xa6\x52\xd4\xf3\xdf\x7f\x7a\xff\xfa\xc3\xdf\xfe\xc3\xfb\xd7\xff\xfa\xfe\xd3\xfe\x5a\x7f\xf9\xed\xb7\xfd\xf3\xef\xf1\xd3\xfa\xfd\xeb\x0f\x8f\xf4\x2b\xf6\xf9\xe9\xe7\xfd\xdb\xfe\xf3\x2f\x7f\xf9\x6d\xed\xaf\x5f\x7f\xf9\xf5\xb9\x8b\xff\xfd\xdf\x01\x00\x00\xff\xff\xeb\x41\x9d\x3c\xf2\xad\x00\x00"); +var _dag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4d\xab\x3f\xbd\x7a\xa5\x37\x3f\x9f\xe2\x19\x26\x83\x8e\x4b\xa5\x77\x30\x86\xe0\xc6\xe0\x41\x77\x42\x9c\x4e\x02\x21\x34\x52\x49\x72\x0c\xf1\xb1\x39\x76\x0f\xfa\xdb\x87\xbf\xae\x6b\x43\x3b\x84\xf3\x8c\x36\xda\x55\xbf\x52\x49\xa5\x92\xee\xb5\xee\xa5\x55\x7f\xf1\xd7\x7f\xfb\xef\xff\xf6\x8f\xff\xf0\xaf\xbf\xfd\xc5\xff\xfc\xa7\x7f\xfa\xfe\x6e\xff\xeb\x6f\xe7\x1f\xfe\xb8\xfe\xb4\xff\xe5\x9f\xfe\xcb\x9f\xbe\xfd\xdb\xdc\x7f\xff\x0f\x7f\xfc\xc3\x1f\xc2\xfb\xdb\xfa\x87\xef\x5f\x7f\x8a\xf7\xcf\xf7\x8f\xe3\x9f\xff\xf0\x87\x5f\xbf\xff\xbb\xff\xfa\x2f\xff\xba\xff\xf1\x6f\xff\x78\xfe\xe9\xb7\xc8\x79\xeb\xbf\xfc\xb3\xe7\xfe\xc5\xff\xb2\xff\xfe\x1f\xfe\xe5\x5f\xff\xf4\x5f\x7f\xfb\xef\xfe\xc7\xf5\x4f\x73\xff\xf7\xbf\xad\x7d\xfe\xf0\x17\xff\xd3\x9f\xd6\xfe\xd3\x3f\xfc\xf1\xef\xfd\xef\x7f\xfe\xeb\xff\xf8\x77\xe1\x3f\xff\xa7\xbf\xfe\xbb\xd7\xe3\x7f\xf7\x5f\xfe\xf9\x9f\xff\x9f\xfd\x8f\xfb\x8f\xff\xfa\x5b\xbd\xff\xd9\x7f\x5c\xf7\xef\x1f\xfe\xe2\xaf\xff\xc3\xf8\xe7\xff\x38\xfe\x71\xff\xf6\x17\xf7\xa7\xff\xee\xd7\x4f\xff\xdd\xaf\x9f\xfe\x37\xc7\xff\xb7\xfd\xa7\x7f\xf9\x87\x7f\xfa\xe3\x6f\x21\xfd\x0f\xcf\x13\xb8\xe4\xaf\xff\xff\xaf\xff\xf5\x9f\xf7\x6f\x3f\x27\xfe\x1f\xff\xe9\x6f\xff\xfd\x6f\xff\x67\xf8\x2d\x3c\xbf\xbd\x39\xc6\xfc\x5b\x78\xc3\xfb\x7f\x79\xf0\x7f\xff\x0f\xff\xb4\xf6\x6f\x0f\xa5\x40\x63\xbe\x7f\x5a\xfb\x5f\xfe\x79\x7c\xfb\x4f\xe3\x8f\x7f\xbf\xff\xf0\xdb\x6f\x7f\xf9\x3c\xcf\xf3\x57\xbf\xfd\xe5\xdf\xfc\xcd\xdf\xfc\xcd\x5f\xfd\xba\xc5\xff\xcf\x19\x7f\x08\xcf\xc3\x4f\xe7\xf9\xfe\xef\xf1\xa7\x3f\xfc\xfc\xe0\x9c\xb3\xfe\xea\x57\xa9\xfc\x2a\x3d\xcf\xe8\x94\xc2\x5f\xfd\xf6\x97\x6f\x78\x5f\x4a\xef\xaf\xd2\xf3\x16\x4a\xf1\xaf\x7e\xfb\xcb\xf8\xeb\xe7\xb7\x94\xee\x55\x9e\x8f\x52\xa5\xb4\x29\x35\x7e\x57\x29\xf5\x7b\x2c\x4c\x4a\x83\xd2\xa0\x34\x29\x1d\x4a\x1f\x57\x09\x94\xd6\xaf\xd2\x8e\xd6\xb7\x7f\x5d\xf3\xdd\x9e\x79\xa8\x21\xdf\x52\x8d\xb7\x0d\x93\xfa\x6a\xbb\x57\xc9\xdc\x59\xed\xf7\xcc\x10\x29\x0d\xae\x49\x0d\x75\x72\x2c\x51\xfa\xfe\xdb\x7e\xa9\xeb\xdf\x94\xf6\xbf\x29\x9d\xff\xb6\xd4\xe8\x89\x4c\xfb\x5a\xa6\xc4\xb1\xf1\xdd\x1a\x22\xf7\x39\x16\x25\x7a\x77\x70\xcd\x87\x3b\x1b\x5c\xf3\xa1\xaf\x27\xcf\xe8\xa1\x97\x66\xe0\x77\xd4\x30\x5f\x9e\x18\xad\x9d\x3e\x15\xae\x32\x7f\xdd\xcb\x9b\x3f\xcf\xcc\x94\xe8\xb3\x59\x6e\x69\x7a\x66\xa5\xc4\xbd\xcc\xc6\x99\x3c\xbf\x79\xfb\xac\xfc\xdc\xcb\xa0\x44\x1b\xe6\xe4\x4c\x6b\xff\x28\x79\xe6\x6d\x5f\x1e\xf4\xee\xdc\x94\x78\x7e\xf3\x50\x1f\xfd\xf2\x3d\x94\x78\x46\xdf\xaf\xf6\xc5\x77\x70\x67\xdf\x1d\x75\xc1\xfa\xbe\x48\xdb\xb9\xb3\x8f\xbe\xde\x9e\x49\x5f\x47\xda\xf7\xfd\x6a\xdf\xf3\x7e\xd4\xb0\xec\x41\x7a\x62\x05\x4a\x1e\xa3\x07\x17\x6d\x58\x8c\x9e\x63\x29\x31\x96\x68\xc3\xba\x3d\xf8\x3a\x5a\x57\x61\xb4\x72\xd7\x8b\x31\x1f\xb8\xb3\xc5\xa8\x0b\xd6\x70\x7b\xe9\x2d\xb4\x7d\x7d\x5c\xc5\x33\x6f\x2f\xbd\x99\x9e\x5f\x8c\xeb\x42\x7d\xfb\x3e\xbf\x37\x52\xc3\xbe\xcf\xe8\x1d\xf4\xc4\xbe\xcf\xe8\x7d\xb9\xe6\xee\x5c\x93\xb6\xef\xfb\x8c\xde\x69\xe9\x57\xed\x31\x2e\x6a\xd8\x1f\x25\x6b\xa0\xf6\x97\x7e\xd9\xd4\xfe\x72\x67\xfb\x50\x3b\xf5\x9d\x87\x12\x6f\xc7\xb9\x63\xb0\x24\x6a\x3f\x2f\x25\x6a\x38\xf7\x19\xbd\xdd\xdf\x25\xc6\x0b\x33\xca\xb9\x3d\x18\x3a\xb5\x9f\x42\x89\xe7\x77\x2a\x25\xaf\xd2\x28\x59\xc3\xa4\xe4\x55\x3e\x4a\x8d\x92\x6d\xb0\x3e\xdb\xe0\x35\x7d\x8f\x6e\x4f\x04\xe7\x3a\xfa\x33\x3c\xe1\xdf\x1c\x7b\xff\xcd\xb1\xc8\xb1\x44\x89\x51\x40\xcf\xff\x1a\x8a\xbf\xde\xb1\xf0\x52\xe2\x49\x3f\x1e\x63\x76\xe3\xa9\x84\x67\x30\x76\x23\x25\xda\xf0\xab\x27\xf6\x1f\x97\x33\xf0\xff\xcf\x94\x1c\x9e\xc3\x23\xe2\x92\xe1\xbe\xd2\x91\x97\x31\x84\x74\x4b\xbc\x54\x21\x54\x8e\x71\x9b\xa1\x31\x58\xa9\x3c\xfc\xba\x95\x1c\x72\xa7\x34\x28\x4d\x4a\x93\x92\xd7\xfc\x28\x2d\x4a\xeb\x96\x8a\x35\x6c\x4a\x34\x21\xfc\xba\xb3\x9c\xf7\x7d\x39\xc2\xfb\xab\x3b\x6b\xda\xd4\xf0\xfe\xea\xce\xfa\x79\x9f\xef\x6d\x7a\x6e\x74\xee\xcb\x34\xd1\x3c\xc6\x34\xd1\xa8\xef\x65\x9a\x68\x74\xfc\xcb\x34\xd1\xb8\xcf\x97\x69\xa2\xdd\x17\x2e\x44\xa6\x89\x46\x7d\xf1\x0e\xc1\xec\x03\x8b\x2f\x25\x7a\x22\xde\x21\x98\x5f\x8f\x31\x0d\xbe\x1e\x63\x1a\x0c\x1e\x63\x1a\xec\x1e\x63\x1a\x64\x51\x0b\x91\x69\xf0\xe1\x41\xc7\xce\x99\x3c\x95\x48\xfb\x1e\xaf\x42\xfb\x82\xbf\xa3\x7d\xc1\x6b\xd2\xbe\x70\x07\x6b\x48\xb4\xa1\x72\x66\xa2\x0d\x85\x5e\x4a\xb4\x21\x7b\x8c\x36\xf8\x8c\x12\x6d\x28\xf4\x44\xa2\x0d\x3e\xa3\xc4\x7d\x6e\xee\x2c\x71\x9f\x9b\xda\xef\x02\x1b\x9f\x48\xed\x77\x81\xcd\x31\x79\xec\xe3\x18\xd7\x3c\x4c\x98\x8b\xde\xbd\x2f\xe3\xf3\x7e\x1e\x6b\x94\x78\xee\xa7\x53\xba\xcf\xe8\xbd\xa3\x2e\xed\xb7\x51\xea\xb7\x14\x0b\xa5\x41\xe9\x50\x9a\xb7\xd4\x32\xa5\xef\x96\x58\x10\x5e\x47\x5d\x7b\x29\x31\xea\xba\x57\xb9\xa3\x2e\x0c\xea\xbb\xa3\x2e\xbf\xa7\x53\x0a\xb7\x45\xb4\xef\x7d\xdf\x5b\x2a\x1e\x8b\xb7\x34\xb9\xca\xfb\xab\x07\x73\x67\x11\xfd\x35\x5b\xfc\xf6\x97\x79\x36\x6a\x7f\x7f\xb5\x3d\xaf\x65\x0d\xbf\xda\x9e\x77\xf5\xcc\x46\x89\x36\xbc\xf7\xad\xda\x27\x51\xba\x6f\xd5\xc9\x5e\xe5\xf6\xee\xe1\xa9\xbc\x77\x94\x17\x47\xe4\x7b\x47\x79\xc9\xdb\x33\x7f\xb5\xaf\x66\xa6\xba\xf7\x8e\xf2\x5a\x2a\xf7\x79\x47\x79\x3b\x93\x5e\xba\xa3\xbc\x17\xdb\x90\xef\x08\x49\x2f\x35\xe4\x78\x7b\x90\xd1\xfa\xe6\x74\x4b\xbc\xef\x6f\xce\x1c\xf3\xcc\x42\x29\x52\xaa\xb7\x94\x2c\xf1\xfc\x78\xfb\xdf\xcc\xf3\x6b\xd6\xc7\xf3\xe3\xdd\x7c\x33\xcf\x6f\xd2\x2f\x99\x59\xc3\x67\x9b\x9d\x35\xb8\xeb\xec\xac\x41\x7f\x66\x9e\x9f\x6d\xbf\x61\x64\x7e\x3b\xc7\x0a\xcf\x28\xf0\xbb\x1b\x46\xe6\x98\xb8\xeb\x72\x9f\x51\x24\x74\x7b\xcb\x7d\x46\xf1\xe3\x49\x17\xda\xc0\xb2\xf2\x16\xda\xf0\x78\x4d\xda\xf0\x78\x26\x6d\xf0\xb9\x17\xda\xf0\x7a\x26\x63\xf0\xd7\xe8\xf9\xb3\x53\xf2\x5b\x68\xde\xf6\xc6\x36\x1d\xe8\x4d\x1f\x4a\x54\x57\x1f\xba\x93\x6e\xa9\x81\xd2\xa6\xf4\xd2\x9d\x96\x78\x7c\x4c\xe5\x6f\xbd\x4d\x0f\xac\xa8\x6f\xbd\x4d\x7f\x7d\x60\xb5\x30\xe4\x69\x42\xad\x74\x92\xc7\x1a\xdd\x42\x47\xdc\xf8\x36\xc7\xed\xb1\x3b\x3c\x6b\xf0\x5e\xee\xf0\x6c\x9b\xa6\xdf\xf8\x36\x77\x3b\xfe\xc6\xb7\xb9\x13\xa3\xbf\x37\xbe\xcd\xbd\x72\x95\x76\x5f\xb1\x99\x2d\xdd\xc7\x37\x0f\xad\x6d\xf7\xf1\x7d\xac\xa1\xef\x8d\x7d\xf3\x07\x5e\x78\x6f\xec\x9b\x3f\x5f\xcd\x76\xdb\xf0\x55\x5a\xdb\x2a\x2f\x1c\x83\xae\xdd\x36\x2c\x26\xb0\xb7\xdd\x3b\x5b\x87\x5e\x6a\x8b\xd7\xcf\x6b\x6e\x5e\x3f\x8f\xdd\x81\x65\x54\xf7\xf6\x3b\x31\x1c\x62\xfb\xb7\xff\xba\xeb\xf2\x26\x6a\xe8\xf4\x7c\xa0\xf6\x4e\xcf\x33\x5d\xbf\x9d\x17\xe7\xf1\x4c\x5e\x9c\xd7\x12\x2f\x4e\xf4\x4c\x06\x5d\xa4\xaf\x3b\x83\x2e\x59\x7b\xa7\xb5\x1e\xf3\xc5\xa1\xed\x9d\x41\xd7\xad\x9d\x41\xc7\x42\xf2\xf6\x45\x89\xf6\x75\x46\x16\xcb\xd1\xdb\x19\x59\x83\x63\x83\x91\xf5\x71\x95\xc1\xc8\xfa\xb8\xb3\x41\xfb\x3e\xda\x3e\x68\x03\xb1\xef\x3b\xb8\x4f\x82\x84\x77\x10\x16\x38\x7a\x06\x61\x81\x2f\xdc\x20\x2c\x28\x8c\x82\xe1\x4b\xcc\xeb\x37\x78\x89\x3b\xc7\x2e\x22\xc9\xbf\xd6\x8c\x5b\x4a\x8c\x4f\x7a\x62\x32\x3e\x83\xc7\x18\x9f\xf6\xcb\x64\x7c\xfa\xae\x5c\x2c\x91\x63\xf2\x9a\x2e\x4e\xf4\xcb\xc5\x12\x39\xfa\xe6\x5c\x2c\x91\x63\xa3\x0d\x17\x4b\xe4\xe8\x02\x74\xb1\x44\x8e\x2c\x55\xef\xc5\x12\x39\xda\xf6\x8b\x25\x72\xdb\xb4\xe1\x62\x89\xdc\x5f\xee\xe5\x62\x89\xdc\x9d\x0a\x3e\x96\x87\xd7\xab\x64\x4a\x5e\xa5\xf0\x06\x50\xfb\x77\xdb\xf7\x39\x96\xbe\xc6\x98\xf7\x98\xa3\xc0\xab\xdc\xf6\x7d\x2c\xef\xbf\xd6\xcb\x3b\xae\x3d\xf3\x63\x5c\x5b\x3b\xa3\xfc\x70\xe6\x62\x24\xfb\x34\x17\x23\xd9\xe9\xec\xa2\x95\xf2\xba\xc0\x5e\xb4\x52\x5e\xc7\xe0\x45\x2b\xe5\x4d\xf4\xd9\x45\x2b\x25\xbf\x5e\xb3\xdc\x52\xa3\xaf\x2f\x5a\x29\xd9\xa7\x79\xd1\x4a\xc9\x83\x3b\x5b\xfd\x96\x26\xbd\xb4\x06\x0b\x17\x4f\xe5\x22\x99\x52\x0e\xa3\xee\x22\x99\x52\x7f\xee\xec\x2e\x71\xd5\x40\xe0\x22\x99\x32\x5f\xcf\x3c\xb7\x54\x18\xc9\xfb\xb9\xa5\x4a\x0d\xfb\xb6\x6f\xfa\x34\xf7\x6d\xdf\x5c\xe9\xf7\xa6\xe4\x1d\x39\xd1\x9f\xdd\xa6\xff\x4c\x44\xfb\x36\xfd\x73\xed\xdd\xbf\x9a\x5e\x1f\x57\xa3\x0b\xa3\xea\xeb\x83\xbe\x30\xaa\xfe\x74\xe7\x85\x51\xf5\x8d\x9e\x39\x6e\xc9\xe1\x79\x61\x54\x7d\x5d\x5f\x2f\x8c\xaa\x6f\xf6\xcc\x75\x4b\x83\x61\x76\x61\x54\x8d\xcd\x63\xbc\xc4\x81\xdf\x1d\x5e\x62\x5f\x8e\xc3\x4b\xec\x24\x7c\x9c\xa4\xb8\xeb\xe3\x24\x45\x77\x1e\x26\x29\xef\xec\xf0\x82\x3b\xb9\x1d\x26\xa9\x44\xdb\x8f\xab\x3b\x83\xe0\xf0\xf2\xfb\xf8\x0e\x2b\xe3\xba\xd7\x8c\x0f\xf7\x42\xc4\x17\x1f\xee\x65\x6d\x4a\x2f\x13\x43\xa6\x14\x29\x25\x4a\x85\x78\xec\xa3\xc4\x84\x72\xbc\xe6\x60\xe1\x1a\x94\xee\x90\x7f\x89\xf1\xe2\xf3\xb1\xf2\x1f\x4a\xbc\xb6\xe1\xf6\x6e\x0c\xbc\xb6\x00\xe6\x18\xbc\x17\xce\x0c\x44\x75\x89\x6b\x06\x22\x86\xc4\x5d\x07\x22\x06\x62\xae\x5f\x61\xc4\x2d\x51\x5f\x20\x62\x28\x5e\x85\x69\xa9\xd0\xbe\xc0\xb4\x34\x27\x25\x97\x4d\xcf\x64\x5a\x22\x82\x8e\x60\xa5\x78\x22\x25\xa6\x25\x26\x94\x48\xd4\x1a\xb7\xd7\x64\x5a\xda\xde\x19\xed\xdb\xf4\x0b\x51\x6b\x3c\xfc\xce\xa8\xd5\x3e\x33\x6a\x3d\xf4\xb5\x51\x2b\xcb\x74\x24\x6a\x8d\xbb\x50\xa2\x7d\x9b\x9e\x20\x6a\x8d\xe7\xa5\x44\xfb\x0e\x3d\x41\xd4\x1a\x79\x51\xe3\x6b\xfb\xac\xc1\xf6\xd1\xd7\xaf\xed\xb3\xbe\xdb\xbe\xb2\x2c\x2d\x4a\xd6\x47\x58\x10\xbc\x97\xc3\x14\x49\xdb\x6f\xd4\x9a\x3b\x54\x5a\xbc\x51\x6b\xee\x95\x1e\x8c\x4c\xbb\xc4\xb7\xf1\x62\xb3\x3c\x33\xf7\x72\xb1\x59\x9e\x8d\xde\x8d\x86\x0c\xf4\x52\x24\x2a\xb7\x07\x23\x21\x03\xd8\x33\x46\x43\x06\xaf\x39\x99\x4c\xbd\x8a\x53\xab\x57\x59\x04\x09\xde\xd9\x26\x48\xf0\x9a\x04\x10\x8e\xc1\xe4\xb4\xcb\x9d\x25\xa7\x5d\xda\x9e\x98\x5a\xa1\x69\xe2\xc5\x5f\xe5\xcd\x5c\x33\x31\xb5\x0e\x7f\xc7\xd4\xea\x9d\x5d\x6c\x56\xaa\xbd\x74\xb1\x59\xa9\xe0\xd2\x98\x98\x3e\x59\x64\x62\x5a\x4c\x91\xb4\x21\x31\x7d\x7e\x1e\xbb\xd3\xa7\x4b\x4e\xcc\x0f\x25\x9e\x6d\x0e\xcc\x75\xb4\xe8\x22\x84\xf2\x25\xcf\x8c\x94\x3c\x93\x39\x12\xf2\x2c\x5e\x84\x50\x7f\xad\xeb\xb7\x54\x98\xb3\x78\x62\x17\x21\xd4\x08\xd2\x8e\x17\x21\xd4\xb4\xbe\xdf\x99\x92\xe3\x05\x0f\x35\xd9\xf4\x0b\x1e\xaa\xc0\x37\x5e\xf0\x50\x33\xb1\x68\xbc\x20\xa0\x0a\xf3\xe3\x05\x01\xb5\x54\x1a\x7b\x41\x40\x2d\x83\xdb\xbc\x20\xa0\x96\xe9\xef\xee\x6d\x16\x5f\xb8\x0b\x02\x6a\x75\xb0\x5e\x10\x50\xeb\xe6\x11\x5d\x10\x50\xab\xaf\xed\x05\x01\xb5\xb3\x2e\xc7\x0b\x02\x6a\x9f\x5e\xe5\x4e\xe5\xc3\xc1\x7a\x23\xfd\x3a\x58\x8d\xa2\x11\x3b\x80\x32\x1a\xb1\x77\x4b\x4c\xc9\xac\x9a\xb1\x32\x25\x0f\xda\x5e\x99\x92\x1d\x12\x95\x29\x99\xd5\x3d\xde\x88\x3d\x9d\xc7\xab\xdc\x29\xf9\x04\x4b\x83\x63\xdc\xe7\x8d\xd8\xd3\x09\x5e\xe5\xe3\x18\xbd\x74\x59\xe7\x24\x7b\x15\x1b\x53\xb9\x53\x41\x63\xfa\x24\x3a\x8b\x8d\x36\xf8\x82\x37\xda\xe0\xc4\xd0\x68\x83\xbd\xd4\x68\x03\x4c\x76\xbc\x11\x7b\xfa\x79\x71\x6e\xc4\x9e\x8c\xb5\x23\x11\x7b\x70\x12\x6e\xc6\x94\xbc\x46\xcd\x98\xd2\xda\x89\x29\x89\xf8\x22\xb1\x7d\x28\x96\x40\x55\xd5\x1a\x88\x37\x9b\xb5\x13\x6f\x42\x66\x45\x62\xfb\xd7\x17\xf5\xc6\xef\xf9\x25\xbf\x10\x3b\xd1\xa7\xd3\x52\x07\x39\xc1\x1e\xc7\xce\x14\x49\x84\x12\x3b\x53\x24\xf0\x39\x76\xa6\xc8\xd7\x1a\xee\x7d\x26\x9f\xca\x8d\xd1\x73\xb2\x77\x6f\x8c\x9e\x13\x64\x4f\xbc\x31\x7a\x4e\x3e\xa3\x1b\xa3\xe7\xe4\xcb\x78\x63\xf4\x9c\xec\xb3\x1b\xa3\xe7\x64\x9f\xdd\x18\x3d\x27\x38\xc5\x38\x22\xbf\xf3\xcc\xc4\x31\xda\x7e\xe3\xf7\x9c\xbc\xeb\x51\x28\xd1\xa2\x51\x29\xd1\xf6\x1b\xdb\xe7\x04\x37\x1f\x89\xed\x13\xcc\x64\x24\xb6\x2f\xdb\x3b\x9b\x4c\xe5\xfe\xce\x69\xde\xfa\x6e\xfb\x6a\xb4\x86\x4d\xc9\xdf\xdd\xf6\x19\xd5\x45\xe2\xfe\x9f\x29\xeb\x66\x22\xf2\xcf\x74\x76\x33\x11\xb9\x12\x6f\xc6\x9b\x89\xc8\x95\x58\x3b\x82\x02\xba\xd3\x0b\x28\xa0\x57\xaf\x39\x38\x46\xed\xa0\x80\xee\x5c\x00\x0a\xe8\xd5\xab\x80\x52\x21\x89\x22\x28\xa0\x37\x7a\x90\x68\x7e\x42\x2e\xc5\xcf\x65\x85\xdf\x11\xcd\x4f\xf0\x73\x24\x9a\xff\x1c\x2f\x46\xf3\xd6\x40\x34\xbf\xec\x25\xa2\xf9\x6d\xef\x12\xcd\x6f\x97\xb1\xcf\x25\x87\x16\x11\xcd\xff\xbc\x8d\x44\xf3\xe6\xb8\xe2\xc7\x92\x63\x98\xf5\xb1\xe4\x2c\xae\x72\x23\xfd\xf2\x33\x92\x8d\xe6\x1d\x4b\x46\xf3\x2e\x08\xcb\x25\x87\x6b\x12\xcd\xbf\xf9\xf7\x88\x8b\x68\xa0\x1f\xad\x8e\x40\xdf\x08\xc5\x40\xdf\xf5\x95\x80\xbd\xfa\x02\x10\xb0\xd7\xc8\x63\x20\x60\xaf\xc4\xd3\x91\x80\xbd\xba\xd6\x13\xb0\x57\xd2\x04\xd1\xa8\xdc\x57\x8c\xa8\x7c\x16\x7f\x97\x09\xfb\x69\xc2\x8d\xca\xcb\xcf\x63\xb8\x51\x79\xf9\xb2\xf5\x35\x4a\xbc\xee\x37\x2a\x2f\x1f\x91\x77\xbc\x91\x77\xf9\xe0\xdc\xe2\x8d\xbc\xcb\x67\x34\x71\x23\xef\xf2\x19\x0d\x6e\x56\x4d\xbb\xec\x46\xd7\xf5\x81\x79\x8d\x37\xba\xae\x2f\x34\x4d\xbc\xd1\x75\x7d\xad\xfd\xb0\xe4\x54\x1e\xca\x8d\xae\xeb\x80\x6f\x8c\x37\xba\xae\x9f\x91\xc6\x8d\xae\xeb\x67\x1c\x77\xa3\xeb\x7a\xec\xeb\x73\x97\x9c\x03\x77\x1d\x6f\x02\xa3\x9e\x69\x0d\xbf\xda\xd0\x1e\xa7\x89\x9b\xc0\x68\x26\xed\xe2\x4d\x60\xb4\xc7\xc9\xe6\x26\x30\x9a\xc9\x86\x74\x23\xf6\xf6\xf0\xa2\xa6\x1b\xb1\xb7\x07\x66\x32\xdd\x88\xbd\x3d\x0c\xf9\x74\x93\x14\x2d\x6c\xcf\x2c\x94\x06\xa5\x7a\x4b\xc7\x63\x8d\xd2\x47\xe9\x57\x1b\xda\xfb\x58\x1a\xb7\xc4\x40\x4e\x37\x9a\x6f\x26\x99\xd2\x8d\xe6\xdb\x4b\x3c\xfd\x6b\xe6\xfa\x55\xaa\xde\xe7\xa6\xe4\xb1\xdb\x86\x02\xfe\x4a\x37\xd2\x6f\x8d\x98\x24\xdd\x48\xbf\xb5\x44\x7d\x37\xd2\x6f\x8d\x21\x9f\x6e\xa4\xdf\xba\xed\xbb\x91\x7e\x2f\x8c\xac\x14\x58\xaa\x48\x9e\xa6\xe0\x72\xdb\x28\xb1\x54\x81\x8e\x12\xfc\xf4\x49\x5e\x85\xe5\x96\xa5\x2a\xc1\x4f\x9f\x6c\x89\xe5\x16\xca\x21\xc1\x4f\x1f\xc6\x7c\xba\x91\x7e\x32\xad\x9b\x6e\xa4\x9f\x0e\xa3\x2e\x05\x96\x62\x26\xcc\x74\xa3\xf9\x74\x78\x73\xd2\x8d\xe6\xd3\x21\xf0\x48\x37\x9a\x4f\x87\x58\x2d\xdd\x68\x3e\x1d\xa8\x98\xf4\xb2\xdc\x42\x32\xa4\x97\x36\x10\x09\xa7\xd7\x36\x14\x4a\xb4\xc1\x5e\x7a\x6d\x83\x67\xd2\x86\xe2\xbd\xd0\x06\xa6\xe4\xf4\xd2\x06\x90\x61\x7a\x69\x43\xf4\x9a\xb4\x81\x77\x2c\xdd\x68\x3e\x99\xb6\x4e\x37\x9a\x4f\x87\x25\x3c\x45\xda\x97\x69\x51\x14\x19\x52\x7b\x94\xc4\xa4\x97\x88\xe6\x83\xcf\x81\x68\x3e\x54\xfa\xec\x66\x53\xb2\x49\xbb\x14\x41\x8d\x90\x28\x89\x88\xfd\x7d\xad\x6f\xb3\xa0\x73\xcd\x1b\x95\x67\x91\x76\x4a\x20\x27\x92\x7d\x29\x81\x9c\xaa\x25\x90\x93\xf5\x25\x96\x54\xf0\x65\x4a\x2c\xa9\xaf\x25\x96\x54\x12\xb2\x29\xb1\xa4\x46\x4b\x2c\xa9\x88\x1e\x52\xba\xf7\x99\xec\xc1\x44\xc8\x00\x69\x9a\x12\x21\xc3\xaf\x67\xf4\x67\xa7\xe4\x94\x88\x26\x7c\xec\x89\x68\xc2\x57\x3a\x11\x4d\xd8\xd5\x99\x68\x82\xbc\x6a\xca\x44\x13\xbe\x8c\x99\x68\x82\xf5\x35\x65\xa2\x09\x20\x72\xca\x44\x13\xd1\x63\x34\x3d\xfa\x3b\x9a\xee\x10\xcc\x34\x1d\x78\x92\x32\xcd\x23\x22\x4a\x99\xe6\x39\x04\xb3\xcd\xf3\x18\x6d\x60\x09\x48\xd0\xfd\xe9\xb5\x06\x23\x22\x06\x5d\xa1\x0d\xc4\x08\xe9\x2a\x4a\x72\x71\x22\x22\x15\x20\x9b\x94\x48\x05\x14\x60\x77\x22\x15\x50\x80\xc1\x89\x54\x40\xb5\x7d\xa4\x02\x2a\xf0\x2b\x5d\x14\x90\xab\x77\x76\x51\x40\xae\x0e\xba\x8b\x02\x72\xf5\x75\x2f\xf0\xe1\x3e\x3e\x92\x61\xd5\x07\x7d\x51\x40\xae\xd9\xab\x10\x11\x39\x69\x14\x23\x22\xef\xe5\xb6\xaf\x41\x16\xa4\x2a\xf0\xe5\x2a\x15\xe0\xdb\xa9\xbd\x02\x7c\xe1\x76\x53\x85\x6f\x74\x92\x82\xef\xef\xdd\xdf\xc1\x37\x12\xb5\x26\xf8\xfe\x0e\xce\x48\xf0\xfd\x9d\x64\x58\xaa\x46\x52\xd6\x40\x24\x05\x06\x49\xf0\xfd\xbd\x7b\x15\x22\x29\x16\xa0\x24\xdf\x0f\x22\x49\xf0\xfd\xd3\x17\x1c\xbe\x7f\x3a\x85\xc8\xf7\x37\x4b\xf0\xfd\x20\xb5\xd4\x8c\xb2\x68\xfb\x0f\xdf\xef\x99\x44\x52\xd1\x63\xf0\xa2\xf6\x0b\x28\xe0\x83\xd7\x4e\xa0\x80\xef\xa7\x86\x7b\x2f\xcb\x27\x2d\xc3\xef\x02\x04\x0a\xd8\xd6\x07\x0a\xd8\x70\x98\xe9\x32\xfc\x79\xdb\xbe\xcb\xf0\xe7\x7d\x3c\x16\x89\xc7\xa8\x0f\x84\xa0\xae\x28\x81\x10\x4e\xf1\x58\xa1\xc4\x33\x02\x21\x9c\xea\x55\x1a\x25\x9e\x03\x0c\xff\x81\x3c\x4b\x9d\xd4\xdf\xc7\x7d\x82\x1e\xce\xf2\x77\x44\x83\x80\xf7\x04\x7a\x38\x10\x33\x09\xf4\x70\x6c\x2d\xe8\xe1\x10\x40\x24\xd0\xc3\xf1\xed\x18\x10\x10\x2e\xfd\x03\xde\x17\xbc\x90\x06\x91\x22\xf1\x74\x1a\x44\x8a\xb0\xb9\x69\x10\x29\x3a\x5e\x06\x91\x22\x89\xce\x74\xd1\x43\x79\xab\xc7\x1a\xc7\x68\xdf\x45\x0f\xe5\x2d\xdc\xf5\x45\x0f\xe5\xb5\x77\x2f\x7a\x28\x2f\x94\x4a\xba\xe8\xa1\xfc\x2c\xef\x17\x3d\x94\xd7\x5e\xba\xe8\xa1\xbc\x4e\xc2\x17\x3d\x94\xd7\x37\x60\x12\xed\x42\xc8\xa5\x49\xfb\x50\x71\xa4\x49\xfb\x0c\x27\x26\xed\x23\x47\x92\xa6\xed\xe3\x9a\xd3\xf6\xd1\x13\xd3\xf6\xd1\xa2\x69\xb8\xcb\xbd\x4c\xc2\xdd\x5f\xef\xed\x9f\x9f\x92\x27\x91\xb0\x93\xe2\x84\xf2\xf6\x81\x4d\x29\x6f\xba\x7a\xc2\xd9\x10\x37\xa6\x8f\x48\xd8\x17\xe7\x23\x12\xce\xdc\xca\x05\x24\xa5\x1a\x4d\x5c\x40\x52\x2a\x80\x39\x5d\x40\x52\xaa\xeb\xf9\x05\x24\xa5\xba\x66\x5f\x40\x52\x2a\xe9\xb6\xf4\xc1\x1f\x19\xa1\x5c\x40\x52\x26\x59\xd6\x74\x01\x49\x99\x9f\xf7\x32\xe1\x7a\xe8\xea\xcf\x28\xd9\xda\x89\x92\x9d\x50\x3e\xa2\x64\x80\x53\x22\xbd\xf0\x01\x9c\x12\xe9\x85\x8f\xec\x6c\x02\x90\x7c\xa8\x0e\x12\x80\xe4\xab\x96\xe0\xd8\x11\xe8\x24\x00\xc9\x57\x2d\x11\xcd\xfb\x82\x83\x3a\x3e\x40\x7f\x02\x75\x7c\x0e\x4f\xd2\x0b\x9f\x03\x84\xf4\xc2\x07\xf8\x4b\xa4\x17\x3e\x80\x61\x22\xbd\xf0\x19\x61\x82\x56\x3e\x87\x20\x68\xe5\x03\x8c\x25\xd0\xca\xe7\x90\x00\xad\x7c\x0e\x79\xd0\xca\xe7\xf4\x09\x5a\xf9\x99\x96\xcc\x21\x38\x20\xcd\x21\x00\x36\x93\x39\x84\x9f\xab\x74\x4a\x9e\x49\x9e\xc0\x29\xc4\x3c\x01\x18\x24\x99\x27\xf0\xd9\x9a\x27\xf8\xac\x6f\x53\xf2\x77\x57\x05\x10\xed\x97\x9b\x27\xa8\x2a\x58\xd2\xcd\x13\xd4\xec\x02\x0b\x5a\x29\xde\x99\x68\xc5\xe5\x08\xb4\x52\x8d\xfb\x41\x2b\x9d\x94\x61\x02\xad\x74\x52\x86\x09\xb4\xd2\xa7\xbf\x1b\x90\x60\xd6\x3e\xc1\x35\xd6\x77\xdb\xf0\x13\xed\x8a\x56\x7e\xee\x13\xb4\xe2\xab\x29\x5a\x61\xf9\xcb\xa2\x15\xfa\x33\x8b\x56\x18\x59\x59\xb4\xd2\x07\xa5\x1b\xe9\x3f\xc8\x0f\xf3\x95\x5b\x35\xa7\x89\x0c\x92\x71\x0a\xc9\x20\x99\xb7\x79\x95\x4a\xc9\xfa\x2e\x92\xe9\x3f\xc7\x2e\x92\xe9\xcb\xdf\x5d\x24\x33\xd0\x4a\x64\x90\xcc\x17\x2b\xa5\x8b\x64\x3e\xde\xc6\x0c\x92\x11\x51\x66\x90\xcc\xf7\xd3\xa2\xdb\xbe\xc5\xd2\x91\x41\x32\x8b\x31\x9f\x41\x32\x0b\x41\x65\x06\xc9\x6c\xa2\xd6\x0c\x92\xd9\xa4\x28\xf3\x45\x32\xed\xd8\x13\x17\xc9\xb4\x33\xbd\xca\x6d\xdf\x61\x4c\xe4\x8b\x64\xda\x41\x50\x99\x2f\x92\x69\xf2\xd3\xf9\x22\x99\x76\x3e\xef\x65\xb0\x88\x06\x4a\xbf\xda\xd7\x9f\x6e\xe9\xbb\xa5\xe1\x35\x17\x25\xef\x65\x53\xb2\x86\x43\x89\x36\xdc\x9c\x45\x97\xe4\xcb\x37\x67\xd1\x83\xf7\x72\x51\x4e\x0f\x2c\x7f\xf9\xa2\x9c\x5e\x40\x63\xf9\x15\xa9\x6d\x4a\x99\x63\xdc\xcb\x45\x39\xbd\xbc\xe3\x77\xa6\xe4\x7c\x01\x50\x2f\xaf\x15\x28\x32\xb2\x72\xd2\x58\xd9\x12\xb9\xf6\xea\x4d\x2b\x32\xa2\x73\x5f\x73\xed\x96\xcc\xb5\x73\x63\x82\x1c\x87\x99\x20\xc7\x07\x2d\xc8\x71\x60\x45\x40\x9c\x35\x44\x40\x5c\xf5\x77\x80\x38\xb2\xe4\x39\x02\xe2\xac\x2f\x02\xe2\xbc\x97\x08\x88\x63\x5a\xca\x11\x10\xd7\xbc\x26\x20\xce\xa1\x14\x01\x71\x40\x97\x1c\x01\x71\x68\x09\x72\x04\xc4\xc1\x48\xe7\x08\x88\xab\xd6\x00\x88\xe3\xd5\xcc\x89\xf6\x31\x45\xe6\x44\xfb\x88\xa4\x72\xa2\x7d\x0e\x90\x64\xfb\x18\x12\x00\xa7\x00\x10\xcd\x00\xa7\x40\xe2\x23\x03\x9c\x82\x2f\x07\xc0\x29\x78\x2f\x00\xa7\x40\xec\x94\x01\x4e\xa1\x7a\x2f\x70\xc2\x4c\x98\x19\xe0\x14\x20\x43\x32\xc0\x29\x1c\x4b\x80\x3f\x62\xed\x0c\x3a\x7a\xa3\xbf\x3b\x94\xa8\x01\x74\xf4\x02\xad\x33\xe8\xe8\x05\x84\x67\xd0\x91\x4a\xd6\x0c\x3a\x32\xc9\x9b\x41\x47\x2f\x29\x92\x0c\x3a\x7a\xa7\x67\xa2\xb4\x21\x2d\x98\x41\x47\xd1\xb6\x67\xf8\x62\xfb\x25\x93\x52\x63\x99\xce\x20\xa7\x98\xbd\x26\x29\xb5\x62\x7d\x24\x02\x61\xfc\x32\x78\x28\x2e\xae\x02\x1e\x8a\xc4\x8d\x19\x3c\x94\x1c\x67\xe0\xa1\xe4\x28\x00\x0f\x25\x9f\x2d\x78\x28\xd9\x9f\xe0\xa1\xd4\x3d\x13\x4c\x47\xc4\x97\xc1\x43\xc9\x11\x02\x1e\x4a\x3e\x23\xf0\x50\x6a\xde\x0b\x78\xcf\x89\x16\x3c\x94\x1c\xad\xe0\xa1\x44\xfc\x97\xc1\x43\xa9\x5b\x03\x78\x0f\x16\x3f\x83\x87\x92\xcf\x1d\x3c\x94\x08\x04\x32\x78\x28\x39\xe9\x83\x87\x12\xcb\x66\x06\x0f\x25\x82\x84\x0c\x1e\x4a\xbe\x39\xe0\xa1\x44\x58\x90\xab\xed\xe3\x89\x81\x87\xca\xf1\x9a\xe0\x3d\xdf\x2a\xf5\x4f\xb6\x16\x3c\x54\x8b\x67\x82\xf7\x1c\xbb\xe0\xa1\x5a\x6c\x03\x78\xcf\xe7\x57\x61\xc0\x9d\xf4\x1b\x0c\xb8\x3d\x01\x56\xea\xc1\x12\x78\xcf\x09\x13\xfd\x53\x4f\xfe\x0e\x4c\xe7\xe8\x01\x2b\x99\x81\xca\x60\xa5\xee\xa8\x23\x9b\xd2\x1d\x21\x64\x53\xfa\xf4\x9a\x60\xba\xe1\xef\xc0\x74\x68\xb9\x33\x38\xaa\x3b\x41\x83\xa3\xfa\xe2\x19\x81\xa3\x3a\x88\x24\x83\xa3\x3a\x39\xae\x0c\x8e\xea\x2b\xfe\xde\x94\x0c\xc4\xea\xae\x62\x5d\x38\xcb\x84\x02\xc4\xea\xae\x7e\x40\xac\x9f\xb5\x17\x88\xd5\x5d\xb7\x80\x58\x33\xfb\xbb\xdb\x74\x19\xe2\x0c\xc4\x32\x07\x9a\x81\x58\x13\x58\x93\x81\x58\xd3\xc1\x03\xc4\x9a\xc6\x16\x40\xac\xd9\x79\x0c\x40\xac\x49\xb4\x9b\x81\x58\xd3\x29\x19\x88\xf5\x21\xe1\xcf\x24\x68\x3e\xe8\x96\x4c\x12\xe6\x63\xe3\x48\x26\x09\xf3\x21\xcf\xcb\x24\x61\xbe\xe9\x99\x40\x5d\xb6\xc9\x64\x92\x30\x9f\x6b\x3d\x49\x98\x6f\xfa\x3b\x24\x40\xf6\x0b\x49\x18\x35\x1d\x99\x24\xcc\xfe\xb9\x17\x24\x40\xf0\xe1\x99\x24\x8c\xca\x90\x4c\x12\x66\x43\xfd\x64\x92\x30\x8a\xd9\x32\x49\x98\xed\x54\x40\x12\x66\xdb\x4b\x24\x61\xb6\x3d\x88\x4c\x6b\xdb\x4b\xc8\xb4\x4c\x12\x66\x92\x30\x07\x3a\x29\x93\x68\xf9\x59\xe2\x48\xb4\x1c\x87\xfc\x34\x81\xc1\x50\xfa\x84\xac\x0c\x33\xe4\x56\x6e\x85\xc9\xc8\xad\x0e\xba\x86\x4c\x82\xe6\x90\x04\xcd\xe0\xa1\xe7\xb1\x74\x63\x6d\xb7\xde\x64\xf0\xd0\xf3\x7a\xec\x62\x09\x37\xcd\x64\xf0\xd0\x63\x2f\x81\x87\x1e\xb4\x3c\x19\x3c\xf4\xd8\x67\xe0\xa1\x07\xbe\x38\x83\x87\xdc\x84\x94\xc1\x43\x8f\xad\x05\x0f\x3d\x44\xd7\xf9\x26\x68\xca\x63\x5f\x9b\xa0\xb1\x3e\xa5\x58\xd6\xf0\x23\xc5\xe2\x3e\x4d\xde\x40\x78\xe4\x1f\x29\x16\xfd\x62\xf2\xc6\xfe\x34\x79\x83\x64\x33\x83\x95\x5e\x23\x29\xb0\x92\x08\x21\x83\x95\xdc\xc8\x91\xc1\x4a\xe2\x85\x0c\x56\x7a\x9d\x18\xc0\x4a\xaf\x6f\x1c\x58\xe9\x5d\xb6\x01\x48\xee\xf8\x04\x0f\xa9\xde\xce\xe0\xa1\x17\x55\x6d\x06\x0f\xbd\xc3\x12\x6d\x70\x99\x06\x0f\xbd\x6c\xd2\xc9\x64\x6f\x5e\xa7\x17\xb2\x37\x6a\xc7\xf3\xb6\x0d\xf4\x35\xd9\x1b\x37\xe2\xe4\x4d\x1b\x50\x37\xe7\x4d\x1b\xd0\x97\x64\x32\x3b\xaf\x6f\xce\xb6\x0d\xdc\xcb\xe1\x39\x38\xb9\x1d\xda\x00\x0b\x9c\x8f\x6d\xa0\xe7\x6f\x66\xa7\x64\x9f\xc3\xc5\x4a\x25\xb3\x3d\x2a\x1f\x24\x71\xb6\xe1\xa0\xdb\x70\xe9\xb8\x58\xa9\x14\xc7\xe0\xc5\x4a\xa5\x20\x26\xcd\x17\x2b\x95\xf2\xf8\xbb\x41\xc9\x7b\x81\x1f\x60\x97\x40\xbe\x58\xa9\x94\xc7\xda\x17\x25\x7a\xe9\x62\xa5\x52\x1c\xf3\x17\x2b\x95\xc2\x58\x2a\x17\x2b\x95\x42\x52\xb9\x5c\xac\x54\xca\x53\x7f\x67\x4a\x2e\x0f\x94\x03\x79\xe3\xf2\x40\x39\x90\x6f\x2e\x0f\x94\x43\xf1\x18\x94\x43\xf3\x18\x94\x43\xb7\x72\x28\x07\x56\xf0\xf2\x40\x39\x30\x4d\x94\x07\xc9\x0a\x31\x49\xb9\x30\xaa\xb8\xa2\x96\x0b\xa3\x4a\x6d\x96\xa0\x46\xba\xf5\xa1\x06\x64\xea\x29\x81\x04\x22\x2f\x40\x09\xd0\x26\xf0\x4e\x25\xd0\x06\xe2\xd4\x12\x68\x03\xb1\x45\x09\xb4\x81\x18\xa8\x04\xda\xc0\xe4\x56\x82\x6d\xe0\xce\x82\x6d\xe0\xae\x03\x6d\x28\x9e\x69\x1b\x5e\x4a\xd0\x26\xaf\xbf\x43\x76\xf3\x73\x67\xd0\x0a\xc1\x63\xca\x6e\xe8\xb3\x17\x5a\x01\x68\x5d\x5e\x68\x05\x92\xa7\xe5\x85\x56\x38\x1e\x83\x56\x60\x20\x97\x17\x5a\x81\x17\xbc\xbc\xd0\x0a\x48\xb1\xca\x0b\x6d\x32\xfd\x1d\xd4\xc8\xf4\x4c\xa8\x11\xf4\x2c\xe5\x85\x1a\x19\xde\x0b\xd4\xc8\xf2\x2a\x50\x23\xcb\xab\xd0\x86\xe9\x9d\xd1\x06\x26\x94\x12\x69\x03\x93\x46\x89\xb4\x01\x7a\xa0\x44\xda\x40\x6c\x51\x22\x6d\x20\x32\x2d\xd1\x36\x50\x5f\xa4\x0d\xc7\xdf\xd9\x06\x7a\x30\x42\xfd\x10\xcb\x94\x08\xf5\xb3\x3d\x93\xf6\x2d\x8f\xd1\x3e\xc2\x89\x12\x6d\x1f\x6d\x8f\xb4\x6f\x7b\x4d\xdb\xe7\x31\xda\x47\x3c\x5d\x22\xed\x63\x01\x2a\x17\xf3\xd4\xc7\x71\x7d\x31\x4f\x7d\x88\x14\x4b\x22\x01\x4c\x7c\x5b\x2e\xe6\xa9\x0f\xfc\x66\xb9\x98\xa7\x3e\x84\x0c\x25\x21\x11\x05\x75\x94\x84\x44\x34\x59\x42\x22\x8a\x46\xba\x24\xa9\x1f\x7f\x07\xf5\xf3\x79\x2f\x50\x3f\x9f\xb5\x43\xfd\x2c\xcf\x84\xfa\xb1\x77\x2f\xae\xa9\x4e\xa6\xe5\xe2\x9a\x1a\x09\x2e\xca\xc5\x35\x35\x32\x25\x97\x8b\x6b\x6a\x44\x42\x59\x2e\xae\xa9\xd1\x31\x71\x71\x4d\x8d\x30\xfc\x05\x79\x57\x26\x0d\x59\x90\x77\x65\xdf\x4d\x74\x5a\x85\xb8\xbf\xa0\xd3\x2a\x2c\x2b\x05\x9d\x56\x39\x96\x3e\x4a\x9e\xb9\x20\x97\xac\x61\xa3\xb0\xf2\x9a\x07\x85\x15\xad\x45\xdf\xd5\x59\xe2\x0a\xfa\xae\xce\x22\x53\xd0\x77\x0d\xd0\x66\x41\xdf\x35\xaa\x67\x9a\x6c\xf7\x18\xc9\xf6\xe3\x35\x1b\x34\x14\xf7\x82\xbe\xeb\x80\x2c\x4a\x31\xd9\x4e\x4f\x5c\x24\xd3\x1e\xf6\xe4\x95\x42\xb2\x7d\x7a\x4d\xe8\x2b\x7b\xa9\x40\x5f\x41\x8d\x94\x02\x7d\xe5\x7b\x5b\xa1\xaf\x86\x25\xe8\xab\xf1\x7b\x5c\x72\xa9\x30\x5b\x3e\xbe\x2a\xb3\xc5\x4d\x5f\x90\xd3\xe4\x5e\xca\x05\x39\xed\x21\x82\x2e\xd5\x1c\x3d\x37\x56\xcd\xd1\xd3\xf4\x0b\x72\xda\xeb\x34\x5f\xc9\xd1\x3b\x69\x54\x72\xf4\x3e\xda\x4a\x8e\xde\x81\x5c\xc9\xd1\x0f\x8f\x91\xa3\x9f\x96\xc8\xd1\x3b\x94\x2e\xc8\x69\x46\x13\xe5\x82\x9c\xe6\x4a\x5c\x2e\xc8\x69\xae\xb6\xe5\x82\x9c\xe6\x36\xd4\x72\x13\x42\x4d\x15\x61\x69\x30\x77\x4e\x3d\x0d\xe6\x0e\x36\xa9\x34\x98\x3b\x78\xae\xd2\x60\xee\x00\x40\xa5\xd1\x3e\x22\xef\x72\x01\x50\x2b\xc9\x63\xb7\x7d\xc5\xc5\x09\x00\xf4\x92\xc7\x2d\x17\x00\xb5\x56\xac\x6f\xc1\xb2\x31\x08\x2e\x00\x6a\xc7\xd7\xef\x02\xa0\x76\x00\x55\xa5\xb3\xc7\x0a\xe0\x54\x2e\x00\xea\x0f\x31\x49\xb9\x28\xa7\x3f\xb6\xe1\xa2\x9c\xfe\x33\x24\x2e\xca\xe9\x0f\xbb\xb1\xca\x45\x39\x3d\x10\xe7\x94\x8b\x72\x7a\xf8\xb9\xe6\xa5\xaf\xb2\x0b\xe5\x45\x39\x3d\x03\xc9\xcb\x45\x39\xbd\x00\x1a\xcb\x45\x39\xdd\xad\xb4\xe5\xa2\x9c\x5e\x88\x29\xcb\x45\x39\xbd\x40\x86\x94\x8b\x72\x7a\x49\xb6\x61\x53\x62\xe8\x5e\x94\xd3\x8b\xcf\xef\xa2\x9c\x5e\x5c\x9c\x2e\xca\xe9\x15\x1a\xa3\xdc\x44\x52\x37\x2f\x51\x86\x92\x46\xea\x1b\xd0\x57\x4e\xd7\x03\xfa\xca\x7e\x61\x1b\xc9\xf1\x49\x0f\xe8\x2b\x27\xfd\x01\x7d\xe5\x24\x3c\xa0\xaf\xec\x89\x01\x7d\xf5\x79\x26\xf4\x15\xe8\xa1\x0c\xe8\x2b\x36\x3a\x94\x01\x7d\x65\xef\x4e\xe8\x2b\xe2\xbf\x32\xa1\xaf\x50\x84\x97\x09\x7d\xe5\xd2\x31\xa1\xaf\x9c\x4c\x27\xf4\x9c\xcb\xd8\x84\x9e\x73\x6a\x9d\xb4\xcf\xc5\x70\xd2\x3e\x27\xbe\x49\xfb\x96\xd7\xa4\x7d\x8e\x9e\x49\xfb\x96\x25\xda\xe7\x68\x9d\xee\x9e\xb5\x84\xa4\xd1\x45\x66\xba\x8f\x91\x9e\x98\xee\x63\xe4\x5e\x40\x4e\x6e\xd6\x28\x20\xa7\x17\x51\x40\x01\x39\xbd\xa4\xbb\x0b\xc8\xc9\xad\x4c\xe5\x93\xbe\x62\xf4\x20\x6d\x73\x03\x48\x41\xda\xe6\x8e\x85\x82\xb4\xcd\x38\xbc\x20\x6d\x13\x75\x14\xa4\x6d\xaf\x3d\x8f\xb4\xed\x35\x10\x40\xda\x16\x9d\x6d\x3e\x37\xe2\x78\x15\x14\xef\xd5\xfa\x50\xbc\x1b\x90\x7d\x12\x5d\x1c\x63\x13\x4b\x72\xd6\x58\x10\x41\x2e\x8d\x0b\x22\xc8\x45\x6d\x41\x04\xd9\xd7\x0b\x22\xc8\xfb\x5c\x10\x41\xbe\x8d\x0b\x22\x08\xb6\xba\x2c\x88\xa0\xf9\x7b\xc4\x45\x59\x70\x60\x76\xc4\x82\x03\xf3\xb1\x2f\x38\x30\x27\xc5\x05\x07\xe6\x04\xbd\xe0\xc0\xec\x96\x05\x07\xe6\xe0\x59\x70\x60\xae\x69\x0b\x0e\xcc\x97\x63\xdb\x74\x3a\x62\xd3\x74\xa7\x90\x4d\xd3\x8d\x8f\x36\x4d\x77\xb1\xd8\x34\x1d\xb0\x52\xb6\x4d\xf7\x9a\x05\x9e\xcb\x12\x9a\x07\x52\x40\x65\xa3\x79\x70\xf5\xdb\x70\x60\x0e\xb3\x0d\x07\xe6\x24\xbc\xe1\xc0\x5c\xef\x36\x1c\x98\x1d\xbf\xe1\xc0\x7c\x71\x36\x1c\x98\xd1\xf5\x86\x3f\x82\xf7\x2d\x07\xfe\x08\xb6\xb3\x1c\xf8\x23\xb4\x12\xe5\xc8\x81\x71\x95\x03\x49\x84\xaa\xa2\x1c\x48\x22\xe3\xb8\x23\x49\x44\x0f\x1e\x48\x22\xdb\x77\xe0\xc7\x8c\xb5\x0f\xfc\x98\xd3\xd9\x05\x63\x79\x3c\x1e\x83\x1f\x73\xd9\x3c\xf0\x63\x64\xd0\xcb\x91\x1f\xb3\x04\x3f\x86\x3a\xbd\x5c\x30\x96\xc7\x63\x1b\x68\x1f\x09\xaf\x7a\xc1\x58\x9e\x44\x75\xf5\x41\x0f\x41\x0f\x56\x36\xc6\x4c\x86\x60\x65\x63\xcc\x44\x7f\x51\x1f\x54\xa7\xf4\x6e\x7d\x50\x9d\xb2\x50\x56\x36\xcd\x7c\xd4\x57\xd9\x34\xf3\xf1\x4a\x57\x36\xcd\x7c\xc9\xda\xd1\x4a\x2c\x6b\x47\x2b\xb1\xbc\x26\x5a\x09\x54\x0e\xf5\x91\x24\xf2\x2a\x90\x44\x48\xaa\x6a\x90\x24\x3a\x94\x24\x89\x38\x93\x0d\x35\x6e\xbd\xae\x6c\xa8\x51\xb9\x5e\xd9\x50\xb3\x89\xc0\x2a\x1b\x6a\x0e\x4a\xe4\xca\x86\x9a\xf3\x7a\x15\xb4\x12\xc5\xfa\xd0\x4a\x34\xcf\x44\x2b\xd1\x3c\x86\x1e\x02\x9c\x58\xd9\x34\x63\xe4\x56\xd9\x34\x73\xc0\x82\x35\x48\xbe\xd0\x5a\x10\xd7\x63\xfb\x40\x5c\x0f\xea\xa4\x0a\xe2\xd2\xf3\xa5\x82\xb8\x1e\x60\x77\x05\x71\x3d\x08\xc8\x2a\x88\xeb\xb1\xaf\x41\x5c\xca\x40\xeb\x0b\xb9\x54\x3c\x13\x72\xa9\x58\x3b\xe4\x12\x69\xc1\x0a\x1a\x7b\x98\xa0\x2b\x68\xec\x21\xeb\x53\x41\x63\x6e\x30\xab\xa0\xb1\x07\xec\x59\x41\x63\x0f\x04\x67\x05\x8d\x99\x7b\xa8\xa0\xb1\x97\xf7\xa1\x82\xc6\xdc\x37\x59\x41\x63\x11\x39\x6e\x05\x8d\xbd\xc7\x33\x21\x66\xd8\xc0\x53\x41\x63\xd1\x91\x05\x1a\x7b\xd9\x21\x51\x41\x63\xef\xf1\xcc\xc6\x99\x3c\x07\xd0\xd8\x7b\xfc\x1d\xc4\x8c\x23\x0b\x34\xa6\xbf\x4e\x05\x8d\xbd\xdb\xda\x21\x66\x8e\x35\x40\x2e\x81\x10\x2a\x68\x2c\x86\xf0\x3b\x53\x72\xbd\x40\xad\x44\x58\x93\xca\x5e\x9b\x4c\xd4\x53\x2f\x50\x2b\x99\xbd\x67\x35\xc1\xe7\x30\x99\x56\xf6\xe1\x68\x1c\x53\xd9\x87\x93\xb7\x57\xb9\x4d\x2f\x0e\x09\xf6\xe1\x14\x07\x2b\xfb\x70\x8a\x83\x87\x7d\x38\x05\x36\xb0\x26\xf8\x9c\xd7\xda\xe1\x73\x7c\x71\xd8\xa3\x53\x1c\x4a\xec\xd1\x31\x97\x59\xd9\xa3\x53\x50\x2d\x56\xf6\xe8\x14\x3b\x90\x3d\x3a\x95\xe9\xac\xb2\x47\xa7\x02\xd0\x2b\x7b\x74\xaa\x1d\xcf\x1e\x9d\x4a\x64\x5a\xd9\xa3\x53\x89\x57\x6a\x86\xf0\xb0\xe3\x33\x84\x07\xf1\x51\xcd\x10\x1e\xc3\x1a\x20\x3c\xe0\x5a\x6b\x86\xf0\x40\xe7\x5d\x33\xa4\x8d\x0f\x33\x43\xda\x7c\xd6\x07\x69\xb3\xbc\x17\x48\x9b\xe9\x31\x14\xe1\x4c\x9f\x35\xa3\x08\x67\xa2\xad\x85\xf6\xb1\x2e\xd7\x42\xfb\x88\xf1\x6a\xa1\x7d\x44\x4b\xb5\xd0\x3e\xa8\x91\x5a\x68\x1f\x28\xa0\x16\xda\xe7\x54\x57\x68\x9f\x4f\xb3\xd0\x3e\x22\xc5\x5a\x68\x9f\xd3\x60\x51\x07\xc3\x9d\x15\x08\x9d\x66\x0d\x93\x12\xbd\x74\xc1\x5f\x99\xd3\xbb\x86\xec\xf9\xb9\x0a\x7b\xac\x88\x1b\x6b\x91\xec\xa1\x0d\x15\xa2\x84\x28\xa4\x5e\xf0\x57\x16\xc4\x5a\xbd\x08\xaf\x2c\xb2\xdd\xf5\x22\xbc\xb2\xe0\xa0\xeb\x45\x78\x65\xf9\x82\x5f\x84\x57\x96\x23\xf2\x22\xbc\xb2\x60\x11\xeb\x45\x78\x65\x39\x96\x2e\xc2\x2b\x0b\x0d\x6a\xbd\x08\xaf\x2c\xb6\xbb\xd4\x8b\xf0\xca\x8a\xd6\xbe\x28\xd1\xbe\x8b\xe2\xca\x0a\x1e\xa3\x0d\x8e\x82\x8b\xe2\xca\x42\x0c\x55\x1b\x6d\x70\xcc\x37\xdb\xc0\xf3\x6b\xb6\xc1\x33\x69\x03\xc9\xd3\xda\x68\x43\xf4\x9a\xb6\xc1\x63\xb4\x01\xe6\xbc\x5e\x14\x57\x1f\xdf\xd4\x86\x46\x06\xd8\x5d\x2f\x8a\xab\x0f\x98\xb5\x5e\x14\x57\x1f\x62\xc3\x7a\x51\x5c\x15\x07\xd7\x8b\xe2\xea\x03\x66\xad\x17\xc5\x55\xd1\x58\xbd\x28\xae\x3e\x84\x28\xb5\x43\xf6\xb8\xf8\x5e\x14\x57\x4d\x00\xd7\x8b\xe2\xaa\x7a\xf4\xda\x51\xfb\x93\xea\xaf\x1d\xb5\x7f\xf5\x77\xec\x83\xf3\x5d\xb9\x48\xad\x46\x62\xfb\x7a\x91\x5a\x75\x6b\x79\xbd\x48\xad\xba\x67\xb4\x5e\xa4\x56\xe3\xb4\x86\x8f\x33\xb9\xeb\x8b\xd4\x6a\xfc\xbc\x17\xf6\x03\xdb\xf6\x8b\xd4\x6a\x26\xeb\x53\x87\x3a\x1f\x7e\x37\xd0\xf9\x10\x4a\xd5\xc1\x26\x39\x22\xfd\x7a\x91\x5a\xcd\x04\x56\xf5\xe6\xaa\x6a\x36\x64\x18\x90\x3d\xf6\xfc\x80\xd0\x21\x23\x54\x2f\xc6\xaa\xbf\xc2\xff\xdf\x99\x92\x07\x36\x24\x50\xec\xf5\xc2\xaf\x5a\x00\x08\xf5\xc2\xaf\x5a\xe0\xff\xea\x85\x5f\xb5\xba\xe2\x4c\x76\xef\xb1\x41\xa2\x4e\xc4\x49\x28\x1a\xeb\x85\x5f\xd5\x4d\x25\x75\x22\x4e\xf2\x35\xba\xf0\xab\x16\xd7\x91\x0b\xbf\x6a\x71\x85\x9b\xec\xde\x73\xa5\xba\xf0\xab\x56\xd7\xc9\x0b\xbf\x6a\x73\xe9\xb8\xf0\xab\x36\x68\xfb\x3a\x61\xa1\x5c\xb3\x2f\xc4\xaa\xe6\x63\xeb\x85\x58\xb5\xc3\xe3\xd5\x0f\x86\x0a\xa8\x54\x3f\x85\x52\xdc\xd9\x85\x4a\x75\xc0\x09\xd7\x0b\x95\xea\x40\x2e\x57\x3f\x84\x52\x4e\xec\x17\x2a\xd5\xe1\xfa\x7a\xa1\x52\x55\xbe\x56\x2f\x54\xaa\xcb\xfb\xbc\x50\xa9\x2e\x38\xa9\x7a\xa1\x52\x5d\x24\x06\xea\x85\x4a\x75\xd9\x4b\x17\x2a\xd5\x65\xdb\x2f\x54\xaa\x0b\x25\x6b\xbd\x50\xa9\x2e\x52\x0f\xf5\x42\xa5\xea\x76\x82\x7a\xa1\x52\x3d\xb0\x9d\xf5\x42\xa5\x2a\x40\xaf\x17\x2a\xb5\x27\x58\x5f\x83\x1f\xe3\x3e\x2f\x1e\x6a\x0f\xe9\xc4\x7a\xf1\x50\x7b\x9c\x5e\x16\x4c\xda\xb2\x04\x93\xe6\x12\xb0\x60\xd2\x5c\x1e\x36\x6c\x19\x2c\x77\xdd\xb0\x65\x10\x09\x75\x43\x89\x01\x0c\xeb\x86\x12\x03\x75\xd4\x0d\x25\xe6\x62\xb1\xa1\xc4\xd0\x80\xd7\x8b\x79\xda\xe3\x12\xb0\xa5\xc4\x3c\x06\x65\x84\xd7\x48\xdd\x50\x62\x6c\x0e\xae\x17\xf3\xb4\x08\x42\xa8\x17\xf3\xb4\x68\xcf\x6f\x28\xb1\xed\x31\x28\xb1\x9f\x3b\x83\x12\x03\x21\xd4\x8b\x79\x5a\xb4\xe7\x0f\x94\x98\x6d\xbf\x98\xa7\xfd\x84\x2f\x17\xf3\xb4\x9f\x58\xed\x40\x89\xb9\xc8\x1c\x28\x31\x17\x99\x03\x25\xe6\xd2\x7f\x31\x4f\xfb\x89\xdc\x0e\x94\x98\xa3\xfc\xd0\x3e\xc3\x82\x43\xfb\x5c\xa6\x0f\x94\x9f\x7d\x76\xa0\xfc\x0c\x2e\xd8\x5a\xf4\x42\x94\x54\xc4\x7a\x3f\x71\x1c\x62\xbd\xe8\xe8\x41\xac\x57\xc0\x66\x0d\xb1\x5e\x81\x87\x6d\x88\xf5\x0a\x30\xbf\x21\xd6\x2b\x30\xb6\x0d\xb1\x5e\x23\x9e\x6e\x88\xf5\x5a\xf1\xcc\x8c\x04\x2f\x50\x2a\x48\xf0\x12\xa5\x8a\x04\xaf\x51\x1a\x08\xeb\x36\x25\x04\x79\xc3\x7b\xf9\x10\xd6\xf9\xbb\x45\x29\x52\xda\xc8\xec\x3c\x76\xa0\xfc\xb8\x17\x04\x79\x9b\x31\xd8\x10\xe4\x1d\x76\x17\x34\x04\x79\x87\x67\xdb\x10\xe4\x1d\x42\x8d\xa6\x20\x0f\xd4\xd8\x14\xe4\xf1\xa4\x9b\x82\xbc\x6d\x0d\x08\xf2\x50\x6f\x37\x05\x79\x8c\xd6\xa6\x20\x0f\x94\xda\x6e\x96\xa9\x3f\x9f\xd7\x44\x90\xc7\x98\x6f\x0a\xf2\xbe\xdf\x8b\x92\x9b\x5a\x3d\x26\xe1\x86\x56\xcf\xdd\x35\x0d\xad\x5e\x80\x23\x6a\x6a\xf5\xec\x08\xb4\x7a\x19\x7a\xa0\xa1\xd5\xfb\x79\xd0\x28\xf0\x6a\xf1\x58\xa5\xc4\x63\xbf\x00\xa8\x57\xa6\xc1\x76\x01\x50\xaf\x36\xfd\x02\xa0\x6e\x1c\xd7\x2e\x00\xea\x8d\xa1\xdb\x2e\x00\xea\x0d\x3e\xa7\x5d\x00\xd4\xdb\xf2\x2a\x9b\xd2\xa1\x74\xef\xda\xcd\x0c\xed\x02\xa0\xee\x46\x87\x16\x35\x4b\xe2\x2a\x48\xf0\x36\xab\x66\x63\x2f\xd1\xf3\x5a\x92\xa7\xe4\x9a\x38\x03\x68\x4c\xda\x70\x06\x10\x18\x36\x65\x76\xc7\x6b\x0e\x8e\x59\xdf\x05\xda\x6a\x09\x1a\xae\x01\xcf\x63\xe9\x82\xd4\x87\xcd\x2f\x8d\x3d\x48\x4f\xb0\xbe\x43\x89\x9e\xc7\x35\x40\xc8\xda\xd8\x9f\xe4\x64\xda\x94\xd9\x1d\xcf\x8c\xd4\xc0\x73\x40\x66\xa7\xe6\xa1\x25\xdb\xc7\x7d\x26\xda\x77\xbc\x8a\xed\xb3\x44\xfb\x58\x44\x1b\x32\xbb\x87\xed\xe3\x0d\x99\xdd\x13\xbc\x0a\x3c\xa5\x4f\x2c\xc1\xc3\x02\x0c\x1b\x32\xbb\x87\xb8\xa3\x21\xb3\x53\x47\xd1\x12\x3c\x2c\x0b\x73\x43\x66\xa7\x3a\xa2\x21\xb3\x7b\x98\xea\x1a\x32\xbb\x40\xd2\xb5\x21\xa5\x0b\xd0\x1f\x0d\x29\xdd\xcf\x88\x44\x4a\xa7\x5e\xb4\x21\xa5\x53\x4b\xda\x90\xd2\x05\x47\x1d\x52\xba\x37\x7b\x0c\xbe\x3f\xfb\x3b\x1c\x44\x48\x01\x35\x36\x21\xb9\x25\xb6\xb1\x09\xc9\x3d\x9c\x4d\xd1\x9d\x2d\x52\x74\xc7\x82\xde\x14\xdd\x75\x4b\xec\x21\x23\x7f\xd2\xf4\x23\x73\xb4\x2a\xba\xf3\x95\x46\x74\xa7\xcb\x5f\x43\x74\x97\x7d\x03\x10\xdd\x65\xa4\x89\x4d\xd1\x1d\xc1\x4c\x53\x74\xe7\x84\xa2\xe8\x8e\x04\x5b\x43\x74\x97\x1d\x75\x8a\xee\x1c\x2f\x88\xee\xf4\x11\x6c\x8a\xee\x88\x53\x9b\xa2\x3b\xdf\x4d\x45\x77\x2c\xb7\x0d\xd1\x5d\xf6\x19\x29\xba\xf3\xb9\x2b\xba\x73\xaa\x53\x74\xe7\xa4\x88\xe8\x2e\x83\x10\x5a\xb5\x7d\x96\xe0\x5a\x8f\xf5\x35\x8e\xd1\x4b\x0a\xeb\x20\x54\x9b\xc2\x3a\x27\x7d\x85\x75\x3e\x5b\x85\x75\xce\x67\x08\xeb\x9a\xf7\x89\xb0\xae\x7b\xcd\x26\x71\xc8\x7d\xb2\xd1\x68\xf8\x56\x21\xac\x1b\x8e\x72\x84\x75\x83\x6c\x4a\x43\x58\x37\x7c\x53\x11\xd6\x0d\xd0\x51\x43\x58\x37\x48\xee\x37\x85\x75\xdb\xdf\xdd\x36\x8c\xf7\xf9\xbd\x29\x19\xcd\xdd\x70\x22\x42\x73\x37\x9c\x50\xd0\xdc\x0d\xa7\x1e\x34\x77\x03\xb8\xd7\xd0\xdc\x0d\x1b\x8b\xe6\x6e\xba\x6a\x22\xac\xfb\x9c\xf8\x10\xd6\x4d\x20\x72\x43\x58\x37\x9d\x06\x11\xd6\x4d\x28\x80\x86\xb0\x6e\xba\x16\x2a\xac\x03\x1c\x35\x85\x75\x00\xdf\xa6\xb0\x6e\x5a\x3b\xc2\xba\x69\x7d\xf0\x8d\x8f\x57\x81\x6f\x84\xdb\x6d\x08\xeb\x14\xc3\x37\x84\x75\x6e\xbd\x6e\x08\xeb\x3e\x87\xa0\xc2\x3a\x07\x88\xc2\x3a\xf8\xd4\x86\xf3\xc1\xe7\xa0\xc3\xf9\x40\xe5\x44\x53\x74\xe7\x2a\xad\xe8\x0e\x51\x5a\x43\x74\xb7\x7c\xc5\x14\xdd\x11\xff\xb5\xa1\x01\x0c\xad\x45\x74\xa7\x6b\x5b\x43\x74\xa7\xc9\x5f\x53\x74\x37\x2c\x21\xba\x1b\x9e\x89\xe8\x0e\xc6\xbd\x21\xba\x3b\xd1\xfa\x10\xba\x91\xca\x69\x88\xee\x54\x4c\x37\x44\x77\x07\x95\x4a\x63\xef\xd2\xc3\xe6\xd9\xc6\xde\xa5\x07\x11\x63\x63\xef\xd2\x03\x4b\xda\xd8\xbb\xf4\xd8\x83\xec\x5d\x7a\xec\xdd\x29\x17\xc9\x9d\x4d\xb9\x48\xaf\x09\x17\x09\x80\x6d\x6c\x50\x7a\xc8\xdf\x37\x36\x28\x3d\x4e\x67\x6c\x50\x72\x63\x45\x9b\x70\x91\xcd\x6b\xc2\x45\x76\x7f\x07\xd7\x0a\x0f\xdb\x3e\xb8\x56\x18\xdb\xc6\xc6\x26\x37\x79\x34\x36\x36\x99\x56\x6a\x9f\x5c\x24\xed\x43\xc8\xa7\xc3\x46\x43\xc8\xf7\x82\x8e\x1a\x42\xbe\x08\x64\x6d\x08\xf9\x62\xb4\x04\x17\xf9\x7a\xe6\x6d\x5f\xb4\x27\x10\xf2\x45\x52\x9b\x0d\x21\x5f\x4c\xde\xcb\x47\xc9\xdf\x2d\x4a\xf4\x12\x42\xbe\x88\x22\xbc\x21\xe4\x8b\xf6\x35\x42\xbe\x88\x1e\xa2\x21\xd6\x8b\x2e\xb7\x88\xf5\xa2\x11\x2d\x62\xbd\x08\xec\x6e\x5a\x26\x18\xa2\x68\x99\x40\x46\xa8\xe9\x8d\x06\x2a\x6e\x7a\xa3\x79\xd7\x08\xf2\x8a\x77\x86\x20\xaf\x78\xd7\x08\xf2\x0a\x5c\x72\x63\xf3\x52\x21\x3d\xdb\xd8\xbc\x54\xac\x1d\xb1\x5e\x81\x0a\x6d\x88\xf5\x0a\xe4\x52\x43\xac\x27\xd2\x6e\x08\xf2\x2a\x94\x51\x43\x90\xd7\x0c\x19\x10\xe4\xb5\xe8\x99\xb7\x0d\x2d\x59\x1a\x94\xe8\x5d\x04\x79\x0d\x55\x7b\x43\x90\xd7\x20\x90\x1a\x82\xbc\x66\xfb\xb0\x5a\x68\x2e\xc5\x58\x2d\x34\xe7\x41\xc4\x7a\xcd\x39\x0b\xb1\x5e\xf3\xce\x10\xeb\xb9\xe1\xbf\x21\xd6\x6b\xce\x36\x88\xf5\x9a\xcf\x08\xb1\xde\x2f\x00\xf5\x3b\x53\x32\x3a\xbe\xe6\x83\x46\xc7\xa7\xbf\x40\x3b\x36\xdd\xea\x6c\xba\x37\x46\xd3\x8d\x11\xd0\xf1\x35\xbb\x1a\x1d\x5f\x73\xad\x40\xc7\xd7\x5c\x71\xd0\xf1\x35\x1f\x03\x3a\xbe\x89\x90\xa8\xa3\xe3\xd3\x78\xa4\xa3\xe3\x9b\xb0\x49\x1d\xb1\xde\xc7\xd2\xd1\x11\xe4\x7d\x44\xad\x1d\x41\x9e\x36\x82\x1d\x41\x9e\x93\x62\x47\x90\xb7\x8a\x35\xc0\x0d\x22\x71\xea\x08\xf2\x16\x69\x97\x8e\x20\x6f\x35\xeb\xfb\xf8\x9d\x35\xc0\x1b\x56\xcf\x84\x37\xac\x9e\x79\xdb\xb0\x98\xc0\x3a\x62\xbd\x45\xea\xaf\x23\xd6\x5b\xa4\x3a\x3a\x62\xbd\x65\xfb\x10\xeb\x2d\x36\x6d\x76\xc4\x7a\x8b\x35\xbb\x23\xd6\x13\xc4\x75\xc4\x7a\xab\xf8\x3b\x78\xc3\xe6\x35\x69\x9f\x3d\x88\x58\x6f\x55\xcf\xb4\x7d\xb4\x36\xd0\xbe\x62\x89\xf6\x75\x6b\x80\x37\xfc\xbc\x0a\xbc\x21\xc9\xc5\x1e\xe0\x0d\x01\x6a\x1d\xdf\xea\x07\xd6\xb9\xe3\x5b\xfd\x90\xc8\xed\x2f\x22\x31\x98\xec\xfe\xc2\x1b\x46\xcf\x94\x37\xb4\x04\x6f\x48\x8c\xd7\x2f\xaa\xaa\xba\x12\xf7\x17\x01\x19\x8b\x61\x7f\x11\x90\x1d\x6b\x40\x40\x46\x9e\xa0\xbf\x70\x8a\xb0\xd5\xfd\x85\x53\xdc\xfe\xee\xd2\x49\x5a\x12\xf5\x17\x4e\x91\x05\xaf\xe3\x20\x1c\x51\x5c\x74\x1c\x84\xf5\x85\xeb\x11\x01\x19\xf4\x40\x8f\x70\x8a\xbc\xa8\x3d\xc2\x29\x12\x25\xf7\x08\xa7\x48\x74\xdd\x23\x9c\xa2\xcf\x2f\xc2\x29\x3a\x26\x22\x02\xb2\xe9\x35\x6f\xfb\x9c\xf8\xfa\x45\x5c\xd5\x8f\x00\xf4\x88\xd1\xd7\xb4\x86\x8f\x92\x35\x2c\x4a\x5e\x13\x17\x64\xe2\xc6\x1e\xe1\x45\x09\x4a\x3a\x42\xbe\x42\x4a\xbb\x23\xe4\x2b\x84\x44\x1d\x21\x5f\xf1\x49\x27\x28\x46\xa6\x9e\x8e\x58\x4f\xbb\xa2\x8e\x58\xcf\x3c\x48\x47\xac\xd7\xa2\x57\x81\x46\x24\xda\xed\x88\xf5\x9c\x22\x3b\x62\xbd\x46\xe2\xb1\x23\xd6\x6b\x38\x81\x74\xc4\x7a\x8d\x48\xbf\x23\xd6\x6b\x84\x7c\x1d\xb1\x5e\x23\x0c\xe9\x88\xf5\x1a\x39\xa7\x8e\x58\xaf\x11\x99\x76\xc4\x7a\x8d\x1c\x42\x47\xac\x67\x7a\xbd\x23\xd6\x33\x69\xde\xf1\x62\xeb\xc5\x12\x7b\x38\xb3\x57\x61\x0f\x27\x58\xa9\x23\xe4\xeb\x28\x7b\x3a\x42\xbe\xee\x93\x46\xc8\xd7\xb3\x77\xbd\x28\xd1\x83\x08\xf9\xba\x6f\x87\x42\x3e\x08\xb2\x5e\xa0\x50\x21\xd6\x7a\x81\x42\xfd\x85\x8e\xfe\xec\x94\xdc\xd5\xff\x01\x2c\xba\xfa\x3f\x1f\x03\xfa\x3f\xf3\xfe\x5d\xfd\x1f\xb1\x4c\x57\xff\xe7\x74\x86\xfe\x6f\xf8\xa2\xa2\xff\x9b\x8f\xd7\xbc\x4d\x9f\x40\x82\x8e\xfe\xef\x73\x5a\xc2\xdf\x6d\xbd\x1e\xbb\x4d\x37\x99\xd2\x8b\xac\x2c\x03\xab\xc8\xca\xd2\x11\x05\x56\xd6\x07\x56\x61\x65\x61\x18\x7b\x85\x95\x05\x8c\xf5\x0a\x2b\x1b\x3c\x13\x56\x16\x29\x77\xbf\xa0\xaa\x2e\xe8\x81\x7e\x41\x55\x5d\xc0\x93\x7e\x41\x55\x5d\x30\xaf\xfd\x82\xaa\xba\x00\xef\xfd\x82\xaa\x6a\x2a\xa7\x57\xcd\x84\xbc\x0a\xfa\x46\x1f\x7b\xc5\x4c\xc8\x89\xaf\xb2\x3d\xd7\x97\xf1\x02\xae\x7a\x88\x50\x7a\xd5\x4c\x88\x3e\x43\xe4\xf7\x10\xe9\x77\x44\x7e\x92\x05\x1d\x91\x9f\x9b\x27\x3a\x22\x3f\x69\x85\x8e\xc8\xef\xb1\x07\x11\xf9\x3d\xac\xd2\x1d\x91\xdf\x43\xea\xb6\x23\xf2\x7b\x20\x2e\x3a\x22\xbf\x00\x4b\xda\x11\xf9\x3d\x2e\x6a\x88\xfc\xfc\xae\x47\x47\xe4\xf7\x38\xf1\x35\x58\xe7\xe3\x7d\x7e\x9c\x49\x1b\x10\xf9\x3d\x4e\xa6\x88\xfc\x1e\x62\xd1\x8e\xc8\x2f\x10\x8b\x76\x44\x7e\x8f\x93\xf0\x45\x5c\x2d\xf8\xa4\x3b\xed\x73\xf2\xee\xb4\x0f\x3a\xa9\x5f\xc4\xd5\x82\xf7\xd2\x35\x52\xf2\x4c\x44\x8c\x50\x38\xbd\xc3\xd8\x3a\x0a\x3a\xac\xac\x53\x4f\x87\x95\x7d\xfd\x1d\xac\x2c\xa9\xa3\x7e\x51\x55\x8b\xaf\x25\x58\x59\xe2\xbf\xde\x61\x9d\x9d\xae\x2f\xaa\x6a\x5a\x9f\xf6\x01\xeb\xec\x24\x35\x60\x9d\x9d\x26\x2e\xaa\x6a\x46\xc2\xfd\xa2\xaa\x16\x49\xda\xf5\x8b\xaa\x5a\x74\x02\x1b\xb0\xce\xc4\xa2\xfd\xa2\xaa\x16\x9d\x88\x2e\xaa\x6a\xba\x35\xf7\x8b\xaa\x5a\x24\x17\xd0\x07\xac\xba\xa3\x60\xc0\xaa\x27\x6b\xff\x38\x93\xe7\x3e\x6c\x9f\xf7\x49\xfb\x08\xba\xfa\x90\x75\xe6\x5e\x26\xac\xb3\x4b\xff\x84\x75\x1e\x96\x60\x9d\x0d\x43\x2e\xaa\x6a\x65\xf8\xbb\x44\x89\xfb\xbc\xa8\xaa\x15\xc3\x89\x8b\xaa\x5a\x19\xfe\xae\x72\x15\x8f\xdd\xf6\x35\xd4\x1f\xfd\xa2\xaa\xd6\x0c\x82\x26\x62\x52\xb2\x37\xfd\x22\xa7\xd6\x5c\xec\x2f\x72\x6a\x52\x0e\xfd\x22\xa7\x36\x7c\xee\x17\x39\xb5\x41\x4a\xb4\x5f\xe4\xd4\x44\xfd\xfd\x22\xa7\x36\x7c\xab\x2e\x72\x6a\xc3\x31\x78\x91\x53\x1b\xf6\xe7\x45\x4e\x4d\x72\xa2\x5f\xe4\xd4\x06\xd4\x64\xff\x64\xce\x79\x62\x17\x39\x35\xc9\x90\x7e\x91\x53\xbb\x5b\xd8\xfe\xfc\x94\xfc\x41\xb8\x57\x2b\x87\x70\xb7\x79\x1f\xa4\xba\x1d\xf1\x41\xaa\x93\x9d\xed\x0b\x52\x9d\x74\x46\xbf\xc9\xa9\xb6\x61\x77\xfa\x62\x97\xbb\xd1\xd2\x82\x54\x47\xe8\xd6\x17\x5a\xd9\xc7\x52\xa6\x44\x83\x16\xa4\xba\x31\xd0\x4d\x4e\x75\x79\xd1\x4e\x72\x4a\xce\xb4\x93\x9c\x3a\x4e\x05\x0b\x52\x9d\xc4\x4e\x27\x39\xe5\x6e\xb3\xbe\x20\xd5\x9d\x50\x48\x4e\xc9\xfb\xf6\xc5\x2e\x77\x63\xe6\xc5\x2e\x77\xd8\xb2\x7e\x01\x57\x37\xc9\xd4\x37\x5a\x60\x12\x03\x7d\xb3\xcb\xdd\x57\xf3\x02\xae\xae\x9f\x55\xbf\x89\xab\xae\xf3\x55\xdf\x68\x81\x5d\xd4\xb6\x5a\x60\xcf\xac\x94\x68\xed\x05\x63\x3d\x2c\x7f\xd7\x29\xf1\x1c\x2e\x18\xeb\x19\x25\x43\xdf\xe8\x7d\x8b\xf7\x89\xde\x17\xb6\xb3\x6f\xf4\xbe\xae\xee\x07\xbd\x2f\x22\xa3\x7e\xf8\x66\x04\x74\x52\x3f\xb2\xff\x0c\xcf\xc3\x4e\x7d\x27\xa2\x0b\xb8\x7a\xb3\xb5\x17\x70\xf5\xee\x73\xbf\xa8\xaa\x8f\xe1\x55\x6e\x1b\x86\xed\xbb\xa8\xaa\x4f\xa3\x9e\x8b\xaa\xfa\x74\x0a\xb9\xa8\xaa\xcf\xe8\x55\xd8\x8e\x5f\xad\x1d\x8e\xdd\x31\x88\x20\xef\xf1\x85\x43\x90\xf7\x18\x8b\x22\xc8\x7b\xa0\x1c\x06\x82\x3c\xc5\x57\x03\x41\xde\x43\xcf\x0f\x04\x79\x0f\xb1\xcc\x40\x90\xf7\x30\x0d\x0e\x04\x79\x92\x2f\x03\x41\x9e\x1e\x1e\x03\x41\xde\x03\x39\x31\x1e\x38\xf6\xec\x99\x70\xec\xd5\x12\x1c\x3b\x48\x66\x20\xd6\x7b\xaa\x77\x46\x0e\x81\xc9\x74\x3c\xe6\x10\x2c\xd1\xbe\x62\x89\xf6\x41\xef\x0c\xc4\x7a\x81\xd6\x0e\xc4\x7a\x81\xf1\x39\x10\xeb\x05\x16\xca\x81\x58\xef\x05\xfd\x0d\xc4\x7a\x2a\x19\x06\x62\x3d\x53\x8d\x03\xb1\x9e\x5b\x4c\x06\x62\x3d\xf7\xcf\x0d\xc4\x7a\xef\xb2\x06\xb6\xb2\x07\x6b\x60\x2b\xbb\x77\xad\xfb\x75\xf0\x2a\xe8\x7d\x21\x6d\x86\x0e\xd7\xf0\xb7\x23\xa8\x78\xa2\x0d\x38\x5c\x67\x88\x84\x81\xc3\xb5\xdf\xab\x19\x38\x5c\xe7\xe2\xb1\xc8\x99\xf4\x27\x0e\xd7\x7e\xe7\x66\xe0\x70\xed\x97\x6d\x06\x0e\xd7\xd9\xe7\x8e\xc3\x75\x4e\x5e\x13\x0e\x3a\x7a\x66\xe7\x2a\xd6\x30\x38\x93\x16\xe1\x70\x9d\x7d\xb6\x38\x5c\x6b\x8b\x3f\x70\xb8\xce\xc5\x7b\xd9\x5c\x93\x3e\xc3\xe1\x3a\xa3\x83\x19\x38\x5c\x8b\x95\x06\x0e\xd7\xfa\xb3\x8c\x68\xfb\xb8\x4f\x3c\xf1\x72\xfc\x3d\x5d\xf2\xc0\x2e\x2f\x43\x24\x0c\x52\x5c\x99\x10\x7d\x60\x97\xa7\xb7\xfe\x20\xc5\xa5\x72\x62\x90\xe2\x52\x55\x31\xb0\xd2\xab\xa4\x2c\x06\x29\xae\xc6\x34\x38\x48\x71\x35\x56\x9c\x41\x8a\xab\x31\x09\x0f\x52\x5c\x15\x08\x39\x48\x71\x55\x40\xc0\x20\xc5\x55\x99\x84\x07\x29\x2e\x15\x17\x83\x14\x57\x23\xb6\x18\x58\xf0\x55\xa6\xf2\x41\x8a\xab\x02\x83\x47\xf2\x9b\x0a\xd4\x40\x8a\xab\x17\xaf\x02\x6d\x4f\x6c\x31\x48\x71\x0d\x7b\x82\x14\xd7\xf0\x25\x26\xc5\x35\x1c\x3c\xa4\xb8\x86\x03\x0b\x27\x89\x91\xac\x01\x6e\x9e\xa9\x67\x90\xe2\x1a\x3f\xf5\xc1\xcd\x3b\x4d\xe0\x24\x31\x1c\xac\xa4\xb8\x86\x03\x8b\x14\xd7\x24\x46\x18\xa4\xb8\x26\xe0\x76\xe0\x24\x31\x89\xb5\x07\x4e\x12\x13\x29\xdd\x20\xfd\x35\x81\xb3\x23\xcb\xcd\xf3\x54\x48\x7f\xcd\xcf\xfa\xd8\x30\xee\xf3\x23\xfd\xf5\xf9\xa4\x49\x7f\x7d\x8f\xf5\xc1\xcd\x17\xef\x65\xc3\x87\x7b\xec\x50\xe2\x9a\xa4\xb8\x14\x66\x0d\x52\x5c\x62\x89\x41\x8a\x6b\x05\xcf\xbc\x6d\x10\xd7\x0c\x52\x5c\x8b\x68\x62\x90\xe2\x52\x08\x36\x48\x71\x89\x79\x06\x29\x2e\xd1\xca\x20\xc5\xb5\x5e\x8f\x75\x4a\xdc\x19\x29\x2e\x11\xd7\x20\xc5\xb5\xb6\xf5\xc1\xbf\xfb\x8a\x91\xe2\xf2\x73\x51\x83\x14\xd7\xc6\x0b\x71\x90\xe2\xda\x00\xed\x41\x1a\x6b\x93\xf9\x18\xa4\xb1\x36\xd9\x8d\x41\x1a\x6b\x43\x4e\x0c\xd2\x58\xc7\xf1\x49\x1a\xeb\xfc\x5c\x05\xcd\xb2\xef\x18\x69\x2c\xbd\x5b\x06\xde\x11\x3a\xab\x0c\xbc\x23\x0e\x19\x9a\x41\x8a\xeb\x74\x7f\x87\x9e\xb9\x7b\x26\x7a\xe6\x6e\xed\xe4\x10\x30\x26\x18\xa4\xb8\x0e\x7b\xc8\x06\x29\xae\x83\xca\x61\x34\x73\x08\xd4\x8e\x20\x4f\x33\xd7\x81\x20\x4f\x23\x9e\x81\x20\x4f\x6b\xd7\x81\x20\xef\xf9\xb9\x0a\x39\x04\x96\xe9\x81\x20\xef\x21\xdd\x36\x1a\x39\x04\xf2\x43\xa3\x91\x43\x00\x93\x8f\x46\x0e\x01\x9a\x66\x34\x72\x08\x8e\xeb\x46\x0e\x61\x7a\x15\x72\x08\xf6\x75\x23\x87\xb0\xbc\x6b\x72\x08\xd0\x3b\xa3\x93\x43\x70\xc9\xe1\x0b\x3c\x8f\x4b\x4e\xa7\x7d\xbe\x01\x9d\xf6\x39\x67\x75\xda\x37\xfd\x1d\xed\x43\x57\x34\x3a\xed\xf3\xfd\xeb\x68\x96\x93\x67\x92\x27\xb0\x27\x3a\x79\x82\xe1\x99\xe4\x09\x10\x00\x8e\x4e\x9e\xa0\xff\x9e\x39\xe7\xe8\xa4\x10\x86\x3f\x23\x85\x80\x84\x7f\x0c\x52\x08\xae\xfc\xd8\xf3\xc5\x62\x09\xb9\xb6\x8f\x1d\x7b\xbe\x08\x90\x19\xd8\xf3\x45\x76\xb0\x0d\xec\xf9\xdc\xde\x39\xb0\xe7\xd3\x69\x7f\x60\xcf\x17\x89\xff\x06\xf6\x7c\x11\xe7\x8a\x81\x3d\x5f\x74\x40\x0e\x9b\x6e\x7d\x34\x1d\x12\x65\x60\xcf\x17\x9b\xc7\x6c\xba\x35\xd8\x3e\xef\xc5\xf6\xf1\xf8\xb0\xe7\x8b\x24\xbc\x06\xf6\x7c\x11\xc3\xa0\x41\x8a\x2b\xb2\x83\x6d\x90\xe2\x72\x17\xd0\x20\xc5\xe5\x57\xd7\x06\x29\xae\x88\xa4\x7e\x90\xe2\x8a\x44\x7c\x43\x7b\x3e\xa2\xd6\xa1\x3d\x9f\x6b\xb6\x1e\x7c\xa4\x02\x86\x1e\x7c\xd9\x6b\x4e\x4a\xf4\x35\x3b\xae\x72\xf6\xce\xf8\xb2\x9a\x6b\x3d\x29\xae\x9c\xad\xfd\x50\xe2\xf9\x91\xe2\x92\x09\x1d\xa4\xb8\xb2\xaf\x1f\x29\xae\x6c\x5f\x7f\x6a\xce\x3d\x86\xe6\x1c\x94\x33\x48\x63\xf9\x71\xd4\x41\x1a\xcb\x38\x7c\x90\xc6\x2a\x2e\x32\xa4\xb1\x8c\xca\x07\x69\xac\x62\xbf\x90\xc6\x2a\x2e\x6a\xa4\xb1\x8c\xd1\x07\x69\x2c\x05\x95\x83\x5d\x55\x0a\xc8\x06\x69\xac\xea\xc4\x8e\x1f\x45\x43\x6e\x35\xf0\xa3\x68\xe8\x68\x07\x29\xae\xe6\x48\x26\xc5\xd5\x00\xd3\x83\x14\x57\xf3\x95\xc6\x8f\xa2\x39\xf5\xe0\x47\xd1\x8c\x92\x49\x7f\xb5\x69\x0d\xe4\x4f\x7c\xc5\x48\x7f\x35\x27\x45\xd2\x5f\x0d\x8e\x76\x90\xfe\x6a\x8e\x64\xd2\x5f\xcd\x85\x92\xf4\x57\x23\x05\x3b\x48\x7f\x35\x18\xf0\x41\xfa\xab\xc1\xf7\x0f\xd2\x5f\x0d\xa2\x6b\x90\xfe\x6a\x28\x35\xc6\xb6\x7d\xf4\xe7\xb6\x7d\xb4\x01\xaf\x8a\xe6\x28\x27\x35\xd6\x50\x43\x0d\x52\x63\xa2\x95\x41\x6a\x6c\xa2\x52\x1e\xa4\xbf\x3e\x88\x99\x41\xfa\x6b\x21\xa8\x1c\xa4\xbf\x96\x53\x1d\xe9\xaf\x05\xf1\x34\x48\x7f\x2d\x23\x6f\xd2\x5f\x0b\x65\xf0\x20\xfd\xa5\x33\xdb\x20\xfd\xb5\xd0\xc1\x0c\xd2\x5f\xcb\xa0\x8b\xf4\xd7\x22\x69\x3e\x48\x7f\x2d\x43\x30\x72\x5c\xdb\xb0\x8e\x1c\xd7\x72\x52\x24\xc7\xb5\x9c\xf4\xc9\x71\x2d\x47\x01\x39\xae\xb5\xac\x9d\xfc\x09\x12\x81\x41\x8e\x4b\xb3\xfb\x41\x8e\x6b\x39\xea\xc8\x71\x2d\xa7\x64\x72\x5c\x6e\x3b\x9a\xe4\xb8\x16\x2a\xf3\x49\x8e\x6b\x7d\x96\x68\x1f\x88\x64\x62\x48\xa1\xc3\xcd\xc4\x90\x62\x4d\xcf\xa4\x7d\xeb\xf7\x9c\xe0\x26\xa9\x31\xfd\x61\x27\xa9\xb1\xc5\x1a\x33\x4d\x8d\x6d\x2b\xa0\xe9\xb0\x8f\xd3\xd4\x18\x09\x93\x69\x6a\x6c\xfb\x3b\x9a\xce\x6a\x34\x4d\x8d\x31\x3c\xa7\xa9\xb1\xe1\x35\x69\x3a\xfc\xdf\x34\x35\x46\x54\x37\x4d\x8d\xb1\xa2\xce\x40\xea\x88\x0e\x9c\x17\x8c\x55\xd9\xc7\x19\xb0\x8f\xdc\xfe\x4e\x7f\x01\x8f\x91\x1e\xaa\x96\x48\x0f\xf1\x4a\xcf\x40\x7a\x28\x58\x3b\xe9\x21\x5e\xfe\x19\x90\x9c\x07\x6b\x27\x3d\x04\x7f\x34\x49\x7f\x09\xe2\x26\xe9\xaf\x48\x5a\x70\xfa\xd9\x56\x86\xd2\x24\xfd\xe5\xd7\x2c\x26\xe9\x2f\xbf\x35\x31\x49\x7f\xf9\x75\x89\x49\xfa\x2b\x22\x0b\x9b\xa4\xbf\xfc\x62\xc5\x24\xfd\x95\xc0\x12\x93\x14\x97\x9f\x58\x9d\xa4\xb8\x32\xf1\xe6\x24\x8d\x95\x8b\x25\x52\x40\xd5\xdf\x91\x02\x62\xc9\x99\xa6\xaa\x1c\x2e\xa6\xaa\x48\xfa\x4c\x53\x55\x88\xcb\x26\xa9\xaa\xc2\x8b\x3a\x49\x55\x15\x28\xaa\x49\xaa\xaa\x38\x20\x49\x55\xf9\x79\xa3\x19\x49\x0f\x11\x1b\xce\x88\xca\x3c\x7a\x95\x49\x89\x36\x90\xc6\xaa\xc4\xa9\x93\x34\x56\x25\x86\x9d\xa4\xb1\x6a\xf4\xce\x48\x0f\xb1\x4c\x4f\xd2\x58\x26\x9c\x27\x69\xac\x06\xe5\x30\x49\x63\x75\xc8\x89\x89\x1f\x45\x67\x79\x98\xf8\x51\x74\xc8\x82\x49\x8a\xcb\xdd\x89\x33\x91\x23\x61\x99\x9e\x78\x55\x8c\xee\x55\xc8\x91\x80\xb8\x26\xe9\xaf\xf9\x7a\xcd\x41\xc6\xc4\xab\x4c\x8e\xd1\x3e\xd2\x5f\x93\x64\xf4\x24\xfd\x35\x1d\x3d\xa4\xbf\x66\xf0\xae\x0f\x67\x52\x22\xfd\xa5\x7d\xeb\x24\xfd\xf5\xb1\x20\x4c\xd2\x5f\x9f\x77\x46\xfa\x6b\x81\xb8\x26\xe9\xaf\x65\xbf\x90\xfe\x5a\x04\x48\x93\xf4\xd7\xfa\xa9\x81\x1c\x09\x8c\xf4\x24\xfd\xb5\x7c\x2a\xa4\xbf\x16\xe8\x6f\x92\xfe\x5a\xd1\x12\x39\xa0\x68\x0d\xe4\x80\xa0\x1c\x26\xe9\xaf\x05\x05\x30\x49\x7f\xad\x64\x1b\xc8\x01\xb1\x3c\x4c\xd2\x5f\x6e\xd2\x99\xa4\xbf\xb4\xf6\x9f\xe4\xb8\x8c\xfb\x27\x39\xae\x83\xee\x66\x92\xe3\xd2\x1d\x7a\x92\xe3\x72\x33\xf9\x24\xc7\x75\x1c\x91\x45\x65\xbe\x67\x92\x23\x49\x5e\x05\x65\xbe\x7d\x76\x51\x55\x0b\xde\x35\x1e\x17\xc1\xb7\x1f\x8f\x8b\x80\xb4\x60\xe2\x71\x11\x58\xc6\x26\x1e\x17\x01\x4c\x37\xf1\xb8\x08\xf6\x12\x1e\x17\x01\x14\x37\xf1\xb8\x78\x7f\xe1\xfc\x3f\x3f\x25\xe3\x71\xe1\xa7\xc1\x27\x1e\x17\xda\x32\x4e\x3c\x2e\x34\x5b\x9c\x78\x5c\x98\x41\x9f\x78\x5c\x44\x5f\x54\x3c\x2e\xa2\x1d\x88\xc7\x85\x11\xf4\xc4\xe3\x22\x56\x4b\xa4\x1e\x88\x65\x26\x1e\x17\x3a\xe5\x4e\x3c\x2e\x22\x40\x66\xe2\x71\xa1\x25\xca\x24\xfd\x65\x44\x3b\x49\x7f\x45\x92\x0d\x93\xf4\x57\x24\x22\x9a\xa4\xbf\x8c\xc3\x27\xe9\x2f\x81\xc5\x24\xfd\x65\xdc\x3f\x9b\x6d\xa0\x76\x52\x5c\x82\x8e\x49\x8a\xab\x10\x6f\xce\x26\xa0\xb4\x3e\x7c\x2c\x3e\xcf\x9c\x94\xac\xe1\xb6\xc1\xaf\xfc\x4e\x52\x5c\xc5\xe5\x88\x14\x57\x71\x1a\x24\xc5\xe5\x26\x9d\x49\x8a\xab\xb0\xf2\x4f\x52\x5c\x85\x58\x6d\x92\xe2\x2a\xc4\x01\x93\x14\x57\x61\x3f\xdb\x24\xc5\xa5\xcc\x67\x92\xe2\x6a\x3e\x07\x52\x5c\x0d\xf4\x30\x49\x71\x35\xfb\xb3\x93\x3e\xb1\x3f\x3b\xe9\x13\x9f\x03\xe9\xaf\x86\xd4\x6c\x92\xfe\x6a\xcd\xdf\xdd\xf6\x69\x4c\x3f\x49\x7f\x75\xa7\x79\xd2\x5f\x03\x15\xce\xec\xa6\x56\xb8\x0a\xe9\x2f\xc5\x96\x93\xf4\x97\xf2\xca\x49\xfa\x6b\xf8\x6a\x92\xfe\x1a\xaf\xbf\x33\xb5\x42\x0d\xc3\xd4\x0a\xf7\x42\xfa\x6b\xb8\x1c\x91\xfe\xfa\xa0\x9a\x26\xe9\xaf\x8f\xf8\x7d\x92\xfe\xd2\xe5\x6f\x92\xfe\xd2\xa0\x68\x0e\x37\x2c\x78\x4d\x1c\x84\x89\x45\x27\xe9\xaf\xcf\x00\x82\xf4\xd7\xe7\x08\x19\x3a\x08\x53\x22\xfd\xa5\x42\x67\x4e\x1d\x84\x79\x0e\xa4\xbf\x16\x91\xe9\x24\xfd\xb5\x5d\xb8\x48\x7f\xf9\x7d\xc4\x39\xc9\xad\x38\x5d\x5f\xc4\xd5\xdd\xdc\x33\x27\xb9\x15\x23\xb0\x8b\xb8\xba\x89\xdc\x79\x11\x57\x57\x53\x3f\x27\xb9\x15\xfb\x6c\xb2\x61\xc1\xe7\x30\xc9\xad\xc0\x17\xcf\xc9\xae\x04\x92\x5a\x73\x92\x5b\x71\x79\x98\xe4\x56\x5c\x80\x3e\x72\x2b\x30\xcb\xf3\x23\xb7\x62\xcf\x7f\xf8\xac\x38\x81\x7d\xf8\xac\xf8\x8c\x3e\x72\x47\x10\x4f\xf3\xa3\x7d\x86\x6e\x1f\xed\x23\x3d\x3b\x3f\xda\x67\x98\xf5\x91\x5b\x01\x27\xce\x8f\xdc\x8a\xd3\xee\x45\x63\x3d\x18\xb5\x5e\x34\xd6\x83\xa1\xdb\x45\x63\xdd\xaf\xe5\xcc\x8b\xc6\x7a\xd8\x5e\x85\x5d\x17\x3f\xf5\xb1\xeb\x02\x29\xc3\xbc\x68\xac\xfb\x45\xfa\xb9\xc8\xbb\xf8\xbe\x2f\xf2\x2e\xe4\x10\xe6\x22\xef\xc2\x26\x96\x49\x6e\xcc\x1d\x7a\x93\xdc\x58\x31\x08\x5a\x38\x24\x93\x6d\x98\x0b\xaf\x98\xf2\x7b\xdf\xde\x9b\xa4\xc6\x7e\x26\x94\x85\x8d\x8c\x71\x31\xa9\xb1\xf2\x73\xd3\x7c\xe1\xce\x58\xed\x82\xb1\x3a\x1c\x4a\xa4\xbf\xa6\x2f\x00\xe9\x2f\xbd\xca\x26\xe9\xaf\x6d\x83\x48\x7f\xf9\x59\xf4\x49\xfa\xcb\xef\xdd\x4d\xd2\x5f\x1b\xfe\x68\xe2\x55\xa1\xc7\xd2\xc4\xab\x42\x45\xea\xc4\xab\x42\xd5\xe9\xc4\xab\x42\x17\xae\x89\x57\x85\x26\xd6\x13\xaf\x8a\x07\x02\x62\xe2\x55\xa1\x3e\x75\xe2\x55\xa1\xd1\xf8\xc4\xab\x42\x05\xec\x04\x8c\x55\x92\x8b\xf3\x98\x5a\xe1\x9a\x78\x55\xb8\x49\x74\xe2\x47\xa1\x97\xd7\x3c\xa6\x4f\x18\x3c\xc7\xf4\x09\x77\x8d\x1f\x85\xbb\xc6\xe6\xd1\x09\xd8\xfa\x48\x9f\xd8\x13\xf8\x51\xe4\xea\x99\x10\x17\xb6\x81\xf4\x97\xd6\x84\x93\xf4\x57\x66\x2b\xc5\x24\xfd\x95\x59\xaa\x3e\xd2\x5f\xba\x77\x7d\xa4\xbf\x32\xad\xfd\x48\x7f\xb9\xd5\xe7\x23\xfd\x25\xa9\xf1\x91\xfe\xca\xc3\xab\x90\x5f\x00\x4c\x7f\xa4\xbf\xfc\x1e\xf0\x47\xfa\xcb\xef\x31\x7e\xa4\xbf\x4c\x43\x7e\xa4\xbf\xf2\xb4\x44\x6a\x05\x08\xf9\x91\xfe\xca\xc0\xee\x8f\xf4\x97\xd6\x8b\x1f\xe9\xaf\x3c\xbd\x33\xda\xd7\xbd\x17\xda\xc7\x08\xf9\x48\x7f\x49\xb7\x7c\xa4\xbf\x32\xcb\xd8\x47\xfa\x2b\x93\x40\xfc\x48\x7f\xf9\xc2\x7d\xc1\xf6\x79\x15\xdb\xe7\x31\xf3\x27\xf4\x19\xe9\xaf\x46\xec\xf4\x91\xfe\x52\xf8\xf9\x91\xfe\x52\xde\xf5\x91\xfe\x6a\xaf\xa5\x45\xc9\x7b\xb9\x6d\x50\x16\xf6\xf1\x81\x57\xe5\x5d\x1f\x29\x2e\x65\x5a\x1f\x29\xae\x41\xc8\xf0\x91\xe2\x1a\xb6\x9d\x14\x97\xbb\x4b\x3f\x52\x5c\x46\xf3\x1f\x29\xae\x01\x0d\xf5\x91\xe2\x1a\xc3\xab\xa0\xe1\x67\x0a\xf9\x48\x71\x4d\x62\xe6\x8f\x14\x97\x1b\xdb\x3f\x52\x5c\x93\xe8\xf3\x23\xc5\x35\x97\xbf\xc3\x1c\x17\x83\x81\x8f\x34\xd6\xc7\x22\xfa\x91\xc6\x5a\x24\x56\x3f\xd2\x58\x2b\x7b\x26\x79\x02\x7b\x89\x5c\xd5\x22\x3d\xfb\xf9\xa1\x56\x26\xe1\x8f\x5c\x95\x5f\xc7\xff\xc8\x55\xed\xe8\x31\x74\xfa\xc9\x6b\xa2\xd3\x07\x05\x7c\x3f\x1f\x71\xe5\x49\xfb\x11\x57\xf0\xde\x47\x3e\xca\x6f\x98\x7f\x7e\xa8\x15\x14\xf0\x91\x8f\x3a\x60\xa5\x8f\x9c\xd3\x61\x29\xfe\x92\x5c\x32\xed\xc3\x20\xc2\xc4\xff\x87\x41\x84\x1f\x1d\xf8\x92\x5c\x79\xa1\x24\x57\xce\x7d\x62\x10\x11\x82\xf5\x5d\x26\xe1\xc6\xda\x7f\x76\x4a\xfe\xf0\x8e\x78\x60\x70\x3e\xbc\x23\x02\xab\xe6\x87\x77\x84\x62\xa8\x0f\xef\x88\x07\x80\xf7\xe1\x1d\xa1\xfc\xe9\xc3\x3b\xc2\x4f\x66\x7e\x78\x47\x28\xb0\xfa\xf0\x8e\x08\x24\x7d\x3e\xbc\x23\x1e\x36\x4f\x7c\x78\x47\x04\x92\x4c\x1f\xde\x11\x81\x69\xf0\xc3\x3b\x22\xb0\x67\xed\xc3\x3b\xc2\xef\xba\x7d\x59\x8a\xdd\xdf\xc9\x33\xf3\x88\xb2\x3c\x33\x1d\x81\x77\x44\xfc\xfc\x1d\x3c\xf3\x67\x0d\xf0\xcc\xdb\xab\xc0\x33\x13\x7d\x7e\x78\x47\x44\x62\xd8\x0f\xef\x08\x77\xce\x7f\x78\x47\x44\x07\x32\xde\x11\x91\x75\xf9\xc3\x3b\x22\x3a\x74\xf1\x8e\x88\x3e\x4c\xbc\x23\x34\x59\xff\xf0\x87\x88\xd5\x12\x6d\xb0\x3f\xf1\x87\x50\x2b\xfb\xe1\x0f\xa1\x67\xd5\x87\x3f\x44\xca\xd6\x4e\x1b\x96\x67\xd2\x06\xe8\x9d\xaf\xca\x25\xd3\xf3\xf8\x43\x98\xdf\xfe\xf0\x80\xc8\x2c\x5c\x1f\x1e\x10\x99\xad\x22\x1f\x1e\x10\x99\xa8\xfc\xc3\x03\xa2\x14\xaf\x02\x97\x5c\x3d\x13\x2e\x99\x38\xe0\xc3\x03\xa2\xd8\xa2\x2a\x97\xec\x55\xe0\x92\x7f\xea\x83\x4b\x86\x71\xff\xf0\x87\xf0\x5b\x86\x1f\xfe\x10\xc5\x69\x89\x94\x53\xf5\xb9\x93\x72\xaa\x4e\x6e\xa4\x9c\x9a\x63\x97\x94\x53\x23\x95\xf3\x91\x72\x6a\xbe\x1c\xa4\x9c\x1a\x84\xdc\x47\xca\xa9\x2d\x6b\xb8\x6d\xe8\x8f\xbf\x83\x2f\x5e\xd6\x07\x5f\x7c\x3c\x06\x5f\x0c\x59\xf7\x91\x72\x6a\xdb\xab\xc0\x17\xdb\xf3\xa4\x9c\x9a\x23\x84\x94\x53\x3b\x96\xe0\x8b\x1d\x2f\xa4\x9c\x1a\xe8\xe8\x23\xe5\xd4\x1c\x67\xa4\x9c\xba\xcb\x03\x29\xa7\xee\xfb\x40\xca\xa9\xfb\x56\x75\xda\xe7\xd8\xed\xb6\x8f\x7e\x21\x1d\xd5\x7d\x7e\xa4\xa3\x9a\x6f\x31\xe9\xa8\xe9\x62\x48\x3a\x6a\x46\x7f\x87\x0f\x89\x93\x22\x39\x27\xbd\xcc\x3f\x72\x4e\x93\xd0\xe6\x23\xe7\x34\x61\x9d\x3f\x72\x4e\x13\x1a\xf1\x23\xaf\xe4\xe7\xb7\x3e\xf2\x4a\xdb\x25\x8e\xbc\x92\x69\xd6\x8f\xbc\xd2\x26\xf3\xf1\x91\x57\xda\x2e\x6a\xe4\x95\xfc\x92\xe2\x47\x5e\x69\x83\x4f\x3e\xf2\x4a\x1b\x3a\xe2\x23\xaf\xb4\x5d\xf0\xc8\x2b\x69\x37\xf5\x91\x57\xda\x60\x89\x8f\xbc\x92\x7e\xe5\x1f\x79\xa5\x9d\x2d\x05\x4a\xdc\x19\x79\xa5\xed\x72\x4b\x5e\xc9\x0f\x7b\x7c\xe4\x95\xb6\xbd\x3b\x6d\x1f\x7d\x46\x5e\xc9\x0f\x82\x7c\xe4\x95\x76\xf9\x3d\x5d\xf2\x47\xca\x69\xbb\x8a\x91\x72\xf2\x33\xfa\x1f\x29\xa7\xed\x23\x22\xe5\xb4\xed\x5c\x76\x55\xfd\xac\x54\xa4\x9c\xf4\xdd\xfa\x48\x39\x6d\x1f\x34\x29\x27\x4d\x28\x3f\x52\x4e\xdb\x78\x85\x94\xd3\x0e\x96\x68\x3a\x6c\xe0\x47\xca\x69\x23\x21\xf9\x48\x39\x6d\xf8\xaa\x8f\x5d\x55\x9b\x38\xf5\x63\x57\x95\xdf\xa4\xfe\x3e\x1f\x2d\x8f\x1d\x77\x8a\x60\xb7\xe0\x4e\x21\xd7\xf3\xe1\x4e\x11\x7c\xec\xb8\x53\x84\xe8\x99\x17\x05\x04\xbb\x1a\x77\x8a\x9f\xf5\x0e\x77\x0a\x0d\x07\x3f\xdc\x29\xfc\xf2\xd8\x87\x3b\x85\x5f\x17\xfb\x70\xa7\x50\x2f\xfa\xe1\x4e\x11\x1d\x20\xb8\x53\xa8\x41\xfd\x70\xa7\x88\x70\x52\xdf\x4d\x39\xd5\x64\xcf\xdf\x94\x53\x4d\x46\x67\x17\x00\x55\xbf\x8f\xf8\x5d\x94\x53\x13\x10\xf2\xbb\x28\xa7\xa6\x9f\x1a\x36\x67\x5a\xc3\xe1\x18\xfd\xb2\xe1\xbc\x1d\x90\x1b\xce\xdb\x5e\xda\x70\xde\xb0\xa4\xdf\x66\xdb\x43\xf1\x4c\xb6\x3d\x00\xe9\xbe\xcd\xb6\x07\x94\x0c\xdf\x66\xdb\x83\x4b\x07\x9f\x84\xca\x4e\x3d\x7c\x12\x2a\x93\x10\xfa\xf8\x24\x54\x76\x8a\xe4\x93\x50\x19\x64\xf1\xf1\x49\xa8\xec\x64\xca\x67\x9f\x8a\x2f\x3f\x9f\x7d\x52\x01\xfb\xf1\x01\xdb\x42\x36\xff\xe3\x03\xb6\x85\x3c\xfc\xc7\x27\xa1\xfc\x5e\xe1\xc7\x27\xa1\xdc\xb8\xff\xf1\x49\xa8\x96\x2d\x55\xf8\x69\x7f\xd7\x28\xf9\x3b\x9c\x4e\x9c\x14\xfd\x24\x14\xba\x94\x8f\x4f\x42\x0d\x14\x48\x1f\x9f\x84\x1a\x4e\xec\x07\x44\x69\x70\x71\x40\x94\x4e\x67\x17\xc9\xd4\x01\x27\xbc\x2e\x92\xa9\x83\xf6\xad\x8b\x64\xea\x00\x5f\xae\x8b\x64\xea\xa0\x07\xd7\x45\x32\x75\x12\x86\xac\x8b\x64\xea\xcc\xfe\x2e\x73\xcc\x52\xe1\xd8\x43\xa9\x52\x7a\x29\xc1\x87\x33\xf1\xad\x07\x3e\x9c\xf7\x7d\x3d\xf0\xe1\xd8\x29\xac\x07\x3e\x9c\x1e\x5c\x0f\x7c\x38\xc9\xe8\x75\x91\x4c\xfd\xba\xc7\x6e\xfb\xbe\xe1\x5d\xc3\x17\x13\x08\xac\x00\x5f\xec\xbd\x04\xf6\x0c\x10\xba\x2d\xf2\x43\x0b\x72\x70\x05\xf8\x70\x38\xda\x15\xe0\xc3\x8b\x57\x91\x0f\xa7\x0d\xe4\x8e\x16\x92\xb8\x45\xee\x48\xca\x68\x91\x3b\x5a\xc5\x33\xe1\xc3\xab\xb5\xc3\x87\x83\x17\x56\x00\xa9\xf1\xde\xae\xe0\xbe\x00\x6b\x67\x5f\x80\x7d\xf6\xa2\x9b\x07\x93\xaf\x17\xdd\xbc\x77\x7d\x51\x4e\xf3\xdb\x40\xeb\xa2\x9c\xa6\x21\xc5\x7a\xd1\xcd\xdb\x67\x2f\xba\xf9\x5f\xb3\xdb\x9f\x9d\x92\xd7\x8b\xef\x31\x0c\xf1\x7a\xd9\x32\xe0\xa3\xbd\x00\xa8\x05\xa6\xd6\xf5\xb2\x65\x80\x89\x68\xbd\xd0\xe1\x70\x98\xeb\x85\x0e\xaf\xde\x18\x72\xfb\x60\x83\x30\x41\x09\xfe\x0e\x4e\x78\x5b\xdf\x6d\xba\x09\xaf\x15\xe1\x84\x51\x0d\xaf\x0b\x8e\x9a\x29\xae\x15\xe1\x84\x79\x51\x57\x84\x13\x26\xeb\xb9\x2e\x38\x6a\x7e\xe8\x7d\x45\xe4\xf6\x6c\xc1\x58\x11\xbe\x98\x35\x7b\x45\xf8\xe2\xe3\x31\x38\x6f\x22\xd3\x75\xc1\x51\x4b\xb0\x57\xeb\x82\xa3\x66\x62\x6e\x45\x38\xef\x63\xed\x1f\xc7\x68\x51\x84\xf3\xfe\x2c\xd1\xbe\xe3\x5d\xc3\x79\x13\x1f\xad\x44\xfb\x00\x55\x2b\xd1\x3e\x62\x84\x75\xd3\x51\xcd\x0f\xcb\xaf\x9b\x8e\x6a\x7e\xac\x7e\x25\xb6\x13\x30\xd9\xac\x0b\xaa\x5a\x42\x86\xb6\x12\xed\x5b\x9e\x49\xfb\x88\xf1\x56\x92\x0f\xa7\x5f\x12\xbe\xce\x3f\xc7\xe0\xc3\x99\x22\x57\x82\x0f\x67\xca\x5a\x09\x3e\xfc\xe7\x9a\xf0\xe1\xcb\xab\xc0\x87\x6f\x8f\xc1\x87\x83\x09\x56\x86\x0f\x67\x6a\x5d\x17\x39\xb5\x66\x7f\x66\x38\x6f\x68\x85\x95\x35\xaa\xe1\xb9\x67\x8c\x6a\x9c\x96\x32\x72\x7b\xfc\xd6\x56\x46\x6e\x5f\xac\xe1\xb6\x61\xf8\x3a\x64\xbe\x2a\xe7\xcb\x7f\xd1\x51\x53\x7e\xb8\x2e\x3a\x6a\x4a\x1a\xd7\x45\x47\x6d\xf8\xe2\x64\x38\x6f\xfb\x25\xc3\x79\x3b\x69\x14\x38\x6f\xdf\x80\x02\xe7\xcd\xa2\xb6\x8a\x9c\x37\xcf\xaf\xc0\x79\x47\xcf\x84\xf3\x76\x8a\xbc\xe8\xa8\xf9\x25\xf4\x75\xd1\x51\xf3\x5b\x86\x8b\x94\xd3\x07\x06\x59\xa4\x9c\xfc\xe8\xc0\x22\xe5\xe4\x07\x09\x16\x29\xa7\x8f\xdc\xca\x22\xe5\xe4\xe7\x02\x16\x29\x27\x8d\xfe\x17\x29\xa7\xef\xb3\x0d\x70\xde\xd3\xbb\x3e\x94\x78\x0e\xa4\x9c\x3e\x80\xf6\x22\xe5\xe4\xc7\x03\x16\x79\x25\x3f\x5d\xb0\xc8\x2b\xb9\x2f\x74\x91\x57\x72\x27\xe8\x22\xaf\xb4\x48\x93\x2f\xf2\x4a\x0b\xa6\x77\x91\x57\x5a\x90\x75\x8b\xbc\x92\xea\x88\x45\x5e\x69\x2d\xaf\x39\x28\x79\x95\xc9\x99\xf4\x04\x79\xa5\xe5\xa8\x23\xaf\xa4\x60\x60\x91\x57\xda\xc7\x63\xec\x97\x70\xd6\x20\xaf\xb4\x51\x45\x2f\xf2\x4a\x8a\xfc\x56\x83\xf3\x26\xb5\xb9\x1a\x9c\x37\x59\xb4\xd5\xe0\xbc\xa1\x62\x56\x83\xf3\xf6\xdd\x6c\x70\xde\xc4\xe8\xab\xc1\x79\xfb\xdc\x1b\x9c\xf7\xe3\x31\x38\xfd\xe3\x35\xe1\xbc\xe1\x00\x56\x83\xd3\x3f\xbf\x3b\x25\x37\xe8\x70\x62\xd1\xd5\xa0\xc3\x8b\x97\x84\x0e\x07\xf4\x2f\xac\xd3\x5f\xc2\xfe\x85\x75\xfa\x6b\x75\x58\xa7\xbf\x24\x06\x16\xd6\xe9\x5a\xd8\x2f\xac\xd3\xdd\x39\xb5\xb0\x4e\x7f\x9d\x50\xb0\x4e\xf7\x4b\xb7\x4b\xeb\x74\x58\xcb\x85\x75\xba\x0a\x81\xd5\xdd\x2e\xc1\x63\xc0\x3a\x5d\xd8\xbd\xb0\x4e\xcf\xdd\x3b\x5b\x94\xe8\x24\xac\xd3\x73\xf3\xce\xd8\x4a\xe1\x30\xd3\x3a\xdd\x63\x58\xa7\xbb\x0d\x75\x0d\x29\x7d\xda\x30\xa0\xed\x9b\x25\x69\x7b\x6a\x18\x7c\xbd\xd0\xd5\xf6\x02\xae\x5e\x7c\x71\x06\x94\xbe\x4b\xc7\x90\xb7\xf7\x4c\xb6\x7c\xb8\x58\x0c\xb6\x7c\x38\x79\x5f\x50\xd5\xab\xc3\xf3\x02\xa7\xde\x88\xce\xd6\x05\x4e\x5d\xc0\xbc\xa6\xdb\x3a\x68\x11\xe9\x21\xbf\x57\xbd\x48\x0f\x35\x97\x3f\xd2\x43\xc2\xe7\x45\x7a\xa8\x39\x09\x93\x1e\xf2\x5b\x63\x8b\xf4\x50\x1f\x1e\xbb\x7d\xbd\xd9\x08\xb0\x48\x0f\xe9\xc2\xb5\x48\x0f\x6d\x5f\xaa\x8b\x8e\xd2\x76\xea\xc1\x02\x5d\x73\xc7\x85\x05\xba\xca\xd2\x85\xcd\xb9\x1a\xd4\x85\xcd\xf9\x43\x32\x6c\x61\x73\xae\x61\xe4\xc2\xe6\xfc\x71\x42\xc1\xe6\x5c\xb5\xea\xc2\xe6\x5c\x33\xc9\x85\xcd\xb9\xea\xd1\xa5\xcd\x79\xf5\x18\xd6\x42\xd5\x63\x58\x0b\xf9\x6c\xb1\x39\xd7\x45\x6d\x61\x73\xae\x2f\xdc\x52\x90\xe7\x02\x84\x95\xb9\x3e\x16\x0b\x2b\xf3\xec\xef\xb0\x32\xcf\x24\xae\x16\x56\xe6\x19\x1e\x76\x61\x65\x9e\xbd\x26\x56\xe6\x8a\x0a\x17\x7e\xe5\xd9\xe5\x16\xbf\x72\xb7\x57\x2f\xfc\xca\xb3\xbd\x8b\x27\x79\xf6\xd9\xe2\x49\x9e\x9d\xdc\xf0\x24\xcf\x10\x64\x0b\xdf\xf1\x6c\xac\x8d\xef\x78\x86\xd4\x58\x78\x8b\x37\x97\x31\xf2\x35\x7a\x32\x2c\xf2\x35\x0d\xb8\xbe\xc8\xd7\xfc\x2c\xa9\xe4\x6b\x1a\x99\x8f\x45\xbe\x46\x47\x88\x45\xbe\x46\x1d\xcc\x22\x5f\xa3\xeb\xc3\x22\x5f\xd3\x60\x6c\x17\xf9\x9a\x06\xc9\xb0\xf0\x16\x6f\x46\xb4\xe4\x6b\x9a\x91\x29\xf9\x9a\x66\xbc\xa9\xb7\x38\x54\xc5\xc2\x5b\x7c\xf8\x8e\x91\xcb\x19\xb6\x8f\x5c\xce\xf0\xcd\x21\x97\x33\x1c\x59\xe4\x72\x86\x4b\x9c\xde\xe2\x2e\x86\xe4\x72\x86\x8b\x21\xb9\x9c\xf1\x79\x2f\xec\x35\x98\x96\xf0\xe5\x2e\xd6\x87\x4e\x1f\x54\xb5\xc8\xe5\x6c\xda\xbe\xc9\xe5\x6c\x36\xde\x6d\x72\x39\xfb\xd7\x7d\xfe\xd9\x29\x79\x93\xe6\xd9\xb8\x14\x6c\xd2\x3c\x87\xf8\x76\x93\xe6\x39\xd9\x4b\x22\x7f\x1f\x56\x87\xfc\x9d\x97\x78\x3f\xf2\xbe\x83\x52\x83\x13\x3e\x94\x2e\x19\x12\x92\x35\x48\x79\x7b\x0c\x79\x38\x6a\xc7\x8d\x78\x2e\x00\xa6\x37\xe2\x39\x65\x6f\x1b\xf1\x5c\x60\xd7\xdf\x46\x3c\xe7\x86\xdc\x8d\x78\x2e\x40\x78\x6c\xc4\x73\x46\xf3\x1b\x5f\x89\x00\xe1\xb1\xf1\x95\x70\xa7\xdd\xc6\x57\x42\x14\xb0\xf1\x95\x08\xd1\x33\xe1\xb5\xd9\x78\xb0\xf1\x95\x08\x8f\xbf\xb3\x7d\x85\x12\xed\x8b\x9e\x79\xdb\x90\x90\xcb\x6d\x3e\x02\x95\x7e\x6a\xd8\x1c\xb3\x74\xdb\x20\x1d\xb1\xb1\x24\x4f\xb0\x50\x1b\x4b\xf2\x14\x2d\xbd\x1c\xa3\x45\x58\x92\x27\x7b\x17\x4b\xf2\x14\x3c\x96\x29\xd1\x06\x2c\xc9\xc5\x19\x1b\x4b\xf2\xc4\xea\xbe\xb1\x1d\x57\x82\xb7\xb1\x1d\xcf\xc5\xab\x7c\x30\xcb\xd6\x80\x0e\x1a\xfd\xed\xc6\x76\xbc\x00\xbb\x37\xb6\xe3\x05\x1a\x6a\x63\x2d\x2e\xc9\xb0\xb1\x16\x77\xa9\xda\x58\x8b\x17\xc0\xfb\xc6\x5a\xdc\x25\x6e\x63\x2d\x5e\xc1\x4a\x1b\x6b\xf1\xde\xfd\x5d\x83\x09\xf5\x4c\x78\x51\x26\x86\x8d\xb5\x78\x67\xa2\xdd\x58\x8b\x9b\x28\xdb\x58\x8b\xfb\x59\xcc\x8d\xb5\x78\x27\xc5\xbc\xb1\x16\xef\xd1\x33\x6f\x1b\x3a\x0b\xc9\xc6\x3f\xbc\x33\x69\x6c\xfc\xc3\x15\xcf\x6d\xfc\xc3\x3b\x53\xcf\xc6\x3f\x5c\x57\x84\x8d\x7f\x78\x07\x35\x6e\xd2\x43\xdd\x97\x91\xf4\x50\x47\xd9\xb3\x49\x0f\xe9\x9f\xb0\x93\xed\xf3\x77\xb6\xcf\x1a\xf0\x9f\x26\x19\xb6\x49\x0f\xcd\xea\x7d\xc2\xfb\x12\x17\x6f\x72\x40\x6e\x0a\xda\x49\xff\x69\xaf\x09\xef\x0b\x6e\xdb\xe4\x80\x36\x49\xf3\x4d\x0e\x68\xb3\xa8\x6d\x72\x40\xdb\xdf\x91\x03\x72\x63\xcc\x26\x07\xb4\x3f\x7f\x07\x71\x48\xee\x61\x93\x03\xda\xdd\x1a\x20\x0e\x59\x56\x36\x39\xa0\xcd\xe2\xbb\xc9\x01\x99\xce\xdf\xe4\x80\xb6\x63\x82\x1c\xd0\x66\x8a\xdc\xe4\x80\x36\x2a\x95\x4d\x0e\x48\xab\xad\x4d\x0e\xc8\x40\x60\x93\x03\xda\x8e\x3a\x72\x40\x7e\x8b\x72\x93\x03\x32\xbd\xb7\x8b\xed\xb3\x44\xfb\x48\x62\x6f\x72\x40\x1a\x76\x6d\x72\x40\x7b\x7a\xe6\x25\x4a\x7e\xe6\x17\xcc\x23\x82\xb3\x22\xe6\x11\x7e\xaa\x78\x63\x1e\x11\x8a\xbf\x83\x34\x4d\x1e\x83\x34\x2d\xbf\xf7\xed\xbd\x8d\xaf\x84\x5b\x38\x37\xbe\x12\xc1\x57\xb3\xc8\xa7\xda\x58\xf8\x54\xa7\x3a\x7c\x25\x8c\xa7\x37\xbe\x12\xc1\xe1\x89\xaf\x84\xf4\xc7\xc6\x57\xc2\xd4\xdf\xc6\x57\x22\x64\x8f\x61\x3f\x03\x14\xdc\xf8\x4a\xbc\xac\x93\x1b\x5f\x89\xe8\x54\x87\xaf\x44\x4c\xd6\x87\xa5\x35\x7e\x0d\x1b\x5f\x09\xb7\x77\x6e\x7c\x25\x52\xf1\x18\xf6\x33\xbe\xc4\xf8\x4a\xa4\xec\x55\xe0\x5a\xb3\x67\xc2\xb5\xda\x86\x06\xd7\x0a\xf0\xdd\x0d\xae\xd5\xfa\x1a\x5c\xab\x0f\xa5\xc1\xb5\x92\xd4\xda\x0d\xae\x15\x51\xcc\x6e\xe8\x76\xe1\x14\x37\xd6\xe2\xf9\x58\xe2\xfb\x65\x2e\x32\x58\x8b\x67\x62\xd8\x8d\xb5\x78\x3e\x1e\x83\x6b\x25\x8d\xb5\xb1\x16\xcf\xc7\x7b\x41\x7b\x0c\xf9\xb2\xb1\x16\xcf\x2e\x71\xd8\x87\x57\x5f\x70\xec\xc3\xab\x13\x0a\xf6\xe1\x7e\x1d\x78\x63\x1f\xee\xe7\x94\x76\xc7\xe1\xda\x69\xe2\x22\x99\x5a\x9d\x5e\xb0\x16\xf7\x9b\x84\x1b\x6b\xf1\xea\x78\xc1\x5a\xbc\x3a\x96\xb0\x16\xaf\x8e\x10\xac\xc5\xab\xa3\x00\x6b\x71\xed\x5b\x37\xd6\xe2\x75\x5b\x3b\xda\x63\xb0\xcb\xc6\x5a\xdc\x0d\x19\x1b\xfb\xf0\x46\xea\x76\x63\x1f\xde\x5c\x10\xb0\x0f\x6f\xd5\x63\xf0\xc5\xe0\xa8\x3d\xe0\x8b\xc1\x51\x7b\xc0\x17\x13\x41\xef\x81\xfd\x0c\xa9\xc6\x8d\xed\x78\xff\x39\x86\xfd\x4c\xf3\x2a\x10\x56\x2e\x8d\x03\xfb\x19\x62\xae\x8d\x41\xb9\x06\x8e\x1b\x17\xf2\x61\x88\x82\x0b\xf9\x20\xe5\xb4\x71\x21\x1f\x2e\x9b\xb8\x90\x2b\xf2\xdb\xb8\x90\x0f\x17\x6d\x9c\xc6\xa7\x4b\x0e\x4e\xe3\x3f\x93\x30\x4e\xe3\xd3\x05\x08\xa7\xf1\x59\xfc\x1d\x9c\x70\xf1\x77\xb7\x0d\x7e\xc7\x71\xe3\x34\x2e\x35\xb2\x27\x9c\x30\xd8\x65\x4f\x34\xc4\xf6\x12\x2e\xe4\x5a\x58\x6d\x5c\xc8\x97\xfd\x89\x0b\xb9\xc4\xc5\xc6\x85\x7c\x81\x67\xf7\x07\x27\xec\xa8\xfb\xd0\x10\x7b\x67\x38\x94\x1f\x97\x15\x1c\xca\xcf\xb0\x06\xbc\x62\xd0\x3c\x6c\x72\x40\x07\xa7\x8c\x8d\xd1\xc3\xe3\xac\xf1\xe1\xe0\x9d\x3d\x13\x2f\x15\x17\x3c\x4c\x20\x74\x15\xdc\x98\x40\x04\xf4\x25\x1b\x13\x88\x00\xb3\xbc\x31\x81\xf0\x6b\xee\x1b\x13\x88\x9f\xf9\x0c\x13\x08\x33\x49\x7b\xc1\x09\xc3\x41\xef\x05\x27\xec\x7b\x84\xd1\xc3\xcf\x1c\x89\xd1\xc3\xfb\x78\x15\xbc\x54\x5c\x52\x31\x7a\x48\xed\xf7\x74\xc9\x1b\x83\x72\x3f\x6f\xbe\xf1\x80\xf8\x89\xce\x2e\x38\x6a\x29\xda\x20\x78\x5f\x23\x0d\xcc\xcb\x93\xb7\x82\x79\x79\xf2\x36\x31\x2f\x4f\xae\x0e\x98\x97\x27\x5f\x5b\xcc\xcb\x93\x0f\x0c\xf3\xf2\x14\x3d\x56\x28\x59\x43\xe5\x77\xd4\x8e\x79\x79\x72\x9a\xc0\xbc\x3c\xb9\x36\x61\x5e\x9e\x8c\xa4\x30\x2f\x4f\x2e\x08\x98\x97\xbb\x4f\x6c\x63\x5e\x5e\x9c\x34\x30\x2f\x2f\x4e\xc9\x98\x97\xbb\x87\x6c\x63\x5e\x5e\x8d\x76\x31\x2f\x77\x6b\xf9\xc6\xbc\x5c\xab\xfd\x8d\x79\xb9\x72\xb9\x8d\x79\xb9\x16\xfd\x1b\xf3\xf2\x02\xeb\xb5\x31\x28\xaf\x46\xa6\x18\x94\x57\xd8\xea\x8d\x41\x79\x73\x9a\xc7\xa0\xdc\xbc\xff\xc6\xa0\xbc\xb9\xba\x63\x50\xde\x96\x67\x6e\x4a\xb4\x08\x83\x72\x95\x05\x07\x83\xf2\x06\xab\x77\x30\x28\x6f\x80\xdb\x83\x41\x79\x83\xd7\x3e\x1a\x94\xa3\x56\x38\x1a\x94\xa3\x17\x38\x1a\x94\x13\x77\x1c\x0d\xca\x49\x39\x1d\x0d\xca\x79\xee\x07\x83\x72\xb7\x9d\x1f\x0c\xca\x07\xcf\xe8\x60\x50\x3e\x78\x1d\x0e\x06\xe5\x03\x29\xdd\xc1\xa0\x7c\x54\x6b\x80\xdb\xe5\x49\x1f\x0c\xca\x07\xba\xf2\x83\x41\xf9\xe0\x15\x3b\x18\x94\x0f\xf8\xcd\x83\x41\xf9\x60\x14\x1c\x0c\xca\xdd\xca\x7e\x30\x28\x1f\xbc\x62\x07\x83\xf2\xc1\x88\x3c\x18\x94\xfb\x39\xcd\x83\x41\xf9\x40\x7e\x78\x30\x28\x1f\xd1\xdf\xd9\x3e\x7a\x37\xc0\xed\xfe\xd4\x00\xb7\x0b\x25\x76\x02\xdc\x6e\xf3\x9a\x70\xbb\xf6\x35\xe9\x21\x3f\x2f\x7b\x5e\xf9\x5b\xae\x42\x7a\xe8\x83\x24\x3a\xa4\x87\xbe\xcf\x63\xf0\xd3\xc4\x9b\x87\x1c\x90\x7b\xe4\xce\x2b\x7f\x7b\x28\xc1\xdf\x42\xa2\x1c\x72\x40\x6b\x7b\x0c\xfe\xf6\x58\x03\xfc\xed\xf1\xce\xe0\x6f\xb7\x25\xf8\xdb\xed\x7d\xe2\x77\x03\xf9\x72\xc8\x01\x6d\xef\x9a\x1c\xd0\x01\xe5\x1c\x72\x40\x07\x4a\xf3\x90\x03\xda\xbc\x0f\x87\x1c\xd0\x61\xcc\x1f\x72\x40\x07\x34\x76\xc8\x01\x9d\x9f\x6b\xc2\xdf\x42\x5c\x9c\x08\x7f\x9b\xfc\x1d\x9a\xec\x6c\x7d\xf0\xb7\xc9\xdf\xa1\xc9\x06\x1d\x9d\x08\x7f\xcb\xfc\x72\x22\x9a\x6c\x02\xb2\x13\xd1\x64\x93\x43\x38\x11\x4d\x36\xd3\xe7\x89\x68\xb2\x49\x6d\x9e\x84\x26\x9b\x28\xf9\x24\x34\xd9\x20\xed\x93\xe0\xa7\xa1\x7e\x4e\x92\x9f\xf6\x4c\xf8\xe9\xe4\x31\xfc\x6e\xc2\xef\x4d\xc9\x27\x61\x85\x83\xe4\xfc\x24\xac\x70\x1c\xac\x09\xea\x9a\x88\xe8\x24\xe4\xda\xbe\x62\x09\xea\xfa\xb3\x74\x9b\xee\x16\x93\x73\x41\x55\x7f\xb3\xa5\xc5\x31\x06\xc8\x05\x55\xdd\xbd\x75\xe7\x82\xaa\xee\x67\xd8\xcf\x05\x55\xdd\x4f\xb4\x9f\x0c\x77\xcd\xe4\x7d\x32\xdc\xb5\x8f\x28\xc3\x5d\x03\x10\x4e\x86\xbb\xb6\x5b\x32\xdc\x75\xf4\x18\xdc\x35\xcb\xc3\xc9\x70\xd7\x76\xe7\x05\x55\xfd\x25\xf2\x3e\x17\x54\x75\xb7\xc2\x9c\x0b\xaa\xba\x1f\x8f\x3f\x99\xf6\x11\x6b\x9f\x2c\x77\x4d\x8b\x32\x9c\xb0\xa5\x02\x3f\x0d\xd7\x7a\x0a\xfc\x34\xc9\x8d\x53\x90\x95\xb3\x4d\xf3\x14\xf8\xe9\xe3\x31\xf8\x69\x16\x84\x53\xe0\xa7\x91\x0a\x9e\x82\xed\x7f\xb6\x84\xed\x3f\xa9\xd4\x53\xb0\xfd\xaf\x1e\xc3\xda\x9f\x85\xe4\x14\xac\xfd\x7d\x01\x2e\xca\xe9\x0d\x52\xea\x5c\x94\xd3\x1b\x29\xca\x73\x51\x4e\x6f\xc7\x12\xdc\x35\x91\xf7\xa9\xd8\x0e\x11\x57\x9d\x8b\x64\x7a\x27\xe6\x3a\x17\xc9\xf4\x3e\x3d\xf3\xde\xe7\x70\x9a\xb8\x48\xa6\x7f\x30\xd9\xe7\x22\x99\x2e\xcf\x7c\x2e\x92\xe9\x87\x64\xe6\xb9\x48\xa6\x1f\xef\xfa\x22\x99\x7e\x88\x29\x0f\x7e\x0d\x0f\xcc\xf9\xc1\xaf\xe1\x21\x9e\x3e\xf8\x35\xf8\xbd\x93\x83\x5f\x83\xdf\x42\x39\x0d\xdb\x21\xb8\xf2\x83\x5d\xb9\x9e\x05\x07\xbb\x72\x9d\x0f\x0e\x76\xe5\x5a\x8a\x1e\xec\xca\x55\xa4\x1e\xec\xca\x95\x73\x1e\xec\xca\xfd\x4a\xc4\x61\xfb\xd0\x63\xfb\xb0\x2b\x0f\x4e\xd0\xd8\x95\x07\x27\x3e\x3c\xc9\xdf\x66\x09\xee\xda\x9e\xc0\x93\x5c\x67\xb6\x83\x27\x79\x84\x7f\x3f\x78\x92\x67\xa7\x33\x3c\xc9\x45\x5c\x07\x4f\xf2\x02\xc9\x77\xf0\x24\x2f\xbe\xc5\x78\x92\xe7\xe3\x55\x32\xc7\x78\x46\x78\x92\xfb\x71\xfc\x83\x27\x79\x71\xfa\xc4\x77\x3c\x3b\x3e\xf1\x1d\x2f\xc1\x33\x3f\x4a\xf4\x12\xbe\xe3\x85\x10\xe5\xe0\x3b\x5e\x82\x77\x06\xaf\xed\xd8\xc5\x77\xbc\xe2\xcc\x76\xf0\x1d\xaf\x5e\x13\xdf\xf1\x46\x90\x77\xf0\x1d\x6f\x48\x21\x0f\xbe\xe3\x6e\x50\x3f\xf8\x8e\x8b\x72\x0e\xbe\xe3\xcd\xe5\x0f\xdf\x71\x9d\xe0\x0e\xbe\xe3\x6e\x50\x3f\xf8\x8e\xeb\x19\x77\xf0\x1d\x6f\xf6\x0b\xbe\xe3\xfd\xf5\x4c\xbe\x45\x89\x72\xe9\xe0\x3b\xde\x91\xbd\x1d\x7c\xc7\xbb\xf3\x20\xbe\xe3\xdd\x79\x10\xdf\xf1\x9f\x31\x8f\xef\xf8\x70\xe1\xba\x08\x28\x0f\x47\xc8\x44\x73\xbe\x7e\x8f\xb8\x38\x13\xaa\xdc\x81\x3c\xa1\xca\x8d\xb2\x26\x54\xb9\x11\xd1\xc4\xb6\xc6\x0e\x9c\x58\xca\x93\x5d\x3f\x13\x39\xba\x2f\xce\x44\x8e\xfe\x73\x9b\x48\xce\x5d\xb3\xf9\x0a\xee\x44\x36\x75\x48\x01\x4d\x57\x62\x52\x40\xd3\xb5\x9e\xaf\xe0\x7e\x30\xa1\x87\xaf\xe0\xfe\xc4\x24\xa4\x87\x56\xf3\x77\xc8\xd1\x8d\xb9\x48\x0f\xa9\x30\x3c\xa4\x87\x94\xd2\x1d\xd2\x43\xdb\x75\x92\xf4\xd0\x76\xe9\x20\x3d\xa4\x2e\xf2\x90\x1e\x92\x57\x3b\xa4\x87\xb6\xbd\x44\x7a\xe8\x67\xad\x27\x3d\x74\x92\xc7\xb0\x7c\x31\x1a\x24\x3d\x74\xf0\xb8\x3d\x4b\xce\x9b\xfa\xf0\x6b\x08\x4e\xfa\x4b\xce\x9b\xbb\xc6\xaf\x21\x54\xcf\x84\xd7\xce\x9e\x09\xaf\xed\xf2\x80\x27\x43\x00\xc4\x1d\x3c\x19\x82\xcf\x08\x4f\x86\xf7\xf5\xcc\xcb\xd5\x25\x7b\x09\x4f\x86\xf4\xf3\x3b\xb5\xce\xb4\x1d\x4f\x86\x34\x2c\xc1\x79\x03\xf0\x0e\x9e\x0c\x92\x3d\x07\x4f\x86\x04\xe8\x3f\x78\x32\x24\x97\x46\x3c\x19\x12\xf0\xf9\xe0\xc9\xa0\x20\xef\xe0\xc9\x20\xae\x39\x78\x32\x24\x23\x53\x3c\x19\x32\xe0\xf6\xe0\xc9\x90\x87\xd7\xc4\x17\x64\x79\x4d\x7c\x41\x7c\x2a\xf8\x35\x94\xe1\xef\xd0\x41\x0f\xef\x1a\x1d\x74\xb7\x3e\xb8\x64\xe3\x7e\xfc\x1a\xba\x67\xb2\x45\xa8\xb3\x51\xf9\xe0\xd7\xd0\x49\x24\x1d\xfc\x1a\x4c\x82\x1e\xfc\x1a\xba\x23\x04\xbf\x06\x3f\x1a\x76\xf0\x6b\xe8\xdd\x12\x5c\x32\x29\xca\x83\x5f\x43\x9f\x1e\x83\x4b\x1e\x96\xe0\x92\x5d\xe2\xf0\x6b\xe8\xe8\x59\x0e\x7e\x0d\xdd\xc5\x1e\xbf\x06\x53\xb0\x07\xbf\x86\x4e\x52\xeb\xe0\xd7\xd0\xf9\x88\xeb\xc1\xaf\xa1\xdf\xc8\x3b\x3c\xf8\x35\xf4\x61\x09\x0d\xf1\x0d\x58\xc2\x83\x5f\xc3\xbc\xd4\x64\x78\xf0\x6b\xf8\xa2\x67\xde\xf6\x9d\x9f\xd2\x6d\xdf\xb9\xd3\x7c\x78\x30\x65\x20\x12\x0e\x0f\x79\x25\x16\xd8\xf0\x90\x57\xda\xc7\x33\x6f\xfb\xce\x6b\x7d\x83\x6b\xfa\xbb\xc9\xb1\x87\xd2\x47\xc9\x7b\xb9\xed\x3b\x37\x7f\x12\x1e\xf2\x4a\xe7\xaa\x1c\xc2\x43\x5e\xe9\xbc\x94\xc8\x2b\xed\xc3\x99\xe4\x95\xf6\xb6\xf4\xf2\xbb\x42\x29\x52\x7b\xa0\x64\xfb\x1a\x25\xda\x17\xbd\x66\xa1\x06\x5a\x14\x6c\x5f\xa6\xd4\x38\x36\x29\xd9\x3e\xeb\xa3\x7d\xcd\x6b\xda\xbe\xdf\xf1\xb8\x08\x0f\xe9\xa8\xbd\x69\x7a\xb0\xe9\xde\x26\x34\xfa\xf1\xc6\xd4\x17\x73\xe6\x6b\xd3\x2b\x25\xb8\xe4\x4e\xc7\xe3\xe5\x10\x3a\x1d\x8f\x97\x43\xb8\x2b\x55\x78\xf0\x72\x08\x77\x85\x0b\x0f\x5e\x0e\xa1\xf9\x3b\x68\xf4\x4e\x7d\x5a\x99\xfb\xc0\xb4\x32\xff\x39\x86\x57\x45\xa7\x73\xb5\x32\x4f\x5e\x05\xaf\x8a\xcc\xa3\xd5\xca\xbc\x78\x0c\x2e\xb9\xd0\xb9\x78\x40\xa4\xe2\xbd\xc0\x25\x57\x7e\x87\x95\x39\x93\x46\x78\xb4\x32\x7f\xb8\x8a\xfe\x10\x9d\x5e\xc2\x1f\x82\x4f\xba\x86\x07\x7f\x88\xf2\xf8\x3b\xfc\x21\x1e\x1e\x98\xfe\x10\x0f\xfd\xa2\x3f\x84\x43\x57\x7f\x88\xed\x35\xe1\x99\xb7\xc7\xe0\x68\xed\x25\xfd\x21\xec\x4f\xfd\x21\x2a\x83\x40\x7f\x88\xe2\x55\xb0\x0f\xff\x2c\xc1\xd1\x76\xce\xd4\x1f\x62\x70\xd7\xfa\x43\x4c\xea\xc3\x1f\xa2\x0d\xee\x13\x7f\x88\xe6\x4b\x8c\x07\x44\x6f\xd4\xae\x07\xc4\xcb\x33\xc2\x03\x62\x38\xc8\xf1\x80\x18\x83\xde\xc5\x03\x62\xfc\x5c\x13\x4d\xef\xf6\x2a\x68\x7a\x7d\x71\xf4\x80\x18\x5e\x05\x0f\x88\xce\x0b\xa0\x07\x44\xa3\x3f\xf1\x80\x20\x48\x08\x0f\x1e\x10\xb3\xd3\x22\x3c\x20\x66\xa7\x06\x3c\x20\xa6\xe3\x13\x0f\x88\xd9\xa8\x0f\x0f\x08\xbe\x49\x13\x1e\x3c\x20\x66\xf3\x2a\xf0\xb7\xf6\x3c\x1e\x10\xdf\xa4\x0d\xfa\x3c\x4c\xef\x05\x9f\x87\xc9\xe8\xd1\xe7\xa1\xf3\xae\xe8\xe5\x30\x38\x86\x97\xc3\xfa\xe8\x17\xbc\x1c\xf8\xaa\x5c\x78\xf0\x72\xc0\xc0\x27\x3c\x78\x39\xac\x49\x4f\xe0\xe5\xc0\xb6\xec\xf0\x90\x72\x5a\xc3\x33\xd1\xe6\x4e\x5a\x44\xca\x09\xbb\x9b\xf0\x90\x72\x5a\xb6\x8f\x94\xd3\x1a\xf4\x8b\x7e\xe5\xcb\xab\xd0\x86\x8f\xb6\xeb\x57\x3e\x6c\xc3\x86\x05\xa6\x0d\xe4\x8e\xce\xa2\x3e\xc4\x73\x4f\x66\x14\x20\x9e\xc3\x16\x35\x3c\x88\xe7\x1e\xfb\x13\xf1\x5c\xf0\xdd\x44\x3c\x17\x9a\x25\x04\xb8\x3e\x15\xc4\x73\xc1\xe9\x0c\xf1\xdc\xcf\xac\x81\x78\x2e\x38\xe6\x11\xcf\x85\x46\x1b\x10\xcf\xb1\x85\x3a\x3c\x88\xe7\xc2\xf1\x77\x1b\xa6\xd7\x63\x97\x7c\x79\x5d\x56\x10\xcf\xa1\x19\x0b\x0f\xe2\x39\x30\x79\x78\x30\x65\x48\x1f\xcf\x1d\x53\x86\x64\x5f\xe3\x49\x9e\x3e\x66\x22\x3c\xc9\xf9\x52\x7f\x78\x30\x6c\x48\xce\x83\x18\x36\xa4\xfe\x3b\x22\xb8\xf0\xe0\xe5\x90\x1c\x04\xd8\x95\x27\x87\x12\x5e\x0e\xe9\xf3\xc6\xe0\x68\x7d\xb4\x78\x39\xa4\x8f\xee\xc4\xcb\x21\x2d\x5e\x5b\xbc\x1c\x52\xf7\x18\x1c\xf4\xe4\x9a\x78\x39\xa4\xc5\x30\xc3\xcb\x21\x39\x3c\xf1\x72\xa8\x91\xc6\xe2\xe5\x50\x83\xbf\x4b\x1c\xe3\x5e\xf0\x72\xa8\xae\x8c\x78\x39\xd4\x97\x21\x88\x97\x43\x8d\x74\x0b\x5e\x0e\x00\xa7\xf0\xe0\xe5\x50\xb3\x67\x0e\xce\xe4\x11\xe1\xe5\x50\x5d\xc1\xf1\x72\x68\x87\x16\xe9\xe5\xe0\xba\x8c\x97\x43\x73\xe5\xc7\xcb\x81\x7d\x5b\xe1\xc1\xcb\xa1\x1d\xea\xc3\xcb\x01\xa8\x14\x1e\xbc\x1c\xda\xf6\xd8\x6d\x5f\x0f\xb4\x1d\x2f\x87\xe6\xb4\xa4\x97\xc3\xe0\x41\xeb\xe5\xd0\xe8\x09\xbc\x1c\x46\x67\xf0\xe0\xe5\x30\x9c\x30\xf1\x72\x18\x4e\x98\x78\x39\x0c\x27\x37\xbc\x1c\x46\xf7\x4c\xb8\xdd\x41\x1b\xf0\x72\xf8\x99\x3e\xf1\x72\x18\x83\x5e\xc2\xcb\x01\x87\xe4\xf0\xe0\xe5\xc0\xb6\x87\xf0\xe0\xe5\x30\x5c\x9c\xf0\x72\x60\x03\x70\x78\xf0\x72\x18\x4e\xfa\x78\x39\x7c\x2e\x7f\x58\x99\x7f\xde\xe7\x54\xb7\x4b\xfb\xb0\x32\xff\x1c\x4b\x13\xee\xb3\xf0\xdc\x27\xdc\xa7\x83\x1c\x2b\xf3\xe5\x74\x8d\x95\xf9\x3a\x5e\xe5\xb6\xe1\x27\x8e\xc3\xca\x1c\x25\x51\x78\xb0\x32\xff\x89\x73\xb0\x32\xff\x89\xea\xb0\x32\x3f\xf6\xa7\x7e\x0d\x85\x91\xac\x5f\x43\xa6\xed\xfa\x35\x64\xea\xd3\xaf\xc1\xc5\x5e\xbf\x86\xcc\x7d\x7e\x72\x9f\x3c\x31\xfc\x1a\xf8\xfc\x7e\x78\x3e\xb9\x4f\x7a\x02\xbf\x86\x27\xd3\x5a\xfd\x1a\x82\x57\x41\xa0\xea\x48\xd6\xaf\xc1\x29\x44\xbf\x06\x17\x27\xfc\x1a\x48\x5c\x85\x07\xbf\x06\x10\x57\x78\xf0\x6b\x60\x07\x41\x78\xf0\x6b\x78\x7f\xce\x84\x00\x74\x12\xc6\xaf\xe1\x75\xc2\xc4\xaf\xe1\x6d\xd6\x00\x01\xe8\x28\x58\x10\x80\x06\x48\x78\x39\xbc\x95\x36\x60\xd8\xf0\x3a\xea\x30\x6c\x78\x9d\x5f\x30\x6c\x78\x1d\x59\x0b\x82\xb3\x7a\x0c\x82\xd3\x91\x85\x97\x79\x76\x24\x63\xd8\x90\x7d\x46\x18\x36\x64\x47\x2b\x86\x0d\xd9\x71\x8d\x61\x43\x71\xbc\x60\xd8\x50\xac\x1d\xbf\xf2\xd2\xb9\xcf\xad\x78\xd5\x63\x88\x57\x5d\xaa\xf0\x2b\x27\x5b\x14\x9e\x8b\xc6\x7a\xf5\x3e\x2f\x1a\xeb\xd5\x7e\xc1\xcb\xbc\x1e\x7a\x02\xbf\x72\x9c\x0a\xc3\x83\x5f\xf9\x55\xe6\xff\xf9\x29\x19\x2b\xf3\xfe\xd0\x3c\xac\xcc\xd9\x5c\x1a\x1e\xac\xcc\xfb\x43\xe5\x5a\x99\x1b\xe3\x61\x65\xde\x8d\xc0\xb0\x2b\x87\x43\x09\xcf\x05\x55\xfd\x73\xca\xba\xa0\xaa\x7f\x3f\xb7\xb9\x29\x59\xdf\xed\x6a\x84\x2f\x21\x5c\x50\xd5\x0f\xd3\x6e\xb8\xa0\xaa\x9f\x4b\xe9\x87\x80\x58\x2f\x10\xa7\x06\xc4\x7a\x6c\xbd\x0e\x41\x4b\xf2\xe3\xef\xe0\x06\xaf\x5c\x3b\x04\x2d\xc9\x99\x30\x03\x9e\x0c\x08\xbb\x43\xc0\x77\x81\xef\x65\x84\x80\xef\x02\x26\xf2\x21\xe0\xa6\xf0\x32\x69\x04\xdc\x14\x5e\x56\xe9\x80\x9b\xc2\x7b\xa8\x1d\x37\x05\x3e\x5a\x1e\x02\x6e\x0a\x85\xb8\x31\xe0\xa6\x50\x6c\x11\x6e\x0a\x25\x72\x2f\xb8\x29\x94\xe8\xef\x60\xf5\x58\x8e\x02\x6e\x0a\x85\x65\x25\xe0\xa6\x50\x5e\x7f\x77\xef\xba\xdc\xe4\x46\x08\xec\x41\x2a\xc9\xfa\x60\xfc\x2e\x15\x13\x02\x4e\x0b\x6c\x77\x0e\x01\xa7\x85\x72\x45\x70\x21\x60\x26\xde\x78\xe1\x02\x4e\x0b\x46\xd0\x01\xa7\x05\xcc\x8b\x42\xc0\x69\xc1\x08\x3a\xbc\xb2\x7a\xf4\x12\x4e\x0b\x6d\x78\x26\xac\x1e\x91\x70\xc0\x69\xa1\x0d\xeb\xeb\x30\x70\xf4\xa7\x4e\x0b\x8f\x67\xa2\x02\xf5\xf9\xe9\xb4\xf0\x58\xc2\x71\xda\xa7\xa9\xd3\xc2\x63\xed\xd0\x5e\x97\xd1\x0c\x01\x33\xf1\xb9\xb9\x17\x5c\x18\x26\xe8\x2f\xe0\xc2\x30\x37\xf5\xe1\xc2\x30\x37\x35\xe8\xb4\x40\x3c\x1d\x70\x5a\xe0\x03\x58\x21\xe8\xb4\xc0\xf4\x19\x74\x5a\xc8\xf4\x92\x4e\x0b\x20\x92\xa0\xd3\xc2\xf6\x4c\x9c\x16\x16\xe3\x05\x57\x70\xac\x85\x42\xc0\x15\x7c\x2f\xeb\x43\xc9\x0a\x1e\x0a\xb8\x30\xec\xcd\x53\xd1\x85\x21\xd1\x3e\x5c\xc1\x4f\xa5\x3e\x5c\xc1\xcf\xe4\x49\xeb\xd0\x40\x5c\x1c\x90\xe0\x85\x4a\xcf\x23\xc1\xbb\xe2\xab\x5f\x25\x68\xaf\x42\x2f\x25\x69\x2f\xee\x05\x09\x1e\xfb\xd2\x42\xd0\xa1\x81\xe8\x33\xe8\xd0\xc0\x44\x14\x90\xe0\xa1\x5d\x08\x41\x1b\x06\x96\xcd\x80\x04\x2f\x54\x6b\x40\xae\xca\xc2\x1c\x90\xe0\x05\x82\xb5\xa0\x0d\xc3\xe0\x77\x48\xf0\x42\xe3\x77\xda\x30\xb0\x3c\x04\x24\x78\x81\xc5\x3e\x68\xc3\xc0\xb4\x1b\xb4\x61\xf0\x89\x69\xc3\xe0\x88\xd4\x86\xc1\xb7\x11\x09\x1e\xa2\x80\x10\x90\xe0\xa1\xcc\x0a\x01\x09\x5e\xaa\x1e\x83\xd6\xf3\x0d\x40\x82\x67\xd8\x1a\x90\xe0\x25\xe2\xf7\x80\x04\xcf\xf0\x33\x20\xc1\x4b\xd3\x12\xb4\x1e\x8b\x45\x40\x82\x97\xfa\xef\x78\x5c\x84\x80\x3a\x2f\x75\x7f\x06\xe3\xe7\x4b\x85\x3a\x2f\x41\x16\x04\x1c\x1a\x92\x8d\x2d\xa8\x5c\x01\x40\xe1\x42\xa5\x92\xec\x5c\xdc\x1b\x92\x1d\x88\x7b\x43\xb2\x73\x71\x6f\x30\x98\x0f\xb8\x37\xa4\x61\x0d\x36\x9d\xe1\x89\x7b\x43\x66\xe5\x0f\x38\x34\x14\x6b\xaf\x28\x60\xad\xaf\xa2\x80\x05\xfc\x05\xdc\x1b\x70\x51\x0b\x01\xf7\x06\x1c\xc8\x42\xc0\xbd\x01\xc9\x51\x08\xb8\x37\x74\xa2\xd6\x80\x7b\xc3\x78\xfc\x5d\xe7\x4c\xeb\x1b\x94\xb8\x6b\xdc\x1b\x3a\xb1\x6f\xc0\xbd\x61\xbc\xfe\x6e\x71\xa6\xf5\x6d\xae\x49\x4f\xe0\xde\xd0\x59\x8e\xc2\x85\x4a\x65\xb8\x3c\x5c\xa8\x54\x86\xcb\x03\xce\x0e\x1d\x60\x1f\x70\x76\xe0\x83\x31\x21\xe0\xec\xc0\x76\xd9\x10\x70\x76\x98\x4e\xc9\x38\x3b\x4c\x07\x2b\xee\x0d\xc7\x69\x1e\xf7\x86\xe3\x4b\x85\x7b\xc3\x69\x9e\x09\x73\x97\xad\x01\xfa\xaa\xf0\x4a\xe3\xde\x70\xb2\x67\xc2\xdc\x35\x8e\xe1\xde\x70\x9c\x68\x71\x6f\x38\xc4\x78\x01\xf7\x86\x43\x04\x16\x70\x6f\x38\x4e\x05\xb8\x37\x1c\x5f\x3f\xdc\x1b\x4e\xa5\x97\x70\x6f\x10\x22\x07\xdc\x1b\x0e\xc4\x53\xc0\xbd\x01\x1b\xf7\x10\x70\x6f\x38\xd9\x1a\x50\xb9\x2e\x7a\x10\xf7\x86\xe3\x0b\x87\x7b\xc3\x29\x5e\x93\xf6\x39\xb5\x22\xc1\x0b\x2e\x47\x48\xf0\x7e\xa6\x02\x24\x78\xc1\xb1\x34\xa0\xe7\x88\xea\xc2\x60\xeb\x7c\xa6\x27\x90\xe7\xbd\xc4\x5c\x01\x79\x5e\xf4\xa9\x20\xcf\x8b\x2e\x94\xc8\xf3\x7e\x26\x06\xe4\x79\xa9\xf9\x3b\xb6\xce\x37\x46\x08\xf2\xbc\xe4\xe4\x86\x3c\x2f\xb9\x88\x22\xcf\xcb\x80\xf7\x70\x31\x4f\x2d\xaf\xc7\x16\x25\x6b\xd8\x10\x64\x9e\x79\x38\x46\x7f\x22\xcf\x2b\x2f\x6d\x40\x82\x57\x7c\x6f\x27\x14\xdc\xb4\x04\x05\xb7\xfd\x1d\x32\x49\x9f\x1f\xf2\xbc\x0a\x39\x11\x90\xe7\x55\x30\x4f\x40\x9e\x57\x89\x76\xc3\x94\x82\xa3\xb5\xc8\xf3\xf0\xf7\x08\x01\x79\x5e\xfb\x78\x7e\xc8\xf3\xda\x4f\xed\x52\x70\x96\xa0\xe0\x26\xb5\x23\xcf\x6b\x3e\xf7\x4f\x0a\x8e\xda\x91\xe7\xb5\x45\xbf\x20\xcf\x1b\xbe\x0f\xc8\xf3\xd8\xed\x19\xc2\xc7\x67\xec\x92\x67\x62\xd1\x1a\x19\xd7\x48\xf7\x06\x68\x3a\x7c\xd2\x73\xdc\xf5\x27\x3d\xe7\x35\xa5\xe7\xbc\x33\xb6\xa4\x3b\x47\x62\xdf\x30\x7f\x37\x4a\x0e\x38\x3b\xf0\x55\x8a\x10\x70\x76\x98\x4e\x6e\xb8\x37\x4c\x22\xe1\x80\x7b\xc3\x84\x11\x0b\xb8\x37\xe0\x1a\x15\x02\xee\x0d\x9f\x5d\x86\x7b\xc3\x72\xad\xc7\xbd\x61\x1d\xaf\x09\xeb\x05\x40\x0f\xb8\x37\x2c\xe3\x23\xdc\x1b\x70\x6b\x0e\x01\xf7\x86\x65\x9c\xb3\x64\xbd\x68\xde\x82\xf5\x72\x32\xc5\xa3\x6e\x19\x69\xe0\xec\xb0\x8c\x50\x70\x76\xc0\xb6\x3a\x04\x9c\x1d\x96\xd1\x12\xce\x0e\xcb\xb5\x10\x67\x07\x6c\xb9\x43\xd8\xb0\x7a\xf0\xe8\x61\xc3\xea\x19\x6b\xe3\xfa\x70\x5c\x2c\x70\x7d\x38\x00\xc3\x80\xeb\xc3\xf1\x11\xe1\xfa\x70\x7e\xea\xc3\xa1\xd5\x17\x00\x41\x5e\xb0\x3f\x11\xe4\xfd\xc4\x01\x08\xf2\x02\xc0\x30\x20\xc8\xcb\x81\x1a\x10\xe4\x65\x87\x0b\x82\xbc\x0c\xfd\x11\x10\xe4\x25\x23\xc5\x8b\x64\x5a\x76\x79\xb8\x69\xa5\x96\x9d\xd8\x11\xe4\x65\x97\x2a\x04\x79\xd9\x65\x05\x41\x1e\x9f\x92\x0f\x01\x41\x5e\xf2\x39\x20\xc8\xcb\x90\x44\x01\x41\x5e\x22\x99\x12\x10\xe4\xf1\x79\xfa\x10\x10\xe4\x55\xa2\xac\x17\x41\x1e\x3a\x91\xf0\x22\xc8\x43\x27\x12\x5e\x04\x79\x95\x09\xf3\x45\x90\x87\x62\x3a\xbc\x08\xf2\x2a\x13\xfb\x8b\x20\x0f\x75\x73\x78\x11\xe4\x55\xe8\x81\x17\x41\x5e\x65\xe2\x7b\x1f\x08\x2b\x52\x55\xef\x23\x61\x15\x29\x29\x38\x9c\x94\x10\x1c\x12\x29\xbe\x88\xf5\x7a\xf0\x5e\x24\xac\xb8\x26\x82\xbc\x0e\xe1\xf1\x22\xc8\xeb\x2c\xb7\xaf\x82\x3c\xa6\x82\x57\x41\x1e\xc0\xf7\x55\x90\xf7\x79\x15\x48\x29\xde\xb8\x57\x41\x5e\xf7\x9a\x90\x52\x4c\x52\xaf\x82\x3c\x48\xb0\x57\x41\xde\xf4\x9a\x90\x52\xf0\x9b\x2f\x82\x3c\x76\x9b\x85\x17\x41\xde\x80\xed\x7c\x11\xe4\x0d\x22\xb7\x17\x41\x1e\xe9\xfc\xf0\xe2\xe5\x30\x3e\xda\x8e\x97\xc3\x98\x1c\x43\xac\x37\x60\xce\x5f\xc4\x7a\x63\x71\x67\x8a\xf5\xec\x5d\xc5\x7a\x2c\x40\xaf\x62\xbd\xe2\x31\x48\x29\xe6\x82\xf7\x95\x94\xf2\x4c\x36\x93\x6f\xeb\x63\x33\x39\x93\xfe\x8b\xe8\xee\x5b\x5e\x85\x4d\xe1\x9b\xbe\x46\x74\xf7\x91\x77\x79\x11\xdd\x2d\xc2\x82\x17\xd1\xdd\x62\x81\x7d\x11\xdd\x2d\x28\x8e\x17\xd1\x1d\x5f\x7a\x0f\x2f\xa2\xbb\xed\x93\xc6\x78\x01\x97\x9e\xf0\x62\xbc\xb0\x21\x46\x5f\x8c\x17\xf6\xe3\x35\x3b\xc7\xe8\x17\x8c\x17\x76\xf0\xd8\xe4\x98\x77\xf6\x71\x8c\xd6\x62\xbc\x70\x37\xbf\xfc\xd9\x29\xf9\x8d\x72\x6e\xde\x8a\x9c\x1b\x37\x9d\xe4\xdc\xa8\x0e\x4f\x06\xb3\xa5\x2f\x9e\x0c\x87\xe9\xe5\xc5\x93\xe1\x66\x13\x7f\x95\xd0\x1b\xc2\x02\xbf\x78\x32\x1c\x6f\x0c\x4f\x86\xc3\x2b\xfd\x22\xba\xe3\x53\xf2\xe1\x45\x74\xf7\x14\xcf\x94\x73\x63\x40\x22\xba\x7b\xec\x78\x44\x77\x7c\xe9\x2c\xbc\x88\xee\x30\x13\x0a\x2f\xa2\xbb\xf0\x7a\x26\x9c\xdb\xeb\x99\x70\x6e\x24\xa0\x5e\x44\x77\x81\xd5\xfd\x45\x74\x17\x1a\xf7\x82\xe8\x2e\xb0\x9e\xbf\x88\xee\x02\xd1\xcb\xab\xe8\x8e\xf5\xfc\x55\x74\x37\x3d\x13\xce\x6d\x7a\x4d\x38\x37\x87\x92\xa2\x3b\x07\x9d\xa2\xbb\xcf\x7b\x81\x73\x9b\xd6\x00\xe7\xe6\x0b\x8e\xe8\xee\xf5\x05\x47\x74\xf7\xfa\x82\x67\x38\x37\x48\x94\x37\x23\x2a\xf4\xb5\x45\x90\x97\x59\xa5\x5f\x04\x79\x98\x57\x86\xf7\xc2\xa8\x5e\x21\x82\x5e\x04\x79\x7c\xb6\x2b\xbc\x08\xf2\x7e\xa6\x48\x04\x79\xb5\x79\x15\x04\x79\xf6\x8b\x82\x3c\x52\x32\x2f\x82\xbc\xe6\x80\xbc\x78\xa8\x37\x5f\x80\x8b\x87\x7a\x73\x4c\x28\xd6\xb3\xb5\x88\xf5\x7e\x26\x37\xc4\x7a\x9d\x85\xe4\x45\xac\x87\xff\x59\x78\x11\xeb\x75\xf8\xd4\x17\xb1\x5e\x67\x99\x7e\x2b\xa4\x1b\x11\xd1\x5b\x21\xdd\x20\x0b\x5e\x85\x7c\x4e\x28\x0a\xf9\xc8\x67\xbc\x0a\xf9\x88\xb2\x5e\x84\x7c\xdd\xbe\x46\xc8\xd7\x59\xa6\x5f\x84\x7c\xc3\x67\x8b\x58\x6f\x3a\xb2\x2e\x1e\xea\x33\x79\x95\x43\x89\xde\xbd\x78\xa8\x4f\x47\x6b\xc3\xc8\x96\xf8\xfd\xc5\x77\x81\x4f\x65\x85\x17\xdf\x85\xe5\x73\xc0\x77\x61\x41\x2a\xbe\x4d\x23\x5b\x8f\x69\x64\xcb\xbb\x82\xef\xc2\xfe\x2c\x49\x19\xd1\x4b\xf8\x2e\x9c\x4c\x8b\x14\xeb\xd9\x9f\x8a\xf5\xec\x4f\xc4\x7a\x21\x78\xd7\x8b\x12\xfd\x89\x58\x2f\xb8\x1c\x21\xd6\x33\x31\xf7\x22\xd6\x0b\x64\x22\x5e\xc4\x7a\xc1\xa7\x82\x58\x4f\x4e\xf8\x45\xac\x27\xb3\xfc\x22\xd6\x7b\x8f\x25\x68\x3d\x17\x58\xc5\x7a\x90\x21\xaf\x62\xbd\xea\x31\x68\x3d\x67\x8d\x0e\xad\x07\x8e\x7a\x11\xf2\x15\x97\x70\x85\x7c\xc5\x3b\x83\xd6\x73\x46\x51\xc8\x57\x68\x91\x42\xbe\xea\x7d\x1e\x8e\xf1\x8c\x10\xf2\x15\x17\x19\x84\x7c\x05\x32\xeb\x45\xc8\x57\x0c\x2e\x14\xf2\xf9\x4e\x2b\xe4\xf3\x19\x29\xe4\xfb\x7e\x47\x04\x17\x5e\x35\x7e\x4e\x2f\x68\xfc\xba\x93\x22\x1a\xbf\xe9\x74\x8d\xc6\x6f\xc2\x6f\xbe\x43\xdf\x55\x9a\x87\xc6\x6f\x3a\x31\xa0\xf1\xfb\x1e\xaf\xa2\x48\x8c\x6e\xc1\x20\x2f\x38\x69\x60\x90\x17\x7c\x60\x18\xe4\x05\x07\x1d\x06\x79\x66\x59\x5f\x0c\xf2\x82\xeb\x39\x06\x79\xc1\xf5\x1c\x83\xbc\x60\xd3\x31\xc8\x0b\x9f\xbf\x83\x69\xfa\xb8\x4f\x0c\xf2\x5e\x27\x6f\x5c\xf0\x92\x6d\xc7\x05\x2f\xd9\x9d\xb8\xe0\x99\xda\x7c\x71\xba\x4b\xcb\x6b\xc2\x26\x19\xe7\xe0\x74\x97\x9c\x22\x71\xba\x4b\xc6\x2b\x38\xdd\x25\xef\x1a\xa7\x3b\x73\xb5\x2f\x4e\x77\xc9\x97\x1f\xa7\xbb\xb4\xb8\x26\x4e\x77\xc9\x16\xe1\x74\x97\x8d\x30\x71\xba\xc3\xfa\x3e\xbc\x7e\x78\xc9\x68\xc9\x0f\x2f\x19\xd9\xf8\xe1\x25\xef\xd3\x0f\x2f\xfd\xdc\x27\x22\x31\x92\xb5\x2f\x1f\x5e\x12\xa8\xbd\x7c\x78\x69\x44\x8f\x1d\x4a\xb4\x1d\x21\xdf\xf0\xc5\x41\xc8\x37\x7c\x71\x10\xf2\x0d\x88\x84\x17\x21\xdf\x88\x9e\x79\xdb\x37\x9c\xa4\xf8\xf0\xd2\x70\x58\x23\xf2\x1b\xb0\xb2\x2f\x22\xbf\x91\xbc\x26\x74\x52\xe2\xae\x11\xf9\x8d\xc8\x13\x43\xe4\x37\x20\x20\x5e\x44\x7e\x23\x59\x3b\x1b\x8e\x7f\xee\x93\x0d\xc7\x4e\x8a\x88\xfc\xbe\xc7\xab\x40\xc5\xf8\xc4\x10\xf9\x1d\x17\x2e\x44\x7e\x7c\xb7\x2e\xbc\x88\xfc\x0e\x72\xb2\x17\x91\x1f\xfb\xcb\xc2\x8b\xc8\xef\x38\x7a\x10\xf9\x1d\x18\xd4\x17\x91\xdf\x71\x01\x42\xe4\x77\x48\x8c\xbf\x88\xfc\x8e\x4f\x0c\x91\xdf\x71\x5c\x23\xf2\x3b\xc3\x12\x54\xcc\xf0\x77\x50\x31\xd3\xda\xd9\x75\xeb\x78\xd9\x50\x31\x8e\x89\x0d\x15\xe3\x52\x85\xb3\x5e\x70\xd4\xe1\xac\xf7\xf3\x76\xe0\xac\x17\x5c\x9c\x70\xd6\x0b\xde\x19\xce\x7a\xc1\x49\x1f\x67\xbd\xe0\x52\x85\xb3\x9e\x59\x98\x17\xf7\xbc\xe8\xc4\x87\x7b\x9e\x82\x81\x17\xf7\xbc\x64\xd4\x8a\x7b\x5e\xea\x9e\x89\x1a\xca\xf8\x16\xf7\x3c\xd9\xdc\x17\xf7\xbc\x04\x53\x1f\x71\xc8\x33\xd3\x12\x71\xc8\x2b\x8c\xd6\x88\x43\x5e\x61\xb4\xc6\x47\xba\xa5\x52\x42\xf1\x74\x75\xec\x21\xe2\x90\x57\xe9\xcf\x88\x0b\x5e\x1d\x1e\x83\x52\xd9\x5e\x13\x4a\x65\x79\x4d\x28\x15\x50\x63\xc4\x05\xaf\xfd\xd4\x70\xef\x13\xf9\x61\x88\x38\xdd\x61\x61\x15\x22\x4e\x77\x23\xfd\x8e\x85\x7d\x88\x98\xe0\xf9\x02\x44\x4c\xf0\x06\x0c\x4e\xc4\x04\x6f\xd2\xf1\x11\x13\xbc\x0f\xe0\x1b\x31\xc1\x9b\x9f\xc7\xd8\xd0\x49\xfc\x17\x31\xc1\x9b\xcb\x6b\xc2\xa8\x6c\x7f\x07\xa3\xb2\xfd\x1d\xb4\x09\xd0\x25\xf2\x91\xa4\x4d\xb4\x14\x11\xd6\x6d\xeb\x43\x58\xb7\x49\xe5\x44\x84\x75\x78\x9d\x86\x88\xb0\x0e\x1f\xd4\x10\x11\xd6\x09\x17\x22\xc2\x3a\x01\x49\x44\x58\xb7\x89\x42\x22\xc2\x3a\xa1\x4b\x44\x58\x77\xaa\xc7\xd8\xd0\xc9\xd2\x11\x11\xcf\x9d\xed\x35\xd9\xb4\xf9\x7a\x2f\x90\x0c\xbc\x70\x11\x50\xe5\xb2\x12\x01\x55\xb2\x8f\x11\x50\x15\xa0\x69\x22\xa0\xea\xb5\x45\x00\x27\xbe\xb3\x1b\x22\xc0\x89\x2f\xf1\x85\x08\x70\xca\xc9\x33\x27\x25\xeb\x83\x48\x48\x9e\x79\xc1\x51\x06\x4b\x44\x10\x10\x46\x9a\x21\x82\x80\x70\x4f\x0e\x11\x04\x54\x89\xfb\x23\x08\xa8\xf2\x3a\x44\x10\x50\xed\x9e\x09\x91\x00\xdf\x1f\x41\x40\xc6\xcc\x11\x04\xd4\x98\x4c\x23\x08\xa8\x83\x95\x22\xae\x74\x3d\xfa\xbb\xc6\x31\x86\x3c\xae\x74\x9d\x08\x3a\xe2\x4a\xd7\x5f\xaf\x72\xdb\xd7\x87\x57\x81\x48\x70\x90\xe3\x4a\x67\x1a\x39\xe2\x4a\x37\x8e\x67\x02\xc2\x49\xda\x45\x5c\xe9\xc6\xe1\x9a\xb8\xd2\x4d\xd2\xc1\x31\x0b\xc2\x79\xa9\x32\x24\x83\x2f\x15\x8e\x75\xc3\x27\x8d\x63\xdd\x38\x96\x24\x12\x3c\x13\x22\x01\xbe\x3f\xea\x4a\x47\xc4\x17\x75\xa5\x23\xa5\x1d\x75\xa5\x3b\xd6\xc7\xce\xbe\xe2\x7d\x02\xd0\x7d\x62\xb8\xd2\x7d\x44\x91\x11\x57\x3a\xd3\xe4\x11\x57\x3a\xec\x69\x43\xc4\x95\x6e\x83\xf7\x22\xae\x74\xdb\x49\x0a\x57\xba\x9d\xe8\x79\x5c\xe9\x36\x4b\x63\xc4\x95\x6e\xb3\xa8\x45\x5c\xe9\x4c\xa8\x47\x5c\xe9\x54\xd5\x46\x5c\xe9\x54\xea\x46\x5c\xe9\xd4\x25\x47\x5c\xe9\x8e\xe3\x1a\x57\x3a\x97\x8e\x08\x02\xe2\x3b\xde\x21\x82\x80\xf8\x8e\x77\x88\x20\xa0\x87\x40\x2e\x82\x80\x9e\xca\x7d\x82\x80\x1e\x72\x1d\x11\x04\xc4\x57\xcb\x43\x04\x01\x05\xdb\x07\x02\x52\x2c\x1b\x41\x40\x11\x1e\x3d\x82\x80\xb0\xc3\x0d\x11\x04\xf4\x1e\xeb\x6b\x1c\xa3\x0d\x20\xa0\x68\x6b\x41\x40\xf1\xf5\x9a\xa0\x54\x9f\x18\x5b\x99\xa2\xa3\x15\x74\x14\x1f\xef\xe5\xb6\x2f\x06\xef\xf3\x50\xe2\x5e\x40\x47\x11\x26\x21\x82\x8e\x7e\x4d\x6b\xbf\x33\x25\x03\x9c\x22\x80\x24\x02\x9c\x22\x19\xca\x08\x70\xe2\x1b\x73\x21\x02\x9c\xf8\xa2\x43\x88\x98\xd2\x15\x5f\x9c\xa6\x68\xc4\xab\x28\x1a\xf1\x2a\x88\x46\x9c\x5a\x71\x9e\x63\xff\x4e\x88\x38\xcf\xf1\x0d\x87\x10\x71\x9e\x63\x13\x73\x88\x0d\x37\x34\x18\x9c\x88\xf3\x9c\x0c\x63\xc4\x79\xae\xb2\xbe\x46\x9c\xe7\x1a\xb1\x6f\xc4\x79\xae\x39\x94\x70\x9e\x6b\x0e\x3a\x9c\xe7\x1a\x44\x7d\xc4\x79\xae\x41\x71\x44\x9c\xe7\x9a\x43\xb7\x0b\xc2\xe9\x78\x9c\xe7\x64\x18\x23\xce\x73\xdd\x29\x19\xe7\xb9\xee\x12\x80\xf3\x5c\x77\xb1\xc0\x79\xee\x67\xb2\x19\x82\x70\xfa\x0c\xe7\x39\x53\x78\x11\xe7\xb9\x6e\x1c\x30\x00\xe1\x4e\x28\x17\x00\xf5\x41\x44\x1b\x71\xa5\x93\xb5\x8c\xb8\xd2\xa9\x56\x88\xb8\xd2\xfd\x4c\x13\xb8\xd2\x4d\xef\x13\x57\xba\xd9\xbd\xe6\x6d\xdf\xf2\xb9\x5f\x94\xd3\x97\x8b\xda\x45\x39\x7d\x39\x94\x70\xac\x5b\x3f\x57\xd9\xfc\xce\xfb\x3c\x94\xa8\xfd\xa2\x9c\xbe\xc9\x05\xc4\x8b\x72\x3a\x26\x2f\x21\xe2\x66\x77\x9c\xca\x71\xb3\xc3\x34\x31\x44\xb6\x2b\x05\xa7\x72\xb6\x2b\x61\x4c\x15\x22\xdb\x95\x82\x3d\xc8\x76\xa5\xe0\x34\xcf\x76\xa5\x17\x35\x46\x64\xbb\x12\xbe\x7e\x21\xb2\x5d\xa9\x00\xad\xe3\x04\xc0\x76\x4b\x00\xd8\xe6\xef\x00\xb0\xd0\x57\x91\xad\x4c\xa5\x59\x3b\xce\x65\x8e\x6b\xb6\x32\x35\xe4\x79\x91\xad\x4c\x0d\xfa\x23\xb2\x95\xa9\x11\x45\x46\xb6\x32\x4d\x47\x24\x5b\x99\xa6\xed\x63\x2b\xd3\x74\x64\xb1\x95\x69\x3a\xf5\xb0\x95\xe9\x73\x7c\xb2\x95\xe9\x23\xde\x8c\x6c\x65\x5a\x3e\x77\xb6\x32\xa9\x52\x8e\x6c\x65\x5a\x93\xde\x65\x2b\x93\x4a\xe4\xc8\x56\xa6\xed\x12\xe0\x56\xa6\xe4\x55\xdc\xca\xc4\xef\xdc\xca\x64\x98\xe5\x56\x26\xd0\x43\x74\x2b\x13\x18\x2b\xba\x95\xc9\xa5\x11\x04\x14\x40\x94\x11\x04\xf4\xfa\x8c\x40\x40\xaf\x93\x29\x08\x28\xd9\x4b\x4b\x94\x4a\x1b\x40\x40\xc9\xd1\x03\x02\xe2\x7b\x93\x21\xba\xcd\xe9\x58\x42\x14\xf0\x53\x3b\x08\xd6\xa8\xd5\x6d\x4e\xbe\x39\x6e\x73\xf2\xad\x72\x9b\x93\x6f\x07\x28\xa7\x18\x70\x82\x72\x0a\x1c\x7b\x04\xe5\x0c\x47\x0f\x28\x67\xa0\xe9\x88\xa0\x9c\xd1\x2c\x81\xe2\x0c\x58\x40\x39\xc3\x71\x0d\xca\x91\x7f\x8f\xa0\x9c\x2b\x57\xfd\xf3\x53\x32\x00\x68\x90\xd5\x8d\xec\x72\xc2\x5e\x3b\x44\x76\x39\x0d\x07\x32\xbb\x9c\x86\x81\x3e\xbb\x9c\x26\xaa\xcc\xc8\x2e\xa7\x49\xa6\x31\xb2\xcb\x69\x1a\xe8\xb3\xcb\xe9\x33\x1a\x64\x97\xd3\xb1\xe3\xd9\xe5\x74\xec\x40\x76\x32\x1d\x9b\xc0\x4e\xa6\x63\xe4\xcd\x4e\xa6\x63\x0c\xc4\x4e\xa6\x43\x92\x30\xb2\x93\xe9\xd8\x81\xec\x64\x3a\x3e\x22\x76\x32\x1d\x63\x74\x76\x32\x99\x6e\x4b\xec\x64\x3a\xbc\x70\x89\x9d\x4c\x46\xc2\x89\x9d\x4c\x87\x41\x90\x00\x47\x0a\xd0\x13\xe0\x28\xc0\x53\x26\xc0\x51\xf8\xf9\x1d\x20\x8e\xe1\x92\x00\x47\x61\x5b\x03\xae\x51\x0c\x89\x84\x7d\x78\xe0\x3e\x13\xc0\x29\x10\x11\x25\x80\x53\xd8\xd6\x7e\x91\x05\xdf\x47\x0c\x09\xe0\xf4\x26\x6b\xb8\xc0\x29\x56\xcf\x3c\x94\xee\x00\x49\xd8\x87\xab\x9f\x49\xd8\x87\x2b\xd0\x49\x80\xaa\x44\x64\x93\x00\x55\x89\xa8\x27\x81\x9c\x8a\x35\x80\x9c\x4a\xf2\x9a\x80\x3f\x5e\xe9\x04\x72\xe2\xc3\x60\x21\x81\x9c\x2a\x78\x21\x81\x9c\xea\xf0\x18\xc0\xf0\xa7\x76\xb6\xbb\x0c\xaf\xc2\x76\x17\x60\x7e\x02\x39\x55\x18\xf0\x14\xb4\x24\xa2\xaf\xf9\xf4\x6c\x23\x4e\x4d\xa0\x2a\xbe\x2a\x12\x12\xa8\x4a\xb5\x78\x02\x55\xa9\xf3\x4e\xa0\xaa\x8e\x9a\x26\x81\xaa\xba\xf5\x81\xaa\x8c\xca\x13\xa8\x6a\x64\x8f\x91\x6b\x9f\x5e\x85\xad\x22\x8f\xc7\x3a\x25\xee\x13\x54\x35\x89\xa7\x13\xdb\x95\xe6\xcf\x7d\x62\xf5\x83\x74\x2f\xbd\x22\x43\x7a\x82\xed\x4a\xdf\x4f\xe9\xb6\xcf\xa4\x56\x62\xbb\x92\xc9\xb0\xc4\x76\xa5\x8f\xe9\x25\xb1\x5d\xe9\x73\x0c\xb2\x5d\xe9\x63\x7a\x49\x6c\x57\xfa\x60\x73\x13\xdb\x95\xf6\xeb\x55\x40\x8d\xd1\x12\xa8\xd1\x27\xcd\x76\xa5\xcd\x82\x90\xd8\xae\xc4\x97\x3c\x42\x62\xbb\x12\x9f\xac\x08\x89\xed\x4a\x26\xca\x12\xdb\x95\xf8\x28\x53\x48\x6c\x57\x32\x7e\x4f\x6c\x57\xe2\xf3\x4d\x21\xb1\x5d\x69\x27\x8e\xb1\x5d\xc9\xd8\x3e\xb1\x5d\xc9\x68\x3e\xb1\x5d\x69\x83\x0c\x13\xdb\x95\x8c\xed\x13\x9f\xb3\xdd\x28\x27\x52\xb2\x7d\x96\x48\xb6\x27\xaf\x49\xb2\x1d\xec\x92\xd8\xca\x74\x88\x7d\x13\x68\xec\xf1\xcd\x01\x8d\x3d\xc5\xab\x60\x65\x54\xfd\x1d\xa9\x77\xa8\xc2\x04\x1a\x0b\xd0\x57\x09\x34\x16\x58\x1a\x13\x68\xcc\x65\x2c\x81\xc6\x02\x14\x55\x02\x8d\x85\xf9\x3b\x5f\x15\x09\x09\xa0\x16\x58\x27\x13\x40\xcd\x75\x32\x61\x2d\x2e\x43\x95\xb0\x16\x0f\xf0\x2b\x09\x10\x87\x5f\x72\x48\x80\xb8\x17\x72\x3c\x01\xe2\xb2\x83\x1c\x10\x87\x7b\x7f\x48\x80\x38\xbe\x89\x16\x12\x20\x8e\x6f\xbe\x85\x04\x88\x73\x57\x5c\x02\xc4\xe1\x9e\x1c\x12\x20\x8e\x8f\x0f\x85\x04\x88\xe3\x93\xf7\x21\x01\xe2\xf8\x1e\x5c\x48\x80\xb8\xec\xf4\x02\x88\xe3\x6b\x74\x21\x01\xe2\xb2\x13\x11\x20\xae\x14\x7f\x47\xc6\xde\x0e\x04\xc4\x55\x62\xa0\x04\x88\xfb\x99\x6c\x00\x71\x15\x3e\x2e\x01\xe2\xaa\x0f\x0c\x10\x57\x87\x77\xb6\xf8\x9d\xa5\x4d\xc9\x7b\x41\x91\x00\x8f\x97\xb0\x16\xaf\x44\x1a\x09\x6b\xf1\x1e\x2d\xbd\x94\xa8\x81\xdd\x51\xdd\x41\xc7\xee\xa8\x1e\xbd\x0a\x16\x41\xbe\x1c\xec\x8e\xea\x4e\x7c\xec\x8e\x9a\x60\x97\xc4\xee\xa8\x89\x8a\x23\xb1\x3b\x8a\xaf\x26\x87\xc4\xee\x28\xbe\xb6\x1c\x12\xbb\xa3\x26\x74\x52\x62\x77\x14\x5f\x69\x0e\x89\xdd\x51\x66\x1b\x12\xbb\xa3\xe6\xe3\x9d\x1d\x8e\x71\x26\xbb\xa3\x3e\x5f\x46\x76\x47\x7d\xbe\x54\xec\x8e\xfa\x7c\x01\xd8\x1d\xf5\x39\xd1\xb2\x3b\xea\x43\x70\x98\xd8\x1d\xf5\xf9\x52\xb1\x3b\xea\x03\x96\x26\x76\x47\x7d\xe0\x85\xc4\x16\xa8\xe5\x28\x60\x0b\xd4\x86\xde\x49\x6c\x81\xda\xc9\x33\xc9\x92\xfb\xf2\xb3\x05\x8a\xcf\x06\x85\xc4\x16\xa8\x9f\x17\x9c\x2d\x50\x6e\x00\x4e\x6c\x81\x3a\x2e\x55\x6c\x81\x3a\x4e\x3d\x6c\x81\x52\x7e\x98\xba\x20\xdc\x12\xdb\x4f\xd8\x7d\x99\x40\x78\x8f\x6f\x07\x28\x8e\x2f\x45\x86\x04\x8a\x0b\x4e\x52\xa0\xb8\x00\x0f\x9b\x40\x71\x01\x72\x29\x81\xe2\x82\xef\x11\x28\x2e\x26\x6b\x00\x68\x37\xef\x13\xa0\x0d\xe6\x49\xa0\xb8\x08\xc9\x90\x40\x71\xd1\xb6\x83\xe2\x62\xf1\x18\x68\xda\x3e\x03\xc5\x45\xd2\x82\x09\x14\x17\x7d\xa7\x41\x71\x91\x64\x58\x02\xc5\xc5\xec\xef\x2a\x67\xd2\x3e\x50\x1c\x5f\x9f\x0c\x09\x14\x17\x11\x5b\x26\xb0\x59\xf6\xed\x00\x9b\x65\xdf\x31\xb0\x99\x32\xd7\x04\x36\x33\x2b\x92\xc0\x66\x46\xbb\x09\x6c\xe6\x76\xb3\x04\x36\xab\xe0\xd9\x84\xd3\xb8\x5c\x72\xc2\x69\xbc\x82\x80\x92\x4e\xe3\x2e\x55\x3a\x8d\x4f\x4b\x24\x80\x5d\x1e\x70\x1a\x57\x3a\x9b\x74\x1a\x47\x81\x94\x70\x1a\x37\x50\x4d\x38\x8d\xcf\x5f\x33\xc3\x9f\x9f\x92\x31\x21\x9f\x4e\x9f\x7c\xa3\x56\x25\x5d\xe2\x1b\xb5\xcb\x89\x81\x6f\xd4\x2e\x87\x19\xdf\xa8\xdd\xcd\x63\x2f\x19\x5f\x8f\x45\x20\x2b\xb7\xc2\xbe\x26\xbe\xc8\x1b\x12\xfb\x9a\x7e\x86\x35\xfb\x9a\x8e\x0f\x1a\x68\x16\x8d\x03\x80\x66\x05\x79\x50\x02\x9a\xa9\x4b\x4e\x40\xb3\x66\x54\x00\x34\xc3\xff\x2c\x24\xa0\xd9\x74\x92\x12\x9a\x21\x71\x4a\x42\x33\xe4\x72\x09\x68\xf6\x46\x4b\x24\xdf\x8c\xb2\x80\x66\x09\x11\x5c\x02\x9a\x25\x63\x20\xa0\x99\x62\xaf\x24\xfc\x32\x22\x02\x7e\xe5\x69\x89\x04\x9b\x51\x0f\xf0\xab\xbe\xfe\x0e\x7c\xe2\x34\x0f\xfc\x1a\x4e\x9f\xc0\xaf\xe1\x4a\x0c\xfc\x1a\x4e\xec\xc0\x2f\x69\x8c\x44\x02\x4a\xf9\x53\xda\x6a\x96\x79\x0e\xc0\x2f\x53\xb0\x69\xab\x59\xf6\xd8\x8d\x1f\x1e\x97\x54\xc4\x7a\x7c\xe6\x26\x24\x93\x4c\xb6\x96\x4f\x34\x3d\xb6\xd6\x24\x93\x13\x26\x9f\x68\x7a\x20\xa5\x12\x49\x26\xbe\x62\x1c\x92\x89\x24\xaf\x62\x22\xc9\xe9\x93\x44\x12\x5f\x0a\x0f\x89\x44\xd2\xcf\xc4\x40\x22\x29\x19\xc3\x92\x48\x32\x25\x9a\x48\x24\xe5\xe0\x99\xc4\xe8\x28\x83\x13\x9f\x68\x2a\xd9\x1a\xd8\x92\x8e\xce\x20\x1d\x63\x74\x46\x01\x49\xa6\xfa\x73\xcd\x4d\x04\xed\x7d\x9a\xa0\xb9\xa5\xec\xa7\x96\xd0\x9e\x64\xf0\xd0\x47\x6c\x98\xc1\x43\x1f\x8a\x8b\x0c\x1e\xfa\x20\x27\x32\x78\xe8\x0b\x5e\x85\x78\x1a\x5a\x28\x83\x87\x3e\xa8\x98\x0c\x1e\xfa\xb6\x57\x21\xa6\xcc\xfe\x8e\x98\x92\x29\x2b\x83\x79\xdc\x9a\x92\xc1\x3c\x9b\xf6\x65\x30\xcf\x26\xf7\x90\xc1\x3c\x6e\x31\xc9\x60\x9e\x73\x3c\x86\x80\x93\x85\x2b\x23\xc1\x53\xb9\x94\x91\xe0\x3d\xa8\x07\x32\x12\x3c\x13\xea\x19\x09\x1e\x9f\xb3\x08\x19\x09\xde\xfb\x78\x67\x04\x5d\x3f\xc7\x08\xba\x86\xf5\x11\x74\xfd\x5c\x85\xa0\x8b\x54\x63\x46\x82\x87\xb9\x7e\xc8\x48\xf0\xf0\xe5\x0e\x19\x09\x5e\x26\x7c\xc9\x48\xf0\xf2\xf4\x4c\xb2\x1b\x20\xa0\x8c\x04\xaf\x82\x36\x33\x12\xbc\xca\x7b\x9b\x91\xe0\xd5\xed\x35\xc9\x6e\xa0\xa9\xcf\x48\xf0\xfa\xf4\x4c\xb2\x1b\xbc\xfd\x19\xbf\x3c\x29\xbf\x8c\x5f\xde\x8c\xd6\x6e\x50\x62\x7d\x04\x25\x8e\x09\xa5\x7b\xd9\xfa\x6e\xfb\x16\x69\xe4\x4c\x96\xe9\x3e\xa3\x3f\x3b\x25\x67\x12\x50\xd8\xf2\x84\xac\x95\x1e\x8c\x6d\x26\x01\xb5\x91\x97\x64\x55\x7d\xbc\xee\x59\x55\x5f\xb6\x3a\x92\x06\x44\x98\x99\xe4\xd4\x21\x26\xc9\x24\xa7\x0e\x6b\x76\xd6\x4a\x8f\x88\x36\x6b\xa5\xd7\xac\x1d\x69\x1b\xfb\x62\x32\x76\x79\x66\x8a\x33\x76\x79\x91\x98\x39\x63\x97\x17\x89\x7d\x33\x76\x79\x91\x0d\x9d\x19\xbb\xbc\x08\xbb\x93\xb1\xcb\x8b\x4c\x7c\x19\xbb\xbc\xe8\x0b\x87\x5d\x5e\x64\x1a\xcc\x78\xe2\x45\x87\x04\xf2\xbc\x08\x5b\x9d\x91\xe7\xc5\x6e\x7d\xac\xe7\xd0\x3b\x19\x79\x5e\x5e\xde\x19\xdf\x3b\x59\xde\x0b\x9e\x71\xb6\x01\x79\x5e\x86\x28\xc9\xc8\xf3\xca\xf6\x3e\x59\xf9\x99\xbc\x33\xf2\x3c\x79\xae\x9c\x5d\xf9\x79\xec\xc8\xf3\xf8\x9c\x52\xc8\xc8\xf3\x2a\xcc\x64\xce\xae\xfc\xb4\x16\x79\x5e\x05\x13\x64\xe4\x79\x12\x02\x19\x79\x5e\xf5\x45\x45\x9e\xd7\x7c\x46\xc8\xf3\x5a\xe2\x49\x23\xcf\xe3\x2b\x11\x21\x23\xcf\x6b\xc9\xda\x91\xb6\x65\xeb\x53\xda\x46\x2f\x21\xc1\x33\x62\xcf\x48\xf0\x3a\xf0\x39\x23\xc1\xeb\xe4\xb7\xf3\xc5\x35\x7d\x3c\x1e\x83\x39\x47\xbb\x90\x91\xe7\x4d\x84\x60\x19\x79\xde\x64\x79\xc8\xc8\xf3\xfe\x5f\xc2\xce\xec\x6a\x5a\x5d\x07\xa2\x29\x81\x67\x87\xe3\x31\xff\x10\xee\x3a\xec\xdd\xf7\xf1\xff\x1e\x59\x74\x03\x02\x0f\x92\xaa\x54\x9a\x3e\x27\xf4\x3c\x8b\x66\x32\xf4\xbc\xa9\x45\xd0\xf3\xe6\xf2\xc9\xf0\x5e\x5c\x0a\xa0\xe7\x21\xf1\xfe\x66\xc0\xa9\x89\x77\x96\x01\xa7\xa6\xe3\x1a\x70\x6a\x53\x50\x93\x01\xa7\x36\x9b\x7d\x06\x9c\xda\x2e\xde\x80\x53\x56\xe1\x65\xc0\x29\x0b\xb8\x33\xe0\x94\x82\x3a\xb9\x92\x39\xc7\x2d\xc8\x15\xea\x97\xef\xa5\x42\xfd\xc2\xd3\xcf\x15\x1d\x33\xc7\x4b\x95\xe3\xe4\x2f\xd1\xd2\xeb\xde\x8f\xec\xb1\x8b\x14\xe5\x4a\xaf\x8b\x14\xe5\x4a\x2f\x0e\x44\xa6\x5c\xe9\x05\x86\xcc\x94\x2b\xbd\x5e\x93\x72\xa5\x0c\x24\x9a\x29\x57\xca\x6c\xb7\x99\x72\xa5\xa2\x7d\x94\x2b\x15\x12\x25\x99\x72\x25\xfa\x07\xbe\x99\x46\xb4\xe3\x77\x8e\xcc\x2b\x29\xcd\x4c\x29\xd3\xc0\x33\xcd\x28\x86\x3f\xc4\x66\x19\xc5\xf0\xe7\xf5\x7e\x6c\xfd\x2e\x91\x28\x86\x3f\xaf\x57\x39\x1c\x79\x87\xcb\x11\x77\xff\x62\x97\xfa\xe0\xcd\xe7\x4e\x97\x4c\x47\x0f\x6a\xe2\xf4\x3e\x7a\x33\x6a\xe2\x21\xfb\xcb\x6f\x1b\x0b\xae\x21\xa8\x89\xc7\xea\xb9\xc2\x11\x77\x47\x4d\x3c\x4d\xaf\x42\xa9\x8f\xe3\x0c\x35\xf1\x84\x03\x98\x51\x13\xff\x62\xf9\x7f\x2f\xc9\x08\x8d\x67\x77\x0e\x84\xc6\x8b\xcb\x2e\x42\xe3\xc5\x7d\x59\xa1\x71\x12\xfc\x99\x2a\xa7\x4e\xa8\x9b\xa9\x72\x42\xb2\xf1\xcd\x54\x39\x49\x8d\xca\x43\x4f\xc3\x5f\xe2\x69\xe0\xc3\x66\x2a\x99\x96\xd3\x96\x4a\x26\xc1\x8d\x4c\x25\xd3\xa2\x9e\x26\x53\xc9\x74\x7e\xd7\x24\xb3\x55\xfc\x1f\x99\xad\xea\x1d\xf0\x34\x08\x83\x33\xd5\x4a\x17\x28\x27\x53\xad\x24\xc9\x28\x23\x26\x2e\x01\x29\x23\x26\x7e\xf1\x3e\x33\x0a\x0d\xef\xf6\x88\xf4\xc7\xf1\x97\xa4\x3f\x1c\x66\x28\x34\x64\xf2\xa9\x19\x85\x86\xdf\xb2\x8b\x42\x43\x76\x02\xa0\xd0\x50\xf5\x50\x50\x68\x68\xee\xa1\x28\x34\x34\x07\x08\x0a\x0d\xbf\x05\x13\x85\x86\x8a\xbf\x99\x51\x68\xe8\x4e\x7e\x14\x1a\xba\x5f\x0c\x85\x86\x8e\xdf\x98\x17\x29\x0e\x7d\xae\x0f\x64\x6a\x93\xd4\x41\xfe\x40\xa6\x26\x16\x90\xbf\x48\xa6\x4d\x07\xe4\x22\xc5\xe1\x96\xba\x48\x71\xe8\xab\x21\x26\x4e\xe3\xcd\x37\x23\x26\x2e\xd5\x2c\x23\x26\xbe\x1f\xaf\x82\xc2\xae\x9e\x14\x62\xe2\x07\x3c\x3d\x23\x26\x4e\x3b\xdb\x37\x23\x26\x7e\xdc\xa6\x11\x13\x3f\xfa\x6a\x5b\xb7\xc0\xff\xe1\x16\x38\x1d\x10\x13\x3f\xa0\xf9\x79\xc3\x78\xcf\x1e\xe9\x16\x60\x3b\x42\xe3\xd7\xed\x08\xa5\x05\x6b\xf2\x32\x4a\x0b\x96\xe0\x66\x94\x16\xe8\x29\xfe\x66\x94\x16\xe2\xf6\x08\xb7\x80\xfc\x6d\x3e\xb8\x05\x44\x32\xf9\xe0\x16\xb8\x94\xa3\xb4\x10\xdd\x98\x51\x5a\x30\xfa\xcb\x28\x2d\x44\xfd\x46\x94\x16\xa2\xe3\x0c\xa5\x85\x08\x7e\x92\x51\x5a\x88\x9b\xf7\x82\xd2\x42\x3c\xfe\xd2\xad\x9f\xf7\x82\xd2\x82\xf5\xab\xf9\xd8\x42\xcc\x27\x03\x34\xd7\x7f\x3f\x80\xe6\xfa\xf6\xa8\x30\x28\x53\x95\x51\x61\xa8\x5e\x13\xa9\x85\xdf\x68\x45\x6a\xa1\x39\x96\x90\x5a\x68\x8e\x17\xa4\x16\x2c\xbd\xc9\x48\x2d\x58\x3f\x97\x2f\xac\x6f\x12\x3a\xf9\x12\xf4\x3b\xb2\x94\x61\x00\xea\xcf\x17\xd6\xb7\x2b\xca\x65\xdb\x74\x3e\x20\xd1\x30\xb5\x1d\x89\x86\x69\x64\x81\x44\xc3\xf4\x5d\x23\xd1\x20\xdb\xab\x20\xd1\xb0\xa9\x35\x28\x8f\xdb\xe6\xcb\x11\x8c\x70\xc6\x60\x79\x60\x84\xc3\x4e\x2a\x0f\x8c\x70\x46\x5d\x79\x60\x84\x77\x7f\x49\xd4\x8f\x43\x56\x1e\x18\xe1\x70\x64\xca\x17\x1d\x75\xba\x91\xbc\xe5\x8b\x8e\xb2\x7c\x8f\x82\x7c\x43\x99\x7f\x2d\xc9\x05\x65\x87\xc2\x22\x55\x1e\xb0\xe8\xdf\x25\xc1\xa2\xa7\x0f\x46\x17\xad\xe3\x39\xf4\x05\x58\x30\x0b\x1a\x10\x93\xe4\x7f\x41\x03\x62\x92\x2d\x2b\x68\x40\x4c\x76\xe2\x82\x06\xc4\xc6\x43\x29\xb6\x5a\xf2\xa1\x6d\xb5\x44\x50\x5c\x90\xc4\xcb\xaf\xe7\x90\x6c\x84\xc6\x5e\x90\xc4\xcb\xaf\x57\x81\x8d\x7b\xbc\xc3\x20\x3d\xc0\x2b\x43\x12\x6f\xe0\x31\x14\x80\x24\x24\xa6\xdf\x02\x90\xf4\x44\x6d\x60\xb7\x05\xce\x28\x00\x49\x74\x0c\x7c\x0b\x40\x52\x44\x4a\xa5\x00\x24\x25\x02\xb5\x02\x90\x24\x75\xbc\x00\x24\x49\x40\x2f\x02\x49\xa4\x2a\x8a\x40\x12\x93\xa3\x00\x24\x75\xbc\xa5\x02\x90\x24\x2d\xac\x00\x24\x59\xef\x55\x00\x92\xa4\x54\x15\x80\x24\x2b\xa7\x0a\x40\xd2\xf2\xcd\x0b\x24\xe1\x1b\x16\x02\x27\x9a\x71\xbd\x05\xb0\xe8\xf8\x55\x00\x8b\x5c\x22\x0b\x60\x11\x6a\xc6\x6f\x89\x06\xbe\x9e\x43\xcb\x0b\x6f\xa9\x10\x1d\xbd\xf8\x39\x85\xe8\x28\x10\x55\x15\xa9\x7b\x4c\xe2\x22\x75\x8f\x6d\xa5\x50\xf3\x54\x48\x71\x94\xe8\x56\xe5\x55\xbe\x65\x1e\x0d\xdf\xb7\x40\xeb\x53\x3d\xaf\x40\xeb\x2b\x40\x6a\x05\x5a\x5f\x61\x99\x2f\x50\xf7\x3a\x51\x5c\x81\xba\xd7\xa7\xe7\xd8\x8e\x1c\x59\x50\xf7\x26\x39\xcc\x02\x75\x6f\x3a\xe1\xa0\xee\x4d\x6d\x80\xba\x67\x21\x47\x49\x6e\x47\x1e\x91\x71\xc7\x2d\x28\x50\xf7\xf6\xe3\x39\x04\x91\x58\x42\x0a\x60\xd1\x71\x29\x00\x2c\x3a\x0d\xdb\x01\x8b\x0e\x4e\x42\x01\x2c\xfa\xbd\x79\x8b\x97\x9c\x7f\x16\x2f\x81\x2f\x14\xa2\xa3\xe4\x7c\x20\x3a\xa2\x91\xf0\x5b\x88\x8e\x68\xc2\xfb\x16\xa2\x23\x3a\xf1\xbd\xc5\xe8\xc8\x51\x4e\x74\xd4\x96\x77\x60\x89\xcc\xde\x9d\xc2\x98\xec\xff\xec\xc0\xe8\xfd\xbe\x25\x72\x38\x3e\x89\x8e\xc6\xef\x9a\x9b\x23\xbe\x11\xc5\x4b\x72\xc7\x0b\xc5\x4b\x0b\x16\x55\x21\x72\x12\x12\x2d\x44\x4e\xba\x52\x85\xc8\xe9\xa0\xd3\x51\x88\x9c\x0e\x8b\x70\x29\x46\x16\xbc\x6b\x22\x27\x0b\xe2\x0b\x91\xd3\x2d\xde\x81\xc4\xa8\xcb\x6e\x61\x19\x5c\x1e\xb1\xd6\x11\xf3\x94\xc2\x5a\x47\xca\xaf\x14\x14\x92\x5d\x5f\xbe\xe8\x28\x5b\x81\x58\xbe\xe8\x28\x6f\x36\xd1\x52\x8d\x2c\x38\x57\x8d\x2c\x98\x63\x08\x3d\xe4\xd7\x5f\x12\x59\xbc\xfe\xf2\x5b\xeb\xfe\x73\xb9\xff\x58\x92\xd1\x80\x28\xf8\x7f\x45\x0d\x08\x27\x15\x1a\x10\xc2\x35\x45\x0d\x08\xa7\x11\x1a\x10\x93\x4c\x4c\xa1\xd5\xd2\xe3\x24\xa6\xd5\x52\x78\xbd\x0a\x7c\x01\x72\x83\xc5\x56\x4b\xec\x69\xc5\x56\x4b\xdb\x3b\x50\x7f\x8f\x3f\x5d\x68\xb5\x64\xc2\xbd\xd0\x6a\xc9\x2c\x4d\x69\x2e\x21\x7c\x94\x06\x1e\x4b\x55\x7d\x69\xe4\xce\xdc\x48\x00\x84\x10\xf7\x7e\x0b\x80\x50\x81\xf6\x56\x00\x84\x0a\x01\x50\x01\x10\x6a\xc1\xfb\x75\x8e\xb0\x0f\x40\xc8\xba\xb4\x02\x20\xd4\x5e\xef\x0e\x73\xd6\xfd\x15\x40\xa8\xfb\x31\x01\x84\x68\x06\xf4\x16\x00\xa1\x89\x57\x57\x00\x84\x2c\x5f\x28\x00\x42\xbf\x6d\x0c\x4d\xbc\xed\x40\x46\x13\xef\x90\xa6\x29\x68\xe2\x9d\xe6\x2f\xf1\x14\xc9\xe9\x97\xae\xa7\xc8\x93\xa1\x89\x67\x71\x77\x11\x2c\x72\xc9\x02\x2c\x4a\x24\x12\x0a\x60\x51\x8a\xde\x6f\x72\xc4\xe4\x00\x2c\x4a\xd1\xff\x6d\x8e\x98\x2a\x80\x45\xc9\x6d\x0c\xb0\x28\x39\x6d\x01\x8b\x32\xbe\x61\x01\x10\xaa\xfe\x12\x40\xa8\x02\x83\x14\x00\xa1\x06\xcc\x5a\x00\x84\x9a\x9b\x1a\x80\x50\xcf\x9e\x43\x24\x3f\x79\x0e\x2f\xcb\xed\x08\x5a\x9f\x2a\x05\x05\x5a\xdf\x70\xf3\x85\xd6\x37\xdc\x44\x81\x8e\x68\x9c\xff\x16\xa0\xa3\xe9\x42\x04\x74\xb4\x1c\x21\x40\x47\x0b\x36\x75\x01\x3a\xda\xbe\x4f\xa0\x23\x65\x35\x0b\xd0\xd1\x76\x82\x03\x1d\x49\x43\x2b\x53\x2f\xcb\x6b\xe2\x65\x1d\xaf\xc2\x12\xa2\x73\x01\x74\x74\x89\x5d\x0a\xd4\xbd\x37\x7a\x44\x6d\x1d\xc8\x4e\x91\xba\xb7\xbc\x03\xd4\x3d\x02\xe6\x02\x75\xcf\xf2\xa1\xa2\x0a\x39\xe0\x62\x81\xba\xb7\x9d\x71\x50\xf7\x14\xe7\x2c\x50\xf7\x8c\x2c\xca\xd2\x5d\xf2\x7f\xe0\x27\xc1\xff\x81\x4b\xb8\x35\x52\xbc\x34\x5d\x06\xd1\x80\x78\x7c\x9f\x68\x40\xa8\x9e\x57\xd0\x80\x88\xc0\x97\x05\x0d\x88\xa4\x93\x87\x06\x84\x40\x7c\x59\x46\xe8\x3e\x0b\x3a\x1d\xce\xaa\x45\x84\x4e\x32\xb2\x6c\x78\x29\x44\x8d\x65\xbb\x4e\xf0\xd4\x44\x5c\x0f\xc0\x63\x21\xe2\x12\x58\x2d\xb6\x6f\xda\xfe\x12\x60\x5c\x9f\x99\x88\xab\xbb\x31\x13\x71\x75\x17\x61\x22\xae\xa9\x0d\xb4\x6f\x3a\x50\x12\x0a\x3d\x9a\x7e\x3e\x33\x3d\x9a\x7e\xdb\x03\x11\xd7\xd7\x83\xf4\xdf\x4b\x32\xc1\x58\x02\x53\x2e\x04\x5c\x95\x60\xac\x10\x70\x55\xf7\x98\xe3\x54\x61\x48\x1c\xa7\x0a\x83\x95\x80\x6b\xfc\x8e\x9c\x2a\x98\x4e\xc0\x65\xbd\x7f\x21\xe0\x9a\x2e\x83\x04\x5c\x8b\x40\xa6\x10\x70\xad\xe8\xfd\xd0\x8c\x73\x52\x11\x70\x2d\x07\x24\x01\xd7\x76\xb9\x26\xe0\xda\x04\x78\x85\x80\xeb\x42\xad\x29\x04\x5c\xd7\x8f\x49\xc0\x75\x5d\x3e\x09\xb8\x6e\xf7\x97\xe4\xf1\x96\xbf\x44\x11\xcc\xad\x03\x7a\x5e\xd0\x53\x84\x9e\xa7\x3e\x44\x81\x9e\x97\x5d\x88\xa0\xe7\x65\x3d\x61\xe8\x79\x45\x1f\x1d\x7a\x9e\x1c\x84\x62\x7d\x92\xfe\x26\xb0\xd2\x60\x52\xd5\xc7\x61\x96\x38\x62\x98\xe1\x07\x54\x20\xa7\xc5\x92\x55\xa1\xe7\x39\x08\x2a\xf4\x3c\x5a\x43\xbe\x15\x38\xea\x74\xaf\x02\x7f\x86\x25\xb2\xa2\x08\x61\xcd\x53\x45\x11\x42\x1d\xba\x8a\x22\x44\xe3\x3b\x54\x14\x21\x66\xf3\xc9\xc8\xf7\x93\xb5\xac\x0f\xad\x73\x9a\xff\x63\xb9\xfe\x3d\x27\xcb\x75\xf1\x97\x8c\x33\x2d\x7a\x0d\x98\xb9\xfb\x8b\x6c\x21\x13\xa0\xbe\xe4\x99\x59\x96\xea\x0b\x0b\x9b\x25\xb9\xbe\x8c\x33\x12\x09\xf5\xa5\x6f\x49\xf6\x9a\x83\x23\x7f\x39\x39\xe2\x4d\xbc\x30\xad\xc9\x6f\xd6\x2f\x3a\xea\xa7\x7b\xbf\xef\x39\x15\x59\xaf\x2f\xcb\x99\x77\x08\x30\x91\x71\x58\x2a\x4d\x6a\x33\x71\x4d\x25\x3a\x52\x72\xb3\x12\x01\x55\xc6\x60\x25\x02\xba\x38\x10\x95\x08\x48\x29\xf3\x0a\xac\xd4\xe0\xcf\xd4\xe0\xbb\xf6\x0e\x6c\xfd\x44\x5c\x55\x58\xc9\x6f\x2b\xac\xd4\x3d\x07\xac\xe4\x97\x06\x56\xa2\x03\xf7\x5b\x85\x95\x70\x89\x6a\xc4\xf3\xc6\x37\xac\x5f\x74\xd4\xd5\x08\xaf\x91\xe4\x04\xac\x91\x1a\xd9\x36\x81\x05\x6b\x64\x2d\x60\x65\xa8\xd1\xb5\x80\xfb\xd1\x86\xa9\x55\xaf\x09\x1b\x9e\x65\xb0\x46\xd9\xf0\x5e\x93\x9c\x7e\xf6\x9a\x7e\x23\x7f\xf9\x8d\x89\x4b\x04\x54\xc1\x87\xd4\x8a\xa9\xe0\x43\x74\xe9\x7b\x2b\x2a\x78\x07\x32\x5b\xa5\x11\xed\x24\xe1\x51\xa1\xc4\x29\x8b\x5a\xa1\xc4\xe9\xdf\x56\x28\x71\x8b\x85\xbd\x12\x01\x59\xa3\x50\x2d\x5e\xf2\xbd\x10\x01\x1d\xea\x34\xeb\xaf\x67\x92\x47\xb8\x28\xbf\x67\xc1\x45\xd1\x76\xf0\xa1\x56\xfd\x25\x55\x09\x8e\x09\xf0\x21\xf5\x44\x2a\x11\xd0\x0c\x7f\xf1\x92\x2b\xc1\x91\xc2\xf4\x15\xe1\xef\xc7\x89\x83\xf0\x77\x65\xd1\xa8\xd0\xe5\x66\xf7\x28\xf3\x60\xbc\x40\x83\x23\xf6\xe5\x4a\x70\x64\xb9\x6c\x25\x38\x1a\x2e\x21\x99\x9c\x70\xf7\x7e\x4c\xf7\xdf\x11\x3b\xce\xf0\x0e\xe4\xf8\x96\xff\x63\x4a\x13\x68\x57\x83\x1c\x72\xb4\x15\xda\xdb\x6f\x6a\x12\xe4\x24\xbc\x82\x4a\x90\x73\xd8\x02\x2a\xc2\xdf\x01\x98\xa0\x16\x9f\xd3\x73\x0c\x25\x17\x22\xe0\x21\xeb\x03\x2b\xf0\x90\x15\x81\x15\xe1\xef\xe5\x27\xfa\x02\xa0\x64\xad\x54\xfd\x02\xa0\x74\x5c\x50\x08\x80\x04\x4c\x2a\x01\x90\x95\x3e\xf5\x0b\x80\xb2\xe4\xa4\xfa\x05\x40\xe9\x38\x3c\xbf\x00\x28\x1d\x98\xac\xf5\x0b\x80\xd2\x49\x9e\x4b\xb4\xe6\xdf\x1c\xa1\x0c\xe0\x52\x00\x3c\xf4\x1b\x82\xc0\x43\x97\xac\x7a\xfd\xa2\x9c\xa4\x78\x4a\xfd\xa2\x9c\xac\xbe\x47\xfd\xa2\x9c\x74\x1e\xff\x37\xbf\xa3\xe0\x11\xf6\xb9\x30\x54\xec\x5b\x3e\xf5\xe1\x88\xef\xfe\x45\x39\x89\x6e\xe7\x6f\xa5\x0d\x93\xd2\x49\xb5\x29\x68\x8a\x45\xb4\x61\x92\x28\x55\x69\xc3\x14\xc9\xe9\x57\xda\x30\x55\x68\x76\x95\x36\x4c\x8a\xc7\x56\xda\x30\x99\xec\xa9\xb4\x61\x5a\xaf\xbf\xfc\x0a\x2b\x36\x5e\x5d\x05\x3a\x32\x78\xaf\xa8\xe0\xcd\xe9\x55\xbe\x6d\x53\xc9\xac\x8a\x0a\xde\x22\x64\xad\x40\x47\xc1\xcd\xa9\x61\x9f\x63\xa2\x61\x1f\x5e\x6b\xfd\xa2\x9c\x64\x68\x5d\x3b\xdf\x6f\x7b\x8e\xef\xe7\x52\xde\xf9\x7e\x3e\x4b\xe7\xfb\x81\x44\xd4\x2f\xca\x49\xca\x78\x56\x94\x1d\x82\xdf\x1d\x65\x07\x89\xa6\x15\x65\x87\xf8\x7a\x0e\x76\x52\xf2\x88\x36\x45\xc4\x82\xb5\xdb\xa6\x08\x1b\x50\x6f\x98\xcd\xbb\x93\x70\x84\x74\x57\x51\x6f\x58\x14\xfe\x54\xd4\x1b\x74\x7b\x2a\xea\x0d\xab\xfa\xcb\xc8\x11\x6f\x10\xf5\x86\xf3\x78\x8e\x3e\x3e\xf8\x8d\x15\x89\x06\x53\x31\x15\x89\x86\xeb\x08\x19\xba\x36\x1e\x7d\xdf\x28\xb8\x71\x7d\x51\x4e\x59\x00\x73\xf5\x8b\x72\xca\x72\xe3\x1a\x7c\xa3\xe4\xdd\x37\xe7\xb0\x0f\x89\x86\xff\x3f\x35\x09\x47\x92\x75\x15\xec\x28\x00\xd9\x57\xb0\x23\x49\x01\x15\xec\xa8\x13\xc9\x54\xb0\xa3\xe7\x77\x8e\x96\x6c\xce\xf7\x2f\xca\x49\xd7\xd9\xf1\x45\x39\xe9\xbe\xfe\xaf\x7e\x47\x8e\xc8\xc9\x1c\x73\xbe\x7f\x04\xb9\xa4\x66\x77\x9d\xcc\xb1\xfb\x57\xf5\x5e\xfd\x82\xa3\x74\x1f\x1f\x9a\xe9\xe7\x52\xf7\x05\x47\xe9\x3e\xde\xfc\x70\x03\x86\xd2\x17\x1c\x25\x9b\xad\xd4\x2f\x38\x4a\x17\xa8\xaa\x7e\xc1\x51\xb2\xf5\x4a\xfd\x82\xa3\xa4\x44\x78\xfd\x82\xa3\x74\xfd\x98\x8b\xe1\xa9\x87\xb2\x30\xdd\x01\x42\x5d\x93\x20\x4c\xa5\xae\x29\xfc\xae\x42\xdd\x96\x93\x11\xf2\x5c\x80\x59\x50\x21\xcf\xc5\xdf\xdd\x27\x03\x99\xcf\x07\x79\x4e\xc6\x66\x85\x3c\xf7\xfb\x44\x90\xe7\x92\x8b\x22\xe4\x39\xbb\x7c\xd4\x8d\xf0\x08\x41\x4e\xdd\x74\x10\x73\xc9\xfa\x82\xa3\x2c\x7c\x52\xbf\xe0\x28\x2b\xa0\x5f\xbf\xe0\x28\x77\x27\xf1\x66\x79\x71\xe8\x6e\x96\x17\x37\x99\x8d\xba\x08\x19\xc6\xfa\x05\x47\xb9\x93\xbb\xae\x1b\xad\xe1\xea\xfd\x06\x47\x3c\xe7\xa6\x83\x98\x1b\xd0\x46\x6b\x58\xdf\xf0\x0b\x9c\xf2\x6f\x90\x6f\xf2\x63\xc1\xa3\xcb\x14\xe3\xee\xc7\xe9\xc7\x1d\x0e\xf9\x7e\xad\x3d\x4c\x3f\x28\x6a\xf5\x38\xfd\xb0\xef\x8b\x9c\xf2\x6f\x14\x1c\xa6\x9f\x5b\xce\x17\x39\xe5\xeb\x94\xfe\x22\xa7\x6c\x59\x4e\xfd\x22\xa7\x7c\xb7\xe7\x26\xd3\xd6\xfb\x2d\x26\xaa\x4f\xb6\x39\xf2\xc9\xbe\xe9\x17\x74\x19\x28\x5e\x0a\x04\x86\x95\xe2\x25\xf3\xda\x95\xe2\xa5\xa0\x5b\x40\xf1\x52\x00\x86\xac\x14\x2f\x05\xfd\x77\x8a\x97\xe8\xab\xf8\x56\x8a\x97\x82\x0e\x04\x2d\x9a\x32\x59\xd2\x4a\x8b\xa6\x4c\xca\xa1\x12\x39\x65\x4a\x84\x2a\x91\x53\x8d\x1e\x81\x67\xe8\xfb\x12\x39\x55\x23\x12\x22\x27\x9b\x31\x54\x22\xa7\x1a\xbd\xfb\xe1\xc8\x3b\x5c\x8e\xbe\x37\xd1\x28\x6c\xaa\x24\x97\x1a\x85\x4d\x8b\x85\xa1\x51\xd8\xb4\x00\x5d\x9b\x2d\x9a\xc8\x10\x37\x5a\x34\xad\xec\x55\x32\xbf\xbc\x1c\x15\x8e\x06\x47\x95\x5f\x26\x8e\x48\x46\xe2\xff\x35\xc8\x7a\x7e\x87\x66\x81\x52\xf3\xe8\x5b\x06\x8d\x0c\x1b\x64\xbd\xc2\x88\x6c\x90\xf5\x06\xa3\xa7\x41\xd6\x53\x04\xb6\xa1\x97\xa7\x80\x7e\x43\x2f\x4f\x09\xfb\x86\x5e\x9e\x02\xfa\x0d\xb2\x5e\x20\xe5\xd0\x20\xeb\x85\xdf\x1d\x88\xf0\x92\xe7\x20\xb3\x31\x92\x1b\x91\xd3\x83\x14\x70\x23\x3a\x7a\xa8\x66\x68\x44\x47\x0f\x31\x64\x7b\x61\x3c\xb1\x6a\xb4\x00\xe3\x89\x34\x4d\x0b\x30\x9e\x70\x12\x5a\x80\xf1\x44\x8c\xdc\x02\xeb\x19\x33\xae\x7d\xd8\x51\xb2\x40\xbd\x05\xd6\xb3\xe2\x35\x59\xca\xd3\x5f\x24\xb8\x16\x58\xe5\xb3\x37\x68\x5c\xc4\x47\x61\x95\x67\x98\xb5\x2f\xa8\x4a\x97\x8c\x5f\x0b\x2c\xe5\x7e\xf6\x2f\xa8\x4a\xe6\x30\x5b\x60\x29\x07\xdb\x6f\x81\xa5\x9c\xd0\xa5\x05\x96\x72\x72\x75\x2d\xb2\x94\x3b\xcc\x22\x4b\x39\x03\xb2\x45\x96\x72\x26\x5c\x43\x76\xdc\x36\x30\x2d\x52\x82\x8b\x5f\xd5\xbe\xa0\x2a\x07\xfc\x87\x86\x24\xb9\x2d\x5b\x1a\x92\xe4\x21\x78\x15\x96\xeb\xc7\xff\xb1\x5c\x17\xef\xce\x72\x8d\xef\xdb\x90\x16\x4f\x00\x18\x0d\x69\xf1\xc4\xd4\x6c\x48\x8b\x27\x87\x20\x41\x55\x72\x20\x23\x2d\x9e\xc8\x76\x36\xa4\xc5\x13\x99\xc2\xf6\x05\x55\x39\xf9\x9c\x5f\x50\x95\x53\xf0\x97\x95\x73\xbc\xa5\x2f\xa8\xca\x74\x0a\x7f\xdb\x17\x54\xe5\xe4\x34\xfa\x82\xaa\x9c\x7c\xbb\x5f\x50\x95\x53\xf0\x7f\x8b\x23\x9f\x65\xf3\x4b\x9f\x9a\x7c\x23\x4b\x48\x4b\x6e\x39\x9c\xcb\x6c\x39\x04\xf6\x2d\xb3\xe5\x78\x87\xcc\x96\xa3\x45\x99\x2d\x07\xef\xac\x65\x3c\x5a\x12\x4f\xed\x8b\x9c\x72\x85\x65\xde\xbe\xc8\x29\x57\x47\x48\x66\xcb\x01\xc2\x6b\x99\x2d\x87\xbc\x6f\xcb\x6c\x39\xc3\x73\x6c\x39\x78\xd7\x2d\xb3\xe5\x0c\x7f\x89\x37\xd8\x7d\x6a\xbc\x41\x17\x86\x4c\xd3\xca\xe1\xfd\x68\x5a\x49\x82\xa5\x7d\xb0\x52\xee\x8e\x9e\x0f\x56\xca\x56\xef\xb5\x2f\xe2\xca\x9d\x90\xb5\x15\x4a\xa1\xbd\x66\xa1\x14\x9a\x64\x41\xfb\x22\xae\xbc\x7c\xd7\x85\x88\xc4\x51\x50\xf0\xd8\x89\x5d\x5a\xa1\x14\xfa\x77\xbf\xce\x91\xff\x1b\x1c\xf1\x96\x80\x9c\xe8\x65\xfd\x36\x20\xa7\xf5\xbb\x1f\x5b\x6a\xf3\x0e\x6c\xa9\x70\xa3\x1a\x11\x97\x6a\x18\x8d\x88\x6b\xc1\xe1\x6f\x95\x7c\x31\x14\xb5\x56\x09\xfa\xc9\xfb\xb6\x2f\xe2\xca\xc6\x43\xad\xb2\xdd\xfa\x2c\xd5\xed\x96\x67\xa9\x7a\xbb\x7c\x69\x22\xae\xa3\x0d\x15\x69\x7f\xad\x25\xe2\xd2\x21\x6b\x90\xf5\x74\xdd\x1a\x64\x3d\x55\xb3\x5b\xa5\x6b\x25\x6c\x9a\x06\x59\xef\x92\xd2\x6c\x34\xbe\xbd\xa4\x8c\x1a\x8d\x6f\x2f\xf4\xd1\x46\xc4\x75\xa9\x7b\x6d\x44\x5c\x97\xf8\xa4\x11\x71\x59\x75\xdb\x88\xb8\xac\xd7\x6b\x44\x5c\xd6\xee\x36\x22\x2e\xeb\x81\x1b\x11\xd7\x3d\xfe\x12\x77\x02\xa4\xac\x11\x71\x59\x1d\xdc\x68\x7c\x7b\x71\x54\x1b\x5a\x7a\x32\xbb\x1b\x11\x97\xe0\x77\x43\x4b\xef\x5e\xef\x80\x3b\x11\xbd\x26\xee\x44\xfb\x2b\x71\xd1\x90\x24\x0f\xbe\x78\x64\xc7\x83\x3b\x07\xb2\xe3\x81\xe0\xb6\x21\x3b\x6e\x85\x5e\x43\x76\xdc\x76\x2e\x0d\xd9\xf1\x00\x39\xa9\x21\x3b\x1e\xc8\xb6\x34\x64\xc7\x43\xf3\x7f\x04\x2b\x7e\x5a\x64\xc7\xcd\x81\x35\x64\xc7\x7f\x7b\x21\xb2\xe3\xc1\x25\x12\xd9\xf1\x50\x7d\x32\xe4\xed\xaf\x77\xb8\x1c\x71\xee\x0b\xc6\x4a\xf6\xa3\x0c\xf2\x7f\xb0\x32\xdb\x00\x11\x25\xb0\x68\x5f\x30\x56\x7e\x8b\xcd\x17\x8c\x95\xea\x02\xf6\x05\x63\x45\x2d\xde\xf6\x05\x63\xc5\x06\x51\xed\x0b\xc6\xca\x6f\x59\x22\x18\x33\x03\xd7\x08\xc6\x2a\x6c\xd5\x46\x30\x56\xdd\xc1\x09\xc6\x2a\xfe\x58\x23\x18\xfb\x2d\x60\x04\x63\xd3\x21\x88\x26\xde\x72\x20\xa3\x89\xb7\xdc\x0c\xd1\xc4\x53\xb6\xa6\xa1\x89\xb7\xf0\x5a\x1b\x9a\x78\xbf\xe9\x8e\x26\xde\x6f\x61\x40\x13\x6f\xf9\xfd\xd0\xc4\x5b\xc5\x73\x8d\x23\xac\x45\x13\x6f\x91\xa2\x6a\x68\xe2\x29\x8c\xd3\x26\x01\xa5\x63\x62\x12\x50\xba\x14\xa0\x97\xb7\x48\x43\x35\xf4\xf2\x16\x5e\x6b\x43\x2f\xcf\xc0\xb7\xa1\x97\x67\x3e\xbc\xa1\x97\xb7\x1c\x4b\xe8\xe5\x2d\x17\x45\x64\xc7\x95\xad\x69\xc8\x8e\x2b\x46\xd3\x90\x1d\x0f\x6e\xa9\xc8\x8e\x07\x0a\x40\x1a\xb2\xe3\x01\x60\xb5\x01\x39\x85\xe5\x2f\xe9\xdc\x48\x5e\xb4\x01\x39\x29\x92\xda\x80\x9c\xc2\xf4\x0e\x40\xd3\xcb\xe7\xfc\x92\x1a\x51\x6b\x81\x9c\x64\xa7\x37\x60\xa5\xe8\x62\x8a\xb6\x78\x76\x32\xa2\x2d\x9e\xf1\x99\x1b\xfa\xe1\xc5\xf9\x80\x7e\xb8\xec\xed\x06\x74\xf4\x10\x63\xb5\x8d\xbe\xb6\xf7\xfb\xa2\xa3\xf6\xf3\xf8\x80\x95\xcc\xe9\x37\x60\xa5\xe7\x77\x77\xca\x81\xfd\x0e\x9b\x3c\xf3\xef\x97\x74\x9c\x73\x4c\x1c\x3a\xce\x11\x9b\xb5\x43\xc7\x39\xdf\xfc\x17\x39\x35\x65\x35\xdb\xc1\xa3\x75\x0b\x38\x78\xb4\x6e\x16\x87\xba\x49\x47\xeb\x81\x70\x48\xaa\xa2\xa1\x11\x7e\xfd\x2a\x47\xaf\xd5\x23\x70\x09\x37\x43\x70\xa5\x67\xf8\x2c\x7a\xb4\x3e\x0b\x1e\xad\x9b\x28\xb8\xd2\xe3\x36\x0d\xae\x54\x74\x9e\xae\x1e\x2d\xcf\x72\xf5\x68\xb9\x1f\xb8\x92\xe0\x7e\xbb\x44\xe8\xba\x83\x17\x8f\x56\x47\xe0\xe2\xd1\xea\xb1\x5f\xdc\x56\xdf\xd2\xc5\x6d\x75\x95\xba\xb8\xad\x7a\xf3\x17\xb7\xd5\xd9\x71\x71\x5b\xdd\x80\x2e\x6e\xeb\x7f\x23\xf9\xdf\x4b\xf2\xc5\xa3\x75\x67\xbc\x78\xb4\x4e\xf0\x8b\x47\xcb\x82\xd9\x1f\x3c\x5a\x16\xa2\xfe\xe0\xd1\x76\xcf\xe9\xd1\x0e\x8e\x70\xe6\xbb\x47\x38\xf3\x50\x5d\xfa\x83\xe9\x0c\xc8\xfe\x68\x7a\xe3\x08\xd3\x19\x3c\xfd\xc1\xf4\xee\xfd\x30\x9d\xcd\xa2\x3f\x98\xce\x07\xeb\x0f\xa6\x33\x20\xfb\x83\xe9\xcd\x23\xec\x63\x58\xf7\x07\xfb\x58\xce\xfa\x83\x7d\x64\x5e\xfb\x6b\xee\xd3\x23\x54\x5f\xe1\x6d\x74\x88\x7c\x96\x96\x77\x88\x7c\x6a\x4e\x74\x1a\x36\xa9\x39\xd1\x69\xd8\x14\xc8\x3e\x76\x1a\x36\x85\xdf\x55\xf0\xca\xa3\x47\x78\xe5\x3e\x35\x4d\x99\x2c\x85\xe9\x34\x65\xa2\x9b\xf4\xdb\x81\x9c\xcc\x8e\x77\x20\xa7\xe4\x1b\xa4\x61\x53\xea\x1e\xe1\xb1\x6b\x3b\x0d\x9b\x6c\x49\xd3\x69\xd8\x94\xb4\x9d\x86\x4d\xf4\x96\x7e\x3b\x0d\x9b\xec\x5f\xd1\x69\xd8\x94\x58\x30\x3b\x0d\x9b\x12\x79\xdf\x4e\xc3\xa6\xc4\x12\xd9\x69\xd8\x94\x58\x76\x3b\x0d\x9b\x12\xbe\x53\xa7\x61\x93\x8d\x74\x3a\x0d\x9b\x52\xf1\x39\xb1\x8f\xd4\x41\xa7\x61\x93\x22\x8d\x9d\x86\x4d\x82\x84\x9d\x86\x4d\xf4\xb9\x7e\x3b\x0d\x9b\x04\x09\x3b\x91\x53\xb9\x9e\xa3\xa9\x16\xa4\xbb\x4e\xe4\x54\xbd\x3b\x91\x53\x65\x7b\xef\x44\x4e\x95\x4d\xa6\xd3\xcc\xa9\xfa\x5e\x68\xe6\x54\xd9\xb8\x3a\x51\x55\xc5\xb9\xe8\x44\x55\x0a\xef\x77\xa2\xaa\xda\x3c\xb7\x39\xc7\x3b\xa3\x99\x53\x65\x93\xe9\x44\x55\x95\x00\xb6\x13\x55\x09\x6d\x76\xa2\x2a\x9b\xdb\x76\xa2\x2a\x5b\xab\x75\xa2\x2a\x39\xbd\x9d\xa8\xaa\x4f\x8f\x88\x3a\xd8\x3a\x3a\x51\x55\x27\xf5\xd3\x89\xaa\x3a\xe2\x3e\x9d\xa8\xca\x2a\xb5\x4e\x54\x45\x2f\xeb\xb7\x13\x55\xd9\xae\xad\x13\x55\x75\x08\xb1\x9d\xa8\xaa\x3b\x76\x89\xaa\xec\x73\xdd\x89\xaa\x3a\xc0\x55\x27\xaa\xb2\x2a\xa1\x13\x55\xc9\x32\xea\x44\x55\x82\x68\x9d\xa8\xaa\x83\x36\x74\xa2\x2a\xfa\x71\xbf\x9d\xa8\xaa\x43\xfc\xec\x44\x55\xd3\x77\x46\x54\x35\x1d\x91\x44\x55\xc2\x9e\x9d\xa8\xca\x86\xb9\x9d\xa8\x6a\x25\xaf\x49\xd4\x91\xbc\x26\x51\x07\x79\xe6\x4e\x54\xb5\x86\xbf\x24\xea\x60\x99\xef\x44\x55\xcb\x77\x4d\x54\xb5\x60\xda\x74\xa2\xaa\x05\x39\xb0\x13\x55\x2d\xca\xcd\x3a\x51\xd5\xea\xfe\x92\xa8\x8a\xc2\xad\x6e\x54\x35\xf6\x1f\x4b\x72\x37\xe0\x22\xdc\xeb\x06\x5c\x00\x6c\xdd\x80\x8b\xbd\xa9\x1b\x70\x41\xe5\xe9\x06\x5c\xc3\x87\xc6\x74\x3f\xa6\x01\xd7\xd4\x3c\x4d\xf7\x1c\xbd\xc6\x00\x22\x3a\x01\xd7\x21\x01\xde\x09\xb8\x0e\x61\x7e\x27\xe0\xba\xec\x77\x9d\x30\xca\x42\x80\x2e\x70\xe5\xd2\x53\xcd\x5a\xf2\xaa\x0d\xa3\x1c\xe4\x86\x51\xdb\x73\x84\x51\x04\xe8\x9d\x16\x4d\x4f\xf0\x97\x9b\x23\x9e\x93\x9a\xa7\xe7\xf7\x2c\x9f\x8f\x27\x67\xb9\x53\xf3\x64\xf9\x71\xa7\xe6\x49\xcf\xa6\x53\xf3\xf4\x10\x26\x76\x6a\x9e\x1e\xad\xa5\xe6\xe9\x61\x5f\xee\xd4\x3c\x59\x83\xd4\xa9\x79\x7a\x48\xb7\x74\x6a\x9e\x1e\x40\x83\x4e\xcd\xd3\x13\xbc\x7b\xe7\x0e\x3c\x35\xc0\xd5\x43\x56\xbd\x1b\x46\x05\xaf\x82\x7d\xaf\xf7\xc3\x3e\x98\xc1\x9d\x30\xea\x71\xf2\x13\x2b\x59\x5e\xdd\x69\xdf\xf4\x90\x60\xe9\xb4\x6f\xb2\x93\x6f\x37\x8e\xc2\xab\xeb\xc6\x51\xc3\x23\xe2\x28\xa7\x98\x71\x14\x81\x68\x37\x8e\x72\x53\x33\x8e\x72\x9c\x19\x47\x39\x7a\x8c\xa3\x96\xe7\x88\xa3\x9c\x46\xc6\x51\xc0\x74\xdd\x38\xca\xa9\x62\x1c\x45\xd9\x79\x27\x8e\x0a\x43\x8b\x88\x05\x1d\x91\xc4\x51\x01\x60\xa7\x1b\x47\x69\x91\x71\x94\x13\x8e\x38\x4a\xf5\xc3\x4e\x1c\x65\x87\xf1\x4e\x1c\x95\x01\x2c\x3b\x71\x54\x01\x23\xe9\xc4\x51\x05\x54\xa4\x13\x47\x95\xc7\x6b\x02\x3c\x5e\xaf\x49\xc9\x3d\xf0\x65\x27\x8e\x92\x93\xdd\x89\xa3\xec\x76\xde\x89\xa3\x0a\xe9\x81\x3e\x8c\x13\x3d\x77\xb9\x1f\xef\x9a\x18\xab\x38\x26\x88\xb1\x0a\xac\xf6\x4e\x8c\x55\x1d\x9f\xc4\x58\x36\xf3\xec\xc4\x58\xd5\xcd\x97\x18\xcb\x66\x4e\x9d\x18\xab\xea\x40\x10\x63\xfd\x36\x27\x62\xac\xdf\x06\x44\x8c\xa5\x4a\x63\x27\xc6\xaa\xcd\x5f\x12\x27\xe2\xf2\x75\x62\x2c\x3b\xcd\x74\x62\x2c\x65\x5f\x3b\x31\x96\xed\xa2\x3a\x31\x56\xd5\x81\x20\xc6\x52\x4a\xb6\x13\x63\xd9\x4a\xaa\x13\x63\x55\x62\x89\xbe\xb4\x8f\xb7\x0b\xad\xef\xb7\xfd\x2d\xed\xf3\x7f\xd8\xa0\x4b\x84\xee\xf8\x24\xa9\xd8\xd1\x1d\x97\xf6\xd6\xd1\x1d\x9f\xae\x36\xe8\x8e\x4f\xd7\x17\x74\xc7\xd7\xeb\x1d\x88\x13\xdd\x3a\xd0\x1d\x5f\xe7\x2f\xbd\xe4\x8e\xea\xc3\x42\x61\xad\xa3\xfa\xb0\xc8\xcb\x74\x54\x1f\xd4\x97\xea\xa8\x3e\xfc\x96\x5d\x54\x1f\x16\x00\x4d\x47\xf5\x61\x39\x35\x11\xe4\xb3\x6e\xbf\x23\xc8\xb7\xa6\x47\x84\xc8\x04\xe8\x1d\x45\x88\x05\x7e\xdf\x51\x84\x58\xee\xfc\x28\x42\x2c\xf7\x65\x14\x21\xd6\xf2\xee\x98\x7e\xbc\x1f\xa6\x5f\xaf\x82\xe9\x64\xa8\x3a\x8a\x10\xaa\x62\x75\x14\x21\x96\x8b\xc6\x31\x44\xe6\x7e\x88\xf5\xfd\xb6\x9c\x63\x0a\x80\xe7\x44\x2d\x42\x4d\xae\x8e\x5a\xc4\x72\xe7\x47\xac\x6f\x47\x8f\xb0\x6f\x79\x15\xed\xc3\xf6\xa3\x7d\xfe\x12\xfb\xf4\xea\x8e\xf6\x31\xcc\x8e\xf6\x79\x0e\xfb\x5c\xdc\x90\x24\x17\x96\xe8\x28\x49\x3c\x4e\x00\x94\x24\x1e\xa7\x18\x4a\x12\x8f\x43\x02\x25\x89\xc7\xc9\x81\x92\x84\x72\x37\x1d\x25\x89\xc7\x61\x8d\x92\xc4\xd3\xfd\x25\x6a\x18\x6e\x7f\x28\x49\x3c\x46\x40\x28\x49\x58\x10\xdf\x51\x92\x08\xc6\x4a\x28\x49\x04\x3d\xa9\x6b\x0a\x80\x71\x86\x5c\x79\xd8\x3e\xf5\xe1\x1c\xd6\x42\x07\x0c\x70\x17\x06\x74\x40\x3b\xaa\x0c\xe8\x80\x81\x51\x37\xa0\x03\x06\xd8\x0a\x03\x3a\x60\x58\xfe\x8f\x92\x58\xde\xd9\x80\x0e\x18\x87\xff\xa3\x24\x76\x78\xae\x72\xb4\x39\x6a\x1c\x15\x8e\x90\x63\x1f\xde\x1d\x56\x2d\x9e\xd4\x00\xf0\xb2\x1c\x7f\xa0\xd6\x17\xbb\x57\x91\x7d\xef\x11\x74\x47\x72\x9f\x03\xc0\x2b\x83\xd0\x0c\x00\xaf\xcc\xd2\x33\x50\xa7\xc8\xdd\x5f\xa2\xc8\xc7\x96\x33\x54\xe4\x23\x21\x37\x54\xe4\x43\x43\x71\xa8\xc8\x47\x22\x6f\xa0\xc8\x57\x48\xcf\x0d\x15\xf9\xae\xd7\x44\xed\xe3\x7a\x3f\xd4\x3e\x18\x83\x43\x45\x3e\x36\x8b\xa1\x22\x1f\xd9\xd5\xa1\x22\x1f\x11\xc9\xa0\x90\xaa\xc3\x32\x1a\x14\x52\x75\x30\xa0\x41\x21\x55\x27\xd9\x33\xa0\x0a\x0e\xe2\xe0\x41\x21\xd5\x60\xf1\x1e\x14\x52\x59\x05\x31\xa0\x11\xae\xea\xff\xa0\xaf\xb1\xe5\x0c\xd4\x29\x9e\xe8\x39\xd2\x3b\xcd\xfb\x91\xde\x61\xd3\x1e\xd0\x08\x1f\x3c\xd3\x01\x8d\xf0\x99\xde\x9d\xf4\xce\xf4\x2a\xa4\x77\xfc\xee\xd2\x08\x81\xf0\x06\x34\xc2\xe0\x97\x46\x9d\x22\x2c\x8f\x48\xef\x20\x2c\x36\xa2\xe9\x1d\xde\x92\x1a\xe8\x7e\x3f\x8a\xac\xec\xc7\x38\x28\xb2\x0a\xf3\xaf\x52\x91\x61\xfd\x15\x9e\xf0\xa0\xfe\x4a\x9f\x64\x50\x7f\x65\xd8\x3d\xa8\xbf\x0a\xdd\x73\x08\x8f\x4c\x1f\x65\x72\xc4\x90\xa7\xfe\xca\x66\xe0\x83\xfa\xab\xe0\x04\xa0\xfe\x4a\xef\x65\x20\xab\x1e\x58\x92\x07\xb2\xea\xc1\x89\x43\x6d\x96\xf9\xbf\x41\x6d\x96\x9e\xd4\xa0\x36\xcb\x1a\xf4\x41\x6d\x56\x21\xbc\x1c\xd4\x66\xd9\xa4\x65\xc0\x3e\x94\x9f\x3a\x60\x1f\x0a\x28\x0c\xea\xaf\x2e\xcb\xc4\xa0\xfe\xea\x6e\xef\x87\x2c\x37\x4b\xeb\xa0\xfe\xea\x6e\xaf\x82\x22\x18\xec\x81\x41\xfd\xd5\x85\x86\x36\x60\x1f\x3e\x84\x89\x03\x8a\xe1\xe3\x7b\xa1\xfe\xea\x71\x8a\x51\x7f\xf5\xe0\xf1\x0d\xea\xaf\x1e\x96\xeb\x01\xc5\xd0\x5e\xd6\x03\x8a\x61\xc1\x8f\x1b\x50\x0c\x0b\xe9\x8f\x01\xc5\xd0\x2e\x0a\x83\xfa\xab\x92\xbc\x26\xe9\x1d\x6d\xc8\xa4\x77\x9c\x2a\x99\xf4\x8e\xd6\x66\xd2\x3b\xbf\xa7\x26\xbd\xb3\xbc\x3b\xe9\x1d\xdf\x52\x21\x7d\x45\xa8\x3b\x0a\xe9\x2b\x97\xc8\x42\xfa\xca\xc5\xb4\x90\xbe\x62\x43\x1f\x85\xf4\xd5\xf4\x2a\xa4\xaf\xb4\xbd\x90\xbe\xda\x9e\x23\x7d\xc5\x36\x36\x0a\xe9\x2b\xdf\x7c\x21\x7d\xe5\xa8\x2b\xda\xc7\x3b\x2b\xd8\x37\xbd\x1f\xf6\x1d\x9f\x65\x93\x5c\xf2\x39\x0f\x47\xfe\xf2\x8b\xdb\x7e\x13\x8e\xb8\xed\x37\x22\x89\xdb\xa2\x6f\x9e\xb8\x2d\x92\x61\x1c\x00\x65\xe6\x92\x07\x40\x99\x3a\x2b\x03\xa0\x2c\xe2\xab\x0d\x22\x3c\xf5\x52\x06\x11\x5e\xd2\x06\x22\xbc\xe4\xec\x20\xc2\xb3\xc9\xf0\x20\xc2\xb3\xc3\xf1\x20\xc2\xb3\x66\x74\x00\x94\x25\x67\x07\x8a\x7c\xf1\xf1\x7f\xa4\x85\xa6\x4f\x46\x5a\xc8\x39\x0d\x50\x66\xa9\xd6\x00\x28\x4b\xce\x2a\xc0\xb0\xe4\x42\xd4\x4c\x6d\x79\x44\x6a\xcb\xb5\x00\x30\xcc\x36\xc6\x03\x30\xcc\x1e\x38\xa3\x99\xda\xf2\x1c\x36\x6c\xcf\x61\x83\xa3\x1c\x30\xac\xba\x44\xd2\x3c\xaa\x3a\xfb\x69\x1e\xa5\x97\x3c\x68\x1e\x55\x7d\xd7\x34\x8f\xaa\x6e\x7f\x34\x8f\xaa\x2e\x7c\x34\x8f\xd2\xdb\x1d\x34\x8f\xd2\x63\x1f\x50\x0c\x6d\x4b\x36\xa0\x18\xea\x4f\x0f\x28\x86\x76\x15\x19\x50\x0c\xab\x0b\x2d\xcd\xa3\x6a\xf7\xdc\x67\x83\x22\xb0\x43\xfa\xa1\x6f\x5e\xfa\x21\x64\x89\x01\xfd\xb0\x03\x2e\x0e\xe8\x87\xff\xf9\x8f\x7f\x2c\xc9\x30\x13\x3b\x7e\xf1\x80\x99\x38\xc0\x0f\x07\xcc\x44\x85\xd4\x07\xcc\x44\x3b\x9d\x0d\x98\x89\xdd\x3d\x14\x66\xa2\x3d\x9b\x07\xcc\x44\xab\x5d\x86\xcd\xa3\x08\x9c\x06\xcd\xa3\x3a\xa8\xe7\xa0\x79\x54\xc7\xbf\x1d\x34\x8f\xea\xee\xc4\x34\x8f\xb2\x5f\xda\xa0\x79\x54\xc7\x6f\x1c\x34\x8f\xb2\xd7\xf3\x18\x98\xae\x57\x30\x30\x1d\xbc\x79\x4c\xec\xa3\xe0\x71\x4c\xb2\x5e\xbe\xce\x89\x7d\xf8\xda\x63\x82\xb5\xbb\x91\x20\xab\x6e\xd9\xf2\x40\x56\x5d\xdf\x7e\x20\xab\xbe\xb6\xbf\x24\xf5\xa3\x77\x86\xac\xfa\x72\x81\x46\x56\x7d\xb9\x9c\x21\xab\xbe\xb4\x88\xda\x2c\x3d\xef\x41\x6d\xd6\xd2\xe3\xa3\x36\x6b\xb9\x28\x52\x9b\xa5\xaf\x3d\xa8\xcd\xb2\xf5\xec\xa0\x36\x6b\x39\xc5\xa8\xbf\xd2\xd7\x1e\x48\xa7\x2f\x32\x77\x03\xe9\x74\xe3\x8c\x01\xc5\x70\x91\x6f\x1c\x4a\xa7\x6f\xff\x87\x0d\xfa\x55\x4a\xa7\xeb\x49\x29\x88\xae\x37\x01\x71\xf0\xc0\xf0\x18\x10\x07\x8f\x13\x0e\xe2\xe0\x71\x8a\x41\x1c\x3c\x4e\x62\x88\x83\xc7\x69\x04\x71\xf0\xe8\xd9\x40\x1c\x3c\x4e\x0e\x88\x83\x96\x13\x0c\x88\x83\x97\xc4\xcc\x80\x38\x28\x01\x69\x40\x1c\xb4\x77\xf6\x20\xfe\x7a\xa2\xff\x23\xbd\xe3\x16\x47\xfc\xf5\x64\x9f\x8c\xf4\x8e\x4b\x08\xf1\x97\x05\x20\x83\xf8\xeb\x49\x3e\x0b\xe9\x1d\x27\x1c\xf1\xd7\x43\x9e\x72\x10\x7f\x3d\x2e\xf3\xc4\x5f\x0f\xaa\x0f\x83\xf8\xcb\xda\xd6\x41\xfc\xf5\xc0\x36\x19\xc4\x5f\x8f\xfe\x26\xf1\xd7\x03\x73\x69\x1c\xd3\x57\x3c\x27\xf1\xd7\xe3\xb6\x42\xfc\x65\x55\xdc\x20\xfe\x7a\xc8\xe9\x0f\xe2\x2f\x7b\x58\x0e\x89\x83\x8e\x09\x88\x83\xbf\xc5\x1b\xe2\x60\x24\x51\x32\x24\x0e\x3a\x8f\x20\x0e\x46\xb8\x19\x03\xe2\x60\x24\xc1\x32\x24\x0e\x1e\xff\x47\x8a\xca\x11\x02\x71\x30\xc2\x7f\x1f\x10\x07\x23\x09\xb2\x61\xc9\x95\x23\x0b\xe2\x60\x70\x65\x80\x38\x18\x5d\x7b\x20\x07\x06\xd7\x17\xc8\x81\x36\xda\x18\x90\x03\x03\xde\xf5\x84\x1c\x68\xf7\xc9\x09\x39\x30\xc3\x16\x9a\x90\x03\xed\xc0\x33\x21\x07\x2a\x1a\x3c\x21\x07\x66\x80\xc7\x09\x39\xb0\xc0\x83\x9e\x90\x03\x4b\xf0\x2a\xa4\xa1\x48\x5b\xce\x87\x34\x14\x1e\xfb\x7c\x10\x73\x20\xc9\x37\x1f\xd2\x50\xc1\xab\x90\x86\x0a\xfe\x8f\x34\x54\xfc\x8b\x71\x31\x1f\x32\x54\x41\xf3\x0e\x7f\xf3\xa1\xcd\x50\x7d\x9f\x6f\xbe\x64\xa8\xc8\x99\xce\x97\x0c\x15\x83\x7c\x7e\xe1\x57\x29\x4c\x95\x89\x56\x85\x55\x7f\x13\xad\x0a\xe5\xf2\x26\x5a\x15\xaa\x04\x4f\xb4\x2a\x54\x10\x9e\x68\x55\x28\x7b\x32\xd5\xaa\xc0\xaf\x9a\x68\x55\x18\x7e\xcd\x97\x2c\xd4\xf6\x88\x2c\x14\x7e\xce\x7c\xc9\x42\xe1\x23\xcc\x97\x2c\x14\xbe\xe1\x0c\x64\xa1\x18\x4a\x93\x6a\xac\xca\xf6\x30\x03\x59\x28\x96\xa5\x19\xc8\x42\x4d\xff\x47\x16\x0a\x7f\x73\x06\xec\xc3\xc7\x9b\x41\xfb\xb8\x5f\xc0\x3e\x86\xd9\x0c\xd8\xc7\x86\x37\x03\xf6\x1d\xff\x87\x7d\xf8\x63\x33\x60\x1f\x3e\xde\x0c\xd8\xb7\xfc\x1f\xf6\x1d\xef\x80\x7d\x0e\xc1\x80\x7d\xf8\xb7\x33\x62\x1f\x9b\xe1\x8c\xd8\xc7\x22\x3c\x23\xf6\xb1\x01\xcd\x88\x7d\xcb\x5f\x62\x1f\x9e\xd4\x8c\xd8\x77\xfc\x1f\xf6\xb1\x91\xcc\xa8\x7d\x7c\xb1\xa8\x0d\x58\x14\xb1\xe1\x78\x4e\x1b\xfc\x1f\x8c\x12\x90\x81\xf9\xc5\x4a\x65\x36\x9f\xfa\x72\xc4\x77\x48\x34\x47\xc0\x73\x9b\x89\xe6\x08\xdb\x23\x9b\x23\x70\x15\xab\xb8\xd8\x7c\xe7\x07\x7f\x15\xbb\x9f\xcc\x64\x3a\xc9\x6b\x36\xce\x61\xfb\x17\x2b\x95\x0d\x57\x7d\x7e\xb1\x52\xd9\x44\x1d\xf3\x8b\x95\x8a\x12\xb4\xf3\x8b\x95\x8a\x3d\x54\xe6\x17\x2b\x15\x85\x94\x66\x32\x9d\xe4\xd1\xe5\x7f\xbc\x89\x2f\x56\x2a\x9b\xcc\xf2\xfc\x62\xa5\xb2\xc1\x25\xe6\x17\x2b\x95\xed\x1c\xfb\x62\xa5\xb2\x5f\x8f\x12\x47\xcc\x9c\x2f\x56\x2a\x9b\x45\x6a\x66\xec\x73\x36\x66\xec\x63\x29\x9f\x19\xfb\x1e\xff\xa7\x7d\xbc\x89\xac\x7d\x8c\x9e\x8c\x7d\x8f\xcf\x89\x7d\x2c\x9f\x33\x63\x5f\xf2\x7e\x87\x73\xfe\x0f\xfb\xd8\x8a\x67\xc1\x3e\xb0\x8e\x59\xb0\x8f\x5c\xf9\x2c\xd8\xe7\x42\x54\xb0\x8f\xfc\xfb\x2c\xda\xe7\x55\x48\x97\x39\x53\x8b\xe9\x32\x9e\xa5\x90\x2e\xc3\xf3\x9e\x85\x74\x19\x00\xe2\x2c\xa4\xcb\xa6\x57\x81\x3f\x3d\x3c\x87\x6e\xcd\xf0\x7e\xa4\xc4\x5c\xa0\x2b\x69\x2f\x72\xe5\xb3\x92\xf6\x22\x0a\x98\x95\xb4\x17\x8c\xa0\x59\x49\x7b\xb1\xa9\xcd\x0a\xb3\x07\x27\x68\x56\x98\x3d\xae\x1a\x15\x66\x0f\x49\xa9\x59\x61\xf6\xb8\xbe\x54\x98\x3d\xae\x28\x88\x4e\x7c\xad\x91\xff\xbd\x24\xab\x47\xe1\xf4\x53\x8f\xc2\x45\x03\x3d\x8a\x48\x66\x72\xa2\x47\x11\x9d\xc4\xe8\x51\x44\x17\x14\xf4\x28\xd4\xc1\x9a\xe8\x51\x44\x97\x41\xf4\x28\xac\xcd\x9a\xe8\x51\x44\x27\x1c\x7a\x14\xd1\x85\xaf\x91\xf1\x23\xcc\x9f\x8d\x8c\x9f\xe6\x35\x32\x7e\xee\x69\x8d\x8c\x1f\x7e\xe3\x6c\x64\xfc\xfc\x7c\x88\xfc\xa9\xd0\x35\x11\xf9\x8b\x2e\x4b\x88\xfc\xc5\xe9\x73\x62\x9f\x8b\x46\x33\xe3\x87\x7d\xcd\x06\x8c\x5c\x13\x91\xbf\xec\x96\x83\x90\x5f\x26\xd9\x33\x11\xf2\xfb\xed\xbd\x08\xf9\xd9\x4b\x77\x22\xe4\x67\x43\xd2\x89\x90\x5f\x75\xe8\xa2\xc1\x27\xd0\x32\xd5\xe0\x73\x61\x57\x83\x4f\x3f\x00\x0d\xbe\xe2\x32\x88\xce\x5e\x83\xe1\x3b\xbf\x68\xa5\xaa\x27\x37\xd1\xd9\x6b\x0e\x79\x74\xf6\x9a\x13\x0e\x9d\xbd\x86\xd7\x33\xd1\xd9\x6b\x4e\x15\x74\xf6\x9a\x13\x15\x9d\xbd\xf6\x7a\x34\xc9\x1b\x7a\xf7\xc5\x11\x6f\xe9\x8b\x56\x6a\x87\xc8\x37\xd1\xe0\x93\x21\x30\x87\xf9\x46\x6c\xa7\x8e\xca\x3e\xd0\x73\x9a\x6f\x64\x79\xb1\x8e\x0a\x3f\x6e\x4e\x3a\x80\xb8\x08\x4f\x84\x9b\xdc\x9c\xbe\x68\xa5\xda\x80\x67\x4e\x3a\x80\x54\xcf\xd1\x01\x84\xec\xf1\x9c\x88\x33\x01\x08\xcd\x2f\x96\xa8\xbf\x85\xe8\x03\x84\xea\x6f\x09\xf9\x00\xa1\xfa\x5b\xce\x20\xdd\xc9\xa2\x9f\x90\xee\x6e\xf7\x1c\x5a\xc3\x00\x50\x13\xd2\xdd\x75\xd4\xa1\x9e\xf7\xb8\x80\x2d\x32\x9a\x40\xa2\x13\xf5\x3c\x3d\xf6\x89\x7a\xde\xe3\xb6\x82\x7a\xde\xe3\x48\x46\x3d\xef\x71\x93\x41\x3d\xef\xd1\x22\xd4\xf3\x1e\xe7\x18\xea\x79\x8f\xf3\x4f\x2d\x07\xa2\xb8\xa9\x96\x83\xf3\x0f\x2d\x87\xc7\x39\x8d\x96\xc3\x43\x3a\x69\xa2\xe5\xf0\xe8\x04\xa1\xe5\xf0\xb8\xf4\x48\xc8\xf3\x8b\x49\xc8\x5b\xfe\x0f\xfb\xfc\x62\x12\xf2\x88\x0c\xa7\x84\x3c\x57\x14\x09\x79\x7e\x69\x08\x79\xea\x66\x4c\x09\x79\xfa\xa2\x12\xf2\x48\x39\x4c\x09\x79\x3e\xa7\x84\x3c\x62\xdd\x29\x21\xef\x7a\x2e\x91\xb4\xe1\xee\x87\x8c\xad\x4b\xe4\x17\x75\x34\x3d\xef\x09\x59\x2f\x68\x11\x64\xbd\xe8\xd6\x08\x59\xef\xb7\x98\x1e\xd2\xb2\x8e\xc1\x43\x5a\xf6\xfa\x64\xa4\x65\x5d\x27\x0e\x69\xd9\xa3\x0d\xa4\x65\x75\x3f\x0f\xf6\x11\x75\xcc\x2f\x22\x69\x5f\xbc\xf0\xef\x25\xf9\x62\xba\x93\xff\x6a\x3a\x8f\x72\x35\x1d\x83\x2e\xc9\x6a\x7d\xa0\xab\xe9\x3c\xe6\x25\x23\xed\x50\xba\x98\xee\x12\x72\xc9\x48\x93\x64\x98\x57\xd3\xf9\x44\x5f\xb0\xd2\x0a\x34\xbb\x79\x51\x04\xab\x5e\x13\x45\x30\x32\x77\xf3\xa2\x08\xe6\x2e\xf6\x05\x32\xad\xb9\xfb\x7d\x81\x4c\x53\xc3\x77\x7d\x81\x4c\x53\xc4\x66\x7d\x81\x4c\x6b\x40\x4e\xeb\x0b\x64\x5a\x83\x7f\xbb\x1e\xd4\xc2\xc8\xa7\xae\x2f\x90\x69\x03\xcf\x66\x7d\x81\x4c\x1b\x8f\x57\xf9\xec\x53\xc8\x6f\xa1\x0f\x21\xc9\x7c\xa1\x0f\x21\x1d\x7d\xa1\x0f\x21\x71\x7d\xa1\x0f\x71\x79\x2f\x4b\x7d\x88\xeb\x2f\xe1\x61\x42\x16\x5a\xe8\x43\x3c\x6c\x39\x0b\x7d\x08\xa7\xc3\x42\x1f\xc2\x29\xb6\x5e\xb3\xd5\xdc\x01\x7d\x08\xa7\xf4\x42\x1f\xe2\x61\x93\x59\x2f\xd9\x6a\x26\xf1\x7a\x69\x22\x49\xde\x77\xa1\x1d\xf1\x6a\xfb\x4b\xb6\x3a\x7b\x8e\x6c\x35\xa5\x29\x0b\x5d\x89\x42\xc5\xd5\x42\x57\xa2\x64\xff\x37\xf8\x25\x6f\x17\x5d\x89\xe2\x77\x80\xe4\x27\x87\x64\x41\xf2\x7b\x1e\x6d\x38\x1c\xf9\xd4\x97\x5f\x72\x4d\x48\x7e\xf2\x4b\x16\x24\x3f\xd5\xfa\x16\x24\x3f\x35\x75\x97\x95\x53\x0c\xf9\x65\xe5\x14\x13\x67\x41\xf2\x93\xdd\xb2\x20\xf9\xb9\x28\x2e\x48\x7e\xf2\x59\x16\x44\x3e\x59\x31\x0b\x22\x9f\x6c\x93\x05\x91\xef\x09\xde\x1d\x1b\x82\xbf\xc4\x86\xe8\xdd\xb1\x01\x06\xec\x82\xc8\xf7\x40\x85\x5c\x10\xf9\x1e\x36\xc3\x05\x91\xef\x85\x9d\xbe\x2c\x81\x62\x21\x5a\x96\x40\x01\xc8\x2e\x88\x7c\xf6\x5a\x5f\x90\xf5\xec\x26\xbd\x20\xeb\xd9\x31\x7a\x41\xd6\xb3\x8e\x71\x41\xd6\x0b\xbf\x3b\x2c\x8e\x78\x9f\x94\x40\x05\x18\xf6\x8b\x12\x28\x6b\x1c\x17\x64\xbd\xc0\xf2\xb9\x20\xeb\x99\xb8\x58\xc9\xcc\xb9\x47\xdf\x73\x66\x02\xf4\x65\x09\xd4\xf1\x2a\xdf\xbb\xce\xbe\x4f\xc8\x7a\xf9\xf5\x1c\x59\xe7\xe3\x39\xb2\xce\xac\x0c\xcb\x12\x28\x56\x94\x05\x59\x2f\x13\x3d\x2c\x4b\xa0\x58\xca\x17\x64\xbd\xec\x4c\x85\xac\x97\xd9\x60\x17\x64\xbd\xc4\xd2\xba\x20\xeb\x65\xa2\x8e\x05\x59\x2f\x3b\x06\x21\xeb\xd9\xa5\x6f\x41\xd6\xcb\x38\x48\x0b\xb2\x5e\xba\x5e\x85\xcc\xb9\xb3\x18\x42\x5e\xf6\xbd\x40\xc8\xcb\x6c\xf6\x0b\x42\x5e\x7e\xfc\x1f\xc4\x48\x9c\xd8\x05\xe9\xae\xc5\xf0\xc7\x92\xbc\xe0\xe3\x55\x27\x3f\x7c\x3c\x5b\x18\x2d\xf8\x78\xa6\x15\x16\x7c\x3c\xc3\xe0\x05\x1f\xcf\x3e\x0d\x0b\x3e\x5e\x25\xf9\xbf\xe0\xe3\x55\x7c\xd1\x05\x1f\xaf\x4e\xff\x47\x52\xdd\xa5\x07\xd2\x9d\x1a\xcc\x0b\xd2\x5d\x65\xaf\x5f\x90\xee\x0c\xe5\x17\xa4\x3b\x93\x21\xab\x98\x54\xe7\xb5\x28\xac\xe7\xc2\x00\x78\xa3\xee\xea\x02\xbc\x51\x93\x75\x01\xd0\x0c\x72\x52\x0b\x80\x66\xe0\x45\x2e\x00\x9a\xe1\x50\x02\xa0\x19\x7e\x22\x00\x9a\xe1\xf2\x02\x40\x33\x9c\xee\x55\xce\x24\xb6\x03\xd0\xcc\xe1\x55\xe0\x4c\x02\xd7\x2c\x65\xc7\x87\xbf\x24\x7b\xec\xc7\xa4\x92\x49\x18\x72\x01\xd0\x58\xda\xba\x00\x68\x16\xfb\xf2\x02\xa0\x59\x0e\x4f\x00\x1a\x39\x32\x8b\x4a\xa6\xe5\x30\xa3\x92\x69\xe1\x79\x2f\xc0\x1b\xc3\xe0\x05\x78\x23\xdf\x63\x01\xde\x9c\xe0\x11\x95\x5a\xa4\x00\x16\xe0\xcd\x19\x1e\x75\x8e\xbc\xdf\xe0\x88\xb7\x04\x78\x73\xb4\xcf\x4a\x26\xdf\x52\xa3\x52\xcb\xa5\xb5\x51\xa9\xe5\xb6\x29\x05\x8f\xf2\x9a\x25\x05\xcf\x05\x05\x0a\xde\xe3\x2f\xa1\xe0\x3d\x6c\xc5\x0b\x0a\xde\x43\x7e\x7a\x41\xc1\xb3\x01\xc2\x82\x82\x67\xcb\xa4\x05\x05\xcf\x52\x8a\x05\x05\xef\x69\x5e\x85\x1c\x6d\xf7\xee\xe4\x68\xe1\x90\x2c\x28\x78\x16\x6b\x2c\x28\x78\x16\xe4\x2e\x28\x78\x4f\xf7\xc9\xc8\x41\x37\x8f\xc8\x41\xc3\xa9\x5f\x50\xf0\x1e\xe8\x64\x4b\x0a\x9e\xe3\x13\x0a\x9e\xac\xf6\x05\x05\x4f\x2f\x6b\x41\xc1\xb3\xdf\xf1\x82\x82\x17\x1d\x21\x50\xf0\xa2\xdb\x0a\x34\x3b\xfb\x32\x2f\x68\x76\x91\x0c\xea\x82\x66\xa7\x06\xf3\x82\x66\x17\xa3\x77\x5f\xfc\x12\x8b\xa0\xd9\xd9\xe8\x69\x41\xb3\x93\x45\xbf\xa0\xd9\x45\x47\x08\x34\xbb\xe8\x77\x80\x66\x17\x49\x12\x2d\x68\x76\x91\x38\x63\x41\xb3\xb3\x7d\xd3\x9a\xda\xe0\x55\xb4\x81\x37\x0f\xcd\x2e\x92\x9b\x5f\xd0\xec\xec\x26\xbd\xa0\xd9\xd9\x12\x6a\x41\xb3\x8b\x3a\x09\xd0\xec\x62\xf4\x7e\xd8\x97\xbd\x8a\xf6\xf1\x06\xa7\xf6\xf9\x4b\x68\x84\x5a\x0b\xcd\x2e\xfb\x1d\xa0\xd9\xd9\x58\x6a\x41\xa5\xcb\x44\x24\x0b\x2a\xdd\xcf\x0d\x81\x4a\xa7\xc2\xfc\x42\x21\xaf\x68\x03\x0a\x79\x3f\x67\x06\x2a\xdd\xa7\x1f\xf9\xef\x25\x19\x96\x5d\x73\x37\x82\x65\xd7\x00\x29\x16\x4c\x3a\x95\x93\x16\x74\xb9\xe6\xe7\x83\x2e\x67\xe7\x89\x05\x5d\xae\xb9\xf0\x41\x97\x53\x49\x6c\x41\x97\x6b\xfa\x1d\xd0\xe5\x9a\xbe\x05\x74\xb9\x16\xbc\x66\xe5\x88\x4f\x04\x5d\xae\xe9\x77\x00\xd7\xfc\x3c\x61\xe0\x9a\x46\x50\xbc\x80\x6b\x9a\x43\x02\xb8\xa6\xbd\x5e\x65\x73\xc4\xeb\x04\xae\x69\xaf\xbf\xc4\x3e\xf7\x7a\xe0\x9a\xe6\x42\x04\x5c\xd3\x48\x55\x2c\xe0\x1a\xbb\x6e\xac\xa3\x7d\xbc\x33\xe0\x9a\x06\x87\x71\x01\xd7\x34\xfd\x2a\x9b\x2b\x39\x71\x80\x6b\xa6\x16\x01\xd7\x4c\xad\x05\xae\x51\xf4\x68\x01\xd7\x4c\x2d\x02\xae\x99\xc5\x5f\x12\x18\x92\x87\x5d\xd0\xe5\xa6\x0b\x11\x50\xce\x3c\x5a\x44\x8e\xd6\xc9\x68\x03\x5b\x42\xba\x65\x03\x5b\x3d\x7d\x1b\xd8\xea\xe7\x5c\x73\xb4\x0c\x2c\xa0\x1c\xb5\x31\x16\x50\xce\x26\x21\xb0\x80\x6b\x36\xfc\xd4\x05\x5c\xa3\x66\xf0\x02\xae\x51\x30\x7c\xa1\xf3\xb0\x5d\x14\xd1\x79\xd8\x4e\x5b\xa0\x9c\xad\xaf\x06\x94\xb3\xb5\x16\x28\x67\xc3\x9f\xd9\x40\x39\x9b\x44\xc2\x06\xca\xd9\x24\x12\x36\x50\xce\x3e\xfe\x92\x1c\x66\xf5\x88\x1c\x26\xd0\xdf\x06\xca\xd9\x40\x78\x1b\x28\x67\xb3\xe8\x6f\xa0\x1c\xbb\x83\x6c\xa0\x9c\xdd\x3d\x87\x7d\xd5\x73\xd8\x47\x14\xb7\x81\x72\x76\xf6\x7e\xd8\xc7\x37\xda\xe0\x35\x1b\xdc\x7f\x83\xd7\xec\xe0\x2f\xb5\x8f\x73\xe0\x35\x9b\xea\xcb\x0d\x5e\xb3\x49\xcc\x6c\xf0\x9a\xcd\x26\xb3\x5f\xec\x23\xff\xbe\x5f\x73\xb4\xd8\x07\x96\xb3\xd9\x56\x36\x58\xce\xae\x5e\x13\xfb\xe0\xe6\xee\xd7\xef\x97\x39\xc2\xbe\xee\x1d\xc8\xd1\x92\xd4\xd8\xd0\xe5\x9e\xed\x35\xd1\x1d\x27\xa5\xb2\xd5\x1d\xdf\x5e\x13\xdd\xf1\xe5\xfd\x68\x21\xc1\x16\xb0\xa1\xcb\x3d\x8c\xb3\x0d\x5d\xce\x84\xc7\x56\x59\x6f\x7b\x0e\xca\x26\xe0\xf7\x86\x2e\x67\x42\x67\x43\x97\x7b\x88\xf7\x36\x74\x39\x53\x23\x3b\xf8\xd4\x83\x23\x9e\x7a\x79\x15\x9e\x9a\x78\x76\xd3\x96\x36\x24\xef\x47\xd6\x19\xb2\xde\xa6\x2d\xad\x55\xc5\x1b\xa5\xf1\xc0\x28\xdf\x28\x8d\x9b\x0c\xd9\x28\x8d\x9b\x11\xd8\x28\x8d\x9b\xe2\xd8\xb4\xa5\x35\xdd\xb2\x69\x4b\xfb\x65\x20\xfe\xb9\x24\x6f\x3a\xd6\x9a\x56\xd8\x74\xac\x35\x8d\xb1\xe9\x58\x1b\xc9\xb2\x6d\x3a\xd6\x46\x3f\x0a\x1d\x6b\x23\xb9\x9e\x4d\xc7\xda\x48\x09\xc6\xa6\x63\xad\x3d\x15\x36\x1d\x6b\x23\x1e\xf4\xa6\x63\x6d\x3c\x1a\x4b\x46\x9a\x85\x61\xd3\xb1\x36\xc2\xaa\xd8\x74\xac\x8d\x0e\x09\x3a\xd6\x46\x3f\x18\x1d\x6b\x23\x90\xd3\x46\x9e\x2f\xfa\x89\x90\xe7\x8b\x0e\x10\xe4\xf9\xa2\x9f\x28\x61\x03\xcb\xd2\xfe\x42\x9e\x9a\xc9\x65\xed\x84\x78\x0a\x28\xf9\xce\x64\x8f\x9d\x62\x19\x2e\x29\x80\xc2\x46\x2f\x2f\xe3\xb1\x6f\xf4\xf2\x2c\x27\xd8\x99\xcc\x32\xd9\xe3\xfd\x01\x34\x35\x2f\xff\x47\xe7\xb8\xe9\x35\x2b\x47\xbc\xa5\x2f\x1c\xaa\xf6\x1a\xdb\xe8\xe5\x95\xe6\xd1\x20\x23\xcd\x7b\xc9\xe4\xa0\xd9\x72\x76\x86\x4b\xfa\x7a\x77\xb8\xa4\xaf\xf7\x83\x4b\x4a\x42\x60\x7f\xf1\x50\xad\x6c\x4e\xbb\xa0\x46\x8d\x78\xca\xfe\xe2\xa1\x5a\x09\xf0\xf6\x17\x0f\xd5\x4a\x2c\xb1\x01\x61\x6a\xf0\x7f\x85\x23\xbe\x1f\x20\x4c\xfb\x5d\x85\xfc\x34\x1b\xd0\x06\x84\x69\xbf\xff\x91\x9f\x8e\x5e\x73\x72\x8e\x37\xf1\xc5\x3c\xd5\xcd\x70\x03\xd0\xb8\x19\x6e\x00\x1a\x37\xed\xfd\xc5\x3c\x55\xdd\xea\xfd\x11\xd6\x6a\xc3\x73\xdb\x80\x37\x0d\xbf\x6a\x03\xde\x34\x14\x28\x36\xe0\x8d\x4e\xc2\x06\xbc\xe9\x78\x6e\x1b\xf0\xa6\xfb\xdd\x01\x6f\x3a\xae\xc6\x06\xbc\x51\x28\x74\x03\xde\x48\x71\xda\x80\x37\xca\xbf\x6f\xc0\x1b\xe5\xdf\x37\x28\x8c\xac\x9f\x0d\x0a\x23\xab\x69\x83\xc2\xc8\xf3\xd9\xa0\x30\x9d\x74\xe0\x06\x85\xe9\x8e\x79\x50\x98\xee\xb2\xd4\xcc\xb1\xfb\x3f\x38\xbd\x6e\x32\xcd\x1c\x3b\x6f\x02\x14\x66\x80\x01\x6d\x90\x96\xe1\x58\x02\x69\x19\x78\xf3\x1b\xa4\x65\x90\xd7\xde\x20\x2d\x8a\xc7\x6e\x90\x16\xd5\xd2\x37\x48\xcb\x74\x2c\x81\xb4\x4c\x52\x00\x1b\xa4\x65\x12\x6d\x6e\xda\x29\x4d\x12\x09\x9b\x76\x4a\x2a\x2b\x6f\x50\x18\x5b\xf2\x6e\x50\x98\x09\x9e\xb1\x41\x61\xa6\xe3\x13\x14\x46\xa1\x80\x0d\x0a\xb3\xdc\x8a\x69\xa7\x64\x3d\xc1\xa6\x9d\xd2\x82\x2e\xb7\x69\xa7\xa4\x9e\xc8\x06\xaf\x51\x79\x64\x83\xd7\x2c\xdf\x0b\x78\xcd\x7e\x7d\x96\xc3\x91\xbf\xbc\x1c\x71\xbf\x21\x12\xc1\x2f\xc1\x72\x04\x4f\x37\x3d\x93\x7e\x9b\xe1\x17\xd7\x54\x75\xce\x37\x38\x8f\x30\xf2\x06\xe7\xf9\xa0\xe2\x7f\x2f\xc9\x40\x40\x62\xae\x1b\x08\x68\x43\x59\xd9\x40\x40\x0a\x6a\x6f\x20\x20\x65\x80\x36\x10\xd0\xd5\xd3\x00\x02\xba\xfa\x16\x40\x40\xb6\x20\xdd\x40\x40\xd7\x21\x0f\x04\x74\xbb\x26\xb0\x87\xe2\x3b\x6d\xdb\x30\x01\xcc\x6d\xdb\x30\x2d\xcf\xa1\x21\xe5\xe2\xa6\x94\x9e\x2f\x82\x36\x4c\xf6\x0a\xd9\xb4\x61\x92\xf0\xb4\x69\xc3\xf4\xb8\x8b\xd1\x86\xe9\xb9\x5e\x13\x00\xe3\xfa\x4b\x00\x0c\x32\x93\x9b\x16\x4d\xaf\xdb\x11\x2d\x9a\x1e\xb7\x2a\x5a\x34\xbd\xee\x93\xb4\x68\x0a\xbf\x5f\x4a\x39\xe7\x7d\x4e\x01\x0c\xae\x49\x8b\x26\x83\xb1\x4d\x8b\x26\xc3\xb6\x4d\x8b\xa6\x88\xdf\xbf\x69\xd1\x14\x09\x6e\x37\x2d\x9a\x0c\xd4\x36\x2d\x9a\xe2\xef\x9a\x00\x18\x84\xb3\x1b\x90\x29\xc2\x17\xd8\xb4\x68\x32\xbc\xdc\x1f\x99\xad\xc5\xe0\x2f\x07\x77\xe0\xdb\x02\x40\xa9\x9e\xb7\x01\xa0\xa2\xfe\x03\x00\x54\x24\x3e\xd9\x00\x50\xd1\x2d\x00\x00\x2a\xba\xf0\x6d\x01\x0c\x06\x2b\x00\x94\x81\xef\xde\xda\x87\xb5\x5b\xfb\x78\x16\x00\xa8\x08\xd9\x6b\x6f\xed\xe3\xed\x02\x40\x45\xb2\xc0\x1b\x00\x2a\xfa\x76\x01\xa0\x0c\xa6\x37\x00\x94\x81\xef\x06\x80\x8a\x40\x8d\x1b\x00\x4a\x29\xcb\x0d\x00\x15\x5d\x5a\x01\xa0\xa2\x53\x13\x00\xca\x84\xc0\x06\x80\x32\xb0\xdf\x00\x50\xd1\xed\x08\x00\xca\x30\x78\x03\x40\x99\x63\xdf\x00\x50\x36\x63\xdd\x00\x50\x65\x78\x04\x6f\x7e\xf8\x3f\x9a\x2a\x38\x1f\x00\xa0\x8a\x4b\x08\x00\x54\x71\x21\x02\x80\x2a\x64\x73\x37\x00\x54\x71\x69\x05\x80\x2a\x7a\xf3\xc4\x51\xc5\xe5\x1a\x00\xaa\xe8\x79\x03\x40\x15\x18\xb7\x1b\x00\xaa\xb8\x48\x01\x40\xd9\xf9\x6f\x83\x32\x15\x78\xbb\x1b\x94\xa9\xc0\x6b\xd8\xa0\x4c\x85\xf4\xdc\x06\x65\xb2\x71\xf1\x06\x65\x2a\xc6\x04\xa0\x4c\x85\xa4\xcd\x06\x65\x2a\x24\x89\xf6\xd5\x3e\xbe\xf4\xd5\x3e\x46\x01\x48\x52\x2b\xfe\x12\xb4\x08\x2c\xe7\x88\x16\x11\x2f\x1c\xd1\x22\x4a\xe0\x8f\x68\x11\xd1\xd1\x01\x2d\x52\x89\xfb\x80\x16\x35\xa2\x87\x03\x5a\xd4\x88\x41\x0e\x68\x51\x03\xc7\x3a\xa0\x45\x8d\x08\xe8\x80\x16\x8d\xd7\xbb\x7f\xcf\x69\x91\xf6\x01\x2d\x52\xa5\xfb\x7c\xb1\x52\x53\xad\xe5\x7c\xb1\x52\xb3\x64\xfb\x7c\xb1\x52\xfb\xca\xab\xff\xb9\x24\x9f\x87\x0e\x69\x38\xe5\xe7\x41\xfc\x1a\xf7\xfd\x7c\x61\x54\xdb\xf0\x21\xce\x17\x46\xb5\x0d\x65\xe5\xbc\xf4\xbd\xc0\xc7\x3b\xc8\xec\x1d\x02\x99\x83\xcc\xde\xc1\x9f\x3e\xc8\xec\xd9\xef\xf8\x20\xb3\x27\x24\x73\x00\x92\x1e\xc4\x1d\x0f\x32\x7b\x97\x2c\xe9\x41\x66\x4f\xc5\xa5\xa3\xcc\x1e\x7b\xf6\xa1\x27\xee\x85\xec\x75\xe8\x89\x7b\xaf\xcf\x02\x50\xb6\x3d\x02\x28\xc3\x5f\x39\xc8\xec\x89\x3e\x1f\x64\xf6\x1e\x48\x2a\x27\x00\x86\xe1\xe9\x9f\x40\xe9\x06\xfe\xc3\xf9\x42\xa5\xfe\xe0\x95\x9f\x2f\x54\xea\x06\x5c\x27\x60\x03\x9e\xcd\xf9\x68\x6f\xfd\x21\x59\x70\x3e\xda\x5b\x7f\xb3\x77\x47\x01\x7a\x7b\x87\xef\x39\x95\x94\x3f\x81\x9e\x03\x78\xf3\x27\x20\x15\xc8\x66\x78\x10\x21\x37\x5f\x75\x10\x21\xb7\xfd\xd6\x41\x84\xbc\x69\x11\x22\xe4\x43\x8b\x10\x21\x37\x51\x72\x22\xca\xbc\x0e\x56\x54\x1f\x1e\x82\xf0\x83\xea\xc3\x03\x08\x7a\x00\x92\x1e\x36\xdf\x03\x90\x24\x53\xf7\x00\x24\x3d\xc5\xff\x01\x86\x65\xef\x0e\x18\xc6\x02\x76\x50\x7d\x30\x43\x7c\x50\x7d\x90\xfd\x7b\x00\x99\x1e\x96\xb3\x03\xc8\xf4\xb0\x5c\x1f\x40\x26\xf3\xc5\x07\x90\x49\x86\xef\x01\x64\x7a\xc8\xe3\x1d\x40\xa6\x87\x84\xc7\x01\x64\xb2\x11\xe6\x01\x64\x92\x51\x7c\x00\x99\xe4\xfb\x9e\xa4\x7d\x9d\x23\xec\x2b\xde\x41\x1b\x18\x3d\x00\x49\x72\x88\x0f\x40\x92\x7c\xdf\x03\x90\xf4\x00\x38\x1f\x80\xa4\xc7\xa9\x09\x90\x64\x67\x8d\x03\x90\x64\x63\xdf\x03\x90\x14\xbc\x1f\x40\x52\x60\xe9\x39\xa8\x3e\x48\xd3\x3a\xa8\x3e\x48\xc5\x3a\x80\x4c\xb2\x00\x0e\x20\x53\x70\x8e\x01\x32\xb9\xbd\x1f\x40\xa6\xd8\xbd\x0a\x60\x58\xf4\x08\x30\xcc\x77\x0d\x92\x94\x1d\x9f\x20\x49\x99\x74\xd9\x01\x49\x52\x72\xf3\x80\x24\x65\x2d\x02\x49\xca\xbe\x79\x90\xa4\x4c\x26\xfb\x80\x24\x65\xe2\xa1\x03\x92\x94\xa3\x77\x00\xec\xcb\xfe\x0f\xa0\xcc\x6f\x54\x04\xca\x78\x4e\x90\xa4\x1c\xfd\x25\x60\x5f\xf1\x97\x8b\xff\xf1\x5e\x8a\xf6\xf1\x35\x8b\xf6\x31\xb2\x40\x92\xb2\xef\xa5\x6a\x1f\x6f\x9e\x32\xa0\xec\xb7\x05\x65\xca\x8e\x5d\x50\x26\xd9\x50\x07\x94\xa9\x02\x46\x1f\x50\x26\x6b\x1c\x0f\x28\x93\xa9\xd0\x03\xca\x54\x9d\xd3\xa0\x4c\x12\x62\x4f\x15\x29\xfb\x8b\x71\x71\x00\xa0\xea\xf5\x92\x54\xa6\x3c\x3e\x26\xd5\x35\x47\x83\xc0\x0f\xaf\x47\xe0\x87\x78\x44\x07\x00\x4a\xd6\xf0\x01\x80\x6a\xe0\x8e\x07\x00\xaa\x92\x1a\x39\x4d\x90\x90\xc9\x01\x00\xd5\x34\x56\xf1\x72\x02\xbc\x03\x00\x25\x8b\xf7\x00\x40\xc9\x6e\x3e\x4d\xd3\xf9\x44\x00\x50\xb6\x0d\x3f\x00\x50\x95\x8c\xd1\x01\x80\x92\xfa\x75\x00\xa0\xe4\xed\x1e\x00\x28\x29\x63\x07\x00\x4a\xf6\xef\x69\xda\xe7\x55\x2e\x47\xfc\xcf\xca\x22\x40\xb4\x63\x65\x11\xe9\x96\x63\x65\x11\x2c\x95\xd3\xb5\x8f\x77\x46\x65\x51\x73\x5b\xa1\xb2\xc8\xa0\xf8\x50\x59\x64\x7b\xfa\x43\x65\xd1\x20\xd7\x7a\xa8\x2c\xb2\x67\xcb\xa1\xb2\x68\x90\xfb\x3c\x54\x16\x0d\x17\x4c\x2a\x8b\x46\xf4\x7f\x8b\x23\xff\xb7\xf9\x9f\xcf\x02\x08\xea\x64\xa4\xb2\xc8\xbe\x10\x87\xf2\x21\x9b\x0e\x1c\xcb\x87\x5c\x26\x28\x1f\x1a\x2e\xc2\x94\x0f\x0d\x64\x80\x0e\xe5\x43\x76\x00\x39\x94\x0f\xd9\x86\xe9\x50\x3e\x34\x5c\xa0\x87\xf6\xf1\x35\x29\x1f\x1a\xc9\xab\x60\x9f\x8b\x30\xe5\x43\xc3\x29\x46\xf9\xd0\xc0\xe7\x3a\x43\xfb\x3c\xc2\x3e\x17\x1b\xca\x87\x86\x13\x95\xf2\xa1\x81\x97\x7c\x28\x1f\x1a\x6e\x47\x53\xfb\xf8\x25\xe5\x43\x43\x1f\x88\xf2\xa1\xe1\x42\x34\xb5\x8f\x29\x36\xb5\x0f\x1b\xa6\xf6\x79\x07\x44\x73\xdc\x80\xa6\x00\x30\xcf\x49\xf9\xd0\x5c\x5e\x13\x00\x78\xf9\x2c\x94\x0f\x65\x9f\xe5\xb3\xcf\xd0\xfa\x50\x3e\xb4\x9d\x55\x94\x0f\x19\x68\x1f\xca\x87\x64\x37\x1f\xca\x87\xe4\x10\x1f\x5b\x3b\x39\x76\x6d\xed\x44\x92\xe8\x50\x5a\x64\xf6\xff\x50\x5a\xb4\x89\xa3\x0e\xa5\x45\x9b\x68\xec\x50\x5a\x64\x34\x7d\x28\x2d\x52\x44\xe0\x50\x5a\x24\x7b\xfb\x58\x5a\x44\x32\xeb\xa0\x5e\x6e\xf0\x7e\x50\x2f\xdf\x24\xa5\x0e\xea\xe5\xc7\xef\x67\x11\x92\x1b\x82\x45\x48\x30\x91\xcf\xaf\x08\x89\x73\x16\x21\x01\xfc\x1f\x0a\x8d\xae\x1b\x02\x85\x46\xd7\x19\x60\xa1\x11\x80\xec\xb1\xd0\xa8\xfb\x4b\x0a\x8d\xe0\x41\x1f\x90\x2b\x25\xec\x8f\x85\x46\xf8\xef\xc7\x42\xa3\xe6\xff\x00\x79\x61\x3c\x1d\x0b\x8d\xa6\xbf\x04\xe4\x25\xfd\x78\x2c\x26\x72\xad\xb3\x98\xe8\xfc\xa5\x04\x77\xac\x33\x22\x27\x7c\xac\x33\x22\x5f\x75\xac\x33\x82\x76\x73\xac\x33\xf2\x25\x59\x67\xa4\xdf\x68\x9d\x91\x1e\xb4\x75\x46\xcb\x07\xc3\xbc\xe9\x83\x61\x1e\xc9\x89\x63\x9d\xd1\xf2\x7e\x98\xe7\xf0\x04\xb8\x8a\xee\x93\x00\x57\xd1\x65\xc2\x1a\x24\x5f\xa0\x35\x48\x80\x29\x07\xe0\x2a\x02\x60\x1c\x6b\x90\xa6\x47\xe0\xbf\x04\x7f\x07\xe0\x4a\x75\x83\x03\x70\xa5\x4a\xc1\xb1\x06\x89\x50\xf0\x58\x83\x44\x5d\xfb\x01\xd4\x52\xc0\xfb\x00\x6a\x45\x83\x23\x6b\x90\x9a\xff\x03\xff\xf5\xd3\x02\x6a\x45\xa7\x26\xa0\x56\x1c\xfe\x0f\xfb\x00\x5a\x0e\xa0\x96\x7e\xce\x05\xd4\x8a\x2c\xa6\x17\x50\x2b\xc2\x79\xb8\x80\x5a\x16\xf9\x5e\x40\x2d\xb5\x1c\x2e\xa0\x56\xc4\x2b\xb8\x8f\xf6\x5d\x8e\xb0\x8f\x78\xe8\x02\x6a\xc9\x40\xbf\x8f\xf6\xbd\x1c\x61\x5f\xf7\x48\xfb\x7c\x16\xec\x63\x71\xbb\x80\x5a\x99\xe5\xfa\x02\x6a\xe5\xe5\x2f\x29\x42\x2a\xde\x81\x22\x24\xfc\xf0\x6b\x11\x12\x8b\xf0\xb5\x08\x89\x65\xe9\x5a\x84\xc4\x52\x77\x01\xb5\x6c\x3d\x7b\x01\xb5\x2a\x59\xbd\x0b\xa8\xd5\xaa\xff\x03\x38\xe6\x3b\x5c\x40\xad\xc6\x77\xb8\x80\x5a\xcd\xb7\x4b\x11\x52\xf3\x7d\x52\x84\xd4\x86\xcf\xf2\xd9\x60\xc7\xef\x4b\x11\x92\x61\xf0\xa5\x08\xa9\x51\x73\x78\x29\x42\x6a\xb0\x4d\x2e\x45\x48\x8d\x82\x85\x4b\x11\x52\xe3\xdb\x5e\x8a\x90\x0c\x91\x2f\x45\x48\x8d\x52\x9f\x4b\x11\x52\xa3\xe4\xf7\x52\x84\xd4\x00\x99\x6e\xd0\x06\x7f\x89\x0d\x7e\x77\x8a\x90\x6c\xc2\x76\x29\x42\x32\xcc\xbf\x41\xfb\x06\x47\xd8\x47\xd0\x7f\x29\x42\x32\xe8\xbf\x14\x21\x19\xca\x5f\x8a\x90\x1a\xcb\xd9\xa5\x08\xa9\xb1\x9c\x5d\x8a\x90\x5a\xf3\x1c\xf6\x51\x88\x7d\x29\x42\x6a\xe4\xb5\x2f\x45\x48\xcd\x11\x19\xfd\x46\x7c\xb1\xa8\x7d\x5e\x45\xfb\x78\x96\x88\x7d\x64\x88\x6f\xc4\x3e\xe6\xfb\x8d\xda\xc7\xc8\xa2\x40\x69\x46\x9f\x0c\x19\x20\x92\x83\xd7\x22\x24\xaf\x69\x11\x92\x6f\xd7\x42\x23\xef\x90\x04\xb1\xb9\x43\x02\x20\x65\x25\xba\x16\x21\x39\x26\x2c\x42\x62\x7b\xb8\x16\x21\x51\x36\x76\x29\x42\xb2\x67\xfa\xb5\x08\xc9\x31\x61\x11\xd2\xf9\x4b\xc2\xfe\x5a\x9f\x84\xab\x7d\xad\x4f\x62\x69\xbd\xd4\x27\x6d\x1c\xef\x6b\x7d\x12\x20\xda\xa5\x3e\xe9\xe0\x4f\x5f\xeb\x93\x58\xbc\xaf\xf5\x49\xc7\x73\x60\xc3\x04\xd3\xd7\xfa\x24\xc2\xaf\x6b\x7d\x12\x3b\xce\xb5\x3e\x09\xdf\xf7\x5a\x83\xc4\xa2\x7f\xad\x41\xba\xde\x1d\xf3\x58\xf4\xaf\x35\x48\x2c\xbb\xd7\x1a\xa4\xe3\x91\x36\xf8\x2c\xd8\xc0\x2e\x76\xad\x41\x22\x91\x70\xad\x41\x22\x77\x7d\xad\x41\x62\x87\xbb\xd6\x20\x01\xb0\x5d\x6b\x90\x08\x44\x6f\xc1\x86\xeb\xff\xb0\x81\x80\xf2\x16\x3e\x1f\x91\xc5\x2d\x7c\x3e\x12\x1e\xb7\x60\x9f\x4b\x56\xc1\xbe\xe3\xff\xb0\x0f\xc8\xf0\x02\x7f\x99\x0f\xbf\xc0\x5f\xef\xe3\xff\xc0\xb7\xaf\xd7\xfc\x72\xf3\x2f\x44\xbe\x0b\xfc\xf5\xf8\xce\x80\xbf\x5e\xbc\xa5\x0b\xfc\xf5\xf8\x5e\x80\xbf\xde\xc7\x5f\x82\x6f\x13\xd7\x5c\xe0\xaf\xf7\xf5\x97\xe0\xdb\xd7\xab\x50\x63\x45\xaa\xe9\x02\x7f\xbd\x14\xb1\x5c\xe0\xaf\xf7\xf5\x2a\x83\x73\x5e\x05\x24\x9c\xa8\xea\x56\xed\xf3\x7f\xda\x87\xed\x40\x63\x2f\xa9\xad\x0b\x34\xf6\x12\xf3\xdc\x26\x12\xee\x91\xf5\x57\x3c\x8b\x45\x48\x78\x91\xd7\x22\x24\xdf\x8b\x45\x48\x8f\x47\x14\x21\x01\xe5\x5c\x8b\x90\x5c\xe6\x2d\x42\x22\x80\xbd\x16\x21\x3d\x9e\xa3\xc8\x4a\xdb\x2d\x42\x7a\x3c\x02\xd2\x7e\x7d\x32\x7b\x70\xf8\x3f\x20\x6d\xad\x05\x1a\x8b\xbe\x09\xa0\xb1\x48\x5a\xef\x02\x8d\x25\xbf\x0a\xd0\x58\x22\x6e\xbb\x40\x63\xf6\xa4\xbe\x40\x63\x76\xc4\xb9\x40\x63\xc9\x77\x0d\x34\x16\x1d\x3d\x40\x63\xd1\xef\x07\x34\x16\xb5\x01\x68\x2c\x39\x42\x80\xc6\x92\xdf\x01\x68\x2c\x3a\x96\x80\xc6\x92\x6f\x02\x68\x2c\x17\xcf\x01\x93\x23\xae\x7a\x81\xc6\x32\x9c\x87\x0b\x34\x96\x01\xe9\xef\x10\x26\xe7\xee\xc0\x5f\x99\xe4\xe7\x05\xe3\xca\xce\x31\x30\xae\xe2\x62\x0a\xc6\x55\x5c\xf4\xc1\xb8\x8a\x33\x0e\x8c\xcb\x7e\x2e\x17\x8c\xab\x06\xff\x07\x14\x4e\x1a\xe3\x82\x63\xd9\xff\xe7\x82\x63\xd9\xb3\xe5\x82\x63\x55\xb4\x4d\x2e\x38\x56\x25\x5e\xb8\x94\x32\xd9\x15\xe6\x52\xca\x54\xa3\xe7\x28\xd5\x22\xa6\xbb\x94\x32\x35\x62\xc1\x4b\x29\x53\xfb\xb3\xab\xc8\x9d\xa0\xe4\xc9\x9b\x83\x92\x93\xab\xbb\x54\x40\x35\xc2\xbd\x3b\x45\xc9\x19\x4a\x13\x94\x3c\xf9\x28\xa0\xe4\x84\xc1\x77\x82\x30\xfb\x89\x26\x08\x33\x81\xf6\xa5\x56\xaa\xfb\xc1\xa8\x95\xea\xee\xee\xd4\x4a\x75\x7d\x27\x6a\xa5\xba\xcb\x12\xb5\x52\x6a\x6a\x5c\x04\xca\x6d\x09\x7f\x97\x28\x32\x2f\x1e\x11\xf2\x01\x4c\x70\x11\x21\x1f\xfa\x47\x88\x90\x4f\x5f\x20\x22\xe4\xd3\x97\x4b\xdf\x5b\x89\x67\x97\xbe\xb7\xca\xf3\x5d\x04\xca\x27\x81\xda\x45\xa0\xdc\x86\x8f\x17\x81\xf2\x19\xfc\x1f\x28\xb2\x9f\x76\x8b\x22\xf3\x9c\x88\x97\x4f\x77\x62\xc4\xcb\xa7\x8b\xc6\x17\x38\x55\x49\x70\xf7\x0b\x9c\xea\x84\x67\x70\xbf\xc0\xa9\x4a\x97\xbb\x5f\xe0\x54\xcd\x10\xdf\x0d\x4a\x1e\x7d\x16\xed\xf3\x7e\xa2\xe4\xde\x0f\xfb\x08\x28\xef\x17\x54\xd5\xe5\x5b\xfa\x82\xaa\xba\x80\x64\xee\x17\x39\xd5\xa5\x47\xf4\x45\x4e\x55\xd5\xd7\x7b\x40\x91\x7d\x83\x07\x14\xd9\xa1\x7b\x80\x8a\xbd\xfb\x01\x2a\xd6\x7b\xf9\x22\xa7\x6a\x19\xf1\xfd\x22\xa7\xba\x1d\x3d\x5f\xe4\x54\x2d\xcf\xbd\x5f\xe4\x54\x37\xa0\xdd\xfd\x22\xa7\xba\xc9\x2c\xdf\x03\x4a\x4e\x5a\xe1\xa2\x82\xb7\x1d\xad\xa8\xe0\x6d\xbf\x26\x2a\x78\x06\xe8\x17\x15\x3c\x1b\xcb\xdf\x6b\x4d\x1e\x77\x47\xe9\xce\xe0\xf6\xa2\x66\xa7\x54\xd3\x45\xb1\x4e\x09\xa4\x8b\x62\x9d\x0d\xa9\x2e\x8a\x75\x88\x33\x85\x07\xc8\xe9\xf9\x02\xf4\xf0\x00\x39\x51\x26\x13\x1e\x20\x27\x0a\x5c\xc2\x03\xe4\x84\x36\x46\x78\x80\x9c\x9e\x2f\xbd\x13\x1e\x20\x27\x72\xec\xe1\xb1\x81\xed\xeb\xd1\x07\x39\xbd\xdf\x88\x0c\x0f\x90\xd3\xfb\x7a\xf7\xce\x91\x77\x00\x9a\xfe\xc6\x4b\x78\x80\x9c\xde\xdf\x93\x01\x4d\x7f\xef\x3a\x3c\x40\x4e\xef\xef\x39\xa9\xad\xfb\xf8\x2c\xe1\x01\x57\x7a\x5f\xee\x07\xae\xf4\x06\x9e\x1a\x5c\xe9\x7d\xb9\x03\xb8\xd2\xfb\xcd\x87\xf0\xd8\xbe\xe9\xe5\x2a\xb6\x6f\x8a\xd8\x60\xfb\xa6\x88\xb5\xb6\x6f\xfa\xc6\x44\x78\x6c\xdf\xf4\xcd\xbf\xf0\x80\x2b\x85\xe8\x35\x29\x30\xab\x9e\x03\xba\xfd\xe6\x74\x78\xc0\x95\xe2\xf0\x9a\x40\xb7\xc3\xfb\x01\xdd\x36\x9f\x13\xe8\xb6\x7a\x3f\xa0\xdb\xca\xff\x02\xd0\xed\xe0\x0e\x01\xe8\xd6\xfb\x05\xa0\xe9\xc6\x1b\x0c\x40\xd3\x0d\xfb\x02\xd0\x74\xe7\x2d\x05\xa0\xe9\xce\x57\x09\x40\xd3\xd5\x73\x40\xd3\xfd\x8f\xc4\x45\x78\x10\xba\x8b\xc3\x8b\x80\x5a\x57\x4c\x40\xe8\x2e\x36\x1f\x1a\xd3\x1b\x1f\x13\xa1\x3b\xc2\xfc\xf0\x20\x74\x17\x3b\x43\x02\xa1\xbb\x38\x30\x1d\xa1\xbb\xd8\x38\x87\xd0\x5d\xac\x0c\x02\x84\xee\xe2\xe0\xa1\x11\xba\x23\x94\x0f\x4f\xd4\x74\x5e\x6e\xd4\x74\x86\x04\x42\x77\x71\xf2\x51\xa2\xa6\xfb\x3f\x4c\xff\xe4\x15\xc3\x83\x9a\x1d\x89\x84\xf0\xa0\x66\x47\xd0\x1f\x1e\xd4\xec\x62\xf5\x97\xa0\xd6\x99\x37\x81\x9a\x5d\xc9\x9e\x03\xb5\x9e\xde\x01\xd4\x7a\x7a\x4d\x50\xeb\xc5\xe0\x41\xcd\xae\x2c\x3e\x18\x6a\x76\x65\x61\x1f\x6a\x76\x65\xf2\x5e\x50\xb3\x2b\xda\xa0\x9a\xdd\xc2\x5a\xd5\xec\x26\xcf\x92\x40\xad\x27\xdf\x81\x3e\xbb\x65\xfa\x4b\x50\xeb\xc5\x57\x41\xe9\xae\x4c\x86\x12\x6a\x76\x65\xf9\x3f\x50\xeb\xcc\x73\x66\x51\x6b\xee\x90\x41\xad\x1d\x58\x19\xd4\xda\x61\x9d\x41\xad\x87\xff\x03\xb5\xf6\xdb\x66\x50\xeb\xee\x11\xa8\x75\xc7\xf6\x0c\x6a\x3d\x3c\x6a\x9c\xe3\x0d\x7e\x11\x50\x6b\xdd\x3b\x0c\x7e\xc9\xfb\xa4\x29\x6e\x73\x58\x67\x90\x77\x47\xd6\x17\x01\xb5\xe6\x28\xc8\xd4\x70\x3a\x8d\x32\xf6\x0d\xde\x44\xd1\x3e\x8f\xb4\x8f\x37\x51\xb0\xaf\x31\x0a\x68\xa6\xdb\x1b\xf6\x7d\x11\x50\xa3\x9c\x3b\x3c\x5f\x04\xd4\xfa\xe6\x59\xbe\x08\xa8\x51\x14\x1e\x9e\x2f\x02\x6a\x23\xf2\xfd\x0a\xa8\xbc\x4b\xd6\x17\x01\xb5\xe1\xc2\xf7\x45\x40\x6d\xb8\xf0\x15\x50\xf9\xe8\x35\x41\xe5\x23\xf6\x7d\x51\x4e\x5b\xce\xbf\x2f\xca\x69\xcb\xd9\x51\x81\xd7\x7f\xe7\x80\xd7\x2b\xff\xfb\xa2\x9c\xb6\x2b\xd7\xfc\xa2\x9c\xb6\x27\x77\xff\xa2\x9c\xb6\x1d\x9f\x95\x3a\x54\x47\xd6\x17\xe5\xb4\xed\xb8\xfe\xa2\x9c\xb6\x1d\xbb\x5f\x94\xd3\xce\xe6\x1b\x7d\x51\x4e\x3b\x1b\x1b\xbe\x28\xa7\xd1\xd2\x35\x3c\x5f\x94\xd3\x68\x05\x1b\x1e\x54\xe9\xce\xe6\x4d\x34\x6a\x4d\x03\xdf\xa8\x01\xaf\x3f\x3c\x75\x03\x5e\x77\xf1\x6e\xc0\xeb\x2f\x57\x69\xc0\xeb\x8f\x47\xc0\xeb\x6e\x16\x0d\x78\xfd\xf0\xd4\x0d\x78\xfd\x30\x06\x1b\xf0\xfa\xe5\xab\x7c\x51\x4e\x27\x4e\x0c\x4f\xa3\x5e\x76\x7b\x44\x4d\xec\xe1\x4d\x7c\xd1\x4a\x7f\x9d\xef\x5f\xb4\xd2\xdf\x8c\xed\x5f\xb4\xd2\xa9\xb7\x0c\xcf\x17\xad\xf4\x37\x33\x96\x3a\x35\xb1\x99\x6f\xd4\xa9\x89\x3d\x3c\xf5\x17\xad\xf4\xd7\xbb\x7f\xd1\x4a\x7f\xff\x6a\x87\x1a\x9e\x2f\x90\xe9\xef\xf5\x06\x30\x04\xae\x8f\x32\xb8\x81\x97\x9c\x9c\xd3\x04\x18\x02\x97\x17\xff\x05\x2b\xfd\x3d\xfc\x6f\x60\xde\xe1\xf3\x7d\xc1\x4a\xcf\xee\x4d\x5f\xb0\xd2\x73\xc3\xf4\x0f\x1e\xea\xd9\x65\xf7\x83\x87\x3a\x25\xd4\xe1\x19\x08\x54\x16\x3e\xfb\xa0\xe4\xb7\xf0\x31\x07\x25\xbf\x95\x4f\x34\x28\xf9\x2d\x7c\xa2\x41\xc9\xaf\xc3\xec\x0b\x64\x7a\x2d\xde\xfd\xb3\x01\x80\x2d\x3c\x5f\x20\xd3\xdb\xe1\x75\x7e\xf0\x50\xef\x4e\x77\xe0\xa1\xc7\xa5\x00\x78\xe8\x71\xc9\x02\x1e\x42\xb1\x38\x3c\xc0\x43\xb4\xa4\x09\x0f\xf0\xd0\xe3\x06\x04\x3c\xf4\xb8\x83\x03\x0f\x3d\x6e\x71\xc0\x43\x8f\x8b\x06\xf0\xd0\xe3\x32\x01\x3c\xf4\xb8\xe1\x4d\x19\x02\xbc\x25\xe0\x21\x2a\xc3\xc2\x03\x3c\x44\x5d\x5a\x78\x80\x87\x1e\x97\x17\xe0\xa1\xc7\xed\x08\x78\xe8\xcd\xbc\x17\xe0\xa1\xd7\xe1\x09\x3c\x14\x5f\xfe\x07\x3c\x14\x9d\x2a\xc0\x43\x3f\xff\x01\x78\x28\xba\x7c\x02\x0f\x65\x17\x61\xe0\xa1\xec\x52\x0e\x3c\x94\x5d\x50\x80\x87\xf2\xc0\x22\xe0\xa1\x5c\xbd\xca\x67\x5f\x49\xfe\x12\xe4\xdd\x2d\x00\x78\x28\xbb\x98\x02\x0f\xfd\xc6\x0b\xf0\x50\xd6\x7b\x01\x1e\xca\xd3\xab\x80\xbc\xeb\xcb\x00\x0f\x65\xbf\x03\xf0\x50\xf6\x9d\xa1\x51\x97\xb5\x0f\x8d\xba\xec\xc2\x07\x74\x94\xfd\x46\x5b\xfb\x18\xbb\x40\x47\x59\x47\x00\xe8\x28\x3b\x42\x80\x8e\xb2\xdb\x11\x1a\x75\xd9\x6f\x4b\x73\xdb\xea\x62\x43\x73\x5b\xb8\xd5\xe1\xa1\xb9\x6d\x8b\xbc\x97\x2d\xfc\xec\xb9\xcd\x91\x57\x01\x7e\x76\x0b\xa0\xb9\x2d\xfc\xf0\xf0\x1c\xe0\xf5\xc0\x5b\x3a\xc2\xeb\x3c\x19\x8d\x6f\x9b\x7e\x38\x8d\x6f\x9b\x9e\x37\x8d\x6f\x9b\x8b\x22\x8d\x6f\x9b\x9e\x37\x8d\x6f\x9b\xfe\x2d\x8d\x6f\x5b\xc4\x76\x1a\xdf\xb6\xc8\x7b\xa1\xf1\x2d\xbc\xf2\xf0\xd0\xf8\xb6\xb9\x01\x1d\xed\xf3\xee\xd8\xa7\x37\x7f\xb0\xcf\x6d\xec\x58\x7e\xec\xdd\x51\x77\x2c\xbc\xcf\x0b\x3c\xab\xeb\x76\x81\x67\x9d\x8d\x17\x78\xd6\xad\xff\x02\xcf\xba\xf6\x5c\xe0\x59\x47\xd6\x05\x9e\x75\xde\x5e\xe0\xd9\xca\x93\x5d\xe0\x67\xbf\xf4\x05\x7e\x76\x5d\xba\xc0\xcf\x8e\xeb\x0b\xfc\xac\x23\x70\x81\x9f\x1d\x05\x17\xf8\x59\x07\xf0\x02\x3f\xff\xf7\x6d\xff\xbd\x24\x5f\x90\xe9\xa6\x41\x20\xd3\x5f\x1a\x3d\xbc\x0f\xa6\xb3\x48\xbd\x0f\xa6\xb3\xa0\xbc\x0f\xa6\xb3\xf4\xbc\x0f\xa6\xe3\x6b\xbf\x0f\xa6\x57\xcf\x61\x3a\x83\xfc\x7d\x30\x9d\x41\xfe\x3e\x98\xde\x3d\xc2\x74\xa6\xd8\xfb\x60\x7a\xf7\x7e\x98\xde\xbd\x0a\xa5\xc9\xc7\xe7\x5c\xa0\xd6\x9e\xdb\x1c\x79\xf7\xcf\xbe\xc9\xd2\xf3\x7e\xc1\x58\x9e\x5f\xbe\x2a\xbc\xb4\x76\x9a\x8b\xab\xd0\xda\x69\x7e\x59\xaf\xf0\xd2\xda\x69\x31\x71\x5e\x5a\x3b\x2d\x3c\xa2\xf7\x05\x99\x66\xe2\xbc\x2f\xc8\x34\xa1\xe7\x4b\xdb\xa7\xcd\xd6\xf1\xd2\xf6\x89\xb0\x3b\xbc\xb4\x7d\xda\xc9\x73\x20\xd3\x0c\xeb\xf7\x05\x99\xfe\x12\x02\xe1\xa5\x25\xd4\xce\xfe\x0f\xe4\x3d\xf9\x64\x20\xef\xd9\x5f\x82\xbc\x47\xef\x0e\xf2\x4e\x28\xf8\xa2\x16\xb1\xf1\x8b\x5f\xd4\x22\x48\x32\x84\x17\xb5\x88\x1d\xb9\x03\x2d\xa1\x36\x11\xc2\x4b\x4b\x28\x54\xc6\xc2\x8b\x5a\xc4\x8e\x9e\xc3\xbe\xe4\x91\xc8\x7b\xe3\x08\xfb\x22\xef\x2c\x68\x9f\x57\xd1\xbe\xc2\x11\xf6\x25\xde\x67\xd0\x3e\x2c\x42\x49\xe2\x24\xbe\x18\x4a\x12\xc7\x37\x88\x92\x04\xa2\x40\xe1\x45\x49\xe2\x32\x71\x5e\x94\x24\x2e\x53\xe5\x45\x49\xe2\x0e\xde\x35\x90\x13\xa2\x39\xe1\x05\x72\x7a\xa6\x47\xc0\xd6\xc4\x19\x2f\x90\x13\xf5\x65\xe1\x05\x72\x7a\x1c\x13\x51\xd8\x9a\x27\x03\x72\x7a\x5f\x8f\x80\xad\xaf\xff\xfb\xb0\x80\xf7\xe1\x3b\x00\x39\xbd\xaf\xcf\xb9\x39\xe7\x73\x52\x7a\x7d\x3d\xba\xfc\x92\xaf\x09\x1c\x45\xc6\x3d\xbc\x68\xe2\x91\xc5\x0f\x2f\x9a\x78\xcf\xe5\xc9\x92\xf6\xf1\x96\x80\xaa\xde\xc7\xab\x64\xae\xe9\x55\x0a\x47\x8c\x02\xa0\x2a\x70\x82\xf0\x02\x55\x81\x0c\x84\x17\xa8\x0a\x7c\x21\xbc\x40\x55\x64\xf8\xc3\x0b\x54\x15\x12\xf6\x81\x47\xd1\xa4\x2c\xbc\xe0\x51\x71\xfa\x2c\xc0\xd6\xd3\x3b\x00\x5b\xfb\x3e\xc1\xa3\x28\x30\x0b\x2f\x78\x14\x65\x5c\xe1\x05\x8f\x8a\x78\xc2\x2f\x78\x14\x52\x62\xe1\x05\x8f\x4a\xae\x05\xe0\x51\xf1\x7a\x0e\xd8\xda\x39\x8d\x5e\x5e\x3c\xdc\x1d\xbd\x3c\xb2\xf8\xe1\x05\xab\x8a\xdb\xbb\x03\x5b\xfb\xfd\xc0\xaa\xa2\x5f\x05\xac\x8a\x26\x65\xe1\x05\xab\x8a\xdb\x27\xd3\x3e\x2d\xc2\x3e\xa2\x87\x17\xac\x8a\x62\xb7\xf0\x82\x55\xc5\xf5\x57\xe2\xe2\x05\xc6\x8a\x84\x27\x2f\x30\x16\x15\x7a\xe1\x05\xc6\x42\xed\x2d\xbc\xc0\x58\xa8\xaf\x85\xb7\x68\xba\xb7\xc3\x74\x97\x41\x60\x2c\x74\xe1\xc2\x0b\x8c\x15\x09\x25\x5e\x60\xac\xb8\xbd\x0a\xa6\x13\x18\xbe\x05\xc4\xde\x49\x5c\x40\xec\x8b\xbf\xa4\x22\x1d\x6f\xf7\x2d\x54\xa4\x17\x06\x41\xa5\x22\x3d\xf3\x2c\x15\xc5\x54\x7c\xca\xb7\xa2\x98\x5a\x78\xb9\x95\x6a\x75\x37\x84\x2f\x88\x2b\x99\x5d\xec\xfd\x82\xb8\x02\xa0\x10\xde\x2f\x88\x2b\x00\x11\xe1\xad\xa8\xa2\x56\xff\x87\x2a\x6a\xf1\x08\x55\x54\x37\x20\x9a\x47\x95\xe6\x55\x90\x3e\xc5\x9b\x7f\x69\x1e\x85\x4a\x5c\x78\xab\xac\x03\x2c\xa2\x79\x54\xa9\xdc\x8f\xe6\x51\xf5\xe1\x7f\x34\x8f\xea\x6e\x0f\x34\x8f\x6a\x7e\x23\x9a\x47\x75\x27\x0e\xcd\xa3\x9a\x83\x80\xe6\x51\x3d\x78\x07\x10\xed\xe3\x39\x10\x6d\x37\x35\x9a\x47\xb5\xeb\xfd\x06\xd7\x64\xd0\xd1\x3c\xaa\x11\xca\xbf\x34\x8f\x6a\x44\x47\x2f\xcd\xa3\xda\xc1\x76\x9a\x47\xb5\xe3\xb3\x80\xd8\x3b\x01\x50\xae\xe8\x2e\x36\x28\x57\x74\x97\x02\x94\x2b\x9a\x93\x0a\xe5\x8a\x76\x78\x96\xae\x7d\xdc\x0f\xe5\x8a\xe6\xa8\x43\xb9\xa2\x3f\x7c\x69\x94\x2b\x7a\xf5\x9a\xd8\x47\x0a\xe7\x45\xb9\xa2\xbf\x5e\x13\xc4\xde\xe9\x8e\x72\x45\x5b\x3e\xe7\xe2\x97\xfe\x0f\xfb\x5c\x14\x51\xae\x68\x8e\x90\xae\x7d\x4c\x3f\x94\x2b\x9a\x0b\x26\xca\x15\xcd\xe5\x65\xf8\xfd\x78\x4b\x28\x57\x74\x97\x6b\x94\x2b\xfa\x8b\x7d\x43\xfb\x18\x91\x34\x8f\x6a\xce\x23\x94\x2b\xda\xe1\x39\x51\xae\x40\x48\x3d\xbc\xc3\x6f\x84\x7d\x28\x57\xd0\x0d\x3c\xbc\x28\x57\x34\x9d\x92\xe1\x37\x62\x0c\xa2\x5c\xd1\xc9\x17\xbf\x28\x57\xf4\xe0\x11\x36\x38\xdf\x51\xae\x98\x6e\xcc\x28\x57\x80\xc2\x84\x17\xe5\x8a\xa9\x73\x81\x72\xc5\x74\x63\x46\xb9\x62\xba\x5c\xa3\x5c\x31\x75\xf2\x50\xae\x98\xdd\x6b\x22\x29\xd0\xbd\x3b\x92\x02\x93\xb7\x8b\x72\xc5\x74\x0d\xb1\xd1\xae\x0e\x12\xea\x14\xdb\x37\x4f\xa3\xa7\x43\xe6\xfc\x45\x9d\xe2\xe8\x40\xa0\x4e\x41\x97\xed\xf0\xa2\x40\x71\x74\x04\x68\xf4\x74\x0a\xf3\x8f\x46\x4f\x27\x60\x1f\xea\x14\x47\xfb\x90\xa0\xf8\x39\x09\x48\x50\x9c\xcc\x73\xd2\xe8\xe9\x90\x9f\x7e\x69\xf4\x74\x5e\x9f\xec\x72\x95\x3f\x4a\x45\xc2\x8b\x72\xc5\xd1\x73\x43\xb9\xe2\xe8\xbd\xa0\x5c\x71\xf4\xd5\x50\xae\x38\x7e\x06\x94\x2b\x8e\x3b\x31\xca\x15\x87\x60\xe5\x45\xb9\xe2\x64\x8f\x30\xdd\x25\x12\xfe\xdf\x71\xf9\x84\xff\x77\xdc\x7f\xb6\xa6\x7b\x84\xe9\xc1\xff\x61\x7a\xf1\xc9\x34\xdd\x5f\x62\xba\x9e\xe9\xd6\x74\x3e\x03\xdc\xc0\x03\xf4\xf0\xc2\x0d\x3c\x7e\xcc\xa3\x7d\xd8\x00\x01\xf0\xb8\x78\x43\x00\x3c\x04\x86\x2f\x04\xc0\x43\x58\xf3\x42\x00\x3c\x6e\x08\x10\x00\x4f\xf5\x97\xda\xe7\x55\x24\xc5\xf8\x2c\xd8\xa7\xd7\x0a\x01\xf0\x14\x26\x0e\x24\xbf\x43\xbe\xea\xa5\x99\xd3\x1b\x78\x4e\x60\x2c\x41\x98\x17\x18\xeb\x0d\x0c\x10\x9b\x39\x5d\x6c\x07\xc6\x7a\xfd\x0e\xc0\x58\xaf\xef\x93\x66\x4e\x2f\xc1\xed\x4b\x33\x27\xc1\xa2\x17\x88\x4b\x80\xe6\xa5\x99\xd3\xeb\xd6\x78\x65\x4e\x78\x3f\x98\x13\x7e\x15\x9a\x39\xbd\x7a\xe5\x34\x73\x12\x64\x7a\x6d\xe6\xe4\xc8\xb2\x99\x93\xf6\xd9\xcc\x89\xc9\x11\x6c\xe6\x44\x5e\x3b\xd8\xcc\x89\xd4\x56\xb0\x99\xd3\x47\xcf\x0b\xc1\x66\x4e\xc4\x66\xe1\x91\x55\x11\x38\x82\x55\xf1\x78\x0e\x56\x05\x5f\x3a\xd8\xcc\x29\xf8\x4b\x58\x07\xbc\x97\x60\x33\x27\xe2\x8c\x60\x33\x27\xbe\x7b\xb0\x99\x53\xf4\x7f\xb0\x0e\x08\xb4\x03\xcd\x9c\xa8\x86\x0c\x81\x66\x4e\x31\x78\x15\x58\x15\xc4\x3c\xe1\x85\x55\xc1\x96\x1a\x68\xf4\x94\xf8\x46\x81\x46\x4f\x29\x78\x0e\x56\x85\x4f\x4d\xa3\xa7\xc4\xc2\x10\x68\xf4\x94\xf0\xb5\x03\x8d\x9e\xd2\x07\xdd\x86\x40\xa3\xa7\x44\xae\x35\xd0\xe8\x29\xf9\x9c\x34\x7a\x4a\x5a\x8b\x72\x45\x22\xb7\x1b\x50\xae\x48\x3e\x35\xca\x15\xe9\xf5\x7f\xb0\x2a\x48\xa9\x04\x94\x2b\x52\xf0\xc9\x90\xae\xf5\xbd\xa0\x5c\x81\x6e\x5a\x08\x28\x57\x64\xc6\x67\x40\xb9\x22\x17\x8f\x10\x1f\xc0\x99\x09\x28\x57\xe4\xc3\xbb\x0e\x32\x2e\xb0\x08\xe5\x8a\xcc\xc6\x1c\x02\xe2\x03\x6c\x47\x21\x20\x3e\x80\x2f\x1a\xbe\x68\xac\xe6\xed\x1d\x06\xbf\xc4\x3e\x34\x2e\xf2\xf6\x0e\x08\xe0\xb2\xe8\x07\x34\x2e\x4a\xd7\x06\x04\x70\xbd\x3b\x3a\x16\x95\x48\x2d\xa0\x63\x41\x9f\xf9\x10\xd0\xb1\xa0\xaf\x7d\x08\xe8\x58\xd4\xe4\xff\x10\x1f\x20\x9e\x0d\x08\x52\xd4\xed\x11\x0d\xb7\xfe\xea\xbd\x17\x02\x5a\x15\x8d\xa5\x2e\x44\x99\x13\xbc\x32\xf4\x28\x28\x6a\x0c\x01\x3d\x0a\x38\x8c\x21\xa0\x47\x81\xe8\x65\x08\xe8\x51\xb4\xc2\xcd\xd1\xa3\x68\xf8\x2b\x01\x3d\x0a\x04\x31\x43\x40\x8f\xa2\xb1\x40\x07\xf4\x28\x5a\xf6\x7f\x90\x46\xd8\xa9\x42\x82\x55\x01\xea\x19\x12\xfa\x02\xec\x3f\x01\xad\x8a\x5e\xfd\x25\xfa\x02\xbf\xfb\xc1\xb8\x78\x3c\x07\xe3\xe2\xf1\x39\x37\x47\x5e\xe5\x70\x84\xb5\x68\x5c\x20\xce\x19\x02\x1a\x17\x83\x1d\x3c\xa0\x71\x31\x1c\x12\x68\x5c\x0c\x3f\x3b\x1a\x17\xd3\x8f\x82\xc6\xc5\x04\x4f\x0f\x68\x5c\x4c\x3f\x2d\x1a\x17\x93\x3c\x5e\x40\xe3\x62\x26\xee\x8e\xc6\xc5\xf4\x63\xa2\x71\x31\xd9\x1a\x03\x1a\x17\x33\xfb\x3f\x18\x17\x0e\x09\x34\x2e\x68\x67\x1b\x02\x1a\x17\xab\x7b\x95\xc3\x39\xff\x77\x39\xe2\xfb\xa1\x71\xb1\xbd\x26\x1a\x17\xdb\x89\x83\xc6\xc5\x2e\xbc\xa5\x42\xdd\x7e\xf6\x08\xc6\x05\x30\x48\x40\xff\x02\xc9\x9e\x10\xd0\xbf\xd8\x8e\x09\xf4\x2f\x76\xf2\x9a\x30\x2e\x1c\x4b\xe8\x5f\x6c\xc7\x19\xfa\x17\x26\x7b\x02\xfa\x17\xa6\x5b\x02\x04\xc0\x9d\x79\x83\x10\x00\xb7\x63\x09\x02\xa0\xe9\x9d\x00\x01\x10\xe1\x9f\x10\xaa\x6c\x0c\xde\x04\x44\xbe\xeb\x5b\x82\xac\x77\x9d\xa8\xc0\x58\x8f\x57\x01\xaa\x32\x21\x10\x80\xaa\x04\x84\x42\x85\x91\x40\x8a\x2a\x54\x18\x09\x7e\xf7\x06\x23\xc1\xa7\x6e\x30\x12\xb4\xbd\xc1\x48\x70\x4c\x7c\x51\x4e\x7b\x49\x20\x85\x2f\xca\x69\xaf\xd3\xfd\x8b\x72\x9a\x5b\x5c\x68\x30\x2e\x1c\x75\x0d\xc6\x05\x08\x4d\x68\x68\xf8\x3a\x5a\x1b\x65\xfc\xd1\xfb\x51\xc6\x0f\xd2\x1f\xba\x65\xfc\xbc\xdd\x0e\xa0\xbe\xf8\x65\x07\x50\x07\x1f\x0a\x5f\x7c\xd2\x7e\x0b\x74\x07\x50\x5f\x8c\xc1\x0e\xa0\x8e\xdf\x1f\xbe\xf8\xa4\x25\x37\xc3\x0e\xa0\xee\xd2\xda\x01\xd4\x9d\x1d\x1d\x40\x1d\x1f\x36\x74\x00\x75\x22\xa7\xf0\xc5\x27\x2d\xbd\xde\x01\xc2\xc0\xf2\x1c\x84\x81\xe5\xfd\x20\x0c\x1c\x6d\x80\x30\x70\x78\xce\x81\x7d\x60\x47\xe1\x8b\x4f\x1a\x54\xc1\x10\x06\xf6\xb9\x78\x0f\x08\x03\x24\x4a\xc2\xc0\x3e\xf2\x03\x61\x60\xdf\xf5\x2a\x10\x06\xdc\x10\x06\xf6\x91\x03\x08\x03\xfb\x88\x64\xc2\xc0\x3e\x62\xc8\x30\xb4\xcf\x3b\x40\x88\x20\x5d\x16\xbe\xd8\xa5\xa5\xe7\x0f\x12\x5c\x08\x5f\x58\xd3\xd2\xe3\xa3\x60\xba\xeb\xfa\x17\xd6\xb4\x44\xb8\x17\xbe\xb0\xa6\x25\xc2\xa1\x30\xfd\xb4\x7c\x94\xe9\xa7\xe5\x25\xa1\x40\x61\x96\x26\xa0\x40\x01\x2f\x32\x04\x14\x28\x4c\x7f\x04\x14\x28\xe2\xf6\x0e\x7e\x5a\x7f\xd9\xb8\xbb\xd7\xc4\xf4\xee\x39\x4c\x5f\x9e\xc3\x74\x42\xf2\x80\x02\x45\x74\xe8\x4e\x3f\x2d\x03\x04\x05\x8a\xe8\x7e\x8e\x02\x85\x49\x94\xa0\x02\x05\x59\xc4\x80\x02\x45\xc2\xe3\x0b\x2a\x50\x6c\x8f\xb0\xcf\x69\x8b\x02\x45\xf1\xd3\xa2\x40\x51\x7e\x57\x81\x2b\xe1\xa4\x42\x81\x02\x06\x65\x08\x28\x50\x14\x07\x16\x0a\x14\xbf\x5d\x1a\x05\x8a\xe2\x9b\x40\x81\xa2\x38\xb0\x50\xa0\x28\x0e\x4f\x14\x28\x0a\xa9\x8a\x80\x02\x45\xf1\x4d\xa0\x40\x51\x08\x52\x03\x0a\x14\x45\x6b\x51\xa0\x28\x4e\x31\x14\x28\x8a\xdf\x01\x05\x0a\x21\xa0\x80\x02\x45\x73\x11\x46\x81\xa2\x11\x05\x04\x14\x28\x1a\x1c\x92\x80\x02\x45\xfb\xdd\x01\x8e\xc5\xf4\xee\x70\x2c\xa6\xd7\x84\x63\xe1\x74\x47\x81\xa2\x91\x8f\x0b\x28\x50\xb4\xe9\xfd\xe0\x58\xc0\x1e\x08\x28\x50\xb4\xe9\x1d\xe0\x58\x10\xdc\x06\x14\x28\x28\xba\x08\x01\x05\x8a\xee\xd4\x44\x81\xa2\x39\x39\x50\xa0\xe8\x7a\x4b\x28\x50\x74\xd8\x1f\x01\x05\x0a\x41\xde\x70\xe4\x58\x78\x07\x78\x14\x2e\xf3\xa8\x4c\x0c\x17\x53\x54\x26\xa8\x16\x0c\x01\x95\x89\x91\x3d\xda\xfc\x12\x6b\x51\x8b\x18\x2e\xde\xa8\x45\x0c\xdf\x35\x6a\x11\xc3\xed\x01\xb5\x88\xe1\xa2\x8f\x5a\xc4\x70\x0b\x47\x2d\x62\xb8\xe8\x5f\x3b\x4c\x7a\x84\x0a\x43\xf3\x2a\xa8\x30\x34\xef\x0e\xdf\xc3\x2f\x86\x92\xc4\xf2\xcd\xa3\x49\x4e\xbb\xde\x10\xd0\x24\x5f\x7e\x3f\x54\x26\x68\xa3\x1f\x22\x94\x3f\x74\xe8\x42\x84\xf2\x87\x46\x5d\x88\x50\xfe\x36\x31\x4f\x84\xf2\xb7\x99\x1d\x11\xca\x1f\xac\xfd\x10\x1f\xb9\x20\x9b\x23\xb8\x20\xac\x0c\x11\xca\x1f\xf5\x0b\x21\x42\xf9\xdb\x8c\xf2\x08\xe5\x8f\x9a\x81\x10\xa1\xfc\x51\x5d\x10\x22\x94\xbf\xbd\xbd\xfb\xe2\x97\xde\x7d\x73\xce\x3b\x20\x25\xb1\xfc\xdf\x67\xdf\x21\x99\x15\xa1\xfc\x1d\xd2\x73\x11\xca\xdf\x61\x05\x8b\x50\xfe\x0e\xdb\x58\x54\x4a\x82\x19\x1e\x95\x92\x60\xed\x89\x50\xfe\x0e\x5b\x40\x84\xf2\x77\xee\x1f\xed\x50\x43\x84\xf1\x77\xae\x97\x84\xea\xc2\x74\x8f\x30\xfe\x0e\x19\xc6\x08\xe3\xef\x30\xdd\x23\x8c\xbf\x43\x2e\x2b\xc2\xf8\x3b\xc7\xc7\x84\x5e\x42\xe0\x14\x03\x34\x18\xf8\x86\x51\x95\x09\xc2\x9a\x88\xca\x04\xc5\x05\x21\xa2\x32\x21\x67\x32\xa2\x32\x21\xbc\x10\x55\x99\xb8\xfe\x0f\x1a\xcc\xf5\x97\xd0\x4b\xc8\x29\x46\x55\x26\x7c\x65\x41\x1a\x0c\x16\x05\x38\x24\x4c\xd4\x18\xe0\x90\x3c\x0c\x25\x15\x28\xc8\x5a\x46\x15\x28\x00\x61\xa2\x0a\x14\x78\xd7\x11\x05\x8a\x97\x74\x4b\x44\x81\xe2\x25\x8d\x11\xa3\xf4\x19\x9e\x13\x05\x8a\x17\xbf\x3f\xa2\x40\xf1\x12\x91\x44\x14\x28\x82\xcf\xf2\x85\x3c\x3d\xe0\xcd\xc7\x0f\x64\xea\xc8\x15\x85\xf8\x81\x4c\x3d\x78\xf7\x2f\x1c\xea\xe1\xf5\x97\x9d\x5f\xf2\x06\xbf\x98\xa7\x87\xc7\xbb\x4f\x8e\x78\x4b\x1f\xc8\xd4\x83\xd6\x7e\xf1\x50\x0f\xaf\x4f\x26\x7f\xc6\xff\x61\x1f\x59\xd2\xf8\xc5\x43\x3d\xf8\x8d\xbe\x78\xa8\xeb\x9d\xc5\x2f\x1e\xea\x81\x30\x3f\x7e\xf1\x50\x0f\xc4\x27\x31\x61\x1f\x99\xb4\x98\xb0\x2f\xf8\x3f\xec\x83\x4b\x10\x13\xf6\xbd\x5e\x05\xfb\x7c\xf3\x09\xfb\x5e\xef\x3e\x60\xef\xf0\x35\xbf\x78\xa8\xe7\xe6\x73\x2e\x8e\xbc\xdf\x67\x5f\x86\xbb\x1a\xbf\x78\xa8\x23\xd2\x13\x62\x42\x41\x04\x22\x66\xa4\x49\x6d\x01\xb6\x8e\x34\xa9\x15\x0b\x88\x34\xa9\x95\xe0\x18\x6d\x52\xeb\x04\xb7\x49\xed\xf2\x7f\x70\x80\x9c\x2b\x36\xa9\xbd\x5e\xa5\xc3\xfa\xe1\xc9\x32\x1c\xa0\xea\xb9\xc9\x39\x9f\x05\x0e\x90\x63\xf0\x8b\x79\x3a\x35\x80\x21\x7e\x31\x4f\x37\x6f\x1f\xbf\x98\xa7\x2f\x97\x82\x2f\xe6\xe9\xbf\x65\x82\x46\xb4\x67\x7a\x0e\x9e\x0f\x1b\x57\x44\x81\x82\x5a\xda\x10\x51\xa0\x78\x96\xbf\x84\xe7\x03\xb6\x12\x51\xa0\x10\xcc\x8c\x28\x50\x50\x91\x1b\x22\x0a\x14\xb4\xf9\x0d\x11\x05\x8a\xc7\xf7\x82\x02\xc5\xe3\x3b\x43\x81\x82\x82\xe3\x10\x51\xa0\x10\x86\x8c\x28\x50\x50\x7e\x1c\x22\x0a\x14\x54\x07\x87\x88\x02\x05\x12\x9f\x21\xa2\x40\x21\x3c\x1b\x51\xa0\x78\xb4\xaf\x6a\x1f\x77\x47\x81\xe2\x75\xd9\x45\x81\x22\x54\xef\x80\x4a\x48\xf5\x97\x70\x79\xfc\x7e\x48\x49\xe4\xed\xfd\xe0\xf2\x80\x59\x44\xa4\x24\x44\x99\x22\x52\x12\xf9\xf7\x64\x70\x79\x7c\x2f\x48\x49\x98\x52\x89\x48\x49\xa0\x03\x19\x22\x52\x12\x79\xff\x05\xef\x45\x54\x26\xb2\x2f\x1e\x95\x89\xec\xd2\x8a\xca\x44\xf6\xf3\xa1\x32\x21\xe0\x15\x51\x99\xf8\x4d\x07\x54\x26\xb2\xfb\x16\x2a\x13\xd9\x7d\x0b\x95\x89\x7c\xfc\x9f\xa6\xf3\x3a\x9b\xa6\xf3\x92\x50\x99\xc8\xd7\x5f\x6a\xba\x77\xc0\x74\x77\x3f\x54\x26\xb2\x9f\x5d\x95\x09\x20\x99\x88\xca\x44\x23\xd0\x8e\xaa\x4c\x90\x28\x89\xaa\x4c\xb8\x7c\xa2\x32\x81\xe6\x73\x88\xa8\x4c\x50\x34\x13\x22\x2a\x13\x28\x47\x87\x88\xca\x04\xa5\xb4\x21\xa2\x32\xa1\xa7\x18\x51\x99\x40\xc9\x39\x44\xfb\xd7\x66\xaf\x02\xcd\x27\x7b\x15\x68\x3e\xc5\xff\x41\xf3\xc9\x7c\x5a\x54\x26\x1a\xe1\x6c\x44\x65\xa2\x91\x3a\x88\xa8\x4c\x98\x32\x8a\xa8\x4c\x08\x24\x45\x55\x26\xf4\x2d\x54\x99\xf0\x6b\xaa\x32\xe1\xe0\x51\x65\xc2\x09\xa0\xca\x84\x03\x59\x95\x09\xa7\x83\x2a\x13\x7a\x44\xaa\x4c\x38\xa9\x54\x99\x70\x4c\xa8\x32\xe1\xf7\x53\x65\x62\x7a\x3f\xb8\x3c\x4e\x77\x55\x26\xf0\x6f\xa3\x2a\x13\x0e\x56\x55\x26\x1c\xd6\xaa\x4c\x38\xdd\x55\x99\x70\xfa\xa9\x32\xe1\x98\x50\x65\x02\x3f\x2e\xaa\x32\xe1\x22\xac\xca\x84\xe3\xcc\x46\xb4\xe4\xc3\xa3\x4a\x12\x64\x8f\xa3\x4a\x12\xbe\x5d\x95\x24\x7c\xf3\x2a\x49\x24\x9f\x0c\x3e\x8b\xdf\x4f\x25\x09\x92\x67\x51\x25\x09\x97\x5d\x95\x24\x48\xc8\x45\x95\x24\x1c\x83\x2a\x49\x90\xec\x89\x2a\x49\xb8\x69\xab\x24\xe1\x52\x0e\x55\xf0\x38\x3e\xa1\x0a\x1e\xc7\x19\x54\xc1\xe3\x93\x41\x15\x3c\x8e\x5d\xa8\x82\xe2\x43\x51\x25\x09\xbd\x41\x95\x24\x5c\x6c\x54\x92\xf0\x1b\xa9\x24\xe1\x78\x51\x49\xc2\x91\x05\x55\xf0\xe2\xe9\xc7\x2d\x9f\x85\x27\x53\x65\x02\x82\x63\x04\x65\x7a\xf4\x30\x41\x92\xde\xe0\x35\x3f\xa4\xe5\x25\xe9\x16\x41\x92\x5e\x58\x38\x11\x24\x49\x04\x23\x82\x24\x89\x8a\x44\x90\xa4\x37\xf9\x4b\x38\x2b\xba\x75\x20\x49\x26\x89\x22\x48\xd2\x4b\x06\x3c\x82\x24\xbd\x3e\x35\x48\x52\x08\x1e\xe9\x2e\xf1\x55\x40\x92\x02\x49\x9b\x08\x92\xf4\x73\x89\x40\x92\x7e\xee\xc4\x91\xd8\xe0\x39\x88\x0d\x6e\xc5\x20\x49\x26\x58\x22\x48\x92\x89\x99\x08\x92\x94\xfe\x12\xe7\x0c\x11\x90\xe9\xcb\x70\xfc\x77\x04\xdd\xe3\xf7\xd0\x9b\x23\x1f\xe5\x33\x3d\x39\x90\x51\x99\x48\xe4\xd5\x22\x2a\x13\xc9\x21\x8f\xca\x44\x02\xc7\x8d\xa8\x4c\x24\x48\x38\x11\x95\x89\x44\x80\x17\x51\x99\x48\xd0\xc9\x22\x4a\x12\x49\xaf\x0e\x25\x89\xa4\xff\x87\x92\x84\xc0\x47\x44\x49\x22\x05\xaf\x89\x0d\x60\xa0\x11\x25\x89\x14\xbd\xbb\x36\xf8\x64\xd8\xa0\x2f\x8a\x92\x84\x10\x49\x42\x49\x22\xf1\xf9\x12\x4a\x12\x89\x8f\x92\x50\x92\x48\x78\x83\x09\x25\x09\x4a\x4d\x43\x52\x49\xe2\x78\x2e\x73\x4d\xcf\x15\xfe\x77\x38\xc2\x3e\x40\x98\x84\x92\x44\x7a\x3c\xf7\xd9\x27\x0c\x92\x50\x92\x90\x39\x9b\x50\x92\xc8\x84\x7b\xc9\x4e\xb7\xc0\x5f\xc9\x76\xb6\xf8\x86\x49\x25\x89\xee\x53\xc3\xe9\x60\x91\x4a\x2a\x49\x00\x8d\x25\x95\x24\xa0\x3b\x26\x95\x24\xc8\x9c\x27\x95\x24\x40\xc9\x13\x4a\x12\x05\xdf\x22\xd9\xea\x36\x78\x4d\x38\x0f\x40\x94\x09\x25\x89\x4e\x84\x90\x50\x92\xe8\xd1\xff\xc1\x79\x60\x41\x49\xb4\xba\xed\x2c\x44\x09\x95\x89\xce\xa2\x98\x50\x99\xe8\xd1\xab\xa0\x32\xc1\x24\x4e\xa8\x4c\xf4\xe2\x53\xc3\x17\x60\x2c\x25\x54\x26\x3a\xd4\xbd\x84\xca\x44\xcf\x7c\x15\x54\x26\x7a\xf6\x97\x70\x1e\xf0\x9d\x12\x4a\x12\x9d\xf1\x92\x50\x92\xe8\x2c\xad\x29\x68\x03\x6f\x1e\x25\x89\xce\xb6\x99\x82\x36\xf8\x3f\x38\x0f\x2c\xa6\x09\x25\x89\xee\x3b\x43\x49\xa2\x13\x27\xa6\xa0\x0d\x3e\x0b\x36\x38\xea\x50\x92\xe8\x8e\x02\x94\x24\xe8\x5e\x18\x12\x4a\x12\x9d\xc2\xa6\x04\xad\xaf\x83\x05\x24\x68\x7d\x9d\x19\x90\xa0\xf5\x89\xc2\x24\x68\x7d\x74\x4b\x0c\x09\x5a\x5f\x27\xb3\x9c\xa0\xf5\xd1\x3b\x31\xa4\xa8\x7d\xbc\x33\x68\x7d\xc8\x62\x85\x04\xad\x0f\x1d\xe9\x90\xa0\xf5\xa1\x0e\x1d\x52\xd4\x3e\xde\x3c\xb4\x3e\x74\xa4\x43\x82\xd6\xd7\x99\x7f\x09\x5a\x5f\x27\xca\x49\xd0\xfa\x3a\xdc\x8c\x64\xab\x5b\x96\xdd\xa4\x02\x85\xdf\x1d\x5a\xdf\x64\xb5\x49\xd0\xfa\xa6\x5f\x1a\x5a\x9f\x08\x4d\x82\xd6\x37\x7d\x13\x49\x4e\x87\xf7\x93\xb7\xc1\x9b\x87\x9e\x77\x7e\xe7\x20\x05\xb0\x85\x27\xe5\x22\x70\x35\x12\xf4\xbc\x03\x39\x37\x41\xcf\x3b\xb8\x13\x09\x7a\xde\xe9\x9e\x03\xf8\x1f\x9e\x03\xf8\xc7\xd1\x49\x50\xf0\x3e\xb1\xa4\x7f\x2e\xc9\x09\x76\x9e\xfb\x64\x82\x9d\x77\xf0\x84\x13\xec\xbc\x43\xc8\x93\x60\xe7\x9d\xe5\x0d\xe0\x3c\x00\x24\x25\xd8\x79\x87\xc0\x22\xc1\xce\x3b\x78\x44\x09\x76\x1e\xad\xe4\x43\x82\x9d\x77\xf0\x73\x12\x14\xbc\x03\xb3\x34\x41\xc1\x3b\xf8\xda\x09\x0a\xde\x21\x37\x98\xa0\xe0\x1d\xb2\x5e\x09\x0a\xde\x21\xe8\x48\x50\xf0\xac\x1e\x4a\x50\xf0\xac\x3a\x4a\x50\xf0\x8e\x8b\x0d\x14\xbc\xe3\x52\x07\x05\xef\x34\xaf\x89\x7d\xcd\x27\xc3\x3e\x0a\x08\x12\x14\xbc\x03\x34\x96\x8a\xf6\xf1\x9c\x55\xfb\x78\x16\x28\x78\x87\x20\x27\x55\x3f\x1f\x93\xbf\xfa\xf9\x78\x2f\x15\xfb\x08\x13\x53\xc5\xbe\xe1\x55\xe0\x43\x24\x7f\x09\x1f\x02\x88\x2b\xa9\x24\xe1\x90\x57\x49\xa2\xf8\x3f\xf8\x10\xc5\xbb\xc3\x87\x70\x78\xa2\x24\xf1\xe2\xbf\x27\x95\x24\x5c\x14\x55\x92\xa8\x1e\xc1\xf7\x70\x41\x41\x49\xe2\x75\x19\x44\x64\xdd\xa4\x4d\x42\x64\xfd\x75\x72\xa0\x32\x61\xcd\x53\x42\x65\x42\x30\x2c\xa1\x32\xf1\x3a\xf9\x51\x99\x78\x09\xde\x53\xd3\x3e\xde\x67\xd3\x3e\xcf\x61\x5f\xf6\x2a\xd8\xe7\x22\xd5\xb4\x0f\x8b\x9a\xf6\xf9\x9c\xf2\x3d\xbc\x26\x7c\x0f\xbf\x6d\x93\xef\xc1\x78\x41\x65\x22\x50\xee\x92\x50\x99\x08\x6e\x63\x5d\xbe\x07\xdf\x08\x95\x89\xe8\x12\xa2\xca\x84\xb6\xa3\x32\x21\x88\x96\xba\x7c\x0f\x9e\x45\x95\x09\x97\x5d\x55\x26\x92\xe7\xe0\x7b\x10\x8d\x25\x55\x26\xb4\x4f\x25\x09\xbf\x34\x4a\x12\xc9\x65\x10\x25\x89\xe4\x96\x83\x92\xc4\xcf\x9d\x40\x48\x3d\xb9\xfd\x21\xa4\x9e\x7c\x4e\x94\x24\x92\x0b\x1f\x4a\x12\xc9\x37\x88\x92\x44\x72\x9c\xa1\x24\x91\x80\xb8\x12\x4a\x12\x74\xbf\x0b\x09\x25\x89\x74\xbd\x03\xbc\x8d\xeb\x55\xbe\xef\x90\x5f\x8f\x3e\x1b\x32\x9c\xa3\x84\x5a\xba\x25\x42\x49\x0a\x1e\x29\xa3\x84\xca\x44\x26\x9b\x9b\x50\x99\x28\x8f\x47\x81\x23\x7f\x09\x6f\x03\x3f\x3c\xa1\x32\x91\x7d\x16\x54\x26\x32\x31\x64\x42\x65\x22\xbb\x08\xa3\x32\x91\xa1\x34\x26\xa4\x24\x0a\x3e\x6c\x42\x4a\x22\x93\xe0\x4c\x48\x49\x64\xd2\xb9\x09\x29\x89\x7c\xb0\x08\x29\x89\x0c\x84\x97\x90\x92\xc8\xda\x8e\x94\xc4\xcf\xb5\x41\x4a\xa2\x10\x6d\x26\x5a\xf2\x7e\x88\xd0\xbf\x97\x64\xba\xf5\xd6\xec\xdf\xa0\x74\x38\x08\x50\x99\xa8\x00\x3b\x09\x95\x89\xea\x90\x47\x65\xa2\xba\xd7\x2f\xe8\x1e\x04\x63\x69\x41\xf7\xf0\xd3\xa2\x40\x51\xf5\x50\x50\xa0\xa8\x20\xef\x09\x05\x8a\x0a\x95\x3b\xa1\x40\x81\x7a\x57\x48\x28\x50\x58\xac\x9b\x50\xa0\x68\x7a\x6e\x28\x50\x34\xf7\x2d\x14\x28\x5a\xf3\x1c\x7c\x0f\x3d\x45\x54\x26\x2c\xeb\x4d\xa8\x4c\x34\x07\x01\x2a\x13\xcd\xe1\x82\xca\x84\x85\xbc\x09\x95\x09\x14\xb3\x42\x42\x65\x02\x1d\xac\x90\x50\x99\x68\xee\xf5\xa8\x4c\x74\x38\xcb\x09\x95\x09\xcb\x73\x13\x2a\x13\x9d\x32\x99\x84\xca\x44\xf7\x7e\xa8\x4c\x0c\xc0\xd3\x84\x92\x04\x32\xd9\x21\xa1\x24\x41\x1f\xc0\x90\x50\x92\xa0\x63\x60\x48\x28\x49\x8c\xe0\x2f\x2b\xe7\xb0\x08\x25\x89\xa1\x8f\x8e\x92\xc4\x70\xd0\xa1\x24\x31\x5c\xf4\x51\x92\xb0\x92\x29\x1d\x95\x40\x18\xd6\x28\x49\x8c\xe3\x55\x50\xca\xd0\x13\x86\x9e\x37\x49\xfd\x24\xe8\x79\xd3\xaf\x09\x3d\x6f\xea\x9d\x41\xcf\x9b\x8e\x10\xe8\x79\xd3\x45\x1f\x7a\xde\xd4\xc3\x84\x9e\x37\x61\xd3\x24\xe8\x79\x53\x9f\x19\x7a\xde\x74\xf1\x86\x9e\x37\xdd\x10\xa0\xe7\x4d\xb7\x0e\xe8\x79\x53\x2f\x12\x7a\xde\x74\xab\x82\x9e\xb7\xdc\xde\xa1\xe7\xad\xe9\x73\xca\x4b\x61\x2c\x41\xcf\xdb\xd0\xf3\x32\xf4\x3c\x1a\x44\x85\x0c\x3d\x4f\x18\x2b\x43\xcf\xa3\xcd\x54\xc8\xd0\xf3\x68\x2c\x15\x32\xf4\xbc\x0d\x75\x2f\x43\xcf\xa3\x39\x56\xc8\xd0\xf3\x36\xcb\x7c\x86\x9e\x67\x61\x74\x86\x9e\x47\x8b\xa6\x90\xa1\xe7\xd1\x4a\x2a\x64\xe8\x79\xbb\x79\x04\x2f\x85\xf9\x90\xa1\xe7\x09\xb7\x65\xe8\x79\x96\x5e\x67\xe8\x79\xb4\xd8\x0a\x19\x7a\xde\xe5\x8b\x65\xe8\x79\x17\xae\x4b\x7e\x55\x02\xe1\x0e\x50\xf0\x2c\xc4\xc9\xaf\x9c\x15\x2c\x82\x82\x77\xa9\xe1\xcc\xe0\x51\x96\x3b\x67\xf0\x28\xb1\x95\x0c\x1e\xa5\x93\x90\xc1\xa3\xde\xea\xff\x50\xd8\xc8\xde\x0f\x3e\x0b\xe3\x25\xa3\x40\xf1\x92\xd6\xcb\x28\x50\xe8\x40\x64\x14\x28\x74\x20\x32\x11\x50\xf5\xee\x28\x50\xbc\xa4\x8c\x32\x0a\x14\x2f\x63\x22\xa3\x40\xf1\xb2\x4a\x65\x14\x28\x5e\x22\x92\x8c\x02\x85\x9b\x7d\x46\x66\x42\xc7\x23\x23\x33\x11\xd8\x64\x32\x32\x13\x81\x4d\x34\x23\x33\x11\x7e\xff\x5b\x1c\x61\x2d\x32\x13\xb4\x92\x0a\x19\x99\x89\x90\xfe\x82\xf7\x32\x0a\x14\xf4\x69\x0d\x19\x05\x8a\x44\xd0\x98\x51\xa0\x48\x2c\xc9\x19\x05\x8a\xa4\x79\x28\x50\x24\x96\x97\x8c\x02\x45\x6a\xfe\x2f\x73\x84\x09\x28\x50\x24\xa6\x5f\x46\x81\xc2\xbd\x3e\xa3\x40\xe1\xee\x9e\x51\xa0\x48\x4e\x00\x14\x28\x92\x2f\x10\x05\x0a\x13\x17\x19\x05\x0a\x77\xf7\x8c\x02\x45\x72\x08\xa2\x40\x91\xd8\x3a\x32\x0a\x14\x89\x0d\x21\xa3\x40\x91\x58\x34\x32\x0a\x14\x89\xa5\x20\xa3\x40\x91\xf0\x22\x33\x0a\x14\x19\xa0\x25\xa3\x40\x91\xfc\xd0\x28\x50\x98\x6e\xc9\x28\x50\x24\x3c\xa2\x8c\x02\x45\x8a\xde\x01\xfb\x9c\x8c\x28\x50\x98\xec\xc9\x09\xfb\x58\x50\x72\xd2\x3e\x3e\x5f\xd2\x3e\xde\x59\xc2\xbe\xa0\x0d\xb2\x62\x3c\xc2\x3e\xbc\xcf\x8c\x72\x85\x69\x9a\x8c\x72\x85\xfe\x51\x46\xb9\x42\xb6\x6a\x46\xb9\x22\x65\x7f\x89\x7d\x2c\x7c\x39\x6b\x1f\x77\x40\xb9\x42\x9f\x2b\xa3\x5c\x91\x08\x83\x33\xca\x15\xfa\x71\x19\xe5\x8a\xe4\x20\x47\xb9\x22\x91\x73\xcb\x28\x57\x24\x17\x22\x94\x2b\x52\xf4\xa9\xb1\x8f\x98\x20\xa3\x5c\x91\xc8\x30\x66\x94\x2b\x4c\x97\x65\x94\x2b\x12\xf9\xbf\x5c\xfc\x7e\x5c\x13\xe5\x0a\x3d\xcc\x5c\x24\x74\x71\x07\x94\x2b\x92\x0b\x03\xca\x15\x7a\x83\xb9\x38\x3e\xbd\x8a\xe3\xd3\x5f\x7e\xf6\xd5\xc7\xab\x74\x8e\xfc\x1f\xac\x18\x7c\xb5\x8c\x72\x85\x65\xd2\x19\xe5\x8a\x02\x46\x9f\x8b\xac\x18\x2c\x2a\xb0\x62\xf0\xb2\x32\xaa\x16\x72\x5e\x33\xaa\x16\x05\x3f\x2e\xa3\x6a\x51\x49\x6d\x65\x54\x2d\x2a\x29\xc6\x8c\xaa\x85\xc5\x44\x19\x55\x8b\x82\x57\x97\x51\xb5\xa8\x8f\xd7\x2c\x1c\x71\xbf\x2a\x2b\xc6\x5f\xc2\x8a\x21\x7b\x9c\x51\xae\x68\xdb\xfb\xc1\x7c\xd9\x9e\x83\xf9\x02\x23\x28\x43\x07\xb4\x64\x27\x43\x07\xb4\x84\x26\x43\x07\xec\x6e\x47\xd0\x01\x3b\xe9\x81\x0c\x1d\xb0\xc3\x21\xce\xd0\x01\xfb\xf1\x97\x30\x5f\x20\xcf\x65\xe8\x80\x1d\x1f\x3d\x43\x07\xa4\x71\x56\xc8\xd0\x01\x3b\xe8\x54\xfe\xa2\xaa\x46\x73\xac\x90\xbf\xa8\xaa\x75\x60\xcf\xdc\x60\xc5\xb8\x66\x41\x1c\x1c\xae\x2f\x0d\x56\x8c\x9b\x68\x83\x15\xe3\x22\x0c\xa9\x70\xb8\x0e\x42\x2a\x1c\x6e\x24\x90\x0a\x07\x4e\x57\x86\x54\x68\xf5\x73\x86\x54\x38\xa0\x1f\x66\x48\x85\xd6\x3b\x67\x48\x85\xa3\xfd\xa5\x71\x91\xe1\x1b\x0e\x17\x29\xf8\x86\xd6\x84\x67\xf8\x86\x8b\x40\x2d\xc3\x37\x5c\x4e\xfe\x6e\xbb\x13\x7f\x09\xd1\xc6\x65\x17\xbe\xe1\x72\x9f\x84\x6f\xb8\xf0\xb2\x32\x7c\xc3\xe5\x6b\x81\x53\xb8\xfc\xb4\xf0\x06\x69\x76\x19\x32\xbc\xc1\x9f\x57\x00\x37\xf0\xe7\x93\xc0\xff\xa3\x71\x63\xc8\xf0\xff\x7e\x7e\x00\xfc\x3f\x21\x92\x0c\xc9\x6f\xfb\x31\x21\xf9\xed\xe3\x35\xe9\xa1\xe2\x76\x04\xc9\x6f\x43\x60\xc9\x90\xfc\xb6\xc3\x0c\x92\xdf\x06\xf6\xcc\x90\xfc\x10\xd2\x0c\x19\x92\xdf\x76\x80\x40\xf2\xdb\x64\x96\x33\x24\x3f\x84\x3b\x43\x86\xe4\xb7\xf1\x3e\x33\x24\x3f\xe4\x46\x43\x86\xe4\x77\xe1\x35\x64\x48\x7e\x87\x30\x31\x43\xf2\xbb\x4e\x3f\x48\x7e\xf7\xf1\xc9\x36\x47\xbc\x79\x88\x7c\x17\xce\x43\x86\xc8\x77\x5d\x50\x16\x22\x2f\x2e\x9f\x0b\x91\x17\x07\xdd\x42\xe4\xc5\xe5\x6c\xc1\x6e\xd1\x0f\x58\xb0\x5b\xc8\xa0\xe6\x05\xbb\x05\xcf\x3b\x2f\x14\x52\x9c\xfc\x0b\x85\x94\xc7\x6b\xc2\x6e\x21\x0a\xc8\x0b\x76\x0b\xcc\x89\xbc\x60\xb7\xbc\xde\x4f\x76\x8b\xcf\x29\xbb\x85\xef\xb0\x61\x78\x90\x29\xcc\x1b\x86\x87\x36\x6c\x18\x1e\x6e\xd3\x1b\x86\x87\x5b\xe3\x86\xe1\xe1\xa8\xdb\x30\x3c\x5c\xd8\x37\x0c\x0f\x47\xeb\x86\xe1\xe1\x76\xbb\x61\x78\x38\x8d\x36\x0c\x96\xe0\x39\x18\x2c\x8e\xf9\x0d\x83\x25\x79\x07\x18\x2c\x7a\x9f\x5f\x74\xd4\x83\xfe\xe6\x17\x1d\x75\x93\x28\xf9\xc0\x60\x71\x7b\x38\xd8\xa7\xe3\x01\xe4\x14\xdc\xd4\x8e\xf6\x71\x87\x83\x7d\x2e\x1a\x07\xfb\xdc\x44\x8f\xf6\x79\x0e\xfb\xdc\x72\x0e\xf6\x11\x2f\xe4\x83\x7d\x6e\x39\x07\xfb\xf4\x37\x8f\xf6\x61\xed\xc1\xbe\xec\xff\xb0\xcf\xad\xf8\x60\x9f\xce\xda\xc1\x3e\xdd\x89\x2f\x72\xea\x99\xec\x6a\xbe\x28\xdc\x20\x99\x90\x2f\x0a\x37\x44\x63\xf9\xa2\x70\xe3\x72\x7d\x61\xb0\x38\xfb\x2f\x0c\x16\x92\x7c\xf9\xc2\x60\x59\xfe\x0f\x15\x1b\x37\xbc\x2f\x3a\xea\x85\xd4\x41\xfe\xa2\xa3\xfe\xdb\xd4\xbe\xe8\xa8\xff\xb6\xbf\x2f\x3a\xea\x15\x17\xac\x7c\x11\x50\xaf\xd8\x5e\xbe\x08\xa8\x37\xc6\x6e\xf9\xa2\x9c\xae\x84\x55\xf9\xa2\x9c\x6e\x1d\x6a\xf9\xa2\x9c\xde\x48\x86\x94\x2f\xca\xe9\x7d\xf8\xbf\xef\x39\xfb\xf4\x9a\x9d\xa3\x87\xa3\xc1\xd1\x5f\x5e\x72\xf9\x02\xa0\x3e\x40\x4b\xcb\x17\x00\xf5\x81\x32\x40\xf9\x02\xa0\x3e\xb3\x47\x07\xda\xcd\xe0\x48\x12\x0e\xff\xfb\x02\xa0\xbe\x58\x88\xca\x07\x1d\xf5\x43\x80\x57\x3e\xe8\xa8\x9f\xeb\x2f\x21\xb0\xb0\x8b\x15\xd4\x22\xa4\xe2\x17\xd4\x22\x68\xa0\x14\x0a\x6a\x11\x0f\xcc\xd9\x82\x5a\x04\x1a\xbe\xa1\xa0\x16\x81\x80\x7e\x28\xa8\x45\xa8\x05\x55\x50\x8b\x40\x86\x3f\x14\xd4\x22\x68\xbc\x14\x0a\x6a\x11\xf4\xd9\x0d\x05\xb5\x88\x87\x05\xba\xa0\x16\xa1\x86\x54\x41\x2d\x42\xb5\xa9\x82\x5a\x04\x0d\xa2\x42\x41\x2d\x82\xe6\x51\xa1\x04\xdb\xf8\xf0\x9c\x28\x42\x04\x16\xef\x82\x22\x44\x60\x11\x2e\x28\x42\x58\x51\x56\x50\x84\x88\x7e\x76\x14\x21\x0a\x00\x62\x41\x11\xa2\x90\xaa\x28\x28\x42\x94\xc7\x5f\x2e\xce\xf1\xd9\x83\x2c\x15\xcf\x1d\x7e\xe9\x53\x5f\x7e\xc9\x39\x14\x21\x0a\x0b\x7b\x41\x11\xa2\x90\xf0\x28\x28\x42\x14\x96\xf2\x12\x61\xe1\x30\xe4\xcb\x17\x01\xe5\x42\xd8\x56\xbe\x08\x28\x17\x3c\xc5\x42\xbb\xa8\xcc\xd6\x51\x68\x17\x65\xe6\xae\xd0\x2e\x4a\xad\xb9\x42\xbb\x28\x24\xd7\x43\xa1\x5d\x14\x92\xf2\xa1\xd0\x2e\x4a\x5d\xb8\x42\xbb\xa8\xc6\xa6\x5d\x68\x17\xd5\x9a\x4f\x0d\x4b\xa5\x7a\x3f\x58\x2a\xb8\x13\x85\x76\x51\xc8\xaa\x87\x92\x64\xa9\x60\x03\xed\xa2\x4c\x89\x15\xda\x45\xa9\x58\x57\x68\x17\xa5\x2e\x5c\xa1\x5d\x54\xc3\xaf\x2a\xb4\x8b\x6a\x78\x44\x85\x76\x51\x8d\xa4\x46\xa1\x5d\x94\xe9\xab\x42\xbb\x28\x13\x6b\x25\x61\x1f\x51\x63\x49\xd8\x77\xbd\xc3\x67\x1f\x82\xb4\xa1\xd0\x4a\x6a\xe0\xe3\x15\x5a\x49\x8d\xe3\x2f\x61\xa9\xe0\x45\x16\x5a\x49\x8d\xed\x11\x2c\x15\xc7\x3c\xad\xa4\xc6\xf6\x08\x96\x8a\x73\x93\x56\x52\xa6\xa1\x0a\xad\xa4\x86\xf3\x88\x56\x52\x03\x77\xa2\xd0\x4a\x6a\x38\xae\x69\x25\x35\x9c\x63\xb4\x92\x1a\xce\x15\x5a\x49\x0d\xfc\xe9\x92\x61\xe1\x38\xe3\x32\x2c\x1c\xa2\xb8\x42\x9b\xa9\xe1\x2c\xa6\xcd\x14\x8d\xc8\x42\xa1\xcd\xd4\xc4\xfb\x2c\xb4\x99\x9a\xde\x9d\x36\x53\xd3\x19\x47\x9b\xa9\x55\x3c\x82\xc1\xe2\x57\x81\xe4\x67\x3a\xa9\x40\xf2\x33\x69\x53\x20\xf9\x99\x78\x2a\x90\xfc\x4c\x20\x15\x48\x7e\xdb\x91\x05\xc9\x6f\xff\x9e\x05\x45\x96\xe6\x2f\x51\x64\x71\x24\x43\xf2\x33\xb5\x55\x20\xf9\xd1\x45\x3c\x14\x48\x7e\xa6\x9a\x0a\x24\x3f\xdd\xc8\x52\x65\xe8\xfc\x05\xef\x15\xf8\x7f\xe6\xc0\x0a\x1c\x3f\x4b\x8c\x0b\x1c\x3f\x81\xb2\x02\xc7\x8f\xfe\x7a\xa1\xc0\xf1\x53\x82\xaf\xd0\x65\xea\xb0\x8b\x15\xba\x4c\x09\xb7\x15\xf8\x7f\xc7\xa1\x04\xff\xef\xf8\xc1\xe0\xff\x09\x27\x16\xf8\x7f\xc7\x05\x1a\xfe\xdf\x4d\x1e\x21\x38\x43\xd0\x5f\xe0\xff\x5d\xbc\x89\x02\xff\xef\x42\x94\x2a\x28\x42\xc8\x6e\x2e\x28\x42\x58\x00\x5c\x50\x84\x10\xf0\x2a\x28\x42\x98\x77\x2a\x28\x42\xbc\xd5\x73\x90\x77\xdc\x51\x51\x7d\x30\x7b\x55\x50\x7d\x78\x8b\x77\x80\xa0\xe3\x90\x40\xf5\xe1\x75\x99\x40\xf5\x41\x60\xae\xa0\xfa\xf0\x3a\x24\x50\x7d\x30\x5b\x56\x50\x7d\x78\xf1\xdc\x0a\xaa\x0f\x6f\xf4\x1c\x36\x14\xff\x87\x0d\x78\x4b\xa5\x6b\x03\xb6\xa3\xfa\x10\x48\x71\x14\x54\x1f\x64\x0d\x17\x54\x1f\x42\xf0\x9a\x30\x58\x7e\x47\x30\x58\x08\x9f\x0b\xaa\x0f\xe9\xf7\x64\x30\x58\xb2\xe7\x60\xb0\x68\x1f\xaa\x0f\x26\xb3\x0a\xca\x0e\x26\x90\x0a\xca\x0e\x89\x20\xae\xa0\xec\x90\x8a\xbf\x84\x69\x33\x3c\x82\xa5\x82\x77\x56\x50\x76\x48\x4e\xb8\x01\x4b\xc5\x6f\x34\x60\xa9\x90\x7d\x2c\xa8\x3e\x98\xb4\x29\xa8\x3e\x24\xc7\x2e\xaa\x0f\xa6\x2a\xca\xd0\x06\x8f\xb4\x81\xd1\x33\x64\x12\x79\x04\x0b\xc7\x6f\x8b\xea\x43\x72\xf9\x44\xf5\xc1\x24\x58\x41\xf5\xc1\x84\x5c\x41\xf5\x21\x39\xa5\x51\x7d\xc8\x8e\x1e\x54\x1f\x32\x38\x7c\x41\xf5\x81\xc6\xa2\xa1\xa0\xfa\x50\x7e\xe7\x3e\xfb\x0a\x1e\x66\x41\xf5\xc1\x94\x43\x41\xf5\xc1\xb4\x49\x41\xf5\x81\xbe\xe1\xa1\x4c\x18\x10\xd3\x6b\xc2\x80\x70\x3e\xa0\x08\xd1\x97\x4f\x0d\xa4\xe6\xfd\x16\x0c\x08\xe7\xed\x82\x01\x01\x62\x52\x50\x8b\xf8\xf9\x78\xa8\x45\x74\x1d\x08\xd4\x22\xfa\xf4\x08\x86\x87\x5b\xdc\x82\xe1\x01\x26\x53\x50\x92\xe8\x6e\x78\x28\x49\x74\x72\xd0\x05\x25\x89\xee\x92\x85\x92\x44\x1f\xfe\x0f\x86\xc7\xf4\x7f\xd8\xa7\x2f\xba\xb4\xcf\x23\xed\xe3\xbd\xa0\x24\xd1\xa1\x24\x14\xe4\x22\x3a\x20\x7d\x41\x2e\xa2\xbb\xbe\x6c\xed\xe3\x7e\xc8\x45\x74\x80\xf8\x02\x91\xaf\x77\x8f\xb0\x0f\xda\x41\x41\x2e\xa2\x03\xe7\x17\x48\x7e\xbd\x7b\xa4\x7d\xfe\x0f\xfb\xfc\xd2\x90\xfc\xfa\x7f\x11\xc2\xbf\x97\x64\xf8\x7f\x2a\xc2\x16\xf8\x7f\xd6\x2e\x15\xf8\x7f\x5d\x5f\x66\x6b\x3a\x83\x60\x6b\x3a\xc3\xe5\x68\xba\x47\x98\x0e\x8b\xa3\x1c\xc9\x2d\x3c\xe6\x91\xdc\xc2\x2b\x3b\x92\x5b\x18\xf2\x30\xf7\xa6\xde\x84\x1a\x10\x0e\x17\xe8\x79\xe7\x7a\x07\xf8\x10\xa4\x1c\x0a\xf4\xbc\x0b\x1e\x5b\xa0\xe7\x5d\xe8\x6b\x05\x7a\xde\x21\x90\x29\xd0\xf3\x2e\x59\xe0\x02\x3d\xef\x80\xb2\x16\xe8\x79\x97\x20\xb5\x40\xcf\xbb\x64\xee\x0a\x4d\xa0\xae\x8b\x06\xf4\xbc\xeb\x52\x07\x3d\xef\xbe\xde\x61\x70\x07\xaf\x39\x39\xc7\x3b\x83\x9e\x77\xf4\x5e\xa0\xe7\x5d\x08\x79\x05\x7a\x1e\x1d\xc4\x42\x81\x9e\x77\x99\xd2\xf5\xd1\x86\xce\x11\x9c\x0e\x3c\xa9\x0a\x3d\xef\x92\x21\xae\xd0\xf3\x64\x8f\x56\xe8\x79\x37\x7a\x84\x0d\xa4\xa1\x2a\xf4\xbc\x0b\xf5\xab\x42\xcf\xb3\x44\xa8\x42\xcf\xbb\xe4\xd1\x2b\xf4\xbc\xfb\x78\x3f\xec\x4b\x3e\x19\xf6\x3d\x5e\xc5\x6f\xe4\xb3\xf8\x8d\x0a\x47\xda\xa7\x0d\xd8\x87\xff\x5e\x5f\xed\xf3\xc8\x6f\x34\x38\xc2\x3e\xe8\x95\x15\x7a\xde\x25\x51\x52\xa1\xe7\x5d\xb4\x3f\x2a\xf4\xbc\x4b\xc1\x50\x85\x9e\x77\x01\x7d\x2a\x1a\x10\x2f\x5e\x72\x45\x03\xe2\x65\x5c\x57\x34\x20\x5e\x7c\xa0\x8a\x06\x84\x1b\x6c\x45\x03\xe2\x25\x2f\x5a\xd1\x80\x78\xd9\x2c\x2a\x1a\x10\x6f\xf3\xc9\xe4\xac\xf0\x06\xd1\x80\x78\xf1\xce\x2a\x1a\x10\x2f\xfe\x58\x45\x03\xe2\x65\x8e\x55\x34\x20\x84\x87\x2a\x1a\x10\x26\x0b\x2a\x1a\x10\xe1\xf7\xcb\xcc\x11\xcf\x82\x06\x44\xe8\xfe\x52\x4e\x87\x47\x72\x3a\x78\x4b\x68\x40\xd0\xdf\x3c\x54\x34\x20\xe8\xd5\x1d\x2a\x1a\x10\x09\xd8\xac\xa2\x01\x21\xb6\x52\xd1\x80\x48\xd5\xff\xc1\xf7\xa8\xde\x1d\xbe\x07\x2e\x4a\x8d\xf0\x3d\x48\xbe\x54\xf4\x21\xcc\xcd\x57\xf4\x21\x32\x69\xb6\x8a\x06\x84\xd2\xa7\x35\xc2\x87\xf0\x3b\x44\x3a\x87\x90\xda\xaa\xe8\x43\x14\xbf\x26\xfa\x10\xc6\x89\x15\x11\x08\x63\xc8\xfa\xc5\x58\xb5\x90\x20\xab\x11\x1d\x0b\x66\x55\x45\x20\xa2\x90\x20\xab\x08\x44\xa8\x34\x5e\x11\x88\xa8\x7e\x15\x04\x22\x2a\xfe\x6d\x45\x20\xa2\xfa\xdd\x11\x88\xa8\x7e\x77\x04\x22\x2c\xee\xa9\x08\x44\x54\xc7\x0b\x02\x11\x15\x57\xb1\x22\x10\x51\xab\xbf\x84\x10\xd1\xfe\x92\x1d\xaa\x68\x47\x58\x86\x5a\xd1\x8e\x50\xa0\xbc\xa2\x1d\xa1\x9a\x56\x45\x3b\xa2\x91\xe2\xa8\x68\x47\x28\x73\x5e\xd1\x8e\x68\xbf\x9b\xc3\x95\x20\xfd\x51\x93\x5c\x09\xce\xa1\x1d\xd1\x58\xbc\x2b\xda\x11\x74\xed\x0a\x15\xed\x08\x33\x38\x15\xed\x08\xa5\xd3\x2b\xda\x11\xca\x95\x57\xb4\x23\x2c\x82\xad\xe8\x43\xb8\xbb\x57\xf4\x21\x2c\x97\xad\xe8\x43\xf4\xee\xff\x26\x47\x0c\x3a\xf4\x21\xdc\x80\x6a\x96\x2b\xe1\x35\xe1\x4a\x74\xef\x0e\x57\xc2\xc1\x83\x3e\xc4\xc0\xc3\xac\xe8\x43\x58\xf6\x5a\xd1\x87\x50\xd8\xbc\xa2\x0f\x31\x80\xdb\x2a\xfa\x10\x03\x8f\xbd\xa2\x0f\x31\xe0\x5d\x57\xf4\x21\x86\xef\x13\x0d\x08\x03\xd8\x8a\x06\xc4\xf4\xc9\xd0\x80\x98\x64\xe7\x2a\x1a\x10\xb3\x79\x77\xba\x8a\xe0\xaf\x54\x34\x20\xe6\xef\xa9\xe1\x4a\xf8\x96\xd0\x80\x98\x78\x28\x95\x26\x50\xf4\x21\x0b\x95\x26\x50\xb2\x39\x2b\x4d\xa0\x26\x7e\x4e\xa5\x09\xd4\x74\xb0\xa2\x1d\x31\xfd\x0e\xd6\x4a\x01\x75\x54\xa8\x7b\xea\x7c\x55\xa8\x7b\xd3\xef\x07\x75\x6f\x3a\xc8\xa1\xee\xad\xe9\xfd\x26\x47\xbc\xb3\x2a\x57\xc2\x27\x93\x2b\x81\xb5\x50\xf7\x36\x3e\x57\x85\xba\x47\x93\xb2\x50\xa1\xee\x29\xdc\x5e\xa1\xee\x6d\xd8\x26\x15\xea\xde\x76\x94\x43\xdd\x53\xb8\xbd\x42\xdd\xa3\xeb\x5a\xa8\x50\xf7\x2c\xba\xad\x50\xf7\x36\xa2\x90\x15\xea\xde\xc6\x65\xa8\x50\xf7\x36\xbe\x5a\x85\xba\xb7\x71\x4a\x2a\xf4\xbc\x8d\x8f\x57\xa1\xe7\x29\x22\x5f\x9b\x7c\x08\x7f\xa9\x0d\x58\x0b\x3d\x6f\xe3\x33\xd7\xae\x0d\xfc\xb2\x6b\x03\x77\x87\x9e\xb7\xf1\x30\x2b\xf4\xbc\x8d\x77\x56\xbb\x36\x78\x0e\xae\x84\xcb\x2e\x14\xbc\x4b\x6a\xa4\x42\xc1\xbb\xdb\x6b\x7e\x08\x86\xe2\xf3\x15\x44\x88\x7e\xe3\xa1\x82\x08\x3d\xd9\xe7\x84\x2b\xe1\xa6\x86\x02\xc5\x6f\x3b\x02\x2d\x7a\xc9\xcd\x57\x14\x28\x7e\x5b\x23\x0a\x14\xaf\x63\x10\x24\xe9\x75\x0c\x82\x24\xbd\xa4\xa1\x2a\x0a\x14\xc1\x45\x18\x05\x8a\xe4\xbc\x05\x65\x4a\x8e\x2c\x14\x28\x92\xb6\xa3\x40\x91\x7c\x83\x20\x50\xc9\xd1\x03\x02\x95\xfc\x7e\x2a\x50\x38\x5e\x94\x99\x70\x25\x02\x81\x4a\xbe\x6b\x65\x26\x5c\xdd\x94\x99\xf0\x6b\x82\x40\x25\x57\x4c\x10\xa8\xe4\xc8\x02\x81\x4a\xeb\x2f\x12\x5c\x05\x9c\x4a\x0e\x4f\xc0\xa9\xd4\x3d\xc2\xf4\xe9\x25\x31\x1d\xc0\xab\xaa\x40\xe1\xf0\x04\x9c\x4a\x4e\x8e\xa9\xe9\x3e\x34\xa6\xbb\xb4\x02\x4e\x25\x97\x48\xc0\xa9\xb4\xfc\x1f\xa6\x03\xf6\x55\x14\x28\x92\x0b\x03\xc0\x55\x72\xd0\xa9\x40\xe1\x20\x47\x81\x22\xb9\x9c\xa1\x40\x91\xc0\x94\x2b\x0a\x14\xc9\x45\x03\x05\x8a\x34\x3d\x87\x7d\xcb\xab\xf8\x69\xb1\x0f\x05\x8a\x44\x62\xa6\xa2\x40\x91\x08\x79\x2a\x0a\x14\x89\x74\x4b\x45\x81\x22\x6d\x9f\x13\xfb\xa6\x57\xc1\x3e\x97\x48\x15\x28\x8a\x47\x60\xed\x40\x4e\x15\x05\x8a\x1a\x3c\x02\x6b\x77\xf1\x46\x81\xa2\x12\x3e\x57\x14\x28\xaa\x9e\x30\x0a\x14\x15\xdf\xbe\xa2\x40\x51\xf5\x1b\x51\xa0\x90\x1e\x54\x51\xa0\xa8\x14\x31\x57\x14\x28\xea\xeb\x35\xe1\x12\xe8\x65\xa1\x40\x51\x49\xfd\x54\x14\x28\x6a\xf2\x2a\x8b\xa7\xf6\x0e\x9b\x73\xbc\x4f\x14\x28\x2c\x23\xa9\x5b\xfb\x78\x4b\x47\xfb\x18\x59\x47\xfb\x18\x3d\x28\x50\x54\xfd\x77\x14\x28\xea\xeb\xff\xb0\x4f\x9f\x19\x05\x8a\x0a\x8c\x55\x51\xa0\xa8\x7a\xfa\x07\xfb\x92\xff\xc3\x06\x0a\x55\x2a\x0a\x14\xd5\xe5\x05\x05\x8a\xfa\x7a\x4d\x6c\x70\x13\x3d\xd8\xa0\xcf\x75\xe0\x12\xc0\xaa\xa8\x17\x15\x8d\xe3\x11\x4a\x20\x64\xdc\x2b\xea\x14\xe6\x8b\x2b\xea\x14\xcd\x2d\x15\x75\x0a\xeb\x2d\x2b\xea\x14\x82\x45\x15\x75\x8a\x46\xa4\x56\x51\xa7\xb0\xe0\xa4\xa2\x4e\xa1\x9c\x6a\x45\x9d\xc2\x82\xea\x8a\x3a\x45\x77\xfe\xa1\x4e\x61\x88\x5c\x51\xa7\xe8\x2e\x44\xa8\x53\x74\x5c\xa2\x86\x3a\x45\x07\xeb\x68\xa8\x53\x74\xae\xd9\x50\xa7\xe8\xe4\x7d\x1b\xea\x14\xe2\x4a\x0d\x75\x0a\x65\xb8\x1a\xea\x14\xaa\xa5\x37\xd4\x29\x06\xee\x4b\x43\x9d\x42\xd5\xf3\x86\x3a\xc5\x60\xcb\x69\xa8\x53\x2c\xa0\xe2\x86\x02\xc5\x22\xa5\xd9\x50\xa0\x58\xcb\xff\xa1\xb0\xc1\xfc\x6b\x28\x50\xb8\x71\x35\x15\x28\x88\x60\x9b\x0a\x14\xe0\x20\x0d\x05\x8a\x0d\xba\xd1\x54\xa0\x20\xaa\x6a\x28\x50\xd0\x09\x33\x34\x15\x28\xf0\xa7\x9b\x0a\x14\x44\xda\x8d\xa6\x53\x87\x38\xb1\xd1\x74\xea\x3c\xde\x1d\x09\x0a\x22\xc3\x06\xe5\x6f\xf3\xdd\x9b\x12\x14\xc4\x04\x4d\x09\x0a\x52\x4d\x0d\x5a\xdf\x17\x6d\xfe\x73\x49\x6e\x41\x8c\x9e\xc7\x44\x81\x42\x01\xc7\xa6\x02\x05\xe1\x65\xfb\x29\x50\x70\x3b\x15\x28\xc8\x65\x35\x14\x28\x14\x70\x6c\x28\x50\x28\x93\xdd\x54\xa0\x60\x02\x34\x14\x28\x5e\x26\x47\x43\x81\xc2\x6e\x5f\x4d\x05\x0a\x96\x89\xa6\x02\x45\xf5\x7f\x60\xf4\xd5\xfb\x81\xd1\x43\xc1\x6b\x2a\x50\x54\x9f\x1a\xfc\x17\x3f\xbc\xa1\x40\x11\xd8\x43\x1b\x0a\x14\x81\xdc\x67\x43\x81\x22\xb0\xe8\x37\x14\x28\xac\x87\x6f\x2a\x50\xb0\x40\x37\x15\x28\xba\x57\x01\xdf\x1e\xfe\x12\x7c\x9b\xbd\xbe\xa9\x40\x31\xbc\x03\xf8\x76\xf7\x97\xe0\xdb\x0e\x72\x15\x28\xb4\x41\x05\x0a\x76\xfe\xa6\x02\x05\xd9\xce\x86\x02\x45\xc0\xc7\x6b\x28\x50\x04\xa6\x7b\x53\x81\xa2\x79\x84\x7d\x78\x9f\x4d\x05\x0a\xe2\x85\xa6\x02\xc5\xf0\x1c\xf6\x11\x42\x36\x15\x28\xf0\xc3\x9b\x0a\x14\x4c\xf0\xa6\x02\x05\x7e\x78\x53\x81\x02\x1f\xa8\xa9\x40\x81\x67\xd3\x50\xa0\x08\x4e\x5b\x14\x28\x02\xdb\x74\x43\x81\x82\xd6\xa5\xa1\xa1\x40\x11\x9a\xe7\xb4\xcf\xff\x61\x1f\x8b\x4d\xcb\xda\xc7\x3b\xcb\xd8\x17\x3c\x87\x3a\x85\x8b\x8d\xea\x14\x3e\xb5\xea\x14\x4e\x4d\xd4\x29\x2a\x45\x2c\x0d\x75\x8a\xaa\xed\xa8\x53\x54\xbf\x3b\xea\x14\x06\x9b\x4d\x75\x0a\x7c\xbc\xa6\x3a\x05\x41\x6a\x53\x9d\xc2\x77\x8d\x3a\x45\xad\x3e\x27\xd8\x3e\xf1\x42\x43\x9d\xc2\x10\xb9\xa1\x4e\x51\xfd\xb6\xa8\x53\x54\x7c\xb5\xf6\x45\x5c\xbd\x52\x48\xd5\xbe\x88\xab\x37\x42\xf9\xf6\x45\x55\xbd\xbb\xf4\x7c\x51\x55\xef\x4e\xfe\x02\xee\xef\x12\x52\xc0\xfd\x7d\x83\x05\xdc\x9f\xa8\xaa\x15\x70\x7f\x8a\xac\xda\x17\x71\x75\xf3\xa9\xed\x8b\xb8\x3a\xdd\x2e\x43\x2b\x74\xd9\xc1\xa7\x6c\x5f\xc4\xd5\x4d\x5b\xb6\x2f\xe2\xea\x66\x6c\xdb\x17\x71\xf5\x8e\x63\xd5\xbe\x88\xab\x5b\x9c\xdf\xbe\x88\xab\x0f\x60\xba\xf6\x45\x5c\x7d\x1c\x7f\xd9\xa0\x0f\xf0\x26\xbe\xe8\xa8\x2f\x52\x93\xed\x8b\x8e\xfa\x71\xf4\x80\x32\xa9\x70\xd3\x40\x99\x54\x9c\x69\xa0\x4c\x2f\x5b\x6a\x03\x65\x52\xf6\xbf\x21\x17\x41\xa3\xdd\xd0\x90\x8b\x50\xe5\xaf\x35\x09\x03\xd8\x80\x24\x84\x4d\x07\x1a\xb2\x0f\x81\xc4\x68\x43\xf6\x21\x00\xf5\x37\x64\x1f\x4a\xf2\x0e\x00\xea\x38\x02\x0d\xd9\x87\x42\x5a\xa8\x21\xfb\x50\x70\x19\x1a\xb2\x0f\x25\xfd\x45\x82\x6b\x28\x42\x14\xc2\xee\x86\x22\x44\x81\xfe\xd4\x50\x84\x28\xf8\x40\x0d\x45\x88\xe2\xb0\x46\x11\xa2\x64\xff\x57\xf9\x25\xaf\x05\x45\x88\x82\xff\xd7\x50\x84\x28\xee\x8c\x28\x42\x94\xe0\x43\xc3\x25\xc0\xe7\x6a\x28\x42\x94\xe8\x1d\x30\x3d\x78\x07\x4c\x8f\x1e\x7d\xa6\xeb\xe7\x34\x15\x21\x5c\xea\x54\x84\x70\x40\xaa\x08\xe1\x00\x41\x11\xc2\x44\x49\x43\x11\xa2\xb9\xd4\xa1\x08\xd1\xf0\xbc\x1b\x8a\x10\x26\x51\x1a\x8a\x10\xa6\x5b\x1a\x8a\x10\x96\x9f\x34\x14\x21\x9a\xc3\x45\x45\x88\xdf\x11\x58\x34\x44\xb7\xa6\x22\x84\x83\x40\x45\x08\x3c\xb0\xa6\x22\x84\x83\x07\x45\x88\xe9\xa0\x53\x11\xc2\x61\x86\x22\xc4\x74\x6a\xaa\x08\x41\x9e\xb9\xa1\x08\x31\x61\x55\x34\x14\x21\xa6\x13\x15\x45\x88\xe9\xee\x8e\x22\xc4\x84\x9b\xd1\x50\x84\x58\xc5\x5f\x82\x45\xbb\xb4\xd2\x58\x6a\xbb\x59\xa0\x16\x61\x30\xdd\x50\x8b\x90\x7e\xd8\x54\x8b\x70\xd1\x57\x2d\xa2\x6b\x03\x58\xb4\xdb\x83\x6a\x11\x7e\x07\xd5\x22\x5c\x34\x54\x8b\xf0\xed\xaa\x16\xe1\xa6\xa6\x5a\x84\x8b\x30\x6a\x11\x87\xe2\x82\x86\x5a\x84\x62\xe2\x0d\xb5\x08\xf5\xb5\x9b\x6a\x11\xd9\x3b\x90\x64\x80\x75\xd0\x54\x8b\x20\xca\x69\xaa\x45\x6c\xef\x00\x18\x7d\x7c\x96\x05\xc4\xec\xfd\x36\xa0\x32\xd6\x02\x32\x19\x68\x37\x40\x26\xc3\xf5\x06\xc8\xf4\x73\x20\x00\x99\x5e\x47\x24\x20\xd3\x4b\x54\xd5\x00\x99\x5e\xdf\x20\x20\x93\x09\x81\x06\xc8\xf4\xea\x40\x00\x32\xbd\xbe\x5d\x95\x24\x1c\xbb\x2a\x49\x90\x62\x6c\x2a\x49\xf8\xc5\x54\x92\xf0\x8b\xa9\x24\xa1\x73\xa1\x92\x84\x6f\x5e\x25\x09\x5d\x0d\x95\x24\x80\x67\x9b\x4a\x12\x40\x5c\x0d\x24\xe9\xb7\x51\x82\x24\x99\x4b\x6e\x47\x90\x17\xfb\x40\x92\x92\xde\xee\x11\xe4\xf5\x1c\x20\x2f\x29\xb1\x86\x92\x84\xc9\x89\x86\x92\x44\x72\x84\xa0\x24\x61\x15\x44\x53\x49\xc2\x37\xaf\x92\x84\x0e\x84\x72\x11\xba\x0c\xca\x45\x38\xdf\x95\x8b\xf0\xbd\x28\x17\x01\xe3\xbd\x29\x17\xe1\x37\x52\x2e\x82\x48\xbb\x81\x47\x65\xdd\x3a\xf0\x28\xdb\xd8\x35\xf0\x28\x6b\x15\xdb\x15\xe4\xe5\xc9\x90\x8b\x28\x7f\x92\xe0\x1a\x50\x95\x4d\x39\x1b\x50\x55\xd1\x5f\x01\xaa\x2a\x0e\x3a\xa0\x2a\x9b\x80\x36\xa0\xaa\xe2\xc7\x04\xaa\x2a\x0e\x09\xa0\xaa\xe1\x0e\x0e\x54\x35\x70\xfb\x3b\x50\x95\x75\x69\x1d\xa8\x4a\xb2\x78\x07\xaa\xa2\xef\x74\xe8\x40\x55\xd6\xac\x75\xa0\xaa\xce\xbe\xd5\x81\xaa\xa4\x95\x77\xa0\xaa\x81\xff\xde\x81\xaa\x3a\x8b\x62\x07\xaa\xea\x04\x7f\x1d\xa8\x4a\x92\x79\x07\xaa\xb2\xd6\xad\x03\x55\x0d\x7c\xfb\x0e\x54\xd5\xd9\x51\x3b\x50\x95\xcd\x2e\x3b\x50\x55\xbf\x5e\x05\xa0\x13\xaf\xb5\xbf\xda\xc7\x93\x01\x55\x75\x96\xdd\x0e\x54\xd5\x8f\x47\xd8\xc7\x36\xd6\x81\xaa\x06\x70\x46\x7f\xb5\x8f\x77\xa6\x92\x04\xc1\x6d\x47\x49\x62\x10\xd7\x74\x95\x24\x08\x8a\xbb\x4a\x12\xc7\x5f\x62\x1f\x01\x5e\x47\x49\x42\x3d\xe8\x8e\x92\xc4\x78\xbd\x9f\xf6\xf1\xae\x5f\xbf\x1f\x6f\x50\x25\x09\x36\x8b\x8e\x92\x84\x19\xf0\x8e\x92\xc4\x60\xd1\xef\x2a\x49\xb0\x01\xf5\xe0\xf7\xf3\x97\x00\xb9\x80\x4c\x3d\xa0\x52\xc0\x16\xd7\x51\x99\x98\x4c\x95\x8e\xca\xc4\x64\x59\xea\xa8\x4c\xcc\xe1\x55\x3e\xfb\xd6\xe3\x55\x06\x47\xbc\xc1\xa0\x82\x01\x4f\x8d\xca\xc4\x7a\xbc\x0a\x50\x6a\xf2\x7f\x40\x8d\x3f\x1b\x84\x52\xf9\x7e\xa8\x4c\x5c\xfc\xf7\x8e\xca\xc4\x25\x27\xdc\x51\x99\xb8\x2c\x67\x1d\x95\x89\xcb\x92\xd5\x51\x99\xb8\x2c\x9f\x1d\x95\x89\xcb\x52\xd0\x51\x99\xb8\xc5\xff\x55\x9e\x85\xe7\x44\x65\xe2\xb2\x10\x75\x54\x26\x2e\x8e\x4e\x47\x65\xe2\x76\xef\x0e\x94\x5a\x3d\x5a\x5c\xd3\x3b\x60\x5f\xf3\x0e\xd8\x97\xbd\xa6\xf6\x71\x0e\x95\x89\x9b\x3d\xc2\x3e\x98\x28\x1d\x95\x89\x4b\x91\x76\x47\x65\xe2\x12\x19\x76\x54\x26\x2e\x5b\x40\x47\x65\xe2\xb2\xfd\x75\x54\x26\x64\xca\x77\x54\x26\x2e\xe9\xb9\x8e\xca\x84\xf5\x81\x9d\xe6\x51\xb7\xfa\x3f\xec\x2b\xde\x0f\xfb\xba\x57\xc1\xbe\xec\xfd\xb4\xcf\xab\x60\x1f\x5b\x71\x4f\xda\xc7\xfb\x44\x9d\x82\xee\xe3\xa1\xa3\x4e\x41\x67\xf2\xd0\x51\xa7\xb8\xb0\x62\x3a\xea\x14\x17\x1e\x53\xa7\x79\xd4\x65\xf9\xec\x60\x55\x2f\x2b\x5f\x47\xe7\xdc\x0d\xaf\xa3\x73\xee\xd6\xd8\xc1\xb1\xdc\x52\x3b\x38\xd6\x3b\x3c\x02\x2a\xee\xde\x01\xa8\x78\xfc\x45\x82\xeb\x40\x5c\xef\xd4\x04\x50\x64\x3c\xcc\x0e\xc4\xf5\x3a\x71\x80\xb8\x5e\x3c\x94\x0e\xc4\xf5\x92\x10\xe8\x40\x5c\xee\xaf\x1d\x88\xcb\xbd\xb7\x03\x71\xbd\xec\x70\x1d\x88\xeb\x25\x20\xe9\x45\xd3\x79\x65\x45\x14\x99\x65\x02\x09\x74\x83\xfe\x8e\x04\x7a\xcc\x9e\x13\x45\xe6\x95\x01\x6a\x45\x07\x08\xa0\x56\x84\xc2\xd5\x01\xb5\xa2\x03\x04\x50\x2b\x3a\xe4\x01\xb5\x22\xa4\xa6\x0e\xa8\x15\x9d\x38\x80\x5a\xc9\xa9\x89\xe6\x84\x75\x85\x1d\xe0\x2a\x35\xaf\x89\x16\x80\xc3\x0c\xe0\xca\xbd\xbe\x03\x5c\x25\x12\x02\x1d\xe0\x2a\x81\xea\xf6\x2a\xbe\xed\xdd\xa9\x95\x77\x49\x06\xb8\xb2\x76\xb0\x03\x5c\x65\x17\x0d\x80\xab\xe2\xf2\x09\x70\x55\x5e\xcf\xa1\x05\x40\xbe\xb8\x03\x5c\xc9\x28\xee\x00\x57\xb2\x94\x3b\xc0\x55\x21\x45\xd5\x01\xae\x0a\x51\x47\x07\xb8\x2a\x64\xb2\x7b\x53\x0b\x80\xf7\xd9\xec\xcc\xe0\xd1\x06\x45\xf6\x0e\x87\x23\x86\x6e\x13\xd1\xe6\x59\x80\xaa\xaa\x6f\x02\xa8\xaa\x11\xa0\x77\xa0\xaa\x46\xc0\xdc\x81\xaa\x1a\x39\xc5\x0e\x54\x65\x9d\x58\x07\xaa\xb2\xa1\x51\x07\xaa\xb2\x2d\x52\x47\x49\xc2\x86\x46\x1d\x25\x09\x9b\x24\xf5\x0e\x34\xbd\x7c\x16\x61\x5d\xac\x45\x49\xc2\x3c\x6c\x47\x49\x42\x92\x58\xef\xc2\xba\xdc\x1d\x25\x89\xee\x66\xf1\x45\x63\xd5\xba\xb4\x0e\xe5\xcf\x72\xee\x8e\xca\x84\xea\xc9\x1d\x95\x89\xe1\x04\x47\x65\x42\xa5\xbb\x8e\xca\xc4\x70\x06\xa0\x32\x31\x71\x7b\x3a\x2a\x13\x76\x91\xec\xa8\x4c\x4c\x68\x61\x1d\x95\x89\x39\x7c\x32\x20\x5f\xdf\x04\x2a\x13\xd3\x25\x04\x95\x89\x39\x7d\x16\x20\x5f\xc8\x5e\x7d\x00\xf9\x3a\xfb\x51\x99\x58\xcb\xa3\x97\x23\xde\x20\x2a\x13\x16\x75\x75\x54\x26\x96\x4f\x86\xca\xc4\xd6\xf1\x40\x65\x62\x6f\xcf\x01\x89\xc2\x9f\xee\xa8\x4c\x58\x48\xd5\x51\x99\x50\xbf\xb8\xa3\x32\xb1\x89\x48\x3a\x2a\x13\xe6\x76\x3b\x2a\x13\xfb\x7a\x15\xe0\x52\x1d\x16\x54\x26\xb6\x2e\x03\x2a\x13\x96\x7f\x75\x54\x26\x2c\x1b\xeb\xa8\x4c\x58\x0c\xd6\x91\x92\xd8\x70\xa4\xfb\x17\x8d\xd5\xdf\x86\xb7\x28\x2d\xf7\xed\x22\x33\x71\x5d\x76\x97\xa5\xe5\x8c\x5d\x64\x26\xee\xf1\xa8\x72\x84\xed\x44\x63\x57\xdb\x97\x50\xea\x5f\x5d\x45\x3a\x0a\x14\x57\xf3\x50\xa0\xb8\x24\xf8\x3b\x50\xd5\x43\x15\x5e\x07\xaa\x7a\xdc\xd3\x80\xaa\x5e\x3d\x1b\xa0\x2a\x83\xa3\x0e\x54\xf5\x5b\xbc\x81\xaa\x5e\xf7\x2d\xa0\x2a\x43\xb3\x0e\x54\xf5\x12\x22\x77\xa0\x2a\xe9\x41\x7d\x8b\xb2\xf2\x64\x40\x55\x56\x40\x75\xa0\x2a\xc9\x42\x1d\xa8\xca\x9a\xae\x0e\x54\x65\x7d\x52\xdf\x56\xa4\xfb\x2c\x54\xa4\xeb\xab\x01\x55\x65\xf2\xda\x1d\xa8\x2a\x43\x5f\xeb\x40\x55\x59\x4f\x11\xa8\x4a\x2a\x4f\x07\xaa\xca\xb0\x7f\x3b\x50\x55\x86\x24\xd6\x81\xaa\xb2\x9e\xe9\xb1\x2c\x9b\x0f\x06\x54\x95\xc9\xb8\x77\xa0\xaa\x4c\xf6\xaa\x03\x55\x65\xfd\x70\xa0\xaa\xec\xf2\x79\x80\x1a\xf5\x92\x11\x52\xcf\xc1\x23\xa0\x46\x07\x2b\x30\xd6\x6f\x61\x07\xc6\xca\x8f\x57\x01\x6a\xd4\x87\x05\xc6\xca\xc1\xff\x59\x56\xcf\x1b\x04\xc6\xca\xc6\x27\x17\x28\xd5\x09\x87\x00\x7b\x72\xd0\x01\x71\x25\x52\x00\x1d\x88\x2b\xe9\xb1\x03\x71\xe5\xd7\x6b\x02\xa5\x3a\x3c\x81\xb8\x12\x20\x53\x07\xe2\xca\x7e\x69\x20\x2e\x25\x6d\x3a\x10\x57\x76\x7b\x00\xe2\x52\xd2\xa6\x5f\xbf\x9f\xbf\xe4\xfb\xe9\x17\x03\x71\x29\x85\xd3\x81\xb8\x32\x1b\xd7\x00\xe2\x4a\x4c\xe2\x01\xc4\x95\x81\x0c\x07\x10\x57\x0e\x9e\x03\x0e\x66\x4a\x8f\x47\x1b\x2e\x47\xd8\x40\xca\x68\x3c\xda\xd0\x38\xf2\x1b\xf9\x3f\x6c\x88\x1e\xf9\x8d\x26\x47\xd8\xf0\x7a\x15\x6c\x08\xde\x41\x38\x38\x70\x04\x5c\x0a\x03\x7d\x00\x63\x55\x3c\xbe\x01\x8c\x55\x59\xce\x06\x30\x96\x55\x6a\x03\x18\xcb\x3c\xfa\x00\xc6\x52\x7f\x66\x00\x63\x55\xdc\x97\x01\x8c\xa5\xc2\xcd\x00\xc6\xaa\xc5\x6b\x02\x97\xe2\xcc\x0c\x60\xac\x9a\x3d\x07\x5c\x0a\x77\x7c\xa0\x5c\xa1\x8a\xcd\xf8\x1f\x63\xe7\x96\x67\x2f\xab\x03\xd1\x29\xa9\xa0\xc8\x70\xb8\xce\x7f\x08\xe7\xd7\xac\xa5\x76\xbf\x7c\xff\xf3\xe8\xde\x5e\x00\x11\x52\xa9\xa4\x82\x72\x85\x15\xe2\xcb\x6e\x1f\x18\x09\x78\x2c\xcb\x22\x15\x94\x2b\x12\x9e\xe5\x72\xd0\x3f\xcc\xac\x82\x72\x85\xc1\x65\x05\xe5\x0a\xf5\xa7\x0b\xca\x15\x72\x01\x05\xe5\x0a\x43\xd4\xca\x61\xff\x3c\x93\xfe\x11\x49\x5e\x0e\x29\x6d\xef\x49\xff\xb0\x92\x0b\xca\x15\x29\x79\x26\xfd\xf3\x3d\x1c\xf6\x8f\x91\x3f\xec\x1f\xef\x0f\x79\x8a\xdb\x51\x42\x9e\x22\xe3\x2a\x2c\xc1\xa2\x0a\xff\x5a\x92\x0b\xca\x15\x96\x7f\x2c\x28\x57\x58\xb8\xb1\xa0\x47\x61\x59\xc5\x82\x1e\x45\xde\x3d\x22\x97\x1c\x66\xba\xa0\x47\x91\x59\x96\x0a\x7a\x14\x99\x65\xa9\xa0\x47\xa1\x6d\x51\x82\xdc\xb0\xcf\x83\x1b\x66\x61\x2f\xe8\x51\x64\x76\x9c\x82\x1e\x45\xf6\x73\x88\x72\xc3\x0c\x2e\x7a\x14\x05\x4b\xaa\xa0\x47\xa1\x32\x6f\x41\x8f\x42\x25\xe0\x82\x1e\x45\x21\x5f\xaf\xa0\x47\x51\xb0\xb2\x0a\x9a\x13\xea\xfb\x16\x34\x27\x0a\x7b\x76\x41\x73\xa2\x60\x93\x14\x34\x27\xd4\xf7\x2d\x68\x4e\x14\xac\x89\x82\xe6\x44\xe9\x3e\x8f\x7c\x78\xe8\x93\x82\xe6\x84\x1a\xc5\x05\xcd\x89\x02\x29\x52\xd0\x9c\x30\xcb\xa9\xa0\x39\xd1\xf0\xaa\x17\x34\x27\x5a\xf4\xcc\xd5\x87\x86\xf5\x59\xd0\x9c\x68\x38\x7b\x0a\x9a\x13\xad\xfb\x1f\x49\xef\xcf\x3d\xe1\xb7\xd9\x60\x0b\x9a\x13\xad\xdb\x16\x92\xde\xbb\x4f\x80\xfb\xc6\x7a\x29\x68\x4e\xe8\xe9\x2d\x68\x4e\xe8\xe9\x2d\x68\x4e\xe8\xe9\x2d\x68\x4e\x74\x2c\xc5\x82\xe6\xc4\x70\x21\x42\x73\x62\x60\x87\x17\x34\x27\x06\xb6\x7d\x41\x73\x62\xb0\x19\x16\x34\x27\xac\xdc\x58\xd0\x9c\x18\xbb\x67\xc2\x7d\xef\x3e\x01\xee\xdb\x39\x88\xe6\xc4\x70\x0e\xa2\x39\x31\x5c\xdc\xd0\x95\x18\xce\x6b\x74\x25\x06\xdb\x43\x41\x57\x62\xb8\x7c\xa2\x2b\x31\xc8\x63\x2c\xe8\x4a\x58\xc2\xb2\xa0\x2b\x31\x70\xb3\x15\x74\x25\x06\x58\xa2\xa0\x2b\x31\x0f\xcf\x3c\x39\xe2\x79\xe8\x4a\xcc\xe7\x09\x89\x23\xaf\xbb\x39\x93\x51\xa2\xcc\xd4\x74\x94\x20\xb5\x36\x17\xd3\x85\x9c\xf2\x96\x3c\x73\x11\x6c\x9b\xcb\x52\xa2\x4c\x84\x0b\xc3\x4d\x99\x08\xdc\x03\xe5\x96\xa4\xe7\xcc\x1b\x92\xfe\xf0\x3f\x88\x78\xe2\x60\xca\x0d\x11\xef\x06\x74\x43\xc4\xfb\x1e\x6e\xc8\x76\xbc\xb2\xe5\x86\x50\x87\xb0\x2c\x37\x84\x3a\x44\x67\xb9\x21\x64\x89\xc5\x2a\x19\x52\xd9\x6f\x25\x43\x2a\x3b\x23\x33\xa4\x32\x11\x4f\x25\x43\x2a\xfb\x15\x67\x48\x65\xec\xdb\x92\x21\x95\x9d\xd7\x19\x52\xd9\x6f\x2c\x43\x2a\x0f\xef\x09\xa9\xec\x77\x9b\x21\x95\x9d\xd7\x19\x52\x19\xdb\xbe\x64\x48\x65\xb7\xd4\x0c\xa9\x0c\x61\x59\xb2\xa4\x39\x4f\x28\x90\xca\x60\x89\x52\x20\x95\x9b\xff\xd9\x3f\x46\xa9\xd0\x3f\x4c\xda\x52\xe8\x1f\xe8\xaf\x14\xfa\x47\x44\x49\x29\xf4\xaf\xfd\xcb\x71\x51\x0a\x5d\x27\x8d\xb1\x14\xbb\xee\xe3\xec\x3a\x9d\x2d\x76\x9d\x21\x2b\x76\x9d\xc9\x53\xe8\x7a\xf5\xe1\x76\xdd\x33\x57\xd7\x83\x1f\x63\xa1\xeb\x2e\x9f\x95\xae\x03\xe2\x4a\x25\x1f\x1e\x60\x5f\x2a\xf9\xf0\xc5\x23\xf2\xe1\xa1\xf0\xca\x82\x4a\xd9\xda\xd2\x65\x41\xa5\x7c\x02\x2c\x4a\x25\x57\xde\x45\xbf\x92\x2b\xef\x86\x50\xc9\x95\xb7\xd5\x15\x3e\xdd\x5d\xac\xc2\xa7\x63\x61\x96\x0a\x9f\xbe\x79\x1d\x7c\xba\xbb\x5f\x95\x4f\xf7\x48\x3e\xdd\xb6\xc0\xa7\x03\xd0\x4b\x83\x4f\x77\xb2\x36\xf9\x74\xa6\x44\x93\x4f\xe7\x3a\x34\x27\x6e\xec\xbf\x82\xe6\xc4\xed\xa7\x82\xe6\xc4\x8d\x55\x5e\xd0\x9c\xb8\x0f\x9f\x90\x38\xf2\x09\x37\x77\x61\x94\xd0\x9c\xb8\xb1\xbc\x0b\x9a\x13\x46\xa0\x17\x34\x27\xac\xee\x5c\xd0\x9c\x30\xa0\xab\xa0\x39\xf1\x6c\xb7\x68\x4e\x3c\x9b\x36\x9a\x13\xd6\x34\x2e\x68\x4e\x28\xf9\x52\xd0\x9c\xc8\x4e\x48\x34\x27\xcc\x79\x2a\xe8\x4a\x98\x27\x56\xd0\x95\x30\xa3\xac\xa0\x2b\x91\x09\x5b\x2c\xe8\x4a\x64\x3f\x3f\x74\x25\x32\x10\xb9\xa0\x2b\x91\xfd\xfc\xd0\x95\xc8\x7e\x70\xe8\x4a\xe8\x02\x28\xe8\x4a\x98\x00\x5c\xd0\x95\x30\xa9\xb8\xa0\x2b\x61\x52\x71\x41\x57\xa2\x80\x10\x0a\xba\x12\xc5\x85\x01\x5d\x09\x35\x7c\x0b\xba\x12\xaa\xf6\x16\x74\x25\xaa\x8b\x22\xba\x12\xaa\xe0\x15\x74\x25\x54\xb3\x2b\xe8\x4a\xa8\xa5\x57\xd0\x95\xd0\xc5\x51\xd0\x95\xa8\xda\x63\xe8\x4a\xa8\x7b\x57\xd0\x95\xa8\x50\x4e\x05\x5d\x09\x35\xf8\x0a\xba\x12\x55\x4b\x11\x5d\x89\x36\x3d\xda\x39\xe2\x6d\xa2\x2b\xd1\xc0\x0b\x05\x5d\x89\x86\xc7\xbd\x2c\x5c\x93\x1b\x08\xa8\x2c\x5c\x93\xfb\xe6\xd1\xc5\x11\x6d\x41\x73\xa2\x89\x09\xd0\x9c\x68\xe0\xb6\x82\xe6\x44\x77\x2e\xa1\x39\xd1\xfd\xaa\xd0\x9c\xe8\x30\x18\x05\xcd\x89\x01\xed\x59\xd0\x9c\x18\x7c\x8d\x75\x61\x97\xd3\xf8\xae\xba\xb0\xcb\xb9\xef\xfe\x87\x68\x01\x5b\x63\x5d\x2c\xd3\x69\x0c\x57\x5d\x2c\xd3\xa9\x96\x4a\xdd\xac\x2a\x32\x38\x5a\x24\x6f\x40\x04\xac\x6e\x08\x1a\x0c\xcf\x24\x08\x81\xb1\xae\x1b\x41\x08\x97\x47\x04\x21\x5c\xde\x85\x20\x84\x64\x5b\x08\x42\xe0\x6d\xd6\x8d\x20\x84\xcb\xff\x08\x42\x00\x21\xd4\x8d\xf8\x0b\xbc\xf8\x75\x27\xfe\xe2\xfc\x57\x10\x5c\xdd\x09\xcd\x00\x00\xd5\x05\x87\xce\xe4\xb0\xa0\x47\x61\xec\x6a\x45\x8f\x42\xef\x5c\x45\x8f\xc2\xba\x67\x15\x3d\x0a\x7d\x75\x15\x3d\x8a\x9b\x60\xff\x8a\x1e\x85\xf5\xd9\x2a\x7a\x14\x77\xb3\x99\x68\x01\x54\x9f\x87\x16\x00\xcb\x75\x45\x8f\xa2\xfa\x1a\xd0\xa3\xa8\xbb\x4f\x18\x1c\xd9\x32\xe2\x13\x08\xa5\xab\xe8\x51\x54\x96\x90\x8a\x1e\x45\xf5\xd5\xa2\x47\x51\x11\xcd\xa9\x07\xf1\x09\xd8\x5c\xf5\x20\x3e\x81\xa5\xae\xa2\x55\x51\x7d\xed\x68\x55\xd4\xc3\xeb\xa8\x58\xc1\x62\x5a\xd1\xaa\xa8\xec\xbd\x15\xad\x8a\xce\x46\x52\xd1\xaa\xe8\xd5\x96\x11\x9f\x00\x79\x5a\x0f\xe3\x13\xe8\x1f\x5a\x15\x9d\x4d\xad\xa2\x55\xd1\xab\xcf\x33\x3e\x81\xe7\xa1\x55\x61\xa2\x43\x0d\xc6\x27\xd0\x6a\xb4\x2a\x3a\xcb\x6e\x45\xab\xa2\xe3\xf5\xaa\x68\x55\x98\xb0\x50\xd1\xaa\xe8\x6c\x86\x15\x3d\x0a\xab\x65\x57\xf4\x28\xc6\xe5\x99\xc4\x20\x60\x93\xd4\x60\x0c\x02\xad\x46\x8f\xc2\xca\x63\x15\x3d\x8a\x31\x6c\x0b\x15\x2b\xb0\xe6\x6b\x30\x21\x9e\x37\x86\x1e\xc5\xf4\xbd\x47\x13\xe2\xfd\x8f\x18\x04\xf8\x8c\x1a\x8d\x41\xe0\x9e\x90\x4c\x3b\x84\x57\x85\x64\xda\x41\x2b\x15\x92\x69\xb7\x47\x90\x4c\xbb\x73\x09\x92\x69\x27\x68\xbf\x42\x32\xed\xcd\xa7\x13\x83\xe0\xfc\x84\x64\xda\x9d\xbb\x90\x4c\x7b\xf5\xe9\xc6\x20\x78\x1d\x1c\x3d\xdb\x43\x85\x64\x32\x1a\xbe\x42\x32\x19\xc3\x5f\x21\x99\x8c\x7f\xaf\x90\x4c\xd1\x6f\x05\x92\x29\xfa\x1d\x41\x32\xc5\xdb\xff\x88\x41\x00\x71\x55\xe4\xd1\x8d\x7f\xaf\xc8\xa3\xeb\x32\xaa\xc8\xa3\xc7\xee\x75\x94\x43\x08\xfe\x47\x39\x84\xe4\xd3\x29\x87\x80\xd9\x53\xd1\x40\x3f\x31\x58\x2a\x1a\xe8\x16\xb2\xaa\x68\xa0\x5f\xe0\xc4\x8a\x06\xfa\x85\xed\x5b\xd1\x39\xbf\xec\x11\x3a\xe7\x97\x7d\x40\xe7\xfc\xf2\x6d\xa2\x73\x7e\x39\xba\xe8\x9c\x5f\x8e\x3c\x3a\xe7\xc6\xe2\x57\x74\xce\x8b\xcb\x27\x3a\xe7\xc5\x19\x89\xce\x79\x21\xd6\xa5\xa2\x73\x5e\xd8\x0c\x2b\x3a\xe7\x05\xbb\xbf\xa2\x73\x5e\xd8\xc6\x2a\x3a\xe7\x05\xec\x59\xd1\x39\x2f\x38\x43\x2a\x3a\xe7\xc5\xe5\x13\x9d\x73\x35\xe3\x2a\x3a\xe7\x05\x87\x4e\x45\xe7\xdc\x8a\x88\x15\x9d\x73\x13\xbe\x2a\x3a\xe7\x05\x63\xad\x26\x02\x0d\x82\xd7\x41\xc4\x93\xaa\x5f\x13\xfd\xfb\x67\x10\x5c\x4d\x76\xdd\x5b\xd2\x75\x76\xe2\x9a\xe8\x3a\x9e\x9f\x9a\xe8\x7a\xf4\x01\x74\xfd\xf4\x4c\xba\xee\x47\x9c\xe8\x3a\xfe\x95\x7a\xdb\x75\xee\x72\xd3\x75\xd2\x02\xea\x6d\xd7\x19\xb2\xdb\xae\x33\x2c\xe8\x51\x14\x78\xe3\x8a\xe6\x44\x89\xfe\x07\x0f\xff\xfc\x97\x39\xa2\x2d\xe8\x51\xd4\xe7\x2e\xf0\xf0\x2e\x7c\x68\x4e\x54\x27\x1d\x9a\x13\x95\x78\xca\x8a\xe6\x44\x63\x3f\xaf\x68\x4e\x34\xe8\x85\x8a\xe6\x44\xc3\x85\x53\xd1\x9c\xd0\xc1\x5f\xd1\x9c\x98\xd8\x71\x15\xcd\x89\x59\xbc\x0e\x2e\xfa\x79\x02\x5c\xb4\x0b\x11\x9a\x13\x13\xbb\xb1\xa2\x39\x31\x6d\x19\x9a\x13\xd3\x71\x41\x73\x62\x36\x5b\x06\x17\xed\x07\x80\xe6\xc4\xcc\x9e\x09\x17\x0d\xe0\xaa\x19\x2e\xda\xe5\x0c\x72\x6a\xb3\x7f\xe8\x51\xa8\x7f\x5b\x21\xa7\xa6\x8b\x3e\x7a\x14\xd3\xcf\x08\x3d\x0a\xa9\x8e\x5a\xec\x9f\xff\xd9\x3f\xde\x7b\xb1\x7f\x1e\xd1\x3f\x97\x33\xf4\x28\xac\x11\x5d\xd1\xa3\x98\x2e\x4b\xe8\x51\x4c\x10\x50\x45\x8f\x62\x62\x6b\x57\xf4\x28\x2c\x29\x54\xd1\xa3\x30\xf0\xac\xa2\x47\x21\xed\x52\x21\xa7\x9e\x05\x1a\x72\x6a\x77\xeb\x87\x9c\x7a\x16\x5a\xc8\xa9\x67\xa1\x85\x9c\xda\x5d\x4c\x21\xa0\x76\xdf\x26\x04\xd4\x0e\x65\x58\x21\xa0\x76\x47\x17\x02\x6a\xf7\xdd\x42\x40\xed\x8e\x44\x95\x34\xa7\x0f\x10\x50\x0a\x53\x55\x08\xa8\xdd\x59\x00\x01\xf5\x6c\x1d\x10\x49\xc1\x2f\x07\xb2\x28\x60\x09\x57\xc8\xa2\x80\x27\xb4\x42\x16\x05\x5c\x15\x15\x46\x28\xf8\x15\x37\x69\x64\xda\x82\x26\xb9\xe9\x5f\x15\x4d\x72\x03\xcf\x2a\x9a\xe4\x26\x6e\x55\x34\xc9\x23\x11\x25\x15\x4d\xf2\x08\x07\x54\xd1\x24\x37\x2b\xae\x76\xd3\xa4\x79\x7a\x47\x52\x1e\x37\x46\xed\xd0\xc8\xb8\x4d\x6a\x97\x46\x66\x24\xd0\x2b\xbf\x82\x77\x81\x46\x0e\xfe\x07\x8d\xec\x46\x82\x5e\xf9\xe5\x3a\x81\x5e\xb9\x11\xbe\x15\xbd\xf2\xcb\x45\x18\xbd\xf2\x2b\xf8\x74\x52\xa8\xdd\x10\xd0\x2b\xb7\x1c\x71\x45\xaf\x3c\x39\x12\xe8\x95\x27\xb7\xfe\x41\x0a\xb5\xfd\x1b\xa4\x50\xe3\xac\xab\x68\x99\x27\xdc\x73\x15\xbd\xf2\xe4\xb8\xa0\x57\x9e\x60\xc3\x2a\x7a\xe5\x09\x36\xac\xa2\x57\x7e\x77\x9f\x40\x2e\xf4\xf8\x97\xe3\xa2\x22\x65\x7e\x6b\xcb\x20\x65\x7e\x0f\x1b\x4d\x9a\xb4\x20\x00\x29\xf3\x9b\xa0\xef\x8a\x94\xb9\x6a\xaa\x15\xb9\xf2\x1b\x2f\x70\x45\x92\x5c\x7f\x71\x45\x92\xbc\x44\x8f\x90\x5c\x27\xd0\xba\x22\x49\x5e\x50\xca\xad\x48\x92\x5b\x67\xad\x22\x49\xae\x4f\xb8\x22\x49\x6e\x3d\xb8\x8a\x24\xb9\xe1\xe8\x15\x49\x72\xeb\xba\x55\x24\xc9\xab\xad\x46\x92\x5c\x45\xa9\x86\x24\x79\xc5\xc6\x6b\x48\x92\x57\x86\xac\x21\x49\x5e\xf1\xfc\x34\x24\xc9\xeb\xf0\x88\x34\x62\xfc\xb0\x0d\x49\xf2\x8a\x35\xd8\x90\x24\xb7\x7c\x4c\x43\x92\xbc\xf2\x11\x37\x24\xc9\xeb\xf0\x3a\x38\x73\x42\xf0\x1a\x92\xe4\x15\xd0\xdf\x90\x24\xaf\x40\xeb\x86\x24\x79\xed\x3e\x01\xce\x1c\xbf\x5a\x43\x92\xbc\x75\xef\x32\x39\xe2\x79\x48\x92\x9b\xf3\xd4\x90\x24\xd7\x83\xda\x90\x24\x1f\x60\x89\x86\x24\xb9\x5e\xd2\x86\x24\xf9\x80\x08\x6c\xa8\x3e\xe8\x5d\x6d\xbb\xdc\xf7\xe0\xa8\xf2\x9f\x67\x36\x8e\x18\x25\x54\x1f\xf4\xb5\x36\x54\x1f\xc6\xe1\xd3\x27\x77\xa1\x7f\xa8\x3e\x0c\xc8\xd3\x86\xea\x83\x1e\xe2\x86\xea\x83\x19\x57\xed\xb0\x0f\xf4\xef\xb0\x0f\x3c\x0f\xd5\x07\x3d\xd2\x0d\xd5\x07\xd5\x37\x1a\xca\x0e\x13\xd2\xa7\xa1\xec\x30\x99\x2f\xed\x90\xc4\xf6\xe9\x90\xd8\x87\x67\x42\x62\xe3\x24\x6a\x90\x37\x1b\x8b\x62\x83\xbc\x31\xa2\xb8\x41\xde\xec\x84\xe7\x35\xc8\x9b\x9d\x4d\xad\xc1\xd0\xec\x44\x39\x34\x18\x1a\xa3\x9a\x1a\xda\xe2\x3b\x1b\x50\x43\x5b\xdc\x20\xaa\x86\xb6\xf8\xce\xf6\xd7\xe0\x72\xb4\xfb\x1b\x5c\x8e\x81\x59\x0d\x2e\x67\x67\xce\x37\xb8\x1c\xe3\x98\x1a\x5c\xce\x3e\x3d\x13\x6a\x13\x13\xa5\xc1\xd0\x9c\x28\x71\x37\x18\x9a\x93\x85\xbd\xc1\xd0\x9c\x30\x18\x4d\xc5\x70\x28\xf4\x06\x43\x73\x42\xf6\x35\x18\x9a\x13\xca\xb0\xc1\xd0\x9c\x84\x73\x36\x14\xc3\xcf\xe8\xf3\xa0\x3d\x31\xf2\x1a\xec\xcd\x19\xbd\x0b\xb4\x27\xb4\x59\x83\xbd\x39\xa3\x67\x42\x7b\x9e\x9e\x09\xed\xc9\x3a\xd1\x60\x6f\xce\xcb\x96\xd1\x3f\x2c\xe1\x06\x7b\x73\x62\xdf\x36\xd8\x9b\x13\x07\x52\x3b\xed\x9f\x67\xd2\xbf\xcb\x23\xfa\x87\x03\xa9\x9d\xf6\xcf\x23\xfa\x87\x55\xde\x60\x6f\x4e\x4c\xcc\x06\x7b\x63\x11\xde\x06\x7b\x73\x62\xdb\x37\xd8\x9b\x13\xab\xbc\xc1\xde\x9c\xe7\xbf\xca\xa1\x36\x88\x9d\xf3\xf2\xe1\x74\xdd\x29\x78\xca\xf8\xd2\x75\x88\x9d\xcb\x33\x21\x76\x2e\x87\x1a\x62\x27\x15\x8f\x60\x4b\xd9\x55\x1a\xc4\x8e\xa1\x51\x0d\x62\xc7\x7d\xa4\x41\xec\x24\xa2\x1d\x1b\xc4\x4e\x62\x97\x6e\x10\x3b\x7a\x65\x9b\x62\xe2\x04\x9e\x35\xc5\xc4\x01\xb0\x0d\x62\x27\x65\xcf\x94\x2d\xe5\x73\x40\x4c\x3c\xdd\x3e\x0f\xb6\xb4\xf8\x3c\xd8\x52\x02\xd6\x9a\x82\xe1\xec\x9a\x4d\xc1\x70\xe8\x8c\xa6\x60\x78\xf6\xc8\x3e\x30\x4a\x0a\x86\xb3\xf7\x36\x05\xc3\x81\x9e\x0d\x62\x27\xe3\xe2\x68\x10\x3b\x19\x0f\x71\x83\xd8\xc9\xec\xee\x0d\xc1\xf0\x8c\xdf\xb7\x21\x18\x9e\xb1\x26\x1a\x82\xe1\xd9\xc5\x0d\xc1\xf0\xec\xa2\xa1\x60\x38\xe0\xaf\x29\x18\x8e\x85\xd2\x14\x0c\x87\x80\x6a\x0a\x86\xef\xfe\x87\x60\x38\x3e\xd3\x86\x60\xb8\xb2\x8c\x0d\xc1\x70\x25\x1b\x1b\x82\xe1\xfa\x5a\x9b\xa2\xe0\x6e\x63\x88\x82\xeb\x24\x6a\x8a\x82\x0f\x8f\x20\x41\xdd\x48\x14\x05\x9f\x3e\x41\x12\x94\x37\xa6\x28\x38\x9b\x68\x53\x14\x1c\x8f\x5f\x53\x14\xdc\xed\x4f\x51\x70\x3c\xa1\x4d\x51\x70\x97\x56\x95\xbf\xf1\x6f\x36\xd5\xbd\x89\x72\x6d\xaa\x7b\x93\x19\xd6\x54\xf7\x1e\x3e\x0f\xa2\xd3\x91\x50\xdd\xdb\x76\xaa\xee\x8d\x7b\xa0\xa1\xe5\x60\xc9\xd3\x86\x96\x43\xf7\x93\x46\xcb\xa1\x83\x3a\x1a\x5a\x0e\x3a\xa5\x1a\x5a\x0e\x03\xfb\xaf\xa1\xe5\x30\x5c\x42\xd0\x72\x18\xa4\x47\x35\xb4\x1c\x86\x8b\x1b\x5a\x0e\xc3\xe5\x13\x2d\x87\x81\x30\x55\x43\xaf\x61\xb8\xb8\xa1\xd7\x30\x9c\x4b\xe8\x35\x0c\x00\x73\x43\xaf\xc1\x72\x6d\x0d\xbd\x86\xf9\xdc\x85\x24\x5f\x08\xbd\x86\x5e\x83\x52\x54\x0d\xbd\x86\x89\x2d\xda\xd0\x6b\x50\x36\xaa\xa1\xd7\xa0\x7c\x57\x43\x94\x61\xe2\x72\x68\x30\x3b\x1b\x2e\x80\x06\xb3\xb3\xf9\x35\xc2\xec\x6c\xc4\x35\x34\x98\x9d\xed\xf6\xcc\xe5\x91\xde\xf0\x80\x37\x98\x9d\xdd\x31\x83\xbd\x31\x31\xa6\xc1\xd0\x98\xc4\xd2\x60\x68\x94\x7f\x6a\x30\x34\xc1\xef\x08\x86\x26\xf8\xfd\xc1\xd0\x04\x7c\xde\x0d\x86\x26\xf8\x3d\xc0\xd0\x04\x70\x70\x83\xa1\x09\x9a\x0c\x30\x34\xc1\xed\x1d\x86\x26\xf8\xc6\x60\x68\x2c\xfe\xd5\x60\x68\x02\x0e\xd5\x06\x43\x13\xfc\x36\x61\x68\xc2\x3f\xcb\xa1\x36\xc8\x9b\x40\xf0\x7d\x5b\xd0\x25\x07\x77\xb8\x05\x5d\x72\x00\x74\x34\x88\x9d\xa0\xb5\x04\xb1\x13\xb4\x65\x14\x13\x07\xee\x35\x88\x9d\xb0\xfb\x1f\xbc\xa3\x43\x8d\x98\x78\xd0\x02\x53\x4c\x5c\x0b\x53\x31\x71\xc8\x86\xd6\xed\x3a\x2f\x1a\xd2\x27\x40\xb7\x35\x48\x9f\xa0\x7d\xa4\x98\xb8\x1f\x2a\xa4\x4f\x70\xc9\x82\xf4\x09\x4e\x25\x48\x9f\xe0\xa4\x1b\xf6\x8f\x96\x41\xfa\x04\x97\x97\x61\xff\x18\x6a\x48\x9f\xa0\x8d\xa7\x98\x38\x61\x5a\x0d\xd2\x27\x10\x5f\xd2\x86\xaf\x96\x8f\x43\x31\x71\x97\x09\x48\x9f\xa0\x35\x08\xe9\x73\x56\x9f\xb0\xfa\x67\x3d\xee\x06\xe9\x73\x56\x9f\x30\x38\xf2\xba\xc9\x11\xbd\x55\x30\x5c\x0b\x4c\xc1\x70\x3f\x3f\x88\x1d\x13\x7f\x1a\xc4\xce\xa5\x3d\x0d\xb1\x63\xbd\x8c\x06\xb1\xa3\xae\x44\x83\xd8\x49\x78\xdc\x1b\xc4\x8e\xd0\xac\x41\xec\x3c\x5b\x2a\xc4\xce\xb3\x55\x41\xec\x24\x97\x33\x88\x9d\x44\xe2\x4f\x83\xd8\xb9\x1d\x79\x88\x9d\xdb\xad\x63\xe1\x9a\x7c\xfb\xf1\x4f\x92\x75\x79\xb7\x1d\xa1\x71\x37\x92\x8e\xd0\xb8\x1b\x57\xdf\x20\x17\x79\xd3\x7d\x83\x5c\xc4\x85\xd3\x11\x21\x37\x81\xa7\x23\x42\x6e\xbc\x4e\x47\x84\xdc\x04\xa5\xae\x08\xf9\xf0\x79\x10\x8f\xf4\xa1\x2b\x42\x0e\xc6\xea\x8a\x90\x83\x79\x3a\x4a\xe3\xaa\x45\x74\x94\xc6\x4d\x03\xea\x28\x8d\x5b\x3b\xbb\x6f\x12\x8f\xf6\x01\xe2\x11\xdb\xb7\xa3\x34\x6e\xd4\x4f\xdf\x25\x1e\x2f\x8e\x24\x1e\x79\xde\x2e\xf1\xc8\x3d\x17\xe6\xc9\xe6\x7e\xf6\x1d\xe2\x91\x05\xac\xef\x10\x8f\x38\x12\xfa\x0e\xf1\x88\xe1\xd1\x77\x88\xc7\xdb\xeb\x20\x1e\xf1\x2c\xf7\x5d\xe2\x91\x31\xdb\x25\x1e\x6d\x19\xc4\x23\xc9\x28\x7d\x87\x78\xcc\x3e\x0f\xe2\x31\xfb\x1f\xc4\x23\x9b\x61\x5f\x78\x28\x57\x96\xb3\x8e\x60\x43\x05\xf4\x77\x04\x1b\x2a\x11\xfd\x1d\xc1\x06\xc5\xb5\x3a\x82\x0d\xfd\xf0\x4c\x88\x47\x30\x5d\x47\xb0\xa1\x1f\x3e\x21\xf1\x1f\xad\x46\xb0\xa1\xf3\x15\x77\x04\x1b\xba\x33\x04\xc1\x86\xbe\xfb\x3c\x88\xc7\xdd\xe7\x35\xce\xa4\x0f\x08\x36\xf4\xdd\x27\x0c\x8e\xbc\xcb\xe4\x88\xb7\x89\x60\xc3\xb0\xd5\x88\x32\x58\x4f\xb3\x23\xca\x30\x70\x70\x76\x84\x17\xc6\xcf\xdb\xfc\xcf\x25\xb9\xa3\xc9\xa0\x7c\x64\x47\x93\x61\x06\x6f\xb2\x88\x1d\x43\x64\x3a\xc4\xce\xee\x20\x41\xec\xa8\x71\xd1\x21\x76\x54\xae\xe8\x10\x3b\xaa\x61\x74\x88\x1d\xcb\x78\x77\x88\x9d\x83\xe8\xd8\x0e\xb1\x73\xf9\x6a\x11\x13\xb7\xf6\x72\x47\x4c\xfc\xba\x3d\x93\x04\xee\xdb\x33\x49\xe0\x76\xf2\x20\x26\x7e\x39\x5d\x10\x13\xbf\xf0\xa4\x75\xc4\xc4\x2f\xac\xeb\xae\x98\x78\xf7\x09\x88\xa5\x77\x9f\x80\x58\x7a\xf3\x3a\xc4\xd2\xbb\xf7\x94\x40\x64\x5c\x10\x13\xaf\x8e\x04\x62\xe2\x95\x05\xa5\x23\x26\x5e\xd9\x19\x3b\x62\xe2\x15\x3b\xb5\x9f\x12\x88\x4c\x2c\xc4\xc4\xab\xa3\x7b\x4a\x20\xf2\x74\xc4\xc4\x2b\xd6\x4b\x47\x4c\xfc\xf9\x38\x10\x0c\x57\xf1\xac\x23\x18\x3e\x2e\x9f\x00\xc1\x86\x4f\xb1\x23\x18\x3e\xab\x77\x21\x09\x16\xb2\xa8\x53\xa4\x56\x30\xdd\x2f\x93\x7c\xb9\x0b\xe4\xcd\xee\xf2\x02\x79\xb3\x63\x41\x77\xc8\x9b\xdd\xe5\x0c\xf2\x66\x77\x39\x83\xbc\xd9\xb1\x68\x3b\xe4\x8d\xdc\x77\x87\xbc\x31\xa6\xb7\x43\xde\x18\x97\xdc\x21\x6f\xa2\x0b\x1f\xe4\x8d\x91\xcf\x1d\xf2\x26\x3e\x4f\x20\x09\xf6\x79\xc2\xf2\x2c\x9f\xbe\x5b\xc8\x1b\x3d\x9a\x1d\xf2\xc6\x6d\xac\x43\xde\x9c\x38\x9e\x3a\xe4\xcd\xe5\xbb\x95\xbc\xc1\xe6\xea\x92\x37\xd9\xeb\x20\x6f\x7c\x82\xe4\x0d\x96\x70\x97\xbc\x01\x0f\x75\xc9\x1b\x22\xf3\xbb\x0c\x0d\x38\xb1\xcb\xd0\x14\xef\x02\x43\xe3\xd6\x21\x43\xe3\x12\x29\x43\xe3\xf7\x20\x43\x73\x7b\x26\x0c\x8d\xcb\x99\x0c\x8d\xdf\x83\x0c\x0d\xac\x41\x97\xa1\x01\xb3\x76\x19\x1a\xa4\xaf\xba\x0c\x8d\x5f\x07\x8a\xe1\x05\xe7\x4b\x47\x31\xbc\x80\xf7\xba\xec\x8d\x4b\x39\xec\x4d\x01\xa0\xf7\xdb\xfe\x31\x82\x0f\x7b\x43\x6f\x1f\xf6\x86\xf1\xbc\xcd\xa2\x64\x94\x50\x13\x9f\xcd\xbb\xc0\x0c\x14\xff\x83\x19\x70\x65\x80\xd9\x99\x7e\x9b\x30\x3b\xd3\x19\x02\xb3\x33\x71\xf9\x75\x99\x1d\x9c\xa6\x5d\x66\xc7\xb9\x2b\xb3\x83\x2f\xb9\xcb\xec\x38\x23\x65\x76\x40\x7f\x5d\x66\xa7\x7b\x17\x98\x8f\xe1\x7f\x30\x1f\xce\x3a\xd2\x8e\x76\x50\x5c\x27\xed\x68\x9f\x1e\xc1\x1a\x3c\x67\xc2\x1a\x3c\x4f\x80\x35\x18\xff\x72\x5c\x74\x48\x9f\x5d\xab\x80\x8c\xa4\xdd\xa6\x14\xf2\xd9\x08\xfe\xe8\xd6\xb6\xc5\x3e\xea\xd6\xb6\xad\x9e\x49\x3e\x1b\xfe\xb1\x6e\x6d\x5b\xf7\x49\x6b\xdb\x42\x08\x75\x6b\xdb\xfa\xc2\xac\x6d\x8b\x77\xae\x93\x75\x14\x9d\xf2\x45\x22\x82\xc9\x03\x5d\x63\xea\x46\x87\xae\x39\x5d\xae\xa1\x6b\x2e\xbc\x88\x9d\x7c\xa1\x0b\xbf\x53\x87\xae\x31\x24\xae\x5b\x95\xd6\xa5\x00\xba\x26\xb9\x2c\x41\xd7\x24\xfb\x00\x5d\x93\xec\x1f\x74\x4d\x72\x19\x84\xae\x49\x7e\xee\xd0\x35\x49\xab\x07\xba\x26\xd9\x23\xf2\x85\x92\x9f\x8a\xa5\x67\x1d\x6b\xf2\x85\x6e\x40\x71\x27\x5f\xe8\x26\x54\xa9\x43\xf3\x28\x31\xd3\xa1\x79\x54\xd1\xe8\xd0\x3c\xb7\x2f\x1a\x9a\xc7\x70\xf4\x0e\xcd\x63\x11\x9a\x0e\xcd\xa3\x3a\x59\x87\xe6\xc9\xd0\x7b\xbd\x99\xb3\x46\x6f\x9b\x39\x6b\xb6\x73\xf5\xa1\x10\x60\xdf\xa1\x79\x64\x9f\x3b\x34\x8f\x14\x6c\x87\xe6\x29\xf8\x14\x3b\x34\x8f\x94\x6f\x87\xe6\x91\x8b\xee\xdd\x9c\x35\xda\x02\x95\xd3\x6c\x35\x54\x4e\xf3\xdd\x42\xe5\x54\xfb\x07\x95\x63\xd2\x74\x87\xca\x31\x69\xba\x43\xe5\xd4\x69\xcb\xf0\xb1\x6f\x3e\x01\x0e\xc1\x0f\x1c\x2a\xa7\x81\x09\x3a\x54\x4e\x75\xe4\xa1\x72\x4c\xbd\xee\x50\x39\xcf\x12\x42\x59\x5a\x49\xde\x4e\x59\x5a\xd3\xb9\xfb\x90\x43\xa0\xef\xd0\x3c\xd5\xf7\x37\xec\x1f\xa3\x04\x5f\xd3\xb4\xb9\xe0\x6b\x1a\x29\x42\x1d\xbe\xc6\xd8\xf1\x3e\xf4\xbf\x7b\x17\xfc\xef\x80\xe2\x4e\xe9\xd9\x81\xc0\x4d\xa7\xf4\xac\xce\x90\x0e\x1e\xba\x61\x68\x3a\xa5\x67\x75\x86\xf4\xa9\xff\x9d\xe7\xc1\xf3\x0c\x62\x17\x3a\x3c\x8f\x8e\x92\x0e\xcf\x33\xfc\x72\xe0\x79\x86\xa6\x14\x3c\xcf\x88\xb6\x05\x7e\x21\x78\x1d\xfc\x02\x71\x06\x1d\x9e\x47\x07\x4b\x87\xe7\x19\x78\x88\x3b\x3c\xcf\x08\xb6\x65\xe2\xfd\x5f\xb3\x60\xc0\xf3\x98\x18\x3d\xe0\x79\x4c\x73\x1f\x9b\xb9\x75\x9d\x23\x72\xeb\x78\xb7\x03\x9e\xc7\xa5\x75\x90\xdc\xb3\x61\x04\x0d\x92\x7b\x76\x30\xc8\x20\xb9\x67\x6f\x5e\x87\x6f\xbe\x79\x26\xbe\x79\xa8\xdb\x41\x72\x8f\x54\xf1\x20\xb9\x47\x22\x77\x90\xdc\xa3\xf9\x32\x48\xee\xd9\x59\x51\x06\xc9\x3d\xc7\xe9\xf3\x26\x47\xdc\x13\xfd\xba\xe3\xfc\x57\xaa\xc8\x40\xda\xee\x64\xb7\x1d\xe4\x04\x69\x69\x0c\x72\x82\x4e\xbc\x34\x83\x9c\xa0\x13\xff\xd8\x20\x27\xe8\x64\xcf\x1e\xe4\x04\x59\x37\x61\x90\x13\x74\x92\x91\x3e\xc8\x09\x3a\x8b\x4f\xc0\x01\x9e\xfc\x0f\x07\x38\x0b\xe6\x20\x27\xe8\xcc\x76\x01\x2f\x37\xd6\xc4\x20\x27\xc8\x72\xe3\x83\x9c\x20\x43\x79\x06\x39\x41\x27\xf6\xca\x20\x27\xe8\xc4\x26\x19\x87\x0e\x7e\xee\x49\x4e\xd0\x49\x09\xd2\x71\x48\x60\x70\x4f\x72\x82\x4e\x6c\x92\x71\xd8\xbf\x8b\x23\xfa\x77\x7b\x64\xff\x98\x20\xe4\x04\x9d\xd9\xa7\xd3\xbf\xec\x7f\xf4\xef\xb6\x2d\xf4\x8f\xa8\x83\x01\xad\x74\xde\x1e\xd1\xbf\xdb\x96\xd1\x3f\x2c\x94\x01\xad\xa4\x98\xc9\x80\x56\x52\xf6\x64\x40\x2b\x9d\xf8\xd1\x07\xb4\x92\xa2\xe0\x03\x5a\xc9\x2a\x68\x03\x5a\xe9\xba\x3c\x13\x0f\x38\x4b\xe4\x80\x56\x4a\x6c\x9b\x03\x5a\x29\xb1\x6d\x0e\x68\xa5\xe4\xf4\x84\x56\x4a\xd5\x27\xe0\xc5\x87\x8e\x1a\xd0\x4a\xa9\xda\x4e\xbc\xf8\xd5\xeb\xf0\xe2\x3b\x91\x49\x11\x4a\xc5\xa7\x93\xd3\x45\xfc\xc5\x80\x80\x4a\x58\xf3\x03\x02\x2a\x11\x39\x31\x20\xa0\x92\x9f\x11\x04\x94\x1b\xe5\x80\x80\x4a\x6c\xe1\x03\x02\x2a\xf9\xf9\x41\x40\x25\x3f\x38\x08\x28\x37\xd1\x01\x01\xe5\x06\x3b\xa2\xfd\xf3\x2e\xf4\x0f\x8a\x79\x44\xfb\xc7\xb8\x40\x40\x25\x6c\xae\x11\xed\x9f\xed\xc4\xfb\x8f\x9b\x66\x40\x40\x65\x96\xcf\x01\x01\x95\x59\x68\x07\x04\x54\xc6\xb3\x3c\x20\xa0\x32\x1e\xe2\x01\x01\x95\xc9\xa6\x1b\x10\x50\x19\xff\xed\x80\x80\xca\xd1\xff\x28\x17\xea\x1b\x83\x80\xb2\x06\xc7\x80\x80\xca\x8e\xf5\xa9\xf7\xdf\xa3\xc6\x11\xfd\x83\x49\x32\x28\x74\xc0\x24\xd5\xdd\xb6\xac\x3e\x28\x5a\x35\x60\x92\x2a\x5b\xdc\x80\x49\xaa\x20\xe6\x01\x93\xa4\xa0\xd5\x80\x49\xaa\xbb\xff\x45\x8e\xbc\xcb\xc9\x99\xf4\x08\x26\xa9\xe2\x0a\x1d\x30\x49\x15\xbf\xef\x80\x49\xaa\x6c\x71\x03\x26\xa9\x42\x31\x0f\x98\x24\xc3\x5c\xc7\x65\xff\x78\xd3\x30\x49\x2d\xda\x16\x98\x01\x22\x91\x07\x4c\x52\x4b\xb6\x6c\x72\x44\x6f\x49\x1f\x6a\x44\x90\x0d\x58\xa6\xe6\x5a\x07\xcb\xd4\x70\xd6\x0d\x58\x26\xe3\xb5\x07\x2c\x53\x7f\xae\x93\x19\x60\xac\x93\xcc\xc0\xbf\xf4\x92\x07\x04\x94\xa5\x9d\x06\x04\xd4\x20\xec\x6d\x40\x40\xb9\x33\x8e\x24\xa1\xc0\x00\x52\xcd\x56\x7e\x7b\x40\x4e\x59\xcd\x62\x98\x75\xe4\x82\x62\xd6\x91\xfb\x1d\x59\x47\x3b\x3b\xf8\x20\xeb\x48\x61\x8e\x61\xd6\x91\x4b\x96\x59\x47\x80\xbf\x71\x23\x0d\xea\xc2\x77\x23\x0d\xea\x62\x63\x46\x92\x8b\xb0\x19\x49\x2e\x8a\x66\x24\xb9\x59\xdc\x78\x73\x9f\x33\xf1\x56\xbb\x1d\x91\xad\x14\x9c\xc8\x37\xde\x6a\xe8\xcb\x71\xe3\xa8\xc7\x36\x1c\x64\x32\x05\x47\x82\x4c\xa6\xe0\xf6\x40\x26\x93\x5a\x1c\x23\xe3\xad\xc6\xde\x1c\x19\x6f\xb5\x8b\x29\x59\x4e\x01\x7b\x65\x90\xc9\x14\xe0\x71\x07\x99\x4c\x81\x98\xc9\x41\x26\x53\x70\x6b\x24\x93\xc9\xba\x10\x83\x4c\x26\xc3\x9f\x06\x99\x4c\xc1\xc5\x9b\x4c\xa6\xe0\x96\x93\xed\x03\x6f\x85\x4c\x26\x55\x42\x06\x99\x4c\xc1\xa9\x4b\x26\x53\x70\x7a\x92\xc9\x14\xdc\x0c\x8b\x7d\xe0\xad\x90\xc9\xa4\x82\xc8\x20\x93\x29\x10\xba\x37\xc8\x64\x0a\x90\xc3\xa3\xd8\x3f\xef\x42\xff\x9c\xac\xa4\x2b\xa9\x35\x32\x48\x57\x3a\xb5\x49\x48\x57\x3a\x89\x87\x1d\x45\x8f\xbb\x67\xe2\x71\x77\xf1\x26\x5d\xe9\x74\xeb\x20\x5d\xe9\x74\xb9\x26\x5d\xe9\x72\x59\x22\x5d\x49\xa9\xad\x41\xba\xd2\xe5\xb6\x42\xba\x92\x9a\xcf\x83\x74\xa5\x84\xdf\x70\x90\xae\x94\x5c\xc0\x48\x57\x4a\x78\x26\x47\xd5\x1b\x4f\xcb\x20\xb5\xa4\x7c\x07\xa4\x96\x01\x56\xa3\xea\x8d\xf7\x79\x7a\xe3\x69\x99\xe9\x4a\xce\x5d\xd3\x95\x88\x01\x1a\xa6\x2b\x01\xe5\x87\xe9\x4a\xd3\x7b\xe2\x8d\x77\x29\x27\x5d\xe9\xc6\x32\x1d\x90\x61\x37\x5a\x8f\x03\x32\xec\x76\xd6\x99\xae\xa4\x9d\x6a\xba\x92\xdf\x34\x64\x58\x3e\xfc\x0f\x8f\xfb\xe1\x5d\xf0\xb8\xbb\xc9\x40\x78\x65\x5c\x77\x03\xc2\x4b\x8a\x79\x98\x92\x84\xdd\x3f\x20\xbc\xa4\xad\x87\x29\x49\xd8\xda\xc3\x94\x24\x8d\x0b\x58\x2d\xf3\x7a\x07\xac\x96\x3a\x24\x03\x56\xab\x80\x6b\x86\xe9\x4a\x78\xdc\x87\xe9\x4a\x5a\xd0\xa6\x2b\xe1\x71\x1f\xb0\x5a\xd9\xe5\x13\x56\x4b\x91\xb3\x61\x2a\x13\x5e\xfc\x61\x2a\x13\xf8\x6b\x98\xae\x44\x22\xce\x80\xb9\x2a\x9b\x2d\x93\x35\xe0\xfd\x99\xae\x34\x3d\x82\x35\x00\x39\x0d\x98\xab\xa5\xd2\xf8\xdf\x4b\xf2\x93\xc9\xc4\xe3\x20\xb5\x2a\x00\x68\x40\x6a\x55\x27\x96\x99\x4c\xc5\xff\x20\x14\x9c\x4a\x66\x32\xb9\x7c\x9a\xc9\x84\x87\x6a\x98\xc9\xe4\x70\x9a\xc9\x84\x73\x62\x98\xc9\xa4\x95\x6c\x26\x93\xb6\xa8\x99\x4c\x2e\xd0\x66\x32\xb9\xb4\x9a\xc9\xe4\xf2\x09\xe1\xd5\x9d\x20\x10\x5e\xdd\xe9\x09\xe1\xd5\x5d\x0a\x00\x78\x1d\x50\x35\xcc\x56\x72\x82\x98\xad\xe4\x66\x01\xa9\xd5\x9d\x2e\x90\x5a\xdd\xa9\x6b\x46\x92\x96\x0d\xc4\x55\xd7\x7a\x81\xb8\xea\x6e\x4e\x10\x57\x1d\xdf\xfc\x10\xa8\xc1\xfb\x4f\x88\xab\xce\x64\x9d\x10\x57\x83\x8c\xc0\x09\x71\x35\xb0\xfb\x27\xc4\xd5\xb8\x3d\x13\xd2\x80\x05\x65\x42\x5c\x0d\x62\x17\x26\xc4\xd5\xe8\xde\x45\x42\xa1\x72\x74\x73\x34\x39\x82\x35\xc0\xfb\x3f\x21\xae\x4c\xeb\x9d\x10\x57\x13\xab\x67\x42\x5c\xcd\xd3\x33\x57\xff\x66\xf1\xe9\xb0\x06\x8c\xe0\x34\xed\x88\x8f\x6a\x92\x76\x74\xb1\xf4\x4c\xd2\x8e\xac\x38\x3c\x49\x3b\xba\x98\x59\x93\xb4\xa3\x8b\x85\x68\x92\x76\x74\xb1\xf9\x4e\xd2\x8e\x32\x96\xcd\x24\xed\xa8\x06\xef\x89\x57\xbd\xf9\x1f\xf2\x91\xdd\xa7\xe3\x39\x27\xde\x63\xa2\x51\xa7\xc7\x6f\x1e\x7a\xc7\x79\x3a\x1a\x75\xba\xee\xe6\xa1\x77\x9c\x31\x43\xa3\xce\x98\xe5\x89\x46\x9d\x20\x75\xa2\x51\x17\x1d\x4f\x34\xea\x4e\xdc\x42\x13\x8d\x3a\x15\x36\x26\x1a\x75\x91\x8f\x7f\xa2\x51\x77\x6e\xb6\xa5\x73\xc4\xc8\xa3\x51\xa7\x4a\xc8\x44\xa3\xee\xc4\x1e\x9b\x68\xd4\x9d\x84\x9d\x4e\x74\xe8\x2e\x7b\x8b\x0e\x9d\x29\xfe\x13\x1d\x3a\xc9\xc5\x89\x0e\x9d\x69\xfc\x13\x1d\x3a\xe3\x59\x26\x3a\x74\x4a\x11\x4c\x74\xe8\x4c\xff\x9f\x68\xcd\x15\xb6\xc6\x89\xd6\x9c\xa4\xe4\x44\x6b\xce\x22\xca\x13\xad\xb9\xca\x56\x3c\xd1\x9a\xab\x6c\x9b\x33\x1a\xdf\x4f\xab\x29\x99\xb4\x61\x17\x4f\xca\x22\x6d\x8e\x04\x65\x91\x36\xec\xf0\x49\x59\xa4\x0d\x9a\x6e\x52\xfb\x68\xdb\x7c\x02\x71\xec\xce\x6b\xea\x1b\x6d\x70\x32\x53\xcd\x38\x47\x50\xcd\xb8\xe9\xf3\x26\x77\xa1\x7f\xd4\x37\x3a\x7c\x3a\xf5\x8d\x76\xdf\x26\xf5\x8d\x76\x16\xef\x49\x7d\xa3\xc3\x77\x44\x7d\xa3\xdd\x77\x8b\x66\x9c\x66\xd6\x3c\x75\xe7\xf2\x56\xd0\x8c\x8b\xce\x4f\x34\xe3\xe2\x3f\xc5\x39\x27\x72\x72\x16\x23\x99\xc8\xc9\x45\xd6\xfc\x79\xea\xe9\xf5\x71\x78\x7a\xf1\xcb\x4c\x34\xe3\x2c\x8c\x32\xd1\x8c\x3b\x1d\x40\x34\xe3\x4e\xa0\xc4\x44\x33\xee\xc2\x52\x9c\x68\xc6\x19\x3c\x37\xd1\x8c\xbb\xb0\x8f\x26\x9a\x71\x17\x36\xfa\x44\x33\xee\x3a\xbd\x0b\x21\xe7\x58\x7c\x13\xcd\x38\xd5\x9a\xe7\xa5\xbf\x98\x76\xa2\x19\x67\x2e\xd1\x44\x33\xee\x1a\x3e\x1d\x7f\xb1\xad\xbe\xf4\x17\x7b\x17\x7d\xad\x9e\x89\x06\x18\x3e\xc5\x89\x82\x5c\xc6\x1b\x38\x51\x90\xcb\x80\xb1\x89\x82\x9c\xe9\xc7\x13\x05\x39\x21\xe4\xa4\x2c\x92\x45\x24\x27\x65\x91\x0a\xc2\x2a\x13\x75\xb9\xb6\xfb\xdf\xea\x43\x3b\x7c\x1e\xbe\xc8\xdd\x23\x7c\xad\x87\x4f\xa7\x2c\xd2\xee\x5d\xf0\x53\xba\xb0\x5b\x16\x69\xf7\x08\x3f\xa5\x93\x15\x75\xb9\x46\xd6\xd1\x44\x5d\xae\xb9\xec\xa2\x2e\xd7\xb0\x88\x26\xea\x72\x8d\xed\x68\xa2\x2e\xa7\xd6\xf0\x44\x5d\x4e\x1c\x35\x51\x97\x1b\xa0\x87\x89\xba\xdc\xc0\x2e\x9e\xa8\xcb\x0d\xf0\xc2\x44\x5d\x6e\x5c\x3e\x0f\x3f\xa5\x23\x41\x59\xa4\x41\x0c\xea\xbc\xf1\x53\x5e\x3e\x01\x3f\xa5\xef\x1d\x1d\x3a\x31\xdd\x44\x87\x6e\x56\x5b\x3d\x38\xe2\x3f\x42\xe9\x36\xe2\x4c\x27\xe1\x72\x3b\xd9\x74\x93\x70\xb9\xc3\xa7\x67\x04\xad\x5c\x50\x32\x4e\x29\x97\x1e\x42\xe9\x4e\x97\x2c\x42\xe9\xb4\xd8\x27\xa1\x74\xda\xe8\x93\x50\xba\xd3\x99\x45\x28\xdd\xf9\xb4\x05\xa7\x94\xed\x24\x94\xce\xa8\x98\x49\x28\x9d\x98\x60\x12\x4a\x77\xe2\x6e\x99\x84\xd2\x19\x5b\x33\x09\xa5\x3b\x89\x6a\x9a\x84\xd2\x9d\x24\x1a\x4d\x42\xe9\x4e\x37\x66\x42\xe9\xc4\x0b\x93\x50\xba\x13\x76\x63\x16\xfb\x47\x8f\x28\x8b\x74\x42\x74\x4e\xca\x22\x5d\x6e\xd3\x84\xd9\x9d\x2e\x2f\x84\xd9\x89\x3a\x66\xb1\x7f\x3e\xbd\xe3\x12\x63\xb6\x12\x66\x97\x86\x67\xe2\x94\x82\x60\x9b\x84\xd9\x25\xb8\xaa\x49\x98\x5d\x72\x93\x21\xcc\x2e\xb9\x19\x56\x85\x94\xf8\x36\x09\xb3\x4b\x90\xca\x93\xda\x47\xc9\xed\x96\xda\x47\x09\x66\x60\x52\xfb\x28\x41\x07\x4f\x6a\x1f\x89\x2c\x26\xb5\x8f\x12\xb4\xe0\xa4\xf6\x51\xea\x5e\x87\x53\x0a\x92\x70\x56\x9d\x52\xf4\x9d\xda\x47\x69\x78\x26\xfd\x23\xf6\x7f\x52\xfb\x28\x91\x37\x39\xa9\x7d\x74\xbb\xcc\x53\xfb\x28\x61\xb1\xcf\x66\xff\xee\x7f\x2d\xc9\x94\x45\x4a\x30\x8d\x93\xb2\x48\xd9\x29\xdf\xf4\x57\x31\x48\x94\x45\xca\x80\xdb\x49\x59\xa4\x0c\x7c\x9e\x94\x45\xca\x04\xcf\x4d\x4a\x1f\xe5\x68\x33\xf1\x57\x01\x79\x26\x7a\x72\x46\x1d\x4c\xf4\xe4\x8c\x4f\x98\xe8\xc9\x19\xca\x33\xd1\x93\xab\x2e\x0c\xe8\xc9\x55\xbc\x73\x13\x3d\xb9\x8a\xeb\x60\xa2\x27\x67\xb4\xc2\x44\x4f\xee\xb1\xa4\xd0\x93\xab\x58\xb4\x13\x3d\xb9\xaa\x55\x87\x9e\x9c\x91\x13\x13\x3d\xb9\x1a\xbc\x27\xfe\x2a\x97\x33\xf4\xe4\x6a\xf0\x08\x7f\xd5\xe1\x3d\xed\x1f\x03\x8f\x9e\x5c\x85\xea\x98\xe8\xc9\x55\xac\xe4\xd9\xed\x1f\x23\x81\x9e\x5c\xc3\x1b\x38\xd1\x93\x6b\x2e\x21\x43\x7f\x15\x23\x88\x9e\x5c\xd3\xfa\x44\x4f\xae\x69\x6f\xa2\x27\xd7\x80\x4a\x13\x3d\x39\x15\x05\x26\x7a\x72\x7d\xf3\x09\x37\x47\x8c\x27\x7a\x72\xcf\x42\x8b\x9e\xdc\xb3\x60\xa2\x27\xf7\x2c\x8a\xe8\xc9\x3d\x8b\x22\x7a\x72\xcf\x22\x8c\x9e\xdc\x70\x39\x43\x4f\x6e\x10\xb9\x3e\xd1\x93\x1b\xe0\x93\x89\x9e\xdc\x80\xf8\x98\xe8\xc9\x0d\xb7\x54\xf4\xe4\x06\xee\x8f\x89\x9e\x9c\x52\xf4\x13\x3d\x39\x65\xea\x27\x7a\x72\x43\x8b\x1d\x95\x38\x93\xb4\x27\xd8\xc5\x5a\xe4\x13\x7c\xb2\xfb\xde\x09\xac\x23\x2d\x3b\x6c\xe0\x13\x44\x67\xc3\xb6\xe9\x2e\x4b\x1c\xe1\x2e\x5b\xf8\x2b\x6c\xe0\x13\x64\x66\xc3\x06\x3e\x09\xd5\xeb\x70\xc5\xac\x18\x84\xb0\x81\x4f\xc2\x8a\x41\x08\x1b\xf8\x24\x54\xef\x89\xab\x69\x61\xc8\xb0\x81\x4f\xc2\xc2\x04\x61\x03\x9f\x84\x85\x87\xc2\x06\x3e\x09\x4f\x5b\x70\x35\x2d\x76\x23\x6c\xe0\x93\xf0\xb4\x05\x57\x53\xf6\x3f\x5c\x4d\xcb\x28\x09\x1b\x81\x75\x21\xd3\x4e\x02\xeb\xc2\x4d\xdf\x09\xac\x0b\x99\xe7\x11\x58\x17\x32\xbd\x25\xb0\x2e\x2c\x26\x29\x6c\xbb\xfd\xa3\x9d\x04\xd6\x85\xb5\xb0\x87\x8d\xc0\xba\x90\x3d\xa2\x7f\x95\xbe\x13\x58\x17\x16\xf2\x0d\xdb\xae\x3b\xd0\xa7\xd3\xbf\xea\x7f\xf4\x6f\x39\x27\xc2\x46\xf0\xdc\xd9\xb9\x27\xc1\x73\x57\xe5\x3f\x82\xe7\xae\xce\xb8\x10\x3c\x77\x75\x46\x02\x59\x04\xaa\x2c\x86\x8d\xe0\xb9\xab\xd3\x23\x82\xe7\xc0\x12\x61\x23\x78\xee\xea\xf4\x88\xe0\x39\xd2\xb9\xc3\x46\xf0\x1c\x15\xbf\xc3\x46\xf0\x5c\x3a\x18\x41\x82\xe7\x60\x4c\xc2\x46\xf0\x1c\x3c\x48\xd8\x08\x9e\x4b\xf6\x8f\xe0\x39\x42\x04\xc2\x46\xf0\x5c\x72\x24\x08\x9e\x5b\x7c\xcd\x7f\x2d\xc9\x61\x23\xae\x2e\x15\x9a\x42\x21\xa4\xe4\x64\xa5\x10\x52\x72\x20\x88\xb9\x63\x3f\x08\x1b\x31\x77\xa9\x33\x09\x28\x84\x94\xec\x3a\x85\x90\xd2\x64\xc8\x82\x72\x37\xfe\x87\x5f\x26\x32\xf0\x41\xdf\x12\x9d\x0d\xfa\x96\xbc\x0e\xbf\xcc\xc6\xe0\x52\xde\xa8\x6c\x74\x96\xf2\x46\x88\xb3\x87\x2d\xea\x5b\x62\xa8\x29\x6f\x84\x54\x7b\xd8\x28\x6f\x54\x76\x9e\x47\x79\xa3\xb2\xf1\x04\xca\x1b\x95\x8d\xde\x52\xde\x08\x39\xf6\xb0\x51\xde\x08\xe1\xfd\xb0\x51\xde\x08\x25\xb8\xb0\x51\xde\xa8\x74\x5a\x4d\x79\x23\x88\x88\xb0\x51\xc2\xa8\x1e\xb6\x0c\x07\x4b\xf0\x09\x44\x6c\x46\x9e\x4e\x09\xa3\x1a\xb9\x0b\x25\x8c\xa8\xd5\x1d\x36\x4a\x18\x91\xea\x1d\x36\x4a\x18\xd5\x46\x5b\x28\x61\x54\x1b\x53\x89\x12\x46\xb5\x32\x4a\x94\x30\xaa\x8d\xde\x52\xc2\xa8\xba\x84\x50\xc2\xa8\xfa\x1e\x28\x61\x54\xbb\x77\xa1\x0f\xd5\x27\xe0\x40\x6a\x8c\x20\x25\x8c\xd0\xdb\x0d\x1b\x25\x8c\x6a\x65\xac\x29\x61\xd4\x4f\xfb\x80\x03\xe9\xe4\x9e\x97\x0e\x24\x5a\x46\x09\xa3\x6e\xdf\x29\x61\xd4\x4f\x7a\xbb\xd0\x51\xee\xf6\xfd\x22\x22\xf5\xe4\x79\x94\x37\xea\x27\x2d\xa3\xbc\x51\x77\xcc\x28\x6f\xd4\x4f\x46\x89\xf2\x46\xfd\x64\x26\x53\xde\xa8\x9f\xf4\x81\xf2\x46\xfd\xb4\x2d\x38\x9e\x4e\x46\x82\xf2\x46\xfd\xb4\x65\x48\xe1\xb8\x0c\x52\xde\x68\xb8\xec\x52\xde\x68\xf8\xb9\x53\xde\x68\x6e\x8c\x35\xe5\x8d\x90\x71\x0f\x1b\xe5\x8d\xe6\x4e\xab\x29\x6f\x34\xfd\xc0\x17\x72\xca\xf3\xa0\xb7\x0b\x39\xe5\x79\xf0\xf4\x85\x9c\xf2\x74\xf6\x2c\xe4\x94\xe7\x41\x3b\x29\x8b\x34\xed\x7b\xc2\xf1\x74\x7a\x4f\x4a\x11\x65\x9f\xd7\x09\x34\x65\x5c\x28\x8b\xf4\x2c\x83\x94\x45\xba\x5c\x34\x28\x8b\x74\x15\xde\x26\x65\x91\x2e\x17\x7d\xca\x22\x5d\x2e\x44\x37\x9a\x36\x2e\x83\x37\x9a\x36\x2e\x6e\x94\x4c\x22\x93\x37\x6c\x94\x4c\x02\x43\x86\x8d\x22\x49\xdd\xd9\x4a\x91\xa4\x91\x18\xa5\xdb\x20\x4d\xc6\x93\x20\xb8\x7d\x72\x17\x82\xe0\x4e\xbf\x46\x82\xe0\xce\x9d\xeb\x08\x82\x3b\xfd\xde\x09\x82\x3b\x5d\x0b\x08\x82\x43\x90\x36\x6c\x04\xc1\x21\x9c\x1b\x36\x82\xe0\x88\xd3\x0a\x1b\x41\x70\x67\xf7\xbf\x9b\x23\xef\x49\x29\x8f\xe7\x3f\x82\x18\x87\x6d\x21\x88\x71\xd8\x16\xdd\x3b\x3e\x0f\xf7\x8e\xdb\x0a\xf2\x06\xc5\x15\x13\x79\x83\xf2\x83\x72\xfe\x7b\x49\x2e\xc4\x37\x3a\xcd\x50\x3e\x78\x16\x1b\x94\x0f\x4a\xe7\xe1\x28\x1f\xa0\xa6\x15\xb6\xa2\xf7\xca\xeb\xf0\x5e\x35\x3a\x84\xf2\x41\xb1\x43\x28\x1f\xd4\xcb\xbb\xa0\x4e\x51\x3d\xb2\x4a\x84\xcf\x2b\xf8\x8f\xe8\x02\x01\x72\xdb\xc1\x40\x14\x3d\x46\x5e\xd7\x39\x93\x29\x88\x2c\xf7\xe6\x24\x27\x40\x6e\x73\x5a\x13\x20\xb7\xed\xdc\x05\x3d\x03\xaa\xee\x86\x0d\xb1\xed\x6d\xe7\xe9\x04\xcf\x1d\xb6\x85\xe0\xb9\xc3\xc5\x9b\xe0\xb9\xc3\x09\x42\xf0\xdc\xb1\x31\xe9\x08\x9e\x3b\x5c\xd8\x09\x90\x3b\xdc\x19\x09\x90\x3b\xb4\x03\x08\x90\xa3\xa6\x5d\xd8\x08\x90\x8b\x8d\x56\x13\x20\x17\x1b\x77\x21\x40\x2e\x6a\x65\x11\x20\x17\x9d\xd6\x04\xc8\x9d\xf6\x1d\x41\xed\xcb\xd1\x25\x40\x2e\xb9\x98\x12\x20\x07\x05\x14\x36\x02\xe4\xf2\xce\x3b\x22\x40\x2e\xef\x3e\x1d\xa7\xcd\xe1\x99\x04\xc8\x39\x2e\x06\xc8\x39\x82\x04\xc8\x91\x8f\x18\x36\x02\xe4\xb2\x6f\x93\x20\xb8\x16\x68\x27\x41\x70\xcd\xed\x96\x20\xb8\x16\x78\x2b\x68\x1d\xb4\xc3\xff\x70\xda\x04\xda\x62\x80\xdc\xf0\x3f\x9c\x36\x83\xf7\x40\x80\xdc\x48\xf4\x9d\x00\xb9\x91\x18\x33\x02\xe4\x46\x62\x01\x23\x40\xee\xf9\xf8\x09\x90\x1b\x89\x3e\x10\x20\x87\xac\x52\xd8\x08\x90\x1b\x89\x27\x10\x20\x37\x12\xef\x96\x00\xb9\x91\x18\x4f\x02\xe4\xc6\xc5\x13\x08\x90\x9b\x6e\x24\x04\xc8\x4d\xb7\x1c\x02\xe4\xe6\xcd\x48\x10\x20\x37\x6f\x5a\x4d\x80\xdc\xf4\xdd\x82\x48\x36\x5b\x0d\x22\xd9\x35\x82\x40\x24\x7b\xa7\x7f\x20\x92\x43\xa3\x04\x44\x72\x5c\xb4\x0c\x44\x72\x5c\xbc\x3f\x10\xc9\x71\xf1\x74\x10\xc9\xe9\x77\x0b\x22\x39\x9d\x13\x20\x92\x73\x30\x27\x54\xb8\x76\x09\x01\x91\x9c\xc3\x33\x71\x78\x0c\xda\xa9\xc2\xb5\x0b\x34\x0a\xd7\xa7\xad\x56\xe1\xda\xf7\xa7\xc2\xf5\x64\x3c\x55\xb8\x9e\xde\x05\x87\x8e\x86\x1c\x0a\xd7\xa7\x2b\x91\x0a\xd7\xcb\x59\x10\x76\x14\xae\x4f\xd6\xa5\x5d\x85\x6b\x16\xbe\x5d\x85\xeb\xc5\x05\x84\x9d\x22\xae\xe7\x72\x94\x84\x7d\xb3\x7f\x93\x23\xfb\x37\x38\xb2\x7f\x07\x47\x09\x97\x83\x77\xc1\xe1\x81\x51\xb9\x13\x20\x77\x6f\xb6\xa5\x71\x94\x39\xea\x1c\xd9\xb2\xc1\x51\xe5\x08\xf5\x64\xcc\xba\x9d\x20\xb8\x34\xff\x11\x04\x17\x76\x82\xe0\x6e\x6c\xbc\x5d\x61\xec\x49\x17\x08\x82\xbb\x59\x96\x76\x82\xe0\x6e\x16\xa2\x9d\x20\xb8\x7c\x79\x84\xe3\x02\x7b\x65\x27\xd0\x2d\x33\x41\x76\x02\xdd\x32\x96\xd4\x4e\xa0\x5b\x3e\x7d\x1e\x69\xc4\x0b\xa4\x86\x9d\x40\xb7\x8c\x7d\xb4\x13\xe8\x46\x11\xff\xb0\x13\xe8\x96\x99\xc8\x3b\x81\x6e\x19\xab\x6e\x27\xd0\x0d\xb6\x34\xec\x04\xba\xd5\x93\xc1\x25\xd0\x0d\xc2\x32\xec\x04\xba\x69\xa7\xee\x04\xba\xd5\xe8\x99\x38\x35\xb0\xf1\x76\x02\xdd\x10\x2f\x0a\x3b\x81\x6e\x08\x1b\x85\x9d\x40\x37\x2d\xda\x9d\x40\x37\x24\x90\xc2\x4e\xa0\x1b\x05\x8d\xc2\x4e\xa0\x5b\x8d\x8c\x12\x81\x6e\xf5\xf4\x08\xa7\x86\x63\x46\xa0\x5b\x8b\x3c\x9d\x40\xb7\xc6\x12\xb2\x07\x9d\x1a\xb4\x25\xe8\xd4\xa0\x0f\x04\xb3\x75\x27\x08\xc1\x6c\xe8\xd0\x85\x9d\x60\x36\x34\xe3\xc2\x4e\x30\x1b\xba\x70\x61\x27\x98\xad\x63\x2d\xed\x41\xc7\x85\xff\xe1\xb8\x60\x99\xd8\x09\x66\x1b\xc9\x96\xe1\xb8\xb8\xbc\x27\x8e\x0b\x16\xb7\x9d\x60\xb6\x91\xb8\x27\xc1\x6c\x03\x40\xb9\x13\xcc\x36\xed\x3b\xc1\x6c\xd3\x51\x22\x60\x6d\x3a\xf2\x04\xac\x4d\xac\xba\x1d\xb4\xb2\xfb\x8e\x40\x2b\x7b\xe0\x79\xa0\x15\xf4\x21\xc2\x0e\x5a\xd9\xed\x1f\xc5\x58\x83\x9f\x1f\xc5\x58\x03\xa8\x63\x07\xc9\x84\xe6\x5d\x70\x01\x3c\xed\xc4\x05\xc0\x62\xb3\x83\x64\x02\x46\xc9\x0e\x92\x09\x93\xb1\x06\xc9\x04\x96\x9e\x1d\x24\x13\x9a\x47\xb8\x00\xba\x67\xe2\x02\x28\x1e\xe1\x02\x70\xd1\x00\xc9\x84\xe6\xf3\x70\x01\x74\xfa\x0e\x92\x09\x83\x3e\x80\x64\x82\x8b\xd4\x69\xff\x98\x75\xa7\xfd\xf3\x3a\xfb\xe7\x75\xf6\xcf\x3e\xd8\x3f\x7a\x0b\x92\x09\xa0\xe2\x1d\x24\x13\xb0\x06\x77\x90\xcc\x99\x18\x4f\xd0\xca\xc5\x02\xbd\x83\x56\x12\x66\xcf\x7e\x09\xf3\x99\x2f\x20\x92\x74\xd0\x3f\x10\x49\xc2\x01\xb1\x83\x48\x92\x5f\x31\x88\x24\xf9\x15\x83\x33\x6e\xd7\x09\x70\xc6\xed\x5a\x00\xce\xb8\x5d\x27\xc0\x19\xb7\x5f\x0e\x38\x03\xdd\xc9\xb0\x83\x33\x50\xa8\x0c\x3b\x38\x83\x7a\x35\x61\x07\x67\xdc\x95\x71\x01\x67\x64\x57\x86\x44\x9c\x48\xf4\x9e\x62\x79\x5a\x4d\xcc\x58\xd9\x79\x47\xc4\x8c\x51\x80\x2e\xec\xc4\x8c\x51\x22\x2d\xec\xc4\x8c\x51\x2c\x2e\xec\xc4\x8c\x15\x0c\xc0\xfd\x16\xaf\xff\xcb\x4a\xde\x09\x27\x2b\xf8\x50\x76\xc2\xc9\xa8\x62\x17\x76\xc2\xc9\xa8\x38\x17\x76\xc2\xc9\x0a\xbe\x97\x9d\x70\xb2\x82\xb5\xb4\x13\x4e\x56\xb0\xab\x76\xc2\xc9\xa8\x3f\x17\x76\xc2\xc9\x8a\x53\x9e\x70\xb2\xea\x3e\x42\x38\x59\x75\xd1\x27\x9c\xac\x6e\xde\x13\x98\xef\xfe\x43\x38\x19\x9e\xde\xb0\x23\x8c\x5d\x01\x0f\x3b\xc2\xd8\xd5\xcf\x8f\x70\xb2\x3a\x78\x3a\xe1\x64\xd5\x0f\x80\x70\xb2\xea\xce\x48\x38\x59\x75\x7f\xcd\x42\x79\xaf\x03\xca\x77\x9f\x07\x94\xf7\xf3\x23\x9c\xac\xba\x67\x13\x4e\x56\xfd\xfc\x08\x27\x43\xae\x28\xec\x84\x93\x55\x3f\x1c\xc2\xc9\xaa\xd3\x9a\x70\xb2\xea\xc7\x4f\x38\x59\x77\x11\x26\x9c\xac\xdf\x9e\x09\x94\xbf\x3d\x13\x28\x0f\xfc\xda\x09\x27\xeb\x6e\x5c\x84\x93\xf5\xe4\x75\x40\x79\x7c\x83\x3b\xe1\x64\xdd\x85\x96\x70\xb2\x8e\xe5\xb6\x13\x32\xd6\xfd\xfc\x08\x19\xeb\x17\xef\x88\xb0\xb0\x8e\xbd\xb9\x13\x16\xd6\x2f\x7a\x5b\x6d\x27\xfd\x23\x2c\xac\xbb\x78\x13\x16\xd6\x5d\xa0\xab\xed\x64\xe4\x09\x0b\xeb\x2e\xe5\x84\x85\xf5\xe4\x3d\x6d\xa7\xff\xd9\x4e\xc6\x85\xb0\xb0\x8e\x9d\xba\x13\x16\x36\x32\x23\x41\x58\xd8\xc0\xbf\xb9\x13\x16\x36\x5c\x88\x08\x0b\x1b\x93\x37\x46\x58\xd8\x3c\xe8\x2d\xa1\x5f\x33\x7a\x84\xa6\xae\xf3\xac\x91\x17\x8a\x97\x74\xa7\x70\xea\x85\x23\x68\xa7\x70\xaa\xde\xce\x9d\xc2\xa9\xb7\x0b\x26\x85\x53\x6b\xe4\x4c\x8b\x9c\xba\x94\x53\xe4\xf4\x04\x75\xec\x14\x39\x15\xf3\xec\x14\x39\x3d\xfd\xdc\x29\x72\x0a\x4d\x1e\xf6\x2e\xb4\x66\x5c\x28\x72\x7a\x61\xb5\xee\x14\x32\x45\x01\x3a\xec\x14\x32\x2d\xce\x6b\x0a\x99\x16\x70\xc6\x4e\x21\xd3\xe2\x75\x14\x32\x2d\xb6\x8c\x42\xa6\x68\x45\x87\x1d\x14\xb0\x81\x72\x76\x50\xc0\x86\x0b\x6e\x07\x05\x6c\x07\x6d\x01\x05\x6c\x8e\x19\x28\x60\x0b\xbc\x15\xd4\xd0\xb6\xe0\x3d\xc1\xc1\x9a\x28\xa4\xd0\x6c\xc1\xb6\x80\x83\xdd\x6e\x49\xa1\xd9\x70\x62\xee\xa4\xd0\x6c\xc1\x76\x12\x39\x81\xb3\x67\x27\x85\x66\x73\xd3\x26\x85\x66\x03\x71\xed\xc8\xa1\x6d\xe0\xb6\x9d\x14\x9a\x0d\xa7\xe9\x4e\x9a\xcc\x81\x17\x78\x27\x4d\x26\xf8\x05\x90\x26\x43\x60\x6b\xd8\x49\x93\x89\xd5\xe7\xa1\x4a\xa7\x31\x43\x9a\x8c\xce\x9e\x9d\x34\x99\xcb\x45\x9f\x34\x99\x6b\x78\x4f\x52\xca\xda\x3f\xad\x64\x02\xb3\x28\x5a\x1e\x0e\x32\x68\x10\x59\x0f\x07\x19\x34\x94\x30\x0f\x07\x19\x34\x09\x08\x72\x90\x41\x43\xd4\x62\x38\xc8\xa0\x41\xfc\x26\x1c\xa8\xa1\xa1\x52\x10\x0e\xd4\xd0\x50\x22\x08\x07\x6a\x68\xb9\x7a\x17\xd4\xde\x2e\x9f\x8e\xa2\x1b\x3e\xb0\x43\xc5\xb3\xe8\x75\x44\x08\xb0\xa7\x1d\x2a\x9e\x61\xed\x1e\x3b\x11\x02\xec\x70\xc7\x4e\x36\x16\x9f\xc3\x81\x1a\x1a\x12\x33\xe1\x50\x0d\x8d\x65\xe2\x50\x0d\x2d\xf9\x1f\x11\x02\x2c\x83\xc7\x4e\x84\x00\xcb\xd9\xb1\x0b\x36\x7d\x1e\x2a\x63\x60\x89\x03\x14\x80\xb0\x4a\x38\x40\x01\x7b\xf7\x09\x02\x51\xff\x43\xb8\x89\xed\xef\x30\xa5\xc5\xbb\x60\xe9\x5f\x78\x26\x0f\x53\x5a\x26\x2d\xc3\xd2\xa7\xfa\x5d\x38\xb0\xf4\x2f\x20\xd6\x61\x4a\x0b\x08\xe1\xc0\xd2\xbf\xf0\xa3\x1f\x58\xfa\x17\x16\xf4\x81\xa5\x7f\xe1\x60\x39\xb0\xf4\x2f\x36\xbc\xc3\x94\x96\xc9\x9b\xc6\xd2\xbf\x77\xaf\x03\x8c\xb1\x84\x1c\x96\xb2\x61\x99\x38\xb0\xe6\x29\x6b\x1f\x0e\x4b\xd9\x5c\xfe\x47\xda\xc3\xe5\x7f\xa4\x3d\xe0\x91\x3e\x82\xa2\x47\xdc\x13\x4b\x5f\xd7\xd6\x81\xa5\x5f\xb1\xc3\x8f\x20\x5a\xa1\x65\x58\xfa\x88\xba\x87\x03\x4b\xbf\x3e\xcf\x03\xad\x5c\xf4\x0f\x4b\x1f\x81\xf9\x70\x60\xe9\xd7\xcb\xbb\x58\x35\x85\xd1\xd5\xd2\xbf\x6d\x27\x96\x3e\x5b\xdc\xa1\xa5\xcf\xf6\x77\x3c\x96\x3e\x7d\x20\x35\x45\x6f\xee\xf1\x58\xfa\x5e\x87\xa5\x8f\x7f\xfa\xc0\xd2\xdf\x20\xca\x0e\x2d\x7d\x2c\xb0\x43\x4b\x9f\x65\xe2\xd0\xd2\xc7\x8a\x3c\xb0\xf4\x49\x7a\x0f\x07\xd6\x7c\xc4\x98\x39\xb0\xe6\xa3\xef\x41\x6b\x1e\x3f\xec\x81\x35\x1f\x31\xac\x0e\xac\xf9\x08\x27\x73\x60\xcd\x47\xcc\xa5\x43\x6b\xde\x79\x86\x35\x1f\xd9\x10\x0e\xac\xf9\xb8\x7b\x97\xc4\x3d\xe9\x1f\xd6\x7c\x74\x86\x60\xcd\x47\x7c\xbb\x87\xd6\xfc\xf4\x2e\x95\xff\xbc\x0b\xd6\xbc\xef\x1d\x6b\x3e\x6e\x1e\xd9\x3f\xdb\x62\xff\x78\x2b\x58\xf3\x11\xff\xf4\xa1\x35\x8f\x5b\xe1\xb8\xec\x1f\x6d\x81\x97\x08\xb8\x46\x0e\x78\x89\xc8\xb6\x72\x60\xe9\xc7\xcd\xeb\x40\x2b\x7e\x7f\xf0\x12\x61\x7a\x26\xfd\xf3\xeb\x00\x05\x04\xbf\x31\x50\x40\x84\x9d\x3a\x2e\xfb\xe7\x7f\xc4\xc6\x63\x1c\x1e\xa0\x80\x13\xc3\xf1\x80\x97\x58\x5b\xea\x7f\x2e\xc9\x07\x70\x21\xf9\xa9\x00\x17\x12\x86\xfe\x21\x24\xf0\x53\xd1\xec\x87\x22\x39\x34\xed\x4f\xff\x83\xa6\x8b\x34\x85\x54\x11\x1d\x10\x07\x66\x3f\xb1\x19\xe1\xc0\xec\x27\x8a\x23\x1c\x98\xfd\x44\x78\x84\x43\xb3\x3f\x30\xf0\x9a\xfd\xec\xb6\x87\x66\x3f\xbb\xed\xf1\xd8\xf6\xdc\xf3\xb1\xed\x19\x6a\x6d\xfb\xc0\x20\x3d\xb6\x3d\x6d\xd1\xb6\x3f\x68\xa7\xb6\x3d\xbb\xf4\xa1\x6d\x8f\xed\x74\x3c\xb6\x3d\xd3\x05\xdb\xbe\x34\x9f\x40\x78\x78\xf3\x09\xd8\xc5\x4e\x5d\x6d\x7b\x27\x8f\xb6\xbd\xaf\x8f\x54\x91\xe6\x47\x45\xaa\x48\xc3\x65\x74\x68\xf7\x3b\x59\xb1\xfb\x9b\xcb\x27\x76\x7f\x7b\xee\x89\xdd\xef\xa4\xc3\xee\x6f\xd8\x08\x07\x76\x7f\x73\x92\x63\xf7\x37\x27\x39\x76\x7f\x73\xf2\x60\xf7\x37\x17\x5a\xec\xfe\xe6\x87\x8a\xdd\xdf\x9c\xe4\xd8\xfd\x1d\x56\xfe\xc0\xee\xef\x30\xf6\x07\x76\x7f\xc7\x73\x7e\x60\xf7\x77\x62\x09\x0e\xed\x7e\x62\x10\x0e\xed\xfe\x4c\xab\xb5\xfb\x33\xad\xd6\xee\x27\x22\xe1\xd0\xee\x2f\xfe\x87\x3d\x9d\x7d\x02\xf6\x74\xe6\xbd\x6b\xf7\x63\xa1\x1c\xda\xfd\x99\x1e\x91\x46\x42\x41\xaa\x70\x90\x46\xd2\xb3\x67\x82\x09\x8a\x2d\xa3\x7f\xc5\x96\xd9\x3f\xc6\xac\xda\x3f\xe6\xa7\x78\x01\x88\x7c\x88\x17\x70\x47\x1c\xe2\x05\x08\xb6\x03\x4c\x30\x1c\x25\x30\xc1\xb0\x7f\x60\x82\x61\x5b\xc0\x04\x08\xfd\x87\x03\x4c\x30\x40\x78\x07\x98\x80\x72\x01\xe1\x10\x13\x0c\x9f\x40\x7c\x78\x60\x94\xc0\x04\xd3\x79\x0d\x26\x98\x90\xa7\x87\x98\xc0\xaf\x98\x54\x11\x94\xb8\xc3\x41\xaa\xc8\x74\xc3\x13\x2f\xf8\xdd\x92\x2a\x32\x41\x1d\x47\xa3\x5a\x07\x56\xeb\xb1\xa2\xaf\xce\x3d\x78\x66\x82\x5c\x64\x04\x41\x16\x87\xef\x41\x64\x01\x0f\x72\x3c\xe8\xc1\x33\x29\x4b\xa1\x29\xd5\x28\xdb\xd0\x6c\x35\x65\x1b\x34\x0e\x17\x67\x71\x0e\xec\xf7\xa3\xa3\xc8\xa2\x01\xd1\x21\xfb\x34\x58\x40\x24\x15\xf7\xea\x01\x22\x29\x2e\xb4\x20\x92\x8a\x4f\xf8\x00\x91\x14\xbf\x23\x10\x49\x75\xeb\xe8\x5a\xf3\xf4\x16\xee\xe1\xc0\x1d\x71\xc0\x3d\x1c\xb8\x31\x0e\xb8\x87\xc3\xcd\x69\x28\x41\xc1\xe8\xc2\x3d\x88\x87\x0e\x50\xc7\x75\xfd\x2b\xe2\xe2\x00\x90\x50\x8a\x28\x1c\x00\x92\xec\xb2\x04\x20\xc9\x2e\x83\x43\x6b\x97\x41\x02\x90\x34\xbc\xab\x07\x80\xa4\xb9\xb4\x9a\xd3\xaf\x3d\x0d\x20\x21\x09\x22\x1c\xe6\xed\xdf\x0c\xa0\x79\xfb\x5a\x28\xe6\xed\x6b\x4d\x00\x3a\x04\x94\x07\xa0\x63\xba\x59\x40\x4b\x6c\x4e\x48\x68\x89\xbd\x7b\x26\x96\xe2\xce\x50\x43\x4b\x5c\x2e\xd7\xd0\x12\xd7\xe1\xf3\xb0\x14\x77\x7a\x04\x2d\x71\x69\xe9\x43\x4b\x50\xcf\x39\x1c\xd0\x12\x97\x03\x0f\x2d\x71\xe1\xd0\x39\xa0\x25\x2e\x3f\x87\xa9\x25\xbc\xc6\x2c\x40\x4b\x5c\xd8\x2b\x01\x5a\xe2\x62\x7b\x08\xd0\x12\xd4\x96\x0e\x01\x5a\x82\xba\xd3\x21\x40\x4b\xdc\xcf\x99\x27\xb6\x68\xe7\xe8\xe2\xa8\x72\x04\x2d\xf1\x3c\xe1\xe6\x28\x72\x04\x2d\x41\x1f\x02\x79\xfb\xf7\xe1\x75\x58\xc2\x4c\xba\x00\x65\x91\x2f\x9f\x80\x4f\xff\xf2\xe9\xf8\xf4\x2f\xdb\x89\x4f\x1f\xa7\x46\xd8\xad\x8f\xc8\x5d\xe0\x25\x2a\x78\x21\xc0\x4b\x54\x1c\x25\x61\xd7\xa7\x4f\xff\x48\xc0\x47\x69\x2b\x04\x12\xf0\x51\xef\x0a\x61\xd7\xe7\x3d\x39\x22\x58\x8f\x08\x88\x00\x22\x31\x02\x22\x80\x48\x5c\x5e\x02\x88\xc4\x85\x28\xc0\x4b\xb8\xd8\x04\xb4\xca\xf6\x15\xa4\x19\x02\x21\x55\xa8\x19\x87\x40\x48\x55\x04\x30\x07\xf4\xc8\x22\xc0\x37\x1c\x5a\x59\x5e\x87\x95\xe5\x5b\x21\xa4\x2a\x06\x9e\x40\x48\x55\x64\x46\x06\x42\xaa\x62\xf0\x4c\xac\x48\xe6\x60\x20\xa4\x2a\x02\xf3\x03\x21\x55\x11\xe3\x22\x10\x52\x15\xa3\x77\xc1\x8a\xe4\xfb\x0b\x84\x54\x9d\x2c\xde\x81\x90\xaa\x93\xc5\x3b\x10\x37\x25\x19\x16\x8c\x9b\xc2\xc9\x10\x8c\x9b\x62\x31\x0d\xc6\x4d\xb1\xad\x04\xe3\xa6\x70\xa5\x85\xa0\x09\xe6\x3d\xf1\xca\x36\xfa\x80\x8e\x19\x15\x7f\x42\x40\xac\xec\xc6\x2d\x14\x10\x2b\x93\x1f\x0a\x44\x58\xe5\xd3\x33\x31\x6d\x1c\x09\x22\xac\x8a\x63\x46\x84\x55\xf1\xad\x18\x61\x15\x7d\x3a\x1e\x5b\x5c\x1c\xc1\x08\x2b\xb0\x44\x30\xc2\xca\x1e\x19\x61\xe5\xfb\x33\xc2\x0a\x64\x1f\x88\xb0\x22\x81\x3b\x04\xd0\x0a\x09\xe3\x21\x80\x56\xea\x73\x17\xdc\x96\xa7\xcf\xc3\x7c\xf1\x5b\x89\x9a\x2f\xde\x53\xf3\x85\x37\x06\x2f\x21\x51\x1d\x40\x32\x8d\x35\x24\x80\x56\x9a\x5f\x23\x68\xa5\x1d\xff\xc8\xde\x0b\x01\x20\x83\xae\x58\x08\x00\x99\x8e\xc3\x3d\x00\x64\x7a\xe5\x71\x00\x99\x4e\x80\x55\x00\xc8\xf4\xe6\x75\x58\x2f\x58\x91\x01\x20\xe3\x0e\x17\x00\x32\x1d\xff\x4a\x00\xc8\x74\x22\x0b\x02\x40\xc6\x10\x99\x00\x90\xe9\x2c\xbb\xc1\x00\xab\xea\x99\x58\x2f\x38\x58\x82\x41\x54\xd0\x58\xc1\x20\xaa\xc6\x94\x30\x88\x8a\x08\xca\x60\x10\x15\xa4\x4f\x30\x88\xaa\x79\x1d\x7d\xc0\x1b\x18\x0c\xa2\xf2\x65\x1a\x44\x85\x83\x25\x00\x56\x64\xe5\x03\x60\x65\x64\xef\xa2\xf5\x42\xab\x0d\xa2\x1a\xb6\x13\x8f\xe6\xf0\x9e\x58\x2f\x2e\xa6\x06\x51\xb1\x75\x04\x83\xa8\xd8\x7b\x83\x41\x54\x7e\x8c\x06\x51\x81\x41\x82\x41\x54\x00\xf4\x60\x10\x95\x9f\x91\x41\x54\x58\xa6\x61\x91\x1b\x71\xb8\xf4\x24\xfc\xa2\x7e\x54\x49\xeb\xc5\xbb\xe0\x17\x6d\xb6\xac\x92\x31\xe7\xd3\xb1\x5e\xba\x67\x62\xbd\xc0\x76\x87\x5b\xeb\x85\xe7\xa1\x47\x76\xba\x1d\xa1\x47\x76\xba\x59\xa0\x47\x46\xe5\xe7\x10\xd0\x23\x3b\x0f\xaf\xd3\x7a\xe1\xe9\x68\x8e\x35\x60\x70\x20\x39\x64\xf3\x53\xb9\x8d\x59\xa1\x47\x0b\x83\xa4\x80\xd7\x39\x64\x62\x56\xe0\xef\x43\x26\x66\xc5\x56\x67\x62\x56\xba\xd7\x45\x8e\x98\xbb\xd9\x98\x15\x9e\x97\x49\x42\x72\xbe\x64\x8d\x12\xef\x82\x51\x02\xf1\x18\x50\x04\x6b\xa7\x77\x21\x49\x07\x72\x2a\xa0\x08\xd6\x4e\x9f\x87\x0b\xce\xcd\x02\x45\xb0\x86\x53\x23\x20\xfb\xd5\x26\xf7\x44\xf6\x0b\xed\xe6\x10\x90\xfd\xd2\x3b\x1e\x0a\x46\x09\x41\x85\xa1\x10\xef\x81\x8f\x3d\x14\x8d\x12\x66\x08\xc9\x21\x87\xdb\xa6\x09\x20\xf8\x53\x43\xd1\xf0\xa0\x9d\x24\x80\x50\x9f\x23\x04\x12\x40\x2e\x37\x20\x12\x40\xee\xe7\x4c\xdc\x57\x38\x2e\x02\x09\x20\xb7\x6f\x93\x04\x90\xdb\x2d\x87\x04\x90\x5b\xe3\x82\x04\x90\x67\x2e\x55\xdd\x57\xf4\x81\x04\x90\xec\xca\x40\x02\x08\x49\xcc\x21\x90\x00\x82\x50\x68\x08\x24\x80\x54\x1c\x48\x81\x04\x10\x84\x42\x43\x20\x01\x84\x9c\xdf\x10\x48\x00\x41\x8a\x34\x04\x12\x40\xaa\x33\x84\x04\x90\xee\x02\x4d\x02\xc8\xc8\x1e\xe1\xbe\xca\x3e\x01\xf7\x15\x48\x26\x90\x00\x32\xfc\xaa\x48\x00\x19\x20\xbc\x40\x26\x87\x18\x24\x90\xc9\x31\x2f\xcf\x44\xda\x01\x14\x10\x48\x49\x8f\xf1\x5f\xbe\xe4\x40\xb6\x7a\x3c\xbd\x25\x7b\xb6\xaf\xbd\xb9\x67\x7b\x4b\xf6\x6c\xed\x1c\xb2\xce\xa3\x3b\x5c\x77\x5f\xe6\x3a\xb2\xce\x93\x7b\x36\x59\xe7\x37\xbe\xc1\x40\xd6\xf9\xad\x05\x46\xd6\xf9\xed\x52\x60\xd6\x39\x96\x77\x30\xeb\xdc\x89\x4c\xd6\x79\x71\x59\x22\xeb\xbc\xe0\x0c\x09\x66\x9d\xdb\x6a\xb3\xce\x01\x47\xc1\xac\x73\xad\x41\xb3\xce\xf1\x4f\x07\x8b\x64\xfa\xb9\x9b\x5a\xee\x48\x58\x24\xb3\x7b\x84\x5b\x61\xf7\x3a\xf6\x5e\xf7\x50\x53\xcb\xb5\xab\x4c\x2d\xd7\x46\x30\xb5\x1c\x7f\x63\x20\xb5\xbc\x39\x66\xa4\x96\xeb\x1d\x0f\xa4\x96\x37\x47\x90\xd4\xf2\xa6\xc5\x40\x6a\xb9\x01\x64\x81\xd4\x72\x43\xcd\x02\xa9\xe5\x4d\xfb\x81\xd4\x72\x03\xcf\x82\x45\x32\xb5\xc7\x2c\x92\x89\x23\x28\x58\x24\xd3\x8f\xd1\x22\x99\x5a\x2f\x16\xc9\xf4\xd3\x34\xed\x1c\xef\x78\x30\xed\xbc\x7b\x1d\x9b\x9a\x4b\x81\x69\xe7\x10\x96\xc1\x22\x99\xbe\x5b\x8b\x64\x3a\x9e\xa6\xa4\x77\xdb\xc9\xc6\xec\x32\x6f\x4a\x3a\x34\x56\x30\x25\x7d\xd0\x77\x52\x3e\x3a\x4b\x6b\x34\x25\x9d\x45\x38\x92\xf2\xd1\x89\x94\x8f\xa4\x7c\x74\x3c\x9a\x91\x94\x0f\xb7\x95\x48\xca\x47\x07\x55\x45\x53\xd2\xab\xd7\xe1\x72\x80\x1a\x8b\xa4\x7c\x20\xea\x1e\x22\x29\x1f\x93\x91\x8f\xa6\xa4\x33\x82\xd1\x94\xf4\xe8\x11\x29\xe9\x2c\x8a\xd1\x94\xf4\xec\x5d\x4c\x49\xf7\x4c\x53\xd2\x6d\xcb\x04\xf4\xd3\x3f\x0a\x68\xde\x50\x71\x91\x74\xf5\x1b\x37\x46\x24\x5d\x3d\x13\xac\x17\x49\x57\xaf\x20\xca\x48\xba\xfa\x33\x2e\xc4\x46\xa1\x4d\x1d\x22\xe9\xea\x2e\xec\x71\xe1\x93\x8b\xa4\xe2\x10\x77\xaa\xf4\x1d\x3e\x9d\x2a\x7d\x2c\xad\x71\x27\x0d\x1c\xc7\x4c\xdc\xa9\xd2\x87\x19\x12\x0f\x52\xa8\xf1\x56\xc7\x85\x41\xae\x8a\x79\x16\xa9\x11\xb3\x9d\x9e\x09\xc1\x76\xfa\xdf\xda\x56\x0e\x36\xe6\x48\x8d\x98\x70\x7b\x74\x71\x44\xcb\x0e\xc8\x37\x82\x0a\xe3\x41\x7e\x2e\x84\x73\xa4\x7e\x0c\x19\x7a\x21\x52\x3f\xa6\xc1\x21\x44\xea\xc7\x34\xf8\x8c\x78\x80\xd7\x7d\x0f\xc4\x3f\x1d\x4b\xd6\x36\x44\x18\x93\x2b\xd8\x32\xb0\x2e\x68\x25\xc2\x98\x5c\x7c\x7f\x11\xc6\x84\x12\x54\x21\xc2\x98\x50\xba\x2a\x44\x18\x93\x8b\xb5\x20\x2a\xf4\xb5\xd2\x95\x42\x84\x31\xb9\x7f\x70\xd4\x7f\x2e\xc9\x11\x32\xe5\x76\x62\x05\x61\xb0\x37\x01\x06\x3b\x05\x21\x53\x32\xa1\x58\x11\x32\x25\x13\xb1\x19\x21\x53\x72\xf2\x4c\x60\xf0\xf4\x2e\x84\x7e\xdd\x76\x81\xd0\xaf\xdb\xff\xc8\x67\xc3\x8d\x11\x21\x53\x10\xb1\x0e\x11\x32\x45\x9a\x2e\x12\x36\x85\x8c\x74\x88\x68\x80\x8d\xec\x99\xee\x54\xb4\x45\xa2\x05\xd2\x27\x92\x00\x82\x94\x5e\x88\x40\x97\xc8\x2e\x16\xa3\xdb\x91\x4f\x00\x5e\x02\x75\x23\xd0\x25\x62\x03\x45\xa0\x4b\x04\x22\x47\xe0\x89\x31\x8c\x11\xa2\x05\xb9\xca\x10\x4f\x97\x79\xda\x09\xea\x68\x2c\xfa\x11\xd4\xd1\x00\x78\x11\xd4\xd1\xd8\x02\xe2\xa9\x4f\x98\x29\x71\xba\x78\xd3\x96\xd3\xc5\x9b\x51\x02\x75\x34\x5b\x0d\xea\x68\xcf\xf3\x58\xbc\xd9\xaa\x22\xa8\xa3\xb1\x8d\x45\x51\xc7\xf4\x2e\x2c\x6e\xf8\xae\xa3\x69\x1d\xc4\x6f\x46\xd3\x3a\xd8\x52\xa3\x88\xc4\xcf\x4f\x44\x82\x07\x2e\x8a\x48\x80\xcf\x51\x44\x02\x0d\x12\x45\x24\x80\xe2\x28\x22\x01\x3d\x44\x11\xc9\xf0\x4c\x16\x6f\x6c\xed\x68\x5a\x87\x8b\xa2\x69\x1d\xc3\xff\x58\xbc\x89\x7c\x89\x20\x92\x3e\x7d\xba\xfd\xb3\xd5\xf4\xcf\xe5\x2c\xd9\x3f\xc6\x13\x44\x62\x78\x5e\x04\x91\x0c\x36\x8b\x28\xea\xc0\xe3\x1e\x45\x1d\x80\xd4\x68\xea\x46\xf0\x9e\x2e\xd0\x8c\xa0\xa9\x1b\xc1\xeb\x5c\xa0\x69\x0b\xbc\xcb\xb3\x0c\xc2\xbb\x4c\xec\xc6\x08\xef\x32\x5d\x5e\x4c\xdd\x20\x81\x27\xde\x68\x86\x80\xdb\xe2\x8d\x12\xb7\x6f\x93\xb4\x8e\x76\xf9\x9f\xa8\xc3\x23\xfc\xa2\xbb\x77\x21\x02\x02\x0e\x28\x92\xbc\xbe\x11\xa0\x1a\x49\x5e\xdf\x9c\xf3\x24\xaf\x6f\x97\x6d\x69\x2c\x98\xde\x05\x01\x05\x36\xe6\x48\xf2\x7a\xc4\x89\x12\xc1\x2e\xc9\x0d\x0f\xec\x92\x1d\x25\xb0\x8b\xc1\xab\x11\xec\x62\xf0\x6a\x04\xbb\x34\x8c\xb5\x08\x76\x19\xd9\x33\x89\xf3\x26\xab\x31\x9a\xf4\x6e\x6f\x49\x7a\xbf\x1c\xdd\xec\x2a\xe5\xf3\x70\xd6\xf9\x56\x48\x7a\xbf\xdd\x52\xb3\xce\x3a\xfa\x50\xb4\x76\xb9\x27\xcc\xc7\x8e\xc5\x1e\x61\x3e\xa8\x9d\x18\x22\xcc\xc7\xee\x7c\x81\xf9\x88\x6e\xb7\xb0\x1b\x97\x23\x01\xbb\x91\x30\xba\x22\xec\x46\xb2\x9d\xb0\x1b\xe9\xc7\xc0\xfd\xef\x25\x19\xe2\x23\xe1\x80\x88\x10\x1f\xe9\x79\x00\x16\xa6\x0b\x11\xc4\x47\x71\xe0\x21\x3e\xaa\x4b\x01\xc4\x47\x73\x19\x84\xf8\x78\x76\x2a\x88\x8f\x67\xa7\x22\x50\xaa\xb9\x28\x56\x17\x29\x9e\x00\x29\xd2\x9c\x12\x92\x22\x9b\x67\xf2\x11\xbb\xcc\x4b\x8a\x6c\x3e\x01\xb7\xc2\xe6\xd3\x71\x2b\xf8\x51\x49\x8a\x6c\xb6\x9a\x60\x28\x88\xab\x08\xf1\xd1\xe1\x5c\x23\xc4\x47\x87\x34\x88\x10\x1f\x83\xd8\x85\xd8\xac\x16\x40\xcb\x24\x3e\xf0\x02\x47\x0a\xc6\x4c\x5f\x83\x74\x86\x7b\x76\xd3\xee\xf0\x4c\xec\x0e\xf2\xe7\xe2\xa2\x33\x2e\x2a\x70\x87\xd8\x90\x6e\xc1\x71\x11\x49\xc1\xd8\x1c\x25\x34\x8a\x0f\x60\x62\x44\xa3\xf8\x28\x9e\x79\xf2\x01\xd0\x23\x53\x30\x2e\x8f\x48\xc1\x70\xf2\x98\x82\xe1\x82\x49\x0a\x86\xd0\x2c\x9a\x82\xe1\x16\x67\x0a\x46\xf6\x3a\x6d\x0b\xee\x49\x3a\x77\x26\x3c\x28\x92\xce\x9d\x89\x60\x89\xa4\x73\x67\xc7\xd3\x94\x6d\x62\x5e\xa3\x29\xdb\x10\x81\xd1\x94\x6d\x68\xb3\x08\x0a\x88\x78\xab\x23\x28\x20\xfa\xf9\x81\x02\xe2\xe5\x3d\xe1\xe1\x5d\xce\x40\x01\x51\x43\x00\x14\x90\x40\x40\x51\x05\x61\xad\x48\x50\x40\x76\x59\x12\x05\x10\xb7\x11\x41\x01\xcd\xa7\x4f\xe7\x20\x4f\x9f\xce\x41\xfa\x07\x0a\xa0\x2a\x60\x88\xa0\x80\x81\x3f\x3c\x4e\xe7\xa0\x4f\x60\x0e\xee\x3e\x9d\x39\xb8\xdb\x6a\x5c\x5b\xc5\x23\x5c\x5b\x5a\xf3\xa0\x80\xc9\xfc\x3c\x41\x01\x13\x94\x7a\x82\x02\x26\xbe\xf9\x13\x14\x30\x19\xf9\x13\x14\x40\xa5\xc1\x70\x82\x02\x66\xf2\x2e\x8b\x98\x4b\xcc\xd6\x93\x4a\x91\x1b\x5f\xe3\xb9\x39\x43\x26\x47\x2e\x6e\x8d\x23\x22\xd7\x71\xdd\x9d\x9b\xef\xcf\xeb\x88\x05\xc1\xe1\x78\x82\x02\x22\xe6\xd9\x09\x0a\x88\x4f\x3b\x79\x7f\xc9\xeb\x7c\x7f\xab\xb7\xa7\x15\x55\xf8\xde\x4f\x12\xbf\x91\x29\x08\x27\x89\xdf\xcd\x7b\x92\xf8\xdd\x78\xd3\x27\x89\xdf\x08\x69\x86\x93\xc4\xef\xf6\xdc\x13\x94\xb3\x7b\x1d\xef\x6f\xf7\x3a\x85\xb7\x68\x0b\x89\xdf\x93\xf8\x8b\x93\xc4\xef\x59\xbc\xce\xcd\x89\x3e\x50\x61\x72\xbb\x7c\x02\x4e\x29\x8c\x99\x73\xb7\x18\x9e\x77\xc1\xa1\x83\x5d\x7c\x12\x53\x75\x83\x80\x4e\x62\xaa\xee\xf0\xaf\x88\x8b\xd3\xc4\x8a\xec\x4d\x54\x53\xe0\xa5\x10\x6e\x35\xf0\xdc\x9d\x84\x5b\x8d\xe6\x11\xc1\xe2\xec\x38\x27\x04\xc6\xdd\xbc\x0e\x07\x3f\x3b\xf1\x09\x81\x81\x58\x7a\x38\x21\x30\xa8\x81\x1d\x4e\x48\x0a\xf4\x21\xc2\x69\xd1\x14\x7c\x3d\x27\x24\x05\x05\x3b\xc3\x09\x49\x31\x81\xf9\x27\x3a\x58\x66\xd3\x9d\xe8\x60\x55\x27\xdd\x02\x08\xe9\x38\xfc\x0f\xb2\x0f\xbb\xf1\x04\x05\x8c\xe2\x5d\xb0\x92\x81\x4a\xa7\x44\x04\xcb\xd9\x29\x11\xe1\x4b\x81\x88\x18\xbb\xff\xf1\x1a\xec\xbb\x96\x3e\x11\x09\x27\x44\x44\x04\x62\x9d\x10\x11\xcd\x8f\x03\x22\x62\x60\x31\x9c\x11\x91\x25\xa7\x92\xa9\xde\x2c\x9f\x67\x74\x9a\xf1\xa2\xa3\xd3\x8c\x57\x1b\xc9\x1d\x3c\xbc\x27\x4b\x81\x53\x09\x6b\x1e\xe1\xef\x70\x42\x44\xcc\xe8\x99\xd8\x63\x2c\xbb\xe7\xb2\xf4\xe7\xd3\xa3\x65\xe9\x1f\x87\x1f\xe3\xda\x7c\x27\xf2\xe8\xe1\x5c\x9b\xef\x71\xfa\x71\xac\xcd\x77\x8e\xe0\xd1\xb1\x8e\xb0\xff\xce\xb5\xf9\x6e\xd4\x36\x0b\xe7\xda\x7c\xe7\x74\x7a\xae\x4d\x74\x4e\x36\xbc\x73\xf9\xf1\x56\x32\xd7\x3a\x1a\x9c\x49\xdf\xd7\xb6\x39\xa7\x13\x79\x6d\x9b\x47\xe2\xe8\x5a\xd6\xee\x16\x01\xda\xd7\xb2\xc0\xb6\x48\xc2\xc9\xb5\x8c\x8b\x83\x5a\x28\xe1\x5a\x7d\x88\xd4\xa6\x0b\xd7\xea\x43\xbf\xe3\xd6\x1b\x73\xf4\x5a\xfd\x88\xa8\x6c\x84\x6b\xf5\x83\xff\x6f\x7f\x59\x56\xa8\x19\x9a\xd7\xea\x4b\x8c\xd9\xbb\xb1\x09\x93\xa2\x72\x55\xa2\x0f\xc0\x76\x17\x86\x04\x85\x57\xc3\xb5\x0c\x89\x7e\x9f\xbd\x6b\x3e\x5c\x7f\xc6\xe1\x5a\xc6\xc4\x77\x54\xff\x1c\xb5\x3f\x47\xfd\xcf\xd1\xf8\x73\x34\x7f\x1f\xad\x11\xfb\x8e\xf6\x3f\x47\xc7\x9f\xa3\xf0\xe7\x28\xfe\x39\x3a\xff\x1c\x5d\x7f\x8e\xd2\x9f\xa3\xfb\xcf\xd1\x9f\xfe\xb5\x3f\xfd\x6b\x7f\xfa\xd7\xfe\xf4\xaf\xfd\xe9\x5f\xfb\xd3\xbf\xf6\xa7\x7f\xfd\x4f\xff\xfa\x9f\xfe\xf5\x3f\xfd\xeb\x7f\xfa\xd7\xff\xf4\xaf\xff\xe9\x5f\xff\xd3\xbf\xfe\xa7\x7f\xfd\x4f\xff\xfa\x9f\xfe\xf5\x3f\xfd\xeb\x7f\xfa\xd7\xff\xf4\xaf\xff\xe9\x5f\xff\xfa\xf7\x9f\xcb\xf3\xd5\xff\x74\x7d\xfc\xe9\xfa\xf2\xb4\x6e\x1b\x84\xda\x35\xe8\x3a\x80\xf5\x1a\x74\xdd\x49\x37\xe8\xba\x93\x79\xd9\x51\x2b\x64\x75\x1d\x5d\xeb\xb3\x81\xf3\xbc\x96\xa7\xf5\xd8\x0f\xff\xa3\x5a\xc6\xed\xd1\x5a\xe4\x0f\xa8\xa9\x0b\x1b\x8b\x22\x4c\xe1\x1a\x84\xe5\x43\x03\x5e\xcb\xc6\xba\x24\x80\x2e\xab\x34\x14\xdb\xb2\x3c\x75\x54\x2f\x0b\xd7\xb2\xb1\x8e\x13\x5f\xf5\x35\x59\x6a\xb0\x17\xae\x65\x63\x1d\xc8\xd9\x87\x6b\xd9\x58\x07\x55\x68\xc3\xb5\x6c\xac\x83\x22\xb1\xe1\x5a\x36\xd6\x41\x7d\xdc\x70\x2d\x1b\xeb\x38\xfd\xb4\x97\x8d\x75\x9c\x2c\xeb\xd7\xb2\xb1\x0e\x2a\xd4\x86\x6b\xd9\x58\xc7\x69\x3b\x97\x8d\x75\x50\xb9\x37\x5c\xcb\xc6\x3a\xa8\x88\x1b\xae\x65\x63\x1d\x27\xd8\xe1\x5a\x36\xd6\x71\x5e\x3e\xa1\x73\xc4\x28\x2d\x1b\xeb\xa0\x52\x70\xb8\x26\xfd\x03\x9d\xa4\x8d\xfe\xe1\xc5\x4b\x9b\xfd\x0b\x1c\xd9\xbf\x93\x23\xfa\x87\xeb\x25\x6d\xf4\x0f\x8b\x32\x6d\xf4\xef\xf2\x2e\xf6\xef\xe0\xc8\xfe\x65\x8e\xe8\x1f\x9b\x58\xda\xe8\x1f\x74\x57\xda\xec\xdf\xce\x91\xfd\xdb\x38\xfa\x3d\x75\xd3\xd6\xff\x1c\x8d\x3f\x47\xbf\xe7\x67\xda\xe9\x5f\xa6\x47\xfb\xfe\xe7\xbf\xe3\xcf\xd1\xf5\xe7\x28\xb1\x19\x45\x8e\x6e\x8e\xbc\x4b\xe6\x88\x91\x58\x96\xd3\xd4\x44\x48\x7b\xfd\x73\x97\x3f\xad\xde\xff\xb4\x7a\xff\xd3\xea\xfd\x4f\xab\x8f\xed\xcf\xd1\x9f\x56\x1f\x7f\x5a\x7d\x84\x3f\x47\xf1\xcf\xd1\xf9\xe7\xe8\x4f\xff\x8e\xf4\xe7\xe8\xfe\x73\x94\xff\x1c\x95\x3f\x47\x95\x6d\x69\xf6\x01\xf1\x99\x96\xf9\x74\x52\xe6\x20\xa4\xe5\x7b\xed\xf7\x59\xfb\xc0\xb1\x92\x0e\x0a\x19\x05\xff\x9f\xfc\x7f\xf6\x49\x24\x6e\x42\x4e\x34\xe3\x35\x4f\xcb\xc4\xea\xf7\x75\xf4\x09\x33\x90\x02\xae\x18\x36\xfb\x14\xa8\x49\x13\xfd\x2f\x72\xb7\xab\x37\x5c\x5f\x69\x99\x5a\xfd\xbe\xce\xde\xba\xe7\x5c\x64\x35\xf0\x7e\x96\xb9\x95\x0a\xc9\x1e\x29\xdc\xcf\xf5\x06\x01\xa4\xe5\x78\x4d\x54\x39\x0c\x29\x90\x11\x51\x6d\x29\x05\x9a\xba\x4f\x1a\x5c\x9b\x7b\xbb\xbd\xdb\xda\xe0\xa9\x39\x12\x52\xa4\xce\x4e\xf7\x88\x3a\x3b\x30\x13\x09\xf9\x51\x13\x73\xd2\x32\xbb\xe2\x8e\x43\x30\x51\xc8\x8e\x4a\x4c\x21\x45\xfa\x73\xa6\x4e\x9d\x9a\x90\x90\x27\x95\xe6\x4e\xc8\x93\x2e\x1e\xea\x3f\x97\xed\x84\x72\xa9\xb2\x3a\x69\x59\x6c\xfd\x3e\x63\x9f\x44\xbf\xa6\x65\xb5\xf1\xa0\xe9\x2f\x0b\x04\x54\x5f\x0c\xea\xa6\xf5\xb2\x91\xcb\xcf\x1c\xb0\xca\x53\x1c\xcf\x30\x9a\x4e\x9b\xe2\x7c\xa6\x41\x83\x35\x4d\xa8\x9c\x56\x3c\x7f\x89\x9a\x0c\x91\x45\x3d\xa1\x72\x4a\x59\xc6\x90\xce\x3f\x53\xfa\x8c\x4f\xbb\x28\xa3\x18\xd2\xf9\x67\x5a\x53\x97\x21\x3e\xd7\x5a\xb6\x87\x81\x3d\xff\x4c\x6b\xe4\x4c\x1b\xfe\xa9\x74\x7e\xfd\x6d\xb6\x02\x4a\x01\x6a\x2e\x21\x69\xda\xb0\x9a\xd3\xe9\xb4\x3e\x7a\xbb\x7d\x12\x6c\x3c\x80\x30\x9d\xf6\x77\xef\x66\xd9\x25\xa4\x4d\x1b\xd8\x24\x21\x6d\xda\x70\x33\x25\xa4\x4d\x1b\x1e\xd9\x74\xfd\xe9\x2f\xd2\xa6\xd4\x56\x0e\x09\x69\x53\x2a\x34\x87\x84\xb4\xe9\x70\xe9\x5e\x5e\xde\x78\xee\x5e\x77\xbf\x1f\x9e\x3d\x40\xde\xb4\x9f\xfe\x5f\xbe\x0f\xd3\xe7\xae\xfe\xf6\xdb\x16\xae\xfe\x9a\xa8\x9d\x2e\xa6\xba\x63\xb5\xbc\xbd\xc9\x08\x97\x84\xfc\xa9\x74\x5c\x4a\xd8\xb1\xe7\xd6\x8d\x61\x48\x89\x4f\xf8\xbc\x7b\x73\xb6\x21\x83\xaa\xe7\x3a\xad\x38\x94\xd0\x5d\x4c\x91\x41\x95\xce\x4b\x89\xe9\x1e\xcf\x3e\xa7\xd7\x5e\x5c\xeb\xff\x89\xcf\x7b\xeb\x13\x17\x45\x4a\x7f\xde\x71\xca\xcf\xb3\xbb\x73\x2b\x95\xf7\x17\xb6\xdf\x84\x2c\xea\xc0\xe1\x91\xd2\x9f\x25\x7a\x79\x88\x63\x80\x00\x4e\x49\xe7\x0b\xb3\x1c\x59\xd4\x01\x8a\x4b\xb7\xa1\x9e\x1e\x91\x80\x85\x47\x3a\xdd\xf1\x79\xa6\x9e\xee\x44\x04\x7e\x76\x91\x42\xfe\x74\x66\xaf\x4d\xcf\xd9\x26\xaa\x27\xbc\xc8\x13\xf7\x50\xba\xf3\x33\x26\x68\xee\x85\x74\x97\x17\x1b\xb8\x91\x2e\x6f\x72\x7c\x36\xd2\xe5\x4d\xee\x77\xec\x7d\x5e\xb6\xa8\xbf\xe3\x06\x11\x96\x94\x44\xf5\x4b\xb9\xe7\xb7\x98\x31\xee\xcb\xb3\x3c\x8b\x86\x81\x92\xa9\xe0\xa8\x44\xf5\xf1\xcd\x99\x97\xff\xcc\x5f\xe4\x54\xcd\x0f\x4c\xd9\xe5\xf8\xee\x8d\x18\x93\xb4\xbc\xcb\xac\x0c\xb8\x4f\x12\x5e\x64\xbd\xe4\x29\xdb\xb7\xdc\xa7\x9b\xef\xf2\x24\xc7\xfc\xb4\xab\x3d\x2d\x1d\x38\x04\x53\xee\xcf\x96\x24\x8b\x92\xf2\xbb\x34\x8f\x61\x8b\x97\x7b\x51\x85\xb8\x84\x94\xea\x86\xf9\x97\xca\xbb\xe5\x0c\xb0\x7c\x42\x4e\x75\xdf\xfc\x7f\x79\x20\x76\x5c\x93\x69\xf9\xa7\xcf\xdb\x2d\xa1\x9c\x4f\x6b\x75\xab\x24\x74\x82\x9e\x55\xaf\xa4\x77\x5c\xb3\xf7\x46\xad\x7b\x78\xef\xf7\xdd\x8a\xf2\x12\x91\x35\xc7\xee\xd9\x6e\xb7\x57\xd7\x49\x9c\x0a\xf9\x9e\x9a\x68\xe5\x5d\x97\x86\x1b\x5c\x19\xef\x2f\xd9\x5f\xd6\xb6\x14\xd3\xbf\xe2\xaa\x13\x01\x38\xc2\xf8\x54\xfd\x8c\x4b\x1f\x58\xa3\xe9\x81\xa4\xb3\x77\xe0\x7c\x5a\x90\x34\x3e\x9f\x6a\x8d\x6f\x67\x9c\x0c\x04\xe3\xc4\xe1\xf5\x6b\xa9\x0e\xda\x85\x95\xa1\x49\xa3\xf7\x9b\xc1\x7a\xa0\xe9\xd1\xbb\xaf\xa6\xe6\x67\x22\x23\x80\x1f\x52\x2d\xef\x02\x81\x37\x2c\xd5\xd7\x22\x91\x28\x4b\x04\xe8\xe8\x21\x4e\x0b\xa6\x5e\x8a\x02\xa5\x3a\xde\xa7\x12\xa4\x93\x2a\xbb\x36\x64\x4b\x22\x48\xe7\x8c\x1e\x21\x3a\xe3\x47\x8c\x4a\x6b\x70\x22\x2c\xa8\xda\xef\x18\xfa\x63\x09\xb6\xb7\xff\xcf\x36\xb8\x20\xeb\x42\xbc\xeb\x88\xa9\x1f\x5b\x37\xdd\x3a\xb5\xf4\xf6\xcf\xc5\x09\x69\xd6\x23\xf9\xfc\xf5\x69\x1c\x8e\xdf\x82\xae\x77\x70\x6a\xb4\xcf\x12\xbb\x3d\xbb\x3d\x9f\x96\x09\x19\xa9\xf5\xe7\x1d\x4e\x18\x80\xd4\xc6\xfb\x8b\xcb\x4f\x9b\x6f\x1b\x08\x8b\x4c\x0b\xce\x06\xd3\x38\x12\x52\xae\xc1\x8f\x7d\xc1\xd9\x53\x21\x9c\x84\x94\x6b\x20\x4c\x2a\x2d\x38\x1b\x4f\x2d\x93\x7e\x7e\xad\xf1\x7f\xde\xbf\x96\xd6\x1f\x48\x9b\x90\x73\x0d\xda\x8c\x3d\x7f\x9b\x15\x23\xd9\x51\x10\x73\x8b\x41\xd2\x55\x3c\x95\x16\xac\x5d\xbc\xd5\x3a\xfa\x2c\x50\x62\x36\x12\xb2\xae\x11\xfc\x93\xfa\x7c\x8d\x15\x37\x24\xa4\x5d\xf5\xaa\xa7\x85\x61\x43\xb7\x25\x0b\xc3\xc6\xf8\x9c\x89\x5c\x98\xb3\x13\x2e\x20\x42\x23\x27\xb2\x12\x8c\x28\x4e\xe3\x8f\xb5\x3d\xd2\x37\xea\xb4\x72\x7c\xdb\x75\xf2\x6e\x5f\x9f\xa3\xcf\x5e\xef\x3b\x12\x83\x93\xc6\x1f\x64\x81\xa8\x92\x92\x9e\x69\xe1\xd9\x18\xe1\x67\x12\xa2\x4a\x51\xcc\x83\xa8\xd2\xd3\x83\xb9\xbd\x66\x8f\xd7\x2e\x4c\x1b\x0f\x22\x22\xd2\x3c\x3e\xb3\xc8\x5f\xd6\x37\x7e\xda\x26\xc5\x95\x82\x77\x3b\x41\xce\x8c\xf3\xc2\xb5\xf1\x3c\x3c\x13\xf3\xc4\xed\x52\x71\x25\xbf\xd9\x85\x6b\xa3\xa9\xef\x69\xe1\xda\xcb\xf8\xee\xf4\x64\x31\xf8\x1f\x73\xfa\xda\xfb\x70\xf1\x9e\xfd\xfd\x05\xf7\x5c\x52\x64\xc9\xaf\x6c\xfa\x7e\x5b\x6f\x38\xc0\x6e\x33\x1a\xf0\x35\xdc\xdb\xfe\x7c\xa5\x4a\x12\xdc\xdb\xf1\x5e\x01\xfd\x7b\x6f\xe1\xfd\x05\x6a\xfc\xde\x98\xdb\xe0\xeb\x9b\xec\x86\xeb\xf0\xfe\xd7\xfa\xca\xa3\x47\xe9\x5d\xb2\x8b\xf7\x5f\x21\xb3\xe6\x59\xde\x5b\x7e\xee\x3d\xb3\x77\x23\x98\x92\x35\xf5\xde\x7e\xbf\xe7\x7b\x6b\xef\x06\x3a\xbd\xbf\x8a\xd3\x9e\xcd\xf7\x1c\x6b\x6f\x87\xf7\x47\x75\x1a\x77\xdf\xad\x40\x13\x28\xe4\x7e\x54\x98\x26\x47\x14\xc6\xb8\x3c\x93\x08\x97\xeb\x5f\x81\x85\xf7\xa2\x1f\xae\x1b\x47\xc0\xbd\xe8\x87\x78\x3d\xb7\x7c\xbd\x8b\x1d\x78\x77\xef\xf9\x5d\x9e\x71\xd3\xdc\x7b\xf9\xce\x89\xfc\x02\x57\xcc\x0e\x77\x93\x14\x71\x83\x2d\xee\x05\x9a\xe3\x85\x1d\x72\x4b\x29\x10\x6f\x7c\x1f\xfb\x73\xa7\xe9\xf3\xe1\x0e\x32\xb6\xc6\xfd\x07\x1c\xdf\x7f\xc0\xf1\xfd\x07\x1c\xdf\x87\xd5\xdd\xbc\x0e\xb5\x6c\xe2\x58\xee\xe3\x7e\xed\x83\xc3\xe7\x12\x9d\x33\x3c\xdb\xfe\x8c\xde\x61\x0d\x6e\x41\xf2\x39\xfa\xa8\xde\x7f\xf5\xa9\xd8\xa7\x83\x82\xb3\x7c\xa0\x37\x49\x12\x3b\xa8\xeb\x26\x40\xa9\x10\x17\x7a\x87\xed\xbd\x13\x0e\x94\x3b\x00\x24\x87\x47\xc7\xf3\xbf\x76\xdd\xbd\x00\x72\x4c\x58\xd7\xf7\x03\x90\x7f\xfe\x67\xfa\xc0\x45\xec\x10\x98\xb7\xe9\xdd\x9b\x47\xc4\xc7\x92\x5c\x74\x3f\xe0\xf8\xec\xc8\xfd\x87\x3b\xe4\xe7\x97\x8e\xb5\x71\x9b\xe6\x1d\xbc\xe2\xcf\xd4\x35\xcd\x3b\x7a\xb4\xa6\x6d\x29\xb6\xfb\xb3\x52\x92\xed\x96\xb3\xe0\x49\x46\x27\x41\xc1\xde\x44\x27\x15\xd2\x6b\xee\x78\xbc\xf6\x70\xf7\x97\xd5\xe7\x0b\x17\xcc\x4d\x84\xd2\x1d\xfd\x0f\xc5\xed\xe7\x4e\x5a\x9f\xb3\x2b\x6c\x7a\xc7\xf4\xfe\x72\x7b\xc5\xfd\x9a\x08\xdd\x73\x7e\xfa\x1d\xb4\x1e\xef\x07\x29\xff\xdc\x83\x51\xa6\x6a\x61\x03\x11\xdd\xb1\xbd\xff\x63\xf3\xdd\xb1\xbf\xbf\x38\x1f\xa8\x5e\xd8\x21\x48\x6f\xaa\x17\x76\x08\xfc\xfb\xdc\x9e\x05\xc4\x64\xa3\x1b\xb4\xdc\x30\x51\xee\xd3\xc0\x3b\xde\x19\x15\x0c\x3b\xe4\xea\xbd\xd0\x72\x10\x75\xdc\xe7\xf9\xf5\x84\xb9\x7a\x2a\xdc\xc5\x5b\x38\x5f\x34\xd5\x5c\x1c\x4f\xfa\x1e\x63\x37\xd7\xf5\x3e\xf3\x6b\x94\x61\xa1\xde\x0b\x39\x87\xea\x0c\x3a\xeb\x73\x0f\x33\x3c\xee\xb3\x3d\x0b\x5c\x77\x5e\x51\x10\x44\xf9\xcf\x9b\xaa\x87\x83\xd8\xf8\x9b\xaa\x87\x06\x69\xde\x97\x62\x5e\x8c\x04\xb1\x51\x87\x6f\x81\xaa\x87\x13\x7e\xe8\xa6\xea\xa1\x4a\x2e\xf7\x15\x3f\x5c\xc8\x5b\xba\xce\x67\x9b\x30\x2f\xf8\xa6\xfa\xe1\x2c\xfe\x4f\x8a\xb9\x63\x2e\x7a\xbe\xee\x3e\x60\xcd\xee\xcb\x75\xeb\xe8\x14\xb4\x08\x37\x55\x10\x29\x22\x11\xee\xeb\xcf\x5c\xbf\xda\xb3\x46\x18\x32\x7b\x5f\xef\x36\x45\xd5\xa5\x70\x5f\xe3\x5b\x09\x79\x93\x0b\x49\x9f\xc3\x85\x5d\x24\x1d\x5b\x47\xd9\x3d\xdc\x54\x45\xd4\xbc\xbe\xd3\x6f\xc7\xdf\x9d\x34\x3f\xef\xae\x2c\xee\xbd\x90\x74\xc8\x88\x64\xdc\xe9\xfc\x4c\x28\xc6\x9d\xf8\x2a\xb5\x5a\xee\x07\x49\xff\xb4\x8f\xb7\x94\xee\x6f\xd5\xa2\x0f\xc4\x59\x89\xcc\x6e\x91\xf4\xcf\x15\x97\x57\xd4\x77\x2b\xde\xfe\x25\x37\x75\x13\x8a\xb5\x15\x3b\xfb\x0e\xcf\x74\xa9\xb2\x62\x22\xda\x62\x77\x9a\xef\xad\x71\x93\xdc\xa4\xc2\x6f\xe8\x44\xdc\x2b\x5c\x6b\x96\xc3\xff\x08\x28\xc2\x31\x72\x5b\x35\xd1\x49\x6e\xd5\x44\xef\x4b\x1d\x92\x86\x0d\x7a\xdf\xd7\xfb\xda\xa0\x16\x6f\xc1\x78\x4c\x9d\xa2\x57\xe1\x26\x25\xfe\xd8\x7c\x2e\xe2\xae\x4e\x12\x52\xe2\x0f\x28\xbd\x9b\x94\xf8\xc3\x97\x27\x08\xff\x59\x2c\xdd\xf8\x1e\x10\x7e\xf4\xd1\x6c\xf7\x3b\x25\x9e\x05\x4a\x20\x7e\x1d\x7d\xfa\xf1\xe4\xed\xbd\x8f\x0b\x40\xde\x1f\xe4\x41\xc9\xb0\x70\x5b\x55\xf1\xf0\x0a\x54\x17\x2e\xcf\x8e\xef\x53\x87\x67\x9f\xef\x33\x86\xe7\x2c\xc2\xb0\xf8\xd9\xe5\xf4\x5d\x41\x5f\xf2\xb7\x05\xe2\x88\xb9\x17\x68\x8f\xd9\x8f\x2d\x3b\x0e\x8c\x71\xae\xdf\xfd\x6d\x91\x9f\x47\xe8\xc6\xba\xdf\xf9\x1d\x0b\x95\x5b\x6e\xab\x31\x26\xdb\x40\xa4\x84\xdb\x3e\x80\x7d\xb8\xc0\x90\x46\x4f\xe9\xde\x70\x13\x4c\x76\xe2\x88\xbb\x09\x26\x8b\xce\x0b\x82\xc9\x28\x9a\x1c\x6e\x04\x7d\xe7\xf4\xbf\x65\xad\xca\x1d\xdd\xe5\xfd\x1c\x06\xd1\xd5\x77\x79\x97\xc2\xe1\x52\x57\x5e\x53\x66\x10\xa5\x71\x2f\xb0\x1e\xb3\xdb\xd0\x02\xeb\x97\x59\x76\x37\x91\x65\x57\xb2\x07\x8b\xea\xbe\xb2\xcf\x1e\x0b\x73\xfa\x19\x59\x99\x11\xcc\x76\x4b\x0c\xaf\x0f\x97\x1e\x56\xd2\xb9\xb5\xe1\x16\x0a\x1f\xd1\xe5\x13\x29\xe0\x7b\x7a\xe6\xaf\x77\x4d\x9f\x21\x86\x2f\xb7\x1d\x88\x61\xd5\x03\xef\x85\xc0\x23\xf5\x05\xc3\x5d\x5f\x44\xd2\x88\xd0\xba\x1f\xf4\xbd\x75\xc5\x62\x6f\xd1\xf7\x99\x7b\x73\x6b\x12\x7d\x5f\xb1\x37\xb7\xe7\xda\xde\x5f\x9c\x2b\xf5\x73\x52\x74\x9f\x35\xbe\x2d\xce\x73\xe6\xb3\xf8\x19\x91\x72\x13\x9d\x96\x9c\xe1\x20\xf1\x0b\x44\x77\x37\xf3\x43\x19\xcd\x85\xc4\xa3\x3a\xf7\x77\xc3\x52\x77\xd1\x5d\x08\x3c\x3e\x73\x45\x04\xfe\xd3\x12\x0d\x28\x6a\xf1\x53\x0b\x28\xdc\xa4\xe6\x57\xbf\x67\x2a\x3c\x26\x3c\x07\xf7\x1f\xe2\xf8\x6e\x6f\xbf\xcd\x3d\xb8\xc9\xa9\x49\x20\xd4\xfb\x49\xdd\xb7\x2f\xe3\x3d\xdb\x2f\x8e\x4a\x8f\x09\xfe\xec\x36\xe7\xc6\x85\x7c\x21\xee\x73\x73\x13\xef\xc7\x33\x32\x8d\x30\x8d\xbb\x87\xef\x17\xde\x24\xb9\x37\xc9\x15\x8b\xdc\x9b\xe4\x1a\x45\xee\xcd\x83\x07\xc8\xbd\x91\xad\xb9\xc9\xbd\x49\xcd\x27\xd1\x5f\x32\x40\xee\x4e\x40\xa5\xf3\xa8\xd7\xd7\x18\x74\xd6\x92\x9b\xf3\xe0\x10\xa4\x89\xa3\x73\xbf\xdb\xdf\x1f\xd3\x91\x59\xfd\x8b\x35\xfe\xef\x6d\x82\xd4\x9d\xe4\x84\x1e\xfb\x7b\x23\x1c\x10\xf7\x78\x2d\xde\xae\xe5\x38\x78\xfd\x4e\x2d\x52\x78\x6e\x00\xea\x4d\x0a\x8f\x51\xf5\x37\x29\x3c\xc6\xa4\xde\xa4\xf0\xdc\x78\x48\xef\x05\xc8\x83\x0a\x84\xf7\x78\x41\x5a\x77\x6a\x2c\x30\x1e\xfa\xe9\x53\x74\xbe\xfc\x80\x50\x06\x68\xb8\xdc\x6f\x5d\x31\xff\x7b\xf4\x67\xc8\x8c\x70\xbe\x09\xe6\xbb\x9b\xed\x5e\x53\xe0\xf6\xa5\x12\xcc\x77\x93\x7d\x7a\x13\xcc\x77\x37\xff\x5b\x4e\x88\xe2\x42\x39\xc3\xeb\x58\x11\xf2\xcd\xf8\x59\xc4\xf4\x14\x60\x7e\xe2\xa5\xbc\x09\xea\xbb\x5d\xfe\x09\xea\xbb\xdd\x56\x09\xea\xbb\x5d\xa8\x09\xea\x0b\xc9\x56\x10\x35\xe5\x92\x3d\xeb\xfb\xf1\x1c\xfe\xf2\xd3\xe7\x58\x09\x32\xbc\x1f\x60\x7e\x3d\x4c\xc0\x3d\xc7\xf3\x4b\xc7\xfd\x74\x13\xe0\x97\x79\xbb\x79\xb3\x08\x45\xe3\xc8\x14\xe9\xca\x11\x69\x5a\x2c\x33\x99\x00\xbf\x82\x73\x25\x6f\xf1\x1d\xd9\xc3\x3b\xe9\x68\x8b\x1c\x5d\xef\x12\xc4\xb4\xcf\x82\xf2\xeb\xea\xb3\x7b\x05\x69\x67\xc3\xfb\xa3\x74\xc3\x76\x97\xb7\xf2\x9e\xbd\x79\x36\x91\x58\xd3\xfb\xaf\x7e\xab\x1b\x93\x09\xf8\xab\xbb\xff\xa1\x76\x83\x5d\x9a\xb7\xcf\x8c\x21\x83\x21\x93\xfa\xa3\x46\x5e\x36\xe8\xef\x39\xfa\xe9\xf3\x5a\xcf\xd6\xd1\xf7\x99\xe3\x2e\xcc\x04\xfe\x29\x39\x9c\x09\xfc\x53\x56\x38\xef\xf6\x39\x75\xea\x81\x86\x4c\xc5\xca\x42\x4e\x47\x16\x99\xc7\xab\x1b\xa6\x9c\x09\x00\x34\x3b\x24\xef\xaa\xdf\x30\x02\x54\x7e\xa9\xcc\xb8\x4c\xe5\x17\x15\xed\xf3\xde\x9f\x27\xa9\x1a\x9e\x91\x2a\x10\x2d\xe5\x7d\x3e\xff\xab\x07\x9e\x8f\xed\xb1\xae\x55\xbb\xc9\x22\xf7\x9f\x5f\x60\x9c\xf2\x71\xbc\x8e\x0e\xe6\x69\x3e\xc2\x7b\x0e\x2e\xa5\x7c\xc4\xf7\x17\xb6\xdc\x7c\xa8\x34\x49\x1f\x0e\x95\x26\x3d\x3b\xbd\x67\x3b\xbe\x87\x01\xac\x9e\x6d\x1a\x9b\xff\x95\xaf\x8d\x5e\x5f\x5f\x4c\x00\xf3\x98\x8f\xf6\x6e\x5b\xce\x52\xe9\xee\x9f\x73\x82\x57\x59\x69\x35\x73\x34\xdf\x5e\x61\x68\xe4\xf0\x8e\xc5\xc0\x49\x9c\x8d\x2a\x04\xf9\x66\xa2\x0a\xf5\xdd\x67\xa4\x0f\x06\xb1\x90\x19\xe9\x83\x81\x5b\x29\x2f\x24\x1f\x9f\xbe\x21\x7d\x30\x70\x7a\x67\xa4\x0f\x06\x5b\x72\x7e\x90\xfc\x0f\x3a\xf2\x6c\x82\x77\x71\x99\xe5\x00\xa2\xbb\x6c\x41\x5d\x38\x62\xd8\x82\xd7\x01\x35\xc9\xe8\xc8\x0b\xc9\x47\xd3\xe3\xf2\x42\xf2\xc1\x0d\x25\x87\xf9\x1a\x7a\x70\x68\x39\x5a\xe4\x83\xb3\xa3\x45\x3e\x98\x37\x0b\xc9\xc7\x8a\x51\x94\xa3\xa6\x5b\xfc\xc7\x16\x91\x63\x7c\x17\x40\x87\x82\xe0\xc4\x49\x60\x66\x16\xe4\xa7\xd1\xc7\x6e\x23\x4c\x26\xe1\x15\x44\x52\xd8\xd9\x1f\x73\x24\x62\x1d\x70\x9b\xa3\xc9\x24\x74\x9e\xe0\xc5\x5c\x6d\xee\x67\xd9\xdc\xde\x97\x7c\x81\x69\x2b\xf0\xbb\x26\xef\xfb\x3b\xa2\x23\x9f\x8a\x0c\xd1\x82\xd3\x68\x00\x3e\x28\x54\x16\xa6\x1f\xa2\x45\x3e\xf1\x7f\xe6\x05\xe8\x63\x75\x78\x05\xf4\x3f\x60\x9c\x6d\x29\x9f\xaf\x45\x23\xa8\xcc\x50\xe0\x3b\x5e\xe5\x7c\x7e\x9c\x0a\x30\x33\x3f\x80\x7e\xeb\x86\xae\xe6\x87\x0a\xff\x81\xba\x4c\x08\xa8\x70\xcb\x55\xe5\xf3\x05\xb7\x13\x1b\x34\x4b\x87\xff\x2c\x26\xd3\x5f\x28\xa8\xe0\x98\x9e\x2f\x8a\x79\x3e\xcd\x6b\x7b\x26\xc6\xc0\x6a\xcb\xea\xc6\x39\x22\x24\x3e\x05\x68\xef\x7c\x85\xd7\x8e\x05\x53\x64\x92\x9f\x0e\xb6\xa9\x7c\x59\xec\x8a\xd6\xaa\x1d\x47\x3e\x6a\xbe\x5e\xf4\x22\x4c\xcd\x0f\x35\xbe\xbf\x1f\x21\xd4\xf8\xe1\x7c\x59\xc0\x3e\x28\xbd\x90\xad\xfc\xc9\xa6\x96\xa1\xc5\x4b\xb4\x5d\x48\x93\x62\x99\x65\x01\xfd\xcf\x7d\x93\xff\xcf\x77\x6c\x1d\x6d\xaa\x83\xee\x8e\x42\x7a\x7d\xcf\x93\x68\x8f\x0c\x35\xbe\x61\xfb\xe7\x07\xd4\x5f\xbd\xf9\xc6\x93\x5b\x7b\xef\x4a\x8a\xe5\x05\xec\xc3\xc0\x34\xc8\xe9\x7a\xaf\xc0\xc6\xcd\x02\xfb\x1f\x4b\xed\xf0\x19\xf7\xfb\xd4\xa7\x55\x3a\xb4\xe8\x63\x7a\x39\x35\x4a\x34\x87\x9c\x3e\xda\xd1\x6f\x66\xa1\xf7\xa0\x2e\x77\x16\xbd\x2f\x16\x8e\xf7\x93\x5e\x8b\xbe\x75\xcf\x71\x2c\x52\xb7\x9c\x44\x5e\x08\x3e\x58\xc2\x2b\xdf\xef\x58\x28\xd5\x9b\x49\xba\x4a\xa7\x67\x87\xcf\xdc\xa0\x67\xd2\xea\x31\xf6\x89\xb3\x34\xdf\xe7\x8b\xd1\xf0\x2b\x64\x11\xfd\xcf\x39\x60\xec\xfc\x20\xfa\xb3\xb7\xea\x2f\x70\x11\x9b\xed\x78\x39\x46\xa3\xfb\xf3\xfd\xdb\xd2\xcf\x0b\xd5\xdf\x26\x2e\xe6\x07\xd5\x1f\x0f\x7f\x98\x45\xf5\x3f\xa6\xe2\xe5\x39\x2f\xaa\x1f\xa0\x97\x7c\xbf\x51\x4f\x1a\x87\x59\x54\xff\x73\x8e\x63\x2e\xaa\x3f\x5b\x37\x85\x31\x67\xb8\x27\x8d\x8e\x1c\xde\x76\x62\x73\xe7\x07\xd9\x5f\x5d\x49\xb9\x9c\x5f\xa7\xcf\x04\x01\x67\x2a\xf6\x24\x5c\x48\x79\x21\xfb\x15\x44\xb5\x8e\x96\xc9\xdb\x40\x60\x79\x21\xfa\xd0\x71\xd2\xe5\x85\xe8\xcf\xdb\x2f\x28\xbf\xf3\xa1\x3b\x67\xa8\xda\x73\x6b\x9e\x2d\x34\x1f\xb7\xd3\x6b\xc7\xd3\xd2\x89\x63\x38\xe7\xf7\xbb\x78\x36\xf7\xf2\x85\x8d\xb8\x96\x4a\xc3\xff\x18\xd0\x20\xb9\x5c\x8e\x17\x91\x1e\x5e\xb5\x42\xa0\x2d\x2f\x93\xa1\xe2\x2f\x57\x29\xa9\xf8\x33\xf7\xa1\xd1\xb7\x10\xfe\x79\x69\x72\x88\xf0\x63\xe8\xf3\x9f\xaa\x8f\xf9\x01\xff\x47\x9f\x4e\xac\x07\xfc\x87\x6e\x02\x4c\x2e\x7f\xa6\x49\xf9\x9c\x1e\x38\xb4\x32\x0e\x00\x63\xa4\xf2\x72\x00\x44\x7d\x7d\xb9\x90\x1c\xee\x1e\xb9\x1c\x00\x41\x89\xd7\xfc\x38\x00\xf6\x6e\xa2\x7e\x36\x32\x1c\xb0\x97\x1f\x1a\x7e\xef\xcd\x09\x57\x7f\xf3\x1c\x99\xc8\xf0\xe7\xa3\x5b\x0e\x80\x38\xdd\xde\xea\xf5\x4c\xc4\x67\xa9\xaf\x58\x89\x5a\x72\x3a\x01\xe2\xf6\xda\x65\x9f\x13\x60\x3a\xec\xcb\x09\xb0\xe6\xcb\x3a\xaa\xef\xff\x9b\xcf\x68\x6f\xfb\xb4\x89\x89\xad\x8f\xc1\xd6\x2e\xe7\x87\x25\xba\xf2\x03\xfc\xb7\x77\x19\x68\xdf\x56\x81\xaf\x35\xb7\xfd\x73\x44\x70\x0f\xa8\x78\x83\xeb\xf2\x43\xc5\x6f\x7d\x68\xa3\xe2\x04\x30\xa1\x2b\xa3\xcd\xb7\x41\xee\x65\xb5\xf9\x7c\x8b\xcb\x01\x10\x4d\xda\xcf\xcb\x01\x10\xa7\x4b\x43\x7b\x7d\xdf\x8f\xcd\xd8\xca\xfb\xd9\x3a\xa2\xcb\x11\x10\x95\x07\xc8\xe8\xf7\x6d\x87\x67\x2f\x27\xc0\xe6\x47\x84\x7e\xdf\xe6\xa6\xb5\x1c\x00\x71\xe2\x8a\xc9\xcb\x01\x10\xa7\x36\x97\x0e\x00\xd1\x0e\x94\xbb\x99\x09\x19\xfd\x3e\xab\x05\xe5\xfe\x6b\x7b\xf0\xda\xf3\x5b\x7c\x18\xe1\x7e\xbd\xbf\x40\xb1\x66\xb4\xfc\xba\x5b\x5c\xff\x90\x01\xca\x28\xb9\x7f\x8e\xae\xdb\x7b\xac\xe5\xc0\x8a\x9c\x79\x39\x03\x4e\xd3\x9f\x72\x7f\xdf\xb7\x9c\x5f\xee\xd0\xd1\x04\x3b\x66\x9d\x01\x3f\xf3\xc1\x6d\x4e\x0a\xfe\xe7\x17\x3f\xce\xb1\x7d\xbf\x30\x3e\x54\x58\x15\xe3\x67\x51\xff\x8f\x41\xe0\xf7\x34\xc2\x73\x85\x11\x8c\x79\x21\xff\xf3\x80\x27\xcb\x0b\xf9\x9f\xd6\xac\xca\xe3\x7a\xbe\xe7\x67\xab\x1e\x68\x32\xba\x1c\x8d\xdf\x51\x64\x79\xa1\xff\x78\x3d\xcf\x5e\x41\xa0\xfb\xed\x73\xeb\xbb\xc5\x3f\xbf\xb4\x67\x65\x68\xe2\x84\xf1\x3a\xbc\x0c\x2b\xcd\x63\x3c\xdb\x52\x1b\xb6\x68\x45\x24\x65\x37\x4b\x69\xf9\x15\x4c\x42\x1b\xe6\xef\xa0\xdf\xbc\x3c\x00\x61\xc0\x2d\x64\x84\x05\xa3\x5f\xe0\x44\x87\xc8\x6f\x6d\x21\xff\x14\x61\x67\x33\x4a\xe7\xc1\xef\x00\x4a\xfe\x41\x7c\xf3\x35\x0d\x9f\x95\x65\xe6\x6f\x51\xf6\xb9\xeb\xbd\x5b\x98\x24\x2f\x0f\x40\xb0\xfc\x5b\x46\xf1\xfc\x70\xb1\x16\xfd\xff\x5c\xdb\x6c\xd7\xc0\x07\xe1\xd9\xef\x77\xae\x71\x5d\x16\xfa\x3f\x23\x5f\x65\x79\x68\xf9\xe3\xd9\xb8\xcb\x86\x39\xb0\xfb\xff\x42\x07\xc7\xe9\x11\x75\x43\xd9\x1a\x8b\x29\x7e\xdd\xff\xd6\xf7\x9d\x6e\x8f\xd6\x7b\x4e\x18\xe5\x65\xa1\xfe\xa0\x70\x43\x59\xa8\xff\x54\xa4\xa6\x2c\xd4\x7f\x16\x46\xb5\x6c\xf5\x33\x41\xaf\x7f\x6c\x17\x45\x96\x7e\x59\x50\x85\xcb\x3f\x0b\xe9\xf2\xd1\xe3\xfd\x85\x5d\xb3\xa0\x09\xa2\x48\x6f\xc1\x31\x20\xd6\x28\x68\x82\x14\xec\xc6\x02\x53\x6f\x61\xba\x82\x26\x48\x81\xd6\x2a\xfb\x1b\x03\xdd\xc9\xc1\x2d\xfb\xf9\xee\xd6\xd8\xd3\x65\xff\xac\x44\xc8\x9c\xb2\xa7\xe7\x75\x09\x35\xcb\xce\xd0\x4c\x8f\x16\xcf\xa1\xdb\xa6\x2c\xe7\x40\x8a\xd1\xbb\x55\xda\xed\x9d\xda\x63\xe7\x8d\xdb\xff\xd7\xb2\x57\x6e\xff\x1f\x1f\x7a\x48\xfc\xf2\x7d\xfe\x6c\x95\x85\xf2\xb1\x81\xe5\xa3\x1c\x48\x70\xf1\x79\x15\x1d\x03\x3f\x16\xdd\xe6\xd9\x6b\xfa\xef\xb6\x6d\x39\x05\xa2\x7a\x29\x45\xbd\x43\x00\x66\x39\x3e\x7e\x07\x2b\xab\x1c\x96\xfa\x65\x72\x2c\x87\xc0\x8a\x07\x5c\x47\x6b\x3a\x34\x92\xf6\xca\x72\x08\x9c\x2d\x7b\xb4\xfa\x4c\xe9\xe4\x50\x88\x79\x37\x5c\xb0\x1c\x2f\x1a\x52\xde\xb6\x1c\x9f\x7f\x3b\xd9\x0b\xfb\x3c\x1e\xeb\xad\x04\x44\xcf\x9c\xfe\xcb\x09\x70\x56\x48\xeb\xb2\x80\xfe\x4a\xc7\x58\x47\xef\xfb\x6c\xb6\x34\x10\x71\xe2\x84\x0f\xe9\x9b\x7d\xde\x9b\x77\x89\x33\xb0\x20\x26\xb2\x23\xac\x55\x42\xf9\x26\x36\xef\x23\xb8\x85\xa7\xde\xab\xe7\xbc\x01\xa4\xcd\x71\x0d\x2f\x5f\xa3\x10\x70\x09\xd4\x9e\x64\xc3\x2d\x0b\xf8\x9f\x2e\xc5\x25\x7e\x14\x36\x2e\xca\x12\x3f\xe4\x83\x61\x51\x22\x73\xfa\xf2\x28\xbc\xff\x07\x7f\x89\x8c\x08\x9f\xf8\x13\x07\xdf\xbb\x19\xea\x05\x55\x77\xc5\xb7\xcb\x42\xf8\xd7\xe6\xf7\x22\x85\x1f\x4b\x6f\xcf\xff\x6e\x69\xb9\x8f\xc3\xfb\xaf\xf7\x3b\xbb\x47\x6b\x69\x1b\x7e\x7d\x22\xfd\x98\xbb\x9a\x9e\x45\x0a\xff\xe7\x97\xea\x33\xc6\xe7\x0d\xf0\xaa\x37\xe8\xdd\xd8\xc4\xb2\x50\xff\xb5\x63\xd8\x94\xf3\x35\x63\x9a\x0b\xd0\xf9\x25\xf9\xf9\xed\x9e\xe1\x6d\x27\xbe\x8b\xb2\x3c\x00\xd7\xee\xb2\xb4\x3c\x00\xd7\xce\x82\x5e\x16\xfa\xbf\x64\x2f\x8a\x74\x7e\xac\x0f\x9b\x58\x1e\x3a\xbf\xf6\x4e\x30\x6b\x79\xd0\xff\xfe\x44\xd6\x15\xd1\xff\x15\x7b\x27\x54\xa3\x2c\xf4\x7f\x19\x0f\x57\x1e\x3a\x7f\x7f\x42\x4c\xcb\x83\xfe\x4b\x9f\xc4\x43\x95\x85\xfe\x83\x22\xe2\x45\xf4\xff\xf3\x3f\x68\xa1\x88\xfe\x7f\xe6\x13\xce\xcb\x72\xed\x0f\x76\xb1\x0c\x62\xb9\x8e\xa7\xad\x56\x04\x2b\xcb\x0b\x70\x59\x90\xa5\x2c\x0f\xc0\x15\xc1\x70\x65\x79\x00\xae\x00\xbe\x2a\xcb\x03\x70\x85\xee\x51\x7a\xb7\x5f\x02\x82\xcb\xf5\x8d\xc3\xe5\xdd\xd6\xfa\xa6\x79\x50\x0c\x8e\xff\x19\xb9\xe2\x3d\x18\x03\xe7\xe2\x85\x46\x92\x73\xf5\x22\xa2\xd4\x2f\x63\x79\x01\x42\x75\x2b\xba\x5e\x1e\xab\xb1\xcd\x96\x5f\xb4\x3e\x9c\x5d\x79\x02\xe4\x8f\xbe\x82\xef\xff\x7b\x6b\x49\xc7\x77\x39\x8f\x5f\x4e\x82\xd3\xe2\xad\xe5\x71\x10\xb4\x87\xf2\x2b\xe9\x5b\x2e\x48\x81\x29\x3a\x09\x16\x1d\xc3\x74\x5e\x4e\x82\xeb\x6a\x36\xf1\x7e\xef\x71\x7b\x45\x7e\x7e\x31\xea\xbf\x2c\x27\x41\x28\xcf\x33\x5e\x3a\xc8\x6a\x44\x25\x7d\x4e\x22\x5f\x7a\xea\xdf\x39\x3e\x75\x7c\x0b\x15\xcb\x46\xfa\x05\x8c\xe9\xdd\xfd\xd2\xdd\x0d\xd8\x5f\x96\xa3\x20\xdd\x2e\x9b\xf7\x3b\x1e\xc6\xcb\x94\xfb\x73\x9a\xb8\xc4\xdd\xdf\x98\xe0\x1d\x2d\xcb\x51\xb0\x24\x74\xd6\xd1\x1b\x88\xab\x60\x41\x79\x9c\x04\xed\x09\x0a\x2c\xf7\xeb\x33\x35\xbf\xbc\x40\xfd\x5f\xbe\xd6\xfb\xcd\xa7\x30\xea\xab\x2c\x47\xc1\x75\x39\x49\x6e\xb8\x91\x6c\x1b\x91\xd5\x82\x2b\x2a\x3a\x08\xce\xd1\x5b\xf2\x97\xf9\x2e\xc1\xb8\xa1\x0a\xe5\x7b\x2f\x7c\xf5\xe5\xa1\xfc\x5b\x1f\xd0\x73\x25\x7f\xf3\x02\x1b\xb6\x50\xc6\x57\x71\xe6\x92\xbf\xd4\x28\x27\xea\x72\x0e\x2c\x76\x71\x1d\x5d\xcf\x86\xd4\x88\x1c\x2b\xf9\x0d\x46\x9e\xd8\x83\x05\x07\x41\x75\xe9\xc9\xaf\xa3\x44\xb4\x54\x9e\x58\xfd\xf6\x38\x64\x0a\x6a\x96\x11\x7b\xb1\x2c\x27\x41\xd0\xbf\x5b\xa4\xfc\x7f\x16\x12\xdf\x13\xe5\x7d\x6f\x3f\xe9\xfc\xdb\x61\x5a\x96\x83\x20\x58\x42\xbb\x58\xc3\xd7\xa5\x57\xc7\xc0\x4f\x4b\x60\x73\x4a\x09\x2f\x66\x26\xf6\xaf\x58\xcb\x17\x57\x47\xb1\x96\x2f\x8e\x95\x62\x2d\x5f\xdf\xab\xb5\x7c\x35\x27\xca\x8b\x86\x8c\xce\x2a\xd4\xf3\x3d\x89\xb0\x2a\x0b\xf5\x5f\xb7\x0b\x30\x94\xbf\x72\x85\xa5\xd0\x5f\xcd\x9c\x42\x2d\x26\x50\x44\x29\xc8\x9d\x9c\xfe\x37\x1f\x84\x35\xdd\x1c\xea\xeb\x10\xb2\xe4\x62\x41\x54\x26\xb8\xe5\x23\x2a\x73\xe0\x6a\x2e\xf5\x75\x90\x4e\x97\xcf\x5f\xd4\xbf\xf6\x2c\xd4\xff\xe1\x17\x2d\xf2\xbf\xb6\xfe\x18\x38\xf5\x73\x94\xe2\x88\x2e\x88\xcc\x44\x97\xc8\x8a\x09\x48\xbc\x54\x59\xa8\xff\x9a\x9b\xf7\xfe\x1d\xfd\x54\x1e\xc4\x3f\xfb\xd4\xce\x06\xf1\x3f\xdf\xfd\x42\xfc\x97\x62\x32\xa5\x7e\xce\x20\x22\x8f\xca\x42\xfc\xa7\x12\xcb\x65\xa1\xfd\x6b\xe0\x4d\x28\x0b\xe9\x9f\xb7\xa6\xca\x42\xfa\xd7\xf3\xc5\x51\x35\xf8\x06\x7b\x17\xaa\x06\xef\x2e\xd9\x0f\xd5\xbf\x75\xd5\x70\x4b\xfb\x4c\x5e\xd0\x73\xa1\xb2\xf0\x86\x4e\x6a\xa1\xb2\xf0\xe1\x06\x45\x65\xe1\xc3\xd9\x44\x65\xe1\x23\xfb\xdc\x77\x4b\x9c\xf6\xb0\xbd\x73\x5b\x46\xb2\x80\xf6\x77\x74\x16\x8a\x41\xf6\x3f\x58\xcb\x2d\xa7\x6f\x1f\x6a\xa6\xc5\xc8\xdc\x44\xe7\x4b\x7f\x93\x2d\xf4\x19\x95\xfe\x39\x00\x09\x1b\x28\xa2\xff\x9f\xbb\x46\xaf\xfa\x08\x82\xfd\x5f\xda\x47\x45\xc7\xc0\x99\xfa\x74\x09\x59\x8e\x81\x20\x5d\x5d\x96\x63\x20\xe8\x4d\x2b\xfd\x73\x86\x74\x1f\xaf\xe5\xf0\x03\x7c\xf9\xcc\xfa\x9b\x93\xa0\xb2\x62\xa1\x3c\x99\xa9\x36\x65\x39\x06\xc2\x10\x95\x50\xc0\x38\xe2\x02\x29\x14\x11\xb0\x3a\x4c\x21\x0c\x20\x38\xfc\x14\x11\x50\x7f\xbc\x18\x93\x0f\xd7\x50\xc6\x47\x87\xfb\x29\x0c\x22\x40\x70\x70\x15\xe2\xf2\x4f\xb1\xc9\x72\x04\x04\x05\xeb\xca\x13\x97\x1f\xde\xad\xf2\x89\xcb\x0f\xbd\x3b\x0a\xcb\x19\x10\xac\x25\x54\x70\x06\x98\x83\x5d\xa8\x1a\x70\x69\xed\xe9\x08\xb8\x72\xef\x42\xd8\xf1\x3b\xe3\xb7\x50\xca\x2c\x5e\xde\x69\x7e\x1f\x2c\x7d\x7e\x62\xf3\x8f\xc7\xf9\x56\xe6\x2f\x4b\x81\x8f\x16\x47\x40\x11\xcd\x4c\x52\xe9\xc4\x10\xf3\xd7\x74\xf0\x6c\xb8\x02\x68\xdc\x32\x3f\xae\x88\x00\xea\x32\x5f\x4b\xc9\x84\xc3\x42\x38\xc0\x2e\x8a\x5d\x0e\x81\x33\x41\xf5\x15\xc2\x01\x82\x9f\xdb\xfc\x00\xb2\x56\xd6\x6c\x1f\xca\x64\x92\x4f\x1c\x60\xce\x17\xc3\x01\xce\xd8\x87\xd8\xf1\x89\xd5\xff\x99\xd3\xeb\xdd\x56\x6b\x9e\x61\x01\xd6\xed\xdb\xf6\x68\x43\xa5\xb6\x59\x22\xaa\xaa\x6e\xe7\xbb\xa5\x64\xaf\xbf\xde\xad\x01\xfc\x59\x97\x03\x20\xa8\xe2\x55\xb7\xfb\xeb\xf1\xc6\x2f\x94\x78\x0b\x3e\x11\xa4\x9b\xbd\xbf\xa8\x60\x72\xd4\x3e\x87\x49\xe1\x97\x2f\xb2\xa9\xf9\xfc\xe5\xdc\xdc\x9a\x77\xfb\x3e\x7b\x36\xc1\xba\xfb\x8e\xef\x6e\xc5\xab\x4a\x08\x40\xc0\x3e\xaf\xfb\xf1\x19\x4d\xb4\x9f\x9a\x69\xf7\xee\xd9\x2c\x79\x38\x37\x2a\x35\xd3\x6e\xf0\x47\xa5\x66\xda\x8d\x81\x50\xa9\x99\xa6\xeb\xa6\x52\x33\xcd\x92\x43\xd5\xa0\xfc\xb3\xf7\x19\x7d\x4a\x79\x9e\xeb\xdb\xac\x0b\xe5\xc7\x7d\xf3\xb9\xbf\xd3\x24\xeb\x9f\x4c\xf6\xba\xc3\xfd\xb1\x51\xd4\x9d\x32\x83\x04\x40\xd4\xe3\x17\xcf\xc1\x98\x81\xee\x55\xc2\xaf\xa8\x88\x66\xac\xe7\x7a\x90\x09\x4d\x6a\x66\x3d\xbe\xb0\x16\x82\x55\xea\x42\xf7\x71\x77\x2e\x40\xf7\x1f\xac\x34\x15\x25\xd1\xcc\x62\x5e\x0d\xda\x8f\xa1\x77\x36\xe7\x7a\xfc\x0a\x64\xf6\x97\x37\x8d\x52\x75\xaf\xfa\x65\xb7\x8b\x84\xeb\xf1\x7a\x76\xe6\xd3\xaa\xb5\x86\x9d\xce\xb7\x03\x27\x17\x46\x5f\x5d\x28\x3f\x9c\x18\x75\x75\x21\xfc\x60\x81\xc0\x1a\x5e\xf4\x67\xa0\x44\x35\x78\x3f\x86\xae\x4c\x79\x35\xbb\x9d\x30\x94\xba\xbc\x00\xa7\xf2\x96\x35\xfc\x4a\x35\xa4\xc7\xe1\x7a\x4c\x3c\x89\xfe\xaa\x27\xe0\xe7\x17\xdc\xa4\x75\x79\x02\xce\xf2\xdc\xff\x8b\xe8\xc3\xdc\xae\x64\xb8\xdf\x7e\x0b\x41\xcf\xce\xbf\x52\x05\xab\x0e\x82\xf3\x7a\xbc\x75\x35\x58\x2e\x90\x41\x0a\x04\x38\x4e\x9b\xae\x56\x39\x8d\x20\x31\x5e\x89\xb1\x1a\x49\x3f\xc2\xba\xaa\xc6\xf6\xaf\x4c\x72\xa6\xa1\x8e\x81\x33\x3d\x5e\xca\x1a\xdf\x8c\x70\x09\xbb\x1a\x09\xea\x6d\xde\xf1\x5b\xe6\x7c\x7e\x7c\x1d\x24\x2a\xe4\x54\xb2\xe1\x85\x68\x15\xfd\xa2\x96\xbc\x3f\x42\xb3\x7e\x9e\x11\x0b\x8f\x74\xfc\x4a\x16\xbc\xf6\x52\x5d\x4e\x81\xa4\x8e\x4e\x8d\x64\x49\x77\xdb\x3d\xc9\x0f\xe6\x2e\xe7\xfb\xd9\x9b\xc3\x5b\xcf\x37\x4b\x5a\x4a\xb0\x9e\x5f\x2e\x07\x8e\xa5\x4a\x28\x80\x15\x9b\xea\x97\x09\x3f\xc0\x28\x75\x39\x03\xe2\x01\x08\xaf\x4f\x28\x40\xe9\x13\x87\x40\x7d\x1c\x02\x3f\xd6\x00\x23\xb5\x1c\x02\x57\xea\x1e\xe5\xcf\xfd\x60\x3b\xcb\xb3\x7c\x5a\x77\xa1\x2e\x67\xc0\x99\xb0\xc3\xeb\xf9\x66\xdf\x1a\x55\x5f\x9f\xcc\xf8\xfb\x21\x97\x2b\xa1\x00\x13\xe7\x54\x5d\xce\x80\x54\x71\x03\xd5\xc7\x11\x70\x74\xcb\x4f\x54\x1d\x01\x3f\x53\x96\x90\xcc\x7a\xbd\x29\x68\x1d\x87\x63\x5d\x8e\x80\x64\x96\x4a\xbd\xbe\x71\x70\x71\xba\xcc\xae\xa6\x57\x97\xfa\x5a\x8c\x01\x71\xfe\xe5\xf2\x4e\xab\xff\x56\x2b\xae\xd7\x8b\x68\xc4\xc5\xf5\x2a\xdf\xdc\xb1\xc5\xf5\xe9\xb1\xd5\x1f\x2a\xba\xa8\x65\xf7\x8a\xfe\xfd\xcf\xdc\xba\x4c\xbf\xf3\xf9\x6f\x3a\x9a\xae\xb0\x9a\xde\x00\x5f\xa9\xf2\xba\x1c\x02\x31\x62\xbe\xd4\x44\xf6\x71\xf0\xec\xb5\x24\x46\xe2\x67\x6a\x22\xbb\xda\x6f\x2e\xa1\xd7\x8f\x5c\x5e\x5d\x28\xff\xde\xa3\x67\xbe\x99\xc7\x26\xa3\x56\xeb\xd3\xc1\xda\xd4\x27\x53\xbe\x3c\x69\x92\x35\x91\x79\x7c\x79\x54\x39\xa2\x17\xa2\xfb\x95\x0c\x6c\x9b\x3b\xb4\xb8\x77\x1b\xaf\x11\x56\x6c\x37\x42\xcb\xb8\xba\xeb\x83\xea\xdb\xe3\xd6\xaa\xe8\xad\x16\xf4\xf6\xeb\x42\xf5\x71\x07\x3d\xd4\x5f\x88\x3e\x7a\x3d\xce\xc0\xc3\x6b\x7f\x39\x44\x69\xcd\x4d\x00\x3b\xdc\x4a\xbd\xbf\x14\x3c\x82\xb9\x2b\x94\xff\xe5\x1b\x92\xf2\x4f\xe3\xc9\x59\xa9\xf7\xcb\xeb\x89\x59\x2a\xb4\xff\xed\x36\xf6\xd0\xfe\xbd\x37\xbc\x1b\xf5\xc6\xc9\xed\x7b\xb9\xa9\x6b\xe0\x16\x71\xc3\xed\x39\x03\x33\x39\x6b\x98\xb2\x95\x4c\x7a\xcb\x88\x57\x32\xe9\x8d\xc5\xac\x99\xba\x06\x8e\x39\x99\xf4\x19\xa7\x5c\x7d\xa8\xfd\xf3\x71\xb3\x57\x74\x5a\x15\xd5\xaf\xa2\xf7\x9f\x2d\xfd\xf6\xfa\xfb\xfb\xc5\x73\xf2\x8b\x1a\xdd\x42\xf2\xeb\x0c\x9e\x18\xc0\xf5\x57\xf0\xbe\x5b\x48\xfe\x72\x5b\x5c\x4f\x33\x66\xbc\xdf\x43\x66\xbe\x17\x5b\xb5\xfa\xbe\x68\x84\xff\xde\x42\x16\xc0\x8f\x97\xcb\xcc\x02\xf8\xc1\x48\xaa\x4a\x02\xbe\x80\xb0\x92\x80\xff\x7c\xb4\x45\xa0\x7b\x76\x15\xf6\xeb\x02\xf7\xa7\x55\xb7\x2a\xe5\xf1\x0e\xa7\x4a\xf9\x40\x9f\x83\x50\x2c\xa6\xec\xd1\x5a\xfa\x77\x3c\x97\xb5\x20\xd1\xeb\x62\xf7\x2b\xf9\xde\x57\x69\x99\x3c\xb7\x2e\x4a\x5b\x98\x0b\x52\x29\x6d\xd1\x5c\xc4\x04\xf8\xe7\x7c\xc0\x75\xad\xf0\x3b\x80\xfb\xba\xc0\x7d\x4a\x7e\x8c\x15\xcd\x77\x77\xe1\x05\xee\x83\x1a\xaa\x95\xf2\x16\xba\x4c\x2a\x19\xf5\xc3\x8f\xec\xa1\xf3\x7f\x2c\x08\x9e\x4b\x89\x0b\xcb\xde\x55\x4a\x5c\xcc\xe8\xb5\x8b\xd6\x3c\xb4\xb5\x00\xf4\x0a\x64\xd7\x05\xe8\x2f\x6b\x95\xd5\x07\xd0\xdf\x7d\x62\xa9\xd7\x05\xe8\xe3\xad\x5d\x0c\xa0\x57\x61\xb3\x2e\x40\x7f\x99\x85\x5e\xa5\xef\x7f\x36\x5b\xe8\xf9\x8a\xb2\x6c\x75\x64\x16\xa0\x0f\x96\xd2\xae\xed\x8d\xf2\xe9\x44\x2b\x55\xd4\x65\x37\x5b\x42\xfc\xfe\xed\x12\x06\x75\x7f\xe2\x99\xae\x50\xf7\x19\x9c\x56\xa9\x77\xb1\x3f\xd7\x59\x05\xd5\xeb\x7e\x71\x1e\xfe\xbf\xac\x5b\x15\x66\x6b\x7b\xa7\xb8\x8e\xc9\x6a\x4d\x0c\x97\xec\x27\x7e\x3f\x3c\x61\xe8\xb5\x7d\x81\x8e\x38\x1c\x6a\x27\x8b\x1c\x0a\xbf\x92\x35\x5f\x9c\x85\xd4\xcd\x38\xb5\x32\xa9\x9b\x71\xfa\x0e\x89\xdd\x7f\xec\x49\x62\xf7\x55\xe3\xaf\x22\xf4\x2b\x3c\x21\xac\x15\x4d\x5b\x6b\x75\x54\x11\x3a\x62\xc9\xf5\x43\xe8\x0d\xc4\x57\xfb\x17\xd9\xe7\x22\xdf\x3f\xfa\xda\xed\x86\xec\x79\x8b\x28\x56\xb3\xe7\x7f\x10\xd7\xe1\x33\x56\x40\xeb\xe5\xb2\xd8\xdf\x7e\x3f\x57\x8c\x2f\x5c\x83\x50\xfa\xfa\x04\xed\x87\x87\x31\xa8\x03\xfa\x1a\x9c\x5b\xc7\xf7\xce\x09\x29\xad\xe3\x43\xae\x22\xbf\xf1\x86\x31\x4c\x1c\xbf\x95\x3a\x7f\x56\x9d\xad\xd4\xf9\x53\x18\xba\x12\xbc\xff\xbc\xbb\xa1\x30\x34\xb3\x64\xbc\xfc\x46\xd3\xf8\x5b\xa8\xfd\xd2\xa5\x54\x17\x6a\x8f\xc5\xf7\x2a\x75\xff\x73\x36\xae\xdb\x2a\x75\x7f\x9e\xc4\x0d\xfd\xfc\xf2\xdb\x51\x59\x09\xdc\x0f\xa0\xfa\x3a\x5f\x31\x11\x85\x75\xaa\x19\xf5\xcb\x4b\xc2\xf8\xcc\xcf\x79\xe7\x9c\x9f\xaf\x60\xcc\xc4\xc5\x59\x51\xe5\x3d\x44\x21\x0b\xb9\x9f\x96\x49\xad\xd4\x07\xac\x97\xf7\x5f\x21\x2b\x19\xbf\x49\xa5\x60\x79\x70\xa1\x9e\xe5\x5d\xfd\xdc\x76\x51\xe6\x4d\x7e\xc7\xf3\x0f\xaa\x43\x99\x57\x31\xf1\x2a\x5a\x8f\xe1\x89\x25\xab\xd3\x92\x93\xab\x15\x6d\xdb\xde\x5e\xe0\x4d\x68\xdb\xfe\xe1\xe3\x83\x5f\x50\x21\xc6\x54\x6a\x66\xd5\x2f\x6d\xae\x7f\x21\x8c\x06\xc3\x7f\x90\xac\xd5\xb6\x57\xd6\xcb\x4c\xd6\x46\x39\x8f\x7d\xf8\xe8\xb5\x14\x44\x7c\xa9\x6d\x7b\xd3\xd5\xe6\xe9\x2f\x9f\xf3\xea\xf2\xfa\x6f\xe7\xc3\x59\xd1\x88\xf1\xbf\x59\xae\xdb\xf6\x2d\x09\xd1\x67\x74\x9c\x63\xde\x71\xb0\xcd\x14\x8e\xd6\xae\x67\x01\xf6\x46\xd2\xbd\x11\x19\x0d\x80\x9f\x59\x26\x1a\xc2\xbe\xee\xea\xcd\x18\xff\x1f\x9b\x9f\x65\xac\x2d\x80\x1f\x24\x39\xdb\xfe\x3b\x4b\xbd\x2d\x80\x1f\xd5\xe0\x6a\x88\xfb\x66\xe0\x65\x43\xdc\xb7\x80\x25\xda\xfe\xed\xf4\x97\x6d\x2a\x8f\x9d\xdd\x70\x4e\x34\xca\x80\x94\xdb\xbb\x61\xd5\xb2\xdc\x37\x29\x7c\xd0\x5c\x23\xbe\xbf\x1c\x9e\xe9\x12\x70\x75\x2b\x4c\xb5\x05\xf2\xa3\xb9\xdb\xed\x78\xa9\xbd\xce\x06\xdd\x28\x57\x68\x3e\x7d\x03\xe4\x57\x28\xf8\x06\x7d\x5f\x59\xfe\x1a\xf4\xbd\xb5\xf8\xdb\x02\xf8\xa7\x22\xd6\xcd\x78\xfe\x15\x08\xe0\x2f\x0b\xdc\xde\x87\x47\x1f\xc0\xaf\x3e\xf7\x0d\x6c\x6d\xc3\x5f\x2a\x1e\x63\xde\xcc\xf1\xd2\xbc\xd3\x29\x7a\x7c\x5a\x42\xcf\x3d\xe0\x28\x9c\xe2\x00\x7c\xe5\x5b\x1a\xea\xc0\x0a\x8b\xb4\x05\xf0\x57\xda\xc1\x3a\x5a\x75\xcb\x76\xe7\x5f\x78\x69\x5d\xdd\x52\xcd\xcc\xfc\x58\x7a\x67\x11\x6b\x01\x6a\x77\xf3\x7a\x84\xb8\x09\x08\x68\xc4\xf3\x5b\xac\xb4\xa1\x12\xdc\x92\xd7\x51\xb1\x02\x37\x48\xa3\x94\xa1\xe9\x79\x0d\x05\x61\x2b\x57\x35\x14\x84\x6b\xf3\xe8\xcb\xe3\x38\xec\x0f\xb9\x2b\xd9\xff\xdf\xdc\x05\xd5\xb9\x5a\x7c\x73\x17\xd4\x88\x6b\xc4\xf3\xab\xb5\xd5\x88\xe7\x17\x39\xb7\x07\xb9\x6f\xbd\xb3\x0d\x37\x14\x85\x07\x02\x36\x6d\xa1\xf6\xe8\xa2\xdc\x50\x14\x36\x63\xbc\xc5\x2f\x77\xa3\x7a\xed\x9b\xa1\xdd\xd8\x34\x9a\x94\xfe\x6a\x0d\xe3\x12\xdf\xbc\x1d\x8d\x89\x16\xad\x72\x6c\xfb\x97\x22\x41\x74\xe6\xc5\x4f\x28\x86\x4d\xa5\xc5\x17\xc5\xb8\xd4\xb7\x87\xd2\x2f\x7d\x82\xb9\xdb\x89\x40\x10\x5b\x4d\x5b\x28\x3e\x9e\xb0\x4c\xed\x3c\x3e\x14\x44\xab\xcf\xd7\x39\xad\xf9\xd9\xce\x2f\x79\x01\x73\xaf\x9d\x88\x24\x1d\x1e\x2d\xab\xfe\x64\xd3\x6b\x22\xf8\x9f\xeb\x5d\x77\x1e\x4a\xbf\x3f\xe1\x34\xed\x7c\x35\xcf\x74\xbb\xb6\x85\xe2\x53\x1e\xb6\xb8\xbe\x98\x3e\xdb\xea\x37\xbc\x63\x44\xef\xfa\x45\xac\x75\x9f\xbc\x68\xed\x7e\x79\x8f\x95\xb7\x15\x08\x96\x68\x54\x30\x39\xd8\xaa\x9a\x81\xfc\x7e\xeb\xd7\x1b\xd2\xa0\xdb\xb4\x81\xde\x6f\x42\xef\x9b\x81\xfc\xa4\x27\x34\x8b\xc0\xbb\x1a\x2e\xe4\x1e\x95\xe5\x69\x0b\xb9\xaf\x42\x35\xff\xd8\x2a\x28\x70\xb2\xd9\xf9\xeb\x13\xa9\x38\xbd\x2d\x3e\xae\xe0\x11\x4b\xc0\xe9\xd9\x8d\xc6\xb1\xf8\x12\xdf\x6f\x82\x60\xbb\xbe\x88\xad\xd3\xe6\xbe\xec\x7e\x87\x3c\x6c\xe9\xf3\xd9\x63\x6f\xb4\x05\xe6\xc3\x85\x9d\xdf\x16\x98\x8f\xd3\x25\x6c\x81\xf9\x4b\xbb\xb8\x2d\x30\x7f\x09\xbc\x5a\xfa\xb3\xd4\x23\x7b\xb7\xe1\xf5\x6d\x0b\xcc\x9f\xcf\x86\x92\x5e\x6a\xda\xb2\x96\x8d\x32\x8c\x96\xa5\x6f\x94\x61\xbc\xfd\x28\x28\xc3\x98\x6e\x9f\x09\x82\xc1\x1d\xd4\x16\x88\x3f\x93\x13\x29\xa9\xd4\xe9\x53\xd6\x52\x17\xf1\x2c\xb6\xfb\x8d\xd7\x36\xa4\xb1\x41\xcb\xef\x90\x57\xed\xfe\x62\xb5\x9d\x52\x4f\xfc\x7e\x78\x94\xa6\xda\xfd\x5b\x80\xa5\xdd\x9f\xd4\x9f\xbd\xf8\xb2\xf1\x07\xfa\x9e\x8d\xe2\x2a\xbb\x8b\xc2\x8d\x2f\x93\xa0\x85\xb6\x40\xfc\x59\x36\x9f\x5f\xc8\xe6\xf6\x4c\xad\xdc\xfd\x89\xcd\x69\x0b\xc0\x2f\xb1\xd2\x75\xd4\x49\x5c\xf4\xda\xf1\x01\x5c\xff\x67\xba\x3b\x9e\x14\xa9\x0f\x6e\x08\x0f\x15\x7f\x75\x05\x3f\x5a\x7e\xfd\xb8\x13\x2b\xb2\x01\xe4\xa3\x6f\x3d\xbf\x9f\xbc\x9a\x4a\x2d\xbf\x7d\x37\x02\xae\xe5\x97\xae\xd4\x4f\xde\xf2\x17\xcd\x73\xf8\x9c\x2f\x8d\x4b\x1b\x6c\x01\xfa\x33\x43\x4b\xb6\xfc\x39\x31\x48\xbc\x6b\xf9\x75\x5e\xe9\xe7\x6f\x59\x99\x47\xfb\xf2\x3a\xef\x0c\xbf\x68\x8f\x74\xde\xdd\x9b\x4b\x58\x9e\xdf\xb6\xca\x5b\x29\xdf\x9c\x07\xf3\xb5\x4f\x42\xaf\xdb\x7a\xb2\xf2\x0f\xcd\x33\x8a\x4e\x06\x17\xa4\x82\x48\xc9\xf0\x6e\x04\xac\xba\xcc\x97\xeb\x33\x5c\x18\x99\xf2\x39\x73\xdc\x98\x0a\xd6\x3e\x9c\x65\x2b\x9f\x69\x57\xbd\x02\xad\x30\x5c\x3f\xad\x90\xcb\xe4\xd7\xb0\x10\x7c\x0a\xd3\x76\xe3\xc8\xf0\x3d\xfe\x92\xce\x23\x3e\xab\x95\x5f\xfc\x0d\xed\xab\xbf\xd0\x2d\xed\xaf\x9f\xd5\x0b\xfe\x69\x9f\x74\xfb\x04\xe3\xb5\xfa\x46\xb7\x59\x59\xb7\xd5\xf8\x61\x20\xc6\xa8\x32\x0e\x2e\xa3\xf5\x73\x62\xfb\xad\x56\x32\xd5\xdd\xca\x7e\x69\xe5\x25\xff\x47\x0b\xdb\x6d\x66\xa1\xfb\x14\x86\xff\xad\x6d\x30\x40\x1b\xb7\x5f\x01\xfa\x6e\xe3\x14\xcb\x37\x9a\xaa\xd5\xf7\x7b\x18\x7e\x6b\xf5\xe3\x2a\x6d\x4d\x93\x9f\xf5\xe8\x97\x6a\x2f\x3d\x6e\x1f\x8f\x45\x88\x46\x23\x4b\xdf\x22\xa8\xad\x7d\xe1\x0a\x6e\xac\xd2\xf7\x1a\x43\x5f\xa6\xbe\x4e\xe0\xd6\xde\xfc\x0d\xd1\x6d\x23\x5b\xff\x72\x9e\x1a\xac\x1f\xf7\x3e\x20\xfc\xdb\x13\xac\xff\xea\x5c\xb4\x47\x33\x2f\xa0\x71\xf0\xdf\xdb\x0a\xb1\xfc\xa7\xb6\xe6\x72\x08\xa4\xdc\x7c\xd8\xb7\x35\x38\xe1\x1b\xaa\xa8\x0e\x68\x7f\xa7\x89\xe0\xbc\xf5\x6f\x9a\x68\x13\x3e\x0c\xff\xf5\x24\xfc\xb4\x8e\xd4\xda\xe1\x3d\x22\x2e\x0c\x5e\xca\x72\x0c\x2c\x8d\xec\x75\xf4\x2d\x95\x2e\x29\xfd\x0b\x7a\xc3\x2f\xd7\x96\x73\xe0\xcc\xda\x57\x4f\x4c\xff\xd5\x9b\xfb\xb2\xce\x81\x15\xf7\xcf\x10\x3f\xce\x81\xfe\x64\x02\xb4\xe5\x1c\x38\x4b\xb1\x0d\x9d\x24\x30\x5b\xfb\xe9\xd9\xb8\x78\x2c\xe7\xc0\x2a\x6d\xf0\x73\x04\x85\x7f\x38\xe9\x86\x01\xcd\x7c\x34\xbf\xe2\xf9\xb5\x87\xc7\xe7\xf3\xd5\xe6\x20\x93\x3f\x90\x60\xd6\x90\x88\x97\xe3\x69\x5f\x3c\xbf\x59\xb4\x6d\x39\x04\x62\xc1\x71\xd2\x70\x08\x64\x37\xbd\xe5\x10\x38\xb7\xe9\x99\x64\xf2\x5f\xb6\x64\x51\xbc\x92\x84\xed\x89\xe5\x8f\x8f\xf7\xb3\x21\x15\xbf\xc3\xa8\xb4\xe5\x0c\x88\x87\xcb\xc7\x43\xe1\xff\xc0\x6b\x3e\xdb\xe5\x0c\xb8\x8c\x2a\x6b\x8f\x33\xe0\x8d\xfa\x6f\x53\x39\x41\xae\x9f\x44\xb3\x68\x5c\x3c\x4e\x80\xd9\xad\x5e\xd1\x88\xe5\xdf\x44\xac\x13\x65\x51\x37\xe4\xe5\x04\x08\xcf\x16\x64\x2c\xff\x72\x97\x30\x42\xf3\x97\x58\x89\xbf\x14\xda\xc6\xe8\x4e\x1c\x7e\x6e\xad\xcb\x11\x10\xba\xc8\xd2\x58\xfe\x9f\x05\x4c\xcb\x7f\x39\x03\x92\x21\x15\x6d\xfa\x9e\xd7\xb5\x7d\x39\x02\x42\x04\x55\xf6\xe5\x04\x88\x17\x2a\x44\x7d\x33\x6f\xa1\x70\xb4\xe6\xf7\x8d\xfb\xae\x2f\x84\x7f\xfa\x45\x75\x8a\x75\x1e\x78\xd0\xfb\x42\xf7\x31\x07\x8f\x70\x6a\x46\xaf\xbb\x5f\x87\xca\x6e\x0b\x5e\x2e\xc3\x68\xaa\x4e\x2c\xff\x8d\x5d\xdf\x37\x39\x2c\x5b\x48\x2a\x23\x23\xd7\xbf\x40\x7d\xbf\xc2\xbe\x90\x7d\xda\xa6\xcf\xfe\x52\x3a\x99\x97\x7d\xdf\x3e\x67\x15\x2d\xda\xf7\x67\xab\x9e\x90\xe7\x7d\x7f\x83\xd6\x07\x5f\x43\xdf\x3f\xbd\x26\xf0\x47\x57\x47\x8f\x4d\xb5\x2f\xa4\x7f\x65\xde\x75\xdf\xbf\x34\x46\x22\xcd\xfa\xfe\x46\xe7\x29\xab\xd2\xf7\x57\xaf\x69\x32\xb3\xfb\xfe\xa5\x32\x82\x5f\xfa\xfe\x39\x3e\x6f\x5b\x56\x3f\xfc\xc0\x08\x18\xc0\xbf\xa2\xf8\x78\x4f\x66\xf8\x9f\xe1\xd9\x72\xfb\xf2\x00\x5c\x65\xf7\xff\x57\x32\x54\x0e\xa0\x1f\x1f\xa7\x85\xe9\xd1\x29\xf7\x13\x7d\x83\x07\xf3\xde\x56\xe1\x01\x88\xcd\xff\x3e\x44\x84\xa1\xd3\x8f\x4f\x3a\x94\x19\xd7\x8f\x4f\x35\x98\xed\xa2\x1f\xe9\xc3\x6a\xde\xe7\x77\x0e\x4f\xff\x23\x62\xdf\x0f\xa4\x53\x83\x47\xf5\x5d\xbd\x09\x43\xe8\xe8\xf3\x85\xe1\xff\xfd\x7b\x1a\x6f\xcf\x80\xfe\x95\x9c\xc9\x38\x3e\x01\xfd\x3f\x86\xc0\xbf\xb4\xaf\x3a\xb1\xfe\x4a\x18\xf7\x20\xf5\x45\x47\xc2\xf1\xd9\xc1\xdc\x3a\x90\xdf\x01\x51\xdc\x8d\x02\x70\xaa\x7d\xb9\x00\xe6\x66\xf4\xf0\x5a\x8e\x5a\xaf\x3d\x90\xe5\xc9\x67\xdf\x89\x00\xc8\xe4\x1b\xf7\x90\xbf\xae\x7b\x76\x41\x3a\x83\xd7\xb6\x1c\x06\x69\x87\x18\xef\xc1\x14\x46\x06\x21\x10\xc4\x0a\xb2\xe9\x8f\x84\xdf\xd6\xad\x71\xd6\xc9\x01\x28\x7e\xc2\x91\xa0\x3e\x3c\xe0\x3d\xbe\xd9\x9d\x03\xbf\x6a\x5f\xce\x82\xeb\xfd\x3f\xbc\xcb\x15\xbe\xcb\xfe\xd0\xfc\xbd\x5b\xe8\xb1\xc7\x37\xda\xc7\x22\xe8\x3d\x7e\x56\x33\xa2\x2a\x1d\x3d\xfc\x1d\x3b\xbc\xc7\x2f\x88\xf7\xf4\xae\xaf\x63\xcc\x62\x99\x7d\x39\x0d\xa2\x81\x01\x3d\xd6\x6f\x32\xf2\xe1\x2d\xa7\xc1\xd9\xd8\xc6\x7b\x7c\x03\xfd\x9a\xd3\xf7\x71\x1a\xfc\x2c\xdb\x3e\xf5\x5b\x32\xfc\xd4\xc9\x03\x50\xe8\xa4\x9f\xdf\x58\x90\xa6\xd5\xcf\x5f\x39\x2e\x7c\xca\x7f\x44\xf0\xfb\x72\x1a\xa4\x1d\x37\x43\x7f\x54\x00\xb6\xa7\x46\x42\x5f\x4e\x83\xa0\x9b\xa3\x2f\xa7\xc1\xd5\xfc\xd8\xce\x57\xce\xd0\x80\xea\x7e\x82\x1a\xd8\x84\xfa\x49\x1e\xc4\x69\xdb\xea\xbb\x18\xe0\x70\xe8\x0a\xe1\x77\x9f\xdd\x9f\x45\x67\xb8\xe8\x9c\xaf\x7f\x5c\x09\xec\xfe\x88\xe1\x8f\x3e\xd9\x16\x3b\x0e\x03\x13\x21\xfb\x72\x18\xdc\xbb\x67\x23\x86\x9f\x1c\x1b\x62\xfe\x55\x4e\xed\x17\x19\xbe\x8e\xc2\x72\x16\x9c\x56\x18\xef\xc4\xfc\x27\xbf\x92\xe5\x2c\x38\x15\xc9\xee\x17\x8e\xc1\xe9\x5d\x28\xc3\xe9\x42\x7b\x11\xc0\x4b\xf0\x78\xbf\x48\xcb\x3d\xbc\xcb\x5a\xfa\x6b\xf0\x4c\x9c\x7d\xb0\x16\x9d\x4c\xfe\x80\xc3\xb7\x2f\x94\x9f\xac\xfd\xd2\x13\x41\xaa\x2e\x26\x0b\xe5\xdf\x07\xc1\x29\x1d\x94\xaf\x29\xd2\x17\xca\xbf\x36\xb7\x89\x85\xf2\xa3\x19\x41\x9d\x92\xa7\xcf\x86\x08\x5d\xaf\x13\xa5\x83\xf0\x03\xc6\x60\x4f\x28\xe6\x16\x9f\x5e\xb9\x27\x63\xbd\x10\xfe\xb9\x57\xef\x42\x58\x8e\x8b\x3f\x1a\x7b\xed\x69\xe7\x32\x59\x8b\xdb\xe2\x4d\x1d\x0e\x97\x78\xe8\xf9\x0c\xd6\xef\xb7\x41\xb8\x3c\x8f\x72\xa8\xf1\xf2\xcc\xc8\xd3\x59\x3f\x16\xaa\x3f\x4d\x9d\xec\x0b\xd1\x5f\x99\x68\xc9\x7e\xe3\xc4\xc4\x35\xd7\xa1\xe4\x93\x73\x16\x34\x6f\x02\x65\x5f\x68\xfe\xb4\xee\x60\x27\xb0\xde\x0a\x7e\xfd\xc6\x89\xe7\xc6\x73\x5b\xf0\x98\x71\x59\x48\x3e\xca\x21\xf5\x85\xe2\xaf\x03\x8e\xb5\x13\x50\x7f\xdb\x96\xfc\x3b\xbd\xb2\x43\xc3\x1f\xcf\x11\x34\xbc\x2d\x83\x86\x9f\x8e\x75\x46\x5b\xeb\x9f\xe8\xa1\x67\xb5\xa6\x18\x96\x4c\x14\x8a\xcb\xc1\x02\xf2\xa7\x15\xb9\x7a\x26\xaf\x00\xe0\xd7\x17\x88\xbf\x2e\x5f\x7b\xfe\x94\x64\xb1\x9c\x7b\x6e\x7f\x1a\xfe\xf9\xed\xa0\x8a\x7a\x1e\x7f\xfe\xff\x4d\x55\xf5\xf2\xd6\x1c\xb3\x5c\x67\x27\xae\x3e\x11\x47\xd3\x17\x68\xbf\xb2\x1f\xed\x13\x53\xff\x83\x50\xe9\x45\x79\x23\x6f\x26\x18\xa0\x97\x5f\x69\x59\xde\xe3\x7a\xec\x1c\xe3\xd8\xfb\x02\xf0\xf1\x26\x10\xb1\x2f\xf0\x1e\x4b\xf5\x19\xef\x72\x3c\x9e\xb3\x5f\xca\x4a\x62\xb5\x97\x4f\x77\x0a\x26\xa6\x97\x2f\xe3\xd8\x65\x7f\x01\xf9\x73\xef\xb6\x6a\x7c\x50\x90\x31\x5e\x40\xfe\x54\x9e\xa4\x3f\x20\x3e\x3d\xb2\x11\x7d\x81\xf8\xa0\xcc\x4a\xff\x84\xee\x85\x9a\x1d\x4a\x3e\x43\x9b\xf5\x27\xd6\x7e\xef\xd6\x3c\xee\x55\x7e\xea\x7a\x1c\x83\x7d\x01\xf8\x55\xea\x63\x1d\xa5\x67\x54\xba\xd3\x11\x6a\xbe\xba\x60\xd5\x8f\xaf\x89\xfe\xf2\x5b\x5d\xa0\x57\xe2\xcf\x37\xef\xfd\x65\x1c\x3b\xd5\x95\xd8\x8b\x7b\x97\x94\xef\x15\x95\x55\x2d\xef\x05\xe0\xcf\x03\xae\xa7\x37\x45\x49\x18\x9b\x27\xbb\x7e\x76\x03\x05\xfa\x03\xde\x8f\x6e\xa0\x41\x6f\xe4\x1c\x69\xf1\x0b\xde\x7f\xec\x6d\x6d\x66\x84\xee\x2d\x45\xda\x1f\xf0\xde\x9f\xb0\xdd\x0e\x55\x9f\x9c\x59\xed\x73\x5e\x04\x5b\x04\x42\xc3\x81\xd2\x17\x70\x5f\x55\x44\xd7\xd1\xb7\x25\xb9\x14\xff\xa9\xd3\xd6\x17\x32\x8f\x29\xf9\xdf\xe7\xcc\xf3\x8b\x6a\x5f\x6e\x8d\x86\xcc\x9f\x7a\x6d\xfd\x41\xe6\xf3\x89\x69\xeb\xd0\xf5\x9b\x9b\x73\xff\xe5\xc8\x64\x7c\x16\x32\xbf\xab\xef\x76\x21\xf3\x53\x0c\xdc\xfb\x17\x85\x47\x04\x59\xff\x23\x74\xdf\xfb\xaf\xfc\x12\x5a\xbc\x90\xf9\x6d\x31\xa0\xde\x7f\x45\xa0\xf9\xfc\x2f\xa8\x5e\x23\xae\x93\x5b\x24\xd6\xe9\x6f\x6a\xe2\xdc\x6d\x83\x75\x4b\xf8\x5a\xfa\xaf\x92\x4b\xbc\xf1\x41\x5a\x22\x11\x6a\x5d\x64\x0e\x6f\xd5\x45\xe6\x3f\xe6\x02\x58\xbb\x8b\xcc\x7f\x7e\x81\xa3\xec\x0f\x5d\xbf\x3f\x55\x56\xfa\x42\xe7\x71\xb8\x25\x8c\xcf\x79\x83\x33\xb9\xa3\xb5\x77\x39\xa2\x0b\x9d\x5f\x46\x5a\xf5\x4f\xf8\xbe\xb9\x3e\x22\x7c\x9f\x93\x2d\x7a\x9d\x98\xcd\xaf\x79\xfc\x79\xff\x20\xf4\x4a\x80\x43\x1f\x5f\x5a\xa6\xe3\x23\x4a\x8f\xc7\xbb\x1a\xcc\x3f\xef\x7f\x12\x90\xec\xda\x42\xe1\x5c\x85\x65\x3b\x01\xf6\x17\x3e\x8c\xfe\x20\xf4\xdc\x2d\x31\xdc\xe7\xf9\xac\xa8\x4a\x94\x74\x32\xee\xb3\x1b\xee\x42\xe9\x67\xc7\xed\xdc\xe7\xcb\xdd\x58\x5b\xbf\xcf\xfc\xff\xc9\x22\xf6\x05\xde\xe3\xe5\x22\xba\xc0\x7b\x3a\x5d\x20\x27\x82\xe9\xbe\x6e\x62\xee\x65\x34\xfa\x44\x9e\xcb\xa9\xf6\x24\xe1\xe7\xde\x89\x20\x1f\x80\xf7\x06\x1b\x32\x90\xe0\x3b\xd8\x4d\x87\xba\xf8\x3f\x8b\x16\xfb\xf9\x20\x09\x3f\x10\x5d\x34\xb6\xcf\x87\xd9\xfd\x65\x59\x37\x6a\x06\x8d\x27\x16\x3f\x3c\x29\x2c\x03\x20\x7f\x33\xd5\x86\xf5\x76\x71\x31\x0c\x41\x7c\x2c\x0f\x0c\x1c\xdb\x2b\x38\xac\x68\xc3\xd8\x3e\xe0\x56\x6d\xe3\xca\x2f\x31\x6f\x77\xfc\x8a\xc7\x3f\x6c\xf1\xa7\x4b\x74\xd8\xc6\x65\xd5\x65\xbc\x86\x63\xff\x3d\x15\xc6\x9f\xfa\x70\x63\x81\xf8\x78\xb2\x44\x8d\x9d\xf4\x3a\xc6\x75\x98\x75\x7f\xa5\xde\x8a\x67\xbf\x5b\x40\x7b\xee\x4d\x80\x1e\xfe\xcb\xb1\x00\x7c\x34\x17\x62\xec\xaf\x26\x93\x89\x4e\x63\x81\xf7\xa0\x1a\xeb\xd8\xdf\x40\x5c\x63\x44\xc6\xfe\x0a\x6d\x4b\x66\x8f\xfd\x73\x56\x41\x4f\x0f\x6a\xf3\xee\x4f\x8b\xd6\x16\x10\x2e\x5b\x3c\x9f\x0f\x43\xef\xff\xf8\x53\x65\x6e\x2c\xc0\x1e\x85\xef\xe3\xf8\x6a\x22\xe0\x70\x1a\xc7\x1b\xb5\x62\x76\xca\x78\x80\xfb\xf6\xce\x8f\x05\xdc\x53\xb5\xc7\x07\x9f\x02\x39\xd9\x63\x01\xf6\x4b\xae\x67\x1c\x9f\xe0\xb6\x23\xb2\x00\xfb\x55\x36\xaf\x2d\x4f\x6f\xc5\x10\x83\x0c\xfc\x00\x32\x18\xc7\x5b\xeb\xc4\xf0\xeb\x71\xe0\xc3\xae\xde\x0d\xda\x1e\xe4\x38\x0e\xd5\x56\xe9\xe9\x23\xc1\xb7\x75\x1d\x5e\x23\xbc\xb5\x6e\x64\xd4\x46\xf8\x10\xd9\xf0\xaa\x57\x8e\x71\xf8\x46\x40\xe6\xfd\xf6\x8a\xf3\x75\x4b\xf9\x7d\x04\x84\x28\x76\xff\x47\x76\x93\x4c\xa9\x11\xee\x6f\x9b\xe2\x6b\x59\xc8\xfc\x7c\xc6\x36\x7c\xdb\x00\x0c\xd6\x08\x56\x4f\x67\x34\x17\x32\xbf\x72\xf7\xde\x1d\x99\x0e\xc6\xe6\x97\xb8\x7e\xf1\xff\x2f\xdd\xd0\x6f\x3b\xf2\xdd\xef\x1e\x61\x06\x3a\x5a\x8f\xc0\x7e\xea\xd3\xd9\xb8\xd0\x79\x38\x31\xb6\xc6\x42\xe6\xf1\x9e\x1e\xfd\xe6\x2d\x07\xd5\xe9\x6e\xf4\x17\x06\xba\x7b\x07\x36\xf7\x58\x68\x3c\x06\x50\xd9\x58\x48\x3c\x06\xdf\x3e\xd9\xf8\xd9\x75\x22\xd6\x3f\xf7\x6c\x28\xf4\x31\x32\x22\xf0\xeb\xc7\xba\x60\xe4\x22\xca\xe1\xbb\xf7\x5d\xa6\x8e\xd5\x40\xc6\x42\xde\xf1\xc4\x70\x1a\xe8\xee\x0d\xc2\x21\xc6\x42\xdd\xd7\x64\x53\x1a\x27\xb5\x5d\x5c\x57\x10\xd2\xb7\x6a\xca\x78\x10\xf7\xe8\x0d\xa5\xad\x01\xe2\x4e\x20\xa9\x71\xfe\xde\xe2\x87\x88\xfb\xe7\x4b\x3d\xbc\x3e\xbf\x66\x3c\x0e\xb1\x81\x88\xbe\xa9\x7f\xe3\x7c\xb7\xf8\xe7\xfb\x7b\x02\xed\xef\x3e\x08\x2f\x19\x0b\x79\x9f\x0b\x18\xfc\xe7\x56\x31\xd4\xd7\xdf\x7c\xd0\x1a\x8e\x4a\xc8\xea\x58\x40\xfc\x0a\x78\xcc\xc6\xf5\x67\xb9\x5b\x40\xfc\x3a\x9d\xbc\x0b\x88\x9f\xd7\xe1\x7f\x14\x25\x04\x1c\x8e\x47\x5b\x3f\x3d\x15\x0e\x06\xcc\xbd\x3a\xa5\x03\x30\x7e\x11\x97\x33\x00\xe3\xe6\x25\x0f\xc0\xb8\x15\xa0\xc7\xc5\x6b\xc7\xbb\x3e\xae\x2f\xfd\x26\xda\x8a\xb5\xb5\xa5\xe4\xd1\x02\x7b\x3b\xb2\x7d\xe3\x42\x69\xf3\xf4\xbe\xd4\x50\x70\xb1\x00\xac\x5f\x6c\x90\x23\x51\xf3\x9a\x1d\x7e\x20\xb9\x77\x61\x67\x8f\x05\xd6\x53\xc2\x39\x30\x12\x9c\xc3\x73\xe6\xb2\xec\x22\x36\xec\x78\xe2\xeb\x7d\x42\x02\x32\xd2\x96\x44\x1f\x0f\xaf\x43\x70\xe3\xb9\x8e\x32\x3e\x4f\xcb\x56\x5c\xf9\x86\xa5\x33\x00\xeb\x27\xb6\xdf\x00\xac\xe7\xcb\xeb\x56\x6a\xd1\xe5\x62\xba\xc0\xfa\x19\xa1\xdf\xc6\xfd\xe9\x05\x39\x21\x17\x60\x0f\x27\x4e\xa9\x01\x60\xbf\x70\x11\x0e\x00\xfb\x49\xb4\xd6\x00\xb0\x5f\xcf\xd1\xf9\x4c\x56\xc5\xde\xc7\x8d\xb8\x88\x6f\x7e\x81\xf6\x64\xc1\x9f\x01\x05\x7f\x12\xb9\x32\x00\xed\x27\xc8\x73\x00\xda\x23\x64\xff\x58\xa0\xfd\x3c\x93\xf7\xfc\x10\x4b\xf4\xb9\xfd\xfd\x25\xdb\xa7\xd5\x5f\x6b\x57\x8c\x27\x23\x3e\x3c\xd9\xba\xe3\x91\xcc\xab\x0f\x43\x34\x3e\x21\x7c\x35\x51\x07\x42\xf8\x2a\x25\x8c\x4c\xfe\x0c\x65\xa2\x46\xfe\x1d\x7e\x30\xf2\x2b\x1d\x68\xe9\xfc\x81\x54\xde\xe1\x78\x82\xd8\x93\xdf\x0d\x88\x3d\x42\x02\x0f\x2a\xd6\x69\x1f\x8f\x8c\x3e\xd4\xb4\x95\x8b\x6a\xdd\x9f\x36\xaf\x65\x3a\xe0\x98\x1d\x0b\xad\x5f\xc1\xb9\x46\xf6\x7b\x00\x37\x8f\xcc\xb2\x85\x5d\x39\x1e\xa4\x5e\xfa\xf4\xfd\x23\x7a\x6f\x2e\xff\x28\x9f\x58\x46\xf5\xff\xf5\x8e\x77\x10\xca\x80\x62\xd7\xdf\x3e\x9e\x2a\x75\xe1\xc9\xce\x18\x48\xe3\xed\xcf\x11\xe1\x25\xb8\x2f\x47\xe1\x1d\xfb\xbd\x16\xde\xf1\xee\x53\x56\x5f\x2f\x4d\x8a\x85\xcc\x6f\xf9\xa5\x51\xde\x1c\x11\x6b\xd9\x8d\x85\xca\xd3\xe9\x92\x4a\x80\xfc\xa6\x01\xb5\x10\xf9\x7d\xe3\xee\x1c\xf5\x8f\x29\x52\xc9\x91\xc0\x25\x3d\x2a\xf9\x30\x5e\x57\x09\xad\xc0\xa0\x1d\x56\x41\x1f\x1e\x2d\xf3\x23\x3c\xf7\xa4\xdc\x18\x4e\xa4\x81\xce\x9d\x72\xfc\x83\x4c\xf7\xdd\x75\x45\xea\xdc\x4d\xeb\x29\x31\x17\x1e\x57\xf4\x10\x7d\xdb\xeb\x85\xbe\x63\x72\xfd\xa8\x6f\x6d\x97\xf9\x9c\x4d\x0a\xa8\xdb\xe3\x42\xde\xd9\xdc\xb7\xb1\x90\xf7\x75\x12\x6d\x38\x16\xf2\x8e\x2b\x50\xe7\xbf\x97\xf4\x07\x90\xef\x4f\xd5\xdc\x61\xdc\xfc\xcf\x12\x0c\xf0\x1d\x7f\x8a\xa5\x8f\xf6\x39\x66\x48\xcc\x18\x0b\x94\x8f\x8e\xbf\x7d\xb4\xb7\xe8\xa4\x59\x14\x83\x64\xf8\xfd\x39\x7b\x2d\xd3\x03\x1e\x60\x2c\x40\x9e\xfb\xe9\xb3\x91\x01\x03\x9e\x8d\x05\xc6\xaf\x46\xc4\xef\x40\xf2\x2e\x5c\xfe\xb7\xd0\x47\xee\xb6\xf0\x2d\x92\x2a\x5d\x3a\xba\x15\x07\x69\x33\xb2\x77\x91\xe8\xab\xb1\x40\xf8\x90\xfd\x1f\x0b\x84\x07\x05\x1c\xc6\x02\xe0\x49\x6a\x78\xf4\x77\x3b\x1a\xf8\x2b\xc7\x02\xe1\xb1\xbb\xeb\xa3\x79\x5f\xb5\xe3\xfe\x14\x4f\x1f\x0b\x7c\x47\xf9\x84\xf1\x64\xb4\xa7\x87\x54\x1a\x5d\xf5\x4f\xef\xfb\x96\xb6\x31\xc2\x79\x74\x3e\xe9\xc3\xb3\x49\x01\x74\x1b\x80\x0e\x2f\x22\x11\xe8\x70\x4b\x68\x0e\x40\xf7\x81\x43\x63\x18\x1f\x6f\x7f\x06\xa0\x53\x9b\xda\x6c\x76\x6d\x9d\x27\x2e\x7e\x7f\xf4\x65\x06\x71\xf1\x97\x1b\x26\xb2\x76\xc5\x05\x7a\xbc\x59\xb0\x16\xd8\x19\x0b\x6c\xa7\xfb\xb9\xf7\x5b\xca\x68\xda\x03\xab\xa6\xbb\x30\x10\x1b\xbf\x69\x53\x0f\x2c\x10\xe7\x1b\x62\xf6\x55\xab\x6c\x10\x1b\x6e\x0f\x26\xdb\xaf\xa8\xf2\xa1\xc1\x73\x6f\x6e\x23\x80\xec\xa1\xe5\x4c\x85\x39\x95\x41\xc7\xfc\x33\x8f\xc9\x60\x4f\xb8\x82\x06\x14\xf8\x0e\x78\x1e\xf3\xcd\xed\x99\xda\x94\x0b\x60\x8f\x2e\x5a\x24\x7b\xfd\xf2\xd3\x9b\xef\xbb\x1d\xb8\x31\xc6\x42\xd1\xe7\xf1\xb4\x69\xd1\xc2\xa7\xd8\x69\xf6\x3f\xad\xc0\xd4\xb0\xe7\xd3\x74\xd6\x75\x97\x89\x88\xbd\x9c\xc1\x5c\x08\xfa\x4c\xcc\x9e\x89\x84\x9d\x94\xe1\x5c\xe8\xf9\x8a\xdd\xa3\x2f\x8f\x89\x2d\x6f\x3e\xd9\xec\xf7\xa3\x9e\x30\x37\x52\x19\x69\xd3\xdc\xde\x08\x18\xb9\xa9\xb9\x7d\x59\xce\x38\xf3\xe6\x42\xd1\xc3\x0c\xe7\x09\x0d\x6e\x69\xb1\xf9\x3f\xc6\xde\x24\x69\x77\x9f\x4b\xee\x9b\x6b\x15\xdf\x0e\x8c\xbe\x89\xa8\x99\xc7\xf6\x1e\x40\x02\x70\x68\xa0\x52\x45\x59\xda\xbf\xe3\x3d\xbf\x04\xf8\x5e\x85\xe2\x7f\x3d\x78\x06\xe4\xc3\x06\x24\xd1\x9c\x3c\x4d\xa6\xbb\x3c\x5f\x92\x4b\xdb\x86\x9e\xb3\xb8\x05\x36\x44\xf6\xd5\xa9\x7d\xeb\xba\xcd\xa6\xae\xbd\xf9\x6a\x6c\x79\xfa\x33\x89\x13\xdb\x90\x73\x95\x74\xd8\x26\xc9\xfd\x21\xd5\x60\xc3\x57\xa7\x62\xc7\x4d\x05\xfb\xc3\x3c\xb3\x09\x7b\x07\xaa\x27\xb6\x87\xc7\x49\x4f\x4f\x82\xbb\x64\x0f\x36\x15\xec\x4a\x5e\xde\x22\xaf\x67\x6c\x6d\xf8\xe9\x5e\x90\xe6\xfe\x43\x83\x7d\x7b\xe2\x57\x49\x6d\x99\x14\xfe\xf2\xed\x48\x6c\x17\x03\xee\xf6\x94\xaa\xb2\x58\x6f\x38\xe9\x1e\xe6\x90\xfd\x87\x06\xfb\x26\xa1\xfd\x65\xcc\x6c\x43\xc6\x7d\x63\x66\x6c\x43\xc5\x59\x4a\x87\xdb\x10\x71\x7e\xde\xbf\x4d\xf1\x3b\x90\xfb\x7a\x6e\x00\x7f\x3b\xd6\xf5\x0e\xb0\x92\xd2\xc9\x37\x34\x75\x81\xd0\xd3\x86\xa6\x2e\xe8\xe5\x02\x92\x2b\xd3\xef\x86\xa6\x4e\x7e\xcc\x6d\x00\x39\xf7\x47\xff\x61\x6d\x79\x5d\x13\x80\x4c\x28\x68\x93\xd7\x2e\x28\xba\x23\x2a\x54\x4c\x81\x1b\x39\xf6\x84\x9d\xb2\xe1\xa7\xaf\x04\x9b\x36\xfc\xf4\x9d\xa9\x68\x47\x85\x4a\x78\x2d\x80\x61\x49\x14\xed\x48\x62\x67\xd4\x91\xe6\x0f\xec\xe7\x3f\x42\x5d\x53\xe7\x49\x97\x40\x5b\xe4\x73\xab\x63\x45\x74\x18\xa2\xda\x89\xc4\x0e\xf6\xe5\x36\x10\x5c\xa4\x86\xb5\x09\x4d\x3b\x42\x72\x9b\x0a\xf4\x9c\xb4\xf5\x51\xd3\x61\xed\xed\x44\xbd\x82\x5a\x60\xe0\x37\x07\x7d\x50\x03\xbf\x4b\x5e\xfe\x0d\xf1\xbc\xcf\xda\x2a\x94\x4a\xd1\x02\xc0\xaf\xd7\x7b\x3b\xf9\xeb\xf3\x38\xb3\xb6\x01\xe0\xee\xb3\x8e\xbe\x64\x2a\xa2\xb2\xd8\x54\x9e\x47\xc0\xea\x4e\xe8\xfe\xbe\x6a\x13\x53\xb1\xd7\xb9\x28\x08\x6a\x18\x53\x79\x9e\x99\xe2\x37\xa1\xe7\xc0\x54\xbb\x01\xc0\x91\xfc\xa2\x8d\x92\x9c\x38\xa8\x76\xbe\x95\xf6\xf2\x65\xee\xcc\xb3\xb2\x7c\x6f\x03\xc1\x55\x79\x33\xdb\x00\x70\x7f\xb0\x96\xb7\x01\xe0\x24\xa7\xdb\xce\x77\x5a\x7a\x29\x62\xdc\x06\x80\x5b\xc4\x79\xb1\x0d\xfc\x36\xf1\xf6\x6c\x03\xbf\x4b\x5a\x90\x3b\x13\x6e\x4f\xba\x12\x54\x6b\xaf\x5a\xf8\x3b\xb6\xb5\xf3\xef\xd8\xd6\x36\x64\x9b\x83\x26\x20\x43\xb6\x59\x75\x0b\xdb\x90\x6d\x52\x32\xe3\x56\x88\x99\x64\xc7\xad\x6a\xf2\xe4\xe6\xd4\xf8\x2a\x30\x26\x6b\x42\x37\x64\x9b\x13\xd9\x60\xbb\xd4\x3f\xee\x69\x96\x72\xc0\xe6\xde\x86\x6c\x9b\xf8\xc3\x36\xa4\xf2\x59\x53\xef\x1f\x6a\x71\xbb\xb0\xd4\x90\x92\xba\x0d\xd5\x2e\x79\xfb\x77\x11\x4f\x94\xae\xb2\xb1\x53\xb9\x7b\x45\x44\x00\xa7\xce\x06\xd5\xaa\x72\x66\x57\x4a\xad\x34\x25\x19\xaa\xed\x2a\x9b\xdc\xa0\xda\xa1\x91\x68\xa8\xb6\x2b\xf2\xb5\x51\x85\x53\x75\xc2\xae\xe8\xe7\x7b\x6d\xd9\x72\xaa\x8c\xb1\x6d\xa8\xb6\x48\x5b\x7f\x83\x6a\x9b\xd7\x55\xcc\x42\xde\x55\x5b\x2f\xe7\xf1\x44\x24\x99\x17\xdc\xaf\x5b\x95\xe2\xa5\x1f\xce\xa2\x4d\xa5\xb8\x64\x70\x37\x32\x6f\x5b\x4b\xa6\xa1\xda\xa5\x40\xf0\x36\x54\xdb\x44\x9f\xb1\x0d\xd5\x36\xe5\xca\xed\xa6\xda\x12\xde\x54\xa3\x4c\x96\x70\xf9\x26\x0c\x1d\xf4\x65\xda\xa7\x21\x8f\xbf\x62\x13\x8a\x5e\x5a\x54\x0d\xd5\x36\x63\x9a\xfe\xe7\x29\xdb\x00\x6f\x1d\x5a\xcf\x0d\xf0\xd6\x81\x7f\x67\x37\xea\x0a\xa6\x2e\x69\xdd\x58\x4c\x87\x9b\x62\xf1\xa1\x49\xda\x80\x6e\x2d\x78\x31\x37\xb9\xe6\xaa\xb8\xdb\x06\x70\x8b\x32\x4d\x36\x51\x6a\x91\x37\x6c\xc0\x6d\x26\x9c\xb8\xfb\x95\x46\x91\x65\xba\x3b\xdc\x30\x7a\x91\x14\x8b\xab\xbc\x66\x1b\xb8\xad\xd2\x95\xde\x06\x6e\x6b\x94\x05\x01\xb8\x95\x80\xcd\x06\xdc\x46\x75\x01\xd1\xbb\x6d\x1d\xf9\x52\xf1\xcc\xc7\xf9\x42\xd1\xeb\xd1\x1e\x7b\xce\x82\xb7\x74\x03\x70\xb7\x3a\x21\x8a\x6e\x8d\xa8\xfa\x1e\x10\x20\x68\x69\x32\x70\xbb\xe4\x65\xdd\xe3\x2b\xa1\xc1\x9d\xb1\x4f\x05\xf8\x73\x8a\xf9\xb6\x01\xdc\x26\xb6\xdc\x7d\x42\xd0\x7d\x4e\x02\x62\xdb\x00\xee\x5a\xb2\x2b\xa8\x00\x77\x1a\x8c\x54\x80\x97\x73\x25\x5b\x6e\xc6\xd4\x16\xcb\x0d\xe5\x62\x5b\x84\xee\x45\x77\x41\xf6\xa7\xa9\x95\xf6\xac\x92\xad\xda\xca\x1b\xaf\xf5\x64\x59\xed\x3f\x00\xee\x06\xe0\xbe\x38\x8f\xb6\x01\xdc\x7a\x96\xc6\x87\x25\x55\x53\xf0\x83\xe4\x0f\xd9\x49\xdb\x00\x6e\xcc\xea\x01\x06\x70\x6b\xd0\xf7\x46\xcd\xed\x55\x3f\x7a\x20\x38\xd1\xe2\x02\xc0\xed\x1a\x70\x54\x7e\x9f\x45\xcb\xc0\x6d\x7a\x01\xcd\xdb\xc0\x6d\x17\x5b\xd1\x46\x3b\xdd\x6b\x98\x18\xb0\x5d\xca\x72\xda\x84\x94\xa5\x60\xb6\x01\xb6\xbe\x68\xcb\xc3\xae\xc9\x55\x0c\xbd\x96\xa0\x09\xf5\xfd\x9d\xd9\xb4\x0d\xb5\x46\x95\x2d\xee\x97\x12\x38\xf5\x4b\xaa\xbd\x23\x05\x8e\xdb\x10\x6b\x89\x54\xf9\x6c\x43\xab\xa5\xa9\x5f\x1a\x5a\x8d\x79\x6a\x6b\x10\x90\xe5\x4d\x18\x5a\x6d\xaa\xb9\xd9\xef\x55\x22\x5c\xa7\x3d\x36\xfd\x8a\xd9\x77\x8b\xa4\x7d\xea\x3f\x1b\x9b\xaa\x30\xdf\x86\x56\x73\xc4\xad\xb7\x0d\xad\xf6\x42\xb5\xec\x9e\x5f\x0d\x88\xcc\x11\x92\xb9\x1d\x51\xb9\x6d\x88\x75\xa9\x42\x60\x1b\x62\xad\x55\x8b\x83\xa1\xd5\x25\x31\xa5\x4d\x85\xb7\xf2\xcd\xb6\xc2\xc5\xb9\x1e\x1a\xbb\x3d\x21\xab\xd1\xf3\x4c\xe6\x20\x8d\x56\xd0\xaa\x3b\x77\x79\xd9\x62\x06\x40\xa1\x4d\x1c\xaf\x1b\xa4\x9a\x35\xa2\xc4\xbd\xa6\x05\x10\x3d\x74\x55\x95\x6c\x88\xd8\x83\xee\x6e\x48\xb5\x28\x5b\x6b\x1b\x52\x6d\xaa\xa2\xdf\xeb\x66\xec\x1d\xfb\xda\xd0\x6a\x73\xa0\xeb\xad\x0a\x6e\xb0\xe9\x36\xa4\xda\xbc\xd0\x86\x21\xd5\x5a\x83\xee\x89\xc0\x32\xf9\x92\x7b\x5d\xd5\x41\x25\x00\x6c\x78\xd7\xb2\xe6\x36\xb4\xd0\xeb\xd0\xd1\xe8\x63\xff\xcc\x99\xff\x3c\x7d\x23\x93\xee\x65\xf3\x22\x93\x5e\x05\x9c\x0c\xc0\xb6\x81\x97\x7a\x6f\x86\xab\x60\x98\x81\xd7\xa6\x20\xd7\x86\x8b\xbd\xe2\x56\xd9\xe2\x62\x27\x8c\xb1\x37\x95\x7d\xfa\x54\x80\xd7\xae\xe1\x4a\x11\xf7\xd4\x10\x01\xb8\xae\x73\x77\x1e\x5f\x0f\xb4\x7f\x67\x82\x6c\xf2\xb6\x55\x8a\xb3\x09\xfd\x56\x82\x1d\xfb\x17\x07\xbb\x2c\x43\xf2\xb6\x13\xc9\x59\x9b\xbc\x6d\x64\x44\x93\x73\xca\x02\x29\x6c\x79\x88\xfa\x12\x5b\x54\xaf\x9a\xd5\x93\x9c\x01\xd7\x08\x80\x4b\xce\xfd\x02\xe8\xc9\x11\xf2\x75\xb6\x7a\x27\xe7\xe8\xca\x66\x11\x25\x67\x80\xb5\xee\xaa\xf3\x3e\x5d\x65\x8b\x0c\x24\x67\x60\xb5\x38\x73\x6d\x24\x67\x60\x35\x3d\x36\x89\x27\xe7\xae\xc2\xde\x4c\xba\xb6\x4d\x4d\xe1\xb4\xfe\x66\xbc\xa0\x05\x96\x9c\xbb\xf5\x08\x84\x43\x93\x43\x0a\x3d\x27\x9e\xc2\x00\x6b\x0a\x0f\xff\x01\x58\xe3\xe2\x5c\x08\xd6\xfd\xf9\x0f\x07\x4c\xa2\x5d\xfe\x0b\x73\x27\xda\xed\xaf\x80\x2a\x56\x6b\x72\x1e\x09\xa2\xa4\xad\x5b\xb2\x74\xde\xb5\x81\xd7\x16\x16\xcf\xf6\x69\xa2\x53\x8b\x9d\x9c\x57\x89\xa2\x5a\x4a\xc2\xdb\xb9\x9a\x59\xfe\x41\x4f\xe9\xbf\x8c\x2f\x4b\x07\x4d\xee\x23\x58\x9f\x83\xf7\xee\x3f\x4d\x0d\x5b\x60\x93\x3b\xf9\xd9\x43\x49\xc6\xc9\xa9\x4a\xdb\x52\x4e\x79\x6a\x72\xb4\xa1\xe7\x4e\x2e\xdc\x8a\x65\xea\x6d\x93\x03\xd8\xe2\xc0\x4a\xee\x57\x8e\x76\xe0\x3d\x9d\x1c\xed\xa5\x5a\xd7\xe4\xc2\xcd\x59\xa7\x7a\x35\xb9\xf0\x4b\x73\x80\x5e\x11\xfa\xb7\x58\xab\x65\xe3\x77\xff\x0a\x9f\xbe\x88\x7a\x06\xa8\x76\xab\xa7\x86\xaf\x56\xa1\xe9\x1e\xeb\xee\x51\xcf\x09\x10\x94\xe8\x5b\xc4\x4f\x6b\xc2\xf3\x4e\xa3\x04\x37\xb9\x3e\x08\xd7\x3b\xda\x67\x08\x37\xc2\xca\x99\x1c\x21\x5f\x48\xf1\x92\x03\xe1\x22\x92\x93\x1c\xa4\xec\x35\xf1\x14\x68\xa9\x13\xaf\x49\x2e\x7e\x19\x4f\x6a\x77\xec\x9f\x23\x8f\x56\x46\x9c\x35\x85\xa7\x88\x5f\xd6\xd3\xa3\x33\x48\xec\x2c\x6a\xc9\x3c\x59\x2d\x08\xe8\x26\xa7\xb0\x6f\x6a\xf3\xdd\x6a\xd1\xd7\x0f\x16\xdf\xf8\x10\xb3\xf7\x39\x23\xf7\x39\xe8\xd7\x8b\x62\x32\xb9\xf4\x31\x0b\xab\x87\xa5\x5b\x9b\x83\xb6\x5e\x72\x22\x67\x6f\x8c\x07\x34\xd6\x6b\xe5\x8b\x29\x29\xfb\xe7\x8a\xea\x6b\x87\x7f\x6d\xcf\xb7\xd3\x57\x90\x60\xf3\x8f\xce\xef\x6c\xd1\xb3\x90\x60\x23\x73\x28\xb9\x24\xad\x11\x9d\xc7\x3b\x78\x79\xe2\xa4\xac\x3f\xbe\x94\xa1\x60\x2b\x59\xb2\xad\xcd\x7f\xb4\x20\x7f\x35\x1b\x83\x2f\x62\x48\x38\xfb\xe7\x2f\x8e\x99\xe4\x72\xf8\xdd\x1d\x7f\xe7\x65\x27\x97\xe9\x0e\x1a\x20\x14\x72\xc7\x57\x5b\x4c\xf7\x91\x97\x9a\x3f\x72\xe5\xa0\xff\x49\x02\xad\x74\x4a\x72\xb2\x83\xd3\x16\x4e\x9d\xa0\xa6\xca\x4f\xc9\x83\x01\x90\xcf\x34\x46\x54\x38\x64\xba\x90\x01\xe4\x0c\x4d\x6d\x72\x84\x7e\x51\x38\x4e\x4e\x00\x59\x53\xa3\x01\xe4\x8a\xe7\xcb\x68\x70\x6c\xa2\xe4\x73\x10\xfa\x0d\x8b\x0e\x62\x00\xf9\x07\x2d\xb1\x95\xef\x44\xa2\xe1\x5a\xae\xda\xde\xab\x89\xe0\x53\x60\x5b\x1a\x52\x00\xe5\xac\x09\x15\xee\xf5\x35\xb5\x35\xbe\xdc\x04\xdd\xf1\x39\x5d\x1b\x91\xfe\xe4\xca\x47\x30\xbc\x78\x0b\x85\x38\x83\x3a\x68\x59\xbf\xbf\x4a\xb9\x09\x5f\xa4\xa9\x26\x67\xc0\xb9\xbc\x2f\x6f\xf7\x97\x0a\x9b\xde\xb0\x81\xe7\xd2\xbc\xfe\xa7\x5a\x75\xf2\x6e\xc8\xdf\x76\x89\x61\x27\xf5\x35\x4d\xb4\x06\x9e\x4d\xfa\xd7\xb6\x3e\x1d\x86\x45\x57\xae\xc4\x54\x26\xed\x32\x00\x9d\xd2\x50\x9b\x90\x56\x29\xfa\x8f\xec\x96\xca\xf3\x1e\x32\x75\x2f\xd2\xf7\xe4\x00\xd1\x51\x53\xa0\x40\xf4\xcf\x3b\x8f\xba\xda\x2d\x47\x41\x83\x22\xb9\xf6\x95\x20\xea\x4b\x51\xb1\x5d\x97\xfe\xb7\x69\x2e\x76\xfd\xf7\x29\xee\x75\xee\x08\xe5\x5a\xd4\x02\x42\x5e\x77\x54\x6b\x9a\x2c\x73\x5a\x43\x88\x38\x0e\xfa\xe0\x21\x4e\xcf\x93\xaa\xf7\xe4\x9a\x18\x74\xf9\xde\xa0\xe6\x28\xd3\x82\x30\x71\x7c\x19\xc2\x86\x9a\x73\x54\x1f\x15\x6a\x56\xaf\x51\x6e\xf7\xd9\x02\x7d\x6c\x5a\xd0\xb1\xcc\xd5\xa3\x0c\x35\x1b\x37\xb7\x6d\x85\xdb\x1b\x1a\xd3\x86\x21\xe7\x1c\xd5\xbf\x85\x9c\xad\x6f\xe9\x8c\x7c\x82\xab\xc4\xce\x92\x43\x1f\x3d\x6e\xde\x5c\xff\x2a\x51\x65\xf6\x28\x3c\xac\xf7\xdc\xa9\x37\xa8\x6a\x8d\x7d\xe7\x1c\x74\x6d\x48\xe2\x35\x5e\x09\x0f\x93\x3a\x9a\x9c\x21\xe8\x9c\xd4\x23\x4e\x25\xf6\x98\x38\x43\x92\xeb\xfb\xf3\xf6\xd3\x4f\x0c\x45\xe7\x9c\x39\x63\x10\x3f\xd3\x53\x0e\x1c\xb5\x5a\x6e\x0c\x45\xa7\xaa\xc9\x6f\x5c\x66\xd5\xad\x71\xfd\x85\x88\x97\x7a\xeb\xa0\xa6\x44\x8b\xcf\xa7\x9e\x06\x82\x48\x6e\x7c\x19\x4c\x0f\xdf\x72\x7c\x1a\x1b\x9d\xfe\x3f\x78\x76\x2d\xc3\x03\xa4\xa9\xd9\xd2\xd0\x74\x4e\x41\xad\x95\x7e\xb4\x8e\x84\x55\xb5\xa9\xb5\x84\xc6\x07\xef\xf3\x37\x92\x4e\xee\xf9\x55\x8d\xcf\xb9\x4a\xde\xb6\x04\x72\x46\xe9\x43\x59\x6d\xa6\x37\x3e\x37\x79\x15\xca\x94\xe4\x0c\x55\x97\xf2\xf7\xa5\xe0\xb9\x55\x79\xaf\x5e\x8b\xa2\xca\x51\xb7\x36\x50\x5a\xb4\x00\x3c\x57\x43\x01\xad\xb0\xe4\x00\xde\x45\x9f\xe4\x37\x87\x7a\x72\x0f\x49\x4e\x7a\xb9\x0f\x3e\xb3\xc4\xcb\x31\xe0\x5d\xdb\x66\x90\x00\xbc\x8b\xb6\x24\x93\x2e\x1b\xc2\x80\x77\x8e\x1a\x16\x70\xa7\x57\xd9\x5e\xe4\x70\x17\x59\xbc\x2f\xa5\x35\xfa\x18\xef\xb5\x68\x77\xe1\xa5\xbf\xca\x02\xa1\xeb\xbd\x97\x7b\x67\xa9\x4d\x14\x5f\xd7\xa4\xa3\xaf\x72\x14\x45\x48\xc9\xbd\xd0\xcb\x15\xb5\xc4\x00\x9b\x6b\x74\x74\x2a\xab\xab\x96\x9b\x97\xaa\x62\xd9\x83\xef\xe5\x60\x79\x35\xd9\xbd\x0c\x75\x4d\x5b\x5f\x65\xf5\x2b\xdb\x8a\xb0\x31\x05\x3d\xc9\xcd\x5b\x4e\xf7\x6a\xf1\x98\x97\x87\x06\x4a\x81\xe4\x0c\x8c\xe7\xa6\xc9\xff\xe3\x4c\xa7\xda\x35\xb9\x09\xef\x90\xac\x43\x03\xe4\xb9\x69\xca\x87\x72\x2d\x17\x5a\x3b\x51\x90\xd2\x54\x82\x4a\x5a\x93\x05\x72\xf2\xb6\xd3\x5c\x5a\xba\xa9\xa6\x6e\x9b\xb7\x60\x80\x3c\x3f\xb2\xde\x0c\x90\xe7\x63\x3d\xce\x8f\x7b\x27\x73\xed\x75\x09\x38\x28\x6f\x49\x6e\xc1\xbb\x22\x0b\x87\x10\x72\x1e\xb4\xcb\x80\x79\xee\x7a\x82\x45\xa5\xa9\x06\xff\x92\x56\xb6\xce\x33\x33\x65\x69\x72\x5e\xdf\x12\x26\xc3\x65\x41\xba\x11\x78\x97\xab\xff\xee\xb3\xeb\x13\x0e\xed\x7c\x4b\x03\xe6\x2d\x0b\x51\x18\x30\xcf\x5d\xb6\xdb\x9a\xdf\x14\xa2\x6b\x7f\xdf\xba\xa9\xdd\xfb\x43\x15\xbc\xef\xfd\x8b\x70\x81\xb7\xb8\x29\x4d\xd2\x64\xbf\xbf\xf2\x49\xbd\xd7\xfd\x49\x09\xc9\xbe\xdc\xbf\x04\x83\x79\x07\x86\xcc\xcb\x14\x32\xdd\x9f\x3c\x56\xe0\xdd\xee\xef\x3d\xc8\x0c\xd8\x94\x51\x6e\xdd\xf5\xe6\xac\x53\x93\x62\xe9\x1e\x56\x29\xaf\x36\x40\xa4\xac\xfe\xb6\x25\x9e\xaa\x7b\xff\x52\x87\xd3\xd5\xfe\x30\x5f\x40\xe9\x15\x9c\xe5\x51\x49\xa3\xae\x3d\x79\x07\x11\xbe\x39\x95\x92\x27\xbc\x8c\x03\x3a\x79\x77\x1d\xa5\xa4\x6d\x26\xaf\x10\xf3\x8f\xb5\xcf\x58\xf0\xee\x2b\x1f\xf5\x3a\x46\x89\x8c\x81\xad\xef\xb9\x1f\xdd\xdf\x9e\x9b\xea\xe1\xe4\x51\x4c\x0b\x16\xb0\x4e\x9e\xf0\xf2\x53\xd5\x36\x12\x54\x9b\xce\x7b\xf9\xef\x65\xeb\x2b\x1b\x04\x3b\x79\x11\xa5\x3b\xb5\xcb\xf8\xd3\x1a\x0b\x99\xf7\xb7\x4e\x69\xe9\x7f\xe4\xd0\x1e\xbe\x85\xf7\x97\x39\x01\x7d\x97\xe4\x0f\x8f\x5a\x99\x94\xeb\x25\x2f\xd4\xfe\x83\x42\x86\xce\x22\x14\xbb\x79\x12\x0f\xa5\x5e\xd7\x1d\xcd\x79\x3a\x3d\xcf\x65\x68\x3d\xbf\x4e\xe7\x5d\xe6\x84\x9d\xfe\xa2\x4d\x9d\xbc\x47\x35\xcc\xeb\x26\x70\x8f\xbc\x3c\xb2\x27\xb4\xe5\xd5\xe4\x79\xe2\xeb\xef\x69\xe0\xb7\xe2\xd3\x0d\xbd\x01\xf9\x2c\x0b\xc8\x43\xb3\xd6\x58\x9f\xbd\x01\xf8\x8c\xea\x6f\xf2\x81\x4c\x83\xa5\x23\x89\xb8\x33\xd5\xfb\xa0\x3c\xe5\x87\xad\x7c\xe3\xfa\x5b\x47\x97\xb3\x67\xb1\x90\xf9\x40\xd9\x82\x5e\x07\x34\x6b\xa4\x56\x26\x4f\xf8\x19\xad\xb9\xe4\x0f\xc5\x5a\x95\xb0\x45\xf2\x84\xa0\x5f\xf3\xf3\x27\x0f\x58\x87\xb4\x2f\x79\x03\xeb\x2d\x00\x4f\xbd\x01\xf5\x08\xc5\x6e\xf2\xe1\xe3\x99\x01\x7a\xfb\x03\xd4\xdb\x3c\x6f\xe0\x70\xa8\xb7\x49\x8e\x87\x51\xc1\xff\x5c\x91\xe5\xcf\x03\xd6\xc9\xfa\x4e\x1e\x15\xb5\xe7\xa5\x6b\x1b\x58\xcf\x2b\xf0\x2d\x22\x12\x30\x2c\xcc\x3e\xfe\x0a\xeb\x25\x6f\x60\x7d\x79\x2c\x13\x1f\xaf\x62\xd6\x8b\x9d\xe3\xe3\xf8\xc2\x9b\x6a\x85\x72\xd3\x75\xdf\x17\xb9\x56\xb5\x69\xfe\x71\xed\xc5\x91\xbc\xcb\xf8\x15\x91\x33\x15\x79\xaa\xa6\x97\xe3\x79\x0d\x9c\x2f\x1f\x39\x5a\xc0\xbc\x78\x15\xc1\x27\x4f\x68\x7a\xe9\x3b\x02\xca\xd1\x13\x4e\x3e\x21\xf7\x83\xfd\xee\x0d\x94\xe7\xa5\x37\x8f\x5a\x5a\x63\x8a\xf7\x09\xd9\x17\xaf\xf3\xec\xfb\xca\x2e\xf4\xe9\x72\xe4\xc3\xfb\x98\xbc\x2a\xa4\x7f\xb0\x07\x38\xd3\x1b\x28\x37\x39\x0f\xdb\x9a\xd7\xb1\x84\xfd\xe5\x13\x4a\x71\x67\xeb\x52\xaa\xbd\x9a\x2a\xf2\xfd\xce\x5b\x13\xcb\x51\x4a\xeb\xf3\xd5\x7b\x31\x14\x9e\xb5\x80\xfb\x5f\xb4\x6a\x18\x18\x1e\x24\x2e\xc4\xe1\x33\x34\x82\x49\x57\xfb\xc8\x52\xd4\x33\x0c\x8d\x67\xd8\x79\x92\x07\x89\xcf\x47\xff\xa1\x83\x9c\xf9\xfa\x47\x1b\x3d\x89\xb6\x25\xf9\xfc\x65\xd1\xe0\x8a\xf1\xf9\x66\x85\xbd\x5b\x4f\x74\x4b\xb2\xf0\xea\x27\x9f\x09\xd1\x4f\xdd\xe3\x73\xcc\x74\xda\x5f\x2e\x9b\xe6\x02\x45\xfb\x82\x43\x36\xf2\xfc\x24\x67\x17\x8d\xf6\x42\x39\xa2\xde\x46\x81\x32\xf2\xe5\x69\x0a\xcb\x7b\xd4\x55\xa8\x41\xe8\xb4\x5d\xc8\x3c\x1d\x52\xf0\xe4\x0b\xba\x10\x7a\xcb\x86\xcc\xe3\xd2\x7b\xa3\x52\xda\x9d\x16\xfe\x36\x57\x3d\x8a\x68\x6e\xf1\x06\xca\xb7\xa4\xa9\x67\x96\xf5\xed\xe1\x4d\x96\x5b\x15\xbe\xc0\x33\x9e\x24\x6d\x21\x14\x5f\x71\xc2\x2d\x5a\x42\x45\xf5\x50\xef\x85\x37\xcd\x17\x1d\x89\x22\x1e\xe6\xa3\x97\xdc\xd9\x4f\x7f\xd4\xf8\xab\x97\x2c\x02\xb1\xac\xe4\x91\x3b\xf3\x4d\xd7\xc6\xf9\xb4\x75\xb5\x8f\x37\x28\xeb\x7c\xe2\x63\x9a\x53\x40\xe6\x0f\xe6\x9f\xaf\x9f\x27\x42\xe3\xbb\x5e\x35\xbc\x37\xff\x25\x37\x3f\x79\x03\xee\x45\x5e\x29\x5f\x2f\xad\xd2\xd6\x3a\x24\xd0\x5e\x8a\xc8\xeb\x92\x37\xd0\x5e\xbc\x06\x86\x81\xf6\xd8\xb5\x5a\x1f\x9e\xf4\x31\x67\xd3\xff\x97\x55\xf2\xd5\x70\x6d\xf8\xe7\xb1\xe3\x3d\x91\x70\x72\x52\x92\x87\x5e\x8d\x4c\xdf\xe4\x0d\xb8\x97\xa8\x65\xa2\x5d\x6d\x80\x33\xf1\x1b\x70\x2f\x72\x20\xf9\xf6\x95\x62\x55\xdd\x5b\x7e\x6a\xfd\x3f\x0f\x88\x5e\x9a\x4a\x1a\xf9\xce\x45\xf7\xfe\xa6\x7b\x3c\xdb\xde\x40\xbc\x29\x93\xda\x96\x3d\x77\xd2\xd4\x67\x20\xbe\x44\x0d\xaf\x23\x85\x9e\xe6\xc6\x67\xe9\xfb\x07\x68\x35\xc5\x19\x88\x2f\x5b\x13\xfc\x51\x3b\x7b\xee\x14\xd0\xff\x98\xf2\xfb\xe7\xb4\xf0\xda\x63\x4e\xaa\xa4\xee\x48\x55\x36\xe4\xce\xc9\x93\xe3\x9d\x70\xdd\x79\x54\xce\x46\xd1\x75\x27\xed\xd6\x7d\x11\x46\xcc\x7a\x26\xf3\x43\x67\x30\x9e\x37\xf0\x5e\x36\x28\xc6\x8f\x8f\x1f\x4a\x8b\xff\xf8\xaa\x70\xf5\xf5\x0c\xc4\x97\xac\x49\x00\x85\xb3\x5c\x74\x35\x7b\xde\xac\x69\xcb\xc0\xfb\x7d\x3a\x14\xce\xf2\xa3\xf3\x3e\x5f\xb4\x06\xba\x01\xf7\xf4\x68\xf1\x87\x3e\x2d\xe3\x55\xf5\x80\x76\x37\xd5\xa6\x4f\xe2\x47\xd3\x94\x01\xf7\xe5\xb1\x7b\x3d\x2a\x67\x79\xa9\xbd\x84\xfc\xf5\x7d\x9f\x4f\x04\x12\x44\xea\x0d\xbc\x97\xa2\xfe\xf5\x50\x97\x40\xd4\xc3\x3f\x28\x14\x26\xae\xfb\x7c\x89\xac\x95\xa7\x40\x9d\x8c\xb0\x7d\xf2\xcf\x9d\xa6\x27\x56\xb6\x87\xd0\xbc\xc8\x4c\x30\x74\xbd\x91\xcc\x4d\xfe\xf9\x48\xae\x35\xbd\x1e\xca\x33\x3f\xa7\xa6\x85\xe7\x17\xd5\x23\xed\x13\xb1\x79\x4e\xc7\xf5\xe9\x5f\x91\xb8\xd3\x22\x25\x69\xff\x8c\xbd\x4d\xab\x0c\x71\xf7\xae\x09\xce\x10\x77\xa9\x8e\x36\xbc\x1f\x89\x07\xae\x30\xff\x51\x9e\x41\x47\x91\x3c\x21\xef\xbe\xe9\x4b\xef\xc7\xfc\x29\x93\xe6\xbd\x3a\x06\x2f\xb1\x0d\x0f\xea\xae\x7a\x2b\x2f\x71\xa4\xa2\xa3\xdf\x8b\xd1\xf1\x50\xf8\xf7\x23\xbb\x5e\xda\x63\xdf\xaf\xca\x5c\x43\xa3\x3c\xc9\xa8\x9c\x10\x28\x10\xbb\xf3\x13\x95\x36\x2d\x8a\x54\x4c\xcb\x45\xed\xd1\x28\x6f\x32\xe3\xe6\x55\x63\xdc\xfa\x36\xf3\x8b\x1d\x69\x82\x37\xc4\x5d\x8e\xfd\x3f\x3f\xae\xa3\x42\xdf\x99\x64\x08\x6a\x34\x4e\x95\x0a\xf2\xcc\xf3\xe3\x38\x52\x4f\x33\xe4\x5d\xba\xbe\x3d\x12\x64\xe8\x5e\xfc\xc0\x81\x73\xed\xf3\x16\x26\x99\x82\xa7\xb5\xe8\x72\xab\x87\x2e\xe6\x24\xfd\x27\x62\xf3\x9f\x4e\xa6\x27\x05\x75\x3f\x9a\x7d\x0d\x75\x97\x3a\xf4\x1f\xc4\x1f\x45\xe7\x5e\x0f\x8b\xe5\x3d\xfd\xf3\x32\x61\xa0\x3c\x1d\x3b\x79\xd1\x0d\x34\x71\x51\x3c\xdd\xf1\xb0\x79\xd4\xc9\x1e\x01\xbe\x75\xad\xb5\x0d\xe8\xf6\x00\xf2\x28\x4b\x01\x40\xee\x64\x0d\x2c\x92\xeb\x64\x3d\x1e\x89\xf2\x29\xae\x9c\xe4\x4f\xe1\x74\x3b\x60\xdc\x43\x6f\x46\xa9\x74\xf2\xfb\xbe\x0e\x94\x99\x93\xdf\x70\xfa\x68\x31\xa3\x78\xfa\x00\xae\x4d\xf7\xc7\xcd\xe3\x01\xe0\x43\x43\x4b\x00\xbc\x24\x51\xd4\x26\x2f\x7a\x33\x2d\x1d\x06\xbe\xcb\xa3\xa9\xf9\x50\x9b\x85\x39\x35\x31\x42\x6d\xa6\x00\x9e\x27\x44\xfe\x44\xb5\xd2\x3e\xff\x83\xc7\xd4\xef\xaf\x58\x5e\x9f\x7f\x23\x4e\xa8\xc9\x71\x7f\x3a\xcd\x0c\xa9\xe0\x7e\xfb\x1b\x83\xbb\xfe\xc6\x69\x75\x79\x29\x40\x71\x56\x99\x4a\x83\x83\x1b\x85\x01\x1c\x0e\x00\x5f\x93\xec\xe0\x14\x08\x97\x3f\x4b\xff\x97\x63\x4d\xc8\x32\x0f\x0e\x31\xca\xa9\xad\x46\xaa\x62\x65\xeb\xfa\x57\xdf\xa6\xb6\xdd\x2a\x51\xa8\xb8\x53\x50\xd8\xdc\xbc\xc6\xda\x43\x7d\xc6\xb9\x3f\x08\x0c\xd7\x57\x30\x10\x5e\x5e\x3c\xd5\xc1\xdd\x2a\x51\x79\x74\x03\x21\xf3\xc4\x04\x17\xbc\xff\xfe\xe7\x6d\xf8\xf0\xb9\xfd\x12\x7b\x3e\x6e\x7f\xa7\x6b\x7c\xe1\x73\x06\x55\xf0\x97\xdb\x1f\xa9\xf8\x14\x3c\xce\xc6\xa5\xfb\xf0\xed\xf1\xc6\x07\xff\xe5\xb8\x63\xf6\x04\xe5\x7e\xe3\x92\x08\xfe\x8a\x90\x0a\xcf\x86\x43\x71\xd6\xe7\xdb\x79\x07\xe4\x80\xcb\xff\x1f\x0c\x79\x97\xa6\xb7\xea\x3f\xe9\x9a\xa0\xfb\x7f\x4e\x28\xc6\x55\xf8\xe8\xcd\xa6\x5a\x65\xe8\xbb\x28\xd6\x12\x0c\x7d\x17\x84\x9c\x52\x30\xf4\x5d\x56\xd5\x16\x2c\xbf\x38\x32\x42\xf8\x04\x1a\x2b\xad\x09\x97\xc3\x4a\x58\x3e\x7c\xd4\x66\x0b\x3c\x13\x0c\x81\x37\x68\xa6\x53\x08\xd7\xf9\xb4\xab\xae\x4a\xe8\x18\x04\x10\xc2\x6f\x4b\x3d\x84\xf7\x8f\x2d\x64\x7b\x40\xc1\x21\xdc\xd4\x81\xad\x1e\x2b\x14\x5e\xd7\x9c\x38\xa0\x42\xfc\x14\xdc\x40\xc4\x21\xe2\x84\xc2\x8a\x0f\xf1\x92\xa5\x40\x91\x9d\x02\x2a\x66\x1d\x47\x4c\x30\x14\x5e\xe4\x36\x0e\xa0\xf0\xa1\xef\x12\xaf\x10\xef\xcb\x42\x1f\x48\x0c\x47\x4a\x2a\x05\x74\xcc\x2b\xb3\x40\x30\x24\x5e\x64\x2a\x87\x78\xe3\x86\x8b\x50\x76\xa0\x42\x1a\xfe\xdc\x14\xe2\x55\x6e\x7b\x3b\xef\x25\x7e\xe9\x31\x51\xd7\x58\x44\x06\x78\xef\x11\xd6\xdf\xcd\xd5\x12\xe6\x19\xe6\x48\xa0\x42\x7a\xeb\x0b\x1b\x12\x8f\x72\x63\x86\x04\xab\xb3\xbe\x85\x78\xcb\x7e\xe6\xb2\xaa\x2b\x19\x22\x9b\x91\x27\x34\x24\x5e\x76\xe7\x7d\xa4\x5b\xc3\x32\xcf\x9d\x6c\xcc\x6f\x20\x42\x48\xd7\xb1\x6e\x7d\xf9\x1f\x97\x8d\x90\x2e\x77\xce\xd4\x23\xa5\xe7\x7b\x64\x06\x47\xfa\x00\xcc\x79\xd0\xf9\x41\x1a\x35\xe1\x52\xbb\xc1\xcf\x92\xc2\x89\xa6\xb3\x95\xbf\x61\xaf\x69\xef\x00\xf2\x36\x27\xee\xa9\x00\x65\x99\xd3\x67\x25\x77\x1c\x79\xf6\x14\x32\xe4\xd6\xc0\xef\xf0\xbb\x78\x3a\x85\x8c\x26\xab\x3a\x4f\x26\x6e\x70\xee\xfb\x22\x49\x48\x2b\x33\x1a\xb3\x84\x5a\x03\xaa\x63\x5e\x4f\x80\xea\x98\xd7\xf0\x2c\xbf\x7c\xe7\xdc\x93\xf0\xb7\x27\x28\x17\xa0\x20\xf3\x2c\x6b\x81\xf0\xf7\xc0\x39\x11\x0a\xd4\x6b\x84\x7f\x83\x81\xeb\x3d\x92\xfe\xfb\x34\x66\x8b\xce\x85\x7e\x4e\x9d\x1d\x62\xf2\x88\xfd\x15\xca\xfd\x94\x0b\x6c\x16\x20\x26\xf7\x81\x67\x2d\x1f\x69\xb5\x26\xeb\xf2\x09\x4e\x06\xb5\xfb\x17\xc1\x85\xae\xaa\xe7\xd6\x19\x1f\xa2\xd4\x7b\x01\x64\x3b\x4d\xd8\xd0\x96\x05\x7c\xb0\x81\x9c\xf1\x04\x90\x0e\x84\xbd\x03\x29\x01\xa1\xc2\xce\x89\x97\x38\x54\xf1\xb4\xd3\x29\x21\x27\x0f\xc4\x04\x02\xb4\x65\x31\xe9\xc8\x8b\xa4\x48\xd7\x4d\xa1\xa2\xab\xab\x29\xa7\xa2\xab\xab\x7e\x53\x9f\x6f\x3a\xd4\xd5\xb0\xd6\x4e\x7b\x2d\x2c\x18\xd4\x9b\x21\x28\x57\xb2\x43\x80\xa0\x7c\xe9\xbf\xe6\xbe\xa9\x84\x2b\x81\x9c\x9b\x26\x8f\x46\xb1\xbf\x06\x7e\xe3\x59\x35\x61\xfd\x26\x26\x4f\xa1\x51\x45\xaa\xbe\xd1\xae\x55\x8e\xc8\x6d\x0a\xed\xa6\x37\xbc\xe7\x18\xab\xcf\x69\x4b\xe7\x5f\x2e\xa7\x57\x3d\x55\x21\x6f\x70\x5d\x20\x51\x3c\xea\x7d\x90\x28\x1e\xc9\x68\x09\x86\x9a\x2b\x29\xaf\x29\xb4\x2b\xc1\xa2\x50\x66\x68\xd7\x79\x26\x47\x66\xe8\xd0\xd2\x69\x21\xed\x4c\xcd\x49\x5b\xdf\x38\x25\x11\x22\xf4\x1b\x1b\x41\xbe\x27\x85\xfe\x49\xef\xe8\x7b\x82\x9c\x15\xf9\x0b\x9d\xa5\x59\x26\x40\xff\x58\x86\x1f\x9d\xff\xa1\xc9\xc6\xf3\xf7\x4f\x87\x03\x57\x64\x50\x12\xf9\xd6\x19\x24\x91\xab\x9f\x11\x02\xef\x4e\x77\xfb\xd5\xbf\x19\xbb\x9d\x0c\x46\xcd\x5e\x9d\x6f\x0e\x3e\x09\xaa\x92\xb6\x8c\x42\xde\x9f\x50\xf4\x0f\x06\x1b\xb4\xc6\x50\x74\x4d\x64\x55\x05\x25\x93\x97\xa8\x34\xf9\x14\x06\x19\x9b\x49\x57\xe4\xdb\x93\xd5\x17\x06\x09\xab\xc4\x37\x82\xa1\xe8\x46\xf5\x76\x0a\x86\xa2\x6b\xc2\x9b\x11\x48\x22\x4f\xea\xc3\x24\x91\x47\x99\x64\xd2\x08\xd7\x28\x87\x80\x3c\xa9\xe7\x19\x7a\x4e\x5d\x4b\xe9\x2f\x02\xf2\xa6\xa3\xf7\x37\xa3\xf3\x84\xcf\x2f\xf6\x59\x5a\xf2\x7c\xe4\xdb\xed\x6f\x0e\xa8\x80\xd2\xd8\x83\xf7\x3e\x3c\xf7\x75\xbc\xfa\x00\x8a\x8e\x1b\xdb\x3a\x1d\x4c\xbc\xe4\x58\xea\xe1\xb9\xa1\xb2\xa9\x09\x12\x5e\xf2\xac\x29\x85\xbc\x73\xb9\x94\xc2\xa1\x35\x8b\x53\xd9\x3e\xe1\xb9\xa4\xd3\x4b\x4b\xc3\x83\x7f\x4d\x9f\xf4\xf9\xf2\xb3\x81\x51\x41\xdc\xe4\xb2\x8d\x08\x85\xcb\x85\x12\x1e\x4a\x9d\x34\x39\x43\x6b\x96\x01\xbf\xe1\x15\x43\x23\x2d\x39\x15\xd4\xf1\x5a\x29\x06\xce\xe3\xb1\xcb\x0e\xa5\x59\x3c\x69\x88\xe1\x95\x6e\xb4\xce\xa7\x2b\x00\x50\xc3\xcb\x33\xeb\x0d\x51\x39\x9d\xb5\xf4\x50\x39\x5d\x9c\xee\x42\xc1\xbc\x3e\x3e\x61\xf0\x22\xcb\xdc\x00\x79\x55\x90\x3f\x40\x30\x5e\x8a\xb6\x2c\xd7\x3e\xc8\x0a\x38\x95\xd3\xed\x84\xa8\xc3\xa4\xc2\x16\x24\x17\x50\x1b\xf3\xc4\x7b\xc2\x04\x91\xc8\x86\x3a\xe1\xef\x71\x42\x7e\x61\x5e\xfa\xb6\xa9\xaf\x46\x3e\x7a\x91\xb5\x3b\xa9\x28\x1e\xba\x93\x3d\x6b\xd1\x70\x37\x20\x5e\x8b\x96\xe7\xf9\x59\xa2\xb2\x67\x26\x64\x17\x5a\xf2\x0e\xa1\x78\x12\x6f\x4a\x0a\xa7\x82\xfa\xc7\x3a\xd2\x9e\x1b\x07\xa3\x78\x27\x05\x72\xd3\xab\xfa\x10\xb9\xe9\x55\xd3\xc1\x42\x1f\x5a\xcb\xc7\xc2\x49\x38\xb8\xb7\xa8\xcb\x4c\x5f\x5a\xff\x93\x9c\x2d\xa4\xb6\xae\x23\xe2\xf4\x2d\xb4\xc1\xeb\x39\xff\xc6\x09\x26\x9e\xe6\xb0\xea\xb7\x47\xd7\xf8\x78\x9b\xb4\x88\x53\x51\x5d\xb7\xce\xf8\x9d\xbc\x1a\xa4\x34\xf6\xd2\x3f\x17\x35\x41\xe7\x6e\x68\x8d\xc8\x66\x47\x1b\xbc\xe9\x7b\x1b\xf2\xee\xe7\x0b\x50\x4d\xdd\x35\xe1\x1f\x4d\xf0\x3c\x27\x69\x07\xc1\x50\x77\x6d\x1a\x41\x24\xa4\x77\x02\xa3\x81\x84\xf4\x06\xea\x0e\xfb\xb2\x02\x2c\xa1\x33\x43\xde\x6d\x13\xec\x0d\x24\xa5\xb7\xa6\x73\xdb\xc1\x51\xe7\xcb\xa0\x2e\xd6\xc9\xcb\x09\x1b\x9a\x36\xa1\x3a\x50\x77\x57\xbf\x37\xd4\x5d\x29\xbf\x4c\xe1\x84\xbc\xcb\x7c\xb5\x78\x93\x98\xde\xd5\x2b\xf6\xc7\x18\xcb\x44\x1f\x49\x4e\x47\xd5\x2c\x45\xc2\xde\x24\xc4\xa7\x48\x72\x3a\xc5\x86\x29\x9e\xb0\xf7\x2b\xde\xb0\x14\x1d\xfa\x12\xc4\xd8\xa2\x21\xee\xda\x5f\xfd\xf7\x79\x1a\x30\x0c\x22\x49\xea\xdd\x8a\xca\x52\x74\xbf\xd8\x01\x52\x24\xdc\x9d\xc1\x85\xd1\x8d\x3f\xfe\xfb\xb4\x04\x30\xa0\xa2\xbb\x24\x27\xd3\xeb\x8c\x79\x7b\x3b\xa6\x42\x74\x64\x36\x31\x6e\xe3\x41\xdc\xcf\x7c\xd5\x3e\x43\xdc\xb1\x93\xe5\x18\xfd\xd5\x8c\x86\xfc\x3c\x45\x43\xdc\x6d\x25\x1d\x7d\xa9\x09\x91\xab\x4a\xd1\x7f\x55\xe5\xa0\xe9\xf8\x4b\x42\xec\x1f\x97\x86\x28\xce\xf1\xe2\xe6\x6b\x75\x9a\x29\x22\x21\x5e\xc9\x7d\x8e\x07\x88\x3f\xf3\x8d\xba\x99\x39\x9f\x06\x5d\x2d\x1a\x10\x4f\x75\xea\xb6\x97\xae\x4c\x91\x8c\xe8\x2f\x3f\x08\x95\x96\x29\x7e\x3c\xe3\x48\xf7\xa7\x08\xcf\x78\x9a\x3a\xe3\x57\xc2\x1b\x2f\x24\x5c\xde\x1b\x61\x95\x18\x2e\x07\xcc\xab\x3b\x8b\xba\xac\x2c\x71\xa3\xa4\x08\x20\x4f\xd8\x27\x31\x20\xa8\x09\x16\x89\xe1\x4b\x7c\x03\x2d\xc4\xf0\xdb\x77\x1e\xc3\x4d\x7c\x43\x27\x2e\xc5\xf0\xbd\x07\x75\x48\x01\xf2\x72\x08\x9d\x53\x54\x58\xfc\xc7\x96\x9f\x6a\xc3\xf3\xc7\x55\xbf\xae\xa2\x4f\xa9\x3c\xf6\x52\x44\x23\x9d\xe2\x01\xe7\x6e\x2a\xac\x1f\x0d\x9c\x27\x4d\x35\x51\xc0\x3c\x47\xb1\x74\xa6\x18\xfd\xd7\x9d\x78\xc3\x11\x36\xc3\x47\x5b\x90\x68\x14\x1d\x7d\xbb\xca\x3c\x57\x34\xa0\x0a\xe1\x59\x8a\xe4\xb3\x67\x47\xfb\x8e\xb4\x78\x92\xd4\x7d\x8a\x87\xc2\x2c\xcf\xad\xc1\x13\x7f\x67\x07\xc5\x03\xd0\x9f\x03\x6d\xa3\xaa\xb7\x59\x92\x23\xe4\xe2\x4d\x43\xe5\xa8\x91\xed\x93\xc8\x17\x01\xe7\x4a\xea\x8c\x71\xff\xbe\x36\xe0\x3c\xa9\x0f\x24\x12\x1f\x89\x3a\xc4\x14\xfe\x38\xf2\xc6\xc8\x36\xd3\x70\x4c\xe9\x8f\xff\xed\x99\x3b\x96\x6a\x54\xee\x7a\x59\x73\x82\x14\x63\xba\x3a\xca\x70\xa9\xa6\x78\x48\xc5\xfb\x54\xec\x26\xa6\x4b\xef\x25\x7f\x76\x4c\x8a\x17\xe9\x8c\x6f\x19\x24\x09\x31\xa6\x5f\x7c\x48\x6a\xb5\x39\x66\x14\x2e\x8e\x69\xfd\xd1\xc6\x0f\xd5\x51\xcb\x12\xf3\xad\x61\xd8\x44\x30\x62\xf6\xbf\xcf\x30\x84\x9e\x1a\x1e\xf2\x28\x74\x9e\xdc\xc9\x38\x8a\xd0\x9b\xc1\xf7\x9f\x62\x86\x58\x1b\x7f\x79\xcc\x37\x56\x26\x8b\x3e\xfe\x81\xd0\xa3\xaa\xbb\xb3\x3f\x91\x91\x98\xbf\x5a\x86\xad\xf6\x8d\x63\xb0\xc8\xf9\x12\xf3\x9d\x2e\xef\x33\xbc\x7f\x5c\xd5\xb2\xe1\x72\x55\xfb\xfe\x78\x7e\x43\xf3\x29\x82\x71\x63\xf9\xed\x90\x8d\x86\xe4\xd3\x50\x4f\x28\x37\x06\x43\xa9\x5d\x8a\xe5\xc6\x0a\x65\x82\x44\x12\xda\xfd\xd0\xd5\xa8\xe1\xc0\xac\x8a\xe5\x52\x56\xca\x11\x1d\x0b\x65\x87\x6a\x57\x41\x57\x84\xfc\xca\x58\xae\x43\x16\xc5\xf5\x14\x0d\xd1\xb7\xf9\xd2\x0b\x0c\xd1\x67\x99\x55\x91\x90\x79\xd2\x4c\x56\x90\x1e\xd2\xd7\xff\x23\x81\x3d\x1e\x14\xdf\x27\x15\xcc\x29\xd6\x8f\xef\x8b\xd4\x90\x58\x2f\xd2\x59\x60\xc7\x58\xc5\xdc\xea\xe7\xc4\xf4\x8b\xf5\x77\xb1\x42\xac\xe9\xbe\x09\x7d\x37\x85\xce\xd3\x9a\x53\xf3\x05\x09\xed\xbd\x6b\xab\x12\xfd\xe0\x4d\xd6\x4b\x6b\xa7\x14\xf1\x58\x29\xbb\xac\x7f\x21\xc3\x4e\xb1\xaa\x3b\x54\x29\x7b\xa5\x28\xe0\x9f\xda\x7c\x35\x9d\xd4\x3f\xba\x43\x9d\x7f\x6c\xad\x3b\xb1\x69\x2a\x3b\xa1\xf3\x3c\x37\xb6\x5e\x6c\xc8\x90\xe0\xb9\x8e\x80\x7f\xf9\xf9\x62\xbb\xd6\xff\xc2\x0b\x17\x15\x3a\xaf\xe1\x0e\xd9\x3f\x9c\x00\xb1\x7d\xfc\x49\x80\xba\xd8\xbe\x10\x72\xd3\x35\x2e\xa9\xf3\xc2\x57\x1a\x95\xfb\xfe\xf3\xe1\xb2\x8e\xb9\x08\x08\xba\xb0\x14\xdb\x47\x2f\xa5\x85\xb5\x7d\x96\x84\x96\xd2\x4f\x6e\x7c\xc9\x1e\x6a\xf3\x9b\xc6\xe8\x7c\xed\x7b\x27\xe0\x89\xd8\xe0\x1b\x22\x9c\x1a\x0f\x5d\x5a\xba\x6f\xb8\x5f\x1e\x1e\x68\x99\x53\xec\x9f\x36\xed\xd4\x9e\x8b\x08\x27\xa5\x3a\xf1\x54\x96\xff\x3c\x01\xed\x85\x03\x3d\x6b\x00\xf5\x3f\x96\xcb\x5f\x32\xe4\x99\x76\x52\x5d\xee\xb1\xd8\x63\xff\x63\x89\x20\x37\xde\x6b\xd1\x34\xc7\x40\x5a\x1a\x5c\x9d\x58\x55\xd3\xd3\xfc\xd1\x1f\x08\xab\x27\x6a\x17\x22\x95\xe5\x1e\xab\x34\x92\x13\xbf\x64\x93\x91\x13\x1f\x70\x45\x45\x72\xe2\x03\xce\xb4\x38\x44\xec\xc1\x73\x2a\x27\xde\xea\x58\xb8\xe7\xa0\xda\x1a\x70\x1e\xa1\x4c\x8b\x1a\x28\x50\xa6\xa1\xa8\x95\xe2\xf8\xc3\x6a\x14\x65\x5a\xd4\x7f\x7f\x58\x8d\x03\x5a\xbc\xa9\x3b\x40\x04\x21\x73\x67\x88\x28\x81\xaf\x39\xfe\x98\x12\x08\xa5\xc3\xa8\x94\xe2\xf3\x7d\x5b\x92\x10\xe2\xf3\xc7\xf4\xff\x5c\xf6\xd2\x63\x7e\x3c\x7f\x4c\x05\xcf\x9d\x0a\xce\xdb\x7e\xf2\x1f\xff\xff\xf1\x4d\x1f\xf4\x44\x70\x7c\xc4\x87\xe4\x48\xd0\x4f\x7c\xc8\x06\xd4\x22\xfe\xa8\xf2\x9a\x2f\x61\xc8\x3e\x36\x19\x8b\xd0\xa6\xc1\x1e\x94\x22\x09\xee\xeb\xd1\x1d\xe0\x09\xf3\x7a\x3a\x0b\xc1\x7a\xdd\x8f\xca\xf2\x20\x8b\x99\xca\xf2\xa8\x3e\x4e\x65\x79\xc2\x5d\x1a\x5f\xcc\x3c\x62\x0b\xf1\x65\x9a\x27\x3d\x22\x1a\x9a\x6f\x1e\x64\x13\x5f\xa8\x1c\xd5\x7f\x08\xb3\x37\xa7\x3b\x34\xa8\xe0\x99\x47\x40\xf3\x10\xa7\xa7\x08\x9a\x0f\x1a\xc9\xef\x75\xd8\x42\xcc\x9d\x22\x88\x3e\x6a\xcc\x82\xe8\x55\x55\x15\x5f\x3c\x17\x53\xd7\xb5\xb1\xba\xb5\x50\xcc\x5f\xa6\x1c\x6f\xd2\x10\x7d\xdc\x32\x85\xe6\x1f\x26\x8d\x21\xfa\x8a\xc4\x52\x8a\x70\xa1\x15\x1c\x46\xd1\x90\xbc\x15\x67\xd8\x16\x6c\xac\x6a\x8f\x21\xf9\x44\xc5\x75\x8a\x20\x79\x45\x62\xa2\xaa\xca\xc9\x01\x8c\x54\x95\x2b\x29\x20\x4e\xc8\x3d\xf4\xb6\x26\xb1\x34\x6a\x7f\xe2\x9c\xff\x3f\xd1\x85\x81\xfa\x16\xc8\x76\x8f\x06\xea\x73\xd3\xf0\xa1\xe0\xbc\x68\x6a\x5f\x68\xaa\x02\xd1\xe3\x82\xf4\x42\x53\x2e\x05\xe7\x1d\x6f\x5d\x5c\x7f\x4c\xd9\x14\x9b\x0f\xf2\x52\xe2\xfa\xa3\x0b\x53\x6c\x8e\x5e\x53\x8a\xeb\xae\x64\x88\x74\xa7\x48\xc1\x39\x5a\x4d\x29\x1e\xc9\xf0\x9f\x65\x51\xad\x80\xd5\x51\x53\x9a\x01\xf9\xee\xf5\xca\x17\xb2\xd9\x4e\xff\x59\xa2\x5f\xf7\xfa\xef\x0f\xab\x75\xff\x61\xb9\x6c\xf8\x5b\x34\x20\xa0\x44\x3b\x96\x83\x81\xf8\x3e\xf5\xca\x37\xdc\x26\x7a\x23\x06\xe2\xd3\xd4\x87\xdb\x7f\x3c\xe7\xc6\x17\x2f\x4b\x69\x23\x21\xa2\x29\x02\xf0\xee\xf4\xc4\x1b\x9f\x2c\x91\x8c\xb8\xff\x40\x27\x02\xef\x5a\x00\x0c\xbc\x37\xa5\xbb\xc5\x3f\x72\xd5\xa3\x01\xf7\xde\xe9\xe2\xc9\xec\x34\xe7\xb0\x31\x93\xd9\x69\xc1\x13\xa7\x48\x66\xa7\x05\x07\x44\x4f\x2f\x5b\x3c\x51\xb2\x61\xfc\x6d\x45\x3b\x8f\xe4\xe3\x64\xc3\xf8\xfb\x2f\xff\xb1\xf5\xf3\x7c\x61\x35\x1d\x79\xeb\x7e\x15\x7a\x4e\x0c\x32\x8f\xef\x3a\xcd\x9b\x55\xae\x4a\xf6\x34\x2f\xbc\xd6\xe2\x9c\x66\xfa\xf6\x3c\xec\xb9\xe9\xd2\x8a\xa8\x24\x1b\x54\x11\xde\x80\x94\x4e\xae\x8a\x3b\xcb\x63\x92\x8b\xcb\xda\xb1\xd8\x63\xbd\x20\x33\x11\xa6\x85\x18\x14\x8e\x92\xb4\x6e\x42\x01\xa2\x9e\x29\xfd\x62\xe0\xaf\x3a\x03\x4a\x90\xac\xff\xbf\x36\xb2\xe4\x25\xb1\xef\x63\x72\x24\x92\x47\x20\x61\x49\xc9\x7a\x7e\xcc\xa4\xfa\x26\xaa\x39\x14\xc9\x48\xe8\xe2\xed\x73\x5d\x84\x80\x4c\x7e\xc6\x24\xea\x7e\x26\x6f\x10\x42\x5a\xe4\xf6\x61\xb9\x27\x12\x47\x32\x09\x16\x69\xc1\x58\x54\x75\xe4\xc6\xf0\xe2\x3f\x12\x46\x14\xbd\x48\x30\xed\x23\x03\x94\x12\x6e\xab\x80\x63\x24\x41\x02\xb8\x82\xfe\xb3\x49\x2d\xe0\xc3\x4f\xfb\x06\xcd\x85\x84\x13\x2c\xfb\xa8\x4f\xa4\xb4\x71\xe1\x44\x5d\x09\xea\x93\xad\x23\xe1\x1b\x66\x11\x4f\xfb\xe2\x12\xb4\x0a\x52\xb2\x9e\x1f\x93\xde\xfd\xbe\xb4\xcb\x3b\xe9\x6a\xd6\xfb\x9d\xbe\xd6\x86\xc3\x54\x3d\xee\xb8\xad\xba\x14\xa4\x53\x76\xb7\xce\x1e\xe5\xb2\x94\x21\x04\x8c\xf8\x40\xb2\xb9\xae\x5a\xc3\x93\x90\x1d\xb3\xd9\xab\x23\xd3\x41\x91\x32\x72\xb3\xb9\xae\xda\x83\x81\x9a\x21\x03\x9c\x5e\x57\xb2\x91\x9e\x70\x8b\x67\x73\x5b\xf5\x4c\x7f\xc9\xe6\xb6\xea\x99\x04\x83\x6c\x6e\xab\x9e\x97\xfe\x7b\xae\x83\xdd\xe9\x7f\x9b\xcd\x54\x5f\x95\x21\x01\x6c\x55\xd7\xb5\xd9\xac\xfd\x8d\x4c\x23\x65\xb8\x01\x1b\x19\x38\x19\x6e\x40\xe5\x27\x67\x79\xb1\x4a\x99\xc8\x92\xa7\x0c\x3f\xe0\x0b\x14\xca\xe6\xc5\xea\x8b\x62\xa5\xec\x99\xec\xe8\x86\x19\x7e\x40\x24\xef\x53\x36\x17\xd5\xee\xc6\x71\x93\x32\x45\x1b\xaa\x59\xc8\xc7\x3d\xe5\x4e\x41\x7d\x26\x4f\xa4\xe8\x85\x79\xd2\x57\xcf\xd1\xa4\x70\x52\x8b\x9b\xcd\x35\x15\x44\x5b\x90\xcd\xc9\x14\x54\xb4\x97\xcd\x79\x14\x56\xe7\x85\x98\xf3\x28\x2c\xc0\x61\x36\xe7\x51\xd0\x9a\x9d\xcd\x71\x14\xe4\x8c\xc9\xe6\x38\x0a\xaa\x14\xce\x81\xa9\x6a\xe8\xbc\xce\x16\x6f\xcb\x9c\x45\x01\x86\xce\x94\xcd\x51\x14\xd6\xa3\x23\x69\xd9\xa3\x23\xa7\x6d\x31\xd1\xe4\x48\x3b\x81\x7f\x39\xd2\x4e\x7d\x81\x78\xf9\xa0\x36\xd3\x71\x8e\x97\xf0\x78\x12\xe8\xce\xd4\x40\x64\xa7\xab\xe9\x6d\xf2\xb6\xa0\xe4\x53\x2d\x68\x46\x62\x5e\xf9\x0e\x19\x4a\x3e\x25\x03\xe4\x78\x45\x43\x61\xad\x4c\x99\xfa\x07\xf8\x6a\x52\x36\xc7\x4e\x52\x45\x4b\xc6\xa9\xb3\x87\xb6\xb0\xdc\x41\x58\x99\xda\x07\x91\x8e\x64\x9c\x3a\x7e\xe9\x3f\x2c\x77\xa0\x74\x16\x25\x9f\xae\x42\xdd\x43\x64\xf8\xe7\x44\xa5\xb2\xda\x4a\xdd\x43\x9c\x3a\x0f\xab\x7d\xea\x3c\x48\xbb\x09\x8d\x66\xea\x1e\x1a\x49\x11\x59\x7c\xf4\x4e\x77\x7f\xd8\xe2\xcb\x42\x42\xa0\x24\xec\x0c\x09\x81\xfc\xed\x99\x5a\x87\x07\xe7\x43\x86\x64\x00\x21\x24\x2b\x40\xb5\x52\x2a\xfd\x17\xc9\xef\xa7\xd5\x99\x64\x5e\x16\xe7\x6c\x0e\x99\xa2\xea\xe6\x0c\x93\x40\x53\x5b\x50\x77\x43\xed\x23\xe5\x8c\x94\x8a\x9e\x36\x4b\xe9\x8c\x37\x88\x0c\xbc\xa6\xe9\x4c\x2a\x85\xaa\x74\x32\xaa\x6e\xa7\x3f\x9a\xf3\xa5\xae\x47\xed\x34\x4b\x55\x6e\xbe\x4c\x2a\xc5\xe9\x65\xb6\xa8\x57\x25\x5a\x66\xd2\x28\x36\x0e\x82\x4c\x1a\xc5\xd6\x08\x2b\xa8\xa0\xb1\x2c\x64\x9c\x2e\xe1\x5c\x05\xa6\x04\x8d\xea\x82\x4e\xc6\xab\xab\x98\xa9\xf6\xa8\xc7\x17\x64\x92\xf4\x8d\x0a\x5c\x4e\x45\xff\x11\x4a\x25\xaa\x95\xd1\x6e\x97\x03\x2a\x93\x16\xa1\x14\xcf\x5c\x48\xea\xc4\xd5\x9a\x49\x89\x18\x84\xcc\x33\x29\x11\x0d\xff\x79\x36\x27\x4a\x3b\x6f\x10\x25\xb7\x89\x1b\x2d\x9b\x03\xa5\xb9\xad\xab\x68\x3c\x85\x39\x09\xa5\x67\x08\xe2\x1d\x91\xb0\x4c\x5a\xc4\x79\x8b\xe6\x3c\x49\x32\x33\x72\x65\x3c\x9d\x16\xd8\x78\x52\x44\x26\x57\xaa\xa4\x59\xb0\xf3\x61\x02\xa8\x92\x03\x4a\x59\xf5\x06\xf9\x9d\xaf\xd3\x31\x8b\xf3\x79\xd3\xf5\x2b\x1d\x8d\x7f\xab\x68\xce\x38\x4d\xb2\x56\x20\x9c\x26\x62\xef\xc9\xb0\xed\x05\x35\x84\x8c\x89\xec\x69\xb2\x39\x4b\x92\xb2\x43\xb2\x39\x4b\xfa\x60\x5d\xcf\xe6\x28\xe9\x03\xc8\x94\x11\x7d\xdb\x5d\xe7\x51\x6e\xa2\x09\xfa\x38\x47\xfc\x7c\xcf\xb9\xb7\x9c\x6c\x6a\x92\x6b\x1f\x0f\x10\x35\x10\xf9\x70\xc9\x8f\xb9\xb4\x66\x35\x89\xf8\xd1\xb5\x45\x14\xd0\x74\xf4\x66\x8b\x3b\x9a\x53\x24\x21\xaa\x97\xb2\x39\x44\xd2\x22\xa5\x2f\x77\xf8\x6f\xd4\x7d\x3b\xbc\x2f\x58\x3c\xd9\x9c\x20\x09\x39\xc7\x94\x3b\x24\x10\xd8\xce\x19\x72\x00\x07\xac\xca\xe6\x00\x89\xa9\xea\x48\x03\x93\x49\x0b\x84\xe4\xda\x9d\xb6\x70\x7e\x4c\xdd\x1d\x9e\x13\x75\xdf\x2e\xb0\xcc\x5b\x83\x18\x40\x10\x38\x77\x4a\xc8\x82\xda\xb9\xf9\x82\x6c\xe1\xfc\x88\x9a\xf2\x07\x9a\x00\xb2\x44\x70\x7e\x44\x30\x4e\x1e\x4a\x54\xa5\xd5\xf0\xc5\xab\x96\x20\xcb\xf1\x41\xf2\x61\x86\x08\x00\x56\xd3\x94\xc5\x15\xdf\x75\x1e\xc4\x07\x43\x5b\xf6\x7c\xf2\xca\x67\x8a\xff\xd3\xa3\xb6\xd8\xf3\x25\x7d\x43\x15\xff\x03\x9b\x33\x8e\x8f\x0c\xa8\xcf\x2a\xfe\x3f\x2d\xa3\xf8\x5f\xcb\xc7\x43\x7f\xed\xda\xe2\xf9\xf4\x76\x1f\x2a\xa0\xf5\x6d\x1f\x34\x0f\x00\xd0\xf9\xe1\xf9\x5e\x1d\x29\x7b\x72\xcf\xa9\x25\xdf\x1c\x1e\xc6\xee\x62\x5b\xb7\xda\xfd\xdd\xfa\xff\x63\x34\xd5\x64\xf0\x5c\x9f\xbf\xbc\xa9\xf9\xf9\x7c\xde\xa7\x45\xcf\x17\x01\xe1\xbb\x3e\xef\xe7\xb8\x51\xcb\x6e\xb9\x9c\x72\xdd\xf3\x73\x79\x7c\x94\x7e\x9a\x9f\x2f\x0e\x46\x8c\x2a\x9b\x53\xc4\x28\x04\x6c\xeb\x57\xdc\x87\xb7\x4d\xe5\x7f\xc1\x3e\xce\x22\x8b\x37\x72\x3a\xae\xf8\x29\xb8\xa1\xa1\x9c\xf2\xfb\xe9\x21\x68\x92\x56\x3d\x42\x1a\x27\x39\x24\x1f\x16\x80\x31\x67\xd4\x7d\xa8\x86\xdf\x6a\x47\x3f\x71\x8e\xb9\x74\xc6\xe7\xec\x6c\xba\xcf\x17\x07\x20\xba\x90\xdf\x1b\x0b\x39\xc6\x12\x8c\x00\x72\x38\xe4\x77\x7d\xad\xa7\xf7\xbc\xdf\xfb\xc0\x13\x90\xa7\xfb\x8c\x1b\x5a\x3f\x3f\x6d\x08\xbd\xfb\x8f\xa2\x4f\xa4\x2a\x59\xa9\x11\x29\x5c\x23\xe9\xe0\xbf\x28\xf5\xb8\x94\xe7\xaf\xf7\xc2\xdd\xe7\x65\x81\x98\x32\x96\x0c\x03\x46\xf8\xff\x53\x9e\x5f\xd8\x5c\x5f\x8b\x7a\x85\x24\x83\x61\xde\x77\xb2\x87\xce\xff\xb8\x9e\xd4\xdf\xe6\x2f\xe7\x2e\x7d\x69\x7e\x7a\x18\xea\xfd\xeb\x8b\x85\x92\x1a\x90\xd7\x95\x31\xda\xd4\x65\xe4\x05\x09\x08\xe9\x1a\x19\xef\x49\x90\x69\xbd\x20\xaa\xd6\xf8\x5c\x1f\x89\xfe\xdf\xc8\xaa\x53\x36\x88\xd9\x5f\xc0\x7c\x5e\x12\xb7\xd4\xd6\x0d\x8f\xce\xa5\x66\x99\x73\xc5\x2d\x35\x42\x15\xd2\xda\xba\xe2\x6e\x53\xd3\x0d\x6c\x7e\x5e\xf6\x94\x41\xcd\x58\x09\x22\xe5\xf5\x85\x44\x35\x15\x93\x29\xe1\x75\xef\xfd\x85\x49\x00\xae\x79\x7f\xdd\x40\x70\x67\x7f\xdd\x40\x43\x70\xc7\xef\x2c\x3a\xc6\xfe\xb2\x81\xb4\x38\xc0\x43\x5f\x08\xbe\xe4\x7d\xc3\x44\x08\xb0\xa7\x8c\xd0\x5b\x19\xba\xc7\xed\x02\xe8\x5d\xa5\x7c\x6a\x16\xd2\x1d\xa2\xfb\x1b\x1a\x42\x45\xfb\xf9\x5a\xc6\x27\xde\xbf\xa6\x0b\xed\x99\x5f\x47\xd7\x9e\xfb\x4e\x96\xec\xd3\x7d\xab\x8a\xd5\x79\x8a\xfb\xde\x0b\xde\xee\xa2\x3a\x86\x1c\x4f\x5d\x6b\x71\x57\x52\x44\xb9\xfc\x85\x5a\x86\x91\xb5\x05\xe1\x07\xd6\x79\x39\xb5\x08\x51\xa2\x7a\xa9\x9c\x5a\x84\x39\x57\xd7\x19\x37\x05\x60\x61\xf7\x94\x2f\x43\x42\xef\xa5\xb8\xf9\xb5\xec\x61\xcf\xba\x93\x08\x21\xfa\xe2\x44\x88\x60\xd3\x41\xf1\xbf\x52\x00\x0a\x7b\x2e\x95\x9d\xca\x20\x8b\xff\x32\x81\xb0\xf5\x8b\x32\x25\x8c\x1f\x97\xb6\xfc\xaa\x4b\x20\xb0\x5b\xfc\x25\x47\x90\xc3\xa2\xf8\x4f\x5b\x9b\xbe\x52\xfc\x25\x0f\x56\x7e\x7f\x81\x2c\xa0\x61\xe0\x14\x2f\x72\x76\xdd\x15\x6d\x6d\xaf\xab\xa9\xaf\xe7\xa9\x34\xd4\x42\x5d\xc2\x03\xdc\x2f\x1e\x42\x90\x73\xee\x22\x84\xab\x27\x32\x33\xe6\xc1\x3d\x52\x82\x58\x82\x69\x13\xca\x6d\x7d\x69\x0b\x6c\x0d\x9a\x2e\x70\xd3\x3f\x4c\xb5\xe5\x28\xb6\x95\x53\x39\x50\x4e\xfa\xc3\x7b\x26\xb3\x62\x28\x36\x6b\x4a\x2f\x01\xf7\x11\x09\x1b\x05\x26\x80\x82\x59\x52\xc4\x04\x80\x81\x58\xa8\x41\x50\xaf\x2c\x86\x62\x23\x8a\xe4\xa9\x18\x8a\x8d\xcd\xa9\x4d\xf6\x9c\xa7\x97\x41\x44\x0f\xa1\x65\x2a\x96\xe2\x10\x1b\x31\xbd\x82\x6e\xfa\x26\xff\xa6\x40\xd3\xb7\xa9\xfb\x28\x91\x52\x58\x22\x6f\x85\xd4\x86\x4e\xcc\xa5\x50\xf9\xdf\x49\xa4\x28\x91\x12\x58\x4c\x81\x02\xea\xf5\x7a\xda\x88\x6e\xf4\xd2\x1d\x08\xef\xea\xf9\xa8\x37\xf0\x8f\xce\xa3\x2a\xf8\xd5\x1d\xec\xf9\xfa\xa3\xbb\xe3\x1e\xd3\xd7\x41\x27\x3d\x9c\x6b\x12\xdb\xd8\x3a\x92\x38\x0e\xf9\x58\x25\xa9\xbc\x8c\x27\xa2\xc6\x20\x82\x75\x4a\x52\xc9\x2b\xdf\x81\x1a\x83\xc4\x08\x2f\x09\xd6\xdc\xa4\xff\xec\xf9\x12\xcb\x53\x81\x84\x5e\xf9\x78\x25\x11\xc2\xed\x3a\xaf\x81\x32\x19\x37\x89\xf4\x1d\x8d\x07\x52\x16\xf2\xd6\x79\xe2\xa9\x52\xcb\x28\x71\x55\x2f\x30\xc4\x5b\x4a\x0f\x7f\x59\x26\x0a\x8c\x7c\x4f\xd0\x69\x06\xc2\x2a\x39\x13\xc5\x32\x18\x22\xaa\x9d\xa9\x64\x04\xe8\xd4\x25\x32\x55\x75\xa4\xed\x15\x80\x72\x23\xc9\xb3\x00\x94\x95\xa2\x56\x0c\x28\xc7\xa7\xea\x2a\x85\x2d\x5e\xae\x01\xe5\xf8\x68\x5a\x01\x28\x77\x26\xf0\x62\x40\xb9\x20\xcd\x98\x0a\x40\x39\x50\xdc\x51\x32\x89\x6c\x45\x77\x20\x3f\x59\xaf\x53\x7c\xf4\x78\xdd\x4a\xa6\x72\x70\xea\x89\xac\xeb\x3e\xb8\x4c\x0a\x4a\x6b\x03\x98\x5e\x28\xe6\x1f\x1a\x74\x14\xf3\x0f\xb5\x13\x3e\xfa\x41\x5a\x6a\xa1\x98\xff\x61\xb1\x2c\x85\x32\x39\x4d\x2e\x85\xe7\xd3\x67\x20\x33\x41\x8c\x33\xc5\x80\x72\x19\x9a\x56\xa1\xd8\x1b\x53\xf7\xb3\x4f\x3b\x00\x90\xa5\x50\x1e\xd7\x74\x77\xca\xe3\x5e\x6d\x4d\xca\xd3\x78\xd7\x45\xe5\x61\xba\x26\x9e\x5d\x6c\xb4\x52\x11\x10\xc4\x4b\x5e\x2a\xe5\x50\x78\x49\x0b\x74\x7a\x13\xb7\x40\xa1\x78\x5f\xc9\x79\x85\xe2\xfd\xa9\xbb\x43\xa7\x27\xa2\x92\x62\x00\xba\x9c\x89\x81\xa2\xfd\xa9\xa1\x52\x71\x48\x11\x68\x2c\x70\xd1\x23\x23\x94\x0a\x05\xfb\x22\x4e\x28\xc8\xa1\xcb\xcd\x52\x0e\x80\x0e\x53\xb1\x95\x62\x00\xba\xc8\x3f\x5e\xa8\xc8\x5f\x1a\x74\x55\x4c\xa1\x3c\xa3\xb8\xe8\xf1\xa3\x96\x46\x99\x0f\x28\xb3\xa0\xa2\xb6\xa3\xb6\x28\xf1\xc1\xc1\x50\xda\x2d\xeb\x53\xda\x5e\xa1\xd2\x7e\xeb\xa9\xa9\xb4\xdf\xb8\x38\x0a\xf4\x78\xb3\xe8\x9e\x08\x03\xea\x9d\x53\x2b\x70\xa6\x20\xe8\xf1\xc4\xa1\x59\x1a\xf5\x2f\x4d\xe7\x99\xc3\xc3\x69\x0a\x22\x15\x40\x31\xa2\x42\x8d\x80\xd3\x42\x4f\x8d\x80\xd3\xb2\x6e\xa8\xb7\x3a\xb0\x47\x81\x54\xde\xe9\x89\xfb\x8d\x34\x9c\x29\xd8\x90\x6f\x12\x5d\x5f\xa1\x36\x00\x5d\xb9\x54\x3e\x5a\xbc\xb3\xe8\x82\x7e\x51\xda\x4b\xa5\xf3\x9c\xd8\xbc\xa5\xdf\x94\x90\x57\x63\x44\xd4\x78\x55\xff\x23\xdb\xa2\x11\xd3\xa1\x87\xd3\x32\x46\x4d\x80\x38\xa7\x8a\x21\x60\x73\xa6\xff\x6c\x8d\x1b\x4a\x55\x52\x6b\x39\x35\x01\xe1\x90\xdd\x95\x53\x59\x3f\xe6\xc6\x69\x52\x86\x58\x5e\x69\xe9\xa1\xc7\x7b\xe6\x52\xcf\x1c\x5f\xc9\xa2\x46\xd8\xf8\x48\x26\xf4\x3d\xa8\x0f\xa8\x1a\xd5\x90\xcc\x9f\x37\x45\x7d\x40\x95\x11\x31\x48\x9c\xd5\x97\x1b\x9f\xbe\x73\xd3\xdd\x5e\x18\xa6\xf9\x96\xe3\x66\x49\xca\x74\x2c\x86\x90\x53\x0f\x3a\xff\x3a\x7c\x44\x2d\x54\x94\x1e\x50\xfc\x94\x1b\xb9\x9c\x1a\x01\x7f\xc8\x75\x0a\x68\x19\xa1\xa8\x54\x1e\xbe\xfb\x5f\xeb\x07\xca\x73\x29\xa5\x94\xbd\x52\x9e\xcb\x08\x8a\xae\x6c\x2a\xcf\xb5\x9a\x94\xe3\x5f\x28\xe6\x6f\x4d\xff\xb7\x0b\x70\xb3\xfe\x37\x7f\xd8\x26\x6b\xbc\x3c\x94\x4f\xe0\x0f\x2c\xcf\x2f\x02\x60\x5e\xcf\x23\x1e\x7e\xfd\x6f\x01\x0b\x45\xe8\x0b\xb2\xe7\xe5\xbc\x88\x9b\x48\xf5\xea\x4e\x00\x67\x8f\x2b\xa5\x90\x4d\x50\x75\xee\x2b\x16\x50\x3a\x01\xf5\x01\x8d\x18\x46\x79\x3f\x6b\x51\x53\x33\x92\xe7\x0f\x0e\xb1\x42\x46\x41\x02\xf0\x95\xf7\x2b\x93\xd1\x33\x01\x94\xbb\xa6\x19\x03\xca\x2d\xc9\x5a\x35\x90\x9c\xd0\x15\x48\xc5\x00\x72\x3f\xdd\xc8\xc0\x71\x47\x78\x3e\x15\xa4\xce\x3b\x8c\x49\x85\x62\xfd\x0d\x61\x46\x39\x35\x02\xef\x9c\x5a\xe4\xa8\x11\x40\xf4\x26\x95\xf9\x11\x4c\x00\x91\x8b\x01\xe2\xba\x34\xfc\x0c\x0c\x67\x15\xd2\x94\x09\xa7\x0c\xb5\xdb\xe5\xa3\xc8\x5b\x04\xb2\xca\x01\xc1\x79\x8a\xde\xa1\x50\x27\x70\x26\x6f\x03\xc1\x2d\x69\xd2\x87\x26\x4f\xc1\xaa\x72\x00\xf0\x3a\x28\xad\xcc\xfb\x8d\x97\xbe\x1c\x54\x79\x55\x03\x72\x5e\xb2\x63\x25\xf9\x96\x03\x90\xfd\x5c\xfa\x02\xa8\xad\x6d\x59\x5d\x07\x1c\xd7\xb9\xa9\xd2\x28\x02\xc7\x86\x00\x68\xd5\x62\xea\xd3\xc4\x21\x99\xf3\x92\x6e\xaf\x04\x20\xab\x8a\xb3\x50\x2b\x10\xd5\x57\xbe\x5a\x01\x55\xcb\x97\x53\x2b\x90\xa5\x34\x9d\xca\x42\xb6\x09\xf7\x50\xa1\x4e\x60\xcb\x4a\x5f\x84\xdf\xbd\x8e\xa4\x24\x2c\xea\x48\xb2\x48\xb4\x74\x80\x80\xd7\xd0\x5d\x28\xf7\xdb\x7a\xca\x4b\xa2\xf2\xca\x28\xa0\x56\x20\x52\x5f\x5e\x0c\xfd\x46\xc5\x8b\xca\x46\x65\x6e\xea\xbf\x88\xf7\x9c\xeb\x1a\xa2\x8d\x67\x19\xa4\xfa\x7e\x69\x72\x30\x34\x6b\xc2\x6c\xb6\x05\x47\x90\xbe\x1c\x69\x04\x68\x9a\xa5\x42\x30\x75\xe3\x97\x2e\xd0\xde\x29\xf4\x5a\x36\xd9\x30\xb8\x18\x0b\xf9\xff\x72\x31\x16\x14\xd5\x32\xd3\x7b\x45\x93\x7c\x83\xaf\x2a\xb9\xff\x99\xb7\x58\x9d\xc4\x5b\x75\x24\x99\x30\x2c\x12\x95\xbc\x7f\xd1\x04\x56\xf2\xfe\x51\xd1\x4b\xd5\x82\xa7\xd5\x37\x5d\x45\x02\xb5\x91\xad\xc6\x74\xec\xd8\x32\x32\x14\xe7\x75\x87\x41\xbd\x89\x8e\x84\x0c\x05\xe7\x57\x75\xa8\xe3\x11\x4d\xab\x86\x64\x63\xc6\x9d\x5b\x1d\x35\x2c\x5d\xf7\xdb\x68\x41\xd0\x16\xaa\xea\xb5\xe4\x56\x88\xe8\x2b\xc6\x40\x35\xe4\x5a\x2b\x66\x55\x35\xd4\x5a\x11\xd9\x49\x15\xe5\xb4\x86\xe7\xa4\x7a\xf4\x5d\x70\x80\x55\x4f\xa6\x0f\xae\xde\x4a\xe2\x7e\x63\x86\xac\x90\xcf\xa7\xa4\xab\xf4\x83\x42\x67\xfc\x8b\xc4\x4d\xaa\xf0\xd2\x77\x0a\xcf\x2b\x74\x76\x0a\x7c\x55\xaf\x6a\x5c\x5e\x06\xc2\x6a\xbd\xab\x01\xf6\xf8\xca\x1c\xad\x80\x57\x4f\xde\x79\x85\xc6\x4e\xdc\xdf\xd5\xc0\x6b\x1d\xac\x53\x35\x10\x73\xc0\x49\x51\x0d\xbc\x1a\x71\x8a\x6d\x25\xc2\x36\xbc\x36\xa4\xc6\x87\x5e\x37\xea\x69\xfe\xfc\x87\x8a\x51\xd1\x1d\x10\x8e\x2b\xba\x83\x0d\x43\xa1\x82\x1a\x48\x74\xf2\x3a\xd2\x3e\x2f\xca\x6a\xa9\x1a\x68\x4d\x0a\x60\xd5\x40\x78\xe9\x9c\x67\xcf\xf7\x76\x5d\xd3\x9e\x2f\xe0\xe1\xac\x06\x5a\xeb\x8b\xf5\x51\x0d\xb4\x26\x51\x72\x57\xe8\xea\xe4\xd9\xac\x14\xca\x3b\xec\xd2\x1a\xaf\xef\x51\x1e\xd8\x6a\xc0\xb5\xce\xb3\x65\x9f\x18\xf5\xa3\x54\x23\xd3\xed\xd4\xb9\xf6\x8c\x93\xac\x9c\x1a\x99\x6a\x1e\x1d\x09\xba\xe9\xba\x8a\x3d\x63\x04\x10\xd6\x88\x44\x48\xd0\x55\xc8\x75\xc0\xd6\xab\x91\x5c\x07\x7c\x8b\xd5\x80\x6b\x13\x1d\x59\x35\xe0\xda\x64\x43\x56\x42\xb5\x55\xf7\x4b\x4c\xab\x64\x2d\xd4\x84\x44\x08\x16\x6c\x4d\x84\xd0\xc8\xe2\xa8\x09\x6b\x92\x34\xb3\x9a\x48\xca\x23\x0c\x56\x93\xe4\x41\xb8\xbb\x01\xd7\xe6\xf5\x9d\x12\xfa\xca\x5e\xf7\xb3\xe5\x33\x39\xb5\xcc\xa6\xa0\x47\x43\x34\xe1\x4c\x24\x21\xb1\x26\xf8\x6c\x28\xf0\xab\x86\x40\x9b\xd7\x34\x93\x91\x20\xd2\xb3\x93\x3f\x9f\x58\x68\xab\x21\xd0\xe6\x87\xfe\xb3\x65\xa1\x62\x19\x56\x48\xdf\x3d\x76\x5e\xcd\x3c\x03\x41\xeb\x9a\xd1\x88\xd6\x5b\x32\x04\x9a\x44\xcf\x5c\x51\x44\x0b\xd4\x96\x56\x14\xd1\x02\x13\x75\x35\x04\xda\x02\x56\x74\xa5\xea\x3d\x11\xb7\xa9\x86\x40\x5b\xa4\x8c\xaa\x42\x2b\x57\x0a\x4f\x6b\x08\xb4\x25\xe2\x4b\x95\x50\xad\xdb\xda\xf2\x14\xe6\xd1\x16\x08\xdf\x93\xa6\xc3\x02\x41\xb2\xd3\x7f\xf6\x8d\x92\x26\x24\x42\xb5\xe2\xc1\xaa\x84\x6a\xd1\x37\x49\x95\x50\x6d\x66\x11\xab\x45\x24\x15\xfa\xcf\x9e\x4f\xa4\xcb\xd5\x10\xa8\xe5\x0a\xd8\x96\x3d\x43\x5e\x3a\x0f\x12\x06\x6c\xe3\x8a\x8e\x77\x61\x61\xa8\x95\xcc\xc0\xae\x2d\x7b\x06\x31\x18\x57\xaa\xd7\x8b\xa6\x5f\x43\x99\xa9\x68\xc6\x31\x94\x69\xde\x3a\xdb\xca\x88\x4d\xf1\x44\x84\x69\xdb\xd6\x55\xec\x19\x3a\xa8\xae\x56\x96\x02\xcd\x62\xf5\xab\xeb\xd0\xdc\x85\xea\xd9\xd0\x33\xa2\xe5\x3d\x34\xb6\x0d\x69\x36\x55\x22\x54\x43\x99\x4d\xa9\xd9\xd5\x50\x66\x7b\x35\x76\x51\x3c\xd3\x92\x5d\x0d\x65\xb6\xa9\x69\xdd\x62\xb0\xc9\x16\x8e\x7f\x9e\x9a\x25\x86\x06\xad\x51\x6d\xf0\x7b\x6b\x28\x35\x4a\x9c\xf0\x62\x56\xb8\xdb\xab\xba\x61\x93\x7f\x8f\xd7\x66\xc0\x34\x89\x0b\xa5\x4a\x08\x8d\x0c\xf3\x2a\x21\xb4\xa5\x66\x0e\xb6\x74\x15\xa4\x9f\xcf\xfd\xec\xd1\xd7\x79\x20\x12\x06\x35\x24\x50\x3b\x53\xf1\x4d\x35\x60\xda\xd0\xf1\x49\x15\xb5\x33\xa7\xe5\x85\x70\x6c\x03\x20\x56\xa4\xbc\x45\xad\x5c\x0d\x98\xf6\xa0\xa1\xdb\x15\x7e\xa6\x9d\xe4\xa3\x07\x42\x84\xd5\x40\x69\x0f\x59\x5b\x16\x9b\x08\x85\x8e\x67\x80\xb4\x07\x5c\x0a\xb5\x23\xfb\xac\x6e\x61\x80\xb4\x07\xc2\x87\x15\x8a\xb7\xb0\x74\x3f\xa4\x67\x96\xae\x62\x31\x87\xa0\xc9\xd6\x00\x67\x8f\xb2\x10\x90\xe9\x8e\xb8\xa7\xaa\x01\xcd\x1e\xf5\x44\x70\xb0\x77\x75\xd8\xc1\x33\xa8\x83\x0c\x08\x16\xd4\x61\x0d\x5c\xf6\x24\x1b\x64\x90\xea\xa5\xc9\x68\xc0\xd6\x89\xd7\xb5\x42\xdd\xd6\x65\x59\x50\x78\x9e\xf4\xa5\x87\x68\xea\x98\x1c\x50\x2f\xcb\xe7\x2a\x93\x1c\x7e\xbe\x98\x00\xe5\xd0\xdd\xed\xf9\x32\xf6\x5e\x35\x30\xd9\x8b\xbe\xd1\x23\x5f\x33\xcf\x60\x20\x32\x89\x1c\xba\x4a\xb9\x8c\x4c\xff\x8a\x34\xf7\x88\x3a\x52\x62\xa0\xdc\xcf\x10\x62\xaf\xaf\xb6\xac\x0f\x0e\xf5\x2c\xa4\xb9\x1b\xfe\xe0\xfa\x40\x4d\xe7\xb5\x35\x28\xd6\xe1\x9d\x51\x39\xde\x92\xce\x03\x29\x9d\x23\x49\xca\x55\xbf\x7e\x48\xca\x05\xbb\x54\x24\xb9\xbb\xcc\x03\x10\xe1\x83\x95\x5f\x0d\x11\xf6\x4e\xa0\xb8\x1a\x22\x4c\x22\x09\xae\xd0\xb9\x0d\x6a\x52\xeb\x8b\x32\x1b\x3e\xed\x6a\x68\xb0\x3f\x9a\x88\x5f\xc4\x31\xa7\xce\xb3\xef\xf7\xa8\xd5\x86\x04\xfb\xa3\xb7\xfb\xa2\x3f\x5d\x74\x24\x62\xa7\x5a\x8e\xd1\xd9\xae\xb2\x13\xdf\x4b\xbd\x27\xfa\xb7\x6a\x68\xb0\xcf\xa4\x7b\x92\x05\x42\xce\x50\x7d\x55\x2f\xc0\x95\x26\x82\xae\x78\x7a\x2b\xca\x65\xf2\xcd\x57\xa8\xdb\x12\xce\xc1\x6a\x28\xb0\x29\xb2\x52\x27\xb9\x78\x1a\x2f\x13\xe1\xc8\x73\x15\x84\x23\x5f\x1d\x49\x1f\x95\xed\x3d\x49\x3c\xd6\xcc\x61\xe8\xaf\x2f\x3d\xff\x24\xdb\x45\x4b\x88\x21\xbf\x2e\x96\x9d\xfa\xa5\xce\x8a\x5b\xb6\xce\x2b\xef\x23\x3e\xdd\x3a\x3f\x79\x1f\x99\x18\x86\xfc\x7a\xd2\x4c\xb8\x3e\x79\x1f\x3c\xfe\x15\xa2\x74\xa5\x78\x56\xa5\xd7\x5a\x42\x09\x5f\x59\xc8\xcf\xb0\xa4\xf6\x5c\xf2\xe8\xa5\x05\xfa\xe8\x6e\xe7\xa9\x2c\xa9\xba\x60\x56\xd5\x42\xbc\x20\x7e\xa9\x7f\x0b\x9d\xd6\x13\x1e\x0d\x73\xe9\x33\xae\xfe\xed\xe1\xd5\x1e\x1a\xb7\x30\xb7\xa6\xa3\xf5\x91\xee\x6a\x0d\x5d\xef\x3d\x46\x60\x01\x79\xee\x04\xdc\xad\x87\xce\x2d\x1c\x5e\xf4\xba\x6e\x04\xf9\x5c\xe3\x0b\x97\x22\x51\x9d\xea\x17\x2e\x95\x57\xae\x7e\xe1\x52\xa5\x6b\xd6\x2f\x5c\xfa\x0a\xb0\xed\xcf\x72\x7d\x74\x56\xfe\x02\xa4\x3a\xe6\x0b\x99\x6a\xd1\xd8\x9f\xa4\x84\xba\xf8\xfe\xa8\xbe\x34\x51\xec\x1b\x66\x54\xad\x61\xfd\x15\x36\x95\xbd\xf2\x2b\x6c\x2a\x6b\x71\x7f\x19\x05\xea\x02\xfb\x86\x19\x37\xae\x9f\xba\xbf\xac\x02\x4d\x89\xfb\x8b\xb0\x53\x09\xd9\xdc\xaf\x50\xe3\xcb\x9e\x1b\x6a\x7c\xb3\xf6\x7c\xa5\x36\xb8\x55\x9a\xfb\x2a\x0e\xe9\x3c\xcd\x7d\x95\x77\x58\x5c\xcd\x7d\x59\x05\x5d\xc7\x90\x65\x03\x9c\x6b\xee\xcb\x40\x79\x74\xd5\x76\x83\x9c\x41\x7b\xfa\x97\x87\xf0\xb0\x47\x92\x32\x89\xad\x4f\x7f\x60\xe9\x79\x6e\x38\x59\xf5\x8a\xcd\xfd\x22\x6b\x56\x3b\xd6\xe9\xe8\x0a\x79\x36\x77\xc3\xc9\x72\xb5\x34\xff\x71\xf2\x33\xe8\x9a\xff\x24\x75\xc8\x44\x6a\x00\x59\x87\x97\xbd\xf9\xab\x20\xf5\xf2\xb6\x9b\xbf\x44\x23\xf2\x7c\xb7\x2f\xfc\xba\xce\x31\x97\x6c\x44\x2c\xfb\xed\x28\xab\xd5\xf9\x06\x9d\xd5\xee\x1e\xa6\xf0\x76\xf8\xda\xeb\x7c\x49\x6f\x6c\xfe\x23\x29\xa7\x17\x35\x7f\x49\x9c\xc5\xef\xdf\x54\x9d\xfe\x33\x9b\x78\xed\x31\xc4\xe7\xbb\xce\xf8\xd4\xb5\x4e\x5b\x48\x2a\x04\xcb\x34\x43\xb5\xb1\xe8\xfa\xe1\x12\x95\x2b\x4c\xdc\x54\x95\x6e\x24\xd7\xbc\xa1\xa3\xb0\xd6\xa6\xea\x70\x5b\xb8\xce\xd5\xad\xa7\x3b\xe1\xd9\x71\x88\xb0\x5b\xb8\x59\x39\xca\x74\x69\xe1\xcb\xca\x29\xba\x72\xbb\x7b\x40\x9a\xed\xa8\xac\x8d\xfb\xbc\x87\xb8\x7d\x1c\xb1\xa2\x76\x94\xd6\xc6\x94\x03\xa7\x85\x9b\x69\xb7\xa3\xee\x75\x59\x7d\xdf\xa4\xe7\xfa\x32\x55\xd4\xb7\xc3\x47\x6a\xc0\x94\xdd\x4e\xa5\x7a\x39\x35\x14\xed\xab\x54\x17\xcd\x5c\x8b\x5f\xfa\x01\x28\xaf\xc5\x78\xf7\x9c\xeb\x5c\xbf\xfc\x24\x1d\xbb\xc5\x2b\xd5\xa3\x82\xbf\x16\x6f\x99\xa6\x42\xdc\x4d\x95\xeb\x3f\x7b\x30\x3b\x9b\x2a\xd7\xd3\x3b\x5f\xcc\x9a\x16\xaf\x56\xcb\x8b\xd3\xa4\xc5\x4b\x2b\xb8\x09\xa5\xb7\x5f\x8a\x6c\x24\x59\xb7\x43\x31\x37\xef\x9b\x8f\x1f\xbb\xe8\xd6\x95\x3f\x5a\x4d\xd2\x00\xda\x21\x7d\x9f\xa7\x7e\xbc\x91\xf8\xdc\x98\x3b\xdb\x51\x64\x5b\xa7\xae\xbf\xa5\x4b\xb1\xa7\x64\x8b\x76\xaa\xda\xf7\x5c\x18\x4a\x4d\xb4\x73\xd9\xcd\xa9\x51\x9a\x2e\xc3\xec\x22\x11\xa7\xa5\x8f\xaf\x8c\x48\x48\xfb\xe8\xe7\x14\xc9\x6a\xa7\xba\xdd\xcd\xad\x99\x29\x7d\x04\xf8\x4e\xc7\xfc\x62\x37\xd0\x31\x66\x8a\xfd\xe0\x87\x7f\x5e\xfe\x9a\x0a\xdf\xf3\xcf\xca\xaa\x8b\xcd\xb3\x67\x6b\x62\x4b\x97\x06\x49\x8e\x99\x96\x7e\xf9\x39\x99\x50\x7e\x09\xba\x69\xb8\xe6\xcf\xbf\x8d\x43\xa5\x91\x6f\xdd\x8b\xfe\xbf\x5c\x19\x9b\xd0\x60\xcb\x7a\x65\xe9\x94\x79\x35\x0a\xe1\xab\x3a\xbb\x0a\xe1\x73\x3a\x21\x9e\x26\x15\xb7\x9c\xe7\xab\x97\x9c\x2f\xdd\xd9\x9b\x74\xd5\xeb\x5f\x93\xf8\x4d\x3b\xc5\xf0\xf9\xd0\xe9\xb5\x7c\x33\x41\x66\xd6\x31\xef\xdd\x83\x5d\xda\xc4\x21\x6f\x7b\x74\xe5\x75\xf6\x9c\x49\x56\x3c\xf2\xc6\xab\xc2\x07\x2d\x77\xa8\x4d\xfc\xda\xad\xf8\xb3\x47\xf5\x06\x4d\x45\xf2\x3f\xc3\x91\x4c\x87\xa6\x22\xf9\x5c\xe7\x0b\x80\x6e\x05\x27\x07\x09\x88\xcd\x9c\x00\x15\xa9\xfa\xd4\x0e\xed\x5d\x9b\x0a\xf8\x36\xf1\xca\xff\xec\x79\xb4\xe7\x92\x24\xbc\xe7\x98\x7e\xf7\x10\xca\x6f\xe5\xea\xba\xbe\xe0\xa5\x56\x9e\x6f\x0f\xd3\xc2\xa1\xc0\xeb\x77\x5a\x38\x14\x78\x7d\x4e\x2d\x8d\x87\x6b\xbe\x4f\xb1\xb8\xb6\xa2\x2c\x0b\x9e\x4e\xc5\xf3\x3f\xff\x63\xf3\x36\x73\x24\x44\x11\x4f\x37\x15\xce\xe7\x3e\x95\xa6\xdc\xea\xe5\x4c\x3a\xdf\xb0\x7e\x09\x93\xfa\x62\xf5\xc6\xbd\x54\x5f\xdd\x0e\xef\xfc\x38\x4c\x34\x4d\x8a\x70\xf9\x26\x4c\xb6\x43\x8f\x37\xe6\xd4\xa4\x7f\x9c\x0c\xe3\x2e\x7b\xa7\x5a\x7e\x1c\x79\x93\x56\x7f\xb1\xba\xd2\xff\xeb\x25\x53\x11\x1f\x66\x3b\x79\xe1\xcf\x7c\x87\xce\xfa\x98\x4d\xf5\xe5\xeb\x8d\x11\x89\x6f\xb3\x89\x36\x2f\xbf\x87\x0e\xb9\x35\x7f\xf6\x28\x85\xba\x9d\xea\xf9\x9f\x3d\xbc\xdf\x16\xbf\x3d\xba\x4e\xba\x7b\x48\xca\x6e\x24\x85\x27\xdc\x8e\xed\xd0\xe8\xcd\xf9\x66\x5d\xd5\x62\x0c\xe7\x1b\x1d\xd5\xb8\x79\x27\xe9\xf6\x25\xd8\x82\xe5\x9b\x79\x20\x72\xd1\x94\xa3\xc4\xf0\xbc\x0e\xe5\x64\x3b\x55\xf3\x6b\xca\x11\xda\xda\x2f\xd9\x19\xde\xb6\xaa\xe6\xf3\x9a\xdb\xa9\xe5\x7a\x27\xfb\x8e\x33\x55\xce\x17\x37\x5f\x9c\xdb\xed\x54\xce\xbb\x43\x02\xd8\x4e\xe5\xbc\x9b\x2f\x7e\xf5\x76\x2a\xe7\xdd\x7c\x9b\x8e\x49\x77\x0f\x46\x67\x93\xb2\xdc\xcf\x1e\xf0\x5f\xeb\x97\x74\x67\xe2\x68\x6d\xfd\x66\x98\x9d\x05\xbe\x7f\xe5\xaa\x43\x7b\x3e\xc2\x19\x2d\x2a\x0a\xa7\x97\x9f\xa9\x5d\x4f\x71\xb3\xef\xce\xbc\xda\xdf\xbb\xa7\xe9\x2c\x91\xae\xf8\xf9\x16\x3d\xc5\x25\x42\x57\x32\x6e\x83\xb4\x3e\xea\xab\x8e\xab\x53\xa1\x2a\xef\x36\x2e\xfd\x9c\x38\x88\xda\xd1\x67\x0f\x73\x6b\x4e\x1c\x9f\xbc\x18\x2e\xb0\xa6\xf0\xb9\x31\xcf\xf1\x8e\xa5\x30\x57\xe2\x91\xef\x6d\x47\x61\x2e\xcd\x97\x98\x6b\x93\xc2\x5c\x49\x53\xda\x34\x6d\x8c\xbb\x27\xea\x18\x65\x9e\x31\x26\x45\x58\x6f\x51\x3d\xde\xef\xf8\x28\x06\xf1\x49\x35\xb4\xdb\xa5\x3d\xd2\xc6\x65\x96\x78\x89\xd5\xb5\x13\x4e\xcf\x73\xe2\x84\x6d\x27\x9c\x9e\x79\xe6\x7f\x5e\xf2\x54\x8c\x5f\xf2\xdc\x44\x4e\xda\xa1\xdd\x2b\xa7\x12\xb5\x29\xac\x5e\xca\x14\x9c\x6f\x0a\xab\x97\xcf\x3e\x56\x58\xfd\x67\x8f\xac\x6e\xe5\xa9\x97\x72\x34\x03\x9a\x42\xeb\xa5\x5c\x1b\xee\x50\xf0\xd5\x39\xb3\xae\x33\xee\x1e\xc2\xca\xed\xa1\x34\x48\x43\xf5\xb9\x25\x27\x02\xe9\x4d\x39\xea\xa5\xce\xad\xee\x8f\x43\xe5\xbc\x32\x1c\x2a\x92\xf9\x6b\xe2\xc9\x2f\x6d\x2e\x59\x9f\x50\xf1\x79\x9c\x4d\x4d\x54\x7c\x3f\xff\xe3\x83\x6d\xca\x4f\x2f\x7d\x4e\xb0\x6c\x33\xe7\x4a\x12\x07\x4b\x7b\x3f\x34\x79\xf6\x88\xb6\x8c\x67\x34\x07\x4b\xdb\x00\xf3\xf6\xde\xe4\xdb\x57\x9f\x8b\x70\xfb\xd6\x54\xf3\x5e\xd2\xec\xdb\x3e\x88\x27\x96\xce\xbf\x19\x43\x5b\x66\xc1\x0b\x37\x8f\xa6\xc3\xf7\x22\x24\x91\xf1\xb5\xf7\xe3\xe7\x21\xca\xd4\xe6\x1d\x26\x67\x49\x39\xe1\xf7\x3e\x97\x06\xb1\xf2\xd1\xf3\x9c\xe2\x30\x6d\x87\xaa\x2f\xcf\x15\xb5\xe7\x26\x6c\x9e\xe1\x46\x81\xbf\x6a\x74\x9a\xc2\xf0\xb9\x4e\x11\x2b\xb4\xf9\x65\xe1\xe0\x54\x6a\x27\x1f\x7d\xcf\xa5\x45\xf5\xd0\xf6\xc5\x43\xf2\xd8\xe6\xf8\x9e\x49\xf7\x91\xb5\x5b\x0e\xc5\x44\x3b\xd4\x7d\xf5\x2e\xe0\xf3\xd2\x9b\x6d\xd9\xa5\xe6\x9c\x89\xf3\xd5\x35\xf6\x6d\x1d\xb1\x8c\xb6\xa8\xbf\xc1\xd7\xdd\xd6\xf5\x36\x6c\xbd\xfb\x75\xbd\x0d\x67\x1c\x1c\xe7\xcc\x3c\x8e\x97\xb6\xae\xd9\xa6\x64\xd3\x66\xce\x99\x9f\xb7\xc6\x56\x81\x31\x80\x36\xac\x0f\x49\xe3\x00\x6a\xeb\xf2\x17\x9d\xa9\x92\x3a\xe8\x47\x93\xf4\xba\xcb\xef\xab\xfe\xb1\x2e\xa1\xb8\x82\xe0\x4d\xde\x97\x9f\x45\x43\x93\xeb\xba\xe4\xd2\x12\x0d\x6d\x47\xdd\x6e\x1f\xb1\xaa\xf6\xa9\xdb\x2d\x8d\x9c\x7d\x97\x5f\x25\x25\xb4\xfd\x25\x33\xc3\x7c\xd5\xf6\xb5\xfe\x55\xdc\xd6\xf6\x1d\x2f\x4a\x0b\x68\x9f\x07\x46\x25\x7d\x6d\xdf\xba\xf5\x57\xe3\x4e\x1e\x98\x1f\x03\xf8\xd5\x9e\x8f\xdb\x0c\xd7\x76\xdb\x5f\xf2\xfe\x50\x0b\xfb\x77\x8c\xae\xfc\xcb\x03\xc3\x17\xf9\x3c\x30\xe2\x0e\x6b\x5f\xe2\xfa\xa4\xf2\xaa\x6d\x6a\xb4\xb4\x5c\x6d\x6a\xb4\x84\x27\xcc\xf3\x92\x1f\x30\x49\x27\xfc\x5f\x78\x8e\xae\xfa\xe9\xaa\xff\x02\xff\x65\xb6\x22\xa9\xd7\x83\xad\x9b\xa2\xa3\x02\xc1\xee\x30\xe7\x87\xfe\x2f\x67\x2c\xa9\x98\xb7\x1f\x2f\x4b\x98\x13\x27\x79\x77\xdf\xdc\x51\x74\xcc\xa7\xd5\xbe\x75\xd5\x3b\x7f\xaa\x1e\xa5\x1f\xd2\xfd\x78\xea\x48\xba\x3c\x2d\x3f\x0b\x44\xd7\x59\x97\x65\x5b\x42\x53\xdd\x5d\xb3\x55\x9a\xec\xdd\x7d\xc8\x10\x17\x70\xf7\x1f\xf9\x3a\x0b\x5a\xff\x48\xf8\x55\x2b\xdf\xfd\xd5\xeb\x7e\xc9\x5b\xec\xfe\x7a\xa0\xd4\x3f\xba\x97\x39\xaf\x6b\x7c\x24\xf4\xe5\x6f\x0e\xcb\x7e\x72\xe0\xdf\xf9\x62\x45\x76\x7f\x45\x02\x35\xdd\x75\x39\x61\x7e\xac\x48\x9c\x4f\xdd\x5f\x66\x50\x89\xfd\x77\xff\x4d\xbb\x4b\x7b\x1e\x32\xd5\x1f\xb6\x2e\xd9\xb5\x32\xca\xbb\x27\xf3\x85\x41\xda\x7f\xf3\xf4\xf3\xba\x3e\x99\x7b\x89\xfe\xf4\xe0\xbe\x8f\x45\x87\x09\x17\x15\x0a\x16\x77\x94\xf2\x44\x6a\xd8\x51\xca\x4b\x7a\x71\xa4\x18\xf8\xf3\xdf\x97\xf5\x84\x2b\xac\x87\x5f\x59\x3f\x3a\x86\x77\x51\xd7\x7c\x89\x7b\xf4\xe3\x7c\x29\xc7\xcd\xda\x0f\x5f\x7f\x9b\x33\xab\x0d\x9f\x73\x81\x25\xa4\xcb\xf9\xf2\xb3\x60\x30\x38\x7b\xb8\x0e\x29\xa5\x95\xf6\x30\xbf\xe9\xc3\xb3\xc7\xa6\xdb\x12\x75\x8d\x6f\x19\x02\x49\x74\xf2\xe7\x83\x3a\x93\x39\x5d\xe2\x0b\xea\xe9\x1f\x6f\xbf\xf0\x4b\x8f\xf1\x9b\xae\xb5\x27\x7d\x4b\x14\x6d\x90\xc3\xc5\xb0\x2c\x6d\x88\x1f\x23\x30\x5e\xfc\x1e\xaf\x59\x22\x0c\xda\x8f\xfc\xfd\x33\x27\x11\x82\x7e\x54\xf5\xde\x43\xd4\xdc\xe3\x2d\x9f\x9b\x67\xcf\x7d\x27\xaa\xdd\xe9\x9f\xc3\xe5\x7c\x91\x78\xe3\x03\x2f\x4e\x8e\x1e\xaf\x8a\xa2\x10\x79\x97\xc3\xe5\x67\x78\x62\x14\x75\x73\xb8\x58\xc1\xb2\x6d\x21\x2e\x89\x9b\xa7\xcb\xd9\x62\x14\x10\xb4\xd5\x9c\x2d\x5d\x25\x55\x3d\x89\x8c\x85\x6b\x1f\x27\x4b\x9b\x8b\x18\x63\xa7\xe2\xdc\xab\x8f\xab\xe2\x3c\x69\x0b\x81\x60\x3d\x9f\x2a\xce\xb3\xee\x82\x56\x32\x8e\xf8\x4e\x1a\xc3\x04\x6f\x75\xf3\x9a\x14\x5f\xd4\x82\x49\x9c\x54\xcf\xb2\x88\xac\xe9\x9a\xfb\x5b\xb6\x79\x43\xe6\x29\x29\x4e\x53\x4c\x26\x0d\x80\x88\x5d\xcf\xc4\x58\xbd\xb6\xae\x50\xee\x4b\x2a\x4b\xcf\x97\x31\x57\x62\xbc\x3d\xdf\x65\x45\x4c\x01\x5d\x49\xf7\xd0\x78\x74\x92\xee\xa5\xd4\xd1\xf3\xe5\x64\x50\xbd\x4f\x57\x85\x3a\xc6\x4a\x47\xe7\x5e\x46\x5d\xcf\x5f\xa9\xef\xab\xd6\x5a\x06\x59\xd5\x34\x9b\x3f\x67\x35\x8e\xf5\x9e\x3f\xc2\x6c\xaf\x3b\xfe\x1a\x03\xb4\xe8\x78\x44\xda\xc1\x65\xdd\x3c\x22\xce\x53\x59\xd3\xcd\x1b\xe2\x1c\xc6\x41\x37\x4f\x88\xf3\x60\xe1\x6e\x5e\x10\xa7\x04\x9d\x6e\x5e\x10\xa7\x24\x94\x6e\x5e\x10\xe7\x48\xc9\xed\xe6\x01\x71\x9e\xe5\xad\x9b\xf7\xc3\x39\x9c\xc1\xdd\x3c\x1f\xce\xab\x37\x99\xd7\xc3\xb9\xa9\xb6\x3c\xf6\x9f\xc6\xb3\x79\x3b\x9c\x9b\xba\x83\x71\x2b\x45\x52\x52\xba\x79\x39\xbc\x98\x20\xba\x79\x38\xb6\x8a\x80\xbb\x79\x38\xbc\xfc\x5e\xdd\xbc\x1b\xce\x81\x6e\xba\x79\x37\x9c\x27\x3d\xa6\x9b\x67\xc3\x49\x65\xaf\x9b\x57\xc3\x79\xe2\xfd\xdd\x3c\x1a\xce\x2d\x5d\xc5\x9e\x2f\x64\x1d\xa9\xe7\xa3\xd5\x95\xe7\xc3\xf5\xdd\x2b\xcf\xf7\x33\x8f\xff\xf3\x52\x52\x79\x74\x7c\xc0\xbd\xf2\xe8\xfa\x4c\x95\x47\xc7\x7e\xe8\xe6\xcc\x70\x52\xbd\xeb\xe6\xc8\x70\x2a\x20\xec\xe6\xc4\x70\x9e\x14\xc0\x6e\x0e\x0c\xe7\xf0\xb6\xf6\xc6\xa7\xd5\x0b\x6c\x7c\xda\xad\x2d\x3e\xad\x86\x69\xe3\xd3\xe2\x84\xe9\x8d\x4f\x0b\x38\xed\x8d\x4f\x4b\x3d\x67\x6f\x3c\x3a\x6e\x87\x6e\x8e\x0a\xe7\xb1\x67\x7b\xe3\xd1\xb5\x7c\x98\x83\xc2\x79\x4d\x71\xe6\xa0\x70\x4e\x4b\x93\x39\x27\x76\xd4\x14\x69\x8e\x09\xaf\x3a\xf4\x6e\x4e\x89\x1d\x35\x5d\x99\x43\xc2\x8b\x5e\xba\x77\x9e\x0f\xfb\xb8\x9b\x23\xc2\x85\xa2\xff\xec\xf9\x82\xba\xb5\x39\x20\x5c\xd0\x34\x65\xce\x07\x17\x70\x17\x75\x73\x3c\x38\x65\x22\xf5\xce\xa7\x25\x06\xd4\x3b\xcf\xa7\x89\xa7\xf3\x69\x41\x7e\xbd\xab\xeb\xea\x2a\x83\xfb\xa9\x2d\x0f\x6d\xd1\xd6\x82\x18\x85\xaf\x62\x4e\x83\xa0\xe0\x70\x1f\x10\x95\x10\x85\xea\x50\xf2\x89\xf8\xa2\x0f\x6a\x45\x64\x5b\x1d\x7e\xfe\x3a\xdf\xaa\xa3\x6d\xba\xdd\x9a\x6e\xa9\x4c\x17\x71\x42\x1f\x64\xf2\x90\x51\xd5\xc7\x2f\x29\x15\x5d\x0d\x2d\x11\x4d\x84\x54\xa7\xbf\x5a\x70\xcd\x71\x90\x1e\x2d\x8d\xe3\x32\xb4\xca\x0d\xd6\x45\xcd\xa7\x05\xfb\x38\x0d\xea\x9c\x9a\x8c\x50\xba\x13\xbb\x55\x1f\x77\xda\x11\xb5\x62\x37\xa7\x41\x93\xc4\x68\x37\x87\x41\xf7\x60\xab\xfe\xa0\x37\x42\x96\x51\x7f\x50\x0d\x93\x79\x62\x9e\x80\x2a\x06\xaf\xfe\xdc\xf2\x3c\xe1\xbb\x7e\xbc\x00\x6d\x4e\xa7\x6b\x23\x97\x84\x23\xae\x3f\xd7\xfc\x50\x31\x64\x3f\x29\x14\xda\xb2\x6c\xc0\x46\xb2\x45\x07\xf9\x27\xa7\x36\x5b\xd2\xb5\xd7\xc2\xf2\x5c\xe7\xd0\xd6\xf2\xfb\x48\xb3\x59\x2d\xdd\x54\x38\xf1\x9d\x7e\xa1\x7e\xb5\xfd\x25\xf3\x51\xc6\x9a\xa1\xfe\x56\x74\x25\x43\xfc\x75\x04\x1d\xf9\xcb\xfb\xc1\x33\x7d\x7a\xf4\x42\xe5\x9d\x94\x8a\x0a\x52\xee\x10\xf0\x3b\xcd\x01\x68\xd1\x47\x2d\x6a\xaa\x42\xff\x01\xac\x5a\xb4\x5e\xe9\x31\xe8\x7f\x48\xf8\x41\x57\xfd\x43\xfb\xaa\x59\xef\xa4\x55\x9c\x2f\x07\x6d\x5f\x9d\xba\x13\x6c\x12\x20\xbc\x6e\x28\x3f\x49\x47\xa7\xa3\x43\x2f\xea\x90\x6e\xe8\x3e\x49\x32\xa9\x1b\xb2\x4f\x4a\xd5\xef\x53\x7d\x9a\x31\x66\x88\x3e\x27\x5c\xbd\x1d\xca\x3e\x89\x35\x77\x69\xcf\x93\xff\xd6\x27\xa5\xa6\x9a\x15\xe7\x8d\x73\x1e\x44\x81\xfe\xfc\x3a\x47\x3f\x6c\xf1\x9c\x24\xd4\x1f\xe3\x72\x7e\x32\x68\x5a\xce\x50\xc1\xcb\xe7\xbe\xfb\x33\x50\xfb\xdf\xa6\x75\x03\xf5\x45\x99\x37\x1d\x4e\xfe\x41\x3e\x54\x5f\x9f\x95\xa9\x8e\x82\x48\xde\x8b\xeb\xa7\x2f\x88\xbe\xb4\x16\x2b\xcb\x22\xfb\x39\x49\x62\xec\x06\xe6\x6b\x94\x3d\x02\x99\x99\x94\xd9\xfa\x6a\xdf\xea\xaf\x6b\x03\xe4\xbd\xce\x25\x37\xfd\x51\xbb\x2c\x63\x4d\xaa\x61\x7d\x7d\xce\x0c\xbc\xe5\x7d\xdd\x78\xcb\x81\x87\xe4\xda\x8f\xae\x33\x2c\x47\x5d\x85\x79\x9d\x3c\xfb\x57\x76\x0a\xc4\x66\x4b\x68\x68\x93\xc4\xac\x29\xd4\xc0\x7a\xcb\x24\xdc\xf6\xad\x4f\x4f\x9b\x36\x89\x89\x38\x1e\xfa\xa6\x72\x53\x70\x15\x2e\x7e\x85\xf7\x3a\x54\x7e\x9b\x62\xbf\xbe\x71\x68\x91\x18\xdc\xe1\xe1\x97\xf4\x67\x37\x30\xde\xbb\x56\xf1\x4d\xe6\x1a\x9c\xa2\x7d\xab\x6b\xab\x9d\xf2\xf5\xc6\x39\xcf\x5d\xbe\xca\x71\x22\x55\xc3\x91\xab\x4e\xf0\x79\x38\x86\x34\x0e\x85\x21\xf9\x79\x6c\x9e\x61\x60\xbc\x37\xfc\xc8\xc3\xa1\xf6\xc7\x62\x3b\x0c\x88\x27\x25\xbb\x0e\x47\xe6\x0c\xf6\xe3\x70\x24\x91\x4e\xfd\xf7\xc9\xc9\x54\x9d\x4b\xa2\xec\xa3\xf6\x8c\x8b\x34\x9d\xce\x87\x2f\xa7\xa9\x85\xef\x45\x1a\xc4\x17\x87\xa3\xda\xf8\x5c\xed\xd3\x58\xa7\x97\x0c\x77\x9d\x32\x72\x27\x0e\x8f\x46\x0a\xe1\xcf\x01\x3b\xd9\xc6\x69\x37\xc8\xc1\x17\xd5\xde\xf0\x24\x30\x33\x01\x0c\x43\xca\xe9\x65\x01\x18\xb0\x93\x15\x10\xd0\x30\x84\x6c\x5c\x2a\xb6\xd5\x49\x79\xe5\x5d\xf9\xfb\x4c\x8b\x30\xf2\x30\x64\x9c\x94\x80\x31\x48\xb4\xcf\x8f\xae\x34\x8f\x5b\xe9\x25\x2f\x6b\x50\x29\xfe\x2e\xdd\xf7\xc6\x33\x5e\xfc\xe8\x83\xd4\x84\xa7\x6b\x8b\x04\x53\xd2\x3d\x86\xa1\x61\xcb\xcb\xb6\x2d\x9b\xa6\x5e\x26\xe1\x61\x68\x38\x09\xd7\x8e\xf0\x85\x93\xf5\x2d\x4e\x2a\xc2\x9c\xcb\xeb\x8c\x7a\x9e\x44\xd4\x7c\x23\x5c\xe4\xa7\x48\xd1\x08\x1f\xf2\x9b\x3a\xc6\x96\x62\x29\x43\x8c\x83\x84\xdb\x51\x30\x1c\x24\xe2\xd7\xa4\xbb\x1a\xfa\xc9\x98\x5c\x23\xf0\xec\x4d\xcf\xf6\x3d\x3b\x63\x71\x18\x02\x4e\x5a\x2a\x07\xc9\xf8\x83\x11\x3f\x0c\x01\x27\xd1\x73\x8f\x78\x63\x7e\x72\x72\x8f\xc8\xdc\x84\xfd\x3d\x0e\xf2\x2d\x73\x65\x9d\xff\xa5\xa7\x14\x9d\x51\xaf\x73\x06\xaf\xc5\x88\xd7\xf9\xba\x8b\xee\x83\x70\x2d\x4b\xd7\x88\xc4\xb4\x88\x6a\x0f\x43\xbc\x55\xc9\x0d\x23\xc2\x33\xe6\x75\xe4\xbc\xc8\x86\xd1\x3a\xa8\x2c\x17\x79\xff\x40\xbd\xae\xb2\x8c\x8c\x24\xd4\xb3\x0e\x37\xed\x10\xca\x65\xee\x1c\x27\xa5\xa0\x9e\xb8\xc8\x80\x53\xed\xbc\x1b\x2a\xcc\x8b\x9e\x3d\x7d\xe4\x20\x8f\xfb\xcb\x72\x30\x00\xc0\x03\x48\x33\x00\xc0\x0f\x19\x1c\x03\xca\x35\xf9\x31\x87\x01\xe0\x52\x8b\x1a\xc0\x34\xc6\x74\x3b\xc4\x99\x6f\x36\x81\x1a\x01\xdd\x97\x5e\x63\xa2\x22\x14\x7b\x73\xa4\x9b\xed\xb6\x8a\x1e\xd7\xac\x93\x42\x08\x67\x00\x82\x97\xba\x58\x46\x4e\x04\x80\x34\xa8\x36\x97\x9c\xd1\x30\x10\x9c\x94\x4c\x38\x3e\x00\x2c\x07\xc8\x38\x00\xb8\x9f\xfc\x88\x61\x00\xd8\xb8\xac\x6d\xab\x92\xe9\xae\xff\x78\x5e\x72\x6e\xc6\xe1\xc9\x5f\x53\xe4\x78\x83\xbc\xff\x01\xd2\x18\x06\x80\xb3\xa8\x3e\x06\xe0\x57\x61\xef\x91\xbf\xcc\x12\x0d\x8b\x0c\x71\xc2\x39\xda\x3e\xff\x26\xfc\x3e\xc8\xfd\xf7\x7a\x5e\x38\xf2\x33\x61\xd4\x51\xae\x2a\x98\xc2\x6a\xe3\x70\xe4\xd7\xa3\x34\x3d\x0a\x43\x5f\x13\x10\x92\xf2\x5d\x77\xa2\x0a\x3d\x11\x03\x18\xe5\xf2\x9f\xaa\xf4\x6f\x94\x3b\xe4\x5f\x4a\xd8\x06\xb5\x00\xe3\xd5\xdd\x06\x5c\x5a\x3a\xfa\x2b\xfd\x23\x44\x3e\x0a\xdd\x5e\x93\x0c\xb5\x02\x5e\xc3\xb9\xc0\x47\xa9\x6f\x71\x78\xf2\xcb\x7c\xc1\x71\xa3\x42\x18\x01\xb6\x18\xf5\xab\xfc\x25\xb6\x35\xea\xcd\xc2\x9a\xe0\xab\xa1\x50\xbf\x49\xfc\xd0\x97\xa8\x1d\xf0\xd8\xc4\xc3\x40\xb1\x55\xa1\xda\xd6\x95\x8f\x91\x68\xea\x80\x23\x7f\x6b\x82\xa9\x2c\xd3\x9a\xaa\x15\xda\xff\xb1\xd5\x71\x7f\x0c\x43\xc0\x49\xe8\x6a\x54\x12\x7c\xb5\xf4\x19\x02\xb6\xda\x3b\xdb\xfa\xc2\xf9\x49\xff\xdb\x54\xa7\x7a\x95\x71\x68\xde\xfc\x51\x32\x1b\x5f\x28\x7f\x63\x5c\x0d\x6a\x09\x54\x72\x37\xd0\x8e\x6f\x60\xdc\xd1\x6e\xac\x49\xf4\x84\x03\x4e\xb7\xac\xf1\x65\x88\xd8\x78\x32\x6d\xcb\xfa\xb8\xd8\x92\x07\x45\x03\x8a\x0b\x0d\xd4\xef\xa6\x16\xf7\xc6\xd2\xb6\x74\xcd\x01\xcd\x35\xcf\xdb\xae\xda\x9f\x10\xc5\x30\x54\x1c\xcb\xb9\xa7\x4d\xed\x89\x38\xce\x80\xc7\x2d\x3d\x6a\x3d\x35\x64\xf8\x07\x06\x5a\xf1\x62\x29\x1d\x0a\xcf\xdb\x64\xc6\x9b\x57\x78\xfe\x67\x69\xc2\xff\x3e\xfa\x55\xa8\x7c\x31\x86\x46\x47\x26\x48\x63\xa0\xdf\xe9\xfd\xd5\xfd\xa9\x6e\x1f\x5b\xf7\x30\xc4\x31\x34\x73\x51\x48\xb0\x31\xea\x46\xbf\xca\x8e\x53\x4f\xd2\xaf\x26\xf5\x31\x53\xfa\xcd\x1e\x93\xd6\xcd\xe8\x37\x83\x57\x54\xa3\xa3\x7f\xba\xe4\x9a\x94\x3b\x1a\x28\x4e\xff\x53\xdf\x43\xb2\xcc\xa0\xf0\xe0\xcc\x42\x14\x1e\x24\xf0\xc6\x30\x54\x6d\xfe\x5f\xdb\x8a\x14\x45\xf3\x6e\x0c\x51\xe7\x76\xce\x23\x31\x5f\xa3\x99\xc2\x83\x80\x8b\x78\x0c\x49\x23\xe9\x2a\x10\x86\xcb\xbc\x19\xd2\x5f\xff\x73\x39\x28\xf9\x7f\x5d\x0d\x50\x93\x17\x2b\xf7\x30\x9c\xdd\x9a\x66\x6d\x69\xe1\xe1\x18\x1b\x86\xb1\xeb\x23\xa3\x05\x7c\x5d\x9b\xee\xb6\xc1\x8b\x1c\xf9\xe0\xd6\x96\x41\x00\xb6\x76\x1a\x25\xd4\xb5\xa7\xa5\x2d\xc3\x99\x91\x0a\xc2\xa1\x28\xfb\x0f\x8a\xd7\x12\x7a\xc4\xed\x74\x34\x06\x38\xee\xf0\x61\xb8\x3a\x57\x8d\x65\xc3\xd5\xe6\x63\xb7\x2d\x0a\x9a\xd5\x72\xc3\xd4\xc9\xe3\x10\x1f\xa7\x60\x7d\xce\x85\x78\xdc\x00\x57\xab\x8c\x73\x18\xae\xae\x83\x0a\xa7\xf1\x7c\x09\x29\x44\x9c\x86\xe1\xea\xf6\xe0\xd5\x18\x94\x27\x14\x30\xf9\x10\xd3\x9b\x99\x53\x5c\x8d\x12\x05\x2f\xf3\xf7\xbd\x2e\x7c\xc9\x37\x0c\xc3\xd6\xf5\x39\xe7\xdf\xd5\xeb\x05\xa7\x8e\x57\xcf\xac\xab\xd5\xfb\xbf\xe6\xc7\x5f\xd1\xf4\x57\x57\xfc\x64\xa8\x35\xa3\x83\xaf\xf7\xf9\xdf\xbe\xb1\xaa\xc9\xc6\xfb\xe5\x48\x6a\x0e\xa5\x88\xdd\x69\xfe\xa7\x6c\x41\xe5\x41\xe3\x28\xce\x73\xef\x13\x45\x7f\xe6\xd4\x8c\x86\xea\x7c\x50\xdb\xa6\xb8\x2b\x78\xb6\x89\xa1\x4e\x06\xc1\x30\x8c\x9d\x95\xb2\x36\x0e\xc6\xd6\x55\xb0\x50\x00\x5a\xc3\x30\x76\x51\x99\xfc\x40\x69\xde\xe3\x17\x1a\x30\xb7\x89\xbd\x79\x4c\x28\x72\xb2\xce\x93\xb8\x9b\xee\x80\xcc\xb6\x46\x87\xe1\xeb\x32\x35\xb3\x22\x68\x27\x9a\xdb\x81\xa0\xdd\x20\x14\x31\x10\xb4\x53\x31\xc6\x58\x08\xf9\xa9\x27\xc1\x7d\xef\x89\x7d\x0e\xd8\xdb\x54\x96\x33\x0c\x38\xb7\x2a\x10\x23\xee\xfb\xa1\xab\x90\x1d\x11\xb5\x65\xa5\x19\xd2\xc2\x1d\x8b\x12\x28\xcd\xa3\x0b\xa6\x68\xad\x20\x8b\xf2\x93\x1f\xf3\xff\x7f\x6f\xe2\xfd\xe7\xf8\xf7\xff\x67\xfd\x97\x7f\x73\xce\xe1\x62\x16\xe1\xbb\xbd\x2c\xe7\xf0\x8f\x3b\xec\x03\x67\x0e\x67\xe7\x2a\xfe\x4b\x5b\x78\x37\x5c\x63\xce\xe1\x77\x76\xb6\x76\x6e\xcc\x69\xe7\xe4\xc9\x6d\x28\x59\x58\x5a\xb0\x73\x72\xe1\xda\x6a\xb5\xc9\x8a\x70\x4e\xfe\xd9\xc6\xe9\x56\xe3\xe3\x1c\x8e\x59\x07\x9b\x8a\xf3\xba\x26\x1e\x67\x5b\x78\x36\x06\x86\x73\x0d\x57\x33\xfc\x29\xce\xd3\xa4\x86\x8f\xd9\x96\x99\x8d\x4a\x8c\x73\x72\xbe\xda\xfa\x12\x9d\xcd\xc2\xce\xe1\x75\x75\x5d\x4d\x9a\xec\xe4\x89\x60\x06\x75\x6a\x3c\x7e\x56\xd7\xd5\xce\xcd\x4e\xda\x09\x1b\x8a\xb3\x6a\x57\xe7\xf0\xac\xba\x4e\x3b\x13\xaf\xae\xd3\xce\x4e\x3b\xad\xbf\x38\xd7\x69\x67\xa7\x9d\xe6\x65\x71\x6e\xd0\x4e\x9b\xcb\x37\x84\x04\xce\x0d\xee\x6e\x93\x78\x70\x9e\x26\x8d\x76\x28\xfa\x6d\x27\x77\x1f\xdc\x9d\xcc\x29\x2a\xdf\x9d\xb3\xa9\xc0\x62\x18\x76\x23\xae\x69\x63\xdf\x42\x0b\xb6\x53\x47\xe2\xe8\xb6\x91\xbe\xa1\xfc\x70\xce\x46\xb9\x73\x2f\xed\xcc\x3c\xfb\xe4\x74\x1b\x47\x21\x58\xba\x9d\x73\x93\x4e\xb4\x78\x9f\x16\x93\x73\x6e\x29\x16\x61\x94\xda\x21\x70\xf7\xdd\x8f\xcf\xfe\x5f\xff\x16\xe8\xd0\xce\x9b\x37\xc1\x79\x47\x73\xcd\x35\xe1\xbc\xb9\x01\x9c\x37\xb4\xbf\x97\x55\x65\x39\x6f\xc1\x74\x8b\xdf\xfc\xeb\xdf\x62\xb4\xa0\x93\xf3\x5e\x41\x1d\xeb\xb4\xd1\x26\x6c\xe7\x03\x31\x13\x68\xba\xb3\xcd\xad\xce\x1b\xdc\x72\xde\x70\x56\xc0\xa8\x72\x3e\x71\x77\x43\x39\x21\x2f\xee\x9e\xc6\x09\xf8\xfc\xec\xac\x9c\x9e\x08\x69\x64\xf4\x1a\xe8\x75\x3e\xe3\x7b\x97\x54\x42\x61\xa7\xe2\x53\x85\x1e\x12\x38\xbd\x70\x7a\xe3\x74\xed\x54\x68\x62\xa0\x2b\x41\xb7\xf1\x83\xd3\x6d\x59\x74\xb1\xb3\xf3\xe1\x89\x6c\x15\x73\xd1\xfc\x97\xce\x3f\x78\xf7\xf9\xa8\xf1\xe1\xc8\x77\x9c\xd0\xcb\xcf\xce\x97\x23\x27\xd7\x84\x05\xd1\x9b\x6f\xce\xf9\xcd\x91\xe6\x34\x0a\x28\xec\xba\x60\x0e\x23\x17\xcc\x1b\x14\x12\x9f\x38\x38\x82\x11\xe6\x8a\x09\xa8\xe4\xba\x60\x1f\xc7\xa1\xf6\x1f\x7c\xe5\xf4\x18\x4e\xd4\xe9\xe7\x48\xc7\xce\xe2\x4e\xd4\xc3\xb4\x7c\xd8\x49\x18\x08\xdd\xe7\xfc\x30\xb1\xa0\xbd\xec\x90\x58\xce\xd3\x2a\xce\x1c\xa2\xbf\x0e\xa5\xdf\x44\x4c\xc2\xa1\xed\xeb\x10\xf5\x4d\x64\x02\x3a\xc4\x79\x1d\xaa\xbc\x19\xe9\x18\x87\xbe\xae\x43\x2b\x37\x07\xc7\xe9\x0f\x01\x15\xb3\x18\x72\xb0\xe8\x85\x43\xb4\xd5\xa1\xd6\x9a\x37\x53\x10\x2a\x99\x2e\x28\xff\x65\x6a\x27\x47\x6e\xdc\xc9\xe6\x78\x76\xe8\x56\x3a\x04\x2b\xb3\x37\x5b\xdb\x21\x4f\xe9\xd0\xa5\xcc\x7e\x6b\xe7\x64\x27\x4c\xc0\x7c\x0e\xd4\xf7\x1c\xb2\x7b\x79\x19\x7c\x71\x88\xe1\x39\x54\xf0\x4a\xc8\xdc\x88\xfe\x89\x2c\x5d\xa9\xe6\x84\x77\xc8\xb1\x39\x74\xd8\x2a\x7c\xbb\x0e\x1d\x36\x87\xc8\x5a\xcd\x66\x4e\x3a\xc4\xca\x1c\x2a\x65\x69\x59\x11\xae\x43\xa1\xcc\x21\x4b\x96\x56\xe6\xee\x84\xf1\x90\xef\x4a\xea\xf3\xc8\x50\x39\xb4\xa7\x72\xb0\xc4\x31\x87\x2e\x94\x93\x20\x54\xa4\x33\x20\x53\xe4\xd0\x26\xca\xf8\x97\x1d\xda\x44\x0e\x51\xa2\x4c\x81\xa7\x43\x32\xc8\xa1\x15\x94\x9f\xcc\xce\x97\x1b\xc1\x85\xfb\x34\x76\xd2\x93\x51\xd4\x29\x81\xe9\x17\xbd\x1b\x87\xd0\x4d\xc9\x4b\x3b\x79\x21\x2c\xe5\x65\xf3\x44\x8b\x23\x11\x76\x7d\x99\xd6\xd0\x75\x71\x08\xba\x94\x97\x59\x31\xd9\x08\x70\xc9\xc1\x78\x60\xce\x2f\x97\xcc\x15\xe7\x12\x3e\x38\x32\x0a\x5c\x32\xaf\x91\x4b\x91\x4f\x6c\xbe\x7c\x97\xcc\x15\xe4\x12\x3e\x20\x4d\x80\xc9\xe6\x1e\x97\xa8\x17\x09\x83\x9d\xe6\x63\x70\x29\x63\x92\xb2\x44\x26\x46\x47\x3a\xa3\xc3\x3e\x71\x22\xca\x99\xa8\x00\xc7\xaf\xe7\x12\x43\x26\x35\x85\xe2\xd9\x69\x36\xaa\x4b\x68\x2f\x55\x0b\xa7\x39\xe4\x54\x1c\x3a\x2a\x85\x04\x7d\x87\xbe\x88\x43\x58\xa4\x3a\x03\xa7\x0e\x69\x0f\x87\xa6\x47\xcd\xf1\xd8\x13\x98\x0f\xff\x3b\x83\x22\x9b\x1f\xcf\xe5\xa0\xf8\x8a\xbd\x2d\x48\xea\x1d\x7c\xf4\x39\x9a\x33\xc2\x41\x44\xee\x60\x20\xcf\x28\x01\x39\xb8\xad\x9d\x48\xad\x29\xd0\x72\xd0\x3c\x3b\xb8\x9d\x33\x4e\x7d\x07\x93\xb3\x83\xbe\x39\x6f\xcb\xd3\x77\x10\x35\x3b\xd8\x99\xf3\xb6\xb8\x99\x83\x71\xd7\x41\xb3\x5b\x50\x62\x76\x30\xd0\x3a\x68\x67\x4b\x30\xe4\xee\xa0\x2c\x75\xf0\x94\x16\xea\x75\x1d\x6c\x9f\x0e\x8a\xcf\x82\x20\x80\x83\x4e\xd3\xc1\xa3\x59\xe0\xb0\x75\xf0\x37\x3a\x88\x1b\x2b\x24\x92\x0e\xf6\x42\x07\x6d\x61\xcd\x66\xcc\x3b\x48\x05\x1d\x6c\x82\xb5\xf3\x01\x61\x2b\x73\x50\x94\xa5\x65\xb9\x25\x0e\x86\x1b\x07\xb5\x4d\x7e\xf9\x80\xb0\xb9\x38\x68\x5c\x32\x39\xe0\x0e\x12\x03\x07\x7b\x41\x81\x04\xd4\x51\x44\xef\xa8\x9e\xaf\xc1\x62\x09\x8e\xaa\x74\x47\x39\x7a\xcd\xe6\xed\x71\x94\xa3\x3b\xea\xd0\x2b\xf5\xe4\x8e\xca\x73\x47\x91\x79\x2d\x96\x89\xe9\x28\xc9\x76\xd4\x62\xd7\xc6\xc8\xa3\xa6\xda\x51\x4c\x5d\xbb\xa1\x32\x47\x31\xb5\xa3\x8a\xba\x76\x73\x24\x3a\xea\x7e\x1d\xc5\xbe\xcd\xb1\x2e\x51\x15\xe9\x28\x85\x6c\x83\x39\x8f\xc2\x3a\x47\xed\x5c\x2f\xd8\x23\x54\x93\x39\x4a\xc8\xb2\xcc\x2e\x6a\x82\x1c\x85\x40\xd9\xf3\x44\x14\x64\x38\xaa\x30\x32\xac\xb3\x8e\xaa\x08\x47\x29\x44\xee\x4c\x30\xe4\xf4\x3a\x12\x79\x4b\x64\x1e\x25\x25\xd7\x91\x87\x5b\xb2\x65\xa8\x3a\x72\x56\x1d\x89\xaa\xa5\xb2\x32\x90\xbe\xe8\xc8\x5b\x2c\xaf\xa5\x72\x38\x12\xa3\x1c\xd9\x50\x15\xc3\xdc\x91\x81\xe4\x48\x3d\xaa\xc5\x22\xd4\x8e\x44\x23\x47\x86\x51\xad\x96\xbd\xe4\x14\xbe\x27\x6e\xdf\x02\x4d\x22\xe6\xeb\x08\xf6\xb6\x86\x39\x43\xe0\xd3\x11\xed\x6c\xef\x60\xa7\xcd\x6b\x8e\xe8\x58\x2f\xd8\x62\x44\x23\x1c\x61\x88\x1c\x31\x63\xf1\x4e\x3a\xdc\x92\x99\x62\x58\x87\xfb\xcd\xe1\x77\xcb\x14\x6c\x3b\x3c\x27\x0e\x97\x49\x09\xe6\xf8\x74\x00\x51\x07\xfa\x2c\xd9\x30\x9b\x03\x8d\x38\x60\x48\x79\x2c\x25\xd5\x3d\x16\x7f\x71\x0f\x81\x17\xd8\x86\xdc\xc3\x38\x7a\xa0\xf6\xa1\x76\xdd\x3d\x16\x39\x70\x8f\x85\x0b\x6a\x36\x34\xed\x1e\x0b\x00\xb8\x27\xb2\x82\xb1\xfc\x3e\x24\x7f\x3c\x0d\x19\x8a\xca\x8d\x26\xd7\xa4\x76\xbd\x54\xae\xc9\x24\xf0\xd8\x24\xd0\x1b\x1d\xec\xd9\x34\xc9\x62\x79\x39\x60\xce\xbc\xbc\xa5\x97\xb7\xd4\x58\x2a\x5f\xe6\xfb\xd7\xe6\xfb\xdc\x58\xbd\x5f\x9b\xe4\xdc\x4b\x72\xde\x0b\xaa\x78\xcd\xbd\xef\x5e\x33\x32\x33\xc9\x1f\xee\x65\xf5\x7e\x71\xcd\x13\x34\x74\x2f\xa9\x46\x2f\x84\x9f\x90\xe7\xb8\x97\x2c\x9f\x17\xae\x4d\x12\xdb\xdc\x0b\xa2\x7a\x91\x75\x28\x18\x29\x2f\x53\xe5\x3b\x08\xc3\x06\x76\x9a\x95\xef\x5e\xd4\xee\x3c\x2b\xed\xcb\x02\xf8\x4e\x3c\xed\x2c\x2c\xaf\x99\xe9\xee\x25\x6e\x8b\x32\xb6\x7b\x99\x15\x5f\x42\xa4\x85\xf7\x39\xed\x4d\xb8\x49\x19\x2d\x75\x1f\x6e\x9a\xb3\xdd\x4d\x18\x75\xc0\xce\x6e\x1a\xe8\x72\x13\x36\x90\xc0\xe8\x98\x58\x6d\x93\xfc\x8f\x62\x01\x1e\x37\x99\x58\x26\x5c\x16\x05\x53\x6e\x9a\x3b\xc8\x4d\xfc\x40\x0d\x6b\x68\xb2\xf8\x4f\x16\x7f\xc7\x38\x9a\x18\xb5\x93\x48\x7d\x58\xda\xc9\x35\x09\x90\x67\x6c\xb1\xb9\x38\xd2\xf0\x78\x46\x37\xc0\x4d\x46\xf1\x24\xdd\xbc\x9a\x63\xde\x2d\x26\xd5\x65\x9f\xbf\x10\x68\x75\xcb\x3a\xa6\x5b\x01\xe2\x77\x2b\xf3\x74\x8b\xae\xb8\x22\x9f\x03\x7b\x64\xb1\x9c\x2d\xeb\x91\x35\x59\x5c\xd1\x2d\x70\xe7\x82\xa9\xb3\x98\x3f\xd2\x2d\xec\xfa\x65\xdf\xaf\xb6\xce\xe9\x98\x48\x0b\x3f\xd6\x30\x2f\xb7\x5b\x0c\xae\xc5\xfc\xb9\x41\x3f\x8b\x79\x69\x4d\x78\x95\x2a\x3b\x37\x3b\x89\x35\x57\xba\xf7\x66\x52\xdd\x9a\x54\x2b\x3b\x2d\xac\xe8\xb6\x75\xe8\x46\xc6\xa8\xdb\x98\x87\x9b\xd8\x43\x31\xca\x06\xb7\x49\xa8\xdb\x16\x54\xe8\xc5\x9c\x42\x6e\x93\xe7\xb6\xcd\xb7\xdf\x1b\x96\xe0\x26\x19\x6d\x9b\x37\xa0\x37\xcb\xd8\x75\x9b\x19\x6c\xa3\x95\x51\x1c\x3b\x59\xa0\x37\x0b\xf4\xb3\xf2\x5f\x0d\x8a\x6d\xfe\x1f\xb7\xcd\xf1\x53\xbc\x0d\x08\xef\x6c\x02\xf5\xce\x16\xdc\xda\x0d\xec\x79\x67\x86\x93\x77\x90\x00\xb3\x26\x7b\x67\x4f\xe6\x71\x70\xd4\xa9\x9d\x66\xf1\x7a\x5c\x1a\x75\xdb\xaa\xe8\x9d\x19\x14\xde\x99\x41\xd1\xa8\xe7\xf1\xce\xba\x8f\x77\x30\x4f\x64\x4b\xf4\xf0\x6e\x71\x4d\x28\xeb\x9b\x85\x4c\xbd\xb3\x57\xef\x1d\xf1\xfd\x61\x51\x66\x0f\xc2\xf5\x8e\x50\xfe\x63\xb8\xce\x7b\xfb\x2c\xde\xa3\x49\xef\xcd\xc5\xe0\x01\xba\x1e\xa0\x9b\x83\xf5\x29\xef\xed\x5b\x79\x6f\xdf\x2a\x17\x73\x59\x7a\x6f\x2b\x9f\xf7\x16\xc6\xcc\xaf\xa5\x69\x7b\xcf\x13\x79\x7b\xa2\x02\x05\x93\x07\x55\x7a\x0f\x4b\x2d\xfe\x58\x0f\x9c\xf4\xe0\xc8\x8a\x46\xa9\xf7\x2f\xa7\x43\x34\xf9\xd8\x70\xf4\xde\xa6\x6f\xef\xc5\xe3\x6f\x25\x46\xde\x6f\xee\x4e\xc2\x43\x36\x1b\xc7\x83\x00\x7d\x30\xbb\xa9\x75\x1b\x4f\x3e\x58\x34\xd8\x07\x9b\xcc\x1b\x11\x2a\x1f\x6c\x4e\xf7\x21\xb0\x58\x2d\x8e\xb4\x1e\xe6\x83\xc5\xaa\x7a\x35\x60\xe6\x83\x99\x33\x3e\x98\x39\xd3\x87\xe5\x04\xfb\xf0\xb0\xd3\xba\x4f\x49\xe6\x87\xf4\x81\x37\x1f\x90\x8b\xf3\x66\x50\xf8\x68\xf0\xd5\x47\x91\x0e\x9a\x99\xe0\x01\x5f\x3e\x3a\x48\x5c\x2d\xa0\xe0\x51\xea\xf7\x48\xf4\xd7\x61\x46\xbf\x47\xbf\xde\x23\x5c\x5f\x09\xfb\x79\xa4\xdf\x3d\x9a\xef\x95\x6c\x21\x8f\xfa\xba\x47\x72\xbd\xc1\x56\xe4\x81\x70\x1e\x08\xd7\x72\x61\xa7\x79\x0c\x3c\x22\xdc\xed\x31\xb7\x9a\x47\x8d\xd8\x23\x41\xdc\x8b\xe5\x2a\x79\x24\x7f\x3d\x00\xab\x57\x9b\x4b\x3c\x72\x9a\x1e\x1d\xcd\x92\xcd\x9f\xee\x51\x8d\xf4\xc8\x45\x16\x18\x3c\x7d\xb2\x70\xac\x4f\xc4\x61\x49\xf9\xf0\xc9\x3c\x5a\x3e\xc1\xaa\x44\xde\xae\x4f\xe6\x30\xf2\x49\x94\x42\x06\x9e\x3d\x4a\x8d\x1e\x89\xc6\xbe\x2c\x09\xd2\x23\x96\xe8\x51\x49\x2c\x69\x73\xa4\xb5\xc5\x23\x6b\x58\x86\xb9\xa6\x3d\x32\x82\x1e\xfd\xc0\xea\x2d\x20\xee\xd1\xe3\xf3\x88\xf0\xd5\xca\x87\x43\x64\xcf\xa3\xac\x57\x87\x45\x5c\x3c\x5a\x7a\x1e\x11\xbd\x3a\xcc\xe1\xef\x91\xb6\xf3\x68\xda\x55\xfc\x8c\x1e\x79\x32\x8f\x2e\x59\xf7\x83\x6b\x32\xde\x11\xbb\xea\xdd\x0a\x10\x3c\xa2\x4d\x1e\xb5\xa6\x8c\xb6\x9d\x07\x63\x78\x14\x73\xea\xab\x23\x07\xd7\xc4\xe0\xc5\xdf\xe4\x81\x1a\x1e\xa8\xd1\xf2\xe2\xee\xb6\xc4\x7a\x84\x51\xda\x93\x38\x7d\xb2\x13\x6a\x1c\x67\x86\xb9\x47\xbb\xc3\x23\xda\xd1\x23\xef\x13\xee\x7c\x5f\xc4\x3f\x68\xa1\x7d\x0f\xa9\xbc\x87\x4d\xbe\x91\xcd\xed\x21\x04\xf7\x30\x81\x67\x6f\x38\xd9\xc3\x85\xec\x21\x40\xee\xd5\x68\xcc\x3c\xec\xbb\x5e\xb4\xbb\xdb\x90\x8a\x87\xb2\xd5\xc3\xd5\xda\xa6\x67\x27\xd3\x5a\x11\xa1\x8e\xf9\xd6\x3d\x34\xaa\xbe\x48\xa4\xd2\x00\x84\x87\xb9\xd2\x43\x59\xd9\x87\xe1\x4f\x0f\x49\xa5\x87\x9d\xb2\x0f\x43\x54\x1e\x92\x47\x2f\x76\xc7\x42\xaf\x83\xa5\xd0\x43\x4f\xd8\xa7\xd9\x4d\x1e\x7a\x42\x0f\x2f\x61\x87\x57\xc3\xc3\x87\xe7\x45\x84\x87\xec\x92\x87\xfa\xce\xc3\x79\xd7\x89\x62\x7b\x08\xbe\x3c\xcc\x5e\xb9\x5a\xe2\xa6\x87\x2d\xc8\x43\x11\x94\x5f\x2b\xfc\xf0\xa0\x0a\x0f\xaa\x28\x54\x4a\x7b\xc8\x53\x3c\x8c\x29\x35\x58\xf4\xc2\xc3\x23\xe2\x21\x0f\xe9\xce\xd6\x64\x0f\xbd\x84\x87\x53\x22\xa3\x61\xe9\x61\x86\xf0\xd0\x41\x64\xfc\x8c\x9e\x4a\x63\x4f\x79\x71\x09\xda\x69\x91\x2f\x4f\x1d\x6a\x81\x67\xc0\x53\x62\xe8\xa9\x2b\xac\xd1\x72\x24\x3c\xd5\x81\x9e\x92\xc0\x9a\x3b\x4d\x32\xeb\xc4\xab\x0a\x8e\xdc\x60\x4f\xfd\x8f\xa7\xf0\x27\x07\x0b\x52\x78\x6a\x74\x3c\x85\x39\x99\x18\xa3\xa7\x58\xc2\x53\x21\x91\x6b\xe5\x74\x5b\xa8\x3d\x09\xe2\x79\xf3\xea\xc8\xc8\xf4\xa4\x62\x96\x6a\xc9\x01\x9e\x6c\x2a\x3f\x6c\x72\xac\x48\x60\x7b\x32\x42\x3c\xa9\x20\xad\x98\x5b\xcd\x13\x8e\xf6\xc4\xa1\x73\x62\x95\x21\x02\xec\x09\xfd\x66\xcd\xb4\x04\xbd\x3c\x91\xae\x8c\xa0\xb5\x27\xe6\xe4\x09\x2f\xe5\xc5\x7a\x34\x6c\xcd\xf1\x03\x7d\xd2\x60\x45\x17\x7e\xd8\x2a\xea\x87\x4d\x25\x25\x5a\x10\xd4\x83\x2a\x3c\xa8\xa2\x54\xb7\xff\x66\x50\xf8\x87\xaf\xfa\x90\xbe\x53\xcd\xac\xf1\x0f\x06\xc5\x83\x02\x03\xbc\x5d\xfe\x31\x5b\xc7\x3f\xc8\xd3\x11\xe7\xf2\x0f\x2b\xed\x83\xed\x10\x12\xa7\xdb\x87\xf7\x0f\x1c\xec\xd4\xcf\xfa\xa7\x73\xa3\x0e\xf3\xac\xa3\xbd\x9d\xd3\xcd\xd3\x5b\xeb\xe2\x48\x1b\xc6\xfe\x19\x62\x89\xb5\x77\xf0\x30\xeb\x3c\x0f\x3c\xa7\x8e\x26\xb1\x00\x3e\x8f\x48\xd5\x1b\x3b\x27\x3b\x59\xac\x8c\x5c\xdb\x3f\x2f\xa7\x53\x32\x4b\xd0\xc1\xbf\x66\xce\xfa\xd7\xcc\xd9\x44\x85\xa8\x7f\x2d\xfd\xc9\xbf\x28\x68\x40\xd2\xea\x81\x31\x5e\x30\x26\x64\x4e\xb7\x9c\x19\xff\xda\x42\x96\x93\x25\x38\xf8\xd7\x92\x5d\xfc\x9b\x21\x7a\x66\x59\x7b\x29\x64\x78\x01\x90\xc3\xaa\x98\xfc\x3b\xb8\x91\xf9\x1d\x0a\x19\xf4\xfe\xa5\x53\xbc\x70\x76\x67\x56\x6f\x60\x8c\x07\xc6\x14\x0c\x74\xff\xbe\x34\x09\xb6\xec\x46\xdf\x7f\x59\x00\x5f\x16\x40\xab\x82\xfb\x37\x3f\x0d\x55\xfa\x09\x45\xac\xa3\x4b\xce\xc4\x4e\xcb\x5c\xaa\xd1\x0a\xa3\xfc\xb4\x35\xd2\xcf\x44\xfa\x34\x2b\xc3\x34\x7f\xbf\x9f\xca\x4c\xb2\x38\x9d\x9f\x18\x29\xd3\x8c\x94\x4a\x92\xb7\x9f\x18\x29\xd3\x8c\x94\xda\x0d\xe8\xfa\x89\xd9\x35\x91\xc8\x1b\x8d\x9d\x58\x82\x73\x03\xdd\x13\xed\xb4\xe5\xd0\x4f\xc4\x68\x49\x82\xf0\x0b\xa3\x6f\x21\x0d\xe3\x2c\xbb\xd9\x2f\x8c\xa9\x65\x16\x48\xf7\xac\x36\x8b\xc6\x2f\x38\x5b\x1c\xcf\xbe\xf8\x1c\x8b\xcf\x91\x75\x4d\x03\x4a\x7e\x4d\x84\x2b\x0d\x44\xf9\x35\x29\x44\x31\x64\x5c\xa8\x63\xf1\x9b\xb9\x64\x23\xb2\xda\x18\xe2\x9b\xce\xb0\xad\x33\x94\x87\x25\x68\x5b\x1e\x9a\xdf\xc8\x9b\x20\x4c\xe3\xb7\x19\x37\x7e\x4b\xcd\x92\xb5\x6e\x37\x8e\x6c\xe8\x04\x1b\xaa\xf4\x9b\xe5\x77\xb3\xfc\xe2\x38\xf0\x7b\x70\xa3\x41\xae\xb6\x45\x4f\xfd\x36\xe7\xa5\xdf\x14\x9f\x77\xd6\xe4\x4d\x0f\xd9\x00\xdd\x4e\x4f\xde\x98\x1e\x1b\xd3\x83\xea\x43\xbf\xcd\x54\xf5\x5b\x4a\xc3\x9d\x26\x6d\x4e\x97\xa8\x30\x86\xcf\x66\x82\xd9\xa8\x66\x53\x13\x1f\x9c\xbd\xe4\xe0\xec\x25\x37\xd2\x87\x82\xb3\xae\x11\x5c\x82\xa4\xde\x50\x45\x70\x85\x9d\x05\x8a\x50\xf3\xa4\x04\x67\x2e\xf3\xe0\x60\x0a\x5d\x8b\x6b\x36\xae\x69\xd1\x8d\x4e\x59\x4b\x20\x8c\x19\x88\x5f\x76\xb7\xb8\x91\x85\x0e\x03\xa1\xc3\xee\x2d\xe1\x24\x78\xc3\x59\xc1\xdb\x2c\x5e\xb2\xe5\x60\x04\x4f\x78\xd0\x23\x57\xd0\x26\x3b\x6d\x9e\x08\xfe\x41\x0d\x84\x1b\xf9\x97\x20\x15\x9c\xf9\xcb\xd2\x2d\x82\x47\x90\xdb\xe3\xc7\x59\x16\x71\x0e\x98\xfe\xc1\x33\x0d\x13\xb4\x0d\xc1\xbc\x1e\x21\xc0\x8e\x5c\x39\x3d\x44\xe2\x7b\x90\x19\x57\x5b\x69\x43\xb0\xc5\x3f\x04\x5b\xfc\x2b\x5a\xc9\x21\xd8\x94\x10\x42\x95\xc6\xe8\x62\x67\x64\x67\x02\xe8\x72\xa3\xca\x35\x2d\xb8\x5c\xe1\x08\x0c\xa1\x12\x72\x84\xb1\xd5\x59\xe6\x48\x08\x36\xd4\x42\x80\xd9\xd4\xdb\xbc\x14\x82\x45\x87\x43\x80\xc4\x34\xf0\x44\xc1\xbc\xdc\x21\x2c\xe8\x61\x2d\xf7\x34\x04\xeb\x36\x21\x58\xb7\x69\x23\x73\xba\xc5\x02\x42\xb0\x58\x40\x1b\x36\x59\x85\x48\x8c\x2b\x42\xc4\xbd\x6c\xf6\x0e\xd1\x72\x12\x43\xb4\x50\x57\x2f\xe6\x4e\x0f\x44\x5a\x42\x2c\x54\x0f\xd8\xea\x1d\xa2\xd9\xa1\x21\x62\x87\x32\x10\x42\x7c\xd8\x89\x23\xfb\x99\x9c\x6e\xa6\x40\x40\xf7\xbf\x78\x5b\x65\x02\x82\xf1\x01\x9b\xbf\x24\x5b\xbd\x43\x42\xc8\x38\x99\x93\xb4\x74\x73\x53\x06\x10\x40\x00\x01\x94\xc7\x6c\xf0\x90\x08\x63\xa6\xa4\xce\x60\x8d\x4f\x99\xd3\x11\xaa\x85\x47\x21\x24\x33\xad\x42\xea\x4a\xeb\xb1\xb7\x94\x06\xa1\x3c\xdc\x16\x89\x37\x2f\xc5\x77\xa4\xde\x6b\xcd\xec\x9c\xc4\x0c\x27\x34\xe7\xe6\xf1\x09\xe8\xa3\x07\x20\x43\x1d\x16\xc5\x0e\x28\x4a\x07\x64\xa4\xeb\xb6\xa4\xe9\x80\x1c\x74\x40\x07\xba\x6e\xcb\x73\x0d\xd8\xee\x01\x89\xd5\xd6\xcc\x73\x1a\x50\xd0\x0c\x48\x67\x36\xb8\x87\x02\x62\x99\x81\x48\x42\x9b\x85\x1b\x99\x53\x3d\x20\x81\xd9\xa6\x19\x68\x01\xd1\xcb\x80\xda\x65\x83\x61\x2d\xa0\xda\x18\x90\x6a\x6c\x96\x0e\xf8\xcf\x06\x45\x40\xc5\x30\x20\x5d\xd8\x7d\xe1\xda\x86\x93\x03\x72\x73\x1d\xde\xe3\x80\xc4\x5b\x40\xd7\xad\x23\x22\x12\xd0\x6b\x0b\x45\x69\xf7\xe6\x27\x09\xc8\x7d\x05\x74\xbe\x72\xb0\x40\x46\x40\x8e\x27\xa0\xc3\x93\x97\x41\xcd\x80\x06\x4d\x40\x7c\xa6\x78\x8b\xd7\x05\xa4\x54\x02\x1a\x2a\x25\x55\x76\x9a\x41\x19\xd0\x37\x28\x8f\xd9\x64\x01\x6d\x83\x80\xa8\x41\x79\x6c\xf9\x0d\x88\x08\x84\x22\x54\x69\x6b\x5d\x80\xe4\x3c\xc0\x6e\x5e\xb3\xb9\x98\x02\x3c\xd9\x01\x82\xec\x8a\x10\x4a\x80\x4e\x3a\xc0\x23\x5d\xd1\x35\x0a\xd0\x0e\x07\xf8\x86\x2b\xf4\x20\x81\xb8\x44\x80\xce\xb7\xee\xc5\x35\x69\x12\x74\x9a\xad\x5a\x64\x27\x40\x68\x19\x60\xb1\x6c\x10\xc7\x06\x78\x12\x03\x04\x89\x0d\xe6\x9b\x00\xdd\x5f\x80\xe7\xaf\x11\xab\x0c\x10\x63\x05\xd8\xb0\x3a\xcc\xc4\x01\x2e\xa8\x00\x01\x54\x7f\x98\x8a\x20\x7f\x0a\x30\x3e\xf5\xa7\x70\x3a\xbd\x8f\x50\x42\x7f\x75\x77\x5b\xd6\x82\x42\x09\xde\xdc\x16\x01\xb6\xa4\x00\x4d\x52\xf6\x46\x4d\x14\xa0\x40\x0a\xe2\x3d\x0a\x8d\x9d\x8c\x66\xd8\x1c\x0a\x01\x82\x40\x51\x69\xa0\x7e\xb4\x46\x33\xbb\x02\xd5\x9d\x01\xab\xbd\x26\x8b\x27\x07\x2a\x16\x03\xc5\x89\xb5\xd8\xb2\x16\x08\x17\x04\xea\xfb\x6a\xe3\x6b\x52\xd0\x11\xa8\xe4\x68\x89\x49\x0b\xc3\x3e\x0c\x1b\x80\xad\x16\x8e\xb4\x6f\x1b\xc8\x87\x6f\xdd\x73\x24\x29\x11\x64\x7c\x37\x94\xa8\x02\xd9\xbe\x81\x14\xdf\xb6\xf8\x46\x24\xc5\x06\xb2\x61\x1b\x9c\x78\x01\x5c\x10\x48\x4a\xed\xde\xe2\x9f\x81\x54\xd3\x40\x8e\x69\xf7\xcc\x10\x64\x95\x06\x52\x49\x3b\x89\x70\x81\x04\xd1\x40\x66\x68\x0f\x7a\x22\x46\x1c\x69\x65\xbd\xeb\x46\x4c\x99\xe4\x84\xf5\x3e\x39\x92\x11\x37\x18\x71\x24\xab\x86\x87\xc5\xea\xc1\xe0\xa5\x54\x23\x3c\xa4\x6e\x3c\x08\x7c\x15\xb3\x08\x02\x81\x85\xf0\xd8\xd7\x2c\xf8\x86\xc2\xc3\xc2\xf2\x34\xe6\xd1\xc1\x91\x0f\x47\x3e\xc8\x53\x58\x01\x6f\x78\x58\x69\x1f\xd1\xe6\xb0\xda\x3c\x4c\x99\x0f\x53\x66\x60\xf5\x7e\x58\x7e\x1f\x3c\xbd\x28\xe2\x84\xc7\xdc\xd4\xe1\x41\xb0\xa4\x5a\x48\x2e\x3c\xac\x4b\x0f\x95\x4a\xcd\x12\xec\x02\x81\x8c\x40\x20\xa3\x36\x73\x03\x85\x97\xc9\xf5\x65\x72\x7d\x31\x67\x5e\x26\xd7\x97\xc9\x15\xa9\xfe\xf0\x22\x71\x0f\x3a\xa8\x9b\x75\xe9\xb5\x65\x3b\x80\x00\x5a\xb0\x7a\xbd\xf0\x1a\xfa\x09\x98\xf7\xad\x76\xae\xc9\x77\x7f\xf9\xee\x88\xda\x84\x97\x4f\xfc\xc2\x3d\x3e\xcc\x88\x0e\xaf\x79\x9f\xc2\x6b\xc3\xbe\xbd\x96\xd2\x12\x5e\xa6\xe1\x97\x69\x58\xa6\xc7\x6b\x40\x27\xbc\x90\x41\x7b\x4c\x8f\x97\xb9\xf9\x85\xa6\xc8\xeb\xee\x18\x29\xef\x82\x08\xdb\x22\x8f\x61\x9a\x6f\x3e\x4c\xcb\x42\xe9\x48\x88\x85\x69\x3e\xba\x30\x23\x84\xc7\xe6\xd4\x0b\xd3\xec\xd7\x30\x09\xcd\x14\xab\x4f\x0b\xd3\x5c\xc9\x61\x52\xd6\x0e\xe1\x73\x20\x90\x11\x08\x64\x54\x54\x7e\xc2\x34\x53\x35\x10\xba\xa8\x30\xe8\x87\x69\xce\xfc\x30\x71\xe6\x17\xd6\xe4\xc9\x27\x9e\x7c\xe2\xc6\x9a\x3c\xad\xb7\x86\x89\xe6\xce\xa0\xdb\xcc\xc5\xdd\x29\x7b\x7b\xcc\xcf\x18\x16\x4d\x5a\x14\x1a\x74\x4c\xb9\x65\xb9\x6b\x61\x59\xd2\x5a\x8f\x99\x23\xb9\x11\x51\x83\xde\xad\x2c\x3b\xac\xc9\xe9\x78\xa6\xba\xb9\xe8\xc3\xa2\xdb\x2c\x6a\xd9\xe0\x2d\x0b\x6b\x73\xa4\x01\x96\x3e\x0d\x7b\x87\x6d\xee\x80\xb0\x6d\xd6\xc8\x9e\x4f\x0c\x56\x08\x60\x85\xfc\x9a\x61\x1e\xb6\xb9\x50\xc2\x46\x03\x13\xea\xa2\x40\xb4\x21\x6c\x0b\x9f\x15\x72\xbf\xc3\xe6\x1b\x6d\xfb\x46\xa5\x30\x3a\xb6\xb9\x4c\xc3\x36\xd3\xb1\x20\x45\x1b\xb6\x7d\x9c\xb0\x09\x9b\x12\xf3\x0d\x1b\x1b\x67\x63\xe3\x90\x29\x1f\x36\x36\xf8\x46\x35\xbe\x9b\x8f\x20\xec\x46\xe3\x51\x4f\xdb\x18\x3e\xdb\xb0\x7a\xd8\x1d\x49\x08\x73\xf7\x07\xe0\x44\xd8\x38\xf5\x3a\xef\x73\xdb\x32\x18\xb6\x6a\xf5\x30\x78\x01\x09\x61\x53\x88\xe7\x8d\xa0\xdf\x32\xee\x2c\xf1\xce\x4c\xf8\x6c\x55\x51\xd1\xd9\x34\x13\x9d\xf9\x1b\x7a\xcb\xee\x6f\x06\x45\x04\x6b\x44\x67\xf6\x5a\x7f\x2c\xff\x36\x3a\x1b\x64\xd1\xd9\x20\xcb\xa8\xea\x46\x72\x2c\x23\xc9\x95\xb9\x58\xe6\x6b\x3c\x99\x93\xe4\x4e\x3d\xe6\xc7\x8b\xce\xbc\x50\xd1\x99\xf7\xbf\x92\x8b\x16\xdd\xc3\x8d\xf0\x26\x04\x23\xe3\x89\xee\x25\xed\x93\xca\x5c\xfc\x23\xd1\x4d\x6e\x44\xa2\xee\xb0\x29\x33\xba\xc5\x8d\xe8\xa7\xdb\xfa\x54\xf4\xb6\x26\x47\xcf\x9a\x5c\x0d\x98\x45\x65\xe5\x79\x8f\x46\x83\x79\x11\xa3\x47\xea\x93\x78\x46\x43\x64\x30\xfa\xc4\x4e\xf4\x45\xb6\x59\x99\xd1\x17\x76\xb2\x7a\x53\x31\x16\xbd\x59\x19\xd1\x9b\x95\xd1\xab\x75\xf3\xe8\xed\xc3\x47\xe2\x20\x9d\x62\xdf\xe8\x0d\x9e\x47\x5f\xa1\x92\xe7\x2d\x79\x72\x41\x3d\xea\x04\x08\x25\x46\x4f\xe6\xa4\xc7\x1f\x4e\xed\x6e\xf4\xbc\x3a\x0f\x7f\x3e\xd5\x88\x11\xf4\x14\xbd\x4d\xe6\x7d\x5b\x06\x47\xf4\xe6\x39\x8f\x5e\xa9\xd8\x99\x1b\x21\x82\xed\x5f\xaa\x7c\x5e\xed\xe4\x9a\xb6\x82\x65\x68\x5d\x23\xc9\x79\xd1\x83\xd2\xf7\xcb\x35\x27\xef\x93\x94\xa6\x62\x51\xcd\xe8\xcd\x8a\x8e\x5e\x8e\x77\x9d\xbe\xb9\xbb\xd9\x15\x15\x85\x85\x18\x2c\x09\x2d\x06\x64\x93\xba\xe5\x26\xc4\x60\x1f\x27\x06\xf3\x84\xd6\x61\x25\x39\x31\xd0\x79\x03\x76\x13\xc2\xb7\x91\x78\x4d\x54\xbc\x86\x70\x5f\x0c\x36\x65\xc6\x80\x22\x8c\x1e\x33\x20\x2d\x1a\x12\x03\xc2\xcc\x99\x18\x6c\xb9\x88\x41\x9f\xc3\x26\x98\x08\xd8\x8b\x80\xbd\x5e\xe9\x36\x80\xbd\x08\xd8\xeb\xad\x70\xba\x99\x5d\x11\xcc\xd7\x09\x32\xc7\x80\x04\x3c\x89\x7b\x7d\xf2\x35\x83\x8d\xd8\x18\x2c\x83\x35\x03\xc8\x63\xb0\x0c\x80\x18\x26\x6e\xa0\xc4\x0b\x99\x3c\xfb\xc4\xa9\x97\x78\xcc\xc9\xb3\x93\xdf\x8d\x10\x54\x0c\x08\x76\x81\x0e\xeb\xb2\x90\x5c\x8c\xe6\x68\x8c\xd1\x1c\xb0\xed\x31\x3f\x73\x24\x4c\x14\x23\x2e\x1b\x6f\x58\x31\x46\xf3\x25\xc6\x88\x8c\xeb\xe3\x39\x3d\x71\xa4\x41\xc6\xfe\x5a\x72\x5e\x8c\x66\x7a\x44\x20\x63\xa7\xa2\x21\x46\x3a\x2d\x99\x77\xf9\x31\x44\x1d\x89\x16\x45\xa2\x45\xe5\x71\x9c\xce\x78\x8f\x58\x82\xce\x16\xea\x18\x49\x8a\x8e\xa8\x49\x06\xcb\xed\x8b\x24\xe7\x45\x92\xf3\xea\xb0\xe4\xbc\x18\xcd\x71\x10\xa3\xad\xc2\xad\x30\xb1\x90\x6b\x17\xa3\x19\x29\x0d\xf9\xf3\x18\x5f\x4e\xa7\x4a\x00\x58\x18\xa3\xf5\xeb\x18\x5f\xb8\xfb\x79\x9f\x71\x72\x24\xab\xcd\xb0\x6c\xc5\x98\xcc\xe6\x88\xc9\x56\x8d\x12\x9c\x76\x2e\x76\x9a\x13\xea\x31\xd7\x67\x04\xa9\x46\x90\x6a\xaf\xe6\x91\x8c\xc9\xf0\x75\x4c\x96\x71\xd0\x1f\x9e\x28\xd1\x97\x12\x7d\x09\xdd\x12\x53\x7f\xb4\x9d\x18\x7d\x85\x23\x51\xf6\x24\x67\xae\x14\x5b\x82\x22\x08\x37\x26\x73\xaf\xb4\xa7\x73\xa3\xce\xe9\x06\x9e\x1a\x65\x47\x31\x0d\x8a\xe5\x24\xe1\xc1\xe8\x20\xbb\x2e\x26\x48\x14\x97\xb9\x68\x63\x62\xfe\x4c\xc8\x43\xc0\x5d\x1d\xd3\xcb\x8d\x5e\x6c\x46\xcf\xe9\x93\xc6\x83\x93\xeb\xd4\x4e\xae\x69\x5d\xb1\xf9\xc5\x35\xd1\xc4\x03\x43\xb7\x62\x4b\x50\x04\x4a\x47\xa2\x6f\xad\x5b\x22\x40\x24\x8d\x2f\x92\xc6\xd7\x1e\xe3\x3c\x8f\x59\xe2\xcf\x01\x45\x0e\x8b\x05\xc4\x1c\xd0\x39\xb3\x08\x54\x1f\x66\x72\xc6\x6c\xab\x54\xcc\x91\x4f\x6c\xb8\x33\x66\xb4\x87\x33\x9e\x53\x67\xeb\x7c\xcc\xe8\xfe\xe6\x41\x1a\x7b\xe0\x48\x1b\x94\x91\x4c\xbd\xe8\x18\xda\x19\x5e\x0b\xa2\x68\xd1\x75\xed\x1c\xec\x7c\xc9\x89\xb7\x4e\x9b\x99\x54\xc1\xc7\xd1\x59\xb8\x3c\x16\xd1\xc8\x99\xa3\x3f\x3a\x9a\x84\xe8\x77\x2c\x4a\xad\x1e\x1c\x69\xe0\x29\xa2\x6f\xeb\x12\x93\x55\x11\x45\x30\x99\x18\x64\x70\x44\xc4\x52\x23\x8a\x9d\x2e\x45\x76\x9a\xf3\x31\x22\xca\x19\xbc\x71\xa0\x46\xe2\x5f\x11\x91\xb6\x8d\xc0\x7b\x24\xaa\x15\x89\x6a\xd5\x61\x54\x0c\x11\xf9\x9f\x88\xee\x4f\xd5\x8a\x00\xc0\x8d\x00\xdc\x06\x55\x4a\x84\x0e\x3f\xc2\x81\xdf\x1a\xb3\x0d\x78\x35\x42\x46\xdf\x9a\x05\x1b\x22\x95\xcd\xf1\x94\x34\xa7\x43\xc4\x15\x1f\xf8\xf3\x1e\x74\xf3\xaa\x5b\x7f\x1a\x15\xa1\xff\xaf\x36\xc5\x2c\xf0\x50\x01\xd8\x36\x15\x3c\x24\x01\x24\x2f\x1a\xd3\xf4\x4e\xb1\xad\x7a\xfb\x8e\xc9\x8b\xa3\xe4\xe7\x0f\x6a\x42\x83\x7d\xf5\x44\x5a\xf7\x12\xa7\x50\x30\xd3\x34\x05\x12\x2f\x1c\x35\xb2\x09\xc2\x81\x94\x7f\xf5\x8f\x94\x70\x87\x91\x8e\x7a\x77\xda\x80\x49\xe9\xc5\x4e\x82\xca\x34\xa1\xa7\x92\xce\xe2\xc9\x91\x70\x71\x68\xdc\x78\x8a\xbd\x92\xcd\xf2\x29\x31\xaf\x7b\x6a\x97\x18\x45\x89\x51\x14\xc5\x02\x95\x3d\x15\xe7\x1e\x4e\x1b\x78\x25\x33\x29\xbc\xd9\x2a\x05\xc2\x82\x9f\x82\x41\x91\xc8\x62\x0d\x8b\xea\xa8\x4c\xd1\x79\x8e\x1c\x49\xb1\x67\x46\x8a\x8c\xd1\x90\x71\xaa\xa4\x5c\xa8\x9d\xb4\xfe\xd8\x08\xc4\xa6\x3c\xa9\xfe\x9f\x57\xc1\xe2\xca\xe2\x27\x08\x06\x3e\x29\x09\x2f\x95\xfd\xc2\x1f\x1f\xf3\xa5\xe4\x22\xa9\x07\x2d\x66\xf6\x15\xd1\xfe\x97\xcd\x65\x58\xfe\x93\x24\x95\xa0\x18\xab\x38\xaa\x3d\x24\x38\xd5\xfa\x42\xaa\xf4\x85\x2c\xcd\x8e\xce\x91\x36\xf9\xf5\x20\xd2\x7b\xca\x0f\xdb\xf8\x6a\x6b\xa9\xc3\xee\x36\x71\xa6\x6e\x27\x85\xa8\x1a\x7e\xf4\x10\xf1\x29\xf4\x3d\xe6\x9f\x9d\x72\xfd\xfb\x7c\xff\xdb\xf8\x8f\xff\xf2\x7f\xfe\x5f\xe3\x3f\xfe\xef\xf1\xdf\xd6\xbf\xde\xff\xf9\x9f\xff\xb9\xfe\xfd\x7f\xcc\xff\xfa\xfe\x8f\x7f\xfd\x1f\x3f\x7b\xff\x35\xd7\xfe\xaf\xff\xbe\xfe\x73\xfd\xbf\xff\xfd\x7f\xfe\xe7\xbb\xfe\xf5\x1f\xff\xfd\x3f\x7e\xce\xb2\xdf\xff\x17\x00\x00\xff\xff\xec\x4a\x35\xdf\x39\x08\x04\x00"); +var _faa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x5a\x4f\x8b\x27\x39\x72\xbd\xd7\xa7\xc8\xe3\xfa\xb0\x6e\x29\x32\xf5\x27\xa1\xf9\xc1\xd2\xdb\x0b\x7d\xd8\xb1\x71\x7b\xc6\x06\xe3\xc3\x2f\x53\xca\xa6\xc0\x5d\x55\x54\x57\x1f\xe6\xdb\x1b\x49\x2f\xf4\xa2\x06\x83\x77\x87\x65\x34\xf9\x4a\x59\x21\xbd\x54\xe8\x45\xbc\xfa\xf0\xe9\xcb\x5f\xbf\x3c\x3d\xbe\x2d\x1f\xfe\xf5\xf5\xf9\xfc\x5a\xdf\x96\xeb\xf1\xa9\xbc\xd6\x1f\xcf\x3f\x5f\xcf\xba\x1c\xf5\xdb\xe3\xd3\xc3\x83\x97\xa5\x3c\x9e\x6f\xfa\x9f\xfd\x5f\xe7\xf7\xfb\xcb\xc3\x43\x9b\xff\xf5\xf7\x1f\x6f\xf5\xfb\x97\xa7\xeb\x79\x59\xc7\xcf\x95\x9f\x2f\xf8\xd9\x65\xf9\xf0\x6f\xf5\xdb\xe3\x8f\xb7\xd7\xdf\x97\x3f\xfd\xa5\x3c\x1f\xf5\x9f\x96\x52\xaf\xf6\xfc\x5f\x5e\x4b\x7d\x7d\x7c\xfa\xb6\xfc\xe9\xd3\x2f\x5f\xfd\x7c\xfc\xf5\xe7\xcb\xcb\xff\xd4\xef\xf5\xe9\x6d\x71\xfd\x59\x7d\x2a\xfd\xdf\x0f\x1f\x3e\xfd\xfd\xfe\xf2\xcb\xfd\x7b\x5d\x3e\x7c\xfa\xe5\xeb\x9f\x3f\xff\xfa\xe9\xcf\xbf\x75\xa4\x03\xbf\xd5\xd7\x1f\x8f\xcf\x4f\x8b\x77\xff\xec\x5c\xe4\xf3\x7f\xff\xfd\xa5\x2e\x1e\x6f\xf8\xcf\x5f\xbf\xfc\x75\xf9\x2f\xbf\x78\xb7\x48\x58\xf3\xfe\xdf\x78\xfe\x1f\x7f\x7f\x2e\xf3\xa7\xc2\x88\xfd\x7c\x2e\xf5\xc7\xcb\xfd\xac\xaf\xf7\xa7\x6f\xf5\x61\x59\x3e\x3a\x77\x5b\xc6\xff\x3e\x66\x77\x6b\x4f\xf2\xe7\xbf\xf8\xf6\xcf\x6d\x0c\xff\xf6\xf9\x6f\x9f\xf5\xb9\xf0\xb9\xd8\xe7\x2b\x9f\xaf\xf3\xf9\x78\xd6\xdf\x3c\x9e\xd5\xa7\xf2\x87\xdf\xff\xe0\x47\x58\x4f\xcf\x6f\xa5\x5e\xe3\x59\x8f\xe8\xa3\xbf\x6e\x8b\x5f\xe3\x96\xdb\x2c\x0b\x3f\x78\xe7\xb0\x96\xc7\x82\x19\xd2\x66\xa4\xaa\x33\x3e\xe6\x7a\xf7\xed\x9f\x16\xd1\x18\x1e\xb7\x65\xdf\x27\x70\x12\x38\xc7\xa4\x38\xb1\x32\xb1\xe3\x7e\x5b\xbc\xf7\x8a\x1c\x07\x91\xe3\xb6\x78\xd9\x26\xc2\xf7\xb5\xa1\x97\xf9\xb6\xc3\xbc\xad\xbc\x47\x2a\x91\xbe\x54\xa7\xc8\xe9\x26\x72\xfa\xf7\x88\x10\x59\x1b\x32\x23\x38\x37\x22\xe1\x3d\x12\x89\xa4\x86\xcc\xed\x39\x33\x91\xfd\x3d\x72\x27\xd2\x56\xba\xc9\x44\xb8\xd2\xb3\xbc\x47\xb8\x9e\xb3\xad\x87\x3b\x5a\xb8\x9e\xe2\xdf\x23\x5c\x4f\x69\xeb\x09\x73\xa5\x85\xeb\x29\xe1\x3d\xc2\xf5\x94\xb6\x9e\x30\x57\x5a\xb8\x9e\xb2\xbf\x47\xb8\x9e\xd2\xd6\x13\xe6\x4a\x0b\xd7\x73\x55\x8b\x08\x3f\x1e\xe9\x7b\xbd\xaf\x8a\x70\xaf\xfb\xb0\x7d\x3d\x69\x62\x61\x62\xed\x7d\x22\xfa\xcd\xad\x7c\xdf\xda\xb6\x4a\xb2\xce\xd9\x88\x6c\x6d\xce\xba\xea\x6f\x0a\x44\x42\x3d\x6f\xcb\x26\x3a\x27\xd4\xb9\xdb\xe1\x72\xb7\x25\x38\x9d\x13\x39\x27\xb6\x4f\x2c\x38\xdd\xed\x44\xa4\x0f\xc3\x1e\x26\x22\x44\xb6\xdb\x12\x56\xce\x09\x44\x42\x9b\x43\x24\x12\x89\x6d\xce\x3e\x91\x44\x24\xdd\x96\xe8\x64\x22\x99\x48\xbe\x2d\x61\x73\x13\xd9\x89\x9c\x6d\xce\x3a\x91\x42\xe4\x6a\x73\xf4\x3c\xa6\x63\x7e\x57\x7d\x18\x5d\x9a\x08\x57\x7a\xf4\x95\xee\x79\x42\x5c\x6a\x1b\x46\x47\x64\x25\xb2\xde\x96\xe8\x67\x70\xc7\x46\xa4\x6d\xcf\xb6\x4d\x84\xdb\xd3\x86\xd1\x33\x38\x6e\x4f\x1b\x86\x7d\x66\x9f\x74\x70\x7f\xda\x30\x6c\x93\x87\x83\xfb\x73\xec\xed\x75\x73\xe7\x8e\x3b\x91\x7b\x9b\x33\x79\x60\x56\xea\xc3\xe8\x1c\xe3\x3e\x09\x9d\x6d\x12\x37\x88\x9b\xda\x86\xd1\x73\x45\x95\x48\xbd\x2d\x71\x7e\x8c\xa9\x65\x29\x33\x8c\xce\xcd\xb8\x99\xb1\x52\xcb\x58\x71\x66\x9f\xc4\x8c\xd5\x87\x61\x26\xe7\x74\x72\xbb\x5b\x8a\x8a\xfc\xe6\x4e\xee\xcf\xd9\xf7\x67\xee\x1c\x33\x56\x6a\x79\x29\xce\xec\x93\x98\x97\xfa\x30\x3a\x7e\xf6\x27\xd7\xda\x86\x4c\xf5\x89\x29\xab\x0f\xc3\x4c\x32\xe9\xe4\x5a\x5b\xf6\xe2\x9d\x92\x0a\x3f\xad\x96\xbd\x62\x98\x21\x14\x2e\xa8\xa5\xac\x10\xe6\xb7\xc0\x94\x95\x5a\x8e\x8a\x33\x31\xa5\xc2\xcf\xbe\xe5\xa8\x60\x10\xd2\x5a\x06\xad\x93\x3c\xe6\xac\x54\xae\xdb\x92\x64\x86\x5d\xc9\x43\x1b\x26\x99\x0c\x55\x86\xdd\x86\x21\xcc\x4d\xa8\x64\xa8\x86\x36\x87\x08\xc3\x6e\xc3\x10\x66\x04\x95\x0c\xd5\x72\x5b\xd2\xca\x08\xb8\xa5\x6d\x18\x9d\x79\x1d\xf7\xf4\x92\x36\x69\xbe\xee\xe2\xce\xb5\x61\x74\x32\xb7\xfb\xe2\xd1\xbb\xf2\x6d\x49\x3c\xfd\x17\xb7\xae\x0d\xa3\x9b\xa9\x36\x5d\x3c\x2c\x57\x0b\x8f\x8c\x5f\x0c\xaf\x0d\xf3\xdc\xef\xcc\xe4\x98\x5b\x3a\xcb\x21\x4c\x24\x11\x49\xb7\x25\x47\x99\x48\x26\x92\x1b\x12\x27\xb2\x13\xe9\xbc\xe6\x89\x4c\x5e\x73\xcb\x3f\x39\xea\x2e\x64\xe6\x9f\x3e\x8c\x8e\xaf\x63\x02\xca\x2d\x99\xe4\x34\x83\x63\x2e\xc9\x5d\xad\xb8\x79\x92\xf3\x61\x7e\x53\xfb\x82\x3c\x03\x67\x62\xc8\xed\x90\x7b\xe7\x67\x7c\x3c\xe5\xb9\x5f\x7b\x4e\xe6\x2c\xde\x7b\xb9\x9d\x31\xcf\x1d\xcf\x3c\x63\x7d\x18\x7d\x5c\x27\x54\x09\xd5\x0e\xcd\xdf\xc5\x53\x96\xdb\x59\xf2\x6e\xde\x21\x99\x87\xa9\x0f\xa3\x8f\x84\x18\x46\xbf\xe6\x25\xcf\x17\xf2\x9e\xef\xc3\xb8\x72\xa3\x78\x9e\x72\xfb\xe2\xbd\xec\x5b\x97\xa3\x2a\x21\xff\x2f\x55\x89\x1f\x67\x28\x6d\x18\xa2\x9b\x08\x23\xa9\x5d\x08\xcc\x33\x9a\x6b\x20\xd4\x55\xd7\x4c\xe5\xb9\xf2\xab\xa9\x4d\x8c\xc4\x3c\x79\xae\xe4\xa5\x0d\x43\xf4\x13\xe1\x06\xb7\xfb\xde\xc7\x79\x79\xe7\x8b\x5f\xee\x75\xdc\x16\x71\x7c\xdf\xc5\xf7\x75\x35\xc2\x54\xba\xf3\x7b\xef\xc3\x94\x56\x3f\x21\x21\x24\x6d\xd6\xcc\x71\xfb\x7d\x25\xb4\xf6\x59\x84\x36\x42\xa1\xcf\x5a\x27\x14\x09\x1d\xb7\x65\x75\x1b\x7f\xd7\x49\xa8\x69\x9f\xe0\xc3\x84\x2e\x42\xd7\x6d\xd9\xdd\xcc\x59\x3b\x6f\xfe\x3e\xdc\x79\xc2\x77\x5e\xfd\x7b\x3b\x45\xeb\x3e\xbf\xc4\x9d\xa7\x68\x6f\x97\xf5\xb6\x72\x5d\xbc\xad\xfb\x70\x4b\xf3\x4e\xde\x79\xc2\xf6\x76\x3d\x07\xb7\x71\xd6\x4e\xa8\x7f\x89\x4e\xa7\x9d\x94\x8f\xa7\xb4\x2b\x31\xe8\xe1\x3b\x29\xf7\xce\x2e\xf7\xa6\x0c\x3b\x29\xf7\xce\xd0\x90\x98\xc1\xd6\x49\x51\x77\xc6\x86\xa4\x8c\x45\x9d\x14\x75\xe7\xc8\x68\x09\x9f\xe0\xc9\x8c\x76\x76\xf2\xf7\x84\x4d\x3f\xc9\xfd\xb9\x77\xd1\xeb\xa2\x86\x70\x27\x74\xef\x90\x0f\x1a\xc3\x41\xe8\xe8\x90\x28\xc1\xe7\x49\xe8\xec\xd0\xaa\x4a\xe3\x2c\x84\x4a\x87\x36\xe5\xfe\xac\x84\xea\xd0\xde\xab\x86\x71\x11\xba\x3a\x14\x35\xd5\x14\x37\xa1\xe2\x3a\x94\x04\x61\x14\xd6\x7b\x65\x88\xf9\xec\x11\x46\x21\x1d\xa5\xeb\x72\xbf\xab\x52\x2b\x14\xe6\x65\xed\x87\x64\xea\x9a\x42\xaa\xca\x36\x20\x15\x71\x85\x5c\x95\xce\x95\xcc\xfa\xa0\x90\xac\x12\x47\x0d\xa0\x52\xbf\x90\xad\xd2\xd9\x92\x35\x6b\x18\xa4\xab\x8c\xb3\xba\x69\xee\x2a\xe4\xab\xec\xe3\x18\x6b\x32\x2c\xe4\xab\x74\xbe\x24\xea\xe7\x5e\xc8\x57\xe9\x7c\x49\xd2\xfb\xbb\x90\xaf\xd2\xf9\x92\xac\x5a\xa5\x90\xaf\xd2\xf9\x92\x5d\x3f\xe9\x42\xbe\x4a\xe7\x6b\x9d\xe9\xba\x90\xaf\xd2\xf9\x5a\xbd\xca\xc6\x4a\xbe\x6a\xe7\x6b\x15\x2d\x62\x2a\xf9\xaa\x7e\x14\x3e\x82\x30\x2a\xf9\xaa\x9d\xaf\x75\xd3\xbc\x50\xc9\x57\xed\x7c\xad\xc1\x21\x8c\x4a\xbe\xea\xa8\xa4\x66\x19\x51\xc9\x57\x0d\x03\xda\x35\x0c\xf2\x55\x3b\x5f\x6b\xda\x35\x0c\xf2\x55\x3b\x5f\x6b\xce\x1a\x06\xf9\xaa\x9d\xaf\x75\x4f\x1a\x06\xf9\xaa\x9d\xaf\xcd\x25\x0d\x83\x7c\xd5\xce\xd7\xe6\xf5\xfe\xaf\xe4\xab\x76\xbe\x36\xd1\xec\x5f\xc9\x57\xed\x7c\x6d\xab\xaa\x93\x4a\xbe\x6a\xe7\x6b\xdb\x34\xc5\x57\xf2\x55\x3b\x5f\x5b\xd8\x34\x0c\xf2\x55\x3b\x5f\x5b\x54\x31\x76\x91\xaf\xab\xf3\xb5\xcd\x8b\xe1\x22\x5f\x57\xe7\x6b\xcb\xaa\x2f\x2f\xf2\x75\x75\xbe\xb6\xdd\x23\x8c\x8b\x7c\x5d\x9d\xaf\xe0\x3c\xc2\xb8\xc8\xd7\x35\x52\xa1\xd7\x0b\xf4\x22\x5f\x57\xe7\x2b\x88\xd3\x30\xc8\xd7\x15\x07\xa4\x19\xf4\x22\x5f\x57\xe7\x2b\xac\x9a\x42\x2f\xf2\x75\x75\xbe\xc2\xa6\x39\xf4\x22\x5f\x57\xe7\x2b\x04\x4d\xa2\x17\xf9\xba\x3a\x5f\x21\x6a\x16\xbd\xc8\xd7\xd5\xf9\x0a\x49\xb3\xe8\x45\xbe\xae\xce\x57\xc8\x9a\x45\x2f\xf2\x75\x95\x56\xc2\x84\x1d\x59\x54\xd8\xae\x92\xd1\x8b\x08\x3b\x8a\x6d\x61\x33\x42\x46\x5b\x21\xba\xdd\x01\x5a\x09\xf5\xed\x8d\x3e\x6f\x80\x36\x42\x7d\x7b\xa3\xa4\x0c\x28\x10\x1a\x57\xcd\x9a\x04\x50\x24\xd4\xb7\x37\x6e\x51\xc3\x48\x84\xfa\xf6\x46\xd5\x42\x42\xfd\x2c\x43\x6a\x44\x2d\x72\x84\x52\x43\xee\x7d\x7b\x63\xda\x34\x8c\x3b\xa1\xfb\xb8\xf1\x36\x0d\xe3\x20\xd4\xb7\x37\xee\xab\x86\x71\x12\xea\xdb\x9b\xdc\xaa\x61\x14\x42\xfd\x38\x24\x6d\xd2\xc9\xbd\x12\xea\xc7\x21\x89\xd7\x30\x2e\x42\xfd\x38\x24\x55\x6b\x72\xcc\xe3\x20\x47\x3f\x0e\x69\x43\x61\x29\x07\xf9\x3a\x3a\x5f\x29\xa0\xf2\x96\x83\x7c\x1d\x32\xa0\x1d\x61\x1c\xe4\xeb\xe8\x7c\xa5\x08\xf9\x2a\x07\xf9\x3a\x3a\x5f\x29\x65\xf9\x47\x34\xaa\x1c\xa4\xf3\x08\x43\x1f\x24\x8d\x92\x74\x1e\x43\x3a\xec\x49\xa3\x24\x9d\xc7\xd0\x0e\x2e\x6a\x94\xa4\xf3\xe8\x74\x66\x6d\x8c\xc9\x41\x3a\x8f\x4e\x67\x96\xa0\x9b\x45\x3a\x8f\x4e\x67\x5e\x37\x0d\x83\x74\x1e\x9d\xce\xbc\x6d\x1a\x06\xe9\x3c\xce\x51\x94\xad\x1a\x06\xe9\x3c\x3a\x9d\x39\x8a\x86\x41\x3a\x8f\x3a\x84\x8f\x68\x18\xa4\xf3\xe8\x74\xe6\xec\x11\xc6\x49\x3a\xcf\x4e\x67\xde\xd1\xe5\x91\x93\x74\x9e\x9d\xce\xdd\x39\x84\x41\x31\x27\xa7\x0c\x08\xfd\x24\x39\x49\xe7\xd9\xe9\xdc\xfd\x8e\x30\x28\xf4\x64\x08\xbd\x5d\xb2\x86\x41\xbe\x86\xd2\xdb\xd7\xac\x61\x90\xaf\x21\xf5\xf6\x2d\x69\x18\xe4\x6b\x68\xbd\x3d\x44\x0d\x83\x7c\x41\xec\xc5\xa8\x61\x90\xaf\xa1\xf6\xf6\x14\x34\x0c\xf2\x35\xd4\xde\x9e\x83\x86\x41\xbe\x86\xda\xdb\xf7\x4d\xc3\x20\x5f\x50\x7b\xce\xad\x1a\x07\x09\x83\xdc\x73\x7e\xd5\x40\xc8\x18\xf4\x9e\x13\xd1\x48\x48\x19\x04\x9f\x5b\xd1\xd5\x10\x2a\x3e\x81\xe2\x73\x1b\x8a\x5c\xa1\xe4\x13\x48\x3e\x17\xd0\xd0\x13\x6a\x3e\x81\xe6\x73\xda\x89\x14\x8a\x3e\x19\xa2\xcf\xbb\xa8\xc9\x96\xaa\x4f\x86\xea\xf3\x2e\x69\xb6\xa5\xec\x93\x21\xfb\xbc\xcb\x9a\x6e\xa9\xfb\x64\xe8\x3e\xef\x76\xcd\xb7\x14\x7e\x32\x84\x9f\xf7\x4e\x13\x2e\x95\x9f\x0c\xe5\xe7\xbd\xd7\x8c\x4b\xe9\x27\x43\xfa\x79\x2f\x9a\x72\xa9\xfd\xa4\x40\xab\xaf\x9a\x73\x29\xfe\x64\x88\x3f\xef\x37\x4d\xba\x54\x7f\x32\xd4\x9f\xf7\x41\xb3\x2e\xe5\x9f\x0c\xf9\xe7\xbd\xf6\xe5\x84\xfa\x4f\x86\xfe\xf3\x5e\xfb\x3e\x42\x01\x28\x43\x00\x7a\x9f\x35\xf1\x52\x01\xca\x50\x80\xde\xef\x9a\x79\x29\x01\x65\x48\x40\x2f\x4e\x53\x2f\x35\xa0\x0c\x0d\xe8\xc5\x6b\xee\xa5\x08\x94\x21\x02\xbd\x88\x26\x5f\xaa\x40\x19\x2a\xd0\x8b\x68\xf6\xa5\x0c\x94\x21\x03\xbd\xac\x9a\x7e\xa9\x03\x65\xe8\x40\x2f\x5b\xd6\x58\xc8\xdf\x10\x82\x5e\x82\x66\x58\x2a\x41\x19\x4a\xd0\x4b\xd4\x14\x4b\x29\x28\x43\x0a\x7a\x49\x9a\x63\xa9\x05\x65\x68\x41\x2f\x59\x93\x2c\xc5\xa0\x54\x14\x5b\xbb\x66\x59\xaa\x41\xa9\xa8\xb6\x9c\xa6\x59\xca\x41\x19\x72\xd0\xaf\x5e\xf3\x2c\xf5\xa0\x0c\x3d\xe8\x57\xd1\x44\x4b\x41\x28\x43\x10\xfa\x75\xd5\x4c\x4b\x45\x28\x43\x11\xfa\x75\xd3\x54\x4b\x49\x28\x43\x12\xfa\x35\x68\xae\xa5\x26\x94\x4b\x7d\x92\x96\x6c\xa1\x73\x68\xc9\xc1\x8e\x7b\x67\xc5\xc1\x86\x33\x16\x1c\xec\x37\x63\xbd\xc1\x76\x33\x96\x1b\xec\x36\x63\xb5\xc1\x66\x33\x16\x1b\xec\x35\x63\xad\xc1\x56\x33\x96\x1a\xec\x34\x63\xa5\xc1\x46\x33\x16\x1a\xec\x33\x63\x9d\xc1\x36\x33\x96\x19\xec\x32\x63\x95\xc1\x26\x33\x16\x19\xec\x31\x63\x8d\xc1\x16\x33\x96\x18\xec\x30\x63\x85\xc1\x06\x33\x16\x18\xec\x2f\x63\x7d\xc1\xf6\x32\x96\x17\xec\x2e\x63\x75\x41\x59\x1a\x8b\x0b\xf6\xd6\x3b\x6b\x0b\xb6\x96\xb1\xb4\x20\x3b\x8d\x95\x05\xb5\x69\x2c\x2c\x88\x4c\x63\x5d\xc1\xb6\x32\x96\x15\xd4\xa6\xb1\xaa\x20\x32\x8d\x45\x05\x7b\xca\x58\x53\xb0\xa5\x8c\x25\x05\x3b\xca\x58\x51\xb0\xa1\x8c\x05\x05\xfb\xc9\x58\x4f\xb0\x9d\x8c\xe5\x04\xbb\x89\x56\xd3\xff\x27\xbf\xe0\x42\x19\x07\x0a\xee\x93\x75\x9e\xe0\x3a\x19\xc7\x09\x6e\x93\x71\x9a\xe0\x32\x19\x87\x09\xee\x92\x71\x96\xe0\x2a\x59\x47\x09\x6e\x92\x71\x92\xe0\x22\x19\x07\x09\xee\x91\x71\x8e\xe0\x1a\x59\xc7\x08\x6e\x91\x71\x8a\xe0\x12\x19\x87\x08\xee\x90\x71\x86\xe0\x0a\x59\x47\x08\x6e\x90\x71\x82\xe0\x02\x19\x07\x08\xee\x8f\x71\x7e\xe0\xfa\x18\xc7\x07\x6e\x8f\x71\x7a\xe0\xf2\x58\x87\x07\xee\x8e\x71\x76\xe0\xea\x18\x47\x07\x6e\x8e\x71\x72\xe0\xe2\x18\x07\x07\xee\x8d\x71\x6e\xe0\xda\x18\xc7\x06\x6e\x8d\x71\x6a\xe0\xd2\x58\x87\x06\xee\x8c\x71\x66\xe0\xca\x18\x47\x06\x6e\x8c\x71\x62\xe0\xc2\x18\x07\x06\xee\x8b\x71\x5e\xe0\xba\x18\xc7\x05\x6e\x8b\x75\x5a\xe0\xb2\x18\x87\x05\xee\x8a\x75\x56\xe0\xaa\x18\x47\x05\x6e\x8a\x75\x52\xe0\xa2\x18\x07\x05\xee\x89\x71\x4e\x50\xf5\x19\xc7\x04\x6e\x89\x71\x4a\xe0\x92\x18\x87\x04\xee\x88\x71\x46\xe0\x8a\x18\x47\x04\x6e\x88\x75\x42\xe0\x82\x18\x07\x04\xee\x87\x75\x3e\xe0\x7a\x58\xc7\x03\x6e\x87\x75\x3a\xe0\x72\x58\x87\x03\xee\x86\x75\x36\xe0\x6a\x58\x47\x03\x6e\x86\x75\x32\xe0\x62\x58\x07\x03\xee\x85\x75\x2e\xe0\x5a\x58\xc7\x02\x6e\x85\x75\x2a\xe0\x52\x18\x87\xe2\x23\xec\x07\x63\x3d\xc0\x76\xb0\x96\x03\xec\x06\x6b\x35\xc0\x66\xb0\x16\x03\xec\x05\x63\x2d\xc0\x56\xb0\x96\x02\xec\x04\x6b\x25\xc0\x46\xb0\x16\x02\x6a\x7a\x6b\x1d\xc0\x36\xb0\x96\x01\xec\x02\x6b\x15\xc0\x26\xb0\x16\x01\xec\x01\x6b\x0d\xc0\x16\xb0\x96\x00\xec\x00\x6b\x05\xc0\x06\xb0\x16\x00\xda\xff\xb6\xf5\x8f\xb6\xbf\x6d\xf9\xa3\xdd\x6f\x5b\xfd\x68\xf3\xdb\x16\x3f\xda\xfb\xef\x5a\xfb\xa8\x04\x4d\x4b\x1f\x55\x9e\x69\xe5\xa3\xb8\x33\x2d\x7c\xd4\x74\xa6\x75\x8f\x52\xce\xb4\xec\x51\xc1\x99\x56\x3d\x0a\x37\xdb\xa2\x47\xc1\x66\x5b\xf3\x28\xd4\x6c\x4b\x1e\x05\x9a\x6d\xc5\xa3\x2e\xb3\x2d\x78\x94\x63\xb6\xf5\x8e\x2a\xcc\xb6\xdc\x51\x7c\xd9\x56\x3b\x6a\x2e\xdb\x62\x47\xa9\x65\x5b\xeb\xa8\xb0\x6c\x4b\x1d\x85\x95\x69\xa5\xbf\xbb\x5c\x37\xff\xc7\xbb\x15\xd5\x96\x6d\xb0\xa3\xc8\xb2\x8d\x75\xd4\x56\xb6\xa1\x8e\x92\xca\x36\xd2\x51\x49\xd9\x06\x3a\x0a\x28\xdb\x38\x47\xdd\x64\x1b\xe6\x28\x97\x6c\xa3\x1c\x55\x92\x6d\x90\xa3\x38\xb2\x8d\x71\xd4\x44\xb6\x21\x8e\x52\xc8\x36\xc2\x51\x01\xd9\x06\x38\x0a\x1f\xdb\xf8\x46\xbd\x63\x1b\xde\x28\x73\x6c\xa3\x1b\xd5\x8d\x6d\x70\xa3\xa8\xb1\x8d\x6d\xd4\x32\xb6\xa1\x8d\x12\xc6\x36\xb2\x51\xb9\xd8\x06\x36\x0a\x16\xdb\xb8\x46\x9d\x62\x1b\xd6\x28\x4f\x6c\xa3\x1a\x55\x89\x6d\x50\xa3\x18\xb1\x8d\x69\xd4\x20\xb6\x21\x8d\xd2\xc3\x36\xa2\x51\x71\xd8\x06\x34\x0a\x0d\xdb\x78\x46\xd3\xd9\x36\x9c\xd1\x6c\xb6\x8d\x66\x34\x99\x6d\x83\x19\xcd\x65\xdb\x58\x46\x53\xd9\x36\x94\xd1\x4c\xb6\x8d\x64\x34\x91\x6d\x03\x19\xcd\x63\xdb\x38\x46\xd3\xd8\x36\x8c\xd1\x2c\xb6\x8d\x62\x34\x89\x4d\x83\xd8\x1e\x94\x36\xfe\x7e\x7f\x79\x98\x7f\x36\x7a\xfe\x7c\x7d\xad\x4f\x6f\xfd\x4f\x54\xfb\xdf\x86\x2e\xa5\x5e\x8f\x4f\x75\xfe\xb9\xeb\xcb\xf3\x4b\x9b\xd5\xff\xff\xbf\x01\x00\x00\xff\xff\x87\x4f\xea\x2f\x1a\x2b\x00\x00"); +var _cbbag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9c\x4b\xaf\x27\xb9\x79\x9f\xf7\xfd\x29\xce\xd2\x59\x38\xaa\x0b\xc9\x22\x81\x83\x06\x12\xd9\x86\x85\xc0\x4e\x10\xe5\x06\x04\x59\xf0\xaa\x0c\x10\xf5\x0c\x66\x46\x0b\x7d\xfb\x80\xcf\x53\x52\x22\xc1\xc6\x2c\x1a\xff\x26\xab\x48\xbe\x45\xfe\xde\xfb\xcb\xf3\xab\x5f\xff\xe6\xef\x7e\xf3\xed\xbb\x9f\x3f\x7e\xf5\x9f\x7e\xfc\xbe\xff\x76\xfe\xfc\xb1\xbe\xfb\x36\x7e\x9c\x3f\x7d\xff\x87\x1f\xfb\xfc\x68\xf3\x77\xdf\x7d\xfb\xf2\xe5\xbc\x3e\xc6\x77\xfd\xe7\x3f\x35\xf9\xe9\xbf\xaf\x3f\x7c\xf9\xb2\xc7\xff\xf6\x8f\x3f\xfd\x3c\x7f\xff\x9b\x6f\xeb\xfb\x8f\xdb\xf7\xc6\x1f\x7e\x78\xdf\xfd\xf8\xf8\xd5\x7f\x9e\xbf\xfb\xee\xa7\x9f\x7f\xfc\xe3\xc7\xdf\xfc\xbb\xf1\x7d\x9b\xff\xe6\x63\xcc\xb5\xfb\xff\xe3\x8f\x63\xfe\xf8\xdd\xb7\xdf\x7d\xfc\xcd\xaf\xff\xf9\xb7\xe7\x9f\xbb\x7f\xfb\x87\x1f\x7e\xf8\x3f\xf3\xf7\xf3\xdb\xcf\x1f\x89\xbe\xf9\x6d\xf0\xfb\xe5\x57\xbf\xfe\xa7\xfa\xc3\x3f\xd7\xdf\xcf\x8f\x5f\xfd\xe3\x7f\xf8\xa9\xff\xf4\xb7\xff\x3e\xfe\xed\x3f\xf2\x88\x27\xff\x6d\xfe\xf8\xd3\x77\xdf\x7f\xfb\xb8\xfe\xed\x71\x94\xff\xd7\xfd\x5f\xfe\xf8\xc3\xfc\x38\xdf\x19\xfe\xc7\x7f\xfd\xcd\xdf\x7d\xfc\xcf\xf3\xe3\x3c\x3e\xae\x18\xf3\xf1\xbf\xde\xfe\xff\xfe\x4f\xdf\x8f\xf9\x71\xd8\xba\xa4\xbd\x7f\x3f\xe6\x4f\x3f\xd4\x3e\x7f\xac\xdf\x7e\x37\xbf\x7c\x7c\x7c\x1e\xc7\xd7\x8f\x8f\x8f\xcf\x7c\x7c\xdd\xad\xfc\x84\xe3\xeb\xc7\xe7\x3f\xfc\xfd\x3f\xfc\xfd\xd7\x4d\xe4\x5f\xbd\xff\xe5\x74\x9a\x6f\xdf\xff\x3c\xe6\xb2\x8f\x19\x3e\xcf\xf5\xf5\xe3\xdc\x23\xfe\xff\x47\x5f\xce\xe3\x78\xd7\xfd\x6e\xf4\xff\x5d\x7f\xfc\xf2\x99\x4b\xb8\xbf\x7e\x9c\xcf\x73\x66\x1a\x9d\xc6\x75\xd3\x18\xbb\x71\x87\x67\x37\xe2\x49\xe3\x48\xbb\x51\x13\x8d\x33\xd0\x68\x34\x32\x13\x54\x27\x78\x18\x53\x9d\x20\xdb\x98\x3e\xe1\xb5\xbe\x9c\xfa\xd8\x8d\x51\x9c\x9a\x27\xa3\xee\x46\x3e\x23\x0d\xa7\x3e\x7d\xad\xfb\x04\x0a\x86\x53\x9f\xe7\x6e\x4c\x69\x3b\xa1\x7a\x5e\xbc\x76\x31\x66\xde\x3e\x61\xb6\xc5\xd4\xf7\xb5\xc7\xd4\xbd\xaf\xe7\x93\x43\xa4\xc1\x04\x67\xf2\xc9\xf0\xc9\x5e\xa7\x46\xc9\x61\x0f\x6a\x9c\x36\x36\xa1\xf5\x39\x6d\x14\x1a\x6c\xc8\xc5\x86\xd4\xe7\xe1\x49\x3c\x68\x38\x41\x64\xea\xa7\xf9\x9a\x63\xfc\x9e\x78\xd1\x60\xd1\x4b\xda\x1e\xd7\x89\xfb\x7b\x6a\xcd\x36\x98\xba\x25\x1b\x50\xdd\x58\xe7\xf2\x13\xda\xfb\x1a\x54\xb7\xe2\x13\xa8\xee\xef\x3a\x34\xa6\x13\x24\x68\x9b\x4c\x70\x3f\x7b\xd1\xf6\x6e\x48\xbe\x69\x44\x26\x28\x81\x86\x63\x72\xa2\xe1\xa2\x25\xd2\x70\x51\x0e\xb8\x05\x17\x2d\xbe\xe6\x67\x03\x8a\x16\xfc\xec\xe2\x6b\x92\x93\xf7\x1e\xb4\x98\x3d\x7a\x16\x8d\x4c\x90\x9d\xc0\x8d\xbf\x0f\x28\x88\xe2\x80\x8d\x6f\xe9\x3d\x6d\x26\x48\x4e\x70\xed\xd7\x7a\xda\x47\x5f\x8e\x6b\xef\x68\x07\x3b\xe5\x00\xca\x1d\xec\xe4\x92\xf6\x6b\x83\x2f\x2d\x07\x1b\x32\x18\xf3\xdc\x77\xa6\xe1\x6c\x77\xa1\x21\x2c\xcf\x8b\x86\xe4\x84\x93\xc6\xb4\xc1\x13\x8f\xfe\x0e\x37\x8d\xf7\x35\xd6\xf1\xb4\x4b\x66\x8c\xa7\x7d\x73\x58\xa3\x46\x1b\x89\xc6\xbb\x28\xe4\x54\x17\xbd\x78\xcd\xd3\xbe\xc1\xce\xe8\x42\x19\xb8\x0c\xa1\x1c\x8e\xfd\x64\x72\x58\xf9\x78\xf6\x93\xb9\xa9\x0e\x27\x6b\x4e\x88\x0e\x27\x5f\x3d\xd3\x66\xb9\xf3\x61\xfc\x84\xe8\x7c\x3c\x91\x46\xb3\x91\x68\xcc\xaf\x1f\x17\x87\x33\xeb\xfb\xd2\x43\xa3\x7d\xfd\x08\x17\x07\x35\x5b\xf8\xfa\x11\xca\xc1\x4c\xe0\x2e\x1f\xb0\xf5\xec\xc5\x06\xc3\xfb\x86\x74\x62\x5f\xe6\x38\xf6\x08\xf8\x78\x4e\xc9\xcd\x36\x96\x0d\xe8\x5d\x2e\x98\xf7\xc4\x2b\x3e\x5f\x3f\xee\x9b\x07\x0b\x98\x04\xa1\xb5\xa2\x8b\x00\xd4\x15\xdf\xf1\xfb\x13\x57\x7a\x6c\x44\x1a\x8c\xb9\x8f\x42\x63\x8f\x39\x4e\xa8\x5c\xfb\xf8\x72\xe6\xb3\xd6\xf3\x4e\x96\x90\xae\xaf\x54\xfc\x97\xe4\xe4\x6a\x87\x6f\x32\xac\xbf\xdf\xc0\x7c\x3d\xb1\x52\xb2\xf1\xd2\xc0\xb2\xbd\xd2\x28\x07\x8d\xbd\x83\x25\xf8\xff\x8d\x86\x74\x4b\xc3\x78\xdf\xe2\x53\x91\x58\xf9\x28\xec\xc1\xea\x36\xf8\xd4\xb5\xf7\x33\x04\x04\xdb\x5a\xfb\x98\xe2\xde\xd0\x72\x44\x89\xd9\xcc\x5a\x8e\x34\xbe\x7e\xdc\xc7\x16\x78\xe5\x00\xa7\x21\xa4\x44\xc3\x9d\x2a\x79\x37\xc0\x69\x80\x05\xca\xf1\x9e\x73\x29\xbb\xe1\x79\x9e\x07\x33\x6f\xb6\x89\xc7\xc1\x83\x75\x7e\xfd\x88\xcf\x3e\x82\x72\xa6\xe8\x4b\x27\x8d\x69\xe3\xda\x8d\xe7\x6d\xdc\xbb\x51\x37\xa7\x86\x74\xdb\xb8\x7c\xb2\xa9\x3c\xdb\x26\xe6\x0a\x8e\xe9\xef\x92\x9b\xe6\x2b\x84\x3d\xe6\xb9\x36\x99\x57\x0a\x3e\x49\x34\x86\x8d\x4d\xf3\xd5\xce\x0d\xd3\xc0\x7f\xaf\xfd\xdf\xbd\xc6\xc5\x4c\xe9\x86\xf8\x6b\xec\xd5\x8f\x74\xd1\x98\x2f\xc5\x4c\xbb\x5e\x52\xf6\x77\xdd\xc9\xd5\xd9\xca\xbb\x56\x1b\xfb\xc3\xee\xee\x6b\x5b\x00\x94\xfb\x9d\x60\xeb\x98\x72\xcf\x77\x4c\xa0\xd1\x6c\x6c\xf2\x03\xb2\x32\x9f\x5b\x49\x95\xb0\x65\xe5\x13\xee\x3d\x73\x10\x68\xe7\xb9\xa9\x0f\xe0\xe2\x48\xd1\xc6\x3b\x7e\x93\x16\x83\x1f\xb9\x85\x5b\x89\x51\x6a\xf8\x82\x28\xd2\xcf\xad\x21\x4a\xec\x2e\xb3\x25\x5d\x89\x5b\x7f\xa6\x73\x4b\xf1\x92\xd8\xbe\x58\x18\x9f\xd0\xd9\xf9\xdc\x22\xb0\xa4\xf4\x4e\xb6\x69\x4e\xc3\x8d\xdd\x62\xa6\xa4\xb9\xd7\x8c\x61\x33\x47\x49\x40\xee\x3c\xb6\x04\x2b\x39\xbd\x6b\xee\x27\x19\xb5\x16\x1f\x8e\x29\x03\xa0\xf8\x70\x32\xb9\xde\x36\x1e\x1a\xcb\x06\x63\xb6\xa4\xd8\x42\x8b\xd9\x9a\x5b\xf8\x36\x92\xaf\x15\x1a\x8f\x4f\x98\x5a\x4d\x76\x47\xa6\x46\x93\xc5\x87\xd3\xc9\xcd\x4f\x78\x9f\x34\x45\xe0\x45\xa3\xfb\x04\x0a\x38\xb7\xf8\x70\x54\x19\xb1\x99\x51\xed\x25\xf7\xe0\x13\x28\x90\x87\xcf\xc4\x04\x43\x35\xe0\x04\x32\x24\xd2\xa2\xe4\xd7\x06\x71\x82\xa1\xdd\x92\x98\x60\xfa\xd9\x1c\x69\x9e\xee\x0e\xa7\x98\xdd\xd1\x87\x53\xc8\xeb\xa0\xc1\x29\xe6\xe5\x91\x14\xbe\x74\x49\x28\x47\x9a\x97\x84\xc2\x60\x99\x53\x88\x0f\xe7\x9b\x61\xfc\x8c\xec\x2d\x79\xa9\x7b\xd2\x5e\xb4\x84\xcb\x3d\x08\x34\x24\x87\xd3\x2e\xe0\x20\x5f\x9c\x4f\x41\x41\xc4\xe7\xf2\xb5\xe4\x13\x27\xd0\x02\xd8\xa2\xab\x94\xe0\xc9\x01\x8a\x12\x3d\xb9\x54\x68\xa8\xbc\x9e\xe3\x17\xa4\x64\x29\xc9\x61\x5b\x17\x95\x92\x04\xc9\x05\x11\x88\x89\xf8\x5c\xac\xfb\xbc\x14\xb1\xee\x93\x6d\xb0\x14\x32\x23\x5f\x40\xa1\x54\x37\x08\x0e\x2a\xa0\x2c\x5f\x9c\x7e\xa9\xae\x13\x1c\x13\x7d\xc2\xd4\xaf\x6d\x1a\x1d\xe3\xa2\xf7\xde\xe1\xd2\x3c\xe3\x87\x6d\x78\xf1\x77\x43\x68\x93\x50\x04\x55\xe9\xea\xf0\x87\x75\xba\x76\x26\x50\x28\x43\x15\xfc\xb0\xe8\x70\x9d\xcc\xd4\x2f\x2e\x1e\xa8\x9e\x2f\xd5\xac\xa3\x3c\xc7\xb8\x2d\x65\x4a\xb5\x47\xa4\x44\x41\x41\x95\x32\xdf\xd9\x7c\x02\x3b\x60\xf6\x96\x32\x65\x87\xec\xd4\xcb\x03\xa7\xb1\x44\xf3\xbd\x1b\x35\xbc\x9f\x90\x68\x20\x52\xb0\x56\x4a\x0d\x62\x69\xdb\x17\xa5\x46\xf9\x69\x9b\x3b\xa5\x46\xa9\xe6\x48\x6a\x42\xbf\xdd\xb1\xd0\x38\x7d\xcd\xc6\x4b\x9b\x0d\x69\x83\x03\x6a\xf2\xe4\xb6\x4e\x2b\xf5\xb5\x97\x8a\x8d\xea\x6b\xd0\x96\x5e\x56\x65\x9d\x47\x98\x4a\xdb\x03\x4c\xef\xe7\xa6\xa1\x55\x54\x6c\x78\x72\xdb\xc6\x2a\xb5\xba\xf1\x70\x4d\xad\x8e\x41\xf8\xd7\xd7\x92\x2a\x36\x8a\xeb\x40\x41\xf5\x18\xe1\xa7\xda\x3c\x92\xc0\xd4\x4d\x56\x45\xc4\x69\x37\xe7\x1b\xe5\x57\x5f\x69\x13\x58\x47\x69\xf3\xce\x86\xb4\x89\x4f\x70\xb6\xee\x13\x3e\xa1\x89\x10\x4f\xa1\xbf\x53\xf3\xa5\x43\xc6\x0f\xec\x35\xda\x28\x07\x44\x42\x1d\x2f\x39\x34\x5e\xb8\x44\x68\x13\x2e\x01\x58\xd6\xe9\x01\x23\x30\xeb\x74\xaf\x61\x8c\x3a\x5f\x33\x91\xa9\xa7\x22\x01\x2e\xa9\xaf\x4c\x81\x4b\xea\x12\xe4\x30\x46\x5d\x7e\x42\xdc\x63\xb4\xe9\xe3\xc3\x69\xb7\x17\x3b\xdb\x29\x28\x2d\xba\x28\x62\x51\xfb\x3c\x3e\xe9\xa6\x81\x0a\x0b\xf0\x8f\xf6\x79\x7c\x92\x8d\xe6\x93\x48\x43\xbc\x25\x1b\xc3\x27\x9b\x9c\x26\xc4\xc2\xb6\x7a\x4a\xc3\x04\xbd\xd4\xae\xed\xd5\x2d\xe0\xa0\x6d\x79\x10\x0b\x62\xa8\x61\x9b\xde\xc7\xed\x10\x67\x76\xb2\xc7\x99\x8b\x0d\xd1\xe2\xcc\x55\xf0\xc2\xb3\x4d\xb3\x23\x14\x9f\x40\x67\xe4\x48\x5b\x75\x36\x18\xab\xbd\x5a\x2b\x33\x5b\x73\x36\xe0\xd6\x30\x55\x72\x84\x4d\x1b\x7a\xf7\x28\xc9\x06\x5b\x90\x91\xcb\x4d\x2d\x1e\x4f\x1b\xdd\x27\xe1\x97\xe4\x65\x43\xbe\xe4\x88\x46\x6a\xfd\x95\xed\x90\xd7\x5d\x17\xb3\xa2\x01\x98\x1c\x31\x2b\x1a\x62\x28\x66\xd8\xa9\xa9\xc9\xe3\x69\x23\xfa\x84\x2f\xc7\x45\x8e\xd9\x0d\x1e\xf3\xeb\xc7\x73\x66\x1f\x2c\x1f\x40\xea\xe4\x4c\x22\x9a\xa6\xe1\x48\xc7\x2c\x35\xd3\x35\x2f\x5f\x73\x4d\xa9\x51\xd7\x65\xa9\xd1\x16\x8a\x08\x91\x36\xb1\x6b\x33\x32\xa0\x4d\xbf\x0d\x90\xb6\xe5\x04\xce\xb6\x71\x19\x32\x22\xa0\x2d\x04\x4a\x44\x5a\x36\xfc\x9a\x1c\x61\xa6\x8e\x76\x3b\x03\xb2\xaa\xa3\xdd\x72\x7c\x1b\xef\x98\x42\x03\x8c\xe6\x77\x0c\x18\x8d\x48\xa4\x2e\xae\x33\x32\xb1\xc7\xfb\xeb\x47\x92\x2f\x7a\x74\xd3\x10\x07\x3d\xba\x69\x88\x83\x1e\x93\x4f\x6c\x74\x1b\xcc\x1c\xdd\x4e\xf4\x4a\x07\xc9\x11\xaf\xbe\x74\x84\x65\x8e\xf0\x39\x3e\x68\xd4\xca\xea\x49\x9a\x61\xf3\xae\xe0\x8c\xef\xf8\xfc\xf5\x23\x17\xb0\xdb\x93\x24\xbf\x73\x49\x32\x1c\xdb\x91\x9b\x77\x38\x9d\x58\x62\xb6\xff\x56\x7a\x7a\x89\xf1\xc9\xf4\x09\x5f\xb3\x39\x29\x67\x97\x7c\x3c\x1a\xbf\x19\x03\x34\xe6\x64\xc3\x7d\x76\x19\x39\x29\x3a\x99\x9c\x94\x41\x78\xaf\x6e\x0d\xda\xbc\x6b\x1b\x47\x64\x41\x87\x93\x62\x86\xe3\x7b\x95\x34\x64\x41\x6f\x32\x02\x06\x4a\xdf\x92\x32\xe1\x83\x97\xbe\x05\xe5\xa5\xa0\xed\x5d\x92\xb1\x59\x3b\x48\x8f\x05\x3e\xea\x5b\x68\x3e\xf9\xf6\xff\x4e\x05\xbf\xf7\xe9\xc9\xc0\xe2\x7d\x4a\x0b\x2c\xde\x5f\x9c\xa1\x96\x3b\xc6\x52\x2c\xe2\x64\xb9\x0c\x5a\x55\xb7\xff\x51\x6f\x0c\xe5\x5f\x01\x41\x03\xd0\x44\x5c\xb3\x32\x82\x63\x8a\x63\x24\x0d\x38\x8c\x28\xab\x14\x1b\xa7\x4f\x22\x8d\x68\x23\xd1\x90\x50\x1c\xad\xb1\xbd\xd8\x92\x92\x6f\xd5\xed\xd1\xba\xca\x1b\xc4\xe0\xcc\x8c\x41\xc4\x02\x80\x86\xa0\x49\x70\xf7\x48\x9a\xf3\x1c\xe7\x78\xb4\x04\x10\x65\xc3\xe3\x2c\xc0\x69\x78\x68\x05\x08\x19\x42\xc8\x09\x7e\x18\x1c\x5a\x2c\x40\x60\x28\xfe\x12\xfc\x30\xf0\x67\x63\x41\xd8\x8c\x76\xdb\x60\x02\x8c\xf6\x9c\x82\x0d\x3f\x0d\x75\x60\x40\x22\xa7\x60\xe3\xf1\x09\x9f\x80\xc8\xcc\x09\xc5\x67\xa8\x22\x16\xac\xca\xa1\xcd\x8d\x2d\x33\x8c\x0f\x24\x30\x3c\x14\x9f\xe5\xb9\x7e\x49\x48\x0e\xa5\x5f\x42\xf5\x0d\x7d\xe2\x04\xdd\x53\xa9\x90\xa0\x7b\xea\x21\x25\x48\x9d\xef\x36\x42\xdd\xc4\x4e\x49\x07\x8a\x74\xca\x6f\x09\x46\x30\x44\x92\x0e\xa6\x9e\x84\xf4\xd2\xc1\x66\xcd\xc7\x45\x51\x49\x13\xa3\x25\xe9\x2f\x4f\x5d\xb9\xf4\xd8\x70\x02\xc9\x31\x92\x92\x80\xe5\x44\x5b\xa5\x43\xda\xe4\xb1\x04\x46\x89\xb1\xec\x27\x10\xaa\x59\x9b\x32\x13\x78\x76\xb7\x0f\xde\x99\x19\xf2\x1e\x1d\x48\x9e\xd5\xcd\x06\xc9\x04\x63\xce\x44\x28\xa7\x4c\x5d\xac\x94\x21\x4d\xd3\x26\x21\xf4\x27\xa6\x4d\x3a\x24\xad\x49\x9a\xd4\xe8\x4b\x26\x84\xd1\x1b\xb4\x21\x7c\x51\xa6\xfb\xfe\x60\xe7\xcc\xe1\x16\x14\x68\xdb\x76\x68\xb9\x81\xf8\x5c\xef\x5b\x8c\xc7\xc8\xc8\xfa\x6b\x93\xa3\x4a\x0a\xc3\xb9\x19\x33\x9d\xd1\x07\xd3\x07\x7b\xc8\xf2\x0c\x1f\x7c\xee\x85\x30\xcf\x0f\x4a\x6b\x21\x65\xef\x88\x86\x5e\x58\xa1\xc1\xa3\x5e\xcf\xe1\x6b\xfb\x3b\x97\x1f\xad\xeb\xb5\xda\x4b\x40\xa1\x01\x22\x74\xbd\x56\xdf\x63\xd2\xe5\xd4\xfd\xf4\x09\xb3\x6d\xdd\x7d\x97\xc7\xb7\xba\x0f\x78\x4b\xe5\xaa\x4b\xb5\x06\x01\x25\x82\x58\x65\xcd\xf7\xc9\xfe\xb4\xb5\x8a\x8d\xf8\xe5\xb3\x1e\x41\xd2\xf6\xb7\xd5\x43\x45\x85\xd3\x53\xdf\x38\x0d\x4e\x4f\x3d\xc0\x67\x40\x00\xd4\xc3\xd0\x06\x1e\x50\x3d\xb4\x85\x36\x01\xf5\x10\x50\x38\x40\xf5\xc0\xae\x49\xf7\xdb\x70\xd7\xb7\x67\x53\x8f\xea\x32\x37\x63\xf4\x6b\x71\x66\xea\x31\xa4\x66\x6b\xd7\x7a\x68\x1e\x1c\x19\xd2\x06\x47\x18\x18\xaf\xd5\x89\x27\x51\x0f\xad\xce\x23\x40\xcc\x9f\x6c\x4b\x66\x5e\x6f\xac\x74\x8f\x3f\xb7\x0e\xbf\xb6\xc8\xaa\xe7\x56\xe1\x04\x9b\x2b\x12\xf7\x0a\x9b\xaa\x36\xe3\xf5\xf5\x23\xe0\xf9\xf4\x6b\x6f\x71\x24\xbc\xdd\xef\x0d\xc5\x88\xbe\xeb\xf7\x36\xb2\x23\x4a\xb1\x87\x2d\x38\x63\xd8\x56\x57\x27\x40\x81\x46\xea\x69\x3b\x5a\x71\xf3\x57\xcf\x1a\x2b\x84\xe6\x7b\xc6\x06\xce\x84\xe6\xfb\xeb\x57\x13\x9a\xef\x65\xeb\xfd\x74\xf1\xdf\x2d\x97\xd2\xb1\xc5\x7c\xaf\x9b\xcc\x74\xee\xad\x18\x69\x1f\x73\x7e\x36\x6b\x8c\x67\xb3\x70\x26\x20\x3d\xea\xde\x95\x7c\x6e\x01\x37\x90\x34\x05\x56\x98\x8d\xf9\x8f\xb2\x4f\x75\xf6\x6d\x4c\x9d\xe7\xb1\x45\xc3\x9c\x84\x7f\x2e\x3e\x73\x1d\xc8\xfe\x13\xf4\xad\x03\x93\xf0\x24\x72\xb0\x4e\x74\xf9\x95\xb6\xf4\x5f\x17\xf2\xe8\x7a\x36\x37\xaf\x00\x7c\xaf\xb8\xa7\x5e\x09\x58\x5c\xe5\xf8\x4b\x4f\x3b\xc4\xbf\x92\x89\xab\x20\x56\xe5\x8d\x55\x38\xf2\x3b\x6d\xfc\xac\x02\x3f\xdf\x88\xef\x85\x8b\x77\x11\x40\x5b\xf8\x71\x17\x3a\x7f\xe1\xb5\x3c\x99\x57\xf6\xe0\x7b\xcb\xc9\x55\x37\x40\xae\x73\x6b\xbb\x65\x6c\x3f\x1d\xc7\xb5\x1b\x51\x80\xec\x53\x58\x4d\x7b\xe3\xe1\xbb\x5a\x7d\x9f\xf0\xda\x96\x38\x37\x11\xba\xf5\xda\xcd\xb8\x0e\xeb\x35\x73\xf1\x16\x16\xa6\x60\x22\x44\xb6\xda\x52\x2c\x6d\x8b\x73\x69\xaf\x65\x3c\x87\xd5\xb7\xea\xcd\xa0\x61\xf5\x28\xd8\xb7\xc8\x5e\xaf\x55\xf5\x6c\x03\x63\x69\x15\x25\xbc\xe3\xd5\x5f\x36\xda\x7a\x67\xf5\x47\x36\xd8\xe2\x73\xf5\x0d\xb9\x10\x02\x43\x5e\x0e\xdf\x46\xcd\xea\xdb\xc8\xbd\xcf\xad\xec\x57\x7f\xb9\xe0\xb1\xe1\x47\x3e\x10\xc6\xe9\x93\xb6\x59\x1a\x0b\xf9\xd9\xf2\x76\x99\x16\xc8\x78\x24\x0b\x85\x98\xee\xcd\x77\x6b\xb0\x13\x17\x5b\x34\xb6\x48\xba\xaf\xed\xc2\xac\xf1\xa7\x35\x68\xec\x69\xef\x6b\x8b\xe4\x35\x5e\x29\x4a\x03\xce\x79\xc3\x23\x6b\xbe\x5f\xb5\x85\xf5\x9a\xa6\x1e\xd0\x57\x8b\x90\xfe\xfd\xb0\x91\x53\x5b\xef\xd9\x6a\x64\xa1\x3a\xae\xcc\xe8\xed\x05\x3c\x47\xfe\xd7\x23\x37\x6f\xd6\xf0\x3a\xbe\x7e\x7c\xa2\x98\xbe\xfc\x29\xeb\xb8\x4f\xe2\x2b\x69\x93\xb8\xfb\xb6\x01\xfb\xb9\xe9\x20\x7b\x42\x26\x00\xd6\xd9\x3f\x93\x3e\xc2\xe1\xcf\x16\x53\x9f\xf9\xc1\xcb\x28\xc6\xae\xb3\xf3\x65\x24\xe0\x93\x88\xc9\xe7\xcd\x2b\x9f\x39\x1b\x31\xc6\x0d\xcb\xd9\xb1\x99\x94\x48\xce\x9b\x25\x72\xde\x3a\x71\xff\x54\x39\x9c\x9c\xa3\xf3\x15\xf3\x76\x8f\x29\xc1\x90\xec\x2b\xf6\x15\xfa\x26\x7d\x58\x6e\x0f\xd2\x3a\x97\xbd\xb9\x9f\xb9\x98\x64\x43\x34\xe7\xe2\xba\x06\x92\x1e\xa0\x91\x4b\x73\x0d\xa3\x46\x6c\x7f\x2e\x9b\x57\xf7\x0f\x81\x93\x87\x44\x45\xe9\x8e\x35\x3f\xf3\xf0\xbd\x30\xe4\xfe\x71\x8d\x62\xca\xd2\xf9\x86\x39\x33\x13\xa9\x43\xfa\xa6\xb9\xb7\x13\x5a\xb6\xfc\xdd\x3f\x66\xc3\x2e\x33\x9c\xd5\xbe\x37\x1f\xea\x7b\x9d\xbe\xf5\xbe\x47\xdf\x56\xbf\xfb\xe7\x4d\x54\x9a\xcf\xbc\x77\x9f\x61\xa0\xe7\x4c\x24\x15\xdd\x17\xa3\x41\xcf\xf9\x90\x5b\x8c\xcd\x3e\xe2\x19\x67\x36\xe3\xb9\xe8\x33\x49\x76\x92\xa1\xa8\x09\xfa\x2a\x2a\xf8\x21\x5e\x99\xeb\x73\xd9\x17\xcc\x6f\x9a\xf9\xcc\xf6\x99\x16\xe4\x8c\xaa\xfb\x5c\xab\x49\xc4\xcb\x04\x67\xb1\x8f\x78\xcd\x75\xb3\x46\xe5\xdb\x2a\x36\xea\x73\xdd\xe6\x3e\x5d\xa3\x99\x9a\x24\x8f\x42\x58\xe6\x33\x1b\x76\x79\x2e\x73\xb1\xdd\xf9\xba\x49\x47\xbf\xb7\xfb\xbd\xc3\xb1\x64\x6a\xea\x48\xf6\xbd\xd9\x5a\xfb\xa4\xd9\x54\x33\x9c\x99\x51\x09\x9f\xb9\x4e\xc7\x82\x53\x82\x31\x9f\xb9\x12\x81\x7b\xb2\x79\xe3\xe5\x7c\xef\xde\x3f\xa6\x4e\xf9\xde\x66\x9c\xf6\x22\xa9\xd3\x3c\x8f\x16\x1c\x9b\x7d\x6f\xd0\x27\x4e\xaf\x42\x9e\x33\x3a\x16\xd1\xfb\xe0\x52\xe7\x16\xa3\x7d\xd2\x5c\x4c\x9b\xb2\x57\x06\x57\x9e\x6c\x92\x35\x5d\xf6\xf1\x9e\x99\xba\x96\xd8\x17\x43\x25\x4f\x21\xdb\xde\x3c\x0f\x65\xf5\x53\x6e\xd6\xe8\xe0\xb4\xb9\x07\x89\xf3\x68\xe2\xb4\xe1\x5c\x3d\xd8\xde\xb9\xcb\x83\xaf\xf7\x6b\x1e\x1c\xd9\xfc\x99\x75\x22\xb3\xb9\xe4\xee\x1a\xfa\x92\xb9\x90\xb1\xef\x15\x59\xd2\xfb\xdb\xb7\xb1\xd1\x3d\xb7\x57\x3c\x17\x72\xd7\xdd\x73\xeb\x06\xe4\xf1\x6f\x72\x1f\xec\x55\xc7\x4c\x29\x87\x99\xdf\xc9\xde\xeb\xef\x95\xe3\x26\x47\x1a\xd8\x83\x11\x95\x43\xd1\x04\x2f\x34\xbf\xde\x17\xee\x4e\x1e\xd2\x3c\xde\xbd\x02\x2f\x23\x35\xfb\x86\x7d\x8e\x05\x07\xc3\x28\x65\x79\xcc\xea\x3e\xf6\x15\xfb\x78\xef\x19\xf6\xb9\xcf\xc8\x88\xe1\x1e\x0c\xa3\xd6\x85\x33\x1f\x35\xd9\xe7\xba\xc8\x4e\xdc\xb5\xcf\xac\xd3\xf5\x14\xce\x1c\xb5\xf2\x99\x87\xd9\x28\xf4\x71\xc6\xa9\xfa\xcc\x43\xc3\x13\xed\x99\x87\xbc\x3f\xf4\x79\x0f\x68\x9e\x9e\xd1\x34\xa9\x46\x22\x28\x4f\xe5\xa4\x3e\x51\x20\xb7\x93\xa7\xdf\x3b\x8d\x31\x60\xd8\x64\xf4\xce\xfe\x99\x26\x91\xcd\x0e\x3b\x1f\x7b\x10\xce\x44\x9e\xd7\x3d\xd0\x11\x0a\xe7\x9b\x52\xee\xf6\x91\xb2\x3c\x4d\xf5\xba\x07\xb3\x3a\x96\x7d\x99\xe2\x40\x57\x27\x28\x73\xa6\xbc\x3f\x71\x49\xc3\x59\xcc\x32\x47\xfb\x1e\xf2\xc0\xa6\xbd\x1b\x78\x99\xdd\xdc\xf0\xc1\xba\xbd\xda\xd7\xe9\x43\x76\x4e\x31\x34\x89\x32\x84\x8b\xcc\xfa\x1c\xd2\x02\x86\xc2\xe5\x1e\x88\xa1\x89\xe2\x0f\x58\xb6\x79\x2e\xbf\x77\x41\x33\x09\x86\x3c\x97\x34\x2f\xdf\x23\xb9\xbe\xdc\xe7\x85\xf9\x17\xae\xc7\x04\x76\xb5\xcf\xf7\xe0\xcb\x25\xfe\x5e\x5f\xe6\xe6\x2c\x57\xf2\x3d\xb0\x16\xac\x68\x59\x62\x6d\x3d\xe6\xb0\xe1\x8f\xa5\xae\x5d\xe0\x2a\x10\xb4\xcf\xcb\x3d\x5d\x44\x2f\xc3\xb6\xd2\xd5\xf2\xff\x42\xb9\xcf\xab\xe6\xf3\x6a\x0e\xc1\x7e\x0c\x96\x54\xac\x9e\xed\x2b\x26\xb2\xcd\x5d\x73\xfc\x6b\xd8\x87\x38\x5b\x03\x98\x2c\x22\x83\xc1\xba\x9e\xa5\xba\x5a\x38\x7e\xc1\x70\x3b\x3e\xd0\x67\x39\x08\xb3\x85\x80\x2f\x85\x69\xbc\x7f\x78\x2f\x10\x51\x39\x10\x5d\xe5\x88\x42\x96\x78\xeb\x81\xca\x29\x07\x50\x0c\x81\x90\xc6\xf1\x38\x1f\x6c\x16\x02\xa1\x25\x5c\xa3\xfd\x63\x8e\xfb\x31\x93\x7d\xd2\x27\xc4\x02\xa9\x19\x7c\xa3\xcf\x72\x08\x9d\x40\x80\xf7\x00\x3a\xe5\x20\xbe\x14\x22\x81\xa7\x03\xb1\x52\x0e\xb2\x75\xc1\xd0\x22\x0e\xcf\xfe\x61\x0d\x7c\x90\x72\xfa\x6d\x27\x91\x99\x10\x09\x0f\x9c\x29\xd9\xc7\x11\x26\x3c\xc4\x93\x23\x2c\xe7\xf3\xf6\x65\x72\xe0\x37\x7d\x04\x4b\x42\x22\xe4\x79\x76\xe7\x43\x85\x05\xe3\x15\x27\xa2\xb0\x9c\xae\x9b\x08\xbf\x5d\xae\x7b\xe1\x2d\x07\x73\x6a\x57\x88\xf4\xe9\x4b\x9a\xe5\xba\xd2\xdb\xc7\xfe\x19\xb9\xbf\x36\x0f\x7f\x96\xcb\xbd\x7a\x9c\xcf\xbd\xba\xaa\x7d\x38\xfc\x57\x85\xe6\x6b\xab\xdd\x8b\xdd\xbb\x1a\x14\x5f\x52\x67\xa8\xfb\x92\xba\x0b\xd7\x32\x64\xe2\xf4\xd7\x60\xa7\x2e\x19\x2a\xf3\x65\x17\x0c\x55\x2e\x8c\xe7\x40\x35\x53\xb9\x96\xf3\xf9\x65\x99\xb8\xd8\xed\x97\xdd\xc9\x35\x38\xc9\x1b\x65\x55\x6e\x29\x2e\xf8\xf9\xb7\x14\xdf\xc4\x48\x82\xa1\xbb\xbb\x82\x82\x1b\x77\x3e\x18\x41\xbb\x3b\x6b\xdc\xd2\x82\xa0\x2e\xb7\xb4\xdc\x46\xae\x0f\xf2\x67\xf7\x74\x0d\x62\x89\xf1\x20\x68\x7e\x63\x54\x95\x1b\xfa\xe2\xc1\x49\x06\xe9\x0b\x66\x51\x0f\xd2\x94\x61\x7b\x47\x9f\x25\x98\xba\x3c\x88\xa8\x05\x18\xb4\x04\x83\x71\x78\xd9\x25\x48\x73\x80\xb3\x22\x25\x1e\x25\x74\xd6\x08\xae\x81\x3f\x5a\xa2\x6b\x44\x73\x75\x27\x11\x8f\x88\x91\x56\xa2\x29\xbb\x93\x60\x4b\xc4\x48\x2b\x11\x8e\x89\x18\x5a\x25\x26\xc7\x3e\x6f\x1f\x63\x5d\x37\xa2\x60\xe3\x45\x60\x32\x76\x38\x21\x62\x80\x46\x2b\x26\xe2\x80\xe6\x28\x2d\x08\xa4\x92\xa4\x25\x99\x4f\xa6\x18\xaa\x24\x91\x96\x30\x50\x22\xf5\x4d\x25\x61\x48\x97\x44\x3c\x2d\x9a\x3a\x4f\x28\x92\x92\xa4\xe5\xce\xcc\x27\x2d\xc9\xb4\x85\x09\xfb\x34\x9c\x8f\x7c\x41\x0c\x60\x23\x4d\xbe\x37\x99\xa7\xfa\x53\x39\xc2\xb0\x8f\xf9\x02\x41\x59\x9d\x93\xa2\xd3\x61\xbc\xa0\xe8\x74\x94\xc7\xf7\x0c\x65\xeb\x74\x94\xec\x77\x18\x74\xcc\x5b\x13\xee\x1f\x73\xff\x70\x51\x46\x21\x96\x6c\x82\x3a\x39\x56\x89\x93\x1f\x93\x61\x24\x8c\xf2\x13\xed\x7b\x6b\x2f\x48\xee\x63\xe4\x96\xfc\x56\x77\xc0\x81\x59\xc9\xf4\x3a\x36\x27\xa1\x6c\x1d\x9b\x92\xdf\x22\x98\xdb\x4a\x09\x69\xa9\xef\x7b\x56\x42\xb8\x6e\xb3\x18\x20\x5a\xf6\x30\xec\x33\x2b\x45\x9c\x2c\x37\x38\x35\x1b\xc6\x3a\xa5\xb9\xfb\x1d\x6f\x0e\x12\x1c\xe4\x2e\x7d\x66\x1f\x31\xfe\x4b\x1e\xb7\x7d\x16\x5d\x3c\xf6\xbd\xef\x99\x57\x74\xbe\xd1\xed\x93\x3e\x82\x85\x44\x60\xf6\x8f\xdf\xc1\xf9\xe6\xe9\x77\x18\xa0\x17\xbb\x79\x3a\xdf\xb4\x2e\x23\x5b\x15\x31\xed\xb3\xa8\xa4\x58\xce\xe0\xd8\x65\x1a\x37\x59\x16\xe1\x77\x18\x4a\x3c\x8b\x85\x0a\xac\xab\xc3\x97\xaf\xb7\xe0\x21\xdb\x37\xed\x23\xc3\x1e\x7d\xcf\x78\x85\xbc\x50\x30\x9a\x4b\x31\x49\x89\x17\x5f\x4a\x64\x4f\x8b\xb1\x84\xeb\xad\x50\xf0\x3d\xe3\xc3\x97\xc5\x00\xe2\xb9\xe8\x83\x5f\x64\x15\x8a\x92\xbd\x98\xbb\xbe\x08\x93\x97\x27\xd9\xf7\xd8\x67\x91\x43\xb1\x4f\xfa\xde\x52\x05\x78\xd0\xca\xd8\x7c\xb1\xcf\x45\xa9\x5b\x9a\xdf\xc6\x1e\x14\xe5\x6e\x31\xb4\x79\x59\x9f\xd1\x1c\xdb\xa4\xef\x39\x7f\x51\xd9\x97\xd2\x24\xbf\xbf\x43\xd8\xb6\xfe\xf6\x71\x34\x94\xfa\x15\x1c\xd5\xcf\x52\x0c\xf8\x5e\xc5\x9a\x86\x60\x9f\x24\xa0\xd8\xcb\x90\x04\x21\x81\x9f\x52\x8a\x90\xb0\x08\x37\xdf\x56\x9c\x28\x5a\x8b\x41\x14\x6c\x9a\x52\x96\xef\x59\xe7\x82\x0f\x5b\xca\x72\xcb\xb5\x59\xa9\xcc\x2d\xd5\xa3\xae\xc6\x59\xee\xdb\x3e\x8e\xab\x46\x93\xf5\x16\x05\x60\x5f\x15\x8b\x72\xb3\x25\x46\x38\xaa\xfb\xc7\xd2\x8a\x64\x29\x02\x30\xae\xc6\xf3\x6f\xc2\xfe\xd5\xe3\xb2\xea\x36\x5b\x11\xa2\x6f\x5a\xaa\x2c\xaa\xe8\xaa\xd5\xf7\x8c\x47\x58\x83\x51\x55\x39\xd5\xe3\xa2\xec\xb9\x54\x8f\xcb\xf2\xdc\xfc\xd6\x29\x34\xf6\xb4\x1a\x5e\x57\xec\x55\xd9\xb1\x9a\xdb\x0d\xec\x4b\x95\x1d\x71\x3d\xcf\x4c\x79\x5f\xa9\xa3\xd8\xf7\xa6\xec\xed\xf3\x3b\xdc\xe7\x00\x64\x71\x4a\xf7\x0f\xb0\x0b\xb7\x25\x04\xee\x8b\x59\xb1\x60\x41\xc8\x04\x62\xd5\x28\x69\xb0\x5e\x43\x55\x5c\x61\xbd\x1c\x2c\x8d\xc0\xb6\x2d\xd5\x34\x6c\xb0\xda\x61\xb9\xae\x67\x14\xa0\xa5\x79\x46\x96\x09\x67\xc5\x37\x95\xc1\xfb\xc7\x2a\x81\xb7\xb2\x80\xbd\x7a\xc3\x87\xe1\xad\x29\x88\xf6\x49\x33\xea\xb9\xc5\x69\x9f\x59\xf8\x64\xb5\x00\x67\xd9\xac\x41\x53\x1d\x34\xc5\x72\x7b\x6b\x48\x92\x7d\xc1\x3e\x69\x29\xd6\x13\x14\xfb\xfc\x0e\x32\x76\x4d\xe3\xab\x55\x45\x3a\xe2\xac\x55\x69\xb1\x02\x32\x14\x2b\x06\xfc\x0e\x33\x67\xc4\x48\x4b\xab\xc3\x3e\x73\x83\x24\x44\x9a\xa2\xba\x89\x03\x8d\xc8\xd6\xa4\xf9\xad\x23\x21\x0d\xd3\x5a\xb5\xcf\x2c\x25\xa6\x87\x3e\x76\x69\xaa\x67\x8b\x2a\x9b\xea\xb9\xc9\xab\x26\xcc\xda\xf0\xbd\x61\x5e\xde\xb1\xc4\x2d\x4a\x53\x7c\xc7\xd3\x94\x7e\xb6\xef\xad\x48\xe0\xdb\x86\x7b\x6f\xe9\x73\xbc\x4c\xc9\xbb\x57\x6f\x2e\xf5\x32\xcf\xef\x5e\x4d\x33\xba\x16\x12\x28\xaa\xdb\xb4\x52\xe0\x32\x51\x2f\x2d\xeb\x2d\x0b\x60\x0d\xc5\x77\x13\x43\x91\xbc\x55\x5b\xd2\xb2\xcc\x37\x5b\xc6\xb1\xa4\xc5\xb2\xb6\x6c\xad\x80\xaa\xbd\xbd\x39\x5a\x93\xf4\xe2\xaa\x07\xbf\xf7\x32\xbf\x1f\xec\x4b\x26\xf3\xc9\x45\x8b\xab\x1e\xde\x04\x3d\x69\x64\x65\x84\xb1\xe2\x98\x51\xb1\x3d\x3e\xf6\xf9\x6d\x6f\x22\x7f\xda\x67\x7d\x45\x30\x07\xef\x1a\xc9\x35\xcc\xa4\x2b\xe6\xfb\xe3\x7c\xd1\x8c\xfa\x6d\x9f\xf5\x03\xc8\x9c\xae\x59\xd0\x1f\xc7\x9a\x1e\xd7\x04\xe8\x16\xac\x64\x73\xe1\xca\x97\x6e\x4d\x5b\x26\xdb\xd4\xc5\x64\xaf\xef\x7c\x26\xdd\x93\x7d\x9e\x2f\xf9\xae\x5e\xb3\x7d\xee\xe9\x63\x0a\xde\xef\xb5\xc4\x2d\x9b\x24\x57\x95\x74\x6b\x95\x23\xaa\xa4\x37\xd7\xb5\xc6\x2d\x9b\x32\x57\x36\x75\x2b\x25\x2d\xd7\xe8\x9a\xcd\x6f\x4c\x26\xc2\x5b\x5d\x93\xa2\x77\xcb\x0d\x90\x6b\x7d\x38\x9f\xe6\x5c\x39\xec\x73\xff\x5e\x4c\x5a\x2f\x20\x26\x8d\xdd\x44\xe2\x4d\xa5\x2b\xc3\xfa\x34\xa9\x8c\xfc\xeb\xd3\x33\x9a\x26\xb4\x2f\xfb\xdc\x3f\xcd\xc3\x62\x35\x85\x98\xec\xeb\x7d\x8f\xef\x5d\xd5\x3e\x71\x90\x4d\xe0\x43\xdf\x50\x36\xc5\x37\xdd\xff\xd8\x67\x41\x44\x36\xeb\x5f\xed\xb3\xc8\x00\x9d\x37\x42\xb7\xcf\x22\x02\xf3\xdc\x9a\xb9\xe3\xad\x19\x29\xa6\xf2\xb3\x7d\xf2\x2a\x35\x0d\x43\xd3\x7c\x58\xe4\x94\x90\x11\x43\x93\x62\x68\x16\x24\xf6\x60\xe8\x26\x8c\x37\x23\x0c\x2f\x18\x1f\x2a\xc6\x87\x32\x31\xb7\x32\x94\x4d\x5e\x0f\x88\x25\xfe\xb2\x6f\x5f\x46\x95\xfc\x2a\xf9\xd1\xa9\xa7\x7d\x26\xc7\x61\x8b\x21\x24\x46\x33\xc5\x6d\x11\x44\xf3\x93\xcc\x9f\x52\xb6\x5f\x46\x73\xbe\xe6\x7c\xd4\x77\x0c\x2d\xcf\xd1\xdf\xf2\x01\x6a\x09\xba\xf3\x19\xa2\x4a\xd6\x31\x74\xc9\x7f\xb3\xcb\xd6\x29\x28\xe2\x46\xf7\x93\x1e\xfb\xdc\x36\xcd\x91\x64\x41\x04\xb1\x87\x32\x14\x7b\x05\xb8\x0f\xd5\xe4\x30\x87\x49\xa8\xad\x0c\x45\xe1\x18\x6f\x59\x01\xb4\xe8\xd1\x0c\xbd\x08\x2e\x5f\x94\xa1\xa8\x31\x34\x96\x2c\x8e\x37\x34\x56\x26\xa1\xd9\x74\x20\xf6\xa6\xa2\x66\x46\xdf\x03\x8a\x53\xef\x6a\x26\xdf\xc3\x8a\x9b\x8a\x8b\x89\x99\x91\x8e\x68\xc1\x41\xb2\xcf\xa3\x4e\x96\x1a\xf0\x6d\xd3\x6c\x75\x4a\x16\x0c\x38\x56\x2f\x22\x61\x7a\x18\x42\x2b\xe6\x70\x12\xa1\xca\x62\xb8\xac\xcc\xea\xba\xd6\x31\xe8\x31\x78\x31\x23\x1d\xb0\xb7\x21\xb4\x32\xeb\x9b\xec\x87\x66\x71\x30\xab\xc9\xfc\xc7\xd2\x02\xce\x6d\x36\x6b\x1c\x60\xd1\xa9\xba\x32\xd4\x96\x53\xb6\x84\xc0\xef\x20\x5e\x92\xb8\x14\x52\xa6\x2a\x6c\xbe\xd8\xb0\x38\x40\xaf\x64\xbe\x85\x1f\xb0\xcf\x14\x1b\xd3\x4c\xfb\x61\x49\x83\xd8\x98\xd6\x61\x27\xac\xfe\xd9\xfd\x8e\xee\xfe\x61\x6a\x4d\xb1\x41\x04\x6f\xf7\xb1\x2f\x62\x63\xbe\xd8\xc0\x13\x30\x9c\x57\x0c\xe7\xe5\x54\x2c\x54\xf0\x8c\x86\xdf\x86\x38\x9b\x8a\xa4\xa9\xf9\xfa\x60\x7e\x4d\xf1\x32\x87\xdf\x26\x2d\x8a\xa9\x29\x86\x1e\x3c\x8b\x29\x86\x0c\x05\x26\xe3\x52\x86\x02\xcb\xc4\x84\x4a\xd6\xf1\x4f\x4d\x28\xc3\x83\xc9\xa2\xfd\xa9\xf7\x32\x97\xf9\xb8\xc3\xf7\x8a\x7d\xd5\xb2\x07\x6a\x0b\xc4\xdf\x12\x7f\x27\x62\x60\x89\xbf\x45\xd5\x40\x3a\x29\xe8\x5c\xa1\xd8\xe7\x58\xa2\x05\x4b\xf5\xb7\x54\x7f\x16\xba\x2f\xd5\x9f\x17\x62\xd2\x89\x3a\x5d\x89\xbd\x5f\xe2\xd4\xba\x79\x2e\xc9\xec\x9f\xb7\xd0\xc2\xda\x0a\xd7\x48\x8e\x05\x6b\xeb\x71\xac\xb5\x2a\xa7\xc5\x11\x62\x72\x59\x72\x72\x72\x46\x4b\xbc\x2c\xd4\x4b\xd2\x33\x5b\xca\x8d\x05\x36\xd2\x85\x39\xb2\x3a\x58\xf3\x4a\x4c\xba\xa4\x59\x3e\x5f\x96\x96\x5c\x16\x53\x18\x19\x58\x9e\xd1\x75\x5b\x87\x21\x7d\xd3\xf7\xfc\x36\x4d\xdf\xc5\x3e\x27\x3d\xae\xa5\x3a\x58\xf2\xf9\x95\xa8\xba\x40\x1d\xd4\x03\xf3\x21\x11\x9a\xad\x07\x9e\x63\x35\x3e\x99\x48\xf3\x54\xe3\x93\xf5\x90\xcf\x71\x81\xea\x01\x9f\xd7\xe3\x4d\x32\x1f\x94\x47\x10\x4b\xab\x07\xfc\x9b\xb8\x02\x59\x8f\xc7\xf9\xac\x05\xe2\x32\x5a\x3d\x08\x81\x57\xe3\x93\xe9\xb6\x02\x04\x75\x5f\xbd\x70\x93\xee\xb7\x76\xc3\xb1\xc4\x63\xd3\x6d\x09\x46\x97\x16\x30\x9e\xa8\xb5\xae\xc7\xf0\x3b\x86\xef\x3d\xf6\xf9\xde\x70\x8d\xc7\x8a\x8d\x83\x3e\x3c\xf4\x44\xd1\x76\x3d\xd8\xab\x7a\x4c\xd7\x2d\x54\x86\xa0\x76\xeb\xa1\x9b\x40\xdd\x78\x3d\x70\x13\xea\xa1\x9b\x40\xb5\x74\x3d\x96\x34\x6b\xa6\x51\x00\x5d\x8d\x81\xd6\x73\x6b\xc1\xcd\x80\xf5\xdc\x8a\x70\xff\xec\x8d\xba\x1d\x78\xe2\x62\x57\x6f\x04\x51\xf3\xc2\x7d\xa0\xcf\x7a\xca\x2e\x17\x95\x23\xd9\x1e\xaa\x46\xf6\x4c\x86\x39\x2b\xa1\x4a\x4a\xfd\xab\x81\xca\x4a\xc8\x90\x4b\x7f\xd5\x80\x61\x25\x38\x18\x36\x90\xaa\xa1\xc1\x7a\x6f\x01\x45\xad\x71\xbd\x11\x4f\xf5\xde\x12\x09\xdb\xbc\x1a\xc6\xab\x84\xe7\xd0\xe2\xd5\xe0\x5c\x25\x10\x47\xd8\xa7\x1a\x86\xab\x84\xd2\xb8\x29\x57\x0d\xa4\x55\x02\x64\x54\xbf\x56\xc3\x63\x95\x10\x57\xd9\xd0\xae\x06\xb8\x2a\x41\xaa\x02\xc0\x0c\x51\x55\x43\x54\xc7\xd6\x91\xd5\x08\x55\x35\x42\x75\x5e\xe5\x17\xb5\x79\x35\x7e\x55\x8d\x23\x91\x2b\xad\x86\x91\xaa\x97\x40\x2e\xea\x78\x8c\x8c\x54\xa3\x0c\xf7\x16\xb9\xd5\x6c\x76\xd5\xab\xc6\xb1\xab\x3a\xd5\xf5\xad\xaa\xdf\x46\x40\xd5\xdf\xad\xf5\x55\x8a\x7b\xa0\x6e\x5d\x35\x45\x98\xb6\xd7\x54\xcd\x10\x56\xad\x74\x0a\xc9\xab\x46\x7a\x7d\x93\x7c\x71\x83\x58\xdb\xb6\x5a\x7c\x59\xe0\x89\xe1\x5b\xa4\xc1\xae\x63\x8b\xc1\xaa\x95\x53\x51\xc3\x17\x5a\xa9\xaa\x85\xab\xb7\x0e\xb9\xa8\x58\x55\x7c\x95\xfc\xca\x75\xc1\x37\xca\xca\x8a\x2c\xba\x88\x12\x54\x45\x51\x5d\x9b\x45\x2e\x6a\x3a\xeb\x1a\xbe\xf5\x96\x20\x5d\x5f\x3e\x9b\x89\x88\x06\x13\x5e\x61\xf3\x47\x33\x47\xd0\x0e\x2f\xd0\x6d\x0b\xaf\x09\xe7\x06\x52\x2f\xaa\x23\x9b\x50\x6d\x02\x13\x25\xd3\x44\x66\x13\x99\xa4\xf9\x9b\xd0\x6c\x40\xf3\xe2\xea\x6d\x13\x9b\x0d\x6c\x5e\x54\x67\x36\xc1\xd9\x88\x29\xdf\xc7\xc6\x6b\x13\x8b\x0d\x2c\x5a\x2f\xd3\x04\x63\x0b\xc2\x7c\x6f\x4e\x13\x8d\x0d\x34\xde\x24\x9a\x9a\x70\x6c\xc0\xf1\x46\xa8\x34\xf1\xd8\xc0\xe3\x1d\xf6\xe6\x34\x01\xd9\x00\xe4\x1d\xf6\xe6\x34\x11\xd9\x40\xe4\x4d\xdd\x6c\x13\x91\x0d\x44\x5a\x2e\xd4\x84\x5c\x03\x72\x37\xe5\x60\x4d\xc8\x35\x20\x77\x3f\xdb\x43\x6e\x42\xae\x01\xb9\x3b\x6f\x87\xbb\x09\xb9\x06\xe4\xee\x12\xf7\x40\x21\xd7\x80\x5c\xc0\x6e\x6a\x42\xae\x01\xb9\x40\xe5\x7f\x13\x72\x0d\xc8\x05\xae\x2b\x35\x21\xd7\xf0\x87\xc3\x95\xf6\xc0\x46\xdc\xa4\x81\x42\xaf\x74\x36\x51\xd8\x40\x61\x40\x44\x36\x51\xd8\xc8\x02\x87\xc0\xe6\x88\xc2\x06\x0a\x43\x64\x73\x44\x61\x03\x85\x01\xf7\xa0\x89\xc2\x36\xe3\xf9\xf5\x23\x50\xbd\xd9\x66\xbc\xe9\x62\x20\xb5\x91\x4d\x60\x36\x80\x19\xb8\xf3\xd2\x04\x66\x03\x98\x66\x3d\x9a\xc0\x6c\xa0\x30\x90\x8d\xef\xa2\xb0\x83\xc2\x50\xb6\x66\xe9\xa2\xb0\x83\xc2\x48\x5d\x6a\x17\x85\x1d\x14\xc6\x93\x42\x36\x51\xd8\xcf\x5a\xbf\x7e\xc4\x6b\x7b\x4b\xfd\x24\xfa\xd4\x01\x66\xbc\xb6\x25\xd1\x05\x66\x07\x98\x91\xf8\x5b\x17\x98\xfd\xda\xca\x36\x92\xcf\xeb\x17\x59\x87\x0e\x56\x23\x91\xa7\x2e\x56\xfb\xbd\x2d\xdc\x48\x70\xa6\xdf\x58\x0c\x1d\xf8\x46\xee\x56\x74\xe1\xdb\xef\xed\x1f\x44\xaa\xd4\x3a\x72\xf6\xb3\x83\xe8\x48\x45\x7a\x17\xd1\x3d\xc4\xf8\xf5\x23\x72\xe7\xb2\x07\x9c\xef\xae\xc0\xa5\x66\xb8\x0b\xf2\x0e\xc8\x63\xda\x76\x5f\x17\xe4\x1d\x90\x7b\xb5\xa3\x0b\xf2\x0e\xc8\x63\xa6\x76\x4f\x90\xf7\xa4\xf0\xbe\xef\xdd\xe5\x5b\xa9\xb1\x85\x7b\x5c\xc2\xfc\xec\xa9\xb3\x11\x0f\xb5\x83\x0e\x1b\xd7\x26\x34\xd0\x93\xed\x19\x6a\x2a\xde\x9a\xbe\x85\x8c\xbb\xb9\x6e\xd3\xe5\x97\xae\x04\xbf\xa9\x4e\xea\x32\x4c\x57\x84\xdf\xd6\x1a\xca\x31\x5d\x21\x7d\xe3\x31\x76\x59\xa6\x13\xdf\x3f\x03\xc9\xa6\x9e\x31\x75\x3a\xb1\xf7\x53\x76\xe8\x19\x13\xb5\x67\x6f\x92\x25\xbe\x81\xa8\xfc\xfe\xa1\x22\x23\x15\xe6\x9b\xce\xe7\x4d\x30\xca\x71\x7b\x26\xca\xd7\xbd\x5c\xf8\x70\x8d\xb2\x13\x45\xdf\x3f\x56\x5f\x6c\x38\x76\x79\xb5\x53\x15\x15\xb9\x70\xd0\x0b\xd6\x63\x27\xb4\x9d\x0e\x56\x2d\xc4\x48\x3b\x1c\x9d\x8e\x0d\xed\x2e\x47\xf7\xb2\xf5\x68\x3a\x62\xa1\x98\x92\xfd\xa5\xf0\x28\x51\xec\xd5\xcb\xe4\xb3\xe0\xfb\x74\x6e\x81\xd1\xe5\xfb\x0e\xdf\xa7\x73\xfb\x73\x5d\xbe\xef\x54\xc8\x24\x2a\x81\x7a\x45\xf3\x77\x44\x41\x22\xef\xd4\x15\x05\x1d\x51\x90\x60\xf2\xae\x28\xe8\xcd\xb7\xb6\x6a\xed\xf2\x7d\x87\xef\x13\x57\x9b\xbb\x7c\xdf\xbb\x7a\xfc\xda\x03\xe5\xfb\x0e\xdf\xa7\xb4\x75\x67\x97\xef\x3b\x7c\x9f\xd2\xd6\x9d\x5d\xbe\xef\x30\x79\x7a\xfe\x5c\x23\xf7\xaf\xeb\xe4\xae\x0c\xe8\xc8\x80\x94\xb7\x6a\xed\xca\x80\x8e\x0c\x48\x05\xd8\x29\x03\x3a\x32\xe0\x39\xb6\x6a\x1d\xca\x80\x81\x0c\x78\xb8\xaa\x3d\x94\x01\x03\x19\xf0\x70\x75\x75\x28\x03\x06\x32\xe0\xb9\xb6\x6a\x1d\xca\x80\x01\xc3\xfb\x17\x37\x86\x0c\x3f\x60\xf8\x27\x1c\x79\x77\xf9\x16\xdc\xfd\x10\x53\x1d\x72\xf7\xb8\xb5\x65\xb6\xaf\x38\x64\xe5\x01\xdf\x3e\x14\xc8\x0e\xf9\x76\xc0\xa4\x0f\x55\xcf\x43\x26\x1d\x30\xe9\x03\xf2\x87\x4c\x3a\xb4\x8b\xf2\xd6\xa3\x43\x26\x1d\x30\xe9\x03\xee\x87\x4c\x3a\x60\xd2\x4c\x4e\x74\xc8\xa4\x23\x6d\x47\xce\x1b\xe6\x23\xc1\x09\x23\x69\x51\xed\x2d\x1c\x32\xdb\xa0\xb4\xd0\xc4\xd0\x78\x88\xa0\x0d\xf8\x2f\xbb\x13\xb2\xdf\x80\xfd\xbc\x20\x3a\xe4\xbe\x01\xf7\x65\x2e\x83\x0e\x99\x6f\xc0\x04\x39\x6c\x1d\x33\xe4\x81\x01\xba\x33\xa2\x62\x88\xee\x01\x6e\x73\x4c\x94\xfe\xfa\x16\xb8\xf5\xde\xc0\x10\xb7\xa3\x6e\xfb\xda\x8a\xee\x51\xa7\x6f\x31\x90\xac\xf9\x10\xb7\x03\xdc\x66\xfe\xee\xc8\x10\xb7\x83\xb8\xb2\x65\x50\xc3\xb0\xf2\x00\xca\x99\x88\xdb\x10\xca\x03\x28\x67\x22\x1a\x43\x28\x0f\xa0\x5c\x8e\xad\x93\x87\x50\x1e\x40\xb9\xc0\x62\x43\x28\x0f\x62\x1c\x85\xc4\xf0\x30\xc4\x31\x40\x77\x21\xa9\x33\x44\xf7\x00\xdd\x05\x87\x66\x08\xdf\x01\x7c\x0b\x29\x93\x21\x7c\x07\xf0\x2d\x61\xcb\xb4\x21\x7c\x07\xf0\x2d\x71\xab\x8a\x29\x7c\x27\xf0\x2d\x69\x4b\xb4\x29\x7c\x27\xf0\x2d\x29\xe5\x2f\x9f\x53\xf8\x4e\xe0\x5b\x28\x09\x9e\xc2\x77\x02\xdf\x42\x30\x78\x0a\xdf\x09\x7c\x0b\x37\xd5\xa7\xf0\x9d\xc0\xb7\x50\x32\x35\x85\xef\xb4\x02\xe0\x20\x0e\x31\xc5\xef\x34\x3b\x7f\x90\x31\x9d\x02\x78\x9a\x75\x3f\xc8\xda\x4d\x11\x3c\xcd\xb0\x1f\xa4\xae\xa6\x10\x9e\x66\xc9\x0f\x6e\xa9\x4e\x31\x3c\xcd\x7e\x1f\xa4\x31\xa6\x20\x9e\x66\xb0\x8f\xb8\x15\xc4\x14\xc5\x53\x05\x71\x50\xdf\x31\xc5\xec\x7c\x4d\x7c\xe2\x06\x53\x84\x4e\x15\xc4\x41\x85\xf2\x14\xa2\x53\x05\x71\x50\x2a\x38\xc5\xe8\x34\x1b\x7c\x10\xde\x9c\x5c\xa2\xff\x9c\x0a\xef\xa3\x6c\xeb\x65\x0a\xdc\xe9\x6d\xe9\xf3\x60\xab\xcc\x34\x4e\xed\xfd\xf3\xd8\x7e\xe0\x14\xcd\x53\x83\xff\xe4\x2f\x63\x4c\xe1\x3c\xb5\xf8\xcf\xf3\xd9\xf3\x89\xe7\x59\x5f\x1f\x64\xcb\xf9\x29\x7a\xa7\xf7\x39\xcf\x7b\x2b\x8d\xc9\x7d\xce\xcf\xa9\x1f\x70\xde\x1c\xa4\x90\x9e\x64\x01\xce\x93\xab\x1f\x93\x5c\xc0\xfe\xe1\x3d\x52\x34\x53\x50\x4f\xbd\x83\x33\x6c\xd8\x4d\x51\x3d\xa9\xdc\x3b\x4f\x14\xf1\xec\x94\x55\x4e\x4b\xf6\xce\xb4\x5d\xab\x29\xd4\xa7\xa5\x73\x27\x97\x89\xa6\x58\x9f\xde\x6a\x3a\xb9\x58\x32\x2d\x93\x9b\xc6\xf3\x4e\xae\x77\x4c\xd1\x3e\xbd\x5b\x73\x92\x2a\x99\xc2\x7d\x4e\x2a\x3c\xce\x0c\x46\x27\x15\x1e\xd3\xf2\xad\x13\xc1\x35\xe5\x81\x69\xac\xe3\xa4\x2c\x70\xca\x04\xd3\x58\xc2\x45\x99\xe1\x92\x0b\x96\x17\x39\x2e\xfe\x62\xc3\x3a\xb0\x72\x96\x7e\xfe\x75\x52\xdf\x2f\x6b\xac\x83\x58\xc7\x45\xf9\xdb\x3a\xb0\xbf\x96\x7e\xf4\x85\xe5\xb6\xe4\x97\x75\x12\x73\xb8\x2e\x0a\xcf\x4f\xca\x11\xd7\x49\x65\xf9\x85\x1a\x5c\x27\xea\x79\xbd\xae\x34\xa9\xd3\x25\x63\x2d\x6b\x84\x2e\xee\x64\x2c\x39\x6b\x5d\xc4\x20\x2f\xfe\xf0\xc4\xba\x88\xed\x2c\x6b\x7f\xae\xf0\xd0\xe7\xd8\x8b\x78\xed\x45\xca\x6c\x5d\x84\xff\x97\x95\x39\x17\xd7\x39\x97\x3c\xb8\x6e\xd2\x1d\x57\xcc\xf4\x91\xee\x58\xf2\xe5\xe5\x2d\x03\xf9\x72\xc9\x97\x57\xda\xd2\x7a\xc9\x97\x2b\x10\x7b\xba\xb8\x52\xbd\x02\x31\xd2\x25\xaf\x5e\xcf\xb6\xbd\x97\xbc\xba\x02\x31\xa5\x8b\xd4\xd5\x0a\xcd\xf7\x08\xeb\x5f\xa4\x81\x56\x40\xc0\x2d\x79\xfa\x2a\xdb\x08\x5a\xf2\xf4\x92\xa7\xaf\x72\xdc\x7f\xa9\xc0\xd3\xf3\xd7\xfa\x7b\xc9\xf1\x2b\xbe\xb3\x70\xa1\x40\x8e\x5f\x89\x53\xb8\xb9\xc9\xb5\x12\x91\x9f\xa5\x14\xb8\x89\x00\x2e\xa5\xc0\x7a\xcd\x44\xa2\x78\x4b\x29\xb0\x5e\x33\x11\xd3\x66\x29\x05\xd6\x6b\x26\x5e\xd4\xed\x2b\x05\xd6\x6b\x26\x72\xdf\x7d\x29\x05\x96\x1c\x7f\x93\xa8\x5d\x72\xfc\x82\xc9\xcf\x3b\x72\x82\x14\x15\xec\x9f\xe9\x8d\x0f\xde\x73\xac\x45\xe7\x37\x57\x12\x57\xe9\xbe\x47\x14\xf4\x4e\x8e\xa5\x2e\x6b\x99\xc4\xbf\x31\xc2\x17\x7f\xb9\xe0\x73\xbd\xe1\x01\x6e\xbb\x2d\xa5\xc5\x32\x99\x9e\x48\x60\x2f\xfe\x22\xc0\xfe\x21\x5c\x83\x3f\xb5\xb8\xfe\xff\xb9\x94\x2a\x29\x6c\x69\xb1\x94\x2a\xcb\x24\x79\x0a\x31\xd3\x57\xec\xf3\x7e\xc4\xdb\xd7\xe8\xf3\xf2\x59\xe0\x96\x86\x49\xf2\x55\x8d\x7e\x05\x10\x46\xc6\xfc\x73\x55\x23\x5d\xde\x00\xb1\x58\x7b\xbd\xc1\x0a\x74\xd2\x52\x72\x2d\xff\x22\x55\xc2\x0d\x59\x64\x9f\x3f\x57\x23\x09\x98\xa2\x57\x54\x22\x67\xd9\xa8\xe1\x48\x24\xa7\x16\x59\xe5\xcf\xf5\x46\x3a\x48\xe0\x2c\x25\xdc\xf2\xc6\x78\x42\x22\x2d\xb2\xc5\x9f\xab\x19\x0d\xa7\x8a\x6f\x91\xdd\xdd\x3f\x8c\x25\x7b\xb2\x4c\xe8\x2e\x2f\x7e\xa7\x04\xda\xb9\xce\xfd\xb9\x4c\x98\x26\x02\x4c\xcb\x84\xe9\x6a\x46\x2d\xf1\x2b\x17\x97\x9e\xf7\x0f\xf3\x11\xa9\x5e\x4a\xd1\xe5\x75\xe6\x44\x14\x79\x99\xf4\x5c\x3d\xf8\x1e\x52\xa0\x47\xdf\xe3\x36\x6a\xe2\x3a\xdb\xe2\xa6\xf3\xe7\xf2\xaf\x61\x25\x2e\xaf\x2d\x13\x9c\xcb\x1b\xc5\x89\xbf\xeb\xb0\xb8\x37\xfc\xb9\x4c\x66\x26\xfe\x18\xc1\x22\x8b\xb9\x7f\x5c\x03\x6c\x28\xbd\x57\xe7\x3a\x61\x7a\x6f\xe7\x90\x11\x58\x5e\xf6\x4d\xd8\x41\x8b\xcb\xbe\xfb\xe7\xbd\xaf\x72\xd0\xe7\x1a\xdd\xf7\x90\x34\x64\x13\x3f\x57\xa7\x90\x21\x65\xbf\x6d\x4a\x1f\xd1\xc8\x24\xc7\x77\xa2\x91\xab\xa3\x71\x52\x96\x66\x34\xce\x52\x6b\xa4\x0c\x9e\xd5\x1a\xcb\xe4\x5e\xe2\x6f\xa3\x2d\x93\x7b\xcb\xbf\xe1\x95\x32\xf7\x8e\x2c\xea\x5e\x6a\x97\x84\x6b\xbe\xd4\x2e\xcb\x8b\xad\x89\x3a\xc3\x35\x3c\xdf\x61\x44\xbb\x04\xef\xf0\xf0\x6d\xc3\xa8\x2a\xf7\x81\xd7\x90\xe6\x21\x7d\x14\x75\xaf\x41\xb4\x74\xbd\x99\xa6\x52\xb8\x82\x23\x7d\xd3\xbf\xa0\x47\x4d\xe1\x32\xbc\xb0\x2c\xb8\x7e\xa8\x29\x5c\x16\x57\xaf\xe9\x9f\x8f\xe3\xae\xe9\xe2\xae\xe9\xfe\x21\xfc\x46\xc6\x67\xa9\xd5\x96\x77\x45\x9f\x63\x1b\xfb\x6b\xca\x5b\xd3\xa2\xfd\xc3\x5b\x40\x14\xed\xaf\x39\xbc\x88\xc5\x65\xaf\x39\x5d\x63\x7a\x19\xe4\xb6\x6f\xd8\x67\x84\x97\x4b\x69\xd3\xbd\x57\x4b\x3e\x67\x08\x7f\x29\x59\x77\xe3\xf7\xf5\x87\x2f\x7f\xfe\x63\x89\xfd\x0f\x3f\xfe\x38\xbf\xfd\xcc\x1f\x66\xe4\x2f\x22\x7e\x8c\xb9\xbe\xfb\x36\xff\xfc\x47\x1e\x7f\xf8\xfe\x87\x3d\x8a\x7f\xff\x37\x00\x00\xff\xff\x50\x54\xfb\x3f\x10\x52\x00\x00"); +func _ecbc ()([]byte ,error ){return _gb (_efaf ,"HKdlb-B5-V")};var _eaef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x5d\xab\x26\xc7\x71\xc7\xef\xcf\xa7\x78\x2e\x9d\x0b\x67\xa7\x5f\xab\x0b\xc4\x01\x23\x45\x44\x0e\x8e\x83\x15\x27\x81\x90\x8b\x79\xa9\x11\x0b\xd1\xd9\x65\x77\x75\xe1\x6f\x1f\xea\xf7\x7f\xa4\xc4\x49\x40\x06\x53\xda\xff\x53\xdd\x53\x5d\x5d\xef\x33\xe7\xdd\xd7\xdf\x7d\xf3\xdd\xdb\xfb\x2f\x8f\x77\xff\xf4\xe9\xc3\xf9\x7d\x7c\x79\xdc\xef\xdf\xae\x4f\xf1\xf9\xc3\x4f\x9f\xce\x78\x1c\xf1\xc3\xfb\xb7\x97\x97\x52\x1f\xd7\xfb\xf3\xcb\xcf\xff\x84\x9c\x3f\xee\x1f\x5f\x5e\x72\xfd\xf7\x7f\xf9\xfc\x25\x7e\xfc\xee\xed\xfe\xf0\x68\xe2\xbb\x7e\xfa\xf8\xe4\x7d\x3c\xde\xfd\x29\x7e\x78\xff\xf9\xcb\xa7\xbf\x3c\x7e\xf3\xbb\xeb\xc3\x11\x7f\xf3\xb8\xe2\x4e\xfc\x8f\x9f\xae\xf8\xf4\xfe\xed\x87\xc7\x6f\x7e\xbf\x7f\xdc\xdf\xca\x2f\x3f\x7c\xff\xd3\xc7\x8f\xff\x19\x3f\xc6\xdb\x97\x47\x01\x8b\xb7\x0b\xfa\xf2\xee\xeb\x3f\xec\x1f\xff\x71\xff\x31\x1e\xef\x7e\x77\x5d\xbf\xfd\xd3\x3f\x7c\xff\xfb\xdf\xfe\x3d\x3f\xf1\xcb\xbf\xc4\xa7\xcf\xef\x3f\xbc\x3d\xca\xf6\xb7\xdb\x36\xff\x1b\xff\xe7\xbf\x7c\x8c\xe7\x56\x2f\xef\xfe\xfc\xdd\x37\x7f\xbc\xef\xcf\xf1\xe5\x51\xfa\x26\x9e\x7f\xfb\xf3\x77\xdf\x3c\xfe\xbd\x3c\xca\xf6\xa8\xa3\xd5\xf9\x1f\x4f\xd6\x7f\xfd\xc3\x87\x2b\x1e\x62\x7a\xe9\x3a\xd1\xf9\xe1\x8a\xcf\x1f\xf7\x33\x3e\xed\x6f\x3f\xc4\xcb\xe3\xf1\xd5\xb6\xbd\x3e\x1e\x8f\xaf\xd6\xf6\x9a\xff\x5a\xa5\x6f\xaf\x8f\xaf\xfc\xdb\x6f\xbf\xe6\xdf\xbf\xd3\xaf\xdf\x7c\xcb\xbf\xfe\x6e\xe3\xd7\x6f\xbf\xce\x5f\xe3\xed\xfa\x5f\xbb\xbd\x14\x3d\xe4\xed\xc3\x97\x2b\x6e\x61\xec\xff\x55\xb9\x5f\x1f\xb5\x95\x5c\xf3\x3f\x7f\x7c\x29\xdb\xf6\x94\xeb\xfd\xf5\xe4\xaf\xc9\x6f\x91\x8f\x7d\x3c\x58\xf4\xb3\x50\xab\x00\xcf\xd6\x12\x5a\x82\xf6\x33\x21\x9f\x09\x1d\x0b\xe8\xb8\x5f\x1f\x0f\xeb\x2c\x3c\x05\x9d\x01\xe4\x09\x5d\x3b\x50\xac\x84\x06\x0b\x6f\xed\x75\x5b\x42\xc6\xc2\xfb\x14\x74\x02\xe5\xc2\xda\xef\x84\xea\x60\xe1\xda\x12\x9a\x2c\xac\xe6\x09\x39\xd0\x2a\x40\xbe\xbf\x3e\x1e\xab\xe4\xf6\xd5\xb5\xf0\x2e\x09\xf5\x9a\xd0\x5d\x05\xf5\xd7\x87\xf9\x58\x2f\x5f\xad\xa6\x33\x36\xce\xe8\x75\x24\xa4\x33\x36\x9f\x09\x2d\xb8\xb4\x57\x3b\xe6\xeb\xa3\x6c\x25\x45\x6d\x87\xa0\x0b\xa8\xe5\xc2\xae\xbd\x7a\x8a\x57\xb6\x91\xd2\x77\x13\x94\xdb\x97\xcd\x53\x88\xae\xed\xbb\x97\xd7\x47\x29\x9b\x25\xa4\xed\x21\xd6\x39\x76\xdf\xc5\x95\xc4\xfa\x2a\x40\x45\x50\x49\xc8\x05\x55\x41\x15\x08\x21\xf6\x26\xa8\xbd\x3e\x6c\x6c\x0d\xa8\x0b\xea\x70\x69\xfb\x21\x68\xc0\x85\x10\xfb\x14\x34\x13\xaa\x5a\x68\x82\x2c\xa1\xa2\xed\x97\xa0\x95\x50\x93\x10\x2e\xc8\x81\xb4\xfd\x2e\x68\x47\xfa\x0d\xe8\x10\x74\x00\xa1\x89\xfd\x14\x74\x22\x57\x07\xba\x04\x5d\x40\x0b\x28\x04\x05\xa2\x4e\x20\xe9\x2b\x89\x8d\x8d\xbd\x0e\xe9\x2b\x89\x8d\xc2\x5e\x87\xf4\x95\xc4\x46\x43\x88\x43\xfa\x4a\x62\xa3\x6a\xa1\xf4\x75\xa0\xaf\xc6\x13\x0f\xe9\x2b\x89\x8d\xa1\xbd\xa4\xaf\x03\x7d\x61\x00\xfd\x90\xbe\x0e\xe9\x0b\xb9\x0e\xe9\xeb\x90\xbe\xd0\x84\xbc\x03\x62\xa3\x69\x2f\xe9\xeb\x40\x5f\x5d\x42\x48\x5f\x49\x6c\x6c\x12\x42\xfa\x4a\x62\xa3\x72\x43\x87\xf4\x95\xc4\x46\xd1\x13\xa5\xaf\x24\x36\x64\x85\x87\xf4\x75\xa0\xaf\x9e\xd0\x92\x7d\x41\x4a\xc1\xc8\x97\xec\x0b\x62\xf2\xed\x25\xfb\x5a\xbb\xb8\xf2\x89\x4b\x5a\x85\x98\xcf\x02\x24\xae\x3c\x50\x29\x9d\x85\x3a\x10\xc4\x26\x67\x5c\x3a\xd0\x8a\x23\xb9\x46\x9e\x71\xc5\x29\xe8\x84\x0b\x21\xe2\x12\x94\xde\x51\xb1\xd5\x15\x12\x35\x89\xf9\x64\xa1\xe2\x04\xa4\x54\x0c\x60\xdd\x12\x22\x89\xcd\x26\xa8\x0a\x72\xb8\x16\x90\x84\x48\x62\xb3\x71\xa0\xfb\x10\x74\x26\x57\x49\xc8\xe5\xb5\xde\x17\x90\x03\xb9\x20\x1d\x68\x01\xb1\x97\x8f\xf4\xda\x5a\xe1\x1a\x55\x50\x45\xd4\x06\xd4\x04\xb5\xe4\xd2\xc2\xd1\x05\x75\xf6\xd2\xc2\x21\xc8\x92\xab\x6f\x40\x4b\xd0\x62\xaf\x0e\x24\x21\xc6\x01\x97\xa0\x53\x10\x2a\xc4\x72\x7c\xa0\x42\x27\xe6\xd4\xce\x13\x67\x11\x84\x72\xb8\x21\x9f\x12\x95\x30\x54\x07\x90\xc2\x90\xaf\x3d\x21\xfc\xd1\xd7\x21\xe8\x60\x21\x4f\x5c\x7a\x62\xc6\x89\x52\x71\x51\x57\x9c\x80\xd8\xc4\xbe\x5c\x71\x02\x52\x5a\x2d\x40\x3a\x10\x71\x62\xf6\x09\xa4\x03\x5d\x17\x5c\x08\x71\x85\xa0\x80\x8b\xeb\xb8\x30\x00\x8f\x9e\x5c\x06\x14\xd2\x57\x12\xf3\xc9\x13\x43\x42\xdc\x3c\x71\x21\xd7\xad\x27\xde\x7a\x22\x9a\xb8\xf5\x44\x6e\xbb\x63\x5f\xbb\x6e\x1b\x52\x3a\x81\x6f\xef\x45\x10\xfa\x1a\x1b\x10\xfa\xda\xd1\x57\xdf\xf2\xd2\x76\xe9\x6b\x47\x5f\xdd\xe0\x92\xbe\x76\xe9\x0b\x23\xdf\xa5\xaf\xdd\x6b\x72\xa1\xd5\xdd\x9b\xa0\x06\x57\x23\x83\xff\x9c\x77\xff\xbf\x54\xbc\x76\xef\x5a\x91\xa6\xdc\xc9\x6f\xbb\xef\x82\x30\x65\x42\xd2\xee\x7a\x7a\xe6\xa1\xd2\x9d\x93\x9c\x92\xf1\xc4\xa9\xc7\x00\xd2\xe1\xce\x14\x5b\x01\x62\x3f\xb5\xf0\x94\xd8\x13\x48\x62\x47\x8a\x3d\xb8\xad\x3d\x24\x76\x48\x6c\xb6\x0f\xc9\x85\x3a\x07\x2a\x38\xa4\xce\x23\x3d\xa5\x0c\x12\xd0\x21\x4f\x81\xd8\x24\xc9\x1e\x9d\x27\x1e\x23\xd5\x39\xf1\xe0\x63\xdc\x82\x6e\xb8\x52\xc3\x87\xd2\xfa\x81\xd2\x27\xf1\xe7\x90\xd2\x8f\xcc\xee\xe5\xb9\xd7\xaa\x82\xe4\x75\xec\xb5\x9a\xa0\x34\x86\x49\x94\x3a\xd6\x12\x24\x7f\xd2\x5e\x18\xc3\x41\x10\x9c\x82\x14\x04\x0f\x05\xc1\xc9\x81\x14\x04\x0f\x4c\x79\x92\x64\x0f\x99\xf2\x21\x53\xd6\xf6\x32\xe5\x03\xdd\x4f\x32\xea\x21\xdd\x43\xcc\x27\xa2\x4a\xf7\x47\x2a\xb7\x18\x06\x7f\x9c\x97\xa0\x8b\xbd\x2a\x10\x3e\x70\x44\xde\x90\x11\xcb\x8e\x90\xbe\x82\x1b\x22\xb2\x1c\x8a\x9e\x47\x46\xbc\x62\x3a\xb6\x22\x1e\xc4\x26\x31\xe3\xb8\xa5\x89\xf4\x81\x62\xc6\x42\xf9\x00\xc4\x26\xce\x73\x28\x2e\x42\x8a\x4a\xaa\x43\x71\x11\x62\xf3\xb9\xfd\xf3\x89\x48\x8f\x29\x9f\xba\xed\x33\xe3\x57\xb1\x95\xdb\x9f\x63\x0a\x22\x1a\x70\xec\x73\x10\x0d\xce\x2c\x7d\xca\xe2\xb6\x4f\x2b\x82\x70\x31\x4a\xbd\xd3\xaa\xa0\xbc\xed\x45\x02\x3a\x75\xdb\xa7\xb3\x10\x2b\x3c\x5d\x0b\x5d\x0b\x3b\x90\x16\x7a\xca\xb5\xa6\xa0\x4b\xd0\x85\xee\x1d\x28\x04\x11\x59\x4c\x7b\x61\x72\x67\x26\xb0\xb2\x88\x2c\xa7\xea\x01\x88\xcd\x27\xd4\x04\x21\x97\x0b\x7a\x2e\xc4\x56\x8d\x33\xea\xb6\x4f\x94\xe3\x25\x55\x78\x49\x39\x17\xae\xe0\x9c\xf1\x92\x2b\x5c\x72\x05\xea\xba\x4b\xae\x70\x71\x6c\x47\xab\x97\x8e\x7d\x65\xe8\xa8\x1b\xe9\xf3\x5a\x97\x20\xcc\xe4\xc9\xc5\x81\xae\x0c\x23\x75\x23\xbc\x5d\x8a\x13\x10\x9b\x5c\xc7\xe5\x43\xd0\x4a\x2e\x22\xc0\xe5\x2e\x08\x03\x20\x54\x5e\x8a\x26\xd7\xb5\x25\x17\x76\x7f\x5d\x45\x10\x8a\x5e\x2c\xbc\x50\xce\x95\x5e\x5f\x0b\xe5\xc6\xa5\x48\x0c\xb1\xb9\x04\x61\x00\x57\x1a\x66\x2d\x98\xef\x25\xc3\xbc\x64\x98\xcb\x80\x9a\xa0\x3c\x63\xa1\x23\x08\xe9\x2b\xfa\x48\x68\x08\x9a\x82\x30\x26\x2a\xef\xe8\x26\x28\x0f\x54\x30\xcc\x50\x76\x0e\x65\xe7\xa5\x85\xbb\xa0\x1d\x2e\x41\x87\x20\x2c\x9a\x20\x1a\x1d\x8b\x8e\xb4\xcf\x5a\xb8\xa1\x50\xde\x85\x98\xdc\x3d\x94\x77\x23\x23\x53\x2d\xe8\x2b\x14\x99\x20\xe6\x04\xbe\x50\x92\x8d\xbc\xc7\x5a\x28\xec\x43\xf7\x18\x67\x1e\xa8\x52\x5c\xc6\xa9\x03\x9d\x1c\xc8\x1b\x90\x0e\x94\xfd\x50\xad\x82\x2e\x89\x7a\x91\xd6\x09\xa2\x71\x61\x00\x81\xbe\x1a\x95\xf7\x2d\x7d\xdd\x79\xec\xda\xc8\x95\xb7\x8e\x7d\xcb\xbe\x5c\x10\x7b\xdd\x59\x6e\xd4\x46\xc4\xbc\x55\x6e\x40\x6c\xba\x20\xe4\xba\x91\xbe\xa1\xaf\x5b\xd2\xdf\x99\xcc\x6a\xc7\xa2\x6f\x25\x33\x88\x29\xca\xdd\x32\xcc\x3b\xfd\xb1\x76\x42\xda\x2d\x7f\xbc\xc9\x6f\xb6\x15\x20\x0c\xf3\xce\xb6\xa4\x76\x2a\xef\x5b\x6d\x09\xc4\x8c\x54\x7c\xab\x2d\xb9\xb3\xb8\xac\x1d\x77\xbf\x55\x5c\x42\xcc\xb6\x0e\xa4\xed\x2f\xf6\xc2\x56\xef\x4b\x7b\x5d\xda\x8b\x85\x97\xf6\x4a\x15\x56\xb5\x12\xb7\x54\x08\x31\x23\xd3\xdf\x2a\x37\xee\x48\xe9\xc7\xd6\x7f\x3d\x15\xdf\xa1\xa7\x27\x31\xa3\xaa\xbc\x95\x18\x6f\xae\x66\x64\x6d\xe0\xea\xcf\x7d\xc3\x48\x49\xb2\xbe\x61\xa4\x22\x66\x4f\xae\x1d\xc8\xd2\xfc\x28\xcc\x7d\xb3\x25\x88\x34\x95\x16\xe9\x9b\x69\x21\x57\x33\xd2\xb0\x7c\x5b\xda\x3e\x89\x59\x81\x8b\x7e\xd7\xb7\x0c\x69\x75\x38\xdb\xef\xe2\xda\xc5\xd5\x80\xc4\x95\x12\xd7\xd9\x58\x48\x0e\x17\x31\x2b\x08\x81\x53\xfb\x96\x55\x78\x9d\xda\x8b\x2a\x5c\xc4\x2c\x5d\xdf\xb7\x5b\xdb\xdf\xf3\xf5\x51\x2d\xed\xc3\xb7\xac\xbe\x9e\xc4\xac\x2c\x20\x1d\xe8\xd6\x81\x90\xfe\xd6\x81\x92\x54\x2b\x6c\x7f\x4b\x13\x64\x1b\x37\x44\x25\xdb\x88\x54\x4b\xe7\xf1\xe7\x4c\xa4\x10\x20\x48\x9f\x5e\x08\x10\x22\x66\x75\x03\x42\x88\x82\x53\x5b\x03\xc2\xa9\x45\xcc\xb2\x1c\xf5\x82\x53\x7b\x99\xe9\x75\x96\xd1\xd3\xcb\x3c\x04\x1d\x70\xf1\xc4\x79\x0a\xba\x92\x2b\x4b\x04\x2f\x33\x04\x05\x5c\x08\x31\x51\x4e\x31\xb8\x8c\x27\x9a\xb8\x4c\x5c\x3d\x21\x5d\x5a\xc9\x0a\xa4\x5a\x86\x4a\x2f\x4b\x42\x2c\x6c\x22\xdb\x30\x2f\x0b\x4d\x94\x6c\x35\xab\x39\x5c\xb4\x9a\x22\xe6\x06\xd7\xa1\x63\x67\x53\x55\x57\xe7\x89\x87\xa4\x3f\x24\xbd\x16\x4a\xfa\x53\x5c\x40\xa7\xb8\x4e\x71\x71\xa0\x53\x5c\x57\x5e\xc7\x9a\x1c\xfb\x92\x10\x49\xcc\x2a\xca\xb9\xb4\x30\xd2\x37\xc9\x95\x5e\xa2\x08\xc2\x37\xb3\x03\xf2\x82\x77\x78\xc9\xda\xa4\xae\xc5\xb1\x69\xe9\x44\xec\x79\x1d\x21\xe5\xdc\xc8\xa5\x33\xde\xda\x1e\x03\xb0\x86\x56\x65\x00\x90\x4a\x46\xf5\x2a\x03\xa8\x18\x80\x63\xf7\x55\x06\x50\x65\x00\x99\x2b\xbd\xca\x00\x20\xd5\xb1\xc2\xda\x97\x20\x0c\x00\x7f\xac\xf2\xc7\x9a\xe1\xb1\x7a\xd5\xf6\xa7\x20\x89\x6a\x40\x88\x5a\x87\xb8\x58\x38\xc4\x45\xcf\x65\xd9\xbf\x79\xa5\xe7\xf2\x8a\x8b\x3a\xd7\x51\x75\xdb\x75\xa5\x3f\xba\x21\x97\x0b\x72\xfc\x51\x5c\x54\x33\x5e\x33\x3c\x56\x77\x0e\x44\xc2\x16\x31\xa6\x67\x5e\x5d\x67\x74\x84\x40\x5f\xd5\x25\x84\x23\x44\x36\x7e\x5e\x5d\x42\xa4\x4d\xb4\x2d\x03\xaa\x57\xd9\x44\x95\x4d\x74\x41\x5a\x98\x39\xa9\x6d\xd2\xd7\xa9\xed\xc9\x49\xd6\x05\x49\x85\x49\xda\x46\x64\xaa\xa7\x54\x78\xa2\xc2\x27\x24\x15\xa6\x01\xb5\xad\xa3\xaf\x53\x42\x50\xce\xda\x13\x92\x0a\x6f\xb8\xb2\x29\x72\xcd\xd8\x44\xda\x46\x80\x69\xf4\x5c\x22\x26\x7f\x6c\xf4\x5c\xde\xf2\xb6\x5b\xc9\x3c\xe2\x4d\xb7\xdd\x74\xdb\x5d\x0b\x4d\xd0\x09\xd7\x04\xba\x04\x21\x44\xf6\x6f\xde\x74\x8f\x2d\xb3\x60\x2b\xc4\xc2\x46\x16\x14\x31\x1b\x6c\x3f\xb4\x7d\x5e\x67\x2b\x55\xd0\x73\x21\x8e\x2c\xe9\xe9\x54\xbc\xcd\x99\x5c\x58\x74\x9b\x12\x62\x12\xf8\x06\xdb\xcf\x25\xc8\xe1\x42\xd4\xb9\x0b\xc2\xad\xb2\x67\xf3\xa6\x98\xd3\x32\x82\xb4\xc2\x3d\x36\x93\x72\x4c\xb5\x05\x07\x32\x29\x87\x6a\x99\x59\xa9\x37\x93\x72\xd2\xe4\x5a\x91\x26\x64\x72\x2d\x9b\x9f\x56\x70\xe4\xb6\xba\x20\x82\x7b\xf6\x6c\xde\x96\x8e\xed\x06\x17\x90\x4b\x54\xe7\x6a\x07\xba\xa7\x46\x74\x66\x9a\xad\x2c\xb8\x4e\x6d\x4f\x3f\x63\x93\x63\x9f\x92\x2b\x6b\xc4\x56\x89\x26\xed\x92\x5c\x17\xf9\x71\xa2\x42\xb2\xb3\xb7\x6b\x25\x17\x96\xd3\x2e\x6d\x7f\x11\xf8\x26\xfa\x52\xcc\x69\x99\x9a\x5a\x1d\xf5\x57\x53\xb1\x37\x65\xae\x46\xed\x49\x07\xe4\x2d\x74\x81\x91\x87\xab\x13\x0d\x87\x0e\x17\x1c\x6e\x72\xb8\xd0\xd3\x6f\x1e\x25\x15\xdc\xda\x8b\x41\xf0\x22\x4d\xb5\x5b\x8a\xc2\x6e\x6b\xd6\xea\xae\x79\xae\xf7\xce\xf6\x68\xa5\x2b\xb2\x74\x45\x96\x29\x2e\x17\xe4\x5c\xa0\xb8\x38\x5c\x1f\x2c\x74\x20\xe5\xa4\xae\x9c\x44\xd2\xe8\xca\x49\xdd\xd2\xe0\x5b\x49\x21\xba\x4d\x41\x18\x3c\xf5\x40\x37\x13\x94\x37\xdf\x30\x19\x4d\x90\xbd\xaf\xb4\xc8\x86\xc1\xf7\x25\xae\x85\x45\x9a\xb8\xf4\xc4\x24\x8d\x4a\xd0\xbb\x12\x50\x57\x02\x22\xef\x76\x25\xa0\x9e\x35\x5e\x6b\x53\x7b\x5d\x82\xf0\x27\x62\x59\xa7\xf9\x70\x46\xcf\xad\xa1\x68\x8d\x9e\x45\xcc\x48\x53\x1a\x3d\x3b\x23\xde\xd6\x96\xa0\x53\x10\x81\x0b\xeb\xd6\x88\x57\xa4\x35\x17\xd7\x73\x7b\xbc\x4e\x2a\x64\xc4\xeb\x0c\x36\x5b\x93\x0a\x0f\x71\x31\xd8\x74\xe3\x40\x87\xb8\xb0\xc8\x8e\x9f\x77\x59\x64\x97\x45\x8a\x4b\x16\xd9\xb3\x1f\x69\x9d\x6c\xd3\xef\x27\x44\x09\xb9\x38\xb6\x6c\xa2\x63\x00\x1d\xfb\x1a\x32\x00\x48\xeb\x9c\x71\x28\x70\x8d\xce\xf6\xab\x00\x35\x41\x17\x5c\x0b\x28\x04\x71\xa0\xec\xcc\x7c\xf0\x1e\xc3\xc7\x60\xaf\xec\x47\x7c\x0c\xed\x35\xf0\x73\xd2\xe7\x60\xa6\xe8\x63\x34\xb8\x58\xc8\x00\x51\xc4\x0c\xad\x0e\xc5\xb2\x91\x51\xaa\x75\x32\xc4\x18\xcf\xed\xa9\xd8\x28\x37\xc6\x94\xf4\x59\xd4\x34\x66\xfc\x3e\xe6\x25\x88\xab\x5d\x82\x24\x2a\xf6\x35\x08\x82\x43\xf6\x35\xd2\xf5\x1b\x23\x71\x1f\x72\x7d\x88\x59\xf6\x5c\x3e\x4e\x89\x9a\xe5\x46\x9b\x1b\xd2\xab\xdc\x18\x2a\x37\x74\x46\x95\x1b\x23\x5b\xcd\x36\x0b\x5c\x97\xf6\xa2\xd5\x74\x3c\x6d\xe8\xd2\xc6\x95\x0e\x33\xc9\xce\xe3\x5a\x82\x70\x18\x72\xe5\x50\x18\x19\x59\x82\x36\x06\x44\x3e\x54\x82\x0e\x95\xa0\x54\xcb\x43\x25\xe8\xe0\x1e\x99\x19\xf9\xd4\x3d\x4e\x1c\x99\x79\x8a\x4f\x39\xf2\x94\x23\x67\xc3\xe0\x53\x8e\x3c\x09\xe1\x13\x1f\x9a\x0a\xe1\x53\x21\x1c\x5b\x9d\x0a\xe1\x13\x7d\xd1\x7c\xf8\x94\xbe\x66\x26\xff\xa6\x5a\x6c\x2a\xf9\x4f\x25\x7f\x17\x54\x04\xa5\x10\xca\xce\x53\x91\x18\x62\x8e\x15\x4e\x45\xe2\x89\x56\x95\xa6\xa6\xb4\x3a\x9f\x5a\x35\x20\xb4\x3a\xaf\xd4\xc4\xda\x10\xf5\x32\x41\xd2\x04\xc7\x96\x0a\x67\x36\x45\x6d\xa1\xfb\x49\x53\x24\x62\x46\x2a\x9e\x34\x45\x3e\xaf\x94\x7e\xa1\xfb\x19\x92\x3e\x89\xad\x4d\x90\xa4\x4f\x45\xb7\x45\x1d\x3c\xa5\x68\x88\x2d\x12\xf6\x54\xad\x0f\x69\x8b\x7a\x60\xaa\xd6\x87\xd8\x53\x54\x55\x7f\x93\x1b\x5a\x24\x33\xd3\x0d\x19\xde\xb1\x38\xb6\xc9\x3b\x20\xb6\xb0\x2f\x93\x77\x58\x9a\x6c\x5b\x44\x5f\x53\x31\x0e\xb1\xb5\xe5\x0d\x99\x32\xaa\x65\xca\x6c\x8b\x33\x9a\x35\x41\x0d\xae\x09\xd4\x05\xe5\x5e\x4e\xfd\x64\xba\x47\x23\x62\x3a\xfa\x32\x45\x4c\x88\x2d\x7c\xc8\x14\x31\x0d\x4d\x38\xb5\xbe\x49\x13\x76\x8b\x8b\x27\xde\x4f\xae\x9d\xab\xe5\x40\x3a\xb6\xe5\xb1\xfb\x46\xbd\xb9\x74\x6c\x88\x2d\x2a\xdc\xa5\x00\xb3\x32\x5c\xf4\x8d\xb2\x71\x0d\x71\x0d\x71\x55\x20\x71\x65\x86\xe9\x1b\x25\xc2\x52\x86\x81\xd8\x22\x16\x2e\x65\x98\x95\x9a\xe8\x1b\x61\x5b\xaf\x82\x7c\x49\x08\x5c\x54\x2f\x40\x44\x7a\x59\xbf\xde\x15\xbb\x4b\x46\x88\x31\xc4\x72\x57\xf5\xc6\xdb\x8a\x5e\x88\x3f\x7a\x5b\x21\x62\x32\x3f\xbd\xad\x70\x4f\x1f\xea\x15\x19\x5d\x3d\x17\xc4\x56\x31\x20\x71\xe5\xd5\x74\xde\xb5\xb8\xde\x56\xb8\x67\x53\xd4\x2b\x86\xe5\x6a\x8a\x20\xe6\xc4\x58\xe7\xfd\x9b\x33\xef\xef\x0d\x5b\xd3\xbc\xdf\xf7\x8c\xc4\xbd\x99\xa0\x5b\x10\x26\x43\xc3\xb0\x4b\xc3\x7b\xea\xae\xb7\x25\xc8\x05\x71\xa7\xb4\xad\xfb\xe0\x4e\xf7\xac\x04\x7b\xc3\xc5\x76\x55\x82\x10\x73\x42\xf8\xae\x4a\x70\xb7\x14\xa2\x73\x5b\xbb\x5d\x82\xd2\xeb\x16\x31\x76\x57\xc7\x08\xe9\x9d\xc2\x5c\x6f\x18\x9c\x37\x0c\xbd\xd3\xb5\xe8\x0d\x83\x88\x2d\x7a\x54\xbd\x61\x10\x31\x5f\xe2\xd2\xf6\x19\x9c\x7b\xa7\x98\xde\x15\x9c\x21\x26\x77\xdd\xcf\x26\xa8\xb1\x70\x02\xe1\x03\x7b\x16\x48\x9d\x77\xc5\xbe\x87\xce\x18\xb2\x5b\x03\x92\x10\x68\x95\xf7\x95\xae\xb1\xbf\x1f\xdc\xf6\xa0\x6a\x38\x74\xdb\x87\x6e\x1b\xb7\x38\x74\xdb\x0c\xf4\xfb\x20\x69\x68\xa0\xef\x4c\xef\xfb\x44\x2e\x4d\xef\x45\x6c\xd1\x73\x1d\xaa\x63\x8f\x0c\x95\x5d\x81\xfe\x50\xa8\x3c\x9e\xa1\x72\x01\xb9\xa0\xf4\x14\x5e\xf8\xb8\x06\xfa\x22\xb6\x88\xc4\x1a\xe8\x3b\xc3\xee\xce\xdb\x0e\xd7\xb0\xdb\x99\x6c\x9b\x23\x97\x26\xdb\xce\x34\xba\xab\x1f\xd1\x34\xda\xcf\x5c\xdf\xe5\x9b\xa7\x6a\x1e\x88\x2d\x1a\xe5\x53\x35\x0f\x83\xe0\xae\xa6\x5b\x83\x60\xbf\xb2\x6b\xe9\xde\x04\x99\x20\xcc\x84\x64\x76\x29\x01\x31\x08\xee\x4e\x1b\xa6\x41\xb0\x88\x2d\xec\xfe\xd2\x9c\xe7\x4a\x03\x18\x1b\x91\xf8\x92\x01\x40\x6c\x35\x41\x28\xfa\x4a\x57\x18\x1b\x26\x77\xc9\x15\x20\xb6\x18\xfd\x5c\x87\x9e\x98\x81\x6b\x30\x1b\xf6\xeb\x7e\x42\x68\x95\xf4\x79\x29\x84\x33\xa9\x1d\x85\x74\xa0\x49\xad\xc7\x6c\x40\x29\x6a\xcc\x2e\x88\x02\x9a\x92\x2a\x26\x45\x09\x13\xd1\x51\x68\x05\x34\x11\xf5\x48\x8b\x1e\x6a\x2b\x42\x16\x1d\xb2\x68\x8c\x3c\x74\xa0\xd0\x13\x89\xd7\x9a\x75\x3a\xf3\xc9\xa1\xd2\x58\xf3\x49\x91\xd1\xa8\xc5\x6e\x29\x07\x62\x4e\xb1\x74\xf3\x76\xc8\xef\x6c\x48\x07\x6f\x0f\xfd\x56\x43\x0a\xb1\xd5\x04\x11\x01\x18\x20\x8e\x4e\x67\xa6\x01\xa2\x88\xb9\x0b\xe2\x40\xf7\x0d\x17\x46\x7e\xab\x46\xbc\xf5\x01\x09\xf5\xc0\x7d\x3f\xb9\x52\xfa\x9e\x2a\xc4\x06\x33\x9b\xf2\xbf\x96\x56\x18\x9a\x10\x06\x53\xbd\x31\xf2\x1e\x43\x53\xbd\xd8\xbc\x26\x94\x45\x49\x6c\xbc\x2a\x14\xb1\x95\x85\x57\x6c\x8c\x52\x63\x4b\x33\x1b\x63\xc1\xb5\x3f\x21\xe9\xde\x81\x06\x50\x66\xfa\x31\xb5\x3d\x99\x5e\xc4\x98\x19\xc5\x46\xa6\x0f\x66\x6c\x83\x57\x7a\xa1\x19\x5b\x94\x2c\x7d\x06\x13\xf7\x28\x34\x2f\x22\xb6\x7a\x01\x3a\x80\x90\x9e\x09\x61\x68\xbc\x15\x8c\x7e\x06\x75\x4a\x68\xf4\x23\x62\x2b\x1b\xbf\xd0\xe8\x27\x18\xea\x8c\x95\x36\x11\x1a\xea\x44\xcd\x28\x39\x56\x76\x04\x51\xb3\xe2\x7a\x12\xc3\x87\xa2\x52\x78\x45\xcd\xcc\x35\x18\xea\x44\x25\x87\x8b\x18\xb5\x45\x54\x72\x78\xd4\x6c\x91\x86\x57\x71\x2d\x41\xb2\x68\xf6\x32\x6d\x8f\xf4\x9e\xb6\x1a\x1a\xd7\x44\xc5\x61\x1c\x15\x56\x1c\x46\xc4\x56\x67\xaf\x43\x7b\x65\x0f\x32\xb8\xed\xa8\xf4\x20\x22\xe6\x8e\x10\xf4\x20\x51\xb3\x40\x9a\x5b\x26\x9d\xa8\xcc\xc5\x44\x8c\x02\x27\x6a\x48\xfa\x8c\xa5\x73\xe3\x6a\x2b\xaf\xf4\x44\x6c\x65\x1b\x17\x55\x2a\x64\x78\x32\xb7\xbe\x7e\x35\x15\x87\x66\x2b\xd1\xb2\x10\x98\xa4\xf8\x68\x14\x02\x22\x46\x2d\x15\x8d\x64\x26\x32\xb7\x8c\x78\xd1\x48\x66\x22\xb6\x46\x05\xe2\x9a\x5b\x3a\xf5\xdc\x9c\x85\x38\xb5\x88\xad\xd1\x80\x26\x50\xaa\x73\x16\xce\xab\x51\x44\xb4\x73\x26\x94\xf1\x3a\x1a\x23\x25\x11\xf3\xcc\x95\xd1\x4e\xc9\xc5\xe1\xf0\xf3\x50\x87\x1d\x34\xb7\xb3\x22\x84\x9a\xdb\xe8\x99\x0e\x26\x6f\x3e\xa2\x93\x0e\x44\x6c\x0d\x41\x43\xd0\x4a\xae\x8c\x52\xa1\xe6\x56\xc4\x56\x06\xfa\x50\x73\x1b\x7c\x6a\x35\x5b\x65\x21\x6f\x2b\x44\x6c\xe1\x03\x5d\x5e\xc7\x27\x3a\xb3\x65\x2a\x0e\x7d\xa2\x23\x62\x6b\x20\xea\xa1\xbd\xb2\x30\x9f\x2d\x7b\xe7\xe8\x14\xe6\x22\xe6\x3a\x10\x85\x79\xd0\x44\xce\x86\x0a\xd5\x44\x06\x0d\xd6\xec\x38\xa2\x1a\xac\x18\x7e\xbd\x3e\x26\x79\x37\x06\xef\x2b\x45\x16\x81\x3e\x06\xa5\x5a\x8c\x14\x62\xf2\xe9\x50\x0c\x09\x31\x8e\x03\x2e\xb6\x67\xc2\x17\x23\xad\x68\x2a\x8c\x0c\x59\xd1\x90\x23\x62\x13\x43\x8e\x48\x53\x34\x67\x16\x5e\xa1\xa6\x28\x66\x96\x3e\x73\xe2\x3c\x93\xaa\x52\xc4\xd6\x1c\x40\xe8\x8b\x76\x67\xf2\x1d\x47\xa8\xdd\x89\x99\x57\x30\x79\x67\x16\x73\x4d\x41\x93\x85\xe2\xc2\x00\x66\x4c\xb8\xd8\x3e\x9e\x10\x2e\x36\x05\x61\x13\xb4\x02\x93\x06\x2b\xd4\x0a\x84\x65\x41\x38\xf9\x94\x2f\x8c\x82\x50\xc4\x96\x6d\x40\x1c\x88\xf2\x7d\x32\xc6\x0e\x95\xef\x61\x7b\x3e\x71\x65\x5f\x19\xc6\x87\x29\x22\xb6\xb8\x34\xe3\x6d\x7e\x58\x6a\x72\x7a\x81\x8b\xb9\xa9\x88\x2d\xeb\x40\x68\x95\x5a\x7d\x2a\x40\xa8\x56\x8f\xc5\x8c\x7f\xcb\x7e\x24\x96\x9e\xb8\x48\x2d\xdb\x4c\x63\x5a\xa4\x16\x11\x93\x10\xeb\x12\x17\xe5\x46\x21\x70\xa9\xe4\x0e\xcf\xc0\x65\xbc\x3d\x0c\x57\xe0\x82\x2c\xe6\xb9\xe1\x0a\x5c\xd4\xc1\x56\x09\x23\xaa\x83\xc3\xf9\xb0\xae\xe2\x0a\xce\x87\x75\x22\xb6\x16\x7b\x31\x75\x09\xc7\x7c\x2b\x86\xe9\xb2\x1c\x88\x2d\xf2\x88\xeb\xd8\x8e\xf9\xb6\xac\xcf\xc3\x65\xbe\x10\x63\xa0\x1f\xce\x88\x37\xa8\xa9\xad\xb5\xdc\x5e\x35\x75\xec\xf4\x5c\x2d\xdb\xd6\xd8\x4d\x10\x53\xcc\x95\x55\x69\xec\x4c\x31\x45\x96\xf4\xb5\x33\xc5\x0c\x8a\x5e\xe3\xbd\x60\xa8\xe8\x8d\x9d\xc9\x76\xcf\xae\x38\x76\x26\xdb\x22\xb6\xb2\x50\x8d\x5d\xde\xb1\xeb\x3b\x47\xee\x71\xa7\xf0\x8a\x3d\xb3\xe0\xaa\x88\xaa\x22\x2e\xce\x6c\x45\xd6\x96\xbd\x60\x9c\x4c\x90\x45\xd6\xb6\x2d\x20\x13\xc4\x67\xa7\x53\xd0\x12\xc4\x37\xa6\x18\xd3\xc9\x30\x40\xe4\xc1\x60\x33\x4e\xe6\xcc\xc1\xe7\x0d\x6b\xcb\x2e\x2f\x4e\x45\xcc\x73\xf0\x9e\x1e\x7f\x3c\x99\x20\x8b\xac\x8d\xc8\x74\x32\x9b\x11\xb1\x99\x4d\x64\x9c\x53\xa2\x4e\x44\xad\x2c\x9c\x4d\x10\xaf\x69\xd1\xd7\xa9\x50\x7b\xa6\xa2\xd7\x56\x81\xa4\x68\x88\x3e\x9a\x0d\x7d\x5c\x21\xb2\x98\xf1\x87\x3e\xae\x10\x79\x30\x0e\x8c\x53\xe9\xf3\xcc\x94\xb9\xf8\x5e\x35\x4e\xd3\xf6\x86\x72\x1a\x72\xc9\x0a\x21\x36\xa8\x07\x4e\x59\x21\xc4\xc6\xd2\xc2\x5d\xd0\xce\x42\x71\x49\x13\xc6\xe7\x8a\x5c\xda\x69\xa7\x20\x34\x81\x0f\xa9\xa6\x16\xb1\xe1\x28\x67\x49\xfa\x85\xf4\x1d\x51\x97\xa4\xe7\x13\x1f\x5e\x81\xc6\xb9\x24\x3d\x4d\xc2\x20\xad\x9f\xca\x0a\x90\xb5\x61\x39\xa7\xb2\x02\xc4\x06\x31\xe7\x54\x64\x82\x18\x1f\x28\xc5\xa9\xc8\x74\x2e\x3c\xad\xa3\x2f\xe5\x0e\x88\xf1\x3a\x35\x4e\xe5\x0e\x3e\x46\x59\x5b\x9f\x7f\x9d\x8a\xdb\xf8\x3f\x99\xf8\x54\xa5\x76\x66\x57\xb2\x36\x52\xe5\xe9\xcf\x3d\x78\x3f\x5f\x38\xae\x4b\x4f\x4e\x04\x27\xb3\xe8\x53\x15\x91\xc5\xd7\x18\x71\x2a\x6e\x9d\x07\x0f\x97\xf5\x1d\x52\xca\x39\x12\xd2\xc5\x2b\xc7\x9e\xbc\xb7\x1b\x04\x83\xf3\xd2\xf6\x17\xdb\x13\x9b\xcf\x4b\xd7\xc0\xdc\x7c\x18\x5c\xa1\xe3\xa6\x4f\x2f\xbe\x4a\x0e\x35\x2d\x71\x65\x85\xb0\x4a\x01\xa2\xc6\x17\xd1\xd7\xd2\x71\xd1\xdb\xc6\x35\xe1\x6a\x82\x76\x41\x9c\x11\x7b\xbf\x18\x91\xc5\x95\xe1\x7a\x95\x2e\x28\x04\xf1\x39\x0e\x51\xf7\x62\x72\x13\x57\xda\xe5\xe2\x43\xd2\xb8\x54\xcf\x41\x6c\x52\xf5\x5d\x36\x04\x2d\xb8\x04\x9d\x82\x52\x5f\x7c\x5b\x1a\xea\x9c\xe2\xca\x3b\x5b\x05\x4d\x5c\x4b\xdb\xa3\x55\x3e\x1c\x09\x75\x15\x71\x33\xb6\x58\xd9\x8e\xc4\xcd\xd8\x42\x64\x55\x82\xc1\xcd\x38\x57\x64\x55\xb2\xc1\xdd\xbb\x20\x45\x24\x07\x0a\x41\x41\xf8\xa9\x40\xb7\xa0\x9b\x85\x29\xc4\x3d\xf4\xc4\x24\xab\x12\x29\x6f\xe5\x58\xc8\xaa\x86\x10\xca\xb1\xf7\xa4\xb2\xc5\xfa\x6e\xe9\xfe\xc6\xe9\x54\xff\xde\x72\xba\x3b\x3d\x6c\xf1\xb2\x23\xf4\x35\x46\xdc\x4e\x30\x68\x9c\xd1\xb5\x7d\x1a\xe3\x2a\xeb\xaf\xdf\xab\xe4\x7f\xff\xb8\x7f\x7c\xf9\xe5\x0f\x22\xce\x9f\x3e\x7d\x8a\xb7\x2f\xfc\xf9\x05\x7f\xf4\xf0\xb8\xe2\x7e\xff\x16\xbf\xfc\x29\xc7\xc7\x0f\x1f\x73\x15\xff\xff\xaf\x00\x00\x00\xff\xff\x9a\x9d\xb4\xf4\xf6\x31\x00\x00"); +func _gea ()([]byte ,error ){return _gb (_cbg ,"Adobe-GB1-1")};var _gbff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x73\x5c\x0e\x10\xff\x21\x75\x23\xad\x56\x62\x5b\x69\xc9\x61\x59\x44\xd9\x05\x09\x71\x48\xed\x49\x65\x89\x3a\x91\xe3\x1c\xfa\xed\xd1\xcc\x84\x70\xa8\x5e\xfd\xd3\xbc\xf1\x9b\x78\xea\x43\x77\xec\x52\x2c\x50\x7f\xcd\xa3\x3f\x61\x81\x21\xa6\x90\x71\x1e\x97\xec\x11\xce\x78\x89\xa9\xaa\xb4\x81\x10\x7d\xf9\x77\x64\xf1\xd7\x7e\xaa\xaa\xfa\xe9\xf1\xfd\x67\x58\x66\x5c\x8f\x87\xee\x78\xba\xcd\x05\xaf\x5d\x1a\x46\xb0\x62\x0b\xcb\xb4\x5a\x01\xea\x6f\x78\x89\x73\xc9\x37\xb8\xfb\x14\xc6\x33\xbe\x83\x80\x03\xf1\x97\x1c\x30\xc7\x74\x81\xbb\xa7\x47\xbd\xd1\xd3\x32\x4d\x7f\xf0\x8a\xa9\x80\x62\x86\x29\xb0\x56\xf5\xe1\xb9\x9f\xbe\xf4\x57\x04\xca\xf0\xc6\x90\xd9\x1b\xe6\x39\x8e\x09\xda\x0f\x4a\xed\xfe\xe3\xef\xb7\x09\x41\xaf\xde\xd7\xee\xf8\x32\x0c\x33\x16\xb0\x46\xfa\xd6\x3f\x5f\xbb\x23\xfc\xd2\xa0\x15\x98\xc6\xee\xec\xef\xb5\xf4\xc7\xf3\x18\x36\xa3\x51\x32\x88\x8f\x21\xf7\xe9\x82\xd5\xbd\xd1\xc6\x3c\xc0\x2a\xd0\xb8\x86\x91\x15\x64\x19\x7d\x64\xd4\x0b\xea\x09\xb5\x7b\x46\x67\x41\xfe\x01\x9c\x53\x52\x15\x04\x05\xae\x6a\x09\x59\x69\x6f\x07\x42\x7b\x43\xc8\x21\x23\x12\xe7\xd4\xae\xba\x37\xd6\x68\x42\x2c\xd0\xb8\x3d\xa3\xbd\xa0\x96\x8d\x8a\x91\x17\xe4\xb9\xca\x32\x42\x41\xd2\xcb\x11\xb2\x1c\xd5\xda\x33\x57\x71\x7b\x1b\x04\x05\xae\xe2\xf6\x14\x68\x15\x68\x1c\x45\xb5\x0d\x0f\xc4\xe2\x9c\x12\x24\xc6\x86\x8d\x9a\x43\x34\x62\x24\x81\x9d\x62\xe4\xc4\xe8\xf8\xc6\x96\x6f\x74\x62\x74\xf2\x25\x38\x97\x8c\x6d\x65\x6c\xad\x69\x15\xb6\x77\xa0\xff\xb4\x81\xdb\x52\xf8\x25\x67\x4c\x85\xf7\x8f\xdf\x9f\x1e\x30\x26\xdc\x56\x7b\x1a\x27\x72\xf1\xef\x6f\x00\x00\x00\xff\xff\x2b\x36\x10\x5d\x06\x03\x00\x00"); +var _gdb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\xdb\xab\x65\x37\x72\xc6\xdf\xcf\x5f\xb1\x1f\x27\x0f\x89\x97\xa4\xba\x48\x70\x38\x10\x66\x06\xe2\xc0\x24\x21\xce\x0d\x42\x1e\xd6\xda\x6b\x6d\xd3\x10\x9f\x3e\xb4\xdb\x0f\xfe\xef\x43\xfd\xbe\x6d\x87\x19\x02\xce\x83\xf9\xdc\x5f\x4b\x5a\xa5\xaa\x52\x5d\xa4\xdd\xdf\xfc\xfe\xdb\x3f\x7c\xfb\xfe\xe9\xeb\xed\x9b\x7f\xfa\xf2\xf9\xfe\xdd\xf5\xf5\xf6\xf8\xf4\x7e\x7e\xb9\x7e\xfc\xfc\xd3\x97\xfb\x75\x3b\xae\xef\x3f\xbd\xbf\xbc\xb4\x7e\x3b\x3f\xdd\xbf\xfe\xf2\x47\xe0\xfe\xc3\xfe\xf1\xf2\x52\xf3\xbf\xfb\xf9\xc7\xaf\xd7\x0f\xdf\xbe\x3f\x3e\xdf\x86\xc6\x9d\x3f\x7d\x3c\xc7\xde\x6e\xdf\xfc\xf3\xf5\xfd\xa7\x1f\xbf\x7e\xf9\xf9\xf6\xbb\xbf\x3d\x3f\x1f\xd7\x5f\xdd\xce\xeb\x51\xfc\x3f\x7e\x39\xaf\x2f\x9f\xde\xbf\xbf\xfd\xee\xef\xf7\x8f\xfd\xbd\xfd\xfa\x17\xdf\xfd\xf4\xf1\xf1\xdf\xd7\x0f\xd7\xfb\xd7\xdb\x06\x77\xbd\x9f\xe0\xcb\x37\xbf\xff\xd3\xfe\xf1\x0f\xfb\x0f\xd7\xed\x9b\x9c\x7f\xfd\x77\x90\x70\xff\x76\x7d\xf9\xf1\xd3\xe7\xf7\x5b\xdb\xfe\x66\xdb\xe2\x7f\xf9\x7f\xf9\xf9\xe3\xba\xb5\xe7\xe4\xff\xf8\xd7\x6f\xff\x70\xfb\xcf\x76\x6b\xdb\xad\xfb\x30\xff\xaf\x27\xff\xef\x7f\xfa\x7c\x5e\xcf\x4f\xbd\x34\x09\x7e\xff\x7c\x5e\x3f\x7e\xec\xf7\xeb\xcb\xfe\xfe\xfd\xf5\x72\xbb\xbd\xf6\xd6\xdb\xdb\xed\x35\xff\x98\x7f\x7c\x2b\x89\xfe\x62\xc4\x4b\xdb\xb6\xe7\xd4\x4f\xa7\xa8\x5f\xa6\xf4\x96\xd7\xdb\x2d\xc6\x78\x79\xed\x5d\x4c\xef\xd7\xdb\x2d\x7b\xbe\xbc\xf6\x31\xb6\x62\xc6\x58\x6f\xb7\x9c\x5b\x31\xc6\x98\xe1\xfb\xdb\x2d\x17\x4c\x88\xc9\xfd\xed\x36\x5b\xbc\xbc\x76\xd3\x3a\x96\xe3\xed\x36\xad\xbf\xbc\x76\x17\xe3\x19\x6f\xb7\xd5\xfd\xe5\xb5\x87\x98\x18\xf3\xed\xd6\xb6\xd6\x8a\xd2\xd2\xe1\x50\xa3\x46\xa5\x46\x65\xfd\x4d\xdb\x7c\x15\xe5\xa2\x12\x6a\xf5\x97\xd7\xb1\x31\x4a\xd0\x5a\x2d\x3f\xb6\xde\x45\xf5\xb7\x5b\xb2\xbb\xb1\xf5\x21\x6a\x32\x2a\xa1\x96\xa8\xf5\x76\x9b\x3d\x02\x6a\x87\x1a\xac\x35\xac\xa8\xa1\xb5\x0a\x72\x45\x83\xd2\x5a\x05\x39\xc6\x06\x65\xa2\xf6\x9a\x68\x9a\x78\x88\x3a\x10\x42\xd4\x1d\x2a\xce\x1a\xe5\x48\x1f\x97\xa8\x8b\x51\x48\x1f\x0f\xa8\xec\x6f\xb7\xd6\x37\xa4\x4f\x7d\xb1\x20\x63\x20\x6a\xea\x8b\x79\x30\x6a\x42\x69\xf9\x82\x8c\xc1\x1e\xf3\x14\x75\xd5\xa8\x56\x94\x2c\x3f\x5a\x6d\xbb\xf5\xb6\xa0\x76\x51\x3b\x13\x27\x14\xd2\xb7\xda\x57\xeb\x9d\x51\xc3\x45\x39\xa3\x44\x85\xa8\xd2\x6a\xb7\x0d\x6a\x89\x2a\xa7\x89\x27\xa5\xe5\x6b\xf7\xad\xa3\x9c\x36\x4e\x51\x27\xa3\x3a\x14\x9a\x68\x58\xbb\x1b\x42\x58\x17\x85\x1d\x6d\x40\xa1\x89\x16\xa5\xe8\xee\x50\x21\x51\x03\x45\x6b\xf9\x40\x13\x4d\xdb\x5e\x45\xc9\xbd\x47\xef\xf9\x76\x6b\xa3\x0d\xa8\x29\x6a\x32\xd1\xa1\x96\xa8\x92\x7e\xc4\x82\xda\x45\xa1\x1c\x0b\x28\xbe\xd8\xfd\x51\x6b\x75\xd6\x8a\x0d\xaa\x20\xc3\x12\x4a\x5f\xcc\x52\xf4\x48\xa8\xd4\x5a\xa9\xb5\x26\x94\xd6\x2a\xa3\x35\xc3\xda\x5d\x46\x03\x32\x0c\x21\xf2\x12\x75\x31\xaa\x84\x18\xda\x10\xd0\x6c\x4b\xa8\x2e\x0a\x7d\xf9\x06\x85\xbe\x38\xb8\xcd\xb6\x5a\x6b\x48\xab\x40\xd8\x62\xa2\x3d\x47\x95\x1d\xcd\x1a\xd4\x12\xb5\xde\x6e\xbe\xb1\xc7\x61\x48\x3f\xc2\x18\x55\xd2\x8f\x70\x51\xf8\x84\x33\x31\x42\x54\x59\xc8\x12\x51\x65\xa1\x21\x0b\xe1\xf7\x43\x16\x1a\x38\xb9\x4d\x28\x39\xf9\x90\x93\x63\xda\x21\x27\x1f\xe9\x35\x6a\xb1\xa1\xd4\xf2\x05\xbe\x70\xf2\x91\x29\x6a\x31\x4a\x13\x25\xaa\x14\xed\x06\x25\x21\xa4\x42\xb6\xad\x50\x35\x0c\xe5\xf8\x56\xd2\x9b\x94\x63\x72\x39\x77\xa8\x21\x6a\xbc\xdd\x5c\x42\x98\x99\xa8\x32\x9a\x73\x1e\xcd\x4e\x51\x18\xcd\x45\x61\x34\x73\x96\xc7\x73\xcc\xb5\x7c\x41\xc4\x9c\x50\x5a\x1e\xad\x3a\x2a\x34\x69\xd5\x9e\x5a\x45\x54\x69\xd5\x90\xde\xb3\x84\x50\x58\x1d\x5e\x8e\xd9\x7c\x39\xd4\x21\x4a\x8a\x9e\x50\x28\xda\x47\xf9\x6a\xe0\x39\x6e\xf8\x2a\x90\x51\x71\x75\xb8\x69\x2d\x96\x0f\xc2\xa3\x62\xb4\xa0\xc5\x5c\x50\x5d\x14\xca\x89\x0d\x6a\x88\x2a\xdd\xc7\x6a\x50\xbb\x28\x74\x1f\xa2\x90\x2b\xcc\x19\xc5\x5a\x16\xa2\xe2\xed\x96\x96\x06\x95\xa2\x4a\x88\x94\x10\xf6\x10\xf5\x60\xad\x72\x93\x70\xa4\x8f\x72\xa0\x96\xe8\x3e\xe2\x14\x85\xee\x63\x40\xa1\xfb\x28\x67\x6a\x49\x70\x0f\x39\x13\x90\x11\x7c\x31\x5d\x54\xa9\x30\x93\x89\x72\x13\x20\x23\x1c\xea\x2e\x8a\x2f\x4e\xb6\xad\x23\x1a\x3a\xa2\xcf\xe5\x9f\x5f\x44\xfa\xd9\xc9\xc4\xbf\x24\xdc\xff\x2b\x07\x0f\xe5\xb7\x91\x1d\x19\xe7\x80\x32\x51\x92\x31\xa1\x90\x31\x2b\xd4\xb6\x9c\x50\x23\x45\x25\xa3\x26\x14\xb1\x2c\xcb\x31\xdb\xc4\xcc\x69\x9a\x68\x78\x11\xb1\x2c\xa5\xf4\x2c\x27\x6d\xb3\x6f\x50\x97\x28\x12\x50\x8a\x42\xe9\xe4\xda\x36\x89\xfd\x29\xbf\x05\x32\xb2\x41\x0d\x51\x7c\x91\x24\x9b\xae\x2f\x3a\x5f\xcc\x0e\xa5\x2f\x56\xc5\xd0\x26\xd6\x4a\x3f\x44\x95\x86\xdb\xd4\x5a\x68\x38\xa3\x34\x41\xd1\x30\x32\xa4\x89\x40\x13\x98\x26\x75\x2c\x32\xb7\x1a\xc5\x49\xa1\x10\x78\x42\x06\x5e\x94\x29\x51\xb3\x62\xd9\x0c\x51\x4b\x14\x39\x29\x1d\x6a\x17\x85\x26\x24\xaa\x0c\x08\x64\x10\xb8\xa6\x2c\x34\x07\x72\x11\xc2\xa7\x32\x3d\x90\xf1\xa4\x90\x6b\x1a\x72\x11\x59\xa6\xce\x13\x90\x91\x13\x0a\xb9\x26\xfe\xb1\x5a\x29\x7a\x69\xf9\xc5\x09\x5e\x68\x75\xe9\xa4\x2c\x9d\xe0\x5c\x50\x28\x67\xe1\x00\x8b\x50\xb9\xe4\x00\x4b\x0e\x80\x47\x2e\x39\xc0\x22\x96\x2d\x52\xde\xd2\x17\x97\x62\x19\x8a\x5e\x8a\x65\xab\x74\xdf\xb7\xad\x34\xb1\xa4\x7b\xc0\x27\x61\x77\x39\xde\xbd\xea\x88\xf5\x6d\x30\x31\x9e\x14\x0e\x2f\x21\x74\xc4\x56\x1d\xb1\xbe\x91\x0e\x96\x8e\xd8\xd2\x11\xc3\xa3\x97\x8e\xd8\x2a\x73\xf4\x8d\x80\xba\x64\x8e\x25\x73\x4c\x44\x95\x39\x56\x29\xa7\x6f\x44\x96\x5d\xca\xd9\xcb\xe5\xfa\xc6\x41\xdc\xe5\x72\x40\xc6\x14\xc5\x17\xf7\x0a\x8f\xbd\x55\x01\x3a\xf6\x48\x51\x52\x8e\x28\x94\xb3\x23\x6a\xc3\x0b\x77\x89\xba\x3f\x45\x4d\x28\x17\x55\x42\x34\xf2\xee\x21\x21\x8e\xce\xf2\x2e\x2a\x45\x69\xf9\x09\x35\x45\xad\x1a\x45\x34\x38\x14\x04\x0f\x05\xc1\xa9\x89\x87\xa8\x83\x51\xa2\xee\xa2\xa8\xd8\x48\x2d\x47\x47\xd1\x47\x99\xb3\x37\x7c\xe2\x50\x49\x75\xa8\xa4\x5a\xa2\xb4\xbc\x44\x45\x85\x77\x89\x7a\xaf\x20\xda\x55\x19\xdd\x6d\x8a\xa2\xc0\x59\xa2\x96\xa8\x55\xc9\x9f\x4c\x7f\x57\x5a\xbf\xd7\x49\xed\x2a\x96\xee\x9e\xa2\xd8\xe3\x93\xd2\x5a\xe5\x26\x7d\x50\x6f\xde\xe5\x26\x77\xe7\xc0\x90\x80\xee\x4e\xe8\xb8\x23\xd7\x68\x45\x9d\x92\xeb\x2c\x4d\xf4\x41\x65\x74\x4a\x13\xa7\x9c\x7c\x89\x42\x13\x67\x1d\xa5\x3e\xc8\x5c\xa7\x8a\x4b\x20\x63\x89\x42\xae\xb3\x0a\x89\xae\xf2\xec\x54\x21\x71\xca\x31\x97\x28\x1c\xf3\xac\xa0\xd0\xad\x97\xf4\xa7\x82\xc2\x49\x6d\x91\x64\xfa\x53\x0e\x70\x22\xaa\x51\xc5\x5f\x12\xf5\xaa\xe8\xdb\xa5\x9c\x4b\xd1\x17\xc8\xa4\x3c\xbb\x3a\x72\x5d\xd5\x11\x74\x23\xad\x5f\xea\x08\x80\xcc\xcd\xa0\x4c\x14\xcb\xe3\xd1\xd7\x78\x88\x7a\x30\xaa\x94\x73\x29\x15\x5f\xce\x17\x09\x43\x97\x82\x28\x90\x49\x24\xbf\x14\x44\x2f\x67\x2d\xcc\x71\x49\xd1\x40\x26\xd5\xdf\xa5\x12\xf4\xaa\x20\xda\x5d\x42\x28\x88\x02\x99\x18\xed\x52\x10\xbd\xd8\xb6\x53\x10\x3e\xb4\xed\x07\xee\xeb\xf4\x20\x0f\xb9\x2f\x90\xf9\x1c\x85\xd1\x1e\xe5\x07\xdd\xa9\x96\x1f\xbe\x44\x95\x63\x26\x21\xed\xe1\x9a\x58\x72\x75\xa7\x41\x7b\x48\x2e\x20\xb3\x9a\xbd\xf1\x50\x69\xfc\x08\xd6\xc2\x68\x8f\xd0\x5a\xa1\xb5\x34\x51\x6b\x21\x6a\x94\xf4\xa6\x66\x4f\xd0\xa3\x52\x93\xa9\xd9\x13\x64\x56\x61\x6f\x6a\xf6\x6c\x33\x46\x8d\xf6\x9b\xa9\xd8\x36\xd3\x22\xa6\x45\x0c\x4a\x8b\x94\xbe\x3a\x45\x85\x6d\x14\x61\x82\xcc\xf2\x6e\xdb\x08\x36\xb6\x55\x4e\xea\xb8\x9f\x6d\x29\x19\x53\x6b\x05\x94\xd6\x22\x08\xa2\x02\xdb\x08\x82\xb6\x51\xa1\x66\x63\x73\x94\x1e\x46\xb3\xd6\xb3\x3a\x33\x53\xb3\x66\x8d\xf8\x93\x55\x85\x5b\x23\xfe\x08\x32\x2b\x87\x5b\x23\xfe\x08\x82\x62\xc7\x68\xef\x5e\x8d\xce\xac\x67\x85\x70\x53\x67\x26\xc8\xec\xa2\x76\x28\xab\xf3\x94\x15\xc2\xad\x55\x4d\xfb\x84\xcc\xde\xa1\x4e\x51\xc8\x55\x45\x89\x35\x4a\x04\x41\x3e\xe5\xa2\x2e\xb3\x86\x93\x66\x22\x97\x6b\x94\x9c\xb4\x0e\xa2\xb5\xd0\x28\x2c\x9f\x13\x51\x43\x72\xc9\xf2\xd5\xc0\x1b\xed\xdd\xab\x35\x69\x62\xd5\x28\xf5\x6f\xd6\xab\x89\xec\xb3\x3a\x59\xeb\x34\x91\x82\xcc\xce\x28\x9a\x48\xeb\xc6\x28\x83\x92\xf4\x40\x52\x55\x5a\x37\x8d\x22\x0b\xce\xaa\x2a\xad\x93\x05\x05\x99\x7d\x42\x69\x62\xd4\x39\x27\xf9\x5b\x8f\x21\x8a\x73\x8e\xfb\x75\x8e\x98\xf5\x8a\x39\x7d\x56\x24\xb6\x4e\x03\x2f\xc8\xac\xc8\x62\x3d\xd9\x76\xaf\x98\xd3\xa7\x36\x44\xb6\xb1\x9e\x38\x13\x16\xea\x34\x32\x46\x2f\xd8\x57\x05\x1b\x53\x2f\x28\xc8\x1c\xa2\x24\x3d\xca\xa1\x90\x30\xf5\x82\x36\x70\x93\x85\x7f\x0d\xb9\xc9\x90\x9b\x0c\x83\x9a\xa2\x26\xa3\x26\xd4\x12\x85\x17\xd6\xd1\xb7\xc1\x39\xb7\xd1\x11\xa2\x6b\xad\x53\xd4\xc5\xa8\x84\x62\x8f\x63\x68\x14\x13\x65\x8e\x21\x73\x8c\x05\x85\xa8\xa3\x34\xd1\x97\x21\xaa\x34\x01\x64\x3e\x29\x49\x8f\x72\xd6\xe2\x8b\x52\x0e\x90\x69\xa2\x42\xd4\xc1\xa8\x80\xba\x8b\xc2\x68\x55\x36\xda\x90\xbe\xe8\xf2\xc6\x86\x0a\xd5\xe5\x99\x95\xa8\x83\x9a\xc7\x4c\xa2\x9a\x44\x35\x46\x49\x54\xab\xf4\x39\x36\xf4\x65\xa4\x4f\x41\xa6\x89\x5a\xa2\x56\x8d\x32\xd6\x22\x7d\x0a\x32\x9f\xd4\x21\x8a\x2f\x56\xca\x33\xb5\x87\x82\x4c\x1c\x53\xed\xa1\x60\x6c\xd5\xad\x9b\xe9\x58\x99\x8e\x95\x26\xea\x58\xd1\x25\x8e\xad\x7a\x67\x33\x6a\x1e\xc1\xec\xa1\x51\x2e\x6a\x67\x94\x28\x09\x51\x60\x8e\xe7\x98\x9c\xdc\xa4\x9c\x2a\x8d\x4d\x4d\xa4\x60\x6c\xc4\x2f\x57\x40\x75\x05\x54\x82\x82\x2b\xa0\x7a\xf9\xd7\x68\x95\x3e\xcd\xe5\x5f\x2e\xff\x32\x4d\x9c\xa2\x4e\x46\x05\xd4\x25\x0a\xcf\x61\x8f\x2e\xcf\xf1\xca\xf4\xa3\x11\xaf\x9d\x4c\x2f\xc8\x74\x96\x1f\x5a\xbe\xac\x32\x5a\x17\xf5\x9c\x88\x72\xd0\x84\x3a\x59\x73\x8c\xd6\x38\x69\x2e\xa3\xb9\x8c\xe6\x2c\x2f\xa3\x79\x59\x68\x34\x1c\xd3\x65\x21\x20\xd3\xd1\x84\x02\x9f\x97\xbe\x47\xc3\x99\xdc\xa5\x1c\xba\x9e\xac\xda\xd5\xdc\xa5\x09\x47\x13\xda\xb6\x4b\xd4\x02\x9f\xcf\x51\x12\xa2\xe2\xc4\x68\x5a\x5e\x71\xc2\x95\x8a\xb1\x90\x93\x8a\xcd\x03\x7d\x85\x28\xe9\xab\xc0\xfb\xc6\x86\x14\x4d\xbc\xd2\xc9\x68\x84\x21\x57\x3a\x01\xdc\xb4\xed\xd4\xf2\x89\x26\x26\xd2\xa7\x84\x48\x69\x02\x3b\x2a\xe9\xd0\xe6\x8f\x56\x45\xaf\xa9\xcd\xb7\x18\x08\x51\x35\xa2\x85\x8e\x02\x90\x59\x45\xaf\x85\x74\xcf\x25\xed\xe8\xc4\xfb\x50\xca\x0c\xa5\xcc\x2a\x70\x2c\x94\x32\x03\x5f\xed\x84\xda\x90\xaf\x86\xaa\x99\xf8\x7f\xa4\xe2\xa0\xd8\xb1\xc0\x95\x3b\x27\x25\xe4\xca\xa1\xe0\x4c\x2a\x0e\x05\xe7\xa8\x74\x32\xa8\x76\x2d\x42\x3b\x29\xc8\xac\x86\xc1\x22\x24\x63\x29\x7a\x74\x54\x10\xca\xe1\x41\x77\xa0\x5c\x19\x74\x07\x16\x95\x80\x46\xe7\x58\x84\x12\x10\x90\x19\x9a\x28\x21\x92\xb5\xb0\x56\x28\x24\x01\x31\xa5\x3b\x85\x70\x6e\x01\x46\xaf\xfe\xcd\xd4\xe6\x5b\xd6\xe9\x18\x1d\xa5\xa7\xc2\x2e\x90\x19\x1a\xc5\x17\xe9\xe3\x47\x27\xbc\xa5\x12\x76\x2a\x61\x93\x51\x53\x09\x9b\xae\x7a\x8c\xaa\x92\x2c\xe5\x7e\x40\x66\x35\x0c\x96\x72\xbf\x0c\x46\xe1\xca\xa9\x3a\x25\xb5\xed\x14\xf5\x1c\x55\x55\x83\x13\xd5\x53\xa9\x38\x95\x8a\xab\xe9\xb6\x94\x26\xb2\xca\xec\x31\x30\x73\xd2\x0b\x0a\x32\xab\xe9\xb6\x94\xdf\xd2\x3b\x8f\x81\x0a\xd5\x3b\xdb\xac\xd0\x31\x46\x75\x9f\x36\xb9\xdd\x10\x64\x56\x1f\x6e\x93\xfa\xda\x26\x31\x63\x4c\x51\x97\x28\xdc\xaf\xfa\x70\x9b\x8a\x19\xc0\x18\x8b\x51\x3c\x4e\x08\x32\x39\x16\x73\xe8\x8b\xb8\xdf\x58\x50\x72\x3f\x20\xb3\xfa\x70\x9b\x0a\x95\xb3\xdc\x64\x18\x71\x71\xca\x4d\x80\x4c\x8c\x36\x95\xe9\x67\x1d\xab\x61\x44\xe2\xa9\x9c\x34\x95\x93\xaa\xe9\xb6\x29\x07\xa0\xa7\x1f\x86\x33\xa9\xa7\x17\x0c\x63\x8f\x4b\x01\x75\x75\xaa\x06\x34\xb1\xa4\x89\xd5\x99\x88\x5c\x4b\x7b\x04\x92\xdb\x20\x5b\xda\x23\xe0\x0d\xb9\x96\xf6\x08\x0c\x23\x57\xae\xa1\xe5\x79\xa1\x48\x2a\x90\x45\x3f\x62\x6b\x20\xfd\xd2\x5a\x2e\x4a\xd2\x23\x97\xc2\xee\xaa\xb3\x3d\x0c\x97\x5b\x0a\xa8\x40\xaa\x3c\xe3\x46\xa1\xa0\x2c\xe4\xd5\x69\xd8\x52\xe6\x02\x92\x2b\x29\x5b\xca\x5c\x8b\xe8\xe9\xc4\xeb\xa5\xe8\x09\x64\x4e\xf6\xe8\x12\x15\x7d\x39\x05\xa1\xda\x7c\xdb\x2b\x8c\x0c\xe7\x28\xec\x0a\x23\x40\xe6\x14\x65\xa2\xca\x0b\x63\x63\xa2\x32\xea\xae\x8c\x5a\xbd\xb3\xed\x92\x6b\xaf\x7e\x64\x04\x55\xfc\x4e\x3f\x22\xc8\x44\x5f\xbb\xa2\xc9\x5e\x71\x71\x70\xd7\x69\xbb\xe2\x22\x90\x59\x5d\x8b\xed\xa9\x89\x88\xca\x55\xaa\xe9\x32\x40\x30\xd4\x11\x1c\x32\xed\xa1\x5c\xb9\x44\x0d\x51\x2c\x4f\x18\x3a\x74\xdc\x0f\x1d\xf7\xea\xdf\x4c\xf7\x03\x76\x90\x93\xb8\x2a\xb3\x43\x39\xe9\x50\x4e\xc2\xc9\x0f\xe5\xa4\x83\xc8\x44\x2f\x68\x87\xce\x23\x90\xf2\xaf\x43\x91\xe9\xa8\x44\x31\x54\x9e\x1d\xaa\xb2\x0e\x55\x59\x98\xf6\x50\x95\x75\x90\x21\x54\xf3\x1c\xca\x10\x40\x2e\x3c\xfa\x90\x26\x00\x6b\xcf\x51\xfa\x22\x9a\x50\xde\xd5\x5d\x83\xdd\x31\x87\x92\xd9\x5d\xe6\xb8\x3f\xcd\x21\x0a\x73\x70\x73\x30\xe6\xc6\x44\x3a\x46\x41\x66\xf5\xf4\x76\x97\x85\xb8\x45\x18\x13\xa3\xe9\x16\x41\x90\x49\x51\x72\x57\xdf\x70\xe7\xd4\x72\x73\x69\x77\x9d\x5a\x20\xe7\x26\x0a\xdd\xdf\x31\xed\x24\x4d\xdd\xb5\x21\x20\xcc\x45\xe9\x8b\xb4\x5e\x93\x6a\xe6\xae\xd6\x0b\x18\x93\xe3\x7e\x57\x71\x09\xe4\x53\x7a\x15\x97\xc0\x98\x24\xff\xbb\x8a\x71\x20\x27\xf5\xa6\x2e\x3c\xec\xe4\x88\x72\x4d\x69\xa7\x8e\x28\x90\x13\xf7\x3d\x75\x44\xcf\x3a\x37\x63\xe2\xf7\xa7\x4a\x3d\x20\x27\x85\xea\xa9\x33\x74\x12\xd2\xe6\xd2\x28\x13\x65\x8c\x0a\x28\x17\x55\x6e\xa2\xbe\xe1\x94\x56\x81\xe4\x15\xc6\x4e\xf9\xfd\x59\xf1\x7e\xac\x6d\xfd\x76\x2a\x3e\x95\x0e\x80\x9c\x1c\xfd\x53\xee\xc7\xad\xc9\x58\x9c\x60\xdd\x9a\xd8\x85\x2b\x2f\x0a\xe0\x4b\xae\x0c\xe4\xa4\x73\xbf\xe4\xca\x57\x22\x23\xd1\xe0\x92\x1d\xae\xd4\xa8\x05\xf5\x1c\x75\xbd\xdd\x6c\x1b\x25\xb6\x6e\x27\x04\x39\xe9\x6d\x1e\x3a\x75\x8f\x8a\x8b\xb6\xd1\x43\x3c\x14\x17\x81\x9c\x24\xc6\xc7\x78\x8e\xf2\x1a\xe5\xac\xa5\x88\x07\xc4\xc6\x86\x1e\x2a\x34\x1f\x95\x77\x6d\x0b\x96\x57\xde\x7d\xe8\xdd\x9b\x0a\xf5\xa1\xbc\xfb\x28\x3b\x18\x95\xb3\xeb\x2a\xc2\x37\x67\xf9\x8a\x3f\xbe\x51\xba\x08\x06\x75\xac\x6f\x64\x67\xa7\xa7\x37\x1e\x86\x5d\x3d\xbd\xf3\x1c\x6a\xdc\xdd\xb9\x9e\x43\x05\xc9\x19\x70\x3d\x87\x7a\xb3\x78\xbb\x59\x2f\x21\xbc\xf1\x3e\x22\xc8\xd9\x1c\x6a\x8a\xda\x6b\x54\xd7\xa8\x43\x14\x5a\x6d\x01\x75\x17\x75\x67\x54\x42\xe9\x8b\xa6\x2f\x8a\xd2\x17\x11\x95\x27\x5f\x57\xd3\xed\x5d\x54\xa5\x29\x57\xab\xe9\xf4\x7f\x36\x2a\x70\xb9\x7e\x27\x20\xc8\xd9\x18\x35\x34\xaa\x54\x68\x63\x8a\xda\x45\x71\xea\xda\x82\x42\xd4\x51\xb5\x9c\x8d\xc5\x28\xbf\x44\x71\x9e\x2a\x8f\xf8\x20\x1a\x38\x0f\x8a\x66\xd5\x99\xb9\x1e\x14\x05\x39\x3b\x42\x70\x0f\xe8\x34\x7e\x46\xc2\x76\x35\x7e\xce\xc3\x9d\x91\x9d\x5d\x0f\x77\x82\x24\x40\xb8\xf1\x4c\xe2\x56\xa1\xc3\xbc\xce\xb9\xf3\x16\xf7\x84\xb1\x05\xa3\x42\xa3\x58\xde\x11\x42\xad\x93\x3b\x76\xf4\xaa\x8c\xdc\x65\x47\x97\x1d\x3b\xa3\x64\x47\xaf\x28\x65\x5e\xc9\xcc\x69\x0b\x9e\x90\xb3\x7a\x67\x57\x77\xe0\x14\xe6\x46\x4e\x72\x15\xe6\x02\xe3\x09\xd3\xf5\xfe\x26\xc8\xd9\x03\x8a\xb5\x42\x13\xcb\xc9\x5d\xf5\xa6\x53\x8b\x19\xfd\x9b\xab\x16\x73\x6a\x31\xe3\x7d\xc5\x55\x8b\x09\x72\x76\x8d\x62\x8f\x54\x33\xc6\xe5\x89\xab\x9a\xf1\x55\x26\xa8\x7a\xa1\x28\x22\xb1\x20\x79\x1d\xf2\x15\x1a\x55\xe6\xf0\xad\x22\xb1\x2f\x99\x03\xc8\x39\x44\xa1\x9c\x55\x09\xc8\xb7\x3a\xa2\xce\xab\xc0\x13\x9a\x8c\xa6\xc7\x01\xa7\x44\xf0\x0d\x15\xaa\x44\xf0\xbd\x8e\xa8\x6f\xac\xb5\x73\x44\x05\x39\x47\x83\xc2\xbf\x28\x11\x9c\x87\x06\x57\x89\x20\xc8\x39\x3a\x14\xe6\xd8\xb5\x7c\xa5\x4f\x57\x5a\xf7\xa3\x7c\xc2\x1b\x5f\x3c\xe4\x13\x40\xf2\xb6\xe5\x07\x4f\x67\x7e\xf0\x1e\xde\x2a\x4e\x38\xc9\xfb\x09\x39\x87\x26\xe2\x98\x07\xbd\x20\x2f\x01\x7e\x50\x8c\x0b\x06\xcf\xc7\x7e\x90\x05\x9d\x1c\xee\x6d\x42\xc9\xa3\x0f\x79\xf4\x40\x2e\xa9\x10\xf0\x56\xb1\xdf\x0f\xa9\xf0\x50\xc7\x98\x2c\x4f\xe5\xed\x07\xbd\x60\xdf\x90\x8b\x5e\x50\x90\xbc\xb9\xf9\x91\xda\x50\xaa\xaf\x2c\x6b\x2b\x87\xfb\x5d\x14\xa7\x56\x99\xcb\x09\xee\x4e\x77\xe1\x0a\xee\x7e\xa1\x7b\x7e\x78\xe0\x97\x74\x0f\x0c\xde\xef\xfc\x92\xee\xaf\x4a\x66\x6e\x98\xe3\x22\x99\x09\x72\x56\x51\xe2\x97\x6b\xad\x92\xcb\x0d\x8f\xbe\x24\x17\xd0\xb8\x7a\xf6\x8b\x9a\xda\x49\x01\x4e\x85\xeb\x4a\x01\xce\x45\xb0\x7b\xf9\x57\x28\xfa\xc6\x56\x2e\xeb\x5e\x25\x55\x6c\xdc\xcb\x0b\x72\x56\x9b\x1f\x1b\x97\x14\xb1\x55\x34\xf1\xd0\x44\xa2\x89\x20\xa7\x41\xe1\xd1\xb1\x95\x10\xce\x73\x7b\x6c\xa9\xb5\x52\xaf\xd3\xa2\xb4\x16\x42\xf0\xe6\x16\x8a\xe4\xc1\xef\x66\x9c\xa7\xa0\xd0\xef\x66\x04\x39\xad\x41\xdd\x45\x95\x72\xb8\x22\x8e\x46\xc4\x8c\xa6\x6c\x65\xbf\xfd\x56\x1c\x8d\x64\x16\x04\x67\xe7\xed\x20\x14\x9c\x83\x1f\xa6\x78\x56\xcb\x1f\xfa\x61\x8a\x20\x67\x65\x9b\xe8\xfa\x7a\xaf\xc6\xcf\xa9\x50\xa3\xd3\xf8\x09\x3a\xe7\x29\x3a\x99\x5e\xe0\xd3\x99\x48\xa6\x17\x8c\xe6\x9a\xa8\xe5\xb9\x9d\x98\x15\x6c\x42\x77\x9d\x82\x9c\x86\x5c\xd4\x9e\x41\xd2\xf0\x59\x27\x25\x94\x34\x42\x3f\x26\x99\xe5\xb7\xa1\x1f\x93\x08\x92\x60\x13\x83\xc3\x13\xa3\x92\xac\x73\x3f\x19\x83\x62\x47\x90\xd4\x65\x31\x28\x76\x82\xa4\xe1\xab\x6b\xd4\x25\x4a\x3f\xed\xe8\x50\xc8\x45\x3a\xf0\x35\x6a\x94\xd2\x41\x18\xae\xbc\xaa\x9d\x0e\xc3\x95\x05\x39\x8d\x51\xb8\x72\x90\x15\x7c\x55\x15\x1e\xc6\xd1\x17\x18\x8f\x93\xc1\x35\xe1\x6b\x90\x34\x62\xdb\x98\x48\x08\x17\x24\xc5\x61\x28\x69\x84\xd5\x71\x8d\x4d\x42\x70\x5c\x05\x39\x9d\xb5\xa4\x42\x52\x4b\xf0\x8e\x1a\x4a\x2d\xe1\x25\x6a\x50\x6e\x84\x4b\x54\x97\xa8\x55\x5b\x84\x4b\x54\x20\xb6\x4a\x2d\xe1\x64\x54\x41\xce\xaa\xd5\x83\xfc\xf4\x1a\x5e\x1b\x8a\x6d\x31\x51\x1b\x02\x92\x27\xdf\x70\x6d\x88\x04\x14\xad\xb2\x60\x28\x01\x05\x3f\xda\x88\x56\x1d\x50\xe8\x47\x1b\x82\x94\x9b\xe8\x47\x1b\x11\x9a\x58\x9d\x46\x28\x01\x05\xaf\xf9\xd1\x11\x42\xaf\xf9\x82\xe4\x8e\x2c\xf4\x9a\x1f\xba\x7e\x18\x55\xd1\x87\xae\x1f\x04\x29\xff\xd2\xf5\x43\xf0\xc0\x1f\xa3\x33\x91\xb7\x3c\x41\x4e\x8e\x6b\x72\x21\x16\xf9\xfc\x35\x63\xc9\xa5\x94\x17\x3c\xdd\xc7\xc0\xbf\xf4\x74\x2f\xc8\xc9\x86\xf4\x74\x1f\x13\x15\x8e\xd0\xa8\x43\x94\x54\xb8\xa0\x50\xe1\x4c\xd6\xca\xd2\x17\x17\x03\x4f\xc8\x89\x4f\xe8\x7e\x20\x48\x9f\xc1\xad\x5c\x28\x7d\x0a\xc2\x4c\x54\x17\xd5\x79\x6d\x1d\x50\x43\xd4\xc9\xa8\x0e\x75\x89\xa2\x29\xe2\x58\xe9\x7e\x20\x96\xab\x91\xa9\x3d\x2e\x8a\x7c\x41\x7b\x2e\x4f\x91\x1f\x4b\x42\x54\x49\x15\x4a\x9f\xb1\xd7\x57\x82\xd2\x25\x76\x92\xbf\x60\xf0\xda\x1a\x3b\xc9\x3f\xf6\x8a\x9e\xe5\x78\x50\x29\x8a\x7a\x33\x3a\x14\xa1\x63\x2f\x85\x84\x13\xde\x76\x6a\x1e\x41\xce\x2a\x96\x62\xa7\xe6\x89\xbd\x9c\x3c\x5c\x94\x9c\x7c\x57\x9c\xc0\xa3\x77\xc5\x09\x52\x71\x44\x55\xb8\xa1\x54\x1c\x47\xc5\xc5\x08\xce\xf6\xa1\xc0\x77\xa8\x75\xaa\x76\x3a\x0e\x5a\xa7\x38\xbc\x84\xe0\x17\x79\x71\x70\x1d\x28\x68\xce\xb1\x3a\x14\x14\x8e\x72\xb3\xe0\x05\x3e\x0e\xee\xfe\x04\x39\xb1\xf6\xc1\xbd\x58\x90\x1f\x83\x47\xe6\x38\x14\xfb\x81\x9c\x91\x50\xcf\x51\x25\x2a\xcf\x83\xa1\xf4\x19\xb4\xc0\xc1\x3b\x59\xa8\x05\x16\x74\xde\x7d\x42\x2d\x70\xdc\x43\x2f\x73\xb5\xd6\x5d\x4e\x7e\x97\x93\xc7\x84\xc2\x8e\x77\xfc\x8b\xce\x3f\xee\xf2\xaf\xfb\xd3\xbf\x16\x94\x8b\x2a\x21\x68\xfc\x42\x09\x3b\xce\xfa\x62\x50\xeb\xc7\xa9\x2f\x02\x39\x89\x72\xf4\x98\xaf\xc1\xab\x79\xc8\x8e\x7a\x35\x17\xe4\xcc\x06\x75\x8a\x62\xad\xa5\x51\x5a\x4b\xc1\x2a\x45\x69\x2d\x09\x41\xde\x55\x89\x10\x17\xaf\x8f\xbc\x47\xc5\xc5\x85\x87\x20\x27\x07\xe6\xe2\xc2\x23\x2e\x3c\x67\x55\xf9\x1f\x97\x3c\xe7\x92\xe7\x24\x6b\xc9\x73\x78\xf0\x8e\x45\x0e\xbf\xe8\xa0\x04\x39\xab\x62\x8b\x8b\x92\x2a\x28\x11\x62\xe1\x13\x2a\x11\x82\x12\x21\xb7\xea\xb0\x53\x25\x42\x6e\xd4\xfa\x5b\x99\x36\x37\xea\x3a\x41\xce\x14\x15\x50\xd4\x29\x6d\xf8\x9f\xa7\xe2\x3e\xfe\x32\x13\xe7\xe6\x5a\x96\x6b\xad\x99\x0b\xaa\x8b\x2a\x8f\x69\x95\xa5\x52\x7d\x9f\x20\x67\x55\x0b\xb9\x21\x75\xea\x47\xbc\x24\xd4\xd4\x8f\x78\x05\x8d\x6a\x21\xa9\x42\x9e\x90\x73\x8a\x92\x88\xec\xad\xcd\x9a\xf8\xfc\xc5\x77\x13\x55\xc6\x4a\x95\x03\x49\xbe\xcf\x3e\x03\xea\x14\x85\x82\xa7\x46\x5d\x50\x44\xb7\x5e\xc5\x48\xf2\xa4\xfa\x84\x9c\x2c\xaf\x97\xd5\xe4\x19\x35\x47\xf9\x7b\xea\x19\x55\xd0\xb8\x18\x4a\x3d\xa3\x0a\x92\xa7\xcf\xec\xb8\x5a\xf6\xd4\x4f\xa3\xf9\xa2\xf6\x08\xb4\x51\x1d\x5d\xea\xe9\x33\xa9\x10\x72\x94\x8f\xa6\x2a\x84\x1c\x98\x61\xa0\xaf\xe1\x4f\x0a\x45\x4f\x87\x42\xd1\x7a\xf0\xb3\xea\x3d\x52\x0f\x7e\x82\x9c\x6c\x9b\xa4\xff\x84\xb4\x1c\x7f\x66\xd2\xfa\xff\x1f\xf6\x8f\x97\x5f\x7f\xaf\x7f\xff\xe9\xcb\x97\xeb\xfd\x2b\xff\x3a\x80\x5f\xe6\xdf\xce\xeb\xf1\xe9\xfd\xfa\xf5\x5f\x1a\x7c\x7c\xfe\xa8\x59\xfc\xf7\x3f\x01\x00\x00\xff\xff\x94\xbf\x01\x60\x95\x30\x00\x00"); +func _ddad ()(*asset ,error ){_eceg ,_dbedd :=_cgefa ();if _dbedd !=nil {return nil ,_dbedd ;};_fced :=bindataFileInfo {_ee :"UniGB-UTF16-V",_ffd :723,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492760,0)};_ceac :=&asset {_da :_eceg ,_dc :_fced };return _ceac ,nil ; +};var _cfaef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x53\x4d\x6b\xdb\x40\x10\xbd\xcf\xaf\x98\x63\x7a\x68\xbd\x1f\x96\x76\x05\x83\xa0\xc4\x04\x5c\x48\x13\xea\xa6\x29\x94\x1e\x64\xed\xc8\x08\xe2\x95\x90\xe4\x83\xff\x7d\x99\xb1\xe3\x42\x0e\x1e\xf9\xed\x7b\x6f\xfd\x66\x34\x5e\xdd\x6f\x37\xdb\xdc\x2f\xb8\x7a\x9e\x86\x76\xc7\x0b\x76\x7d\x4e\x13\xcf\xc3\x69\x6a\x19\xf7\x7c\xe8\x33\x80\x75\x98\xfa\x76\x79\x87\xfa\x68\x8f\xcd\x08\x20\xfe\xdd\x79\x5e\xf8\xb8\xcd\xdd\x80\xfe\xa2\x4b\xa7\xf1\xaa\x45\x5c\xfd\xe0\x43\x3f\x2f\xd3\x19\xef\xbe\xa6\x61\xcf\x9f\x30\x71\x27\xe7\x4f\x53\xe2\xa9\xcf\x07\xbc\xfb\xd6\x8c\x4d\xb6\x37\x62\x77\x1a\xc7\x37\x3e\x72\x5e\xd0\xe8\x19\xe7\xa4\x4f\x58\xdd\x3f\x36\xe3\xf7\xe6\xc8\xb8\x7a\x7d\xfe\xbc\x3b\x1f\xf7\xc3\x9b\x32\x4a\xfc\xe2\x69\xee\x87\x8c\xd6\x7c\x31\xa6\xfc\x7f\xfe\xf3\x3c\x32\xda\xeb\x0d\x2f\xdb\xcd\x53\xd7\xcd\xbc\x60\x2c\xe3\x45\xf3\xfb\x65\xbb\xc1\x3f\x16\xad\x41\x57\xf8\xc2\xfd\xbd\x4a\x5f\x1f\x87\xc4\xd7\x08\x60\x2f\x0d\xb5\x43\xe2\x79\x6c\x5a\x9e\x9a\x7c\x60\x40\x24\x63\x6a\xa4\x87\x87\x5a\x52\x7e\x60\xc1\x85\xab\xab\x4f\x97\x13\x32\xb6\x46\x2d\xd1\x14\x25\x90\x71\x02\x9d\xc2\x08\x64\xbc\x40\x5f\x63\xb4\x95\x05\x32\x6b\x81\x6b\x85\x22\x2e\x6a\x24\x1b\x45\x5c\x5a\x20\x5b\xd5\x48\x4e\xbd\x95\x03\x72\xe2\x75\xea\x8d\x25\x90\x13\xaf\x2b\x84\x75\x06\xc8\x95\x02\x4b\x65\x03\x90\x0b\x02\xf5\x2a\x27\x5e\xbd\xaa\x52\x36\x02\xb9\x46\x60\x23\xac\x17\xf1\x5e\x60\x52\xf1\x1a\xc8\xb1\xc0\x4e\xc5\x15\x90\x97\xfe\xbd\xd5\x90\x0e\xc8\x4b\x47\xde\xd7\x18\x62\x25\xac\xc4\x90\x12\x62\xb5\x06\xf2\xd2\x82\x94\x68\x15\x4a\x2a\x29\xd1\xf8\x02\xc8\x4b\x2a\x5f\xe9\x0f\x05\x20\x2f\x31\xa4\x44\x5b\x09\x2b\x31\x0a\x9d\x86\x75\x40\x85\x5c\x55\x24\x65\x03\x50\x21\xa9\xa4\x44\x5b\x58\xa0\x52\xe6\x1c\x24\x95\x33\x25\x50\x90\x54\xe1\x32\xe7\x00\x14\x64\x56\x21\x08\xeb\xbc\xbe\xb8\xf7\x17\x24\xdf\x65\xb1\x6f\x8b\xd6\x9e\xa6\x89\xf3\xa2\x6b\xad\xdb\x24\xeb\xd0\x67\xbe\xfd\x45\xc6\x61\x14\x97\x7e\xfe\x05\x00\x00\xff\xff\x81\xaf\xf4\x15\x4e\x03\x00\x00"); +func _bgb ()([]byte ,error ){return _gb (_bageb ,"KSCms-UHC-V")};var _aebd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xeb\x46\x1b\x05\xf0\xbd\x3e\xc5\x2c\xef\xbb\xb8\x6f\xe6\xf9\xa3\xd1\x08\x44\xa0\xe4\x72\x21\x5c\x6e\x5b\x92\xd2\xae\x1d\x69\x1c\x0c\x8d\x6c\x14\x7b\x91\x6f\x5f\xce\x73\xec\x14\xba\x08\x8e\x4f\xa4\x47\xe2\x77\x32\x33\x77\x0f\x8f\xdf\x1e\xd7\xc3\x39\xdd\xfd\xbe\x1d\xe7\xe7\x76\x4e\xfb\xc3\xba\x6c\xed\xfd\x78\xd9\xe6\x96\x5e\xda\xeb\x61\xed\x3a\xd1\xb4\x1c\xe6\xf3\xed\x6b\x7c\xcc\x6f\xbb\x53\xd7\xe1\xfe\xe7\x8f\xf7\x73\x7b\x7b\x5c\xf7\xc7\x64\xbc\x6e\xb9\x9c\xae\xd7\xa6\x74\xf7\xd4\x5e\x0f\xef\xe7\xed\x23\x7d\xf9\x65\x39\xbe\xb4\xff\xa5\xa5\xed\x91\xff\xb6\x2d\x6d\x3b\xac\xaf\xe9\xcb\x8f\xa7\xcf\xf0\xf9\x72\x3a\xfd\xdd\xde\xda\x7a\x4e\x43\x64\x6d\x5d\xe2\xb3\xbb\x7b\xf8\xb9\x3b\xfd\xba\x7b\x6b\xe9\x2e\xe6\x7c\xfd\xf1\xf4\x95\x97\xc4\x5f\xfe\x6c\xdb\xfb\xe1\xb8\x26\xf9\x7f\xce\xfa\x6f\xfc\xc7\xc7\xa9\x25\xb9\x4e\xf8\xeb\xe7\x71\x69\x29\xdf\xe6\x3d\x7e\x7b\x38\x5e\xd6\x73\x92\x5a\xfb\xca\x50\xf8\xda\xf3\x71\x69\xef\xa7\xdd\xdc\xb6\xdd\xfa\xda\xba\x94\xa6\x9c\x73\xbe\x4f\x93\x8f\xdf\xbf\xdf\xe3\x9d\xfe\x73\x45\x37\xf8\xf5\xce\xc3\xc2\xe4\x76\x47\xce\xfb\xfd\x7d\xca\xdd\x94\x85\xdf\x05\xdf\xb5\x2f\xdd\x94\x95\x89\x22\xe9\x45\xbb\x29\x1b\x13\x43\x32\x94\xda\x4d\xd9\x99\x38\x12\xc9\xea\xdd\x94\x7b\x46\x7d\x44\x5a\x31\xbb\x30\x2a\x11\xf5\x86\xe1\x03\xa3\x21\xa2\x61\xc4\xf4\xca\xa8\xc6\x1b\x64\xc7\xf8\x91\xd1\x18\x91\x65\x8c\xdf\x31\xda\x5d\xdf\x13\xe3\x5f\x18\xbd\x44\x54\x05\xe3\x67\x46\x33\x22\xcb\x03\xc6\x2f\x8c\x96\x88\x4c\x31\xbe\x31\x6a\x11\xf5\x15\xe3\xf7\x8c\xf6\x11\x55\xcf\xdd\x24\x94\x92\x90\xf2\x3c\x96\x6e\x12\x62\x49\x60\xb9\xf5\xda\x4d\x42\x2d\x09\x2d\x2f\xb9\x76\x93\x90\x4b\x82\xcb\x6b\xf1\x6e\x12\x7a\x89\x5f\x4d\x31\x9e\x5e\x12\x5e\xbd\x0d\x18\x4f\x2f\x09\xaf\xbe\x18\xc6\xd3\x4b\xc2\xab\xaf\x15\xe3\xe9\x25\xe1\x55\xc4\x31\x9e\x5e\x12\x5e\xc5\x33\xc6\xd3\x4b\xc2\xab\x14\x14\x2b\xf4\x92\xf0\x2a\x23\x9a\x15\x7a\x49\x78\x0d\x82\x6a\x85\x5e\x12\x5e\x83\xa3\x5a\xa1\x97\xb4\x6b\xff\x18\x4f\x2f\x09\xaf\x61\x44\xb5\x4a\x2f\x0d\xaf\x2a\xa8\x56\xe9\xa5\xe1\x55\x1d\xd5\x2a\xbd\x34\xbc\xea\x80\x6a\x95\x5e\x1a\x5e\x75\x44\xb5\x4a\x2f\x0d\xaf\x51\x51\xad\xd2\x4b\xc3\x6b\x74\x54\xab\xf4\xd2\xf0\x1a\x07\x54\xab\xf4\xd2\xf0\x1a\x47\x54\xab\xf4\xd2\x7a\xfb\x5f\xc5\x7c\x82\xe9\xc8\xcc\x51\xae\x52\x4c\x77\xcc\x06\xb4\xab\x24\xd3\x20\x43\xfb\x78\x04\xcd\x74\x66\xa6\xe8\x57\x89\xa6\x0b\xb3\x1e\x05\x2b\xd5\xb4\x31\x1b\xd0\xb0\x92\x4d\xf7\x5c\x24\x19\x15\x1b\xdd\x2c\x33\x53\x74\x6c\x84\x33\x61\xd6\xa3\x64\xa3\x9c\xe9\x6d\x81\xe5\x6e\x32\xd2\x59\xd0\x89\x65\xd4\x6c\xb4\x33\xae\x4d\x33\xf4\x6c\xc4\x33\x2e\x4e\xeb\x51\xb4\x51\xcf\xb8\x3a\xad\xa2\x69\x23\x9f\x71\x79\x7a\x46\xd5\x46\x3f\xa3\x9f\x1b\xba\x36\xfa\x19\xfd\xbc\x47\xd9\x46\x3f\xa3\x9f\x57\xb4\x6d\xf4\x33\xfa\xf5\x82\xba\x8d\x7e\x36\xdf\x76\x05\x3c\x83\x7e\x46\xbf\xbe\xa0\x70\xa3\x9f\xd1\xaf\xaf\x68\xdc\xe8\x67\xf4\x2b\x82\xca\xfd\xba\x07\xd2\xaf\x18\x3a\x77\xfa\x39\xfd\x4a\x41\xe7\x4e\x3f\xa7\x5f\xa9\xe8\xdc\xe9\xe7\xf4\x1b\x04\x9d\x3b\xfd\x9c\x7e\x83\xa3\x73\xa7\x9f\xd3\x6f\x28\xe8\xdc\xe9\xe7\xe5\xb6\x95\xe1\x19\xf4\x73\xfa\x55\x41\xe7\x4e\x3f\xa7\x5f\x75\x74\xee\xe3\x75\xdf\xde\x8d\xc8\x4a\xad\xb1\x7b\xdf\x76\x69\xfc\x8e\x73\xec\xf3\x6c\x99\x2f\xdb\xd6\xd6\x73\x9c\x62\x71\x80\xe0\x5c\x38\xac\xed\xf3\x44\x3c\x1d\x4f\xb8\x2b\x7e\xfe\x09\x00\x00\xff\xff\xbe\xfb\x35\x16\x3d\x07\x00\x00"); +var _ffed =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xeb\x2f\x3b\x92\xa0\xb7\xbf\x9f\xe2\x2c\xc7\x8b\x71\xa7\xa4\xd0\x1b\x14\x17\xcc\x8c\x1b\xf7\xc0\xd8\xc6\xed\xb1\x0d\xc6\x8b\x7c\x6d\x0a\xdc\x55\x45\x75\xcd\xa2\xbf\xbd\xd1\xf3\xe8\x54\x1b\x63\xb8\xb5\x7a\xce\x5f\x27\x53\x3f\x29\xa4\x54\x84\x42\x21\xe9\xef\xfe\xc3\x3f\xfc\xc7\x7f\xf8\xc3\xef\xff\xf2\xe3\xef\xfe\xe7\x3f\xff\xf1\xfe\xc7\xf7\x2f\x3f\xbe\xdf\xff\xe1\xf9\xf3\xfb\x2f\x7f\xfc\xaf\x7f\xbe\xdf\x1f\xd7\xfb\x4f\xbf\xff\xc3\x2f\xbf\xa4\xfc\xe3\xf9\xfd\xfd\x97\x9f\x7f\x82\xfb\x9f\xcf\x3f\xfd\xf2\xcb\x7a\xff\x1f\xff\xf5\x5f\xfe\xf2\xfe\xf3\x3f\xfc\xe1\xfb\xe3\x8f\xe2\x73\xcf\x7f\xfd\xd3\x7e\xf6\xc7\x8f\xbf\xfb\x5f\xde\x7f\xfa\xfd\xbf\xfc\xe5\xcf\xff\xfa\xe3\xdf\xfd\x77\xcf\x1f\xaf\xf7\xbf\xf9\xf1\xbc\xdf\x4a\xff\x9f\xfe\xfc\xbc\x7f\xfe\xfd\x1f\xfe\xe9\xc7\xbf\xfb\x4f\xe7\x9f\xce\x3f\xa4\xbf\xfe\xc7\x3f\xfe\xd7\x3f\xfd\xe9\xff\x7e\xff\xf9\xfd\xc3\x5f\x7e\x04\x69\xef\x1f\x1e\xf8\xcb\xdf\xfd\x87\xff\x7c\xfe\xe9\x7f\x3c\xff\xf9\xfd\xf1\x77\xff\xe5\x0f\xbf\xff\x4f\xff\xf0\x8f\xff\xfe\xbf\xfc\x87\x7f\xcc\xff\xfe\x7f\xe0\x7f\xf9\xcf\xff\xed\xfd\xf3\xbf\xfc\xfe\x8f\x7f\xf8\x91\xf2\x7f\x7b\x1c\xed\xdf\xd2\xff\xd7\x7f\xfd\xd3\xfb\x23\xed\x5c\xfe\x8f\xff\xf2\x0f\xff\xf1\xc7\xff\x99\x7e\xa4\xe3\x47\xae\xa5\xb6\xff\x6b\xa7\xff\xef\xff\xf9\x8f\xcf\xfb\xe3\xf0\xaf\x6c\x0d\xee\x3f\x3e\xef\xbf\xfc\xe9\xbc\xdf\x3f\x9f\x7f\xf8\xa7\xf7\x97\x1f\x3f\x7e\x77\x1c\xc7\xf1\xeb\x8f\xdf\xfd\xc7\xfe\xf7\x7f\xff\xeb\xfa\xfb\xbf\xf7\xef\xbf\xff\xfb\xf5\xf7\xfb\x87\xe7\xff\xf3\xc6\x2f\xc9\x8c\xfe\xf0\xc7\xbf\x3c\xef\x67\xda\xcf\x3c\x8e\x23\x7d\xbf\xfe\x48\xeb\xad\xff\xf7\x7f\xff\x92\x8e\x63\xff\xfa\xef\x9f\xbf\xbe\x91\x7d\xa3\x5e\xeb\x8d\xf5\x8f\xdb\xbf\xef\x5f\x7f\xcc\x4e\xc2\x43\x42\x7f\x7f\xfd\xd1\xf2\x4a\x38\x13\x09\x67\xf9\xf5\x47\x3a\x78\xe7\x0c\x53\x62\xa5\xf0\xd2\x59\x4d\xa9\xbf\xfe\x68\x3e\xd2\x4c\x68\xbf\xfe\x98\x93\x84\x6e\x42\xff\xf5\x47\xcf\x07\x29\xc3\x94\xf1\xeb\x8f\x16\xe6\x32\x4d\x99\xbf\xfe\x48\xd5\xdf\x3e\x4d\x39\x7f\xfd\x91\xc2\xb7\x2e\x53\x56\xf9\x0f\x73\xb6\x06\x0b\xa9\x16\x52\xac\xc2\x42\xaa\x16\xe7\x35\xe5\x5d\x29\x41\xca\x67\xca\x92\x5c\x26\x9f\x4b\xc9\x2c\x74\x6b\x75\x59\xf3\x85\x36\x79\xeb\xca\xa6\x2c\x59\x54\x9f\x51\x16\x0b\x2d\x2a\x29\xca\x62\x21\x55\x73\x56\x18\x0b\xbd\x0f\x52\x94\xc6\x42\x4a\xe6\xa3\x34\x16\x52\xf1\xb7\x94\xc6\x42\x6a\xd4\xfd\x52\x1a\x17\xd2\xf0\x19\xa5\xb1\x90\x32\x75\xbf\x94\xc6\xb5\x6a\x6a\x53\x5c\xd6\xf4\xa2\xa6\x6d\xa5\xdc\xd6\xf4\x5e\x25\x6c\xe4\x73\x5b\xc2\x85\x54\x28\xf3\x6d\x09\x9f\x95\xd2\xf9\xf5\x67\xa7\xf4\x25\x0d\x6a\xfa\x58\xe6\x85\x14\xb4\xd7\x63\x99\x9f\xf5\xeb\x83\x7a\x3d\xfe\xfa\x42\xaa\xe4\xf3\xfa\xeb\xef\xfa\xf5\x49\x99\x5f\x7f\x7d\x21\x29\xc3\xd7\xdf\xfa\x56\x8a\xfd\xe7\xdb\x29\xfc\x3a\xb5\xf8\xfc\xf5\x8f\x5f\x47\xaa\x9f\xbf\xfe\x7d\xbf\xfe\xc8\x69\x3d\x93\xfc\x3e\xc0\x2c\xcd\xa4\x64\x52\x22\x69\x49\x28\x25\x5a\x15\xcc\xd2\x26\x49\xc5\xa4\x42\x52\x90\x74\x9a\x74\xae\x24\x04\x90\xd2\x65\xd2\xf5\xeb\x8f\x19\xf4\x99\x94\x29\x27\x48\xf9\x98\x99\xb4\x61\xda\xe0\xb1\x83\xa4\x69\xd2\x5c\x49\xc9\xa7\xcc\x3f\x93\x7f\x33\x33\xf3\x5f\x98\x85\xaf\x31\x15\x8b\xbf\x90\x82\x0a\x85\x29\x41\x0a\xf5\x09\xeb\xb3\x90\xf8\xb2\x52\x98\x51\x50\xd0\xe2\x6b\xb7\x49\xeb\xc3\x2f\xb4\x70\x8a\xc7\xa4\x87\x9f\xa3\x86\xd5\xac\x2a\x59\x15\x52\x94\xcc\x42\x0a\x64\xd5\x14\xf2\x42\xa6\x13\xa6\x66\x91\x16\x72\xa6\x00\x4d\x11\x34\x45\x40\xd6\x4d\x11\x34\x45\xe0\x53\x8a\xa0\x29\x82\x41\x92\x25\x6f\x8a\xc0\xdc\x5f\x93\x5e\xf2\xa2\x6d\xda\x67\xd2\x47\x5e\xd4\xaf\xfb\x8b\x0b\x39\xf3\x50\xb7\x7a\x0b\x39\x53\x84\x6e\x4e\x0b\x99\x41\x20\xf9\x69\x80\x69\x82\x2f\xdd\xc8\x84\x41\x20\xdd\xbe\x75\xfb\xfb\xfc\xd8\xed\xef\x2f\xcc\x32\x29\xf8\x63\x4e\x0b\x33\x12\xf2\x7d\x14\xcb\xc2\x0c\x86\xd2\xf4\x28\xdf\x85\x19\x89\xea\x3d\x0a\x78\x61\xc6\x61\x52\x98\x14\x3c\x45\xd1\x3f\xcb\xb5\x30\x23\xaf\xbc\x72\x25\x7b\x30\x23\x0d\x92\xc2\x24\x5e\xa4\x6d\x72\x9d\x26\x21\x76\xc6\x83\x5c\x4f\x93\x4e\x92\x26\x49\x97\x49\x76\x98\xd5\xf3\x72\x67\x5c\x03\x33\xca\x6a\xaf\x3c\x28\x2a\x98\xc1\x08\x90\xc7\x6d\xd2\xcd\x53\x14\x62\x52\x47\x30\x83\x1e\x9a\x15\x4e\x56\x38\xf4\xab\xe2\xa7\x0a\xe8\x7a\xc5\x0f\xb5\x1c\xab\xeb\xd1\x89\xca\x51\x4c\x59\x3f\xe7\x23\x61\x42\xfc\x1c\xc4\xcb\x51\x4d\xa9\xab\x45\x1b\x29\xcd\x14\x06\xd6\x83\x94\xd3\x94\x35\x8c\x16\x7f\xfb\x32\x65\x0d\xa3\xa5\xa2\x7e\x7f\xaa\xcc\xff\x5f\x2d\x5a\x8e\xdb\x17\x96\xce\x41\x14\xc5\xef\x1e\x38\x7e\x17\xbf\x7a\x90\xf8\xe4\x4a\x41\x10\x80\x21\xa5\x14\xcb\x56\x18\x76\x97\xac\x8a\x5f\x0e\xe8\x95\x94\x69\xca\xd2\xc2\xe9\x48\x4b\x7a\xe5\x54\x0e\xe8\xc9\x23\xf3\x94\xaa\xaa\xdc\x3c\x55\x10\xce\xed\x53\x37\x4f\xa1\x4e\x8b\x62\x07\x6b\x70\x42\x1a\x76\x4a\xb0\xd2\x28\xe8\xa3\x3c\x9e\xcb\xb4\x95\x5d\xd8\x1c\x20\x1d\xb4\x50\x24\xb2\x8b\x54\xf9\x85\x49\x12\x35\x8a\x42\x12\x03\x6e\x58\xc9\x88\x0f\x8d\xcd\x53\xf6\x54\x90\x0e\x3e\x97\xb0\xc3\x81\x3d\x6e\xa6\x17\x5d\x26\x66\x59\xd6\x49\x7a\xaf\xc7\x24\xba\xfd\xd2\xff\xf9\x58\x1d\x64\x23\x97\x44\x4a\x31\xa5\xfc\xfa\xa3\xad\x06\xce\x07\x25\x15\x6d\x8d\xa3\xf9\x48\xc9\x14\x46\x4d\x12\xcc\x66\x21\xed\x14\xb3\x59\xf8\x99\x12\xa6\xc4\x6e\xaf\x7c\xac\xba\x6f\xb4\xc6\x8f\x23\x01\xd1\x96\x00\xf2\x91\x86\x29\xf3\xd7\x1f\x6d\x0d\xb4\xf9\x40\x95\x88\x94\x4d\xb9\x4d\x79\xd6\x33\x16\xf0\x35\x65\xa9\xd2\x4c\xce\xd9\x4a\xe4\xd5\x37\x3a\x39\x67\xcb\x9c\x29\x33\xc2\xc8\x96\x27\x53\x1e\x53\x2c\x4f\xa6\x3c\x94\xb9\x98\xcf\x42\xf7\xb7\x8a\xf9\x94\xb2\x4c\x1f\x9f\x99\xa6\xac\x12\x26\x4a\x58\x2e\x53\xae\x5f\x7f\xf4\x82\x34\x8a\x65\x5e\x48\x39\x25\xca\x58\x2c\xf5\x42\x59\x63\x6c\x3e\x42\x99\x05\xc6\x22\xef\x85\x79\x2f\xac\xf7\x28\x41\xb7\x4c\x1d\x45\xdd\x3b\x49\xbe\xd8\x27\x49\x94\x6a\xf8\xd4\x20\x69\x90\xd9\x69\x21\x4e\xfa\x48\x25\xe9\x79\x48\x5a\xe8\x7d\xc9\x40\x33\x40\xa4\x34\x6a\x25\xad\x98\xb6\xea\x4c\x0d\x13\x63\x87\x58\x4f\xf9\xe6\x34\x6d\xfe\xfa\x63\x94\xc3\x17\x4f\x93\x4e\x92\x82\xa4\xcf\xa4\xef\xaf\x9d\x37\x6b\x41\x88\x71\x20\x8a\x64\xd7\x00\xbd\xf9\x9b\x99\x6e\x08\xc6\x61\xc1\x6c\x54\x90\xd7\xc7\x9d\x93\x4d\x08\x66\xd9\x0f\x5d\x26\xad\xd6\xe8\x4b\xf2\xa9\x58\x7a\xbe\xbc\x25\xa2\x95\x56\x2d\x03\xc3\x7f\xe9\xbc\x58\x7d\xb1\xbe\x24\xf1\x66\x53\x3a\x4b\x11\xf7\xea\x53\xcd\x3a\x2e\xad\x3b\xb2\x85\xb7\x85\xd2\x6a\x8e\xb1\xab\xd8\x7d\xaa\xf3\xd4\xa4\xa8\x5d\x49\x2c\x8c\xb2\x94\x57\x4e\xd3\x17\xd7\x38\xd6\xd7\x58\x99\xd3\xb4\x86\x0b\x7d\x8d\x8c\x39\x4d\x0b\xba\xd0\x0b\x45\x9f\x61\x0a\x43\x7b\x3e\x28\xe8\xb4\x8a\x93\x2a\xe6\x44\xb1\xa6\xb2\x99\xdd\xe7\x68\x8e\x39\x4c\x9b\xa6\x51\xd6\xdb\xfc\x96\xcd\x3b\x8a\xb2\xbf\x7d\x75\x61\x14\xc6\x92\x74\xdf\x26\xdd\xbe\x49\xd9\x1e\xcb\xef\xa0\x99\x0f\x5e\x7d\xac\xc1\x42\xaf\xe4\xff\x98\xff\x42\xaf\xd4\xfb\x35\xfb\x85\x71\x24\x93\xba\x49\x9d\x24\xde\x7b\x2d\xeb\xc2\x38\x18\x65\xd2\x6b\x9f\x7b\x91\x34\x9f\x55\xb6\x03\x83\x4e\x27\xcf\x8e\x7a\xa0\xd3\x55\xb3\x1d\x1a\x74\x3a\x49\xb6\x43\x83\x94\xd3\xf0\xbd\x6e\xda\x9a\x87\xad\x59\x45\xce\xc7\x30\x65\xfc\xfa\xa3\x87\xbf\x76\x9a\xe2\xf0\x34\x4d\xbb\x4c\x5b\x1d\x6e\x69\xfa\x9c\x1d\x41\x41\x6f\xf4\x91\xec\x18\x0a\xda\x32\xed\x73\xf6\x2b\x00\xeb\x5b\x1f\xa4\x99\xfd\x42\x6f\xbf\xad\x6d\x73\x4e\x8f\x2f\xac\x0f\x7a\x19\xc6\x39\x3b\x38\x82\x7e\xf8\x43\x9f\x29\x1f\xa5\x41\x20\x8e\x97\xa0\xd7\x46\x8a\x02\x71\x74\x34\x45\x71\x64\x2a\xef\x5b\xd3\x94\xf5\x35\x04\xe5\xcd\x96\x77\xa1\x07\x3f\xef\xd7\x97\xf3\xbd\x7e\xcc\xb7\x2c\xe2\xc2\x48\x13\x61\x64\xcb\xb8\xd0\x5b\x46\xf8\x85\x4e\x02\xfa\x61\x8a\x25\x5a\xe8\x8c\xce\xd9\x51\x15\xb4\x46\x46\xc5\xbc\x0b\xd5\xa7\xd4\xa1\x54\x43\xa9\xa2\x41\x72\x55\xf6\x0b\x1d\x15\x97\xfd\xae\x41\xe3\xeb\xcc\xcd\x26\xc3\xba\x40\x5b\xe5\xd6\x4c\x59\xdd\xe1\x30\xc5\xda\xae\x4f\xbf\x37\x44\xdb\xcd\xb9\xef\x5f\xe3\xa9\x61\xda\xb2\xfc\x7a\x50\xca\x61\x4e\x63\xe5\x14\xbc\xe7\xe7\x9a\xe7\xee\x7e\x94\xc0\xcf\x15\xac\x34\x6a\x33\x6d\x03\x3f\xe1\xc4\xc8\x95\xfd\x84\xc1\x4a\x43\xea\x53\x39\x2c\xfc\xdb\xbb\x0a\x79\xaa\x25\x27\x92\x38\xad\xf7\x79\xf8\x1c\xa5\x3b\x2d\xcb\x42\xaf\xe4\x76\xd9\x61\x2e\x3a\x4c\xe1\xc5\xd7\xcc\x16\xfa\x98\x3c\xf5\xfa\xd4\x82\xda\x53\x3b\x55\xfc\xfc\xa8\x8a\x1f\x15\x58\x03\xd3\xaa\x41\xf1\x5b\x00\x58\x72\x39\x02\xc9\x82\xf5\x2d\xac\xf2\x87\x6d\x14\xdd\x8f\x76\x15\x35\xd4\x7b\x31\x18\x24\x18\xa1\x63\x20\x8d\x58\x23\xe9\x38\x68\xdc\x98\x74\x93\xb8\xd6\x78\xa6\x0e\x0d\xdc\x0c\x39\x6e\x0c\xad\xc2\x30\x1a\x0e\x5e\xf1\x62\x04\x16\x46\xa1\x78\x2d\xc7\xc2\x60\x6a\x94\xab\x95\xaa\xc1\xd7\x8d\xce\xac\xd5\xa4\x85\x91\x6b\x22\xe9\x35\xe9\x25\x69\xfd\x66\xb5\x47\x81\x91\x19\x99\xaa\x1d\x08\x8c\xcc\x50\x58\xdb\x63\x12\x2f\xf2\x09\x55\x66\x6c\x62\xe4\xba\xc4\x5f\xd5\x30\x60\x64\x3e\xc6\xda\xcd\x7e\x89\x67\x64\x7a\x6c\x1d\x26\x2d\x91\x8c\x4c\xbb\xd5\x31\x4d\x9a\xbc\x48\x21\x86\x85\x18\x14\x82\xee\x58\xc7\x65\x12\xda\x8a\x21\xac\x32\x59\x11\x23\x87\xd9\x5b\xd4\x85\x91\xc3\xec\xad\xf6\xa0\xf4\x88\xb5\x0e\x4b\x3f\x28\x3d\x96\x60\x55\x61\xd5\xd5\xdb\x47\xe6\x93\xa8\x76\x44\xd0\x19\x92\xea\x69\xe1\x17\x3a\xba\xbd\x9e\xd9\x94\xcc\x60\xef\x6b\x96\x1d\xa7\x57\xde\x3f\x78\x5a\x78\xdc\x5e\x39\xa3\x46\xeb\xe5\xab\x17\x6a\x94\xc2\x5f\xc5\x14\xd4\x28\x65\xb7\x4f\x80\xf5\x7d\x90\x3f\xce\x27\x31\x8e\xe4\x63\x0a\x62\xa1\x63\x31\xd7\x4b\x39\x2c\xf4\x82\xb0\x6e\x6b\x73\xdb\xf1\x27\x62\xbe\xad\xcf\x8d\xf9\x82\x0a\xad\x6a\x55\xd0\x33\xe5\xbc\xfd\xbd\x1b\xd7\x5f\x23\xc5\x06\xbb\x69\x30\x4b\x70\x5b\xc1\x85\x9e\x29\x81\xba\x18\xa4\xa3\x1e\x96\xc1\xa6\x58\xe8\xa8\x9c\x7a\xdb\x12\x0b\xdd\xbe\xfc\x2a\x96\x97\x3e\xc3\x27\x55\x5f\xdb\x66\x61\x64\x3e\xc6\xfa\x56\x93\x68\x2e\x46\x84\xaa\xc2\x06\x29\xef\xce\xec\xf7\x0f\xb4\x25\x9b\x9f\x4a\x3b\xc8\x9e\x06\x6b\xea\x59\xd0\x73\x26\xa5\x99\x82\x10\x12\x29\xaf\x29\x2f\x86\xde\x92\x42\x73\x84\x00\x3f\xc7\xa9\xe6\x3c\xa0\x25\xba\x1f\x03\x7b\x53\xd7\x81\xe1\xd8\xd2\x54\x76\x60\x64\x7f\x31\x2c\x56\xe0\xbd\x24\xfb\x30\xfb\x85\x8e\xe5\xda\x1c\x6c\xc0\xc8\x29\xfd\xb6\xe6\x6d\x7e\xde\x60\x1c\xa9\x93\x64\xb6\xcd\x0e\x4b\x71\x5a\x31\x49\x91\x14\x92\xc2\xa4\xe0\xa9\x41\x92\x52\x6a\x48\x9c\x11\xab\xa9\x7d\xc0\xc8\x18\x3f\xad\x75\x93\xec\x9c\x54\x04\xdf\x51\x6e\x6d\x6a\x8e\x98\xd9\x69\xda\xd2\xc9\xdd\xca\x29\xb9\xe6\x6c\x04\x33\xad\x39\xee\x80\xde\xcd\x5e\xc9\x35\xda\x73\x95\xb4\x6b\x48\x75\xdd\x0c\x89\x79\x55\xd7\x42\xe9\xce\xcf\x1c\x18\x7a\xa5\xac\x60\xf5\x8e\x55\xf1\xde\x4d\xeb\x34\x0d\x0a\xa9\xfb\x85\x83\xa1\x01\xf9\xe2\x25\x11\x29\x9c\x44\xbc\xa3\x9a\x56\x99\x49\x56\x9f\xeb\xa6\x75\x1c\x79\xfb\xb9\x69\xda\xe4\xdd\xfd\xdc\x65\xda\xc5\x73\x7c\x3e\xaf\x23\xd9\xbb\x86\xad\x54\x06\x9f\xf0\xeb\xb8\x05\x22\xf3\x71\xbe\x8e\x5b\x20\x45\x50\xd9\x57\xfb\x1c\x44\x0b\x93\xb2\x49\xf9\xd7\x1f\x45\x63\xe2\xd5\x42\x07\xa1\x89\xfe\x3a\xe2\x81\xf0\xe3\x78\x55\xf9\x20\xd5\x82\xe5\xf8\xaa\xf2\x41\x8a\xca\xb0\xf4\xaa\xf2\xc1\xaa\xbe\xbf\x30\x4c\xc3\x9f\x5b\x9b\xef\x5a\xfd\x85\x8a\x87\x21\xbf\xd3\xda\x2f\x54\xa7\x39\xef\xb4\x56\x0b\xa5\x31\xfe\xbf\x0e\xbd\xa0\xd8\xd0\xaf\x2d\xf3\x9e\xb8\x32\x9b\x6f\x9e\xd6\x8a\xb5\x8d\xd0\x00\x7c\x4f\xab\xc5\xea\x46\xc5\x99\x97\xdf\xd3\x3a\x9c\xd4\x01\xcf\x7f\x7e\x4f\xcb\x7b\x52\xde\x3e\xa8\xd7\x69\x79\xf1\xcc\x14\xc7\xfc\xd7\xe1\x1c\xa4\x32\x19\x82\x5f\x87\x73\x90\x62\x4e\x9f\xb3\x09\x17\x96\xd1\x46\xd2\x63\xd2\xc3\x63\xf6\x88\xd3\x56\x65\x29\xa3\x4c\x3e\xfe\xf7\xb2\x6a\x0b\xa9\x1e\xf4\xfd\x57\xed\x00\xfe\xfa\x13\xea\x07\x90\x42\x4b\xeb\x55\x1b\x80\x14\x07\xf3\xec\xf7\xb2\x1a\x2c\x3d\xc4\xb1\xdf\xb5\x78\x97\x2e\x2f\x94\xb8\xde\x18\x91\xca\xee\x3b\x97\xe5\x43\x4d\x44\xc2\x8a\x7a\x55\x13\x20\x4d\x54\xd5\x7b\x5b\xbc\x85\x54\x75\xaf\xbc\xb7\xc5\x5b\x48\x65\xe0\x2a\x79\x9d\xb7\x81\xdc\x18\xba\x5f\x35\xcc\xeb\x62\x45\x1b\x48\xe0\x56\xc8\x37\x42\x1e\x36\x9a\x0a\x04\xa4\x8a\x27\x35\xbf\xb7\x25\xbe\x5d\x1a\x1a\xfe\xac\xdd\x07\xbb\xa9\x66\xbb\xfb\x63\x89\x17\xca\x61\x3b\x3a\xe7\x03\xa9\xaa\x58\xde\xc7\xa2\xb0\x4a\xf2\xd7\x57\x15\xe8\xd3\x15\x8a\xcf\xd9\x57\x16\xd6\xa0\x48\x92\x25\x79\xfc\x62\x95\xe7\xa3\xec\x58\x3e\x29\xc3\xee\xf8\x58\x3a\x16\x50\xca\x60\x46\xf2\xaa\xcf\x40\x6a\xca\xce\x79\x24\x28\xc5\xce\xe8\x3c\x12\xa4\x82\x4e\x7d\x5f\xfb\xdd\x42\x76\x06\xf4\xbe\x96\xe3\xc5\x2b\x1e\x3e\xe5\x4f\x2e\x94\xc9\x1c\xe4\xfd\xac\xfc\x42\x6a\x68\xbd\x4f\x45\xf8\x69\x08\xd3\xe7\x3e\x7c\x84\x62\xe8\x5c\xf8\x1c\x5e\x41\xe0\x49\xcc\x9f\x13\x55\x10\x07\x1d\xe4\xc3\x91\x2b\x52\x61\xf4\xfa\x54\xaa\x20\x12\xda\xff\x53\xab\x82\x92\xbb\x79\x75\x93\xfa\x7a\x2a\x59\x88\x61\xd2\x92\x75\x65\x58\xfa\xf4\xe2\x80\xc8\x38\xb8\x3e\xe7\xb8\xa0\x38\x74\x7f\x4e\x71\x41\x29\xd3\x5f\xbc\x4d\xba\xd7\x8b\xc9\xbc\x1e\x93\x9e\x95\x94\x2d\xfd\x6b\x12\x03\xed\x2e\xfd\x67\xd2\xb7\x92\x90\xea\xa7\x0f\x12\x44\xa6\x1d\x3f\xa7\xd0\xa0\xa4\xe6\x53\xca\x6b\xa1\x4c\x06\xd0\xcf\x39\x34\x88\x3c\xe3\xb7\xd5\xf6\xa7\x9f\xf2\x4b\x4b\x76\xe5\x30\x13\x65\xb7\x10\xe5\xa0\xd8\x49\xd9\x2d\x64\xbd\x43\x9f\xae\x4a\x50\xf4\x04\x7e\x49\xd9\x2d\x44\x41\x21\x7f\xaa\x47\x10\x25\x9b\xbd\xb2\x5b\x88\x92\x7d\x51\xd9\x2d\x94\x1e\xbe\xa8\xec\x16\xd2\x64\xe2\xfc\x69\xdd\x80\x88\x6a\x92\xb2\x5b\x28\x09\x95\xf7\x39\x95\x07\xdb\xc9\xf3\xe9\x39\xfb\xf2\xea\x58\x15\x13\xfc\xcb\x0a\x6a\xa1\x8c\x6e\x92\x92\x58\xc8\x83\x69\xe4\xa7\x13\x00\xe4\xb0\xb5\x74\xb0\x81\xbc\xfb\x87\x8e\x01\x10\x8d\x51\xf6\xcb\x0a\x27\xf3\x11\x33\x8a\x7d\x3a\x0b\x40\x8e\x6a\xb9\x14\xce\xc2\x56\xa7\x9f\xee\x02\x10\xcd\x96\xcf\x0a\x67\x21\x1c\xd6\x3e\x5d\x08\x20\xa7\x6e\x51\x15\xce\x42\x74\x65\x9f\x15\xce\x42\x9a\xf6\x6e\xfd\xb9\x20\x4d\x6c\xad\xaf\x28\x1c\x56\x09\xbb\xc2\xd1\xc7\x0b\x52\xb5\x2b\x17\xe5\x55\xfe\x4d\xa7\x7f\x7a\x28\x40\xe8\x0d\xfa\x74\x51\x80\xd0\x6b\xf0\x15\xe5\xb5\x10\x3a\x09\xbe\xa2\xbc\x16\x42\x4f\xc6\x57\x94\xd7\x42\x6a\x8c\x97\x9f\x6e\x65\x90\xa2\xda\x75\x8a\x02\x5b\x88\x3e\xcc\x4c\x81\x2d\x44\x1f\xbe\xa9\xc0\x16\x72\x55\xd2\xfa\x45\x40\x4c\xec\x8a\x4f\xf7\x33\x48\x73\x67\xaf\xc0\x16\x72\x61\xfa\xf1\x69\x2b\x83\xed\x46\xfc\x42\x81\x2d\xd4\xc3\xf6\xd0\x7e\x06\xa5\x3a\x1c\xe8\x77\x01\x25\xf9\x55\xeb\xde\x06\xa9\x33\x5f\xfc\x42\x81\x2d\x14\x17\x05\xbe\x50\x60\x0b\xf5\x18\x66\xaf\xc0\x16\x4a\x46\x11\x7d\xa1\xc0\x16\x6a\x2a\xfe\xa2\x02\xc3\x57\x3e\x9a\xd9\x2b\xaf\x85\x32\x92\x2f\x2a\xaf\x85\x34\xaa\xe5\x52\x5e\x81\x35\xa1\x24\x42\x79\x2d\xd4\x82\x72\xf9\x42\x79\x2d\x54\x96\xb9\xf3\x17\xca\x6b\xa1\x16\x1b\x52\x57\x00\x28\xc1\x5c\xfd\xab\xca\x6b\xa1\x0c\x87\x13\x1d\x50\x20\xb3\x0e\x9c\x3f\xfd\xcf\xa0\xea\xc2\xff\xaa\xf2\xaa\xe8\xf3\xc3\xa7\x94\x57\xc5\x16\xb6\x8e\x1a\xdb\xa0\xb0\x8c\x94\xbf\xaa\xbc\x16\x4a\xb5\x67\x56\xe5\xb5\x50\x9b\xa3\x42\x55\x5e\x0b\xb5\x1d\xbe\xa8\xbc\x16\x4a\xf3\xf3\xd0\x09\x0e\x96\xb5\x4c\x92\xf2\x5a\x48\x4d\xd5\x55\x95\xd7\x42\x1a\xc3\x72\x29\xaf\x4a\xff\xda\xbf\xa8\xbc\x16\x92\x33\xe5\xcf\x79\x16\x48\xba\x02\x3e\x27\x52\x20\x55\x5f\x74\x22\x05\x52\x65\x46\xff\x39\x91\x02\xb9\x55\xf3\x52\x5e\x0b\x65\x60\x89\x7d\x4e\xa4\x40\x61\xad\x31\x7f\x4e\xa4\x40\xd1\x7f\xf3\x39\x91\x02\x29\xb4\x1b\x3e\x67\x52\xa0\xee\x4f\xad\x29\xb0\x85\xb2\x9b\xdb\xb9\x15\x28\x61\x6f\x6a\x0a\x6c\x21\xa7\x6e\xc1\x14\xd8\x42\x19\x8e\x4d\x4e\xb7\x40\xe9\xbb\x14\x0a\x6c\xa1\x8c\xe2\x53\x0a\x6c\x21\x37\xa6\x20\x9f\x9e\x1f\xb0\x4d\xdf\x4f\xcf\x0f\x48\x31\x99\x54\x7e\x3a\x22\x41\x2a\x0e\x3b\x5d\x89\xe1\x9b\x74\x1a\xf5\xe9\x3f\x03\x65\x5a\xfc\xae\xc4\x16\xf2\xb4\x71\x9d\xba\x81\xb2\x3b\x4a\x57\x62\x0b\x79\x6b\xf6\xae\xc0\x16\x52\x65\x66\xf1\x75\x05\xb6\xd0\x96\xce\xfe\x6d\x6d\xec\x32\x09\x28\x53\x6d\xdc\x95\x67\xd7\x9d\xe3\x4f\x29\xcf\x85\x38\x1c\x35\xba\xf2\x34\x60\x61\x27\x29\x4f\xa3\xb3\x98\x10\x7c\x2e\xb9\x80\xac\x09\xfa\xb9\x4e\x06\xda\xce\x5e\xb7\x19\x28\x79\x90\x97\x3e\x5c\x90\xab\xda\xd8\xa9\x2a\xc8\x59\x09\x0f\xc5\xb9\x90\xb3\xfd\xdb\xc9\x2b\x48\xb9\x50\x08\xbd\xbf\x20\x37\x6d\x3a\xa7\xb3\x20\xeb\xf7\xf9\xf4\x63\x82\xbc\xbf\x74\x27\xb8\x20\x1f\xbb\x5c\xca\x6b\x21\xef\x2f\xdd\x29\x2f\x68\x45\x6d\xec\x8c\x17\xb4\xdd\xe5\xf5\xdd\x81\x3c\x1d\x65\x9d\x03\x83\x34\x1c\xd7\x9d\x03\x83\x7c\x98\x97\x53\x60\x90\x9c\x16\x7d\x53\x79\x2d\xb4\x66\x1d\x9d\x15\x83\xb4\x6d\x09\x67\xc5\x20\x85\x2a\xce\x59\x31\x48\x53\x5b\xc2\x59\x31\xc8\x5b\x2b\x39\x29\x06\x25\x4d\x9f\x52\x5e\x0b\xcd\x25\x96\xcf\x29\x31\x68\xba\xd9\x3f\x67\xc4\x60\x4d\xaf\x48\x52\x5e\x0b\xd9\xe9\xd0\xe7\x24\x19\xe4\xb1\x0b\xa1\xbc\x16\xf2\xc8\xbe\xa8\xbc\x16\x72\xc5\x3f\xf2\xe9\x4f\x07\xb9\xf8\x59\x38\xbb\x06\xd9\xe5\xc1\xcf\xd9\x35\xc8\x53\x15\xe4\xec\x1a\xac\x89\x15\x5d\x47\xdf\x26\x28\xc3\xfc\x9d\x70\x83\xb2\xed\x62\xe7\xdb\xa0\x84\xa6\xa3\xde\x7a\x50\xa6\x43\x97\x33\x70\x90\x5c\x02\xfb\x4e\x05\xb6\xb0\xe7\x68\x9f\x73\x72\x50\x86\x1d\xdf\x29\x39\x28\x55\xe5\xe5\x8c\x1c\xf4\xe4\xd0\xe2\x84\x1c\xf4\xa4\x49\xe0\x7c\x1c\xa4\xbc\xb3\x57\x60\x0b\xa3\x39\x99\x71\x3a\x0e\x4a\xf8\xc5\x9c\x0a\x6c\xa1\x0c\x27\x46\x97\x02\xbb\x98\x14\xfb\x25\x3b\x67\x07\x3d\x39\x26\x39\x65\x07\x3d\xe1\xb4\xf8\x9c\xb1\x83\xa4\x4b\xff\xbb\x94\xd7\x42\x69\xaa\xde\x4b\x79\x2d\x94\xba\xb3\x57\x5e\x17\x1a\x41\xcd\xee\x4c\x1f\xe4\xaa\xec\x2f\xe5\x75\xf1\x41\xda\xcb\x9d\xfb\x83\x7c\xec\x24\xe5\xb5\x50\xf6\xec\xec\x52\x5e\x0b\xd9\x15\x89\x4f\x07\x01\xc8\x87\x43\xbd\xfe\x01\xd0\xb3\x43\xbd\xee\x01\xd0\xf3\x34\x2f\xe5\x75\xeb\x26\xa7\x8e\x3a\x0c\xc0\x9e\xe0\x7e\x3a\x0c\x40\x6a\xda\x84\xfa\x0b\x40\x39\x34\xc8\x75\x17\x80\x1e\xfb\x45\x85\x73\x1b\x12\x84\xbc\xf4\x20\x80\x1e\xd9\xbc\x14\xce\xc2\x76\xdc\x7c\xb7\xc2\xb9\x09\xe0\x71\x02\xfd\xe9\xb9\x06\xa9\xf9\x91\xea\x7a\x00\xd9\x25\xfc\x4f\x67\x36\xe8\xe1\x1c\x40\x67\x04\xe8\xa1\xf1\xa5\x2f\x02\x94\x3d\xc3\xd5\xbf\x0d\xd2\xd4\x26\xb8\xb7\x74\xd6\xe7\xe7\xea\xe7\xe7\xa2\x0e\x28\xe1\x17\xa9\xbf\xe2\x63\x41\x3a\xaa\x4f\x29\x9d\x85\x32\xb5\xa1\x5c\xa4\xfe\x9e\xca\x32\x4f\xfe\xe5\x77\xc5\x08\xe2\x42\xf4\x0c\xb1\x32\xc5\xe8\x19\x81\xd5\x5e\x0e\x66\xe7\x62\x94\x35\x9a\x94\x83\xd9\x79\x39\xd6\xbc\xbb\xad\x9f\x2b\x07\xd3\xee\x42\x40\x0d\x83\x50\x31\xa2\x46\xf4\x42\x46\xc9\xac\x13\xab\x86\x07\x29\x66\x4d\xfc\xcc\xea\x20\xc5\x48\x18\xc1\xfa\x67\x21\x28\x66\xa3\x37\x7f\x9e\x29\xa2\xe8\xed\x98\xbf\xa9\x84\x8b\xc1\x33\x62\x60\xe0\x17\xe3\x60\x44\xca\x39\x99\x66\x09\x8d\xa2\x48\xfe\x18\xb3\x1d\x31\x0e\x2b\xcb\x74\xa1\x1c\x6b\xdc\x1f\x41\x65\xa7\x15\x59\xe8\xd3\xfc\x19\x84\xcb\x31\xd1\x50\x88\x76\x5a\x93\x35\xba\xb6\x4a\xca\x69\x46\x5f\xfb\xf5\xc7\xcc\xd4\x96\x40\xd7\x72\x7c\x84\x97\x24\x1e\xfa\xcc\xe8\x43\xfb\x91\xf5\xa7\x90\x3e\x84\x84\x20\x3f\xb3\xfe\xc8\x3a\xfd\xf2\xbb\xe2\xf2\x77\x61\x21\x3b\x1d\x44\xfe\x16\x97\xb2\x4b\x5e\xb3\xc7\x81\xda\x29\x59\x29\x80\x81\xbb\xae\x64\x66\x8f\x25\x17\x96\x92\x93\x4f\x15\x93\x56\x85\x99\xf9\x14\x17\xb3\xc5\x20\xf0\xb4\xb8\x9a\x2d\x06\x31\xb9\x25\x2b\x3c\x30\x08\x46\x2d\x99\xa9\xa2\x18\x4c\xe6\x4b\x66\xaa\x28\x06\xa1\xc4\x25\x33\x55\x14\xbd\xe5\x83\x24\x4b\xbf\x30\x92\x95\x64\xa6\x28\x06\xe1\xa8\xc5\x05\x74\x31\x08\x93\x2e\xae\xa0\x8b\x41\x7c\x73\xc9\xcc\x14\xc5\x20\x90\xb6\x64\x66\x8a\x62\x10\x6d\x5e\x72\x28\x9c\x40\x38\xd5\x24\x85\x13\x3a\xf8\x2b\x49\xd9\xa4\xcc\x8b\x26\x29\xaf\x40\x5e\xb4\x59\x1e\xe6\x85\x2b\xff\x40\x09\x94\x3c\xac\x11\xfe\xf8\xc3\x2f\x32\x4f\x9f\xc3\x18\x39\xa2\xf3\xdc\xf4\x47\x17\x46\xf2\xd5\xe9\x8f\x4e\x7e\x94\x3e\x90\xa7\x3f\x4a\xaf\x4c\xcd\xcc\x6c\xa4\x49\x23\x55\xaa\x39\x6d\x24\x7c\xf4\x47\x4c\x8a\x3b\x6d\xa5\x49\x2b\x35\x93\x6c\x25\x5c\xf4\x47\x4c\x73\xb3\x99\x26\xcd\x44\x27\xcf\xd3\x66\x9a\x2c\xe5\x65\x3a\xc6\xb4\x52\x0b\xe9\x88\x81\xb8\xfd\x16\xc0\x4a\xf3\x55\x1b\x6a\xde\xfe\x02\x2d\xe5\x17\x02\x46\x49\xbe\x6a\x4b\x4d\x5a\x6a\x5a\x77\x5b\x6a\x6e\xb1\xf1\xd8\xa9\xd8\x8c\x93\x8c\x41\x55\x4f\x65\x84\xcb\xff\x08\xdf\x3d\x15\x92\xdb\x19\x62\x22\xb8\x53\x29\x2d\xb3\xa1\x37\xbe\xb9\x7c\x5a\xaf\x85\xc1\x96\x81\x92\x4f\xeb\x75\xda\xfd\xe8\xca\xa7\xd5\x3a\xe9\x7e\xd5\x72\x58\xab\x93\xee\xd7\xcc\xcb\x4a\x61\x36\xb0\x45\xa1\xe4\xd3\x4a\x9d\x54\xaa\x99\xbd\x95\x3a\xe9\x7e\x0c\xbc\xf9\xb2\x4e\x97\xdd\x8f\x26\x78\x4c\x5a\xdf\x79\x3a\x88\x18\x2e\x86\x24\x88\x71\xf0\xd9\x19\x3c\x5b\x0c\x9e\x4d\xd8\x5e\xc5\xf0\x59\x31\x0e\x3e\x32\x03\x68\xc5\x7a\xac\x91\x56\x4d\xe3\x23\x1e\xfe\x40\x33\xa9\xf9\x58\x27\xad\x9b\xc6\x16\x86\xb1\x2c\xf7\x52\xd4\x01\xc6\xda\xa6\x41\xbb\x14\x7c\xaf\x62\x3d\x67\x49\x4e\xd3\x4e\xd3\x2c\xca\x65\xda\x65\x9a\x45\xb9\x4d\xbb\x4d\xb3\x66\x8f\x69\x0f\x81\x4f\x95\x24\x84\x59\x0c\xd4\x1c\x74\xb8\xa2\x62\x01\xbd\x9a\x5b\xb2\x62\x0b\xe3\x60\xc0\x2a\xc9\x8a\x25\x86\xf6\xe2\x8b\xd6\x2b\x59\xaf\xe9\x9b\xd6\x2b\x11\xa4\xc5\xc8\x50\x92\xd5\x4a\x56\x8b\xa1\xb4\x24\xab\x85\x7b\x33\xcd\xc3\xe7\x76\xd9\x5c\xf7\xf5\x47\x69\xe8\x92\x93\x8f\x21\x11\x82\xfe\xc4\x38\x18\x2f\x4a\xb6\xb9\xb2\xcd\x45\x3b\x64\x2b\x95\xc3\x37\x69\x87\x6c\xad\x72\x35\x8d\x3a\x64\xab\xb5\xd0\xab\x55\xc8\x56\x6b\xa1\x57\x7a\xbd\x01\xca\xa5\xa0\x20\xd2\x4c\xb4\x82\x0a\x02\x0c\x82\x86\x4b\xc9\x36\x0c\xa1\x86\xd5\x8a\x66\xdb\x20\x5b\xd1\x44\x23\x64\x2b\x8a\x36\xd5\x0d\x59\x8a\x8a\x04\x8c\x23\xfe\x06\x35\x6d\x88\xb4\x48\x7a\xf0\x96\xc5\x69\xda\x12\x44\xc9\x54\x5a\xdd\x53\x8a\x95\xce\x88\x50\x4d\x03\x3a\xfe\xba\x52\xd4\x34\x20\x25\x5c\x84\xa5\xa8\x6a\xc0\x4a\xf3\x39\x1b\xb3\x10\x71\x87\x32\x28\xea\x9a\x62\x00\xec\xc4\x32\x2a\x2a\x1b\x30\x8e\xb0\x20\xf6\x50\x62\x60\xd3\xcc\xbe\xaa\x74\x8a\xd2\x29\x16\x4e\xe9\x84\xd2\x29\x3c\xa7\x26\x01\x2b\x0d\x29\xaa\x4a\xc0\x38\xc2\x24\xab\x1f\xcd\xc7\x68\xe0\xb0\x62\xc1\x2a\x39\x7a\xa9\x84\xf5\x0a\xeb\x65\x7f\x09\xeb\x15\x44\x76\x0e\x73\xb3\x5e\x0b\xbd\x4e\x33\xb3\x5a\x61\x1d\xd0\x98\x25\xac\x43\xf0\x95\xf9\xe1\xc5\xae\xc2\x4b\x33\x98\x64\x4f\xae\xd6\x4a\xc1\x55\x6b\x55\x89\x60\x9f\x14\xa3\x5a\xa9\x6a\xa3\x5a\xdc\x6a\xad\xd8\x46\x92\x26\x03\x6c\xa9\xb6\x6a\xb5\x7b\xfb\xb1\x54\xbb\x77\xb5\xf6\x0c\x8b\xa5\x5a\xfb\x4a\xed\x2d\x6f\xf7\x57\x71\x17\xa5\x81\x86\x2c\xdd\x7a\x11\x9e\x8a\xf9\x5e\x4a\xb7\xb9\x3a\x81\x7b\x3b\xc9\x9a\x76\xac\xcb\x4c\x77\xe8\xd6\xb4\x1b\xb9\x67\x5e\xd6\x94\xb8\xd6\xc3\xd2\x0e\x4b\x66\x9c\x56\xe1\xa9\x61\x1b\x10\x88\x94\xec\x82\xc3\xec\x59\x98\x4f\xa3\xf9\xa6\xf9\x0f\xad\x57\x92\x54\xfa\xc5\x08\x2f\xbb\x82\x3a\x19\x8c\xa3\xd0\xdb\xd4\xc9\x60\x1c\xf6\x7a\x55\x32\x18\x87\xfd\x4f\x5d\x0b\xd6\x4f\x9a\x99\x15\x9f\x54\xe9\xa0\xb0\x2a\x51\x30\x92\x23\xa4\x3a\x14\x8c\x03\x9b\xab\x68\xa0\x82\xde\x1c\x71\xd4\xaa\xc5\x90\x25\xc5\xa3\x52\x05\x83\x68\xbd\x52\xd4\xa9\xe5\x64\xb4\x55\xae\xa7\x35\x3a\xb1\x32\xec\x54\x6a\x38\x30\x0e\x3f\xd0\xcb\x5f\xbc\x18\x34\x32\x3d\xf4\xf2\x17\x2f\x7f\xd1\x17\xfd\xc5\xcb\xf0\x6a\x7e\xf1\xf6\xa9\x5b\x9d\x87\xb1\x53\x6e\x4b\xc1\x7c\x10\x37\x5f\x29\xb7\x12\xbb\x31\x62\xb0\x3a\xca\xad\xc4\x6e\x3e\x6c\x3f\xd8\x5b\x81\xdd\xa8\x71\x35\xd4\x6d\x53\xde\xf4\x94\x44\xbd\x1f\xb3\x7f\x08\x73\xf1\xab\x7e\x6c\xa3\x47\x1d\xd8\x28\xff\xe3\x47\xf7\xa8\xef\xe8\xd8\xc1\xc2\xa8\x48\x85\xf8\xcc\x12\xaa\x5e\x90\x6a\x41\x8e\xe1\xc0\x1d\x6e\x2c\x99\x69\x89\xc8\x78\x40\x91\x2a\x1b\x6f\x4a\xb0\x67\x43\xa4\xca\xa4\xb6\x54\x35\x0d\x48\xc5\x9e\x50\x1d\x89\xc0\x8e\x1e\x29\xdd\x4e\xda\x77\xf4\x08\x1f\x68\x27\x8c\x4a\xa4\x60\x73\x61\x39\x3f\x84\x0e\xd6\x6f\x2c\x41\x5d\x6a\x2e\x90\x2a\xeb\x69\xe5\xb2\x7c\x20\xb9\x82\x5c\x5e\x4d\x5d\xb0\xde\x5d\x75\x7b\x95\x0b\x58\xef\xae\x7a\xe8\x17\x11\x29\x30\x8d\x82\x79\xd6\xc6\x7a\xae\xfd\xf2\xbb\x30\x7e\x5f\xac\xb4\xf9\xcb\xef\x22\xe3\x2c\x17\x29\x88\xe5\x09\x8d\x62\xb1\x64\x75\xfc\xf2\xbb\x08\xec\x0a\xb1\xca\xb2\x9e\x0b\x06\x24\x91\x82\x48\xb9\xa8\x78\x6e\xc5\xfa\x8d\x95\x66\x18\x93\x58\x69\x63\xa5\x61\xcd\x89\xf5\x1b\xe9\x97\xdf\xc5\xc5\x82\xbc\x58\xcf\xad\xdf\x7d\x31\xd4\x84\x4b\xe6\xf1\x62\xa8\x89\x72\xec\xa4\x62\x12\x4e\xd8\x35\xbd\x8f\x17\x3b\x2d\x5e\x3a\x46\xe4\xa5\xd1\xe3\xc5\x00\x13\x05\x8f\x58\xbc\xd8\x5f\x22\xd7\x64\x66\xd3\xa4\x89\xe7\xde\xa7\x4e\x93\xf0\xaf\x2e\x83\x21\x5e\x8c\x2f\x91\x4a\xf8\xe2\x63\xd2\xf3\xeb\x8f\x52\x73\xfb\x4d\xdd\x1d\x2f\x66\x98\x28\x18\x84\xf1\x26\x2b\xcc\x9a\x37\x81\xe4\xf1\x26\x2b\xcc\xc6\x1b\x16\xcb\xe3\x4d\xd6\x8e\x6d\x35\x31\x28\x23\xb6\x9a\x08\x76\x1b\xc4\x8b\xad\x26\x72\x2b\x26\x29\x82\x85\x28\xc9\xec\x15\x41\x62\xd1\x71\xd9\xc2\xf1\x26\x45\x90\xf0\x00\x4e\xb3\xb7\xa8\x0b\xb9\xee\x17\x3f\x93\x3e\x45\xcc\x9b\xd9\xb2\x2e\x94\xa9\xf0\xb2\xa5\xc8\xae\x1b\x50\x8a\xec\x4f\x2e\x18\xf5\x10\x6f\x56\xc4\x2c\x02\x1f\x93\x4a\x66\x45\x9c\x2f\xf3\x47\xec\xac\x02\x8b\x1d\x56\x14\x6f\x56\xee\x59\x27\x36\x4d\x91\x2d\x1a\xa6\x55\x14\x3b\x49\xb1\x68\x0b\x71\x58\x29\x6c\x27\x91\xd8\x67\x1c\x6f\xb1\xb4\x2c\xd4\x12\x7d\x11\x6f\x51\x66\xc5\xf1\xc4\x66\x2a\xd6\x00\x9b\x08\xff\x61\xbc\x45\xa1\x2d\x64\xec\x9a\x78\x8b\x35\x58\xc8\xe8\xd3\x78\x8b\x15\x28\x2c\x5a\xd8\x2d\xcb\x2e\xec\xf7\x33\xba\x23\xde\xb0\x17\xb8\x43\xb5\x28\xb4\xb0\xb0\x61\x5c\x08\x85\x0d\xfb\x3d\xab\xab\x84\x28\xc4\x1b\xf6\x0c\x56\x57\x83\xcd\x36\xf1\x86\x5d\x23\xdc\xbd\x8c\x1c\xc3\xf2\x63\xfb\x44\xb2\xb4\x61\x69\x83\x68\x0e\x7b\x79\x28\xda\x85\x42\x04\x5f\xbc\x61\x47\x08\x1c\x6e\x76\x84\xb0\x02\x41\x34\x99\xf2\xa9\xfe\xe4\x42\x0b\xdb\xa4\x2a\xd9\xaa\x64\xc9\xab\x2a\xd9\x8a\x7f\x35\x51\xcb\x6a\xc1\x16\x22\xd9\x70\x55\xc1\xd6\xf9\x33\xd4\x25\xde\x6a\x6f\xa9\xe7\x5f\x03\x04\xe3\xad\x96\x95\xc5\xc7\x6e\xcf\xa8\x96\xd5\xc5\xc7\x4a\x25\xab\x65\xad\xb8\x9a\x33\xa5\x68\x0a\x76\x21\x9a\x95\xec\xf6\x95\x4e\x37\x76\x24\xea\xca\xba\xe3\x87\x1f\xfc\x62\x37\xfb\xce\x20\x66\x21\xba\xd9\xf7\xcf\x82\xf1\x93\xc3\xc6\x5c\x30\x12\x28\xde\xe1\x4f\x2e\x04\x47\x04\x84\xf1\x8d\xc2\xe8\x9d\x78\x87\x12\x5b\x28\xd3\xcf\x64\x28\x9e\x81\xbb\xbe\x53\xd6\xa1\x78\x58\x0f\xea\xf6\xeb\xa1\x78\x16\x22\xd9\x07\x86\x8d\xbb\x90\x89\xf8\x0e\x23\x20\x45\xd9\xa3\xe6\x50\x86\xa8\xb5\xd8\x3d\x6a\x58\x4b\x82\x22\x93\x49\x53\xf1\x4c\x46\x24\x87\x8c\x69\x8d\x58\xea\xc1\xe4\x0e\xa3\x1d\x45\x9a\xc5\xa7\xac\xe4\x74\x16\x42\x29\xa6\x95\x34\xd8\x11\x5f\x69\x18\xd8\x28\xe2\xb0\x43\x4d\x6b\xb9\x10\x87\x1d\x6a\x5a\x25\x96\x6c\x8e\x41\xbf\x98\x56\x09\x07\x49\xca\x54\x69\x5a\xfc\x65\xa1\x45\x32\xfb\xd3\xe2\x2f\x18\x0d\x17\xc4\x38\x6e\x44\xb2\x57\x9f\x16\x9f\xa8\x46\xfc\x93\xf1\x9e\x16\xff\xb4\xf8\x64\x7f\x5a\xfc\x85\xd2\x95\xeb\x69\xe9\x09\x73\x6c\x83\x2e\x70\x5a\x54\x56\x46\xda\x40\x86\xa7\xa2\x5e\x28\x47\xa7\x42\xe7\x2e\xea\x4b\x7b\x53\xae\xcb\xbe\x73\x51\x7a\xbf\x90\xcb\x8e\xb8\x10\xac\xc5\xc4\x7b\x59\x88\x85\x20\x32\x30\x0c\x48\x8c\x1d\x90\xb8\xbf\xe6\xcb\x6e\x71\x9d\x3f\xe3\xbc\xe2\xbd\x2c\xd8\x75\xfd\x35\xaa\x36\x08\x44\xdc\xc8\xc5\x62\xdc\x4a\x6c\x21\x57\xa5\x7f\x2b\xb1\x5b\x89\x91\xd9\xad\xc4\x16\x82\x43\x1a\xc2\xc8\x43\x11\x6c\x66\x8a\xf7\xf6\xa3\x5f\x48\xad\x9a\x97\x05\x73\x41\xa0\xf9\xa2\x05\xbb\x2f\x83\x36\x49\x52\x62\x0b\xc1\x66\x90\x78\x6f\x25\x76\xd3\x37\xfd\xb4\x6e\xbf\xc0\x85\x52\x3b\x79\x3d\x56\xe8\x51\x1b\xa4\xe3\x6f\xd0\xcc\x8f\x55\x59\xc8\xc9\x61\xfa\xb1\xf1\x17\xf2\x6e\xfc\xc7\xda\x2d\xe4\x11\x3e\x65\xed\x1e\xc2\xeb\x32\xb5\x7b\xec\x0f\x0b\xa5\x66\x4b\x64\xeb\x2c\xe4\xe6\x58\xf8\x58\xbb\x85\x66\x3b\x3c\x56\xee\xa1\x72\x99\x3e\xf9\x58\xb9\x05\x2d\xcc\x78\x5f\x2b\xf7\xee\xca\xf1\xd8\x6b\x73\xbd\x46\x15\x22\xbc\xd7\x5e\xb3\x90\x87\xc3\xd7\x6b\x1d\x17\xe2\xb0\x87\xbc\xd6\x91\x93\x26\x52\xa3\x14\xaf\xe5\x7a\x91\x7a\x36\x2f\x0b\xf6\x12\x74\x19\x24\x7d\x96\x62\x21\xb1\xab\x20\x0c\x80\x14\x79\x6b\xcd\x4f\x79\x71\x48\xc5\x50\x6b\x7e\xca\xeb\x53\x5e\xbe\x68\xd3\x2f\x94\x3c\x11\xe1\xe7\x77\xbd\x30\x4a\xa7\xde\x9f\xe5\xfa\x1c\xaa\xfc\x34\x3e\xc5\xf3\x39\xfa\xf2\x6d\x18\x74\x29\x46\xc1\x22\x31\xe8\x52\x24\xd6\x67\xc3\x08\x4b\x31\xca\x4e\x9a\x26\x4d\x4a\x66\xd2\x69\x12\xb3\x12\xfa\xa9\x21\x90\x62\xfd\xa4\xf9\x3f\xa6\x11\xb4\x87\x6d\x68\xc0\xa3\x48\x15\x33\xdb\x80\x47\x51\x2a\x56\xbb\x01\x8f\xa2\x10\x47\x1d\x06\x3c\x8a\xc4\x32\x45\x7c\x5a\x7a\x60\xfd\x24\x25\x4b\x96\x2c\x19\x32\x4d\xc5\x59\x16\x12\x81\xbb\x3b\x8c\x26\x14\x25\x15\x32\xd3\x52\x02\x85\x03\x33\xc2\xe8\x38\x11\x9c\x23\x10\x06\xb9\x89\x12\x0c\xa2\x46\xb4\x89\x60\x4f\x4c\x18\xbe\x26\x72\x0d\x5f\x54\x88\xf8\x89\x8a\xf5\x2e\x16\x75\x21\xb3\x7c\x12\x46\xaf\x89\x55\x23\xd3\x2c\x3e\xe1\x6b\x84\x04\x85\xe1\x6b\x22\x15\xc6\x5a\xe3\xcb\x44\x39\x2a\xf5\x0e\x0b\xb6\x90\xf1\xd1\x85\x91\x63\x22\x76\xbd\xc3\x82\x85\xe3\x23\x23\x93\xe1\x5e\x22\xa5\x66\x92\xed\xb6\x50\xd8\x5a\x16\x86\x7b\x89\x6c\x5f\x34\xdc\x4b\xe4\x03\x73\xdc\x70\xaf\xd8\xe1\x5e\xd5\x24\xcb\x5a\xf9\x04\x15\x75\x55\xae\x55\x6b\x8d\x51\xd4\xe0\xae\xd8\xc1\x5d\x61\xfe\x56\xa9\xb2\xef\x96\x31\xcd\xe0\x2e\x11\x9c\xd2\x10\x46\x72\x89\x42\xf4\x55\x18\xc9\x25\xb6\x95\x67\x24\x97\x88\x94\xa9\x64\x55\xd4\x0b\x99\xb5\xa4\x30\x92\x4b\x04\x07\x45\x84\x91\x5c\x22\x6a\xa3\x5c\xcd\x7a\xb7\x3d\xf6\x90\x7f\xb3\x14\x8d\xcf\xa6\x50\xd6\xa6\xc4\x1a\xa3\x96\xdf\x43\xf7\xcd\x4e\x1f\xc3\x36\x30\x30\x49\xa4\xc2\x60\x6a\x14\x92\x28\x78\xae\xc3\x28\x24\x11\x44\xfc\x85\xd1\x42\x22\x45\xc9\xe6\x6f\x2d\x3b\xb5\x2c\x66\x66\x2d\x17\xd2\xc4\xcc\x33\x5c\x28\x88\x0d\x4a\xc6\xe5\x86\xc1\x41\x22\x27\xbf\xc1\x61\xc9\xd8\x8e\x52\xb1\xe9\x8c\xde\x11\xc1\x52\x5e\x18\xaa\x23\x82\x53\x32\xc2\xb8\x1c\x31\x0a\x0a\xd7\xb8\x1c\x11\x6c\x55\x0e\x83\x70\x44\xce\x56\x7c\x58\x88\x81\xc4\x0a\xbd\x47\x9b\x0b\x04\x2b\x72\x61\x78\x8d\x18\x04\x0b\x86\xb1\x34\x62\x14\x06\x5d\x03\x67\x44\xec\xd6\x9d\x76\x1e\x56\xaa\xc2\x89\x89\x91\x33\x22\x12\x13\x77\xc3\x64\xc4\x28\x76\x28\x6d\x2e\x90\xd8\x11\x12\xc6\xc4\x88\x94\x1a\x49\xa7\xad\xcb\x7e\xd2\xc6\x08\x6e\xb4\x8b\x48\xc5\xcf\x59\xa3\x08\xc4\x1a\x00\x7f\x53\x2b\x1b\x4d\x22\x4a\x77\x30\xd4\x66\x32\x9a\xa4\x56\x6a\x77\x2a\x3c\x0e\xaa\x9a\x0e\x7c\x97\x1d\x69\x21\x57\x66\x40\x86\x7b\x88\x32\x1d\xcb\x2f\xf3\xba\x76\x77\x40\xec\x97\x99\x5d\xcc\x6d\x4c\xd2\xf2\x31\xae\x62\xd8\x1d\x6e\x7b\xc8\xcd\xa7\x6d\x3f\xd2\x18\x02\x69\x0b\xef\xf6\xd3\x60\x13\x5f\x71\xc4\xd7\xf2\x31\x14\xa2\x38\x18\x6a\xe6\x80\x51\xb0\x4e\x0d\x72\x10\x91\xec\x21\x9a\x39\x60\x95\x15\x81\x6a\xe7\x80\x48\x8a\xe7\x51\xec\x0f\xbd\xc6\x8a\x3f\x96\xf5\xd1\xbd\x83\x41\x6f\x98\x83\x88\xe4\xc8\xaa\x21\x03\xf2\x70\xcc\xd4\x90\x01\x91\x1c\xdf\x1f\xcb\xff\x30\xc0\x60\xcc\x7d\x8f\xcd\xfa\xf0\xe9\x31\x39\xf8\xb4\x6d\x40\x69\x8e\x26\x5a\x32\x9f\x96\x8c\xfd\x41\x4b\x06\xf4\x66\xbb\x69\xc8\x80\x5c\xcd\x4b\x43\x06\x94\xbe\x5f\xb4\xf4\x2f\x53\x27\xfb\x80\x26\x0a\xc8\xc5\x72\xbd\xfe\xe2\xcb\x2f\x62\xdb\x7c\x9f\x79\x7d\xcc\x9f\xfd\xcc\x3e\x7b\xca\x42\x89\xe9\x53\xf6\x94\x8f\x0f\x08\xab\xe5\xfb\x94\xc4\x42\xd1\x67\xf2\x7d\x4a\xe2\xf3\x8c\x1c\xf3\xb2\xda\xdb\x44\x71\xf8\xfd\x2c\xd8\x47\x53\x36\x8a\xaf\xd5\x02\x46\x59\xa6\x59\x35\xc6\xa4\x1e\x87\xf3\xff\xa5\x83\xab\xa7\xb6\x88\x54\x88\xc1\xad\x06\x95\x88\x60\x35\xb5\x1e\xac\x3c\x8a\x40\x89\xd5\x03\x4b\x46\x64\xce\x2f\xa9\x07\x66\x8b\x70\x21\xab\x1e\x58\x2d\xa2\x30\xfe\xd6\x03\x13\x45\x54\x1c\x48\xd5\x73\x61\xc4\x2a\x19\x3f\x89\x8d\x22\x02\xb3\xa8\x1a\xc9\x22\xca\x2e\x18\x3e\x2b\x11\x2c\xac\x57\x4f\x7e\x11\x69\x36\xf3\xb7\xac\xac\x12\xce\x25\xec\xea\xd9\x2f\x22\x58\x58\xae\x47\xb2\xf8\x49\x83\x61\xa9\xbf\xea\xf1\x2f\x62\x94\x61\xfe\x96\x3f\xa1\xaa\x13\x4f\x65\xcb\x9a\x2d\x2b\x3f\x99\x2d\x2b\x2b\x89\x9c\x91\x52\x0f\x56\x12\x45\xe1\xa8\xbd\x7a\x64\x8b\xcf\xbe\x08\x56\x55\xaa\x47\xc7\x88\x60\x71\xbf\x7a\x76\x8c\x48\xa3\xd1\x46\xb8\xa3\xc5\x2a\x2b\x55\xc2\x01\x26\x22\xed\xcc\xac\x78\x46\x6f\xee\x37\xad\x78\xb6\xe2\x96\xc2\x8a\x2f\x94\x39\x7d\xea\x36\x49\x3b\xcf\xe2\xdb\x94\x0b\x81\xd5\x52\x8f\xac\x74\xb2\x63\x9b\x6d\x59\x2c\x6c\x31\x42\x90\xf2\x17\x4b\x51\x8c\x9e\xf7\x29\x7f\x72\x1b\x67\x05\xc1\x86\xbd\x80\x28\x8f\xdd\x15\x43\x29\x86\x52\xa4\xc5\x43\x29\x06\x33\xd5\x66\x92\x3f\x19\x58\x32\x83\x2a\x85\xf2\xd1\x38\xeb\x34\x52\x28\x9e\x40\x3c\x9d\x2a\x85\x05\xc3\x5e\xfb\xf9\x94\xad\xab\xdb\x29\x51\xae\x6a\xb9\x2a\x23\x60\xa7\x5c\xd5\x46\xaa\x34\x92\x9d\xbf\x5a\x08\x3c\x51\xf8\xbc\xeb\x51\x2d\x44\xdd\x8d\xe4\x9b\x8a\x5f\xe3\xa9\xd3\x48\x55\x59\x2f\x94\xc3\xcc\x9a\xf9\xe3\xdd\x1e\x8a\xbf\x99\x7f\xd3\xa5\x51\x4c\x33\xb3\xa6\x91\x52\xc8\xad\x99\x5b\xa3\xe5\x3a\xc2\xe8\x56\xa0\x2b\x58\x9a\xa4\x2b\xd8\xee\xe9\x36\x48\xb1\xdb\x17\x3b\x7b\x74\x32\xc5\xe8\x16\x03\x53\xe9\xb0\xe6\xdd\x62\x74\x9a\x57\x29\x76\x05\xdb\x15\xac\xd9\xdb\x57\x16\xd2\x96\xe2\xb0\x10\x43\x29\xfe\xf6\x22\x74\x3d\x86\xbf\xae\xf3\x6a\xd0\xe1\x86\xf9\x0e\xc6\x7c\xbb\xc8\xb0\xc1\xdc\x4b\x5b\x0a\x15\x9e\x7e\x8f\xb8\x92\xd8\xd6\x5a\x0d\x0c\x13\xa3\x4c\x9a\x7a\x5a\x95\xed\x24\x2a\x14\x7c\x5a\x97\x85\xbc\x9b\x67\xda\x49\x16\x4a\x38\x10\x4d\xe5\x3e\x69\xc4\x61\x66\x8a\x1d\x27\x51\x10\x22\x5a\x3d\x14\x49\x64\x1c\x72\xd5\x33\x31\x45\x19\x0e\xcb\x97\x4d\x71\xe1\xf3\xb0\x4e\x97\x7d\x5c\x6f\x8c\xa3\xce\x65\xf9\x2f\x06\xba\x41\x95\x2e\xe5\x83\xfd\x81\x57\xb3\x7a\xa0\xa5\xc8\x61\x21\x2e\xbf\x51\xec\x0f\xb6\x88\xd4\xe3\xf6\x17\xf5\xb2\xf8\xbd\xdc\xe6\xc5\x59\x94\xdd\x8e\x74\x5b\xef\xdb\x4a\xd2\xd2\xb7\x15\xba\xad\x64\xf0\x93\xb7\x35\x22\x7c\x32\xef\xfc\x6d\x12\x62\x25\xd9\x1a\x53\x8f\xc7\x16\xe1\x78\xb3\x36\x11\xc5\xe3\x4f\x2e\x94\xee\x8b\x8f\x2d\xf2\xf0\x0d\xd9\x51\x1f\x1b\xe4\xc1\xab\x3f\xa9\xf7\x63\xc1\x9e\xa9\xad\xe1\x63\xb6\xc8\x43\x70\xbf\x3d\xf5\xb1\xe2\x7a\x3a\xec\xe2\xaf\x72\x7d\x91\xab\x99\xbd\x96\x42\x35\x6f\xbf\x78\x2d\x85\xe7\x60\x96\xa0\xb0\xaf\x82\x7d\x89\xa2\x57\x01\xbe\x16\xe3\x75\xb2\x17\xe6\xa6\x30\xf4\x6b\x58\xcd\xd7\x62\xbc\x14\xc3\xc1\xf5\x55\x3e\xaf\x5d\x36\x48\xfb\xfc\x3c\xf0\x75\x54\x8e\x54\xab\xc7\x67\x9b\x7f\xf6\x59\x72\xfb\x2c\xee\x67\x71\x69\xa7\xcf\x72\x7c\x8c\xf1\x13\x69\x7f\x8e\xae\x38\x3b\x08\xd5\xac\x9e\xbd\x25\x52\x5b\x93\xe1\xea\x11\x9c\x35\xb1\x27\x94\x39\x73\x4d\x2c\x70\x89\xa4\x85\x90\x58\xcc\x12\xab\xb0\x41\xda\x34\xcd\x9f\x6c\x24\x5d\x26\x39\xa0\x2f\x13\xaa\x26\xd5\x7a\xda\x6a\x1d\xed\xef\x21\x9f\x22\x3b\xee\x27\x75\x38\x08\x8e\x98\xaa\x09\x6f\x84\x08\x56\xe8\xaa\xa7\x76\x89\xe0\x30\xd2\x9a\x92\x45\x4b\x9a\x8e\x85\xa4\xd3\xa4\x93\x17\x33\x49\x96\x6c\xab\x75\xf4\x6e\x52\xad\x83\x95\x86\x84\xd4\xeb\x20\xb3\x40\x59\x3d\x16\x4c\x44\x3e\xf8\x01\xd5\x27\x28\x1c\x61\x56\x53\xb1\x4a\x85\xf8\xfa\xc4\x53\xac\xee\x88\x20\x3a\xb1\xa6\xe2\x8b\xc5\x92\x21\x46\x95\x20\x08\x3f\x9d\x84\x83\x42\x04\xe7\x16\xd4\x54\x2c\x57\x1c\x3f\x77\xcd\x56\xcf\x1a\x15\xe9\x67\x52\x31\x89\x1d\x38\x36\x66\x28\x57\x56\x6d\x06\x3d\x2a\x85\x72\x5d\xc8\xf8\xad\x6a\x52\x79\x82\x72\x28\x7d\x95\x27\x48\x8d\xcf\x24\xa9\x3c\x41\xee\x36\x88\xca\x13\xa4\x89\x6d\x91\xc2\x3a\x06\x73\xbb\x69\x92\x75\x0c\xfc\xe9\x0a\x3a\xac\x63\xb8\x9b\xd7\x5f\x7c\x4c\x62\x0e\x66\x87\x0a\x9b\x08\x27\x49\xb2\xa3\xa8\x88\x41\xce\x36\x64\x55\xf6\x0b\xc1\x11\x26\x95\x63\xd6\x36\x82\x03\x2e\x6a\x52\xe9\x82\x82\xd7\xaa\x26\x95\x2e\x48\x84\x24\xd6\x54\x15\x74\xdd\x9f\x25\x02\x6b\xe6\xdf\xcc\x9f\x1a\x35\xf3\x6f\x7e\x95\xc8\x50\x75\x0d\xdc\xc5\x5c\x53\x53\x86\xcd\xf5\xbd\x66\x9a\x42\x6c\x08\x91\x01\xc3\xd3\x57\x2b\x07\xbd\x05\x7b\x20\xab\x47\xad\x0a\xf7\x3f\xd7\xa4\x4e\x07\x69\x36\x7f\x52\x89\x35\xac\xb1\xe6\x8b\x4a\xac\xb1\xff\xd9\x4f\xbc\xdb\x51\xba\xc3\x2e\x2f\xaa\xd3\xd3\x76\x7f\x50\x2e\x75\x3a\xc8\xa3\x8c\xdf\x56\xcd\xa9\x5b\xbb\x85\xc4\xd1\x5b\xd5\x83\x5e\x45\xc1\x75\x5f\x39\xa4\x6e\x23\xfd\xfc\xb2\xbb\x55\xc1\x61\x32\x2c\xb7\x96\x01\x08\xe2\xbf\x6b\x1a\x8a\x7d\xe4\x9f\x1b\xbe\x6b\xd2\x1a\x00\x85\xc3\x63\x6a\x1a\x96\x7b\x70\x16\x08\x06\x42\x1a\xfe\xe4\x60\x8b\x39\x46\x4c\x1a\x36\x3e\xfb\x98\x34\x78\xd3\xb0\x10\x83\x1e\x98\x7d\x51\x79\xe2\x2f\x49\x0e\x1c\x5a\x16\x20\x88\xa9\xad\x1e\xa2\x27\x1a\x5b\xae\x6a\xd2\xd6\x00\xc1\x31\x4e\xd5\x83\xf5\x44\x61\x7f\x4a\xf5\x64\x3d\x11\x9c\xe4\x57\x3d\x46\xaf\x72\x72\x5e\x70\x48\x6a\xe5\xf8\xbc\x8d\x5c\xed\x6d\x5a\x1f\x20\x67\x9b\x6b\x5a\x54\x83\x73\xcd\xfe\xb4\x5c\xf8\x46\xaa\x23\xc9\x69\xb9\x4e\x67\x7b\x95\x4e\x7f\x5a\x30\x16\xa4\x38\xb4\xa9\xa6\xd3\xde\x7c\xf2\xb5\x64\xc4\x7a\x5a\x30\xb6\xfd\xb0\xed\xb7\xa6\x53\x49\x9f\x96\x95\xf6\x38\x6d\x6f\xf6\xf8\x54\x4c\xff\x74\x5a\x56\x7c\x2f\x9c\x01\x5a\x93\x26\x10\x28\x4c\x73\x6b\xba\x2c\x2b\xab\x4f\x1c\xa1\x54\xd3\x65\x59\x2f\xcb\xc5\x2f\x6a\x02\x81\xc8\x58\xbb\x49\x13\x08\xe4\x64\xf6\x9a\x40\x20\x38\x00\xaa\xa6\xcb\xa2\xe2\x82\x19\xd6\x51\xab\x08\xc4\xe1\x88\x70\x59\xae\x4b\x4b\xa6\x9a\x99\x72\xbd\x38\x52\x00\xe3\x29\x69\x3c\x81\x51\x94\xfe\x6d\xc1\x6e\x3d\x1d\x0e\x39\xb7\x25\xf3\x74\x0c\xc7\x2a\x0d\x2a\x10\x59\x6d\x72\x5b\xb2\x85\x1c\x6a\x00\x6d\x2c\x10\x1c\x70\x53\xd3\xed\xe7\xbf\x50\x0e\x3b\xa2\x66\x17\x28\x13\xa3\xd4\xf3\x90\x45\x71\xc6\x99\x34\x9e\x80\x6b\x06\x35\x3d\xe6\x85\xd7\x24\x3b\xe0\x3c\xe6\xf5\x70\xd6\xd6\xf0\x29\xf3\xe2\x08\x8c\x6e\xdf\xd4\x76\x02\x4b\x3c\xbc\xf9\xda\x6e\xef\xf1\xf3\x2c\x85\x9a\x5e\xdb\x6d\xa1\x74\xfb\xbe\xc6\x13\xc8\xe1\xc7\xac\xed\x04\xf2\x54\x5b\x69\x3b\x81\xc8\x1a\x0b\xaf\x9f\xe9\xcb\x49\x10\x8e\xd1\xaf\x65\x7d\x59\xa0\x51\xa7\x69\x60\x81\xc8\x5a\x14\x1a\x58\x60\x95\x95\x82\x69\x4d\x81\xd8\x9a\xe2\xb3\xac\x5f\x72\x30\x22\xc9\x66\xfb\x74\x94\xe3\x04\x48\x1a\x58\xc0\xe3\x21\x6a\xfa\xac\x12\x0b\x4c\xfb\x73\xfe\xec\xfc\xb8\x6a\xb2\x0d\xae\x19\x06\x52\xb1\x96\x9f\x55\xfa\xf4\xc3\x99\xbd\xe5\xff\xf0\x87\x38\x64\x7d\x96\x1f\xe7\x0d\xe7\xad\x55\xcf\x99\x14\x1e\x48\x51\xb3\xc6\x1a\x07\x4d\xae\xb2\x56\xd2\x8a\x69\x85\x05\xd4\x44\x52\x98\xc4\xe7\xcc\x47\x9f\xf5\xdd\x80\xc2\x32\x6b\xf5\xf4\x49\x91\x59\x4c\xae\x1e\x3f\x29\x12\xa7\x7c\x55\xcf\x9f\x14\x89\x00\xa5\xea\xf1\x93\x22\x38\x8d\xae\x66\x16\xa1\x44\x70\xce\x5c\xf5\x48\x4a\x91\xd8\xf6\x58\x3d\x80\x52\xac\xe2\x77\xd2\x2c\xab\x76\x1f\x7d\x2c\x6b\xf7\x81\xc1\x5a\x55\xcd\xc9\xb2\x12\x5c\x44\x84\x61\xf5\x20\x4a\x91\xd9\x7c\x59\xb3\x8e\x14\x50\xb4\x9e\x3d\x65\x52\x94\xc6\x57\xef\x31\x93\x22\x38\x59\xac\x7a\xce\xa4\x28\xc4\x13\x54\x77\xe7\x88\xc8\x4a\x5a\x47\x07\x88\x8c\x9b\xc9\x0d\x3b\xa2\x38\x97\x70\x77\x8e\x88\x6c\x1d\xf5\x86\x80\xdc\x8a\x49\x16\x62\x21\xeb\xe0\x71\xdf\x8d\x48\xa3\x99\xbd\xe5\x2a\x7c\x21\xf5\x6f\xd0\xc9\x6e\xcb\x11\x59\x03\xd9\x6d\x39\x22\x1f\x76\x2d\xed\xc4\xec\xda\x16\x16\x60\xd6\x4e\x04\xe1\x97\x97\xb5\x00\x41\x1e\xa8\xbe\xac\xb9\x97\xf7\xda\x96\xe5\xd6\xde\x03\x59\x03\x3c\x6b\xef\x65\x8d\x3b\x06\xfc\xac\x71\x07\x72\x57\xc4\x7a\x59\x40\x10\x02\x54\x3d\x23\x5d\x44\xc6\xc6\xc9\xba\x54\x40\x69\xc3\x24\xb3\xaf\xd4\xc8\xbc\xaa\xd9\x57\x4e\x17\xb3\x46\xd5\xe6\x62\x55\x29\xfb\xfd\x34\xfb\x64\xdb\xea\x90\x9f\x6c\xca\xa2\x61\x33\x33\xb3\x37\x74\x51\x64\xd6\xb6\x6a\xd6\xb8\x03\xa5\xec\xcc\x2c\xd8\xf6\xc5\x28\x32\x2d\x39\x10\x79\x67\xa6\x78\x34\xee\xb0\x75\x72\xb3\xe2\xcd\xf5\x59\x92\xf4\xce\x80\x5c\x19\xb7\xb3\x66\x1b\x88\x6c\x95\x74\xd8\x80\x14\x3b\xc9\xe2\x77\xba\x1b\x73\xd2\xac\x0f\x07\x44\xb6\x23\x69\xef\x81\xac\xa9\x96\xf5\xce\x80\xc8\xb8\xbd\x72\xb7\x5c\x9d\x06\xf1\xa9\x61\xf6\x9e\x97\x86\xf2\xe0\x54\xd1\x8d\x44\x68\x42\xcd\xc3\xae\xcb\x02\x15\xf1\x3e\x35\x6b\x83\x81\x32\xfd\x0c\xb4\xae\x40\x64\x7c\x87\xee\xa5\x12\xc1\xa6\xd4\xea\x5e\x2a\x11\x99\x49\xbc\x61\xa3\x62\x49\xda\x37\xad\x24\x07\x9e\x65\xfc\x65\xee\x6b\x12\x1e\xd7\x53\xdd\xd6\x24\x46\xf1\x73\x98\x56\x72\xba\x86\x43\x59\x35\x9c\x3c\xa4\xd4\xb9\xa1\x3b\x93\x44\x10\xe5\x5c\xb3\xe6\x0f\x18\xdc\x1c\x51\xdd\x98\x24\x72\x60\x8c\xb8\x31\x49\x14\x5d\xca\x6e\x4c\x12\x99\x8d\x2d\xd5\x8d\x49\x95\x5d\x48\x91\xbb\x49\x96\x8b\x2d\x47\xd5\x7a\x6b\x11\x81\xe0\xd4\xe2\x9a\x35\x7f\x40\xec\x8f\x59\xf3\x27\x6b\xfe\xe0\x14\xca\x97\xe5\xba\x9c\x95\x21\x56\x6d\x1d\x10\x9a\xc9\x59\xbb\x26\xbb\x28\x85\x01\x9c\x6f\x25\xb1\x30\xb8\x15\xa1\xe6\xdb\x42\xdc\x34\x11\x9e\xa9\xac\xf5\x03\x0a\x47\xe1\xd4\xac\xa5\x03\xca\x81\x21\x98\x6f\xfb\x09\xbb\x78\x87\xc3\xe5\x6d\x3f\xb9\x75\x23\x34\x1f\xb3\xac\x0b\x85\xa3\x8b\x6b\xd6\xae\x01\xa1\x79\xe2\x56\x2b\x91\xe2\x30\xb7\xc7\x9e\xc2\x3e\xdb\xa4\x9a\xd3\x9d\x04\x8a\x73\xe2\xfc\x58\x0c\xc2\x66\x88\xae\xab\x59\x77\x12\x48\x84\xe6\xd6\xac\x3b\x09\x94\x6e\x0f\xd6\x6e\x02\x23\x54\x86\x1a\x49\x20\x13\x5a\x5c\xb3\x46\x12\x08\x67\x7d\xf9\xb1\x25\x1f\xbc\xc7\xb6\xb7\x66\x53\xd6\x6c\xc2\xc1\x94\x5f\x4b\xbf\x90\x9b\x83\x98\x9e\x29\x10\x19\x97\x5c\x7e\x6d\x6f\x4e\x17\xe3\x7c\xee\x9a\x35\xae\x40\xe4\xe1\x8b\xd6\x71\x21\x11\x42\x5b\xb3\xc6\x0f\x58\xa2\xa6\xdd\x3e\x7f\x92\x83\xc3\x9c\x60\xe7\xcf\x9f\xfc\x3c\xcf\xca\x37\x95\xa1\xc6\x8f\x3a\x4d\x4b\x27\xe3\x5d\x62\xa3\x78\xcd\x9a\x35\x59\xb3\x66\xff\xa4\xa2\x60\x3b\xdc\x74\xf0\xfb\x14\xc5\x47\x4c\x24\x86\xa0\x1b\xe4\xc4\xe0\x20\xb8\xea\x06\x39\x51\x46\xf6\xa9\x6c\x52\x26\x82\x70\x92\x54\x4d\x42\x95\x87\x49\xcd\x24\x44\x81\x51\xe6\x56\x38\x31\xb4\xaf\xdd\x09\x27\x8c\xd7\xae\x6e\x7a\xab\x65\x3b\xaa\x9a\x8f\x3d\xa6\xd1\xeb\xa6\xa5\xf8\x4c\xfa\x38\xa8\x6b\x35\x5b\xd1\x9d\x55\x3c\x39\x6c\xfe\x0d\x1e\x6c\xb7\xba\x09\x0f\x00\xab\x6e\x75\x13\x49\xdf\xa2\x5b\xdd\x44\xe1\xd0\xd0\xea\xb6\x36\x91\x5d\xd6\x72\x57\x9b\x30\x78\xb7\x16\xed\x20\x90\xbb\x92\xca\x96\x91\x13\xba\x1c\xb4\x8b\x4e\x2c\xf7\xb9\x71\x26\x48\x75\x4f\x9b\x88\x62\x43\x68\x40\x81\xc1\xcd\x30\xd5\x4d\x68\xa2\xe8\x4c\x2e\x59\xa9\x64\xa5\x82\xec\x8a\xd9\x13\x01\x5d\x7c\x51\x3b\x08\x18\xae\x5a\xdd\xee\x25\x0c\x01\xad\xee\xf6\x12\x25\x58\x36\x70\xb7\x97\x48\x1c\x8b\x5e\xdd\xec\x25\x92\xee\x53\x37\x71\x89\xd5\x82\xe6\x6f\xc1\x16\x8a\x73\xf5\xe2\x72\x12\x30\x04\xb4\xba\xd5\x4b\x78\xd4\x5a\x75\x5b\x97\xc8\xdd\x26\xd2\x49\x06\xc2\x05\xbe\xa2\x93\x0c\x18\xf7\x58\xdd\xfb\x25\x32\x77\xa7\x54\xf7\x7e\x89\x34\x6d\x5b\xad\x26\x60\x3c\x59\x75\xeb\x97\x28\xb1\xb3\xb7\x92\xb1\xfb\xa4\x65\xbd\x4d\x73\x86\xca\x37\xe5\x76\x30\x61\x24\x5a\x75\x9f\x97\x28\x7a\x2d\xdd\xe7\x25\x32\x87\xfd\x54\xb7\x79\x89\x3c\x98\x89\xb8\xcb\x4b\xa4\xe6\xa7\xe1\x7a\x15\x28\xda\x05\xa5\x5a\xa5\x85\x3c\xb1\xbe\x8b\xce\x34\x50\xf6\xf7\xa3\x33\x0d\x78\x5e\x5d\x2d\x9a\x60\xc0\x70\xb2\x5a\x9a\x0d\xc2\x05\x45\xdd\x1e\xac\x55\x56\xb6\x55\x86\xdd\x51\x34\xae\x40\x1a\x76\x4e\x6d\x2b\x60\x44\x50\x2d\xba\xc4\x40\x8a\x62\x61\x75\x80\x01\x03\xbe\x6a\xd1\xde\x02\x49\x8f\x47\xd1\xde\x02\x29\xdb\x96\xda\x5b\x6e\x5b\x23\xbc\xb3\x16\xed\x2d\x30\xc2\x3e\xac\xbd\x05\xf2\x60\xb6\x5b\xb4\xb7\x40\x6a\x76\x02\xed\x2d\x50\x38\x64\xb3\x16\xbd\x65\xc0\x50\xa2\x5a\xf4\x96\x81\xe4\xc2\x9d\xfb\xe4\x84\x51\x5b\xd5\x4d\x71\x22\x15\xae\x82\xaa\x6e\x81\x13\xa9\x39\x56\xe9\x2d\x03\x06\x1c\xd5\x32\x2c\xd8\xe0\xbc\x2a\xe6\x1d\x45\xb3\xac\x78\x86\xad\xda\xa3\x68\x5e\x15\x0f\x50\xf0\xb3\x74\x55\x0c\x04\x67\xfc\x54\x37\xb7\x89\x32\xed\x3d\xae\x80\x81\x34\xed\xb0\x5a\x57\xc0\x9d\xb8\xd5\x8d\x6c\xc2\x88\xa0\x5a\x74\x2e\x01\x23\x4c\xaa\xfb\xd1\x84\x01\x32\xb5\xe8\x5c\x02\xb9\x3a\x66\x69\x70\x79\xdb\x8e\xee\x87\xa2\x75\x55\x3c\xbe\x95\x2d\x1f\xb5\xb8\xc0\x06\x52\x66\xb6\x5b\x4e\xbb\xc5\x49\xb7\xc0\xa6\x77\xbf\x9b\xd8\x91\x10\x6e\x6e\x13\xc3\x45\x25\x37\xb7\x89\xc4\xa1\x5f\xb5\xe8\x5d\x02\x1e\xb0\x58\xcb\x65\x29\x88\x76\xe6\xd2\x98\xea\x16\x38\xe1\x59\xc6\xd5\x6b\x80\xc4\x8e\x70\x70\x07\x9c\xf0\x64\xc6\x5a\xb4\x88\x40\x3e\xb0\x58\xca\xad\xa4\x39\x52\x95\xc3\xc8\xaa\xfb\xe4\x44\x19\x18\xd8\xee\x93\x13\xb9\xfb\x35\x68\x4a\x81\x12\xa8\xe9\x72\x2b\x89\x9b\x00\x16\xdc\x2e\x6e\x9d\x13\xd9\x38\x91\xa2\x23\x09\xe4\xdd\x1e\x5a\x52\x20\xbb\xc6\x5a\x34\x9b\x40\x66\xcf\x58\x75\x7f\x9d\x58\xed\x61\x9a\x65\x5d\x28\xe1\x00\xa8\x29\x05\x86\x73\xf5\xa2\xdd\x04\x76\x1c\x41\xd1\xb7\x04\x92\x7e\x85\xa2\xdd\x04\x72\xb7\xb9\xb5\x9b\x00\x47\x59\xfe\xb6\x4e\xd6\xac\x02\x69\x3a\x86\xba\x06\x08\x12\xb7\x78\xd4\xa2\xa5\x55\xf6\x1a\x60\xf7\x31\xdb\xeb\x45\x87\x39\xae\xea\xc7\x02\x79\x2a\x63\xfd\x58\x20\x4f\x87\xf7\x57\x19\xbc\xf4\x10\xfb\x91\xae\x2d\x90\x83\x45\xb5\xa2\x6b\x0b\xec\x75\xec\xa2\x6b\x0b\xec\xe5\xfd\xe2\xda\x21\x48\x2e\x5c\x15\xed\x3d\x90\xd9\xb1\x5f\x8b\xce\x2e\x90\x9d\x5c\x15\x2d\x40\xe0\x45\x2e\xb5\x68\x01\x82\xa4\xeb\xba\x68\x01\x82\x55\x6f\xd3\x94\x05\xfe\xaf\xd8\xf9\xdb\x1f\x16\xf2\xa1\xd6\xd1\x50\x04\x5e\xcf\x52\x8b\x86\x22\xd8\xeb\xeb\x5e\x5f\x25\xf6\x2a\x79\xe8\xc5\x02\x89\x23\xbe\x6a\xe8\xc5\x02\x49\xe9\x84\x96\x1c\xc8\x9c\x1a\x50\xc3\x55\x48\x90\x5a\xf1\xa9\xd3\xa4\x93\x03\x0b\x3b\x49\x97\x49\xfb\xc8\x7e\x92\x6e\x93\xd8\xa3\x72\x58\x88\xc7\x24\x16\xa0\xa8\x63\xe8\xd8\x02\x89\x8d\x32\x35\x34\x0a\x41\x99\x96\x5e\xa3\x10\x14\x22\x53\x6b\xe8\xfe\x02\x69\xf2\x2d\x86\x6b\x90\x20\xf5\xe9\x53\xfe\x62\xa2\xb9\x69\xc8\x70\x05\x12\x24\xee\x8e\xa9\xa1\x3d\x07\x0a\x77\x95\xd4\x30\x1a\x08\x14\x67\x22\x6e\x4e\x15\xab\xd5\x7c\x53\xe9\x10\xfa\xe3\xcc\x36\x8c\xf3\x01\xa9\x32\x05\x0b\xe3\x7c\x22\x5b\x0a\x93\xac\x37\xbe\x2e\x07\x89\xd0\xa0\x03\xa9\x68\x98\x79\x9f\x98\xd8\x6b\xbb\xa1\x91\x17\xfb\xa4\x51\x44\xad\x91\x07\x32\xfb\xdc\x6b\x68\xd1\x81\xa2\xd7\x32\x5c\xf5\x04\x7b\x89\x39\x8a\xe2\x29\x16\xcc\x5f\xb4\x60\x9e\x2a\x1a\x66\xaf\xc4\x0a\x5f\x83\x93\xb7\xd0\xee\x0b\xed\x3e\xe5\x63\x18\x51\xb8\xcb\xcd\x5a\x6a\xd1\x81\xc2\x86\x91\x1a\x9a\x6f\xa0\x1c\x7c\x34\xa1\xf9\x16\xae\x71\xee\x17\xed\x62\xe1\x39\x53\xbe\x68\x59\xc3\x90\xbc\xfd\xa6\x85\x0d\xa5\x48\xc5\x35\xd5\x40\x71\x44\x0b\xe3\x88\x40\x72\xaf\x49\x0d\x97\x21\xc1\x76\x67\x87\x26\x51\x6c\x7f\x13\x06\x4a\xb8\x98\x08\xf2\x96\xbf\xfe\x26\x90\xf7\xf7\xe6\x62\x22\x58\x6f\x92\xa6\x01\x04\x3c\xcb\xbe\x86\x06\x10\xd8\x8e\xf0\xd0\xda\x01\xc5\x41\xd1\x2b\x51\xc4\xca\xcc\x34\x6b\xd0\xd1\xe7\x78\x84\xc3\xe5\x44\xb0\x9d\x63\xa1\x05\x14\x5a\x40\xf6\x6c\xcd\x9d\xd0\xdc\xa9\x16\xcc\x6e\x60\x30\x75\xb2\x14\x8a\xb6\xfb\x5d\x52\x71\x97\x0b\xc1\x76\xe4\x85\xd6\x0e\xd8\x4e\xa2\x70\x6d\x10\xec\x39\x70\xb8\x10\x08\x86\xaa\x28\x86\x85\x60\x03\x5b\xb2\xe3\xb9\x36\x08\xc2\x68\xac\xd0\x7b\x15\x7b\x03\x1b\x46\x45\x0c\xdb\x97\x0d\x6c\x2e\x90\x84\xeb\x85\x60\x2f\xb8\x85\xeb\x85\x60\x3b\x3d\x42\x27\x17\xd8\x8e\xf0\xd0\xe4\x8a\x1d\x88\xe4\x27\xa1\xfb\x0a\x0c\xb5\x77\xb8\xa2\x17\x7b\x45\x0f\x77\x4f\xb8\xa2\x07\x42\x03\x31\x5c\xd1\x03\x7b\x04\x0f\x8d\xae\xd0\xe8\x72\x58\xd4\xc2\x02\xdb\x74\x0a\x2d\x2c\x30\x38\xd2\xa6\x86\x16\x16\xd8\x0a\x3d\xf4\x5f\x81\x3d\x55\x09\x6d\xae\x38\xb7\x7c\x7c\x53\x61\x2c\x44\x1c\xbf\x7d\xc9\x45\x0d\x0d\x30\x90\xf7\x48\xaa\x01\x16\x1e\x94\xef\xd8\x7d\x59\xee\x8b\x72\x33\xf7\x0b\x5d\x5e\xb1\x77\xa5\xe1\x34\x0a\x7d\x5e\xe0\xe7\x17\xe9\xf2\x1e\x48\x86\x0a\x84\x6e\x30\xf0\x73\xd8\xbc\x2c\xf7\x65\x10\x00\x06\x51\xe8\x1a\x03\x89\x7d\x0b\x35\x74\x8d\x81\x52\x99\x91\x84\x46\x1f\xd8\x16\x43\xb8\x2e\x08\xf6\xec\x26\x5c\x04\x04\x2b\x7f\xdf\xf4\xeb\xb8\xf9\x3a\x98\x51\x85\xb6\x21\xd8\xb3\x9b\xd0\x36\x04\x39\xa9\x0a\x34\xf1\xc0\xca\x0c\x99\xe9\xe1\x02\x3f\x87\x0a\x4d\xa9\xd0\x94\xb2\x2f\x69\x4a\x81\x9f\xa5\xd0\x0a\x0a\x9c\x4b\x7b\xa4\xd0\xe2\x01\x39\x54\x05\x5a\x3c\xa0\x18\x28\x16\x1a\x2e\xa1\xe1\xa2\xf8\x35\x5c\x42\xc3\xc5\x0e\xa1\xfd\x01\x4a\xb2\x77\x69\x1f\x84\xf6\x81\xa2\x76\x7d\x0c\xfc\xec\xe2\x3a\x92\xc0\xe0\x2c\xc1\x5a\xb5\x0f\xaa\x17\x8e\x32\xd0\x55\xfd\x41\x20\x1f\x54\xa8\xea\x0f\x02\x99\x23\x27\x6b\x55\xa7\x83\x25\x30\xdf\xfc\x4c\xe3\xb3\xe5\xe3\xae\x2a\xf5\xaa\x52\xa7\x41\xaa\x8b\x55\x60\x7f\xa2\x55\x57\x0e\x48\xae\x15\x54\x35\x6c\x75\x77\xb9\x01\xab\x55\x7d\x5a\xd5\xa7\xf8\xd9\xaa\x6e\x14\x50\x38\x28\xba\x56\xdd\x28\x20\x07\xea\xba\xaa\x75\xab\x6e\x94\x69\x52\x35\x49\xf3\x0c\x6f\x62\x55\xeb\x56\x5d\x2b\x4c\xe4\xab\x5a\x17\xec\x6e\xe1\x79\x13\x22\x73\xf4\x45\xad\x2a\xca\xaa\xa2\x54\x16\x2e\x05\x81\x3c\xf0\xaa\x55\xbd\x21\x55\x6f\x08\x0e\x98\xaa\xee\x04\x99\x73\x15\x6b\x55\x2b\x82\xf4\xb3\x96\x7a\x30\xc0\xcf\xb2\xba\xee\x03\x8a\x53\xe8\xaa\x6b\x02\xa4\xc1\x67\x59\x5d\xf7\xa9\x6c\x43\x72\xdd\xb4\xea\x61\x00\x61\x50\x4c\x75\xdd\x07\x84\x6b\x85\xde\x8c\x25\x3a\xc7\x28\xd6\xaa\xd3\xa1\x6e\x0f\x83\x6f\xba\xee\x03\x7e\x36\x92\xda\x08\x84\xbe\xc3\xaa\x36\x02\xe1\x34\xa5\x76\xf3\xef\x9c\x92\x8f\xaf\xab\xaa\x8d\x40\xb8\x34\x50\x5d\x38\x01\xa1\x83\xa7\xaa\xa0\x40\xe6\x88\xf7\x5a\x55\x50\x60\x70\x99\x70\xad\x2e\xaf\x80\x50\x41\x55\x97\x57\x40\xfa\x29\x0b\x27\xf2\x20\xb1\xa3\xb7\x7a\xcf\x96\x08\x1d\xd6\xde\xb3\x25\xca\x81\x1b\xc5\x1b\xb4\xc4\xca\x8c\xdf\x74\x6e\x0f\x42\x3f\x47\x35\xe4\x04\x84\x2b\x27\xd5\xe9\x3e\x48\x06\xa6\x54\x15\x14\x48\x95\xe1\xa2\x1a\x98\x02\x12\x07\x62\xd6\x3a\xfd\xc9\xa9\xc4\xe8\x89\xfa\x09\x40\xe8\x05\xae\xa7\x15\x3f\x59\x57\x42\xa7\x54\xf5\x13\x08\x95\x51\x55\x3f\x81\x50\x25\x7a\x47\x97\xc8\xdc\x2f\x53\xbd\xa2\x4b\x24\x63\x31\xaa\x2a\x0b\x24\x83\xd7\xaa\x3e\x01\x10\xce\xf6\xab\x3e\x01\x90\xdc\xd0\xe0\xb5\x5d\x75\x5f\xdb\x85\x59\x54\x1d\xd2\x41\x70\x5d\x76\xad\x2e\x80\x80\xd8\x2d\xe9\x88\x0e\x22\xcc\xcb\x89\x36\x08\xe3\x0f\xaa\xf3\x65\x10\x7b\x64\x33\x3c\x03\x84\xe1\x13\xd5\xb9\x31\x08\x2e\xd5\xae\xd5\x59\x2f\xf0\x62\xcd\xea\xdd\x5a\x22\x5c\x13\xaf\x4e\xd2\x40\x04\x9e\x9c\x6a\x90\x02\x88\xc8\xfd\xb7\xb5\x72\x75\x40\x06\xc1\x71\x36\xb5\xea\xec\x07\xc1\xe9\x33\xd5\x8b\xb6\x44\x9e\xb8\x45\x9a\x13\xb6\xb6\xe3\x46\x19\x97\x9a\x33\x36\x90\x34\x8a\xbd\x90\xab\xb6\x43\x7d\xcb\x28\xd7\x1c\x6b\x41\xb8\x3a\xd5\x1c\x6b\x41\x68\x09\x34\xdd\xe6\x20\x07\x13\xa8\x66\x40\x28\x48\x86\x16\x35\x67\x5e\x20\x38\x62\xa6\x36\xe7\x54\x20\x55\xbf\xff\xe6\x6c\x09\x24\x8d\xa6\xe6\x20\x0d\x22\xcc\xcc\x41\x1a\x64\x63\x9e\x9a\xc1\x9f\x20\x38\x76\xa7\xb6\x62\xf1\xb9\xbc\xc1\xa5\xc1\xe6\x64\x09\x44\xec\x17\x2d\x7e\x71\xce\xc6\x67\xd6\x1c\xca\x41\x04\x33\xda\xe6\x0c\x07\xa4\x3d\xc0\x78\xa5\x98\x48\x46\xb7\x34\x27\x2a\xcd\xd5\x79\x97\xef\x9a\x5e\xe5\xa6\x57\xd9\x51\xa1\x39\x26\x83\xdc\xf7\xab\xb6\x40\xd8\x9c\xc8\xd1\x61\x1a\xa4\xfd\x8d\x36\x83\x2f\x41\x70\x3b\x79\x6d\x0e\xdd\xa0\x1b\x01\xda\x5c\x9f\x07\x29\x6c\x74\x97\xd4\x41\x70\x68\x50\xf5\xc2\x31\x91\xf6\x70\xeb\xf5\x62\x22\x71\x8e\x40\x6d\xba\x7d\xbd\x71\x6c\x8f\xb7\xde\x38\x26\xc2\x45\x89\xe6\x1c\x07\x04\xa7\x03\x55\x6f\x21\x13\xc1\xe1\x40\xd5\x2b\xc7\x44\xda\x23\x5d\x73\xda\xd3\x5c\x54\x77\x78\x6a\x4e\x72\x40\xa9\x58\x20\xcd\x09\x0d\x48\xd5\x91\xa7\xe9\xc0\x05\xc5\x08\xa6\xd6\x2d\x1a\x07\xcc\xef\x4a\xa9\x1d\x9a\xda\x81\xb9\x68\x73\xdc\x07\xa1\xc3\xbe\x39\xee\x37\x6f\x1c\x63\x62\xdb\x1c\xd0\x9b\x03\x3a\x13\xcf\xe6\xf4\x02\x84\xc6\x58\x73\x25\x1c\x84\x7e\x92\x66\x54\x21\x48\x5b\x6d\x35\x07\x74\xd0\x5b\xf5\x31\xf3\x67\x40\xdf\x4a\xaa\xe9\xad\x05\xb1\x8b\xe1\xf4\x02\x14\x97\xfa\x9a\x73\x09\x10\x2a\xff\xe6\xf8\xda\xb4\xff\xb7\x7c\x1c\x60\x9b\x03\xac\x1d\xcd\x35\xed\xe6\x91\x52\x8e\xe9\xcd\x45\x6d\x10\xe1\x88\xe0\xa0\x0b\x62\x7f\xd7\x5a\xf3\x20\x02\xe3\xa5\x69\x93\x83\x08\xeb\xa4\x4d\x0e\x22\x98\x92\x35\x6d\x72\x10\x5c\x99\x51\x9b\x8e\x58\x10\x5c\xab\x50\x9b\xc6\x36\x08\x8e\x8f\xaf\x4d\x63\x1b\xa4\x3d\x36\x37\x3d\xb1\xa0\xeb\x63\x6d\x3a\x54\x41\x04\x53\xe9\xe6\x4e\x07\x10\x1c\x01\x5d\xdb\xe3\x4f\x3e\xfe\x24\x35\xd2\xa1\x0a\xbc\x6f\xa7\x36\x0d\x77\x10\xdc\x39\x58\x9b\x0a\x02\x64\xfd\x22\x4d\x7f\x2a\xc8\x86\xa4\x37\xfd\xa9\x20\x6d\x05\xd4\x5c\x9b\x6e\x5e\x61\x85\xa6\x6f\x2e\x44\x83\x64\x5c\x74\x53\x8f\x80\x3c\x6d\x4b\xf5\x08\x48\x5b\xdd\x34\xad\x79\x10\xc1\x84\xbe\xe9\x73\x04\xf9\x40\x63\x37\x0d\x7c\x90\x38\x49\xbd\x36\x1d\x8c\x20\x1b\x6b\xdc\xd4\x40\x4d\x0d\xd4\x7c\xca\x5a\xb2\xc9\x71\x5a\x7c\xb5\x0e\xc8\x87\x0d\xee\x34\x00\x04\x27\xbc\xd7\xee\x7a\x32\x88\x60\x76\xdd\x75\x26\x82\xe2\xe6\xc2\xee\x64\x01\x04\x47\xb0\xd7\xae\x6e\x02\x11\x4c\x22\xbb\xaa\x09\x44\x30\x91\xee\x3a\x13\x41\xda\xba\xbe\xeb\x4d\x04\xe1\x66\xa0\xae\xeb\x10\x44\x20\x8a\xee\x94\x02\x78\xf6\x5c\xed\xee\x7b\xe8\xde\x32\xc9\xb0\xd2\x8d\x89\x03\x11\xfb\xa9\x6a\x92\x5f\x6f\xfa\x1b\xc2\xbe\xba\x9a\xb1\xab\x19\x11\x7b\x57\x0d\x82\x08\x3a\x6a\xe7\xdc\x06\x11\x81\xa1\xd4\xf5\x36\xf6\x7f\xbb\xdf\xa9\x76\x97\x8a\xc1\xea\x35\x94\xd2\xb5\x62\x90\xb6\x65\xd1\x75\x41\x82\x30\x18\xa9\xeb\x82\x04\x89\xad\xb7\xb5\xbb\x1f\x11\x64\x8e\x7c\xa8\xdd\x3d\x84\x20\x0d\x06\x8a\xae\x9a\x05\x69\x1b\x46\xdd\xd8\x3a\x90\x8d\x20\xea\x4e\x86\x7a\xb1\x5f\x62\x14\x74\x55\x68\x57\x5d\x62\x6f\x76\x9d\x8b\x20\x5c\x54\xee\x4e\x73\x40\x70\x48\x71\xed\x2a\x50\x90\x93\xbd\xc4\xe5\x5c\x90\xb8\x1f\xbd\x76\xe7\x34\xa0\x70\xd4\x7d\xed\xaa\xcf\xee\xa2\xac\x76\x48\x57\x7f\x76\xf5\x67\xf7\x4d\xeb\x44\x78\x1b\x07\x55\xd5\xae\xfa\xec\x9e\xe6\x80\x99\xd3\xf5\x07\x82\xe4\x9e\xa5\x5e\xed\x85\x55\x17\x0c\x6d\xe2\x12\x29\x08\x4e\x65\xab\x5d\x8d\x0a\xf2\x61\xc7\x31\x48\x0d\x8c\xdd\x55\x55\xb2\x20\xcf\xec\x53\x66\xcf\x3a\x6a\x30\x89\xed\xea\x53\x50\x0e\xbf\x21\xfd\x83\x20\x6d\x03\xaf\xbb\xea\x08\x22\x94\x85\xab\x8e\x20\x37\x0c\x93\xee\x6c\x05\x44\x30\xed\xef\x4e\x56\x40\xb8\x78\xd0\x9d\x99\x80\xe4\x7e\x99\xae\xd3\x0d\xa4\x6d\x66\x76\xd7\x26\x41\x04\x93\xd8\xee\x9c\xa3\xcf\xfd\x18\xb9\xa9\xb5\xba\x5a\x8b\x59\x6c\x57\x6b\x81\x34\xed\x9e\x06\x75\x75\x6f\x98\x2c\x3e\xa5\x14\xf1\x93\x71\x00\x75\xed\x4e\x27\x40\xb8\x29\xa4\xab\xdb\xc0\xd0\x20\xef\x4e\x14\x40\x70\x22\x77\xed\x3a\xaa\x40\x70\xd4\x76\xed\x3a\xaa\x40\xc2\xd6\xfe\x5d\xed\x2a\xad\xae\xd2\x72\x10\x50\x1d\x75\xd5\x11\xd3\xeb\xae\x8b\x08\x04\xe7\x71\xd7\xee\x7c\x02\x8c\xfd\x8d\xa8\xb4\xc0\xd8\x9f\xa5\xeb\x82\xa0\x70\xf1\x70\xed\x2a\x28\x90\x2b\x63\x6b\x37\x76\xaa\xab\x8d\x18\x94\xbb\x73\x93\xee\xdc\x64\xfa\x94\x85\x78\x2c\x04\xd9\x3b\x37\x01\xc5\xb8\x88\xee\xdc\x04\x24\x37\x82\x75\xd5\x0c\x28\x15\x73\xb2\xab\x66\x40\x54\x7b\x8a\xeb\x6b\xdd\xf5\xb5\xd8\x8f\x39\x38\xbc\xea\x31\x7b\xac\x21\xda\x20\x57\xcc\xeb\xee\x12\x55\x77\x39\x2a\xac\xa6\x53\x1d\x90\xb3\xdf\xa0\x8a\x06\x14\xd7\x3f\xba\x8a\x06\x24\x23\xa1\xfb\x67\x9d\x3e\xb6\x68\x16\x7f\xd2\x3a\x79\xde\x8f\xc6\xfa\x50\xd3\x80\xd2\x11\xf6\x30\x4c\x69\x18\xa6\x84\x34\x86\x61\x4a\x20\x71\x6f\x66\x1d\x4e\x8c\x40\x76\xeb\xf6\x50\xd3\x80\xb4\xa7\x0c\x43\x55\x03\x22\xf0\x65\x0c\x35\x0d\x88\x8a\x41\x3f\xd4\x0e\x20\xbb\xad\x75\x18\x28\x04\xc2\xb0\xed\xe1\xc2\x12\x88\x8a\x85\x30\x9c\xf1\x80\xb4\x27\x16\xc3\xb1\x1e\x04\xe7\xcc\xd5\x61\x0c\x10\x28\x07\x52\x1c\xc6\x00\x81\x64\x70\xea\x70\xc0\x06\xdd\xc1\x7f\x38\x5e\x0f\xaf\x70\xe0\xbb\x1f\x4e\x95\x40\xe1\x88\xa1\x3a\x9c\x2a\x81\xb4\x0d\xf5\xe1\x5c\x09\x64\xfd\xa8\x43\x1f\x17\x28\x9c\xe2\x52\x87\x71\x41\xc3\xd0\x66\x8b\xef\xfa\x10\x08\xe3\xde\x86\x03\x3d\x28\x06\x0d\x0c\x03\x7e\x40\x1c\x56\xd2\x51\x1d\x24\xa7\xa5\xc3\x89\x12\x08\x77\xcf\x0c\xc7\x66\x90\x3b\x46\xe8\x30\xac\x06\x44\xfd\x1b\xce\xfb\xaa\xc3\x10\x1b\x50\x38\x96\xa1\x0e\x43\x6c\x40\xb1\xbf\x0d\x43\x6c\x40\xe1\x08\x89\x3a\x54\x03\xa0\x38\xef\x19\x46\xdd\x80\x62\xf4\xe7\xd0\xdb\x05\x72\xf2\x29\x95\x05\xe8\x5d\xa9\xbb\x83\x0d\x04\xe7\xcc\xd4\xa1\x1a\x00\xc9\x28\xae\xe1\x1c\x0a\x14\x4e\x18\xab\x43\x35\x00\xa2\xe2\x22\x19\x06\xc5\x80\xa8\xbe\xe8\xfa\x0f\xc8\x4e\x97\x86\xdb\xbe\x40\x70\x00\x63\x1d\xfa\xd2\x40\xda\x93\xc0\xa1\x33\x0d\x64\x1d\x73\xc3\xe9\x12\x48\x7b\xce\x3d\xf4\xa6\x81\x64\x80\xd6\x70\x2b\x18\x08\xbd\x51\x43\x65\x01\x4a\x63\x56\x35\xdc\x4c\x05\xf2\x60\xe8\x1b\xea\x0f\x50\x5c\x07\x1c\x3a\xa8\xc0\x50\xa1\x0f\x1d\x54\x20\x1c\x33\x87\xde\x28\x50\x3a\x93\xaa\xa1\x37\x0a\xa4\x3d\xc7\x1c\xfa\x9e\x86\x87\xcf\xd8\x9b\x9d\x07\x01\x6f\x5a\xac\xc3\x85\x8e\x61\xa4\x09\xea\x75\xa8\x3f\x40\xa9\x7e\x40\xea\x0f\x10\xd5\x16\x71\xa1\x03\xc4\xfe\x18\x2f\xbb\xc5\x42\x54\xf4\xfe\x30\x1e\x05\x44\x75\xac\x72\x9d\x03\xe4\xc3\x81\xc9\xc9\x12\x28\xcd\x1a\xe9\xc7\x02\x51\xf1\x17\x0d\xf5\x0e\xc8\x93\x41\x74\x38\x0b\x1a\x5e\xf1\xeb\x57\x66\xf0\x09\xc8\xbb\x10\xea\x1d\x90\xf6\x3c\x7d\x18\xc8\x3b\x0c\xe4\x75\xea\x3b\x9c\x2d\x81\xa8\xca\xc2\xd9\x12\x88\x6a\x8b\xa8\x9f\x40\xda\xf3\xe8\x61\xbc\x2f\xc8\xbb\x2d\x9d\x54\x81\xa8\x18\x11\xc3\x49\x15\x08\x8e\xc9\xab\xc3\xc0\x15\x10\x15\x1b\x62\x38\xcf\x1a\x06\xae\xc4\xce\xcc\x4a\xe1\x89\xab\xd9\x0a\x58\x29\x02\x7e\x2b\xb6\xc0\x50\x01\x82\xa8\xf8\x7a\x86\x33\x28\xe0\x3d\xdb\x75\xb8\xb4\x02\x42\x9d\x38\x5c\x47\x19\xee\x1e\x77\xb6\x3d\x8c\x13\x01\x5e\xaf\x5a\x87\x71\x22\x20\xef\x8e\xe1\x6c\x0c\x64\xf7\x3b\x0c\x83\x42\x40\xe8\x97\x1a\x4e\xd0\x40\xe6\xe8\xbf\x3a\x0c\x0a\x01\xc9\x08\x90\xe1\x9c\x0d\x14\xd7\x7d\x87\xaa\x14\x94\x43\x8d\xa5\x2a\x05\x51\x1d\x7e\x55\xa5\x20\xd4\xcb\xc3\x4d\xe7\x03\x4f\x61\x65\x74\x9f\xea\x48\xe0\xe5\xb0\x75\xaa\xfd\x40\x71\x1f\xfa\x54\xf9\x81\xa8\x74\x95\xa9\xf2\x03\x43\x73\x70\x1a\xb4\x01\xd2\x76\x76\x4c\xe7\x59\x20\xb9\xe2\x3a\x5d\xba\x01\x51\xc3\xa4\x6a\x52\xfd\x79\x1f\x6d\x9d\x4e\x9a\x40\xd2\x35\x3a\x9d\x34\x01\x8f\x6e\xab\x53\xe5\x0a\xb2\x8b\x64\xd3\x28\x5c\x90\xb9\x2d\xba\x4e\x3d\x8c\x20\xb8\x27\xaf\x4e\x67\x5b\xa0\x70\xcc\x51\x9d\x9e\x07\x03\x4a\x67\x41\x72\xaa\x6e\x41\xda\x1e\x9d\xe9\xa6\x25\x10\x5c\x0e\x56\xa7\x33\x2b\xe0\xdd\xb9\x75\xea\xad\x04\x85\x43\x1c\xeb\x54\x51\x83\xcc\x35\x93\x75\xba\x18\x05\x8a\x3d\x78\x1a\xee\x31\x09\xf7\xa8\xca\xd0\xe5\x29\x90\x0c\x6d\x9d\x6a\xf8\xb9\xa7\x64\xf8\x05\xa6\xfa\x1c\xe4\xac\x10\xd5\xe7\x20\xea\x7e\xca\xb2\x7a\xd3\x03\x7e\xef\xa9\x4f\x13\x44\x55\x62\x2e\x4f\x4d\xaf\x9f\x4d\x76\x02\xd7\xa7\x40\x54\xcb\xef\x62\x14\x48\xee\x05\x98\xce\xd2\x40\x32\x76\x64\x1a\xb5\x01\x4a\xae\xbf\x7d\x40\x76\x9d\xfa\x4a\x41\x31\xa2\x6e\x3a\x87\x03\x51\x77\x92\x42\xe0\x44\x3e\x23\x4b\xa6\x73\x38\x10\x15\xed\x3a\xb5\x13\x40\xf2\xa8\x8b\xa9\x57\x14\x0c\xe7\x28\x53\x43\x00\x94\x6e\x7b\x19\xf9\x01\xc2\xc5\xc9\xa9\x6d\x30\xb5\x0d\xf0\x2d\x4c\x6d\x03\x10\x5c\xb7\x5b\xa7\x86\x00\x88\x8a\xff\x6a\xea\x74\x05\xc3\x99\xc6\x74\x71\x0c\x0c\xcd\xeb\xe9\x4a\x18\x88\xca\x88\x30\x35\x17\xa6\x8b\x63\x7a\xe9\xa6\xf6\xc2\xd4\x5e\xc0\x19\x36\x5d\x2f\x03\x43\xbb\x7c\x3a\xdf\x04\xc9\xb9\xc0\x74\xc7\x3b\x88\x5a\xcd\xcb\xe2\x37\xd7\x8f\x7d\x51\xe1\x33\x05\xad\xd5\x24\x6b\xd4\x8c\x98\xf3\x17\xed\xa7\xf8\x6f\x6b\xb5\xf8\xd6\xa8\x39\x3b\xb0\x87\x18\xf0\x0b\x4a\xf5\xd3\x30\x6c\x05\x78\xad\x74\x9d\x7a\x74\x41\x71\x03\xf8\xd4\x7b\x0b\xa2\xe2\xd1\x9a\x46\x9a\x80\xe4\x26\xdb\x39\x14\xcf\x40\x39\xe1\xab\x9a\x4e\x7a\x41\x71\x9f\xc6\xd4\x40\x01\x45\xdd\x31\x5d\xee\x9b\x46\xdf\x1e\xe6\x65\x25\x07\xdb\x5b\xa7\x79\xf9\x8b\x6c\x8a\xaa\x68\xe5\xa9\x19\x03\x52\x73\x10\x32\x38\x04\x94\xfd\xf9\xeb\xcf\x05\xc5\x38\xc8\xe9\x06\x28\x10\xdc\xd7\x56\xa7\xab\x71\x20\x8c\xf6\x9a\xce\x82\x41\xb8\xfb\x6c\x3a\x0b\x06\xc3\xc9\xd4\xd4\xc3\x0b\xb2\xab\xd3\x53\xfb\x07\x14\x37\x8c\x4e\x27\xc6\xd3\x9d\xdd\x0e\xb4\x1a\x36\x20\x2a\x96\xec\xd4\x64\x01\xa5\x3b\x12\x6a\xb2\x80\x11\x3b\xc9\xd2\x73\x8d\x61\x3a\x7c\xd1\xa6\xc5\x64\xd1\x73\x3b\x9d\x17\x83\xa8\x7e\x1f\xba\x69\x41\xf6\xb8\x8c\xa9\x7d\x02\xd2\x76\x29\x4f\x27\xc6\x20\x7b\x1c\xc7\xd4\x18\x01\x29\xf9\x94\xb6\x08\x48\x13\xeb\x6d\x3a\x57\x06\x69\x3b\x90\xa7\xf6\x09\xc8\xee\xf1\x99\xda\x27\x20\x79\x42\xd4\xd4\xca\x98\xac\xed\x55\xdb\x48\x8b\x62\x6a\x51\x34\x5f\xb4\x8d\xb6\xeb\xd6\x21\xc5\xd9\xf2\xdc\x1e\x58\x07\x23\x0d\x08\x90\xdc\xc8\x3d\x9d\x41\x83\xa4\x95\x3a\x0d\xd7\x00\x51\xf1\x44\x4e\xa3\x51\x41\xe9\xb8\x17\xa6\x56\x06\x28\x3a\x39\xa6\x56\x06\x48\x65\x62\xd4\x4d\xa3\x3e\x41\xd2\x47\x36\xd5\xf0\x20\x79\x18\xc6\x74\xb2\x0c\xb2\x47\x98\x9c\x86\x78\x82\xe4\x39\x5b\xa7\x5e\x59\x90\xf4\x04\x9e\x7a\x65\xcf\x1d\xe2\x59\x7d\x6c\x9a\xc6\xd8\xd0\x7d\xec\x36\x49\xad\xcf\x70\x74\x1a\x5f\x09\x82\x93\x76\xeb\xa9\xf2\x3e\xbd\x30\x1f\x55\x71\xaa\xa9\x41\xb8\x3e\x7d\xaa\xa9\x41\x2a\xdc\xa1\x5e\x4f\x55\x35\x08\xce\xd0\xad\xa7\x8e\x51\x10\xd5\x0a\x38\x81\x06\xd9\x91\xff\xd4\x2f\x7a\x6e\xbf\x28\xe3\xe9\xa9\xf6\x3e\xd5\xde\xf4\x83\x53\x55\x0d\x4a\xcb\x3e\x65\xfe\xde\x1d\x8f\x12\x3e\x9d\xf3\x9e\xac\x0f\x3a\x8b\x3a\x8d\x89\x04\xd9\x9e\x71\x3a\xc1\x05\xe1\x12\xd9\xe9\x04\xf7\x74\x82\x4b\xff\x3c\x8d\xce\x00\xc5\x53\xec\x4e\xd5\x26\x48\x7b\x51\xe2\x54\x0b\x82\x50\x95\x9e\xea\xa4\xd3\x68\x44\x17\x2a\x4e\xd5\x0d\xc8\x9e\xfa\x76\xaa\x21\x4e\x35\x84\xc2\x56\x43\x80\xb4\xd7\x33\x4e\xfd\x8f\xa0\x2c\x3b\xf8\x37\x15\xf3\xa9\x22\x00\xc1\x3d\x49\xf5\x54\x11\x9c\x2a\x02\x5c\x36\xa7\x8a\xe0\xdc\x8a\x80\xc1\xfb\x74\x2e\x79\x7a\xe6\xaa\xcb\x0a\xa7\x2e\x4b\x50\xb8\x65\xbb\x9e\xc6\xde\x81\x62\xcc\xed\xe9\x42\x18\x08\x2e\x28\xab\xa7\x63\x29\x28\xfa\xf7\x4e\x67\x89\x20\xed\xa5\x86\xd3\xa0\x05\x90\xf6\x8a\xc4\xe9\xa0\x08\xd2\x5e\x6c\x38\x9d\xdb\x9d\x06\xb1\xb9\xb4\x70\xba\xa0\x05\x42\xc5\x75\x1a\x9e\x06\xa2\xf2\x59\x9e\x8e\x81\x20\xb8\xfd\xa9\x9e\x4e\xdb\x40\x32\xdc\xf2\x74\x8d\x0b\x04\x57\x8a\xd5\xd3\x61\xf1\x74\x58\xb4\xa3\x38\x04\x82\xa8\xc3\x24\x0b\xc1\x69\x5e\xc3\xa6\x75\x54\x04\xc1\xb5\xf0\xf5\xd4\x11\x08\xc2\x35\x9c\xd3\x79\xd6\xe9\x3c\x8b\x41\xe5\xd4\xeb\x77\x7a\x60\xb8\x4b\x2a\xa7\x61\x67\x20\x4f\xbf\x40\xc7\xb6\x53\x4f\xa0\xa2\x75\x1c\x03\xc1\xb5\x20\xf5\x74\x6e\x04\x82\x13\x7a\xeb\xe9\x7c\xe3\xfc\x28\x3e\x03\xd4\xa5\x4f\x0e\xa4\xbd\x16\x73\x39\x82\x80\xe4\x77\x74\x39\x95\x00\xa1\x9b\xfa\x72\x50\x01\x61\x50\xf2\xe5\x84\x00\x04\x17\x33\xd5\x4b\xeb\x1f\xa4\xbd\xb0\xe3\x2d\x3b\x22\x3b\x03\xbc\xfc\xe6\x41\xda\xcb\x38\x97\xc6\x38\x08\x6e\x96\xaa\x97\x96\x37\x28\x47\x33\xe9\x31\xc9\x8e\x8c\x01\x70\xe9\x49\xbb\xf4\xa4\x31\xdc\x5d\x9a\xd9\x20\xb8\xea\xa4\x5e\x86\x13\x80\x68\x87\x4f\xbd\x26\xbd\x24\x2d\xf9\x5f\x0e\x17\x20\x9c\xe2\x5f\x0e\x17\x97\x57\x80\xb8\x5a\x74\xb9\x03\x0e\x04\x57\x4b\xd5\xcb\x98\x2f\x10\x9e\x1f\x76\x69\xfb\x5e\x9e\xbd\xb4\x93\xcc\x6c\x21\x1a\x36\xe0\xa5\xa1\x0b\xd2\x64\x34\xbd\x1c\x54\x40\x70\x5d\x53\xbd\x8c\xef\x02\x43\x07\xeb\xa5\xed\x0b\xb2\xc7\x6e\x5c\xda\xbe\x20\x8f\x30\x7b\xe5\xca\x31\xd3\x1e\xe9\x70\x19\x18\x06\x72\x4e\xfe\xa2\x72\xad\x5a\x72\x54\xc8\x98\xea\xcb\x0b\x3a\x94\x8e\x43\x16\x48\x5b\xac\xae\xab\x80\x34\x99\x96\x5c\xda\xb9\x20\xb8\x01\xb9\x5e\x8e\x6b\x97\xc1\x0b\xcd\x17\xed\x2a\x18\xb5\x5c\xc6\x51\x2f\x1d\x6a\x20\x0f\x66\x85\x97\x0e\x35\x10\x1e\x8a\x78\x19\x80\x00\xc2\x59\xfa\xa5\x01\x0b\xc2\x09\xf2\xa5\x8f\x0d\x84\x56\xe1\xa5\x01\x0b\xa2\xe1\xe4\xb9\x0c\x3f\x00\xc1\x75\x69\xf5\xd2\xed\x76\x6d\xb7\x1b\xf3\xb1\xcb\xa1\xf2\xf2\x32\x11\x97\x02\x2f\xfd\x6e\x20\xb8\x7c\xad\x5e\x1a\xba\x20\x95\x2d\x7e\x2d\x5d\x10\x5c\xdb\x56\x2f\x5d\x71\x20\x73\x4b\x63\xbd\x8c\x66\x00\xc9\xa3\x8e\xbc\x88\x4a\xe4\xb2\x93\x14\x19\x41\x6c\x9e\x82\x71\x69\x22\x83\xb4\xd7\xf3\x2e\xd7\x8a\x40\xee\xb6\xa5\x6b\x45\x20\xe9\x64\xbb\xb4\xa4\x2f\x0f\xbb\xde\x55\xb2\xc5\x39\x16\xd2\xc1\xe7\x32\x34\x02\x14\x0f\xb1\xbd\xf4\x11\x82\xec\x22\xc1\x65\x40\x1c\x48\x3a\xb3\x2e\xed\x6d\x90\xa7\xa3\x8a\x6a\x03\x94\x63\x67\x6f\x51\xbd\xef\xcd\x2e\xac\xbf\x11\xa4\xdd\x4a\x5a\xe5\xa0\xb8\x47\xe2\xd2\xdf\x08\xb2\xfb\xc8\x2f\x57\xb0\x40\x6a\x98\x08\x97\xb6\x3b\xc8\x9d\xa1\xf9\xd2\x76\x07\xd9\xbd\x6e\x97\xb6\x3b\x28\x43\xb1\xba\xbd\x0e\x04\x87\x4d\xd7\x4b\xa7\x24\x48\xad\xfe\xf6\x21\xd9\xf5\x72\xcd\x0b\xe4\xe4\x20\xa1\x5e\xbb\x76\x70\x36\xf9\x1a\xcd\x01\x92\x1b\xee\x2f\x8f\x28\x00\x59\x63\xf6\x32\xc0\x03\xa4\xb2\x93\x14\x3a\xce\x4e\x4f\x02\xb8\x9c\x39\x80\xc2\x9d\xa3\xf5\x32\x36\x1b\x64\xc3\x5a\x2f\x57\xd4\x2e\x4f\x2d\x60\xba\x77\xa9\x0f\x41\x76\xb7\xe5\xe5\x22\x1b\x08\x8d\xb0\xcb\x38\x3e\x90\x74\xac\x5d\xfa\x3f\x41\xd1\xc8\xbe\x9c\x72\x80\xd2\x51\xdd\x97\x2e\x51\x10\x2d\x5b\x08\x8b\xca\x29\x4e\x8d\xc9\xf6\xa5\x6e\x05\x45\xbf\xe0\xa5\x6e\xbd\xd4\xad\xd8\x65\x97\xd3\x0b\x90\x74\xb1\x5f\xce\x2e\x40\xd2\xed\x70\x39\xbb\x00\xc1\x41\xd7\xf5\xd2\xad\x09\x86\x2b\x29\x97\x81\x21\x97\x17\xcf\x39\x48\x38\xbb\x00\x59\xaf\xc6\xa5\x0b\x13\x84\x7b\xa6\x2e\x5d\x98\x20\x7b\xaa\xf2\xa5\xe6\x06\xc9\x2d\x28\x97\x01\xe3\x20\x0c\xad\xbd\x74\x74\x82\x68\xd6\xd1\x79\x0a\x08\xf7\x72\x5d\xea\x77\x10\x46\x64\x5c\x9e\x59\x00\x4a\x56\x99\x3b\x75\x01\x35\x3b\xa8\x6a\x05\x80\x5c\x77\x21\xac\xe3\xcb\xf8\xcf\x2a\xc2\xe5\xd4\x05\x8c\xd8\x49\xd6\xf1\xf5\xc6\x1b\x92\xf4\x86\x82\xf0\x18\x9e\xcb\xd8\x14\x10\x4e\xe3\x2e\x57\x16\x41\x39\x54\xdb\xce\x82\x40\x78\x54\xc3\xe5\x46\x37\x90\x77\xb5\xb5\x4e\x40\xf6\x08\xa7\xcb\x20\x49\x90\x3d\xc1\xf7\x72\xae\x04\xb2\x7b\xdf\x6e\xe7\x4a\xa0\xe8\x0d\xb9\xf5\x99\x82\xec\x8e\xaf\xdb\xb9\x12\xc8\xca\xeb\x76\xa9\x11\x84\xeb\x1d\xb7\x4b\x8d\x20\x1b\xd8\x74\x1b\x01\x7f\x13\xe7\xd2\x50\x42\xb7\x16\xd2\xed\x3d\xc0\xf4\xaf\x5b\xff\x2b\xc8\x5c\xa3\x5e\x6f\x8d\x26\x90\x35\xf1\x6f\xc3\x5c\x40\xb8\xd5\xf9\x36\x76\x13\x14\xf7\x15\xdc\x7a\x64\x41\x76\x56\x77\x3b\x5d\x03\xd9\x19\xdc\x6d\xe4\x0b\x08\x87\xb7\xdb\x98\xcf\xdb\xcb\xe7\xb8\x12\xa6\xde\x1a\x65\x20\xf7\xc3\x37\x2d\x3e\x46\x59\x19\xc5\x34\xcb\x8f\x4f\xd6\x89\xd8\xed\xf9\x9e\x60\xb8\x8e\x74\x3b\x85\x03\xd1\x70\xb6\xde\x5a\x73\x20\x1a\x0e\xcc\xdb\x59\xdd\xbd\x67\x75\xdd\x34\x8b\xc6\xb2\xe8\x60\x40\xb9\x0d\x6d\x01\xe1\x51\xde\xb7\xde\xd6\xdb\xd0\x7f\xe3\x40\x6e\x2d\x3c\x90\x3a\xe3\xce\xad\x81\x77\x7b\x89\x9c\x11\x2a\xb7\xbe\x55\x90\x9d\x96\xdc\x7a\x4d\x6f\x22\xf8\xdb\x4e\xb2\x9a\xc5\x63\x37\x10\x90\xd1\x2e\x20\xeb\x81\xbd\x9d\x36\x82\xe2\xce\xcf\xdb\xa5\x52\x90\x9d\xe2\xdc\x5a\x8b\xa0\x68\xda\xde\x06\x9a\xde\x9e\xa0\xc0\x78\x7b\x6b\x40\x82\xd4\x19\x78\x6e\x0d\x48\x10\x6e\x9b\xbb\x35\x16\x6f\x2f\x82\x43\xf9\xde\x4e\x41\x41\xb8\xf8\x7b\xeb\xa6\x05\xa9\xa3\x43\x6f\x57\x62\x41\xf1\xbc\xbd\xdb\x95\x58\x90\xdc\x5e\x7d\xbb\xb9\x0e\x64\x37\x6b\xde\x7a\x6b\x41\xe8\xc0\xbd\xf5\xd6\x82\x68\x76\x32\x2d\x56\x10\x46\x3d\xde\x5a\xac\x20\x75\xe6\xbc\xb7\xde\x5a\x10\xea\xe3\x5b\x8b\x15\x94\xdd\x13\xf5\xb0\x82\x3e\x6c\x48\x57\x5f\x41\x1e\x8c\x6b\xb7\x1e\x56\x50\x92\x9f\x9b\x1e\x56\x90\x3d\x51\xe5\x76\xfa\x0c\x7a\x63\xf6\x74\x6b\x8b\xde\x7b\xfa\xfc\xb7\x1c\x8e\x7d\x6b\xab\x82\xdc\xed\x46\xda\xaa\xa0\x4c\xc7\x04\x0d\xd3\x7b\x47\xd0\x0e\xd3\xec\x21\x4c\xa9\x1b\xbe\x80\x5b\x3f\x2a\x88\x56\xcd\x4c\x81\x72\x50\x95\x07\xed\xdd\x1a\xab\x20\x7b\xb2\xf8\x6d\x64\x2c\x08\x6e\x57\xa8\xb7\xab\xbf\x20\x1a\x33\xf1\x5b\x33\xf4\xde\x66\xa8\x72\xd7\x8a\x03\xd1\x18\xf0\x6f\x37\xcb\x81\xb4\x07\x1d\x0f\x89\x02\xd1\x98\x62\xdf\xc6\xbc\x82\x68\x0c\xac\xb7\x1b\xe3\x6e\xaf\x01\xc9\x26\x59\x30\x4f\x6c\x62\xdc\xbe\xf5\x61\x82\xdc\x19\xa4\x6f\xd7\x70\x41\xd2\x61\x76\xbb\x84\x0b\xa2\x31\x8f\xbd\x9d\xd4\x83\xd2\xfd\x45\x43\x59\x41\xf6\xc0\xb6\x5b\x73\xe8\xd6\x1c\xb2\xa8\x1a\x3a\x20\x9a\xd9\x7b\x14\x25\x88\xc6\x94\xef\xd6\xf6\x01\xa9\xee\x17\xfd\x32\xb6\x8b\x94\xa2\xea\x22\x05\xd1\x98\xec\xde\x3a\x11\x40\xb4\xe6\x53\x36\x24\x1e\x03\xcf\x22\xb8\xb5\x6a\x40\x34\x66\x7c\xb7\x26\xcc\xad\x09\xe3\x17\xab\x7b\x00\xa4\x1d\x9a\x74\x6b\x9d\xdc\xdb\xf9\x89\x8d\x74\xeb\xd6\x04\xd1\xf0\x8d\xdd\x4e\xfd\x41\xf1\x30\xd5\x5b\xfb\x01\x24\x4f\xfa\xb8\x35\x03\x6e\x03\x7e\x92\x8d\xa4\xd2\x07\xc9\x3d\x55\xb7\x4a\x1f\x44\x53\x3d\xe9\xc2\x04\xd1\xec\xc2\x46\x0a\x81\x68\x76\x7e\x97\x40\x41\xd9\x03\x80\x4a\x1f\x94\x3d\x00\x18\x4e\x74\x7b\xe2\xa3\xd1\x74\xb7\x5a\x1f\x0c\x57\xa5\x6f\xb5\x3e\x28\xde\x31\x70\xab\xe2\x41\x34\x3b\xbf\xee\x50\x90\xdd\x80\x74\x1b\xb7\x0a\xa2\x31\xfa\x3e\xea\xe0\xc7\xb3\x16\x93\x49\x97\x49\xb4\x25\xf5\x7e\x54\xa5\x20\x1b\xf4\xf2\xa8\x37\x41\x70\xbd\x5f\x7d\x54\x92\x20\xda\xf0\xa9\x6a\x12\xcd\x4b\xbb\x3d\xaa\xcd\x67\x2f\x6e\x56\x92\x2c\x04\x87\x28\x7a\x6e\xfe\xa3\xcb\x14\x84\x87\x3c\x3f\x2a\x57\x10\x1e\xd2\xfe\xa8\x5b\x41\x70\xe9\x4e\x7d\xf4\xa2\x82\x70\x2d\xe0\xd1\x63\x0a\xc2\x48\xc9\x47\xdd\xfa\xa8\x5b\xf1\x37\x3d\xea\xd1\x67\xaf\x77\xee\xc7\x2c\x6b\x36\x98\xcb\xdc\x5c\xf0\x04\xc3\xc5\xfe\x47\x2f\xea\xa3\x17\x15\x15\xff\x18\xc3\x09\x86\xcb\xc1\x8f\x9e\x0c\x90\x76\xc8\xe0\xa3\x2a\x02\x69\xc7\x07\x3e\x2a\x9e\xc7\xcd\x6a\x86\xeb\x3d\x6a\x1e\x10\x1e\x87\xf3\x18\xec\x09\xc2\x81\xfa\x51\xf3\x3c\x6a\x1e\x3c\x53\x8f\x6a\x06\x14\xee\xb1\xaf\x8f\x91\x42\x20\x3c\x75\xf9\x51\xcd\x3c\x2e\x0a\x86\x4f\x99\x3d\x5b\xda\x3c\xdd\xf0\x71\xb8\x06\xd9\xb9\xff\xe3\x68\xfd\x38\x5a\x4f\x93\x1e\x93\x58\xdb\xc3\x92\x79\x1c\xad\x41\x3e\xac\xb8\x7e\x84\x47\x3f\x02\xbd\xf3\x71\xb4\x7e\x1c\xad\xf1\x7b\x3d\x4e\xf3\x41\xf8\xa5\x3e\x2e\x5e\x81\x30\xe0\xe6\x71\x4a\x0f\xc2\x0d\x54\x8f\x13\x73\x50\xbc\x3a\xe3\x71\x48\x7f\x1c\xd2\xf1\x3a\x3e\x0e\xe9\x20\x3c\x18\xe8\xd1\x07\x0b\xd2\x8e\xbb\x7c\x1c\xd3\x41\xda\x81\x97\x8f\x93\x6e\x90\x76\x98\xe5\xe3\xe4\x19\x84\xb6\xf1\x63\xf8\x27\x48\x3b\x80\xf2\x71\xf6\x0c\xc2\xa9\xf2\xe3\x18\x0e\x42\x53\xf2\x71\x12\x0c\xc2\x63\xb7\x1e\x17\xb0\x40\xaa\x1e\x83\xf8\x38\x62\x83\xe8\xc7\xdf\xa0\x9a\x1f\x07\xf4\xe7\x22\x88\x37\xcc\xd8\x1e\x47\x98\xce\x81\x1b\xe9\x71\xf4\x06\xd1\xf1\x9e\x3d\xba\x80\x41\x78\x23\xc2\xe3\xd4\x12\x44\xc7\xc4\x7e\x9c\x5a\x82\xc4\x15\x7f\xf5\x71\x1f\x30\x88\x8e\x69\xf8\x38\xdb\x04\xc3\xd5\xd2\xc7\xf1\x1c\x44\xb7\x10\xce\x36\x41\x74\x56\x74\x1e\xfd\xbd\x20\x3a\xbe\xac\xc7\xd9\x26\x48\x3b\x22\xf5\x71\xba\x09\xc2\x83\x00\x1f\xa7\x9b\x20\x6f\x81\x3a\xdd\x04\xd9\x0d\x5f\x8f\xea\xe2\xd9\x9e\x62\xbf\x21\xf5\x05\xc8\x6e\xb6\x78\x9c\x6f\x82\xe4\x1d\x82\xf5\xd1\x7b\x0c\x72\xf7\xb3\x75\xc2\x09\xd2\xb4\xcf\xa9\x69\x40\x3e\xfc\xe0\x9d\x70\x82\xc4\x65\xce\xf5\x51\xf7\x80\xa4\x22\x7b\x9c\x5d\x82\xe8\x7e\x7d\x4e\x25\x41\x3e\xfc\x45\xa3\x68\x40\x9a\xcc\xb3\x1f\xa3\x68\x40\xf4\x9d\x64\x51\xb9\x04\xaa\x5b\x7a\x75\x0f\x28\x9e\xd2\xf4\xa8\x7a\x40\x18\x56\xfa\x18\x7e\x03\xd2\x54\x37\x38\xe1\x04\x69\x47\xec\x3e\xea\x1e\x90\x8c\xb1\x7b\xd4\x3d\x20\xeb\xbd\x7c\x9c\x84\x82\xe4\xc9\xab\x8f\x93\x50\x90\x0a\x37\xfb\x56\xef\x43\x17\xeb\x07\x3a\x69\xd9\x34\x8e\x8b\xa1\x7b\x7a\x21\xba\x28\xc6\xfc\xbc\xce\x39\x41\x71\x47\x8f\x77\x98\x8b\xe8\xd9\x17\x6f\x93\xe8\xb1\x8c\xfb\x5e\x3f\x2e\xa2\xe3\x4a\x7c\xdd\x21\x01\xd2\x0e\x82\xf5\x4a\xf2\xfa\xee\xfd\x10\x0c\x59\x5e\x40\x2e\x8a\x31\x9d\xde\x36\x2e\xd2\x0e\x96\xf5\xba\x71\x11\x1d\x2b\xfe\x55\x99\x81\x30\x0c\xe3\x55\x99\x81\xf0\x04\xeb\xd7\xf8\x59\x50\x0e\xba\xd4\xab\x8f\x1f\x64\x57\x07\xbc\x47\x5c\x64\xe7\xbe\x5e\x19\x2e\xb2\xb6\xdd\x6b\x70\xcd\xeb\x05\x49\xc6\xe7\x7a\x8d\xb8\xc8\x9e\x3a\xfb\x3a\x29\xf4\x66\x71\xd7\x58\x5e\xf7\x3b\x80\x72\x1c\x26\x59\x71\x2e\x95\xf0\x9c\x6e\x6f\x0c\x17\xd9\x58\xbf\xd7\xd9\x1e\x28\x9a\x0d\x5e\xfc\x2d\xc2\x79\x9c\x97\x7c\x8b\xe8\x4c\xb4\xbc\xe4\x5b\x44\xcf\xbe\x68\xbd\x83\xbb\x02\x2c\xaa\x4b\x89\x20\x3c\x95\xf2\x55\x4f\x82\xb2\x5b\x5c\x3d\x09\xc2\x48\xf4\xd7\xa5\x01\x10\x1d\x3d\xe9\x7d\xde\xa2\xb8\xe7\xc2\xcb\xbb\x45\x18\x2f\xe0\xe5\xdd\x22\xed\x80\x66\x2f\xdc\x16\xd1\xed\x8a\xce\xb4\x40\x71\x37\xbb\x77\x70\x8b\xe8\x38\xbb\x5e\x67\x5a\xa0\x54\xfb\x98\x33\x29\x10\x9e\x68\xf0\xea\xbc\x7f\x3d\x5c\xce\x40\xd7\xd7\xd8\x57\x90\xb6\xa8\x55\xb1\xde\xde\xed\x3a\xd2\x6b\xac\x09\x28\x9e\xf8\xf8\xea\xbd\x7f\xd1\xba\xbb\x96\x7a\xef\x41\xd2\xa1\xfc\x3a\x6d\x02\xc9\x70\xcf\x57\x87\x3e\x08\x37\x8d\xbf\x6e\x53\x07\x69\x1e\x3e\xa5\xf4\x3b\xb1\x66\x18\x50\xaf\xa1\x2c\xa0\x8c\xea\x8b\x36\x88\xb7\x8a\xef\xa7\x94\x21\x5b\x3a\x3a\x66\xd6\x6b\xc0\x0b\x28\x07\x0a\xe8\xd5\xe7\x0f\xd2\xc4\x72\x7c\x35\x10\x40\x76\x31\xf9\xd5\x40\x00\xc5\x60\x46\xaf\x0b\x17\xd9\xb5\xe4\x57\x9f\x3c\xc8\x46\xa1\x7b\x77\xb7\x28\xdc\xc0\x5d\xbd\xbb\x5b\x14\xe7\xa7\xaf\x6e\x7a\x50\x92\xa3\x85\xe6\xc1\xab\x79\x70\x1c\x7f\xc3\xf2\xf2\xab\xcf\xfe\xf5\xcc\xba\xe1\xcf\x2b\xbc\xa9\x9b\x96\x24\x0d\x0a\xaf\xf6\xf6\x92\x0e\xaf\xe3\x16\xc5\x8b\xd5\x5e\x17\x7f\x41\x3e\xec\x47\xce\x2f\xbd\xa1\x7b\x47\x5a\xbf\x6e\x28\x01\x69\x87\x96\x7b\x6d\xb7\x48\xd3\x8e\xe4\x01\x2a\xfb\xda\x6e\x06\xfd\x57\xbf\x39\x48\x7a\x65\xbd\x90\x5b\x64\x1d\xee\xaf\xc6\x09\x48\xd3\x91\x55\xeb\x03\x94\x31\x7c\xd1\xc6\xf7\x4c\x13\xfd\xcc\x5e\xbe\x5d\xbd\x69\xbb\xdb\x62\x7a\xc9\x41\xf1\xb4\xb1\xd7\x4d\x26\x20\xb8\x17\xb1\xbe\x5a\x24\x20\x0e\xbf\x50\x43\x6e\x40\xb8\x5b\xcf\x9b\xb6\x45\x0a\x0f\xda\xf5\x12\x6d\x11\xee\x3d\xf6\x12\x6d\x11\x1e\x81\xf7\x6a\xa5\xbc\xce\x3a\x8d\xec\x7f\x35\x53\x40\xd2\xe2\xf5\x96\x6c\x11\x06\xe8\xbf\x46\xf1\xbe\x9a\x24\x16\x43\x93\x04\x44\xc7\x5d\xe5\x6d\xd7\xa2\xec\x56\xd2\x24\x01\xd9\xe0\x05\x2f\xbb\x16\xd1\x99\x3b\xbe\x5a\x24\x20\x3a\x9e\x22\xef\xbf\x16\xa1\x4b\xe1\xd5\xae\x78\x99\xc0\x7a\x86\xd7\xab\x8b\x1a\x44\xb7\x43\x3b\x35\x05\xe1\x79\x5a\xaf\x76\x05\x08\xef\xcd\x7b\x35\x22\x40\x78\x04\xd3\xab\x11\x01\xc2\x08\x16\xef\xbf\x16\xc9\xe5\x23\xef\xbf\x16\xe5\x70\x7c\xd1\x88\x00\xa1\x41\xf2\x3a\xa5\x05\x69\x74\x93\x6c\xb6\xcf\x0b\xd2\x2d\x84\xa5\xff\xd8\xf5\x63\xdf\xd1\xac\x00\xd1\xf1\x58\x78\x49\xb6\x28\xee\x00\xf1\x42\x6c\x51\x5c\x28\xf1\x42\x6c\x11\x7a\x52\x3e\x7d\xdb\x20\x0e\x7c\x79\x9f\x33\x66\x90\xf6\x06\x02\xef\xcd\x16\xe1\x42\x8c\xf7\x66\x8b\xe2\xc2\xbe\xf7\x66\x8b\xf0\x96\xae\x4f\xdb\x03\xc4\x31\x7d\xea\x31\x89\x4b\xba\xe8\x01\xde\xa4\x2d\xd2\xde\x52\xe0\x55\xda\x22\x7b\xbc\xba\x57\x69\x8b\xe2\x36\x23\xaf\xd2\x16\xe1\xf1\xea\x9f\xde\x6d\x90\x74\x45\x7c\xda\x31\xa0\x1c\x87\x79\x55\x93\x08\xe9\xc2\xe6\xfd\xb4\x6c\x40\xb8\xc1\xf8\x73\xe2\x0e\x8a\xb1\x48\x9f\xc6\x0e\x48\x93\xf6\xfe\xb4\x62\x40\x9e\xd5\xec\xad\x77\x7a\xac\x91\x6f\x5a\x23\x76\x7c\x1e\x36\x92\xbb\x80\xc0\x30\x58\xee\x73\xe6\x0e\xd2\xde\xc5\xf0\x69\x00\x81\xed\x75\xff\x9c\xb9\x83\x34\xd1\x74\x9f\x13\x77\x90\x26\x3a\xec\xd3\x51\x0e\xd2\xde\xa0\xf0\x39\x99\x07\x61\xf8\xe2\xa7\xe9\x04\xc2\xb3\x37\xbc\x43\x5c\x84\x0e\xce\x4f\x3f\xf9\xa7\x9f\x1c\xfb\xcd\x3b\xc4\xc5\x30\x3e\xef\x33\x96\x0a\x14\x6e\xa0\xaf\x5e\x2b\x2e\xd2\x8e\xdc\xff\x0c\x55\x06\xc9\x49\xa2\x57\x8d\x8b\xf0\x34\x11\xef\x15\x17\x69\x1b\x37\x5e\x2c\x5e\xf7\xc5\xe2\x9a\x02\x5e\x2c\x2e\x8a\xae\x8d\x4f\x1f\x3b\xc8\x93\x11\xea\xd3\x10\x03\x69\x6f\xea\xf8\xf4\xa8\x83\x30\x9c\xff\xd3\xec\x02\xc3\xc3\x9f\x3e\xdd\xe7\x20\x5c\x16\xfc\xf4\x62\x80\xe4\x64\xf8\xd3\x12\x03\x61\x90\xb9\x77\x8d\x8b\x70\x01\xdd\x8b\xc5\x45\xda\x7b\x52\xbc\x59\x5c\x84\x47\x49\x7b\xb3\xb8\x28\xde\xff\xe7\x95\xe1\xd5\xfb\xc1\x3b\xda\xfa\xd3\x3a\xfb\xb6\x75\x86\x9d\xed\x9d\xe1\x22\xfa\xc8\xbf\xad\x9a\xbd\x2c\x5c\x44\x6f\x96\xd2\x2e\xc1\xf1\x3e\x1d\x17\xeb\xa7\x89\x07\xc2\x88\xae\x4f\x13\x0f\x24\x37\xf9\x7c\xda\x73\x20\xed\x0d\x24\x9f\xae\xf1\xcf\x70\xe5\x39\xcd\xcd\xca\x10\x9f\xa6\x53\xfa\x33\x84\x19\x0c\x63\xee\xbc\x79\x5c\xe4\xe4\x97\x6b\x98\x1a\x28\xce\x96\x3e\x0d\x46\x50\xb8\xb7\xbe\x7e\x3a\x6e\x40\xd9\x1d\x5f\xc7\x0d\x08\xa3\x14\xbd\xb2\x5c\x64\x63\xd9\x3e\xdd\xec\x20\x79\xd7\x88\xb7\x98\x8b\xf0\x46\xa6\xcf\x13\xf5\x40\x78\x60\xe5\xa7\x09\x09\xca\x60\xb6\xe7\xf5\xe4\xa2\xe8\x24\xf3\x2a\x72\x11\x4e\xa2\x3f\xc3\x3f\x40\xf2\x94\x87\x4f\x4b\x10\x64\xd7\x17\x3f\x5d\x45\x9f\xae\x22\x0c\x6c\xef\x30\x17\xe1\xe9\x7c\x9f\xc6\x21\x48\xc3\xc1\xc3\x18\x91\xcf\x18\x11\x07\x52\xed\xc5\x4f\x87\x12\x4e\x1b\x6f\x3a\x17\xd1\xa7\x85\xb0\x42\x9e\x58\xec\xee\x20\x6f\x3f\x17\xd1\x1d\xcf\x75\x45\x81\x32\x6d\x35\x5d\x51\x20\x4d\x0c\x86\x4f\x57\x14\xc8\x2e\x99\x7b\xfb\xb9\x88\x8e\x87\xc9\xdb\xcf\x45\xe1\x5e\xf3\xfa\x19\x93\x0d\xb2\x47\xc9\x79\xd5\xb9\x28\x1e\x9c\xea\x4d\xe7\x22\x3c\x60\xff\xd3\x44\x05\xd1\xa7\xbf\x68\xb9\xdc\xc0\xec\x16\xa5\xcf\xd8\x42\x10\x4e\xc8\xbd\xea\x5c\x84\xc7\x85\x7a\xd5\xb9\x48\x1e\xd5\xf0\x19\xfe\x01\xd2\xde\xdc\xf4\x69\x97\x7e\x06\x25\xba\xbb\xe9\xd3\x30\x05\xd1\x51\xea\x9f\x0b\x1f\xa0\x18\xa9\xfd\x69\xaa\x82\xec\x9e\x43\x6f\x46\x17\xd1\x99\xdf\x78\x33\xba\x28\x06\xbb\x79\x33\xba\x48\x7b\x77\xd3\xe7\x62\x08\x28\xc6\x00\x7d\xc6\x86\x80\x72\xd8\xc9\xb4\x71\x41\x2a\x9e\x25\xf8\x69\xd1\x82\x61\xbc\xc8\xa7\x45\xfb\x5d\x7b\x88\xe1\x47\x8d\x0e\x01\x25\xa9\xdd\x74\xa8\x81\x18\xda\x03\x3a\xd4\x40\x32\x4e\xce\x4b\xd5\x45\x76\x47\x85\x97\xaa\x8b\xb4\x77\x6c\x7d\xae\x9a\x80\xa2\x5b\xda\x8b\xd6\x45\xda\x7b\xbd\x3e\x7d\x71\x9f\xbe\x38\x3f\x00\x7d\x71\x9f\xf7\xa1\xda\xa9\xb4\x55\x41\x0c\x55\xa5\x21\x94\x5e\x84\xee\x61\x1c\x5e\x84\x5e\x3f\xee\xa1\xd0\xb9\xff\x19\x31\x0e\x52\xd9\x4f\x99\x3d\x16\xad\x91\x6c\x9f\x4e\x36\x30\x5c\xf8\xf7\xd6\x73\x91\x9d\xb5\x79\xeb\xb9\x48\x7b\x93\x98\x77\x9c\x8b\xf0\xa8\xf5\xcf\x05\x98\xef\xdd\xb5\x34\xcd\x0f\xec\xd5\x2a\x44\xfe\xae\xc0\x7c\xee\xd5\x76\xe6\xf4\x69\xd4\x82\x18\x8a\x56\xa3\x16\x84\x1b\x21\xbc\x0b\x5d\x14\xef\x31\xf0\xe2\x73\x11\x43\x4d\xa6\x21\x0a\x62\xec\xa7\x14\xc6\xe7\xb7\xe3\x17\xac\xcf\xeb\xf3\x9c\x10\x87\x4f\x2d\x51\x10\x5c\x3e\xd5\x0e\xac\x3b\x11\x6c\xd2\x69\x5e\x42\x2e\x82\x35\xfd\xe6\x25\xe4\x22\xc6\x12\x76\xf3\xc2\xf1\xf6\xf3\xc2\x71\xf2\xc2\x6c\x13\x31\xd6\xb0\xde\xbc\x70\x5c\x14\xca\xd5\x0e\xcc\x36\xb1\xca\xda\x48\x9b\xa6\x4d\xde\x4c\x24\x9d\x26\x39\x3d\x2c\xe6\x76\x99\x46\xcd\x93\x6f\xde\x26\x61\xc3\x26\x7f\xe0\x31\x89\x55\xf1\x65\xaf\xb6\x23\x5b\x7e\x62\xd4\x39\x74\xa4\x79\x2f\xb9\x08\x6e\x00\x6d\x5e\x2f\x2e\x52\xfb\x1b\xb6\x4b\x35\x6f\x1f\x17\x31\x92\x99\x58\x3d\xb6\xa4\x11\x57\xd2\xbc\x7c\x5c\x24\x36\xc6\x34\x2f\x1f\x17\x31\x76\x19\xad\x30\xdb\xc9\x39\xcc\xaa\x79\xf9\xb8\x08\xee\x09\x69\x47\xb6\x71\x08\x90\xc7\x59\xdf\x8e\x62\x4d\xb8\x65\x62\x28\x02\x3c\x64\x22\xb9\xbb\xb0\x1d\xc5\xfc\xb9\x64\x75\x64\x0a\x16\xbe\x89\x7d\xc5\x55\x56\xcd\x5b\xc5\x45\x8c\x62\x92\x99\xe1\x0f\x63\xc7\x5e\xf3\x56\x71\x11\x5c\x4d\xd2\x8e\x30\xfb\x30\x7b\x2a\x19\x16\x9f\x75\x23\x6e\xbf\x69\x47\xd8\x36\xdc\xd2\x30\x32\x02\xab\xb6\x0d\x26\x17\xae\xf1\x76\x54\x0b\x51\x39\xa4\x42\x81\x55\xdb\xa6\x12\x2b\x67\xa7\xa9\xca\x10\x53\x6a\xec\x24\x0b\x51\x2d\x04\xbf\x58\xfd\x45\x77\x7b\x55\x3a\x78\x55\x86\xd5\x0e\xce\x8b\xcd\x42\x34\x3b\x38\xc2\x6f\x0a\xa7\xed\x41\x81\xb2\x36\x0b\x86\x49\xc5\xa9\x61\xed\x68\x4a\xa7\x29\x1d\xdf\x0c\x93\x18\x3a\xac\x77\xb3\xf8\x0b\x79\x56\xf3\xb2\x57\xb0\x01\x8c\xc3\x74\xdb\xd1\xac\x91\x9b\xcf\xad\x51\xb3\x46\xcd\x1a\x51\xfc\xa6\x58\x39\xd3\x6b\xf8\x4d\x35\xbf\x02\x56\xc2\x46\xf1\x29\xeb\xcd\x56\x00\x16\x4c\xda\xd1\xac\x37\x2b\x61\x23\xf3\x62\xb7\xde\x9e\x67\xd2\xf9\xc5\x6e\x51\x3b\x27\x35\xf8\x15\x77\xfb\x34\x06\xd5\xcf\x17\xcd\xcb\x50\x59\x36\x93\xb6\x63\x28\x31\xf6\x84\x0d\xbf\xd8\xa1\x74\xb0\x82\xc6\x7e\x4a\xe9\xb0\x86\x46\x48\x55\xf3\x36\x73\x31\x08\x83\x6a\xc7\x50\x14\x83\x30\xfd\x41\xa7\x1b\x8a\xc2\x33\x8a\x2b\x65\x1d\x8a\x62\x20\x8a\xa0\x1f\x0e\x45\x31\x08\x26\x1f\x88\x62\x28\x0a\x36\x93\x0d\x3f\x86\x69\x43\x72\xd2\x30\xb7\x75\x35\x6f\x41\x17\x89\x53\xe2\x9a\xb7\xa0\xb7\x63\x52\xef\x20\xaf\x69\x21\xd8\x13\x31\xfc\xbc\xa7\x85\x98\x16\x82\x4f\x66\x3a\xaa\xba\x27\xa2\xee\xc7\x94\x98\x37\x6c\x05\xd2\x39\x95\xfe\x42\x19\x0d\xe9\x9c\x0a\x8c\xc3\x58\xaa\x5f\xe9\x69\xc1\xb6\x2d\xa3\xc4\x4e\x4b\x76\xe2\xd8\xe8\x48\xec\xb4\x91\x4e\x0b\x6b\xfe\x0a\x11\x53\xa6\x38\x6c\x9f\x96\x1f\xaf\x5b\xb2\x8d\x2e\x4b\x71\x39\xe7\xb1\x02\x97\xf2\x59\x28\x78\x95\x9a\x17\xaf\x8b\x18\x76\xa8\xcb\x92\x71\x42\x19\xbb\xe1\x9a\x17\xaf\x8b\xe0\xfe\x85\x76\x5c\x96\xd5\x5b\x47\xed\x3d\x97\x7d\x9f\x98\xd6\x51\xa9\xf8\x65\xbb\x5d\xec\x99\xeb\x54\xfc\xb2\xdd\x58\xf3\x1b\x76\x8b\xdb\xec\x6f\x8e\x54\x50\x37\xdd\x66\xcf\xd6\xb7\x61\xb7\xb8\x15\x05\x77\x6c\x65\x45\x71\xdb\x48\xdb\xe9\x66\x5b\x3e\xf6\x57\x36\xd8\x73\xa6\x47\x3b\x1e\x2b\xc9\xa2\x1f\xc7\x88\x34\xef\x62\x17\x23\x54\x74\x8f\xc5\x7f\x2c\xbe\x49\xca\x95\xe3\xc8\x8e\x46\xf1\x1f\x7f\xf2\xd9\x3f\x49\xf9\x1f\x6b\xb9\x90\x9b\xb5\x7c\xec\x2b\xdb\x44\xb1\x14\x76\x15\x8f\x8e\xf1\xab\x7c\x6d\xa4\x57\x03\x82\x17\x5f\x8b\x8f\x1f\x6e\x04\x63\xca\x6b\xf1\xf7\x2a\x20\xe2\x79\x95\xc5\x4b\xb7\x70\x14\x7b\x2d\xfe\xeb\x45\xfe\x14\xff\x33\x7b\xef\x49\x70\x94\xfc\xcc\x5e\xfb\xa4\x93\xd7\x67\xaf\xf8\x88\x2b\xb0\xbf\x7e\xfe\xe2\xe7\x2f\x52\xae\xcf\x5e\x81\x1f\x8e\x6b\x8c\xdb\xf1\xd9\x46\x1c\xb7\x39\x1a\x62\xfd\x2c\x84\x2b\x77\xd5\x4f\xf0\xb3\xbf\x7e\x6c\x2a\x77\xf8\xfe\x94\x2b\xb1\x25\xa3\xfd\x2d\x3a\xf9\x53\xec\x9a\x47\xe8\x7a\x2f\x78\x17\x41\xc0\x69\xf3\x82\x77\x91\xd9\x2c\xd4\x12\x1e\x38\x11\x2c\x3e\xb5\xc4\x1a\x9e\x88\xd1\x7c\x6a\x98\x84\x0f\x99\x21\xc7\x2b\xdf\x45\xf1\xcb\x4b\xf8\xd1\x5a\xd2\xac\xea\xbe\xf8\x99\x64\xa3\xf2\x54\xb2\x10\x09\x0f\x93\xd9\x6b\x56\xa5\xb4\x3f\x76\x1f\xab\xa6\xf1\x4d\x21\x76\xef\x72\x17\x09\x77\x58\xf3\x2e\x77\x91\x52\x31\xe9\x36\x49\xb3\xb0\x9a\x66\x31\xb8\x48\x01\x9f\x44\x4b\x5a\x47\x60\xe0\xe3\x6d\xde\xee\x2e\x82\x79\x69\x4b\x1a\x36\x20\x06\x9d\x32\x69\xd8\x80\x18\x8c\x42\x29\xfb\x93\x19\x4d\x44\x0f\x4c\xc5\xec\x0b\xd9\xb7\x42\x52\x98\x44\x17\xa1\xd7\x78\x2d\xbc\x18\x6c\x1d\x69\x5e\xf8\x2e\x62\x74\xca\x55\x94\x2b\x47\xdb\x8c\xe1\x53\xaf\x49\x8a\x9a\xc6\x2d\xd6\xb1\xa0\xe0\xe9\xe0\x49\xbb\x26\x69\xd7\x0c\x0a\x11\x16\x22\x2c\x04\x2f\x86\x85\x08\xeb\xe8\x53\xd6\x91\xdb\xdd\xb3\x22\xd4\xd4\x49\x9a\x3a\xb6\xa4\xa6\x8e\x57\xb9\xfb\xb1\x78\x95\xbb\x48\x73\x58\x08\x4b\xaf\xf5\xa3\xa0\xc3\xd2\x07\x87\x50\x31\xc6\xa5\x6a\x3f\x24\xec\x92\xeb\xea\x5b\xd2\xfa\x01\x45\xa3\x32\x55\xcb\xa5\xa9\x33\x7c\xca\xec\x71\x0b\xb1\xe1\xa4\x79\x6f\xbb\x08\x0e\xad\x6e\x5e\xdb\x2e\x4a\xf7\x17\xb5\x61\x40\xc2\x2b\xd4\xbc\xb6\x5d\xc4\x98\x26\x29\x1c\xae\x6d\xd7\xd8\xf5\xd6\x76\x91\xd8\xcf\xdf\xbc\xa2\x5d\xc4\x98\x48\xa2\x59\x47\xb6\xa2\x4f\x3b\x93\xa6\x08\x88\x31\x69\x47\x4d\x11\x90\x1c\x95\xbc\xa2\x5d\x04\x57\x73\xb5\xd4\x2d\x2a\xee\x9e\x31\x28\x7d\xb7\x1d\xb9\xd8\x73\x4c\x84\xa3\x0d\x03\x82\xfb\x96\x9a\x17\xb9\x8b\xa4\x2d\xed\x4d\xed\x22\x58\x1e\x6c\x5e\xc1\x2e\x92\xe7\x18\xb4\xd4\x2d\x7e\xa7\xf8\x4c\x4e\xbc\x83\x5d\x94\x3d\x2e\x0c\x33\xc3\x6d\x83\xcf\xb7\x79\xbb\xba\x88\x89\xad\xee\x55\xea\x22\x79\x9a\x42\x4b\xc3\xfc\x07\xd1\xb2\xcc\x6a\xbc\x4b\x5d\xc4\x81\x15\xee\x5d\xea\x22\xe6\xe1\x53\x56\x9c\x70\xcf\x79\xf8\x94\xb5\xe4\x86\x2a\x16\x41\x5b\x9a\xb6\xd1\x64\x3f\x84\x83\xdf\x74\xc0\xc2\xfb\xc2\xe5\x4d\x2d\x69\xd7\x80\x98\x87\x4f\xd9\x46\x53\x13\x0f\xf5\xee\x95\xe8\xa2\x54\xbf\x19\xed\x0e\x50\x98\xae\x37\xef\x3f\x17\xc9\xb3\x19\x9a\x17\xa0\x8b\xe4\xac\x92\xcb\xd0\x37\x62\x62\x51\x78\x27\xba\x88\x79\x98\x99\xe2\x21\x16\x89\x2b\xb2\x5b\xd2\x3a\x01\x69\x7f\xa6\x1a\x19\xc9\x8d\x33\x4c\x2c\xd2\x65\x95\x08\x2c\x9a\xca\xf5\x32\x2f\xee\xf6\xc4\x69\xd6\xd2\x6d\x5e\xb7\x2e\x7d\xbf\x87\xdb\x4e\xc6\x9e\x18\x2e\xdb\x68\x5e\x50\x2e\x82\x83\x18\x5a\xd2\xca\x00\xf9\xb0\x14\xb7\x15\x67\x4d\x90\x0b\x94\x9a\xd7\x98\x8b\xd8\xbd\xe7\xb6\x60\xb7\x05\x43\x14\x9a\x27\x20\x08\x50\x69\xde\x6c\x2e\x62\x32\x41\xf5\x66\x73\x11\xd3\x2f\xf0\xb1\xa7\xec\x1b\x40\xf9\x45\xad\x07\x90\x3c\xcd\xa2\x25\x0d\x03\x10\x13\xb3\xd2\xdb\xc8\x45\x4c\x1b\x44\xfd\x0e\xca\x61\x53\xaa\xcc\x41\x4c\x25\xa6\x32\x07\x31\xf3\x6f\xbb\xb0\x5b\xfa\x94\x14\xea\x7f\xee\x7c\x95\x14\xea\x7f\x8f\xda\xaa\x7a\x10\xd3\x51\xe8\x53\x06\x1f\x32\x60\x52\xe9\x2d\xe1\x22\xa6\x43\xce\x67\xab\xb2\xe6\xc6\x09\xdb\x2d\x7d\xca\x00\x4f\xc7\xc4\xe6\xf4\xe2\x70\x11\x9c\xf9\xd8\xbc\xd8\xbb\x65\x56\xce\x26\x2a\xd3\x8b\xbd\x45\x69\xd8\xda\x99\x65\x32\x11\x93\x8f\x31\xab\xde\x41\x10\xd8\xd8\xbc\xeb\x5b\x64\xee\x96\x68\x59\xaf\x09\xc8\x3b\x2f\x35\xbe\xd7\x7f\x73\x87\x43\xcb\x6a\xfc\x6c\x6c\x0f\x5f\x9e\x37\x82\x8b\xc1\xae\xe8\xe6\x85\xe0\x22\x66\xf1\xa9\x6a\x52\xb5\x9d\xfd\xc9\x66\x1a\x27\x13\x54\xdf\xb4\x46\x6c\x01\x21\xee\xb9\x65\x4d\x05\x10\xb3\xf8\x94\x35\x5a\x68\x9d\x3e\x93\x93\x35\x4a\x88\xb5\x98\xf4\x99\xc4\xe1\xad\x18\x27\x59\x4b\x01\xc4\x2c\x26\x59\x88\xec\xde\x14\x93\xa6\x49\xba\xce\x30\x99\xbd\x4b\x5c\x04\xd7\x8b\x37\xef\x12\x17\xc1\x25\x52\x2d\xeb\xf0\x00\xa9\xd1\x4d\xbd\x5e\x5c\x04\xc1\xfc\x2d\x17\x85\xc8\x7d\x10\x5c\x2f\xd9\xb2\x36\x06\xc8\x9a\x60\xde\x38\x2e\x52\xe9\x4a\xac\xd8\x07\xb8\x98\xc9\x2f\xc3\xab\xc1\x45\x19\x3b\xc9\x82\x71\xbf\x52\xe1\xc2\x86\x96\xb5\x32\x40\x69\x26\x85\x25\x0b\x1c\xe9\x16\x56\x1f\x0b\x08\x6e\x66\x6a\xde\x33\x2e\x92\x07\xbd\xb4\xac\x47\x25\x1b\x8b\xcb\xb1\x2b\xcd\x9b\xc6\x45\x26\x42\xb4\x65\xad\x11\xd0\xb6\xcc\x42\xd1\x72\x64\x0f\x21\x95\xcd\x8b\xc6\x45\xe6\x56\xbf\x96\xb5\x46\xb2\xa7\xb3\x72\x60\x4b\xf3\xf2\x71\x91\xd3\x61\x31\xac\x27\x4b\x62\x9c\xbf\xd0\x72\xb5\x02\x55\x3f\x08\x96\x59\xd6\x44\xc9\xde\x99\x69\x37\xd3\x44\x01\x85\x93\x27\x9a\x77\x94\x8b\xf5\x26\x75\xd7\x6c\xc9\xee\x5c\xc6\xb8\xf1\xde\x72\x11\x4e\x8c\xbd\xa4\x5c\x04\x6b\x14\x2d\xeb\xa1\x01\xc1\x92\x61\xf3\x8e\x72\x11\xd3\x9a\x6b\x90\x80\x98\xcc\x89\xb2\xd6\x47\xde\x07\xe1\x90\x97\x76\x05\x48\xc9\x5f\xd4\x3c\x00\x45\xa7\x64\xee\x0a\xb6\x2b\x58\x9f\x52\x8a\xdc\x7b\x31\x31\x06\xb3\xd6\x01\x88\x89\x92\xf4\xc2\x70\x91\x35\xeb\xf3\xb0\xf4\x2c\x23\x35\xbb\x94\x36\x04\x08\x96\x66\x9a\xd7\x8a\x8b\x98\x7e\x24\x7a\x4b\xb2\x01\x45\x0a\x5f\x6f\x09\x48\xee\xbc\x6c\xde\x2b\x2e\x82\xc3\x89\x5b\xd6\xfa\x00\xc5\xc9\x94\xf7\x8a\x8b\xe2\x38\xec\xbd\xe2\x8d\x4b\xc4\x63\xa2\xa9\xbd\x43\x5c\x84\xbe\xaa\x3c\xfd\x49\xb7\x07\x3b\x86\x68\x69\x64\x2d\x0d\x07\x8c\x69\x7f\x9d\x46\xdc\xf8\xa2\xed\x31\xd9\x10\xe8\x37\xa2\xbb\x04\x04\x47\xfb\x36\xef\x23\x17\x45\xd7\x67\xd6\x83\x02\xb2\x16\x9c\x37\x8d\xb7\x7d\xd3\x78\xe3\x17\xb5\x20\x40\x09\x3b\x85\x16\x04\xa8\x87\x83\xee\x65\xb5\x2f\xcf\xdb\xe4\x29\xdd\x14\xa0\x1c\x76\x8a\x4b\x11\x7a\x1c\x8f\xcd\x7d\x99\x3d\x1b\x4b\xa6\xc2\xd7\x4d\x01\x12\xd7\xcc\xb6\xac\x9b\x02\x64\x62\xa7\x5a\xd6\xa8\x00\x31\x1d\x7b\x6e\xa5\xba\x57\x52\x9a\x8f\x59\x0a\xbc\x19\x5b\xff\x68\x67\x64\xed\x0c\xdb\x56\x3b\x03\xc4\x54\xf8\xda\x19\x59\x3b\x83\xa9\xaa\x17\x86\x8b\x98\xfd\xb7\xf7\x2d\xb7\xac\x19\x92\x35\x43\xba\xbf\x6e\xed\xb4\x39\x98\x3b\x7b\xeb\xb8\xf0\x9a\xd5\x96\x6f\xfb\x37\xc1\x4a\xd3\xcf\x5a\x33\xe4\xaf\x17\x91\x93\xa4\xd4\xf1\xae\x4c\xbf\x82\x47\xb1\x10\xbf\xd4\x1c\x23\x74\xb8\x80\xac\x29\x9a\x1f\x25\xf5\xd8\xff\xa8\xdc\xa3\x08\x38\x55\x63\x3a\x38\xea\x83\xf1\xb6\xf2\x69\xcf\x7a\x14\x01\xd7\x6e\x12\xde\xd9\xbc\xad\x5c\xe4\xd8\x45\xb5\x8e\x8f\x75\xa4\x37\x3c\xd6\xf1\xa1\x8e\x7e\xfc\xfa\x5b\x40\x62\xb7\x4a\xcb\xfa\x5b\xb2\xab\x44\x0e\x37\xaf\x79\x71\x38\x50\xa8\xf4\x5f\xf3\x7a\xd9\x51\xa8\x6e\x7d\xed\xcb\x9c\x11\x3f\x77\x5e\x8a\x90\x53\x09\x09\x65\x6e\x59\x7f\x0b\x88\x69\x5e\x3a\x57\x40\x72\x7e\xed\x35\xe4\x22\xa6\x06\x84\xf6\x18\xc8\x49\xe1\x68\x70\xe5\x7d\x07\x25\xd5\xd6\x94\xca\x7b\x89\xc8\x86\xd4\x70\x02\xb9\x38\x6a\x68\x38\x65\x0d\x27\x7a\xa9\xf7\x90\x8b\x9c\x19\xa8\xbc\x87\x5c\x04\xa1\xe5\xcd\x1b\xc6\x45\x26\x66\xa7\x79\xc3\xb8\x08\x42\xcb\x5b\xd1\x55\x52\xdc\x62\xdb\x4c\x3a\x4d\x72\xa1\x87\xef\xba\x68\x72\x15\x4d\x2e\x2a\xee\x3d\xe4\x22\x79\xc4\x55\x2b\x5a\x53\xa0\x1c\x7c\x8c\x25\xf9\x9b\x3b\xdc\x99\xe6\xf5\xc6\x70\x91\xd8\x9f\xd4\x8a\x16\x10\x48\x91\x68\xa6\xa2\x71\x53\xbc\x62\x12\x75\x5b\xf4\x79\x80\xe0\xa4\x84\x56\xf4\x79\x80\x94\x58\x0d\x29\x2e\xd3\x80\x7c\xd0\x87\xbd\x0c\x5c\x64\x4d\x70\xef\xf4\x16\xc9\x33\xae\x9a\x97\x7a\x8b\xc2\xcd\x5c\xad\xe8\xe1\x00\x85\x03\x40\x9a\x97\x7a\x8b\x70\x80\xf1\x4e\x6f\x91\xbb\x49\x7a\x38\xca\xb6\x2a\xf8\x9e\xbd\x62\x5b\x64\x57\x3a\xbc\x3b\x5b\xe4\x64\x29\xb4\x03\xbc\x3a\x9b\x48\xc9\x56\xc2\xfc\xc3\xfe\x89\xc8\x5c\xa7\x01\xc1\xba\x69\x2b\xea\xfc\xa2\x5b\xa2\x98\xa4\xc4\x38\xa8\xef\xd8\x49\xfe\x22\xc7\x90\xb0\xbd\xb5\x15\xbd\x0b\x60\x95\xd5\x34\xdf\x5c\x28\x0d\xb5\x53\xd4\xe6\x20\x73\xf7\x7c\xf3\xba\x6b\x11\x53\x59\xeb\x71\x00\x31\xf7\x53\x4a\x6c\x21\x73\x68\x47\xf3\xd2\x6a\x91\x74\x5f\x79\x43\xb5\xf8\x7f\x18\x3b\x97\x2c\x6b\x59\x66\x0d\x4e\xe5\x0c\x41\x48\x32\xc1\xce\x3f\x17\x6f\x7b\xfe\x43\x38\xcb\x08\xbf\x76\xbd\xad\x58\xe5\xaa\xad\x88\x4a\x5e\x48\x78\x9a\x7b\x52\x55\xe8\x07\x80\xb1\xef\xfe\xd2\x86\x4d\xc4\x74\xf8\x70\x62\xfa\xdc\x90\x33\xe9\x7e\x25\xd3\x56\xbc\x08\x74\xe3\x4b\x89\x6a\xd1\xdc\x2d\xab\x42\x47\x00\x0c\x87\xad\xd0\xea\x83\x3e\xed\x58\xad\x3e\x68\xee\xe3\x55\x61\x82\x21\x54\x42\x49\xef\x60\xd9\x41\x6e\x1e\x32\x3c\x9b\x1d\xa4\x27\xb0\xfb\x4b\x1f\xc0\x62\xbb\x2c\x5b\x6b\xce\x01\x0c\x4d\x75\x2c\x1f\x39\x1a\x2a\x28\x59\x57\x98\x86\x00\xcd\x5d\xc7\x2a\x74\x18\xc2\x7d\xa2\xc2\x43\xf6\x99\xae\x00\x99\x2e\x65\xb1\x45\xfb\xee\x49\xbb\x0f\xda\xf0\xfb\xd5\xc8\xc7\x37\x4d\xe2\xf7\x65\xd6\x01\x0c\xaa\x91\x4a\xa9\x6c\x11\x3b\xde\x66\x1c\x7e\xf9\x07\xeb\x6d\x09\xa1\xe3\xb0\x61\x2f\xfa\xee\x87\xe9\x64\x0a\x18\x3b\x49\x2c\x35\xb6\x45\x2f\xdb\x6a\x02\x03\xb4\x7d\xf7\x87\x36\x9f\xf5\xb0\x6c\x80\x53\x6a\x6c\xd7\xa7\xb1\xfd\xfd\xd0\xb7\x40\x85\xad\xb4\x11\xde\xa4\x29\x8d\xef\x5c\xf6\x3e\xfb\x5e\x55\xfc\xad\xf6\x58\xca\x6d\x8b\x66\xfc\x11\xce\xb4\x84\x15\x22\x8e\xc1\xba\x30\x60\xb0\x2f\x5d\x29\xb7\x2d\xfa\xf4\x43\x36\xe3\x01\x72\xc3\xb5\x8a\xcb\xee\x7c\x91\x9b\x37\x67\xc2\x03\x74\x27\x09\x42\x7f\x05\xe4\xe6\x68\xa8\x6f\x02\x72\xf3\x15\xd7\xeb\x00\xc9\x82\x93\x0a\xbd\x03\x10\x94\x75\x57\xe8\x1d\x80\xd8\x1c\x4d\xf4\x0e\x40\x73\xc3\xb6\x0a\xdd\x03\x90\xac\xeb\x28\xf5\xb6\x45\x38\x71\xa0\x92\xb6\x08\x13\x8c\x0a\x69\x8b\x46\xe5\x50\x85\x56\x1e\x34\x77\x47\x2b\x65\xb3\x45\x63\x21\x69\xa9\x91\x2d\x92\x6d\x2d\x4a\xdd\x6a\x91\x1b\x89\x3c\xe5\xa7\x45\x8b\xef\x3b\xd3\xa8\x83\x96\xbe\x0f\xe6\x4a\x40\xeb\x7e\x54\x9a\xeb\x70\x01\xad\x2f\xbd\xe6\x1a\xe4\x66\xff\x68\xae\x41\x0b\xd3\xa1\x0a\x44\x8b\x30\xab\x39\x9c\x8d\x00\x49\x99\x50\xa9\xf3\x2c\x9a\x5b\xd5\x95\x7a\xcd\xa2\x3b\x1f\xa9\x38\xb3\xc8\x8d\xe4\xa7\xe2\xcc\xa2\xb9\xaf\x5e\x0d\xf3\x0e\x20\xcd\xff\x0c\xf3\x0e\x60\xb2\x08\xa8\x86\x39\x06\x90\x14\x91\xd6\xb0\xa6\x03\xe4\x46\xaa\x6d\x38\xf7\x00\x06\xa5\xb8\x35\xa8\x9e\x15\xef\x25\x69\x99\xb9\x02\x90\x9a\xf0\xa1\x85\x05\xb9\x91\x0b\x53\x8a\x59\x04\x8b\xe0\x0a\x59\xe6\x0f\xc1\xbe\x92\x35\x8c\xf8\x41\x52\x69\x58\x2a\x31\x8b\xdc\xfc\xa1\x36\x17\x34\x6b\x04\x54\x4f\x16\x1d\x81\x96\x52\x16\x59\x74\xd6\xe8\x96\xb2\xc5\x22\x37\x7f\x68\x6c\x0c\xa6\x31\xc3\x48\x1b\x91\x0e\xdd\x98\xe6\x61\xd0\x3b\xdc\xc6\x7e\xf3\xd0\xe9\x21\x27\x07\xf9\x56\x87\x21\x2e\x58\xec\x3c\x51\x43\xa3\x08\x72\x23\xe3\x37\xb4\x80\x20\xd8\x38\xa3\x86\x73\xfd\xc3\x6d\xff\xd2\xce\x36\xc3\x0e\x72\x23\x15\xa1\xf8\xb0\xc8\x8d\x71\x65\x4c\x5b\x86\x54\x17\xb5\x44\x35\xb4\x6d\xa0\xb3\x17\x4f\xa9\x47\x2c\x9a\x7b\xf2\xd5\xd0\x6a\x81\xe6\x3c\xd8\xd0\x1a\x81\xdc\xc8\xc3\xa9\xe8\x2b\x7a\xe3\x2b\x1f\xbb\x3f\xdc\x79\xc9\xf8\x58\x87\xe1\x25\xc8\xcd\x97\xcc\x7c\x34\x88\xb0\xcb\x76\xef\x72\xa7\x92\xa3\x3c\x97\x8f\x64\x77\x97\x15\x5e\x02\x33\xd4\x20\x50\x8d\x2e\x25\x7e\x45\x6e\xf6\x98\xa3\x39\xc8\x8d\xc4\xa2\x7a\xbe\x22\xcc\x76\x2b\xde\x2b\x22\xba\x87\xbc\xe2\xc1\xab\x42\x54\x33\x9c\x3f\x07\x7d\xfa\x3d\x38\x82\x83\x98\xbe\x89\x86\x97\x9f\x12\xaf\xaf\x8a\xc3\x35\xc8\x8d\x9c\x9e\xda\xbc\x22\xb7\xee\xb9\xbc\xe2\xb7\x42\x85\x91\x46\x89\x5d\xf1\x8d\x17\x4a\xec\x8a\xdc\x88\x61\x86\xe1\x25\x48\xeb\x6f\x94\xd3\x15\xa9\x7b\x36\x0c\x03\x87\x9b\xd6\x23\x0a\x5e\x8a\xe7\x8a\x3e\x7d\x9f\x2e\x9b\x71\x31\x4d\x8d\x77\x39\x1c\xaf\x87\xe3\x35\x16\x77\x18\xbb\x0d\x63\x37\x7c\x79\x45\x77\x45\x6e\x78\xda\xc3\x21\x1c\xe4\xe6\x2b\x66\xbc\x85\x0e\x6f\xa2\x9a\x5f\xea\xf0\x8a\x40\xc3\xa1\x86\xc3\xf5\x70\xb8\x76\x68\x7b\xbc\xc9\x47\x57\x72\xf7\x97\xbe\xe8\x8f\x11\x11\x37\xee\x34\x38\xc8\x8d\xb1\x7f\x18\xbc\x81\x56\xff\x92\xc7\x1e\x46\x6d\x20\x37\xb2\x63\xc3\xa8\x0d\xe4\x86\x3b\xa4\x9a\xaf\xc8\xcd\x2f\x43\xcb\x00\x72\xf3\xe1\x6b\x06\x86\x66\x80\x68\x72\x68\x06\x40\x73\x9f\xcb\x52\x07\x58\x24\xda\x16\x35\x9c\xe0\x06\xcd\x9d\x22\x4b\x6d\x60\x91\xfa\x07\xc3\xe0\x0e\x74\x2b\x49\xd2\x14\x38\x48\x76\x44\x2d\xe5\x82\x45\x73\xc3\xca\x4a\x36\x50\x12\xb9\x91\x13\x52\xcf\x57\x34\xb7\xa2\xac\x34\xd4\x02\xc9\xf2\x94\x4a\x23\xad\x74\x5f\x48\xb6\xa7\xac\xd4\x10\x80\xdc\xf8\xae\xd2\x64\x33\x48\x8b\xf6\x52\xdb\x00\xa6\x45\x66\xc9\x7e\x43\x22\x37\x62\xa8\xec\xb6\xb6\xd3\x8f\xe9\x0f\x0f\x0f\xd1\x41\x7c\xa3\x2a\x0d\x8b\xdc\x48\x20\xa4\x06\x04\xe4\x36\xfc\xe1\xcf\x43\xac\x61\xb1\x11\x1a\x10\x24\x84\x73\x23\x51\x94\x1a\x90\xd4\x80\xf0\xbd\xa7\x33\xd5\x20\x29\xac\x2c\x75\x86\x45\xa2\x14\x55\xea\x0c\x8b\x86\xa4\x62\xa5\x79\x65\xd0\x8c\x2d\x94\x1e\x16\x51\xdf\xb9\x6c\x17\xa1\x1d\x9b\x49\x95\x3a\xc3\xa2\xed\x58\x9e\x34\x37\x9c\xe3\x7b\x57\x38\xbf\xc9\x61\x90\xec\xa3\x59\x69\x68\x07\x72\xc3\xff\x48\xcd\x18\x58\x6c\x73\x59\x4a\x0f\x8b\x70\x5a\x2c\xb5\x6c\xa0\x95\x7d\x68\xb4\x07\x72\xe3\xdb\x56\x8d\x58\xe4\x46\x68\x94\x06\x80\x20\x10\xda\xaf\xd4\xfc\x81\x44\x10\xaf\xd2\xda\x3d\xd0\x1c\x33\xd5\x2c\x16\x89\x10\x47\xa9\x59\x2c\x12\x31\xaf\x4a\x67\xaf\x41\xa3\x86\xbb\x94\x2c\x16\xbd\xe1\xe9\x65\xd9\x2e\xd6\x2f\xb0\x65\x66\xa5\x96\x14\x34\xb7\x49\xad\xb4\x6c\x0e\x34\xeb\x1f\xd3\x59\x68\xd0\xd9\x4f\xb2\xd2\xc8\x11\xe4\x66\x87\x19\x39\x82\xce\x26\x5d\x95\x4e\x39\x83\x68\x3e\x6f\x03\x47\x10\x56\xb0\xa6\xf6\x16\xa4\x45\x7f\x69\xd5\x1c\x78\x1b\xc6\x25\xcd\x0d\x23\x93\x9c\x4e\x2d\xa6\x59\x5f\xd0\xdc\x99\xb5\x14\x45\x16\xe1\x40\xa0\x28\xb2\x18\x4e\x97\xa8\x89\x2c\x7a\xf9\xdc\x8c\x08\x41\xa4\x77\x69\x44\x08\x7a\xf3\x87\x86\x7f\x20\x58\x00\x55\x69\x06\x19\xc4\xf0\xa3\x31\xeb\x9b\x2e\x40\xf5\x7d\x75\x7e\x19\x84\xa9\xac\x34\xfa\x03\xb9\x11\xbc\xaa\x92\x2c\x7a\x6c\x5e\xd1\x17\x71\x67\x80\xf5\x87\x46\x7a\xa0\x35\xc6\xc9\xd4\xc4\x83\x36\xb1\x15\xa9\x89\x4f\xc3\x3a\x3b\xcc\xb0\x0e\x84\x25\xb0\xea\x1f\x8b\x64\x67\xca\x52\xff\x58\xf4\x66\x17\x6a\xf5\x41\x77\x0e\x21\x0f\xdb\x75\x38\x56\xd0\x2e\xad\x3e\xe8\x4e\xbe\xe5\xe9\x15\x4f\x06\x06\x9c\x9d\xd4\xea\x83\x28\x87\x0f\x4d\x7c\x9a\x41\xc6\xac\xa5\x19\x64\xd0\xbb\x8f\x43\x0b\x0f\x92\x65\x8a\x95\x5a\xf8\x74\xa6\xba\xec\x30\x03\x37\x90\x9b\xef\xbe\x81\x5b\x1a\xb8\xe1\x64\xab\xc2\x2c\xc2\xb4\x6e\x1a\xcb\xa5\xb1\x1c\x71\x43\x3a\x07\x0d\x3a\x3b\x2e\x54\x9a\x0f\x06\x69\x31\x65\x1a\xde\x81\x6e\xa9\x69\xea\x07\xa4\x7e\x00\xae\x6c\x9a\xb0\x05\x4d\xa3\x9c\x66\x67\x41\x1a\x04\xa6\x71\x1b\x48\xd3\x5f\xa9\x1f\x90\xfa\x01\xeb\x6f\x91\xc7\x4a\xdd\x04\xd0\x34\x9a\x6a\x40\x8b\x16\xec\xd3\x52\xa9\x9f\x00\xa2\x7b\x2b\xba\x09\xa0\x3b\x8b\x9b\xba\x09\xa0\x95\x83\x90\xd5\x72\xa0\x77\xbb\xc5\x10\x11\xf4\xe9\xad\xe8\x4c\x80\xfe\x0d\xf7\x46\x8d\xa0\x35\x5f\x53\xcb\xec\x40\x73\x2f\xe5\x4a\x3d\x88\xd4\x83\xb0\xab\xf4\x20\x40\x73\x5f\xe3\x4a\x1d\x01\xd0\x82\x48\x26\x75\x04\x40\x6e\xd8\xe4\xd2\xc2\x83\xc5\xa6\xb6\x55\xe6\x6a\x41\x33\x09\x52\x56\xba\x81\xdc\xbe\x43\xe5\x21\x76\x06\x21\xe1\x54\x66\x74\x41\x77\xbe\x45\x91\x6a\xb1\xd0\x37\xab\x32\x7d\x0b\x72\xdb\xbd\xe2\xe5\x21\xf3\x4d\x93\x43\x8f\x87\x1e\x36\x1c\x5f\x1c\xfa\x79\x88\x7d\x79\x3c\x97\xf1\x27\x68\x46\x0b\xea\x5d\x8b\x5e\xdf\x7f\xa5\x87\x88\xa9\xf9\xd6\x4b\x1f\xa3\xf4\x31\x76\x7f\xe8\x15\xdd\xe6\x90\x01\xa7\x4c\xf0\x82\xce\x36\x87\xa5\xde\xb5\x68\x9d\xaf\xb8\xf4\x31\xc0\x32\xa7\x5f\x2e\x0c\x00\x3d\x3c\xbd\x99\x61\x10\x6c\xd9\x50\x65\xdc\x5a\x6a\x7a\x32\x52\x95\x6e\x07\x68\x6e\x1a\x5e\x65\xe0\x0a\xba\x51\x5e\x39\xed\x0d\xd6\xb0\xf3\xf5\x4e\x40\x67\xb7\xd0\x52\x61\x5b\xac\xf0\x79\xe8\xb0\x94\x11\x2f\xa6\xa3\xc2\xb6\xea\xb0\xec\xfe\xd7\xe9\xa1\xf3\x7f\xff\x37\xd9\x25\xac\xca\xd2\x3a\xd0\x4d\xf9\xaa\xa6\x2d\xb2\x11\x7a\x94\x73\xd7\x20\x9b\xad\x37\x2e\x06\xbd\xe3\xf4\x95\xd3\xd9\xa0\x99\x38\x2c\x4b\xeb\x40\x36\x5e\x73\x55\xb8\x45\xb6\xcd\x1f\xda\x2e\xa6\xa9\xad\x09\x50\x83\x5b\x34\xb7\x07\x2f\x15\xb7\x45\x36\x86\xbd\x72\x81\x00\xe8\x06\xff\xa5\xdf\x01\xd6\xf0\xdd\xd1\xc9\x28\x15\x43\xbd\x6f\xc3\xee\xca\xef\xfc\xdc\xb8\x8e\x07\xc8\xf6\x1d\xf2\x81\xe0\x78\x18\xb0\x97\x95\x74\x20\x9d\x2c\x2f\x57\x08\x94\x2b\x04\xd8\x1e\xbc\x4a\xff\x04\xa4\x89\xc9\xd2\x3f\x29\x77\x30\x34\xef\xa4\xf0\xb7\x48\xbd\x85\x32\x27\x5e\xca\x94\x4e\xff\xcb\x8f\xd2\xed\xb4\x37\x0f\x79\x9b\xb5\xf8\xa1\x97\xf4\x36\x49\x08\xb0\xcf\x6f\x29\xfb\x2d\x9a\xbb\x94\x57\x99\x13\x2f\xe7\xc1\xc3\x1b\xf0\x9e\xd0\xfd\x76\x71\x41\xe9\xff\x80\x6c\xe4\x98\xca\x92\x3b\xb0\xd8\xfe\xae\x14\x02\x17\xbd\x7c\xd5\x4d\x2e\x80\x6e\x74\x5e\xfa\x3f\xa0\xb9\xcb\x7a\x29\x04\x2e\xba\x33\x79\xa5\x03\x04\x1a\x9b\xab\x54\x99\x5c\x00\xd9\x48\x44\x95\x29\x71\x90\x8d\x14\x93\xda\xe0\xa2\x05\xd1\x40\xe9\xfe\x80\x6c\x24\x04\x4a\xf7\x07\xa4\x09\x81\xd2\xd7\x01\xc9\x0a\xb9\x2a\x1d\x1b\xd0\x91\xd0\xad\x32\xad\x0d\xba\x93\xfd\xa5\xaf\x03\x9a\xd1\x7f\x99\xe9\x06\x89\x5e\x53\xa9\x29\x2e\x16\x7b\x03\x56\x99\xbb\x00\xd9\xb0\xf0\x4a\x8a\x8b\xc5\x76\x7b\xa5\xa4\xb8\x08\xb3\x55\xa5\xaf\x53\x16\xff\x97\x2f\x94\x13\xe1\x60\x98\x41\x29\x3d\x1b\xd0\x9b\x23\xba\x99\x0a\x10\xc6\x11\x65\x5a\xa2\x54\xd7\xf3\xab\x37\xb1\x0c\x82\x7d\xed\xaa\x2c\xce\x07\xd9\x3c\xbd\x6e\x0c\xc8\xd7\x39\xfc\xd3\x2a\x2b\x4b\x2e\x92\x6d\x49\xaa\x4c\x64\x80\x64\xef\xd0\xaa\xd3\x17\xf0\xc5\x62\x29\x61\xa9\x54\x2e\xb2\x61\x6e\x4b\x8f\x06\x64\xf3\x35\xd5\x7d\x01\x2d\x90\xda\xab\x32\xb7\x51\x56\xfd\xa7\xff\xe6\xad\x5c\xcb\xde\xe3\xf6\x4c\x59\x83\x6c\x3e\x69\xb3\xcc\x20\x1b\x41\x45\xe9\xad\x80\x3e\x6c\xac\x59\x0b\x90\xcd\xf7\xd4\x2c\x33\x08\xab\x64\x55\x1c\x17\x11\x1a\x2c\x7d\x1a\x90\x8d\xbc\x58\xe9\x7a\x80\xb4\x58\xbb\x74\x2a\x40\x3a\xb1\x58\x3a\x15\xe5\xf4\x72\xf9\x1d\xe8\x42\x80\x6c\x1a\x1e\xdd\x05\xd5\xc5\xa7\x27\x73\xe6\x18\xb4\xee\xd0\x6a\x0e\x02\x34\x27\x86\xca\xec\x34\xc8\xe6\xc8\x61\x0e\x02\x24\x72\xa2\x55\x96\xea\x81\x3e\xbc\x6f\x0b\xf5\x41\xff\xcc\xb9\xfe\x09\x58\xec\x2f\x58\xa5\x7f\x02\x56\x38\x24\x38\x0b\x0d\x46\x7c\x57\xb4\xc3\x58\xa7\x38\xb5\x28\xa6\x2e\x40\x67\xb7\x92\x52\xe2\x5c\x74\x36\xe4\x28\x25\xce\x45\xd7\x3a\x29\x71\x2e\x86\x8b\x48\xa6\xc9\x0c\xf0\xf6\xa1\xff\xb6\x3c\x46\xf1\x21\x83\x90\x1a\xe7\x22\x10\xa3\x2d\xf5\xcc\x45\xb0\x0d\x6b\xa9\x67\x2e\xc2\xc9\xe5\xa9\x67\x03\x16\x7b\x28\x96\x12\xe7\x22\x9d\x5b\x56\xcf\x5c\x34\xc5\x12\x6a\xea\xda\x80\x6e\x15\x92\x1a\xe7\x22\xb6\xef\x97\xe5\x21\xdf\x94\xe2\xd0\xf4\xd0\x64\x5f\x10\xda\xea\x7c\x36\x08\x76\xac\xac\x69\x92\x65\xba\x57\x57\xf3\x5c\xb6\xb5\xf1\x05\x86\x57\xb4\xad\x2e\x07\xf0\x87\xa6\xe4\x91\x2b\x4f\xcd\x95\x72\xe5\x22\x5c\x25\x3a\xcd\xbb\x80\x98\xf6\xa1\x79\x17\x10\xec\x3b\x53\x53\x07\x08\x04\x3b\x8d\x95\x3a\xe7\xa2\x37\x7b\x5a\xff\x07\x24\x9b\x03\xd7\xd4\xd9\x99\xdf\x7e\x16\x34\xd5\x45\x8d\x33\xbe\x3e\xe4\x8e\x74\x80\x40\xb0\x07\x60\x4d\x33\x36\x20\x8d\x47\x15\x43\x17\xa9\x67\x36\xcd\xd8\x80\x34\xe5\x3f\x9d\x18\x00\x0d\x19\x98\x9a\x4e\xc6\x83\x66\xe5\xd0\xd4\x4d\x9a\xba\x49\xd4\x17\x4d\xdd\xa4\xa9\x9b\x44\x36\x60\xea\x13\x81\x16\xbe\xc2\xd3\x12\x3f\x90\xdf\xf3\x36\x63\x03\x9a\xba\x17\x35\x75\x94\x40\x47\x49\xa2\x94\x56\xaf\x4f\x5a\x9d\xcd\x2f\x4b\x69\x75\x11\x56\x3c\x2a\xad\x2e\x1a\x9a\xba\xa5\xb4\xba\xe8\x0e\x3d\x4a\xab\x8b\xee\xa2\xb6\x69\x39\x1f\xe8\x16\x35\x4d\x33\x3b\xa0\xbb\x24\x40\x01\x76\x91\x0d\x7b\x38\x9d\xda\x07\xf1\xdd\xb9\xae\xd3\xd4\x75\xf2\x25\xd0\x75\x02\xdd\xa5\xa1\xd3\xa9\x0e\x90\x48\x8c\x95\x62\xee\xa2\xbb\x30\x65\xea\x4c\x81\x70\x29\xe2\xd4\x99\x9a\x3a\x4e\xf6\xab\x8e\xd3\x74\x6f\xe7\xef\x87\xb6\xbe\x28\x15\x23\xa6\x52\xcc\x5d\x24\x4a\x77\x35\x9d\x36\x01\xcd\xa9\xe6\xa9\x93\x04\x5a\xb0\xff\x6c\x4d\xbd\x24\x10\xec\x4d\x5f\xca\xc0\x8b\x6c\x98\x9a\x69\x4d\x21\x08\xa4\xbd\x6a\x9a\x38\x9a\x26\x8e\xb0\xad\x53\x5f\x0a\xe4\xc6\x20\x3c\x4d\x1c\x81\xe6\xda\x8e\xa9\x2f\x05\x9a\xaa\x26\x35\x75\xa6\x40\xa0\x13\x52\xd3\x69\x99\xe9\xb4\x4c\xb5\xbf\xf7\xdf\xac\x69\x01\x23\xc8\x46\x4e\x75\x5a\xc0\x08\xba\x89\x7d\x15\xed\x45\x0c\xdf\x4a\xd3\x4f\x20\x4d\xa9\x4f\xdd\xaf\xe9\xc6\x66\xfe\x50\x5f\x6b\xea\x6b\x39\x32\xb9\x44\x13\x24\x9b\x75\x95\x8a\xf6\x22\x5d\x3a\x3e\x4d\x35\x81\x6e\x65\xd8\x74\x52\x08\xc4\xb4\xdb\x75\xbf\x40\x68\xc2\xa6\xf3\x44\x20\xd8\xed\xae\x54\xc2\x17\x2d\xbc\x47\xdd\x2f\xd0\x3b\xc9\x2d\xb5\xf1\xc5\x30\x17\x34\x4d\x35\x81\xd4\xbb\x53\x2e\x5f\x74\x54\x4a\x6a\xea\x7d\x81\xb4\x84\x69\x3a\x9b\x04\xd2\xaa\xeb\x69\xc6\x08\x34\x8b\xd9\xd5\xc6\x17\xed\xcb\xcd\x4d\x3d\x32\xd0\x54\xa6\x29\x05\xf3\x45\xa2\x75\x59\x53\x2f\x0d\xe4\xf7\x65\xbb\xe0\x61\x7e\x4a\x21\xfe\x97\xdd\x43\xfe\xe9\x1b\x59\xf5\xe5\xa6\xbe\x1c\x26\x78\xea\xcb\x4d\x7d\x39\xbb\xda\x89\x28\xb0\x86\x2f\xaa\x45\x02\x53\xf1\x10\x3c\x9b\xa9\x67\x06\xba\x0b\x2d\xa7\x9e\x19\x08\xd3\x19\x2a\xf4\x8b\x74\x99\xdb\x74\x86\x09\x84\xa1\xb8\xda\xfb\x22\xdb\x77\xc8\x1e\xa3\x6e\xc0\xf0\x76\x5a\x37\x00\xa2\x6c\x84\x75\x03\xa0\xa5\x63\x89\x25\x84\xa0\x4f\xcd\x82\xd3\x50\xa0\x87\x0f\xd7\x8c\x14\x68\xe3\x1b\x57\x9d\x9a\x02\xe1\x74\xc2\xd4\xef\x03\x4d\x49\x98\x9a\x3a\x7e\xd3\x8a\x83\xf2\x90\x2f\xd4\x8d\x3f\xaf\x3b\xe2\x3a\x4e\x90\x9f\xef\x61\x6a\x0a\xa4\x61\xea\x7c\x6c\xd9\xc3\x93\xf4\xa3\x31\xe7\x04\xd2\x85\x4f\x53\x5f\x70\xea\x0b\xea\x67\xe8\x0b\x82\x6c\x76\x8f\x25\x08\x20\xbf\x21\xc7\x19\x2a\x90\xcd\xa6\xea\x30\xce\x2f\xe7\xe4\xc8\x61\xce\x09\x74\x27\xe7\xa7\x1e\x23\x88\xcf\x2c\xe8\x31\x82\xde\x1d\x45\xf5\x18\x41\xff\x46\x77\x7d\x41\xd0\x54\x48\xaa\xa9\xe7\x07\xfa\xf6\xfd\xd2\xc6\xfe\xc8\x00\x39\xcc\xe9\xd3\x81\xc6\x56\xee\xb5\xac\x35\x04\x8b\xdd\x74\x6b\x99\xbf\x02\xe1\xa4\xd5\xd2\xcd\x03\xd1\xc3\xff\x1a\x1e\xa2\xf6\x22\x3d\x57\x7a\x28\x49\x7b\xbc\xaf\xca\xd2\x0d\x03\xdd\x79\xd9\xa5\x7f\x05\x3a\x6a\x12\xb5\xf4\xaf\x40\x63\xef\x9b\x5a\x7a\x4e\x4b\xcf\x89\x54\xc2\x72\xe1\x03\x68\xd6\xdf\x2c\x27\xb1\x96\x05\x0e\xa4\x63\x96\x0b\x1f\x40\x36\x82\xe7\xa5\xe7\xb4\xdc\xe8\x61\xf7\x5c\xa7\x87\x18\x24\x97\x3f\xbc\x3c\xa4\xcd\x27\x28\x59\x2e\x7c\x58\x61\xc2\x81\xb7\x7f\xb9\xf2\x01\x64\x23\xa6\x5b\x3a\x45\xa0\xeb\x14\x2d\xdd\x1d\xd0\x4c\xe5\x2f\x27\xa8\x40\x37\x23\xbf\xcc\x0a\x81\x66\x39\xf5\xd2\x03\x02\xdd\x7c\xc0\x72\x91\x03\xc8\x46\x78\xbb\xf4\x80\x40\x73\x75\xf2\x32\x51\x04\x9a\xab\xbe\x97\x4e\x11\x08\x47\x9e\x65\xa2\x08\x2c\x36\x3c\xae\xa5\x9b\xb4\x74\x93\x96\xe7\xb2\xf5\xb8\x49\x1a\x9f\xe5\xc4\x16\x48\x76\xe0\xaa\xa5\x47\x04\xb2\xf1\x52\x2f\xdd\x9f\xe5\xde\x12\x58\x87\xa5\xfb\xb3\xd4\xb9\xf0\x0d\x33\x9b\x04\xd6\xf0\x79\xeb\x11\x81\xc6\xbe\x3d\xb5\x2c\xec\x00\x0d\x9d\x9c\x5a\x7a\x44\x4b\x8f\x08\x8f\x71\x99\x60\x5a\xd6\x75\x54\xff\x07\x9b\xbc\x74\xa2\x40\xd7\x68\x2e\x53\x52\x20\xd8\x81\xb2\x96\x4e\x14\xe8\x5f\xb7\xe8\x0b\x81\x6c\xbe\x48\xa6\x87\x40\x7c\xef\x96\x5e\x08\x68\x8a\x2b\xd5\x32\x7f\x03\xb2\x93\x8c\x5b\xba\x21\xa0\x29\x59\x54\x4b\x3f\x04\xb4\xf8\x0e\x79\x81\xc9\x60\xb5\x7b\xc8\xf7\x79\x1e\xfe\xd2\xb3\xf9\x2c\x5e\x24\x92\x78\xb5\x74\x2a\x40\x3a\xd3\xb2\xcc\xfc\x80\xb0\xbc\x76\x99\xf9\x59\x66\x7e\x48\xb5\x2e\x33\x3f\xcb\x62\x48\xcb\x4c\x97\xee\x08\x88\xf0\x7d\x76\x69\x25\x48\xe4\x56\x6b\x99\xe7\x01\xd3\x1d\x42\x96\x55\x8e\x20\x9b\x8f\xdf\x82\x14\xd0\x74\x62\x97\x4b\x20\x40\x36\x3c\xc3\xa5\xef\xb1\x5c\xdc\xe0\xb7\xed\x9c\x16\xc8\xf6\x1d\xb2\x11\xe6\x79\x1c\x14\x9c\xd3\x02\x69\x6a\x66\xe9\x7b\x80\x44\xcc\xbe\x96\x8e\x06\xe8\xce\xca\x2e\xe7\xb4\x40\x53\x90\xaa\x96\xce\x07\xf8\xb6\x82\x58\xce\x73\x2d\xcb\x17\xfd\x68\x2d\x5f\x04\xb1\x7f\xff\x65\xc3\x0e\x1b\xc6\x87\xa6\x8b\x02\x62\x73\xd0\xd1\x45\x59\xba\x28\x24\xec\x96\x8b\x27\x40\x77\x4a\x6e\xe9\xb4\xac\xcf\x69\x21\x4c\x5d\x3a\x2d\x4b\xa7\xc5\xc1\xd6\x02\x45\x90\x9d\xf8\x7c\xe9\xb4\x80\xf6\xdd\xa5\xee\x08\x48\x94\xf7\x6b\xb9\x70\x13\x24\x92\xc4\xb5\x4c\x27\xad\x6f\x77\x08\x1e\x88\xbe\xc7\x52\xa5\xcc\x27\xa9\xef\x01\xb2\xdb\x2e\x33\x40\x60\x05\xce\xd4\x32\x01\x04\x62\xfa\x8c\xf4\x50\x40\x76\xed\x82\xb3\x61\xa0\x59\x17\xb1\xac\x8a\x01\xe9\x2c\xe0\xd2\x69\x01\x6b\xf8\xa2\xe8\xb4\x2c\x97\x42\x94\x6f\x9d\x33\x64\x20\xca\xb6\xea\xa2\x80\x74\xce\x6f\xb9\xd3\x04\x48\xbd\xd4\x65\x66\x0a\xb4\xf1\x8d\x3a\x7a\x32\x20\xd9\x61\xad\x96\x8e\x0c\x48\xd7\xe0\x2e\x9d\x16\xd0\xf7\xef\x64\x36\x96\xed\x5d\x75\xcd\x96\xa9\x29\x90\xdd\x71\xce\x2a\x49\x90\xd6\x45\x2c\xe7\xd3\x40\x76\xc7\x72\x9d\x16\x90\xce\x8a\x2d\x27\xca\x40\x53\x10\xac\x96\x73\x60\xcb\xbd\xb0\x4a\x1b\xaf\xdb\x02\xba\xab\xdf\x96\x6e\x0b\xc8\xce\xdc\xc3\xd2\x6d\x59\x3f\x6d\x1d\xd3\x67\xcb\x44\x17\xe8\x48\x4b\xd5\xd2\xfb\x00\xd9\xb5\x88\x66\xa2\x40\xcb\xef\x64\xbe\x3e\x2e\x7e\x70\x29\xe6\x6e\xfa\x08\x0c\x27\x1f\x77\xbd\x0f\x90\xe8\x29\xd5\xae\x5f\x01\xb2\xe3\x35\xee\xfa\x15\xa0\xe9\x0b\xec\x26\x94\x40\xb2\xe3\x79\xed\x66\x8f\x40\x58\xf5\xbe\x3b\x2f\x06\x12\x3d\xce\xda\x4d\x28\x81\xee\xb2\xb3\xdd\x84\x12\x08\x6b\x9c\x76\x13\x4a\x20\x91\xf2\xae\xdd\xa5\x0f\xa0\xa9\x39\x56\xbb\x2b\x49\x41\x76\x1c\xb1\x5d\x87\x67\xff\xf2\x4e\x0c\x6e\xbb\x45\x3a\xa0\xeb\xe1\xee\xae\x11\x05\xd9\xc3\x5f\xda\x7e\x57\x48\xf0\x41\xef\xce\xb2\x81\xe6\xbe\x07\xbb\x4e\x10\x48\x3d\xb1\x5d\x27\x08\xa4\x35\x79\xbb\x95\x3c\x20\x7b\x78\xc8\x4e\xec\xbe\xeb\xdc\x92\x79\x27\x90\xae\x20\xd9\xcd\x3b\x81\xec\x98\xae\x5d\xef\x09\x64\xc7\x26\xed\xba\x45\x20\xad\xf6\xd8\x75\x81\x40\xf4\xf0\x90\x57\x0c\x87\xd3\x91\x7f\x5b\xe6\xdd\x54\x12\x48\xe4\x7b\x6a\xd7\x6b\x02\xd9\xed\x4f\xa7\xd7\x76\xf7\x3c\x75\x36\x64\xd7\x6d\x02\xd9\xbf\x43\x3e\x44\x96\x8b\x5a\x36\xb4\xbb\x91\x04\x08\xf7\x37\xd8\x75\x3c\x40\xb8\x0c\x74\xd7\xf1\x00\xd9\xf1\x9c\x77\x4b\x71\x40\x77\x03\x9a\xdd\xf9\x2f\xd0\xd4\x5d\xab\x5d\xff\x04\x64\xff\x0e\x79\xc9\xb4\x66\x9d\x47\xa1\xff\x01\xf2\xeb\x2b\xfd\x0f\x90\x2e\xf9\xd9\xcd\xeb\x80\x74\x1f\x8c\xdd\x24\x0e\x88\xce\x68\xbe\x9b\xc4\x01\x89\xda\x5f\xed\x26\x71\x40\x74\x02\x97\x5d\xc7\x65\xaf\xef\xad\xe4\x92\xae\xf5\x00\x4b\xdf\x79\x37\x65\x03\xb2\xdb\x56\x27\xb6\x40\xf6\x61\x2b\x6c\xab\x1b\x5d\x75\x7f\x68\x5b\x8b\xb6\xfa\x6d\x98\xc4\x01\x7d\xe0\x1d\xec\x3a\x46\xfb\xe7\x18\xd9\x58\xf3\x33\x20\xc2\xbb\xd4\x57\xda\xf5\x95\xc8\x14\xee\xfa\x4a\xa0\x4d\xdf\x41\xfd\x22\x90\x3d\x3c\xbf\x77\x34\x7d\x79\x3d\xbd\x0f\x64\xf2\x40\xfc\xdc\xcd\xc8\x80\x61\xb1\xdd\xee\xba\x91\xdd\x75\x23\xe5\x21\xef\x48\x7f\xca\xf1\x4b\x7f\x6a\x5f\xda\x19\xdb\xaa\x43\x05\xd2\xd9\xd9\xdd\x52\x22\xd0\xcc\xde\xef\xae\x0c\x05\xdd\xfc\xf4\xae\xa7\x04\x1a\xaa\xd8\xb5\x3b\x23\x06\xd4\x7b\xa9\x5d\xb7\x08\x0c\xe3\xe5\xdd\x2c\x0d\xc8\x4e\x20\xbc\x3b\x23\x06\x56\x32\x5f\xbb\xeb\x29\x81\xfe\xbd\xd5\x66\x69\x40\x7e\x2f\x8f\x6e\xd1\xae\x5b\x44\x6c\xbc\xeb\xef\x80\xa6\x9e\x5d\xed\x3a\x3c\x20\x3b\x26\x7d\xd7\xbb\x01\x4d\xa9\xba\xda\x9d\xff\x02\xd9\x6d\xac\xbe\x0c\x48\x6b\x40\x76\x7d\x19\x90\x4e\x1a\xed\x26\x5b\x40\xa2\x98\x5b\xbb\x99\x15\xd0\x14\xcc\xab\xdd\xa4\x09\xc8\x5e\x9e\xdf\x4b\x32\xc3\xd5\xbd\x4d\x67\xb8\x40\x5a\x60\xb0\x9b\x47\x01\xe9\xdc\xcc\x6e\x19\x0f\xc8\xef\x1b\x71\x36\x0b\x4c\x6b\x02\x76\xbd\x94\x5d\x2f\x85\xfc\xce\xae\x97\x02\x9a\xcb\xa1\x76\x6b\x76\x40\x58\xa4\xba\xeb\xb8\xec\x96\xf3\x12\x15\xec\x26\x60\x40\x76\x72\x5d\xbb\x8e\x0b\x48\x36\xd7\xad\xdd\xd4\x0a\x48\xa3\xea\x5d\x8f\x64\xff\xf2\x28\xf6\xab\xee\x07\x08\x77\x99\xd9\xcd\xa3\x80\x98\xbe\xe9\xe6\x4c\x40\xba\x68\x6a\x37\x67\x02\xb2\x93\xc1\xd8\xcd\x99\x80\x85\x5c\x49\xed\xfa\x1a\xbb\xbe\x86\xa6\x54\x5f\x63\x57\x13\xd5\xde\x79\xec\x9d\x87\x02\x99\xf2\x1d\x7e\xec\x9e\x87\x67\x84\x8b\xbb\xeb\x91\x80\xec\x9a\x7d\xdd\x0a\x90\xee\x35\xb7\x5b\x9d\x0b\xda\x70\x16\x61\xd7\xd5\xd8\x75\x35\xb4\xfb\xe6\x39\x40\x58\x02\xbb\x3b\x9d\xb5\x3b\x9d\xb5\x7b\x32\xdf\x81\x1f\xef\x00\x61\xce\xa1\xa7\x01\x9a\x4a\x83\x75\x98\xe8\x00\x89\x3c\x65\x1d\xba\x1a\x20\xd9\x3a\xbe\x0e\xeb\x6d\x40\xba\xc8\xe4\xd0\xd5\x00\xe1\x02\xb5\x43\x57\xe3\xd0\xd5\xd8\x3d\xf4\xf3\xd0\xcf\x4b\xd2\x0c\x3d\x86\x43\x8f\x81\x17\xe3\xd0\x63\x00\xd9\xf1\x7b\x0f\x27\xaa\x40\xba\x7f\xe5\xe1\x44\xd5\xe1\xde\x13\xae\xd6\x3b\x4c\x9b\x80\x6e\x1d\xc8\xa1\xab\x01\xc2\x41\xfd\xd0\xaf\x00\xc9\x3e\xf1\x75\x98\x5c\x01\xd9\xd7\x3f\x18\xe6\xc3\x59\x2b\xd0\x2d\x73\x3a\xf4\x44\x40\xb0\x5f\x6b\x1d\x7a\x22\x20\xad\xb4\x3b\xf4\x44\x0e\x3d\x91\xdd\x1f\x2e\x0f\xe9\xb6\xf2\xd5\x1e\x66\x6d\x40\x73\x03\xa9\x43\xbf\x03\xb4\x68\x9e\xcc\x5b\x51\xd6\x94\x11\xf2\x70\x26\x0b\x24\x1b\xe3\xd7\xa1\x77\x02\x16\x32\x37\x75\xe8\x9d\x80\xa6\x10\x64\x1d\xba\x27\xa0\x5b\xd5\x74\xe8\x7e\x1c\xba\x1f\x04\x2a\x87\x79\x1c\x90\x2e\x8b\x38\xf4\x48\x40\xb7\x7c\xff\x70\x26\x0b\x34\xe7\x24\x0f\x1d\x12\xd0\xdd\xc7\xe5\xb0\xf6\x18\x34\x75\x26\xeb\x30\x1f\x03\xb2\xfb\x0c\x2d\x3e\x06\x4d\xa1\xc9\x3a\xcc\xd1\x80\x95\x36\xc3\x82\x64\x90\x9d\x91\xe8\x30\x6d\x03\xd2\x25\x91\x87\x25\x3f\xa0\x99\x80\x3b\xcc\xd1\x1c\xee\x2f\x81\x6a\x65\x1d\xba\x3c\xa0\xe5\x20\xa0\x39\x9c\x91\x3a\xdc\x4d\xc2\x3a\xd6\xc3\xca\x62\xd0\x8c\x38\x0e\x7d\x1e\x90\xa8\xcc\xd4\x61\x4e\xe6\xf8\x72\x32\x58\x8c\xc3\x74\x0a\x68\x16\xaa\x1f\xfa\x2e\x20\x8c\x1e\x0f\x7d\x17\x90\x96\xa8\x1e\x4e\x2d\x81\x0c\x1f\xa7\x4e\x09\x58\xe9\x7d\xea\x5b\x80\xec\xc4\x85\x87\xae\x05\x58\xe9\xdb\xa8\x87\x70\xe8\x21\xf8\x79\x68\xe8\xc1\x42\x82\xa3\x0e\x0d\xfd\xe1\x56\x9b\x98\xc5\xc3\x55\xa4\xa0\xbb\x77\xc4\x61\xe2\x04\x34\x15\x35\xeb\x30\x73\x02\x32\x88\x67\x0e\x67\x68\x0e\xf7\x0d\x2f\x5f\x5a\x33\x27\x20\x03\xdf\xe8\xd0\x1f\x00\xcd\x1a\xd8\xc3\x29\x1a\x90\x61\xcb\x74\x11\x40\x53\xb2\xb3\x0e\xf3\x24\x20\xdd\x73\xf2\xd0\xd4\x83\xb4\xac\xef\x30\x4f\x72\xb8\xb7\x94\x1b\x21\x1e\x9a\x7f\x90\xa8\x69\xd4\x61\x56\xe4\x38\x82\x93\x71\x7e\x17\x5d\x82\x74\x4d\xce\x61\x0d\x2f\xc8\x20\x16\x3d\x34\xfe\x87\xc6\xdf\x07\x67\x86\x02\x64\x10\x70\x1f\xce\x8e\x80\x0c\x02\xfa\x43\xab\x0e\xd2\x32\xcb\x43\x7b\x7d\x68\xaf\x19\xd1\x0f\x4b\x71\x41\x06\x91\xdc\xa1\x09\x07\xf9\x8d\x0f\xce\x55\x80\x44\x93\xa1\x0e\x0d\x2a\x18\x1a\xe7\xc3\x40\x1d\x64\xf8\x65\x5a\x17\x0b\xda\xb4\xc3\xac\x34\x39\x5c\xcf\x68\x21\xe4\xa1\xf5\x04\x89\x9a\x7b\x1d\x86\xf8\x20\xdd\xf4\xe3\xd0\xa0\x1e\x9f\x41\xe5\x26\x9d\x84\x00\x2b\xed\x69\x6d\x2c\x68\xaa\x8b\xd6\xa1\x91\x05\x11\x8e\xfb\x1a\x59\x90\xce\x42\x1e\x4e\x4c\x1c\x5f\x91\x8a\x76\xcb\x10\x1c\xa4\xbb\x71\x1d\x9a\x4a\x90\xee\x49\x73\x1a\x5b\x83\x70\x63\xa5\x53\x83\x07\xd2\x69\xff\x53\x83\x77\x6a\xf0\xe8\x8c\x53\xb3\x05\x32\x08\x0b\x4f\xd3\xf8\x20\x4d\x55\x9e\x16\x40\x80\xa6\xff\x7d\x6a\x69\x40\x53\xaa\xb4\x4e\x6d\x09\x48\x4b\x52\x4e\xab\x42\x41\x73\x5f\xd3\x53\xf3\x02\x7a\xff\x0e\x85\x87\x90\xa3\x67\xe0\x3d\xad\x1d\x3d\x95\xf1\x44\x7d\xb5\x4e\x2b\x45\x41\xf3\x5d\x39\xcd\xd9\x83\x70\x9b\xb0\xd3\xe1\xff\xfc\xa2\x53\x6f\xd3\xb2\x05\x90\x88\x0e\xd5\xe9\xf8\x7f\x3a\xfe\x13\x6f\x9f\x8e\xff\x20\x5d\x90\x7d\x3a\xfe\x83\xe6\x54\xd7\xe9\xf8\x0f\x1a\xd2\x4d\x75\x3a\xfe\x83\x96\xf6\xa2\x19\x7a\x90\xae\x73\x3d\x1d\xea\x4f\x37\x26\xaa\xf5\x0f\xb5\x5f\xa7\xa6\x00\xa4\x13\xe6\xa7\x45\x0d\x20\x35\x52\xa7\x45\x0d\xa0\x05\xee\xc8\x69\x06\x1f\xf4\xef\x85\xd0\x3a\x80\x0c\xdb\x6d\x88\x7c\x9a\x9b\xf7\x51\x6b\x2f\x40\x06\x9f\xd5\xa9\xb9\x38\x3f\x73\xb1\xfc\x37\x5b\xa1\x6d\x18\x9e\xff\xf4\x10\xaf\x25\xd1\xdd\xa9\x69\x00\x19\xc4\xee\xa7\x91\x2e\x68\x4a\xc9\xd6\xa9\xb9\x00\x19\x04\xd7\xa7\xe6\x02\x74\xf3\x05\xa7\xa1\x2e\xe8\xc6\x98\xa7\xb5\x9f\xa0\xbb\x68\xe6\xb4\x84\xe1\x54\x83\x23\x96\xd7\xf4\x06\x58\xc3\xe2\x1e\x7a\xa7\x95\x9e\x20\x4c\x08\x9f\xc6\xc8\x60\x58\x45\x7d\x1a\xea\x82\x6e\xf4\x7b\x6a\x8e\x40\x0b\x57\x86\x9f\xda\x23\xd0\xad\xb1\x3c\x0d\x75\xc1\x70\xa1\xe4\x69\x5c\x0b\x5a\x20\x7b\x54\xa7\x66\xeb\x9c\x76\xa3\x87\xec\xc6\x89\xe4\x5f\xf7\x64\x36\x63\xf1\xe4\x08\x4f\x4f\x63\xd1\xd3\x58\x14\xad\xdd\x3a\xb5\x5b\x20\xc3\x0f\x4b\xb3\x75\x6a\xb6\xf0\xaa\xcf\x65\x67\xbc\x08\x64\x24\xeb\xd4\x92\x81\x6e\x71\xec\x69\x60\x0b\x3a\x12\xe9\x75\x5a\x7e\x00\xba\xf9\xfe\x53\x73\x77\x6a\xee\xec\x58\xa3\x58\x90\x96\x0c\x9c\x56\x7f\x82\xee\xe2\x9d\xd3\xc0\x16\xa4\xf5\xa6\xa7\x0b\x50\x41\x3a\x0b\x7f\x5a\xb1\x09\xf2\x7b\xaf\xb5\x59\x27\xeb\x4e\x02\x67\xf9\x34\xf9\x0e\x32\xf0\x00\x4f\xa3\x53\x90\x81\x9f\x75\x1a\x9d\x82\x44\xe8\xb3\x4e\xcd\xd8\xa9\x19\xc3\x5b\x3a\x0d\x58\x41\xd3\x8c\x9d\xe6\xde\x41\x77\x3f\xa8\xd3\x18\x16\xa4\x1b\xf9\x9c\x26\xda\x41\x6f\xdf\xb9\xec\xaf\xd3\xc5\x85\x3c\x35\x73\xef\x20\x9d\x98\x3f\x0d\x74\x41\x53\xa0\xb7\x4e\x23\x5d\x10\x16\x26\x9e\x16\x11\x80\x91\xf8\x1f\xa7\x4b\x51\x40\x73\x15\xd6\x69\xd6\x1e\xa4\x29\xfa\xd3\xb0\x16\x24\xe2\x17\x75\x1a\xd6\x82\x37\x22\xf3\x98\x4f\x92\xbd\x89\x4c\x6e\x9e\xc6\xb5\x20\xa6\x9f\x88\x39\x7a\xd0\x94\x3f\xac\xd3\x84\x3c\x08\xb3\x88\xa7\xa6\x19\xa4\xd5\x8a\xa7\x39\x7a\x10\x5f\x67\x18\xfe\x82\xf5\xdd\x92\xd1\x2f\x08\x27\x35\x4e\x0d\x38\x08\xf7\xca\x3e\xb5\xcc\xa7\x96\x19\x57\xe9\x34\xd3\x7e\xba\xa1\x50\xf9\x55\x1a\xb1\x82\x0c\x22\x9b\x53\x03\x0b\x32\x3c\xbf\xf9\x72\x90\x16\x99\x9e\x4e\xe9\x9f\x5f\xbe\xdc\x21\xc4\x39\x7d\x90\x41\x4c\x71\x99\xa9\x06\x89\x62\x4b\x5d\x06\x86\x97\x62\x5e\x58\x8b\xcb\xcd\x01\xae\xf6\x8d\x77\x93\x63\xcd\x63\xaf\x7b\x3c\x3d\x99\xb1\xe2\x45\x60\xe8\x9e\x87\x97\x41\x20\x68\x2e\x66\xbb\x8c\xf8\x40\x06\x96\xed\xd2\x74\x82\x44\xdd\xbc\x2e\x4d\x27\xc8\x20\xba\xbe\x2c\xf8\xbb\xbe\x82\x3f\x1e\xdc\x65\xe8\x04\xba\x0b\x2a\x2e\x4d\xe7\xf5\x99\x4e\x42\xe2\x4b\xd3\x09\x02\x6d\xd4\xba\x34\x9d\xa0\x99\x9c\xb9\xb4\x93\x97\x71\x92\xdb\x93\x5d\x5a\x45\x10\x83\x8f\xe9\x32\x73\x0b\x16\x7a\x7d\x75\x39\x07\x0e\x62\xf3\x92\xce\x81\x83\xfe\xdd\xa6\x73\xe0\xa0\x19\x24\x5f\x9a\x38\x10\x83\x81\xec\xd2\xc4\x81\x6e\xf2\xe7\x32\xbf\x0b\x32\x18\x27\x2f\xf3\xbb\xa0\x21\x51\x52\x97\xe6\x0c\x34\x44\xc9\xff\x34\xcd\x97\xe9\x5f\xd0\x74\xe2\x2f\xd3\xbf\x60\xa1\x29\x58\x97\xe9\x5f\x10\xa6\x65\x2e\xd3\xbf\x20\xdd\xb8\xf2\xd2\x4e\x82\xee\xd6\x22\x97\x76\x12\x74\xf7\xfc\xba\xb4\x89\x97\x21\x14\x23\xc5\x65\xaa\x17\x64\x10\x84\x5f\x9a\x31\x90\xc1\x97\x70\x69\xc6\xc0\x42\x76\xae\x2e\xcb\xee\x40\x77\xc7\xf3\x4b\xcb\x06\x9a\xc1\xfb\xa5\x61\x03\x19\xbb\x3f\x2c\x0f\xe9\x0c\x78\x49\xa7\xad\x41\x73\xcb\xf3\x4b\x2b\x76\x7d\x05\x75\xdf\x4f\xed\x0b\x92\xb1\x2e\xbb\xbc\x8c\xd1\x40\x06\x01\xc1\x65\xe2\x15\x64\xf8\x3e\x68\xec\x40\x6a\xd2\x2f\x6d\x1d\x08\xf7\x95\xbd\x9c\xc8\xbe\x5c\xd6\xe9\xd4\xe0\xa5\xb1\x03\x0b\x8d\xbf\xba\x5c\xd7\x00\xc2\xd5\xfd\x97\x55\x74\x20\x4c\xb5\x5f\x5a\xb6\x4b\xcb\xe6\x57\x6b\xd4\x76\x19\xb5\x11\xe7\x5e\xee\xc9\x00\x32\xbc\xa2\x53\xe0\xa0\xe9\x1e\x5c\x9a\x44\xd0\xd4\x73\xaf\x4b\x9b\x08\x9a\xde\xff\xe5\x5a\x07\xd0\xad\x71\xbc\x2c\xc9\x03\xe9\x70\x7b\x99\xff\x05\xe9\xee\x99\x97\x41\xe1\xa5\xdc\x13\xaa\xf2\x75\x59\x80\x07\x62\xfa\xed\x19\x01\x5e\xee\xea\xe3\x4b\xa6\x35\xbd\x14\x0e\xb5\x60\xe2\x72\xfd\x03\x88\x69\x67\x18\x02\x82\x74\x67\xdc\x4b\x0b\x0b\xd2\xad\x56\x2f\xcd\x29\x68\x9a\xe6\xcb\xa8\x10\x84\xfb\x2c\x5d\x4e\x52\x83\xf8\x5e\x3c\x6d\x27\x48\x17\xfc\x5d\xda\x4e\xd0\xcd\x38\x5f\xda\x4e\xd0\x5d\x30\x77\xb9\xd8\x13\xa4\x8b\xc9\x2e\xcd\x29\x48\x77\xcf\xbb\xb4\xa6\xa0\x99\x99\xbb\x8c\x43\x41\xb3\xac\xe7\x72\x0e\x1c\x64\xd8\x87\x1a\x58\x90\xca\x58\x5c\x4e\x78\x83\x3e\x7d\x9f\x4c\x25\x83\xd0\xe6\x5e\x1a\x58\x10\x08\xbc\xd5\x65\x46\xf8\xfa\xa6\xb2\xb1\xd6\x97\x66\xf2\xd2\x4c\x3a\xc0\x6b\x26\x41\x53\x4f\xbf\x2e\xe7\xb2\x41\x98\x34\xba\x34\x9d\xd7\x37\x97\xed\x9d\x3b\x97\x0d\xd2\x9d\x1f\x2f\x33\xc7\x20\xad\x41\xb8\x0c\x91\xc1\x4a\xbf\x1b\x2d\x2c\x48\xe7\x73\x2e\xf3\xcb\x20\x15\x67\xb9\x9c\xde\xbe\x14\x54\x9f\x9e\x5f\xab\x0b\xc2\x74\xd3\x65\x88\x0c\xc2\xd8\xf4\x72\xca\x1b\x34\x33\x74\x97\x2b\x48\x41\xb8\xde\xe0\x32\x42\x06\xdd\x6d\xd2\x2e\x23\x64\x90\x43\x63\xa1\x4d\xbf\xbe\x5d\x02\x7d\x26\x4e\x82\x83\xa6\x10\x7f\x5d\x5a\x75\x90\x7a\xb4\x97\xb3\xe0\x97\xba\x0c\x1a\x5d\x0d\x3d\x48\x57\xbe\x5c\xda\xf9\xcb\xd5\x1e\x34\xf6\x36\xc1\x0c\x5a\x22\x3f\x5e\xb7\xf1\x36\x58\x49\x8a\xe2\x36\xb8\xbe\xdd\x7c\x0f\xa5\xc4\xba\x4d\x27\x83\x70\x1b\xf9\xdb\x74\x32\x48\x57\x47\xdd\x4e\x53\xdf\xdb\x77\x03\x9c\x4d\x17\xe1\x76\x52\x5a\x2d\x9f\xdb\x58\x1d\xa4\x5b\xe2\xde\xfa\x08\xa0\x23\xb6\x5f\xb7\x89\x62\x90\x5a\xdd\x5b\xb7\x01\x84\x1b\x3d\xdf\x86\xef\x20\xfa\xf7\xc3\x9f\x87\xe8\x33\x3e\x8a\xdb\xa9\x65\x10\xdb\xf0\x90\xa7\x27\x9f\xdb\xf1\xa3\x6f\xf3\xb9\xa0\xbb\xcd\xd3\x6d\x3e\x17\xa4\xbb\x0c\xdd\xe6\x73\xef\xfe\xdd\x25\x0d\x33\x7a\x07\xdd\x88\xe5\xd6\x53\x01\x39\xc8\x40\xdd\x7a\x25\x20\x5f\x43\xff\xa7\x6d\xbe\x4d\xf7\x82\xff\x9e\x98\x3e\x0b\x48\x0b\xb1\x6f\x67\x9b\x6f\x67\x9b\xc9\x30\xdc\xc6\xf6\x20\x5d\x94\x7f\xeb\xc5\x80\x30\x8f\x72\xeb\x9f\x80\x70\x73\xd9\xdb\x6c\x2f\xe8\xee\xfb\x70\x9b\xed\x05\x7d\xda\x08\x3d\x8f\xdb\x99\x65\x37\x46\xbc\x75\x3d\x40\x3a\xab\x78\xeb\x5a\x80\x1c\x18\x87\x5b\xd7\x02\x44\xda\x2d\xfa\x11\xe0\x3d\x19\xc7\x8c\x91\x41\xba\xd6\xea\x36\x46\x06\x39\x6c\x99\x31\xf2\xed\x9e\x81\xe6\x8e\x6f\x63\x64\xd0\x9c\x8d\xbf\x8d\x91\x41\x77\x77\xb3\x5b\xe7\xe2\x36\x46\x26\xba\xbb\xdd\xf9\xe1\x56\xc5\x9c\xd4\xca\xed\xa4\xf1\xed\xfa\xc8\xe1\xe9\x7d\xb9\x3e\x17\x84\xbb\x34\x44\x06\xe1\x3e\xf0\xb7\x21\xf2\xed\x32\x47\xdb\x65\x84\x0c\xba\x9b\x2d\xdf\x4e\xfd\x82\x54\x2a\xe1\xd6\x43\xb8\x0d\x87\x1d\xd1\x6f\xfd\x01\x90\x23\x3c\xe4\xf9\x5f\xac\xf4\x25\xd0\x1d\x00\xdd\xc9\xc1\xdb\x70\x18\xb4\x30\xac\xbd\x75\x11\x40\xac\xf2\x97\xde\x25\x4b\x1f\x07\x21\xf2\xad\xf1\x07\x39\xf0\xff\x6f\x8d\x3f\xc8\x41\xfe\xee\xd6\xf6\x83\xe5\x96\x11\xb7\xb6\x1f\x0c\xf7\x6b\xbb\x35\xf4\x20\xac\x52\xbc\x35\xf4\x20\xac\xf4\xb8\x4d\xd8\x82\xf5\xbd\x17\xc6\xc3\xb7\x4a\x89\xb6\xcb\xe0\x17\x34\x67\x88\x6f\xc3\x5a\x90\xdf\x63\xd3\x5a\x83\x1c\xe1\x0f\x3d\x3d\xc5\x62\xee\x4e\x7a\x6b\x4e\x6f\x37\x51\xd2\x06\xde\x46\xa7\x20\x76\xef\x48\x7b\x7a\xbb\x49\xef\xf7\xfa\x6b\x50\x6f\x0d\x2a\x19\xa2\xdb\x88\x15\xa4\x85\xcb\xb7\xd3\xb5\x20\xd5\x27\xbb\xb5\xb1\xe0\x3d\x19\x4f\xc4\xc0\x16\xa8\xb5\x5a\xb7\x76\x17\xe4\x18\xb6\xcc\xd6\x52\x55\xa6\xca\xd1\xad\x29\x06\xed\xbf\xc1\xc9\xfc\x32\xe8\x3a\x5a\xb7\x71\x2d\xc8\xe1\x07\xa1\x25\x06\x69\xe9\xef\xad\x25\xbe\xef\xaf\x0c\x8f\x7b\x32\x8a\x05\x61\x92\xfe\xd6\x12\xdf\x5a\x62\x32\x5c\xb7\x96\x18\xb4\xd0\x9f\xbc\x4d\x43\x83\x1c\x8e\xb7\xda\x58\xd0\xdd\xad\xfe\x36\xe7\x0c\xd2\xda\xe2\xdb\x45\x90\x20\x07\x29\x96\x5b\x83\x0a\x12\xb1\xfc\xba\xad\x85\xbf\x55\x5d\x9c\xbe\xff\x1a\xd9\x5b\x23\x4b\x60\x7e\x6b\x64\x41\xeb\xdf\x7f\xd9\xb3\x8f\x3d\xeb\x7f\xd9\x56\x4a\xe6\x75\x72\x6e\xed\x29\xe8\x6e\x6f\x7e\x3b\x21\x0c\x96\x4b\x91\x6e\x4d\x2c\xe8\x7a\x25\xb7\xb5\xf0\x20\xdc\x3d\xf4\x76\xf5\xe4\xed\xbe\xbb\x0e\xce\xae\x9e\x04\xcb\x6d\x98\x6e\x27\x92\x41\xba\xc5\xeb\x6d\xc2\x1c\xa4\x7b\x0b\xdf\x26\xcc\x41\xb8\xea\xf5\xb6\x8c\x0d\x2c\x17\x65\x3d\x26\xcc\x41\xb7\x08\xe4\x71\xdf\x86\x47\x8d\x70\x9e\xe4\x63\xd4\x0f\xba\xcb\xa2\x1f\x17\x3c\x82\xee\xa2\x8c\x47\x67\x00\xe4\xe0\xa9\x3d\xfa\x02\xa0\x1b\x95\x3f\x06\xfd\xa0\xb9\xa7\xec\xe3\x6c\x30\x48\x57\xa0\x3f\xda\xf8\x47\x95\x47\x57\x8b\x3d\x1a\xf9\x47\x23\x8f\x7f\xfc\x58\x78\x06\xba\x63\xcf\xa3\xdd\x07\x4d\x09\x90\xc7\x4c\x3e\x48\x67\xc0\x1e\xed\xfe\xa3\xdd\xc7\x8b\x7b\xcc\xda\x83\x66\xee\xfd\x31\x6b\x0f\xc2\x55\x7e\x8f\x93\xc2\x4f\xff\x06\xdd\xf9\xb7\x61\x7e\xcc\x56\x80\x54\x1f\xe9\x31\x5b\x01\xd2\x4d\x1c\x1e\xdd\x0e\xd0\x5a\xf8\x5f\xe5\x21\xcc\x13\x83\xc2\xe3\x6c\x00\x58\xee\x5f\xf4\xe8\x9c\x80\x66\x02\xff\xd1\x13\x79\xf4\x44\xb0\x1f\x8f\xeb\x01\x40\x57\x72\xf1\x71\x25\x25\x48\xf4\x60\xeb\xd1\x5f\x01\xa9\xda\xe1\xe3\x4e\x12\xa0\xbb\x6b\xe7\x63\x12\x05\xb4\x70\x02\xe5\xd1\xd5\x78\x74\x35\x18\x6d\x1f\x67\x16\xc0\xd2\x3d\x78\xcc\x98\x80\x74\x4f\x90\xc7\x45\x03\x60\xb9\x22\xe7\xd1\xfb\x00\xa9\x64\xda\x63\x2a\x04\xb4\xcf\x49\x79\x9c\x6d\x00\x69\xdd\xc2\x63\x45\x1c\x08\xc4\xae\xeb\xb1\xd2\x1f\xa4\x5b\x78\x3f\x26\x51\x40\xba\xc1\xc8\x63\x59\xff\xe3\x2c\xb2\x19\xe2\xc7\x29\x00\xd0\x9c\xf3\x7e\x9c\x30\x06\xdd\xcd\x3d\x1e\x67\x00\x40\x57\x0c\xe3\xd1\x6f\x79\x4c\x89\x74\x0f\xd9\x8b\x4c\x0a\xa8\xd2\xf6\x58\x6b\x0f\x42\x9d\xb3\xc7\x99\x60\x90\x0a\xa4\x3d\xba\x15\x20\x51\xa0\xad\x47\xb7\x02\x84\x05\xa4\x8f\x69\x0c\x90\x6a\x1b\x3e\xe6\x2c\x40\xba\xf3\xff\x63\xe2\x01\x0c\xb7\xd0\x79\xcc\xb2\x83\x6e\x6d\xcc\xe3\xe4\x30\x08\xa5\x3c\x1e\x3d\x0d\x90\xd6\x4b\x3c\xfa\x06\x20\xcc\x02\x3c\xd6\xc6\x83\x74\x47\x82\xc7\xf4\x01\x68\x4a\x0c\x3d\x3a\x02\xa0\xeb\xee\x3c\x26\xc6\x41\x1a\xe5\x3e\x5a\x7d\x10\x8a\x08\x3c\xce\xf9\x82\xee\x5e\xab\x8f\xb5\xf1\x20\x2d\x32\x7d\x0c\xf8\x41\x73\x69\xc2\x63\x21\x3c\x48\xb7\x2d\x78\xcc\x01\x80\xb4\x5a\xe2\x31\x05\x00\x5a\x38\x91\xfa\xe8\x55\x80\xfc\x86\x42\xbd\x0a\x90\x48\x9b\xd7\x63\x55\xfa\xa3\x40\x21\x11\xd5\x63\xb2\x1c\xe4\x37\x3a\x1a\xf0\x83\x70\xbe\xe4\x31\x94\x07\xa9\x2f\xfe\xe8\x68\x80\xe5\xc2\x91\xc7\xc9\x62\x90\x6e\x72\xf0\xe8\x67\x80\x74\x67\x92\x47\x37\x03\x04\x8a\xd8\xf5\xe8\x53\x80\xf7\x9d\xa6\xf9\xc6\xf2\x20\xf5\xfc\x1e\xfd\x8c\xe7\xf3\x33\xba\x67\xb3\x33\x2e\x53\x11\xf4\x85\x7e\xc6\xa3\x9f\xb1\x7b\x32\xdf\xa7\x4b\x67\x1c\xe3\xf4\xe8\x54\x3c\x6e\xcc\x6b\xd3\x0c\xf9\x41\x7e\x1f\x8d\x21\xff\xa3\x53\xe1\x6b\xa7\xb7\x00\xda\x17\xac\x3c\x86\xe4\xa0\xbb\x4f\xe5\xa3\xb7\x00\xba\xc2\x3f\x8f\x7e\x00\x68\x5f\x1a\xe3\xd1\x76\x3f\xda\x6e\xf2\x4a\x8f\xe1\xf1\x63\x78\xec\x63\xd2\x50\x83\x74\xf9\xd0\xe3\xa2\x35\x10\x6e\x90\xf2\x68\x95\x41\x5a\x81\xf3\x68\x95\x41\xba\xe4\xe7\xb1\x70\x0b\xbc\x9d\xe1\x31\x1b\xfb\xe3\xe3\x25\x1f\xf8\x58\xcc\x05\xd2\xa2\x9f\x9f\xb1\x36\x68\xce\x6a\xfd\xac\xe5\x02\x61\x0d\xe4\xcf\x1d\x96\x40\xef\xdf\x7f\xed\x1e\x22\x56\x61\x50\xf9\x99\x8c\x07\xe3\x3b\x64\x54\x0d\x72\x90\x5b\xfc\x69\x83\x41\x5a\x24\xf7\xb3\x48\x0b\x34\xab\x14\x7e\x9a\x65\xd0\x5d\xc7\xf6\xd3\xde\xfe\xda\xf7\xae\xd0\x0a\xed\x26\x88\xe0\x95\xfa\x69\x24\x41\x43\xe8\xba\x7e\x1a\x41\x30\xdc\xac\xf4\x67\x08\xfd\xeb\xdf\xc9\x3c\x76\x7a\x8c\x44\x9c\xed\xd7\x72\x81\xb0\xc2\xf5\xa7\x4d\x02\xef\x2f\xb9\xa6\x2b\xfe\x41\x8e\xfd\x1f\x94\x1e\x7f\x06\xe2\x20\xad\x2e\xfb\x19\x88\xff\x9c\x32\x70\x77\xdc\x9f\x96\x0d\x74\xb7\x8b\xfb\x69\xa0\x40\x7e\x8f\xc7\x24\x3f\x48\x57\x1e\xfe\x8c\x98\x41\x5a\x46\xf5\x33\x3c\x06\x4d\x75\x87\x9f\x96\xe7\xe7\x1e\xc0\x0c\x15\x3f\xa7\xa3\x41\x53\x1e\xe7\xa7\xe1\x01\x69\x0a\xeb\x67\xc0\x0c\xde\xb6\xd2\x57\x1a\x23\x90\x4e\x2f\xfd\x34\x46\x3f\xb7\xcf\x6f\x9e\xdf\xe6\x7f\x41\x34\xa3\xcc\x4f\x03\x05\x9a\x23\xe2\xcf\xd4\xfb\x4f\xb5\xe2\x49\x18\xf7\x33\xb0\x06\xdd\x7c\xc9\xcf\x20\x1a\xa4\x91\xdd\xcf\x9a\x6a\x90\xf9\xfd\x97\xd7\x24\x3c\x76\x8b\xe7\x9f\x76\x0c\xa4\x65\x24\x3f\x33\xf4\x20\xdc\x2e\xf3\x67\xc4\x0c\x52\x75\xd9\x9f\xe1\x31\x48\x4b\xa1\x7e\x66\xe3\x41\x5a\x51\xf6\xb3\x32\x1a\xa4\x13\x00\x3f\x93\xf1\x3f\x2b\xa3\xdd\xea\xe4\xa7\xb9\x03\x69\x7d\xcb\xcf\x6c\x3c\x48\x8b\xa8\x7e\x5a\x40\x90\xe6\xd4\x7f\x4e\x33\x83\x5e\xf6\x8e\x99\x77\x90\x56\x72\xfd\x0c\xb5\xc1\xca\xef\xbf\x7c\x48\xcb\x14\x0c\x41\xfa\xcf\xd4\xfb\x6f\x7d\x2d\xf3\x02\x76\x19\xb1\xb6\xf9\xb6\x9f\x15\x53\x20\x8d\xe5\x7f\xa6\xe3\xc1\xfb\x4b\x2e\x6a\xa1\xf5\x4f\x2d\x62\xa7\x31\x7f\x16\x56\x81\x96\xdf\x21\xdb\xc6\x2e\xfb\xa1\x84\xe5\xcf\xec\x3b\x78\x7f\xca\x55\xcd\xab\x83\x34\x06\xf9\xb9\x35\x3e\x48\x43\xcc\x9f\x13\xd7\x20\x8d\x7a\x7e\x96\x5a\xff\x14\xf2\xb3\x8c\xf7\xa7\xe9\x05\xa9\x73\xf4\x33\xaf\x0e\xc2\x7d\x64\x7e\xe6\xd5\x41\x1a\xe2\xff\x0c\xde\xc1\xb2\xde\xe4\xa7\xe5\xfd\x7d\xeb\xc1\x88\xde\x7f\xe6\xda\x41\x1a\xe4\xfc\x8c\xd4\x41\x33\xfd\xfe\x33\x19\x0e\xba\xda\x8a\x3f\xed\x2c\x48\xb3\x35\x3f\x8b\xb2\x40\xb8\xb1\xc5\xcf\xd8\x1d\xa4\x4e\xed\x4f\x63\x06\xf2\x7b\xc4\x06\xcd\x20\x75\x6a\x7f\x06\xc8\x20\xbf\xe6\x1b\x0d\x83\xb7\xf9\xfe\xd2\x97\x83\xc4\xf4\x37\x74\x6a\xf2\x40\x1b\xdf\x08\xe4\x74\x30\x48\xe3\x80\x9f\xc9\x6a\xd0\xad\x0d\xfb\x19\x47\x83\xb0\x1c\xf3\x67\x1c\xfd\x33\x8e\xb6\x19\x86\xbe\x20\x8c\xb6\x7f\x9a\x4f\x90\xba\x21\x3f\x43\x5f\x90\x4e\x20\xfe\xb4\xa8\xa0\xab\x59\xf9\x33\x1a\x06\x69\x71\xcd\xcf\xd0\x17\xa4\xd3\x9f\x3f\x43\x5f\xb0\xfe\xfb\x2f\xfb\xf5\xc5\x74\x39\xf1\xcf\x38\xf7\xe7\xca\x70\x2b\xa4\x7e\x06\xba\x20\x5d\xf0\xf4\xd3\xc8\x82\x24\xf1\x36\x37\x2c\xaa\x48\xf6\xee\x9c\x1b\x81\xae\x58\x34\x7f\x6e\x58\x54\x31\xd9\x82\x66\x6e\xc4\xbe\x62\xd1\xfb\x73\xc3\xc8\x8a\xe4\xbb\x99\x1b\x51\xad\x48\x46\xf1\xb9\x61\x77\x45\xb2\x3b\xda\xdc\x9a\x8d\x68\x36\x62\x72\xc8\x46\xb0\x3f\x0f\x5f\xcd\xdc\xd8\x05\x59\x24\x22\xcf\x73\xc3\xc8\x8a\x64\x91\xe6\xdc\x9a\x57\x64\x0e\x1c\x3d\xf0\xb9\x11\xd4\x8a\x44\x90\x7a\x6e\xe4\xb7\x45\xf4\xef\x90\xed\x22\xce\x45\x25\x79\x6e\xdd\xdb\x46\x5e\x8f\x5d\x30\xe6\xd6\xbd\xed\x17\x9d\x7d\xa8\xe6\xd6\x6d\x57\x67\xdc\xf2\xb6\x31\xc4\xa2\x97\x9d\x43\x71\xb2\x48\xd4\x86\xe7\x86\x55\x15\x99\x83\x9e\x08\xbb\x30\xbe\x07\xf9\xf7\x56\xd9\x73\x0b\xaf\xe5\x52\x72\x96\x30\xcf\x2d\xbc\x3d\xad\xee\xe0\xa9\x0e\xbb\x6a\xf8\x05\x79\xcb\xc3\x9f\x0e\x5d\x3f\x3a\x39\x7d\x14\xc9\xa3\x48\x0f\x0d\x0f\x39\x44\xda\xf1\xe9\x3d\xb3\xcf\x3e\x0b\x24\xa6\xf2\xff\x73\xfb\x4c\xa5\x1d\x48\xbe\x59\x24\x1a\xaf\x53\xc9\x7e\xf1\xfe\x1b\x6d\x2b\x9f\x19\x9b\xe8\x85\xaf\x57\xd9\xb4\xfa\xee\x8a\xce\x29\x9f\xd0\x17\xcd\xf1\xb4\xa7\xbd\xaa\xaa\x7e\xe3\x02\xd3\xa6\x4d\x2a\x95\xcb\xff\xf2\x64\x93\xfd\x6f\x1b\xb7\x3e\x6d\xed\x74\xb5\xbd\x87\xec\xb4\xe9\x0d\x78\xef\xcb\xee\x70\xcb\xe0\xe9\x1d\x2c\x5f\xcd\xe5\xf7\x41\x77\x2c\x1f\x1b\x52\x30\x9b\x3d\xb4\xec\x6f\x2a\xa4\xd8\x5e\x71\x6e\xcb\x0b\xb8\xf4\x67\xa7\x65\xbb\xaf\x00\x33\xc4\x6c\x85\x3f\xb7\xdd\xd3\x3b\x1d\xcc\x36\x5d\x73\xdb\x3d\xff\xce\x97\xe5\xa1\xc3\x3e\x3b\x28\x85\x0e\x7a\xfb\xf0\x36\xa9\xce\x45\x0a\x69\x6e\x87\xb7\xe9\x0e\xbb\xdf\x7f\xd9\x0a\x66\x6b\x59\x14\x3a\xb7\xc3\x8e\x25\x78\xa3\x00\x6e\xaa\x41\x2f\x92\x1d\x23\xe7\x76\xfa\xea\xbb\x34\x67\xda\xd8\xd3\xce\x26\x27\xcc\xde\xbc\x73\x3b\x6d\x2b\x33\xb8\x6c\xb8\x36\xb7\xd3\xbe\x38\x91\xc2\x5f\x74\xe2\x69\xf3\x4f\x77\x2c\xa3\xc7\x2e\xcf\x85\xd4\x1a\x3b\xf2\x4f\xb5\xe4\x45\x92\xdd\x9f\xdb\x65\x5b\xa9\x31\x22\xc9\x3d\x95\x92\x9f\x9b\xb3\xa2\xd3\xf6\xdf\x9e\xec\xd6\x9e\xda\x19\xb7\x2d\x23\xcb\x9a\xbe\xb4\xb7\x5d\x66\xb1\xef\xf4\x06\x6e\xfb\x8c\xd9\xcd\xf4\x05\xba\xbd\xa8\x36\xc4\x17\xf4\xe7\x9b\xe1\xf0\x9d\xdc\xc0\xcf\xf3\xff\xdc\x82\xd8\x43\x9e\xeb\xe7\xb9\xde\x43\x8d\xb9\x41\xb1\x1c\x71\x9b\x63\x69\xfb\xf2\x88\xe9\xb1\xdd\x63\x36\x76\x70\xe8\xe7\x21\x22\x5e\x86\x49\xd4\xcb\x3f\x34\xd6\x90\xcc\xd6\xfc\x61\xf3\x87\xfe\xd7\xe1\xa1\x03\x61\xc6\xe2\xd0\xe5\x21\xde\x95\xe2\x10\xd1\x89\x78\x5b\xb1\x73\xac\x79\xcc\x52\x24\x4e\xe6\xa0\x08\x3a\x91\xfe\x54\x77\x5c\x4c\xaa\xc3\x66\x0b\x7f\xe8\x06\x1a\x9a\x8c\x16\xfe\x32\x50\x2b\x65\x68\x56\x78\x5c\x74\xe2\xfa\xd9\x86\xff\x35\x30\x2c\x18\xa9\x36\xbc\xa5\xc1\xe7\xc5\x17\xa7\x32\xb8\x78\xcf\xcf\xc9\x1c\xce\x40\x92\x26\x9e\x8a\x7e\x8b\x4e\x9d\xc3\x6c\xec\x41\x21\xde\x5f\x76\x8e\xa5\xc7\x70\x42\x8a\x7b\x4a\x9b\xc1\x86\xeb\x28\x4a\xcd\x96\x36\x83\x2a\x20\x7c\x84\xd9\xd2\x4b\x9a\xbf\xc2\x98\xb5\xb2\x33\xac\x60\x9d\xbc\x66\x2a\x81\x8b\x44\x84\x6b\x36\xc7\x41\x10\xc8\xe2\x4f\x95\xc0\x45\xb2\xe7\xdd\x6c\x65\x2b\x8c\x18\xa6\xff\xe5\xcb\x52\x6c\x16\xbc\xe8\x9f\xb2\x61\xee\x4b\xda\x6d\x85\x0d\x2b\xfb\x82\x2e\x2b\xfb\x02\xa9\x2e\xd6\x6b\xcc\x36\xfd\xe1\xd4\xdc\xf8\x96\x39\x32\x82\x4e\x7a\x6f\xb6\x65\x5b\x29\x13\x4d\x9f\x12\xce\xba\x48\x24\xd0\xa6\x22\xdc\xa2\xcd\x45\x2b\x96\x6f\x2c\x79\x2e\x0a\x3c\x66\x73\xc4\x6b\x9f\x13\xee\x27\xb1\x7b\xfe\x17\x81\x04\xe5\x6c\x8e\x82\x20\xd3\xb7\xcc\x41\x10\xac\xbe\xfc\xa1\xe7\x7f\xd1\xc3\xd7\xff\xb0\x61\x07\x0d\xb3\x7b\x1c\x17\x9b\xe3\x22\xc3\x4f\x3b\x7d\x3d\xf1\xa3\x59\x6e\x32\x9b\x23\x1e\x78\x1b\x46\x63\x1d\xcb\x9a\x1e\xf2\xe2\xfc\xa7\xbd\x48\x05\x49\xae\xbf\xd5\x1f\x67\xbb\xbc\xd6\x8b\x45\x58\x36\x95\xbd\x16\xc1\x7a\xa9\xa9\xa0\xb5\x88\xe6\xa5\x2e\xaf\x7e\x79\x75\x1a\xe4\x80\x08\xde\x46\xf2\x42\x5f\xb6\xe8\xb2\x45\xf4\xde\xed\x3b\xc8\x76\x4e\xec\x98\x33\xdb\x6d\xbf\x33\x5f\x95\xf6\x9e\xe3\x26\x78\x4f\xe6\x2f\x7d\x14\x7a\xe8\xcb\x5f\xfa\x28\x5e\x34\x56\xb8\xcd\x76\xfb\x5a\x7e\xd3\x5a\x7e\x30\xb7\xef\x25\x05\x26\xa8\x1c\x4d\xf5\xb1\xc5\xc0\x83\x9e\xed\xb1\x65\x6c\x83\x90\xbe\x24\x8f\xe7\x7f\x4c\x9e\x70\xe7\x8f\xe7\x57\x56\xc4\x73\x3d\x9e\x9e\xa5\x89\x6c\x3e\x3e\xdb\xe3\x73\xd5\xf5\xde\x3d\xbd\x2f\xef\xa7\x09\xc9\x1d\x3d\x76\x0f\x9a\x90\x14\xf2\xcf\xf6\xf3\x8a\xec\xc6\xc9\x56\x8c\xb3\x39\x76\x83\x4c\xbf\xed\x9f\x7d\xcd\x3a\x8a\x74\xec\xfb\x79\xc5\x9f\x57\xa4\xa9\x3f\x4f\xff\x63\x19\x91\x63\xdf\xcf\xdb\x26\x71\xc5\x8a\xa7\xa9\x24\xb6\x68\x63\xf2\xbd\x74\x9d\x6a\x10\x14\x88\x4e\xd5\xae\x45\x22\x35\x31\x95\xb6\x16\x49\x19\xef\x54\x54\x5a\x24\x95\x9f\x53\x51\x69\xf1\x9e\xff\xed\x9e\xae\x5f\x0a\x92\x7a\xba\xa9\x10\xb4\x08\x84\x25\x66\xef\x9e\xcc\xa5\x75\x93\xb1\xa9\xeb\xbe\x82\x64\xb3\xb1\xd9\xbb\x17\x60\x06\x84\x1d\xf1\xa7\xe2\xd0\x22\xd9\x3a\x7d\x2a\x0e\x2d\x92\x9a\xd1\xd9\xa9\xce\x10\x9d\xd5\x3a\x53\x71\x68\x11\xba\xe8\x6a\x43\x8b\xb7\x15\xfe\xd2\xc6\x22\xd9\xb8\xc2\xf3\xdb\xd8\xb0\x61\x83\x43\x36\x8c\xe5\x76\xd3\x5e\xd4\xfb\x05\x9d\xe5\xb5\x53\x05\xe9\x89\x5c\x74\xd6\xc6\x21\x72\x4e\xe2\xbd\x24\x27\xd3\xf6\x80\x64\x33\xe7\xa9\x34\xb4\x08\x36\x08\x9c\x4a\x43\x8b\xa0\x06\x65\xaa\x03\x2d\x92\xfd\x97\xa7\x3a\xd0\x42\xb1\x9f\xd9\x35\x3d\x20\xd0\xdb\x9a\xea\x3b\x8b\xb7\x15\xf4\x8f\xd6\xe8\x53\x73\xfe\xee\x49\x87\x1b\x24\x9b\x13\xcf\xae\x39\x02\x8d\xd2\xd5\xa9\xc0\xb3\x68\xe5\x5b\xa0\x85\xea\xf9\x09\xa7\x72\x03\xba\xea\xdd\x4d\x8f\x78\xd9\x7b\xda\x41\x2f\xe2\xfb\xaf\xb2\x83\xd8\x74\x3b\xec\x7f\xed\x18\x18\xc8\xb6\xcc\xae\x39\x02\xc1\x74\xff\xec\x9a\x23\x10\x9a\x8b\x3e\xfd\xe1\x64\x3f\x11\xac\x5d\x27\x5b\x25\x92\x0d\x83\xa7\x3a\xd0\x22\xd8\x62\x64\x76\xad\x11\x68\x0b\x3b\xa0\x0e\xb4\xc8\xf2\x8a\xcb\x57\x91\x55\x7a\x6c\x59\x3d\xbb\x9e\x3b\x48\xb6\x81\x9d\xea\x40\x8b\x64\x7f\xda\xd9\x97\xad\x7f\x91\xe5\xdb\xb9\xbc\xe2\x97\x5f\xf2\x92\x1a\x2d\x90\xe5\xf9\x77\x5f\x95\x9d\x57\xc5\x67\x79\xd8\x8a\x43\xe9\x69\x2e\x79\xf8\xc3\xc3\x1f\xd2\x15\x87\x97\x3c\xbc\x24\xa7\xd7\x40\x81\xb6\xb0\x59\x5d\xc7\xbd\xbb\xce\x7e\x7e\xc7\x7c\x46\x6c\x23\x44\x81\xd7\x54\x70\x59\x2c\x63\xe2\x7e\x7a\x49\xa6\x5d\xd8\xe7\x70\xf6\xd3\xae\x3e\x75\x90\x97\xc7\x6c\xff\xe9\xb6\xa3\xfe\xd2\xee\xc7\xda\xd5\x77\x7e\xfb\xfa\x74\x74\xe3\xc6\x2f\xef\x92\x14\x51\xb0\x38\x63\xaa\xc2\x2c\xda\xf7\x12\x68\xe2\x40\xb2\x57\xdd\x54\x98\x59\xe4\xd7\x3f\x97\xad\x20\x47\xc4\xfa\xa9\xa9\x08\xb3\x78\x1b\xeb\x2f\x6d\x06\x26\xae\x6c\xac\x26\x4e\x1d\xe4\xfd\x3b\x64\x2b\x6e\xef\xfc\xef\xbc\xf6\x54\xed\x58\x34\x9d\x48\xa5\x8d\x45\x37\x96\x50\xda\x58\xf4\x0d\x87\x4e\xd1\xe2\x89\x42\x71\x56\xe7\xb9\x3e\x5e\xfd\xf1\xea\xbc\x10\x8f\xe7\x42\xbd\x82\xc5\x79\x53\x1d\x63\x11\xdd\x8f\x4a\x9b\x05\xda\xf4\xb5\xfc\xd9\x2e\xe6\x51\xd8\x21\x6c\xf6\x9f\x03\x00\x7b\x43\xef\xf6\xa7\x36\x0b\x24\xdb\x8d\xcd\xae\xcd\xea\xbf\xaf\x66\xcd\x93\x79\xc9\x9f\xfb\x5e\xd0\x0a\xc3\x12\x10\xac\xfb\x99\x61\x58\x12\xee\xde\x8c\xd0\xed\x54\x30\x58\x24\xab\xa0\x66\xb0\xfa\x4f\x24\x5b\x2e\xcd\xa0\x00\x41\xa4\xc9\x0e\x45\x7f\x45\x2c\xc6\xd1\x30\xe0\x00\xc9\x4e\x56\x33\x34\x5a\x20\xd9\x71\x69\xaa\x0c\x2c\x02\x21\xe3\x19\xdd\x86\xa1\x12\x61\xe2\x24\x28\x00\x10\xc9\x46\xae\x53\xb1\x60\xf1\x36\x9f\x86\x31\xdd\x2f\x92\x7d\x8d\x66\x68\x00\x41\xa7\x2a\x68\xaa\x29\x2c\x82\xe5\xd4\x33\x98\xdb\x17\x6d\x2d\xcf\x6f\xc3\x5e\x24\xbb\x2b\xcd\x30\xc4\x89\x2f\xc4\xc1\x57\x8a\xb0\xb1\xc8\x44\xb0\x4c\x7a\x86\xd6\x2e\xc2\xc9\x6b\xff\xcb\xf3\x93\x9e\x61\x8f\xa4\xa9\xcc\xb0\x68\xdd\x86\x31\x69\x3f\x3f\x99\x61\xf6\xfe\x9e\x31\x3c\x3f\x75\x84\x14\xd8\xcd\x18\x76\x06\x75\x84\x6c\x52\x35\xc3\xa8\x07\x4d\xe1\x64\xc7\xa2\xa9\x5a\xb0\x48\x76\xce\x99\x61\x72\x06\xf4\xf0\x2e\xcb\x5e\x64\xbd\x00\xbb\xc5\xcc\x28\x7b\x8c\xf5\x02\x65\xf7\x1b\x5b\xc4\x97\x9b\xc1\x89\x0b\x13\x31\x20\x59\x7d\x37\xd5\x01\x16\x8d\x0a\xa0\x19\xd3\xb6\x4e\x1e\xdc\x77\xc8\x86\x4d\xc3\x3d\x7f\x68\x2b\x98\xb4\xa0\xd2\x66\x2a\x03\x2c\x92\x5d\x47\xa6\x32\xc0\x22\xcb\x77\xd8\x3c\x0f\x68\x83\xed\x37\xa6\x9a\xbf\xe2\x3d\xc6\x35\x8d\x67\x14\xfd\xdd\x71\x23\xc2\xa4\x4e\x2c\x6d\x2e\x3e\xa1\x3a\xc0\x22\x76\xaf\x60\xa2\x07\x34\xe6\x1e\x66\x2c\xdb\xc1\x1c\x05\xab\x9d\x67\x18\xbc\xc4\x97\xc2\xc1\xc0\x2a\xdd\x2b\x9a\x51\xa7\xa2\xbc\x13\xb5\xdd\xf7\xdf\xf8\x26\x0e\xff\xed\xf8\xda\xc1\xe9\x0c\x69\x40\xb3\x6e\x70\x2a\x92\x2b\x9a\x89\x05\x15\x71\xc5\xfb\x53\xba\x52\x63\x00\x06\x73\x49\x33\x8c\x73\x40\xb2\xab\xc8\x54\xe0\x56\xb4\xb1\xf0\xee\xc2\x6c\x4f\x98\xed\x59\x38\x81\x61\x1e\x07\x34\x45\x2c\xa7\x4a\xb8\x22\xd9\x5e\x63\xc6\xe9\x63\x40\x77\x69\xfc\xf7\x6f\x7e\xeb\x2f\x96\x79\x45\xd5\x71\x45\xb2\x4b\xc6\x0c\xed\x08\x68\xac\xd5\x9b\x61\x5c\x04\x92\xfd\x60\xa6\x52\xb8\x62\x99\x55\x8c\xcb\x96\x5d\xac\xaf\x63\xd8\x8b\xcb\x2b\xb2\x64\x6d\x73\x74\xd1\x8c\x84\x66\xc4\xaf\xc7\x74\x12\x78\xdb\xca\x2f\xb5\x23\x60\x99\x0e\x53\x1d\x57\x2c\x13\x70\xa1\xa1\x08\xf7\xaf\x5d\xbe\x45\xb7\x17\xa0\x40\xaf\x6c\xbf\x96\x02\x74\x0a\x80\xa6\x52\xb8\x62\x99\xf4\x8b\xc7\x37\xf2\xf9\xb6\x61\xa0\xb5\xc6\x45\x20\x59\xd3\x34\x55\xcc\x15\xef\x35\x79\x78\x8f\xb7\xce\x6e\x2c\x0b\xdb\xab\x8a\xae\x08\x8a\xc8\xa7\x22\xba\x22\x59\xbd\x33\xc3\x0c\x16\xc8\x72\xf8\xfa\xd9\x0c\x94\x0b\xc6\xc2\x4f\x56\x58\x57\x2c\xb3\x8a\xa1\x2d\x02\xc9\xfe\x10\x33\xb4\x28\xe1\x9c\x3e\x0b\xf1\x66\x18\x1a\x81\xc6\xcc\xd1\x1c\xec\x27\x2b\x5a\x55\xfc\x6d\xa2\x87\x76\x69\x6c\x5f\x93\x16\xc7\xd2\x63\xf4\x0c\x06\x59\xc5\x5e\x11\xfb\xf0\xd0\xf4\x10\x23\x4b\x7a\xf9\xdd\x43\xc8\xa5\xd1\x0b\x43\x1b\x37\xac\xcb\x5f\xb8\xee\xc3\x7c\xd9\xf8\x76\x64\xc3\xdb\x1e\x66\xc2\x40\xa3\xcc\xfc\xfd\xa3\x7b\xcc\x25\x33\x9d\x43\x36\xd7\x75\xe9\x3e\x8e\xa1\xb9\x1a\x9a\x2b\xbe\x55\xc5\x78\xc5\x32\x6f\xaa\x18\xaf\x78\x7f\xc9\x2d\x68\xc1\xc0\x32\x57\x3b\xb4\x60\x60\x99\x98\x55\xb3\x57\xbc\xbf\x1c\x1c\x7b\x3c\x86\xe3\xe6\x9d\x6a\xc2\x86\xf6\x6a\xe1\xec\x0e\x03\xb6\x61\xc0\x86\x71\x1a\xe1\x23\x0a\x96\x4e\x31\x00\x29\xf7\x2b\x9a\x33\x0c\xc3\xb0\x0e\x04\x75\x4e\x53\x05\x60\x11\xac\x09\x9e\xc3\xe9\x8c\xe1\x74\xc6\xb2\xd3\x0c\xeb\x40\xb2\x7b\xc6\x1c\xf1\xb5\x0c\x7b\x45\x70\x3c\x8c\xce\x40\x22\x33\x37\x87\xb6\x0f\xbc\x27\xa3\x37\x8c\xce\x86\xe2\x8c\xab\xfb\xd3\xd3\x63\x3e\x3d\x5e\xff\x41\x69\x9b\x78\x8f\xd1\x5e\xa7\x3a\x86\x85\x6c\x88\x12\xce\x61\xe8\x05\x92\x3d\x3b\xe6\xd0\x72\x8e\xfc\x2e\x41\xef\x1a\x7a\x81\x2c\xef\x3e\xbd\x2d\x6a\x0c\xd0\xb0\x99\x2a\x0f\x8b\xe6\x24\xc9\x30\x1a\x03\xc9\xde\x12\x73\xa4\x4f\x2a\x51\xd0\xf7\xe1\x19\x8c\x81\x34\x8c\x53\xb1\x58\x0c\x4a\xba\xe6\x30\x18\x03\xcb\xe4\xf8\xd0\xa4\x83\x64\xd3\x85\x39\xcc\x33\x82\x39\xbe\x43\x3e\x28\xc5\x8e\xd8\x31\x78\xaa\x75\x2c\x92\x4d\x29\xe6\xd0\xf2\x0f\x2d\x3f\x61\xdc\x70\xa2\x66\xd4\xd7\xb5\xc5\x31\x1b\x4b\x6d\x02\xab\x7c\xe6\xd0\x19\x18\x3a\x03\xc4\xaf\x63\xda\xd9\xf3\xeb\x6c\xda\x31\x6d\x2d\xeb\xe2\x11\x34\x9b\x0a\x27\x8b\x64\x6f\x86\x39\x0c\xf7\x86\xe1\x1e\x2e\xe1\x30\xdc\x1b\x6e\xc8\xb6\x7c\xd5\xb4\xf3\xc3\x15\x7f\xe4\x61\x86\x36\x7d\xac\xef\xc9\x71\x36\x0d\x38\x58\x26\xf7\x87\x06\x1c\x24\xdb\x17\xcc\xb1\x7b\x01\xe5\xf8\xcd\x3d\x8c\xdd\xef\x73\xf7\xfb\xc4\xcf\x1d\xbb\x8f\xd3\xa5\x75\x68\xf4\x4d\x95\x92\x45\xb2\x81\xc1\x1c\xa6\x29\xc1\x72\xe2\x61\x18\x2b\x8e\xe3\xbb\x02\x1d\x6e\xb0\x38\x0c\x16\x6d\xdb\xe1\x5d\x1d\xe1\xbf\xd1\x95\x06\x90\xc3\x00\x72\x79\x36\xdb\x76\x7c\x6d\xa3\x77\x75\x07\x86\xee\xc0\xc2\x17\x55\x40\x59\x34\x27\x8d\x86\xb6\x7f\x7c\xb6\x1f\xcf\x76\x68\xac\x87\x2a\x89\x8e\x4e\xa7\xb7\x60\x59\xff\xc2\x99\x1e\x9a\xe6\xa1\xe6\xcf\xc2\x0f\x57\xe3\x58\x24\xcb\xd5\xe7\xd0\xc4\x82\x64\xed\xf5\x54\xbc\x58\x24\x2b\xa8\xa7\x4a\xc5\xe2\x3d\x19\x77\xef\xec\x0c\x68\x6c\x08\x38\x87\x16\x76\x38\xc3\xbf\x1c\x8b\x34\xb1\x20\x59\xbc\x3c\x55\x34\x16\x41\xd9\xd6\x54\xd1\x58\x24\x6b\x97\xa7\xea\xc5\xa2\xa5\x1f\x95\x69\x46\xd5\x8b\x59\xa7\x3c\x87\x46\x17\x24\xc2\x4d\x73\x68\x4d\x87\xd6\xd4\x37\xf7\xf1\x2e\x1f\x3a\xa8\x39\xe2\xfe\x6c\x98\x16\x16\x37\x50\xc9\x62\x91\xac\x7b\x9d\xea\x13\x8b\x30\x12\x57\x9f\x58\x24\xab\x01\xe7\xd0\xe6\x0e\x6d\x2e\x01\x42\x3a\x77\x0f\x96\x53\x44\xa9\x7d\x05\xc9\xc2\xbf\xa9\xee\xb0\x48\x96\x0c\x4e\x65\x87\x45\xb2\x56\x6f\x26\xeb\xce\x44\xb2\x70\x6e\xa6\xc9\x48\x90\x73\xfb\x07\x5b\x9d\xac\x54\x13\x39\xb1\x87\xe9\xd4\x3e\xe8\x06\x9f\xd9\x6c\x23\x25\x75\x2c\x67\x9b\xe9\x6c\x3f\x48\xd6\xc6\x4d\x35\x8f\x45\x73\xb2\x2b\x35\xcb\xa0\x9b\xc2\x56\xf2\x58\x04\x7a\x52\x33\x9d\xda\x07\xc9\xca\xb8\x99\x46\x95\xa9\x1c\x21\xde\x9b\x2a\xc8\xa2\x85\xa1\x82\x32\xc8\xa2\xb3\xd3\xf9\x4c\x4d\x37\x68\x6c\xd8\x34\x53\xd3\x0d\x72\x7e\x87\x6c\xab\xa2\x3d\xf6\xba\x51\x25\x08\xc3\x5d\x95\x91\x45\xb2\xb8\x6b\xaa\x8c\x2c\x16\xeb\x00\x66\x9a\x55\x05\xd1\xbe\x43\xf6\x61\xb0\xe1\x1a\x46\x29\xb5\xdb\xa0\x6f\xf6\xa1\x76\x1b\x74\x07\x19\xf5\x93\x45\xdf\xd3\x43\x36\xf5\xc5\x60\xa7\xb3\x99\x1a\x64\x10\x1b\x36\x5a\xfd\x64\xd1\xc2\x9e\x70\xa6\x0e\x24\xab\xc9\x66\x6a\x90\x41\xb2\x4c\x6c\xa6\x09\x54\x90\x2c\x77\x99\xe9\xe4\x1d\x48\xd3\x1b\xe9\xe4\x1d\x48\xd3\x45\xa9\xd1\x06\x69\x8e\x25\x4d\xa0\xa6\x5a\x3c\xdf\x7f\xf9\x4a\x52\xa1\xce\x32\xae\xa9\xc8\xb2\x78\x07\x04\xda\x3a\xec\x56\xe5\x79\x18\x82\x55\x59\x16\x11\x3e\x6e\xeb\x1a\x40\xb0\x18\x6e\x2a\x96\x2c\x82\x55\xf5\x33\xb5\xeb\x20\x29\x0a\x9c\xa9\x5d\x07\xc9\x6a\xa3\x99\xda\x75\xd0\xf7\xe9\xe9\x6d\xeb\x8b\x6e\xf2\x24\x35\xe2\x20\x58\xce\x3e\x55\x59\x16\x41\x5d\xf6\x4c\x2d\x36\x48\x27\xe0\xd2\x99\xc1\x54\x78\x07\x1f\x5c\xe1\x65\xd1\xb4\xa7\x0a\x2f\x8b\xa4\x88\x79\xa6\x66\x1d\xa4\xf3\x9f\xa9\x59\x07\xf1\xbd\x73\x9a\x75\x90\x94\x35\x4f\x05\x9b\x45\x73\xa1\xe5\xcc\xf2\x8e\xa8\x55\xa4\x86\x79\xa6\xc6\x3f\x5d\xb7\x87\x6b\xab\xae\xb3\x68\x86\x62\xa9\xa1\x07\x3d\xfd\x4a\xcd\xfe\x82\x9c\xdf\x21\x6f\xd2\x7d\xf1\x9b\xbd\xaf\x3f\x00\x92\x22\xda\xa9\xd6\xb3\x88\xee\xd7\x60\xc2\x40\xad\xe7\xe9\x93\x34\x95\x9c\xce\x6c\xae\x61\xcb\x6c\x2c\xdb\xbb\x39\x87\xa1\x24\xf4\xfc\x24\xa1\x17\x79\x11\x25\xa1\x45\x52\xcb\x39\x73\xd9\x0c\xd2\xc4\x94\xdf\x4e\xb5\x9e\x45\x52\x18\x3a\xd3\x09\x50\x90\xd3\x47\xa2\x6f\x01\xc2\xc9\x72\xe5\x9f\x45\xb7\x30\x21\x9d\x26\x05\x7d\x12\xa9\xa8\x08\x2d\xde\x86\x71\xb2\xdd\xc6\xb2\x09\x9c\x59\xd0\x34\x31\x9d\xbb\xfe\x01\x19\x9b\x74\x36\x15\x24\x95\x9b\x33\x77\x5b\xc6\x46\x01\x94\x51\xce\xdc\x7d\x98\xec\x9f\x6f\x26\x23\x75\x36\x40\x4e\xdf\x8c\xc3\x67\xc2\x82\x00\x2a\x26\xa7\xd2\xce\xa2\xb1\x0f\xed\x4c\xb3\xd0\x20\xd9\xf2\x6a\xa6\x89\x07\x10\xc3\x21\xd7\xc4\x03\x48\x2a\x1c\x67\x9a\x98\x4e\x13\xd3\x0b\xaf\x39\x75\x48\x40\x52\xa8\x38\xd3\x2a\x13\x90\x54\xf5\x4d\xe5\x9e\x45\xff\x6c\x9f\x69\x07\x90\x96\x17\x28\xf7\x2c\x92\xaa\xc1\x99\x66\xb4\x41\xef\x0e\x6d\x66\x1d\x40\x4e\xc7\x6a\xb3\xd7\xaa\x3d\x4f\xad\xcf\x65\xbb\x58\x36\x90\x0e\xdf\xa6\xaa\x41\x67\x85\xc3\x4c\xfd\x1f\x90\x56\x59\xa5\x89\x08\x90\x46\x4f\xea\x38\x8b\xb4\xa2\x2a\x75\x89\x40\x67\xaf\xda\x99\x4e\xbc\x82\xbe\xf9\xf2\x58\xd6\x92\xae\x1d\xfc\x87\x0d\x3c\xa7\x62\xd0\x22\xad\xca\x52\x0c\x5a\xc4\xe6\xab\xa5\x5b\x05\xd2\xa2\x2c\xd5\x9e\x45\xec\xb6\x51\x17\x0a\xe4\xf4\x87\x26\x2e\xc0\xfb\x04\xe9\x03\x1d\xa6\x4f\xb4\x79\xf7\x97\x3e\x1b\x17\xe6\x23\x2c\x32\x95\x68\x16\x69\x39\x91\x72\xcc\x33\x29\x80\xfc\x3e\x04\x53\x12\xa0\xef\xdf\x0f\x3d\xbf\xd5\x8e\xcb\x97\xeb\x67\xbf\x53\xed\x68\xda\x3e\xcd\x7b\x83\xb4\x74\x2b\xcd\x48\x24\x33\xb3\x16\x95\xa9\xe3\x2c\xde\x93\x05\xc7\x9a\xc7\x78\x9f\x39\xbf\x7a\xcc\x22\xad\x8d\x51\x8f\x59\xbc\xbf\x1c\x1c\x3b\x3d\xc6\x48\x8a\xe7\x5c\xba\x51\xa5\x1b\xc5\x83\x55\x57\x79\x56\x33\x00\xe3\x3e\xcb\xb2\x1d\xf0\x1e\xe3\xa7\xba\x32\xe5\x26\x7a\xeb\xfb\xed\xcf\x63\xdc\x02\x6e\xa6\xd2\xca\xb3\xd8\x7d\xd5\xd4\xa2\xd2\xca\x22\x2d\xb2\x28\xfd\x16\x30\x59\x08\x30\x95\x56\x16\xe9\xf4\x87\x9a\xc9\xe2\xbd\x24\x37\xaa\x4b\x02\xd2\x9a\x03\xe5\x90\x45\x5a\x2b\xa1\x1c\xb2\x68\x63\xd9\x32\xfd\x08\x90\x16\x18\x28\x6b\x2c\x62\xe7\x9b\x51\xd6\x58\xbc\xbf\xf4\x98\xad\xd5\x91\x98\x1e\xb2\xb5\x6c\x72\x6a\xcd\x81\xba\xc6\xe2\xfd\x25\xb7\xae\xdb\xa0\xb0\xb1\x95\x4d\xa5\x8f\x50\xfa\x08\xe8\x75\x4d\x85\x8d\x45\x38\xf2\x94\x25\x3f\x20\x9c\x63\x2d\xa7\x5d\x41\x3a\x2d\x5d\x9a\x7a\x90\xce\x97\x2b\x4f\x3c\x95\x22\x76\x26\x59\x8d\x61\xf1\xb6\x8c\x5f\x6a\x9f\x4b\xfb\xcc\xf7\x5c\x26\xdc\x8b\x18\xdb\x99\xde\xd2\xf2\x82\x74\xe2\xaf\x34\xbc\xe0\x3d\x99\x17\xf0\x3d\x28\x03\x32\x1f\xb1\xa6\x57\x49\x61\xa7\xf9\xca\xb8\xbb\xbe\xb8\xdb\xee\x30\x31\x0f\xd2\x09\x36\x65\x86\xc5\xfb\x6f\x3c\x63\x6d\x6f\x69\x7b\x31\xe4\xa5\xa1\x2d\x0d\x2d\x83\xa7\x32\xc3\xc2\x65\xca\xb3\xcc\xcc\x83\x40\x04\x72\x96\x99\x79\x90\x6c\x7b\x33\xcb\x99\x5d\x10\xe1\xbb\x61\xa8\x0f\x82\x95\x21\xb3\x0c\xf5\x41\x3a\xad\x53\xda\x67\xb0\xbe\x07\x6c\xf0\xaf\x8a\xb1\x33\x31\xaa\x18\x8b\x68\x0c\xd7\xa5\x15\x2f\x73\xfc\x78\xa2\x0a\x1b\x8b\xce\xc2\xfa\xa9\xb0\xb1\x48\x67\x5d\x4a\x2b\x0e\xd2\xf9\x0e\x85\x8d\x45\x1a\x3e\x94\x26\x1b\xf4\x66\x17\xee\xb6\x8b\x05\xff\x4e\x2a\xa8\x75\x2c\xd2\xe9\x08\x55\x8c\x67\x69\x9d\x89\x09\x6b\xf7\x8a\x3b\xd5\x9d\xbe\xeb\xe6\x1a\xc0\xca\xef\xf4\x36\x62\x37\xc9\x47\x53\x0f\x6f\xfb\xf8\xde\x3b\x8f\x79\xc9\x83\x64\x23\xce\xa9\x92\xc5\x22\x86\x83\x9e\xb9\x01\x90\x8e\xda\x4a\x16\x8b\x9c\xc4\x9c\xe5\xb4\x00\x98\xda\x75\x55\x8c\x67\x9d\x36\x9f\x86\x99\x2d\x00\xbd\xf9\x8d\x68\x64\x41\x3a\xc5\x50\x1a\xd9\xb2\x0a\x6a\x78\xc8\xcf\xe6\xb2\xf9\xb6\xd5\x39\x62\x10\xdf\xc0\x65\xe6\x41\xb5\xe1\xee\xf7\xa0\xe1\x05\xad\xfb\xa5\x5e\xf6\x98\x1b\xd9\x2d\x07\x11\x8d\x31\x48\x67\x35\x4a\x63\x0c\xd2\x19\x00\x65\x8a\x45\x3a\x81\x51\x4e\x15\x83\x40\x3b\x6e\x96\x76\x14\x74\x27\xa5\x94\x29\x16\x19\xf1\x0f\x53\xd0\xa5\xe5\x05\xe9\x2c\x42\x59\x36\x05\xe2\x7b\xdd\x1e\x3f\x63\xe6\x9b\xcd\xfb\x97\xc6\x18\x34\x4b\x9d\x4a\x63\x0c\x82\x4d\x1b\x66\x39\x89\x00\xd2\x84\x7e\x99\xe2\x00\x69\xa6\xbe\x9c\x43\x00\x69\x8e\x5d\x45\xe4\xf9\x29\x22\x2f\x9f\xa1\x69\x0f\x10\x8b\x58\x48\x45\x64\x11\x66\xcf\x95\x3f\x16\xc1\xfa\xb5\xa9\xb0\xb1\xe8\xdf\x8b\xe4\x4c\x35\x48\x53\xec\x4a\x16\x8b\xf7\x92\x74\xa8\x16\x5b\x81\x62\x83\xc0\xa9\x75\x06\x9d\x15\x91\x73\x9a\xe3\x00\x69\xea\x7c\x9a\xfd\x07\xb9\xbe\x1f\x2e\x0f\x2d\x0e\x35\x0e\xed\x1e\xa2\x72\x72\xfa\xc3\xd3\x43\xa7\x6b\x24\x39\x74\x79\xc8\xfa\x8c\xb7\x5f\x95\x01\x16\x69\x2e\x5a\xcd\x5f\x91\xf6\x8e\x9a\xbf\xa2\x1b\x1e\x4d\x8d\x35\x08\x6d\xc5\xd4\x58\x83\x34\x2f\x3f\xcd\x3b\x20\x10\x9c\xe8\xb1\xce\xe9\x5c\x00\x48\x93\xfc\x6a\xf2\x8a\xb7\xc3\x3c\x56\x1e\xd3\xb7\x20\x93\xab\x2a\xef\x54\x82\xd7\x24\xb9\x12\xbc\x22\x36\xdb\x6f\x84\x0f\x9a\x03\xcc\x1c\x36\x76\xb0\xcb\x1c\x16\x4b\x6d\x5d\xb1\x2c\x65\x9d\x1a\x66\x90\xe6\xd6\xa7\x51\x33\x48\x53\xeb\xd3\xa8\x19\xa4\xa9\x63\x45\x6d\xc5\xdb\x56\x8f\xd9\x65\x96\xcf\xa2\x7d\x33\x15\xac\x15\xbd\x78\xfb\x15\xac\x15\xf3\xbf\xff\x0a\x0f\xa1\x55\x48\x44\xa6\x60\xad\x48\x83\x64\x05\x6b\x45\x98\x8e\x98\x1a\x61\x90\x26\xf8\xd5\xb0\x15\xaf\xc7\xe0\x25\xbd\x81\xf2\x06\x38\xa4\x25\x9d\x4e\x71\x5b\x9e\x34\x8d\x3c\x41\x2e\xc2\xaf\xa9\xa9\x9b\x2e\xa6\xb3\xc0\x47\x31\x58\x91\xe6\xa6\x15\x83\x15\x69\x56\x5b\x4d\x57\x91\xe6\xa1\xa7\x96\x07\xe4\x22\x96\x9b\x06\x86\x20\xcd\x4c\xab\xe9\x2a\xde\x4b\xfa\x6f\xfe\x72\xf7\x97\xdc\x80\x69\x68\x90\xe6\xaf\xa7\x21\x1f\x08\xab\xa4\x54\x5d\x15\x6f\x6f\xf0\x9c\x0e\x7b\xe8\xf8\x76\xbe\xa7\x69\xd6\x31\x81\xce\x1e\x63\x73\x5a\xc7\x04\x62\xf7\xbf\x34\x34\x20\x4d\x69\x2b\xc4\x2a\xa2\xfb\x05\x58\x9f\x04\xd2\x8c\xb6\x7a\xaa\x22\x4d\x68\xab\xa7\x2a\xd2\xa4\xf1\x34\x0c\x9c\xc4\x7c\x26\xaa\xa7\xe6\x08\xa4\x29\xee\x69\xe8\x06\xd2\x34\xf2\xd4\x34\x4c\x4d\x03\xa1\x9b\x52\xa6\x22\x4d\x22\x28\x51\x2a\xd2\x84\xc1\xd4\x0e\x80\xd0\xaf\x9b\xda\x01\x90\x46\xef\x4a\x94\x8a\xf8\x6e\xdb\x21\x1c\xa4\xc1\xfb\x74\xbc\x06\xdd\x4c\xcf\x34\x4b\x0d\xde\x9e\xa6\xad\x8e\xe1\x20\x5c\x31\xa3\x92\xa9\x68\x96\x9d\x4f\xe7\x81\x41\xdf\xed\x43\x87\x70\x95\x4c\x59\xe0\x37\x55\x32\x15\xcd\x74\x96\x4a\xa6\xf3\x53\x32\x65\xb9\xe3\x54\xb6\x54\x74\x27\x75\x94\x2d\x15\xef\xbf\xd1\x3f\x0e\xe2\x20\xf5\xab\xd5\x15\x15\x7d\xc3\xbf\x59\x4e\xd7\x82\xf7\x97\xc5\xb1\xcb\x63\xfe\xf2\x7d\x63\x57\xf3\x97\x6c\x69\x66\xa0\xb7\x5c\xf1\x00\x9a\xaf\xdd\x32\x9c\x02\xbd\x31\x58\x2e\x47\x59\x90\x86\x66\xaa\x88\x8a\x95\xf3\x1f\x0a\xb7\x15\x19\x9d\x9f\xc8\xe8\x5a\x9e\xd8\x6b\xb1\xe5\x59\xb3\x45\x06\x56\xa0\x37\xf2\x75\xcb\xc0\x0a\x34\x2b\x8f\x96\x81\xd5\x72\x7f\xb3\x85\x5f\xa9\xca\xa8\x68\x63\xe1\x45\xaa\x32\x2a\xc2\xb9\x75\x55\x46\x45\x58\x46\xb6\x0c\xb6\xd6\x17\x6c\xe1\x46\x2e\x87\x74\x10\x6c\xd6\x38\x97\x13\xab\xa0\x6f\x8c\x45\xcb\x72\x21\x90\x68\x0b\x4f\xe5\x3c\xc5\x72\xad\xc0\x32\x83\x0a\x5a\xb0\x1b\xf8\x54\xcf\x53\x34\x37\x98\x9b\xca\x67\x8a\x3e\x78\x35\x97\xe9\x4b\xb0\xac\xf9\x5f\x0e\xb0\xe0\x6d\x2d\x67\x73\x34\x05\x61\x5c\xbf\x8c\x7c\x40\xdf\x70\x4c\x96\x51\x0e\x68\xbe\xfa\xaa\x6c\x8a\x88\xef\x90\x97\x24\x99\x68\x98\xac\x54\xa6\x58\x16\x6f\x2f\x63\x10\x90\xc6\xa7\xca\x62\x8a\xb6\xfb\xca\x19\x24\x80\x34\xfe\x5d\x06\x09\x20\x36\x9f\xd2\xf2\x5c\xcb\x73\xd1\x7a\xeb\x46\x97\x75\xa3\x3e\x25\x87\xea\xe5\x50\x4d\x48\xbf\x1c\xaa\x41\x0c\x5f\x4c\x83\x04\x55\x31\x51\x76\x9b\xcb\xd1\x1b\xf4\xe6\xfb\xb3\xdb\x88\x17\x63\xf3\xf5\x31\xab\x07\xd2\xb0\x79\x39\xc4\x83\xb7\xa7\xe9\x1d\xd3\x7a\x20\x8d\x44\x55\xb2\x14\x61\xed\xed\x72\x8c\x07\xdd\x59\xba\xe5\x10\x0f\xd2\x08\x53\x25\x4b\x91\x46\x93\x8a\x4f\x8a\x34\x36\x55\x56\x52\x34\x83\x04\x65\x25\x45\xea\x4d\x2e\x33\x71\x20\xf5\xce\x97\x4b\x25\x40\xef\x76\xbe\x11\x01\x48\x7d\x42\xc5\x27\x45\x1a\xe2\x28\x3e\x29\xde\xfb\xa6\x15\x46\x04\x4a\x4d\xea\x1c\x29\x35\x29\xd2\x99\x94\x65\x90\xb0\xbe\x20\x81\xb8\x67\x59\x27\xb4\xae\xaf\x17\xb9\x4d\xeb\x4d\x41\xb0\xed\xd8\x5c\xb7\xad\x45\x75\xc2\x98\x59\xad\x49\x91\x86\x2f\xca\x43\x8a\xd4\x53\x51\x0b\x72\x2e\xb7\xa3\x76\xc1\xcb\xd2\x77\x5f\x5f\x22\x6d\xf7\xff\x7c\x4c\x7a\xea\x7e\x4a\x8f\x37\x8a\x52\x84\x39\xe6\xa5\xa7\x0e\x52\x87\x4f\x95\x47\xd1\xd0\x76\x9d\x2a\x3a\x8a\x36\xd8\xdf\x75\x2e\xc7\x6f\x90\x7a\x2f\xcb\x99\x47\xf0\xfe\x1b\x4f\x45\x57\x7d\x59\x54\x6a\x9d\xcb\xb2\xde\x07\x24\xba\x3d\x53\x4d\x47\xd1\xd9\xd4\x66\xee\x3a\xe1\xbb\x4e\x38\x7e\x8f\xa2\x8b\xa2\x9b\x21\x53\x61\x51\xa4\x43\xba\x02\x8b\x22\xf5\x5e\x14\x53\x14\xe9\x50\xa0\x8e\xa1\x48\x53\x77\x8a\x16\x8a\x34\xb3\xb6\x3b\x15\x07\x52\x23\xb5\x3b\x15\x07\x52\xf3\xa6\xb4\xa1\x58\x16\xad\xef\xce\xbb\xed\x16\xcc\xb0\x27\xcf\x54\xee\x50\xbc\xc7\xfc\xa9\xd7\x7c\xd1\xd9\xef\x7a\xaa\x54\x38\x3f\xa5\x42\x6b\x9f\x76\xfd\x6b\x30\xac\xfe\x57\xbc\x50\xbc\xff\x56\x1c\xb3\x83\xc2\x65\x5a\xf4\x86\x6e\x38\x48\x8d\xe5\x6e\x7d\xcc\xae\x0e\xb4\xe7\x77\x64\xdf\x95\x0f\xda\x19\x3f\x77\x5d\x73\xd0\x90\xb6\x9e\xbb\xab\x17\x40\x73\x71\xc7\xee\x14\x1d\xe8\xa8\x8e\xce\x3d\xbd\xe4\x8b\xf0\x45\x56\x30\x51\xa4\x83\xb8\xea\x88\x22\xb5\x42\xbb\x49\x34\xd0\x4d\x77\x2a\x98\x28\x52\xcb\xa7\x38\xa2\x48\x0d\xdf\x6e\x7c\xb0\x1b\x0c\xec\xdb\xdf\xfb\x78\x4e\xc5\x13\x45\x67\x2f\xe8\xa9\x78\xa2\xe8\x26\x87\x76\x23\x0a\x90\xcb\xff\x72\x22\x0e\xa4\x86\x5d\xf1\xc4\xf9\x89\x27\xf2\xc9\xef\x46\x0f\xa0\x0f\x5f\x1c\x2d\x19\x88\xf4\xe1\x98\x9c\x03\xbd\x11\x49\x29\x51\x28\xa2\xf9\xbc\xb4\x47\x20\x1d\x97\x95\x15\x14\xe9\x90\xb5\x9b\xed\x02\xb9\x13\x42\x2a\x34\x28\x9a\x13\x0a\xbb\xa9\x2d\x30\x36\xc6\x9d\xdd\x52\x17\xd0\x9d\x63\x50\x7b\x50\xa4\xe3\xda\x6e\x34\xb1\xbb\x9d\xc6\x4e\xd0\xbd\x6b\xb6\x40\x43\xf8\x60\x2a\x51\x28\x62\xf3\xa9\x3a\x43\x05\xc2\x7c\x94\x12\x85\x62\xb9\xde\x6b\x37\xb7\x05\xde\xf3\xf3\x4b\xcb\x66\x76\xcb\x66\xf6\xe6\xff\xd9\x0e\xb3\x5b\x7e\x7e\x4e\x47\x81\x74\xc4\x55\x91\x50\x34\x4b\x49\x14\x24\x14\xe9\x18\xb9\x6b\xa4\x76\x8d\x14\x43\x9d\x7a\x84\x22\x1d\xe9\x76\x63\x0e\x10\xae\x61\x53\xa2\x50\xcc\xef\x45\x35\x0c\x01\xe9\xd8\xb7\x9b\xdc\x02\x6f\xf3\xe9\x59\xe3\x90\x9d\x84\x97\xc3\xa1\x12\x85\xe2\xfd\x37\x1a\xeb\xe4\x13\x68\x4e\xf2\x28\x5b\x28\x1a\xc2\x13\x53\xd9\x42\x11\x08\xf2\xce\xdd\xc2\x58\xd0\xd9\x5f\x74\xaa\x64\x28\xba\xab\x9e\x77\xab\x60\x41\x7e\x03\x91\x16\x6f\x77\x7f\x2a\xf6\x4c\x9d\xea\x16\x8a\xee\x6a\x8d\x5d\xbb\x05\xda\x77\x7e\x73\x60\x20\xd8\x0d\x67\xee\xce\x3e\x81\xfc\x46\x30\x67\x9f\x54\x1f\x1c\xdf\xb9\xbc\xe4\xfd\x5d\x92\x96\x99\xbf\x02\xdd\xb9\x92\xdd\xfc\x15\xc8\x9d\x04\xd3\x6e\xf0\x03\x72\xf7\x92\xda\x40\x10\xf1\xfd\xd0\x97\x80\x95\x80\x26\x25\x14\x29\x14\xf9\x8d\x99\xc6\x3e\xa0\xef\x98\xc0\x5d\xab\x08\xf2\x1b\x0c\x8d\x6a\x40\x1f\x7e\x96\x9a\x36\xd0\x2c\xf9\x38\x9c\x10\x02\xcd\x35\x6c\x87\x55\x35\xe0\xbd\xc9\xc9\xb1\xf4\x18\x95\x21\x9a\xdd\xc3\x04\x13\x48\x3f\xaf\xc3\x04\x13\x78\x7f\xba\x38\x76\x7a\x8c\xf9\x37\x06\xd2\xc3\x49\x22\x90\x7e\x38\x87\x86\x12\x74\x4b\x33\x0f\x0d\xe5\xe1\xae\xcf\x3b\x63\x8d\x92\x81\x22\x9c\x15\x51\x1e\x50\x84\x25\x7f\x87\xd5\x34\xc8\x03\xa6\x1f\xe1\x61\x35\x0d\xe8\x3b\xef\xe2\x61\x35\x0d\x88\x7d\x79\xc8\x56\x38\x05\x85\xba\xf5\x54\x13\x50\xa4\x6f\xd9\x61\xbc\x05\xd2\xd7\xff\x30\xe0\x39\x9c\x49\xda\x29\x17\x50\xb4\x4f\x74\xb4\xa3\xe6\xa1\x91\x05\xf9\x75\xad\x21\x10\x68\x88\xb6\xcf\xc3\x0c\x16\xc8\xaf\x15\xd6\x96\x1e\xd6\x96\xba\x22\xe6\xd0\xec\x82\xfc\x3a\x5b\xab\x0b\x1a\x2a\x2e\x53\x85\x3e\xd1\xcc\xb3\xa8\xd0\x27\xf2\xeb\x58\x63\xa7\xc3\xd8\x89\x57\xf6\xd0\x0e\x83\x8e\x08\xe5\x3c\x9c\xce\x02\xe1\x82\x8f\xc3\xe9\x2c\x90\xdf\x7d\x6b\x9a\x3f\x65\xbf\x9d\x7c\x98\xca\x7e\x22\x0c\xbb\x0f\xed\x30\xc8\xff\xfe\xcb\xe6\x5b\x04\xc3\xd6\x8a\xf3\xb0\x0a\x06\x74\xab\x3c\x0f\x43\x38\xd0\x90\x48\x9d\x87\x21\xdc\xf1\x85\x70\xb4\x4c\xa3\x0e\x5a\xc3\x87\x3d\xb4\xcd\x20\xbf\x4e\xd4\xaa\x82\xf7\x92\x9c\x4c\x83\x79\x98\x95\xdb\xff\x65\x6d\x95\x22\x7f\x53\x45\xbf\xaf\xe1\x66\xe8\x40\x67\xaf\x9f\x79\x58\xa0\x02\x92\xbd\xc7\xa7\x22\x7f\xa2\x39\x37\x71\x68\x63\x8f\xfa\x9a\xc4\x2f\x9d\xec\x02\xb9\xfb\x14\x8d\x03\x41\x33\xb6\x3d\x9c\xc4\x02\xcd\xea\x54\xb5\x00\xc5\x7b\x32\x7f\x69\x33\xa6\xcd\xe0\xf9\x6b\xb1\x41\x73\xea\xef\x30\x8f\x07\x72\x27\x9c\x56\x32\x50\x74\x4b\x67\x0e\x2d\x36\x08\x04\x8a\xa7\x92\x81\xa2\x5b\x2f\xa8\x62\xa0\xe8\x8d\x44\xcc\xe1\xcc\x13\xc8\xdd\xaf\xc3\xfa\x0e\xd0\x77\x22\x80\xc3\x70\x11\x74\xa7\x5b\x0e\xc3\x45\x90\xa8\x79\xcd\x43\x53\x0c\x92\xbd\x36\xa7\x7a\x81\x22\x77\x72\x89\x87\xc6\x19\x24\xfb\x19\xcd\xc3\x5a\x55\xf5\x02\x9d\xe2\x53\x2e\x50\xbc\x1d\x46\x5b\x0d\x2a\x0f\x0b\x53\xbf\xbe\x30\x84\x04\xe9\x66\x23\x6a\x08\x8a\xe6\x64\x9a\x82\x81\xa2\x59\x0d\x7f\x18\x55\x82\xd0\x60\x1f\x1a\x6c\x90\xbb\x6f\xaf\xd6\xf9\x38\xbf\x4b\xd2\x3f\x66\x09\x41\xee\x64\xf6\x0e\x83\x4f\xd0\x5c\x61\xa7\xd4\xe0\x3c\x5c\x90\xf2\xdd\xba\x76\x17\xe4\x4e\x82\x43\x61\x41\xd1\x86\x4f\xc9\x25\x8b\x20\x77\x6a\x4a\x0e\x03\x52\x90\x3b\xb1\xf9\x61\x40\x0a\xde\xf3\xd3\x69\x26\x18\x41\x5a\x8f\x7c\x18\xa4\x82\x34\x1d\x77\x68\xb1\x41\x5a\x64\x71\x68\xb0\x0f\x37\xae\xf6\xf5\x37\x33\x09\x72\x27\xe7\x78\x58\x54\x0b\x72\x27\xc1\xa8\x08\xa2\x58\x96\x47\x1e\x9a\x75\x30\x5c\x5c\xa5\x2e\xa2\xc8\xfd\x3b\xe4\x1d\x69\xe9\x49\x43\x1e\x56\x8d\x28\x95\x68\x35\xbb\xba\x88\x22\x76\x9f\x9b\x3b\xa5\x80\x74\x81\x94\xb2\x88\x62\x36\x5f\x58\xa3\x5d\xd0\x2d\x71\x3b\x74\x07\x50\x4a\xcc\xef\x1e\x75\x07\x40\x47\x4d\x63\x1e\xe6\x42\x41\xb0\xd1\xf4\x3c\x74\x07\x40\xee\x78\x20\xea\x29\x8a\xe5\x2e\x09\x6a\x27\x8a\xfe\x99\x81\xc7\x5e\x7d\x74\x39\x3d\x64\xeb\x1f\x5b\xef\x0f\x6d\xbd\xdb\x74\xf9\xd6\xe9\x34\x80\xdc\x89\x57\x0f\x0b\x76\x41\xb3\x86\xf7\x70\x82\x0b\x8c\xee\x60\x6e\x95\x0a\xe8\x3b\xe9\x0d\xc5\x1a\x45\xef\xdf\x21\xaf\xf8\x43\x1d\x95\xb7\xe9\x34\x5d\x0a\x12\xf9\x80\xa9\x7e\xa3\x48\xcf\x75\x9a\x41\x05\x69\xa9\xe2\x69\xb4\x7d\xba\x8d\x8c\x1f\xfd\xa9\x4b\x02\x9a\xe9\x44\x65\x1e\x45\xba\x08\xe6\xd4\x23\x01\xb9\x33\xd6\x9d\x6e\x36\x03\x92\x6d\x65\xe7\xa9\xfb\x01\x3a\xbb\x34\xce\x53\xef\x03\xbc\x97\xe4\xfc\xfa\x1a\xa7\xbe\x06\x8e\xc5\xe9\x6c\x19\x88\xb6\x79\xb2\xc7\x43\x58\x5c\x5e\x27\xc5\x20\x45\x63\xab\xe7\x79\x9a\x6e\x05\xdd\x9d\x1a\x4e\x83\x7e\x10\xee\xf9\xa5\xf0\xa3\x78\x5b\x31\x39\x66\x2b\xd8\xfd\x60\x2f\x0f\x5d\x1e\x62\x63\x67\xdb\xaf\xf7\x71\x7e\x21\x7e\x78\x2c\x3c\xc6\x17\x42\x44\xa4\x66\xa4\xc8\xdd\x5e\x74\x9e\x0d\xe4\x6e\x63\xf5\x48\x40\x6f\xbc\x9c\xa7\x86\x1f\xa4\x8e\xa9\x32\x8f\x22\xbe\x5e\x34\x4a\x3f\xc7\xd7\x7e\xfa\xc7\x30\x1d\xa8\x53\x38\x95\x76\x14\xd1\xf8\x90\x4e\x0b\x60\x4e\x55\x7e\xc7\x3f\x98\x65\xc5\x20\x45\xee\x64\xc5\x4e\xfd\x09\x90\x3b\xb9\x39\xf5\x21\x45\x1b\x8e\x72\xa7\x0e\x05\x08\xbf\x50\x35\x23\x45\xee\x38\x9f\xa7\x59\x62\xd0\xbf\x93\x59\x6a\x03\xa2\x2d\xff\xcb\x3e\x76\xdb\x83\xe6\x1b\x67\x3d\x2e\x88\x66\xc7\x98\x4c\x00\x9d\xad\xcd\xe7\xa9\x77\x02\x72\xe7\xe3\x53\x33\x72\x7e\x9a\x91\x8e\xd2\xea\x3c\x8a\xdc\xf1\x91\x4e\xcb\x6f\x40\x3a\x99\xa9\xcc\xa3\x78\x7f\x49\x6b\xcd\x42\x83\x74\xc6\xea\xd4\xfd\x38\x3f\xf7\x63\x78\x51\x7b\x88\xdd\xa6\xf5\x95\x4f\x3d\x92\x73\xe2\xca\x92\xed\x52\x0e\x52\xbc\xbf\xa4\xbb\xf5\x52\x40\xee\x64\x9a\x4e\x4b\x5f\x41\x6a\xe6\x4f\xdd\x0f\x90\x56\x14\x2b\xcd\x28\xc2\xcd\x0a\x4e\x53\xd3\xa0\xb9\x8d\x96\x3a\x8c\x22\xf7\xdd\x1f\xda\x7e\xd4\xaa\x76\x5f\x1c\x03\x7a\x90\xbb\x1f\x96\xa9\xe9\x53\x8d\x61\x8d\xd1\xa9\xff\x01\x72\x27\x15\x70\x1a\xf7\x83\x08\x9f\xb9\xfe\x07\x08\xa7\x9e\x4e\x9d\x0d\xd0\xdb\xf2\x5c\xbe\xd1\x3a\x1b\xdf\x21\xfb\x9f\x7d\xcd\x10\x32\x9f\xa7\x49\x6d\x90\xbb\x2f\x8b\x95\x2f\x20\x77\x5f\x0c\xd3\x05\x20\xf7\xe5\x0f\x7d\x20\x16\xc3\x7c\x3f\xf4\x26\xd9\xf4\x7a\xf7\x1b\x3a\xbc\xc9\xe3\x5b\xc6\xc7\x21\xaf\x78\x60\x2d\xfc\xf8\x9c\xb5\x04\xdd\x4a\x67\x65\x24\xc5\xdb\x3b\x9c\xcc\x14\xc2\xe9\x2e\x42\xbe\x2a\x96\xcc\x80\xdc\x49\x47\x9c\xa6\x10\x40\x58\x4c\xaf\x5c\xa3\xe8\x5a\x90\xd3\x08\x1f\xa4\x2b\xd3\x4f\x9d\x0f\x10\x48\xbf\x4c\x15\x1c\x45\xa1\x04\x37\x4f\x1d\x0d\x10\xee\x27\x71\x9a\x1a\x00\xfd\xfb\x2c\xf5\x2a\xd4\x79\x74\x2b\x43\x75\x1e\x45\xba\x49\x90\x02\x8e\x22\x5d\xfb\x77\x3a\x05\x0a\xde\xfb\xe6\xdf\xf4\x0e\xce\xfb\xfb\x6c\xfc\x3f\xbb\xec\x45\x6d\x8e\x0e\x1a\x7e\xd0\xbb\xcf\xcd\x08\x1f\x44\xc7\x6b\x3c\xb5\xf2\xa0\x2c\xc1\x3a\xb5\xf2\xa0\x5c\xdd\x70\x1a\xe1\x83\x42\x6c\x66\x9e\xda\x6f\x30\x36\xed\x98\x73\x94\xa0\x36\xc2\xe8\x53\x63\x0d\x6a\xf3\xa3\x31\xc7\x0d\x6a\x23\x18\xbe\x0c\xfa\x41\x19\xec\x5d\x5a\x53\x50\x1b\x36\xeb\xd2\x4c\x82\xf7\xbe\x3d\x76\x7b\x8c\xfb\xc6\xf2\x2b\xf3\x28\xda\xd0\x7b\x52\xd3\x51\x14\xda\x00\xf3\x32\xc7\x0d\x86\x2b\x83\x95\x79\x14\xb5\x35\x0f\x0d\x0f\x0d\x7e\xc8\xf9\x8d\xef\x41\x6d\xcd\x73\x3d\x1e\x7a\xfe\xf7\x7f\xd3\x42\xe7\xcb\x28\x1d\x94\x15\x1e\x97\x06\xf6\xd2\xc0\x3a\xdf\x75\x39\x2d\x7a\x7d\xeb\x5a\xe9\x0c\xd7\xc1\x80\x72\xd1\xf8\xa5\xd1\x05\xef\x2f\xfd\x37\x9b\xd1\x6d\xc6\xe4\xd0\xe1\xa1\x83\x43\x74\xa3\xd9\x77\x50\x1b\x9f\xd2\xa5\xd1\xbd\x3e\xa3\x8b\xfb\x77\x69\x4e\xaf\xf8\x2e\xc0\x7d\x1a\xf4\x83\xda\x88\xad\x94\x96\x14\x81\x2a\xc2\xbc\x8c\xe6\x41\x6d\x44\xb0\x2a\x4b\x8a\x81\x86\xdf\x54\x59\x52\x44\x31\xb6\xa9\x2c\x29\x6a\xe3\xf3\xba\x0c\xdd\x41\x6d\xc4\xac\x97\xf6\x12\xd4\x46\x4c\x7e\x69\x2f\xaf\x2f\xfe\xe6\x2e\xb5\x8d\xa0\xd0\xf3\x9d\x8a\x4d\x8a\xda\xfa\x3f\xa4\xb3\x2f\x4d\xe7\x95\x5f\xbf\xd0\x48\x8d\x22\xa8\xad\x7b\xc8\xae\x4a\xde\x68\x82\x99\xcb\x32\x55\x50\x6e\x9d\xa8\x64\xe5\xfc\x24\x2b\x75\x6f\xd5\x91\x14\xe5\x74\xb0\x3a\x92\xa2\x9c\x73\xbd\x9c\xc0\x05\xb5\x11\x66\x5d\x5a\x53\x50\x1b\x01\xe6\xa5\x35\x05\xef\xf9\xfd\xa5\x7d\x55\xf4\x15\x61\xd0\xa5\x99\x04\xef\xbf\xd1\x59\xda\xc9\x6b\x7e\xaf\x21\xcd\x75\x89\x08\x08\x37\x68\xba\x34\x8a\xa0\xdc\xf5\x4f\xd9\xc8\xf9\xc9\x46\x6e\x18\x0c\x35\x22\x45\x58\x7d\xa4\x46\xa4\x68\x2e\x64\x50\x23\x52\x34\xcb\x2e\xd5\x88\x14\xf5\xbd\x25\x2e\xea\x00\x61\x94\x70\x69\x4e\x41\xff\x1a\xa6\x39\x05\x61\x05\xb0\xe2\x8f\xa2\xdc\x6c\x40\xf1\x47\x11\xba\xc1\x2a\x3d\x8a\x40\x99\x76\x5e\xda\x49\xd0\x2d\xe7\xbe\xb4\x93\x20\xc2\x2b\x9a\x30\x07\xdd\x85\x43\x97\xb6\x0d\xb4\xe6\xe3\xd5\xb6\x81\xda\xfc\x94\x5d\x52\x0a\x6a\xc3\x8d\xbb\xac\x10\x05\xb5\xe1\xf1\x5e\x96\xfc\x80\xe6\x6a\xc9\xcb\x4c\x3b\xe8\x6c\x85\x3f\x2f\x17\x99\x82\xda\x70\x82\x14\x83\x14\x85\x00\xdc\xbc\x34\x9d\xa0\x36\x47\x22\x23\x7e\x50\xae\x37\x50\x1f\x52\xd4\x86\x31\xbd\x5c\x31\x02\xca\x3d\x54\x95\x8c\x14\xc5\x3e\xcd\x53\x7d\x48\x51\x1b\x96\x47\xe5\x47\xd1\x86\x01\x8d\xd2\x8f\xa2\x36\x07\x6a\x73\xef\xa0\xbb\x91\x84\xd2\x8f\xe2\xfd\x25\xed\xd7\x34\x83\xda\x1c\xbb\x2d\x5d\x05\x65\xda\x4f\xed\x47\x51\x9b\x03\xa9\xd1\x3d\xda\x8f\xef\xc9\xfc\x37\xc7\x43\x12\xf2\x66\xb7\x2e\xe7\x96\x41\x77\x3d\xc6\x65\x94\x0e\x6a\xb3\x65\x16\xa0\x82\x68\x38\x71\x0a\x38\x8a\xf7\xfc\xfe\x9b\xd7\xbc\x79\x24\x0e\xa4\xda\xe6\xeb\xb3\xcd\xb8\x84\x97\xa1\x3b\xa8\xcd\x71\x45\x73\x0d\xde\x7f\xb3\x1d\x36\xed\x46\x97\xcd\x67\x6e\x38\x7f\x99\xca\xc7\x21\x50\xe9\x51\xf4\xcf\x2e\x5a\xda\x04\xca\x5d\x69\x2e\xa3\x72\x10\x3a\x68\x8a\x33\x8a\xf7\x92\xbc\x07\x06\xdc\xa0\xdc\x50\xec\x72\xa2\x1a\x94\x2b\x46\x2f\xe7\xa9\x41\x69\xe9\x2f\xcd\xfa\xa5\x59\xf7\xc9\x19\x83\x83\xee\xee\x61\x97\x01\x37\xa8\xcd\x47\x62\xc6\x1f\x34\xeb\xee\x2e\x6b\x4c\x41\x73\x47\x82\x5b\x7f\xe0\xfe\x26\x01\x06\x87\xba\x87\x68\x57\x79\x68\x78\x88\x7d\x2b\x79\xd7\x6f\xa7\x05\x40\xd7\x82\xdf\x46\xea\xa0\x5c\xda\x78\xeb\x5b\xdc\xdf\xac\xc0\x77\xc9\xc3\x63\xb6\x75\x72\xe8\xf4\x10\xdb\x28\xf1\xfa\xdc\xba\x1b\x20\xdc\xca\xf8\x76\x87\x40\x10\x48\x67\xcc\x5b\x3f\x02\xb4\x61\xc2\xe0\xd6\x91\x00\xdd\xea\xf7\xdb\xc2\x29\x50\x6e\x07\xa8\x62\xa4\xe8\xb1\xf9\x5f\xcb\x43\x8b\x5b\xf2\x5c\xbb\x87\x9c\x30\xa6\xf9\x4e\x27\x80\xe6\x74\x85\xba\x92\x22\xdc\x9f\xf1\x76\x86\x01\x14\x8a\xfc\xf3\x76\x17\xa8\xdb\xad\x0b\x8d\x18\x6f\x1d\x15\xd0\x5d\x98\x72\xeb\xa7\x80\x70\xfd\xf3\x6d\x7d\x16\xe8\x2d\xfd\x2f\x6f\xbc\x7f\x37\x4e\xfb\xf5\x40\x40\x77\x86\xed\x36\x13\x70\x2b\x94\x51\xff\xb0\x8c\x4a\x79\x4a\x51\x1b\x43\xf7\xed\xe2\x5d\x30\x34\x9d\xb7\x45\x04\xa0\x37\x9c\x1d\x35\x2c\x45\x6d\x3e\x09\x13\x0c\xf7\xb7\x52\x97\xde\x33\xc1\x00\x6a\xb3\xd9\x66\x13\x40\x77\x73\xee\xdb\x42\x03\xd0\xb7\xe5\x21\x1b\x11\x7c\x40\x76\x9e\xa5\x01\xb7\x1b\x1b\x1a\xe2\xdf\x4e\x53\x80\x8e\xec\xfe\xbc\xf5\x75\x40\x73\x1a\x4d\x95\x4a\xd1\x5d\x48\xa4\x4a\xa5\xa8\xcd\xb6\x9a\xc0\x00\xb5\x7d\xa7\xf7\x15\x19\x6c\x81\x8e\x7d\xba\xcd\x4c\x80\xda\x88\x41\x6e\x5d\x29\xd0\xac\x8c\xbd\xcd\x33\x80\xda\x08\xd3\x6f\x5d\xa9\x5b\x57\x8a\xd2\x8f\x5b\x57\x0a\x34\xeb\xa8\x6e\x13\x08\x77\x7e\x0f\x9a\x37\x49\xc7\xe8\xd6\x31\x22\x8a\x56\x3d\x53\xbc\xff\xe6\x31\x5b\x96\xb4\x6c\xf9\x4b\x5b\xe6\x36\xbe\x44\xc3\xb7\x79\x86\xfb\x9b\x05\xb1\x69\x16\x17\x80\x6e\xe0\x70\x3b\xcb\x01\xc2\x89\x89\xdb\x4a\x02\xd0\x2c\x11\x54\x77\x53\xd4\xb6\x3c\x64\x63\xcb\x89\x09\xfa\xc7\xe2\x02\x50\xae\xf7\x53\x2a\x53\xd4\xf7\xc4\x5d\xd1\x03\xa2\xd9\xd7\x66\x19\x40\x21\x86\x37\x6f\xfd\x29\x50\x9b\xdd\xa3\x3f\x75\x7f\xeb\x6b\x79\x6e\xce\x8e\x80\xfe\x7d\x54\xce\x84\x80\x66\x69\xcc\x6d\x2a\x02\xbc\x5d\xe1\xf9\xed\x9e\x89\x81\x25\xa5\x70\x9b\x9e\xb8\x5d\x5e\x63\x82\x45\xad\x4c\x51\x9b\x67\xd3\xa1\x42\x2a\xb3\x0d\xd3\x24\xb7\xd9\x08\x50\x1b\x81\xba\x5a\x99\xa2\x36\xf2\x2b\xaa\x60\x8a\x66\xe5\xf3\x6d\xb6\x00\x74\x4b\x9a\x15\xc6\x14\x65\xa1\x9c\xc2\x98\xa2\xbb\xf6\xe4\xd6\x7d\x02\xd5\x70\x79\x6e\xa7\x39\xc0\x72\x0b\xd8\x5b\xf7\xe9\xd6\x7d\x22\x44\xbe\x9d\xf8\x00\x65\x71\xc4\xad\x17\x74\xeb\x05\x11\x5b\xab\xbb\x29\xba\xe5\x93\xb7\x8e\x11\x68\x66\x44\x6e\x1d\xa3\x5b\xc7\xc8\x4f\xdc\x34\x03\xa8\x0d\x83\x7b\x3b\x15\x02\xaa\x11\xfa\xde\xba\x4f\xa0\x1b\x01\xaa\xe1\x29\xc2\xf5\x14\xb7\xb9\x08\x10\x1a\x57\x65\x3d\x45\x39\xf5\x7c\xbb\xa2\x07\x2c\xf7\xb4\x55\xe9\x53\x54\xb3\xbf\x9c\x55\x01\x85\x0c\xff\xbc\x9d\x55\x01\xdd\x14\xe1\xad\xdb\x75\xeb\x76\xd9\x85\xba\x5d\xa0\x59\x95\xaa\x44\xa8\x08\x9d\x0a\x45\x3d\x45\x59\x22\xac\xa8\xa7\x68\x2e\x36\x55\xd3\x53\xc4\x70\x14\x33\x89\x71\x5f\xdf\xdb\xc4\x1d\x99\xc5\x00\xdd\x7d\xd0\x14\xf0\x14\x61\xba\x4b\x01\x4f\xd1\x51\xd1\x9d\x0a\x78\x8a\x6a\xb8\xb3\x0a\x78\x8a\xe5\x5e\xbe\xea\x77\x8a\x6a\x9a\x48\xab\x20\x40\x77\x01\xfa\xad\xcf\x75\xeb\x73\x7d\x8d\xb0\x77\x48\x91\x34\x9d\x0a\x5d\x2e\x50\xcd\x41\x58\xff\x0a\xc4\xd7\x15\x4e\x97\x80\x32\x7d\x7e\x3b\x5d\x02\x5a\x84\x97\x34\xb9\x02\xaa\x91\x36\x51\xe5\x53\x84\x5b\x7a\xaa\xf2\x29\x9a\xdb\x51\xab\xe8\x29\xde\x4e\xf4\x98\xed\x67\xa3\xca\xaf\x13\x75\xd6\x6e\xab\x0a\xfd\x4a\xdd\x43\x0c\xbc\xbf\xe4\x9e\x74\xe0\x40\xb9\xf2\xee\xd6\x81\x03\xc3\xf0\x48\x69\x4e\xf1\xfe\x92\xd6\xea\x9b\x81\x6a\xdb\xdf\x82\x91\xf3\xb1\xe6\x10\x34\xb7\xb3\x78\x74\xca\x40\x74\x2c\x96\xd2\x9d\xa2\x1a\xdf\x86\x3a\x9d\xe2\xbd\x7c\x71\x6c\xf7\xd8\xce\xbf\x79\xb2\xc3\x43\x07\x87\x1a\x87\x4e\x0f\xd1\x48\x72\x1c\x8f\xc9\x9d\xe7\xab\xcb\x60\x34\x7c\xcc\xee\x80\x52\x60\x42\xf1\x4e\xf1\xfe\x9b\x3f\xf5\x6c\xf8\x48\x31\xfd\xe5\xe3\x21\x56\xa8\xef\xfe\xf2\xe7\x21\x46\x2b\x32\x32\x6a\x70\x8a\xf7\x64\x3b\xc7\x6c\x47\xe7\x3d\x61\x58\x50\x84\x53\x94\xd5\x69\x8a\x6c\x8a\x42\x5e\x6f\x2a\x9f\x29\xba\x89\x4c\x85\x31\x45\xe8\xcf\x29\x79\x29\xba\x7b\x68\x3c\xa6\x72\x40\x35\xb2\x6b\x8f\x0e\x0f\xa8\x86\x45\x7c\xf4\x6e\x40\x35\x72\x28\x8f\xb9\x1d\x50\x6e\xdc\xa2\x08\xa6\x28\x64\x58\xa7\x22\x98\xa2\x1a\x7e\xe6\x63\x89\x07\xa8\xc6\x7b\xff\x98\x01\x7a\xcc\x00\xed\x9e\xcb\xa6\x52\x44\xe9\x3e\x52\x8f\x6e\x11\x08\x37\x51\x54\x16\x53\x54\x63\x08\x78\x74\x6e\x40\x35\x3e\x98\xc7\xd9\x99\xe7\x9b\x9d\xf1\xbe\x75\x78\x40\x1b\xee\x72\xa1\xa2\xa6\xe8\xf3\xbb\x80\x8d\x65\x7a\xc6\xe5\x3b\x8a\x6c\x8a\x1e\xf8\x32\x8f\xf3\x23\x60\xb9\xeb\xf7\x63\xda\x07\x74\x17\xa1\x3d\xd6\x5a\x82\x6e\x21\xa0\xb2\x9b\xa2\x1a\x06\xf1\xd1\xe1\x79\x92\x1e\x23\x53\xf3\xe8\xc9\x80\x52\x90\xe3\xd1\x91\x01\xd5\x6c\x97\x8e\x0c\x98\x6e\x39\xf4\xe8\xc8\x3c\xaa\x9a\x99\xfd\x7f\x74\x5b\x40\xe9\xe1\xaa\xce\x29\xaa\xe1\x5f\x3f\xce\xab\x80\x6a\xe1\xc9\xec\x9d\xb2\x61\xdc\xa4\x85\x1e\x60\xba\xcd\xd9\xe3\x4c\x0b\x08\x57\xde\x2b\xeb\x29\xde\x56\x70\xcc\x0c\x12\x68\xae\x98\x7d\x74\x78\xc0\xfb\x6f\x1e\xb3\x19\xd3\x66\xf0\x7c\xcd\x20\x81\x6a\x76\xac\xeb\x02\x40\x35\x12\x22\x8f\xde\x0d\xa8\x36\xbc\xa4\x9f\xe0\xe4\x13\xb4\xfb\xcd\x29\x81\xee\x78\xf8\x98\x53\x02\x65\xe1\xfe\x63\x55\xc7\x83\x0b\x84\x32\xee\x7c\x2c\xcd\x04\xcb\x3a\x37\x45\x42\x45\x35\xac\xdd\x63\x9a\xe9\x71\x41\x81\xb3\x23\x8f\xa5\x99\xa0\xb4\xa6\x6a\x89\x8a\xf8\x5e\x62\xb3\x51\xa0\xac\x2d\x79\x9c\xdc\x79\xbe\xc9\x9d\xdd\x7f\xb3\xfd\x3b\x5f\x2a\xb9\x94\x47\xaf\xeb\xd9\x31\x21\x64\x3f\x54\x21\x15\xa5\x3b\xab\x0a\xa9\x78\x4f\xc6\x9d\xeb\x76\x21\x43\x5a\x8d\x24\xc6\xcf\x9c\x2e\x68\x6e\x8d\xaf\x42\xa0\x28\xb3\x56\x3f\xbf\xf1\x9f\xdf\x38\x1f\xc4\xcf\x38\xe4\xe7\x4e\x7f\x4e\x4d\xa8\x07\x28\xaa\xe1\xcc\xfc\xfc\x30\x7f\x2a\x85\x7c\xff\x75\x79\xc8\xfe\xd9\x39\xf4\xf3\x90\x49\x1e\xdc\x8d\x9f\x01\x05\x4a\x82\xe5\x6e\x14\x3f\x3f\xc2\xdf\x17\x50\x60\xf0\x54\x17\x14\xe5\x22\xc0\x9f\x5f\x21\xa8\x46\x16\x40\xc1\x41\x51\x2e\x8e\x53\x22\x70\xfe\xc8\xaa\xba\x14\xfc\xe7\xf7\x05\x5a\x3a\x41\xf2\xf3\xcb\xf9\xf9\xe5\x4c\x0f\x79\x32\xbf\x1c\xc2\x82\x9f\x5f\x0e\xe8\x7e\x5f\x3f\xbf\x1c\xd0\x5c\xf0\xa7\x6a\xa0\xe8\x66\x87\x94\x08\x14\x11\xde\x91\x91\x02\xe8\x68\xe3\xcf\x9f\x61\x01\x08\x6b\xf2\x7e\xd6\x2f\x83\x18\x3e\x12\x8b\xa6\x40\xb5\xf9\x0f\xba\x54\x3f\x3f\x3e\xf0\x15\x3e\x2a\x0d\x28\xca\x49\xdf\x9f\x1f\xcc\xcf\x0f\x86\x38\xe5\x67\x2d\x33\x08\x6b\xf1\x54\x0b\x14\xd5\x08\x39\x7f\xce\x7c\x82\x6a\x18\x4e\x05\x04\x45\x59\x7b\xf2\xf3\x4b\x03\x61\x45\xef\xcf\x2f\xed\xe7\x97\x36\x6d\x97\x7d\x47\xc1\xf3\xf0\xf4\x7e\x2f\xe0\x7d\x5c\xbc\x22\xce\x7c\xfe\xfc\x38\x30\x2a\x6a\x00\x8a\x72\xa7\xa9\x9f\x53\x93\xa0\x14\x3b\xfa\x39\x35\x09\x0a\x19\xe2\xa9\x50\xa0\x58\x6a\x38\x28\x14\x28\x4a\x93\xa2\x50\xa0\x68\x06\x2e\x3f\xb3\xb0\xa0\xbb\x15\xd1\xcf\xba\x2b\xd0\xdc\x79\xfc\x67\x64\x01\xca\x52\x81\x9f\x91\x05\x28\x4b\x5d\x7f\xc6\x0c\xa0\x0c\x49\xd4\x09\x14\xe5\x24\xfc\xcf\x68\xe0\x67\x34\x80\xa3\xa1\x72\xa0\x28\x47\xbe\x9f\xae\x3f\x68\x66\xdf\x7e\xfa\xf9\xe0\xed\x43\xee\xc8\x69\x4e\xd0\xc2\x87\x6b\x2e\xf5\xc7\x9c\xa6\x01\xed\x4f\xdf\x1f\x54\xdb\xfd\xa1\x8f\xed\xa2\xfc\x08\x17\xe8\x67\x2a\x15\xbc\xe7\xe7\x96\xf4\xea\x41\x0f\x87\x09\xd7\xe4\x80\x6a\x8c\x7c\x8a\x0e\x8a\x6a\xbb\x3f\xb4\xb1\xf7\xd7\x58\xfe\x4d\x57\x5c\x9d\xc0\x22\xc3\xa3\x4e\xa0\xa8\xc6\xc8\xf7\x73\x02\x13\xbc\xbf\xf4\x98\xdd\xf8\x78\x4f\xfe\xd2\x3e\x63\x06\xb3\xf9\xc4\xf5\xbb\x41\xb3\xaa\x5e\x39\x41\xf1\x9e\xcc\x5f\x7a\x9f\xcf\xd7\x34\x7e\x6a\x59\x12\x68\x6e\xfc\xaf\x7a\xa0\x28\x17\xfd\xa8\x0b\x28\xaa\xfb\xfe\x98\x12\x05\x2d\xcd\x50\xfe\xf4\xbb\x41\xe8\xb9\xfc\x5c\xc6\x09\x82\xb2\xdc\xb5\x91\x13\x15\x41\xd9\xfb\x52\x3d\x50\x0c\xb2\xb0\x6b\x23\x4d\x2a\xda\x20\xf0\x59\x1b\xf5\xd3\xa2\x33\x07\xbb\x36\xbc\x74\x51\xfd\x7d\x35\x96\xba\x83\xa2\xc7\xfb\x34\x97\xba\x83\xa2\xfa\x77\xc9\xd3\x43\x27\x87\xfc\xaf\xcb\x43\x17\xeb\x6f\x6c\xc5\xe3\x21\x5f\x8d\xc6\xb1\x66\xfb\x5f\x74\x96\xb3\x2d\x85\x07\xc5\xfb\x6f\x5c\xa0\x79\x03\x38\xee\x7d\xf3\xdf\x6c\x2c\x55\x4e\x49\xbc\xbd\x14\x28\x14\x9d\x79\xdf\xb5\x91\x3b\x15\xb1\xbe\x6b\x2e\x0f\xf9\x00\x8a\x43\xb6\x96\x14\x68\x7f\x1f\xe6\xda\xba\xcd\xc0\x6f\xef\x1b\x5d\xd6\xbd\x64\xff\x2e\xc9\xf9\xbb\xbd\xd1\xdd\xae\xd2\x7e\xec\x5e\xe0\x45\xf5\xf7\x69\xae\x2d\xec\x6d\xd2\x8b\xbd\xb8\xa7\xf0\x97\x6c\xcd\x8b\xbd\x58\x1b\x66\x57\xbc\x27\xa3\x69\x61\xdf\xe2\x5b\x77\x7b\x23\x6c\xad\x9b\x02\x6c\xbe\x08\xf8\xdb\xa2\x53\x6e\xb3\x36\xd2\x90\xa2\xba\xb7\x3e\xbc\x26\x9e\x74\xf7\x06\x86\xd7\x7c\x51\xdd\x6e\x4c\x7b\x3b\xe9\x6d\x6f\x29\xfd\x21\x45\x3f\x6c\x50\xbe\x94\x1b\x14\xd5\x6d\x6b\x7a\xae\xf4\x5c\xb4\x2b\x7d\xe8\xc9\xfc\xc5\xee\xe9\x6d\x57\xda\x2e\x3a\xbb\x7c\x0d\xa8\x16\xca\xed\x3b\xe6\x03\x60\x83\x01\x76\x05\x59\x5b\xd9\xb0\xb2\x61\x3c\x93\xb2\x15\xe4\xe7\x7a\xa7\xaf\xcb\xf3\x17\x39\xe0\xe0\x5c\xd3\xf3\xbf\xa8\xde\x69\xc5\xf4\xf4\xf3\x7b\xcd\x38\xd9\xf4\xfc\xe4\xec\x7a\xa7\xaf\xa7\x0f\x8e\x9c\x5d\xef\xb4\x62\xfa\x1a\x4c\x52\x38\x5e\x72\xfa\xe2\x4d\x87\x9b\xef\x98\x5d\x36\xe9\xeb\xfe\xf7\xda\xe6\xb5\x4d\xdf\xd5\x17\x9d\xba\xc3\xb5\x61\xb0\x45\xb1\x0a\x6c\xa9\x92\x28\x8a\x65\x27\x4b\x95\x44\x31\x36\xdf\xae\x69\x27\xe0\x1a\x33\xf4\xaf\x6d\xd9\xee\xc5\xe7\xdd\xe9\x97\x65\xbb\x5f\x14\xa5\x1f\x6b\x5b\x36\x7b\xd9\x6c\xba\x65\xd9\x2e\xd6\xda\xc6\xa2\x11\xcb\x76\x31\x29\xdb\x17\xdd\xb2\x7c\x51\x5f\x0c\xb2\xd2\x6b\x5b\xbe\xa8\xaa\xec\x2f\xce\xb5\xdb\x9f\xa4\x10\xa9\x04\x5e\xdb\xee\x15\x95\xd4\xdf\x39\xd7\xee\x53\x65\xba\x95\x65\x8b\x6b\xdb\x7d\xb7\xb0\xea\xdd\xcf\x65\xf7\x8a\x64\x15\x7b\xf8\x43\x3b\xe7\x45\x43\x1b\x65\x6d\xbb\x9d\xb3\x3b\xec\xf8\x08\x0f\x1f\x3e\x15\x47\xbb\x5d\x71\xf8\xec\x5f\xf4\xaf\x2b\x0e\x7b\x87\x5d\x17\x46\xfa\x5f\xb6\xf5\xf0\x73\xf7\x15\x39\xec\x8b\xc3\xec\x2c\xd7\x3c\x6c\xec\x8b\x20\x70\x5b\x6a\x43\x8a\xf7\x97\xdc\xc0\x61\xff\x1c\x0c\x3b\xe1\x2f\xbd\x01\xa6\x6a\x59\x78\xbc\x54\x82\x14\xfd\x1b\x14\x4e\xdb\xff\xe5\x1a\x39\xff\x69\xfb\x4f\x32\xdc\x5e\xf2\xf4\x81\x9f\x94\xb3\x7b\xfa\xd3\x86\x21\xe3\x1f\x83\x46\x5c\x3e\x11\x2a\xac\x71\x4b\xd6\x76\xf9\xc3\x8b\x37\xc5\xc1\xe4\xf2\xc6\x2f\x64\x57\x07\xf7\x7d\xd9\xfa\x4b\x31\x25\x0f\xd9\xd7\x97\xf2\xf6\xbc\x29\xb7\x3f\xbc\x79\x9f\xbc\xe2\xed\xfb\x84\x0e\x64\x52\xd2\xb1\xd4\x81\x14\xd5\x83\x57\xe5\xb6\xad\x37\x4f\xdc\xf3\xdf\x76\xe2\xed\x13\xa7\xad\xb7\x1d\x46\x02\xaf\xfb\xd1\xdc\xb6\x82\x39\xd3\xf2\x4d\x7c\xec\xb0\xc7\x07\xce\xe9\x1f\x6f\x92\xc5\xbd\xdf\x60\xf5\xf8\xc0\x1f\x3f\x07\x7f\x68\xe7\x33\x19\xca\x76\xc7\x4b\x95\x49\x51\xdd\x77\xec\xe7\xb9\xd8\x5e\xe7\x3b\xd7\xcf\x57\xf8\x45\x9b\x0e\xa2\x3f\x3b\xec\xc7\xe3\x4e\xff\xcb\xd6\x2b\xfa\xc2\x7f\x35\x8d\x35\xe8\xbe\xd5\x4d\x2b\x0c\x1a\xfb\x9d\xae\xa6\x15\x06\xdd\x7b\x54\xb1\x52\x0c\xa6\x5a\x56\x23\xa3\x26\x02\x85\xb3\xa5\x86\xa5\x28\x54\x76\x57\x23\xa1\x26\x3a\xbb\x79\xaf\xd6\x3c\x7d\xfb\xde\x73\x4e\xa6\xdd\x6c\xed\x7b\x6c\x93\x63\xfe\xd4\x19\x46\xba\xa7\x91\x3d\x13\xd5\x07\xff\x45\x76\x4b\x54\x7f\x63\xdf\xd5\xba\xcd\xe8\x36\x83\xf6\x77\x7f\x88\xea\x59\xb0\xac\x6f\x35\xe6\xf3\x44\xf5\xa4\x69\xa4\xb7\x44\xdf\xed\x0c\xad\x2b\x88\xf8\x0e\x79\xfe\x17\xe1\x47\xdf\xb4\xae\xed\xb3\xae\x7c\xf5\x8d\x9c\x94\xa8\x9e\xf4\xc6\xf0\xfc\x4e\xd5\xe1\x88\x2e\xf5\x2f\x45\xf5\xa4\x65\xda\x4d\xc5\x2e\x93\xfa\x9e\xd5\x86\x77\xc0\xfc\x5a\x4f\x2e\x4a\xf0\x2b\x5a\x52\xdf\xb3\x14\xc0\x14\x1d\x3d\xbf\xd5\x08\x7e\x45\x90\x00\x5e\x2d\x6d\x07\xf1\x30\x8a\x69\xab\xa5\xf7\x99\xf4\x23\x56\xb8\x11\x0e\x8b\xae\xe1\x54\x38\x53\x0c\xa6\x05\x56\xd3\xe4\x36\x4d\xee\x7c\x3f\x25\x85\x2d\x17\x2a\x96\xc5\x02\xe9\xd5\xca\xe6\x17\x15\x2d\xe1\x7f\xd9\xd4\xb2\x7f\x38\x97\xb6\x14\x74\x66\x30\x56\xd3\x96\x82\xea\xdf\x21\xdb\x35\x19\x42\x30\x49\x6d\xfa\xfe\xbc\x08\x87\x4e\xb5\x2e\x45\xa4\xef\xe7\xb4\x5f\xa7\x19\x3b\xee\x51\x5b\x06\xfa\xf2\xc5\x5e\x36\x62\x61\xd0\xcb\x43\x36\x62\x69\xd0\xfd\x70\x96\xdf\x12\xc1\x6d\x2f\x7a\x7a\xd9\x87\x04\xb7\xfd\x1f\xd4\x2e\x96\x4a\x9b\xe2\x3d\x31\x0d\x5f\xde\x0b\x61\x2d\x9b\x9d\x2d\xa5\x36\x45\xb1\xdc\x6b\x29\xb5\x29\xba\x2e\x46\xd3\xfe\x35\xed\xdf\xe4\x41\xef\x3e\x89\x9d\x51\xa7\xfc\x2f\xcf\xb5\x23\x0e\xeb\x47\xba\xfb\x22\xed\xe4\xfe\x19\x9b\x9a\xc6\x0e\x04\x9b\x6e\xad\x76\xd8\x2f\x87\xfd\xc2\x7f\x1d\x5e\xf1\xf0\x8a\x74\xcb\xe1\x1d\x51\x6e\xd4\xed\xf6\xc3\x1b\x3a\x98\x94\xd8\xfd\xa1\x0f\xe7\xe0\x13\x9d\x34\xe2\xf4\xf4\x4c\x7b\x75\xc6\x77\x25\x3a\x45\x9f\x8e\x00\xda\x1d\xf0\x76\x18\x37\x79\x7a\x93\x4c\x72\x75\x9f\xe1\xe9\x25\x89\x61\xfb\xe4\x92\x9a\x27\x50\xdd\x3b\x3a\xbd\x49\xa6\xaf\xfa\xa4\x77\x4e\x5f\xca\x93\x97\x72\xf2\x54\x4f\x7b\x9a\xe9\xab\x60\x00\x6e\x97\x6d\xa5\x68\xa8\x3b\xaa\x5d\xbe\x0e\x14\x0d\xe9\xb5\x34\xed\x1a\x68\xe1\xe7\x79\xd9\xae\x8b\x76\x2d\xda\x75\xd9\x15\x17\x5d\xb1\xb8\xa1\xcb\x76\x5d\xb4\x0b\x17\xa5\x5d\x36\xe2\x32\x26\xc4\x78\xb7\xdb\xb7\xf2\xe6\xd3\xc0\x77\x52\xe2\x53\xf4\x65\x5b\x6f\x2f\x79\x7b\x49\x0f\x79\x49\x0d\x22\x5e\x45\xd3\x20\x36\x0d\xa2\x1f\xf6\xed\x25\x1f\x6e\x72\xa7\xf9\x8f\xa7\x7f\xac\x64\xe0\xbf\xb4\x6b\xa0\xe9\xc0\x29\xdd\x29\x0a\xdd\xeb\xd5\x1e\x1b\xc1\xbc\x14\xc9\xb6\xd5\x1e\xaf\xf8\xb8\x8b\x02\xf7\xfd\x78\xdf\x8f\xb9\x72\xfe\xeb\xe7\x15\xd9\x85\x48\x9f\xae\x69\x10\xdb\xb7\x43\x2c\x57\xfc\x79\x43\x4c\x2e\x25\xb5\x83\xab\xfd\x3c\x3f\x93\x4b\x48\x25\x2f\xe5\x3c\x45\xeb\xdf\x7f\xf9\xbc\x7f\x3c\xef\xfd\x3d\xd4\x0d\x72\x3b\x85\x3f\xec\x0c\xb0\xba\x01\x2d\x78\xcf\xef\xb1\xf4\x18\x6f\x1d\x6f\x75\xd7\x4a\x82\x42\x5a\x6c\x75\xad\x24\x68\x6c\xc8\xbd\xba\x56\x12\x24\x15\x73\xab\x6b\x25\x41\x21\x4f\xbb\xba\x41\x2e\xe8\xba\x79\xaa\x85\x8a\x42\xd0\x77\x75\xe3\x5e\xd0\xbf\xe6\x1b\xf6\x82\x62\x3f\x89\xd5\x0d\x71\xc1\x60\xa2\x70\x75\x8d\x30\x28\xea\x7e\x56\x37\x9c\x05\x81\xbc\xdc\xea\x9a\xe5\xae\x59\x2e\x0f\x9d\x1e\x3a\x19\x43\xe9\x09\x23\x5c\xd0\xc7\x77\x45\xdb\x85\xde\x3e\x5a\x3c\xab\x33\xa7\x25\x7a\x78\x2e\xe3\xe0\xde\xbf\x61\x95\x9b\xd4\x78\x83\x32\x2b\xa0\x8a\xa9\xe8\x06\x40\xaa\x98\x8a\x0a\xef\xa8\xdb\x0a\x6a\x7c\x46\xf7\x87\xb6\x82\x22\x1e\x92\x4f\x4b\xc5\x52\xf1\x5e\x92\xc7\xa6\x89\x07\xc5\xa6\xff\xab\xb3\xed\x87\x68\xff\x3d\xa4\xf0\x81\xa3\x6c\x4a\x55\xca\x52\xd9\x54\x44\x30\xfe\xf5\xb0\x17\x5f\xb4\xfd\x3b\x99\xbd\x48\x12\x9c\x02\xcf\xd5\x75\x21\x40\x67\x5b\x97\x85\x56\xe9\x87\x0a\xf2\x04\xca\x93\x8a\x96\x94\x73\x2e\xf5\x49\x45\x30\xe5\xbe\x14\x23\x15\xef\xbf\xd1\x8c\x61\x6f\x0f\xc7\x0b\x3c\x5c\x35\x45\x45\x05\xb9\x03\x35\x45\x45\x05\x99\x88\x6e\xa0\x0d\x2a\x9a\x3f\xf4\xc5\x63\x46\x29\x88\xf6\xd5\x0f\x15\x15\xf8\x53\x8a\x85\x8a\xd2\xdf\xec\x65\x37\x52\x5a\x4c\xf5\xda\xea\xe5\x3d\x95\x93\x04\xdc\xb9\x71\x36\x28\x5d\xac\x5e\x36\xa2\x78\xbe\x7e\x36\xba\x0b\xa0\x53\x27\xb4\xba\xd1\x38\x08\xa6\x94\x57\xd7\x5d\x00\x15\xbe\x2b\x46\xde\x6a\x91\xe6\x68\x7f\x5b\xe5\x6e\x78\x0d\xda\xf7\x69\x1b\x3f\x77\xf2\xe1\x81\xcf\xa7\x7a\xa9\x78\x9d\x39\x1a\x69\xb4\x0c\x2a\x08\xc4\xba\xb1\x2b\x68\xa6\x84\x94\x1c\x15\x15\xbe\xaa\xcb\x1f\x2e\x23\x49\xbc\x34\x55\x48\x45\x05\xee\x4a\xdf\xbd\xe6\x8e\x53\x33\x3c\xe4\xc9\x76\xc4\x5b\x08\x71\xfb\x6e\xbf\x50\xec\x12\xbe\x5d\xc6\x9b\xdd\x7d\x62\x7d\x38\xc6\x9b\xa0\x35\xdf\x10\x03\x49\x50\xe1\xc7\x6d\x1c\x09\x8a\xcd\xc8\x96\x5a\xa5\x22\xf4\xe5\xfa\x61\xf3\x8f\xaf\xf9\xdc\x92\xb1\x25\xe8\x3a\x60\xca\x97\x8a\x16\xb8\x56\x5d\x1b\x0f\x82\xba\xa8\xd5\x4f\xfb\x1a\x29\xba\xdc\xbc\x4b\x0d\x3a\x68\xcb\xee\x39\xed\x8b\x93\x0d\xf0\x70\xf3\xfb\x69\xfb\x4f\xdb\xef\x21\x1b\x4b\x9e\x9a\x75\x75\x4b\x91\x53\xf1\x9e\x9f\x63\x97\xfd\x73\x99\x65\xe1\xfc\x9a\x6f\xf0\xfe\x1b\xdd\xa8\xc9\x05\xed\x1b\xe1\x6f\x9f\x12\xd5\xbc\x81\x43\xd2\xb5\xc2\x60\xe8\x38\xf7\xdb\x2f\x81\xed\xde\xd9\x15\x6a\x29\x46\x2a\x22\xfd\x1c\x35\xcc\xa0\xc2\x1b\x37\x2c\x05\x2d\xca\x1f\xfa\x48\x28\x35\x31\xd0\xee\x86\xa5\xa0\xc2\x11\x40\xf3\x0d\xea\x7b\x4a\x46\xaa\xa0\x74\x48\xba\x16\x1d\x14\xb3\x41\xab\x6b\xd1\x41\xff\x46\xcd\xc7\xae\x78\x14\x33\xe4\xe9\x6a\xe4\x41\xdf\x7d\xf9\x1f\x9b\xfa\xa0\xac\x69\x23\x8c\x67\x41\xd3\x49\xee\x5a\x74\x50\x81\x11\xee\x5a\x74\x50\x48\x76\x2f\xb5\x4e\x45\x85\x23\x9f\x06\x1d\x54\x68\x83\x7f\x5e\x11\x1b\x1f\x8e\xd2\x1a\x74\xf0\x3e\xb5\xb7\xf3\x43\x8b\x0e\x16\x42\x10\x2b\x8c\x84\x41\xb0\x0d\xef\x0a\x8d\x3c\x28\x36\x50\x58\x8a\xa4\x8a\xc6\x9e\xd5\x2b\x34\xfb\x9f\x6e\x2a\x6f\x40\x18\x2f\x83\x32\x59\x11\xda\x78\x50\x31\x3c\xfd\xe3\x21\x44\x46\xb9\x49\xc5\x55\x45\x85\x4d\xd5\x08\x47\x63\x9c\xc1\xc8\xa8\xa4\x2a\x1a\xb3\xda\x2b\x0c\x7a\x41\xb1\x0c\x70\x29\x88\x2a\x9a\x69\x6c\x95\x4e\x45\x51\x04\xba\x94\x35\x15\xc5\xee\x30\x4b\x59\x53\x51\x41\x18\x1c\x1a\x49\x50\x41\x4c\xad\xd0\xa9\xa8\xe0\x5b\x08\xed\x21\xa8\xe0\x2b\x52\xfb\x54\x74\x6a\x28\x57\x68\xfc\x40\xd7\x1e\x86\xc6\x0f\x14\x6a\xb4\x2b\x34\x7e\xa1\xf1\x23\xba\x55\x0e\x55\xbc\x0f\x92\x56\x0c\x2f\xc9\xa4\x30\x3b\xd9\xac\x18\x9e\x8c\xbd\xac\xd8\xba\x79\x85\xe1\x33\x68\xcb\x0e\xd3\x1c\x82\x66\xf4\x1c\x86\xc5\xa0\x82\xb8\x3b\x0c\x8b\xc3\x1d\x0f\x37\xfb\xc2\x84\x35\xe8\x06\xfb\x61\x10\x0c\xde\x7f\xf3\x98\xb7\xf9\xa2\xb3\xa9\xf4\x0a\xed\x21\x58\x6c\xbc\xb5\xc2\x8c\x2f\x28\xfd\x05\x25\x52\x45\x05\xe1\xb3\x12\xa9\xa2\xb1\xe2\x72\x29\x7e\x2a\x9a\x03\xb3\xe2\xa7\xa2\xfe\xfb\x2f\xef\xf2\xc5\x2a\xfb\xc2\x2c\x2c\x28\x5d\xea\x30\x0b\xab\xf4\x69\x6e\xf6\xbf\x69\x58\x50\x8e\x32\x4a\x9f\x8a\x0a\x42\xb4\x30\x0c\x05\xf5\x7d\x0e\x9a\x32\xf0\x9e\x8c\x1b\xd7\x96\x81\x72\x94\x0f\x4d\x19\x78\xff\x8d\xb3\x19\xae\x82\x8a\xf8\xbb\xfa\x6b\xa9\xa9\x2a\x8a\xbd\x5d\x56\x98\xcd\x05\xef\x89\x79\xd8\x46\xb8\xa0\xf4\x34\x95\x5e\x15\x2d\xfd\xd2\x34\x92\xa1\x91\x24\x8b\x10\x46\xb8\xa0\x82\x00\x3a\x4c\xdd\x82\x62\x07\xa7\xa5\x3c\xab\xa8\x20\x50\x55\x9d\x75\x7d\xea\xac\x9b\x9f\x9a\x79\x5a\x50\x68\x9b\x2e\x15\x5b\x45\x04\x51\x69\x68\x11\x41\xb0\x05\xcc\x52\x9d\x55\x14\xab\x86\x96\x6a\xaa\xa2\x82\x88\x2a\x8c\x4a\x51\x53\x7d\x2f\xc9\x23\xbb\x3c\xd9\xc5\xa7\x4c\xdc\x18\xda\x35\xd0\xd1\x90\x59\x71\xf9\xac\x5f\xac\xf2\x55\xbd\x6c\x2b\xb5\x97\x85\xad\x08\x33\xb0\xa0\x4d\xbf\x3e\x33\xb0\xa0\x82\x70\x39\xb4\x74\xa0\x7d\x2f\xb4\x49\x59\xd0\x87\x6d\x35\x04\x05\x45\xb9\xd9\x0a\x6d\x18\xe8\x94\x75\xad\xd0\x60\x81\x68\x0e\x31\x8f\x0f\x84\x10\x34\x96\x87\xec\xea\x17\x51\x8e\x3a\x46\x92\x2a\xa2\xe6\xe6\x4b\xae\x2d\x02\xf5\x75\xb5\xe9\x56\xd0\xbe\x7e\xfd\x79\x7e\x66\x55\xd9\xd4\x64\xa9\x92\x2a\x82\x1d\x4e\x57\xfc\x7c\x07\x28\x70\x0c\x82\x76\x85\x53\x45\x05\x29\x87\xf8\x79\xdf\x2f\x56\x69\x51\x7e\xf6\x34\x0b\x4f\x8d\x8d\x43\x8b\x15\x5a\xac\xdd\x43\x3e\xdc\x1f\x0f\x97\x64\x82\xb2\xa9\xa2\x90\x6a\x5e\xea\xa2\x8a\x70\x66\x4b\xc1\x53\x51\xba\x36\xaa\x9b\x8a\xc9\x5e\xef\x6b\x38\x81\x0a\x8a\xfd\x53\xd7\x30\xb6\x04\x81\xfe\xe6\x1a\xc6\x96\xc3\xd8\x92\xf8\x7f\x68\xb0\x40\xa3\x34\x60\x0d\x56\xba\x8a\x96\xac\xcc\x59\xc3\x39\xd5\xf1\xcd\xa9\xf2\xa2\x8f\x66\xfb\x9b\xe3\x1c\xcd\xa0\x7e\x51\x14\x4b\xda\x96\x72\xaa\xa2\xa8\x2f\x5c\x0a\xa0\x8a\xf0\xa3\x51\x00\x55\x54\xec\x9e\xcb\xf6\xbf\xa8\x41\xa8\x34\xb4\x62\x8a\x9d\x26\x26\x5e\xc9\x52\x51\x83\xa8\x65\x68\x8c\x86\x91\x18\x39\x81\xe1\x84\x27\xa8\xd8\x3d\x97\x7d\x11\xec\x61\x8d\x17\x39\x8c\xc4\x40\x0d\xfb\x75\x78\x2e\xd6\x40\xb0\x49\xf9\x1a\xda\x22\x10\xec\x1f\xb9\x86\xb6\x68\x7c\xa9\x5c\x86\x99\x61\x8e\x16\x04\x4b\x5f\x97\xa2\xa3\xa2\xef\xb6\x22\x7d\x6e\xf9\x89\xd2\xbe\x87\x9c\xb6\x04\x81\x34\xef\x52\x14\x54\x14\xab\x7c\x96\xa2\xa0\x22\x9a\x37\x69\xd0\xa5\x02\x28\x85\xce\x4b\x01\x50\x51\x63\xf3\x5c\x5e\x91\xa0\xcb\x38\x7e\x94\xbd\x53\x56\xd2\xd3\xd4\xb2\x77\xca\xb1\xc8\x1f\x7a\x43\x64\x72\xc7\xf7\x5f\xbe\x29\x2f\x6a\x10\x58\x2a\x09\x2a\xc2\xa8\x6a\x68\xfc\x40\x43\xfc\x6e\xa9\x08\x2a\x9a\xca\x70\x6b\x68\x10\x41\xb1\x13\xc5\x1a\x06\x5f\xa0\x06\xce\xf3\x30\xbb\x0b\x22\xed\x69\x73\xb4\xa0\x86\xcf\xc8\x8c\x2b\xa8\xe1\x8b\x62\x84\x06\xfa\xb0\xc3\x76\xdf\x56\xb4\x3d\xbe\xf7\x70\xf7\x87\x3b\x82\x4d\x18\x9f\x61\x34\x06\x02\xcd\x81\xa5\x42\xa8\x88\xf4\x79\x68\x68\x40\x0d\xc2\xdb\xe1\x1c\x21\x28\x6a\xd1\x97\x92\x9e\xe2\xbd\x6f\xce\x6f\xa0\x05\x6a\xf8\x3e\x19\x54\x81\xf7\xdf\xf8\xa9\xd3\x73\xa0\x7d\xed\x37\x4d\x0a\x56\xf9\x74\x8d\xa0\x40\x4f\xdf\x6a\x23\x28\x50\xac\x10\x59\xc3\x08\x0a\xd4\x68\xfb\xdf\x46\x79\x9c\xde\xf1\xe9\x2b\x62\x83\x6c\xe4\xe9\x1d\x73\xc8\x8c\xe9\xf8\xcc\x15\x4e\xc1\xd0\x5c\x81\x42\x90\x6f\x0d\xb3\xa8\xe0\xfd\x37\x3e\x34\x67\x0c\x41\x67\x89\xd7\x1a\x86\x66\xa0\xa8\xed\x5d\xc3\x34\x2a\x88\xdd\x77\x50\xab\x06\x6a\xf8\x78\x2e\x6f\xef\xe2\xa3\x62\xc0\x1f\x26\x5b\x41\x0d\x07\xd6\xdb\xc6\xbe\x28\xf4\xb4\xd7\x30\xf0\x03\x81\xb2\xd1\x1a\x1a\x3a\x50\x26\x9c\x86\xf1\x1b\x28\x54\xbd\x97\x3a\xa7\xa2\xd8\x44\x7b\x29\x73\x2a\x96\x3e\xc5\x78\x3c\xf4\x38\x22\x73\xc5\xc7\x8f\xea\x71\x51\x3b\x5f\x90\xe6\x6a\xfc\xfe\x9f\xb1\x77\x47\xba\x65\xd7\xcd\x6c\xfd\xdb\x8a\xdd\x83\x3b\x49\x26\x01\xc2\x29\xa7\xec\xaa\x3e\xe4\x33\x42\x86\xa4\x13\xa7\xa4\xfe\x57\xe4\x18\x29\xa3\xe4\xac\x6d\xac\x18\x2b\x18\xf3\xcf\x64\xbe\x08\x02\x04\xf1\x7d\x37\x91\x5e\x68\x89\x40\x6c\x3e\x56\xc3\x9c\x20\x90\x05\x59\x9b\x36\x06\xbc\x7f\xe9\xd1\x7c\x4a\x0f\x4f\x89\x28\xc1\x34\xe5\x07\x74\x63\xc5\x53\xe7\x66\xea\xdc\x10\x6f\x52\x3b\x54\xb4\xc9\xe6\xb8\xa5\xee\xa7\x18\xa8\x1a\x2f\x75\x3f\xc5\xa0\xe0\xe6\x9a\x26\xd6\x80\x40\x8b\x70\x29\x05\x2a\x62\xc3\x7d\x9e\xfa\x40\x48\x81\x06\x95\xb5\x97\x52\xa0\xa2\xb9\x12\xab\xc8\xa7\x88\x8d\x39\xcb\x34\x9e\x08\x82\x6c\xc7\xa5\xc6\xa7\x48\xd4\x41\x97\x82\x9e\x62\x38\x71\x52\xaa\x53\xc4\x86\x17\x3c\x29\x67\x28\x9a\xf6\x76\xea\x03\xcd\x2f\x28\xc8\x53\x9a\x1a\x99\x69\x50\xf0\xfb\x99\x7f\x89\xf9\x70\x7e\x35\x5d\x0a\x04\x49\xe5\xee\x35\xf5\x78\x40\x50\x5f\x7a\x4d\x57\x07\x41\x6c\x5e\xa4\x4e\x10\x18\x1b\x01\xd2\xa9\xdd\x01\xb1\xf1\x5e\x28\xb9\x29\xfa\xe6\x33\xd2\xee\x80\x6e\xf4\x5b\xc9\x4d\x11\x1b\x6e\xaa\x62\x9a\xa2\xa5\xbd\x77\x1d\x10\x2c\x72\xe0\xd6\xd4\xdf\x01\xb1\x11\x6f\x98\xda\x2b\x30\x10\x1f\x5d\x53\x0f\x08\xc4\x36\x3c\x96\xfd\x7a\xb1\xe2\x67\x93\xfd\x32\xba\x88\xfb\x3c\x4d\xe3\x01\xef\x6d\xa5\x63\xda\x30\x10\xdf\x75\x1b\x25\x04\x1b\xdb\xf8\x96\x6a\x97\x62\xb8\x9a\xaa\xda\xa5\x18\xd3\x87\xab\x59\x03\x2b\x30\x45\x2a\x5b\x8a\xd8\xf0\xf3\x94\x99\x14\xc1\x5e\xa3\x35\x0d\xe6\x81\xd8\x3c\x96\x6b\x83\x20\x36\xfc\xfa\xa9\x41\x01\x43\x07\x6e\xea\x4d\x81\xa0\xe8\xfb\x9a\x2e\xea\x81\xd8\x98\xb6\x2a\x1f\x29\x62\xc3\x27\x51\x18\x52\xbc\xb7\x82\xfb\xaa\x29\x02\x61\xa6\x88\xc2\x90\x22\x36\x66\xca\x8a\x40\x8a\xd8\x70\x49\x67\xd9\x8b\xc2\x8d\xc4\xd2\x4d\x0d\x16\x18\x66\xce\x4d\x13\x5d\x40\x50\xbb\x7d\x4d\x6d\x18\x08\xca\xbe\xae\xe9\xaa\x1e\x88\x6d\xb3\xc9\xcf\x68\xa7\xf0\x33\x03\xcf\xd4\x86\x81\xd8\xf0\x19\xa6\x9e\x11\xe8\xa4\x54\xaf\xa9\x63\x04\xfa\xf4\x2b\xd2\x31\x52\x63\x92\x1d\x62\x6b\x1a\x77\x04\x63\xf9\x31\x68\x0e\xc1\x7b\x77\xb8\x89\x06\x1e\xc1\x58\x5f\xc7\xbc\x89\xc4\x1d\x1d\x11\xa7\x6b\x8b\x60\x51\xff\x7e\x4d\x83\x8c\xf3\x0b\x32\xe2\xdf\x2a\x32\x29\x62\x63\x06\x31\x5d\x35\x04\xb1\x31\xe1\x9d\x9a\x2d\xb0\xb1\xc7\x71\x4d\x8d\x0f\x88\x0d\x07\x44\x15\x48\x31\xa8\xcd\xb6\xa6\xfe\xd3\xfc\xf2\x57\xd3\x36\x3b\x7b\x32\x8a\xf9\x44\xb4\x3e\x53\xeb\xe3\xb7\x75\xf9\x05\x92\xbf\xba\xc5\xdf\xc8\xf7\x9a\xda\x18\x10\x1b\x76\x74\x9a\xcd\x02\x62\xf3\x51\x98\xa7\x02\x06\xa9\xb2\x6b\x1a\xfd\x03\x41\xc5\x95\xa5\xbe\xa3\x18\xce\x56\xa6\x2e\x17\x08\x6a\x76\x2e\x85\x1b\x45\xdb\x4c\x74\x9c\x3a\x40\xa0\x7f\x23\xb9\x81\x3d\x10\x14\x7d\x5b\x6a\x39\x8a\xd8\x7c\xe9\x75\x93\x40\x5f\x0e\xdb\x06\xf6\x40\x6c\x7c\x67\x61\x10\x0f\xc4\xc6\xb4\x36\x34\x57\x20\x48\xed\x7e\x07\x31\x9b\x2c\xb9\x31\x68\xda\x6d\xf2\xa9\x16\x4d\x87\x4d\x7c\x07\xbc\x95\xe1\xb2\x19\x78\x9f\x57\xd2\x36\x6c\x63\x60\xc2\xf4\x85\x51\x3c\x30\x0d\x3a\x87\x16\x0c\x4c\x57\x47\x42\x0b\x06\x62\xe3\xdd\x0d\xfd\x1f\x10\x1b\xaf\x43\xe8\xff\x80\xf7\x94\x1c\x4c\x4b\x04\x06\x25\xf7\x56\x18\xc6\x03\x13\x15\xae\xa5\x68\xa3\x88\xcd\xbe\x9a\xa4\x09\x62\xf3\x58\x9b\xc7\xda\x78\x07\x70\xe1\x15\x4b\x14\x8d\x2a\x9b\x2b\x0c\x8d\x81\xa6\x8f\xad\x7c\xa2\x78\x3b\xc6\x5f\x9a\x1f\x02\x42\x0f\x25\x34\x15\x60\x33\x03\x28\x1c\xf1\x41\x8b\xef\x0f\xbd\xd7\xb8\x36\xc3\x50\xae\x32\x8b\x62\x94\x37\x56\xc3\x00\x5a\xfa\x48\x5c\x76\x02\x61\x5a\x42\x68\x2a\x40\x9b\xec\x99\x5e\x2a\x2f\x8a\xd0\x89\x0f\xad\x00\xe8\xec\xc5\x5b\x2a\x2f\x8a\xf7\x2f\x39\x81\x7e\x8b\x32\x8b\xf3\xe7\x19\x74\x5c\x40\x98\x31\x18\xba\x1f\x60\xf4\xef\x57\x5e\x67\xea\xe9\x79\x52\xc3\x76\xa0\xb1\xbd\x66\x29\x83\x28\x9a\xa5\x23\x57\x68\x09\x40\x33\xb0\xa2\x04\xe1\x0a\x76\x2d\x50\x8f\x65\x85\xa1\xb6\xf8\x42\x6d\xf6\x43\x4b\x10\xdf\xb6\x05\xac\xa2\x22\x84\x22\xb6\xaf\xc9\xc7\xa2\xbe\x08\xf3\xba\x30\x70\x16\x5f\xe0\x8c\xe8\x41\x98\xce\x01\x62\xfb\x9a\x7c\xc6\xbb\x5a\x34\x5c\xc1\xee\xcd\xfd\x3c\x15\x8f\xe6\x30\x1f\x04\xbb\xb6\xaf\xc9\x2b\x60\x2d\x69\x63\x4c\x0f\x47\x66\x10\x86\x86\x54\x21\x14\xb1\x31\x02\xc5\xe1\xf7\xc4\x96\x04\x73\x36\x43\x17\x00\x84\x1e\x8e\x2a\x81\x22\x9c\xf3\x84\x81\x2d\xd0\x5d\x41\x0d\x07\xe6\x70\x60\xc6\x59\x0d\x5d\x00\xd0\xa9\xed\xb7\x14\x09\x14\x6d\xf9\x3a\x3a\x56\x87\x92\x20\x98\x9f\x70\x09\x07\x84\x91\xff\x70\xbe\x1f\x16\x5f\x61\x9a\xa2\x48\xa0\x88\x89\x1f\xa2\xe4\x9f\x08\x63\x13\x4a\xfe\x89\x70\xb9\x49\x31\xbf\xf5\x89\xf9\x31\xe4\x85\x03\x2f\x08\xea\xf4\x2c\x65\xfa\x44\x20\x48\xb0\xc2\xac\x09\x30\xa6\x2f\x94\xbe\x83\xc2\x7d\xce\xc5\xc2\xe8\x17\x88\x89\x9b\xa6\x4a\x9f\xe8\xe5\x28\xe2\xe8\x0c\x62\x36\x7f\xe5\xcb\xf9\x6d\x20\xf0\x55\x74\x78\x06\x31\xb1\xa7\xa1\x87\x11\x9f\x87\x41\x34\x47\x31\x3f\xd1\x0c\xdf\xa5\x1e\x06\x08\x0a\xcf\xaf\x74\x14\x07\x23\x18\xd8\xd3\xf8\x17\x08\x97\xc6\xd2\x81\x1d\xc4\xfc\x79\xac\x65\xd3\xa2\x69\xd1\x54\x36\xd9\xff\x41\xd3\x6e\xd3\x4e\x53\xd0\x74\xd8\xe4\x82\x39\xaf\x58\x1a\x00\x03\xe1\x5d\x4c\x7d\x1a\x10\x13\xff\x31\x35\x09\x20\x26\x0f\x29\xb5\x08\xe0\x3d\xd8\x9f\xb7\x4a\xad\x34\xad\x02\x74\x6a\xf1\xac\x6c\x76\xbc\x39\xf0\xf3\x8a\xa7\x26\x03\xc4\xec\x36\x9d\x36\x91\xa9\xf5\xfd\xe5\x6d\x93\xb3\x0a\xbe\x04\xe5\x04\x45\x4c\x1c\xd8\x74\x7d\x08\xbc\x3f\x9b\xb4\x79\x52\x72\x2d\x26\x0e\xb8\x12\x83\x22\x26\x1e\xac\x6a\x82\x22\x26\xeb\x81\xe9\xc6\x01\x10\x93\x51\x21\x75\x71\xc0\x7b\x7c\xba\xa6\x01\x02\x31\x71\x2f\x52\x57\x05\x74\x73\xc1\x52\xbf\x04\x6c\x06\x7c\xd2\xcc\x46\x10\x14\x0e\x5f\xa9\x99\x02\x61\xf8\x22\x75\x55\x40\x4c\xbc\xc9\xd4\xfe\x80\x6e\x72\x5b\xea\xaa\x80\x98\xb8\xfc\xa9\x5f\x02\x62\xe2\x73\x2a\x43\x28\x62\x32\xc7\x49\x37\x0e\x80\x98\xf8\xf7\x4a\x0e\x8a\x98\xc3\x5f\xf9\x5e\x12\x5a\x73\xfa\xaf\xbe\xa0\x88\x89\x45\x55\x5f\x50\xc4\x64\x84\x49\x83\x66\x20\x26\xfe\x6b\x6a\x68\xf2\xdb\x37\x40\xac\x33\x4d\x76\x04\x31\x99\x42\xa5\x21\x32\x30\xcc\xf6\x4e\xf3\x1f\x41\xa0\xb8\xbf\x54\x17\x14\x83\x9d\x51\x2b\x0d\x87\x81\x70\x13\x40\xea\x97\x80\xf7\x94\xfe\xcc\x4f\x81\x7a\x67\xae\x55\xa7\x8e\x03\x78\x7f\x46\x37\x8c\x6b\x81\x60\xcf\xf2\x4a\x57\x4b\x40\xa0\x51\xba\x52\x33\x00\xc2\x7c\x0f\x65\x03\x57\x3a\x8f\xa7\xde\xc4\x4a\x4d\x03\x08\xea\x74\x2e\x45\x02\x45\x50\xcc\x7a\xa5\x4b\x23\xe0\xfd\x4b\x6e\x9a\x33\x74\x30\xca\x77\xd1\x20\x16\x88\x39\xfd\x95\xd7\xc4\x0a\x8a\x49\xb0\x69\x48\x0a\xc4\xf7\xae\x68\x67\x40\xb8\x4c\x94\xda\x19\x10\x13\xc7\x4a\x2d\x41\x11\x13\xab\x9e\x1a\x15\x10\x54\x55\x5c\xe9\x34\x1e\x84\xa9\x1a\x69\xaa\x00\x08\x23\x94\x69\x10\x09\xbc\x57\x44\xc7\x5c\xf5\x00\x61\xf2\x54\xba\x9c\x91\xee\x1c\xa3\x96\xc4\x4a\x4d\x01\x48\xb3\xc0\x15\x00\x14\xef\xcf\x6c\xf3\xce\x3a\xf0\x33\x55\x4f\x17\x34\x40\x4c\xfc\xd3\x7c\xbc\xb3\xcf\xb4\x2c\x24\xd7\xe9\x8a\x46\x3e\x5e\x27\x0f\x40\xfb\x90\xcf\xa7\x0c\x49\x93\x5d\xa3\xc0\x56\xf8\x61\x3a\xee\x83\x98\xbc\x7a\xcb\x25\x78\xf0\xf6\x2c\x68\x1b\xb6\x0d\xdb\x92\xb6\x69\x1b\x23\xd7\xb0\x29\x6c\xfa\x6e\x91\x87\x4b\xdb\x58\xc3\x62\xb4\x5e\x0e\xea\xeb\xf7\xdd\xa2\xa2\xed\xb2\x8d\xa7\x3e\x3d\xda\x6d\x13\x7d\xc3\xe1\x5a\xae\x6a\x80\x30\xac\xbe\x1c\xfa\x97\x43\x3f\x63\x92\x42\x84\xa2\x4d\xaa\x4a\x2c\x95\x08\x45\xa0\xf7\xba\x96\xde\x00\x88\x49\x18\x77\x39\x68\x83\xf7\x2f\x39\xa7\xd1\x2b\x90\x28\xd8\x2e\x05\x0b\x45\x20\x7d\xb2\x54\x24\x14\x81\xba\xd1\x5a\x06\xb4\x40\x6c\xe5\xaf\xbc\x19\x14\xe6\xd4\xa1\x5e\x2e\x87\x80\xa0\xe4\xd4\x5a\xae\xcd\x83\x30\x77\x73\xb9\x10\x0f\xc2\x0c\x9d\xe5\xc8\xbe\x1c\xd9\x19\xce\x96\x91\x2a\xd0\x96\x4f\x73\xb3\x5f\x1b\xfd\xc2\xcb\x5a\x9b\xb7\x67\xe3\xd3\xc1\x89\x5b\x2e\x9a\x80\xee\x0a\xeb\x72\x60\x07\xdd\x3c\xed\xa5\x4b\x02\xa6\x51\xda\xa5\xb3\x01\x02\x81\xc2\xb5\x1c\xeb\x41\x77\xdd\x6c\xb9\x6f\x0c\xbc\xb7\xd5\xbf\xf4\x56\x4c\x6a\x37\x30\xf4\x2e\x07\xfb\xe5\x60\x9f\x7f\x2e\x99\xbd\x96\xee\x09\x68\x26\x3a\xab\x7b\xb8\x3e\xdd\xc3\xef\xf4\xbe\x48\xd4\x54\x40\x71\x70\x2d\x8d\x08\x78\x7b\xc4\x4d\x70\xcd\x06\x74\x07\xeb\xe5\x9a\x0d\x08\xa4\xc7\xd6\xd2\xb0\x80\xc6\x9e\xdb\xa5\xae\xa2\x78\x0f\xc6\x4d\xd6\xb2\xac\x4f\x8e\xca\x83\xd9\xd9\xf0\x81\xf1\x97\x66\xd1\x83\x6e\xd8\x4d\x11\x45\x11\x14\xcd\x5f\xcb\xb5\x17\x10\x13\x77\x65\x19\x03\x03\xbd\xec\x85\xee\x0a\x08\xa4\x9b\xd6\x32\x2c\x06\x62\xe2\x35\x2d\x6d\x0d\x68\xc9\x88\xa8\xd4\xa2\x88\xb9\x6c\xb2\x13\x9a\x1f\xa6\x83\x4b\xf3\x03\x9a\xeb\x4b\x4b\xcf\x07\xf4\xe5\xdd\xd1\x20\x81\x70\xa3\xdf\x32\xa1\x00\xc4\xb4\xab\x66\x07\x80\xbe\x1c\x3a\x0c\x81\x81\xa0\xbe\xe7\x5a\xfa\x3d\x4b\xbf\x87\x12\x26\x6b\x69\xdd\x40\x50\xce\x6c\x29\xac\x28\x02\xb5\xab\xb5\x34\x6e\x4b\xe3\x56\x36\xf9\x8c\x08\x8b\x51\x42\x6a\x29\xa2\x28\xde\xe3\x73\xab\xb5\x81\x60\x18\x1e\x5a\xc6\xad\x40\x50\x2b\x6f\x2d\x5d\x21\x10\xd3\x77\xcc\xec\x00\x10\xd3\x8f\xdd\x95\x1d\xd0\x28\x40\xb6\x54\x64\x14\x81\x10\xc4\x5a\x46\xb7\x40\x6b\x0e\x7c\x5a\xc0\x65\xd6\x1b\xe5\x6e\xd6\x72\xa1\x06\x04\x95\x48\x96\x92\x8c\xa2\x37\xdf\x57\x17\x65\xc0\xe6\x36\x93\xe5\xc6\xae\xa5\xa1\x64\xd6\xa0\x70\xa3\xe8\x2e\x3d\x2b\xdc\x28\x5e\x5f\xd7\x36\xef\xcf\xf9\xdd\x1f\x6e\x86\x41\x30\x30\x28\xb5\xbd\x96\xa6\x12\xb4\x49\x61\x96\xa5\xd8\xa2\x08\xd3\xb8\x96\x81\x31\x30\x96\x43\x9f\xc9\x06\x8b\x35\x18\xd3\x6e\x96\x3e\x19\x78\x0f\x66\x9b\x23\x11\xf2\x16\x31\x3c\xa7\x77\x88\x00\x99\x81\xfb\xa5\x9f\x06\xba\x93\xda\x65\x12\x1d\x18\xd4\xc7\x5e\x8a\x34\x8a\xf8\x3e\x38\x97\x6a\xd6\xa3\xbd\x73\xa4\xd3\xec\x82\x30\x10\xbd\x4c\x86\x03\x5d\xff\x54\x91\x46\x11\x06\xe0\x97\xc6\x19\xac\xf0\x95\xd5\x77\x03\xa3\xbc\x22\x6d\x33\x08\x13\x10\x96\x2b\x41\x20\x5c\x06\x54\xc8\x51\xf4\xf0\xcd\xd0\x5c\x83\xae\x05\x2f\x7d\x32\x10\x2e\x6e\x97\x09\x08\x20\x02\xf3\x57\x5a\xe6\xfa\x2c\x33\x53\x64\x25\x20\xc5\xd0\x18\x95\x1e\x18\x88\x60\x9c\x2e\x97\x90\x40\x18\x90\x2d\xf3\xd6\x41\x33\xb4\xa3\x2a\xa4\x18\x81\x4d\x29\xbd\x2d\x10\xa8\x55\xaf\xd2\x9b\xaa\xe6\x1b\xc5\xdc\xbd\x34\xb9\x60\x99\x02\x54\xd4\x9d\x14\x11\xdf\xaf\x6e\x9b\x6e\x0e\x46\x93\x9e\x13\x88\xe0\xeb\x2d\xcd\x2b\x78\x8f\xcf\xfd\x31\x29\x01\x8d\xc9\x08\x5e\x6c\x05\x25\xc5\xfb\xb3\xa2\xcd\x1b\x84\xcd\x0d\x5e\x82\x32\x05\x01\x44\xf0\x7d\x29\x1e\x29\x22\x78\x96\x8a\x42\x8a\x36\x29\xe2\xb3\x94\x80\x14\x41\xe1\xf7\x55\x2e\x0f\x81\x70\x1a\x54\xda\x61\x10\x54\x00\x5b\xa5\xd1\x05\x11\x3e\x25\x8d\x2e\x48\xbf\x2e\x85\x1c\x45\x1b\x5f\x93\xbd\xc0\xc4\x51\x68\x62\x29\xae\x28\x5a\x32\x1d\x56\x5c\x51\x04\x9a\x93\xab\xb4\x5d\x20\xc2\x5b\xa1\x9f\x04\xe2\x7b\xc9\x74\x8a\x40\xc4\xf8\x1b\x89\xd9\x6a\x2f\x8a\x70\x8b\x42\x19\xb0\x03\x61\xea\x52\x69\xec\x40\x77\x7d\xb5\xf4\xa2\x40\xc4\xb0\xc9\xc7\xca\x82\x4f\xe0\x3d\x96\xe1\x3a\xf0\xde\x75\xae\x4e\x6b\x07\x22\x70\xf9\x14\x72\x14\x3d\x98\x10\x29\xe4\x28\x9a\xfa\x99\x4b\x25\x47\x31\xca\x6f\xc8\x0d\x62\x20\x1c\x74\xca\x6c\x3c\x30\x9c\x70\x95\xcb\x47\xe5\x9e\x68\x9f\x97\x76\x12\x44\x60\xdb\xd4\x7b\x14\x81\x12\xd9\x52\xef\x51\x34\x64\x2e\x97\x42\x8e\xa2\x39\x02\x94\xf1\x41\x10\x81\xdf\xa6\x90\xa3\xe8\x6e\x80\x2e\x4d\x27\x18\x66\x01\x2b\xed\x28\x02\x95\xeb\x55\xa6\xda\x81\xe6\x4a\x57\x99\xdb\x00\x22\xf0\xe4\x54\x76\x14\x11\x38\x5f\x2a\x3b\x8a\x51\x5e\x90\x31\x44\x10\x81\x0f\xa5\xd8\xa3\xe8\xdf\xcd\xd1\x79\x04\x11\x9b\x67\xf4\x1a\xf1\x1d\xdd\x28\x5a\xa6\x44\x80\x30\x82\xad\xd8\xa3\x68\xba\x93\xa5\xeb\x08\x22\x18\xca\x15\x71\x14\x11\x78\x80\x2a\x36\x2e\xe4\x19\x23\xfc\x43\xad\x13\x68\xae\x90\x95\xc6\x09\xbc\xef\x0e\x7d\xd5\xb9\xab\xcf\xb9\xf3\xbe\x9a\x0f\x00\x22\xfc\x80\x34\x45\xa5\xdd\xc1\x5d\x55\x2c\x51\x34\x57\xdd\xcb\x85\x99\xb2\xec\x88\xc9\x32\xaa\x25\xae\x4f\x2d\xd1\x5b\x66\x5e\x36\x88\xf0\x89\x98\xd2\x56\x9f\x2d\xf2\x1d\xd6\xca\x94\x56\xc6\x2b\xd0\xa4\x80\x08\xdc\x20\xb5\x11\x45\x43\xc6\x71\xed\x3a\x72\xa0\x8d\xfc\x7e\xd6\x6d\xeb\xec\x49\x99\x34\x0d\x9b\x78\xc9\x30\x33\xbb\x96\x01\xbc\xdd\xf0\x2f\x97\x6d\xcc\xff\x86\x3f\xdb\x6d\xe2\x99\x2f\xcf\x79\xda\xc4\x33\x67\x34\x57\x2d\x51\x0c\xea\xb2\xac\x5d\x37\x6e\x37\x39\xad\x79\x30\x8d\x0a\x88\x60\xe6\xb5\x6b\x54\xc0\x72\x84\xdf\x35\x2a\xa0\x51\xfb\x70\xed\x7a\x76\xe0\x3d\x18\xdd\xd0\xb5\x03\xe1\x77\xaf\xf4\xa2\xe8\x66\x7c\x29\xbd\x28\x9a\xf6\x7b\x77\xcf\x14\x88\xc0\xe7\xdc\xb5\x46\xbb\xd6\x08\xdf\x48\x99\x45\xd1\xf5\xec\x76\xfd\x3f\xf0\xf6\x82\x9e\xe9\x00\x82\xb6\xbc\x24\x8d\xd6\xae\xd1\x62\xc0\xdb\x35\x50\x60\x04\x1e\x9a\x02\x8d\xa2\x07\xb3\x5c\xc5\x18\x45\x73\x77\xf6\xee\x66\x28\x30\xd6\xe6\xaf\x36\x9b\x2c\x13\xcc\xb1\x34\x6c\xbb\x86\xed\x6b\xf2\x56\x0c\x5d\x72\xba\xef\xae\x68\xd0\xf5\x09\x55\x6c\x14\x9d\xda\x7a\x4b\xc5\x46\xd1\x5d\x28\xd8\x35\x75\xbb\xa6\x0e\xbf\x5a\xf9\x44\x11\x6e\x4a\xdf\xcd\x84\x00\xe1\xd6\x11\x75\x11\x45\x9b\x14\x64\x5b\xaa\x20\x8a\x6e\x7c\x74\x37\xd1\x1b\xf4\x35\xfd\x95\xb7\x1a\x9f\x93\xfa\x87\x6b\x77\x7d\x0b\x74\x03\xfe\xbb\xf1\x45\x30\x8c\xee\xef\x7a\x8b\x20\x50\xdc\x5a\xbb\x76\x13\x74\x0b\x2d\x28\xa8\x28\x9a\x1b\x71\x77\xdd\x40\x10\xce\x6e\x14\x4c\x14\x6d\xf9\xd2\x69\x37\x41\xb7\x8e\x83\x1a\x8a\xa2\xbb\x8d\x51\x0d\x45\xb1\xb9\xf6\xb4\xbb\xba\x05\xc2\xb0\xba\xb2\x8a\x22\xcc\x32\xda\x8d\x42\x82\x9e\x58\x6a\x85\x16\x45\x7b\xed\xc3\x1f\xcd\xf2\x6e\xdc\x12\x6c\x66\x2d\xec\xda\xe0\x5d\x21\x24\x46\xc3\xdd\xe4\x77\xd0\x5d\x06\x51\x86\x51\xac\x20\x40\xbc\x9b\xd6\x0e\xc2\xdc\x54\x35\x17\xc5\xfb\x50\xe9\xb7\xbe\x24\x88\x20\x44\xa0\xc2\xa2\x88\x60\x85\x75\x37\xfb\x1d\xc4\xf7\x15\x68\x5c\x41\x2b\x3b\x66\xa6\x3b\x18\xe8\x91\xaf\xdd\xea\x22\xa0\x5b\x0c\x62\xd7\x09\x05\xc3\x8c\x9a\xdd\xd5\x37\x10\x2e\x6d\xaa\xd6\x28\xfa\x37\x54\xb9\xf8\x06\x3a\x92\x50\x4b\x1d\x46\x31\x96\xcf\x46\x4b\x0a\x22\xec\x84\x3e\x28\x68\x68\xb0\x2c\xa5\x19\x45\xff\xc6\x33\xed\xed\xae\xbd\xc5\x5f\x56\xac\x51\x44\xf8\x36\xe8\xa9\x82\x86\x04\xcb\xda\xdd\x12\xb6\x6b\x95\xfd\xf8\xb5\xca\x60\x39\xc5\xdc\xcd\xe9\x00\x81\xf8\xe8\x52\xe4\x51\xb4\xb1\xbe\xbf\xf4\x86\xed\x6e\x57\xe5\x22\x4d\xd7\x00\xc3\x49\x85\x2a\x8f\xa2\xa3\x34\xba\x76\x2d\x35\x68\xe6\xdc\xef\xa6\x61\x80\x61\xce\xc5\x6e\x92\xa1\x8a\x8e\x4e\x28\x77\x77\x71\x81\xe5\x44\x57\x8d\x47\x31\xac\xfd\xb1\xeb\xbb\x82\x08\x02\x1f\x6a\x3c\x8a\x40\x67\x7a\x29\xde\x28\xba\x19\xb9\xca\x32\x8a\xfe\x8d\xd9\xa6\xc4\x83\x66\xdc\x57\xa5\x46\x11\x81\xeb\xad\x52\xa3\xe8\x06\x2b\x94\x65\x14\xa3\xec\x84\x53\x03\xb0\x99\x42\xb7\x3b\x33\xd8\x9d\x19\x30\x7b\xdb\x75\x5c\x41\xb8\x5a\xa2\x2c\xa3\x18\x3f\x6f\xa1\xeb\x8b\x20\xdc\x2a\xac\x2c\xa3\x58\xba\x14\xca\x32\x8a\xf8\x9e\x90\xae\x2c\x88\x24\x9a\x8e\x44\xe3\x87\x08\x4d\xb9\x0b\x93\x20\x3e\xbb\xe1\xbc\x03\x0c\xdd\x62\x65\x19\x45\x84\x03\xbb\x41\x6b\x10\xa1\x25\x37\x40\x0d\xc6\x9a\x1e\xcb\xde\xdf\x0e\x96\xfc\xca\x09\x0b\x08\xe4\x53\xd7\xae\xa3\x0c\x22\x88\xf7\xec\x4e\x61\xc0\x3b\x2c\xf8\x33\x3b\x66\x12\x3e\xde\xd5\x6e\x0e\x0a\x88\xb0\xaf\xce\x74\x40\x37\x0b\x54\xa9\x46\xd1\x5c\x0b\xdd\x75\x8b\x41\xa7\x60\xfe\x3a\x9c\x0f\x81\x11\x58\x84\xc3\xf9\xd0\x61\x45\xe2\xf4\x57\xdd\x26\xcb\xe5\xfc\x68\xda\x6c\x32\xd1\x26\x69\x4a\x9b\x92\x9b\xef\xaf\x4e\x9b\x18\xfb\xbe\xc3\xdf\x36\xdd\x64\x6c\xbd\xd7\x78\x38\xa7\x01\x91\xd8\x20\x65\x19\x45\xa0\x2f\xb6\x0e\x27\x2b\x20\xf2\x67\x93\x67\x6c\x9e\x71\xd2\x54\x36\x59\x5f\x68\xd1\xb4\xdb\xb4\xf3\xab\x46\xd3\x61\xd3\x41\x0c\xd3\x33\x5e\x36\xb1\x55\xff\x3b\xd6\x63\xd3\x37\x4c\x73\x4a\xb3\xfe\x41\x98\x7e\x79\x18\xe6\x06\xe3\xbb\xad\x66\x64\x82\x48\x6e\xbe\x72\x8e\x22\x92\x98\xc1\xe1\x76\x36\x10\x49\x00\x42\x85\x47\x31\x0c\xcb\xaa\xe6\x28\x22\x99\x7e\x1d\xce\x4c\xc0\xdb\x31\xfa\x6f\xe8\x1b\x34\x0a\xcf\xae\x43\x9f\x1b\x44\x12\x93\x38\x9c\x87\x80\x48\xa2\x0d\x87\x2e\xf7\xb1\x7d\x6f\x1d\xe7\x74\x51\x13\x84\x9b\xfc\x95\x5d\x14\x81\xda\xf3\x52\x63\x51\x84\x95\x76\x94\x58\x14\xe1\x12\x8e\x4a\x89\x62\xe9\xac\x2b\x94\x28\xde\x53\xfe\x8d\x9d\x52\x0a\x29\x8a\x30\xb1\xf3\x30\x3f\x13\x74\x67\x20\x87\xa9\x39\x20\x10\x33\x5e\x87\xb3\x19\x10\xd9\xfc\x95\x97\x42\x66\x8e\x75\xaf\x0e\xa3\x00\x20\xa8\x7f\xbe\x0e\xe7\x29\xa0\xa1\x8d\xb2\x0e\x27\x25\x20\x50\xd5\x5b\x8a\x2d\x8a\xa0\xf2\xe0\x3a\x74\xe0\x41\xa4\x17\xec\x0c\xe4\xf8\x66\x20\xf4\xcb\x29\x06\x88\xef\x9b\x72\x8a\x71\xb8\xaf\x1b\x9b\xa0\xd4\xa2\x08\x0b\xbc\x1c\xba\xf9\xa0\x39\xb4\x1f\xc6\xb4\x41\x58\xc2\xe0\x70\x8a\x71\xb8\x73\xce\x3f\xd4\xa5\x07\xe1\x16\xfd\x43\xf7\x1d\x74\x77\xc4\x1c\x7a\xe1\xe0\x4b\xe9\x3b\x9c\x3b\x80\x30\x31\xf2\x70\x47\x1c\x08\x67\x59\x87\x69\x9d\xc7\xb7\xc3\x80\x7e\x19\xd3\x3e\x70\xcc\xd3\xcb\xd6\x31\x07\x91\xcc\x56\xd4\x50\x5c\x08\x26\x46\x62\x56\x15\x4c\x14\xef\x0b\xc2\x29\x9d\x3c\x1c\xf5\xcd\x84\xdf\x73\x2a\xb0\x26\xba\x41\xc3\xd3\x29\x3a\x88\x64\x2e\xa9\x74\x9a\x88\x64\xee\x73\xfa\x1d\x9c\x7e\x07\x4c\x42\x4f\xe7\xe3\x60\x50\xde\x72\x9d\x96\x26\x00\x6d\x9a\xee\x74\x3a\x47\x07\x61\x69\x99\xd3\xd4\x64\x30\x9c\xba\x29\xba\x26\x02\x39\xbb\x75\xfa\xb5\x9c\x7e\x2d\x4c\xe4\x55\x58\x13\x91\x4c\x03\x95\x4b\x13\xef\x29\x6d\x9b\xb6\x4d\x7e\xd6\x69\xf2\x94\x2f\x86\xa5\x9e\x4e\xd7\x65\x40\x37\xb7\xe6\x74\x42\x0e\x22\x19\xbf\x4e\x43\x54\xa0\xbb\x13\xfd\xf4\xad\x06\x9b\x0b\xb6\xea\xa0\x89\xa0\x54\xf7\x52\xdf\x4c\xbc\x1d\xa3\x17\x2e\xd2\x83\xb0\x9c\xcd\xe9\x04\xf8\xb4\x48\xd1\xcf\x26\x4f\x99\x3c\x11\x3e\xb7\xd3\x39\x31\x88\xe4\x1d\x56\xdf\x4c\x04\x6a\x09\xeb\x74\xb2\x0b\xc2\x1d\x7b\xea\x9b\x89\x70\x8b\xfc\xe9\x0b\x0b\xc2\xa5\x9a\xd3\x17\x16\x0c\x2d\x91\x92\x67\xeb\xf4\x85\xf5\xb6\x9a\x61\x0c\x22\x99\x41\xaa\x5c\x26\x22\x09\x22\x9c\x56\x23\x00\x6d\x63\xfc\x38\x7d\x13\xc1\xf0\x13\x39\x9d\xc6\x82\x61\x52\x80\x62\x66\xa2\x1b\xf0\x54\xcc\x4c\x74\xa7\x3a\x8a\x99\x89\xf7\xb6\xd2\x0b\x27\xad\x60\x98\xec\xa2\x74\x99\x68\xe3\x3b\xa5\xb7\x62\x37\x89\x95\xdb\xea\x3c\x16\x84\x1b\x14\x14\x38\x13\xcd\xd5\xfe\xd3\x99\xed\xe9\xcc\x76\xd9\xe4\x45\xb2\x2f\x27\xa7\xdd\xf7\x22\x59\xcf\x41\x4a\x67\x9d\x86\xa5\x40\xb7\xe6\xcd\xe9\xfc\x17\x8c\xc5\xf0\xa7\x0c\xda\x52\xf3\x0c\x41\xb8\x75\xba\xc4\x03\x9a\xcb\x09\xa7\x39\x71\x20\xcc\x61\x3d\x5d\xe2\x01\xc3\xfd\xcb\xa7\x5b\x7c\x40\x5f\xe9\x19\xbd\xa0\x83\xa5\x27\xa6\xb1\xea\xa7\x89\x41\xc1\xfe\xa5\x7c\x9a\x88\x9c\xfe\xa1\xbd\x57\xb4\xc3\xef\xc3\x84\x09\xd0\xdc\x07\x79\xba\x5a\x04\x22\x71\xd4\x55\x4f\x13\x9b\xc5\x15\x4e\x57\x8b\xc0\xb0\xe6\xca\xe9\x24\x1c\x6c\xdf\x4b\xe1\x24\x1c\x74\xcb\xf4\xa9\xb1\x26\xc2\xc8\x83\x12\x6b\xa2\x5b\xda\xf4\x74\x12\x0e\x22\x7d\x42\xa6\xef\x7d\xaa\x6b\xbe\x4d\xee\xe0\x01\xc3\x9a\x4d\xa7\xbb\x57\xc1\x30\xff\x49\x39\x35\xf1\xbe\x60\x9c\xd2\x89\x39\x08\xf7\xfe\x9c\x4e\xcc\x41\x6f\xeb\x6f\xf8\xc8\x6a\xb2\x89\xee\x0e\x16\xf5\xd7\x44\x37\x97\x4f\xb1\x35\x31\xdc\x9f\x7f\x3a\x49\x07\x6f\x8f\x6c\xf3\x1e\xbf\x68\x8b\xd9\xf0\x69\xc4\x10\x44\x12\xbf\x38\x9d\xb8\x83\x30\x59\xec\x74\xe2\x0e\x86\x09\x2e\xa7\xa9\xdc\xa7\x75\x98\x96\x87\xf7\x86\x32\x4b\xd7\x9c\x9c\xae\x67\x81\x65\x90\x5f\x95\x36\xb1\x5c\x1d\x50\x92\x4d\xbc\x7d\xf5\x67\x1e\x9f\x5c\x41\xeb\x04\x9e\x2e\x4b\x81\xfe\xfb\x0e\xe6\x29\xd9\x04\x9b\xcc\x4e\x94\x69\x13\xef\xc1\xde\x13\xa8\xc0\xb6\x90\x5b\x0b\xa4\x18\x97\xda\x6a\x22\x92\x37\xe9\x32\xaa\x08\xfa\x62\x10\x52\x6d\x4d\x44\x12\x09\x50\x6d\x4d\x34\xb3\x1f\x54\x5b\x13\x91\xe9\x19\x1f\x9b\xb0\x86\xcc\xef\x15\x60\x13\x91\x78\xdc\x97\x41\xc5\xcb\xa0\x62\xb7\x69\xd8\xc4\x03\xe1\x7d\x53\x92\x4d\x44\xe2\xe3\x5f\x4e\xd3\x2f\xa7\xe9\xb8\xea\xca\xa8\x89\xf7\xba\x39\x98\x0b\x2a\xa0\x1b\x1d\x50\x50\x4a\x74\x4b\x91\x5c\xa6\x3d\x83\x48\x3c\xdb\xcb\x58\x11\x78\x0f\xe6\xcf\x3c\x01\xd5\xe4\xdd\xea\x72\x69\xc1\x2e\x53\xa1\x1b\xc3\xd0\x65\xb4\x08\x44\xf2\x62\x5c\x4e\xcc\x40\x5f\x8c\x4c\xca\x53\x89\x48\x7c\x5b\xb5\xa8\x44\x24\x8e\xec\xe5\xc4\x0c\x0c\x83\xef\x6a\x51\x89\xa5\x4b\x7f\x39\x57\x03\xcd\x05\xd2\xcb\x45\x14\x10\xc9\x98\x73\x19\xe7\xb9\xac\x99\xd7\x18\xd3\x2e\x6d\x1f\x18\xbe\x51\x97\x86\x0e\x34\x2b\xb9\x5d\x5a\xb5\xcb\x0c\x6a\x74\x00\xd6\x65\x74\x06\xbc\x6d\x3c\x01\xa7\x58\x20\x92\xcf\x4b\x19\x28\xd1\xad\xf2\x72\xb9\xaa\x71\x59\xaf\x15\x6d\x80\x75\x69\x78\x40\x37\x28\x71\xb9\xee\x00\xfa\xf2\x3a\x5d\x77\x50\x5c\x29\xf1\x6f\x95\x4d\x12\x81\x5e\xe9\xba\x1c\x48\x41\x24\x53\xde\xcb\x05\xf5\xeb\xfc\x4e\xc9\x33\x31\x50\x01\xc2\xbd\x33\x8a\x24\x89\x48\x5c\xde\xcb\x01\xf1\x72\xef\x09\xaa\x05\x4b\xdd\x24\x11\xa8\x6a\x2c\xe5\x8f\x44\x24\x0e\x95\x5a\x47\x22\x92\xb8\xc1\xe5\xe8\x07\x22\xf1\x66\xd5\x3a\x12\x4d\x2b\x79\x19\x83\x00\x61\x91\x65\x85\x8d\x44\x37\x30\xa5\xb0\x91\x08\xeb\x77\xa8\x6b\x24\xde\xbe\x72\x7c\x97\xd8\x41\x2b\xef\xbf\x03\x17\x2a\x46\x61\xd4\x5e\x11\x23\xf1\xfe\x25\x37\xc3\xfc\x37\xb0\x59\xc5\xe7\x32\x98\x00\x86\xc5\x46\x2f\x97\xd8\x41\x4f\x56\xfe\x2e\x47\x29\x10\x96\xf4\xb8\xdc\x32\x09\xc2\x6d\x29\x0a\x0b\x2d\x45\x84\xcc\x60\x51\x44\x48\x0c\x4b\x9e\xdc\x8e\x22\x60\x50\xab\x7d\xdd\x8e\x22\x20\xdc\xc3\x71\xeb\x54\xa3\x04\x14\xa6\x50\xa8\x04\x24\x02\x99\xaf\xa5\x12\x90\x78\x2f\x92\xbf\x34\xdc\x0f\x62\xe1\x44\xdd\xae\x47\x83\x30\xc3\xec\x36\x90\x0f\x62\x35\x7f\x35\x6d\x9a\x34\xbd\xb7\xff\x36\xb9\x0b\x84\x65\xcd\x6f\x17\x95\xc1\x30\x2f\x55\x95\x1c\x11\x0b\x6f\x56\x91\x1c\x11\x8b\x97\xff\xd6\x33\x06\x61\x3d\x42\x65\x73\x44\x2c\x7c\x5e\x65\x73\x44\x9b\x2d\xfd\xcb\xd3\x36\xee\x3e\x1e\xec\xed\xfc\x1f\x84\xc3\xba\x22\x39\x22\x50\xcc\x5c\x2a\xe2\x88\x58\xfd\x6f\xac\x2a\xdf\x7a\xb3\xa0\x1b\x10\xbc\x0d\xd7\x83\x70\xa2\x76\x1b\x9b\x07\xb1\x98\x8d\xde\x8e\xca\x20\x90\x22\x5e\xb7\x03\xe9\xfd\x0d\xa4\xc4\xd8\x55\xaf\x11\x6f\x1b\xbf\xd3\x79\x05\xb1\x30\x18\xb7\x63\x24\xe8\x16\xf5\xb9\x1d\x23\x41\x2c\x5e\xd4\x5b\xf7\xe0\x76\x9b\x09\xa2\x1a\x4b\x45\x1b\x11\x0e\x31\xb7\xe3\x26\x08\xb4\x17\xd7\xed\xb8\x09\xc2\x99\xd3\xed\xb0\x09\x02\xbd\xa2\x75\x1b\x1f\x07\x81\xe8\xde\x52\xbe\x46\x84\xf5\x74\x6e\x57\x9a\x41\x58\xcc\x48\xf9\x1a\x31\x16\x6e\x97\x22\x34\x22\x5c\xdd\x53\x83\x46\xbc\xdd\xe7\x2f\x8d\x99\x83\x70\xfb\xc5\xad\xb3\xa1\x2e\x8d\x0b\x21\xb7\x83\x32\x08\x03\x0c\xb7\x3e\x03\x08\xd7\xaa\x6e\xe7\xf4\x20\xdc\x36\x78\x3b\xa7\x07\xdd\x64\xc5\xdb\x39\x3d\x88\xaf\xaf\x4e\xe0\x6f\x2b\x98\xa1\x4c\xb2\x6e\x67\xf0\xa0\x39\xbb\xbd\x9d\xc1\x83\xb0\x0e\xd9\x6d\x92\x16\x08\xb7\x20\xde\x8e\xf9\xb7\x6b\xcd\x48\x93\xac\xdb\x29\x3c\x68\xdf\x1a\xcd\xed\xa8\x0f\x62\x31\x57\xbe\x9d\x64\x83\x74\x2d\xef\x36\xb3\x0a\xc4\x62\x04\xbb\x35\x04\x20\x16\x1e\xe7\xed\x5c\x19\xc4\x62\xd2\x76\x3b\x57\x06\xdd\xc2\x83\xb7\xd6\x02\xc4\xc2\x10\xdf\x5a\x0b\xd0\x4c\xec\xb9\x9d\x51\xdf\x6e\x88\x61\xe8\xbe\x35\x16\x60\x85\xef\x85\x33\x6a\xf0\x5e\x25\x1d\x33\xd4\x0d\xda\xc2\x68\xdd\xae\x8c\xdf\xdf\xca\x38\xf3\xa5\x5b\x0b\x02\xc2\x05\xb8\x5b\x73\x01\x86\x75\x84\x6f\xa7\xb9\x60\x98\x78\x73\x6b\x2e\x6e\xcd\x05\x0e\xda\x6d\x98\x19\xc4\x62\xc6\x7e\x3b\x0f\xbd\x95\x06\xf6\x58\x66\x47\xdd\x96\x08\x45\xcd\x65\xdd\xa6\x2e\x83\x58\xb8\x50\xb7\x83\xfe\xed\xa0\x3f\xfd\x4b\x6f\x06\x3b\x5b\xbe\x57\xca\xa9\x29\x88\xc5\x94\xfc\x71\xc1\x1b\x34\x37\x0b\x3f\xe6\x32\x83\x58\x5f\x53\xd9\xc4\x76\x58\xc6\xe9\x47\x6b\x01\x62\x31\x1b\x7b\x8c\x03\x83\x50\xb9\xe2\x71\x82\x09\xc2\x55\xdf\xc7\x09\x26\x08\x37\x95\x3f\x4e\x30\xc1\x30\x4d\xe4\x71\x21\x1b\x84\xd9\xbb\x8f\x71\x60\xd0\x26\xfa\x34\xeb\x31\x10\x0c\x62\x85\x4d\x87\x4d\xdc\x1d\xa6\x37\x8f\x69\x55\x20\x16\xf3\xa7\x47\x9b\x05\x9a\x99\x5c\x8f\x36\xeb\xd1\x66\xf1\x0a\x3f\x46\x78\x41\x2c\x66\x1f\x8f\x9b\x4f\x1e\x4b\xbd\xf0\x0a\x3f\x5a\x31\xb0\xfd\x08\x44\x3c\xee\x74\x04\xdd\x5a\x52\x8f\x11\x5e\x10\x8b\xd9\x81\xca\x53\xeb\x53\x9e\x42\x84\x67\x29\x3d\x25\x86\x4f\xf2\x31\xe8\x0b\x62\x61\x38\x1f\xd7\xa3\x41\x2c\x26\x0c\x8f\x71\x60\x10\x2e\xce\x3d\x86\xc4\xc0\x58\x7c\xba\x8f\x56\xf2\xd1\x4a\x32\xce\x2b\x63\xb5\x3e\x19\xab\xef\x57\xde\x7d\x0a\x96\x99\x16\xf4\x18\x38\x03\x61\x1d\xfb\x47\x2b\xf9\x68\x25\x19\xa1\x14\xb6\x12\xb1\xd2\x63\x79\xa7\x37\xbc\x32\x2c\xee\x63\x90\x4c\xf9\x2b\xab\x57\x3f\x66\x40\x83\x70\xf3\xc6\x63\x00\x17\x84\x19\xb5\x0a\x56\x89\xae\x93\xae\x60\x95\x68\xce\xda\x1f\x03\x62\x8f\xf6\x8d\x4f\xe6\x71\xbb\x38\xe8\xa6\x66\x3f\x46\x1f\x41\xb8\x7c\xaa\x00\x92\xe8\xd6\xab\x7e\xdc\x2d\x02\xe2\xbd\x85\x7f\x34\xcb\xea\x23\x89\x40\x99\x76\x3d\x4e\xb9\x9f\x6f\xca\xed\xb9\x0c\xff\x80\xcd\x52\xcf\x6a\x26\x89\xcd\xa9\xff\x63\xc8\x06\xc4\xc2\x99\x51\x33\x69\x7d\x9a\x49\x0c\xe5\x6a\x26\x89\x50\x6e\xe1\x71\xc0\x7f\x5c\xb2\x64\xce\xf4\x38\xe0\x83\xee\xce\x0e\x95\x95\xc4\x18\xcc\x56\x1e\xb3\x72\x51\x56\x7a\xfb\xca\xf1\x8d\xd9\x80\x30\x41\xeb\xd1\x17\x00\xc3\x95\xba\xc7\x98\x0d\x18\x16\x13\x7b\x8c\xd9\x80\x6e\x71\x18\xd5\x96\x44\x47\x36\x6b\x3d\x7a\x0c\xa0\xa9\xc2\xf1\x18\x67\x01\xc3\x70\x9f\xfa\x4b\xa2\x9b\x3a\xfd\x68\x4e\x9e\xcf\xaf\xf0\xf6\x68\x4f\x40\xdb\x5c\xbf\x55\x81\x49\x34\xcd\xce\xa3\x11\x00\xcd\xb0\xa0\x02\x4c\x62\x98\xf5\xf8\xe8\x44\x80\x70\x9d\x49\xb1\x25\xf1\x9e\x93\xcb\x74\xc0\x07\xa1\xf5\x78\x74\x06\x9e\xcf\x19\xf0\x9e\x99\x0a\x05\xc2\xf0\x87\x02\x4c\xa2\x59\x90\x4b\x01\x26\x31\xbe\x17\x43\x97\x01\xc4\xc2\xcb\x52\x93\x49\x0c\xd7\x9f\x1f\xc3\x1f\x8f\xe1\x8f\xe6\x19\xbd\xd9\x6c\xa2\x59\x78\x6c\x2a\x32\x89\x6e\x1d\xa4\xc7\x88\x08\x88\x85\xab\xf4\xb8\x20\x09\xde\xee\xd3\x0b\x57\x24\xc1\xd0\xb1\x7b\x34\x58\x20\x5c\x7e\x54\xcb\x69\x21\xdc\x14\xeb\x3b\xbe\x1d\x43\xd1\x81\x68\x74\x29\xd2\x24\x3a\x4b\xf1\xa5\x48\x93\xe8\x38\x16\xa5\x48\x93\x78\x7b\x61\xdb\xb0\xed\x75\x82\xd0\x8a\x2a\x15\x99\x44\xac\xf2\xf8\x61\x13\xb2\xd5\xef\xdc\xa3\x54\x64\x12\x41\xa5\x9d\xfa\x11\x37\x11\x81\xec\x5a\xa9\xc8\x24\x82\xef\xa6\x7e\x38\x41\x62\x74\x7f\xd5\xec\x3e\x1a\x4d\x48\x97\x97\x1a\x4d\x22\xd6\xeb\xcf\xd6\xaf\xd9\x55\x2a\xc9\xfc\xbe\xa6\xcd\x26\x16\x54\x37\x2e\xa8\xd9\x7b\x2d\x5d\xd9\x64\xef\x89\xae\x90\x9e\x55\x8a\x36\x89\x3e\xbf\x63\x95\x4d\x58\xa2\xc9\x35\xb2\x08\x2a\x06\x45\x44\xeb\xd7\xbc\x46\x56\x3c\xc9\xd8\xaa\x5f\xf3\x1a\xf1\xd7\x50\xc8\xaa\x5f\xf3\x1a\x49\xe2\x62\xde\x5d\xbf\xee\x35\x22\x6e\x8f\x5b\x54\x0a\x40\x89\x28\xef\x7d\xf7\x11\x91\xea\x45\xaa\x60\xfd\xba\x97\xdd\x29\x23\xbb\xf9\x2b\x7b\xcf\x56\x1f\x72\x4a\xeb\xc7\x1a\xa8\x68\x93\xa5\xb1\xfa\x75\x3b\x86\x72\xeb\x5a\xdc\xe9\xe1\x29\x91\xb6\xa0\xc2\x63\xfd\x86\xa7\x1c\x2c\xa0\xbd\xdf\x4c\xfd\x86\xf7\x10\x77\x10\xd7\xb5\xd4\x92\x12\xc1\x7a\x6d\xfd\x30\xad\xa2\x75\x6f\xeb\xf0\x1e\x62\x5a\xc9\x14\x2c\xa5\xa4\xc4\xd8\x7c\xe7\x86\xfd\x1a\xbe\x14\x1c\x6b\xb3\x5f\xc8\xb4\x52\x99\xb3\x7e\x9b\xfd\x42\xbc\x3e\x7c\x81\x37\x1f\xf7\xb7\xea\x5a\xfe\xcc\xbe\x6e\xe4\xd5\x78\x45\x9b\xb7\x87\x15\xa8\xf4\x8a\x36\x3b\x86\x6d\xad\xc6\x1d\xdb\x7c\xb8\x2c\x40\x61\x5b\xeb\xb7\xf9\x4e\xe3\x81\x76\x5f\xa7\xcd\xe7\x8d\xb9\x25\x95\xa0\x7e\x9b\xdd\x27\xbb\x8c\xb2\x76\xf5\xdb\x7c\xde\xa4\x8d\x55\xe3\xe6\x4f\x1f\xdb\xe4\xc3\x6a\x1c\x6b\xda\x7d\x32\xc9\x50\x1f\xa9\xdf\xb4\xf7\x14\x11\xfd\x2e\x68\x7a\xa7\x59\xb4\x45\x83\xad\x14\xc2\x12\x81\xa8\x62\xfd\xa6\x17\xf4\x22\x37\xaf\x71\x7a\xa7\x27\x25\xb8\x1c\x17\xa6\x5d\x9d\xde\x69\x3a\x11\xbe\x87\xa4\xa0\x0d\x3f\xbf\xf0\xe6\xb3\x08\x96\xf1\xe7\xbd\x51\xf5\x0b\x2f\xce\x0c\x35\xbb\x1d\x5e\x49\xa0\xdf\xe8\xa3\x0f\x9f\x43\x90\x47\x34\xf8\xac\xc3\x2b\x61\x53\x6c\xf9\x15\x84\x57\x62\xf9\x1e\xef\x5d\x78\xd3\x5f\xf4\xf5\x35\x79\x25\x64\xa8\x0d\x5f\xc9\xf0\xa6\xb3\x64\xcc\x3a\x66\x29\xaf\x25\xa2\x3a\x67\x4c\xfb\xf5\xa2\x6f\x3e\xf9\xf4\x0e\xe3\x4f\x57\xe7\x83\x4d\xbb\xca\x9e\xa7\xf4\xbb\x4b\xbb\x9a\x48\x2e\x0e\x7f\xe5\x2b\x83\xd7\xdd\xca\x26\x6f\x7a\x52\xb0\x62\xd1\xaf\xb4\xf7\x2c\x2c\x57\xe7\xd1\xa4\x5d\x65\x17\xee\xe6\xa8\xb1\x7c\x0e\x2c\x2c\x53\x5e\xb0\x7e\xcb\xe7\x80\xb7\xce\xa6\x9e\xfa\x2d\x2f\x68\x79\x41\xf4\x7e\x79\xef\x5f\x4c\x2a\x17\x94\xba\x5b\xa2\xb1\xd3\xb5\x54\xd4\x12\xb1\xca\x5f\x79\x41\x6e\xf2\xfd\xba\xbf\xbc\xf9\x2c\x0d\x96\x03\xd5\xf2\x22\xf1\xf3\x11\x32\xaa\xdf\xb2\xfb\x08\xf5\x53\x1c\xa4\x7e\x65\x5f\x5f\x8c\xe5\x90\x5d\xde\xe9\x2f\x86\xea\x39\xcb\xe3\xbb\x63\x98\xe2\x4c\xa5\xa8\x96\x78\xdb\xb8\xa8\xdd\xeb\xdc\x35\x4d\xc5\x4d\xdb\xbd\xd0\x9d\x2f\xc8\x01\x79\xf7\xc9\xbd\x18\xe1\x5b\xbf\x7b\x55\x64\xa6\x95\x8f\x69\xf7\x0a\x76\x1d\x5e\xae\x60\xf7\x0a\x76\xaf\x80\xae\x1d\x5e\x01\x0e\x7b\xf9\x76\x1e\xde\xc7\xe3\x1b\x5f\x38\xe5\xe1\x55\xb1\xad\x8a\x0a\x3e\xf5\x3b\x3c\xe5\x81\xcc\x8c\x26\xe6\xf4\x60\x08\x5c\x36\xed\xc9\x69\x2f\x4e\xf5\x0a\x38\xd6\xe9\x4b\x7c\xaa\xa2\xc6\x29\x2f\x9f\xd3\xa5\x17\xe6\x5f\x5e\xde\x20\xdc\xe2\x1a\x1c\xff\xf2\x9d\xba\x8c\x59\x7b\xce\xcb\xa3\x5d\xa4\xbe\xd9\xb3\xdb\x6e\xb0\x4a\xb4\x34\x45\xb7\x77\x96\xc9\x14\x75\x63\x4a\x5d\x2a\x11\x64\xdd\xd7\xef\xf6\x92\x50\xe6\x60\xaf\x6e\xfd\x6e\x4f\xc9\x2e\xe2\xcd\xa6\xc7\x3f\x34\xd7\xea\x9b\x2d\x3c\xde\x9f\xc7\xbd\x57\xf4\xe2\xf1\x9a\x1e\xc6\x5f\x47\x9d\xc7\x83\x31\x67\x21\x27\xa0\x54\xa1\x12\x51\xd8\xb5\xd6\x6c\x6a\x36\x35\x9a\xa6\x4d\x6c\x7a\xa2\xaf\x4d\xdb\xdd\x74\x5c\x9d\x41\x34\x8d\x37\x08\xc4\xc3\xaa\xe1\xa5\x8a\xf7\x67\xb4\x69\x38\xc1\x62\xb7\x44\x35\xf2\xa1\xc5\x60\x17\x7a\x35\x62\xa6\x22\x48\xd5\x2c\x25\xa1\xc4\x7b\xb0\x41\x9b\xbd\x1d\xf6\xd6\xa6\xdd\xa6\xdd\x9f\xf9\xa7\x9e\x60\x5c\xb6\xbd\x77\xa8\x11\x23\x15\x6f\x5b\xd0\xe6\x25\x50\x36\xb4\x7b\x38\x4d\x14\x88\xda\xfc\xcb\xc3\x26\x14\x94\x82\x2b\xd8\xbc\x50\x76\xd3\x22\x9c\x50\x4d\xab\x05\xc6\xf8\xfe\xf0\xb6\x89\x3c\x36\x86\xec\x36\xbd\x00\x8a\x5a\x53\x70\xbd\x14\x7b\x12\x9d\x28\x50\x35\xed\x51\xd3\x1e\x6d\x1c\x5e\x7b\xd4\xb4\x47\x4c\x07\xdb\xb4\x5f\xec\x96\x9d\x9d\x01\xba\x69\x57\x5a\x7c\x37\x8d\xce\x86\xe7\x0c\x66\x1b\x7c\xfb\x4d\x63\x02\xa2\x36\x7f\x65\x37\xe2\x7b\xd1\x8a\x36\xdf\x84\xe0\x43\xdc\x6c\xf2\x96\x51\xbd\xb4\x7c\xab\xc2\x5b\x16\xd6\x01\xf0\x57\xde\x1f\xaa\x97\x52\x22\xbb\x9a\x76\xa2\x69\x27\x18\x30\x5b\xda\x0b\x96\xab\x8a\x19\x48\xd3\x74\x80\x8e\x9a\x57\x35\xed\x04\xe8\xd4\xb9\x2e\x45\xa7\x44\x77\xe2\xa5\x28\x94\x88\x9a\x5c\xa4\xe3\x31\xe8\x9b\x0f\xc9\xb1\xb7\x39\xf6\x4e\x6e\xff\xf2\x2e\x12\x50\x2d\x0f\xbf\x7c\x94\x0b\x5b\xf8\x37\xd6\x98\xab\x2d\x9f\xb4\x22\x12\xdd\x87\x58\xbe\xd2\xc5\x16\x0e\x7b\x54\x76\xb2\x98\x5f\x05\xe7\x2a\x3b\xe9\x6e\x1f\x06\x61\x45\xa1\x44\xa7\xb4\x73\xb5\xf2\xf8\xf5\x1d\x9f\x36\xc7\x6f\x10\x35\xf9\xcb\xdd\x67\xb8\x23\x66\xef\x17\xe3\x58\xdd\xac\x19\x84\xd4\x68\x35\x07\x6b\x10\x35\x79\x3a\xbb\x77\x61\xf7\x2e\xf0\x2a\xed\x76\x63\xa7\xca\x81\x6f\xd7\xee\x8d\xd9\xbf\x6e\x78\x82\xc7\x36\x86\x79\xc6\xac\xe6\x30\x0f\x92\xc5\xdc\x6a\x87\x9d\x25\xd9\x78\x22\x3f\x5a\x2a\x4a\x89\xa8\xe0\x9a\x1c\xf9\x15\x94\xaa\xe0\x36\x3a\xf2\x37\xab\xa7\x0e\x9b\xec\x3f\xab\x78\x85\x69\x6f\x87\x9d\x3d\x1c\x79\x7c\xd8\xa7\x0f\x80\x14\x89\xf2\x6e\x9f\x7e\x58\x2f\xc6\xe6\xeb\x75\xfa\x00\x48\x7e\x68\x76\xec\xf4\x94\x2f\x3a\x1a\x28\xa5\x56\x94\x08\xa4\x8f\xaa\x9d\xde\x32\x02\xba\xd4\x92\xa9\x76\xda\x0b\xa5\x93\xfd\xac\x4e\x6f\xd9\x49\xba\xe6\xb2\x13\x3e\xcc\x93\xca\x79\x8e\x01\xa7\x37\xd1\x7d\xb8\x8b\x3f\xbc\xec\x3d\x55\x2c\x9c\x64\x2b\x3b\x25\x5a\xfa\xf6\x5e\x5e\x10\xcb\x86\xe5\xd8\xa4\x79\x03\x2b\x1c\xe4\x2f\x2f\xe8\xc5\x68\x8e\xde\x97\xf7\xf0\xc5\x62\x2f\x5a\x35\x6d\x60\xd3\x06\xfa\xde\x5d\x5e\xd0\x8b\x46\xad\xa7\x6a\x9a\x45\xd0\xa7\x0f\x57\xab\xd8\xb4\x8a\xda\x90\xcb\x0b\x62\x09\xb2\x1c\x00\x34\x94\x20\xa8\x33\x56\xaa\x5a\x89\xf1\xb3\xf7\x1a\x4a\x54\xad\x56\x68\x08\x6e\xaf\x91\xd4\x89\xf4\x09\xdd\x5e\xe3\x8d\xb9\x5b\x1e\xcb\x7e\xdd\x76\x82\x97\xe2\xf1\x16\x5a\xb5\xb5\xfb\x20\xb5\x9d\xed\xe1\x86\xe1\x82\x34\x6d\x27\x78\x7f\x46\x37\x1e\xef\xc5\xe3\xd8\x8a\x41\x55\xc4\x4a\x44\xa5\x67\xf0\x32\x59\x96\x2c\x26\x47\x5d\xbf\x1d\x2c\x36\xc0\x95\xea\x54\xa2\x4d\xf4\x6c\x4b\xe1\x29\xb1\xd8\xee\x56\xaa\x4c\x89\x81\x10\x60\xa9\x32\x25\x1a\x75\xf6\x4a\x95\x29\xb1\x8c\x0b\x74\x1d\x77\x10\xc5\xdd\xe8\x7a\xe9\x20\xd0\x83\xa8\xae\x59\x07\x51\x59\x34\x79\x78\xdd\x68\x26\x12\x9d\xf4\x5f\xf1\xf6\x95\x53\x12\x30\x16\x89\x38\x43\xa9\xf9\x24\xa2\x92\xee\x13\x1d\x16\xef\x5f\x76\xda\xec\xc6\x20\xd9\x88\xbb\xa8\x4c\x53\x7d\x32\x4d\xbc\xfd\xca\x34\x89\xf7\x2f\x07\x6d\x9e\x73\xb0\x41\xc5\x9b\xa1\xa5\x07\x8b\xed\x80\xd5\xf5\x74\xc1\x62\x4f\x5f\x75\x22\xc6\x22\xfc\x94\x14\x78\x12\x2b\xec\xff\x66\x67\xb7\xaf\xb3\x74\x43\x57\x17\x8c\xd6\xfc\x4b\xef\x19\x51\xe4\xe2\xeb\x55\x06\x4a\xbc\x7f\x49\xcf\x9c\x5b\x80\x60\x9b\x41\x75\xa7\x16\x5d\xef\x77\x79\xfc\xc3\x26\xbe\x2f\xdc\xf2\xee\x0c\x01\x2c\x36\x20\x96\xfa\x51\xf5\xe9\x47\x21\x05\x5c\x7d\x7a\x01\xac\xbf\xb2\x77\xab\xfa\xf4\x99\x4f\x94\x55\x18\x0b\xfa\xb4\x67\x04\xa0\x6b\x71\x30\x5d\xd6\x6e\x1d\x58\x8c\x9b\x2a\x53\x22\x8a\xd9\x40\x77\x22\xd1\xad\x0a\xf8\xf3\x0f\xed\x98\x5e\x2c\x71\x8c\xae\x17\xdb\x95\x73\x46\x7d\xb8\x54\x9e\x12\x83\xb2\xee\xa5\xf2\x94\x08\xa4\xa1\x4a\xe5\x29\xd1\xd9\xbb\x55\x5d\x3f\xb5\xeb\xa7\x62\xbc\x14\x90\x12\x1d\xe9\xcd\x52\xfb\xa9\xd0\x7e\x5a\xec\xfb\x2b\x75\x9e\xc4\xc8\xdf\x9f\x6b\x7e\x55\xd7\xeb\x03\x2d\x3d\x95\xfe\x1c\xe8\xc3\x87\xb3\x7c\xd2\xe4\xb1\x7c\x9f\xa8\xce\x1b\x58\x54\x51\xa9\xae\x0b\x06\x3a\x49\xbb\xd5\xcb\x63\xb1\x86\x5a\xde\x02\xbd\x32\x10\x3a\xa8\xbd\xbc\x05\xa4\x13\x57\x79\x2c\x0f\xcf\x56\x24\x12\x4f\xaa\x97\xcf\x06\x85\x48\x67\x3f\x5d\xcf\x0d\x44\x31\x02\x77\xe7\x07\x20\x9c\x56\xf6\xdd\x1b\xe5\xf6\x21\xcc\xb7\x5a\x51\xa2\xa7\xdf\xd9\x61\x57\x59\x1c\x1d\xdf\xeb\x76\xf8\x97\x04\xc6\xa9\x7f\x5f\xca\x3b\x89\x40\x60\xa8\xfa\xe9\x73\xb6\x3a\x78\xb7\x67\xda\xbf\xee\xa6\x9c\xee\x03\xd3\x8e\x81\x28\x66\x33\x5d\x3b\x06\x96\x73\x1e\x85\x9b\xc4\x08\x07\xa7\xcb\xae\x5d\x24\xdf\x87\x4d\xde\xc5\x0b\x4b\x80\xc9\x55\xb8\x49\x2c\xb6\x06\x95\xc2\x4d\x62\x19\x1c\x54\x7f\x49\xb4\x89\xd8\x6e\xf5\xdb\x5e\xdc\xf6\x82\x8e\x69\x69\x40\xa7\x84\x60\x29\xad\x24\x16\x7b\xc8\xaa\xdf\x1e\xff\xf6\x66\x70\x91\xb7\x4f\xe9\x66\xe1\xe0\x3b\xbc\x37\x1b\xc7\x0d\xed\xcd\xea\x8f\x17\xf9\x62\x50\xc3\xae\x14\x60\x12\xfd\x7b\x09\x1e\x5f\x02\xf2\xf6\xc2\x6f\xf6\xf1\x8c\x2f\x96\xee\x86\x02\x4c\x22\x7f\xd8\x6f\x05\x98\xc4\x8a\xef\x8c\xbe\x17\x26\xf7\xd9\x2f\xed\x13\x58\xec\x74\x2c\xf5\x97\xc4\x22\x09\xbc\x14\x5b\xaa\x4f\x6c\x09\xfd\x81\x52\x5a\x49\x74\x12\x43\x6a\x68\x9f\xc0\x7b\x5f\xfd\xd9\x63\xdb\x43\xcf\xf8\x99\x06\x0a\x74\xd6\x25\x6b\x68\x7a\x86\x7b\x7a\x59\xd1\x28\x84\x96\x3e\x74\x6a\x53\xd4\xd0\xa3\x04\xf9\x63\x9c\x18\x86\x83\x41\xfe\x70\xda\x86\xe1\x60\xb0\xd8\x5a\x58\x43\x3b\x06\x16\x3b\x2e\x6b\x18\x0e\x1e\xed\x7b\x09\xf8\x99\xf1\x60\xd0\x29\x0f\x57\xc3\x78\x30\x58\xec\x64\xad\x61\x3c\x18\xe4\x0f\xdf\x51\xd5\x27\x91\x3f\xa6\xc2\xa3\x7b\x49\xdd\xb7\x73\xd1\xe4\x2d\xeb\x68\x75\x0d\x8f\x95\x36\x69\x2c\x86\x07\xf3\xc2\x3b\x7e\xbf\xf7\x87\x0d\x36\xa2\xb3\x88\x55\x43\x03\x0b\x36\x94\x05\x6b\x18\x5b\x06\xf9\x63\x76\xaf\xaa\x94\xe8\xe4\xba\x97\x12\x52\x62\xfb\x79\x45\xc6\x96\x41\xfe\x7e\x36\x79\x5f\x87\xf7\x95\x33\x0e\x3b\xf1\x22\x7f\xb8\x30\x43\x8b\x08\xf2\xe7\x7b\xa1\xf9\x1b\x9f\xf9\x23\xb8\x31\x34\x7f\x60\xa1\xd9\x50\x2a\x41\x89\xf7\x95\xf2\x68\x9e\x60\x43\xa5\x8c\x0f\x7a\xe8\x34\x0f\x57\x56\xb1\xdf\xca\x3e\x89\xf7\x04\xdc\x6c\x5d\x64\x30\x90\x99\xa9\xa1\x8b\x0c\xf2\xc7\xa4\x70\x68\xff\xc0\x72\x58\x19\x5a\x36\xd0\xf5\xe6\x87\x21\x5b\x90\x3f\x6f\xbf\x96\x0d\xe4\xcf\x57\x51\xcf\x17\xbc\xbd\xe0\x06\xe9\xe7\x82\xb7\x8d\x6e\xe8\xe8\x82\x46\xda\x5e\x0d\x23\xa9\xa0\x4d\x12\x8e\x6b\x18\x4a\x05\xf9\x63\x4d\x66\xa4\x27\x4d\x46\x24\xa6\x8e\x2a\x52\x89\xc6\x5a\x57\xa9\x35\x25\xf2\x87\xc3\x35\xb4\x80\xa0\x4f\xdf\xcf\xe5\xaf\x96\xd3\x74\x9a\xca\x5b\x56\x3c\x3a\x66\x5e\x8a\x38\x89\xfe\xfb\x7e\xe5\x2d\x7b\xd1\x97\x37\x43\x1b\x34\xb4\x41\xcc\x5f\x87\x36\x68\x18\x3d\xec\xbe\x8c\xba\x9a\x60\xb1\xf9\xb5\x86\x46\x08\xb4\x6d\xfc\x79\xa1\xb9\x54\x6f\xaa\x4f\xbd\xc9\x00\xcc\xd0\xed\x1c\xaf\xdd\x4a\x54\xf0\x6b\xec\x5e\x31\xa5\xc6\x7f\xde\xf7\xc3\xbb\x77\xf8\xc8\xe8\xa5\x66\x0b\x24\x62\xa5\x35\x74\x14\xc1\x7b\x7c\xee\xa8\x61\x43\xf0\xb6\xf1\x2c\x4e\xbf\xef\x93\xef\x9b\x29\xd7\xd0\x53\x04\x8b\x1d\xc6\x35\x74\x0b\x41\x3a\x41\x51\xbe\x49\xbc\x07\xe3\x9e\x6a\xf0\x40\x6a\xc4\x87\x8e\x1b\x18\xcd\xdb\xac\xe3\x36\x5e\x53\x96\xa8\x9b\x95\x62\x4d\x22\xd9\x75\x51\x43\x67\x0b\xa4\x01\xcd\xa1\xb3\x35\x74\xb6\x98\xec\x0f\x3d\x2b\xd0\xd2\x2b\x37\x04\x09\xde\x8e\x71\x49\x1a\x3c\x90\x54\x93\xaa\x71\xfb\xc6\xdd\x8c\x0c\xcc\x82\x87\x61\x49\x90\x94\x4d\xab\xa1\x91\x02\x8b\x14\xd3\x1a\x5a\xa4\xf1\x7c\x17\x4e\xcf\x0c\x38\x8e\xe7\x7b\xf1\xdf\x2b\x57\x4f\x49\x24\xe2\xc9\xa5\x78\x92\x48\x14\x83\x4b\x75\xa3\xfa\xd4\x8d\x5c\x05\xda\x34\x23\x20\x11\xfe\x2d\xc5\x8d\x44\xa2\x40\x5d\x9b\x7e\x0e\x48\x54\xbc\x6b\xd3\xb0\x80\x4e\xa5\xd8\xda\x34\x2c\x60\x18\x96\xdc\x34\x2c\x9b\x86\x05\x5b\xb0\x69\x0b\x40\xba\xea\xb7\x39\x30\x83\x64\xff\x44\xa9\x77\x24\x96\x16\x7b\xd3\xcb\xd9\x94\xa7\x60\x97\x53\xa9\x81\x24\xd2\x77\x76\x73\x3d\x0f\x24\x9a\xbb\xa5\x2c\x92\xe8\xae\xe8\x6e\x8e\xcc\x9b\x23\x33\xdf\xda\xa6\x4b\x03\xde\xe3\xd3\xe6\xea\x1d\x48\x54\x66\x6b\x73\xb4\xde\x1c\xad\x79\xb1\x37\xfd\x17\xb0\x48\xfb\x2d\xd5\x93\xea\x53\x4f\x62\xee\xbb\xe9\x4b\x6c\xaa\xef\xe1\x25\x6c\x8e\xc2\x20\x11\x45\xad\xcd\xd5\x35\x30\x48\x99\xab\xcd\xa5\xb4\x4d\x3d\xbe\x8e\xfd\xd9\xf4\x2f\x40\x22\x0b\x57\x0a\x2a\x89\x74\xf5\x7c\xd3\xbf\x00\xe9\x32\xef\xe6\x28\xbc\x39\x0a\x7b\x7c\xdd\x0b\x90\x64\x10\xd7\xe6\x20\x0c\xf2\xe7\x9b\x12\x1e\x3e\x1c\x9e\xec\xbf\xa3\x2b\xc8\x9f\x77\xcc\x00\x24\x78\x7f\xc6\x95\x3b\xe2\x82\xfc\xd9\x7f\x7d\x0e\x90\xbf\xef\x60\xa7\x4d\x0c\xc2\x78\x10\x9b\x0b\x4e\x20\x7f\xdf\xb1\xbc\xa4\xe4\x92\x98\x83\x6f\xae\x41\x81\xd4\x6e\x6d\x2e\x38\x81\x44\x68\xbf\x14\xc0\x10\xc3\x71\x65\x1a\xe0\x04\x6f\x5f\xdf\x5b\xa6\x02\x86\x18\xa4\xa4\xd6\x34\xe8\x09\x12\x51\xb0\x9a\xba\x36\xa0\xb3\x61\xb0\x14\xc5\x10\x89\x4c\x58\x4d\xe3\xa0\x60\x50\xb1\xac\x14\xc5\x10\x89\x5c\x56\x4d\x43\xa3\xa0\x21\xaa\x53\xea\x64\x88\xe6\xb0\xa2\x26\x86\x68\xd3\xae\x1a\xe7\x04\x8b\xcd\xf9\x35\x75\x93\x40\xa3\xf2\x69\xa9\x9c\x21\x92\xf2\xc3\x35\x35\x51\x20\x5d\xad\x99\xba\x49\x28\x67\x24\xb2\x4b\x35\x77\xef\xc4\xce\xc3\xc5\x59\x98\x06\x43\xa7\x8b\x59\x3c\xa2\xe9\x5a\x16\x68\xd4\xfe\x2b\xc5\x34\x44\x77\xb4\x98\xd4\x62\x10\xdf\xd4\x57\x7d\x0d\xf1\xde\x7c\x0f\xe6\x3d\xdc\xbd\x87\x1e\xcc\x8e\xed\x0c\x94\xcc\x00\xd5\xdc\x10\xef\x5f\xda\x33\x6f\xe2\xfe\xbd\x9d\xfe\xee\xb2\x8d\xb7\x87\xc9\xf5\x34\x66\x3a\x3f\x81\x5e\xde\xbb\x69\xd0\x14\x34\xf2\x68\x6a\x1a\x33\x9d\xc7\x37\xd4\xd0\x11\x0d\xdf\xd4\xf0\xa5\x7f\xe9\x49\x0f\xbe\x38\x26\xc4\xd3\x08\x29\xc8\x5f\xfe\x39\x3b\xbb\xe6\x61\x2f\x0f\xc7\x73\x5f\x2f\xf2\x66\x45\xa2\xdd\x51\x53\xe3\x39\x35\x9e\x4c\xbb\xa6\x31\x55\xd0\x9a\x4f\x56\x4b\x09\x92\x6d\x67\x35\x8d\x96\x82\x44\xd8\xa0\xd4\xee\x10\xf9\xf3\x8a\x2f\xaf\xf8\xe2\x2d\xc1\xf8\x28\xca\x21\x12\xdd\x81\x9a\x9a\x53\x90\x88\x07\xd4\xd4\x9c\x82\xe1\x7a\xcf\x34\xe8\x09\xde\x2b\xf2\x60\xf6\xe2\xa2\x17\x0c\x91\x53\x7b\x0a\x92\x72\xff\x35\xb5\xa7\x20\xa9\xd9\x5f\xea\x75\x88\x44\x00\xa0\xc2\xf5\x2f\x30\xa8\x53\x51\xa1\xb7\x02\xde\x53\xbe\x3d\x0b\x0d\x4d\x68\x68\x88\x0f\x84\x4e\x01\xc8\x1f\x51\xab\x20\x27\x53\x74\xf3\x52\x42\x0f\x00\xf5\x89\xa4\x20\x7c\x85\xd3\x7d\x30\xa8\x36\x50\xe1\x44\x1e\x74\x92\xa7\x4b\x41\x0a\xd1\xc8\xe7\xad\x30\x28\x06\x3a\x79\xad\x15\xda\x14\xf0\xf6\x95\x83\x99\x12\x02\x92\x82\xed\x15\xda\x19\x30\xd8\xaa\x59\xe1\xd4\x1e\x24\x95\x7e\x2a\x5c\x22\x03\xf9\x63\x32\xab\x06\x86\xe8\xda\xef\x30\xda\x05\x92\xe2\xeb\xa5\x06\x86\x68\x26\x76\x84\x8b\x5f\xe0\xed\x18\xc7\xd7\xa8\x80\x41\xa1\xc4\x52\xc9\x42\x24\xc5\x31\x2a\xa6\xa7\x9c\xbc\x50\x84\x37\x14\xb7\x10\xc9\x96\x8a\x52\xdc\x42\xa4\xab\xcb\xa1\xe9\x01\xcd\xf8\xaf\x7a\x17\xa2\x53\x39\xb4\xc2\x60\x17\xe8\x94\xfb\xaf\xd0\x73\x08\x3d\x07\x86\x80\x30\xfe\x05\xd2\xf5\xce\xd0\x8c\x81\x81\x42\x70\x29\x8a\x21\x92\x0a\xdb\x15\x5a\x31\xd0\x0c\x4a\x85\x56\x0c\xa4\xa1\xfc\x70\x19\x0d\x0c\xe7\x2d\xa1\x5d\x03\xc3\x50\x63\x98\x81\x01\x86\xab\xa9\xa1\xe1\x09\x4d\x1d\x0e\x41\x68\x78\xc0\x70\x79\x4f\x79\x0d\xd1\x4c\x6b\x50\x4a\x43\x0c\x92\xe6\x2a\xcc\x87\x08\xf3\x21\xf4\xee\xc2\x98\x1a\x68\xae\x03\xc5\xb2\x17\x14\xdd\x2b\x1f\xa4\x61\x36\xd0\xd2\xdb\xaa\x2d\x02\x9d\xc4\xd6\x52\x96\x43\x84\x33\x0d\x65\x39\x44\x36\xaf\xc8\x75\x38\xd0\x90\x94\xab\xd0\x62\x81\x4e\xdd\xca\x0a\x0d\x0f\x68\x94\xb9\x29\x75\x3a\x44\x36\xdf\x26\x7d\x23\x90\xd4\xcd\x2e\xa5\x3b\x44\x52\x0b\xbc\xc2\x6c\x0b\xd0\x96\x37\x4c\x77\x09\x74\xaa\x62\x56\x18\xb2\x03\x1d\x0d\x85\x8a\xb2\xf7\x45\x18\xc3\x2f\x5e\xbb\x06\x9a\xa1\x77\x85\x41\xc4\x66\xe4\x47\x61\x10\xf1\xde\x69\x3a\xa6\x79\x02\x49\xa1\xee\x0a\xcd\x53\x98\xa4\xc1\x3c\x5e\xad\x10\xf1\xfe\x25\xdd\x70\x2d\x10\x64\xb3\x67\xae\xe8\x81\x15\xbe\x3c\xba\x5b\x20\x75\x60\x42\x83\x15\x87\x2f\xa2\xbf\xb2\x67\x2f\x92\xb2\xd0\xa5\xa4\x88\xc8\xe6\xdd\x37\xe2\x08\x36\xfd\xb4\x70\x8d\x2f\xb0\x60\x14\x5c\xae\xd0\x82\x81\x6e\x60\x26\xb4\x60\x60\x6c\x76\xd5\x25\x3e\xd0\xd9\x09\x5b\xa1\x7f\x17\xfa\x77\xac\x62\x29\x62\x22\x06\xc9\xda\x15\xa7\xcf\x1b\xd5\xf9\xe1\x35\xea\xf1\x81\x8e\x4a\x6d\xa9\x6b\x22\x9a\x89\x28\xea\x9a\x88\x74\x91\x40\x5d\x13\x91\x64\xad\x56\x68\xda\x40\xd7\x61\x56\xea\x44\x64\x73\x40\x71\x21\x10\x64\x6b\x7f\x23\x09\x2c\x74\x24\x41\x6f\x3e\x7a\x83\xa9\x61\xbd\x5e\x8a\x66\x57\x68\x20\x41\x36\x9f\xbd\x06\x12\x04\xb5\x44\x4a\x0d\x15\xb1\xa1\x40\x5f\x6a\xa8\x88\x1e\xbe\x81\xda\x47\x90\xed\x6b\xb2\xdf\x97\xcb\xc0\xde\x2a\x0d\x24\x18\xa6\x0a\x84\xab\x7b\x60\x74\xe6\x25\xa1\x73\x09\x9a\x21\x63\xa5\x56\xc4\x7b\x30\x4e\x60\x84\x15\xf4\x70\x60\xba\xed\xd9\x8b\xde\x99\x78\x84\xcb\x7b\x60\x4c\x4d\xd3\xe3\xfd\xb1\xe0\x22\xfb\x4f\x2a\x0c\xc4\x82\xa6\x73\x16\x8f\x37\xe3\xa1\x06\x94\xd7\xe4\x22\x20\x18\x66\x7d\x29\xc9\x22\x92\x2d\x23\xa5\xfc\x8a\x18\xd4\x73\x2c\x75\x55\x44\x1f\x78\x4a\xea\xaa\x88\xb7\x17\xb6\x6d\xb6\xf1\x6d\x74\xff\x32\x6c\xe2\xdb\x20\xea\x90\xfa\xc6\xa0\x53\xa0\xbc\xd4\x5a\x11\x49\xd1\x80\x52\x6b\x45\xbc\xc7\xdf\x68\xdb\x6d\x63\x07\x07\x8b\x6f\x0a\xab\x88\x6c\x5f\xd3\x6d\x13\x6f\x1c\xf7\x3f\xf5\xbd\x41\x52\x79\xb5\x94\x5f\x11\x49\x45\x88\x52\x6b\x45\xa4\x13\x88\x34\xc5\x17\x24\x65\x37\x4b\x2d\x15\x91\x4e\x59\xd4\x4d\x11\x9d\x6d\x8e\xa5\x6e\x8a\x68\xc3\x8b\xec\xde\x9d\xce\xdd\x21\x4c\x90\x86\x4e\xc1\x70\x89\x37\x9d\x11\x81\xfc\xee\xbe\x79\x43\x20\xa9\x6c\x59\xe9\x8c\x28\x0d\x80\xe2\x5a\xa6\x4b\x93\x60\x51\x22\xab\x52\xcf\x1b\x58\xae\xb0\xd2\x25\x47\x90\x54\xb1\x2c\xe5\x56\xc4\xa2\x02\x57\xa5\xb9\x45\xc8\xad\x24\xe5\x29\x2b\x9d\x23\x81\x6c\xbe\x02\xae\x2f\x82\x45\x21\xad\x4a\xa7\x4d\x20\xbf\x33\x6e\xde\xc2\x8d\x5b\xc8\x30\x91\xba\xe7\x20\x29\xad\x55\x2a\xb7\x88\xa4\x88\x52\xa5\x33\x29\xb0\x28\x3b\x55\xe9\x4c\x0a\x2c\xaa\x8c\x55\xea\xd7\xa7\x6b\x84\x7c\x46\xa9\x5f\x0f\x3a\xe5\x23\x4b\xe5\x16\xb1\x28\xd3\x55\x69\x70\x15\x8c\xe5\x05\xb9\x92\x08\xba\xab\x31\xa9\xa7\x0f\xde\xd7\xd0\x36\x1f\x37\x53\x30\x6a\x34\x55\x3a\xdf\x02\x03\x55\xbd\x52\xe0\x45\x64\x63\x30\x4a\x13\x97\x40\x6e\xbe\x73\x4e\xc1\xc0\x58\x3f\x9b\xbc\xad\x4a\x8e\x51\xf4\xab\xd2\x39\x18\x48\xd4\xcb\x4b\x69\x18\x91\xcd\x57\xc0\x2c\x58\x90\xa6\xad\xa7\xa9\x4c\xa0\x51\xa1\xa3\xd2\x50\x02\x48\xe3\xd1\x69\x38\x17\x74\x47\x19\x05\x64\xc4\xdb\x0b\x4e\xe9\xea\x25\x48\x23\xf1\xe9\xbc\x2c\xf3\xeb\x2c\xdd\x48\x3b\xfb\xa2\xb1\x69\xbf\x32\xed\x46\xf2\x78\x71\xfc\xd2\x29\x17\x48\xea\x2f\x54\x1a\x83\x00\x49\x2d\x8a\x4a\x43\x09\x20\x29\xf9\x50\xe9\x2c\x0c\x34\x33\xbf\xd3\x49\x18\x48\xca\x6a\x54\x3a\x09\x03\x49\x99\x83\x4a\xa7\x57\x20\x29\x56\x50\x8a\xd1\x88\xd6\x7c\x55\x9c\x4b\x65\xf1\xdc\x98\x38\xa5\x53\x22\xd0\x91\x82\xaa\x34\x82\x0c\xde\xeb\xe6\x60\x4e\x80\x40\xb2\xff\xbf\xd2\xd9\x0e\x68\xe1\x60\xa1\x17\x9f\x7a\xf1\xdd\x8f\xde\x19\x10\xc8\xe6\x8b\xa7\x83\x0e\xf2\xeb\x99\xb3\x1d\x90\x7a\x9c\xea\xdf\x88\x48\x7b\xa6\xdf\x0d\x46\x38\x8a\xb9\x26\x9a\xce\x59\xb0\xa8\x6a\xdd\x54\xba\x7f\xa8\xaf\xbf\xe1\x2a\xa7\x3e\x30\x48\x76\xbf\x97\xf2\x35\x22\xd9\x2b\x5e\x69\x00\x19\xa4\x6b\x6a\xca\xd7\x88\x64\xd3\x72\xa5\x4b\xa1\xa0\x99\x17\x9a\x5a\xea\xb4\x36\x4a\xc7\x49\x4d\xed\x72\x6a\x97\xb1\x74\xa9\x5d\xce\xcf\x2e\xe3\xb8\x2a\x4c\x23\xb2\x69\x8a\x6e\x7f\x86\x46\x59\xf7\x25\xd1\x46\x82\x6c\x7e\xc9\x2e\x56\x82\x36\x86\xbf\xf2\xed\xfa\x72\x51\x97\x3f\xf3\x66\x3d\xbc\x5e\xbe\xe3\x5a\x57\x90\xcd\xaf\x43\xbb\xa9\x54\x8d\xa9\x21\xe9\xd2\x24\x68\xd4\x28\x2b\xa5\x6a\xc4\xa0\x80\x6f\x2d\x4d\xe9\xb2\xc0\x31\xc3\x82\xe2\x35\xa2\xa3\x67\x5d\x6a\xd7\x88\x6e\x94\x59\xed\x1a\xd1\x8d\x5d\x2d\x2d\x29\xe8\x68\x46\xd4\xd2\x6a\x82\xf7\x8a\x3c\xd8\x69\x1b\x37\x76\x79\xca\xdb\xa6\xef\xc6\x7a\xb4\xc7\x36\xec\x26\x2f\xf9\x32\x64\x0d\x06\xfb\xe6\x4a\x39\x1b\xd1\xa8\xa3\x5d\xcb\x8c\x5b\x30\x1c\xe9\x96\xd6\x15\x0c\x9d\x9b\x65\xc6\x2d\xe8\x94\x7d\xa9\x65\x60\x1b\x0c\xb3\x40\x96\x51\x6c\xd0\xd8\x87\x5d\x4b\xeb\xba\xda\xd7\xd7\xf7\x89\x28\x70\x23\x92\x0d\x71\xa5\x9a\x8d\x78\x7f\x46\xff\xb5\xc2\x4b\x2b\x8c\xdb\xb5\x0c\x80\x83\x36\xbb\x27\x75\x69\x12\x0c\xaa\x19\xd6\x32\xa3\x17\x0c\x73\x70\x97\x96\x19\xa4\x2b\x63\xcb\x38\x39\x68\x3a\x2e\xcb\x6c\x20\x90\xcd\x5b\xa6\x65\x06\xc9\x8e\xd2\x52\x2e\x47\xb4\xcd\xa8\x97\x7a\x39\x62\xa0\xd1\x56\xcb\x6c\x20\x30\xdc\x8a\xb0\xb4\xd6\x20\xd9\x5e\x57\xcb\xad\x30\xcb\x0a\xff\x9d\x11\x5d\xc1\x1c\x91\xcd\xd7\xc0\x90\x06\xc8\xe6\x6d\x34\xa4\xa1\x86\xce\xf2\x5e\x68\x88\x17\x1b\x53\x90\x76\xad\xa5\x21\x06\xd9\x7c\x57\xb4\xba\x68\xe8\xbc\xa7\xe4\xce\xba\xa6\xb9\x2c\xa0\xc6\x87\xb9\xb4\xc4\xa0\x2d\x5f\x50\xd7\x34\x97\x6b\x9a\xe5\xc1\xbc\x3f\x06\x43\xd2\x5f\x79\x7f\xa6\xe3\xc3\xf7\x97\xbe\x1a\xc4\xe1\xd3\x77\xca\x90\x09\x18\xce\xfe\xd4\xd2\x11\x9b\xeb\xc0\xcb\x00\x06\x58\x94\x3e\xad\x65\xb6\x0e\x68\x26\xb4\xab\x7e\x23\xd2\x7d\x6d\xcb\x00\xc6\xb2\x02\x43\xf7\x91\xbb\x61\x64\x69\x16\xbd\x65\x9a\x45\x90\x6e\x4f\x58\x5a\x45\x90\xee\x62\x58\x0e\xe8\x60\xa0\x16\x55\x0a\xbc\x88\x74\x0f\xc3\xd2\x55\x05\xe9\x16\x06\x95\x5b\x44\xba\x9f\x60\xe9\x84\x2e\x9d\x50\xaf\x48\x8f\x13\xbc\x7d\xf5\x2f\x3d\xfe\xb7\x5a\xf8\xfd\xa9\x27\x38\x5c\x7a\xf1\x6f\x1d\xec\x41\x9a\x91\xbf\xf4\x30\x41\xba\x55\x40\x09\x16\x91\x66\xcc\x2f\xc7\x7f\xf0\x1e\x8c\x9f\xe9\x71\x81\xb1\x61\xcb\x14\x48\x11\xf1\xfd\xa5\x29\x2d\xaa\xa1\x20\xa2\x56\xcb\x8c\x16\xd0\x06\x65\x07\x6a\xe9\x84\x81\x66\x4e\xc5\x32\x4a\xb9\x2c\x5e\x3f\xec\xad\x2e\x17\x48\x97\xc3\x96\xee\x15\x48\xa3\x43\x4b\xcb\x01\xb6\x6f\x80\xd0\x72\x80\x39\x86\xa7\xb4\x67\x37\xdb\x6c\x70\x1f\x54\x5b\x11\xcd\x54\x5f\xa5\x55\x44\x73\x5e\xa5\x42\x8a\xe8\x2e\xcd\xaa\x90\x22\x86\x6b\xca\x2a\xa4\x88\x8e\xd2\x60\x95\xe3\x3f\xc8\x77\xac\xf9\xa3\x75\x2e\xcd\x03\x18\x94\x2f\xa9\xd2\x85\x02\xe9\x06\x01\xc5\x52\xc4\x30\xee\xa8\x58\x8a\x68\x8e\xcb\x8a\xa5\x88\xee\xee\x31\xc5\x52\x44\x1a\x68\x56\x2c\x45\xb4\xc1\x6b\x5f\xae\x54\x82\x34\x59\x5f\xfd\x14\x91\xe6\xea\xab\x95\x52\x08\xa3\xa4\x79\xe4\x65\xd6\x0a\x48\x73\xae\xcb\xf1\x1c\xa4\xa9\xfa\xe5\xd8\x0d\xd2\x34\x6f\xe5\x53\xc4\xa2\x90\x5c\x95\x61\xe6\x32\xbb\x73\xfa\x87\x5e\xe3\x8b\x44\x15\xb7\xca\x30\x33\x48\x1f\x60\xe9\x54\x95\xc9\x9d\xee\x61\x2b\xc7\x56\xa4\x52\xd2\x94\xeb\x32\xa8\x0c\xde\x9f\xd1\x59\xbd\x23\x90\x66\xd7\x96\xcb\x92\x20\x8d\x6b\x96\x4e\x0e\x48\xe3\xad\xe5\x08\x0c\xd2\x49\x83\x82\x2a\x22\xcd\xbd\x54\x50\x45\xbc\xa7\xe4\x02\x0c\x21\x83\x34\x90\x56\xfa\x42\xc5\x82\xa6\x29\xa6\xe5\x70\x0b\xd2\x44\xcb\x72\xb8\x05\x2d\x3d\xa5\x1e\x0d\x78\x8f\xcf\x39\x8d\x17\xab\xc5\x32\x87\x8f\xdc\xa5\x2b\x95\x3c\x06\xce\xa9\x4a\x1e\x85\x6c\x47\x9a\x30\x59\x86\x0b\x41\xff\x7d\xbf\xf2\x6e\xbf\x58\x46\xf0\xcb\x45\x29\x90\x86\x49\xca\xf1\x10\xb4\x8d\x21\x58\x41\x0e\x31\xa8\x8c\x55\xe5\x04\xb7\x76\x1e\x09\x73\x8b\x72\x3c\x04\x6f\x5f\xe9\x85\x93\x5e\xd0\xcd\x1a\x2f\x63\x77\x60\x18\x1a\x2c\xd7\x95\xca\xf1\x70\xf8\x7e\x1a\x83\x03\x69\x0a\x58\x19\x70\x03\x03\x0d\xe5\x2a\x87\x43\xd0\xa9\x69\x51\x65\xc0\x0d\x34\x43\x16\xe5\x08\x09\x1a\x55\xf2\xaa\x1c\x21\x41\x4b\x7b\x61\xc0\x0d\xb4\x39\xfc\x24\x4c\xb1\x00\xdd\x9c\xcb\x32\x32\x06\xd2\xac\x21\xb5\x42\x44\x4b\xaf\xd2\xc0\x18\x68\xc3\xaf\xd7\x65\x22\x90\xe6\x33\x95\x63\x32\x48\x53\xc7\xca\x44\x0c\x90\xe6\x71\x95\x63\x32\x48\x73\xda\xca\xf1\x17\xa4\x49\x11\xe5\x28\x5a\xb7\x4f\x84\x4e\x18\xa4\xaa\xc7\x5f\x71\x41\x66\x58\x80\x34\x0f\xa6\x9c\x32\x83\x74\x7c\x2c\xa7\xcc\xa0\x6f\xbc\x29\x8a\x82\x88\x34\x99\x45\x4d\x10\xf1\xde\xb0\x46\xdb\xb4\x8d\x17\x0a\x87\x5b\x01\x10\xd1\x36\x67\x63\x6a\x7b\x88\x66\xac\x5c\x6d\x0f\x91\x26\xb8\xa8\xe3\x21\xfa\xf2\x57\x8e\x77\xea\x78\xb8\x7f\x5d\xcd\x0e\xf1\x76\xa3\xd3\x56\xb6\xf1\x91\x63\xb2\x76\xc7\x2d\xd0\x54\x6c\xaf\xdd\x81\x6b\x37\x6b\x6e\x30\x26\xed\x8e\x5c\xa0\x53\x73\xa5\x76\xe7\xa6\x20\x4d\x1a\x51\x69\xa3\xf6\x7e\xfb\x97\x74\xc4\x89\x28\x18\x0e\xf5\x8a\x68\x88\xf7\x67\x49\x9b\x27\x65\x26\x6a\x98\x70\x77\x26\xba\x9b\x97\x6e\x5e\xde\xee\xec\x71\x77\xd0\xc3\x0f\xdf\x1d\xf4\x40\x9a\x7e\xb0\x3b\xe6\xed\x8e\x79\x18\x8e\xdd\x88\x10\x48\xb3\x0f\x76\x87\xc1\xdd\x61\x10\xab\xb8\x9b\x37\x07\xde\x53\x72\x51\x8e\x70\x20\x5d\x54\x56\x6d\x43\x2c\x2a\x91\x97\x32\x1a\x22\xa9\x9a\x5c\x6a\x66\x88\x74\x1d\x7b\x37\xb2\xb3\x2b\xdd\x88\xd8\x54\xed\x0e\x7a\x20\x9d\x5c\xef\x4e\x1e\x41\xa3\x5a\x74\xa9\xb6\x21\xd2\x65\xec\xdd\x61\x10\xa4\xeb\xc3\x4a\x6b\x88\xec\xf1\x37\x5c\xe7\xdd\xf0\x0d\x48\xd7\x1c\x77\x67\xa0\x20\x5d\x32\x55\x79\x43\xa4\x0b\x80\xbb\x4b\x68\x20\xbf\xf7\xd7\x49\x29\x48\xd7\xa0\x54\x51\x10\xdd\xb4\x06\xe5\x11\x44\x3a\xd4\x29\x8f\x20\xd2\x18\xfa\x6e\x14\x60\x3f\xbe\x3b\xc5\xd3\x71\xd6\x08\xda\xc6\xc0\xa0\x3e\x82\x48\x8a\x7b\xd7\xee\xa2\x04\x48\xa3\xe3\x2a\x1f\x88\x1e\xbe\x96\xa6\x4a\x83\x34\xec\xbd\x3b\x86\xed\x8e\x61\x38\x8b\xbb\xc1\x80\x9d\xd5\x6f\x23\xc9\xbb\x03\x16\xe8\x26\x46\xed\xc6\x07\xc0\xd2\x23\x53\xad\x40\x2c\xea\xbf\x97\x6a\x05\xb5\x3b\x60\xe1\xe4\x2b\x3a\x50\xfb\xcd\x4b\x89\xab\xae\xc2\x80\x48\x83\x37\xbb\xe1\x78\x30\x46\xf9\x2b\xef\xb4\xf3\x45\x9c\x34\x15\x06\xc4\xd8\xf0\x9b\x55\x18\x10\x89\x58\x7f\xed\xce\x17\x41\x1a\xe1\x51\x74\x40\xa4\x51\x0b\x15\x06\x44\x1a\xef\x50\x4d\x40\xa4\xb1\x87\xdd\x00\xfd\x6e\x65\xa9\xe1\x6b\xea\xb0\xb9\x3b\x6c\xe2\xc9\x1d\x4e\x18\x0f\xd5\x6e\x91\xf5\xaa\xc3\xf0\x00\x48\x1d\xfa\xc3\xd9\xd8\xe1\x6c\x0c\x87\xcf\x8a\xfc\x22\x9d\x02\x5b\x6b\x5f\xa4\xfe\xb0\xa5\xf6\xc5\x7b\xfc\x49\x5b\xb7\x8d\x1b\x8b\xa1\x39\xcc\x18\x06\x89\x8c\x49\x1d\x0e\x74\x07\x01\x6d\xdd\xb6\xc3\x11\x0c\xb4\x81\xac\x75\x1d\xce\xc7\x8e\xee\x39\xe9\x99\x59\x68\x60\x0e\xec\xf0\xe1\x14\x0d\xa4\x13\x7d\x4b\xf2\xd7\x61\x62\xda\x60\x8a\x73\xe8\x37\x83\x30\x4d\xe9\xd0\x6f\x06\x0d\x31\xbb\xb2\xfe\xbe\x68\xae\xb5\x1d\x8e\x69\xa0\x9b\x62\x61\x49\x7e\x91\x6e\x1c\x39\x8c\x72\x83\x74\x9e\x78\x38\xcc\x81\x91\x61\x93\x57\xf9\x8e\x5f\xe9\x9c\xcd\x8a\xfc\x22\x9d\x39\x1e\xce\xd9\x40\x3a\xcb\xb2\x22\xbf\x18\x94\x78\x2f\xcb\xeb\x8b\x74\x7e\x63\x79\x7d\xd1\xcc\x3f\xb2\xd8\xbd\xd8\x4c\x68\xb3\x8c\xbd\x58\x06\x08\x0f\x7d\xd3\x23\xbf\x57\xc5\x36\x4f\x99\x5e\x91\x4d\x5e\xd1\x8b\xe5\xd6\xc8\xc3\x28\x2e\x78\xff\x92\x77\xc5\x5c\x2c\x90\xce\x5c\xac\x47\x2f\x9a\xd1\xd8\xc3\xa0\x2a\x58\x68\x30\xd4\x61\x4a\x15\x48\x2d\xb8\x25\xea\xc5\x40\x6d\xb6\x0e\x53\xaa\x40\x8e\xef\x0f\x7d\xad\x59\xb3\xd6\xe6\x1e\xe5\xe1\x49\x96\xd2\x96\x1e\xae\x16\x83\x36\x07\xd3\xc4\xc3\x71\x12\xa4\x3b\x9a\x0f\xfd\x6d\x30\x28\x04\x5f\x87\x31\x55\xd0\x0d\x57\x1e\x8e\xa6\xa0\x7f\x57\x64\xbe\x2e\xe8\xd4\xb1\xaf\xc3\x59\x28\x58\xe9\xad\x70\xc6\x09\x52\x1b\x7c\x38\xe3\x04\xa9\x71\x3a\x5c\x07\x06\x2b\xbd\x15\x8e\xaf\x20\xb5\xca\x87\x73\xd0\xc3\x45\x5f\xd7\x32\x0f\xa7\x97\x20\x1d\xbf\x0f\xd7\x73\x41\xfb\xaf\xcf\xc6\xf9\x25\x68\xee\x7c\x3d\xcc\x55\x02\xa9\x0d\x3e\x1c\xad\x41\x0e\x1c\x83\xc3\xd1\xfa\xb8\xf8\xde\x18\x7c\x0e\x73\x95\x40\x7e\x6f\x8f\xeb\xae\xa0\x1b\x19\x3e\xdc\xc5\x72\x5c\x5f\x2f\xfc\x4b\x2f\x93\x85\x57\x43\x87\x87\xf3\x4b\xd0\x36\x2d\xc4\x61\x66\x12\xc8\xef\x25\x73\x08\x07\xf9\x7d\xe2\x2e\xbc\x82\xfc\xc6\x23\x73\x7f\x41\x8e\xfe\x67\x21\x8b\x3a\xdc\x0b\x03\xde\x5e\xd2\x25\x97\x6f\x41\xb3\xdc\xc9\xa1\x21\x38\xd4\x47\xd7\xef\x39\x5c\x98\x05\xf9\x5d\x9f\x63\x3c\xc8\xef\xc6\x1b\x26\x00\xf9\x3d\x32\x83\xc9\xa0\xb9\x90\x76\x38\xec\x1f\xcf\xd7\x0d\xae\xcf\xe4\xe3\xc3\xe4\xe3\xe1\x0b\x66\xec\xe0\x30\xf9\xd8\xd8\xc4\xe9\xd2\x2c\x58\x48\x99\xd4\xe9\x32\x2c\x48\x57\x6b\x4f\x4d\x01\x48\x03\xdd\xa7\x73\x63\x90\x83\x37\xff\x34\x60\x00\xd2\x6e\x9c\x06\x0c\x40\x8e\xcd\xc3\x1f\x36\x7d\x77\xc3\x83\x9d\xb6\x9d\xfc\xa5\x1d\xbb\x6c\xa2\xce\x03\x63\xfc\x69\x5c\x01\x6c\x8e\xae\xa7\xf3\x6c\x90\x83\xe0\xee\xe9\x3c\x1b\xa4\x17\x7e\x1a\x57\x00\xe9\xfd\x3f\xdd\x6e\x03\xd2\x27\x77\x36\x3b\xf6\x22\xad\x4e\x70\x1a\x44\x00\x39\x98\x8c\x9f\x4e\xc6\x41\x0e\xfc\x97\x53\xab\x05\x72\xe0\x39\x9c\x5a\xad\xf3\x9b\x9e\x7b\x7b\x5c\x9a\x05\x6f\x1b\x9d\xd5\x94\x81\x31\x9b\xe7\xbc\x6d\x62\xdc\xc7\x5d\x39\xdd\xc2\x02\x9a\x71\x91\xd3\x19\x3b\xc8\xc1\xc4\xfe\xd4\xb8\x9d\x1a\x37\xa6\xca\xa7\x93\xf8\xf3\x9b\xc4\x7b\xff\x0d\x14\x9f\x06\x8a\x19\xf8\xd5\xd9\x10\xe9\x58\x77\x6a\x02\x41\x33\x3b\xe3\x74\x5a\x0f\x92\x9a\xfe\xa5\xf4\x86\x78\x8f\x6f\x9b\xe7\x24\x4e\x3c\x98\xd7\xab\xbd\x21\x72\xe0\x37\x28\xbd\x21\xba\xa9\x37\xa7\xb3\x73\x30\xd2\xbe\x9a\x4f\x7d\x1a\x14\xfe\x6e\x86\x53\x71\xb0\xb9\xe1\x46\x05\x0d\x91\x83\xf1\xf5\x74\xf9\x14\x24\xb5\xea\xeb\x74\x61\xf4\x8c\xef\x60\xb6\x79\xb0\xb0\x67\x3c\x3a\xe7\xcc\x67\x7c\x8f\x89\x36\x13\xc3\x40\x5a\x84\xeb\x34\x31\x0c\xbc\x3f\xb3\xcd\x8b\x4a\xbe\x09\xe6\xff\xa7\xb1\x45\x30\xcc\xa1\x3f\x1d\x35\x40\x0e\x7c\x89\xd3\x68\x23\x18\x7a\xad\xa7\x83\x06\x48\x24\x58\xea\xbc\xfd\x4a\x6e\xbe\x12\x7c\x09\x2b\xdf\x8b\x74\x5b\xd1\xe9\xa2\x14\x18\xee\xca\xb0\x18\xbe\x18\x94\xf4\xae\xd3\x05\x28\x30\x74\xb0\x2f\x9d\xe2\xeb\x73\x8a\x79\xdb\x2f\xe7\x85\x20\x29\xfb\x5b\x97\x63\xc1\xe5\x58\x80\x4f\x61\x95\x7b\x31\x8c\x42\x59\xe5\x5e\x24\x32\xb7\x75\x39\x3c\x5c\x0e\x0f\xe1\xaf\x6e\x9b\x48\x73\xf0\x0f\xfd\xa2\x2f\xbf\x68\x82\x20\x97\xdf\xea\xe5\xb7\xca\x04\xdf\x32\xf4\xa2\x39\x13\xba\x9c\x75\x82\xb4\x24\xc4\xe5\x02\x0e\x48\xd3\x95\x2e\x37\xa0\x81\x74\xe7\xe0\xa5\xdb\x0c\x1a\xd2\x96\x75\xf9\xa9\x82\xb4\x1e\xd9\xa5\x27\x0d\x7a\xff\x8e\x75\xda\x74\xd2\x7b\xce\xe8\x67\x03\xba\xfb\x17\x2e\x3f\x9b\xcb\xcf\x26\x6d\xb2\xab\xc3\xae\x72\x0b\xfd\x92\x40\x22\x0a\x52\x97\x93\x49\xf0\x3e\x8f\xa2\x6d\xb3\x8d\xd1\x87\x51\xf1\xf2\x7b\xbb\xfc\xde\x88\x08\x5f\x7e\x6f\x97\x1b\xd0\xfc\xe0\x2e\x3f\x38\x90\x86\xa0\x2e\x43\x80\x20\xdd\xe2\x7b\x39\x9d\xbc\x9c\x4e\xe2\x54\x5c\x2e\x9c\x80\x1c\x8c\x17\x97\xf1\x3e\xd0\xdc\x3c\x7a\x99\x44\x7a\x91\x31\x3a\xf0\x59\x2e\x3f\x41\xd0\xcd\xff\xbf\xcc\x60\x00\x03\x31\x8c\xba\xfc\x2a\xaf\xef\xab\x9c\xb6\x79\x95\xf8\xbb\x83\x81\x5e\xa9\x80\xfa\xa4\x02\xde\x61\xe5\x8f\xd6\x59\x25\x01\xb1\x50\xb9\x2a\x95\x04\xc4\x88\xaf\x97\x3e\x8b\xe0\x59\xe0\xac\x28\x24\x20\x16\xc2\x5a\x75\x39\x0f\x06\x39\x70\x99\x2e\x13\x10\x40\x1a\x27\xbb\x4c\x40\x00\x6f\x27\xfd\x4b\x1f\x7f\x1a\x6e\xf1\x36\xb8\xdb\x00\x24\x5a\x25\x75\xb9\xdb\x00\xe4\xc0\xd9\x52\x10\xa0\x3e\x41\x00\xc7\xb0\xcb\x89\x30\x68\xd4\x86\xae\xcb\x54\x02\x90\x83\x8f\xfb\x32\xfd\x11\xa4\x5b\xce\x2f\xf3\x1a\x41\xa2\xd9\x5b\x97\x13\x55\x90\xe6\xf7\x5d\xae\x15\x81\xb4\x26\xcd\xe5\xac\xf4\xfa\x62\xa3\x0c\x91\x97\x49\xf7\x20\x07\xa1\xac\xcb\x99\x2a\x18\xbf\xef\x2f\x7d\xe3\x0e\xde\xb8\xb2\xc9\xbe\xbe\x48\x77\x3c\x5e\x4e\x5e\x41\x0e\x1c\xb7\xcb\x99\x2a\x48\x7d\x69\xe5\x06\x44\x3a\x40\x5e\x2e\x31\x81\xb7\x63\xfe\xcc\x5e\x9c\x5e\x38\x7d\x75\x8a\x0b\x72\xc3\xd9\xba\x9c\xe2\x5e\xdf\x14\x77\x7a\x4e\xaf\x9c\xc9\xab\x7b\x1c\x2e\xe3\x0a\x20\x37\x22\x06\x2a\x10\x88\xf7\x2f\xb9\x26\xa7\xaa\x20\x2d\x66\x71\x19\x6b\x00\xb9\xe1\xba\xa9\x37\x20\xda\x74\xf0\xbe\x0c\x23\x80\xd4\x81\xbc\x1c\xf5\xaf\x6f\xaa\xc8\x80\x7e\x19\x34\x00\xb9\xe1\x5c\x29\x1b\x20\x72\xc3\xad\xb9\x9c\x2a\x82\xcd\x9d\x02\x97\xc3\xfe\x65\x2e\xc2\x37\xe2\x1a\x45\x05\xb9\xe1\x2f\x5e\x86\x08\x40\xb7\x6a\xde\xe5\xec\x11\x74\x93\xae\x2e\x27\x8f\x20\x37\xbc\x93\xdb\x71\xf9\x76\xcb\xb2\x83\xfc\x6d\xf8\x12\x2c\x74\xe4\xea\x36\x42\x70\x33\xaf\xda\x70\x4f\xd4\x12\x10\xef\x5f\x6e\xb4\xdd\xb6\xdd\xfc\x8c\x83\xe9\x43\x82\xdc\xf8\x82\x6f\x4d\x2c\x68\x14\x1e\xad\x5b\xb7\x12\xa4\xa5\xf4\xac\x39\x2f\xd2\x6d\xae\xb7\xf9\xd8\x20\xad\x74\x74\xbb\xf5\x08\x74\x83\x5c\x56\xa6\x17\x69\x4a\xc4\x6d\xee\x35\x48\xf3\xa5\x2d\x30\x5f\xf7\x3a\x69\x7a\xef\xb5\xd5\xe4\x45\x6e\xcc\x67\xac\x26\x2f\x72\xc3\x3c\x58\x4c\x5e\x6c\xe6\x65\xdc\x66\x55\x83\xdc\x30\x81\xb7\x6b\x22\x60\xfb\x7d\xc7\xb2\xf7\x45\xef\x09\xcf\xdc\x3a\xad\x60\x73\xab\xf3\xed\x77\x7f\xef\xdf\x03\xe7\x56\xb8\x4e\x02\x72\xeb\x36\x85\x4d\xaf\xed\x77\xac\xbe\x75\x6d\x6f\x4b\x20\x69\xd5\x6f\x87\x0c\x90\x88\x52\x95\x05\xec\x45\x5a\x1b\xc8\x6a\xf5\xe2\xfd\x4b\x6e\x99\xfe\x2e\xc8\x0d\x17\xec\x76\x7c\x00\xe9\x96\xc0\xdb\xe8\x21\x48\x84\x3a\xea\x76\xc8\x00\xb9\x75\x9b\xec\xc5\xc1\x6a\xd0\x66\x93\xbd\xa0\x2a\x31\x05\xe0\xeb\x76\x14\x01\x23\xbf\x33\xda\xb1\x17\x9b\xae\xb9\x15\xed\xc5\xd4\xc8\xde\x2e\x5e\xdf\x2a\x49\x31\x62\xdf\x0e\x2c\xa0\x0d\xbd\xd6\xdb\x81\x05\xb4\xff\x6a\xf2\xf8\x6c\xcd\x71\x55\xd7\xca\xf4\xa2\x59\x5f\xe7\x36\x7f\xf9\x66\xa7\x2b\x52\xc3\x65\x65\x7a\xb1\xd2\x77\xcc\x65\x18\xd0\xdd\x10\x68\x61\x7a\x91\xdb\xb0\xc9\xbb\xf3\x62\x22\x25\x5f\xb7\x23\x0d\x18\xcb\x77\x5f\x37\xf9\xfe\xdc\x64\xba\x6a\xa0\x13\xa4\x0b\x63\xb7\x8b\x35\x20\xdd\x95\x71\x5f\x5f\x57\xf9\x00\x99\xbb\xdc\x2e\xa0\x83\xdc\x70\xd5\x6e\x27\xb4\x20\x37\x6f\xab\x13\xda\xfb\x73\x83\x63\xfd\xd9\x36\xdf\x7a\xc9\x20\x2d\xda\x73\x1b\x08\x05\xef\x51\x3c\x99\x4f\xc7\x71\xce\x1b\xea\xa0\x06\x72\xc3\xe3\xb8\x9d\xcb\xde\x84\x3d\x37\x9c\x04\x0b\xea\x8b\xdc\x18\x94\xad\xa7\x5f\xb7\x03\x18\x2f\xd2\xe3\xbc\xf5\x61\x92\xba\x31\x4d\x7a\x9c\x91\x3e\x4a\xb7\x63\x07\x1e\xdd\x4e\xd0\xa6\xd3\x48\x2b\xde\x8b\xb7\xad\xd1\x36\x6c\x1b\x64\x80\x70\x02\x47\x48\x90\x1b\x6f\x97\xf5\xed\xeb\xab\x6f\xef\x14\xce\xfa\xf6\xe2\x6d\xe3\x77\x46\x4c\x41\x77\x99\xef\xd1\x1b\x05\xb9\x31\x93\x78\x9c\x82\x82\x44\xeb\xbf\x2c\x4a\x2f\xde\x83\xf1\x33\x17\x6e\x9e\xf1\x9d\x94\xdf\xe9\x07\x82\xb7\x2d\x68\x3b\x6c\x23\xd3\xe2\xfb\x99\x37\x84\xe9\x2b\x7a\x4c\xf5\x38\x57\x7d\x3e\xaf\x8f\xe1\xd5\x5a\xf2\xe2\x6d\x5b\xb4\xed\xb6\x31\x5a\x4c\x7f\xe6\x09\x5e\x4c\xeb\x27\x5b\x26\x5e\x44\x62\xb8\x1e\xe3\x9c\x8f\xe9\x41\x5e\x81\xce\x21\x48\xcb\x3e\x3e\xc6\x39\x41\xba\x79\xd1\xfa\xf2\xe2\xed\x85\x6d\x1e\xcc\xac\x59\x2c\xaa\xa5\xe3\xc5\xe6\x96\xee\xc7\x69\x28\x48\xf7\xbb\x3c\x66\xc8\x3e\xf8\x86\xa6\x9d\x3c\x66\xc8\x82\x36\x1d\x3a\x1f\xfd\x45\x90\x9b\x0f\xca\x69\x26\xc8\x8d\xc1\xf4\x31\xf7\x15\xbc\x7f\x49\x37\x9c\x54\x82\xdc\x78\xe1\x1f\x2d\x1e\x78\x7f\xc6\xdb\xa1\xf3\x09\x72\xf3\xf5\xd3\xf9\x04\xb9\xe1\xc5\x3c\xce\x16\xc1\xb0\xd4\xda\x63\x75\x3d\xf0\x1e\x8c\xd7\xca\x7d\x3d\xe0\x6d\xe3\xaa\x34\x41\x8f\x26\xc8\x77\xd9\x5c\x54\x90\x46\x5f\x1e\x4d\x10\x98\x96\x81\x7d\x4c\x4f\x05\xb9\xf9\xda\x9a\x9e\xfa\x98\x9e\x8a\xbb\xf0\x14\xb5\xb1\xc4\x22\xe3\xf6\x29\x46\x24\xb1\x50\xbe\x7e\x5c\x58\x15\x8b\x09\xc6\xe3\xc2\xea\xb3\x53\xc7\x0b\x0b\xfa\xec\x24\x0b\x8a\xc5\xe7\xff\xb8\xd6\x2a\xd6\xb6\xfc\xd5\xb0\x69\xbc\x4d\xaf\x69\x79\x76\x62\x40\x62\xa1\x97\xff\xec\x7c\x9d\x62\xcd\x77\x74\x79\x5c\x91\x15\x0b\x09\xba\x67\xe7\x83\x15\x8b\xcd\x32\xcf\xce\x32\xc8\xb3\xbf\x13\x9b\x45\xa0\xf9\xd9\x71\x48\xc5\x9a\xcb\x7e\x9d\x36\x9d\x34\xd9\x89\xcb\xa6\xeb\x6d\x2a\xae\xb1\x79\xd9\xd4\x65\x99\x5f\xbf\xbe\xcb\x26\x4d\xdd\x3b\xc1\x68\xf0\xec\xd6\x60\x69\x74\xb5\x7b\xd9\x5d\x55\x37\x9b\xbc\xec\x4e\x46\xfd\xf0\x0f\xbd\x6c\x6b\xb0\x0c\x7f\xe5\x35\x76\xca\x36\x0c\xee\x7d\xf7\x1a\x2d\x40\xfa\xbe\xea\x8f\x8b\xc9\x62\x85\x97\xed\x73\x04\x2b\xbc\x20\x1c\xe5\x87\xf5\xe5\x15\xf6\xbe\x7b\xd9\xdd\x55\x35\xcf\xe8\x65\xbf\x58\x54\xa7\x7b\x14\xab\x16\xc5\x14\xfc\x51\xac\xfa\xf9\x94\xa9\x3b\x2d\xc3\x96\x8d\x1f\xbd\x47\x57\x38\x4a\x24\x03\xc8\x73\xb3\xce\xf3\xdc\xc4\xbd\x28\x09\xf2\xdc\x2c\xea\x88\x24\x0b\xf1\x51\x4b\xea\xb9\xa9\x2c\x40\x01\xf6\xe7\x66\x54\x7c\x6e\xb2\x28\xa9\x57\xfe\xdc\x0c\x8a\xcf\x4d\x24\x8c\x5a\xf1\xcf\xcd\x98\xf8\xdc\xe3\xfd\x14\xa8\xd1\xfd\xdc\x64\xf5\x3c\x37\x63\x22\x7b\xfb\x9e\x1b\x97\xfe\xb9\x59\xe0\xa6\x36\xf9\x73\x6f\xf6\x0b\x5f\xbd\xde\x79\xef\xf3\x78\x89\x80\xf9\xc1\xf3\x10\x74\x11\x8b\xb2\x39\x8f\x62\x2d\x82\x19\xf4\xf3\x10\x91\x15\xc4\x68\x1f\xd5\x5b\x84\x37\xf4\x21\x2c\x23\x98\x54\x3c\x5a\x37\xb1\x7e\xbf\xff\xb6\x75\x6a\x8c\xff\x6e\x94\x1f\xec\xe0\x0b\x05\x59\x69\xd9\x6d\x21\x9d\x70\xd1\x72\xd8\x42\xad\x2d\xbb\x72\xda\x72\xfe\x8f\xbf\x7c\x9b\x1e\x42\xb7\x82\x8d\x17\x8f\x56\x55\x50\x2d\xf7\x79\xfc\xb4\x01\x15\xaf\x1e\xcd\xec\x83\x11\x64\x2f\xcb\xf3\x34\xcf\x8e\xc6\xcb\x3b\xf9\x78\x94\x78\x11\xbe\x6d\x2a\xbc\x08\x72\x3f\x9f\xc7\x0f\x0a\xa0\x17\xfb\x28\xf9\x22\x28\xbd\xf8\x68\x5c\x05\x95\x80\x1f\x6d\xeb\xf3\x7c\x0f\xfe\x6d\xf1\xb9\x2b\xbe\x92\x5c\xfb\xf0\xec\x03\x05\x74\xee\x8f\x2f\x02\x20\xd4\xf6\x68\x2e\x05\x25\x0b\x1f\xe5\x59\x04\x85\xf5\x9e\x67\xf3\xec\x2f\x70\x18\x1f\x2d\xea\xf3\xcc\x77\x40\xf1\x91\x4f\xcf\x8e\xd4\xb5\x77\x63\x7a\x76\x84\x52\x82\x2b\x9d\x9e\x7d\x22\x1b\xc2\x75\x4d\xcf\x4e\x49\xba\xe0\xb5\x08\x8f\x5c\x0a\x17\xbd\x2d\xb7\x67\xbf\xdd\xb9\x44\x8b\xef\x20\xcb\x23\x93\xe3\xdc\xbe\x82\x08\x19\x6d\x5c\xd7\xed\x2b\xf8\x62\x51\xf1\xe9\x51\xe8\x42\xa4\xaf\xf7\xed\x0b\x44\xb9\xe6\xfe\xff\x16\xb7\x79\xff\xff\xaf\xfb\x3f\xfe\xbf\xff\xf9\xbf\xf6\x7f\xfc\xef\xfd\x5f\xef\xbf\xce\xff\xfc\xe7\x3f\xef\x7f\xfb\x8f\xeb\x5f\xce\xff\xf8\xeb\xff\x7f\x5b\xff\xba\xee\xe7\x5f\xfe\xed\xfe\xe7\xfd\x7f\xfe\xfd\x3f\xff\x79\xde\x7f\xfd\xe3\xdf\xff\xf1\xfe\x15\xff\xfe\x6f\x00\x00\x00\xff\xff\xb5\x0d\xdf\x1d\xc7\x89\x02\x00"); +var _bdeb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x41\x8b\x9d\x30\x10\xc7\xef\x7e\x8a\x39\x6e\x0f\x5b\x8d\x31\xc9\x2e\x2c\x0b\xad\xaf\xb0\x52\x76\x5b\xea\x76\x5b\x28\x3d\xf8\x92\x79\x12\xa8\x31\x44\x3d\xbc\x6f\x5f\x66\x62\xed\x41\xfe\xfa\x8b\xf3\x63\x32\x49\xd9\x76\xa7\x2e\xf8\x15\xca\xaf\x69\xb6\x3d\xae\x70\xf1\xc1\x25\x5c\xe6\x2d\x59\x84\x33\x8e\x3e\x14\x85\xa8\xc1\x79\xbb\xfe\xfb\xe4\xb0\xd3\x10\x8b\xa2\xfc\xf4\xfa\xf4\xf9\xf6\xa3\xba\x7d\x82\x6d\xc1\x9d\xb5\xdd\xa9\xbf\x2e\x2b\x4e\x5d\xb8\xcc\x20\x73\xad\xdb\xe2\x5e\x0f\x50\x7e\xc3\xd1\x2f\x6b\xba\xc2\xcd\x07\x37\x9f\xf1\x1d\x38\xbc\x10\xff\x92\x1c\x26\x1f\x46\xb8\x69\x5f\x7a\x71\xe0\x7e\x8b\xf1\x0f\x4e\x18\x56\xd0\xcc\x30\x38\xce\xa2\x6c\x9f\x87\xf8\x32\x4c\x08\x47\x27\x6f\xbc\xc2\x0b\x6f\x98\x16\x3f\x07\x10\xf2\x7d\x55\x99\xff\xfc\xf5\x1a\x11\xc4\x6e\xf8\xf9\xbd\x3b\xc1\x2f\x01\xa2\x82\x5a\xa9\x3b\xf9\x7b\xe7\x3f\x9e\x67\x77\xfc\x25\x64\x6e\xde\x7a\x97\x86\x30\x62\xf1\x30\x88\xe6\xfc\x08\x7b\x08\xa9\x1b\x4d\x4c\x0d\xcc\x28\x84\x34\x8d\x64\x66\x33\xb3\x99\x29\x66\x2e\x33\x24\x56\x11\xd1\x82\x89\xae\x89\x34\x4c\x54\x26\x9a\xc8\x1d\x93\xfb\x4c\xc8\xde\xd4\x4c\xb2\x47\x93\x27\x77\x60\xb2\xc7\x90\x47\xb1\xd9\x64\x8f\x21\x8f\x62\xb3\xc9\x1e\x43\x1e\xc5\x66\x94\x4c\x28\x68\x2f\xa6\x78\xb0\x1a\x9b\x47\xa0\x50\xe4\xae\xee\x0d\x4d\xfd\xd8\x3f\xbd\xd3\x69\x1f\xf3\xb7\x5b\x4a\x18\x56\x3e\x6b\x1e\x32\x0d\xce\x07\x3c\xee\x52\x9c\x23\x55\xf1\xf3\x37\x00\x00\xff\xff\x7a\x2d\x9c\xb1\x77\x02\x00\x00"); +func _fffbb ()(*asset ,error ){_cddc ,_eeed :=_bdeed ();if _eeed !=nil {return nil ,_eeed ;};_caef :=bindataFileInfo {_ee :"UniKS-UTF32-H",_ffd :162757,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493048,0)};_gbbc :=&asset {_da :_cddc ,_dc :_caef };return _gbbc ,nil ; +};func _agea ()([]byte ,error ){return _gb (_afb ,"Adobe-CNS1-4")};func _dcd ()([]byte ,error ){return _gb (_bggg ,"B5-H")};func _bdd ()([]byte ,error ){return _gb (_bfd ,"Adobe-Japan1-6")};func _fff ()(*asset ,error ){_aaf ,_dae :=_gedb ();if _dae !=nil {return nil ,_dae ; +};_ffc :=bindataFileInfo {_ee :"Adobe-GB1-0",_ffd :1052,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491245,0)};_abc :=&asset {_da :_aaf ,_dc :_ffc };return _abc ,nil ;};var _bdbbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x6b\xf3\x30\x0c\x86\xef\xf9\x15\x3a\xf6\x3b\xf4\x8b\xed\x26\xb4\x85\x12\x18\xe9\xa1\x29\x74\x1b\xcb\xba\x0e\xc6\x0e\xa9\xad\x06\xc3\x22\x1b\xc7\x39\xf4\xdf\x0f\x3b\x59\xc6\x0e\x46\xd6\x23\x4b\xbc\xaf\x9c\x96\xd5\xbe\x22\xed\x21\x7d\x76\x46\xd6\xe8\xe1\xa6\x49\x39\xec\xcd\xe0\x24\xc2\x15\x5b\x4d\x49\xc2\x05\x28\x2d\xfd\x4f\x1a\x83\xec\x1a\x9b\x24\xe9\x99\xf4\xb1\xaa\x97\xe7\xb2\x16\xcb\x03\x0c\x3d\x4e\xbc\xac\xf6\xf5\xbd\xf7\xd8\x55\x74\x33\xb0\x1a\xfb\xd5\x60\xa7\x19\x00\xe9\x0b\xb6\xba\xf7\xee\x0e\x8b\x07\x65\xae\xf8\x0f\x14\xde\x02\x7f\x72\x0a\x9d\xa6\x16\x16\xc7\xc6\x36\xc4\xe7\x42\x3d\x58\xfb\x85\x1d\x92\x87\x2c\x32\x24\x15\x63\x92\x96\xa7\xc6\x3e\x36\x1d\xc2\x5f\x3d\x97\xe5\x21\x3e\x88\xf5\x37\x74\xbd\x36\x04\x5c\xfc\x67\x2c\xff\xe5\xaf\x77\x8b\xc0\xa7\x41\xef\xe7\x6a\x0f\x1f\x1c\x38\x03\x91\x67\xd9\xe6\x73\xe2\x97\x93\x51\x08\x6c\xcc\xb2\xd1\x84\xd4\xca\x35\xd4\x62\xb2\x63\x4c\xb0\x02\x76\x8c\xe5\xd7\x02\xc4\x8a\x07\x92\xcb\x91\xc8\x02\x36\x6b\xbe\x8d\x48\x45\xb4\xc6\x02\xc4\x56\x04\xd2\xe4\x91\x84\x20\xb6\x3c\x18\x9a\x87\x86\x7b\x58\xe5\x6c\x4d\x0e\xce\x21\xf9\xb8\xc8\x28\x3c\x88\xd1\x84\xf3\x67\x59\x63\x43\x57\x3c\xdf\x01\x00\x00\xff\xff\x9f\x7a\x2c\x1b\xd8\x01\x00\x00"); +var _afdf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd2\xc1\x8a\xdb\x30\x10\x06\xe0\xbb\x9e\x62\x8e\xdb\xc3\xd6\x23\x39\x76\x1c\x30\x81\x36\x65\x21\x2c\xdb\x96\xa4\xb4\x67\xc7\x1a\x07\x41\x23\x09\x59\x3e\xe4\xed\xcb\x68\xb2\x2e\xec\x21\x28\xfa\x32\xf3\x33\x91\x54\x1d\x8e\xdf\x8e\xde\x65\xa8\x7e\xa6\x30\x9e\x29\xc3\xe4\xbc\x4d\x34\x87\x25\x8d\x04\x17\xba\x3a\xaf\x94\x36\x60\xdd\x98\xdf\xb7\x65\x19\x6f\x43\x54\x8a\xfb\xcf\xf7\x39\xd3\xed\xe8\xa7\x00\xb5\xd4\xd9\x25\x3e\x6a\x01\xaa\x13\x5d\xdd\x9c\xd3\x1d\x9e\xbe\xd8\x70\xa1\x4f\x60\x69\x62\xff\x91\x2c\x25\xe7\xaf\xf0\xf4\x7a\x5a\xf1\xbc\xc4\xf8\x97\x6e\xe4\x33\x60\x31\xf2\xb6\xac\xaa\x3a\xbc\x0d\xf1\xfb\x70\x23\xa8\x4a\xce\xf3\xeb\xe9\x59\x4a\xca\x2f\xbf\x29\xcd\x2e\x78\xd0\x9f\x11\xcd\x7f\xfe\x75\x8f\x04\xfa\x91\xf0\xe7\x2d\x58\x7a\xe4\x96\xc9\x0f\x61\xf1\x19\x6a\x6c\x76\x62\x5a\xa6\x1e\x83\xa5\x39\x0e\x23\xa5\xc1\x5f\x49\x01\xf4\x88\x88\x7b\xe8\xf1\xeb\xcb\xcb\x9e\x47\xfa\x50\xc1\x07\x24\x9d\xce\x8a\xac\x1d\x38\x4d\x7b\x40\xd5\xa3\x96\xbd\xe6\xbd\x69\x5a\xd5\xa3\x11\x31\x2c\x8d\x36\xaa\xc7\x5a\xa4\x66\xd9\xb6\x9d\xea\x71\x23\xb2\x61\xd1\x68\x36\xaa\xc7\x46\xa8\x29\x64\x3a\xce\x6e\x85\xda\x42\x4d\xcd\xe1\x5b\xa1\x6d\xa1\xed\x8e\xd3\x3b\xa1\xae\x4c\x80\x1b\x8e\xdf\x09\xed\x0a\xd5\xc8\xf1\x83\xd0\xf0\x98\x93\xe3\x2f\x42\x97\xc9\xec\xc1\x74\xba\x2d\x27\xf0\xfe\x4f\xf9\x3b\x3f\x85\xf5\x7a\xc6\x25\x25\xf2\xb9\x3c\x84\x72\x07\x7c\xb6\xce\xd3\xfa\xa8\x62\x88\xdc\x55\x3e\xff\x02\x00\x00\xff\xff\x65\xa2\x18\x80\x80\x02\x00\x00"); +func _ggcf ()([]byte ,error ){return _gb (_dcce ,"UniJISX0213-UTF32-H")};func _dgcf ()(*asset ,error ){_eagc ,_bacf :=_bfdg ();if _bacf !=nil {return nil ,_bacf ;};_fdbb :=bindataFileInfo {_ee :"UniGB-UCS2-V",_ffd :832,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492749,0)}; +_cgcag :=&asset {_da :_eagc ,_dc :_fdbb };return _cgcag ,nil ;};func _cfbbd ()([]byte ,error ){return _gb (_dfde ,"Adobe-CNS1-0")};func _aced ()([]byte ,error ){return _gb (_fecfa ,"UniJISX02132004-UTF32-H")};func _ebca ()(*asset ,error ){_fcfe ,_ccge :=_dcf (); +if _ccge !=nil {return nil ,_ccge ;};_egga :=bindataFileInfo {_ee :"B5pc-H",_ffd :5309,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491485,0)};_aeae :=&asset {_da :_fcfe ,_dc :_egga };return _aeae ,nil ;};var _ag =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4f\x8f\x23\xb7\x11\xc5\xef\xfa\x14\x3c\x3a\x07\x67\xf8\x9f\x2c\x40\x10\x60\xec\x66\x91\x71\xe0\x38\xf0\xc4\x49\x80\x20\x07\x76\x77\x71\x20\x20\x23\x09\x1a\xcd\x61\xbf\x7d\x50\xef\x69\x76\x62\x1f\x16\xdc\xf9\xf5\x63\xa9\x58\x7c\x5d\x64\x3f\x7c\x7a\xfc\xfc\x78\x3a\xde\xdc\xc3\xdf\xae\xe7\xf5\x49\x6f\x6e\x1e\x4f\xdb\x55\x5f\xcf\x6f\xd7\x55\xdd\xa2\xcf\xc7\xd3\x6e\x17\xa2\xdb\x8e\xeb\xed\xfd\x4f\x0c\xeb\xcb\xb8\xec\x76\x36\xff\xe9\xeb\xeb\x4d\x5f\x1e\x4f\xf3\xec\x12\x75\xdb\xdb\xe5\xae\x75\xee\xe1\x17\x7d\x3e\xbe\xde\xae\x5f\xdd\x77\x3f\x6c\xe7\x45\xff\xe0\x36\x9d\xc6\x7f\xbe\x6e\x7a\x3d\x9e\x9e\xdd\x77\x3f\x8e\xcb\x38\x85\x6f\x0f\x9e\xde\x2e\x97\xff\xea\x8b\x9e\x6e\x2e\x82\xe9\x69\xc3\xb8\x7b\xf8\xf4\xd3\xb8\xfc\x75\xbc\xa8\x7b\x10\xff\xf2\xfa\xfd\x2f\x7f\x79\xfa\xf1\xfb\x3f\xe3\x19\x1e\xfd\x43\xaf\xaf\xc7\xf3\xc9\x85\xf0\x47\xef\xeb\x07\xff\xfb\xd7\x8b\xba\x70\x8f\xf1\xeb\xe3\xe7\x9f\xe7\x7c\xd5\x9b\x93\xe2\xa9\xf9\xd7\xaf\x8f\x9f\xdd\xbf\x83\x0b\xde\xc5\x92\x72\xfa\xcf\x5d\xfa\xcf\x9f\xce\x9b\x3a\x8a\x76\x99\x4b\x5a\xcf\x9b\xbe\x5e\xc6\xaa\xd7\x71\x7a\xd6\x9d\x73\x7b\xef\x0f\xce\xb9\x7d\xf7\x07\xfb\xab\x87\xec\x0f\x6e\x2f\x5f\xbe\x7c\xc2\xdf\x3f\xf0\xe9\xe7\x2f\xf8\xeb\x4f\x1e\x4f\xbf\x7c\xb2\xa7\x7a\xda\x7e\x17\x6d\x17\xf8\x23\xa7\xf3\x6d\xd3\x49\x86\xf8\xfb\x30\x0f\x2e\xa6\x60\x73\xfe\xff\xe1\x2e\x78\x7f\xcf\xeb\xb8\xdd\xf5\xd1\xf4\x6d\xb3\x9f\x75\x0e\x93\xf6\x4d\x0d\xe9\x1d\x55\x43\xf7\x3c\x7b\x00\xae\x29\x19\xea\x44\x63\x35\x24\xd5\xd0\xd2\x81\x96\x79\x70\xae\x65\x4c\x5c\x89\x56\x05\x12\x43\xdb\x00\xd2\x6e\xa8\x60\xe2\x64\xac\xd9\x0c\x35\x4c\x9c\x2b\xd1\x0a\x64\x13\x63\x9e\x86\x62\xc1\xc4\xee\x0d\x55\x4c\x8c\x4d\x0c\x09\x50\x0f\x40\x32\x0e\xce\xf5\x60\xe1\xa3\x70\xe2\x0c\x86\x72\xdc\xed\x7b\xe2\x82\x12\x16\x24\xb1\x18\xe2\x82\x92\x54\x43\xbd\x1b\xe2\xc4\xb4\xd4\x83\x0b\x3e\x58\x5e\x69\x21\xda\x80\x92\x4d\xcc\x8c\x95\x2d\x97\xe0\x8b\xa5\x9a\x1b\x91\x85\x0f\x5e\xec\x17\x33\xc3\x67\x09\x07\x17\x82\x6f\x86\x18\x1e\x43\xcb\x58\x63\x1e\x54\xd9\xd0\x72\x0f\x40\x81\x28\x18\x12\xa2\x48\x14\x81\x90\xc4\x48\x44\xe9\xe0\x5a\xf1\x09\x28\x13\x65\xa8\x18\xbe\x10\x15\xa8\x90\xc4\xa8\x44\xd5\x50\xe4\xc4\x46\xd4\x0c\x05\x86\xef\x44\xdd\x50\x62\x12\x42\x24\x40\x0c\x3f\x88\x06\xb2\xf7\x40\x0b\xd1\x02\x84\x4a\x8c\x95\x68\x45\x5e\x19\x68\x23\xda\x80\x3a\x90\x12\x29\x52\xad\x40\xac\x97\x0d\xad\x78\xc4\x5a\x58\x2f\x1b\x5a\x09\x88\xb5\xb0\x5e\x36\xb4\x92\x90\xc4\xc2\x7a\xd9\xd0\x4a\xe4\x44\xd6\x6b\x41\xbd\x12\x7e\x71\x61\xbd\x6c\x68\xa5\x30\x16\xeb\xb5\xa0\x5e\x30\x40\x5e\x58\xaf\x85\xf5\x42\x5e\x0b\xeb\xb5\xb0\x5e\xa8\x04\x5f\x05\x0c\xad\x24\xc6\x62\xbd\x16\xd4\x2b\x33\x09\xd6\xcb\x86\x56\x3c\x93\x60\xbd\x6c\x68\x25\x62\x87\x16\xd6\xcb\x86\x56\x02\x7f\x91\xf5\xb2\xa1\x15\xba\x70\x61\xbd\x16\xd4\x2b\x1b\x6a\x34\x66\x2b\x50\x15\xa0\x82\x12\xb6\x8a\x7a\x75\xa0\x1a\x88\xc2\xc1\x75\x8f\x4a\xb4\x1a\x89\x50\xaf\x4e\x94\x88\x92\xa9\xb2\x07\xca\x44\xa8\x97\x10\x15\xa2\x02\x55\x04\xaa\x44\x28\x8e\x10\x75\xa2\x0e\x55\x06\x12\x22\x54\x42\x98\xd7\x42\xb4\x40\x95\x80\x56\x22\x2c\x48\x98\x97\x12\x29\x54\x0d\x88\x6b\x6c\xb6\x69\xd5\xdb\xa6\xb5\x46\x95\x0d\x3d\xc1\xe4\x8d\xef\x63\xeb\x09\x2a\xc4\xea\x5c\x90\x0d\xdd\xb3\x5e\x9d\x0b\xea\x66\xb9\x1a\x30\x51\x38\xd1\x06\xd7\x2a\x16\x24\x2c\xa1\x0d\x26\x03\x62\x09\x6d\x70\xad\x0a\x10\x4b\x28\x66\x80\x1a\xb1\x6c\x19\x44\x03\x2a\x24\x21\x5c\xb6\xd8\x6e\xb3\xfb\x76\xf6\x89\x6e\xbd\x30\x04\x34\x2b\xe1\xd6\x0a\x1a\x4c\x84\xe5\x84\x0b\x12\xa8\x22\xde\xb4\x41\xd5\x80\x2a\xe3\x75\x1f\x54\x0d\xa8\x72\xb3\x4d\x5b\xa8\x5a\xa0\x62\xed\x17\xaa\x16\xa8\x6a\xb1\xbc\x56\xaa\x56\xa8\x5a\xb7\x4a\xac\x54\xad\x50\xf5\x6c\xc6\xdc\xa8\xda\xa0\x12\x74\xf2\x8d\xaa\xcd\x54\xd1\xe3\x55\x50\xaa\xd4\x54\x31\xa0\x63\x2a\x55\x0a\x55\xc4\x2b\x3a\xa9\x9a\x50\x25\x6c\xed\xa4\x6a\x42\x95\x83\xdf\xed\x85\x87\xa4\x78\xa8\xf0\x2a\x88\xef\x44\x50\xc1\x26\x72\x3f\x68\x71\x80\xc5\x66\x06\x10\x1e\x60\x82\x13\x26\xb6\x5e\x77\x7b\x89\x54\x45\xa8\xc4\x5e\x77\x89\x54\x45\xa8\xa4\xe5\xdd\x5e\x78\x76\x08\xce\x8e\xe4\xad\xaf\x0a\xcf\x0e\x49\xa6\x4a\xc1\x3c\x21\x3c\x15\x04\x47\x40\x8a\xbd\xe1\x04\x7f\x3f\x77\x77\x2d\xfc\xfe\x24\x16\x1e\x10\x92\x11\x23\x15\x5b\x5b\x61\x8c\x82\x18\xb9\xd9\xda\x0a\x55\x05\x2a\xf4\x2d\xa9\x54\x55\xa8\x6a\xb5\xb5\x55\xaa\x2a\x54\xcd\x9a\x94\xb0\x19\x08\x5e\x81\xd4\x8b\xad\x8d\xaf\x80\x34\xa8\xc4\x9a\xa7\x74\xaa\x7a\x8b\x07\x97\xbd\x35\x75\xa1\xfb\x04\xee\xcb\xde\x5e\x73\xa1\xfb\x04\xee\xcb\xa1\xdb\x44\xba\x4f\xe0\xbe\x1c\x6d\xb3\x84\xee\x13\xb8\x2f\xa7\x66\x45\xa1\xfb\x04\xee\xcb\x19\x9b\x45\xf7\x09\xdc\x97\x4b\xb5\xf0\x74\x9f\xc0\x7d\xb9\x62\xb3\xe8\x3e\x81\xfb\x72\xcb\xb6\x6c\xba\x4f\xe0\xbe\xdc\xb1\x59\x74\x9f\xc0\x7d\x59\x92\x2d\x9b\xee\x13\xb8\x2f\x0b\x36\x8b\xee\x13\xb8\xaf\x04\x7b\x0f\x85\xee\x13\xb8\xaf\x84\x6e\xd9\xd3\x7d\x02\xf7\x95\x14\x2c\x7b\xba\x4f\xe0\xbe\x92\x6c\x3b\x70\x5a\x6f\xf3\x7e\x57\x4a\x56\x68\xa5\x21\x15\x86\x2c\xc5\x7b\x43\x9d\x08\x13\x8b\xed\x90\xd2\x90\x0a\x43\x96\x6a\x2d\x56\x69\x48\x85\x21\x4b\xb3\x1d\x52\x1a\x52\x61\xc8\xd2\x9b\x85\xa7\x21\x15\x86\x2c\x62\x3b\xa4\x34\xa4\xc2\x90\xd5\xd7\x6c\x88\x2a\x18\xb2\x06\x3b\x46\x94\x86\x54\x18\xb2\xc6\x12\x0d\x51\x05\xcb\xd5\x64\x07\xbd\xd2\x72\x0a\xcb\xd5\x6c\x7d\x5e\x69\x39\x85\xe5\x2a\xae\x16\x4a\xcb\x29\x2c\x57\x6b\xb4\xec\x69\x39\x85\xe5\x6a\xb5\x6b\x8a\xd2\x72\x0a\xcb\x55\x5c\xc5\x94\x96\x53\x58\xae\x76\xbb\xf2\x28\x2d\xa7\xdd\x54\xcd\x7b\xcb\xbe\x53\x05\xcb\x35\x5f\x2d\x7b\x5a\x4e\x61\xb9\x16\xec\x18\x51\x5a\x4e\x61\xb9\x16\xad\x5d\x2b\x2d\xa7\xb0\x5c\x4b\x76\x01\x51\x5a\x4e\x07\xef\x4a\x76\x8c\xe8\xc0\x5d\x49\x87\x5d\x8c\x7a\x34\xfb\x2a\x9d\xa3\x1b\x0f\x08\xeb\x48\x4a\xe7\xe8\x66\x37\x84\x9e\xad\x23\xe9\x86\x1b\x02\x87\x20\x92\x80\x0a\x90\x25\xd1\xb3\xf5\x07\xa5\xbf\x14\xfe\xea\xc5\xda\xa2\xd2\x5f\xaa\x6a\xaa\xea\x2d\xbc\xea\x04\x9a\x38\x04\xb1\x20\x9d\x42\x84\xdb\x2c\x0c\xa0\x73\x10\xd9\x44\xef\xcb\x6e\x3f\xb9\xc6\x39\xb2\xbc\x4f\x9c\x23\x0f\xa0\x82\xcb\x4c\x83\xaa\x64\xa2\xfc\x1e\x6b\x8e\x52\x88\xda\x47\x2c\xbb\x4b\xdf\x87\x56\x43\x07\x12\x22\x9c\x52\xd6\x62\xe7\x28\xf7\xf0\xe3\xfd\x5c\x9c\xa3\x2c\x44\xcb\xfb\xc1\x35\x47\x59\x81\x3e\x4a\x38\x59\xfb\x39\xd6\x69\xc8\x6e\x7a\x73\x6c\x44\x36\xb0\x84\x73\x6c\x01\xe8\xa3\x84\x93\x4d\x61\x2e\x2c\x21\xf2\x62\x53\x98\x68\x0a\xbd\xd8\xcd\x78\xb2\x29\xcc\x35\xdb\x0d\xa1\xf9\xfa\x9b\x16\x6b\xff\xb7\xcf\xce\x6f\x9f\x81\xeb\xdb\xf5\xaa\xa7\x1b\x3e\x3a\xf1\xa5\x67\x9f\x6a\xc7\x93\x7e\xfb\x80\xbd\x9c\x2f\x36\x0b\xff\xfe\x17\x00\x00\xff\xff\x0c\xbd\x28\xe3\xec\x0e\x00\x00"); +var _cadf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xcd\x6e\xd4\x30\x10\x00\xe0\x7b\x9e\x62\x8e\xe5\x50\x62\xe7\xc7\x71\xa4\x6a\x25\xb4\x7b\x20\x54\xa5\x88\xa5\x05\x09\x71\x70\xe2\xc9\x62\x89\xb5\x23\x27\x39\xec\xdb\x23\xcf\x84\xd0\xc3\x6a\x36\x9f\x67\x26\x8e\x3d\xf9\xb1\x3b\x75\xde\x2d\x90\x7f\x89\x61\x38\xe3\x02\xa3\xf3\x36\xe2\x1c\xd6\x38\x20\xf4\x78\x71\x3e\xcb\x64\x01\xd6\x0d\xcb\xbf\x47\x0a\xc3\xd5\x4c\x59\x96\x3f\x9e\x8f\xf7\x9f\xc2\x6f\xd3\xdf\x7f\x84\x75\xc6\x4d\x8f\xdd\xe9\x7c\x9b\x17\xbc\x76\x7e\x0c\x50\x72\xb5\x5d\xa7\xad\x03\x40\xfe\x15\x2f\x6e\x5e\xe2\x0d\xee\x3e\xd8\xd0\xe3\x3b\xb0\x38\x26\x7f\x8e\x16\xa3\xf3\x17\xb8\x7b\x0c\x11\x8d\xdc\x17\xce\xeb\x34\xfd\xc1\x2b\xfa\x05\x24\x19\x7a\x4b\x31\xcb\x8f\x4f\x66\xfa\x6c\xae\x08\x6f\x76\xf3\x4a\x6b\xb4\xf4\x8a\x71\x76\xc1\x83\x14\xef\x85\x50\xff\xfd\xdb\x6d\xc2\xad\x57\x96\xbf\x74\xa7\xe7\x71\x9c\x71\x01\xd5\x0a\xce\xf9\xf1\xd2\x9d\xe0\xa7\x04\x29\xa0\xa8\x2b\x59\xfc\xda\x52\xbf\x3f\x05\xbb\x17\x4a\xc5\xdf\x34\x38\x1b\x8d\xbf\x60\xf6\x60\xdb\xb2\x38\x40\x0a\xe5\x01\xb4\xa8\x15\x51\xcd\x54\x13\x69\x22\xc5\xa4\x0e\xa0\xcb\x42\x10\xb5\x4c\x3d\x65\xb5\x44\x96\xc9\x26\x52\x45\xa2\x8a\xdb\x57\x4c\x65\xa2\xa6\x27\x6a\xa8\xb0\xa9\xb3\x07\x6b\x4a\x99\x88\x82\x16\x8d\x22\xd2\x4c\x2d\x51\x43\x34\x30\x0d\x44\x2d\x11\x32\x61\x22\x9d\xf6\x65\x2a\x43\x54\x8d\x44\x32\x91\xa2\x37\x52\xd0\x42\x53\x2f\x65\x99\x68\x5f\x5a\x13\x8d\x4c\x5c\x48\xed\x5b\xce\x32\x22\x51\x2b\xd2\x35\xee\x67\x97\xfe\xa7\x01\xda\x2f\x74\x58\x63\x44\xbf\xd0\xf8\xd0\x9d\xa5\x43\x77\x1e\xf7\x01\x9d\xc2\x94\xaa\xe8\xf7\x37\x00\x00\xff\xff\xb0\xc5\x59\xa9\xcc\x02\x00\x00"); +func _dcbg ()([]byte ,error ){return _gb (_cgbcc ,"UniJIS-UTF32-V")};func _bfaa ()(*asset ,error ){_agfa ,_gdab :=_cdae ();if _gdab !=nil {return nil ,_gdab ;};_fdac :=bindataFileInfo {_ee :"UniJIS-UCS2-HW-H",_ffd :472,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492901,0)}; +_daebc :=&asset {_da :_agfa ,_dc :_fdac };return _daebc ,nil ;};var _afbff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x06\xe3\x41\x7c\x96\x2f\x38\x6f\x26\x37\xb3\x06\xf5\xef\x8d\xd6\xd2\xb3\x56\xdc\x02\xc3\x79\x27\xe7\x55\x3c\x11\xd2\xd6\xd6\xd6\xfe\xd6\xd6\x1f\xff\xd3\x9f\xff\xf3\x9f\x7f\xfd\xe5\x1f\x5f\x7f\xfc\x5f\x7f\xfb\xeb\xf9\x4f\xf7\x3f\xbe\x9e\x5f\x7e\xbd\x7e\xbb\xff\xfe\xd7\x7f\xfd\xed\xbc\xbf\x8e\xfb\x5f\x7e\xf9\xf5\x0f\x7f\x08\xf1\xeb\xfa\xe5\xfc\xc7\xa7\x89\x3f\xe7\x5f\xf6\xbf\xfd\xe1\x0f\xf3\xfb\x7f\xfa\xb7\xbf\xff\xe3\xfe\xcb\x9f\x7f\x7d\xfe\xfa\x95\xf8\xde\xf5\xaf\x7f\x5b\xef\x7e\x7d\xfd\xf1\x7f\xbb\xff\xe5\x97\xbf\xff\xe3\xb7\x7f\xfb\xfa\x0f\xff\xe3\xf5\xd7\xe3\xfe\xef\xbe\xae\xfb\x99\xcf\xff\x97\xdf\xae\xfb\xb7\x5f\x7e\xfd\x97\xaf\xff\xf0\x5f\xf6\xbf\xed\xbf\x06\xfd\xf0\x4f\xff\xfa\xb7\xbf\xfd\xbf\xf7\x5f\xee\x5f\xff\xf1\xd5\xf0\xec\xfe\xf5\xc2\xdf\x3f\xfc\xf1\x3f\xfd\xd7\xfd\x6f\xff\xf3\xfe\x97\xfb\xeb\x8f\xff\xfc\xeb\x2f\xff\xe5\xcf\xff\x14\xb7\x2d\xff\xc7\x7f\xfe\x6f\x7f\x4a\xf1\x3f\xfe\x4f\x78\x05\x6f\xfc\xef\xf7\x6f\x7f\xff\xe5\xaf\xbf\x7e\x85\xff\x7e\x8b\xc1\x8f\xff\xdb\xbf\xfd\xed\xfe\x0a\xab\xa7\xff\xf3\x9f\xff\xfc\x9f\xbf\xfe\xaf\xf0\x15\xb6\xaf\x58\x6a\x68\xff\xf7\x7a\xfe\x7f\xfc\xd7\xbf\x5e\xf7\xd7\xc6\x56\xe0\x2c\xce\xbf\x5e\xf7\xdf\xff\xb6\x9f\xf7\x6f\xfb\xaf\xff\x72\xff\xe1\xeb\xeb\x7f\xd8\xd6\xbf\xef\xf9\xdf\xb0\xfd\xe9\x4f\x7f\xfa\xd3\xf7\x04\xf3\xdf\xbd\xf9\xe9\xe0\xd7\xbf\xfe\xe3\xba\x1f\x3e\xfb\xfd\xb7\xf3\x5f\x78\xbe\xbf\xc2\xfc\xfa\xfd\xda\x1f\xc2\xb6\xad\xd1\x7f\xb9\xce\xff\x67\xff\xed\xf3\x61\x39\xbf\xbf\x46\xfb\xb4\xda\x6c\x0d\xb5\xae\xef\xaf\x91\xd5\xba\xbf\xbf\xc2\xb6\x7d\x9a\xfb\x36\x87\xf9\x34\xf2\xfc\x4d\xdd\xec\xe5\xfb\xab\xfa\xc7\xfa\xfd\x35\x92\x5a\xed\xfb\xab\x45\x77\xd3\xbf\xbf\x6a\xf6\x97\xe3\xfb\x2b\x94\xa8\xe6\xfe\xfd\x15\xb2\x5f\x3e\xe6\x30\x82\x6f\x3f\xe7\xcb\xee\xf9\x9a\x4d\x0f\x3b\xe1\x2d\x02\x7f\x9f\x68\x89\xfa\xf6\xd8\xbe\xbf\x9a\x21\x3e\xc2\xf7\x57\xf5\x5c\x8f\x3c\xa1\x2a\x6a\x96\xd9\x95\xbf\xad\xdf\x5f\xad\x75\x35\xdb\xf7\x57\x08\xee\xaa\x7f\x7f\x85\xe4\xae\xe6\x8c\xaa\xa6\x70\x60\x46\xfe\x75\xce\x28\x6a\x0a\x07\x80\xac\x9f\xe6\x59\x67\x57\x1a\xf7\x6a\x13\x48\x41\x75\xcd\x81\xb2\x70\x75\xcd\x6f\x8b\x06\xba\xe7\xb7\x9e\xc2\x83\x6f\xd5\xf3\x83\x6f\x3f\x53\x08\x93\x7c\x46\xaa\x55\xed\x80\x76\x50\x3b\xce\xbe\x5b\xf1\x0b\x09\x0f\xea\xd0\x83\x8c\x07\xa9\xe9\x01\x70\xd6\x04\x41\xd8\x2a\xfb\xf0\xa0\x0d\x0f\x9a\x47\xe9\x78\xd0\x93\x1e\x0c\x3e\xf0\x28\xfb\xf7\x57\xdc\x52\xf2\x1b\x07\x1e\x88\x62\xc2\x76\x72\x14\x7f\x72\x71\x14\xbf\x71\x13\x74\x0f\xfb\xf0\x8d\xcf\xa2\x84\xb0\xa1\xd3\xa8\x4f\x42\xe0\x1b\x9a\x4b\x88\xc0\x8f\x06\x09\x09\x6d\xf7\x50\x09\xa7\x1f\x34\xc2\x29\xc0\x03\xe7\x2a\xc2\x08\x81\x73\x6d\x7e\x63\x9f\x7d\x0e\x8f\x79\xcc\xdd\x28\x92\x0d\x81\x33\xed\x1e\x83\x33\x1d\xee\xf2\x26\x14\xee\xe2\x21\x14\x7a\x10\x39\x53\xaf\x5a\x0c\x7c\x43\x0b\x1d\x23\xdf\xf0\x03\x2e\x74\x77\x1f\x5c\xe8\x21\x7c\x46\x4e\x5e\x54\x1d\x22\x16\xba\x07\xf7\xd1\x31\x15\x01\x1a\xc7\x6c\x07\xe1\x3b\x62\xea\xd5\x50\x1d\x68\xfb\xf7\x35\x31\xe1\x3f\xae\x89\xe9\x8b\xb4\x26\x26\x62\x4b\x73\x09\xb3\x20\x48\x9c\x56\x14\xf2\x52\xe2\x03\x7f\xb0\xe6\xe9\x4f\xd6\x3c\x05\x45\xe2\x3c\xc5\x9e\x42\x5a\x8b\xec\x3e\x3a\x3b\x15\x9c\x89\x8b\xfc\x82\x73\xe7\xaa\xbb\x0f\x12\x74\xf6\x28\x27\x1e\x98\x50\x12\x97\xd9\x93\x4f\x24\xe8\xec\x4e\x89\x8d\xa8\x25\xca\x0b\x1b\xea\x23\x03\x1b\x5a\xb1\x3c\xb7\xb7\xbf\xcf\x6b\x73\x0b\x86\x4c\x5c\x34\xe1\x22\x17\x42\x99\x20\xa5\x96\x44\xf9\xff\x93\x31\x21\x13\x51\xde\x71\x99\x3b\xbf\x8a\x42\x32\x77\x43\x33\x08\x83\x10\xfb\x13\xee\xfc\x68\x10\xb0\x1d\x4c\x97\x79\x8a\xae\x64\x44\xe6\x0b\x34\x23\x1c\x94\x8d\x63\x6a\xc5\xcb\xda\xd4\x5a\xad\x02\x2c\x08\xa6\x32\xb1\x90\x85\xe5\x42\x1c\x78\xef\x14\xd2\x43\xf5\xf7\x8b\x1e\x3c\x02\xe9\xc1\x78\x2c\x6b\xd3\xbb\x8f\xb5\xe9\x3d\x0a\xe9\xc1\x34\x55\x0e\x3e\xf0\x28\x6b\xdb\x0b\x55\x65\x6d\x7b\x03\xbe\xe8\x41\xb8\x2b\x64\x70\x92\x0d\xa1\x4e\x7a\xf0\xfe\xac\x73\xd3\x47\x75\x58\xc9\xec\xbd\xfd\x2a\xe9\xa1\xab\xc3\x4a\x5c\x98\x48\x2b\x71\x51\xfc\xc6\xe2\x01\xee\x83\xb8\x48\xfe\x84\x3c\x40\xa8\xa8\xe4\x01\xfe\x80\x3c\x40\xf3\xae\xe4\x01\x06\x7a\xe1\xc1\x2f\x2c\x3c\x08\xfd\xf5\xc6\x08\x6e\x3f\x18\x41\x14\xd3\x16\x45\xf8\x01\x29\xa2\x0b\x4f\x8d\x5c\xc2\x32\xac\x91\x4b\x18\x8a\x96\xb9\xe5\xfd\x09\x77\x86\xc9\xac\x11\x13\x46\x4d\x5b\x54\xe1\x4e\x27\x97\x30\x27\x6a\xa4\x09\x13\x62\x23\x4d\x58\xc6\xb5\x45\x13\xfe\x64\x09\x3d\x3f\xb8\x66\x97\x1e\x61\xf2\x4b\x73\xa1\x31\x17\xd8\x98\x1f\x58\xde\xee\xad\x75\x46\x3e\x10\xc8\x27\xf6\x92\x31\x7b\x12\xb3\xfe\xe0\xc1\xef\x5a\x8a\x6b\x03\xa6\x85\x94\x2b\xe0\x7d\xf5\x77\x45\xfc\xae\x19\x5e\x09\xbf\xbb\x9d\xf1\xbb\x20\xbc\x16\xbb\xd1\x0c\x2e\xea\x12\xd6\x03\x2e\x22\xd5\x0c\xfe\xe2\x56\xb3\x04\xbe\xc8\x51\xbc\x91\x2e\xa2\xd5\xd2\xf1\x5a\xac\x57\x24\x78\x11\xad\xe6\x31\x0f\xe1\x30\x9e\x1f\x68\xc8\x42\x54\x9c\x12\x60\x64\x75\x19\xc9\x74\xba\xa8\x3e\x16\x60\x22\x74\xb5\x89\x6a\x0d\x11\xcb\x5a\x0c\x7f\x01\x5c\x68\xb3\x46\xb2\x9d\xae\xdd\x1d\x0b\x70\xd1\x37\x7f\x41\x71\xfb\xfa\xa4\xf3\xc1\xd0\x03\xec\xb5\xe8\x41\x77\xb4\xfd\x3b\x79\xab\x7b\x3c\x09\xe5\xa6\x07\x37\x1f\x18\x88\x87\x40\xa8\x8b\xca\x99\x8b\x06\x63\x0d\x54\x02\x04\x15\x99\x48\x37\xb2\xc8\x44\xba\x64\x76\xac\x9c\x59\x70\xa7\x9c\x99\x08\x3f\xd6\x35\xb3\xa6\x07\x58\xd4\xde\xcb\x4f\x04\x53\x5c\x3c\x64\x78\xc4\x8b\xd3\xf0\x03\xf2\xd2\x61\x10\x38\x51\x51\x5e\x24\x17\xe9\x41\x30\x2d\x2e\x22\xc5\x2d\x36\xae\xb1\xb6\x43\x6c\x5c\xe3\xcd\x7d\x10\x15\xd2\x35\xe2\xe4\x22\x23\x4b\x2d\x8b\x8d\x98\xe8\x7e\xc0\x89\x8b\xfb\x45\x72\x8d\xbe\x79\x10\x62\x22\x7b\x90\x83\x6f\xb8\x8f\x35\x59\x43\xbe\x26\xab\x37\x3a\xe7\x26\xfd\x3b\xf6\xb5\x88\x9a\x5b\xe7\xdc\x36\x3f\xc0\x56\x96\x64\x88\x9d\x53\x13\x7b\x8b\x9d\x90\x8b\x19\xc4\x4e\xc8\xa5\x79\xc5\x4e\xc8\x93\x3f\x21\xbf\x93\xf5\x12\xfb\x09\xf4\xf8\x0b\xce\xc4\xf8\xea\xa4\xcf\x60\x30\xb8\x6c\xd2\x8d\xe3\xe0\xd4\xc4\xc3\xe2\xe0\xd4\x0c\xf9\x00\x93\xf2\x3e\x1b\x9c\x89\xf7\xee\x20\xbd\x4a\x64\xc5\xb1\xa8\xd1\x83\x70\x6a\xc3\x7d\x70\x23\x0d\x0f\x42\xc8\x83\xdf\x58\x80\x6a\xd9\xf6\x05\x97\x3a\xdd\x17\xcb\xd0\xa2\x1c\x9c\x8a\xd8\x73\x3c\xf8\x86\x29\xf0\xe0\xbe\x31\x02\xa7\xd9\x69\xaa\x3f\x26\x3a\xf5\xdb\xc9\x01\x4d\x05\xb0\x42\xbd\x3c\x27\x95\x37\x31\xe3\x78\x72\xda\xd9\x3d\x8c\xb7\xa9\x1d\xcf\xb9\x9e\xde\xa2\xe7\xf1\xfd\x25\xe1\x17\x4f\x62\x44\x4c\x37\x52\x76\x98\x6c\xaf\x35\x7f\x8d\xff\xe1\xec\x7e\xb0\xac\x44\x21\x15\x9c\xdd\x3b\xf4\x5a\xe2\x52\xf0\x4d\xbe\x6e\xe4\x5c\xd4\x1b\x8a\xdf\x27\xf1\x48\xff\x49\xd3\x3a\x16\xc4\x69\x9a\xbe\xc3\xad\xfc\x9e\x6b\x9a\x56\x6f\x14\x63\x4d\xdb\xef\x20\x49\xd3\x5a\x0d\xc9\xdf\xce\xb9\x27\x0f\x73\xfd\x1e\x8f\x89\x86\x69\x97\x72\x91\x02\x77\x86\xd4\xc5\x44\x1b\xb0\x4b\xb3\x4e\xb4\xce\xba\xd4\xa6\x44\xeb\xac\x17\x3f\x68\x6f\xf7\x44\x8a\xf0\x56\x68\xc8\x48\x8a\xf5\x6c\xe3\x1a\xd2\x6f\x70\x48\x19\xd8\x29\x12\x4a\xa9\x51\x29\x91\x1e\x65\x1d\xa7\x69\x6c\x49\x21\x4a\x34\xac\xba\xcc\xfe\x94\xe0\xe5\x10\x80\x69\x81\xa0\x59\x27\x8e\xd8\xfc\x80\x88\x72\x97\x4b\xb6\x48\x4f\x4b\x1d\x4a\x57\x16\xd1\xa5\x0e\x2b\xca\x22\x2d\xf5\x9b\x0f\xb4\x36\xfd\xe1\x03\xf5\x31\x60\x34\x99\x01\xa4\x7d\xe7\x1b\x7e\x70\xf0\x81\xe0\x38\xd6\x27\xea\x03\x9a\x54\x8d\x31\xfe\x44\x1c\xa5\x93\x03\x68\xab\xa7\x93\x03\x48\xde\xa5\x93\x50\x9b\x44\xe6\x6e\x09\x71\x13\x5f\x4b\xd8\x2e\x71\x1b\x7e\xa3\xf0\x81\xfa\xc0\x76\x88\x9b\x48\x38\x6f\xf3\x93\x4d\x4b\x9e\x61\x18\x6d\x62\x0f\x0f\x94\xad\x18\x3e\xfb\x2b\xdc\xe0\x17\xe9\xc3\x20\xc2\x7d\x40\x0b\xfa\xc8\xfe\xf0\x34\x6c\xe1\x0f\x1b\x0c\x4f\xa3\xd2\xe3\xdf\xc1\x59\x3f\x68\x0b\x4f\x83\xcc\xf8\x2c\x45\xdc\xb6\xa9\x76\x7f\xd0\x1c\xb7\xb9\xe1\xaa\x7f\x0d\x73\x37\x7e\x6c\xaa\xb8\xc1\x37\x93\xd5\x9a\x08\x7f\x35\xd3\xef\x9b\xf9\x45\x69\x71\x0b\x65\xf6\xa4\x71\x42\x9d\xcd\xaa\x66\x37\x8f\x8c\x5b\x18\xe6\x91\x71\xc3\x46\xfc\x4c\x30\x6e\xd8\x86\x9b\xdf\x9d\xf4\x19\x0d\xe1\x0d\xfc\x7d\x9a\x11\x20\x0e\x35\x01\x84\x9b\x00\x42\x5d\xcd\xbd\x24\xdf\x55\xdc\xd2\xf1\xfd\x25\x9d\x36\x6e\xd8\x19\x31\x04\xf5\x9d\xee\x17\xfb\x89\x5b\xe2\xd6\xcc\xea\x3d\x93\x1e\xbb\x3a\x84\x65\xbf\xa9\xc3\x3c\xd8\xa1\x7e\x07\x2d\xd4\xd8\x35\xc2\x54\x15\x5b\x37\x5e\xa6\xf5\xd9\x24\x2c\xe2\x86\xb5\x4f\xcd\x6d\x80\x30\x8c\x9c\x1d\xc4\x53\x34\x24\xd8\x6f\x95\xe3\x25\x6e\x60\xbf\x61\xfb\x6c\xc4\x08\xe7\x64\x08\xbd\xf8\x41\xfa\xfe\x6a\x1f\x75\x2a\xd2\xd3\x18\xc4\x91\x22\xdc\x86\x3d\x6d\x7e\x7f\x47\x3b\xab\xfd\x70\x07\x7c\x66\x09\xf7\x5d\xdf\xa2\x3e\x98\x94\xd0\xaa\x47\x88\x61\xfe\x6e\x00\xe0\x14\x13\xc4\x70\x78\x8d\xf4\xfa\x19\x12\xb2\x04\x3f\x98\xcb\xf6\x61\x78\xf1\xe3\xbe\x12\xa9\xd1\xb5\x14\xb7\xae\x19\xcc\x75\xee\xe9\xa3\xaa\x45\x38\x2f\x86\x3c\x7b\x11\xbe\x8b\x21\x65\x2f\xc2\x75\x31\xa4\xcc\xc4\x8f\x6f\x22\xaa\x83\xb9\x0c\x3d\x7d\x34\xce\x18\xa6\xd2\x35\x64\xe9\x46\x98\x84\x32\x74\x22\x4c\x42\x79\x98\x62\x80\xea\x13\xe3\xa6\x19\x4c\x95\xa0\xa7\x4d\x2f\x9c\x07\x5f\xd0\x78\x10\xeb\x31\x1a\x22\x32\xaa\x68\x90\xa7\x0d\x28\x9b\x36\xc2\xe4\x93\x0c\x8e\xe1\x9e\x03\x6c\xc1\xed\x86\xb6\x5e\xbf\x3b\xda\x5a\xd2\x7b\xa0\x2d\x00\xa7\xa5\xd6\x93\xde\x8f\x93\x86\x64\x1f\xc7\xb8\x61\xf0\xa1\xe6\x9c\xae\xd6\x2f\x82\xa0\x62\xe8\x7e\x7d\x39\xb0\x9a\x1e\xb4\x49\x20\x9b\x9a\xfd\xfb\x4b\xfe\x96\x18\xe9\xb6\xce\x1f\x99\x19\xe3\x46\x76\x31\xfc\xc6\x24\x88\x6c\xe8\xe8\xb0\xd3\xb6\x8f\x93\xa9\xb5\x2a\x82\x8c\x93\xad\xd5\x8f\x4e\x18\x23\xd8\x5a\x0c\xa1\xff\x40\xac\xc4\x08\xcf\x72\x10\xec\x93\x77\xc9\x05\x15\xe3\x64\x56\xcd\x33\x9b\xcc\xaa\x6d\x1e\xe9\x01\x20\xc2\x54\x04\x1e\x35\xb1\xa9\x2e\xc8\x37\x15\xe3\x54\x16\xe4\x87\x8c\x31\x5e\xdf\x5f\x3d\x0c\x0d\x35\xe9\xbe\xd5\x28\xb4\x4e\x4d\xa0\x6d\x6e\x96\xf9\xb3\x3a\x03\x73\x13\xbd\xc4\x04\x38\x35\x72\x26\x0a\xc4\x83\x63\x06\xc9\x17\x91\x60\xa4\x4f\xb1\x88\xf3\xc0\xd6\x96\x53\x33\xc2\x42\xad\x62\x64\xb0\x4f\x15\x14\x88\x91\x4e\xb0\x22\x26\x42\x6d\x3f\x86\xae\x0f\xc6\x12\x8b\x02\x69\x34\x3e\x10\xb2\x60\x0f\xc4\xd0\x05\xd2\xb8\xc9\x0c\xf5\x09\x82\x68\x31\x74\x8d\xb2\x4f\x1c\x14\x7d\x70\x00\xfd\x49\x93\x3c\xb9\x11\x85\xf1\x84\x18\xca\x5c\xe2\xcf\x83\x00\xca\xd6\xef\x2b\xcc\x20\x5e\x95\x06\x76\xaa\xdc\x9c\x31\x0d\xca\x10\x51\x40\x82\x05\xf2\x7e\xb0\x80\xfc\x28\x1d\x31\xc1\x24\x89\x0a\xb5\xc5\x04\x93\xe4\x77\x9f\x94\x7f\xff\x80\xc8\xd2\x0e\x84\x32\xf5\xbb\x37\xa6\x6a\x13\x6a\xfc\xc4\x3f\x62\x8e\x89\x0f\x3e\x0b\x96\xef\xc9\xc6\xe5\x28\x8b\xf9\x79\xe0\xc6\x12\xb1\x96\xc9\x25\x7b\x14\x58\xa5\xdc\x68\x7f\x3a\x28\x73\x89\x7b\x14\x0c\xa5\xa2\x43\x31\x9d\x32\x6d\xfb\x1e\x3f\xea\x76\x2c\x0d\xfd\x49\x7a\x96\xc9\x34\x7b\xcc\xfa\xbe\xe3\x7b\xa1\xb2\x4c\x3b\xb5\x47\x6d\xeb\x32\x95\xce\x1e\xc5\x17\xca\x34\x53\x7b\xcc\xea\xbf\x03\xbe\xe4\xfe\x31\xbe\xf4\x93\x32\x11\xdf\xb4\xf7\xca\x44\xbb\x57\xb2\x4c\xa4\xf7\x4d\x42\xa6\x10\xa3\xaf\xee\x76\x32\xe5\x8f\x81\x11\xcb\x41\x61\x2e\xc9\x5a\x0e\x70\x7d\xc1\x77\x80\xeb\x0b\xbc\x83\x6b\x36\xfc\x3a\x99\xb0\x5f\x38\xe7\xfb\x9a\xfe\x54\x03\x5b\xd2\xec\x4f\x92\xcd\x10\xba\x4e\x48\x51\x09\x8d\x32\x85\x88\x45\x54\x39\x11\x18\xae\x6a\x02\xd9\x1e\x8c\xca\x71\x92\x14\x2d\x53\xe6\xb4\xa8\xd1\x21\x71\xb6\xb2\x79\xfc\xc9\x6d\xc4\x42\xcb\x39\xb7\x92\x88\xa7\xdc\x19\x6b\x2d\x6c\xde\x05\x6d\x41\x83\xf0\x69\x7c\x11\xcb\x3d\xbf\x6f\x02\xfe\x59\xc8\x15\xbc\x0f\x25\x9e\x56\xaf\x4e\x29\xd2\xa4\x05\xd6\x0d\xb3\x0d\x6a\xde\x50\x29\x3e\x9f\xd7\x00\x5a\xd0\x3e\xae\x01\xb4\xe0\xcf\x33\xe2\xd5\x7a\x7d\x2a\x72\x4d\xcc\xa9\x56\x50\xaa\xc4\x5f\x05\xa5\x6f\xe2\xf9\xb5\x92\x56\xd4\x7b\x4d\x78\x3f\xa9\x9d\xf1\xbb\x60\xaf\xc0\x46\xf8\x89\xd9\x12\x6b\xad\x78\x39\xab\x4d\x32\x11\xac\x73\x9b\x29\x76\x1a\x6b\x3d\x40\x85\xe2\xec\xb5\x92\x03\xbd\x1e\x4c\x42\x6a\xee\x0f\x9c\x21\x0c\x43\x8f\xa5\x10\xf0\x8b\x3f\x49\x9d\xab\x6b\x27\x14\xbf\xc1\xc5\x92\x84\xaf\x93\x54\xa7\x09\x24\x04\x1d\x37\x25\xb4\x1e\x2c\x8d\x46\xd4\xdd\x36\xf2\x38\x09\xf5\x16\x16\x7f\xda\xf4\x80\xc3\x6a\xbf\x37\xa8\xdf\x51\x8e\xf7\xd8\x32\x95\x20\xed\xe1\x56\x16\x95\xe9\x8d\x46\x9e\x26\x64\xb6\x1d\x3c\x4b\x0b\xdf\x8e\x87\x90\x7f\xba\x18\x48\x19\xa8\x51\x5c\x70\xc0\x1d\x13\xa3\x36\xe2\x01\xb8\xc2\x26\x52\x3d\xe0\x13\x88\x66\x6c\x47\x24\x18\x92\xdc\x07\xdc\x00\xd1\xac\xf0\xa8\x84\x3c\xf8\x41\xe0\x03\x8d\x02\x81\x19\x4d\x83\xc7\x28\xbf\x83\xfc\xf8\x88\xc7\x4f\x17\x37\xb0\x51\x8a\x08\xe5\xee\x88\xb8\x59\x71\xbf\x7b\x81\xbd\x56\xfc\x46\x43\xdc\xf2\xf5\xc6\xc0\x27\xaf\x37\x0e\xbc\x21\x40\xef\xc9\x64\x73\x14\xd7\xb9\xe1\x09\xcc\x56\xce\xee\x69\xe7\xe7\x9a\xdd\x8e\xdf\x5f\xc9\x7a\xc2\x3d\x75\xe1\x6c\x65\xf8\x9e\xca\x70\x36\x27\xb8\xe9\x06\x4c\x52\xee\xee\xc1\xcc\x0b\x31\xd2\x1b\x33\x4f\xbd\xb8\x4b\x64\x5f\x94\xea\x4f\xc6\xf7\x57\xd9\x8a\xfb\x3c\x66\xbb\xbb\x3d\xc9\xb3\xc9\x2b\x18\xef\x29\xa4\x53\x95\x28\xba\xe7\x1e\x48\xde\x13\xf7\x0e\x54\xca\x49\x17\x6f\x64\xe8\x14\xc5\x68\xe2\x0d\x89\x9c\x83\xb6\xc0\xbd\x03\x28\xdb\x04\x37\x72\x71\x92\x05\xd0\x8d\x7d\x95\x86\x04\xc2\x8d\x7d\x95\xc7\xf0\x1b\x73\x2b\x8f\xe0\xa9\x23\x27\x27\x0f\x2f\x18\xb2\x72\xd2\x10\x63\xbb\x21\x94\xca\xa6\xdd\x7f\xc3\x7b\xf9\xee\xf4\xc0\x5c\xac\x57\xdd\x70\x67\xe6\xad\x69\x2e\xc8\xb1\xc9\xdb\xeb\x13\x7a\xd6\x44\xd0\x70\x51\x84\xf4\x5a\x65\x78\x39\x87\x64\xdf\xcd\x98\x97\x7d\x05\xf7\x99\xb0\x68\xda\xde\xf7\xd4\xbd\x62\xd5\xc6\xbb\x99\x9c\x53\x65\x4b\xdf\xf0\x73\x26\xdb\xc6\x37\x7d\x9b\x8a\x6b\xc5\xfb\x64\x86\x52\xf7\x20\xb0\x8e\xa3\x89\xed\x0a\xdf\x5f\x69\x33\xca\x2f\x80\x65\xce\x75\x33\xf2\xf5\xfe\xa2\x71\x66\x7e\xa3\x4f\x38\xab\xc6\x80\x81\x9d\xba\x71\x01\x03\x3b\xd9\x2b\x70\x23\x73\x28\xc9\xc5\x1a\xef\x29\x1c\x43\x35\x2e\xa6\xb5\x95\x92\x29\xe3\x06\x65\x48\xf6\xde\xf7\x81\x21\x85\xdc\x1b\xe1\xc7\xec\xdf\x27\xb5\x0e\xd9\x1c\xf7\x03\x37\x84\x54\x97\x67\xa3\x17\x6b\x53\x7b\x32\x3d\x8b\xfa\x67\xf2\xde\x2c\x8f\x55\x7c\xa6\xbd\x96\x27\xb3\xfe\x81\x78\x7a\xe0\xa1\x55\xca\x50\x7c\xa6\x5c\xce\x41\x7a\xc2\x33\x05\x73\x8a\xcd\x9d\xb7\xf9\x7b\x30\x30\x13\x9f\x45\xfb\xfd\x99\xd6\x5d\x8e\x32\x2b\x9e\x69\xdc\xa5\x28\x33\xe0\x99\xb6\x5d\x4a\xc3\xfd\x9f\xf3\xfd\xe0\xef\xaf\xd9\x96\xde\xf3\x6c\x60\x50\x2f\xf8\x9e\xd9\x16\xf2\x9e\xb0\xa1\xad\xf1\xa6\x6d\x98\x42\xf5\xef\x93\x5f\x0d\xb1\x9f\x67\xca\xa5\x1c\xa5\x76\x3d\xa1\x7e\x7f\x65\xfb\x12\x1e\xa4\x22\x25\xcf\x77\x9a\x08\xa9\x79\x3e\xd3\x5c\xcc\x49\x5c\xf9\x99\xe2\x23\xa7\xe8\xfe\x0f\xb4\xfd\xfe\x39\xbf\xcf\x7e\x7f\xd2\xdb\x90\x47\xeb\x99\x9a\x4d\xce\xc5\xed\x49\x0c\x41\x1c\xfb\x41\x0e\x52\x94\x19\xf8\x4c\xbd\x3f\x75\x6d\xee\x27\xce\x7d\xa7\xd0\x57\x7c\xa6\xf4\x8a\xf6\x16\x3e\x48\x37\x7a\xad\x47\x9c\xeb\x57\xc5\x60\x9e\x88\xfd\xa0\x9d\xfe\x4c\xd9\x16\x73\xf1\x78\xfb\xef\xf8\xff\x13\x0f\xb4\xdd\xdf\x5c\x3f\xef\xfb\x67\x5a\xb5\x31\x34\xc3\x33\xe7\xd7\x8c\x2f\xf8\xc3\x87\xe9\x05\xee\xf0\x21\xdd\xea\x41\x26\x92\xc2\x17\xf1\x49\xe4\x3c\x7e\xff\xf7\xf2\xe6\x49\x90\x37\xd2\x2a\x9e\x69\x26\x67\x5b\xaa\x4f\xaa\x68\x0b\x1f\xa9\xa1\xed\xfe\x27\x5f\xaf\xe2\x20\x0f\xfc\xeb\xb9\x78\x41\xd3\x44\x80\xb2\xee\xe2\x93\x0e\xb4\xfd\xc1\x39\x37\x80\x11\x36\x2d\xf1\x3c\xc4\xe3\x1f\xe4\x1f\x8d\x57\x7f\x53\x45\x51\xa6\x4e\x7c\x90\x7d\x14\xbd\xdb\x73\x80\xb0\x13\x80\x53\x97\x4d\xc5\x1b\x66\x9a\xf6\xc9\x16\xea\x03\x1f\xa5\x52\x62\xe2\x33\x2d\xfd\x64\xbf\xed\x93\x2b\x84\xa5\xfb\x6b\xd8\x90\x82\x37\xf7\xef\xaf\x12\x92\xfb\x9f\x08\x50\x7c\x21\x3e\x79\x6e\x60\x05\x70\xe3\x93\xa7\x54\xeb\xc5\xe3\xcf\xf9\x47\xcf\x2f\x5f\xdf\x5f\x45\xc9\x08\xf1\xc9\xf7\x6c\x57\x7f\xff\xa0\x2d\x78\xa6\x59\x9a\xb2\x74\xa9\xa7\xcc\x0d\xdc\xbd\x21\x0b\xbc\x89\xe2\xa6\x4f\x49\xf3\x7b\x6f\x80\x02\xc1\xb3\xf9\x77\x68\x45\x86\x7f\x2a\x91\x69\x13\xf7\x7d\xca\x9c\x7f\x31\xc1\x94\x39\xff\xea\x0d\x56\x06\xda\x7e\x7f\xce\xbf\x9a\x40\xcb\x34\xac\xcc\xad\x1f\x44\xff\xab\xb9\x31\x12\x8e\x7a\xf7\xf8\x58\xff\x57\xff\x0f\x08\x5c\xf8\xa6\xee\x28\x01\xf5\x30\x5a\xe3\xf7\xe9\x6a\x91\x99\xfa\x4c\xe3\x24\xd6\xe2\xef\xf3\xc4\x97\x84\xfb\x33\x8d\x93\xa4\x10\x56\x7c\xa6\xfd\x91\xb2\x37\x1c\xb2\x04\xb2\xc5\xd9\x53\x27\x02\x5e\x04\x5e\xc7\xe4\xd0\x5e\xa0\x69\xa0\xa4\xec\x05\x9f\x16\x4a\x0c\xed\x47\xd6\xcf\x33\xad\x97\xd4\xbd\xfd\xa7\xf1\x92\xda\x0b\x9a\x7b\xfe\x9e\xfc\xfb\xdc\x1d\x55\xea\x27\x82\x25\x31\x7a\x35\x91\x3e\x90\x87\x6c\x33\x44\x4b\x42\xf2\xfe\x46\xf6\x80\x75\xe2\xa7\x4d\xf4\x0c\x43\x8f\x0c\xa4\xe1\xe5\x6a\x13\x3d\xaf\xe5\x46\xfe\xd1\x4b\xfe\x30\x95\x40\xaa\xe4\xd3\xc6\xf7\x57\x7d\xc9\x97\x36\xb1\x33\x36\xf7\x47\xcb\xc8\xdf\x4f\xfe\xb8\x79\x3b\x32\xf7\xe8\xd5\xbe\xbf\xbf\x6a\x94\x06\xf8\x4c\x13\x27\x5a\x81\x79\xfa\x36\x7f\x77\x7f\x3d\x60\xfb\xea\xfb\x3e\xb7\x47\xb1\x3c\x99\x56\x42\x8c\x86\xaf\x67\x24\xb3\xb9\x3f\x58\x37\x72\x72\x3c\x88\x05\xd6\xe1\xfe\xe7\xfc\xed\x68\x78\xfa\x94\x0f\xaf\xed\xd4\x91\x28\xf4\x1a\x7f\x9f\xe3\x7b\x3b\x4d\x0b\xa3\x26\xcb\x97\x7e\x22\x83\xdd\xf0\xcd\xf9\x0f\xb3\x23\xe4\x22\x74\xb3\x3b\x06\x1a\xfd\xfd\x60\x78\x43\xdf\x8f\xf0\xfd\x55\xab\xe1\x47\xb6\xd6\x4b\xfe\x21\x5d\x2b\x9b\x9f\xc3\x39\xef\x00\xcb\x33\xb0\xfe\x66\x57\xd3\x1c\x49\x61\xf8\xf7\xf6\xfd\x55\xed\x7c\x7e\xa6\x31\x52\x9b\xb7\x27\x92\x16\xb2\xe5\xd1\x98\xf3\xb7\x9a\xfb\x4c\xdb\x24\xf6\xd7\x78\x93\x3d\x2a\xb9\x28\x3e\xe3\x82\xbe\x24\x7a\x9a\xb6\x4b\x4c\xa6\xbf\x69\xba\xc4\x62\xfd\x63\x9a\x2e\x71\x98\xfd\x32\xe1\x21\x78\xbb\xee\x11\x0a\x81\x5f\x98\xf2\xe1\xa5\x20\x4d\xd3\x26\x65\x2b\x24\xfb\xe4\x0f\xc3\xdb\x1f\x96\x8e\x9d\xff\xcf\xde\x7e\xa7\x63\x3f\xd3\xf0\x49\xdd\x04\x38\xed\x9e\x54\xcc\xaf\xa7\xd9\xd3\x82\x37\xe4\xb4\x7a\x5a\xb0\x3c\xdb\xe9\xf9\x71\x7f\xd7\xf7\x57\xaf\xd6\x56\xa7\xc9\x93\xb2\x09\x76\x7f\xc0\xff\xd5\x3f\xf2\x37\xb2\x37\xcc\xb4\x88\x5a\xf0\x06\x86\x97\x2e\xc8\xb6\x7b\x60\x0f\x25\x2b\x08\x47\xc6\x06\x17\xfc\xc7\x9c\x7f\x79\xf5\x07\xfe\x68\xf9\x34\xcd\xa7\x58\x8c\xbf\x03\x1b\xc0\x04\x77\x30\x53\xce\xed\xc9\x00\x5e\x0a\xf4\x81\xa8\xb4\x37\xf0\xb1\x32\x94\xd5\xbe\xe0\xd7\x73\x1b\x8e\x38\xd9\xae\x0f\x4c\x2f\x5b\x17\x0f\x83\xe4\xd6\x37\xa6\xe5\x95\x36\x2b\x6c\xd3\xf0\x6a\xf9\xf5\x3e\x73\x2c\x34\x5f\xf8\x11\x73\xf4\xf7\x73\x7d\x6d\xb6\x3e\x70\x88\x24\x9b\x2b\x0f\xf2\x53\xaa\x77\x00\x5d\x8b\xde\x51\xf0\x2c\x66\x6b\x84\xd3\x8e\x6b\xd9\x02\x7f\x9a\x71\xe9\x65\x41\xc0\x75\x3d\x2c\xc0\xa6\x55\x17\x1d\x53\x79\x2e\x28\x00\xa6\xf8\x2b\xc1\x1c\xaa\x3f\x90\x2f\x89\xd1\xef\x0f\x6c\x69\x9b\xd6\x4c\x4f\x9f\xdd\x97\x10\xf0\x56\x0e\x63\x42\xc0\x5b\xaa\x52\x42\x60\xba\x56\xff\x8a\x18\xca\xeb\x63\x46\xa6\x9b\xdf\x47\xbc\xe1\xe3\x2c\x49\xdb\xd4\xcd\xbb\x54\xb5\x84\x70\x74\x88\x31\xf8\x01\xe2\x74\x1f\x27\x42\x42\x80\x3a\xc4\xf0\xd9\xed\x89\x21\xea\x2a\x2f\x70\xda\x90\xbc\x11\x43\xd3\x18\x2b\xde\xf0\x61\xb8\x89\x27\x8b\x2c\x31\xd2\xf6\x80\xe3\x6a\xcc\x07\x93\x12\xcc\x08\x03\x54\xb9\xa9\x53\x9c\x40\xf6\xf0\x61\xf8\x29\x4e\x85\xba\x4b\x9f\x4c\x08\x3b\x75\x65\xbf\x27\xc4\x9d\xba\x0e\xc3\xa4\x88\x39\x29\x1d\x3e\x21\xa9\xb3\xcb\x40\x49\x71\x2a\xd4\x5d\x07\x6f\x52\x9c\x0a\x75\xab\x9f\x48\x54\x8a\x53\x9f\xee\x8a\x8e\xa4\x88\x60\xae\x32\xc9\x13\x02\x5b\x5d\x67\x80\x12\x22\x5b\x5d\xc7\x7c\x52\x9c\xfa\x74\x57\xb8\x25\xc5\xa9\x4f\x77\x9d\x82\x4a\x31\x63\x7e\xc5\x6d\xba\x08\x35\xff\xa9\x4f\x77\x1d\xfd\x49\x08\x95\x75\xa5\x3d\xa4\xb8\x62\xfe\x43\x0f\x0a\xbc\xc5\x43\x00\x43\x22\x6d\xb9\xf9\xc1\x7c\x21\x54\xb7\x31\x82\x96\x20\x0e\x8c\x50\x85\x91\x01\x0c\x17\xcd\x00\x2e\xb2\x2d\x7b\x89\x06\x50\x5c\xdd\x6e\x7c\xc1\x3d\x00\xc7\x22\x3c\x64\xd2\x75\xe9\xc8\x29\x4e\xa1\x14\xb6\xdc\x85\x34\xc4\xb5\xb6\xdc\xfd\xc5\xc9\x2e\x85\xe6\x29\x97\x7a\x0a\xfe\x02\x68\x7e\xcd\xfa\xe1\xac\xf5\x02\xa2\x5a\x5b\xf6\x1b\x70\xaa\x6d\x79\x68\xde\x53\x52\x74\x05\xb5\x52\xdc\xb9\xf2\xa2\x9c\x1d\x2b\x5f\xdc\x23\x56\xbe\x6a\x16\x90\x14\x3a\xc1\x96\xe2\x0e\x90\xaa\xfb\xc3\xca\x6b\xf3\x23\xd3\xaf\xeb\x78\x5c\x8a\x0f\x2c\x2d\xef\x4f\x64\xaa\xf5\x2d\xbb\x8d\xc4\x06\x91\x2a\xb3\xd5\x82\xb2\xb9\x12\xf2\xd5\xba\x64\x6d\x4a\x38\xa4\x15\xfa\xc7\xba\x4d\x0c\x30\x86\xae\xdd\x99\x70\x48\x2b\x28\x07\x2d\x25\x44\xbb\x43\xff\xd8\x5b\x89\x49\x6f\xa1\x77\x8f\x7a\xf0\x81\x47\x3d\xf9\xc0\x70\x5e\x88\xc7\x7f\x26\x9a\x02\xb2\x01\xfc\x41\x28\x98\x87\x80\x08\x60\x3b\xda\x32\x29\x10\xca\xe1\x0f\x90\x1f\xa0\x3d\x93\x18\x03\x97\x6f\x2e\xa5\xc0\xf8\x8b\x7a\x8c\x88\x90\x68\x93\xa4\x48\xcc\x09\x31\x48\xac\x0b\x63\x13\x62\xe0\x44\x0f\x43\xbc\x32\xc5\x8a\x39\x08\x84\xd8\xd0\x16\x08\x71\xc7\x88\xc2\x0a\x92\x42\x8a\x21\x8a\x17\x3a\x0c\x42\x42\xc2\xb6\x14\xdf\x40\x1a\x5d\xb0\xa1\x3d\x45\xf2\xa4\xe8\x28\x90\x12\x21\xd0\x08\x09\x58\x91\xa5\x9e\x12\x5c\x01\x61\xa4\x9f\x58\x36\x09\x89\x78\x7d\x13\x1f\x4a\x38\xab\x14\x46\x12\x4e\xc0\xd8\xb6\xec\xf1\x4f\x02\xe8\x2f\x38\xa5\x24\xd2\xc0\xb9\xa3\x30\x24\xaf\x12\x78\xd5\x96\xdd\x46\xec\x48\xbc\x2d\x65\x42\xec\x75\x98\xc6\x7b\x2b\xdd\x1f\xec\x98\xb3\x90\x94\x41\x49\xa6\xac\x69\x9c\x77\x79\xab\x52\x9a\xbc\xae\x95\xa1\xfe\x0a\x91\xea\x11\x91\x80\x1f\x86\x36\x75\x2a\x5c\x79\x93\x4a\x01\x8c\xe2\xdf\x09\x16\x5b\x50\x12\x66\x4a\x0d\xd9\x3b\x62\x56\x69\x5a\x48\xad\xbe\xda\x10\xc3\x51\xeb\xd4\x98\x17\xe1\xef\x1f\x20\x41\x03\x20\xbd\x39\x28\xdf\x31\x21\x35\xb1\x6f\xc6\xe2\xe0\x76\xd0\x42\x0c\x40\x18\xfd\x3e\x76\x83\xd7\x65\x70\x43\x56\x77\x00\x46\xe3\xfd\xb6\x63\x00\x89\x34\x44\xfc\x5b\x35\xf1\x33\xf6\x6c\x88\x77\x08\x80\xee\xdf\xc1\xdf\xbd\x0a\x07\x01\x56\x7f\x07\x48\x3b\x6a\xd5\x0e\xf6\xe7\xf7\x99\x90\xa5\xfe\xa0\x22\xda\xe8\x4d\x09\x3a\xa1\x8c\xda\x94\x4e\xc8\x0b\x31\x7b\x64\x4e\xf6\xcd\x84\x77\x82\xf3\x9a\x25\x9d\x58\x82\xa0\x09\x5c\x08\x80\x26\xf5\x77\x91\x87\x69\xd1\xf3\x46\x2b\x5c\xdb\x35\xf3\x7c\x6b\xd2\x9c\x33\x58\x67\x53\xf8\x3f\x65\x66\xda\x8e\x8f\x27\x39\x65\xa4\xce\xb6\xa8\x1d\x95\xe3\x8d\x13\xbc\x41\x0f\x70\x9e\x21\x7b\x4b\x65\x9c\x67\x68\xf1\x63\xfd\xa6\xdc\x97\xb5\xae\x51\x60\x1e\x36\xf9\x7b\x53\xc6\x61\xe5\xaa\xf3\x60\x29\x23\x18\xd2\x94\xfc\x95\x32\x14\xf0\x9e\xc4\xb1\x33\x52\xba\x9b\x7c\xc4\x29\x33\x65\x5a\x3a\x75\x2a\x81\x21\x02\x51\x4c\x81\xd3\xcf\x6e\xf2\x54\x70\x48\xac\xe9\xf4\x5b\x2a\x08\xdb\x36\x1d\xb8\x49\x85\x76\x98\x4e\xcd\xa6\x82\x88\x53\x93\x9f\x3f\x95\xa9\xd9\xcf\x07\x1f\x38\x0a\x96\xa1\x25\x11\x66\xb9\x90\x3a\xb7\x55\xbd\xf1\xc0\x39\xa8\x63\xb2\x09\x61\xf7\xd0\xf2\x47\x3b\x4f\x15\x49\x9f\x23\x7c\xec\x89\x54\x33\x3a\x55\x62\x6f\xaa\x48\xfd\x6f\xf9\x63\x61\xa5\x8a\x08\x5e\xcb\x82\xa3\xc2\x26\x6e\x52\xe1\x53\x45\xe0\xa6\x59\xbb\x68\x88\x6a\xb7\x22\xe6\xd8\x10\xd5\x6e\xe5\xe3\x97\x48\xad\x15\x3e\xf8\xcc\xa5\x75\x06\x66\xc4\x7a\x1a\xd6\xa5\x15\x3f\xb8\x11\x0a\xd3\xf9\xf0\xd4\x6e\x60\xac\x48\x61\x6f\x9c\x7e\x11\xe8\xed\xb9\xf8\xe0\x33\x4a\x47\x6c\xa5\x95\x8f\x3b\x31\x75\xf8\xa7\x5f\x2c\xb2\x27\xda\xc7\xd2\xa5\x7a\xe6\x27\x12\x5d\xbd\x70\x2e\x9a\x6d\xaf\x84\x54\xc2\xae\xef\x38\x37\x2c\xa3\x35\x75\x04\xfe\x86\xbc\xae\xa9\x3f\xfb\xef\x82\xa0\x69\x40\x66\x3b\xc9\x2d\x0d\xc4\xa9\x5b\x8d\x3f\xc9\x6a\x4b\x03\x07\x71\x5a\x95\x64\x18\x3b\x8e\xe2\x29\xef\x36\x0d\xd8\xb5\x9b\xb1\xb7\x97\x93\x0f\x3e\xcb\xba\x93\x44\x5b\xd0\x1b\xf0\xad\x35\x39\xf3\xd3\xde\x71\xe2\xcb\xca\xfe\x7e\x72\x14\xf1\xde\x9d\x39\xda\x4a\xa1\x4f\x3b\x22\x74\x4d\x69\x35\x69\x47\x84\xae\x29\x29\x2b\xed\x37\x26\x2a\x97\x7e\xda\x9f\xc4\xed\xf6\xc1\xef\xb1\x11\x30\x21\x8b\x31\xfc\xa6\xcc\xbb\x74\x20\xe5\xb8\x29\x55\x2c\x1d\x48\x2b\x2e\x8a\x8b\xa4\x03\x67\x99\x9a\x8e\xf7\xa4\xa3\x11\x0e\x19\x46\x07\xa2\xe9\x4d\x07\xff\xd2\x01\xe6\xe2\x40\x5d\x3a\x3a\xfb\x10\x63\x3e\x10\x46\x6e\x3a\x9b\x93\x0e\x24\x09\x55\x33\xb9\x03\x71\xd3\x3a\xc4\x5a\x8f\x93\x7d\x88\x0f\x1c\x0f\xc8\xcb\xbc\xe4\x78\x70\xaa\xd2\x16\xd3\x89\x04\xdd\x3a\xa4\xab\x9f\x48\x50\x68\x72\x82\xa5\x13\xa3\xb4\xa1\x85\x3a\x11\x28\x6d\x56\x8e\x2e\xe4\x85\x37\xa5\x78\xa4\x0b\xc6\x6e\x1b\x1f\xb7\x6f\xba\x12\x69\x56\xeb\x72\x65\xc8\x61\xa9\xdb\x17\x4e\xa8\xb5\x21\xb2\xbf\x60\x75\xf4\x4d\x06\xf4\x85\x1c\xa7\x97\x64\xbd\xce\x15\x00\xff\xac\xc2\x35\x05\x4b\xe8\xf2\x66\xa4\x1b\xfc\xe9\xa5\x59\xde\x89\x93\x15\x5c\x37\x4f\x6b\xdb\x2a\xbf\x2b\x47\x91\x1d\x71\xe3\x60\x5c\x97\xcf\x35\xdd\x90\x1b\x5d\x3e\x99\xc4\x54\x8a\xbe\x89\xd7\xde\x3c\x54\xa5\x13\x11\x09\x69\x0c\xa1\x6f\x62\x69\x37\xcf\x43\xea\x88\x44\x42\x1c\x21\x74\xef\x1f\x7a\xa2\xeb\x90\xdc\x80\xab\x39\x74\x1d\x61\x49\xf0\x2d\x87\x97\x2d\x0b\xdf\x57\x78\x99\x44\x70\x6e\x85\x6c\x1b\x87\xce\x98\x1e\x34\xfd\xe7\x62\x1f\x62\x69\xcf\xb5\x70\xba\x3e\xc9\x5b\xe2\x27\x1f\xc3\x2c\x6f\x38\xe0\xd8\xe5\xe3\xcc\x1b\x8f\xb4\xea\x74\x78\x5e\xf5\x2a\xf2\x07\xb0\xcc\xa4\xf1\x2e\x37\x71\xe6\x11\xf4\xae\x1c\x98\x1c\xf2\x83\x07\x1f\x6e\x9c\x79\x0c\xda\xf9\x83\x39\x1c\x40\xa1\x84\x73\x0e\x07\x3f\xf9\xa4\x2c\x66\xa4\x31\x87\x1e\x3f\xf6\x55\x0e\xf7\xcd\x07\x1a\xe5\x61\xa7\x1f\x9c\x66\xa4\x16\x87\x2e\x79\x9e\xe3\xc6\x4f\x3e\xdb\x36\xf3\xe0\x64\x56\x26\x52\x8e\x6b\xb6\x1f\x6b\x27\xf3\xc4\x56\x97\x4b\x2f\xc7\x8b\x0f\xb2\x3e\x41\x52\x40\xd7\xb9\xe5\x9c\xa0\xdf\x74\x45\xb1\x32\xcc\x93\xd0\x25\x8b\x73\x42\xc6\x6d\x4f\x1f\xc3\x2f\x27\xce\x45\x47\x53\x73\xc2\xc6\xee\x3a\x57\x9a\x33\x6c\xc5\x2e\x92\xca\x99\xd5\x39\x5e\x6f\x40\x08\x74\x9d\x05\xc9\x19\x7c\xad\xeb\x18\x4e\xce\xe0\x6b\x5d\x67\x21\x73\xe6\xb9\x7c\xf9\x7b\x72\xc6\x11\xf9\xb6\x7d\xdc\x11\x39\xe3\xb4\x64\xcf\xaf\x07\x3b\x1f\x7c\x08\x26\x43\xe2\xf7\x5c\xd5\x29\x7c\xaa\x5d\xf2\x3c\xe7\x83\x93\x1b\x02\x9d\x1b\x39\x7f\xd4\xaa\x5c\x38\xb9\xf2\x61\xda\xb9\xe0\xfc\x56\x2f\x71\xfb\x81\xfc\xca\x05\xf6\x63\x56\x7e\x54\x2e\xc4\x6f\xd1\x2a\x96\xb6\x36\xe4\x67\xa2\x05\x87\x05\x9b\x0e\x9a\xe4\x72\x10\x04\x01\x59\x00\xf5\x08\xfe\xe4\x06\x99\x2b\xb8\x97\x0b\x65\x8f\xbc\xd9\xb9\x82\xd7\xf6\xaa\x15\xa8\x81\xf1\x6a\xed\x9d\x0a\xa3\xad\x2b\x22\x9e\x2b\x0f\xea\xea\xfc\x65\xae\x3b\xdf\xf8\x70\xf4\x5c\x57\xed\x9d\x8f\x84\xcb\x75\xe7\x28\xda\x2a\x0d\x94\xd0\xeb\x47\xc7\xc8\x8d\xb5\x49\x94\x27\x91\x1b\xc8\xbc\xb7\x4f\x86\x59\x6e\xac\x68\xa3\x04\xe0\x4c\x5d\xa7\x2b\xa9\x33\xf7\x80\x85\xd7\x01\x99\xdc\x59\x01\x45\x27\xe1\x73\x67\x2c\x59\xce\xbf\xdc\x33\xd6\x59\xe9\x0b\xb9\x43\x7d\xee\x0a\xe0\xe5\x01\xf7\x7c\x93\x8f\x24\x8f\x1b\x34\x2b\x5f\x42\x1e\x50\x6d\xfa\xf8\xa8\x9c\x79\x87\x9b\xa5\xcb\x59\x90\x77\xe4\xd3\x75\x49\xc9\xbc\x43\x27\xef\xb2\x8c\xf3\x01\xd3\x3c\xa9\x8a\x4a\x3e\xe0\x49\xed\x4a\xf4\xcb\x47\x5b\x6b\xfb\xe9\xf4\x80\x51\xd4\x95\x8e\x95\x8f\x93\x70\x88\x53\x1c\xd7\x7a\xe3\x33\x97\xe3\xa6\xf5\xf0\x31\xc4\xf2\x49\x25\x4c\xce\xcd\x7c\x46\xac\xbe\xb2\x37\xf3\x09\xc0\x86\xdc\x87\xf9\x3c\x19\x6f\x12\xfb\x39\x71\xe4\x6c\x6c\xc2\xd8\x79\x07\x7e\xf2\x79\x70\x81\xa7\x0d\xe5\x67\xe5\x0b\x72\x62\x28\x86\x92\xef\xdf\x67\x00\xe5\x7b\x43\x1e\xd4\xab\x4d\x2b\x47\xf8\xba\x37\x44\x01\x9b\x3b\x80\xd3\xbf\xf8\x77\x64\xed\x04\x77\x30\x10\xd3\xf5\xef\x88\xea\x7d\xbc\x37\xf9\xe6\xd1\xcc\xec\xf7\x29\x74\x5e\x0f\xae\xef\xaf\x54\xc4\xb9\xee\x0d\x71\xdd\x8f\x5f\x2c\xdf\xd8\x47\xcd\x02\xe5\x46\xde\x8e\xbc\xaa\xf9\x86\x42\xa2\x3c\x9f\x7c\x87\x35\x25\xf5\x08\x43\x25\x4b\x12\xdc\xa1\xa0\x83\xa8\x36\x02\x99\xc9\xed\x86\x44\x1d\x0f\x80\x44\x0f\x6d\xd3\x3b\x20\x8e\x35\xdc\xdf\x0d\x94\xf8\x7d\x64\x42\x46\xd1\xf1\x1d\x27\xd2\x87\x71\x14\x19\x39\xd6\x80\xb1\xbf\xd3\xb2\xf2\x0d\xaa\x6e\x4a\x30\xcf\x37\x52\x69\x36\xb1\xc8\x1b\x32\x24\x47\xad\xfb\x0d\x0b\xd8\x49\x87\xf9\x8e\x0c\x96\x0a\xcb\xb0\x88\x9b\xb2\xa8\xf3\x3d\x95\xb4\xbc\x79\x12\x70\x82\xa9\x68\x4b\xbe\xd3\x54\xd0\xc3\x66\x42\x40\x3a\x8c\x72\xc5\xf2\x9d\x68\x85\x7b\xa1\x40\xd0\x0a\x8f\xe5\x7b\x6a\x13\x71\x78\x61\x51\x81\x47\xde\x9b\x7c\x27\xc4\xb7\x87\x7f\x7f\x56\xf2\xd9\x6a\x67\x26\xa7\x09\x22\xa4\xaf\xc8\x96\xce\x37\x58\x4e\xd6\xf1\xb3\x7c\xe3\xa4\x4a\xcd\x42\x4a\xe6\x1e\x4c\x7e\xd0\x69\xf6\x69\xc8\x8c\x94\x32\x13\x6b\x9e\xb4\xa8\xac\xe1\x7c\x67\xb2\x06\x4d\x29\x23\x3b\xd4\x53\xc6\x29\xbe\x16\x73\xf8\x89\x64\xba\x4b\xf9\xfe\xaa\xd9\x6b\x52\x88\x51\x8d\x86\xb2\x36\x45\x7c\xf9\x9e\xda\x57\x0e\xde\xab\x28\x6a\x93\x4c\xe8\xa8\x69\xe3\xb4\xde\x7c\xc3\x0e\x0b\xe6\x20\x77\x59\x46\xab\xda\x98\x4f\xf1\xef\x88\x98\x46\x41\x50\x23\x52\xb2\xdc\x4e\xec\x50\x1d\x4c\x7d\x78\x3e\xd0\xa2\x54\x92\x6a\xd6\x22\x34\xd0\xba\x18\xe1\xdd\x10\x54\xee\x82\x11\xf5\x14\x86\xa2\x46\xf9\x66\x71\x04\x4f\x02\x99\xda\x59\x71\xed\x7c\xa3\x58\x42\x35\x4b\xeb\x11\x68\xd1\x22\xf4\xdf\xe5\x1d\xe6\xbb\x57\xec\x36\xff\x8e\x30\xb4\xb8\x28\x52\x9b\x63\x33\xe5\x4f\x0d\x3e\x07\x93\x51\x3f\x90\x64\xe9\xf6\xf9\xce\x63\xcc\x37\x6c\xb7\xfc\x22\x44\x64\x42\x07\xb7\xa1\x04\x45\xf3\x0b\x78\x92\x86\xc9\x90\x89\x05\xde\x8a\x83\x1e\x6f\x0d\xc8\x3c\x67\xc5\x22\x33\xf2\x9c\x63\xd8\x4c\x77\x63\x52\xc6\xbb\x3d\xd0\x16\xd2\x91\x4a\xb0\x49\xb2\xde\x88\xd9\x04\x49\xeb\x9b\x0a\x8f\x52\x87\xf2\x3d\x15\x0d\xa7\xdc\xe6\x7b\x07\x8e\x4d\xf8\x30\x4f\x2d\x33\xef\x9d\x20\xfb\xfb\x8a\x5c\x45\x4d\x01\x1e\xa8\xda\xb5\x86\xfb\xdc\x58\x5b\x13\x80\x08\xdd\x8f\xe6\xf1\x1e\xce\x50\x0f\xa6\x72\x90\x83\xf7\xc2\xd4\x23\xb3\xb5\xab\x7b\x9a\xc7\x59\x59\xc5\x79\x65\x2a\xbf\xb6\xf2\xb1\xbf\xb3\x4b\xf3\x8d\x82\x80\x4e\x79\xcf\x4c\x65\x6e\xb6\x4b\xee\x69\x73\xc6\x64\x98\xce\x69\xc6\x16\x23\xf5\x24\x4e\xd4\x23\x4d\xe5\xd7\x3a\x4f\x01\x9e\x75\x20\x30\x23\x91\x39\x87\xe0\xdf\x1b\x12\x06\xdd\x61\x67\x07\xee\x11\xf1\xf2\xea\x0e\x0e\xe6\x74\xab\x7d\xa1\x43\x4d\xe1\x04\xe1\x79\x67\x9c\x73\x3b\x17\xef\x56\x9c\x0d\xcd\xc9\xc2\x7a\xea\xda\x31\x98\xe5\xa2\xfe\xcf\x6b\x19\xa7\x39\x13\x55\x28\x21\x23\x07\x3a\xeb\x2c\x60\x46\x0a\x74\x2a\xd1\x03\x0c\xa4\x00\x69\x02\x74\x2b\xea\xa4\x58\xbe\x51\xfa\x27\xbc\x28\x71\xda\x47\xd5\x8b\x70\x61\x06\xd1\xef\x3f\x68\xeb\xf5\x7b\xcd\x40\x2f\xdc\xcc\x60\x16\x4a\xee\xc8\x01\x44\x08\x77\x42\x56\xab\xa6\x74\xcf\x45\xd9\x4c\x17\x50\xdc\x43\x15\x04\x37\x39\xda\xeb\x83\x83\x73\xd0\xa4\x6f\x60\x3d\x7a\x48\xa4\x79\x67\xb7\x17\xed\xaa\x4b\xfa\x61\xa4\x3d\xdf\x0f\xa5\x44\xd1\x17\x4f\x84\x70\xd6\xa4\x60\xab\x8e\xe0\xed\xf3\x14\x7e\x21\x3c\x3c\x95\xe6\x86\xda\x5c\x98\xfc\x23\xb9\xf3\x4c\x29\x17\x65\x11\xdc\xcf\x09\x1c\xba\x73\x32\x34\x6f\xb6\xe7\xe6\x8c\xb4\xce\x0f\x79\xb2\xb6\x1f\x12\xcb\x7b\x92\x46\x83\xc4\xf2\xa0\xdc\xa3\x8c\xc4\xf2\xd9\x43\xd7\x03\x84\xd4\x5e\x2f\x2c\xb4\x0f\x3d\x18\x98\x91\x5f\x40\xa0\x40\x7b\x01\xd9\xdf\x13\x04\x0f\xb9\x14\x49\x7f\x01\xcf\xa8\x14\xcb\xe7\x53\x8f\x52\x6d\xec\x0e\x19\xe2\xc8\xff\x4e\x3a\xb8\x91\x91\xff\x1d\xaa\x68\x17\xf9\xdf\x31\xa8\x04\x44\x7e\x42\x21\x08\x1a\x31\x30\x32\x51\xdc\x25\x19\xf5\x70\x1f\x4b\xda\x09\x88\xc0\xa3\x1e\x42\xe4\x34\xcb\xb3\x22\xfe\x19\x49\xde\x49\x3e\xf5\x8c\xa4\xe9\xd9\x81\xf0\x10\xa9\x92\x88\xeb\x20\x2d\x3a\xa9\x16\x5e\x46\x5a\x74\x96\x2f\x36\x33\x2d\x7a\x28\x4d\x22\x23\x0f\x7a\x02\xe9\x2f\x90\xe7\x25\x71\xf3\x2c\xd5\xcf\x40\x52\xf5\x13\x1b\x41\x26\xf4\x9c\xb7\x66\x85\x7a\x8c\xc5\x40\x22\xc2\x99\x8c\xfa\xb4\x83\xcf\xf8\xf7\xb5\x98\x7e\x80\x54\x60\xaf\x25\x02\x9c\x8a\x79\x64\xa6\x42\x37\x1d\x23\xcc\xcc\x7d\x0e\xd6\x5f\x91\xec\x3c\x1f\xa8\x0b\xa8\x8b\x9b\xb6\x10\xb2\x99\xe3\x10\x91\x23\x9b\x39\xbf\x30\x0d\xe5\xb0\xda\x3e\x65\x3a\x73\x4e\xe2\xdf\xc8\x4f\x0e\x72\xa8\x65\xe4\x27\xa7\xad\xb9\x07\x64\x0d\x68\x5f\x21\x3f\x39\x9a\x35\xad\xfc\x64\x53\x4b\x59\x20\xab\xc3\x02\xde\xe5\xa5\x2c\xd4\x70\x25\x72\x56\x86\x72\xf6\x08\x28\x17\x20\x86\x0f\xcf\x62\xd6\x29\xa1\x8c\x0c\xe5\x89\x36\x8f\x30\x60\x5c\xf9\x05\xe8\x3e\x52\x88\x91\xa2\x9c\x55\x93\x28\x3f\xd4\x28\xb3\x21\x22\x2f\x34\x40\x93\x7f\x97\x6a\x80\xe0\x73\x6d\x1e\xa0\x2e\x06\xae\x11\x96\x4a\x29\x99\xf1\xd0\x19\xac\x93\x38\x19\x59\xc4\xd9\xe6\x38\xb2\x88\x67\x9f\xc2\x73\x65\xde\xb4\x94\x05\xa4\x02\xc7\x60\x4d\x19\xb9\xc0\xd9\x36\x26\x72\x81\xb3\x4d\x6d\xe4\x02\xcf\x0f\xd4\x25\xe2\x13\x76\xe3\xc1\x01\x9b\x8a\x89\xa9\x41\x94\xcb\x44\x44\x2e\xef\xec\xc0\x0f\xa8\x8b\x47\x0f\x09\x4c\x26\xf7\x08\x76\x25\xd5\x9a\xd9\xba\xf6\xac\x22\x3b\x77\xf6\x28\x54\x76\x9a\xb1\xa6\x06\xb8\x9e\x8b\xf4\x62\xe4\xe7\x86\xa1\x7c\xa5\xcc\x04\xdd\x16\xbd\x1a\x1d\x50\xcb\x27\x83\x8c\xdc\x2c\x1f\x7a\x66\x46\x6e\xb0\xea\x8b\x94\xdc\x97\x27\x12\x29\xb9\x59\xd5\x1f\x32\x52\x72\xe7\x07\xc2\x4b\xe7\x81\xa4\x9f\x64\xdc\x65\x24\xec\xce\xaf\x3d\x03\x2c\x93\x7c\x0f\xc8\xd8\x9d\x2f\x68\xe9\xa7\x26\x9d\xed\xef\x40\xca\x6e\x57\x06\x7f\x46\xca\xee\xfc\xc0\x0f\x90\xc5\x67\x52\x19\xc4\x80\x70\x88\x7c\xa8\x6c\x23\x14\x49\xba\xd9\x7e\x3d\x24\xe9\xce\x1e\x3d\x24\x50\x62\x82\x46\x88\xbf\x5a\x6e\x0d\x32\x05\xb7\xc9\x9f\x2d\x46\x90\x96\x1b\x82\xb9\x27\xd3\xf0\x2c\x56\xe0\xe4\x4b\xe6\x7d\xfb\x81\x3d\x25\xac\x40\x77\x6e\xee\x10\xba\x73\x91\x36\x81\xb4\xd7\x30\x2c\x42\x8e\x45\x38\xea\xf0\x28\xe0\xce\x02\x11\x79\xab\xc3\xa2\xf5\xa0\xd3\xc8\x3d\x1e\x44\x82\xd7\x1d\xee\xcf\xac\xaa\xbe\xf9\x39\x60\x08\xbb\x4d\x97\x99\x57\xf6\x04\x27\x93\x5e\x87\x54\xd3\xf0\xc2\xe2\xb9\x48\xd5\x1f\x54\x0e\x29\xa0\xce\xce\x07\x5a\x5a\x9c\x5b\xb7\x1f\x9d\xc9\xa5\xc9\x32\xe5\xa4\xde\xe6\x69\x9d\x24\x56\x73\xcf\x13\x89\x6a\x66\x1b\x54\x9f\xbd\xe9\x4f\x6a\x39\xd6\x41\x2e\xb0\x0d\x63\xfe\x02\x39\x1a\x91\xd7\xc2\xb4\x60\xbc\x18\x30\x30\x01\x5f\x30\x09\x2c\xc7\x50\x4e\xb3\x5b\xe8\x5c\x20\x3f\x0b\xce\x0b\xfc\xd8\x5b\xfa\x02\x17\xb1\xb0\xbf\x38\x27\xb3\x99\xa9\x4f\xa7\x6a\x86\x4c\x05\xda\xc4\x34\x15\xe8\x56\x4d\x1c\x37\x8c\x1a\x77\x48\xfd\xd9\x1a\xf8\x33\xf5\xe7\xd4\x5e\x1d\x50\xc7\x31\xde\x6f\xa4\x9d\x1b\xc4\x1b\x23\x7a\x25\x1f\x6e\x62\xe9\xcb\x0f\xd4\xdf\xd4\x3c\xe9\x87\x68\x93\x35\xf8\x3c\xf0\xec\x98\x0f\x4c\xf5\x37\xe5\xe1\x2e\xb1\x8b\xab\x3b\xe8\x38\xa4\xab\x49\x30\x04\xfe\xfa\x7e\x61\x49\xbb\x7c\x69\xb8\x96\x73\x0f\x96\xde\x5b\xe4\x41\x19\x9f\x8f\x11\x50\x58\x29\x6b\x93\x83\xad\x20\x3d\x78\xee\x91\xa4\x07\xf0\x3a\x14\xbf\x40\x18\xbb\xda\x8d\x30\x64\x3d\x80\xdb\xe1\x63\xb9\x94\x0d\x8e\x52\x1b\xe5\x65\xdb\xa8\xea\xf9\x05\x2a\xb8\xc5\x3d\xcc\xb5\x96\x90\x2a\x1b\x14\xdc\xaa\xf3\x37\x65\x9b\x1a\x6e\x91\x23\xb3\xa0\xa2\xd7\x9c\xb6\x80\x0c\x20\xe0\xcf\x16\x29\x48\x72\x4e\xaf\x49\x04\x9a\xb4\x1f\x95\xa6\xa0\xb0\x57\x56\xc2\x69\x41\x29\xaf\x30\xaa\x47\x58\xb3\xf4\x0b\xd4\xa2\xba\x80\xa6\x06\x5c\xdd\x23\x29\xdc\xbf\x53\x15\xfc\xe8\x2c\x85\x35\xbf\x5a\x34\xa2\xc2\xc5\x31\x0c\x35\x52\xcf\xba\xc7\x84\xde\x15\x7e\x12\x1e\x2a\x5b\x24\x0a\xd4\x3b\xf2\x13\x93\xe1\xc5\x29\x49\x5d\x9c\x50\x36\x9c\x92\x1c\x45\xab\x14\xb9\xee\x5a\x67\x64\x27\xd6\xe6\xef\x29\x61\x92\x26\x1c\xb1\xc5\x5f\x1d\x40\xbd\xa9\x5a\xb4\x48\x84\x78\xc0\x03\xc7\x4e\xfd\x3b\x2d\x04\x0f\x30\x55\xb0\xcd\x4b\xc4\x5c\xa7\xe4\x55\x4f\x6b\x03\x0a\x44\xea\xf3\xc1\x20\x7d\x12\x53\xd4\xe6\xc1\x3d\xf7\xb0\xd6\x44\x18\x46\x66\x74\x32\xa1\x21\x72\x55\x9b\xf7\x4b\x26\x16\x45\x48\x19\xee\x9a\xea\xf6\x02\x41\x43\x64\x68\xae\x5d\xb3\xa6\x36\xde\x44\x05\x19\x58\x33\x5a\x33\x6b\x2d\xf9\x77\xee\x9e\x64\x90\xd6\x6e\x31\x48\x34\x19\x9a\xdf\x80\xcc\x0a\x9a\x54\x01\x77\xf7\xef\x65\x11\xbf\xc6\x2c\x58\x6a\x13\x22\xfc\xb5\x0a\x0f\x97\xad\xac\xa5\x76\x0f\x94\x9b\xc6\x1b\xd5\xeb\x26\x98\xa6\x3a\x9d\xb6\x57\x8f\x0f\x81\xd6\x07\x95\x6b\x97\x84\x17\x9c\xe1\x1b\x2f\xf2\xa8\x0b\x4a\xf5\x59\x19\x89\x14\xd4\x95\xde\xc3\xe4\x07\xdc\xa3\x49\xcb\x5d\xa9\xab\x26\x77\x01\x12\x6b\x1e\x83\x3b\x2e\x69\xf9\x1a\xd7\x5f\x3d\x2c\xfd\x39\x6b\x39\x1a\x0b\xb7\xf9\x03\x9c\x2d\x8e\x9a\x28\xf4\xe9\xcd\xb8\x6e\xcc\xe5\x11\x8c\x2b\x6e\x65\x92\x6c\x5c\x7f\xb7\x51\xcd\xce\x8b\xd7\xb9\x78\x1a\x70\xa9\xcf\x59\x34\x4e\xaf\x70\x77\x9b\x0a\x46\xd6\x90\x9d\xb6\x91\x67\xdd\x49\x52\x59\x68\xe9\x90\xad\xa6\xfa\xbe\x54\x3b\x0f\x4a\x85\xc1\xab\xb5\x14\x58\xb3\x68\xc6\xc3\x8b\xf0\x40\xfd\x74\x08\x6f\x83\x7a\x50\xf7\x83\xb5\x7a\x9a\xf8\x80\x1e\xe4\xe5\x9e\x0a\x6a\xca\x66\xe1\x03\x24\xf6\xea\xe0\x20\x08\x7e\xe1\x64\x8f\x82\x7a\x69\xa8\x55\x9f\xec\xa4\x31\xf3\xe8\x7d\xd1\x98\xa6\xb1\xd3\xaf\x67\x6c\xee\x8c\x34\xb8\x7d\xc1\xae\x14\x94\x07\x5d\x5e\xc6\xdd\x01\xe7\xe9\xab\x0d\x06\x61\x1e\x7e\x40\xd0\x74\x21\xea\xa0\x0f\x42\x30\xe2\x6c\x55\xf6\x24\x96\x8a\x6a\x79\x7c\x90\x66\x2d\x58\x98\x68\xb0\x09\x0f\x27\xd7\xc6\x0c\x82\xfe\x5c\xb3\xa0\x93\x5e\x38\xb3\xc1\x93\x96\xa9\x81\x3c\x51\x48\xed\xf5\x02\xfd\x20\xaf\x2e\x88\xeb\xfc\x33\x51\x84\xe3\x4e\xf1\x05\x21\x39\x96\xa9\x03\xe7\x9d\x74\x80\xba\x6c\xf0\xe7\xd6\xe6\xf1\x10\x21\xae\x43\xcb\x70\xd1\x1e\x32\x3f\xb9\x38\x85\x21\x90\xaf\x82\xa2\x04\xee\x01\x3c\xcd\x3b\xfb\x42\x28\xf2\xf5\x3e\x4b\xee\x6d\x7e\x01\xa7\x56\xbd\x93\xe9\xc1\xf5\xce\xbf\x68\xee\x78\x93\xdc\x24\x05\x0b\xb4\xa5\x72\x9a\xfe\x6e\xd0\x82\xc7\xbc\x33\x5f\xd0\xb4\x6e\xec\x65\xe3\x85\x09\x0b\xc9\x9b\xfd\xc6\xd1\x53\x2b\x5f\x37\x63\xeb\x16\xb2\x37\x7d\x39\xd9\x63\xc0\x91\x61\xcc\xdd\x98\xc6\x0b\x48\x6e\xed\xac\x07\x70\xea\x16\x15\x63\x2d\xdb\x43\xbf\x9a\x19\x2f\x8b\x6f\x34\x93\xcb\xc3\x6d\x64\xe4\x3e\xdc\xfd\x1a\xf4\xe1\xbc\x44\x91\x0f\x79\x94\x09\xec\x81\xae\x30\x3c\x04\x59\x94\xe7\x05\xd7\x6e\xf5\xea\x3c\x6b\x6f\x7f\xba\x64\x8d\xcf\xfa\x31\xab\x0a\xf3\xb5\xaa\x6e\xfe\x29\xbc\x5f\x48\x67\x1d\x0a\x6f\x13\xaa\xba\xfe\xa1\xf0\x36\xa1\x21\x05\xbf\xf0\x36\xa1\x2c\xe7\x5c\x09\x74\xdd\x0e\xbf\x40\xf5\x41\x8c\x34\x2c\x3d\x54\x6c\x11\xd7\xfc\x44\xeb\x17\x01\x6a\xa6\xca\x60\x96\x80\x08\xbd\xb2\x16\x0a\xea\x86\x66\x15\xaa\x2a\x61\x65\x57\x78\xc8\x40\x3b\x2a\xa9\x4d\xf6\x60\x3c\x40\xed\x8c\x1f\x7f\x4d\x09\x4b\xed\x14\x9b\xc4\x9d\x3e\xf3\x81\xe6\x0d\xad\x52\xb9\x5f\x05\xb5\x4a\xb3\xca\x41\x95\x10\xb9\xd7\x44\x74\xb8\x5c\x27\xa9\x9a\x6a\xe1\xdd\x39\xc1\x0a\x06\xae\xca\x99\x0f\x84\xb8\x14\x51\xfa\x4c\x3d\x24\x72\x20\x69\x39\xb8\x2b\x67\x7e\xa1\x3e\xd3\xca\x41\xf7\x1b\x0d\x50\xf9\x05\x52\xbe\xd4\x43\xdc\x8c\x33\xbb\x10\xaa\x12\x31\x61\x20\x0e\xb4\x85\x08\x84\xe5\x95\x3e\x55\x78\xa5\x8d\xca\x80\x94\x40\x47\xab\xb5\x05\xde\x6a\xa3\x4a\xb5\x85\x97\xda\xe8\xc6\x82\xc2\x3b\x6d\x92\x67\x9d\x51\x56\xc1\x8b\x8d\x30\x7d\xd5\xf6\x47\xc2\x60\x6c\x5e\xfc\x4c\x0b\x42\x68\xcc\xf0\xc8\x0c\xb7\x59\xcc\xd9\x00\xb2\x2e\x8c\xfb\x87\xff\xc4\xb4\x92\x59\x29\x29\x1b\xc0\xb5\x50\xea\x01\x8e\xdb\x68\xda\x28\x11\x3d\x0a\xa2\xc2\xa5\x97\xf6\x81\x3b\x6c\xb2\x6a\x76\x15\x96\x89\xad\x4a\x3a\x2a\xb8\xb1\x66\x3e\xf0\x1b\x74\x6f\x74\xf7\xb9\xa3\xfa\x8c\xdb\x27\xcb\x15\xa8\xbd\x18\x92\xc6\xac\x8c\x32\x99\x7a\x2a\xa1\x14\x5e\x2a\xb9\xcd\x4f\x62\x44\x05\x17\xcd\xb8\xd8\x4e\xe1\x3d\x33\xc1\xfa\x13\xee\x99\x09\x38\x5c\xfb\x79\x80\x65\x12\x47\xc5\x3d\x32\x2e\xcf\x53\x78\x8f\xcc\x10\x7b\xc4\x35\x32\x79\xf3\x8e\xac\x28\xcf\x63\xce\xd4\x28\xcb\xf4\x3e\x53\xc6\x93\xe9\xa0\xd1\x04\x97\xf6\x1c\x96\x93\x56\x10\xe1\x46\x18\x5d\x73\x51\x02\xf3\xb2\x65\x84\xe0\x3e\x98\x24\x7f\x50\xe1\x85\x30\x6f\xb6\xd3\x98\x9a\x69\xd2\x6a\x4c\xa6\x13\xcc\x8d\x1e\x4c\xa9\x29\x01\x6a\xa8\x8e\xed\x96\xd0\xe3\xbb\x26\x51\x09\x7d\x4d\x42\x43\x2c\xa7\xad\x99\x42\x07\xe2\x8b\x7b\xe0\xa5\x00\xfe\x00\x55\x91\xa2\x47\x84\x08\x90\x3d\x10\x50\x97\xad\x25\x73\xb6\x0e\xf2\x8f\xee\x00\x8a\xd1\xeb\xf7\x35\x07\x43\x80\xba\x48\x51\xed\x81\xba\x11\xb2\x0e\x02\x9c\xb0\xca\x0e\x2c\x28\x69\x9c\x74\x0c\xbf\xa0\xa6\x71\x56\x2a\x60\x09\x83\x69\x2c\xee\x8f\xa7\x51\xcc\x71\xe0\x63\x7d\x31\x6f\x1e\x20\x75\x87\x70\x90\x16\x73\x24\x38\x48\xb3\x5c\x4e\x25\x20\x3b\x21\x26\xb7\x17\x96\xdd\x43\xfe\xfe\x6a\xdd\xb4\x85\xca\x05\x36\x57\xc3\x5e\x01\xb2\x96\x09\x95\x0a\x74\xa4\xa4\x84\xa9\xde\x26\x2b\x20\x01\x87\x2e\x5a\x32\x53\x44\x7a\x82\x12\xb4\x4a\x80\x3a\xab\x2c\xba\x82\x0c\xe6\x68\x8b\x3b\x1c\x10\x68\x26\x4d\xb8\x60\xbb\x67\x30\xd5\xdb\xbc\x99\x81\x1c\x8b\x8d\xbb\xc3\x9d\x0f\x34\x85\x83\xaa\x66\xf1\x10\x28\x7f\x25\x0d\x39\x1c\xf0\x92\x18\xcb\x07\xb9\x9c\x3c\x1d\xb8\x8d\x68\x3e\x50\x97\x27\xbd\x97\xe6\x73\xac\xcc\x66\x31\x7d\x62\x16\x16\x89\x70\xda\x66\x2f\xec\xb9\xa0\xf6\x07\x20\x5e\xe9\x69\xe1\x64\x28\xc7\x9b\xfc\x3c\x20\x0b\x34\xef\xa9\x40\xa7\xe1\x59\xb2\x22\x40\xf5\xef\x34\x98\x2d\x7c\x98\x23\xf9\xe2\xdd\xd7\x9a\x95\x60\x60\x8e\x83\xf5\x7c\xdc\x71\xe4\x40\x72\xe1\x8d\x46\xe3\xc5\xea\xe0\x74\x8d\xe6\x6c\x17\xca\xcd\x1a\x71\x17\xb3\x67\x04\x24\xcf\x4e\xbd\x38\xd5\x45\x28\xcd\x26\xee\xed\x5d\x7a\xac\x84\xa9\x13\xa7\xe6\x2d\x75\x53\x75\xf4\x16\xb8\x17\xd0\x9a\xd6\x0d\x54\x9b\xd1\x40\xe3\x1d\x96\xca\x37\x31\xed\x0e\x50\x3c\xcd\xe2\xe4\x46\xcc\xdf\x42\x1a\xfa\x6f\xb4\x46\x76\x53\xfd\x91\x3d\x15\x1e\x82\xac\x0f\xa0\xee\xea\xee\x81\x12\x9e\x85\x67\xd1\xdb\xb3\x36\xa1\x1f\x30\x7a\x59\x7e\x26\x80\x9e\xf2\xae\xc6\x56\xc2\xc3\xf3\x2f\x9a\xd0\x43\x2f\x86\x35\x1f\x38\x81\xa3\x89\xf3\x41\x76\x9c\x31\xf2\x30\x3e\x20\x1c\x3f\xf0\x9e\x7a\x95\xe1\x02\x56\xf2\x4d\x41\x25\x73\x97\x7f\x2b\xa8\x5d\x1e\x8b\xde\x8f\x1b\x64\xbc\x98\x10\x8b\x99\x0f\xf3\x51\x14\x33\x4f\xca\x17\x2a\x38\x70\x10\x95\x03\x55\x22\x6f\xe1\x14\xad\xb3\x78\xb9\x32\x65\x0b\x6a\x97\x67\xe5\xce\x94\xc8\xfa\x75\x5a\x11\xd4\x2e\x0f\xaa\x0f\x53\x22\xf3\x5c\x95\xdd\x53\x58\xbd\x3c\xeb\xb2\xc6\x12\xa9\x56\xcb\xfb\x10\x71\xda\x5b\x19\x0f\x25\x32\x7f\x41\xd9\x35\x25\x22\xf3\x55\xc7\x43\x4b\x0c\xd4\x52\x86\x5f\xb8\x40\x86\x82\x39\x92\x0a\x24\xf5\x63\x64\x2e\x81\x5f\x40\x4d\xb1\xe0\xdf\x2b\xb1\x96\xf5\x00\x0a\x6c\x71\x7b\xed\xc6\xa2\x07\x03\x09\x85\x02\x1a\xfe\x52\x85\x8b\x4b\x5c\x19\x12\xc6\x73\x24\xde\xd4\x4e\x58\x58\x83\x88\x3a\x70\xd1\x58\x4a\x6b\x21\x05\x73\x62\x3e\xb0\x5f\x00\xe9\x49\x44\xa3\x4e\x45\xd0\xbd\x2c\x05\x75\x2a\x72\x7c\xfd\xce\x6c\x07\xf7\x47\x05\xd5\x6d\xba\x2a\x45\xca\x91\xa9\x0a\x62\xf6\x28\x24\x91\xbd\x79\xe3\xf2\x9e\x4a\x2f\x89\x19\x61\xa4\xe8\xf6\xaa\xd6\x2a\x10\xe8\x1e\xcd\x7e\x61\xae\x5b\x33\x12\x33\x64\xbe\x8c\xf4\x48\x05\x56\xca\x1a\x2f\x43\x6b\x4a\xf8\x29\xb8\x0c\x2d\x55\x2f\xdb\x47\xa1\x15\x12\x96\x42\x3b\xfc\x06\x25\x96\x69\xa7\xf0\x1a\x38\xc1\xc0\xc3\x8f\x66\xc4\x11\x57\x5e\xd8\x29\x88\xcb\xd0\x72\xf4\x8e\x2c\x94\x60\xe2\x09\xbc\x0b\x6d\xbc\x96\xb6\x2e\x4d\x41\xf3\xe2\xd1\x22\x79\xcb\x70\xc4\x27\x3a\x5c\x81\xab\xd1\x52\xf2\x10\xcb\x79\x6a\xd4\x23\x19\x21\xbe\x3a\x00\xf5\x55\x83\xb0\x26\xe1\x07\xb4\xc0\xbd\x56\x95\x69\x47\x7a\x01\x75\xc9\x8a\x67\xdd\xa0\x5e\x79\xd6\x8d\x77\x86\xba\x0d\x72\x95\x99\x89\x3b\xcd\x72\x34\xf5\xa1\x2c\x99\xb5\xdc\x48\xad\x57\x19\x17\x05\xd7\x91\x65\x45\xdb\x4a\x6c\x58\x7b\x7f\xd0\xe9\x18\xf3\x52\xf6\xc5\x58\x34\x24\xeb\x07\x4b\x20\xf2\xee\xb1\xa6\xf4\x9d\x12\xfb\x22\x50\x3f\xe0\xf1\x23\x77\xd9\x01\x83\x90\xd0\xb1\xa9\xbd\x07\xfb\x22\x16\x7f\xb0\xf6\x88\xdf\xe0\x2c\x44\x4d\xd4\x4a\xa5\x6a\xa0\x74\x4a\xb6\xb7\x9f\x67\xb7\x72\xaa\x3f\x49\xcd\x2e\x28\xac\x92\x1d\x73\x8a\x4b\x67\x95\xb8\x43\x5d\x94\x18\x6c\x2b\xa0\x2e\x8a\xab\x83\x16\x94\x45\xe9\xc9\x9b\x7e\x30\x2a\xaf\x19\x43\xa9\xb5\xbf\x01\x35\x4f\xb2\x4e\xe6\x97\xc8\x03\xa0\x2a\x7f\x56\x70\x63\xc1\x1c\xd1\x0f\xea\xf7\x57\xd7\xe5\xbe\x25\xee\x8d\x2f\x68\xca\x3b\x0a\x70\x4a\xe9\x44\xd5\x94\x64\x8f\x68\xe4\xb5\x4a\xd2\x10\x59\x05\xa5\x18\x65\xb8\x65\x29\xd8\x35\x10\x0f\x9c\x11\x30\x13\x80\x93\xf6\xc5\xc8\xa8\xd5\x4a\xcd\x89\x07\x2d\x75\xad\xc9\x01\x53\xc4\x22\x94\x3e\x5a\xfb\x12\xe2\xb1\xce\xe9\x7f\xda\xe7\x86\x29\xba\x8d\x45\xb6\x88\x45\x05\xab\x66\xd2\x3e\xb9\x9d\x2d\x6e\x4e\xc4\x19\xa4\xc8\x47\xa6\x15\xd8\x74\xc7\x25\x6b\xce\x02\x2e\xbc\x63\x2d\x2b\x7d\xae\xe0\x8e\xb5\xa4\xc3\xd3\x85\x97\xac\xb5\xf4\x7a\xc0\xec\x23\x53\x26\xb2\x72\xad\x1e\x46\x78\x6d\x83\x1d\x10\x91\x69\xb8\x9b\x07\xbd\x58\xa9\xd4\x6c\x08\x77\xb6\x04\xeb\x16\xcc\xd3\xb5\x43\x21\xc2\x6d\xfb\x42\xdc\x45\x2f\x9d\x45\x39\x32\x75\xa3\xa5\x26\x2f\x73\xf3\xbc\xaf\x81\xea\x89\xfe\xfd\x00\xa6\x3d\xc0\xc9\x11\x85\xea\x0b\x92\x3e\x7b\x12\x60\xc6\x96\xb2\x17\xa2\x69\x26\x26\xaa\xb8\x96\x69\xeb\xac\x92\x21\x84\xdb\xb7\x9a\xfd\xc3\xeb\x6b\xdf\x79\xbc\xb9\x01\x34\x00\x55\xe0\x68\x46\x79\xc3\x68\xeb\xee\xa0\xb1\xb2\xb4\xda\x9d\x1f\x68\x8e\x37\x93\x2f\xbd\x27\x6f\x6e\x62\xd3\xcf\xbd\x66\x2d\x20\x1e\x7a\x2a\x2d\x10\xe8\xe5\xb5\x2b\x32\x32\x79\xc1\x8c\xea\x61\x55\x60\x41\xf1\xac\xa5\x13\x98\x54\x6c\x2d\xa3\x9e\x45\x92\x82\xea\x21\xc3\x36\x2b\xa0\xe6\xea\x89\xe1\x4a\x84\xda\x3c\x0f\x7a\x79\x2d\x94\x1e\x1c\xe3\xd0\x90\xac\x56\xa4\xf2\xd8\x25\xe1\xd0\x97\x0e\x9b\x17\x9c\x49\x4d\x51\xee\x2b\x54\x33\x9a\x93\x0c\x7a\x00\xad\x2d\xfb\x05\xa0\x5e\x82\x17\xc5\x8b\xa6\xc5\xe3\x0f\xc0\xdf\x85\x15\x14\x22\x8a\x21\x8a\x7f\x26\x16\x67\x1e\x06\xe1\x41\xf1\x64\xfd\xce\x62\xcc\x9a\x62\x0a\x0b\xef\x51\x0f\x12\x7b\xd4\x90\xf0\x11\xbf\x40\x80\x32\xeb\x98\x00\x4a\x17\x25\xdd\xec\x50\x12\x75\x59\x7b\x52\x12\x7d\xc4\xc5\x2f\xa0\x1e\xf3\x6b\xc4\x83\x1f\x08\x8d\xc8\x4c\xa8\xfd\x05\x34\xb4\x2a\xe3\x11\x07\xc1\x82\x5d\x25\x09\x27\xc1\xc6\x64\xd1\x3f\x10\x42\x09\x05\x9b\x2d\x66\x53\xa4\x47\xac\xa9\x9d\x00\xa0\xe0\x99\xba\x76\xd7\x4d\xcf\x05\x95\x93\xe6\xf0\x7e\x80\xfa\xab\xda\xa3\xac\x84\x34\xcc\xe0\x71\xc5\xa0\x4f\x50\x95\xc4\xd4\x01\x5d\x11\x57\x50\x2a\xc9\x27\x8c\x0a\x4b\x25\x8d\xf8\x7a\x40\x98\x84\xc4\x44\xc5\x51\xae\x15\x94\x46\xf2\x61\x99\x82\xe2\x47\x29\xcb\x5e\x67\xf1\x23\x5d\xf9\x54\x50\xfb\xe8\xa5\xea\xa2\xf6\xd1\x04\x49\x58\x49\x6b\x12\x1e\x92\xa6\x6b\xf5\x83\xb9\x1d\x5e\xeb\x96\x37\x80\xa0\x21\x73\x78\x17\xea\x2e\xa8\x95\x14\x9a\x53\x50\x70\x22\x3b\x36\x93\x56\x06\xa9\x05\xff\xce\xca\xdf\x9a\x23\xd4\x71\x5d\xad\x59\x58\x5c\x69\x98\x14\x33\x2b\x7f\x6b\x0a\x28\x8c\x9c\x5f\xfd\x31\x18\x51\x0d\x21\x9d\x3b\xda\xe1\xa8\xbe\xe4\xfc\xfb\x82\x6a\x4b\xc9\xc1\x09\x54\x5b\x8a\x2a\x86\x5b\x12\x33\x89\xa5\x8c\xb3\xd6\x52\xf5\xfe\x44\x29\x63\xeb\x84\x09\xda\xfb\x90\xe1\x97\x98\xc9\xa0\x43\x95\x25\xc1\x3d\xad\xec\xbb\x92\x0a\x37\x47\xf2\x83\xf3\x5d\xed\xbc\x24\x28\xef\xd6\x8b\x13\x32\x1b\x9a\x77\xd7\x52\xd5\xa5\x86\x26\xa8\xea\xb5\x1b\xeb\x48\x6c\x18\x8e\x4c\xa4\x55\x9d\x41\x30\x55\x32\x4e\x03\x59\x7f\x57\x61\xbd\xa4\x4a\x34\x7a\x9a\x75\xd1\x8e\xa0\xac\x84\xd2\x43\xa0\x66\xa2\x29\xa1\xad\x6b\x20\xd5\x5e\x77\xdb\xab\x1d\xb1\x05\x35\x62\x63\xde\xa3\xb0\x02\x9f\x75\x35\x65\xc0\x65\x3d\xbc\xbf\x1a\x8e\x9a\x9a\x4d\x36\x96\xd4\x14\xd6\x78\x5a\xee\x0d\x00\xd5\x11\xe3\x1d\x79\xc6\x4a\x11\x2f\xa8\x81\x15\x92\x6e\x41\x2f\xa9\xad\x2a\xe2\x1e\x03\xb5\x28\xe5\xdc\x4c\xf0\x59\x27\x33\xd6\x4e\x4e\x6b\x62\xea\xa8\x13\x2d\x7b\x38\xf1\x6e\x10\x4b\x62\xde\xf9\x19\xec\x7b\x4c\xa8\x5b\x98\xbd\x72\x3c\xf1\x66\x95\x08\x85\xb5\xb2\x95\x5d\x14\xd2\x4a\xc3\xf4\x3a\x38\x6f\x6f\x19\x54\x08\x19\xde\x21\x48\xbb\xad\xdd\xf4\x04\x7d\xbb\x5b\xc0\xec\xd8\xf4\x66\x02\x28\xa4\x13\xec\xbc\x4c\x4b\xe1\x36\xae\x77\xec\x72\x73\xcf\x9d\x30\x0a\xa6\x1d\x87\x1c\xcc\x8e\xa1\x6e\x6f\x36\x49\x78\xf5\xd6\xb0\x0e\x95\x78\x8d\x47\x7a\xbd\x81\x1a\x9d\xdd\x30\x80\xfc\xa4\x07\x26\xa6\xf2\x5a\xe7\x41\x7d\xaf\xec\xe8\x2c\xeb\x79\x39\x1a\x9f\x58\x5e\xc1\x62\xf3\x58\x93\x52\x8f\xcc\xa3\xf8\xd9\x09\xd5\x92\x8e\xfa\xbe\x82\xa0\xa4\x63\xed\x30\x3f\xa0\x10\xb5\x8c\x3a\xd6\x9c\x85\xb5\x83\xca\x8a\x5f\xa0\xce\xef\x2d\x80\xd2\x2e\xcd\xf9\x28\x89\x37\x86\x58\x2b\x4b\x74\x4c\x37\xb7\x21\x63\x2c\x52\xce\xfe\xbe\x18\xa1\xa4\x93\x0b\x21\x3b\x23\xd1\xcd\x2c\xbf\x17\x8a\x96\xa5\x2e\x6b\x13\x45\xcb\x62\x33\x5b\x80\x97\x39\x9b\x3a\x71\x1b\xac\xe3\xd7\x69\x69\xf4\x8a\x78\xa3\xaa\x59\x74\xba\x28\xef\x82\x6d\xce\x16\x48\x38\x48\xf7\xa2\x1d\xe4\xfd\x3a\x51\x28\x5d\x34\xd5\x04\xe1\xc5\x94\x2c\xa3\xed\x42\xad\x78\x8b\xc9\xa9\x8e\x77\xfb\xd5\xd2\xc5\x2d\x97\xdd\xe3\xc3\xba\x61\x9a\x04\x8e\xce\x0d\xeb\x99\x09\x1a\xb9\xfd\x89\x09\x0a\x79\x33\x71\xde\xe9\x7d\xbf\x44\x49\xf7\xaa\xef\xa5\x36\xeb\x6c\xf9\x77\xfa\x4a\x9a\x5f\xa0\x41\x6a\xb5\xf1\x86\xec\x37\x31\xde\x38\x11\xfe\x02\x71\x47\x5b\xeb\x80\xa3\x77\xd5\xd4\x0c\xf5\x3c\x1b\xed\x70\x5a\xbf\xb0\x88\xa4\x8d\xd7\x0e\x46\xd2\x86\x43\xf8\xa8\x9b\x12\x55\x1e\xb3\xa4\xa9\xcc\x47\xfb\x0c\x12\x7c\xd8\x2f\xb5\x17\x2e\xec\x97\xfa\xb6\x6a\xa0\x99\x10\x1e\x9e\x00\x6b\x7e\x03\x38\x78\x8d\x00\xc5\xd8\x4c\xe6\xe9\x18\xc1\x6d\xe8\x98\xda\x4f\xb8\x22\xf8\x95\x9b\x95\x79\x6e\xce\x5e\xe6\xcc\x7c\x0d\x4d\x31\x23\x5d\xc3\x28\x41\x25\x98\xa8\x02\x9e\x25\xa3\x68\xa8\x8a\x8e\x94\x8c\x4b\x54\x74\xa4\xb4\xe4\x6d\x5d\xbf\xa5\x36\x0e\x37\x6f\x06\x00\xc1\x72\x4d\x28\x23\xc7\x58\x87\xa9\x4b\xc6\x21\xba\x61\x80\x71\x88\xce\xf9\x8a\x99\x7a\xbb\xb6\x56\x0e\xac\x41\x2d\xa1\x9d\x03\x6d\x8d\xe8\x37\x68\x94\xc9\xef\x9d\x91\x9a\x61\xfb\x3a\x07\xac\xba\x56\x35\x07\xc6\xef\xa5\x8b\xe4\xc0\xc2\x6b\xc2\x51\xc4\x9d\x4d\xd2\x6a\x73\x24\xeb\x17\x3f\xc8\x71\xad\xab\x66\x89\x82\x0c\x36\x76\xf3\x4a\xe2\x6d\xee\x92\xfe\x20\x6d\xb7\x8c\x2c\xde\x77\x9b\x7c\x30\xba\x0b\x54\xfa\xab\x1e\x13\xb4\x9a\xdd\x23\x79\x8a\xb6\x63\xe6\x39\x3d\xdb\x27\x19\xd9\x20\xc9\xaa\x71\xc6\x31\xbc\x17\xd4\xeb\x02\x12\xf7\x30\x20\xa0\xb4\x36\x53\x95\x4e\x8e\x60\x64\x64\x76\x38\x6f\x27\x27\x22\xd6\xfd\x63\xad\xb3\xfb\xc3\x76\xb2\xd3\x20\x53\x91\x36\x9a\x58\xa1\x41\xc2\x20\xe7\x55\xaa\x50\x10\x64\x1a\xc3\x3f\x0b\x01\x65\x24\x86\x54\xd3\x7e\x26\x3f\xf1\xc2\x4e\xbd\x3a\xa9\xbc\x41\xc9\xcc\x0c\x79\x8d\xcf\x7a\xe3\xee\xe0\x24\x4a\xdd\x01\xcf\x01\xbc\x7a\xe0\xaa\x18\xe0\xb5\x2a\x7a\x01\x8a\xf6\x6b\x95\xe0\x18\xf7\x99\xeb\x92\x0b\x19\xb1\x84\x4b\x2e\xb0\xa9\xfc\x45\xa5\x75\x61\xa8\x96\x0f\x5a\xce\xfa\xbc\x9c\xce\xd2\x2a\x73\x5d\x13\x17\x58\xc8\xb5\x78\xad\x7c\xa5\x7a\x6e\xd2\xa8\x70\x19\x98\xaf\xd4\xa5\x79\xf8\x01\xfd\xd4\xde\x65\x38\x12\x97\x3c\x51\xb8\xa1\x75\x7d\x74\xc9\xa8\xdb\x60\x6e\x9f\x1b\xa3\x79\xcd\x0f\xa0\x2e\xbd\x3a\x04\x75\x1a\x24\xaa\xb6\x5e\x3c\x2a\xaa\x9e\x75\x5b\xe7\x77\xd5\x26\xe7\x11\x12\x50\x07\xa2\x76\x6f\xe3\x4e\x88\x05\x00\x53\x7e\x1d\x1f\xc8\x4b\x71\x35\x63\x98\x8a\x2b\x5c\xc0\x9f\x36\x95\x21\xe9\xc6\xb9\x13\x66\xf7\xc0\xb2\x05\x9b\x5f\x58\x88\x16\x9a\x70\x42\x2e\x4b\x2f\xcd\x28\x16\xe1\xac\xe2\x8c\xec\x0b\x67\x78\xe7\x55\x2c\x42\x2a\x5f\x46\xb1\x88\x64\x5e\xd4\x49\x2e\xfa\x1d\xb7\xe6\xd9\x1f\x89\x8a\x5a\x13\x02\xe1\x05\x8e\x6e\x07\xf9\x32\x53\x88\x5f\x3d\xae\x14\x62\xef\x7b\xb8\xa6\xad\xde\x64\x9e\x48\x73\x48\x21\xef\x54\xc9\x4c\xb3\x2b\xe3\x42\x9e\xdd\x8c\x8c\x0b\x1b\x15\x79\x07\x66\x25\x07\x33\x75\x67\x03\xb9\x4a\x92\x9a\x9c\xf6\xc6\xad\x28\x44\xee\xd0\x0d\x2c\x58\x50\xf2\x3b\x07\x83\xb0\x18\xaa\xbb\x04\xfd\x18\xb3\x48\x41\xde\x9c\xbf\x9d\xf7\x85\x6a\x77\xc1\x42\xa9\x26\xc1\xa9\x5e\x67\xbb\x97\xf3\xb1\x58\xae\x10\x71\x40\xfc\x5a\x9a\xf1\x86\x3c\x4b\xcb\xa5\x0f\x7b\xd7\x1c\x98\x85\xc9\x63\x95\xa1\x90\x33\x38\x1f\xb4\xd7\xbc\x5c\xd0\x8f\x87\x73\x4f\x50\x45\xf6\xcd\x92\x0e\xd6\xf1\x17\x41\x1c\x20\x18\x33\xe1\x83\x89\x60\x52\x3e\x33\x14\xea\xe0\x0e\xa7\x3e\x9d\x74\xfb\x63\xc9\xc8\x73\xb6\x9a\x96\x59\xb7\xe2\xb5\x13\x4f\x6e\x13\x77\xb0\x08\xc8\x3d\x60\x2b\x7b\x5f\x9d\x5c\x3b\x81\x08\x05\x3c\x78\xa7\x9e\x14\xe9\xaf\x1e\xd7\xd2\x08\x0b\xbc\xd9\xc1\x86\x76\xbe\xd8\xa5\x5e\xb8\xe9\x89\xf2\x18\xd4\x5e\x4d\xc4\x37\x66\x65\x18\xa7\xae\xd9\x9a\xf5\x8c\x1b\x0e\x6f\x2b\x4e\x37\xe9\x29\xfd\xc8\x10\xca\x37\xd9\xa5\xb9\x19\x55\x4f\xaf\x2b\x55\x4f\xd3\xda\xcd\xbb\x99\xcc\x6b\x58\xf4\xe1\xb5\x91\x1f\x9c\xb5\x32\x81\xaf\x7c\x09\x33\x9f\xe5\x18\xf6\x96\xa0\xb2\xe8\x85\x7e\x28\xce\x92\xbb\x24\x50\x6e\x53\x16\x79\x8f\xe0\x58\x9b\x6e\xf8\x28\x05\xda\xa3\xd3\x90\x0a\x73\x18\xec\xe6\x29\xbc\x90\x5d\x58\x2d\x70\xf4\xaa\x70\x6e\x61\x6d\xbe\x61\xb7\x4f\x81\xbe\xd9\xbc\x03\xca\x46\x6f\x5c\xf7\x18\x60\x70\x62\x80\x85\x1a\xa3\x88\xa9\x20\x49\xc1\xdc\xaa\x84\x05\x53\xd1\x03\x94\xce\x17\xe7\x28\x91\xac\x24\xf9\xc1\x5a\xda\xa6\x07\x94\x7e\x8a\xe8\x17\x2a\x5f\x72\xd2\x17\xd4\x4c\xd0\x4d\x64\xa5\x20\x33\x37\x4b\x9b\x2b\x89\x6a\xb8\x36\x5d\xa1\x9b\x73\xf8\x05\x1a\x02\x0a\x77\x14\x1c\xa9\x1a\x2f\xd4\xd2\xef\x29\x8f\x5b\x41\x92\x80\x77\x40\x49\x74\xa0\x35\xbf\xb0\x48\xce\x6f\xd0\x72\x6e\x7e\x30\x97\x57\xa5\xb3\x4b\xa1\x3a\x66\x4c\xe7\x45\x72\x7e\x80\x53\x38\x72\xdb\x17\xfa\x31\xe5\x5b\x2d\x28\x89\xa0\xfb\x58\x4a\x61\xc1\x2c\x6f\xec\x92\x29\xfe\x9a\x7b\xa4\x9d\x6a\x4c\x22\xd9\xf6\x85\x87\xbc\x80\x16\xea\x33\x4b\x4c\x69\xb9\xcb\x46\x11\xab\x41\x0b\x99\xb0\x4c\x8a\x82\x73\x58\x5d\x0c\xb0\x30\xb3\xc0\x5e\x93\x52\x38\x66\x54\x1b\xdb\x40\xae\x1f\x5c\x4f\xde\xaa\x89\x7a\xd5\x20\xf0\x07\x35\x30\x7c\xa1\x2f\x2a\x96\xd7\xf4\xc2\x9a\x04\x16\x36\xa5\x72\x79\xa5\x2b\x17\x68\x33\x4e\x7d\x2b\xb8\xac\xcb\xf6\x79\x69\xcc\x18\x6c\x7e\x01\xb7\x35\x4a\xb3\x28\x3c\xff\xef\xd8\x66\x81\x7a\xe3\xf0\x6e\xe9\x81\x88\xd2\xf2\xaf\xb0\xbc\x89\x72\xea\x3b\xd9\x6e\xe4\x82\x0b\xbb\x9a\x11\xd9\x11\x30\x0e\x7e\xbf\xe1\x7d\x4d\xaa\x33\xf6\x29\xaf\x1b\xee\x61\x0f\xc3\xb3\x46\x65\x2c\x07\x09\x71\x0f\x7b\xda\x36\x83\xcc\xbd\x6e\x02\xeb\xf4\x5f\xc9\x42\x28\xac\x00\x6e\xe9\x56\x58\x0b\xcb\x0e\xa4\xc2\x23\xfc\x0e\x9f\x96\xe5\x2b\x94\x19\x52\x58\xfd\xca\xb1\xcd\x82\x33\xfb\x76\xba\x16\x54\xbf\x72\xe8\xbd\xc0\x57\xe8\x04\xd4\x82\x13\x50\xc5\x44\x0c\xdf\x61\x36\x1e\x07\x97\x46\x88\x1e\x54\x13\xf4\xfd\xbe\x40\xd4\x80\xfb\x02\x51\x30\x43\xbb\xe9\xde\x78\x50\x6e\xac\xcc\x94\xa9\xdc\x64\x6b\x60\xb8\x52\x3e\xb6\xf6\xa3\xb0\x10\xaf\x9b\x77\x16\x66\xc1\xb5\x58\xce\x8f\x2f\xfb\x72\x85\x7a\x74\xce\x47\xed\x83\x67\xc0\x05\xed\xb1\xd6\x40\x08\xe0\x85\xf4\xc5\x2f\x50\x98\x99\x27\x9f\x54\x42\xcd\xbd\x78\x56\xca\xf9\x83\x05\x3a\x44\x0e\x7e\xa1\xa0\xad\x21\xce\xb5\x81\xfc\x02\x88\xd1\xb4\x76\x52\x90\x74\x3f\x20\x83\x34\x7b\x3b\xc9\x20\xbd\x63\xa0\x44\x54\x9f\x34\x28\x2b\xae\x6e\x5a\xba\xd6\x96\x51\x1f\xd7\x82\xdb\x0f\x00\xb7\xbc\x11\x28\x8c\x9f\x5f\x12\xf3\xa2\xba\x96\x3d\x06\x36\x7a\x70\x07\xdc\xe8\xa6\xce\xe5\x99\x33\x8b\xc4\x91\xfc\x2c\x7d\xac\xdc\x04\xca\xc8\x44\xc9\x2a\x87\x3a\x71\x85\x7e\x76\x92\x5d\xb9\x17\x6a\xfc\x80\x8a\x80\xc5\xf2\x4d\x75\xca\xa2\x61\x85\xad\x65\x14\x94\x87\xf8\xb7\xc8\x43\x05\xa9\x1c\xfd\x02\x25\xbb\x89\x00\x67\x8f\x54\xd7\xba\x14\x28\x1b\xba\xb9\xa0\x14\xe4\x4f\x66\x33\xf6\x87\x0c\x4d\x5c\xb6\x2e\xe5\x42\xea\x37\x6e\xea\x8f\x43\xda\x76\xdd\x28\x6e\x5e\x5f\x2c\x86\x54\xf5\x00\x39\x9d\x42\x7e\xe5\x99\x79\xd5\x70\x2e\x95\x35\x9f\x6c\xaf\xb3\xc8\x6e\xb3\x8c\xc3\x2d\x05\xd9\x29\x26\x15\x47\x89\xac\xd2\xd7\xc0\xd8\x9d\x80\xc2\x01\x76\xeb\x12\x95\x51\x62\xc7\xbe\x2b\xae\xe9\x55\xa5\xe5\x52\x51\xd8\xb5\x78\x75\xea\xf2\x15\x49\x26\xd6\xc8\xfb\xbe\x05\x74\x5c\xcb\xe7\x2f\x40\x21\x1e\x33\xad\x49\xe8\x0b\xe8\x27\xce\x4f\xaf\x38\x38\xd4\x3d\x29\x96\x74\x72\xfc\xbd\xe2\x6e\x5b\xa7\x02\x55\xe6\x38\xda\x61\x50\xe1\x4b\xca\xaf\x1e\xe9\xf1\x12\x13\xad\xd0\x5f\x54\x3f\xba\xd4\xc4\x88\x4c\x75\x97\x2c\x84\x12\xdc\x25\x23\xb5\xc3\xd3\xe0\xd6\x78\x41\xc5\x2b\xe2\xc5\xba\x6a\x5e\x13\xd5\x27\x99\x8c\x46\xb2\xbc\xe6\x39\x53\x5d\x29\x57\x2a\x54\x96\xe0\xb0\x7f\x5d\x3a\xcb\xeb\x8b\xc1\x41\xfc\xc6\xc1\x07\xee\xe3\x9c\xa6\x82\xb1\x97\x49\x44\xd5\x2f\x90\xb4\xdd\xe5\x82\x5b\x44\x83\xa3\xe3\x59\x26\x57\x9d\x2a\x4b\xf3\x11\xa5\x5a\x28\x20\x5e\x0f\x78\xa1\xbb\x30\x51\x68\x9a\x1a\xdd\x3c\xcd\xf3\x42\x4d\xe5\x0a\xea\x0b\x3a\x89\xac\x71\x54\x94\xa6\x57\x81\xc3\x52\xeb\x9a\xb7\x08\x15\xa9\x8a\x8e\xfe\xd7\x0a\xc2\x4d\xfe\x1d\x9c\x4c\x1a\x6b\xe5\xbd\x06\x13\x71\x3f\x90\x4a\xb5\x2e\x9c\x08\x40\x5c\x97\x5a\xc4\xbf\x2b\xf2\x12\x83\x73\x07\x2a\xce\x7c\x17\x4b\xc1\x8a\xf3\x38\x16\x43\x15\x17\xa2\xbe\x66\x48\x8d\x48\xca\x44\xed\x3c\x54\xe1\x21\xfb\xa2\x6a\x7f\x01\xaa\x96\x96\x56\x91\x86\xe8\xc0\x7c\xe5\x99\xef\xd7\x42\x52\xc3\x31\x79\xd1\x9d\xe3\x74\x85\x8a\x3c\xc4\xf6\x06\x0a\x7b\xd5\x40\x23\x73\xd0\x0e\xf9\x0a\x77\xcc\x4b\x13\xc4\x15\x27\xad\x16\xbf\x00\x15\xda\x6a\x5b\x1d\x0b\xef\xee\x92\x72\xcd\x88\x62\x2e\xa1\xfd\x56\x75\x27\x66\x34\x0d\xdc\xe4\xe9\x8c\xa1\x0a\x77\x8c\x15\xfb\xba\x93\xfb\x57\x3f\x68\x9c\xa7\x16\x7f\x5f\x98\xf1\x1b\x83\x40\x08\x35\xfb\x42\x8d\x26\x46\x35\x43\x12\xbd\xf2\x06\x02\x6b\x3d\x95\x85\x88\xac\x58\xd5\x83\x21\xfe\xd7\x1b\x44\x9e\xba\x3c\xb8\x7e\x82\x8a\x95\x89\xec\xfc\xaa\x70\x96\x64\xc9\xb9\x7a\xdc\x3c\x67\x23\x64\xc2\x19\xe2\x1a\x99\xa5\x22\x85\x30\x4b\x10\x56\x78\x43\x74\x69\x74\xa9\x08\x2e\xea\x8e\xe2\x52\xcf\x75\xcd\x8d\x60\x80\xb3\x23\x5b\x8a\x9d\xdc\x67\x52\x11\xea\xb9\x23\x6d\xd9\x3d\x12\x51\x5e\x0d\xde\x5d\x61\x7f\x5b\x3d\xd7\x8a\x6b\xde\x27\xaf\x72\x37\xd0\x6b\xc1\xf5\xc2\xb5\xb1\x4f\x4d\xe3\xe2\xb4\x84\x98\x8b\xd3\xd0\x10\xc8\x07\xcc\x16\x31\xf0\xaf\x38\xea\x52\x2f\xb2\x73\x43\x7d\xc1\x83\x6c\x3a\x46\xe5\x4e\x27\x97\x56\x26\x08\x3a\x05\xa5\x42\xf1\x79\xa9\x78\xf5\x62\x5c\xc6\x6d\x5e\xe5\xe3\xb5\x41\x44\xd2\x31\xfd\xca\x14\x41\x3b\x3c\x2a\x14\xa1\x61\xb2\xbd\x19\xec\xf2\x62\xf2\x9a\x9e\x17\x0b\xb9\xa9\x9e\x35\xf7\x49\x5e\x2e\x6f\x57\x85\xa3\x26\x5b\xf0\x21\x26\xb8\x79\x2d\x96\xa6\x64\xe9\x8c\x04\x3f\x1f\xa0\xad\xb8\x44\xc5\xa7\x0c\x2b\xf5\x22\xcb\xc1\x87\xa9\xcb\x9a\xf6\xd4\x93\xe2\x66\x12\x7d\xc0\x30\x24\x0a\xda\x86\xbd\x2b\x61\xd3\x36\x14\x9c\x49\x6e\x63\x4f\x88\xa7\x35\x9e\xbf\xb6\x2f\xa2\x21\xd7\x2e\x6b\x2f\xb7\x8d\x00\xf9\xf7\xc5\x60\x9a\x1e\x80\xf1\x57\xb7\x49\x8f\xcd\x3d\x40\xb5\x13\x4e\xda\xba\xba\xe0\x43\x3c\x2d\x04\xae\xbd\x1f\x44\xe4\x31\x08\xe6\x00\xea\x7b\x7d\x40\x26\x28\x2d\xb9\x51\xeb\x12\x52\x1b\xce\x6b\x67\x51\x5f\x43\x19\x4c\x5d\x14\x55\x5a\x58\xcb\x38\x7e\x22\x8b\x70\xc5\x41\x72\x26\x5f\x8b\xdc\x2d\xa2\xf6\x86\x4c\xba\x34\xc4\x05\x1a\xcf\xad\x38\xe9\xa5\x45\xa6\xb8\x7b\x8a\x91\x10\x6b\x19\xe0\x75\x72\x71\x90\x16\xe9\x95\x10\x52\x59\xb3\xdd\xb4\xda\xe2\xce\x21\xdc\x03\xd1\xde\x0d\x15\xae\x59\x08\x86\x81\x5a\x7c\xf7\x03\xca\x58\xcf\x03\xf9\x79\x4e\x9b\x6f\x38\xbb\xed\x64\xba\x96\x1e\x8e\x29\x28\xe1\x22\xd2\xd5\x9b\xa5\xe5\x35\x6f\xb5\x97\xc7\x47\x6d\x5c\x59\xdf\xfd\xfd\x49\x08\xb4\x30\x99\xac\xcb\x20\x51\x57\x6a\xee\x01\xe4\xee\x49\xb2\x08\xa6\x34\xbc\x46\x77\x8f\x57\xba\x2c\x88\x84\xb7\xc2\x40\x80\xdb\xe4\x85\x32\xea\x5a\x05\xeb\x7b\xb5\x57\x0f\x1a\x02\x01\xb6\xcd\xd4\x58\x0b\x7a\xf4\xef\xb4\x43\xfc\x3b\x85\xa1\xf4\xbd\x56\xc9\x66\x64\x1c\x35\x24\x96\x65\x2f\x4c\x65\x54\xdd\xbf\x93\x0d\x19\x6f\x2b\xd1\x4c\x2e\x83\xc6\x12\x95\xe9\x35\x28\xb9\xa3\x31\x8b\x54\xb3\x97\x41\xd5\x58\x64\xc7\x69\x89\x0d\x27\x3b\xaa\xeb\x81\x34\x56\xa1\x74\xad\xa9\xd6\xe8\x09\x95\x69\xd9\x70\xa2\xb9\xd9\x8a\x6b\x8d\x39\xac\x62\x57\x8d\x47\x9a\x5d\x3e\xaa\x35\x2e\xa0\x5e\xe8\x0b\x0c\x01\x8a\x7b\xe3\xab\x34\xd5\xd6\x69\x53\xcb\x50\x6f\x38\xec\x91\xbb\x3f\x20\xf6\x84\x0b\x1c\x59\xb6\x16\xd0\xfa\x22\x32\x0d\x89\x13\xc5\xd9\xb3\x18\x54\xfc\x64\x8c\xb4\x41\xdd\x52\xba\x6b\x1b\x64\x92\x32\xc2\xda\x58\xa8\x71\x9f\xbc\x9c\xce\xd8\x1c\x6b\x54\x81\xc5\xb0\x98\xd3\x55\x1a\xb5\x2c\xcf\x6b\x5f\x98\x10\x5c\x2c\x9c\x63\x1e\xb1\xf3\xcc\x89\x3f\x00\x2b\x97\x21\xd8\x96\xd6\x25\x95\xbc\x2d\xad\xcb\xb8\xdd\x09\x76\xf6\x27\x50\x50\xe5\x4c\x68\x3b\x63\x79\x1e\x82\x3c\xc3\x63\x20\x63\x4c\xd7\xeb\x94\x76\x10\x97\x1a\x12\x27\x8b\x5f\x76\x7d\x63\x82\x96\xa3\xfa\xed\xe4\xb4\xd5\x03\x35\x24\x59\xd4\x0d\x65\xcd\x75\xa3\x4f\x69\x67\x9b\x20\x99\x23\xe0\xca\xc8\x17\x27\x45\xf6\x55\x33\xe2\xe9\xc7\xb1\x69\xd3\x4e\xde\x9f\xa1\xa5\x3a\x19\xf9\xf5\x86\xa5\x93\x46\x9a\x45\xbb\xa8\xf7\x1b\x2b\x17\x41\xd2\x90\xbc\x19\xce\xd6\x6b\x9b\xda\x4b\xb2\x9a\xd8\xae\x35\x69\x4d\x12\xca\x4b\xb3\xb5\xd4\xa0\xbd\xf8\x40\x52\x9b\xca\x4b\x2a\x3f\xba\x43\xaf\xb4\x9b\x94\x22\xdd\xb8\xe1\xb0\x43\xf1\x9e\x81\x66\x53\x9d\xb2\xbf\xee\xe0\xb1\xcd\xd9\x6e\x52\xb4\x17\xf2\x5e\xa4\xa1\x75\xb8\xa9\x80\x99\xa5\xb0\xee\xb8\xcd\x1f\x5c\x62\x18\x8b\xa9\x0b\xd9\x49\x0e\x28\xb4\x87\xe4\x67\x2c\x4c\xdd\x26\xbd\xc0\x86\x6e\xe3\x23\xad\xed\x21\x3b\x31\x0c\xac\xb4\x68\xac\xf1\x96\x44\x9b\x43\x8d\x21\xa9\xf4\x7a\x40\x99\x26\x7e\x83\x7b\x14\x53\x13\xb9\x74\x1e\x4e\xd0\x52\x75\x9c\xc3\x75\x7d\xd4\xd2\x11\xc4\x6a\xf9\xf5\x80\x37\x0b\xf9\x0b\xd4\x81\x90\xc6\xd5\x59\x6b\xdc\xe9\x13\x7d\xa3\x0a\x9f\xfc\x06\x77\x59\x57\x1b\x25\x58\xe5\x42\xe8\x3c\xce\xe0\x1c\xa4\xbe\xfc\x4e\xda\x14\x7d\x6a\x3c\xd1\x85\xbe\x7a\x18\xe8\xc1\x6d\x1a\x05\x32\x75\x3a\xb2\x9a\xca\xe6\x0e\x48\x80\x06\x32\x90\x1d\xc9\x52\xe9\x91\x02\x42\x44\xdd\x51\x91\x46\x37\x67\x94\x8e\xb3\xb7\xba\xac\xa3\x74\x9e\xb5\xb5\xb7\xac\x47\x6e\x8b\xec\x37\xe8\x29\xf7\x0b\xdc\x16\x52\x5e\x71\xa7\x65\xb3\x16\xd4\x79\x4f\xbd\x58\x7b\x4f\xb8\x37\xc2\xef\xe3\x7c\xc0\xcb\xc9\xd0\x51\xc1\xc6\xc1\xe8\x9e\xca\x34\x96\x8a\x3b\xa0\xda\x64\xcc\xf2\xf0\xac\x27\x89\x24\x25\x9f\xf2\xe9\x4b\xc5\x31\xa6\x33\x36\xa6\x14\x8c\x9e\x71\x68\xcd\x58\xc9\x1c\xc1\x78\xcc\x2c\xc1\x2e\x90\x32\x17\xdb\x1d\x90\x3f\x79\x52\xcb\x3f\x34\xdc\x25\x55\x12\x77\x51\xa8\x70\x7a\x5a\x53\xcb\x89\xcd\xb3\x42\x05\x19\x1f\xc7\xea\x25\x23\x08\xaa\x1e\x0b\x05\x9a\xbc\x04\x1d\x09\xfa\xde\x58\xbd\xa0\x76\x49\xf5\x88\x38\x46\xe1\x59\x22\x3f\xdf\x47\xf3\x3a\xd3\x92\x5e\xbf\x2f\x90\x35\xcb\xa9\x45\xb5\xe6\x49\xa2\x7a\x8c\xaa\x4b\x97\x5e\x17\x87\x52\x8f\xcc\xb6\xb7\x25\xdd\x79\x17\x8c\xd3\x2b\x7a\xe5\x09\x7c\xcd\x01\x15\x61\x54\xab\xb6\xf4\xa5\x14\x79\x9b\x21\x07\xa9\x6c\x6e\x13\x06\x75\x00\x17\x92\x5d\x4a\xbd\xad\x11\x05\x64\xc3\x2e\x0b\x7e\x81\x32\x3d\xf9\x05\x64\xf2\x0e\xbf\xb0\xd0\xa0\x59\xf5\xb5\xa9\x84\x17\x84\xdd\x86\x4f\x26\x75\x96\x70\x31\x2f\x40\x61\x41\x47\x97\x7a\xa7\xa3\xc4\xd3\x64\x91\x6c\x27\x2a\x75\x5e\xf6\x69\x17\x42\x1f\xac\x31\xaa\x2f\x06\x39\x9a\xac\xf7\x3e\xe8\xe5\xac\x7e\x03\x07\xbe\x83\x7b\xe8\x84\xf2\x47\xbe\xba\x3e\x50\x76\x52\x6c\xbe\x2f\x8f\x93\x21\xc4\x95\xfd\xd6\x45\x3b\x22\x60\x96\xc8\x7d\x5f\xf0\x68\x65\x50\x30\xa5\xc9\x81\xd1\xf7\xc5\x51\x35\x03\x56\x0c\xb4\xdd\xdd\x59\xd5\xda\x8c\x00\xde\xa3\x22\x03\xac\xb3\x62\xa0\xed\xea\xce\x54\x77\xa9\xc3\x7d\x2a\x32\xa9\x98\xf5\x20\xf5\xa6\x18\xed\x07\x69\xc1\xef\xef\x68\x6b\x61\x0f\x02\x20\x90\x51\x40\x65\xf8\xbc\x57\x87\x2f\x69\xb3\x18\x41\x1e\x4d\xf5\x1c\x99\x96\xee\x54\x87\xce\x44\x1a\x9b\xf6\x9d\xc7\x51\x9d\x26\xd5\x11\x05\x2b\xb2\x23\xfa\x89\xaa\x1d\xe6\xbf\x2c\x72\xed\x98\x7f\x3f\xc9\x9b\xdc\x3e\xc1\x3e\xdd\xe6\xca\x79\x21\x10\x03\x7b\x79\x79\x3b\x0f\x9b\x5a\x09\xe8\xf0\x14\x15\xe3\xf1\x62\x46\xae\x81\x82\xeb\xa8\x78\xf1\xaf\x95\x62\xac\x95\x40\x05\x95\x17\xf9\x5c\x8b\x1a\xb4\xd8\x70\x36\x15\xe9\xef\xfd\xe2\xd2\x08\xea\x0b\x4b\x23\x4d\xbb\x33\xdb\x3d\xbf\x7a\x3c\xf1\x82\x27\x41\x39\x54\xfd\x00\xd4\x12\x3c\x22\x08\x54\x86\x4f\xbf\x99\x55\xe0\x49\x2c\x0d\xcc\xab\xc9\xa8\x9b\xdd\x24\x1d\x51\xb6\x92\xfc\x02\xd7\x4a\x43\xb0\x64\xa0\x75\x9d\x7e\xd3\x23\x26\x44\x22\x3b\xfd\x45\x90\x28\x8c\xed\xf2\x05\xfd\x26\x8c\x9a\x24\x3c\x4f\xd5\xcc\xeb\x61\x61\x35\xcd\x01\x09\x42\x2f\x11\x30\xb5\xb5\xb4\x99\xba\xe0\x78\x2a\x96\x8c\x48\x0f\xb2\x76\x37\x36\x70\x4f\x6d\xc1\xb1\x2e\xec\xae\x7e\xc0\x75\x93\x17\x66\x6c\x38\xeb\x2c\xea\x1a\x1b\x7b\x1c\x6a\xe3\x90\xb0\xd6\x75\x6c\x64\xaf\x52\xe6\xc6\x46\x72\x14\x96\x07\x3c\x47\xd6\x59\x06\x8e\x75\xea\xea\xcd\x32\x02\x39\x9d\x41\x98\x7a\x53\xea\xf2\x60\x8c\xb0\xee\xa2\x54\x1b\x69\x34\xc1\xbf\x0f\x9c\xbc\xa8\x6a\xef\xb8\xb1\x48\x53\x40\x74\xae\x64\xf7\x7f\xe2\xec\x92\xdb\xa4\x2c\xad\xd2\xe0\x11\x4d\x9f\xaa\x1c\x71\x51\x8e\x66\x1d\x23\x8e\x4e\x6b\x48\xb8\x8a\x86\xe5\xdc\x88\x6b\xc3\xf8\x0b\x90\x52\x76\x97\xe0\xde\xb2\x67\x07\x7d\x47\xe9\xd5\xe5\x80\xa4\x14\x94\x91\xb3\xd2\xac\x51\x13\xda\xfb\x63\xc0\x53\x64\x57\xfc\x58\x8e\x22\x29\x8f\x83\x07\x39\x9d\x4f\x37\x12\x8f\x3e\xa8\xc7\x04\x62\x79\x7d\x40\x2d\xfb\xf5\x02\xfc\x5d\x72\xac\x0e\xc4\x03\x8b\x11\x0d\xc5\x0d\xb7\x5d\xfd\x40\x02\x8d\xb4\x08\x45\x38\x4b\xd8\xd0\x9e\xe1\x52\xeb\xe4\x62\x19\x99\x00\x49\xf8\x0f\x94\x15\xb4\x1b\x68\xe4\x75\x97\xbc\xa6\x00\x5f\x56\x79\xf5\x80\xf0\x52\xf1\xef\xa0\xf6\xe2\x0e\x01\xc2\xab\xfd\x60\xff\x6a\x15\x11\xe4\x2b\xd2\x90\x06\x3c\x57\xf6\xbe\x8c\xe5\xb9\x12\x03\x18\x05\xa7\xde\xc4\xe6\x06\x94\x3c\xc7\x19\x07\xea\x49\x3b\x99\x6e\x50\xc7\x13\xf3\x1f\xb8\xef\xaf\x14\x0f\x30\x48\x68\x86\x08\xfb\xb3\x78\x40\xee\x4f\x77\x80\x43\x42\x62\x61\x83\x4a\xa0\xf3\x21\x46\xa1\xd3\x49\xfe\xc0\x51\x39\x47\x81\xcc\x53\x99\xb6\x10\x06\xd5\x42\xa9\x2e\xa3\x72\x8e\xee\x00\x37\xd2\x48\xb1\x1d\x15\xa2\xa0\xf8\xfb\x8e\xf0\xba\xdf\x07\x13\x2b\x6e\xf3\x08\x90\xfb\xa7\x9d\xd4\xfd\x00\xa2\x41\xaa\xd1\xa8\xb4\x7a\x4d\x39\x15\xd7\x61\x78\x73\xd5\x45\x49\x9a\x53\x5b\xeb\xa4\x37\x70\x48\xd3\xd6\xdf\x40\xe4\xd2\x25\xf5\x06\x6a\x4f\x17\xa9\x2e\xa3\xad\x75\x70\x8f\x0b\x48\xc1\xd0\x68\x32\x98\x14\x90\xfe\xe5\x3a\x66\xa3\x43\x08\x4b\xb9\x19\x1d\x46\xae\x41\x9a\x4a\x66\xb2\x40\x1c\x3c\x72\xe9\x95\xef\x28\xe7\x35\xfc\x3d\x83\xef\x66\xcd\x4b\xe9\x94\x9f\x67\xa0\x5e\x4a\x31\x67\xe6\x19\x4d\x67\x25\x8c\xb1\xf4\x00\xcd\x0a\x15\x53\xaa\x59\xed\x72\xb2\x79\xd0\x81\xa2\x75\x06\x9a\x4e\x37\x07\x4b\xc7\x60\x91\x09\x7f\x30\x99\xb1\x6e\x2f\x2e\x63\x00\x26\xb9\x4d\xc7\x20\x39\x9a\x3e\x51\x14\xc5\xb5\x72\xc6\x8e\x13\xee\x92\xd1\x63\xa7\x95\x2d\x34\x2f\x87\x9a\xf4\xfb\x01\xbd\xd4\x35\xb7\x06\x0b\xf9\x59\xfe\xec\x64\xff\xc3\x3d\xd0\xec\x36\xbd\xed\x4b\x1e\x08\x0d\xac\x8a\xe2\x64\x8c\x81\x52\xd6\x45\x6a\xe0\x38\x96\x3c\x10\xea\x8f\x05\x95\xfa\x3c\x98\x8b\x2c\xbc\x1c\x38\x44\xf0\x6a\xf3\x96\x3c\xf7\xb8\xc8\xc9\x0f\xe6\xe2\xd9\x84\x1d\xcc\xc7\xb2\x0d\x3b\x4e\x46\x56\xcd\x0a\x96\x2a\x3a\xfc\xa0\x02\x6a\xb7\xe9\xfb\xf1\x6a\x22\x89\xdb\xc7\xea\xc7\xb9\x94\x34\x4d\xeb\xa4\xfe\xa3\x59\x2d\x5d\xd4\xbb\x00\xaa\x67\xf0\x07\xab\x36\x9f\x7a\xbc\xe8\x1c\xf0\x34\x50\xae\xda\x35\x44\x06\x34\x4f\xd7\xc6\x1c\x54\x0b\xab\x7f\xe7\xde\x37\x4b\x5e\x5e\xbb\xfe\xa3\x30\xd1\x60\x59\xbe\x17\xb3\xc2\x89\x46\xe7\x22\x0e\x38\xe1\x6c\xf6\xf0\x42\xea\x66\x07\xee\xb8\xc9\x19\x34\x63\x54\xd9\x6b\xa6\xa6\xa9\x22\x26\x7b\x6b\x07\x12\xb5\xd2\xf0\x2a\xdc\x04\xf8\xf5\x06\xb9\x95\x6c\xe2\xc1\x78\xa4\xa3\xc7\x83\x85\xf6\x9c\x2a\x32\x58\x61\xc4\xa9\x22\x03\xb9\x5d\x0e\xea\x0c\x96\xca\x73\x06\xcc\x60\x6e\x97\xa3\xc7\x03\x7e\x3c\x1f\x54\x1e\xc8\xdd\xf2\x49\xfb\x7d\xdb\xd8\x43\xd4\x83\x80\x95\xc9\x6a\x27\xe4\x64\xfb\x03\xaa\x40\xc5\x2f\x80\xcf\x37\xbf\x40\xd5\x51\x82\x64\x5f\xaa\xe3\xf0\x83\x9b\x63\x7e\x80\xda\x71\x59\x89\xee\x14\x2c\x3b\xef\xe3\x73\x2a\xc6\x1e\x16\xd1\x77\x3d\x58\xeb\x55\xf5\x00\x66\x6a\xf7\x17\x10\xa0\xcd\x1f\x1c\x3c\x62\x17\xf4\x00\x14\xd7\xdc\xc1\x02\xca\x40\x40\xa9\x37\x22\x10\x6a\xb4\x92\xb0\xaf\x38\xa2\x24\xea\x1e\xd7\x6a\xf9\x01\xb4\x00\x11\xf9\xbe\x9c\x72\xa2\x91\x9d\xda\xa1\xd3\x26\x70\xc9\x79\x73\x31\xe1\x9d\x91\x45\xa7\x28\xec\x71\xe1\xd2\x0f\x40\xe9\xd2\xd3\xf7\xb4\xd6\x73\xe8\x01\x4e\xd6\x1a\x6c\xc4\x09\x9d\x4c\xb4\xd3\x89\xa6\x9d\xba\xe3\x68\x9e\x43\x51\x7b\x66\x62\x8d\x64\xe6\x9e\x09\xb4\x48\x6c\x47\xcd\x0b\x6b\x63\x7b\xe6\x4d\x72\xa2\xb9\x9d\x3e\x33\xe7\x51\xec\x3c\x5a\x67\x2f\xc8\x5e\x70\x9c\x4f\xe2\x64\xa7\x3a\xe3\x8c\x83\x9d\xca\x89\x97\xb7\x2e\xe4\x6b\x1a\x95\x26\xd0\xf0\x03\xd4\x68\xf4\x3c\x2a\x43\x6a\xd1\x2f\x80\x42\xba\x87\x00\x41\x74\x7f\x40\x16\x24\xe5\x60\x5f\x41\x39\x77\xc9\x0a\x0d\xf6\xf5\xef\xd4\x16\x1c\xd1\xdc\x1b\x6d\x76\x53\x5d\x7b\x40\xa6\x42\x4d\xa7\xef\x4d\x02\x62\x67\x91\x5f\x3b\xa4\xf7\xb1\x90\x27\xfc\xa3\x28\xaf\x1d\xd4\x3b\xd3\xaa\x1d\x28\xda\xe9\x52\x72\x58\x66\x67\x84\xcc\x71\x9b\x7d\x70\xea\x02\x73\x90\x99\x69\x45\x11\x30\x6b\xf6\x69\xef\x63\xcd\x43\x0f\x10\x0f\x6b\xf6\x48\xef\x3b\xc9\x44\x36\xec\xbe\x93\x0d\xc8\x7f\xb1\xd3\xed\x63\xbf\xe3\xce\xe4\x64\xe7\x99\xec\x3c\x83\x65\xc3\x7d\x3f\x78\x0e\xdd\xfb\xe3\x58\xec\xcd\x9d\xae\x25\xd0\xe4\x29\x60\x9d\x05\xba\x1f\x5c\x56\x77\x01\xcd\xc4\x5b\x0c\x87\xae\x4a\x77\x07\x3c\x62\xec\x0d\x84\xa2\x05\x76\x94\xef\x48\x2b\x2a\x92\x14\xfb\xb9\x96\x30\xfe\x44\x32\xed\x2c\x53\x66\xb3\x77\xa7\x63\xc8\x1e\xb9\x9d\xd2\xd9\x1b\xf4\x84\x9d\xdb\xdd\x46\xa5\x6a\xef\x15\x96\x2c\xb0\xfb\x6c\xc7\x5d\x66\xd5\xdc\x15\x21\x33\xa7\xb5\xec\xf4\xe1\x0c\xff\x4e\x1c\x4a\x58\xee\x17\x97\x5f\x82\x69\xe7\xdd\xbc\x4e\x44\xd9\xe1\x73\x71\xcd\x82\x9d\x41\x2f\x13\xd0\x2a\x20\x60\x1e\x71\x13\x06\xc1\x88\x22\xb6\xc5\x22\x81\x67\xb6\x5c\x44\x66\xa7\xf8\xb4\x93\x6f\x67\xc8\xcb\xde\xd8\xfd\x59\x63\xe8\x13\x26\x3e\xbb\x28\xcc\x8e\xfc\x9c\x60\xaf\xc6\xb1\xad\x79\x34\x3d\x08\x7c\xa3\xea\x41\x67\xa7\x7e\x80\x5b\x31\x64\x9b\x1e\x88\x17\x39\x24\x7e\x6c\x20\x2f\xb1\x9d\x03\xe9\x2f\x55\xdb\xf7\xa0\xa0\xb2\x5f\xef\x08\x74\x36\x49\xb3\x38\x20\x99\x46\x7a\xbd\x71\xf1\x81\xde\x88\x4b\x51\xd0\x20\xc8\x69\x29\xaf\x17\xc8\x4f\xab\x5f\xd8\x01\x45\x56\x1b\x6e\xe1\xea\x36\x79\x9b\x6c\x86\x83\xd1\x1e\xc9\xec\x03\x4e\x83\x2a\x06\x70\xa4\xcc\x69\x68\xc8\xc4\x79\xfa\x03\xee\xcc\xe8\x1e\x6f\xbc\x20\x44\x66\x52\xa5\x40\xcc\xb4\x3f\x45\xc7\x07\x2e\x92\xaa\xda\xeb\x07\x8e\x30\xf9\xc2\x8b\x23\xaf\x9d\xed\x17\x16\x99\xaa\x4b\x16\xf3\xf7\x17\xd3\x8c\xcf\x55\x74\x7d\x14\x32\x2d\xc3\xc8\xe4\x5d\xe9\x00\x07\xcc\xf6\x2a\xba\x3f\x70\xe9\xaa\x03\x98\x07\xae\xed\xf7\x91\x82\x03\xe7\x95\x7a\x76\x7f\xb8\xdb\xd6\xc4\x53\x68\x1b\x0a\xe2\x25\xd6\xa2\x3b\xc0\x91\x29\x23\x89\x95\x91\x8c\xf6\xba\x6a\xc8\xab\x4d\x00\xb5\x8e\x4c\x15\xae\x7e\x9f\xe4\x2b\xee\x77\xc0\x08\xd7\x8d\xfa\xe5\x80\xd1\xdd\xb3\x7f\x5f\x10\x09\x87\x4c\x56\xb1\x23\xfb\x40\xe4\xc6\xd7\x31\x1d\x38\x3d\x6e\xdf\xe6\x81\xa2\xa5\xf6\x2c\x1e\x8d\x20\x6a\x8a\xc8\x05\xf6\xcd\xe2\xe5\x80\xcd\x5d\xbd\x6a\x0d\xb4\x6a\x90\x57\x64\xa7\x19\x02\x9e\x7a\x91\x3b\xf4\x40\xb6\x70\x35\x88\x9d\x92\x45\x2c\xf4\xc0\xf9\xa9\xf4\x5a\x18\x9c\x9f\xaa\xaf\x17\x48\xce\xd1\x5d\xc2\xdc\x14\x8f\x3c\x78\x87\x94\xed\xd1\x03\xf9\xc5\xae\x2f\x70\x74\x9c\xd3\x7f\xb5\x71\x6b\x99\x34\x9a\xa3\xd3\xa6\x6a\x7e\xe1\x80\xcf\x49\x78\x42\x2a\xcc\x8b\xd1\xf0\x7e\xd5\x66\x10\xb9\x32\xd2\x0c\x0e\x9e\xb8\x12\xcf\x3d\x68\xc4\x77\x05\x60\x0f\xe6\xce\xe4\xf4\xa3\x12\x0c\xc7\xb4\xf9\x93\xef\x34\x39\x06\x6f\x8a\x33\x2b\x44\x20\xca\x19\x02\xc7\x60\x9d\x49\xb7\x51\xe2\xc5\x9c\x71\x20\x2e\xf9\x82\x0f\xe5\xdd\xbc\x59\xa0\x54\xbc\xd6\x7d\xe0\xce\x2d\x59\xf8\x07\x92\x72\x9c\x47\x75\x40\xc5\xa8\xd2\x6c\x8f\x9d\xa5\xda\xf4\xfe\x9e\xf1\xbe\x56\x08\x95\xff\xbb\x57\x00\x45\x9d\xaa\x97\x98\x87\xa9\x1c\xab\x38\xe8\x21\x70\x40\xf0\x80\x87\xc0\xf9\xdb\xc7\x4e\xc9\x2a\x3f\xfb\x41\x07\x81\x59\xd4\x3a\x34\xae\x0f\x0e\x3a\x2e\xb5\x22\x28\xc9\xe4\x38\xea\x81\xd3\x57\xe9\xd5\xa6\x5b\xc5\xb4\x8f\x48\x97\x4b\x92\x1e\x07\x2f\x71\x36\x00\xb4\x07\xbc\x7f\x0f\xea\xda\xd9\x5d\xe2\x86\x44\xa9\x3b\x07\xeb\xac\xca\x03\x76\xd0\x9f\xe0\x58\xc7\x81\x58\xd7\x8b\x6f\x9f\xdc\x2a\x5a\x06\xa8\x37\x8e\x7d\x1c\xa8\xbb\x6a\x4b\xfa\x98\x0a\x4d\x6a\xd2\xd9\x0e\x9c\xf6\xaa\xc6\x32\x2e\x06\xa8\x66\x79\xa8\xfb\xef\x78\xce\x71\x72\x15\xbc\xce\xbc\x1b\xcb\x9a\xfb\xb1\x14\x1c\x39\xdd\x0f\x2a\x38\x7e\x01\xde\x06\xeb\x80\x07\x8e\x7e\xd9\xbd\x7b\x20\xa9\xa8\x9a\xc7\x5d\x24\x75\xc3\x70\xad\x75\xd0\xa4\x70\x37\x96\x73\x1b\x0e\x9c\x0d\x7b\x49\x3f\x44\xad\xec\x50\x3e\x10\xb4\x72\x2d\x9e\x83\x57\x63\xc9\x3a\x39\x58\xa1\xc9\x35\xca\x8e\x9b\x4a\xa5\xdb\x90\xb7\x5e\x26\x84\xac\xaa\x21\x44\xc8\xca\xc5\x81\x0e\xe8\x53\x4e\x25\x3e\x6e\x54\xf9\x93\x65\x79\xdc\xfd\xfb\xab\xf8\x9c\xcb\x81\x94\xa2\xf2\x1a\x0f\x6a\x8c\xa2\xe7\x07\x22\x5c\x9b\x43\xa4\xc7\xd4\xbf\xd2\x4b\x34\xde\x6b\x11\x84\x82\x87\x8b\xa0\x11\x79\x0a\xde\x41\xab\x03\xe5\x52\xed\xf2\x39\x96\x33\x23\xfb\x01\x2a\xf8\x5a\x49\x79\x38\x27\x8f\xd0\xe1\x33\x12\x0e\x50\x2c\x35\xbe\xbe\xbf\x38\xa2\x90\x82\x0c\x24\xdf\x8f\x78\xc0\xd7\xe1\x1c\xbc\x13\xc5\x51\xed\x91\x3e\x51\x82\xc9\xd5\x83\x4e\xb8\x3a\x5a\xd1\x9c\xce\x0d\x2c\x66\xb8\x8d\x55\x90\x58\x39\x11\x66\xf3\x89\x82\x73\xe3\xd5\x95\x45\x6d\x06\x77\xa2\xda\x07\xe2\x88\x1e\x90\xbb\xb7\xb8\xc3\x0b\x03\xb8\xc3\x1b\x19\x52\x41\x6d\xdc\x54\x25\x0e\x75\x22\x5d\xdb\xae\x96\x73\xd5\x60\xd2\xba\x9e\x48\xd7\x36\x13\x3d\x11\x95\xcb\xba\xb2\xb7\x9c\x53\x5f\x8d\x6d\x73\x0f\xf4\x28\xc9\xdc\x39\xa1\xaf\x26\x8b\x99\x13\x71\x38\xbb\x3d\x4e\xdc\xd1\x3a\xb9\xe8\x0f\xa4\xce\xb9\x62\x70\x62\x99\x67\x04\x19\x69\x6f\x9f\x11\x1b\x41\xd1\xaa\x73\x79\x59\x9a\x1f\xc0\x5f\x2e\x7e\x75\x46\x4a\x6a\xed\xc5\x13\xb7\xb0\xfa\x5a\xd7\x93\xe9\xda\x8e\x96\x9e\x2c\x22\x60\xd9\x7d\xb2\x88\x80\x33\x9b\x4f\xe6\x6f\x3b\x53\xf9\xa4\xdb\xe5\xd5\xa6\x70\xf6\xca\x27\x5a\x16\x92\x7e\x27\xa2\x70\xb6\xd2\x4f\xd6\x19\x78\x2d\x1d\xaf\x6a\x7d\xad\x1d\xeb\x0a\x38\xb9\xf9\x4c\x2c\x0e\xac\x89\xa1\x8e\x80\x03\x79\x67\x42\x41\x2f\x63\x06\x55\x04\x6c\xd5\x9f\x53\x03\x4f\x36\x34\x4e\x16\x4b\x95\x30\x39\xf3\xba\x56\x4a\x6d\x6a\x76\xc2\x6c\xe6\xd5\x56\x9a\x23\x6a\xa1\x3a\x03\xec\x44\xed\x53\xdd\xcd\x5f\x4e\x64\x94\xfb\x74\xff\x89\xd3\x78\xce\xb5\x3e\x51\x30\xc0\x05\xc8\x4e\x44\xe5\x1c\xa5\x3b\x91\x4f\x5e\x8d\x10\x44\xe5\x2c\x8e\xcf\xa9\xce\xb7\x2a\x23\xf4\x2c\xa0\x6d\xaf\x41\x81\x46\x63\xd2\x5e\x41\x35\x03\x50\x28\x3d\x4d\xba\xe5\xc0\xe1\x4a\xb7\xd7\xba\x0b\x44\x28\xec\x3d\xb9\x4b\x6a\xc7\xe6\x00\x75\x43\x6e\x95\x60\x44\xbd\x01\xa7\x72\x9e\x15\x87\x1a\x65\x6b\x9f\xcb\x6f\x25\xeb\xfe\x44\x06\x7b\x33\xdd\xe0\x9a\x82\xf1\x1a\x80\xe6\x62\xf7\x83\x13\xb3\x16\x95\x30\xd5\xca\x0e\xbb\xb3\x12\xad\xee\x11\xcb\x6e\xb2\x69\x34\xa4\xcd\x64\x98\x7d\x6e\xea\x47\x79\x27\x5d\x24\x5e\x4e\xa4\x5e\xb9\x8a\xe8\x09\xb7\x57\xed\x5e\xe8\xe5\xf6\x32\x63\x5d\x2a\x7c\xf7\x27\x14\xf2\xee\xb3\x93\xcd\xb8\x53\x9e\xd7\x73\x98\xf8\xec\xf4\x4a\x88\xdd\x9f\xa8\xb7\xe4\x2b\x39\xcf\xce\xdc\x61\xa3\x6a\xe0\x78\xae\xb9\x2b\xee\x0d\xa8\xf2\x48\x9d\x83\x5b\xd0\x3d\xe0\x40\x9f\x4f\xcb\x9f\x63\x41\xe9\x2f\xd6\x10\x82\x92\xe5\x93\x2c\x47\x4f\xde\xe8\x6f\x76\xb6\xfc\x62\x26\x88\x9d\x5a\xba\x65\x00\x6b\xfb\x9b\x1b\xed\x74\x10\x98\xec\x77\xde\xb6\xa6\x79\x23\xe1\xca\x91\x88\x73\x27\xfa\xbd\x7e\x3b\x63\x6f\x5a\x60\x44\xc2\x9a\xa7\xc5\x2b\xad\x1c\xa9\x3d\x8f\x00\x39\xa9\x0f\x8e\x85\x18\x7d\x41\xbd\xd6\x78\xe0\x1d\x57\x76\xcc\x9d\xcb\x31\x67\x22\x3b\x48\x33\x6e\x43\x0b\x94\x7f\xe1\x84\xe3\xae\xbc\x7a\x64\x5c\x4c\x93\x3c\x38\x07\x83\xc8\xc5\xf6\xef\x20\x6a\xd9\x84\x27\xd2\xad\xaa\x9c\x07\x27\xb5\xce\x9f\x95\x59\x38\x59\x80\xc0\x61\xdf\xf3\xa4\x00\x30\x2b\xe3\xf5\xab\xdd\x72\x73\x05\xb4\xa4\x06\x9f\xd7\x22\x60\x21\x11\x99\x4f\xbe\x1d\xfc\xbc\xd6\xbe\x14\x88\x48\x2b\x77\xd9\xc0\x93\xb7\xa5\x4a\xe3\x3a\xef\x65\x28\xab\x07\x1c\x81\x73\x9e\xc4\x79\x73\x04\x2d\xc2\x0d\xc3\xd9\x9c\x01\x85\x8b\xaa\x59\xc9\x4d\x21\x65\xa4\xde\x28\xe4\x6f\x4a\x9b\x2a\x5c\x7a\x31\x58\x5e\xe3\xe4\x20\xed\xf9\xe0\x38\x8d\x77\xd8\xd4\xd0\x92\xef\xfa\x3e\x91\x97\x54\xcd\x39\x9e\x03\x39\x98\x82\xe0\x21\x44\x1f\x1c\x5d\x1b\x1d\x59\xe2\xa7\xd7\x46\x4d\x5c\x74\x71\xf1\x26\xa5\xe0\x2f\x40\x17\xc2\xc1\xb5\xd1\x17\x90\xfd\xc2\x4a\x7c\xf8\xb4\x59\x15\xa0\x88\x96\x2f\xc4\x96\xaa\x0c\xa2\x6b\xc5\x96\x44\x9a\x17\xca\x06\xd4\xee\x1e\x40\x5a\xa2\x85\x6b\xe5\x29\x15\xb5\x41\x6a\xa2\x84\x0b\x79\x4b\xbe\xd4\xf2\x42\x3e\xb8\x6f\xea\xbd\x10\x89\xaa\xc3\xe3\x71\x4a\x9a\x41\xe0\xf6\xac\x7e\x00\x39\x28\x2b\xf2\x8a\x6b\x4a\x9a\x02\x75\x24\x79\x84\x2f\xde\x4f\x6a\x57\xda\xb5\xd2\x94\x5e\x5d\xf0\xcc\x81\x07\x8d\x38\xc9\x91\xfd\x05\x33\x66\xfc\x3b\xc3\x10\xda\xf1\x57\xa2\x7a\xaf\x1d\x7e\xc1\x23\x38\x7c\x58\xe8\x4a\x6b\x57\x09\xac\xb4\x76\x80\x96\x82\x99\x3f\xf6\xec\x5c\xb8\x4b\xde\xa6\xdf\x95\x29\x1d\xbd\x58\x79\xc1\xad\x51\x79\x83\xa8\xb3\xc0\xae\x15\x8d\x92\x96\x72\xb1\x6e\x91\x8f\xc1\x5c\x48\xfa\x76\x41\xf4\x0b\x75\x8c\x2c\x92\x2f\xaa\x21\x72\x45\x5f\x53\xed\x48\xc3\x34\x5a\x68\x31\x37\xbf\x00\xf4\xcb\x97\x7d\x31\x19\x28\xfb\x03\x6a\x76\xcd\x2f\x50\x11\x49\xee\x01\x20\x68\x9f\x5d\x95\xc8\xf5\x02\xd6\x45\xa4\x9a\x37\x2b\x49\x5a\x6f\xb8\x50\x17\xd2\x6e\xb7\xab\x52\x5c\x1a\xb7\xd4\x13\x86\x5f\x40\xc6\x90\x14\xed\x0b\xc9\x33\x9b\x51\xbd\xd4\x02\x43\x4d\xc7\x9e\x36\xf3\x45\xb5\x40\x9e\xee\x8b\xd5\xc6\x7d\x88\xea\x62\x9d\x23\x73\xd1\x6b\xd5\x35\x92\x4c\xbf\x50\x7f\xdc\x2c\xef\xe2\x79\x32\x1f\xb3\xba\x50\xc6\xd1\x19\xd8\x17\xea\x18\xb9\x00\xce\xb5\xb4\x84\xe6\x0f\xa8\xd2\x79\x37\xa2\x70\x91\xef\xd5\xbd\xa8\x35\x18\x6f\x28\xba\xe8\xe2\xf5\xd7\x20\x63\xf7\xf6\x5c\xe1\x34\x2f\xce\xe0\x66\xf2\x86\x66\xb6\xcc\x6b\x77\x0d\x8a\xf0\xd7\x20\x54\xda\xc6\x8f\x42\x42\x17\xef\x71\x7f\x6d\x4e\x24\xcf\xd8\x2e\xbd\xc6\x42\xac\x66\xbd\xd3\xda\x30\x0d\xef\x44\xac\xdb\x8c\x49\x49\x89\xb8\x76\xee\x1b\x29\xf7\xd7\xbe\x06\x15\x22\xa6\xd6\x90\x6d\x08\x5e\xc8\xda\xf6\xa5\x1a\xd7\x41\xfa\x90\xb8\xb9\x10\xbe\x2b\x0e\x98\x5f\xac\x48\xee\x40\xf0\x75\x70\xf5\x04\x04\xf2\xb4\x37\x79\xaf\x2f\x08\xf9\x16\xdc\x23\xe7\xad\x69\x9e\x6b\x29\xd4\xc1\x49\x3f\x8d\xb9\x3d\x9c\x4b\x4d\xf6\xf1\x75\x32\x59\xaa\xf8\x01\xbc\xac\x96\x06\xb8\xc1\xa7\xc9\xa6\xba\x4e\xca\x48\x2f\xff\x05\x7f\x99\x49\x96\x85\x86\xec\xff\xba\x2e\xa0\xda\x93\x40\x4e\x75\x0b\xfe\xbd\xa2\x2d\xac\xf0\x80\x9a\xd5\xd2\xeb\xe2\xb1\x3c\xf3\x8f\x8b\xe1\x59\x13\x18\x6e\xa5\xf4\xdd\x47\x17\xbc\x4d\xaf\xa5\xb8\x58\xb4\x5c\x68\x59\xe1\x39\xb3\x30\x84\xe7\x1c\x6f\xbf\x90\x11\x9d\x5c\xa1\xf0\xc2\xf1\x7b\x5f\x0d\x7e\xdd\x6b\xe9\x34\x04\x02\x78\xc3\x14\x7d\xb3\x5a\xa0\xd0\xc2\x33\x6b\x26\x06\xe8\x2a\xd6\x7e\x2e\x16\x32\x72\xd8\xf5\xba\x39\x27\xb7\x91\x82\x6f\x08\xd6\x1d\xeb\x1a\xe0\x21\x9a\xdd\x46\x91\x5a\xcf\x60\xea\x2a\xc9\x9e\xd3\x0b\x77\xef\xf8\x6c\xd9\xf5\xb4\x69\x78\x79\x02\xcf\xc2\xba\x66\xf8\x2c\xa6\xec\x37\xe8\xe3\xf3\x08\x17\xf2\x15\x05\xf1\xc3\x42\x2e\x86\x88\x35\x93\xb5\x8e\xf7\x8a\x2e\x8a\xe5\xde\xf0\x2f\xf9\x7c\xdb\x8d\xf3\xff\x4e\xe3\xbe\x71\x8d\xa4\xf3\x24\xee\x8d\x3a\xa5\x54\x89\x1b\xda\x4f\x8b\xee\x00\xd4\x2c\xc6\x73\x6f\x34\x58\xc4\x07\x6e\x28\x3b\x2d\xba\xbd\xb8\x5b\xd7\x03\xde\xc8\xad\x1e\x50\x03\xe9\x75\xfe\xed\x86\xf6\xd2\x64\x44\xdf\xd0\x5e\x9c\xd9\x7a\x07\x82\xa4\x49\x4f\xed\x25\x6d\xc2\xf3\xbd\x2a\x74\x8b\x98\x6f\x9e\xd0\x37\xb9\xdf\xb8\xbb\xc6\x11\xd2\x9b\xd7\x40\xfa\x20\xec\x1d\x91\x7d\x16\xfc\xc2\x9c\xa5\x6d\x89\x1b\x29\xd1\xaf\x13\x77\x37\x0a\x6c\xfb\xea\xbf\x1b\xce\x18\x07\xbc\x6f\x5e\x65\xe3\x73\xaf\x77\xc2\x2d\x8c\x9b\x5f\x28\x7c\x41\x3d\x26\x5c\x00\x21\x6a\xba\x13\x62\x15\xdd\x23\xd0\x47\xed\x95\x42\x74\xd3\xbe\x94\x1b\xc1\xcc\x26\xd7\xc3\x8d\x7b\x1e\x9b\x7c\x3b\x77\xc6\x85\xd6\x06\x39\x83\x55\x4a\x96\xde\x3c\xca\xe6\x20\xfd\xbd\xa2\x9f\xda\xe3\x77\x86\x95\x67\xda\x80\x1a\xe3\xb3\xb7\x37\xee\x79\x6c\x3f\xcb\x4a\xb8\xe1\x3a\x71\x71\x80\xbb\x50\x2f\xf7\x68\x85\xf0\x09\x83\x65\xd1\x8d\xe0\x2b\x8c\x62\x67\x3f\xa0\x6f\xd3\xa4\x57\x58\xeb\x46\xfe\x9e\x1b\xe5\xb3\x9b\xb7\xc3\xd4\x82\x92\x53\x6d\x6f\xe4\xfc\x34\xa9\x8f\x77\xc5\xf6\x71\x87\x95\x33\x14\x8c\x75\x11\x92\x3f\xa0\xa3\x4f\x3a\xcf\xdd\x16\x2d\x6a\x99\x70\x03\xe3\x6b\x9d\x1b\x87\x70\x1b\x5c\xc6\xb4\xda\x28\x80\x64\x7e\xdc\xb8\xc5\xc5\x41\xb0\x1b\x09\xc4\x8e\x30\xdf\x08\x6e\xba\x50\xe3\x8d\x53\xfa\x63\xf3\xef\x38\xb4\xd0\xdd\xdf\x85\x20\x96\xdf\xbf\xb1\xe3\xfd\x3b\x70\x66\x4a\xee\x0c\x2c\x48\x1f\xbe\xa7\xce\x95\xb6\xcd\x6d\xa8\x58\x12\x5f\x37\x2a\x2b\x39\x9b\xeb\x9e\x1a\x56\x72\x38\xe8\xee\xf4\xee\x0a\xc9\x7d\xad\xab\x1f\x40\x62\x3a\xe9\xe9\xee\xf0\x49\x7b\x99\x10\x58\xdc\x24\x1a\xee\x51\x91\xd3\x26\x14\x0d\xe4\xc2\x9b\x47\x51\x59\xda\xdc\x21\x2f\x80\xe9\xee\x90\x11\x23\xb5\x71\x58\xdf\xd7\xd1\xdf\x7b\x24\x44\x42\x0a\x22\x83\xaf\xfb\x77\xef\x1d\xee\x0a\x67\x6d\xdc\x3b\x0c\x59\x59\xc2\x37\xb2\x8b\x37\x93\xd6\xbe\xc8\x5b\x78\x87\xd3\xe5\x75\x74\xf4\xde\x79\x17\xad\x16\x8a\xd1\xc5\x17\x5b\xdb\xc1\x18\xa5\x0c\xdd\x70\xba\x84\xd7\x8e\x59\xc9\xc4\x12\xe3\x37\x9c\x2a\x0e\x1a\xdd\x07\xa2\x0b\x66\xb5\x8c\x16\x9a\xfb\x1f\x1d\xb4\xe3\xf7\x07\x41\xd0\xb4\x0f\x1a\x60\x52\xfa\x6e\x5c\xaa\x68\x3b\xe4\x46\xa9\xc6\xe6\x54\xa1\x1b\x15\x90\x9a\x37\x0c\xf4\xab\xcd\xdb\xfe\x84\x06\x57\xdc\x86\xcc\x74\xaa\xf9\x8d\x53\x6c\xc1\x07\x3b\xef\x73\x91\x8b\xbb\x24\x05\x0b\x91\x17\x57\x53\x98\x66\x2a\xb1\xf3\xad\x6e\xba\x5e\x9c\x8d\x74\x5f\x2b\xf7\x4f\x6d\x68\x5c\xa6\xd0\x6b\xe1\x41\x30\x5c\x0b\x28\x8f\x01\x2d\xd0\x78\xb9\x16\x90\x06\xea\x99\x34\xeb\x6d\x87\x1a\xd5\x76\x70\xde\x37\xe4\xac\x3c\x27\x37\xc2\x77\x3e\xeb\x7c\x23\x1f\xca\x3e\xbc\x9b\x37\x1c\x3a\x44\x79\xe3\x84\xd9\xeb\x4a\xe8\xfb\x86\x2e\xec\x7d\x89\xf0\x9a\x6f\x84\xb8\x1f\x8e\xa8\x0e\x10\x5d\x73\xd1\xfe\xfb\x01\x33\x94\x3f\xf5\x46\x32\x94\xa3\xe9\x37\x8f\x98\x99\x51\x3d\x58\xe9\xea\x36\xcf\xb6\x7a\x0a\x28\x08\xd0\x9b\x5f\x80\x37\xdf\xe1\x80\xfb\x41\xa1\x05\x4f\x89\xe1\x38\x67\xfc\xdc\x28\x1b\xd9\xea\x8f\x7c\x72\xf7\xc3\xe0\xc4\xa7\xf7\x67\xa3\x07\x4e\x28\x7e\x10\xbc\x73\x5c\xf9\xd9\x18\xea\xd2\x1e\x7e\x36\x60\xa4\xfa\x03\x5c\x61\x2a\x71\xf3\xf0\x4c\x9c\xd3\xdc\x1e\x94\x5b\x7a\x9d\x29\x7e\x98\xfc\xe5\x14\xa4\x07\xa9\xcd\x8e\x6d\x3f\xb8\x62\xc5\x6c\xe4\xa1\x7e\x26\x9f\xc8\x83\x64\xb0\x6d\xf8\xf7\x49\x67\xce\xf6\x7f\x58\x31\xdb\x39\x6c\x0f\xe2\x79\x2e\x17\xf6\xa0\x62\xb6\xcb\x36\x3c\xd4\xe7\xe4\x52\x79\x98\x07\xed\x39\x07\xd4\x01\xd8\xfc\x3d\xd2\xdc\xa5\xf8\x3f\xc8\x46\x73\xc1\xb2\x07\x37\x25\xda\xc6\x7f\x02\xc5\x97\x00\x5c\x17\x25\x6a\xaf\x3d\x28\x66\x30\x8a\x07\xb8\x89\x22\x43\xf4\x80\xae\x34\xa3\x18\x60\x3f\xe9\xf7\xb8\x76\xaf\x86\x88\x74\x88\x17\x3f\x20\xb7\xf6\x32\xe0\x22\x71\x07\x1c\x1f\x16\x37\x10\x67\x7d\x56\x55\x70\x4d\x2a\x92\x59\x4b\x53\x7f\x70\x63\x8b\x0f\xa7\x3c\x11\xdb\xbd\x79\x00\x6e\xf7\xe0\x11\xc0\x93\xe4\x6d\x79\x98\x44\xfd\x02\x9a\xd1\x3c\x69\xc1\x4f\xc2\x69\x15\x31\x90\x27\x31\x94\xad\x59\x23\x96\xf7\x3a\xc5\xfa\xe0\x8c\x9d\x0d\xf4\x07\x67\xec\x5a\x73\x1b\xa7\x81\xad\xce\x3d\xa8\xb9\xf9\x3a\xc4\xfc\x20\xda\x67\xa7\xc3\x93\xe8\x09\x15\xc7\x78\x50\x33\x7c\x64\x0f\xc9\x1c\x04\xa3\x05\xf1\xbe\xd7\x39\xea\x07\x01\x3f\x1f\x63\x7d\xf2\x5a\x09\x75\x91\x71\x8b\xbc\xc9\x87\x35\xa4\x9c\x51\xf7\x64\x4e\x43\x40\xc1\xf9\x66\xcf\xc5\x03\x5f\x9b\x0f\x54\x3e\x79\x49\x24\xbf\x00\x1e\x61\x82\x2f\x0b\x46\x61\xba\x10\x46\xa1\xa1\x4c\x11\xe6\x4b\xe5\x1f\x5e\x77\xe8\xb4\x9f\x67\x69\xa6\xb2\x60\x9e\x02\x6a\xe8\x6e\x93\xf5\x1a\xb3\xf0\xc6\xb5\x6a\x18\x40\x2e\xf2\xc7\x3e\x95\xd4\x60\xbc\xa1\x2c\x95\x93\xb8\x1f\xdc\xfb\xe2\x23\xfb\x0f\x82\x7c\xcd\x79\x84\x0f\xd2\xf8\x5e\x07\xaf\x1f\x9e\xa5\x1b\xc3\x63\xc0\x14\xec\xfe\x02\xfe\xd9\xe2\x36\xef\x5d\xd0\x2c\x51\x96\xca\xa6\xe6\x83\x02\x0c\x9b\x17\xa6\x42\x67\xf2\xda\x57\xcc\xc9\x68\xe3\xd1\xb9\x17\x9e\xa1\x1a\x3b\x40\xf7\x34\x5e\x21\x26\x00\xa1\x29\x37\x5f\xef\xff\xc0\x3d\xd8\x4c\x8f\xb8\x04\xc6\x22\xf3\x61\x05\x07\xa7\xd8\x3d\x0d\xb9\x4c\xb2\x9f\x9f\xb6\xf3\x05\xf7\x00\x0a\xcf\xfe\x60\x51\xb8\x16\xaa\x91\xf9\x98\x7d\x52\x1b\x96\x06\xf4\x40\x1b\xf6\x81\x9a\x07\x05\xad\x6a\xde\x7e\x22\x81\x1e\x3a\x27\x65\x7e\x3c\x9d\x13\x14\x0a\x91\x33\xd8\xcd\x13\x98\x32\x68\xde\x4d\x5f\xa5\x2c\xb6\x07\xb5\xb1\x7c\x96\xe3\xe1\x5d\x8a\x2f\x84\xa0\x22\x69\xb3\xb4\x80\xeb\x72\x78\xcd\x79\x31\xba\xf4\x9c\x07\x19\x82\xc1\x19\x7a\x0f\x22\xa0\xcd\xe9\xa0\x0f\xce\x0a\x38\x6d\xe9\x41\x04\xd4\xaa\xf7\x83\xa3\x03\x21\xbb\x9d\x70\x3d\xaa\x3a\xe4\xc9\x01\xa7\xc8\x3d\xd0\xd5\x7d\x4d\xda\x83\x1c\xc0\xe4\x5c\x8a\x07\x05\xd9\xdb\xf0\x88\x27\x27\xe9\x07\x0b\x68\x7f\x81\x1d\x2f\x77\xc0\x43\x6d\xde\x94\x8c\x88\xaa\x2b\x43\x3e\xfb\x22\x3c\xf5\xb8\xaf\xcd\xe4\x2f\x28\xc7\x8d\x97\x9d\x98\xd7\x90\xfb\x80\xb1\xed\xdf\x61\xe3\x6c\xee\x91\x1c\x41\xd6\xfb\xb3\x33\x0f\xc0\x72\x76\xc7\xf6\x19\x7e\x81\xa9\x15\x6e\x3f\x04\x41\x43\xa2\x84\x85\xd3\x45\x9f\x03\x82\xda\x94\x09\x5d\x3f\xb9\xb0\xc2\x73\x70\xc3\x6b\x69\x8e\xc5\xc6\x34\x04\x52\x01\x83\xd7\x1a\xce\x53\xdf\x50\xfc\x4c\x65\xbf\x39\xec\xff\xc0\x79\xea\x40\xf4\x73\x12\x6d\x72\x10\x3c\x48\xe4\xb3\xd7\xf9\x39\x17\x73\xf7\x03\xee\x60\x45\x42\x1e\xd6\x43\x75\xde\xdc\x03\xf5\xbf\x39\x0a\xf1\xd0\xdd\xea\x3d\x83\xeb\x16\x9d\x0e\xf1\x40\x55\xf7\xc5\xaf\x0f\xa2\xa8\xae\x13\xfa\xe0\xe4\x41\x7a\xb5\x2f\xbc\x2f\x90\x2e\xe4\x1a\x49\x49\x7d\xa0\x97\xdb\xba\x7d\x10\x53\x7d\x55\x62\x78\x58\x0b\xc2\xd9\xc5\x0f\x12\xeb\x7c\x49\xdd\x73\xaf\x49\x6a\xa5\xee\x35\x49\xbf\x41\x2f\x82\x59\x21\x2a\x91\xfa\x94\xde\xc3\xab\xc5\x4b\xf2\x0b\x17\xbb\x10\xee\xa1\xcc\xbf\x74\x59\x28\xf3\x3e\xf3\xfb\xf0\xe0\x9f\x13\xcf\x1e\xde\x18\xe3\xe4\xd5\x07\xb9\x72\x4e\xcf\x7b\x78\x83\xcc\x6b\x23\x42\x9f\xf7\x15\x5a\xcf\x43\xee\x2a\xcf\xc3\x33\xf5\xf7\xdc\x5f\x3d\x70\xa7\x7a\xe2\xac\x66\x6a\x09\x80\x6a\xa6\xba\x6b\xa0\x6e\xac\x4e\xaa\xfb\x8d\xea\xc6\x12\xed\x4a\x86\xa9\xdb\x0a\xce\x56\x3f\x98\x7b\x5d\xe7\xe8\xeb\x86\x0b\x62\x94\xbb\x55\x37\xd4\x8c\x50\xe1\xe1\xba\x05\xf0\xa7\xa2\x21\x79\x13\xb8\x6a\x3c\xd4\x2d\x50\xda\x57\x3f\x28\xe8\x41\x30\x05\x9e\xfa\x2a\x6a\x93\x37\x7c\xd6\xa6\x6e\x81\xf7\x7e\x55\x8f\x39\xd0\x83\x7b\xa4\xa5\x9f\xdc\x25\x10\x17\xdc\x03\x94\xfc\xe0\x21\x90\xd6\xf4\x11\x4a\x75\x63\x35\xaf\x92\x35\x02\x3c\xa0\xbd\xfe\xe4\xe4\x6a\xdd\x22\x49\x63\xa8\xbd\x08\x58\xc3\xf3\x46\x43\x19\x42\x75\xc3\xe1\x0f\x85\x6e\xeb\x86\x72\xa6\xaa\xe6\x54\x37\x94\xa4\xa8\xc6\x21\xd4\x65\x1d\x48\xaf\x5b\x24\x02\x04\x3f\xd2\xe3\x74\xe6\xb4\x6e\x91\xf3\xd7\xa2\xb0\x72\x98\xf2\x87\xea\x86\x23\x88\x8a\x1c\xd5\x0d\x37\x89\x77\x23\x08\xb7\x1b\xba\x5c\x49\xdd\xe0\x6e\xad\x2a\xdb\x56\xb7\xa9\xfd\x66\x15\xb9\xaf\x5b\xa6\xc6\x95\x45\x38\xd0\x54\x55\xf3\xa5\x6e\xb8\x8e\xb0\x27\xb7\x13\xda\xee\x00\x38\x88\x1a\x71\x85\x8d\xab\x3b\xe4\xb6\xcf\x02\x92\x17\x0c\x26\xd3\x5e\x26\x4c\x42\x13\xc2\xc8\x5b\xd2\xaa\xf2\xf4\x89\xb2\x8a\xeb\x86\x8b\xbb\xbb\xdb\x50\x65\x15\xb5\xa9\x1b\xe3\xc8\xca\xdf\xab\x1b\x8e\xa3\x0c\x2f\x04\x4f\xa3\xa8\x9a\x54\xdd\x10\x48\xce\xa6\x5d\x68\xb2\xfd\xd5\x26\x88\x02\x89\x45\x21\x8a\x26\x59\xb8\xdd\xf4\x7e\xe5\x76\xd3\xca\xd6\xc5\x2d\x35\x20\xc2\xce\x9b\x8a\x51\xd7\xad\x12\xaf\xfe\x02\xdc\xd3\x48\x98\x7a\x6c\x1c\x86\xb8\x92\x47\x98\x03\xa0\x28\x84\x2e\xc9\xab\x1b\x0b\x87\x79\x0a\x95\x53\x10\xc8\xa8\x5c\xdf\xbd\x7f\x11\xc5\xd6\xd1\x8f\xba\xb1\x72\xfd\x26\x9c\x41\x8f\x55\x71\x84\xba\xb1\xb4\x6a\x53\xff\x6d\x21\x5d\x10\x36\x54\x10\x34\xc3\x80\xda\xfa\xee\x80\xb6\x61\xd1\x0c\x1a\x45\xbb\xb9\x1c\x0a\x3c\x74\xf3\x87\x4e\xe6\x5d\x44\x7c\x50\x1c\xfb\xeb\x03\x20\xcd\xfc\xa0\x23\xab\xa6\x68\x48\x9e\x35\x51\x36\x79\xdd\x3a\x89\xb3\x88\xbc\x71\x37\xa1\xaa\x05\xd7\x8d\x57\x13\x7a\xcb\x77\x60\x2d\x8b\x76\x3b\x8e\x7b\x75\x61\x0d\x15\x22\xba\x37\xe0\xf2\xe1\x9a\x52\x78\xf5\x60\x31\x4c\xb8\x7a\xb0\x9b\x56\x19\x15\x2f\x1e\x92\x51\xf1\x4d\x20\xf1\x6e\xc2\x6a\x52\x19\x6b\x12\xc2\x13\x0e\x9d\x76\xf3\xa1\x41\xa0\x35\xc9\x75\xcf\x77\x35\x0c\x0b\x4a\x81\xcd\xe2\xf8\x59\x3d\x4e\xd5\x31\xbd\xc4\xcd\x72\x04\x9b\x1c\x91\x7c\x57\xcc\x57\x96\xea\xe8\xa5\xd8\xe9\x97\x7b\x75\x01\xb7\x59\x13\x0c\x3b\xc8\xe3\x35\x24\x5d\x44\xe6\x34\xd0\x2d\x93\x45\x18\x1c\xc5\xc1\xd4\x71\xd0\xa0\xf5\x34\x79\x0c\xb6\x9a\x77\x1d\x11\x66\x8f\x86\x44\x19\xd7\x6e\x12\x47\xe5\xfc\x6e\x62\x38\x20\xf2\x8c\xd7\x03\xb5\x3a\x4c\xc1\xac\x49\x51\x2c\x23\x71\xa8\xa4\x97\x9f\x58\x41\x75\xe3\xa5\x85\xe9\xf5\x35\xea\x6a\x34\xb7\x41\x4b\xa6\x94\x83\x46\x99\xb7\x28\x8b\xa7\x15\x4b\xd8\x93\x7c\xed\xf5\x00\xc5\xfe\xac\x06\xa0\x60\x45\x37\x6d\x9d\xb0\x3a\x8c\xf4\x73\x21\x5d\x63\x32\x5f\xef\x25\x1f\x50\xf9\x4c\xf5\x30\xeb\x86\xa0\x7c\xf7\x8e\xba\x96\xde\xa0\x21\x2e\xee\x41\x91\xd6\x45\x1c\xb9\x4d\x1f\xb2\x19\x15\x8a\xe6\x6f\x46\xcb\xb5\x40\x10\x4c\x70\x32\x57\xe3\xe9\x5a\xe4\x6c\x98\xa8\xbb\xba\x8d\xb2\xb3\x66\x55\x37\x95\x44\x75\x00\x1f\x73\x37\xe7\xba\x17\x5e\xd5\xc1\x0a\xe2\x0b\x8d\xcb\xc9\x5c\x35\x89\x1b\xc4\x6b\xf6\x4e\x5d\xb7\xf9\xf7\xb5\x74\xea\x91\xb7\x68\x9b\x2d\x50\x4f\x6d\x1a\xe1\x41\xbe\x96\x77\xcb\x43\x08\x04\x32\x9c\xd0\xaf\x1d\xfc\x2c\xa6\xa0\x11\x19\x85\x7f\xc9\xc0\x07\x45\xbe\x2c\xc2\x90\x51\xf8\x5a\x27\x6a\xad\x16\x48\xac\x42\x5b\x5e\x0f\xe8\x51\x92\x2e\x11\x50\x74\xdf\x92\x3e\xe0\x88\xaf\xc2\x09\x35\xf0\xde\x6d\x95\xcb\xa9\x01\x7e\x63\xaf\x53\xd8\x40\x8d\xd5\x1f\x70\x3f\x35\x3f\xe8\xdf\x5f\x4d\x9a\x74\x0d\xa8\xad\x66\x1e\x11\x36\x1a\x0c\x2f\x10\x08\x74\xf3\x17\x5c\x7a\x7d\xc1\xa4\x45\x9d\x95\xa9\x21\xc0\x8b\x6a\x18\xa8\xe6\x0a\xf1\x21\xf0\xac\x80\x30\x1d\xc2\x02\x52\x68\x08\x24\xe0\xec\x4f\xe0\x9a\xf3\xb4\x71\xec\x38\x24\xb7\x69\x0f\x14\x3f\x20\x75\x64\x03\xf1\x80\x9b\x6a\x16\x11\xa9\x32\xe2\xb6\x81\xaa\xab\xc8\x2f\xc4\x85\x69\xe1\x21\x82\x1e\x45\xf1\x01\x27\x35\xba\x98\x6d\x58\x07\x33\xaa\x5f\x60\x3a\xcf\xab\x4b\xa8\x03\x22\xf9\x90\x00\x82\x17\x3f\x51\x8e\xb9\x4b\xdc\x8e\xd4\x45\xa1\x81\xa7\x2e\x8a\x61\x58\xa7\x2e\xbc\xfc\x09\x86\xb8\x98\x55\x48\x74\x89\x7b\xb1\xe0\xaa\xf5\x45\x45\x35\xe0\xb2\xed\xde\x84\x07\xd4\xb1\xed\xdd\xbf\xc3\x0a\x32\x1a\x12\xd4\x32\x6d\xc3\xc0\xcb\x1c\x75\x48\xa7\x06\x6a\xb7\x5d\xb3\xca\x9c\x84\x7f\x5f\x93\x70\x0f\x8c\xe3\x89\x19\x85\x4c\x4c\xbb\x07\x5c\x4e\xef\xb5\xcd\x6b\x52\x82\x99\xda\xae\x27\x89\x74\x03\xef\xfc\xc0\xfb\xb5\xbb\x47\xa4\x14\xf0\xf7\x28\xec\x2d\xa9\x10\x70\x36\xa3\x0f\xf5\x87\x04\x83\x49\x4b\x3f\x90\x41\x01\x0e\x58\x1d\xc6\xad\xa1\x30\xd3\xd0\x64\x40\xc5\x76\x68\x34\x5e\xa9\xa4\x53\x43\x35\x54\x14\xf2\x33\x38\x95\x8a\x80\xf0\x51\x97\x48\x12\xfc\x38\x58\xdd\x87\x5f\xc0\x35\x7f\xc1\xbf\x83\x71\x45\x0f\x00\xbe\x34\x84\x9f\xca\x2d\x6e\xca\x44\xad\xb2\x61\x90\x2b\x41\x16\x51\x40\x51\x35\x2f\x0e\x38\x56\xdd\x87\xd6\x98\xa5\xcc\x8a\x29\x17\xfe\xd6\xde\x35\xa5\x06\xa2\x18\xfe\x9d\x33\x70\x87\x15\x33\x70\x1b\x24\xd1\x35\x83\xe5\x9f\x35\x99\x32\x35\x21\x79\xcd\xdb\xe2\x08\x1e\x82\xbc\xd6\x9c\xb0\x61\x92\xc1\x6d\x9e\xee\x32\xa3\x43\xf1\xb3\x17\x2f\x85\x8f\x54\xa1\x9c\x1a\xe0\x02\x1d\x32\x1d\x03\x2f\x65\x92\x03\xa9\x06\x5e\xaa\x6d\xdd\x38\x40\x75\xb5\x35\x1e\x90\xcf\xb9\x49\x9b\x0a\x70\x79\x8e\xcd\xbf\x67\xb4\xfd\x7b\x45\x5b\x93\x64\xee\x66\xf5\xd6\x18\x38\xfa\x69\xe6\x0d\x0f\x67\x1f\xa2\x84\x41\x90\xfd\xfb\x5a\x79\x21\x7a\x2c\x2c\x79\x48\x5a\x10\xd2\xe0\xc2\x4e\xf3\xb6\xab\xcf\x9d\x17\x6a\xa9\xcf\x95\xaf\x60\xcc\xef\xd0\x88\xa4\x65\x86\x95\x9f\x50\xfc\xc5\x64\xf7\xf6\xac\x84\x9d\xbe\x19\x13\x28\x0e\x89\x0c\x69\x95\x01\xe9\x9e\xc3\x42\x8c\x87\x44\xaa\x11\x8d\xfc\xcf\x21\xf7\x4f\x40\xba\xe7\x8b\xa5\xf0\x2c\xb3\xcc\xdd\xb0\x4a\xb3\x98\xcd\x1d\x8c\x28\x9b\x9e\x90\xfe\x39\xbc\x74\x07\x2f\xa8\xf0\x26\x84\x2a\x29\x07\x79\x0d\x27\x63\x87\xde\xc6\x38\x9b\xac\x8b\xe4\x6b\x80\xe2\xa8\x92\x82\x35\xa0\xe8\xee\x66\x18\x91\xce\x30\x82\xdb\x03\x6d\xa1\xf5\x24\x44\x82\x10\xa5\x56\x94\xf2\x57\xc3\x49\x24\x09\x40\x64\x8f\x0e\x73\x05\x56\xe0\x35\x71\x5d\x6b\xdd\x04\xe0\x45\x47\xb2\xe5\xd1\xb5\xd0\xec\x07\x34\x72\xcc\xcb\xae\x45\x2d\x42\x13\xeb\xdb\x16\xb3\xc3\x9b\xe9\x6c\x96\x61\xc8\x36\x18\x32\x73\x02\x93\x37\x93\xb9\x39\x4e\x0b\x0f\x53\xc7\x4d\x6d\xc1\xec\xf9\x5e\x8b\xa7\xd5\xe6\x15\x04\xc5\xec\x84\xe7\x7f\xab\xb7\x2e\x6a\xd8\x6e\x26\x49\xe8\x7e\xc3\x8b\xb7\x74\x3f\xcf\xe3\x21\x10\xfe\x00\xbc\xe0\xd5\x41\x07\x81\xb9\x03\x2c\x8e\x79\xf6\x83\xc5\x90\x43\x26\xe0\x70\xc9\x30\x4b\x46\xba\x81\xee\x9c\xac\x01\xfe\xcb\x21\xbb\x28\x42\x31\x1c\xf1\x47\x6e\xb8\xc8\xc2\x30\xca\xa5\xa9\x91\x77\x13\x28\x55\xa6\xc6\x8d\x22\x44\x22\x34\x2e\xff\xa8\x44\x40\x64\xb6\x40\x76\x17\x98\x40\x72\x0f\x98\x40\xf2\xef\x48\xeb\xd5\xaa\xc5\x80\x2a\xc2\xfe\x3e\xe0\xac\x59\x77\x1b\xdb\x43\x9c\x28\x06\x9c\x43\x90\x4e\x18\x71\xb0\x65\x24\xff\x5e\x48\x59\x1e\x00\xd5\xe4\x8a\x3f\xd8\x61\xc2\x78\x00\x6c\x87\xe4\xdf\x4f\xe2\xc0\x3d\x5e\xdf\x5f\xb5\x69\x89\x63\xc0\x12\x24\xb7\x71\xbb\x94\x34\xe3\xc8\x5c\x50\x55\x8d\xa9\x11\x2a\xe3\x48\x7e\x81\x49\x1d\x92\x30\x31\xd2\x11\x2e\xc3\x2c\x46\x9e\x57\xf6\x17\x8d\x5d\x6a\xcc\x48\xff\xfd\xeb\x0b\xd0\x51\x72\xfb\xe0\x17\xee\x82\x50\x6b\x21\xe1\xcf\xac\xda\x2d\x31\x81\x70\xb2\xdb\xcc\x50\x92\x68\x8e\xb8\xf9\xe0\x05\x34\x74\xca\xd4\x8c\x68\x16\xc7\x89\x7e\x81\xce\x46\x2f\x65\x3a\x60\xc3\xfb\x05\xca\x10\xa9\x80\x11\x09\xa7\x49\x89\x56\x35\xe2\x30\x6f\x75\x1b\x2e\xd3\x6c\xa0\xa7\x52\xd9\x86\xd4\x83\xc8\xeb\xa0\x54\x4e\xa7\x46\x9e\xb5\xb1\xb3\x24\x32\xfa\xaf\xd4\x8e\x1a\x79\xf8\xc6\xce\x91\x38\xb5\xca\xd8\x5e\x5d\xf4\xef\xaf\xfa\xc2\x2c\xca\xee\xaa\x34\x71\x8d\x50\x22\x75\x8a\xba\x46\x5e\x31\x65\xcf\x44\xe4\x15\xe2\xaf\x11\xb1\x12\x52\x84\x23\x0b\xc7\x29\xdf\xa0\xc6\x42\x8f\xa5\xb4\xf3\xc8\x92\x3e\xd5\xb3\x98\x8a\x67\xb4\x7b\x22\x16\xce\x4a\x3c\x3f\x42\x13\xb5\x85\x10\xcb\x9a\xa5\x50\xcd\xa2\x3e\xe2\x8d\xb1\xf0\xbc\xa5\xb7\x45\xc1\xb6\x30\x55\x33\xd3\x55\xa1\xf1\x1a\x0b\xa7\xa1\x21\x2a\x09\x48\x78\xe2\x71\x9f\x6a\xc4\xc2\xcd\x3a\x8c\x38\x5e\x4a\x5e\x8d\xa8\x0a\x41\x26\x5f\x40\xa4\x1b\xb4\x1a\xe8\x55\x1a\xd7\x43\xf2\xe4\xaa\x44\x61\x44\x3c\x3f\x18\xe8\xc6\x8d\x25\x3d\x27\x36\x46\x4e\x04\x43\xe3\x62\xfa\x03\x1a\x67\xdd\x1f\x30\xf8\xe7\xb5\xc0\xc5\xe8\x43\x9a\x54\xe4\xa1\x5f\x85\xeb\x6b\xc4\xc5\xe8\xa3\xb8\x8d\xcc\x51\xcf\x12\xe1\xfb\xea\x5d\x80\x88\xbc\x02\xe2\x35\xc2\xb1\x3a\xbc\xb3\x99\xcb\x6a\x00\x70\x49\xa8\x6b\x91\xd4\x88\xeb\xa8\x74\x17\x5c\x8d\xa8\xad\x6b\x6f\x43\x1c\xcc\x9e\x35\xda\xa6\xf6\x98\x2c\x93\x22\xb5\x47\x53\x17\x8b\xe6\x98\x14\xa8\x4d\x9a\x01\xb2\x4e\x6e\xf7\xfb\x28\x61\xe1\x5d\x3a\x68\x95\xd7\xf2\x23\x21\x04\x0f\xe9\xf0\x1a\x22\x11\xd6\x91\x99\x08\x07\xa9\x55\xfe\xc8\xa3\xc5\x32\x9f\xe3\x4e\xa9\xde\xfd\x00\x75\xfe\x4c\x88\x53\x09\x2c\x9b\x25\xcc\xc1\x3b\x5e\xf4\xfb\x41\xa1\x27\x85\x28\x1e\xcc\xed\x15\xbe\x58\xee\xd6\x44\xc2\xfa\x34\x2f\xde\x89\x73\xbd\xc3\x4b\x74\x30\xc0\xab\x29\xe1\x4a\xaa\x61\xa2\x42\x71\xbd\x61\x56\xba\xa2\xd6\x26\x53\xf8\x0e\x87\xdc\x16\x91\x2a\xa0\x97\x1c\x07\x81\x87\x57\x88\x2a\xa0\xcc\xfb\x48\x15\xb0\xb9\x3f\x48\x87\xe6\xfe\x40\xc4\xd2\x49\x23\x22\xd8\xe9\xd5\xff\xcd\x19\x6a\x06\xc8\x67\x1d\xde\x89\x4b\x27\xd4\x07\x70\x4d\x0e\x13\x39\x2f\x65\x30\xff\x41\x65\x5c\xdb\x17\xf1\x22\xc9\x09\xe0\xa5\x53\x7a\x55\x51\xbd\xa6\x5a\x51\x8a\xa8\xe7\x37\xcc\x4d\x70\xc0\x68\x98\xe8\x70\xbe\x48\x87\x17\x6a\xbc\xd6\x4e\xf6\x83\x03\xfb\xc8\x53\x20\x0e\x44\x06\x17\x70\x60\xd6\xc0\x2b\x18\x9a\xdb\x2c\xe5\xe6\xf6\xa2\x02\x41\x88\xe2\xb8\xd9\x9a\xcd\x8d\x4a\x15\x56\x2c\x70\x73\xe7\x78\x75\x08\x9c\x5a\xc0\xc2\x0f\x39\xfc\x3d\xe3\xe5\xd5\xba\x1d\xe2\xe5\xf6\x24\xc5\x87\xca\x99\x8c\xb2\x88\xe3\x41\xc3\x02\x97\xf1\x73\xe3\x0c\x85\x74\x37\x79\xe9\xe3\x8a\x8e\x7b\xdd\x57\x76\xab\x91\x82\x62\x33\xc9\xbc\x85\xea\xa6\x08\x35\x41\x83\xd4\x3d\xed\x35\x6d\xa4\xec\xa1\xf6\x62\xc0\x7e\x40\x49\x25\x71\x99\x36\x26\x47\xb8\x47\x90\xb2\xf4\xcb\xc4\x6a\x33\xd5\x6d\x46\xae\xab\x3b\xa0\xa6\x23\x95\x39\x51\x03\x15\x9a\xd2\x46\xeb\x5a\xbb\x23\x2d\x47\xa4\xb6\x43\x0a\x38\x4e\xa0\xfd\x9a\x18\x91\x57\x39\xa7\x9a\x96\x27\x52\x2c\x2f\xad\x13\x45\xd5\x6f\xc0\x0e\x6c\x1e\x03\x9e\xf3\xa0\xd5\x4f\x3c\x32\x24\xb5\x22\x45\x6e\x61\xb7\x3b\x3c\x95\xc2\x64\x1c\x84\x41\x43\x2e\xbf\xa1\x28\x3e\x41\xc5\xdb\x86\x5f\xa0\x24\x4a\x7e\xe1\x81\xbb\x4a\x98\x4a\x54\x23\xc4\x6a\x53\xe2\xae\xd3\x26\x4b\xcb\x4f\x28\x85\x2a\xf1\x56\x04\x7b\xa2\x13\xca\xb5\x6c\x4a\xb9\xae\x69\x2a\x71\xad\x79\x1e\xf0\x03\x9a\xd7\x25\x24\x68\x36\xb7\x97\x1f\xd0\x98\xca\x54\x03\xdc\x43\x5e\x40\x44\x3d\x18\x08\x7f\x6a\xc8\xcc\x9d\x67\x5c\x65\x3a\x75\xe4\xd8\x4a\x2c\xce\xfb\xb3\x64\x84\x04\x2f\x9f\x4e\x1c\xd4\x94\xe9\x12\x36\x11\x67\x6e\x54\x41\x8c\x92\x2d\xca\xc7\xa9\x89\x17\x27\xa8\x4e\x55\x4d\x85\x87\x1e\xe4\xe7\x4a\x4b\x3f\x4b\xfe\x04\x9e\xc2\x57\xbb\x4d\x2c\x66\xb7\x3b\x3f\x70\x0f\x94\xa9\xe2\x16\x89\x09\x9e\x0e\x17\x25\x28\x68\xca\x00\xad\xa9\xd2\x10\x6a\x7e\x40\x6e\x20\x0e\x97\x6a\x83\x20\xd4\x3c\x11\xc6\xd6\x75\x56\x35\xa1\xac\xe2\x30\x81\xc1\x1d\x38\x5e\xbf\x33\x39\xc0\x6b\x5b\x17\x05\x0a\x53\x28\xbc\xa8\x1a\x86\x35\x35\x1a\x15\xf2\x03\xa4\x86\xca\x31\xe2\x89\xa9\x51\x12\x9a\x44\x1b\xad\xfc\xe1\x37\x20\x0a\x4d\x1c\xad\x81\xad\xbb\xc7\x85\x39\x41\x89\x5b\xd8\xa3\x59\xd6\xd4\xe8\x92\xee\x47\xa9\x69\xdd\x20\x6a\x7e\xd1\xc8\x2f\xbc\x2b\x96\xc3\x4f\xca\x72\x42\x69\x46\xcb\x9e\xd4\xe9\xab\x30\x66\x3a\x43\x46\x1a\xa3\xaf\x69\x69\x0c\x5e\xe4\x6e\x0f\x7d\x62\xa5\xc5\xec\x2e\x89\x7b\x7f\xb0\x76\xbf\x16\x03\x17\x24\xd8\x83\x97\x3a\xf7\x9d\x7f\x07\xd1\x9a\x04\x07\x43\xb4\xde\x77\xac\xb0\xec\xb5\xe2\xa5\x5d\x96\xa0\x89\x27\xc0\x1d\xaf\x49\xd4\x03\x25\x6e\xd2\x60\x69\x24\xcd\x72\xe9\x7d\xde\x49\x83\x1b\xd5\xb3\x42\xb5\xc4\x6c\x4e\xcc\x8a\xcb\xf6\xf1\xa7\x41\xa8\x85\x16\x04\xbf\x87\x0c\x9d\xc4\x2b\x4b\x65\x2a\x25\x04\xc3\x87\x39\x01\x2e\x5c\x18\x66\x04\x3c\x24\xe5\xf0\x4e\x42\x2c\xbc\x7a\x0e\xbc\x09\xcc\xfe\x87\x84\x3c\x4b\x9b\x94\x09\x85\x6a\xec\x22\x49\xf0\x41\xc6\x57\x07\x73\x8e\x3a\x65\x53\x13\x5d\x90\xaf\xef\x41\x5e\x2f\x08\xb9\x47\xbc\xd5\xe9\x72\x94\x3d\x90\x98\x44\x69\x91\x8a\x48\xf8\x30\xf1\xa1\xf6\x73\x33\x92\x0f\xca\x6c\x43\x74\xdc\x53\xdf\x95\x02\x9d\xce\x0d\x6d\xcd\x80\xc5\x11\x1d\x89\x49\x67\x9a\x56\xb4\x89\x73\xaa\xa3\x65\xb3\xa8\x3a\x49\x08\xd9\x2f\x54\xbc\xa0\x29\x30\x87\xd2\x91\x89\x34\xf5\xcf\xa2\x03\xb8\x35\x2d\x7d\x52\x2a\x74\x9a\xfa\x64\xd2\x51\xa4\x9a\xa6\x3e\x99\x36\xd3\xde\x45\x13\xd8\x3c\x78\x2a\x94\x45\x87\x59\x6b\xba\x28\xa2\xa5\xe5\xa7\x0b\x09\x02\xd2\xc1\xd3\xd4\xff\x92\x63\x17\x89\xc5\x0d\xa5\x4c\xa5\x8b\xba\x8f\x15\x8d\x9b\x5a\x81\x57\x0e\x0a\x5f\x30\x23\xb9\x13\x40\x10\xda\x6e\x26\x78\x79\x0f\xdf\x9c\xb5\x3b\xc0\x9e\xcd\xdb\x4f\x4e\xa7\xd6\x84\x7c\xca\xf4\x62\x01\x37\x4f\x45\x6a\xfc\x87\xe2\xdb\x5b\xfa\x59\x38\x10\x92\x1e\x56\xe6\x74\x1b\xf1\x7f\x6f\xb7\x87\xeb\xe6\x76\x83\xaf\xcd\xcc\xf4\x21\xd2\x3e\x33\xc8\x1b\x3e\x08\x6e\x53\x1d\xe8\x7e\xc0\x1d\x2e\xf2\xcf\x38\xac\xed\x7c\x97\xbc\x3d\xe8\xe1\x33\x89\x1c\xc8\x86\x24\xa6\x32\xfc\x7b\xc3\xa6\x44\x0e\x40\x73\xf0\x0b\x79\x8a\x46\xa9\xd9\x39\x70\x12\x43\xed\x86\xf7\xab\xda\x9d\x1d\xfa\x01\xf4\xc1\xee\x36\xe5\xbb\x78\x6b\x46\xe9\x99\xa1\x0b\x0a\x6a\x5e\xc7\x79\xc4\xd9\x32\xd2\x11\x87\x6e\x28\xa8\x39\x52\x73\x12\xa3\xca\x91\x98\xf2\x17\x1d\x6d\x77\x49\xde\x38\xfc\x60\x11\x87\xe6\x81\xea\xd5\x2a\x67\x50\xf3\x54\xe7\x92\x2e\x0f\xa9\x99\x09\x88\x2a\x55\x52\x33\xcf\xef\x38\x7e\x92\x13\xf6\xad\x98\x63\xe6\x81\xef\xfc\x7a\x40\x20\x35\x04\x82\xbc\x4e\xad\xcb\x74\xc8\x65\xaf\x77\x5a\x15\x00\xd5\x66\x6e\x92\x17\x07\x0e\x37\x15\xe9\xa9\x99\x07\xb8\x1d\x60\xc9\x19\xcc\xc8\x43\x64\x7a\xd8\xe5\x1e\xc9\xa8\x77\x67\xe3\x3a\x33\x5f\x30\x1b\x93\x85\x54\xae\x70\x43\x2e\x14\xa6\xdd\x0f\x70\x97\xe8\xe6\x36\x63\xd7\x92\x95\xb9\x30\x8d\x45\x3c\x33\x2f\x67\x56\xf1\x83\x8b\x79\x03\x42\x55\x59\x33\x55\xa7\x95\x41\x78\x61\xbf\x92\x8b\x4a\xbb\xce\x75\xc1\xa9\x99\x54\x12\xa6\xa0\xa8\x70\x23\x44\x7f\x40\x3d\xc3\x84\xc9\x62\x35\x56\x55\x32\xdd\x57\xaa\x14\x53\x73\x23\x1d\x2a\x16\x94\x1b\x56\x34\xfa\x05\x9c\x96\x15\xaf\xcf\x6d\x85\xa7\x04\xd4\xd4\x86\x5a\x33\x76\xdb\x42\x8d\x5f\x58\x98\x50\x17\x38\x5b\xed\xb4\xbb\xdc\x29\x0d\x8a\x1f\x34\x7e\xa1\x3e\x3b\x68\x3f\xfa\x85\xb5\xe6\xc2\x04\x3d\x52\xd9\x7b\x76\x04\x76\xa1\x99\xb3\x8a\x5d\xf3\x17\x60\x0a\xe2\xde\x79\xea\x26\x65\x33\x53\x40\x59\xe6\xf4\xfa\x9e\x74\x28\xb3\x31\x0f\x64\x8d\x56\x77\xc8\x9a\xa3\x82\x99\x57\x37\x39\xbf\x37\x53\xd3\xb0\x77\x32\xef\x5c\x5f\x49\x98\x8c\x78\x66\xf0\x5a\xec\x84\x49\x93\x5a\xaa\x85\x3c\x0e\x79\xa7\x98\xf4\xfa\xee\x10\x18\xb2\x5c\x33\x3c\x57\x0e\xa1\x66\x9e\xd0\xc8\x26\x21\x1c\xb7\x56\x81\xdd\x9a\x77\xca\x55\xc1\x78\xa0\x50\xa3\xf1\x8a\xac\xbb\x66\x06\xc0\xd3\xd8\x39\xfe\x28\x4b\x2e\x1f\x2c\xf0\x23\xf0\xa6\xe6\x51\x36\xd9\x24\xf9\x80\x63\x4d\x16\x6a\xe6\xcd\xeb\xba\x1f\xab\x66\xdc\x38\x6a\xf1\x92\x4f\x08\x71\x19\x20\x79\x5d\x2a\x21\xf5\x2f\x9f\x40\x61\xf2\x07\xd8\x42\x32\x93\xf2\x49\xa3\xb8\xba\x87\x9d\x42\x53\x18\x40\xa1\xe5\xe6\x3d\x75\x22\x1f\x4d\xa6\x7e\x5e\x35\xef\x4c\x59\xd7\x5a\x67\xcd\x92\x9a\x86\x14\xb6\x4c\x57\x95\x87\xa4\xab\xca\x96\x7c\xbe\x16\xfd\xbb\x4b\xd0\xbf\x2c\xb3\x3c\x55\x91\xb2\xc9\x2e\xcf\x77\x04\xcb\xd3\xfb\x54\x2c\x2c\x33\x59\xa7\xa6\x99\x0d\xdf\x34\xe5\x86\x7b\x20\x69\x09\x4f\x37\xf1\x24\x90\xe0\x8a\xb2\xdd\x95\x6f\x32\x76\xf3\x89\x1b\x62\x59\x2a\x60\x7e\xb8\x23\xfd\xc5\x13\xd0\xa3\xb0\xf2\x00\x2b\xe6\x02\x0f\x64\x8d\x69\xe3\x21\x57\x30\xa2\xa9\x6b\x48\x25\xcc\x0f\x2d\x1e\xeb\x16\x0f\xb0\x62\x2c\x3c\xe4\x44\xa6\x96\xe7\x9a\x2f\x58\xbc\xc1\x17\xe5\x3c\xd7\xfc\x70\xcb\x4a\x18\x95\x0d\x8a\xae\x74\x91\xb2\xc2\x9b\xf2\xb3\x16\xde\xea\xa4\x7a\x23\xb5\x6c\xa0\x37\x89\x96\xb2\xad\x2e\xf5\x60\x79\x82\xa4\x1b\x97\xb0\xd6\xc6\x0f\x18\x59\x19\xfe\x04\xab\x2f\x09\x58\x78\x15\x86\x63\xdf\x85\x57\x61\xe8\x2e\x94\x5a\x02\xf6\x51\x71\x1b\x13\x7f\x0d\x71\x73\xcc\xa6\x07\x14\x4e\x62\x7f\x65\x2a\x2c\xcd\x27\x03\x4a\x04\x45\x49\x36\x95\x88\xd5\x92\xb8\x2b\x2c\x27\x6c\xbb\xbb\x44\xca\x09\x69\xc3\x25\x62\x75\x0c\x63\xc4\xde\x97\x70\x2b\x91\x4e\x75\xf7\x78\x13\x24\x3f\xc0\xa1\x6f\x4f\x22\xad\xc5\x50\x0f\xf4\x46\xa9\xf8\x51\x2d\xd4\x4e\xc4\xcc\x4a\x02\x51\x8b\x85\x97\x04\xc4\x8a\xe8\x0b\x7d\x53\xd2\xf3\x0a\x6f\x5a\xb7\x23\xa9\xe0\x74\xb1\x5d\x05\x05\xa5\x82\xeb\xab\xc3\x07\xa1\x67\xcd\x91\x57\x74\xda\xc7\x52\xf2\x5a\xec\xa1\x07\xd0\xa8\xb4\x4b\x4a\x5e\x44\x2d\x18\x32\x61\xd4\xc2\xf0\xc0\x85\x53\xaa\x4a\xc6\xda\x8a\xdb\x94\x4c\xfe\xe4\x21\x61\x18\x79\x65\x57\x70\x50\xfa\x72\x41\x70\xd0\x5a\x46\x59\xce\x27\xe9\xaa\xa5\x10\x68\x45\x27\x4a\x01\x91\x8b\x81\x95\x42\x3c\x6b\x65\x70\x6d\xa7\xca\x8d\xd5\x52\x38\x07\xb7\xa1\xba\x8a\xbd\x95\x82\x29\x34\xf7\x0f\x15\xaf\xfa\x77\x8a\x7b\xe9\x67\xa5\x2e\xe6\x22\x98\x71\x94\xb8\xc4\xfa\x13\x29\x54\xa8\x57\x99\x32\x71\x88\x58\xd7\x93\xd4\x52\xd7\x1a\xb8\xf7\x83\x08\x10\x4e\xe1\xa7\xf2\xb9\x9a\x82\x53\xc0\xd5\x84\xd7\xc0\xdb\xbc\x06\x53\xcb\x8a\xb6\x8f\x4b\x43\x3c\xcc\x84\xd6\x50\x5f\x40\xbc\xb1\x34\x20\x4c\x8e\xb6\xc2\x1b\xb3\x9a\xc9\x64\xc5\x08\xa5\x7f\x96\x4e\xf3\x56\xba\x7c\xe9\x6b\xd1\x04\x63\x5f\x2c\x5f\x58\x45\x09\x1b\x73\xc7\xd2\x79\x89\x82\xd0\x82\xd3\x13\x96\x8c\xa5\x2f\x20\x34\x8b\xce\xc3\xd2\x1e\x12\xba\x83\x3b\x98\x4a\x59\x52\x4d\x83\x5a\x10\x25\xb4\xaa\x59\x06\x15\x73\xa9\x75\x65\xd0\xbc\x88\xfe\x02\x35\x6f\xbc\x9f\x78\x38\x42\x45\x40\x6b\xc1\x7d\x9a\x8e\x70\x94\x01\xa6\x62\x2e\x84\x2c\x33\x5d\x55\x5f\xcb\x3a\x2c\xe1\x0d\x39\x20\xb6\xdc\xc1\xbe\x76\x87\x1f\x30\x00\xac\x1e\x97\xd2\x26\x23\xba\xec\xbc\xb0\x59\x43\xd0\x1f\x24\x2b\xab\x2c\xa5\x4d\x16\x4d\x61\xd1\x9c\xf8\x7a\x40\xa0\xdd\x23\x6c\x09\x2f\x0c\x1c\x3c\x8e\x62\x97\xa5\xa3\x0d\x0f\x49\xce\x28\x98\x0f\x5e\xb9\xe7\x36\x19\xa3\x59\xe9\x0a\x50\x4a\x74\x96\x83\x66\x80\x34\x8a\xc2\x4a\xc5\xb6\x2d\xca\x01\xde\x29\x2d\xa7\x20\x6f\xad\x35\x6f\x41\xc4\x34\xad\xdd\x16\x86\x2c\x37\x8f\xc9\xf3\x7e\x9a\xe5\x41\xfe\x6e\x11\xc3\x1b\xc4\x9a\xc9\xe1\x84\xc6\x60\x46\xc5\xbc\xb6\xea\xd5\x3c\x21\x94\xbc\x91\xe9\x66\x32\xe3\xc2\x51\x5d\x07\x25\x0b\xbd\x4c\x5e\xfc\x93\x86\x7d\xf2\x08\x83\x20\xf8\x0b\xb8\xc6\xcc\xae\x4f\x08\x29\x33\xa2\x73\x4d\xc2\x43\xe2\x60\x95\x34\xda\x72\x91\x53\xbd\x1e\x80\x35\x78\xe3\x5e\xdc\xa7\xc6\x3c\xef\x8e\xaf\x5e\x7e\x68\x83\x56\xd5\xca\xc5\x4d\x60\x9d\xe3\x82\xd2\x6f\x92\xbd\x40\x4f\xde\x24\xbc\xd5\x53\xe7\xdb\x6b\x41\x26\x9c\x15\xa7\x32\xd5\xc5\x90\x6c\x15\x96\x1b\x97\x95\x78\x9a\xd0\x0e\x9d\x72\x55\x50\xc6\xd0\xaa\x59\xc1\x09\x89\x68\x34\x21\x0d\xae\x19\x22\x1c\xf5\x7d\x09\x56\x68\x8f\xc1\x7b\x06\xca\xa2\xaf\xff\xaa\x85\xca\xa2\xe7\xfc\xac\xa5\x17\x04\x0f\x57\xca\x20\xa1\xee\x4e\xb2\x9e\xf5\x00\x09\x56\xa2\x10\x99\x6c\x2a\x9b\x56\xeb\x06\xf3\x5b\x3c\xb6\xa2\x30\x8e\x1d\xbd\x75\x03\x71\xbd\xda\x6b\xa1\xb2\x1e\xa0\xb6\xa3\x14\xb9\xba\x31\x6e\xf0\x23\x19\x54\x59\x33\x47\x55\xd8\x6a\xdd\x06\xc0\x71\xef\x50\x97\x86\xc1\xa3\x77\xbe\xa9\x4d\x09\x20\x76\x5e\x71\xe7\x85\xea\x30\xd4\x8a\x1a\x39\x9b\x3b\x44\x0d\x1c\x1b\xc0\x35\x40\x26\xbd\x7e\x87\x6b\x4f\x7c\xab\xe2\x86\x0b\x17\xda\xae\x95\x4a\xa5\x07\xe4\x45\xf1\xb6\xd2\xeb\xff\xc7\xd8\x95\x9c\x4d\x8c\xea\xc0\x54\x26\x84\x36\x9b\xe0\x32\xb9\x78\xcd\x3f\x84\xf7\xb9\x4a\x53\xe5\x77\xfb\x8f\xee\xb6\x41\x80\x10\x85\x56\x94\x02\xfd\xf9\xce\x3c\x36\xc2\x21\x8d\xb1\xb0\x5a\x9a\xc6\x50\x78\x49\xd7\xf5\x6d\xa4\x1f\x9b\x76\xf0\x60\x8a\x66\x5f\xe3\x47\x41\x06\x99\x70\x13\x1d\xa9\xb3\x45\x54\x49\xaa\xdd\x67\x20\x45\x9f\x46\x91\xb5\x43\xdd\xe5\xe2\x07\xfe\x81\xc7\x5c\x75\x17\x8c\xa6\x98\xa6\xe1\x24\x33\x9a\xca\x0b\x6b\xa3\xa9\x2f\x84\x60\xa6\x01\xf3\xe0\xb5\xae\xbc\x32\x4e\xff\xb0\xfd\xfb\xcf\x74\x00\xc7\xa8\x4c\xf6\x33\xfd\x03\x24\x9b\x4e\xf7\x51\x83\x54\xfb\x87\x1c\x86\xa8\xae\x74\xbf\x92\xf4\x1c\x2f\x76\x0d\xa5\x3d\x1f\x03\x05\x4e\xd7\x87\x86\xf7\x24\xdc\x24\xfa\x06\x83\x89\x8d\xd2\x46\x7b\xf7\xe4\xe6\x51\x43\x53\x57\x74\x2d\x19\xf0\x8c\xb3\x7d\x68\xbc\x58\xb7\x6f\xda\xd3\xa3\xf1\x48\x11\x2c\x1c\x8d\x6b\x25\x65\xc2\x68\x0c\x32\x97\xdc\x18\x2f\xd8\xed\x9b\x59\x90\x76\x5a\xdf\x63\x07\xb4\x83\x76\x5a\x1c\x2d\x97\xc6\x44\xf0\xa6\xd3\xdc\x07\x86\xa9\x33\x64\xf4\xe4\x41\x0d\x93\xf0\xd7\xfb\xa0\x23\xb0\xc5\xfb\x86\x86\x54\x5f\x12\x47\xc7\xce\xf5\xc4\x76\x6a\x10\xcc\xa3\x80\xb7\x9b\x59\x12\xf0\xd6\xda\xc5\xd1\x49\x92\x7a\x60\xe2\x1c\xab\xd4\x06\x03\x8e\xed\x7a\x39\x5e\xb8\xdb\x6d\xb4\x1a\x2c\x8f\x61\xcb\xc2\x18\x9c\x7b\xf1\xcf\xe0\xe6\xf6\xff\x03\x59\x2f\xdc\x00\xbc\xd6\x2c\x1c\x99\x16\x3b\xbc\x75\x07\xed\x6c\x66\x38\x7a\xce\x79\xda\xe0\x39\xe7\x88\xe4\xf1\x42\xe2\xbe\x79\xa5\x02\x5e\xb6\x66\xc7\x84\xc4\xa2\x30\x3a\x07\xed\x06\x90\xc6\x4f\x87\xf7\x08\x72\xf8\xe6\x2f\x50\x18\x5f\x97\xaf\x41\xc7\x3a\x25\xb4\x1b\x23\x4e\x7e\xa1\x69\x8b\x3c\xad\xdd\xc4\xc3\x37\x34\x4c\xb8\xd2\x7d\x34\x29\x83\x35\xf2\x84\x72\xc6\xac\x18\x96\x86\x31\x31\xd1\x26\x0a\xaa\x4b\x65\x40\x19\x03\x9a\xcb\xcd\x4b\x39\xc1\xd1\x9f\x0e\x09\x48\x75\x16\x8f\x09\xe6\xf0\x34\x2c\x52\xe4\xa5\x42\xcc\xb1\x15\x2f\x63\x11\xdc\x75\xff\x80\xc3\xfa\x6f\x71\xab\x03\x9e\x77\xd6\xf7\x8d\x45\x7a\x35\xde\x45\xe6\x16\xfd\x0b\xbc\x2c\x14\x37\x98\x63\xdb\x57\xa3\xb1\xe3\x58\xb5\xb0\xdc\xe9\xef\xee\x67\x68\x4c\xec\x9b\x3a\x50\x6f\xce\x8a\xd8\xc1\xac\x32\x3e\x77\x19\x61\xa1\x24\x81\x63\x20\x89\x8c\x2f\xd9\x83\x91\xc1\xca\x2a\x38\xc6\x81\x70\x4b\x4b\xb6\xd4\x51\x9a\x57\x61\x10\x35\xfa\x1d\x07\x79\x4f\xd7\xab\x71\x60\x16\x4c\xd3\x81\x55\xd3\xcd\x66\x1c\x3c\x12\x7c\x3a\x43\x71\xa9\xe4\x9c\x63\xc0\x62\xba\x7d\x1a\x7c\x40\x92\xd8\xe4\x24\x2c\xb4\x58\x02\xd6\xdd\x84\xa0\x06\xa0\xec\xe6\xed\x84\x94\x93\xd5\x1e\x03\x83\xc1\xbe\x1e\x34\xb0\xac\x8b\x70\x8e\x71\x92\x66\x3f\x73\x37\x78\x50\x34\xa1\x1a\xe2\x8f\x33\x6b\x62\xeb\x93\xab\xf1\x0d\x75\xfa\x62\xd3\xbe\xf9\x0b\xb8\xc8\x59\xc7\x37\xa0\x97\xdc\x3e\xef\xe7\x3c\x69\x5e\x2e\xe4\x6d\xfd\x3c\x43\xfd\x6c\x10\x72\x25\x3b\x89\xbf\x6e\x88\x91\xcf\x33\x28\x10\x5a\x1e\x4c\xa0\xed\x00\xb0\x01\x93\xa9\xbd\x9e\x06\x33\x46\x1a\xd2\x0f\x3a\xd5\xd9\xed\x78\xb0\xde\x87\x11\xf8\x78\xd0\xa7\x21\x03\xcd\xa4\x9f\xff\x2b\x60\x8c\x68\xa2\xd7\x9c\xd4\x71\xe3\xe9\xf8\x5e\x83\x7c\x02\xcf\x22\x11\x05\xda\xac\xbc\x18\x0f\xd1\xb2\xdb\x43\x9a\x02\x9f\x82\x2f\x94\x9d\x0e\xba\x1b\x88\xe8\xa8\x9f\xf6\xa1\xa1\xf6\x41\x0c\xb5\xe6\x47\x20\xa0\x9e\x9b\x1d\xb1\x83\xb5\xeb\x75\x90\xc7\x2f\x37\xd0\xd2\x0f\xf5\xdf\x7f\x9a\x63\xd7\xe3\xd7\x39\x65\xfe\x82\xf0\xa3\xfa\x0d\x04\xa1\x48\x16\x07\x63\x7b\x87\x3f\x38\x70\x39\x34\x09\x17\x52\x4b\x4d\x3d\x03\x31\x4d\x3f\xe3\x48\x14\x62\x8a\x8d\x42\xce\x1d\x6c\x2c\xb5\x23\xb9\x12\x5b\x56\x7a\xd0\x33\x5c\x6e\x3f\x2d\x90\x71\x86\x9e\x03\x69\x2e\x45\x21\x03\x7f\xc3\x24\x6e\x20\x79\xf9\x99\xfb\xa7\xfa\x07\x64\xaa\xdd\xdc\x03\xf6\x7c\x35\x05\x88\xfb\x75\x03\x8c\xe2\xf0\x0d\x24\x4a\x22\x0d\x8d\xa1\x50\xff\xd1\xfc\x09\x8c\x6f\x1e\xe4\x8b\x4d\xeb\x67\x16\x5e\x68\x5a\x7d\xe2\x45\x61\x72\x6b\x7f\x9f\xee\x53\x7a\x06\x89\xda\xe0\x91\xf9\x19\x45\x72\xcd\x59\xd5\x98\x5e\xdc\x59\x8d\xb7\x22\x0d\xc0\x12\xbe\x01\x15\xeb\xf6\x79\x06\xaf\xb7\x3f\x5d\x82\x02\xfa\x57\x1b\x83\x03\x98\xd5\xf1\x7d\xc1\x5c\x8d\xda\x68\x51\x73\xa7\xfa\x03\xb0\x89\xe7\x8b\x10\x55\x7a\xb6\x68\xbc\xd8\x6a\x2b\x04\x43\x80\x7d\xe3\x88\x46\xfa\x35\x03\x99\xf1\x46\x9b\x39\x5a\xca\x55\x7f\x01\xb5\x98\x44\x7d\x24\xe4\xdc\xdc\x04\x0f\xac\xe1\x26\x10\xee\xe9\x59\x6f\x08\x63\xf7\xff\xd4\xc8\x4a\xc6\x05\x32\xde\x4c\x8f\xa2\x57\x14\x43\xf3\xfb\xbc\x89\xea\xba\x10\x3d\x57\xc5\x5f\x0c\xaa\x98\x34\x31\x1d\x52\x51\x20\x22\x3a\xb2\x53\x7c\x3e\x48\x9a\x35\x08\x62\x54\x73\x56\x67\xc2\x18\xfd\x3f\x20\x23\x85\x93\x02\xc6\x6b\x07\xb9\x07\x22\x89\x9d\x2f\x26\x58\x9f\xed\xf3\x3f\x7c\xee\x75\xc1\x8f\x81\x93\xa3\xfb\xfd\xdc\x6d\xfe\x01\x06\x27\xe9\xc5\x63\x20\xb2\xc7\xaa\xf5\x40\xbd\x36\xd5\x25\x18\x41\x00\xaa\x03\x32\x62\x83\xf7\x83\x9f\xa1\x88\x11\x08\x88\xe0\x7d\x5f\xb3\x1c\x9c\x65\x4b\x41\x38\x0e\xda\xf1\x2b\x58\xa1\xd9\x5a\xdf\x80\x16\x57\xf5\x11\x47\xd0\x12\xae\xd2\xbd\x23\x02\x28\x41\x46\x94\x40\xd2\x1c\x9b\x12\xe3\x85\xa3\xd5\x46\xec\x98\x89\x12\xd4\x62\x56\x86\xf1\x2c\x4c\x9e\xd0\x02\xfe\x31\x71\xf6\x58\x8a\x31\x4f\xb9\xbb\x20\xfe\xb4\xd8\x9b\x07\x9e\x45\xe2\x24\x89\x6e\x2f\xb7\x9c\x5f\x48\x90\x20\x12\x90\x3c\xd1\xf6\xac\x58\x4c\x44\xe8\x2d\x95\x00\x55\x37\xaa\xc8\x0a\xcc\xcb\x6f\x30\x8d\xbe\xfa\x60\x3e\x45\x5f\xda\x02\x7a\x60\x9f\xb0\xb1\xf2\xd4\x17\x99\x8b\x97\x03\x2f\x0e\xcc\xf7\x1f\x59\xbb\x12\x89\xb8\x0f\xa8\x27\xbd\x16\x48\xb8\x58\x04\xf1\x02\xf9\x15\xad\x94\x8d\x1d\xa2\x45\x40\x39\xe0\x27\xf8\x59\xdb\x9d\x1a\x54\xef\x98\x1d\x92\xc5\xb2\x7a\xe7\xcc\x6b\x0c\xc8\x7d\xe8\x38\xcd\x60\xc6\x1b\xeb\xdf\xe3\xc8\x89\x54\x17\x07\x95\x60\x82\x74\x71\xe0\x32\xe2\x4d\x7b\x00\x34\x5a\xb0\x1c\x94\x0b\xde\xf6\x59\x48\xd9\x1f\x40\x5a\xfb\x7c\x20\xee\x1d\xee\x11\x34\x7b\x6d\x5f\xdc\x3b\x9b\xf7\x4c\xea\x70\x2d\x5f\x59\x36\x59\xf8\x2e\xe0\x19\xe8\x14\x35\xc1\x24\x37\x61\xc1\x73\xd2\x21\x45\x97\xe5\x38\x81\xcd\x7f\x6e\x91\x12\xdb\x7b\x00\x4a\xdc\xed\xf3\x01\x35\x69\x5e\xa9\x33\x79\xe1\x6f\x67\xd0\x89\x8c\xb0\x61\x0a\x21\xf8\x3e\xcf\x10\x2b\x96\xb5\xf0\x2b\xb4\xf2\x35\xe0\x57\xd8\x2d\x18\xaf\xe4\x76\xcd\x21\xfc\x0a\x7d\xc5\x0c\x80\x6a\x87\x0c\x07\xd4\xbb\xed\x73\xa0\x5c\x13\xee\x9a\xfe\x60\xf1\x05\xcd\x19\x1d\x11\x87\x9f\x79\xf1\x95\x06\x22\x98\xb8\xdd\x2e\x50\x71\xe1\xd6\x66\x04\x78\x71\x90\x9a\x64\xc6\x4a\x7f\x80\xc4\x0d\x05\x83\xb7\xec\x0d\xce\xb2\x18\xb9\x73\x87\x6a\x94\xf0\x17\x70\x5e\x86\x20\x0c\x37\xc0\xbb\x21\x57\x3c\x8d\x37\x29\xd0\x18\xe0\x3e\xb0\x79\x4c\xa9\x11\xb6\x30\x7d\x36\xa8\xab\xd4\x00\x63\x59\x7c\x2f\x0e\x54\xba\xf9\x9c\x9a\x0f\x8b\x10\xfb\xff\x2c\x3f\xa5\x67\x0e\xc1\xbc\xfb\xd0\xeb\xc2\x27\xca\x93\x13\xaf\x69\x7b\x81\x79\x58\xb9\x1f\x0f\xe3\x25\xdc\x05\x9c\x24\x9c\x25\x21\x1e\xe8\x64\x2d\x95\xe0\x60\xe0\x8b\xe8\x04\xf2\x6e\xb6\xa4\xce\x1f\x6e\xcb\x1a\xd4\x44\xe9\x9b\xa2\x1e\x27\x94\xd0\xa5\xbb\x81\x0e\xa5\xde\x7f\x0b\x3d\x19\x88\xa2\xcc\xd1\x63\x6e\xe4\x3e\x35\x48\x98\xec\xcb\xc2\x84\x9a\xd7\x5e\xaf\x13\x99\x1f\x95\xfb\x76\xcc\x8d\xdb\x4b\xb7\xe9\xc9\x5c\xe7\xbe\x8f\x4f\x14\xe2\x1b\xce\x4e\x31\x09\x84\xa7\xfb\xa4\x61\x47\x6b\x37\xa1\xf7\xb5\x03\xf2\xa4\x77\xa4\xa4\xf9\x64\x70\xb2\x6f\xf4\x93\xb5\x6e\x9a\xa9\x2e\x60\xaf\xe9\x67\xc4\xf0\x68\x25\x26\x9c\x0b\xb6\xe9\x16\x09\xd2\x8a\x49\x20\xe0\xf1\xcc\x15\xde\x3c\xb5\xed\x66\xc5\x16\xf0\xb8\x2b\x25\x95\xd0\xe9\x44\xf8\xb2\xb1\xf1\xac\x59\x2a\x49\xcf\x0b\x0a\x78\x75\x59\xb9\x4d\x4d\x64\xcd\x72\xaf\x7a\x06\x5a\xff\x34\x48\xdd\xe5\xf2\x0f\x49\xa3\x9a\x6c\xc0\x38\xd2\xce\x4c\x84\xc2\x38\x17\xd6\x6c\xf4\x04\xd7\x18\x1a\xb2\x80\x87\x9f\xa1\x4d\x5f\x7e\xa6\x8a\xd6\xab\x4f\x78\x3c\xdd\x20\x62\x8a\x86\xff\xe7\xad\x69\x99\x02\x6a\x68\x75\xc4\x4c\xe6\x7b\x54\xe2\xe2\x31\xe1\xaf\xa0\x4c\xe4\x63\x36\x72\x8b\xc6\xc4\xfc\x8f\x3a\xb9\x27\x15\xb4\xfe\xbe\x43\xbb\x63\x12\x3b\x73\xd4\x68\x16\x99\xd9\x5c\xc0\x71\xf6\x1c\x93\x06\xd9\xb9\xcf\x97\x7b\xa4\x46\xb7\xbb\x09\x72\x97\x56\x92\xde\x9e\x8e\x9c\x9a\x3d\x53\xd7\xea\xf9\xc2\x3e\xf7\x33\x16\x6a\xfe\x29\x6d\xcf\x1c\x38\xc5\xcd\x16\x08\xa2\xf9\xf0\x72\x7a\x1f\x78\x7b\x8c\xe4\x0b\x91\x13\x04\x06\xd2\x50\xcc\x17\xbb\xf6\x22\xbd\xf9\x0c\x5e\xe0\x75\x5f\x9f\x41\x75\x92\x9f\x21\xbe\xcd\x69\xa9\x6c\xf5\x42\xc3\x03\xc1\x95\xf3\xc7\x64\xf1\xe2\x10\x76\x98\x88\x7a\x09\x65\x56\x1e\xf3\x45\xb7\xbd\x48\x63\x3c\x03\x22\xde\x0b\x87\x92\x3b\x8e\x57\x9b\x88\x79\x89\x69\x39\x42\x5d\xab\x87\xc9\x98\x17\xc7\x38\xcd\x89\xec\xbe\xde\x71\x73\x50\x4c\xf8\x05\xae\xac\x8e\x95\x39\x2f\xd0\x24\xe6\x78\xe1\x6d\x38\x35\xe8\x9c\xa4\x51\xef\x53\xfb\x6a\xf7\xd7\x09\xec\xea\x8b\xd3\x5c\x38\x18\xcd\x4b\x6b\xf0\x03\x91\xb0\x68\xed\x17\x1e\x98\x70\x51\xd8\xbc\x9a\x2b\xe7\xcd\x3f\x60\x83\x58\x3a\x2e\xd2\xa4\x16\x5f\x64\xda\x8b\xcc\x07\x93\x7e\xa5\xbe\x6f\x4e\x40\x53\x7b\x00\x4d\xd6\x52\x76\xd2\x9a\xb9\x27\x3b\xb8\x89\xf1\xef\x3f\x9f\xfc\x8e\x93\x21\x2b\x96\x4c\xfb\xc4\x0d\xd6\xff\x27\x7b\x68\xd8\x3b\x69\x36\x09\xbc\x36\x08\x9a\xce\x9d\xf5\x2e\xd4\x22\xd1\xae\x6c\x1e\x13\x65\x7e\xec\x87\x31\x13\xeb\xea\xaa\x3f\x89\x75\x2d\xaf\x59\x35\xd1\x09\x88\xe7\x0b\x76\x7b\xf1\xc4\x03\xeb\x7e\x66\x01\x58\xb6\x98\xbb\x8e\x1d\xcf\xee\xe0\x60\x83\x1a\x64\x66\x70\xd4\x18\x09\x55\x9d\x43\x69\xc2\xd9\xd4\x7e\x7a\xf3\xec\x7c\x41\x34\x02\xaa\x16\x8f\xe1\x85\xaa\xd3\x39\xd3\xe6\x09\xff\x6d\xaf\xf4\x09\x92\x7c\x58\xb3\x4c\x90\x57\xfe\x24\xab\xe8\xc6\x39\x4f\xb0\xf3\xa7\x43\xa8\x99\xcd\x8d\x0c\xaa\x76\x80\xde\xbc\x92\x57\xd4\xc2\x0b\x57\xab\x23\x40\x26\xa3\x60\x54\x3a\x65\xcc\x0b\xa2\xc4\x5d\x5e\x98\x66\xdd\x52\xe6\xc5\x5b\xb0\xe5\xed\x8b\x67\xbb\x72\xdf\x8f\x09\xdf\x55\xe7\x60\x9a\x4c\x11\xe9\x1c\x61\x13\x29\x22\xd7\xa7\xc5\x07\xf3\xae\x06\xa1\x02\x2e\x16\xf0\x2f\x58\xed\xf6\x03\x9c\x70\x76\x2d\x3e\xe4\x00\x45\xed\x8c\x30\x6f\x6a\x70\xaa\x1b\xe0\x19\x25\x38\x3c\x6f\xfa\x4f\x1a\x6f\xdc\x9c\xe8\xe2\x37\x2e\xb6\xe1\x46\x99\xb8\xcd\xcf\x0f\x88\xd0\x33\xe0\xa9\xc3\x93\xe6\x93\x57\x31\x51\x99\xf0\x53\x10\x7b\x12\x7e\xda\xa9\x6c\x3e\x60\xd8\xe2\x26\xa0\x1d\xfb\x74\x91\x0c\xeb\x0f\x08\x72\xbc\x4d\x1f\x5a\xe8\xa3\xfd\xe5\x1c\x5a\x48\xf4\x63\xb7\x91\xf5\xc3\x3c\x6b\x8b\x2e\x46\x5e\xdb\xc4\xb7\x7e\x60\x0d\x11\xbc\xa0\x26\x36\xee\x5b\xbf\x1c\x62\xd7\x0f\x39\x44\xff\x40\xde\xd8\xf4\x4c\xb9\x12\xa6\x61\xa7\xe8\x72\x1f\xd0\x78\x0a\xf8\xad\xdf\x89\x16\xfc\x01\x43\xe4\xfd\xfc\x22\x70\x7b\x42\x2f\x28\x96\x8b\x0c\xa3\x6b\xa3\x52\x56\xdc\xb6\x36\xda\x5a\xfd\xc5\x56\x30\x4a\xf5\x98\x9a\x67\x1d\x01\x2b\x1d\x25\x74\x90\xad\x8d\xd2\xb3\xbb\x13\xaa\x0c\xfd\x05\xf6\x79\x75\x93\xc0\x17\xd3\x34\xc0\xbd\xd0\x34\x15\xac\x84\xc4\xf5\x2a\x20\x49\x0b\xbf\xe0\x9c\x5b\xaa\x9f\xb9\x47\xd5\x3f\x42\x89\x1c\x11\xbf\x10\x4a\x54\x04\x17\x56\x21\x3d\x5a\x86\x8a\x1d\x27\xf1\xbf\xe8\x69\xeb\x3b\xed\xaa\xb4\xa8\x09\xe5\x2d\xe8\x89\x4b\xf5\x17\x3c\x61\x74\x6b\x5f\xd0\x13\xab\x8a\xfb\x58\x35\x11\xbd\xbf\x00\xb7\x7b\x56\x59\xc8\xc7\x06\xe2\x55\x21\xeb\x3e\xcf\x38\x51\xa4\x5f\x59\xc0\xba\xc3\x29\xec\x56\xea\x7a\xcd\x8f\x4c\xf7\xe8\x54\xe3\x0b\xe8\x75\x38\x29\xdd\x6a\x8c\x56\xf3\x33\x8f\x31\xe1\xdf\x85\x32\x3a\x4e\xed\xb3\x3a\xb6\x40\xf3\xff\x28\x6e\xe2\x51\x75\x5e\xee\x25\x07\x56\xe7\x30\xfd\xcc\x60\x4f\x2d\x5d\x4f\x51\x24\x1a\x3b\x18\xdc\x33\x0b\x67\x02\xe7\x47\x58\x50\xd4\x3a\x45\xe5\x1a\x2c\x85\xa5\xff\x07\x78\x47\x18\x69\x0d\x84\x0a\xe8\x00\x58\x23\xd9\xd9\x3f\x34\x4e\x8a\x48\x1c\x14\x5d\x1e\x34\xc3\xbe\x3f\x9b\x70\x20\xf7\xdf\x72\x13\x14\xf1\x66\x30\x68\x77\x8b\x47\xf9\x42\xda\x5e\x9a\xff\xa7\xbc\x35\x07\x32\x51\x4f\x71\x8b\x18\xa5\x37\x25\xbc\x0d\xea\x87\xa6\x84\xc0\x1e\x27\x4a\x52\x56\xcf\x0b\x21\xb1\x19\x12\x90\xd8\x16\xac\x05\x04\x5c\x74\x8c\xad\xe0\x1e\x71\x7b\x58\x38\x0b\x16\xba\xe4\x3a\xa7\xfb\x4a\x40\x3c\xdd\x03\x0a\x1e\xe8\x50\x59\x8c\x02\x1f\x7e\xe6\x98\xd4\xc0\xc4\x4a\x75\x3f\x63\x48\x92\xff\x0b\xe8\xb6\x19\x7b\xae\xb9\xe3\xf2\x2f\x92\x58\xe8\x26\x3e\x3f\xdc\xc8\xca\xad\x31\x2c\xf4\x30\xfc\x4c\xc4\x6d\xc1\xf1\xa2\xd9\x0f\x04\x5a\x08\x8a\x2a\xe1\x67\xee\x20\x21\x9a\x85\xac\x8f\x2a\x6a\x39\x16\xa2\xa4\x3e\xfb\x63\x81\x7b\xe3\x4f\x17\xa1\x45\x60\x2b\x25\xd3\x4a\x60\x6b\xb9\x08\xdc\x3a\x9c\x5c\x71\xed\x04\x1f\x9e\xb3\x1d\xab\x38\xfc\x05\xc5\x8c\xd4\xb6\x8b\xf5\x27\x9d\xfc\x68\xed\x5c\x15\xf3\xe6\xce\x0d\xa5\x21\x52\x4f\xeb\x34\x2f\x8b\x15\xbd\x7d\x69\x58\x07\xa6\x55\x37\xda\x75\x40\x3c\x7b\xe1\xa1\x96\x2d\xe1\x06\x28\x14\x3e\x2f\x64\x82\x69\x8d\xeb\x48\xe6\xd2\x38\x10\x28\x55\x04\xf1\xd7\x91\x1b\xc6\x5f\x80\x6a\x4f\xfc\x81\x73\xce\x02\xfa\x4c\xa2\xb5\xf6\x27\xb9\x4d\x0d\xc0\x97\xb6\x08\xd1\xaf\xd4\xbb\x4e\x7f\x10\xff\xfe\x13\x76\x6a\x5b\x0c\xd1\xb6\x3a\x63\x11\xbd\x7a\x9e\x4e\x06\x4b\xb8\x81\x13\x41\x4a\x1a\x35\x03\xab\x3e\xdf\x73\x08\x5a\x2a\xb8\x23\x0c\xa7\x91\x5c\x17\xf8\xc3\xc7\x2a\x6b\x8c\xbb\x62\xc0\xba\x30\x06\xcb\x4e\x68\x52\x6d\xcb\x5b\x17\xf0\xb6\x17\x0e\x6a\x51\x47\x47\x2e\xa8\x45\x8b\x94\x92\xeb\x2e\xe0\x6e\x51\x74\x13\x01\x79\x08\x77\x8a\x46\xff\x00\xfe\xb3\x64\xbc\x21\x45\x3c\x69\x37\x4f\x1c\xef\xb0\x9b\xce\x62\x3e\x93\x6e\xac\xb4\x59\xe1\x06\x8d\xde\xd3\x4f\xd6\x79\x52\x93\x88\xa3\x72\x91\x83\xf5\x24\x91\x5a\xfa\x87\x37\x25\x8b\xc6\x87\xdb\xc8\xf8\xe1\x49\xc9\xe2\x1f\x20\xec\x7c\x72\x3e\x28\x93\xe6\x6d\x46\x8f\x83\xe5\x3e\xa1\x91\x98\x96\xb6\x0f\xd8\x4f\x90\x68\xa7\xcb\x81\x15\x4b\x3b\x35\x9f\x8e\x3a\xd9\x7f\x18\x86\x90\xdf\xce\xc4\x91\xd6\x2c\xed\x88\xac\x52\xa5\xcb\xb1\xc3\x41\xd6\x5e\xf4\xfb\x8b\x0c\x3f\x4a\xf0\x9d\xc8\x50\x8b\xbf\x23\x12\xab\xd9\x9a\xbc\x6f\x64\x1f\x1d\xa5\x3b\x91\x9e\x18\x72\x47\xdc\x78\x31\x05\x1b\xf6\xb1\xc4\xd1\xce\xc4\x90\x8e\x42\xdd\x91\x4d\xdc\x1e\x90\xfb\x06\xaf\xba\xe5\x1e\xb9\xad\x35\x8f\xfb\x86\xc5\x0e\xb7\x78\xf1\x05\x77\x09\x8e\xd4\x99\xb2\xc3\xa3\xd6\x4e\xcb\x7b\xfa\x14\xb8\xcb\x82\x00\x49\xe1\xe5\x1d\x50\xd1\x5e\xf8\x3b\xa1\xa2\xd7\x81\x55\x24\xad\x1d\xdb\x59\x15\xd2\x31\x4d\x3b\x02\xb9\x1c\x51\xb9\x17\x3a\x5a\xfb\x03\x02\x35\x4d\x42\xe1\x36\xd6\xfb\xc8\x35\xae\xa2\xc2\x63\xaf\xd4\xe2\x68\x9f\xef\xc8\x2d\x6e\xc7\xe3\x9d\x50\x51\xb7\xe2\x3d\x7d\x5d\x75\xab\xdd\xe1\x36\x60\x37\xe3\x1d\x8a\x56\x47\x6c\xee\x70\x23\xb0\x33\xc9\x0e\x28\x39\xd6\xf6\xa7\xec\x71\x3b\xd3\x0f\x55\x7f\x7d\x93\x5e\x0f\xe0\xe1\x22\x89\x40\x38\xba\x16\xaf\x41\x23\x5f\x48\x12\xee\x2f\xf0\x9c\xdd\x04\x37\x48\x09\x49\xc6\xbd\x71\x40\x7e\x9f\xf8\xc9\xac\xda\x18\xda\x2f\xe9\xbc\x23\x3f\x91\xd5\xfa\x3b\xdd\x5c\xed\x80\xb3\x33\xc1\xa3\x53\x48\xef\x50\x8b\x76\x07\xda\xef\xe9\x34\xa0\xb3\x72\x67\x46\x47\x07\xfc\xec\x28\x09\xe9\x7b\xf3\x0e\xec\xaa\xaa\xde\x63\x4f\xb5\xe8\xa7\x05\x7a\xbc\x88\x35\x50\x99\xdc\xfa\x8f\x7d\x90\x19\x45\x24\xf3\x35\x3a\xc5\xc6\xfe\x22\xcb\x5e\xcd\x2b\xac\x8b\x63\xcf\xea\x7d\xf0\xea\xee\x2d\xf5\x22\xc9\xd9\x3d\x75\x91\xe2\x51\x73\x1b\xdc\xd4\x1a\x14\xfc\x50\xbb\x37\x04\x71\x9e\x1b\x4c\x5c\xe7\x4d\xfd\xc2\xb4\xa9\x22\xc8\x63\x67\x61\x1b\xa1\x94\x7d\xa2\x96\x9a\xa5\xc8\x24\x6a\xf1\xea\x4e\x22\x6c\x0f\x02\x3e\xa3\xf5\xe7\x17\x68\x67\x32\xcd\x93\x37\x7b\x1d\x2b\x3b\xd4\x96\x55\x90\x7c\x9f\xb4\xbb\xea\x83\xf5\xc3\xff\xa2\x71\x51\xba\x9a\xc8\x45\x50\x2f\x4d\xd1\xbe\x5e\x16\x74\xfd\x95\x9d\xe1\xed\x56\x74\xee\x40\x6e\x0e\x17\xd8\x77\x76\xa1\x41\xec\x94\x9e\xe6\x96\x04\x67\x9b\xdf\x78\x05\xb4\x43\xcb\xf7\x3d\x47\xe5\x17\x4e\xd0\xe0\x2e\xa8\x30\x16\xd1\x89\xbc\x3c\x0a\xe8\x00\xab\x7b\x38\x1a\x89\xd6\x62\xc2\x7e\x5d\x3d\x4a\xc0\x26\x07\x85\xec\xcc\x6c\xe3\xd4\xd9\x3b\x51\x90\x0e\xb2\x1d\xf1\xe4\x55\xea\x84\xfd\x64\x8f\xea\x80\x95\xbf\x9d\x9c\x7b\xa7\x57\xa5\xb5\xb7\xfb\x45\xa0\x65\x11\xfd\xa2\x94\xae\x1a\xb8\x63\x47\x8d\x15\x07\x4a\xef\x0c\x00\x72\x1a\xdc\xfd\xe2\xbc\xf9\x05\x38\xee\xeb\xc0\xdf\x99\x67\xc6\x91\x1b\x3b\x93\x63\x3b\x69\xe9\x0e\x1c\x53\xa5\x51\xdb\xaf\x07\xcf\x22\x29\x71\x8d\xa6\xe9\x6e\x78\xd6\x18\x6e\x02\x54\xc1\x96\xfd\x85\x31\xd5\x99\x0f\xf7\x9b\x24\xfa\xff\x24\x49\xf3\x86\x8a\x28\x9b\xb5\xb3\x3b\x7c\x1e\x7f\x9b\x8f\xbe\x87\x4d\x68\x25\x10\xaf\xe3\xa4\xb7\x3b\x2b\x96\xf8\x2e\xb2\x3f\x39\xca\xff\xbe\x38\x58\x91\xc4\xfa\xaf\xe3\x47\xad\x44\xf8\x87\xf6\xef\x3f\xd5\x99\xa3\x0f\x40\x08\xbb\xbb\x1d\x54\x37\x59\xa3\x7b\x10\x53\x7c\xba\x20\xcb\x0a\x5c\x1d\x80\x08\x55\x17\xdb\x03\x5e\x85\xb6\xa3\x1c\xb4\x9e\x3a\x70\xe3\xd8\x78\xf6\x14\x7f\xf1\x0e\xe3\xbd\x57\xfe\xe1\x2c\x3a\x36\x9e\x3d\x02\x08\xc7\x86\x95\xf4\x88\x10\x51\x63\xbc\x70\x14\x66\x4f\xf4\x33\xc0\xa0\x8e\xc6\xa3\xf0\xf0\xd5\x69\x7e\xa0\x28\xb4\x19\xfe\x60\x78\x8c\x75\xd8\x07\xd3\x3e\x5b\xe7\x7c\x14\x1a\xb9\x8b\xdb\xe4\x79\xa8\xf3\xf6\xa8\x05\xd9\x60\x45\x44\x2a\x83\x3c\xad\x75\xb0\x4d\xff\x00\x69\xa4\x83\xe2\xe0\x09\x2f\x85\xd7\x01\xe5\x90\x33\x8b\x1d\x0c\x6e\x29\xee\x81\xb7\xba\xf0\x07\x60\x16\xdd\xad\x0f\x1c\xe2\xdd\xeb\x96\x69\x67\xc4\xe1\x47\xc3\x46\xd7\x55\xe2\x60\x12\x67\x87\xcb\x1c\x8d\x24\x8a\x64\x84\xa6\x18\x74\x1c\x2c\xe1\x3c\xa7\x5f\xa0\x83\x91\x66\x85\x49\x9b\x5d\x6b\xe0\xc0\x99\x5d\x9d\x86\xff\xe8\x10\xb1\x26\x9a\x91\x28\x4e\xe4\x75\xd0\xd4\x69\x6e\x83\xf6\xa9\x4a\x94\x1c\x79\x82\x9b\x5d\x3b\xf3\xa9\x09\xd2\x1e\x3c\xc2\x05\xf4\x8f\x8e\x5d\xd7\x4c\x42\x12\x69\x1a\xc0\x70\xd2\xba\x1d\x83\x16\x05\xdd\x70\x0e\xe8\x97\xaa\x6e\x1b\x07\x6a\xe1\x59\xd1\x77\x20\xd8\xda\x7a\x99\xe3\x3d\xf3\x8b\x63\xc5\x0f\x96\x74\x76\xb2\xdd\x03\xd1\xd8\x2e\xd1\x70\x00\x03\x0c\xbb\x0e\x1e\x88\x55\xb1\xf1\xea\x40\x2d\x3c\x07\xba\x1d\x83\x1c\x6b\xee\x48\xed\xd2\x32\x4d\x37\xdf\xf0\x27\x08\xa0\xf5\xb4\x04\xc5\x97\x04\xdc\x01\xf5\x52\xb5\x72\xe7\x08\x5c\x4f\x24\x9d\x0e\x94\x15\x71\xaa\x96\x83\xea\x25\x47\x08\x1c\x11\x74\xe0\x17\x3f\x24\xd0\x58\xee\xf4\xc0\xcc\xe9\x0b\x86\x9e\x58\x1b\x79\x50\x21\xe4\xc0\xfc\x03\x06\xd2\xea\xdd\x4e\x60\xd1\xdd\x42\xe7\x30\x44\xd5\x1c\x70\xe7\x15\x0d\x08\xf1\x76\x12\xaa\x63\xee\xf0\x07\xf6\x33\x63\x31\x4c\x01\x70\x88\xd7\x06\xfa\x21\x3b\xd1\x1d\x70\xdc\x73\x1c\xfb\x01\xe3\xe7\x66\xb7\xd1\x03\xe1\x25\x0e\x8f\x39\x16\x05\xec\xf2\x0f\x38\xba\x84\xad\x8f\x9d\x43\x12\x45\xcc\x78\x63\xb5\xdb\xb1\xf3\x46\xed\xd5\x66\xf4\xb4\x95\x5a\xc7\x4e\xff\x14\xaf\xf6\x4e\xb0\x2c\x4c\x78\xec\x60\x72\x61\xe5\xe3\xa0\xdf\xa5\xa5\x24\x34\x3c\x2e\x96\x75\x40\xc3\xe3\xca\x6c\x07\x81\x89\xf0\xda\x01\xe3\xa4\x71\xc8\x71\xb0\xde\xa3\xdf\x87\x30\xf1\x26\xc8\xfc\xcf\xfe\x9e\x99\x4b\xb4\x6d\x11\x5e\x62\x27\xb4\x23\x71\x8c\x99\xe9\xe0\x41\x31\xdd\x02\x8c\x68\x9e\xa6\xf3\xf7\xef\x3f\xad\x0b\x73\x1e\xb0\x55\xf6\x15\x7f\x3a\x86\x60\xc7\xb4\xdd\xf2\x38\x21\x35\x04\xe4\x0e\xd8\x25\x9b\x7d\xab\x0e\x64\x7f\xb6\x89\xe4\x38\xe1\x07\xe5\x2d\x0b\xd5\x4e\x75\x9e\xe1\x03\x66\x48\x5b\x20\x8e\x8b\x13\x2a\x72\x5f\x90\x54\x3f\x13\x72\xf1\x46\xe5\xff\x53\x48\x68\x46\xa1\xfa\xb1\xf5\xf7\x40\xf2\xe6\xb0\x0d\xfc\xb8\x50\x3a\x40\x18\xe8\x20\x46\x12\xb0\x3b\x98\x9c\xd9\x19\x16\x8e\x9b\x59\x23\x74\x1d\x3a\xa0\xa9\x71\xd1\x9e\x03\x2e\x6e\xae\xf2\x73\xb0\x4c\x9c\xab\xf4\x1c\x37\xbb\xd0\x2c\x3c\xd9\x85\x96\xf5\xc1\xa8\x8d\x5f\x1e\x5e\x7f\x7c\x70\x3e\x4c\xfe\xe1\x53\xe9\xa1\x8e\x4c\x3b\xfc\x44\x14\x73\xd8\x0a\x72\xb2\xde\x86\x4a\xe4\x8f\xf3\x47\x9c\xae\x3d\x79\xc2\x08\xe7\xb2\x28\xe7\x2f\x3b\x29\xfa\x21\xe7\xce\x5f\x30\xf9\x8f\x04\xd1\xf9\xcb\xa1\x4e\xfd\x00\x81\xaa\x4d\x79\x6e\x79\x6c\xa8\x09\x24\x48\xb6\xf5\xf3\xdc\x78\xd6\xe9\x7c\x3d\x37\x46\xbd\xab\x45\xba\x9d\x59\xd9\x77\x6e\x9c\x7e\x7f\x40\x9f\x1b\x9d\xc8\x27\x54\x1d\x2e\x37\x71\x22\x65\x8d\xeb\x8c\x9c\x85\xb9\xb0\xb4\x67\xce\xc2\x63\x41\xa7\xe1\x99\xe1\x10\x62\xd3\x13\x2e\x5f\x0e\xfc\x3d\x13\xd9\xe8\xd0\x3f\x91\xee\x38\xac\xb3\x3c\x2b\x9d\x79\xfc\x8c\x2a\xc2\xba\xa7\x9f\xcc\x7e\x5c\x3f\x1f\xf0\xf4\xd2\x89\x7b\x22\xc7\x4c\x93\x2c\x39\x5f\xe8\x32\xbb\xae\xfe\x67\x63\xa2\x4b\x35\xd0\x10\xd3\xe1\x79\xa1\x5d\xac\xfb\x99\xba\x04\x31\xf6\xd9\xb2\x47\xf5\xc0\x00\x06\xd7\xfb\x39\x1b\x49\xd0\x34\xb4\x9c\x6a\xfd\x80\x08\x06\x2b\x8f\xcf\x4c\xb9\x37\xfd\x43\x72\xa1\xfa\x40\x0a\x19\x17\xea\x38\x61\x28\x53\x01\xf2\x71\x76\xde\x89\x75\x66\x9f\x8c\xaa\x35\x5f\x43\xf9\x10\xd6\xa4\x9e\xfd\xc4\xbc\xf8\x03\xd4\x50\xd7\x6e\x3b\x61\x28\x73\xed\x90\x13\x3e\x5a\x4e\x6a\x7a\x22\xea\xd6\x09\xe7\x4f\x2a\x2b\xcc\x1d\x83\x8e\x91\xd5\x1f\x60\xdf\xe8\x84\x3f\x61\xe4\x72\x51\x84\x33\x71\x88\xa0\xcf\x39\x72\x5e\x35\xe8\xc1\xa5\xd4\x33\x60\xc7\xe7\x03\xe4\x32\x76\xa2\xb0\x13\x21\x0a\x4e\x4a\x7d\x06\x6f\xf5\x3a\xaf\xcf\x0c\x49\x30\x4d\xcc\x5d\x6c\xc5\xec\x19\xb9\xb9\xfd\x09\x32\x36\xea\x48\x3f\x33\x68\xe1\xd3\xc9\x85\x8d\x68\xa2\x30\x8f\x5e\x18\x98\xad\x9c\xc8\xfc\x9c\x9c\x37\x11\xfd\x82\x94\xea\xe2\x53\x27\x13\xd3\x7c\x7f\xe0\x26\x5a\x7f\xf2\x52\x38\x27\x24\xbf\x97\x7d\x12\x62\x74\xd3\x03\xf7\xe9\xea\xfe\x17\xfb\xd3\xba\x20\x6d\x8d\x2d\xa2\x27\x41\x8d\x59\x93\xca\x14\x41\x92\x73\x61\x40\x02\x41\xe7\xa2\x82\xdd\xff\xe7\x80\xdc\x40\x0e\xc8\x6f\xb0\xe6\x97\x9f\xc9\x4a\xde\x50\x8c\x67\x58\xba\x0d\x9f\x88\x67\x70\x70\xca\xb9\xc8\x5b\xfe\x00\xc2\x4f\xb8\xfe\x5c\xbc\x80\x0b\xd2\x9c\x8c\xcb\xb5\xaa\xf9\xdc\x21\x70\x4d\x24\xf3\x1c\x9b\xfd\x51\x80\xb7\xd9\xa7\xf1\xdc\x19\x5b\x26\x92\x32\x75\xa0\x17\x7a\x4f\x76\xf6\x0f\x2f\x67\xb8\xac\xd7\x79\x10\x45\xbb\x49\xc0\x28\x57\x5e\x3a\x0f\x0a\x7d\x33\x1f\x22\x75\x5d\xc9\xfb\xcc\xb4\x34\x1e\xe7\x31\x51\x85\x46\xc3\x3c\x58\x43\xd4\x1f\xec\xe8\xc1\xff\x03\x53\x0b\x6f\x9e\x07\xb2\x68\x58\x28\x1c\x58\x7b\x33\xf7\xc1\x21\xf8\xfd\xf7\x7c\xb5\x49\xe0\x3c\x81\xc9\x2d\x64\x4e\x1e\xb7\xc5\x2f\xe0\x90\xf1\x3a\x20\xff\xa0\xeb\x3d\x9f\x50\x20\x0d\xe7\x97\x3e\x11\xad\xe0\x6c\x02\x27\xe2\x11\x8c\xb5\xce\x13\x49\x5c\xcd\xde\x27\x6f\x68\x1e\xd2\x99\x2b\xad\x2e\xd3\xe9\x4b\x0a\xf4\x93\x4e\x5f\x56\x58\x9f\x17\xc5\xb3\xd9\x8b\x70\xcb\x87\xed\x45\x35\xc1\xe7\x07\x64\x97\x17\x00\x3e\xd3\xeb\xcb\x13\x07\xaf\x2f\xd7\x58\x39\x91\x93\xc6\xfe\x7d\xe7\x8b\xbf\x66\xf7\xa6\x47\x8e\x1a\x27\xc8\x3d\xa1\xd4\x0a\xdf\xf2\x4e\xd8\xe6\x9a\xf0\xda\x79\xb3\x42\xb9\x7b\xb8\x51\x74\x45\x98\xf9\xbc\x91\x7d\xdc\x48\x08\xc6\x3a\x9b\x19\xce\x9b\x39\xb7\x34\x84\x3b\x05\x87\xc6\x88\x24\x36\x4e\xca\x7f\xde\x14\x1c\x06\x31\xd0\x7a\x39\xf9\xed\x79\x73\x03\x14\x93\x70\x93\x46\x7f\xf1\x60\x10\xea\x82\x85\x82\x8d\x7a\x90\xe6\xc6\x41\xdd\xe7\x93\x1b\x42\xd3\xc6\x50\x63\x0f\xe2\xa1\xc6\xd3\xf8\xe1\xa1\x7e\x49\xa7\xd2\xf5\xfb\x91\xa8\xa1\x1f\x36\x2a\xfe\xab\x7e\x80\xb6\x4f\xf2\xf0\x62\x30\xaf\x4d\x05\x17\x0b\x62\x38\xe9\xca\x05\xa7\x2b\xdf\x97\x2e\x98\xd6\x9c\x82\xe0\xfa\xe5\xb8\xdd\x24\x79\x52\x17\xa4\x8b\x5e\x55\xce\xb2\x72\x41\x91\xe6\xba\x5b\x17\xd3\x22\x3a\x62\xf8\x82\x2d\xcd\xe9\x20\xae\x0d\x0c\x25\xf9\x75\xa1\xe8\xda\x66\x1d\xf9\x85\x78\xdd\xcf\xb8\x37\xe6\x63\xf5\xff\x58\x0b\x6d\xdd\xab\x50\x6c\x0b\x07\x5f\x05\x11\xc3\x7f\xab\xb5\x7a\xa5\x9e\x4c\x57\xb8\x0b\x66\xb2\xe2\x11\x17\x00\xbb\x9f\xbb\x03\xc3\x9b\x9c\x92\x73\xe6\xee\x1f\xe2\x0b\x7d\x81\x7a\x69\xc3\x59\x97\xae\x5a\x50\x3a\x45\x53\xf4\xc2\xd3\xee\x5c\xae\x57\xe5\x88\x74\xd8\x5f\x15\xc2\x47\xc7\xcc\x05\xcb\xda\x87\x13\xa0\x66\x73\xbc\xe1\x55\x79\x97\xae\x7e\x01\x60\x20\xdc\x00\x77\xe9\x87\x24\xec\x52\xf3\x12\xc0\xaa\x35\xac\x57\xe5\xfd\x44\x37\xbf\xab\xc1\xe9\x5b\x9b\xee\x42\xf5\x34\x67\x27\xbc\xe0\xb4\xe5\xd4\x27\x17\x1d\xa8\x9c\xe8\xe6\xa2\x51\xca\xd5\xf5\x2e\xa8\xb4\xec\x26\x73\x75\xec\xd2\xe2\xff\x09\x14\x3d\xa8\xce\xb4\x75\x9a\xb6\x9e\x2b\xe1\x1f\x92\x7b\x35\x2f\xac\x93\xfb\x19\xc5\xa0\x95\x49\x38\xeb\x82\x0f\xbf\x13\x21\x5c\xc8\xbf\xe2\x74\x9a\x17\x4b\x67\xd8\x60\x77\x0d\x14\xcc\x6f\x7e\x21\x37\xa1\x86\x31\x80\x00\x7e\x6e\x11\x5a\xae\x6e\x9a\x70\xe2\x7b\x1a\x98\x8f\xa5\xb9\x03\x62\x4b\xb5\x17\x39\x06\x7d\x10\x50\x8e\x7b\xe9\xa0\xa0\xb2\x74\xbb\x00\x1d\x5d\x74\xee\x0a\xce\xb3\x08\x08\xe2\x01\x01\xc5\x8b\xea\x29\x1f\x8e\x17\x62\x51\x9d\xe0\xed\x7a\xa1\xda\xec\x66\x37\x78\xe7\x5b\x07\x7b\x01\xa9\x55\xab\x97\x2e\x66\x1c\x74\xa5\xbc\x0b\xd0\xed\xb3\x30\x93\x12\x58\xb7\xc6\x0b\xd9\x53\x9c\x51\xf0\x5a\x19\x3c\xa2\x51\x31\x0d\xb4\x8d\x50\xd7\xe2\xca\x69\x14\x69\x29\x13\x7e\xbc\xa0\xe3\x72\x4e\xc2\x6b\x11\x80\xba\x81\x5c\x39\xbf\x30\xd9\xa7\xc6\x8d\x52\xb8\xae\x34\x70\xbd\xe0\xad\x3a\xa8\xe6\x42\x7d\x32\xbb\x6b\x5e\x3b\x9d\x5e\xa5\x46\xbb\x68\x39\x73\xa1\xbb\x6b\xe7\x5d\x47\x5d\x52\xa3\xe5\xda\x7a\x17\x4c\x67\x9f\x79\x80\x3b\xbd\xbd\x02\x2f\x7a\xcf\xdb\xc3\xff\x3a\xb8\x56\x5a\x8b\x83\xa3\x92\x3e\xe4\x82\x69\xad\x79\x29\x0e\x5e\x24\x04\x8b\x2f\xb8\xcb\xbb\x50\xd3\xc5\xdc\xcd\xf3\xd3\x27\x0d\xa7\x82\x3a\xd7\x89\x52\x1c\x9e\xc9\x04\x53\x42\x73\x17\xab\x98\x7d\xa4\x01\xd1\x94\x2e\xe8\x17\x14\x53\x8e\xa7\xbb\x90\xdd\xd9\xf9\x7d\x2e\xc6\x86\xda\x38\x7b\x9d\x3c\xda\x2c\x86\x4f\x9c\x1a\x3e\xda\x90\xe0\xcf\x19\x18\xae\x93\x33\xdb\xfd\x03\xf6\x95\x0f\x2e\xa0\xad\xaf\x60\x07\xda\x32\x54\xbf\x90\xf0\xcf\xb1\xf9\xd7\xc5\x31\x88\xe6\x2b\xe3\x14\x34\x28\xa8\xae\xb6\xf8\x93\x85\xe8\x22\xce\xf2\xc2\x5f\xf4\x27\x5a\x6e\x2d\x01\x82\xe9\xa1\x3a\xd4\x93\x06\x6b\xa1\xb3\xbe\x5c\x17\x0f\x22\x9f\x33\x37\x71\xbc\x34\x5d\x17\xc2\x45\x3f\xe2\xf0\xe6\xa6\x0a\x7f\x01\xf1\x67\xee\xba\xa9\x88\x0e\x7f\xc1\x85\x13\xd9\xf0\x93\x72\x5a\x89\x0b\xd8\xab\x39\xd9\xd3\x45\xec\xe5\xa3\xed\x86\x51\xf4\xd3\x00\xd7\xcd\xff\x63\x50\x5e\x78\xd6\xe1\x75\x4d\x9e\x2b\xf3\x53\x7b\xa2\x10\x60\xea\x12\x99\xd7\x03\x23\xa9\x45\x3a\x6a\x63\x18\xd1\x5e\x09\xc5\x74\x17\xb9\x1e\x56\xc8\xd4\x18\x1e\xea\x82\x2c\xce\x58\x2c\xcd\xa7\xe9\x03\xe7\x49\xc3\x28\x78\x5d\x39\x1b\xe5\x05\x13\xa9\x23\xed\x2f\x78\x61\x39\x27\xd0\xf5\x40\x0a\x48\x74\xdd\xbf\x5c\xa7\xd0\x0f\x49\xe2\xd4\x0f\xc8\x4d\xaa\x59\xbc\x7f\x3c\x5d\x97\x9e\x81\x6a\x36\xb7\x08\xfb\x80\x86\x78\xc3\x3e\xea\x64\x96\x37\x2a\xa5\x59\xa5\x76\xc3\x37\xde\xf6\x86\x7b\xa3\x54\x51\x7b\x1b\xcf\x18\x13\x40\x54\xa7\xcb\xcc\x0d\x54\x67\x69\x7c\x33\xb3\xb5\x4e\xc1\x1b\x89\xac\xed\x11\x70\x6f\xb9\x3d\xdd\x23\x50\x9e\x50\xe1\x5d\x58\x73\x4f\x33\x00\xff\x28\xa7\x1c\xb9\x4b\x1e\x5a\x9a\x33\x68\x0d\xed\x7f\x7d\x43\x6b\x68\x0f\x94\x1b\x39\x5a\xb6\xea\xff\x71\x90\x4b\xe4\xdc\x05\x87\x9c\xa7\xa0\xf0\x50\x73\xfb\xc0\x81\x3a\x56\xef\x72\x22\xb1\x86\xdb\xc7\x08\x25\x6f\xee\x42\x46\xf6\x80\xa8\xb6\xd2\x0c\x31\xe9\xb5\x11\xd5\x0d\x14\x58\x6d\xa3\xbe\x53\x27\xe9\x49\x26\xec\x93\x60\xbe\x5f\xd8\x37\x8d\xc1\xee\x8a\x55\xd6\x29\x7b\xa7\x4a\xd2\x6c\x52\xc9\x78\x1a\x53\x25\x8d\x22\x01\x2a\xc7\x0f\x2c\xbc\x61\x5d\xb5\xcf\xe2\xdd\x78\xc8\x6a\xbb\xde\x4c\x83\xed\xc8\xa5\xbb\x31\xd3\x8d\xba\x40\xd4\xa8\x9d\x70\x6f\x44\x8d\xb6\xcf\xff\x14\x5a\x7e\x81\x25\x6f\x6d\xeb\xba\xd3\x9a\x6a\x66\x85\xb5\xd4\xb7\xb7\x9b\x71\xa1\x56\xb7\xdd\x9d\xf8\x44\x7d\xa0\x40\x9a\x11\xd4\x4d\x8d\x63\xf1\x33\x4f\x3c\x1d\xec\x37\x90\xe5\x30\x12\xb8\x61\x4d\x75\xd8\xc4\x3d\x92\x26\xad\x36\xbc\xf1\xc3\x75\x37\x6f\x04\x83\xfa\x9a\x71\x0f\xde\x3b\xa4\x38\xbd\x07\xf9\x49\xa3\x1a\x5c\x0b\xff\x0f\x43\x90\x47\x0d\x7f\x28\xc7\xa6\xdc\x41\xa7\x09\xdd\x41\x6f\x14\x00\x69\xe3\x4f\x25\x86\xee\xa0\xe1\x5d\x8a\x82\x3b\x68\x1a\x90\x62\xe0\x46\xf1\x5a\x27\xa7\xbd\x91\x72\xcf\x1e\xb2\xf7\x7c\x41\x80\x43\x9a\x6f\xa8\x0f\xed\xe1\x78\x03\x14\x2e\xbb\x98\xdf\xc0\x80\x56\xc7\xdd\x33\x67\xdd\x3f\x60\x92\xfd\xcc\xda\x20\xde\x31\x2b\xe7\x58\x24\xc2\x6a\x69\xe4\x7b\x2f\xee\x0f\x37\x40\xd3\x83\x34\x7e\x37\x00\x9b\xcb\xdb\xde\xc8\x1d\xe2\x3a\x4e\xf7\x22\x05\x1a\x33\x93\x4a\xdb\x2b\xe4\xde\x51\xa4\xce\x9c\x84\x42\x1f\x56\xc9\xdf\x3b\x59\xd1\x72\x0e\xbe\x54\xf6\x6c\xb9\x81\x08\xab\x9d\x84\x6e\x98\x30\x3f\x92\xfc\xe0\xe5\x51\x40\xe6\x86\xc9\xd2\x66\xa0\x9b\x29\xa0\xed\xaf\x70\x27\x24\xb4\x58\x38\x50\xff\xca\x8c\x01\xa3\xe5\xe7\x30\x38\x50\xf8\xc5\xb2\xfc\xa0\x98\x58\xfe\xe1\xe4\xd2\xb9\x45\x4a\x6f\x31\xcb\x41\x2c\xa5\xe7\x93\xf3\x24\xbd\xd4\x7d\xe6\x28\x34\xee\x93\xa3\x10\x0d\x8c\xc9\x74\xdd\xda\x1b\xfa\x37\x1b\xc8\x6e\xa4\x80\xb6\x7b\xeb\x7d\xf2\xc4\x13\x74\xbe\xe9\xc6\x6e\x43\xfd\x8d\xbc\x79\xbe\x95\xdc\x09\x19\x8b\x9b\xa4\x4e\x51\x53\x4f\xc8\x68\x8e\x4f\x0d\xdd\x32\xd1\xbc\x60\x16\x0f\x8b\x60\xc4\x3c\xcc\xe2\x64\xa6\x1a\xfa\xb8\x8f\xe4\x41\xcc\xe4\xe7\xa6\x7e\x5f\x28\x8a\x65\xa2\x2f\x94\x34\x36\xcb\xbe\xf8\x6a\xfb\xe8\x21\xef\x9b\x57\x88\xcf\x1b\xa4\x5a\x34\x51\x55\xe5\xd5\x86\x5b\xb9\xe1\xd1\xfd\xa0\x36\xcd\xcf\xff\xbf\xdc\x60\xb7\xde\xfb\xc1\xa6\x31\x45\x4c\xd0\xec\x1a\x70\xf7\x93\x14\x88\x24\x38\x74\x35\x67\x2b\xbb\x1f\x88\x2e\xcf\xdb\xc3\xb3\xfc\xbf\x89\x7d\x7e\xcc\x7e\x54\xf5\x5c\x50\xf2\xed\xa7\x67\xc2\x1d\x8d\xe1\x41\x00\x62\xf9\x7c\x90\x6b\x3d\xf5\x03\x2e\xd9\xdd\x1f\xf0\xc2\x19\xfe\x81\x0a\x8f\xf0\x17\xb9\xb8\x26\xea\xc1\xbd\x5c\x5f\xc0\xd2\x39\x5c\x8c\xfd\xd9\xa0\xf4\xd6\x3e\x7b\xe0\x55\xee\x4d\xf1\xa0\xfe\x87\x5d\x10\x9f\x0d\x1a\x10\x4d\xe4\xc3\xf0\x42\x6b\xea\x1f\x66\xe4\xf0\x4d\xeb\xd9\x92\x43\x35\xce\x8d\x6e\x1b\xee\xe3\x45\x41\xb5\x6a\x2d\x1e\xa0\x9e\x2e\x5c\xf6\xbc\xa0\x27\xa6\xb0\xed\xc3\x62\x64\xae\x99\xfb\x00\xe5\x2c\xbb\x30\x3f\x25\xc5\xb2\x9b\x4c\x22\xfc\x06\xec\x07\x9e\x18\xe4\xa6\x73\x38\xd4\xc3\xdc\x74\x96\xcb\x4f\xe1\xfd\x50\xe7\xe9\x83\x34\xc9\xab\xff\xfe\x94\xc8\xe7\xa9\x98\x67\x71\xfc\x53\xc9\xc0\x5a\x39\x1a\x73\x9d\xee\xf2\x61\xad\x5a\xd7\x09\x7f\x12\x28\x49\x46\x3e\x2f\x50\x2a\x4e\x43\xf5\xd4\x9c\x57\xad\x4d\xea\xc3\xa6\x7f\xb8\xb1\xb8\xfe\x82\xbb\x4a\x83\x6e\x64\x06\x11\x05\xdc\xe3\x8a\xce\x0f\x2d\xab\x8e\x48\x7c\x58\xcc\x4c\x9b\xe6\xa1\x5f\xb7\xab\xe1\x3e\x2c\x66\x66\x2f\x83\x07\xa6\x56\xdb\x07\x9e\x84\x35\xd3\x3f\xbc\x3b\xd5\xaa\xf8\xa7\x53\xeb\xd7\xfc\x42\x2e\xa5\x96\x0e\x5e\x62\xf6\xb6\x78\x58\x18\x76\x33\x51\xb9\x94\xfe\x21\x25\x9e\xc6\xd9\xb9\xb6\x9a\xea\xd4\xa8\x49\x90\x3f\x23\x25\xbd\x7f\x20\x30\x97\xde\xe5\x81\xe3\x98\xf5\xb7\x0f\x7c\xc5\xad\x87\x79\x06\xb7\x85\x4e\xdd\x87\x29\xe4\xec\xb6\xf0\x8c\x0b\x5f\xb8\x05\xc4\x06\x7b\x18\x2f\x54\xea\x76\x83\x7d\x02\x96\x75\x41\xf5\x07\x21\x84\x5d\x87\xd1\x03\xd7\xf1\xcf\x16\x88\x1d\xcf\x9a\x58\xa4\x7b\xb3\x79\xf7\x61\x00\xa0\x13\x89\x3e\x91\xf8\x50\x14\xbe\x60\xa8\xdb\x31\xf7\x81\x6d\xd5\xbe\xe7\x0f\xc0\x91\x8d\x9f\xcf\xcc\xc5\x17\xc9\xc8\x07\xe7\x44\x25\xcf\xc4\x24\x79\x8f\x21\x3d\xf1\xfa\xf6\xc0\x3b\xa8\x3f\xa0\xc6\x57\x4a\xbb\x67\xd2\xdd\xb3\xb9\x8b\x1c\x85\x89\x00\xcf\x0b\xec\x3f\x2b\xd7\x56\x5f\x20\xec\xd0\x7a\xbf\x67\x71\x69\x2d\x7e\x56\x0e\x43\x54\x2c\x2a\x7e\x74\xd1\x7c\x56\x6e\x4d\xbf\x41\x7f\x01\xbf\x30\x51\x78\xd2\xfb\x62\x91\x89\xbd\xb5\x50\xfa\x63\x7d\x96\x97\x05\xda\x5c\x58\xf5\xd9\x53\x74\xab\x13\xe4\x7c\xf3\x05\xfd\xd9\x21\xba\x85\x04\x1e\x38\xa7\x59\x45\xf0\xec\x94\x28\x96\xdd\xac\xfd\xb1\x36\x7f\x01\x16\xb1\x88\x83\xe2\x6e\x7d\xb6\xd6\x9e\x44\x69\x6e\x68\x44\xb5\x33\xc6\x73\xe0\x06\xeb\xc9\x83\xef\x99\x75\x81\xcf\xd1\xdf\x15\x35\x93\x65\x1e\x0c\x29\x80\x9e\x83\x3c\x60\xa2\x90\x19\xc3\x7a\x84\xe7\xe0\x92\x77\xbf\xc0\x5b\xb6\x90\xdd\x83\x68\x42\x9b\x5d\x1f\xa4\x79\xfb\xc8\xa0\x93\x7c\x2a\x2e\x3b\x11\x8c\xeb\x9d\xc0\xe0\x42\x3b\x6f\x3c\x50\xe4\xf9\x0a\xfa\x9c\xf4\xe7\x92\xfe\xe6\x39\xa9\x13\xd5\xbd\xf8\xb9\x38\xf7\x22\x01\x6a\x35\xdf\x49\x1f\xa4\x9d\xf8\x4c\xc3\x95\xfc\xe0\x0f\x20\xd4\x3c\x8f\x17\x65\x96\xa5\x3d\x3c\xc2\x7c\x93\x7f\xa0\x06\xfb\xb5\x3f\xb9\x29\x3c\xb0\x4e\x3a\x26\xe8\xa1\x46\xcc\xe4\xc0\xd8\xb8\xd9\x17\xe4\x49\x6b\xa3\xc1\xcb\x0d\xcd\xa4\x39\x1c\x80\xcd\x60\xf9\x81\x86\xcb\x1e\x33\x0f\x34\x5c\x9f\x33\xff\x21\x37\xeb\x26\xf8\xc0\xd8\x68\xef\xe1\xe7\x21\xe3\x88\xa4\x87\x8c\xe3\xff\xc7\xbf\xff\x84\xf3\x57\x3d\x40\x74\x1f\xc7\x88\x07\xfa\x29\xe7\x5a\x78\x58\x62\xc3\x11\x9f\x0f\xf3\x4f\xd8\xd5\xe3\x01\xc2\x93\x91\x22\x7e\x30\x56\x4e\x39\xe1\xc4\xef\x47\x1a\xa7\x9e\x49\x53\xd1\xf3\x40\xf4\xba\xdf\x87\xb6\xe5\xbf\x45\x8c\xdf\x0f\xac\xfc\xdf\xa4\xc5\x0f\x80\x6e\xca\x0c\x17\xbf\x1f\x57\xbd\xeb\x99\x52\x61\xf3\x0b\x58\xf5\xff\xd8\x24\x7e\x1b\x29\x0a\x3d\x77\x84\x19\xfa\x39\x38\x46\xb5\x88\x6a\x6d\xbd\xf9\x19\xb3\xd4\x34\x04\xf8\xad\xf5\xa6\x0e\xa1\xd2\xea\x4d\x24\x6f\x37\x86\xe8\xff\x41\xd0\x7f\x07\x63\xfc\x58\x5b\x56\x87\x40\xfc\xe0\xe3\x3f\x65\x2a\x8a\x5f\xc1\x24\xb9\x07\xa4\x53\xd3\x7d\x24\x7e\x05\x32\xdf\x93\x04\x15\xd4\xf0\x24\x32\x15\xda\xda\xd4\x25\xf2\x41\xf4\xa6\x31\x03\x5a\xf5\xa6\x39\x82\x5b\xdc\x26\x0f\x98\xf8\xd5\x9c\x14\xad\x23\x2b\xab\x85\x67\xa1\xe6\xc2\x88\x08\x26\x43\x53\x0e\xad\xf8\x11\x4a\x35\x35\xd1\x72\x98\x9a\xd8\x96\xbd\x8a\x0c\xe4\xee\x9d\x32\xb4\xc4\xaf\x71\x93\x15\xb1\x0b\x8b\xa7\xe9\x48\x8e\x5f\x4b\xf7\x3b\x7f\x72\xb0\x0d\x0d\xa5\xf1\x9e\xe4\x26\x78\x66\x77\x11\xde\xc1\x20\x5d\x2f\xb0\x98\x6c\x98\x01\x3a\x85\x5d\xd1\x7a\xbc\x00\xcc\xb9\x76\xe3\x07\xe3\x61\xef\xfa\x7f\x64\x0b\x1a\x3a\xac\x87\x53\x15\x8a\xe3\x87\x04\x0b\x53\x85\x79\xe3\x87\x1c\x61\xd5\xfb\x62\xe4\x6c\xfa\x8b\x9b\x5f\xb8\x13\xea\x85\xb4\x20\xb0\x0f\x36\xff\xcf\x6c\xb7\xd2\x1a\xbe\x82\x80\x2d\xf8\x8b\xc9\xcc\x56\xea\xf4\xc5\x3b\xae\x60\x1c\x3f\x16\x29\xdb\x34\x53\x41\x09\xeb\xa9\x62\xd1\xb2\xf0\xc8\x27\xb7\xbb\xfa\x9c\xd9\xa7\xd6\x0b\x45\xec\x7f\x9e\x5b\x38\xac\x0f\x73\x11\x33\x1e\x2c\xd1\x08\xdf\x2d\xd5\x3f\x8d\xdf\x22\xcf\x14\xbf\x40\xc3\x6c\xf7\x0f\x3c\xb2\x8b\x3f\x21\x57\x79\x18\x80\x1a\xab\x7f\x7e\x80\xd0\xf9\x34\xc1\x6b\x42\xf1\x0b\x0f\x9b\xd0\xcc\xec\xd4\x7f\x76\xff\x80\x30\xc6\xea\x67\x08\xfb\xcf\xff\x28\x01\xf6\xf9\x1f\x9b\xa3\xff\xc5\x46\x14\x3f\xe8\x86\xba\x39\xf6\x48\x09\xa2\x59\x84\xb2\x68\xfe\xbc\x7f\x89\x29\xba\x18\xf0\xc8\x69\xf3\x17\x54\xa3\x78\x62\x61\x1e\x54\xc9\xb1\xf8\xc1\x31\x4b\x79\xfa\xe3\x87\x8c\x06\xb2\x79\xc6\xef\x60\x4e\x7b\x35\x78\x4e\xc4\x4f\x88\x5f\x4f\xca\x07\x6f\x5d\xf8\x9c\x77\x8b\x45\xb8\x90\xcb\x68\x1a\xbf\x8b\x63\xf0\x2e\xbb\x26\x49\xf4\x1b\x58\xa6\x21\x92\x19\x47\x17\xa6\x19\x2e\x47\xb2\x00\xc5\x8f\x00\xc0\x9b\xea\xce\x55\xd3\x07\x08\x7b\x9b\x3f\x4b\x20\x1e\xb1\xde\x33\x0f\x6b\xa2\xf9\x79\xe7\x3c\x8a\xa6\x87\x5d\xfe\xf7\xc2\xf6\xa3\x90\x13\x7f\x6e\x74\xd6\xd1\x81\xb8\xfd\x52\x98\x84\x7e\xe0\x16\x11\xbf\x6e\x69\xd3\xe9\xfe\x64\xf2\x8d\xa6\x1f\x38\x11\x7e\x4e\x7e\xf5\x17\x1c\x57\x31\x59\x50\xd4\xe9\x10\xdc\x52\x67\xa1\x3e\x37\xb6\xe8\xff\xf7\x7f\xff\xa9\xaa\x43\x1d\x1b\x4a\x47\xf5\xe1\xe7\x14\xa2\xff\x4d\xdc\x56\xe8\xdd\xf5\xf9\x81\xfe\xe1\x6a\x11\x75\x9d\xa4\xdf\x8c\x8d\x45\x99\x96\x47\x99\xea\x84\xe2\x37\xd8\x87\x96\x6f\x2b\xdc\x85\x9e\xba\xf7\x58\x0b\x45\x29\xc4\x56\x29\x8e\xfc\x05\xe2\xd4\x7c\x90\x6e\x95\xe7\x49\xf5\x0b\x74\x27\x14\x11\xf0\xbd\xde\xe4\xc3\x13\x1b\xed\x1a\xba\xa5\xc6\xf6\x9e\x40\x31\x25\xb8\xb7\x46\x58\x3a\xfc\x45\x96\x3f\x11\x07\xe0\x00\x92\x59\x31\xb6\x06\x7c\xe0\x16\x3b\x31\x94\x57\x8f\xf5\x3c\x97\x9b\xa4\xe5\x43\x1e\x30\xb1\xf5\xe4\x32\xcd\x15\xbc\xb1\xfb\xf0\x33\xe0\x78\x68\x66\x3a\xcf\xf3\xea\x1f\xe0\xed\xb4\xfc\x4c\xc6\x96\xe4\xde\x68\x1b\xa9\x6e\x91\xe7\x8f\xa7\x8e\x81\x64\xca\x1f\x19\x1b\xfc\xad\x7b\x68\xdc\xef\x29\x58\xab\xce\x86\x6d\x90\x46\x0d\x93\xf7\xff\xf0\xff\x28\xbf\x36\xdd\x01\x1d\x85\x86\x1b\x44\x36\x06\x0f\x7a\x70\x62\x45\x32\xa2\xc2\x14\xde\x1e\x5b\x10\xb3\x78\x9f\xbc\xe7\x99\x75\xcd\xb1\x4d\xce\xbc\xe7\x15\xf1\x57\xdd\xec\x30\x79\x86\x7a\x8c\x93\xd7\x1a\x37\x89\xf2\x40\x5d\x47\xe8\x36\x33\x28\x4c\xcf\xd4\x61\x48\xf0\x6f\x30\x6e\xc8\x01\x36\xb6\xbc\x4b\x5b\x82\xbc\x27\x5c\x95\x8a\x33\x36\xb8\xaf\x74\x6f\x9c\x45\x79\x61\xfe\x42\x85\x1f\xa5\x98\x88\x6d\xe5\x52\x6a\x9b\x2c\x42\x22\x2f\x3e\x7c\x8b\xab\x77\xff\x9e\xf3\xf0\x97\xfc\x0a\xb1\xed\x85\x6f\x6b\x08\x3b\xe6\xc0\x0b\xc7\xb3\x4f\x47\xc5\x96\x37\x60\xcb\x40\xdc\x80\x95\x46\x20\x36\x38\xb7\x2c\x5d\x81\x63\x3b\x18\x27\xb9\x34\x04\xde\x70\xa7\x28\x3e\x78\x9b\xf4\xac\xc1\xef\xb7\x4f\x0d\xf1\xbd\xd0\x4e\xa9\x7a\x62\xe3\x05\x56\xd8\x73\x63\x9d\xf1\x65\x89\x76\xc2\x69\xc3\x3d\x9c\xec\xd1\xff\x53\xaf\x62\x11\xc9\xc0\xf1\x65\xe1\x72\x92\x04\x8d\x12\x89\xc6\x97\xc7\x00\x3f\x92\xee\x75\xba\xa8\xcf\xf4\x86\xe0\x8d\x78\xfa\x83\x8e\x3d\xea\x0f\xa8\x08\xf0\x2e\x87\xcf\x6e\x17\x04\xdc\x2e\xa2\x4a\x5d\xcf\xb6\x8b\xac\xd0\xfc\x06\x0f\x06\x13\xfd\x1e\x91\xad\x79\x57\x23\x57\x63\x37\xff\xde\x54\x66\x6b\x5a\x98\x37\xdc\x5d\x22\x5f\x8e\x2a\x51\xc6\xc6\x4b\xee\x72\x7b\x4c\xe7\xa7\x31\xbe\x97\xde\x56\xcd\x8a\x2c\xbd\x23\x95\x4c\x6c\xa8\xbd\xa3\xa2\x2b\xb1\x3d\x14\xd9\x5e\x49\x38\x59\x74\x4b\x2e\xc4\x9d\x77\x1f\x34\x0f\x29\xf0\xfb\x48\xff\xe0\x43\x02\x46\x09\xe5\xb8\x88\xf2\xa3\x1c\xd3\x16\x2e\xef\x81\x5c\x15\x4e\x15\xe5\x47\xfc\xa8\x49\x2c\x3f\x9c\xf9\x82\xc9\x65\xc3\x9c\x69\xa1\x0b\x5d\x61\xa5\x0a\x8d\xb2\xa5\x18\xf1\x1b\xd4\xe0\x08\xeb\x94\x2d\x17\xca\x6f\x60\x54\x92\x02\x65\xa3\xd2\x2e\xfc\xc5\xc3\x26\x44\x15\x13\xc1\x48\xcf\x17\x05\x49\x02\x15\xf7\x11\x05\xb5\x67\x94\xaa\x3c\x0a\xf3\xbe\x28\x8b\x66\x14\x14\xf0\x56\xe6\xfe\x28\xf0\x64\x50\xb5\xd6\x28\x79\xad\xd4\x9d\xa4\xe0\x5a\xa9\x9a\x9e\x51\x70\xad\x54\x74\x55\x14\x78\x32\x4c\xa5\x4a\x88\x82\x4c\x31\xca\xc6\x10\xa5\x22\x54\x58\xdc\x58\x98\x81\x5b\x51\x65\x51\x6a\x72\xb4\xbf\xc0\x7d\xcf\x07\x57\x41\xce\xed\xf0\x6a\xa1\xc4\x8c\x72\x4c\x45\x69\xc4\x04\x3a\x0a\x0b\x53\x6a\xff\xbc\x3a\x2c\x7b\x28\xf5\x59\x14\xe6\x1d\x94\xfa\x2c\x0a\x92\x68\xab\x74\x5e\x94\xf7\x9e\x5a\x55\x37\x24\x4a\x43\xac\xa2\xc4\x57\x79\x21\x40\x1f\x3f\x3f\x23\x71\x96\xd7\x8e\x59\x09\xa5\x1c\x8b\xd2\x59\x63\x4d\xab\xdf\x29\x1a\x74\xb4\x95\x9e\x3c\xe8\x37\xde\xc5\x55\x11\xb6\x28\xef\x79\x1e\x96\x87\x05\x26\x80\x25\xe5\x57\x14\x78\xd1\x0e\xd3\xd0\x09\x9e\x75\xd6\x15\xa6\xc0\xf6\xc4\xf6\x24\x52\xab\xdb\x1f\x20\x3a\x7d\xc0\x1a\xde\xd2\xd8\x45\x81\x09\xa0\xea\x60\x2a\x2f\x20\x68\xbf\xee\x0f\x88\x5a\xcc\xa1\xf0\x8d\x90\x3f\x61\x94\xc1\x8b\x59\x99\x7f\x39\x87\x0a\xe0\x40\xff\xd0\x43\xe0\xa5\x2b\x4d\x09\x82\x39\xdd\x9b\x4a\x20\xa7\xab\xa7\x1d\xf6\x00\x55\x5c\x8b\x12\xb9\x2d\xb5\x70\x41\xe4\xed\x39\x78\x21\x45\x2d\x1e\x32\x2c\x02\x72\xac\x89\x82\xd8\xaa\xe1\x11\x05\x21\xab\x69\x42\xb2\x19\x95\x1b\x8c\x02\x03\x81\xaa\x60\x45\x81\x81\x40\x85\xba\xa2\x4c\xca\x47\x09\xe8\xf2\x22\x90\x3e\xbc\x85\x10\x01\xbe\xf9\x4e\x53\x52\xbd\x6f\x9a\x26\x91\x9b\xa7\x61\xb1\x0f\xd1\x90\xda\x7b\x2f\xd4\x02\xbf\x9b\x1d\x59\x7b\x45\x0e\x17\x51\xa8\x68\xd7\x85\xa4\xec\x6c\x51\x0d\xec\x24\xd2\xef\x53\x88\x77\xff\x80\x73\x48\x90\xa1\x30\x89\x5f\x7c\x7e\x48\xa2\x45\x24\xf2\x4f\x2b\xde\x20\xca\x41\xcc\xe2\x71\x1f\x3c\xf1\x35\x31\xf0\x97\x18\x16\xb1\x07\x95\x32\xd3\x3f\x20\xd6\xbd\xf8\x83\x85\x0f\xdc\x03\x0f\x0e\x51\x00\x9d\x79\x55\xec\x7b\x94\x93\x37\x56\xcf\x1b\xfd\x5f\xbd\xfa\x48\x3e\x33\x2c\xa2\xe1\xdb\xf0\x99\x36\x28\xcd\x87\x05\x4f\xfa\x36\x4c\x7f\x40\x75\x97\xae\x23\xe5\xe4\xf9\xad\x1b\x4e\x01\xe8\x18\x1e\x04\xcb\x55\x7f\x9e\x39\x0b\x1a\x04\xe2\xac\x7d\x5b\x29\xac\x45\x6d\x90\x5d\x50\x11\x30\xcc\x2c\x17\x4a\x64\x08\x01\x17\x16\xf8\x33\x24\x2e\x40\x0c\x43\xb7\x97\x02\xdf\xd2\x5f\xf1\xbe\xbc\x49\x82\x16\x8a\x39\xf7\xac\x13\x2e\x28\x36\x5d\xbd\xeb\x6e\xb8\x53\x7f\xfe\x87\x93\xb8\xf7\xc4\x43\x39\x62\x12\x12\x44\x54\xff\x00\xfe\xf3\xb4\x01\x44\x58\x69\x54\x80\x21\x86\x37\xd5\x43\x65\x85\x60\x7d\x79\x32\x6e\xc2\x2d\x32\x17\xa8\x68\x7c\x50\xf7\xd0\x82\xe1\xa1\xb4\x54\x0b\x95\xd5\xa8\xad\xa4\xad\x09\x23\x24\xa2\x2b\x7c\x31\xc7\xe7\x85\x83\x5f\xf8\x05\xde\x88\xfd\xc5\xc6\xa3\x4b\x47\x78\x4d\xa4\xf1\xf9\x01\x1c\x55\xfd\xcc\x89\xa8\x7a\x66\xd0\xfc\xd4\x33\x8e\x7c\x77\x09\x5d\xb6\xbc\x72\xa3\x6e\x34\x6f\x7d\x1a\x7c\xb7\xa1\xfc\x0a\xa2\x96\x1c\xa6\xbe\x40\x7d\x67\xab\x9a\x2b\x52\x19\xab\xe8\x56\xd4\xc2\x1b\x54\xf8\x07\x9e\xf9\x42\xda\x15\xa5\x41\x46\x73\x17\x48\x2f\xbe\xfc\xff\x01\xcb\xcc\xd2\x33\xf7\xc4\xa7\x45\xc8\x8e\xe9\xe7\x07\x83\xd2\x07\xa9\x26\x10\xd0\xae\x95\xf7\xeb\xe1\x1f\xc8\x61\xf1\x17\x1f\xba\xa8\xa8\xed\xac\x34\x6b\x51\x2b\xf1\xc3\xf0\x0f\x70\xc4\xfa\x34\x8f\x7d\xae\x8c\x27\x51\x13\xe6\x08\x83\x56\xa4\xbf\x99\x3f\x01\xa1\x0a\x65\xba\x32\x83\x47\xad\x8c\x6b\xd4\xa4\x34\x22\x06\xdd\x3e\x2a\x94\xeb\x96\x9f\x15\xa0\x46\x59\xdd\xa3\x36\xda\x4d\x3c\xcd\x9d\xe6\x26\xc1\xc1\xda\xc9\x6d\xa6\xb2\x53\xb3\xaa\x63\xa0\x76\x70\x97\x24\x64\xed\x3c\xbf\xbd\xd8\xc8\x1d\x53\xbd\x12\x83\xc1\x93\x1e\x16\xf3\xc3\xd9\xb8\x52\x11\x93\xad\x64\xc6\x51\x07\x8f\x37\x13\x81\x20\xed\x61\xfe\x1a\xbc\xdc\x0a\x00\xd6\xd4\x9c\xeb\x0a\x53\x51\x47\x4e\x09\x6c\xa2\x06\xc5\xb6\x79\x98\xa9\x87\x05\x0b\x6a\x80\x65\x3f\xcf\xb0\x51\x7d\x1a\x00\x8d\xdd\xdf\x27\x8d\xda\x45\xf0\x23\x50\x46\xda\xa8\x01\x3c\x28\x61\x51\x83\x24\xea\x96\x54\x89\x0a\x96\x07\x31\x93\x46\xd1\xc0\x1c\x74\xca\xd8\x19\x95\xc0\x40\x8a\xf3\x8a\x3a\x71\x46\x6b\x95\x51\xd3\xd5\xcf\x14\x71\xd3\x3f\xc0\xe2\xa0\x33\xbb\xb2\x50\x9c\x5c\xa7\xa2\xae\x24\x4a\x6f\x24\x4e\x10\xb2\xa8\x8b\xf8\x5e\x52\xb2\xa6\x32\x5e\x20\xb2\xd2\xec\xaf\xd3\xa5\x32\xd6\xe6\x23\x3f\x16\x11\xd6\xf4\x17\xdc\xcd\xba\x26\xd7\x9d\x69\xc1\xcd\x01\x3b\x8d\x29\x16\x18\x4c\x22\xac\x9c\x82\x51\x91\x34\xd8\x31\x41\x51\x91\x63\xc6\x5a\xda\xba\xf3\xba\xe5\xe9\xdd\x29\xef\x2d\x54\x76\xca\x5e\x4f\xd7\x01\x30\x2b\xd0\x54\xa1\x61\x1f\x02\x03\x15\xa5\xda\x9a\xaa\xa7\x44\xa5\x86\x5d\xd5\x50\xa2\x1e\xdc\xe4\x16\x3b\x50\x62\x54\xa5\xec\x8b\x7a\x90\x4f\xfc\xc2\xc9\x26\xfc\xc2\xf5\x72\xa2\x39\xef\x20\xbc\xf4\xae\x3f\xc1\xeb\xdd\xcf\x48\x7b\xa4\xe3\xbe\x9e\x39\x77\x1a\xe7\xc9\x3d\xed\x25\x3c\xc9\xdc\x9a\xed\x13\xbe\xe5\xde\x0c\x27\xc3\x36\xfd\x3e\xf7\x9f\x79\x39\xf5\x22\x5e\x51\xe4\x92\xf9\xf9\x84\x20\x64\xb1\x64\x82\x21\xa0\x29\xe5\x69\xd4\x0b\x81\x1b\x26\x81\x25\x2d\x96\x59\x82\xc9\x63\xcc\xeb\x2c\xb0\x36\xbd\x19\xae\x5c\x3d\xf5\x81\x10\x99\xe1\x79\x80\x2b\x80\x5c\xec\xa3\xde\xdc\x6f\xde\x5e\x37\xb2\x4c\x7a\x0b\xdf\x99\x7d\x53\xa3\xb8\x29\x24\x34\x91\x77\x4e\xa4\x5f\xe0\x79\x2f\x4d\x46\xbd\x93\x4a\x0d\x03\xa9\x83\x95\x20\x2f\xea\x8b\x73\xaa\xa2\x72\xa3\xde\x24\x5a\x44\xc2\x38\x31\xe6\x5f\x52\xfe\x44\x05\x26\x6a\x53\x86\xd1\x4a\xef\x00\x4f\xfb\x93\x5b\x51\xbc\x02\x07\xd0\x61\x2c\xf1\x90\x5f\xa5\x49\xa9\x89\x92\xa4\x3a\xa9\x0f\x6f\x5c\xe6\x26\x7a\x84\x2a\x29\x4f\x54\xe4\x15\x5e\x1e\xf2\x43\xf4\x28\x6e\x69\x0c\x79\x91\x0f\x4f\xb4\x5f\xae\xc4\xd0\x0f\x0c\x03\xaf\x7a\xce\x81\x4d\xfd\x80\x95\xf8\xbc\x30\x50\xeb\xc6\xcf\x10\xdf\xda\xa9\x0d\xa5\x8d\x6d\x56\x68\x8c\x96\x96\xf3\x64\xb4\x8d\xf7\x46\xad\x5c\x63\x54\xcc\x4f\x62\xad\x95\x0c\xc9\x16\x0d\x85\xc9\x18\xf4\x05\xd3\xf4\x79\x6d\x1b\x61\x90\x24\x50\x2b\x64\xe1\xd0\xf3\xe4\x07\xa2\xba\x70\xdf\x89\xa8\x82\xf8\xfb\xee\x1e\x79\x27\x0b\xb7\x48\x61\xb1\x99\x48\x6e\x82\xe5\x26\x71\xa1\xf1\xc0\xa9\xae\x11\x2c\x69\x15\x89\x3e\x24\x46\x1b\xc3\x91\x3d\x91\x2f\xae\xa9\xf2\xec\x8f\x06\x58\xa3\x64\x63\xd1\xe8\x23\x30\x3d\x2b\x88\x43\x51\xde\xd4\x68\x70\xa6\x54\x52\xd3\x68\x8d\x77\x38\xf7\x08\xef\xca\x21\x78\xd0\xd2\x65\x40\x62\xb9\xb5\x9c\x57\xff\x90\x88\x42\xec\xd2\x28\x76\x8b\x3b\x61\x6d\x0e\x6d\xab\xd6\xc8\xa4\xba\x0d\x34\x46\x9a\x28\xdf\x5c\x34\x22\x9f\x4d\xb2\xbc\xa5\xbd\x45\x2a\xbe\xd6\xb9\x9c\x22\xa3\x67\xaf\x9a\x7c\x04\x35\x0f\xcf\x55\xea\x63\xdc\xe2\x81\x68\x73\x77\x09\x20\x1e\xfe\xfe\x22\x09\xa2\x1a\xea\x18\x2b\x0a\x5a\xe7\x5c\xea\xff\x81\xe2\x2f\x12\x81\x6d\xe4\xb1\x29\x92\xe1\xa4\x30\x3e\xcf\x0d\xe9\xe0\xfd\x3c\x38\x04\x31\xd4\xe0\x10\xfc\x8c\xd5\x14\x1c\x68\x23\x27\x56\x53\x3f\x18\x98\xf8\x79\x83\x90\xc2\x7b\x19\x0e\x9a\x4a\xf9\x10\x8d\xd0\xcc\x8b\x17\xb9\x12\x22\x2a\x78\xbd\x30\x0f\x22\x6d\x9f\x85\x6a\x43\xb0\x8b\x32\x53\x46\xa3\x02\x46\xf8\xa2\xc1\xc4\xd3\xa6\x99\x94\xc8\x6a\xf3\x56\x65\x7a\x1b\xe9\x28\xdb\x9c\x7c\x41\x5d\x4e\xec\xc4\xe1\x0f\x70\x4a\x0b\x3b\xb4\x99\x32\x4d\x44\x2f\xf6\x29\xec\xd5\x56\x0a\x14\x11\xb1\x92\xc1\x34\xb7\xf4\x51\xd8\x24\xad\xdb\xa2\x3c\xd0\xcd\xad\xad\xc5\x37\xdc\x0b\x31\x8c\xf7\x06\x53\xc8\xa8\xba\x65\xb4\xc5\xb9\x30\x19\x30\x02\x9b\xe7\xf6\xa4\x53\x54\xec\x39\x37\xa2\x93\x7a\x1d\x0f\x1d\x85\xc8\x9a\x2a\x27\x44\x23\x16\xdb\x7e\x7f\xf2\x63\x68\x7b\x6e\x56\x91\x4c\x3d\xd1\x34\x45\x39\x6a\x0d\x32\x93\x03\x7a\x3d\x77\x9e\x99\x9b\x7f\x20\x17\x56\xd3\x0c\x05\xb0\x5d\xd2\x1a\xb3\x10\xdb\x02\xd0\xa0\x3a\xf2\x9d\xb6\x25\x74\xd3\x05\xb1\x11\xa9\xa9\x90\x63\xb4\x23\x7b\x15\xa1\xc8\xef\x37\x37\xcb\x77\x04\x4b\x17\xcb\x73\xc6\x4a\x2b\xdb\x59\xb4\x93\x43\xd3\xdd\xa8\x9d\x39\x34\xff\x80\xfd\x25\xdc\xd4\x00\xa4\x1c\x29\x18\xed\xc4\xee\x11\x0c\x6a\xd7\x8f\x2f\xe8\x0b\x00\xa5\x62\x0f\xab\x06\x8b\x92\xf2\xd3\x45\x83\x05\x69\xda\xa3\xa7\x5d\x64\xf6\xcd\x5f\xf0\x30\xd4\x85\xac\x41\xff\x53\xec\x4f\xd5\x60\x42\x52\x1d\x96\x68\x74\xbb\x9c\xde\xa2\x57\xce\xb7\xde\xa0\x86\x48\x40\xa3\xdd\x0c\xfb\xd0\xc0\x51\xff\x4b\x39\xd8\xa2\xdd\x54\xe7\xe8\x5e\xd9\x18\x0c\xe3\x71\xc2\xe8\x34\x0c\x22\xe0\x8b\x59\x7e\xe6\x5b\x14\xaf\x1d\x06\x15\x28\x18\x56\xec\x7f\xd5\xee\x5c\x3f\x77\x81\xbd\x62\xb9\x72\x63\xfd\x36\x1f\x96\x08\xa7\x19\x3e\x4c\x53\xe7\xa4\x8b\x68\x7b\x60\xcb\xb0\xf8\xa4\x0e\xca\x52\x81\xf0\xca\xb2\xf0\x49\x9e\x12\xd1\x0f\xf5\x3f\xcd\x3f\x90\x01\xcc\x86\x99\x2c\x50\x3b\xba\xff\xa0\xf3\x94\x3c\xed\x3f\xcc\xa4\x44\x42\x47\x81\x2f\x65\x01\x8a\x0e\xa8\xa4\x14\x3c\xd1\x19\x5f\x63\x97\xb0\x8e\xc4\x30\xa1\xa5\xe9\x30\x75\x29\x1f\x4e\xf4\xdf\x8d\x67\xbd\xbf\x51\xd9\x27\xa6\xed\x48\x03\x58\xec\xf0\xd5\x11\x2d\xa3\xcc\x32\xd1\x11\x1d\xf3\x53\x85\x97\xe8\x1b\x23\x53\x74\xbd\xee\x1b\x35\x44\xd3\x4d\xe0\x3a\x57\xfd\xc5\xbb\x9a\x36\xa4\xf6\x0d\x75\xfe\x74\x0e\xf5\x8d\x44\xfa\xf9\x81\xda\x5f\x44\x33\xe7\xf2\x26\x88\xd0\x59\xce\xd6\xf7\xaa\x5e\x98\x2d\x76\xf9\x07\x06\xdb\x69\x98\xc0\x77\x73\x13\xa8\xe8\x08\xb8\x51\x82\xf7\xe8\x25\x0b\xf8\x6b\x10\xf0\xe1\x2c\xf6\x42\xeb\x85\xb5\x4d\x34\xec\x17\xf0\xbd\x2f\x68\x58\x25\xaf\x07\xa6\xfb\x40\xde\x5c\xbf\xc0\xc5\xd2\xea\x16\x14\x0f\x94\xfc\xef\xf5\x07\x17\x2e\x3f\xa3\xb4\x84\x40\x4b\x87\xda\xcb\xd2\xa2\xbf\xf8\xaf\xf8\x7c\xe8\x35\xb9\x43\x13\x09\xaf\x50\x1b\x58\x7a\x9d\xff\xfe\xd3\x54\xe8\x21\x7a\xcd\x21\xf8\x07\x98\x1c\xc5\xe2\x1d\xe9\x68\xaa\xa7\xb1\x72\x04\xa6\x88\xa2\x43\xb7\xcd\xde\x72\xa9\xd4\x62\xa3\x88\x73\x93\xa8\xdd\xa0\xbc\x2c\xd1\x61\xab\x8b\x3f\x95\x8a\x88\xde\x72\x51\x44\x40\xa3\x3c\x2c\x6e\x7e\xa1\x39\x0d\xb9\xed\x78\xd6\x9a\xc0\xd4\x67\x55\x74\x6f\xcc\xa4\xea\xff\xb1\x81\x36\x0f\x28\xa5\xa5\xa6\x00\x71\xcf\x36\xa8\xf7\x9e\x23\x16\x49\x1d\xce\x12\x66\xc5\x04\xa7\xd5\x3f\x20\xb5\xaa\xd9\xa4\x73\x50\x66\xef\xce\x0b\x8f\x68\xe8\x1c\x83\x96\x15\xd1\x41\x61\xce\x44\x74\x90\x62\x57\xa3\x23\x3a\xc8\x8a\xea\xde\xa9\x14\xf6\x86\x42\xbe\x9d\x62\xd7\xbd\x8e\x1a\x66\x4a\x31\x18\x7d\x6c\x7c\x41\x5f\xbc\xe8\xb4\x2a\xc0\x36\xfa\xe0\x2a\x6a\xda\x47\x87\x36\x4b\x24\x02\x9c\x1a\x17\xf6\x11\x78\x5f\x93\x34\xb8\x4c\xfe\x1f\x45\xe1\x4d\x32\x82\xac\xc3\x53\x02\x25\xa1\x53\x2f\x45\x47\x68\x51\x7c\x46\x40\xac\xa4\xbd\x01\xef\x5a\xab\x3d\x3a\x95\x88\xca\xcf\x1b\x3d\x72\x59\xd4\x02\x90\xaa\x0d\xb0\x1d\xc6\xc6\xf8\x3c\x77\x9e\x30\xfe\x00\x9c\x5b\xdc\x45\xfc\xfb\x4f\x2d\xde\xae\x50\x3b\x86\xe7\x90\xee\x4d\xca\x76\x1a\x9d\x99\x20\x15\x59\x12\x1d\xd6\x47\x1b\xf0\x3b\xdd\x75\x95\x9a\x34\x3a\xac\x8d\x61\x5e\x43\xbe\xe9\x62\xbf\xc1\x3e\x31\xaf\xde\x0e\x13\xac\xe3\x75\x78\xb1\x70\xb5\x57\x5f\x47\xb0\xd1\xdc\xaa\x7b\xb8\x61\x4e\xf2\xf3\x83\x67\x75\x90\x58\x59\xc7\x68\x47\xc2\x1f\x1b\xb4\x3a\xea\xf3\x86\xb9\x7d\x25\x89\x6a\x71\xd1\x46\x66\xa9\x84\x54\x8b\xe1\x85\x58\x3c\x46\x4d\x34\xea\xf3\x5a\x35\xda\xf7\x5c\x3a\x8d\x12\x61\x42\x61\xee\xd9\x79\xd6\x77\xff\x80\x73\xd4\x13\x0d\x10\xaa\x32\x6b\xd1\x69\x9c\xdc\x84\xfe\x3a\x12\x27\xda\x7b\xbe\x1f\xe0\x7f\xef\xa0\x83\x3d\x6a\x50\x34\x56\x4e\x9f\x48\x07\x7b\x14\x89\x07\x2f\x0c\x82\x93\x1d\xfe\xbb\xf1\xe9\x71\x41\x98\x8b\xe4\x83\x10\xc8\x4b\x89\x4c\x8a\x3f\xd5\x12\x8f\x7e\x70\x5a\xb4\x96\x07\x80\xb4\x85\xf5\x99\xa7\xa4\x3e\x40\x90\x50\xf8\x3c\x3a\x39\x08\xcd\xf3\x99\xd3\xa6\x51\x21\x96\xbb\xfb\xc0\x3a\x09\x47\x2d\x0c\x4f\xba\x00\x6a\x50\x80\xc4\xf1\xf9\x9f\x01\xe9\xdd\x5d\x80\x66\x61\xcf\x7e\xd2\x67\xd4\xd8\x00\xca\xc5\xb9\x79\x93\xc0\x20\x1a\x9f\xe7\xca\x17\x44\xe4\x8b\x99\x8b\xea\xaa\x45\xbf\x00\x58\xcc\xe2\x17\x4d\x16\x9f\x17\xe8\x39\xe6\x16\xb1\x67\xda\x5f\x82\x5e\xa3\x23\x8b\xb5\xfd\x3a\xfa\x95\x23\x74\x77\x54\x04\x7c\xde\x00\xba\x11\x4a\xec\x37\x97\x45\x48\xb5\x03\x5e\x2f\x8f\x10\xf0\x3a\xdc\xc0\x9d\xbc\xa5\x59\xa6\xa6\x72\x33\xb3\xc1\x20\xab\x98\xfb\xe8\xac\x0e\xa2\xaa\xf1\xd1\x91\x27\x71\x6e\x9f\x26\x78\x70\x5b\x98\x3d\x2f\xe6\xb7\x7b\x79\x7f\x28\x2f\xcd\xf1\xc8\xbe\x63\xbb\x73\x7f\x28\xcd\x3e\x2f\x60\xed\xbd\xe7\xe0\xd7\xe5\x50\x83\x41\xbf\x2d\x25\x27\x8d\x81\xd0\x23\x07\x02\x8c\x1f\x35\x20\xba\xfd\x0c\xfa\x66\x6f\x9f\x2f\xc8\xa0\xc3\x9f\xe4\x4c\x74\xfd\x40\x1f\x54\x1d\x54\x03\xae\xd7\x76\x73\x1e\xa9\x3c\x14\x99\x03\xf1\x49\xf6\x49\x1f\x3f\x2e\xe8\x70\xa7\x60\x59\xb1\xcf\xf8\x91\x43\xb5\x4b\x46\x42\x68\x49\xe5\xb1\x25\xdd\xfe\x81\x28\xc5\x9d\x6e\x39\x79\xea\x75\xa3\x75\x6f\xf8\x0d\xe2\x0e\x77\x8b\xa8\x24\xbb\x4a\x8f\x42\x60\x55\xfd\x03\x04\xaf\x4e\xc0\x51\x78\xd5\xf7\x40\x10\x52\x5e\x1d\x96\x34\x0a\x0e\x65\xf1\xc0\x28\x24\xd3\x44\x24\xc4\xad\x7e\x83\xaa\x38\x8f\x0c\x1e\x65\x76\xb2\x1c\x95\xfa\x1f\x53\x41\xcb\xec\x26\x2d\xf5\xa8\x24\xd3\xcf\xbc\xcc\x7b\x60\x2c\x54\xdb\x3f\x6f\x60\x85\xa4\x95\x1c\x95\x67\x96\xfb\x68\xbc\x57\x4b\xfe\x8f\x46\xe6\xd5\x51\x3c\x1a\xb6\x98\xe4\xd4\xa0\xf5\x75\x7a\xe8\xb0\xbe\x96\x5f\x75\x9b\x74\x7a\xf0\xc8\x88\x53\xc3\x5f\x50\xe7\xf0\xf9\x81\x1a\x43\xd3\x99\x8a\x4c\x73\x2b\xb0\xe6\x67\x60\xc4\x96\x9f\x15\x82\x5b\x99\x0f\x91\xd1\xb9\x84\x3a\xa7\x46\x1f\x70\x64\xf3\x0b\x38\x44\xc2\x0d\xe4\x82\xa9\x0b\xa8\x29\xe3\xd3\x40\xee\x7b\xcd\x4c\x16\x9f\xd5\x65\x7f\x8c\x5c\x0f\xb5\x49\xe8\x16\xfe\x02\x4d\x4a\xc3\x33\x06\x79\xc2\x5c\xc3\xc8\xa7\x2d\xfc\x03\x75\x2b\x5e\x30\xa8\x11\xed\xd9\x33\x52\x8d\xe8\x99\x41\xce\x1c\xfb\xd5\x8c\xa0\x08\xf4\x6a\x10\x7b\x09\xde\x0d\x62\x2d\x9d\x7d\x23\x90\xd4\x77\xb9\x47\x64\xf2\x6a\xee\x80\x83\xf0\xff\x70\x0f\xf1\xda\x05\x12\xb0\xcb\x80\x30\x26\x29\xd6\xf7\x93\x2e\xff\xd2\x81\x8c\x09\x1b\x98\x47\x80\x4a\x21\x76\x59\x18\x93\xd9\x3c\xd4\x41\x22\xb7\xea\x17\x58\x12\x52\x23\x42\x9a\xed\xdf\x9f\x52\x31\xc4\x98\x1c\xbe\x5b\xc7\x96\xf9\x50\x87\x33\x48\x77\x92\x41\x53\xb1\xa7\x13\x39\x19\x95\x02\x23\xc6\x4a\xc6\xd3\xfc\xc0\xc3\xcc\xd6\xec\xb1\x10\x3e\x65\x36\x5a\x88\x3e\xf8\x34\x48\xd5\xf2\xa7\x47\xda\x32\x44\xe1\xe2\x15\x44\xf8\x67\xd0\xa7\x5d\x55\xe8\x63\xa4\x72\x53\xca\xe6\xb1\xc3\x04\x13\xfe\x82\x3e\xe5\x26\x6a\xa7\x10\xfd\xbc\x81\x55\xf4\xf9\xb1\x53\x74\x9b\x77\x0f\x2c\xab\xd9\x04\x85\x63\x55\xf8\x30\xc6\x41\x05\xa8\x27\xe6\x40\x4d\x56\x9f\x59\x47\x76\x29\x1a\x0e\x28\x97\xbd\xe1\x4e\xde\xa4\x84\x78\x06\x40\x98\xcd\xce\x83\x8e\xee\x9e\x87\x93\xfb\xcf\x83\x38\x51\x42\x46\x00\x7b\x9c\x2c\x68\x20\xd6\x3c\x29\x88\xbc\x59\x10\xc9\x55\x2c\x14\x98\x3e\xc7\x5e\xbd\x83\xd5\x43\xa6\x89\x06\x2a\xb3\xe5\x7b\x24\x2a\xf3\x49\x71\x91\x68\x3f\x53\x6a\x78\x7f\x5c\x03\x2f\x88\x86\x17\x74\xd5\x4d\x96\x85\x71\x11\xf4\x7b\x5e\xa0\xa6\xb4\xcb\xc5\xb8\x50\xcb\xc3\x82\x0b\xa8\xc9\x16\xe2\x71\xc1\x99\xd5\x1c\x7d\x53\xe6\x7b\x47\xbf\xb0\xaa\xdb\x58\x3b\x6e\x86\x24\x88\x82\x1b\xb7\x6e\x0b\x78\xd8\x83\x6d\x6e\x1d\x77\x2e\xb5\x5f\x08\xbc\x20\x7e\xbc\x79\x3a\x5a\xc6\x20\x43\xa2\xed\x9a\xe3\xa6\x3e\xd0\x13\x7f\xe7\x3c\x6b\xd0\x2f\x0c\xab\xaa\x7e\x16\x83\x29\x11\x1d\xf6\x33\x1e\x8a\x15\x33\xe0\x83\x13\x41\x0a\x97\x81\xa4\x40\x9f\x93\xee\xa1\xca\x47\x60\x71\xc0\x73\xee\xc3\xc1\x4f\x4e\xbc\x86\x05\xf7\x7b\xc7\x43\x8d\x27\x89\x14\xd5\xf0\x8c\xb3\x46\x24\x7e\x49\xe4\xd0\x0f\x1b\x40\xbf\x5f\x68\x68\xb1\xea\x39\x69\x9a\xfa\x01\x33\xf9\x69\x71\xe2\x79\xd3\x33\xe2\x84\xc2\x0d\xe4\xc6\x0e\xfd\x70\x30\xbc\x44\xcf\xf4\x46\xed\x7a\xa6\x82\x43\xb2\x23\x12\x92\x49\x47\x19\x1b\x81\xa2\x04\x78\x6c\xd4\xe6\x4b\xd5\x1a\x1b\x2f\xe3\xd3\x6d\x70\xa2\xdc\x04\xaf\xa5\xda\xfb\x01\xb5\xa5\x57\x33\xa0\xb6\x34\xf4\x09\xe4\x00\xb2\x23\x7b\xa4\xeb\x9d\x36\x45\x14\x4e\x9c\x3f\x20\xf2\xd1\x51\x1b\xf0\xac\xb3\x85\x38\x0a\xef\x16\xd3\x2d\xd0\x76\xa2\x6d\x14\x85\xe7\xbb\x24\x5c\xb0\xf8\xeb\x34\x15\x95\xa2\x5d\x3b\x29\x2a\xed\x88\xe2\x90\xa8\x64\x19\x1d\xcf\x91\x5a\xc1\x3f\xd9\x8c\xa2\x12\xe4\x68\x1a\xe1\xef\x5f\xec\xcd\x1c\x95\x8b\x65\xfe\x01\x7c\xb3\x91\x29\x1a\x17\x4f\xa0\x3e\x12\x8b\xe9\xb4\x0f\x96\x77\x0d\xb7\x00\x06\x2b\x7e\x26\x14\xd3\x56\x8d\x96\xd3\xa2\x26\x7b\xf6\xa1\xc5\xeb\xdc\xdd\x92\x68\x01\xa5\x9b\x6d\xcc\x01\xa5\x9b\x8d\xa7\xd1\x73\xdf\xf8\x87\x1c\x97\x7e\x80\x12\x6d\x48\x22\xc5\x28\xff\xfe\x13\xd3\x4c\x3a\x2a\x7c\xd3\xb5\x98\x83\xb7\x1b\x73\x20\x02\xf0\xac\x44\x8b\xc1\x62\x62\x22\x29\x9d\xf1\xcc\x0e\x70\xc6\xb3\x51\x3b\x06\x4b\x4c\x98\x25\x07\x07\xe1\x67\x5e\x76\xcc\x0c\x41\xb1\xda\xfd\x43\xe1\x30\xfd\x03\x78\x52\xd7\x8e\x60\x55\x35\x27\x7c\x88\x20\x3c\x97\x08\x0a\x66\xe1\xb1\xf3\x78\xc0\xe6\x3b\x8b\x9b\x7c\xf0\xac\x61\xc0\x06\x1c\xce\xaf\x10\xe9\x54\x2f\x34\x11\xc0\x37\x36\xd8\x06\xf0\xcd\xd4\x3d\x25\x90\x00\xc7\xc6\xd8\x60\xc5\x10\x9b\xe6\x82\x8e\x6f\xf6\x39\x8d\x45\xab\xc6\xf2\x1b\x94\x07\xd2\xf7\xc7\x62\x1f\x9a\x3b\xc6\x98\xab\x7a\x6a\x04\x0a\xb6\xda\x9c\x1b\x54\x53\x15\xcf\x0c\xd4\x52\xb3\x78\x5c\x3b\x52\x5b\x78\x58\x3b\x17\xd4\x4c\x08\x73\x6a\xf3\xed\x29\xf6\xac\xb4\xec\x26\x10\x10\xfb\x21\xe2\xc2\x4d\xc7\xff\x53\x42\x0c\x37\xc9\xad\xa0\x73\x2e\x0e\x92\xad\x2e\x0e\x22\x16\x33\xcd\x01\x3e\xb5\x98\x3a\x08\x5d\x4d\xd4\x81\xc3\x5f\x50\x36\x32\xdf\x8d\x39\xe0\x20\xcf\x68\x81\xe1\x37\x67\x9b\x65\x1c\xdc\x3a\x16\xf8\x28\xa6\x6f\x03\x6f\x9c\xbc\xec\x5a\xaa\x20\xef\xb4\x6d\x98\x91\x8e\xf7\x16\xe7\x84\x34\xc2\x3c\x71\x51\xeb\xe2\xe5\xbc\x28\x01\x84\x48\xe3\xca\x61\xf9\x0d\xf6\xa1\x71\x13\xc3\x58\x3d\x1b\xa8\x1b\x6b\xed\x6c\x40\x37\xe4\x9b\x52\x00\xd3\x58\x55\x1a\x77\xf2\xb5\x88\x82\xe6\xe7\x33\xf5\xd0\xfc\x4c\x1f\x9c\x77\x32\x8c\x48\xb8\x59\xd6\xce\x1f\x50\x76\x5b\x32\xbe\xa0\xa5\x3a\x2d\x45\x30\xc9\xcd\xf0\xff\x3b\x5b\x74\x0b\x27\x7f\x30\x91\x4c\x7c\xe0\x67\xb0\xbd\x4f\x52\x68\x8e\x6c\x7c\x88\x87\x6a\x1d\xcb\x5a\xd6\xcb\x77\x58\x5a\x20\x8f\xb3\x9d\x46\x22\x3d\xdd\x2c\x8c\x1f\x9a\x83\x05\x79\x03\x96\xd5\x59\x04\xad\x02\xba\x24\x5f\x8c\x27\x2a\xd1\xfe\x56\xfd\xcb\x89\x34\x51\x7f\x6d\x96\xcd\x5f\xe7\xac\x0d\xfd\xb0\xf8\xc6\xa6\x1f\xd8\x9f\x9f\x2f\xbe\x50\xf4\x03\xb7\x95\x20\xf4\xdc\xb8\x6b\x74\x26\x4d\xd4\xdb\xb0\x7a\x6c\x22\x82\xdf\x1b\x77\xc2\xae\xba\xc9\x02\x32\xb7\xa4\xa1\xea\x07\x1e\x9c\x82\x45\xb3\x60\xa3\xea\x20\x9d\x05\xc6\xe4\xf0\x33\x45\xb5\xce\x8f\x99\x2a\xa2\xcf\x1b\xa8\xc8\x62\x9a\x60\xf4\xb4\x45\x7b\xd2\xd7\x5f\x77\x91\x49\x4f\x7d\x95\xf4\x88\x59\xb9\xd8\x92\x58\x13\x95\x67\xed\x83\x38\x2b\x62\xc8\x25\xda\x67\x6a\x77\x74\x47\x9b\x70\xa5\x5f\x8e\x41\x9c\x00\x17\xd6\xf1\xcd\xfa\x30\x41\xcc\x7f\xcf\x50\xd5\x84\x73\xcc\xcc\x54\xd5\x08\xaf\xcc\x86\x63\xb2\xfb\x85\x20\xd5\x7e\x21\xf9\xcb\x6f\x10\xca\xe9\x28\x9e\x0d\xb7\xd3\x4f\x93\x2c\x97\x28\x09\x35\x3b\x1d\x08\x65\x90\x9a\x09\x20\x04\xe6\x26\xf0\xc0\x72\x30\xe5\x84\x15\x4e\x25\xfb\x62\xf6\x64\x19\xcd\xcd\xe0\xf2\x98\x25\x06\x42\x31\x4c\xe6\xa0\x0b\xca\xf2\x0b\xdc\xbd\x9b\xdf\x40\xca\xaa\xe1\x17\x60\x23\xd0\x66\x9e\x50\xc5\xc4\xf7\x07\x1c\x5a\x26\x2a\x50\xc3\xe7\xf3\x0c\x48\x2a\xad\xe3\x0c\x78\x31\x7a\xa2\xa0\x37\xb1\xb2\x6e\x22\xc3\xcc\x72\x3e\x98\x39\x29\x67\xb5\xde\xc8\x87\x67\x85\xe1\x84\xdb\xbb\xbd\x8f\xe7\xcc\x21\xa9\xc7\xc9\x1e\x34\x24\x86\xc7\x99\xa3\x78\xd4\x4b\x73\x3a\x27\x15\x09\x1e\xc2\x7b\xf6\xd7\xe6\x6d\x82\xec\xc3\xa5\xfa\x99\x42\x55\xc0\x7e\xc2\x42\x65\xdb\xcf\x5c\x81\x04\xca\xa2\x88\xe9\x67\x0c\xe4\x26\x0c\x56\x56\x1e\xce\x45\xe9\x50\xfc\x03\x95\xb7\xcb\x34\x11\x2b\x08\xa1\xce\x3d\x85\xa4\x56\x12\x26\x2c\x6b\xdd\x66\x62\x05\x33\xdc\xce\x18\x56\xf5\xb1\x93\xa9\x25\x77\xe7\x8b\x15\x8a\xbd\x8d\xe6\x4e\x2a\xfd\x4c\xa6\xff\xbc\x80\x30\x2d\xe7\x34\x9a\x48\x5b\x63\x2d\xdc\x3c\xf2\xbc\xd2\x4c\x1c\x49\xb5\x26\xff\xe0\x2e\xb0\x24\x45\x22\x80\x35\x3e\x9f\x60\x73\x0a\x7e\x4c\x78\x66\x59\x81\x32\xe9\x98\xa5\xc2\x95\x31\x51\x79\xd5\x77\xe6\x49\x47\x2d\x7b\xe1\x4f\x64\x0e\xb0\xf2\x62\x1e\xc9\x00\xea\x92\x2a\x17\xb3\x1c\x6a\x58\xf8\x82\x3b\x11\xc5\xa7\x82\x24\x31\x4f\xda\xdf\xa7\x3f\xc8\x7d\x27\xa2\xcf\x3c\xf9\xfd\x06\xe6\xd6\x82\x15\xb9\x72\xe6\xf8\xd3\x0d\x69\xa6\xfa\x45\x08\x6c\x9e\xc9\x2e\x9a\x45\x64\x22\x50\x55\x8d\x98\xa8\x68\x6f\xed\xe7\x4c\xec\xe2\x5d\x74\x71\xda\xbd\x94\x70\x24\xb3\x12\x69\x5e\x3c\x03\x75\x35\x98\x17\x2f\xe9\x16\xcc\x04\x33\xde\xe9\xe9\x47\x66\xe1\x73\x71\x9e\xcd\xd4\x69\x97\x12\x6a\x9b\x37\x8d\xfe\xba\x5e\x4c\xaa\x50\x2c\xd0\x50\xd5\xde\xd6\xe8\x99\x6e\x5e\x9e\xe8\x9b\x8b\xef\x06\xe0\x6c\x21\xd0\x36\x1f\x1c\x71\x4a\xcd\x1b\xf3\xa1\x0c\xf5\x5c\x3e\x1c\xb8\xbf\xc8\x71\x8a\x06\x94\x78\x6d\x4a\xdb\x17\x93\xa1\x83\xf6\x05\x9f\x48\x11\x34\x2d\xd9\xe1\x13\x3f\x7d\x51\x9b\x4f\xce\xc4\x7f\xe3\x58\x2c\x01\x66\xc7\xaf\x95\x2a\x92\xa6\xe7\xa4\x62\xea\x07\xcc\x8c\xae\x44\x8b\x56\xa7\xf1\x69\x81\x76\x78\x75\x81\x2c\xc7\xb3\xe8\x5c\x5c\x48\x93\x67\x3c\xb1\x88\x37\x74\xa1\x59\xc8\x10\x64\x49\xbf\xb6\x9c\xeb\xa5\x1f\xb8\xf3\xaa\xbf\x38\x39\x0a\x37\x89\x13\xcb\x6e\xd5\x8b\x39\x0c\x1c\x2e\xbd\xca\x8f\x6f\xa8\x0d\x1a\x9d\x1c\x0b\xba\x0a\xe5\xbf\xc8\xa0\x49\xc9\xee\xbc\xab\x80\xef\x74\xd9\x5f\x28\xd7\x60\x70\xb8\xe0\x34\x65\x78\xb9\xe0\x25\x5f\xec\xee\xbb\x0a\xcf\x38\x01\xa7\xf5\x82\x94\x69\x35\xcb\x62\xf8\xe0\xf2\x17\xf4\x93\xb7\x6b\xd7\x42\x00\x60\xd9\x7e\xfe\x01\x93\xa5\x63\x6e\xd5\xe4\x11\x51\x55\x11\x5e\x2a\xf4\xb6\x10\xff\xd7\x94\x90\x37\x56\x65\x6e\x1b\x0d\xb3\xe6\xd4\xa9\x85\x06\x34\x27\xc9\xb9\xda\xf6\xef\x3f\x61\xdf\xfb\x85\xb4\x07\xcb\x51\xdf\x8b\xb8\xc7\x3e\xc8\x0b\x6a\x91\xa6\x74\xbb\xb1\xe0\x5b\x1f\xbf\x4f\x1f\xf1\xb6\x29\x49\xb8\xe0\x2d\x65\x64\xbe\x1a\x16\xa3\xf8\x7d\x1e\xc6\xba\x37\x2f\xe4\x46\x2a\x76\x73\x5e\x48\x97\x5c\xec\xd5\xbc\xfa\x2b\xaa\x2c\x68\x56\xdf\xf8\x82\xc6\xd1\x71\xb0\x49\x8c\x2c\x16\xa6\x75\xb0\xfa\x82\x6b\xbe\x11\xe2\x42\xd4\xa2\xed\xad\xab\x73\xab\xf8\x79\x92\x48\x2d\x16\x35\x35\xcb\x24\x5c\x08\x62\xd4\xa8\x01\xbc\x6c\x9a\x59\xf0\xc4\x9f\xfe\x7f\x70\x25\x44\x10\x7c\x9d\x1c\xaa\xb9\x46\xc7\x66\xd6\x2c\x0d\xe2\xcb\xea\x17\x50\x23\xd3\x6b\x3d\x92\xc7\xdd\xc3\xc1\x31\x6b\x0c\x83\x89\xfa\xf4\x02\x9d\x91\x8a\x6e\x5d\x0b\xbe\x44\x56\x57\x2e\xf8\x0e\x85\x5d\xfb\x56\x70\xd0\x5a\x29\xd6\xb2\xb7\x9f\xf5\x8a\x94\x28\x7f\x3a\x93\x56\x70\xab\x5b\xfe\x50\x27\x23\xc9\xbc\x60\x00\x73\x86\xca\xc5\x5a\xf9\xcd\xff\xa3\x1c\xbf\x8e\xa8\x05\xfb\x96\x1d\x3d\xd6\x24\xbd\x9a\x44\xa6\x3d\x5e\xa6\x17\x89\x97\x5c\xe0\x3f\x16\x80\x9f\x4a\xbe\xc7\x9a\x48\x1e\x6d\x3e\x79\x81\x5f\xb5\x09\x6a\x2d\x72\x9e\xe5\x00\xc2\x1f\x3f\xe9\x10\xd7\x02\xbe\xb6\xc8\x5c\x29\xac\xb4\x2c\x50\x02\xb5\xe5\x59\xa0\x57\xff\x32\x51\xb4\x7b\x59\x1a\xad\xa4\x5a\xe3\x82\xaf\x92\x8f\xf2\x45\x2b\x56\x91\x2a\x63\xd1\xa7\xde\x2d\xc0\xa5\xde\x87\xe8\x22\xae\xb3\xa7\xf3\xda\x79\x31\x14\x3e\x5d\x04\x76\x16\xe4\x3b\xb9\xab\xf8\x85\x17\x21\xf9\x90\x5c\x3b\x37\xad\xb7\xdc\x0b\xec\xc2\x79\x89\xd6\x81\x9c\xe7\xde\x72\xf0\x6e\xf2\x11\xb9\x0e\x82\xd1\xe6\x1f\x72\x5e\x34\xd7\x47\x2e\xa7\x86\xc5\x82\xf9\x52\x9e\x2c\xa8\x78\x54\xd0\x3f\x16\xca\xe5\x17\xc1\xfa\x85\x4a\x14\xaa\x44\x17\x8b\x20\x4e\xea\xd6\x75\x72\x87\xe8\x46\xb6\xe8\xac\xe4\x7c\x11\xeb\xe4\xb6\x34\xcb\xb1\x16\xd9\x47\x48\x23\x45\x94\x43\x70\x17\x0b\x4d\x38\x93\xec\x82\xa5\xcc\x09\x23\xd6\x99\x13\xa7\x89\x81\x16\xe9\x43\xe5\x45\xcf\x78\x8d\xe2\xca\x93\xc5\x3f\x74\x74\xa9\x16\xe9\xd0\x5f\xa4\x33\x5a\x2c\x9b\xef\x2e\xaf\xa4\xc9\x2f\xf0\xbc\xfb\x34\xc9\xf3\xce\xcb\x7d\xd1\x45\x4f\x2f\xd0\x34\x66\x77\xe9\x05\xd3\xd8\xb2\x48\x46\xf5\xb0\x62\x67\xe8\x75\x73\xbd\xdd\x42\x43\xfe\x1b\xcd\xe4\xcd\xf3\x51\xd7\x97\x85\xe0\x49\x2b\xf9\x17\x80\xde\xe7\xf4\x83\x43\x92\x63\xdd\x16\xd4\x4e\x6b\x7c\x1a\x38\x38\x08\x93\x70\xa2\x05\xb7\xc8\xcb\x89\xbf\x40\x25\xd7\x66\x89\xf8\x70\xbb\xeb\xe2\xb0\xa8\x45\x52\xb5\xae\x58\x00\x76\xb6\xd7\x2d\xba\xe7\x6f\x3a\xee\x76\xc0\x36\xdf\xd8\x77\xa6\x80\x70\x7e\x8f\x1d\x0e\x48\xcd\x69\x76\x77\xa8\x92\xaa\x01\xea\x8e\x52\xae\xc5\xbe\xec\x3b\x6c\x5b\x16\x6b\x3b\x54\x4b\xcd\x89\x79\x77\x26\x48\x2e\xba\x21\xef\xa8\xf5\x6a\x9c\xbd\x27\x14\xd4\x38\x76\x38\x20\x59\x28\xed\x80\x86\x0e\x03\xdc\x59\xea\xd5\x69\x79\xf7\xad\xa1\x94\x93\x9f\x29\xe7\x74\xe9\xda\xb7\x40\x4a\x65\x3f\x23\x63\x83\x36\xe7\x9e\xd0\xb0\xfb\x07\xd4\xdf\x99\x7e\xc6\x8d\xc5\x79\x7e\x77\x78\x27\x79\x27\xed\x85\xc7\x85\xc6\x50\x72\xb5\xfe\x14\x0b\xbb\x97\x9c\x55\x4d\x5a\xe1\xe9\x26\x71\xb1\xd3\x11\xc9\x29\x7e\x77\x58\xc2\x6a\xf5\x33\xb7\xae\xf0\xf2\xce\xda\x16\x76\x54\xdd\x51\xbe\xe2\xb3\xb6\x70\x5d\x2a\x92\x0e\x7b\x05\x4f\x7b\x88\x95\xb8\xa3\xbb\x01\x2e\xad\x58\x74\xaf\xc9\xe5\x62\x06\x78\x2e\x7d\xd6\x1e\xb6\xb1\x3a\xdc\x05\x15\x07\xfe\x1f\x82\xdb\x0b\x49\x5d\x98\x36\xee\x0e\x4b\x99\x2d\x90\x3b\xdc\x9a\x9c\xc8\x62\x47\xd5\xaf\xcf\xa4\xb4\x94\x91\x1a\x63\x42\x46\x73\x78\xa3\x49\x49\x14\xa5\xee\x4c\xca\xb4\x9d\xba\x33\xfb\x28\xef\x70\xb0\xff\xb6\x70\xb2\x49\x37\x01\xef\xf3\x70\x9f\xc8\x10\x2c\x3d\xc4\x9e\xba\x35\x11\x0d\x07\x7a\x7b\x20\xef\x9d\xc2\x46\xf8\x6e\xef\x94\x99\xba\x0b\xed\x9d\x2b\xa3\x69\xe8\x3c\x21\xbb\x9b\xa4\xde\x52\x22\x71\xef\xc9\x2e\x22\xa2\x53\x21\x23\x84\xbf\x0f\x4c\x6d\xf5\xc6\x1d\x74\x07\x57\xa7\x23\xc9\x52\x13\x09\x03\xa5\x06\xda\x07\x67\x46\x03\x49\x6d\x9d\x10\xcc\xce\x00\x4c\xef\xaa\x91\x54\xa9\x0f\xf8\x45\x39\x2d\xec\x1e\xac\x2c\xa2\x16\x83\x1b\xd9\x1b\x15\x29\xa2\x1d\x9f\xb9\x07\xcf\xe5\x4f\x0b\xa4\x49\x13\x41\x6b\x5d\xb8\x01\xc8\x16\xef\x92\xc4\x81\x5e\x8d\x17\x07\xba\x64\x4b\xec\x33\xb7\x91\x7a\x98\xc8\xbb\x2f\xe4\xba\x4f\x1e\xd4\xa6\x09\x25\x33\x1c\xa9\xb5\xa3\x62\xc6\x26\x83\xc2\x8e\x9c\x9d\xe1\x7c\xba\x3b\x3c\xa1\xd6\x30\xd1\xf0\x6e\x72\x8e\xd7\x3d\x75\x86\x66\xa9\x49\xf1\x60\x22\x16\x6f\xcb\xc2\xfc\x7b\x82\x43\x73\x1d\xca\xd2\x3a\x0c\x79\x07\x58\x8c\xe5\x16\xb8\x75\x3c\x33\x48\xeb\xe9\x94\xae\x3b\x3c\xa2\x9c\x7f\x75\x5f\x60\x4a\x5d\x7c\xf7\x45\xa2\x35\x0d\x2b\x67\x56\xa3\x62\x35\x0c\x1d\x4f\x3b\xa3\x3b\x3f\x6b\xc5\xe0\xcd\xcf\xe2\xec\x58\x4c\xaf\xcd\xce\xdc\xa5\x1a\x13\x93\x74\x39\x54\x6b\x47\x52\x2e\x07\xb1\xef\xc8\xc9\x65\x60\xb8\xc3\xf4\xe7\x3c\x9f\xfb\x91\x3d\x6a\xa6\x11\x69\xb9\xc6\xe7\x07\x8e\x5a\x34\x32\xf2\xd2\x29\xc9\x77\xe8\xf7\x7c\xff\xdf\xe9\x20\x35\x3e\x3f\x50\x9b\x12\x6e\x12\x47\x87\x80\xdd\x7e\x92\x08\x3f\x37\xfc\xaf\xf7\xa1\xce\x53\x25\xc3\xd8\x4f\x82\x76\xcf\x34\x6c\x83\x0e\x10\xde\x4f\xa6\x4d\xd7\x05\x6e\x3f\x79\x3f\x6b\xbf\x3f\x1d\x46\xd0\xf5\xd9\x3d\x7b\x67\x01\x5b\xef\x62\xa6\xf8\xb2\xbf\xd5\x0e\xd3\xa3\xb3\x49\xee\x67\x02\x36\xb7\xc0\x11\x6b\x99\x2e\x18\x72\x4c\xdf\x8b\x2a\x9b\x03\xec\x76\x14\x27\x5b\x9f\x67\xce\x80\x96\x8d\xaa\x3a\xc7\x16\xec\x17\x8e\x6b\xaf\x3b\xf2\x6c\x3b\xd7\xcc\xfe\x22\xc6\xb0\x67\xdd\x7e\x13\x5b\x89\xa0\x9b\x95\x57\xd5\x1e\x2a\xf9\xdb\xec\xb0\xa3\x98\xac\x33\xd5\xef\x37\x32\x36\x4c\xff\xcf\xa3\x52\xfa\xd1\xfd\xce\x19\x17\x05\xd0\xfc\x7d\x4e\xc6\x9b\xf7\x2a\x3f\x13\xab\x09\xcc\xef\x37\x87\xe0\x2e\x50\x7c\xc3\xac\x0b\xff\x75\x67\xd5\xdb\x13\x1e\x9a\x0b\x1e\xde\x61\x0c\xdd\x1e\x3a\x7c\xa9\x87\x07\xc1\x71\x3e\x0a\x1f\x62\x58\x4d\x02\x52\x89\x7f\xf8\xf6\xc9\x59\x77\x83\x09\x59\x45\x23\x93\x69\x38\x9b\xd7\x8e\x78\x50\xa7\x70\x3a\x5e\xc0\xd9\x9d\xc7\xef\x80\x27\x95\xbb\x3c\x7e\x98\xe7\xe1\x67\xea\x2e\x25\x74\x8e\x1f\x59\x5b\x07\xc2\x81\x1c\x65\xce\x95\x71\xc0\xbb\xdd\xe2\xfb\x40\xb1\x0d\xe7\xf5\x3b\x36\x2a\x2a\x45\x01\x32\x96\x85\x63\x6f\x0e\x98\x2d\x9b\x85\xce\x81\x8c\x64\xd6\x6d\x1c\xf0\x82\x32\xaf\x1d\x1b\x81\x97\xd8\xff\x60\xa6\x71\x29\xb6\x0e\x5a\x25\x1d\x20\x71\x94\xf7\x64\x75\x06\xd9\xa3\x30\xc9\xa8\x9f\x73\xd4\xfe\x00\xa2\x75\xf8\x39\xb9\xcb\x5d\xf0\x80\x90\x7a\xf5\x28\xbc\x22\x4b\x46\x1c\x2c\x02\xeb\x71\x97\x5c\x3b\xfd\x50\x79\x89\xd2\xa6\x3b\x52\x8b\x58\xfd\x06\x76\xa5\x4e\xf7\xa3\x52\x3f\x27\x23\xf5\x51\xb1\x4d\x75\x06\x1d\x95\xab\xe9\x06\x90\x86\x4a\xbb\xe8\xa8\x79\x27\x72\x97\x84\x87\x52\x66\x1f\xf4\x6b\x2f\xda\x68\x07\x4c\x9f\xbe\x67\x1d\x80\x73\x9f\xe5\x6c\x39\x75\x6e\x61\xc2\xde\xe7\x06\x50\x35\x40\x3b\xff\x80\xcf\x7a\x78\xf1\x90\x0b\xdd\xb9\x9c\x0e\x84\x47\x3a\xe7\xd8\x41\x17\x76\x4b\xe3\xa3\x21\xed\xa3\x44\xc7\xd1\xb1\x2f\x75\x17\x39\xa0\x1f\xfc\x34\x00\x97\x77\x7b\xa3\x1d\xcc\xa4\xba\x99\x63\x11\x2d\x69\x97\xb7\x83\x3e\xf1\xe5\xf3\x03\x8c\xd8\x9e\xf6\x0e\x12\xb5\xaf\x0f\xe6\x3d\xf7\x01\x72\x0c\x4a\x02\x29\x0c\x8f\xc1\x59\xd4\x24\x64\xf0\xe2\xf2\x17\x38\x51\xbc\x0e\x83\xc8\xdf\x2c\x3a\x76\xae\xbd\x3b\xc5\xbc\x4d\xbf\x40\xa8\xd7\xfc\x02\xb6\xcd\xfc\x93\x07\xc3\x01\xab\x6d\xd8\x28\x7e\xd0\x2b\xcb\x67\xdc\x11\xac\x03\xed\x4d\x14\x14\x25\x9a\xa5\xc8\x30\x6e\xad\x2c\x73\xa7\x3a\x3a\xf9\x08\x1e\xe5\x5e\x0a\xa8\x18\x1d\x56\x7a\x30\x37\xaa\xcf\xd1\x63\x26\xc7\x8b\x8a\xc9\xf0\x04\xbf\x10\xb8\xef\xf8\x99\x1b\xd5\x2c\x0f\x3f\x2e\x7b\x89\x1f\x13\x6b\x67\x76\x9c\x04\x4d\x12\xfb\x07\xb2\xb1\xdb\x1f\xfb\x48\xa0\x27\xbd\xe2\xb1\xb8\x4d\x9b\x7f\x80\x8c\xf5\x5a\x22\x5d\x7b\x35\x43\x2e\xd4\x2b\xb5\x04\x45\x39\x92\xb2\xe9\x24\x39\x98\x02\xcd\xa3\x26\xb0\xfb\x3c\x03\x95\x49\x53\x7a\xc0\x3a\xec\xc8\x80\x83\xd9\xdc\xad\x4f\x3e\x16\x79\x43\x4b\xb3\x38\x68\x37\x00\x67\x84\x4f\x03\x18\xb3\xf7\xec\x4e\x08\x6e\x91\xbc\x67\x76\x23\x3d\xf3\xaa\xe2\x73\x05\xe9\xd3\x3e\x52\x60\xa7\x8a\xc1\x12\x75\x67\xa2\x7d\x91\x00\x27\xb1\x66\x0c\x73\x1c\xd9\xa7\x9a\x64\x4a\x78\x33\x38\x2d\xc1\x8e\x79\x3a\xe0\x4a\xef\x6c\x27\xc7\xc1\x7d\xbb\xdc\x02\x27\xda\x67\xd5\x81\x2a\x3d\x16\x66\x07\x81\xd5\xa7\x09\xaa\xc2\xbc\x56\x50\x1a\xfa\x08\x3f\x4e\x5c\xe9\x3d\xd3\x27\x89\xd2\x5d\xe4\x38\x19\x7a\xad\x71\x33\xbd\x9a\x33\xdb\x1f\x2f\x98\x1c\xbf\xcf\x73\x60\x62\x44\xc2\xc9\xeb\xb0\x59\x1a\x58\xf2\x23\xdf\x58\x46\xc5\x45\x0d\x8e\x93\x2c\xee\x0f\xb0\xfa\xcb\x24\x90\xa3\x35\x2d\x50\x21\xce\x2a\x3d\xc4\x41\x95\xa1\x53\xe1\x1f\x17\x85\xba\x0f\xd0\x2b\xc5\x91\xdb\x48\x22\x34\x11\x89\x10\xbd\xfb\x2f\x2c\xb8\xa9\xa0\xce\xd0\x3c\x09\x6f\x79\x5b\x1b\x8f\x17\x01\x0e\x3b\xe1\x1c\x37\xe7\x49\x34\xdd\xf4\x91\x30\x8b\xbd\x88\x6f\xd8\x85\xf3\xb8\x93\x24\xf7\x78\xc1\x60\xa0\x1e\xe0\x47\x36\xab\x94\x1d\xc7\x43\x6d\x9c\x8f\x96\xa7\xbe\x4d\x4a\x0f\x76\x3c\xa0\xc1\xd2\xe6\x09\x3c\xab\xcb\x87\x34\x79\x5f\x3c\x64\x7b\x8b\xed\x04\x68\x92\xca\xe7\xef\x07\xaa\xa7\x9e\x37\x0a\xde\x4d\x3f\x90\xa3\xc2\x3f\x54\x92\xbd\xf4\x03\x85\xa2\x4e\xb8\x93\xb6\x5f\x9f\x68\xe7\x0f\x74\x7e\xbe\xa0\x77\x81\x84\xf9\xf9\xa3\x32\xbd\xf9\x0d\xa2\xe1\xf0\x1b\x17\x86\xea\x67\x5c\xaa\xac\xbd\x38\x7f\xdc\xc0\x3a\x15\xcf\x17\xe8\x0d\x3b\xc0\x9e\x2f\xd0\x6b\x4e\xa8\x77\x6e\x9c\xdc\x3f\x5d\x89\xce\x17\x14\x0e\xfb\x31\x9e\x1b\x67\xde\x8d\x53\xce\x6b\x2b\x9f\x1b\xf9\x4f\x37\x8e\x93\x35\xd7\xc4\x2e\xe7\x8b\x1a\x87\xf5\xe6\x27\x41\xa3\xfd\x88\xce\xcc\xe0\xa6\x59\x2d\xa4\x57\x0d\x16\xca\x3c\x1d\xe2\x67\xe1\xb5\xb0\xfb\x0b\x12\xe9\x17\x92\x3d\x44\xe4\x8b\x1a\x87\x33\x55\x9c\x2f\x68\x1c\x56\x51\x9f\x25\x57\xc1\x2f\xd0\xa6\x2b\x29\x79\x26\x46\x14\x0c\x38\x2b\x9d\xd7\x74\xfb\x3d\x13\x24\x4a\xa0\x9c\x35\xc9\xd4\x5c\x56\x90\x29\xb5\xe3\x59\x61\x20\x18\xee\x03\x4b\x5f\xdc\xe2\xcd\x83\x5d\xc3\xa8\x2f\x02\xfb\x0c\xab\x81\xa7\x25\xf3\xce\x34\x2c\x37\xff\x80\xa9\x94\x02\xef\x6c\x14\x8a\xda\x68\x67\x23\x07\x4b\xd8\x9f\xb4\x13\xd7\xcd\x3f\x9c\x68\x42\xe3\x4e\x1d\xa0\x66\xaa\x61\x79\x75\x33\x3a\x3b\x69\xd2\xff\x3d\x27\x4e\x44\x77\x70\x58\xf1\x33\x97\x57\x1a\xe8\xb3\x63\xf3\x7b\x62\x99\x70\xbf\x9a\x07\xfb\x44\x0b\x9a\xe8\x4e\x21\xd9\x4d\x03\x31\x9b\xce\xdd\xb3\xe7\x26\xf2\x0f\xa0\xda\x7b\x64\x50\x3a\x68\xe2\x90\x3f\x7f\xba\x3c\xc2\x49\x8f\x3e\x63\x85\x73\x60\x18\x16\x1f\x03\x62\x54\x17\xc2\x73\x50\x94\x77\x37\xb9\xd8\xa4\xa8\x1c\x98\x59\x5d\x5c\xce\xc1\x8b\xca\xe7\x07\x22\x70\x1d\xf6\x27\x5d\xfc\xaa\x19\x3d\x72\x2f\x69\x2a\x98\xa4\xcd\xc1\x57\xe7\x8b\x1e\xab\x9d\xd1\xce\x20\x99\x1a\x46\x5a\x9f\x3f\x3f\x40\x42\xd9\x71\xe7\x0c\xee\x8d\xe9\x4e\xa9\xf7\x31\x5f\x07\xf9\x54\x87\xf5\x49\x0b\xb2\x07\x32\x0b\xf3\x90\x6b\x49\x27\xf8\x52\x30\xe7\x9c\xc9\x86\x1a\x29\x6b\xeb\x3a\xa7\xeb\x39\x51\x61\xe0\xf3\x02\x82\xcc\x3c\xae\x89\x92\x09\x9f\x1e\x12\x57\xeb\x85\x85\x15\x16\x2e\x3a\x17\xe2\x86\x05\x38\xce\x8c\x23\xf8\xbc\xd0\x51\x7b\x44\x2c\x02\xb0\xe8\x28\xed\x73\xe1\xbe\x65\x0a\x50\xa9\xce\x89\x56\xce\xc5\x13\xc8\x5c\x09\xad\xa0\x01\xef\xb9\xd3\xb5\x48\xc0\xeb\xdc\x21\xc8\x2d\x08\xf7\x82\x67\xf5\xb8\x93\xe5\xfc\x3e\x0a\x5e\x0b\x8f\x9c\x3b\xe1\x84\xc5\xda\xce\x1c\x0e\xe2\x8e\x1d\x1b\xc7\x67\xe2\x0e\x31\xd8\xfc\x3e\x04\x90\x45\xf7\x7e\xe3\x7f\x4d\xc9\xc1\x9b\xb3\x1b\x3c\x48\xb1\x86\x74\x90\x62\xad\xda\x81\x75\xf6\xf1\x77\x00\x3a\xb4\x3f\x15\x95\x38\x0f\xda\x5c\xbc\x83\x0e\x1e\x35\xba\x53\x9c\x4c\xca\x6b\x9d\xc8\x79\x60\x00\x3e\x5d\x91\x37\xe3\xc3\xa9\x4c\x05\x67\xb5\xcb\x79\x82\x2b\x7c\x96\x9e\x18\x80\x4f\x96\x93\x90\xcd\xe2\xed\xc4\xfe\xf1\xe1\x75\x26\xa3\x6a\x51\x80\x12\xd7\xe7\x83\x8b\x2d\xf8\x05\xb8\x7f\x79\xce\xd2\x12\x6d\xc6\xb9\x48\x83\x88\x4e\x0f\x40\x6f\x72\xa6\xc5\xd8\x74\x55\x3a\x2f\xea\xd9\xbd\x70\x2f\xb0\xac\x9f\x89\x4a\x5c\x39\xdc\x26\x38\xc1\x62\x22\x71\xa6\x8f\x9a\x8b\x93\xef\xa9\xbd\x20\xad\xbc\x21\x2f\x5e\x7b\x7d\x7a\x5d\x37\x76\xa8\x69\x80\xed\x5a\xe8\xf7\x64\xc9\x5f\x63\xa3\x9b\xc3\xd4\xf7\x74\x31\xb4\x9d\xef\x44\xc0\x83\x2f\x4f\x67\x6a\x1a\x2d\x66\x6e\x82\x29\x69\x8b\xce\x1b\x52\xdd\x6b\xf1\xb0\x0b\x75\xf9\x60\x03\x79\x4c\x0f\x8f\x43\x0b\x6d\xe2\x4e\xb3\x07\x0d\xcf\x3e\x60\x1f\xe0\x08\x29\x86\xce\x8c\x66\x70\x07\xd4\xca\xff\x47\xc0\x95\x66\xe8\xa6\x67\x10\x34\xfc\x4c\x88\x59\xfd\x03\x2a\x8e\x69\x21\x2f\x94\x28\xb4\x1f\xef\xf5\x23\x81\x55\xcf\x24\x28\xf4\x8c\xa2\x02\xe2\xbe\xeb\x87\xe0\xf7\xcd\xed\x27\xb3\xe9\x87\x0d\xfe\xa8\x9a\xd3\x8b\xc1\x0e\x9b\x2e\x35\x17\x0b\x1d\x38\x7c\xf7\xda\xa8\xc4\x17\x4e\xbe\x36\x16\x93\x77\x13\xd8\x22\xc3\x1f\x50\xb8\x2f\xff\x10\x70\xa0\xf3\x07\x50\x75\x6e\x6e\x90\xbe\x6b\x9a\x45\xc4\x6f\xda\x2a\x7e\x41\x4f\xe9\x90\xb1\x6b\x03\x6b\x0e\x93\x4c\xd6\xd4\x61\x70\x6d\x3c\xfe\x25\xdb\x2f\x38\x37\x3a\x3d\xc6\x85\x0a\x89\x4e\x08\x78\x21\x87\xb0\x73\xaa\x5c\x25\xc7\x2c\x92\x4b\x8e\xc9\x2d\x12\x72\x88\xdd\x2f\xda\xb5\xc5\x1a\xd7\x0b\x31\xeb\x87\xc8\x74\x76\x5c\x7e\x01\xc2\x56\xe7\xcd\xf5\x42\xd0\x66\x48\x72\x41\x6d\x69\xcf\x8e\xab\xf2\x02\xa3\xe3\xe1\xaa\x60\x2e\xaf\x4b\xe6\x90\x13\x45\x15\xeb\xe2\x31\x40\x49\xe9\x6a\xbc\x17\xeb\x39\x4d\x3f\xf3\x4e\xe5\x59\xaa\xd8\x5e\x9e\x56\x66\x84\x73\x28\xc5\xc5\x02\x4f\x56\x36\x5c\x88\xf7\xac\xda\xe3\x17\xeb\x3b\xfd\xfc\xdc\xb0\x0e\x6e\x80\xac\x23\x92\x1b\xd8\xfd\xd3\x1e\xa1\xa0\x4e\xb0\xab\xa1\xfc\xb2\x64\xe7\xd5\x70\xa2\xe9\xce\x7e\xc1\x84\xed\x90\xc6\x8b\xa5\x16\xc6\xf8\x53\x35\x89\xab\x71\x49\xb4\x04\xc4\xba\x72\xc4\xbd\x98\x20\x4e\x07\xd4\x45\x0f\x49\xc7\x0d\x5e\x3d\xf9\x46\xab\xde\xe9\x65\x22\xbc\x7d\x11\xec\xea\xf6\x74\x31\x63\x9c\x23\x0b\xaf\x04\xb7\x9f\x37\x88\xd0\x9b\x7b\xc5\x98\xa7\xfb\xa0\xb3\x6f\x73\x13\xb9\x1f\xfc\x05\x00\x9b\x30\xfe\xf5\xa2\xdd\x6a\x63\xf5\x85\x84\xc5\x0e\x26\xba\x06\x8e\x71\x13\x4d\x83\xb9\xa3\x1d\x2f\x16\x93\xf0\xb4\x8f\x1c\x85\xd6\x69\xe0\xbc\x09\xbf\x90\x83\xd0\x4a\x0f\x4c\xb5\x99\x2f\x92\xb7\xf4\x45\xa0\x54\xbf\x57\x3a\xc8\xed\x6a\x20\x40\xa3\x67\x3a\x73\xba\x89\x75\x62\x40\xa1\xa4\x69\x0c\x8a\x76\xcb\x66\x2a\x49\xa7\x9f\xe9\xae\xf5\xe9\x81\x3b\xfa\xe7\x2e\x80\x36\x04\x8c\x2f\x6a\x51\x5d\x66\xf3\x9a\xc9\x0f\xea\x74\x12\x9e\x5b\x7e\x4f\xde\x22\xbd\x85\x26\xcd\xb2\x3e\x22\x98\x3c\xc4\x7a\xaa\x8b\x49\x91\x6b\x77\x1b\x00\x55\x26\x7c\x26\x8f\x8b\xce\x49\xb6\x15\x15\x8b\xb1\x1e\x96\xd0\x8b\xeb\xab\x16\xa9\x28\x75\xe4\xe0\xc5\x9c\xc8\xf6\x8e\xbb\x56\x5e\x66\xf4\xfc\xca\x0e\x47\xd0\x5e\x8b\x3c\xa9\xb9\x83\x33\xa5\x53\x63\x5c\x8c\xab\xf9\x48\x86\x44\xcb\x16\xf2\x2f\x5a\x1e\x76\x3f\xbf\x76\xb8\x7e\xfb\xe0\x22\x38\xb6\x00\xde\x31\x06\xf3\xc7\x4e\x8f\x69\x8b\x8a\x3d\xc7\xe0\x2f\xc8\x83\x82\x0b\x17\xe1\xb0\x8f\x3e\x84\xd5\x7c\xc4\x1b\xa2\x6a\x7c\x05\xbc\x08\x8f\x2d\x40\x77\xcc\xb3\x8f\x80\x17\x2e\x0f\xfb\xc3\x5f\x08\xbf\xb5\x2e\xe5\x42\xe6\x39\xe7\x6b\xb8\x32\xc2\xc6\xe2\xef\x40\x4a\x08\x13\x78\x40\x3c\x2e\x37\x48\xc8\x24\x80\x73\x1d\xb0\xd6\xfa\x34\x3f\x26\x28\x70\x0f\xd4\x47\x79\xa3\x1e\xc0\x0f\xd3\xcf\x2f\x8f\xdb\xe6\x73\x11\x50\x7b\xd6\x61\xe2\xb7\x31\xe4\x82\xaf\xa7\x41\xde\x75\x72\xdb\x0a\x62\x5d\xac\xc3\xe5\x2b\xc0\x75\x42\x09\x62\x12\x81\x97\x9d\x12\xed\x82\x0d\xbe\x99\x31\x18\x52\x63\x7b\xcb\x75\x12\x57\x8a\x64\x96\xd9\x72\x2a\xfb\xeb\x82\x34\xf3\x2c\x21\xa4\xa6\x49\xe1\x70\xbd\x68\x79\xd8\xa4\x7e\xb1\x84\x85\x97\xfd\x22\xa3\xf8\xdc\xbb\x38\x8b\x22\x99\xb5\x3d\xed\xbf\x7c\xa1\xb6\xa7\xd3\x41\x5e\xc4\xca\x1f\x12\x2f\x34\xa0\x39\x78\xa1\xf2\xd8\xfe\x96\x00\xe8\x7a\x71\x73\xfd\x4c\xd8\xbd\xe1\x63\x35\x4e\x97\x4f\xc7\x44\x5e\x48\x8f\x52\xab\xc9\xb9\x1b\xbe\xf0\x0b\x94\x31\x46\x0a\x09\xbd\x2d\x96\x10\xcd\x63\xb7\xe3\x0b\xb1\xc6\x4e\xfd\x7e\x31\xba\xc7\x6e\x03\x57\x42\x71\x8b\x10\x14\x0e\xfb\xac\x12\x62\x8f\x4b\x91\xea\xe2\x62\xfc\x8f\x85\xd2\x43\xec\x60\x31\x06\xf0\xee\x68\x83\xeb\x81\x1b\xba\x31\x1c\xb3\xd4\xd9\x5a\x73\x3d\x49\x94\xbf\x38\xd0\xc2\x7f\x5f\xdc\x28\x70\x51\xec\x07\x70\x43\x07\xec\xa4\xb9\x37\xd0\x77\xd1\xfe\xbb\x7f\xe0\x14\x6d\xd0\xfb\x47\x1f\x2c\x11\x7d\xff\x16\x5e\x70\x03\x3b\x9e\x37\x3d\x83\x02\x51\x74\x6f\xb9\x3d\xf4\x41\x3a\x78\x4e\xff\x80\x51\x9b\xc4\x8d\x6e\x7d\xd3\x4d\x24\x77\xfa\x87\x03\x7a\x0a\xb7\x70\x72\x94\x4b\x3f\x50\xd6\x0e\xff\x00\xd3\xdb\x72\x1f\x10\xb5\x5a\xcc\x3b\x35\xb4\x92\x0a\x77\x01\xcb\x49\x70\xdd\x85\x44\xfa\xff\x8a\xe7\xa2\xe7\x81\x30\x0d\x3f\x93\x66\x6d\xd1\xbb\xd0\x7f\x5b\x8a\x82\x9b\xf9\x94\x3d\x2f\x0c\x4f\xae\x62\xd1\x9b\x70\xd9\x41\x93\x37\xbd\x42\x97\x9f\xa9\xb1\x15\x56\xbc\x2b\x89\x56\x17\x80\xc7\x4e\x5f\x7c\x03\x1e\x17\x87\x76\xde\xc0\xc7\xf6\x3a\xbe\x2b\x9d\xd5\xc2\x2d\x04\x5e\xd0\x3c\x55\xac\x7e\x71\x8f\x58\x7d\xdd\x5b\xee\x8a\xd5\xd7\x3e\xbc\xa9\xdf\x5d\xfe\x1e\xda\x09\x9d\xec\x37\x7c\x42\x8b\x43\x49\xef\x86\x78\x57\x53\x04\x75\xae\xbd\x9c\xef\x74\x02\x15\x36\xbc\x53\xbf\x1b\x6e\x61\xe0\x0b\xcd\x52\x7a\x0d\x78\xda\x10\x37\xd4\xac\x7d\xbd\x1b\x65\x99\x9f\x0f\xea\x2f\xf4\x8c\x10\x1c\x9d\xa2\x37\x0a\xa8\x16\x47\x79\xde\x9d\xbb\xcc\xd3\xd2\x91\x3f\xcd\xc3\xee\x0d\x75\x88\x35\xec\xce\x78\x12\xbf\x0f\x9a\x85\x2d\xee\x4e\xa4\xe6\x61\x77\x88\x53\x81\xfa\xbb\x43\x9c\x9a\xc4\x9e\xf3\xa8\x1e\x07\x02\xb0\xbc\xcf\x07\x6d\xec\x02\x0b\x77\x02\x5a\x33\xc7\xe0\xbc\xf9\x05\x2e\xbd\x68\x1e\x58\xfa\xea\xf7\xb1\xf4\xd5\x3d\x1e\x6f\x8f\x66\xdf\x01\xf5\xa4\x10\xf5\x9d\xaa\xdd\xe5\x1f\x92\x7d\xd5\x22\x00\xb0\xab\x3d\xdf\xc1\xab\xc4\xe7\x87\x5c\x6b\xff\x40\xab\x87\x00\xeb\x1d\x24\x52\xf3\x16\xe0\x47\x4f\x7c\x9c\x78\xfe\x93\x36\xee\x06\xd8\xb5\x9b\xd7\x1d\xbc\x53\x7b\xbf\x05\xa4\x88\x97\x91\xe1\xe2\x1f\xf6\x86\x16\xd8\x12\xff\x86\x12\xd8\xc1\xd9\xf7\xdc\xff\xfd\xe7\x03\x66\xee\x09\xf2\x84\x0c\x6e\x86\x8b\xdb\x1c\x7f\x4f\xac\xbb\xc0\xc8\x8d\xb0\xa1\xcf\xf6\x80\xca\xd7\x7e\x3e\x77\x3a\x10\x2c\xbf\x00\x91\xa0\x4b\xc8\xbd\x92\x0d\xfc\x03\xd8\xc0\xcb\x96\x41\x43\xe6\x65\xa6\x92\xa9\x9a\xf3\x07\x42\xc3\x05\x2e\x9e\x0a\xec\x20\x38\xf3\x50\x46\x68\xfb\x3c\x95\xdb\x4b\x77\xca\x87\x29\x30\xab\x6e\x42\x4f\x25\x9c\xff\xfc\xc0\x99\x97\x78\x7d\x52\x6e\x68\xc7\x3c\xac\xd5\xe3\xd8\xff\x87\xb5\x7a\x6c\x14\x7e\x70\xd1\xb6\x1b\xc1\xd3\x08\x1c\xfd\x3f\x15\xa5\x02\x76\x0f\xac\x36\x36\x8e\x3f\x1d\x0d\xe8\x9a\xf2\xc0\x26\x63\x2b\xf4\xd3\xe9\x96\xe5\x71\x75\x1e\x4b\xda\xa5\x4f\xcf\x71\xe9\x07\xd8\x5c\xba\xd3\x0d\x3d\x83\x38\xc5\xc3\x18\xbc\x97\x54\xff\x80\x6d\x19\xfe\x02\x85\x58\xb4\x4d\x1f\x56\x24\xfc\xbc\xcf\xa3\x70\xfa\x85\x1b\x36\x7e\x0d\x23\x98\x2d\x5d\xff\x07\x99\x78\xfa\x05\x82\x49\x8d\x33\x60\x25\xf0\xd4\x23\xba\xaf\x79\x7d\x03\xf3\x22\x81\xfc\xbc\x7b\xf2\x13\x33\xf2\x4c\xb0\xa0\x36\xf1\xc3\x4d\xa1\x33\xe7\x99\xc8\xbe\xae\xa3\xf6\x99\xe0\x48\xed\xba\x67\x72\x06\xd4\xdf\x64\x7f\xa2\xef\xdd\x54\xd5\xf1\x5e\xcf\xcc\x75\xf1\x07\xd8\x65\x66\xe0\xc9\x83\xb6\x9a\x02\x64\x5a\xfc\xf4\x98\xdc\xa6\x2e\xe8\xa8\x53\x25\xcb\x9e\x95\x0b\xe9\x1f\xc0\x3c\x92\x04\xcf\x22\xde\xd4\x46\x7c\x70\xbf\x0c\x1b\x12\x9e\x85\x6d\x62\xde\x60\x29\xc2\xba\xfc\x02\xc4\x91\xd9\x6b\x41\x16\x78\x93\xec\x70\xbc\x35\xff\xee\xbc\x79\x4f\xff\x80\x89\x36\x6f\x31\x2b\xc3\xcf\x0d\x24\xaf\x69\xa2\x10\xbd\x17\x3a\xd6\x1e\xd6\xc3\x29\xfe\x9f\xf0\xb3\xba\x07\x32\x9b\x37\xd5\x4e\x1a\xfd\x0c\x89\x69\xde\x82\xf5\xc4\xf7\xcb\xe7\x68\x6c\x51\xf3\x76\x60\xf1\x3d\x06\x5e\xef\xcc\xcd\x30\xaf\x58\xc2\x3e\x07\xf7\x9c\x44\xec\x03\x97\x6d\x1f\x73\x0f\xec\x21\xdd\xbe\x03\xcf\xc9\xc3\x5b\x97\xa3\x07\x99\xc6\xab\xf9\xef\xa4\x68\xf1\x0e\xa1\xdb\x8c\xa3\xf7\x9e\x13\x4b\xb7\xdc\x24\x3c\x96\x85\x2e\x1f\xf8\x4c\x77\xbb\x18\x3c\xcc\x0b\xde\x7e\x7f\x72\x50\x78\x2e\xaa\x14\x35\x07\x17\x78\xcb\xac\xc4\xdb\x9d\x0e\x89\xe7\xa2\xeb\xa5\x8e\x91\xe7\xca\x31\xeb\x0b\x18\x26\x9c\xf9\xe2\xe1\x05\xcb\xac\x86\xfb\xd4\xb4\xe3\xe3\x73\xd3\xee\xf6\xf3\x1b\x58\x17\x2f\xf4\x9d\x73\xa2\x39\x80\xcb\x8c\x95\xc3\xcf\x0d\x78\x60\x29\x81\x54\x4d\xdd\xca\xde\xe7\xf9\xe1\x05\xf5\x00\x8f\x99\xd9\xbc\xa5\xe0\x31\x63\xed\xf1\xf3\xde\x86\x86\x35\x8f\x0f\x4a\xda\x74\x5b\x0e\x9e\x07\x19\xac\x04\xd3\x9e\x87\xcb\x92\x3d\xce\xdf\x7b\x39\xaa\x4a\x95\x30\x7f\xef\xdd\xa8\xc9\x14\x32\x7f\x88\xa0\x6b\xba\xd4\xce\xdf\x0f\xe5\xbf\xfe\xc3\xd7\xf3\xf7\x5e\x9e\x86\x54\x7e\xf3\x07\xd3\x85\x9c\x9d\xe6\x0f\xa6\x8b\xf2\xe9\x80\x96\xb3\xe5\x1f\x26\xc7\xe8\x2f\x76\xfe\xe0\x26\x0f\x34\xe1\x17\xc0\xdf\x1f\x1a\x79\xa4\x2c\x7f\x40\x5e\xdb\xfc\x06\x85\x57\x53\x13\xef\x8d\xac\x28\x95\xca\xfc\x6d\x94\x5d\x9b\xa8\xc2\x85\x4c\x4a\xbf\xf9\xdb\x78\x6d\x68\xfe\xa1\xf1\x0b\x75\xca\xb2\x3a\x9b\xbb\x18\x1c\x86\xbf\x08\xe8\x7d\x44\x14\xec\x17\x4a\x89\x35\x7f\x4c\x0f\xa5\x48\xd2\xf9\x63\xe9\xe7\xb1\xd4\x24\x2e\x64\xe5\xa7\xb5\x28\x49\x83\x5f\x60\x99\x26\xaf\xce\x7b\xe3\x1a\x4a\x94\x35\x7f\xbc\x60\xb5\x9f\xfa\x60\xbe\xc9\xd2\xd4\x26\xa2\xea\x66\xfb\x89\x43\x78\x61\x1a\x9a\x19\x3a\xbc\x94\xae\x36\x2b\xcd\x90\x4d\x03\x61\xb1\xe5\xaa\x99\xa9\x29\xe6\xdd\x07\xf5\x51\x4b\x64\xd6\x64\x5b\x91\x85\x3b\x54\xf1\x72\x30\x07\xe5\xcf\x7c\x8b\x24\x94\x72\x01\x9e\xbf\xca\x71\x74\xff\xf0\xa0\x05\x3d\x33\xa5\xb8\x42\x26\xe7\xaf\xe5\xfe\x16\xd9\x2d\x07\x26\xba\x71\x8b\x2a\x9e\xdd\xf7\x8e\x34\x8a\x57\xbc\x83\x47\x3c\xd9\xf0\x5b\x96\xf3\xc2\xfc\x75\x4e\xbe\x06\xd5\xf9\xbd\xc6\xd0\x61\x3a\x35\xdb\x76\x92\x2c\x82\xe0\xe7\xdc\x7f\x9f\x1f\x36\xa8\x53\x35\xa6\x41\x02\x34\xaf\x23\x47\x20\x8a\x47\xf2\xa0\xdf\x00\x49\x45\x6b\x37\xc8\x73\xa6\x79\xc0\xfc\x54\xd5\xe5\x8b\x8c\x86\xae\x79\xf3\x17\xb9\x51\xd4\x22\x14\xf2\xba\xbc\xce\x1f\x14\xf2\xba\x5e\xcf\x5f\x40\x99\xe9\x1e\x83\x52\xf4\xf3\x03\x66\xb9\x88\xe6\x17\x4a\x15\x85\x54\xcc\x1f\xae\x33\xba\x06\xce\x1f\x3c\x55\x66\x33\x4f\xe3\x8a\xa2\x6b\xdf\xfc\xbd\x57\x94\xf6\x33\xc3\xe2\x86\xa2\xd3\x6f\xfe\x52\x3d\xdf\xf5\xc1\x84\x08\x2b\x7f\xb9\x10\xcd\xdf\x8b\xcc\x86\xfc\x28\xe7\x6f\x92\x7c\xcd\x07\xd2\x61\xd5\x29\x72\x27\xaf\x67\xcb\xbd\xad\x7f\xff\xa9\x65\x6a\x82\x5e\x68\xd6\x64\xfc\x9a\xbf\x17\x99\x55\x61\xd5\xf9\x9b\x29\x05\x44\x3f\xd4\xf6\x42\xd4\xf3\x07\xb5\x7d\x5b\x6a\x10\x1e\x2a\x4a\x55\x33\x7f\x54\xda\x37\x6f\x05\xa0\xac\xe2\xfd\x09\xad\xbd\xee\x11\xf3\x47\xd4\xd5\xbc\xfb\xa0\xb6\xef\x16\x4c\x8b\xf2\xd5\x8b\xcc\xe4\x57\x45\x63\xd8\xa1\x9c\xf4\x24\x11\x65\x35\x6f\x9d\x1d\x85\x4c\xbb\x3f\xa0\xe0\x32\x1b\x51\x6d\xdf\xbc\xf9\x98\x34\x61\x8a\x86\x17\x77\xd5\xcf\xac\x20\x67\x42\xff\x99\x53\x77\x88\xd7\xea\x0f\xc0\x26\xd5\x0d\x22\x14\xd7\xbb\x33\xd5\xf4\x6a\xf0\x80\x35\xcc\x1d\x00\x96\x6d\x6e\xef\xe0\xb9\xe5\xed\x7f\x64\xee\x15\x7f\x81\x94\xf5\x4d\x14\x01\x44\x09\x08\xce\xdf\x09\xbe\xb3\x0c\xa3\xef\x72\x33\x09\x28\x0d\xad\xa0\x84\xf9\x4b\xd0\xe5\x69\xa3\x16\xfd\x67\x59\x0c\xd4\x55\x3f\x5f\xe4\xfe\x16\x37\xc1\x0d\x45\xe1\xee\xf3\x77\x52\x01\xb1\xd4\x24\x33\x51\x29\x8e\x76\xfe\x2e\x6a\x9b\x8c\x00\xae\x24\xd3\x9f\x60\x0b\x78\x9c\x17\x76\x6c\xf5\x07\xe0\x37\x13\x75\x91\xdf\x34\x4c\xe8\xc9\x8b\x77\x3c\x5c\x4a\x86\x77\x44\x66\xd9\xb4\x6c\x67\xc1\x15\xef\x39\xe4\xad\xfa\x08\xd6\x9b\x7b\xd4\x0d\x50\x0c\x5a\x68\x21\x17\xc1\x52\x19\xbe\xf9\xbb\x79\x7c\x18\x53\xc0\xa7\xe4\x73\xdc\x33\xb1\x77\x58\xf6\x3e\x38\x8b\xbd\x27\x9e\x9c\x37\x8d\xf2\xa1\x8d\xcf\x07\x0e\x32\x7d\x7f\xa8\xa4\x1b\x4a\xf3\x2e\x62\x66\x2b\xc5\x7e\xcd\x1f\x32\x5b\xad\x30\x78\x82\x03\x74\x98\xe5\x1e\xb2\xdc\x10\x53\x03\xff\xad\x30\x76\xa2\xab\x4a\xf3\xc6\x7a\xb0\x2d\xcc\xa4\x0f\x5d\x45\xdc\xe4\xcd\x16\xfe\x6b\x72\xa3\x83\xb4\xa4\xc3\x06\xe7\x95\xa5\x7a\x82\x73\x43\x0a\x05\x15\x33\x9b\x1b\xdc\xa3\xbd\x7c\xdb\x0f\xd9\xf7\xc2\xff\x23\x67\xd8\x7f\x5a\xe1\xb9\x41\x9b\x6e\x6c\xb6\xbd\xf8\xaf\x48\xf1\x31\xb7\x1f\x0d\xb0\xc3\x1d\x5e\x1c\x93\xde\xd8\x52\x7a\xa8\x8b\x2d\x27\xce\x3f\x4c\xbe\x11\xfa\x01\xce\x25\x5a\xdf\x6d\x03\x4f\x36\xff\xcf\x3b\xd4\x70\x0b\x37\x3b\xd5\x17\xcc\x94\xa5\xd8\xdc\xb9\x41\x1d\x6e\x24\xb5\xb1\x42\x61\x73\x9f\xd4\x87\x37\x89\xc9\xad\x70\xe4\x7e\x46\x71\xbe\xb5\xfd\x25\x86\x68\x6e\x89\xe5\x8a\x3b\x04\xcf\x4a\x18\x6c\x35\x79\x56\x04\x54\x84\x6a\x79\xa5\x50\x6e\xba\x7e\x9e\x93\x23\xb5\x14\x2f\x50\xab\x96\xf3\x5b\xe2\x34\x8f\xa0\xe6\x34\xf9\x07\xae\x8d\xd9\xe5\x05\x66\xc3\x90\x64\xa3\xb3\x88\x6e\x6a\x73\x6b\xd4\xbe\x0d\x0d\x83\xb0\x4b\x30\x6c\x63\x89\xc0\x62\x86\x69\x49\x85\xbf\xc0\xe2\x49\x3e\x6c\x2c\xcb\x22\x3f\xdf\xb9\x41\x5b\xad\x3c\xdc\x73\x43\x8e\x2b\x19\xb6\xe6\xd6\xb1\x99\x85\x08\x36\xe6\x02\x55\x68\xe8\xdc\x3a\xd6\x56\x30\x69\x83\x32\xdb\xc8\x6c\xeb\x1d\x19\x26\x45\x51\x4f\x06\xf4\x0b\x58\x9b\xff\x14\x42\x73\x1b\x29\xd3\x44\x02\x0b\xf4\x7d\xdf\xe0\xb1\x5d\xfd\x06\x3c\x4d\xab\x5f\xa0\xe3\xb0\xa9\x1e\x9c\x6a\x11\x41\xe5\xb2\x8a\x3b\xce\x2d\x98\x6d\x42\x44\x05\x6b\x87\xea\x34\xd8\x82\x7b\x5b\xd8\x6a\x0b\x1c\x51\x12\x6a\x5b\xe4\x5a\x88\xa8\x98\xe0\x10\xbf\x00\x87\x5d\xaf\x55\xd0\xae\xe0\x1e\x9e\x7f\xff\x89\x30\x03\x4d\xe0\x4b\x6f\xb3\x49\x7c\x69\xfe\x81\xa6\xec\xb3\xcb\xa0\x29\xb3\x8c\xdc\x26\xef\x40\x9e\x96\x49\x26\xae\x6e\x92\x62\x35\xc4\x71\x50\x96\x59\x68\x6e\x13\xe7\x93\xe5\x0b\x95\x65\x2a\x19\x39\x37\x06\xad\x7d\xe6\x69\x12\x3b\x68\x62\x17\x77\x9a\x10\xd3\x46\x8c\xe6\x69\x5a\x38\x91\xcc\xe3\xe9\x6a\x61\xa1\xb8\x88\x26\x74\x66\x6d\x2f\x48\xab\xdd\x52\x71\x25\x51\x6e\x12\xa6\xd6\xcf\x07\x17\x60\x9f\x49\xa0\x20\x17\x82\xda\x76\x4e\xb5\x3e\xd8\x93\xc9\x35\xb5\x3b\x89\xd6\xb0\xe1\x78\xfc\xd9\x77\x3b\xcc\xc3\xcb\x0d\x40\x7c\x79\x5e\xf7\x9c\x26\xbd\x00\x4f\x88\xcf\xb4\x1d\x54\x67\x08\x19\x6c\x07\x72\x34\x58\x0a\x1f\xb9\x98\x1a\x24\x5c\x1f\x3e\xd3\x04\xd5\xd7\xb7\x07\x2c\x9d\x07\x7d\x50\xed\xa3\xe3\x6d\x83\x27\x83\x02\x6e\xe7\x76\x60\x8f\x78\xcc\xf0\x64\x90\x6b\xfd\xdc\xe0\x19\x5c\x7c\xf8\x40\x11\x36\x5b\xf3\x0f\xe0\x47\xc1\xf7\x8d\x9a\xb1\xd6\xfc\x03\xe5\x99\xbb\x44\x3a\x83\x6a\x61\x74\x62\x0c\x53\x63\x38\x31\x8d\x53\x63\xfe\x0f\xd4\xf9\x85\x5c\x7a\x4d\xd3\x89\x41\x09\xe1\x6f\x27\x27\xfe\x43\x35\x95\x5d\x02\xbb\xdb\x05\x01\xa7\x5b\xc9\x86\x3a\xd5\xd3\xc3\x06\xa6\x5b\x9f\x43\x9c\x31\x6a\xad\xfd\xc5\x63\x6e\x6e\x17\x6f\xf8\x16\x3d\x17\xc7\xe8\xf6\x39\x46\x37\xcf\x75\xf3\xfb\x84\x29\x96\xc8\x84\x78\xe1\x2d\x76\xd3\xad\xd1\xcf\x3c\x5d\xcd\x3b\x37\x7d\xec\xfc\x1c\x6f\x17\xd2\x33\x6d\x70\x6e\x50\xf8\xe2\xdc\xe8\xcc\x60\x41\x72\x13\x66\x78\x65\x99\x48\xbd\x19\x13\xdc\xb4\x81\xba\x05\xca\x57\xe3\x10\xe6\x2e\xb5\x28\xca\x0a\x7b\x22\xe9\x21\x6b\x98\x46\x64\x2c\x58\xe1\x03\x36\x3d\x8f\x3d\x51\x70\x77\xe8\x0a\xd4\x98\x1b\x42\xde\xca\xe7\x99\x07\xae\x41\xc4\x03\x0e\x5f\x7e\x81\x7a\x56\xe1\x92\xc2\xf2\x2f\xf2\x5b\x99\x05\x88\xae\x2b\x68\x62\x96\x1f\xe7\x56\x07\x6a\x81\x47\x84\x22\x3d\x67\xf9\x71\x6e\xdd\x24\x71\x69\xe8\x79\xfd\xfb\x4f\x97\x63\xfa\x2c\x70\x90\x50\x50\xe6\x2c\x3f\x72\xb4\x2e\x6b\x05\x2a\x3d\xdf\xe6\x0a\xc2\xe1\x14\x73\x39\x0b\xb3\xb3\x6b\x50\x25\x15\x7a\xda\x44\x65\xfb\xe1\x03\x8d\x09\xd1\x70\x72\x7e\x99\xe5\x85\x88\x43\xce\xc7\xb3\x40\x19\xa7\x64\x30\xb3\x10\x20\x0e\x3f\xf3\xf4\xed\xfe\x80\xc8\x5a\x18\xb3\x20\x02\xee\xfb\xcc\xba\x0d\xa6\x80\x57\x2f\xf1\x78\xd9\xa0\xee\xe9\x26\xe9\x1d\x43\x75\x97\x25\x8f\x3e\x4d\x42\xa1\xb8\x14\x76\x2a\x85\xdc\xb1\xfc\xc9\xc2\xa8\xfc\x02\x7c\x79\x8b\xff\x3f\xf0\xbf\xba\x84\x37\xb2\xf1\x5d\x81\xf3\xb1\xd4\xfc\xb3\x20\x63\x56\xb7\xfa\xa7\xbc\x08\x71\x28\xc6\x73\x96\x9a\x02\xda\x5f\xbc\x2c\x2d\x5f\xd8\x59\xa0\xfb\x93\x03\xc7\x2c\xcc\x0e\xff\x69\x60\xa2\x41\xcd\x1a\xbc\x91\x95\x40\x78\x96\x9a\xd3\xec\x1f\xb8\x0b\x85\x72\x4a\xe3\x4a\x8b\x44\xd6\xa3\x56\x6c\xff\x2c\x74\x8f\x30\xc6\x28\x74\x8f\xb0\xb6\xa1\xb4\xac\x66\xaf\x79\x6a\xcc\x61\xae\x79\x69\xb9\xfa\xa2\xa2\x51\xbb\xd0\xdc\x09\x45\xae\xc4\x4b\x69\x14\xb9\xba\xe5\x96\xf4\x0a\x96\x7a\xaf\x74\x9e\xf9\xee\x85\x11\x6e\x6d\xf8\x13\x7a\x65\x48\x57\x54\x3a\xd7\x57\xb3\x0d\x0d\xa2\xa2\xf4\x66\x61\x5a\xac\x36\xdc\x24\xf6\x8d\x90\x4b\x01\xec\x54\x0c\xdd\x2c\x09\x3b\x75\xcf\x2d\x50\x21\xfa\xfa\x57\x06\x8f\xb3\xe1\x1f\x1a\x5e\x50\x0f\x83\x96\x6e\xcd\x4c\xfa\xfc\x7a\x6b\x42\xc5\xe8\x4b\x45\x19\xbc\x6b\x0b\xad\x17\x18\x5f\xe5\x4e\x3d\xcb\x40\x0e\x23\x09\xc5\xf2\xa2\xd2\x51\xcd\xc4\xb0\xbd\xf6\xb6\xfd\xe5\x24\x2a\xc1\x78\x2e\xcf\x29\x12\x6a\x7d\x44\x17\x6b\x36\x5b\xaf\x53\xd2\xbf\xd7\x93\x1e\x94\xa8\xc3\x9f\x60\x97\x58\x58\xd1\xe1\xb7\xe9\x2c\x2a\x93\x93\x26\xa4\x54\x58\xde\x26\x2c\x5e\x66\xce\x92\x3f\x59\x7c\x43\xb3\xc0\x14\x58\xcd\x3b\x07\x28\xb4\x78\xa7\x4c\x2c\xad\xf7\xee\xa4\x12\x4e\x47\x66\xa1\x7f\xaf\xaa\x2a\xcf\xb2\x18\x7f\x67\x1e\x5d\x49\xa7\x7f\x68\xd4\xd3\x89\x4e\xe2\xd2\x8f\xe0\x5d\x93\x3f\xf8\x13\x00\x7c\x1d\xbb\x65\x41\xcc\x79\xf7\xc1\x81\xb7\x7a\xff\xee\x3f\x36\xa0\x0f\x76\x06\x30\x98\x67\x77\xba\x6c\xfb\x85\xf1\xef\x3f\xb1\xcc\xa2\x3b\x63\x15\x87\x9b\xa4\x8c\x10\x4a\x2c\xf0\xe0\xad\x16\xc5\x50\xfd\x55\x73\x1c\x4a\xe8\xf8\xe6\x54\xf6\x9c\x3a\x93\x80\x42\x5f\x5e\x3f\x26\x47\x50\x28\xe3\x2c\xc8\x93\x5f\x75\x4d\x29\x89\x64\x05\x6d\x0b\x4a\xea\x0c\xb3\x04\x13\xac\xb6\xf0\x17\xc1\x3e\xfd\x45\x22\x7e\x3d\x63\x98\x3a\xc7\xcb\x91\x0c\xa1\x61\x1f\x1c\xa5\x5f\xe0\xe6\x0f\xff\x80\xfc\xba\xd3\x5d\xe6\x30\xfd\x03\xa3\x23\xcd\xd9\x27\x95\xf1\xa2\xe1\x4c\xc1\xa8\x3e\xaf\x9c\x08\x51\x7d\xd1\x77\x52\xe3\x44\xd4\x5a\xf5\x52\xbc\xc0\xb2\xf9\x62\x5c\x10\xb4\x36\x3d\x88\x8c\x59\xf3\x44\xa1\xae\x60\xd7\x8d\xb3\x00\x29\x56\x4f\x13\x9c\x6c\xcb\xe7\xc4\x00\x54\xac\xe6\x06\x78\xdd\x5a\xcb\x5a\xe0\x65\x5b\x2d\xa9\x2f\x30\xa4\x17\xff\x4e\x86\x54\x03\x30\xfc\x1a\x9f\x97\x3b\xd7\x56\x24\xde\x38\x04\xbd\x55\xef\xdc\x35\x1a\x24\xb2\xa9\x7e\x8e\x51\xe8\x1b\xc3\x1c\xfe\x42\xd1\xb2\x2c\x72\x98\x4d\xab\x4d\x77\x99\x1c\xad\x41\xbe\x60\xb4\x5a\x35\x5c\xe8\x47\xfb\x39\x09\x12\x7b\x1a\x2c\xc0\x91\xd6\xf7\xe4\xf2\x90\x68\xcd\x23\x82\xe0\xaa\x39\x3a\xa1\xa7\x8f\xfa\x87\xa7\x91\xe5\xf2\xc3\x95\x10\x91\x88\x82\xab\xa6\x11\x7e\xb6\xd5\x50\x20\xb3\x65\x79\x17\x3d\xc9\x7f\xff\x75\x51\x33\xab\xbe\x64\x5c\xfd\x6d\xff\xfe\x33\x55\x7f\x69\xd6\x1f\x8b\x23\x36\x3d\x73\x10\x6e\xa0\x61\xed\xfd\x4c\x37\xd9\xa5\x67\xa0\x3c\x9d\xc1\xf5\xc7\x21\xb8\x3d\x6e\x99\xe9\x1f\xe8\x54\xa5\x67\xc2\x44\x53\xcc\xbc\xa9\x4a\x52\x3b\x2b\x52\xea\x6f\xb5\xff\xe5\x30\xaa\x74\xc1\x55\x1a\xb6\x59\x99\x34\xd5\xa7\x69\x2d\xf4\x93\x97\x44\xae\x50\x22\x2a\xc1\xce\xac\x2f\xe4\x0b\xe5\xa4\x9a\x95\x88\x4e\x68\xa8\x32\x85\x81\x0f\xf0\x9a\x79\xaf\xa4\x7a\xa8\xb4\xf0\xfa\x40\xae\x50\x13\x2a\x27\xf2\xac\x69\xf1\x15\x96\xae\x70\xa1\xad\xd2\x23\x56\xb8\xd0\x2a\x26\x67\x56\x5a\x84\x7d\x69\xae\x15\xbc\xd5\xfc\xdc\xf1\xac\x1e\x2b\xec\x18\xe1\xff\x83\x0d\xb8\xc7\xf7\x94\x31\x4a\xac\x70\xb1\xad\x52\x9d\xd7\xca\x2b\xb1\x54\x0d\x35\x51\xe1\x34\x4d\xdc\x20\xda\x83\x95\x30\x51\x57\x98\xca\x1a\x84\x86\x15\xb5\xf1\xd6\xe3\x61\x35\x8a\xec\xe5\x37\x30\x0c\xc1\xef\xfa\xc2\xc6\x18\x5e\xab\xc6\x5b\xaf\x0e\x81\x8a\xec\xfb\xaa\x99\x3a\x6b\x66\x55\xf0\xff\xef\xa6\xb5\x9e\xb2\x76\xd2\xa8\xa5\x62\x4d\x22\x9b\x73\x6a\xe7\x09\xee\x0f\x38\xf3\x12\x66\xb5\x93\x66\x81\xa7\xda\x29\xd1\x3f\x7d\xe4\x3e\xd7\x30\x13\x75\x2e\xbf\x31\x41\xb5\xa9\x40\x04\x94\x5d\x36\xea\x8b\x11\xa7\x8a\x0c\xcc\x0a\x8c\xe8\xbc\x3e\xb3\xb2\xc6\xa0\x11\x52\x85\x11\xd8\xb7\x80\x8a\xf4\x03\xd5\x33\x17\x4c\x23\x25\x9a\xe8\xc3\x1a\x92\x35\x15\x46\x5e\x9f\xe8\x15\x3e\xab\xdf\x0f\x92\xcb\xfd\xc2\x03\x1a\xd5\xc3\x4c\x92\xb4\x78\x33\xd7\x5f\x44\x33\xd7\xd5\xa7\x8f\xc9\xe5\x56\x1f\x93\x87\xa1\xb9\x10\x4e\x77\x3e\x79\x2a\x22\xb0\xaa\x99\x12\x7a\xc4\x8f\x74\x82\xe7\x6a\xb7\x8e\xb7\xc2\x73\xd5\x28\xa2\x2e\x5e\xb7\xcc\x61\x8b\xf2\x4e\x3d\xc0\x11\x55\xe9\x85\x67\x5d\x34\x63\x78\xef\xae\xc5\x41\xf8\x0b\xd2\xa0\x89\x64\xae\xaa\xb6\xfc\x02\x05\x86\x60\x44\x65\x4c\x56\x5b\xfe\x01\x62\xdb\x32\x90\x88\xce\x22\x08\x7a\xc4\x6a\x01\x83\x90\x2c\x45\x91\xcc\x4a\x17\x3a\xc3\xaf\xba\xe7\x3e\x11\x0d\x48\x48\x50\xcd\x3f\x3b\x95\x1c\x96\x6a\x3b\x47\x21\xfe\xd9\x19\xec\x20\x92\x58\xf9\xc8\x67\x76\xdd\xb9\xfd\xbd\xd5\x0e\xc6\x36\x8a\xa8\x83\x1c\xa8\x0f\xa0\x17\x94\xf3\xe2\xac\x07\xa5\xa4\x0e\xf9\x7a\x42\x08\xfa\xa4\x80\x5a\x6f\x98\x7d\xce\x00\xc3\xa9\x03\x16\x6d\xfe\x9c\x45\x50\xe3\x0d\x6f\x55\x44\x34\x85\xc5\xcd\x09\x66\x08\x3f\x13\x9c\x79\x90\x17\xc3\x4c\x7d\x3a\x5e\x44\xce\xfe\x04\x29\x02\xde\x6d\xf6\x97\xc3\x88\x69\xa8\xba\xb7\xf1\x45\xbf\x01\x11\x08\x9d\x9d\xfc\x8b\x67\x7d\x81\x95\x53\xc4\xcf\x8a\xd0\xff\xd9\xbd\xc7\x50\xc1\x79\xb3\xd8\xbf\xc1\x18\x3e\xed\x6e\xd2\x2b\x98\x53\xa1\xa2\x9b\xc6\x9b\x95\x1e\x73\x86\x8f\xf5\x5e\x48\x75\x23\x46\xb8\x69\xea\xf1\xa6\xbc\x71\xfe\x79\x92\x80\x83\x3e\xeb\x4a\x3b\xad\x19\xe3\x41\x2c\x85\x94\xab\x15\xe1\x45\xd5\x67\x1d\x61\x91\xe5\xc8\x0b\x8b\xe6\x30\x02\x41\x0a\x2a\x6b\x15\xeb\x93\x92\x4a\xb3\x08\x05\xdd\xec\x9f\x2f\x40\xe1\xf2\x17\x27\xbf\xd0\xb4\x3d\x60\x3d\xcd\x4a\xcb\x94\x54\x02\x5e\x8d\xa8\xe7\xf3\x4c\xc3\xf1\xd4\x33\x63\x1c\xb5\x52\xed\x47\x22\x87\x9e\xf7\x7f\xff\x09\x15\xba\x9e\x0d\x0e\x74\xf2\x0b\x9f\xed\x85\x41\x55\xa1\x73\xb3\x51\xdb\xa6\xc3\xb4\x01\x15\xc9\xe1\x74\xb6\x1f\x75\x1b\x92\x2a\x2d\xdd\xe5\xb4\x41\xdb\x46\x81\xaf\x1e\xb7\x5c\xe9\xae\x1f\x82\x3f\xf8\x0d\x4a\x2e\x41\xaf\x56\xc0\x3d\x3a\x96\x1a\xa2\x8d\x14\xe9\x33\x5b\x59\x48\xf3\xe7\xff\x21\x23\x24\xd8\xda\x8b\x84\x86\xdd\xb9\x1a\xf3\xc5\x1b\xaf\xb6\x9a\xfe\xc9\x7a\x7e\x45\x82\xdd\x62\x1a\x55\x53\xd2\xd7\xb4\x9a\x2b\xab\x16\x2b\x0e\xa1\xe5\x67\x54\x66\x95\x24\x6d\xb4\x64\x5a\x7c\x37\x58\x32\xed\x4a\xd7\x68\xc9\x34\x9e\x6d\x88\x63\x1f\x9e\x25\x24\xef\x54\x5d\xa3\xd9\xd2\xd2\x29\xd9\xdb\x5a\xca\x39\x2d\x55\xbb\x91\xbb\x58\xb3\x08\x88\x31\x55\xc0\x62\x36\x6a\x9d\x0c\xe3\x5b\xe7\x65\x44\x34\xf4\xe4\x68\x75\xda\xe9\xa5\xaa\x3e\xa9\x64\xea\x02\xad\xad\x53\x52\x99\x9f\x06\x0f\x5b\xb1\x78\x43\x64\x79\x97\x3c\x6f\xd0\x32\xd9\xfd\xa7\xa1\x50\xf2\xe6\xa9\xa6\xe3\x9a\x2f\x71\x6d\x90\x7f\x36\xb7\xf0\xf2\xbc\xa2\x37\x67\xa3\xda\xc9\xd0\xbe\x21\x34\xc7\x8e\x8d\x8d\x09\x3c\x7d\x91\x6c\xe3\xc0\x0b\xa6\x91\xb1\xc9\x6e\x80\x27\x82\x1b\xb8\xf1\xbe\xff\x7f\xf0\xac\x89\x65\xa4\x8e\x02\xb0\x67\x43\xa8\xba\x35\x4d\x2d\xe8\x00\x22\xd9\xd1\x22\x47\xa9\x2e\xe0\x0b\xb7\x79\x0b\x04\x11\x87\x8e\xd2\xf6\xe2\xa4\x21\x17\xe4\xf7\xae\xcf\x69\x11\x47\xc1\x39\xce\xbe\x70\x2d\x60\x35\x34\xbf\x44\xae\x9d\x89\x22\x03\x49\x68\x37\x18\x5c\x67\x17\x70\x6e\x30\xb8\xda\x6d\xb5\xc1\x3b\xae\x79\xdb\x64\x76\x77\x4b\x1b\xe4\x64\x6a\x7f\x2a\xdd\xfa\xa2\x6b\x28\xbd\x35\xa2\x45\x58\x26\xb4\xd1\x16\x4d\xd0\x5e\x58\xea\xa8\x86\x9f\xb9\xcb\x74\x90\x36\x46\xa9\xf7\xe2\x36\x17\x1c\x6d\x35\x09\xb0\x94\x76\x73\xdf\x62\xfa\x6e\x1d\x54\x0d\x08\xa7\x99\xd9\x90\x91\xc9\xae\x1e\x8d\x19\x96\xba\x8e\xc2\xb6\x13\x87\x99\x28\x38\x97\xd9\x65\xb9\xed\x29\x31\xd5\x04\x0b\x2d\xda\xd4\xd9\x0e\x06\xa3\xe9\x8b\xa3\x41\x14\x88\x86\x63\xa2\x5a\x81\xe6\xe5\xe0\x4a\xab\xc7\x83\x57\x22\x0b\x69\xa8\x87\xec\xe3\xd4\x0e\xf2\xb7\x3b\xa4\x1e\xd6\xdc\xc7\xbc\xed\xbd\x98\x04\x4e\x83\xbe\x38\xe9\x7f\x2a\xbc\xda\x4e\xce\x8b\xa6\xe1\x24\x7e\x15\x22\x6e\x27\x0c\x5e\x82\x86\x0d\xc9\x37\x9b\x7b\x38\x29\xdf\x34\x08\x04\x0d\xd8\xd1\xb0\xc1\xd2\xd9\x74\x7a\xb7\x93\x38\xcf\xe2\x0d\x96\x4f\xbb\x9e\xb5\x17\x23\x0d\xbb\x50\x35\x04\x81\xc7\xf0\xff\x95\x63\x14\x85\x17\x29\x52\x83\x17\xa7\xd5\xff\x83\x22\xdd\x12\xdb\x0b\x82\x1c\x22\x3d\xdb\x9d\xcc\xa6\x69\x66\x1a\xcc\x6e\x9a\xef\x13\x25\xc0\xd5\xc3\x0d\x77\x54\x4b\xec\x9b\x12\x5a\x48\xb3\x3d\x39\xcd\x22\xfa\xe1\x96\x14\x74\x6c\xf4\x2d\xf3\x95\xbd\x01\xb5\xd8\x91\xa8\x3d\x94\x86\x16\xb8\x4f\x52\x25\xba\x1f\x5a\xdc\xbc\xef\xe1\x07\xd6\xaa\x9b\xe4\x65\x45\x57\xac\xf6\x80\x1b\x34\x73\x9d\x61\xd4\xd3\xcf\xb8\x9b\x68\x9c\xfd\x97\x34\x2c\xfd\x40\x2f\x1c\xc1\x8c\x4e\x23\x9e\x2f\x27\x7d\xe3\xb9\x21\x69\xd0\x19\x17\x6d\xa7\xfa\xfe\xe2\x8a\xaa\x3a\x56\xef\x21\x04\xaa\xd5\x29\x92\x0e\xd9\x47\xa6\xc3\x4a\x67\x57\xc2\x4e\xfd\x4d\xff\x7c\x40\x8e\x92\x84\xec\x1b\x85\xc1\x32\x0d\x18\xb7\x26\xbf\x17\x32\xfd\xd0\x33\x17\x43\x2c\xd1\x4b\x7d\x17\xfc\xe7\x17\x06\xd2\x37\x68\xa2\x58\xfb\xc6\xb7\xb8\xce\xa4\x41\x56\xf2\xf4\x92\x54\xfa\x13\x2e\x8e\x68\x82\x52\xc7\x08\xb0\x17\x9e\xc0\xc2\xee\xbd\x52\x8f\x24\xb4\xd4\x53\x47\xa3\xbd\xdb\xd3\x72\xa7\x3b\x79\xa7\xe5\xce\x6d\x56\x02\x05\x6d\xe6\xfe\xc2\x9b\x08\xa1\xc2\x5e\xef\x17\x55\x7a\xb1\x18\x7f\xe8\xfb\x6e\x87\xca\xc5\x8e\x37\xbd\x61\xe6\xbc\x18\xad\xa2\x08\xaa\x3a\x68\x54\x4d\x34\x37\x30\xd1\x80\x7a\x6c\x4c\x55\xa4\x89\x43\x90\xb2\x2d\x6a\x1d\x7e\x5f\x4d\xb0\xa3\x23\x77\x79\x6c\x7f\x72\xe4\xee\x89\x94\x04\xc6\x7a\x4f\x6e\x54\xf7\x9d\xfb\x50\xa0\xa3\xd3\x2d\xcc\xb7\x8d\xde\x2b\x84\xb6\x46\x84\xf0\x48\x7b\x31\xf4\x54\xbe\x34\x37\x09\x6d\xb7\x79\xa7\x73\xc4\xa6\x61\xa1\x41\x3f\x13\xe4\xfa\x7b\xb2\xaf\x57\x91\xe1\x94\xd1\x4d\x12\x95\xae\xd2\xb5\x74\x64\xf1\xf9\xcc\xfa\xa0\x85\xcc\xb3\x38\x26\x7c\xd7\xc4\x8d\x03\x19\xe4\x3d\xeb\x03\x98\xc2\xfc\xfc\x02\xa9\xa9\xd2\xb9\xb3\x03\x38\x35\x53\x30\x72\x62\xf5\x02\x51\x8c\x84\x53\x0f\x42\x7f\xdd\xff\x3b\x6b\xd8\xd8\xfe\xda\xe9\xe3\x6f\x2b\x53\xa7\x4d\xce\x2e\xe8\x1d\x36\x39\x1b\x68\x3b\x6d\x72\xb6\x4b\x76\x38\x96\x35\xc1\x88\x9e\x38\xc7\xcc\x36\x91\x36\xdc\xf3\xc4\x14\x3c\x21\xcd\x59\x9f\x3c\xf5\xbd\x78\x93\xe3\x70\x93\x58\x3c\xd3\x34\x73\x5c\xfe\x01\x87\xc9\xa7\xcb\x83\x2f\x98\x48\xe6\x6c\xd2\x65\xb1\x4f\xe2\x06\x9d\xa0\x1d\xc1\xcc\x36\x5d\xf7\xc5\x3d\xa5\x16\x68\xd2\xeb\x9e\x7d\x04\x5d\xda\x75\xa3\x03\x1d\xd9\xc2\xd7\x59\xfb\x5a\x31\xe9\xb3\x03\x2d\xd9\xf3\xb9\x23\x1a\xa0\x7d\xfe\x87\x2c\xd2\xd9\xd3\xa9\x2f\xea\x9f\x1e\x38\xf5\xfe\x22\x4d\x7e\xba\xa4\xf7\x3d\xa5\x93\x26\x06\x9e\x65\xf6\xdd\xe9\xcc\x6f\x6e\x65\x48\x87\x0e\xc9\x26\xfc\xbe\x53\x86\xea\xd2\xdc\x77\xce\xbd\x3f\x58\xef\xa5\x65\xfa\x83\x1d\x16\x3d\x11\x89\xf0\x00\x65\xac\x99\x7d\x7f\x31\xe1\xb4\x6c\xda\x79\xfc\x79\xed\xf6\x1b\x2f\x98\x44\x38\x2e\x0a\x8a\xf7\xe3\xf7\xee\x82\xcd\xcf\x04\xf7\xd3\x3f\x50\x9e\xea\x96\xde\xd3\x02\x28\x7d\x61\x3f\xa8\xfd\xd0\x3d\xaa\x13\xe3\xf9\x6c\x82\x77\x5b\xf3\x79\x49\x8b\x9f\xef\x55\xfd\x44\xb4\x9e\xae\x20\x9d\xe9\xd1\xad\x82\xe9\x2c\xa1\xf8\xd9\xbc\x70\x36\x6b\x3e\xa4\x99\xdd\xbc\x9b\xc1\x4e\x7a\xd0\x2d\x7f\x81\x5b\xae\x80\x42\xcf\x40\x4e\xef\xde\x13\x07\xa6\x19\x88\x98\xcc\x32\x0e\xa1\x99\xf6\x51\xe8\x69\xd1\xf3\x5a\xc1\x82\xd7\x7c\xf0\x20\x1e\xc0\x2e\x08\xfd\x22\x83\xb9\x87\x34\xe1\xf9\x68\xba\xb9\xb9\x3d\x73\xc8\x76\xbe\x79\x5f\xdd\xa4\x41\x13\xc7\x88\x80\x8f\x20\x4e\x4d\x94\x0f\x50\x68\xa2\x7c\x07\xe8\x37\xd6\xa2\xfb\x03\x6a\xa0\xcd\x51\xe9\xfc\x65\x20\x81\xfa\x34\xad\xfc\xfe\x76\x1c\x3d\x49\x91\xa6\xe9\x41\x49\x3f\xdd\x57\xfb\x43\xe6\x70\x7f\x20\xc8\x92\x02\xd5\x6b\xa6\x61\x08\x8b\x23\x5a\xc5\xd9\xe1\x18\x66\xe3\x7f\x7f\x12\x44\xfc\x37\x8b\xe3\x47\x85\xa3\x26\x7e\x20\x6f\xa5\x5d\x1b\x07\x20\x9f\x62\xc2\xdf\x83\x0f\x79\xfc\xaa\x9e\xc9\xaf\x6e\x10\xa2\x44\x9b\x70\x20\x0f\x4e\x28\x35\xd6\xbb\x7d\xd8\xe3\xd0\x0f\xbc\x51\x48\x42\x0e\x28\x96\xec\x59\x31\xb6\xf1\xef\x3f\xdd\xda\xeb\xb1\xc5\xfb\x2c\xc0\x38\x36\x7a\xa2\xe9\x8a\x31\x52\xcf\x24\x56\x18\x1b\xe7\xcd\x5d\x52\x28\x2f\xff\xc0\x7b\x91\xf8\x71\x94\xa4\x52\x9d\x42\x35\x65\xe3\xff\x28\x59\xd5\x4d\x03\xa7\xa7\xbf\x1d\x0a\x46\xa1\x86\x3b\xdc\x04\x77\x95\x3a\x2d\xa8\xce\xab\x43\x75\x54\x6c\x22\xcf\x43\xa2\xb3\xe5\x1f\x72\xa0\x22\x22\xd5\x55\x5a\xdf\xc1\x92\xd7\xd6\x57\x0d\x1a\xcd\xba\x58\x66\xa4\xd1\xcc\x1c\x80\xa0\x49\x7b\x14\x8c\x96\x99\x0e\xd5\x09\xbc\xf7\xc7\xd4\xfd\x69\x30\xf7\x78\x68\x5f\x8c\x04\x75\xdd\x6f\x60\x37\x4b\xb4\x0f\x80\x34\x55\x24\x9b\x03\xd9\x14\xad\xf2\x1d\x3d\x59\x40\x1f\x74\x1e\x71\x5e\x31\x3a\xdf\xdb\xf1\x78\xc0\xfb\xde\x11\x24\x83\xf5\x05\xbb\x67\x0f\x36\xaf\x50\xd5\xeb\x39\x60\xe3\x1a\x9f\x3e\x60\x6f\xb2\xb2\x70\x74\xc4\x49\x7b\x01\x51\x82\xfa\xe3\xde\x37\x80\xb3\xc2\xbc\x0d\x4f\x2b\xbb\x5f\x0f\x24\x9b\x09\xa5\xa1\x9a\x63\xd0\xde\xa8\x23\x6c\x50\xe9\x65\x4d\xcb\x40\x5a\x0b\xeb\xaa\x07\xab\x4e\x5b\xa7\x35\x10\x01\xa0\xa4\x50\x73\x0c\xde\xb0\x74\xe6\x8c\x41\xf8\x60\x2a\xe0\x4b\x65\x7b\xf7\x08\xc6\xea\x98\xcf\x90\x1f\xb1\x58\x47\x39\x22\x59\x57\x9d\x04\xe3\x15\xdd\x24\x75\x92\x26\x13\x60\x4d\xe5\x7a\xe6\x00\x56\x73\xdd\xad\x39\x66\x36\xa9\x4e\x27\x84\xad\x85\xeb\x98\xe4\x5d\xcf\x0d\xbc\xa1\xea\xe7\x0b\x1e\xcf\x1e\x48\x26\x9b\x10\x6a\x1d\x30\x9d\xb5\xcf\x73\x47\xda\x19\x8d\x6b\xe5\x40\x35\xae\xb4\xa5\x49\x8f\x35\x90\xcc\xb0\x58\xc3\x37\x76\x58\xeb\xad\x5d\x1b\x3b\xfb\xd0\x17\x3b\x20\x64\xf1\xff\xec\x43\xa0\x60\xc0\x31\xc9\xa6\xb5\x41\x33\x95\x15\x1e\x03\xb9\x20\x6c\x83\x19\xf0\x98\x6f\x16\x56\x07\x45\x8f\x27\xfb\xe0\x66\xf0\x44\x20\x39\x84\xad\xb9\xe3\x08\x76\xe1\x26\x28\x28\x3c\x0a\xc6\x29\xb6\xed\x2f\x79\xe8\xe6\x38\x1e\xbe\xad\x89\x3c\xe9\x12\x24\x40\x38\xce\xa4\xd1\x3f\x24\x8d\x9a\x27\x04\x3a\x5a\xd7\x35\xe8\x22\x6f\x35\xce\xa0\x9e\x48\xf8\x7f\x9c\x4c\x15\xec\xff\x71\xf6\x59\x44\x9f\xcc\x57\xe8\x06\x33\xd7\x99\x9e\x91\x67\x49\xe8\x6e\x5c\x49\xa2\x06\xc1\x28\x47\x6b\xcb\xc6\x45\x12\xfd\x4c\x05\xb4\xf7\x1a\xd3\x03\x2a\xd1\xf5\x1c\xcc\x9d\x5d\xdd\x24\xd9\xc7\xdc\x80\x30\x47\x1b\x86\x06\xec\x69\xc5\xca\xaa\x01\x4f\x25\x1b\x24\x06\x3c\x95\x6c\x1d\x1b\x84\x39\xd6\xb7\x0d\xa6\xa4\x50\x0a\xe4\x39\x00\x73\x3e\x02\x82\x65\x9d\xad\x70\x1b\x89\x73\xcc\x1e\x37\xd9\xc3\x02\x1c\x39\x2a\x6c\x15\x1c\xf7\x89\x67\xf7\x79\x41\x79\xea\xf7\x91\x17\x46\x37\xd6\x71\x93\x68\x2d\xfe\x83\x9a\x3f\xd2\xc8\x0c\xc0\x96\x6e\x76\xcc\x0c\x15\x9e\x47\xd8\xcb\xba\xf7\x0c\xec\x65\xb1\x7d\x7e\xe0\xde\xf7\xa8\xe1\x57\x64\x90\x1b\xa8\xf1\x62\x93\x47\xc0\x8b\xc8\x7e\x1a\xc1\x94\x15\xf6\xf0\x0c\x56\x74\xb1\x4e\x27\x7e\x5c\x6d\x71\x68\x00\xe9\xd8\x5a\x15\x3f\xae\xbe\x38\x34\x7e\x13\x2f\x4c\x3d\x73\x98\x6e\x60\xc7\xb3\x7b\xa0\x03\xb1\x16\x22\x60\x73\xf3\xbc\x06\x3d\x91\x94\x8f\x72\x06\x5d\xdc\xad\x80\x0b\x66\x11\xec\x1e\x06\x2a\xc0\x74\x09\x93\x40\xce\x8a\xfe\xf3\xff\x3c\x71\x96\x5f\xa0\x5b\x6a\xf7\x1b\xf0\xbb\x19\x7e\x26\x4c\xf1\x3c\x00\x2c\x59\x45\x1c\x28\x1b\x1d\x9f\x0f\x78\x19\xf0\xbc\x6c\xc4\xea\xc2\x29\x91\xe0\x49\x32\x30\x4a\x22\x06\xbf\x91\x5c\xad\xf5\x2b\x1d\x9d\x6a\xaa\x0a\x25\xb5\xa7\x06\x6e\xef\x56\xc7\x47\x61\xa8\x53\x77\x1f\x39\x77\xfa\x01\xb6\xbf\x8f\xa7\x59\x54\x0a\x00\xe9\x71\x03\x3e\x4c\xb6\xac\x04\xb2\xfe\xd9\x2c\x12\xcc\x59\xa1\xa2\xec\x33\xe0\x93\xf4\x71\x8b\x09\xe4\xac\xe8\xc5\x5d\xe4\xdc\x68\xb2\x80\xae\x6c\x8b\x09\xa2\x2b\x3b\xad\x04\x53\x52\xd8\xa9\x20\x68\x51\xb4\x32\x32\xa0\x11\x73\x08\x56\x34\x26\x0f\xf0\x07\xd8\xbd\xe6\x19\xda\x0b\xad\x20\x0d\xe4\xb6\xb6\x59\x21\x7a\x4e\x8c\x16\x10\x91\x8e\x56\x98\xc6\x8b\xad\xc2\x31\x84\xd1\x31\x2f\x52\x77\x07\xcc\x87\x1f\x1b\x66\xc0\x67\xdd\x9a\xe7\x48\x0d\xd5\xf0\x17\x98\x06\x1d\xfe\x81\x22\x2c\xbd\xb4\xbf\x1c\x47\xc1\x30\x49\x6b\x80\x63\x90\x5e\xb7\x86\x68\x2b\x6f\x7e\xb8\xa3\x5b\xdb\x1e\x48\xd9\xd7\x75\x54\x04\xcc\x7c\xd6\xb5\xc7\x20\xeb\xb8\xc1\xcc\x78\x61\x8e\x46\xb1\x95\x8f\x92\x2e\x10\x24\x69\x93\x40\x04\x14\xc0\xde\x34\x48\x06\xd6\x2d\x6d\x82\xba\x78\xdd\x67\x83\x56\x3a\xab\xd4\x22\x10\x95\x66\x7e\x86\x4d\xce\x39\x31\x62\x12\xcf\x7a\xeb\xcf\xdc\x22\xfe\x02\x88\x6a\x58\x20\xc1\x9d\x7c\x0e\x0b\x9c\x49\xbf\x84\xe1\x36\x5e\x49\x6f\x57\xdd\x60\xe2\x09\x5f\xef\x62\xf1\x3c\x32\x19\x54\x3e\xa9\x3c\xe0\x0c\xda\xe6\x7c\x63\x8c\x95\x02\x45\x23\xcb\xa8\x44\x4b\x10\xd8\xde\xac\x2c\x8c\x9d\x9b\xc2\x92\x13\xee\x45\x56\xd3\xc6\x4e\x03\xa1\xae\x67\xc1\x54\x11\xc3\x93\x01\xd4\x65\x55\x60\xec\xd9\xa7\x9b\x40\x9f\xa6\xf2\x20\x53\x09\x4f\x04\x0a\x98\x58\xf3\x17\x28\x75\xd7\x7d\x71\x0d\xa4\x76\x58\xde\xeb\x30\xbe\x59\x05\x16\x70\x2f\xea\x9f\x06\x6f\xd2\xe8\x16\xe9\xbf\xab\x2b\x63\x20\xf0\xd0\xf1\x9e\x41\x54\x35\x2c\x05\x01\xa2\xac\xbf\x0c\x60\x26\xab\xe1\x02\x19\x96\xad\x08\x0c\x26\x8b\x68\x9f\x16\x29\xc1\xc2\x6f\x10\xb1\x48\xc7\x15\x27\x27\x4e\xa3\x38\x49\xb5\x05\xed\x45\x22\xf5\x01\xbc\xbf\xad\x76\x89\x2b\xd7\x5f\x8b\x87\x30\xc2\xbe\x59\xa2\x5d\x04\x9f\x5e\x1c\x56\x1c\xf1\x45\x2a\x12\x26\x79\xa0\x54\xff\x0c\xef\x27\xf8\x19\x39\x90\x2a\x98\x0a\xd9\xca\xc0\x20\x4e\xb2\xb3\x56\xd0\x63\xdb\x3a\xea\xa0\xd5\x6e\x58\x0e\x22\x93\x71\xb7\xde\x20\x68\xc6\x33\x6b\x43\xdf\xd3\x7d\xdf\x0e\x02\x1f\x5d\x7c\x83\xf5\x89\xad\x79\x0d\xb8\x1a\x75\x5d\x84\x83\x0a\x22\x6b\x56\x03\x09\x20\xba\x01\x61\x30\xfa\xaf\x7d\xda\x64\xb0\x8a\xa6\x93\xb9\x8e\xdb\xa7\xcd\x03\xd9\xe8\x34\x0c\xe8\x78\xac\xcd\x8b\x87\xd2\x4c\x73\x35\xe1\x6c\xd4\x7d\x13\x9e\x04\x47\x8e\x29\x9a\xac\x3d\xe2\x80\x9e\xf9\xcb\x35\x9c\xfa\x01\xae\x6f\x92\x24\xf3\xc7\x35\xed\x6e\x73\xa7\x78\xf2\x1b\x39\xbb\x4b\x3f\x60\x7f\x08\x03\xcc\x1f\xe8\x96\x44\x9c\x3f\x4e\xae\x5a\x4c\xcd\x91\x96\x63\x12\xfb\x48\x36\xcd\x8d\x3c\xa0\x91\xcf\x2d\x79\x40\x5d\x32\x61\x97\xef\x41\x13\xb6\x43\x6b\xbb\x26\x7c\xbf\xad\x80\x9b\x1b\x35\xe5\xf1\xa7\x10\xd8\xb9\xe5\x24\x68\x48\x5b\xae\x95\x09\xa0\xd8\x0f\xd3\x7c\x92\x22\x8d\x9a\x19\x9a\xad\xf0\x9d\x2f\x9a\x8a\x29\x21\x3e\x0b\x47\xad\x3e\x0a\xf7\x9f\xa6\x09\xde\xe3\x76\xf6\x9c\xa8\x90\x67\x2d\xf8\x2c\x3c\xac\x75\x7a\xcf\xc2\xc3\x59\xaa\x94\x59\xb8\xe5\x75\x5e\x4e\x96\x4d\xb6\x7a\x77\x56\xd2\xa0\x89\xae\x3c\x0e\x75\x82\xce\x4a\x21\x30\xfc\x03\x27\x56\x13\x01\xef\x6e\x2b\xc7\x66\xc6\xfc\x49\xcb\x34\x89\xa4\xc2\x0d\xf0\x7c\x14\xa6\x98\xa9\x97\x12\x0d\x8d\x7b\xcf\xec\xd0\x30\x31\x1e\x16\x83\x04\xad\x84\x9e\x0d\xd2\xd4\x6b\xd1\x68\xfd\x91\x92\x69\xa2\x44\x9e\xed\xc4\x93\xbe\xdc\xaa\xae\x3b\x67\xcb\xe5\xd4\x64\xbf\xd8\xab\x38\x15\xc2\x44\x65\x65\xdf\xf5\x27\x15\x5f\x21\xcd\xca\xec\x49\xb5\x7f\x20\xd5\xea\x02\xee\xde\x56\x5d\xce\x9e\x44\x6a\x26\x3b\xb7\xa6\xfb\x80\xa2\xcb\x86\xe3\x99\xe8\x4c\x70\x67\x12\x9d\x79\x98\x9d\x73\x2f\xcd\xcb\x84\x26\xac\x7c\x68\xa2\x38\xf6\xea\x41\x13\xd6\x3e\x44\x61\xeb\x7a\x1a\xe0\x1d\xd6\x37\x33\x2d\xbd\xc3\xac\xc3\x9d\x83\x69\x27\xfc\x02\x87\xad\x2e\x07\xf3\x24\xa9\xc7\x91\x3b\x57\x8b\xf7\x62\xba\xea\x8b\xf2\x64\xaa\x0c\xd5\x2a\x9d\x73\x90\x81\xfc\xcc\xa9\x97\xa2\x6c\xd2\x46\xa9\x4a\xa2\x73\x06\xb3\x41\x8a\x86\xe0\xda\x78\xeb\x20\xcf\x99\x75\x1a\x13\x2e\xed\x56\xcc\x4c\x64\xc6\x58\x26\x9a\x46\x4e\xab\xdb\x27\xe3\x0c\xad\xb0\x9f\xc8\x5b\x66\x4d\xce\x84\x49\xb3\x9b\x46\x98\x34\x6d\xd9\x9d\x33\xe7\x51\x1f\x4c\xec\x44\x2f\x1d\x51\xa2\xee\xc5\x93\x25\x43\x7e\x7e\x1f\x16\x02\xcf\x33\x22\x0a\x7d\xe9\x9d\x8b\xdf\x6b\x08\x50\x99\x4d\x69\x38\xe6\x82\x34\x91\x4a\x64\x52\x83\xf6\x11\xca\x0b\xcc\xa5\x3b\xee\x5c\x1c\x91\xa6\x60\xf1\x34\x32\x83\x27\xd8\x13\xe2\x98\x04\x7b\xcb\xcf\xd8\xa6\xba\x5e\xce\x9d\x27\xa4\xf9\x17\xb1\x80\x5d\x59\xec\xe7\xdc\x59\x48\x42\x83\x40\xf6\x55\xab\x4c\x26\x34\x6c\xbe\x66\x4f\xd4\xb2\xf3\x7d\x75\x22\x70\x4f\x45\x71\xe6\x3c\xb8\xce\x7e\x3f\xa0\xed\xf4\xff\x14\xf3\xe6\x7f\x1a\xe9\x54\x82\x76\x4e\xb8\x55\xf9\xda\x3e\xcf\x1c\xb4\x06\xf5\x42\xbd\xb2\x79\x3f\x9c\x05\x1e\x43\x22\x19\xea\xb2\xf9\x8b\x3f\x9d\x43\x08\xe1\x6b\x4e\x33\x35\xcf\x9c\x21\xcd\xc8\x49\x99\xef\x21\x9d\x74\x9b\xf0\x1c\x9e\x88\xc8\x15\x8a\x9b\x54\x9f\x8d\xcf\x0f\xd0\xd1\x2b\xc1\xfc\x9c\xf4\xb3\x52\x09\xd2\x39\xa1\x4f\xf3\x7d\x7b\xbe\xc8\xb0\x4e\x6f\xa7\x8b\x88\xa0\xf8\x07\xf8\x24\x5b\x50\xc1\x08\xe8\xab\xf0\xbc\x78\x36\x9a\xdb\x51\x68\xce\xb7\xeb\x79\x53\x2f\xe9\x1d\x7a\x23\x04\xc0\x24\xa5\xea\xcb\x1b\xec\x9e\xe8\x42\xfc\x9c\x31\x75\xde\x40\x40\x70\xbe\x96\x4d\x20\x38\xab\x21\xe7\xc3\x41\xfa\xfd\x0e\x60\xa4\x89\x7d\xb2\x47\xb1\xf3\x83\x1c\x14\x1e\x34\x94\x63\xbe\x7c\x4f\x38\x65\xd9\x09\x70\x3e\xa8\xba\x6a\x66\x7b\x50\x3a\x40\x70\x6f\xfd\x72\x61\x96\x7e\x20\xc5\x5d\xcf\xa0\x50\x98\x67\x25\x96\x93\xfa\x6f\xfd\xe0\x90\xa2\x75\x59\xd0\x5b\xf9\x2e\xb5\x7e\xa0\x68\xf3\xff\x54\x28\x48\xee\x2d\x20\x33\x0f\x71\x6d\x54\xbe\xf9\xff\x8a\x06\xfc\x4c\x87\x3a\x51\xb4\x61\x9d\x05\xd5\xd7\x8b\x81\x86\xe7\x70\x31\xcd\x96\x95\xee\x0b\xda\x21\xdf\x0f\x57\xa1\xc1\x49\x3b\x7c\xc1\xf8\xd6\x37\xcf\x12\xd3\x26\x38\x0c\x6f\x21\xe2\xad\x2b\x61\xf8\x5c\x95\xd2\x5e\xa2\x6d\xd1\x9f\x4a\x25\x3c\xe6\xaa\x3c\x7a\x25\xdb\x16\x40\x8d\xaf\x46\xab\xf2\x16\xda\xfd\x02\xb8\x4b\xbb\x7a\x41\x81\x14\xde\x87\x8b\xf6\x39\xc7\xb0\x2d\xc0\x1e\xdf\xf8\x16\x15\x48\xaa\x78\x30\x57\x23\x0a\x2e\xfe\x61\xc3\x5c\xa8\x85\x46\x2c\xa6\x0b\xc4\x6a\x9c\x7d\x2d\x37\x60\xcf\xf8\x34\xd0\xf9\x81\x5f\xa0\x09\xc3\xb3\xc9\x54\x08\xce\x6a\xba\xa0\x62\x1a\xe6\xa0\x17\xe6\xfc\x1f\x4d\x14\xf2\x9e\x29\x7a\x4d\xd9\xc8\xb1\x3a\xe2\xe8\x74\x8b\x5c\x2c\x7e\x66\xfb\xc0\x4a\x50\xf2\xf9\x82\x67\xa7\xce\x81\xd5\xa9\xbc\xf8\x7c\x02\xb6\x91\xd8\x5e\xf4\x51\xf7\x6a\x40\xc9\x34\xa4\x83\x59\xa9\x47\xd2\x39\xb0\x46\x4e\x9d\x5a\x60\xe9\x5f\xef\xf6\x35\x38\x77\x9a\xec\x41\x0e\x10\x8b\x40\xb3\x64\xe4\xbc\x06\x01\xa2\x89\x86\xa3\x94\xc1\xf7\x1a\x14\x69\xcb\x5d\x3e\x78\x41\xc3\x0e\x8a\x34\x13\x89\x54\x08\x76\x3d\x5c\x91\x34\x8a\x06\xa8\xa2\x0c\x94\x57\x10\x8b\x4b\xff\xb2\xe0\x8b\x35\xa4\x3e\x5b\xc8\xcf\x55\x6c\x84\x58\x41\xc1\xec\x61\x44\x4e\xb5\xe6\x81\x2e\xe4\xfd\xf7\xa7\xb0\xa3\x05\x54\x63\xd8\xbc\x5e\x54\x53\x54\x38\x75\xae\x17\xd5\x6c\x75\x0a\x1d\xae\x09\xb1\x6d\x11\x86\x84\x5f\x3e\x18\xd6\x1c\x90\x58\x9a\x24\x26\x5c\x35\x3f\xc2\x2b\x6b\x08\xb5\xac\xd4\x84\x7d\x7a\xe4\x3a\xf9\x19\x9a\x31\x4b\x87\x99\xe3\x73\x0f\x0f\xca\x79\x8a\x02\x66\xbe\x57\x65\xd6\xb9\x16\x49\xf4\x73\xe3\x3e\xd5\x1c\x52\x2f\x66\xc4\xba\x32\xcf\x82\x9f\x31\x08\x6f\xe4\x85\x41\x48\xd3\xb6\x50\x70\xc2\xf7\xfe\x45\x9f\xab\x61\x31\x4a\x9f\x2b\x2b\xff\x17\x7c\xd8\x0d\x70\xd7\x9e\x02\x4c\xc3\xdc\xc1\xbe\x82\x29\x6b\x47\xdd\x55\xcf\x1b\xb2\x7b\x19\x9a\xad\xf4\xa8\xf2\x33\xe4\x80\x50\xcc\x82\x52\xed\xb3\xab\x0f\xce\x92\x2e\x8e\x0b\x79\xee\x0d\x22\x16\x4c\x99\x56\xb2\x2d\x7a\x50\xd9\xe8\xb2\x8e\x24\x59\x2b\x45\x97\x2a\x5b\x5d\xd6\x41\xa1\xab\x5b\xda\x82\xc7\x94\x61\xc8\x3a\x92\x79\xdd\x09\xf6\xa0\x94\x4b\xff\x63\xec\x5f\x92\xb6\x69\x95\xe5\x40\xb4\x7f\x46\xf1\xcd\xe0\x24\x77\xe8\xfc\x9d\x6a\x57\xcd\x21\x6f\x94\xa9\xa1\xad\x6d\xab\xa4\xf9\x97\xa5\x3b\xb8\x3f\xcb\x4c\x2a\x7d\x8d\xd7\xec\x7d\x92\x4c\x08\x20\x88\x08\xe2\x3a\x20\xc9\x58\x3f\x32\x1e\xde\x35\x7c\x06\x99\x19\xab\xfb\x80\x2c\x95\x96\xf7\xee\x69\x84\x4a\x63\x3c\xbc\x74\xf9\x98\xc2\xa9\xfc\x87\x35\xb0\x54\x97\x09\x03\x33\xcb\x3b\x10\x64\xbc\x15\x29\x4f\x04\x04\x72\x59\xfd\x50\x69\xd6\xc4\x75\xd6\x84\xf1\x52\xbb\x5b\xfd\x06\x91\xd8\x8c\x7b\x52\xf1\xe3\x83\x38\x29\xb2\x49\x79\x30\x28\xcd\x78\x29\xe0\x91\xd4\x1c\x00\x38\x26\x90\xb2\xf8\x83\x05\x85\x5f\x78\xd8\xa5\x96\x7f\x2e\x34\xdd\xcb\x7d\x32\xf7\xd4\xe1\xdf\xc8\xab\x61\x8b\xd4\x09\xdb\x9d\x4d\x3d\x27\x62\xe1\x4c\x95\xcf\x83\xcc\x3d\xf9\x03\xd6\x45\xf4\x0b\x27\x93\x60\x1c\x7a\x00\x3c\xfd\xf9\xfd\xc2\x35\xcc\x1d\xf0\xbe\xea\x1e\x90\x4a\xca\xa7\xfb\xa4\x93\x92\xc3\xe5\xce\x80\x78\x68\x49\x20\x27\x54\x4d\xc6\xb1\x13\x9a\xa6\xae\x32\x40\xfd\x0c\x6b\x7f\x35\x6d\xa8\x9a\x4c\x92\x4e\x94\xc6\x75\xdc\xd7\x09\xd5\x93\x05\xcb\x13\xd9\x49\x7d\x94\x4e\xe4\x96\x3a\x7c\x4b\x3f\xa9\x39\xb2\x99\xf5\x44\x72\x29\xb3\x96\x93\x62\x94\x0d\x92\x67\x5c\xb3\xd2\x98\x91\x32\xbd\xa8\xd8\xb9\xed\x72\xfa\xcd\xf3\x19\xdc\x27\x24\xb1\xea\x1e\x78\x3c\x25\x34\x9d\x11\x39\x9a\x75\x61\x3d\x51\xcd\xab\x4a\x32\x38\x69\xa6\xb3\xa5\xef\x4c\x74\x2f\xd2\x4a\x23\x41\x69\xcf\x6e\x67\xe1\x58\x75\xc8\x84\xa5\xdf\x08\x7f\xc1\x8a\x4e\x8a\x6c\x3f\x5f\x53\x8f\xa9\xf9\x24\x52\x38\xcd\xe7\x93\xc7\x9a\x83\xd2\x4f\x24\x3b\x35\xb3\x3d\xe9\x3e\x65\x3b\xe4\xc9\x12\x3d\x2a\x1d\xd6\x4f\x26\x9d\xb7\xfd\xf4\xa4\xc0\x56\xfd\x42\xe2\x0b\x82\x69\x09\x64\xba\xe0\x9e\x99\x40\x6b\x50\x26\x1d\x08\x3f\x5d\xe2\x54\x4a\x3f\x73\x42\x60\x1b\xce\x12\x7f\x66\x9e\x4a\xdd\x50\xcf\x4c\xb9\xd2\x13\x83\xe7\xbb\x8d\xb8\x27\x14\x53\xbd\xb8\x1d\x94\x5b\xc7\xfa\x2c\x0b\x6a\x4d\x03\x1e\x59\x96\x32\xce\x52\xa0\xa0\x71\x87\xc4\x0c\x89\x5f\x27\xf3\xa3\x3a\x55\xc2\xb9\x14\x55\x52\x4e\x9c\x85\x28\xef\x2f\x6e\x76\x61\x20\x1e\x2e\x84\x07\x61\x78\x89\x7e\x23\xd7\x95\x73\x6e\x9e\x28\x34\xd4\x82\xa1\x86\xde\xe9\xe7\x04\xd4\x55\x3f\x49\xbf\xc9\xb5\xa3\x1f\xac\x10\x09\xfd\x5e\xb3\x70\x0f\x74\x36\xf4\x08\x30\xcf\x76\xb7\x83\x16\x89\x87\x9e\x94\x08\x4d\x28\x3e\x89\xb0\x39\xa1\xe0\x09\x01\xd0\x82\xc5\xd9\xe0\xef\x6b\x88\x61\x8a\xb4\x79\xf8\x84\x3c\x68\x61\xee\x5c\xee\x5e\x5e\xf7\x86\xf8\x02\x9f\xd0\x46\x80\xfc\xc1\xcb\x19\x69\x11\x1b\xa9\xa3\x8f\x20\xb5\x50\xb6\xef\x9e\x9d\xab\xa8\x39\x77\x22\x87\xf7\x01\x01\x84\x3f\x18\x8d\x3c\x0b\x3f\x54\x01\x7e\xf6\xc3\x91\x6a\x27\xac\x9b\xc3\xb3\x42\xc6\x7c\x15\x4f\xee\x27\xdd\xe8\x6d\xf3\x3d\xfb\x8a\x8a\xd0\xef\x07\x91\x98\x06\x91\x74\xc6\x1b\xb7\x24\x38\x13\x1a\xb8\xd5\xdb\x1f\xf0\x64\x58\xa2\x23\x72\xce\x4f\xc4\x8b\x3f\x5c\x04\x12\xdd\x90\xf4\x73\x8e\x35\x09\x0f\x41\xa9\xc0\xd8\x84\xb4\xfc\xdd\x7b\xcf\xd4\x0d\xb6\x7c\x9e\x48\xdd\x50\x3d\x4d\x9a\x4a\x8b\x7f\x73\x16\x3e\xb6\x90\xf9\x7e\x18\x15\x45\x3e\x1f\x21\xb8\xab\x55\x63\x1f\xb2\xf0\x8f\xe2\xdf\xa4\x7f\xfe\x1e\x94\xc4\x74\xe2\x24\x84\xde\xfb\x93\xbc\xd5\xcb\x76\x32\x6d\xa3\x56\x01\x89\xb6\x2c\xd6\x9e\xe7\x22\x88\x1e\x62\xcd\x41\x93\xfa\xa4\xc4\x38\x7c\x26\x11\x16\xe9\xe4\x12\xe7\x45\x6c\xca\x7e\xb0\x16\x5a\x50\x2e\x19\x50\x6a\x9d\x13\x89\xb4\x92\xaf\x76\xe7\x45\x7c\xf1\x66\x41\x2a\xf4\x4d\xee\xbc\xde\x6f\x21\x7c\xec\x90\x14\xf6\x30\x65\x41\xce\xd7\x2a\x15\xc4\x79\x2f\xa0\x34\x02\x6c\xb3\xb5\xff\x1d\x1b\xba\x49\x0c\xb3\xbb\x03\xf7\x2f\x1e\xae\xf3\x05\x4d\xf1\x5e\x24\x5d\x3b\x4b\xcb\xad\x8d\xc1\x27\x1c\xe2\x7e\x04\x04\x24\x9b\xb0\x31\xf8\x44\xdc\x64\xed\x06\x18\x09\xcf\x7c\x42\x9e\xa5\x59\xd0\x90\x50\xf9\x0d\x3b\x24\x9f\x9f\xa0\x9c\x86\xd7\xe0\x13\x83\xb3\x83\xfb\xce\x67\x6d\x83\x76\x96\x42\x6f\x77\x8f\x20\xe8\xe6\x9e\x50\xf8\x1d\xde\x79\xa4\x97\x18\xaa\x8b\xdc\x4f\xb8\xc7\x39\x27\xe8\xf9\x20\xc5\x8b\x85\x05\x98\x81\x7f\x90\x0f\x79\xbc\xec\x30\x7f\xbe\xd8\x35\xa3\x01\xea\xe1\xfe\x48\x1f\x2f\xdc\x34\x2c\x08\x52\xc8\x96\xe6\xe3\x44\xaa\x09\x87\x94\x9c\xc8\x07\x3b\x5c\xc0\xe7\x84\x6b\x5c\x2f\xfe\x4d\x06\xa4\x0f\x26\x49\xa5\x4f\x30\x6a\x06\xb8\xf4\xd1\x39\x79\x40\xb5\xc6\x93\x97\x0f\x9f\x8e\xc9\xcb\x47\xf0\x03\xa4\xa7\x30\xf3\x9f\x84\x59\x73\x80\x05\xd9\x01\xb4\xe7\x3c\x91\xb2\xc8\x20\x51\x39\x6d\x9a\x00\x8d\xe2\x30\xd9\xa2\xc1\xd8\x66\xed\x0b\x05\xa2\x5c\xfd\xe1\x62\xf1\x5c\x51\xf3\xeb\x60\x99\x8c\x43\xbf\x19\x79\xd1\xf4\x9b\x02\x4d\xf7\x07\x3c\xc0\xc1\x23\x34\xec\x9b\x7b\xa0\xa5\x4d\xc8\x7a\xb1\x00\x80\x2d\xe9\x17\x45\xfa\x1f\x98\x28\xe1\x74\x0f\x0a\x3e\x5a\x3d\xe6\xe4\x98\xea\x01\x32\xbe\x8b\x1c\x5c\x81\xe8\x2e\xf9\xf9\x0a\x44\x16\x01\x09\x89\xdd\x75\x15\xae\x40\xa0\xfd\x3e\xcb\x93\x74\xfd\x3e\xd1\x1e\xf4\xfb\x82\xc4\xee\x01\xd7\x46\xf8\x03\x24\x17\xfe\xe9\x90\x12\x7d\xf1\x83\xc5\x89\x05\x42\xe4\x1c\x34\xc9\x48\xc5\x89\x7f\x13\x64\xad\x12\x6a\x41\x39\x47\xf9\x85\x54\x62\xce\xf5\x7e\x45\x78\x3c\x78\xd9\xe3\x5a\x55\x75\x90\x16\x3e\x6b\x04\x64\x87\x75\x7d\x81\x2b\xf1\x72\x26\x42\x7b\x51\xe7\xa9\x03\x70\xb1\x5c\x80\xed\xfe\x17\xaa\x03\x38\xd3\xfa\x05\xf9\xd8\x49\xce\x2f\x66\xed\xb2\x43\xc3\x95\xd7\x89\x10\x0c\x79\xdd\x52\xfd\x06\xa9\xa7\xd8\xe2\xf5\x09\xc4\xd5\xc9\x89\x2f\x28\x30\x9d\x17\xfd\xa2\x8f\x9c\x73\xff\x5e\x99\x40\x79\x88\x89\xdf\x5a\x98\xe5\x33\x27\x4a\x72\x21\x64\x61\x38\x9d\xf6\xc5\xb8\x50\xef\x76\x59\x07\xdb\x2f\x60\x6f\x24\x87\x5d\x2c\x76\x2b\x59\xf5\x2a\x54\x16\x47\x3f\x00\x3e\x89\x45\x5d\x85\x9b\xe7\x76\xe4\x38\xc8\x7f\xe5\xd3\x7d\x15\xb2\x65\x11\xa2\x0b\x2e\x79\xce\x08\x7d\x51\xf7\x69\x7f\x8c\xab\xae\xd2\x8d\xfa\x4d\xf8\x44\x68\x2e\x58\x5c\x9d\xc8\xfa\x82\xa4\xeb\x04\xcf\x57\x5d\xd4\x5d\x33\xae\x1c\x52\x4b\xb4\x44\x5d\x75\xd8\x58\x8e\xcf\xbf\x91\x05\xd6\x0b\x02\x4d\xa7\x0b\x0b\x5c\xc8\x9d\xd1\x7f\x4e\x2c\x02\x19\xcc\x55\x2f\xe6\x18\xeb\x5e\x32\x5a\x68\xed\xbd\x74\x51\xd3\xd9\xbd\xc8\xb0\xd0\x3a\xc5\xf3\xb5\xa4\x63\xcf\x12\xca\xcc\xe0\x90\xbe\x0b\x51\xa7\xce\x5e\x7c\xf5\x85\x2a\x7e\x21\x21\x2c\x41\xcb\xc0\x2c\x64\x76\x64\xb9\x18\x86\xda\xbd\x17\xfd\xfc\xe7\xcf\x4f\xb8\xdd\xb5\x1c\xf9\x86\x1f\x70\xa9\xdd\xe5\xc2\x67\x8f\x09\x7c\xf6\xd2\x2d\x71\x58\xb7\xd0\x6b\x25\xe5\xd0\x07\x48\x3b\xe6\x44\xb2\xd7\xa0\xa3\x8a\xc4\x8d\x6b\xf0\xee\x25\x25\xf1\x35\xd6\x95\x52\x63\x0c\x52\x5c\x21\xc0\x8d\x9c\x7f\x36\x7d\xdd\x89\xc7\x54\x34\xfa\x66\xfc\x92\x05\x84\x1b\x35\x73\x9d\x7a\xf4\x66\x69\x11\x33\x8a\x9b\x35\xdf\xec\x0e\x73\xc3\xc1\xd6\x39\x31\x6f\x52\x13\x89\xfd\x37\x2f\xd7\xa6\xe2\xf7\x47\x3c\x52\xf0\x90\x99\x04\x4c\x72\xd3\x8d\xcb\xb5\x93\x64\xde\x79\xe1\x7d\xd4\x03\xaa\x38\x04\x24\xbd\x42\x1c\x20\x75\x93\xda\xe8\xe4\xdc\x24\x2e\xd9\x23\x4c\xc2\xa4\x0f\x90\x14\xd0\x09\xa6\x6e\x7a\x89\xd8\xe1\xe6\x46\x3c\xd4\xe8\x42\xfd\x7b\x51\x97\xe2\x4f\x0a\xba\x10\x90\x4c\xf9\x67\x6e\x75\x97\xb5\xf8\x82\xaa\xf0\x2c\x34\x7f\xf2\xcd\xcb\xb5\x64\x6e\x5a\x60\xec\xb4\x73\x33\x20\xca\x96\xc3\x1b\x16\x15\x07\x12\xdc\xb8\x5d\x3b\xad\xd0\xcd\xcb\xb3\xbd\x5b\xee\xca\xc0\x94\xe4\x37\x06\xc1\xd4\x7e\x21\x87\x8f\x53\xe6\xde\xb8\x4e\xdb\x99\xf0\x26\x91\x11\xbb\xb9\xeb\xc2\x10\x21\x00\x52\xf0\x14\x55\x72\xee\x37\x5c\x71\x9d\x85\xe5\x06\x0d\x38\x5c\xbe\xee\x6e\x40\x3a\xc9\xe6\x77\x5b\xfb\xe9\x07\x18\x53\x64\xe5\x6e\x44\x42\x89\x58\x77\xe7\xbc\x05\x43\xe7\x66\x68\xa9\x91\x35\xd0\x49\x0f\x6e\x98\x23\xec\xe6\x71\xaf\xdb\xad\xee\x33\x37\x0a\xc2\xfd\xa0\x3d\xdd\x70\xed\x56\x71\x23\x8d\x60\x37\x27\xbf\xe9\x97\x6b\xd6\x7f\x23\x28\xdc\x41\x7a\x37\xcc\x0b\x0e\xe1\xb9\x59\x22\xce\x7c\xf8\x66\xda\x40\x33\xe2\x9b\x69\x03\xed\xad\x72\x83\x04\x38\x80\xe6\xfe\x28\x40\x32\x99\xba\x41\x00\x52\xcd\x7f\x75\x27\xba\x4f\x16\xe4\xd1\xa2\x21\xf4\xca\xec\xe5\x3e\x99\x08\x53\xbd\x9f\x0b\xe5\x05\x1f\xac\x17\xd6\x24\xde\xc8\xd0\xe3\x14\x03\xf7\xc9\x70\x5e\x6d\xe3\xc9\x55\xd7\x2e\xb0\x7c\x9c\x8f\x10\x6f\xb6\xde\x04\x24\xf8\x71\xd0\xc2\x0d\xb7\x12\x3b\x4f\xdf\xb8\xd8\xba\xba\xc4\xfd\xdd\x6b\xd3\x0f\xf9\x83\x5b\x89\x7d\x0d\x6e\x84\x6d\xd9\xb7\xfa\xbe\x60\x00\xf2\x7c\x10\x1b\xde\x9b\xfb\xe3\x01\x95\x74\x76\x23\xff\xcf\xe8\x62\x35\xf7\x05\xc7\x17\xb1\xec\xfb\xbb\xe4\xa6\xf0\xd3\xce\x19\xb8\xc7\x09\xb4\xd2\xfb\x37\x0d\x71\x82\x10\xc9\x7e\x9a\x98\xc4\x4d\xaf\x14\x9f\x8c\xef\x12\x9c\x5c\x2a\xe0\xfe\xee\xc0\xf9\x07\x01\xee\xc5\xc8\xfc\x02\x09\x40\x77\x0f\x0c\xea\x17\x44\x28\x8c\x62\xed\xee\xbd\xae\xbd\xd1\x2f\x9c\x70\x48\xd2\x22\xdd\xeb\xa8\x68\x8e\xb8\xe6\xda\xcd\xeb\x46\x61\x14\xa7\x61\xbf\x6f\x72\x3e\x4f\x12\xf9\x82\x5c\x38\xe5\x7e\x28\xc9\xf9\x8b\x27\x01\xaf\xb4\xcf\x8c\x0b\xb3\x30\x78\xb3\x50\x8a\xc5\xc9\x1b\x71\x61\x25\x98\x42\xe0\x22\x6c\xef\xf3\xfb\xbb\x08\x47\xbb\xb7\xdd\xcb\xe1\xd9\x43\x92\xb2\xfe\xbc\x80\xea\x55\xba\xd8\xde\x2f\xaa\x95\xfb\xf4\xbe\x34\xed\xfc\x3c\x00\x41\x70\x07\x48\x60\x6d\x8f\xf9\x1b\x37\x61\x5f\x8f\x6e\xdc\x84\xad\x4d\xb8\x19\x0c\x6f\xa7\xa9\x9b\xb5\x52\x8c\x7c\xeb\x2a\x2c\xfe\x7f\xbf\xc8\x15\x53\xdc\x23\x17\x5a\x22\xf2\x3d\x91\x2e\xc1\xe7\x8f\x39\x8e\x2c\x95\xdf\xcc\x71\x64\xd7\xaf\x7b\x22\x21\x96\xf1\x77\xdd\x85\xcd\x7a\x59\x1d\xef\x07\x1d\x26\xfd\xd1\x0c\xc5\xa4\x47\xa6\x7f\x03\x3d\xcc\xf5\x98\xa0\xda\xce\x5c\xf7\xba\xfd\x4a\x88\x7c\x0e\xde\x0b\xa5\xcc\x7c\x58\xfd\xce\x39\x7d\x1f\xde\x5e\x9b\x7f\xe3\xe0\x8a\x2e\x3e\xc7\x22\xad\x7e\x00\x74\x68\xee\x11\x94\x47\x8c\xf5\x81\x6b\xb4\xdd\x4a\x1f\x06\x86\x59\xf4\x7f\xe0\x1b\x6d\x4f\xd5\x87\x77\x59\x31\xa0\x87\xe6\xa9\xe8\xdf\xd8\x7d\xe1\xf8\x83\xab\x6d\x13\xfb\x78\x78\xb5\x95\x4a\xe0\x09\x6b\x5d\x3d\x00\x5d\x02\x8a\x7b\x5c\xdb\x2f\x18\x11\xca\x6c\xdd\xcf\xb3\x34\xe7\x12\x7b\x1f\x32\x7f\x91\xc7\x07\xa1\xce\xad\xbb\x7d\x1d\x1a\xbf\x80\x4c\x60\xda\xca\x87\xa1\xce\x41\x97\xb4\xa7\xf2\xa8\x6b\xdd\xe9\xe2\x69\xed\xfd\x03\x8f\xce\xfe\x77\xd9\x17\x1e\xdc\x36\xec\x3b\xf6\x34\xae\x99\x26\x88\x2a\xb6\xb6\x55\x3f\x8d\x7a\x18\xff\x6e\x20\xef\xfe\xbd\x10\x49\xe0\x75\x0e\x20\xe8\xfa\x42\x77\x8d\xc8\x3a\x66\x41\xf4\xfb\xf9\xe4\x86\x64\xe4\x7d\xfa\x3a\x94\x82\x09\x31\xd2\x2e\x65\xf5\x30\x46\x3a\x88\x27\x3d\x4b\x50\x90\x78\xfb\x8c\x85\xcd\x02\x73\xd0\x30\x29\x36\xf4\xc0\x83\xd3\x39\x9f\x9e\x41\xe9\xc6\x1b\xb7\xe4\x7a\x51\xab\x87\x8e\x07\xf6\xf4\x7b\x4e\x38\x2d\xeb\x54\x3e\x2c\xed\x1a\x44\xd6\x1f\xf8\x70\x5a\xdb\xfa\x9c\x14\xb1\x24\xf1\x3e\xcc\xee\xeb\xc8\xba\x07\xd9\xf4\x9a\xed\xe3\xcf\x45\x32\x2d\x09\xf7\x81\x9a\xd8\x9c\xe2\xb9\x0a\xbb\xf0\x0b\x8d\x0f\x04\x16\x19\xaa\x7d\xef\x1e\xb8\x0e\xd8\xe7\xe8\xa1\xd6\xd8\xbe\x74\xcf\xb5\xca\x8e\xbb\x0b\xc8\x00\xa2\x71\xcf\xbd\x96\x42\x5b\x06\xbd\xb1\x3d\xd3\x9e\x7b\x41\xa5\x2d\xbb\xd7\xda\x68\x8c\x7b\x81\xa9\x2d\xbb\x3b\x4f\xbf\x07\x61\xd9\x2a\xa3\x1a\x82\x76\xec\x24\xf1\xdc\x10\x50\x8d\x58\xcc\xd7\x12\xaa\x1f\x80\x7e\x98\xc6\x31\xad\xb0\x3d\x03\x9e\x87\x19\x17\x25\x4f\x3e\xcb\x07\x22\xfb\x13\x90\x0c\x63\x37\xeb\x7f\xd9\x2a\xff\x3c\xa4\x7a\xe2\x9b\x0f\x99\xa0\x09\xc2\x43\xa8\xb5\x12\xd0\xfe\x5a\xde\x7a\x10\x0b\x6d\x23\xe6\xf3\xf1\xb8\x68\xbd\xe5\x03\x96\x66\xfb\xe1\xf3\xae\xe3\xa3\x0e\x19\x0a\x6d\xcf\xc5\xe7\x25\x59\xd3\x6d\xe1\x41\x15\x86\x61\x44\x7d\x17\x89\xd1\x4a\xbe\xa8\x85\x2d\xa1\xf4\xa1\x3e\xd7\xce\x91\xcf\x84\x08\x14\xfd\x42\xe6\x10\x7e\x50\x20\x7f\x08\x06\xf8\x77\xda\x5e\xf8\xd0\x61\xc2\x5a\x8c\x67\x72\xda\x7b\x1d\xdf\xc5\x7f\xc4\x9a\xdf\x83\xe2\x46\xf4\x1b\x88\x44\x13\x4a\xbd\xc7\x3a\x4d\x43\x0f\x6e\x7e\x91\xf4\x00\x69\x9b\x75\xa4\x5f\xf0\x0f\x6b\xfa\xdf\x10\x38\x4d\x0d\x41\x7f\x06\x6b\x18\xde\xb0\x80\xf0\x27\x00\x5b\x08\xf3\x46\x3a\x58\x8a\xd3\xbe\xf0\x25\x68\x76\xb2\x78\xe9\xb5\x69\x1b\xf3\xcb\x94\x29\x56\x3a\xbc\xc8\xef\xeb\x8b\xf4\x8b\x8c\x28\x56\x1b\xbf\x89\x4b\x23\x91\xfd\x5d\x85\xea\x25\x52\xbc\x08\xe9\xb5\xd2\xf7\x45\xc2\x5f\x2b\xd3\xdf\xc4\x69\x08\xf1\x5f\xaa\x20\xac\x30\x78\xd3\xd2\x73\x68\xe6\x88\x2b\xb1\x09\xe0\xcd\xa8\x6e\x2e\x34\x7e\x73\x43\xbb\x3a\x80\xfe\xc0\x1a\xa5\x17\xba\xc8\x1e\xfe\xca\x95\xfb\x45\xbd\x79\xeb\xa4\x5f\x16\xa1\x0a\xcd\xbd\x01\x9d\x82\xa1\xa3\x92\x4d\xa2\xe7\xcb\x2a\x55\xf5\x67\x7c\x92\x6f\x89\x8a\x6f\xe1\xaa\x6a\xa3\x58\x50\xc0\x3a\x94\x17\xba\x04\xdf\x7f\x5f\x04\x90\x58\x05\xf6\x52\x31\x50\x7f\x1e\x50\x38\x28\xfe\x02\x1e\x7f\xe2\xf5\x2f\x5c\x31\x7d\x35\x7a\xeb\xda\x48\x0d\x49\x57\x4c\x6b\x5d\x5e\xc4\xf8\x5a\xe1\xf1\xc2\x13\xd3\x2a\xb2\xb7\xf2\xa2\x50\xfc\x01\x8f\xb2\x94\x13\xef\xd2\x0c\x88\xf3\xbd\x0c\x00\xb1\x1e\xe6\x6d\x44\x59\x69\x40\xde\xb6\xc0\xd2\x27\x88\x00\xf1\x7d\xe6\x45\x3a\x5f\x67\x71\x7c\x1b\xa9\x64\x75\x97\x15\x1f\x68\x5e\xd4\x48\x3a\x83\xe2\x4b\x0d\xa4\xf5\xc4\x2f\x73\xab\x04\x99\x3f\x5f\xa8\x1f\x9a\x9d\x72\x5e\xa8\x1f\xcc\xe8\x5e\xc8\x15\xbe\xaf\xbc\x30\xb6\x5b\x26\x7e\xa1\x7d\xb0\xd0\xfc\x22\x87\x9d\x05\xf7\x97\x75\xa8\x7a\xf5\x0b\x40\x3a\x9f\x89\x7e\xe1\xb7\x40\x64\x94\xb0\x38\xef\xcb\xd2\xa7\x5d\x22\xc4\x3b\x08\x91\x66\xcd\x22\x07\x41\x02\xef\x0b\x6f\x49\x8b\x97\xef\x20\xc8\x5a\xd7\xb1\xd6\xd1\x1f\x90\x07\x4a\x40\x78\x21\xa5\x58\x8c\x79\x07\xef\xc2\xde\x8a\xb1\x90\xd2\x40\x3c\x7c\xe0\x41\x28\x55\x7b\x1e\x30\x9e\x5b\x08\x79\x59\x1d\xd5\x22\xde\x7b\xae\xdd\x13\xdc\xe7\x5a\x3a\x0d\x02\x9d\x82\x45\xa3\xf7\x13\x6c\xa2\x83\xd0\x5e\x78\x4c\xfe\x2c\xdd\xc9\xe3\x2a\x86\xf3\xb2\x2e\x55\xd0\x65\xe2\xa5\xe0\xe3\x79\x21\x78\xc5\x7c\xf8\xbd\x08\xb4\xdb\xa9\xef\xd2\xdd\xe0\xbd\x78\x5d\xfd\xf9\x02\xe1\x21\x76\x49\x79\xaf\x55\x06\x53\x50\x5f\x54\xfd\x88\x4f\xbe\x10\x73\xba\x2e\xfe\xef\x27\xe6\x34\xbb\x7d\xbd\x37\xf9\x85\x71\xea\x06\xce\x89\x0b\xbe\x88\x54\x36\xe3\x7d\x97\x90\x63\x9c\xc2\xc5\xff\x87\xc9\x41\xc6\x71\xc9\xa7\x17\x22\xce\x0f\x4b\x83\x75\xdb\xf2\xc9\xcb\xf4\x2f\x87\x01\x80\xa5\xd8\x00\x3d\xbc\x20\x4b\x54\x7e\x71\xcd\xef\x12\xcc\xde\xe5\xf5\xa9\x3b\xd4\x0b\xf1\xe4\x87\x3b\xf1\x8e\x6e\x37\xe6\x17\xb5\x0f\x5c\xad\xf9\xfd\xae\xdc\xc9\x56\xa8\x97\xf2\x89\x99\x13\x85\x8d\x6e\x8e\xf8\x72\x04\xad\x01\x1d\x36\xed\xeb\xf3\xd2\x9a\x6c\xc7\xe7\x97\xa5\x0d\xec\x29\xfd\xce\xb5\xf0\x9a\xd6\x5c\x0b\x2b\x28\x18\x50\x6c\x28\x59\x4d\x34\x48\xad\xf4\x4e\x46\xea\xfe\x5d\x99\xd7\x77\x12\x66\xed\x3c\xc5\x99\xe2\xee\x59\x4a\xc4\x00\x02\x73\xc4\x6c\x26\x13\xcc\x59\xf7\x39\x59\x5b\xde\x7e\xce\x13\xd7\x6b\x07\xd1\x4e\x14\x1e\xed\x3f\xbf\x79\x08\x45\xd8\xe7\xb1\x68\xc3\xd0\x83\x81\x60\xaa\xac\xdf\x38\x94\xe2\x46\x13\xb6\x63\x93\x8a\x89\xa4\x29\xa6\xf2\x13\xb7\x65\xd3\xe8\xf9\x09\x3f\xc9\x6b\x3c\x03\x21\xd2\x14\x42\xe5\x14\x92\x1e\xd0\x86\xa0\xfb\xf6\x64\x1c\xb1\x3d\x7f\x66\x00\xf9\xaa\x7e\x01\xcb\x2a\x7a\x37\x03\x41\xf4\xfb\x90\x8d\x83\x41\x62\xbc\xd6\xcf\x90\x10\xbf\x74\x22\x67\xa4\x24\xa4\x23\x3b\x23\x49\x6a\xf3\x1b\x38\x92\xd5\x2f\xac\x75\x15\x0c\x8c\x99\xb1\x27\xf5\x64\xf9\x85\xec\x17\xce\x4f\x38\xd6\xb5\x6f\x32\x87\xb1\xf5\xd8\x33\x52\x0e\x10\x31\x9b\xac\x4c\x15\x7e\xba\x20\x86\x1b\x1d\x22\x2b\xa2\x0a\xaa\xc4\xbd\x10\x0c\x69\xa5\x82\xd7\x66\xa5\x35\x2f\x7f\xc1\x0b\x95\xee\x11\x93\xa5\xa6\xaa\xc1\x4a\x70\xc3\x12\xce\xce\xc4\xcd\x70\x97\xe4\x25\xcd\x83\x72\x77\x04\x24\x4c\xd6\x3f\xbb\x99\x26\xbc\xd3\xb4\xb4\x8c\x4d\x76\xe8\xc9\x64\x70\x72\xfd\x79\x00\x94\x33\x0e\x67\xea\x94\x44\x7d\x26\x2a\x51\xe5\x9f\x2e\x81\x73\x3a\xf8\x13\x3e\xa1\x3f\x2b\x9b\xd7\xee\x69\x12\x14\x33\xbd\x9b\x0c\x5e\xb6\x21\x7e\x52\x72\x34\x3e\x7c\x92\x63\x72\x04\xe0\xcc\x9c\xa4\x7f\x4f\xce\x41\x1d\x14\x4a\x47\xc6\xf2\xc2\x98\x07\xf1\xa2\xc9\x60\xe5\xee\xad\x40\xe6\x98\x9f\x85\xa5\xcb\xa7\xad\x12\xb3\x10\x28\x2d\x03\x04\x47\x6b\x9c\x27\x1d\x38\xa5\x94\x99\xd4\x32\xd9\x39\x7c\x0e\x32\x5c\x81\x80\xd4\xb5\x76\x1c\x9c\x4b\x0a\xf0\xe1\xa5\x7a\xc3\xc4\x00\xc9\x48\x7e\xf6\x12\x1e\x74\x5d\xa2\xeb\x3c\x29\x1d\x9b\xa2\x9d\x6b\x92\x7e\xb0\x10\x50\x63\x7e\x62\x43\x76\xc5\xf2\x79\x76\xfc\x16\xcc\x30\x2c\xfc\x76\xf0\xad\xfc\xcf\xd9\x3e\x09\x92\x16\x81\x0e\x73\xba\xd4\x4c\xe4\x2e\xb1\x2b\xda\xbc\x22\x22\x49\x34\xde\xb5\x40\x76\x07\xd8\x06\xaf\x22\xb3\xd0\xda\x8d\x70\x22\xb7\x89\x05\xfa\xf9\x09\x04\xdd\x95\x05\x27\xf4\x20\xae\x7d\x30\x59\x3a\xc9\xbe\x91\xf3\x42\xaa\x5c\xf1\xca\xb9\xf4\x22\xa6\xa9\xcc\x6d\x62\xeb\xcb\xbc\xe3\x27\x52\xa4\xbf\xd2\xd5\xcd\x3b\xff\xf3\xa7\x0d\x63\x1e\xb4\x2a\x56\x97\xcf\x9b\xd7\x3a\x4f\x08\x3a\x94\x6c\xb7\xc4\xc9\xa4\xb7\xed\x07\x20\xca\x8b\x26\xb9\x94\x28\xda\xcf\x03\xc8\x8b\xa6\x5d\xcf\x9a\x93\xfa\xa4\x16\xc5\xc8\xcc\x0c\x73\xf6\x36\x9f\x0c\x91\x6d\x3f\x5f\x80\xb3\xe8\x16\x33\x97\x69\xe1\xe7\x0b\xb0\x2e\xe9\x0c\xe7\xcb\x2b\x8a\x71\x01\x1e\x6e\x16\x63\xe6\x4b\xba\x6f\x7c\x5e\x5a\x11\x6f\x36\xf2\xe0\xda\x32\x30\x5f\x86\xe2\xb9\x9d\x36\xd9\x9f\x07\xc8\xfe\x68\xf4\x45\x1a\xdc\x2e\x9d\xd7\x7c\x59\x99\x4b\x93\x7a\x49\x48\xfc\xfd\xe2\x55\xee\x00\xf8\x2c\x35\xdb\x84\x52\xc5\xd9\x57\xe7\x32\x0c\x78\x0e\x08\x4b\xe9\xd2\x1c\xcd\xb9\x96\xc9\x5f\xac\x23\xa7\x21\x3e\x31\x28\x59\xed\x36\x11\xb7\x32\xa4\xe0\x98\x93\xac\xca\x18\xfd\xc9\x2d\xc9\x76\xe6\x39\x17\x46\xaf\x21\xc6\x81\xda\x07\x22\x76\xe3\x38\xe0\x20\xbf\x7b\x1c\xc7\xc1\x3b\x4e\xf7\x83\xf4\x2d\xdb\xe1\x0f\xa8\x19\xea\xee\x11\x1b\xb1\x35\x68\xe3\x80\x5e\x47\x1b\x31\x8e\x55\x51\x3d\xbb\xc7\x0b\x93\xc8\xfa\x4d\xb5\xce\xe6\x4b\xe3\x80\xdd\x60\x6c\x21\x78\x1c\x48\xa9\x22\x42\x31\x0e\xa8\x7d\xa2\xdb\x51\x7c\x61\x34\xb5\x23\xa3\x4a\x1f\xea\x0f\xa5\x17\x8e\x9f\xdf\x70\xec\x33\x40\x14\x84\x86\x7f\x57\x8c\x9f\xf4\x1b\xf9\x8b\x83\xc7\x23\x9d\xa9\x9a\xe2\x27\x06\xb5\xb6\x19\xe9\x38\xc2\x89\x5d\xf0\x80\xd4\x64\x75\x7f\x80\xf0\x91\xea\x0f\x30\xc3\xc3\xbf\x27\xcc\x83\x5a\x74\xc4\xbc\x48\xf9\x32\x0e\x64\x4f\x19\xde\x94\x18\x41\xd8\xb4\x27\x11\xb5\x6b\xb3\xdb\x1b\xde\xd7\x1e\x45\x6a\x15\x86\x5f\xa0\x44\x53\xfc\xe0\x05\x9e\x68\xce\x91\xea\x96\xae\x39\x21\xd0\x38\x79\x0d\x90\x86\x4e\xe9\x38\xc6\x01\x15\x95\xb4\x79\xe3\x48\x5c\x54\xb7\x53\x4b\x56\xb5\xea\x48\x03\x1c\xbd\xea\x10\x67\x14\x60\x35\x8e\x44\xa7\x3e\xb7\x13\x2b\xdc\x21\x19\x7b\xd3\x0b\x99\xc9\x39\xbc\xea\x70\xc1\xab\xc6\x75\x26\xa9\x53\xc2\xa6\x71\x64\x12\x99\xe1\x07\xf0\x8d\xf7\x24\x19\xb2\xe2\x49\x42\x3a\x19\x41\xeb\x0a\x1f\x9a\xfe\x03\x02\x52\x90\x18\xd3\x32\x25\x49\x9f\x2e\x48\x2b\xf2\x82\x1d\x07\x02\x5a\x94\x56\x7f\x1c\x05\xa7\x2f\xe8\x7d\x84\xa7\x8c\xa0\xf7\x21\x9a\xfc\x00\x0c\x6f\xbc\xf1\x57\x5a\xb9\x71\xa0\x64\xc3\x08\x5a\xe1\xf2\xa1\x71\xf6\xec\x0a\xd1\xd6\x58\x52\xb0\x05\xd1\x2f\x90\xb7\x18\xf1\x0b\xf7\x44\xe0\x22\x70\x25\xf9\xa4\x7e\x72\x4f\x93\x2e\x7d\x1c\x95\xac\xc5\x47\x97\x81\x2b\x9e\xcf\x27\x18\xa5\x1f\x24\xa0\xf5\x4d\x5e\x4a\xe3\xa8\xf0\xfc\x4f\xee\x00\x73\xf2\x49\x61\x09\x88\xe0\xdf\xbc\xfe\x7a\x92\xf5\x81\x95\xd3\x2f\xbc\xb8\xb1\x6b\x07\xe0\xdd\x27\x6f\xaf\x71\x30\x92\xf9\x07\x44\x28\xd3\x46\x14\x04\x8d\x04\x72\x68\x92\x88\x5c\xce\x46\x12\x28\xd3\x86\x17\x01\xf9\x56\x94\x67\x74\x1c\xad\xe3\xb7\xdb\xa9\x9d\x19\x7e\xe1\xc4\xa6\xfb\x05\x64\x78\x36\x9e\xc3\xd9\x6f\x78\x9b\x90\x83\x2f\x9b\xda\xc0\xb5\x4f\xd5\xde\xc6\x01\xcd\x9b\x12\x85\x8c\xa3\x73\x46\x02\xb8\xa7\x7f\xfe\x14\xe5\xa8\x1d\x07\x0d\x7c\xc5\xfd\x91\x8f\x79\x53\xa8\x9a\x33\xc0\xcc\xe9\xf7\x03\x31\x3c\x87\x86\xe9\x1b\x54\x75\x23\x0a\x6f\xfa\xc2\x3c\x2d\x6a\x27\x8f\xf0\xb6\x75\x32\x36\x9f\x94\x8e\x7d\x4a\xda\x16\x06\xc6\x34\xbf\x30\x02\xce\xa6\xba\x5c\x16\x43\x43\x39\x68\xfa\x29\xee\x82\xd7\x5d\xb3\x36\xe6\x00\x0c\x06\x6b\x50\x8f\xed\x37\xce\x85\x1d\x82\xf3\xa4\x10\xd0\xb4\xd8\x27\x19\xec\xcf\x1b\x38\xe2\x45\x70\xb2\x82\x44\xfd\xf9\xa2\xc2\x31\xcf\x1f\x00\xc5\x8d\x1f\x27\x75\x4c\x5a\xbc\x93\x2b\xa1\x79\x31\x7c\xb9\x99\xe7\x43\xd7\x36\x7c\x66\x96\x0d\x72\x08\x84\x8b\x36\x0e\xef\xf0\xb5\x08\xa3\xdf\x00\x75\x4f\x9a\xf7\x45\x49\xd5\xfc\xe2\x93\xc5\xd3\x61\x9e\xca\x9a\x5d\x3f\x4c\xf9\xa2\x38\x55\x04\x26\x44\xe9\xe0\x17\x98\x7b\x59\xd6\xfd\x71\xdc\x6b\x7f\xb4\x10\xcb\xa2\x68\x96\xb0\xdc\x6c\x3c\x2a\xd4\x6f\x87\x31\xfb\x5e\xa7\xdf\x2f\xa0\xa4\x55\xd5\x52\x2c\x59\xb7\xfb\x01\x77\xc3\x8b\xf7\x50\x29\x62\x38\xa1\x60\x1b\x49\x5d\x3e\x44\xd5\xae\xb5\x79\x68\xcd\x36\x54\x0f\x82\x74\xbc\x78\x4c\x0b\xd8\x2c\x52\xb1\x08\x84\xc5\x01\x48\xc7\x4a\xb1\x3f\x0e\x78\xbd\x28\xc0\x7d\x1c\xcb\x42\xe8\x85\x78\x91\x56\xaa\x08\x46\x06\x55\x37\x13\x2d\xe4\x00\xcc\x3f\x2f\xd0\x2e\x6d\x2c\xa4\x8a\xee\x47\xc4\x98\x34\x65\x98\x75\x31\xc4\xe3\x47\x32\x9c\x4c\x8c\xa3\x69\xcd\x85\x13\x7f\x73\x17\x1a\xc7\xe4\xee\xba\x7b\x88\xdf\x12\x48\xc2\xd2\xb8\x0d\x3f\xc0\xa2\x64\xff\xe6\xf5\x50\x87\x33\x20\x5e\x63\x58\x8e\x0c\xcb\xe2\xa8\xd3\x1a\x0e\x0a\x72\xdd\x0f\x78\xad\xd6\x4e\x04\xd6\xf5\x52\x3c\xc6\x08\x81\xa3\xaa\xcf\x40\x65\x81\x56\x32\x04\x64\xce\x49\xfe\x80\x5e\xfd\xfb\x0e\x37\x02\xb5\x6a\x16\x5f\x43\x20\x1a\x0f\x0f\x0a\xea\xb8\xb5\xeb\x23\x30\xff\x9e\x22\x2c\x46\x60\xba\x3d\xd5\xb5\x1e\x81\x85\x1e\x64\x84\x1e\x21\x2e\xb8\x35\x6a\x5c\x8b\xa1\x4f\x22\x19\xa7\xfa\x8c\xb4\xe0\x78\x7d\x23\x1c\xa1\xb2\x5f\x20\xc5\x15\x0e\x05\x96\xee\x92\x97\xc6\x08\xb0\x6b\x2a\x92\x70\x04\x96\x29\xb5\x48\x17\x12\x17\xcf\xbf\xb9\x78\xd5\x0f\xc8\xde\x87\xbb\xa4\x94\xa8\xd3\x16\x96\x61\x53\x87\x29\x40\xcb\x55\xe2\xe1\x51\x79\xc6\x87\x3b\x7d\xf8\x86\x76\x99\xa1\xca\xd5\x98\x92\x3b\xdf\xd0\x0e\xa0\x7a\x69\x34\xa0\xb0\x5f\x8e\xec\x1e\x50\x58\xd4\x50\x21\x61\x9e\x0a\xd3\x8f\x00\xb1\x2e\xfd\xbc\x8f\xd8\x24\x2f\xdd\x52\x42\x19\x13\x91\x59\x46\x25\x64\x47\x28\x0b\x44\xf5\x08\xc1\x4f\x86\x82\x11\x28\xe8\x65\xb7\x63\xa1\x4c\x33\x02\x85\x3b\x5d\xc3\x42\x61\x58\x8f\x37\x83\xa9\x69\xc6\xcf\x83\x8b\xab\xa0\x4f\xea\xda\x3f\x4d\x13\xe2\x5a\x31\xd4\xb0\x66\x0e\xa3\x48\x5d\x24\x41\x9b\x53\xc1\x26\xb2\x7f\x37\x8e\xa9\x79\xa2\xd6\xe9\xf0\x29\xaf\xcc\x46\xeb\x0f\xb0\xb0\xd5\xbf\x79\x40\x8d\xe8\x94\xbe\xc4\xa9\x02\xdc\x9d\x86\x78\x78\x80\x34\xd6\xbb\x47\x6c\x4c\x0a\x2a\x98\x21\x7d\xa9\xb2\xf9\x08\x90\xbe\x7c\x33\x0a\x6d\xad\x9b\x26\xdd\xd6\xba\xf9\x01\x55\x2e\xc6\x86\x4e\x35\xa9\x71\x94\x02\x55\xd1\x17\x9d\xfc\x55\x6c\x27\x50\x82\xea\x46\xc0\x8e\x83\x20\x57\xe9\x11\x3e\x91\x2a\x66\x63\x18\x25\xa8\xe2\x1e\x16\x54\x7e\x01\x6c\xc9\xf3\x42\x2c\x85\x6f\x1e\x01\x39\x91\x4b\x34\x46\xd1\xfc\x69\x20\xe9\x62\xe5\x1b\x5c\x40\x24\x71\xf5\x61\x1d\x8b\xa4\x68\xde\x4c\xfd\x62\x9c\x1d\xb4\xd9\x18\xc3\xe0\x7a\xad\x92\x6f\x23\x8c\x05\x83\x1e\xb0\x4e\x45\xf3\x6e\x9d\x5c\x39\x75\x79\x66\x38\x90\xaa\xc7\x73\xad\x93\xa0\x66\x3d\xd3\x18\x84\x10\x30\x65\x0e\x93\xdf\x93\xeb\xf2\x57\x37\xa4\x70\xe2\xc2\xe3\x25\xa0\x68\x65\x62\x7f\x2d\x2e\xa9\xde\x2f\x5c\x70\x24\x74\x06\x88\x56\x25\x4a\xf8\x0f\xac\x7a\xd1\xdd\xe5\x05\x5e\x5e\xb5\x04\x94\xac\xaa\xb6\x85\x92\x55\xf7\x2a\xb3\x9c\x6a\xf2\x0b\x98\xa0\xa9\x30\xac\x9e\x63\x78\x63\x2f\x72\x0b\xe3\x0e\x65\xb1\xe1\x65\x67\x65\x8c\x66\xe4\x41\x39\xd4\x31\xbc\x8a\x74\x81\xf6\xc5\x33\xdc\x15\x5e\xe8\x82\x0a\x96\xd0\xe0\x79\x22\xf2\x37\x05\x4d\x13\x75\x2f\x46\x75\x3b\xb6\xa1\x7a\x44\xdc\x61\x4c\x4a\x6e\x04\x11\x76\x8f\x87\x22\x66\x26\x90\x4c\xec\x67\x96\x88\x7c\xce\xbe\xa9\x87\xa5\xc4\xd4\xfb\xf0\xf3\x1a\xd5\xef\x83\xfd\x59\x7a\x78\x3e\x89\x29\x98\x29\x33\xbb\x73\xf3\xce\x3e\x27\xf8\xa5\x7f\x63\x02\xc6\xe5\x87\x1e\xba\x26\x1c\x70\x7e\x2e\x46\x05\x4a\x7d\x96\x1c\xe0\x17\x36\x4c\xda\x10\xf4\xab\x3a\x3d\x23\xbc\xd0\x5a\x19\x62\xb8\x36\x37\xaf\x30\xbc\xc0\x2c\xd5\x07\x38\x7d\xf5\xee\x2d\xa2\xe7\x72\xf3\x26\xb2\x3c\x6b\xf4\xa6\x4c\xfa\xcb\x79\x57\x26\x65\x13\xa9\x04\x02\x13\xe3\x34\x77\x3a\xc9\x24\x24\xa7\x05\x58\x4e\x47\xf3\x20\x0f\xbf\xd0\xca\xc3\x11\x6c\xe8\xfa\x12\x99\x38\xc7\xea\xbc\xc8\xd4\x7f\xfd\xe7\x01\x5c\x52\xb3\xbf\x20\x54\xba\xd4\x47\x78\x22\x0f\xeb\x5d\xe2\x81\xcd\x11\xf6\xc4\xe3\x26\x10\x4d\x0f\x10\xce\x5f\xfc\x01\xcb\xaa\xec\xcd\x88\x01\x4e\xdd\xe2\x96\x11\x2a\x44\x69\xe6\x47\x84\xa7\xf1\x68\x6e\xc7\x29\xd5\x3d\x22\x86\x65\x9e\xf6\x07\xd0\x84\x48\x18\x8e\x70\x1b\x1b\x56\x57\x45\x96\x82\x88\x52\x2c\xc4\x4f\x00\x6b\x87\x58\x61\x8c\x5c\x58\xcd\x29\x25\x7e\x10\xf5\x00\x61\x0a\xda\x89\x98\x98\x6c\x42\xcb\x98\xd6\x08\x49\x0f\x90\x32\xc3\x8b\x90\xb8\x6a\xee\xe0\x46\xbb\x20\x62\x54\x9a\x9c\xfe\x46\x44\x54\x9a\x0f\x5d\xcc\x58\x35\x83\xcc\xa4\x7d\x72\xe3\x1a\x31\x2f\x98\x05\x13\xbc\xcc\xc2\xcf\x0b\x58\x47\x1d\xf3\xc8\xa4\x7d\x56\x7e\xc4\xbc\xf6\x5e\x40\xc3\x0f\x4d\xd1\xfb\x23\x52\x05\xd7\x3d\xc2\x49\x18\x34\x2b\x94\x56\x55\x3a\xdb\x11\x19\x24\x6b\x7d\x4b\xcc\x38\x98\xc5\x43\x4e\x0e\xa9\x21\xe0\x59\x36\x74\xb2\x63\x09\xf8\x40\x43\xb2\x48\x97\xd5\xb3\x11\xf6\xc1\xa1\x9b\x6b\x64\x90\x5a\xf3\xd6\xb0\x38\x6a\xf9\x9b\x42\xe3\x23\x22\x60\x76\x48\xea\x8a\xac\xf0\x75\xb8\x77\xa0\x9a\xae\xde\xb1\xf2\x98\xeb\xd6\x1b\x2b\x0f\x98\x51\xad\xc2\xb2\x26\x09\x39\xc2\x0b\x6d\xe8\x1a\x14\x59\xb3\xbe\x1b\xd5\xa0\x76\x53\x16\x9c\x11\xa9\x75\x13\x5b\x8e\x08\x80\xeb\xdd\xa8\xc6\xf4\x31\x72\xbe\x1b\xb1\x51\x19\xab\x5d\x60\x3a\xbf\xe6\x13\x88\xa8\xd7\x31\x7c\x64\xe9\x52\x26\xbf\xa6\x11\x29\x67\xc9\x03\x68\xc4\xf6\x22\xee\xc7\x2f\x4c\x42\xa1\x2e\x90\x91\xaf\x19\x4c\x84\xac\x26\xe3\x0a\x1c\xd3\x7f\xe8\x4a\xef\xc8\xe8\xa9\x0e\x99\x70\x4f\x8e\x72\x23\xf6\x93\x20\xb8\x87\x87\x6f\x68\x5e\x2c\x35\x61\xa5\x6a\xfc\xc4\xa8\x28\x13\xe2\x88\xcc\xc7\xa2\xc0\xbd\x11\xe1\x44\x36\xbc\x19\x83\x47\x42\x93\x40\x08\xeb\xd0\x95\x28\xb2\x48\xbc\x8d\x03\x11\xe9\x58\x7c\xb7\x8f\x0c\x81\xeb\x3e\xb6\x03\xe6\x08\xcf\x02\x75\x51\x87\xae\x3f\x11\xc6\xe5\xf1\xd3\x01\xd7\xd1\x87\x90\x9e\xf1\xcd\x14\x99\xf9\x56\xa4\x2d\x88\x4c\x66\xdc\x4c\x4a\x4e\x66\x22\xf4\x21\x43\xbd\xb0\x9f\x13\x00\x7f\xb0\x61\x55\x71\xbc\x48\x3b\xa4\xe4\x88\x90\x94\xd2\xcf\xb9\x64\xce\xbc\x66\x72\x03\xfb\xef\x90\xdc\x1d\x69\xff\x6d\x26\x60\xa8\x42\x3a\x74\x59\x88\xf4\x10\x6b\x3f\x5d\x92\x16\x48\x4a\x8e\x37\x85\x5e\x63\x3e\x0b\xc3\x47\x2f\xde\x4d\x42\x6e\x54\x5f\xa2\x91\x69\x1c\xad\xb6\x72\xea\x1b\x91\x5e\x62\x16\x46\x22\x14\x57\xc3\x1a\xd6\x78\x2f\x38\xfc\x00\x17\x7a\x39\x20\x8d\x08\x57\xf7\x21\xd9\x3a\x3e\x20\xbd\x12\xc6\xe3\xc3\x64\xb5\x9a\xea\x83\xb8\xfd\xea\xdf\x50\x4b\x88\xd3\x47\xca\x3f\x12\x3b\xe3\xb3\xd6\xce\x03\x80\x44\xf9\x2c\x3c\xa4\x8a\xc6\xaa\x97\x10\xe8\x83\x97\xb2\xbb\x24\xed\x48\x1b\xae\xca\xe5\x8c\x88\xda\x15\xd9\x34\xe1\x25\x99\x31\x0d\x78\x09\x94\x3f\x20\x50\x86\xf2\xe5\x86\x7a\x08\x18\xf8\x7f\x60\x22\xdf\x37\xd4\xd0\x73\xc5\xe6\x1e\xc9\xd2\xbc\x6e\xf4\x84\x97\xa9\x7a\xc4\x19\x51\x25\x4c\x3d\x20\x53\xf2\xcf\xf1\x9b\x3c\x7e\x3e\xbf\x88\xd5\xaa\x26\xf6\x9f\xc8\xd4\x55\x4b\x7c\x44\x24\x2e\x39\x24\x59\xc6\x89\xa2\xd3\x06\x89\xa1\x5d\x9e\xc3\x84\xcb\x9f\x6c\x48\xe9\x58\x10\x16\x3d\x40\x54\x54\xf3\xef\x8c\x2c\x41\xa2\x83\xe9\x80\x29\x5c\xfc\x2a\x1d\x6b\x19\xab\x1e\x50\x23\x92\xfc\xc5\x04\x8c\xc7\xdf\xf0\xa3\x04\x9d\x98\x9c\xb8\x46\x62\x56\x41\x79\x83\x8e\xc4\xe2\x5c\x36\x40\x24\x66\x0d\x94\xdb\xc2\x48\x10\x97\x14\x7e\x30\x12\x0c\xa8\x87\xf8\x4b\x0a\x5c\x33\x77\xb0\xf6\xb5\xe9\xc1\x83\x35\xf0\x07\xe0\xe1\xcd\x1d\x2e\x6c\xd5\x0b\x50\x88\xa9\x78\xd2\x48\x11\x3c\x5c\xd2\x77\x8a\x11\x23\x6a\x51\x51\x0a\xff\xd0\x35\x2d\x31\x65\xa0\x8d\xd4\x29\xf2\x40\xf9\x37\xf4\x7c\xc9\x1d\x52\x70\x49\xee\x11\x3a\x59\x2f\x5b\x24\x99\x16\x51\x4d\x2c\xa6\xdf\x7e\x60\xba\x70\x87\xf2\x10\x37\xac\xba\xee\xe1\x05\x8c\x5a\x55\x38\x9d\x59\x6b\x9f\x12\xe2\x5c\xdd\x5f\x5a\xa4\x4b\x93\xa2\x17\x9a\xea\xe8\x8c\x94\x0a\x7a\xf4\x17\x64\xca\xa2\x7e\x89\x4e\x68\x36\x99\xa6\xc4\x9d\xf2\x0b\xd7\xf7\x5b\x97\xcf\xf4\x09\x7c\xed\x30\x6e\x2e\x79\x4e\x64\x3e\x65\xf2\x5c\x75\xb8\xf2\x12\x18\x59\x21\xd0\xa5\x7c\xb8\xcb\x0b\x65\xbe\xb5\xb0\xf4\xf8\x12\xd5\x4f\xac\x7e\x6f\xab\x64\x2a\x0b\x41\x35\x2d\x16\x66\x55\x9a\xb5\x91\x0a\x82\x1f\x8a\x5f\xa0\x74\xe2\x43\x88\x44\xcf\x87\x2e\x1c\xa9\x80\x52\x35\x77\xb0\x28\xba\x7b\xa0\x18\x2a\x66\x95\x0a\x0b\x3d\xba\x87\x1b\x3d\x1a\x6a\x52\x26\xa3\xf4\x27\xc6\xb5\xc3\x67\xa4\xae\xa5\x57\x0f\x4b\xc6\xd2\xcd\x2a\x55\xaa\x42\x8d\x83\x95\x5c\xd8\x4b\x83\x68\x02\x2b\xc0\x53\x25\x21\x10\x9b\x49\x48\xdb\x77\x04\x03\xc1\x3b\xa4\x27\xda\x40\xf5\x3d\x66\xe3\xda\x1a\xe9\x1a\x15\x1c\x62\xa9\xa9\x2d\x24\x13\x8a\x2c\x0d\xdc\x4f\x1f\x64\xec\xba\x4d\x25\xa6\x72\xf6\xdd\x36\x35\x2e\x96\xfb\x24\xbf\x94\xcc\x9b\x1a\x03\x8b\x35\xb1\x46\xf1\x42\x42\x52\xea\xd4\x68\x98\x00\xb0\xa4\x84\x1c\x72\x47\x5a\x1a\x34\x13\xc5\x95\x4d\x59\xda\x9e\x04\x23\x64\xf6\xea\xf5\x05\x85\x56\xab\x53\x70\x32\x1e\x2d\x61\x4f\x92\x75\x1a\x38\x0e\xc1\x2f\x10\xd1\x74\x9d\x49\x48\xa7\x7c\x78\x0c\x24\xdf\xeb\x46\x93\xa5\x53\x93\x78\x98\x3e\xe1\xae\x59\x9c\x4c\x34\x49\x46\x53\x09\xc6\x07\xc8\x49\x77\xa4\x73\x6d\x99\xc0\x3e\x97\x3a\x52\x50\x9d\x08\x58\xf6\x8e\x2d\x2d\x5b\xf7\x0b\x2c\xce\xa2\xfd\x58\xf2\x9f\x59\x0e\x22\x0a\x8a\x35\xe8\xe9\xa4\xf0\x2e\x21\x33\xa1\x2a\xfd\x61\x5c\xbd\x88\xee\x5a\x88\x0b\x2c\x21\xfe\x1d\x4b\xba\x88\xf9\x66\x41\x4b\x09\x66\x08\x6f\xea\xb2\x25\xb9\xa7\x1b\x04\xde\x3c\xea\x86\xd2\xc1\x38\xc8\x7a\xf3\xdd\x64\xe6\x13\xda\x9a\x6f\x30\xe9\xe6\xf1\x93\x74\x99\xee\x05\x84\xbf\x58\x73\xd6\x3a\xc2\xdb\x7f\xf8\x8a\x9e\x96\xdc\x27\x81\x26\x3d\x58\x05\xd3\x5b\x44\xf5\x07\x6f\xff\x03\x99\xaa\x9b\x18\x3e\x84\x4a\x63\x52\x6f\xa5\x08\x82\x91\x68\x8e\xec\xa6\xa7\xcf\x83\x2f\x04\x36\xf5\x52\x3e\x6b\x0f\xcd\x3a\x66\x0a\xb0\x46\x5a\xb5\x91\x5e\x52\x4f\x33\xae\x17\x48\xed\xb3\xf6\x82\x8b\x48\x20\x4e\x2f\xb9\x88\x59\xe1\xbb\xd6\x56\x30\xbc\x9c\x85\x76\x8b\xae\x73\x72\x24\x1f\x89\xae\x72\xdd\x6c\x82\x01\x02\xb6\x77\xa4\x4f\x0c\x73\xee\xc4\x91\x26\x75\x44\x66\x34\x73\x6d\x8f\x06\x9d\x2b\x5b\xba\x3f\x59\xd4\x70\xaf\x7e\x86\x73\x5c\xb4\xcd\x24\x1f\x8b\x8a\x34\x3d\x00\x16\x69\x43\xf3\x41\x8b\x96\xfa\xcc\x47\xc3\x0b\x45\xbf\x3b\xbb\xf4\x17\x14\x03\xaa\x07\xa5\xe8\x22\x6e\x95\x03\x70\x42\x13\xc9\x81\x63\x0a\xa8\xc0\xe5\x8f\xfa\x5d\x38\x84\xc6\x84\xb4\xa5\x84\xea\x23\x07\x58\xb7\x0e\x7f\x00\x1e\x2e\xd2\x98\xe1\x7d\xe6\x02\xfc\x23\x7f\xc2\x52\xb3\x3b\x59\x8e\x60\xf2\xb2\x1d\x66\x56\x2d\x1d\x3f\x2f\xac\x1e\xb4\x4e\x09\xe2\x96\x84\xe4\xcc\x52\x5b\xf2\x3d\x1f\x39\x91\x06\xfd\x3c\xa0\x2d\x49\x0c\x34\x53\x36\x11\xc1\xc8\x09\x2c\xd9\x5b\x81\x34\x4c\x36\x2d\x65\x4a\x26\xa2\x83\x39\xad\xed\xd6\xba\x31\xe9\xb1\x35\xeb\x39\x71\xe5\xc5\x2e\x73\xe6\xbc\x05\x53\x5e\xa7\x4f\x30\x50\xba\x11\x51\xc9\x19\x42\xa1\xd4\x59\x39\x13\x29\xdd\xce\x20\x15\xc3\x40\x87\x30\xdb\x93\x33\x64\x15\x25\x2d\x1c\xb9\x40\x2e\xcd\xfe\xfd\x6d\xbe\x8f\x77\x2e\x14\xad\xc5\x7f\x33\xf3\x1f\xd9\xa1\x29\x17\xac\x83\xae\x96\xb9\x60\xf3\xb2\x7f\xdf\xfc\xc0\x5d\x42\x06\xf0\x29\x28\xdc\x4c\x49\x22\x99\x92\x89\xce\x7f\x66\x05\x0a\x6b\x9e\x73\x25\xd0\xda\x9a\xba\x36\x57\xeb\x50\x79\x0a\x82\x1f\x70\xb3\xb4\xb0\x95\x5c\xcc\xeb\xc0\xb0\x47\xf9\xf1\x8f\xcc\x92\x13\x8a\x29\x1d\x99\x71\x90\xf2\xca\x1f\xb9\x01\x4c\xef\x66\xa3\xb6\x5b\x02\x54\x6e\x24\x64\x62\x84\xb9\x01\xc5\xbc\x96\x0d\x87\xd7\x40\x50\x0c\x29\x7f\x93\x9a\x6e\xe4\x06\x3a\xfb\xd3\x39\x96\xb5\x18\x3c\xdc\xb9\x24\x2b\xe4\x0e\x64\x93\xb4\x91\x99\x7d\x58\xa9\xf8\x46\x66\x82\x35\x85\xe4\x8e\xf2\x81\x97\xcc\x91\x4a\xa3\xc2\x57\x5b\x5d\x96\xed\x52\x8c\xbc\xb4\xb5\x68\x7a\xd0\x99\xdc\xa7\xe9\x37\x76\x4e\xb2\x42\x01\x10\x0a\x23\x1e\x65\xc3\xa0\x31\x3b\x95\x1d\xcd\x0f\xb0\x66\x22\xd4\xa5\x53\x32\xd6\x21\x2a\xc8\x81\xac\x6c\x05\xa3\x74\x6c\x7d\x75\x3b\xf2\x65\x04\x83\x44\x47\xa1\x66\x18\x26\x9c\x2a\xf5\x9b\x05\xf4\x3d\xeb\x81\xfb\x71\xf7\x6f\x28\xa1\xb5\x11\x85\x32\x98\x54\x00\x65\x80\x90\x54\xb7\x2f\x06\x28\x08\x4e\x20\x52\xf5\x6f\x2a\x89\x74\x28\x0b\x7d\xba\xa4\x3b\x29\x27\x63\xbf\xb4\x26\xb0\x5a\x9a\x42\x97\xb3\xa0\xd8\xb9\x7f\x57\x6e\x9c\x3b\xe0\x22\xba\x03\xf0\x47\xf1\x88\xb2\xc4\xab\x62\x90\x2e\x2a\x11\x0c\x12\x6b\x8f\x7b\xeb\x4f\xa0\xa3\xb8\x7a\x41\x3d\xfe\xa4\x02\x3b\xa3\x40\x01\x17\xfd\xc1\xb5\x08\xb0\x80\xb8\xe8\xc9\xe2\xad\xa6\x88\xd6\xdc\x03\x73\xeb\x48\x79\x56\x2e\x90\x9a\xe6\xdf\x38\x3f\x62\x8e\xe5\x22\xc3\x35\xba\x5d\x38\x23\xa2\x13\x85\xb5\x65\xed\x52\x52\x28\xb5\x79\x6b\x6e\x8a\x16\xa2\x66\x05\x62\x9b\x3d\x4a\x0a\x7d\xc4\x14\xf8\x32\x0a\x7d\xc4\xec\x39\x51\x6e\xe0\x5f\x73\x0f\x0c\x54\x96\x40\x54\x6e\x42\xad\x69\xdf\x5c\x49\x2d\xd4\xca\x38\x2c\xd1\xa3\x3c\x24\x77\xe2\x76\xe5\x01\xc6\xfd\xbc\x00\x3a\xe3\x11\x1e\x60\xe0\xcf\xfb\x1d\x0c\x5a\x20\x2e\xa1\x4e\xf2\x51\x79\x28\xcb\xf8\x94\x3d\x80\xb1\xfb\x05\xf2\x36\xc9\x60\xe5\xe1\x29\xf2\x3a\x3c\xa4\xea\x92\x1c\x0b\xab\x8e\xd9\x59\xa3\xbc\x20\x48\xfe\xe2\x05\x6d\xd0\x55\xa5\xbc\x54\xf3\x88\x43\x17\xca\x7d\x3e\x78\x4b\xee\x13\x05\x2e\x88\xc9\xc8\x26\x0e\x15\x45\xd8\x95\xdc\x79\xd4\xb0\x10\x22\xea\x01\x09\x96\xc4\xf4\x4a\x51\x44\xd7\x9f\x1a\x23\x5f\xf0\x83\x05\x95\xba\x88\x38\x3b\x32\x5a\x55\xa8\x59\x94\xab\x6f\xd4\x48\x01\xd9\x5d\x32\x1d\x83\x5d\x27\xea\x27\xac\x24\xbb\x31\x54\x2a\x41\xac\x81\xaf\x89\x34\x4e\x24\xa6\x7e\xb2\xc6\x8f\xca\xae\xb2\xec\xa7\x9d\x86\x6b\xa2\x09\xbe\xf8\x8d\x0f\xd3\x15\x75\x3b\x2a\xea\x2d\xf8\x26\x59\x33\xef\x2f\x42\xec\x9a\xb1\x1b\xe3\x6f\x4a\x17\x8d\x0a\xb3\x9b\x72\xc2\x8d\x0a\xff\x25\x95\x49\x18\x35\x03\x7d\xa4\xe4\xac\xb0\x91\x59\xc4\xac\x19\xbc\x4a\x36\x8a\x5a\x80\x2b\x92\x31\x2a\x0b\x63\x59\xdd\x5f\xcb\xda\x05\xed\x5b\x21\x6f\x12\x95\xad\x9f\x18\x92\x94\x93\x66\x54\xea\x43\x86\x3f\xc0\x29\xd3\xdd\xa9\x52\x2a\xd1\x6d\xab\x16\x82\xa4\x05\x5a\x46\x2e\xcf\x01\xb9\x17\x6c\xa8\xae\xc8\x04\xab\x4c\x60\xa3\x56\x6a\xa3\x35\x00\x8c\x5e\x4a\xe8\x3b\x6a\xfd\x0e\x65\x38\xfc\xfe\x89\x5c\x65\x02\xb0\xde\x68\xf7\x78\x44\x55\xf1\xca\x0a\x4f\x71\x5b\x97\xea\x27\x6e\x34\xbb\x18\xd4\x06\x03\x7f\x76\xfb\x5a\x33\x41\xd0\xe0\xfc\xae\x5b\x77\x45\x35\x76\xbb\xd3\x55\x8a\x27\xd2\x15\xd4\x86\x9a\x7c\x3e\x4d\xf0\x54\xb2\x1b\x76\x65\x06\x48\xbb\xaf\xd4\x46\xd1\x2f\x79\xc4\x07\xee\xf6\x1e\x71\xcd\xc9\x5f\x90\x20\x1b\x2f\x3b\x0f\x8b\x48\x78\xed\x2b\x63\x9b\x36\xba\x53\xeb\xe8\x43\x4f\xf7\x71\x2b\xf0\x2a\xbc\x9f\xac\x63\xaa\xa8\x8b\x35\x8c\x2a\x10\x21\xac\x5c\xa8\xcc\xf4\x60\x97\x97\x0a\xb3\x9c\xa2\x23\x47\x85\xef\x93\x65\xe2\xda\x51\xd8\xcd\x0b\x07\x91\x22\x4b\x0a\xaa\x48\x23\xab\x74\x48\xa3\x0e\x0a\xb4\xba\x6b\x54\x94\xc1\xca\x9e\xe4\x28\xe8\x50\x33\x60\xcd\x84\xe1\xd3\x39\x1a\x5e\x10\x2e\x8c\x8e\xdf\x9a\xd2\x60\xb6\xce\xe6\x0f\xa8\x2f\x34\xfe\x23\x02\x54\x25\x3e\x46\x85\xef\x94\x4a\x4a\x8d\x3a\xa0\x01\x37\x59\x63\x4d\x05\x5b\x8c\xea\x49\xf4\xd3\xb2\x9f\x88\x09\x32\xfa\x9d\x6b\x1b\x34\xe2\xc9\x12\x1b\xa2\xdf\x95\x6a\x1f\xdb\x67\xea\xc9\x59\x69\x4c\x7a\xa2\x8b\x2d\xd5\x25\x96\x48\x52\xaa\xe7\x89\x0f\xfc\x9b\x17\x45\x6f\xed\x09\x63\x87\x51\x1c\x5a\x20\xeb\x3b\xea\x72\x97\xf2\x31\xff\xa4\x92\xa6\x32\xc1\xa3\x5e\x38\xa5\xde\xba\xab\x7d\xb3\xf4\xa1\xbb\x78\x06\x7c\x8c\x2f\xd6\x17\x70\x87\x37\x64\x31\x81\x08\x99\xa4\xdb\x6b\xb8\x22\xe6\xb3\x9a\xc1\x50\x93\xd4\xdc\x9e\xe1\xf6\xac\x65\x84\x3d\x30\x79\x4a\x48\x16\x99\x24\x78\xd5\x9b\x6e\x1a\x5a\xe5\x4f\x20\x71\x7d\xc6\x51\x99\x16\xcb\xe6\x94\xfa\x09\x24\x4d\x81\x88\xa3\xd2\x89\xdd\xbb\x02\x79\x24\x98\xd0\xdd\x2f\x7e\x0b\xa0\x07\x19\x48\xbd\xcf\x2c\x79\xaa\x92\x4b\xa3\x42\x1c\x09\xde\x46\xf8\x4a\xa9\xaa\xc3\xa8\xac\x02\xe6\xab\x75\xfd\xe4\x91\x9c\xd2\xdf\xf1\x9e\x67\xed\x80\x26\x8c\xac\x91\xd5\x88\x09\xd9\x25\xfc\xfc\x5e\x3b\xe0\xf1\xe9\x26\xe8\x25\x5c\xb2\x8b\xc4\xc2\x8a\x9c\x15\x16\x5d\x2a\x7c\xa7\x7e\x4e\x17\x04\x8f\x18\xdd\x4e\x44\xf5\x26\x22\x2d\xa4\xfd\x71\xeb\xbb\x7c\x0d\xf4\x9b\x77\x02\x09\x3f\x75\x22\xcd\xab\x19\x3a\x8b\x92\x29\x41\xc5\xa8\xf0\x97\xb7\xfa\xa2\x4e\x54\x99\xf0\x2c\x11\xda\x69\x13\x70\x9d\x40\x03\x09\x6c\x75\x2e\x34\xf0\x0b\x1f\xc3\x54\x6e\xb3\xd1\x60\x17\x4c\xba\x84\x34\x46\x6e\x7a\xd2\xed\x58\x84\xd7\x5f\xe0\xec\x44\xff\xa6\xa2\x48\x1b\xdd\x60\x38\x54\x8d\x9d\xd1\x8e\x06\x17\xb6\xae\xdf\xa0\x62\x3a\x0a\xed\x58\xcb\x98\xf5\x00\xa9\x14\x74\x01\x68\x07\x2b\x6a\xfa\x37\x50\x53\xfb\xd0\x60\x77\x54\xf2\xed\xd1\x42\xc0\xef\x43\xbf\x13\xde\x17\x00\xcc\xdf\x65\x97\xd3\x16\x00\xb1\x6e\x56\x0d\x86\x44\x0b\x77\x2d\xac\x55\x14\xc8\x0c\xc5\xb4\xe3\x61\x83\x69\xd1\xca\x8d\x16\x28\x39\x67\x0f\xc1\x90\x3c\xfd\x66\x31\x31\x33\xc9\x16\xb1\xac\xd2\x01\xb6\x88\xa0\x5d\x49\xf7\x2d\x52\x3a\xac\xfe\x00\x54\xd1\x3b\x99\x40\xf4\x24\x38\xb4\x25\x80\x0a\xdf\x1b\x0d\x79\x06\x29\xc1\xb8\x3f\xdc\x5e\x19\x35\xa7\x75\xfc\x04\x52\x97\xc5\x1a\x2d\x71\x59\xb4\x0a\x09\x36\x68\x61\x6f\x83\x74\xd9\xed\xef\xd9\x20\x5d\x06\x23\x57\xe6\x88\x6e\xc7\x9c\x3d\x40\xc6\x3e\x64\x77\xd8\xd8\xa1\x3b\x00\xea\x64\x77\x00\x88\x74\x82\x5b\x5e\x79\x59\xdd\x23\xf8\xdb\x70\x07\xeb\x02\xa3\x39\x64\xb0\x0e\xc9\x19\x8d\x5e\x59\x3a\xc2\xad\xd0\x5d\xd9\xed\x85\x57\x64\x3f\xa8\xc8\xff\xa4\x11\xca\x82\xd9\x2f\x50\x4b\x25\xb1\xb9\x41\xb7\x66\x27\x8a\x56\x78\x0d\x6b\x7e\x70\xb1\x0b\x3f\x00\x6d\xcb\xfe\xfd\x22\x14\x4f\x63\x42\x95\x16\x7c\x02\x11\x20\x99\x7d\x00\xe0\xa9\x65\x75\x7f\xab\x74\xa8\x6b\xfe\x80\x1b\xa1\x55\xa1\xd4\x6a\x54\x59\x1e\xf7\xa2\x74\xad\x72\x23\x84\x8c\xc8\x38\xa6\x64\xcb\xa3\x55\x92\xeb\xe0\x11\xc0\x7e\xbc\x08\x70\xc1\x37\xe5\x6b\x75\x51\x67\x81\xd0\xa8\x59\x10\x29\x6b\x6d\x01\x2d\xa0\x20\xe9\xda\xe8\xd5\x96\xef\x97\x88\x67\x6b\xc0\x0e\xdd\xc0\x5a\xc3\x89\x29\x1e\xe2\xe2\xce\xfc\x4d\x4a\xee\xd1\xa0\xb6\x53\x52\xe1\xd1\x1a\x2f\x5f\xa6\x94\x4b\xaa\x35\x1d\x63\x69\xb0\xee\x4f\xa0\x9c\x73\xe8\x59\xfb\x64\xd8\x66\xe5\x49\xeb\x60\xa1\xc5\x1d\x60\x1b\x24\x69\xb7\xce\x1b\xfc\x4f\x07\x5c\x55\x6d\x03\x1c\xc9\x1c\x11\xd0\xc6\x12\xc6\xd4\xc3\x58\x67\x5c\x5f\xb0\x2c\x97\x0d\x98\x0d\x32\x66\x33\x6d\x1c\x14\x93\x8d\x9d\x63\xa1\xab\xbb\xc0\xc2\x48\x8e\x6e\x34\x15\x3a\x7a\xb6\x8d\xb5\x30\x02\xfb\x64\x6d\x0b\xcd\x9b\x9a\xaf\x68\x62\x77\x82\x62\xfb\x88\x9c\x58\x08\xcf\x0b\x9a\x2c\xeb\x67\x1a\xdc\xf1\x7f\x80\x3e\xa9\x10\x37\x36\x9d\x2c\x10\x69\x7c\x3b\x17\x21\xd0\x2c\xae\x75\x4c\xd5\xc7\xb5\x26\xee\x07\x54\xbb\x9b\x60\x32\x01\xaa\xaf\xd7\xed\x5a\x33\x17\x5c\x74\x89\xb7\xd5\xb4\xdd\xd4\x1e\x1b\x8e\x9b\x33\xd5\x20\x37\x67\xaa\x2e\xe9\xf5\xd5\x3d\x55\x18\x10\x6d\x57\x6b\x37\x3d\x1d\x4c\x54\x97\xe4\xe7\xc5\xa2\xe4\xe7\xb3\x0b\xfb\x61\xb7\xab\x59\xbb\x17\x26\x7b\x50\x5e\xd8\xbc\xfe\xcc\xee\x61\xf3\x5f\x63\x05\x7c\x0b\x1e\xed\xa1\x7a\x54\xf3\x78\xc8\x63\x2d\x05\x3c\x6b\x22\xda\x92\x25\x0f\x5a\x0e\x60\xa2\xf0\x28\xf5\x53\x7b\xa8\x43\x33\xf5\xa6\x8c\xe7\x03\xbe\xf4\x53\x5e\xbd\x25\xe3\x49\xdb\xd4\x96\x3a\xca\x98\xf5\x2e\xc0\xf5\xc9\x4b\x5d\xb4\x57\x1c\xa9\xbb\x6d\x5c\x69\xef\x8b\x94\xe8\x6e\x27\x36\x4b\x0f\xd7\xe6\xea\x52\x6f\x4c\xb0\x3d\x9f\x18\x54\x96\x4d\xc9\xed\xbc\x33\x75\xbf\x80\x73\x6f\x4c\x9b\x40\x02\x63\xef\x92\xe2\x3c\x71\x18\x1d\xed\xc4\xdd\x50\x57\x56\x49\x71\x47\x3f\x02\xd4\x22\x4d\xbf\x51\x45\x56\x0c\xa1\x7f\x42\x5d\x3c\xb4\x9d\x9d\x51\x8f\xe3\xe7\x05\xb2\xb9\xac\xdf\x15\x81\x43\xee\x90\x0c\x41\x97\xe5\x0e\x8b\xa4\x12\x5c\x8f\x7e\x90\x4a\x74\x0f\x81\xbd\xeb\x1e\x81\xf2\x79\x32\xcc\x6b\xef\x3c\x06\xc4\x3a\x61\x65\x0f\xb0\x32\x68\x6f\x7b\xe0\x15\x4a\x20\xa0\xd2\xbe\xb9\x5e\x0f\x0c\x89\x76\xfb\x9a\xa4\x1f\x90\x18\x8a\x0e\x75\x94\x9d\x55\x52\xf6\xd1\x03\x54\x21\xc3\x3d\x92\xfe\x36\x7f\x00\x36\x27\x81\xa5\xd3\xc3\xcc\xe1\xe1\x3d\xac\x49\xed\xad\xed\x0c\xa9\x74\x7c\x6b\x87\x2a\x32\x08\xe9\x7b\x24\x9b\xeb\xe3\x6f\x98\x52\xa7\xd4\xe8\x6d\x40\x80\x66\x1f\xc9\xe3\x91\x29\xfe\xf4\x4f\x9b\x98\x27\x15\x59\x4e\xc3\x00\x21\xc8\x41\xd7\xb4\xbe\xcc\xb2\x5e\xf7\x65\x96\x15\x39\xef\x90\x3c\xed\x0f\xd4\x61\x74\xb5\x4a\xa0\x27\xde\x10\x84\xcf\x3d\x41\x03\xe0\x1e\x13\x68\x9a\x4e\x54\x47\x78\x66\xb6\xd1\xa0\x7f\x92\x66\x52\xd9\xd8\xd1\x13\xe2\x7c\xa2\x3b\xc0\x99\xed\x86\x80\xcb\x2e\x32\xdb\x33\x4f\xb9\x8e\x58\xa7\xa8\x69\xf4\x5c\xa2\xa6\x0e\x69\x5f\xa2\xa4\xd1\x0f\xda\x4e\xb3\xd2\x8e\x68\x4d\xa7\xb5\xe8\xd0\x6e\x5a\xb2\xec\xac\x53\xe3\x24\x39\x9d\x65\x69\x8c\x3c\x85\x7b\xa5\x49\x14\x5a\x46\x7e\x1e\xc0\x3d\x6c\xb8\x47\x68\x3f\x8d\x5c\x85\x04\xf3\xe7\x03\x78\xf1\x18\xe3\xa1\x1d\xf5\x45\xa9\x17\xc4\xa9\x8b\x4d\xf6\x0a\x43\xf3\xf0\x6f\x1e\x08\x09\xe4\x9d\x72\x9f\xee\x14\xbd\x72\x51\xbc\x53\x14\xeb\x44\x1c\x3b\x13\xcd\x46\xe3\x42\x03\x7f\x33\x88\x0d\x08\x2b\x92\xde\x4f\xf8\x33\x4a\x70\xec\xd4\xf5\xf8\x7b\xba\x80\xdb\xb4\xdd\x4f\xd2\x0d\xdd\x01\xfa\x49\x66\xe5\x33\x70\x62\x23\xa4\x03\xeb\xcc\x5c\x60\x43\x5b\x47\x78\x9d\xd3\x10\xf4\x8b\x2a\x53\x6f\x1d\xd5\x41\x5e\x17\x96\xd4\xb4\x7d\xa8\x5f\xd4\x43\xff\x8c\x41\x72\xf7\xd3\x27\xbd\x00\xdc\xc7\xcd\x14\x9b\xd9\x0f\xbe\x95\x71\xe0\x7b\xbf\xb9\x32\x5a\xca\xe5\x11\x6e\x84\x83\x68\xe0\x88\xef\x7e\x2f\xa8\xfc\xc5\x82\xca\x0f\xb8\x78\xc5\x63\x90\x3e\x99\x1a\x3c\x2c\x92\xa2\xed\xf9\x38\x6c\xfd\x19\x03\x3a\x92\xe2\xa5\x7b\x59\x14\xc5\xb3\x58\xfc\x54\x82\x7d\x87\x5f\x8f\x9d\x72\xfb\xcb\x8b\xae\x91\x92\xc5\xdd\x93\x27\xfe\x52\x41\x68\x72\xf0\xae\x20\x7e\x2d\xf7\x3b\x30\x73\x77\xc1\xdb\x45\x31\x58\x17\x5e\xf0\xef\xe7\x9f\x3f\xd9\x3c\xbb\x7f\x3c\xbc\x24\x53\xc5\x17\xb9\x4c\xcc\x7b\xa8\x66\xd1\x85\xab\xcf\x05\xb4\xf6\x77\x42\x52\x37\x3f\x9c\x0b\x66\x7f\x41\x75\x9a\x40\x44\xe2\x01\x3b\xbf\x75\xa4\xd0\x52\x11\xe0\x31\x96\x0f\x90\x40\x1c\x07\xd1\xc1\x2f\x14\x10\x55\xb7\x53\x7e\x12\xc5\x1a\xcc\xf4\x69\x45\xff\x38\xb8\x4a\x45\xbf\x11\x05\x2d\xf3\xca\x40\x86\xac\xe4\x40\xab\x01\x97\x20\x2b\x08\x06\x8b\x3e\x9a\xdf\x8d\x8f\xa3\xb6\x78\xfc\x95\xa7\xc2\x08\x2c\xe2\xef\x8f\x33\x3e\x16\x78\x81\xf8\x2c\x9a\x3c\x3e\xee\xda\x1c\x17\x3e\x96\xc3\x90\x8e\xe1\xf8\x78\x65\x8b\xba\xfd\x0f\xb0\x4a\xc7\x85\x8f\x65\xb5\xd3\x09\x19\xe0\x86\x8e\xda\x1d\x71\xed\x92\xbf\xf8\x28\xaa\x6a\xfc\x8c\xc1\xf0\xb9\xe2\x76\xde\x08\x3d\x09\xd4\x80\x8c\xba\xcc\x0f\x38\x4b\x1b\x51\x46\x22\xfa\x4b\xaa\x1d\x74\x86\xb6\x8d\x6e\xa4\x35\x6d\x01\x95\x28\x44\xf8\x01\x12\x64\x96\x24\xec\x1d\x4b\x8f\x22\x89\x7d\x40\x8f\xe2\x78\xca\x91\x3f\xdc\xb0\x4d\x68\x64\xd2\xed\xe6\x2e\x89\x2c\xc3\x5d\x52\x7b\xf4\xf3\x00\xc8\xa2\x7b\xe0\x00\x77\xb3\x44\x39\x60\xcb\x73\xc0\xdc\x40\x2a\xf5\x92\x8c\x9f\x99\x77\x1d\xb1\xb3\x51\xb0\x5b\x92\x41\xc7\x32\xde\x89\xf4\x8f\x42\xa8\x85\xc0\x1f\x7b\x6b\x0e\xa6\x1d\x85\x29\xde\x86\x5f\x58\x2b\xe5\x1e\xd6\xf6\x08\x2a\xe4\x56\x2f\xc9\x38\x5f\x28\xac\xfc\xbc\x31\xf9\x86\x3a\xad\xe4\x06\xe2\xa2\x03\xbe\xb2\x49\x7a\xb4\x41\xa3\xca\xcf\xef\x35\xa8\x7a\x60\xd6\x4c\x27\xba\x19\xdf\x85\xd7\x55\xf4\xc6\x58\x46\x14\xd1\xfe\x71\x92\x9c\x48\xe8\x1b\x27\x97\x42\xab\x7f\xae\x0d\xd4\x18\x08\x40\xcf\xc9\xbf\x3f\x81\x47\x45\x44\xc6\xb8\x28\x46\x9a\x3c\xc0\x11\xa3\x38\xe3\xd4\xb8\x70\x38\x6c\xb2\x18\x28\x09\xf2\xb3\xdc\x1f\xd7\x4b\xb6\xb2\x0c\x96\x08\xb1\xc9\x62\xc0\xcf\xc2\xe1\x1d\x63\xd9\x34\x9a\xbf\x98\x7c\xa0\x2e\xef\x95\x2b\xcd\x0f\xd6\xc4\x05\xe6\xc7\xe4\x7e\xee\xc3\x03\x4c\xce\xaa\xdf\x01\x4f\x0c\xc7\x98\x0c\xb0\x34\x47\x6c\x0c\xdc\x76\x4b\x32\x51\xc3\xcd\xf4\x07\xaf\x1f\xd0\x08\xe9\x28\x07\xcc\x14\x0e\xb8\x18\x74\x7d\x75\x06\x93\xb1\x2e\xaa\xdd\x3d\xc2\xf2\xe2\x03\x0c\xdf\x58\x87\x1a\x0c\x96\xf2\xf0\xfd\x6f\x3c\x27\xbb\x34\x0c\x38\x4b\xa6\xf5\x4c\x96\x6d\xcb\xc7\x80\xf3\xac\x83\x3a\xc6\xc3\xb3\xd4\x0d\xd4\xc4\x0b\xea\xf1\x5d\x94\x59\x40\xc0\x8b\xc2\x5e\xa8\xe3\x6d\x1c\x42\x5d\x4e\xa2\xb9\x98\xea\x98\x98\x86\x38\xf9\x98\x6b\x1a\xfe\x02\x50\x8b\x83\x0d\x96\x46\x76\x8c\xec\x40\x31\xa8\xac\x69\x9e\x07\x96\x5a\xca\xd7\x93\xa6\x83\x24\xfd\xf1\x79\xd0\x83\x45\x07\xe5\x3c\x40\x1c\xad\xcf\x3d\xc1\xe4\xec\x84\x75\x1e\xcc\x4c\x5a\xfd\x80\x9c\xbe\xbb\x8b\x8b\x5d\xfc\x95\xce\xee\x3c\xa8\x07\xfa\x81\xe0\x85\x74\x62\x00\xb0\xd0\x12\xec\xce\x40\x7d\x81\x8e\xee\xc9\xb0\x24\x4b\x61\xe7\xc7\x13\x7f\xbc\x14\xcf\xb0\x44\x05\xfd\xae\x5c\x85\xa8\x07\xe3\x9f\x3f\xdd\xf1\x35\x67\x58\x53\x1a\x7a\xf0\x72\x4a\xea\x22\x72\xef\xc4\x85\x4e\x32\x3a\x6b\x53\xcf\x15\x07\xae\xe3\x7f\xc2\x5f\xa5\xd8\x73\xeb\x64\xe0\x90\xf5\xd4\x27\x12\x58\xdb\xf5\xf9\x8c\xdc\x6e\xf5\xf0\x5d\xe2\x92\xa5\x87\x73\x71\x36\x9d\x83\x93\xe5\x44\x1c\x5a\x7b\xf2\x5a\xe7\x20\xd5\x33\xad\xa9\xfb\x8d\x8f\xc2\xdb\x7a\x75\x32\x96\x3c\xfd\x7c\x01\x76\x2a\x05\xe9\x99\xc1\x43\x24\xd7\x9d\x4c\xbe\xa8\xac\xda\xe3\x24\x27\x94\x30\x79\x66\x48\x4d\xd2\x98\x9e\x99\xa7\x79\xf8\x05\x60\x98\xc4\xd3\x93\x9c\xd1\x0a\xd0\x33\x13\xcd\x87\xc7\xc4\xe1\x94\x58\x75\x66\x52\x77\x0d\x51\x16\x4c\xea\x12\xce\xb5\xaa\x71\x3b\xce\x42\x2c\x17\x2f\x3d\xc9\xf8\x24\x4c\x9e\x85\xeb\x24\xfe\x7d\x16\xae\x93\x60\x62\x26\x68\xb3\xce\x13\x26\x02\x95\xac\x19\x27\xbc\x6f\xa3\xb4\x6d\x27\x8b\x8f\x8e\x9f\x17\x80\xd7\xa2\xb3\x27\x7c\x69\xed\xe9\x75\x42\xe1\x6f\x3f\xa0\xb3\x02\x44\xe9\x70\xcf\x0a\xf1\x40\xf7\x82\x13\x9e\xb5\x3f\xe7\x12\xf7\x3e\x3b\x5f\x9c\x08\xdd\xb0\xfb\xe5\x79\x92\x26\xea\x86\x7e\xb2\x86\x95\x15\x86\x27\x3c\x09\xcd\x7e\x4e\x5e\xe3\xac\x30\x3c\x4f\x72\x17\xd1\xbc\x13\x56\x7d\x1b\x9c\xcf\xc5\xe1\xbc\xf0\xd7\x5a\x78\xbf\xc1\x1b\x92\x4f\xf3\x45\xb6\x2a\xa8\xa8\xe3\xfd\xc1\x2f\x16\xb9\xb2\x2e\xef\x24\x13\xac\xfe\x0d\xde\x6e\x4d\xd9\x89\xea\x0f\xb6\x2a\x9f\x5b\xc3\xab\x31\xef\x45\x05\xd5\xc5\xcd\x24\x4c\x5a\x09\x7a\x1f\x3a\xba\xed\x44\xd6\x93\x68\xd5\xd8\x89\x38\xde\x9f\xbb\xe2\x79\x63\x7b\x25\x20\x9e\x70\x1e\x1c\x3f\x44\x86\x6c\x50\x02\xe1\xc9\x3a\x8e\x8e\x8d\x3c\x59\xc2\xca\xa1\x8a\x27\xea\x36\xfe\x5c\x2f\x4f\x2a\x6c\xad\x2e\x3b\x11\xdc\xeb\x08\x82\x13\xb1\xbd\xed\xa7\x07\xae\x5d\x32\x10\x37\x5e\xd0\x07\xef\x82\xd2\x0f\xb8\x61\xde\x8f\x77\x41\xa5\x2d\x45\x3e\x66\xdb\x1a\xce\xc5\xe7\xc4\x3a\xcf\x77\xed\xa0\x96\x1b\xc1\xbc\xc9\x14\x9f\x57\x43\x71\xeb\x93\xc1\xbd\xd6\x69\x9c\xc8\xd0\x9c\xc5\xff\xcf\x17\x34\x49\xbc\xf8\x7c\xb1\xd6\x6e\x9f\x58\x5a\x31\xd6\x13\x57\xc3\xd8\xff\x2a\x0b\xc3\x39\x49\x33\xa5\x66\x3a\x27\x8e\xbe\xb8\xf0\xc9\x8a\x14\xc9\x27\x99\xba\x5f\xeb\x64\x4e\xf2\x69\xb1\xe5\x93\xa9\x52\xac\x21\x39\x59\xb4\xd1\x1a\x92\x8b\xb1\xbf\x56\x80\x5c\xc7\x22\x61\x59\x0f\x22\x37\xdf\x9f\x24\x82\xe1\x37\xb0\x11\xe2\xc3\x17\xf3\x31\xfb\xca\x7d\xa1\xce\xc4\x61\x84\xba\xc0\xa9\x0f\xef\xf6\x45\x66\xec\xb8\xd0\x8b\xcc\xd6\x61\x9e\x57\x20\x96\x4a\x82\xb8\x02\x8f\x86\x98\xe9\xc5\x3b\xa3\xb8\xf1\x15\xd6\xa8\xee\x13\x84\xaa\xfb\x37\x91\x52\x22\xc6\xc5\x5a\x8d\x8e\x02\xbc\xc2\x32\x0d\x69\x6a\x01\x1b\x2e\xee\x7b\xb1\x78\x57\x12\xe9\xba\x22\x88\xa5\x38\xc6\xc5\x6b\xa6\xb3\xa4\x5d\xd0\xb1\x0e\x07\x40\x5e\x71\xa5\xf5\x11\xdc\xcc\x94\x6c\x76\x7b\x7d\xec\xb6\x24\x1d\xb6\x2b\x7d\x04\xdb\x4a\x92\x0b\xcc\xf6\xf8\x59\x2b\xba\x8f\x5a\xfb\x73\xa1\x2e\x83\x23\x03\xae\xc4\xa2\x30\x82\x81\xce\xa2\x8e\x3e\xbd\x70\xcd\xb4\xcf\xd2\x85\xc4\xc6\xf6\x1f\xbe\xc0\x5b\x9d\x21\xe4\x82\xb5\xde\x69\x78\xaf\x8f\xb5\x26\x87\xd5\x5f\xb9\x13\x44\x3f\x58\xcb\xe0\x11\x78\xf6\x8a\xbb\x9c\xe8\x52\x2b\xf9\xf1\xd6\xe6\xcb\xda\x85\x88\x5a\x15\x5a\x1b\x57\x59\xab\xa0\x0e\x3e\x4e\xd9\x7c\xeb\xb9\xc0\x28\xed\xb5\x7f\xf1\xc6\x68\x0f\x59\x96\xfa\x6f\xf6\x8a\xbe\x18\x76\x62\x55\x0f\x6a\xfd\x7f\x50\x6b\xd0\x4a\xa2\x24\x91\x81\xc5\xff\x7f\x54\x1b\x57\x5d\x33\xd7\x3c\xa8\x27\xb5\x6e\x06\xd5\xfd\xb3\x03\x70\x50\xbd\xbf\xdb\x60\x79\xb5\x75\xde\xfc\x80\x8b\xed\xdf\x05\x1f\xa8\xc3\x46\x1e\x21\x0e\x8f\xea\xfd\x5f\x0f\x82\x92\x25\x37\xed\x31\x89\x5a\xfc\x1f\x94\xc2\x88\x8e\x0d\x36\x4a\xc1\xa5\xf2\x47\x23\x83\xda\xfb\x5f\x17\x5a\x6e\x24\x94\x3b\x7e\x70\xa8\x13\x0b\x25\x48\x5c\x34\x51\xdb\x37\x0f\xe5\xfa\xc3\x8f\xd6\xe6\x62\x3d\x6f\x3b\x14\xad\xfa\xfc\x76\xa6\x41\x7d\xfe\x60\x33\x38\xea\xf3\xbb\x7a\xf7\x60\x79\xfe\xc3\x51\x9e\xd7\x00\xda\x18\xf1\x06\xb2\x2f\x34\x7f\x40\x4c\xf6\x6f\xf2\x1d\x09\x1f\xd7\xe0\x7e\x49\xb6\x40\x41\xff\x6f\x08\xbf\x41\xbc\xf1\x62\x9d\x24\x4d\xa6\x90\x27\x25\xee\xe4\x37\x80\x9b\x86\xf2\x5c\x4b\x23\x30\x3e\x21\x29\xa9\xe4\xda\xb8\x18\x7e\x61\x56\x73\xd1\x8c\xed\xb8\xcc\x0b\x66\xec\x9f\x95\x39\x59\xcf\x59\x50\x5e\x6b\x65\x34\x8f\x2b\x7c\x4b\x17\xfe\x2a\xfe\xf5\x62\x06\x5f\x07\x75\x5e\x70\x93\xb4\x3c\x7f\xb1\x68\xa8\x35\x86\x17\xe4\xa9\xe1\x48\xd3\x0b\xc1\x1c\x96\x6c\x2f\xd4\xca\x70\xd2\xfb\x8b\x26\x73\xab\xb6\x2e\x98\xcc\x87\xc3\x8f\x2e\x08\x58\xc7\xcf\x69\x83\x80\xe5\x3b\xc3\x45\xcf\xc9\x24\xe9\xe8\x82\x5e\x3c\x45\xff\x5e\x1b\x21\xac\xbd\x79\x3c\x0d\x15\xa3\x37\x7c\x3a\x11\xbc\x91\x7e\x86\x5c\x9b\xed\x2e\x41\xa7\x24\xd1\x5f\xb4\x87\x5b\xe1\x76\x21\x36\xe3\xe7\xf8\x22\x16\xc3\x1e\xa9\xd7\xb3\x60\xd2\x39\x79\xb8\x72\x9e\x05\xa4\x27\x2b\xc1\xaf\x87\xe4\xda\xb3\x40\x44\x6d\xb6\xd0\x77\x21\xb2\xe2\xe7\xc0\x43\x27\x90\x24\x40\x5f\x2f\xb0\xde\xc8\xf3\x12\x46\xcd\x1a\xc2\xd6\x8f\xba\xf4\x7a\x17\x90\x82\x01\x0e\x8f\x76\x1e\xbc\xa0\x77\x1f\xf6\xe8\xbf\x90\x11\xb8\x58\x79\x76\xbd\xdc\xce\x9f\x07\x93\x0f\xd4\xe7\xc4\x76\xba\x0b\x88\x53\x3f\x9b\x05\xe3\xf9\xcf\xee\x4e\x92\x63\x1f\x2b\x04\xf1\xda\xa9\xec\x9a\x0b\x6a\xcd\x7b\x52\x34\x31\x35\x66\xfa\x39\xab\x2a\x2f\x06\xf1\x26\x9f\x1b\xc6\xec\xda\x40\x70\x4d\x62\xa1\x90\xea\xfe\x64\xa8\xee\x2c\x78\x37\x2a\x75\x1d\x76\x52\xbc\xe1\x16\x69\x47\xca\x1b\x02\x93\x8d\xfe\x37\xbc\x1e\x93\x0e\xfb\x0d\x6d\xbd\xa1\xbe\x0f\xe0\x60\x76\x7f\x6b\x69\xdd\xc1\x8d\x0f\xba\x7e\x23\xf9\x72\xf3\x07\xa4\xf7\xd2\xa5\xdd\x9f\x78\x95\xcd\xcf\x6f\xd6\x31\xb5\x16\xf2\x86\x7a\x3f\x49\x70\xbc\xe1\x27\xe9\x55\xb9\xa1\xc1\xf7\xe6\xde\xa1\xe0\xb7\x07\x20\x09\x34\x88\x9f\xb0\xd5\x9c\xb0\xf6\x86\x39\xfc\x70\x44\xf6\x1d\x88\xd4\x5e\xa5\xa5\xfb\x90\xe2\xf3\x86\x8e\x3f\xc9\xbe\x74\x47\xd2\x24\x69\x99\x6e\x56\x4e\xb5\x4a\xfe\x8e\x5c\x78\x41\x0d\xe9\x2c\x65\xf7\x48\xe9\xac\xf9\x05\x22\x8c\xb7\x82\xb5\xbd\xac\xc7\xbc\x23\x2f\x15\x9e\x48\x24\xc2\x78\xa9\x60\x24\x2f\xc1\x2f\xbc\x18\xd4\x40\x4d\xd8\x8b\x04\x04\x4c\xe4\x49\xc2\xda\x4d\xe7\x4c\x07\xb7\xde\x94\xf7\xa4\xa7\xb8\x97\xbc\x27\xf6\x72\x2f\xe5\x8a\x11\x84\x89\xfa\xec\xcf\x79\xd3\x6a\x2e\xd9\xe7\x46\xe8\xb2\xf9\xd1\x9d\x58\x46\xc2\x43\x90\xef\x36\x03\x85\x49\x48\xfb\x72\x33\x5a\xe8\x07\xa7\x19\xb9\x6c\x5d\xe9\x0d\xb3\xfa\x61\x06\x75\x67\xca\x4a\x9e\x28\xec\xec\x49\x12\xdf\x9d\x1b\x7e\xff\x15\x43\xba\x21\x51\x5a\xab\x71\xb3\x7c\xab\x55\xaf\x37\x55\x2f\x52\x11\xdc\x85\x62\x94\xf7\x81\x46\x08\xc7\x2d\xdf\x85\x12\x4c\xf4\x27\x70\xf5\x97\x94\x7b\x33\x07\xcb\x51\xfc\x02\x96\xb1\xb8\x4b\x4a\xb5\xe2\x1e\x37\x0b\xbc\x3a\xe7\xe2\x5d\x88\xe5\x52\xcf\xdc\x65\xc1\xed\x41\x48\x15\xa5\xf1\xb9\xe1\xc1\x99\x0c\x66\xe5\x0d\x4d\xc4\xfa\xae\x6b\x66\x7e\x63\x51\x6f\xbf\xc1\x95\x15\xdc\x4b\x28\x15\x4f\xba\x59\xd1\xf5\xe7\x64\x34\x9e\x2d\x49\x62\x37\x2b\xb6\xda\x2f\xe8\x6e\xdc\x3d\x8d\xd1\xd6\xd1\xf1\x03\x50\x35\xcf\x94\x69\x8d\x1d\xe5\x7a\xd3\xc7\xd2\xfe\x27\xf7\x8b\x32\xee\xa2\xef\x37\xc3\xfb\x1c\x95\x7a\xbf\x9c\x87\x96\x06\x15\x97\xac\x76\xbe\x71\xa1\x4f\x12\x30\xef\x17\x74\x51\x82\xf0\x4d\x06\x23\xb1\xf7\x9e\x6b\x96\xea\x10\x55\xaa\x9d\xa3\xe3\x9e\xb8\x64\x48\x65\x78\x4f\x04\x48\x99\x3c\x30\x49\x84\x55\xe9\xf7\xe2\x27\x3a\x69\xcf\xd2\x7c\xeb\x28\x3e\x30\xe6\xaa\x14\xee\x78\xc8\x0c\xb4\xae\xcf\xd1\x90\x32\x30\xea\x37\x96\x51\x52\xf4\x73\xd0\x01\xa6\xf9\x05\x22\x9d\x24\xaf\x07\x8a\x6c\x4b\x24\x0f\x6d\xb7\x8e\x92\x7d\x48\xdc\xc5\x0d\x1e\x12\x6f\xf1\xc0\x27\x30\xff\xa3\x7f\x53\x32\x93\x5e\xe1\xc1\x35\xd8\x69\x96\x1f\xe4\xb2\x72\x04\xca\x13\x39\x27\xcd\x19\xb6\xd4\xac\x6b\xf4\x03\xff\x74\x97\xf6\x79\x68\x5b\xfd\xf9\x1e\xe6\xe8\xe8\xfe\xc9\xbf\xa4\x62\x78\x12\x85\x59\x09\x38\x4f\xe2\x4e\x8a\x4e\x3f\x89\x62\xbb\xae\xea\x4f\x62\x00\xb3\xbb\xe0\xa4\xa4\xc4\x7e\x12\xe5\xfa\xe4\x2f\x40\xf3\x9a\xbf\xe0\xac\xb5\x0a\x48\xde\x90\xc4\x33\x9f\xbc\xb6\x5a\x40\x65\xf2\x23\x09\x97\x0f\xaf\xc9\xde\x88\xcc\x4b\xd4\xf0\x03\x2c\x9c\x67\xc1\x64\x56\xa9\xb8\x07\x60\x43\xf3\x10\x3c\x54\x22\xbb\x0f\x4c\xad\xce\x40\xf9\xf0\xda\xac\x33\xf6\x14\xaa\x73\xbc\xb6\xa8\xc9\x93\x8c\xb0\x20\x59\xce\xc2\xf7\x2c\x7a\x24\xc2\xfa\x80\x1e\x39\x05\xc5\xf3\xd1\xa3\xd4\x7e\xda\xb9\x15\xa2\x68\xcf\xa2\x4f\xc5\x6f\x60\x19\x7e\x5e\x58\xcb\x20\x18\x2a\x2f\xac\xc5\x6f\x9c\xdc\x1b\x77\xc1\xcb\x83\xa6\x59\xef\xef\xe0\x7a\x19\x2a\xf6\xca\xbb\xdf\x28\xa3\x09\x68\x84\x4a\x26\x63\x74\xa3\x28\xe9\x65\x80\x43\x78\xfa\xbb\xe8\xd7\xa7\x51\x9f\x25\x49\xf5\x69\x34\x3e\x17\x8f\xf7\xf2\x81\x00\x66\xf2\x05\xab\xb0\x9f\x4e\x76\x24\xfd\xd5\xc3\x0c\xed\x36\x50\x3d\x48\x7c\x90\x7e\x5e\xe0\xce\xb9\x9d\xd7\x69\x1f\xfc\x4e\xd1\x55\xac\xe3\x61\x4d\x1b\x2b\xbd\x1f\xe6\x93\x92\xe0\xf0\x20\x5b\x54\xb2\x01\xe3\x19\xd4\x67\x88\xcf\x3e\xf4\xf9\x3e\x74\x7d\x79\x06\x17\x4a\x5d\x30\x77\xc1\xe1\xa5\x3f\xb1\xdb\x52\x89\x3d\x27\xc0\x96\x01\xe3\x59\xd5\x65\x0e\x3f\x00\x15\xf7\x08\xcc\x34\x60\x87\x83\xe7\x64\x05\xa5\xc3\x0f\xb0\xdb\x22\xe3\xcf\xb2\x78\x8b\xe1\x3d\x17\xb6\xdb\x08\x06\x03\xf7\xf1\xf3\x01\xb9\x9b\x67\x71\xe1\x9c\x0d\xbf\xc0\x69\x7b\x16\xd7\x37\x6d\xe7\x8c\x7b\x90\x89\x20\x79\x65\xaf\x05\xb4\x41\x20\xe7\xf7\xbc\x99\x7a\xe0\x30\x01\xba\x0f\x7e\xa2\x37\x6e\x9c\x5d\x23\x00\x4a\x3f\x9a\xdd\x3d\xf7\x3a\x58\x7e\x81\x4b\xad\x31\x71\xfd\xcd\xde\xcd\x75\xfd\x15\x4f\x7e\xee\x35\x2d\x2d\xcc\x2a\x27\x7d\xb8\xcb\x89\x2e\xb4\x30\x4f\xc2\x6f\x7d\xf0\x50\xf6\x14\x4f\x7e\xbe\xeb\x6c\x73\x6e\xed\xe7\x41\xcd\x2f\xef\xee\x43\x8a\x65\x20\x1f\xee\xa6\xd4\x27\x0f\x13\x81\x9a\x6d\x3f\xcb\x38\xe0\x85\x78\x79\x5a\xbd\xda\x2f\x45\x62\x5d\x1d\x9f\x97\x33\xf7\x17\x8d\x6b\xeb\x2f\xa8\x1d\xd6\x8d\xe5\x59\xf7\x55\x09\x07\x0f\x9c\xbd\xf3\xe1\x2f\x16\x9c\x7e\x81\x4b\xa3\x99\xb3\x3c\xa3\x35\x90\xcf\x44\x54\x95\x89\x35\x32\x7d\x1e\xbe\x01\x3f\xf4\xf6\x76\x3e\xe0\x07\x96\xf8\x2c\x0d\xe4\x03\x71\xc2\x1e\x43\x0f\x34\xfe\x8e\x82\x7a\x26\x60\xf4\xd2\xcd\x05\xe3\x5e\x87\x97\xbe\x64\x8e\x09\x7f\x8f\xb5\x10\x43\x0f\x4e\xbe\x71\xe8\xc1\xc3\x07\x51\x0f\x56\xa7\x7b\xa9\x5e\x66\xdb\xb4\x4c\xf2\xa2\xb0\x73\xb2\x6e\xe9\x85\x61\xbb\x49\xbf\xf5\x52\xb3\xee\x00\xe9\x97\x79\x18\x2c\xaa\xbd\xdf\x6d\xaf\x65\x03\x8e\x4c\x39\xd9\x63\x36\xda\x3d\xd5\x23\x02\x78\x5c\xf3\xec\x6d\x8b\x43\xf8\x85\x8b\x43\xba\x87\x4f\x18\x74\x46\xc5\xb7\x71\xed\xfc\xc1\x2a\xef\xb7\x7f\xf7\x95\x82\x40\x2f\x20\x44\xc7\x8e\xee\x2f\xa2\xca\x87\x83\x8f\x5f\x68\x3c\x93\xf5\x53\x6f\xc7\x76\x7a\x59\xa0\x8c\xcc\x22\xa6\xa8\xf7\xdf\xb2\x78\x31\xca\xfd\x67\xcb\xd8\x28\xef\xdf\xb2\x08\xfa\x4b\x7f\xa4\x23\xfe\x4d\x09\xf2\xf1\x0e\x46\x2a\x7b\xb4\xce\xaf\xfd\x60\x2d\x91\xe1\xc3\x92\x88\x00\xbd\x4b\xb3\x29\x91\xe8\x1d\xd0\x55\x7b\x1b\xcf\x85\xc0\xda\x86\x93\x10\xfb\xf7\x27\x30\x27\xf1\xe5\x97\xd5\x33\x2c\xee\xbe\xe0\x06\x39\xfa\x37\xe8\xaa\xce\xe9\x7b\x92\x93\x7a\x5b\x4e\xc2\xa8\x35\x5e\xcc\xc0\x40\x9f\x0c\x78\x90\xac\xf0\x2e\xcd\xa7\xa4\x76\x94\xfe\xff\x3e\x11\x94\x50\x66\x3a\x79\xd8\x7b\xd1\xc1\x52\x63\x82\x1b\xe4\xe8\xdf\x20\x1e\xd9\xbf\x51\x95\xd1\x87\xec\x63\x06\xa9\x19\xc6\x8f\x19\xe4\xf6\x03\x00\x8f\x58\xf0\x03\x38\xa1\x36\x03\x34\xbf\x0e\x24\x3e\xbc\x37\xc3\x44\xbc\x75\x37\x52\xf2\xfe\xfc\x5e\x98\xa1\x75\xbc\xd7\x66\x0b\x46\xe4\x0a\xfc\x49\xd2\xfd\x22\xeb\x8c\x1d\x5d\x5f\x84\xfa\x54\xc9\x02\xef\x43\xfd\xb0\x3a\x40\xe5\x32\x5f\x97\x5f\xe8\x35\x73\xf2\x6f\xca\x0e\x9e\xf5\xd3\xff\xf9\x53\x6a\xf6\x0b\xdf\x6d\xcd\xf9\xb4\xde\xa5\xd6\xd4\x1c\x1e\x02\xa4\x29\xc0\x15\xca\xf9\x33\xde\x07\x24\x22\x19\xa0\xc9\x55\x14\xc4\x1f\x9f\x68\x59\x3a\xa7\xf7\xa5\x0a\x42\xe4\xf2\x45\xfe\x98\xec\x7d\x58\x5a\x4d\x5d\x54\x5e\xa4\x09\xcc\x3f\x1f\x50\x6c\xab\xee\x12\x34\xdf\x8b\x34\x17\x6e\xf9\x01\xaa\x96\x5a\x14\x7c\x27\xb5\x81\xd2\x94\xbc\x30\x0a\xe7\x9f\xdf\x5c\xb7\xe4\x07\xdc\x3a\xb1\xa6\x17\x91\xdb\x59\x2c\xf5\x9d\x6b\xe2\xfb\x8b\xb9\xa8\xbc\xa8\xe5\x64\x64\xb6\x43\xf4\xe7\x32\xc1\x66\xbf\xf1\xa2\x1c\x49\xd4\x6f\x6a\x35\xb5\x5b\x33\x50\x25\xa0\x4b\xd9\x0c\x6b\x66\x7e\x83\xf7\x1d\x5d\x03\x27\xfc\x9d\x9c\xbb\x70\x86\xb5\xfe\x82\x02\x17\xcd\x2c\xb4\x9e\x8b\x6f\x24\xbf\xc0\x0d\xd1\x0d\x09\xf5\xff\xbf\x07\xfe\x84\x02\xca\xcf\x20\x94\xbd\xb3\x1f\x4c\xbe\xb1\x37\x75\x22\xae\xc6\x8e\x82\x13\x7a\xc4\x2c\x51\x7c\xc6\xb5\x43\xfe\x80\x8a\x20\x5d\xe4\x50\x9f\xbf\x65\xa1\x3e\x8a\xef\x7f\x50\xa9\x8b\xc4\x99\xea\xc2\x82\x5a\xfa\xe1\xe7\x44\xa3\x76\xfe\xf7\x40\x53\x65\xf1\x7c\x67\x5d\x40\xf1\xfc\x94\x7f\xbe\x40\x2d\x23\x63\xef\x4c\x8b\x6a\x08\x4e\x5c\x50\x73\x71\x97\x9c\xb9\x90\x71\x2e\x2d\x9d\x78\x1e\xaa\xe3\x7f\x0f\xd4\x05\xdc\x83\x87\x73\x3b\xa0\x3e\x7e\x4c\x3f\x78\x90\x41\x90\x8b\xbb\xb8\xfe\xf9\x53\xec\xc0\xca\xf2\xf7\xad\xfd\x55\x4c\xd2\x64\x20\x8c\xd7\x0d\x4a\x3a\x57\x09\x9c\x85\x78\xab\x1b\x33\x4a\xe5\x37\x27\x3a\x5b\x95\xf2\x9d\xcb\x61\x16\xa2\x90\x71\xac\xac\x95\xf7\x27\x9d\x9f\x68\x55\x0a\x45\x05\xa3\x21\x95\x72\x4e\x8d\x30\x0b\x79\x8a\x71\xaa\x42\x92\xf3\x0b\x15\x52\xb0\x24\xd4\x59\xc9\xd6\xba\x1f\x0c\x76\x29\xb0\xe0\x25\x95\x8d\x84\x48\xee\x93\xab\xdb\x17\x0c\x7e\x61\xc1\xa0\xb5\xa9\x3c\xa1\xc6\x5b\x16\x8a\x75\xf2\x82\xd9\xb8\xdd\xba\x8a\x4f\xdc\x72\xb3\xa8\xd7\x6c\x64\x7c\x46\xec\x46\x7c\x10\xe7\x9b\xd0\xea\x65\x1f\x7a\x64\x00\xca\xd5\x43\xf0\xf8\x15\xbf\xf0\xf0\x81\xc6\xec\xc8\xf0\xe3\x89\x75\x22\xa5\x8f\xc6\x20\x61\x11\xdd\x9f\x83\x42\x84\x74\x16\x93\x62\x8f\xe9\xca\x12\x7b\x7c\xfe\x58\x48\xd5\xfe\xc7\x13\x71\xc6\x36\x78\xcc\x4f\x90\x29\x76\xff\x9a\x9f\x20\xf3\xad\x9d\x7a\x40\xc6\xbd\x6c\xb2\x72\x92\xb8\xf9\x2c\x31\xee\xd8\x7a\x91\x79\x72\xed\x7c\x10\x4e\xde\x39\xfc\x09\x62\x85\x7e\xb2\x28\x4c\xd6\xc5\x32\x8b\x9d\x4c\x47\x67\xe1\x65\xc2\xc4\x59\xec\x75\x86\x82\xfd\x21\xfb\x7a\xcd\x0a\xfd\xd9\x51\xc0\x13\x71\x3a\x87\x22\xc5\xcf\x86\xbb\x6b\x51\xba\x88\xf3\xa2\xa6\x5b\xc9\x1a\x66\x87\xe6\xb5\xe4\x8d\xce\xb3\x23\x1c\xbd\xe4\x0d\xe9\x44\x7c\x48\x48\x4a\x2e\x3f\x07\xe4\xf3\xa4\x6b\xfd\x44\x04\xc6\x07\x58\xde\x0f\x22\x5d\xbe\xb6\x2c\x38\x47\xa4\x73\xfc\xbe\x1a\xce\x01\xb3\x44\xd2\x4d\x7f\xd2\xe1\x3e\xc9\xc2\x3b\x07\x30\x38\x49\x27\x3f\x07\x52\x39\x65\x29\x41\x26\x3c\xee\x9b\x52\x87\xce\x81\x08\xf3\xac\xab\xe0\x1c\xd8\xa7\xac\x1b\xec\x84\x5f\x79\x53\xce\xd5\x09\x2f\xf0\xe0\xa2\x71\x13\x2e\xd7\xc1\xc5\x69\xe6\x80\x96\x58\x55\x3f\x26\x7d\x93\x93\xdc\x3e\x26\x3c\x83\xbb\x6e\x59\x13\x9e\xc1\x5d\x62\xfb\x84\x67\x70\x53\xf1\x92\x49\xc7\xe0\x2c\x37\xa1\x09\xc7\xe0\x9e\xbb\x3f\x48\xdf\x6f\x4d\xe2\xfc\x18\x65\xcf\x5b\xdb\x30\xcf\xc0\x10\xdb\xc3\x2f\xd4\x7f\xfe\xf4\xa2\xfd\x3a\x3f\x3e\xd9\x95\x22\x68\x9e\x1f\x13\xec\x65\x1f\xa9\x79\x7e\xf7\xad\x5e\xba\xbf\x7f\xbe\xdf\x3f\x00\xbd\xf8\xed\x01\x91\xea\xc2\x33\x04\xcb\x0c\xca\xbc\x38\x4f\x56\x33\x08\xfe\x8d\x14\x98\x9b\xa6\x4e\x78\x1d\xf7\x9a\xdc\x01\x6b\xa5\x56\x3f\x60\xd5\x52\x77\x80\x6c\xd8\x49\x6b\xc6\x6a\xa1\xfb\x3e\x38\xe1\x93\xdc\xab\x67\x18\x51\x2d\xc4\x33\x8a\x74\x20\x34\x00\x0f\xa4\xd5\x8d\x06\xf0\x59\x0e\xe9\xa3\x6c\xff\x7b\xbe\x34\xe9\xd1\x9c\x92\xc1\x85\x3e\x39\x49\x09\x35\xe1\xe2\xfc\x3d\xf0\x00\x90\xc0\x65\x74\x9d\xf0\x79\x0e\x49\xbc\x75\xc2\xe7\xb9\xa9\xda\xd5\x84\xcb\xf3\x37\x88\xe6\x0c\x9f\x67\x87\x6e\xcc\x13\x42\x42\x12\x25\x9c\x27\x84\x84\x94\x3c\x6d\x18\xea\x92\xb4\x14\xf3\xa4\x2b\x97\x32\xac\xcd\x33\xf1\xe4\x46\x8f\xf2\xf2\x81\xe1\x9a\xec\x43\xc3\xe6\xb5\xdb\x5a\xcc\xcc\xe5\x30\xc2\x66\x2e\x47\x12\x60\x99\xcb\x51\xfc\x09\x97\xa3\x69\x7d\x32\x97\x23\x0a\x30\xe8\xb6\x55\x70\x72\xc2\xdd\xfa\xeb\xd3\x5d\x70\x39\xb2\xbf\xa0\xcc\x34\x04\x39\x64\x91\xf6\xf3\x05\x57\xa3\x69\x97\x32\xcf\xb6\x0f\x4a\xe6\x6a\x64\x83\xc5\xd5\x48\x7e\xc0\xd5\x18\x9a\x6b\x21\xe6\x14\x75\x5a\xb8\x1a\xde\xc8\xc2\xd5\x88\xea\xa3\x70\x35\x8c\xad\x85\xab\x91\xb5\xc4\x65\x21\x87\x1f\x90\x38\x16\x41\x5a\xb8\x1c\x3e\x93\xf4\xf4\xfe\x41\x97\x42\xec\x68\x7e\x40\xec\x28\xee\x14\x76\xff\xf0\xd3\x07\xf3\xd0\x79\x05\xcb\xda\x7b\xad\x31\x0b\xe8\xcb\xa9\x62\x9e\x95\xb3\x35\x35\xab\x6b\xb6\x7e\x83\xb3\x15\xb3\x80\xc7\x78\xf0\x2d\x7f\xc2\x65\xfc\x1b\x45\xe8\x02\xb7\xb8\x22\xd5\xe5\x3c\x2b\x67\x1b\xfd\x09\x37\xbf\xf9\x13\xce\xd6\x88\x0d\x09\xaa\x89\x35\xc0\xcf\x3c\xd8\x47\x6a\x9e\x08\x30\xce\xd1\x58\x0b\x99\x2a\x29\x63\xcf\x84\xb7\xeb\xf0\x9a\xbf\x28\xca\x27\xb7\xf1\x09\xb5\x55\x53\xf4\xd6\x7c\x61\x9a\x97\xac\x3b\xdf\x04\xde\x22\x32\x3a\x8f\xf0\xcf\x1f\xdd\x98\x27\xae\x61\x5d\xba\xd3\x89\x5b\x98\x94\x60\x73\xae\xec\x58\xfa\xc9\x8c\x2e\xfa\xc9\xc4\x0e\xfa\xd9\xd0\x97\x3f\x46\xf0\x73\xd7\x4f\x54\xd8\x72\x5f\xf7\x3f\x7f\x4c\x4c\xe7\x81\xfa\xfc\x49\x3f\x3f\x11\x3d\xb9\xeb\xf9\xcf\x1f\x15\x76\x9a\x33\xb0\x38\x97\x7e\xe2\x5b\xbd\x1c\x58\x02\x46\x3f\xbf\x6f\xf7\x95\x64\xe2\x6a\xa5\x92\xda\x13\x57\x18\x05\xb6\x4e\xdc\x60\x4c\xd2\x71\x7f\x91\x6d\x75\xe2\xf6\xa2\x8a\x8a\x13\x97\x17\x05\xa0\xce\xf9\xd1\x24\x69\x91\xe7\x2c\x5f\xcf\x42\xb0\x59\xd0\xb3\x80\xfc\xf0\x5e\x99\xf9\x27\xc4\x77\x25\x51\x9a\x13\xce\x4f\x3a\xbd\xf3\x4d\x5f\xcf\x02\xe3\xcd\x58\x68\xbf\x8d\x6d\xf1\xdb\xc8\x94\xcb\xc5\x0a\x13\x45\xc2\xfb\xce\x2f\x1b\x66\xc4\xcd\xfb\xd8\xf6\xde\x30\x59\x23\x31\x7c\x57\x85\xff\x2d\xdf\x09\x13\xf9\x71\x42\xdc\x81\x52\xf1\x38\x60\xcc\x4d\x3b\x31\x64\x3c\x0e\xa4\xa2\x54\xbc\xd7\xf7\x00\x12\xd0\x56\xda\xc5\x83\xf5\xfe\xdb\x36\x4a\x7f\x0f\xe8\xab\x99\xf5\x09\xa2\xdc\xf3\xf6\xb3\x8c\x07\x0a\xa9\x7f\xa2\x6b\x5b\x0f\x50\xcb\x39\x1e\x3b\x47\x71\x3c\x50\x16\x37\xa4\xae\x37\x62\xa0\x2d\xb3\xec\x3e\x50\x3b\x28\xc8\x19\x3e\x1e\x2c\xd4\xd2\x76\x62\x85\x78\xa4\xce\x07\x5d\x9f\x4c\xce\x65\xec\x51\x56\xb6\xfa\xed\x5f\x1d\x8f\x72\xac\x37\xf6\x27\x05\xbc\x2a\xef\xd4\x0a\xf1\x40\x56\xe9\x6f\x15\xf6\x6c\x0b\x83\x13\x92\xd6\xa3\x6e\xe9\x6b\xaf\x69\xa5\xf5\x79\x27\xd3\x8c\x47\x7d\xe9\x7b\xd4\xf7\x02\x21\xd3\x57\x68\x3b\x30\x2b\x1e\x8d\x6e\x81\xfb\x6a\x15\x0f\x26\x35\x91\x1f\x60\x3c\x3a\x38\xb3\x5c\x0b\xe3\xd1\x61\x21\x92\x0f\x5d\x3c\x06\xcd\xf0\x3b\x33\x45\x3c\x06\x8c\x82\xf2\x5f\x8b\xc7\x80\xc9\x2f\x07\xed\x0b\xc2\x47\x83\x3c\xde\xe2\xb1\x28\xeb\x2e\xdb\x16\x8f\x93\x99\x9f\x37\x55\x8c\x07\x5c\xd4\x83\x9c\xc7\xe2\x71\x21\xa3\x52\xda\x25\x25\xe2\x01\xcf\xcc\x90\x76\xac\x45\x3c\x60\x75\x0e\x72\xa3\x88\xc7\xb3\x76\x7f\xec\x3e\x1e\x16\xe4\xd8\xdc\x2a\x1e\x2f\xe0\x90\xed\xf1\x7b\xc0\x61\xb5\x0d\x2f\xd3\x49\x6d\x56\x1c\x8f\x59\xb8\xa6\x1b\x1d\x02\xab\xb0\x4a\xa5\x1f\x43\xa4\xa4\xb2\x43\xf5\x63\x88\x60\x92\x52\xea\xc7\x10\x99\xc6\x6b\x4b\xda\xdf\x83\x8b\x6f\xb4\xfd\x00\xce\x93\x52\x07\xc7\x80\x12\x70\x41\x0a\xe4\x18\x22\xfc\xf7\xa4\xa7\x8c\x21\xc1\xbb\xa1\xee\x2c\xf7\x31\xb0\x06\x95\x14\x8b\x31\xa0\xa4\x54\x90\xe6\x31\x86\x74\xf3\x41\xde\xa3\xb0\x58\x40\xcb\xcb\x70\xf3\x3d\x78\x59\xa3\x6d\x43\x5a\x16\x60\x6d\xbf\x51\x33\x1f\xec\x15\x0b\x48\x34\xfa\x49\x6e\x7b\x14\x24\x47\x0c\x2d\x8f\xfd\x09\x72\xe4\x7d\x0f\xf6\x02\x75\xdc\x1f\xeb\xce\x82\x1c\x03\x83\x68\x5b\x89\x7b\x72\x88\x20\x6c\x5d\xbf\x6f\x26\x0e\x29\x9b\x9e\x84\x87\xd1\x05\x65\x53\x9c\xb0\xb0\xa1\xe4\xfd\x09\xed\xf7\xad\xe4\xbd\x1c\x0f\x4c\x2f\x6d\xa7\xeb\x8c\xe1\x19\x7c\xa3\xf8\xc1\xcd\x07\x1b\x72\x1a\x81\xdb\xce\x07\x1d\xc3\x03\x24\x6c\x3b\x9c\x3e\x06\xda\xf4\xda\xce\xee\x11\xc3\xcb\xfa\x1c\x45\x4b\xfa\x26\xae\x8f\x00\x03\x2b\x0a\xad\x34\x3d\x68\x9c\xdc\x26\x41\x61\xc2\x79\xb3\x95\x45\x8d\x63\x0c\xc4\x97\x7d\xd1\x89\x11\x65\x74\xc3\x10\x2d\x88\x89\x9d\x56\x3f\x40\x12\x91\x56\x37\x3d\x89\x95\x39\x28\xb7\xc2\x36\xc6\x0a\xb7\xd3\x56\xf7\x29\x8d\xc8\xa5\x12\xda\x2e\xee\x1b\x23\x33\x93\x28\x7b\x5b\x8c\x03\x76\xf6\xb6\xeb\x59\xc6\xc8\x68\xb3\xb6\x59\x58\x8c\x57\x66\x74\xf3\x46\x8f\x48\x27\x72\xf9\x59\xc4\x48\x07\x49\x59\x29\x62\x84\x77\xe3\xf7\x60\x6d\x43\x5c\xc7\xb6\x85\xdd\xc7\xcb\xb0\x8d\xad\xd8\x8a\x71\x22\xeb\xe8\xb1\xf3\x5f\xc6\xc4\xe2\xdf\x6d\xd7\x1b\x8d\x29\x10\xa3\x5a\xfe\x8b\x7b\xd3\xf7\x36\xf7\x68\xd3\x85\x14\x26\x33\x2d\xef\xc5\x4a\x09\x8e\x64\x6d\x87\x82\xc4\xc4\x12\x45\x79\x67\x76\x8c\x29\x31\xbb\xfd\x8e\xc3\xfe\x1e\xac\x4f\xb2\x1e\x10\xa6\xaa\x4e\x9f\x95\xcf\xd9\x7d\x9c\x7c\x10\xf5\x60\xf2\x81\xfa\x20\x5d\xd8\xb5\xef\x62\x4a\x93\xaa\x97\xb8\x3f\x59\xcc\xa8\x75\x3f\xb8\xf8\x60\xf7\xc1\xd2\x29\xad\xed\x2d\x49\x99\x8e\x76\x4d\xd3\xcf\x1c\x65\x97\x1d\x89\xa9\x30\x3a\x73\x1b\x3d\x62\x42\x6d\x88\xd0\x76\x3a\xf9\x98\x0a\x97\x70\x87\x67\xc7\xc4\x5c\xef\xad\x6b\x09\x2b\x6e\x85\x6d\xa7\x92\xfa\x1e\xd0\xe5\x74\xe8\x0d\xd2\x96\xed\xc7\x11\x53\x43\x3c\x55\xeb\x5a\x31\x24\x21\x0d\x6d\x97\xe4\x8a\xa9\x81\xb1\xd6\x21\x48\x99\xf8\xb1\xee\x40\xe2\xef\xc1\xca\xa1\xb8\x21\x6d\xab\x1e\xf8\x3e\x7f\x09\xd9\xcd\x3e\xe1\x41\xc3\x32\xd7\x58\xd7\xaa\x77\xa2\xe8\x4e\x74\x14\x13\xb2\x31\x7d\x0f\x76\x1f\xe7\xe0\x6c\xb7\x08\x90\x6e\xe8\xa6\xda\xce\x4d\x12\xd3\x0d\x1d\x59\x8e\x9a\xed\x8d\x9d\x4b\x3b\x66\x3e\xa6\x07\x05\xbf\xdb\x0e\x20\xfd\x1e\x20\x68\x7e\x6b\x9e\x62\x7a\x32\xdf\xd0\x02\x3d\x44\xa9\x9d\xb6\x27\xa6\x87\xb2\xc9\xd0\x41\x78\x48\x4b\x86\xb6\x61\xc2\x85\xa7\x6d\x77\xc5\x98\x8f\xcc\xc3\xb4\x11\x37\x1f\x74\x96\xd9\xee\x35\x31\x07\x68\x92\x14\xe0\x1d\x73\x60\xe5\xd6\x1d\x24\x13\x73\xc0\x5c\xfa\xb6\x9c\xc7\x8c\xfa\xa1\xdf\x25\x66\x41\x9a\x13\x94\x88\x7d\x7b\x52\xc7\xcc\x0a\x5e\x62\x1b\xb9\xb2\xcc\xe3\x56\xea\xc6\xcc\x34\xdb\x7d\x2b\x3b\x63\x66\x16\x3a\x55\x7e\x8f\xb9\x33\xd5\xe3\xae\x72\x11\x33\xaf\xc9\x7d\x1b\xcb\x63\xbe\x58\x71\x7a\x5b\x27\x62\xbe\x58\xfc\x66\x1b\x0a\x62\xa6\x87\x77\x17\x6d\xc9\x0f\x72\xa8\xa5\xed\xc5\x15\xf3\x7b\x2c\xa3\x48\xd7\x03\x4c\x36\xf8\x01\x84\xe5\xbe\xf3\x43\xc6\xfc\x32\x37\x68\xd8\x38\x97\x5f\x96\xc8\x0b\x02\x7d\x2e\x73\xda\x66\x24\xe5\x60\x39\xee\x9d\x21\x2c\x96\x83\xb9\xb3\x76\xda\xb4\x58\x02\xfc\xc4\xfb\x4e\x01\x16\x4b\x40\x16\xf1\xbe\xb3\x35\xc6\x12\x6e\x4e\x7f\xe8\x13\x16\x8e\xdd\x99\x13\x63\x41\xb5\xf5\xef\xc1\xee\x23\x32\x36\x7c\x27\x30\x88\x85\x25\xaa\xba\x84\xec\x92\x59\x56\x66\xdf\x2c\x62\xc9\xcc\x0e\xb1\xdd\x72\x63\x29\xc7\x7a\x63\x7f\x82\xaa\x2c\xa1\x6f\xe7\x8c\x58\x98\x0d\x3f\x4b\x2e\x2f\x4c\x7d\xda\x84\x2f\xa5\x71\x2e\xbb\xa4\x58\x2c\x0d\x62\x45\xdf\xd1\xfb\xb1\x30\xad\xd6\x2e\x07\x1b\xcb\xa0\x30\xb3\x8d\x19\xdf\x03\x6a\x94\xb7\xf4\x5b\x56\xde\x8b\x7d\x2f\x8e\x05\xf1\xbe\x21\xed\xb0\xf5\x58\x4e\x66\x6e\xda\x29\x59\xbf\x07\xfc\x64\xe9\x26\x62\x39\x99\xf9\x70\xa7\x64\x8d\x85\x11\x44\x5d\xc7\xb8\xdc\x20\xaf\x7d\x07\x11\xc6\x72\x83\xe0\xf4\xad\x51\x8e\x65\x49\x11\xdb\x32\x1a\xcb\xcb\x35\x4e\x9a\xfd\x4b\x34\x95\x58\x5e\x5e\x08\x2f\x3d\xfd\x8d\x87\xc4\xf7\x76\xe1\xdb\x7b\x6d\xde\x7b\x7d\xbe\xe7\xf5\x32\x13\xe5\x56\xf5\xc4\xf2\xbe\xeb\xc1\x1e\x71\x32\x5b\xf3\xf6\xa5\x8f\x05\x77\xd3\xef\xc1\x9e\xd7\xe4\x72\x6e\x7d\x49\x2c\x13\xb2\x4f\xdf\xaa\xc3\x58\x26\x0b\xc5\x6d\x2d\x55\xac\xc7\xc1\x3e\x36\x35\xaa\x07\x0c\xa3\x7d\xeb\xdb\x62\x3d\x98\xab\x66\xfb\xf6\xc5\x7a\xa0\x10\x71\xdf\xae\x18\xb1\x46\xa0\x7d\xda\x39\x98\x63\x8d\x95\x37\xc7\x7d\x1f\xab\xb1\xb1\x8f\xae\x4f\x58\x6b\x69\xbb\x45\xc6\x9a\xf2\x2a\x1d\xbc\xfb\x60\x7d\xba\xbe\x55\x72\xb1\xa2\x80\x43\xe8\xdb\x8d\x26\xd6\xca\xcb\xe6\xf6\x27\x8a\x15\xf9\xae\x43\xdf\xc9\x17\x63\xed\x4c\xbf\x9e\x35\xb9\x95\xb3\x6b\x1b\xb8\x63\x1d\xd4\xb8\x55\x3f\x20\xf5\xc9\x65\xf7\x01\xbb\x40\xc8\x3b\x27\x76\xac\x63\x75\xaa\x05\x3a\x79\x62\xb3\x16\x68\xe9\xd3\xb6\x2d\x31\xd6\x13\xd5\x36\xfb\xce\x95\x1c\xeb\xca\x09\xb0\x8d\x72\xb1\x9e\xe4\x67\x87\xde\x60\xf4\x47\xcb\x1b\xab\xeb\xcd\x62\xa4\xbb\xf4\x5d\xac\x37\x2d\x4d\xd1\x0f\x08\xd8\x8e\x07\x89\xf5\x25\x2f\x3a\xb4\x0d\x0b\x0b\xcb\xbe\xb2\x54\x1a\xc4\xba\x64\xf4\x3a\x11\xb6\xd4\x77\xd1\xb6\xd8\x8e\xc9\x2a\x80\xfb\xa8\xb4\xc0\x94\x99\xdb\x22\x10\x5b\x80\xd0\xd0\x77\x46\xc0\xd8\x28\x22\xf5\x5d\x55\xf9\x7b\x70\xf1\xc1\xb1\x1f\x90\x17\xd5\x4d\x9f\x1a\xea\x02\x86\x5e\xf7\xf1\xf8\x2e\x40\x7c\xb0\x3b\xad\xcc\x9b\x59\x37\x26\xb7\x0a\xd7\xb0\xbe\x95\x4d\xb1\xb1\xd6\x4d\xaf\x5b\xdc\x6b\x2c\xce\xa1\x6a\x03\xb1\x55\x54\xcf\xea\xdb\x4f\x24\xb6\x46\x36\xb1\x75\x41\xb1\xad\x84\xe8\xbb\x50\x7b\x6c\xc8\xbc\xfd\x3d\x58\x8b\xdc\x46\xe7\xb0\x5b\xfe\x6b\xc8\x60\xf4\x09\xba\x7b\x81\xce\x4e\x48\xb7\x30\xd7\x2e\x16\x7e\xd8\x8a\xaf\xef\x01\x86\xdd\x19\xc0\x62\x63\xb0\xa0\x6c\x0c\xb1\xdd\x89\xa1\xda\x5a\x8f\x1b\x52\xbc\x62\x75\x63\x83\x1b\x71\x3c\x76\x79\xb3\xd8\x1e\xa4\x33\x96\x27\x5c\x6c\x6f\x58\x0f\xf6\x27\x93\xd7\xf3\xad\x64\x8c\x9d\x0a\x9e\xbe\x93\x86\xc4\x7e\xa0\xd4\x68\x6f\x7b\x2e\x1f\xd9\xc5\x12\xee\x35\xed\x91\x25\x51\x76\x8d\xd6\xd8\x23\x93\xd4\xb5\x7d\x23\xe9\xa8\x03\x1a\x94\x07\x3c\xf6\x4c\x0a\xb3\x4b\xc6\xc7\xce\x3a\x7f\xbd\xed\x2b\x4a\x2f\xac\xed\x2b\x21\xbb\xd7\x87\xeb\xb1\x97\xb0\xa3\x82\xc0\xf7\x60\x7f\xb2\x92\x8d\xed\x5c\xf7\xdf\x03\xd6\x87\xdb\x48\xd7\xc7\x2a\x18\x1c\xf4\x49\x6f\xcc\xe7\x99\xf4\x80\xf5\xb4\x36\x8e\xf5\x75\x90\x25\x0f\xf7\x73\xd7\xb5\xd6\x1b\x99\x35\x3c\x36\x0f\xec\xe7\xaa\x19\xac\xe9\x9f\x83\x9f\x6c\x62\xd0\x4f\x72\xfc\x9d\x2e\x3b\xf6\x93\xc7\x54\x12\x73\x5f\x1c\xad\x6f\xd9\xa4\x33\xb8\xb4\x4b\xb8\xed\x8c\x5f\xec\x92\x87\x3b\x8e\x7a\xdb\xda\xd1\xd8\x1f\xee\xf5\x4e\x3f\x19\xfb\xb3\xe0\xda\xa2\x49\x7f\x56\x85\xd0\x4d\x81\xfb\x1b\xd6\x72\xfc\x45\x5e\xbd\xef\x6d\x42\xb0\xe9\x75\x7f\x99\xa7\x7f\x6b\xa8\x63\x7f\x3b\x27\xbe\xb9\x6e\x7f\x5f\x8e\x38\x34\x22\x12\x0a\xef\x6a\xf0\xb1\xcf\x55\x38\x73\x0b\x36\x7d\x11\x9f\x9d\xc3\x2a\x8e\x48\x9c\xde\xd9\x7e\xe2\x88\xd7\x4a\xee\xbf\xd6\x7f\xe4\xc1\x37\xb6\xce\x65\x94\x9b\x09\x5b\xf6\x96\xad\x32\x3f\x69\x57\xcc\x8e\x2c\x77\x11\xfa\xae\xfb\x13\x59\x68\x21\xf4\x1d\x60\x1e\x47\x2b\x7c\x63\x53\x67\x26\xbd\x0c\x5d\x02\xf9\x38\x57\xd0\xd2\x3e\xc1\xe3\xa1\x7d\xa8\x09\xd2\xe7\x61\xac\x4c\xdc\x7d\xd0\x95\x75\x6c\x0f\xa4\x38\x5e\x46\x81\xa4\x4d\xae\xc7\x9b\xe9\x22\xbd\x49\xdc\x78\xfb\x8a\x74\xdd\x9d\xd2\x17\x6f\x6c\x17\x94\x48\xc7\xb6\x30\xb6\xa7\x46\x1c\xef\xca\x44\xb2\xd5\x21\x63\xde\x8c\x85\x6d\x7a\xf0\xb4\x7f\x7b\x70\x1e\x81\xa3\x6c\x09\xeb\x3c\x22\xdd\xc5\x37\xb6\x9d\x47\x5f\x71\x16\x79\x3f\x98\xcb\x35\x7f\xad\xc7\x19\xc6\x72\x28\xdf\x7d\xc4\x8b\xc2\xf3\x26\x93\x27\x0b\x4e\x0f\x69\x20\xcf\xcc\xc8\xc1\x5d\x1f\x27\x9e\x05\x72\xdc\xd8\xb5\x5b\xe2\x59\x97\xaf\xd9\x96\x88\xce\x0a\x8f\xac\x63\x07\xb3\xc7\xb3\x5e\xeb\x8d\xdd\xe9\x78\xe9\xc3\xb0\xc9\xd3\x85\x62\x0e\x41\x15\x2c\xe2\xd5\xc8\xf0\x77\x12\xf1\xef\x01\x09\xe9\xbe\x59\x5f\x6d\x39\xed\x0c\xbf\x41\x25\xee\xc6\xd3\xab\x55\x56\xfd\xce\x7a\x80\xaa\xdf\xc7\xf6\x8a\xfb\x1e\x50\x13\xba\xcf\xe3\x85\xbc\xfd\xf1\xd0\x5c\xae\xd6\xa9\x30\xd9\x47\xf8\x42\x5a\xfd\x90\x77\xed\xc6\xef\x01\x2f\x7d\x1b\x71\xaf\xd6\x59\xbd\x23\xea\x8d\x41\xd6\xb3\x29\xda\x85\x8c\xf3\xf1\xd8\xf5\x25\xbf\x07\xf0\xe4\x09\x9e\xfe\x45\xbb\x5d\x53\x1f\x28\xfd\x7c\xec\xdc\xb8\xdf\x83\x49\xb1\x42\x80\xd1\x1b\x73\x27\x05\xfd\x1e\x74\xa6\xf0\xd4\x1b\x74\x4d\x94\x5d\xe0\x42\x5a\xed\x78\xec\x64\x53\xf1\x62\x4e\xeb\x63\xa7\x82\xfa\x1e\x9c\x8c\x2d\x5b\xab\xfe\x14\x5a\x75\xfb\x16\xb3\xde\xd8\xa8\x4b\xdf\x24\xff\x2d\x34\xd3\x89\x6e\xbe\x28\x74\x13\xf2\x0e\x7c\x88\x93\x09\xc4\x8b\x74\xc7\x93\xc9\xbb\xa5\x23\x99\x9d\xde\x0e\xdb\xa8\xf2\x3d\xe8\x78\xa1\xe9\xf7\x49\x45\xb1\xbe\x58\xa2\x6d\xf7\x83\x4e\xa5\xb7\x3e\x89\xf7\xbf\xa9\xd6\x67\xa7\xfd\x7e\xdb\xaa\xbe\x07\xa4\x40\xfb\xa0\x4f\xa4\x7d\xfe\xc0\x88\xfb\x01\xcd\xbc\xd2\xbb\xcc\x4e\x4b\xa8\xee\xf7\xb3\x57\xee\x5b\xd4\x1b\x10\x07\x53\x4f\xea\x03\xfe\x53\xcd\x90\xa3\xac\x43\x4b\xfa\xcd\x8c\x92\x92\x30\x67\x1f\x9c\x6b\xd4\x18\xe7\x02\x4b\x9f\xc0\x23\x3a\x6d\x7f\x95\x38\xfb\x45\x38\xab\x26\x7f\xf1\xbc\x45\xcd\x15\x41\x1b\xd2\x78\x4f\xa4\xf6\xfd\xd1\xc1\x4d\xe4\xf6\x6d\xdb\x50\x1a\x27\x53\xf7\x66\xd9\x72\x66\x5f\x01\x16\xd5\x6f\x00\xce\x6d\xce\xfb\x1e\x80\xf9\xd5\xf2\xef\x8c\xab\xfc\x4f\xf8\xd6\x44\x46\xdc\x0f\x57\x37\x40\x83\x2e\x37\xd2\x01\xce\xb1\xec\x60\x1b\xdf\xe7\x38\xe8\x3b\xa4\x95\x1d\x0b\x29\x34\x29\xa6\x84\x95\xe5\x6c\x22\x25\xec\xd7\x85\x1e\x2c\x8f\x84\x2d\xe1\xcc\x41\x0f\x04\x29\xc5\xe6\xa0\x05\x59\x07\x73\x0e\x58\x35\x92\x2e\xcf\xcb\x9b\x28\x1f\x06\xf4\xa1\x67\x59\x15\x18\xcc\xc5\xb0\x63\x8b\xe2\x1c\x2b\xa5\x7f\xfd\x5f\x7b\x48\xfe\xeb\xfc\x8f\xff\xfb\xc5\xeb\xdf\x17\xc7\x3f\x7f\xd6\xbf\xd0\x2b\xef\xe7\xe5\xd1\xf3\x86\xea\x73\xbb\xe1\xbb\x25\xef\x7f\xbf\x65\x3c\xf4\xc9\x87\x18\xfb\x5f\xf8\x84\x35\xb5\xdc\x6e\x61\xda\xc3\xdd\x72\x7b\x78\x24\xe0\xdc\xe6\xdb\xe3\xf8\xc4\xe1\xf5\x2f\x6d\x6e\xc7\x6e\x79\x86\x5b\x28\x44\xef\x96\xd7\xbd\x31\x7f\x57\x52\x8b\x7b\x9b\xcc\x43\xbf\x5b\xa6\x7b\x43\xaa\x85\x6d\x40\x3f\xc2\x27\x89\xec\x7f\x07\x13\xa6\x6f\xb8\x63\xd5\x5c\x23\xe3\x0d\xe5\x58\x7e\x44\x43\x11\x81\xd8\x76\x5f\xfd\x28\x98\xdb\xd0\xa7\xaa\xf1\x1c\xe9\xd0\xca\xa6\x83\xb5\x6b\xd5\x52\xdd\x02\xd2\xb3\xd7\x22\x05\xc1\x98\xe8\xbb\xac\x8c\xff\x47\x0a\x8f\xdb\x5e\xb6\x45\xb5\x4d\xb5\x31\xa9\x54\xd7\x0e\xa7\x74\xaa\x0d\xfe\x3f\x45\xf9\xf2\x8f\xf4\x11\x94\xfd\xef\xaa\x3f\xe4\x36\xc3\x82\x02\x86\x87\xe2\x2a\x8e\x34\x3c\x37\xa8\x59\x14\xd7\x74\xa4\x0f\x8b\xf6\xbf\xdf\x14\x0e\x7f\x75\xde\x6e\x02\x47\x92\xbb\xfe\x91\x2e\xf7\x08\x51\x59\x9e\xe2\x47\xba\xdd\x23\x22\xce\xe4\x0d\x7a\xc0\x1c\xb0\xff\x05\x7f\x92\x73\xfd\x01\x65\xc3\xfe\xf7\x66\x5b\x53\xdb\xeb\x36\x42\xb2\xdd\x3a\x0e\xdc\x5b\xf7\xbf\x05\xc3\x0d\x35\x69\xe3\x50\xee\x3d\x28\xd8\xe6\x40\xb9\xf7\xf5\x2f\xec\xc1\x2a\xfd\x79\xa0\x46\xfa\xfe\x97\x80\x6c\x4f\xb1\x03\xc5\xcc\xf7\xbf\x04\x64\xbb\x01\x85\x37\xed\xb6\xf0\xb2\xf4\xbb\x62\x42\xa2\xcf\x79\x3c\xe0\x90\xbe\xdd\x7a\xe2\x91\xa2\x5a\xe0\x70\xb2\x7d\x19\xe3\x91\x86\x5b\x4e\xf8\x19\xec\x96\xdc\xd4\x02\x37\xaa\xaa\x62\x48\xf1\x68\x59\x6d\x6d\xfc\xf3\x67\x24\x37\x75\x03\xd1\xd1\xb4\x5d\xcf\x62\x28\x7b\xcf\x62\x28\x19\x5f\x15\x35\x55\x37\x9d\xff\xfc\x19\xad\xbb\xe9\x72\xd3\x8b\xaf\xc2\x6e\xaa\x1a\x2b\x20\x85\x64\x71\x87\xf5\x74\xd3\xf5\xcf\x9f\xae\x58\xcf\x18\x9a\xbf\x6a\xc8\x96\xba\x9d\x5e\x62\x68\xfe\xaa\xe1\xab\x7d\xaa\x23\x24\xdf\xfd\x2f\xa3\xb4\xd5\x62\xd8\xe1\x45\x1c\x95\x57\x3d\x86\xd1\xdd\x36\xd8\xa6\xc1\x6e\x2d\x62\xf8\xe8\x62\x57\x6e\xac\x18\xe3\x26\x21\x31\x46\xfa\x39\x6d\xb7\xc1\x18\x63\x73\x1b\x62\x4b\xdc\x72\xb9\x85\xdc\x77\xb7\x54\x0d\x15\x29\xd3\xa6\x9f\xb6\xea\x36\x14\x67\x0d\x6a\x39\xdd\x72\x21\xc3\xc8\x6e\x69\xc2\xa7\x08\xf9\x24\xca\x7d\x3e\xc6\xe6\xfe\x98\xc0\xa1\x1c\x1a\xab\xfb\x3b\xa4\x03\xdb\x4e\x74\x31\x76\x43\x08\xcd\x4b\x91\xeb\x75\x84\x0e\x71\xff\x0b\xe7\x71\xc1\xd1\x0d\x21\xd4\xfa\x25\x6f\xd2\x18\xe3\xe3\x36\x08\x27\xa5\x09\x05\xd2\xa1\xf5\x05\xdd\xfd\xbe\xdb\x1b\x9d\xa2\x4e\x44\x8a\xe7\x3f\x7f\x14\xc3\x15\xd3\x78\xd4\x82\x30\xb6\xa8\x5a\x70\xd1\x14\x2e\x26\x38\xcb\xc4\x6d\xc3\xfa\x1e\x34\xb7\x7d\x08\x17\x3c\xd8\x79\xb9\xe9\x41\x93\x7a\xbc\x84\x70\xa0\x83\xa1\x2a\xcb\x6f\x4c\xd7\xab\x36\x18\x3f\xab\xb2\xd8\xc6\xec\x43\x91\x51\x0e\x43\x55\xe6\x63\xf6\xb1\xcd\x1d\xce\x60\x3a\x4a\x59\x84\x3d\xe2\xaa\xdd\x95\x5d\x35\x66\xd1\xf5\x98\x07\x03\xb6\x36\x37\x8e\x79\xdc\x6a\xbb\x3e\x1c\x56\xe8\x54\xcc\x97\x76\x2d\xe3\xae\x7e\xc8\xbd\x2f\xe6\xc7\x30\x82\x45\xba\x0a\x7c\xcc\xaf\x96\x24\x43\xce\x39\x94\xf8\x26\xe6\x59\xdc\x06\x21\x43\x61\xe4\xb1\x1c\xea\xb3\x20\xbd\x7c\xde\x7e\x61\xb1\x54\x6d\x5c\xa9\xef\x77\xac\x37\xd1\x8f\xa5\x69\x72\xe5\x5b\xad\xae\xac\xb5\xb1\x74\x37\x7d\xab\xd3\x15\xb4\x18\x61\x72\xdd\xff\x16\x74\xb8\x41\x2c\x9e\x1a\x6b\xaa\x57\xe5\x1b\x8f\xa8\x46\xbe\xff\xc5\x60\xda\x9a\x6a\xe8\xeb\x81\x26\x4d\xba\x8a\xc1\xc4\x0a\x5d\x4e\x55\xaa\xee\x88\x62\xe4\xfb\xdf\x07\x64\x6e\xc3\x58\xab\x76\xb4\xe2\x46\x15\x15\xdc\x1c\xab\xcf\x2f\xca\x27\x7f\xb8\xb5\x81\x6c\x3e\xbf\xad\x61\xb1\x76\x4a\x83\x88\x72\x03\xfb\x5f\x48\x72\x4a\xe0\x1a\xc7\xd4\x71\x43\x6e\xef\xaf\x6d\x2f\xf2\xe5\xe3\x76\xc1\x09\xf1\x6b\xa2\xe4\x4a\x39\xf5\x7f\x25\xba\x46\xa4\x47\xdc\xff\x16\xd6\x06\xde\x73\xbf\x4c\x4c\x90\x5b\xf0\xa3\xad\x7b\x82\x6f\xd7\xba\xbc\x48\x59\x90\x54\xe7\x3b\xbe\x92\x6e\xe3\x4b\x57\x7f\x65\x4e\x8b\xaf\x0f\xd6\x7b\xd3\xea\xb0\xfd\x16\x23\x62\xcf\xf6\xbf\xe5\x9f\x3f\x59\xc9\x29\x23\xe2\xbf\xf6\xbf\xf1\x9f\x3f\xb9\x6c\x1f\xee\x38\xaf\xa9\x26\x26\xef\xdd\x32\x40\x9c\x8f\xbf\x7a\xe2\x6f\x48\x54\x84\x81\x67\xff\x5b\x7e\x03\x51\xd2\x21\x4c\x49\xc7\x27\xcd\xc8\x01\x3e\x1d\x5a\xe6\x74\x7c\xcb\xbc\x7d\x43\xbe\x9f\x5d\x2d\x21\xfc\xd0\xb4\x74\x68\x52\xe9\xf8\x26\x55\xb7\xcc\x90\x0e\xa1\x5d\xa2\xa9\xa8\x6a\x29\xd2\x11\x7e\xfa\x1b\xa4\xff\x63\xb7\xa5\xa4\x36\x20\x49\x54\x34\x70\x3a\x72\x50\xdb\x40\xc0\x82\xe0\x18\x86\xe3\xe3\xa7\x4d\x15\xbf\xd3\x31\x86\x9b\x90\x70\x53\x9e\xe8\xe9\x18\x97\xdb\xee\x7f\xfe\xd4\xac\xc5\x10\xb1\x4e\xc7\x47\xac\x55\xf7\x30\xf9\x76\x93\x70\x4f\x50\x96\xe8\x74\xcc\xe6\x96\x13\x1c\x59\x1f\x4d\x77\x37\xd1\xdd\xda\xfb\x64\xc1\x20\x05\x38\xca\x55\xd5\x94\x4b\x61\xba\x0d\xd7\x8b\xaa\xcc\xfe\x29\xe8\xc0\xa4\x30\xf9\xdd\xa6\x4a\x29\x4a\x92\x4b\x11\xaa\xe9\x43\x61\x5f\x29\xc6\xd3\x6d\xf3\x23\xb9\xfb\x58\xa7\x98\x34\xb3\x88\x0c\x5f\x35\xa8\x49\xf2\x66\x8a\x9f\x40\xd5\x15\xa7\x99\x62\xb9\xdd\x04\x42\xad\x2c\xfb\x29\x76\x03\x02\xbd\xd5\xa1\xaa\x9b\xc9\xcc\x37\x45\x38\x23\x1d\x46\x52\x28\x74\xf7\xbf\x90\xdc\x73\xd7\x04\xce\xec\xb6\x0e\x28\xf7\x7a\xc5\xcb\x13\xb8\x16\x28\x9a\xc1\xe3\x2e\x41\xfb\x0f\x85\xf6\x27\x5f\xab\x12\xaf\x55\x41\x57\xa4\x94\x24\xd6\xa7\x04\x8f\xd3\xa0\x0a\x2d\x29\x85\xd3\x6d\x28\x66\xa9\x0a\x16\xc9\xd7\xa7\x94\x70\xef\x0f\x2a\xa9\x90\x52\xec\x6e\x1b\x68\xdb\x7c\x2f\xa5\xe8\xf1\x10\x31\x12\x94\xb3\x3e\x25\x11\xd0\x94\x70\x36\x82\x72\x96\xa7\x94\xfc\x5d\xe6\x77\xc2\x95\x94\x93\xdb\x2a\xdb\x34\x87\x7c\xb9\xed\x46\x9b\xb6\x2f\x65\xcf\xa1\xb0\xcf\xac\x3e\x4b\x71\x1b\xfb\xdc\xdc\x28\xe1\xde\xb7\xff\x85\xa0\xb0\x6f\xc5\xc9\x37\xc0\x94\x3a\x84\x99\xa1\x99\x77\xcf\xa0\x23\x23\x9d\x17\x4c\x72\x42\x82\xe8\xd4\xea\xa1\x0e\x8d\x0e\xe9\xfc\x78\xa9\xb2\x1c\xa6\xf4\xe8\x3c\x26\xe8\x22\x83\x0a\x27\xa6\x22\xe5\x45\x2a\xcc\xb2\xab\x7c\x79\x09\x15\x69\xf7\xbf\x74\x2c\xdc\xf7\x4d\xba\x90\xec\x7f\x0b\x55\x52\x75\xb7\xc5\xa4\x36\xb8\x19\x0d\xe5\xc5\xc8\x6f\x9c\x6a\xc3\xb6\x66\xa5\x4b\xce\xb0\xbf\xee\x7f\x03\xdb\xe2\x6e\x6b\x1e\xaf\x15\x06\xc5\x8c\xdd\x36\x5e\xb5\x7d\x07\x46\x2e\xd8\xdf\xef\xcb\x4d\x8c\xc7\x59\xc4\x21\x4f\x6d\x78\x9e\x30\xa6\x07\x65\x3e\xc9\x08\xae\xdc\xff\x32\x31\xe5\xbe\x56\x66\xc4\x55\xee\x7f\xe1\x12\xa4\x00\x8c\x3c\x2f\xf7\x79\x21\xeb\xab\x04\xb9\x3c\xa5\xbf\xc9\x13\x25\x57\x42\xd8\xb2\x49\x86\xab\xfb\xfe\xf7\xe3\x89\x92\x7a\x8b\xf9\x54\x39\x0e\x2e\xca\x56\x76\x14\xdf\x47\x0b\xd8\x45\x0c\xe2\x1f\xe5\x28\x41\x6d\x28\x87\x1c\x54\xa6\xba\x1c\x3d\xa9\xed\xbb\x30\xc4\xa0\xea\xcc\xe5\x18\xee\x73\xd0\xb3\x7c\x8b\xd9\xe5\x18\x53\x6d\x27\xa7\x90\xd5\x76\xba\x0d\x69\x1d\x82\xea\x06\x97\xe3\x3a\xdd\xb6\x9c\xd3\x05\xcb\x3d\xd4\x76\x9f\xdf\xd4\xdd\xf4\xdc\x6a\x7a\xb8\x9a\x9b\x15\x97\x20\x52\x55\xc2\x47\xaa\x2c\x60\x94\x70\xdc\x6e\x82\x35\x67\x7b\x2d\x1d\x25\x04\xb7\x05\x76\xb9\xd5\x0c\x25\xe8\x46\x58\x02\x42\x28\x83\x2a\xba\x96\x10\xfd\x5d\xe4\x77\x5b\xe6\x2f\x21\x69\xe6\xe1\xc3\xe0\x2c\xf9\xa9\xe0\x3a\xbd\xff\xfd\x26\x27\x71\xb4\x84\x51\xd4\xf4\x71\x6a\xe9\xe5\x0f\x7a\x41\xed\x7f\xaf\xaf\x29\x69\xac\xcb\xd3\xbe\x22\x9a\xd4\xe1\xa3\x4d\x0d\x0f\x4f\xdd\x3e\x21\x25\x7a\xb5\x18\x17\x91\x95\x7a\xaa\x98\xdb\x95\xc8\x5c\x6d\xd2\x12\x96\xa8\x33\x42\xb7\xaa\x2c\xb1\xbe\xc0\xde\xb0\xff\x65\x48\xf5\x0e\x27\x2d\xd1\x73\x8b\x28\x55\x1c\xc4\x5c\x4b\x94\xa2\xaa\xc4\x13\x05\xdf\x0c\xa5\xae\x3a\x25\xa2\xb0\x6f\x88\x47\xf9\x2b\x01\xb7\x44\x63\x58\x24\x86\x29\x03\x47\x89\xd3\x90\x7e\xd2\x83\x1c\x16\x8f\x92\x0e\x7d\x96\xa0\xd7\xce\x8a\x8c\x2a\xc9\xe8\x00\xe6\x14\x83\x77\x28\x49\x45\x50\x12\xb2\xc4\x07\xa5\xed\x29\xa0\xf4\xfb\x5f\xce\x62\xeb\x38\x4a\x92\xae\xa2\x24\x56\x0a\x54\x2a\xc8\x02\xe7\xda\xfd\x2f\x0e\xb3\x6e\x43\x25\x1b\xfd\xf2\x87\x7e\x59\x19\x45\x4b\x16\x2f\x2c\xd4\x9b\x0d\xdd\xe5\x4a\xd6\x85\xad\xc0\x0d\x3e\x06\xef\x5f\x96\x7a\xb5\xe4\xf7\xc3\x3f\xe9\x9e\x8a\xaf\x80\xa5\x30\x34\xc0\xab\x52\x7c\xb8\x0a\xac\x56\x21\xee\xc8\xb9\x52\xa4\x7d\x2a\x05\x09\x3a\x15\x60\x5c\xe0\x6d\xbb\xff\xbd\xf0\xd9\x0e\x0a\x2a\x45\xec\xa9\x94\x87\x0b\xb6\x25\x8b\x52\x25\x75\x94\x0a\x3b\x43\x56\xd2\xad\x82\x70\x92\xfd\x2f\x10\x57\xf5\x5f\x4a\x15\xa7\x2f\x15\xe9\x4e\x83\xee\x0b\xa5\x56\x7f\x57\xb1\xd0\x62\x33\xa5\x36\xb7\xc1\x66\x9d\x95\xa9\xaa\x54\x63\x6e\x85\x2b\x7a\xce\x5b\x33\x5b\xaa\x57\xb3\xa2\xda\x45\xd0\x4d\xb0\xd4\xa9\x65\xa9\x93\xa1\x06\x9b\x29\x94\xe6\x83\xd9\x90\x9c\x38\x48\x49\x5c\x9a\xa4\xaa\xd2\x10\x19\x31\x54\x68\xbd\xb4\xa8\x5d\x6f\x11\xec\x50\x59\x25\x4b\xd3\xcd\xa1\x34\x78\xea\x67\x05\x44\x97\x96\x9a\xdb\xfa\x3f\x7f\xb2\xb2\x5a\x94\x96\x1e\x37\x81\x6c\xaa\x9c\x46\x69\x59\xd3\xa3\x85\xd8\xa9\x93\x0a\x4a\xbc\xef\x7f\x19\x26\xb2\x85\xb1\xd2\x86\xfb\x64\xc6\x22\x85\xdc\x97\x66\x7c\x47\x1d\xea\x9c\x37\xfb\x2d\x6d\x7a\x38\x98\x20\xb2\x0a\x04\x97\xee\xe3\xd5\x79\xbc\x94\x65\xad\x74\x89\xd2\xa5\x77\xc6\xa3\xec\xeb\x4a\xe9\x5d\x54\xba\xd3\xfa\xae\xf4\x1c\xa5\x4b\xcc\x2e\xfd\xe4\x2e\xe8\x9c\xa0\xaa\xe4\xfe\x97\xc1\x26\xe2\x18\x7d\x5e\x6e\x7b\x70\x5f\xdd\xab\x89\x2a\x8c\xfb\x5f\x22\xd9\x96\xea\xcb\xf0\x69\x1e\x38\xcd\xdb\x9f\xec\x28\xd0\x07\xec\x7f\x2b\x3f\xdb\x78\x3b\x9a\xdb\x18\x5f\xa1\xb8\xf5\x32\x64\xe8\x29\xa8\x6c\x96\x15\x81\x5e\xc6\xab\x09\x8c\x97\xe8\x20\xe1\xe2\xf4\x70\x88\x89\xce\x45\x5b\x8e\xb0\xe1\xfd\x6f\x61\x6e\xb3\xbd\x07\xa7\xe5\x80\xf3\x64\xb4\xc8\x8e\x1f\x2d\xa7\xee\x63\x05\x45\x4f\x72\xd1\x81\xbd\x4c\x04\x50\xe2\x21\xab\xe0\x68\xb9\x9a\xce\xf9\x45\xcf\x5a\x65\x80\x28\x97\x6e\x86\x05\x35\x03\xe2\x27\x02\xed\xb6\x53\xb4\x9d\x99\xfa\x83\xd2\x1e\x95\xcb\xbc\x12\x2e\xae\x5f\xdb\x5e\xcb\xcb\xeb\x75\x3d\xcc\xdc\xb6\x25\xfa\x72\x1f\xc2\x30\xe4\xff\xce\x8a\xaa\x2c\x77\xd2\x70\x48\xdc\x9c\x15\x25\x59\x90\xc9\x77\xff\xbb\xc2\x72\xf4\x99\x84\xd7\x72\x53\x78\x95\x8a\xa2\xdc\x53\x50\x22\xe9\x6d\x0c\xca\xe9\x51\x90\xe1\x73\xfd\x5b\x21\x53\xe5\xad\x57\x28\x4f\xd3\x0c\x90\x11\x33\x06\x55\xc3\x29\xc8\x91\xb8\xff\xfd\x2e\x17\x9e\xdc\x2b\x45\x45\xa1\x87\x4d\x56\x72\x83\xf2\xca\xce\x52\xe0\xff\x9d\xa5\xe9\x2d\x6f\xd1\x1e\xbc\x85\x7b\xa0\xd3\xfa\x56\x9d\x82\x97\x66\xda\xb2\x2f\x2c\xe5\x35\x07\x7a\x2b\x83\x84\x84\x0e\xaf\xf1\xf9\xfd\xf0\x39\xcb\x16\x50\xac\x3f\x2a\x48\xb8\xf5\x75\xb9\x17\xe5\xbd\xb5\x60\x70\x0a\xce\xd2\x63\x97\xf7\xf1\xe4\x58\x2a\x49\x61\xf0\xe5\x95\x1e\xbb\xc0\x0b\x28\x2b\xee\x94\x9e\xc3\xfb\xdf\x81\xa6\x3d\xef\x69\x79\x11\xe1\xb7\x21\x17\xd1\xf5\x69\x21\x60\x52\x08\x28\xfb\x26\x5d\xa6\x59\x21\xd2\xde\xe4\xa6\xcd\x99\x46\x86\x49\x64\x28\x22\xdd\x53\xca\xea\x32\x11\x4e\x19\x8a\x08\xdf\x7c\xdc\xf6\xac\x36\x0d\x67\x5a\x4a\x9f\x66\xab\x2c\xca\x7c\xba\xdb\x06\x72\xb1\xaa\xe9\xd5\x32\xcf\x97\x71\x50\x1b\x94\x7a\x68\x06\xf5\x28\x8d\x05\x2c\xda\x6e\x1b\x6e\x43\x2a\xbb\xed\xf1\x77\x54\x8b\xf3\x15\xe2\x7c\x0c\x65\x9b\x3b\xea\x71\xbf\x6e\x9b\x6c\x2b\xbb\x6d\xba\xcb\x89\x2e\xb7\xe2\xbc\xc2\x83\x76\xff\xfb\x7e\x4d\x9b\xb6\xd5\x20\x2a\x5b\x03\x1c\x5e\xb3\x81\x44\xe4\xec\xfe\xf7\x23\x89\xaa\x51\x5b\x83\xd4\x31\x35\x74\x2e\xe5\xd6\x35\xd5\xa0\xbb\x51\x0d\xbc\x1b\xed\xa0\xb5\xa3\x86\xe1\xe1\x78\x37\xd2\xf9\xaf\xe1\x76\x9f\xbc\xde\x95\x21\x30\x3d\xf1\xb0\x26\x3e\x34\xde\x7b\xab\xed\x65\xa1\x90\x31\xfe\x4a\xe8\xad\x51\xea\xc8\x1a\x8f\x0f\x6f\x55\xe0\xac\x46\xdd\x0c\x6b\xfc\xc4\x81\xac\x4a\x53\x35\x76\x2d\x27\xf4\x4d\xd1\xe5\x86\x6a\xf4\x04\x23\x32\x1e\x6e\xcf\x9e\xa3\x5a\x38\xaf\x11\x15\x45\x82\x50\xac\x46\x1d\xd7\x0a\x7d\x53\x0c\x75\x4b\x1c\x15\x76\xf1\xfd\x2f\x42\x9d\xea\x16\x39\x6a\xca\x1a\x0e\xaa\x99\x8f\x2c\xee\x19\xa4\x53\x7d\xc2\xa0\x1d\x86\x52\xba\xd6\xa4\x73\x5e\x57\xc0\x99\x54\xcf\x35\xbd\x1e\xef\xe5\x78\x5b\xb3\x52\x93\x6e\x02\x95\x11\xcf\x43\x79\x0f\x6a\x96\x89\xb1\x66\x66\xd2\x55\x3e\xc9\x9a\x3d\xbf\xbc\xc8\xd1\x3e\x43\x35\xdf\x1a\x2f\xc3\x86\xd4\x54\x3b\xad\x66\xb9\x37\xd4\xfc\x86\x7f\xfe\x14\x65\x3a\xac\xb0\xd7\xec\x7f\x71\x4e\xea\x26\xfb\xb5\x78\x5f\xcb\xc1\xb6\x2d\x3b\xd4\x22\x71\xbf\x96\x8f\x79\x17\x25\xac\xaf\x25\xdd\x6e\x7a\xf8\xd9\x5e\x95\x22\x25\x7f\x2d\x1f\x82\x17\x25\x90\xa9\xc5\x40\x16\x02\xa9\xb9\x95\xe9\xc1\x10\x98\x1e\x94\xb1\xa1\x96\xf9\xba\x8d\x7b\xbe\x29\x7b\xb5\x64\x5e\x21\x99\xc7\xa0\x3c\x05\xb5\x4a\xe4\xa8\xf5\xe3\x37\x45\x5a\x97\x5a\x65\xa2\xae\x15\xa1\x1a\x79\x07\x7f\x1e\xb5\x8a\xbd\x56\x58\x64\x8a\x92\x7b\xd6\x5a\x6f\x37\x3d\x0c\x72\x54\x97\xcd\x9f\x41\x91\x53\xa5\xb5\xac\xb5\x7b\x38\x7a\x5b\x2a\x83\x61\xad\xe3\x54\xdb\x00\x6d\x57\x86\x87\x5a\x6f\xad\x65\xbd\x21\xda\xa9\xc6\x63\x6d\x51\xa7\xa4\x7d\xf7\xc7\x12\xb6\x05\xa3\x36\xd9\x60\x2a\x02\xf8\x8a\xf4\x23\xb5\xc9\xe9\xa7\x36\xaa\x8d\xda\xbe\xdf\xd5\x9e\xb4\x3d\x1d\x1e\xfb\xb9\x6e\xfd\x4f\xed\x75\xaa\xad\x81\xe6\xb4\xed\x4f\x51\xbb\xf1\x99\x9e\x6b\xad\x6b\x31\x51\xaf\x7f\xff\x7b\xb1\x4d\xdf\x49\xe9\xc2\x70\x90\x18\x9a\xce\x64\x97\x9a\xaa\xb2\x20\x7c\xeb\x51\x6d\xd3\x70\x4e\xc2\x29\x64\x1f\x72\x15\xa8\x63\xc1\x29\x7a\x3b\x9a\xe6\x30\x90\xd7\x35\x2b\xd5\x44\x1d\x8f\x56\x73\xc0\x0d\x37\xd7\xcd\x99\xeb\x10\xef\xaa\x83\xbc\x4b\x25\x6f\xea\x69\xea\xc7\xec\x40\xad\xeb\xbb\x53\x92\x4c\x65\xfa\x98\xac\x3c\x18\xf5\x94\x85\xbc\x9e\xc8\x18\x1b\xba\xf0\xf6\xd4\x55\xa6\x42\xfc\x0d\x59\x29\x90\xea\x79\x7a\xbc\xf3\x3b\x5d\x72\x41\xa8\xe7\xe5\xe1\xc8\xd1\xbb\x48\xce\x69\xb2\xc2\x0a\x95\xa1\x8b\x74\xa0\x9c\xe4\xfe\x97\xe4\xc8\xc3\x3d\x3a\x42\x28\x00\xf9\x7d\xb7\xb7\xef\x94\x38\x59\x4f\x46\x43\xf7\x2d\x32\xd6\x4b\xbe\x51\x15\xf6\xc3\x18\xba\x28\xff\x75\x68\x1b\x2e\xa4\x69\x68\xdb\x39\xfe\xa8\x97\x54\x3d\x15\x05\xcb\x5c\x33\xa1\x5e\x52\x86\x56\x88\xf0\x1f\x98\x1a\xce\x3b\x8b\x2a\x66\x4e\x96\x5f\xaf\xe1\xa6\x13\x82\x6d\x8f\xea\xd2\x8b\x79\x21\xb3\x5b\xe8\x62\x6b\x97\x11\x17\x75\xb7\x9c\xdd\xba\x5e\x97\x81\x44\x12\xd8\xb0\x7d\x63\x8f\x7a\xc9\xcb\xa9\x5e\xa8\xe3\x19\x7a\x12\x94\x72\x9e\xab\xac\x30\xd5\x54\x9f\xbb\x5e\xaf\x17\x8c\x21\xb6\xaa\x17\x5d\x51\x77\x67\xff\x9b\x91\x23\x76\x1f\xcb\xdb\x44\x80\x55\x6a\x9c\xc7\xbd\xde\x66\x4f\xa8\x81\x11\xb2\x1c\x45\xea\xe3\xef\x9e\xc8\xe1\xb4\x2a\x8f\x45\x96\x87\xd9\x3b\x64\xd6\xa8\x6f\xd6\xd4\xe9\x13\xdf\x86\x96\xe5\x95\x06\xaf\xbe\x30\x6b\x34\xd5\x96\xab\xaf\x1c\x89\xea\x8b\xb4\x48\x4d\x15\xe0\x2a\x92\xf9\xee\x7f\xa1\x3a\xb2\xf8\x64\x31\xbb\x42\xcc\x2e\x59\xa8\x62\x29\xbb\x2e\x5f\xfb\x72\xa8\xed\x75\x97\x2f\xbb\x14\x37\x99\xf2\xed\xa8\x93\x55\xd4\x9b\xa6\x37\x7d\x14\x26\x77\x48\xf5\x08\x9a\x7d\x2f\xdb\xc1\x8c\x4a\xa2\xfd\xed\x90\x42\xb4\x1d\x10\x8a\xf3\xf6\xf6\xfd\x1e\x14\xb7\xc1\xc9\xb1\x6c\x67\xc6\x16\xf2\xde\x86\x16\x32\xb2\xb9\x6d\x42\xd6\x82\x84\x92\x16\x58\xe9\x56\xe9\x4e\x5b\x90\x85\xba\x41\x16\x8c\x36\x2e\x35\x4b\x6a\x0d\x92\x5a\xb4\x71\xa9\x45\x09\x48\x2d\x7e\x1c\xbc\xc8\xdc\xd3\xa2\x34\xcb\x2d\xe6\x03\x4d\x1b\xc8\x98\xdd\x04\x93\xd4\x28\x51\x9f\xc9\x24\xd5\x22\x4c\x52\x59\x2e\x6c\x2d\x56\xcd\x20\x32\x74\x4f\x19\x23\x1b\x72\x78\xec\x7f\xc1\xf4\x64\xca\x6a\xd1\x0b\x16\x49\x73\x54\xc5\xb0\x25\xd9\x82\x5a\xa2\x2d\x68\x47\x22\x1d\xcd\x5e\x97\x8d\x5e\x97\x5d\x65\x66\x9a\xbd\x27\x1b\xbd\x27\x47\x49\xfd\xaf\x44\xdf\x96\xb2\xa6\x01\xe3\x5c\x91\xc5\xba\x25\xa3\x44\xe2\xa5\x59\xa5\xef\x5a\xf2\xec\xd3\x9a\xfd\xd6\x7a\x36\x1b\xeb\x5a\xea\x5c\xb5\x2d\x38\xb6\x34\xfc\x1d\x14\x1e\xb9\x09\x05\xb3\xd4\x74\x2d\x43\x4d\x97\xfb\xa6\xfe\x2d\xcb\xda\xd5\x32\x99\xb7\x92\x2c\xb7\x2c\x89\xa6\x65\x54\xfd\x09\x2a\x1d\xdd\xb2\x61\xc9\x0c\xc3\xea\x5b\xbf\xdc\xb2\xd4\x1a\x2d\xb3\x98\xb2\x8a\x42\xb4\x2c\x26\xdc\xf2\xc7\x08\x4a\x55\x97\x45\xea\xbd\x56\x12\x43\xa6\xf7\xed\xbe\x15\x6f\x7c\xc1\xc6\x47\xa5\x22\x6f\xa5\xf9\x3b\x46\x94\xca\x8e\xd4\x8a\xf8\x65\x2b\x1f\x98\xa5\x09\x07\x8b\x6e\x12\xad\xe0\xaa\x94\x77\x10\xd8\xd1\x8a\x4f\x4a\x81\x77\x48\x97\xf9\xa9\x95\xc7\x6d\xef\x6a\xd3\x77\xd3\x7d\x7e\xbc\xad\xe8\x9e\xde\x2c\x8d\x36\x48\xa3\x45\xee\x7c\x0c\x7c\xdc\xff\x56\x16\xdb\x2a\x6a\xbb\xdc\xc6\xb0\x71\x61\x75\x95\xf3\xc0\x77\x2b\xfe\xba\xdc\x37\xd2\x56\xe5\xed\xd9\x2a\xab\xd9\x28\xab\x74\xab\xf2\xf7\xfc\x2e\x87\xf8\x4c\x90\x48\xf1\xdc\x6a\x45\x8f\xdb\xba\xde\xec\x65\xd4\x6a\x3d\xd1\xb4\x4f\x6c\x95\x0f\x4e\xab\x2c\xba\xa9\x04\xca\xad\x0e\x03\x32\xf0\xd9\xbe\x57\xb6\x2a\x36\xda\x2a\xd8\x68\x54\xbe\xe2\x56\x65\x2b\x6e\x4c\x49\x90\x7b\x55\x97\xa7\xe1\x07\x25\xb6\x9b\x5d\xab\x97\xa1\xbc\x38\xdc\x3e\xcb\x4d\x7a\xa5\xd6\x10\x35\x12\x4d\x57\x9a\xdc\x30\x1b\xe4\xe3\xb2\x03\x48\x8e\x66\x7d\x74\x83\x3e\xba\x48\xa0\x6c\x2d\x0b\xf1\x1a\x52\x03\x56\x55\xce\x6f\x4d\xca\x89\xd6\xa0\x9c\x88\xca\xfe\xda\x9a\x94\x66\xad\x21\x14\x3b\xcb\x27\xbb\x59\x57\xdd\x5a\x43\x39\xd1\x43\xfb\xdd\xbc\xce\x0d\xbe\x4e\x43\x17\xf8\x66\x01\xbd\x41\x40\x2f\x5d\x2c\xa1\x3d\xc2\xbc\x86\x00\x83\xae\xf2\xca\xad\x47\x4d\xa1\x23\x40\x3e\xef\x7c\x2c\x47\xeb\xf2\x2f\x6c\x9d\xd5\x6c\x55\x2a\xa8\xf5\xd7\x6d\x8c\xf7\x90\x5b\x7c\xeb\x72\xc2\x6f\x9d\x51\x9e\x32\x4b\xb5\x21\x93\x55\x43\x12\xd8\x30\xe4\x13\xd2\x86\x2e\x57\x6d\xf0\x72\x35\xb6\x4a\xad\x8d\x4b\x7d\x0e\xec\xeb\xd8\x4c\xbb\x0d\x79\x81\xb7\xc1\xc8\x4c\x79\xb5\xb4\xd3\xb4\xfd\xfc\x68\x7b\x91\xf7\x46\x3b\x75\x4d\x6d\xd0\x31\xc7\x18\xb6\xe2\xbf\x9d\x3e\x06\xc8\x60\x58\xe4\xbc\xd1\x4e\xd9\xcf\x1b\x6a\xb8\x87\xac\x4a\xe6\xed\x94\xca\xb6\x9d\x0f\x80\x14\x82\x9d\xaf\x7b\x7c\xd1\xe3\x56\xfb\xb7\xcb\x30\x5e\x84\xb1\xaa\x49\x1e\x26\xed\x8a\xdc\xb9\xad\x4f\x6f\x97\x39\xef\x85\x1c\x9c\x51\xb7\xb5\x76\xe9\x36\xd3\xae\xef\x36\x53\x54\x5a\xaf\x5d\x32\x43\xb6\x8b\x45\xe9\x15\xbf\xd1\x2e\x5d\xa6\xdb\xc5\x82\xe2\x32\x4b\xb7\xcb\x9b\x7a\xb1\x74\xb8\x4c\xcf\xed\x36\xb1\xb9\x49\x6c\x82\xc6\xbb\xe5\x8e\xd4\x58\x45\x6f\x48\x21\xd5\x6e\x6f\xf8\xaa\x6d\xa7\x8b\x55\xbb\xa5\xcc\x69\x37\x43\xeb\x65\x2e\x6d\xb7\xc4\xad\x76\x43\xdc\xca\x2a\x25\xdc\x1e\xa9\xc6\xdb\xaa\x76\xa6\xea\xbb\xed\x31\x83\x79\xc8\x60\x54\xac\xb1\x3d\xba\x6a\xb7\xa7\x73\x5f\x35\x87\x47\xc2\x79\x43\x55\x9c\x68\xff\xc3\xf6\xdc\xee\xf3\x46\x85\x24\x15\x3e\x6d\x8f\x8c\x44\xed\x61\x9c\x8a\xb4\x24\xed\x2d\x5a\xb3\xb7\x9c\xff\xfc\xa9\x3b\xdc\xfc\x68\xaf\x79\x16\xaa\x82\x84\x2e\xf7\xf9\xf6\xca\x29\xa7\x21\x3c\xb7\xee\xc0\xc8\xa3\xa1\x00\xc8\xfe\x37\x7f\x4d\x5a\xcc\x57\xce\x73\xed\x85\xf3\x9c\x4a\xfd\xb6\x57\x97\xc6\x06\x27\x95\x18\x65\x27\x6e\x70\x3a\xd9\xff\xbe\xf8\x4c\x4d\xba\xa3\xb6\xf9\xdd\x51\x6b\xd0\x0e\x4c\xef\x38\x53\xb2\x67\x53\xc5\x69\xca\x37\x3f\xea\x52\x8d\x60\x53\xca\x87\x36\x57\x32\x8f\xee\xb6\xee\x36\xcc\x5a\xb8\x67\x5f\x97\x46\x5f\x97\xae\xc2\x5d\x6d\x36\x8f\xc6\x82\x2c\xaa\xe0\xdd\xe6\xad\xbd\x41\x9a\xec\x1a\x44\x4a\xad\x73\x6e\xd4\x39\x97\x43\xdb\x3d\xa7\x87\x63\x25\x05\xe9\xf5\xba\x7d\x25\x3b\x7c\x25\xab\xaa\x81\xf7\x43\x2e\x66\x1d\xb1\x1b\x31\xca\x05\xb0\x1f\x32\x2e\xf7\x03\xbe\x4f\x45\xb9\xe2\x7b\xa8\x1b\xca\x1e\xea\x07\xa5\x9c\x7c\x7a\x90\x70\xd6\x03\xad\x39\xca\xee\xde\xc3\xf3\xa8\x0d\x41\x55\x43\xc9\x41\x7b\x90\xf8\xd2\xc3\x47\xc4\xab\x52\x4d\x77\x3b\x31\xf6\x00\x43\x4f\x8c\x4a\x81\xfc\xff\x2d\xed\x76\xfb\x38\xf6\x30\x11\x61\xb6\xd9\x7c\xb7\x67\x47\x87\x67\x47\x95\x1b\x56\x8f\xba\xa1\xf6\x08\xe5\xf8\x90\x78\xd6\x1d\x93\xd0\x11\x93\x50\x65\x76\x66\x0e\x83\xfd\x6f\xff\x9a\xb6\x2e\xb7\xdb\x8d\xf1\x23\x95\x98\xc2\xd0\x67\xc3\x3d\x0e\x90\x3e\x25\x20\xef\xf1\x34\x24\x4c\x81\xa9\xf2\x95\x3d\x9e\x1e\x8e\xf2\x86\x2c\x7f\x3d\x89\xdc\x74\x06\x73\x75\xdd\x34\xbb\x5d\x37\x3a\x5c\x37\x62\x94\xd2\xa5\xa7\xe0\xef\x02\xa6\xb0\xa5\x83\x8e\xf0\xae\xfd\xef\xe4\x67\xea\x52\x12\x47\x4f\x2c\x5a\xea\xa9\x27\x39\xd6\xf6\x84\xd0\xc3\x9e\xf7\x0d\xa0\x27\xc9\xb3\x3d\x41\x9e\x2d\x92\x46\x7a\x96\x1b\x56\xcf\xcc\x8d\x51\x04\x66\x16\x95\xea\x19\xd9\xc8\x7a\x11\x2c\xf9\x74\x1b\xca\xb0\x45\x69\x4f\x7a\x96\xca\xa2\x67\xa4\xc3\x8c\x32\x73\xf5\x2c\x53\x43\x67\xb8\x40\xdf\x29\x08\x8f\x5e\x14\xb5\xd5\xcb\x91\xf8\xdd\x86\xb3\x78\xc9\x0a\x96\x4c\xa9\xf0\x7b\x91\xaf\xc1\xd7\x17\xba\x4c\xea\x52\x24\xa7\x17\x5c\xb6\xa2\x12\x29\xf7\x22\x3e\xdf\x0b\x93\xff\x94\x2d\xe6\xf7\x72\x69\xa9\x71\x1b\x88\x51\xf1\x4d\xbd\xc8\x60\xd5\x0b\x13\x33\xed\xe4\x84\x47\xaf\xba\x6a\xf6\x8a\xab\x66\x53\x79\xac\x5e\x65\x27\xea\x70\x1b\x89\x51\x99\xe4\x7b\x95\x31\xa8\xd7\x82\x42\xa0\xd9\xdf\x49\x12\xeb\x95\x92\x98\xac\x02\xdd\x3a\xe2\x0e\x39\xbc\x2a\x80\xa8\x57\xf9\x62\xf6\x3a\x98\xe3\x65\x8b\x0f\xdd\x42\x74\xa7\x10\x5d\x8e\x4d\x6e\x7b\xf5\xce\xd6\x6f\x67\x6b\x76\xd3\xe5\xd9\x5d\x10\x11\xe4\x9b\xdb\x9b\xb4\xfb\xbd\xb1\x06\xb0\x7c\x22\x7a\x53\x5c\x52\x6f\x4c\x59\x23\x45\x41\x6f\xb2\x67\xf5\xc6\xba\x85\x0a\x0c\xec\x6d\x08\xcc\x86\x6c\x6f\x63\xa7\xf6\x3b\x7a\x3b\x3d\x1e\xbc\x5d\x8a\x57\xba\xc9\xdb\xa5\x37\x64\x10\xe8\x35\xaa\x4f\x19\xf2\x7a\x9b\xf0\x9e\xd7\xe6\x75\xe9\xa9\x7a\xcf\xdc\x04\x91\x81\x6e\xf2\xd1\x91\xb3\x72\x34\x1d\xf5\x6e\x64\xe9\x2c\xcb\xa0\xda\x2c\xbd\x4b\x7a\xe8\xfd\xfe\xf8\x72\xd9\x92\x72\xef\xb2\xcc\xf4\x8e\x44\x5a\x51\xd1\x49\xbd\x1b\xc7\xfa\x87\x63\x55\x8e\xb4\xdd\x8a\xec\x4e\x45\x76\x51\x81\x92\x3e\xe4\x8e\xd4\x19\xf6\x3c\x94\xf5\xba\x0f\xdd\x33\xfb\x08\x5c\x68\xa1\xf4\x30\xf3\x62\x74\x74\xd1\xe5\xbb\x0f\x39\xa2\xf7\x11\x3f\x52\x5c\x35\xb9\x21\xc9\xa2\x0f\x58\x21\xa2\x2c\xeb\x7d\x98\xe8\x8c\x8f\xe8\x54\x25\x4e\xee\x43\x2a\xfc\x8e\xe4\x4b\xb5\x8a\x3c\x9c\x3e\x3f\xe7\x01\x0c\x93\xcd\xba\x9f\xb2\x67\x77\xe4\xf0\xff\xda\x76\x97\xa7\xa2\x59\xfa\xd9\x70\xe1\x2a\xd1\x6d\xa7\xdb\x40\x89\xcb\x96\xf5\xfb\x79\x6a\x51\xce\xf3\x63\xb1\xca\x14\xdd\x4f\xa9\xe7\x3a\x14\xda\x31\x16\xcd\xe0\x92\xfb\x56\xbf\x90\xe8\xa0\x48\x12\xeb\x97\x34\x0b\xfd\xfa\x84\xb2\xda\x74\x0e\x2e\x13\xe9\x8b\x44\xba\x8a\x1b\x5e\xba\x2a\xf7\xeb\xc3\xb5\xba\xb3\xf6\x1c\xfd\x96\x70\xd4\x91\xe9\x2c\xc6\x22\x22\x76\xcb\x49\xa1\xa3\xae\xf2\xd7\xb6\xbb\xbc\x25\x4a\xf6\xbb\x73\x51\xb6\xc1\xad\xdf\xb2\xb2\xf6\xbb\xa3\x0e\xcf\xbe\x3f\xf4\x5b\xc1\xdf\xfd\xbe\x30\x01\x89\x1d\xb7\x19\xfd\x0d\x46\x2f\xdb\x4b\x7f\xbc\x73\xcf\x81\x08\x93\x2d\xed\xf6\xe7\xd5\x57\xa8\x95\x58\xdb\x16\x09\xfb\x23\x73\x40\x7f\x58\x52\x59\x56\x92\x6e\x17\xee\xfe\x12\x17\x64\x08\xee\xaf\x14\x96\xfd\xfd\x04\xfd\xda\x85\x78\xaf\x62\xa5\x3b\x4a\x03\xd6\x9d\xdb\xe1\xe8\xaf\xe2\x77\xfa\xcb\xd4\x7e\xde\x9b\x57\x37\xfd\xfe\xa6\xce\xd1\xf6\xd1\xb1\xe3\x77\xa7\xe3\xf7\xe8\xc2\xd8\xb7\x78\x38\x56\xe4\x96\x8f\x42\x7f\x65\xd5\xec\x2f\xab\xb6\x56\x1d\xab\xd7\x84\x01\x69\x60\x62\xdc\x69\x61\x8f\x3e\x65\xec\xe8\x28\xa6\x15\xa3\x5c\x7c\xfa\x94\xda\xa7\x23\x1c\xe9\x6b\xdb\x53\xb7\xf0\xdd\x21\x7c\xc7\xa8\x70\x98\x3e\x0d\xe7\x5c\x70\x6e\x35\x53\x9f\xd5\xdf\x7d\x08\x56\xbb\xf0\x64\x9e\x1e\xee\xe4\x06\x89\xee\xcd\x4b\xb8\x37\x91\x38\xa2\xec\xd4\x89\x47\x9f\xba\x31\x76\xe4\xd6\xad\x2e\xc0\x78\x28\xaa\x62\x1c\x11\xa2\x83\x4c\xcb\xc3\x51\x45\xe3\x48\x5c\x15\x15\xf3\x39\xa4\x52\x1e\xf0\x18\xaf\x43\x55\xf0\x0e\xf9\xad\x0e\xe6\x1e\x68\xba\xe3\x8c\xe3\xf1\x70\x0f\xa8\xba\xf2\xbd\x8f\x43\x6a\xb9\x81\x8c\x01\xa1\xb7\xf1\x77\x32\xef\x40\x6e\xc8\xfd\x2f\x0c\x59\x52\xcd\x0d\x6b\xe8\x07\x34\xf4\xa1\xcb\x4e\x37\x82\x2e\x6a\x23\x20\xdf\x4b\x94\x81\x65\x04\x19\x35\x06\x34\xf9\xa1\x28\x0c\x6e\xd8\x7f\x63\xc0\x7f\xa3\x4a\x51\x30\xc2\xed\x2e\x6f\xe6\x9e\x52\x69\x51\x7b\x5d\x0f\x78\x5d\x7f\xc3\xed\x3a\x44\x41\xe6\xd2\x81\xb4\x95\x5d\x98\x34\x82\xcc\xff\x23\xc0\xfc\x1f\x9b\x16\x3b\xbc\x86\xf2\xbb\x2c\x75\x57\xfe\x0b\xba\xf3\x8e\xf0\xf1\xd9\x3a\x54\x27\x29\xea\x34\x8f\xc8\xd3\xac\x0a\x06\x23\xca\x4d\x66\xe0\x52\xf0\xb5\x75\xb5\x55\xb7\x71\x2d\x7f\xbe\xbb\xdd\x06\x99\xa3\xa9\xbc\x57\x8c\x1e\x0f\x55\xd9\xa2\xac\xe0\x23\x4a\xb3\x32\x22\xea\x81\xc7\xa6\x72\x5b\x51\xf6\xff\x11\xd3\xfa\x6e\x2f\xa6\x43\xa8\x46\x2c\x1c\x4f\x35\xed\x6c\xb8\x18\xc8\x8e\xf8\xb5\x69\x0e\xba\xb2\x0c\x5c\x59\x3e\x71\x4f\x4d\xee\xb2\x31\x91\x98\x8a\x4b\x3a\x82\x6a\xc4\x93\x4b\xa6\xba\x62\x51\x9a\xa8\x11\xa1\x89\x1a\x43\xa5\xcf\xa2\x58\xef\x88\xd4\x5f\xab\xc8\xcb\x88\xb7\xbf\x83\x3b\x48\x71\x41\xd7\xf8\x18\x96\x87\xd3\x53\xcd\xaa\x24\x11\x6e\x24\xe6\x2e\xd6\xe5\x7d\x24\x5d\xbb\x46\xe2\xb5\x4b\xb2\xd1\x70\xde\x87\x81\xc8\xe7\x76\xa8\x6c\x5d\xba\xdc\xe5\xc5\x95\x56\x15\x65\x3b\xa2\x0f\x38\xa2\x7f\x6d\x7b\x59\x92\xac\xee\x03\x91\x43\xed\xd0\xa6\x67\x89\xd8\x23\x33\xb4\x62\x68\x13\x9c\xc0\x61\xe4\x85\x48\x2a\x6f\x56\xa4\x5b\x1d\xa5\x73\x17\x54\x90\xad\xc8\x51\x61\x14\xd4\x94\xd2\xdd\x70\x14\xa9\x4f\x46\xa1\xfa\x44\xea\xe1\x51\x14\xf5\x39\x0a\xd2\x52\x8f\xa1\xcd\xab\x52\x38\x8f\x4a\xdc\x94\x79\x79\x54\xe3\x66\x8d\x13\x39\x1c\x36\x94\xd5\xc4\xb1\x26\x9e\x73\x95\xf4\xb6\xca\x7f\x2c\x95\x7f\x57\xf1\xb0\x2a\x6d\xf4\xa8\xd4\x46\xcb\xf4\x3c\xaa\xac\x35\x03\xd9\xb7\x5a\x10\xe9\xb0\x36\x7d\xd4\x6b\xa0\xb4\xc5\xfe\xaa\x89\x91\x8e\x16\x39\x39\x61\x83\xfd\xb4\x07\xfc\xb4\x9b\x5c\x4c\x46\xf3\x39\x68\x0d\x3c\x56\x7c\x74\x34\xf9\x3f\x8f\x36\x50\x1b\x44\xe4\xb4\x19\xc6\xc6\x5c\xb0\x43\x3b\xde\xae\xe4\x36\x54\x49\x51\xfd\xb8\x26\xf6\x34\x1a\xd9\x93\xf4\xa7\xa3\x19\xbf\x1a\xf1\xab\xab\x7c\x73\x9b\x86\x72\x12\x4a\x55\xb5\xeb\xf2\xdc\x18\xcc\x0b\xd5\x65\xe6\x1e\x5d\xd7\xf3\xd1\x61\x10\xd0\xed\x61\xf4\xe2\xcf\x58\x63\x2d\x0a\xd5\x7b\x75\x1b\xf2\xcf\x8c\xa1\xd2\x71\x76\xa0\x19\x70\xa0\x69\x41\xc5\xd1\xbb\x09\x40\x67\xa2\x67\xc5\xfc\x0d\x5f\x11\x06\xaf\x08\x5d\x7e\x72\x63\xf8\x18\x0c\x1e\x03\x19\x4a\xc7\x90\xa9\x70\x0c\x9a\x9b\xcc\x64\x86\xc4\xaa\x31\x50\xd9\x25\x8a\x21\x0c\x2f\xca\x48\x2c\x2c\x2e\x96\x36\x92\xbb\x4c\xab\xcb\xae\x36\x77\x99\xd8\xe5\x9e\xc1\x90\x5a\x62\x0c\x54\x7a\x74\x1d\xf9\xa1\x4b\xe1\x18\xdf\xd1\x54\x96\xba\x63\x0c\xf3\xcf\x71\xa2\x43\xd5\x1f\xb6\x09\x61\xc0\x84\xf0\xc1\x28\x38\x5e\xc3\x88\x02\x1f\x71\xa8\x74\xf3\x30\xb3\x83\x47\x4f\x8b\xc2\xe6\x31\x0d\xe3\x04\x8c\x2a\x0f\x3b\xa4\x4b\x1f\x83\xba\x74\x15\xd9\x1b\x63\xba\xc7\xc9\xaa\xfa\x2a\x0c\x7e\xca\x20\x33\xce\xc8\x02\xb2\x62\x76\x28\x61\xb5\xff\xc5\x35\xc6\x14\xff\x34\xaa\x9f\x44\x75\x69\x86\xc6\x79\xb9\xcf\x8b\x29\xa7\x54\xbb\xd5\x77\x9c\x71\xa2\x28\xaf\x82\x65\xc6\x29\xbb\xd1\x38\x9f\x89\x26\x41\xa2\xfc\x06\x03\xe9\x9c\x9b\xe2\x3e\xc6\x39\xdd\x84\x9a\xe5\xd1\x45\x5d\x2f\x4b\x00\x17\x25\x00\x39\x19\x8c\xcb\x84\xfb\x3a\x16\x90\xfa\xce\x92\xd6\x15\x31\x9c\xaa\x9a\x5f\x32\x28\x8d\xeb\x13\x25\x5b\x54\x91\x7c\x5b\x4f\x06\xac\x27\x4d\x39\x5e\xc6\x65\x3a\x7a\x25\xa6\x98\x13\xfb\xbf\x4c\x47\x2f\xd2\x51\x99\x71\xc6\xe5\x03\x7e\x7d\x07\xbc\x25\x95\x08\xbf\x4c\x62\x2f\x92\x58\x99\x78\xc6\x25\xff\xf3\x71\xc1\xff\x7c\x1c\xda\xb8\xab\xba\xcb\x4a\x64\x90\x68\x70\x35\xf7\xd9\x98\xe4\x51\x95\x48\xaf\xe1\xb6\xef\x3c\xa8\x02\xcd\xf7\x5b\x34\x03\xbe\x4b\x4d\x91\x3e\xe3\x32\x4f\xba\x90\x89\x20\xc5\xf4\xef\xd2\x6e\xad\xff\x53\x61\xf7\x96\x7e\x60\xdc\x2b\xbd\xa4\x70\xfd\xce\x5a\xb1\x3b\xb3\x4d\x44\xfd\xb6\xc8\x7e\x17\xa6\x94\x14\x3e\xdf\xd5\xdf\x55\xa6\xbd\x14\x21\xba\xbd\x2c\x77\x65\xc2\x4b\x11\xa2\x47\x9a\xc0\xf1\xb0\x26\x87\x7c\x45\xc7\x63\x22\xf5\xb0\x3c\x47\x94\x20\xf9\x78\xd7\x1f\x5e\x2d\x86\xb8\xe7\x53\xdc\x56\xd8\x36\xd4\x67\x71\x9f\x05\xbb\x2e\xd1\xe0\xf1\x0e\x3d\x6b\x87\xba\x0a\xf0\x4b\x0d\x30\x9e\xc1\x93\xb0\x6f\xbd\xe3\x31\x09\x7b\x56\x69\x75\x1d\xc9\x47\xce\x4b\xe3\x59\x75\xb1\x5d\x65\x5d\xe9\xa9\xc6\x0b\xbf\xd5\x74\xb8\x26\xb6\x69\xf7\x1b\x90\x17\x45\x54\xc5\xd7\xd0\xf1\x76\x66\xd6\x77\x29\x6c\x29\x10\x07\x92\x69\xb4\xfc\x53\x83\xfe\x75\x13\x4b\xb1\x0a\x6f\xdf\xdb\x6d\x0f\x6b\x67\xef\x09\xbc\x72\x18\x1f\xf0\xa8\x8a\xe9\x70\x15\x78\x29\xdf\xc6\x3b\x91\xe2\x47\x14\xe0\x9d\x06\x64\xa2\x7c\xb7\x6b\xe8\x4a\xcd\x3e\xe6\x81\x54\x48\x2e\x22\x2b\xe5\xd4\x40\xb8\x43\x3c\x7e\x0a\xcc\x2a\x70\x74\x20\x35\xed\x07\x88\x8a\xa3\x4a\x81\x33\x26\xe2\xef\x92\xcb\x6c\xdb\x4c\x35\x66\x45\xc1\x67\x89\x06\x53\x49\x94\xc6\xac\xac\x6f\xeb\xd2\xb3\x1e\x6d\x70\x34\x97\x09\xb6\x40\x3e\x6f\x26\x52\x55\xe5\x38\xdb\xd9\x57\x96\xc8\x92\x5d\xd4\x54\x38\x34\xc7\x60\x71\x52\xd7\xdd\xdc\x27\x72\xa2\x72\x4f\x2f\x2e\x65\xa8\x35\x99\x50\x99\xf5\xfa\x53\xd5\xef\x52\x53\x59\x05\x0f\x77\xdb\x25\x4b\xcd\xbc\x98\x5c\x21\xaa\x25\xb9\x05\x09\xbd\x54\xe1\xf0\x95\x27\xf5\x04\x46\x36\x79\xe1\xcd\x57\xe7\x74\xbe\x38\xa7\x75\xa7\xbe\x3f\xe6\x9b\xfc\x19\x32\x58\x74\x15\xa4\x7b\x75\xff\x9a\x88\xf7\xb1\xbb\xe3\xb4\x8a\x66\x42\x45\xd3\x86\x6a\xaf\xbd\x22\xdb\xf3\xfd\xc8\x76\x1b\x5b\x02\x99\xaf\xfc\xd7\xe6\xfb\x49\x20\x6d\x04\x7f\xf5\xb8\xe9\xc5\x57\x1e\x6b\xaa\x29\x1f\x68\xd2\xc4\xb2\x81\xff\x70\xa7\xb9\x5e\xee\x9b\x0d\x3c\xe2\x10\x63\x55\xad\xc3\x37\x1b\xfa\x4c\xe8\x5d\x66\x4f\x9b\x89\x72\xeb\x55\xb5\x0c\xa7\x4e\xfc\x9c\x2c\x31\xe8\x7a\x7a\xa7\x5b\x60\x21\x53\x5d\x3a\x09\xe7\x73\xae\xb5\xd8\x2d\x86\x1c\xa5\xac\xbb\x2b\x0c\x0a\xe7\x27\x4c\xb3\xc1\xfe\x10\x73\x56\x7f\xf5\xf1\x16\x17\xe6\x9c\xaf\xa1\x7b\x21\x9e\xaa\xda\xdd\x86\x3b\xcc\xc0\xcc\x26\xc7\xe2\x95\x61\x86\xe4\x36\xb8\x83\x1e\x7b\xb3\xc2\x0c\xc5\x6d\xc8\x66\x74\xd4\xa4\xb6\xe6\x36\x24\x29\x09\x7b\xbc\x18\xaf\xcd\x68\x62\xbc\xc8\x68\xb6\xde\x28\xd6\xb9\x89\xce\xf7\x6f\xa3\xbd\x66\x67\xe2\x2e\xdb\x99\xe0\xfb\x77\x30\x6b\xb9\xf2\x89\x6f\x67\x89\xef\x5f\xe6\xbe\x4e\xf9\xdf\xd9\xe5\xf7\xe3\xbf\x9e\xff\xf9\xff\xfb\x3f\xfe\xcf\xf3\x3f\xff\xaf\xf3\xbf\xbe\x7f\xee\xff\xf1\xaf\x7f\xbd\xff\xf1\xdf\x9f\xff\x72\xff\xf7\x3f\xff\xff\xef\xe9\x9f\xe7\x9d\xff\xe5\x3f\xde\x7f\xbd\xff\xcf\x7f\xfb\x1f\xff\xba\xdf\x3f\xff\xf9\xdf\xfe\xf3\xfb\x0a\x7f\xff\x6f\x00\x00\x00\xff\xff\xf2\x2b\x7f\x90\x0a\xb6\x03\x00"); +func _eegf ()([]byte ,error ){return _gb (_fdf ,"GBTpc-EUC-H")};func _aaba ()([]byte ,error ){return _gb (_gdedg ,"UniAKR-UTF32-H")};func _dfdg ()([]byte ,error ){return _gb (_ebff ,"UniJIS-UTF8-H")};func _cad ()(*asset ,error ){_bbe ,_efd :=_dbeb ();if _efd !=nil {return nil ,_efd ; +};_gafeb :=bindataFileInfo {_ee :"B5pc-V",_ffd :624,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491499,0)};_abcc :=&asset {_da :_bbe ,_dc :_gafeb };return _abcc ,nil ;};func _ebc ()(*asset ,error ){_cff ,_gcb :=_ggf ();if _gcb !=nil {return nil ,_gcb ; +};_bda :=bindataFileInfo {_ee :"Add-RKSJ-H",_ffd :12790,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491088,0)};_cfc :=&asset {_da :_cff ,_dc :_bda };return _cfc ,nil ;};func _gaea ()(*asset ,error ){_bbgf ,_cegc :=_fbfb ();if _cegc !=nil {return nil ,_cegc ; +};_ebeg :=bindataFileInfo {_ee :"UniGB-UTF8-V",_ffd :780,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492788,0)};_ecgad :=&asset {_da :_bbgf ,_dc :_ebeg };return _ecgad ,nil ;};func _ecgbg ()(*asset ,error ){_ccbb ,_gddg :=_egfc ();if _gddg !=nil {return nil ,_gddg ; +};_baga :=bindataFileInfo {_ee :"HKm471-B5-V",_ffd :615,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492433,0)};_febbd :=&asset {_da :_ccbb ,_dc :_baga };return _febbd ,nil ;};var _eeff =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\xdf\x6a\xdb\x30\x18\x05\xf0\x7b\x3f\x85\x2e\xbb\x8b\x2d\xb6\xfe\x5a\x50\x0a\xa3\x19\x2c\x83\xae\x63\x5d\xbb\xc1\xd8\x85\x63\x7d\x09\x86\x45\x36\xb6\x03\xeb\xdb\x0f\x9d\x93\x65\x17\x45\xf5\x2f\xfa\x0e\x47\x49\x94\xcd\xfd\x6e\xbb\xcb\xc3\xaa\x36\x5f\xe6\xb1\x7f\x92\x55\x1d\x86\x9c\x66\x59\xc6\xf3\xdc\x8b\xda\xcb\x71\xc8\x55\xd5\x68\x95\x86\x7e\xfd\xf7\x88\xa5\x3f\x75\x53\x55\x6d\x3e\xfc\x59\xdf\x7e\x54\xe7\x45\x2e\xcf\xf7\xbb\xed\xd3\xeb\xb2\xca\x69\x97\x0f\xa3\x32\x9c\x4b\xe7\xe9\x32\xab\xd4\xe6\xab\x1c\x87\x65\x9d\x5f\xd5\xcd\xfb\x34\xee\xe5\x8d\x4a\x72\x28\xfe\x38\x27\x99\x87\x7c\x54\x37\x9f\xba\xa9\xcb\xcd\xf5\x85\xa7\xf3\x34\xfd\x96\x93\xe4\x55\x69\x98\xe4\x84\xb5\xda\xdc\x3f\x74\xd3\xe7\xee\x24\x0a\x3d\x5e\xa0\xc0\x17\x99\x97\x61\xcc\xaa\xd1\xef\xea\xda\xfd\xf7\x6f\xaf\x93\xa8\xe6\x32\xfd\xbc\xdb\x3e\x1e\x0e\x8b\xac\xaa\xd5\x35\xf7\xfc\x78\xde\x6d\xd5\xcf\x46\x35\xb5\xd2\xce\x18\xfb\xeb\xb2\xf5\xfb\xc3\x98\xae\x83\x26\xf2\x34\xfd\x90\xe6\x2e\x1f\xa5\xba\xd5\x8d\xd6\x77\xaa\x2c\xe6\x4e\x85\xb6\x0d\x20\x4b\xb2\x77\xaa\xd5\xbe\x05\x39\x92\x2b\x14\x2c\x68\x4f\xda\x83\x34\xa8\x27\xf5\xa0\xa6\x90\x21\x19\x29\xf1\x11\x64\x1b\x90\x75\x20\x64\x59\x4f\xf2\x65\xb0\xe5\xae\x40\x0a\xc8\xf2\xa0\x96\xd4\x82\x22\x28\x92\x22\x08\x55\x6d\x07\x72\x7b\xc4\x63\x97\x67\x55\x8f\xaa\x9e\xc4\x5e\x9e\x55\x0d\x28\x91\x12\x4a\x14\xd2\x5a\x0a\x61\x69\x75\xa8\xab\x5b\x6d\x35\xda\x63\x09\xb1\x69\x41\x86\x64\x40\x11\xe4\x48\xe5\x8c\x51\x73\x30\x90\x02\xa8\x01\x45\x52\x04\x95\xb7\xd0\x5a\x66\x59\x64\xe9\x52\xc2\x7a\x92\x27\x59\x10\xe3\x3d\xe3\x1d\x88\xf1\x9e\xf1\x1e\x24\x24\x01\x95\x8f\xd6\xb1\xbd\x63\x7b\xdd\x82\x0c\x89\xf1\x11\xe4\x48\x88\x37\x35\x28\x90\x10\x6f\x1a\x50\x24\xa1\xbd\x29\xed\x1d\xdb\x3b\xb6\x37\xa5\xbd\x63\x7b\xc7\xf6\xc6\x82\x18\xcf\xf6\xc6\x81\x18\xcf\xf6\xc6\x83\x84\x84\xf6\x06\xed\x03\x07\x83\x07\x95\xf6\xc9\xd6\x85\x92\x3d\x14\xb2\xa5\x6a\xf2\x24\x8f\x33\x3a\x5f\x6e\xdd\xf5\x0b\x5f\xfe\x2f\xf7\xfd\x7a\xff\xfa\xf3\x3c\x4b\x5e\x71\xdb\x71\xd1\xca\x4d\x19\xb2\x5c\x7f\x49\xa6\x71\x2a\x53\xf8\xfb\x1b\x00\x00\xff\xff\xf8\x0f\xe0\x8e\x75\x04\x00\x00"); +func _fda ()(*asset ,error ){_cbe ,_gacae :=_gggg ();if _gacae !=nil {return nil ,_gacae ;};_cbeg :=bindataFileInfo {_ee :"Adobe-KR-0",_ffd :640,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491402,0)};_bde :=&asset {_da :_cbe ,_dc :_cbeg };return _bde ,nil ; +};var _fbe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd2\x41\x8f\x95\x30\x10\x07\xf0\x3b\x9f\x62\x8e\xeb\x41\xa1\x40\xe9\x6e\x62\x4c\x14\x0e\x72\xd8\x5d\x23\xbe\xa7\x89\xf1\xc0\x6b\x07\xd2\x44\x4a\x53\xca\xe1\x7d\x7b\x33\x53\x64\x0f\x2f\xf3\xf8\x85\xf9\xa7\x33\x25\x6f\xfb\xae\x77\x36\x42\xfe\x2d\xac\x7a\xc0\x08\x93\x75\x26\xe0\xb6\xee\x41\x23\xdc\x70\xb6\x2e\xcb\x44\x09\xc6\xea\xf8\xff\x91\x8b\x5e\x46\x9f\x65\xf9\x17\xe9\xf5\xfb\xaf\xb0\x6f\x78\x40\xdb\x77\xc3\x7d\x8b\xb8\xf4\x6e\x5a\xa1\x4a\x8d\x66\xf7\x47\x33\x40\xfe\x1d\x67\xbb\xc5\x70\x87\x87\xcf\x66\xbd\xe1\x3b\x30\x38\x91\xbf\x06\x83\xc1\xba\x19\x1e\xda\x97\x41\x9c\x3c\xec\xde\xff\xc5\x05\x5d\x84\x82\x0d\x9d\xe1\x9a\xe5\xed\xf3\xe8\x5f\xc6\x05\x21\x1d\xe3\xca\xcc\x7a\xc5\xb0\xd9\xd5\x81\x28\x3e\x14\x45\xf3\xe6\x3f\xee\x1e\x41\x1c\xed\x97\xbe\x7b\x9d\xa6\x0d\x23\x3c\x15\x29\x3a\xff\x75\xe9\x3b\xf8\x2d\x40\x14\x50\xca\xea\xb1\xfa\x73\xbc\xfa\xf3\x79\x35\x67\xa3\x28\xd3\x30\xda\x9a\x30\xba\x19\xb3\x8f\xa3\xa8\x6f\x9f\xe0\x28\xa2\x6a\xea\x86\x4c\x8e\x6c\x54\x44\xa5\xea\x8a\x4d\x27\xd3\xc9\x24\x9b\x49\x86\x64\x05\x49\x23\x58\x9a\x92\xa4\x66\x91\x49\x1a\x92\x47\x96\xa7\x24\x94\x5e\x97\x2c\x29\xa7\xa1\x9c\x74\x02\x95\x72\x14\xe5\x48\x4e\x56\x29\x47\x51\x8e\xe4\x64\x95\x72\x14\xe5\x48\x4e\xc6\x8a\x85\x0a\xcd\xa2\x68\xe3\xe7\xac\xf4\x9f\x6e\xfa\xdc\xbd\xde\x43\x40\x17\xf9\x9e\x79\xc7\xb4\x24\xeb\xf0\xfc\x88\xfc\xea\xa9\x8b\x7f\xff\x02\x00\x00\xff\xff\x92\x04\xb5\xc7\x70\x02\x00\x00"); +var _efc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x49\xab\x65\x47\x72\xc7\xf7\xf5\x29\xee\xb2\xbd\x68\xeb\xe4\x18\x19\x50\x3c\x68\x24\x0b\xab\x4d\xdb\xa6\xe5\x09\x8c\x17\x67\x88\x23\x0a\x5c\xaf\x8a\xaa\xd2\x42\xdf\xde\xc4\xef\x7f\x25\xd9\xc2\xa0\x85\x08\xd5\xff\xe5\x10\x19\x19\x73\x9e\xfb\xd5\xd7\xdf\x7d\xf3\xdd\xeb\xbb\x2f\x8f\xaf\xfe\xf9\xd3\x87\xf3\xfb\xf8\xf2\xb8\xdf\xbd\x5e\x9f\xe2\xf3\x87\x1f\x3f\x9d\xf1\x38\xe2\x87\x77\xaf\x6f\xde\x94\xfa\xb8\xde\x9d\x5f\x7e\xfe\x27\xe4\x7c\xbf\x7f\x7c\xf3\x26\xe7\x7f\xff\xd3\xe7\x2f\xf1\xfe\xbb\xd7\xfb\xc3\xa3\x69\xdc\xf5\xe3\xc7\xe7\xd8\xc7\xe3\xab\xbf\xc6\x0f\xef\x3e\x7f\xf9\xf4\xd3\xe3\x0f\x7f\xba\x3e\x1c\xf1\x37\x8f\x2b\xee\xc4\xff\xe9\xd3\x15\x9f\xde\xbd\xfe\xf0\xf8\xc3\x9f\xf7\x8f\xfb\x6b\xf9\xe5\x0f\xdf\xff\xf8\xf1\xe3\x7f\xc7\xfb\x78\xfd\xf2\xa8\x60\xf1\x7a\x41\xdf\x7c\xf5\xf5\x5f\xf6\x8f\xff\xb8\xbf\x8f\xc7\x57\xb6\xde\x7f\xfe\xe3\x5f\xff\xe1\xfb\x3f\xff\xf1\xef\xf9\x1b\x7f\xfa\xb7\xf8\xf4\xf9\xdd\x87\xd7\x47\x29\x7f\xbb\x6d\xf3\x57\xfc\x5f\x7e\xfa\x18\x8f\xf2\x5c\xe3\x3f\xfe\xf5\xbb\x6f\x1e\xff\x59\x1e\x65\x7b\xd4\xd1\x7b\xf9\xaf\x27\xfe\xef\x7f\xf9\x70\xc5\x63\xd3\xbf\xba\xf8\x3f\x3f\x5c\xf1\xf9\xe3\x7e\xc6\xa7\xfd\xf5\x87\x78\xf3\x78\xbc\xdd\xb6\x97\xc7\xe3\xf1\x76\x6d\x2f\xf9\xaf\x55\xfa\xf6\xf2\x78\xeb\xdf\x7e\xfb\x35\xff\xfe\x93\xfe\xfa\xcd\xb7\xfc\xeb\xef\x36\xfe\xfa\xed\xd7\xf9\xd7\x78\xbd\x7e\xb3\xda\x9b\xa2\x4d\x5e\x3f\x7c\xb9\xe2\x16\xc6\xfa\x6f\xcb\xfd\xf2\xa8\xad\xe4\x9c\xff\xfd\xc7\x37\x65\xdb\x9e\x7c\xbd\xbb\x9e\xe3\x6b\x8e\xb7\x4b\xe3\xdf\x5a\xe4\xbf\xe2\xe5\x31\xf3\x5f\x4f\xee\x56\x11\xd2\x12\x59\x42\xf6\xf3\xe5\x31\x7d\x26\x72\x2c\x90\xe3\x7e\x79\x58\x67\xd6\x29\xe4\x8c\x44\x3c\x91\x6b\x07\x89\xf5\xf2\xb0\xc1\xac\x5b\xeb\xdc\xf6\xf2\x30\x63\xd6\x7d\x0a\x39\x13\xc9\x59\xb5\xdf\x89\xd4\x91\xb3\xd6\x96\xc8\x64\x56\x35\x7f\x79\x98\x83\xac\x02\xe2\xfb\xcb\x63\x95\x5c\xb9\xba\x66\xdd\xe5\xe5\xb1\x7a\x7d\xf3\x76\x35\x9d\xa2\xe5\x29\xbc\x8e\x44\x74\x8a\xe6\xf3\xe5\xe1\x6b\x25\xa2\x59\xed\x98\x2f\x8f\xb2\x95\x64\xa8\x1d\x82\x2e\xa0\x96\xf3\xba\x56\xea\xc9\x46\xd9\x46\x32\xd9\x4d\x50\x2e\x5e\x36\xcf\xfd\xba\x56\xef\x5e\x5e\x1e\xa5\x6c\x96\x90\x96\x87\x58\xe7\x74\x7d\xd7\xa8\x24\xd6\x57\x01\x2a\x82\x0a\x82\x13\x54\x05\x55\x20\x98\xd8\x9b\xa0\x96\xc2\xdc\x1a\x50\x17\xd4\x19\xa5\xe5\x87\xa0\xc1\x28\x98\xd8\xa7\xa0\x99\x50\xd5\x44\x13\x94\xd7\x30\x8a\x96\x5f\x82\xb8\xab\x26\x26\x5c\x90\x03\x69\xf9\x5d\xd0\x0e\xf7\x1b\xd0\x21\xe8\x00\x42\x12\xfb\x29\xe8\x84\xaf\x0e\x74\x09\xba\x80\x16\x50\x08\x0a\x58\x9d\x40\x92\x57\x12\x1b\x1b\x6b\x1d\x92\x57\x12\x1b\x85\xb5\x0e\xc9\x2b\x89\x8d\x06\x13\x87\xe4\x95\xc4\x46\xd5\x44\xc9\xeb\x40\x5e\x8d\x1d\x0f\xc9\x2b\x89\x8d\xa1\xb5\x24\xaf\x03\x79\xa1\x00\xfd\x90\xbc\x0e\xc9\x0b\xbe\x0e\xc9\xeb\x90\xbc\x90\x84\xf4\x1f\x62\xa3\x69\x2d\xc9\xeb\x40\x5e\x5d\x4c\x48\x5e\x49\x6c\x6c\x62\x42\xf2\x4a\x62\xa3\x72\x43\x87\xe4\x95\xc4\x46\xd1\x8e\x92\x57\x12\x1b\xd2\xc2\x43\xf2\x3a\x90\x57\x4f\xc8\xa4\x98\x36\x18\x35\x80\x06\x22\xb4\x89\xbc\x16\xd0\x2c\x82\xd2\x34\x36\x24\x61\xb3\x0a\x42\x5e\x4b\x50\x13\xd4\x72\x54\xdf\x80\xba\x20\xe4\xe5\x82\x86\xa0\xc1\xa8\x0a\x34\x05\x21\x1c\x17\xb4\x04\x2d\x46\x75\x20\x17\x84\x24\x5c\x7c\x1d\x82\x0e\x46\x35\xa0\x53\x10\x07\x72\xf1\x15\x82\x82\x51\x06\xa4\x33\x5a\x5e\xda\xdc\xf2\xd2\xcc\x34\x2a\xc9\x6a\x28\xb9\xc9\x1e\x6d\x35\x46\xb1\xd6\xd2\x81\x92\xac\x4d\xf2\x5a\x3a\xd0\x4a\x95\x9b\x85\x89\xae\x89\x49\x6c\x72\x1e\x97\x04\x93\xd8\x64\x3f\x97\x00\x93\xd8\x74\x10\xc9\xcf\x9d\x59\x9c\xd9\x77\x41\x79\xe6\x09\x03\xae\x23\x7b\xde\xb4\x9c\xed\x92\x8f\x80\x94\x82\x9f\x5a\xf2\x11\x10\x93\x03\x5e\xf2\x11\x2b\x8d\xb8\x14\xb4\x66\xc9\x88\x21\xab\xce\x09\xb4\x04\xb1\x16\x4a\xb9\x64\x3f\x10\x73\x78\x5f\xb2\x1f\x88\x35\xec\x67\xc9\x7e\x56\x6a\x73\x29\x5d\x13\x5d\x10\xe7\x79\xae\xc5\x79\x56\x1c\x39\x6a\xa4\x64\x56\x9c\x82\x74\x20\xb8\x0f\x54\x77\xa5\xab\x2f\x15\x47\xb5\x6e\xed\x78\x23\xbf\x06\xab\xb7\x76\xbc\x9d\x51\x0b\x48\xcb\xdf\x88\xab\x71\xc6\xfb\x10\x74\xe6\xa8\x92\x90\x4b\xe7\xbd\x2f\x20\x07\x72\x41\x62\x75\x01\xb1\x96\x8f\x96\xa3\x2a\xa3\x46\x17\xd4\x19\x25\x68\x08\xb2\x1c\x85\xce\xfb\x58\x82\xd2\xae\xe7\x13\xd2\xf2\xe3\x60\x54\x07\x3a\x05\x71\xec\x5e\x09\xd3\x3f\x07\xd7\xff\x2f\xde\x2e\x1f\x48\xc5\x89\x21\xb5\xc3\xa3\xec\x12\x62\x13\xfd\x77\xd9\xa5\x13\x56\xea\x00\x92\x1a\xfb\xda\x13\xc2\xbf\xfa\x3a\x04\x1d\x4c\x84\xa1\x25\x86\xd2\xef\x97\x8a\xcb\x75\xf9\x7d\x88\x4d\xfc\x85\x4b\x65\x20\xd6\x50\x5b\x97\xca\x40\x6c\xf6\x09\xa4\xf3\x5e\xd7\xcb\xa3\xc8\x96\xfc\x0a\x41\xc1\x28\xee\xe1\x42\x6f\x3d\x43\x79\x69\x06\x74\x6b\xad\x5b\x6b\x71\xc6\x5b\x6b\xe5\x9d\x96\x8e\x32\xb8\xee\x14\x62\x93\x44\xc1\x95\x04\x40\x4a\x27\x14\xec\xba\x66\x48\xe9\x04\xb2\xbd\x17\x41\xc8\x6b\x6c\x40\xc8\x6b\x9f\x1a\x95\x6b\xed\x92\x2a\x64\x76\x67\xe2\x7c\x8e\x4a\x56\x3b\xc9\xca\x2e\x0f\x05\x19\x1b\x67\xdc\xe5\xa1\x76\x64\xdf\xe1\x7e\x97\xec\xf7\xf4\x17\xa5\x1b\x3b\xca\x5f\x40\x6c\x0e\xd6\x5a\x53\x10\x67\x34\xb8\xd7\x0d\xed\xba\x21\x2c\x65\xd7\x0d\xed\xe9\x31\x8a\xe2\xe4\x2e\x97\x01\xb1\xc9\x6d\xef\xde\x05\xe5\x3d\x76\x5c\xee\xee\x5a\x3e\xc9\x70\xcc\x62\x77\x13\xe4\x8c\xd2\xc4\x5d\x10\xc6\x43\x6c\xdb\xe5\x6c\xf6\x4c\x68\xca\x53\x12\xa7\x0e\x74\xe2\x59\x70\x80\xfb\x29\x79\x25\x19\xcf\x1d\x4f\xc9\xeb\xcc\x03\x0d\xcc\x75\x3f\xb5\xd6\xa9\x03\x09\xd2\x81\xce\x5c\x7e\xa0\x39\xfb\xa5\xe5\x93\xcc\x49\x58\xd9\x2f\x2d\x1f\x79\xec\x21\x79\x85\x8e\x1d\x3a\x36\x7c\x85\x8e\x8d\x02\x0c\x04\x7d\x48\x01\x8e\x34\xea\xa2\x80\x71\xc8\xa8\x21\x36\xc7\x02\x82\xaf\x63\xe4\xa5\x4d\x34\xe7\x50\x04\x84\xd8\x24\x5b\x3b\x94\x40\x1e\x5c\xed\xc4\x7b\x1e\xba\xda\x03\xb7\xfb\x5c\x4b\x6e\xf7\x90\xdb\x9d\x30\x21\xb7\x7b\xa4\xc1\x94\x49\x6a\x76\xc8\x60\x0e\x19\xcc\x14\x84\xe6\x1c\x67\x63\x14\x3b\x9e\x5d\x10\xa9\x99\x75\xa0\x21\x28\xcf\x68\x62\xe2\xbc\x04\x5d\xac\x55\x81\xb0\xb4\x23\x52\xf6\x86\xec\x8f\xd0\x19\x03\xd9\xcf\x06\x84\xec\x8f\x74\xa8\xc5\xf0\xfd\x87\x1c\x2a\xc4\xe6\x64\xc7\xbb\x09\x4a\x57\x69\xc6\x44\xd9\x23\xc4\xe6\x44\xaa\x72\xbb\x90\xa2\x84\xfb\x90\x89\x1e\x32\xd1\xe7\xf2\xcf\x1d\xe1\x1e\xf5\x3d\x75\x43\x67\xda\x60\xb1\xd5\x80\x9a\x20\xae\x76\x1a\x10\x92\x38\xd3\xd5\x16\x5b\x40\x63\x0a\xc2\x33\x11\x18\xcf\x81\x46\x9f\x99\x7d\x94\xc5\x3d\x9e\xca\x3e\x20\x36\x71\x56\xa7\xb2\x8f\x33\xb3\x84\xb2\xea\x06\x74\x09\x42\x84\x26\x08\x11\x9e\x99\xa2\x97\x85\xef\x3f\xad\x08\xc2\x75\x50\x78\x9c\x56\x05\xb1\x23\x41\xf6\x34\xed\x68\xec\x68\x9c\xd1\xb4\x63\x96\x1e\x65\x71\x1d\xa7\xed\x82\x52\x0b\xcb\xd2\x5a\x87\xa0\xd4\x2f\x55\x1f\xa7\xf4\xeb\x5c\x2c\x8f\x75\x9c\xca\x3e\x20\x36\xb9\x8e\x53\xde\xe4\x74\x58\xc5\x3a\x4e\xe5\x1a\xa7\x72\x0d\x34\xe7\x54\xb2\x71\x7a\xde\xe3\x9a\x82\x5c\x10\xf7\x68\x03\x48\x7c\x79\xba\xed\x25\xee\x5d\x92\x70\xdc\x36\x9e\xe9\x54\xba\x71\x66\xf0\x2f\x0b\xb7\x7d\x2a\xf8\x43\x6c\x3e\x21\xdd\xe3\xc1\x81\x5c\xd0\x73\x22\x66\x65\x5c\x9a\xbc\xc9\x89\x4e\x78\x49\xd9\x5f\xd2\x89\x0b\xab\x75\x04\x7d\xc9\x6a\x2f\x59\x2d\x45\xd0\x25\xab\xbd\xd0\x09\x47\x99\x2e\xe9\xc4\x25\x9d\x40\x0b\x2f\xe9\xc4\x85\x73\x77\x62\xda\x25\xe7\x7e\x29\x64\x22\xfb\x4b\xce\xfd\xca\xeb\xa8\xdb\x36\x7e\x3f\x14\x5f\xba\x2d\xc8\x58\xb8\xdd\xcb\x4e\x41\x91\x8b\x90\x97\x5d\xba\xc0\x2b\xdd\x76\xdd\xc8\x7f\xae\x75\x09\x42\xd7\xc4\xf6\x42\xc2\x57\xba\xf0\xba\x11\x34\x2e\xb9\x70\x88\x4d\xcc\xe2\xf2\x21\x68\xe5\x28\xdc\xee\xa5\x0b\xbc\x74\x81\x8b\xe5\x75\x81\x57\x7a\xcf\xba\xe1\x7f\x2e\x79\x4f\x88\x4d\xb2\xf9\xeb\xd2\x79\xd3\x63\xd6\x42\xb1\x70\x85\x96\x0f\x62\xd2\x12\x24\x71\xa6\x83\xa8\x05\xbd\xbd\xe4\x20\x2e\x39\x08\x0c\xf1\x92\x83\xb8\xf2\x02\x6b\x21\x14\x87\x2e\x30\xfa\x48\x68\x08\x9a\x82\x74\x35\x0b\xc8\x04\xe5\x81\x0a\x0e\x22\x94\x84\x85\x92\xb0\xa5\x89\xbb\xa0\x9d\x51\x82\x0e\x41\x78\x16\xa2\x4d\x74\x64\x1f\x79\xdb\xb5\xa0\x32\xa1\x24\x2c\x94\x84\xb9\x20\x2d\xcf\x0d\x15\xe4\x15\xba\xa1\x48\xbf\x5a\x2b\x45\x5f\x9c\x62\xf5\x84\x55\x02\x63\x9c\x62\x35\xc9\x54\xf0\x0f\x75\x2a\xe2\x4a\x11\x2a\x59\x8a\x6b\x08\x42\x84\x4f\x48\x6b\x5d\xc9\x7d\x23\x43\x8d\x4b\xdc\x5f\xa4\x7d\xc4\xa4\xb8\xd0\x89\x40\x84\x8d\x52\xfa\x96\x08\xef\x94\x44\x6d\x24\x4b\xb7\x24\x71\xcb\x06\x5c\x10\x6b\xdd\x99\x8e\xd6\x46\x00\xba\x95\x8e\x42\x6c\xba\x20\x98\xb8\x39\xb6\x32\xb6\x5b\xc7\xbe\x33\xb7\xa8\x1d\xab\xbb\x95\x5b\xdc\x52\x4c\xd7\x28\x14\xf3\x4e\x37\x52\x3b\xe5\xc8\x2d\x37\x72\x93\x6e\x18\x65\xd3\x2d\x5d\xbd\xf7\x9a\xa3\x28\x05\x6e\xf5\x19\x20\x66\x64\x6c\xb7\xfa\x0c\x77\xd6\x10\xb5\xe3\xcb\x6e\xd5\x10\x10\xb3\x8d\xe5\xe5\x46\xee\xac\x62\x6b\x47\x7d\x6f\x55\xb1\x10\xb3\x0d\xe1\xa8\x8a\xbd\x2f\x76\xc4\x4b\xdd\x97\x76\xbc\xb4\x23\xcb\x5f\xda\xf1\x62\x2d\xae\xe3\x96\xa0\x21\x66\x24\x84\xb7\xb2\xd2\x3b\xf2\x8c\x43\x4c\x84\x98\x48\x62\xc6\xa5\xdd\x4a\x37\x6e\x6e\x68\x64\x8e\xe8\x6a\xb0\xf9\x86\xfa\x52\x5d\xfb\x86\xfa\x8a\x98\x3d\x47\xed\x40\x96\x8a\x49\xc1\xed\x9b\x2d\x41\x8b\xfe\xd5\x06\xa4\x89\xdc\x10\xe5\xaf\x6f\x4b\xcb\x27\x31\x2b\x05\xa8\x08\x62\x47\x67\xf9\xa5\x89\x8b\x1d\x8b\x26\x6a\xc7\xf4\xd1\x95\x92\xd5\xb7\x5d\x6b\xed\x5a\xab\x01\x69\xad\x83\x51\x8d\xe5\x4f\x8d\x3a\x35\xaa\x03\x69\x54\x9e\xbe\x92\x35\xf8\x46\x96\x25\x62\x56\x38\x10\xae\xc3\xb7\x48\xee\xa7\xf8\x8a\x1b\xe8\xd6\x5a\x33\xa1\x5b\x6b\xdd\xf3\xe5\x51\x9f\x07\xca\xbc\x3f\x89\x24\x01\xab\xb7\x0e\x84\xa0\x2d\x2b\x33\x7f\xf6\x39\x0b\xde\xc4\x32\xcd\xf6\x82\x37\x11\x31\xcb\x18\xee\x05\x6f\x22\x32\xc9\x66\xbc\x74\x04\x5d\x70\x0a\xc6\x19\xcb\x78\x42\xec\x58\x05\xb1\x63\x99\x69\xa2\x96\xde\xd7\x0b\x4d\x05\x11\xb3\x74\x0a\x5e\x68\x2a\x78\xc9\x14\xa1\x5a\x26\x25\x5e\x48\x11\x44\xec\xc9\x17\x4d\x05\x2f\x34\x45\xcd\xe0\xcb\x34\xca\x34\x2a\xa5\xaa\x46\xa8\x17\xee\xd1\x16\xac\xea\x1e\x8b\xee\x31\x0b\x78\x2f\xba\xc7\x72\xc0\x97\x33\xea\x10\x5f\x87\xf8\x12\x24\xbe\x32\xcd\xae\xa4\x08\x5e\x4e\x8d\x3a\x35\x0a\x56\x4f\x8d\xba\xd2\x9b\xac\xc9\x81\x2e\x2d\x9f\xc4\xac\x72\xec\x4b\x13\x23\x4d\x94\xb0\xee\x25\x8a\x20\x4c\xb4\x72\x1d\x58\x87\x97\xcc\x1e\xeb\x5a\x1c\x88\x6a\x5d\xc4\xac\x71\xec\xd0\xb1\x33\x50\xd4\x25\xee\x09\x14\x5e\x6e\x34\x47\xd7\x71\x0f\x41\xc9\xbd\x6f\x88\xf0\x16\x13\xa4\x8d\xd6\xda\xef\x86\x62\x57\xf7\x57\xa4\x92\x41\x78\x95\xca\x54\x54\xc6\xd1\xb5\x2a\x95\xa9\x52\x99\x0c\xc5\x5e\xa5\x32\x90\xea\xa8\x5f\x95\xca\x54\x59\x30\x46\x5d\x65\xc1\x35\x5d\x6d\xf5\xaa\xb5\x4e\x41\x3a\xaf\x01\x71\xde\x3a\x34\x8a\x89\x43\xa3\xa8\xef\xad\x39\x10\x82\xaa\xd8\xb9\x77\x58\x95\x32\xd4\x95\x86\xe8\x06\x5f\x2e\x88\xde\x91\x69\x14\x09\x9d\xd7\x74\xb5\xd5\x1d\x26\xc8\x07\x44\x8c\xee\xb9\x57\xd7\x19\x1d\x26\x10\x7a\x75\x31\x41\xb3\xc8\x32\xab\xf4\xea\x62\x22\x15\xab\x6d\x08\xbd\x4a\xb1\xaa\x14\xab\x0b\xd2\xc4\x0c\x8c\x6d\x93\xbc\x4e\x2d\x4f\x60\xb4\x2e\x48\x22\x4c\xd2\x36\xdc\x5b\x3d\x25\xc2\x13\x13\x7b\x42\x2e\x88\x1d\x3b\xf2\x92\x92\x56\x29\x29\x7a\x5b\xcf\xe7\x8e\x67\x8e\x1a\x1c\xfb\x14\xab\xd4\x36\xf6\x9c\x28\x41\x67\x36\xd3\xb6\xc1\x81\xc8\x66\x44\x56\xc5\x36\x2b\xe1\xc0\xeb\xb5\x18\x25\x48\x4c\x24\xe9\xa3\x71\x46\xd9\x40\xbd\xd9\x31\x73\x62\x57\xc3\x5f\xa4\x6d\xf8\xb2\x46\xcb\x40\xc4\xe4\x20\x1a\x2d\x03\x6f\xa9\x5f\xad\x64\x14\xf4\x26\xfd\x6a\xd2\xaf\xae\x89\x26\xe8\x64\xd4\x04\xba\x04\x71\x20\xce\xd8\xa4\x39\x2d\x63\x78\x2b\x38\xe7\x46\x0c\x17\x31\x1b\x2c\x3f\xb4\x7c\x2a\x50\x2b\x55\xd0\x73\x22\x9e\x05\x49\x34\xca\x56\x6f\x73\xe6\x28\x0c\xb1\x4d\x31\x41\x67\xd5\x06\xcb\xd3\xb7\xf0\x36\x9d\x51\xb0\x3a\x77\x41\x78\x83\x81\x24\xe4\x04\x5b\xba\xb4\x56\xd0\x9c\x66\x12\x0e\x15\x90\x65\x0a\xea\xcd\x24\x09\x43\x12\x3a\xb6\x89\xd5\x24\x63\x3d\x47\x89\x89\xd4\xfb\x56\xb4\xbc\xf4\xbe\x65\x6d\xd3\x0a\x2e\xa9\x51\xdb\x88\x98\x71\x69\x6d\x49\x12\x8b\x63\x4f\x41\x3a\x76\x92\x51\x37\xce\xb8\x74\xec\xcc\x4d\x5a\xc1\x71\x35\xda\x22\x22\xa3\x4b\x12\xae\xe5\x3d\x75\xb5\x2c\x76\x74\x49\xc2\xd1\xd5\xc1\xd5\x92\x53\x7b\x4b\x53\x68\x65\xb1\x96\x4c\x01\x62\x36\x38\xe3\xa1\x7b\xcc\xf0\xd9\x2a\xbe\xbf\x29\x7c\x36\x85\xcf\xc9\x8e\x0a\x9f\x0d\x5d\xad\x78\xe2\x26\x5d\x6d\xca\x53\x26\xf7\x78\x89\x2f\x74\xb5\x62\x0a\x4d\xba\xda\xe4\x9c\x89\xbb\x4d\xce\xb9\x65\xba\xd2\xaa\xee\xf1\xd2\xb1\x93\x98\x4d\x04\x1d\x62\x22\x03\x76\xab\x3a\x90\x02\x76\x23\xb1\x57\x60\x6c\xa1\x1b\x8a\x94\x44\x95\xde\x87\x24\xc1\x33\x1b\x7d\x66\x6f\x21\x26\x6e\xd6\x92\xec\x6f\xad\x95\x64\x2e\x87\x09\xb9\xf0\x86\x0d\xd5\xac\xcc\x5c\x4f\x5d\xde\x3b\xcb\x23\xc2\x2e\xbf\x0a\x31\x7a\xdd\xde\x95\x2c\xf5\xc1\x28\x9c\x55\x57\x74\xee\x8a\xce\x84\xcf\xae\xe8\xdc\xd1\xaf\x46\x82\xd3\xa5\x5f\x10\xe3\x01\xd0\xbb\xf4\x8b\x97\xb4\xd6\xd0\x55\xbd\xa4\x79\x5f\x69\x0a\x0d\x4b\xeb\x4b\xa3\x16\xa6\x60\x1a\xa5\x1d\x93\xcc\x81\x27\xef\x0a\xc5\x5d\xa1\x38\x2b\x6c\xef\x0a\xc5\x3d\x33\xe4\xd6\xa6\xd6\xba\x04\x61\xc8\xb8\xed\x2e\xc5\xe4\x09\xae\x35\xa4\xaa\x27\x38\x11\xb3\xac\xb0\x5d\x4f\x70\xce\x53\x57\x6b\x4b\xd0\x29\x08\xfd\x32\x24\xb1\x6b\xf9\x24\xad\xb9\x46\x3d\x97\xc7\xdc\x51\x72\x3d\x75\x79\x47\xbf\x9a\x03\x49\xbf\x20\x66\x59\x61\x7b\x97\x2f\xec\xa9\x26\xad\xe3\xf8\xba\xd4\x04\x62\xa6\x4b\x53\xa4\xef\x19\xb0\x5b\xc7\xd5\x76\x05\x6c\x88\xd9\xda\x7e\x3f\x14\x77\xe9\x47\x47\x19\x3a\xba\x36\xa4\x0c\x90\xd6\x11\xc1\x90\x43\x1d\x1d\x1e\xb3\x00\xf7\x41\xcf\xc7\x47\xfa\xc5\xd6\x61\x7b\xc8\x2f\x42\x8c\xce\x90\x0f\x5e\x75\x45\x46\x81\xed\x31\xb4\xfc\x60\x79\x02\xe3\x18\x5a\x7e\xe0\xa5\x48\x50\xc6\xa8\x82\x1a\xa3\x58\x8b\x4e\xbe\x88\x19\xf7\x30\xe4\x76\x47\x3a\xd4\xd6\xd1\xc8\x21\x87\x0a\x31\xa5\x6a\x63\x6a\xc7\x4c\x08\x1b\xaf\xa3\x3e\xe8\x1f\x89\x18\xed\x29\x1f\x4a\x0e\x07\xde\x73\xe0\xaf\x87\xbc\x27\xc4\x6c\x71\x46\x13\xab\xe8\xed\x20\x39\x1c\xd2\xdb\x91\x6e\xa4\xf1\xe4\xe8\x43\x6e\x04\x62\xb6\x38\xf6\xa9\x03\x11\x51\xe7\xc6\x44\x45\xd4\xa1\x88\x9a\x55\xb1\x0f\x45\xd4\x71\xa5\x89\x4d\x32\xfa\x71\x2d\x41\x98\x98\xe4\x25\x67\x33\x32\x31\x6f\x34\x36\x7d\x28\x31\x1f\x7a\x62\xa7\x1e\x19\xb7\x26\x72\xb5\xf4\x3a\x7d\xea\x6a\x21\x4d\xd5\xc1\xd4\xd5\x4e\xc5\x4a\x17\x54\x05\xc1\x04\x5e\x6a\xca\x1b\x4c\x79\x83\xac\xcc\x7c\xca\x1b\x4c\x62\x12\x6d\x33\x9f\x8a\x49\x53\x31\x09\x1b\x98\x8a\x49\x13\x79\x51\xe5\xf9\x94\xbc\x66\x9a\x6b\x53\x4e\x3c\x65\xae\x10\x93\xca\xcd\xa5\x89\x19\x28\x9a\x32\xb6\xa9\x2c\x6b\x2a\xcb\xe2\xb6\xa7\xb2\xac\x49\x84\x50\x1a\x34\x15\x21\x20\xe6\x6b\x03\x12\xab\x49\x7a\x79\x8e\xd2\x8e\x5c\x87\x42\xf1\xd4\x75\xcc\xe7\x75\xb0\xa3\xae\x63\x5e\x29\xe8\xb5\x31\xea\x32\x41\x12\x34\x52\xd5\x0d\xcd\x2c\x5b\xdb\xe2\xd2\x26\x65\xab\x88\x19\x49\xc9\xa4\x6c\xf5\x89\x51\xd3\xc5\xf4\x29\xa3\x86\xd8\xda\x04\xe9\x40\x5c\xed\x22\x4c\x4d\x5d\x2d\x64\xf6\x21\x48\x3b\xde\xfa\x58\xa2\x00\xe9\x8c\x49\xda\xc2\x1b\xcc\x5b\x67\xe4\x65\xed\xc9\xbd\x72\x75\x48\x5b\x04\xff\xa9\x64\x1c\x62\x8b\xe4\x52\x0f\xcc\x6e\x98\x28\xfd\x49\x37\x99\x28\xc4\x16\xea\x6b\x32\x51\x9e\x68\xdb\x22\x42\xe8\x89\x56\xc4\x56\x56\xfe\x6e\xb2\x21\xcb\xac\xa3\x2d\x24\x61\xd6\x04\x35\x46\x4d\xa0\x2e\x28\x23\xaa\xca\x0a\x53\x85\x0d\x31\xde\x57\xdc\xe8\xc1\x3a\xcf\xbd\xcd\xa9\xd6\xf5\xdc\xeb\xb6\x98\x88\xec\x4d\xe1\x00\x62\x0b\x73\x37\xe9\x97\x9d\x8c\xc2\x6a\x4d\x19\x2e\xc4\x16\x45\xb7\x9d\x1a\x95\x82\x6e\x7c\x29\xe2\x26\x41\xdb\xad\x51\xec\x78\x3f\x47\x9d\x2f\x8f\xbe\xb5\xe4\x6b\x49\x5e\x10\x5b\x14\x2f\x4b\x66\xb5\xd2\xf1\x75\xde\xd5\x7d\xc9\xf1\x41\x6c\x11\x18\x97\xa4\xba\xd2\xa5\xf5\x6d\xb0\x96\x5c\x1a\x64\x6e\x70\xbf\x94\x49\xae\x8c\xbb\x7d\x23\x03\x59\x8a\xbb\x4b\x5f\xcb\x90\x82\x2e\xc5\xdd\x95\x82\xee\x4a\x8d\xf5\xc8\xec\x2b\xc3\x49\xdf\x70\x30\x4b\xa9\x0b\xa4\x29\x51\x5d\x97\x76\xe4\x40\xbc\x02\xbb\x5e\x5b\x9d\xb7\xcf\x4e\xdb\xcd\xf5\xf6\x29\x62\x52\x72\x3d\x6e\xba\xcf\xf1\xf2\xe8\x15\x26\x9c\xaf\x02\x44\x6c\xd1\x6b\x70\xa5\xb3\x9e\x7e\xa2\x2b\xf1\x72\xf9\x09\x88\xf1\x21\x8f\xbb\xfc\x04\xa4\x2b\xf1\x72\x15\xf0\x10\x5b\x45\x90\x76\x4c\x05\xe8\xbc\xef\xba\x1e\x4a\x9d\x47\xc4\x5e\xd1\x7b\x3d\x22\xfa\x9e\x71\xa8\x37\x3c\xd3\xae\x38\x04\xb1\x45\xe1\xb8\xeb\x3a\xf6\x14\x61\x6f\x4b\x90\x0b\xe2\xb6\x69\x65\xec\x03\x56\x77\xcb\xe5\x1b\xe6\xbe\xdb\x25\x28\x6d\x7b\x11\x28\x76\xb5\x0c\x20\xbd\x53\x7a\xe9\x11\xd1\x79\x1e\xec\xbd\xfd\x7e\x83\xda\xf5\x7a\x28\x62\x8b\x1e\x86\x5e\x0f\x9d\x57\xba\xae\x10\xaf\x57\x3a\x11\x93\x83\xd8\x4f\xec\x69\x4f\xd7\xd1\xf9\x7e\xc6\x77\x95\xfc\x90\xb6\xe1\xe8\xf5\xfe\xe6\x3c\xb6\x75\x3e\x5d\x71\x3d\xb6\xf9\xc1\x35\x0f\xb2\xa4\x43\xd7\x7c\xe8\x9a\xb1\x94\x43\xd7\xcc\x33\x5a\x1f\x04\x33\x3d\xa3\xf9\xb1\x52\xd7\x26\x4c\x1c\xab\x09\xc2\xa8\x29\xa7\x0f\x55\x07\x3c\xb6\x75\x85\x29\x3d\xb6\x89\xd8\xc2\xf7\xeb\xb1\xcd\x79\x62\xea\xbc\x31\xba\x9e\x98\x9c\x87\x95\xae\xfa\x4d\x0f\x2b\x7e\xe6\xe0\x2e\x13\x3b\x95\xaa\x41\x6c\xd1\x0f\x39\x95\xaa\xf1\x34\xd1\xd5\x5b\xd1\xd3\x84\xd3\xe3\xef\x8e\xb9\xaa\xc7\x2f\x62\xbc\x14\xf9\xa5\x46\xdd\x95\xb2\x1f\x1b\x9e\xf8\x92\xec\x21\xb6\x9a\x20\x24\x71\x65\xb4\x19\x1b\x16\x7c\x29\xda\x40\x8a\x6e\x48\x3d\x7e\xbf\x8e\xc9\x23\x73\x8a\xf0\xe2\x4b\x22\x11\x5b\x34\x52\xae\x43\x13\xd3\xe7\x0c\x1e\x07\xfc\x52\x00\x82\xd8\x6a\x2c\xaf\x00\x44\xab\x7e\x6c\x04\x46\xb5\xea\x3d\x66\xd6\x49\x85\xe5\x83\x37\x33\x11\xe3\x51\xcb\x83\x37\x33\x0f\x5e\xba\x0b\x3e\x23\x78\xe9\x16\xb1\xd5\x34\x11\xed\x0e\x0a\x3f\x1a\xfa\x1e\x4a\xcc\x21\x8d\x87\x61\x0f\xb5\x3f\x69\xc2\x8f\x42\x44\x55\x13\xde\x23\xb5\x7b\xa8\xe6\x0a\xa9\x6f\x48\x7d\x69\xc4\x84\x44\x08\x19\x05\xdf\x1f\x12\x61\xa8\x3c\xc4\xab\x87\xb2\xf0\xa0\xf0\xab\x04\xb3\x50\xe1\x07\x31\xde\xdf\x3c\xd4\x3c\xa1\xe3\x3e\xf8\x72\xc4\xd5\x71\x77\xba\xe4\x43\x95\x86\xba\xe4\x7e\x23\xfb\x86\xbc\x6e\xc9\x1e\xd2\x78\xb8\xf3\x5b\xb2\xbf\xcf\x8b\x52\x13\x48\x4d\x0a\x88\x2d\xd2\x8d\xfb\xc4\x67\xdc\x99\x5f\x8f\x4e\x09\x7c\x2b\xbf\x86\x14\x75\x90\x6f\x25\xd0\xf4\x99\x07\xe9\x2c\x2a\x4e\x94\x4f\xfd\x0e\x75\x9d\x83\x4e\xf1\x18\xa9\x5a\xa1\x4e\x71\x6c\xa9\xad\x63\xa4\x75\xc6\x46\xb3\x5d\xc4\x56\x56\xf8\xb1\xf1\x51\x5f\x6c\x99\x56\x8c\xa9\x89\xa4\x15\x22\xb6\xba\xa0\x00\x4a\x96\x06\xcf\xea\xb1\xdd\x5a\xeb\xd6\x2b\xb4\x20\xad\x05\x97\xbc\xb3\x85\x9a\xb4\x51\x32\x8d\x1b\xbc\xef\x44\xa1\x71\x26\x62\xab\x17\xa0\x43\x50\x72\x4f\xa7\x38\x0a\xbe\x34\x8a\xe2\x58\x96\x6e\x51\x88\x63\x41\xcb\x74\xd0\xf1\x0f\xb5\x4c\xa3\xec\xa9\x80\x04\x9a\x28\x3c\x98\x8b\xd8\xca\x40\x13\x65\xd7\x8e\x59\xea\x0e\xb2\xcf\x28\x94\xba\x22\x75\x6b\xb0\x9a\x65\xef\x93\x8c\x35\x98\x48\xf5\x2b\xd2\xca\xd0\x44\x2d\x1f\x27\xa3\x26\xd0\x25\x48\xf2\x82\x2f\xda\x9c\x41\xef\x71\xac\x34\x8c\x50\xef\x31\x2a\xb6\xb2\x52\x27\xa3\x62\x2b\x22\x86\x23\x89\x8a\xad\x44\xcd\xf8\x3a\xe8\x3d\x46\x25\x91\x11\x31\x72\xae\xa8\x24\x32\x51\x33\x5e\x0c\xaf\x1a\x75\x09\xba\xf8\x20\xa3\x02\x85\xa0\xe0\xe3\x0e\x46\x49\x5e\xf5\xd0\xf7\x1e\x29\xe8\x8a\xe6\x8a\xd8\xea\x8c\x42\x73\xa3\xa6\xc7\x1f\x9e\x19\x76\xd4\x53\x3b\x9e\xe4\x10\xe9\xc4\x83\x16\xe0\xdb\xa8\x19\x10\xe6\xb6\x31\x91\x80\x20\x62\x24\x7e\x51\x43\xdc\xc7\x91\xa3\xc4\x04\x1f\x18\x88\xd8\x1a\xac\x25\x11\xd2\x71\x9b\x3c\x75\x86\x3a\x6e\xd1\x32\x1f\x99\x64\x1a\xd1\xc8\x47\x44\x8c\x8c\x31\x1a\xc1\x54\x64\x6e\x19\x36\xa2\x11\x4c\x45\x6c\x65\xd2\x1d\x6d\xa0\x5f\x2d\x5d\xd7\xdc\x9c\x89\xb8\x2e\x11\xe3\xa1\x36\x68\x8f\xbd\x0d\xba\x51\xb3\x6c\x4c\x94\xbc\x5a\x4a\x62\xf2\x69\x5c\x34\x49\x02\x62\x52\x93\x26\x49\xd0\xeb\x98\xc5\xe7\xef\x46\xe1\x50\x2b\x24\x68\x4c\xcc\x0a\x8f\x6a\x4c\x44\xcf\xd0\x36\x79\xec\x8b\x4e\x68\x13\x31\x3a\x66\xd1\x69\x7c\x85\x1a\x13\x2d\xf3\xfb\x50\x63\x42\xc4\xa4\x91\x6a\x4c\x04\x9f\x0b\xcf\x56\x99\xc8\x03\x9d\x88\x2d\x2c\xb8\xd3\x0b\x0b\xbe\x75\x9d\x2d\x5d\x75\xe8\x5b\x57\x11\x5b\x59\xcd\x85\xbe\x75\x0d\x3e\x46\x9d\x6d\xb2\xfc\xa1\x1d\x0f\xed\xe8\x40\xda\xf1\x66\x2d\x4b\x71\xd2\x32\x78\x12\x5b\xa8\x8c\x3a\x07\x41\x1f\x60\xd2\x7d\x0b\xf5\x01\x44\x66\xef\x82\x8a\xa0\xc2\x13\x6a\x03\xaa\x82\x98\x88\x37\xa0\x27\xf0\x24\x4d\x56\xa7\xd6\x40\x8c\x8c\x24\x13\x5f\x1a\x83\xfc\x5e\xa4\x3c\x97\x27\xbf\x0f\x8a\xeb\xc9\xe7\xc2\xa1\xe2\x3a\x46\xc6\xfd\xc9\xf7\xcf\x31\x76\xed\x98\xa4\xf1\x84\x1a\x83\xb8\x1f\x23\xbd\xe7\xa4\x04\x8f\x21\xef\x09\x31\x1e\x50\x62\xf0\x69\x5c\x8c\x14\xc8\x1c\xb8\xb7\x41\x1b\x5d\xc4\x16\x9e\x78\xd0\x3b\x8c\x91\x36\x30\xe5\x9c\x87\x6c\x60\xc8\x8d\xa0\xf0\x43\x6e\x84\xe2\x7a\xf2\x01\x69\xa8\xb8\x8e\x39\xf8\x0c\x0a\xd3\x9f\xf2\x8b\x53\x55\x53\x56\xd2\x31\xa9\x9a\x62\x5a\x5a\x1d\x5f\xde\xc5\xe4\x33\x04\x91\x32\xb0\xba\x29\x9f\x41\xd9\x3c\x79\x56\x0f\x95\xcd\x31\x53\xcd\x26\xaf\xe3\x31\xf9\x04\x4d\xc4\x16\x0a\x30\xe9\x98\xc5\x74\x8d\x82\x09\xd7\x28\xd7\x28\x03\xd2\xa8\x4c\x3e\x26\x0f\x87\xa1\xea\x57\xa4\xf2\x22\x14\xaa\x7e\x63\xa6\x27\x9e\xa6\x89\xf2\xc4\x10\x5b\x93\xe5\xe5\x89\x27\xfa\x45\xd1\x1f\x53\xfa\x35\x9f\xfa\x05\xf7\xd2\x2f\xaa\xcc\x49\xcd\x17\xaa\x32\x83\x8f\x7f\x27\x55\x40\xf0\x05\xf0\x93\xd8\xb2\x0d\x08\x41\x53\xf3\x4d\xdd\xa3\x6a\xbe\xb0\xcc\x34\xe6\x32\x07\x3a\x05\xe1\xb8\xac\x00\x69\xad\x24\x73\xb9\x26\x6a\xad\x45\x90\x37\x41\x04\x33\x4b\xd5\x98\xcb\x53\x12\xc6\xe7\x92\x22\xb6\x30\x18\xe3\xeb\xaf\x30\x34\xc7\x0b\x3b\x4a\x73\x4c\x9a\x63\x4c\x94\xe6\x58\xd6\x56\x53\x2e\xdc\xa8\xad\x44\x6c\x65\x3e\x12\xc6\x07\x06\x41\xfd\x38\x1d\x9d\x50\xfd\x18\x8b\x17\xc7\x2d\x8b\xeb\x58\x3a\xe3\x22\xcd\xdf\x90\xfd\x22\xcd\x17\xb1\x65\x0b\xa8\x0b\xca\x89\xa5\xb1\x16\x59\x8b\x88\x49\x38\xeb\xd2\x5a\xc9\x97\x15\xc2\x94\x6a\x3e\x11\x5b\xe4\x03\x4b\x7c\xe9\x6b\x5d\x45\x54\x7d\xad\x2b\x52\x94\x0f\x2c\xdd\x23\xc4\xd6\x12\x24\x26\x68\x20\x94\x95\x13\x55\x3f\x06\x75\x9a\x15\x64\xaf\x3a\x2d\x9c\xdf\x10\x54\x3c\xa6\xf3\x1b\x02\x11\x5b\x8b\x51\x34\x56\xc3\xf1\x5f\x95\x74\xc3\xe5\xbf\x20\xb6\xb4\xbc\x64\xef\xa9\xbe\xd6\x50\x5f\x3f\x9f\x10\x1f\x29\x77\x46\x49\x7d\x21\xc6\xb3\x67\x38\xaf\x53\xe1\xb7\xbe\x81\x66\x47\x9d\x11\x52\x5a\x56\x73\xe1\x3a\x23\x25\xa5\x35\xb4\x50\x25\x65\xec\x34\x36\x1a\xf2\xda\x4d\x10\xcd\xc1\xb5\x06\x50\x11\xc4\x6f\x61\xb2\xb0\x08\x95\x81\xb1\xf3\x9a\xd7\xe1\x6b\xe7\x35\x4f\xc4\xd6\x9a\x40\x28\xe6\xae\x1f\x7e\xa0\x72\xbb\x5c\xda\x9e\x2e\x6d\x55\xb8\x57\x29\x13\x97\xbe\x76\xc7\xb9\xab\x94\x89\x2b\x23\xc1\xea\x59\x33\xc6\xc5\xcf\x1d\x44\x8a\xe3\xa3\x2f\x7e\xee\x10\x54\x11\x8b\xcf\x12\x43\x55\x44\x90\xd3\x2f\x3e\xe3\x0c\xe5\xf4\x11\xe9\xf8\xd6\xdc\x72\xf9\xe0\xa3\x80\x88\x9b\x2f\xfa\xb9\xc7\xa0\xcf\x24\xa2\xb4\x2e\x68\x88\x04\x99\xf9\xda\x32\xf9\xbb\x25\xae\x7b\xcf\xdc\x52\xf3\xee\x9d\xdc\xf2\xde\x07\x3f\xcc\xb0\xdf\xd6\xc3\xed\xb7\x81\xf8\xde\x69\xf7\x8a\xb0\xd1\xbd\xd3\x1a\xb9\xf7\xcc\x3b\x7e\xde\x88\xbc\x43\xc4\x66\x26\x65\xb7\x8a\x78\x11\x9b\x65\x03\x7a\xee\xbd\xff\xfc\x03\x80\x7b\x27\xef\x10\xe1\xf1\xe4\xde\xa9\x7c\xef\xfd\x57\xe9\xde\xba\xbc\x9b\x6f\x5d\x57\x4b\xe7\x70\xeb\x5b\x57\x11\x49\xf7\xd6\xb7\xae\xf7\xfe\xab\x74\x6f\x15\xd6\xf7\x21\xe9\xc2\x96\x4a\xe6\x9b\x32\x77\x8d\x34\x9c\x5b\x65\xee\x7d\x66\x8a\xbd\x6c\xfb\xbf\xc9\x49\xfe\xff\xfb\xfd\xe3\x9b\x5f\x7e\xc4\x76\xfe\xf8\xe9\x53\xbc\x7e\xe1\x27\x73\xfc\x4e\xed\x71\xc5\xfd\xee\x35\x7e\xf9\xf9\xdd\xc7\x0f\x1f\x73\x16\xff\xfd\x4f\x00\x00\x00\xff\xff\x1e\x5b\x0f\x99\xaa\x37\x00\x00"); +func _agbf ()([]byte ,error ){return _gb (_ffg ,"UniAKR-UTF8-H")};func _fgc ()(*asset ,error ){_eaec ,_fbf :=_agea ();if _fbf !=nil {return nil ,_fbf ;};_dedf :=bindataFileInfo {_ee :"Adobe-CNS1-4",_ffd :1901,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491191,0)}; +_aef :=&asset {_da :_eaec ,_dc :_dedf };return _aef ,nil ;};func _dfed ()([]byte ,error ){return _gb (_fcce ,"CNS2-H")};type bindataFileInfo struct{_ee string ;_ffd int64 ;_cd _ff .FileMode ;_ae _c .Time ;};var _agfac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\x41\x8f\x9b\x30\x10\x05\xe0\xbb\x7f\xc5\x1c\xb7\x87\x2d\x36\xc4\xc4\x48\x51\xa4\x2a\x39\x14\xad\xb6\xad\x4a\xb3\xad\x54\xf5\x40\xf0\x10\x59\x6a\x0c\x32\x70\xc8\xbf\xaf\xfc\x4c\x69\x0f\xd1\x4b\x3e\x33\x8f\x80\x9d\x9d\xea\x73\xed\xdd\x4c\xd9\x97\x30\x74\x0d\xcf\xd4\x3b\x6f\x03\x4f\xc3\x12\x3a\xa6\x2b\xdf\x9c\x17\x42\xe5\x64\x5d\x37\xff\xfd\x89\xe8\xee\xed\x28\x44\x76\xf1\xee\xa5\x79\xbe\x9c\x9a\xfc\xf9\x23\x2d\x13\xaf\x7c\xaa\xcf\xcd\x63\x9a\xf9\x5e\xfb\x7e\xa0\x22\x8d\xdb\x65\x5c\x2b\x88\xb2\xaf\x7c\x73\xd3\x1c\x1e\xf4\xf4\xc1\x0e\x57\x7e\x47\x96\xfb\xe8\x9f\x83\xe5\xe0\xfc\x8d\x9e\x5e\x86\xc0\xad\xda\x16\x9a\x65\x1c\x7f\xf3\x9d\xfd\x4c\x0a\xc6\xde\x22\x45\x76\x7a\x6d\xc7\x4f\xed\x9d\xe9\xff\xbf\xf3\x86\x45\xac\xbd\x71\x98\xdc\xe0\x49\xc9\xf7\x52\x96\xff\xfc\xdb\x63\xe4\xb5\x4c\x64\x3f\x2e\xf5\x99\x7e\x2a\x52\x92\x72\xbd\x93\xfb\x5f\xab\x7f\x7f\x1d\xec\x76\x95\x32\xe9\x09\x3a\x67\x43\xeb\x6f\x2c\x0e\xb9\x54\xc5\x91\x62\xec\x8e\x64\xa4\xae\x40\x65\xa2\x32\x52\xa9\x22\xe5\x1a\x14\xc3\x48\x6d\xc4\xa1\x90\x52\x1d\x29\x46\x0e\x2a\x41\x06\xa4\x14\x06\x75\x24\xd4\xa7\x30\x72\x9f\x68\x97\x08\x5d\x65\x21\x0e\x7d\x8f\xae\x14\x46\xee\x4b\x90\x49\x54\x81\xf6\xa0\x2e\x51\x07\xaa\x40\x9c\x88\x23\x19\x19\x49\xb5\x20\xd5\x83\x54\xa4\xe2\x0a\x8a\x61\xa4\x41\x57\x61\x13\x59\x90\x01\xf5\x89\xd2\x20\xea\x75\x1a\xd4\xb8\xaa\x42\xbd\x4e\x77\xd4\xb8\x63\x99\x47\xe2\x02\xc4\x78\xc6\xaa\x88\x5b\xbb\xbd\xe1\xf8\x3d\x1e\xaa\x6d\x93\xbb\x25\x04\xf6\x33\x8e\x14\xb6\x31\x6e\x8d\xf3\xbc\x9d\xda\x71\x18\xe3\x14\x3e\x7f\x02\x00\x00\xff\xff\x23\x3f\xe6\x8f\xe1\x02\x00\x00"); +var _ecaf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\xc1\x6e\x9c\x30\x10\x86\xef\x3c\xc5\x1c\xd3\x43\x0a\x06\x6c\x6f\xa4\x28\x52\xcb\x1e\x82\xaa\x6c\xab\xd2\x6e\x2b\x55\x3d\xb0\xf6\x2c\xb2\x54\x8c\x65\xe0\xb0\x6f\x5f\xcd\x98\xb0\x07\xf4\xc3\x67\xfc\x69\x3c\xe3\xbc\x69\x8f\xad\x77\x0b\xe4\xdf\xe2\x64\x3a\x5c\xe0\xea\xbc\x8d\x38\x4f\x6b\x34\x08\x17\x1c\x9c\xcf\x32\x51\x82\x75\x66\x79\xff\xe4\x30\x63\x1f\xb2\x2c\x7f\xfd\x32\x9b\xf9\xf1\xb3\x7c\x7c\x85\x75\xc6\x0d\x36\xed\xb1\xbb\xcd\x0b\x8e\xad\xbf\x4e\x50\xa5\xcd\x76\x0d\x9b\x00\x20\xff\x8e\x83\x9b\x97\x78\x83\x87\x4f\x76\xba\xe0\x07\xb0\x78\x25\xfe\x35\x5a\x8c\xce\x0f\xf0\xd0\x9c\x3a\xb1\xe3\x6e\x0d\xe1\x1f\x8e\xe8\x17\x50\xcc\xd0\x5b\xce\x2c\x6f\xde\xfa\x70\xea\x47\x84\x7b\x29\x67\x5e\xe2\x95\x33\xc6\xd9\x4d\x1e\x44\xf5\xb1\x28\x0e\x77\xfe\xe3\x16\x10\xc4\xa6\xf8\xfd\xb3\x3d\xc2\x1f\x01\xa2\x80\x52\xca\x83\xf8\xbb\xf1\x5f\x6f\x93\xdd\xff\x12\x55\xaa\xde\x38\x1b\x7b\x3f\x60\xf6\xdc\x8b\xfa\xf2\x02\x5b\x88\x4a\xd5\x8a\x98\xec\x99\x51\x88\x4a\xd7\x15\x33\x93\x98\x49\x4c\x32\xb3\x89\x21\xb1\x82\x88\x12\x4c\x54\x49\xa4\x66\x22\x13\x51\x44\x0e\x4c\x9e\x12\x21\x7b\x5d\x32\x49\x1e\x45\x9e\x54\x81\x4e\x1e\x4d\x1e\xc9\x66\x9d\x3c\x9a\x3c\x92\xcd\x3a\x79\x34\x79\x24\x9b\xb1\x62\x42\x41\x67\xd1\xd9\xb3\x51\x58\xbf\x00\x85\x24\x77\xf1\xa4\xa9\xed\xfb\xf9\xe9\x9d\xc6\xbd\x0f\xc0\xac\x31\xa2\x5f\x78\xd8\xdc\x64\x6a\x9c\xf3\xb8\xdf\xa6\x30\x05\xda\xc5\xcf\xff\x00\x00\x00\xff\xff\xb8\x3f\xd2\xbb\x79\x02\x00\x00"); +func _dgaf ()(*asset ,error ){_gdgd ,_fcdc :=_dcbg ();if _fcdc !=nil {return nil ,_fcdc ;};_fdcc :=bindataFileInfo {_ee :"UniJIS-UTF32-V",_ffd :4458,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492953,0)};_bbgd :=&asset {_da :_gdgd ,_dc :_fdcc };return _bbgd ,nil ; +};func _egf ()([]byte ,error ){return _gb (_aaa ,"Adobe-Japan1-7")};var _dca =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xcb\x8e\x5c\xb7\x15\xdc\xf7\x57\xdc\xa5\xb3\x70\xc4\xf7\x03\x68\x34\xe0\xf8\x81\x68\x61\x3b\x88\xec\x24\x40\x90\xc5\x25\x79\x28\x0c\x10\xcd\x0c\x46\xa3\x85\xff\x3e\xa8\xaa\xb6\x12\x1b\x59\x18\x6d\xd5\xd4\xe1\x65\x1f\x56\xd5\xe1\xed\x37\x5f\xbf\xfd\xe6\xed\xe3\xc3\xeb\xf1\xe6\x2f\x2f\x4f\xf3\x9d\xbd\x1e\xfb\xe1\x71\xbd\xd8\xc7\xa7\x4f\x2f\xd3\x8e\x61\xef\x1f\x1e\x2f\x17\x1f\x8e\xf5\x30\x5f\x7f\xfd\x27\x3f\xe6\x87\xf3\xf9\x72\x41\xfd\xbb\x5f\x3e\xbe\xda\x87\xb7\x8f\xfb\xe9\x88\xe2\xad\x4f\xcf\x77\xee\x71\xbc\xf9\xab\xbd\x7f\xf8\xf8\xfa\xf2\xcb\xf1\xc5\x57\xeb\x69\xd8\x1f\x8e\x65\x1b\xf8\x8f\x2f\xcb\x5e\x1e\x1e\xdf\x1f\x5f\x7c\xfd\xc3\x3b\xff\x19\x7e\xf7\xe9\xf9\xf9\xdf\xf6\xc1\x1e\x5f\x0f\x47\xcc\x1e\x17\x3f\x2f\x6f\xbe\xfe\xfe\x7c\xfe\xe1\xfc\x60\xc7\x9b\x6f\x7f\xb2\xc7\x2f\xff\x94\xbf\xfc\x33\xff\xc2\x3f\xfc\xcd\x5e\x3e\x3e\x3c\x3d\x1e\xde\xfd\xd1\xb9\xf2\x5f\xfc\xa7\x5f\x9e\xed\xf0\xf7\x15\x7e\x7e\xfb\xcd\x8f\x7b\x7f\xb4\xd7\x23\x38\xad\xfe\xe6\x1f\x3f\xbf\xfd\xe6\xf8\xa7\x3f\xbc\x3b\x42\x8e\xdd\xfd\xeb\x4e\xfd\xfb\xf7\x4f\xcb\xee\x5b\xb8\x04\x7d\x9d\xf9\xb4\xec\xe3\xf3\x39\xed\xe5\x7c\x7c\x6f\x97\xe3\xb8\x3a\x77\x3b\x8e\xe3\xda\xdc\x0d\xff\xfa\xca\x27\x77\x3b\xae\xdf\x7d\xfb\xdd\xb7\x37\xec\xfb\x77\xfc\x8b\xd7\x32\x8f\x4f\xaf\xcb\xb6\x30\xae\x70\xf5\xfb\x76\xf8\x58\x52\x43\xd5\xff\xfe\xf9\xe2\x9d\xbb\x3f\xfb\x61\xdd\x2b\x02\x2a\xaa\xfd\x5a\x71\x3d\xf5\xd4\xd3\xe7\x76\x3b\x7a\x07\x90\xbb\x80\x09\x52\x4d\x91\xd8\x22\xc6\xc2\xc0\xb2\xd3\x13\xd9\xf9\x76\xf8\x12\x80\xec\x22\xa4\xdc\x8e\xa0\xa5\x77\x15\x52\x81\x54\x22\x4d\x88\x01\xc1\xd3\x82\x1e\x1f\xb0\x72\xc8\x05\x88\x56\x0e\xe0\x44\x0f\x4e\x14\x27\x82\x93\x3c\xf6\x13\xc5\x89\x63\xdc\x8e\x54\x51\x15\xc7\x12\xb2\x6f\x47\x76\xe0\x24\x55\x25\x54\xe5\x9e\x81\xa8\x2a\x61\xe5\x92\xb1\xc3\x2c\x4e\x06\xa7\x66\x7c\x8b\x2c\x4e\x06\xa7\x79\x54\x15\x71\x0a\x38\xdd\x61\x3f\x45\x9c\x02\x4e\xaf\xa8\xaa\xe2\x54\xf6\xc7\x15\x6c\xa8\x8a\x54\x41\xf2\x3e\xa0\xae\x89\xd5\xd4\xc5\x80\x4d\x36\xb1\xda\x56\x63\x51\xd8\xc5\xea\x3a\xa4\xe6\x00\x89\xd5\xc9\x4a\x3c\x91\x53\xac\x93\xac\x1c\xd1\xdc\x53\xac\x93\xac\xe2\x50\x38\xc4\x1a\x64\x95\x9e\x00\x89\x35\xc8\xaa\x19\x85\x53\xac\x49\x56\xcb\x1e\x90\x58\x73\xaf\xdb\xe1\xbb\x47\xe1\x44\xc5\xfd\x23\xa4\x08\xd6\x52\xe1\xe2\xe1\x39\x87\xb5\x96\x0a\x17\x59\xae\x62\x13\x26\x96\x91\xe5\x0b\xd6\x32\xb1\x8c\xac\x10\x50\xb8\xc5\xda\x64\xc5\x80\xe5\xb7\x58\x7b\x6e\x40\x0d\x85\x7b\x89\x75\xdf\x44\xb8\x5c\x87\x63\xe1\x70\x2c\x4c\xb5\x03\x62\xe1\x70\x64\xe5\x04\x96\x64\x3e\xa8\xe0\x50\x62\x01\x24\x96\xc4\x58\xa0\xfd\x21\x35\x0e\xa9\xb1\xf6\x08\x48\x2c\xca\x31\x34\x28\x74\x48\x8f\x83\x7a\x0c\x3d\x3b\x40\x62\x45\x8a\xd6\x41\xa3\x43\xfa\x1b\xd4\x5f\xf4\x68\xce\x90\x00\x47\x92\xb4\xd1\x9c\x21\x05\x0e\x2a\x30\x06\x34\x67\x48\x82\x83\x12\x8c\x11\xcd\x19\xd2\xe0\xa0\x06\x63\x42\x73\x86\x44\x38\x28\xc2\x98\xd0\x9c\x21\x15\x0e\xaa\x30\xe6\xda\x00\x89\x45\x15\xc6\x92\x50\x28\x15\x0e\xaa\x30\xd6\x98\x01\x89\x45\x15\xc6\xda\x51\x28\x15\x0e\xaa\x30\xb6\x8e\x16\x4a\x85\x83\x2a\x8c\x3d\xa3\x50\x2a\x1c\x54\x61\x72\x30\xf4\x90\x0a\x07\x55\x98\xbc\x47\xa1\x54\x38\xa8\xc2\x14\x1c\x5a\x28\x15\x8e\x31\x2b\xa0\x82\xc2\x31\x1b\x21\x16\x46\x18\x6d\x48\x98\x83\xc2\x4c\x91\xcd\x91\x30\x07\x55\x98\x12\x9b\x23\x15\x0e\xaa\x30\x65\x36\x47\x2a\x1c\x54\x61\xca\x6c\x8e\x54\x38\x2c\xfb\xdb\x91\x0a\x9b\x63\x39\x08\x0a\x7c\xa2\xa0\x48\x88\x6b\x95\x8e\xad\x4a\xab\x83\x5a\x4d\x35\xe1\xd0\xa4\xd5\x41\xad\xa6\x16\xb1\xbc\xb4\x3a\x28\xcc\xd4\x7a\xbd\x5c\xa7\x84\x39\x29\xcc\xd4\xbb\x07\x44\xd6\xa4\x30\xb3\xcb\xe9\x72\x9d\x12\xe6\xa4\x30\xb3\x47\x6e\x4e\x09\x73\xfa\xf3\xbc\x1d\x39\x78\x4f\x68\x10\x62\x61\x08\xe1\x72\x9d\xd2\xea\xa4\x56\x73\x44\x57\xa7\xb4\x3a\xc3\x44\x61\x44\x57\x67\x98\x43\xd0\x60\xa1\x27\x34\x09\x71\xad\xc4\xe5\xa5\xe8\x19\x8b\x03\x84\x38\x9f\xb1\x70\x2d\x8a\x3c\x27\x74\x62\x4a\xe4\x33\x8e\x76\x3b\x72\x0e\x84\x46\x17\xd4\x01\x65\xae\x35\x4e\x41\x27\x21\x47\x88\x9b\xa0\x3b\x72\x46\xce\x4e\xb9\x63\xa6\x9c\x6f\x47\x2e\x01\xac\x94\x8b\xa0\xc2\x27\x66\x42\x95\x10\x37\x51\x12\x0b\xb5\x09\x7a\x28\x97\x06\x48\x1e\x9a\xf4\x50\xae\x18\x07\x53\x1e\x9a\xf4\x50\x6e\x11\x9d\x90\x87\x66\xd1\x3c\x88\x11\x90\x58\x65\xf0\x38\x50\x57\x30\x3f\xae\xb3\xac\x8a\x0e\xe2\x14\xcb\x6a\x42\x4c\xe3\x50\xd8\x9d\xb5\x6f\x47\x71\xb1\x70\x5c\xff\x3a\x62\xff\xdf\xd4\x9d\xc5\xf4\xf0\xad\x55\x78\xf2\xb2\xeb\xd4\xd0\x88\xb5\xe1\x0b\xcb\xaf\x53\x53\x23\x36\xca\x41\x86\x9d\x1a\x1b\xb1\xb3\x0b\x72\xec\x6c\x2b\x62\x22\x38\x87\x5a\x59\x76\xf6\x84\xb3\xe8\x3c\xb1\x9e\x4e\x41\xe7\xed\x28\x98\xdb\xb3\x27\x1e\x45\x2f\x03\x5b\xe7\x77\xee\x85\x7a\xa0\xd5\x8b\x83\xc0\xa7\xac\x3e\x3b\x86\x6a\x71\x19\xed\xeb\x68\xd2\xfd\xa3\xb8\x28\x88\x6d\xe8\x36\x01\x35\x2e\x6f\x8b\x10\x47\xac\x47\xb8\x4c\x65\xc4\x64\x46\x14\x9f\xd1\x77\x65\xc4\x3c\x71\x55\x28\xc1\x63\x13\x27\xef\x0a\xfa\x28\x1e\x96\x9a\x27\x2f\x0b\x93\x49\x52\xa2\xc3\xd7\x56\x92\x4c\x26\x49\x61\x46\x4c\x25\xc9\x1c\x62\x61\x1a\x4f\xc5\xc6\x64\x6c\x94\x84\x69\x3c\x15\x1b\x73\x6a\xf4\x63\x1a\x4f\xc5\xc6\x64\x6c\x94\x82\x69\x3c\x15\x1b\x93\xb1\x51\x0a\xa6\xf1\x54\x6c\x4c\x06\x42\xa9\x98\xc6\x53\x81\x30\x19\x08\xa5\x61\x1a\x4f\x05\xc2\x64\x20\x94\x4e\xdd\x28\x10\x26\x03\xa1\x3a\x4c\xe3\xa5\x40\x58\x0c\x84\xea\x30\x8d\x97\x02\x61\x31\x10\xaa\xc7\x34\x5e\x0a\x84\xc5\x40\xa8\x01\x96\x5a\x0a\x84\x45\xf7\xd7\x88\x69\xbc\xe4\xfe\x45\xf7\xd7\x84\xec\x5a\x72\xff\xa2\xaf\x6b\xaa\x28\x94\xaf\x57\xd4\xfd\xa6\x64\x40\x62\xd1\x8b\x95\x9a\x58\xf2\xe2\xa2\xcb\x6a\x45\xb8\x2c\xb9\x6c\xd1\x65\x95\xd2\x5c\x72\xd9\xd2\x5d\xa9\x61\xce\x2e\xb9\x6c\xd1\x65\x95\xc2\x5c\x72\xd9\xa2\xcb\x1a\xac\x71\x5d\x72\xd9\x2a\x88\xa0\xe6\x30\x67\x57\x61\x04\xe9\xa3\x55\x28\x67\x95\xb9\x08\xe9\xe2\x85\xae\x2e\x19\x64\xd5\xda\x01\x75\x42\xf5\x14\x74\xde\x8e\xd6\x5a\x27\x34\x04\xa1\x50\xfd\x92\x8b\x16\x5d\xd4\x02\x26\xd5\x92\x89\x16\x4d\xd4\x22\x26\xd5\x92\x87\x16\xa7\x5e\x4b\x98\x54\x4b\x16\x5a\xb4\x42\x63\x22\x2c\x59\x61\x51\xd1\x2d\x23\x53\x97\x14\xbd\xa8\xe8\x56\x0a\xf6\x25\x45\xaf\x13\x29\xd1\x2a\xa2\x71\x9d\x0c\x09\x7d\x34\xcf\xe6\x9c\xa6\x42\xae\x55\xb9\x7b\x29\x7a\x51\xd1\xad\x21\x07\x97\x14\xbd\xc6\x59\xf8\x1d\x23\xa1\x4a\x88\x85\xad\x83\x25\x91\x2f\x8a\xbc\x75\xcc\xb3\x25\x91\x2f\x8a\xbc\x3b\x0c\xfb\x25\x91\x2f\x8a\xbc\xd3\x8f\x4b\x22\x5f\x6b\x0f\x40\x18\xf6\x6b\xed\x29\x68\xa2\x90\xfb\x5a\x7b\x09\x42\x61\x20\x24\x2b\x2c\x5a\xa1\x07\xcc\xb3\x25\x2b\x2c\x5a\xa1\x47\xa4\xda\x92\x15\x16\xad\xd0\x13\x02\x6c\xc9\x0a\x8b\x56\xe8\x19\x03\xc7\x64\x05\xa3\x15\x7a\x41\x7c\x99\xac\x60\xb4\x42\x2f\xa5\x5d\xae\x26\x2b\x18\xad\xd0\x2b\xc6\x92\xc9\x0a\x46\x2b\xf4\x16\x50\x28\x2b\x18\xad\xd0\x3b\xde\x18\x4c\x56\x30\x5a\xa1\x77\x0c\x09\x93\x15\x2c\xea\x8a\xee\x30\x25\x4c\x5e\x30\x7a\xc1\x3b\x8f\x50\x33\x99\xc1\x92\x78\x01\x73\xc2\xe4\x06\x4b\xe2\x05\x44\xab\xc9\x0e\x96\xc5\x8b\x38\x13\x93\x1f\x2c\x8b\x97\x90\x75\x26\x43\x58\x11\x2f\x63\x7e\x98\x1c\x61\x9a\x06\xae\x78\xd4\x4a\xec\x76\x7f\x85\xa8\x2e\x01\x13\x4f\xd3\xc0\xd5\x82\x5a\x09\xd9\x34\x0d\x5c\x2b\xe8\xa6\x94\x6c\xed\x0c\xc0\x7a\x48\xc4\x22\x31\xd5\x76\xdc\x94\x4c\xf2\xb6\x5e\xf1\xd2\xe6\x1d\x5b\xd5\x6b\x11\xc6\xf7\x14\x57\x51\x2b\xcd\x9b\xde\x37\xbc\x83\x04\x4d\xa2\x37\xbd\x70\x78\x5f\xb1\x9e\x54\x6f\xe7\xfd\x1d\x07\xa3\xc3\x24\x68\x1b\xf9\x04\x16\x91\xe4\x36\xf2\x20\xa6\xda\xc8\x83\x94\xca\x6d\x6c\x47\x0c\x3a\xb4\xb1\xef\x98\xd7\x9e\x0b\xb1\x20\x8c\xb5\x09\x42\x37\x69\xdf\xf4\xc2\xe2\x13\xa4\x68\x12\xbf\xcd\x85\x37\x16\x9f\xa1\x45\x9b\xb0\xe3\xfd\x03\xdf\x2d\xfe\x76\x50\xe7\xf4\xfb\x39\x6d\x93\xa6\xb5\xa9\xa7\x15\xbc\x00\x9a\x3c\x64\x4b\x4f\x2b\x3c\x41\x99\xc8\xd6\xd9\x81\x55\x9e\xe0\xc2\x7d\xed\x6a\x4b\xb5\x15\x5e\x36\x79\xc6\x4c\xb5\x8d\x42\x97\x69\xcc\x8c\x1d\x6a\x54\xba\xd9\x10\x36\xf0\x1e\xc8\xbb\xa8\x19\xe6\xea\xd5\x4c\xeb\x31\x5e\x4d\xee\xb2\xad\xf5\x3a\x4f\x5f\xf6\xb2\xad\x77\x48\x87\xd3\xdf\xf2\xd7\x76\xb8\x5e\xf9\xe0\x7d\x03\xc6\xfb\x95\x3e\xb0\xe7\x4e\xac\x12\xd3\x2b\xa9\xc7\x09\x6e\x19\x71\x3b\xdc\x22\x7d\xf0\x8d\x18\xaf\x91\xfa\xc0\x09\x7a\x62\x93\x98\x9e\xcb\x4b\xe9\x96\x63\xb7\x2f\x81\x58\x8d\xc0\x4a\x14\x76\xea\xbb\x75\x62\x43\x18\xbf\x6f\xe1\x73\x3d\xef\x21\xfb\xfe\x23\x43\xf4\x15\x98\xf6\xe2\xf5\x8c\x88\x79\xb2\xe5\xf7\x1d\x4a\x05\x96\x22\x6a\x43\x69\xc2\x1a\xb0\x0a\xc5\xee\x50\x3a\x31\xad\x97\x2a\x79\x5a\x2f\x4c\xee\x2f\xe1\xbd\x66\x87\xc9\xfd\x05\x3d\x23\xc3\x29\x5b\x69\xb1\x63\x4d\xc4\x1a\x31\xd8\x06\x1f\xa6\x3d\xa3\x07\x4a\x90\xad\x04\x09\x05\xd3\x67\x2b\x41\x76\x2a\xec\x7d\x4d\x19\x58\x61\xef\x95\x2a\xa1\xe2\x8d\x64\x2b\x55\x76\x1a\x7c\x46\x63\x5f\xd2\xc8\xc2\xb2\xf6\x52\x88\xa9\x16\xe9\xec\x43\x0b\xe4\x31\x9e\xb7\x12\x29\x74\x87\xe7\x2a\x91\xb6\x12\x29\x74\x87\x1e\x28\x91\x76\xbe\xf3\x70\x17\xda\x4a\xa4\x5d\x78\x46\xd1\x15\xf4\xa5\xe8\x8c\xf8\x81\x5a\x61\x89\x98\xee\x9d\x0e\x17\xf2\xad\xe4\xda\xf7\x7b\xac\xe7\x99\x2b\xb9\xf6\xfd\x1e\xcb\xeb\xdc\x56\x72\xed\xfb\x3d\x36\xe0\xb6\xb0\x95\x5c\xfb\x7e\x8f\x8d\xd4\x86\x92\x6b\x2b\xa5\x62\xe2\xf9\x2a\xa5\x36\x83\xc9\xc7\xcc\xf3\xed\xb5\x0a\x23\x2f\x37\xf2\x54\xdb\x71\x7c\x3e\x66\xdc\xa7\x76\x9f\x49\x58\x12\x2f\x13\xcb\xc2\x32\x7f\xf5\x62\xff\xfa\x2c\xc2\x8a\x7e\x09\xf3\xc4\xf4\x8c\xe5\x89\xe9\xb9\x2b\x08\x53\x2d\x3c\xb8\xfb\x52\xad\x7e\x8d\x71\xf9\xb7\xd7\x7f\xfc\xff\x87\xf3\xf9\xf2\xf9\xf7\xc6\xf9\xe9\xe5\xc5\x1e\x5f\xf9\xdb\x26\x7f\x54\x3c\x96\xed\x87\x47\xfb\xfc\x3b\xe9\xf3\xd3\x33\xaa\xf8\xdf\x7f\x02\x00\x00\xff\xff\xff\x1c\xad\x3d\x53\x15\x00\x00"); +func _baf ()(*asset ,error ){_dgea ,_cdab :=_egf ();if _cdab !=nil {return nil ,_cdab ;};_dfda :=bindataFileInfo {_ee :"Adobe-Japan1-7",_ffd :2201,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491344,0)};_fee :=&asset {_da :_dgea ,_dc :_dfda };return _fee ,nil ; +};func _dcbc ()([]byte ,error ){return _gb (_befa ,"CNS-EUC-H")};func _cdac ()([]byte ,error ){return _gb (_daad ,"UniJISX02132004-UTF32-V")};var _efda =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xcf\x8e\x9b\x30\x10\xc6\xef\x7e\x8a\x39\x6e\x0f\x5b\x6c\xc0\xf9\x23\x45\x48\x15\x51\x55\x0e\x9b\x56\x65\xb3\xad\x54\xf5\x40\xec\x71\x6a\xa9\x31\x96\x81\x43\xde\xbe\x9a\x81\x50\xed\x01\xcd\xcc\x6f\xf0\x37\x1f\x63\xb2\xba\x39\x36\xc1\x8f\x90\x7d\x4b\xbd\x69\x71\x04\xe7\x83\x4d\x38\xf4\x53\x32\x08\x17\xbc\xfa\x20\x84\xca\xc1\x7a\x33\x3e\x4a\x0e\xe6\xd6\x45\x21\xb2\x73\xf0\xf5\xa9\x7d\x3e\xbf\x7e\x56\x9b\xe7\x2f\x30\x0d\xb8\x34\xea\xe6\xd8\xde\x87\x11\x6f\x4d\x70\x3d\x14\xb3\x80\x9d\xe2\x22\x02\x90\x7d\xc7\xab\x1f\xc6\x74\x87\xa7\x4f\xb6\xbf\xe0\x07\xb0\xe8\x88\x7f\x4d\x16\x93\x0f\x57\x78\xaa\x4f\xad\x5a\x71\x3b\xc5\xf8\x17\x6f\x18\x46\xd8\x32\xc3\x60\x39\x8a\xac\x7e\xe9\xe2\xa9\xbb\x21\xbc\xb7\xf3\xc6\x6d\xee\xbe\x61\x1a\x7c\x1f\x40\x7d\x94\x72\xff\x1f\xbf\xde\x23\x82\x5a\x54\x7e\x9e\x9b\x23\xfc\x52\xa0\x24\xe4\x5a\xef\xf3\xdf\x0b\xff\xf1\xd2\xdb\xf5\xad\xcd\xec\xdf\x78\x6b\xfe\x74\x49\x1c\x72\xa9\x8a\x0a\x54\x2e\x39\x2d\x29\xcd\x29\xcd\x75\x05\x4a\xee\xc5\xc1\x61\xe9\x2a\x50\xc5\xb6\xd4\xe2\xe0\x9c\xbe\x50\x51\x72\x6a\x29\xd5\xf4\x1d\x0f\x39\xb1\x5d\xe5\x53\x17\xae\x28\x0e\x85\x94\xbb\x0a\x28\xec\x2b\x50\x5a\x32\xe9\x66\x42\x52\xe5\x86\x89\x99\x09\x29\xea\x92\x09\xce\x84\x66\xeb\x1d\x11\x25\x99\x28\x45\xa7\x72\x26\xe5\x4c\xc8\x6a\xb1\x23\x4b\x3c\xcb\x39\x9e\x55\xc8\xc5\xd9\xec\x84\x0b\xba\xda\x75\xd9\x66\x4a\x09\xc3\xc8\x17\xcb\xdb\xa4\x0d\xf9\x80\xeb\xdf\x13\xfb\x48\xa7\xf8\xf9\x17\x00\x00\xff\xff\x60\x3a\x39\x2b\x69\x02\x00\x00"); +func _gedb ()([]byte ,error ){return _gb (_bgf ,"Adobe-GB1-0")};var _bcg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x5b\xab\x26\xd7\x71\xf7\xef\xf7\xa7\x78\x2e\xfd\x5e\xf8\x55\xaf\x63\xad\x82\x61\x83\x91\x2c\x22\x07\xc7\xc1\x8a\x93\x40\xc8\x45\x1f\xaa\xc5\x40\xb4\x67\x98\x19\x41\xfc\xed\x43\xfd\xfe\x8f\x95\x44\x04\x64\x30\xa5\xf9\x3f\xd5\xd5\xb5\x6a\xd5\x71\xad\xde\x5f\x7d\xfd\xdd\x37\xdf\xbd\xbd\xff\xf2\xf8\xea\x1f\x3f\x7d\x38\xbf\x8f\x2f\x8f\xfb\xfd\xdb\xf5\x29\x3e\x7f\xf8\xe9\xd3\x19\x8f\x23\x7e\x78\xff\xf6\xf2\x52\xea\xe3\x7a\x7f\x7e\xf9\xdb\x3f\x21\xe7\x8f\xfb\xc7\x97\x97\x7c\xfe\xfb\xbf\x7e\xfe\x12\x3f\x7e\xf7\x76\x7f\x78\x34\xf1\x5d\x3f\x7d\x7c\xf2\x3e\x1e\x5f\xfd\x39\x7e\x78\xff\xf9\xcb\xa7\xbf\x3e\x7e\xf3\xbb\xeb\xc3\x11\xff\xef\x71\xc5\x9d\xf8\x9f\x3e\x5d\xf1\xe9\xfd\xdb\x0f\x8f\xdf\xfc\x61\xff\xb8\xbf\x95\x9f\x7f\xf8\xfe\xa7\x8f\x1f\xff\x23\x7e\x8c\xb7\x2f\x8f\x0a\x16\x6f\x17\xf4\xe5\xab\xaf\xff\xb8\x7f\xfc\x87\xfd\xc7\x78\x7c\xf5\xfb\xff\xfc\xf2\xdb\x3f\xff\xfd\xf7\x7f\xf8\xed\xdf\xf1\x13\xbf\xfc\x73\x7c\xfa\xfc\xfe\xc3\xdb\xa3\x94\xff\xbf\x6d\xf3\xbf\xf1\x7f\xfa\xeb\xc7\x78\x94\xa7\x88\xbf\x7c\xf7\xcd\x9f\xee\xfb\x73\x7c\x79\xd8\x26\x96\x7f\xfd\xcb\x77\xdf\x3c\xfe\xad\x3c\xca\xf6\xa8\xa3\xb5\xfa\xef\x4f\xce\x7f\xf9\xe3\x87\x2b\x1e\x62\x7a\xe9\x5a\xd0\xf9\xe1\x8a\xcf\x1f\xf7\x33\x3e\xed\x6f\x3f\xc4\xcb\xe3\xf1\x6e\xdb\x5e\x1f\x8f\xc7\xbb\xb5\xbd\xe6\xbf\x56\xe9\xdb\xeb\xe3\x9d\x7f\xfb\xed\xd7\xfc\xfb\x77\xfa\xf5\x9b\x6f\xf9\xd7\xef\x37\x7e\xfd\xf6\xeb\xfc\x35\xde\xae\x5f\x48\x7b\x29\x7a\xc9\xdb\x87\x2f\x57\xdc\xc2\x90\xff\xae\xdc\xaf\x8f\xda\x4a\x3e\xf3\x3f\x7f\x7c\x29\xdb\xf6\xd4\xeb\xfd\xf5\xe4\xaf\xc9\x6f\x91\xaf\x7d\x3c\x78\xe8\x6f\x4a\xad\x02\x3c\x5b\x4b\x68\x09\x5a\x2b\x21\x9f\x40\x2e\xc8\x5f\x1f\xd6\x6d\x01\xed\x40\xfb\xf9\xfa\x78\xd8\x96\x5c\xb5\xdf\x09\xd5\x91\x0f\xda\xda\x12\x9a\xc8\xaa\xe6\x09\x39\xd0\x2a\x40\xbe\xbf\x3e\x1e\xab\xf0\xa0\xeb\xc1\xbb\x24\xd4\xeb\xcb\xbb\xd5\xa4\x57\x43\x2f\xaf\x23\x21\xe9\xd5\x7c\x26\xb4\x52\x89\xa6\x07\xdb\x31\x5f\x1f\x65\x2b\xb9\xa0\x76\x08\xba\x80\x5a\x3e\xd8\x25\xab\xa7\x2e\x65\x1b\x9e\x90\x09\x4a\xf1\x65\xf3\x7c\x63\x97\xf8\xee\xe5\xf5\x51\xca\x66\x2f\xef\xd6\xd0\x83\x03\x25\x6a\x4b\xae\x21\x2e\xc8\xa3\xb1\xa0\xa1\x05\x0d\x87\x0b\x7b\x0d\xe9\x35\xae\x2b\xb9\x2a\xb2\xae\x00\xba\x4f\x1e\x4c\x55\xa7\xc4\x4f\xc4\xf7\x9a\xe2\xa7\xc4\xcf\x54\xe2\xd1\x57\x6a\x3f\xbd\x0a\xaa\x88\x17\xd4\x04\xe5\x83\x63\xcb\x4d\x9b\xbb\xb8\xe2\x62\x87\x72\x8d\x26\xf1\x36\x12\x1a\x23\x1f\xb4\x81\x5e\x66\x23\x21\xc4\x9b\x85\xa0\x78\x7d\xac\x56\x53\x96\x49\x09\x5b\xf7\xeb\xc3\xe6\x96\x86\x36\x17\x94\xe4\x61\xb3\x02\x15\x41\x05\xa8\x00\x55\x41\x15\x08\x25\xa4\xaa\x79\x7a\xce\xac\x1d\x68\x17\xb4\xc3\x25\xf1\x87\xa0\x33\xb9\x70\xcc\x25\x13\x42\x4a\xc1\x01\xd6\x8e\x12\x10\x93\xaf\xae\x1d\x25\xd6\xb1\xc1\x95\x86\x5e\xc7\x13\x2a\xaf\x0f\x6b\x6d\x03\xaa\x82\x56\x72\xf5\x0e\xe4\x82\xd0\xab\x09\x42\xaf\x15\x47\x72\x8d\x5c\xe3\x8a\x53\x90\xf4\x42\x89\xb4\xf0\xbb\xb5\xee\x7c\x63\xc5\xf6\xeb\xd6\x1b\x93\xd8\x6c\x13\x48\x6f\xbc\x1d\xae\x05\x24\xf1\x49\x6c\x36\x54\xbd\x0f\x41\x67\x72\x95\x84\x5c\x9b\xe6\x7d\x01\x39\x90\x0b\x92\xaa\x0b\x08\x59\x3e\x5a\x72\x55\xb8\x46\x17\xd4\xe1\x12\x34\x04\x59\x72\xf5\x0d\x68\x09\x5a\xc9\xf5\x84\x24\x7e\xec\x70\x75\xa0\x43\x10\xcb\xee\x05\x88\x65\x3b\x31\x54\x3b\x4a\xcc\x22\x88\x65\xf7\x06\xc4\xb2\x9d\xb0\xaa\x03\x48\xce\xe4\x0b\xf1\xab\x02\x49\x7c\x12\x9b\x7a\xe3\xc2\xd0\xbe\x8f\xe4\x72\xa0\x7d\x0a\x9a\x70\x0d\x20\x13\x64\xb9\xb5\xf8\x97\xef\x5a\xd0\xae\x05\x4d\x20\x2d\x28\x83\xaf\xc8\xa3\x5d\xc1\x07\xb1\xd9\x31\xf4\x85\x7f\xf9\x9d\xc6\x69\x06\x74\x4b\xd6\x2d\x59\xac\xf1\x96\xac\xdc\xb4\xd2\xd9\x6d\xd7\xa6\x41\x6c\x76\x94\xb8\xa5\x3d\xfb\xd8\xc9\x85\xbb\xf6\x11\x52\x3a\xd9\x64\xef\x45\x10\xf6\x1a\x1b\x10\xf6\xda\xa7\xb8\x52\xd6\x2e\xab\x42\x66\x77\x1e\x9c\x4f\xae\x54\xb5\xb3\x1d\xfb\x5c\x82\xd6\xeb\x63\x6c\xac\x71\x9f\xa8\xba\x63\xfb\x8e\xf6\xbb\x6c\xbf\xaf\x9e\x90\xf1\xc6\x35\x04\x0d\x94\x40\xd6\x9a\x82\x58\xa3\xa1\xbd\x76\x68\xd7\x0e\x11\x0a\xbb\x76\x68\xcf\xd8\x2e\x9d\x7d\xdc\x15\xdb\x10\x9b\xec\xf6\xee\x5d\x50\xee\x63\x27\x3d\xee\x2e\xf1\x49\x86\xe3\xf7\xbb\x9b\x20\x87\x4b\x0f\xee\x82\x88\x8e\xd1\x81\xa4\x44\x26\xf4\xf2\xb4\xc4\xa9\x05\x9d\x64\x00\x52\xda\x7e\xca\x5e\x49\xc6\xf3\x8d\xa7\xec\x75\xe6\x82\x06\xf1\xb8\x9f\x92\x75\x6a\x41\x82\xb4\xa0\x33\xc5\x0f\x3c\x67\xbf\x24\x3e\xc9\x9c\x54\x98\xfd\x92\xf8\xc8\x65\x0f\xd9\x2b\xb4\xec\xd0\xb2\xd1\x2b\xb4\x6c\x1c\x60\xd8\x46\x05\xff\x5b\xdd\xfd\xbf\x4a\xf1\x3a\xe4\x1f\x47\x06\x75\x19\x64\xf5\x43\x41\x0d\xb1\x39\x16\x10\x6a\x1f\x23\xf7\x74\xe2\x58\x87\x52\x38\xc4\x26\xc5\xec\x50\x91\x3d\xd8\xf9\x49\x12\x3c\xb4\xf3\x07\xd9\xf3\x29\x4b\xd9\xf3\x50\xf6\x9c\x1b\x50\x11\x94\x8e\x35\xa9\x49\x87\xe2\xe9\x50\x3c\x4d\x41\x38\xd6\x71\x36\xb8\x78\xe3\xd9\x05\x75\xaa\x4d\x07\x1a\x82\xd2\x04\x26\x25\xce\x4b\xd0\x85\xac\x0a\x44\x20\x1e\x91\x5b\x63\x6c\xcd\x11\x5a\x63\xb0\x35\xb3\x01\xb1\x35\x47\x26\xd4\x62\x13\x2e\x25\x54\x88\xcd\xc9\x1b\xef\x26\x28\x53\xa5\x19\x0f\x2a\x5c\x21\x36\x27\x56\x55\xda\x85\x14\x35\x25\x87\x22\xf8\x50\x04\x3f\xc5\x3f\xdf\x88\xf6\x78\xf7\xa9\x1d\x3a\x33\x44\x8b\xad\x06\xd4\x04\xb1\xf3\xd3\x80\xb0\xc4\x99\xa9\xb6\xd8\x02\x1a\x53\x10\x89\x8b\xfa\x76\x0e\x1c\xfe\x9c\x69\xc2\xc5\x3e\x9e\x53\x0f\x4e\xf2\x35\xb9\xec\x9c\x43\x50\x2a\xb1\xea\x06\x74\x09\xc2\x84\x26\x08\x13\x9e\xd9\xc1\x94\x45\xee\x3f\xad\x08\x22\xb3\x58\x01\xaa\x82\x78\x23\xb5\xf2\x34\xbd\xd1\x78\xa3\xb1\x46\xd3\x1b\xb3\x3d\x2b\x8b\xed\x38\x6d\x17\x94\x5e\x58\x96\x64\x1d\x82\xd2\xbf\xd4\x9e\x9d\xf2\xaf\x73\x21\x9e\xe0\x39\x97\xc4\x2f\x89\xe7\x8d\x4a\x36\xa7\xa3\x2a\xc1\x73\xaa\x6b\x80\xd8\xc4\x73\x4e\x75\x0d\xa7\xe7\x3e\xae\x29\xc8\x05\xb1\x8f\x36\x80\xa4\x97\x67\x56\x5f\xd2\xde\x65\x09\x27\xab\x93\xb8\x4e\x75\x0d\x67\x16\xff\xb2\xc8\xea\xa7\x8a\x3f\xc4\xe6\x13\xd2\x3e\x1e\x2c\xc8\x05\x3d\x1f\x24\xac\xe8\x70\x4f\x25\x9b\x13\x9f\xf0\x92\xb6\xbf\xe4\x13\x17\x51\xeb\x18\xfa\x52\xd4\x5e\x8a\x5a\x1a\xaf\x4b\x51\x7b\xe1\x13\x8e\x33\x5d\xf2\x89\x4b\x3e\x81\x17\x5e\xf2\x89\x8b\xdc\xef\x94\xbc\x4b\xb9\xff\x52\x45\xc5\xf6\x97\x72\xff\x95\xdb\x51\xb7\x2d\x2d\x71\x69\x3b\x20\x63\x91\x76\x2f\x3b\x05\x45\x72\xd1\x3f\x5d\xda\xa1\x2b\xd3\x76\xdd\x68\x70\xae\x75\x09\xc2\x99\xa4\xd7\xc2\x84\x57\xa6\xf0\xba\x51\x34\x2e\xa5\x70\x88\x4d\xfc\xfe\xf2\x21\x68\x25\x17\x69\xf7\xd2\x0e\x5d\xda\xa1\x85\x78\xed\xd0\x95\xd9\xb3\x6e\x24\x98\x4b\xd9\x13\x62\x93\x7e\xf3\xba\xb4\xa0\xcc\x98\xb5\xd0\xfe\x5f\x21\xf1\x41\x4d\x5a\x82\x64\xaf\xcc\x00\xb5\xe0\x98\x97\x32\xc0\xa5\x0c\x40\xa4\x5d\xca\x00\x57\xee\x50\x2d\x94\xe2\xd0\x0e\x45\x1f\x09\x0d\x41\x53\x90\x6c\xbf\x80\x4c\x50\x2e\xa8\x90\x01\x42\x5d\x56\xa8\xcb\x5a\x7a\x70\x17\xb4\xc3\x25\xe8\x10\x44\xea\xa0\xda\x44\xc7\xf6\x91\xdb\x59\x0b\x3e\x11\xea\xb2\x42\x5d\x96\x0b\x92\x78\x76\xa8\x60\xaf\xd0\x0e\xc5\x91\xaa\x56\xda\xff\x38\xa4\xea\x81\xaa\x2e\x48\xaa\x9e\x70\xe1\xbe\x71\x8a\xeb\x14\x57\x03\x7a\x72\x59\x76\x0d\xb4\x08\x71\x4a\x89\x2b\x0d\xad\x96\x2a\xae\x21\x08\x43\x3f\x21\xc9\xba\x72\x8d\x8d\x46\x35\x2e\xad\xf1\xa2\xfb\xa3\x34\xc5\x85\xe7\x04\x86\x6e\x25\xa1\x5b\x86\xbe\xd3\x5e\xb5\xd1\x52\xdd\xb2\xd7\xad\x50\x70\x41\xc8\xba\xb3\x2b\xad\x8d\x3a\x74\xab\x2b\x85\xd8\x74\x41\x28\x71\x63\x1c\xf5\x75\xb7\x8c\x73\x67\x07\x52\x3b\xc1\x77\xab\x03\xb9\xe5\xbe\x2e\x2e\xdc\xf7\xce\x6c\x52\x3b\xd3\xc5\xad\x6c\x72\xd3\x94\xd8\x56\x7e\xbd\x14\xdf\x72\xf8\x3b\x27\xa8\xda\x19\x18\xee\xbd\x09\x92\x90\x06\x24\xae\x9c\x34\x6a\x27\xe3\xdd\x9a\x34\x20\x66\x1b\x6f\x57\xb2\xb9\x8f\x34\x54\x27\x06\xee\xe3\x12\x74\xc1\x85\xed\x0e\xa9\x7d\xf1\x46\x72\xd9\x7d\xe9\x8d\x97\xde\x88\xf8\x4b\x6f\xbc\x90\xc5\x6e\xdd\xda\x07\x88\x19\x5d\xe5\xad\xd6\xf6\x8e\x34\xc1\x90\x12\x21\x25\x92\x98\xb1\xa7\xb7\x7a\x96\x9b\x0d\x1c\xd9\x68\xba\x0e\x1c\x7c\x23\x06\x46\xce\x36\xbe\x11\x03\x22\x66\x4f\xae\x1d\xc8\xd2\xbb\x47\x87\xcb\x96\xa0\xf4\x6e\xcb\xad\xf1\xcd\xf4\x20\x1b\x38\xd2\x6f\x7d\x5b\x12\x9f\xc4\x2c\x47\x73\xdf\x18\x94\x7d\x5b\xbc\xd1\x11\xbf\xf4\x20\x07\x0b\x56\xf4\xa0\xde\x98\x99\xbc\x32\x7d\xfa\xb6\x4b\xd6\x2e\x59\x0d\x48\xb2\x0e\xb8\x1a\xe2\x4f\x71\x9d\xe2\xea\x40\xe2\xca\xd5\x57\x7a\x0b\xdf\x68\xd5\x44\xcc\x0a\x0b\x22\xff\xf8\x16\xa9\xfd\x94\x5e\x71\x03\xdd\x92\x35\x13\xba\x25\xeb\x9e\xaf\x8f\xfa\x5c\x50\x0e\x0f\x49\x64\x09\x54\xbd\xb5\x20\x0c\x6d\x39\xbf\xf9\xf3\xdc\xa7\x90\x92\x2c\x7b\x75\x2f\xa4\x24\x11\xb3\xac\xf4\x5e\x48\x49\x22\x93\x9e\xc7\x4b\xc7\xd0\x85\xcc\x62\xac\xb1\x8c\x27\xc4\x1b\xab\x20\xde\x58\x66\x46\xb0\x65\x0a\xf7\x32\x0f\x41\x07\x5c\x15\xe8\x14\x74\x25\x57\xb6\x2e\x5e\x68\x24\x44\xec\xa9\xd7\x64\xd9\xc5\xe0\x32\xf4\x32\x71\x99\xb8\xd2\xaa\x3a\x20\x72\x0e\x88\xaa\x2d\x54\xd5\x3e\xea\x80\xc8\x72\x5a\x77\x1d\x10\x79\x39\xd0\xcb\xe1\x3a\xa4\xd7\x21\xbd\x04\x49\xaf\xec\xd5\x2b\x8d\x84\x97\x53\x5c\xa7\xb8\x50\xf5\x14\xd7\x95\xc9\x66\x4d\x16\x74\x49\x7c\x12\xb3\xca\xb2\x2f\x3d\x18\x19\xa2\x14\x7f\x2f\x51\x04\x11\xa2\x95\xed\x20\x3a\xbc\x64\x8f\x59\xd7\x62\x41\xcc\xf4\x22\x66\x8d\x65\x87\x96\x9d\xd5\xa6\x2e\x69\x4f\xb5\xf1\x72\xe3\x39\xda\x8e\x7b\x08\x4a\xed\x7d\xc3\x84\xb7\x94\xa0\xb9\xb4\x26\x48\xda\xe3\x13\x34\x12\x5e\xe5\x13\x15\x9f\x70\x9c\xa9\xca\x27\xaa\x7c\x22\x0b\xb6\x57\xf9\x04\xa4\x3a\xfe\x55\xe5\x13\x55\x21\x4a\xd4\x56\x85\x68\xcd\x54\x5b\xbd\x4a\xd6\x29\x48\x0b\x32\x20\x16\x54\x87\xb8\x78\x70\x88\x8b\x31\xdf\x9a\x03\x61\x89\x4a\x20\x7b\x47\x55\xed\x76\x5d\x19\x69\x6e\xe8\xe5\x82\x9c\xe8\x10\x17\x7d\x9d\xd7\xcc\xa5\xd5\x1d\x25\xe8\x1a\x44\xcc\xba\x20\xad\xd1\x51\x02\xab\x56\x97\x12\x1c\xfd\x58\x36\x97\x5e\x5d\x4a\xa4\xe7\xb4\x0d\xab\x56\x79\x4e\x95\xe7\x74\x41\x7a\x30\x0b\x63\xdb\x64\xaf\x53\xe2\x29\x8c\xd6\x05\xc9\x84\x49\xda\x46\xfe\xaa\xa7\x4c\x78\x12\x43\x4f\xc8\x05\xf1\xc6\x8e\xbd\xe4\x85\x55\x5e\x88\x63\xd6\xf3\xf9\xc6\x33\xb9\x06\xcb\x3e\xa5\x2a\x23\x8e\x3d\x1f\x94\xa1\xaf\x05\x17\x0b\xba\x24\x3e\x49\x1f\xf8\x44\x95\xfb\xd6\x1b\x59\xd9\xf4\xba\x8e\x3c\x45\xda\x46\x1a\x6a\x1c\x19\x88\x98\x62\xbb\x71\x64\xe0\x2d\x3d\xa7\x95\xad\x00\x4d\x41\x5a\xb6\x1e\x34\x41\x27\x5c\x13\xe8\x12\x84\xaa\x68\xdf\xe4\x13\x2d\xab\x73\x2b\xe4\xd5\x46\x75\x16\x31\x1b\x88\x1f\x12\x9f\xae\xd1\x4a\x15\xf4\x7c\x90\xa4\xc0\x1a\x1b\x73\xa9\xb7\x39\x93\x8b\x18\x6a\x53\x4a\x24\x31\x1b\xed\x57\x4b\xb1\x37\x8e\x35\xbc\x4d\x47\x08\x2b\x99\xbb\x20\xe2\x7c\x60\x28\xa5\xb7\x96\xc9\xaa\x15\x5c\xa6\x99\x6c\xc7\x04\x64\xd9\xa1\x7a\x33\x19\xca\x30\x94\xac\x62\x5a\x49\x92\xb1\x9e\x5c\xd2\x31\x1d\xbe\x15\x89\x97\xc3\xb7\x9c\x6d\x5a\x21\xd9\x34\x66\x1b\x11\xb3\x1c\xf9\xbd\x2d\x19\x6a\x61\x95\x29\x48\x56\x49\x32\xea\x86\x09\x96\xac\x92\x4d\x49\x2b\xa4\xa4\xc6\xa9\x89\xc8\xe8\x32\x94\x4b\xbc\xa7\x93\x96\xc5\x1b\x5d\x96\x70\x9c\x74\xb0\xf3\xb4\xdc\xde\x32\x06\x5a\x59\xc8\x52\x0c\x40\xcc\x06\x6b\x3c\xb4\xcd\x59\x18\x5b\x25\xab\x37\x15\xc6\xa6\xc2\x38\x79\xa3\x0a\x63\xcb\xc6\xbc\x55\x72\x6c\xbb\x64\x2f\x75\x20\x93\x6d\xbe\xa4\x17\xae\x5c\x89\x81\x26\x57\x6e\x4a\xbb\x54\xd4\xa6\xb4\xdb\xb2\x11\x69\x1c\xfa\x79\xbb\xb4\xec\x24\x66\x13\x43\x87\x94\xc8\x52\xdc\xaa\x16\xa4\x52\xdc\xe8\xfb\x55\xf2\x5a\x68\x87\x22\x2d\x51\x15\x16\x21\x4b\x04\x96\x98\x7a\x50\x4a\xdc\xc8\x92\xed\x6f\xc9\x4a\x32\x97\xa3\x84\x92\x73\x23\xc4\x6a\x4e\x66\xae\x9b\x00\xef\x1d\xf1\x98\xb0\x2b\xa1\x42\x8c\x33\x6b\xef\x6a\x83\xfa\x80\x8b\x2c\xd5\x55\x77\xbb\xea\x2e\x85\xb1\xab\xee\x76\xfc\xab\xd1\xba\x74\xf9\x17\xc4\x2c\x47\x01\xef\xf2\x2f\x2e\x1a\x5a\xc3\x57\x75\xd1\xe0\x7d\x65\xa4\x34\x02\xb1\x2f\x71\x2d\x22\xc5\xc4\xa5\x37\x26\x99\x83\x14\xde\x55\x64\xbb\x8a\x6c\x4e\xd8\xde\x55\x64\x7b\xb6\xc6\xad\x4d\xc9\xba\x04\x11\xe7\xe4\xeb\x2e\xc7\xec\xd9\x33\xb5\x86\x55\x3b\xf7\x05\x22\x66\x39\x61\x7b\xa7\xe9\xf5\xbe\xa7\x7f\xb5\x25\xe8\x14\x84\x7f\x19\x96\xd8\x25\x3e\x49\x6b\x2e\xae\xa7\x78\xb2\x01\x4e\xde\x77\x1c\xa0\xe3\x5f\xcd\x81\xe4\x5f\x10\xb3\x9c\xb0\xbd\x5f\x7a\x63\xba\x49\xeb\xe4\xc5\x2e\x37\x81\x98\x69\xd3\x54\xc3\x7b\x96\xe2\xd6\xc9\xb1\x5d\xa5\x18\x62\x1c\xea\x78\x97\x03\x74\x76\xbb\xe3\x4c\xba\xbe\x11\x69\x9d\x35\x0e\x25\xd4\xd1\x51\x22\x27\x6c\x1f\x1c\xea\xf8\xc8\xbc\xd8\xb8\xdb\xf2\xa1\xbc\x08\x31\x8e\x7e\x7c\x70\xb7\x25\x32\x0a\x7a\x8d\x21\xf1\x03\xf1\x94\xbc\x31\x24\x7e\x90\x86\xe8\x2d\xc6\xa8\x82\x1a\x5c\xc8\xe2\xa8\x5e\xc4\x0c\x43\x0f\xa5\xdd\x91\x09\xb5\x75\x5c\x6e\x28\xa1\x42\x4c\x5d\xd6\x98\x7a\x63\xf6\x72\x6d\x64\xfb\xef\x83\x03\x22\x11\xe3\xfc\xc9\x87\xfa\xba\x41\x7a\x1c\xe4\xeb\xa1\xf4\x08\x31\x5b\xac\xd1\xa4\x2a\x8e\x39\xe8\xeb\x74\xb7\xe5\x23\xf3\x44\x1b\x0d\x2e\xe5\x09\x88\xd9\x62\xd9\xa7\x16\x44\xad\x9c\x1b\x0f\xaa\x56\x0e\xd5\xca\x9c\x8a\x7d\xa8\x56\x8e\x2b\x63\x68\xd2\x8c\x8f\x6b\x09\x22\x86\x64\x2f\x65\x93\x91\x3d\x75\xe3\xe4\xd2\x87\x7a\x6a\x88\x19\xa3\xc4\xb8\xf5\x20\x5b\xcb\x61\xa6\xeb\xea\x4c\xa4\xa9\xb1\x9f\xda\xda\xa9\x5a\xe9\x82\xaa\x20\x94\x20\x0d\x4d\x85\xfb\x54\xb8\xe7\x50\xe5\x53\xe1\x3e\x29\x3a\x9c\x8b\xf9\x54\xd1\x99\x2a\x3a\x38\xf9\x54\xd1\xe1\xb2\xae\x31\xa0\xb9\x2e\xeb\x7c\x66\x3c\x36\xb5\xb3\x53\xf1\x08\x31\xb9\xdc\x5c\x7a\x30\x2b\x41\x53\x2f\x36\xd5\x3f\x4d\xf5\x4f\xec\xf6\x54\xff\x34\x33\xdf\x37\x35\x38\x53\xf9\x1e\xd2\xcb\x13\x92\x78\x6c\xaf\xba\x3b\x65\xfb\xf9\xb4\x3d\xe2\x65\xfb\x99\xa3\x7d\x5b\x1b\x5c\x97\x09\x92\x55\xd7\xaf\x97\xe2\xa9\xdd\x9a\x39\x7d\xb6\xc5\x06\x4e\xa6\x4f\x11\x33\x1a\x94\xc9\xf4\xe9\x93\x08\xe6\xc8\xd2\xa7\x22\x18\x62\x6b\x13\xa4\xc5\xb1\xcd\x8b\x9a\x34\xb5\xcd\x90\xd9\x87\x20\xbd\x91\x69\x6a\xd1\xd9\x4c\x4d\x53\x90\xb6\x08\xfd\x79\xcb\x04\x5c\xa3\x3d\x17\xa7\x96\x1b\xd2\x16\x95\x7e\xaa\xe5\x86\xd8\xa2\x85\xd4\x75\xa8\x1b\xe1\xca\x61\xa4\x9b\xc2\x15\x62\x0b\x57\x36\x85\xab\x65\x0c\xb5\x45\x39\x30\x0d\x45\x10\x5b\x39\xc0\xbb\x29\x9e\x2c\x5b\x8c\xb6\xb0\x84\x59\x13\xd4\xe0\x9a\x40\x5d\x50\xee\xa9\xa6\x03\xd3\xa0\x0c\x31\xee\x5a\xdc\x38\x70\x75\x2e\x60\x9b\x33\x74\xeb\x02\xd6\x6d\xf1\x20\xb6\x37\xe5\x7e\x88\x2d\x42\xdf\xe4\x6b\x76\xc2\x45\x04\x9b\xfa\x58\x88\x2d\x66\x67\x3b\xc5\x95\x86\x6e\xdc\x9a\xbb\xc9\xd0\x76\x8b\x8b\x37\xde\x4f\xae\xf3\xf5\xd1\xb7\x96\x7a\x2d\xd9\x0b\x62\x8b\x11\x65\x29\xc4\x56\x26\xc1\xbe\xd1\xf7\x2f\x25\x41\x88\x2d\xaa\xe0\x92\x55\x57\xa6\xb7\xbe\x0d\x64\x29\xbd\x41\xe6\x86\xf6\x4b\x5d\xe5\xca\x22\xdb\x37\xda\x8d\xa5\x22\x0b\xb1\x45\x3b\xba\x54\x64\x57\x1a\xba\xab\x4d\xd6\xc5\xb0\xaf\xac\x1d\x7d\x23\xd9\x2c\xf5\x29\x90\xa6\xa6\x75\x5d\x7a\x23\x0b\xe2\xca\xd7\x75\xb5\xea\x5c\x6e\x76\x8e\xe0\xdc\x35\x01\xe9\xa2\x53\x4e\xae\x8b\x4e\xf7\x39\x5e\x1f\xbd\xa2\x84\xcf\x29\x68\xc2\x35\x80\x4c\x50\xc6\xa6\xba\x2c\x57\xce\x80\x18\xdf\x35\xb8\x2b\x67\x40\xba\xba\x2c\xd7\x1c\x0e\xb1\x55\x04\xe9\x8d\xe9\x00\x9d\xcb\x5c\xd7\xa5\xa9\x73\xa1\xd8\x2b\x7e\xaf\x0b\x45\xdf\xb3\x26\xf5\x46\x96\xda\x55\x93\x20\xb6\x18\x0f\x77\x6d\xc7\x9e\x26\xec\x6d\x09\x72\x41\xec\x36\x27\x12\xfb\x40\xd5\x7d\x22\xcb\xe1\x92\x93\xef\x72\x72\x02\x79\x97\x93\xef\x96\x4a\xf4\x27\x74\x09\xba\xe0\x2a\x40\x21\x28\x65\x75\xc6\x30\x5d\x3b\x3a\x17\x8a\xbd\x33\xa3\xea\x42\x51\xc4\x16\x27\x12\xba\x50\x74\x2e\xee\xba\xca\xba\x2e\xee\x44\x4c\x79\x62\x3f\x09\xab\x3d\x33\x48\x1f\x84\xfb\xae\x01\x1e\xd2\x36\x72\xbf\xae\xe4\x9c\xfb\xb7\x3e\x50\x42\x17\x6c\x7e\xb0\xdb\x83\xce\xe8\xd0\x6e\x1f\xda\x6d\x02\xe6\xd0\x6e\x73\x75\xd6\x07\xf5\x4d\x57\x67\x7e\xac\x74\xb9\x89\x12\xc7\x6a\x82\x88\x6d\x66\xe7\x43\x13\x01\x17\x6c\x5d\x95\x4b\x17\x6c\x22\xb6\x28\x07\xba\x60\xf3\x23\xe0\x22\x14\x8e\x5b\x5c\xb7\xb8\x78\x50\x27\x4b\x5c\x3e\x75\x2e\xc5\x5c\x97\x4f\xce\x95\x4b\xd7\xe0\xa7\x2b\x17\x3f\x53\x64\x57\x3c\x9e\x6a\xe2\x20\xb6\x38\x03\x39\xd5\xc4\x71\x69\xd1\x75\x9e\xa2\x4b\x0b\xe7\x72\xa0\x3b\xe2\x75\x39\x20\x62\xdc\x21\xf9\xa5\xc3\xb9\x2b\x77\x68\x6c\xa4\xed\x4b\x3b\x04\xb1\xd5\x04\x61\xaf\x2b\x27\x95\xb1\x11\xee\x97\x26\x15\x48\xd1\x3e\xea\x72\xc0\xaf\x63\x72\x3b\x9d\x86\xbe\x38\xc6\x16\xb1\xc5\xe1\xc9\x75\xe8\xc1\x4c\x50\x83\x5b\x05\xbf\x54\xcc\x20\xb6\x1a\xe2\x55\xcc\x38\xe3\x1f\x1b\x15\x55\x67\xfc\x1e\x33\x27\xa8\x82\xf8\xe0\x36\x4d\xc4\xb8\xee\xf2\xe0\x36\xcd\x83\x2b\xf2\x42\x82\x09\xae\xc8\x45\x6c\x35\x3d\x48\x28\x04\x23\x21\x37\x01\x1e\x6a\xd9\x21\x8d\x1b\x65\x0f\x1d\x79\x72\x7a\x3f\x0a\xfd\xa6\x4e\xef\x3d\xd2\xc9\x87\xa6\xb1\x90\x93\x87\x9c\x1c\xbf\x0f\x99\x10\x32\x0a\x85\x22\x64\xc2\xd0\xe0\x68\xf3\xd7\x4b\x71\xa8\x7d\x0f\x26\xc6\x4a\x61\x0c\x4d\x8c\x10\xe3\xe2\xce\x43\xc7\x2d\x9c\xd1\x0f\x3e\x39\x71\x9d\xd1\x3b\xe7\xea\x43\x23\x8a\xce\xd5\xfd\x66\x6b\x1a\xe6\xbc\xb5\x35\x90\xc6\x8d\x9f\xdf\xda\x9a\xfb\xbc\x98\x51\x81\x74\xac\x01\xb1\x45\x1b\x73\x9f\xe4\x8c\x3b\x1b\xf3\xd1\x99\x9d\x6f\x35\xe6\x90\xa2\x43\xe5\x5b\x8d\x39\x47\xcf\x83\x36\x99\x38\xc9\x8e\x81\xff\xb5\x8c\x94\xd0\x69\x74\x70\x82\x3c\x46\xba\x5f\xe8\x04\x39\xb6\x9c\x9d\xc7\xc8\x38\x8f\x8d\xd9\x59\xc4\x56\x76\xa8\xb1\x61\x89\xd8\xd2\xef\xc7\x58\x70\xed\x4f\x48\xc6\x71\xa0\x01\x94\xdd\xcc\x98\x12\x4f\x37\x23\x62\xab\x0b\x0a\xa0\xd4\x7e\x70\xb3\x1f\xdb\x2d\x59\xb7\x6e\xba\x05\x49\x16\x0b\xe2\x2e\x2f\x74\xc4\x1b\x25\x3b\xc9\xc1\x15\x53\x14\x4e\xe5\x44\x6c\xf5\x02\x74\x08\xca\x35\x72\xce\x1c\x85\x14\x1e\x45\xe5\x33\xc7\xc3\x28\x94\xcf\xe0\xc0\x75\x70\x5f\x10\x3a\x70\x8d\xb2\xa7\x2b\x53\xdf\xa2\x70\x29\x2f\x62\x2b\xeb\x5b\x94\x5d\x6f\xcc\x71\x7a\xd0\x00\x47\x61\x9c\x16\xa9\x5b\x43\xd5\x1c\xad\x9f\x64\xac\xc1\x83\x4c\xd8\x22\xad\x0c\x3d\x28\xf1\x71\xc2\x35\x81\x2e\x41\xb2\x17\x7a\x71\x48\x1a\x1c\x6c\x8e\x95\x21\x16\x3a\xd8\x8c\x4a\xd4\xad\x6c\x70\xa2\x12\x75\x22\x46\x4a\x8a\x4a\xd4\x45\xcd\xb2\x3e\x38\xd8\x8c\x4a\xff\x24\x62\xb4\x7a\x51\xe9\x9f\xa2\x66\x01\x1a\x5e\xc5\x75\x09\xba\xf8\x26\xa4\x02\x85\xa0\xe0\xfb\x12\xb8\x64\xaf\x7a\xe8\x93\x93\x34\x74\xc5\xc9\x45\x6c\x75\xb8\x70\xf2\xa8\x59\x61\x86\x67\x93\x1f\xf5\xd4\x1b\x4f\x5a\x97\x2c\x1a\xc1\xf9\xe2\xbb\xa8\x59\x80\xe6\xb6\xf1\x20\x05\x48\xc4\xe8\x37\xa3\x86\xb4\x8f\x23\xb9\xa4\x04\x1f\x31\x88\xd8\x1a\xc8\x92\x09\x39\xf4\x9b\xdc\xb6\x86\x0e\xfd\xa2\x65\x1b\x34\x69\x70\xa2\xd1\x06\x89\x18\x8d\x6a\x34\x6a\xb8\xc8\xdc\xb2\x4c\x45\xa3\x86\x8b\xd8\xca\x51\x20\x1a\x9f\x6d\x45\xcb\x24\x38\x37\xe7\x41\x92\xa0\x88\x71\x57\x1c\x9c\xd0\xbd\x0b\x4e\xbc\x66\xd9\x78\x50\xf6\x6a\x69\x89\xc9\x57\x74\xd1\x64\x09\x88\xc9\x4d\x9a\x2c\xc1\x79\xca\x2c\x39\xb5\x84\xce\x53\x82\xd3\x8d\x59\x51\x42\xa7\x1b\xd1\xb3\x56\x4e\xae\x0a\xa3\x53\x2b\x45\x8c\x63\xb7\xe8\x9c\x9e\x85\x4e\x37\x5a\xf6\x16\xa1\xd3\x0d\x11\x93\xcb\xe9\x74\x23\xf8\x24\x73\xb6\xca\x83\x5c\xef\x89\xd8\x22\x44\xbb\x92\x42\x3f\xe0\xca\xac\x1e\xfd\x10\xd7\x21\xae\x05\xf4\xe4\xe2\x8d\x13\xf1\x87\xde\x78\xe8\x8d\x0e\xa4\x37\xde\xc8\xb2\xb4\x17\xe7\x0e\x4f\x62\x0b\x9f\xd0\xf1\x43\x70\xd6\x30\x39\xc2\x0b\x9d\x35\x88\xcc\xde\x05\x15\x41\x85\x0b\xd8\x06\x54\x05\xf1\x20\xe1\xce\xb9\xc3\x93\x34\x85\x95\x8e\x1f\x62\xe4\xd6\x4e\xf2\x6a\x0c\x6d\x2d\xc4\x14\x69\x83\x6e\x26\x46\x96\xa6\xd9\x67\xae\x71\x30\x5d\x88\x94\xa7\x12\x4c\x17\xc1\x98\x3f\xbb\xc3\xa5\x1d\x1a\xd9\x48\x4c\xbe\x1e\x8d\xb1\x4b\xaf\x24\x8d\x6b\xda\x18\x34\x12\x31\x32\x89\x4e\x0e\x03\x62\x28\x89\x42\x8c\x5b\x98\x18\x7c\xa4\x17\x23\xcd\x36\x07\x59\x6e\x1c\x52\xf5\x90\xaa\x88\x3f\xa4\x6a\x86\xc2\x54\x26\x1f\x0a\x85\xa1\x6c\x82\xdf\x0f\x65\x13\xc6\xfc\x39\xb3\xf3\x0e\x8d\xf9\x31\x07\x1f\x64\x91\x01\xa6\xd2\xe3\xd4\xcc\x96\x33\x7d\x4c\x66\xb6\x98\x96\xc1\xc7\x37\x80\x31\xf9\x20\x42\xa4\x0c\x82\x6f\x2a\x75\x30\xc0\x4f\x2e\xf8\x43\x03\x7c\xcc\x74\xc6\x39\xfd\x17\x77\xc5\x73\xfc\xb2\x12\xc7\xe4\x53\x39\x11\x5b\x38\xd1\xe4\xe8\x2e\xa6\x4b\x06\x2a\xba\xb8\x5c\x5c\x06\x24\xae\xec\x75\x26\x77\x93\xa1\xc1\x5d\xa4\x72\xe9\x14\x1a\xdc\x63\x66\xba\x9e\xa6\x07\x95\xae\x21\xb6\xd8\xe5\xa9\x74\x3d\xf1\x51\x0e\x27\x62\xca\x47\xe7\xd3\x47\x59\x9b\x7c\x94\x09\x78\x32\x8f\x86\x26\xe0\xb0\x09\x54\x80\x98\x3d\x44\x6c\xd9\x06\xc4\x36\x30\x8f\x4e\xed\xb2\xe6\xd1\xb0\x6c\x6c\xe6\x32\x07\x3a\x05\x91\xdd\xac\x00\x49\x56\x92\xb9\x5c\x0f\x4a\xd6\xa2\x69\x30\x41\x54\x3c\x4b\xc7\x99\xcb\xd3\x12\xc6\x67\x9d\x22\xb6\x08\x3a\xe3\x33\xb4\x30\xfc\xca\x0b\x6f\x94\x5f\x99\xfc\xca\x78\x50\x7e\x65\x39\xf7\x4d\xe5\x79\x63\xee\x13\xb1\x95\xfd\x4d\x18\x9f\x38\x04\xb3\xed\x74\x3c\x46\xb3\x6d\x2c\x2e\x35\xb7\x1c\xfc\x63\x69\x8d\x8b\x24\xb5\x61\xfb\xa5\x24\x05\x31\xd5\xb2\x25\x07\xe0\x7b\x63\xdb\x50\x55\xdf\x1b\x8b\x18\xb7\x8e\xa1\xef\x8d\x63\x31\xc7\x94\x02\xc4\x1c\x23\x62\xcb\x16\x50\x17\x94\x4a\x94\x86\x5e\x74\x54\x22\x26\x43\xaf\x4b\x7a\xe5\x1a\xad\x50\x17\x35\xdb\x8a\xd8\xa2\x01\x59\x5a\xa3\x3e\x41\x56\x09\xd7\x27\xc8\x22\x45\x0d\xc8\x92\x4f\x40\x6c\x2d\x41\x52\x82\x83\x92\x42\xfb\xa4\x39\x39\x98\x47\xad\xb0\x8f\x9a\x47\xc3\xb3\xc3\xb0\x4a\x06\xf7\xfd\x10\xc4\x76\x2c\xb8\x38\x2d\x0e\x27\x9f\x56\xfa\x1b\x57\x3e\x85\xd8\x92\x78\xed\xa3\x67\x28\x58\x23\x14\xfc\x7c\x42\x7c\x79\xdd\xe1\x52\x28\x40\x8c\x5b\xda\x70\xee\xda\xc2\x6f\x7d\xd8\xcd\x1b\xb5\x46\x48\x69\x39\x8f\x86\x6b\x8d\x8c\xce\xd6\xf0\x68\x8d\xce\xa1\xd9\xb6\x61\x2f\xcd\xb6\x22\xb6\xd6\x00\x2a\x82\x72\xd9\x3d\x67\xa2\xd0\x20\x1b\x3b\x77\x93\x1d\xbd\x76\xee\x26\x45\x6c\xad\x09\x14\x82\x78\x10\x9f\xd0\xc8\x15\x97\x3e\xaa\xa7\xb2\x68\xe4\x8a\x2b\xcb\xd0\xe2\x63\xff\xb8\x8e\x2e\xa8\xf3\x05\x18\x0f\x1e\x6c\x2d\xd3\xce\xe2\xc3\xca\xd0\xb4\x13\xcc\x1e\x8b\xef\x54\x43\xb3\x47\x44\xe6\xd3\x35\xb7\x14\x1f\x7c\xb0\x10\x71\xaf\xd7\xc7\xe2\x0f\x1a\x22\x38\x3c\x13\x79\xa8\x6b\x0c\x8e\x79\x82\x19\x61\x6d\xdb\xf8\x5f\x09\x2f\xff\xfb\xc7\xfd\xe3\xcb\xcf\x7f\x49\x73\xfe\xf4\xe9\x53\xbc\x7d\xe1\xef\x76\xf8\x6b\x99\xc7\x15\xf7\xfb\xb7\xf8\xf9\x6f\x80\x3e\x7e\xf8\x98\x4f\xf1\xff\xff\x0a\x00\x00\xff\xff\xfe\x3d\xc7\x3f\x2f\x34\x00\x00"); +func _beba ()(*asset ,error ){_bcda ,_cdfe :=_afeae ();if _cdfe !=nil {return nil ,_cdfe ;};_fagba :=bindataFileInfo {_ee :"UniJIS-UTF8-V",_ffd :3954,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492964,0)};_gfedb :=&asset {_da :_bcda ,_dc :_fagba };return _gfedb ,nil ; +};var _cfgb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x92\xc1\x8e\xdb\x20\x10\x40\xef\xfe\x8a\x39\x6e\x0f\x5b\x1b\xdb\xc0\x46\xaa\x2c\xb5\x49\xa5\xfa\xb0\xdb\xaa\xd9\xa6\x95\xaa\x1e\x08\x4c\x52\xa4\x1a\x23\x6c\x1f\xf2\xf7\xd5\x0c\x4e\xb2\x07\x6b\x98\x07\xbc\x19\x0c\xe5\xb6\xdf\xf5\xc1\xcf\x50\x7e\x4b\xa3\xdd\xe3\x0c\x27\x1f\x5c\xc2\x69\x5c\x92\x45\x38\xe2\xd9\x87\xa2\x10\x35\x38\x6f\xe7\x6b\xca\xc1\x0e\x26\x16\x45\xf9\xf9\x15\xc3\x30\x3d\x7e\x92\x8f\x5f\x60\x99\x70\xa5\xdb\x7e\xb7\xbf\x4c\x33\x0e\x7d\x38\x8d\xd0\xe4\xdd\x6e\x89\xab\x01\xa0\xfc\x8e\x67\x3f\xcd\xe9\x02\x0f\x1f\xdd\x78\xc4\x77\xe0\xf0\x44\xfc\x6b\x72\x98\x7c\x38\xc3\xc3\xf6\x65\x2f\x6e\x78\xbf\xc4\xf8\x0f\x07\x0c\x33\x54\xcc\x30\x38\x8e\x45\xb9\x7d\x36\xf1\xc5\x0c\x08\x6f\x7a\x39\xf0\x1c\x4f\x1d\x30\x4d\x7e\x0c\x20\xaa\xf7\x55\x25\xef\xfc\xf5\x12\x11\xc4\xea\xf8\xf5\xa3\xdf\xc1\x6f\x01\xa2\x82\x5a\xca\x8d\xfe\xb3\xf2\x9f\xcf\xa3\xbb\xad\x52\xb9\x7b\xeb\x9d\xfd\x6b\x52\xf1\xc1\x88\xf6\xd8\x81\x68\x54\xab\x38\xb1\x1d\x88\x6a\x43\x43\xa9\x3a\x68\x44\xcd\xc3\xa7\x0e\x44\x9d\x87\x86\x56\xeb\xb6\xe1\xc4\xe6\x44\xd2\x49\xae\x4a\xfa\xd1\xd7\x1a\xc9\x84\x33\xf2\x4a\xd7\x01\x05\xa4\x0d\x15\x11\x25\x98\xa8\x9a\x48\xcb\x44\x66\xa2\x88\x3c\x31\xd9\x64\x42\x35\x5b\x2e\xaf\xb2\x47\x91\x27\x77\xac\xb3\x47\x93\x47\xb2\x59\x67\x8f\x26\x8f\x64\xb3\xce\x1e\x4d\x1e\xc9\x66\x9d\x3d\xfa\xde\x8f\xc9\x1e\x73\xef\xc7\x34\x99\xb4\x6b\x3f\x56\x61\xdb\x01\x05\x49\xd5\xab\x8d\x5e\x8f\x9d\x4f\xc9\x09\xbd\x9c\xdb\x5d\xda\x25\x25\x0c\x33\xbf\x1b\xbe\x2e\xba\x02\x1f\xf0\xf6\x32\xe3\x18\x69\x17\x7f\xff\x03\x00\x00\xff\xff\xfc\xb5\x10\xb6\xc5\x02\x00\x00"); +func _cbfag ()([]byte ,error ){return _gb (_bdge ,"GBK-EUC-V")};func _dcad ()(*asset ,error ){_abab ,_cdea :=_ecgd ();if _cdea !=nil {return nil ,_cdea ;};_fbfa :=bindataFileInfo {_ee :"ETenms-B5-H",_ffd :401,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491796,0)}; +_gba :=&asset {_da :_abab ,_dc :_fbfa };return _gba ,nil ;};var _bdc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd5\x4f\x8f\xdb\x36\x10\x05\xf0\xbb\x3f\x05\x8f\xe9\x21\xb5\xf8\x77\x48\x20\x58\xa0\xd8\x3d\xd4\x29\xd2\x14\xd9\x26\x2d\x50\xf4\x40\x4a\xf4\x42\x40\x2d\x0b\xb2\x7d\xd8\x6f\x5f\xcc\x7b\x5b\x37\x87\x60\xb2\x3f\x93\xa3\xe1\xb3\x64\xed\x1f\x0f\x4f\x87\x65\xbe\x9a\xfd\x6f\xdb\x79\x7c\xee\x57\x73\x9c\x97\x69\xeb\x97\xf3\x6d\x1b\xbb\x69\xfd\x65\x5e\x76\x3b\xeb\xcc\x34\x8f\xd7\xff\xfe\x44\x19\x4f\x75\xdd\xed\xf6\x65\x38\x5d\xde\x7f\xf9\xe5\xf9\xe3\xfb\x9f\xcd\xed\xd2\xdf\xf4\xf1\xf0\xf4\xfc\x7a\xb9\xf6\xd3\x61\x39\x9e\x8d\xe7\xee\xe9\xb6\xbe\x75\x30\x66\xff\xa5\xbf\xcc\x97\xeb\xf6\x6a\xde\xfd\x34\x9d\x5b\xff\xc1\x4c\xfd\xa8\xfe\x79\x9b\xfa\x36\x2f\x2f\xe6\xdd\xc7\xba\xd6\xc5\xde\x3f\x78\xbe\xad\xeb\x3f\xfd\xd4\x97\xab\x71\xb0\xbe\x4c\xa8\xbb\xfd\xe3\xa7\xba\xfe\x5a\x4f\xdd\x7c\x37\xcd\x37\x7c\x86\x8f\xbe\xf5\xed\x32\x9f\x17\x63\xed\x8f\xc3\x90\xfe\xf7\xdf\x5f\xd7\x6e\xec\x5b\x8f\xaf\x87\xa7\xcf\xc7\xe3\xa5\x5f\x8d\x1d\xdc\xc0\x45\x7f\x7e\x3d\x3c\x99\xbf\xac\xb1\x83\x71\xd1\x87\xf0\xf7\xdb\xda\x3f\x3e\x9d\xa7\xfb\x4e\xc9\x3c\xd4\x38\x4f\x5b\x5d\x5e\xfa\xee\x43\xb6\xc1\x3e\x18\x2d\xee\xc1\x48\xce\x02\xf2\x24\xff\x60\xb2\x4b\x19\x14\x48\x41\x49\x82\x52\x1c\x40\xd1\x62\x63\x01\x35\xd2\xa4\x54\xac\x52\xe2\xaa\x14\x40\xd8\x98\x0a\x48\x2a\x08\x1b\x33\x87\xd0\x22\xc5\x62\x88\x9a\x41\x5a\x8c\x78\xac\xaa\xdc\xa8\xc5\x88\xc7\x5c\xb5\x92\x1a\x28\x81\x46\xd2\x88\x51\x87\xdd\x87\xec\xca\x51\x09\x45\x8a\xd5\x8d\xae\xe2\x8a\x28\x52\x6c\x01\x79\x92\x57\x72\xd8\x58\x23\x29\x82\x2c\x48\x48\x02\x72\x4a\x23\x7b\x8d\xe8\xe5\xbc\x52\x27\x75\x52\x00\xb1\x7d\x67\xfb\x08\x62\xfb\xce\xf6\x09\x34\x92\x46\x90\x26\xe1\x03\x22\x44\x91\xe2\x32\xc8\x91\x1c\xa8\x80\x02\x49\x83\x2e\x7e\x00\x25\x52\x02\x59\x50\x26\x65\x90\x4e\xef\x13\x7b\x25\xf4\xf2\x3a\xbd\xcf\x18\x15\x45\x8a\x0f\xa0\x48\xc2\xa8\x3e\x82\x84\x84\x24\x90\xbd\xcf\x9d\xd4\x41\x98\xbe\x70\x63\xe1\x10\x3a\x7d\xe0\xd7\x81\x22\x21\xeb\x5c\xa1\xe2\x8c\x28\x12\xa4\x80\x2c\x49\x23\x0c\x25\x82\x1c\x49\x47\x8d\x83\x07\x79\x92\xc7\x2a\x6e\x0c\xa4\x00\x62\xfb\x48\xd2\xe9\xa3\xe3\xc6\x44\xd2\xb9\xa2\x65\x7b\x21\xe9\x81\xa2\xe7\xc6\x4c\xca\xb8\xa2\x80\x0a\xa9\x60\x15\xaf\x58\x49\x15\x07\x72\xa0\x46\x6a\xa0\x01\x34\x92\x46\xcc\x85\x24\xea\x44\x9a\xd0\x3e\x81\x3a\xa9\x83\xd8\x8b\x79\x55\xe4\x85\x67\x28\x34\xe6\xa5\x45\x22\xbe\xed\xd0\x98\x97\x16\x89\xb8\x31\x43\x63\x5e\x0d\x79\x31\xfb\xc6\xbc\xb4\x48\xb4\xec\xc5\xbc\xb4\x48\x8c\x24\xe6\xd5\x98\x17\xe6\x6a\xcc\xab\x31\x2f\x1c\xbb\x31\xaf\xc6\xbc\xb8\x91\x79\x35\xe4\x65\x11\x61\x63\x5e\x0d\x79\x05\x04\xdd\x98\x97\x16\x89\xb8\xc9\x43\x63\x5e\x5a\x24\x5a\x5e\x91\x79\x69\x91\xe8\xb9\x91\x79\x35\xe6\xc5\x03\x31\xaf\x86\xbc\x82\x1e\x5b\x22\xf2\x92\x84\x07\x26\x68\x38\x92\x2c\xc9\x3e\x98\xec\xf1\xc0\x08\xef\x7b\xe1\x7d\x1f\x3c\xc8\x93\xf4\x87\xcf\x7b\xae\x0a\x24\x3c\x56\x98\x5e\x52\x24\x45\xac\xca\xa0\x44\xc2\xa3\x10\x04\x94\x49\x59\x57\x85\x00\x2a\x24\x3d\x76\x89\x9c\xab\x91\x1a\x56\xb1\xd7\x48\x9a\xb0\x8a\x73\x75\x52\xc7\x2a\xcc\x95\x71\x03\x08\x7f\x31\x63\xd2\x37\xcc\xfd\x57\x5d\xff\xaf\xef\xb6\xfb\xbb\x66\xbc\x6d\x5b\x5f\xae\x78\xb3\xe1\x75\xa2\xaf\x83\x79\xe9\xf7\x77\xe7\x7a\x5e\x75\x17\xfe\xfd\x1b\x00\x00\xff\xff\x59\x2d\x4a\x62\x67\x07\x00\x00"); +func _bcd ()(*asset ,error ){_febe ,_aab :=_gfa ();if _aab !=nil {return nil ,_aab ;};_acae :=bindataFileInfo {_ee :"Adobe-GB1-3",_ffd :2159,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491263,0)};_bef :=&asset {_da :_febe ,_dc :_acae };return _bef ,nil ; +};func _cgad ()([]byte ,error ){return _gb (_gdb ,"78-H")};func _cca ()(*asset ,error ){_be ,_eecd :=_daf ();if _eecd !=nil {return nil ,_eecd ;};_eae :=bindataFileInfo {_ee :"83pv-RKSJ-H",_ffd :4830,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490975,0)}; +_cdeg :=&asset {_da :_be ,_dc :_eae };return _cdeg ,nil ;};func _ceda ()([]byte ,error ){return _gb (_bdeb ,"ETHK-B5-V")};func _gcg ()(*asset ,error ){_dad ,_bdg :=_fbac ();if _bdg !=nil {return nil ,_bdg ;};_edc :=bindataFileInfo {_ee :"Adobe-CNS1-6",_ffd :1901,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491216,0)}; +_ffda :=&asset {_da :_dad ,_dc :_edc };return _ffda ,nil ;};func _cbdf ()(*asset ,error ){_bba ,_cddb :=_fga ();if _cddb !=nil {return nil ,_cddb ;};_bdbb :=bindataFileInfo {_ee :"HKgccs-B5-V",_ffd :615,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492370,0)}; +_eea :=&asset {_da :_bba ,_dc :_bdbb };return _eea ,nil ;};func _fed ()([]byte ,error ){return _gb (_cfcb ,"Ext-H")};func _dfaf ()([]byte ,error ){return _gb (_eeff ,"Ext-V")};func _eec ()(*asset ,error ){_ade ,_cdc :=_gbe ();if _cdc !=nil {return nil ,_cdc ; +};_fba :=bindataFileInfo {_ee :"78-RKSJ-H",_ffd :12581,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490930,0)};_gc :=&asset {_da :_ade ,_dc :_fba };return _gc ,nil ;};func _gef ()(*asset ,error ){_bdfgf ,_dgff :=_gfef ();if _dgff !=nil {return nil ,_dgff ; +};_cbfb :=bindataFileInfo {_ee :"GBKp-EUC-V",_ffd :768,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492107,0)};_ffdae :=&asset {_da :_bdfgf ,_dc :_cbfb };return _ffdae ,nil ;};func _bfdc ()([]byte ,error ){return _gb (_efda ,"UniCNS-UTF16-V")};var _bcce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x93\xc1\x8e\x9b\x30\x10\x86\xef\x3c\xc5\x1c\xb7\x87\x6d\x3c\x80\x21\x48\x15\x52\x37\x51\xb7\x1c\xb6\xad\x9a\xcd\xb6\x52\xd5\x03\xc1\xe3\xd4\x52\x63\x90\x81\x43\xde\xbe\xb2\xc1\x83\x7a\x40\xe6\x9b\x7f\xc6\xfe\xc7\x0c\xbb\x43\x73\x6c\xac\x99\x60\xf7\xcd\xf5\xdd\x89\x26\xd0\xc6\x2a\x47\x63\x3f\xbb\x8e\xe0\x42\x57\x63\x93\x04\x53\x50\xa6\x9b\x22\x86\xa5\xbb\xb5\x43\x92\xec\xce\xd6\x3c\x3f\x3d\x9e\x5f\x3f\x65\xe9\xe3\x67\x98\x47\x5a\xe3\x87\xe6\x78\xba\x8f\x13\xdd\x1a\xab\x7b\xc8\x96\x7a\x35\x0f\xeb\x1e\x00\xbb\xef\x74\x35\xe3\xe4\xee\xf0\xf0\x51\xf5\x17\x7a\x07\x8a\xb4\x8f\x7f\x75\x8a\x9c\xb1\x57\x78\x78\x7e\x42\x8e\x9e\xe6\x61\xf8\x4b\x37\xb2\x13\xc8\x10\x23\xab\xc2\x9a\xec\x0e\x2f\xed\xf0\xa5\xbd\x11\xfc\x67\xe6\x2d\xa8\x41\x7c\x23\x37\x9a\xde\x02\xbe\x17\xa2\xdc\xc2\xaf\xf7\x81\x00\xd7\x4d\x7e\x9e\x9b\x23\xfc\x42\x40\x01\xa9\x2c\x44\xfe\x7b\x8d\xff\x78\xe9\x15\x67\x61\xb9\xd8\xef\x8c\xea\xfe\xb4\x2e\xf9\x20\x84\x10\xa9\xc0\xbc\x06\x59\xed\x23\xa6\x85\xc7\x6a\xc1\x4c\x08\xac\x41\x96\x92\x31\xf5\x98\x47\xc4\xac\x86\xb2\x14\xc5\xc2\x5a\x2f\xd9\x7b\xc6\xce\x63\xc6\x48\x21\xbb\x8c\x8c\x2a\x30\xa7\xa3\xf6\xe9\x55\xc4\xec\x12\xe4\x8d\x43\x3a\x0a\x66\x5d\x43\x21\x18\xe5\xc5\x1b\x67\x2b\x52\x79\xe4\xb3\xe4\x72\x76\x1e\x99\x82\x73\x44\xff\x25\xe2\x85\x24\x05\x5f\x90\x6b\xed\x95\xb8\xe9\x7d\x0d\xf1\xd5\x5b\xdc\x6f\xfd\x0b\x56\xd0\xb7\x5e\x6d\x4a\xbe\x29\xd2\xd7\xa4\xac\x14\x9b\x52\xfa\x9a\x94\xef\x27\x9e\xa3\xb5\xa8\x7c\x0d\xf7\x86\x2d\x2b\xe8\xdb\x2c\x8b\xd5\xf7\xe2\x33\x80\x9f\x5c\x1e\xa6\x6e\x76\x8e\xec\x14\xe6\x36\x8c\x8b\x1f\x01\x63\x89\xff\x8d\xa1\x1f\x7c\x55\x78\xfe\x05\x00\x00\xff\xff\x0f\x79\x9f\xed\x47\x03\x00\x00"); +func _efafg ()([]byte ,error ){return _gb (_fcga ,"RKSJ-H")};func _ccbg ()(*asset ,error ){_aecd ,_dfab :=_gcga ();if _dfab !=nil {return nil ,_dfab ;};_gded :=bindataFileInfo {_ee :"GB-EUC-H",_ffd :2187,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491958,0)}; +_bggga :=&asset {_da :_aecd ,_dc :_gded };return _bggga ,nil ;};func _ebfe ()([]byte ,error ){return _gb (_dgb ,"Adobe-KR-9")};var _dbgfe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x98\x41\x6f\x1c\xb9\x11\x85\xef\xfa\x15\x7d\xdc\x1c\x1c\x93\x55\xe4\x90\x04\x0c\x01\x81\x7d\x88\x16\xd8\x64\x11\xc5\xbb\x01\x82\x1c\x7a\x66\xd8\xc6\x00\xd1\x68\x30\x92\x0e\xfe\xf7\x41\xbd\x6f\xa2\x60\x83\x3d\x18\xcf\xfe\x4c\x16\xeb\x15\x8b\x64\x4b\x1f\x3f\x3f\x7c\x79\x38\x9f\x5e\x97\x8f\x3f\x5f\x9f\x0f\x8f\xf3\x75\xd9\x4e\xe7\xe3\x75\xbe\x3c\xbf\x5d\x0f\x73\xd9\xcf\x6f\xa7\xf3\xdd\x5d\xb6\xe5\x78\x3a\xbc\xfe\xf7\x9f\x92\xc3\xd3\x7a\xb9\xbb\xfb\xf8\xf5\x7c\xfa\xf1\xe1\xf1\xc3\xd7\xcf\x8f\xf6\xe1\xcf\xcb\xdb\xcb\xbc\xf1\xcf\x0f\x5f\x1e\xbf\xbf\xbc\xce\xa7\x87\xf3\xf6\xbc\x38\xf3\x8f\x6f\x97\x5b\x8c\x65\xf9\xf8\xb7\xf9\xed\xf4\xf2\x7a\xfd\xbe\xfc\xf0\xa7\xe3\xf3\x7e\xfe\x61\x39\xce\x2d\xf8\x5f\xaf\xc7\x79\x3d\x9d\xbf\x2d\x3f\xfc\xb8\x5e\xd6\x73\x7e\xff\x8f\xc7\xb7\xcb\xe5\xdf\xf3\x69\x9e\x5f\x97\x22\x36\xcf\x47\xe9\xdd\xc7\xcf\x3f\xad\x97\xbf\xac\x4f\x73\xb9\xe5\xf3\xf3\xf5\xf9\x96\xd2\xaf\x1f\x7e\xd1\x18\x0d\xf9\x65\x5e\x5f\x4e\xcf\xe7\x25\xff\x31\xa5\xfa\x3f\xfc\xf7\xef\x97\xb9\xe4\x5b\xa8\x7f\x7c\x7d\xf8\xb2\xfc\x33\x2f\x39\x2d\x56\xab\xf7\x7f\xdd\xf8\xaf\x3f\x3d\x1f\xdf\x47\xe5\x94\x30\x72\x38\x1d\xaf\xeb\xf9\xdb\xbc\xfb\x94\x92\xa5\xfb\xe5\x53\x4a\x75\x7f\xbf\x98\xe7\x20\xf5\x00\x39\xdc\x2f\xbd\xe5\x21\x74\x14\x6a\xf3\x7e\xb1\x61\x41\xd6\x2a\x12\x62\x43\xd3\xf6\x04\x0a\xe9\xb6\x1b\x77\x9f\x2c\xe5\x40\x48\xeb\xc3\x85\x2a\xa8\x0a\x99\xd0\x0e\xb4\x13\xaa\x42\x1d\x34\xee\x97\x6c\xb9\x31\xf3\x00\x3b\xde\x2f\x6d\xd4\x5d\x20\x23\x98\x11\xac\x0b\x11\xcc\x08\xd6\x02\xb9\x09\x85\x74\x23\x96\x3b\xc8\x03\xf5\x40\x79\x28\x57\x49\xf3\x2e\x92\x21\x39\xc8\x4e\xc4\x20\x16\x64\x88\x38\xc4\x83\x34\x91\x0a\xa9\x91\xba\xe5\x12\xec\x50\xc4\x42\xba\xe7\x2c\xc4\xb0\x90\xee\x39\x09\xed\x40\x3b\xa1\x28\x4d\x9e\xa0\x90\x9e\x6e\xa8\x81\x9a\x90\xc2\xcf\x0e\xea\x42\x0a\x3f\x07\x68\x08\x85\x41\xa3\x58\x76\x2b\x56\x94\xd9\x5c\x25\x95\xb4\x3e\x22\x96\xcd\x4d\x28\xe4\x56\xbf\x9a\x54\x99\x9a\xa2\x0e\xa5\x67\x21\x03\x85\xed\xd2\x86\x50\x01\x55\x8d\xaa\x42\x3b\x50\x13\x72\xa1\x0e\x1a\x42\x4c\x5c\x41\x7b\x21\x56\x3c\x80\x22\xaf\x32\x88\x75\x04\x1d\x85\x18\x35\x41\x53\x68\x27\xb4\x81\x36\xa1\xd8\xc5\x4a\x0f\x4a\x5a\x4d\x4a\x22\x67\x50\x16\x52\xf8\x8c\xa1\x90\x56\x53\x11\x72\x90\x0b\x29\x7c\xc6\x63\x48\x2b\x43\x95\xa0\x9f\x25\xad\x0c\xc2\x63\x5b\xfd\x5c\xd4\xe2\x35\x37\x90\x2a\x31\x08\x4f\x25\x42\x5a\x19\xaa\x44\x1e\xa0\xa1\x15\x09\x4f\x71\x42\x5a\x4d\x49\x68\x0f\xda\x0b\x11\x9e\x7a\x85\xb4\x6a\x24\x41\xbd\x74\x5a\xaa\xa9\x5e\x99\x7a\x85\xb4\x6a\xd8\xa6\x5e\x21\xad\x9a\xf2\x32\xea\x65\xaa\x97\xc9\xb6\x51\x2f\x53\xbd\x4c\xa9\x1a\xf5\x32\xd5\xcb\x54\x68\xa3\x5e\x16\xc5\xa9\xae\x54\x69\x39\x49\xab\xae\x15\x39\x9f\x92\x56\x5d\xa9\x1a\xc5\x09\x69\xd5\x65\xc8\x28\x4e\x48\xab\x4e\x5e\x14\xc7\x54\x1c\x1d\xb5\x6a\x14\xc7\x54\x1c\x27\x55\x8a\x63\x2a\x8e\x93\x17\xc5\x31\x15\x27\x93\x04\xc5\x31\xd9\xce\x8a\xe5\xd8\x76\xd9\xce\x8a\xe5\xd8\x76\x35\x80\xc9\x90\xd3\x00\x2e\x8f\x89\x89\x78\x74\x65\x9f\x54\x1c\x27\x7b\x57\xf6\x49\x49\x38\xd9\xbb\xf2\xd2\x41\xae\x4e\x12\xae\x24\x8a\x2a\x51\x48\xa2\x28\x89\xa2\x06\x28\x24\x51\x54\xfb\xa2\x24\x0a\xb5\x2f\xaa\x7d\x51\xac\x42\xed\x8b\x52\x2d\xca\xab\x90\x6a\x51\xaa\x45\x79\x15\x52\x2d\xda\x8e\x22\x8f\x85\xed\x28\xda\x8e\xa2\x54\x0b\xdb\x51\x64\xa8\x92\x17\x86\x8a\x0c\x55\x56\xc4\x50\x51\xed\x6b\xe4\xb5\xa3\x0b\x25\xdd\x2c\x0b\x1d\x41\xc7\x40\xf1\x94\xd8\x8e\x2e\x94\x74\x33\x13\xda\x40\x9b\x50\xc4\x6a\x5c\x30\x92\x78\x00\x22\xb1\xb6\xaa\x14\x92\x6e\x51\x69\x4f\x71\x27\x85\x44\x29\x7a\xdc\x1d\x9e\x74\xc3\x78\xd2\xe1\x1e\x49\x48\x27\x19\xe9\xd6\x92\x50\x01\x55\x8d\xca\x42\x07\xd0\xfb\x65\xe8\x7a\x6b\x6e\xc2\x93\xe3\x49\xb9\x22\x6d\x54\x85\x2f\x24\xa1\x2d\x1a\xb9\x0b\xb1\xa2\xf6\x63\xe4\x11\x6f\xfe\xfb\x9b\xfb\x7b\xcf\xb0\x27\xed\x0d\xd2\x86\x29\x47\x6d\x04\xd2\x86\x29\x47\x55\x1d\x69\x23\x8a\xe7\x69\xc7\x52\x3b\x2d\x15\x67\xdf\x53\x07\x75\x90\x9c\x74\xc2\x77\xc2\x57\x21\xc2\x77\xc2\xcb\x5c\x9f\xa0\x29\x24\x73\x63\x2f\x14\xd2\xad\x69\xc5\x41\xa1\x86\xf6\xb9\x29\xaf\x95\x12\xac\x2a\x81\xa9\x04\x2b\x49\xac\x24\xa1\xdd\x5a\x49\x62\x55\x12\x2e\x8f\x2b\x49\xac\x4a\xc2\x89\x85\xc7\x55\x1e\x5d\x2b\x1e\x88\x75\x50\x2c\x97\xc7\x09\x9a\x20\x79\x9c\x84\x9f\x84\x97\xc7\x49\xf8\x49\x78\x79\x9c\x78\x9c\xf2\xe8\xf2\xb8\x31\x71\xdb\x09\x29\xfb\x0d\x8f\x1b\xcd\x10\x79\xb9\x9e\x41\xa4\x7b\x74\xbc\x3b\xed\xe7\xea\xd2\x3c\x6a\x17\x73\x58\x34\x9b\x3b\xa8\x80\x8a\x86\xed\x98\x5a\x61\x7a\xff\x65\xc9\xf5\x5c\x22\x31\x8c\x45\x1b\xac\xc1\xaa\x58\x87\x75\x18\x73\x07\x6c\xc0\x58\x76\x85\xad\xb0\x9d\xd8\x1e\xb6\x17\x6b\xa4\x72\x80\x1d\x60\x26\x76\x84\xd1\xf9\x0c\x53\xe1\x3c\x4e\x51\x0c\xd3\xb2\x1c\x23\x49\x1b\x45\x19\x67\x8c\x65\x19\x2b\x9a\x99\x31\x96\xf5\x61\xe3\x20\x7c\x65\x7c\x75\x18\xbe\x42\xba\xc7\xe7\x95\x7b\xc6\x56\xc6\x56\x57\x6a\x19\x5b\x71\x28\x83\x15\xb1\x5b\x6e\x53\x7b\x43\x6a\x3a\xa8\x1e\x8f\x56\x0c\x53\x45\xf4\x6a\x21\xdd\xd5\x93\x6e\x6c\x97\x69\xbb\x0a\xa3\x30\x65\x6c\x17\x9b\x6f\xb8\x0a\x09\xa6\x15\x0c\x5b\x7a\xca\x46\x65\x18\xb6\xf4\x94\x8d\xa2\xdd\x32\x5c\x19\x16\x86\x76\xc1\xb0\x10\xd2\xbd\x82\xd8\x18\x3d\x5c\x03\x07\xc6\x1e\x18\x46\x07\xe9\x62\x34\x9e\xa9\x6c\x29\xa9\x20\x4e\x17\x86\x74\xa7\x09\x1d\xa3\x6e\x0c\x53\x22\x8e\x53\xa7\x31\x55\x36\xc7\xa9\x57\x86\x31\x15\x57\x2e\x57\xf1\x94\xb8\x3b\xae\x42\xb2\xe9\x9b\xd3\xdd\xb1\x15\x12\x4c\x1e\x9c\xdd\x0a\xe9\x5e\xe4\xc1\x71\x1a\x12\xc3\x08\x87\xd5\x90\xee\x45\xb6\x9c\x16\x0c\x89\x61\x6a\x07\xc7\x7e\x48\x30\x92\xc3\x7e\xc1\xbe\xae\x49\xe7\xfa\x95\xc4\x38\xc5\x2b\xf8\x2f\xda\x68\x4c\x70\x25\x7b\xbc\x74\x31\x55\xd9\x71\xc3\x4a\xba\x57\x86\xe1\xab\xe0\xcb\x60\xf8\xe2\xd6\xa5\xa5\x0b\xbe\xf4\xfc\x8d\xaa\x8a\x14\x6c\x15\x3c\xe8\x12\xf4\x82\x87\xa2\x63\x44\x45\xca\xcd\x82\x5a\xd5\x89\x4f\xab\x56\x5c\x71\x40\x2a\xae\xaa\x6e\x54\xfa\xb2\x62\xaa\xb2\xa9\xec\x60\xc5\x55\x48\x30\xc6\xb1\xab\x21\xc1\xb4\xf9\x95\xfe\xad\xb8\xe7\x70\x55\xdc\x57\xb9\x2f\x0a\xd7\xf0\x10\x92\x2d\xdd\x18\x7b\xd3\xf0\x85\x89\x86\xaf\xc6\xde\x14\xb5\x61\xc3\x58\x48\x30\x9d\x87\x86\xb3\x90\xee\xf1\x12\x6d\x9b\x6e\xaf\x6d\xd3\x4f\x00\x3d\x9a\x7a\xdb\x74\x01\x21\xdd\xe2\xee\xda\x36\x5d\x36\x48\xb7\xa6\x89\x3a\xf7\x48\xb6\x1c\x6f\xf6\xb6\xe9\x81\x46\xda\x88\xee\xda\x36\x75\x17\xd2\x46\x7c\xef\x6f\x9b\x33\xca\x35\x2a\x29\x58\x7c\x75\xdd\xa4\xf5\x91\x02\x55\x26\x56\x26\xd6\xdf\xbe\xd9\xe5\xff\x5f\xec\x6d\xab\x64\x5d\x79\x22\x76\x42\x2c\x54\x59\x08\x84\x91\x10\xbe\x2a\xb6\x4d\x4f\x17\xd2\x7a\xff\xed\xc7\x41\xfc\xfd\x69\xbd\xdc\xbd\xff\x6a\xe0\xf0\x76\xbd\xce\xf3\xab\x7e\x11\xa1\x1f\xfb\xe3\x47\xf9\xd3\x79\xbe\xff\xb2\xe3\xf2\x7c\x89\x59\xfa\xf3\x9f\x00\x00\x00\xff\xff\x39\x89\xff\xa0\x18\x11\x00\x00"); +func _aefd ()([]byte ,error ){return _gb (_ddee ,"HKdla-B5-H")};func _ccde ()(*asset ,error ){_ceg ,_cgbd :=_fece ();if _cgbd !=nil {return nil ,_cgbd ;};_gfc :=bindataFileInfo {_ee :"CNS-EUC-V",_ffd :11034,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491606,0)}; +_gee :=&asset {_da :_ceg ,_dc :_gfc };return _gee ,nil ;};func _efcg ()(*asset ,error ){_efga ,_cdaf :=_ege ();if _cdaf !=nil {return nil ,_cdaf ;};_eegg :=bindataFileInfo {_ee :"KSC-EUC-H",_ffd :9483,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492494,0)}; +_addd :=&asset {_da :_efga ,_dc :_eegg };return _addd ,nil ;};func _egcd ()(*asset ,error ){_fcgg ,_bagg :=_bfdc ();if _bagg !=nil {return nil ,_bagg ;};_ccbd :=bindataFileInfo {_ee :"UniCNS-UTF16-V",_ffd :617,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492702,0)}; +_cgbca :=&asset {_da :_fcgg ,_dc :_ccbd };return _cgbca ,nil ;};var _ddce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x6b\xe3\xd6\x1b\x05\xf0\xbd\x3e\x85\x96\xf3\x5f\xcc\x3f\xf7\x79\xb9\x2f\x02\x31\x50\x66\x18\x08\xc3\xb4\x25\x29\xed\xda\x91\xae\x83\xa1\x91\x8d\xe3\x2c\xf2\xed\xcb\x79\x8e\x9d\x42\x17\xc1\xd1\x89\xf4\x48\xfc\x4e\xae\xae\xef\xbe\xde\x7f\xbb\xdf\x0e\x97\xf1\xee\xf7\xf3\x71\x79\xec\x97\x71\x7f\xd8\xd6\x73\x7f\x3d\xbe\x9d\x97\x3e\x3e\xf5\xe7\xc3\x36\x0c\xa2\xe3\x7a\x58\x2e\xb7\xc3\xf8\x58\x5e\x76\xa7\x61\xc0\xf5\x8f\xef\xaf\x97\xfe\x72\xbf\xed\x8f\xa3\xf1\xbc\xf5\xed\x74\x3d\x77\x1c\xef\x1e\xfa\xf3\xe1\xf5\x72\x7e\x1f\x3f\xfd\xb2\x1e\x9f\xfa\xff\xc6\xb5\xef\x91\xff\x76\x5e\xfb\xf9\xb0\x3d\x8f\x9f\x7e\x3c\x7c\x84\x8f\x6f\xa7\xd3\xdf\xfd\xa5\x6f\x97\xb1\x45\xd6\xb7\x35\x3e\x87\xbb\xaf\x3f\x77\xa7\x5f\x77\x2f\x7d\xbc\x8b\x39\x9f\x7f\x3c\x7c\xe6\x29\xf1\x97\x3f\xfb\xf9\xf5\x70\xdc\x46\xf9\x7f\x4a\xfa\x6f\xfc\xc7\xfb\xa9\x8f\x72\x9d\xf0\xd7\xcf\xe3\xda\xc7\x74\x9b\x77\xff\xed\xeb\xf1\x6d\xbb\x8c\xaa\xde\xae\xa1\xf0\xb1\x97\xe3\xda\x5f\x4f\xbb\xa5\x9f\x77\xdb\x73\x1f\xc6\x71\x4e\x29\xa5\x2f\xe3\x9c\xeb\xf7\xef\x5f\xf0\x4c\xff\x39\x63\x68\xed\x7a\xe5\x61\x65\x72\xbb\x22\xa5\xfd\xfe\xcb\x98\x86\x39\x09\x8f\x05\xc7\x9a\xcb\x30\x27\x65\xa2\x48\xb2\xe8\x30\x27\x63\x62\x48\x6a\x69\xc3\x9c\x9c\x89\x23\x91\xa4\x3e\xcc\x29\x33\xca\x11\x69\xc3\xec\xc2\xa8\x44\x94\x0d\xc3\x2b\xa3\x1a\x51\x9d\x30\xbd\x31\x6a\xf1\x04\xc9\x31\x7e\x62\x34\x45\x64\x09\xe3\x77\x8c\x76\xd7\xe7\xc4\xf8\x27\x46\x4f\x11\x35\xc1\xf8\x85\xd1\x82\xc8\x52\xc5\xf8\x95\xd1\x1a\x91\x29\xc6\x77\x46\x3d\xa2\xdc\x30\x7e\xcf\x68\x1f\x51\xf3\x34\xcc\x42\x29\x09\x29\x4f\x53\x19\x66\x21\x96\x04\x96\x5b\xd6\x61\x16\x6a\x49\x68\x79\x49\x6d\x98\x85\x5c\x12\x5c\xde\x8a\x0f\xb3\xd0\x4b\xfc\x6a\x8a\xf1\xf4\x92\xf0\xca\x56\x31\x9e\x5e\x12\x5e\xb9\x18\xc6\xd3\x4b\xc2\x2b\xb7\x86\xf1\xf4\x92\xf0\x2a\xe2\x18\x4f\x2f\x09\xaf\xe2\x09\xe3\xe9\x25\xe1\x55\x0a\x8a\x15\x7a\x49\x78\x95\x09\xcd\x0a\xbd\x24\xbc\xaa\xa0\x5a\xa1\x97\x84\x57\x75\x54\x2b\xf4\x92\x7e\xed\x1f\xe3\xe9\x25\xe1\x55\x27\x54\xab\xf4\xd2\xf0\x6a\x82\x6a\x95\x5e\x1a\x5e\xcd\x51\xad\xd2\x4b\xc3\xab\x55\x54\xab\xf4\xd2\xf0\x6a\x13\xaa\x55\x7a\x69\x78\x4d\x8a\x6a\x95\x5e\x1a\x5e\x93\xa3\x5a\xa5\x97\x86\xd7\x54\x51\xad\xd2\x4b\xc3\x6b\x9a\x50\xad\xd2\x4b\xdb\xed\x7f\x15\xf3\x09\xa6\x13\x33\x47\xb9\x4a\x31\xdd\x31\xab\x68\x57\x49\xa6\x41\x86\xf6\x71\x0b\x9a\xe9\xc2\x4c\xd1\xaf\x12\x4d\x57\x66\x19\x05\x2b\xd5\xb4\x33\xab\x68\x58\xc9\xa6\x7b\x2e\x92\x84\x8a\x8d\x6e\x96\x98\x29\x3a\x36\xc2\x99\x30\xcb\x28\xd9\x28\x67\x7a\x5b\x60\x69\x98\x8d\x74\x16\x74\x62\x09\x35\x1b\xed\x8c\x6b\xd3\x0c\x3d\x1b\xf1\x8c\x8b\xd3\x32\x8a\x36\xea\x19\x57\xa7\x35\x34\x6d\xe4\x33\x2e\x4f\x4f\xa8\xda\xe8\x67\xf4\x73\x43\xd7\x46\x3f\xa3\x9f\x67\x94\x6d\xf4\x33\xfa\x79\x43\xdb\x46\x3f\xa3\x5f\x16\xd4\x6d\xf4\xb3\xe5\xf6\x56\xc0\x3d\xe8\x67\xf4\xcb\x05\x85\x1b\xfd\x8c\x7e\xb9\xa1\x71\xa3\x9f\xd1\xaf\x08\x2a\x77\xfa\x39\xfd\x8a\xa1\x73\xa7\x9f\xd3\xaf\x14\x74\xee\xf4\x73\xfa\x95\x86\xce\x9d\x7e\x4e\xbf\x2a\xe8\xdc\xe9\xe7\xf4\xab\x8e\xce\x9d\x7e\x4e\xbf\x5a\xd0\xb9\xd3\xcf\xcb\xed\x55\x86\x7b\xd0\xcf\xe9\xd7\x04\x9d\x3b\xfd\x9c\x7e\xcd\xd1\xb9\xd3\xcf\xe9\xd7\x0a\x3a\x77\xfa\x39\xfd\xda\x84\xce\x9d\x7e\x4e\xbf\x49\xd1\xb9\xd3\xcf\xe9\x37\x39\x3a\x77\xfa\x39\xfd\xa6\x8a\xce\x9d\x7e\x4e\xbf\x69\x42\xe7\x4e\x3f\xdf\xf3\x5d\xab\xe8\x3c\x5f\xf7\x90\x74\x7b\xff\xa6\x61\xce\xf4\xcb\xdc\x15\x52\x45\xe7\x99\x7e\x59\x99\x4d\xe8\x3c\xd3\x2f\x87\x9f\x8a\xa2\xf3\x4c\xbf\xec\xcc\x32\x3a\xcf\xf4\xcb\x99\x59\x45\xe7\x99\x7e\x39\xfc\x54\x13\x3a\xcf\xf5\xba\x9f\x2d\x91\x69\xd5\xd8\xd5\x6e\xbb\x17\x7e\xc7\xfe\xfe\xb1\xe7\x2e\x6f\xe7\x73\xdf\x2e\xb1\xbb\xc7\xc6\x8a\xfd\xf2\xb0\xf5\x8f\x6f\x0a\xa7\xe3\x09\x57\xc5\xcf\x3f\x01\x00\x00\xff\xff\xb5\x37\x77\xc2\x55\x08\x00\x00"); +func _cadc ()([]byte ,error ){return _gb (_ffed ,"UniJIS-UCS2-H")};func _gfd ()(*asset ,error ){_fegb ,_dbge :=_fagc ();if _dbge !=nil {return nil ,_dbge ;};_fada :=bindataFileInfo {_ee :"Hiragana",_ffd :551,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492288,0)}; +_feec :=&asset {_da :_fegb ,_dc :_fada };return _feec ,nil ;};func _gb (_ad []byte ,_gaf string )([]byte ,error ){_cc ,_b :=_ga .NewReader (_g .NewBuffer (_ad ));if _b !=nil {return nil ,_e .Errorf ("Read %q: %v",_gaf ,_b );};var _bd _g .Buffer ;_ ,_b =_a .Copy (&_bd ,_cc ); +_eg :=_cc .Close ();if _b !=nil {return nil ,_e .Errorf ("Read %q: %v",_gaf ,_b );};if _eg !=nil {return nil ,_b ;};return _bd .Bytes (),nil ;};func AssetInfo (name string )(_ff .FileInfo ,error ){_bdea :=_f .Replace (name ,"\\","/",-1);if _agcg ,_caaf :=_aaafd [_bdea ]; +_caaf {_cffb ,_cbga :=_agcg ();if _cbga !=nil {return nil ,_e .Errorf ("AssetInfo %s can't read by error: %v",name ,_cbga );};return _cffb ._dc ,nil ;};return nil ,_e .Errorf ("AssetInfo %s not found",name );};var _ebg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9a\x4f\xcb\x24\x47\x72\xc6\xef\xfd\x29\xea\xb8\x3e\xd8\x53\x95\x19\x7f\x32\xa1\x69\x30\xd2\x82\xc5\xb2\x5e\x63\x79\x6d\x83\xf1\xa1\xab\xba\x5a\x0c\x58\xef\x0c\xef\x8c\x0e\xfa\xf6\x26\x7e\x4f\x4b\x62\xed\x85\x3d\x88\x90\x1e\x65\x46\x45\x46\xc6\x9f\x27\xb2\xdf\x0f\xdf\x7c\xf7\xed\x77\x6f\x1f\xbf\x2e\x1f\xfe\xe5\xfd\xd3\xf1\xfd\xf9\x75\x79\x7e\x7c\x7b\xbc\x9f\x5f\x3e\xfd\xf4\x7e\x9c\xcb\x7e\xfe\xf0\xf1\xed\x72\xd9\xda\xf2\xf8\x78\x7c\xfd\xe5\x3f\x11\xc7\x8f\xf7\xcf\x97\x4b\xed\xff\xfe\xe7\x2f\x5f\xcf\x1f\xbf\x7b\x7b\x7e\x5a\xba\xd6\x3d\x7e\xfa\xfc\x5a\xbb\x2c\x1f\xfe\xf5\xfc\xe1\xe3\x97\xaf\xef\x3f\x2f\xbf\xfb\xc7\xc7\xa7\xfd\xfc\xbb\xe5\x71\x3e\x0b\xff\xd3\xfb\xe3\x7c\xff\xf8\xf6\xc3\xf2\xbb\x3f\x7c\x7a\x3f\xef\xdb\xaf\xff\xe3\xfb\x9f\x3e\x7f\xfe\x9f\xf3\xc7\xf3\xed\xeb\xb2\x82\x9d\x6f\x0f\xe4\xe5\xc3\x37\x7f\xbc\x7f\xfe\xe7\xfb\x8f\xe7\xf2\xe1\x0f\xdf\x7f\xf3\xf7\xff\x04\x0a\xf8\xef\xe7\xfb\x97\x8f\x9f\xde\x96\xf9\x0f\xeb\x1a\xbf\xc1\xff\xf6\xf3\xe7\x73\xd9\x5e\x9b\xff\xfc\xdd\xb7\x7f\x7a\x3e\xbf\x9c\x5f\x97\xb6\x4a\xf1\x87\xff\xfc\xf3\x77\xdf\x2e\xff\xb5\x2d\xdb\xba\x34\xb7\xb5\xfd\xf7\x6b\xe9\x7f\xfc\xf1\xd3\xe3\x7c\x7d\xfd\xb2\xe9\x2c\xc7\xa7\xc7\xf9\xe5\xf3\xfd\x38\xdf\xef\x6f\x3f\x9c\x97\x65\xb9\xb6\xad\x6d\xb7\xe5\x9a\xbf\xcf\xdf\xdf\xca\xc8\xff\xb3\xe2\xb2\xad\xeb\x6b\xeb\xc7\x87\xa0\x5f\xb6\xb4\x2d\xcf\xdb\xb2\xad\xdb\xe5\xda\x9a\x90\x16\x7e\x5b\xb6\xe9\x97\x6b\xeb\x42\x7a\xad\x69\x61\x97\x6b\x33\x21\xe6\xfd\xb6\x74\x1f\x85\xb8\x83\xd4\x1a\x5b\xe7\xe5\xda\x5c\x6b\xbc\xdd\x6f\x8b\x79\x69\xf6\xbe\x82\xf4\x79\x5b\x2c\x40\x4c\x6b\x7c\xdc\x16\x4b\x90\x10\x92\x85\xf0\xf5\x90\x9e\x08\xbb\x2d\xbe\x95\xe6\x14\x92\xf1\xbc\x2d\x3e\xf2\x72\x6d\x43\xc8\x68\x76\x5b\x22\x02\x24\x84\xc4\x6d\x89\x5c\x41\x86\x90\x67\x21\xf5\xad\xd1\xb5\xab\x6c\x8e\x2c\xcd\x53\x7a\x66\x21\xe9\xa5\xf9\x2e\xe4\x9e\xfd\xb6\x0c\x4e\xb1\x0b\xd9\x33\x6e\xcb\xec\xe5\x8d\x43\xc8\x51\x87\xd9\xd6\x56\x1f\x3b\x5c\x50\x02\x79\xbf\x5c\xfb\xca\xaa\xbe\xca\xd3\x23\x2e\xd7\x2e\xe7\x77\x39\x7f\x1b\xeb\xe5\xda\xe5\xfd\xde\x80\x5a\xda\xe5\xda\xe5\xfe\x8e\xfb\xb7\x1e\xe3\x72\xed\xf2\x7f\xc7\xdb\x9b\x45\xbb\x5c\xbb\xdc\xdd\x1d\xc8\xbd\xd4\xcb\x73\x3d\x80\xc2\x4b\xbd\x5c\xd7\x13\x28\xad\xd4\xcb\x77\x1d\x2f\x6c\xa3\x97\x7a\xb9\xa1\xe3\x86\x6d\xf6\x52\x2f\x3f\xf4\x3b\x31\xb0\xb6\x52\x2f\x47\xf4\x1d\x68\xab\x63\x77\x79\xa2\x1f\x40\x6d\x2b\xf5\x0f\x41\x0f\xa0\xbe\x96\xfa\x53\xd0\x09\x64\x6b\xa9\x7f\x0a\x7a\x0a\x9a\x71\xb9\x9a\xfc\x65\xf8\xab\xf9\x5c\x2f\x57\x93\xbf\x6c\x53\x20\x0e\xbb\x5c\x4d\xfe\x32\xfc\xd5\x32\xc7\xe5\x6a\xf2\x97\x29\x5c\x47\xb6\xcb\xd5\xe4\x2f\xc3\x5f\x6d\x56\x80\x98\xfc\x65\xf8\xab\xaf\x51\xea\xe5\x2f\xc3\x5f\x7d\xf3\x52\x2f\x7f\x19\xfe\xea\xcd\x4a\xbd\xfc\x65\xf8\xab\x77\x2b\xf5\x72\x8e\xe1\x9c\x6e\xbd\xd4\xcb\x39\xb6\xdb\xb3\x32\xa4\x97\xfa\xdd\x57\xa0\x12\xb6\x6d\xac\x72\xad\xaa\xe4\xe9\x9e\x09\x14\x82\xe2\xb6\xf4\xe0\x40\xbb\x27\x50\x04\xd9\x56\x5f\xdc\xe3\x05\xe5\x6d\x49\xe2\xcb\xf6\x18\x40\x18\xe1\xb3\x36\xea\x3a\x8c\xeb\xa8\x68\xb8\x5c\x4d\xd7\x61\x0f\x2b\x28\x37\x2f\xa8\x6c\x7c\x89\x6e\x78\xe2\x21\x53\x1f\xa5\xbe\x67\xb0\x51\xea\x11\x39\x57\x56\xc5\x04\x42\x7d\x8e\xd2\xa5\xab\xb5\xb3\x1d\xb7\xa5\x8f\x35\x81\x1e\x82\x1e\x40\x0d\xe8\x04\x62\xe3\xa8\x9c\x36\x05\x80\x3d\xf3\x7e\x5b\xba\xd4\x3f\x73\x17\xb4\x03\x35\xa0\x43\x50\x6d\x9c\x15\x13\xae\x30\x91\xe8\x73\x76\xa0\x26\xa8\x15\x64\x01\xd4\x81\x7a\xb2\xca\x0a\xea\x43\xd0\xf8\x6d\x55\x55\xa6\xab\xaf\xe5\x09\x5b\xcb\x39\xbe\xe2\x09\x89\x9e\x15\xbe\xbe\xba\xbe\xe8\x47\xad\xea\x82\x1e\x82\x1e\x75\xb5\x7d\x03\x3a\x81\x54\x10\x2b\xf9\x5c\xe1\xeb\x5b\x55\x4d\x5b\x47\x99\xba\xb9\x09\xb2\xdb\x62\xbd\xd2\xdd\x37\x2a\xa9\x84\x6d\x95\xc8\xbe\x11\x13\xbe\x55\x1c\xd8\xd6\xb5\x6a\x08\x1a\x6c\x74\xa0\x29\xe8\xce\x2a\x6d\xdc\x81\x62\x65\x15\x50\xc8\x88\x12\xb6\x61\xfd\x16\x4d\x50\xab\x7a\xba\x62\x6a\x74\x41\x65\x44\xaf\x90\xf3\x2d\x64\x44\x09\xeb\x43\xba\x52\x90\xec\x9a\x40\xb2\x2b\x76\x56\x25\xd0\x21\xa8\xfc\xb5\x99\xd4\x3f\x04\x95\xbf\xfa\xdc\x80\x4e\x41\x27\xab\x04\x3d\x81\x12\xeb\xb9\xb4\x2d\x65\x7d\x62\xbd\x61\x57\xca\xfa\x12\xd6\x27\x76\xa5\xac\x4f\x5c\x68\x38\x3a\x65\x7d\x62\xfd\xc4\xd4\x94\xf5\x39\x59\xa5\x8d\x77\x41\xe5\x42\x5b\xb5\x51\x2e\x2c\x61\x9b\x69\xa3\x0e\x94\x0f\x56\x69\xa3\xac\xe7\xb6\xab\xff\x55\xfb\xfd\xa5\xcb\xfe\xb5\xc6\xeb\x2a\x5c\x12\xb6\x11\x1f\x4d\x71\xdb\x2a\x56\xcd\x36\x41\x26\x28\x58\xb5\x01\xa5\x20\x6c\xdc\x1a\xd0\x2e\x68\x07\x9a\x40\x87\x20\x9c\x5e\xb5\xcc\x1b\x89\x28\x61\xd6\xa4\x1e\xb3\x5b\x97\x11\x15\x45\xad\xcb\x88\x12\x66\x8d\x8d\xbd\x0b\x22\xba\x1d\xf5\xfd\xb5\xf1\xa4\xb9\x63\x57\xe7\xb6\x9a\xa1\x2b\x51\x6f\xd2\x65\x9d\x55\x1d\x48\x07\x2a\x61\xbe\x25\x90\x0b\xe2\xb6\x52\xab\x42\x90\xb8\xc3\x00\xd2\x19\x4b\x98\xcb\x2e\xd3\x19\x8d\x33\xa6\x20\x9d\xd1\xb0\xab\x71\x20\x93\x5d\xa4\x98\x37\x74\x29\xc5\x1a\xf9\xe4\x9d\x55\xca\x27\x84\x6d\x29\x68\x0a\xc2\x08\x22\xb2\x29\x9f\x9a\xf2\x9c\x7c\x6a\xca\xf3\xe6\x4f\x56\xb1\x31\xa8\x19\x08\xdb\x12\x7f\x29\xeb\x10\xe6\xc6\xb1\x95\x75\x08\x73\x05\x80\xb2\x0e\x61\xf0\x01\x6f\x21\x7f\x05\xd6\x07\x67\x0c\x59\x5f\x99\x66\x1e\x18\x11\x32\x35\x30\x35\x31\x35\x64\x2a\x89\xe8\x32\x55\x89\xd8\x2a\xad\x6c\x1b\xac\x4a\x99\x5a\x09\x63\xb1\xa2\x3e\xf5\x45\x92\x27\x56\xac\x57\xf2\x20\x6c\x1b\x9c\x51\xc9\xd3\xe0\x69\xa1\x00\x48\x19\x41\x0e\x6c\x14\x08\xb5\x62\xef\x82\x66\xc5\xaa\x5a\xb1\x1b\x95\xa5\xb1\xca\x54\x59\x4c\x95\x85\xdb\x36\x55\x16\x23\xeb\x3a\x81\x69\xca\x3a\xc4\xab\xbc\x59\x3e\x04\x9d\xbf\x96\x37\xb5\x75\xf7\xa6\x82\x3a\x80\x5c\x90\xff\x5a\xde\x1c\x76\xe8\xe2\xa6\x2a\x6f\xae\x1c\x42\xbc\x6a\x99\x2b\x87\x9c\x84\x51\x2d\x73\x25\x0c\xe2\x75\x20\x6f\xc4\x97\xcb\x88\x51\x1b\x45\x24\x3c\xaa\xdb\x98\x05\x90\xba\x0d\xc2\xb6\x48\x20\xfc\x15\x84\xaf\xa1\x2b\x14\xbe\x08\xdb\x52\x10\x5f\x84\x94\x98\x93\xee\x22\x25\x9e\xca\x8e\xea\xce\x9e\xca\x0e\x84\xbb\xb3\x4a\xd9\x91\xa1\xab\xad\xb4\x4a\x05\x13\x22\x94\xdb\xa9\x60\x82\xe0\x58\xb4\xb2\x4b\x04\xc7\x87\xa0\xe2\x16\x2e\x42\xe8\x10\x42\x4b\xc2\x57\x9c\xc7\xe1\x3c\x36\xc8\x0e\x71\x1e\xdf\xc9\xed\x49\x5a\xed\xca\x6d\x84\xab\x7e\xed\xca\xed\x1d\xbb\x26\xb1\xba\xcb\x2e\x84\xcd\xd6\x80\xb4\xb1\xd4\xfb\x5a\x83\x89\x8b\xcd\xf8\x51\x57\xeb\x2b\xa6\x1e\xba\x5a\x44\xaa\x4e\x1c\xba\xda\x43\x1b\x69\xc5\xe2\x3c\xfe\x60\x23\x44\xd5\x1f\xda\x88\xf0\x95\x14\x7d\x68\xe3\xc3\xb5\xaa\x9c\xf3\x50\x9d\x40\xf8\x46\x2a\x3c\xd4\x8a\x1f\x95\x30\xd5\x86\x0a\x52\xc2\x20\x32\x8a\xf3\xf8\x23\xb5\x11\x23\x1a\xd6\x8b\x19\xf9\x59\x11\xed\x8d\x84\x39\x15\xd1\x08\xf7\xa2\xb3\x7e\x2a\xa2\x11\xde\x8b\xf3\xf8\xa9\xd6\x82\xf0\x4e\xe4\x88\x2c\xf9\xb3\x6a\xb4\x77\xae\xf6\xa9\x1a\x8d\x48\x71\x8b\x67\xc7\xae\x67\x95\xa1\xca\xc4\x82\x54\x86\x10\xde\x6b\x6e\xf0\xa7\xca\xd0\xb3\x12\xce\x3b\xd5\xe4\xa9\x1e\x8e\x70\x23\xdd\x9f\x2a\x30\x4f\x19\x51\x81\x19\x22\x5e\xb1\x26\xea\xab\x3b\xc7\x9a\x2f\x68\xbb\x2d\xc1\xa5\xc5\x4a\x77\x0e\x68\x90\x5b\xd5\xe8\x10\x0d\x8a\xad\xb2\xcb\xad\xd2\x2a\x36\x5a\x93\x84\x43\x41\x63\x23\xd3\x02\xd6\xe0\x56\x0d\x3b\xc4\x1a\x24\xbc\x6f\x6c\x0c\xad\x42\xbd\xd7\x81\x42\x8d\x35\x9a\xa0\xfc\xdb\xad\x38\x54\xa5\xa2\xd7\x05\x7a\x54\x03\x8a\xce\x05\x4a\xe4\x5a\x37\x1f\x9d\x22\x18\xd4\x32\x67\x38\x0c\xd5\x32\x89\xec\xd5\xf2\xc2\xe8\xe1\x61\x35\x6c\x7a\x96\x3b\xc3\xda\x14\x34\x51\x3f\x80\xee\x40\xd2\xc5\x17\x55\xb8\x82\x62\xe3\xa3\x66\xea\x50\xb1\x91\xf0\x81\xef\x54\x6c\x82\x49\xda\x47\x85\x5f\x78\xd7\xc6\x57\xc3\x76\xa0\x2e\x68\xb0\x0a\xf5\x14\x1b\x09\xb3\x4a\x9e\xf0\x7e\x17\x74\x67\xd5\x04\xda\x05\x51\x92\x9a\x20\x9c\xee\xd5\xc3\x7d\x54\x4f\x0a\xa7\x87\x4b\x98\x75\x8c\x20\xcf\xc3\x0d\xeb\xb9\x53\x37\x59\x4f\x2b\xb6\x8e\x5d\x26\xeb\x8d\xc1\xbd\xa8\x5a\x38\xfc\x5a\xc2\x18\x9d\xc2\x5d\x07\x2a\xe1\x63\xa2\xcb\x9b\x20\xce\xd8\x05\xe9\x8c\xe4\xe6\x98\xf8\x8b\xdc\x94\x30\xeb\x58\xcf\xe8\x14\x5e\xad\xc9\x27\x11\xe9\xa9\x63\xd3\x5a\xac\x28\x64\x38\x89\x28\x21\x82\x13\x9e\x3a\x36\x89\x38\x65\x57\xea\x40\xe2\x78\x35\x3b\x87\x0a\xbd\x84\x59\xd5\xc5\x08\x05\x40\x14\x89\xf3\xd9\x05\x99\x20\xfc\x55\x14\x32\x82\xfa\x13\x51\x35\xc7\x67\x17\x94\x82\x68\x1a\xc5\x07\x22\x78\xb2\x88\x20\x53\x66\xd5\xd8\x08\x65\x4a\x88\xc4\x55\x71\x8e\x50\x98\x20\x9c\x41\x26\x42\x61\x12\xf0\x3a\xab\xf6\x19\xd1\x65\x17\x35\x63\xca\x54\x85\x09\xc2\x8c\x90\x8b\x2e\x53\x3b\x76\x99\x20\xd9\x45\xe7\x32\x9c\xa3\xce\x15\x51\xd1\xe2\xd3\xb1\xab\x1f\x82\x88\x9c\xc0\x2e\x45\x4e\x10\x39\xd3\xf1\x97\x22\x07\x61\x1b\x79\x1e\x8a\x1c\x84\xcf\x40\x17\x1d\x22\xc2\xd4\x3e\xb1\xde\xe4\x09\xe3\x1e\xc9\xf3\xb0\xbb\x20\xc6\x9d\xd7\x46\xc2\x37\x88\x9c\x19\x7c\x51\x91\x13\x8a\x9c\xe0\x40\x8a\x9c\x20\x72\x68\x40\x11\x8a\x9c\x50\xe4\x04\x67\x54\xe4\x44\x11\x42\x9f\x29\x5d\x3a\xb6\x93\x43\xa4\x7b\xb8\x8c\x70\x3c\x91\xf8\xde\xe5\x09\xc6\xc3\x4d\xa6\xba\x3c\xe1\xdc\x50\xca\x08\xdd\x10\xb4\xd1\x64\x04\xb4\x51\xc2\x27\x99\x16\xa1\xf8\x82\x36\x1a\x65\x37\x42\x07\x0a\xbc\x3a\xb4\x51\x5e\xa5\x7d\xaa\xc6\x46\xc8\xab\xb0\x2c\xa3\x02\x44\xe8\x8c\xb0\x2c\x4b\xbc\x1a\x3a\x23\xb5\x7f\x0e\xad\x92\xa3\x21\x97\xa6\x03\x85\x8e\x1d\xf8\x7e\x48\xbd\x8e\x0d\xb9\x34\x1d\x28\x74\xec\x12\xf1\x4a\x05\xd5\xeb\x08\x8e\x3d\xf4\x45\x1d\x1b\x0a\x6a\xb2\x3e\x75\xec\xd4\xb1\xd9\xa8\x3e\x82\x30\x1b\x1c\x5b\x7d\x04\xf1\xea\x10\x91\xba\x47\xca\xf6\x1c\x18\xa1\xb2\x8d\x30\xd3\x81\x54\xb6\x43\xdc\x55\x81\x99\x3a\x76\x32\xb6\x52\xa3\x23\x75\xec\xe4\xb6\xa7\xd4\xeb\xd8\x8c\x87\x26\xeb\x55\x3a\xe0\x62\x3e\x6b\x6c\x0d\x71\x31\x09\x53\x33\x4b\x55\x80\x84\x5b\x4c\xaa\x5c\xc2\x2d\x24\xcc\x30\x35\x95\xee\x59\x29\x1e\x6b\xb1\xd2\x48\x35\x0a\x84\x59\x31\xc9\x48\x35\x8a\xd4\xb0\xf7\xfa\xe2\x2e\x68\x67\x63\x03\x3a\x04\x1d\xbf\x90\xcb\x48\xd5\x89\x54\x9d\x98\x1d\xe8\x14\xf4\x64\x23\x10\x2f\xb2\x12\x66\xf4\xf0\x54\x3b\xc9\x9a\xec\x62\x5d\x1d\xe8\x29\x88\x4b\x9b\x40\xa6\x8d\x25\x62\xdd\x30\xd5\xb4\xb1\x44\x26\xbe\x4f\x93\x27\x2a\xb7\x63\x6d\xeb\xdf\x6e\xc5\xa9\xd4\x47\x98\x51\xfb\xd3\xe4\x28\x55\x83\xa9\x4f\x0d\x41\x77\xf4\x62\xb6\x52\x3f\x35\x1e\x52\xe8\x45\x80\x25\x02\xbe\x18\x69\xf2\x0a\xfc\xda\xe5\x3b\xb5\x29\x44\xac\x8d\xab\x51\x9b\x4a\x7a\x92\xcb\x51\xea\x49\x59\x65\x24\x56\x1a\x63\xaa\x8c\x20\xcc\x57\xae\x99\xd7\x9c\x48\x47\x17\x8d\x31\xfd\xa5\x8b\xf1\x70\x45\xbd\xf2\x1c\x62\x1e\x2b\x0d\x48\xc4\x5c\xc2\x1c\xba\x21\x62\x2e\x11\x2b\x55\x3d\x95\xc1\x08\xf3\x8d\x90\x51\x06\x67\x45\x77\xac\x64\x5d\xe6\x0b\xaa\xa4\x4e\xb9\x50\xd1\x0d\xc9\x8f\x95\x1c\x10\xc9\x8f\x11\x6c\xa4\x96\x0d\xe9\x1a\x9a\x2b\xa9\xea\x43\xa9\x3f\x2a\x5d\x83\xa7\x9b\x18\x4a\x57\x84\x39\x0d\x68\x28\x5d\x87\x1e\x65\x86\x56\x35\x41\xc1\xc6\x04\x92\x7a\xb2\xce\xe9\x49\x43\x76\x21\x62\xab\xa9\x25\x86\xb2\x0e\xa1\x61\x2d\x86\xb2\x0e\x11\xdb\xeb\x8b\xbb\x20\x6e\xdb\x03\xe8\x10\xf4\x60\x95\x01\x9d\x82\x18\x9d\x60\x6c\x1a\x64\x62\xf2\xb3\x00\x8f\x6b\x31\x95\x88\x08\x73\x2a\xcb\x54\xdf\x9d\xa4\x98\x4a\xf8\x54\x8a\x21\x34\x73\xc5\x54\x8a\x4d\xd3\x2a\x74\x29\xe4\x10\xe6\x38\x7a\x2a\xe4\xa6\x3c\xc1\x75\x4c\x79\x02\x91\x2a\x5c\x53\x9e\x60\xc0\x8a\x06\x1f\xd0\x80\x15\x77\x52\xac\x11\x00\x77\x7b\x41\xc5\xaf\xb7\xd6\x81\x70\xf4\x9d\x91\xae\x51\x89\xef\x8a\x1c\x84\xf1\xa8\x1c\x77\x45\x0e\xbf\x62\x44\xdf\xd8\xc8\xd4\x22\x61\xdb\x10\xa4\x8d\x98\xda\x49\x98\xbb\x4c\xbd\xeb\xd2\xe0\x88\x77\x99\x7a\x2f\xdf\x47\x6f\x82\x0e\x41\x1c\x9b\xaa\x7e\x17\x7f\x42\x44\xef\x52\x7f\x0a\xe2\x3a\xa8\xea\x9a\x18\x63\x6f\xd8\xd5\x0d\xc8\x04\x91\x0a\x43\x90\x0b\xc2\x2e\x28\xd5\xae\x4b\xdb\x75\x69\x23\x80\x86\xa0\xc1\xaa\x09\x34\x05\x4d\x56\x0d\xa0\xbb\x20\x58\xc3\x4b\x3d\xc1\xb4\x17\xa9\x89\x4e\x90\xef\xa2\xc6\x7b\x27\xbe\xa6\xa0\x43\x50\x55\x13\x5e\x24\x62\x17\xc1\x41\x98\x4f\x0e\xc4\xbb\x58\xec\x5c\x5a\x27\xbe\x76\x5d\x1a\xc2\x9c\x4a\xbc\xeb\xd2\x10\xe6\x14\xd4\xdd\xba\x20\x67\x23\xd6\xab\x16\xee\x14\x3e\x9f\xd2\xa5\x33\x12\x72\xcc\x6f\xb1\x2b\xe4\x76\x85\xdc\xd4\x46\xd9\x45\x49\x63\xa4\x8b\x5d\x25\x8d\xdf\x1b\x2c\x48\xab\x5d\xcc\x08\xa1\x27\x83\xd8\x55\xd2\xf8\xbd\x21\xf8\xa5\x29\x76\xd7\x17\x79\x17\xe3\x15\x21\x76\xd1\x20\x46\xf3\xe8\x70\x0b\x8d\xe6\xc1\x1c\x1e\x56\xc3\x6d\x68\x0e\x97\xb0\xd8\x0c\x28\x05\x25\x50\x00\x0d\x41\x93\x8d\x82\xee\x82\xee\xac\x1a\x40\xbb\xa0\x93\x55\x82\x9e\x82\x9e\x90\xcb\x3a\xd0\xa1\x66\x76\x40\x7a\xa3\x09\x6a\x82\x1a\xb7\x9d\x40\x5d\x90\xde\x40\x1a\x90\x0b\xe2\xc5\x8b\x09\xea\xe8\xb2\xbe\xb8\xaf\x5e\x4a\xe2\xe8\x32\x15\x1e\xcc\x4b\x49\x1c\xe2\xc1\x88\xb0\x86\xf5\x8a\x1c\x84\x05\xd9\x71\x68\xa8\x3a\xaa\x7d\x86\x46\xaf\x43\xed\x93\x5f\x0c\x2d\x3a\x46\x28\x26\x0e\xc3\xae\x17\x24\xbb\x78\x18\x0d\xb2\xe3\x50\x4c\x20\x2c\x18\x4b\x0e\xf5\xc7\xa3\x42\x23\x34\x67\x1d\x26\xbb\x44\x8d\x89\xfb\x43\xfd\xf1\x70\xa9\xcf\xbf\x6c\xc5\x11\xff\xaf\x13\x1f\xae\x8f\xbb\x3e\x8e\x0e\xb1\xe4\xc3\x7f\xa3\x78\x87\x98\xed\xe1\xbc\x15\x91\x3b\x87\x3a\xde\x51\x5d\x2e\x8c\x42\x7c\x88\xc6\x22\x2c\xe8\x78\x87\x68\xec\x41\x13\x34\x12\xe5\x50\x13\x44\x58\x98\x36\xca\x08\xba\x94\x26\x94\x43\x5d\xea\xa0\x4b\x85\x71\x5c\x75\xa9\x83\xba\x25\x6e\x78\xa8\x6e\x1d\x7a\x9e\x94\xa9\xf9\x5a\xc5\x65\xc1\x92\x0f\x75\x16\x84\x85\x82\x48\x9d\x85\xe7\xa3\x10\x4b\xd6\xf3\x51\x3c\x78\x96\xe7\x3d\x2c\x1e\x2a\x52\x8f\x22\xb8\x61\x94\xc5\x87\x5e\x22\x10\xde\xe9\x9e\x0f\x91\x5d\x5e\x81\x42\xad\x52\xaf\x40\x71\xd6\xd8\x10\xce\xa0\x71\xf2\xa6\x2c\x11\xe2\x60\xa7\x46\x08\x9e\x7c\x42\xa1\xa6\x27\x9f\x78\x0a\xaa\xcc\x4f\x3d\xc0\xe4\xaa\x9f\xaf\xcb\x85\xf9\xfa\x03\x00\x9e\x43\x62\xd4\x81\x52\xcf\x21\xd9\xa8\x5b\xb3\xbc\x9a\x3c\xe4\xbf\x84\x67\xd1\x94\xd4\x7b\x7e\xf2\x84\x1b\xb3\x06\x8d\x6c\x38\x47\xc2\x33\x59\x85\x73\x92\xa7\x95\x5c\x2b\x46\x53\x6f\x27\xd9\x2b\xf7\x72\xad\x80\xcc\xde\x5f\x10\x74\xa0\x38\x6b\x76\xf2\x30\xbb\x36\x56\xad\x49\xbd\x9d\xa4\x55\x7d\xc8\xad\x12\x25\x8d\xfa\x20\x11\x56\xb5\x39\x79\x47\xb9\xa6\x95\xa3\x73\xab\xe0\x4e\xc3\xd1\x12\x11\x5a\x85\xa3\x93\xe7\x94\x6c\xc5\x59\x53\xcf\x29\xe9\x82\x5a\x19\xa1\x61\x3d\x19\x1b\xb2\x6f\xb5\x8a\xd9\xe1\x25\xac\xd5\x3d\xa6\x46\x08\x89\xec\x73\x00\x85\x20\x4c\xed\x5a\x95\x82\x4e\x56\x15\xa4\x49\x20\xb3\x4a\x46\xda\x9a\x05\x51\x32\x24\xac\x99\xa0\x09\x64\xac\xea\x75\x43\x62\xb3\x12\xd6\xaa\x5c\x67\x9a\x56\x55\x6d\x4e\xab\x20\x4f\xd1\x4d\x09\xa3\x4b\xa5\xe8\x66\x42\xeb\x92\x29\x3f\x45\xeb\x72\x54\x7c\xa5\x61\xfd\x20\xbe\x24\xd2\xb9\xda\x41\x7c\x25\xb4\x2e\xa1\x4f\x29\x5a\x27\xe1\xeb\x60\x63\x4a\xd7\xeb\x8f\x21\x6a\x95\xe8\x53\xbe\xfe\x3e\xa2\xfa\x62\x8a\xa6\x48\x64\x16\x75\xcd\x3b\x03\x90\x44\xf7\xca\xda\xbc\xf3\xfb\x6b\xc2\x49\x52\x97\x26\x4e\x22\xd1\x49\xf7\xbc\x93\xdb\x09\x43\xc8\xac\x1c\x4a\x31\x84\xdc\x05\x55\x3e\xa6\x9a\x4d\xd2\x3a\x72\x54\x0e\x25\xfd\xe3\x25\xfa\xd8\xb4\x8a\xf0\x25\x91\x73\x14\x0b\x4a\x25\x72\x92\x8f\x39\xa3\xfd\x45\x0d\xac\x7f\xff\xf1\xfe\xf9\xf2\xeb\x9f\xf4\x1c\x3f\xbd\xbf\x9f\x6f\x5f\xf9\x03\x22\xfe\x78\x67\x79\x9c\xcf\x8f\x6f\xe7\xaf\x7f\x8c\xf4\xf9\xd3\xe7\xda\xc5\x3f\xff\x1b\x00\x00\xff\xff\xd3\xfe\x56\x0b\xb8\x24\x00\x00"); +func _gffc ()(*asset ,error ){_adcf ,_cdfc :=_dcdf ();if _cdfc !=nil {return nil ,_cdfc ;};_adae :=bindataFileInfo {_ee :"UniGB-UTF8-H",_ffd :235585,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492783,0)};_cfece :=&asset {_da :_adcf ,_dc :_adae };return _cfece ,nil ; +};var _dcbcf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x98\xc1\x6e\x23\xb9\xd5\x85\xf7\x7e\x8a\x5a\xce\xbf\xe8\xdf\xe4\xbd\xa4\x48\x02\x0d\x03\x41\xf7\x22\x1e\x60\x92\x20\x4e\xcf\x04\x08\xb2\x28\x49\xac\x86\x80\x58\x16\x64\x7b\xd1\x6f\x1f\xdc\xf3\x29\x0e\x26\x8b\xc1\x99\xfe\x4c\xde\xba\xe7\x90\x45\x96\x7d\xff\xe5\xf1\xeb\xe3\xf9\xf4\xb6\xdc\xff\xe5\xfa\x72\x78\x9a\x6f\xcb\x76\x3a\x1f\xaf\xf3\xf5\xe5\xfd\x7a\x98\xcb\x7e\x7e\x3f\x9d\xef\xee\xb2\x2d\xc7\xd3\xe1\xed\x3f\xff\x94\x1c\x9e\xd7\xcb\xdd\xdd\xfd\xb7\xf3\xe9\xe7\xc7\xa7\x4f\xdf\xbe\x3c\xd9\xa7\x3f\x2e\xef\xaf\xf3\xc6\xbf\x3c\x7e\x7d\xfa\xf1\xfa\x36\x9f\x1f\xcf\xdb\xcb\xe2\xcc\x3f\xbe\x5f\x6e\x35\x96\xe5\xfe\xaf\xf3\xfb\xe9\xf5\xed\xfa\x63\xf9\xe9\x0f\xc7\x97\xfd\xfc\xbf\xe5\x38\xb7\xe0\x7f\xbe\x1e\xe7\xf5\x74\xfe\xbe\xfc\xf4\xf3\x7a\x59\xcf\xf9\xe3\x07\x4f\xef\x97\xcb\xbf\xe6\xf3\x3c\xbf\x2d\x45\x6c\x9e\x8f\xd2\xbb\xfb\x2f\xbf\xac\x97\x3f\xad\xcf\x73\xf9\x7d\x3f\xbf\x7d\xfa\x55\x03\xf4\xf3\x5f\xe7\xf5\xf5\xf4\x72\x5e\xb2\xfd\x7f\x4a\xbb\xff\xf2\xbf\xfd\xb8\xcc\x25\xdf\x0a\xfd\xfd\xdb\xe3\xd7\xe5\x1f\x79\xc9\x69\xb1\x5a\xca\xf8\xe7\x8d\xff\xf6\xcb\xcb\xf1\x63\x54\x4e\x09\x1b\x87\xd3\xf1\xba\x9e\xbf\xcf\xbb\xcf\x29\x59\x7a\x58\x3e\xa7\x54\xf7\x0f\x8b\x79\x0e\x52\x0f\x90\xc3\xc3\xd2\x5b\x1e\x42\x47\xa1\x36\x1f\x16\x1b\x16\x64\xad\x22\x21\x36\x34\x6d\x4f\xa1\x90\x6e\xbb\x71\xf7\xd9\x52\x0e\x84\xb4\x3e\x5c\xa8\x82\xaa\x90\x09\xed\x40\x3b\xa1\x2a\xd4\x41\x23\x6a\xf5\x2c\x74\x00\x1d\x03\x35\x95\x37\x6a\x19\xb5\xba\x10\xb5\x8c\x5a\x2d\x90\x9b\x50\x48\xb7\xa6\x26\xdc\x41\xae\xf2\x81\xf2\x50\xab\x92\xe6\x5d\x24\x43\x72\x90\x9d\x88\x41\x2c\xc8\x10\x71\x88\x07\x69\x22\x15\x52\x1f\x96\x6c\x96\x4b\xb0\x43\x11\x0b\xe9\x9e\xb3\x10\xc3\x42\xba\xe7\x24\xb4\x03\xed\x84\x22\x99\x3c\x41\x21\x3d\xdd\x50\x03\x35\x21\x95\x9f\x1d\xd4\x85\x54\x7e\x0e\xd0\x10\x0a\x83\x46\x58\x76\x0b\x2b\x52\x36\x57\xa4\x92\xd6\x47\xd4\xb2\xb9\x09\x85\xdc\xf2\xab\x49\xc9\xd4\x14\x39\x14\xad\x45\x4d\x06\x0a\xdb\x45\x6b\x51\x53\x01\x55\x8d\xaa\x42\x3b\x50\x13\x72\xa1\x0e\x1a\x42\x4c\x5c\x41\x7b\x21\x9e\x78\x00\x45\x5f\x65\x50\xeb\x08\x3a\x0a\x31\x6a\x82\xa6\xd0\x4e\x68\x03\x6d\x42\xb1\x8a\x95\x2d\x28\x69\x35\xa9\x89\x9c\x41\x59\x48\xe5\x33\x86\x42\x5a\x4d\x45\xc8\x41\x2e\xa4\xf2\x19\x8f\x21\xad\x0c\x25\xc1\x76\x96\xb4\x32\x28\x8f\x6d\x6d\xe7\xa2\x1d\x5e\x73\x03\x29\x89\x41\x79\x92\x08\x69\x65\x28\x89\x3c\x40\x43\x4f\xa4\x3c\xe1\x84\xb4\x9a\x92\xd0\x1e\xb4\x17\xa2\x3c\x79\x85\xb4\x6a\x34\x41\x5e\x21\xad\x9a\xf2\xca\xe4\x15\xd2\xaa\x61\x9b\xbc\x42\x5a\x35\xf5\x65\xe4\x65\xca\xcb\x64\xdb\xc8\xcb\x94\x97\xa9\x55\x23\x2f\x53\x5e\xa6\xa0\x8d\xbc\x2c\xc2\xa9\xae\x56\xd9\x72\x92\x56\x5d\x4f\xe4\xfd\x94\xb4\xea\x6a\xd5\x08\x27\xa4\x55\x97\x21\x23\x9c\x90\x56\x9d\xbe\x08\xc7\x14\x8e\x5e\xb5\x6a\x84\x63\x0a\xc7\x69\x95\x70\x4c\xe1\x38\x7d\x11\x8e\x29\x9c\x4c\x13\x84\x63\xb2\x9d\x55\xcb\xb1\xed\xb2\x9d\x55\xcb\xb1\xed\xda\x00\x26\x43\xce\x06\x70\x79\x4c\x4c\xc4\xa3\xab\xfb\xa4\x70\x9c\xee\x5d\xdd\x27\x35\xe1\x74\xef\xea\x4b\x2f\x72\x75\x9a\x70\x35\x51\x94\x44\xa1\x89\xa2\x26\x8a\x36\x40\xa1\x89\xa2\xec\x8b\x9a\x28\x64\x5f\x94\x7d\x51\xad\x42\xf6\x45\xad\x16\xf5\x55\x68\xb5\xa8\xd5\xa2\xbe\x0a\xad\x16\x2d\x47\x91\xc7\xc2\x72\x14\x2d\x47\x51\xab\x85\xe5\x28\x32\x54\xe9\x0b\x43\x45\x86\x2a\x4f\xc4\x50\x51\xf6\x35\xfa\xda\xb1\x0b\x25\xdd\x2c\x0b\x1d\x41\x3a\xb3\xe3\x26\xb1\x1d\xbb\x50\xd2\xcd\x4c\x68\x03\x6d\x42\x51\xab\x71\xc0\x48\xb2\xe5\x16\x8d\xb5\x55\x51\x48\xba\x45\xd2\x9e\xe2\x4c\x0a\x89\x28\x7a\x9c\x1d\x9e\x74\xc2\x78\xd2\xcb\x3d\x92\x90\xde\x64\xa4\x5b\x4b\x42\x05\x54\x35\x2a\x0b\x1d\x40\x1f\x87\xa1\xeb\xae\xb9\x49\x1b\x75\x27\xb4\x81\x36\x21\x95\x2f\x34\xa1\x25\x1a\xb9\x0b\xf1\x44\xad\xc7\xc8\x23\x2e\xfc\x8f\x2b\xf7\x6e\x8c\xff\xbd\x84\x3d\x69\x69\x90\x36\x4c\x2d\x6a\x1d\x90\x36\x4c\x2d\x2a\x74\xa4\x8d\xc8\xce\xd3\x8e\x27\xed\xf4\xa4\x78\xf5\x3d\x75\x50\x07\xc9\x48\xa7\x7c\xa7\x7c\x15\xa2\x7c\xa7\xbc\xbc\xf5\x09\x9a\x42\xf2\x36\xf6\x42\x21\xdd\x9a\x9e\x38\xc8\x69\x68\x99\x9b\xfa\x5a\x49\x60\x55\x02\xa6\x04\x56\x9a\x58\x69\x42\x8b\xb5\xd2\xc4\xaa\x26\x5c\x1e\x57\x9a\x58\xd5\x84\x53\x0b\x8f\xab\x3c\xba\x9e\x78\xa0\xd6\x41\xb5\x5c\x1e\x27\x68\x82\xe4\x71\x52\x7e\x52\x5e\x1e\x27\xe5\x27\xe5\xe5\x71\xe2\x71\xca\xa3\xcb\xe3\xc6\xc4\x6d\x27\xa4\xee\x37\x3c\x6e\xec\x85\xe8\xcb\x75\x0b\x22\xdd\x63\xc3\xbb\xb3\xfb\x5c\x9b\x34\x8f\xda\xc5\x1c\x16\x7b\xcd\x1d\x54\x40\x45\xc3\x76\x4c\xad\x30\x5d\xff\xb2\xe4\xba\x2d\x91\x18\xc6\x43\x1b\xac\xc1\xaa\x58\x87\x75\x18\x73\x07\x6c\xc0\x78\xec\x0a\x5b\x61\x3b\xb1\x3d\x6c\x2f\xd6\x68\xe5\x00\x3b\xc0\x4c\xec\x08\x63\xe3\x33\x4c\xc1\x79\xbc\x44\x31\x4c\x8f\xe5\x2d\x92\xb4\x51\xd4\x71\xc6\x58\x96\xb1\xa2\x99\x19\x63\x59\xdf\x35\x0e\xc2\x57\xc6\x57\x87\xe1\x2b\xa4\x7b\x7c\x5d\xb9\x67\x6c\x65\x6c\x75\xb5\x96\xb1\x15\xef\x64\xb0\x22\x76\xeb\x6d\x6a\x6d\x68\x4d\xef\xa9\xc7\x9d\x15\xc3\x94\x88\x2e\x2d\xa4\xbb\xf6\xa4\x1b\xcb\x65\x5a\xae\xc2\x28\x4c\x19\xcb\xc5\xe2\x1b\xae\x42\x82\xe9\x09\x86\x2d\xdd\x64\xa3\x32\x0c\x5b\xba\xc9\x46\xd1\x6a\x19\xae\x0c\x0b\x43\xab\x60\x58\x08\xe9\x5e\x41\x2c\x8c\xee\xad\x81\x03\x63\x0d\x0c\xa3\x83\x76\x31\x1a\xb7\x54\xb6\x94\x14\x88\xb3\x0b\x43\xba\xb3\x09\x1d\xa3\x6e\x0c\x53\x23\x8e\x53\x67\x63\x2a\x36\xc7\xa9\x57\x86\x31\x15\x57\x2e\x57\x71\x93\xb8\x3b\xae\x42\xb2\xe9\x93\xd3\xdd\xb1\x15\x12\x4c\x1e\x9c\xd5\x0a\xe9\x5e\xe4\xc1\x71\x1a\x12\xc3\x28\x87\xd5\x90\xee\x45\xb6\x9c\x2d\x18\x12\xc3\xb4\x1d\x1c\xfb\x21\xc1\x68\x0e\xfb\x05\xfb\x3a\x26\x9d\xd3\x57\x12\xe3\x54\xaf\xe0\xbf\x68\xa1\x31\xc1\x89\xec\x71\xd1\xc5\x54\x75\xc7\x09\x2b\xe9\x5e\x19\x86\xaf\x82\x2f\x83\xe1\x8b\x53\x97\x2d\x5d\xf0\xa5\xdb\x6f\x54\x25\x52\xb0\x55\xf0\xa0\x43\xd0\x0b\x1e\x8a\x5e\x23\x12\x29\x37\x0b\xda\xaa\x4e\x7d\xb6\x6a\xc5\x15\x2f\x48\xc5\x55\xd5\x89\xca\xbe\xac\x98\xaa\x2c\x2a\x2b\x58\x71\x15\x12\x8c\x71\xac\x6a\x48\x30\x2d\x7e\x65\xff\x56\xdc\xf3\x72\x55\xdc\x57\xb9\x2f\x2a\xd7\xe8\x24\xa4\x7b\xdc\x1c\xdb\xa6\xd3\x66\xdb\xf4\xc1\xde\x63\x13\x6e\x9b\x0e\x0c\xa4\x5b\x9c\x35\xdb\xa6\xc3\x01\xe9\xd6\x34\x51\x77\x27\xd2\x46\xac\xfc\xb6\x69\xe5\x91\x36\xe2\x53\x7c\xdb\x9c\x51\xae\x51\x49\x13\xe3\x83\xe8\x26\xad\x8f\x14\xa8\x32\xb1\x32\xb1\x0a\xd1\x44\xe5\x84\xde\x09\x51\xab\x52\x0b\x44\x5f\x21\xdc\xe9\xdb\xa6\x9b\x03\x69\xbd\xff\xfe\x6a\x8e\xff\x7f\x5e\x2f\x77\x1f\xbf\x95\x1f\xde\xaf\xd7\x79\x7e\xd3\xdf\x00\xf4\x3b\x77\xfc\x1e\x7d\x3a\xcf\x8f\xbf\x33\x5c\x5e\x2e\x31\x4b\xff\xfd\x3b\x00\x00\xff\xff\x6b\x9e\x52\x81\x93\x10\x00\x00"); +func _cadd ()(*asset ,error ){_adfed ,_daa :=_bedc ();if _daa !=nil {return nil ,_daa ;};_fecb :=bindataFileInfo {_ee :"H",_ffd :2711,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492271,0)};_adfc :=&asset {_da :_adfed ,_dc :_fecb };return _adfc ,nil ;}; +func _ddaa ()([]byte ,error ){return _gb (_efdg ,"HKm471-B5-H")};var _afdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6b\xf3\x30\x0c\x86\xef\xfe\x15\x3a\xf6\xbb\x7c\xb1\x93\x35\xdb\x20\x04\x46\x4b\x21\x1b\x5d\xc7\xba\x6e\x83\xb1\x83\x6b\x2b\xc1\x6c\x91\x8d\xe3\x1c\xfa\xef\x87\x9d\xb4\x83\x1d\x8c\xac\x57\xcf\x6b\x24\x39\x5b\x35\xeb\x86\x4c\x80\xec\xc9\x5b\xb5\xc7\x00\xad\x21\xed\x71\xb0\xa3\x57\x08\x47\xec\x0c\x31\x26\x72\xd0\x46\x85\x73\x9a\x82\xea\xa5\x63\x2c\xfa\xf7\xa7\x21\x60\xdf\x50\x6b\xa1\x98\x38\x3d\xba\x99\x05\xc8\x9e\xb1\x33\x43\xf0\x27\x58\xdc\x69\x7b\xc4\x7f\xa0\xb1\x8d\xfa\xce\x6b\xf4\x86\x3a\x58\xdc\x4b\x27\x49\x5c\x0a\xfb\xd1\xb9\x6f\xec\x91\x02\xf0\xa4\x21\xe9\x14\x59\xb6\xda\x4a\xf7\x28\x7b\x84\xec\x41\x06\xf9\x25\x49\xa6\x42\xd2\x5f\xd1\x0f\xc6\x12\x08\xfe\x9f\xf3\xf2\x57\x7f\x39\x39\x04\x31\x3f\x70\x68\xd6\xbb\xb6\x1d\x30\xc0\x4d\x79\x35\x31\xef\x87\x66\x0d\x1f\x02\x04\x87\x7c\x59\x2c\xf9\xe7\x8c\xbe\x6d\xad\xc6\xb9\x03\x26\xa6\x79\x94\xd5\x38\x38\xa9\xd0\x4b\xea\x90\x01\x54\x9c\xd7\x50\x6d\x36\x75\x6c\xf2\x4f\x95\xe5\xb3\xc9\xe8\x49\xa8\xf2\x08\x2f\xdb\x1a\x8a\xbc\x64\x55\x19\xb3\x6b\xac\xa1\xb8\x15\xc9\x7e\xe6\xe2\x3d\x6e\xf7\x32\xad\x1a\xbd\x47\x0a\x69\xb7\x69\xa6\xd8\x94\x21\xbc\xfc\x93\xb3\x2e\xba\xd2\xf9\x09\x00\x00\xff\xff\xea\x27\xb0\xe9\xd3\x01\x00\x00"); +var _cb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\x41\x8b\xdb\x3c\x10\x06\xe0\xbb\x7f\xc5\x1c\xf7\x3b\xec\x17\x4b\xb2\x2d\x09\xca\x42\x49\x0e\xcd\x96\x6d\xcb\xa6\xdd\x16\x4a\x0f\x8e\x3d\x09\x86\x46\x36\x8a\x7d\xc8\xbf\x2f\xf3\x4e\xea\x1e\xc2\x24\x8f\x34\x2f\x13\x33\xde\x6c\xf7\xbb\x7d\x1a\x66\xda\x7c\xc9\x63\x77\xe0\x99\x4e\x43\xea\x33\x5f\xc7\x25\x77\x4c\x47\x3e\x0f\xa9\x28\x8c\xa5\x7e\xe8\xe6\xbf\x3f\x51\xba\x4b\x3b\x15\xc5\xc6\x87\xc7\xd7\x8f\x87\xe7\xc7\x0f\xb4\x5c\xf9\x6e\xdb\xfd\xee\x70\xbb\xce\x7c\xd9\xa7\xd3\x48\x4e\x7b\xfb\x65\xba\xf7\x13\x6d\x5e\xf9\x3c\x5c\xe7\x7c\xa3\x87\xf7\xfd\x78\xe4\xff\xa8\xe7\x93\xf8\xe7\xdc\x73\x1e\xd2\x99\x1e\x9e\xdb\xa9\x4d\x66\x3d\x38\x2c\xd3\xf4\x9b\x2f\x9c\x66\x2a\x61\x9c\x7a\xd4\x62\xb3\x7d\x69\xa7\x4f\xed\x85\x69\x9d\xe5\x0d\x27\x38\x78\xe3\x7c\x1d\xc6\x44\xa6\xfc\xbf\x2c\x9b\x7f\xfe\xf5\x36\x31\x99\x7b\xc2\x8f\x6f\xfb\x1d\xfd\x34\x64\x4a\xb2\xb5\xab\xab\x5f\x77\xff\xfe\x32\xf6\xeb\x2d\xeb\x75\xfc\x6e\xe8\x73\x9b\xce\x5c\xbc\x0b\xa6\x32\x4f\x24\xc5\x3e\x91\x0f\xc1\x0b\xd5\x25\xa8\x36\xa0\x08\x3a\x2a\xf5\x42\xd1\x08\x35\x7a\xab\xa9\x40\x15\x28\x82\x7c\x0b\x42\x63\xd0\x78\x29\x3e\x1a\x89\xb7\xf1\x24\x84\xe2\xa3\x09\x42\x2d\x6e\xa1\xf8\x68\x22\xc8\x29\x39\x21\x5b\x82\x6a\xa5\x1a\x64\x40\x5e\xc9\x83\xac\x50\xa7\x59\x1d\xb2\xac\x13\x62\x25\x56\xaa\x40\x1a\xcf\x1a\x5f\x83\x34\x9e\x35\xbe\x01\x75\x4a\x1d\x48\xa6\x77\x15\xfe\x36\x8a\x8f\x36\x80\xac\x92\x05\x45\x50\xa5\x24\x0f\x27\xba\x12\xd4\x28\x35\x20\x03\x0a\x4a\x01\x24\xd3\xbb\x46\xb3\x1a\x64\x39\x99\xde\x05\x8c\x8a\xe2\xa3\xab\x40\xb5\x12\x46\x75\x35\xc8\x2b\xe1\x49\xb8\x06\xc4\x4a\x0c\xc2\xf4\x51\x1b\xa3\x0e\x11\x64\x05\xd7\x65\x90\xef\xb2\xfc\xeb\x32\x76\x4b\xce\x9c\x66\xac\x3e\x36\x4e\xb6\x68\x48\xbc\xbe\x5a\xd3\x38\x49\x17\x3e\x7f\x02\x00\x00\xff\xff\xb6\xb5\x3e\x79\x86\x03\x00\x00"); +var _accb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x9b\x4b\xaf\x65\xb7\x71\x85\xe7\xf7\x57\x9c\xa1\x33\x70\xb4\x37\x59\x7c\x01\x17\x17\x08\x64\x1b\x16\x0c\x27\x41\x14\xc7\x01\x82\x0c\xf8\x14\x1a\x88\x6e\x37\x5a\xad\x81\xff\x7d\x50\xeb\x3b\x96\xe2\x24\x88\x33\x10\x4a\xbd\x9a\x45\x16\x1f\x6b\x55\x91\xfb\xf4\x57\x5f\x7f\xf3\xab\x6f\xde\x3f\x7c\x79\x7c\xf5\x8f\x9f\x3f\xce\x6f\xf7\x97\xc7\xf9\xf0\xbe\x3e\xef\x1f\x3e\xfe\xf8\x79\xee\xc7\xd8\xdf\x7d\x78\x7f\x79\xb9\xc3\x63\x7d\x98\x5f\xfe\xfc\x47\x99\xf9\x7d\xff\xf4\xf2\xe2\xfe\xdf\xfe\xe9\x87\x2f\xfb\xfb\x6f\xde\xcf\xc7\x47\xa4\xdd\xfa\xf1\xd3\xb3\xed\xe3\xf1\xd5\x3f\xed\xef\x3e\xfc\xf0\xe5\xf3\x9f\x1e\xbf\xf8\xbb\xf5\x71\xec\xbf\x79\xac\x7d\x1c\xff\x87\xcf\x6b\x7f\xfe\xf0\xfe\xdd\xe3\x17\xbf\xfb\xf8\x79\xf7\xfb\xa7\xbf\xf8\xf6\xc7\x4f\x9f\xfe\x63\x7f\xbf\xdf\xbf\x3c\x6e\x61\xfb\x7d\xc9\xbe\x7c\xf5\xf5\xef\xfb\xa7\xbf\xef\xdf\xef\xc7\x57\xbf\xfb\xf6\xeb\xef\x7f\xf8\xe5\x1f\x7e\xfb\xf5\x2f\x7f\xfb\xc7\x5f\xfe\x56\x7f\xad\xbf\xfd\x97\xfd\xf9\x87\x0f\x1f\xdf\x1f\xf7\xf5\xb7\xd7\x95\x7f\xc6\xff\xf9\x4f\x9f\xf6\xb3\xbb\x97\xaf\xfe\xf5\x0f\xdf\xfc\xea\xf1\x6f\xf7\xe3\xbe\x1e\x21\xd9\x9d\xff\xfd\x89\xff\xf1\xf7\x1f\xd7\x7e\x5c\xfc\x29\x30\x85\xf9\x71\xed\x1f\x3e\xf5\xb9\x3f\xf7\xf7\xef\xf6\xcb\xe3\xf1\x7a\x5d\x6f\x8f\xc7\xe3\xb5\x5e\x6f\xfe\xa7\x7a\xdb\xfd\xf6\x78\xfd\xcd\xaf\x7f\xf3\xeb\x37\x8f\xf4\xbf\xb5\x7f\xb9\xe9\xe6\xfd\xe3\x97\xb5\x0f\x98\x7a\x78\xbd\xcf\xdb\xa3\x5e\xcd\xdc\xe9\xbf\xfe\xed\xcb\x7d\x5d\xcf\xa1\x3f\xac\xa7\x43\x70\x87\xb2\x9f\x0e\x7f\x1e\xb3\xde\xa9\xbf\x3d\x5a\x8c\xd1\xa1\x0c\x54\x04\xa5\xe6\x50\x05\x3a\xdb\xa1\x9a\x5e\x5e\x6b\xc0\x31\xc8\x31\xdd\xb7\x43\x38\x06\x39\xa6\x58\x1c\xc2\x31\xc8\x31\x65\xef\x3e\xe2\x18\xe5\x98\xab\x77\x1f\x71\x8c\x72\x2c\xb7\x77\x1f\x71\x8c\x72\x2c\xe6\xdd\x1b\x8e\x26\xc7\x9a\xbd\x7b\xc3\xd1\xe4\x58\x9b\x77\x6f\x38\x9a\x1c\xdb\xed\xdd\x27\x1c\x93\x3b\xde\xd7\x65\xde\x7f\xc2\x33\x15\xb0\xe2\x03\x24\x5c\x93\xbb\xde\xd7\xd5\x7c\x84\x8c\x6f\xc6\x37\x04\x1f\x22\xe3\x9b\xf1\x0d\xe6\x63\x64\x7c\x33\xbe\xa1\xf8\x18\x05\xdf\x82\xaf\x5d\x3e\x46\xc1\xb7\xe0\x6b\xc1\xc7\x28\xf8\x16\x7c\x2d\xf9\x18\x15\xdf\x8a\x6f\x2a\x3e\x46\xc5\xb7\xe2\x9b\x2f\x1f\xa3\xe2\x5b\xf1\xcd\xd1\xc7\x68\xf8\x36\x7c\x4b\xf2\x31\x1a\xbe\x0d\xdf\x52\x7d\x8c\x86\x6f\xc3\xb7\x5e\x3e\x46\xc7\xb7\xe3\xdb\xa2\x8f\xd1\xf1\xed\xf8\xb6\xec\x63\x74\x7c\x3b\xbe\xad\xfa\x18\x03\xdf\x21\xdf\xfb\xbe\x7d\x8c\x81\xef\x28\x60\xd1\xc7\x18\xf8\x0e\xf9\xde\x77\xf6\x31\x26\xbe\x13\xdf\xd0\x7c\x8c\x89\xef\xc4\x37\xde\x3e\xc6\xc4\x77\xe2\x1b\xcd\xc7\x58\xf8\x2e\x7c\x2d\xfb\x18\x0b\xdf\x85\xaf\x35\x1f\x63\xe1\xbb\xf0\x4d\xc1\xc7\xd8\xf8\x6e\x7c\xb3\xf9\x18\x1b\xdf\x8d\x6f\x2e\x3e\xc6\xc6\x77\xe3\x9b\x9b\x8f\x71\xf0\x3d\xf8\xd6\xe0\x63\x1c\x7c\x0f\xbe\x35\xf9\x18\x07\xdf\x83\x6f\x2d\xe5\xe5\xb5\x5d\xf2\x6d\x97\x7c\xc3\x75\x45\xc7\x32\x58\x01\x0b\xcd\xb1\x0a\x26\xdf\x70\xa5\xf4\xf2\xda\xe0\x6c\xbb\xf1\xbd\xeb\xed\x18\xbe\x37\xbe\xe1\xf2\x31\x60\x6d\xbb\xf1\x0d\x4e\xee\x06\x6d\x5b\xc0\x57\xec\x6e\xf0\xb6\x05\x7c\x45\xef\x06\x71\x5b\xc0\xd7\x9c\xdf\x0d\xe6\xb6\x88\xaf\x08\xde\xa0\x6e\x8b\xf8\x8a\xe1\x0d\xee\xb6\x88\x6f\x72\x8a\x37\xc8\xdb\x0c\x5f\x71\xbc\xc1\xde\x66\xf8\x8a\xe4\x0d\xfa\x36\xc3\xb7\x38\xcb\x1b\xfc\x6d\xf0\x37\x88\xe6\x0d\xfe\x36\xf8\x1b\xc4\xf3\x06\x7f\x1b\xfc\x0d\xcd\x79\xde\xe0\x6f\x83\xbf\x51\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\xbc\x9d\xe7\x0d\xfe\x36\xf8\x1b\xc5\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\xc6\xe8\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\x37\x9a\xf3\xbc\xc1\xdf\x06\x7f\xa3\x78\xde\xe0\x6f\x83\xbf\x51\x3c\x6f\xf0\xb7\xc1\xdf\x98\x9d\xe7\x0d\xfe\x36\xf8\x1b\xc5\xf3\x06\x7f\x1b\xfc\x8d\xe2\x79\x83\xbf\x0d\xfe\xc6\xea\x3c\x6f\xf0\xb7\xc1\xdf\x28\x9e\x37\xf8\xdb\xe0\x6f\x14\xcf\x1b\xfc\x6d\xf0\xd7\x2e\xe7\x79\x83\xbf\x0d\xfe\x9a\x78\xde\xe0\x6f\x83\xbf\x26\x9e\x37\xf8\xdb\xe0\xaf\xdd\xce\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\x4d\x3c\x6f\xf0\xb7\xc1\x5f\x8b\xce\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\x4d\x3c\x6f\xf0\xb7\xc1\x5f\x4b\xce\xf3\x06\x7f\x1b\xfc\x35\xf1\xbc\xc1\xdf\x06\x7f\x4d\x3c\x6f\xf0\xb7\xc1\x5f\x2b\xce\xf3\x0e\x7f\x3b\xfc\x35\xf1\xbc\xc3\xdf\x0e\x7f\x4d\x3c\xef\xf0\xb7\xc3\x5f\x6b\xce\xf3\x0e\x7f\x3b\xfc\x4d\xe2\x79\x87\xbf\x1d\xfe\x26\xf1\xbc\xc3\xdf\x7e\xf7\x4b\x58\xbd\x55\x15\xfc\x39\x95\xff\x6f\xd9\xbd\xdf\x1d\x17\x64\xd9\x83\x82\xf0\x1d\xc2\x27\x89\x72\x87\xf0\x1d\xc2\x27\x6d\x56\x87\xf0\x3d\x30\x98\x36\xab\x07\x7a\x0b\x3b\xbd\x3d\x6e\x5f\xda\x8e\x04\xf4\xf8\xec\xcd\xa9\xd3\x91\x80\x8e\x04\x24\xa5\xc8\x8e\x04\xf4\x48\x6f\xa2\x4e\x8f\xf4\x26\x59\x08\xd9\x5e\x5e\x3b\xa2\xd0\x11\x85\x14\x5c\xc8\x3a\xa2\xd0\x11\x85\x14\x5d\xc8\x3a\xa2\xd0\x8d\xde\x54\xa5\x74\xa3\x37\x5b\xf1\xed\x11\x53\x75\x64\x25\x21\xde\xbf\xf9\x21\xef\x08\x47\x47\x38\x52\xd4\x9c\x10\x8e\x9e\x9e\xfd\xfb\x01\xec\x08\x47\x4f\xf4\x6f\x7e\x00\x7b\xea\x4f\xac\xbf\x3d\x4c\xdb\x9b\xc6\x25\x64\xb4\xb7\x87\x65\x21\x93\x36\xab\xbe\x3d\xac\x08\xd9\x20\xc7\x11\xad\x18\x02\xd4\x11\xa0\x64\x5a\x09\x04\xa8\x23\x40\xc9\x8a\xda\x11\x43\x26\x86\xa4\xbd\xcb\xc4\x90\xb7\xbd\x3d\x92\x4b\x5c\x47\x92\x3a\x92\x94\x92\x56\x02\x49\xea\x48\x52\x4a\x49\xed\xe8\xad\x3c\x7b\x73\x49\xef\x85\xde\xca\x3e\x6f\x8f\xe4\x44\xee\x88\x54\x47\xa4\x52\xd6\xbc\x11\xa9\x8e\x48\xa5\xec\xc4\xeb\x88\x54\xaf\xf4\x96\x9d\x78\xbd\xf6\x27\x66\x6f\x8f\x9c\xb3\x90\x0c\x92\xdf\x1e\xb9\x5c\x42\x2a\xc8\x71\xc4\x67\x54\x07\x5e\xbe\x47\xd9\xc5\xae\x23\x76\x1d\xb1\x4b\x45\xf3\x46\xec\x3a\x62\x97\x8a\x8b\x67\x47\xec\x7a\x23\x86\xe2\xe2\xd9\x1b\x31\x48\x00\x55\xe6\x74\xe4\xaf\xf7\x67\x6f\x9a\x37\xf2\xd7\x91\xbf\x54\x3d\x95\x75\xe4\xaf\x77\x7a\xab\x51\xbe\xf4\xd6\x4f\x7c\x7b\x40\x68\x04\xb1\x23\x88\xa9\x6a\xde\x08\x62\x1f\xcf\xde\xb4\xc7\x08\x62\x1f\xf4\xd6\x82\x7c\xe9\x6d\x9c\xec\x25\xb3\x9f\x76\x24\xb2\x23\x91\xa9\x69\x06\x48\x64\x47\x22\x53\xd3\x8a\x20\x91\x7d\xaa\xb7\x7c\xb9\xfc\xf7\x49\x6f\xd3\x0f\xdc\x7d\x05\x5f\xdc\xb9\x80\x8e\x20\xf5\x86\x90\x76\x84\x34\x5f\x9a\x15\x42\xda\x11\xd2\x7c\x65\xb5\x63\x84\xf5\x1c\xc1\x13\x74\x47\x48\x3b\x42\x9a\x6f\xcd\x01\x21\xed\x08\x69\xbe\x5d\x34\x3b\x42\xda\x37\xbe\xb7\x8b\x66\x47\x48\x3b\x42\x9a\x83\x22\x46\x48\x3b\x42\x9a\x83\x27\xac\x8e\x90\xf6\x83\x6f\xf0\x1d\x1b\x08\xe9\xb8\x9e\xbe\x1e\xcb\x40\x48\x07\x42\x9a\xa3\x17\x0b\x03\x21\x1d\x17\xbe\xd1\x8b\x85\x71\x75\xb0\x67\x01\x9b\x5f\x5e\x07\xda\x3a\xd0\xd6\x1c\x3d\xbc\x81\xb6\x8e\xfb\xd9\x9d\x6b\xfa\x40\x5b\x07\xda\x9a\xcd\x35\x7d\x20\x9e\xe3\x7e\xd6\x69\xd7\xcb\xeb\x40\x3d\x07\xea\x99\x4d\x11\xa3\x9e\x03\xf5\xcc\xe6\x29\x76\xa0\x9e\x03\xf5\xcc\xc9\xd5\x67\xa0\x9e\xe3\x59\x42\x15\x7b\x79\x1d\xc8\xe7\x40\x3e\x73\xd2\x24\x90\xcf\x81\x7c\xe6\xe4\x15\xcf\x40\x3e\x47\x7c\x76\xe7\x15\xcf\x40\x3e\x47\x7c\x66\xfb\xfa\xf2\x3a\xd0\xcf\x81\x7e\xe6\xac\x49\xa0\x9f\x03\xfd\xcc\xd9\xcf\xf1\x40\x3f\x07\xfa\x99\xb3\x27\xa6\x81\x7e\x0e\x0a\x2d\xcb\xe1\xe5\x75\x20\x97\x03\xb9\xcc\x45\x93\x40\x2e\x07\x72\x99\x8b\xd7\x09\x03\xb9\x1c\xc8\x65\x2e\x2e\x85\x03\xb9\x1c\xd4\x5e\x29\xf9\x56\xa0\x7c\x23\x3f\xbb\xd3\x24\x50\xbe\x81\xf2\xe5\xea\x9a\x36\x50\xbe\x81\xf2\xe5\xea\x65\xdb\x40\xf9\x06\xe5\x58\x4e\xbe\x15\x48\xdf\x40\xfa\xb2\xb2\xeb\x40\xfa\x06\xd2\x97\x95\x5d\x07\xd2\x37\x90\xbe\xdc\x3c\xbb\x0e\xa4\x6f\x50\xa1\x15\xf3\xad\x40\xfb\x06\xda\x97\x55\xec\x0c\xb4\x6f\xd4\x67\x77\xae\x91\x03\xed\x1b\x68\x5f\x51\xb1\x33\xd0\xbe\x41\xd1\x56\xa3\x6f\x05\x32\x36\x90\xb1\xa2\x3b\xe6\x40\xc6\x06\x32\x56\xbc\xf6\xfc\x6b\xf9\x7b\xa0\x72\xa3\x3d\x47\xf3\xfc\x3a\x50\xb9\x41\x99\xd7\xa2\xef\x14\x32\x37\x90\xb9\x72\x6b\x8e\xc8\xdc\x40\xe6\xca\xed\x15\xc4\x40\xe6\x06\x32\x57\x74\x53\x18\xc8\xdc\x50\xe5\x17\xae\xe0\x3b\x85\xce\x0d\x74\xae\x04\xcd\x11\x9d\x1b\xe8\x5c\x09\x5e\x23\x0c\x74\x6e\xa0\x73\x25\x78\x3e\x1d\xe8\xdc\x50\x31\x18\x6e\x57\xa6\x81\xd0\x8d\xf9\xec\x4e\x93\x40\xe8\x06\x42\x57\xa2\x17\x09\x03\xa1\x1b\x08\x5d\x89\x9e\x1a\x07\x42\x37\x54\x1f\x86\x70\xfb\x4e\xa1\x6a\x03\x55\x2b\x51\x93\x40\xd5\x06\xaa\x56\xcc\xab\x84\x81\xaa\x0d\x54\xad\x98\xe7\xc6\xb1\xe8\x4e\x25\x63\x88\x97\xef\x14\x42\x37\x10\xba\x62\x9a\x04\x42\x37\xf6\xb3\x3b\x2f\x0a\x06\x42\x37\x10\xba\x92\x3c\x39\x8e\x4d\x77\xaa\x22\x83\x5d\xbe\x15\x68\xdf\x40\xfb\x4a\xd2\x24\xd0\xbe\x81\xf6\x95\xe4\xf9\x7d\xa0\x7d\x03\xed\x2b\xd9\xf3\xdc\x38\x74\x77\xe8\xae\xe5\x97\xd7\x89\x1c\x4e\xe4\xb0\x64\x9f\xc4\x44\x0e\x27\x72\x58\xb2\x27\xf8\x89\x1c\xce\xeb\xd9\x9d\x27\xba\x89\x1c\x4e\xc9\x61\x48\xed\x7a\x79\x9d\xc8\xe1\x44\x0e\x4b\xf1\x49\x4c\xe4\x70\x22\x87\xa5\x78\x86\x9f\xc8\xe1\x44\x0e\x4b\xf1\x4c\x37\x91\xc3\x79\x53\xaf\x55\x7b\x79\x9d\xc8\xe1\x44\x0e\x4b\xf5\x49\x4c\xe4\x70\x22\x87\xa5\x7a\xb2\x9e\xc8\xe1\x44\x0e\x4b\xf5\xe4\x34\x91\xc3\x29\x39\x0c\xa5\xd4\x97\xd7\x89\x1c\xce\xf8\xec\x4e\x93\x40\x0e\x27\x72\x58\x9a\x67\xeb\x89\x1c\x4e\xe4\xb0\x34\xcf\x6b\x13\x39\x9c\x54\x93\xb5\x84\x97\xd7\x89\x1c\x4e\xe4\xb0\x34\x4d\x02\x39\x9c\xf6\xec\xce\xd3\xf5\x44\x0e\x27\x72\x58\x2f\x4f\x75\x13\x39\x9c\x92\xc3\xd0\xbc\x9e\x99\xc8\xe1\x44\x0e\xab\x32\xec\x44\x0e\x27\x72\x58\x2f\xcf\xd7\x13\x39\x9c\xc8\x61\xbd\x3d\xfb\x4d\xe4\x70\x4a\x0e\xe3\x95\x7d\x2b\x90\xc3\x99\x53\x50\x33\x4d\x02\x99\x9b\x92\xb9\x78\x27\x5f\x62\xa4\x6a\x4a\xaa\x62\x30\x5f\x26\xe4\x66\x4a\x6e\x62\x34\x9f\x2a\x24\x9e\x22\x71\xb4\xe8\xe1\x42\xc4\x39\xe6\xf1\x82\x38\xfa\x90\x63\x5d\x82\xdc\xd8\x7d\xab\xd5\xa2\x95\xd7\xca\x31\xb9\x88\xce\xb1\x32\x50\x7e\x7b\xc4\xac\x8d\x19\xab\x08\xda\x59\xc5\xb5\x8f\x38\xf6\x13\x2a\x6f\x8f\xc2\x62\x8c\x5d\x05\x29\x88\xd4\xdc\x11\xfa\x4e\xd1\x37\x66\xad\x2c\x14\x9c\x6b\x3a\xa4\x8b\xff\x5c\x1e\xe3\xd3\x44\xd3\xea\x2c\x42\x5d\xde\x7d\x54\x4a\x99\x8b\xee\x65\x4a\xbb\xd4\x6a\x37\x41\xea\x5e\xd5\xdd\x84\x92\x73\xf7\xf9\xf6\x88\xd5\x85\x60\xee\xbe\x80\x96\xa0\x20\x68\x0b\x92\xa3\xd2\xce\x84\x7c\xf3\x9c\xfe\xf6\x88\x74\x7f\xce\x00\x1a\x82\x82\xa0\x09\xe4\x8e\xcd\x39\xb5\xa0\x19\x26\x36\x4f\x6b\xeb\xea\x01\x28\x38\x64\x59\x50\x14\x34\x8a\x5a\x99\x43\xa3\x02\xd5\x9f\x5b\xf9\x65\xe2\x75\x5d\xbe\x12\x76\xf9\xe2\xac\x4b\x2b\x81\x89\xc5\x25\x6b\x5d\x8b\x11\xd7\xf4\x56\x11\x68\x01\x2d\xdf\x5a\xaf\xae\xd6\xb5\xb6\x20\xee\x3f\x9e\x33\x17\x14\x5e\xb7\x5f\x92\xec\xf2\x4a\x65\xdd\xcb\x80\xec\xed\x61\xd1\xab\x92\x75\xeb\xe2\x84\xb1\xdb\x73\xf7\xba\x75\x26\xd6\xed\xe7\xc0\xee\x48\xab\x0a\x54\xe5\x98\x04\x35\xa0\xae\x56\x38\x0e\x41\xfb\x52\x2b\x41\x9b\x20\xdc\xd8\xad\xe8\xef\x1d\x80\x82\x5f\x45\x2e\x85\xba\x23\x90\x07\x11\xfd\xc8\xad\x7b\x13\x84\x1b\x8b\x95\xbe\x0a\x10\x71\x35\x41\xc4\xb5\x87\x5a\x15\x41\x13\xc8\xd7\xeb\x36\xba\x5f\x40\xbe\x5e\xba\xf5\xad\x7b\x6f\xa0\xad\x56\x40\x47\xd0\x51\xf4\xbc\xa8\xff\x9f\x09\x7b\xdd\x87\xc9\x1d\x4d\xce\x14\xf6\x61\x72\x6e\x2c\x36\x85\x7d\x98\xdc\xd1\x0a\x9b\xf6\xe1\x30\xb9\xa3\xc9\x35\xcd\xe4\x30\xb9\xd3\xd4\x0a\xc7\x0e\xe4\x2b\x6c\x17\x8e\xac\xb0\x1b\xbb\x0d\x47\xe6\x7b\x96\x5a\xe1\xc8\xe4\x74\x18\x74\x1b\x5e\x08\x30\xc6\x6e\x9d\x8f\xc0\xb9\x0d\x7e\x56\xcd\x6e\x20\x03\xca\x6a\x75\x0b\x2a\x40\x0a\xe2\x0e\x82\x06\xd0\x10\x44\xf7\x13\x48\x8b\xee\x5a\xb6\x82\x88\x88\x31\x0b\x74\xaf\xb8\xc2\x20\x08\x3f\x45\x61\x10\x84\x1b\xb3\x20\xc7\x11\x81\x74\xba\x93\xba\x1f\x4f\xc7\xad\xfb\xb8\xe2\x1a\xda\xad\x30\xd5\x57\x51\xf7\x93\xbe\x66\x54\xab\x28\x88\x09\xb9\x31\xa5\xf1\x15\x66\x02\xd2\x76\x14\x5a\x65\x20\xae\xfb\x55\x10\x73\x74\x63\x89\xb8\x26\x73\x9c\x9a\x63\x01\x62\x8e\x53\x71\x05\x4d\x68\x12\x97\x28\x96\x82\xfa\x82\x62\x41\x7c\x4a\x51\xad\xe0\x93\x8c\xdd\x05\xa8\x01\x29\x08\x9d\xc8\x00\x9f\x02\x3c\x17\x9f\x02\x3c\x0f\xeb\xa8\x95\x1c\xb7\x34\x43\xc6\xee\xa2\xf5\x82\x75\x32\xbc\x77\xad\x00\xeb\x64\x2c\x71\x00\x60\x9d\x8c\xe9\xca\xb3\xc2\x66\xbd\xb6\xa2\xcf\x9a\xe3\x26\x7a\x67\x9a\xa5\xac\x20\x36\xa1\x6e\x85\x5a\x14\xea\x26\x54\x11\x31\x11\x2a\x44\x0c\x4e\x2b\x53\xf9\xb9\xc2\x21\x54\x67\x84\xe5\x4b\xdd\x1f\x46\x14\x3b\x32\x67\x15\x76\xc8\xd8\x5d\x35\x47\xd8\x11\xf4\xb4\x92\x39\x00\x87\x20\x74\xc8\x6f\x09\x04\x65\xc1\x8a\x40\xcd\xcf\x2a\xa9\x7d\x99\x94\x25\xa8\x95\xa1\x2c\x86\xb2\x68\xb7\x0d\x65\x31\xd1\x2a\xea\x60\x1a\xb4\x92\x79\xca\x9b\x9d\x05\xb4\x7f\x92\x37\x52\xfd\x4a\x1d\x41\xad\x82\x12\x50\xfa\x49\xde\x92\x1e\x47\x16\xcf\x49\xc8\x5b\x82\x43\x32\x4f\x2d\x4b\x70\x28\x89\x30\x68\x59\x82\x30\x32\xcf\x09\xa5\xae\xf3\x95\x08\xc2\x6f\xcc\x8b\x42\x62\x65\xcf\x36\xa6\x2f\x20\x2b\x93\x6d\x64\xec\xf6\x6b\xe5\xca\x64\x9b\xac\xe3\x6b\xea\x2b\x73\x7c\x65\xec\x2e\x40\x1a\x51\x45\x89\x25\xd1\x9d\xa2\x64\x15\xd8\xe1\xd9\x79\x15\xd8\x21\x93\x52\x52\x2b\xd8\x51\x36\x5b\xeb\xb4\x2a\x1c\x26\x99\x0c\xb7\x0b\x87\x49\x05\x8e\x65\x2f\x17\x17\x05\xce\xaa\x40\x5e\x5b\x2c\x2e\x3d\x4b\x97\x1e\x2b\x3a\xbe\xd4\x3c\x4b\x35\x8f\x55\xb1\x83\x9a\x67\x0d\x71\x5b\x1f\xab\xd6\x80\xdb\x32\x09\xfd\x1a\x70\x7b\x28\xae\xa6\xb3\x3a\x88\x4b\xc6\x5a\x08\x82\x70\xf4\xee\xd3\xe5\xa5\xed\xa2\x9a\x59\xd3\xb7\x36\x5d\x0a\x75\xb2\xb5\x32\x05\x9d\x98\x6c\xed\xc4\x51\xa9\x98\x9a\x67\x2d\x39\xea\x52\xb4\x16\x8e\x32\x49\x85\xe3\x5a\x38\xae\x45\x2b\x5f\x9c\x85\x4e\xc8\xa4\x5b\x54\x58\xa4\xe2\xe5\x84\x49\xb7\xa2\x5f\x10\x46\xa6\x64\xaf\x79\xd6\x3a\x38\x2a\x88\xa0\xe8\xa9\x8c\xd6\xf6\x13\x9d\x82\x08\xb3\x39\xd1\x32\x29\x79\x49\xbf\x36\x27\x5a\x26\x45\xaf\x79\xd6\x26\x77\xc8\xa4\xa8\x93\x43\xb1\xb4\x8e\x6b\x74\x8a\xda\xda\x83\x46\xcb\x14\x6a\x8b\x33\x14\xd7\x71\x19\x4a\xd1\xab\xbf\x75\x90\x21\x99\x14\x73\x10\x14\x80\x8a\xa0\x2c\xa8\x02\xd5\xb7\x47\x32\xd1\xfd\x20\x30\x87\x20\x4a\xf8\xab\xa9\x78\x53\x97\xed\xeb\x68\x74\xaf\xb8\xf6\x75\x9e\xd0\xfd\xf6\xc8\xda\xd3\x7d\x29\x3b\x6f\x55\x49\xc9\x5c\xc2\x37\x55\xd2\xbe\x9d\x7c\xc9\x9c\x75\xfb\x56\xe6\xc2\x24\x55\xa8\xfb\x16\x11\xb7\x8a\x8a\x64\x9e\xb0\x37\x45\x05\x26\xe9\xbb\xc5\xa6\xa8\xd8\xca\xbb\x29\xf9\x7c\x37\x79\x77\x07\x20\xdf\xf9\x8d\x4a\xed\xe8\x1b\x98\xf4\xe1\x61\x47\x6d\x20\xa6\x5c\x97\x5a\x49\x04\xb7\xb4\x2c\xe9\x7d\x73\xa3\x65\x98\x12\x3d\xe5\x6d\x53\x0e\xdf\xd6\x7d\xed\x8a\x2f\xe7\xb6\xde\x80\x9a\xba\xaf\x82\xba\x20\xfa\xd2\x88\x08\xd7\x96\xd8\xa4\x9a\xaa\xa0\x0d\xb4\xf5\x44\x6c\x82\x8e\xa0\x71\x09\xf2\x25\x4c\x03\xc7\x67\xc2\x4e\x82\x22\x50\x55\x2b\x75\x2f\xb1\xc1\x98\x3e\x80\xed\x34\x3a\x50\x57\xab\x26\x68\x00\x49\x92\x02\x90\x56\x35\x79\x0e\x4f\xd5\x73\xd2\x4e\xca\xe1\x18\xb3\xa8\x20\xc4\xf3\x9d\xa6\xa2\xd7\xa6\xa5\x49\xf4\x4a\xc5\x16\x15\xd7\x24\xfa\xa9\x37\x6f\xaf\xc5\x76\x52\x7d\x8d\x31\x5d\x9d\x76\x5a\x4c\xc8\x4d\xaa\x4d\x7d\xad\x00\xa4\x39\x46\x20\xe6\x28\x6e\xd6\xa6\xf5\x12\x37\x31\x66\x51\xd1\xeb\xea\xb4\x93\xa7\xa6\xd4\x74\xe4\xd2\x61\xda\x4a\x2d\xe6\x35\xe2\x4e\x22\x22\x86\x02\x67\xa7\xc3\xb4\x45\xc4\x46\x5c\x87\x09\x51\xc4\x99\x6f\x07\x42\x8f\x31\x73\x5d\xdc\x99\x03\x90\xbd\x88\x4b\xba\x1c\xef\xac\x22\x0e\x63\xfa\xe6\xb0\xb3\xf4\x67\x67\xd7\x9c\xd4\x22\x50\x01\x52\xd2\xf0\x7a\x60\x67\xbd\xd8\xef\x2c\x2a\x34\xd7\xd8\x9d\xa1\x42\xa6\x88\x73\x71\xde\x99\x63\x22\x93\x74\x91\xd9\x99\x63\x92\x55\xd7\x99\xa7\xcf\x9d\x07\x71\x49\x33\x1a\xa1\x72\x4c\x64\xcc\x74\xe4\xf2\x20\xd4\xa1\xb8\x0c\x88\xb8\x94\xb9\x4c\x8b\x43\xe6\xda\xd9\x4f\x4b\x6a\x49\x71\x8d\x09\xa4\x93\x93\x15\x17\x27\x27\xeb\xe4\xb4\xa4\xf5\xe2\xe4\xc8\xd8\x2d\x22\x67\x4e\x8e\x4c\xd2\xc3\xdf\xce\xca\x10\x3b\x4f\xd2\xa7\xa2\x9f\xac\xc4\xd4\x3e\x8a\xc8\x79\x76\x20\x5d\x77\x9e\x8e\x3a\xbe\x59\x27\xa7\x65\x8d\xc8\xc9\xc9\x9c\x9c\xac\x09\x71\x72\xb2\x4e\x8e\x12\xd0\xce\x9c\x9c\xcc\xc9\xc9\x9a\x23\x27\x27\x7b\x41\x98\x5a\xa1\x2f\xa6\xbd\xc4\x21\xd1\x3d\x2f\x82\x58\x5a\x89\xa2\xb5\x5f\xac\x84\xae\x87\x37\xa1\x2e\x56\x62\x69\x87\x0a\x41\xb0\x43\x2a\x1b\x8d\x20\x54\x36\x62\x52\x13\xd3\xf2\xe6\x7c\xa9\x6c\xb4\xa2\xbe\x36\x13\xda\x5a\xd5\x8a\x23\xab\xaa\xf4\x89\x88\xe6\xcd\xaa\xaa\xca\x32\x29\x40\xde\xcc\x51\x55\x96\xbe\x72\xed\xbc\x99\xa3\xb4\xbf\x55\x5a\xb1\xd0\x2a\x2e\x8d\x09\x6d\xa6\xbd\xb5\xf6\x95\xee\x99\xb6\x8a\x4b\x63\x42\x9b\x69\xbb\xc9\x4f\x2a\x20\xc8\x79\x6b\xda\x95\x11\x99\xb6\x4a\x50\x23\xfa\xc3\xb4\x0f\xd3\x96\x23\x89\x42\xc6\xac\x6a\xda\x24\x0a\x99\x67\x0a\xc8\x87\x7d\x94\x6c\xb7\xaa\x20\x90\x6d\x19\x33\x26\x84\x6c\x67\x6a\x57\x0e\xe6\x61\xda\x47\xd7\x56\x69\x74\x3e\x4c\xfb\x68\xb7\x1b\xdd\x33\x6d\xdd\xff\x8c\xe8\x91\x0e\xd5\x62\xa9\xf9\xb5\x75\x53\x8b\x61\x8c\x6c\x55\x50\x80\xa2\xda\xa2\x49\xe5\x8a\x6a\x0b\x8c\x99\x42\x2d\xd0\xbd\x38\xc5\xf3\xe5\x55\xe9\x2e\x24\x0a\x19\x33\xaf\x24\x77\x21\x51\x14\x2e\x7b\xcf\x11\x07\xd0\x90\xe3\xff\x23\x15\x17\xd5\xb1\x18\x6a\xcf\x5d\x90\x91\x82\x8c\xb4\x28\x68\x03\x1d\xf5\x2b\x48\xdf\x58\x31\x66\xca\xe1\x85\x6c\x53\xfc\xe2\xc7\xd7\xb0\x5d\x74\xf1\xc3\xf0\xcd\x7f\x97\x89\xa3\x9b\x7c\xdd\x9a\xc9\xc4\xd1\x4d\xd1\x2f\x21\x76\x99\x2c\x94\x53\x3f\xeb\x33\xda\x2e\x50\x5f\xc6\x4c\xda\x5f\x26\x0b\x85\x1a\x34\xfa\xaa\x40\x5d\x8e\x8a\x0b\xea\x17\xae\x87\x12\x7a\x0a\x60\x4c\x56\xbd\xb8\xcb\x64\xda\xaa\xaf\x93\x97\x57\xbb\x90\xa6\x64\xf2\x15\xb4\x35\xa4\xa9\xa2\x9c\x94\x58\x09\x72\x52\x71\x19\xc9\xfa\x8d\xc0\x2e\xc8\x88\x8c\xa5\x4b\xdb\xac\xd7\x9c\x5d\x96\xfa\x52\x62\x2c\xeb\xd9\x97\xae\x87\x97\xba\x87\xe7\x2a\xcc\xf3\xa5\x04\x44\x61\x8e\x31\x7d\xaf\xda\x14\xe6\x98\x7c\x49\xd5\x0b\x0c\x96\xb1\x74\x6b\xbd\x60\x70\xf1\xd3\x9d\x2f\xb1\xae\x9c\x27\xe4\xa4\x2e\x2c\x21\xa7\x5b\x45\x3e\x1f\x1d\x37\x45\xfe\xae\x5b\x8e\xd2\xb2\x4a\x5f\x95\x7b\xa5\x54\xbd\x42\xfd\xea\x74\xcd\x7a\xba\xd9\x15\xba\xca\x58\x52\x02\xaa\xd0\xb5\xf2\xea\x52\x69\x15\x80\xb2\x1c\x8b\x20\xba\x17\xeb\x92\x72\x52\x25\x2e\x99\x7c\xfb\xad\x65\x57\x58\x27\xc3\x65\x6d\x57\x58\x27\x93\xef\xe7\x88\x03\x48\xbb\x9d\xb2\xa0\x09\xb4\xd4\xca\x04\x6d\x20\x5d\x9d\x54\xb1\x71\x91\xd9\x4d\x5f\xc5\xf5\xb8\xb6\x1b\x44\x94\xb1\x24\x65\x69\xe4\xdd\x26\x8a\x21\xe1\x0d\x0e\xc9\x70\xe7\xda\x0d\x0e\xb5\x49\x2b\xf5\xc5\x91\x93\x31\xfd\xfc\x6a\x37\x8e\x5c\x63\x25\xb4\x1d\x8d\x95\x90\x29\x08\x57\x63\x25\x74\xc1\xca\xfa\xbc\xb3\xb9\x60\xed\x2e\x0e\x05\x1d\x80\x3e\x9f\x90\x17\xd0\xfa\x55\xd4\xee\x70\xa8\xeb\x4a\x17\xa4\xc4\x9d\x93\x23\x63\x7a\x54\xde\x9d\x93\xa3\x8f\xe9\x39\xde\x72\xd4\xad\x05\x63\x77\x05\xc2\x51\xa1\x46\x11\xa6\x13\x6a\x67\xd3\x54\x23\x76\x42\xed\xbe\xf6\x39\x06\xa0\x09\xa4\x69\x4b\xd5\x3b\xf5\x93\x4c\xd6\x6f\x44\x76\x67\x3b\xb8\x31\xea\x19\x7b\x73\x63\xdc\xa3\x2b\xae\x68\x82\x0c\x48\x54\xa8\x40\x09\x48\x71\xa9\xa4\x1a\x6c\xda\x60\xd3\x6a\x16\x54\x81\xaa\x5a\x35\x41\x0d\xa8\xa9\x55\x15\xd4\x81\x54\x35\x3c\xbb\xd7\x61\x1a\x5e\xd4\xe4\xa8\x43\x3e\x28\x8d\xc7\xd0\xf9\x6a\x40\x13\xc8\xd5\x44\x2f\x12\x7b\x50\xe0\xc8\x58\x6a\x9a\x90\xde\xc5\xf6\xd0\xa6\x45\x9d\xaf\xc1\xa6\xc9\x98\x3e\x1e\xef\xc1\xa6\xc9\x58\x92\x62\x8e\x19\x81\x92\x1c\x15\x3d\x5a\x38\x24\x7c\xa9\xd1\x17\x73\xd4\x91\xd3\xfd\x6d\x0f\x8e\xdc\xe0\xc8\x35\x1c\x89\x4b\x92\xa6\x2b\xdd\x1e\x48\x9a\xbe\x37\x58\x16\xad\x06\x95\x91\x0c\x4f\x06\x7b\x20\x69\xfa\xde\x90\xf5\x51\x7b\x8f\xc5\x88\x7a\x17\xd3\x2b\xc2\x1e\x94\x41\xba\x9a\xf3\x4d\x7f\x73\x35\xdf\xba\x87\x67\xfd\x3c\x71\x73\x0f\xc7\x58\xbe\x4d\x50\x01\x2a\x82\xb2\xa0\x0a\xd4\xe4\x08\xd4\x81\xba\x5a\x55\x41\x03\x68\xab\x15\xd0\x01\x3a\x2a\x2e\x7d\x42\x93\x6c\x35\x55\xf4\xe6\x00\x14\x80\x82\x76\xbb\x08\x8a\x40\xbc\x81\x04\x41\x09\x48\x2f\x5e\xba\x41\xcd\x41\xf4\x5e\xfb\xf2\x52\xb2\xe7\x20\x54\xd5\xc1\x7a\x29\xd9\x93\x3a\x58\x26\x5b\xc8\x7f\x99\x8a\x4b\xfa\x1f\x99\x78\x72\xae\x64\x2c\x8b\x3b\x93\x2b\xd7\xf4\xec\x99\xb9\x98\x4d\xb2\xa7\x7e\x5e\x62\x39\x2a\x44\x4e\xcc\x9c\x8a\xfa\x09\x11\xb5\x9e\x4d\xb3\xb8\x33\x39\x31\x32\x96\x75\x69\x99\x64\xcf\xe9\x07\x27\x73\x0b\x9b\x93\xa8\x29\x9c\xc5\x8a\x49\xf6\x9c\x8b\xee\x15\xc4\xa2\xfb\x45\xf7\x6a\x45\x95\x3c\xd7\xcf\x25\xde\xa4\xb2\x9d\x4b\x6f\x45\xe2\xce\x24\xe3\x4d\xcf\x72\xd9\x24\xc4\x93\x32\x56\xc6\xb2\x32\xde\xa4\x8c\x9d\x4a\x82\x26\xa2\x4c\x92\xa0\x8c\x65\xc3\x91\x20\x94\xa5\xb8\xa1\x4c\xb2\xd4\x54\x96\xca\xa6\x09\x91\xa5\xa6\x74\x8b\xda\x70\xa2\x5b\x93\xe7\x49\x42\x3d\xcf\x56\xda\x2c\x55\xc9\x93\xcc\x22\x63\x99\x43\x44\x66\xd1\xf3\x51\xa6\x4a\xe6\xf9\x68\x2f\x3d\xcb\xeb\x3d\x6c\x2f\x44\x6a\x79\x81\x9b\xf5\x33\xd1\xbd\x78\x6a\x90\x49\x51\xd9\x73\x51\xec\xea\x15\x28\x93\x2a\x79\x05\xda\xdb\xaf\x0d\x39\xe9\xa2\xb1\xf5\xa6\x8c\xc9\x14\x59\x9b\x2b\x84\x9e\x7c\x32\x47\x8d\x27\x9f\x7d\x80\x9c\xf9\x87\x17\x96\x73\xf1\xeb\x2d\x5f\xc2\xc3\xdb\xc9\xd1\x7b\x47\xae\x3e\xa1\xc3\x7b\xc7\x09\xd2\xad\xe6\xab\x7a\xf4\x90\xff\x34\xa9\x78\x99\x72\x78\xcf\x3f\x7a\xc2\xcd\xcd\x2f\x1a\x27\x68\x71\x30\xa9\x14\xb5\xd2\xe2\x1c\xbd\x9d\x94\xcb\x4f\xe1\xe1\xed\xe4\x44\xe7\x5e\xb9\xfc\xc8\x9d\x38\x9e\x90\xca\x01\xaf\x59\x4f\x14\x0f\x4f\xc4\xd1\xb5\xe6\xf0\x76\x72\xcc\xf5\x81\xdf\x4c\x1c\x93\x3e\x60\xb2\xb9\x36\x1f\xbd\xa3\xbc\x1e\xf3\x85\x2e\xb7\x1f\xdf\x63\x5a\x68\x4c\xce\xb4\xd2\x42\x1f\x3d\xa7\x14\xfd\xe0\xe9\xf0\x9c\x72\x12\x50\xf0\x20\xb8\xac\x1f\x5d\x1b\x8a\x7e\xc6\x74\x74\x77\x78\x1a\x0b\xbe\x8f\x87\x2b\x04\xa6\xc4\x56\x05\x65\x20\x85\x1a\x69\x55\x80\xb6\x5a\x39\xc4\x4d\xe0\x14\x97\x0c\x7e\x03\x71\x8a\x24\x03\x63\xc1\x80\x9a\xa0\xa9\x56\xd1\x77\x88\x6a\x16\x63\xc1\xe5\xfa\x94\x49\x2b\xd7\xe6\x62\x7e\xc8\x0f\xe5\x26\xc6\x94\xa5\x0e\xe5\xe6\x51\x59\x57\x74\xcb\x3f\x94\x75\xa7\xfa\xf9\x2a\xa6\xe8\xab\xce\x17\xa6\x24\x6d\x6d\xd5\xf9\x3a\x2a\xeb\x8a\xca\xa7\x43\x59\x87\x49\x57\x95\xe3\xa1\xaf\xe7\xef\xf9\xbc\x15\xe5\xd3\x79\xfe\xc4\xcf\xf3\xe2\xa1\x4c\xc1\x14\xfd\x4a\xe9\x74\x5d\x80\x30\x31\x39\x6b\x4f\xd7\xf7\xd7\xa3\x9a\xa4\xb0\x69\xd4\x24\x98\x28\xba\x9f\x2e\x6e\x1f\x55\x08\xa5\x38\x87\x0e\x15\xc2\x19\x40\xce\xc7\x43\xb2\x39\x4a\x1d\x45\x3f\x03\x3c\xca\x1f\x4f\x13\xeb\x4d\x2b\x1d\x5f\x11\xb9\xe8\xf7\x49\x07\x22\x1f\xf1\xb1\xb4\xfc\x97\x37\x27\xff\xff\xef\xfb\xa7\x97\x9f\xfe\x29\xd2\xfc\xf1\xf3\xe7\xfd\xfe\x45\xff\xf0\x49\xff\xd4\xe8\xb1\xf6\xf9\xf0\xbe\x7f\xfa\x47\x54\x9f\x3e\x7e\x72\x2f\xfd\xf7\x9f\x01\x00\x00\xff\xff\xf8\x60\xf3\xef\x70\x35\x00\x00"); +var _beg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x4b\x8b\x64\xb9\x11\x85\xf7\xf7\x57\x68\x39\x5e\xd8\xa5\x47\x3c\x24\xb8\x5c\x30\xdd\x03\xae\xc5\xcc\x18\xb7\xc7\x36\x18\x2f\xf2\xa1\x6c\x12\xdc\x99\x49\x56\xd6\xa2\xff\xbd\x89\x73\xb2\xdb\xcc\x2c\x8a\xa8\x3c\x84\x42\x8a\x4f\x11\x92\xee\xcb\x87\xd7\x8f\xaf\x97\xf3\x23\xbd\xfc\xf5\x7e\x3d\x7c\x9a\x8f\x74\x3a\x5f\x8e\xf7\xf9\x76\x7d\xbf\x1f\x66\xda\xcf\xcf\xe7\xcb\xb2\x94\x9a\x8e\xe7\xc3\xe3\xdb\x4f\x98\xc3\x97\xdd\x6d\x59\x62\xfc\xa7\xaf\x6f\x8f\xf9\xe5\xf5\x72\xba\xa6\x46\xbf\xe3\xfb\xed\xe9\x9b\xd2\xcb\xdf\xe6\xe7\xf3\xdb\xe3\xfe\x35\xfd\xf0\xe7\xe3\x75\x3f\xff\x90\x8e\xf3\x14\xfa\x2f\xf7\xe3\xbc\x9f\x2f\x9f\xd3\x0f\x1f\x7e\xfe\x54\xbe\xcb\x9f\xde\x6f\xb7\xff\xce\x2f\xf3\xf2\x48\x19\xda\xbc\x1c\x61\x97\x97\x0f\x3f\xed\x6e\x3f\xef\xbe\xcc\xf4\x12\x23\xfe\xf8\x17\xc8\x50\xff\x31\xef\x6f\xe7\xeb\x25\x95\xfc\xa7\x9c\xed\xff\xfa\xdf\xbf\xde\x66\x2a\xcf\xe1\xbf\xbe\x7e\xfc\xe5\x74\x7a\x9b\x8f\xe4\x99\xa1\x5f\xfe\xf5\xeb\xeb\xc7\xf4\xef\x92\x4a\x4e\x55\x5b\x97\xff\x3c\x5d\xff\xf9\xd3\xf5\x38\x9f\xf3\x2f\x85\xb9\x1c\xae\xc7\xf9\x76\xdb\x1d\xe6\x7d\x77\xf9\x3c\x97\x94\xd6\x5a\x6a\xd9\xd2\xea\x3f\xfa\x8f\x5b\x2c\xf3\x77\x1e\x4b\xc9\xf9\x39\xf4\x7c\xa4\xf4\x6d\x48\x2d\x3e\xb7\x34\xc6\xb2\xd6\x4a\xa1\x86\x50\x46\x5b\xd6\xda\xa8\x34\x99\x5b\xaa\xdd\x97\xb5\x0a\x15\x09\x9f\xd6\xc2\x47\xa9\xa8\x1d\xb6\x24\x35\x7c\xd4\x26\x14\xcf\x5b\xd2\x1c\x3e\x46\x1f\x6b\x33\x14\x5b\xd6\xea\x54\x60\x74\x28\x94\x4a\x45\xb6\xa4\x8d\x3e\x4a\x45\xc3\x87\x8a\x51\xb1\xf0\x19\x50\x9c\x8a\x6f\xc9\x72\x85\xd2\xa9\xf4\x2d\xa9\x64\x28\x83\xca\x21\x7c\x1a\x94\x23\x95\x53\xf8\x94\x50\x5a\x86\x12\xc6\xb2\x43\xe1\x0a\x1b\x56\x38\x3a\x24\x2e\x31\x8c\x65\x2a\x8d\x4a\xdb\x92\x15\x4c\xd6\x84\x4a\xa4\x21\x02\x85\x69\x84\xb1\xc2\xc9\x98\x46\x18\x1d\x60\xef\x8d\x79\x84\x51\x01\x8f\xc6\x3c\xda\x88\x61\xc8\xac\xed\xa8\xec\xc2\x07\x3c\xda\x9e\xca\x3e\x16\x94\x39\xff\x81\xd2\x21\x9c\x98\x08\x93\x0d\x63\x85\x2b\x9a\x54\xe6\x96\x0c\x9b\xe8\xed\x44\xe5\x84\x40\x98\x5f\x48\x44\x4a\x38\x61\x98\x30\xfd\x30\x2a\x48\x5f\x98\xbe\x58\xf8\x60\x45\xc2\x3c\x04\x79\x20\x33\x61\x1e\x12\x6b\x14\xe4\x21\x5c\xa2\x60\x3f\x58\x0e\xc2\x35\x86\x31\xa6\x26\x5c\x63\x18\x55\x64\x26\x5c\xa3\xc6\x16\x71\x7a\xe5\x16\x69\xec\x87\x22\xb4\x72\x41\x1a\x25\xa3\x60\xad\x64\xad\x3d\x7c\x90\x86\xb2\x1c\x34\x30\x3e\x15\x62\x54\x62\x04\x34\xe5\x1a\xf5\xb4\x25\xaf\x98\xde\xc8\x23\x8c\x57\x10\x32\x4e\x1f\x46\x15\x8b\x36\x12\x32\x0d\x1f\x2a\x9c\x3e\x8c\x2a\x22\x1b\x09\xd9\x71\x4b\xde\x18\x99\xa9\x86\xb1\xfc\x1c\xc6\x5c\xbd\x86\x13\x86\x39\x33\x0b\x63\xb9\x22\x7d\x67\xa9\x79\xdf\x92\xb3\x8a\x9d\xa9\x85\xb1\x5c\x81\xdf\x59\x34\x1e\xd3\x91\xac\x73\xba\x30\x1d\xf9\x77\x36\x63\x8f\xb6\xea\xaa\x50\x9c\x8a\x6f\xa9\x5b\x85\xd2\xa9\xf4\x50\x0c\xca\xa0\x02\x8e\x1d\x0a\x38\xf6\xe8\x8f\x6e\xb1\xea\xce\xfe\x80\xb1\xcc\x61\x6c\x90\x1e\xc5\xdf\x1d\x93\xb1\xf6\x7b\xd4\x75\xc9\xa8\xd0\xde\x9e\x91\x62\x47\x0a\x17\xc0\xc2\xee\x51\xb4\x25\x17\xcc\xc7\xaa\xed\x51\x85\x25\x57\x78\x09\xa3\x47\x6d\x15\x12\xe8\xac\x2d\x18\x2b\xd6\x20\x4d\x4a\x13\x12\x62\xb1\xba\x7a\xd4\x52\xc9\x38\x5b\x3a\x8b\x09\xc6\x8a\x51\x62\xf8\x28\xa1\x52\x3b\x06\xea\x8e\xd2\x2e\x7a\x80\x09\xb1\x9e\x7a\x54\x43\xa9\x03\x09\x19\x63\x85\x51\xcb\x50\x18\x2a\x4c\x69\x28\xba\x6e\x4a\xc9\x43\x42\xcf\x77\x23\x76\xdb\x6f\xa9\x58\x07\x40\x23\x88\x30\x6a\x05\x0a\x33\x8c\x03\xb7\x18\x4e\xd3\xee\xdc\x52\xdf\x6f\xa9\x66\x8e\x73\x8e\x8b\x7d\xaf\xec\xcd\xc1\x8d\x87\x71\x6f\x05\x52\xa5\x54\xc3\x0b\x4d\x35\x6a\xa3\xd4\xe0\x45\x49\x28\x29\xbc\x1a\x24\xa3\xb4\xdf\x52\xcb\xc2\x58\x07\x4a\x71\x59\x68\x51\x48\x27\x4a\xa7\x2d\x8d\x8c\xa6\x19\x3c\x7a\x61\x06\x4b\x74\xf0\xec\x1d\x51\x36\x6d\x60\xcb\x06\xcb\x66\xc4\x29\x2a\x8d\xeb\xe2\x31\x0a\x23\x8e\x43\x73\xb0\x94\x46\x9c\x9d\x9a\x85\x5e\x83\x12\xb6\x2c\x87\x9b\xf0\xa6\x93\x1a\x67\x9b\x46\x75\x09\xef\x35\xc1\xbd\x86\xfb\x48\x78\xaf\x89\x86\x62\x7d\xe0\x56\xfd\x76\x79\x2e\x6a\xbf\xbf\x4e\x85\x77\x9c\x58\xf8\x7b\x6f\xcb\x2a\xbc\xe3\x84\x8d\xe6\xbe\xac\xc2\x46\x13\x6c\xc1\xf0\xb2\xac\xc2\x1d\x90\x81\x3b\x37\x5b\x4c\xbc\xa3\xb4\x83\x54\x74\x2c\xab\xec\x29\xed\x21\xd5\xc0\x2d\x07\x4a\x07\x48\x2d\x0e\x7a\x39\x52\x3a\x42\x92\xd8\x01\x99\x94\x26\x24\x6d\x11\xfe\x44\xe9\x04\xc9\xa2\x43\x34\x43\xd2\x0c\xc9\x6b\x5b\x56\xe5\xe3\x40\xf1\x38\x28\xbd\xf8\xb2\x2a\xa1\xe9\xf3\x79\x10\x17\x99\xf2\x7d\xa0\x0d\x25\x85\x6b\x43\x09\x52\x85\x52\xdc\x6d\x4a\x92\x0a\x92\x15\x0f\x0b\x25\x2c\x05\xac\x8a\x97\x85\x92\x96\x82\x56\x6d\x3d\xc2\x13\x97\xb2\x62\x25\x5a\x4b\xc9\x4b\x07\x8b\x38\x7a\x52\xc9\x4b\xc1\xab\x5a\x14\x8b\x92\x97\x82\x57\xf5\x38\x76\x95\xbc\x14\xbc\x6a\x8f\xab\x41\xc9\x4b\xc1\xab\x8e\x28\x0c\x25\x2f\x05\xaf\x86\x53\x40\xc9\x4b\xc1\xab\x95\xb8\x2d\x8d\xbc\x0c\xbc\x5a\x8d\x37\x8f\x91\x97\x15\xbe\x8b\x6a\x59\x56\x23\x2f\x03\xaf\x26\x51\xfd\x46\x5e\x06\x5e\x4d\xf3\x58\x56\x23\x2f\xe3\x83\x0a\xaf\x13\x23\x2f\x53\x4a\x23\xc2\x93\x97\x81\x57\xf3\x11\xe1\xc9\xcb\xc0\xab\xf5\x1e\xe1\xc9\xcb\xc0\xab\x0d\x8f\xf0\xe4\x65\xe0\x25\xd9\x23\x3c\x79\x19\x78\x49\x89\x63\xda\xc8\xcb\xc0\x4b\x6a\x9c\x29\x46\x5e\x06\x5e\xd2\xe2\x52\x30\xf2\x32\xf0\x12\x89\x03\xc4\xc8\xcb\xc0\x4b\x54\x22\x3c\x79\x19\x78\x89\xc5\xdd\xe5\xe4\xe5\xe0\x25\x38\x66\xfc\xf9\x5e\x05\x2f\xe9\x71\x9d\x3a\x79\x39\x78\xc9\x28\x63\x59\x9d\xbc\x1c\xbc\x34\x97\xb6\xac\x4e\x5e\xce\x46\x2d\x71\x6c\x3a\x79\x39\x78\x69\xcd\x11\x9e\xbc\xdc\x28\x45\x3f\x3b\x79\x39\x78\x69\xeb\x11\x9e\xbc\x1c\xbc\x54\xa2\x67\x9d\xbc\x1c\xbc\x54\xa3\x69\x9d\xbc\x1c\xbc\xd4\xa2\x6b\x9d\xbc\x1c\xbc\xd4\xa3\x6b\x9d\xbc\x1c\xbc\xb4\x47\xd7\x3a\x79\xf9\x31\x5e\x3e\x3a\xb4\xfd\xe6\x08\x89\xff\xe3\xbb\xe5\xfb\x97\xc4\xe1\xfd\x7e\x9f\x97\x07\xbe\x5a\xf0\xc5\x10\x4f\xfe\xf3\x65\x7e\xff\x02\xba\x5d\x6f\x31\x0a\x7f\xff\x0b\x00\x00\xff\xff\x1d\xfa\x75\xc1\x2d\x0d\x00\x00"); +var _aefdd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\x39\x6e\x0f\x5b\x4b\x56\xe4\xd8\x50\x16\x4a\x42\xa9\x59\xb6\x2d\xcd\x66\x5b\x28\x3d\x38\xd6\x38\x15\xd4\xb2\x90\xed\x43\xde\xbe\x68\x6c\x4d\xe8\xc1\x48\xdf\xfc\x1e\x69\xfe\xd1\xe4\x87\xe6\xd8\x38\x3b\x43\xfe\x2d\x8c\xdd\x09\x67\xe8\xad\x33\x01\xa7\x71\x09\x1d\xc2\x05\xaf\xd6\x65\x99\x2c\xc0\xd8\x6e\x4e\x48\x4b\x37\xb4\x3e\xcb\xf2\xb3\xb3\xcf\xa7\xc7\xf3\xeb\x27\x55\x3c\x7e\x86\x65\xc2\x2d\x7e\x68\x8e\xa7\xdb\x34\xe3\xd0\xb8\x7e\x04\xb5\xe6\x9b\xc5\x6f\x67\x00\xe4\xdf\xf1\x6a\xa7\x39\xdc\xe0\xe1\xa3\x19\x2f\xf8\x0e\x0c\xf6\x31\xfe\x35\x18\x0c\xd6\x5d\xe1\xe1\x79\x0c\xd8\x4a\x16\x4e\x8b\xf7\x7f\x71\x40\x37\x83\xa4\x18\x3a\x43\x6b\x96\x1f\x5e\x5a\xff\xa5\x1d\x10\xfe\xab\xe7\x8d\x54\x12\xdf\x30\x4c\x76\x74\x20\xdf\x0b\xa1\xef\xe1\xd7\x9b\xc7\xed\xb0\x2c\xff\x79\x6e\x8e\xf0\x4b\x82\x14\x50\x68\xbd\x53\xbf\xb7\xf8\x8f\x97\xd1\xf0\x5f\x52\xae\x0e\x3a\x6b\xba\x3f\x6d\xc8\x3e\x08\x21\x44\x21\x64\xf9\x04\x95\x28\x65\xe2\x42\x47\xd6\xd5\xca\x4a\x48\x15\x79\xaf\x57\xee\x7b\x21\x89\x4b\xe6\x8e\xb8\x66\xc6\xc8\x95\x48\xac\x2e\xc4\x7b\x66\x43\x5c\x31\xf7\xc4\x9c\xaf\x29\xbf\x2c\x12\x23\xdd\x5f\xab\xd8\xb3\x54\x7a\xb6\x67\x2b\xa1\x75\x57\x64\x2f\xea\x09\xd2\x76\x47\x36\xea\x64\x23\x96\x9d\xb6\x05\x49\x25\x4b\x15\x4b\x92\xcc\x95\x9a\xcd\xef\xee\x12\xf5\xa5\x54\xec\x33\x65\xf5\xbd\xa8\xa9\x05\x6c\x51\xb6\x2c\xc9\xd5\x9d\x64\x77\x17\x96\x34\x35\xa2\x16\x9b\xb1\xd5\x08\x41\x9c\x43\x9e\x8b\x6e\x09\x01\xdd\x4c\x53\x48\x2f\x1f\x5f\xd3\x3a\xe4\x49\xf7\xa3\x8f\x59\xf4\xfd\x0b\x00\x00\xff\xff\x9c\x40\xf9\x5e\x15\x03\x00\x00"); +func _deda ()(*asset ,error ){_baa ,_egcg :=_ggfg ();if _egcg !=nil {return nil ,_egcg ;};_fab :=bindataFileInfo {_ee :"Adobe-KR-2",_ffd :1273,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491416,0)};_bdbg :=&asset {_da :_baa ,_dc :_fab };return _bdbg ,nil ; +};func _aggb ()([]byte ,error ){return _gb (_bgec ,"KSCpc-EUC-V")};func _ccea ()(*asset ,error ){_afff ,_dedbg :=_gfbb ();if _dedbg !=nil {return nil ,_dedbg ;};_dbaf :=bindataFileInfo {_ee :"Adobe-Korea1-0",_ffd :1190,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491374,0)}; +_abg :=&asset {_da :_afff ,_dc :_dbaf };return _abg ,nil ;};func _geg ()(*asset ,error ){_cbba ,_fcfg :=_bgcc ();if _fcfg !=nil {return nil ,_fcfg ;};_cba :=bindataFileInfo {_ee :"Adobe-GB1-UCS2",_ffd :229592,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490562,0)}; +_dcg :=&asset {_da :_cbba ,_dc :_cba };return _dcg ,nil ;};var _bgcb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x92\x41\x8b\xdb\x30\x10\x85\xef\xfe\x15\x73\xdc\x1e\x5a\x4b\x56\x1d\x25\xb0\x2c\x74\x13\xd8\xfa\xb0\xdd\xd2\xec\xa6\x85\xd2\x83\x23\x8d\x83\xa0\x91\x8d\x6c\x1f\xf2\xef\x8b\xde\xb8\xde\x43\x78\xd1\xc7\x7b\xa3\x19\x6b\xca\x7d\x73\x68\x62\x98\xa8\xfc\x9e\x7a\x77\xe4\x89\xba\x10\x7d\xe2\xb1\x9f\x93\x63\x3a\xf3\x25\xc4\xa2\xd0\x15\xf9\xe0\xa6\xff\x47\x88\xbb\xb6\x43\x51\x94\x4f\x8f\xaf\x1f\xbf\xd2\x3c\xf2\x72\xde\x37\x87\xe3\x6d\x9c\xf8\xda\xc4\xae\x27\x23\x39\x3f\x0f\x4b\x96\xa8\xfc\xc1\x97\x30\x4e\xe9\x46\x77\x5f\x7c\x7f\xe6\x0f\xe4\xb9\xcb\xfc\x25\x79\x4e\x21\x5e\xe8\xee\xe9\x51\xaf\xf4\x38\x0f\xc3\x5f\xbe\x72\x9c\x48\x83\x71\xf4\xd0\xa2\xdc\x3f\xb7\xc3\xb7\xf6\xca\x84\x26\x4e\xa0\x80\x27\x4e\x63\xe8\x23\x69\xf5\x49\xa9\xcd\x3b\x7f\xbd\x0d\xbc\x54\x29\xca\xb7\xe6\xf0\xd2\x75\x23\x4f\x64\x95\x12\xcf\xaf\xb7\xe6\x40\xbf\x35\x69\x45\x55\x6d\xac\xf9\xb3\x58\x7f\x3e\xf7\x7e\x0d\x56\x4a\x46\x71\xc1\xa7\x36\x5e\xb8\xb8\xaf\x74\x55\x3d\xd0\x22\x54\xdb\x1a\xc8\x08\x32\x40\x9f\x81\x5a\x41\x6d\x46\xbb\x2d\xd0\x59\x90\x7b\x20\x6b\x95\xb8\xbc\x20\x0f\xd7\x2e\x23\x23\xe5\x4d\x97\xd1\xb6\xca\xc8\x32\x50\x16\x6b\xd5\xa6\xb8\xaf\x4c\xa5\x33\x82\x50\x6d\xb7\x40\x5b\x41\x3b\x04\x15\x90\x13\xe4\xe0\x32\x40\x2c\x48\x6a\xd9\x8c\x0c\x5a\x35\xe6\x0c\x17\xca\x1b\x2f\xc8\xc3\x85\xf2\xb9\xa1\x45\xa8\xb6\xb9\x55\x53\x63\x20\x88\xb5\x4a\x90\x04\x6b\x04\x35\x9a\xa8\x25\x98\x85\x36\x0a\xc8\x4a\xd0\xe2\xc6\x1d\x6e\xb4\x12\xb4\xf2\x25\xd0\x97\x8c\x6d\x64\x6c\xad\xf3\x32\xac\xef\x90\xff\xe7\x1d\x5c\xd7\xc2\xcd\x29\x71\x9c\xb0\x81\x78\xff\xfc\x80\x21\xf2\xba\xdd\x43\x3f\xe4\x14\x7e\xff\x02\x00\x00\xff\xff\x96\x52\x71\xc9\x09\x03\x00\x00"); +var _gbce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x52\x4f\x8b\xdc\x20\x14\xbf\xfb\x29\xde\x71\x7b\x69\xd4\x4c\xb2\x19\x10\xa1\xec\xb0\x34\x85\xed\x96\x4e\xb7\x2d\x94\x1e\xdc\xf8\x1c\x64\x3b\x2a\xc6\x1c\xe6\xdb\x97\x67\x32\x53\xe8\x21\x9a\xdf\xbf\xf0\xcb\xd3\xe6\x61\x3c\x8c\xc1\x17\x68\xbe\xe4\x38\x1d\xb1\x80\xf3\xc1\x66\x9c\xe3\x92\x27\x84\x57\x3c\xf9\xc0\x98\x90\x60\xfd\x54\xae\xb0\x6e\xd3\xd9\x24\xc6\x28\x7f\xbc\xcc\x05\xcf\x63\x70\x11\xda\xd5\x67\x97\xb4\x79\x01\x9a\xaf\x78\xf2\x73\xc9\x17\xb8\xfb\x60\xe3\x2b\xbe\x03\x8b\x8e\xf8\xe7\x6c\x31\xfb\x70\x82\xbb\x4f\x26\x99\x20\x6e\xc2\x71\x49\xe9\x0f\x9e\x31\x14\xe0\x95\xc3\x60\xeb\xce\x9a\x87\x27\x93\x3e\x9b\x33\x42\xf3\xd1\x84\x37\xf3\xb6\x54\xbe\xd2\xdf\x31\xcf\x3e\x06\x10\xfc\x3d\xe7\xfd\x3f\xfe\xdb\x25\x21\x88\x2d\xff\x32\x1e\x9e\x9d\x9b\xb1\xc0\xd0\xaf\xdf\x6e\x7e\xbe\x8c\x07\xf8\x25\x40\x70\x90\x5d\xbb\x1b\x7e\x6f\xd6\x1f\x4f\xd1\xe2\x56\x80\x89\xf5\x77\xa6\x68\x71\x4e\x66\xc2\x6c\xc2\x09\x19\x80\xe2\x5c\x83\x7a\x7c\xd4\xd4\xf1\x3f\x95\x09\xbe\xa5\xbc\x5d\x19\x25\xc9\xdd\x39\x0d\xb2\x15\x4c\xf5\x84\x68\x59\x91\xd0\xa0\xee\x51\x83\xdc\xf7\x4c\x0d\x84\x86\x4e\x43\x2b\xef\x99\x1a\x7a\x42\x4e\x43\x27\x7a\xa6\xf6\x94\xa3\xa5\xdd\x49\xa6\xf6\xe4\xdc\x93\x26\x7b\xa6\x0c\x21\xeb\xb6\x1c\x92\xd3\x59\x0d\xdd\x4e\x30\xe5\x90\x10\x69\xc3\x50\xfb\x5e\x7b\xd1\x3b\x9d\xe6\x6d\xba\xd3\x92\x33\x86\x52\xcf\xb2\x0e\x91\xa6\xe0\x03\xde\xee\x45\x8a\x89\x52\xf5\xf9\x1b\x00\x00\xff\xff\xd5\x41\x84\x18\x43\x02\x00\x00"); +func _eafd ()([]byte ,error ){return _gb (_ccab ,"GBK2K-V")};func _gabc ()(*asset ,error ){_cfgg ,_cebbb :=_feecb ();if _cebbb !=nil {return nil ,_cebbb ;};_eccf :=bindataFileInfo {_ee :"UniJISPro-UCS2-V",_ffd :4271,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492866,0)}; +_gdbc :=&asset {_da :_cfgg ,_dc :_eccf };return _gdbc ,nil ;};func _gacf ()(*asset ,error ){_fad ,_ggg :=_efg ();if _ggg !=nil {return nil ,_ggg ;};_dga :=bindataFileInfo {_ee :"Adobe-CNS1-5",_ffd :1901,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491198,0)}; +_gda :=&asset {_da :_fad ,_dc :_dga };return _gda ,nil ;};func _acaaa ()([]byte ,error ){return _gb (_aeg ,"GB-EUC-V")};var _eegd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x98\x4f\x8b\x24\xb9\x11\xc5\xef\xfd\x29\xf2\xb8\x3e\xac\x3b\xf5\x2f\xa5\x80\x65\xc0\xcc\x60\xdc\x0b\x6b\x2f\x9e\x9d\xb5\xc1\xf8\x20\x65\xaa\x86\x02\x77\x75\x51\xdd\x7d\x98\x6f\x6f\x22\xe2\xbd\x5a\x16\xfb\x30\xd4\xcb\xdf\xa8\x42\x11\x4f\x21\xa5\xba\x1e\x3f\x3e\x7d\x7a\xba\x9c\xdf\x96\xc7\x9f\x6f\x2f\xfb\xe7\xf9\xb6\x9c\xce\x97\xe3\x36\x5f\x5f\xde\x6f\xfb\x5c\xc6\xfc\x7a\xbe\x3c\x3c\x84\xb8\x1c\xe7\xfd\x8d\x8f\xf6\xb1\x3f\xf7\xeb\xc3\xc3\xe3\x97\xcb\xf9\xc7\xa7\xcf\xdf\x7f\xf9\xe5\xcf\xed\xfb\xbf\x2c\xef\xaf\x13\xfc\xe3\xd3\xa7\xcf\xdf\x5e\xdf\xe6\xf3\xd3\xe5\xf4\xb2\x24\xff\xfe\xf1\x7e\x45\x8c\x65\x79\xfc\xfb\xfc\x7a\x7e\x7d\xbb\x7d\x5b\xbe\xfb\xd3\xf1\x32\xe6\x1f\x96\x63\x9e\x94\xff\xed\x76\xcc\xdb\xf9\xf2\x75\xf9\xee\xc7\x7e\xed\x97\x70\xff\x8f\xcf\xef\xd7\xeb\x7f\xe6\xf3\xbc\xbc\x2d\xd9\xd8\xbc\x1c\xf6\xf9\xf0\xf8\xf1\xa7\x7e\xfd\x6b\x7f\x9e\x0b\xf2\xf9\xf9\xf6\xe2\x29\xfd\x6a\x03\xec\xff\x7f\x9d\xb7\xd7\xf3\xcb\x65\x09\x7f\x5c\xd7\xf2\x1b\xfe\xe5\xdb\x75\x2e\x01\x71\xfe\xf9\xe5\xe9\xd3\xf2\xaf\xb0\x84\x75\x89\xa5\xa4\xed\xdf\xe0\xff\xf8\xe9\xe5\xb8\x8f\x0a\xeb\xea\x55\xec\xe7\xe3\xd6\x2f\x5f\xe7\xc3\x0f\x7b\x1c\xeb\x87\x05\x1f\x2d\x6e\xf2\xf0\xc3\x8c\x6d\x15\x85\x14\xb5\x49\x02\x2e\xc4\xc5\x70\x04\xde\x88\x37\xc3\x05\xb8\x11\xcb\x87\x25\xc4\x50\x19\x65\x27\x3f\x3e\x2c\x55\xca\xe6\xb8\x33\x78\xf7\xe0\x0d\x98\xc1\xbb\x07\xaf\x8e\x47\x04\x56\xd1\x22\x63\x8f\x44\x9c\x14\x37\xc7\x1b\xeb\x31\x51\x53\x03\x0d\xa4\x41\xe9\x06\x1a\x49\xa3\x52\x01\x4d\xa4\x49\x69\x05\x2d\xa4\x45\x4b\x8c\x21\x1b\xaf\x2d\x3b\x37\xd1\x52\x08\xc0\x85\xb8\x18\x5e\x81\x37\xe2\xcd\xb0\xdb\x5a\x59\xb9\x89\xb6\xde\x71\x25\xae\x86\x31\x65\x6f\xc4\xcd\x30\xa6\xec\x42\x2c\x86\xdd\x90\x46\xb3\x1b\xcc\xf6\x25\x6b\x03\x4b\x63\xa2\x36\xf1\xd8\xa3\x9f\x1c\x9b\xe0\x1a\x48\x6e\xee\xaa\xe4\xa6\xfe\xe5\x16\x80\x23\xb1\x5a\x95\xab\x00\x67\xe2\x62\xa3\x0b\xf0\x46\x5c\x0d\x27\xe0\x46\x2c\x86\x19\xa4\x13\x0f\xc3\xcc\x64\x27\xd6\xbc\xb3\x30\xf6\x41\x7c\x18\xe6\xe8\x49\x3c\x0d\x6f\xc0\x27\xe2\x93\xe1\xe6\x58\x58\xa5\xf5\x4e\x59\x91\x20\x9a\xc7\x45\x2d\x2b\xa6\x14\x16\x6f\xdd\x53\xd6\x0c\x9c\x88\x93\x61\x4c\x29\xf4\x44\x45\xcd\x02\x07\xd1\x56\x2e\x6a\x16\x4e\x49\xab\x6c\x9f\x65\xdf\x7e\x92\xa5\x12\x9b\x83\xc2\x29\xe9\xa0\x8a\x9a\x05\x0e\x8a\x10\x8b\x65\xc2\x29\x69\xac\x8a\x5a\xd6\x15\x78\x10\x0f\xc3\x9c\x92\x7e\xab\xa8\x25\x32\x41\xfa\x6d\x3b\xbb\x44\xf8\x2d\xf4\x5b\x45\x2d\x91\x56\xd1\x6f\x15\xb5\x44\xe4\xdd\xe9\x77\x37\xbf\x23\xac\xea\xf4\xbb\x9b\xdf\x11\xe5\x74\xfa\xdd\xcd\xef\x88\x45\xeb\xf4\xbb\xab\xb1\x25\xa1\x9c\x4e\x63\xad\xed\x4b\x42\x26\x9d\xc6\xda\x19\x53\x12\xca\xe9\x34\x56\x45\x2d\x09\xc5\x77\x1a\xab\xa2\x96\xc4\xbc\x69\x6c\x37\x63\x13\x8a\xef\x34\xb6\x9b\xb1\x89\xe5\xd0\xd8\x6e\xc6\x26\xe6\x4d\x63\xbb\x19\x1b\x98\x20\x8d\xb5\x0d\x58\x02\x62\x0f\x5a\x35\xcc\xaa\x80\xd8\x83\x56\x0d\x6b\xb6\x88\xe2\x07\x9b\x6d\x98\x27\x2b\x83\xd0\x93\x61\x55\xae\x30\x76\xb0\xca\x61\x55\xae\x48\x70\xb0\xca\x61\x79\x07\x78\x32\x98\xe0\xb0\x04\xb3\x3b\x58\x78\x42\x98\xa8\x25\x07\xe0\x40\x6c\x6b\x99\x57\xe0\x48\x6c\x6b\x99\x23\x70\x22\xb6\x72\x72\x05\xce\xc4\x56\x4e\x16\xe0\x42\x6c\x4b\x9c\x37\xe0\x8d\xd8\x96\x38\x37\xe0\x4a\x6c\xc5\x17\xe6\xdd\x88\xad\xf8\xc2\x4c\x84\xd8\xd6\xb2\x78\xde\x8d\xbb\xc1\x44\x8b\x31\x00\x1f\xc4\x87\xe2\x20\xc0\x93\x78\xda\xe8\x08\x7c\x22\x3e\x19\xf6\xd8\x3b\x3d\x31\xa1\x2f\x51\x4f\x7c\x72\x3b\x98\x68\xd1\x56\x2d\xb5\xd5\x9d\x55\xa1\x16\x36\x3b\x1f\xf5\xa9\x01\xdb\x61\x25\x2b\xb0\x9f\x4a\x10\x2d\xd6\x15\x38\x13\x17\x1b\x1d\x80\x77\xe2\xdf\x5e\x0e\xc9\xdf\xe2\x77\x81\xd7\xb9\x3e\x9d\x88\x4f\x86\x7d\xca\xc0\x04\x4d\x54\x09\x0d\x38\x11\x27\xc3\x02\x5c\x88\x2d\x93\xb8\x02\x57\xe2\x6a\x38\x00\x0b\xb1\x18\x8e\x8e\x3b\x63\x77\x8b\x1d\x93\xde\xbf\xee\x57\xa0\xff\x77\x2b\x9a\x49\xaf\x0e\xfe\xad\xe8\x19\xc5\x0c\x5c\x88\x3d\xa3\x02\x5c\x89\x3d\xa3\x0d\x78\x12\x4f\xc3\x6e\x42\xf4\x53\x15\xa2\xc5\x1a\x81\x77\x62\xeb\xa3\xea\x65\xc5\x0e\xcb\x4c\x54\x89\x0d\x98\x09\xa2\x2c\x01\x66\x82\x76\xc4\x49\x5a\x81\x99\xa0\x9d\x65\x92\x18\x5b\x88\xcd\xb2\xe4\x99\x24\x16\x9f\xbc\x78\x3b\x10\x53\x4b\x9c\x32\xf9\x94\x29\x03\x17\x62\x9f\xb2\x00\x57\x62\x9f\x72\x03\x9e\xc4\xe6\x49\x72\x4f\xd2\x60\x90\xb1\x19\x6e\xc0\x3b\xb1\x37\x9d\xe7\xbd\xfb\xc1\x02\xd1\x52\x59\x81\x03\xb1\xee\x96\x20\xa5\x81\x27\x72\x6d\xf4\x94\x88\x33\x71\xb6\xe1\x1b\xc3\x14\x72\xbb\xa7\xa1\xfc\xdd\xcf\x10\x08\x1d\xce\x64\x2a\x79\x75\x5e\xc0\x1b\x79\x73\xce\x38\x42\x2e\xce\x99\x4e\x27\xef\xce\x37\xf0\x41\x3e\x8c\x57\xa6\xb9\x93\xef\xce\x23\xf8\x41\xee\x3b\x92\xc3\x61\xfc\xae\xbb\x5d\x87\x23\x1d\x6e\x77\x13\x55\x32\xaa\x12\x9a\x20\x66\x42\x46\x14\xa1\x09\x62\x97\xd5\x44\x4c\x0f\xc4\x3d\x68\xe4\xf4\x40\x45\x4b\x49\x80\x69\x81\xb8\x05\x0d\xa9\x0b\x2d\xd0\xc3\x44\x79\x06\xbf\xe7\x3e\x6d\xbd\x99\x3a\x0e\x99\x5d\xb7\x86\x0e\x87\x93\x7e\x2b\x80\x68\x09\x7b\x63\x67\xff\x9a\x68\x29\x73\x34\x0d\xe8\xde\x06\x6c\x32\xf6\xb5\x09\xe5\x98\xb5\xd3\x02\xbb\x2e\x48\xe1\x70\x5a\xe0\xfd\x9e\xd1\x05\x9d\x0e\x74\x2f\x55\xb0\xaa\x9d\xa5\xaa\x68\xa9\x10\x73\xb1\xed\x62\x20\xac\xb4\x73\x4d\xbb\x1b\x23\x2c\x89\xc6\xe8\x15\x20\xc4\x75\x85\x91\x83\x3b\x41\x45\x4b\xdc\x08\x83\xc6\x8c\xe8\xc3\x91\xe4\xa0\x33\xc3\x37\x08\x6c\x1f\x74\x66\x14\x1f\xce\x30\x74\xc0\x37\x6b\xae\xc0\x74\x40\x45\x88\xfe\xb7\x89\x3e\xd2\x02\x15\xca\x51\xeb\x60\x17\xa8\x68\x29\xa3\xd6\x41\x67\x54\xe8\x70\x86\xa7\x35\x2a\x5a\xca\xb0\x80\x47\x84\x09\x1d\x8e\xd6\x1b\xb4\x4c\x85\x72\x26\x7f\xb7\xec\x64\x1c\x6f\x95\x83\x67\x8a\x09\xe5\x11\x3c\x90\x07\x8f\x23\xe0\x91\xdc\x9a\x0c\x26\x1c\x3c\x6b\x0e\x3b\x25\xe2\x1a\x13\x78\x25\xaf\xb6\x22\x1c\xde\x88\xdd\x9b\x48\x2e\xe4\x76\x32\x67\x26\xd9\x89\xbb\xb5\x47\x06\x1e\xc4\xee\x01\x5e\x12\x07\x8f\x82\xc3\x8f\x82\xcc\x5c\x26\xb1\x6d\xa7\xc4\x39\xb1\x9d\x0e\x71\x07\xb0\xb9\x0f\xa1\x03\x7e\x7d\xc0\xbe\x39\x84\x06\x88\x37\x13\xba\xe6\xe0\xb5\xc2\x84\x72\x8e\xcf\xe4\xd9\x79\x01\x2f\xe4\xee\x18\x0e\x89\x83\x67\x8a\x89\x96\x32\xc2\xb3\x0d\x4c\x84\xb8\xde\xf9\x4e\xee\x1e\xb0\x58\xf6\xc1\x81\x3e\xc8\x58\x57\xf6\x81\x09\xe5\x01\x9c\x2e\xa8\x68\xc9\xde\xfc\xa7\x81\xd3\x5c\x85\xd8\x9b\x48\x80\x77\x62\x7b\x69\xdb\x59\xae\x4f\x93\xd8\x6e\x79\x15\x41\xfc\x7c\x83\x08\x31\xd8\xdd\x4a\x1f\x0f\x72\x5b\x27\xeb\xf8\xd3\x40\xc7\x43\x54\xb1\xbf\x3d\xf5\x89\xa3\x87\x8d\x5e\x11\xdc\x13\x87\xa8\x4d\x56\xc3\x87\x20\x88\x89\x2a\xb6\xe5\xf5\x69\x27\xf6\x37\xeb\x06\x7c\x10\x7b\x6c\xe2\x49\x3c\x71\xf9\xfb\xfd\x25\xea\x7f\xae\x50\xa7\x71\xf2\xe3\x16\xa2\xb6\x26\xbf\xfb\x8e\xea\xe7\x7e\x7d\xb8\xff\x04\xb6\xbf\xdf\x6e\xf3\xf2\x66\x3f\xb8\xd9\x2f\x5c\xcb\x31\x4f\xe7\xcb\xbc\xff\xa8\x77\x7d\xb9\xea\xb7\xec\xdf\x7f\x03\x00\x00\xff\xff\x74\x27\x17\x14\x00\x14\x00\x00"); +func _ecdb ()(*asset ,error ){_ecfa ,_bbde :=_fgf ();if _bbde !=nil {return nil ,_bbde ;};_bdaa :=bindataFileInfo {_ee :"Adobe-Korea1-2",_ffd :1845,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491385,0)};_dadb :=&asset {_da :_ecfa ,_dc :_bdaa };return _dadb ,nil ; +};func _bgfc ()(*asset ,error ){_ccaf ,_gbfec :=_faac ();if _gbfec !=nil {return nil ,_gbfec ;};_gceg :=bindataFileInfo {_ee :"UniJIS2004-UTF8-V",_ffd :3961,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492834,0)};_ebdeg :=&asset {_da :_ccaf ,_dc :_gceg }; +return _ebdeg ,nil ;};var _dfde =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x95\xcd\x8a\xe3\x46\x14\x85\xf7\xf5\x14\xb5\x9c\x2c\x26\xae\x7b\xeb\x1f\x84\x21\xb8\x19\xf0\x62\x66\x42\x9c\x4e\x02\x21\x0b\x59\x2a\x19\x41\x2c\x09\x59\x5e\xf4\xdb\x87\x5b\x47\xdd\x81\x31\x18\xd9\x9f\xab\x74\xac\xef\xc8\xd7\x87\xd3\xf9\xe5\x3c\x8d\x9b\x3e\xfc\xba\xce\xdd\xa5\x6c\x7a\x18\xa7\x7e\x2d\x8f\xf9\xb9\x76\x45\x5f\xcb\x6d\x9c\x94\x22\xd6\xfd\xd8\x6d\xef\x6f\xeb\xa1\xbb\xb7\x8b\x52\xb2\xff\xf2\xf6\xd8\xca\xfd\x3c\x0d\xb3\xb6\x58\xd7\x3f\x97\x7d\xad\xd6\x87\xdf\xca\x6d\x7c\x6c\xeb\x9b\xfe\xf4\x4b\x3f\x5f\xcb\x4f\xba\x2f\x83\xf0\xef\x6b\x5f\xd6\x71\xba\xe9\x4f\xa7\x6f\x17\xfa\xc0\x97\xe7\xb2\xfc\x5b\xee\x65\xda\xb4\xa9\xac\x4c\x7d\x3d\xaa\xc3\xe9\x6b\xbb\x7c\x6b\xef\x45\x1f\xea\x99\x3e\xcb\xbe\xcf\x58\x54\x3f\xfb\xa3\xac\x8f\x71\x9e\x34\x99\x9f\x8d\x09\xff\xf3\xdf\xdf\x96\xa2\x69\x3f\xc9\xeb\xf9\xe5\xfb\x30\x3c\xca\xa6\x73\xd8\xf7\xfe\xf5\x7a\x7e\xd1\x7f\x93\x26\xa3\xd9\xdb\xec\xfe\xd9\x97\xfe\xf9\x75\xee\xcb\xfe\x2d\xea\x95\x9e\xe6\xe7\xb4\x69\x72\x26\x67\x40\xc2\x65\x76\x73\x5f\x1e\x4b\xdb\x95\xb5\x9d\x6e\x45\x69\xdd\x18\x63\xcc\x51\x37\x36\x7e\xf9\x72\x94\x2b\xf8\x61\x85\xf2\x61\xdf\x39\xf6\x20\xef\x3b\x8c\x19\x86\xa3\x96\x87\x51\x8d\x21\x30\x02\x63\x1f\x54\x63\x18\x8c\xc1\x3c\xb1\x6a\x8c\x05\xb3\x60\x31\x24\xd5\x18\x07\xe6\x2a\x23\xc3\x4e\x35\xc6\x83\x79\x30\x4e\x92\x11\xc0\x02\x98\xb7\x92\x11\xc1\x22\x58\xcc\x92\x91\xc0\x52\x65\x6c\x9c\x64\x64\xb0\x0c\x66\x8d\x64\xb4\x60\x2d\x98\x0f\x92\x71\x05\xbb\x82\x25\x92\x8c\x0e\xac\xab\xcc\x9a\x28\x19\x3d\x58\x0f\x66\x59\x32\x0a\x58\x01\xf3\x49\x32\x06\xb0\x01\x2c\x39\xa3\x1a\x82\x3f\x82\x3f\x67\x72\x50\x0d\xc1\x1f\xc1\x9f\xb3\x9e\x55\x43\xf0\x47\xf0\xe7\x82\x49\xaa\x21\xf8\x23\xf8\x73\x29\x38\xd5\x10\xfc\x11\xfc\x79\x62\xc9\x80\x3f\x82\x3f\x6f\xa3\x64\xc0\x1f\xc1\x9f\x0f\x56\x32\xe0\x8f\xe0\xcf\xa7\x24\x19\xf0\x47\xf0\x17\xc8\x49\x06\xfc\x11\xfc\x05\x67\x24\x03\xfe\x08\xfe\x42\x90\xce\x09\xfe\x08\xfe\x42\x96\xce\x09\xfe\x08\xfe\x22\x49\xe7\x04\x7f\x04\x7f\xd1\x49\xe7\x04\x7f\x04\x7f\x31\x48\xe7\x04\x7f\x04\x7f\x31\x4b\xe7\x0c\x7f\x0c\x7f\x89\xa4\x73\x86\x3f\x86\xbf\xe4\xa4\x73\x86\x3f\x86\xbf\x14\xa5\x73\x86\x3f\x86\xbf\x94\xa5\x73\x86\x3f\x86\xbf\xcc\xd2\x39\xc3\x1f\xc3\x5f\x76\xd2\x39\xc3\x1f\xc3\x5f\x8e\xd2\x39\xc3\x1f\xc3\x5f\xce\xd2\x39\xc3\x1f\x57\x7f\x72\x3b\x4b\x06\xfc\x71\x06\x73\xd2\x39\xc3\x1f\xb7\x60\x51\x3a\x67\xf8\xe3\xea\x4f\x6e\x0a\xc9\x80\x3f\xee\xc0\x58\x3a\x67\xf8\xe3\x1e\xcc\x4b\xe7\x0c\x7f\x5c\xc0\xa2\x74\xce\xf0\xc7\xd5\x1f\xb1\x91\xce\xed\xfe\x8b\x37\x60\x2c\x9d\x5b\xf8\xb3\x04\xe6\xa5\x73\x0b\x7f\x96\xc1\x92\x74\x6e\xe1\xcf\x56\x7f\x64\x8d\x74\x6e\xe1\xcf\x3a\x30\x2b\x9d\x5b\xf8\xb3\x1e\xcc\x4b\xe7\x16\xfe\x6c\x00\x4b\xd2\xb9\x8d\xfb\xf4\x21\x3e\xca\xb8\x4a\xa6\xce\xa0\xf7\x59\x23\xaf\x65\x7a\x7f\xcc\xd3\xee\xb9\xae\x65\xda\xea\xec\xae\x13\x53\xa6\xdb\x38\x95\x8f\xff\x81\x65\x5e\x64\x57\x7d\xfe\x17\x00\x00\xff\xff\xdd\x7b\x1f\xc6\x33\x06\x00\x00"); +func _fege ()(*asset ,error ){_aaad ,_eebg :=_affa ();if _eebg !=nil {return nil ,_eebg ;};_bdggb :=bindataFileInfo {_ee :"UniJIS-UCS2-HW-V",_ffd :4243,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492906,0)};_ageb :=&asset {_da :_aaad ,_dc :_bdggb };return _ageb ,nil ; +};func _gfbb ()([]byte ,error ){return _gb (_bdac ,"Adobe-Korea1-0")};var _ccgb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\xc1\x8a\xdb\x3c\x14\x85\xf7\x7a\x0a\x2d\xe7\x5f\xcc\x1f\xdd\x6b\x59\x96\xc0\x0c\x94\x0c\x03\x61\x98\xb6\xcc\x94\x76\xed\xd8\x72\x30\x34\xb6\x71\x9c\xc5\xbc\x7d\xb9\xf7\x38\xa1\x74\x11\x1c\x7d\x91\x4e\xc4\x77\x2c\xed\xf6\x87\xe7\xc3\x38\xac\x76\xf7\x7d\x99\xda\x8f\xbc\xda\x7e\x18\xbb\x25\x5f\xa6\xeb\xd2\x66\x7b\xcc\xa7\x61\x34\x86\xd8\x76\x43\xbb\xde\x86\xfa\x68\xcf\xcd\x6c\x8c\xac\xff\xf8\xbc\xac\xf9\x7c\x18\xfb\xc9\x16\x98\xd7\x5d\xe7\x6d\xae\xb5\xbb\xf7\x7c\x1a\x2e\xeb\xf2\x69\x1f\xbe\x74\xd3\x31\xff\x67\xbb\xdc\x0b\xff\xb6\x74\x79\x19\xc6\x93\x7d\x78\x7d\xbf\xc3\x8f\xeb\x3c\xff\xce\xe7\x3c\xae\x96\x95\xe5\xb1\xd3\xa7\xd9\xed\xdf\x9a\xf9\x6b\x73\xce\x76\xa7\x39\x8f\xaf\xef\x8f\x98\xa2\xbf\xfc\xcc\xcb\x65\x98\x46\x4b\xff\x3b\xf7\x17\xfe\xf1\x39\x67\x4b\x5b\xc2\xaf\xb7\xa9\xcb\xd6\xdd\xf2\x0e\xcf\xfb\xe9\x3a\xae\x96\xc8\x97\xdb\x14\xc2\xb6\xdb\xa9\xcb\x97\xb9\x69\xf3\xd2\x8c\xa7\x6c\xac\xad\x9d\x73\xee\xc9\xd6\xbc\x7f\x79\x79\x92\x3d\xfd\x33\xc3\xf8\x72\x5b\x39\x74\x20\xb7\x15\xce\xf5\xfd\x93\x75\xa6\x76\x84\x31\xc9\x98\xcb\x60\x6a\xc7\x20\x2c\xa4\x24\x36\xb5\x2b\x40\x0a\x21\x55\x88\xa6\x76\x1e\xc4\x0b\x21\xc7\xde\xd4\xae\x04\x2a\x15\x71\x94\xec\x00\x14\x14\x95\x85\x84\x57\x40\x95\xa2\x2a\x49\x7a\x04\x8a\xba\x03\xe7\x25\x3e\x01\x25\x45\x85\x93\xf8\x06\xa8\xd9\xf6\x29\xf1\x47\xa0\xa3\xa2\x48\x12\xdf\x02\xb5\x82\x0a\x57\x49\x7c\x07\xd4\x29\x2a\x58\xe2\x33\x50\x56\x54\x46\x89\xef\x81\x7a\x45\xd1\x3b\x53\x13\x4c\x91\x9a\xf2\x2e\x05\x53\x13\x64\x91\xca\xf2\x45\xc9\xa6\x26\xd8\x22\xb5\xe5\x83\x8b\xa6\x26\xe8\x22\xd5\xe5\x63\xf0\xa6\x26\xf8\x22\xbf\x39\x95\x78\xf8\x22\xf5\x55\x16\x95\xc4\xc3\x17\xa9\xaf\x32\x14\x12\x0f\x5f\xa4\xbe\xca\x18\x25\x1e\xbe\x48\x7d\x05\xf2\x12\x0f\x5f\xa4\xbe\x82\x77\x12\x0f\x5f\xa4\xbe\x42\x90\x62\x09\xbe\x48\x7d\x85\x24\xcd\x12\x7c\x91\xfa\xaa\x48\xaa\x25\xf8\x22\xf5\x55\x79\xa9\x96\xe0\x8b\xf2\xd6\xbf\xc4\xc3\x17\xa9\xaf\x2a\x49\xb5\xbc\xbd\x8b\xea\x2b\x92\x54\xcb\xf0\xc5\xea\x2b\x7a\xa9\x96\xe1\x8b\xd5\x57\xac\xa4\x5a\x86\x2f\x56\x5f\x31\x49\xb5\x0c\x5f\xac\xbe\x12\x4b\xb5\x0c\x5f\xac\xbe\x92\x97\x6a\x19\xbe\x58\x7d\xa5\x4a\xaa\x65\xf8\x62\xf5\x95\x92\x54\xcb\xf0\xc5\xf1\xf6\xae\x4a\x3e\x84\x71\x02\xf3\x52\x2e\xc3\x18\x37\x60\x95\xb4\xcb\x50\xc6\xaa\x4c\xda\x97\xbf\x80\x33\x6e\x8f\x8d\x30\x0e\x5e\x4f\xde\xed\x84\xc9\x77\xb9\x83\xee\xf7\x42\x7b\x5d\x96\x3c\xae\x7a\x03\xe9\xe1\x97\x33\x3d\x8c\xf9\x7e\x9b\xcd\xd3\x2c\xab\xf4\xf3\x27\x00\x00\xff\xff\x40\xb3\x0e\x9a\xf9\x04\x00\x00"); +var _gfe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x4f\xcb\x25\xc9\x71\xf5\xf7\xcf\xa7\xb8\x4b\xbd\x8b\xd7\x53\x95\xf1\x2f\x13\x1e\x1a\x84\x24\xf0\x18\x64\x19\xcb\xb2\x0d\xc6\x8b\x5b\xb7\xea\x0e\x0d\x9e\xee\xa6\xa7\x67\xa1\x6f\x6f\xe2\x77\xae\x64\x2c\x0c\xb3\x10\x47\x73\x3a\x2b\x2b\x32\x32\xf2\x44\x44\xd6\x7d\xbe\xfb\xcd\xf7\xbf\xfd\xfe\xd3\xc7\x6f\xb7\xef\xfe\xe9\xeb\xe7\xc7\x1f\xaf\x6f\xb7\xe7\xc7\x4f\xe7\xd7\xeb\xa7\xcf\x3f\x7f\x7d\x5c\xb7\xe3\xfa\xe1\xe3\xa7\xb7\xb7\x7d\xdc\xce\x8f\x8f\x6f\x7f\xf9\x4f\xe0\xf1\xe3\xfd\xcb\xdb\x5b\x3f\xff\xc7\x3f\xff\xf4\xed\xfa\xf1\xfb\x4f\xcf\xcf\x37\xd3\xb8\xf3\xe7\x2f\xaf\xb1\xb7\xdb\x77\xff\x7c\xfd\xf0\xf1\xa7\x6f\x5f\xff\x7c\xfb\xd5\xaf\xcf\xcf\xc7\xf5\xff\x6e\xe7\xf5\x6c\xfe\x0f\x5f\xcf\xeb\xeb\xc7\x4f\x3f\xdc\x7e\xf5\x0f\xf7\x2f\xf7\x4f\xfb\x5f\xff\xe1\x8f\x3f\x7f\xf9\xf2\x5f\xd7\x8f\xd7\xa7\x6f\xb7\x1d\xee\xfa\x74\x82\x6f\xdf\xfd\xe6\xf7\xf7\x2f\xff\x78\xff\xf1\xba\x7d\xf7\xeb\xf3\xfc\xff\x7f\x0f\x0b\xf9\xaf\xd7\xd7\x9f\x3e\x7e\xfe\x74\xdb\xb7\xbf\xdb\xb6\xfc\x1f\xfe\x5f\xfe\xfc\xe5\x7a\xcd\xf2\xf6\xdd\x9f\xbe\xff\xed\x1f\x9e\xcf\x9f\xae\x6f\xb7\x98\x9b\xc6\xfc\xfb\x9f\xbe\xff\xed\xed\x3f\xf6\xdb\xbe\xdd\x46\xd8\x88\xff\x7c\x0d\xfd\xb7\xdf\x7f\x3e\xaf\x9b\x06\xbd\xed\x5a\xcc\xe3\xf3\x79\xfd\xf4\xe5\xfe\xb8\xbe\xde\x3f\xfd\x70\xbd\xdd\x6e\xef\x63\x1f\xfb\x87\xdb\x7b\xfd\xae\x7e\xf7\xa1\xad\xfc\x9b\x11\x6f\xfb\xb6\xbd\x1e\xfd\x78\x8a\xfa\xcb\x23\x63\xaf\xeb\xc3\xed\x96\x66\x6f\xef\x63\x88\x1a\xa3\xa9\x1a\xd5\x94\xdd\xa1\x7c\x6f\xca\xf7\xa6\x5c\x54\x6c\x50\xab\xa9\x78\x40\xe5\xbd\xa9\xc8\xa6\x6a\x40\xd5\x6a\xaa\x78\xb0\x5f\xf5\x82\x5b\x55\x3f\x68\xb6\x35\x65\xc6\xa8\xb9\x35\xe5\x18\x61\xc1\x5c\x0b\x2a\x45\x55\x53\x73\xef\xe9\x5d\xa6\x7a\x59\x53\x3e\x9a\x2a\x17\x95\x1f\x6e\xb5\x62\xbe\xbd\x8f\xd0\xa8\x68\xea\xb6\x46\xbc\xbd\x8f\x14\x95\x36\x3f\xdc\xf6\x6d\x6f\xbb\x52\x6f\xcc\x80\xb2\x1e\x55\x1a\x55\xfd\x2f\xfb\x16\x6d\x6a\x85\xa8\x82\x5a\xfd\xc6\xa9\x51\x40\x39\x0b\x9a\x63\x88\x1a\x4d\xcd\x1d\xca\x44\x59\x53\x4b\x94\x8b\x72\xa8\x80\x0a\x51\xf1\xe1\x56\xb1\x19\x54\x8a\x4a\x46\x69\xfa\x12\x55\x8c\x2a\xa8\x29\x6a\x36\x35\xf4\xe0\x12\xb5\x9a\xda\x35\xfd\x5d\xd4\xbd\x29\x93\x11\x87\xa8\x03\x4a\xd3\x3f\x44\x3d\xb0\x7e\x83\x3a\x45\x9d\x50\x5a\xf6\x25\xea\xc2\x2e\x87\x7a\x8a\x7a\x42\xb5\xef\xa7\xb6\x16\xa8\xd8\x12\x4a\xfe\x6a\xa8\xd8\x98\xcb\xe4\xaf\x86\x8a\x9d\xb9\x4c\xfe\x6a\xa8\x30\x8c\x30\xf9\xab\xa1\x62\xe8\x41\xf9\xcb\xf0\x97\xe9\x8d\xf2\x57\x43\x45\x68\x2e\xf9\xcb\xf0\x17\xbb\x3d\x4d\xfe\x32\xf9\x4b\x76\xc9\x5f\x26\x7f\xe1\x09\xc5\x3d\x50\x61\x9a\x4b\xfe\x32\xfc\xe5\x32\x42\xfe\x6a\xa8\xd8\x64\x84\xfc\xd5\x50\xc1\x19\x9a\x26\x7f\x35\x54\xec\x7a\xa3\xfc\xd5\x50\x41\xc8\x4d\x97\xbf\x1c\x7f\x79\xbc\xbd\xdb\x46\x7c\x09\xf6\x7d\x88\x1a\xa2\xda\x5f\x9c\x5a\xdb\x88\x2f\xdb\x4c\xa3\xaa\x29\xd3\x28\xbc\xba\x72\x87\x7a\x8d\xba\xf7\x28\xe7\x41\x16\x24\xa8\xec\x35\xda\xc6\x82\x6c\xcb\xb3\x47\xc5\x68\x2a\x2f\x51\x17\xa3\x30\x22\x9f\x50\xb5\x7d\xb8\xed\x63\x63\xae\x92\xa9\x0d\xb5\x92\x07\x4b\x46\x34\xec\xa3\x03\xc0\xb6\x92\x11\x0d\x95\x26\xca\x45\x1d\x8c\x9a\x50\x32\xa2\xa1\xd2\x58\x50\x9d\xa2\xae\x1e\xb5\x37\x25\xfd\xb2\xbd\x83\x7c\x1f\xbd\x69\xb6\x13\xe4\x82\xca\x8e\x09\xdb\x09\x72\xdb\x0d\x23\x06\xa3\xe4\x09\xa0\x56\x1a\x94\x8b\xf2\x1e\xa5\x07\x89\x2f\x41\xa5\xe9\xc1\x14\xd5\x3a\x31\x7c\x83\x5a\xa2\x16\x73\x39\x94\x8c\x68\x4f\xee\xc3\x45\x9d\xa2\x3a\x26\xb2\x23\xc7\x76\x62\xc2\x76\x04\x66\x38\x6f\xf4\x21\x8a\xad\x65\x87\x76\x97\xa9\xad\xab\xfb\x08\xa8\xd4\x82\x92\x4d\xd3\xf4\x89\xbf\x76\x39\xa7\xcf\xa3\x49\xc9\x6d\xb4\x4e\xec\xb6\x1b\xd4\x14\x35\x79\x30\xa0\x96\xa8\x76\xa1\x8d\x1d\xea\x2e\x0a\x17\x7a\x42\xf1\xc6\x11\x4f\x46\x31\x57\x6e\x50\x0d\x95\x5e\x50\x7a\x63\x66\x8f\x2a\x51\x25\xaa\x70\x0e\x6f\x4c\x19\x51\xbc\x71\x62\x6a\xe9\x8d\xa5\x37\x4e\x28\xbd\x91\x05\x39\xf1\x65\x5a\x10\xb0\x7b\x0b\x9f\x99\x8e\x82\xe9\x28\xc4\x06\x85\xbf\x0c\x7f\xf9\xd6\x9b\x66\xf2\x97\xc9\x5f\x44\xb4\xc9\x5f\x46\x60\x22\x69\x66\x0a\x4c\x53\x60\xe2\x68\x53\x60\x1a\xa6\xfa\x62\x7a\x99\x6a\x32\xb5\x05\xc6\x4c\xa6\x9a\x4c\x5d\x6d\x97\x52\x93\x39\x5b\x1b\xdb\x4e\x42\xfe\x4b\xde\xfd\xbf\x52\xb1\xb9\x76\xde\xb5\xf3\x11\x50\x26\xaa\xa3\x08\x81\x30\xf7\x53\x14\x51\xd4\x49\xd6\xdc\x89\x22\xcf\x8e\xdb\x60\xb7\x3c\x43\x14\x71\x1b\x18\x94\xc4\xad\x63\x63\x54\xaf\x44\x89\xd1\xa2\xb7\x79\x8f\x4e\x40\x16\xda\x66\xa0\xb2\xd3\xa7\x05\xe9\xc0\xa2\x55\x6a\x4f\x4e\x70\xa0\x52\x82\xca\x4e\x8c\x16\xae\xb9\x3a\x00\xf6\x44\x7f\x22\x87\x28\xe9\x0f\x0f\xa6\x89\xea\x88\x4c\x24\x29\x14\x0c\x40\xad\xd4\x83\x44\x64\x60\x6a\x42\x29\x61\x0b\xf6\x9c\x0b\x6a\x88\xc2\x5f\xb9\x41\x99\xa8\xde\xad\xec\x24\x6b\xa9\x50\x4e\x85\x72\x8a\x62\x8d\x24\xfc\x3d\x17\x73\xc9\xf7\x40\xad\x9c\x50\x9a\xab\x9d\xbb\x17\x01\x9f\xfe\x14\xf5\x64\xae\x0e\x99\x0c\x3c\x91\x1d\x4c\x7b\xa1\x65\x99\xa7\x28\x76\x08\x65\x49\xa9\x67\x76\x60\xed\x85\x27\x52\x81\x05\x54\xa2\x19\x59\x21\xaa\xb7\xa3\x8a\x07\x15\x58\x40\x25\x87\x27\xa5\x8b\xc0\x4e\xb1\x64\x29\x5d\x04\x2a\x5f\xd3\xbf\xde\x88\xf5\x44\xb7\xaa\x19\xab\xd6\xaf\xbd\x66\x4f\x5f\x24\x46\x41\x25\xcb\x2e\x12\xa3\x51\xe7\xec\x93\xdd\xae\x18\xa2\x70\x74\x17\x71\x56\x81\x73\x0a\xed\x9f\x24\xa0\x92\xf6\x03\x95\xe5\x50\x7a\x10\x53\x67\x8a\x3a\x45\x9d\x38\x7a\x41\x5d\xa2\x48\x2d\xd5\x6f\x54\x49\x65\x24\xff\x7d\x22\x23\x4a\xfe\x82\xca\x17\x85\xbf\xc8\x95\xfb\xe4\xd4\x4d\x45\x21\x50\x59\x13\x0a\x23\x26\x9e\x58\x7b\xfb\x6b\x69\xfa\x45\xdc\x2f\x16\xb4\x14\x13\x4b\x71\xdf\x45\x9c\x2d\xc5\xfd\x62\x6b\x17\x2e\x5c\xda\xda\xa5\xad\x7d\x51\x58\xbf\x7a\x6b\xc7\x86\x70\x2d\x6d\xed\xd2\xd6\xe2\xe8\xa5\xad\x5d\x35\x7b\x14\x67\x7b\xd5\x12\xb5\x18\xe5\x50\x77\x51\x57\x8f\x22\xa2\xef\x32\xf5\xde\xbe\x1f\x1b\x01\x70\x97\xef\x81\xca\x29\x8a\x37\xde\xfb\x88\x8f\xbd\x6b\x0b\xbb\x4b\x76\x81\xca\x29\x8a\xad\xbd\x63\xea\x4e\xac\xde\x65\xea\xfd\x65\x6a\x41\x85\xa8\x36\x62\xef\xc2\xde\x0e\x19\x71\x0c\xa6\x0f\x51\x25\x4a\xd3\x4f\xa8\x29\x6a\xf5\x28\xa2\xf0\xd0\xe1\x3b\x74\xf8\xa6\x1e\x3c\x44\x1d\x8c\x12\xf5\x10\x45\xa6\x47\x63\x0f\xea\x4d\x3b\x3a\x18\xc7\xce\x0e\x1d\x4a\xb2\x40\xe9\x6c\x1f\x4a\xb2\x47\x07\xc0\xd8\x71\xe1\xa1\x00\x00\x6a\xa1\x72\x87\x02\xe0\xd0\x82\xba\x64\xb7\x87\x16\xf4\xf0\xfa\x70\x1b\xca\xa8\x0f\x9f\xa2\x48\x8c\x4b\x14\x6f\x7c\x74\x5b\x33\x86\xa8\x38\x45\x11\xab\x28\xe6\x23\x10\x85\x07\xd3\x5b\x97\xd9\x76\x6a\xfa\xb3\x97\x3d\x8c\xc4\x78\x6a\xd9\xa7\xe2\x6b\x89\x62\xd9\x67\x47\xf1\x30\xa4\xf6\x54\x6d\x01\x54\x2e\x51\x38\xfa\xec\xcc\x35\x0c\x7f\x9d\xca\x5c\x40\x49\xbf\x4e\x05\xe6\xd9\x87\x6f\x38\x62\x75\xea\xf0\x9d\x24\xb3\xda\x76\x28\x17\xd5\xa6\x7a\xd7\xd4\x76\xc9\xd4\xab\x7b\x90\xe1\xdd\xd9\xd9\x45\x0f\x22\xa8\x22\xef\x5e\xf4\x20\x76\x75\xfd\x34\x9c\x0c\x73\xa9\x7e\x02\xaa\x36\x87\x62\xfa\x2b\x98\x8b\xf0\xbd\x42\x73\x85\xe6\xe2\xc1\xd0\x5c\x81\x11\xd4\x29\x97\x5c\x08\x54\x91\xd6\x2f\xd5\x16\x57\xe7\x8b\x11\x9a\x3e\x35\x7d\x43\x15\x35\xe2\xa5\x34\x77\xb1\xa0\x20\xd3\x3f\xb5\xa0\x27\x51\xa8\x94\xf9\x54\x14\x02\x55\xdb\xfa\xe5\x54\xfc\xd4\x6e\x3d\xbb\x17\x1c\xaa\xc2\x9f\xb1\x44\x51\xe3\x11\x91\xcf\xd0\xbc\x6d\xf6\x08\x02\xeb\x29\xb3\x81\xaa\x9d\x51\x2a\x89\x9e\xb2\xb1\x77\xcb\x55\xd1\x0b\x46\x0e\x51\x43\xd4\xe0\x41\x83\x32\xa8\x5e\xe3\xc8\x6e\xd6\x7c\x23\x87\x0b\xaa\x3a\xd6\x7c\xe3\x9c\x3b\x55\xf8\x48\x4d\x5f\x9a\x1e\x25\xae\x56\x03\x57\x15\xee\x1b\xfa\x53\x2d\x82\xbe\xa1\x3f\x82\xaa\x7d\x42\xdd\x45\xdd\x59\xe3\x80\x3a\x44\x1d\x3c\xa8\xe9\x1f\xa2\x90\xf0\xc2\x54\x24\x5c\x30\xaa\x3b\x33\x57\x61\xee\x3b\x9a\x41\xfa\xf4\x1d\xcd\x10\x54\x8d\x0d\x6a\x42\x71\xce\xcb\xa0\x38\xe7\x82\xaa\x2e\x47\x5d\xc5\xb4\xef\x8e\x11\xad\xb1\xbe\xfb\x43\xd4\x83\x51\xbc\x91\xca\xc8\x77\xc7\x88\xae\x1a\x7c\x27\x61\x0b\xea\x65\x04\x09\xdb\x77\xc2\xaf\x8a\x37\x86\x46\x29\xfc\x86\x37\x95\x1a\x95\xd8\xd5\xea\xe9\x7b\xca\xae\x94\x5d\x01\x25\xbb\xb4\xec\xd5\xa3\x54\x72\xfb\xe8\x13\x3c\x66\xb7\x28\x3e\x38\xc1\x82\x5a\x15\x50\x53\x54\x2b\xcb\xec\x1e\xc2\x07\xdd\x81\xa0\x6a\x30\x17\xdd\x81\x0f\xd7\x28\x28\xad\x11\x28\xee\x66\x7c\xb8\x46\x45\x3b\x67\x76\x51\xe2\xba\x88\x11\x54\x8d\x09\xa5\x07\xbb\x16\x1b\x64\x54\x1f\xd4\x62\x82\x2a\xa2\x70\x70\xc4\x7c\x74\x4e\x1b\xb3\x05\xd5\x07\x5d\x9e\xa0\xb4\x43\xa3\x70\xce\x28\xec\xd2\xb2\x4b\xd3\x13\x13\xd5\xf5\x80\xeb\x9e\x47\x30\xc8\xbb\xae\xf2\xdd\x8d\x98\x58\x7d\x3a\xdc\x14\x13\xa6\x98\xe8\xee\xd3\x4d\x31\x01\x8c\x45\x60\x1a\x2d\x8a\xa0\xaa\x0f\xb5\x1b\x87\xda\xad\x45\x74\xac\xa1\xe9\x4f\x51\x17\xa3\x0a\x0a\xeb\xcd\x34\x8a\x07\xe5\x68\x93\xa3\xbb\xa5\x73\x93\xa3\xad\xd7\x38\x16\xdb\x61\x5a\x23\x50\xf5\xa2\x64\x7d\x8b\xe8\x58\x0b\xeb\xc9\x95\x82\xe2\x5e\xcc\xad\x52\xd4\xc1\xa8\x84\x7a\x88\x62\x3b\xba\xf1\x73\x93\xbf\x68\x18\x6c\x6b\x8d\x75\x35\x0c\xee\x6d\xaa\x6d\x5b\x9b\xea\x32\xd5\x65\xaa\x33\x4a\xa6\x7a\x67\x2e\xdb\xf0\x97\x93\xb9\x04\x55\x2e\x6a\x89\x5a\x3d\xca\x99\x8b\xfb\x3a\x41\xd5\x8b\x3a\x44\x61\x44\xa7\x29\x77\x1d\x18\xd7\x81\x11\xa5\x03\xe3\x32\xb5\x5b\x27\x57\xdf\x20\xb0\x0d\xcd\x09\xe9\x57\x48\xbf\x38\xa2\x21\xfd\x8a\xde\x6d\xdb\x3b\x01\x79\x68\xb7\x43\xbb\xed\x7a\x70\x8a\x3a\x19\x95\x50\x97\x28\xf6\xb1\x5b\x3a\x0f\xed\x63\x74\xae\xb4\x1d\x79\x0c\x72\xa5\xa0\x2a\x98\x5e\x27\x2d\xda\x47\xb6\x0f\x51\xaf\x07\x59\x90\xac\xa7\x79\xf1\xc0\x85\x3b\x11\x1d\x72\x61\xc8\x85\xc1\xf4\x72\x61\xb4\xbf\xba\xb3\x87\x3a\x44\x1d\x8c\x72\x28\xb6\x36\xda\x47\xdd\xb3\x37\x15\x72\x4e\xa8\x02\x61\x41\x21\xe7\x50\x40\x73\x31\xea\x11\x72\x4e\x1f\x3e\xdb\xe5\x09\x1d\xbe\x50\x7e\xeb\x9e\xcd\x83\xfc\xe6\x51\x98\x8a\xa4\x45\xc9\xd4\x92\xa9\x38\x5a\x4a\x4e\xbb\x64\x7b\x17\x71\xae\x76\xc9\x69\x71\x6c\xef\xd2\xc5\xd5\xe2\x08\xaa\x3a\x3b\xbb\x5a\x1c\xcf\xb6\xc5\x06\x6a\x92\x54\x92\x82\xaa\x6e\x97\x3c\xc9\xe1\x9e\x9d\xed\x6c\x10\x39\x19\x87\x28\x3c\x91\x4c\x2f\xcd\xc9\xb6\xd8\x06\x8e\x4e\x65\xab\xa4\x04\xa5\xeb\xf1\xa4\x04\xf5\x6c\x11\xb5\x91\xfe\x8b\xa9\xd8\x53\x1a\x0b\x54\x75\x8b\xe2\x99\x7a\x7b\xf1\x2a\xbc\x92\x3a\x75\x40\x4d\x32\x57\x56\x89\x6a\xaf\x8c\xae\xe8\x5d\x1d\x90\x57\x87\x9c\x0d\x1c\x55\x52\x96\x92\xb2\xa4\x46\xdd\x45\x29\x0b\x6a\x14\x6f\xa4\x37\xb2\xb1\xa0\x94\xa6\x4a\x69\x8a\x3c\x52\x4a\x53\xd5\x05\x8e\xd9\xde\x46\x54\x94\x28\x5c\xd0\x55\x83\x57\xe0\x82\x4a\x46\x11\x32\xa5\x1c\x5e\x72\x54\x89\x7a\x8d\xea\x37\x52\x1c\x7a\x29\x01\x95\x12\x10\x79\xb7\xe4\x9c\xea\x4a\xd0\x8c\x3d\x2d\x2a\x41\x41\x55\xb7\x61\x5e\xb4\x28\x4e\x83\x65\xd6\x6d\x98\xab\xc1\x72\x6e\xa3\xcd\xe6\x0e\xe5\xa2\xd8\x79\xd2\x94\x6e\xa3\x9d\x5b\x5f\xb3\x29\xea\x12\xc5\xd9\x24\xba\x75\xeb\x2b\x30\x5b\x8c\xe2\xd6\x57\x50\x85\x0b\x75\xeb\xeb\xdc\x75\x9a\xe1\x42\xdd\x75\x0a\x6a\x75\xb3\xe6\xea\xdf\x7c\x12\x91\xce\x39\x9f\x8a\xc8\xa9\x88\xd4\x28\x45\xe4\x6c\x25\x36\x27\xdb\xcc\x7a\x51\x28\x71\x77\xc5\x3e\x15\x13\x34\x7e\xe6\x84\x9f\x1a\x3f\x81\x39\x6b\x5c\x12\xae\xc5\xbd\x7c\xe1\x89\x25\x4f\xac\xc1\x83\xbc\x71\x69\x8d\x40\xd1\x3b\xfb\xd2\x1a\x97\x31\x57\x77\x2d\xbe\x4c\x73\x71\xe1\x5a\xa4\xcf\x45\x99\xec\xcb\x30\x75\xe9\xc1\x10\x25\x53\x31\x42\x5a\xb6\x70\x8e\x93\x34\x96\x9c\x03\x94\x2a\x90\x25\xe7\xac\x4e\xfe\xc6\xb5\xbf\x2f\x25\x7f\xa0\x6a\x8a\x92\xa9\x2c\x3b\x10\x41\x35\x91\x7e\xef\xa3\x6f\x41\x90\xdf\x75\xf4\x81\xaa\x29\xca\x45\x75\x30\x65\x97\xdc\x7e\x57\xb9\x71\x57\xb9\xc1\x1a\xef\x7a\x23\x0d\xa9\xe5\xce\x28\x69\x99\x1a\xd2\xc5\x49\x53\x43\xea\xf7\xae\x96\x2d\xc9\xce\x77\xaa\x65\x41\x15\xe9\xf3\x2e\x19\xb9\xb7\x96\x19\x77\x46\x7e\x97\x96\xdd\x55\x95\x76\x4d\xed\x77\x55\xa5\x34\xa4\xc6\x95\x94\xab\x21\x75\x3a\x4e\xe3\x8a\xc5\x0f\x1d\xe4\x43\x07\xb9\xdb\x0a\x57\xf7\xe9\x07\x12\x9e\x1c\xab\x43\x12\x7e\x48\xc2\x89\xd5\x43\x12\x7e\x74\xf2\x37\x5a\x14\x3f\x94\xfc\x0f\x25\xff\x25\x4a\x6f\x44\x89\x95\x8a\x0f\x29\x31\x50\x8b\x90\x3b\x64\x3d\xad\xa6\x29\x27\xa9\xd5\xf4\x07\x5e\x95\xaa\x3f\xe4\xd5\xc7\xcb\xab\xa2\xf0\xea\xa3\xb5\xc1\xe6\xd6\xa6\x3e\x68\x38\x04\x55\xdd\x0b\xfa\x43\x2e\xa4\xfb\xb4\x89\xef\xd5\x7d\x0a\xaa\x48\xc5\x0f\xd5\xae\x8f\xee\x3b\x6c\xe2\xfb\x07\x37\x71\x82\x9a\x9b\x28\x36\xed\xd1\x16\xdb\xa4\x34\x7e\xc8\xd1\x40\x4d\x12\xf6\x43\xe5\x3f\x60\x93\x7a\xe0\xa1\x6a\x06\xa8\x97\xa9\xaa\x66\x68\x81\x6d\x92\xcc\xd4\x02\xfb\xc9\xe9\x98\x78\xe2\xd4\xe9\x00\x6a\x12\x5f\xa7\x4e\xc7\xd9\x21\x6b\x93\xc0\x3c\x55\x6e\x00\x35\x29\x83\x4e\x65\xd4\x13\x51\x98\x4b\xa3\x5c\x94\x33\x2a\xa1\x38\x56\x27\x8a\xb9\x28\xa9\x4e\x29\x26\x50\x93\x03\x73\x4a\x31\x69\x81\x6d\x51\xeb\xab\x05\xf6\x0b\x4f\x2c\xf2\xdb\x25\x4f\x5c\x5c\xbb\xcd\xee\x2b\xfd\xd2\xb2\x81\x5a\xe8\xc4\xa5\x65\xd3\x7d\xfa\x46\xbd\xa9\xee\x53\x50\x93\x0a\xf7\x29\x81\x79\xb6\x5c\xf8\x46\x25\xf9\x94\x16\x02\x35\x49\x14\x4f\x7b\x8d\x9a\x3d\x8a\x12\xe1\xa9\x0c\x03\xd4\x44\x0b\x9f\xca\x30\xcf\xf6\x84\x6f\xad\xe4\xa1\x5e\x32\x36\x19\xd1\x47\x34\xd4\x7a\x09\x9c\x6b\x91\xd8\x31\x42\x50\xdc\x65\xc5\x4e\x79\x16\x7c\xa1\xf0\x7d\xe6\x2f\xa6\xe2\xd0\x07\x0c\x41\x11\x7e\xa1\x0f\x18\x41\x1b\xe6\xa3\x6d\x0c\xb5\x61\x82\xa2\x03\x0a\x5a\xb2\xf7\xa0\x4f\x72\x3e\xbf\x84\xfa\xa4\xa0\x29\xf2\xd1\x1a\x1b\x6a\x8a\x04\xb5\x5a\x63\x63\xe0\x82\xa0\x87\x70\xeb\x58\x0b\xf5\x10\x41\x61\xef\x56\x50\x28\xb1\xa0\x66\x37\x0c\x61\xa6\x51\xfd\xbc\xdb\x14\x75\x17\x45\x74\x77\x27\x1b\xc6\xa7\xaf\xb0\xae\x04\xdd\x16\xa3\xa8\x04\x05\xb5\xf0\x9d\x51\x09\x86\x75\x07\xe5\xbe\xf3\xc6\xb8\x44\xb5\xec\xce\xd6\xd8\x30\x0e\x62\xf0\xd1\xc1\xdd\x78\x30\x35\x3d\x1f\x1d\xe6\xe0\x41\xae\x6e\x04\xb5\x5a\xfb\xc3\x48\xd8\x41\x2b\xd0\x45\xfc\xdb\x7b\xa8\x15\x08\x6e\xff\x9d\xcc\x15\x8e\x38\x0b\x8a\xe3\x1a\xee\x21\x2a\x98\x4b\xa3\x12\xaa\xdf\xe8\x7c\x3e\x0e\xd7\x1b\xfd\xf5\xc6\x82\xe2\x8d\x54\xf4\xce\x27\xcc\x50\x45\x1f\x41\x30\x44\x17\x12\x11\xda\xed\xd0\x6e\xf7\x49\x89\xd0\x6e\x73\xa1\xef\xd1\x49\x23\x74\xa1\x2f\xa8\xd9\x0d\x56\xa8\x8e\x0d\x8a\x56\x47\xd5\x43\x45\xab\xa0\x16\xdb\xa1\xa2\x35\x28\x5a\x9d\x0f\x3e\xa1\xa2\x55\xe0\x7c\x58\x09\xdd\xf1\x0b\x6a\x76\x57\x1c\xba\xe3\x0f\xee\xbf\x9d\x0f\x20\xa1\xfb\xef\xa0\xd4\xab\x85\x5d\x2a\xf5\x82\x9a\xc7\xe9\x47\x42\x35\x4f\x50\xf3\x38\x3f\x16\x08\xd5\x3c\x82\x9a\x43\xa3\xf0\x2a\x55\x83\xd3\x74\x87\xaa\x86\x58\xdd\xb5\x74\xaa\x86\x9a\xa2\x58\x50\x27\xb3\x58\x24\xa0\x58\x1d\x07\xbe\xba\x0d\x8b\x85\x12\x0b\x6a\x12\xf7\x2b\x35\x57\xef\x50\x6c\xad\xc4\xb1\xb4\x43\x40\x4d\x13\xc5\x82\xc8\xe1\xb1\x11\x72\xca\xe1\x71\xef\xd3\x11\x1b\xa3\xee\x3a\x1d\x77\x09\x84\xed\x50\x04\x39\xe9\x33\xb8\x67\x0e\xa5\x4f\x41\xad\xc5\x5c\xa8\x7a\x90\x51\x63\xef\x0c\x11\xca\xa8\x71\x74\x7c\xc5\xce\x6e\x1f\x8a\x2f\xa0\xb8\xe3\x8f\x43\xf1\x75\x74\x90\xc7\xde\xdd\x41\x1c\x0a\xf2\x43\x41\xde\xad\x79\x1c\x5a\xd0\xa1\xe9\x5b\xaf\x43\x59\x30\xc8\x10\x31\x38\xa2\xca\x10\x71\xb6\x73\x82\x6a\x39\xce\x7c\x51\xb4\x4e\x5d\x2c\xc5\x49\xe6\x0a\xf4\x3a\xf8\xa0\x18\xd2\xeb\xb8\x3a\x69\x84\xb7\xf6\xc7\x45\xd2\x10\xd4\x34\x46\x85\x46\x75\x56\x08\x27\x98\x74\xf3\x28\xa8\xb5\x44\x15\x54\x31\x8a\xb8\xbf\x4a\xa3\xf4\x03\x92\x2e\x11\xe2\xaa\xd7\xa8\x36\xc2\x71\xa1\x84\x3e\x9e\x35\x3e\xdc\x22\xd8\xc7\x27\x5f\x0f\x05\x35\x6d\x42\xb9\xa8\x7e\x30\x5a\xd2\x52\x7a\x9d\x5b\x87\x59\x44\x1b\x91\x1b\xb7\xab\x82\x9a\xdd\x6a\xe6\x46\xa3\x9c\x5b\x0b\x4c\x64\x4f\x9f\x1b\x02\x23\x28\xee\x8c\x72\x23\xbe\x12\xed\x0f\xbe\xf2\xa5\xb4\x3f\xf9\xf8\x1d\xdc\xcb\xa7\x3e\x7e\x0b\x6a\xfa\x0e\xf5\x80\xd2\x83\xbd\x43\x29\x41\x4e\xae\x7e\x82\x0f\x46\xa9\xab\x1f\x41\xcd\x4e\x8c\xa9\xab\x9f\x44\x90\x63\x76\x00\xa4\x04\x39\x51\xc9\x98\xdd\x11\xa4\x71\xd7\x20\x28\xce\x50\x1a\x85\x57\x5a\x67\xae\xe0\x52\x27\x8d\x1c\x2e\x28\x6a\x8b\x34\x72\x78\x5a\x97\x41\x7d\xb8\xa0\x96\x28\xee\x5d\x17\x73\x85\xa6\xc7\x88\xd5\x81\x99\x52\xcc\x74\x4e\x07\xd7\xfe\xe9\x9c\x0e\x41\xcd\x56\x80\x74\x4e\x47\x7a\x97\xd9\xc1\xd6\xa6\x53\x66\x0b\x6a\x75\x2d\x96\x7c\xb2\x7d\x4f\x6f\x49\xcb\xad\x93\x4e\xf2\x69\xf5\x05\x45\x81\x93\xfa\xc2\x9a\x68\x69\x6e\xc6\xf4\xf4\x59\x82\x9a\x81\x11\x72\x21\x52\x9b\x7c\x1d\x4a\x49\x6d\x46\x9b\x9a\xe4\xf0\x0c\x99\x1a\x32\x35\x7e\xf9\x5b\x71\x86\x56\x02\xe4\xd6\x8a\x97\x41\x32\x13\xd4\xec\x06\x3c\x91\xf3\xf7\x8c\x3e\xc1\xb9\xb5\x4a\x65\x70\x82\x05\x35\xc3\xa0\x88\x35\x94\x38\x77\xd6\x2b\x25\xce\xec\x2c\x98\x7b\x97\xdc\x99\x64\x41\x41\xad\x25\x0a\x23\x52\x0f\x12\x45\x92\xdd\x2c\x7c\xc7\x2d\x40\x96\x7c\x57\xf2\x5d\x4b\x52\x96\x7c\x47\x73\x9b\xd6\xfa\x93\x6a\x6e\x05\x35\x5b\xd5\x53\xcd\x6d\xf2\x41\x31\x6d\xf0\x20\xd7\xd8\x82\x9a\x04\x7c\x71\xea\x12\xa1\x4f\xeb\xbc\x9b\x12\xfa\xe4\x57\x3b\x69\x84\x9f\x7e\xb5\x23\xa8\x19\x0b\x0a\xe7\xcc\x2e\x5d\xd2\xba\x9d\xce\x49\xe9\x22\xa8\xc5\x82\x26\xa5\x4b\x4e\x4d\x8f\x0b\x95\x0e\x72\x75\xd2\xe9\xc0\x69\x8a\xbb\x4e\xc1\x44\xd5\x53\x7a\x9d\xf7\x7e\x63\xf2\xd3\xa1\xbc\xeb\x8d\xf7\xce\xa8\x73\xeb\xfa\x3a\xef\x64\xd4\xbc\x77\xc8\x64\x74\x23\x93\x77\x85\xcc\x5d\xa7\x8e\xf8\xb8\xeb\xd4\xa1\xd7\x99\x5d\x65\xa5\xf4\x3a\x8f\xae\x73\x32\x39\x29\x07\x25\xa4\xa0\x66\x06\x14\xce\x39\xda\xdf\xc9\xef\x38\xf2\xe0\x52\x46\x50\x33\x45\x11\x00\x87\xa6\x67\x6b\xa5\xd7\xf9\x60\x87\xb8\x5e\xcf\x87\x76\xe8\xa1\x1d\x4a\x46\x69\x87\x50\xf5\xa4\x9b\x4a\xa9\x7a\x9e\xed\xc2\xe4\x47\x7a\x79\xca\x85\x40\x4d\xce\x26\x05\xff\x7b\xa2\xea\xc9\x9d\x75\x4a\xd5\xf3\xea\x8c\x9a\x5c\x17\xe7\x45\x46\x15\xd4\x64\x87\x2e\x5a\xba\xbc\xda\x93\xb9\xba\x88\xcb\x8b\x3a\x45\x50\xb3\x1c\x8a\x37\xa2\xd7\xb9\x10\x54\xe9\x75\xa2\xc4\xb5\x75\xf3\x51\x52\xe2\xda\x48\x1a\x5b\x2f\xbb\xb6\x78\x51\x14\xe6\xdd\xc9\xd6\xc6\xdd\x5d\xa1\xb1\xb5\xb7\x4a\xd5\xeb\x67\x96\x7b\xab\x54\xf1\x41\xb1\x76\x54\x4a\x30\xb9\xcf\xad\x1d\x95\x2a\x34\xb6\x46\x6b\x46\x49\x63\x6b\xf0\xa1\x73\x74\xc5\x56\x83\x3b\x6b\x41\xcd\x96\xdd\xe2\x87\x97\xef\x35\x88\xd5\xb1\x78\x90\xc8\x11\xd4\xec\x3c\x52\xfa\x5e\x50\xfa\x12\x60\x5d\x8c\x97\xbe\x04\x08\x8a\xdb\xfb\x1a\x38\xba\xd0\xeb\x32\xeb\xe9\xa5\xd7\x65\x2c\xdb\xba\x6d\x2d\x8b\x17\xc5\xb2\xbb\x2a\x2d\xd3\xb2\x81\x29\x7f\xa1\xdd\xef\xa5\x6b\x6c\xbe\x1e\x96\xae\xb1\x05\x35\x59\x10\xaa\xfc\x82\xf2\xde\xb4\x92\x38\x97\xeb\x77\x8e\xbd\x43\xe5\x54\x59\xe5\x9d\xf2\xe6\xc0\x54\x49\x47\x55\x97\x67\x93\xfb\xef\x2a\xb2\xa0\x60\x6e\xdb\x84\x9a\xa2\xe6\x87\xdb\x8d\xeb\xc0\xd2\x15\x9e\xe0\x56\x1d\x4c\xa5\x2b\x3c\xc1\x8d\x5b\xcc\x2a\x79\x95\x2b\xbc\xb9\x75\x4b\x57\x25\xaf\x16\xbf\xc8\xcb\x8d\x51\x5c\x17\x0b\xe6\xd6\xca\x54\x45\x86\x10\x54\x76\x13\x59\xfc\x20\xb4\x01\x53\x07\x0f\x52\x9f\x57\xa1\xab\x5c\x9e\x54\xb9\xac\x6f\x47\xcf\x6d\x40\xc9\xd1\x80\x7e\x0e\x5b\xfa\x71\x85\x60\x72\xa1\x5f\xfa\x71\x85\xe0\xc6\x75\x60\x55\x68\xfa\xce\x8f\x93\x1f\xa7\x96\xae\x16\x05\x93\xee\xb3\x4a\x51\x08\x54\x4c\x9c\xa3\x28\x04\x2a\xa6\x1e\x3c\x44\x1d\x3c\xa8\x51\xf2\x04\x1f\x8c\x82\x7d\x2c\x3e\x18\x55\x05\x9e\x30\xfc\x95\xf2\x04\xe5\x6c\x2c\x9c\x93\x5a\x50\xc3\xdc\x1c\x53\x53\x0b\xe2\xae\x81\xaf\xa2\x45\x3a\x78\x41\xc5\x62\xfa\xd4\x82\x1a\xe6\xe6\x06\x15\xa2\xf8\x2d\x27\xe7\x91\x4b\xd2\x17\x14\x3f\x50\x2a\xdd\x95\x16\xb9\x63\x6e\x8e\xbf\x52\xcb\x46\x99\xf8\xc2\x5a\xca\x1d\xc5\xef\x53\xe6\xe6\xbc\xb1\xf4\xc6\xe2\x88\x06\x6f\xac\xd7\x28\x7e\x9e\xb0\xb3\xa0\x92\x73\x0a\xe7\xc4\xdf\x7c\x2b\xb6\xfd\x6f\x33\x71\xe9\xd7\x2b\x82\xc9\x6f\x36\x4a\x3f\xbc\x2d\x7e\xcd\x3a\x37\xa2\x4f\xbf\x5e\xe9\x2a\xa7\x29\x36\x7e\xba\x46\xc9\xe7\x9d\x17\x6b\xca\xe7\xc0\x24\x5f\xd7\xa4\xd3\xac\xc9\xd5\x70\x14\xa3\xa8\xb8\x6b\xea\x8d\x38\x58\x29\xa9\x56\x67\xbc\xb9\xef\x50\x54\xef\x02\xfd\x0e\xba\x96\xde\xb8\x9c\x51\x26\xea\x10\xc5\xcf\x12\x88\xf7\xc5\x7d\x58\x71\xa5\x38\x77\x17\xf5\x14\xc5\xef\x9e\x5a\x75\x6b\x51\x71\xd7\xea\xb8\x9c\xfc\x90\xb4\x56\xe8\x8d\x7c\xeb\xcf\x9d\xe9\xa9\xb8\x6b\x21\x8b\xbb\x8b\x62\x8d\x2b\x31\x22\x30\x35\x35\x3d\x0b\xe2\x87\x23\xa5\x34\x52\xa7\xfa\xbe\xee\x5a\xeb\xa4\xef\x13\xcc\xc1\xc9\x3f\x69\xdf\x04\x73\x20\x2c\xa7\x84\xe5\x1c\xd2\xc0\x05\xf5\x14\xf5\x44\x6b\xfa\x8d\x27\x37\x06\x82\x39\xf0\x2a\x37\x55\x2f\x98\x03\x59\xd4\x85\x95\x60\x8e\xc2\x08\x93\x11\x6a\xc3\x09\xb5\x53\x8e\x3e\x39\x61\x54\xb6\x75\xea\x84\x9d\xbd\xb5\x73\x24\x76\xd1\xd1\xd5\x59\xfc\x5c\xde\x58\x63\xe9\x8d\x85\x0b\xe7\xf8\x5f\xa1\xd6\xff\xff\xc7\xfb\x97\xb7\xbf\xfe\x89\xc1\xe3\xe7\xaf\x5f\xaf\x4f\xdf\xf8\x83\x06\xfe\x96\xe0\x76\x5e\xcf\x8f\x9f\xae\xbf\xfe\x71\xc4\x97\xcf\x5f\xfa\x29\xfe\xf7\xdf\x01\x00\x00\xff\xff\x79\x60\xf9\x3b\x48\x31\x00\x00"); +var _fbd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x94\x41\x6b\xf3\x46\x10\x86\xef\xfb\x2b\xf6\xf8\xf5\x90\x7a\x67\x66\x25\xad\x40\x18\x4a\x42\xc0\x84\xb4\x25\x29\xed\x59\x96\x56\x46\x50\x4b\x42\x96\x0f\xf9\xf7\x65\xe6\x95\x53\xf8\x0e\x41\xd1\xe3\xdd\xd7\xcb\xf3\x7a\xe7\xf0\x7c\x7a\x39\x4d\xe3\xe6\x0f\x7f\xae\x73\xf7\x99\x37\x3f\x8c\x53\xbf\xe6\xdb\x7c\x5f\xbb\xec\xcf\xf9\x32\x4e\xce\x11\xfb\x7e\xec\xb6\xc7\xab\x3d\xba\x6b\xbb\x38\xa7\xfb\x3f\xbf\x6e\x5b\xbe\x9e\xa6\x61\xf6\x82\x75\xfd\x7d\xd9\xd7\x7a\x7f\xf8\xc8\x97\xf1\xb6\xad\x5f\xfe\xc7\x6f\xfd\x7c\xce\xbf\xf8\x3e\x0f\xca\xff\x58\xfb\xbc\x8e\xd3\xc5\xff\x78\xfb\xf8\x86\x9f\xf7\x65\xf9\x37\x5f\xf3\xb4\xf9\xd2\x58\x9e\x7a\x7b\xba\xc3\xf3\x7b\xbb\xfc\xde\x5e\xb3\x3f\x58\xce\xd3\xdb\xc7\x13\x96\xd8\x27\x7f\xe7\xf5\x36\xce\x93\xa7\x5f\x43\xe0\xff\xf1\x5f\x5f\x4b\xf6\xb4\x27\xfc\xf3\x3e\xf7\xd9\x87\x47\xde\xe9\xe5\x79\xbe\x4f\x9b\xa7\xc8\x92\x00\x09\xc7\xee\xe6\x3e\xdf\x96\xb6\xcb\x6b\x3b\x5d\xb2\xf3\xbe\x09\x21\x84\xa3\x6f\xa4\x7a\x7d\x3d\xea\x99\x7e\x5a\xe1\x8a\x72\xdf\x39\xf6\x20\x8f\x1d\x21\x0c\xc3\xd1\x07\xd7\x04\xc2\x3b\xe9\x3b\x17\xa5\x6b\x02\x83\xb0\x92\x82\xd8\x35\x41\x40\x44\x49\x55\x26\xd7\x84\x08\x12\x95\x50\xe0\xe8\x9a\x50\x00\x15\x86\x38\x69\x76\x09\x54\x1a\x2a\x44\xc3\x2b\xa0\xca\x50\x55\x6b\x7a\x02\x4a\x76\x82\x10\x35\xbe\x06\xaa\x0d\x49\xd0\xf8\x16\xa8\xdd\xcf\xa9\xf1\x67\xa0\xb3\xa1\x44\x1a\xdf\x01\x75\x8a\x24\x54\x1a\xdf\x03\xf5\x86\x84\x35\x3e\x03\x65\x43\x45\xd2\xf8\x01\x68\x30\x94\x62\x70\x0d\xc1\x14\x99\xa9\x18\xea\xd2\x35\x04\x59\x64\xb2\xa2\x14\xec\x1a\x82\x2d\x32\x5b\xb1\x0c\xc9\x35\x04\x5d\x64\xba\x62\x2a\xa3\x6b\x08\xbe\x28\xee\x4e\x35\x1e\xbe\xc8\x7c\x15\x52\x69\x3c\x7c\x91\xf9\x2a\x4a\xd1\x78\xf8\x22\xf3\x55\xa4\xa4\xf1\xf0\x45\xe6\xab\xa4\xa8\xf1\xf0\x45\xe6\xab\x8c\x41\xe3\xe1\x8b\xcc\x57\x59\x6a\xb1\x04\x5f\x64\xbe\xca\x5a\x9b\x25\xf8\x22\xf3\x55\x91\x56\x4b\xf0\x45\xe6\xab\x8a\x5a\x2d\xc1\x17\xe5\xbd\x7f\x8d\x87\x2f\x32\x5f\x55\xad\xd5\x32\x7c\xb1\xf9\x4a\xa4\xd5\x32\x7c\xb1\xf9\x4a\x51\xab\x65\xf8\x62\xf3\x95\x2a\xad\x96\xe1\x8b\xcd\x57\xaa\xb5\x5a\x86\x2f\x36\x5f\x35\x6b\xb5\x0c\x5f\x6c\xbe\xea\xa8\xd5\x32\x7c\xb1\xf9\xaa\x2b\xad\x96\xe1\x8b\xcd\x57\x5d\x6b\xb5\x0c\x5f\x9c\x1e\xbf\x55\xcd\x87\x30\xae\xc1\xa2\x96\xcb\x30\xc6\x2d\x58\xa5\xed\x32\x94\xb1\x29\xd3\xf6\xf5\x2b\xe0\x8c\x3b\x30\xd6\x7e\x19\xd2\xb8\x07\x2b\xb4\x60\x86\x35\xce\x60\x95\x36\xcc\xd0\xc6\x03\x2e\x49\xd0\x8a\x65\xbf\xc3\x01\x8c\xb5\x63\x81\x38\x21\xb0\x42\x4b\x16\x98\x13\x7e\x5c\xb0\xe0\x1a\x81\x3a\x31\x75\x24\x41\x6b\x16\xb8\x13\xdc\x4d\x11\xed\x59\x20\x4f\x70\x39\xa5\xd0\xa2\x05\xf6\x04\xb7\x53\x92\x36\x2d\xd5\x3e\x4f\xea\xfe\xe8\x29\x86\x14\x6c\xaa\x3c\xa6\x87\xfe\xaf\xf3\xf5\x7b\xe6\x75\xf7\x75\xcd\xd3\x66\xd3\xd5\x06\x9b\xce\xab\x71\xca\xdf\x93\x7a\x99\x17\xdd\x65\x7f\xff\x05\x00\x00\xff\xff\x7c\x8a\x82\xe4\xd5\x05\x00\x00"); +var _eebe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4b\xaf\x6d\x39\x72\x26\x36\xcf\x5f\x71\x86\xed\x41\x5b\x8b\x6f\x06\x90\xb8\x80\x55\xea\x82\x35\x68\xd9\x70\xb5\x6c\x03\x86\x07\xe4\xde\x6b\xcb\x05\x58\x59\x85\xaa\xd2\x40\xff\xde\xe0\xf7\x58\x29\x18\x0d\x9c\xbc\x93\x7b\x62\x93\x8b\xcf\x60\x30\x18\xf1\x31\xf8\x77\xbf\xfb\xc7\x7f\xf8\xc7\x5f\xfe\xf8\xb7\xaf\xbf\xfb\x5f\xff\xf2\xa7\xd7\x1f\xee\xbf\x7d\x7d\xfe\xf8\xcb\xfb\x2f\xf7\x5f\xff\xf4\x6f\x7f\x79\xdd\x5f\xfb\xfe\x97\x3f\xfe\xf2\xd3\x4f\x29\x7f\xbd\xff\xf8\xfa\x9b\x49\xfc\xf7\xfa\xd7\xf5\xe7\x9f\x7e\x3a\xdf\xff\xe1\xdf\xff\xfa\xb7\xfb\x5f\xff\xf1\x97\xcf\x9f\xbe\x0a\xf3\xbd\xff\xed\xcf\xca\xfb\xf5\xf5\x77\xff\xdb\xfd\x2f\x7f\xfc\xeb\xdf\xfe\xf2\xef\x5f\xff\xe9\x7f\x7a\xff\x69\xdf\xff\xc3\xd7\xfb\xfe\x9c\xdf\xff\x97\xbf\xbc\xef\xbf\xfc\xf1\x97\x7f\xf9\xfa\x4f\xbf\xfb\xa7\x3f\xa4\xe7\xe7\x3f\xfc\xdb\x9f\xff\xfc\xff\xde\xff\x7a\xff\xf2\xb7\xaf\x81\xdf\xee\x5f\xde\xf8\xff\xa7\xbf\xfb\xdd\x7f\x5d\x7f\xfe\xa7\xf5\xaf\xf7\xd7\xdf\xfd\xf3\x2f\x7f\xfc\xdd\x3f\xfd\xe1\x3f\xff\xf3\x7f\xfb\xfd\xfc\xcf\xff\x33\x52\x91\xf8\xbf\xdf\x7f\xf9\xeb\x1f\xff\xf4\xcb\x57\x2a\xff\xe3\x95\xe2\xd7\xdf\xff\xdb\xbf\xff\xf9\xfe\x4a\x2a\xe5\xff\xfc\xe7\x7f\xfc\x87\xaf\xff\x2b\x7d\xa5\xeb\x2b\xb7\x12\xe3\xff\xd6\xef\xff\xc7\x7f\xfd\xd3\xfb\xfe\xba\x48\x55\xb6\xff\xf5\xa7\xf7\xfd\xd7\x3f\xaf\xd7\xfd\x97\xf5\xcb\xbf\xdc\x3f\x7d\x7d\xfd\x7c\x5d\x3f\xbe\xf8\xef\xe7\xf1\xfb\x1f\xe7\x97\xdf\x5d\x53\xbf\xfd\xfc\x0f\xbf\xff\x7b\xfe\xf6\x5f\xae\xa9\x5f\x7f\xfe\x2f\xbf\xff\x7b\xff\xfa\x7b\xfc\x7a\x7e\xff\xf9\xf7\xe3\xef\xf5\xfb\xfd\xcb\xfb\xff\x57\xcb\x4f\x89\x95\xff\xf2\xa7\xbf\xbd\xef\x0f\x7f\x43\xbd\x3f\xa7\xcf\x8f\xaf\x74\xbe\xf8\x8f\x49\x3f\xa5\xeb\x52\x6b\xff\xf8\x7e\xfd\x3f\xeb\x2f\x3f\xfd\xfc\xca\xeb\x3a\x39\xcf\x1f\xed\xc7\x57\xee\x17\xfe\x1c\x3f\xbe\xd2\x98\xf8\x73\xfe\xf8\x4a\x65\xd4\x01\x22\x7e\x7c\x45\xc7\x5f\xaf\x1f\x5f\xa9\x5e\x35\x40\x9c\xca\xa2\x9d\x3f\xf7\xf5\xe3\x2b\x4f\x14\xb2\xd3\x8f\xaf\x9c\x32\xfe\x3c\xe5\xa5\x93\xa1\x9c\x3e\xa5\x39\xe6\x04\x91\x48\x74\x10\x13\x44\x64\x10\x41\xe2\x02\xb1\x0e\x31\xaf\xd3\xcc\x12\x99\x29\xf8\x26\x0a\x89\x0a\x62\x9c\x0a\xf1\x05\x3a\x35\xe7\x85\x2a\x57\x22\x51\x40\xa0\x96\xa9\x6c\xc1\x14\x34\x66\xb1\x96\x82\xfa\xd1\xbf\x39\x13\x0a\x5e\x6f\x12\x48\xd9\x99\x04\xbe\xd9\x85\x04\x1a\xb3\x51\x3f\x1a\xb9\x59\x4b\x45\x2d\x9b\xb5\x64\x7e\xce\x5a\x32\x53\x58\x4b\x3e\x83\x5b\x3d\x32\x0d\x84\xda\x7c\xbe\xa9\xea\xf2\x0c\x10\xac\xf2\xc2\x37\xb1\xd8\xff\x04\x62\x33\x05\xd9\x16\x09\x34\xa7\x4d\x12\x95\xc4\x8b\xdf\x14\x10\xea\xda\xa9\xb4\xa9\xe8\x72\x0a\x68\x2e\xe0\x10\x83\xd9\xc6\x1c\x20\x6e\xd6\x73\xc6\x66\x04\x47\x3a\x15\x10\x9c\x4f\xb0\xc2\x08\x0d\x14\xbe\x89\xca\x9e\x26\x10\x9d\x04\xbf\xe1\x50\x65\x96\xa6\xd1\x61\x01\x1a\x9d\x33\xb8\xa1\x7a\x4a\x03\xa1\xd1\x61\x0a\x8b\x2e\x03\x04\x5b\x5d\x90\xa2\x89\x2f\x05\x04\x8b\xae\x20\x76\x63\xca\x99\xc4\x35\xd5\xed\x0a\x42\xd9\xce\xc0\xef\xd9\xc9\xfc\x13\xc4\xf8\xf1\xd5\xd0\xe9\x7d\x32\x35\xf0\xd3\x3e\x43\xdb\xc0\x67\x1b\x83\x14\xc8\x1b\x71\x7e\x3d\x65\xbc\x66\xf5\xe2\x78\xcd\xff\xb0\x96\x5e\x67\x1a\x50\xdc\xfb\xc2\x64\x97\x38\x8d\x7e\xa7\x20\xd1\xe3\xa7\x9f\xef\xb4\xd7\xbe\x39\xa4\x53\xe4\x87\x63\xc2\xd4\x3d\xc5\xe7\x97\x48\x75\x38\xfd\xf4\xf3\x9d\xe7\x35\xcf\x0c\x94\x7e\x9a\x7f\x48\x4c\x6f\x56\x1a\x46\xed\xcc\xc0\x21\xd6\xc9\x78\xda\x02\xe2\x8c\x4d\x52\xb6\x75\x46\xe0\x2c\x16\x10\xe3\x3f\x64\xc3\x3a\x18\x2a\x00\xe3\x39\xb2\x88\x33\x07\x63\x88\xb8\xd5\xfd\x3b\x4f\x4a\x8d\xd1\x2f\x16\x5e\xcf\xc0\xe7\xde\x45\x9c\x22\xa2\x8a\x88\x93\xc2\x22\x2a\xd8\xa5\x5e\x4d\x69\x98\xd5\x7a\xb5\x26\x32\xff\xf8\x0a\xe6\xec\x87\x49\xb2\xba\xdb\xcf\x40\xe6\xda\x44\xe4\x43\x38\xdb\xa9\xb7\x76\x08\x54\x09\xc2\xff\x8e\x68\x44\xce\xf9\xe3\x2b\xb7\x2c\xe2\x34\xaa\xb1\xed\x03\x63\x51\x22\xd8\xfa\x19\x47\x78\xb6\x21\x62\x1d\x41\x50\x44\xdc\x3f\xbe\x72\xbe\x44\x7c\x7e\x7c\xe5\xa2\x94\x23\xa4\x72\xc9\x22\x4e\x9b\xd4\xc5\x09\x51\xdc\x9c\x6d\x9f\x6c\x2a\x7a\x9d\xd2\x0a\x7b\x38\x77\x3d\xfd\x50\xd1\x67\x0a\xf2\x59\xba\x20\x5e\xa7\x52\x66\x0b\xf4\x5d\xf3\x1e\xa8\x34\x85\x88\x33\x44\x99\x2d\x58\xe8\x42\x2d\x22\x4e\x5f\x2b\x9b\xb3\xd0\x1c\x31\x15\x38\x30\x17\xa6\x6c\x48\x7e\xb2\x47\x5c\xa7\xb4\xc6\x19\x0c\x48\xb3\x42\x2e\x8a\x7a\x18\xb1\xa4\x2c\xe2\x75\x08\x65\x0b\x64\x6b\x22\xea\x21\xba\x88\x79\x88\x21\xe2\x7c\x73\x05\x89\x75\xb2\x5d\x53\x04\x52\x94\x6d\x23\x45\x05\x6c\xa4\xb0\xe8\x06\xf1\x51\xaf\x48\x22\xc9\x43\x71\x89\xcc\x20\xc9\xc0\x41\x39\x58\xaf\xe9\xcc\x15\x64\x2f\x22\x1b\x33\x57\x91\xe4\xce\xe9\xd4\xc1\xcc\xae\x77\x32\xf3\x14\x19\xcc\x3c\x44\x2e\x66\x0e\x91\x9b\xa9\x6e\x15\xf7\xd8\xe9\xd4\x37\x8b\x72\xab\x6e\x92\xae\xe8\xc3\xcc\x6a\xd5\x62\x7f\xb9\xb8\xa2\x69\xcd\x0c\xd5\xbb\xd8\xdf\xe9\x54\xf6\xb7\xab\x91\x8b\xfd\x1d\xea\xd1\x62\x7f\xa7\x06\x67\xb1\xbf\xdd\x15\xb1\xbf\x43\x8d\x5c\xec\xef\x74\x51\xec\xef\x50\x8f\x16\xfb\x3b\x5c\xaf\xfa\xab\x2e\x48\xa7\xe8\x6e\xe4\xe7\xc7\x57\xc9\xea\xed\xd1\x2b\x4a\x56\x31\x67\x9a\x8f\x1c\x65\x13\xfa\x11\x16\xe5\x32\xb1\x0e\x51\x44\xec\x43\x64\x11\xe0\x87\x24\xe2\x7d\x88\x4b\xc4\x59\x54\x11\x22\x0e\x7f\x07\xdb\xdf\xc5\x09\x5c\xe5\xd1\xc9\xa0\xfa\xea\xf0\x41\x49\xaa\x09\xe3\x2d\x76\xea\xdc\x77\x54\x1e\xf5\x05\x65\xa3\xbe\xa0\x06\x61\xf7\x0f\x13\xd8\x3c\xd8\xba\x31\xb9\x41\x8a\x18\xd8\x01\x44\x60\x7f\xbb\x44\x60\x6f\xa8\x22\xb0\x33\xa8\x00\x2c\x91\x1c\x22\x4e\x43\x29\x0c\x62\x42\xcc\x6a\xe2\x27\xeb\x69\x22\x7e\x5d\xf2\x11\x13\x92\x34\x89\x48\x8f\x64\x88\x98\x90\xa4\x6c\xf5\x0b\xad\x2e\xa3\xa3\x41\x7b\x61\x3b\x1a\x9d\x6b\x73\x2f\x6c\x7d\xa3\xb3\x8b\x9b\x5b\xeb\xe8\xf1\xbd\xe0\xdd\x10\x46\x27\x6f\x88\xc4\xc6\x31\x2e\xd5\x13\xd4\x5a\x6a\x27\x09\x0e\x1d\x83\x73\xbb\x17\xb5\xd7\x71\xa9\x5a\x30\xdd\x18\xe4\x89\xbd\x96\x8a\xaa\x22\x6f\x92\x8d\xe4\xee\x24\x55\xf2\x56\xe6\x21\x52\x99\xd9\xbf\xad\x69\xe2\xb6\xb2\xf7\x54\x45\x21\xf2\x03\x92\x62\x6f\xef\xe0\xb7\x94\x75\x7b\x2f\x2a\x1d\xdc\xac\xf6\xeb\x8c\x5c\xe3\x36\xb9\xa1\x32\x34\xf2\xdc\x7e\x9d\x09\x6b\x94\xeb\xfb\x75\x6a\xec\xea\xd8\x0b\x0a\x09\xc5\xff\x7e\x9d\xda\xba\xda\xf9\x0a\x94\x16\x2a\xfb\x08\x3b\xcf\xc9\xeb\x88\xba\x9e\xf4\xd1\x61\xef\xc6\x29\xdf\xaf\xc3\xdc\x9d\x12\x7b\xbf\xce\xf8\xb7\xd0\xf0\xbf\x8e\x8c\x6b\x55\xad\x83\x6e\xa3\xa1\x7f\x1d\x09\xd6\xaf\xcb\xe5\x1d\x65\xa8\xba\x11\xaf\x53\x9e\x0b\x7f\xff\xf8\xea\xdc\xf8\xf6\xeb\x0c\x45\xbf\x34\xe4\x2f\xac\x96\xd1\x8b\x7a\x75\x64\x53\xf3\xb0\x2c\x74\x51\xad\x38\x33\xd7\x2f\x4d\xcd\xeb\x28\xe5\xdd\xcd\x38\xb3\xd8\x9a\x5a\x71\xf4\x8f\x7e\x69\x2c\xde\x67\x64\x47\x6e\x22\xce\x16\xd5\xba\x88\xd3\xab\xe6\x6c\x68\x53\x56\xd2\x19\x98\x7e\x71\xcd\xec\xf7\xe9\x71\xbf\xb8\x9c\xf6\xfb\x70\xdb\xec\x59\x44\x3f\x84\xbe\xda\x18\xe8\x87\x3a\x5f\x25\x65\xbc\xcf\xc2\xed\x89\x7b\xc8\xbe\x27\xc6\x86\x02\x77\xdf\x98\xa0\xc4\x5d\x60\xdf\x67\xcb\xe8\x85\x72\x7d\xdf\xd8\x54\xb5\xbe\x6e\xc8\x6d\xed\x76\xfb\x3e\x8c\xdd\x7a\x12\xf1\xe6\x28\xfa\xb3\xc3\x6d\x5d\x1c\x70\x9f\x65\x3a\x46\x51\xd6\xc3\xc5\xb9\x35\x35\xec\xec\xe7\x63\x68\xf4\x3f\xa7\x99\x71\x69\x84\x3e\xa7\x99\x31\x34\xc8\x9f\xc3\x3a\x75\x88\x0d\x3e\x58\xa1\xf9\x02\x59\x78\x56\x05\xbb\x9c\xbf\x0f\x6f\x0f\x11\xd0\x3e\xd0\xca\x32\x79\xe0\x29\x03\x83\x5e\xce\x59\x07\x8d\x4e\x4d\xe4\x04\x09\x85\xe4\x90\x1f\xaa\x58\x2c\x68\x6e\xe9\x7d\x05\xe4\xc2\x02\x0a\x12\x18\xa5\x8c\x6d\xa5\xcc\xcf\x59\x3e\x59\xd5\x7f\x20\xdb\x07\x2b\xf8\x40\x25\x2c\xca\x86\x86\x15\xa7\x1c\x15\x07\x5b\x6b\x09\x6a\xb3\x75\x4c\x92\x09\x52\xad\x55\xcc\xdd\x21\x17\x44\x3d\x46\xe5\x90\x10\x11\x38\x68\x1d\x92\x9b\x67\xf8\x5b\x08\xfc\x86\xe3\x11\xc8\xf3\x6d\xaf\xac\x35\x12\xc4\xe7\x98\xc9\x24\xe4\x39\x55\x89\x12\x19\x9b\xcf\xe0\x7e\x73\x48\x6c\xbc\xdc\xb4\x4a\x64\x0a\x3d\x1c\x3d\x41\x7e\xd0\x48\xec\x13\x25\x32\x05\x17\x4e\xe2\x77\x09\x1e\xb4\x47\x6f\x21\xf2\x0c\x74\xeb\xfa\xb6\x40\x77\xe8\x57\xf9\x56\x30\x97\x28\xe8\x5f\x8b\xa6\x4f\xa1\x0d\x44\xe2\x94\x45\x81\xea\xdf\x70\x38\xbe\x4b\x54\x08\xc8\x91\x2f\x66\xae\x14\x9f\xbd\xb0\x15\x54\xc2\x06\x0e\x7b\x20\xd5\xdd\x21\x92\xa7\xe6\xce\x1e\x50\x83\xe9\xfd\x32\xc9\x91\xcb\xac\x08\xea\x41\x6a\xa9\x25\x91\x99\xa9\xaa\x08\xe6\x87\x4e\x55\xe9\x90\x60\xb3\x3c\x38\xcc\x1d\xbb\x54\xc5\xc1\xf0\x90\x50\xe0\x5a\xaa\x21\x12\x99\x71\x92\x3f\xa4\x9a\x91\x4c\x72\x12\x6a\x12\x79\x5a\xd5\xd3\x39\xcb\x1e\x12\x87\xb5\x81\xb3\xe4\x5d\x62\x70\x12\x60\xe0\x00\xa9\x6f\xab\x48\xda\x5c\x72\x11\xb9\x30\xce\x1a\x2b\x6e\xf5\xfd\xba\x58\x11\xcf\xd6\xbd\xa8\x83\x3c\x50\x77\x2a\xc8\x87\x84\x92\x40\x0d\xe4\x90\x18\xab\xa2\x56\x0d\xac\xa3\x49\x9d\xec\x90\x18\xab\x10\x6b\x0c\x30\x6c\xd7\x22\x89\xc1\xb3\xdc\xec\xfe\xf6\x66\x2a\x49\xa8\x0c\x69\x84\xea\x9d\x3c\xca\x73\xa3\x38\x24\xf6\xc3\xd0\x42\x99\xd2\x5f\x2f\xce\x2f\x0e\x3c\xa9\xb7\x99\x45\xe2\xf8\x77\x25\x93\x6f\xf6\x57\xdf\xf2\xbc\x3e\x5c\x2f\x2c\x2a\x7d\x68\xd8\x27\x5a\x55\xa7\x78\x32\xa8\x30\xd5\x32\x45\x42\x25\x2d\x9a\x85\x40\x9b\x7b\xbd\x8a\x48\xae\xb9\xa1\x54\x2c\x85\x36\x35\x1a\xb4\x20\x04\xb5\xea\x12\xc1\xe5\x7b\x51\x22\xc5\xe2\x84\xce\xc2\x91\x5c\xe8\x6f\xab\xe2\x2b\x6a\x25\xe7\x4c\x2a\x72\x91\x45\xb3\x48\x18\x37\xfa\x64\x23\x17\x19\xb8\x69\xe9\x2f\xcc\x51\x6f\x9a\xc1\x85\xee\x37\x6a\xa5\x87\xc4\xd2\x68\x7d\x88\x7c\x71\x35\x73\xd8\x69\x04\xa8\x79\x0c\x91\x85\x1c\x5b\x44\x82\xdb\x5b\x38\x15\x4c\x68\x61\x06\x1b\x47\x6a\x7d\x54\x91\x98\xd0\xaa\xd9\xdf\xd4\x86\xe3\x32\x09\x51\x90\xd5\xe6\x0d\x26\x6c\x5d\x4b\x72\x73\xba\xe3\x62\x7f\x37\x4f\x20\x43\x22\x67\x63\x27\x6b\x4d\x62\x72\x63\xac\x7a\x48\x6e\x6c\x48\x95\xde\xc5\x84\x9b\xf2\x78\x6a\x8e\x5e\xec\x60\x48\x14\xbc\xb4\xdb\x48\xa6\xd2\xc8\xd2\x2d\x64\x5e\x5c\x47\x4d\x93\xf2\x82\x8d\xa6\x87\x66\x01\x3a\x4a\x6a\x53\x6b\xe1\xc5\x73\xd1\xd0\x58\xbd\x78\x2e\x1a\xd9\xa9\x68\x46\x15\xb7\x43\x1d\x49\xad\xb9\x19\xe0\xd8\xd6\xb5\x87\xbc\xb6\xac\x79\x4a\xc5\x2a\xeb\x5d\xe3\xfc\xda\x2c\x59\x32\xe7\xb5\xb9\xd8\x1b\xbb\x0f\x95\x25\xf5\x19\x26\x0b\x37\x0d\x91\x1c\xba\xe1\x54\x08\xfe\x59\xb8\xdf\xc5\x0d\xf1\x35\x42\x82\xe2\xe6\x39\x70\x8a\xcd\x6e\x70\xce\x28\x1a\xab\x9b\x0b\xa7\xb7\xfa\xbd\xe0\xff\x60\x7a\xe3\x12\xd3\x7d\xd0\xa1\x96\x7b\x13\x09\x31\x99\xb4\x5e\x3f\x10\x1b\x3d\x51\x96\xaf\x8b\xaa\x70\x90\x8f\xd6\xc5\x53\xf0\xe8\x4a\x45\x1b\x47\x3c\x24\xa6\xa8\xe3\x8c\x52\xd6\xb5\xc9\x0b\x38\x1a\x1d\x72\xb2\x07\xe8\xee\x4a\x54\xa3\x13\x79\x7f\xa5\x4d\x29\xc2\xee\x2e\xda\xb6\x3b\x35\xf2\xb2\x0a\x06\xb2\x4a\x78\xaf\x82\x9d\xbb\x37\x72\xe8\x2a\xb4\x09\x04\x57\xc6\x2a\xe0\xee\xe0\x31\xbf\x2c\xda\x6d\x47\xe7\x8c\xad\x4a\x55\x25\xc8\x38\x0b\x96\x8b\x34\x24\x63\x56\xc5\x09\xa4\x89\x53\x56\xe5\xe4\x0f\x67\xe6\xb6\x10\xe4\x94\x45\x13\xec\x08\x72\xf7\xe2\x61\xbc\x0f\x75\x90\x9b\x55\x48\xcd\x5a\x1d\xac\x51\x2b\xf9\x77\x75\x09\x60\x6a\x3e\xab\x8b\xd9\x43\xa9\xd8\x25\x46\x56\xbd\x5d\xc3\x3e\xa6\xc8\x4d\x3e\x52\xc9\x58\xa0\x6d\xaa\xfb\x9d\xfb\xfc\x9c\x22\xb7\xfa\xcb\x56\xd1\x34\xdb\x2f\x15\x35\xc0\x92\x33\x71\xa1\xac\xc1\x85\xd2\xb9\x1b\xaf\xc1\x13\x17\xb5\xdd\xb2\x86\x8a\xa2\xe0\x5f\xda\x61\x68\x9f\x3a\x24\x74\x84\x4c\x59\xbe\x26\xd6\x7a\xd7\xfe\xb3\xa6\xd6\xfa\x34\x49\xfd\x42\x23\x39\xc1\xfb\x7d\x38\x95\x5b\x77\x56\x07\x27\x6d\x11\xa1\x39\x9a\x4b\xb2\x5c\xa9\xb0\x29\x0c\x9a\x2d\xcb\x0a\x9c\xb3\x47\x88\x91\x82\xfb\xad\x34\xb3\x15\xaa\x28\x9c\xfa\xe2\x6e\x5c\x45\xde\x90\xf4\xd4\x08\x57\x50\x98\xc1\x61\x01\x72\x50\x27\x62\x51\x4b\xeb\x55\xec\xbd\x60\x12\xe9\x8d\x1b\xfb\x5a\x54\x10\x83\x6a\xee\xe2\x19\xb2\x4b\x88\xae\xcd\xc5\x6d\x26\xdc\x14\x39\x97\x5a\xb5\xb5\xb1\xab\xde\xad\xa5\x11\x55\x24\x66\x9f\x16\xb0\xb2\x5e\xd8\x06\x6b\xd3\x1c\xbd\xa8\x7c\x79\xfd\x52\x2e\x8e\x50\xc9\x2f\xba\x06\x86\x96\xc6\x8b\xdb\x51\xd6\x74\xbf\x61\x75\x9e\x3c\x13\x96\xf5\xa6\x52\x70\x69\x95\xbd\xd9\xe6\xde\x94\x2a\x65\x84\x72\x63\xbd\xb7\xbe\x6d\x22\x69\xed\xa0\xca\xb0\xde\xd8\xe8\x6a\xcd\xcc\x7c\x4b\x4c\x76\x91\x38\x90\x4c\xaf\x85\x9b\xdb\xd1\xc5\xcd\x6a\xdd\xe8\x51\x73\xab\x6e\xea\x71\x93\xdb\xc2\xba\xa9\x2e\x17\x2d\x2b\xca\xc5\x36\x34\xec\x9f\x49\xe1\xad\x65\x85\xf3\xc5\x29\x8a\xa3\xf1\xa1\xc2\x78\x89\xf9\x3f\xb4\x4d\x5c\x92\x48\x1f\xee\xf3\x4f\xaa\x3a\x98\x55\x14\xb5\xad\x29\xbe\xfa\x6c\x1e\x1e\xb8\x0f\xec\x8b\x9b\x95\xd6\xe0\xbe\x20\xa0\x5a\x70\x57\xdc\x17\xed\x90\xb4\x82\x1d\x92\xee\xb3\xc2\xcc\x89\x9b\xb3\xf6\xcc\x9d\xe5\x01\xe2\x4a\xd9\x45\x66\xa4\x92\xbf\x15\xfc\xbb\xa0\x15\x4d\xba\xc8\xa6\x98\xec\x45\x8d\x2a\xda\xf5\x2f\x93\x58\x0a\xb5\xb3\xda\x42\x76\x8e\xa4\x6f\xb9\x57\x5d\x6a\x23\xfd\x5a\x71\xa9\x43\xf4\x6c\x55\x3a\x0b\x0e\xf9\x26\xa7\xb0\x28\x0a\xd1\x39\x86\x52\xb9\xc3\x04\xf7\x9f\xdd\x68\x8a\xd1\xe1\x70\xd3\xc7\xd5\x5a\x38\x95\xa7\x61\xb5\x4a\xd6\xdf\xc6\x75\xb3\x69\x3a\xed\x83\x6b\x6e\xd3\x38\xda\x6a\xab\x22\x83\x45\x99\x5c\xac\x68\x88\xfc\x50\xf7\x52\xc9\xd4\x53\x2f\x4d\x60\xc3\xf2\x6d\x55\x83\xd3\x69\x7b\x1b\x3c\x48\xee\x3e\x29\xda\xc9\xce\x9b\xc2\x7b\x5e\x3c\x2a\x6f\xd8\x21\x53\xf3\x58\x75\xba\xbc\x2e\x7f\x0b\x11\xdb\x68\xe3\x3a\x24\x99\x6e\x28\x15\x7c\xd4\x69\x10\x39\x24\x6c\xc3\x99\xc2\x6c\xcb\xba\xd8\xd5\x41\x1e\x3c\xfa\xe0\x09\x67\x0f\x7a\x5e\xa7\x46\x72\x70\x24\x47\x1e\x22\xdf\x14\x1b\x6c\xe4\xe0\x94\xd1\xca\x7e\xc8\x4d\xde\xd0\xb7\xb4\x0d\xd3\x62\x70\xc8\x49\x9b\x44\x88\x84\x04\xf2\xa4\xf0\xe0\x31\x53\x31\xc9\xed\x97\x82\x61\x0f\x1c\xe1\x66\xbf\x54\x32\xd7\x6b\x74\x93\x68\x55\xa1\xb2\xb5\x65\xd6\x1c\x94\x5e\x3b\x28\x27\xdc\x8c\xe0\x1e\x22\x93\xc4\xe6\xf1\x60\xe8\x84\xbe\x83\x86\xc7\x2b\x8b\xe4\x48\x4a\xa6\xee\xb5\xa8\xe6\x70\x77\xda\x8b\xfe\xe3\x24\x66\xa0\x8a\xdf\x1b\x75\xaf\xbd\xa8\x11\xba\x22\xea\xf4\x8d\x86\xf3\x43\xe2\x58\x12\xaa\x88\x8e\xbd\x26\x45\x66\x6f\x88\x9c\x46\x8b\xf7\x21\x39\x92\x54\x28\x64\x69\x9c\x49\x25\x6f\xce\x51\x29\xca\x4c\x5f\x47\xf5\xb7\xe4\x9c\xa4\x71\x96\x9a\xde\x4a\x11\x89\xfd\x87\xde\xb4\x43\x2e\xf2\xf3\x14\x09\x39\xe1\xf5\xcb\xfd\xa7\x4e\x1e\xc3\x36\x75\xfa\xd6\xb2\x32\x4b\x0b\xa0\x3c\xde\x9b\x4a\x90\x76\xc5\xbd\xb5\x8e\x1e\x12\xb6\xff\x1e\xfe\xf6\xc5\xdd\x49\x8d\xe4\x56\x96\xa8\x12\xee\x4d\x2b\x0a\xfd\x24\x87\xac\x4c\xd5\xb7\x5b\xa3\xe1\x54\x8d\x86\x9a\xc1\x81\xbd\x28\xcb\x69\x68\x4d\xad\x0c\x93\xd8\xf6\xcd\xcf\xb0\xaf\x9e\x8a\x9c\x3a\xa8\xf3\x9a\xc4\x59\x31\x49\x88\xbe\xe9\x2e\x4f\x12\xb1\xdc\xe8\x1a\xbd\x46\x85\x46\xc3\xb3\x93\x8b\x5c\xec\x02\x35\xa6\xcd\xad\x6c\x26\x6e\x56\xfb\xa6\xed\x63\xaa\x0b\x1f\xda\xd1\x4b\x33\x49\x41\x41\x8d\x69\x73\xc3\x19\x45\xb3\xff\xa1\x9b\x3c\x89\xf9\x3f\x3c\x76\x26\x2a\xaa\xfb\x43\x43\x49\xd6\x0a\xfd\xf0\x00\x30\x47\x7c\x2f\xf8\x3f\x54\x79\x69\x0a\xa8\xf3\xc2\x50\x75\x8a\x8d\x43\x52\x4e\xa0\x43\x75\x5e\xdc\xf6\xe8\x4c\xa8\xf3\xa2\x4e\x40\xb7\x45\x3d\x3f\x93\x64\xe6\xa4\xee\xd6\x2e\x52\x72\x22\x48\x52\x00\xd3\xcc\x79\x48\x9c\x0d\xa9\xf1\x1f\x92\xb3\x8d\x19\x3b\x24\xdd\x1e\x60\x9c\x3a\x13\xf5\x89\xa8\x6c\x24\xd1\x2b\xa3\x74\xb6\x2a\x53\xa8\x24\x55\x94\x65\xdc\x68\x5d\x24\xf6\x81\x74\xb1\x91\x32\x92\xa5\x24\x12\xd3\xdb\x69\xe7\x3b\x24\x0d\x05\xc1\x92\x8b\xd4\xf4\xde\x45\x52\xb9\xec\x6c\x15\xfc\x9f\x27\xf5\x12\x49\x4b\x57\x1f\x22\x2b\xe5\xe2\x14\x49\x75\xea\xaa\x22\xa9\x4d\x16\xd6\x5b\xd1\xc1\x48\x45\x45\xf1\x18\x96\x2a\x53\xe9\x8d\x9b\x59\x43\x27\x8f\x5a\x4b\x97\x48\x15\xc5\xee\x37\xfa\x9f\x68\x08\x3a\x24\x7a\x44\xdb\x4e\x9d\x7d\xaa\x22\xb6\xaa\x13\x7f\x91\x12\x7b\x24\xaf\x56\xd6\x58\x0d\x74\x61\x66\x0d\x0e\x8d\x57\x95\x3c\x58\x65\xc8\x9d\x39\xb1\x64\xee\x12\x95\x5a\x7b\x9d\x03\x1c\x1a\x97\x58\x65\x60\x42\x6b\xaa\x22\xc1\x48\x2d\x69\x60\x27\x75\x20\xae\xf5\x4a\xaf\x79\x9a\x73\xb2\x28\x4a\xfa\x4a\xa7\x61\xa5\xaf\xfb\xd4\x1b\x22\x69\x81\x99\x22\x71\xb0\x9c\x51\x4d\x82\xaf\xe8\xa9\xaf\x73\x11\x25\x93\x33\xbb\xb0\x08\x32\xc9\x99\xd3\xbd\x28\xea\xa2\x8a\xc4\xb6\xdf\xeb\xa5\x6f\xd1\xe6\xca\x83\xe5\x21\x21\x90\x6a\x70\xac\x28\xbd\x5a\x56\x33\xa4\x88\xb7\x27\xf5\x45\xc5\x94\x45\xd1\x7c\x11\x49\x45\x51\xf3\xae\x5c\xcd\x75\xbe\x17\x05\x52\x66\x2a\xcf\xfe\x93\x36\xed\x43\xd2\x50\x2d\x56\xb9\xb5\x9c\x35\xb0\x9f\x29\x85\x82\xcd\xf8\x40\x5c\x0d\xcf\xd1\x87\xec\xed\x0e\x52\x8a\xcc\x6c\x92\xe2\x39\xba\xc9\xcc\xcc\xf8\x36\x08\x67\x99\x19\xda\xc7\x21\x69\x29\xe0\x2c\x04\x51\x28\x33\x63\xc3\xa9\x41\xb4\xc9\x24\x74\xe2\x90\xac\x08\x0a\x54\x95\xbd\xbc\x3a\x73\x16\x23\x75\x56\x94\xe5\xc5\xbf\x4c\x52\xd2\x0f\x91\x3c\x69\xd0\x9e\x7c\xc8\xcc\xcd\x59\x45\xb1\x0b\xb9\x4f\x91\x50\x82\x34\x29\x91\xb7\x78\x12\x5c\x17\x45\x9b\x06\x17\x6c\xd0\x8e\x10\x57\x36\x29\xe3\x55\x16\x89\x55\xc6\xd3\x6f\x8d\x42\x35\x96\xfa\xc5\x21\x6f\x96\xdc\x44\x52\x7f\xd4\x58\x11\xaa\x16\xc9\xdf\xd2\x99\x40\x44\xc3\x21\xb1\xa5\xd0\xdf\x78\xc8\xc5\x81\x35\xb9\xa9\x89\xab\x19\x8b\x47\xf4\x26\x92\x47\x8b\x51\xe6\x77\x82\xbf\x06\xe5\xd3\xa4\x4f\xff\x90\xe4\xfd\xd1\x44\x06\x8d\x55\x59\x24\x59\x32\x44\xca\x4b\x91\xf5\x2d\xd6\x7a\x10\x78\x70\x48\x0c\x06\xdd\xe1\x35\x2a\x0d\x6c\x25\x77\x91\x83\xa4\x32\x53\x5c\x35\xca\x89\xa8\x54\x02\x6a\x35\x49\x7b\x54\x31\x09\x4d\x25\x4f\x35\x03\x13\x58\x5b\x31\x29\x69\xcd\x61\x6e\x53\xf5\xb2\x19\x3c\x0f\x34\xc2\x12\xaa\xd0\x20\xbd\x75\xa7\x72\x7a\xc5\x92\x44\x74\xc4\xa5\x66\x08\xa4\x61\xee\x6e\x32\x18\xbb\x28\xca\x89\xa1\xb1\x12\xfe\xa1\x54\x35\x43\x92\x6f\xa8\x22\xea\xb8\x59\x4c\x47\xcb\xcf\x24\x10\xac\x06\x0f\x0f\x95\x7a\x5b\x8d\xbe\x28\xbd\xc4\xbf\x9d\x36\x96\xa2\x71\x16\xce\x80\x36\xa5\x1a\x82\xd5\x85\xb8\x7b\x90\x8f\x12\xc5\x55\x8c\x45\x39\x41\x21\x1a\xb4\xb1\xcc\x10\xb3\x4b\x99\xce\xe1\x54\x88\xe7\xa2\xf5\x3a\x43\x36\xd1\x22\x92\x5d\x10\x33\x10\x8d\x57\xb5\xfd\xca\x7c\x5e\xe9\xf0\xa9\x41\xb4\x40\xeb\xe2\xdf\x25\xd4\x44\x54\x91\x37\xf7\x1f\x8e\xc6\xda\x64\xa4\xce\x66\xd0\xb9\xde\x2c\x09\xa8\xf2\x36\x9a\x02\xaa\x0c\xc6\x2d\x6b\x06\xf7\x96\x1a\xc7\xb1\x7a\xe9\xd0\xc2\x0d\x27\x5e\xd4\xdb\xe8\x84\xab\xf1\xd2\xb6\xa0\x91\x7c\x93\xf9\x83\x6a\x4e\xbc\xe5\x87\xe1\x4e\x1e\x6f\x0a\x24\x6d\xdd\x41\xad\xae\x4d\xee\x3f\x71\xf3\x48\x5e\x24\x72\x6e\x1a\x82\x9a\x96\xef\x4d\xc3\x66\xd2\xe2\xa6\x3f\x75\x24\x55\x24\x89\x2b\x25\x28\x3e\x32\x4f\xc1\xf3\x50\xd7\x45\x05\x31\x28\x36\xd6\x45\x6b\x95\xb6\xee\x75\x91\x91\x88\xbe\xaa\x2b\x05\x0d\xaa\x14\xa2\x8b\x2a\x52\xeb\xe4\xd8\x95\x69\x06\xcc\xd0\x8f\xeb\xca\xaa\x97\x5d\x58\x99\x3b\xcc\xe0\x0c\x2e\x2a\x50\x8d\x28\x9a\xba\x0a\x87\x7d\x70\x39\xaf\xa2\x8a\xc8\x75\x8b\xb0\xd9\x71\x15\x91\xb4\x75\x5c\x2a\xaa\xc8\xe6\xcd\xb5\xb0\xe8\x2a\x6c\x44\xee\xd4\x55\x43\xbe\xb2\x2e\xf2\x66\xab\xd8\xc1\xca\xd3\x2f\x7d\xe4\x87\xe4\xc9\x39\x9c\x4a\x55\x34\x3b\xf5\x43\x17\xe5\x24\x09\xc1\x1f\x1a\xf6\x55\xc9\x2a\x4d\x83\x53\x75\x78\xe0\x82\x5d\xf4\x58\x36\x7a\xa4\xeb\x6a\x54\x63\xa5\x8a\x2e\xca\x8d\xa9\xe5\xbc\xe4\xc0\xd4\x8e\xba\x84\x9b\xaa\xd3\xe4\x62\x66\x56\x44\x17\x65\x9d\x93\x6d\xa6\x21\xb7\x6a\xeb\x96\x31\xb6\x36\xcd\x51\xa7\x5a\x57\x34\xdd\x83\x58\xaf\xa6\x2e\xd0\xdc\x3a\x4b\x2b\x22\x69\x51\x14\xa9\x05\xdb\x4a\xfa\x56\xf0\x2f\xba\xe8\x9a\x3b\x34\xb1\xfd\xcc\x42\x8d\x7f\xc9\x09\x57\xa8\x2e\xaf\xa5\x83\x24\x05\xc3\x5a\xcc\x1c\xe2\xa3\x45\x86\xcd\xd4\xae\x16\x4f\xbb\x6d\xa8\xbb\x5b\x16\x18\x2e\xd0\xb5\x5d\x11\x33\xf3\xc8\x56\x1b\x97\xc2\x7a\x09\xfa\x4b\x31\x69\xdb\x24\x8f\x3f\x75\xbd\x04\xf5\x6e\xca\x4c\x41\x18\x4d\xa9\xdc\xd7\x81\x89\xbe\xeb\xa2\xb3\xa4\x15\xee\x12\xeb\x4d\x25\xa0\x50\x30\xc8\xfa\x58\xdb\x34\x49\xcd\x4c\xcc\xfe\xa6\xef\xb3\x88\xcb\xee\xa9\xb3\x30\x4b\xbe\xb9\x14\x0a\x25\xdf\xba\xe5\x2a\x53\x51\x34\x46\xd6\xde\x4c\xf2\x68\x2c\xee\xbe\x79\x76\x2a\xd4\xf9\xd6\x2d\x6b\x06\x8f\x16\xcb\x4e\x1a\x6e\x29\x8b\x67\xc3\x36\x29\x17\xb7\x4e\x65\x84\x50\x1e\x72\x90\x4c\x22\xf9\x2d\x35\xa4\x4d\xcc\xee\x8c\xae\x6f\xe5\xa5\x61\x23\xf7\x25\x74\x13\xe5\xe2\x26\xec\xe1\xe8\xd4\x22\x07\x05\x61\x90\xa4\xa4\x0f\x6e\x56\x3b\xd1\xf2\x43\xac\x62\xdd\x49\x52\x64\xa8\x28\x09\x60\x2a\x88\x3b\x49\x96\xbb\x28\xf6\x37\xa8\xb7\xed\x4c\xf5\x31\xb8\x22\x77\xe6\x9a\x0b\x6e\xdd\x3b\x93\x55\xb4\x22\x37\xe5\x53\xa3\x49\xb8\x6e\x6a\x75\xad\x52\xfb\xd8\xd4\xea\x5a\x50\x00\xcb\x92\x39\xc4\x84\x9b\xca\x56\x4f\x1a\xba\x22\x9d\x7e\x38\xf5\x4d\x1b\x1a\x53\xab\xba\xcf\xf9\xdd\x54\x82\xba\x14\xc4\x0d\x18\x6b\xea\x9d\xfc\xbc\x2b\x95\xad\xce\xb5\xbe\x9b\x54\x15\x8d\xa4\xf6\x79\xfa\x7f\xea\xe6\xd2\x0f\x5a\x06\xaa\x0c\x7d\xa3\xc4\x10\x49\x3f\x31\xa5\xd7\x9e\xbf\xe2\xc4\x0e\x01\xc0\xed\x10\x51\x0e\xe1\x6c\x1c\x25\x35\x6f\x9e\xc6\x0b\x3c\x70\xa8\xf9\xe3\x4b\xbb\xee\x86\x0b\xbf\x27\x17\xb8\x0e\xe1\x32\x88\x58\x12\x41\xec\x55\x16\xf5\xfe\xf1\xd5\xb9\x07\xee\x49\xe4\x54\x32\x05\x1c\xda\xa5\x32\xce\xb8\x10\x75\x72\x88\x74\x08\xa7\xd4\x1f\x5f\x83\x92\x65\x43\x8b\x18\x14\x58\x7b\x9e\xb5\x22\x8d\x69\xc3\x87\x33\x34\x07\xf3\xac\xfc\xd1\xd4\x0b\xea\x34\x7d\x3a\x8d\xe3\xd4\xd4\x5e\x9a\xa6\x88\xfb\x3a\x24\xa4\xd1\xbc\x4c\x02\xd7\x9f\xd5\xe4\x35\x7f\x7c\xb5\xe2\x0f\x71\x72\xcf\x1e\x91\x85\x41\x50\x07\x04\x5f\x77\x0b\x80\x40\xeb\x26\x38\x0a\xa6\x08\xd3\xf7\x74\x1c\xb6\xec\x5d\x5d\x22\x4a\xac\xa8\xf2\x4d\xe8\xbd\xaa\x3b\x7b\x64\x2f\xd3\x9f\xf5\xd3\x30\x4d\x14\xb8\x66\xf4\x39\xbe\x95\xe3\x7b\x1e\x69\xdb\xdd\x3d\xe0\xd0\xc4\x99\xf3\x2c\xbd\xe1\x41\xda\x98\xd4\xa2\x36\xd3\xd7\x34\xdc\xd9\x23\x84\x1b\x4f\xff\x3b\x74\x43\x81\xea\xc7\x06\x06\xb4\xd1\xb3\x54\x69\x50\x6d\x4f\x52\x3b\x55\x67\x11\xe4\xbb\x22\x0a\xad\x32\x21\xf3\x98\xcb\x38\xe3\x4c\x6d\x6e\xc7\x61\x2f\x62\xc4\x0e\x71\x1f\xc2\xa5\x7f\x0e\xa1\x46\x05\x67\x31\x89\x9a\x3f\xbe\xf2\xa5\xd5\x10\x00\x29\xba\x81\x82\x59\x5f\xce\xb9\x09\x43\x72\xd6\x17\x9a\x6f\xea\x8d\x26\x8b\x38\x93\x2a\x1e\x02\x34\xa4\x67\x35\xf1\xa8\xd0\x73\xaa\x9b\x3c\x88\x4d\x4d\x62\x40\xd1\x29\x1e\x03\xed\x7c\x6e\xb4\xc0\x77\xce\x4a\xf0\x1d\xc7\x44\xf0\xd9\xc9\x7d\x7d\x0b\x5e\xa2\xdd\x78\x2f\x80\xe8\x9b\x56\xe7\xfa\x15\x16\x7a\x08\xc0\x42\x93\x08\x02\x89\xa8\x39\xee\x85\x51\xef\x2e\x92\xe6\xbf\xec\x22\x37\x5a\xea\xea\x5f\x06\x97\x1e\x82\xe3\x50\x45\x61\x20\x54\x08\xd6\x71\x57\xf1\xc0\x93\x76\xb5\x83\xb0\xc9\xa4\x22\x00\x28\x1d\xaa\xea\x2c\xf1\xde\xd5\x78\xa2\xe2\xc7\x34\x89\xc1\x54\x2b\xb4\xae\x35\x98\x2b\xd8\x44\xb5\x03\x7a\x60\xc9\x4e\x83\xc1\x4e\x9c\xb7\x8e\x22\xd0\x3c\x58\x67\xfd\xf7\xac\x36\x1e\xc9\xde\x25\x6e\x97\x4c\x46\x92\xa1\x50\x5b\xa4\x85\x11\x48\x3c\x25\x34\x17\xa0\x9d\xd3\xd9\x26\x96\xa9\x92\xce\x0c\xe7\x4b\xab\x1b\x98\xe1\xb8\xc4\xa2\x8b\x1a\xc7\x10\x0b\xd1\x16\x54\xd2\x50\x39\x1b\x78\x59\x75\x75\x8b\x11\x5d\xce\x8b\xb0\x08\x17\x44\xf4\x98\x44\x29\xae\xfa\x74\xea\x40\xbc\xe8\x23\x3d\x9b\xbe\x82\x7e\x25\x27\x9d\x39\xd0\x26\x06\xb4\x4f\xd7\xbe\x03\x34\x4f\xbf\x24\xd9\x36\x04\xff\x95\x9c\xf1\x4c\xb7\xb6\xeb\xcd\x43\x4e\xd6\x7c\x6f\xc8\x60\xc9\x39\xdc\x6c\x1a\x9a\xc7\x4d\xf4\xaf\x16\xd2\x0e\x8a\x13\xb5\x83\x0b\xa9\xb8\x8c\xb3\x8a\xd5\xb3\x7d\xe6\x6d\x68\x64\xe1\x44\xe8\x57\x31\x75\x76\x02\xed\x2c\x7b\xa1\xc1\x45\xdd\x5c\x68\x70\x51\x83\xa9\x4e\xf7\xe7\x3b\x9a\x72\x2f\xd5\x40\xb5\x60\x38\xf3\x91\xbf\x53\x7c\xb2\x29\x7f\x3d\x42\x47\xfe\x4e\x09\x0a\xf8\x19\x42\x33\x07\x3b\x5d\xbf\xa6\xf3\x35\x7c\xf5\xad\xc3\xf4\x64\x3d\x8c\x23\x79\x82\xb3\x67\x97\x3d\x60\x6f\x3a\x7d\x74\x9c\xda\xb0\xfd\x79\x93\xd8\x47\xfe\x86\x16\xf1\xa6\x2e\xa6\xe3\x1f\x9d\x18\x53\x8a\x19\x5c\x18\x42\x33\x1e\x2a\x9d\xcf\xb2\x08\xb0\x82\x14\x2b\x22\xa3\xea\x08\x27\xb2\x43\x45\x14\x3a\x24\xde\x78\x91\x37\x86\x6b\xc0\x82\x9c\x22\xd6\x69\xa4\xf3\x01\x1f\xec\x22\xde\x27\xc5\xa5\x63\x03\xec\xae\xfa\x34\x58\x6b\x8c\x98\x73\x99\xbc\x08\x3a\xef\x97\x64\x27\x51\xe7\x32\x81\x10\x76\x3e\x79\xa2\xd8\x2f\xaa\x98\x9e\x37\x9c\xd3\xbb\xac\xd5\x44\xa1\xcf\xe9\x24\x22\xef\x25\x25\x08\x36\xb7\x42\x05\xf0\x42\x97\x75\x63\xbf\xe8\x11\xb0\x62\xf0\x22\x28\x64\xb8\x35\x84\x98\x0f\xe7\x7d\x63\xf3\x37\x75\xd6\xa3\x8c\x08\x9b\xf8\xae\x4b\x72\x9c\xf0\xae\xda\xa5\xc2\x00\xde\xd5\x93\x47\x06\xda\xa0\x0c\x71\x9b\xf6\x85\xa7\x1b\xdc\xd5\x67\x32\x09\x31\xd3\x4d\x05\xd7\xa1\x7a\x89\x13\xb3\xe5\x0c\x51\xee\xc9\xf3\x07\xd9\x71\x75\xd7\xff\x46\x4e\x37\xf5\x46\x4e\x37\xf5\x83\xb6\x31\x27\x00\xf1\x5d\x26\xf1\x4d\xe8\x46\x1d\x9a\x37\x02\xcf\x64\x72\xd9\xef\x49\xa3\x0a\xcd\x17\x44\xcf\xa7\x4b\x5b\xf6\x7b\xf2\x6a\xa0\xcb\x41\x37\x86\xeb\x80\x8a\xa9\x21\x7e\xd3\x5e\x38\x86\xc9\x33\xe2\xb2\x9c\xef\x37\x34\xf4\xeb\xa9\xe2\x46\x15\x2e\x14\xe3\x5f\xd9\xa9\x37\xef\x31\x68\x49\x10\xaf\x2f\xb3\xe2\x7e\xc3\x58\x2f\xe7\xcb\x7e\xc3\xb0\x72\x49\xd5\x7c\x1f\xa5\xa1\x27\xad\x90\x37\x58\xec\x6a\xaa\x1d\x1c\x96\xc2\x54\xa0\x13\xea\x3d\x58\xcc\x52\xe3\x8d\x5d\xe9\x6a\xae\x8f\x83\xdf\x45\xa1\x0f\xee\x1f\x76\xac\xab\xb9\x14\x0c\xbe\x56\x16\xb1\x30\x97\x76\xd2\x37\x04\x21\x6f\x40\x1e\x8a\xfd\xd3\x77\x8b\x33\xa1\x79\x59\xb8\xa9\x31\x9d\x73\x80\x52\xed\x60\xe8\x52\xfd\xdd\xc2\xe8\xaa\x2d\x50\x66\x6b\xf2\x77\xc0\xe2\x4b\x5c\xc3\x95\xd0\x6b\x72\x0d\x80\xde\xeb\xd0\xc1\x63\x72\x29\xa6\x88\x8f\xf0\x50\x50\xdb\x91\x12\xf9\x86\xd0\xd4\xc1\x76\xbf\x61\x31\x90\xb9\x64\xbf\x0f\xe7\xf7\x62\xe6\x82\x60\x2c\xe1\xb4\x89\x86\xfa\xbb\x00\xe5\x1a\x16\xba\xa4\x61\xc2\xa6\x49\xa4\x5d\xa5\x1f\xb5\x97\xb8\xbe\x17\xcb\xef\x8d\x2b\x28\xe1\x0f\xa1\x49\x54\x57\x81\xfe\x6a\xa7\x01\xb0\xa8\x17\x2d\x91\x1b\x4b\xa4\xea\xe8\x70\x43\xc2\xd6\xe4\x9c\xec\xfc\x10\xc5\xce\x4f\x51\x0d\x54\x12\x05\x65\x55\xdb\xe1\x3d\xd9\xf9\x2a\x0a\xf7\x82\xa5\xba\xdc\x58\x2e\x3e\xff\xdd\x74\xa5\x8d\xe1\xc6\xa0\xf7\xc5\x8d\xc1\xf5\xab\xe2\x0f\xd1\x09\x29\x4e\x30\x48\xf4\xaa\x0d\xe4\xe6\xad\x62\xe9\x2f\x77\xb0\x13\x6a\x1a\x44\x70\xd5\xd6\x09\x18\x55\xaf\xd2\x26\x68\xb8\x28\xd5\xd4\x40\x4e\x7f\x87\x8b\x2a\xd3\xdf\x91\xd5\x9c\x93\xed\x54\x07\x83\x8b\x5c\x03\x83\x05\x22\x0f\xc1\xbe\x83\x8c\xa7\x3e\x08\x81\xeb\x51\xb3\xb4\x56\xbb\x09\x27\xaa\xd2\x81\x79\xc9\x65\x24\x27\x7e\x08\x65\x26\x45\x4b\x40\xd7\x62\xbe\x37\x54\x40\xc9\xa7\x1b\xf2\xd9\x27\x8c\x5b\x50\x93\xe6\xac\x44\x80\xa8\x23\xbc\x10\xe6\xa1\xa2\xb8\xce\x4e\x3b\x33\x35\xba\xa9\x05\xca\x39\x37\xaa\x50\xdb\x7c\xd1\x43\x6c\x43\xd5\x4e\x2c\xf5\xa1\x66\x27\x71\xf5\xa1\x6a\xd7\x4c\x65\xda\x7d\x45\x15\xa2\x6c\x45\xd1\x26\x3c\x45\x35\xf4\x70\x88\x1a\x28\xc5\xdf\x4d\xe2\x54\x5c\x28\xda\xdd\x5c\x0c\x36\x4f\x49\x05\x5c\x00\xea\x3e\x64\xe3\x02\xd0\x99\x0e\x97\x03\x2d\x51\x5c\x84\xab\x35\x69\x64\x67\x65\x9f\xd4\x1a\x18\x44\x86\x8c\x0c\x1f\xda\x34\x2e\x53\xd4\x50\x9d\x13\xa7\x04\x89\x52\xa0\x8c\xbb\x15\x40\x21\x1d\x24\x94\x3e\xc4\x73\x6a\x0c\xe1\xb0\xec\x36\x0d\x7c\xa8\x01\x64\x7f\xc7\x4e\xb8\x86\x17\x28\x75\x90\xb7\x21\xc4\xed\x1f\xde\xca\xcb\x2e\x13\x7d\x10\xef\x7f\x88\x4b\x96\x4c\xfa\xf0\x9a\x9a\x44\xe9\x87\xf0\xd8\xea\x49\xa3\xad\x77\x6a\x1b\x03\xe8\xaf\x0f\xed\x8d\x1f\xdc\xd9\x4e\xd9\xd4\x07\x51\x2a\xf4\x21\x2d\x90\x56\x40\x3f\x8c\x99\xe1\x29\x25\x6e\x38\x75\x93\x05\xe5\xa8\x75\x87\x6b\x87\x50\x02\xfb\x73\x98\x56\xa0\xd2\x43\x4d\xd4\xa1\xb1\xa1\x3b\x3a\x9b\x19\x36\x6e\xa7\x7b\xbe\x37\xaf\xac\x74\x37\x80\x6d\x3d\x33\xd5\x78\xa9\x2b\xd3\x40\xd6\x7c\xad\x0b\x31\x31\x40\x9e\x2a\x53\x38\x6b\x47\x95\x53\xd4\x40\x9a\x29\x40\x27\x6a\xfe\x56\x4a\x37\xc2\x4a\x72\x82\x70\x38\xd4\x06\x75\x89\x3a\x87\x08\xfa\x3b\x0f\xf5\xc1\x95\xfb\x4c\x2a\x38\x72\x45\x54\x06\xe5\xb4\x82\xd6\xa8\xcc\xc3\x70\x39\x41\x6a\x1c\xea\xf4\x82\x82\xe1\x50\xec\x85\x6a\x38\xec\x37\x10\x51\x04\x14\x06\x35\xbb\x4c\xb6\x33\x89\xe2\x98\x9a\xda\x98\x0c\xe7\x7c\xa1\x14\xa7\xdd\x68\x8b\x6b\x07\x33\xb8\x86\x85\xab\x8a\x6e\xf5\x62\x8f\xd4\xb2\x23\x18\x47\xbe\x9c\x13\xac\x70\xa9\x4c\xdc\xcf\x67\x60\x86\xc6\x90\x0d\x39\x5d\x1a\x89\xc5\x3e\x98\x42\x1f\x3c\x82\x0b\x7d\xb8\xd4\x96\x85\x3e\x64\x53\x1c\x79\xcd\xe0\x42\x1f\x3c\x2e\x47\x2f\xce\xf4\xaf\x1c\xea\xa6\x8c\xf0\x87\x1f\x54\xa8\xc4\x8d\x2e\xb9\xa1\x87\xbd\x47\xf6\xd0\x1f\x7e\x16\x32\xe9\x50\xb4\x99\x9a\x83\xc8\xd0\xe6\xb5\x8d\x5e\xb8\xa5\x5b\xe1\x4c\x34\x34\x08\x76\x90\x2e\x52\x30\x5b\x0f\xca\xf6\x43\x25\x4c\x6f\x13\x85\x20\x0b\xfd\x12\x85\xa9\x6f\xa6\x3a\xa8\x2e\x6a\xc0\x4c\xe3\x32\x27\x4a\x29\xa2\x10\x07\xa2\x9b\x5a\x48\x73\x7d\x1b\x94\xcb\x7c\x21\x67\x12\x85\x5b\x98\xb5\x8a\x82\x21\xa8\xbb\x3e\x32\xb3\x72\x06\x5a\xed\xef\xc0\xbe\xbc\x10\x70\x28\xc4\x86\xe8\xaa\x8f\x37\xbf\x92\x56\x01\xac\xf2\x63\xb8\x83\x34\xb3\xcc\xcb\xe5\x2c\x7c\xe9\xac\x6c\xa9\xea\x0f\xb4\xb4\x4d\x51\x6c\xa9\xbf\xbb\x51\xbf\x6b\x84\xc9\xaa\x29\x0d\x2c\x3b\x8a\xbe\x5b\x68\x77\x51\x99\x60\x59\xca\xf9\x46\x18\x57\x6e\x5d\xbd\x87\x05\xb6\x4d\x71\x62\x3a\x7c\x39\xcb\xf0\x87\x81\x2a\xd4\xd0\x85\x01\x2e\x9a\xc2\x85\x66\x37\x0d\xfe\xd2\xfe\xe4\x62\xde\x18\x45\xd7\x81\x76\xbb\x4f\x8b\x23\xac\x0f\x37\xdb\xad\x9c\x9b\x2d\x55\x85\xe0\xcb\xe1\xb9\x47\x90\x8d\xd6\x4d\xb1\x17\x2a\xf3\x28\x07\xb9\x75\x35\x0d\xf1\x7f\x88\x2a\x3e\x14\x46\xdb\xfc\xb4\xd1\x32\x71\x65\x46\x70\x8c\x4b\x1d\xa4\xc3\xa3\x0e\x49\xcb\x7c\xb6\x7c\xdd\xe7\x39\x54\x01\xe5\xac\x0d\xa1\x0e\x9c\x36\x4e\xda\xbc\x44\x11\xeb\x76\xb9\x98\x8d\x0f\x9d\xf8\x02\x55\x44\x21\xfa\x41\x75\xce\x1b\x69\xdf\x5e\x02\x6a\x33\xd3\xcf\x31\x35\x51\x00\xe0\x94\x4b\xbc\x90\x83\x0d\x57\xa9\x47\xcc\xca\xb5\x76\xa8\x06\x4a\xfd\x3f\x5c\x5b\x2e\x4d\x62\x46\xa4\x0f\x1e\xd0\x0e\x85\x68\x0e\x5a\x95\x39\x10\xce\xa1\x35\x51\xe8\x53\x77\xed\xec\x93\xcb\x7c\x83\x72\x4e\xf4\x49\xb3\x06\xec\x4f\xb9\xb4\x46\xf3\xe2\x90\xaa\xd5\xf4\xca\xf3\x94\xdf\x18\xa2\xa6\x34\xc9\x36\x78\xc3\x4b\x4b\x2e\xe6\xfe\xf1\x25\x34\xe8\xa1\x3e\xc8\xa9\x0e\x1e\x86\x8a\xcb\x15\x6e\x18\x65\x3c\x6b\x87\x85\x84\x0d\x3c\x54\xc3\x77\xea\x20\x8d\x87\x6e\xf6\x61\xa1\xd2\xb2\x73\x4e\xa4\x99\x5a\xa0\xd4\xce\x23\x03\x4b\xd3\x46\x9d\x15\x48\x2a\x4c\xc2\x94\xd4\x5d\xc5\x8d\xac\x1a\xdf\xa3\x7b\x0a\x47\xd1\x66\xa1\xf5\x48\x5c\x52\x0e\xeb\x09\x27\x71\x28\x36\xbb\x8a\x62\xb3\x8b\x28\x34\x5b\xb2\xa4\x4c\x36\x3b\x44\xa1\xd9\x9a\x6b\x44\xf2\xd2\x35\xaa\x43\xa1\x13\x5a\x31\x85\xd6\xa4\xe1\x32\xdf\xb4\xc5\xb8\x98\xd3\xec\x50\xef\xcb\x11\x90\x25\x9c\x95\x10\xe7\x26\xb9\x8e\x3b\x09\x25\x5c\xc7\x91\x97\x61\x49\x8e\x7b\x5c\x61\x29\x54\x10\xb4\x23\x34\x31\xb8\xbc\xa0\x50\x4b\x87\x1a\xc8\x69\x2a\x08\x3b\x75\xa1\x0b\x1f\x6a\xd8\x0e\x23\x86\x25\x14\x70\x0f\x31\x9a\x73\xde\xbc\xae\xe7\xa6\x12\xd8\x2d\x21\x8c\xc8\x64\x61\xd1\x2e\x17\xa4\xc5\x59\x59\x68\xb9\xe6\x0d\xe8\xaf\x18\xe2\xfd\x82\x28\x1e\xe1\xb9\x39\x5c\x1b\xde\x75\xca\xd9\xe4\x4b\x88\xc1\x10\xe2\x2c\xbc\xaf\x01\x34\x56\x62\x38\xe7\x42\x9a\xeb\xc3\xfd\xfe\xe6\xb4\x37\x72\xfa\x3b\x0c\xbf\x67\xf1\x30\x7b\x58\x26\x16\x30\xbb\x25\x6b\xd9\x1c\x7d\xb5\x73\x73\xf4\xd5\x41\x02\x46\x5a\xa8\xc2\xc3\xfb\x02\x0f\x1d\x0a\x26\x24\xaf\x44\x62\x68\x2f\x8b\x0c\x84\x4d\xab\xe5\xa9\x64\x83\x52\x17\x69\x2a\x9f\x52\xb1\x0a\xed\x5d\xe5\x69\xc2\x4d\xd2\xa9\x1f\x96\xcb\x54\x44\x26\xaa\xa5\x99\x4a\x9c\xad\x2a\x32\x23\x31\x44\x15\x7e\xd9\x45\x56\x24\x3a\x2b\xfa\xa2\x25\x50\x71\x8a\xba\xbc\x85\x55\xf1\x72\x5c\x22\xc5\x13\x4a\x3d\xec\x5b\xcd\x69\xc4\xba\xa4\x4b\x7a\x5f\x55\x98\x05\x67\x2d\x48\xbc\x9c\xb7\x22\xf1\x5b\x14\xdf\xc9\x7a\xda\x67\x36\xa8\x38\x4a\xa5\x2b\x99\x9c\x28\x67\x88\x5a\x4c\x4c\x22\x5f\xac\x73\x8a\xfc\x20\x52\x99\x06\x0c\xa7\xa2\xc4\x7b\xdb\x8d\xd1\xb8\xda\xe5\xd6\xe2\xf8\x9e\x9a\xb6\x24\x44\x6a\x3a\xa4\xca\x65\x64\xb1\xa6\xad\xad\x32\xb6\x58\xd3\x86\x51\x61\xb9\x4a\xbc\x02\x7d\x48\xc4\x58\x93\xb6\xc4\x70\x76\x75\x78\x26\x68\x7d\xf5\x7e\x42\x50\x74\x7e\x5a\x71\xb6\xf3\x66\x71\x0f\xdc\x60\xab\xe2\xc0\x8a\xc3\x50\x0e\x6d\xb6\x15\xb6\xa5\x1c\xe1\xbc\xfb\xc7\x57\x9b\x92\xcd\x00\x03\xb5\x29\xe9\x4f\x48\x61\x29\xd9\x95\xc0\xd1\xcd\xe6\x35\x1c\xe1\xb5\x15\x34\x9c\xe0\x35\x3e\x80\x1a\x76\x0d\x40\x3b\x0c\x34\x86\x09\xa8\x9f\x97\x08\xca\x53\x11\x03\x0e\x25\x11\xdc\x04\x44\x40\x98\xba\x52\x18\x21\x87\x3f\x82\x11\x72\xf8\x2b\x1a\x21\xf5\x59\x08\x56\xaa\xac\x00\x38\x16\xb1\x1f\xc3\x5b\x15\x09\x48\xa2\x1d\x8b\xb8\x86\xc1\xad\x46\x71\xc3\x78\x1e\xd7\x4e\x82\x08\x0d\xd9\x5d\x3b\x2c\x34\x72\x72\x29\xe7\xf4\xe0\x21\xa0\x6e\xe9\x96\x1d\x61\x99\xa7\x8b\x38\x4a\xb0\x66\x1c\xf7\xb0\xce\x8e\x44\x8a\x77\x77\xab\x94\x32\x00\x2b\xf3\x54\x19\xd8\xcf\x43\x8c\x83\x1b\xb3\x44\x4d\x1e\x02\x6e\x0d\xe7\x1b\x67\xf0\x55\x3c\xc4\xe2\xe5\x6f\x60\x26\x6d\xae\x8b\x61\x39\xc4\x6c\x88\x4b\xd5\xdd\x67\x9c\xe5\x5d\x3a\xf7\x75\x0d\x1c\x21\x4e\x43\x7b\x30\xef\x7e\x5d\x6e\x14\x64\x5b\x91\xa0\x25\xe4\xa3\x68\xbf\x20\xb2\xd3\x72\xa4\x11\xe1\x7e\x3d\x24\x4e\x33\x85\x13\x80\xfb\xbe\xd5\xd2\xb4\xc3\xef\x5e\x4d\x70\x6e\x92\x49\xfa\xda\x43\x14\xe3\x70\xa9\x13\x08\x77\x15\xc9\x65\xd2\x03\xc0\x31\x12\xde\x44\x5c\xed\x2b\xc3\x4e\xc3\x09\x4d\xcb\x01\xd1\xaf\x46\xd6\x72\xe8\x8a\x78\xe7\xef\x10\x21\x28\x8b\xc0\xb0\x0f\x11\xf4\x3a\x3a\x1f\x2f\x46\x14\x57\xc0\xf8\x4a\x5a\x39\x5d\xb6\x40\xe5\xa5\xfd\x45\xc3\xdb\x17\x8e\xf4\xda\x55\x89\x88\xeb\x97\x0e\x1e\x9d\x61\xc7\xa6\x7b\x78\xe6\xb3\x7a\x7b\xee\x0b\x51\x89\xfc\xe1\x0b\xaa\xbe\x08\x46\xb2\x74\x27\xb0\xad\x79\x3c\xe9\x26\x9c\x4e\x82\x29\xa6\x36\x93\xbc\x92\xaf\x2d\x85\xf7\xed\xda\x39\xf6\x7d\x2b\x96\xbb\xef\x0a\xa8\x71\x9b\xb6\x11\x6d\x89\x9d\x41\x83\xc2\xd5\xc0\x6e\x9a\x9c\x06\x01\xd4\x5c\x27\xc7\x8a\x03\x30\xe8\xea\x9b\x6a\xfc\xa0\x35\x46\xdb\x8d\x6e\xf8\x45\x71\xde\x89\x59\xad\xa2\x18\x0f\x43\x5b\x1e\xae\x6e\xe8\x36\xf6\xa1\x60\x05\xd0\xd1\x0f\x77\x01\x73\xd2\xdc\xe1\x2a\x60\x4e\xc5\xc5\xc0\x36\x93\x9d\xf6\xe1\xf8\x70\x3e\x10\x24\x74\x0c\x6d\x95\x8c\x12\xda\xab\x74\x20\xc6\x32\x69\x56\xfb\x78\xa5\xb0\x57\x69\xd9\x83\xc7\x88\xe9\x4f\x21\x19\x25\xd6\x10\x3a\x34\x7e\x2d\x96\x2e\x60\x8f\xc8\x61\xad\x5a\x9e\x62\xde\xe0\x08\x53\x37\xf7\x3b\x93\xc4\x11\x48\x42\x8d\x75\x39\x94\xd6\x21\x00\x24\x50\x53\x0d\xe7\x56\x15\x4b\x02\x40\x2d\x27\x62\xac\x4a\x7f\x19\x08\x85\xdb\xdc\xd6\xcd\xa3\x92\xa9\x02\x01\xa6\x0f\x79\xc9\xd0\x7a\xdf\xd8\xed\x89\xde\x75\xa8\x7e\x16\x93\x09\x18\x22\x5c\x88\x22\x0f\xb9\x14\xb2\x87\xe6\x9c\x68\xc5\xa4\x39\x9f\xf4\xec\x5d\xb2\x0a\x01\x2c\xd6\xd5\x6e\x86\x84\x1b\x25\x39\x8d\x7e\x76\x27\xe2\xf4\xed\x52\x68\x7f\x1f\xce\x49\x87\xbf\x13\xcf\xe9\x48\x76\x1f\x02\xbf\x2e\x35\x7b\xca\xe5\x3b\x44\x9d\xbd\x4e\x8b\x1c\x88\xf1\x90\xea\x33\x19\x32\x2c\x9c\xef\x4d\xe5\x58\x14\xbc\x98\xe1\x12\x3f\x74\x8d\x92\xfb\x26\x41\xa0\xb6\x3c\x4c\xb9\xd2\xd4\x05\x4c\xd3\x25\x16\x62\xa0\x99\x4b\xbb\x0c\x91\x60\xbd\x0e\x97\xc3\xab\x75\xc9\x24\x34\x52\xed\x3a\x80\x78\x25\x2b\x7c\x93\x4e\x31\x31\x31\x41\x5d\x55\xa7\x23\x06\x13\xe8\xe9\x21\xe9\x52\x51\x73\xb8\x33\x74\xa7\x71\x67\x70\x1a\x77\x06\x75\x92\x8e\x2f\xb1\xc5\xa4\xe3\x4b\x1c\x34\x79\x4f\xa8\x6a\x74\x04\xd0\xd2\x59\xcd\x57\x5c\x43\x14\x2c\xec\xdd\x39\x3b\x5a\x9a\x45\xb1\xc3\xfe\x8e\x0e\x8d\x2e\x6a\x71\xf3\x17\xb5\x19\x78\x43\x14\xef\x1b\xb8\x14\x46\x18\x4a\xa2\x68\x53\x9f\xa2\x04\xbf\x56\x31\x01\x3b\xa6\x13\x69\x8b\xad\x4e\x83\xcd\xcf\xc5\xd0\x16\x5b\x9c\x73\xb0\xbf\x43\x64\xf0\x2a\x81\xbf\xa4\xd4\x72\x22\xa4\x56\x75\x39\x94\x5a\x1a\x0c\xa8\x1f\xa9\x7e\x8b\xe3\x68\xba\x3e\xa6\xb8\x6c\x8d\xc1\x52\x47\xd6\x46\x19\xb4\xc7\x7a\x00\xe8\xa7\x0a\xe9\xc8\x40\x87\x15\x9f\xb1\x01\x0f\xcb\x56\x73\x83\x06\x2c\x4d\x7f\x70\x3b\xf2\xdc\x2c\xd8\xdd\x3c\x8b\xb4\x5f\x79\x36\x64\xbf\x52\x63\x36\x2c\x1a\x62\x14\x22\xce\x9e\x2d\x3d\x68\x45\xf0\x38\xca\x8a\xe0\x0f\x19\x01\x26\x39\x2b\x8d\x0a\x2e\x07\xe6\x0e\x77\x6a\xc3\xc0\xa1\xf9\x27\xfc\x2c\xb4\x6e\x10\x33\xb9\xc4\x74\x1a\x56\x58\xd2\x9e\x86\x40\x8f\xd5\xe7\x38\x20\xc9\xaa\x55\xf5\xc5\x8b\x1b\x53\xe2\x75\xd1\x4f\x34\x25\x60\x01\x2d\xab\x3e\x49\x03\x4e\x56\x7d\x00\xe6\x15\xbc\x5e\xd5\x56\xc2\xcf\x73\x95\xe8\x60\x1c\x8d\x72\xc9\x40\x4e\x84\x59\x0e\x89\x00\x20\xcc\x8e\xee\xee\x5a\x09\xf2\x2c\xfe\x76\x3b\x26\xe2\x21\x00\x4e\x12\x41\xf3\xa6\x0a\xa1\x07\xc8\x0b\x02\x40\xb2\xd0\xde\x4c\xf4\x7b\x7d\xfa\xb1\x00\xc8\x9b\xfe\x90\x5e\xcc\xe2\x44\xe8\xed\xd2\x2c\x18\x08\xea\xc9\x2a\xed\x40\x1a\x09\xd1\x63\xbd\xba\x05\x14\x01\xdd\x89\xd0\x0e\x24\x02\x19\x9b\xd2\x87\x5c\xa1\xc5\x34\xe8\x5b\x48\xc2\x29\x0a\xbe\xd0\x6e\x8a\x97\x51\x9d\x93\xf5\xab\xff\x5b\xe2\xc1\x85\x92\x77\xba\x28\x5e\x30\x0b\x7f\xf9\xc6\x82\x20\x5f\x6f\x01\xa2\x75\xc6\x20\xde\xbf\x27\x9d\x76\x36\xdc\x33\x3e\x25\x6e\xda\xb7\xdd\x1e\xea\x95\xd3\xe5\xc0\x2a\xef\x7e\x20\xc2\xfb\xaf\x14\x82\x33\x4b\xae\x6f\x46\x67\x16\x7f\xe2\xe2\x7a\xb1\xed\x0a\x58\xb4\x62\xc3\x1d\xb0\x68\xc5\xb6\x2b\x80\xd1\x4a\x73\xbb\x75\xea\x70\xf5\xbc\x87\x31\xb3\xc9\x8a\xbc\x1a\x8e\x33\xc9\xa5\x49\x76\x02\x9e\x16\x5e\xc9\xc0\xa3\x85\xd7\x2e\xc3\x24\x5f\xb6\xd4\x02\x8e\x56\x6d\x9c\x04\x1e\x2d\x5d\x36\xf8\x02\x83\x56\x6d\xbd\xe2\x65\xd1\xd4\x74\x5e\x02\x0a\xad\xd9\x70\xcb\x7b\x4d\xb9\x6a\xe3\x06\xb8\xac\x75\x89\xbd\xbd\xc3\xb1\x3d\x0f\xb1\x7e\x7c\xf5\xe2\xea\x0f\xbb\x87\xba\x4f\x0c\xb0\xd8\x98\xa1\xb5\x9a\xb9\x01\xa8\xb0\x90\x42\x05\x50\x58\xb7\x57\xeb\x25\x91\x1f\xa2\xa0\xfd\x69\x28\x5e\x74\x66\x68\xdb\xc4\xf5\x8d\xec\x1e\x20\x18\xe9\x2c\x0f\x05\x93\xb1\x46\x1b\xe8\xaf\x2e\x15\x16\x31\x47\x7b\xb4\xef\xe5\x34\x70\x62\xe3\x29\x83\x6c\xd0\x45\xad\x27\x8c\xe9\xa1\xd0\x57\xed\x36\x40\x89\x8d\xa7\x21\x38\xcd\xcb\x08\x8c\x3b\x25\xa1\xbd\x05\xf1\x49\x43\x9b\xb7\xc0\x64\xe1\x24\xd8\x87\x1e\x8a\x81\xe8\xa5\xf4\xbc\xf4\x88\x82\x76\xda\x17\xdd\x6b\x3a\x86\xf0\x9a\x8a\x40\x51\x87\xa4\xe0\x77\x25\x64\x49\x95\x43\x63\x9b\x98\xfe\x45\x63\x9b\xbf\xe3\xb1\xa4\x68\x49\xbe\x74\x2c\x91\xad\x83\xc0\xb3\x74\x49\x9b\x21\xd6\x2c\xdb\x8d\x05\xac\x99\x2d\xa8\x80\x9a\xf5\x70\x31\x0c\xe0\x5e\x5c\x09\xe5\x8c\x1b\x00\x0c\x80\x9b\x4a\x38\xf3\x34\xc5\x89\x67\x4e\x84\x31\xcb\x4d\xc3\x21\xa4\x59\x16\x21\x45\x3a\x44\x02\xf6\x9e\x44\x9c\x45\xa6\xb5\x0a\xd0\x59\x0f\x67\x3b\xe7\xca\x70\x79\xe7\x5c\x19\xae\x2a\xce\x5c\x9a\x38\xca\x80\x38\x80\xf8\xb2\xab\xba\x6c\x20\x03\xc3\xad\xe0\x85\x17\xad\xfd\x37\x31\x32\x92\x51\x6f\x1a\x49\x34\xec\x8c\xf5\xe0\x25\x4b\x80\x99\x37\x38\x82\xc8\xec\xf3\x7b\xd3\x63\x21\x39\xf0\xa6\x46\xeb\x0a\x18\xa3\xf5\x49\x3b\x8b\xe6\xf2\x67\x1f\xee\xcb\xaa\x01\x1b\xcf\x34\x71\x34\x0f\x8f\xe3\x82\xea\x2e\x45\xfe\x4d\x9e\xb3\x95\xe4\xcd\x8b\x0d\xb2\x30\xbd\x75\x48\x96\xce\x04\x68\x58\x93\x8d\xec\x4d\xa4\x63\x72\xa1\xbc\xec\x72\x39\xf1\xb4\x2c\x5c\xca\xd9\x10\xc5\xe3\x00\x7f\xf5\x2c\x0b\x14\xb1\x5f\x5e\x35\x6f\x45\x9d\xd1\xd6\x4e\xf0\xd7\x33\xd6\xe4\x29\xcf\x03\x58\xca\xc6\x2f\x20\xb3\xd2\xec\xee\x2e\x8f\x2e\xed\x32\x09\x1f\xb9\x24\x19\xf1\x57\xde\xe6\x81\xb8\x1a\x32\xad\x03\x2a\xd5\x2f\x31\xbf\x30\x4e\x52\x34\x79\x1f\xab\x37\x2d\x05\x41\x9e\xa4\x20\xdf\x04\x9d\xc8\x5c\x4c\x90\x93\xad\x74\x04\x39\xd9\x60\x70\x13\x74\x32\x5c\x05\x14\xe4\xea\xef\xa0\xca\xa9\x4f\xb7\xf4\xcc\x2e\x8a\xf2\xb1\x89\x62\x8f\x44\x71\xcb\x69\x3a\x10\x11\x01\xd5\x7c\x90\xba\x17\xcf\xbf\xa6\xe0\xff\xeb\xce\xaa\xd0\x78\xea\xc6\xa2\x3b\xd0\x89\x93\x38\x74\xb5\x6e\x09\xf9\xaf\x8e\xd0\xe2\x65\x63\xa6\x80\x55\x4d\xdb\xc0\x4d\xbf\x80\xf8\xfb\xa6\x5f\x40\x02\x56\x91\x85\x5b\xfa\x0d\x26\x68\x82\xb0\xc6\x74\x2d\x1b\xc6\x75\x8f\x10\xd8\x25\x57\x4f\x09\x2e\xbb\xc8\x66\x4b\x64\xd5\xa5\xc5\x00\x2c\xd5\x10\x23\x31\x6e\x41\xb7\x23\x4a\x00\xa9\x22\x46\xfe\xd0\xc3\x2f\x6e\xfd\x50\x9b\xb1\xeb\xeb\xc3\x8b\x4f\x26\x00\xb3\x73\xa1\x47\x64\x5c\x2e\xf2\x54\x77\x39\x45\x21\x34\x5c\xfe\x11\xd4\x62\x7f\x82\x9c\xea\x14\x03\x08\xe5\xe4\xc3\xd4\x87\x76\x8d\x90\x74\xf9\x50\x66\x48\xb1\x63\x34\x45\x3b\x2c\x88\x73\xb2\x27\x53\x38\x27\x6b\x5d\x1f\x07\x92\x51\x0b\xa8\xbb\xa6\xe9\x54\xae\x2b\x57\x42\xce\x52\x41\xe2\x2c\x09\x56\x22\x98\xd2\x25\xce\xfa\x20\xd0\x76\xc9\x4e\x2c\x0e\xd0\x7d\x88\xb3\xac\x42\xfd\xc0\xa5\x08\x2d\xc6\x0f\x2e\x45\xb8\xff\x87\xc5\x46\x38\xe5\x88\x60\x09\xe7\xcf\x61\xaf\x79\xb9\xa2\x7d\x08\x17\x7d\x56\x89\x36\x1a\x5c\x72\xb6\xd1\xee\x43\xa1\xe3\xa6\x43\xe8\xe8\x1b\xc0\xf7\x65\xb9\x05\x44\xca\xc7\x07\x20\xa4\xa6\xa4\x16\xf0\x51\x43\x67\x20\x00\xa2\xec\x1f\xfa\xf0\xaa\xb5\x55\xb5\xcf\x66\x9c\x81\x6a\x72\x9e\xac\x1a\x07\x40\xf2\x93\x89\xd7\x49\x51\xfb\x24\x96\x38\x4b\x8c\x72\x11\x9c\x94\x00\x34\x2a\x58\x7c\xe0\x4a\x66\x50\xd9\x0a\xe0\xa2\x18\xb2\xed\x10\xb0\xd1\x86\xf3\x1d\xed\x8a\x43\x1e\xc0\x3d\x31\x18\xd4\x21\xce\xa9\x2c\xfb\xa3\xa3\x4a\x52\x54\xc5\x85\x88\xdc\xb4\xb2\x05\xe2\xc3\x05\x59\x38\x00\x8e\x62\x10\xd4\x43\x7c\x4e\x36\xd5\x13\xd0\x66\xd4\xec\xc3\xa4\x41\x8e\x08\xc0\xa4\xa2\x38\x85\x22\xd2\x6d\x65\x00\x39\x1d\x3d\xe2\xe2\x6d\x5f\xa9\x52\x01\x30\x94\x6e\xc9\x1d\x0a\xaa\x61\x52\x4b\x18\x43\x4a\x4e\xd6\x00\x1a\x2a\x11\x8c\x76\xa8\x17\xb2\xaa\xa3\xc4\x4a\x87\x29\xf8\xed\xc2\x39\xf1\xb6\x48\x52\x85\x74\x3b\x25\x75\x49\xe1\xfb\xdc\x9a\x45\x64\x9a\xfb\x08\x7c\xb4\xcc\xd6\x8c\x30\xd2\xf3\xf3\x25\x7c\x8e\xe1\x9c\xc0\x7f\x3f\xc5\xb0\x53\xa6\xe0\x8f\xba\x34\x1c\x40\x52\xe7\xcb\x69\xe8\x53\xd2\xec\x43\x99\x4b\x4f\x7d\xec\x93\xeb\x83\xa9\x31\x69\xc0\x71\x10\xe8\x42\x85\x04\xd0\x51\x5d\xb0\xaa\x00\x3a\x2a\x09\x9c\x15\x97\x82\xaa\x4c\xd5\xb8\xe9\x07\xd4\x98\x32\x02\x56\x5c\xdf\x5e\xea\x3e\x79\x07\x2a\x51\x5b\x61\x61\x12\xe2\x2c\x18\xa6\x29\x3d\x69\x9c\x29\xd7\x88\x5e\x79\x8a\xa1\xf6\x09\xba\x15\xbc\x2a\xcc\x67\x31\x0e\x45\x13\x0f\x4d\x53\x8a\x97\x2e\x80\x5d\x00\x81\xd5\xe5\x18\x8a\x04\x71\x2d\xa8\x5a\x00\x8f\x95\xe4\x1a\x8f\xc4\xab\x83\xc9\x14\x5f\x1e\xba\x44\xa1\x13\xd9\x69\xe8\x04\x45\x8a\x02\xb2\x0b\xb4\x17\x69\xea\x26\xb2\xb3\xbe\x68\x7e\x0a\x91\x8c\x2b\x5d\x4c\xb2\x1f\x6e\x1c\x6e\xf8\x69\x02\x10\x41\xb1\x0b\xfd\x17\x00\x3a\xf5\x5a\xd5\x29\x18\x18\x2b\x77\xf0\x60\xc0\xaa\x12\xa6\x0a\xd2\x54\x26\x78\xb1\x36\x97\x02\x4b\xa0\x6b\x87\x95\x40\xba\x5b\x24\x38\xab\x6a\x75\xda\xe4\x33\x50\xa2\x18\xb1\x63\xb8\xd0\x45\x7f\x83\x5a\x4a\x5c\x7f\x71\x5e\xa8\xeb\xd5\x35\x52\xb3\xab\x1a\x8e\xc3\x80\x76\x74\x05\x50\x50\x5d\x6a\x66\x30\x30\x04\x01\xeb\x87\x82\x95\x40\x4b\x93\x71\xec\x8b\xeb\x07\xca\xbf\xba\x4c\xa2\xfc\x87\x4b\xc1\xce\x16\xea\x14\xcd\x9b\x53\x43\x43\xf3\xa6\xa7\x06\x87\xd2\x2a\xf1\xc3\x4b\xe1\x3a\x18\x46\xe2\x43\x01\x4f\xcb\x60\xda\xf6\x34\xd1\xf3\x51\x4c\xa1\x47\x92\x68\x40\x56\x25\x1d\x28\x23\x13\xba\x2f\x09\x99\x09\xdd\x97\x94\xce\xb0\x59\x49\x5b\x0a\xdd\x32\x97\xa7\x23\x32\xd1\xfa\x54\xb9\x03\x38\xab\x5e\x25\xd1\x81\xb3\x52\x08\xff\x43\xa1\xd9\xe1\xef\x5e\x7c\xc9\x4b\x14\x9e\xa8\xa8\xa6\x6e\xde\xa1\x15\x45\x49\x20\x16\x22\xb0\xaa\x84\xaa\x08\xb6\x5b\x1f\xf2\x24\x32\x55\x85\x62\xa7\xb9\xc3\xb4\x8a\x5d\x92\xf5\x99\xee\xdb\xa9\x1e\x53\xcb\x98\x2e\x95\xc7\x81\x64\x12\xfd\xa8\x2e\x16\xb6\xe6\x70\x31\x2f\x1a\xc8\x9c\x95\x0f\xcd\x48\x6a\x23\xb2\x52\x1f\x1e\x1d\xac\x85\x31\x34\x90\xbc\x6b\x29\x26\xca\x12\xcc\x9e\x81\xc5\x13\x42\x75\x5e\x40\xd6\x87\xcb\x81\x3f\x53\x2b\x45\x4f\x10\x76\xb5\x87\x16\xb4\xe7\xbb\xe0\xbd\x49\x51\xd0\xc2\x9b\x06\x92\x17\x01\xbb\x4b\x81\x99\xba\xba\x14\x5e\x72\x54\x8f\x71\xe3\x65\x98\x55\x78\x7b\xa0\x69\x76\xb8\x30\xb4\xa2\x81\xe6\x4a\xc2\xec\x44\xe6\x5d\xaf\xa4\x05\x9e\xb1\x32\xe4\xa1\x0d\x06\x48\x19\xd3\x53\x07\xe7\xcd\x98\xdf\x5b\x31\x18\x81\xaa\x0f\xcf\x1c\x83\x24\x57\x37\x87\xca\xbb\x59\x97\x37\x0d\x86\x5b\xc7\x1e\xfb\x43\x9c\xac\xcc\x48\xbc\x77\xd0\xfc\x1d\x7a\x1c\xce\xf9\xe1\x6d\x76\x50\x0c\x71\x25\xa0\xac\xdf\x8b\xd0\x36\x55\xa8\x63\xd3\x79\xc6\xe8\x57\x5d\x16\xd2\x28\xbc\x84\x20\xd1\x5f\x68\x2f\xa4\xe3\x55\xcf\x4c\xc8\x5b\x16\x7c\xd2\x51\x40\xac\x28\xba\x06\xd6\x5c\x21\x7d\x59\xe1\x52\x19\x34\xeb\xc9\x8c\x83\x7a\x75\x25\x1f\x74\x9f\x63\x53\x64\x41\xd6\x7a\x2c\x3c\xcb\x49\x8c\x14\xbd\x8f\x28\xbd\x0a\xd0\xac\x2e\xc5\x36\x0a\xe1\xd6\x6e\x01\xe1\xd6\x62\x9c\x22\xf3\xbe\x6a\x24\x1b\x7b\x67\x00\x30\x6b\x64\xc9\xed\x42\xf4\xb5\x47\x87\xe8\xeb\xee\x2a\x80\x5b\xae\x2e\x14\xe8\x6b\x77\x8a\xe8\x6b\x8f\x0e\xcd\x43\xdd\xa5\x00\x41\xee\x0e\x13\x6f\x2d\xde\x2c\xbc\x4e\xd0\x5d\x3b\x6f\x09\x4b\xf8\x17\x22\xac\xb5\x88\xf0\x56\x65\x4e\x9a\xfe\x42\xbc\xb5\xa4\x76\xe1\x35\x00\x4f\x31\x8e\x58\xd9\x13\x47\x0c\xc2\x43\xa1\xfa\xae\xc6\xe0\xca\x7a\xd6\x92\x02\x7c\x2a\x27\xd5\xc7\x38\x87\x4d\x20\x5f\xc6\x11\x1b\x59\xbc\x01\xf4\xd4\xc8\xe2\x30\xa0\xa7\x14\x1e\xa6\xf1\xa1\x90\x9c\x9a\xd3\xf0\x90\x26\x4f\xb9\x51\xe9\xae\xae\xa6\x30\x6a\x5a\x8b\x95\xde\xea\x66\x8a\x9d\x98\xa2\x70\x1e\x9f\x2e\x93\xcf\x11\x68\x80\x2b\x0d\x96\xcd\x85\xe2\xd8\xd4\xf5\x21\x0c\x96\xc9\x4d\x03\x16\x3b\x57\xa7\x91\x2f\x9c\xc6\x90\x46\x1a\xd2\x4a\x6f\x96\xfb\xcb\xdb\x03\xc5\x1f\x32\xcc\x6c\x71\x22\x1a\xae\xad\x81\xe1\x8d\x6c\x99\x54\x58\xb4\x31\xfd\x29\x1f\x19\x79\xfa\x7c\x38\x4c\x51\x39\x1b\x63\xa6\xe5\xa4\x55\x5c\x97\x6a\x51\xfb\x08\x9d\x96\xc0\xab\x3a\xe4\x3f\xc5\xbe\xf0\xde\xab\xb3\xc2\x02\x19\xae\xe3\x46\x9a\x3f\xfc\x80\xd2\xac\x12\x3a\x2d\x41\x05\xe8\x55\xee\x52\xd3\x2a\x81\xd4\xda\x54\x81\xbc\xca\x32\xe8\xf2\x71\xbe\xe1\x7d\x02\x71\x97\xc6\x98\x4e\x83\x99\x7f\xba\x14\xf4\xc9\xb3\x8a\xcb\x2c\x82\xe3\x04\xf0\x5b\xc3\x2a\x0b\xf0\x5a\xc3\x12\x0d\x78\xad\x21\xeb\x0c\x5f\x9b\x29\xd7\x74\xab\x69\x5f\x93\x06\xd9\x78\x4b\x40\x1b\x35\x10\x5b\xb9\xa7\xef\x9d\x82\x0c\x1d\x97\x9b\x54\x11\x00\xba\x72\xd3\x3e\x21\x44\x97\x6a\x04\xa4\x2b\x37\xb5\xad\x11\x83\xd1\x9a\x13\xe1\xc8\x97\xb8\x6b\xc2\x60\x4c\x97\x0a\x87\xa1\x34\x85\xc6\x2b\x05\xe1\x0f\x31\x4f\xc3\x14\x5c\x84\xcf\x77\x9c\x27\xd5\x48\xd0\x85\x76\x89\xc6\x2b\x05\xda\x6b\x81\x00\x1b\xde\xfb\xf4\xee\xab\xb7\x10\x40\xc0\x72\xbf\x9c\xd8\x41\x69\xdc\xe0\x81\x91\x41\x93\xc1\xef\xb2\xae\x6c\xe8\x81\xc2\x2e\x9f\x03\x1f\x28\xcc\x4d\x1a\x2c\xc0\x5d\xd9\xd2\x9f\x68\xae\x26\xad\xa9\xf1\xa2\x80\x04\x3a\xe1\x5c\x72\xc7\xf1\x31\xc2\x2c\x40\x17\xdf\x22\x54\x84\xa2\xc6\xa7\x08\x73\xf3\xc8\x50\x47\xbe\xa4\x18\x35\x7a\x5d\x3d\xc3\x0c\x8e\x68\x41\xd5\x18\x03\xad\x78\xa8\x68\x46\x17\xfe\x31\x9a\xdc\xa9\x12\x63\x00\x6f\x4d\xeb\xc5\x84\x6b\x3d\x72\xac\x6d\x3a\x9a\xd4\x22\xbe\x39\x39\x5c\xcb\xfb\xc7\xd7\xac\x4f\x25\xe0\x47\x4f\x39\x6e\xf4\x57\xf5\xab\xf3\x42\x80\x04\x10\x42\xaf\x4e\xab\xbb\x00\x7d\x15\x01\xa8\xa3\xc3\xf1\x7a\x69\xa5\xe0\xed\xa2\x22\x48\x50\x10\x11\xd6\x75\x8b\x23\x80\x08\x2b\xf2\xed\x06\x10\x61\xd3\x87\x14\xbd\x99\xa8\x3e\xe9\xd1\xc4\x61\x0a\x5d\xd2\x74\xe0\xd9\xc4\x59\xc5\x0d\x04\x92\x5d\x4f\x29\x37\xd2\x5c\x03\xf0\x7b\x9a\xf0\xae\x1b\x80\xdd\x24\xfd\x3e\x43\x54\xc6\x87\xea\x45\x00\x90\xaf\x79\xe4\x23\x8b\x32\x5a\xf3\x95\xc5\x59\x2f\x97\x82\xab\x02\x5a\xe1\x9d\x57\x05\xc2\x14\x3a\x31\x9d\x93\x33\xa1\x86\xd2\x01\x28\x8b\x44\x87\xcb\xef\x12\xf7\x23\xd6\xda\xac\x92\x75\x80\x99\x4d\x6b\xf0\x9d\x57\x05\xb4\x12\xf1\x26\xc6\xac\x5a\x0a\x08\xc1\x3e\x7d\x44\x41\x3c\xc6\x59\x25\x23\x01\x4f\x2b\xba\x0d\x10\x9d\xb7\x5b\xb4\x4a\x3b\xf9\x54\x77\x8b\x02\x58\xb5\x22\x14\x67\x00\xab\x56\x64\x34\x67\x54\xc7\x72\x3d\x1f\xe2\x86\x83\x18\x08\xd8\xb5\x22\x54\x4b\x00\xba\x96\xaa\xdc\x9f\xd1\x89\x36\x72\xdb\x08\x16\xd0\x4e\x08\xec\x5a\xb9\x9e\x9c\x7a\xfd\x4a\xf5\xc3\x6c\xe6\xe3\x4c\x97\xde\xe9\xe6\x28\xaa\xf1\xe5\x62\xd1\x56\x4f\xa9\x62\x1f\x26\x97\x8b\x6b\x06\x1a\xc7\x81\xd7\xe1\xdc\x1e\x3e\x84\xd5\x42\x02\x7e\xe0\xd6\x81\x6d\x02\x40\xb2\x85\xfb\x35\x78\x07\x21\x9c\x13\xc0\x86\xfa\x1b\xd4\xe9\x41\xd7\xa5\x38\x0c\x20\xb7\xd2\xb4\x4e\x06\x2f\x21\xa8\xe1\x83\x97\x10\xc4\x37\xc0\xb8\x85\x77\x8d\x21\xdc\xa4\x1b\x83\x8b\x14\xd5\x7d\x62\x0f\xf5\x5d\xb0\x87\xaa\x01\x17\x12\x7c\xce\x01\xc2\x2d\x6c\x11\x02\xc0\xad\xf8\x40\x0e\x7c\x5b\x58\x2a\x8c\xc3\xed\x61\xeb\x14\x9e\xf5\x0a\x5b\xa7\x06\xdd\x4c\xd3\xd5\x53\xa1\x28\xd9\x64\xa0\xa5\xa6\x16\xfa\xeb\x52\xd9\x43\xa7\xe1\x86\x4b\x75\x6b\xb0\xa0\xc5\x62\x04\xc6\xcd\xde\xdd\x38\x3a\x22\xd5\x80\x85\x4e\x79\xd6\x16\x3b\xa5\x0f\xe1\x98\xf0\xee\x36\xe8\x19\x97\x82\x8c\x80\x84\xd9\xa3\x7d\xd6\x42\x69\xd2\x74\x10\x89\x34\xcc\xee\x0c\x44\xaa\xb8\x52\x87\x64\x68\x55\x8f\x0d\xbd\xa2\x52\xcb\x80\xae\x4b\x0a\x34\xd6\xf4\xa8\x99\x42\x4d\x35\x3e\x6a\x16\x36\x2c\x0d\x05\x2e\xd4\x96\x02\x44\x5d\xb1\x25\x13\x2f\x0b\x94\xf0\xe4\x6c\x78\xf1\x3d\x54\x40\xc7\x78\x63\xd2\x4b\x35\xd1\x5c\x25\x9c\x24\xc3\x59\xe9\x24\x71\x1a\x2e\x4f\x98\x8b\xb0\x16\xac\x31\x21\x84\x5b\x09\x71\x0a\x62\xb8\x85\xb5\x22\xc0\xf4\xc2\xbb\x34\xa2\xb8\x85\x75\x24\xc2\xf4\x14\x83\xad\x31\x2e\x6b\x09\x0d\x0e\x62\xba\x15\xc1\xd8\xf9\x2e\x5b\x89\xf0\x87\x6c\xa8\x29\x34\x46\xdb\x09\x70\x7a\x45\x58\xc3\x60\x74\xed\xae\x2b\x99\x31\x83\xad\x51\x85\xbc\x56\x23\xb9\x8c\xf8\x6d\xc5\xd6\x49\x04\x70\x0b\xf9\xbe\x62\xf2\x5a\x4d\xb8\x14\x0c\xf0\xf4\x77\x1b\x94\xfa\x1b\x6c\x9a\x73\xe2\x1e\xcd\x74\x29\x37\xcd\xc8\xce\x8a\x0b\x40\xe2\x0d\x02\xfe\x7a\xd6\xa9\x8b\xe1\xde\x46\x91\x61\x7c\xca\x87\xe6\x72\xf5\x48\xd4\x74\xe6\x46\x36\x53\xbf\x16\xae\xfd\x48\x56\xe3\x95\xa0\x5a\xdc\xcb\xc5\x5b\x1d\x1e\x57\x62\x75\xbc\x53\xf1\x91\xba\x16\x1e\xd9\x23\x91\x6b\x31\x25\x67\x97\xb2\xd2\x53\x6a\xb3\x18\x00\x82\xb5\xb8\x6b\xf4\x94\xda\xf6\x05\x80\x60\xb5\x0d\x87\x00\xc1\xae\x0b\x9f\x31\x75\x49\xc6\xe3\xc0\x4b\x32\x62\x42\x02\x06\x2f\x6b\x0e\x93\x77\x66\x3c\x7f\xba\x24\x13\xce\xcb\x4b\x32\x9e\xa5\xc3\xa3\x55\x0e\x29\x3e\xff\x7b\x12\x93\x48\x42\x54\xa6\x53\x33\xc9\x2c\xb2\x70\x3c\xa7\x48\x6e\x21\x4e\xe4\x1d\x9f\xf9\xbd\xbb\x50\x2f\xf5\x5d\xb6\x0f\x32\x44\xdc\x65\x9d\x21\x74\xc3\x46\xac\x43\x04\xe2\x65\x53\x1f\x21\x88\x5d\xd7\xc1\xf9\xac\x5f\xb5\x4d\x32\x64\x6c\xd3\x30\x05\x03\x8a\x3e\x9f\x12\xf3\x3e\xb5\xae\x03\xa8\x33\x9b\x3a\x43\x2f\x7b\xc9\xb5\x00\x18\x62\xb5\x45\x0d\x31\xe7\x4e\x1b\x54\xcd\x91\xc1\xd5\xb6\x10\x46\x9d\xbb\xbc\x5f\x47\xe8\x6d\x48\x75\x4e\x10\x64\xd9\xed\x88\x35\x4c\xc2\xe1\xe8\xdd\x41\x5f\x35\x0a\x80\x0d\xab\x59\x34\x96\x5c\x01\x2a\x69\xe1\x4a\x50\x37\x85\x5b\x3f\x3a\x0f\x86\x9e\xef\x97\x6b\x02\x30\xc5\x6a\xa3\x1a\x50\x8a\xd5\xa6\xb2\x20\x66\x5e\xe7\x63\xa0\x14\xab\x4d\x37\x40\x29\x56\xf9\x83\x03\x28\xc5\x53\xa8\x86\x7a\x09\x4c\xed\xd4\x0f\xf2\xaa\x23\x5b\xfd\xd2\xa4\x6d\xe0\xfb\xba\x29\x3a\x03\xb4\x85\x85\x5c\x1c\xf2\xbf\x04\xd7\x88\x99\x01\x8b\xc2\x12\x06\x08\xc7\xf3\xa5\xba\xb9\xd9\x2f\x35\x68\x73\x1a\x5c\x8c\x6c\xe5\x26\xe9\x1e\x68\xfe\x92\x38\x9c\xcb\xa9\xe8\x4b\x33\xdf\xe3\xd0\x98\x7c\x88\x40\x7c\xbe\xa6\xab\xa9\x7a\xfd\x31\xf9\xf8\xb1\xe8\xd9\xf0\x79\x6f\xd1\xb5\x21\x4f\x74\x10\x21\x99\x04\x94\x09\x46\xef\xd3\x05\xe0\x58\x74\x75\x08\x29\x13\x08\xe0\xd7\x74\x3b\x36\x14\xb2\x2f\xba\x0b\x42\x3c\x18\x61\x48\x82\x11\xfc\x5a\x54\x7f\x7a\x03\x1f\xe6\x5a\x70\x71\x4b\x4c\x04\xa8\x65\xd3\x65\xdd\x58\x7c\xf2\xde\x33\xbc\x78\xcd\x4c\x98\xad\x40\xb4\xbe\x56\x34\xc3\xc4\x56\xe6\x5f\x3f\x9d\xbc\x6d\xa5\x5a\xe0\x9f\xce\xbf\x56\xb3\x48\xfa\xdb\x17\x49\x35\x1f\xab\x20\x3f\x9d\xe3\x83\x32\x36\x34\x32\xa0\x5f\xed\x62\x50\x01\x2e\xb3\x66\x92\x18\xcb\xd6\x3c\x12\x87\xd3\x5b\xf5\xf0\x23\x88\x67\x95\x34\xe3\x4b\x3c\x59\x90\xeb\x20\xe2\x32\xd7\xe4\x54\xb4\xa9\x66\x17\xf4\x66\xaa\x1a\x81\xb7\xa4\xad\x57\x2d\xda\xd7\x74\x2b\x44\x0f\x73\x0e\x81\x21\x62\x81\x83\xb3\x0d\xcc\x88\x0b\x78\x48\x95\x74\x38\xb8\xf5\x27\xb1\x31\x51\x8d\x00\xde\xa1\x57\x17\x34\x40\x69\xd0\xf4\xc0\xe7\x93\xf8\x42\xa2\x3f\xe4\xd3\x0c\xe2\x00\x20\x3d\x9b\x80\x78\x7c\xfc\xb3\x09\xe9\x19\x40\x7a\x36\x21\x93\xf4\x12\x68\xb9\xa4\x15\x11\xea\x59\x92\xb6\x3a\x3e\x66\x5e\x92\xf6\x24\x04\x0b\x54\x24\xf3\x43\x05\xa8\x22\x6a\x81\xfa\x0d\xe6\x92\x4d\xf7\x88\x1d\x57\xc0\x8c\xb6\xf9\x50\x6f\xc6\x60\x52\x25\x81\x70\xb6\x9a\x33\x3e\x36\x5a\xec\xc7\xe2\x63\xa3\xa5\xc9\xf2\xc0\x57\x8c\xa6\x2e\xdb\x07\x80\xa1\x7a\x51\xfc\x50\xeb\xc7\xd7\x7c\x72\xc2\xa1\x9f\x45\x1c\x0d\xe3\x29\x12\x1e\x73\x57\x47\x00\xa0\x7a\x0f\x00\xa0\x47\x91\x11\x0a\xc5\x5a\x7c\xe5\xc8\x41\x0e\x82\xa1\xab\x93\x47\x86\xbe\x66\x09\x75\xbc\x80\xd4\xf3\x93\x06\x37\xa5\x47\x94\x1e\xe4\x27\x27\x77\x2f\xed\x2b\x08\x5f\xd8\xb3\x96\xdf\x96\xd3\x58\x9b\x19\xdf\x46\x4a\x4e\xd4\x4b\xb1\xda\xb8\x19\x6e\xb0\x6a\xa5\x6e\xc6\xd1\x6a\xce\xaa\x30\xa8\xa2\x18\x84\xf9\x72\x22\x74\x99\xa1\x45\xb0\xe5\x1c\x20\xc5\x47\x93\xba\x20\xec\x81\x67\x91\x14\x9b\xbd\xf1\xc1\xd5\x2c\x58\x4d\x00\x25\x9a\x7b\x72\x1a\x0c\x90\x1a\x3a\x04\x0f\xcc\x3d\x99\xa2\x61\x21\x44\xe1\x84\xae\xd5\x8c\xa8\x80\x61\xcc\x00\x70\xa1\x47\xb2\xaa\xd0\x33\xf7\xd5\x6c\x8c\xb0\x80\x55\x80\xb0\x78\x79\xd3\x55\xa9\xc2\x1e\x68\xf7\x7e\xe9\x62\xeb\x53\x10\xbd\x0c\xcd\xdf\xde\xbc\x60\x51\x44\x1e\x8e\x90\xcb\xe5\xc5\x3b\x41\x92\x18\x08\x22\x18\x5a\x9d\x08\x21\x18\x32\xd5\x03\xe5\xd9\x7d\x2a\x02\xca\x53\x97\x02\xf8\x40\x6c\x54\x97\x87\x68\x89\xe1\xaf\x8e\x4e\x2e\xa9\x41\xbc\xa7\x24\x01\x01\x9e\xed\xc9\x88\xcb\xd5\x5a\x2f\x2f\x06\xa8\x74\x57\xe9\xbc\x77\x7b\x09\xa9\x0b\x77\x8d\xfb\x5a\xf1\x87\x88\x4e\x2c\xb4\x97\x9e\x9b\x55\xcc\x9f\x20\x4e\x53\x17\xb9\x82\x40\xcd\xee\xad\x49\x4f\xd1\xda\x18\xfb\x56\xb0\x5f\x53\x34\x3f\x49\x8d\x65\x48\x40\x3b\xde\x19\x04\x50\xf7\x3e\xe2\x4d\x97\xfd\x53\xc9\x46\x9a\x73\x02\x21\xf2\x34\x07\xca\xc6\xf3\x1d\xfb\x71\x89\xc2\xf6\x2c\x5f\xdb\x1b\x5a\x5d\x92\xab\x91\x60\xce\xe4\xa6\x01\x0c\x68\x77\x26\xe1\x9b\xb3\x88\xf5\x88\xdf\x7c\x6c\x4c\x8c\xed\x57\x47\x76\x41\x1f\x46\x54\x57\xe6\xa5\x57\xe8\x45\xc1\xa5\xdc\x4d\xc1\x96\x22\x4b\x12\xb1\x98\x4f\xa9\xc4\x62\x26\x9d\x0e\xde\x80\x9a\xd4\xee\x44\xdc\x66\x91\x05\xe4\xcd\x57\x42\x74\x94\x55\xd0\xbe\xe6\x9c\x70\x29\x37\x57\x08\xdf\xb7\x36\x53\x84\xe9\xeb\x55\x3b\xfa\x9b\x37\x92\xda\xb7\xe1\xa2\x4f\x56\xf4\x42\x1b\xf8\x9b\xb7\x95\xa4\x4f\x32\x68\x9f\x6e\x07\xc6\x9b\xc8\x29\xc9\x0c\x06\xe6\x9b\xcf\x48\x01\x57\x5e\xbb\x29\x9c\xde\x2f\xb7\x06\xed\x96\x56\x48\x84\xe7\xd4\xbd\x9f\x60\xf4\xbd\x3a\xd5\x2b\x86\xdf\xd3\xdd\xc1\xb8\xe9\x7c\xd4\x97\x0c\xb8\x67\x13\x1c\x03\xe7\x4d\x21\x4e\x83\xb1\xf2\x9a\xc0\xfb\xc1\x58\x79\xd6\x5a\x6f\xb0\x95\xc0\x5c\x71\xcb\xc1\xa8\x3e\x23\x74\x5e\x17\x90\x2c\x18\xcb\xbf\x0b\xd8\x19\x7a\x9c\x4d\x27\x39\x42\x47\x05\x81\x0b\x46\xcb\x13\x84\x8d\x8f\x2f\xf7\xe9\xd6\xc1\xc1\x2e\x14\x5c\x10\x3a\x3a\xdd\x54\x44\xcb\x13\xaa\x2e\x10\x2d\xaf\x0b\x22\x17\x37\x2f\xc5\x1a\x5b\x06\x24\x69\x17\x94\x4d\x0f\x3a\xfb\x28\xc0\x67\x4c\xa7\x6e\xec\xc4\xad\xbd\x49\xf5\xd3\x8d\xa4\x2d\x12\x40\xd2\x2e\xb4\x5e\x00\x48\xda\x85\xa9\x8b\x9b\xef\x4b\x8c\x87\x64\x6c\x5d\xa9\xbd\x0a\xb3\x27\xb1\x88\xd8\x79\x29\x2c\x2e\x88\xe2\x9c\xf6\x2a\x22\x78\x5e\xf7\xd6\x00\x4c\xa7\xde\x1f\x3e\x14\x1c\x79\x6e\x3a\x1c\x39\xd9\xa3\xba\xe1\x0f\xd3\x42\xba\xf9\xf2\x42\x9d\x2e\x14\xd1\xa7\x3c\x91\x1b\x17\x4d\xcc\x10\x7c\x1d\xc1\x1b\xe9\x4d\xef\xa4\x46\x00\x58\xd1\x91\xb5\x37\x02\x2a\x9a\xd3\x93\x86\x10\x5a\xaa\x5f\x6f\xba\xea\x06\x55\x7c\x10\x0c\x2a\x6b\x79\x22\x98\xde\xc8\x3a\x5a\x32\x98\x5e\xeb\x1a\x80\x0f\xaf\xc8\x6a\x74\x00\x17\xd5\xdb\x92\x87\xe2\xc8\xf9\x43\xdc\x2c\x12\xaf\x00\x3c\x3a\xb2\xbf\xa3\x5f\x51\x8a\xef\x87\x8e\x44\x7f\xc7\x6b\x71\xdd\x39\xf9\xb6\xb4\x34\x75\x04\xb7\x1b\x66\xb9\x8f\x77\x34\xe7\xe5\x25\x50\x49\x56\xa2\x43\xbb\xc4\x3e\xd0\xa1\x59\x57\x5b\xe3\x43\x8c\xf9\x93\x06\x8f\x8c\x98\x05\xd8\xd0\x61\x85\xea\x43\x8f\x8c\x16\x3d\xd0\xa1\x63\x6a\x4f\xff\xe8\x89\x9b\x70\xa1\xb8\x99\xf1\x54\x01\x90\x7e\x76\x56\x34\x5c\x8a\x02\x90\xa0\xc3\xab\x8a\x50\x50\x2b\x6d\x9f\xa5\x57\xbf\x34\x70\xf0\x3f\x0a\x53\x1c\x80\x83\x1a\xd6\xcc\x57\xc9\x1d\xa1\x2e\x08\x08\xf5\x22\x63\xc0\x3c\xaf\x23\xe2\x43\xab\xfb\x0b\x46\xb5\x70\x00\x3e\x34\xf7\xa7\x86\x89\x34\xe7\x84\x7e\xe3\xc9\x87\x13\xbd\x4b\xc3\xfb\xc8\x1b\xe9\x34\x76\xd0\xb5\xb3\x83\xea\xbc\xb0\xa4\x2c\x86\xcf\xf9\x8c\xb3\xfe\xbf\x93\xd5\x0b\xb0\x53\x5f\x2a\x59\x78\x5b\x2d\x33\x28\xfd\xa1\x88\xe0\xe4\xba\x5d\xc0\xa1\x8e\x49\x31\xb2\x10\xae\x2f\xf3\x71\x87\x43\xc1\xab\x47\x7d\x66\x31\x5c\x9f\x4c\xf7\x0b\xb8\x54\x45\xa1\x3f\x14\x1c\xee\x5c\x43\x0b\xc8\xd4\xcc\x07\x11\x1a\xdf\x1d\x52\x84\xf2\x43\xa1\xc3\xd9\xb5\xa3\xc3\x4f\x0f\x39\xa3\xca\x19\x9c\x42\xd5\x4e\xa0\xb4\xc6\x7b\x01\x78\x3a\x84\x24\x5e\x7c\xd6\x38\xb4\xad\xf3\xe9\xf8\xa9\x4b\x7f\x0b\xd0\xd2\x59\xb3\xda\x8d\x78\x50\xf5\x29\xf5\x28\x94\x32\xdd\x2f\x40\x4b\x0d\x60\x5a\x84\x96\xf6\xe6\x3a\xce\x4a\x28\xb2\x9d\x2f\x60\x4b\x8b\x6c\xc7\xeb\xd2\x6b\xc0\x97\x4a\x85\x43\x48\x07\xc9\x05\xa0\x69\xb9\x9e\x62\xc8\x52\x1a\x1b\x2f\x05\xf5\x0a\xe0\x7c\x81\xdd\x17\x90\xa6\x53\x27\xce\x05\xa4\xe9\x64\x08\xd4\x43\xc1\x21\xf4\x7c\xc7\x4e\xb9\x50\x78\x14\x3d\xa5\x0b\x9d\xca\x6e\x0c\xbc\x5a\x21\x6a\x53\xa0\xa8\xfb\x1b\xcd\x36\xd7\x6c\x36\x5b\x53\x83\x90\x66\xdd\xa5\x20\x78\x79\x35\x47\x6d\xb6\x5a\x63\x01\xa0\x74\xf5\x94\x6e\xb4\xda\xb3\x26\x33\x4b\x51\x27\x00\xa3\xae\x0f\x05\x37\x8a\x47\x86\xae\x4f\xf1\x09\xd1\xa2\x4d\x67\xe6\x95\xf8\x72\x89\xee\xff\x2c\xbe\x3a\xd3\x2e\x6e\xc5\x0b\xc0\xcf\xa9\xa0\x07\x0b\x81\xf8\x42\xd8\xda\x05\x18\x68\x91\x9d\x74\x01\x06\x5a\x74\x3e\x5c\x40\x81\x16\x05\x6a\x5b\x89\x5e\x9d\xe4\x34\xdc\x5b\xd7\xcc\x00\x03\x1a\xb2\x07\xad\x44\x3f\x4e\x33\x85\x17\x18\xba\x29\xdc\xff\xd4\x32\x01\x5a\xb4\x34\x37\x1b\xf6\x70\x45\xa3\x5c\x88\xca\x57\x14\x06\x70\x21\x2a\x5f\x91\x15\x63\x25\xfa\x6d\x92\x4b\x61\x1f\xd4\x5b\xf8\x6d\x92\x7b\xcb\x17\x4e\xc6\x53\x0c\x3b\xa1\x2e\xe1\x4e\xa3\x3c\xbf\x2b\xe9\x32\x91\x16\x2d\xf0\xa9\x45\x41\xeb\x56\xe2\xbd\x55\x2d\x13\xe0\x53\x43\x08\xe0\x05\x7c\x6a\x08\x82\xbc\x80\x41\x0d\x01\x6b\x17\x31\xa8\x6d\x3c\x89\x18\xe0\xae\x61\x53\x20\x3e\xcf\x22\xe3\xa6\x75\x53\x18\x53\x2d\x5a\xc0\x4c\x43\xe7\xe0\x95\x78\xc0\x91\xc9\x7a\x11\x67\x6a\xe0\xd5\x02\xd0\x34\x84\x4a\x59\x00\x9a\x56\x9d\x58\x17\x80\xa6\x21\x69\xbb\x12\x8c\x7e\x97\xdb\x4a\xc7\x8d\x04\x21\xa0\xa5\x21\xe9\xbe\x12\xfd\x36\x53\x63\x73\x58\xb3\x5e\x9e\xef\x23\x97\x1d\x25\x61\x25\xfa\x6d\x68\xc2\x5b\x99\x71\xa3\x7e\x03\x96\x6f\x65\x3a\x75\x68\xec\x5b\x99\x4e\x1d\xf5\x10\x01\xfd\xf4\x66\xe5\xa1\xd8\x25\xa7\xa1\x4b\xd3\x14\x1c\x13\xe1\x9c\x08\x76\x11\x2e\x93\x7e\x2a\xa7\x2d\x94\xd2\x45\xe1\xee\x29\x0d\x91\x0b\xb0\xd3\x90\x46\xb6\x00\x3b\x0d\x6d\x82\x0b\xa8\xd3\x10\x5c\x67\x01\x75\x1a\x3a\xac\x2f\xa2\x4e\x67\x68\x2c\x00\x3b\xad\xb2\xb0\x2c\xa0\x4e\x43\x5a\xc7\x22\xcc\xf4\x61\xa2\xcc\xb0\x1c\x34\xdb\xaf\xcc\x87\x45\x75\xf0\x5d\x59\xcf\x7b\x84\x3f\x45\x94\x0e\x8f\x14\xaf\x03\xd4\xa7\x5c\x18\xf1\x9f\x82\xe0\xa1\x70\x63\x19\x3b\xbd\xba\x79\x50\x84\xaf\xea\x26\xf0\x62\x66\xf5\x28\x33\xe6\x83\x4e\x66\x0b\x48\xd3\x5a\x3c\x40\x3a\x99\x3d\x89\x8c\x8c\xe5\x2f\xe1\x5f\x71\x6b\xf5\xc0\xb7\x27\x81\x17\xb9\xbd\x37\x10\x6c\x7a\x55\x4f\x03\xdd\x41\xe6\x1e\x5e\x01\xae\x1e\x40\xfa\xeb\xb3\xab\xd9\x6a\xbe\x9a\x84\x3b\xc0\xc5\x7c\x40\xf7\x65\xf5\x14\x6e\x86\xce\x94\x18\x02\x18\x34\xa5\xab\xf8\xd3\xcd\xf3\xa9\x53\x69\xf1\x28\xae\x47\xa6\x7b\xa7\xde\x30\xaa\xfb\xd3\x0f\xf3\xb2\xb3\xc0\x80\x56\x1d\x26\x56\x11\x70\x9f\x87\xed\x85\x68\x80\x55\x67\xa2\x55\x84\xd5\x27\x06\x73\x01\x05\xaa\x90\xe5\x87\x22\x58\x5f\x9b\x16\x61\xa0\xe9\xd2\xd6\x20\x1c\xe8\xa4\xd3\x64\x15\x1a\xb0\x9b\xf3\xca\xfe\xae\x44\xfa\x6d\x14\xff\x6a\x21\xea\x5f\xbb\xfc\x65\xc8\xfe\xae\x4f\x0f\xbf\xb6\x8b\xc7\xe6\x85\x20\x80\x27\xd1\x24\xcd\xef\x6a\x6e\xd0\xfc\x1e\x26\xf1\x1c\x54\x36\x15\xa0\x5c\x25\xed\xca\x12\x5e\x08\x03\x78\x48\xf5\x94\xa8\x69\x01\xb0\xf4\x1c\x62\xf6\xae\x5b\xe8\xb2\x14\x92\x6a\x01\x61\xaa\x47\x81\x0f\x25\xcb\xb1\x3a\xb3\x68\x39\x56\x73\xc1\xa1\xa5\x68\xd6\x0a\xaf\x06\x14\x0f\x28\xae\x75\xea\xb6\xf2\x02\x72\xb4\x7b\x22\xa0\x63\x5f\x26\x68\x2d\x11\xc5\xab\x79\xba\xe9\xbd\x0a\xc5\xf0\x70\x29\x7a\x6b\x75\xaa\xe9\xb0\x34\x59\x3f\x2c\x74\xa1\x74\x4f\x03\xe4\x69\x72\x2f\x29\x4f\x93\xcb\xb9\x21\x27\x34\x3e\x5b\x6b\x80\xfd\xa8\x3a\xd9\x8b\x73\x81\x16\xed\xf2\x6a\x2d\x3e\x3a\xeb\xc8\xb2\xab\x32\x46\x8d\xce\x27\x7c\x2d\xb2\x2b\x52\xc8\xe2\xdb\x6c\x8e\x90\xbb\x00\x0a\x6d\xd5\x1f\xe2\x36\x44\x37\x85\xb3\xf4\x6f\x00\xfa\x2d\x21\x44\x69\x0e\x5f\x42\x88\x9a\x52\x3c\x73\xed\x68\x00\x85\x9e\x89\xae\x22\x2b\xac\xee\x6a\x1c\x2c\x04\xc5\x1f\x1e\xed\x2a\x39\x1f\x8c\xd6\xd5\x14\xed\x25\xea\x43\xf0\x69\xd8\xcb\x89\x50\x58\x05\xa5\x5c\x55\x47\x37\x75\x0a\xde\xc1\xa7\x31\x70\x07\x2a\xb4\x11\x5f\xca\xac\xd7\xf3\x1d\x9e\x1d\xd0\x18\xe2\x38\x26\x61\x45\xa4\xe8\xe5\x02\x71\x01\xd2\xd9\xf8\x2a\x94\x4b\xc7\xfd\x47\x35\x12\xfa\xa7\x34\x10\x80\x44\xbb\xa2\x04\x2e\xc0\x42\x75\xb8\x5b\x7c\xa4\xdc\x51\x91\x57\x55\xdc\x34\x0f\x10\x10\xeb\x42\xea\xe8\xc5\x4d\x45\xae\x5a\x8a\xab\x27\x0e\x01\xda\x32\x59\x89\x07\xda\xb2\x57\x89\x41\x42\x28\xad\x43\x37\xe2\x82\xe9\xda\x58\x4d\xc7\xf0\x29\x0a\xca\x91\xd3\x08\x53\x1b\x2a\x45\x57\x38\x55\x7b\x30\x76\x9f\xea\x0b\xd6\x5e\x45\x81\x21\xa5\x61\x35\xc6\xff\x7e\x4a\xe1\x41\x48\x94\x4e\x17\x2a\x93\x68\x33\x71\x2e\x90\x8f\xb9\x3f\x39\x1b\xed\xb2\xaa\x02\x20\x32\xc5\x84\x5e\x80\x37\x56\x5d\xde\xe4\x6b\xa2\xf5\x7a\x72\x52\xc1\x31\x85\x80\x2b\x52\x7e\xf0\xe8\x7b\x7d\x1a\x8a\x65\x9f\x2d\xfa\x88\x83\x2c\x4f\xc3\x31\x51\xa5\x48\x36\x37\xbd\x46\x27\xa2\x9e\x19\xd5\xa8\xf1\xd5\xd4\xf0\x90\xe2\xd0\x90\x4c\xe0\x3d\x12\xf7\x17\xd1\x67\x9a\xda\x02\x74\x4d\x73\x0a\xa3\xae\xa8\xd1\xe2\x02\xcd\x34\x0e\x0c\x4f\x23\x11\xf9\xe9\x32\x85\xe8\x75\xe2\x4e\x00\x27\xbb\x0f\x6b\x00\x4e\x0a\x9f\xb3\x80\x9b\x8c\xe6\x7c\x47\xe9\xa5\xb5\x6f\x01\x35\xc9\xf7\xab\x0f\x81\xa0\x13\x12\x51\x7c\x8c\xb1\xc9\x03\xb9\x3a\xed\xd4\xd5\x85\x60\xf7\xac\x4e\x83\x93\xa6\x38\x8d\xaf\xc3\x71\xe4\x00\x7e\xec\x82\x89\x2f\x06\xd5\x53\x24\xa3\xd5\xe9\x6a\x95\x6c\xef\xbc\x66\x29\xbf\xd6\xea\xdc\x8b\xaa\x29\x38\x90\x8a\xb3\xf2\xfd\x3c\x55\x0f\xbd\x2a\xe9\x60\xc4\xb8\x7a\x2d\x4f\xd7\x8f\x96\xba\x6d\xc4\x1a\x3c\x6d\x83\xff\xd0\x4a\x35\xa2\xec\x75\x5d\x4d\xe7\xc3\xb3\x3d\xbb\xd4\x45\xb3\xb9\x1a\x4e\xdc\x41\xf5\x77\xd8\x52\xab\xbf\x43\x68\xcf\xea\x9c\x14\xcf\xea\x05\xdd\x60\xcf\x77\x50\x07\x3c\x34\xd0\x99\xda\xf8\x0d\x90\xbe\xc5\x68\x7d\x3e\x5f\x77\x6c\x67\x3e\x8c\x12\xff\xd8\x14\x8e\x70\x31\x78\x9f\xec\x87\xab\xd3\xbe\x2d\x65\x85\xb1\xfb\x7c\x86\xee\xbc\xca\xa6\xd3\x40\xa7\xed\x5b\xa7\xc6\x4e\xdb\xf7\x70\x15\xb2\xe0\xab\x57\x7c\xca\x6b\x9a\x53\xf8\xc8\x42\x72\xa9\xb8\xda\x36\x5c\x3f\x74\x9c\xe4\xb6\x61\x47\x1a\xce\x09\xc3\xb8\x36\xda\x2e\x6b\xa6\x5b\xf3\xe1\xc3\x24\x4c\x1c\xb4\x8b\xd3\xba\xbd\x06\xef\xb6\xa9\xc3\x40\x4d\x3a\x4e\xd0\x1a\xb4\x66\xda\xbc\x33\xf8\x74\x78\x31\xd5\xf9\x62\xb9\x28\x38\x0c\xa7\x8b\x81\x5b\x42\xc7\x0a\x85\x06\xfc\xb5\x18\x3e\xc6\xef\xac\x7c\xf7\xdd\x59\xd9\xa9\x26\xea\xcd\xd7\x8c\x45\xe1\xbe\xde\x30\x05\x9f\x85\x74\xce\xc1\x2b\xf4\xd9\x14\x9c\x2b\xae\x8f\x10\x05\x09\x47\xc6\x05\xb4\xb1\x63\x48\x18\x0f\x51\x98\xa8\xe9\xef\x78\x09\x42\x1d\x0c\x75\xc2\x1f\xe2\xb6\x98\x54\xeb\x41\xc3\x7b\x76\x31\xbc\x84\xe4\x62\xa8\x2b\xb8\xfa\x1b\x94\x4a\xc1\xa2\xd1\x1d\xbc\xc5\x18\x81\xde\xd6\x87\x6f\x6f\x88\x82\xea\xe4\x61\xe2\x55\x0e\x8f\x36\x6f\xbc\xe9\xf0\x33\x74\x77\xc3\x39\xe1\x2e\x10\x97\x12\x19\xe9\x23\xd5\x20\x98\xdd\x8a\x1d\x70\x92\x39\x3d\x85\xa2\xd9\xc5\xc5\xb0\xd9\x4e\xc3\xd2\xef\x1e\x7c\x2e\x1a\xc5\x69\x5d\xc0\x50\x76\x8b\x71\x40\x28\xfb\xf4\xb0\x61\x2b\xf0\x96\x36\xa8\x0f\x6a\x7d\x03\x5e\xd9\xa7\xd9\x8b\xf1\x0a\x3d\xf7\xd8\x0c\xa6\x79\x86\x6f\x61\xca\xd3\xb9\x06\xa3\x5b\x59\x01\x04\xda\xb2\xdb\x2a\x68\xb4\xa5\x86\x18\x8b\xc6\x66\x4f\x80\x2d\xfb\x34\x0b\x63\x7f\x98\x4f\x29\xbc\x10\x45\x0a\x60\xcb\xee\x6d\x6b\xf2\x5a\x9b\x8e\x64\x8c\x89\xd8\x84\xe4\x5f\x53\xcf\x9b\x98\x82\xd9\x33\x5c\x0c\xf4\x89\x27\x8d\xee\x89\x70\xa9\x18\x7f\xb5\x14\x6f\xe3\xa6\xa6\x8b\x64\x7c\x7e\x7b\x28\xc4\xed\x9a\x7c\xa5\x44\x1c\x36\xc9\xe0\x53\x26\x2b\x00\x2c\x73\x72\x25\xb4\xfa\xbb\x1f\x41\x4f\x4a\x88\x82\x43\x42\xac\x32\xf9\x30\x89\xf8\x9d\x8f\xe4\x66\x89\x17\xbd\x92\xeb\x11\x9f\x8c\x8c\xf7\x7c\x48\xc6\x71\x15\x50\x78\xa7\x73\x42\xe1\x75\xbb\xa1\x70\xa6\xef\xdf\x9e\x3d\x59\x19\x32\x4b\xa2\x60\xf2\xa5\x12\xad\x37\x86\x62\xec\x82\x07\xac\xc9\xab\x73\x9e\x0f\x1c\x73\xda\xd4\x46\x31\x79\x3f\x4e\xab\x83\x48\xcc\xa6\x0b\x72\x6b\x72\x09\x74\x8f\x24\xcd\x4f\xd3\xa9\xbc\xe9\xa6\xe5\x02\x78\xa5\x6f\xc8\x2d\xa0\x2b\xb3\x62\x61\xad\x49\x03\xa7\x59\x80\xa6\xfe\x62\x0a\xfe\x0a\x29\x0d\x08\xb8\x98\xfb\x53\xca\x9b\x76\x49\x17\x03\xf3\xb6\x04\x35\xd0\x93\xd9\x87\xb0\xe0\xe5\x22\xc9\x0a\x60\x27\xc7\xec\xa6\xe0\xa1\xa8\xce\x09\x83\xbd\x36\xd1\xa0\xd4\x16\x5c\x62\x05\x2d\xf6\xda\x37\x83\x16\xfb\xe6\xac\x68\x37\x9d\xfd\x2b\x08\xc1\x28\x6e\x0c\x2c\xf6\xd5\x69\x50\x4d\x9b\xcb\x84\x8d\x5e\xda\x59\xd0\x2a\xaf\xdd\x3e\x70\x61\x68\xca\x8e\xc0\xb0\x8d\x53\x8a\x10\x20\x92\x43\x71\x4f\x96\x20\x92\x0a\x5e\xb1\x18\xc5\xd1\xcb\x11\x51\x1c\xc7\xd4\x6a\x08\x86\xea\x92\x06\x05\xf8\xa4\x6f\x32\x2f\x86\x74\x6c\xba\x91\xb8\x00\x9f\xcc\xfd\x69\x0d\x3c\x0d\xd5\xad\x41\x2f\xba\xab\x60\x20\x2f\x7f\x87\xa9\x28\xae\x02\x3e\x37\x8f\x1a\xa3\x2a\x69\xee\x09\xb2\x6c\x5d\xcb\x2f\xa8\x8b\x17\x53\x44\x3a\x78\x12\x17\xa7\x46\x5d\xa4\xd3\xcb\x63\xba\x38\x33\x4e\x63\x34\x32\x53\x7c\xf0\x73\xb8\x18\xb2\x94\xeb\x60\x17\xd5\x54\x86\x38\x8f\x64\x12\x7d\xd4\x62\x60\x64\xc8\xf9\x34\xee\xa6\x1c\x57\xb7\xe8\x11\xf3\xc0\x6d\x75\x4b\x23\x07\x7c\xbb\xf5\xe5\xa0\x09\xdf\xa3\xca\xd0\xd3\x42\xfd\x2d\x40\x25\x67\x75\x97\x69\xc2\x37\x4f\x23\x14\x4a\x75\x97\x79\xb3\xc9\x8c\x43\xad\x65\x76\x7f\xf8\x41\x8d\x6c\x1c\x61\x92\x75\x4a\x8b\x22\x4c\xb2\x09\xbf\xb8\x00\x93\x9c\x0a\x7a\xb0\x80\x92\x9c\x0a\xb2\xb0\x08\x8b\x6c\x56\x23\x17\x5f\x91\x12\xac\x7c\x01\x08\x39\x75\x7d\x7d\x01\x07\x39\x15\x66\x61\x2d\x42\x8b\xb4\x72\x17\x7d\x4f\xc4\x44\x2d\x80\x22\xa7\xf0\x14\x0b\xa0\xc8\xb0\x16\xbd\x88\x7f\x0f\x37\x07\xf6\x7e\xfb\x09\x00\x91\x9c\x0a\xd4\xbc\x10\x8d\x72\x56\xb7\x8d\xb7\x94\xaa\x29\xc6\x65\xaa\xfe\x90\x32\x66\x8a\x62\xe4\xd2\x66\x72\x61\xb0\x4c\x6d\xd4\xa8\xa6\xd2\xa1\xa5\xc5\x0a\xe8\xe4\xac\xcf\x77\xf0\xfd\x14\xb7\x06\x9d\x12\x27\x2d\x5a\x9a\x46\xfb\xfe\x45\x97\x45\x8c\x65\x13\xf2\x6c\xe1\xa9\xe4\xa9\x50\x12\x8b\x88\xcb\xb0\xf9\x80\xcf\x23\x0b\xae\xb7\xf8\x3e\xb2\x62\x59\xac\x85\xc3\xaa\x6d\xfc\x8b\x1e\x2d\x0f\x39\x64\x77\x24\x37\x9d\xf7\x50\xfb\xd3\x5a\x72\x96\xbf\x44\xbf\xaa\xd3\xd8\x2f\xa5\x31\x3e\xb7\x96\xef\x92\x1f\x41\x85\xe2\x8e\xd3\xd3\x0d\xdc\x71\x12\x5e\x6d\x01\x87\x19\x3e\x7f\x01\x87\xe9\x80\x20\x8b\x8f\x37\xfb\x38\x02\x18\x66\xd8\x46\xb6\x70\x76\x15\xd2\x61\x01\x94\x19\x3e\xfe\xe0\x21\xe7\x10\xbe\x68\x21\x30\x67\x24\x73\x03\x6e\x01\x36\x73\x3c\x83\xaa\x0e\xe7\x84\xa3\x66\xb8\x06\x78\x46\x24\x01\x01\xe5\x0c\xdb\x3e\x00\xe5\x2c\x02\xb4\xaf\xcd\xd7\xbf\xb5\xe2\x09\xe5\xac\x56\xdb\xf1\xcc\x73\x08\x03\xb1\x80\xe4\x0c\x21\xc1\x16\x42\x78\x86\x00\x8a\x6b\xf3\x5a\x54\x71\xa1\xb8\x16\x35\x9c\x86\x2e\x89\xa5\x80\xdc\x0c\x41\xb4\xd6\xa6\x03\x6d\xb8\x4c\xf8\x9e\xc4\xdf\x7c\x2e\xba\xd9\x3e\xbd\x27\xd1\x3c\x72\xfe\x30\xf4\x67\xd8\x54\x41\x58\x67\x17\xd2\x75\x21\xda\x67\xd8\x83\xbc\x89\xec\x93\x06\x08\x50\x67\x15\x1c\x7c\x6d\xe2\xfc\xa4\xf3\x21\xda\x67\xcc\x27\xe7\x69\xb9\x90\x15\x0b\x88\xcf\xb0\xce\x8b\x57\xa9\x43\x8e\xf7\x45\x00\xe8\x7c\xca\x84\x79\x32\xb9\x76\xf8\x46\xa4\x63\x12\x02\x6a\x85\x1f\x18\xd0\x7a\xb9\x4c\xdc\x7d\xb2\xc2\xbf\x17\x5c\x23\xcf\x77\x95\x52\x4b\x85\x2e\x76\x50\x83\x0a\xcf\x83\x50\xfe\x0b\xef\x5b\x87\xd5\xd8\x2d\x03\x8f\xbf\x43\x97\x24\x44\x19\x4e\x54\x80\x88\xb5\x01\x2b\x9c\x4f\x29\xec\x92\x4b\xa1\xc5\x55\x0d\xe5\x2d\x29\x5b\x37\x36\x43\x57\xd8\xb6\xcd\xe7\xae\x6d\xdf\x62\xa8\xd1\xcb\xce\xde\xcd\xa7\x5a\xa4\xe3\x6e\x3e\xd5\x62\xeb\x17\x23\x8f\x5e\xf5\xf9\x94\xaf\xa3\x7b\x78\xb0\xad\x5c\x3e\x0c\x1b\x77\xaa\xed\x7a\xf3\x56\x4a\xb8\x0d\x74\xf9\xb8\x6b\xd8\x4a\x9a\x1d\x42\x5b\x16\x63\xcd\x2c\xc3\x93\x5e\x36\x01\xbc\x78\x0f\xc5\xa7\x40\x3e\x77\x7d\xf9\xf4\x8c\x07\xae\xd3\xe5\x83\xee\x4b\x2f\x14\x67\x17\x35\xd1\x0a\x97\x44\x37\x4f\x15\xc5\x16\x76\x51\x70\x51\xc9\x50\xcf\xb8\xa7\x53\xaf\x1b\xac\x97\x1e\x25\xd6\xe4\xbf\x88\x41\xb4\xbb\x1a\xc1\x4e\x53\xd3\x6b\x1a\xeb\xa5\xb7\x5c\x24\x42\x5e\x74\x4a\x58\x87\x24\xca\x75\x46\xfe\x3e\xa6\xd3\x7a\xd1\x4c\x74\x69\xc3\x79\xe9\x71\x17\x49\x8e\x57\xc8\xc5\xa2\x36\xea\x75\x17\x69\x99\xc6\xc4\x8a\x41\x5f\x8c\x8c\x3f\xfc\x29\x2f\x73\x54\x7f\xfa\x61\x9c\x4e\xd5\xa3\x5b\x2a\xda\xa0\x5f\x0a\x28\x27\xe1\xc9\x68\xa8\xc9\xee\x0f\x84\x43\x6d\x0a\x82\xbd\x5e\x34\x10\x29\x50\xc0\x7a\xf1\x62\x8a\xee\x75\x2f\xc6\x4a\x4d\x76\x29\xf0\x91\xee\x64\xd3\xf8\x8b\x4f\xc1\x74\x7f\xba\xb9\xc0\xdc\x88\x17\x3f\x75\x13\xdf\x74\xe6\xb8\x4d\x37\x53\xd5\x1f\xfa\x40\x84\x5f\x5d\x80\xda\x36\xfb\xca\x88\xb5\x4d\x76\xd0\x00\x5e\x5b\x6d\x27\x66\xb4\x54\xc5\x4b\x5c\x7c\x6e\x3b\xdb\xbd\x04\x04\x6d\xeb\x1a\xb4\x37\x35\x1e\x05\x52\x5b\xc0\xcc\xb6\xae\xed\xff\x4d\x1b\xb6\xc2\xdf\x2f\x3e\xaa\xed\x7b\xf1\x8b\x10\xda\xa1\xcb\xde\x8b\x10\xda\x62\xaf\x2b\x9f\xd5\x2e\x76\x0a\x10\x44\x5b\x75\x93\x74\xbd\xf5\x18\x70\x31\xa9\x07\x8e\xb3\x48\x4a\x65\xad\x67\x3e\x98\xed\x2f\x81\xb8\xd1\x1a\xc3\x73\xd9\x16\x90\x7a\x2d\x5b\xe2\x99\xef\x5c\xeb\x0e\xfd\x62\x34\x53\x85\xc9\x58\x84\xc9\xda\xae\x2d\x5c\xac\x16\x09\x5f\xaf\xb6\xae\x24\x94\xac\xb6\xa0\x37\x23\x62\xe9\x7c\x48\xcc\xac\x5f\xe2\x5b\x6f\x87\x55\x57\x1d\x8c\xfb\x13\x4e\xc4\x59\x36\x5c\x2a\x80\x77\x4f\x39\xbc\x99\xd7\xdd\x00\x68\x80\x32\xd5\x01\x27\x9b\x9f\xce\xe3\xaa\xb4\xe1\x1f\x6f\x02\xc8\x74\x8e\x44\x7c\xd3\x62\x18\x07\xe3\x9b\x56\xeb\x1f\x6f\xa2\x11\xb2\x13\xa9\xf3\x79\x70\xa0\x48\xcc\x27\x11\x3e\x65\xa9\x23\x80\xcd\x36\x8b\x43\x06\x46\x4d\xdd\x63\xcc\x0b\x49\xbd\x39\xf5\x0d\xe6\xd1\x00\x1c\x71\xd8\x6c\x4c\x02\x4e\x56\xf7\x61\x17\x5f\xa9\xf6\xca\x24\x68\xd6\xc8\xff\x05\xd4\xac\x37\x4b\xbe\x52\xed\x15\x8e\x57\xaa\x15\x15\x65\xe1\xe9\xe9\xe8\x2e\x1e\x0d\x6b\xa6\x38\xf7\xce\x08\xdb\x77\x35\x45\x37\x2d\xb9\x94\xe8\xd9\x69\x0d\x9f\x71\x58\xed\xe8\xbe\xc9\x77\x12\xef\x7a\x6b\x5a\xe7\x7f\xbe\x35\x3d\x43\x03\x03\x30\x6d\xb2\x4e\x7b\xf3\x2d\x4b\xad\xa9\x9b\x4a\xb4\x44\x18\xe3\xb0\xfa\xdc\xc2\xa7\xa7\xad\x97\x12\x4c\x6b\x3d\x99\x4f\x4f\xf7\xee\x2a\x88\x97\x95\xa0\x17\x5e\x56\x0c\x75\xf3\x71\x0f\x6d\x53\x37\x0d\x77\x5a\x3d\x0c\xbc\x6a\x64\xc6\xcd\x20\x3f\x33\xbe\x97\xdb\x08\xca\xda\x6d\x60\x50\x10\xd6\xe1\xd1\x27\x0b\xcb\x8e\x84\xa8\xab\x23\x7b\x6c\x18\xf4\x47\x52\x0d\x71\x55\x73\x72\xdb\xf8\x2e\xb0\x7b\x81\xf7\x2a\xf5\x4e\xc6\x02\x1e\x37\xeb\xd9\xd8\x05\x3c\x6e\x4e\xee\x05\x36\xf1\xb0\x4b\x09\xf0\xdc\xac\xf8\xde\x0b\xf0\xdc\xac\x87\x5b\x17\x60\xb5\xd9\xfe\xe8\x0f\xe1\x8a\xdd\x14\x0c\x05\x9a\x6e\x82\x6c\x75\x57\x69\xf1\xc1\xea\x9e\x9e\x44\x40\x47\xc5\x0b\x1f\x22\x12\xc5\x44\x1f\xda\x37\xc4\x96\x80\xdc\x66\x6b\x89\x1f\x9e\xf5\xba\xbf\xc3\x59\x4f\x1b\x0b\x10\xb7\xc5\x00\x2a\xc4\x67\x9d\xc2\x8e\xaf\x0f\xe3\x53\xb8\x76\xdc\x75\x36\x9c\x0a\xd1\x5a\xa7\x9e\x99\x59\x1f\x1d\xf5\x9c\x93\xeb\x5e\x6d\xe1\x51\x4f\x3c\x03\x34\xee\x59\xa0\x4e\x84\xb2\xed\x4e\xf0\x8e\xbe\xae\xda\x2f\x06\x67\x0d\xa3\x8b\x00\xc7\xad\xba\xf2\xb9\x80\xc6\xad\xc6\x6d\x7c\xa8\x6e\x3a\x8d\xea\xa6\x76\x9b\x0f\x1d\xbc\x92\x3b\x40\xe3\x86\x0d\xb3\x1f\xba\x7b\x25\x77\x01\xb8\xad\xd7\x93\x46\x95\x59\xb5\x43\xbf\x34\xc4\x84\x11\x5a\x85\xeb\x5f\x08\xd1\x5a\x0d\xa6\x01\x34\xb7\x1a\x85\x03\x30\x6e\x35\xc8\x85\x60\xdc\xa4\x10\xf4\x0b\x60\xdc\x6a\xf7\xe9\x87\x81\x53\xba\xa7\x66\xf3\x86\x9e\x13\x71\xe1\x4d\x02\xf2\xc3\x07\xff\xd5\x18\x1c\xa6\x3c\x4d\x9b\xbe\x6e\x6e\x7a\xfb\x92\xcd\x76\x8a\x82\x65\x8f\x5b\xc0\x06\xc2\x35\x2b\x16\xf6\xbe\x78\x41\x5e\xbe\xbb\x7d\x91\x85\x58\xdf\xbe\x78\x4b\x89\xd2\x72\x13\xd4\xaa\x3d\x79\x5f\x34\x17\x90\x9f\x37\x80\xab\x55\x40\x97\x0d\xe0\x6a\x95\x4f\x60\x5f\x74\x5e\x28\x89\x6f\xdc\x64\x53\x67\x19\x50\x79\xde\x80\xb4\xf6\xcb\xe5\xeb\xcc\xe3\x0a\x18\xb2\x4f\x06\x9a\x7d\x31\xea\xfd\xa5\x96\x81\x9f\x9e\x9c\x10\x6c\x55\x95\xcb\x3d\xe1\xa1\xe0\xdd\xc9\x39\xfd\x21\x8e\x92\x55\x5f\x2e\xa2\x2a\x9b\x1a\xc7\xfd\x58\x03\x43\x39\xd7\x5d\x2c\x4c\x5b\x49\x23\xba\x18\x82\xdf\x49\xf0\x38\x56\xcd\x04\x43\xa0\x3e\x35\x70\x43\x10\x85\x10\xbd\xba\xdf\xb1\x2f\xee\xa9\x59\x83\x81\x63\x86\x9c\xa8\x1b\x90\xd2\xa6\xb7\x18\xf6\x45\x36\x50\x05\xb8\xae\xd6\x4d\xac\xd3\x2c\x67\xc3\x8b\x6c\x9e\x3d\xd8\xa2\x9e\xd2\xa5\xe1\x89\x12\x62\x08\x14\xc0\xa4\xbd\xc6\xf7\x1a\xf5\x66\x80\xd1\x2a\xc6\x62\x80\x51\x59\x3a\x76\x92\x1f\x6c\x98\xe4\xeb\x21\xdc\x4f\x37\x03\x8e\x0a\x52\xb7\x13\xaf\x99\x70\x9f\xda\x0c\x37\x2a\x9c\xdc\x4e\x08\x2c\xa6\x57\xac\x37\xb0\xa5\x59\xa1\xd4\x77\x22\x8f\x48\xb9\xd8\x89\x6f\xad\x85\x13\x29\xc5\x9b\x28\xf8\x02\xb8\x4f\xed\x44\xeb\xff\x93\x13\x06\x46\xcd\x43\x62\x08\x85\x91\x34\x1c\x84\x8d\x34\xb5\x46\x52\x45\x1f\x4a\xaa\xa8\x6d\x4b\x87\x25\xd5\x81\xcb\xb5\x7a\x4d\x63\x03\xeb\xd9\xa4\xa3\x6d\x06\x18\x2d\xb2\x7d\xed\xc4\x8b\x6d\xee\x23\xc2\x38\x27\x7d\x47\xa7\xac\x52\xe0\x50\xba\xdc\x16\x5e\x65\xd3\x5a\x65\x98\xd0\x10\x9c\x6c\x03\xda\x19\xee\x12\x71\x02\xc9\xdf\x01\x1a\xa0\x0a\xb2\x04\x00\xed\x19\x3b\x13\x24\xd4\x9c\x48\x5e\x0e\x51\xb8\x8e\xa6\xea\x81\x9f\x74\x30\x89\x9d\x79\x1d\x4d\x8d\x61\x48\x4f\xc5\x82\xda\x0c\xe9\xa9\xc0\x7c\x3b\xcb\xe9\xcf\x05\x99\xa9\xe9\x50\xe7\xda\x00\x4c\x76\x45\x17\xdc\x0c\xd3\x29\xef\xc5\x46\x94\xce\xae\xe8\x73\x9b\x08\xc9\xa9\xf3\xcd\x26\x42\xd2\x6f\x96\xef\x2c\xd8\xef\x70\x25\xa7\x01\x0a\xd4\xbf\xb3\x64\x40\xf8\xd3\x0f\x12\x45\x31\x64\x6d\xa8\x1c\xfa\x65\x5c\x2a\x04\x42\x93\xe4\x04\x5c\xb2\x37\xb1\x69\x66\xc8\x5a\x71\x14\x83\x74\xea\x8a\xd5\x06\x74\xb2\xb7\xe4\x1a\x06\xd2\x5c\x26\xd6\xb2\xc4\x13\x83\x74\x56\x8f\x14\x64\x47\xbb\x5c\xe6\xa6\xf9\x4a\x14\x7c\xc7\xa1\x99\x59\xec\xa0\x46\x11\xec\xa4\x07\x2d\x76\xe6\x7d\xb7\x50\x99\xb8\xef\xa6\x67\x02\x36\x21\x94\xd5\xf3\x4b\x27\xbf\xe7\x90\x6e\xfd\xd0\xa0\xc1\x43\xd9\x2e\xd5\xce\x2b\x6d\x92\x8d\x8c\xbb\x29\x0b\xf4\x26\xb6\xb2\xeb\x05\xc9\xad\xa8\x98\x7a\x6d\x63\x17\x99\xb2\x25\x33\x00\x82\xec\x72\xa6\x6c\x60\x20\xbb\x9c\x12\x1b\x18\xc8\x2e\xff\xd0\x06\x04\xb2\xcb\xeb\xb3\xf1\x24\x72\x97\x6b\x65\x03\x0f\xd9\x65\xf6\xdf\x45\xd2\x24\x44\xc1\xd1\x29\x86\x66\x18\x4c\x99\xb5\x37\xb0\x91\x5d\x0e\x82\x5d\xf4\xde\x8e\x0b\x25\x96\x57\xa3\x0f\xf4\xe3\x59\x5e\x6a\x0d\xce\x78\xf2\x3a\xed\xc2\x2b\x6c\xda\x1b\x0a\xaf\xb0\x15\xa7\x91\x51\xd5\x43\x5e\x61\xab\x2e\x94\xed\x76\x99\x68\x69\x75\x4e\xb6\x54\xfd\xb5\x2a\x6d\x12\x6a\x67\xfa\x0d\x32\xba\x2c\xc9\x61\x55\x09\xf7\x89\x02\x34\xef\x22\xed\xd9\xa5\xbe\x21\x31\xd5\x7f\x9c\xff\x72\x98\xa2\x82\xe1\x06\x40\x99\x56\xf0\xf2\xad\x00\x9a\x62\x62\x00\x1f\xb3\xc2\x9c\xef\x42\x20\xae\xdc\x37\x1b\xcf\x17\x67\x85\x32\xdf\x65\xe3\x14\x20\x2e\xc6\x5b\xc6\x5d\x2e\x99\x8d\xa7\x8c\x47\xd1\xfa\x02\x7e\x32\x2b\x94\xf8\xe6\x53\xc6\x21\xd3\xe2\x66\xb0\x4d\x45\xeb\xde\x0a\xb6\x29\xc6\xc5\xcb\xc5\xa3\x68\x79\x33\xf4\xa6\xe2\x9a\x6f\x46\xd0\xec\x1a\xe3\x2a\xdd\xc7\x69\x70\x9e\x11\x29\xb7\x19\x17\x73\x4a\x48\x56\xba\x00\x87\xbf\x43\xdc\xc7\xe6\xfa\xe0\x3c\x93\xe4\xa9\x7a\xd2\x69\xa8\x18\x6c\x5f\x5d\x42\x8b\x71\x31\xe7\x34\x05\x3d\x9f\x1a\xf3\xae\x84\xca\x15\xf1\x66\x65\x40\xc1\xe6\x52\xd1\x52\x29\x3c\x8c\x92\xd9\xfb\x53\x0e\xd4\x34\x49\x4d\xc6\xcc\x9c\xda\x85\x2b\x5c\xd9\x52\xc3\x77\xa5\x0f\x70\xf8\x3b\x9e\xf7\x5d\x05\xba\x31\xd5\x1a\xfa\x00\x87\x29\x1c\x57\xa4\x2f\x54\x5e\x74\x9b\xaa\x81\x17\xdd\x24\xf9\x2b\x7d\x7e\x43\xf5\x21\x08\xa7\x1e\x0e\xdd\x0c\xc2\x69\xcd\x05\x41\x38\xc7\x1c\xfe\x8e\x7d\x70\x99\x8c\x92\xe6\x2e\xd1\x30\x31\x4d\x7d\x18\x84\x5a\x79\xe9\xd6\xf3\x78\x03\x51\x59\xdd\x0b\x3c\x7c\xa0\x73\xf4\xae\xbc\xde\xe3\x89\xc2\xf5\x1e\x79\x03\x76\xe5\x45\x37\xb7\x86\xd7\x7b\xb4\x5f\x54\x7a\xbf\x3d\x4e\xf4\x0d\x4e\xf5\x90\xd7\x7b\xa6\xfa\x44\xd7\xe0\xd3\x16\x28\xcc\xd3\xdf\xe1\xcc\xe5\x51\x83\x3e\x36\xc2\x1d\xe6\x65\x1f\x71\x1b\xf0\x9c\xb3\xf2\x88\xbb\x11\x76\x73\x0a\x25\xb5\xdb\x64\x97\xaa\x28\x74\x49\x3c\x0b\xac\xe7\xb4\x76\xd6\x78\xd1\x5c\xaf\x2a\x6f\x84\xd6\x2c\xf2\x54\xec\xc6\xa0\xc3\xb2\x22\x6c\xe0\x42\xa7\x1c\x25\xbb\xd1\xc5\xa1\x6d\xa1\xf1\x20\x39\x9c\x13\x07\xc9\x6c\x0a\x47\x47\x4d\x70\xe3\xd1\x51\xea\x50\xe3\xd1\x51\x6b\xa6\x31\x96\xa1\x58\xb6\xd1\x13\x28\x36\xf1\xfb\xc9\x12\xa0\x7c\x3f\xb9\x0b\x5f\xb9\x1b\x2f\xb3\x4d\x97\x0a\xbb\xa6\x30\x36\x1b\xe1\x33\x43\xe6\x97\x0d\xa0\xa8\x23\xec\xef\xc6\x2b\x3c\xda\xeb\x1a\x2f\xed\x68\x23\x00\x6a\xd4\x4f\x3d\x6f\x3e\x7a\x2c\xd3\xcc\x06\x86\xb4\x34\x8f\xdb\x62\xf7\xd5\x18\x38\x15\x64\xe0\xd9\x8d\xc1\xd6\xc4\x6d\x44\x8d\xce\xf4\x1b\x9e\x1d\xdf\x7c\x22\x59\x48\xc0\xdd\x18\x88\xad\xb9\x1c\xbe\x8b\x29\xed\xad\xd1\x48\xa6\x93\x56\xb3\xd6\xe7\x2f\xe1\xe1\xd1\x46\xd4\x70\x42\x14\x54\x60\x03\x3a\x9a\x66\x78\x38\x80\x40\x9f\xcf\x87\xf0\x87\x78\x18\x89\x40\x2f\xce\x09\x17\x8f\x76\x57\x80\x47\x43\x18\xab\x4d\xf0\xa8\x70\x0b\x9b\xe8\x51\x21\xc3\x36\x10\xa3\xd5\x0a\x29\x20\xa3\xa9\xe9\x7d\x8d\x8d\xb0\x9b\x21\x54\xc1\x46\xd4\xcd\x2a\x53\xfc\x46\xd4\xcd\x98\x0f\x85\x3e\x3d\xc5\xb0\x4f\x2e\x85\x5e\xd1\xe1\xac\xe8\x85\x76\xfe\xce\xf7\xe3\xe5\x71\xdb\x04\x94\x5e\xd5\xad\x0b\x3a\x3e\xd4\x65\x40\x4a\xab\x2e\xbb\x6c\x04\xd0\x4c\x57\x75\xf3\x42\x9a\xbd\xda\x10\x74\xd5\xb8\x2b\x0c\x9f\x51\xdd\xa6\xe0\x8d\x16\x8f\x09\x5c\x05\xba\xdf\xb2\x89\x2a\xbd\xaa\x7b\x13\xf2\x84\x28\x55\xf7\x73\x34\x63\x5d\xf7\x73\x34\xd7\x00\x96\x9e\xcc\x1a\x7a\xd9\xda\x24\x40\xf9\xb8\x73\x12\xee\x71\x0b\x31\xaa\x8b\x1e\xbb\xeb\x5d\x8e\xe6\x92\xe9\xdd\x68\xae\x97\x01\x91\x3c\x16\x3c\xa5\xfa\xe4\xd8\x15\xba\xaa\x99\xa4\xb7\xa3\xb9\x5e\xda\x36\xb4\xa7\x75\xc5\xae\xd2\x12\xec\x7c\x9e\xc3\x87\x94\xae\xe0\x55\xda\xc7\xba\xde\x5a\x93\xd8\xe3\x2b\xcf\x49\x71\x8e\x76\xa7\x75\x78\xb8\xbf\x0c\x5f\x25\x38\xff\x06\x94\xb4\x29\xfa\xeb\x56\xd0\x4d\xdb\x00\xba\xac\xc5\xa6\x5e\xa0\xd4\x60\x58\x87\x15\x7c\x76\x03\x1f\x9a\xb2\x3b\xa7\x28\x9b\xe5\x21\x71\x49\x41\x71\x8d\x36\x1f\x8c\xce\x9e\x01\x40\x3d\x9b\x8f\x86\xc4\x76\x16\x9f\xe2\x00\xe7\x6c\x7a\x63\x68\xf3\x6d\xe7\xa2\xab\x76\x9b\x98\xcd\x22\xa4\xd8\x06\x68\xb3\xf9\x1c\x09\x98\x66\x93\xad\x6a\x0f\x3e\x4e\x20\xc0\xd9\x06\x6a\xb3\x79\x7f\x63\x78\xcb\xde\x25\xff\x09\xe2\x2c\xa5\x38\xef\xfe\xf1\xa5\x78\x96\x9b\xc8\xcc\xea\xfa\xcf\x02\xd7\xd8\x21\x60\x65\x97\x19\x6f\x13\xa5\xa9\xf8\xe3\x1b\x28\xcd\x54\xdc\x27\x6e\xfc\x1e\x3a\x79\x21\x44\x9c\x3d\x52\x2b\x02\xc1\x2b\xa7\x07\x0d\xd7\x76\xb5\x43\x10\x85\x29\xd3\xe6\x06\xd0\x32\xeb\x7d\x94\x3d\x88\x54\x10\x6f\x00\x2e\x39\xdc\x28\xbe\xf0\x99\x3d\x26\x60\x05\xb9\xa7\x37\x10\x91\xdd\x0a\x26\x63\x4a\x26\x8f\x25\xce\xba\x5a\x13\x40\x39\xfa\xd5\x87\x3d\x69\xd2\x57\x1a\x22\x43\x86\x76\xce\x49\xdb\xc5\xb8\xbe\xc7\x82\xec\xa9\x63\xf0\x14\x45\x94\x69\x73\x1d\x3c\x07\x77\x51\x70\x00\x88\xb7\x18\x37\x52\x98\x9a\x4d\x58\x63\x57\x68\x85\x8d\x48\x91\xbd\x49\xbf\x06\xac\x31\x55\x17\x8a\xfd\x51\x38\xa2\x0d\x58\x63\x6f\x5a\x15\x93\x16\xff\x66\x2a\x90\xe6\x9c\x74\x7d\xb9\x4c\x1c\x27\xb5\x8a\xf9\x6c\xb4\x3c\xe0\x9b\x0f\x45\x0b\x60\xb0\x27\x71\xbb\x5a\xa4\x93\xd8\x5c\x69\x0a\x0c\x0b\x29\x4f\xfd\xc6\xd3\xcf\xa3\xe8\xac\x03\x2c\xe2\x50\xb8\xe8\x0d\xf0\x61\xd6\x93\x36\x7b\xf2\xa8\x91\xfc\xdd\xcd\x37\xd9\xf4\x21\x43\xa0\x6b\x8f\x9d\x0c\x41\x20\x9d\x4a\x48\x44\x4f\x14\x83\x0e\x48\x19\x9a\x0c\x7a\x2e\xb6\x9e\x62\x04\x53\x54\x1a\x39\x84\x00\x1b\x16\xc1\x59\x76\x50\xa5\x0a\xa7\xe9\x71\xb4\x2c\x12\x66\x6d\xed\x04\x41\xb0\x95\x1a\x0a\xb4\x61\x11\xd6\x65\x33\x12\x63\x55\xe0\xdf\x1d\x54\x9b\x34\x6c\x41\x64\x48\xf7\x87\x40\x86\x4c\x53\x40\x86\x74\x7f\x07\x1d\xa6\xbb\x42\x58\x28\xc5\x33\xc0\x10\x86\x8f\x8f\xc0\x10\x56\x79\xc6\x37\x20\x84\x55\x7e\xe5\xcd\x98\x8b\x72\x93\x6f\x20\x01\xab\x7c\xdb\x3b\xbc\x43\x39\x2b\xd1\x04\x4f\xaa\xcc\x23\x2e\xf6\x83\xfd\x4b\x79\xbd\x43\x4d\x91\xe9\x24\xea\x34\xc9\x88\x8b\xba\x4e\xba\x83\x08\x8f\x27\x27\x9d\xef\x3a\x18\x00\xd3\x77\xca\xe9\x22\x17\x65\xbb\x06\xe4\xf0\x4a\x53\x24\xe8\x1d\x72\x56\x7b\x42\xbc\xe1\x90\x21\x18\x2c\x31\x7b\x1f\x47\x78\xc4\xae\xb5\x81\xe0\x88\x56\x47\x82\xd7\xa2\xd5\xab\x4d\x93\xad\xaa\xe7\xad\x68\xf5\x82\xd6\x8c\xe6\xaf\xa8\xfd\xa9\xd9\xd8\x57\x9a\xcb\x38\x27\xc4\xa7\x08\x98\x57\xd5\x59\x06\x92\xf2\x98\x01\xbd\xe4\x03\x0a\x80\x7e\x4d\x8b\x10\xc1\x11\xbb\x37\xbc\xc5\x67\x1a\xb5\xcc\x97\xc2\x46\x49\xc0\x02\xe6\xd7\xe5\x5e\xd9\x84\xf9\x0d\x5d\x1d\xdf\x8b\x61\xa3\xba\xb3\xc2\x6a\xd7\x5d\x2a\xac\x76\xe2\x43\x86\x42\xd4\xf3\xdc\x7b\xd1\x6a\x27\x5e\x5b\x0c\x22\xd5\xdd\x36\x58\xed\xba\x5b\x43\x10\x80\xaa\xf7\x3d\x67\x55\x4f\xaf\xa3\x98\x94\x60\xbd\x19\x97\xf3\x52\xec\xa8\x6d\x34\x79\x74\x7f\x08\x47\xa3\xeb\xe7\x83\xf4\xc9\x14\xb0\xf4\x9a\x66\x3c\x1c\xdd\x6d\xa3\x5d\x12\x42\xbf\x41\x3e\x2f\x06\xed\xf1\xd0\x80\x0d\x85\xfb\xd9\xc0\xdf\x65\x3d\x90\xb5\x97\xa4\x97\x3a\x8c\xcb\x7d\xde\xf9\x96\xa4\x97\x7a\x08\xb3\x49\x71\x07\x29\xcb\xb2\x9b\x7d\x23\x4d\xcd\xde\x94\x9d\x9a\x0a\xc6\x5d\xd1\xb9\x6a\x49\xb0\xa9\x14\x46\x94\x18\xfe\x0e\x62\x4e\xbb\xc1\x22\xa8\x5a\x47\xc7\xc5\xf7\x69\x8a\xd6\x3d\xc0\x71\xd9\x2a\x30\x50\x6d\x45\x60\xbc\x8d\x70\x85\x61\x3b\xac\x30\x6e\xdd\x39\x71\xe6\xd1\xc0\x00\xe3\x56\xf4\x04\xf0\x16\xc6\x6d\xba\x14\xc0\x2d\xa5\x55\x08\xe3\xa6\x99\x00\xc6\x2d\xbc\xa1\x6f\x45\x88\x0a\x17\x83\x73\x84\x38\x58\xcf\x5b\x0b\xd4\xb6\x81\x71\x0b\x1b\xfb\xf0\xba\x75\xd8\xd8\xb7\x79\x71\xbe\x9a\xc2\xc5\x79\xad\x12\xa1\xdf\xa4\xd6\x08\xfd\x56\x9d\x86\xc3\x91\xb4\x1c\xa0\xdf\xc2\x26\x43\xa1\xdf\xb4\x78\x81\x7e\xab\x42\x50\x6d\xa0\xdf\xd2\x65\xdf\x85\xe0\x6f\xd2\x7f\x37\x35\xf8\xa7\xd9\xd4\xe0\x9f\xb6\x41\x3c\x4a\x70\x01\xff\x56\x05\xe9\xda\x5b\xfa\xbb\x1b\x47\xf1\x28\xde\x23\x00\x4e\xb8\xab\xbd\x89\xf4\xd1\x23\x08\x7b\x5b\x5a\x6a\xe4\xa4\xdb\x7b\xcc\xa5\xdb\x6b\x11\x6f\xbf\xb9\xe7\x5a\x5f\xd0\xfa\x54\x0d\x2f\x2b\x2a\x58\xc2\x26\x98\xad\xe8\x32\xc3\x06\x98\xad\xe9\x8a\xdf\x06\x98\xad\x79\x98\xa1\x7d\xcb\xd5\xbb\x89\x5d\x4b\x6e\x9e\x0c\xbe\x1e\xe7\x2d\x75\xc9\x24\xae\x4f\x78\x68\x79\xf1\x79\x3c\x0d\x00\x54\x43\xc0\x99\xbd\xa9\x9f\xb9\x7e\x38\x3e\x58\x0a\x60\x6b\x3e\x90\x02\xb4\xd6\xe5\x85\xde\x2f\xc6\x85\x95\x28\x7f\x31\x9e\x9e\x38\xf0\x45\x13\x72\xf7\x77\x93\xc6\x21\x51\xb8\xff\xa9\xdd\x13\x80\x35\xdb\xfe\x5e\x7c\xb1\x34\xd4\x2c\x02\xd6\xfa\x78\x3e\xbc\x99\xea\x1a\x11\xe2\x82\xfd\x7b\x31\xbe\x89\x56\x31\xd0\x6a\x36\x05\x02\x61\xe6\xe3\x37\x42\x2e\xfa\xbc\x0b\x74\x59\x57\x6c\x97\x0d\x70\x59\xc8\xda\x03\x68\x59\x57\x14\xad\x4d\x2c\x59\x72\x5d\xb2\x02\x8b\x2d\x80\xf8\xf2\xf3\xbc\xfb\x45\xdf\x81\x3f\xc4\xa1\x6d\x3e\x69\x30\x2d\x6b\xfa\x80\xe0\x1a\x8a\xe4\xb7\xf1\x38\x76\x56\xdc\xcc\x8d\x60\x89\xa3\x68\xb6\x5e\x12\x4a\xea\x1c\x03\x3e\x49\x31\x78\x49\xf7\x72\x4e\xd8\xef\xc2\xa5\x10\xa4\xf1\x1b\xde\xbb\xdd\x2f\xc5\xd4\xf4\xa0\x01\x07\x2c\x3c\xef\x7e\x13\xdd\xab\xe9\x04\x2a\x2c\x6c\x13\x07\x2a\x2c\x6c\xd9\x07\x0a\xac\x0a\xaf\xb7\x81\xfa\xaa\x02\x39\xee\x37\x83\x62\xdb\x5f\x01\x0c\x58\xd5\x5d\xb7\xfd\x26\x64\x47\x0f\x79\x6c\x44\x52\x6c\x5e\x88\xc4\x87\xb5\xfc\x34\xe0\xc6\xd1\xcc\xc5\x7e\x78\xdc\x52\xb1\x88\x15\xec\xe6\xf0\x52\xb4\x00\x53\xfb\x2d\x7d\x7e\x8a\x82\xf7\xc0\x35\xd2\x9a\xab\x23\xdd\x1b\x7c\x62\x07\xd4\x3b\x28\x88\xfd\x1d\x2f\x7e\x6a\x53\x02\x98\xac\x15\xb7\xe6\x48\x9b\xe6\xb1\x81\xad\xc0\xa7\x09\x62\xc9\xba\x62\x0e\x6e\x82\xc9\x74\x27\x73\xbf\xa9\xc2\x27\x7f\x38\xce\xfc\x6b\x1d\xbc\x69\x87\xf5\x48\xc1\x77\xa0\x7b\xc9\x9b\x50\xb2\x3e\x5d\x26\x6e\xfa\x4c\x7f\x07\xdd\xbb\xb8\x65\x30\x20\x69\x82\x81\x24\xab\x02\x5d\x6d\x20\xc9\x6a\xf5\xc0\xf0\x4d\x99\xa1\x23\xda\x9b\xfe\x4e\xc9\x15\x40\xc9\xba\x62\xf0\x6c\xc6\x58\x54\x7c\xbb\xfd\x96\x7c\x52\x27\x36\x15\x20\x7f\x07\xf9\x38\x5c\x21\xe4\x91\x0d\x98\x8a\xb8\xe8\xe9\xc6\x1d\xb9\x26\x85\xe0\xad\xc3\xa3\xd3\x18\x67\x99\xd3\xc4\x27\xb5\x5b\x32\x45\x14\xd4\x93\xc8\x21\x1d\xa2\x38\xdb\x59\x14\xce\xae\x2a\x54\xc1\x18\xb5\x61\x00\x4a\x96\x7c\x56\x26\x7a\xcc\x2e\xfb\x9b\x7e\x70\x9d\x80\x6f\xfa\xc1\x35\x4e\x80\x8b\x65\xc5\xcc\xdd\x37\x6f\x0f\x85\xd3\xc0\x5d\xd3\x69\x38\x22\x69\x9b\xbf\xe9\x2a\x98\xce\x09\x8f\x47\x38\x27\x27\x54\x3d\xc2\xbb\x44\x7d\xba\x76\x38\x07\xc4\xa3\x37\x3d\xe4\xe2\x51\x44\x57\xcc\x82\xfa\x6e\x02\xc2\xfc\xa2\xf8\xbe\x79\x19\x22\x9c\x48\xbb\xba\x1a\xc3\x90\x32\x23\x3b\xf1\x28\x24\x36\xde\xdd\x34\xbb\x86\x8b\xe1\xf1\x49\x6d\x03\x96\xdb\xdb\x01\x40\x5f\x45\x21\xc4\xf7\xcd\x28\x4a\x9a\xde\x9b\xb7\x7c\x14\xdd\x72\xe3\x69\xed\x23\x16\xd4\x0f\x60\x13\xab\x67\x06\x67\x02\x5b\x15\x00\xfb\xaa\xd5\xd3\xcd\xb8\x49\xd5\x69\x84\x36\xb8\xcb\x7a\x10\x56\xcb\xeb\x56\x30\x19\x4f\x3f\xad\x4f\x6e\xac\x70\x18\x12\xd3\x40\x8c\xa5\x6c\xb3\x23\x9f\xe9\x9e\x21\x61\xfc\x21\x8c\xc7\x69\x95\xf2\x25\x8b\xc4\xfb\x01\x26\xf0\x10\xb8\x44\x01\x1f\xe3\x56\x30\xe9\xfd\xe1\x75\xfc\xe9\x52\x60\xfa\xc9\xdf\xc7\xd0\xdb\x1f\xde\xce\x57\xc3\x01\x04\xeb\x0a\x52\xb9\x3f\x74\xe2\x8b\xfb\x01\xfd\xea\xf6\x09\x7c\x88\xd4\xc9\xfe\x0e\x27\x2d\xb5\x8c\x08\xec\xe1\xcf\xa0\xd5\x68\xaf\xc1\x03\xde\x21\xf9\x45\x48\x58\x8d\xa7\x48\x68\x99\x4f\x53\xb8\x4a\x9d\x06\x3f\xa5\xc5\x19\x5f\xf3\xf6\x62\xff\xf0\xa2\xbe\x24\x01\x5f\xef\xce\x1e\x18\xbe\x7f\xec\xea\xe9\xc0\xd7\x8a\xfa\x10\xd2\x33\x4c\xe1\x08\xa5\x55\xf3\xa1\x45\x6b\xba\x06\xec\xde\x4f\x7d\x30\xf8\xb8\x17\x70\xc4\x67\x0f\x3d\x2d\xa3\x12\xad\x00\x81\xf5\xec\x81\x81\xa4\xcb\xae\x01\xc6\x2f\x3b\xa3\x3e\x7c\x99\xf8\xf9\x0e\x83\xa6\xd5\x0d\x48\x58\xcf\x1e\x50\xe0\x7f\xb2\x5b\xb6\x39\x68\xce\xf9\x61\x0c\xf9\x9f\x7e\xbe\xfb\xbc\x18\x31\x04\xa5\x1c\x0a\x56\xa3\x6a\x0a\x20\x04\xb0\xe4\xa1\xa0\x34\x61\x39\x1f\xea\x85\x9c\x59\x14\x84\x27\x84\xfe\xa1\x10\xae\x36\x9b\x62\x7d\x9d\x14\x78\x89\x6f\xea\x1d\x2a\xa1\x94\x24\x0a\x4c\x9f\x55\x3b\xf5\xa9\xaa\xda\x79\x81\x7d\xa8\x4c\x5a\xc5\xa6\x6a\xa7\x55\x6c\x3a\x27\xac\x62\xc5\x65\xa2\x47\xd9\xb5\xb3\x47\xae\x81\xb1\x94\x5c\x26\x7b\x54\x45\xbd\x19\xa7\x55\x14\x18\xad\x88\xe2\x61\x35\x6b\x04\x75\x81\x57\x65\x12\x28\x52\x54\x9f\x76\xdf\xe1\x44\x9c\x5d\x5d\x21\x77\x5f\x37\x8d\x48\x91\xa7\xd0\xc1\x67\xa6\x44\x61\xab\xf0\xd0\x2f\xdd\x88\x13\x85\x33\xf6\x54\x77\x89\x14\x99\x2e\x13\x5d\x2a\xce\xc9\x1d\xce\x65\xb2\x4b\x21\x8a\x93\xa4\x1a\x18\x24\x7d\x78\x3e\x69\x58\xf1\x7c\x82\x5f\x19\x42\xf7\x50\xd0\x6e\xb2\x8a\x11\xbf\x9a\x82\x42\xee\xce\xd3\x56\x3b\x54\x3d\xaf\xab\x33\x80\x53\x9f\x89\xf7\xce\xd5\x5f\xbc\x81\x3d\x4a\x32\x05\x6b\x80\xfa\xcb\x37\xb0\x67\x71\x1a\x47\x74\x8a\xc2\x81\x7f\x98\xc2\x81\x5f\x93\x4d\xc0\xda\x14\x93\x24\x42\x4a\x34\x6a\x42\xa8\x11\x08\x74\x48\xa0\x48\xa6\x3f\x24\x27\xb0\x4f\xc2\xa4\x3d\x54\xe6\x55\x1d\x7d\xc8\x00\x38\xc3\x89\x68\x9b\x16\x9a\x30\x69\xc5\x39\x81\x77\x98\xce\x09\xf0\xb0\x38\x01\x41\x0d\x61\x84\xfc\x46\x32\x9f\xac\x30\xa9\x68\x1d\x20\xc4\xe1\x28\x49\x9d\x22\xa6\x44\x2b\x26\x11\x53\x22\xc6\xe0\x0b\xdc\x53\x73\x08\x2c\x5b\xce\x9a\x5f\x44\x38\x4c\x53\x2b\x14\x11\x0e\x73\xce\xa6\xa0\xcf\x84\x3a\x21\x85\x51\xe3\x44\x26\xd5\xba\x43\xf4\xc3\x9c\x9f\x1a\x70\x2e\x2c\xae\x61\x33\x66\xa5\x28\xe8\x3a\x62\xd2\x44\x8b\xca\x53\x0a\xfa\x10\xa6\x3e\x48\x53\x7d\x74\xb2\x7a\x40\x19\x7e\x41\x52\x86\x4f\x6c\xd7\x30\x97\x30\x14\x49\xf1\x70\x6f\x9d\xe9\x4c\x02\xac\xad\x4e\x65\x82\x46\xd2\x10\x45\x4e\x0c\x51\x38\x21\xe5\x24\x0a\x60\x17\xd5\x01\x30\x5d\xce\xd5\xa5\x50\x11\x9b\xa2\x30\x50\x5a\xdb\x40\xd6\x8d\x92\xba\x28\x28\x62\x91\x45\x01\xb3\x11\x4e\x7b\xa1\x06\xd7\xce\xa1\x71\xcb\x60\x6c\xd2\xa4\x65\xde\x45\x0f\x53\x19\x35\xa8\xf6\x60\x3b\x4d\x35\x7c\xa7\xfa\x00\x2e\xc9\x12\xc0\x78\xf1\x7a\x14\x49\x08\x00\xeb\x72\xd6\x34\x65\xa8\x88\x45\xc2\x19\x28\xbb\x51\xb2\xd3\xc0\x78\x59\x7d\x67\x14\x65\x1a\x28\x0f\xc9\x59\x53\xe7\xa9\x31\x86\x8a\x59\x6c\xa8\xd3\x60\xfc\xd7\x6c\xeb\xf1\xeb\x32\x9d\xc8\xa0\x89\x4d\x83\xc1\xe0\x07\x34\x93\x1c\x12\xca\x6d\xa8\xe5\x38\xe5\x86\x96\x33\x90\x6e\x23\x2e\x7d\x88\x8b\xaf\x49\x5b\x1c\x71\x6f\x73\xb8\x18\xe0\x97\xba\x87\x1f\x47\xe0\x71\xa9\x3d\x78\x06\x2d\x55\x57\x71\x86\x2a\x92\xd3\x26\x72\xba\x94\xf8\xf1\x35\xdb\x53\xfd\x42\xf5\xce\xb9\x91\xd3\x69\x2f\x50\x6e\xcc\x1b\xb5\xbb\x14\xb8\x2d\xc2\xcd\xfe\xa0\x3e\xe6\xc4\xeb\xd3\x23\xc4\x42\xc0\xd9\xcd\xa6\x51\xc4\x7b\xd3\x23\x24\x3c\xf1\xde\xf4\x24\x90\xf0\x50\x38\xd4\xab\x4c\x20\xf0\x32\x8f\x94\x87\x3a\xa7\x05\x5a\x67\x0e\x35\xd1\xea\x29\x0a\xc8\x8b\xe7\x3b\xf4\x28\x65\x51\x38\x0c\x86\x6b\x7f\xa1\xbe\x24\xea\x8d\x9c\x4e\xbb\x91\xe6\x3e\xa0\x47\x6e\x19\x22\xc7\x26\x31\x22\x20\x77\x99\x01\x5b\x0e\x35\x88\x80\xd3\x87\xc1\xc1\xf6\x87\x81\x62\xd4\x09\xf0\xec\xd0\x5c\x03\x64\x37\xc2\x5d\x0a\x0e\xb6\x9a\x0d\x9e\xa5\xa5\xfa\x50\xe0\x59\x4b\xb6\xc2\xd7\x57\x9d\xc8\x88\x64\x55\xad\x61\xbc\xe3\xfa\x1b\xc4\x33\x62\x16\xce\xe6\x1a\xa1\x0c\xb4\x21\xf9\xc5\x57\xb1\xc3\x7d\x64\x50\x84\x70\x8d\x83\x61\x9e\x34\xfc\x10\xad\x7a\xb4\xe6\x90\x30\xba\x95\x70\x41\xb4\xb8\x38\xf3\x46\x6b\x9b\x7a\x42\x68\x79\xd3\x60\x6d\x36\x48\x83\xc5\x5b\xdf\x9e\x39\xc2\xa0\x9a\x1a\x0b\x18\x54\xf3\xd0\x91\xf7\x9b\xbf\x83\xf9\x78\x38\xe7\x44\x4e\x53\xb0\x5a\xb8\x1f\x1b\xe6\xe3\xa7\x65\xb8\xad\xdf\x34\xc7\x70\x9b\x34\x73\x34\x74\xd4\x9e\xc3\x55\x80\x55\xcc\xc4\x00\x45\x35\xc9\x97\x4a\x0f\x5e\x9b\xa2\x70\xed\x3b\x4c\x15\x7c\xd7\x45\x81\xf9\x25\xaf\x11\x13\x71\x36\xf1\x06\x00\x80\xa5\x5f\xfe\x8e\x51\xe2\xd5\x9a\x4a\x93\x78\x38\x6b\xa0\xc2\x21\x6a\xa1\x18\x53\x1b\x55\x64\x51\x2f\x5e\xed\x6e\x22\xdf\xa8\xc3\x59\xe1\x0c\x6a\x4e\x03\x62\x48\x72\x1f\x60\xc1\xd9\xb4\xcf\x54\xde\xae\x69\xa6\xd8\x27\xf5\x22\xb8\xa0\x55\x4a\xc0\x0d\x59\x9d\xb3\x23\x4d\x7d\x0a\x4e\x8c\x6a\x67\x5c\xa7\x94\x9c\x88\xc8\xc9\xe1\x42\x11\x9c\x58\x83\x8f\xd0\x8a\x25\x55\x53\x6f\x14\xe3\xef\xd8\x6c\x4e\x0c\xc0\x81\x49\x1e\xcb\x43\x42\xad\xa0\x87\xf8\x90\xf0\x9f\x4a\xc5\x03\xe8\xaf\x74\xf1\x5e\xe5\x5d\x6e\x77\x11\x6f\xc2\x24\x69\x5c\x88\xa7\x18\x49\x8a\x53\xe5\xed\x6d\x4f\x37\xee\x6b\xa7\xe1\xef\x70\xc6\x97\x1a\x57\x75\x7b\xdb\xc5\x10\x4b\x25\x6d\x90\x28\xbf\xee\x71\x63\x18\x03\x29\x47\xc0\xf5\x95\x6e\xce\x60\xf8\x63\x29\xaa\x95\x2e\x97\x78\xc8\x1b\x59\x4d\xe1\x4e\x92\x86\xbf\xd1\x62\x29\x25\xb6\x11\x1f\xa5\xa1\x69\xbc\x61\x38\xb4\x84\x10\x9a\xb1\x74\x49\x86\x46\x5f\xcd\x70\x1a\xda\x36\xfd\x21\xbd\xb9\x53\x14\x19\xb3\x88\x82\x6f\xb7\x39\xe7\x0b\x65\x26\x51\xe4\x3d\xe7\x64\xb3\x9d\x93\xc3\xa6\xda\xe1\x9c\x69\x55\x6b\xbd\xd1\xe5\x32\x4c\xd1\x32\xd2\x44\xc1\x32\xa2\x61\x6b\x0c\x31\xe0\x2e\x91\xc1\xac\xb5\x23\xc4\x63\xbd\x9a\x3f\xe4\x98\xba\x46\x7a\x02\x86\xb3\xc2\xcb\x92\x4d\xc1\x73\xd4\xd5\x0d\xde\xfa\x92\xfc\x6a\x3c\x79\xf1\x45\xbe\x43\x62\x88\x3d\x6e\x54\x18\x86\xab\x64\x24\x81\xf1\xad\x81\xe3\x64\xe5\x6d\x7d\xf1\x2d\x20\x81\xb5\x66\x53\xb0\x46\x35\x0d\x24\xe3\x0c\x0c\xd7\x81\x7b\x60\x3a\x0d\x10\x12\x48\x47\xe5\xa1\x70\x0f\x2c\xfb\x3b\x3e\x8b\x23\x19\x06\x84\x60\xad\x52\xab\x89\x01\xf4\xb2\x21\x06\x90\x7e\xd2\x43\xc1\xf0\xdd\x55\x0c\x3c\xd9\xf4\x71\x1c\x0a\x7e\x7f\x09\x26\x44\x95\xac\x55\xd2\x0e\x60\xc1\x7a\x35\x53\x32\x83\xbb\x42\xf6\xc2\x89\xb8\xbf\x96\x5d\xcc\x9b\xf3\x68\x12\xdd\x90\x9a\x2d\x08\xa0\xd4\x25\x40\x00\xcf\x88\x87\x48\x78\xb9\xa4\x14\x76\x85\x17\xd0\xf2\xef\x7c\xd0\x7d\xa8\x93\x5d\x76\xf9\x66\x92\x76\xf9\x26\x4a\x3e\x39\x97\x44\x3b\xda\x93\x4a\xd0\x82\x38\x04\x58\xbf\x5a\xa5\x86\x23\x92\x64\xad\x3a\x77\xe0\x15\xed\x3a\x24\x10\x0c\x03\x94\x28\x31\x0c\xb0\xf9\x4b\xc0\x00\x8b\x13\x1b\x83\x6b\xa9\xdf\x0a\x20\x20\x56\xeb\xc4\xda\x44\x71\xc1\x41\xd2\xb5\xc2\xc1\x58\x9c\x97\x9d\x69\xce\xfb\xa2\x5a\xeb\x54\x22\xec\x86\x1b\x41\x54\xa0\xa6\xd4\x30\x40\x09\x11\xc3\x00\x35\xa9\x80\x01\xd6\x5a\x9c\x17\x5c\x5b\x9c\x46\x47\xa1\x18\xb5\xf3\xed\x4a\x89\x26\x62\x00\xaf\xea\x79\x23\x17\xbb\x33\xbc\xcd\x58\xfc\x21\x07\x5b\x8b\xbc\x93\xa9\x8b\x3f\x54\x6b\x95\x77\x13\x21\x22\x79\xd4\x15\xa4\x5b\xd2\x11\x00\xc0\x3a\x24\x74\x18\x55\xf2\xaa\xe2\x6b\xc3\x01\x25\xac\x05\x07\xec\xda\xc7\x3b\x1f\xb3\x94\xdd\x84\x68\xc0\x11\xc3\x24\x7b\xea\xbe\x11\x0e\x58\xaa\x0b\x26\xdc\xf1\xa9\x56\x80\x12\x7f\xcb\xdb\x8a\xae\x95\xf0\x12\xb1\x0b\xf1\x81\x35\xb4\x48\x89\x0f\x4c\x97\xe4\x32\xf0\x81\xed\x1a\xce\xcb\x58\x0e\xd2\x74\x19\x41\x32\x5d\x6a\xe2\x50\xbc\x6f\xed\x5a\x83\x0f\x56\x6a\xca\x11\x43\xb2\x8e\x70\xb1\x81\xb4\x2c\x8a\xcb\xc2\xdf\x01\x1b\x23\x1e\x1c\x5e\x15\x49\x24\xe2\x52\x4c\x27\xf2\x19\x46\x8d\xe7\xd0\x0b\x4d\x92\x1b\x8c\x0d\xd9\x87\x44\x0c\x80\x85\x29\x5f\x12\xf9\x43\xef\x55\x6a\xa5\x0e\x81\x38\xa4\x1a\xf1\xc9\xeb\xd4\xb3\xc9\x0f\x33\x8b\x64\xc4\x8b\x2e\x45\x06\xa8\xc1\x23\xf5\x34\x2c\x47\x21\x68\xc5\x03\x4a\x5f\x54\x97\xc0\x1a\x8a\x78\x21\x09\x09\x54\x61\x33\xff\x0e\x05\xbc\xf8\xde\xab\x78\xf2\x4e\x16\xa4\xf6\x2f\xbe\xb7\x39\x5c\x0d\xdf\xdb\x94\x94\x26\x2a\x31\x5f\x1e\x19\xc5\xfb\x95\x80\xe3\x33\xd9\xf9\xf2\x40\x1d\x16\x6e\xd6\xe7\x81\x4c\x6c\xd6\xc4\x10\xc7\xb1\xf9\xa0\x05\x98\x62\xf3\x51\x07\x71\x1c\x5b\x6f\xfe\x0e\x0d\xf2\x3e\x85\x30\x8e\xad\x37\x67\x65\x88\x74\x2d\x63\xc4\x71\x6c\xa3\xba\xd4\x37\x3d\xfa\x6e\xec\x8d\x44\x97\xc3\x60\x07\x6c\x39\x02\x39\x36\x9b\xbb\x18\xc8\xb1\x14\x2d\xea\xc9\x38\x19\x9e\x25\x3c\x86\x3d\x34\x0d\x53\x1e\x84\x2e\xea\x28\xbb\x92\x0c\x93\x4f\x23\x28\x85\x6f\x21\xa8\x04\xbe\x1e\x37\x9d\x04\x0f\xa4\xc4\xb5\xf0\x8c\xd5\x14\x2d\xb7\xfe\x8e\x96\x5b\xb5\x19\x47\x39\xb3\x07\x1f\xb0\xb6\x6a\x09\x24\x62\x3c\x65\x12\xd0\x2f\x81\x30\xf9\x26\x87\xcb\x24\xbc\xdf\x65\x02\xde\x6f\x93\x1c\x70\x89\x61\x03\xe1\x64\x50\xe8\x66\x0a\x2a\x8a\x47\x6c\xf1\x51\xb1\x87\xd4\x9e\x53\x45\x42\x0c\x6a\x73\x98\xbc\xd4\x2d\x5d\x1a\x0f\x59\x37\x2f\x7d\x00\x1a\x5b\x91\x86\x00\x40\x63\xb3\x94\x9b\x7c\xee\x2b\x8b\x18\x7c\xa8\xcc\x65\x52\x9b\x7a\x52\x61\xde\x77\xf7\xe9\xab\xd4\xf6\x38\x6d\xce\x12\x05\x4b\xae\x8a\x09\xcb\x30\x51\x78\xfe\x4c\xd2\x1b\x11\x12\x87\x9b\x86\x08\x89\x39\x57\xe7\xc4\x19\x5b\x6b\x3e\x78\x00\xd2\x86\x1b\x3c\x00\x65\xa7\x9d\x33\xf6\x43\xbc\xe8\x9a\xaa\x22\xd1\xce\x21\x02\x97\xca\x94\xc2\xbb\xe0\x4e\xc2\x05\x91\x62\xe2\x9c\x51\xb5\x79\x06\x71\x3c\x6a\x14\x6c\xf9\x49\xaa\x48\x10\x48\x51\x9c\xc6\x88\x4f\x22\x70\xe9\xf5\xa9\x0b\x97\x5e\x25\x83\x00\x63\xec\x49\xeb\x0b\x28\xc6\x9e\xa4\xfa\x00\xc5\xa8\xe7\xbf\x0e\x05\xcd\x4b\xb5\x2d\x7a\xb6\xd4\x2c\x5e\xfb\xd6\xba\x00\xc0\xb1\x27\xf1\x2d\x43\x18\x76\x9f\xc9\xf4\xfa\x73\x38\xeb\x0d\x81\xa2\x46\x2f\x0a\x4f\x55\x01\xc0\x58\xd6\xd9\x11\x61\x09\x7b\xf6\xcc\xc1\xbc\x59\x9e\x9c\xd8\x6d\x74\xe6\x05\xba\xb1\x17\xe9\xfd\x00\x34\xa6\x14\xa6\xe0\x32\x7a\x72\xc2\x1d\xae\xc3\x79\x90\xa7\x74\x94\x0b\xba\x8c\xdc\x4e\xee\x93\x4f\x5b\xe0\xda\xd2\x71\x58\x8f\x3e\xeb\xb0\x18\xe2\xb7\xdf\xa0\x66\x2f\x3e\x9c\x29\xd6\x5c\x7c\x38\x53\xc5\x30\xce\xa1\x10\x88\x87\x84\x53\x6c\x3a\x11\x3b\x85\x96\xfb\xe2\xb5\xe5\xac\x63\x2e\xf1\x90\xf9\x72\x56\x76\x38\x89\x82\xf7\x2e\xfc\x21\xbb\xef\x2a\xa0\x19\xa8\xfb\x02\x40\xba\x0a\x46\xb9\x2f\xe2\x63\xc6\x39\xcc\x92\xf4\x44\x40\x26\x8d\x06\x5f\x82\xce\x97\x73\xc2\x7d\xe7\x2e\x42\xd8\x65\xed\x02\x0c\x73\x68\x31\x45\xe0\xa4\xc5\x94\xdf\x88\x56\xb3\x19\x76\xe5\xd2\xe2\x67\x58\xc1\x1a\xda\x22\x08\x64\xec\x36\x43\x2f\x1a\x87\x64\x64\x40\x24\xc1\xde\x24\xd3\x16\xaf\x11\x37\xe7\x04\x42\xfd\x72\xa9\xb0\x55\x3c\xa5\x50\xa4\xb8\x14\x38\x87\xa4\x19\x23\xaa\x60\x6f\xda\x12\x88\x6b\x6c\xd2\x1d\xf9\xc0\xb3\x0d\x2e\x8b\xbe\x21\xed\x6c\x8b\xbe\x21\x9d\x39\xf8\x9e\xb3\x4d\x3a\x8b\x97\x8a\xb5\x25\x22\x72\x60\x6f\x92\xf5\x7c\xce\xd9\xd6\x46\xc4\x0a\xec\x4d\xa2\x02\xb1\x02\x93\x8d\x38\x4b\x61\x65\x5d\x03\x5b\xed\x52\xc8\x98\xfc\x0e\xd1\x01\x53\xf8\x18\x87\xf0\x80\xa9\x6a\x5d\x30\x3c\x60\xf3\x39\x66\x2b\xe6\x54\x17\xd5\x78\x58\x75\x5e\x46\xd9\xbc\x44\xc1\x6e\x24\xe3\xd7\xe6\x53\x87\x97\x3f\x64\x37\xaa\x28\x4e\x85\xeb\xe7\x54\x34\x51\x84\xa0\x99\x62\x44\x64\xe7\x44\x4c\x82\xec\x1a\xe0\xc6\x71\x99\x3c\xb9\xeb\xe0\xbe\xe5\x4c\x55\x27\xf8\x4a\xdc\xe5\x34\x76\x62\x9a\x44\x43\xa5\x05\x6f\x45\x92\x4d\xa2\x18\x39\x58\x8d\xe1\x2d\xbb\xcb\x69\x2f\x3e\xfd\x2a\x0a\x67\xda\xea\xde\x0b\xa2\x26\x21\x8c\x18\x7c\xdd\x46\xf8\x4d\x2f\x4f\x73\x56\xf8\xd4\xb4\xbc\x10\x83\x2f\x4d\x6d\x67\x7c\xbe\x79\x8a\x67\x11\x91\xaf\xdb\xd6\x4c\x48\xe3\x74\x17\x11\x7c\xaa\x68\x3f\x00\xa0\x31\x67\xe9\xfd\x8c\xce\x37\xc5\xc1\x9b\x21\xb7\xcd\x0b\xe0\x3d\x5b\x5e\x89\x6f\x9c\xcd\xa5\x4c\xa4\xf9\xbb\x00\xe5\xb6\x2c\x50\xae\x1d\xfd\xf3\xa8\x6d\x8e\x8c\x6b\x67\xff\x5c\xdf\xcd\x57\x47\x45\xc1\x1f\x22\x7d\x08\x4f\x45\x77\x9b\xaf\x19\xb0\x6f\x3e\x69\x30\xa7\x35\xa7\xc1\xb9\xa8\x55\xc1\xf0\x7c\x53\x6b\x8b\x6f\x4a\x67\x8d\xe7\x8b\x58\x22\x6d\xe5\x04\x3b\xce\xe8\xdf\x0b\x68\x40\x21\x7b\x48\x5e\xbd\xf8\xf8\x4b\xb8\x31\x74\xc5\xb9\xc2\x0f\x72\xaa\x0a\x78\x9f\x8a\xf6\x54\x46\xf1\x9b\x12\x02\x08\xd3\xd7\x6d\x83\x67\x20\xbe\x59\x9d\x73\x52\xcc\x2a\x2b\xaf\xb6\x6b\x15\xbe\x78\x87\x44\x23\xfa\x22\xee\xba\x98\x82\xc3\xa9\x3a\x27\x8c\xf7\x57\x38\x91\x03\xac\x96\x32\xce\x41\x38\x2f\x78\x26\xc4\xf9\x82\x3c\x8a\xd7\x10\xc1\xee\xd7\xd6\xf0\xe2\x91\x0d\xe9\x44\x40\x16\xe9\x25\x2f\x46\x41\x88\xea\x72\xe0\xd2\x13\xb7\xbd\x78\x7d\xbd\xb8\x46\xb8\xd1\x9e\x34\xb8\x24\xaa\x0b\x45\xaf\x3c\x53\xbc\xcb\xee\xf9\x06\xb8\x3b\xab\x86\x37\xdd\x92\x4a\x7b\xd3\x2d\xa9\xf9\xc6\xa3\xd3\x39\xab\xa1\x6f\x3a\x29\x8b\xbf\x83\x83\x4f\x3d\x7c\xd3\x11\xf9\xe4\x64\xab\x9d\x13\x1e\x5b\x71\x29\x80\x92\x02\x9a\x1f\x0a\xce\xbf\xea\xef\xe0\x96\xec\x4e\x43\xab\xbb\xd3\xd8\x6a\xb7\x13\x53\xa1\x55\xff\xa6\xef\x5c\x8c\x01\x98\xe4\x28\xae\x2f\x38\xf6\x6a\x0b\x9d\xe5\x9a\x33\x60\x26\x47\x29\x2e\x85\x7d\x70\x29\xe8\x83\xeb\xe3\x09\x42\x53\xff\xa6\x23\xfd\xa9\xfd\x4d\x5b\xb5\x9a\x2d\xf7\xa2\x54\x3f\x40\x21\x47\xc8\xca\x0d\x28\x64\xf6\x91\x08\x61\xf5\xf2\xf0\x58\xc0\xb3\x3d\x3c\x16\x80\x42\x0e\xa9\x8c\x80\x42\x1e\x31\xab\x2a\xc1\xa6\x21\x9e\x61\x54\x3d\x1b\x89\x80\x8c\x1c\xe1\x0f\xe9\xb1\x74\xf7\x81\xcb\xb5\xae\x0c\x64\x64\x1e\xda\x62\x11\x46\x6f\xd8\xb3\xfd\xa6\x63\x66\xf8\x3b\x36\x5b\x4d\x03\x53\x86\x98\x8b\x50\xc8\xf1\x8c\x3e\xb8\x72\x3c\x89\xe8\x45\x71\x63\x5e\xa8\x42\x63\x81\x97\x58\xc3\x63\xc1\x68\x53\xd6\x69\x10\x53\x2f\x0f\x65\x45\x50\x3d\x3d\x5d\x77\x28\x2c\x35\xb5\x06\x38\xc9\x3c\x34\xdc\x08\xaa\x97\x87\x24\x06\x40\x93\x23\xaa\xcb\x84\x6b\xb5\xf8\x3b\x0c\xbe\x46\x0d\x30\xc9\x3c\xa4\x86\xdf\x72\x44\x86\x28\xc2\xcd\x87\x13\xe1\xc5\xe8\x2e\x14\xbd\xa8\x4e\xc3\x54\x64\x37\x1b\xde\x3e\xad\x18\xa0\x2d\x47\xb8\x69\xc1\x2e\x35\x51\x98\x0a\x4d\xe8\x4d\x57\x8c\xa6\x09\xd8\xcb\x3c\x92\x4b\x41\x27\xdc\x50\xba\x2c\xb5\x89\x13\x7b\x69\x3f\x20\xb0\x97\x79\xe4\xdf\x60\xd9\x00\x30\x73\x44\x71\x63\x38\x31\xa6\xd8\x25\x17\x0a\xee\x12\xcb\x12\xa6\x39\xa4\x7a\x11\xa6\x39\x8a\x29\x72\x97\x86\x82\x2e\x1b\x69\xe1\x37\x5d\x94\x62\x0b\x20\x38\xf3\xf0\x68\x73\x89\x48\x4d\xb8\xb9\x44\x3c\x67\x5c\x22\x6e\x19\xb0\xc3\x3e\x22\x02\xce\x39\xc2\x7c\x00\xec\xf0\x70\x8f\xb8\x5e\x3c\xa0\x5a\x2f\xce\x89\x1e\x79\xd0\x10\x3f\xcb\xb0\x2e\x80\x3b\xa7\xb1\x53\x37\x8f\xce\x97\x96\xd6\x2d\xfe\x55\x97\xe8\x58\x14\xdf\x7f\xe8\x4a\xec\x4d\x54\xe2\xdd\xc7\x29\x12\xce\xd2\x6a\x0a\x5e\x38\xb1\xc5\x87\x9e\xc5\xea\x0f\x61\x72\x90\xd6\x8f\xc8\x7c\x25\x75\x7f\x37\x90\x33\x44\xc1\x27\xd7\x5c\x3d\xcf\xd5\x43\x14\xce\xd5\x9a\x17\x46\xed\xb3\xea\xfe\xa1\x5b\xbd\xb9\x06\x60\xac\xbb\xcb\x44\x97\xb2\x4b\xa1\xd9\x44\xa5\x30\x10\x83\xcc\x89\x1f\xde\x3b\x0d\x17\x43\x37\xe3\x30\x85\x0e\x4a\x04\x01\xbb\x39\x8d\xe8\x03\x76\xb3\xa4\xe1\x42\xd1\xa5\x66\x0a\x5d\xd2\xca\x02\x78\x73\xfa\x04\xf0\x61\xb4\xf6\xe9\xea\xe1\xff\x9d\xae\x0f\x5d\xaa\x2e\x05\x5e\x46\x89\x00\x3e\xc4\xdd\xc2\x63\x88\x70\xed\x86\x09\x02\xd8\x39\x8d\x6a\xfb\xd0\x1d\x2f\x3b\xec\x47\x11\x2a\xa7\x13\xc1\xce\xc3\x1f\x62\x8f\x91\xb0\x02\xce\x73\x1a\xcf\xc8\x97\xb8\xa7\x1d\xa2\x08\x0c\x18\x59\xb2\x0b\x20\xd0\x69\x90\x1b\x02\x03\x96\x24\x9b\x20\x20\xa1\xc5\x0e\xc9\x0f\x5d\x97\x3a\x62\x02\xf6\x39\x0d\xa0\xfc\x90\x67\xb5\xe1\x7d\x18\xf7\xc1\xf5\xd1\x31\xef\xa6\x6d\xf2\x9a\x73\xc2\x31\x3f\x9c\xc6\x89\x51\x7d\x88\x4f\x62\xb8\x21\x21\xa1\xdd\x46\x60\xbc\xbd\x5d\xec\x0e\xfd\xe8\x81\x98\x27\xf1\xc5\x55\xe2\x62\xa9\x43\xb1\xad\x71\xd1\x3b\xce\xf5\x15\x17\x1f\x0c\x0c\x9e\x8e\xe3\xe2\x3b\xc2\x54\x0c\x03\x28\xd1\x60\x5c\x9d\x43\x6d\x50\x21\xea\x75\xa8\xcb\xdf\xc1\x25\xc9\x95\x18\x40\x89\x06\x71\xec\x87\x3a\x6c\xdb\xfd\x1d\x9f\x19\xa0\x42\x17\xc0\x85\x86\x4e\xea\x01\x5c\x68\xe1\x95\xd0\x43\xc1\x91\xca\xdd\x29\x80\x0b\x0d\x1d\xa3\x03\x6f\x61\x87\x8c\x2d\x01\xec\x67\x30\x36\xd1\xa1\xd0\xce\xe7\x3b\xb8\x4e\xb3\x3a\x8f\xc7\x81\xbb\x7b\x84\x40\x81\xf9\xba\xbe\x95\xcf\x71\xd1\x48\x19\x1a\x35\x78\x27\x09\xcd\x3f\x14\x8c\x94\xa1\xa1\x80\x91\x92\x97\xa0\x0f\xd5\x51\xc5\x14\x05\xde\x4b\xa6\xd0\x89\xa4\xa6\x81\xdb\xba\x3b\x21\x93\xa5\x3a\x01\x68\x7c\x7f\xbe\xc3\x60\x27\xb7\x85\x83\xad\xa1\x80\xdb\x9c\x91\x98\x7a\x20\x16\x61\x30\xbe\xd2\xa1\x32\x1f\x7c\x52\xa1\x0c\x46\x18\x2a\x14\x31\x9e\x65\x1d\x0f\xa0\x3d\x23\x7b\x26\x36\x59\xc6\x85\xa2\x13\x97\xc6\xd0\x8c\xa9\x76\x23\x56\x89\x74\x88\xb8\x74\x63\xc8\x43\xc3\xd7\xbf\xf8\x9a\xdd\x21\xd9\x0f\x27\x72\x6a\xfc\xe5\xe9\x87\x4e\x21\x01\x0c\x69\x64\xf5\x18\x18\xd2\xc8\x3c\x9e\x05\x50\xa3\x21\x9b\x4d\x20\x04\x61\xe8\x38\x18\x7c\xde\x5a\x20\xca\xe0\xf3\xd6\x53\xac\x07\xb8\x67\xe8\x10\x1b\x08\x41\x58\xe5\x0d\x08\x3e\x6f\x2d\xf0\x41\xf0\x79\x6b\x9d\x8f\x22\xf1\x7e\x76\x77\x1a\x1c\xe5\xdd\xa5\x04\xca\x6c\xa2\x16\xcf\x40\x2e\x94\x53\xea\xea\xe1\x51\x0e\xa7\xb1\xa1\x55\x14\x1b\xea\x62\xe0\x27\xef\x4a\x63\x74\x54\x77\x17\x6f\x28\x0a\x49\x1d\x7c\xb3\x5a\x27\xce\x00\xa2\x33\x84\xb0\x8c\xc4\x78\xa8\x5d\x03\xb3\x18\xa6\x7e\xa8\x4f\x0c\x88\x5a\x9d\x75\xa3\x18\x57\xf8\x02\xa5\x66\xe3\x45\x45\xf9\x54\x02\x20\xce\x74\x31\xac\xec\x21\x71\x6d\xb2\x6a\xb8\xe5\x33\xf4\x98\xea\xb4\x56\xf4\x29\xdd\xdd\x62\x1b\xa0\x3a\x43\x18\xad\xe0\x7b\xd6\x42\xb4\x06\x20\x9e\x21\x38\x57\x20\x22\x62\x95\x53\x2a\xf8\xd6\x35\xef\x62\x1e\x0a\x56\x7f\xb7\x06\xd1\xf5\xe5\xfa\x0a\x44\x4b\x4c\x23\x7b\xa6\x18\x1a\x67\xba\x31\xe4\x36\xf6\x9f\xaf\x54\xcb\x12\x13\x59\xc1\xf3\xd5\xe5\x4c\xd0\x46\x33\x85\x1b\x69\x9a\xe1\xac\x07\x7d\xb9\x47\x04\x10\x9f\x67\x90\x5d\x10\xbd\xc5\xdc\xcf\x82\xd1\x14\x2f\xa1\xf5\x03\x10\xd0\x34\x64\x09\x8d\xac\x68\xfa\x43\x45\xd1\xf7\x5d\x95\xc8\x6b\x68\xe5\x21\xe1\x9c\x6f\x2a\x17\xb7\x6c\xe5\xa9\x8d\x4c\x90\x47\x53\xcf\x42\x68\x08\x7f\xc8\x08\x38\xc3\x79\xc9\x14\xd3\x24\xc6\xd6\x3d\xa5\xe7\xbb\xf9\x4b\x35\xde\xe5\x62\x8b\x2f\x6e\x2c\x5d\x28\xea\xb6\xfc\xde\x43\x5f\x2a\xd6\x80\x04\x4d\xe6\xf5\x59\xcd\x8a\x1f\xab\x1e\x1a\x4f\x46\xf4\xed\x2a\x16\x0f\xb8\xd6\xfa\x6d\x70\xe9\x93\x95\xac\xef\x0f\xd9\x11\x53\x70\x89\x37\x57\x01\x97\x78\x73\x6b\x00\x57\x91\x7c\xe2\xb3\xd5\x02\x11\x04\x9f\xad\x1e\x49\xfb\x4a\x26\xcc\xa3\xea\x43\x39\xc4\x87\x06\x0b\x0e\x71\x5e\x41\x3a\x14\x66\xa4\xfb\x43\xdc\xf1\xf9\xff\x18\x3b\x97\xab\xe7\x79\x9e\x57\xb7\xb2\x4b\xb0\x25\xeb\x34\xf9\x7b\x91\xee\x24\xfd\x97\xb0\x57\x80\x0b\xf9\x86\xcf\x3b\xe4\xb2\xad\x93\x75\xa0\x48\x10\xcc\x66\xe6\x1c\xd6\xcf\xfa\x15\x64\xd0\xc0\xca\xcb\xdf\x26\xcc\x2b\x05\x7d\x24\xb9\x23\x42\x8a\x7e\x8f\xee\x85\x28\x40\x04\xbb\x9b\x18\x19\x9f\xc9\xee\x56\xed\xc3\xbe\x7e\x0f\xc5\xe7\xcf\x86\x46\x02\xeb\x95\x52\x95\xb1\x7a\xa5\x50\x66\x74\xca\x11\x03\xcf\x8c\x74\xf4\xea\x83\xf4\x52\x8d\x37\x92\xb2\x57\x8f\x14\x83\xfb\x1d\x91\xdc\x10\x93\x06\x2c\xb7\x95\xc6\x85\xfe\x95\x82\xb4\xdd\x4e\x36\x23\x12\x54\x5f\xac\x92\x4a\xb6\x07\x76\x0a\xe7\xab\xc6\x6d\xbe\x2a\xb9\x1f\x56\x1e\xca\xe1\xbe\xf2\xa5\xe3\xb9\xd2\xf8\xc5\xea\x63\x10\xb6\xb2\x21\xfc\x24\x63\x61\x32\x7a\x4a\x57\xfd\x6b\x02\xa9\x1e\xd0\xa7\x6a\x3c\xdf\x74\x6d\xdb\x38\x9b\x6a\xec\xf9\x9e\x91\x86\xf3\x46\xe6\x5d\x9c\xdb\x0c\x92\x03\xc0\x9d\xad\xf1\x2b\xea\x30\x29\xbf\x7a\x4c\xb9\x53\xd2\x0a\xc5\xb7\xce\xbc\xab\x70\xb4\x0c\x2f\x99\x1e\x50\xc7\xaa\x33\x3d\x70\x0c\x09\x44\xda\x7e\x03\x28\x07\x67\xcd\xd0\x1f\x66\x0d\xa5\xca\xc3\x89\x4d\x76\x09\x29\xda\x30\x9a\x2d\x21\x45\xef\x82\x4f\x7f\x55\x92\x42\x70\xbc\x18\x01\x5a\x80\x45\x2c\x21\x40\x1b\x46\x9f\xe5\x54\xd8\x05\x5c\xc4\x12\x04\xb4\x61\x68\x5f\x82\x80\x7e\x1f\x46\xb4\x47\x86\xbd\xc4\x99\xb1\x0b\x48\x8d\x25\xdc\x67\xc3\x90\xb8\x8c\xfb\x2c\xe0\x85\x96\x90\x9e\x5f\xb1\x21\x9a\x5a\x16\x95\xca\xe8\xce\x02\xb0\x67\x09\xdd\xf9\x15\x1f\xc4\xb7\xc5\x54\x2b\xb2\x0f\x0e\x24\x93\x41\x96\x27\xd5\x3a\xd1\xc9\x75\xe7\xa9\xb3\x99\xb3\x8b\x3a\x21\x76\x67\x83\x31\x1d\x64\x19\xec\x3e\x8f\xc1\x1a\xa3\xe5\xd3\x61\x91\x36\x2d\x23\x0d\x68\xd2\x32\x4b\x55\x9e\x99\xa5\x0a\x55\x52\x28\xcf\x46\x00\xce\x12\xca\xb3\x81\xd9\x5f\x0f\x10\xfe\x91\x26\xc8\xe8\x13\xed\xc2\xa8\xcf\x8a\xbb\x7f\x3d\x1b\x46\x2b\x5e\xde\xf0\x0c\xd0\x5e\x61\x3e\xa2\x4e\x8a\x23\x12\xce\xbe\xaf\xd4\x0c\x4b\x88\xd8\xfd\x25\x4d\xd2\xdc\xae\xdf\xfb\xda\x3f\xf7\x72\xe5\xe3\x6e\x51\x9b\x04\x20\x6d\xd1\xe8\x04\x20\x6d\x18\xb0\xd6\x13\xfe\xe5\xf4\x45\x69\x3f\x70\x4b\x2d\x01\x4a\x31\x5c\x2c\xe3\x49\xdb\xe2\xe4\x33\x87\x64\xcb\x68\x66\xde\xd3\x58\x13\x28\xe4\x59\xb3\x1b\x3c\xe5\x98\xf0\x0e\x41\xe9\x9e\x33\x69\x58\x12\x0c\xc0\x01\xaa\x82\x64\x68\x0a\xe3\x68\x9f\x3f\xe7\x83\x59\x23\xf1\xc1\x2f\xc1\x50\xef\xc9\x94\x10\xf0\xb4\x13\x2a\xb0\x44\x0c\xd9\x09\x07\x58\xcd\xe1\xc9\xcc\xa5\x66\x04\x00\xd3\xce\x49\xc0\xeb\xef\x99\x79\x10\x56\x1e\xca\x46\xf6\x20\x29\x06\x19\xe4\xc9\x52\xde\xef\x91\xc3\x49\xf8\xd1\x32\x38\x48\x9b\x91\xfc\xa8\x16\xcd\x36\x32\xc6\x5e\xf4\x8e\x25\x33\xb0\xd9\x46\x86\x4a\xd2\x6c\x23\x63\x3e\x0a\x4c\x7a\xc3\x93\xf4\x15\x65\x3a\xe8\x79\xf5\xa5\x57\xe9\xaf\x2e\x6f\x80\x70\x57\x23\x26\x94\xb3\x51\x10\xd1\xd9\xd2\x61\x5b\x00\x52\xe8\x96\x8d\x63\xe6\x4d\xdb\x38\x68\x9b\x0d\x00\x0c\xbe\x30\xa0\xb3\x65\xa0\xc8\x43\xc8\xbf\x6f\xbe\x85\x95\x7c\xf8\x72\xfd\x34\xc7\x17\x2f\xe6\x97\x80\x9e\x0f\xc0\xa4\x65\xa0\x27\x11\x17\x4b\x40\xcf\x67\xb2\xc3\x19\xe8\xf9\xa4\xa5\x24\x97\x9a\xf9\xd0\x50\x4a\x26\x98\xb0\x9d\x5f\x31\x2f\x5b\xa1\xcc\x80\x10\x93\x9c\xdf\x0a\xe4\x8d\x53\xbe\xdb\x43\xdf\xd9\xdb\x8d\xef\xbc\x3b\xbb\x79\xf7\x4e\x0a\x44\x72\x99\xd6\xb1\xe7\x48\xee\xe6\x25\x5a\xa8\x08\xc2\x7b\x62\xa8\x5d\xdd\xb9\x08\x7b\x4b\xb9\xcb\xc1\x7f\x29\xc8\xf4\x94\x77\xaa\xf1\xdf\xa5\x58\x5b\xb0\x50\x0a\xba\xc3\x44\xd8\x5b\x04\xe8\x5c\x39\xed\x9c\x1a\xbc\x44\x9d\x10\x82\xb3\xfd\xea\xd0\xb6\x59\x71\x61\xac\xee\x8c\xb0\x03\x41\x9e\x0f\x76\xb7\x6e\x7b\x6c\x8b\x24\x03\x65\x4b\x63\x64\xa5\xe0\xdc\x16\x67\xe3\xc2\x1f\xb8\xba\x73\x50\x70\x42\x19\xaa\x79\xdf\xe8\x56\x82\x6a\x8e\xdf\x77\x8a\xd8\x8e\x30\x9c\x55\x17\xc9\x8e\xf0\x14\x22\x87\x23\xb7\x7d\x53\x35\x02\x99\x5f\xdd\x96\xd3\x96\x67\xb2\x01\x72\x8b\x12\x2e\xb3\x62\x8f\x5c\x82\x65\xd6\x68\x0c\x86\x56\xf6\xc9\x26\x63\xa6\xc5\xbb\x73\x00\x76\x0e\xec\x3c\x9c\xde\x1c\xa9\x44\x7e\xad\x5f\x39\x72\xcb\xe7\x2f\xd9\x2d\x5f\xfe\x99\x96\xfc\xfb\xaa\x33\x82\xa5\x71\xb6\xf4\x65\xc6\x89\xa7\x8f\xc0\xa6\x35\x4c\xd9\xcc\x55\x4d\x88\xcb\x51\xa9\x71\x38\xde\xae\xe7\x4d\xed\x64\x14\x3a\x30\xf6\x2f\xa4\xb7\x46\x2a\x92\x36\x32\x56\xeb\x70\xdc\x05\x57\x1d\x73\x33\xf6\xc9\x44\x14\x37\xe3\x6c\x5c\x42\x04\x9a\x5c\x44\x49\x2e\x27\xd4\x6e\x85\xdf\x3d\xcc\x45\x84\xee\x32\xcc\xc0\x86\xc6\x61\x00\xe5\xdd\x6b\x44\xb6\xf5\x54\x62\x2d\xe2\x89\x88\x16\x41\x6b\x0d\xaf\x1c\xe9\x98\x54\x4e\x36\x25\xa7\xd1\xbe\xd8\x4c\x0c\xb5\x04\x36\xbf\x9c\x54\x9b\x1c\xdb\x5f\x51\x41\x7f\x29\xa4\x7f\xa7\x1f\x15\x10\x87\x81\x60\x0e\x59\x04\xc1\xa6\x50\x76\x94\x0a\xbb\xdf\x28\x46\x82\x49\xf6\xca\x1d\x03\x94\x64\x46\x0d\xa8\x52\xde\xac\x92\x28\x13\xa8\x12\x23\x21\xaf\x7c\x65\x8f\x13\x0e\xf2\xc6\xa4\xbf\x06\xd3\x8b\x56\x2a\x8b\x41\xcb\x44\xf0\x51\x98\xc1\x76\x02\xeb\x85\xf6\x2c\xe0\xe3\x8d\xed\x74\x91\xb3\x9a\xd9\xa5\x94\xd5\xbd\x71\x9e\x9b\x05\x32\x6b\x66\x2a\x76\xb8\x8d\x7c\x27\x94\x47\xcd\x9b\x5a\xa3\xac\x0a\xc1\x25\x7b\xa6\x85\xf1\x92\xad\xa7\x76\x75\xa2\xa6\x4c\x75\x62\xa4\x76\xaf\x91\x85\xe4\x4e\x14\x24\xe7\xf1\x8b\xa4\xbc\xe3\xe8\x08\xd3\x21\xf3\x68\xb7\xd3\x28\x0f\x34\x33\x41\x2d\x7b\xe6\xaf\x32\x62\xdf\x98\xb4\xd7\xcc\x14\x45\x6a\xa6\x37\x45\x9a\x9e\x1f\x79\x28\xc7\x3f\x2a\x92\x18\x21\xfb\xfa\x7d\x68\x78\xe1\xca\x97\xd2\x35\x52\xa3\x03\x32\xd2\xfb\x6d\xcd\x83\xfa\x85\xa6\xc3\x23\xb5\xa6\xb3\xa8\x5c\xe8\x0c\xce\x6c\x3d\xf3\x2b\x1c\x0a\xcf\xb6\x37\x85\xa7\xc3\x63\xb3\x9c\xe6\x7a\xf6\x7c\x37\x9d\x4f\x10\x49\x18\x8c\x92\x67\xde\x59\x52\xe1\x77\xfe\xae\xfc\x42\xa3\x4a\xf2\xb3\x8f\x61\x91\x9c\x2a\xd3\xb0\x92\x1e\x49\xed\xbe\x23\x49\x7f\x62\x7f\x16\x80\xb3\xaf\x8c\xb0\x26\x30\x1e\xce\x35\x0d\x2b\xc9\x90\x1a\x3a\x92\xbf\x6d\xe8\x08\x93\xdb\x29\xae\x0b\x13\x78\xd9\x7d\xcf\x88\x8a\x74\xb2\x14\x06\x46\xa4\x93\x37\x49\xde\xbf\xa2\x36\x3d\x26\xa9\x93\x5a\xd7\x9e\x42\x1d\x24\x48\x2f\x9c\xd5\xba\x30\x50\xcb\xba\xdd\xbf\x59\xf3\xbe\xaf\x1e\x57\x99\x4a\xe4\xec\x67\x9e\x0a\xd1\x79\xaf\x8b\x0b\xfc\xb2\x7f\x3f\x55\xda\xa3\x9f\x8e\x98\x99\x86\xc9\x2f\xfa\xca\xef\x2a\x6d\x88\x8a\x06\xc1\x8d\xb1\x96\x83\x38\x39\x65\x9d\xca\x7a\xf4\x7c\x29\x87\x21\xfa\xa4\x53\x59\x2f\x4e\xe7\x65\xd5\x8f\xdd\x51\x40\xcf\x32\x7a\xaa\xf8\xa8\x35\x48\x44\xaa\xa1\x15\x0b\xf7\x39\x16\xfa\x88\x70\x9f\x23\x16\x67\xa7\xb2\x7e\xa2\xc8\x08\xf9\x59\x88\x5b\x59\x4e\x65\x8d\x07\x6d\x39\x95\x35\xe1\x48\x6b\x99\xc6\x06\x62\x88\xb5\xec\x13\xed\xa9\x51\x4a\xe3\xc8\x33\x2b\x8d\x5c\x75\xc4\x73\x39\xb3\x31\x09\x24\x5a\x71\x0d\xad\xc5\x61\xce\x87\x8e\xee\x4c\xdb\xec\xf8\xcc\x7c\xf0\x05\x85\x8d\xc2\x20\xd1\x0e\x0d\xc7\x5a\xf6\x22\xad\xbc\x2a\x65\x97\x3d\x93\x9c\xd7\xe8\x84\x62\xc1\x5c\xc4\x7d\xaf\xe5\x60\xe6\xcc\x55\x07\x74\xae\x94\x29\x1f\x65\x7e\xb1\x03\x3a\x33\x19\x20\xc2\x4c\x87\xcd\x84\x89\x9e\x29\x24\xe8\xcc\xe6\xb7\x1d\x0c\xc7\xd6\x04\xbc\x13\x4c\xc1\x12\xbc\x73\x41\x40\xb0\x04\xe1\xac\xd1\x4f\xb7\x5d\x4f\xec\xf5\xdb\xae\xa7\x9a\x42\xe5\x7a\x62\xfd\x6d\xbb\x9e\xd8\xc1\x37\xa4\x6e\x1c\x7b\x4e\x6a\x5d\x52\xa8\x55\x4c\x0c\x42\x06\x7b\x8e\x45\x8f\x85\xef\x5c\x25\x4d\xb5\xbb\x89\x2d\x46\xf8\xce\xda\xd9\xb5\x85\xef\xac\xfd\xf7\x6c\x4a\x4a\xa1\xf2\x7f\xfc\xde\xdc\xce\x4e\x9e\x2a\x64\x3c\xff\x49\x32\x3a\xe3\x63\xd9\xd6\x38\x71\x6a\x28\x17\xf5\x8a\xda\xbc\x9d\x9f\x88\xf1\x36\x66\xf4\x77\xd6\x6d\xa7\x36\x63\x6a\x6c\x28\x58\xd9\xfe\x36\xe1\x40\x2b\x95\xc8\xf6\xd9\xf3\xee\xcb\x21\x77\x29\x48\xe6\xce\x9e\x5a\x6c\xb6\x65\x56\x6d\x8c\xf9\xa8\xe7\xdb\x04\x5f\x3d\x92\x83\x97\xd0\x4a\xb7\xa7\x67\xce\x74\x61\x45\x9f\xd8\x9c\x8d\x15\xbd\xa0\x66\x59\x02\x8b\xde\x2d\x5e\x8a\x4d\x36\xdd\x9f\xf8\xed\xdb\xcc\x10\xc9\xd8\x3f\x51\xca\xb7\xc3\x7f\xee\x9f\x78\x2c\xa6\x49\x2f\x8b\xa9\xe6\x6d\x31\x25\xe9\x14\x1e\x0c\xe1\xf1\xdd\xe8\x46\x79\x11\x48\xf4\x89\xaa\x28\x54\xe8\x13\xa5\x5a\xa8\xd0\x67\xf2\x9b\x8c\x0a\xbd\xef\x2b\xa2\x1b\x38\x91\x74\x1f\xbb\x7f\xe5\xbc\x3c\x2a\x79\xea\x89\xda\xc7\xbf\xf7\x6d\xe7\x91\xbe\x6f\xd4\x29\xe3\x3f\xef\x4c\x47\x91\x65\xb6\x38\x1d\x0e\x70\x63\xae\x8c\x02\x80\xb6\x98\x93\x05\xf2\x6c\xb8\xc9\x97\x28\x30\x1b\x80\xdb\x75\x50\x4f\x71\x02\x1d\xeb\xa3\xe9\xcb\x76\xc6\x3a\x06\x61\x3b\x5d\x22\xe7\x88\x99\x2b\x7f\xbb\xba\x98\x2b\x5b\xec\x09\xc2\x8a\x7e\x6f\x67\x79\xf8\x27\xfb\x0d\x4d\x37\x67\x21\x8f\x4c\x4d\x73\x5d\x79\xa6\x3b\x5f\x46\xda\xa0\x62\x96\x0e\xc0\xce\x91\x67\x02\x17\xb2\x3c\x04\xec\x2c\x04\x40\x2d\x81\x37\x0b\xbe\xff\x25\x48\x66\x25\x02\x66\x99\x8c\x32\x65\x1a\x92\x49\xbe\xb2\xaf\x28\x5f\x34\x43\x25\x72\xca\x15\x53\x8b\xc8\x29\x57\xcc\x30\x7f\xc6\xda\x15\x04\x7b\x00\x11\x04\x0c\x1e\x29\x43\x78\x5b\xce\x45\x73\x53\x76\x80\x85\xcb\xdc\x94\xed\x57\x9d\xb3\x95\xa5\x69\x8b\xfb\x37\x9f\xca\xb8\x52\x52\xac\x60\x72\xb1\x51\x38\xe1\xf1\x8c\x12\xf7\xe7\x1b\x6f\xcf\xab\xdf\xad\x32\xce\xd9\x3f\x52\xa2\x71\x36\x8a\x94\xb2\xc6\xa5\xae\xfc\xc6\x0b\x46\x92\xa5\xf4\xc6\x2b\x46\xd9\x3f\x65\xe0\xc8\xdd\x95\x5c\xc7\x37\x3f\xca\x6c\x96\x4f\x49\x37\xb7\x6d\xb2\x91\x86\xa6\x11\xcd\x31\x35\x2f\xad\x71\xee\xfb\x14\xa2\x3c\x2a\x0c\x8d\xf3\xe0\x33\xa4\xc2\x56\xb0\x29\x09\xe3\xd9\xef\xbc\x27\x8f\x22\xcb\x40\x10\xcf\x5c\x1c\xfe\xbc\xc9\xac\xf4\x46\x40\xe0\x3b\x6d\x3a\x0e\x3d\xa1\x4d\xd2\xe6\xee\xb4\x43\x57\x95\xfb\x57\xb7\x62\x4f\x9e\x54\xfe\xd2\x28\x20\xf8\x46\x95\x0a\x74\xa3\xc2\x0f\xea\x3c\xc7\xfd\x61\x80\x94\xe7\xb8\x57\xf6\x13\xa7\x39\x0e\x58\x41\x20\xce\x5e\x59\x74\x02\x71\xf6\x7a\xa7\x18\x59\x10\x51\x17\x05\xdb\xec\x30\xcd\x2c\xc1\x36\x7b\xfd\xd5\xf0\x92\xe4\xce\xbf\x6c\x81\x66\xad\x0a\x7e\xd9\x2b\x7b\xd2\xcb\x16\x67\xb4\xfa\x97\x0d\xce\x25\xdf\x2d\xb5\x65\x21\x6d\x7d\xd7\x90\x64\x2e\x47\x1f\x16\xfc\xb2\x43\x16\xb4\x5e\xde\x47\xee\x7c\xa7\x5b\x6e\xfa\x20\x55\x2d\x58\x05\x71\x5b\xde\x2d\x36\x78\xb3\x5b\x92\x2a\xeb\x2b\x5a\xe5\xca\x28\x6e\x1f\xa5\x34\xdc\x06\x93\x18\x26\x5f\x66\xc3\x9a\x79\xa8\xb5\xf4\x44\x7a\x3b\xab\x14\x8d\x75\x54\x43\x2a\x39\x4e\x5c\xc6\xc0\xe9\xe0\x02\xfa\xb5\xcc\x4c\xd9\xe6\x7f\xb0\x51\xbf\x1c\x00\xc1\x1a\x34\x89\x65\x9b\xa9\xc2\xfc\x13\x79\xa6\x2d\x61\xa5\x42\xdd\x22\xd9\x0d\xcd\x5a\x19\x13\x26\xac\x95\x2b\xdf\x69\xb1\xb6\xbc\xa9\xf3\x0b\xc5\xd9\x09\x8f\x21\xe6\x58\x4e\x78\xbc\x60\x83\x58\x6f\x5f\x8c\xd1\x31\x9d\xf1\xb8\xcd\xbc\xea\x8b\xf1\x42\x72\xb3\x3b\x92\x9b\x9d\x37\x15\x47\x80\x16\x6f\x38\x26\xa0\xad\xf5\x36\x5f\x1c\x7b\xde\xdb\x97\xdf\x99\x32\x15\xb7\x31\xf3\xa6\xb3\x3a\x31\x53\x9c\x1e\x19\x40\xd9\x7a\xfb\xf6\xbb\xf2\x4c\xb7\x5f\x2c\x9d\x6f\xdf\x7e\xd9\x37\x04\xce\xec\x30\x1e\xac\xb7\x6f\xbf\x4f\xde\x74\xb3\xa9\x5e\x5c\x5c\x6d\xa6\x06\xdd\xe7\xd9\x14\x9c\x2a\x39\x16\x17\x27\x47\x06\xb2\xb6\x9c\x1c\x19\x7c\xe0\x7a\x3b\x97\x20\x3b\xcb\x9b\x7c\xa2\x6c\x18\xe6\xc2\x9c\xb9\x36\xbd\x0d\x13\xce\xfe\xfb\xf6\x4d\x95\x5b\xc4\xdb\x37\xd5\x8c\xb7\x59\xae\x52\xac\x4f\xbf\x9c\x8c\x6f\xdf\x54\x5b\x5e\xd5\x4d\x35\xbd\x72\x00\x44\x7a\xe5\x9b\x6a\x7e\x94\xb6\x3a\xc2\x20\x97\x08\x2e\xfb\xca\xd8\xc8\xe6\x07\xa3\xda\x7a\xfb\x16\x9b\xd1\xf7\x2d\x96\xc3\xef\xed\x00\x88\x74\xd1\xe1\x36\xf1\xfc\x7d\x1c\xd7\xc0\xdf\xff\xd8\x25\xc1\x2e\x2e\x60\x65\xcf\x1d\xee\x63\x07\xc5\xc8\x77\x6e\x76\xde\x74\xb3\x23\xe9\x82\xdd\x53\xa6\x22\x35\x50\xc5\x05\x97\xec\x8b\x1b\xc5\xc7\x81\x0c\x3d\xdf\xc9\x9e\xc1\x8f\x12\x5c\xb2\xe7\x28\xfc\x78\xb6\x31\x13\x3f\x0b\x7e\x09\x24\x99\x05\x18\xec\x0f\xc4\xf7\x79\x66\xe2\x28\x6a\x58\xb6\x66\xd0\x16\x6d\x98\x2d\x97\x34\x73\x5d\x92\xdb\xf0\x2b\xaa\xdd\x6c\x3c\x1f\x18\xf3\x53\xce\xf6\xc1\x8c\xa4\x3e\xf5\x48\xea\x13\xa7\x87\x89\x30\x83\xfe\x31\x5e\x32\xc8\x18\xc1\x25\xfb\x4a\x7d\x36\x0c\x32\xa1\xcd\x7c\x99\x9b\xb6\x99\x2f\x41\x37\xaf\x8f\xad\x30\xac\xfb\x8f\xad\x30\x3d\xcf\x34\x49\x5a\x9e\x59\x81\xe0\x4f\xd8\x4c\x3d\x22\xa9\xd5\x4f\xea\x23\x1d\x27\x92\xfe\x04\x77\x69\x73\x64\xe6\x66\xef\x4c\xc9\x71\xda\x7d\x1c\xf7\xc3\x62\x36\x63\x26\x94\x2c\xeb\xe3\x69\x5f\x23\x55\x7b\x0f\x90\x44\x76\x96\xf1\x24\x03\xe1\x7f\xc0\xee\x7d\x6c\xbd\x69\x29\xc6\xdd\x65\x40\x1d\x14\x84\x2e\xf0\x71\x78\x1a\xd8\xf9\x65\xe6\xcd\xc5\x5a\x16\xac\xb2\xaf\x9e\x0f\xdf\x76\x74\xe4\x4b\x2f\x6d\x7d\xb8\x2f\x43\x33\x88\x3e\xd9\x4e\xdc\x4c\x82\xca\xaf\x48\xe8\xfc\x44\x74\x88\x5a\xc9\xb7\xc2\x87\xe0\x2d\xdb\x97\x71\x41\xd8\x82\xb7\xe0\x93\xdf\x16\xf2\xad\xe9\xe0\x3c\xc7\xb7\xf0\x93\x85\x50\xd2\x7d\x39\xee\x62\x45\x92\x19\x7d\xe4\x3b\xa9\x90\xbf\xef\xa6\xbe\xa3\x79\x8e\xad\x18\x91\xcc\xac\xbc\xf2\xa1\xc2\x5a\x66\x0a\x55\xb0\xce\xcc\xb3\xb7\xb7\xf7\x07\x51\x56\x9a\xc1\xab\x4a\x36\x58\x7d\x48\x6d\x01\x28\x8b\x39\x4d\xbf\x12\x27\x3f\xe5\xd8\xa4\xed\xe5\xb8\x85\xa0\x1c\x75\xd1\x1c\xeb\x8c\x8b\xb1\x32\x15\xe1\x4c\xa1\x0a\xc7\x49\x4b\x85\x46\xaf\x33\x6f\xba\xa5\x15\x49\x0c\x7b\x2b\x92\x1a\x3a\x69\xb6\x38\xe5\x6a\x9a\xe6\xc0\xa1\xd4\xa0\x08\x8d\x3a\x69\x0b\x6a\xe5\x4d\x85\xa6\x22\x5c\xf9\x53\xbe\x95\x64\xa4\x9c\x44\xfe\x57\x87\x86\x78\xe5\x4d\xb5\x74\x44\x92\x55\x2e\xbd\x77\xe0\x50\xfa\x6b\x28\xaf\x73\x6b\xf7\x2d\x58\x64\x21\xac\x78\x0b\x16\x59\xb0\xdc\xef\xdb\xa6\xc7\x99\x67\x32\x3d\x32\xfa\xa2\xd6\x1c\xf0\x94\xec\xdb\x96\x47\x5f\x2e\xf6\xed\xa8\xa2\x99\x52\x6c\x1e\xaf\x79\xe8\x3e\xa5\x7a\x85\xe4\x8c\xbc\xba\x7d\x10\x56\x44\x77\x2a\x75\xb8\x53\x17\x92\x7e\x86\xf7\xad\x7d\x9b\xee\xf0\xd7\x52\xcf\x1a\x5a\xea\xb8\xa2\xbc\x69\x7e\x6c\xa6\x82\x60\x99\x05\x7e\xdb\x7d\x9b\x0a\x31\x7d\xb2\x52\x80\x69\x63\xdf\x26\x23\x20\xc6\x6a\xdf\x0e\xc2\x25\x84\x70\xdf\x8e\x6e\xc4\x93\xbd\x6f\x87\x31\xa4\x05\x0e\x4e\xe8\x7c\x69\xc2\xc1\x0c\x80\x23\xce\x58\x53\x42\x34\x0e\xf6\xca\x7d\x3b\x98\x87\xd9\x2f\x44\x63\x01\x74\xb1\x6f\x33\x0c\x0e\xaa\x77\x30\x0f\x6b\x51\x88\xc6\xc1\x6e\xbc\x6f\xc7\x94\x65\xdc\x1c\xbd\x93\x31\x75\xf4\x43\xc6\x46\x9c\x82\x2b\xff\x4d\x91\x88\xb0\x30\x6d\x13\x5f\x12\xef\xbe\x45\x7c\x59\x30\x26\x6f\x81\x1d\x0b\x1c\x25\xbb\x38\x94\xe7\xf7\x26\xba\x4d\x8a\x91\xc3\x7f\x46\x52\x97\x18\x7e\xf3\x60\xb2\xa9\xef\x02\x01\xfa\x95\x87\xea\xd3\xfc\xb7\xa9\x63\x9b\x25\x93\x0b\xde\x16\x64\x32\x90\xff\x2d\xc4\x64\xbc\xd0\xbb\x98\x64\x70\xf0\xa6\x43\x7b\x1a\x9d\x72\x68\x0f\x13\xc5\x9c\x99\x8b\xc1\x17\x3e\xb2\x0c\x66\xad\x19\x34\x47\x6a\xd0\x26\xb9\xd2\x43\x83\x18\xf8\xbd\x46\x47\xb6\xeb\x8e\xe8\xa6\xa5\x7a\x35\x8d\xe9\x56\x6c\xbb\x66\x2e\x9a\x25\x13\x26\x9a\x2d\xfc\x63\xa0\xfa\xbb\x38\x60\x87\x7f\x5f\x1c\xb0\xc3\x0c\x12\x18\x72\x70\xfa\xec\xe2\x80\x9d\x5f\x29\xce\xfb\x79\xd3\x0b\x47\xec\x8c\xbc\x2a\xeb\xf4\x8c\xa4\xc1\xcf\xef\x56\x02\x1c\xc8\x3d\x76\xf1\x54\xef\xf4\x77\xbb\x13\xa9\xc2\x9d\x48\x0d\x9a\x5e\x9d\xee\x6e\x4f\x2f\xba\xab\xb4\xc1\x23\x65\x3a\xc2\x8d\x49\x5a\x58\x22\x94\xe2\x40\xde\x74\xe2\xbb\x60\x26\x7a\xfc\x86\x92\x33\xff\xd3\x7b\xab\xf3\xee\x7d\x45\xdd\x3f\xb0\xb2\x6e\xa3\x24\xc7\xe5\xcb\xf0\xae\x44\x80\xd3\x3a\xa3\x1d\x3b\x7e\xe8\x5d\x1d\x90\xc6\x9a\xad\xce\x58\xf9\x50\xb0\x88\x32\x27\x5c\x6a\x5b\xe0\xc7\x09\xe4\x6e\x8b\x28\x73\x12\x2c\xb0\x05\x85\xac\xdc\xa3\x77\x35\x7e\x0c\x94\xe2\x16\x14\xb2\x72\x91\xde\x30\x65\xb2\xdb\x0a\x18\x59\xb9\x10\x6f\x33\x65\x02\x73\xdf\x42\x42\xce\x9e\xc6\x88\x2c\xa3\xe7\x4d\x81\xd0\x89\x6a\xd8\xd5\x31\x3c\x23\xcf\x34\x74\x85\xda\x45\x15\x08\x89\xc1\xae\xa6\x0a\xe4\xf7\x0b\x22\x59\x81\x1a\x6d\x21\x24\x2b\x30\xa4\x2d\x48\x64\xe5\xc2\xbf\xab\xa1\x37\x19\x27\x9b\x83\x6e\xc6\x50\x3c\x99\x25\xed\x34\xea\x9c\x73\x47\x08\xc8\x8a\x31\x60\x57\xe3\x70\x56\xbe\xd3\xf0\xfe\x9e\xa9\x2d\xe9\xbb\x90\x37\x50\xf3\x6d\xc1\x1d\x27\x11\x24\xbb\xda\xa5\xc2\x42\x14\xd8\x71\x72\xa7\xdc\xd5\x1e\x95\x99\x52\xde\x2a\x33\xdf\x7d\x54\x26\x92\xc3\x1f\xd8\x14\xaa\x3d\x2a\x2c\x75\x41\x1d\x2b\x28\xdc\x5d\x1d\x96\xc3\x5e\x5a\x3d\x31\xf3\x37\x8f\x46\x97\x33\xb7\x3a\x2c\x67\x45\x12\x96\x68\xe6\x4d\xf7\x28\x35\x68\xc2\x64\xfa\xc8\xbd\x42\xd4\xc4\x36\x5f\x26\xf0\x96\x6d\xbe\xcc\x9e\x7f\xa4\x24\xc2\x50\x4b\x6e\xe1\x21\x6f\x92\x4d\x7d\x45\xab\x92\xd6\xb3\xf7\xe3\xb4\x76\x10\x31\x6e\xe3\x23\x87\xd3\x1f\x7e\x45\xfd\x0b\x76\x73\x91\x64\x56\x00\x69\xfb\xf1\xc4\x2f\x79\xa6\x7e\xfc\x87\x48\xf2\xfd\x38\xce\x0d\x2d\xcb\xb0\xca\x79\x5d\x11\xb7\x46\xee\x46\x3a\x92\x52\x87\x3d\x61\x79\x53\xab\xe2\x57\xbf\xfe\x62\x49\xbb\x15\x5c\xc5\x1e\x09\x81\x26\x47\xc2\xe3\x35\x82\xae\x6a\x3a\x4d\xcc\x67\x1b\x3a\x4d\x0e\x08\xd3\x69\xc2\xe7\xb8\x85\xb5\x9c\xc4\xb0\x6c\x61\x2b\x67\xb6\x4f\xe7\xda\x6e\xd9\xe9\x1f\x2e\x6e\xbf\xa7\xdb\x8c\xad\x29\x48\xfe\x3d\x3c\xa3\x5b\x40\xc7\x09\xb8\x76\x3f\xcc\x5b\xbe\xb4\x31\x00\xc4\xda\x36\xa5\x65\x94\xde\xc7\xd8\x9d\x87\x4e\x8a\x19\xb0\xb0\x83\x0b\x81\xb8\x08\x17\xdf\x02\x20\x2e\x82\xb2\xf7\xe3\xd0\x1c\x74\x97\xc7\xe9\x54\x31\x85\xef\xc7\xb1\x39\x6c\xa2\x8f\xdd\x7d\x0f\x63\xec\xd0\x9c\x4c\x15\x51\x61\x96\xdf\x77\x72\xa9\xcd\x48\x2f\x55\x91\x37\xdf\xce\xad\x92\x62\xd4\x0b\x46\xc3\xc4\x98\x85\xd9\x69\x62\x4c\x3c\xd3\x5b\xc4\x98\x0b\x78\xf3\x6e\x66\x77\x87\xe1\x6a\x8b\x26\x73\x01\x00\xda\xa6\xc9\x84\x39\x61\x37\xf2\xe0\x8d\x88\x8a\x8c\xfa\x95\xe3\x86\x17\x24\x35\x9c\xb6\x35\x07\x9e\xd9\x34\xb1\xcd\x85\x59\x52\x8a\x32\x93\x15\xce\xa5\x66\x7c\x19\x7f\xbc\x39\xf0\x8c\x65\xd3\x1c\x78\x96\x1e\xa2\x4a\x72\x1f\x6b\x56\x11\xd2\x6e\xa5\x26\x23\x9a\x7d\x37\x47\xa5\x71\x62\x37\xbb\x02\x7f\xdf\xb9\x13\x34\x4d\xf1\x92\xf8\x53\xb6\x40\x8f\x0b\xd0\xc0\x16\xe8\xb1\x82\x11\xde\x06\x3d\x02\xaf\xdb\xcd\x11\x6b\xa8\xe3\xe2\xcc\xac\xfd\x61\xf0\x37\x5b\x03\x7d\xda\x1e\x7d\xfa\xb4\xdd\x43\x7a\x8f\xd1\x8a\x75\x6a\x3e\xcd\xd2\xf2\xa1\xdc\xb2\x35\xd2\xf0\xc9\x4b\x53\x45\x99\xd9\xd3\x61\xa1\x8a\x60\xf6\xd9\x26\xd0\x84\x20\x60\x0b\x3c\x59\x7b\xba\xaf\x28\xa2\x92\x4e\x39\x82\xed\xc9\x33\x2f\xfe\x3c\x53\x17\xd1\x49\x9a\x23\x2b\xb9\x9c\x98\x4d\xb3\xa4\xc3\xc7\x4c\x2f\x19\x45\xbc\xe2\x2d\xef\x7a\x82\x45\x6a\xaa\x91\x3a\x04\xdb\x05\x61\xb6\x9b\x39\x62\x33\x52\x5e\x34\x28\x0f\x42\x60\x56\x28\xdc\xb6\xc9\x35\x4b\x7e\x86\x97\x10\xdb\xab\x01\x96\x1d\x68\xde\x16\x63\x66\xed\xac\x36\x31\x66\xae\x5c\x62\x0d\xaf\x9c\x17\x07\x61\x77\x44\x26\x2b\xba\x1b\x67\x84\x43\x69\x3b\xfb\x35\x60\x93\x2d\x46\xcc\xb5\xca\x7f\xd0\xa4\xbb\xe3\xdb\xf8\x53\x42\x57\xae\xdc\x4d\xc5\x8f\xb9\x30\xbe\xed\xee\xf9\x5e\xf3\xa6\x98\x47\xd3\x2b\xd1\xc2\x02\x1f\xda\xc2\x56\x2e\xcc\x6d\xbb\x83\x34\x62\x29\x76\x07\xbf\x71\xa6\x89\x29\x73\x61\x0b\xdb\xdd\xa9\x4a\x67\xaa\xff\x93\xcb\x3a\xc5\xa8\x4f\x4f\xbe\x73\x96\x5a\x36\x5f\x80\x98\xa8\x44\xdd\x6e\x71\xfe\xa2\x81\x98\x0f\xec\x5c\xbb\x3b\x35\x29\x17\x67\xc1\x32\x17\x06\xcd\xdd\x1d\x19\xd7\x52\xa8\x20\x7d\x9c\xf6\x82\x69\xae\xf5\x2b\xc5\xee\xf4\x54\xa8\x3e\x55\x7a\xb1\xdd\xa7\x7c\xe7\x3e\xe5\x3b\x85\xc9\x71\xbe\x74\x87\xc9\xad\xd4\xf7\xd6\x9b\x91\xe4\xf7\xcf\xff\x95\x8e\x02\x22\x6a\x77\xbb\xb7\xd0\x4a\x9c\x58\xbb\x57\x36\x86\x6e\x18\xf1\x93\x57\x15\x1c\x85\x52\xd4\xed\xef\x62\x66\x0a\xfa\xb9\xc0\x2b\xed\x6e\xbe\xd8\x99\x42\xdd\x25\x9a\xed\x20\xb9\x99\x37\xdd\x89\xd4\xa7\xa9\x57\x19\x6d\xa5\x8f\x07\xcd\xb9\xbb\x23\xe6\x6c\xf6\xdd\xe6\xd3\xec\x39\x87\x05\xee\x7c\x88\xc3\xd9\x02\x77\x2e\x0c\x6e\x5b\x74\x9a\x0f\x31\x25\x7b\xd8\xaf\x6a\x7b\xdf\x16\xd4\x73\x61\xc1\xdc\xc3\xae\x54\xb4\x30\xf1\x65\x2e\x0c\x75\x7b\x98\x1e\x79\xe6\x3b\xcd\xa7\x95\xef\x3c\xf6\xa9\xdd\x2b\x26\xb5\xab\xd9\xec\xc2\x82\x88\x3e\x04\x37\x6d\x43\x44\x1f\xd2\x5c\xec\xe1\x6c\x95\xa8\x99\x02\x85\x2e\x4c\xb4\xdb\xe9\xbb\x5b\xfe\xa1\x59\x36\xe7\x85\xaa\x37\xbc\x10\x58\xfa\x83\x6d\x99\xad\xd7\x60\xce\x0b\x7e\xa8\x6d\xa6\xcc\x0b\x16\xa6\x6d\xa6\xcc\x0b\x6a\xab\x3d\xcc\x5e\x0c\x9b\xd3\x36\x55\xe6\xd5\x52\x8f\xa6\x2a\x31\x78\xdb\x64\x98\x13\xda\xd5\x6d\xf6\xcb\xab\xe5\x97\x48\x15\xb9\x20\xb1\xdc\xc3\x81\x6e\xcc\xc8\xe1\x30\x4e\x68\xa2\xb6\x41\x9f\x17\x04\x53\x7b\x18\xdd\x01\x17\xd5\x1e\x8e\x66\x63\x81\x08\xf6\x79\x5f\xc0\x29\xf7\x30\x7e\x1d\x64\xe2\x76\x4a\xef\x0b\xc2\xab\x2d\xb2\xcc\x6f\xef\xf8\xa5\x66\x73\xc0\x82\xbc\x8d\x12\xed\x33\xbf\xd8\xe8\xf6\x96\xff\x7f\xdc\x81\xfc\xc8\xa3\x0e\x70\xb6\x8b\x2e\xf3\xdb\xe2\xbc\xfb\xb1\xe8\x6a\x8d\x1b\xbd\xa0\xeb\xda\x62\xcc\x7c\x88\xac\xdc\xd3\xcc\xc6\x6c\x77\xd3\xb6\x58\x5c\xfb\x5b\x38\xd2\x6f\xa5\x11\x85\xd5\x67\x5e\x1b\x48\x7a\xc1\xed\xb5\x8d\x24\xbd\x00\x81\x6e\x41\x49\xbf\xcd\xef\x88\xcb\x4f\xff\x9d\x5b\x60\x0b\x69\xfa\x10\x9b\xbb\x27\xa0\x3d\x4e\x39\xa0\xa6\x24\xb2\xd8\xd3\x8c\xc9\xd0\xcb\x6f\xc3\x4b\x2f\xa0\xb6\x5b\x88\xd2\x87\xf0\x81\x3d\x1d\x19\xca\x70\x1b\x43\x7a\x41\x70\xb6\x0d\x22\xbd\xa0\x66\xdb\xa6\xef\xbc\x80\xd7\xee\x49\xa4\x68\x6a\x75\xa4\x28\xd0\xf6\x3d\x1d\x29\x3a\x22\xd9\x53\xfb\xe4\x5d\xff\xc7\x2b\xa2\xa1\xb2\xfc\x2a\xa7\x28\xbf\x08\xa6\xda\xd3\xa1\xa3\x23\x0d\x56\x3c\x31\xca\x9d\x01\xa9\x17\x24\x77\x7b\x3a\x4b\x35\xfa\xdc\x74\xe2\x55\x4e\x7b\x83\x4e\x2f\x68\x43\xf6\x64\x19\xb1\xc5\x4f\x96\xd1\x95\x97\x0d\xe2\x49\x67\xb4\x8e\x56\xac\xd8\xd3\xcc\x7a\x7d\xa6\x56\x85\x11\x13\x47\xbd\x8d\x4b\x6d\x80\xa7\xb7\xf0\xa5\xf7\x7d\xe7\xa7\xdb\x9f\x9c\xb3\x6c\x9a\x09\xf9\xfe\x89\xdf\xd9\x34\xd3\x46\xa0\x4e\xd4\x6a\xa8\x53\xfe\xaa\xe2\x9a\xe7\x9d\x37\x8d\x74\xca\x3f\x76\xd8\x07\xd8\x83\x2d\x02\xd1\x67\x66\x02\x83\x7b\x62\x11\x99\x41\xf4\x86\x14\x73\x9b\x42\xf4\x22\x08\x60\x9b\x43\xf4\xce\x79\xba\x26\xde\x97\x8a\x28\x54\x14\xeb\x6f\x11\x21\x32\x23\x2a\xd6\x00\x6c\xc4\x5e\x46\x49\x31\xa2\x82\xaf\x3e\xf3\x57\xe9\x72\x93\xf2\xf0\xe8\x61\x3e\x34\x07\x20\x1d\x5f\x00\x9f\xd8\x67\x97\xe3\x46\x63\x74\x59\x8b\xf6\xf2\x2d\xb4\x78\x69\xaf\xdc\x78\x0f\x0c\x55\x5b\x69\xd5\xbf\xdf\xe6\x69\x73\x83\x69\xbf\xe3\x4a\xc1\x84\x6c\x63\x58\x9f\xb8\x12\x44\x55\xfa\xcc\x3b\x92\xff\x4d\x47\x32\x0c\x8d\xdf\xb8\x16\x3f\x27\xb5\x1a\x86\x96\xfe\x98\x61\x19\xb0\xc9\x76\x16\x76\xd2\x84\x6d\xe3\x58\x6f\x60\xf9\xdb\x59\xd8\x67\x0a\x12\x04\x70\xb2\x9b\x1b\xc7\x3a\xf1\x24\xef\xb5\xe9\x1b\x9d\x21\x7d\x7f\x5a\xe8\xb4\xc3\x77\xc6\xc5\x7c\xcb\x77\x7e\x3a\xb3\x9f\x23\xc6\x29\xdc\xef\x4c\x68\x52\xb8\xc3\x9b\xba\x85\x6d\x7d\xe6\xef\x5d\x77\x2e\x53\x62\xf3\xb3\xf8\xb1\x76\xec\xc5\x5e\xba\x0e\x57\x0e\xbe\x75\x70\xca\x9d\x0e\x39\x42\xe0\xfa\x89\xef\xff\xfb\x7f\x8d\x08\x9b\x6d\x1e\xd2\x3b\xd7\x33\x21\x4c\x5b\x4e\xfb\x9d\x40\xa6\x81\x58\x5c\xcd\x42\x74\x74\x2e\x1a\xab\xe0\xa8\x2d\xca\x87\xe1\xa8\x77\x6e\x5a\x49\xb7\x8e\x7a\x07\xa5\x68\xd4\x62\x73\x8a\x76\xf2\x10\xed\x6d\x70\x5f\x2e\x54\xdb\x09\x18\x7b\xfd\x77\x94\xcc\x36\x44\xf5\xce\xfe\xb8\x89\x08\x40\x05\x13\x62\xb5\x01\x54\xdc\xa6\x27\xbd\x73\xfd\x83\x9f\x34\xf7\x46\x13\x94\xde\xb9\xd5\x08\xc1\xda\xa2\xd6\x9a\xa1\xf4\xce\x0d\x04\x8a\xd2\x58\x50\x85\x61\x6d\x00\x17\x37\xc9\xdd\x33\xfc\x9b\xb0\x96\x96\x92\x1c\x6b\xfc\xe4\xa9\x62\x8d\x57\xca\xb5\x2f\x65\xa6\xc1\x74\x8e\xbf\xe3\x4c\xc7\xb9\xe9\x09\xe4\xda\xe2\x16\x10\xc8\xf5\xfb\x90\x4f\x1d\x57\xcd\x11\xa3\xd4\xf0\x8d\x60\xb6\xbd\x09\xab\x6e\x29\xc7\x7d\x63\x1d\x99\x36\xf5\xce\x2d\x6d\x3b\xae\x1a\x88\xd5\xde\xc4\x55\x3f\x29\xea\xb8\xaf\x79\x59\x90\xc8\xf4\x6d\x3b\x52\x39\x63\x68\xb0\xd0\xca\x0c\x31\x5a\x08\x46\xa0\xbd\x4d\x00\x9d\xbe\x19\xaf\xf8\x9b\x97\xf6\x4f\x5f\x25\x25\x4d\xbd\x1b\xc9\xd1\xa0\x33\xe5\x9a\xb8\x7c\xa6\xdc\xa3\x77\x53\x90\x9b\x84\xfa\x6e\x24\x6b\x8b\x19\x45\x6c\xa7\x0d\x62\xc3\x2d\xb6\xd3\x06\xe9\xe0\x36\xbd\x69\x89\x96\x7c\x60\xd3\xe5\xc2\x62\x7e\xd3\x92\x3b\x8a\xa1\xac\xc9\xc5\xb7\xcd\x70\xda\xa2\xd2\x1e\xcf\xfe\x98\x2f\xcd\x71\x5a\xe0\xa3\xd8\x87\xe8\xe9\x27\x4f\x1d\xf7\xc4\xef\x30\x7a\xb5\xc0\xbf\xb0\x0f\xf1\xd2\xfc\xca\x63\x02\xde\x27\x3d\xf8\x4e\xe9\x16\x85\xf1\x18\x7c\x11\xe7\x37\xdc\xa6\x51\x36\x4d\x6e\x5a\x60\xdf\xd8\x62\x37\x6d\xd1\x67\xc4\x6e\xda\x88\x7e\xdc\x66\x37\x2d\x24\x2c\xd8\x20\x5f\xd1\x77\x83\x7c\x65\xba\x9b\xfb\xb4\x40\xed\xb0\x8f\x31\x6b\x70\x8c\x6c\xa7\x7f\x2f\xb9\x31\x89\x19\xb5\x45\x37\x36\x30\xb6\x3c\xf9\x01\x01\xc6\xe6\xdd\x6d\x91\xf6\x9a\x9f\x1e\x6e\x8e\x6d\x64\x6c\xc7\x7a\x71\xcc\x56\x4f\xc4\xc3\x36\x36\xf6\xe7\xb4\x13\x21\xea\x9d\xe8\x84\xed\xac\xee\xf3\xe2\x20\x71\x22\xf7\xfa\xfb\x77\x90\xd2\x63\x17\x12\xd5\x69\x1b\xf9\x1b\x9a\x6b\x31\x6e\x99\xea\xb4\x46\x61\x11\x5c\xf6\x2b\x36\xc4\x62\xf1\x46\xac\x16\x2b\xe2\xa3\x92\xf2\xb0\x79\xfe\xe4\x53\x05\x71\xf3\xe3\x8c\x84\x4d\xe4\xe7\xfe\x23\xe3\x36\xd3\x47\x94\xa3\x2d\x13\x51\xb9\xd7\xef\x9a\xa9\x26\x28\xec\x6f\x41\x0a\x09\x7b\xd7\xdc\x11\x94\x80\xfd\x2b\x52\x6e\xb6\xa6\x3c\x55\x3c\x78\x4c\xde\x7f\x06\x24\x50\xa7\x0d\x0b\x94\xea\x6c\x5e\x58\xb5\x04\x68\xed\xfd\xba\xff\xbd\xb3\x3b\x75\x7b\x5c\x92\xf0\x9a\x32\x03\xcd\x6b\xfa\x5c\xa9\x5c\x5e\x6e\x76\x37\x81\x5a\xc7\xc3\x66\xfc\x67\x52\xc8\x15\x49\x5e\x40\x76\x45\xf3\x98\x3e\x9c\x0e\xf0\x98\xce\xdf\xab\x32\x4d\xa6\x17\xc7\x0e\x95\x7c\x68\x57\x0f\x8d\x51\x74\x07\x91\xcc\xfb\xcf\xee\x87\x92\xc6\xd8\x30\x1f\xc9\xb6\xb9\xbc\x29\xf7\x0a\xa5\xbc\x6c\xed\x65\x25\xbc\x6c\xed\xe5\xb7\x39\xa9\x7b\xf0\x0e\x2f\x9b\x77\xb9\x87\xbc\x1c\xf7\xc1\x89\x21\xcc\x6b\x05\x13\xbc\x85\x79\x5d\x71\xe3\x0b\xf3\xfa\xe4\xa8\x79\xd9\x04\xd0\x52\xa6\x58\x8a\x5a\xde\xb4\x09\x20\xa5\xc8\x72\xd1\xd2\x16\x5d\x2a\xd2\x32\x53\xe9\xa4\x65\xcb\x77\x5d\x34\xcc\xd7\x32\x57\x39\x07\xcb\x0b\xa5\xf1\xc9\xa7\x28\x8d\xf9\x16\xa5\x97\x26\x18\x7a\x08\xb5\xf7\x7e\x59\x4d\xcc\x58\x71\x86\xa6\x9b\x3a\x43\xef\x2b\x05\x99\x3a\x7e\xa5\x9a\x8f\x76\x71\x5e\x65\xff\x49\x67\x94\x10\x3e\x46\x8a\x97\xb3\x2c\xe6\x51\xfd\xbf\xff\x37\xd3\x56\xdb\xbf\x68\x9a\xce\xcb\x58\x58\x0d\xa5\x9d\x19\x55\x26\x26\xff\xc6\x2c\x37\x3d\x83\x25\x2f\x59\x36\x25\x21\x62\xbf\xf3\x8d\x1e\xfa\xb2\xff\xeb\xd3\xb1\xd2\x9f\x77\x7d\xe0\x45\x12\x54\x84\xd6\xe8\xb8\x1b\x51\x80\x04\x82\x5d\x69\x8d\x80\xd4\xf1\xc7\x82\x73\x65\x13\x14\x23\x69\x8f\x73\xef\x0d\xa5\x23\x53\xd3\xa9\xdb\x83\xa9\x78\x73\x77\x99\x48\xc2\xc2\x8d\x14\xa3\xdd\x92\xb5\x27\x12\xd2\xf1\x5c\x79\xb6\x84\xa1\x49\x29\x5b\x52\x45\xfa\x2e\x93\xeb\x27\x7d\x24\x79\x3d\xc3\x25\x9a\x32\xed\x79\xaa\x79\x26\x0f\x11\x17\x0f\x71\x89\x56\x22\x92\xf6\xdb\x7e\xa8\x9f\x24\xef\xec\xef\x3b\x2d\x60\x66\xe6\xdb\xac\x76\xec\x65\x6f\xac\x48\xfc\xf9\xb7\x79\x93\x08\x2b\xdd\x6f\x67\x0f\x62\x11\xbd\xb9\x0c\xa7\x01\x5c\x86\x6b\x9e\xfa\x3a\xc0\xfe\xfa\xb6\x4e\x9f\x3f\x2e\xfc\x6a\xbb\x33\x3a\x5b\x13\x93\xc3\xc2\xf8\xd5\x02\x93\xd2\x16\x62\xb5\x11\x4e\xbf\x8d\x58\xcd\x89\x24\x8c\xea\xbd\x32\x58\xc6\xe3\x8d\x3c\x1b\x1a\x64\xaa\x30\x79\x2d\x33\x4c\x69\xd6\x6b\xc9\x10\xd8\x31\x9a\x4e\x1e\x05\xec\xe3\x15\x33\xdd\x67\xef\xff\x86\x03\xee\x70\x81\xb2\x32\x3f\x56\xfb\xc9\x5d\xb8\x3f\x84\xf4\xd0\xc9\x8f\x51\xf7\xd1\x4a\x45\xe4\xf9\x3d\xaa\x1a\xa2\x41\x4e\x08\x7f\xea\x72\x24\x85\x30\xe4\x33\xa9\x14\x8c\x86\x93\xae\x93\x85\x6b\x1b\x7c\x0a\xf7\xd8\xfe\xd8\x13\xc5\xd9\xf3\x31\x84\x8f\x86\x2e\x0f\x5b\x3e\x23\x06\x07\xc9\x27\x4f\xde\xdc\xfa\x6b\xa9\x4e\x8d\x5c\x08\x72\x49\x42\xe7\xb6\x9d\x66\x3d\x3e\x52\xd1\x6f\xf6\x80\x43\x3e\x36\x5c\xfe\x5a\xa6\xad\x86\x54\x72\x5b\x60\xd3\xf1\x5c\x79\xd5\xc7\x12\x4d\x13\x62\x2f\x08\x0b\xc1\x4b\x07\xd1\x0f\x5b\x7c\x9b\xe3\xc1\xfa\xe3\xa4\xeb\x13\x3e\xd7\x2d\x9c\x68\x25\xe8\x6f\x9b\x54\x93\xd8\xc1\xfd\xb1\xf7\x92\xa3\xee\x43\x76\x7e\xb6\x97\x8f\x99\x04\x7b\x3e\x94\xc9\x37\x63\x88\x31\xd0\x03\x70\x2e\x6c\x1e\x1e\xd4\x63\x68\xe6\x45\x00\xf8\x31\x34\xf3\x22\x76\xe0\x18\x9a\x79\x93\x5a\xe0\x18\x9a\x79\x93\x48\xf3\x5c\x32\x07\xa2\xd4\x9c\x0b\x13\x88\x8f\xa7\x73\x7d\xe7\x51\x23\xfe\xec\x5c\x5c\x26\x7b\xde\x35\x51\xc0\xca\x53\x6b\xa7\x2d\xa2\x78\x6c\x00\x19\x1f\xf1\x67\x8e\xb4\x48\xce\xf0\x87\xc6\xcb\x17\xfe\xf0\x95\x31\xf2\x56\x2e\x8f\xc0\x9f\xa1\x00\x3d\x22\xcf\xec\xa4\xc3\x39\x97\x7d\x3a\x11\x14\x0c\xe3\x09\x7d\x8c\xf6\x24\xe8\xfc\x08\xec\x79\x3f\x2d\x9d\x50\x9c\x07\xf0\x86\x23\x78\xe7\xcd\x44\x3a\x4a\x87\x5e\x08\xf8\x3f\x62\xc4\x2c\x44\x99\x1c\xe3\x39\xc9\x25\x70\x84\xe7\x2c\xc4\x95\x1c\x61\x36\x83\x30\x3b\x97\x29\xb7\x17\x35\x6c\xaf\x7e\xca\x64\x3a\xd0\x6c\xc3\xe5\x51\x4c\x8e\xa9\x2d\x17\xdc\xb8\x47\xd4\x96\x0f\x97\xc7\x63\x0c\xa7\x6f\x78\xe7\x0a\x81\x4f\x3e\xec\x1a\x99\xbc\x69\x08\x67\x9a\x23\x3c\xc7\x93\x67\xba\x11\x61\xad\x3e\x57\x0e\xb1\xb4\xe7\x7c\xcb\xe9\xf4\xd1\xf8\x24\xfc\xe9\xe7\x32\x33\x71\x9e\x7d\xf4\xa6\x1f\xdd\x0e\x97\x8d\x20\x84\xca\x85\x50\xb4\x67\x0c\x24\xed\xa7\x3d\xcf\x94\x96\xc6\xbb\xcb\x11\x0e\xf3\x4e\x82\xf9\x23\x20\x66\xc8\xed\x8f\xf0\x94\x49\x59\x73\x84\xa7\xbc\x33\xdc\xa2\xb9\xec\x6c\xfd\xc7\x49\xcd\xef\xb4\xc5\xf6\x60\x7e\xf6\x6d\xfb\xef\x45\x99\xbe\x87\x01\xe7\x3c\x62\xbd\xbc\x89\x80\x38\x66\xbd\xec\xb0\xdd\x9c\xdb\xe6\xdf\x2b\x75\x38\x84\xea\xdf\x31\x35\xc7\x94\x98\x2b\xed\x96\x86\xc4\x74\xbe\x9d\x3b\x8f\xc9\x26\xf8\x66\x87\x89\xec\x38\x8f\x79\xad\xf4\x50\xd8\x76\xf2\xa9\x1c\xb3\x5e\x82\x87\x38\x22\xbd\x0c\x0a\xfb\x38\x8f\x39\xe1\xbf\x47\x18\xd0\xa4\x68\x3a\x22\xbd\xec\xc4\x3f\x1c\x93\x5e\x26\x50\xe6\x08\x20\x1a\xb2\xf9\x63\xd2\x4b\xf4\xc7\x23\xb8\x68\x27\x97\xf6\x11\x5c\xf4\x06\xe4\x70\x6e\xd3\x67\xa4\x42\x5b\x0f\xf2\x2b\x30\x1e\xa4\x46\x29\x5a\x25\xff\x50\x90\x75\xd2\x4d\x9e\xdb\x4e\x14\x42\x85\xcf\x6d\x53\x42\x06\x43\xb3\x12\xce\x97\x73\x1f\x58\xcd\x90\x7c\xeb\xcd\x9b\x1f\x73\xd1\x59\x2c\x56\xb5\x18\x9b\x62\x16\x36\x5a\x53\x3c\x31\xd9\x13\x8b\x29\xd9\xac\x12\x1f\x21\x46\x3b\xa9\xc4\x8f\xa9\x33\xd9\xcf\x4f\xb1\xfd\xe1\x49\x99\xfa\x33\xd6\x7c\x8e\x60\x9f\x9d\xcb\xca\x29\x0e\x6e\x2b\x29\x53\xbb\x23\xfb\xb7\x79\x32\x41\x55\x1c\xa5\x4a\xef\x04\xb4\x1e\x41\x42\x93\x92\xee\x14\x1b\x1a\xe8\xbc\x40\xa0\x37\x70\x88\x23\x10\x68\x07\x77\x77\x8a\xe9\x85\x98\xf9\xc5\x21\x72\x35\x6f\xba\xd5\x79\xa6\x19\xd4\xf2\xcc\x21\x79\xb4\xcc\x21\x72\x3f\x49\x5b\x3c\xf3\x50\xf8\xd0\x5e\x33\x12\xde\x48\x4b\x5a\xa6\xa1\xc7\xe9\x71\x04\x02\xbd\x1b\xf4\xeb\xa7\x70\x44\x66\xa0\xec\x8e\x18\x54\xe2\x44\x3f\x2b\xaf\xaa\xd8\x3b\xe5\xc8\x50\xc4\x2c\x35\x7b\x65\xfb\xf5\x58\x31\x18\x3d\xad\x3b\x04\xe2\x21\xe9\x0e\x44\x44\xf9\x71\x1e\x75\x58\x02\x8e\x30\x9b\xbd\x67\x88\xb5\x7b\x02\xf7\x3a\x4a\x9c\xde\x7b\x1a\x2e\x2b\x04\x50\xa8\x03\x80\x73\xa6\x14\xfd\xee\x9b\xdf\x26\x87\x06\x90\xba\x53\x1c\x05\xc7\x36\x5b\x7c\x03\x60\xa7\xa9\x9e\x96\x35\x92\x9a\xed\xab\xca\x11\xe3\x65\x07\x6a\x78\x84\x01\xed\x40\x29\x8f\x20\xa0\x37\x90\xc1\x03\x04\xd4\xaa\xf4\x11\x02\xb4\x63\x15\x38\x42\x80\x76\x94\xf5\x63\xfa\xcb\x1c\x07\xc6\x7c\x02\x12\x3c\x75\x12\x18\xd1\x11\xdd\xec\x82\xa4\x5f\x51\x23\x69\xc7\x00\x96\x75\xc4\x86\xd9\xb1\xc4\x1e\x41\x40\x3b\x6c\xce\x47\x10\xd0\x9e\x53\x4e\x10\xd0\x0e\x68\xed\x98\x19\x13\x80\xe6\xa9\x8e\x82\xe3\x54\xad\x24\x35\xa5\x17\x0e\x53\x5a\x29\x65\xf8\xe4\x42\x5a\xfa\x2e\x6f\x2a\xc4\x25\xe3\xeb\xe3\xff\x3f\x64\xfc\x3a\xd5\x7e\xbc\x95\x42\x3d\xa3\x19\x1a\x6b\x95\xac\x04\x21\x49\xef\x46\x2a\xfc\x53\x1d\x3f\xc7\xc6\x6e\x6e\x4d\x20\x7b\xa7\x32\xf7\x69\x37\x76\x98\x48\xc6\x61\xa5\x14\xcf\x35\x2a\x74\xa2\xac\x9e\x32\xd5\x43\x16\x3e\x39\xd4\xcb\xef\xe1\xd1\xca\x4f\xa1\x7f\x92\xf2\xaa\x7b\xc1\x00\x6f\xeb\xc6\xf9\xce\x13\x91\xdf\x24\xc8\x33\x01\xb7\xa7\x7a\xfd\x4c\xde\x3c\xfe\x69\x74\x89\xe5\xc3\x00\xfb\x22\x94\x69\x79\xdc\x50\x26\xb0\x43\x88\x88\xab\x3e\x8f\xc3\xec\x18\x60\xe1\x3e\x47\x0e\xe0\x07\x2f\x07\xd3\x54\xb0\xcf\xc1\xcd\xf4\x3c\xbe\xed\x32\xa4\x42\x7d\xde\x0f\xe1\x6c\xe7\xf1\xe5\xf7\x62\xe5\x0b\xf7\x39\x72\x92\x0a\xda\x39\x30\x2d\x1f\x41\x3b\x07\xd6\xbe\x23\x64\x67\x27\x4a\xe1\x08\xd9\x79\x43\x74\x7d\xcc\x9e\x99\x23\x48\xc8\xce\xf1\xdc\x69\xb8\xc2\x6f\x4b\x6a\xf8\xa8\x06\x6a\x17\x68\x1f\x6b\xe3\x11\xb2\xb3\x63\xb2\x38\x42\x76\x76\xf0\xee\x47\xd4\x98\x03\x03\xf3\x31\x33\x26\x8e\xc9\x23\xf4\xe6\x88\xfa\x21\xf0\x66\x27\x80\xe0\x3c\x4c\x6f\xda\xa9\xe9\x0d\xa2\xe4\x3c\xe6\x42\x5a\x91\xd4\xce\x5f\x5b\x14\x67\xc7\xd6\x22\x56\xcc\x11\x1d\x46\x2c\x98\xe3\x4a\x6f\xe5\x99\x68\x17\xa7\xaa\x79\x2f\x57\x86\x70\x33\xda\x29\x47\xed\x66\x7e\x3d\xb6\x16\xb2\x41\x9a\x12\x13\xfc\xd0\x11\x8e\xf4\x5e\xbf\x1a\xd5\xee\x12\xe9\x4f\xad\xa1\xdd\x8e\xbb\x63\x63\x35\xe7\x25\x00\x9e\x63\xca\x4b\x48\xfd\xce\xc3\x9e\x4f\xed\xc7\x98\xf9\x48\xbe\x84\x32\xf6\x0e\x37\x5d\x79\xa6\xf9\xc4\xe6\x69\x02\x4c\x80\x64\xc7\xf0\xd3\x95\x7f\x7d\x3c\x9b\xe8\x91\x0e\x00\x90\x4d\xc7\x04\x98\xe0\x70\xce\xe3\xc8\x3a\xb6\x52\xd3\x61\xc2\xae\x70\x1e\xc7\xd9\xcd\xb4\xc5\x7f\xc2\x35\x08\x6e\x3a\xa2\x95\x36\xe3\xfe\x19\x89\x66\x0b\x10\x1b\x8b\xa0\xa0\xf7\xc0\xce\x7d\x9a\xf7\x40\x0c\x4b\x47\x48\xcd\xf1\xd0\x1a\x33\x52\x56\x56\xa5\x90\x9a\x25\xda\x47\x73\xfc\x5b\x6e\x84\xe4\x37\x07\x11\x76\x84\xce\x1c\x64\x09\x3f\x42\x67\x0e\x28\x66\x8f\xd0\x99\x83\x74\xaf\x47\xe8\xcc\xf1\x30\xf7\x9a\x2f\xd3\x25\xcf\xda\xb7\xc6\xdf\x9b\xba\x20\x71\x20\x34\x5f\x9f\x53\x9f\xaf\xcf\xf5\xdf\x1c\xd8\x47\xd8\xcc\x12\xdd\x53\xd8\xcc\x02\x97\xc0\x11\x1a\xb3\xd4\x5f\xf5\x5a\xb0\x25\xcf\xde\x7a\xc6\x40\x79\x0a\x45\x3a\xee\x52\x24\xdd\xc1\xb2\xcf\x03\xc7\x84\x29\xe5\x08\x7f\x59\xa2\x8c\x09\x7f\x39\xf0\xa9\x1c\xe1\x2f\xc7\x93\x2e\xda\x02\x94\xa1\x51\xdc\x1c\xd6\x91\x23\xfc\x65\xa9\xbf\x2a\xb6\xbe\x4b\xfd\x47\x65\xa6\x94\x3f\xb5\x8d\xdf\xa6\xe0\x28\xbc\x06\x47\x99\xce\x07\xd4\x26\x47\xcc\x98\x83\xa4\xe8\x47\xb8\xcd\x81\xcb\xe6\x74\x8c\x43\x1c\xce\x42\x71\x8e\xe7\x27\xc9\xe8\x81\x02\x2f\xce\xcc\x81\x5f\xe8\x08\xd3\x59\x72\x47\x10\xa4\x73\x90\x04\xfe\x88\x30\xb3\x40\x9e\x70\xc4\x98\x59\xa0\x67\x38\xdd\x16\xc7\x92\xea\x3d\xf7\xf2\x9d\x3b\x98\x32\xfd\xd3\xd2\x6c\xff\xb4\x94\x29\x7e\xac\x95\x76\x7e\xac\x6c\x51\xcc\x72\x0f\x17\x92\x26\x22\xd3\x5b\x3c\x9b\xe3\xb9\xf3\x4c\xb7\x78\x96\x85\x70\xa1\x25\x8a\xb0\x70\xa1\x05\x96\x87\x63\xd2\xcd\x90\xa0\x1d\x93\x6e\x3e\xbf\x57\x3d\x4b\x69\x69\x18\x5e\x69\x2a\xd8\x63\x76\xa5\xee\x63\x3d\x47\x99\x20\x96\x25\x36\x15\x41\x2c\x67\x8e\x27\x41\x2c\x67\x36\x5e\x81\x2a\x0b\x4c\x3c\x47\xa0\xca\x02\x37\xd0\xe9\x60\x0f\x6a\xc4\xa2\x87\x7c\xa8\x58\x8f\xec\x9f\x82\x51\xce\xec\xed\x82\x51\x96\x99\x01\x50\x74\xc7\x95\x2e\x6b\x62\xce\xfc\x37\xb2\xf8\x8e\x54\x21\x3b\x06\x4b\x58\xa8\xca\x99\x33\x41\xa8\xca\x02\xf3\xf8\x11\xaa\x32\xd6\xc7\x23\x54\x65\x1c\xef\x47\xa8\xca\x32\x19\x46\xa1\x2a\x67\x36\x3b\xc1\x28\x7f\x47\xbe\x80\x93\x05\x63\xfb\x31\x63\x26\xb8\x8c\x23\x18\x65\xc1\xf3\x70\x94\x92\xbc\x64\x55\x2a\x25\x79\x50\x18\x47\x10\xcb\xdf\xf1\x24\x88\x65\x0c\xea\x47\x10\xcb\x02\x99\xd1\x11\xc4\xb2\x40\x3d\x7f\x04\xb1\x9c\x17\xeb\x69\xd8\x14\xce\xca\x33\xef\x66\x16\x90\x40\x95\x05\x2e\xa5\x23\xda\xcd\x02\x90\xe6\x08\x61\xf9\x9b\x08\x42\x58\x4e\x1c\x86\x47\x08\xcb\x79\x65\x24\x14\xd2\x44\xb8\xd7\x11\x07\xe7\xbc\x9e\x48\xfa\x2d\xec\x50\xc3\xe4\xc2\x1c\x02\xe2\xe7\x2c\xa0\x66\x8e\xe8\x39\xe3\x4c\x3e\xa2\xe3\x2c\x70\x4b\x1d\xb1\x71\x06\x36\x72\x44\xc6\x19\xe8\xca\x11\x82\xb3\xc0\x6c\x7f\x04\xe0\x0c\x3e\xf9\x88\x8d\x73\x5e\x4f\x24\xfd\x95\xeb\x3f\xe8\xcf\x42\x7a\x4e\x9c\x45\x47\x40\xcf\x32\xf3\x73\xb7\xbb\xc4\x8f\x50\x64\x54\xf4\xb0\xe1\x05\xc2\xf2\x15\xca\xb3\xcc\x5f\x29\xfa\x49\x35\x6f\x7a\xa2\xa5\x4b\xea\x2e\xc7\xc1\x60\x5b\x47\x3a\xfe\x65\x0c\xa8\x02\xf8\x66\x86\xe9\x78\xda\xd1\x16\x05\xf0\x91\x39\xe0\x0c\xaf\x9d\x5f\x29\x9e\x84\x91\xf4\xcb\x58\x2d\x02\x82\x96\x99\x9f\xab\x4d\x1d\x8c\xda\x11\xee\xb3\xcc\x4c\xf3\xe3\x69\x97\xef\xe4\x9a\x64\x1d\x0f\x2f\x9d\x9f\xf4\x36\x0d\x86\x9b\x3d\xbd\x5a\xa8\x1e\x76\xd0\x5c\x73\x84\xeb\x9c\x31\xbf\x1a\xd6\xd9\x32\xf3\xa6\x57\xcf\x95\x2f\x0d\x45\x62\x72\x43\xd8\x49\x94\xe2\x31\x4c\xf2\x37\xf9\x0c\x84\xfc\xad\x04\x01\x21\x2b\x41\x2d\x67\x7a\xf6\x31\xa7\x84\x83\xac\xb1\xf0\x08\x06\x39\x41\xd8\x9c\x69\x62\xa6\x9e\x52\xe4\x65\x65\x4e\x4d\x87\xde\xa1\xfa\x0a\xf5\x58\x63\xc2\x12\x0f\xe7\xec\x23\x6f\x2a\x10\x8f\xf3\x50\x34\x9c\x35\x86\x12\x21\x22\x6b\x6c\x4f\x02\x44\xd6\x92\xda\x45\x88\xdd\x47\xbe\x53\x10\x1b\x26\x60\xa3\x21\x7f\x13\x7c\x3a\x0b\xc1\xfd\xfb\x52\x7e\x64\x4e\x96\x69\x7b\x6d\x8b\xa4\x3e\x61\x26\x12\x65\xe7\xec\xe9\x21\x86\x7e\xea\xb0\x65\x97\x1b\x8a\x18\x3b\x67\xc7\x8e\x3d\x1d\xa6\x97\xf1\xd5\xd6\x0d\x60\xeb\x08\x4f\x59\x89\x92\x3a\x02\x50\xd6\x58\xde\xa6\xbd\xdf\x23\xdf\xc9\xfb\xdd\xf2\x4c\xad\x4e\x3b\xed\xe1\xc6\x72\x3b\xed\xe1\x66\xd4\x04\x90\x9c\xc0\xad\x8e\xf0\x91\x13\x2c\xd6\x11\x3c\xb2\x12\x27\x72\x84\x8e\xac\x44\x3e\x1d\xa1\x23\x67\x6c\xcc\x42\x3c\x4e\x20\x51\x47\x7c\x9d\xb5\xfc\x24\xb7\xa5\x23\x79\xcc\xf2\x9d\x5b\x96\x67\xe2\x3b\x27\xf8\xe2\x18\x0b\xd9\x63\x9d\x76\x9e\x75\x5c\xb1\xc7\x89\xd6\xc1\xac\x1e\x21\x21\x67\xc7\x82\x23\x20\x64\x8d\x39\x6d\xd9\x39\x89\xdd\x60\xd9\x39\x99\x1e\xc6\xc5\x94\x0f\x35\xc0\xbf\x0a\x97\x23\x90\xf3\x50\x81\x7f\x28\xed\x8b\xb9\x9e\xd6\x68\xae\xf7\xbc\x29\x2f\x5e\x4b\xdb\x3c\x2f\x22\x69\x5e\xf0\xd7\x04\x88\x9c\x3d\x63\xba\x3d\x2f\x1a\x92\x7a\x98\x1a\x3c\xf3\x99\xb3\x82\x43\xce\x3e\xf2\x4c\x3d\x1c\xf9\x4e\x61\x8f\xf3\x3f\xec\xd0\xcb\xd1\xaa\xcc\xfc\xc5\xb2\xe0\xb7\x29\x51\x1c\x61\x67\x67\x79\x19\xfc\x24\xfd\xb6\x74\xd0\x53\x9d\x29\xbb\x98\xdc\x8c\xa1\x27\xf7\x4f\xf2\xe4\xa6\x06\xf4\x92\x3c\xeb\xd6\xad\xf3\xd0\x2b\x36\x0f\xd5\x34\x2c\x66\x66\xf5\xec\x58\x89\x9c\xed\xbd\x13\xb6\x71\x36\xd7\x7f\x66\xdf\x76\x84\x33\x7b\x8b\x19\x38\x89\xbc\x3a\xdb\x24\x4f\xb0\x4b\x1c\x21\x1c\x57\x6e\x45\xc2\x30\xae\x5c\x12\xb6\x03\xed\x50\x70\x84\x60\xac\xe9\xa3\x20\x8b\x2b\xfa\x2d\x44\x9a\x23\xcf\xc6\xf7\x59\xda\x66\x22\x4d\xa6\xa9\x89\x34\x73\x45\x31\x22\x71\x90\x82\xe5\x6c\x3b\xc3\x57\x5e\x15\x2f\x3f\x73\x78\x3b\x7c\x6e\x44\x52\x43\xaf\x54\xe8\x86\x22\x29\xb6\x08\xc2\x8c\x63\xca\xcd\xdc\x97\x04\x46\xac\x99\xb3\x02\x23\xae\x98\x6f\x05\x46\x5c\xb9\xd9\x08\x8b\x58\xb3\x7b\x09\x8a\xb8\xa2\xdc\x0b\x89\x58\xfb\x8c\xa4\x10\xc0\x99\x37\x15\x1f\xc7\x5f\x13\xf9\xe6\x8a\xae\x2d\xf2\xcd\x9a\xb9\x2e\xee\xcd\x95\xbb\x9b\x30\x89\x0b\x50\xc2\x11\x24\x71\xe5\xb2\x28\x44\xe2\xca\xf5\x41\x88\xc4\x0a\x94\xe3\xec\x80\x85\x68\x8c\x73\xba\xb1\x64\xc4\xbb\xb9\x62\xcf\xda\x98\x6e\xd3\x6e\xb9\x5e\x01\x45\x1c\x81\x15\x6b\x4e\x0b\xd3\x6e\x4e\xb8\x9f\x8f\x72\xb8\xd7\x2c\x36\x41\x17\x17\x38\xcc\x23\xe4\xe2\xca\xc5\x4e\x14\x9c\x2b\xb7\x99\xe3\x30\x52\xf4\x0a\x65\x74\x5f\xd0\xe0\x9d\xe3\x48\xba\x1e\x49\x5d\xbc\x23\xb9\x8b\x37\x92\x7f\x45\x41\xd2\xaf\x40\xaf\x38\x86\x19\x8d\xbc\x29\x98\x11\xf7\x25\x81\x1d\x57\xdc\x95\xc2\x3a\xae\xdc\xe4\x8e\x23\xfb\x59\xf7\x42\x3a\x3e\xf7\xaf\xd5\xea\xdf\x9d\x67\x76\x3b\x47\x52\xff\xd0\x78\x04\x7a\x5c\xb9\xc6\x0a\xf3\x58\xb3\x41\x1d\xaf\x10\xd4\x8f\x03\x00\x20\x92\xfb\x47\x8f\x14\x9a\xd7\x7e\x6f\x0a\x46\xb5\x52\xc3\x54\x0d\xb4\xda\xbb\x33\x34\xb0\xc7\x89\xdf\xe7\xc5\x81\x74\xe0\xf4\x61\xe1\x09\x1c\xb9\x62\xfe\x38\x4e\x85\x34\x52\x92\x39\xa6\x2e\xb4\x8a\xe3\xdc\x70\x98\x86\x84\x59\x7c\x88\x9c\x38\x4a\xfd\xbe\xa0\x19\x39\x4a\xfd\xbe\x62\x42\x53\xea\xf7\xe7\xce\x50\x39\xcc\x8d\xf9\xad\x64\xef\x0f\xf1\x0c\x47\xbc\x9f\xcf\x7d\xfd\x9b\xcf\xfa\x1c\x07\xbd\xb1\x48\x8f\x83\xde\xd8\x85\x44\x11\x9a\xd8\xc0\x23\x48\xe4\x5a\x99\x43\x0e\x81\x9b\xf9\xce\x0e\xcb\x96\xd6\x18\x8e\x44\x2f\x1c\x76\x14\xc3\xeb\x71\x48\x5c\xe6\x8d\xb2\x73\x81\xd5\x3e\xca\xfe\xfe\x10\xdd\x71\xfe\xc0\x19\xf0\x23\xc5\x35\xfa\x10\x25\x70\x84\xa4\x7c\x60\x86\x3d\x02\x52\xae\xf5\x7b\xf3\xf1\x8e\x9d\x72\xd4\xc7\x95\x0f\xbb\x3e\x7c\x90\x14\xb9\xb8\xf2\xe6\x74\x53\xf3\xaa\x3a\x39\xf2\x50\xd8\x39\x16\x0a\x54\xa4\xb9\xb2\xfd\x11\x53\x74\xe7\xe9\xcb\x05\x55\x44\xfd\xc8\x15\x49\xbd\x64\x43\xfd\xd3\xdc\x05\x31\x72\x84\xd5\x7c\xee\x7c\xb7\xfc\x23\x29\x54\x73\x97\x40\x88\x63\x46\xd3\x9e\x2b\xb9\x71\x9c\x33\x53\x40\x94\xa6\x0b\xa4\xcb\xf9\xd3\xf4\x8c\x5d\xcf\x28\xce\x2b\x26\xe4\x3f\x67\x97\x8b\xcd\x51\xa0\xce\x27\xa8\x8b\x3f\xfc\xc4\x2c\x18\xf1\x96\x3e\x77\x7a\xa9\x88\x21\x22\x63\xce\x1f\x56\x89\x96\x87\x9e\x59\x29\xc7\x90\xa9\x27\x95\x68\xd8\x47\x4a\x5d\xaa\x92\x51\xff\xee\xf1\x0f\x21\x29\xe7\x4f\xf1\x12\x04\x48\x9c\x3f\xaf\x96\x2b\x35\x7a\xb5\xa4\x14\x0d\xf2\x48\xf5\x1a\x64\x0e\xbf\x3f\x87\x88\x62\x0a\x17\x58\xf4\x21\x7c\xe3\xfc\x79\xed\xb0\xa9\x0a\x2c\xfa\xdc\x19\x55\x42\x2e\xd0\x44\xa0\x44\x5d\x79\x68\x10\x48\x9e\xa9\x4b\x9c\xd9\x22\x48\x7d\x88\x62\x3a\x7f\x5e\x2d\x2b\xd5\x6f\x8f\x69\xda\xe6\xd5\x92\x87\xfa\x55\x33\xc5\xc0\xd2\x92\x72\xbc\x5a\x22\x29\xb6\x8b\x57\x95\x03\x7f\xc5\xca\xfb\x02\x94\x83\xd6\x6f\x2c\x69\x8c\xc5\xd0\xa9\xc2\xb5\x73\x5e\x9e\x9d\x1c\xbf\x2f\xe2\xdf\xf8\x8d\xaf\xc5\x22\x8c\xa8\x90\x31\xd6\x8b\xb1\x9e\x57\x4b\x41\xcb\x18\xba\x91\xa7\xc2\xd0\xa5\x52\xa3\x21\x60\xa0\x3c\x2f\xfc\x6b\x2d\x4f\x1d\x50\xd6\xf3\xe9\xd4\x36\xdd\x90\xb6\x3f\xa5\x85\x8a\x84\x26\xc0\xf3\xbc\x30\x27\xff\x1a\xe8\x68\xb8\x9e\x4f\x1d\x2e\xf4\x2b\xf7\xa3\x72\x19\x32\x4d\x75\x42\x1e\x8f\xb9\x54\xaf\x20\x77\x5e\xe0\x03\xb9\xc7\xbc\xc0\x07\x8e\x3c\x7d\xf4\x29\x2d\x52\x34\x34\x44\xdf\xe7\x45\x70\xdc\xc8\x97\x8e\x5b\x44\x2b\x33\x74\xf4\x8a\xff\xf9\x45\x90\x69\x4f\x23\x1c\xa3\xd9\xfe\x4d\x23\x72\x5e\x8e\x40\x65\x27\x7d\x99\x7b\x7c\xa5\x58\x77\x94\xd6\x1e\x77\x94\x41\x20\x1a\x95\xdb\xdb\xcb\x31\xd1\xe8\x54\x00\x54\x73\x06\x03\x50\x85\x61\xf4\xbc\x88\x46\x65\xb2\x0a\xa1\xfa\x10\x8c\x7a\x9c\x44\xbf\x45\xa7\x14\x46\xf5\x21\x2c\xf7\xbc\x88\x45\xe5\x68\x13\x51\xeb\x03\xdd\xf9\x11\x51\xeb\x77\x10\xd2\x22\xc7\xa2\x3e\x69\x83\x67\x24\x2a\x91\x30\xac\x2d\x4b\x2b\x18\xd6\x96\x87\xf4\x6d\x20\x7a\x0a\xde\x48\x4c\xc1\x82\xe8\xbf\x96\x2f\xdd\x35\x34\x79\x81\x5a\x1f\x82\xd0\xce\x9b\xd8\x53\x2e\x4b\x6f\xc7\x72\x40\x3a\x75\x4c\xe6\x7a\xc5\xb1\xfa\x76\x5a\x52\x18\x54\xcf\x9b\xf8\xd2\x27\x4d\x7a\x6b\x58\xdc\xf3\x37\xcb\x8b\x5d\xeb\xcd\x82\x42\x55\x78\xb3\xa0\x38\x9e\xdf\xc4\x9b\xf2\x6f\xde\xac\xa8\x91\x97\xf9\x55\x79\x79\xa8\x9e\x48\x2f\x9f\xd0\xf9\x94\x65\x41\xdf\x9d\x08\x2c\xe7\xa7\xf8\x59\x1f\x58\x84\xcf\xdb\x51\x74\x35\x92\xe3\x33\x59\x07\x6f\xa8\xab\x33\xde\x5a\x16\x13\x6b\xa8\x61\xb3\x37\xa9\xd8\x8f\x60\xb3\x0f\x6c\xc4\x47\xa8\xd9\x67\xd6\x7c\x68\xcc\x68\x8f\x08\xd8\x2f\xef\x3a\x86\x2e\x03\xec\xcc\x8d\x04\x11\x1d\x13\xc6\xde\xe4\x71\x3f\xe0\x6f\xef\xcc\x88\xed\xae\xb2\x1a\xdf\x84\xd8\x71\x8c\x1b\x81\x7b\x93\x06\xfc\x88\x42\xf6\x89\xf5\xf8\x4d\x2c\xea\x8c\x58\xf5\x90\x39\xe0\x1c\x64\x99\x2e\xa6\x2f\x8e\x33\x50\xf8\xdc\x07\x2e\xee\x63\xd6\xd8\xfb\xce\x8f\x72\x64\x2a\x06\xa8\x37\x24\xfc\x99\x01\x87\x3b\x63\x44\xf7\x8d\xb5\xfa\x86\x93\x3f\x13\xc2\xf6\x3b\xd8\xd8\xcf\x9b\xd8\x54\x16\x8a\x00\xbd\x0f\xc1\xe0\x47\x98\xdd\x07\x6e\xf6\xf3\x71\x72\x53\xd4\x57\xb1\xcc\x3e\x13\x5d\xe6\x03\x46\x93\x69\xf6\x99\x1c\xdd\x29\x15\xb0\xef\x44\xe4\xc7\xa5\x24\x07\x3f\x8e\x3c\x75\xe7\x7a\x6a\xf5\x8f\x6b\x11\x1d\x01\xf8\xfb\xd6\x9d\x63\x8b\xf8\x4c\xe6\x68\x44\x3a\x47\x23\x9d\xe3\x34\xfa\xa8\x39\x66\xef\xdc\x36\x95\xa0\xbf\x45\x6b\x10\xb4\xb7\x45\x6b\x30\xa9\x6c\x23\xec\xf9\x98\x55\xb6\x3d\x19\x34\x05\x3d\x45\x05\x35\xd6\xf7\xce\x5d\xc2\xbc\xb2\x77\xae\x47\x1f\x22\xf5\x98\x5a\x42\xfb\xb6\xa8\x43\x66\x96\xbd\x73\xab\xfd\x90\xe4\xb4\xff\x3b\xbc\xf1\x08\x0b\xdc\xa2\xe9\x7f\x08\xcd\x63\x15\x7d\x8c\x36\xcf\x65\xee\x43\x68\x5e\x86\x45\x99\x03\xa2\x23\x8a\x6d\xb6\x45\xd7\x15\xdb\x6c\x8b\xa2\xf3\x01\xa6\xde\x23\x0a\xa6\x8e\xbe\x24\x18\x71\x8b\x86\x24\x18\x71\xcb\x5e\x28\xba\xd9\x16\xf5\xf5\x73\xe8\x26\x1f\x1e\xfe\x03\x6d\xb7\xd1\x25\x87\x80\x88\x63\xef\x12\xad\x9d\x8c\xfc\x50\x6e\x1c\x21\x92\x5b\x6d\xa9\xf4\x38\x6f\x16\xed\x73\x3e\xd4\xff\x55\xab\x04\xa8\x2d\xd5\x98\x22\x5d\xfa\xc2\x98\x06\x28\x17\xeb\x49\x5f\x91\x0c\x5c\x37\xa2\x02\x1b\x0c\xfd\xfc\x8a\xcc\xf6\x89\xd8\xfc\x72\x41\x14\xf9\xbe\xf6\xd4\xaf\x44\xc0\x5f\xde\x5d\x7a\x98\x72\xb7\x3b\x17\x51\x21\x88\x2d\xe5\x98\xd2\xfd\x4a\x41\x0e\x03\x18\x96\xbe\x4a\x55\x33\xb5\xe6\x57\x72\xd6\x06\xe9\x16\x5f\xd1\xe1\x71\x0b\xc9\x58\xba\x4e\x25\xe6\x9b\x77\x66\x90\xaf\xf8\x9d\xe8\x26\x78\xf8\x4a\x0e\xee\x6b\xb4\x96\xe0\xbe\xbc\x7a\x24\xd1\x1e\x82\xfb\x7a\x6a\x71\x70\x5f\x3e\x7c\x7b\x85\x44\x54\xee\xd6\x9b\xb1\x26\xb6\xa6\x53\xe7\x36\x08\x33\xa3\xb9\xcd\x8e\x7f\x45\x74\x73\x1b\xd5\x6c\x35\xf7\xa6\xdf\xdb\xcd\xed\x11\x1d\xea\x37\x19\x06\x42\xfd\x3a\xe3\x69\xe6\xe4\xeb\x27\x3a\x13\xdc\xa0\x3b\x9a\xb0\x3d\x83\x44\xe4\xdf\xa0\xe7\x8a\xb2\xe8\xf9\x92\x38\xc0\x49\xad\x06\x91\x9a\x7b\xf1\x2b\x3a\xbd\xec\xa0\x11\x9e\xbf\x66\xd5\xfa\x8a\x0e\x4e\x1c\x74\x87\x28\xc1\x99\x92\xe9\x40\x5a\x71\x2c\xe6\xdb\x3f\x7f\x9b\x97\xdf\x6a\x14\xa3\xe8\xf9\x6c\x12\xd1\x31\x6f\xcf\x67\xd3\x86\x7e\x45\xf7\x67\x0e\xc4\xe2\x92\x26\xe2\x76\x4c\x61\x44\x19\x2a\xd6\xaf\x28\xe5\xb5\x6d\x29\xe9\x65\x3a\x73\x4a\x32\xc1\xb7\x33\xd9\x7e\x45\xc7\x49\x15\x24\x67\xae\x5d\x1d\xd1\x37\xa3\xde\x10\xa7\xde\xad\x48\xc4\x78\xa4\x5c\x12\x98\xe4\x53\x61\xe2\x9f\xb4\x70\x39\xe7\x6c\xa3\x85\xdf\xd9\xd6\x8c\x79\xf9\x4a\x1f\xc7\x2e\xf2\xae\x93\xeb\x3e\x2c\x39\xa3\x98\xab\xfd\xf2\x5f\x51\x4d\xcc\xfc\xbf\x15\xff\xbc\x58\x56\xb7\x36\x55\x1b\x25\xbe\x92\x92\xeb\xb6\xf4\xc6\xc9\x75\x1b\xf3\xe7\x86\xb1\x8b\xfd\xc4\xa0\xe7\x6a\x90\xe8\x57\x14\xa6\x80\x06\x9a\xcd\xa2\xff\x3b\xa7\xfa\xf7\x5d\x03\xa4\x32\xfa\xe6\xf4\xbe\x98\xf0\x24\xfb\xbf\x69\xa0\x70\xcf\xbf\x57\x9d\x1a\xb0\xd2\x4f\xcd\xca\xc7\xa1\x4b\x5f\x51\x8b\xec\xf7\xea\xb0\x4f\x2f\xa5\x1a\x6e\xcb\x9f\xb0\xcb\xdd\xb1\x1a\x5f\x51\x78\xdb\x27\x55\xbe\x3d\x55\x18\xdc\x43\xf3\xfc\xae\x11\xcc\x33\xab\xa8\x18\x2b\xfa\x44\x12\x56\x94\xff\x60\x08\xb3\x6d\xe2\x5f\x49\xd1\x9f\xcf\x8d\x24\xac\xe8\x53\x91\x94\xeb\xf4\xb9\xf2\x50\x7a\xf5\x95\x87\xc6\x0d\xcd\xd4\xa1\xe6\xfd\x5e\x75\xeb\x16\x55\x1a\xf4\xf9\x34\x24\xe3\x6f\x0b\x92\x1b\x17\x49\x8d\xab\xf9\xae\x39\x63\x0e\x92\x1b\xd7\x91\xa6\xa4\x3c\xd3\xd0\xb1\x81\x1b\xa9\xdc\x99\x96\xc2\x1f\x8f\x8b\xcd\xd4\xf9\xf9\x67\x49\x85\x82\x2d\x65\x3d\x3a\x3f\xff\x33\x38\x9b\xc4\x49\x7b\x9b\x63\xeb\x2b\x39\x09\x46\x46\xc7\xd8\x37\x5b\xe0\xbe\xa2\x43\x2b\x66\xca\x15\xb8\xb0\x30\x1e\x00\xdc\xf2\xaa\xe0\x84\x35\xcf\x94\x97\xae\xa6\x54\xcd\x42\x26\x8f\x51\xcd\x8b\x45\x2e\x50\xf3\xb8\x38\x23\x04\x6a\x1e\x17\xfb\xb3\x51\xcc\x86\x6d\x7d\x25\x01\xd5\x6e\xca\x34\x50\xad\x32\x00\xbe\x08\x8e\x34\x4d\x1b\xa1\x71\x2e\x5f\x49\xe6\xee\x2c\x77\x63\x95\x87\x83\xde\xbe\xa2\x0d\x1e\x1c\x18\x4a\xde\x3f\x2e\xce\x1a\xa7\xeb\x9f\x0e\xe8\xf8\x8a\xa4\x70\x7c\x10\x05\x0a\xaa\x79\x28\x18\x10\x7d\xae\x86\x01\xb5\xbc\x69\x93\xc1\x8c\x28\x1c\x10\x07\x82\x90\xc6\x23\x27\xaa\x80\xc6\xc5\xe8\xf8\x31\x2b\xd4\xf1\xcc\xc1\x6a\x1c\x10\x47\x7c\x35\x0e\xa8\xe5\x55\x01\x9d\x5a\xde\x14\xd0\xa9\x47\x12\xd4\x87\x35\x59\x4d\x1d\xcf\xd8\x55\x03\xe9\x98\x10\xc2\x16\x8f\x1c\x89\x02\x0c\x8f\x8c\x9c\x00\xc3\xe3\x61\xe0\xaa\x61\x74\x9c\xac\x95\x0b\x1d\x4b\xa7\x1a\x47\xc7\xe9\x52\x8d\xa3\xe3\x88\xae\xc6\xd1\xb1\x5d\x54\x87\x1d\x31\x39\xaa\x21\x41\xe9\xbd\x31\x0e\xa9\xde\x88\xdd\xeb\xc9\x43\xa1\x38\x32\x16\x76\xbd\xfd\x9e\xc9\xe3\x5f\x46\x1e\x0a\xd7\x90\xd6\x18\x21\xc4\x9a\x33\xff\xeb\x95\x6e\x18\xe5\x90\xa1\x31\x40\xe8\x89\x24\x8f\xe1\x4a\x29\x02\x36\xe5\x07\x8b\xf2\x7d\x66\x2a\x98\xef\xa1\xd7\xbc\x2a\x9c\x4a\xfb\xa7\x22\x3e\xe6\x63\x40\x04\xbf\xf4\x31\x7c\x88\x79\x62\x66\xd8\x8b\x1f\x1c\x8c\x30\xda\x8a\xa9\x61\x2f\x06\xd5\x24\xae\x57\xcf\xab\x6a\x2a\x7b\xe5\x03\x0e\xa8\x21\x09\xcb\xd4\x29\xc5\x38\xa0\x16\xc9\x23\x3c\x90\x3c\x6c\x91\xbe\x35\x0c\xb6\x31\x25\xaf\xaf\x05\xb5\xe4\x71\x26\x96\x3e\xf3\xaa\xdc\xc5\x93\x3e\x19\x28\xb1\x78\x66\x77\x71\xde\x34\x50\x02\x55\xe8\xb1\xbb\x98\x33\x50\x89\xeb\x67\x5f\x34\xcd\x0e\xe2\xf5\x20\xc9\x05\x3e\x22\xc9\x41\x8a\xca\x6c\x8c\x6e\x2b\x23\x1f\x5a\x3b\xf9\x95\x63\x6a\x28\x36\xee\xc7\x88\x87\xc5\xb8\x99\x98\x78\xd2\x2b\x71\xbf\x16\x34\xb1\xc7\x4e\xe1\xc5\x77\xc7\x4d\xa5\xe1\x81\x8f\x33\x38\xd2\xf0\xda\x33\xf3\x54\x3f\xee\xfe\x15\xeb\xb6\x33\x02\x9a\x71\x7d\xe5\x99\x4d\xfe\xf9\x57\x9a\x56\x38\x5d\xc6\x6c\x24\xac\xe0\x80\x30\x8f\x6b\x4e\x6c\xf3\xb8\x46\x01\x6a\x76\xc0\xb1\x3a\x4c\xe3\x9a\x2b\x86\x73\xd0\x83\xeb\xfd\x8a\xf2\x31\xae\xbc\x6a\x6f\x6f\x9e\x89\x58\x93\x15\xd0\x7c\x76\xae\x95\x3a\x8e\xea\x48\xfd\x72\x2a\xf2\xf3\x9a\x9d\x6e\x2d\x92\xe8\x51\x67\xbe\xf3\xce\x41\x9f\x9b\xbd\x6e\x2c\xeb\xe6\x9c\x2f\x8d\x5d\xd5\x0c\xb0\xd9\xab\xc4\x00\xbb\x6a\xcb\x33\xf5\x8a\x8d\x44\x94\xaf\x35\xbf\xa0\x81\x8a\x78\x22\xca\xef\xc6\x54\x16\x92\xb8\x66\x0e\x0a\x49\xbc\x72\x35\x6a\x76\x53\xaf\xb4\x46\xdd\xf8\x95\xa2\x6e\xac\x7c\x27\xdf\x21\xab\xb3\xd9\x4d\xcd\x3e\xd6\xec\xa6\xe6\x37\x9a\xe4\xb5\x3e\x79\xd3\x6e\x6a\x4a\xd9\xf6\x1d\x32\x16\x76\x53\x67\x80\xb7\xff\x0c\xff\xc2\x6e\xea\x95\x52\xe4\x87\xcf\x18\x6e\xf7\x28\xb5\xab\x47\x4f\xbe\x3b\x4e\xe0\x94\x0a\xdd\x41\xc6\xd0\x30\x08\x14\xfb\x66\x1f\x36\xdb\x6f\x23\x60\xe2\xca\x43\xf7\x82\x91\x71\xd6\x17\x47\x13\x7f\xc5\xc7\xf0\x51\x5a\x4e\xaa\xad\x0c\x95\xf9\x8f\x2b\xa7\xa1\xa0\xc4\xf7\xd3\xd9\x3d\xcc\xe5\x5a\xd1\x48\x9c\x3e\x7f\x8e\x92\x77\x1d\x99\x78\x47\x94\x62\x5f\x33\x5e\xe2\x51\xbb\x51\x42\x9a\x97\xcb\x60\x7d\x98\xeb\xf5\x8a\xba\x6b\xd0\xf0\x15\x5d\xa3\xdb\x8c\x6b\x88\xe0\x57\x94\x1f\xac\xfe\x13\x72\xf2\x7d\xd5\x41\x97\xdc\xc2\x9d\x77\xff\x8a\x06\xd1\x27\x41\x98\x03\xd1\x49\x16\x66\xaa\x71\x14\xe6\xb5\x10\xe5\x88\xaa\x79\xa8\xce\xcd\x92\x16\xfa\x50\x19\x29\xd8\x4e\x34\xf4\xa1\x4e\x90\x28\x7f\xa7\x93\x2b\x89\x1f\x20\xc4\xf0\x73\xb3\x8c\xbb\x9d\x7c\xa8\x47\x41\x05\x33\x93\x3a\x51\xa3\x68\x64\xe6\x8b\x9d\x51\x24\xc4\x17\xfb\xdc\x1c\x6c\x1d\x37\xc9\x4c\x2d\x58\xdc\xd3\x24\x5b\xa5\xd9\x03\x3a\x7e\x92\x99\x6a\x6d\x72\xff\x55\x2b\xf7\x41\x7e\x0e\xb4\x81\x5c\x5d\x3b\x8e\x12\x66\x69\x27\xb7\x7a\xc9\xd3\xea\xd8\x37\x86\x0d\x76\xce\x15\xd1\x36\xeb\x95\x92\x6d\x74\x67\x4d\x99\x39\xb6\x65\x10\x71\x9c\xb0\x15\x74\x1c\x27\xac\x38\x41\x99\x9f\x96\xff\x6c\x16\xc1\x75\x45\xb4\xcb\x20\x3f\xf6\xd0\x01\x3e\x95\x95\xb7\x65\x72\xe1\x0e\xe1\xda\x23\x6c\xf3\xb7\x1a\x6a\xc5\x1f\x92\x06\x3b\xf7\x6a\x63\x31\x77\x5f\xb6\xa2\xaf\x74\x0c\xbd\x69\xb1\x0d\xbd\x2d\x05\x6f\x1f\x6e\xf4\x15\xcb\xee\x4a\x49\x36\x7e\x66\x24\xe4\xe9\x9b\xec\x51\x1d\xc3\x2e\x7f\x56\x38\xe6\xaf\xd8\x10\x6d\x66\xa7\x77\x83\x28\x7a\x76\x9f\x81\xbd\x76\xe5\xa9\x88\xf8\x9e\x3c\xb4\x29\x3a\xe5\xda\x5a\xcb\x8f\x1d\x58\x6b\x99\x13\xa2\x81\x7d\x26\x47\xc1\xc0\x1c\xcb\x74\x32\x0f\xec\x64\x0f\x87\x07\xf6\x66\x53\x15\x66\xf9\x99\x9c\x77\x03\x46\x18\x66\x84\x60\xca\xcf\x64\x5b\x1b\x10\xc2\xcc\xbc\xeb\x01\x5d\x29\xd7\x03\x4a\xfb\xc4\x81\x3c\x39\x38\x87\x3d\x1c\xed\x8a\x28\x0b\x26\x1b\xd5\x30\x6b\x1a\x5b\xd1\x80\x35\x8d\xb5\x3b\xb0\xd4\xce\x3c\xb5\x09\x93\x0d\x50\x28\xe3\x76\x73\xe7\x10\xca\xb8\xe5\xcc\x17\x9b\x6c\xb3\xab\xfa\x2b\x61\x8a\xcd\xab\x4e\xf1\x37\x53\x8e\xac\xaf\x25\xd2\x4b\x12\xdd\xc4\xf8\x4a\x7b\xec\x93\xe8\x98\x6c\xcc\x25\x7b\x77\xf4\xb0\x11\x83\x2b\x9f\x1e\xd9\x8a\x6b\xde\x95\xa6\x7d\xb7\x3c\xec\xbe\x07\xe7\x53\x11\xca\xb0\x79\x98\x3b\xb6\xdc\x6c\xde\xc3\xa1\xcd\xf7\x9d\x77\x65\x60\xed\x29\xd7\x06\x56\x56\xa6\xe9\x60\xe7\xe2\xdd\x89\x81\x95\x05\x65\xe0\x70\x79\x46\x5e\xae\x7e\xda\x10\x9b\x9f\x3e\x88\x5d\x26\xcb\x7f\x72\x43\x7d\x5f\xb5\xf5\x70\xa4\x1a\xc7\xc3\x5e\xa9\x66\xfb\xe9\x8d\x68\x8b\x26\xf6\x1e\x91\xbc\xb6\x56\xf2\xe9\xdb\x4b\x71\x21\x2a\x7c\x78\x72\x26\xcf\x65\xeb\x21\xe5\xca\x42\x30\x72\xa0\x98\xd5\xf5\xc9\xdc\x31\xab\xeb\x13\xb5\x43\xe8\xe5\xbb\x5e\x25\x4f\x6d\x8b\x2b\x29\xd8\x4c\x61\x79\xf8\xf2\x43\xea\xb1\xf1\x2a\x5a\xa1\x90\xc8\x77\xcd\xe5\x52\x50\xe4\xfb\x67\x62\x30\x3b\xeb\x8c\xb2\x37\x31\x5f\x71\xe1\x36\x3b\x6b\xed\x3f\xf1\xfb\xdb\xb3\x83\x19\x8e\x5c\x63\x8f\x11\x1c\x79\x3c\x69\xc3\x91\x31\xab\xe5\x55\x0f\x13\x87\x8f\x40\xc6\xf7\xaa\x91\xb4\x2e\x38\x1d\xa7\xc3\x91\x68\x9d\xed\xfa\x57\x5e\xf4\x8d\x96\xb1\x16\xf6\x2d\x37\xe8\xe9\xf8\x23\x06\x84\x5b\x5b\x5e\x14\xd6\xa1\xe6\x99\x28\x1f\x58\x3d\x66\x5d\xfd\xd9\x54\x96\x23\x3b\xf9\xb9\xcb\x01\x47\x3d\xaf\x3e\x3e\x40\xf3\xaa\xd6\x2f\x0a\xac\x48\x56\x07\xbb\xdf\x32\x7d\xdf\x95\x17\x7d\xa3\xba\x91\x74\xa3\x62\x45\x2e\x03\xd3\xd0\xd9\x0c\x23\x6e\xb9\xd0\x09\x38\x5c\x07\x57\x18\x53\xa8\x5e\xd7\x9d\x87\x9e\x4c\xfc\x19\x81\x85\x9f\x18\xe1\x0d\x16\xfe\x5f\x3f\x30\xe6\xd3\xd4\xef\xcc\x1a\x4f\xaa\xdc\x6a\x5c\x5e\xd4\x20\xd2\xee\x65\xc3\x38\x47\xb7\xd9\x53\xa3\x47\x09\x2a\xdc\x6f\x26\xe0\x32\xf0\x87\x89\x6d\xee\xd4\xc2\x82\x5f\xe6\xe8\xe3\x5c\x13\x54\xf8\x2e\xec\x2a\x82\x0a\xf7\x68\xcc\xe6\x46\xed\xd7\xef\x55\x19\xa9\xae\x48\x32\x9a\xa5\x31\x4a\x85\x98\xd9\xb5\x1c\x84\xc9\x52\x11\xe4\x77\x5c\x25\x55\xd8\x2a\x45\x29\xb6\x4a\xb1\x8b\x2d\x07\x5a\xa2\xcc\x0b\xf2\x3b\x2e\xb6\x67\x53\xa4\x2e\xae\x04\xcb\x93\x92\xfd\x42\x88\xdf\x91\xfd\x41\x88\xdf\x91\xed\x61\x79\x8e\xfe\xbe\xd3\x44\xfc\x49\xbe\x93\xf3\x93\x6c\x3d\xc0\x3c\x24\x22\xd5\x5a\x50\x33\x44\xa4\x5a\x26\x03\x63\x1e\xd5\x5f\xd3\x9c\xc7\xbf\xcc\x3c\x6c\xfa\x83\x1d\xa9\x4b\x6a\x48\x66\x41\x63\x9c\x36\x33\x31\xc5\x08\x69\xc8\x68\x03\x29\xe6\xc7\x00\x29\xee\x69\xcd\xc7\x19\x14\x3d\x81\x9c\xc7\x3f\x9b\xbf\x58\x51\x57\xb6\xf7\x8d\x42\x4a\x6b\x98\xb3\xcc\x43\x71\xa2\x7e\x9b\x93\x2f\xad\x60\xff\x97\x1d\x5b\x58\xe5\xe7\x66\xc7\xd8\xe8\xb2\x25\x95\x9a\x01\x1b\x05\x68\xa3\xbd\xa2\xb6\x08\x9f\xfc\xc4\xcb\x64\x12\xd4\x59\x50\x99\x4d\x7b\x5a\x1e\x8e\x68\xd3\x9e\xb6\x92\x87\xa6\xd3\xe0\x80\xdc\x78\xa4\x38\x95\x85\x27\x6e\x83\x0b\xe5\x86\x5e\x92\xbd\xd1\xa9\xff\x6b\x54\x27\xa7\xfe\xaf\x39\x35\xc4\x73\x3a\x9e\x3c\x7b\x79\xab\xcc\xb3\xb7\xc8\x65\x18\x6b\x99\x2a\x32\xf0\x0a\x1a\xce\xfc\xd9\x24\x24\x60\x49\x6c\x2c\xf0\x34\x4e\x09\x8b\x73\xd9\x12\xbe\xb7\xe7\x4e\x77\x48\x8e\x71\x23\x89\x16\x85\xad\xeb\xf8\xc4\xed\x79\xd3\xeb\xf3\x41\x52\xff\x7b\xbe\x13\x33\x07\x9b\x85\xf0\xbd\x3d\x37\x61\x61\x78\x7b\x6f\xf9\x6e\x6b\x61\x2d\x24\xc5\xfc\xb7\xd4\xa0\x98\xff\x96\x67\x2f\x4f\xb4\x7c\x28\x3b\x3d\x5b\x8e\xb9\x4a\x3b\xff\xf1\xd8\x4c\xcf\xb4\x3b\xe6\x66\xe0\x5f\x1c\x1b\xe6\xd9\x55\x8f\x4d\xf1\x4c\xba\xe3\x2c\xb1\x6c\x94\xc7\x86\x79\xc6\x17\xa0\xee\x1d\xc9\x7b\x0c\x1d\x5c\x6e\x68\x6a\x97\x99\x9e\xcd\xdf\xb0\xdc\x1e\x33\xd9\x11\x1d\xd7\xc5\x1a\x38\xa2\xe3\xba\x50\xab\x94\xbb\x7f\x5c\x9c\x45\xe2\x24\x1d\x17\xca\xe4\x71\xd4\xf9\x13\x49\xa3\xc6\x3c\x15\xd4\x77\x5c\x9c\x91\xa2\x1c\x1d\x99\x97\xc7\x94\x4a\xe8\x11\x87\xad\x8a\xce\x3b\x9c\x37\xff\xc5\xe1\xbc\xf9\x9f\x6c\x55\x29\x53\xc7\xf7\xc8\x33\x9d\x04\xe9\x91\x82\x26\xb3\x4f\x0b\x77\x5b\x32\xb7\x8e\xc3\x79\xd1\x29\x8f\x37\x35\xda\xf2\xe7\x70\x5e\xd4\x37\xc1\x6e\xc7\xc3\xd1\x47\x8a\xff\xec\x78\x20\x6d\x63\xa2\x14\x9a\x76\x5e\x23\xef\xca\x96\x4b\xdb\xfe\x1c\x1a\xf9\x2b\xd5\x9b\xda\x42\xfa\xfb\x4a\x25\xdf\xb9\x35\x6e\xdb\x9f\x9d\x92\xf1\x84\xfd\x29\x4a\xe7\x62\x17\x17\x78\x76\x0e\xce\x6c\x81\x67\x4b\x2e\x4d\x02\xc8\x96\x28\x75\x7f\xb6\x97\xa2\x15\x08\x1e\x3b\x73\x47\x55\xc6\xff\x92\x5b\x90\x13\xfe\x4f\x06\x4a\xd0\xd9\x32\x9f\xbc\x29\x6b\x6d\x4f\x7d\x3a\x19\xf8\x69\xc2\xc6\xce\xc1\x02\x15\x36\x76\x0e\xd4\x8e\x3f\xc7\x8e\x71\x43\x13\x18\x76\x8e\x3b\xdf\x0d\x49\x79\x36\x75\x6a\xd4\x88\x0a\x28\xe1\xe2\xf7\xe7\x0c\xee\xa3\xa4\xd4\xe3\x13\x86\x4e\x39\x57\x56\xbd\xf2\xf2\x4b\xe5\xfe\x13\x49\xf8\x7d\xd5\x8a\x1e\x13\x5c\x68\xd9\x39\xd8\xa2\x84\x96\x9d\x83\xf5\x2c\xb4\xec\x1c\x77\xde\x74\x2f\x19\x2b\x47\x93\xcd\x3c\xd3\x11\x87\xe6\xf3\x67\xc3\xea\xcc\x9b\x43\x4a\x52\x24\x9b\x61\x5a\x3e\x5c\xde\x4f\xe8\x87\x32\x06\xd5\x1e\x49\x76\xcd\x9e\x57\x75\x1a\xf6\x94\xf3\x56\xa9\x79\xf3\x23\xc9\x6f\x1a\x1e\x5b\x39\xb7\x0d\x8f\x9d\x37\x55\x98\x78\xb5\xb2\x45\x0b\x2c\xfb\x3d\xa7\x2a\xa2\x8d\x4f\x13\xa9\xa9\xd4\xbc\x3a\xed\xbf\x2c\x88\x8a\x82\x60\x92\x99\x6c\xb5\xf6\x7c\x68\x18\x7c\x49\x95\x46\x88\x97\x14\x24\x54\xe0\x9d\x87\x1f\x73\x45\x53\x90\x2e\xd7\x77\x8d\x64\x53\x19\x8a\x13\x18\xdc\xf8\x45\x5f\x86\xfd\x31\xb7\x5e\x3e\x63\xe3\xdf\x7c\x99\x66\xac\xff\xca\xdd\x16\x69\xa1\x0d\x46\x9d\xf1\x03\x49\x1b\x27\x38\xf0\xd8\x68\xf5\xc0\x63\xa3\xda\x99\x1e\xf5\x2e\x29\x4a\x86\x9c\xd9\xf2\xee\xf2\x43\xfa\x6a\x34\x5f\xf9\x7d\x7a\xfc\x94\x46\x19\xcd\x57\x52\x8f\xb1\x47\x2c\x87\x17\x9c\x75\xec\x46\x42\xb2\xb6\xdc\x11\x04\x64\xfd\xde\x9b\xf9\x19\xb6\xdc\x5c\x33\x9f\x36\x5d\x68\xf9\xa9\xf6\x99\xdf\x19\xa7\xef\x7c\x6c\xd1\x9c\x4c\xbc\xda\x32\xc0\x82\x25\xb5\xfc\x37\xb1\x3d\xf7\x4c\x15\x50\x1c\x2b\x1f\xbe\x2c\xf2\x2f\x64\xf2\xac\xbf\x5f\xae\x4b\x74\x2d\xfc\x0c\xe3\x58\xe3\xdc\x32\x8e\xb5\xc6\xbc\x6b\x1c\x6b\x8d\xfd\xde\x64\xac\x35\xf6\xec\xb7\xb3\x12\xe6\xcb\xa6\x43\x66\x20\x89\xfa\x82\xbd\xec\xed\xc8\xf5\x27\xcf\xbc\xeb\x4d\xa4\xf5\x2d\xa4\x21\x6c\x29\x29\x91\xbe\xe7\xc8\xaf\x29\x7f\xbe\xec\xe7\x33\xdf\x21\x22\x7d\x0c\xa6\xa2\x9d\x3a\xd1\xa3\x72\xbe\x4d\x03\xf6\x7b\xa6\x21\xef\x79\x26\xf2\xb2\xd4\xa1\x79\xfa\xc4\xd3\xf8\x36\xa6\x3b\x8a\xd7\xdb\xd4\x48\x3d\x0f\x65\x48\xee\x33\x05\x7d\x9c\x21\xd0\x92\xf8\x37\x3b\x9b\x85\xa0\xab\x3d\x50\x1f\x41\x57\x7b\x4f\x1f\x95\xdd\x3d\x18\x21\x43\x55\x3b\x27\x90\x90\xaa\x3d\x3f\xd9\xfc\xae\x3d\x10\x2c\x43\x55\x3b\x33\xe7\xcd\x0d\x27\x15\xda\xc6\x97\x9f\x61\xf7\xd6\xef\x43\x29\x23\x3d\xcf\xdc\x29\x7a\xe1\x4b\x4d\x7e\x94\x5d\xed\xed\x9f\x54\xac\xdf\x57\xa5\xa8\x70\xe6\x09\x86\x3a\xe2\x22\x15\x0a\x75\x5c\x4f\xaa\x90\xd7\xe5\xf7\x4c\x4a\x0c\x0a\x9d\x20\xa9\xe3\x7a\x22\x91\x68\x9f\x31\x35\xb7\x4c\xa6\x94\x49\x42\x66\x2a\xd4\xb5\x2d\xbf\x58\xb4\x20\x71\x4a\x0a\x7f\x7a\x2f\x9e\x09\x71\x3a\xae\x1a\x49\xda\x16\xbf\xdf\x88\xd3\x15\x43\xda\xc7\x33\x1a\xc5\x45\xf8\xd3\x91\xeb\xc7\xc7\x74\x4b\x28\xb0\x1f\xd3\x2d\x3d\x29\x46\x07\xc7\xff\x44\xe1\x0e\x18\x1a\x13\xcd\x46\x53\x11\xf4\x74\x5c\x35\xc5\x08\x20\xf1\x2b\x54\x0a\x6c\x7e\x94\x81\xa7\x3f\xcd\xf0\xe3\xeb\x7e\x0c\x82\x1f\x7b\xfd\xb9\x40\x7c\xec\xf5\xe7\x92\x67\xee\xd9\x87\xcd\xe1\x63\xa8\xc9\xc3\xe5\xe2\x63\x3e\x26\x76\xa7\x8f\xaf\xf7\x33\xaf\x4a\xab\x5b\x79\x26\xad\x6e\xa5\x50\x8f\x7f\x4a\x11\x08\x00\x8b\xad\x00\xa9\x25\xde\x3a\x71\xd1\x96\x2c\x31\x73\xd1\xce\xbb\x47\x54\x74\x7f\xcc\x0b\x90\xd1\x62\xb8\xfe\x60\x6d\x62\x71\x7c\xcc\x3e\x3a\xf3\x6a\x37\x48\x85\xf1\x30\xbb\xce\x8c\xa4\x6b\xf5\x4a\x39\xee\x15\xe3\x6a\x02\x9d\xfc\x48\xeb\xc6\xbf\x52\xac\x9d\xe6\x3b\xf5\x23\x33\x47\xc6\x80\x1e\x90\xd0\xc7\xfe\xdc\x56\x23\xca\x0f\x9f\x41\x96\xd2\x71\xe5\x07\x18\x69\x80\x3e\x6c\xf4\xe9\xff\x26\x9d\xa1\x06\x33\x92\xac\x89\xd9\xba\x3e\xc6\x1a\x64\x3c\xec\xf9\x6d\x35\x95\xc8\x83\x9f\x6e\x99\x52\x21\x3f\xf2\x88\x24\x22\xbf\xc0\x8a\xb5\x7f\xd6\xba\x0c\x27\xf0\x50\x2d\xc1\x52\xa7\xb3\xa3\x7d\xa5\xe2\x7c\x34\x0d\x51\xaa\xac\x9b\xba\x2e\x63\x0d\x3c\x3b\xd6\x65\xb2\x05\xcf\xd6\x75\x99\xaa\xc4\xa3\xba\x2e\x6b\xe0\x33\xa5\xa8\x8b\x2b\x55\xf8\xe6\x90\xef\x44\xad\xf0\xa4\x69\x82\x28\xac\x94\xa2\x0e\xae\xd4\x2e\x73\x48\xa3\x14\xa9\x1f\x03\xe0\xe2\xba\x9c\x32\x08\x9f\xf4\x32\x78\x15\x98\xf9\x57\xb4\xbd\x2b\xad\x13\x09\xc9\x28\xb4\xce\x97\x3a\x7c\x9f\xcb\x70\xd5\x69\xd8\xf9\x57\x94\x8d\xab\xa4\x20\xc5\x90\xae\x48\x66\xd5\xfd\x7d\x29\x4d\xb7\xd2\x22\x81\x18\x46\x1a\xa4\x98\xf7\x51\x78\x53\x31\xc9\x25\x1d\xb3\x8e\x5e\x69\x9c\x62\xde\x47\xcd\x33\x69\xec\x19\x10\x43\x1a\x56\x4a\x51\x18\xff\x62\x20\x45\x2e\x32\xfe\x83\x73\x72\x09\xd3\x5a\xcd\x40\xfe\x95\x74\x07\x2a\x69\xa8\xef\x40\xe9\x84\xba\x54\xf2\xe6\x5b\x52\x1a\xa3\x78\xf8\xc5\x28\x5a\x59\x2f\x8c\x9a\x95\xf5\xc2\x5f\xb5\xb2\x5e\xf3\xa6\x42\xfc\x33\x19\xad\xac\x2f\x6a\x3f\xb6\x39\x8d\x14\xa3\xf0\x65\xec\xfd\xcb\xc8\xd6\x01\xbc\x66\x5d\xe6\x82\x98\x8c\x86\xd9\x26\xb9\x92\xad\xcb\x6a\x37\x5f\xde\x56\xbb\x7d\x97\x5b\x42\xae\x56\xae\x12\xeb\xb6\xd6\xed\x05\xb8\x44\xcf\x7b\x3f\xd3\xd7\xc5\x75\x1b\x15\x31\xf2\x50\x2e\x6b\x07\xd8\x7e\x45\xc5\x25\x7b\x95\xaf\x7b\x7a\x5d\xf7\xbc\xeb\x14\x27\x4f\x9e\x72\x28\x44\x34\xd1\xde\x9d\x16\xc9\x80\x36\xd3\x22\x19\xd0\x06\xb5\xd8\x46\x96\x06\x19\xec\xc0\x00\xdd\x84\x1f\xf8\x70\x59\xb7\xd1\x0e\x33\x0f\x7d\x47\x48\x31\x26\x1e\xb0\x4e\xb0\x6e\x47\xec\x8f\x7c\xb8\x34\x22\xa9\xc3\xc6\xf1\x89\x64\x2c\xdc\xca\x43\xdd\x6e\x6e\xfa\xb1\x3c\xcc\xf4\x79\xdb\x20\xde\xf8\x72\x9b\xd5\xad\xe4\xa9\xbd\xe9\x2c\x82\xdb\x61\x9b\x19\x10\x85\xec\x38\x8b\xd7\x57\xd2\x21\xd5\x7f\x0f\x6d\xb2\x63\x69\x19\x08\xdb\xb2\x83\x89\xfe\xf7\x01\x26\xbe\x6e\xc7\x6d\x3e\x79\xf5\x78\x5f\xa0\x9f\x49\xfa\x46\x5f\x14\xba\xe6\x2c\x10\x5f\xc9\x01\xa9\x95\xe1\xdb\xbe\xb8\xd1\x5a\xc5\xae\x39\x2d\xda\x57\xe2\xf2\xc3\xd8\xda\x77\x8b\x2d\x66\xdd\x87\x9b\x1b\x2d\x3a\x1c\x63\xb4\xc1\xbe\x5b\x8c\x3a\xcb\xb0\xd9\x01\x9e\x6b\x19\x1a\x7b\xf5\x8c\x19\xe9\xb4\x5a\x5a\xf1\xe7\xeb\x4e\xea\xf5\xdd\x28\xb3\x48\xbe\x0a\xdc\x2f\xcb\xc0\xd9\xbb\xf0\xa7\x44\x04\xfc\xa0\xcb\x2e\xc3\x68\x2f\x0c\x62\xab\x60\x24\xb6\xaa\xb5\x84\xa3\x7d\x00\x30\x2f\x93\xff\x5e\xa8\x9a\xcb\xec\xbf\x17\x56\xb0\x55\x8c\x65\xe8\xbf\x6a\x7c\xd5\xbb\x53\x92\xed\xa7\x0b\xc9\xe0\x85\x99\x77\x85\xfb\xc6\x72\xb1\x4c\xf3\x7b\x83\x50\x59\x46\xcf\xde\x25\x4d\xb4\xbf\xb6\xa4\x5a\x67\xf0\x28\x74\xbd\x2c\x87\xa3\xcc\xbc\xac\x8b\x1f\x4b\xd1\x98\x59\xe2\xc1\xbe\x22\x17\x3f\x86\xc2\x54\xa9\xf7\xaf\x60\xbb\x73\xd3\x88\x97\xa7\x30\x2d\x56\x56\xc3\xd9\xf3\xa5\xb2\xbe\x75\x9e\x39\xeb\x5b\x61\xcb\x29\xf6\xee\x96\x8c\x9a\x66\xbb\x53\x1a\x7f\x25\x5d\x0a\xcd\x69\xf8\x15\x9d\x05\x6b\x45\xb4\x77\xe8\x9f\xdc\xda\xdf\x57\x7d\x63\xa4\xed\x72\xb1\x71\x43\x5f\xc5\x41\x38\x9c\x81\xa6\x1f\xbe\x41\x11\x2d\x03\x75\x6f\x00\x4e\xab\x10\x86\xc3\x91\x64\x38\xee\x0d\x02\x68\x15\x6e\xbf\xbc\x8b\x27\x98\x43\xa9\xe0\x09\x66\x35\x16\x03\xdb\xb8\xb6\xae\xe2\xd0\x85\x3b\x73\x89\x0b\x6f\x49\xc1\xf6\xa5\xb2\xf1\x19\xbf\x5b\xee\x4c\x9e\xe3\xf4\xed\x99\xb3\x44\x32\xfc\x1a\xe5\xc8\x1c\x0e\x2e\x41\x76\x5b\x2b\x69\xa3\x03\x5d\x7e\x9f\x2a\xd0\x85\x15\x58\x09\xcc\x61\x56\x56\xfc\xc6\xfc\xe3\x6a\x2b\x36\x6e\xf0\x55\xa1\xc5\x66\x53\xad\xf8\x8d\x67\x5e\x36\x6d\xe6\xef\x65\x9b\xcd\x98\xd1\x42\xff\xb6\xc6\x3e\x50\xc9\xb5\xc5\x49\x03\xcf\x30\x66\xca\x25\x88\x6f\xeb\x69\x22\xde\xbc\x8b\x5a\x97\x83\x85\xf2\xee\x72\x86\x26\xca\xd5\x52\xa8\xc5\xd6\x9f\x25\xca\xe0\x36\xd8\x31\x4c\x19\x5c\x31\x7a\x2c\xa1\x7c\xbf\x22\xcd\xb7\xa3\xb8\xfc\xaa\x51\x72\x27\xfe\xa4\x39\x84\x2b\xd0\xde\x25\xd8\x2f\x78\xfe\x05\x4d\x70\x67\x04\xa5\xe2\x63\x09\x58\xd5\xc0\xb6\x19\x49\xa8\x0b\xd4\x29\x31\x01\xb7\x56\xf2\xdd\x23\xdb\x03\x7d\x76\x30\xc4\xf3\x2b\xe6\xab\xa5\xa5\x1b\xbe\xfc\xe6\x84\x14\x4d\x70\xef\x19\x0e\x11\x64\xb2\x6d\x54\xfb\xf3\x7e\x85\xe8\x62\xd8\xa8\x41\xae\xe3\x5e\x33\x70\x31\xe3\xd0\x36\x7c\x22\x68\x89\xd5\xee\xe3\x8a\x86\x69\xa0\xef\x60\x35\x55\x13\xa2\xb0\x7a\xaa\x09\x51\x32\x6e\x26\x44\x61\x2b\x7a\x40\x98\xa1\x08\x3e\x36\xe3\x3d\x79\xd8\x5c\xe5\x85\xe8\xbd\x94\x59\xfb\xb0\x97\x32\x31\x4d\xd5\x7b\x17\x56\xc7\x03\x7a\x00\x35\xe1\x99\x2c\x59\x37\x49\x30\xdd\xef\x2c\x8e\xe8\x68\x2e\xf4\xd8\x67\xd9\x0a\x15\x09\x3e\x77\x9a\xe8\x29\x73\xfd\x3e\xfd\x6a\xef\x0c\x99\x48\x79\xef\x31\xd0\xfa\x1e\x33\x42\x32\x62\x8f\x8d\xd4\x2d\xdf\x79\x88\xf2\xa1\x5b\xcb\xe4\x37\xe0\x97\xdd\x50\x08\xdf\xd1\x98\xbf\x42\xf8\x96\x5f\x85\xdb\x39\x10\xf2\xa6\x96\x10\x8b\xc4\x38\xdd\xc2\xe6\xf7\x38\xbc\xa0\xa5\x14\xff\x78\x7a\x28\x4f\xd8\x60\x03\x7b\x30\xc9\x5d\x11\x9b\xb1\xff\x94\x23\x2e\x67\x60\xa9\xcb\xfc\xb6\xf5\xf7\xec\x98\x8a\x3d\x5f\x0a\xec\x93\xff\xe3\x8c\x47\xa8\x66\xa6\xbb\xed\xe3\xdf\xfe\xc9\xd5\x4c\x86\xce\x44\x6b\x3e\x8b\xf1\xeb\x2f\x41\x6f\xef\x0e\x4e\x69\x19\x5f\x3b\xb8\x12\xae\x66\xfa\x66\xba\xd9\xac\x55\xd2\xd8\x66\x87\x58\xd4\x24\xf3\xe8\x2e\xfa\x65\x80\xed\x62\x6d\x1b\x51\xdb\x72\xa6\x37\xab\x95\x58\x29\x57\x33\x7d\xe8\xef\x5d\xf3\x7c\xb2\x14\xa1\xdc\x4d\x6b\x4d\xb9\x9b\xf6\x2c\x1b\xf0\xf2\xa1\x1c\x41\x69\xc0\xd2\x55\x3b\x6d\x95\x4f\x0c\xd4\xd4\x6a\x66\x16\xcf\xfd\xa1\x79\x46\x70\xce\x36\x13\x35\x32\x03\x85\x8d\x9d\x51\x4e\x85\x7f\xfd\x76\x79\x22\x7e\x15\xd9\xca\xc4\x12\xc8\xb5\xd6\x2b\xc5\xe8\xa2\x53\x53\xc5\xcb\x1b\x2c\x4d\xc5\x13\x31\xf3\xd4\xd3\x87\x52\x45\x19\x1e\x25\xc0\x64\xb9\xf3\x46\x3f\x17\x8c\xb5\xe2\x54\x59\xcd\x6c\x4c\x9c\xaa\x02\xb1\x56\x9c\x31\xab\x99\x8c\x29\x55\x90\x07\xe7\xca\x87\xb6\xcb\xd7\x88\x6f\xef\x04\x34\x4f\x94\x1b\x18\x4d\x96\x31\xac\x77\xe1\x38\xeb\xce\x7c\x9d\x33\xa8\x3b\xb0\x14\xec\xf6\xea\x06\x3a\xa1\xa9\x0a\x88\x4a\x1a\xc6\xaf\xe4\xdc\x7e\x1d\x49\x91\x0d\x11\x64\x34\xa4\x93\x7d\x32\x5a\x0d\xd1\xa3\xb5\xd2\x1e\x85\x6b\x30\x79\x82\x41\x65\xf0\x84\x41\x7d\x88\x7a\x5d\x82\xa0\xb6\x96\x47\xde\xd4\x29\xd4\x40\x3a\xb6\xc2\xce\xf6\xc1\x5f\x17\x60\x73\x00\xf6\x58\xdd\xde\x4e\xb4\xbd\xee\x10\x24\x26\xa4\x30\x97\xc3\x14\x1e\x5f\xe9\x76\xf4\x54\x44\x6b\xe6\xdc\xe7\xe1\x8c\x4d\x97\x65\xb6\x04\xd9\xb9\xcc\x19\x8b\xe3\x66\x75\x7b\x3f\x7b\x8a\xd9\x7a\x93\xa6\x1e\x4f\xfa\xbc\xa9\x49\xcf\x1e\xd5\xed\xfd\xcc\xd0\x1c\xdb\xc9\xe8\xbe\xac\x96\x80\x5d\x97\x28\x63\x47\xe3\xf2\xa6\x3c\xfc\xc3\x7c\x51\x5f\xa9\xa8\x94\x48\xd5\x0e\xe4\x86\xf8\xe8\xd5\x89\x24\xae\xdf\x96\x62\xe4\xd0\xed\xa9\xc2\xfe\x2e\x26\xca\xb0\x25\xa6\x47\x92\xb5\xa5\xa7\x18\xb9\x18\x57\x6a\x94\x39\x89\x19\x65\x9a\x58\x22\x95\x97\x30\x97\x93\x20\xe7\x25\xc8\xe5\xbc\x38\x93\x4c\xf7\x0a\x7a\x68\x09\x54\x59\xeb\x15\x69\x49\xa2\x06\x5b\x5d\x9e\x94\xe2\x85\xfb\x20\xfd\x79\x7f\x4c\xf5\x32\x51\x3c\x79\xf8\xd6\xab\x79\xa6\x75\xcb\xdf\x16\xfa\xb2\xd6\x0c\xa9\x2d\x32\xdc\x13\x05\xbe\xac\xf5\xdf\x7c\xaf\xdf\x57\xab\x5e\x4d\xa1\x32\xd7\x30\x9f\x87\x5d\xaa\xdc\x12\x87\x5d\xaa\xdc\x69\x85\xb5\x5c\xcf\x95\x67\x52\x12\xd8\xd5\x85\xb5\xac\x78\x9e\x97\xa0\x96\x35\xb6\x14\x21\x2d\x6b\x2c\x32\xe2\x6d\xad\x31\x24\x09\x76\x59\x63\x9d\x12\xec\x72\x3d\x19\x27\xf1\x02\x3d\xf9\x2f\xec\x44\xb4\xda\x70\xfa\xc5\x50\x78\x27\xca\xff\x34\x34\xae\xa4\x94\xa3\x52\xf8\x13\x76\x74\xe6\x7f\x1e\xf7\x28\x65\x4a\x09\xca\x1c\xb1\xfd\x05\xbd\x58\x48\xcd\x8a\x13\x76\x4d\xdb\x5f\x38\x36\x27\x77\x4f\x0a\x9d\x8e\x4a\x61\x43\x37\xd8\xb2\x97\x91\x77\xcd\x8c\xc5\x90\x0a\x7b\xf9\xdc\x2d\x92\x09\x8d\x9e\x7c\x2a\xca\xa6\x27\x75\xda\xef\xf9\xa4\x20\xdf\xfc\x27\x92\x7f\x86\x07\x5c\xc0\xcb\xe5\x04\x9f\x5f\xc9\x57\xfd\x27\x0f\x65\xb5\x40\xe3\x21\xf5\x7e\xf6\x13\x52\xef\xe3\xc0\x58\xa4\xde\xc7\xd9\xb0\x26\x6e\x4f\xfe\xd6\xc4\xed\x59\x53\x8f\xdd\x9e\x35\xdf\xfa\xa6\xcf\xdd\x81\xec\xfa\x9d\xff\x3e\x17\xe7\x41\xea\xf5\x79\x40\xc1\xe6\x13\xe2\x07\x1a\xc1\x79\x75\xce\xd2\x69\xc6\xa0\x94\x63\x1c\x7c\xff\xbd\x2b\x20\x60\xea\x14\x35\xca\xfd\xe4\x55\x2b\xa3\x9c\x1c\xd3\x46\x97\x34\x00\xbb\xca\xca\x97\xba\x4d\x96\xfc\x61\xdf\x26\x0b\xd3\xdb\x00\x4e\x72\x40\x7d\x45\x5f\x94\x99\xe0\x64\xde\x2f\x69\xa1\xbd\xa9\x25\x2d\x34\xdd\x09\x5b\x9f\xc0\x9f\x37\xe9\xf8\xbe\xa2\x6f\xfd\xf9\x52\xb9\xf6\x7b\x6a\x71\x42\x94\x99\x72\xec\xde\x4d\xfb\x0f\x0d\xf6\x4f\x5e\x80\x9c\x58\x3b\x82\x72\xb6\x58\xaa\x16\x99\xc8\x59\x3c\x40\x39\x99\x91\xcb\x30\xf7\xf1\xfb\x52\x68\xeb\x27\x12\xc7\xe6\x44\x7c\xbb\x49\x1d\x51\x0e\x9e\x9b\x79\x67\x3c\x67\x01\x2c\xbe\x9c\x22\x7f\x5c\xa9\x55\x07\x27\x2e\xfe\xb5\x50\xf6\x99\x3b\xce\x90\xdf\x01\x42\x2f\xc1\x3b\x5b\x8e\x2e\xc3\x3b\x0b\xd8\xd3\x65\x78\x27\xe8\x80\x65\x2e\xd8\x02\x8e\x7b\x39\x25\x7e\xc1\xed\xbd\x0c\xea\x2c\xc0\xc5\xd7\x32\x03\x43\x2a\x85\x81\x81\x6b\x8f\x90\x9b\xad\xa5\x96\x6d\xb2\x03\x7a\xba\xb9\x8c\xd0\x7a\x41\xdb\x7b\xda\x07\x90\x33\x63\xe6\x8b\x5f\x6c\xde\x42\x72\xb6\xd1\xf2\x25\xc0\x66\x1a\x24\x6c\xfb\xfc\x2f\x76\x13\x67\xbc\xaf\xe5\x4a\x6b\xdf\xfa\x32\x95\xf0\x27\x18\x7a\xcd\xd7\x8a\x3f\x6b\x2d\x3b\x7e\xe2\x31\x21\x1d\xfe\xcd\x35\x6c\x69\x4a\xd6\xce\x9d\x56\xd8\xcf\x96\xe6\x3a\x3c\xb9\xa7\x1c\x39\x3b\x7b\x2a\xd9\x8e\x01\x8a\x28\x6e\x5d\xda\x63\xed\xef\x4e\x85\xca\x03\xc7\x21\xbe\x89\xf7\x43\xa5\xd8\x06\xe4\x71\x36\x6e\x00\x79\x91\x34\x2d\x98\xf2\xe2\x88\x9d\x30\x81\x2c\x25\xc5\x1f\x84\xbc\x2c\x61\x3d\x4b\xfd\x7d\xe7\x03\xb7\xe7\x55\xb9\x96\x98\x7a\x82\x77\x4e\x58\x42\x96\xd0\x9d\xdf\x91\xe3\x55\xe3\xa2\xd8\x82\x05\xe8\xac\x35\x75\x88\xaf\x18\xbc\xf0\x32\x9d\x6c\x65\xc6\x9a\x32\xf6\x41\x19\x10\x24\xf3\x89\xca\xba\xb3\x4f\xf2\x50\x66\xb6\x71\x73\xaa\x93\x5e\x7e\xa4\x3d\xda\xdf\xc6\x8d\x52\xb5\xe1\x01\xe1\xe7\x6c\xb8\x3d\x56\x44\x53\x63\x70\xf4\xec\x4c\x91\x54\xe4\x80\x55\x04\x5f\xee\x78\xe4\x1c\x42\x19\x11\x9d\xc9\x95\xab\xd4\xe6\x4c\x1e\x48\xc3\xed\xa1\x2f\x87\xe3\x2c\xe5\xb8\xa3\x0c\xc2\xf1\x75\xbf\xa4\x58\x07\x46\xa4\xdf\x36\x70\x8d\x15\xd1\x01\xb4\x12\x0e\xe8\xb8\x8e\x24\x2f\x3e\x2d\x17\x0e\xf3\x67\x6d\x76\x62\xf9\xf5\xfb\x4e\xc6\x2c\x66\x9d\xf3\xc8\xaf\x9e\x52\x96\x26\xc8\x83\xa4\x6b\x1e\xf6\x17\x67\x8d\x1f\xd9\x6f\x8e\x73\x03\x70\x64\x8b\x06\x75\xc2\x89\xb3\x84\xae\x2c\x33\x1f\x3a\xca\x2c\x26\x53\x43\x28\xe7\x5c\xf9\x52\x4a\x60\xcb\xbb\xc2\xc3\x8d\xd4\xf1\xa7\x41\x4e\xa9\x56\x44\xe8\xa2\x98\xc2\x6e\x96\xeb\xb1\x9b\x81\xcb\xeb\xf1\xf1\x57\x23\x29\xe8\x27\xad\x31\xc3\x51\xa9\x11\xc5\x0c\x96\xb1\x31\x78\x08\xc4\xd5\x12\xc0\xb2\xc5\x1d\x70\x6c\x88\x88\x81\x54\xf4\xa9\x37\x79\x22\xbe\xa2\xdc\x66\x29\x55\x21\x2c\x29\xd5\x99\x7c\x46\x24\xe1\x44\x38\x1e\xce\x01\x18\x8a\x24\xf6\x88\x11\xc9\x4b\x39\x6f\x8a\xda\x02\xd3\xca\x31\x25\x42\xfe\xb7\xf7\x9c\x0c\x9b\x73\xf7\xe4\xd7\xe8\xde\x12\x03\xa4\x51\x9b\xd7\xaf\x65\x32\x25\x30\xc3\x85\xd3\xbc\x17\x57\x8c\x3f\x67\xeb\xe1\x3b\xa1\x2d\xef\x45\xcb\xfe\x0c\x85\x60\x3b\xfa\x73\xda\xb5\x11\xc9\xf7\xb4\xbc\xa9\x7b\xda\xf8\x27\x3d\xec\xf7\x55\xa7\x64\x63\xf6\x09\x8b\x39\x00\x97\x2d\x41\x31\x47\xbc\x1e\x82\x62\x8e\x38\x1c\x04\xc5\x1c\x71\x0d\x89\xb9\x74\xc4\x05\xf2\x67\xe3\x04\x0e\x04\x41\x2a\x07\x40\xef\x65\x6e\xd2\x11\x43\xb4\x30\x95\x23\xca\x8e\x30\x95\x23\xde\x11\xf3\x8d\xf6\x5c\xaa\x04\xb1\x9c\x71\x26\x98\x6f\x74\xc4\xd2\x2c\x8c\xe5\x88\x9e\x26\x8c\x65\x89\x53\xf2\xcf\x59\x7e\x32\x54\x86\xec\x54\xfe\x94\x41\x94\xf0\x17\x2d\x91\x8a\xce\x9b\x3d\xc5\xe0\xc7\x2c\x3e\x81\x1f\x67\x36\x18\x83\x1f\xe3\x65\x14\xf8\xb1\xcc\x54\xe8\x4c\x0e\xa9\xd0\x39\x51\xf2\x17\x8f\x0f\x87\xbc\xa9\x9b\x21\xf3\xd2\x29\xe7\xef\x8c\x94\xee\xb7\xc1\x0b\x88\x28\x74\xc6\x5f\xfb\x67\x10\x02\x46\x83\x97\x4f\xaa\x78\x02\x5e\xf0\x5f\xa1\xfd\x08\xde\x38\xe1\xdf\x58\x2f\xc7\x25\x60\x2a\x12\x82\x71\x02\x96\x5f\x82\x2c\xce\x58\xeb\x84\x58\x9c\xb1\x76\x0b\xb1\x58\x2b\xfd\x15\x26\x71\x3d\x8c\x8c\x78\x40\xd7\xc3\xac\x11\x0f\xe8\x7a\x38\x36\x44\x03\xba\x1e\xda\x6d\xb8\xe2\x88\x93\xe2\xe5\xd3\x88\xb9\x20\xb4\xe2\x7a\xf8\xc1\x02\x2b\xd6\x78\xeb\x45\x02\x5a\x63\x27\x7a\xd9\x53\xca\x5e\xf3\x62\x57\xa2\x7a\xdd\x37\x73\xc1\x15\xab\x67\x0d\x56\x40\x20\xc6\x1a\xcb\x94\x48\x3d\x6b\x50\x05\x22\xf5\x5c\x4f\x3a\x28\x04\x40\x2e\x98\xc2\x37\xae\x87\x1f\x23\x78\x63\x8d\xbd\x5a\xe8\xc6\x1a\x8c\x81\xc0\x8d\x35\xe6\xd0\x97\x2f\xa6\x77\xea\xb3\x17\xb4\xe5\x55\x47\x14\xe7\xc7\x38\x35\x54\x94\xdf\x17\x81\xa7\x33\xa2\xfd\xf5\x6c\x92\x62\xe2\xac\xf1\xfb\x93\x2c\x3e\x46\x23\x33\x71\xb6\xcc\xe9\x17\xf4\xcc\x4f\x44\xdd\xcf\x32\x01\x0e\x6d\x4a\xb9\x22\xd5\x65\x3e\xbc\x31\xb0\xb3\xdf\xbf\x09\xe1\xe6\xda\x02\x13\x27\x68\x9b\xf5\x06\x54\x4b\xc1\x26\xe6\x04\xd4\xbd\x20\xe6\x04\x46\xb6\x84\x5a\x0c\xbd\xd1\x7a\x63\x8c\x7f\x52\x90\x2f\x73\x35\xef\xca\xcf\xc9\x9f\x17\x56\xf1\x69\x35\x0d\xf4\xdd\xad\xa6\x45\xf2\xd2\xd6\xd4\xf9\xf1\x43\xbe\x94\x79\xac\xe5\x55\xe9\xf5\x4f\x10\x06\x6f\x7c\x9e\xbf\x77\x75\xd7\x28\x69\x91\x83\xb2\xef\x15\xd1\x68\xd7\x34\x10\xa7\x67\x4d\x51\x56\x2e\xd2\x39\x13\x0c\x96\x34\xca\x04\x83\x85\x49\x07\x11\x27\x7b\xd1\x1b\xc7\xe6\x7f\x41\x9a\xbc\x39\x60\x29\xd6\x71\xaa\xfc\x62\xb8\x36\x03\xc3\x78\x73\xa2\xd2\x20\xbb\x27\x01\x51\xaf\xb7\xa3\x56\xf3\x4f\x1d\xb5\x9a\xdf\x84\xb6\xce\xee\xfc\xb6\xaf\x12\x95\xea\xed\xcb\x65\xe0\x0a\x50\x69\xc6\xa9\x2f\x80\x63\x8b\xff\xff\x6d\xd2\xc0\x80\x19\xcc\xa5\x79\x83\xdc\x5e\x42\x31\x7e\x45\x6a\x3d\x5c\xf4\xe8\x8c\x71\x5b\x30\xdd\x2c\x43\x17\x4b\x3c\xb1\xe2\xcb\x6c\x51\x97\xa0\xcb\x24\xbe\x79\xbd\xed\x9b\x64\x74\x3f\x78\x1f\xf9\xc7\x1f\x1b\x73\x89\xd7\x5a\x46\x28\x16\xa0\x6c\xeb\x63\xf7\x11\x7c\x67\xeb\x83\x35\xf7\x41\x3a\xae\x26\x22\x18\xe1\x7c\x2a\x1d\x65\x72\xc7\x31\x9c\xb0\x06\xd0\x20\x00\x61\x1b\x9c\x69\x66\xb5\xac\x71\x00\x18\x41\x58\x1f\xd6\x90\xf2\xd7\xb7\x55\x22\x6d\xf1\x9b\xa5\x58\x39\xcd\x22\x58\xa5\xa0\x01\xcb\xa4\x6f\x69\x9e\x82\x18\x7e\x35\x8a\x29\xe3\x29\x91\x74\x8d\x28\x08\x66\xca\xcb\x23\x03\x66\x69\xb6\xef\x8e\xb9\xc6\x7c\x38\x52\x07\x92\x0c\xfe\xdc\xb7\x84\xf4\xab\xf5\xce\x33\x6d\xd5\x4f\xaa\x50\xd0\x36\x5b\xc6\xc7\xe6\x8a\x40\x89\x3e\xa6\xf1\x03\xf9\xb8\x4c\x3c\x49\x3e\xad\xaf\x68\x2c\x17\xc2\xe3\x99\x99\x57\x95\xe9\x94\x03\x4f\xb8\xbf\xde\xf3\x63\x9d\x40\x74\xe6\x43\x45\x0f\x71\x95\x16\xec\xaf\x77\x2c\x17\x42\xfd\x75\xd0\xe5\xeb\x63\x0f\x54\x4d\x53\x05\x19\x25\xd6\x66\x1b\xcc\x67\x4e\xf7\xaf\x24\xac\xeb\xcc\x33\x81\x5b\xad\x0b\xec\xcb\xe0\x56\xb7\x7b\x5f\x86\x2e\x2d\x0f\xc7\xbe\x9c\x3e\xd4\xea\xe5\x16\x85\x64\xbc\x8e\xdb\x29\xed\xc1\x72\xef\xcb\x69\x40\x3d\xe0\x5b\x79\xec\x07\x7e\xa2\x6d\x48\xde\x4a\x29\xd9\xac\x1a\xe2\x9f\x45\x9a\x63\xdf\x50\x9a\x6a\xe2\x47\x8e\xe3\x2d\xe2\xc7\x82\xeb\x75\x5f\x46\x97\x4e\x3e\xb4\x27\xb1\x52\x2a\x6a\x1b\x4d\x45\x6d\xcb\x77\x32\x8c\x7b\x50\xb7\x80\x75\xf3\x57\xc3\x96\x99\x3c\x5d\x14\x96\x94\x5b\xd9\x16\xcc\x6e\xb0\xb5\x6f\x21\xe9\x06\xdb\xfe\x16\x92\x6e\xb0\xfe\xb6\x90\x74\x03\x63\xda\xbe\x8c\x2c\x9d\x69\xd9\x5b\x6f\xa6\x3e\x59\xfe\x2b\xdd\xf5\x6d\x32\x43\x7a\xdc\x23\xda\xa2\xfc\x77\xf8\x54\xb7\x90\x74\x83\xc3\x62\x5f\x4e\xd3\x98\xe1\x16\x04\x1b\xcf\xce\xbe\x1c\xc9\xf5\xef\x64\x39\xdf\x57\xa5\x95\xe6\x3f\x11\x04\xd3\xe9\xaf\x93\xd0\x3c\x77\x9e\x8a\xee\x02\x62\xb0\x6d\x0a\xc8\x86\x01\x76\xdf\x06\x8f\x52\xd2\x6d\x9a\x34\xec\xdf\x5b\x50\xba\x09\x78\x63\x1b\x3b\x37\x21\x58\xd8\xc2\xce\x4d\xa2\x22\xf6\x6d\x4b\x85\xf5\x93\x2d\x62\xc9\x09\x58\x63\x9b\x57\xb2\x11\x66\xbd\x05\xab\x9b\xa0\x3e\xb6\x50\x75\x13\x85\x73\xdf\xb6\x5b\x30\xa9\x6e\x7b\x2d\xbc\x6b\xed\xdb\xcc\x28\xb0\x60\x6c\x81\xec\x26\xda\xff\x06\x64\x07\x1b\xd3\x36\xe5\x64\x83\x9a\x6d\x8b\x46\x72\x8e\x9e\x82\xbc\xad\xe4\x4b\x6d\x6a\x2c\xab\xdb\x88\xd0\x4e\xe3\xbc\xa9\x0d\x06\x00\x8e\xbd\x45\x3f\xc4\x56\x05\xb8\x75\xdf\x86\x76\x0e\x5a\xbe\xa5\x0d\x77\xaa\x70\xde\xb8\x91\xef\x7c\x2d\x8e\x24\x4d\x39\x7f\xc7\xd7\xd0\x8c\x94\xd0\x6d\x35\x63\x63\xf4\xe6\x88\x24\xd7\x48\x3a\x28\xef\xc0\xc3\xec\x34\x20\xad\x73\x9f\xdf\xb7\xdd\x03\x35\x92\xf4\xca\x87\x2a\xd0\xda\x7a\xbe\x94\x47\xc0\x6a\xda\x16\x1c\x6d\x3d\xac\x00\xc3\xd1\x1e\xdc\xf5\x5b\xf8\xb3\xf5\x30\x79\xc5\xe3\xb8\x1e\x7e\x95\xf0\x66\xeb\xe1\xff\x1b\x6e\x16\xce\x8a\x2d\x22\xc7\x8a\x51\x69\x0b\x6e\x56\xf1\x37\x6d\xa3\xcd\xc2\xc5\xb1\xc5\xe3\x58\x71\xd5\x6c\xf1\x38\xae\x27\xcf\x94\xd6\x05\xcb\xc3\x16\x71\x63\x1d\x8d\x1a\x7d\x8d\x60\xab\x28\xbe\x46\x14\xda\xed\x6b\x44\x4d\x29\x1e\x38\x3a\xec\x7b\x43\x89\xc4\xd8\xa4\x18\x6b\xb4\x1e\x38\x23\xc9\x2e\x00\x83\x5b\x48\xb2\xf5\x94\x3c\xb4\x42\xcb\xdf\x31\xae\xec\x4e\x39\xa6\xb9\xe1\xf2\xbf\x8d\x2b\xbb\x80\x3b\xee\x62\x83\x7e\xa7\x5b\x36\xe8\x5f\x3f\x51\xbe\x14\x66\xa7\xd1\x62\x17\xb8\xc3\x6d\xb4\xd8\x75\xfd\x9e\x5a\x59\x67\x66\x19\x3c\x76\x5d\xbf\xe6\x5b\x21\x4b\xc7\xed\xdb\x62\x53\x30\x78\x6c\x60\x2f\xdf\x05\xe4\x64\x7e\xbc\xd3\x5e\x30\x63\x0c\x25\xbb\x80\x93\x6e\x63\xc7\xda\x93\xce\xe9\xb2\x31\x60\x02\xdd\xb0\x3d\x3e\x69\x84\x6d\x69\x4f\x4a\xb2\xd1\xf0\x49\x93\xa4\x9f\x3f\x8c\xaf\x61\x93\xcc\x84\xea\xfc\x2e\xd4\x29\xb8\xd7\xd3\x68\x6d\x35\xc4\x17\xdb\xf9\xae\xb9\x12\xe4\x5d\x5f\x09\x98\x28\x02\x7f\x3d\x8d\x2a\x2b\x17\x84\x85\x64\xef\x0e\x83\x52\xb9\x21\x3c\xf9\xd2\xde\x1d\xeb\xb0\xbb\x72\x45\x78\xfe\xc3\xee\x2d\xdc\xd8\xd3\xf2\xa5\x7d\x57\xf0\x91\xee\x6a\x90\x3c\x20\xa0\x6d\x50\xd9\xc0\xba\xbf\xab\x7d\x59\x70\xa9\xee\xea\x14\x45\x69\xe1\xa2\xe7\x74\x55\xc7\x77\xc7\xb2\xbc\x85\x1b\x7b\x30\x2c\xec\xca\xdd\xe2\x57\x90\x2f\x13\xe9\x9c\xd9\xca\x4b\xda\x64\x42\xf2\x92\x16\x3b\x7b\x0b\x37\x86\x5d\x89\xe7\xcb\xbf\xb1\x49\x8e\xa3\xb1\x3a\xba\x6f\xa4\x20\xdf\x77\x32\xde\x44\xf7\xa5\xfd\xa2\x69\xc2\xbc\xb1\x2b\xfe\x29\x16\xb8\x40\x62\xf7\xb3\x7e\x4f\xad\xfe\xf1\xe5\x71\xa0\x0d\x53\x1f\xcc\x58\x4b\x03\xb9\x50\xb0\x8f\x3a\x47\xfc\x8d\xa1\x6a\x57\xb3\xe2\x34\x5a\x0f\x5f\xee\x4d\x83\x15\xec\x77\x67\xb6\x1c\xdb\x17\x4b\xaa\xd1\x6d\xa8\x45\x7a\xb9\xd8\x7c\xf9\xf6\xbb\x29\xf7\xe3\xa7\x9e\x5b\x4a\x30\xdf\xb8\x3a\x6f\x27\x98\xbf\x87\x2d\x06\xfb\x31\x1a\x04\xef\xee\x36\xfe\xec\xc6\x15\xbb\x9d\x53\xbe\x83\x96\xde\xca\x1b\x7f\x17\xac\x9c\xdb\xc9\xe1\x4b\x96\xae\xf0\x67\x0d\x5c\xfa\x7e\x70\x57\x3d\x11\x8d\xa9\xe4\xb7\x2a\x07\xfc\x57\xa4\x60\xf8\xc2\x57\x5e\x5e\xba\xb7\xe4\xa1\x61\x92\x8b\x36\xc1\x09\xbe\x68\x84\x66\x53\x21\xd2\x69\x1b\x56\x56\x1e\xf4\xc8\x07\x46\x06\xbb\xd5\xf7\xe3\xbb\x82\x73\x90\x7e\xc5\xc7\xe2\x40\x6c\x16\x29\x59\xa8\x5b\xc2\xfb\xb6\x19\x22\xc9\x9a\xfb\x15\xb7\x1e\x32\xc4\x22\xb4\xef\x1c\xc8\x82\xa1\x35\xc0\x88\xdb\x30\xb4\x0a\xbc\x7b\x3b\x8f\xfb\xc0\x6c\xbf\x05\x44\xfb\x3e\xa5\x81\x9a\x4d\x15\xe0\xf8\x76\xf2\xf6\x59\xd2\x22\xf3\xe7\x01\xec\xdc\x0f\xd7\x09\xf6\x10\xc3\xd6\x6a\x49\x6f\xcc\x71\x0f\xdc\x7b\x3b\x67\x7b\x85\x50\x75\x3b\x69\x7b\xc5\x84\xb9\xcd\x28\x99\x5f\x77\xa0\xdb\xc9\x33\x5b\xf3\x5b\x6a\x15\x19\x44\x4b\xa5\xbe\x61\xa4\x12\xb9\x41\x50\x47\x9d\xb6\x1d\x44\xf1\x6e\x76\x34\xfc\x24\x5d\x37\x50\xd3\x8d\x69\x73\xae\x97\xaf\x24\x03\xf2\xef\x99\x0c\xd6\x28\xca\xcd\x06\x64\xd4\xf4\x66\x03\xf2\xef\x3b\x19\xac\x7f\x6f\x0a\xf7\xf9\x7b\x53\x2a\x35\x9b\x81\xe8\x23\x0b\x30\xac\xdd\x6c\x30\x66\x6a\x36\x1b\x8c\x99\x99\xcd\x06\x63\x66\xb1\x80\x6f\x23\xbb\x7f\x73\xde\x6c\x5f\xfc\xb6\xb8\x24\x0b\x98\x81\x2d\x2e\xc9\x02\xf8\x61\x37\xc7\x91\x02\x35\xd9\xcd\xa9\x1e\xf0\x9b\x6e\x30\x72\x6b\xfc\x7b\x3b\x07\x40\xc7\xd6\x29\x00\xdd\xc8\x41\x05\x80\x6e\xa5\xe1\xc2\x12\xad\x34\x5c\x77\x24\x96\x41\xf3\x1d\x89\x05\x25\xde\xc9\x99\xd3\xb9\x39\x00\x6f\xa1\x79\x1b\x5c\x87\xff\x77\x1b\x5c\x97\xf3\xc2\xc9\xed\xe7\xcc\x87\x43\xcf\xf2\x9d\xcc\xc7\xf9\x33\x0a\x29\xc2\x75\xbd\x85\xad\x2b\x33\x7f\x06\x55\x93\xb1\xf0\x76\x1a\xed\xa0\x39\x52\x88\x8d\xb8\xf9\x32\xcd\xb1\x22\xfa\xc8\x09\xe9\xfd\x6e\x68\xa5\x8c\xb0\x31\x2b\x6c\xb4\x22\x80\x5c\x4f\xcd\x77\x32\x6f\xd6\x54\x68\xa7\x3b\x37\x98\x86\x52\xea\xea\x3b\x26\x6a\x0e\xf4\x6e\x9c\x0a\xeb\x42\x64\x90\xeb\xe1\xb6\x05\xca\x0e\x14\xe0\x36\xc1\xe3\xc8\x06\x67\x82\xc7\xe1\xac\x68\x5f\xd1\xaa\xd6\xc8\xb7\x32\x6e\xa2\x3d\x05\x20\x87\x0a\x0f\x49\x23\x9e\xe9\xdd\x1d\x57\x9f\x1b\x76\x87\x14\x67\xe4\xa9\x35\x24\x56\x72\x07\x7f\xc2\x85\xa3\x83\x3f\xe1\x1a\x11\x12\xc7\x91\x7a\xd1\xff\x52\x2f\x1c\xe8\x29\xca\xe8\x94\x96\x6f\xad\x40\xa1\x0f\xc2\xe2\x98\x2d\xc3\x58\xbd\x81\xc5\x64\x8b\xb6\xf1\x7e\xb0\x74\x6c\x78\x1b\x7b\x06\x99\x08\x7e\x7e\x56\x27\x82\xbf\xe5\x65\x87\x79\xfc\x9e\x0a\x6c\x1a\x1d\xa5\x3b\x77\x4f\x86\xca\xf6\xc4\xdf\x97\xb6\x27\x96\x88\xcb\x6d\x4a\x41\x3e\x50\x69\x3f\xe6\x45\xb6\xc3\x8e\xff\x2e\xff\xdd\xfe\x3b\xcc\x8d\x5b\xf9\xe9\x5b\xcd\x90\x1f\xe3\x1c\x58\xea\x42\x14\xb6\xd8\x03\x7a\xac\x41\x34\x50\xf6\x45\xa8\xc4\xb6\xd1\x86\x15\x72\x82\x2d\x7c\xe1\x77\x87\x8e\x38\x2c\x52\xa9\xcc\x43\xd1\xb0\x9d\x86\x3e\x7a\xa7\x50\x84\x75\xfc\xde\xb4\x07\x04\xc1\x29\x1b\xfc\xe2\x20\x63\x43\x41\x72\xc2\x86\x1b\xc9\x71\x1a\x5c\x32\x86\xe9\xf1\xd9\xdc\x06\xd3\x99\x2a\x8c\x14\x04\xd3\xb0\xc5\xd6\x78\x77\x7e\x89\xd9\x1a\x17\x3c\x10\xdb\x6c\x8d\xf0\x86\xee\x01\xc5\xf9\x93\x72\x5e\xda\xa3\x53\x89\x2c\x49\x2b\xad\x93\x25\x89\x3d\x5a\xa0\xc2\x7b\xe1\xc7\xda\x26\x6b\x1c\xb9\x20\x89\xac\x31\x28\xdf\x2d\xb2\xc6\x71\xa5\x4a\xf1\x98\x67\x1a\x0f\x6f\x99\x4c\x82\x61\x27\x1f\xb3\x56\x58\xc1\xd1\x5a\xde\xfc\xe8\x3b\x4a\x11\x55\x79\xe3\x26\x6b\x6a\xc6\x06\xe5\xf9\x16\x02\xb0\xd4\xf5\xef\x5c\x0b\xdb\x79\xe4\x81\xd6\x6d\x27\x87\x07\x92\xb7\x05\x0f\x2c\xe0\xcc\xb6\x92\xc3\x97\x98\x47\x86\x0d\x4b\x2d\x6f\xba\xdd\x69\x9b\xdb\xcd\x77\x66\xe0\x8d\x92\x36\x1c\x7e\x13\x45\x5d\x40\xbf\x79\xe7\xcf\xe9\xd8\xcf\x62\x22\x41\x3b\xe7\xa7\x21\x7a\xb5\x44\xf2\x46\xbc\x90\xb4\x11\x63\x3a\x99\x76\xd5\xb1\xd7\x8b\x48\xb1\x56\x14\xca\xe9\xb4\xc4\x80\x26\xb6\xf0\x7a\xb5\xa2\xd4\x4e\xfb\xf1\x30\x08\x09\x9f\x57\x6b\x49\x31\x32\xa3\xcc\xbc\x29\x33\x4a\x49\x85\x4e\x58\xc1\x95\x17\x7c\x1e\xff\x46\xf8\xbc\xf5\x70\x46\x4f\xbb\xfc\x18\x0c\x81\xf5\xd6\xf3\xe4\x3b\x81\x25\xb9\x5c\x4e\xdf\xdc\xd9\xb0\x45\xa0\xb8\x1e\x8e\xa1\xe9\x00\xc8\x96\x1a\x64\xe3\x60\x73\x98\xf6\xf1\xb5\x48\xb2\x22\xf4\xd4\xa7\xd3\x84\x33\xc1\xf9\xde\x31\x69\x6f\x11\x2b\xae\x07\xad\xc3\x54\x89\x57\x94\x17\xc0\x75\xd1\x5e\x9c\x9c\x7d\xe6\x38\x9d\xdc\xbe\x33\x70\x9b\xd8\x51\x9a\xb7\x6d\x02\xfe\x95\x2c\xc2\xc2\x8c\x15\xee\xbb\x94\x64\x06\xda\xd8\x64\xa7\x33\x50\xa2\xf2\x1a\x79\xb7\xf0\x24\xef\xa9\xbc\xab\x99\x74\x93\xb8\xc4\x8c\x89\xe3\x12\x41\x3c\x6c\xa1\xeb\x9e\x4c\xd7\xc9\xf5\x3a\xc5\xbe\xf4\x8c\xc6\x5b\x81\x2c\x69\x9f\x91\xec\xfc\xa1\xe5\x18\x45\xfe\xac\x81\x76\x0f\x74\xdd\xdb\x14\x8a\x49\x30\xb2\x97\x63\x71\x89\x36\xd9\x82\xe1\x3d\x51\x4e\x80\xe1\x15\x8e\x06\x73\x2a\xde\x85\x85\xaf\x34\xee\x77\x28\xa1\xf7\x02\x37\x3a\x23\x1e\x95\x94\x6a\x74\x71\x64\xfc\x8c\xac\xbb\x47\xbe\x34\x4d\x2c\x71\x0a\x5b\xd0\xba\x16\xd3\xc1\x32\x69\x2c\xbe\xe1\x6d\x2c\xdd\x8d\x23\x77\xaf\xc5\x09\x94\x97\xff\x2c\xd2\x9b\x65\xa2\xd3\x8c\x84\x78\x63\x63\x12\x16\x5e\xee\x0e\x71\xf3\x36\x24\x2e\x36\x68\x65\x30\x6f\xb1\x09\x0b\xd7\x76\x97\x89\xb6\x03\x67\x61\xce\x11\x67\x26\x47\x1d\x10\x70\xad\xc7\xf4\xe2\x34\xe5\x90\xe7\xef\x65\x5f\xc5\x4a\x29\xde\xff\xa9\xc2\x06\xc1\x9a\x52\xe4\xab\x58\x29\xe5\xe5\x96\x32\xee\x66\xe9\x58\x29\x54\x11\x28\x6c\xff\xc2\xb1\x25\x84\x60\x6f\x23\x4c\x7e\x92\xa9\xf3\x51\x83\x85\x63\x2b\xc0\x8e\xb7\x28\x0c\x07\x31\x04\x5b\x14\x86\xa3\xf1\xdf\x45\x61\x38\x5a\x4f\x15\x3e\x19\xfe\xcd\x44\xb5\xb7\xd1\x4e\xcc\x2d\xc0\x71\x3d\xd5\x0b\x7d\xc1\x78\x6f\xdb\x91\xd9\x7e\xb6\x51\x9a\x20\xe7\xf6\x36\x12\x0a\x3d\xc8\x84\x86\x73\x95\x88\x52\xae\x51\x0e\x04\x87\x2b\xa4\x40\xda\xc0\xe1\x4a\x8a\x19\x92\xf2\xcc\x7b\x6a\x4a\x91\x6d\x98\xd9\xea\x24\xe9\xb0\xb5\xee\xed\x2d\x87\x15\xec\xd4\xe7\x39\xc3\x76\x76\x1c\x8a\xb1\xf5\x6f\xe4\xa1\x62\xa8\xd1\x0c\x85\x7c\x7b\x72\x4e\x6e\xa7\xf4\xe4\x44\x15\xf4\xed\x7e\x7e\xa3\x01\x96\x97\x3d\xcf\x2c\x83\x57\xff\x89\x86\x22\xe7\x7f\xd8\xbc\xd7\x33\xae\x80\x79\xd9\x61\xb6\xfd\xad\x25\xff\xc0\xfe\xd6\xf2\x7b\x99\x15\x9d\x7a\x65\x80\x62\x37\x35\x72\x2e\x84\x8f\x5b\xa9\xcc\xbf\x67\x52\x0a\xb6\xf5\xa4\xa6\x07\xb6\xf6\xf8\xa1\x92\x8b\x37\x42\xb1\xb6\x21\x70\x2d\x46\xe2\xe3\x18\xfe\x5c\x48\x8e\xc3\x65\xf8\x65\xc7\x54\x72\x11\x4c\x14\xc9\x56\x2a\xbe\xc1\x04\xaf\xec\x83\x3f\x01\xdd\x4e\x34\x82\xa3\x71\x84\x08\x03\x57\xc0\x0b\x6e\xa7\xfb\x4e\x84\xfa\x76\xba\xef\x09\x5e\x6e\x1f\xf3\x4f\x10\x71\xb6\x9d\xef\x3b\xb1\x85\x5b\x34\x83\x95\xb8\x9b\x7d\x74\x18\x11\x4f\xb4\x4d\x3a\xf8\x33\x12\x1d\x87\x34\xb0\x53\x1d\x87\x34\x30\x33\x84\x91\xab\x95\x2d\xee\x38\xc0\x61\xe6\x3b\xd1\x0e\x3f\xbf\x87\xcb\x70\x85\x3c\xa5\xf1\x29\x48\xc7\x28\x13\xe7\x38\xf4\x1e\x65\xf4\x00\x3a\x99\x29\x48\xe6\xf0\xfc\x05\x61\x68\x7f\xbd\x74\xc8\xf0\xcc\x18\xf8\x5c\xc2\xe0\x46\x06\xf0\xf4\x99\xcd\x28\xc5\xe8\xd8\xfc\xfd\x05\xed\x4d\xeb\x27\xd9\xc7\xd8\x23\x7a\x6f\x72\xa9\x7f\x0e\xa9\xe1\xd9\x9f\x37\x1c\x0e\x30\xe5\xf1\x2e\x40\x0f\xb7\xd1\x6f\x8d\x85\xf3\xe7\x5d\x84\x6e\x18\xfd\xd6\x58\x62\x46\xbf\x25\x76\x61\x83\x70\x8b\xe5\x47\x99\xba\x47\x63\x74\xfe\x6c\xcc\x60\x53\x01\xfd\x86\x4d\x5f\xe8\xb7\x02\x8e\x69\x83\x7e\x63\xa8\x40\xbf\x31\xcf\xfe\x8c\x0a\x8f\x59\xd6\xdc\x83\x39\x61\xe0\x1e\x5c\xf9\x50\x7a\x62\x4b\x85\xd2\x13\xd9\xfd\xcd\x3d\x18\xb3\xa5\x80\x72\x65\x66\xa0\x20\xc1\x62\x06\xfe\x39\x2c\x18\x35\xdd\xc4\x84\x99\x0d\x26\x26\xcc\xb2\xfb\xb3\xa1\x21\x4d\x33\x86\x8e\x49\x2f\x0c\x5d\x99\xab\xfc\x7b\xdb\xfe\x73\xc2\xb4\x78\xd1\xfe\x30\x4a\x44\xf2\xa9\xcf\xe6\x28\x12\xc3\xf9\x1b\x7f\x5b\x2c\x98\x9c\xa2\x30\x2c\xe0\x50\x37\xe0\xbb\x96\xe6\xb8\xc7\xe9\xa2\x0e\x03\xd6\x91\x19\x0b\x7f\xdd\x97\x1b\xed\x57\x9f\x4c\x1b\xb9\xac\x02\xda\x43\x45\x02\xb4\xc7\x36\x03\x68\x8f\xd3\xee\xcf\x1a\x3c\xdb\xe0\x5f\x72\x5a\xa5\x18\x35\x1b\x33\x97\x10\x76\x93\xf8\xf8\xfd\xb2\x37\x16\xc2\x9c\x6d\xbc\x5d\x5b\xcc\x14\xf0\x76\x33\x92\xf0\x76\x74\xea\xa5\x6c\x2f\x24\xad\xda\x2f\x71\xf9\x0c\xfe\xa2\xa8\x06\x27\x4c\xb5\x5b\x4c\x83\xb5\xa2\x0e\x81\xd3\x63\x43\x7c\x59\xbf\xaf\xf9\x4e\xfa\xfd\xca\x9b\xd2\xef\x6b\xde\xd4\x0d\x76\xa5\x17\xf2\x4c\x72\x2e\x8a\x74\xb0\xc2\xeb\xb3\x45\x3a\x58\x21\x48\xde\xc2\xf7\xd5\x58\xab\x85\xef\xab\xa4\x81\xd9\xce\xf3\x9d\x40\x9d\xfd\xf2\x81\x8a\xf2\x25\x80\xdf\x04\xe8\xbd\x5f\xe8\xe9\x34\xd4\xde\xb6\x9e\x67\xb6\xc8\x62\x79\x7f\xf9\x0c\x65\xed\x2b\xfb\xf6\x02\x07\xb3\x05\xdb\x5b\x64\xb7\xda\x82\xed\x2d\x62\xd9\xb7\x60\x7b\x35\xfe\x55\x80\x7a\x2d\x15\xfa\x78\xc2\x42\x0f\x1a\xaf\x45\xf2\xfd\x82\xc1\x90\x36\x1f\xe4\xdb\x16\x29\xe1\x7a\x38\x39\x44\x4a\xb8\xc8\x1f\xb6\x05\xd4\x5b\xf1\x86\x39\xb9\x36\xf9\x3a\xb6\x28\x09\x57\x2c\x0d\x62\x24\x7c\xee\x91\x32\xd5\xee\x1e\x49\xed\xfe\x49\x53\xcf\xe8\xef\xe1\x30\x72\x31\x00\xed\xe2\x18\x06\x59\x87\xde\x0c\xb2\x8e\xd8\x96\x6d\x64\x1d\xf9\x4e\x36\xc8\xba\x5c\xfd\xdf\xa8\xe3\x2b\x4f\x15\xc6\x35\x52\xac\x3d\x8f\x2b\x95\xda\xf3\x88\x31\xe6\x6d\xc7\x19\x41\x32\x5b\xd8\xba\xe7\xe6\xda\x44\x8e\xeb\xa8\x9f\x6f\xe2\xba\x58\x2d\x4e\x79\xfd\xf3\x7f\xbe\x9d\x0d\x85\xfb\xaf\x80\x77\x0f\x21\xbe\x9b\x0c\xd7\x39\x48\x9c\xe1\x9a\x28\xca\x6d\x14\xde\x45\xec\xc8\x36\x0a\xef\x22\x3e\x62\x1b\x76\x77\x11\x27\xb5\x0d\xbb\xbb\x62\xba\x10\xec\xee\x21\x3c\x68\x1b\x75\x17\xe5\xd5\xe9\xaf\x89\x4f\xde\x4e\x7f\x1d\x7c\xe4\x76\xfa\xeb\x9e\xed\xe4\x6d\x2f\x30\x30\xcc\xed\xc4\xd4\x17\xd1\x37\x5b\xe8\xb9\xa7\xfd\x3e\xf5\xdd\x9a\x25\x65\x30\xdd\x15\x2f\x88\x13\x51\x47\x9d\x36\x7a\x6e\xac\x54\xa3\x58\xac\x68\xde\x86\xcb\x5d\x71\x8a\x18\x1f\x77\xf5\xfe\x1f\x9c\x96\x22\x01\x7c\x08\x7d\xd9\x6f\x6e\x9a\xcc\xf9\x37\xa1\xcf\xcc\xba\x8f\x23\x09\x59\x81\xce\x26\x1d\xcd\x5c\xe8\xb8\xd0\x71\x6d\x83\xe3\x56\x50\x24\x1f\xe7\x18\x61\x1b\x33\x29\xdf\x15\xa7\x8d\xb1\x72\x17\x54\x8b\xfb\x63\xfc\x26\x0b\xeb\x83\x3b\xf6\x57\xa7\x0f\x39\xf6\x75\x23\xe7\x7e\x5e\x75\x32\x40\xc7\xca\xf6\x01\xb2\xc9\xd8\x7f\x7c\x27\x24\x99\xd9\xfe\x38\x91\xc8\x8c\x64\x97\x25\x63\x2f\xec\xdc\x93\x63\x97\x14\xd0\xb9\x91\x91\x02\xba\x64\x54\x70\xaa\xf6\xb4\xc9\x01\x77\xcc\xc9\x8f\xd3\x8e\xe4\x5d\x27\x52\x67\xce\x91\x1f\x3a\x16\x43\xf2\x43\x97\x74\xdd\x89\xd4\x39\x25\x3e\x78\x63\x33\x10\x36\xc6\xae\xbc\x8a\x82\x4e\x03\x6d\x8d\x25\xd0\x61\x0b\x8a\xf7\x4c\xd6\xf4\x07\xe7\xec\x88\x68\x87\xf1\x48\x03\xcd\xf4\xc9\x7d\x87\xd4\xce\xa0\xaa\xf7\x07\x17\x2b\x87\x2c\x99\x9e\xa3\xa2\x7f\xec\x54\x4d\xf3\x7d\x4b\x08\x90\xc3\xe4\x7a\xc1\x0e\x6e\xa1\xec\xee\x9f\xa9\xc4\xec\x7a\x77\x6e\x99\xce\xf4\x1c\xe6\x89\xfd\xc1\x05\xdb\xf2\x54\xa9\x52\x32\xde\x78\x60\xbd\x88\x8e\x13\x3f\xdf\x20\xb8\x8f\x13\x3f\xdf\xc0\x62\xce\x85\x47\xd6\x8a\xd0\x71\x1e\xe8\x1b\xcc\xca\xb9\xf0\xc8\xd6\x3c\xb5\x85\xc1\x93\xed\x88\x57\xaf\x31\xd7\xce\xe5\x2c\xe7\x00\x5c\x8e\x33\x3f\xdf\xe0\xe4\xcf\x35\xe9\xcf\x83\x28\x08\x6d\x8f\x24\x08\xad\x17\xce\x71\x5a\xe8\x1b\xfc\xe3\xb9\x4c\x25\x02\x3e\xfc\x5c\xe6\x65\xc2\x0f\x72\xc4\xbc\xf7\x70\xed\x39\x26\xde\x9b\x90\x92\x9c\x0b\x76\xc9\x49\xc1\xc4\x13\xa6\xf9\xda\xfe\x06\x91\x52\x87\x74\xcf\xe8\x60\xe7\xb2\x6b\xf7\x4e\xfb\x95\x81\x17\x84\xde\xb9\xb0\x88\x34\x44\x47\x1b\xa2\xb0\x1d\xe1\xfe\x1a\x28\xc0\x73\x39\x4f\x04\xbf\xee\x08\xf8\xd7\xb8\x95\x9c\xcb\x5e\xdf\xdf\x18\x12\x12\xd6\xe8\x8e\xf9\x94\x26\xed\x35\x2f\x3f\x8a\xf0\x21\x35\x34\x3a\xc5\x11\xf8\xaf\xc1\xb6\x76\x04\xfe\x6b\x35\x1d\xb7\x47\x01\x4e\x93\x73\xe1\x51\xc8\x10\xda\x87\xf0\x1b\x7e\x27\x7f\x86\x92\xf3\x5c\xe4\x02\xcc\x28\x69\x4a\xe3\xf5\x3b\x97\x49\x81\x9f\x7c\xb9\x5c\x4d\xc4\x63\x31\xef\xd2\x08\xba\x6a\x86\x24\x7e\xb2\x28\xf1\x1a\x9e\xce\x63\xe8\x5e\xcf\xd8\x0b\xba\x97\xac\x62\xc7\xd0\xbd\x5c\xd6\x8e\x59\xf0\xca\xbc\xff\x1d\x67\x79\x0c\xec\x2b\xd3\x9b\xf0\x31\x29\x5e\x99\x77\x0a\xb6\x93\xfd\x4e\x23\xb6\xc5\x34\xc2\x7e\xf5\x3c\x7c\x49\xe2\x99\x92\xe3\x60\xcb\x3d\x86\xef\x75\xc2\x07\x8f\x01\x7b\x15\xca\x9d\x63\xc0\x5e\x85\xd7\xed\x98\x08\xaf\xe3\xb9\x3c\x37\x04\x49\x77\x8a\x32\x23\xd2\x9d\x97\xb7\x45\x1a\x6c\x4a\xa4\x92\x06\x6b\x02\xd7\xf2\xab\xd7\x08\xb3\x9e\x92\x3f\xff\xf7\xff\x1a\x79\x38\x8e\xd0\x7f\x8d\x6c\x1e\xc7\x49\xa1\xd9\x58\x8f\x93\x42\x73\x36\x1d\x91\xdf\x35\x36\xfe\x43\x4e\x68\x68\x53\x8e\xa9\xf0\x2a\xbc\x29\xe7\xde\xf8\xf5\x19\x16\x07\xc4\xa2\xf6\x1d\xb3\xdf\xd5\x96\xae\x0a\xa8\x00\x33\xc6\xb9\x37\xad\x4d\xad\x4a\x78\xdd\x22\x7d\x9c\x89\x9a\x5a\x4d\x9c\x04\x57\xf6\x11\xdf\x5d\xe3\xee\x7c\xa0\xbb\xcb\x10\x39\x1e\xf6\xca\x8f\x72\x6c\xda\x62\x38\x1d\x71\xb6\xa8\x04\x0d\xb2\x30\x42\x66\x70\x44\x93\x3a\x37\x17\xf4\x94\xe3\x74\x0e\xe9\xb7\xc8\x32\xd0\xb2\x4e\xb1\xa5\x18\x83\xc1\x29\xbe\xaf\x33\x71\x8a\xef\xeb\xd6\x02\x4f\x81\x4e\x87\x41\x28\xbe\xb0\x5b\xe5\x3a\x82\x0f\x16\xd0\xad\xa7\x70\x61\xef\x48\xf2\x24\x8d\x7c\x27\x8f\x8c\xf5\xc3\xe3\x9c\xd0\xed\xce\xab\x06\x18\x30\x76\xc5\x46\xc0\x95\x67\xba\xea\xb1\xfb\x14\x5b\xfd\x18\x0f\xc1\x07\x27\x87\xca\x11\xa5\x5d\x99\x8b\x0a\x7d\x5d\x67\xc2\x17\xe3\xa5\x89\x99\x3f\xc5\x38\xd3\xdf\xab\xba\x40\x31\xef\x8a\x79\x2e\xd8\x5b\x8a\x51\xa7\x69\x8c\x2f\xe1\x3e\x2d\x4f\xb1\xa5\x87\xfd\xc1\x59\x9f\xa3\xf4\x1e\x67\x7d\x7e\xae\x34\xc0\x00\xd5\x34\x7c\x3b\x95\x7a\x4f\x25\x0c\x47\x9e\x0a\x5b\x39\xe8\xb2\xc9\x2d\xd8\x4b\x8a\xaf\x29\xcc\xc1\x62\x72\x8b\xfc\x46\x5f\x53\x52\xe8\x51\x54\xd4\xa0\xad\xe6\xea\x87\x16\xe0\x08\xfc\xf7\x90\x7a\xee\x98\x28\xee\x22\x26\xf8\x00\xfe\x23\x9a\xed\x38\xd5\xf3\x45\xe0\xd1\x11\x35\xdc\x57\xf4\xe0\x99\xfd\x2d\xc9\x4f\x8e\xd9\xdf\x26\x09\xad\x4f\x85\x0a\x91\x16\x1a\x0f\x18\xdd\xff\x04\x0f\x38\xf2\xad\x0d\x0e\xcc\x0a\xf0\x80\x1c\xc0\x15\x8d\x93\x49\x12\x40\xe0\xc8\x53\xaf\xcd\x5f\x49\xb6\x39\x58\x80\x17\x91\xd1\x35\x8a\xaf\x11\x88\x72\x6a\xf4\xcf\xbc\x6c\xad\x8c\xd9\x2f\xbe\xb7\x96\x8d\x5c\xb0\xbd\x5b\x89\x57\xfe\xb9\x91\x8b\xfd\xed\xb7\xb5\x09\xd3\xd7\xb2\xde\x04\xe9\xfb\x6d\x24\xd5\x29\xef\xf8\xdd\x15\xdd\x93\x31\x10\x0f\x40\x4e\xb6\x9a\x29\xc6\x87\x9c\xbd\x54\x81\x3b\xbf\x45\xdc\x3e\xcb\x18\xaf\x9c\xaf\x8c\x97\xd3\xe0\xd4\x5f\xa5\xb8\x3d\xa8\xc7\x28\x2b\x6e\xaa\xc7\x98\xbd\x4a\x9a\x89\x63\xcc\x5e\xae\x89\xa7\xe2\xa5\xe7\x10\xaa\x49\xcc\xcb\x90\x1d\x52\x9c\xd1\x64\x3b\xed\xc9\xd2\x78\x4c\x19\x77\xfd\x3e\x5d\xc6\x55\x45\x74\x78\x79\x6a\x75\xc2\xf1\xfc\x61\xa1\xac\x48\xe3\x7a\x2a\x28\x2b\x37\xdf\x0c\x72\xa4\xc2\x3d\x82\xf7\x8d\x4c\x66\xc3\xfb\x40\xef\x9c\x47\x21\x1e\xdc\xfb\x8e\xb0\x7e\x85\x2c\xc6\xc7\x50\xbf\xc5\x8a\x15\xd2\xaf\x40\x2f\x78\xc4\x3b\x57\x2e\x76\x53\xd1\xce\x0d\x2e\xf2\x47\x20\xc0\x72\xa1\x43\x3c\x0a\xfc\x26\xfa\xf1\x88\x91\xae\x10\x36\x79\x1e\xef\x90\x2b\xa5\xbc\xbe\xcf\x4a\x6a\x97\x41\x73\xe6\x3b\x19\x34\x39\xe1\x04\x1d\x2c\xc4\x57\x9e\xc7\x9b\x27\x5a\xd5\x63\x83\x26\x53\xff\xb1\x41\x93\x19\x22\x4e\xbb\x42\x40\xe7\x11\xa5\x5d\x21\x8a\xf1\x88\xd2\x6e\x90\x83\xf4\x08\x6f\x58\x08\x04\x3d\x8f\x0d\xee\xe8\x83\x8f\x0d\xee\x25\xf5\xa9\x7f\x25\x2d\x53\xff\xd8\x64\x4c\x6f\x07\xf2\xfc\x3c\xc6\x12\xcc\x94\xe9\xfe\xe5\x99\xfa\xc7\x79\xae\x74\xd6\x85\xb8\xcc\x23\x88\x62\x79\x50\x37\x4c\x76\x47\x3c\xe7\x31\x22\xb1\x63\xa2\x38\xce\x59\x9d\xe5\x21\x44\xe2\xcc\xda\x7d\x4c\x66\x86\xea\x2f\x08\x62\xe8\x21\x8f\x30\x87\x65\xe5\xc7\x2b\x7b\x3a\x76\xbf\xa3\x84\xd5\x65\x65\xfa\x7c\x57\x46\x59\x19\x18\x45\x97\xac\x34\xed\xbb\x2e\xca\x62\x5f\x7c\x6c\x94\x64\xf7\x12\xd8\x70\x66\x37\x78\x6c\xa2\xec\x29\x73\xe9\x3b\x06\xd4\x90\x03\xf6\x86\xc7\xf6\xca\x91\xef\xfe\xf4\x66\xca\x94\x99\xd5\xb7\xd4\x23\x4e\xbc\xb2\xae\x48\x32\xa5\xb2\xdf\x08\x68\x58\x80\x70\x1d\xa5\xb1\x2e\xeb\x8a\xf4\x48\x9a\x48\x6e\xf5\x42\xb2\x25\x39\x92\x00\x6c\x2c\xc0\xe6\xb0\x12\xf6\x6a\x53\xe7\x25\x67\xc4\x11\x75\xde\x8c\x5e\x2a\x6c\xe1\x04\x45\x7a\x9a\x0d\x94\xe8\xd1\xc2\x16\xce\x28\xb4\xc2\x16\xce\xc9\x80\x0a\x5b\x38\x81\x9b\x1e\x61\x0b\xe7\x64\xe8\x85\x2d\xac\xf8\xf0\x8f\xb0\x85\x13\xd8\xea\x11\x9a\x70\xce\xeb\xdf\x69\x18\x4e\xf3\x8e\x4e\x9e\xbf\xd3\x1c\x9d\x3c\x22\xfd\xa9\x9c\x48\xf6\x16\xb1\x0c\x9c\xb7\x3a\xc7\x9e\xf0\x83\x33\x6a\xba\x10\x83\xc9\x09\x72\x9a\xa9\xb2\xb8\xd2\x19\x30\x48\xf8\xdb\x71\x36\x6a\x18\x34\x8f\x21\x82\x33\xff\x50\xc1\xca\x64\x93\x3a\xca\x46\x3d\xf1\xe2\x1c\x11\xf5\xcd\xc9\xac\x34\x7c\x70\xe6\xff\xca\xfc\x3e\xf3\x47\xb7\xdb\x19\xc9\xbf\x82\xfa\x14\x69\x40\x98\xe2\x69\x9e\xdb\xbf\x67\x6a\x75\x7e\xa8\x14\x8d\x28\xd1\xcd\x71\xca\xec\xcc\xc2\x12\x2e\x72\x60\x9d\xe6\x00\x97\x0c\xa1\x91\x85\x33\x65\xca\x54\x9b\x11\x3c\x56\x73\x2c\x75\xc7\xb7\x30\xbb\x40\x12\x52\x66\x77\x78\x0b\x07\x4e\x77\x78\x0b\x5b\xa3\x12\x47\x2f\x32\x62\x1d\xc1\x0a\x17\xa9\x03\x8f\x60\x84\x8b\xd4\x81\xa7\xa3\x5e\xcc\x14\x2a\x65\x3a\xab\x5e\x84\x7d\x0b\x62\xdd\x23\xc4\xe1\x22\x3f\xd7\x11\x5f\xdf\x22\x03\xd8\x11\x5d\x5f\x1d\x91\x1c\xfa\x92\xfa\x0d\xa7\x99\x91\xac\x9e\x51\x8a\x03\x61\xd8\xa8\x0d\x3d\x5c\x39\x51\x80\x1e\x02\x1d\x3d\x86\x1e\xb6\x5f\x5b\xc5\xb1\x4c\xb2\xfb\x43\x0e\x68\xc2\xad\x8e\xa8\xfe\x9e\x28\xda\x9d\xec\x90\x1c\xb8\xc2\x12\x3e\x90\x61\x1e\xa0\x84\x60\x59\x8f\xa0\x84\x0f\x41\x5c\xc7\x19\xa0\x2f\xc8\x08\x8e\x81\x85\x81\x42\x9d\xbe\x69\x20\x6d\x30\xc3\x38\x44\x31\xc7\x58\xc2\x06\x39\xc4\x21\x05\x34\x80\x91\x43\x0a\x68\x48\x1e\x8e\xc1\x84\x0f\xc9\x82\x8f\x33\x42\x83\xdf\x3c\xc2\x12\x3e\x25\x7f\x65\xc3\xe4\x93\x6a\xe8\x1c\x05\x99\x63\x3c\xe5\x18\x9c\x83\xaa\x2e\x64\xe1\x43\xbc\xe4\xe9\xe8\x2c\x9c\xa0\x42\x16\x3e\x44\xfa\x1e\xd1\x18\x3e\xe4\xf7\x39\xc6\x15\x5e\x20\xe9\x8e\x70\x85\x0f\xfc\xbf\xa7\xe3\x3d\x2d\x29\x56\x7e\x7f\xb4\x09\x81\x0e\xff\x37\xbf\x50\x9b\x4b\x44\xd9\xd6\xd9\x4b\x0d\x34\xbc\x20\x9a\x38\x46\x1a\x5e\x70\x44\x9c\x81\x6b\x80\xbd\xce\xc8\xc3\x8b\xb8\xbc\x33\xf0\x0d\x70\x8e\x1b\x7a\x78\x11\xe0\x77\x44\x59\xf8\x40\x5f\x7c\x0c\x3d\xbc\x00\xb0\x9c\xe1\xd4\xe8\x2b\xd2\xcb\x2a\x55\xde\xf5\x58\xdf\x69\xa2\x5d\xf2\xfc\x70\x03\x0c\x27\xf1\xf0\xc7\xb9\xa1\x71\xbf\x9e\x61\x9d\x1a\x07\xc5\x31\xfa\x70\x42\x0c\x73\x9c\x1c\xfa\x21\x21\xf5\x19\x86\xd5\x42\xbf\x72\x84\x3f\x7c\x70\x01\x1f\xa7\x8a\xfe\xde\x2f\xff\xb9\x77\x0f\xd3\x1c\xa5\xf5\x00\x6e\x59\x06\x26\x3d\x6c\xf7\xaf\x12\xd9\xf0\x47\x5a\xe0\x15\xc3\x68\x7b\xc5\x00\xe5\x3c\x03\x37\x02\x0f\x01\xdf\xb2\x83\x09\xc9\xf8\xe0\x2f\x3e\x4e\x39\xfd\x9b\x47\x03\x9c\x11\xeb\x69\x78\xc5\x10\x87\x7c\x86\x57\x0c\xdc\x35\x67\x38\x67\x3a\x3b\xd5\x30\x3b\x1c\xbb\xc8\xd8\x18\xdb\x53\x90\xac\xeb\x28\x2b\xc3\x4b\x82\x20\x82\x33\x0c\x2f\x41\xb3\x70\x0e\xea\x8b\x98\x82\x63\xac\xe3\x05\xb0\xf8\x88\x19\xf1\xc9\x25\x7c\xd8\x0c\x01\x12\xf0\x0c\x7b\x27\x7a\x5e\xa5\x2f\x11\xe9\x0b\xa3\x82\xb3\x22\xed\xd5\x6d\x32\x16\x83\xe1\xdb\x24\xb1\xd9\x67\x18\xea\x86\x42\x33\x0c\x2a\xb8\x7f\xe2\xcb\x33\x85\x61\x30\xaa\x20\xbd\x71\x0a\xea\x8b\xd8\xed\x63\x6e\xc3\x96\xab\xc5\x74\x4a\x74\x46\xdb\xd4\x86\xd1\xa2\x84\x9c\x7c\x62\x43\x98\x10\x41\xb3\x19\x98\xda\xf0\x26\x3b\xdf\x11\x76\xf2\xfb\x34\x05\xd9\x35\xc0\x56\xe1\x24\xd3\x77\x49\x51\x8a\x17\x8b\x0a\x36\x6d\xda\x65\xfd\x4f\x2e\x9a\x74\x5c\x60\xca\xaf\xb8\x10\x7d\xd1\x5c\x11\xed\x1b\x60\x67\x36\xf5\xe1\x5d\x7e\x45\x71\x0d\xa5\xc5\x78\x3a\x56\x4a\xb6\xa7\x23\x25\xb9\x3b\x2c\x2f\x31\x1f\x3e\x39\xd6\x84\xb7\x7c\x72\xa8\x4f\xa8\x28\x98\x92\x13\x5f\xc6\x8a\x58\xf5\x2e\x1d\x37\xb0\xbc\xfe\x3e\x6d\x16\xf3\x54\x37\x79\x82\x69\xce\x84\xed\x89\xdf\x6a\x3c\xe6\x3d\x7a\x0a\x3e\xba\xe1\xd2\xde\x8d\x67\x20\xef\xea\x32\xcc\x92\x9a\x8e\x25\xcb\x98\x41\x25\xc0\xd4\x17\xfc\xf2\x7f\xff\xdf\x59\xe4\x58\xf0\xf0\x1e\xc6\xc2\x39\x1d\x49\x96\x8e\x3a\xe9\xf5\xcc\xab\xf6\x11\xb0\xf6\xa6\x5d\x20\xcc\xe5\x89\x0b\x04\x1b\x8f\x60\x9c\x2d\x4a\x9f\x51\x9c\x77\x76\xcc\x89\x07\x64\xa4\x4e\x63\x12\x5b\x1a\xaf\x3b\xff\x4c\xdb\xdd\xcd\x7c\xe9\x6e\x7a\x08\x16\xfe\x0f\xd6\xde\x72\x40\x1a\xd3\x68\xe1\xfe\xc0\x02\x26\x90\xe7\xcf\x54\x04\xc6\x33\xb7\x62\x61\x3c\x7f\xdb\x30\x4c\x8b\x6c\x73\x61\x5a\x64\x6d\x09\xe2\xd9\x60\x13\x3a\x0b\xcf\x48\xcf\xbb\xee\x09\x9b\x72\xa8\x15\x19\x93\x45\xac\xda\xef\xa9\xa8\x15\x57\x1e\x9a\x5a\x91\xc1\x35\xe2\xb3\x7c\xef\x41\xff\xdc\xd0\xc3\xb4\xc8\x70\x1a\x0f\x5a\x72\x4d\x12\xd5\x62\x23\x60\xe7\x08\x1d\xda\x08\xd1\x39\x06\x87\xce\xd5\xf3\xd0\x7e\x92\x9e\x36\xc8\x31\xc2\x82\x0e\x54\x94\xa9\x0a\x0d\x63\xae\x82\xa6\x61\x24\x10\xe8\x90\x40\x3b\xf7\xb6\xe5\xf0\xb8\x5c\xb9\x8c\x2b\x4d\xf0\xcf\x31\xf3\xe2\xf3\x1b\x7d\xfb\x42\x88\x5e\x3c\xe0\x4c\x9f\x48\xb8\xec\x18\xc2\x6d\x4f\x03\x3d\x75\x78\x65\x0e\x57\xb3\x2b\x16\x88\x95\x8f\xd9\x15\x0b\x4c\xc7\xc7\x10\xd5\x02\x85\xc7\x11\xd9\x62\x03\x3c\x7c\xcc\xb5\x58\x60\xa1\x3b\xe6\x5a\x2c\x50\x2d\x1f\x30\xab\xb0\x24\x9f\x65\xa0\x18\x84\xca\xc7\xe4\x8b\x05\x62\xe4\x23\x10\x6b\x03\x78\x7c\x0c\x62\x2d\x50\x38\x9f\x65\x53\xcd\x2c\xf9\x54\x8e\x88\x99\x06\xcb\x11\x31\xf3\xcc\xa6\xa6\x92\x87\x1f\xa1\x6c\xb8\x83\x98\x9d\xb1\xcc\x12\xf1\xb6\x58\x10\xc5\x8a\x39\x23\xc9\xb4\x04\xb7\xed\x11\xe8\xf4\xae\xe4\x7b\x3b\xa2\x64\xfc\x8a\x0b\xf1\x4f\xfe\x8f\x94\xeb\x98\x43\x4c\xbe\xdb\x99\xe3\x08\x03\x3a\x02\xac\x36\x50\xe9\xc7\x10\xd5\x1a\x87\xdd\xb6\xff\x8e\xf8\xa2\x23\x8c\x6a\xc3\x39\x7c\x04\x51\x6d\x78\x78\x8f\x53\x6e\x57\xc8\xdd\x8f\x30\xaa\x0d\x97\xee\x71\x56\xed\x0a\xfc\xe5\x38\xab\x76\x85\x7f\xe2\x6c\x7b\x55\x20\xd1\x38\x4e\xb2\x5d\x61\xe6\x38\xa6\x74\xac\x10\x60\x9c\x2d\x53\x23\xd1\xb8\x87\x9c\xdb\xa4\xbc\x39\x26\x78\x1c\x71\x46\x6e\x13\xcf\xc6\xe7\xb9\xcd\x31\x15\xa3\xe1\x71\x18\x56\xb6\x66\xa3\x32\x47\x36\x34\x01\x24\xef\x91\x9d\xe8\xcf\x31\x2f\xd9\x71\xff\xac\x22\xa0\x95\xfe\x99\xb8\x31\x83\x68\xb6\xb4\x8b\x63\x53\xa0\xac\x01\x0e\xe8\x98\x2d\x0d\xba\x82\x23\x46\xb4\xb2\x98\xce\x06\x61\xdd\x30\xd2\x1f\x81\xb0\x5a\xb4\xf8\x17\xae\x5f\x36\xb8\x97\x8d\xcb\xf1\xb9\x08\x78\xd5\x08\xf7\x3b\x02\x5e\xdd\xbf\x41\x7a\x4d\xe6\x6f\x44\xfb\x01\x51\xc7\x5f\x76\xa4\xcd\xb4\x81\xc9\x92\x36\xd8\x58\xff\x7b\xea\xec\xa0\x0c\xb7\xe0\x57\x0d\xc8\xf2\x11\xfc\xaa\x67\x1f\x72\xca\xd7\x41\x5c\xd7\x79\x39\x9c\x9c\x10\xb1\xf3\x32\xdc\x90\xd9\x6c\x38\x16\xb8\x87\x23\xfc\xd5\x88\xc9\xfd\xe5\x20\xc7\x15\xc9\x56\xc4\xd4\x21\x2b\xdb\xca\x77\xb2\xb2\xad\x54\xa8\x88\x9d\xb4\xcd\x11\x3b\x19\x1f\x13\xc1\x30\x73\x5f\xf6\x73\x70\x60\xbf\x0c\x44\xe5\xb0\x12\xfc\x6a\x3d\xeb\xdf\x79\x1a\x0e\xd0\x2c\x8e\x5d\xa0\x59\xec\x03\xc2\x62\x3d\xc4\xbd\x1c\x12\xc4\x66\x3f\x7f\x99\xc2\x3b\x43\x8c\xbf\x0c\xf7\xa4\xf1\x57\x31\x1d\xbe\xd0\x4c\x33\x27\x1c\x84\xc1\x16\x61\x7e\xb5\x5e\x5a\xde\xb5\x8e\x48\x97\x7d\x98\xd7\x9f\x68\xb5\x84\x85\xfd\x02\xf5\x9c\x09\x03\x62\x81\x1f\x62\x5a\xb4\x02\x51\xe2\x11\x5c\xab\x11\xfa\x71\x94\xcb\xf5\xfb\x70\x21\xda\x61\xca\xe6\x28\xf4\x56\x03\xac\x71\x4c\x8b\x56\x41\x9a\x1d\xb0\x5c\xbf\x62\x45\x6a\xc8\xc4\x33\x94\x0b\xce\x83\x23\x24\x57\x68\x5c\x8f\x80\x5c\xe5\xa2\x2b\xe6\x48\xeb\x8b\x6b\xb2\x90\x5b\x23\xfe\x9b\xb7\x2d\xc4\x28\x8f\x66\x4c\x1b\xb0\x69\x9d\xb7\x4d\xc4\x69\x9c\x28\x67\xa3\xc1\xbc\x6d\x22\x5e\x29\x86\xd5\x96\x3a\xb6\x96\x2d\x0d\x10\x8d\x55\x96\x88\x32\xbf\x96\x95\x37\xe5\x51\xcb\xfe\x6f\x24\xd6\x13\xef\x81\x90\x58\x15\x28\xf5\x79\x1b\x21\xc8\xa4\x7c\x1b\x21\xc8\x44\x7f\x9b\xd8\x6f\xa5\x50\x11\xfb\xa1\xa6\x29\xb9\x6b\x05\xe3\x7f\x02\xe7\x5a\xa9\xd1\xdc\x11\xbf\x52\xdf\x1e\x80\x14\xab\xeb\x54\x5a\xce\x75\x2a\x75\x1a\xad\x0f\xe9\xfe\x11\xbc\xeb\x59\x3f\x09\xc5\x87\x5a\x0f\x77\xe0\x94\x64\x14\xc5\x88\x28\x9a\xe3\x96\x72\x7d\xf2\x66\x86\x18\xb2\xd0\x52\x90\x0e\xde\x96\x0f\xed\xf2\xcf\xaf\x3d\x3e\xe5\x9e\x3c\xf5\x29\x97\x87\xb6\x13\xf1\xa7\x15\x4c\x12\x83\x8d\x48\xd4\xca\x45\xdb\x05\x12\x1b\x9d\x5d\x56\x20\xb1\x02\x48\xfd\x38\x01\x2c\x79\xaa\x8f\x13\xc0\x92\x98\xfa\x08\x32\x56\x1e\x6c\x4d\x1f\x1b\x88\x67\xbe\x93\xf9\x7d\xe5\x3b\x99\xae\xef\xd4\x27\xd3\xf5\x8c\xe4\xf9\x31\x90\x84\x10\x66\x3d\x2b\x4f\x6b\x21\x89\xf1\x11\x75\xda\x4c\xe7\x3f\xc0\x07\x56\x1e\x62\x2b\x8a\xf8\xd1\x06\x43\x6b\xcc\xec\x42\x88\xc3\xf9\x70\x37\xcf\xa7\xdb\x74\x4a\x0c\xf2\x07\xea\xf6\x95\x6f\x7d\xbd\xa5\x56\x2e\xe7\x6c\xb1\xc6\x62\x5d\x9d\x7d\xf4\x93\xc9\x96\x7a\x98\x6c\xf9\xd6\xb7\xb1\x94\xfb\xf1\x74\xe2\x5d\x70\x5b\x2c\xb7\x8f\xb9\xf6\x32\x7e\xc0\xb6\xd8\x92\x3f\x9e\x4e\xf0\x20\x1c\x01\xb5\x5a\x4d\x93\x8c\xd3\x8a\xb3\x5b\x38\xad\x56\xd3\x22\x4d\x91\xfb\x3f\xa0\xc3\x8f\x51\x5a\x65\xea\x64\x9e\x53\x28\xad\x66\x73\xc6\x57\x92\x69\x41\x53\xf6\x2b\xf9\x68\xd3\x36\xf6\x15\xb5\x63\x97\x48\xda\x54\x6a\x24\x23\x9e\x2a\x92\xc2\x01\x6a\x8a\x19\x9a\xa3\x79\x73\xba\x1f\xa9\x5f\x1e\x1c\xe9\x26\x5f\x49\x03\xad\x3e\x7e\xa5\x97\xa6\x33\xcf\xe4\x20\x73\xba\xa2\xaf\x74\x4b\x5a\x48\xb2\xad\x15\xaa\x17\x61\x81\x0d\x93\x5f\x49\xd3\xb9\xe6\x59\xd7\x54\x8f\x24\x97\x58\xa5\x2d\x0e\x9a\xad\xd4\x6e\x97\x58\x4d\x29\xda\xfc\x56\x24\x4f\xfc\xd4\xfe\x72\x97\x3a\xe2\x5b\xaf\xa6\x0a\xcf\x7c\x0a\xdd\x18\xdc\x78\xd5\x30\xeb\x45\x9f\x40\xac\x56\x8a\xf5\x4d\xa4\xd4\x3c\x55\x5a\x82\x49\x5b\x65\x69\xb2\xf7\xe7\x2b\x2d\x4f\xba\x7c\xc9\x21\xc8\xc8\x39\x8b\xbb\x23\x57\xbf\xe2\xdb\xe5\xe6\xe9\xc7\xad\x47\x34\xcf\xbb\xe9\xcb\xbe\xa2\x03\xf1\xd3\x26\x9f\xda\x25\x0f\x9f\xff\xfb\x7f\x90\xfe\x7e\x25\x83\x5c\x68\xa0\x68\x76\xaf\x34\xf0\x78\x0e\xe4\xd9\xd2\x4f\x88\x24\x1f\x69\x86\x44\x3b\x5a\xbf\x52\x83\xb4\x1b\x86\x40\x80\x2c\xf8\xf1\xbe\xd2\xb7\x86\xc5\x7c\xbc\xbd\x4f\x51\x3b\xdc\x69\x2b\xdf\xe9\x1c\x63\x5a\xdf\xf6\x4e\x31\x01\x6f\xc3\xe7\xdb\x42\xf2\x06\xff\xe4\x55\xd1\xce\x4e\x8a\x59\x3e\x8f\x26\xd2\xfe\x6e\x45\x4c\x6b\x63\xa2\xba\x33\x40\x7d\x45\xdb\x89\x9f\x3c\xf5\xa6\xfd\x2b\xf6\xad\x4f\x91\x64\xbf\x79\x0a\x33\xd4\x09\x42\x49\xbd\xf5\x15\x9d\x85\xea\xa1\x56\xcf\x11\x87\x83\x7e\x45\x73\xd5\x3c\x54\x6b\x73\xe4\xb8\xa8\xd6\x3f\xbe\xfe\x2a\x92\x7d\x22\xc3\x67\x8a\xd0\x0c\x18\x1b\x13\xe5\xe4\x60\x8b\xa8\xdc\x09\x8b\x31\x72\x7e\xfe\x45\x83\xb8\x51\xb2\xf6\x9c\xb9\xb3\xcc\x92\x4a\x5e\xc2\x7b\xe5\xa1\x12\x0c\x3c\x05\x49\x26\x5a\xfe\x43\x31\xeb\x84\xc3\xe2\xbe\xa2\x52\x79\x33\x0d\x84\x65\xaa\x8e\xb7\xf8\x4a\x72\x13\xf6\x48\xfe\x47\x0b\x49\x96\xf2\x3b\xa5\xc8\x52\x4e\x63\x0a\x79\xf5\x07\x92\x68\x5b\x18\x0d\xa5\xdd\x24\xd7\xd7\x57\x52\xea\xfc\x4e\xed\xb6\x7e\x8c\x89\xa4\x44\xfa\x6c\x8a\xc5\xa6\x10\x06\xaa\xd8\xba\x31\x69\xd9\x52\x0e\xb5\xf4\x68\x71\xc8\x23\xf9\x72\xfd\x4f\x85\xfb\xfb\xea\x9f\x8a\x61\x9c\x16\xb4\xea\x48\xbe\xbd\xa5\x54\x4d\xa5\xce\x5c\x31\x49\x9a\x09\xb4\xbe\x92\xb8\xd3\x57\x9e\x79\xc3\xa6\x50\x0c\x7f\xcc\xcf\xe2\x3c\xfa\x2d\x92\xdc\xa9\x2d\x55\x58\x7d\xa5\x7e\x25\xce\xcf\x7c\x13\xe4\xa9\x77\x26\x91\x19\xd0\xcc\x70\x31\xa7\x29\xcf\x3a\x13\xb5\x40\x11\x91\x67\x8f\x19\x4b\x91\x9a\xca\xa4\xf6\x43\x26\x0c\x7a\x61\xae\xe5\xf2\xe4\x4b\xc7\xe4\xd2\x1a\x07\xbe\xb1\x75\x95\x80\x4b\xe8\xb1\x69\x1a\x17\x13\x5e\x10\xa7\x71\xb3\x7b\x08\xd2\x04\xd7\xf5\x57\x12\xc7\x5a\x61\xc3\xa8\x1c\x60\x03\x49\xd7\xb6\xdf\xb3\x25\x69\x21\x6d\x49\x79\xf3\x4f\x5b\x60\x47\x92\x6e\x5f\x53\x85\x74\xfb\x3b\xdf\x09\xc8\xc7\x81\x29\xfa\xb2\x71\x73\x0a\x56\x2b\xfa\x79\xd3\x0e\xf3\xd4\xb7\xdc\xec\x89\xe4\x2d\x97\x2e\x2d\xb5\xba\x46\x52\xab\xd3\x96\xe5\x56\x33\x14\x52\xf3\x9d\x59\xe3\x2b\x1d\x49\x29\xf3\x4f\x6f\xe6\x3b\x9d\xc8\xbf\x96\xa9\x0f\x19\x09\x5d\x3d\xef\x7c\x27\x80\xc7\x95\x31\x13\xeb\xe8\xcd\xb1\x21\x7a\xb3\x12\x45\x42\xec\x66\xe5\x62\xc5\x0a\x0d\x05\x6b\xde\x57\x5a\xfe\xdb\xf9\x50\x7f\x74\xae\x94\xaa\x83\xe3\xc9\xbb\x3a\x2a\x98\x44\x22\x2c\x2b\x0f\x13\x5a\xd8\xa7\xf2\x70\xe2\x09\xfa\x34\x3a\x9a\x84\x90\x4f\xe5\x61\x7e\x09\xf8\x54\x1e\xa6\x97\x70\x4f\xa3\x73\xac\x1a\xf6\x34\xc6\x4c\xa1\x52\x17\x58\x42\x95\x33\x2d\x55\x6c\x49\x29\xf4\x7b\xb7\xef\xf9\x31\x02\x7c\x3c\x2d\xa5\xb8\x13\xf9\x4e\x18\x0b\x7e\xe8\x63\x0d\x9e\xa1\x31\xe6\xa9\xb3\x99\x0b\xf3\x54\x1e\xce\xe5\xc7\xe9\xcf\x72\x8c\x3d\x56\xe1\x39\x7d\x0c\x73\x7a\x18\xc4\x07\x8b\xca\x93\x52\xdd\x8b\x81\xb4\x3c\xf3\xf3\xa5\xac\x38\x4f\x4a\x35\xde\x92\xa1\x72\xea\xcd\x59\xf2\x29\x18\x78\x7a\xf2\xe4\x24\xe5\x5b\xdd\x3a\xcb\x95\x77\x7d\x74\x57\xa4\x61\xda\x68\x2a\x35\xc8\x73\xa5\x9c\xa5\x0f\xe9\xb5\x43\x81\xb3\xfc\x05\x4d\x9a\xe5\xca\x87\x2f\x49\xa9\xf1\x2d\xa9\x21\x7d\x24\xf1\x9d\xe0\xa0\x85\xdf\x23\xf8\xd1\xcc\x71\x2c\xba\xb4\xb2\x98\xab\x62\x4b\x2b\xab\xfc\xd3\x75\xf9\x7d\x55\x17\x6b\xf6\xa2\x47\xb0\x8f\xc2\x7c\x10\x6c\xa9\xac\x92\x0a\xd5\x8b\x95\xb6\x89\xbd\x74\x95\x48\x7f\xfa\x30\xf5\xbb\x4f\xfc\x2c\xa3\x98\x58\x7f\xa0\x98\xd8\x6d\xcc\xa2\xb6\x6c\xc0\xff\x8a\x50\x5a\xd1\x63\xd3\xa6\xad\x8c\xa3\x53\xcc\x17\x56\xab\xd0\x4a\xd5\xfc\xb6\x5f\x49\x38\x94\x9a\x72\x85\x3c\x41\x47\x16\xf5\x59\x75\x68\xff\x9c\xce\xd2\xd9\x0a\x0d\x12\x08\x69\x4e\xb6\x31\x81\x90\x56\x63\xd6\x37\x87\x53\x72\xf8\x1a\x76\x34\x51\xae\x1b\x54\xcb\x2b\x1f\xba\xfe\x7c\xa8\x1b\x02\x27\xb3\x08\xce\x6a\xa5\x93\x42\x28\xcd\x89\xea\x28\x80\x52\xcd\x41\x09\x40\x89\xfd\x56\x00\xa5\xa7\xdc\x91\x84\xe5\xe1\x7c\x07\xa0\xc4\x9e\xd3\x9c\xa0\x67\xd0\x16\xc7\x53\xf6\x3c\xb3\xe6\x41\xcb\x96\x69\x5e\x5a\x1e\x9e\x6f\x7f\xaf\x54\xf1\x27\x29\xaf\xbe\x25\xd1\x7b\x13\x7b\x33\x53\x04\x2c\x5a\x8d\x55\x2e\x60\xd1\x6a\xfc\xfe\xe6\xe0\x4a\xd6\x42\x73\x4e\x84\x95\x67\xdf\x11\x9d\xfc\x51\xc1\x8c\x56\xbb\x52\xe6\x92\x94\x32\x85\x80\x5a\xa9\xdd\x21\xe0\x1c\xcc\x0d\xd4\xe8\x93\x3a\x64\xd0\xe3\x94\x14\xb4\x68\x35\x96\x86\xa1\x45\x83\xbb\x4c\x33\x86\x79\xd1\xc3\xe3\x76\xf3\x9d\x31\xcc\x28\x57\xcd\xc9\x80\x46\xde\xec\x7a\x93\xfa\x8e\xdb\x9d\x1a\xa4\x62\x33\x69\x1b\x9c\x05\x2d\xc5\x08\x0b\x7f\xe7\xd7\x08\x7c\x91\x29\x2c\xa8\x11\x96\xab\xaf\x24\x24\x03\x87\xa6\x69\xca\xae\xfb\xc9\xc3\xc7\x3d\xce\x53\xdb\xb8\xd9\x53\xcc\x5a\x76\xdd\xec\xeb\x82\x1b\x61\xca\xfa\x4a\x04\xda\x17\x44\xdf\x01\x06\x92\x21\xd6\x4f\x5a\xc4\x1d\x20\x4f\xb9\x03\xa4\x24\xb7\x9e\x5a\xb0\xd8\x71\x28\x40\x61\x36\xae\x3c\x45\xad\xa7\x60\x83\x2b\x18\x78\x53\x96\x5d\x83\xb9\xd5\x0d\xa0\x58\x29\xe8\xed\x87\xf4\xdc\xa8\x88\xc1\x1c\x35\x8e\xa8\xa1\x3a\xc3\x41\x36\xd8\x15\x41\x0e\x0d\xe6\x50\xe7\x36\xda\xf2\x72\xf7\xd5\x22\x4f\xe5\x87\xac\x25\xa2\x6f\xa7\xa9\x46\x16\xda\xdf\xab\xf2\x4e\x64\xd5\x40\x42\x56\x33\xc0\xb9\xb2\xd0\x55\xdd\x55\xef\x9a\x92\xec\x3a\xae\x19\x70\x4c\x77\x6c\x31\xe6\x1d\xbb\x2b\x0a\x89\xe0\x41\xcf\xba\xff\x83\x8a\x6d\x52\xb2\xbb\x66\xbe\x98\x84\xa3\xe6\xe7\xa0\x82\xe6\xe7\x1c\xfa\x9a\x5a\x7d\xf7\xce\xcc\x13\x67\x69\xce\xab\x8e\x33\x19\xfd\xbc\xe3\x4c\xe6\x0a\x29\x0a\xb3\x96\xad\x5e\x14\x66\x2d\x87\x92\xa0\x45\x2d\x07\x96\xa0\x45\x2d\xc7\x80\x91\x45\xb3\xb0\x0f\x09\x59\xd4\x72\x0a\x0e\xfb\x92\xd9\x5c\x06\xbe\xe4\x99\x72\xec\x5d\x99\x1d\x51\xce\x64\xb6\x97\x81\x33\x99\xeb\x6e\xf8\xce\x7a\xde\x5d\xaa\xa5\x21\xd9\x69\x3e\x23\xd2\xb1\x07\xf1\xdb\xb1\x87\x41\x10\xe8\xa8\x3d\x69\x1f\x7e\x67\xb4\xa8\x61\x9f\x48\xe3\xf4\x33\x8e\xa8\x34\x8e\x5f\xe1\x88\x5a\x6b\x79\xc8\xe5\x92\xf6\xca\x5d\xdc\xd3\x04\x6e\x54\x1c\x87\x02\x07\xdd\xf5\x7a\xf2\xf4\x6d\x7b\x7d\x1a\xe1\xa8\x24\x6a\x11\x20\x7f\xae\x48\xb6\x71\x30\x80\x46\xcc\x15\x4e\x00\xc3\x81\xec\xed\xf9\x4a\x82\xa8\xa2\x57\x0a\x0c\xf4\xe4\xd6\x20\x2c\x50\x8b\xc6\x33\xc0\x52\xcc\x94\x2a\x7b\x63\xcd\xab\xd6\x08\xf9\x47\x56\x6b\x5b\x2a\x94\x46\x58\xf3\x1d\x49\xf9\xe8\x55\x66\x3c\x5f\xda\x3a\xc3\xc1\x29\xec\x4f\xb9\x7e\xcf\xba\xb3\x47\x45\xd4\xce\x95\xe1\x10\x9c\x67\x31\x85\x0d\xe7\xb9\x38\x0f\x0d\xdf\xe9\xf9\x05\x0e\x39\xe2\xe0\x16\x5d\x5a\x79\x5a\x24\x2b\xa8\x15\x49\x46\x5e\x86\xd1\x74\x69\x31\x04\x98\x2e\x6d\x32\x23\xa6\xef\xec\xec\x1d\x46\x00\x2d\xd6\xde\x64\xd6\x4d\xa4\xad\x99\x94\x37\xed\xe0\x43\xab\x22\xb9\x69\x4d\x15\x02\x2f\x73\x74\x4c\xa3\xeb\xe9\x84\x10\x3e\x33\xa6\x9b\x69\x0b\xd0\xa0\x50\xc5\xbc\x17\x46\x8d\x5c\xa6\x37\x47\x05\xb9\x4c\xc7\x15\xd1\xb6\x4c\x36\x86\x49\x24\x49\xcb\xb7\x3a\x0e\x32\x54\xce\xd5\x36\xf2\xec\xa5\x73\x35\x92\xec\x41\x25\x6f\x6a\x93\x46\xe1\x12\x7f\x5a\xcf\x2e\x2c\xac\xcf\xb8\x7f\xcf\x8a\xfe\x30\xdf\x6d\x5d\x56\x32\x70\xb6\x0c\xad\x34\x55\x2c\x20\x0f\x76\x56\x23\x7b\x9e\x1c\xac\x93\xf9\x97\x57\x35\x72\x17\x0b\x54\xe0\x9d\xd1\x99\x1b\xc2\xe7\xcc\x1c\x87\xc2\xe7\xcc\x68\x55\x82\xe7\xcc\x1c\x69\x82\xe7\x94\xc5\x14\x17\x3c\xa7\x2c\xe6\x94\xd0\x39\x65\x31\x51\x85\xce\x99\xb1\xd9\x4c\x23\xe7\xff\x9d\x58\xe7\xfb\xea\xd6\x87\x69\xda\xdb\x59\xf9\x23\x4a\xff\xe3\xb8\x15\x1a\x67\xb5\x3b\x92\x94\x15\x8e\x91\x85\xa2\xda\x90\x9a\xa4\xff\xcf\xd8\xdb\x5c\x4d\xcf\xf2\x4c\xbb\xa9\x7c\x21\xd8\x06\x0c\x4c\xde\x5c\xa0\xbb\xcf\xfc\x43\xd8\xcb\x55\x47\xf9\xd9\xb3\xeb\x1e\x6a\xd9\xc6\xfc\x23\xa4\x52\x69\x20\x75\xcd\xd4\x0b\x49\x6a\x15\x3f\x34\x47\x5a\x2c\xd9\x4e\x64\x7a\xf4\xf7\xa1\x8f\x5a\x54\x27\xa3\x6d\x8e\x2c\x3f\xa3\x6d\x8e\x9e\x7f\xda\x7e\xdd\xe9\x02\xc3\x6d\x8e\xce\x04\x9d\x5c\xa5\xee\x7c\xeb\xad\x77\xe6\xa9\x8f\x98\x99\x1f\x79\x27\x9e\x29\xea\xe7\xdd\x36\xa2\x71\x32\x5c\xb5\xa6\x99\xa2\x1b\x1b\xaa\x91\x31\x2d\x86\x6c\x90\x31\x8d\x25\x4c\xc2\xd2\xc6\x06\x6b\xa0\x4c\xbb\x5e\x51\xfc\x44\x23\x9f\x3a\x44\x94\x35\x6d\x64\x4c\x89\x75\x94\xbc\xa3\xf5\xce\x53\xf5\x5c\xc9\xa7\x76\x50\xd0\x8d\x42\x87\xe5\x4e\x67\x5c\xcc\xc1\xcd\x64\x32\xdf\x22\x35\x8d\x77\x24\xeb\xe6\x5c\x06\x04\x83\x69\xb3\xa4\xd0\x21\x0f\x3e\xfd\xb9\x6d\x64\xc8\x48\x81\x9e\x78\x9f\x0a\xd7\x1c\x9b\x9e\x50\x30\xf7\x79\xa7\xa0\xaf\x24\x6a\x6e\x92\x06\x4e\x83\x64\x28\x75\x7d\x84\x81\xb9\x4f\xaa\x23\xba\xb6\x3b\xb7\xa8\xe5\xf4\xce\x37\x23\x28\xcc\xcb\x9d\xfd\xc8\x90\x97\x8b\x7e\x5d\x24\x2c\x4a\xa1\x3f\x15\x33\x91\xfe\x24\xf1\x0c\x83\x26\xdf\x09\xb3\x90\x4b\x8d\xe1\x2e\x17\x07\xa7\xd0\x2e\x77\xb4\xf3\x65\xe7\x49\xc9\x77\x43\xbb\x4f\xca\xb4\x5d\x90\xff\x3d\xf3\xf0\x8e\xba\x28\xf8\xca\x1d\x15\x75\x39\x6f\x7d\x8b\xf4\xd4\x33\x73\xdf\x58\x96\x18\x7a\x17\xfb\x1b\xcf\x9e\x09\x79\x77\x86\x54\xd4\x6d\x77\xbf\xf2\xac\xb8\x9b\x90\xaa\x9e\xd1\x22\x1f\xcb\x69\xed\xf2\x59\xc7\xfe\xb2\x9e\x73\xf9\xce\x4a\x14\xe7\xdb\xdd\xcf\xbc\x3a\x25\x51\x51\x5f\xcc\xaf\x0c\xcc\x72\x9b\xe8\x27\x4d\xe2\x3b\x43\xe8\x5d\xf2\x4e\xa1\x6e\x61\x7e\xe8\x16\xd2\x0a\x87\x0d\xa7\xef\x6d\x07\x65\x02\x99\x0c\xee\x6e\x79\x53\x6d\x62\x53\x58\xd8\x41\x69\xef\x33\xa1\xef\xce\x82\x32\x11\xdc\x9d\x39\x62\x44\x44\x6a\x6d\x66\x42\xe6\xaf\xc0\x40\x77\x76\x25\x91\xc2\x5d\x35\xb5\xd6\x64\xce\xae\xe3\xdc\xaa\xf1\xf6\x99\x20\xee\xce\xac\x90\xad\x7e\x4c\x8e\xb6\x3d\x3c\x68\x15\x49\xc3\x74\xfe\x93\x09\xf6\x79\xb5\xa8\x15\x27\x52\xb5\x3d\x2f\xe2\xf2\x9a\xbd\x11\x41\x26\xf1\x17\x53\x8c\x5c\x9c\xa0\xdb\x0e\x40\x4c\x5c\xce\xb6\x9a\x33\x53\xdc\x72\xd7\x51\xf3\xa6\xf4\x20\x4c\x81\xdb\x26\xd3\xf7\x99\xcc\x8d\x1c\x12\x5b\xee\xc0\x6c\x44\xdb\xd9\x99\x2e\x86\x71\xdb\x66\x5a\x22\xc9\x4a\xca\xd6\x28\x0e\xba\xeb\x28\x91\x64\x17\xe5\x8e\x28\x80\xd5\x15\x7f\xda\xb6\x95\x94\x85\xb1\x7d\x9c\xa3\x5d\x98\x8f\xae\x5e\x6c\xce\xe2\xa3\xbb\x8e\x2b\xaf\x6a\x5d\x32\x53\xb6\x8d\xa6\x1c\xa7\xe2\xa3\xbb\xa2\x4d\x8a\x8f\xee\x8a\x5f\x65\x2b\x71\x53\x1c\x51\x62\xa3\xeb\x27\xe7\xbe\xc8\xe8\x7a\x6e\xba\xca\xdf\xda\x73\x7b\x15\x35\x5d\x3f\xef\x7c\xf7\x33\x8e\x29\x0f\xdd\x26\x3e\xdc\x6e\x53\x24\x0d\x4c\xfa\x49\xb6\xd6\x13\x0d\x49\xf9\x5b\xfb\x79\x47\x52\x93\x6a\xde\xd4\xc0\x60\xbf\x15\xdd\x5d\x3f\xd1\x2c\x4d\x77\xd7\x66\x26\x8a\xe3\x9e\xa3\x5b\x88\xfd\xae\xc7\x6d\xea\x7c\xae\x67\x8b\xa4\x26\x66\xde\x9a\xce\x24\x57\x06\xb3\xdf\x01\x0a\x7c\x44\x81\x29\xd8\xbf\xcd\x7e\xd7\x9d\xda\x61\x8c\x8f\x6c\xb1\xb9\xf8\x2b\xf9\xeb\x95\xad\xfe\x33\x3c\xfb\x0a\x92\xc7\xed\x46\xd2\xec\x63\x2b\x12\x6d\xde\x75\x70\x66\x9a\x36\x2f\xae\x8d\x8f\xdd\x0c\xcc\x53\x93\xe8\xdd\x25\xff\x53\xfc\x69\x49\x5d\xb6\x2f\xa4\x11\x35\x70\x2d\xaf\xca\x25\xc3\x24\xfa\xd8\xdf\xcd\xc2\xf8\xd8\xdf\x9d\x26\xa1\xbe\xa2\x1b\x88\xfd\xae\xdf\xdc\x81\x3f\x58\x5a\xdf\x77\x65\xc2\xa6\xc7\x3f\xf2\x0a\xdc\x69\x22\xfe\xef\x91\x2f\xe5\xc1\x65\x72\x88\xfe\xae\xdf\x4c\x07\xe7\x90\xbd\xd3\x7e\xcd\xe9\x9b\xf5\xf6\xb1\xfe\xca\xde\x20\xc2\xbb\x7e\x5f\x29\xa5\xab\x4c\xfa\xdb\xca\x6c\x4f\x29\xaa\x77\xfa\x4d\x33\xfc\x4e\x7f\x2f\xef\x77\x91\x54\xed\xf4\xb7\x66\xf8\x7d\xa6\x14\xa9\xb9\x4c\xa2\x8f\x1d\x06\x9d\x37\x15\x12\x5a\xd9\x0b\xc5\x5a\xd7\xef\x33\xcf\xe4\x30\xb8\xf3\x9d\x0c\xef\xec\xc4\x4e\x35\x5b\xd9\xb1\x84\x9e\xec\x77\xe6\x8c\xbd\x07\x9c\x26\x02\x4f\x5e\x95\xfd\xfc\xe3\x29\xcc\x96\x61\x7a\xbb\x91\xb6\x6f\xb5\x21\x73\xcd\x33\x38\x07\xed\x47\xb7\xb3\x9b\x03\xf3\xeb\xdb\x59\x6f\x48\xba\x9d\x5d\xff\xc4\x6c\x3f\xaf\x7a\x94\x06\x92\x1c\x24\x3d\x92\xc6\xec\x8c\xa4\x31\x63\x55\x08\xac\xd9\x6f\xf6\x9a\xaf\x67\x30\x9b\xdb\xd7\xac\x12\x6c\xa6\x5f\x3b\x16\xd8\xda\x85\xd4\xec\xf1\x0d\x0a\xa8\xd9\x83\x25\x11\x50\xb3\xdf\x25\x6f\x6a\x6e\x5d\x29\x53\x2e\x1f\x4e\xd6\xaf\xef\x78\x9c\x1e\x42\x69\xf6\xfb\xca\x33\x8d\x20\x0b\x5d\x20\xcd\x1e\x3f\xe1\xd7\xf0\x38\xce\xcb\xaf\x17\xcc\x95\x37\xed\x6e\x64\x78\xbf\xec\xd0\x29\xc7\x1a\xc9\x48\x0f\x5b\xed\x98\x47\x9e\x72\x7e\xf1\xd4\x77\xa5\x8c\x8d\x75\xd7\x2b\xcf\xe4\x1d\x61\x75\x09\xfd\x38\x72\xab\xfc\xfa\xae\x94\xce\xd1\xb4\x99\x25\x92\x2e\x40\xa9\xac\x2c\xf5\xc1\x11\x08\xeb\xf8\x22\x19\x04\x75\x7c\x5d\x37\x4a\x0f\x3b\xa2\xba\x0b\xf7\x38\x2e\xba\xd8\x2c\x75\xf5\x62\xaf\xfd\x19\x65\x41\x65\x04\x7b\x7c\x7d\x3c\x42\x3d\xbe\xbe\x58\xa1\x1e\xaf\xc9\xba\xff\x19\x73\xf1\x3e\x93\xa3\x86\xd5\x25\xd0\xe3\xb8\x4a\xde\x54\xb5\xaf\xfc\x4f\xb8\xb1\xb7\x32\xaa\x36\x1b\x8d\xc8\xeb\x46\x2c\xbe\xe6\xae\xab\xb1\x1c\xfe\x0c\x2a\x63\x2a\x0a\x02\x79\x4d\x86\x58\x08\x48\xc2\xdc\x1e\x49\xbd\x7d\xa5\x18\xdf\x4c\xa9\xda\x74\x03\xf3\x9d\x7b\x3b\x7f\x90\x2b\xea\xca\x9b\xf2\x52\x8c\x48\x6e\x20\x3d\x6a\x4e\xda\x9c\xd6\x3f\x3b\xa6\xde\x62\xdc\x42\x5a\xaf\xb8\xf8\x99\x81\xd1\x8d\x7e\xb2\x47\x08\x47\x39\x62\xc5\x16\x8c\x72\xc4\x4a\x20\x18\xe5\xb8\x58\x6b\x82\x51\xbe\xae\x38\xc1\x28\xaf\xd9\xf2\x4c\xa3\xc4\x4a\x10\x8c\x92\xd8\xac\x47\xd2\x04\x7a\xff\x27\x47\xd4\x5b\xe6\xc7\x13\x21\x3f\xf4\x7c\x4a\x65\x3c\x9f\x28\x46\x94\x9f\x57\x86\xde\x94\x0f\x07\x2b\xea\x67\xf0\x37\x13\xf1\x07\xf5\x39\xdb\xee\xcf\xb7\x74\x36\x02\x41\x16\xc7\xe0\x24\x13\x64\xb1\x14\x4e\x32\x41\x16\xc7\x78\x25\xb9\x9a\xb8\x32\xfd\xd9\xba\x84\xdb\xe0\xcf\xf8\x10\x20\x12\x7f\x43\x36\xba\x3b\x6f\xca\xf1\x84\x02\xf0\xa7\x09\x3c\xee\x94\xa9\x68\xec\x9e\x67\xeb\x29\x65\xa6\x2e\xda\x84\x7b\xde\x94\x31\x67\xe4\x0f\x5f\xe3\x2c\x22\xca\x62\xd7\xf3\xa1\xcd\x10\x3c\x33\xf6\x88\xdb\xdc\x9f\x33\x1b\x5f\x33\xa2\xdc\x24\xf3\x3f\xf8\x1a\xc5\xa8\x07\x35\xfe\x23\xa9\x89\x3d\x92\x9a\x88\x07\xe7\xcf\x71\xf3\x9c\x48\xe2\xda\x9b\x8d\xd5\xec\xc4\xb4\x63\xe6\x99\x1a\xf5\x56\x46\xae\xb5\x3b\x92\xdb\x94\x37\xc5\xad\x83\x89\x59\xc4\x7a\xa5\xe4\x99\x5c\xab\x83\x3d\xd9\x49\x6b\x47\xca\x74\x98\x3c\xf3\x42\xb4\x7a\x63\xb4\x3c\x53\x8b\x38\x1f\xfe\x1c\x34\x8f\x4a\x29\xe8\xe6\x18\x2d\xdf\xc9\x59\x89\x62\xf2\xe7\xa0\xf9\x91\xef\xd4\x22\xf6\x67\x27\xbb\xcd\xf5\xc2\xb0\xcd\x96\x2b\xdb\x9f\x0d\xab\x19\x5f\x67\x82\x44\x15\xfa\x73\x0c\x7d\x0a\xdd\x9e\x87\xfc\xde\x31\xf4\x29\x54\xbb\xfa\x78\xbf\xd3\x08\x62\xbb\xf8\xb3\x45\x22\x15\xd5\xae\x3e\x38\xa9\x45\xca\x57\x0a\x0a\x86\xa0\x9e\x63\x64\x58\xec\x7f\x7d\x4b\xf1\x20\x45\x52\x93\x5a\x6a\x26\x06\xd9\xac\x02\x83\x07\x32\x2c\xac\x2c\x49\x53\xc8\xce\x31\x7c\x16\x4d\x41\x39\x8b\x93\xb9\x3c\x92\xe7\x5d\x24\x3b\x7a\x3c\xd5\xe7\xe1\xe5\x63\xf3\xc7\x14\x96\xb3\x18\x76\xfa\x48\x5e\x30\x37\x92\x16\xcc\x88\x24\xb7\xed\xfb\x9d\x17\xcc\x40\x52\xb5\x7b\x4a\x91\xdb\xd6\x0d\x9c\x87\xd7\x4b\x9e\x4d\x6f\x08\x34\xc2\xab\xa7\x47\xd2\xdc\x6a\x7c\x67\x5e\x89\xfc\xc1\xe9\x49\x4b\xaa\x66\xb6\x33\xd0\x12\xd3\x79\x77\xdb\xcc\x2f\x59\x06\xf9\xe5\xc7\xca\x35\xed\x17\x62\xb3\x01\xf3\x98\x87\xc1\x7a\xdc\x8b\xe6\xe1\x19\xfd\xbe\x2b\x43\x5d\x4f\x9f\x93\xce\xb4\x50\x09\xfb\x64\x6b\x1e\xca\x5b\x9c\x5e\x76\x2e\xfa\x96\x37\x65\x1d\x4e\xcb\x7c\xf7\x62\x5b\x9e\x87\x5d\xb2\xde\x23\xa7\xe0\x9a\xd3\x41\x43\x8f\x74\xca\x5a\x49\x31\x76\xc9\x56\xda\x25\xf6\x5b\x47\xe1\x3e\x92\x6c\x9e\x3e\x9e\xa7\xa0\x9b\xc5\x84\x1d\x8f\x24\x07\xed\x9d\x52\xe4\xa0\xcd\xdf\x3d\x6f\x67\xbe\xf3\x76\x92\x32\x97\xde\x4c\xcd\xd4\xc0\x3b\x65\x7e\xf4\x87\x7c\xf7\x55\x3d\xe9\x53\x07\x08\xdf\xe9\x19\x51\x48\x18\x37\x3f\xe6\x69\xc3\xad\x0f\xeb\x79\xda\x70\xeb\x9d\x60\x0a\x0f\x3a\x1b\x43\x73\xda\x8c\xdb\xf3\x9d\xcc\xb8\x35\xdf\xc9\x57\xee\x93\x74\x0a\x2b\x3a\xdb\x9d\xef\x7c\xcf\x3f\xf2\xe1\xd4\xab\x91\x96\x93\x98\xa5\x1c\x35\xaa\xfd\xdb\xa7\x38\x45\xdc\x37\x5b\xcb\x2f\x35\xa4\x3e\x76\xa7\xb2\xf0\x4e\x93\xc6\x8e\x29\x1a\xbf\xd9\x58\x8d\x82\xa7\x4e\xac\xac\x53\xf0\xd4\xd9\x6e\x6a\xe3\x90\x7c\x54\x90\x29\xb4\xea\x74\xe0\xfa\x23\x49\x71\xc3\xea\x35\x85\x5d\x9d\xed\x8a\xa4\x85\x3b\xf2\x0f\x52\xb3\x51\x1d\x9f\x0a\x25\x0f\x35\x8c\xd6\xc0\xa6\x80\xad\xc5\x0c\x2d\x8f\xe4\xc5\x31\x53\xaa\x5b\x95\x76\xa8\x55\x35\x75\xf5\x3c\xa5\xd0\xe5\x36\x52\x8c\xb8\x54\xcc\xac\xf2\x48\xc2\x99\x03\xd8\x9e\x42\xbc\x16\xf3\xcc\x3c\x92\x8d\xdf\x69\xa4\xa2\x47\x70\xf9\xcc\x13\x08\x04\xff\x37\x04\xa2\xf0\xff\xe7\xd0\x98\x0e\x51\x7f\x24\x8f\x2a\xbd\x2a\x40\x84\x49\x60\x1e\xc9\x73\x93\x36\x29\x27\xfa\x38\xf3\x9d\xda\xd4\x53\x35\xb5\x89\xc5\x7f\x7a\xed\xb1\x68\x95\x2f\xf8\xe9\x53\x5e\x35\xfe\x06\xc8\xc7\x3c\xbd\xfa\x4a\x24\x0d\x5c\xc9\x97\xf6\x86\xe5\x99\xc7\x8d\x9e\xda\xf6\x3f\xa4\x50\xb5\xa9\xe6\x3b\x0d\xdb\x45\xcf\xb0\xfa\xf2\xa6\x47\x26\xcf\xd4\x0a\xf6\x25\x03\x6f\x2b\x16\xc9\x69\xe4\x2d\xc9\xa4\x1f\xf1\xd2\x1f\x0b\x92\x12\x96\x9f\xaf\xe8\xca\x4d\x24\xaf\x1c\x7a\xe7\xf2\x1c\xf7\x9d\x66\x5e\x9e\xe3\x77\x3e\xf4\xa2\xe6\x4d\xa3\x71\x98\x37\x97\x9d\x21\x8e\x31\x79\x44\x48\xa8\x6f\xc4\x62\x35\x3f\x2f\x1b\x24\xcf\x4c\x12\x1a\xf7\x6c\xf8\x80\xa6\xe1\xb8\x24\xad\x7e\x44\x63\x39\x1a\x2d\x85\x96\x7a\x44\x9c\xaa\x45\x24\x47\x69\xb1\x2b\x18\xa0\x7b\x9c\x3d\xa2\xf8\x4c\xe8\xcf\x0b\x3c\xf7\x9d\xdf\xc8\x7f\xc7\xc2\xbb\x20\x6b\x61\x93\x22\x8f\xb1\xe3\xa6\x1e\xd1\x8d\x65\xff\x26\x91\xf1\xc9\x39\x20\x90\xee\xd9\xb8\x60\x4e\x32\x19\x63\x14\x9b\x17\xfc\x2c\x8c\x23\xb9\x8b\x1d\x36\xfe\x88\xc6\xa6\x70\xe6\x91\xbc\x18\x57\xc5\x24\x79\x31\x76\xb1\x49\xf2\x62\x6e\x28\xd3\xc9\x8b\x5b\x0e\xa0\x0b\x86\x96\x96\x92\xdd\x22\x0e\xe5\x6b\xd3\x22\x9e\x9a\x8f\xe2\x1d\x2f\x05\x50\x71\xc1\x98\x64\x2f\xce\x79\x79\x11\x4f\x3a\x22\x0a\x5c\xc3\xc6\x73\xc1\xc3\xc2\x66\x17\x02\x43\x8e\xc1\x10\x18\x66\xd6\x6e\x0f\x08\xcd\x21\x07\x7b\x49\x1d\x0c\x4d\x4c\x57\x18\x29\xc4\x96\x5a\x8c\x14\x2a\xff\xcc\x80\xf3\xbc\x4a\xd3\x2e\x44\x0f\x16\xbd\x54\x86\x5d\xc5\x13\x49\x3b\xd3\xfb\xea\xad\x67\x03\xc9\x03\xc7\x26\x26\xd0\x70\xe2\x45\xa6\x29\x11\xb9\xc9\x4d\xa7\x48\xe6\x32\x3e\x61\x44\x3c\x7b\x44\xe6\x5d\xca\x61\x98\x1a\xa2\x87\x69\x50\x05\xbb\x1c\xf1\x40\x4d\xe1\x88\x03\xf1\x9e\xe6\x4f\x3c\x4e\xb4\x35\xf1\x27\x56\xae\xaf\x93\x24\xc8\x27\xa7\x45\x81\xc6\x08\xbd\xab\xb0\xa8\x06\x75\xc2\xeb\x9d\xb6\xb1\x6e\x46\x8a\xfa\x79\xf5\xf2\xf2\x32\x72\x85\x99\x54\x62\x4f\xa1\xed\xa6\x5e\x01\x86\x33\x9d\xf7\xb8\x81\x31\x9a\x06\x03\x1f\x1d\x9d\xc5\x5c\x88\x47\xaf\x79\xaa\xff\x76\xf6\x14\xa7\x3a\x26\xce\x67\x16\x27\xef\x41\xc3\x2d\x9e\xce\x9d\xd9\xed\xdc\xc6\x47\x67\x29\x08\x2b\x3c\x5b\xea\x60\x8f\x63\x67\x8a\x9a\x26\xf1\xe8\x25\x4f\x1d\x8d\xc1\xb6\x60\x80\xf0\xd1\x59\xdb\xe6\x45\x3c\x7a\x7a\x15\xb6\xce\x9e\xdf\xba\x39\x2d\x45\xb9\x39\xec\x46\xe6\x49\x3c\x7a\x26\x90\x21\x19\x3d\xa3\xe7\x20\xc0\xde\x22\xda\xf5\x5c\x53\xc9\x3f\xb5\xdd\x92\x89\x13\x8f\x4e\x83\xcc\x95\x78\xf4\x1a\xd1\xe9\xc5\xf8\x4f\x65\xbb\x47\x67\x34\x5d\xe2\x7d\xbf\xdf\xde\x2a\xf8\x46\xf2\x71\x9b\x67\xc3\xf5\x3f\x11\xdd\x3a\x8e\xb1\xea\x10\xd8\x7e\xa5\x4e\x6e\x1d\xf3\xd8\xc0\xe2\xa3\x97\xbc\xec\xd6\x5d\x79\xea\xd6\x5d\x29\x19\xc7\x3a\x35\x86\xc2\x88\xc9\x29\xe2\xc4\xea\x40\xd8\x47\xa2\xb1\x7c\xaa\x59\xee\x60\xd7\x47\xaa\x6a\x0d\x3f\x05\x72\xc7\x0e\x52\x41\x7a\x70\x9c\x0a\xa2\x5c\x1d\x8f\xfd\x48\x6e\x2b\x1b\x55\x05\x81\x77\xe7\x5d\x23\xf0\x22\xb9\x6d\x6c\x3e\xce\xdc\x7c\xf4\x74\x30\xf8\xbc\x96\x0a\xba\x6d\x1c\x93\xd5\x47\x47\x67\x79\x08\xb5\x5c\x1d\xb4\xf9\x48\x45\x12\x75\x20\x2e\x08\xad\x49\x58\xe4\x4a\x14\xd5\xac\x8b\x79\x19\xd1\xf3\xf2\xca\xbb\x6e\x4d\x8d\xc8\xc8\xa5\x60\xe6\x65\xbe\x65\x5e\xd2\xc1\x8b\x99\x47\x97\xb2\xb2\x38\x43\x2b\x2b\x8b\x3d\xd1\x08\xe5\xa3\x73\x30\x3a\xb1\xf3\x3d\xd3\xe3\xdb\x8b\x3f\x6d\x67\xb5\x70\x56\x57\xd6\x03\x0a\x5c\x75\x3a\xbd\x99\x92\x8c\x12\x64\x67\x68\x66\x5e\x29\xe5\xdf\xa6\xee\xd9\x4c\x4b\x5f\x58\xa3\x06\x34\xdf\x95\x2d\x54\x80\xe6\x0a\x4e\x7d\x36\x63\xe9\x0a\x33\xbe\x19\x4b\x57\x58\x3a\x4e\xe7\x7c\x16\x76\x0a\xe7\x73\x3e\x0b\x53\xaf\x19\xd5\x44\xa7\x36\xf3\x1a\xd1\x54\xe1\x9d\xeb\x3c\x53\x8e\x01\x07\x3d\x55\xf8\x38\x88\x3e\x3f\xfd\xfa\x2f\x29\x88\x96\xbb\x0f\x85\x6b\x7e\x44\x9e\x02\xc9\xe7\xb4\x6d\xe6\x2e\x2a\x25\xa2\x9b\xc3\xe9\xd1\xcc\x5d\x04\x2a\x76\x1a\xdc\x7c\x16\xe6\x6d\x33\x77\x51\x94\x64\xe7\x76\x3e\x0b\x1b\x9f\x72\x3b\x57\xe2\x21\x67\xc3\x75\x94\x2a\x1b\xa0\x52\x58\x4a\xa6\x5c\x3c\x4b\x8b\xa8\xe8\xd9\xf7\x37\xf6\x33\xb3\x8b\x0b\x28\xfd\xbc\xcb\x5f\x17\x83\x45\xd7\x98\xe9\xa8\xbc\x2f\xbb\x79\x35\x4f\x19\x2d\xba\x06\xaa\xa3\x16\xd1\xcd\x63\x2e\x36\xf0\xab\x6c\xa8\x62\x62\xac\xc0\xf5\x67\x03\xa2\xca\x9c\x6f\x40\x54\x39\x2f\x84\x9f\xae\xa0\xf7\x67\x03\xb0\xca\xfa\x6e\x20\x54\xd9\x99\x9b\x19\xeb\xde\x29\x03\xce\xb4\x46\x54\x9d\x46\xa6\x85\x71\xa6\xb9\x25\x37\x73\x18\xe5\x62\xda\x0c\x3b\x1d\x99\x9b\xe6\x3d\xc8\x95\xa6\x19\x77\x0a\xc2\x6e\x1a\x48\x7d\xc6\x30\xd0\x8c\x34\xe5\x5c\xbd\x21\x2a\x62\xc3\xba\xbd\x22\x72\x01\xba\xcd\x54\x34\x98\xb9\x37\x89\x1a\x58\x79\x82\x52\x37\x90\x74\xf3\xf6\x8a\x18\x57\x0a\x76\x7b\xce\x14\xdc\xf5\x6e\xca\x75\x73\xae\x7c\xea\xe6\x70\x09\x12\xb0\x3a\x01\x58\xf3\x26\x89\x03\x13\xca\xc0\xea\xb3\xb4\xfc\xe6\xeb\xdf\x34\xc4\x9f\xc5\x3c\x35\xc7\x03\x67\xbf\xf3\x4c\x9f\xc4\x27\x4e\x11\x3d\xbe\xb7\x07\xa3\xb0\xe7\x91\x2a\x4e\x37\x2e\x5f\x1a\x3a\x8b\x99\xc8\xdc\x8e\x67\x2c\x1a\x86\x68\x0f\x20\x6d\xd3\x69\xa5\x4f\x82\x4c\xa7\x31\xda\x67\xee\xb4\x4e\x2b\x7d\xe6\x8e\xa5\xb4\xd2\x0d\x8b\xf8\x14\x2d\x64\xbb\xde\x72\x69\x5c\x1e\xba\x71\x47\x2a\xfc\xe7\xdf\xf0\x74\x31\x92\xd4\xdf\xcb\x25\xd7\x63\xe3\xbb\xcf\x18\x41\x8c\xef\x3e\x89\x1f\x98\xa4\x9c\x06\xe9\x36\x85\xef\x4e\x1c\xd0\x04\xde\x0d\x9e\x7f\xde\x86\xb6\xbe\x05\x4d\x81\x32\xa9\x92\xf2\x41\x00\xa6\x9a\xe2\x76\x6c\x57\xda\xad\x90\xd3\x9a\xfa\x6c\x33\x4e\xa5\xb6\x50\x2d\x8c\x88\xd5\x22\xfd\x40\x44\x2a\x77\x44\x43\xb2\xaf\xf3\xdf\xd9\x87\x9f\x77\x05\x29\xbe\xd2\xdb\x0e\x58\xbd\xd2\x50\x45\xd9\xd7\xd4\x77\x1b\x60\x9a\xbf\x38\x61\xc5\xcc\xc3\x9f\xbf\xa4\xa5\x8e\xa4\x27\xd0\x7b\x92\x66\x3a\x4a\xb3\x31\xda\xb5\x70\x6e\x9a\xfd\xf1\x8a\x5a\xdc\x07\x8d\xbd\x11\xdd\x58\xf4\x0b\xa3\xb4\x2f\xa2\x71\xa7\xc9\x20\xaf\x28\xdc\x86\x69\x5f\x27\x36\x18\xc3\xb4\x2f\xc2\x7a\xa7\x61\xda\xf5\xc8\xa7\xdb\x0f\xf3\xa9\x71\xd9\xa9\xa2\xb1\x81\x33\xa2\x61\xda\x34\x67\x7a\xac\x28\xd5\xec\x60\x31\xb5\x75\x03\xc8\x62\x32\x13\x86\xbb\xc5\xd4\x65\x66\xc8\x81\xfb\x69\x06\xd1\xcd\x09\xdb\x1d\x22\x1b\x7b\x22\x90\xee\x18\x2a\xba\x83\x64\x63\x19\x31\xe1\xe3\x15\xa3\x86\x30\xdd\x2d\xe6\x46\x43\xba\xaf\x18\x54\xcd\xf8\x78\xc5\xfc\xd8\x89\xb4\xcf\x70\x80\x74\xcc\x70\x98\x03\x0c\x47\xc8\xec\x20\x1d\x51\x20\x4c\xf2\x78\xc5\x72\xda\x21\xfd\x2a\x29\xca\xdc\x1d\x54\x51\xf3\x3d\xa6\xbc\xbe\x0c\x49\x2e\x29\xd7\xf5\x2f\x79\xfa\xb5\x98\x2a\xfe\x6c\x5a\x4e\x49\x34\x80\x97\xa1\x04\xcb\xd3\x4d\x03\xe8\x37\x18\xc2\xd0\x45\x9c\xf0\x7a\xc6\x8c\x60\xb0\xf7\x35\xd2\xe7\x4e\x9e\x82\x1a\xd6\x89\xd8\x46\x49\x10\xcf\x63\xbb\x47\xfe\x2a\x4c\xfd\xcc\xb3\xad\x67\x29\xe6\xe3\xfa\xe6\xa1\xb1\x88\xe9\x70\x38\xc0\xd2\xc3\xf0\x4c\xd0\xd6\x01\x07\x18\x03\x3b\xe0\x00\x63\xd8\x85\x15\x7f\x16\x4b\x9e\x56\x3f\x1d\x88\x4e\xb5\xc2\x7f\x95\x5d\xbb\xdd\x4c\xff\xe1\x5c\xa5\x33\x05\x39\x42\x80\x6e\x31\x5e\xfc\x66\xf6\x0b\x2f\xde\xee\x99\x1a\x7d\x5c\x6a\xca\xb1\x13\x6f\xe4\xdd\x3f\x27\x9f\xe6\x65\x1d\x1b\x2d\x26\x1e\x01\xc8\xdb\xcd\x66\x64\x4e\xc8\x79\xb2\xe6\xcc\x09\x39\x4e\xb6\x14\x63\xc6\x6b\x79\x3f\xed\x62\x73\x69\x48\xc3\x51\x0a\x34\xdc\x0c\x61\x47\xcb\x5f\x97\xde\x4d\xb9\x46\x82\x96\x7c\xfa\xf1\xbb\x29\xf7\x67\x91\x3e\xd3\x6a\x28\x07\x8b\x43\x28\xf2\xe7\x29\xff\xd1\x6a\x28\x07\xaa\x9f\x29\x23\xaf\x91\x2a\x2e\x67\x8e\x61\x71\x98\x33\xf2\x22\xbe\x64\x9a\x33\xb2\x1c\x2d\x25\x43\xd8\xc6\x7f\x9d\x99\x85\xe0\xb2\xe9\x94\xde\x35\x5a\xb0\x71\xe7\xe5\x60\x05\x9b\x51\xb2\x1c\x35\xa2\x13\xc9\x5c\xa9\xe4\x57\xad\xff\x0f\x76\x1a\xd1\x4d\x3e\xe5\x32\x78\xc6\x5f\x02\x9a\x9d\xc3\x99\x0f\x08\xe2\x9b\xce\xf0\x5d\x62\x0e\x32\xc7\x64\x01\x8a\x31\xcd\x23\x59\x62\xb9\x11\x36\xbd\xe1\x4c\x9d\xce\xff\x1d\xea\x81\x69\xe6\xc8\xb0\x97\x4c\x33\x47\x26\x54\x71\x9a\x39\x32\xd1\x82\xd3\xf0\xf4\x04\x1d\x4e\x93\x45\xe2\x19\x9d\x26\x8b\x0c\x0d\xc5\x34\x3d\x64\x8d\x9d\xd5\x39\xc0\x0b\x10\x95\x49\xd2\x6f\x22\x85\xe6\x34\x29\x1e\xd8\xac\x69\x9a\xc7\x02\x82\x65\xce\x61\x88\xf2\x40\x32\xaa\x93\x82\x4c\xa9\x42\xf7\x0b\x84\xde\x89\xc2\x9f\xd3\x18\x19\xe6\xc0\x34\x46\x86\x4b\xf6\x14\xa5\xca\x64\x96\x8a\x0d\x32\x51\x90\x73\x1a\x24\xf1\x96\xb2\xff\xef\xff\x15\x02\x81\xa6\xb0\xe9\x25\x2a\x9f\xa0\xe9\x25\x8a\xa5\x90\xe9\x25\xaa\xe3\xc4\x4a\xca\x3e\x34\x09\x4d\xc3\xc4\x38\xd1\xf4\xe9\xf7\x89\xa6\x7f\xe7\x65\x34\x7d\x2a\xab\x84\x1a\xd7\x5b\x30\x8a\x59\x3e\x9d\x9e\xdb\x0d\xd1\x94\x7c\x33\x4f\x1d\xc1\x91\x82\x84\x87\xc8\x7d\x49\x38\xf5\x3b\x16\x0d\x11\x38\xde\xb9\xb8\x4f\x83\x7c\x7b\x24\xae\x61\xf4\x33\x20\xc8\x7c\x28\x10\x64\x86\xd6\x3c\x29\xcc\x54\x21\xd3\xaf\x2c\x2d\x01\xd3\xaf\xac\x4a\xe1\xd2\xaf\xac\x6f\xc1\xd2\x7b\x6c\xbd\x06\xa2\xd7\xdc\x0a\x9d\x1c\x1c\x40\xf0\x74\x72\x70\xbc\xe0\xd3\xc9\xc1\xc1\x8f\xcd\x65\x58\xd6\xc8\x33\xc1\xb2\x98\xbf\x22\x5b\xbc\x2a\xe7\xe9\x32\x2c\xab\x45\x12\x2c\x0b\xd3\xac\xa0\xe7\x1d\x70\xf2\x5c\x06\x62\xb1\xf3\xac\x5c\x49\xf9\xa1\x60\x3a\xb9\x6e\x1b\x7b\x9e\xd9\x29\xa6\xc5\x0e\xaa\x79\x2e\xe3\xb2\x58\xe1\x22\x5a\xec\x20\xd1\xa7\x50\xea\x1d\x64\xf8\x5c\xc6\x31\xd2\xbf\x42\xa9\x87\x56\x64\x2e\x67\xaf\x60\x24\x84\x52\xef\x60\x9c\xe7\x32\x6e\x91\xbd\x69\xd9\xef\x1b\x7b\xa9\x80\xe9\x1d\x80\xf9\x5c\x86\x31\x32\xe5\x05\x4c\xbf\xea\xc8\x33\x2d\x15\xf4\xd6\x65\x50\x23\x03\xb3\x0c\x63\xbc\xf3\x0b\x55\xbb\xe5\x4d\x01\xe4\x46\xde\xf4\x48\x50\x35\x83\xcd\x09\xbb\x9a\xcb\x61\xe0\x69\x93\xc1\x37\xe9\x0b\x13\xfe\x67\xd0\x9c\xac\x32\x7e\xf0\x65\x0c\xda\xfb\xa1\x00\x45\xe9\x28\xc7\xeb\x64\x26\x38\x5e\x27\xa3\xb6\x85\x8a\x4a\xe7\x3b\x5e\x27\xf3\x49\xd8\x85\xeb\xfd\xa1\x00\x45\xed\xdf\x18\x96\xb9\x0c\x49\xa3\xf9\xdb\xa9\x2e\x98\x50\xdb\x00\x35\x7e\x2f\x80\xf9\xb8\xde\x67\x6e\xc4\x40\x52\x80\x3e\xa3\xb6\x95\xea\xe2\x7a\x25\x37\x62\x22\x19\x15\x55\x91\xdc\x88\x03\x49\xd8\xb5\x3b\x75\x11\x0e\xea\x7d\x26\xb4\x1a\x43\x28\x18\x7a\x89\x7e\x2d\x14\xfa\x20\x70\x6e\x0a\x77\x3e\x26\x1a\xb4\x70\xe7\x25\xf7\xa2\x6d\x77\x2c\x03\x2a\xa4\xf9\x20\x24\x76\x0a\x69\x3e\x88\xcd\x9f\x02\x9a\x17\x82\xdc\xa6\x92\x9f\x0f\xa8\x02\xe6\x66\x3f\x8d\xf4\xd1\x33\xda\x27\xc4\xce\x7c\x6b\xf6\xd3\x9b\xf4\x92\x76\x57\x42\x30\xa7\x80\xe6\x63\xbe\x92\x6b\x4d\x3d\x97\x6b\x4d\xcf\x0b\x57\x36\x53\x17\xe1\x70\x08\xeb\x9d\x4a\x74\x3e\xe6\x99\x52\x5c\xcf\x7c\xb7\x25\xf1\x77\xe1\x70\x20\xab\x9a\x42\x96\x97\xdc\x33\x04\x25\x7f\x36\x04\x1a\xb1\xe5\x45\x61\x43\xd8\xf6\x85\xb2\x59\x6c\x23\x11\x7a\x24\xf9\x42\x59\x2f\xc2\x80\x97\x58\x43\xb6\x7d\xa1\xec\x63\xc2\x80\x17\x38\x53\xa6\x50\xde\x25\x07\x80\x60\xdd\x25\x17\x68\xc1\xba\x67\x1b\x91\xec\x5e\x8f\xa4\x9a\x71\x22\x7d\x0c\x28\x40\xbb\xfd\x38\x4a\x0c\xc5\x45\xd0\xed\x92\xbb\xff\xc7\x31\x63\x23\xcf\x96\xbe\x2b\x48\x06\x81\xe4\x99\x10\x03\x1c\xb2\x1f\x7b\x53\x47\x24\x79\x53\xd9\x7d\x3f\xf6\x98\xe6\x50\xfb\x40\x7f\xc6\x50\x28\xe3\x79\x89\x19\xe9\xe3\x9c\x14\x71\x98\x0a\xf4\x5d\x41\x70\xce\x0f\x99\x79\xb1\xac\x18\xf4\x7d\xc4\xee\xf2\xb1\x2f\x27\xd7\xbc\x8f\x7d\xa0\x5c\x92\x3e\x30\xf3\x71\x49\xfd\xd8\x56\x1d\xa5\xe4\x93\x03\x9c\xff\x28\x29\x05\x00\xc1\xf9\x21\x29\x05\x9a\xf8\xc7\xb6\xeb\xd8\x13\x84\x03\xaf\x40\x55\xe7\x07\x27\x27\x0a\xbe\xc0\xde\x35\xea\xc5\xc7\xc6\x69\xc2\x43\xe7\xc7\x4e\xcd\x5c\xed\x3f\xe6\xe9\x23\x78\x6c\x7e\x70\x6a\xa2\x72\x7d\x6c\x9c\x8e\x89\xe3\x63\xe3\x74\xec\x2e\x1f\xfb\x7d\x08\xdf\x9d\x1f\xd8\x4a\x67\x5e\x96\xe7\xaf\xe6\x61\xf3\xa7\x74\xb8\xd8\x4a\x81\xef\xce\x8f\xb3\x61\xc5\xec\xf5\xb1\x9b\x27\xb6\x37\x61\xbb\x2b\x70\xd3\xf9\xb1\x97\x27\xc6\x93\x8f\xdd\x3a\xb1\x37\x7c\xec\xc5\xe4\xba\xf5\x25\xd9\x04\x9a\xe9\x37\xcc\x7d\x05\x91\x19\x91\xa7\x0e\x69\x66\xc5\x7f\xcd\x78\x10\xad\x47\x80\xeb\x7a\x9f\xff\x41\xd1\xfe\x32\x29\xf3\x17\x5b\xff\x59\x83\x5f\x3c\x33\x0c\xd5\x97\x90\xc7\xbc\x4c\xc8\x23\xd3\xfb\x8b\x6b\x86\xb9\x2f\x48\x76\x05\x8c\x3f\x4d\x9b\x7b\x74\x14\x28\xf1\xe6\x56\xa0\xa7\xf3\x8b\x6b\xe6\xce\xbb\x5d\x5f\xd2\x16\x5c\x33\x3d\x3f\x9d\x7a\x98\x72\xec\xcb\x60\x07\xf9\x7a\x7a\xf7\x9e\x4f\xed\xa9\x61\x8c\xbf\x78\x6a\x46\x2a\x48\x5b\x0f\x44\xb7\x95\x05\x29\xde\xdd\x0a\x37\xcf\xfc\x2e\x9a\x4a\x0d\xd1\x5e\x99\x78\x5f\xb3\x56\x12\xa1\x39\x85\x1a\xaf\x90\x03\xcd\x2f\xbe\x99\x99\x4f\x87\x1e\xd2\x1a\x5c\x33\x2c\xaa\x2f\xae\x99\x91\x82\xec\x79\xe5\xb6\xeb\x8c\xea\x07\x5c\x03\xf3\xbb\x68\x4e\xfe\xe3\xe6\xcc\xd4\x98\xe6\xf0\x5b\xad\x8d\x36\xd3\x58\x93\x00\x1e\xef\x53\x3b\x41\xd9\x51\x04\x65\xaf\x30\x1f\xcd\xef\xa6\x75\x74\xcc\xb6\xcb\x90\xa1\xc3\x23\xda\x53\xae\x5b\x97\x72\x4c\xa4\x80\x3a\xf6\xc5\x21\x3a\xf2\xa9\x07\x2b\xad\x73\xb0\x1a\x31\xf3\xf3\x87\x1b\x07\xa5\x40\x69\xd8\x2b\x0c\x4f\xf3\x87\x17\x27\xcf\x7c\x5b\xe8\x11\x7d\x5b\x60\xaa\x99\xe6\x77\x44\x5f\xfc\xe1\xc5\xe9\x11\xed\xf6\xb8\x53\xb0\x6b\x3c\xf2\xd4\x89\x7d\xdf\x92\xed\xb9\x79\x5f\x96\x9f\xa0\xe4\x5d\xd3\x84\xa2\x71\x38\xf1\xfa\x49\xb8\xe6\xfc\xe1\xa9\x41\x35\xfb\xe1\xa9\x61\xe9\xfc\x70\xcd\xdc\x11\x5d\x47\x14\x94\x1f\xae\x19\xfa\xf8\x67\x5b\x33\x28\xea\xf9\xc3\x19\x93\xf6\x39\x5a\x38\x30\xcd\x1f\xbe\x19\x26\xee\xcf\xbe\x99\x92\x87\x7f\xea\x46\xfe\xaa\x1d\x3d\xf6\xee\x1f\x37\x32\x96\xdd\x2f\x37\xb2\x3c\x6d\x46\x97\xf0\x53\xd3\xcb\xbd\x15\x36\x5b\xe5\xc8\x6f\xc4\xa9\x9f\xfb\xb7\x41\xe8\x67\xac\x4a\xe6\xf9\x3d\xc7\xfb\x5b\x9b\xc3\x4b\x5e\xb6\x39\x9c\xed\xd4\x44\xbf\x67\x0e\xdb\x1f\x00\x2d\xce\x0e\xe7\x71\x3f\x47\x66\x90\x08\x10\x63\x05\x30\xd1\xef\x49\x34\xf1\x34\xd1\xef\x19\xeb\xd5\x0f\x47\x0d\x87\xe8\x0f\x47\x4d\x4d\x49\xbe\x62\x72\x00\xfc\x70\xd4\x94\x94\x2c\xfb\x78\x1a\xbb\xdd\x58\xfa\x14\x37\x4d\xc9\x5f\xdd\xd8\xb7\xc2\x6e\xec\xfb\x32\x8d\xb5\xf8\x67\x86\x10\x14\x20\x41\xe7\xcf\x3b\xe3\xfa\x87\x13\xa7\xfe\x07\xdc\xe2\x9f\x3d\x3c\xb1\xb6\xfd\x0d\x7a\xa2\x21\xd2\x13\x17\xa2\xdd\x04\x1d\x49\x7e\x01\x06\xe7\x0f\x97\x4e\x49\x05\x3d\xcc\x9c\xeb\x02\xd4\xb7\xeb\x2d\xc7\x2d\xaf\x11\x9d\xfa\x91\xf9\xff\x67\x2f\x0d\x0a\x8d\xd8\x83\x13\xa4\x3e\x8d\xa1\xbf\x72\xbe\x3a\xf3\xfc\x15\x8f\xc3\x9f\x81\xbf\x41\xa8\xfd\xd9\x16\x1d\xbd\xc9\x89\xe8\xaf\xa8\x3b\x7f\xb6\x45\xbf\x7d\x68\x37\x66\xdc\x4c\x7f\x36\xbf\x45\x9b\x70\x2a\xfa\x2b\x5e\x1b\xd3\x16\x5f\x6f\x4f\xe0\xa7\x79\xbf\xfd\xf3\xcb\x94\xac\x74\xa0\x95\x53\xe9\x2f\xa7\x05\xdd\xb6\xb0\xad\xd3\x20\x9b\xa6\xa3\xa6\xfc\x61\x8c\xe3\xb8\x33\x03\xf2\x15\x75\xc2\x0c\xc8\x57\xb4\x16\x33\x20\x5f\xd1\xc9\xcc\x80\x7c\xbd\x3d\xe7\x64\xa2\xd1\x1a\xcd\x79\x7c\x45\xf9\x10\x76\xbe\xd5\xb7\x60\x37\x0f\x15\xed\x6f\x61\x60\x88\x28\xcf\x41\x0a\x52\x0a\x97\x9a\xb6\x6e\xc6\x87\xc6\xda\xad\x93\x75\x66\xca\xe3\x3b\x40\x54\x53\x1e\x07\x79\xfc\x47\x3e\x8a\x74\xa2\xd6\x4a\x00\x85\x7f\xa4\xf5\xe6\x92\xe6\x54\xf4\x41\x37\x43\x72\x8c\xc5\x7b\x39\x15\xfd\x65\x2a\xf7\x47\x3c\x5d\x87\x8a\x68\x53\xfa\x1d\xd1\xbe\x00\xef\x0b\x4b\xe0\xf8\xf3\xc6\x48\xb6\x0e\x93\xc2\xbf\xef\xda\x51\xe0\x1b\xe6\x32\xb7\xf1\x05\x3e\x74\x39\x33\xfd\x85\xa7\x60\x1d\xa4\x27\xb8\x53\xb0\x5d\x05\xbe\x70\x2f\x53\x1f\x5f\x38\x37\x96\x53\xd3\x03\x51\x5e\xce\x45\x5f\x4b\xea\xe4\x39\x3f\x52\x27\x73\x90\xb2\x1d\xad\xc3\x93\x9c\x85\xb6\x0c\x76\xbf\xd1\x47\x17\xc9\xe8\xd9\xac\x96\x93\xd1\x97\x23\x3d\x85\x51\x39\xff\x85\x44\x27\x0d\x12\x6b\x0e\x13\x75\x1d\xd8\x94\xd3\x1e\x25\x59\xe1\x68\x5f\xca\x3e\xdf\x40\xc2\x2f\x27\x9f\x77\x22\xa1\x47\x72\x2a\xf2\x74\xa2\x0d\xca\x60\x2b\x97\x51\xf3\x85\x5d\x64\x29\x17\xfd\xd9\x00\xfd\x2f\x27\xa3\x2f\xec\x9f\xeb\xc0\xa0\x7c\x47\x74\xa2\xf2\x42\x6b\x16\x8d\xa3\x27\x62\x5f\x4e\x51\x5f\x5b\x78\xf2\x5f\xec\xb3\x74\xaa\x73\x7f\x97\xd4\xca\xb4\xc8\x25\x1d\x23\x5a\x0a\x42\x06\xd6\x61\x8b\x72\xc9\x7f\x6c\x51\x2e\x69\xae\xe6\x78\xa9\xef\xd3\x5b\xa9\x02\xf2\x90\x8c\x21\x29\x77\x58\xa4\x6b\xb4\x1e\x66\x2a\xac\x05\x30\x33\xd9\x6c\x5e\xe6\xf2\xb8\x04\xa9\x3f\xcb\xfd\xef\x04\x99\xcf\xbb\x3f\x9b\x39\x53\xd2\x9f\x3f\x75\x8f\x9f\xbe\x59\x78\xff\x5f\xa7\x33\xed\x52\x79\x32\xe4\xb3\xdb\x2e\xd3\x2c\xc3\xd5\xb3\x4e\x92\xb5\xd0\x83\xa7\xed\xd2\xf5\x15\xa5\x8f\xd6\xfc\x44\x4c\xa2\x2d\x92\x22\xaf\xdf\x37\x35\xdb\xb1\x9c\x2c\x41\xe0\x13\x8f\xb2\x4e\x07\xf6\xdd\x79\xd6\x54\x01\x3e\x94\x25\xda\x7c\xf4\x8f\xd4\x65\x67\x98\x48\x32\x10\x94\x7c\x67\xe5\x72\xe6\xe1\x96\x22\x4a\xab\x94\x6c\x0b\xd0\xdb\x3a\x41\x30\x32\xcd\x05\x64\x3f\x83\xd6\x59\x42\xb2\xd7\x59\xf2\x50\x29\xe1\x99\x9c\xa6\x6e\x86\x07\x60\x19\xc8\x1e\x13\xe2\x3a\xad\x13\x11\x98\xb5\x84\x5d\xef\xe7\x2b\x69\xcd\xf6\xbc\xaa\xf8\xf6\x9e\x52\x15\x1c\xcc\xca\x12\x92\xfd\xc2\x61\xb4\x4e\x87\x34\xbf\xdf\xfd\x3c\xc1\x23\x2a\x38\x78\x50\x55\x13\xa4\x0e\x7e\xb8\x65\xde\x1c\xf4\xb1\x09\x52\x59\x72\x02\xab\x77\x98\x5d\x96\x00\xe9\x57\x1d\x79\x26\xa3\xe5\x4c\x99\x8a\xdc\x1d\x8c\x86\x99\x4d\x27\x55\x33\xaf\xf7\x60\xaa\x38\x50\xd9\x8a\xf3\xba\xcc\x73\x6a\x65\x65\x5d\xce\x46\xe0\x4b\xe5\x32\x00\x3d\x84\x0d\xeb\x72\xba\x38\xec\x17\x4b\x08\xf4\x6b\xd2\xa7\xa2\x7b\x1e\x20\xa7\xd6\x65\x2b\x1e\xf3\xe6\xb2\x15\x6f\xe4\x3b\xc5\x24\xf6\xfc\x51\xa1\x8d\x33\x92\x5d\x7f\x8d\x0a\x18\x60\x98\x21\xbe\xcc\x1d\xd5\x29\xc7\x41\xa7\x77\x24\x59\x26\xe9\x9b\xcb\x61\xa6\x3d\xdf\xc9\x16\x79\xe7\x99\x0c\xaa\xf4\x86\xd3\xda\x03\xd3\x5a\x97\x3d\x28\x23\xdf\xc9\xa0\x6a\x8d\x7c\x5d\x0e\x33\x4d\xdf\x38\xcc\x14\x45\x7a\x19\x95\x3e\x61\x59\x5f\x97\xe3\x4c\xef\x48\xb2\xb6\xa6\x8f\x35\x8b\xef\xb7\x3b\xcc\x87\xca\x80\x3b\x3d\xbe\x73\x74\x3f\x92\xac\xc4\x0c\xff\x65\x5a\xd3\x0c\x9c\x43\x4b\x3b\xff\x77\x30\x69\xcf\x9b\x36\xa2\x52\x71\xb3\x9a\x8e\x48\xc6\x67\x33\x6f\x9c\x0d\x1f\x5d\x63\x09\x40\x3e\xb2\x41\x0a\x31\x3e\x80\xca\x2d\xd1\x3f\x0f\x80\x59\x4b\xf0\xf1\x01\x03\xfc\x12\x7c\x7c\x00\xb1\x5b\x42\x8f\x8f\x2c\x53\xa1\xc5\x07\x20\xad\x25\xb4\xf8\x00\x73\xb6\x04\x16\x1f\x80\xfc\x96\x33\xe1\x37\x8c\x0d\x4b\x60\xf1\x01\xe3\xea\x72\xe6\xfb\x9a\x9d\xdd\xb0\xee\xfb\x78\xdf\x55\x05\x58\xfd\xc5\x96\xbe\x9a\x2f\x65\xe9\x9b\x91\x64\xe9\xfb\x0f\x91\x9e\xcb\xa0\xee\x8a\x5f\x77\x15\xc7\x0a\xb1\x6f\x09\xc5\x5d\xb8\xef\x2c\xc1\xb6\x0b\x97\x94\x25\x6e\xe8\x92\x73\xbe\xd8\xfc\x6c\xdb\xc6\x2a\x98\x9f\x53\x8a\xec\x95\x25\x92\x37\xca\x8e\x24\x4b\xea\x8c\xe4\x56\xe4\x0f\x72\xe7\x95\xd4\x4c\x71\x33\x1c\x1b\xc5\xb1\x40\xb6\x02\xac\x62\xe7\x5e\x41\x72\xf4\x0f\x27\x81\xf3\xdf\xb7\xe8\x27\xc5\x06\x90\x28\x67\x4a\x80\x5f\xaf\xb4\xde\x26\x8e\xeb\x2d\xc8\xf6\xb2\x92\x77\x6d\x2f\xe3\xb8\x14\xcc\xbb\x62\xe1\x5f\xa0\xbc\xa3\x65\x08\xc8\x5d\x71\x5a\xae\x62\x7b\x1e\x2b\xde\xd9\xee\x1b\x31\x8f\x0b\x54\x77\x14\x12\x50\xdd\xdc\x12\x56\x71\x08\x03\x3a\x9e\x40\xdd\x15\x4f\xc5\x02\xd3\xcd\xa5\x60\x81\xe9\x8e\x76\x02\xa6\x3b\xaa\x8c\x30\xdd\x15\xd7\xc5\x02\xd2\xcd\x35\x78\x15\xf3\xef\x10\x8b\xbd\x8c\xe9\x0e\x6f\xcd\x12\x33\xf4\x88\x9a\x50\xcd\x7d\x8a\xae\x68\x08\xf7\x01\xcc\x6b\x55\x9b\xfe\xc0\xd9\x2d\x61\xb8\x2b\x9c\x1b\x0b\xd0\x36\x20\xcf\x25\xd0\x76\x85\x82\x63\x81\xd9\x06\xb4\xb6\xc0\x6c\x83\x30\x5c\x80\xb4\x41\x27\x2e\xa1\xb2\x2b\xec\x0b\xab\xda\xf4\x07\x38\x71\x99\x1a\xfa\x00\x6a\xb6\x84\xbc\xae\x37\x03\x0e\xf0\x1a\xd0\xda\x32\x98\x1a\xe7\xd6\x32\x5c\xfa\x24\x14\x77\x19\x2e\x7d\x12\xb9\xba\x2a\x67\x31\x5f\x82\x0e\x65\x57\xaf\x58\x28\x58\x81\x95\xb0\xb2\xf7\xd3\xa6\x4f\xe9\x4f\xc0\xa1\x6c\xb3\x15\x70\xe8\x48\xc1\xb6\xfa\xb0\x96\xaa\xb1\xa2\x25\xef\x8a\x49\x91\xd5\x53\x81\x8a\x66\xd8\xc8\x0d\xc3\xb6\x57\x61\x33\xe5\x14\xa8\x60\x45\x39\x3e\xaa\x13\x11\x95\x3c\xf4\xad\xbc\x45\xf4\x35\x9c\x19\xab\x4c\xf4\x2d\xeb\xa0\x62\x8f\x60\xe6\x0b\x49\xdd\xae\xb4\xcd\x16\x87\x92\x2a\xf8\xde\xdd\xf2\x50\x84\xa4\xa9\x3d\x06\x07\xa6\x24\x50\x69\x22\x98\x57\xc3\xa6\xc0\xdd\x40\x50\xe9\x33\x24\x9a\xab\x19\x18\x4a\xed\x8d\x8d\xbe\x32\xf3\x8d\x8d\xee\xd8\xb3\x56\xf3\x3d\xe9\x7f\x2f\xfb\x22\x7a\xe5\xa9\x2f\xda\x25\xff\xb1\xd6\xde\x52\x94\x6f\xd6\x2c\x22\x23\x9e\x4f\x02\x86\x57\xc3\x38\xc0\x2a\x32\xe2\xb9\x65\x9d\x0b\xe2\xdc\x08\x18\x5d\x0d\x9c\xda\x9d\x77\x7d\x97\x43\x7d\x68\xe0\xd4\x38\xcd\x1b\xc0\xb4\xf7\x5b\x03\xbb\xfa\x3f\x13\xf0\x3c\xef\xea\xa6\xfa\x96\xfb\xa7\x7b\x1e\xf5\x95\x61\xe0\xad\x02\x98\xb5\xf7\x21\xf7\x54\xba\x69\x71\x09\xcc\xd3\x2a\x70\x13\x63\x05\x39\x1f\xfa\xb5\xd1\xce\x17\x26\xa9\xd5\x72\x6b\xca\xa7\x82\x19\xa1\x36\x35\x2e\x4d\xa9\xa0\xec\x00\x3d\xed\x5e\x5c\x08\x53\x43\xe3\x6e\xd2\x0d\xcb\xac\xaa\x9e\x4c\xc6\x3e\x97\xcc\x4a\x11\x44\x37\xec\x48\xab\x71\x47\xca\x5f\x64\x16\x08\xeb\xf6\x32\x12\x3a\x34\xdf\xcb\x48\xe8\xf6\x56\xdf\x38\x1b\x20\x84\xab\x71\x11\xaa\x79\xfa\x13\xe0\x25\x9f\xca\xb0\xcd\x29\x78\x13\xea\xc8\xc2\xbe\xcd\xe2\xd4\xf2\x50\x6a\x0f\xcb\x5a\x40\xe7\x82\x15\x63\x39\x21\x3d\xc1\x16\x4b\xc0\xe6\x56\xd1\xb3\x4c\x18\x5d\x53\xf7\x1b\x23\x40\xcf\x3f\x30\x76\xa6\x58\x71\x9c\x1d\x33\x2f\x1b\xd3\x35\x90\xe4\xd7\xa7\xaf\x85\x4d\x7e\xb6\xa8\x1b\x51\x17\x1f\x46\xe9\x76\x62\x41\x8c\x53\xeb\xf6\x3d\x88\x35\x22\x6c\x72\xc1\xbe\xb4\x6e\x1f\xf6\x25\xa5\x4a\x67\x2a\xf9\x6e\xab\x5d\xf9\x4e\x07\x3a\x43\x44\x46\xfa\x6c\x1c\x50\x49\x13\x71\xb7\xa0\x92\x26\x86\x73\x91\x84\x3e\x5b\x07\x5c\xd2\x80\xb0\x17\x5c\xd2\x23\x35\xb2\xc3\x6f\xa4\x73\x31\x0f\xdf\x11\xef\x67\xe3\x63\x38\x0d\x3d\xae\x25\xdd\x89\xed\xb8\xe7\x3f\xde\x7c\xa9\x93\xe6\xea\xff\xaa\x64\xf3\xe9\x9d\x3a\x78\x37\xbb\x53\x90\xcd\xa7\xf9\x29\x46\x2b\xda\x4a\x12\xd5\x1e\xd1\x5b\x03\x1a\xf1\x4d\x8e\x1b\x16\xd7\x0d\x64\x92\xbf\x6e\xeb\xe4\xef\xbb\x02\xb1\xa5\xf6\xbe\x78\xbf\x5d\xea\x8b\x77\x36\x3e\x93\x3c\x03\x3b\x58\x06\x10\x07\x2c\xb2\x7a\x12\x73\xfa\x53\x10\xb8\x9c\x15\x4a\xd5\xde\x41\x7f\xae\x6e\xc2\x3b\x76\xb9\xee\x6b\xc8\x8c\x24\xb0\x16\xa7\x60\xf7\x55\x83\xf3\x48\x68\xdb\x89\x23\x67\x75\xc3\x09\x4a\xbe\xfb\xd3\x33\xbe\x53\x34\x37\x81\x60\x4b\xd8\xda\x49\xbc\xd9\x12\xb4\x76\xe2\x7b\x59\xdd\xc1\xdc\x35\x6f\x56\x3d\xa3\xcc\xe5\x45\xc5\xdf\x95\x09\x10\x4f\xd1\xea\x19\xf6\x14\x63\x2f\x6a\xcd\xff\x9d\xd7\x87\x39\xd2\x51\x0b\xd9\x10\x8c\xba\x3d\xc0\xcc\x2f\xa3\x6e\x0f\xe2\x03\x16\xd9\xd4\xc1\xe2\xaf\xce\xa9\x3b\x23\x56\xcd\x83\xfe\xef\x8d\xbc\x67\x92\xf0\x1b\x4f\x12\x4c\xbe\x4b\x28\xdb\x46\x66\x9a\xe5\xf4\xe9\xe5\xe8\x79\x68\x7a\xd4\x92\x4f\x3f\xda\x1a\x23\xd9\x10\xf5\xbe\xfb\xe7\xed\xcd\x22\x40\x5a\xf6\x0f\x21\x65\x3b\xbe\xfd\x35\xcc\x20\xc7\xfe\x21\x22\xe5\x0b\x8c\xe7\x1a\x86\x76\x51\x9f\x61\x30\x17\xa7\x85\xb2\xa3\x5f\x95\x2e\x10\xf4\xf5\x22\x8f\xc1\x82\x39\x19\x3d\x49\xc0\xd7\x8b\xec\x04\x6b\x18\x31\xc8\xee\x25\x18\xec\x45\xc6\x83\x35\x9c\x76\x6d\xe6\xd9\xad\x67\xd4\x53\x34\x74\x70\xfe\xaf\xe1\xb4\x6b\x33\x65\xea\xda\x38\x52\xca\xc7\xf1\xd0\x54\x74\xfa\xda\x9e\xca\xf8\xda\x9e\x5f\x68\xf3\x44\x69\x37\x35\xf2\xe4\x9e\x3a\x9c\xd3\x83\xe5\x2c\x04\xeb\x35\x19\xb7\xe1\x1b\x6d\x1a\xaf\x99\xd5\x4b\xfe\x2f\x18\xd6\x64\xf9\x2a\xe5\xf9\xd9\x60\xa3\x5f\xc3\x77\xda\x74\xe2\x72\xdd\xe8\x60\x83\xb2\xd2\x6d\x06\x65\x61\x34\x10\x4f\x72\xa9\x57\x9e\x69\xb3\xe6\x8e\x30\x08\x7b\x4b\xa3\x7c\xa7\x2d\x29\x74\xe9\x55\xaa\x2a\x58\x4b\x4e\x21\xa1\x4d\x4b\x3d\xf3\xa6\xb5\xa4\x3b\xaf\x0a\xf3\x72\xe7\x55\xad\x65\x36\xe3\xe9\x1b\x2e\x6b\x47\x69\xca\x4b\x45\x71\x57\xb2\xf1\x52\xaf\xbc\xa9\xa3\x83\x69\x3a\x73\xb0\x0d\x44\xdd\xb7\xd1\x46\x04\x42\x1d\xb0\x86\x2d\x61\x50\x13\xd4\xb5\x84\x41\x1d\x51\x91\xc5\x93\x9c\x60\x81\x35\x8d\xae\xe2\x6e\x35\x8d\xae\xc2\xd6\x23\x7c\xea\x80\x29\x6b\x4d\xa3\xab\xae\x7c\xd7\xd4\x7a\xca\xf4\xf9\x77\xe5\x3b\xf5\x21\x7b\x05\x88\x54\x2e\xf4\xc6\xa0\x56\xac\x04\x4a\x1b\x5e\x72\x08\x4c\x6f\x6b\x0c\xb6\x20\xa8\x25\x3a\xf5\xf4\xb6\xc6\xda\x9a\xa6\xa1\x48\x6b\xb5\x75\xdd\x57\x8f\xa8\xdb\xf5\x9d\x42\x75\xbb\x4e\x73\xcd\x43\x91\x1e\x35\x0f\x05\xe7\xd5\x34\x0f\x05\x9a\xac\x38\x92\x4b\x94\x6d\xa1\x4d\x4b\xb6\x9a\x69\xd6\x17\xd4\x74\x01\x4a\x67\xae\x74\x62\x45\x9e\xb1\x6c\x8a\x15\x79\x02\x53\x58\x02\x9b\x4e\x90\x13\x6b\x1a\x41\xc5\x79\x28\xb0\xe9\xbc\xd3\x4d\x46\x50\x71\x74\x4e\x73\xb9\xb4\x48\x26\xf4\x9a\xf9\xd0\x93\xcb\x1f\x2a\xd7\xf7\xcc\x3d\x50\xa9\xbe\x27\xcc\x89\x6b\x89\xbd\x25\x66\xd6\x25\xb0\x15\x00\x90\xb5\x4c\x10\xcf\x55\x43\x90\xd5\x09\x44\x62\x2d\x83\xad\xda\xbf\x09\xc2\x97\xc9\x93\x0f\x70\x47\x4b\x10\xd6\xb0\xf7\x2d\x41\x58\x2b\xf0\xc7\xb5\x0c\x5e\x01\xd3\xb3\x96\xd9\x66\x73\xd3\x5c\x0e\x9e\xef\x91\x8c\xae\x61\x2a\x2e\x07\xcf\xdf\xf9\x92\x9b\x25\xed\xf2\xed\x96\xfb\xc9\xf2\xed\x36\xe6\xcb\x65\x30\x16\xdb\xb7\xe9\x95\x0f\xd0\x40\x6b\xf9\xea\xdb\x23\x59\xaf\x18\x29\x48\x94\x13\x8c\x96\xc0\xaa\x25\xb7\x38\x61\x55\x6b\xd6\xbe\xd0\xa9\x15\xf8\xe2\x12\x3a\x35\x04\xc7\x6b\x19\x6a\xc5\x4c\x15\x6d\x72\x82\xf1\xd7\x72\x36\x03\xf6\xda\x65\x3b\x4c\xcf\x33\xf1\xc7\xc3\x03\xb5\x04\x56\xad\x90\x24\xae\x95\xd3\x38\x75\xfb\x18\x7f\x16\x11\xe3\x3e\x25\x29\x63\x34\xf4\xa0\x4b\x70\xd5\x0a\xb9\xe5\x5a\xce\xb6\x5b\x38\x27\x96\xa1\x24\x35\x92\x34\x82\x91\xa9\x25\xc3\x0b\xd4\x93\xcb\x19\xd0\x0f\xbc\xd4\x6b\xd9\xf0\x02\x22\x6f\x89\xf6\xb8\xc2\x5e\xba\x4c\x7b\x7c\x8c\xf7\xa7\x36\x64\x5c\xa9\x91\x62\xe9\x51\xd8\xb6\x5d\x23\x80\x07\xd7\x36\xcc\x04\xf5\x6d\x1b\x64\x05\x36\x61\x09\x98\x5a\xa1\xaa\x5c\x1b\x33\xcc\x2b\xda\xca\x71\x46\xb4\x19\x26\xc5\x0a\x40\x00\xc6\x74\x09\x9b\x5a\x61\xc0\x5c\xc2\xa6\xd6\xfb\xfd\x89\x73\xf9\xd4\x94\x23\xcf\x45\x89\xf4\xe7\x9f\x50\x2c\x56\x18\xd6\xb4\x28\x93\x2b\x54\xac\x6b\x9b\x72\x1e\x6c\xfe\x12\x5a\xb5\xc2\x55\xba\xb6\x19\x1f\xc0\x37\x2e\x13\x23\x1f\x00\x36\xd6\xf6\xb4\x8d\x6b\x65\xdb\x6d\x0e\x6e\x6a\x6d\xbb\x56\x6a\x7e\xfa\x91\x6e\x9f\x67\x5f\x37\x34\x0f\x7f\x16\xf3\xd7\x3f\x8b\x74\x2f\xb1\xc0\xcc\xb9\xed\xe0\xc6\xb8\x77\x76\xac\x3d\x7c\x6b\x00\x4a\x5c\x48\x9b\x2b\x05\x8d\xd3\xcc\xce\x39\xb6\x1d\x11\x40\x04\xe0\x12\x8e\xf5\x6c\x99\x0e\xdb\xf6\x9c\x1a\x49\x18\x9e\x16\x49\xf0\x98\x9a\x5f\xba\xba\xec\x7c\xdb\xc6\x1d\x80\xb4\x4b\xac\xc8\x15\x3e\xca\xb5\xc9\xdb\xc1\x1e\xb1\x9d\xa9\xa6\xe5\xa1\x2a\xcb\xd9\x22\xd0\x6b\x25\xd6\x62\x6d\x23\xa6\x4a\xa4\xa9\xd1\x4f\xcf\x2b\xa7\xc7\x4c\x57\x3b\x04\x38\x37\x58\x51\x1f\x57\x00\xdd\x4b\x20\xd8\x9a\xd3\xda\x54\xc7\x27\x0e\xfc\x25\x4c\x6c\x85\xc8\x73\x7d\x6c\xc9\x61\xc8\x3e\xe0\x3f\x7a\x5e\x35\x12\x86\x5d\xe9\x63\xb8\x14\xec\x6d\xeb\x43\x8c\x2f\x3a\xd1\xc7\x41\xbd\xf4\xa5\x49\x8c\xcf\xf1\x5f\x6c\x26\x42\xc6\x3e\xfb\x4d\x7e\xe3\x9b\x1d\xfa\x94\xb0\xb1\x2d\x17\xd3\x8f\x91\x55\xd0\xee\xad\x8f\xe2\x18\xb3\xad\x1b\x38\x7b\x42\x4f\xb8\x3e\x98\x8b\xd8\xe4\x3e\x86\x5d\x11\xf4\xb5\x3e\x93\x49\x44\x85\x27\x4d\xa7\x27\x08\x00\x66\xd7\x13\xb5\x72\xc2\x05\xd6\x87\xf8\x5f\xf6\x59\xc1\x6c\x5b\xee\x27\x1f\xc2\x7f\x47\xca\x95\x45\xae\xe6\xa7\xb6\xc8\x8d\xbc\x2b\x8b\x5c\xc6\x02\x58\xc9\x9d\xd6\x18\x16\x80\xc9\x42\x10\xdc\x96\xe3\xe3\x43\xb8\x2f\xfb\xee\x07\x1c\x09\x4b\xfa\x03\x8e\x84\x79\xf5\x01\x47\x92\x6e\x02\x47\xc2\xfc\xf8\x80\x23\x29\x79\x3a\x74\x47\x4a\x49\x86\x91\xb0\x45\x8a\x71\xb9\x45\x2f\xfb\x18\x45\xc2\x26\x6d\x40\xee\x1d\x47\x97\x01\xb9\x57\x8c\x54\x1f\xc7\x3f\xbe\xf3\xc3\xf1\x8f\x6f\x8f\x3a\xfe\xf1\x9d\x87\xc0\x4a\x32\xe8\x9b\xfa\x53\x94\xaf\x66\xf1\x29\x7c\x88\x00\x66\xa5\x7e\x08\xf9\xcd\xa7\xae\x3f\xeb\x4d\x88\xdc\x47\x4c\x2d\x6c\x7d\x4c\xa7\x3a\xe6\x31\x16\xc4\x0f\x11\xc1\x19\x9e\xcd\x78\xf8\xe9\x17\xd8\x09\xcd\x15\x44\xb7\x41\x81\xb6\xbe\xa0\x4e\xb8\x3c\x7d\x49\xe0\xc8\xc4\x14\xaf\xf2\x73\x5f\x6c\x88\xb6\x54\x4e\x24\x9a\x93\x92\x30\x38\xe5\xa9\x30\x34\xef\x97\x06\x9d\x8c\x94\x6b\xd0\xc9\xc8\xd3\x8f\xad\x51\x29\xe9\xeb\xfa\xbb\x8f\x0d\xe0\xbd\x00\xdc\xaf\x2f\x31\xc0\xf8\xf0\x0c\xe0\xbd\x00\xa8\xaf\xaf\x4d\xad\x20\xf7\x97\x11\xbc\x17\xf0\xfc\xf5\x25\xcb\xd3\x48\xc9\xbe\x3a\xb3\x02\xbe\x98\x5e\x59\xde\x5f\x27\x7d\xea\xf9\x54\xed\x49\x03\x14\x12\x19\xc3\x8c\x20\xbb\x2d\x46\x59\x23\x76\xaf\x68\xe5\x46\xec\xb6\x78\x3e\xbe\x06\xaf\x70\x22\x08\xb0\xfb\xbc\xcb\xa7\xce\x7c\x92\x83\xfd\x8b\x6d\x15\x95\xda\x88\xdd\x2b\xea\xa8\x10\xbb\x8d\x94\x3c\xcb\x88\xdd\x2b\x8a\xfa\xd7\x20\xab\xe8\x62\x86\xec\x36\x40\x87\xcb\x90\xdd\x2b\xba\xb3\x20\xbb\x8d\x04\x13\xeb\x6b\x53\xeb\x91\x57\xdd\x1a\x6e\x1c\x42\xe8\x36\xf2\x64\x2c\x01\x74\x5b\x4f\xd3\x64\xb4\xe8\x19\x72\x45\xfb\xf6\x74\x91\x11\x25\x47\x7a\xd3\x11\x8c\x47\xba\x0c\xf3\x14\xed\x8c\x79\x8a\x76\x62\x9e\x62\x41\xfe\x64\x9e\x0a\xca\xc8\x88\xdb\x06\x6b\xd2\x12\xe2\xf6\x79\xf7\x40\x2c\x72\x9a\x5f\xff\x41\x49\x37\x20\xb7\x64\x29\x1b\x90\x5b\x32\xbb\x0d\xc8\x2d\x59\xd9\x46\xe0\x86\x38\x75\x89\x65\xba\xc1\x60\xbb\x0c\xc0\x0d\xaf\xe9\x32\x00\x37\x39\x97\x96\x98\xa5\xcf\x10\xc7\x2e\x23\x70\x27\xb9\x94\xd6\x0f\x85\x9f\x23\x59\x80\xdc\x16\x33\xa9\xf0\xb8\x2d\xe6\x55\xe1\x6f\x5b\x0c\xaa\x02\xd8\xb6\xd8\x65\x8d\xaf\xad\x44\x3c\x2e\xe1\x6b\x5b\x2e\xfe\x3f\xc7\xe8\xc6\x8a\xf6\x73\x8c\x6e\x74\x39\x31\x41\x9f\x09\x63\x5b\x3f\xd2\x19\xb1\xd7\x1b\x16\xd8\xc1\x50\x6d\xe3\x86\x30\x56\xef\xc3\x31\x58\xae\xfb\x16\x4e\x28\x6a\xf3\x16\x4e\x68\xc2\x09\xbf\x0d\x13\x3a\xd8\xd9\xf7\x81\xb6\xeb\x4e\xd8\x87\x93\xce\xf1\x50\xd0\x9f\x40\x2d\xb6\xa1\x3f\x17\x9e\xce\x7d\x02\x93\xa3\x06\xa7\x47\x0d\x7b\xdd\x3e\xed\xf0\xf1\xbe\xb2\x4f\x07\x19\x8e\x14\x3b\x64\xfd\x69\x48\x8a\xbc\xf2\x4e\xb0\x05\x21\x9a\xb8\x1c\xb7\xd9\x36\xf1\x0c\xee\xd3\x61\x0a\x35\x6f\xa2\xb6\xa7\x3a\x3f\x3d\xcc\xab\xd6\x01\x06\xa2\xb9\x0c\x2e\x6a\x63\xbb\x7a\x39\xa8\xb9\x58\x3e\xe6\xa0\xe2\xde\xa8\x26\x3f\x99\x4e\xba\x42\x0f\x38\xe8\xd0\xbb\xd4\x16\x84\xe8\x9a\xef\x2f\x6c\xc6\xe0\x17\xcb\x56\x14\x1a\x8c\xe9\x80\x3f\xd8\x06\x7a\x45\xd2\xfd\xfc\xa2\x15\xb6\x81\xe6\x7f\xbe\x56\xf5\x3c\x93\x26\xda\xf2\x9d\x3b\x83\x8e\x42\x2f\xcd\x77\xb4\x1e\x11\x18\xf4\xe0\x5d\x1b\x3c\x47\x1a\x0c\x0c\x7a\xf0\x17\xc3\xa0\x1b\x6d\xe4\x58\xcd\x4f\xb1\x78\xa6\x77\x30\x8b\x67\x94\x95\x55\x89\xc5\xb7\x8d\x0c\x82\xfe\x72\x8b\x9c\xf2\x6a\x47\x7e\xa2\xc0\xd2\x4c\x1d\xa1\x31\x8a\x77\xb6\x7d\xd9\x1c\xe5\x0d\x72\x5f\xf6\x6c\xb7\x3c\x7b\x3a\xb2\xfa\xde\xb1\xcd\x45\xc9\x05\x6b\x5f\xa6\x6d\xbd\x23\x09\x7c\xc1\x62\xb9\x7c\xef\xef\x91\x74\xef\x67\xa6\x5e\x5c\x92\x0a\xa2\xf9\x61\xb0\x01\x6d\x21\x7a\x2a\x90\xbb\x6d\xee\xc9\x13\xd6\xf1\x7d\xa1\x10\x8e\x3c\xf5\xb1\x7c\xe7\xa9\xd1\xb6\xef\xb7\x76\x72\x32\x46\x64\x83\x87\x25\x6c\x5f\xd9\x36\x1a\xa2\x63\xb8\xd3\x27\x3e\xd8\xde\x77\x95\x5e\xe6\x2d\xc8\x78\x95\x34\x47\x74\xf2\x47\x7e\xaa\xbc\xdb\x90\x23\xec\xcb\xe9\x36\x18\x2e\x65\x80\x1f\xd0\x95\xee\xcb\x94\xf1\x69\x99\x12\x6c\xcc\xf1\x6f\x7c\xca\xbe\x9c\xd9\x98\xc9\x75\xd9\x5e\x9a\x1e\x31\x04\x68\xa4\x6a\x1f\x49\xf4\xac\x75\xc1\x92\x01\x13\xff\x76\xf5\x56\xb8\xc5\x30\x39\x32\xd7\x05\x08\x2a\x28\xf4\xfb\x52\x6a\xd9\x5a\x68\x93\x6d\xa9\x85\xce\x10\xe3\xf6\x3b\x5c\xb6\xac\x56\xda\x24\x26\x55\x28\xa0\xb7\xa0\x43\x85\xdc\xe1\x1b\xe8\x50\xba\xd4\xd0\xa1\x46\x93\x6c\x66\x65\x9f\xb9\x6c\x66\x2d\xf9\x4e\xa1\x8c\x25\x35\x93\x61\xb3\xe5\x4d\xb5\xc8\xe7\xd6\x16\x8e\xa8\x54\x66\x59\xb1\x95\x95\x5d\xb7\x98\x71\x95\x75\x5e\xe4\x78\xe4\x4a\xb2\xc5\x31\x59\x50\xe2\x77\xb1\x59\xac\xa7\x14\x4d\x72\xab\x8c\xdb\x98\x22\xae\x86\xdb\x4c\x91\x37\x59\x80\x36\xd4\x90\x68\xb5\x1b\xba\x47\x6b\x8c\xdb\x74\x8f\x03\x10\xf6\x2e\x66\xc2\xe3\x6a\xb0\xcd\xfe\x58\xb9\x1c\x6e\xd8\x1f\xd1\x80\x77\xe1\xf2\x4f\x27\x9b\x0c\xf2\x00\xf5\xb4\x0b\xd3\xfa\xa4\xc2\xba\xfd\xdf\xef\xa7\xde\xc1\x6b\xea\xe4\x1d\x3c\xaf\xb2\x2c\xa9\xa2\xe3\xab\x2a\x5d\x64\x22\xbc\x16\x49\x86\x96\x9a\x37\x6d\x68\x61\x46\x14\x47\x57\xd5\x48\x36\x64\x70\x4c\x14\x7b\x95\x46\xc6\xc8\xba\x5a\xf6\x09\x11\x4c\x56\x42\xdc\xb7\xa1\x47\x37\xd0\xbb\x6d\xac\xd1\xc9\x25\x68\x17\x6e\xfb\x17\xdd\xe0\x3d\x96\x2b\xc6\x36\x89\xe4\xbb\xc5\x99\x44\xf2\xe4\x8e\xb4\x0d\x3e\xc2\xed\xb7\x0d\x3e\x3a\xdf\x2e\x73\xa2\xaf\xc2\xc6\x50\x8c\xe5\x48\x0f\x12\x5a\x32\x53\x90\xee\xd7\x2d\x92\xae\x95\xa9\xbe\x5c\x4c\xef\xf8\x1b\xe7\x91\x11\xe6\x16\x63\xc3\xdf\x36\xb8\xe8\xc2\x62\xb8\x2b\xe7\xbe\x4d\x8d\x1b\xc2\x48\xdc\x0e\xdb\x84\x91\x17\x36\xd5\x2d\xb4\x51\xc3\x7e\xbf\xc5\x09\xd9\xb8\xff\xec\x0a\x1c\xde\x06\x9c\x2d\x74\x51\xe3\xbe\xb0\x8d\x2e\xea\x44\x07\x6e\xa3\x8b\xee\x0c\x85\x18\x21\x1b\x69\xe8\xb6\x18\x20\x1b\x89\xe7\xb6\x09\x20\xcb\x91\x57\x9d\x15\x24\x5d\x6f\x06\xc8\x8a\x2f\x7c\x8b\x01\xb2\xf5\xf7\x5d\x03\xd1\xf3\xd3\x89\xe6\x99\x77\xcd\x12\x8f\x6a\x62\x96\xc7\xe4\x39\xd8\x4a\x3d\xdf\x80\xe7\x6c\xb3\x3c\xbe\xbb\xa9\x59\x1e\x43\x88\xb0\x4d\x45\x87\x33\x68\x0b\x8c\x71\x4d\xb6\xe1\xc6\xc6\x7b\x22\x29\x1e\x74\xe4\xd9\xc7\x13\x25\xa2\xac\x7b\xec\x8a\x30\xcd\xa5\xaf\x1b\x87\x7e\x8a\xf5\xed\x79\xfe\x3b\xa6\x73\x37\xa7\xe8\x62\x7b\x15\x30\xe3\x02\xf1\xbf\x9b\x73\xc8\x32\x37\x05\xcb\xe8\xd0\xe9\x6c\xa1\x32\x2e\x72\x83\x6f\xd1\xd3\xf5\x3b\x6d\xd4\x86\x5a\x18\x30\x93\xd3\x55\x1c\xb2\xbb\xa1\x9f\xde\x48\x3e\xfe\xfd\xe1\xed\xe3\x9f\xdf\xdf\xde\x27\x6b\x9e\x19\x7c\xce\xd6\x2f\xee\xb9\x91\x75\x23\x84\x46\xa9\x8c\xdd\x6d\x28\x26\xb3\x52\xa0\x8b\x52\x6b\xbe\xf3\x46\x79\x23\x7d\x25\x79\x0a\x88\x1e\x6e\x62\xad\xdc\x42\x60\x4c\xec\xbb\xfb\x16\x15\x7b\xf4\xcf\xdb\x31\xa9\x6c\x07\x37\x76\xfd\x96\x57\x05\x03\x1c\x79\xd5\xe6\x67\x36\xa1\xdb\x71\xa6\xf8\xc4\xb7\x80\x14\x15\x06\x8e\x6d\x0a\xb7\x63\xa4\xc9\x86\x55\xe0\x21\xda\xb7\x39\x3f\x39\xdf\x8c\x9b\x38\x71\xcf\x6d\xa7\xe4\x7e\x15\x30\x38\xdb\x70\x33\x6e\x38\xdb\xd8\x33\x0d\xa3\xa8\x99\x59\xce\xc9\x7d\x01\x2b\xdd\xce\xc9\x7d\x01\x0b\xd9\x37\x2c\x56\x33\x55\xfc\xfa\x29\x1d\x6f\x2b\xce\xc8\x90\x39\x6e\x82\xec\xb1\xdb\x39\xb9\x0b\x4e\xf2\x0d\xc9\xdb\x8c\xe4\xd9\x45\x25\x94\x00\xee\x9e\xd4\x90\xb9\xc6\x3f\x9d\x3b\xeb\xfd\x4e\xb3\xeb\xcc\x2f\xa4\x73\x30\x2b\x85\xbf\x18\xf0\xf5\x6f\x01\x2e\xae\x89\x02\x24\xbc\xc5\x20\x5d\xf8\x36\x61\x5b\x8f\x46\x26\xbc\xc5\x80\x6c\x78\x8b\xaf\x6d\x14\x5b\x97\xb7\xe9\xda\xde\x29\x2b\x7e\xb6\x81\x57\x78\x77\x3b\x49\xd9\x5a\xc5\xce\x36\x40\xa4\xef\x6e\x97\x69\x4f\xa1\x52\x25\x6a\x7e\x28\x55\xa2\xa5\x36\xf2\x91\xda\x1b\xb5\x45\xcd\x56\x60\x06\xdb\xdd\x3e\x52\x54\xa5\xce\x1c\x8d\xa4\x25\x82\xc2\xde\xcd\x40\xc1\xd6\xdd\x0d\x12\x7a\x5b\x68\x90\x50\xcf\xab\x02\x56\x73\x2b\xe9\x06\x09\xa1\x67\x74\x83\x84\xee\x48\x5a\x4c\x9d\x8a\x4e\x2f\xa6\xfc\x5e\x4d\xe2\x24\xe9\x26\xa4\xb8\xf3\x3f\x69\x47\x35\x7f\x10\x06\x98\xbd\x16\x04\x09\xd3\xbc\x1b\x11\xcc\xd6\x0a\x82\x24\x65\x2e\xb9\x09\xd3\x4d\xa2\xa7\xc8\x5d\xa6\xdb\xf1\x8a\x4a\x29\xcc\xc8\xbc\x33\x10\xf6\xbb\x32\x0f\x85\x18\x99\x77\xba\x69\x49\x73\x62\xf1\x0a\x3e\x32\x73\xd0\x0b\x3d\x32\xa3\x6a\x88\xa3\x6d\x46\x7f\x10\x45\x5b\xc1\x36\xbb\x85\x24\x99\xb9\x73\x0a\x48\x32\xa3\xbf\x88\x9f\x6d\x46\xd5\x51\x62\xee\x82\x5d\x79\x77\x7b\x68\x59\x8a\x82\x86\x94\x31\xfe\x6d\x29\xd9\xdd\x9c\xe7\x69\x3c\x57\x79\x36\xc0\x0e\x62\x38\x33\x6f\xa3\xf1\xb9\xe6\x86\x8d\x1c\x38\x29\xb7\xf9\xd7\xee\x1c\xf9\x03\xba\x80\x96\xa7\xa6\x0b\x60\x61\x9a\x8e\xed\xc0\x69\xb8\x4d\xc7\x76\xe0\x38\xdd\x03\x32\x01\xe6\xdc\x30\xd5\x79\xd4\x05\x13\xb2\x1d\xd9\x77\x86\x79\xa0\xff\xf7\x5f\x37\x81\x0d\x4d\x38\x94\xb3\x65\xf1\x08\x88\x52\xef\x14\x6c\x48\x71\xbe\xc4\x99\x95\x1a\xdb\x23\x3b\x52\x63\xbc\x59\xef\xa7\xc6\x9b\xbd\xdf\x5a\x45\x6c\x79\x6a\x5f\x5c\xaa\x88\xb3\x2b\x95\xc0\xd9\x95\xf6\xa0\xef\xa6\x5b\xd1\x77\xd3\xad\xec\xf4\x4c\xa5\xc1\x4e\x9f\x9e\x72\x5c\xd1\x5b\x47\xe9\xbb\xe9\x54\x9f\x02\xf9\x69\x4e\x01\xfa\xc5\xfa\x6e\x7e\xa2\xc8\xeb\x3b\x15\x02\x5a\xc7\xcc\x1e\x40\xeb\x58\x3c\x03\x6d\x98\xd5\x63\x3a\xb6\xfb\x1d\x2b\x91\x69\xdc\xa9\x9e\x3d\x5f\x39\xd2\x04\x76\xa9\xf0\x44\xed\x24\x05\xaf\xf9\xab\xed\x46\xac\xb5\x81\xfa\xcb\x49\x39\xec\xec\x4a\x43\xa3\xee\xd2\x36\xd4\xdd\x7c\x29\xe0\x75\xda\xed\xc0\xea\x5c\x03\x0d\x86\x39\x01\x72\x6c\x81\x61\x6a\xb6\x48\x93\xaf\xbd\x3b\xbd\xe9\xd5\x4e\x70\x34\x7b\xe0\xd2\xe2\x94\x37\xbf\xda\x19\x8b\xcc\x34\x94\x39\x17\x37\xd1\xad\xd5\xec\x9a\x4a\x07\x5e\xa3\x82\x98\x6c\xed\x8c\xd1\x61\x1a\x86\x47\x30\xd6\x9e\x38\xbc\x38\xa6\xa6\x03\xa0\x5b\xfe\x22\xaf\x0f\x53\x74\xda\xfb\x75\xe7\x43\x6b\xe7\xf9\xce\x4e\x9f\x99\x57\xed\xdf\x9a\xa9\x90\xbd\x3e\x9c\x62\xce\x2c\x7e\xbf\x7f\x81\xd1\x96\x73\x73\xe2\xc3\x42\x11\x9b\xc4\x43\xb3\xb5\x0a\x27\xd3\xde\x6e\xb0\x19\x1e\xc7\xfd\x9e\x31\x60\xe4\x5d\xb9\x49\xd0\x2e\x9c\x75\xfc\x02\x8e\xb0\x27\xd1\xd0\x1c\x18\x93\x68\xe8\x3b\x7f\xb5\x9b\xa4\xa7\x4e\xbe\x60\xa4\xd3\x64\x89\xcf\xa8\xce\xc5\x75\x83\xb6\x1b\xf4\x0c\xee\x60\x4f\xa2\xa1\x99\x20\xc2\xdd\xb4\xe8\x34\x22\x7e\x6b\x19\xf2\x89\x0f\x8b\x73\xca\x09\xc9\x33\xeb\x26\x2e\x2c\x4e\x62\xd3\xc0\xf5\x2b\x1d\x01\x0d\x5c\x4f\x49\xcb\x1a\x4e\x7e\x23\x2f\xc3\xc8\x43\xd4\x9f\x94\xf4\x67\x91\xff\xe8\xe6\xd7\xc1\x8d\x6c\x51\xbf\xb5\x36\xfe\xcd\x44\xbe\xa7\x55\x23\xc0\x91\x5b\x30\x9e\x86\x77\x65\x4f\xc7\x49\xbf\xfd\x2b\xbc\x3f\xde\x94\x3d\x7d\x47\x8c\xf2\x39\xcd\xef\x19\xe3\x91\x90\x3c\x0d\x3f\xd3\x76\x3a\xf3\x0b\x78\xe6\x16\x94\xa7\xb5\xb7\xb6\x32\x39\x43\xc1\xbb\x97\xd1\xd2\x80\x33\xb6\xb0\x3c\x8d\x7c\xd4\x5b\x58\x9e\x46\xc6\xeb\xbd\x60\xec\x64\x09\x09\xbe\xd3\xc8\xb8\xbd\x97\x8d\xc1\xd9\x9c\x85\xdf\x69\xb8\xa0\xf6\xb2\xf7\x2a\xfb\xeb\xd2\x9a\x21\x8d\xf8\x16\x1f\x5d\xcb\xa5\x50\x68\x9e\x06\x83\xc9\x5e\xb6\xee\x1f\x23\xa5\xea\x8a\x38\xf2\x4b\x03\xd3\xf3\xae\xef\x88\x31\x6c\x0b\xcd\xd3\xb2\x29\x1a\xcd\x53\x62\xe7\x16\x9a\xa7\x65\x03\x35\x9a\xa7\xe0\x76\xdc\x2b\x57\x44\x2a\x3f\xf1\x46\xa4\x5c\x87\x1f\xa3\x03\x38\x09\x7a\x21\xff\xeb\x16\x2c\xa7\x65\x5f\x71\x36\xf3\xd2\xf2\xae\x63\xa2\x5b\xfe\xe3\x98\xe8\x96\xff\x38\x26\x1a\x4f\xdc\x5e\x8e\x89\x8e\x22\xb0\x1c\x13\x1d\x13\xbf\xc1\x39\x25\x13\x49\xe0\x9c\x36\x53\x45\xab\xf6\x33\x05\x7d\x74\x85\x4b\x95\xe4\xfe\xcb\x56\xe7\xbc\xe5\xbd\xe4\x2f\xb6\xc2\xb1\x0a\x04\xc6\x79\xde\xe5\x53\xe7\xd0\xcf\x75\x58\xf8\x9b\x8a\x27\x63\x2f\x43\xa2\xc1\x97\x6e\x03\x6e\xce\xd8\xc2\x84\xa9\x69\xf9\xe9\xb6\xb5\x01\x10\xf2\xde\x58\x1b\xb0\x6a\x09\x0a\xf3\x34\xad\x21\x6a\x9d\x72\x6b\xd9\xce\x8a\xdc\x53\xac\x52\x72\x33\x21\xb7\xc3\x8d\x99\x64\x5b\xb3\xe3\xd5\xf5\xb7\x01\xaf\x98\x08\xb6\xf9\x0a\x53\xa8\x02\x3c\x5b\xde\x14\xce\x1a\xb7\xdb\x76\x62\xf1\x76\x52\xa8\x34\xe8\xc2\x1d\xd7\x94\x6e\xe5\x7d\x66\x50\x09\x9b\x84\x93\x87\x4f\xb6\x68\xb3\xb8\x91\xc6\x74\x9b\xc5\xad\x9c\x79\xf6\x93\x94\xaa\x09\xe2\x4a\x3f\x1a\xf2\xf2\xbf\x7f\x38\xa2\xe9\x7d\x57\xe6\x5d\x70\xb4\x1b\x1e\x37\x26\x01\xcc\x6d\x18\x7b\xe1\x6a\x1b\x29\x55\x2a\x3c\x5b\x80\x00\x2f\xe7\xff\xaa\xa3\x9c\x89\x60\x6c\xb7\x10\x2f\x03\x34\xee\x16\xc2\x65\xc4\xd8\xbb\x31\x79\xa5\x55\xa2\x1a\x8c\x5d\x78\xdb\x4c\xcb\xca\xdd\x8e\xf0\x1c\x29\xc6\x17\x91\x7c\x27\x33\x6d\xcb\x33\x5f\x44\xa8\x9b\xcd\xb4\x19\x6f\x9b\x69\xd1\xe9\xb6\xcd\xb4\x2d\xa5\x08\x3c\x99\xf6\x1a\xa1\xc8\xd1\x2b\xb0\xcb\x8c\x9a\x63\x02\xb8\x5c\xb0\x3f\xc6\x2b\xde\xff\x61\xf7\xfe\xd8\x6a\x3b\x52\xa8\xbc\x3a\x2c\xf5\x8f\x1d\x15\xe8\x01\x1f\x3b\x2a\x46\x7e\x21\xed\x7f\xe6\x4d\xdd\x44\xd8\xe5\x3f\x68\xc7\x9c\x59\x1f\x87\xd8\xe5\x7c\x13\x76\xa5\x12\x51\xbb\x3f\xb6\xe8\xa6\x54\xa5\x36\x21\x66\x77\x7f\x30\x55\x50\x37\x14\x5a\x0e\x63\x33\xc0\xd5\xa8\x42\x30\xc0\x8d\xf7\x27\x52\x02\x5f\x49\xf6\xdb\x9e\x62\xa5\xce\xbe\xe5\x48\x9d\xed\xa9\x8e\xd4\xd9\xd4\x1c\x75\xf6\x15\xad\xb2\xb2\x2f\x42\xff\x16\xd7\x8d\xe9\xdf\x6e\x06\xf9\x63\xfb\x2d\x5a\x87\xd9\xdf\xee\xf7\x43\xed\x32\xcc\x3f\xc8\xdf\xe2\xf3\xf9\x64\x33\xcb\x53\xab\x87\x25\x3f\x11\x97\x51\xde\x35\xdd\xd5\xdb\x97\x76\x89\xc5\x74\xff\x31\x3a\x2b\xed\x34\x33\x50\x0c\x4d\x1f\xcc\xb5\x35\x4f\x51\x60\x53\xb0\x6d\x30\x68\xcd\xe2\x82\xab\xb9\xc7\x7f\x6c\xbd\x8d\x0f\xc2\x54\x70\xb9\x8f\x1b\x77\x32\x63\x95\xfb\x38\x63\xc3\x9d\x57\xe5\xa6\x65\x9a\x18\x66\x72\x42\x1f\xb9\xcd\x04\xd7\x72\x1a\x08\x67\xd2\x72\x1d\xfb\x42\xee\xc3\xee\xf6\x35\xb6\x8b\x79\x2a\xd0\x49\xcb\xe5\xc0\x38\x92\x6c\xf0\xc6\x91\xb4\x4c\x22\x70\x24\x31\x54\x7e\xcd\x2b\x5f\x22\x29\xc2\x8d\x39\x0d\x6c\x04\xd0\xf1\x06\x36\x42\x9c\xc7\x06\x36\x02\xca\x7a\x0b\x36\xd2\x00\x82\x6c\x50\x23\x19\x52\x73\xbb\x5d\x99\x28\x5f\x98\x4c\xd2\x0d\x56\x50\x33\xaf\xbf\x10\x9b\x70\x9b\x31\xb9\xdb\x4d\x0a\xb3\xfd\x85\xd8\x64\xe4\x5b\xd4\x85\xd4\x42\x06\xe6\x34\xce\x3c\x27\xb1\x96\x8b\xdc\xad\xe5\xe6\x63\xe0\x48\xb9\x5e\xd1\x61\x6d\x6c\xbb\x5f\x9f\xea\x80\x76\xb7\x49\xd7\x3a\x04\x2a\xdb\x2c\x5f\xc9\x6e\xbd\x7f\xd4\xf8\x40\xf2\x0e\xd6\x91\x64\x78\xc0\xb8\x6b\xa4\x40\x23\xe1\xd0\xfe\x19\xe1\x4b\xa7\x99\x6c\xab\x66\x0a\xfe\x0c\x7d\xec\xf9\x52\x69\x2a\xc6\xfb\xa5\x26\x64\xea\x23\xc2\xed\xf6\xfe\xe4\x19\x45\x48\x20\xf6\xcf\xf0\x13\x3a\xc8\xcc\x5a\xf1\xa0\x8b\x58\xeb\x6a\x9c\x11\x3f\xeb\x09\x33\x6f\xfa\x00\x67\x92\x9b\x57\xeb\x22\xf6\x60\x8b\x57\x0b\x0a\x9f\x6d\x56\xad\x41\xd6\xdd\x6d\x56\xad\x1e\x97\xa8\x59\xb5\xfa\xf9\x16\x34\xad\x9b\xe6\x37\xcb\x62\x6a\xf4\xb3\x98\x92\xff\xe4\x99\xfe\x77\x50\xcf\x36\x71\xd6\x7b\x8c\x9b\x38\x2b\x9e\x31\x73\x61\xc5\x54\xfd\x07\x46\xab\x22\x99\x07\xbd\x20\x4d\xfd\xf1\x46\xf2\x55\x15\x67\x91\xa8\xaf\x6e\x32\x7d\x6d\x53\x5f\x0d\x92\x9e\x6d\x25\x93\xbe\x49\x85\xb5\x21\xc2\xea\xf9\x90\xec\x38\x54\xce\xcc\x14\xb9\x7a\x88\x25\xeb\x84\x45\x63\x8b\x25\xeb\x26\x4f\xd3\x16\x4b\xd6\x4d\x72\xae\x6d\x92\xac\x0c\xad\x72\x49\xdf\x24\x78\xda\x7f\x86\x3c\xd0\xaf\x22\xcc\xba\xc9\x7e\xb6\xff\x48\xf5\x96\x62\x9e\x69\xd8\xcf\x54\x4e\x0c\xc9\x67\x9a\xac\xf8\x1b\xa8\x60\xb6\x48\xac\x3a\xb9\x14\xb7\x38\xac\x2e\x62\xa1\xb6\x28\xac\x2e\x62\x51\xb7\x18\xac\x2e\x18\x7b\xb6\x18\xab\x2e\xc0\x4a\x5b\x84\x55\x17\xb1\xa7\xfb\xcf\xcc\x27\x3d\x75\x91\x82\xc7\xe2\x17\x3f\x55\xcf\x62\x57\x36\xe7\x0b\x4e\xa3\x2d\x06\xaa\x8b\xbc\xa8\x5b\x04\x54\xbd\x67\x80\x65\x74\xce\xed\xe3\x0f\x07\x47\x24\xc1\x56\xae\x94\xe2\x63\x93\x1b\xc5\x9f\xf1\x0d\xb8\xff\xc4\x54\xd5\x7b\xe6\x89\x58\x51\xe2\xbc\x52\xca\xe6\x8b\xa4\x9d\x5b\xb4\x55\x1d\xc8\xd7\x16\x6d\x55\x37\x44\x6d\x0e\xb1\x56\x5d\x4e\x44\xf7\x48\x5e\x64\x37\xd2\xa5\x37\x0b\x92\x22\xaf\x64\xcc\x7f\xa4\xaa\x67\x79\xb3\xe9\x59\xca\x54\x1c\x96\x66\xf7\x23\x0d\x67\x73\xcd\xab\xf2\xcb\xa8\x67\x1e\x49\x6a\xe9\xfb\xa1\xa2\x9b\x74\x6f\x78\xa4\x67\x3b\x3a\x0e\x24\x05\xed\x1c\xa9\xb6\x82\x76\x4a\x2a\xa3\xed\xbe\x39\x12\xe8\x11\xeb\xf3\xea\x99\x87\x4d\x1f\x36\xa4\x5b\xcf\xf2\x66\xd7\xb3\x48\x42\x19\x4c\xea\x6d\xe8\xcd\xa4\x67\x64\x82\x3e\x4e\xaa\x6d\x6d\xfa\xa2\x67\x64\x82\x3e\xd2\x4f\x8a\xf6\x39\xd2\x33\xd3\x8d\xa0\x2e\xcb\x8d\xe0\x0f\xcb\x8d\xa0\x66\x02\xf0\x1c\x07\xff\x53\xec\xcf\x71\xf0\x3f\xd1\xa3\x94\x8b\x7a\x2e\x59\xf1\x67\x9e\xc9\x8a\xdf\xe8\x26\xab\xcb\x93\xba\x98\xf3\xe4\xe6\x3b\x6d\x9a\xf5\xa6\x2e\xdb\xee\x86\x14\x6a\xe5\x79\xe6\xa1\x1c\x5d\x8d\xca\x18\xe3\x70\xa7\x50\x45\x4d\x5a\x0b\x7e\x44\x69\xcf\x37\xb5\x71\xd8\x4e\x7a\x4d\x09\x62\xad\xbd\x3d\xd2\x53\xd3\x99\xd6\x5b\x43\xbe\x2d\x09\x06\x56\x26\x83\x7d\x1a\xac\x30\xf3\x4c\xa6\xec\x3b\xcf\x6e\x29\x2d\xcc\x20\xc1\xbe\xca\xa4\x83\x05\xf4\x9a\xbe\x13\x3e\x92\xf5\xde\x86\xa4\xf8\xa2\xf9\x4f\x45\xfb\x79\xd5\x07\x79\xad\x88\x5f\xfd\x23\xe5\xb8\x19\x79\xf6\x27\xc9\x7d\x23\x10\x58\x99\x0c\x9b\x40\x60\x65\x32\x15\x9c\x65\xd9\xd6\xd7\x47\x92\x2e\x3f\x23\xc9\xe3\xc0\xcc\x17\x3e\xac\x4c\xa6\xa5\xf0\x61\x67\x73\x60\xc4\x23\x2a\x48\x86\x81\x3a\xed\x04\x4c\x13\xa5\x49\x5f\xf4\xfe\x69\x2a\xe5\x99\xaa\x09\x91\xf4\xfe\x42\xa1\x3d\xf9\xbd\x90\x0f\x17\x33\xea\x74\xfa\x71\xab\x05\x8f\xa8\x3b\x40\x06\x03\x3d\x80\xd6\x4b\xf7\x68\xa6\x12\x7b\x44\x9b\xb5\x3b\x15\x30\xb1\xec\x48\xb1\xd6\xab\xf3\xcc\x56\xec\x41\x23\xa5\x58\xb7\xce\xa2\x35\xd6\xcc\xd4\x4d\x8f\x24\xb5\xff\x7d\xd5\xa8\x8d\x4e\x4b\x08\xb5\xed\xd4\xcf\x8c\x16\x9d\x86\x6d\x6e\x01\x11\x65\x75\xed\xd4\xd6\x66\xe1\x4e\xff\xa0\x55\x57\xba\x52\x21\x11\x26\xb2\x7a\x24\xeb\x30\x79\x86\x52\x9d\x52\x15\x12\xf1\xd6\xc7\x21\x11\x35\xf5\x51\x48\xc4\x5b\x3b\x61\x22\x32\xe9\x6d\x4e\x7e\x27\x2f\x1a\xb7\x4b\xbd\xcc\xb5\xd9\x4f\x24\xd9\x24\x4b\x45\xb2\x4a\x3d\x90\x9a\x8b\xc9\xab\x34\x24\x4f\xbb\xbe\x2c\x48\x82\xd5\x97\x86\x64\xf8\xef\xfb\x93\xa7\x02\x99\x77\x42\xa9\xb5\x2c\x65\xe7\x4f\x2e\x2c\x5e\x81\xd4\xee\x93\x8e\x14\x46\xed\x6a\x4c\x50\x81\xd0\xee\xb3\xa7\x94\x2d\x89\xdf\x3f\xd3\xee\x2e\xcc\x08\xc1\xca\xee\x42\xc7\x09\x55\x76\x17\x7a\x5c\x6c\x51\x77\x61\xb6\x38\x83\x71\x39\xf2\xa6\x14\x60\x36\x63\x61\xcc\x60\x21\x7d\x24\xa9\x48\x67\xa4\xae\x67\x17\x92\x12\xc5\x64\x3f\xbc\xc8\x0c\x93\x5f\xfc\xfc\x90\x36\x39\xf3\x46\xe1\x8f\xce\xbc\x51\xf9\xd0\x99\x37\x52\xd3\x2d\x25\xa8\xd0\xfa\x6d\x25\x88\x42\x9f\x09\x77\x3b\x39\xeb\x23\xc9\xc0\x9a\xd6\x6b\xc2\x99\x82\xec\x91\x74\x4c\xa6\xa6\xdb\x41\xc0\x19\x8a\x67\xda\xf4\x33\x4d\xd4\x79\x7e\xbe\x1f\xfe\x49\x72\xa1\xc5\x6c\x13\xcc\x77\xc1\xbc\xae\x83\xc9\x27\x98\xd7\xd3\xc2\x0b\xb1\xe9\xc3\x82\xa4\xb0\xee\xd1\x90\x86\xa4\x7c\x28\x9d\x88\xd1\x16\xcb\x54\x77\x56\xb1\x47\x12\x50\x90\x95\x21\x94\xd7\x70\xee\xc4\x47\xf2\x1f\x22\x59\xef\x99\x48\xcf\xff\x9c\x60\xf5\x91\x86\x24\xca\x9c\x52\x6d\xfe\x1d\x1f\xff\xbc\x2a\xbd\xe7\x4c\xa1\xd6\x7b\x52\xa8\x34\x9d\x93\x6a\x4b\x91\xec\x4c\x0c\xa1\xbb\x2e\x27\xc0\x7f\x24\x19\xe0\x2e\x4a\x91\x22\xd9\x4f\x3a\x46\x80\xc6\x7e\xe5\x3b\xa9\x72\x27\xcd\x95\xfb\xf7\x78\xdf\x14\x62\xa0\xe4\xd9\xd2\x99\x9d\x3f\x48\x47\x78\xeb\x22\x8c\x00\x0b\x46\xb8\xae\x51\x52\xeb\x6d\x15\x97\xba\x6c\x9f\xfc\x91\x74\x2c\xdf\xfc\x41\xa9\xd9\xa3\xbd\x98\x07\xea\xb4\xb2\xf8\x88\x5b\x0f\x99\x16\xa6\x26\x9b\xf9\x85\x2b\x93\x62\xa4\x40\xb0\x27\x89\x04\x6a\x44\x09\x12\x4c\x6b\x46\xb5\x11\x05\xd4\x8c\x32\x53\x0d\x94\x65\xbd\x08\xb2\x35\xa3\xf6\x54\xc3\x66\x66\xa4\xa6\x67\x0d\x49\xa6\xb8\x99\xef\xba\x9e\x45\x12\x26\x80\x3d\x47\x60\x2e\x38\x2d\x1f\x49\x76\xab\x9e\x9a\x59\xb5\x48\x5d\xe4\x41\x67\x27\x11\x76\x6b\xde\xec\x39\xd5\x50\x06\xf6\xb8\x6a\xb8\x0d\x73\x59\xc8\xad\x32\x99\x93\x82\x6a\xcd\x9b\xc5\x23\x92\xa8\x79\x33\xb3\x95\x9c\xb7\x4c\xa6\x8f\x60\x5b\xb5\x1c\x29\x73\x4a\xca\x33\xbb\x9f\x7b\x0a\x75\xa4\x2a\xab\x80\x54\xbd\xd7\x5b\x01\xcc\x6f\xd4\x5c\xc7\x72\x49\x0f\x43\x7f\x92\x26\x93\xfd\x20\x35\x82\x0d\x85\x95\x6f\x2a\xaa\xe3\x4a\xed\x6d\xff\xba\xd2\x09\xa4\x3f\x60\x0b\x21\x59\xef\x18\x79\xd9\x87\x5d\x24\x83\x8a\x47\x3e\xe5\xa4\xa6\x52\xb6\xdd\xce\x54\xc2\x07\x75\x24\x7b\x6c\x47\x2a\xec\x93\x3a\x35\x74\x18\x2e\xfb\x96\x98\xa8\xea\x9d\x57\x9d\x0a\x61\xa4\x20\xdc\xb9\x68\xf4\x95\x73\x9b\x1e\xb5\xc7\x36\x3a\x57\x55\xa4\xd5\x95\x99\x00\xce\x30\x6d\x31\x49\xef\xcd\xce\xe2\xac\xbd\xd7\xcd\xd4\x6f\x64\x88\xa3\x93\x4c\x2f\x75\x0d\x8a\x6a\xdc\xb6\x47\xbe\xed\xb6\xc2\x54\x44\x25\xed\x7a\x25\x39\x0d\xce\x7c\xe9\x0d\x73\x22\xf9\x12\x39\x90\xe4\x0e\x29\x79\x53\x3b\x56\x71\x0f\x35\x25\x35\xea\x57\x24\xe3\x27\x8e\x88\xda\xa4\xca\x81\x54\xb4\xd9\xf0\x0b\xa1\x6e\x4a\xcd\xb3\x5b\xcf\xa8\xb7\x2f\x39\xe9\x01\xfb\x0c\x38\x91\xcc\x38\x75\x9f\x33\xa2\xf6\x2c\x0e\xbd\x86\x39\x6b\xe6\x1f\x3f\xbb\x6a\xf2\xee\x9f\x16\x2e\x0f\x05\xb5\x79\xee\x47\xff\xdc\xb2\xc5\x38\x35\x73\x09\x12\xe1\xd4\xcc\x85\x4c\x7c\x53\xa5\xa2\xd8\x08\xd2\x38\x73\x03\x14\xdd\x54\xa9\x77\x7e\xe8\x5b\x08\x9b\x43\x7b\xe6\xec\xcc\xa1\x24\xee\xa9\x32\xd9\x97\x45\x3d\x55\x66\xc6\x46\x04\x08\x13\xe5\xc1\x10\xc6\xdb\x39\xeb\x1e\xd1\x8b\x88\x39\x6a\x02\xa9\x23\x93\x49\x40\xc5\x5a\x8e\x48\x4d\x12\x3f\xf1\x69\x7e\xb0\xdf\x0b\xb7\x58\x0b\x5b\x9e\x70\x8b\xb5\x1c\x29\xd5\x70\x95\x91\x87\xde\x2f\x46\x0a\x32\x2a\x95\x91\xbd\x89\x06\x67\xbb\x14\x63\x54\xbd\xd1\xd4\x6f\x83\x66\x06\x2a\xfe\xed\x08\xef\x31\x90\xa4\x6f\x8f\x94\x63\x9b\xfb\x3c\x10\x65\x73\x7f\xa5\x8f\x87\x36\x5f\xda\x79\x46\xa7\x38\xd9\xed\x7d\x1d\x11\x8d\x7a\xe0\x7a\x20\xc4\x62\x9d\x6c\x2c\xce\x6e\x7b\x1a\xa8\xf6\x88\xbe\xac\xb1\x65\x91\xa2\x36\x57\x40\x52\xd4\xe6\x2a\x65\x08\xe3\x99\xfb\x12\x39\x6a\xdf\x4f\x55\xa7\x6c\xc0\x22\x8a\x6a\xd9\x45\x49\x51\x9b\xeb\x23\x29\x6a\x33\xc6\xa4\xa8\xcd\x2e\x4f\x8a\xda\x5c\xe7\x04\x77\x6c\xd9\x27\x6f\xfc\xfb\xe9\x09\x3c\xfa\xe9\xc4\xec\x8c\xd4\x1f\x80\xe3\x1d\xd1\xe8\x85\x0c\x0e\x3e\xfc\x33\x45\xd9\x60\x4d\xe3\x88\x43\xcd\x00\x6c\xf6\x25\x4a\x12\xf3\x73\x63\x8f\xbd\x1d\x79\xc7\xfc\x25\x49\xed\x48\xbf\x68\xde\xf5\x6c\x86\xb0\x48\x8d\x74\x0c\x91\x78\xa9\xbf\xdc\xf4\x7d\xe4\x21\x4a\x66\x44\x47\xb2\x8d\xfc\x07\xc7\x72\xfe\xf3\xb3\xe8\x97\xa1\x91\x62\x8b\x11\xac\xb1\x4d\x14\x4b\xa7\xa1\x2d\xb5\xe7\xa1\x9d\xd0\xec\x86\x3d\x5a\xe8\x40\x6c\x8a\x8c\x3a\x90\xac\xbd\x17\x24\x61\x0e\x58\x27\x4a\x3a\x5b\xe6\x99\x0a\xc8\x4f\xff\xbe\xa9\xba\xbf\xcf\x64\xa7\x7b\xcb\x94\x41\x86\xae\x15\xcc\xb1\x54\x6e\x27\x24\xa0\x65\xc3\xeb\x18\x37\xa9\xb7\xf9\xae\xe8\x3a\xc1\x1c\x41\x2d\x3c\x92\xd4\x40\xec\x56\x4e\x46\x8b\x75\xf3\x11\x65\xd2\x43\x0f\x14\xcc\x91\xdc\xb3\x8f\xa4\x88\x25\xb6\x5f\xc1\x1c\x7b\xbf\xf2\x43\x9f\x0c\x91\x7c\x32\xa4\xcc\x3f\x59\xf5\xb1\x78\x09\xbd\xd8\x3b\xa6\x23\xf3\x5f\x1d\xa8\xa8\xdd\xc6\x22\x2e\xa7\xdd\xbc\x67\xe5\x8e\x68\xfb\x17\x8d\x5a\x3a\x1a\x38\x6f\x04\x66\x1c\xa5\xfd\x87\x3d\x5c\x48\xc7\x72\x60\x00\x13\x9a\x71\x38\xff\xe6\x23\x49\xbb\x7c\x6b\x2a\xe7\x72\x43\x92\xff\xd6\x39\xf4\x1f\x49\x67\x18\x56\x96\x6e\x55\xb7\xe6\x4d\x99\xed\x58\x3c\xa6\xc1\x1a\x03\xcd\x57\x34\x58\xa3\xa0\x1d\x88\x05\x6b\x94\x9a\x67\xd2\xc2\xb9\x7e\x9b\x13\xab\xc5\xfa\x28\x38\xe3\x7c\xeb\x4d\x0a\xc3\x91\x5f\xea\x44\xa3\xe2\xc3\xaa\x2f\x9d\x3a\xac\xfa\x9e\x79\xa6\x43\x8b\xbd\x7e\x58\xf5\x45\xa7\x10\x90\x71\x1e\x57\x24\xa9\xbe\x25\xdf\xdd\x7a\x56\x91\x14\x2c\x84\x5e\x30\xb0\x93\xb6\x14\x2a\xdd\xb7\xe7\xd5\xa5\x5f\x14\xa4\x8f\xa4\x89\x24\x04\x2c\xab\xcd\xf0\xc6\x5a\x7b\xfe\xa8\x36\xd1\x8d\xc3\xcc\x47\xe8\x93\xc3\xa8\x5e\xd6\xa5\xd0\x8d\x33\x73\xc1\xe0\xc6\xd7\xc4\x29\xf8\xe2\x3c\x4a\x24\xe9\xec\x25\xaf\x0e\x33\x42\xd3\x53\x53\xb7\x92\x12\xc9\x15\xa7\x72\x22\x7f\x3b\xae\xd4\x46\x17\x0f\x36\x18\xa7\x8b\x85\x42\xe9\x11\xa5\x09\xb0\x2d\x0f\x6b\x02\x5c\x83\x04\x38\x9c\xb9\x4c\x29\x39\xec\xcc\xfa\x16\xd3\xd6\x3c\x58\x52\xc6\x22\xbe\x36\x56\xd0\x87\x25\xbd\x6a\xaa\xad\xab\xe7\x97\xd2\xc5\x63\x9b\x1e\x46\xe5\xb2\x43\x0f\xe3\x70\x39\xa4\x05\x3e\x9c\x1d\x3d\x5d\xc9\x5e\x67\xe7\xb8\x11\x14\x71\x66\x17\x31\x0f\xd7\x4c\x05\xcc\xfa\x7b\xd6\x7c\xa8\x2b\x06\x0a\xd6\xd8\xbe\x62\xe4\xd5\x21\x89\x66\x89\x38\x69\xa6\x03\x4c\x9c\xc4\x3e\xee\x1c\xb0\xf7\x68\xa9\xa9\xac\x95\x19\x72\x1b\x5d\x33\x8d\x15\x2f\x36\x19\x1c\x01\x16\xcb\x64\x1e\x19\xaf\x58\x33\xe5\x26\xfb\xf4\xcc\xbb\xb2\x49\x32\x74\xd3\x68\x03\x8c\x90\x42\x24\xce\xd8\x35\xa6\xf7\x69\x46\x60\x3a\xd8\x76\xe6\xd9\xd6\xb3\x7c\xf7\x51\x2f\xe6\xff\xaa\x37\x8b\x4a\x78\xc4\xd9\x8f\x48\xba\xd1\x71\x20\x0a\x8d\x38\xfb\x11\x49\x56\x56\x16\xd5\xb4\x95\x95\x25\x2d\xa0\xe2\xec\xe8\x05\xc2\x29\xce\x38\x34\x04\x53\x3c\xdb\xac\x11\x6f\x0d\x22\xcd\xe5\xba\x47\x23\x26\xd3\x28\xa2\x14\x4a\xe6\xbf\xc9\xbe\xe6\x15\x49\x90\x00\xe3\xbe\x1e\x51\x93\x68\xa4\x02\x8a\xa3\x6c\x0c\xdc\x34\x3e\x9d\xbd\xc9\x54\x60\x9d\x5b\xa4\x31\x89\x35\xab\x43\x98\xc4\x19\xaf\x8d\x30\x89\xe5\x3f\x04\xbe\x3f\xaf\x0a\x25\x82\xc6\x32\x1d\xfb\x3b\x52\xa8\xb0\xec\x33\xcf\xb6\x1b\x19\x51\x10\xf5\x99\x3f\xea\xba\x8d\xa2\x39\x4d\xfa\x7f\xa7\xcd\xcb\xa3\x43\x23\xb7\x47\x87\x67\x5e\x1b\xe8\x74\x13\x9a\x6b\x0e\x55\x83\x0a\x5b\x0c\x72\x13\x35\x99\x0a\xa0\x26\xcf\xbc\x6b\x35\x39\x33\x49\x48\x86\x68\x0a\x82\x18\xd6\x72\xe6\x4b\x2f\xe4\x0c\xbb\x41\xeb\x25\x83\x69\xd0\x7a\x2e\xef\x02\x20\xd6\x58\x01\x97\x81\x0d\xb9\x11\x2e\x63\xd6\xa3\xc7\xc3\x26\x36\xf2\xae\x8c\xdf\xad\xe6\xa1\xee\x03\x4c\x20\xe3\x11\x8f\xdc\x08\x97\x11\xeb\xa9\xa1\x01\x89\xc7\xff\xfe\xaa\xa0\xc0\xec\x6f\xcb\xba\x7a\x0c\x9c\x10\x8c\xc5\x53\x63\x4c\xe2\x91\xa6\x2f\x00\x3c\x33\xb5\x70\x63\x99\x29\x66\x1c\x1b\x67\x7e\x24\x8a\xb1\xc2\xde\x60\x4e\xb1\x68\x4d\x46\x21\x1e\xf1\x17\x18\x85\x78\xe4\xb6\x23\x52\xb1\xfa\x36\xc7\xf8\xf5\x98\x3c\x4c\x31\xf6\xd6\xd7\xf0\xf5\xff\x95\xcb\xc0\xd1\x74\xec\x21\x33\x9f\x7a\xe4\xa8\xbd\xcd\x21\x85\x2d\x69\x61\xf1\x60\x9f\x59\xb6\x78\xbc\x5d\xbc\x18\x1c\x0a\xb6\xc5\x23\xc6\x93\x15\x8b\x07\x6d\x35\x48\x3d\xaa\xbb\xc1\x8e\x47\x1c\x20\x06\x3b\x1e\x6f\x35\x96\xdb\x93\x87\xb4\x27\x25\xd1\x1e\x9a\x07\x13\xd9\xcc\x53\xb5\xe7\x88\x64\x10\x60\x06\xd6\x39\xee\x62\xea\x33\x13\x59\xf6\x23\xe5\xcd\xad\x59\x45\xe6\x25\x3b\xe6\xfb\x6a\xb3\xc8\x4f\xbd\x8e\x62\xaa\x5f\x76\x56\xa4\x46\x76\x1b\x47\x93\x30\x4f\x59\x2b\x35\x75\xf0\xcd\x2f\x3f\x15\xda\x6a\xe6\x99\xd6\x75\x2e\x7e\xcb\x84\xf0\x85\xe3\x22\xc4\x64\xd4\x50\xe9\x73\x6b\x76\x0f\x63\x2a\x8f\xdc\xcf\x44\x45\x56\x73\x40\xc0\x44\x96\xbd\xdd\x4c\x64\xd9\x21\xcc\x44\x76\xe4\xb6\x6e\xf8\xe5\x91\xf3\xcb\xf0\xcb\x23\xb7\x77\xe3\x2f\xcf\x6c\x8b\xa6\x26\x3b\x72\xf1\xdb\x5e\x0b\xd9\xb6\x0d\xc1\x3c\x72\x65\x80\xaa\x2c\x7e\x92\x3d\x69\x0e\x45\x39\xd8\x23\x67\x93\x99\xcb\xb2\x1b\xc3\x5c\x36\x51\x87\x04\xca\x3c\x6b\x9c\x2a\xdb\x4b\x25\x67\x35\x4c\x66\xb9\xc7\xc2\x64\x96\x5b\x6e\x98\xcc\xe8\x72\xc1\x34\xcf\xbb\xcc\xbc\xec\x16\x1c\xff\xc1\xf6\x6d\x2a\xb3\x23\x67\xbb\xa9\xcc\x8e\xdc\x04\x4d\x65\x76\xe4\x74\x37\x95\xd9\x11\x45\x44\xf9\x78\x9f\xa1\xa5\x2f\x1c\xde\x9c\x4a\xf8\xce\x10\x5f\xff\xf6\x5a\x89\x62\xb2\xbd\x56\x72\xe0\x99\xda\xec\xc8\x65\x7b\x7b\xb1\xe4\x76\xbd\x0d\x9f\x4b\x1f\x73\xc4\x94\x14\x2c\xcc\xee\x3b\x4b\x96\x53\x8b\xf4\xd4\x82\x9d\x2c\xed\xa1\x79\xb4\x47\xc6\xc4\x68\x60\xdb\x89\x55\xe7\x2b\x5e\xde\x4f\x29\x49\xab\xa5\x15\x4c\xd5\x1b\xc0\x1c\xf7\x43\xd3\x9d\x4d\x34\xbb\x8d\x6f\xaf\xe7\x37\xb6\xaa\xa3\x32\x87\xef\x2c\xed\xb1\x73\x6f\xe4\xa1\x71\xac\x25\x0f\x8d\x06\x4c\xeb\x08\x16\xe1\xec\xff\x10\x2c\x32\x23\x3a\x58\x04\x55\xf4\x63\xde\xfb\x8a\x1a\xf3\x09\x42\x79\x22\xca\x1c\x3a\x22\xd9\xdf\x77\xe7\x5d\x9d\xa9\xf1\x8f\x43\x8f\x96\x23\xf6\xe3\x7c\x79\x95\xe5\x0f\x3f\x5a\x9d\x79\xd9\xb1\xc0\x33\x2f\xdb\x0e\xd4\x53\x47\x37\xa8\xe7\x5b\x37\x08\x58\x80\x38\xd0\x6a\x50\x09\x90\x9e\xc5\x5a\x07\xe9\x59\xee\x3a\x21\x3d\x4b\x0b\x84\x1d\x8d\x47\x00\xce\xb3\xca\x64\x14\x94\xb4\xc5\x3a\x26\x24\x69\x9d\xef\x33\x79\x5e\x53\x5d\xdb\x8f\x62\x8e\xf9\x40\xfc\xd7\xf3\xae\x6b\xdf\xf2\x4f\x6a\x4f\x7d\xe5\x01\x9f\x23\x92\x62\x8b\xd2\x49\xce\x42\x89\x42\x6f\x60\xe9\x19\xfb\xc5\x07\x12\xc0\xd4\x6f\xb1\x4f\xe7\x65\x01\xe3\x98\x02\x1f\xa2\x65\x5b\x3e\x55\xcb\xd2\x27\xce\xf8\x50\xd1\xcd\xcc\x78\x76\xd6\x91\xa7\x02\x6e\xbe\x92\xc1\xee\x99\x1e\x8b\x96\x46\x14\xef\xde\x4c\x41\x42\xa1\xa6\x58\xa3\x50\x63\x3d\x32\xe1\x59\x6b\x9c\x0d\xa0\x50\x33\x45\x41\xa1\xa6\x53\x40\xa1\x32\xdb\x3f\x66\x10\x4c\x15\x88\xa2\xba\x53\x2e\x8d\xa1\x1b\x9c\x01\x22\xc6\x5a\x83\x49\xef\x98\x2f\x0c\x26\xed\xb9\x40\x9b\xb4\xac\x1d\x1c\x33\x5f\xc2\x62\x4b\xbe\x15\xac\xac\x1e\x11\xad\xc4\x8f\xbc\xec\xb9\x83\xb3\xc7\x24\x66\x67\x36\x66\x93\x98\xb5\x58\x2e\xbf\x5e\x0b\xd9\xf1\xbf\x8e\x9d\x62\x57\xf8\x3a\x76\x6a\xe4\xd9\xc7\xaf\xe6\x37\x72\xe3\xf7\xd4\xc1\x6e\xfc\x9a\x77\x6d\x8c\xc4\x72\x63\x2c\xea\x39\x39\x2b\x0c\x3e\x7d\x14\xe0\x7f\xee\xef\x46\xa6\x9e\x93\xdd\xd2\x7c\x66\x67\x0e\x37\xf3\x99\x9d\xb9\x85\x18\xb7\x7a\x66\xbb\xff\x62\x69\xad\xf9\xab\xdb\x46\xf5\x4d\x06\x38\x52\x10\x6d\xa3\xe1\x5e\x27\xb3\xa4\x20\x5f\x59\xb0\xa7\x7c\x31\xad\x66\xe8\x30\xad\x62\x40\x33\x50\xb5\xc7\x25\x69\xa0\xea\x99\x2b\xbd\x81\xaa\x67\xce\x11\x11\x9e\xb5\xb8\xaf\xc4\x77\xf6\x28\xaa\x29\xc9\xad\xab\x79\x3a\xac\xc3\xd0\xa7\x36\xbc\x46\x11\x37\xe1\xd9\x99\xdb\xb1\x73\x14\xd7\x2c\x49\x33\x9e\xc5\xda\x6e\xc6\xb3\x33\x0b\xd4\x68\xd9\x3b\x8a\xac\x29\xcf\xa2\x24\x3a\x25\xf1\x39\xd9\xd0\xbf\xc0\x4c\xd9\xa7\x44\x88\x76\x12\xf4\xf4\x88\x6a\x0e\xe7\xc6\xd7\x68\x92\x1c\x92\xce\x49\x7c\xc6\x5e\x6a\xbe\xb4\xda\x52\x27\xaf\x96\x5c\xcb\xbf\x9c\x39\x77\xfe\x63\xb3\x78\x49\xa5\x3c\x5c\x67\x7e\x2b\x12\xee\x32\xf3\x54\x76\x71\x56\xf0\xcf\xee\xae\x68\xa3\xa6\x53\x7b\x75\xbf\x9f\x51\xdb\x1c\x6d\x66\x53\x3b\xa3\x86\x99\x30\xed\x75\x14\x99\x30\xad\x1f\xd4\xd8\x84\x69\xad\x61\xd6\x73\x06\xe3\x76\xf4\x88\xc3\xbf\xcd\xcb\x0e\x7c\x9b\xa9\xc5\x33\x17\x2b\x93\xe2\x47\xe6\x95\xb7\x4e\x5f\x7f\x3a\x11\x7f\x16\xf3\xb2\x97\x16\x7a\xa4\xe9\xd4\x5a\x1c\xb6\x3f\x83\xc0\x73\x0d\x71\xba\xe3\x2b\x7a\xba\xf2\x1b\xb7\x1c\xa1\x3f\xa3\xbe\x73\x4d\x32\xdb\x5a\xad\xf9\x52\x90\x99\x9a\x57\x05\x99\xa9\xf9\xe7\xf4\x87\xf9\xa7\x1b\x43\xd3\x08\x58\x9c\x79\xa8\x6d\xba\xdf\xf9\x89\x03\x16\x67\x4a\xa2\x6d\x74\x9a\xd3\xb7\xe6\x36\x03\xfc\x3a\x76\xc4\x1f\x0b\x0d\x35\x58\x89\x91\x5b\xad\x91\x8a\x1b\xce\x6f\xcd\x04\x92\x0b\xa2\xb1\xda\xd7\x9d\x0e\x37\xed\x66\xd4\xaa\x1f\x1e\x0e\xd4\xd1\x9f\x3d\x1c\xb9\xbb\x39\x8b\xf2\x75\x5f\x79\xba\xfc\x2d\xfd\x64\xe2\xcd\x9a\x2a\xa2\xfe\xd0\x17\xf2\x77\xd4\x9a\x82\x3c\x72\x29\x57\xeb\x2c\x00\x2a\x27\x4d\xbe\x72\xaf\x73\xd2\xe4\x2b\x77\x4d\x27\x4d\xae\xec\x64\x80\xbb\x73\x53\xfb\x41\x1e\x36\xf3\x2e\xad\xc9\x53\x6d\x1b\x2d\xa3\xac\x85\xd5\x4b\xda\x6a\xff\x47\x4b\x4f\x6c\x5b\x6e\x58\xfc\x4e\x7d\xdc\x72\x76\xfc\xe1\x39\xa6\x75\x7f\x84\x90\x71\x76\x28\x9f\x71\xbb\x99\xa6\x86\x70\x5f\x77\xf9\x27\x31\xca\xf3\x2e\xfb\xde\x8d\xd8\x5d\x6e\x4a\x52\x82\x07\xfa\xdb\x10\xef\xeb\x2e\x11\xb7\x97\x73\x45\xfc\xf8\xd3\x54\xf8\xab\x4f\x53\xee\xcf\x9f\xe6\xa1\xdd\xe2\x6c\x4f\x06\x79\x5f\x37\xb7\x4b\xa7\x42\x6e\xac\xd7\x3f\x82\x29\x58\x39\xce\x85\x7c\xdf\x47\x44\xda\x4a\x47\x78\x5d\xdd\x6c\x99\x02\x7a\xb7\xfb\x48\xb9\x5d\x52\xbe\x74\xdb\xa8\xd1\x64\xa6\xe5\xa7\x6e\x2a\x17\x2e\xe7\x45\x6e\x8e\xd1\x7a\x44\xb7\xe6\x4c\x49\xca\x6f\xc4\xb0\xfe\x39\x79\x66\x90\x85\x82\x8c\xb7\xc6\xa2\x13\x64\xbc\xdd\xec\x4c\xe4\x3d\xbe\x39\xaa\xff\x9c\xde\x88\xdd\x92\x3c\xc7\x77\x49\x39\x1e\x19\xf6\x08\xa1\xc6\xdb\x7d\xe6\x21\x7d\x4f\x6f\x2f\x7a\x9b\xda\xdb\xc9\x3c\x51\x3d\xff\x1c\xbe\x7b\xa0\x0d\x39\x79\xf1\xeb\x8b\x75\xf2\xe2\x31\x5e\xd1\xee\xbe\x57\x34\xe7\x61\x1a\x80\xbb\x8f\xe9\xff\xe7\xa8\xdc\xdc\x2d\x8d\x1f\xbf\xee\x2b\x2f\x3b\x78\x25\x5d\xb1\x49\x0b\x94\x92\x3f\x2e\x39\x75\x56\xa8\xeb\x99\x3a\x9a\x7f\x85\x73\x85\xd4\xc7\x5c\xb7\x26\xa9\x8f\x1d\x60\xf6\x88\x56\x2a\x7b\x9e\x8a\x0e\xc9\x0b\x76\x3a\xd5\x71\xe3\x6c\x98\x24\x37\xc6\x23\x3c\x8f\x41\x7b\x0a\xe2\xf0\x50\xe6\x65\x07\xe3\x78\x62\x4e\x72\x1d\x73\x9f\x9f\xe4\x3a\x06\x17\x3a\xc9\x75\xcc\xb5\x7b\x1e\x40\x1d\xad\x32\xcc\xc3\xeb\x01\xb7\xfa\x74\xee\xe3\x0b\x8c\xcb\x3c\xbc\x1e\x80\xc7\xcc\xc3\x07\x0b\x17\xfa\x79\x24\x2d\x4e\x44\x50\x23\x94\xec\x05\x61\xe2\xe5\x47\xf4\xf8\xa5\x09\xa4\x51\x9e\x11\x15\x2a\x83\xeb\x6c\x2a\x8d\x72\x03\xb1\x36\x93\x45\x79\xd0\x20\x5b\x0a\xf0\x03\x4f\xa7\x4d\x8e\xbf\x6c\x1e\x70\xcd\x0e\x4a\xd2\x19\x00\x8b\xcf\x23\x2a\x5e\xa7\x55\x4a\x5e\x0e\xac\x9d\x79\xda\x3d\x26\x11\x3d\x8b\x06\x63\x42\x22\xaf\x8c\x49\x50\x93\x79\x2a\x3f\x6c\x86\xde\xd9\x8f\x8f\xb7\x60\xea\x98\x4f\x7f\x72\x3f\xd3\xf6\x65\x6e\xd4\xcc\x04\xc2\x7d\xd2\x33\x4e\xec\x75\x66\x70\x15\xe3\xde\xbd\x0a\xa6\xb0\xeb\xad\x67\x78\xa4\x79\xf5\x54\xd7\x69\xbd\x4c\x37\xfc\x88\xdd\x22\x9d\x28\x6e\xb3\x9e\x59\x80\x7b\x3c\x23\x89\x7b\x3c\xaf\x3a\x54\x2a\x4d\xcb\xfa\x48\x15\x1c\xdc\xf5\x1f\xe0\xe4\xd3\x04\xa8\x71\x74\x4e\x52\x21\x1f\x34\xc6\xa9\x90\xcb\x79\x44\xb4\x0e\x7d\x46\x2c\x16\x0b\x62\x15\xea\xa8\x21\x39\x52\xdc\x97\xd8\x79\x42\x63\x6b\x7d\x63\x9e\x00\x96\xee\x94\xe4\xcc\xd4\xef\xb7\x5f\xdb\xde\xf3\xad\x79\x78\x99\x30\x27\xc1\xec\xb6\x04\xce\x13\xf6\xbe\x1a\xd1\x44\xac\x83\x1f\x69\x16\x97\x32\xf2\xd4\xd7\x2c\xef\xa3\xf3\x84\x9f\x8f\x81\x3d\x1d\x15\x57\x46\x44\x13\xe6\x32\x7a\x42\xa2\xb7\x6c\x2c\xa7\x61\xbf\x60\x82\xa7\xb0\xe7\x2d\xeb\x5d\xd8\xf3\xc6\x7e\x35\x93\xea\xb8\xf0\x53\x4f\x69\x1c\xaf\xf3\x74\x7c\x7a\xc9\x4f\x9c\x34\xba\x47\x94\x9a\x06\xbe\x65\x9e\x4e\x3f\xc7\x9d\x78\x3a\xc1\x71\x69\x35\x05\x3b\x53\x52\xa3\x53\xb7\xd3\x69\xd1\x11\x9e\xb4\xce\x01\xff\x88\xe2\xf7\xbd\xa9\xa1\xb3\xd1\xa1\x33\xcf\xd3\xd9\xe8\xcc\x39\xfd\x88\x0e\xc6\x4f\x53\x3d\x8b\xdb\xc8\xcb\x5d\xf1\xf5\x79\x38\xfc\x30\xbf\x99\x1e\x1c\x9a\xb3\xbd\x4f\xa4\xbf\xc5\xbe\x30\xdf\x72\x05\xf1\x66\x8a\x5f\x46\x6a\x70\xee\xcf\xcb\x48\x0d\xce\xf2\x69\x5c\x79\x07\x39\x39\x4d\x02\x3a\x9c\x1a\x70\x4e\x43\xb2\x21\x58\x9d\xb3\x38\xa6\xad\x1e\x11\x7d\x6b\x67\x23\x28\x50\xd7\xe5\xe5\x44\xe1\xb9\xc7\x6b\xb6\x09\xd7\xca\x40\xbb\xc1\xd9\x3f\x9d\x98\x0f\x0f\xd6\x6c\x0e\xd1\x03\xf8\x39\x05\x9e\x1a\xce\x59\xff\x48\x02\xbd\xfa\x38\x9f\x46\x52\x1d\x5c\x0b\x67\x33\xad\xfa\x5d\xf3\xe5\x9f\x0b\xf2\xa7\xc6\x59\xe1\xa8\x9b\x62\x81\xbb\x0e\x3a\xf8\x76\xe8\x53\xc9\x33\xc7\x3e\xb2\x01\x2a\x4f\xdf\x28\xc6\x01\x4e\x25\xe6\x1b\x85\x35\x26\x08\x56\xc1\xdf\x3f\x6f\x33\x73\x31\xa4\x66\x88\x3b\x7c\x23\x9c\x66\x88\x3b\x4a\xbe\x93\x67\x7c\xe4\x99\x20\x2b\xa9\x8c\x9c\x9f\x07\x53\xf9\xb6\x0f\x9f\xd1\x15\x16\xab\x60\x42\x9a\xc2\x62\x15\x0c\x8e\xf3\x76\x2e\x23\xa6\x9b\x81\x59\x0d\x7f\xd4\x54\xfa\xbe\x47\xe4\x8f\x4a\xd6\x8b\xe1\x61\x1a\xb5\xd5\xb8\x13\x4c\xa7\xf3\xcb\x79\x2e\x94\xd6\x04\x87\x33\x05\xcb\x9a\xfd\x7d\xf3\x4f\x12\xc5\x58\x2f\x6b\xec\x73\x42\x65\x55\x3c\x3d\xf3\x86\x67\xa0\x46\x94\x67\xea\xca\x97\xc2\xdd\xa5\x1b\x15\xbb\x0d\x32\x61\xde\x39\xca\x18\x1c\x8e\xb2\xd4\x6e\x59\xe3\x67\x56\x9a\x73\xee\xc0\x66\x32\xcd\x39\x77\x70\xef\x9e\x02\x6c\xd5\x7e\xfc\x87\x1d\xdd\x7c\x74\xc7\xdb\x43\x8e\x41\xc1\xc6\x33\x05\xdf\xaa\xf8\xa7\xa7\xd9\xe9\xe6\xc9\x6e\x63\xfc\xd6\xc9\x9d\x64\x1a\xbf\x75\xb6\x23\x25\x61\xf7\xa0\x1f\x1c\xaf\x9d\xa9\x86\x19\xed\x15\xbf\xfe\x34\xff\xc1\xde\x9c\x4f\xff\xfc\xd4\x75\xea\x04\x70\xfb\xb2\x36\x3b\xb7\x7d\xf6\x8c\x4e\x08\x09\x2b\x50\x30\xac\xc6\xcd\x79\x76\xac\x68\x35\xa2\xcc\x96\x33\xe5\x62\x68\xba\x11\x6d\x8a\x64\x38\xc0\x57\xb1\xe5\xf5\x5c\xd0\x27\xa2\x6e\xe4\xec\xa4\xdd\xac\x41\xac\xe4\xee\x0b\x39\x1b\xa9\x90\x51\xcd\xb9\x99\x1e\xe9\xe7\x93\x38\xff\xb0\x32\xca\x81\xd9\x17\xb9\xeb\xf8\x89\xd4\xff\xce\x3c\x17\x6e\xaa\x75\x74\x83\x4e\x1c\x09\x43\xd1\x1d\x48\x7d\xa6\xc7\x4c\x8f\x72\x1e\x79\x99\x8d\x87\x97\xc9\x1b\x44\x0d\xcd\xc2\x85\x41\x6a\x0e\xa8\x39\x5f\xf1\xf7\x7f\xff\xef\x76\x4c\xe9\x9c\xe2\xdd\xba\x33\x1d\x0c\x7b\x39\xe8\x5b\xd1\x6e\xdd\xc0\x25\xa7\x30\x30\xf7\xd9\xf3\x9d\x63\x6e\x6e\x24\x11\x61\x8f\xbc\x29\xa5\xec\xcc\x9b\x46\xc3\xf1\xf7\x67\x5a\xdf\x39\x60\x4d\xaa\x95\x85\x3e\x14\xe5\x92\x7d\x58\x18\x97\x3b\xa7\xfa\x40\x03\xe3\x3b\x73\x2c\xb2\xae\x06\xc1\x83\x0c\xac\x39\xb4\x6e\x8c\x45\x53\x60\x95\xbb\xa3\xd4\x0a\xac\x72\xf7\xb4\xd0\xa7\xd3\xcc\x87\x1f\x3d\x2b\x48\x0a\x4b\xae\x79\x26\x0a\x2a\x8e\x0c\x93\x6b\x71\x49\x9a\xc6\xaa\xdc\x80\xf3\xe6\x34\x69\x27\xf3\x75\x0e\x85\xe0\x30\xd3\x8d\x63\xc1\xe6\x35\xcd\xb4\x45\x1a\xfe\x47\x5c\xff\xf7\xff\xfa\xf9\x7e\xa8\xc0\x9a\x99\x0f\x15\x58\x93\xff\x2b\x45\xe1\xc1\xe6\x2d\xcc\x49\x3f\x67\x24\x21\x05\xf3\x0b\x23\x05\xf3\x07\xa2\xf7\x58\x68\xd3\x68\xc0\xd4\x4d\x1c\x2d\xad\xa6\x18\xc5\xb2\x5c\x79\x53\xf8\xbf\x9a\x42\x7f\x92\x6e\x24\x45\xb6\xf8\xae\x3c\xa7\x63\x59\xe8\x6e\x61\x43\xae\x68\xfa\x26\x9d\x1a\x40\x9c\xa6\x48\xa7\x0a\x46\xa5\x29\xc4\xc7\x28\x2d\xc5\x7c\x9e\x67\xec\x61\x02\x7c\x8c\xd2\xa8\x8c\x03\x56\xd0\x24\x9d\x19\x0e\xb4\xc2\x9c\xc6\xf4\xb5\x48\x3a\x82\xd2\xa3\xdb\xc8\x44\x4a\x11\x16\x0a\x68\xd8\x9c\x46\xf8\x5d\x34\x49\x70\xa7\x23\x4d\xd2\x2c\xa9\xed\x88\x28\x80\x61\xcb\xab\x02\xbc\xa5\x83\x9f\x6d\x6f\x1e\xe5\xdf\x06\xf5\xb9\x0c\xe9\xa3\x4b\x17\x73\x88\xad\xca\xd8\x8e\x83\xb1\x10\xb6\xa3\x44\x67\x5d\x0e\x52\x29\x79\x53\xe4\x94\x2c\xa8\xc5\xa9\x3e\x91\x5c\xb7\xfc\xc2\xe7\x78\xbe\x93\x45\x09\x14\xd1\x14\x16\x63\x12\x01\x35\x9d\xb4\xad\x36\xb6\x2d\x01\x2c\x26\x71\x4d\x73\x71\x1e\x53\xaa\xc3\x4d\x18\x44\xe1\x29\x2a\xa8\x9d\x09\x9c\xe2\xfd\x85\x5d\xa8\x9c\xa3\xc1\x4f\x70\x74\x82\x9f\xc0\xbc\x3d\x8d\x9f\xa8\x8d\x5d\x16\xfc\x04\x6e\x8c\x69\xfc\x44\x3f\xdf\x97\xa7\x4f\x17\x7e\x24\xfd\x1a\xbb\xff\x74\x36\xb6\x73\xb6\xfc\xd6\x1e\x05\x36\x7a\x53\x3e\x9d\x93\x9d\x53\x98\x88\x76\xa5\xa7\x4d\x50\x06\xd6\x65\x0a\x05\xd1\x6e\x34\x08\xa1\x1e\xda\x9d\xef\x7c\x0c\x51\x01\xe9\xc0\xf7\x5b\x8a\xd7\x15\x7d\xe2\xd8\x78\xa6\xab\x99\xa1\x2a\xe1\xe9\x73\x99\xae\x95\x42\x05\x71\x28\x51\x20\xb7\x99\x81\xf9\xc5\x36\xe8\xb3\xe6\x99\xa7\x4b\x9e\x79\xba\x0c\x24\x45\x2a\x70\x4c\x0b\xdf\x30\x0f\x96\xfc\x36\x02\xae\xe4\x99\x87\x2b\xdf\x09\x01\x57\x52\xa6\x74\x29\x7a\xc2\x78\x04\x80\x24\x33\x78\x84\xbc\x6a\x7f\x6a\xc3\x8a\x22\x3c\x42\x23\xf6\x6b\x2a\xcd\x5a\xbb\x52\x1b\xf3\xef\x01\x72\x9c\x06\x27\x5c\x99\x4c\xdb\x74\x7c\x2d\xc5\xda\xdc\xcb\xf4\x11\x54\x21\xde\xb3\x29\x46\xa9\x58\xe4\xa6\x71\x0b\x57\x26\x9e\xa0\x09\x0d\x47\xe7\xdc\x98\xb6\x51\xe0\x0c\x45\xb8\xee\xf4\x88\x6d\xd9\x2d\x0f\x65\x49\x45\x9f\x34\x12\xe1\xd5\x5a\x8d\x35\xb8\x33\x20\x06\x21\xa7\x0f\xbc\xb5\x95\x14\xfa\xe8\xcc\x2d\x5d\xb0\xbd\xf0\xa9\x8e\xc0\x9b\x07\xb3\x43\x58\x81\x12\xfd\x4b\x1c\x52\x67\x1d\x2d\x62\xd3\x18\x50\x37\xc5\xc1\xe3\x53\x9b\xdb\x70\xcd\x4a\xd5\x9e\xe9\x38\xfb\x95\x67\xc2\x40\xd6\x94\xb2\xf4\x2c\x95\xd1\x0c\xa8\x91\xbe\x7a\x96\x37\x8d\x4d\xe3\x87\x4e\x92\x06\xfe\x66\x7e\x80\xd8\xd8\x10\x3b\x0d\x0a\xb8\x4f\x0a\x32\x28\x00\xa0\xdd\x74\x0a\xb5\x23\xf3\xec\x03\xc6\x86\x1d\x4c\x28\x80\x0a\xf0\x72\x02\x02\xc8\x66\x2b\xaf\x7f\x23\x5a\x6f\x3a\xef\x19\x31\x7f\x53\x3e\xff\x46\xec\xce\xfc\x98\x15\xb2\xa1\x79\x29\xef\x59\x23\x58\x70\x82\x00\xc8\x86\x26\x04\x40\x3b\x52\x3d\xcd\xc9\xe3\xbf\xa8\xda\x64\x39\x9b\x4c\xb4\x0f\x8e\xcd\x96\x2a\xf8\xa0\x48\x3b\x1d\x33\xc2\x3a\x04\x01\x30\x5b\x7e\x2a\xdf\xd8\x4c\x85\xec\x91\x60\xde\x7d\x70\x6c\xa2\x7f\x0a\x01\x70\xde\x25\x2d\x35\x43\x64\x16\x2a\x79\xce\xb2\xe9\x7e\x4c\x11\xc9\x09\x48\x9a\xb3\x2c\x55\xd2\x9c\xdd\xec\x7e\xc2\x00\x34\x02\xd0\xe6\xc7\xa6\xb6\xbb\xe6\x5d\x1b\x6c\xd9\x55\x84\x01\x68\x37\xb7\xa9\x8f\xd3\x31\x71\x5e\xd8\x73\x5f\x5b\x6a\x84\x7d\x8c\x62\x35\x8b\xe7\x3b\x4e\x1b\x4d\x36\x4f\x7d\xd4\x64\x5a\x39\x6d\xf4\x99\xa1\x21\x21\x13\xd7\x7c\xfb\xea\xdf\x1b\x2d\xc4\x4f\xd1\xf4\x4c\xfc\x94\x69\x65\x57\xfd\x7b\xc3\x35\xf1\x53\x16\x88\x5d\xf3\xef\x35\xd6\xae\xf9\xf7\xe6\x2a\xd7\x7c\xcb\xd4\xb6\x67\xbe\xb4\x96\x87\xcb\x96\xc2\x3c\xdd\x26\xe8\x73\x85\xcd\xfd\xd4\x71\x39\x4c\xfb\xdb\x81\xa5\x4d\xfb\xd0\x47\x2c\xb9\xf2\xa1\x97\xdc\x64\xec\x42\xaf\x2d\x35\x34\x50\x2b\x7b\xa1\xb9\x9e\x8e\xb7\xfe\x9a\x4c\x0d\x07\xfb\xb4\x9b\x1c\xb4\xde\xb4\x97\xbc\x46\x5b\x93\x97\xbc\x82\x25\x9e\x26\x73\x22\x04\x71\x7e\x4d\x5a\x93\x0a\x89\x40\xf4\x78\xdf\x54\x2f\x70\x1f\x91\x97\xfb\x3a\xd0\x33\xbe\x8e\x27\xbe\xe9\x5b\xa1\x73\x0f\xe6\xcd\x17\xe2\xdc\x2b\xbf\x97\x4a\xc4\x01\xfb\xf5\xe6\xc7\xfc\xb3\x4f\x7b\x9c\x79\xd5\xf0\x5c\x66\x91\x3c\xdc\xb3\xa7\x03\x0c\x5d\xaf\x91\xdc\x75\xd4\xdb\x68\xdc\xac\x00\xfb\xa8\x0f\x80\x5d\xf3\x6b\x38\x6e\x49\x05\xc0\xd5\xe7\x53\x94\x92\xfc\xd3\x5b\x1e\xc3\x67\x97\xf5\x91\x3d\xcf\x2e\xeb\xa3\x70\x22\xff\xc0\xe3\x52\xb2\x7d\xd6\x47\x96\x9a\x7d\xd6\x47\x41\x4f\xfa\x19\x90\x4b\x9d\xec\xa3\xbe\x1b\xf7\xa7\x1f\x3b\x62\xcd\xbb\xd3\x03\x38\x10\x19\xfb\xfc\x67\x6b\x3c\x53\x92\xec\x04\x67\x9e\xd9\x14\x50\xf3\xf0\x4f\x0f\x29\x96\x83\xf9\x15\xbb\x45\xde\x95\xb9\xff\x48\x41\xde\xd9\xda\x2b\x1a\xd4\xc0\x19\x6a\xd7\x72\xcb\x3a\xfc\x01\xda\x40\x23\xff\xb1\xd3\xdd\x29\xd8\x1a\xd7\x9d\xa2\x98\x9d\x74\x93\x6c\xac\xf8\xd4\x67\x3c\xcb\x2d\x0f\xbd\xd3\x71\xaa\xfe\xcc\x85\x9b\xdf\xe0\x59\xce\x68\xb0\xd3\xb1\x19\xfc\x4c\x86\x7b\xff\x3b\x7e\x68\xc6\xcd\x9c\xb1\xc1\xaf\x9c\x39\x60\xfe\xd0\x77\x1c\xed\x5c\x7b\xa7\x84\x18\xc4\x6a\x9a\x6a\x57\xdb\x3b\x23\xd8\x16\x99\xed\x3f\x18\x22\x39\x2d\x7e\xd0\xdf\xb6\xbc\x5c\xcd\xd7\x46\xd3\x37\x3b\x35\xbf\xb5\x6f\xed\x46\x15\xc0\x97\xdc\xd9\x17\xcd\x0d\x76\xcd\x8c\xac\xd6\xc3\x0d\x0d\xc3\xb4\x6b\xf9\xc2\xdd\x3d\xed\x5a\x1e\xfd\xa6\x53\x1d\x77\xd4\xde\x6a\xfc\x79\x03\x76\x25\xed\x69\xae\xb1\x13\x8b\x2c\xac\x0d\x86\xd2\x7e\xe7\xf7\xce\x66\xbf\xf3\x60\x78\xe4\x4b\x6e\x99\xb4\x7f\xd9\x61\x2b\xe2\x70\x63\x1b\xe2\x94\x45\x39\x0f\x15\xa2\x3c\x52\xea\x47\x2a\x51\x41\xf2\xf2\x2d\xa9\x9e\x97\x2f\x13\xe4\x0f\x50\x2d\xbb\x84\x3d\xc9\x47\x76\x58\xfb\x8e\x6b\x36\x72\xf9\x8e\x5b\xac\x71\x76\x1d\x9f\x31\x9e\xff\x01\x77\xba\xf3\xae\x71\x0a\x6c\xbf\x7f\xe8\xad\x1c\x35\x7f\xe8\xad\x69\x2b\xa8\x0c\xce\x8f\x3f\xec\x45\xd4\x18\xc3\x23\x27\xbd\x1c\xc2\x4f\x77\x53\x92\x8d\x40\xd0\xae\xcc\xbf\x68\x9c\xb4\x47\xa7\x77\x07\x62\x32\x61\x00\xe3\xb2\x67\x37\x6f\x6d\xe8\x17\x76\xf3\x9e\x8d\x41\xff\x03\x3d\xc4\x84\xf9\xd3\x54\x84\xaf\xf6\x11\x45\xcd\xc1\x25\xd6\x5e\xde\xda\x32\x90\xc2\xd6\x65\xfe\xdb\xab\x7b\xb6\x33\x05\x49\x47\x4f\x37\xd9\xa9\x1b\x37\xa0\x9c\xba\x8d\x98\xd3\x29\x3f\x6d\xeb\xd6\x97\x97\xdd\xb4\xc5\x09\x6e\x1f\x51\x54\x21\xb6\x6f\x2c\xf9\x65\x47\x71\xa9\xeb\xf0\x85\xd7\x53\x70\xc9\x0d\x5b\xb8\xeb\x2d\xb9\x5d\x0b\xb7\xb9\x25\x37\x6b\x99\xef\x9b\xb2\xf8\x7a\x3f\x5e\x87\xd9\x15\x1a\x7f\x90\x39\x1a\xcb\xe6\xb2\x9b\x74\xf4\x4e\x31\x1a\xfc\x7e\x9d\x94\x63\xba\x7c\x46\x7b\xd9\xf5\x79\xbc\x7f\xd1\x25\x17\xdf\xf4\x3a\x80\x4c\x5b\x9f\x5f\x07\xa8\xe8\x9a\xa7\xbe\x74\xdf\x7c\x0a\x2a\x3a\x75\x92\x11\x1a\x7b\xf5\x12\xe9\xd6\xd9\x80\x17\x2d\xf9\x50\x1b\xb1\x73\xeb\x00\x05\x5d\x23\x1a\x05\xdd\xe8\x30\x50\xd0\xe9\x15\x50\xd0\x69\xec\xf2\xf9\xd1\x90\xa4\x60\xa7\xfa\x46\xa0\x39\x15\xe5\x23\xda\x6c\x7b\x52\x07\x29\x7d\x47\xba\xc5\xa4\xa1\x2d\x55\x32\x72\x00\x8f\xcc\x3a\x7c\x77\x69\x37\xad\xc1\xd0\x9c\xff\xc8\x85\x74\xa4\x0e\xdb\x47\x0f\xb5\xd7\x94\x3a\xde\x7f\x6e\x49\x2e\xe6\x1c\x4c\xe3\x7f\x83\x59\xd6\x89\x55\xd9\x1e\xa3\x25\x67\xe5\xf3\x69\x47\xf4\x02\x67\xc8\xe5\xad\x6c\xc0\x9f\x96\x9d\x95\x8d\x2d\x72\x9d\x86\x2d\xf7\x3b\x4f\xad\xf5\x7b\xf1\x2c\x11\x7b\x3d\xe2\x40\xf4\x25\xe0\xfd\x56\x37\xd3\x57\xf2\x71\x91\xd6\xe8\x62\xfa\xd6\x48\x24\xf1\xf4\x9f\x28\xb9\x5a\x4d\xa1\x0e\x5d\x3f\x1a\x1f\x7a\xff\x31\x87\xef\x23\x0a\xfe\x71\x45\xb2\xde\xde\xf2\xa9\x16\xe1\x45\x2f\x98\xb6\xde\xd4\xbc\x8f\x68\x37\x54\xa3\x29\xba\x94\x80\x64\x59\x27\xb6\xec\x94\x8b\x2d\x9b\x81\x39\x63\xa0\xe6\x65\x01\x28\xfb\xe4\xa7\x76\x84\xb4\x34\x4d\xf7\x8c\x3e\x23\x0d\x07\x57\x46\x9c\xde\xf3\xf2\xa9\x29\xc5\xdf\x4f\xb7\x0e\x15\xba\x5e\xa7\xef\x6d\x26\xed\x47\x34\x47\x14\x5d\x66\xf7\x27\x73\x57\xee\xcf\x36\xd3\x9d\x64\xe5\x49\x07\x6e\xbc\x89\x2e\xc7\xd9\xff\xf0\xd2\x2f\x25\xf8\x9b\x07\x8b\x49\x49\xfc\xa6\xe9\x29\x1f\xe9\x4f\x9b\xa1\x87\x53\xdc\x4b\x95\xc3\x68\x5d\xe6\x6b\xe0\x12\xb7\x44\xbe\x54\x31\xf6\xaf\xcb\xc7\xbb\x53\xcb\x3e\xa2\xe7\x5b\x24\xeb\xfe\x3e\x0e\x97\xe9\x97\x2e\x1c\xdc\xeb\xc2\xa5\xca\x68\x2b\x59\x5f\x03\xcc\xbe\x2e\xe8\xed\xef\x94\xa4\xc3\xe6\xa2\xb6\x78\x19\xef\x88\x46\x02\xdd\xa9\xa0\x71\x57\x3e\xcd\x57\xc1\xf5\xcf\xf2\xb6\xd3\xb4\x5d\xbe\xfd\x2f\xf1\x35\x35\x6c\x80\xab\x10\x1a\x7f\xe6\x53\xea\xdf\x11\x8d\x28\xf5\x39\xb5\x0a\x74\x24\xbe\x57\x2c\x11\x38\x3d\x4f\x53\xf0\xf6\x78\xa7\x64\x12\x41\x46\xfc\x79\xa0\x3c\x39\x44\xc6\x74\x81\xfe\x58\x76\xe4\xb6\xc2\x0a\x2f\x93\x77\xf9\x54\xdc\xe1\xc7\xe4\x37\xcb\x57\x47\x7a\xa6\x98\x56\x0e\x97\xf6\x82\x73\x89\xed\x14\xce\xa5\x42\x7d\x9d\x36\xf2\x4e\x39\x9e\xd9\x83\x2a\x28\x68\x1d\x5b\xd7\x12\xe9\x52\x69\x69\xa8\x8c\x40\x58\x32\x96\xd2\xe9\xbd\x2b\xb8\xd8\xcd\x4f\xf0\xe5\x32\x23\x53\x4b\xd7\x63\x2f\xa2\x1d\xc4\x69\x31\x88\xc5\x26\xa2\xf4\xbc\xaf\x45\x29\xd5\xd3\xfa\x62\xea\xca\xb3\x3d\xcd\x6c\xfa\x48\x53\x52\x5e\xf5\xa5\xa2\x31\x46\xdb\x27\xa7\x5f\xad\xdc\x7b\x58\x4a\x95\x8b\x8e\xf5\x9b\x25\x76\xa5\x9a\xe3\xb0\x72\xb1\x99\x48\x8e\x5d\xab\x29\x88\x93\xa8\x21\xca\x58\xfc\x96\xb3\xb4\x40\xfe\x99\x73\xf3\x79\x55\x77\x38\xab\x5f\xab\x0e\xc8\x5f\xf8\xe7\xf4\xb1\x14\xc9\xd1\x37\xec\x70\xd5\xa1\x53\xec\x61\xca\x86\x57\xfb\xfb\xaa\xad\xca\xec\x94\x95\xc8\x29\xd6\x83\x69\x95\x30\x94\x2d\x27\xc3\x7b\xa7\x81\x78\x95\x1a\xce\xf4\xe5\xd4\x78\x04\xeb\x2f\xb3\x2a\xf5\xa8\x36\xa2\x51\x6a\xc7\x5b\x8e\x8f\xd4\x54\x48\xd7\x71\xee\xca\xcb\xc4\x48\x67\x4b\xfd\x16\x67\x14\xe5\x1a\x86\xde\x52\x92\xee\xe7\xc7\x5b\x90\x2f\x6c\xa9\x03\x28\x74\x76\x94\x0a\xd0\xbc\xa7\x60\x1d\x3c\x3d\x7f\xb5\xf1\x89\x35\x56\x31\x89\x0f\x7e\x83\xe6\x38\xf8\x8f\x4f\x7d\x38\x04\x17\xdc\x48\x50\x1c\xae\x2a\xf4\x13\x40\xe6\x55\xb7\x01\x65\xec\xc1\xa6\x4a\x6a\x25\x23\xe3\xc8\x40\xe7\xf4\x78\x44\x74\x47\xaa\x08\x1f\xc8\xfb\x1f\x5f\xbb\x6a\xea\xa8\x73\x94\x8e\x31\x91\xd2\x0d\x25\xdd\x82\x48\x09\x08\xca\x6a\xc6\x30\xd5\x23\xa2\xaf\x5d\x77\x44\x11\x32\x33\x00\x0d\xc4\x2b\xc7\x75\x33\x76\xfc\xa6\x01\xe2\x55\x6a\x00\x54\x96\x78\x95\xce\x1b\x64\xf3\x6a\x46\xfc\x45\x5f\x6b\x20\xfe\xae\x94\x64\x64\x3c\x7d\xdc\x8c\xf8\x9b\x29\xca\x10\xbf\x99\x5a\xc8\x76\x99\x99\x27\xaa\xa5\x96\x19\xdc\x0c\xf0\x23\xf8\x63\x35\xb2\x75\xf4\x3c\x6d\x3a\x2d\x53\x0e\xbb\x74\xfe\xe2\x53\x78\x22\x0d\x3f\xcc\xbb\xbe\x42\x5e\x34\xd5\xd4\xdc\x30\x3e\xae\xe6\xac\xde\x28\xdd\x0d\xb4\x5f\x7a\x49\x13\x7c\xbe\x12\x98\x24\x0a\xf2\x05\x07\x6c\xea\x6a\x40\x2b\xd2\xfb\x52\x72\x3b\x6c\x9a\x4b\x40\x90\x0b\xd4\xdd\xba\x9d\x5f\xe2\x8e\x64\xd3\x2b\x3b\xb6\x70\x20\x17\x60\xb9\x65\xb6\x9e\x71\xd2\x9f\x24\x1c\x84\x85\x63\xdd\x04\xf2\xd6\x3c\xfd\x79\xa9\xb8\xe5\x61\xe4\x61\x2b\xbe\x89\x13\x19\x79\x5a\x4d\xaf\x48\x51\x52\x73\x08\x42\x5b\x4e\x31\x88\xbd\x7c\xdd\x10\x3a\xbc\x5f\xda\x32\xc8\x4e\x7d\x3b\xf3\x08\xd3\xfb\x66\xc3\x4f\x39\x3f\x49\xf9\x50\xf7\x96\xfc\xd1\x11\xec\xe8\x18\x42\x73\x94\xec\x58\xb7\x0d\x66\x68\x23\x4a\x35\x58\xb2\xf1\xdd\x9c\x0c\xfc\xcf\xbe\x83\x92\xef\x86\xaf\x7f\x79\xd5\x31\xc5\x35\xa2\xcd\x69\xa9\x2a\xe6\xb4\x9a\x6f\x7d\xe8\x72\xae\xde\xd8\xd3\xb8\xc3\x88\x7c\xa7\x3e\x07\xc7\x3f\xf7\xf4\xce\xa9\xc2\x2d\xa5\x63\x3e\x43\xe9\x31\x33\x4f\x4b\x2f\x18\x13\x32\x0a\x5a\x42\xe7\x98\xe1\x0e\xd6\x09\xd3\x45\x85\xec\x8e\x51\x8f\xe6\xdf\x89\xcb\x65\xbb\xeb\xc4\xe5\xde\x11\x7d\x45\xa3\x2f\x3a\x26\x04\xf6\x79\x61\x46\x2a\x9e\x94\x25\xcc\x48\x85\x22\x67\x75\x8e\x16\x7e\xaa\xb8\x41\x1c\xe6\xcb\x2c\x3c\x47\xee\x08\x9d\x28\x5c\x36\xac\x4e\x14\x2e\xab\x56\x3c\x3c\x35\x17\xd5\x6e\xce\x71\x70\x00\x4b\xf9\x06\x2b\x66\xd0\xd5\x3d\xb3\xb1\xad\x2d\xf1\xf2\xd4\x4c\x40\x81\x4f\x2a\x0e\xa2\x65\xec\xc9\xc0\x8c\xbd\xba\x35\x9e\x8b\x49\x66\xf0\xc9\x91\xa6\x78\xd2\xb7\x54\x81\x73\x28\x8d\xf1\x39\xd4\xde\x97\x85\x22\xb8\x50\xbb\x3b\xc7\x12\x1a\x72\xe7\x20\x2a\x74\xbe\x0f\x22\xec\xfb\xab\xdb\x1b\xdb\xd2\x1c\xdf\x3e\x5f\x89\x85\x49\x03\x30\x61\xa4\x83\xb7\x8f\x4a\xea\xe4\x78\x40\xc2\x5d\x57\xc7\x66\x81\x01\xa1\x13\xf1\xf4\x8a\x06\x0d\x8d\x94\xe4\xad\x84\x03\xba\x13\xf1\x84\x3a\x61\x96\x9e\x93\x10\xcb\xd5\x89\x78\xe2\x72\xd0\x89\x78\x62\x8f\x12\x4d\x4f\x23\x00\x67\x89\x98\x27\x70\xf2\xe5\x1c\x83\x27\xd1\x8e\x6b\x70\x1f\x9d\x79\xd7\xe6\x4b\x54\x37\xe7\x18\xbc\x72\x38\x3a\xc7\xe0\x05\x90\x61\x39\xc7\xe0\x85\xa5\x6d\x39\xc7\xe0\x95\xe9\xef\x1c\x83\x17\x90\x84\x35\x7c\x12\x65\x49\x8a\xa0\xe7\xe9\x9a\xbc\x6c\xe7\x28\xaa\xde\xf0\x1d\xb4\xa7\x8e\x76\x8e\xb2\x26\x45\xd1\xf3\x7c\x4a\x1d\x81\x4c\xb1\xb5\x0f\xa2\x2d\xd8\x91\x07\xd1\x16\xac\xba\xe1\x68\x8b\x2b\xef\xfa\xe8\xa4\x86\x04\x54\xf4\xfc\xc6\x77\x98\x54\x82\x3b\xea\x48\x41\xbe\xc4\xb0\x7c\x07\xe1\x16\x23\xdf\x3a\x1b\x3c\xaa\xb3\xf3\x08\x5e\xb9\xd8\x19\xd0\xd4\xe0\x92\x5b\xc3\xf6\x64\x0c\x68\x6b\x10\x71\x81\x56\xe4\x4c\x82\x17\xa0\xaa\x35\x08\x55\xea\x29\xd9\xd8\x99\x0c\x01\x11\x18\x3d\xa2\x8f\x4f\xb6\x2b\x43\xa0\x2e\x40\x12\x6b\x18\x97\x7e\x45\xb2\x6a\x50\x52\xb0\x73\xdd\x97\x94\x64\xd5\xa0\xa4\x8e\x36\x19\x31\x57\x87\xfd\x6e\xac\x10\xa3\xa2\x2e\x20\x84\xcb\xb0\xa8\x0b\x8c\xe9\x1a\x8e\x4e\x02\x51\xb8\x86\x91\xe9\x19\x02\x62\x37\x4a\x4a\x92\x6e\x90\xd1\xf2\x05\x14\x87\xed\x1a\x9b\x0b\x5c\x9e\xda\x47\x77\xfd\xdb\xb6\xbe\x06\xd8\x19\x6e\x6c\x66\x07\x1a\xb9\xb1\x0d\xe3\xd6\xcf\x33\x75\x7a\xe6\xe2\x38\xf2\xae\x2d\xd1\x6c\x6e\xc2\x5c\xb5\x71\x44\xb2\xdd\x14\xad\xc8\x98\xab\x72\xa2\x38\x4f\x5b\xa2\x6d\xda\x5d\x06\x5d\x95\x13\x43\x95\x50\x57\x6d\x1c\xf9\x12\x1d\xa9\x23\x0e\xeb\x3d\x11\x6d\x9b\xe8\x29\xd7\xb6\x89\x9e\x92\x0c\x62\x67\xde\x8a\x33\xa8\x41\x0b\xb6\x9c\xc3\xb0\x40\x05\xba\x26\x90\x76\xa6\xde\x04\xd2\xce\x1c\x9f\x64\x64\x63\x52\x4f\xd4\xb8\x8a\x74\xdb\x54\x9a\x77\x05\xbf\xe6\x76\x68\x36\xa0\x0a\x3d\xdf\x9a\xe4\xec\x66\xb1\x4f\x6e\xc8\x23\x25\x99\x37\x6f\xa4\x12\x32\x9f\x70\x57\x73\x5a\xc2\x92\x2b\xa9\x38\x7f\x5a\x2e\x10\xd3\xd6\xc8\x0b\x25\x7a\xda\xf8\x03\x16\x66\x89\xd7\xa7\xe5\x12\x30\x93\x9d\x8d\x5e\x22\x3b\xdb\x95\x4f\x85\x7e\x4f\x63\x50\x92\x4a\x3e\xd5\xd5\x29\x96\x22\x83\x94\x7a\xac\x4a\x62\x42\xb9\x70\xa7\x2c\x71\x9d\x4c\x68\xb0\x97\x52\xb9\x4d\xa8\xae\x97\xb9\x4d\x8e\x6c\x72\xe2\x36\x39\xfb\xc5\xe4\x31\xae\xe7\xc0\xdf\xb0\xcc\x6e\x72\xc2\x91\xb7\x4c\x67\xd2\x89\x8a\x59\xa6\x33\x89\x31\xc0\x40\x1f\x90\x61\xcb\x40\x9f\x13\x3e\xbd\x65\x72\x93\xfb\xaa\x29\xd7\x50\x06\xda\x26\xe4\x4f\x68\x75\x96\x91\x3f\xad\xa3\x76\x2c\xd8\xd7\xd3\x70\xf0\xb2\xac\xce\x4d\xe8\x2c\x16\x20\x41\x81\x1a\x5c\x02\x2b\x09\xe4\x50\x3b\x37\x41\x4c\x5c\xb2\xb7\x4f\x8e\x68\x01\x49\x20\x57\x53\x92\x17\xe0\x95\x6f\xff\xb4\x34\xf8\x6b\xe6\xe8\x85\x28\x83\xda\x19\xe9\xd2\x14\xa5\x0e\x13\x47\x45\x47\x94\xef\xe7\x8e\xe4\x6c\x8d\x8c\xe2\x36\xea\x90\xd3\x69\x7b\xb3\x07\xf3\xb4\xb6\xc1\x84\x6c\x68\xa6\x0d\xa9\x84\x32\x2e\x61\x75\xca\x4c\x2f\x98\x94\x8a\x78\xc4\xb5\x61\xdc\xe1\x3c\x15\x4f\x48\xcd\x0d\x00\x9a\x90\x9c\x5c\x1b\xe8\x75\x7a\x10\xe8\x75\xcf\x53\x29\x25\xa9\x03\x6c\x1e\x6c\x01\x1b\x23\x1f\x5b\xc0\xce\x54\xa2\xa9\xb6\x7a\xdf\x6c\x61\x1b\x3c\x75\xc9\x53\x6b\x4a\xe9\xfc\xcc\x9e\x94\x8c\xa6\x94\x92\x65\x53\x28\x79\x57\xdd\x74\xa4\xb1\x46\x5b\xc3\x4d\xbd\x76\x66\x4f\x3e\x15\x58\xf5\xa4\x8b\x4d\xe7\x71\x01\x88\x5b\x46\xee\xdc\x27\x8a\xf6\xc7\x64\xfe\x34\x40\xfc\x1d\xad\xf6\xff\x60\x93\xf9\x10\x58\x8d\x2a\x6a\x32\x8f\xfb\xbc\xf3\x17\x1f\xf1\x28\x3f\x86\xf5\x5c\xb0\xc4\xad\x0f\xe1\xa1\x23\x7f\x55\x78\xe8\x15\x89\x13\x3e\x15\x34\xf1\x0f\x1b\xe9\x87\xbb\x72\x8d\xe8\x23\x90\x35\x67\xa0\xcf\x95\x3d\xcd\xdc\x1e\x95\x10\xcb\xf5\xf1\x34\xcd\x35\xf1\xc3\xfd\x38\xff\xf5\xde\x09\xbb\xc7\x12\x9f\x47\x1b\x4c\xe2\x8f\xb7\xc3\xfc\xc6\xc1\x3f\xdc\x37\x3e\xd9\x0d\xf9\x8b\xf2\xfb\xe0\x32\x5d\xc2\xd8\xd4\x18\xe1\x4c\xb3\x41\x24\xd0\x02\x62\x93\x2b\xae\x69\x36\xee\xb3\xe5\x5d\xdf\xc1\xd3\x67\xce\xef\x06\xd2\x64\x7d\x08\x05\x4a\x07\x2f\x2f\x1c\x0a\xb6\xf1\x7b\x46\x92\x75\x33\xc5\xda\x64\x03\x44\x77\x7d\x32\x65\x27\xa2\xf5\x50\x16\xf6\x07\xbf\x33\x0a\x94\xa9\x34\xee\xf3\x8a\x88\x26\x10\x91\x0a\x53\xa5\xad\x1b\x2f\x0b\xd2\xd8\x9d\x0a\x98\x6e\x19\x9e\x73\xc4\xca\xf4\x35\x60\x8c\x2d\x58\x44\x1a\x35\xa6\xca\x2f\x84\x4d\x1c\x8e\x26\xce\xb8\x40\x81\xad\x2f\xca\x2f\xe3\x44\x9e\xb6\x5c\x14\xcd\x95\x71\x15\x46\x8a\xb4\x6d\xef\x4f\xa5\xfb\xbe\xe5\xca\xff\xc2\x3a\xff\x4e\xaa\xcb\x5f\x9c\x40\x95\xbe\x37\xac\xa7\x9c\x57\xde\x55\x1c\x1c\x93\xec\x4b\xc6\x54\xe6\xb6\x99\x32\x0a\x04\x17\x4b\xb8\x9e\x86\x87\x7a\x99\x19\x23\xa0\xdc\x25\x94\x4f\x39\x18\x99\xaf\x63\x5b\x5e\xc9\xd0\x14\xd6\xd7\x17\x44\xec\x8c\x48\x1f\x51\x2e\x0e\x41\xb6\xee\x2f\x0e\x41\x6e\x38\x66\xac\x18\x05\x8d\xfa\xcb\xf6\xc7\x91\xfc\x95\x8b\x23\x06\x87\x2f\xd1\x24\xa9\x21\xbb\x21\x73\xf2\x0b\x31\x18\x4b\xe6\x0b\x31\x58\x9a\x0e\x31\x58\x9a\xce\x49\x1a\xc9\xdb\x1d\xcb\x04\x62\x09\x60\xb2\x0b\x62\x89\x96\x7e\x22\xba\x24\x73\xc9\xfb\x1d\x08\xf4\x65\xd4\x4e\xab\x68\x7f\x46\xed\x9c\x20\xd9\x97\x51\x3b\xbd\xa0\x82\x1a\xb5\x73\xc6\xd6\x6f\xd4\xce\x0d\x37\xc6\x32\xb5\xc4\x09\x76\x6a\x99\x5a\xe2\x02\x15\xb3\x0c\xdb\x39\xc1\xb3\x2f\xc3\x76\xce\x98\xba\x7e\x4e\xc7\x1a\x3f\x87\xd9\x23\xfa\x7c\x9f\xfe\x3c\xa1\x3a\xe2\x9f\x31\x7d\x94\x0c\x7a\xb1\x45\xd4\x5d\x97\x4d\xe3\x07\x7a\x11\xc5\xc7\x59\xf4\xce\x98\x92\xcc\x1e\x71\x66\x79\xff\x38\x6d\x6b\x4a\x5a\x5e\x2d\x79\xba\x2d\xfe\x07\x07\xaa\x71\x3c\xf7\x85\x91\x0a\x8a\x08\xb0\x98\xcb\x38\x9e\x56\x51\xcf\x4d\x11\x71\xc5\x89\x6b\x20\xcf\x05\x5d\xfa\x02\xc8\x13\xd7\x31\xd0\x9d\x23\x3d\xe5\x9b\x16\xf4\xed\x0b\x52\x08\x00\x83\x0b\x78\x0e\x59\x19\x96\xe0\x39\x09\x0f\x5e\x42\xe7\xb4\xf2\xfe\xe6\x59\xde\xe5\x2d\xf6\xa7\x67\x29\xe6\xcf\xff\xa4\x18\x87\xc1\xbf\x5f\xb2\xed\xa1\x02\x80\xbe\x89\xb9\xf6\x87\x43\x0e\x7d\x01\xb8\x0d\x59\x5e\x96\x01\x35\x17\x89\x64\x96\x11\x34\x57\x56\xd7\x9f\xb3\xfd\xb2\x06\xfe\xb0\x4d\xa3\x7a\xfe\xd9\x18\x9d\xb3\x0d\xae\x06\x12\xcd\xac\x3f\x8c\x00\xdc\x96\xa0\x63\x28\xdc\x9a\x4d\xc7\x00\x36\x64\x19\x42\x03\x82\x71\xfd\x99\xd6\x64\xa4\x58\x86\x8a\x0f\x27\x3f\xed\x88\xbe\xf6\xce\x88\xea\x09\x88\x00\x17\xa4\x09\x25\x9f\xfa\x38\x40\xd1\x00\xe9\x02\x79\xde\x82\x27\x81\x58\xb3\xf5\x67\xcf\x73\xc9\xc3\x8f\x1f\xa6\x24\xdb\x90\xd3\x11\xdc\xea\x39\xb1\xfe\xb8\xc6\xb3\x25\x19\x25\x73\xc1\x38\xba\xfe\xb8\xc6\xa3\xa1\xff\x71\x6f\x67\x81\x1b\x34\x73\xc1\xc6\xb6\xc2\x9c\x30\xf3\xad\x20\xaf\xec\xdc\x10\x27\x70\x7e\xfd\x69\x5f\x0c\x3a\x7d\x85\x47\x61\xe6\x5d\xe3\x1a\xd9\xdc\xfe\x60\x49\xc7\x9c\xf3\x87\x97\x8e\x09\x04\x71\x42\x66\x0c\xd4\x08\x71\x79\x43\x8d\x10\x80\x86\xe9\x0d\xc0\x46\x2d\xf3\x19\x54\xbc\xf0\x5b\x89\xef\x1e\x71\x20\x36\x97\x14\xd1\xda\xbe\x37\xc6\x0d\x65\x01\xd8\x94\x6d\xca\x82\x0b\xf8\xc9\x86\xb2\x00\x0b\xf1\x36\x65\xc1\x4d\x9e\x82\x0d\x65\x01\x47\xd3\x36\x65\x41\x05\x55\xb0\x0f\x67\x1b\xbf\xf2\x5b\x1b\x29\xbc\xe7\x6c\x53\x14\xb4\x9a\x3a\x46\x09\xa3\x05\x82\x32\x60\x19\xdd\x50\x12\xe0\x78\xdc\xc6\xda\xdc\x67\xcb\xa7\x34\x80\x4a\xd8\xae\x0f\x58\x65\x0b\x6b\x73\x96\xb3\xd0\x3c\x47\x6f\x9f\x9e\x61\xdb\xe8\x9a\xfe\xf6\x05\x1e\xdf\x4e\xc9\x20\xad\x4a\x44\x87\xdb\x95\xbc\x6c\x1b\x41\xa1\x92\xcb\x36\x82\xbc\xcb\x8d\x30\xef\x6e\xbf\x4b\xcf\x10\xe0\x56\xe8\x0b\xed\x41\xe3\x48\x41\x3f\x6b\xc5\xd4\xd8\xd6\x9c\xde\xa8\xf1\x36\x9c\x8e\x7e\x32\x46\x81\x7b\xd2\x36\xa0\xa6\x10\xdb\xb8\x0d\xa8\x29\x4c\xce\x6d\x40\x4d\xab\x67\x44\xdb\x08\x0e\xea\x64\xa2\x81\x6b\xfe\x7b\x9b\xdf\xf0\x0e\xc0\x5a\xb3\x0f\x33\x74\x12\xf8\xb6\x8d\xbf\x21\x29\xd7\x36\xef\x40\x21\x40\x66\xc3\x3b\x00\x8a\x7d\x1f\xb6\xdf\xf4\xd4\xc1\x16\x0f\x6b\x28\xdb\xcc\x02\x17\x60\xa7\x6d\x24\x4f\x21\xac\x73\x1b\x9d\x53\x20\xd4\xdd\x67\x98\xd4\x1a\x22\x3a\xd4\x40\xec\x0e\x62\x8d\x68\x9b\x8d\xb5\x9b\x2d\x78\x4e\x73\x0a\xdd\x47\x5a\x36\x88\xe4\xa1\xa3\xed\x8f\xfc\xe7\x63\x31\xb5\x70\x9a\x81\x23\x55\xb6\xb9\xe4\x48\x2d\x50\x33\x78\x79\x82\x60\xe3\x47\xd6\x09\xe1\xce\xdc\xc2\xef\x3c\x2f\xf3\xad\x54\x44\x00\x9a\x1b\xca\x82\xea\x2d\x6a\x9f\xbe\x2e\xbf\xaf\xca\xbe\xf3\xfe\xc5\x09\xf7\x19\xf6\x13\x85\xf1\x48\x41\xde\x93\xee\x88\xae\xf0\x8c\x68\xfb\x0e\x35\xb2\x7d\xa7\xa6\xc7\x4d\x67\x00\x23\xe4\x3e\x17\x70\x79\xfa\xc9\x99\xcb\x6a\xc6\x63\x19\xbe\x99\xb1\xb4\x85\x07\xac\xe1\x0e\x49\x01\x6b\x38\x24\x05\x6c\x33\xe1\x21\xc8\xe0\x69\x96\xdf\xe8\x36\x3b\x44\x04\x23\x2f\x43\x44\x40\xc9\x21\x22\xa0\x56\x9e\xaa\xf7\xfb\xed\xb2\x98\x6f\xcd\xcb\x73\xe6\xdb\x8f\x7d\x8b\x6e\xa0\x60\x1c\x85\x90\xba\x5d\xcc\xd3\xce\x36\x23\x14\xc7\x24\x2a\x74\x1b\xc5\x01\x0c\x60\x0b\xc5\x31\xfb\xfb\x9d\xcc\x4c\x56\x0f\x77\x11\xc4\x07\x6b\xf9\x2e\xce\xc8\xc2\xce\x6c\x2c\xc6\x01\x88\x71\x17\xa3\x28\xd9\x12\xcb\xb6\x7e\xce\x64\x29\x76\xc0\x71\x9d\xdf\xc1\x66\xcc\x7c\x2a\xd5\x98\xfb\xfb\x2e\x30\x09\x30\x70\xc5\x0e\x38\x08\x2b\x77\x31\x82\x1d\xff\xc4\x06\xc9\x81\x65\x60\x57\xee\xfe\xf4\xb6\x91\x1c\x98\xd0\x76\x35\x42\x0e\x55\x71\x57\xab\xc2\xdc\xb3\xb6\x32\x65\x55\x3c\x88\x1b\x9c\x07\xf6\xaa\x6d\x9c\xc7\x89\x79\x62\x1b\xe7\x81\x31\x6e\x0b\xbc\xf1\xa8\xd4\xfc\x06\x55\xf7\xa6\x86\x32\x24\x1d\x29\x17\x8c\xfa\x9d\x77\x15\x3c\xc6\x26\x5d\x1d\xbe\xca\x41\xb9\x2b\x00\x76\xe6\x59\xb5\x83\xb8\xd1\xe1\x15\x04\xbb\x2f\xb2\x1b\x88\x46\xaa\x64\x88\x7a\x63\x5b\xae\x78\x84\x5b\x9e\xda\xfa\x76\x53\xf0\x42\x37\xa7\x8a\xf6\x29\xd4\x8b\xfa\x3b\x83\x0b\x40\xc7\xad\x54\x57\x8d\xc8\xaf\x0d\x82\x23\x0b\xa5\x3a\xc0\xa2\x44\xb2\x2d\x20\x7f\xa1\xbe\x74\xa1\xbd\x02\x58\x0a\xb6\x41\x19\x17\x40\x91\x6d\x50\xc6\x75\xfc\x07\x13\xfc\x36\x44\xe3\x02\x6c\xb9\xab\x81\x68\x35\xad\xd9\xdc\x70\x22\x76\x17\x1c\xd1\xba\xf7\x95\x5a\x98\xea\x30\x83\xa5\xb3\x01\x8a\xbb\x5d\x37\x35\x66\xe8\x0c\x36\xc3\x5f\xb7\xab\x1d\x65\xbe\x00\x6c\x52\x5f\x61\x0c\xdd\x20\x36\x40\xa1\xee\xe6\x28\xe9\x1c\x2b\xcd\x2a\x0f\x60\x9b\xed\xec\x56\x03\x75\x7b\x37\xee\xff\x1c\x15\xc0\x30\x88\x30\xdf\xc0\x30\x70\x9f\x6c\xe3\x2e\x92\xd4\x6a\x37\xdc\x5d\x4c\x28\xc3\x30\x6e\x72\x0b\x6e\xc3\x30\x6a\x4a\xb2\x52\x83\x65\x7d\x83\xc3\xc0\xd9\xbf\x8d\xc3\xb8\xb8\x64\xee\x06\x5e\x9c\x7d\xab\x81\x17\x67\x37\x6d\xe0\xc5\x59\xa3\x40\x2f\x70\x52\xed\x46\xa0\x23\x7b\x83\x91\x18\x17\x61\xf1\xbb\x61\x2f\x1d\xa9\x86\x55\xc7\x7c\xfa\xf3\xb1\x99\x87\x6e\x1e\x5b\x83\xd2\x62\xb5\xec\xf0\xcd\x81\x40\x6c\xa5\xce\x60\x75\x81\xba\xdd\xcd\x77\x2e\xec\xb0\xbb\xd9\x4e\x85\x9f\x79\x37\x87\x82\x31\xc7\x9b\x03\x24\x88\x05\xdb\x4a\x69\xd5\x30\xe8\xef\xa6\x69\x1c\x76\xd2\xdd\x9c\x0f\xfe\x3a\x53\xee\x9f\xcb\xe5\xaf\x9e\xe4\xef\xe8\x78\x92\xf7\xbc\xac\xa8\x32\xe8\xd1\xb6\xb3\x61\x5d\x3d\x93\xc2\xf3\x96\x88\xc3\x6d\x62\x96\x8b\xc8\x97\xed\x24\x57\x57\xb4\xd7\x66\xcc\x24\xde\xae\x4d\x92\xab\xf3\xca\xb7\x5f\x7f\x9b\x4a\xf9\xde\x9e\xa9\xba\xa9\xb2\x45\x33\xb5\x5c\x44\xe3\xec\x7b\x70\x51\xe9\x88\x97\x5f\xbe\x11\x4d\xae\xc6\x0a\x71\xc2\xac\x8b\xc8\xc7\x6d\x2a\x97\x0b\x2f\xe1\xbe\xad\xd9\x03\x07\xdf\xb7\x35\xfb\xfe\x7e\x4b\x03\x23\xca\xbd\x5a\x52\x0b\xee\x61\x6e\xee\x8d\xc5\x94\x1d\xea\x46\x3b\x67\xef\x73\x92\xac\x9e\xc9\x78\xa3\x9e\xb3\xf7\x99\x9a\xe5\xc2\xfa\xbd\x6f\xd4\x73\x54\x3c\x63\x72\x2e\xa0\x14\xfb\x06\x43\xd4\xf2\xb2\x7d\x0d\x3d\x3f\xf2\xfd\xe2\xce\x8f\xec\x05\xbd\x53\x49\x7b\x41\xd9\xfe\x6e\x68\x35\x7a\x5e\x36\x14\x99\x4d\xeb\x06\x8a\xcc\xde\x6e\x04\xcf\x05\xde\x63\x9b\xbe\xe5\x02\xef\xb1\x0d\xe8\xb9\x30\xf6\x6f\x03\x7a\x2e\xbc\x08\xdb\x39\xb6\x92\x84\x76\x93\x54\x0b\xd7\xd0\xbe\x71\xeb\xf6\xfc\xd7\x2d\x42\x61\x37\xc2\x27\x2c\x18\xfb\xe6\x22\xd0\xf2\xad\x6f\x27\x1c\x4f\x42\xf5\xb4\x91\xc1\x86\xcf\x82\x83\xe1\x86\xd0\x22\xad\xb7\x52\x74\xa6\x23\x15\x78\x3e\xce\xe3\xdf\x9b\xfd\x4d\x74\x25\x2a\x89\x09\x5d\xca\x59\x23\x76\x5f\x55\x52\xae\xb2\x06\x66\xee\xda\x7a\x7b\xd6\x3c\x24\x8b\x55\xaa\xe4\xfb\x3a\x5b\x25\x19\xb8\x70\x22\xec\x1b\x0e\x3e\x9b\x14\xb6\xf9\x5d\x7a\x36\x9e\x8e\xb3\x16\x1d\x4a\xc0\x9f\x36\x58\xd6\x64\xe4\x3a\x51\x9b\xc8\xc8\x95\x7d\xc9\xb8\x9f\x72\xd6\x14\xec\x06\xd4\x3c\x35\x86\x0d\x35\xce\x30\xa0\x0e\xa7\xdb\xee\x56\xfd\x49\x9c\xbd\x8d\x0a\x2a\xa0\x33\x76\xb2\x74\xb5\xfc\xd7\xa3\xc5\xb4\x30\x2a\xa8\xe0\x42\xd9\x46\x05\x95\x93\xbb\x71\x47\xf5\x67\xb7\x31\x95\x4c\xc1\x96\xb4\x3b\x37\x01\x14\x27\xa5\xee\x6a\xe4\x71\xdc\x1d\x8f\xc4\x15\xd1\xe4\x65\x67\x0a\xf6\x35\x8e\x7d\x4b\xb0\xa1\xe4\xff\xd8\x9d\xab\xc0\x99\x4f\xed\xea\x4d\x3f\x4e\x5f\x74\xb8\xca\xf4\x49\x6b\xf3\xd4\xf9\xd4\xd8\x98\x3a\xbc\x67\x67\x1a\x60\xde\xb3\x23\x3f\xfa\xb3\xe8\x99\x60\xe4\x50\xc9\xbd\xa7\x73\x71\x38\xf3\xd4\x17\x87\xf7\xe5\xea\xa7\x54\xd2\x9e\xe1\xfc\x87\x5b\xc5\x2b\xaa\x41\x95\x1d\xcf\xc8\xa1\x82\xf9\x6e\x77\x88\xd1\x5e\xd1\x57\xb5\x2b\xa2\xaf\x6a\x57\x2a\xe5\x9b\x4f\xfa\xd1\xc4\x68\x35\x23\x62\x3a\xbf\xd8\x27\xfa\xa6\x05\x74\x86\x57\x5b\xcd\x90\xf8\x0a\x52\x39\x85\x8c\x2c\x2a\x25\xad\xdf\x34\x81\x3a\x7b\x45\xd5\xf4\xab\xc9\xd0\x6a\xc6\x64\x73\xdb\xa4\xbd\xa0\x1f\x32\x3f\x7d\x7b\x6e\x99\x90\x24\xb5\x9b\x79\xd9\x38\x4a\xc6\x73\x90\xc7\x8e\x6d\x7a\x10\xdd\x8c\x5e\x6f\x30\x51\xa2\xa2\xb6\xc1\x44\x05\x76\xab\x3d\x88\x76\x46\x9f\x1a\xc4\xe2\xa1\xbb\x0f\xe2\x9b\x19\x7c\x83\x89\x3a\xec\x86\xdb\x60\xa2\x12\xd5\xd8\x60\xa2\x0e\xdb\xe1\x36\x98\xa8\x44\x5d\x27\xdf\x57\xce\x21\xa3\x89\x4a\xb4\x6c\xa3\x89\x4a\x34\x5c\xa3\x89\x4a\x14\xe7\xe1\x55\x13\xf5\xdd\x39\xbf\x0a\x80\xae\x6d\xac\x51\x69\xa9\x95\x97\x0d\x61\xcc\x7b\x98\xf3\x0f\xdb\xfa\x1e\x70\xfe\x71\xdc\x8f\x09\x00\x81\x26\xc8\xaf\x87\x2f\x64\x0b\x7b\xd4\x72\xd5\x82\x39\xe9\x4a\x7b\xbc\x4c\xa2\xef\x0e\x03\x5d\x67\x2a\x6c\xce\x36\x34\x40\x18\x64\x6a\xa4\x29\x9b\xd7\x44\xf2\x4e\x44\x47\x98\x50\xa6\xc7\xcc\xa0\x1c\x40\x05\x2e\x8f\x6d\x5e\x98\x5e\xdb\xbf\x37\xfb\x90\xc6\xf0\x4f\xe5\x07\x2a\x39\xd7\x97\xe1\x66\x98\xcd\xf7\x42\xa7\x66\xc3\x56\x7e\xa0\xf3\x06\x1a\xbc\x17\x9e\x0c\x0e\x63\xa7\x00\xba\x72\xef\x72\x0a\xa0\x2b\x57\x76\x91\xcc\xb4\xec\x51\x2b\x1a\x76\x3e\xe5\x16\xd0\x10\x1d\x11\xcb\x5c\x5b\x78\xd5\x38\x54\x96\x9d\xb7\x3d\x05\x4f\x6b\x78\x79\x57\xe4\x1b\x9c\x55\x4e\x08\x74\xe1\xe0\xdc\x4e\x08\x54\xe1\xcf\xdb\x26\xac\xb9\xb3\x9f\x2d\x73\xfb\x32\x6c\x22\xac\x39\xef\xf3\x4e\xb9\x3e\xd3\x47\x3e\xf5\x99\xce\xc1\xb6\xd0\x52\x46\xaa\xe4\x53\xe2\x8e\x28\xe3\x5e\x9a\x3e\x3d\xdd\xd3\xff\x36\xb7\x30\x09\x17\x70\x9a\x23\x22\xb3\x9d\x7e\x01\xbc\x90\x41\xc7\x83\x9c\xe6\x60\xab\xc8\xbb\x22\x28\xec\xe8\x0a\x49\x0f\x74\xe7\xd3\xe1\x81\xcd\xcb\xba\x7a\xa7\x83\xa5\xb0\xd4\x3b\xa3\x6e\x85\x25\x97\x3d\x53\xe3\xf4\xdc\x34\x96\x83\x04\xa0\xca\xdd\x30\xe5\xb4\x9e\xa2\x6c\x96\xe6\x24\x5e\x5c\x48\xd1\xf3\x93\x4c\x88\x8b\x08\x54\x39\xa8\x1d\xcb\xc8\xb3\x12\x89\x33\x2e\x05\x79\xed\x66\xae\x89\x90\xe4\x48\x85\x1d\xbb\xcf\x29\xbc\xa2\x83\x30\x25\x9e\x0d\xb3\xc6\x32\x63\xc8\x4c\xc3\xbd\xb8\x81\xcc\xe0\x43\xde\x1b\xb6\x79\x94\x9b\xcd\x6e\xca\x0d\x40\xfc\x39\x85\x98\xd6\x2d\xfe\x9c\x67\x61\xe7\x53\xf3\x43\xb2\xf5\x18\x50\xd3\x3b\x13\x64\xe3\x8d\x66\xd2\x8a\x43\xa7\x45\x41\x34\x87\x0e\x41\x8f\x5b\x1c\x3a\x35\xb6\x23\x63\x6d\x72\xac\x80\xb5\xa9\xdc\x14\x84\xb5\x29\xc4\x5d\x6e\x13\xec\x9c\x78\xde\xb6\x08\x76\x1a\x5e\xe2\xbd\x1d\xb7\x4f\x57\xc3\x92\x13\x73\x8a\x59\x72\xa0\x62\xdb\x26\xc2\x89\xae\x11\x22\x1c\x4e\x85\xed\xdb\x61\x5a\x09\x4e\x9f\xdb\xee\x46\x69\x66\xdb\x37\x13\xce\x15\xf3\xac\x73\xf2\x5c\xf8\x88\xb7\xc1\x36\x17\x5e\xe0\xbd\x0d\x92\xe7\x2a\xb9\x31\x9e\x33\x7b\x37\x4a\xf2\x9d\x82\x21\x84\x4b\xc1\xd2\x99\xd3\x47\x3e\xc5\xdf\xd6\x30\xe5\xd8\xba\x05\xbd\x69\xf3\x7d\xe8\x13\x30\xe5\xc2\x60\x9a\xe6\x98\xc1\x34\xad\xd9\x4e\xa8\x37\xf3\x1b\x87\xff\xe5\xa1\xdd\xd4\x5c\x44\x9c\x73\xe7\x8a\x1d\x09\x58\x0e\xb8\x85\x0d\x7f\x4e\xcd\xa7\x66\xda\x1d\xf9\xa9\x1d\x90\xf5\x3f\xa8\xf1\x4e\xc8\x73\xc5\x4c\x0d\x82\x27\x07\xc6\x07\x97\x10\x55\xfc\x70\xbc\x73\xd8\x28\xe7\x4e\x8b\x9d\xdd\x28\x9d\x4a\xc0\xe7\xfe\x70\xd8\xdf\x11\x97\xfb\xa5\x20\x2a\x3f\x23\x9b\x5d\x48\x73\xb8\xde\x7c\x1c\x32\xcd\xc0\x7d\xcc\x90\xc8\xf1\x6c\x24\xcd\x15\x83\xf6\xc7\x5c\x26\x44\x16\xee\x0f\xa1\x26\x9c\x2e\xc2\xd9\xb4\xc1\x34\xfc\x4c\xce\x46\x6a\x3f\x99\x1f\x54\xd0\xfb\x6f\x6c\x87\xce\x9b\x93\x98\xba\x2d\x9e\x9c\x92\x1b\x25\xbc\x38\x39\x82\xe1\xc5\x89\xc5\xf7\x83\xcf\x99\x65\x03\x31\x4e\x0c\xe9\x26\xc6\xb9\x41\x6b\x6e\x27\xc7\xe9\xf1\xa3\xc1\x8c\x13\x2d\x0f\xd8\x4e\xd4\x3a\xc3\x76\xae\xb8\x09\x0c\xdb\xb9\xe2\x53\xf8\x38\x2f\xc1\x4c\x49\x36\x2e\x94\x7c\xea\x6b\x2e\xab\x4e\x20\x9e\x96\x33\xce\xe9\x71\xae\x68\x2a\x9f\x50\x20\xf2\xae\x95\x58\xb8\xb3\xb6\x51\x3d\x05\xae\xb2\xfd\xf1\x95\x91\x6b\xec\x27\x3a\x6c\x4a\xf2\x84\xe1\xd8\xfd\xa0\xc3\xbe\xbf\xb5\x0e\x5b\x52\xb0\x6d\x7e\x99\x14\x4e\x75\x98\x8e\x01\x97\xc1\xbd\xef\xb3\xbd\xc1\xf8\x37\xce\x9d\x53\x08\xb9\xdc\x21\xe4\x61\x47\xfe\x92\xd3\x03\x85\xd6\xb9\x73\x2a\x91\x57\x1b\x82\x1e\x62\x20\x37\x04\x3d\xd1\x4f\x0c\x01\x2a\xf1\x89\xc2\xd0\x93\xc3\x54\x88\xa0\x0a\xf6\x73\x3b\x77\x4e\xfa\x05\x3c\x50\x2e\x06\xdf\xc1\x70\xe4\x37\xde\x7e\x38\xf2\x9c\x3c\xa7\xc4\x36\x60\x48\xd0\xe8\x2d\xa2\xc2\x3f\x6a\x24\xe1\x48\xe0\xa8\xde\xdf\xc9\x6c\xa3\x4a\x93\xd9\xc6\x7f\x50\x41\xd2\x76\x22\x3e\xe8\xe2\x2f\x2a\x08\x6b\x4b\x29\x71\xda\x38\x53\xb0\xed\x24\x33\x05\x33\x81\xf2\xa9\x27\x10\x12\x66\x12\xe6\x9e\xa9\x7f\xb2\x57\x39\x3d\xce\x80\x87\x69\x2b\x3d\x4e\xcb\x71\xf9\xc5\x1d\xda\x53\x90\x6f\xe1\x3d\x05\x79\x4a\xbc\xa2\x80\x72\x6c\x13\x4e\x78\x53\xe0\xf5\xdb\x4e\x78\x43\x8a\xa7\xfd\xe5\x22\xc6\x69\x69\x34\x51\xa9\xac\x86\xaf\x29\xaa\x33\x70\xde\xa4\x99\x69\x5f\x68\xa6\xd9\x26\x9c\xa5\xa6\x44\x57\x31\x98\xa8\x44\x57\x31\x98\xa8\x34\x96\x8a\xe1\x42\x25\x7a\x9a\xe1\x42\x03\x06\xb6\xfd\x33\xc5\x18\xdb\x44\x60\x3a\xac\x1c\xe1\x72\x5a\x2e\x52\x24\x75\x89\xdb\xe6\x07\x0c\xec\x7d\xd7\x6b\xee\xdf\xd9\xf2\xf6\x8f\x6b\xff\x95\x2f\x9d\x99\xfe\x88\x28\xff\xe6\xf1\xfe\xc6\xb3\x9d\x99\x66\x6a\x9e\x4e\x1c\xdf\x16\xf9\x4e\xcb\xa6\xf7\xc3\x07\xce\x86\x12\x54\x4e\x3e\x85\xc2\xfc\x8a\xc8\xa5\x8a\xdf\x6a\x94\xef\xab\xe6\x5b\xa7\xb9\x66\x00\x9c\x9b\x65\x90\x0d\x61\xff\x08\xe2\x4f\xcf\x18\x52\x46\x4c\xc3\x36\x87\xce\x20\xba\x60\x9b\x43\x67\x10\xd3\xb0\xcd\xa1\x33\x80\x28\x6f\x23\x73\x46\x8e\x1d\x23\x73\x6a\xb4\x1d\x48\x74\x40\x03\x6d\x93\xe8\xcc\x1c\xc0\x26\xd1\x99\x07\xa7\xd2\x1f\x9e\x61\xd4\x28\xd3\xcc\xcc\x18\x9e\x84\x91\x79\xc4\x3c\x35\x93\x17\xb6\x32\x67\x30\x99\x31\x26\x99\x3c\x66\xd8\x50\xf3\x1b\x02\x17\x5c\xe6\x25\xfb\x0d\x21\x02\x2e\x7b\x9e\x7e\x43\x14\x0b\x5d\xfe\x88\xdf\x90\x23\xd5\x5e\xbf\xdf\x90\x77\xf3\xb2\x05\xea\x37\x2e\x77\xb0\x3d\x6a\xbf\x71\x6d\xef\x27\xba\x6c\xfe\x86\x03\xe1\x47\xbf\x5d\x8e\xa3\xd9\x87\x49\x27\x7e\x43\xae\x46\x68\x79\x1e\x69\xf9\xa1\x7f\x63\xf7\xdb\x70\x6e\x9f\xdf\x50\x78\xef\xed\xa8\x8a\xdf\xc0\xe1\x63\xe0\xd3\x6f\xd8\xb9\x32\x4c\x1d\xf4\x88\xf3\xff\xfe\xdf\xb0\x59\xe1\x91\x3e\xff\xe3\x06\xfa\x0d\x02\x3d\x0d\x52\xff\x8d\xe6\x43\xd2\xf6\x8b\x47\xec\x7e\x3a\x10\xff\x2c\x4e\x89\x22\x03\xaf\xce\x54\xf4\x1b\xb6\xba\x8e\xde\xdd\x1a\x85\x18\x16\x93\xd4\xfe\xc8\xfd\x3f\x7a\xb7\xe8\xbc\xfb\xa3\xf7\x8a\xa8\xcd\xf2\x74\xb1\x44\xb5\xf5\xee\x3a\x0c\x98\xd2\x67\xc4\xd3\x4f\x5d\x7f\x45\xda\xdc\xa6\xae\xf9\x39\xa5\x36\xf9\x09\x7e\xce\xa1\x5d\xae\xe2\xfa\x91\x54\xb9\x77\x44\x65\xa6\x77\x9c\xc7\xcf\xa9\x89\x9f\x87\x16\x9d\x4d\x17\x2c\xcc\x8f\x44\xb0\xa3\xf7\x89\xe8\x94\x09\xad\x21\x3e\xe3\xd6\x19\x0b\xdf\xb8\x46\x1f\x1e\x72\x5d\x6f\x8c\x6a\xf8\x39\xa7\x64\x3f\x78\x64\x6d\x71\xf8\x9a\xf1\x23\x43\xe3\xe8\xc3\x7d\x62\x7d\x6b\x1c\x74\xa7\x70\xb8\xf5\x64\x06\x1a\x86\x5b\x4f\x66\x83\x81\xb7\x67\x6f\x17\x62\xf7\xa7\x0d\xf1\x63\xf1\x46\x7c\xa6\xf9\x70\x53\xe0\xab\x3b\xe8\x14\x1d\x53\xf5\x3a\x5c\x23\x1d\x18\x75\x32\x97\x0d\x38\x1d\x07\x5d\xe4\xdd\x7a\x1c\xf4\x89\xd1\x9c\xde\x7f\x1f\x49\x49\x00\x4f\x37\xd4\xac\x64\x23\xed\x36\xca\x70\x1c\xb4\xc5\x7b\xd2\x30\xd5\xf1\x6f\xfc\x89\xcc\xb4\xf0\xd0\xf8\xb8\x6a\xda\xd5\x1f\xe9\x8a\xc6\x41\x97\x99\x2a\x6a\x1c\x74\xd9\x1f\x8d\x61\xf2\x9a\xd1\x89\x54\xcb\x3f\x67\x03\x3a\x8f\x93\xfa\x0b\xac\x36\x06\x0d\xff\xa3\x71\xe3\x9f\x68\x9a\x1f\x99\x6b\x86\x51\x62\x3f\xb2\xb5\x0c\x93\x59\xfd\xc8\xd6\x52\x0d\x47\xfe\x91\xad\x65\x98\xc2\xe9\x47\x3e\x96\x61\x1e\xa6\x9f\xf3\xb1\x54\x87\x6a\xfc\x9c\x8e\xe5\xbc\x8d\xda\xfb\x91\x35\x65\x98\x31\xe9\x47\xfe\x92\x61\x0a\x93\xdf\x34\x24\x66\x98\x28\xe3\x11\x75\x60\xdb\x76\xfa\x88\xeb\xd9\xbd\x4e\x24\xaf\x28\x13\x65\xfc\x9c\xcf\xa1\xd8\x5b\xfc\x23\x9d\x43\x35\x7f\xcd\x23\x2e\xbf\xeb\xfa\x3b\x29\x03\xc9\x7d\x1f\x91\x4a\xb8\x39\x97\x17\x86\x73\x89\xfc\x66\x19\x26\x82\xf5\xc3\x22\x2b\x9c\xd9\xa0\x7e\xb3\x7a\xac\x9c\x60\xe5\x37\xed\xe8\x1f\x66\x3b\xff\xcd\x9a\x74\x7c\x05\xb1\xff\xcf\x45\xf0\x88\xc3\x4f\x5d\x7f\xbc\xc5\x95\x6f\xed\xf1\x45\xcd\xf9\x39\x09\xc2\x49\xd0\xee\x6f\xda\xbf\x43\xc2\xab\x1f\xec\xf8\x83\x5d\xd6\x9c\xf0\x86\xdf\xff\x4c\x09\xef\xd8\x80\xdf\xb4\x6d\x9a\x4c\x7d\x3f\xf8\xd7\x8f\x9b\xfe\x1d\x63\xfc\x2f\x7d\xe0\x6f\xda\x58\x49\xda\xeb\x9f\x69\xbe\xcf\x71\xd2\xfd\x73\x21\xba\xe9\x4e\xf2\x3d\xcc\xc2\xf2\x83\xe9\x78\x38\x4a\x5f\x11\x51\x16\x2b\xa2\xc3\xde\x19\xac\x3d\x78\xf9\x46\xbc\xff\xef\xff\x75\x5f\x9d\x7e\x93\x5b\xae\x03\xdd\x7e\xa6\xfe\x3c\x8f\xbb\x45\xe4\xa9\xab\x0c\x42\xdc\xf1\x74\x3f\xd3\x2d\x9e\xe3\xa4\x7d\x56\xaf\x86\xb3\xba\xfe\xe0\x88\x1b\x0e\xd4\xfb\x99\x57\xed\xb6\x0e\xfd\x9b\x7f\xfb\xff\xc7\x54\xf9\x33\x5f\x57\x18\x1f\x7f\x90\x5c\x11\xb7\xff\x33\xd9\xcf\x23\xaa\x3d\xeb\x72\x0c\xb8\x13\xb5\xfe\xd6\x85\x19\xc4\xa7\x69\xa8\x04\x1c\x7c\xf0\x88\xc6\xad\x79\xa0\x17\x8e\x67\x3b\x84\x7f\xab\x39\x3f\xa2\x1d\xb3\xbf\x65\xb7\x6d\xb3\x87\xf4\x11\xc5\x9b\xe2\xd8\xa1\x47\x74\x73\x5f\xd1\x6c\x50\x1e\xbf\x75\x33\xba\xde\xe0\x97\x67\x54\x77\xf0\xed\x23\xba\x1a\x1e\xdd\x75\xfb\x50\x3f\xdf\xa7\x1f\x5b\x7e\x2f\x44\x4f\xfb\x46\xad\x8c\x19\xb3\xd7\xfa\x11\xb5\x33\xda\x29\xf8\x88\xcd\x4f\xa9\x15\x6b\xe4\xa6\x28\x33\x29\x94\x14\x45\x4f\xd2\x75\x37\x96\xbe\x14\xb5\xed\x9f\xbb\x29\x8a\xce\x39\xf9\x16\x72\xc1\x93\x6f\x9d\x87\xbb\x33\x82\x76\xf5\x0d\xce\xee\xd5\x19\x7c\xef\x1e\x8e\xff\x3f\x61\xab\xf8\x11\xe3\x3f\xcc\x62\xff\x23\xc6\x1f\x66\x8b\x1f\x31\xfe\xe3\xf4\x26\x40\x60\x3e\x74\x0a\x3f\x02\xf3\x07\xe7\x0d\x81\xf9\xdd\x71\x1e\x3f\x07\xdf\x3f\x3d\xc9\x7f\xe9\x3a\xe6\x95\xbd\x6c\xe3\x62\xf4\x3b\x5d\x77\xe5\xe5\xdb\x4f\x53\x54\x77\xc9\x03\xd1\x86\xc4\xeb\x9f\x16\xf8\x1f\x81\xf2\xdd\xd1\x26\x3f\xa2\xdb\xbb\x11\xda\x3f\x62\xd4\xbb\xd1\xdd\x3f\x02\xcb\x89\xc0\x7d\x44\xf7\xeb\x45\x2d\xdc\xaf\xc6\xed\xff\x88\x07\x8f\x92\xb1\xbc\xa5\xe0\x50\xf8\x11\x98\x8d\x49\xf5\x47\x60\xf6\xb8\x98\x65\x76\xa5\x74\x83\xcd\x1e\xb1\xf8\x69\x47\x74\xad\x5a\xbe\xfd\xb8\x28\xfe\xbb\x3c\x35\xac\x7c\x11\x13\x8d\x49\xe2\x11\x5d\x0d\x6f\xbd\xc4\x09\x77\xa3\x9c\x7f\x04\xfb\xf6\xc2\xa4\x73\x96\x84\x71\x31\xf8\x93\x38\x0c\xeb\x04\x44\xe5\x76\xce\x72\x07\xcf\x3e\x4f\x79\x39\x0d\xac\x88\xb6\xf5\xb1\x5e\x27\x0d\x64\xb4\xa7\x1b\xc8\x59\xbe\x26\x0d\x1c\x79\x6a\xea\x08\x56\xa4\xa3\x69\x3b\x4a\xec\x9a\xce\x8e\x51\xd9\x36\x14\xf5\x1a\xda\x89\xdf\x9a\xbb\xff\xcf\xa8\xfc\x88\xb6\x14\x32\x46\x72\xf2\x3c\x4f\xdd\xb1\xd1\x0b\xcb\x40\xf4\x64\xb8\xf2\xd4\xc6\xeb\x36\x11\x3d\xfa\x05\x11\x14\xc6\x88\x68\xe3\x08\x0b\x74\x31\x7f\xad\x0a\xac\x45\x13\x66\xc4\xff\x1f\xcd\xce\x23\x8e\xff\xf1\xdd\xfc\x96\xfd\x10\xad\x53\x67\xb4\x55\x47\x27\x3c\xe2\xf5\xbf\xe0\x98\x9f\x63\x6a\x03\xfe\x7d\xc4\xdf\xff\xb0\x21\x8f\xf8\xf7\x3f\x0c\xc0\x6f\xad\xfd\xff\xf3\xf2\xff\x08\xa3\xc5\xab\xf5\x88\xed\x7f\xce\x85\xdf\x1b\xef\x6a\x1d\x90\xa0\xd5\xd6\xd9\xcb\xf7\xff\x3f\x43\xd3\x23\x7a\xd6\xd5\x86\xa8\x11\x4c\xc9\x9b\x7e\xae\x37\x62\xff\xbf\x37\xd9\xd3\x23\x7a\x4e\x32\x82\x8a\x53\x7d\x5e\xee\x88\x34\x70\x20\x4a\x5b\xab\xec\x6d\x26\x8e\x6f\x9d\x85\xb3\x39\x43\x1a\x75\x56\x6f\x8c\xca\x5a\xd8\xc1\x72\xd3\x84\xed\x1d\x88\x63\x61\xb3\xf6\x59\xbf\x8e\xf5\xec\x85\x05\xbb\xe9\x0d\x16\x2c\xda\x7d\xa5\xbd\x1f\x36\x51\x16\xec\x87\xf6\x36\x17\xf5\x61\x69\x30\x91\x1c\xe2\xd8\xb8\x45\x2e\x5b\x48\x1b\xd7\x46\x87\x2d\x3e\x62\x41\x54\x3f\x57\x56\xf7\x87\xd5\x7d\x47\x74\x3f\xb3\x06\x6d\x13\x85\x64\xf6\xe7\x40\xc6\xe7\x29\x75\xb6\xde\xe2\xc0\xd1\x1f\xe1\x7d\x17\x7a\xcb\x82\x9a\x9b\x2b\xdd\x82\x9a\x9b\x73\xdd\xb6\xbe\x72\x94\x7c\xea\xff\x50\x30\x17\x94\x3a\x23\xfa\x3f\x93\x97\xbd\xd6\x1b\x73\xe1\x4b\xeb\x59\xcd\x26\xd1\x26\x19\xdf\x8f\xa8\x38\x98\xc8\x7f\x44\xc5\x8d\xc6\x3e\xf1\x25\x6f\x12\x9b\xf7\xd7\x79\xfa\xc7\x51\xfe\xbd\xef\x3b\xfb\xf2\x68\x9c\xd4\x64\x5f\x1e\x1c\x46\x0e\x83\x1b\xed\x8c\xe8\xe5\xca\x08\x39\xfd\xf2\xb0\xb7\xe9\x47\x1c\xdc\xb0\x93\xe8\x47\x1c\x1c\xf1\x03\x3f\xe2\xe0\x46\x3b\x23\x7e\xfd\xd4\x53\xc1\xd1\x6a\x20\x78\x7e\x8e\x56\xeb\xe7\xc8\xc3\xee\x87\x05\x51\x7b\x57\xbb\xf2\xee\xf4\xd3\x8a\xe8\x5a\x5c\x79\xd9\xb5\xa0\x8e\x0e\x56\xc3\x06\xf9\x23\x58\x6d\x34\x76\x36\xdf\xe0\xee\xc1\x76\x64\xdb\xd6\x68\xcc\x7c\xb8\xa2\x47\x4a\x7e\xe6\x67\x1d\xec\x46\x3f\xd2\xb8\xb1\xcd\xdb\x3e\x35\x1a\x6b\xf7\x47\x16\x7a\x36\x54\x8c\x4a\xed\x15\x7f\x16\x27\xa2\xeb\x98\x6f\x6d\x5c\x69\x6c\x99\xb6\x22\xb5\xc1\x46\xfe\x73\x1a\xa0\x16\xe9\xff\x63\xec\x5d\x72\xad\xc9\x95\xeb\xe0\xbe\x46\x71\x66\xf0\x67\xf2\x19\x01\x5c\x9c\xce\xdf\xb6\xe7\x40\xee\xcd\x34\xd4\x90\x74\x71\x2d\xcd\xdf\x60\xac\xb5\x98\x25\xcb\x76\x15\x0a\x85\x8f\x5c\x27\x37\x93\xc9\x47\x30\x18\xcf\x89\x67\xd9\x45\x44\x38\x32\xd2\x26\xc6\x4b\xae\xac\xc2\x65\xcb\x2a\xf7\x2a\x5c\xb6\xaa\xf1\x34\x7d\x38\xe8\xf5\x66\x15\x83\x4e\x72\x03\x27\x2d\x71\xbb\x0f\xc7\x9c\xd4\x06\xb1\x8c\xad\x9e\x96\x9e\xdf\x1f\x73\xee\x02\x4a\xa3\xaa\xda\x75\x7c\x0e\x29\x04\x22\x1b\xd3\xbe\x65\xd1\xc1\xcb\xe0\x5a\xb9\xe8\xe0\xc5\xc8\x25\x8b\x0e\x5e\x56\x49\xd5\xc2\xf3\xca\x4c\x9d\xe0\x84\x70\x64\xe0\x87\x45\x37\xff\x45\x3f\x2c\xab\x7a\x2d\x84\x3a\x55\x0d\x83\x03\x37\xb2\x3b\xcf\x60\x8a\x3e\xbe\xe7\x8f\xc9\xfe\x97\xfc\xa5\x60\xfd\xb1\x26\xc2\x01\x1b\xf4\x52\xbb\x7a\xff\xfe\x30\x84\xfc\x82\x0b\x14\x15\x95\x6b\xf2\xd2\x0c\x59\xef\xa2\x3f\x11\x53\x2f\x2e\xf8\x13\x75\xcb\xac\xe1\x6e\x0b\x15\xd6\xa2\xe7\x8e\x41\x5d\xb1\xe8\x8d\x63\x15\xfc\x0a\xfd\x6f\xac\x76\xbe\x07\x0c\x19\x72\x22\xae\x89\x54\x98\x4c\x2f\xb0\xab\xe8\x05\x98\x0c\xfa\xaf\x74\x1e\x8d\xf4\x3a\x61\x0a\x81\x45\xbf\x12\x66\x1f\x58\x74\x15\x31\x68\xdd\x96\x5c\x45\xe0\x5b\xbe\x26\xd3\x5b\x42\x2a\xbb\xe8\x2b\x42\x8f\xe1\x45\x07\x10\x3a\x75\xec\x2a\xd6\x90\xb3\x57\xe1\x32\x8c\x78\x75\x0b\xee\x20\x39\xeb\xad\x83\x97\x1c\xbe\x15\xb4\x11\x8e\x64\x8b\x1e\x1e\x86\x0c\xc8\x8b\x1e\x1e\x15\x2e\x5c\x4b\xbe\x14\x30\xe3\xd8\x55\x7c\x0f\x96\xea\x4c\x1c\x1a\x2c\xce\x99\x70\xe7\x81\x7d\xf0\xae\x7e\xf0\xd7\xc6\xea\x17\x7f\x65\x15\xe7\x33\xcc\x31\x77\x15\x5f\xdb\xd8\x14\x38\x75\xd8\x8b\xec\x6a\xc7\x5f\x13\xab\x86\xbf\xaa\x8a\xa1\xc1\x82\x9b\x09\x73\x0f\x83\x85\x5d\x65\xcb\xc6\x6a\x7c\xfe\x9f\xdb\x54\xee\x47\xf1\x3d\x95\xaf\x19\xf8\x9e\xce\x2a\x3c\xfd\x1a\xce\xfd\x49\xb1\x6d\xe3\xf7\x64\x6c\x91\xc6\xef\x81\x3b\x86\x35\x7e\x00\x3c\x2e\xac\xb1\xc7\x05\x21\x14\x10\x23\x74\x57\x07\xfe\xda\x58\x85\xf1\x06\x5f\x54\x90\x5a\xe2\xe2\xb0\x16\xec\x0a\x44\x49\x5a\xf4\xa3\x68\x94\xcc\xcc\x82\x65\xd2\xba\xaa\x68\x8a\x9d\x44\xc0\x4a\x6b\xdc\x07\x45\x4e\x45\xec\x33\xbf\x88\xdb\x02\xfe\x0e\xd6\xb8\x2d\x28\x7d\xc9\xfc\xa0\x81\x2f\x68\x7a\x16\xaf\xe5\x26\x61\x6a\xcd\xc6\x4d\x02\xc7\x84\x46\x49\x24\x1d\x13\x0c\x31\x21\x16\x3d\x11\x0c\x91\x07\x16\x3d\x11\xda\xa5\x3e\x22\x73\x1b\x05\x8c\x74\x11\x30\x38\x63\x2e\x5a\xfd\x37\xca\xd5\x60\xc8\x7f\x1b\xdc\x54\x17\x2d\xf9\x1b\x65\x65\xb0\x49\xf7\xcc\x1d\x04\xa3\x73\xa3\xdc\x60\x56\x0a\xda\x71\x79\xa0\xe5\x78\x23\x05\x87\xe5\x78\xbb\xb9\x0d\x98\xb5\x13\x51\x01\x16\x6d\xc1\x0d\xe6\xeb\x8b\xf6\xdc\x06\x4b\xf1\x45\x03\x67\x86\x6f\x58\xb4\x4a\x2e\x5a\x27\x48\xe9\x68\xbc\x91\xd3\xc0\xd4\x78\x23\x87\x59\xe8\xae\x3a\xab\x10\x9f\xe3\xce\x4d\x53\xcf\x96\xf8\xa2\x4e\x19\x3e\xee\xdc\x33\xa2\xb5\x65\x18\x70\x2f\x5a\x60\x1a\xaf\xdc\xb4\x93\x34\xde\xa2\x69\x09\x29\x49\xed\x34\xca\xa0\xf9\xf1\x14\x6b\xc1\x8a\x7e\xc1\x90\x6e\x57\x31\x70\x08\xb5\x65\xbc\xdd\x4e\x53\xcb\xc6\x6a\x68\xd9\x44\x8b\x98\x5d\x0f\xa6\xb9\x6b\x3a\xd5\x19\x1c\x48\xdc\xf6\xc8\xb8\x4c\xdc\xdf\x8c\x57\xdf\xe9\x7c\x2d\xae\xaf\xd3\xa9\x1e\xe0\x7a\x74\x98\x60\xf0\xbe\x0a\x4b\xbb\xbb\xf1\x5a\x45\x33\x37\xe3\x25\x93\xb6\x6a\x15\xd9\x50\x16\xcc\xc6\x9c\x77\x3d\x1a\x82\x19\x2f\x86\x30\x04\xbb\xeb\x45\xfa\x08\x9b\xac\x9e\xf9\x5a\x5c\xa3\x3a\xc2\x44\x3f\xb6\x20\x9b\xc1\xf4\xed\x2a\x6c\x28\x63\x94\x77\x15\x37\xdf\xa0\x53\x8f\x81\x53\xe9\xb0\x2d\x7e\x90\x06\xfe\xee\xb0\x13\xda\x55\xdc\x23\xcc\x58\x85\xb1\x66\xef\xac\xe2\xbd\xa6\x2a\x5e\xd4\xf9\xf0\x64\x34\xa5\x78\x2f\x93\x90\x77\x1c\x0f\x0f\xb3\x7f\x77\x5c\xb1\x1f\x8a\x9b\x3b\x38\xc0\x87\xe9\xbf\x3b\x2e\xd1\xbb\x3a\xf0\xd7\xc6\x2a\xde\x1b\x4b\x7d\x57\x21\xaa\xb9\xf9\x22\x88\x14\x2c\xf1\xb7\x03\x1f\xa8\x96\x29\x43\x48\xfc\x6d\xcc\x58\x87\xd0\xeb\x81\xa8\xfa\xee\x56\xf0\x22\x04\x3e\xef\x48\x60\xf8\x30\x9b\x73\xb7\x82\x3e\xc3\xf1\xb0\x83\x97\x79\x98\xe3\xb8\x23\x7e\xc1\xc3\x1c\xc7\x7d\x73\x6a\x7f\x42\xf2\x1f\xa4\x38\xde\xcf\xb2\x17\xe8\x23\x74\x50\x0f\x85\xe2\x1d\x9a\xd1\x87\x42\xf1\x9e\x92\x1e\x46\xa7\x2a\xbe\x1e\x79\x8c\xbb\x55\xf4\x22\x21\x41\x10\x92\x66\xef\x2a\x22\x53\x15\x55\xf9\x70\x63\xb5\xe0\xaf\xf8\xdc\x34\xd8\x2b\x54\x11\xb0\xbb\xc3\x67\xf6\x61\xd2\xe3\x8e\xfc\x1b\xbb\x8a\x9b\x7d\xe7\x5f\x31\x27\xf0\xb7\x7d\x3c\x73\x4e\xac\xb1\x7a\xe3\xaf\x95\xd5\x84\xbf\xf2\x45\x58\xbf\xd0\xb3\xec\x2a\x06\x12\x6b\xd0\x33\xf8\x0a\x38\x26\xef\x2a\x9c\xa5\x0d\x63\x95\x11\x7a\x0b\xa6\xe5\xbb\x8a\x0f\x54\x53\xbc\x25\x5f\xec\x15\x65\x06\x9c\xcf\x4c\x79\x12\x87\xbd\xf0\x8b\x12\x1e\x86\x9f\x8e\x69\x24\x21\xc3\x35\xc4\xbe\x7d\x98\xe0\xd7\xd4\x0d\xca\x43\xa1\xae\x7e\x98\x23\xd7\x10\x39\x7e\x57\x0b\xaa\x7c\x18\xe2\x6e\xe7\x72\x46\x78\x54\x73\xae\x23\x7a\x42\xc0\xce\xf3\x61\x6a\x5b\x73\x76\x92\xf2\x50\xe7\x62\x87\x97\x01\xf5\xe2\xbb\xba\x7e\x8f\x5e\xfc\x41\x46\x5a\xe9\xc5\x1f\x57\xc4\x4e\xae\x5f\x08\x17\xcd\xb9\xcc\xfa\x1f\xd5\xe4\x8f\x1b\x6f\x95\xd9\x58\x05\x87\x96\x9d\x55\x6c\xee\x3b\xb1\x0a\x41\x4e\xb9\x59\x85\x95\x40\xc3\x6f\x9d\x03\x5b\x12\xab\xc8\x53\x5c\x32\xab\xfc\x6d\x61\x15\xbf\x35\x34\x05\x41\x5d\xcf\x5c\xc0\x4e\x2a\xc2\xfd\xea\xa0\x13\x88\x90\xff\x20\xc5\xe8\x9e\x41\x3e\x8c\x2c\xb6\x99\xbb\xcc\x39\xfb\xfc\x5e\x5a\xa7\x42\xae\xf3\x78\x98\x20\xe2\xaa\xb1\x2b\x11\x95\x22\xc6\x78\x5c\xe0\x32\x48\x23\x98\x88\xc2\x48\x23\x90\x40\x62\x57\x8d\xd5\x18\x45\xc3\x0c\x30\x5e\x79\x47\xac\xa9\x07\xb1\x32\x11\x0e\xe2\x41\xa4\x4c\x07\x13\xf1\x50\xa8\xda\x4c\x7f\x64\xaa\xe7\x60\xb5\x1f\xc6\x0d\x6c\xf0\x87\x7d\x06\x3e\xb4\x20\x78\xfe\x43\x63\xf6\x02\x15\xd5\x43\x63\xf6\x02\x7d\xd6\xc3\x83\xb4\x40\x09\xb5\xab\x0d\xd5\xca\x2a\x8d\x9b\xf8\x57\xc6\xe3\x61\x25\xec\x51\x12\x2b\x61\x5f\x05\x09\xdb\xae\x16\x54\xd9\x0c\xcc\x63\x63\xc4\x26\x24\xb3\x18\xf6\xc9\xc8\x84\x9d\x2f\x70\x04\xd9\x8b\xaf\xa4\xe1\xe1\xa5\x4a\x82\xb6\x2f\xb1\x1a\x5b\xb9\xb0\x12\x89\x5e\x9d\x95\xfa\xfb\x83\xc4\xff\x0f\xad\x13\x7b\x65\xa5\xa3\x89\x9b\xd5\x58\x1e\x8d\x15\xa4\xfd\x61\x25\x9c\x9c\x2f\x56\x22\xd1\x8d\x1a\x47\xca\x1f\x56\x9e\xfd\xda\x3f\xb5\xb8\x79\x68\x66\xc8\x21\x86\x91\x21\x07\x38\x4c\x0c\x79\x48\xcc\xc8\xd2\x97\x6e\x3d\xb6\x76\x45\x8f\x85\x63\x75\x47\x65\xef\x54\x64\xa5\x7b\x26\xc3\x5e\x75\x8d\x19\xc2\x5e\xa9\xf2\xc5\xdf\xd8\x79\x58\x22\x41\xfc\xb8\xab\xbb\x4d\xac\x19\x9a\x7d\x81\x50\xc0\xe8\x0b\xfa\xb6\x87\x36\x5f\x39\xb3\xb2\x3b\x85\x55\x48\x3b\x2d\x9c\xb3\x13\x61\x51\x0a\x78\x92\x5d\x0d\xd3\x98\xc6\x4a\xc1\xc0\x5f\xac\xc6\x0c\xa9\x12\x81\xc5\xc2\xdc\xe8\xb9\xc6\x65\x38\xa1\x91\xe6\x09\x00\xd8\xb5\x08\x2c\x1a\x00\x02\x32\x94\x08\x2d\x4a\x20\x78\xa7\xd0\x0a\x01\x88\xbd\x5d\xd2\xe6\x79\x02\x48\x58\x07\x71\xef\x23\xc0\xad\xf7\x3e\x31\x60\xe9\x93\x04\x50\x0a\x7e\x3a\x96\xb9\x5e\x52\x3e\xc0\x04\x70\x1d\xe0\x83\x36\x5e\x00\xd9\xaf\x37\xb5\x06\xc0\x0c\x7d\xf7\x69\x94\xbc\x76\xd1\xc7\xc1\x5f\xbd\x47\xaa\x43\x02\x48\x2c\x91\xd4\x53\xb8\x9a\xb7\x60\xbb\x02\x00\xfb\x8e\x34\x9e\x04\x82\x45\x48\x9b\x5d\x24\x10\x14\x21\x84\x9c\x01\x40\x53\xd6\xfa\x79\x0b\x74\x56\x35\xa2\xbf\x01\x40\xa4\x84\x74\x5e\x0b\x2f\x9f\x16\x76\xbf\x04\xe2\x6b\xbb\xe9\xb5\x46\x95\x61\xd6\xb7\x20\x74\x2b\xd2\xef\x05\x00\xca\x54\xef\x33\xb7\xce\x44\x3d\xe9\x05\x2a\x1a\x55\xd7\xe1\x30\x51\xc3\x6c\x8a\x40\x04\x35\xe9\xe7\xe3\xa0\x63\x68\xe1\x7d\x05\x80\x91\xff\xbd\x1f\x00\xb1\x33\xaa\xbe\x05\xf6\xf9\x25\xec\x5b\x00\xc0\x38\xaa\x9c\x21\x04\x71\x28\x61\x57\x03\x80\xb6\x20\x4d\x6d\x40\xc8\xdc\xc3\x74\x98\x40\x74\xdd\x4e\x1b\x7f\x14\x2d\x13\xe8\xb0\x44\xd1\xfa\x80\x6d\x60\x2b\xe9\xfc\x84\xfa\xcd\x4b\x00\xc2\x89\xb5\x72\x16\xff\x62\x60\x19\xb7\x03\x84\x58\x22\x04\x93\x00\x20\x00\x7e\x5f\x0b\xcb\xb3\x16\xf6\xb8\x04\xb8\x1c\xf4\x16\x24\xdd\x42\xae\x59\x02\x9f\x73\xc9\xdb\x00\x8d\x45\x8a\xf5\x17\x28\x18\xc2\xeb\x00\x0f\x3e\x8e\x1b\xc8\x21\xf2\x29\x91\xd7\x2a\x80\xc4\xcf\x2f\xf7\x01\x10\x9f\xe6\x3a\x40\x6c\x8f\x62\xda\x1e\xe4\x50\x8b\x69\x6e\x3d\x21\x35\xb3\x69\xe1\x7a\x76\x2a\x60\xf4\x16\x44\xa8\xe8\xe9\xbc\x25\x43\xd5\x19\x62\xd0\x00\x90\x67\xa1\x85\x62\x29\x80\x86\x7e\x14\x6d\x42\x87\x5f\x6e\x0b\x39\x0a\x00\x48\x0b\x22\x35\x6f\x00\x50\x26\xdb\x59\x1f\xde\xa9\x7a\x17\x41\x21\x7b\xd5\x23\xa0\x30\x01\x2a\x92\xd2\x01\x70\x21\xd4\x3a\x25\x0b\x56\x42\xa2\x4e\x20\xf6\xcb\xa5\x3d\xe7\xd0\xb5\xd6\xee\x7f\x76\x8d\xe0\xd3\x7c\x63\x3e\x00\x2c\x2b\x4a\x3a\x40\xf4\xba\x6a\x43\x22\xf1\xfd\x5d\x42\xbe\x19\x00\x6e\xbc\xad\x9f\x27\x1c\xfc\x69\xe8\xbe\x03\xc0\x99\x58\xec\xac\x15\xd8\x8a\xf7\x74\x56\x02\xec\x65\x11\xa3\x70\x03\x03\x51\x8b\x6a\xd2\xa4\x0d\xdc\x96\x8a\x25\xfe\x64\x64\x9a\xad\x68\x16\x07\xc3\x6f\x44\x12\x7a\x00\xb1\x12\x5a\xf0\xd8\x01\x20\x0a\x42\x2b\xe7\x09\x38\xde\x5b\xd3\x3c\x33\x58\x7c\x0f\x63\xc9\x00\x4c\x92\x6c\x3d\x01\x86\xb2\x9c\x25\x3a\x22\xdd\xfb\xed\xd7\xe9\xd8\x50\x06\x56\x75\x1d\x9a\xc7\x1a\xce\x81\x01\x40\xbb\x68\x61\xe5\x4d\xe0\x0b\x40\x3d\xfd\xc8\x38\x4c\x6f\x61\x3c\xbe\x2a\xc2\x40\xd5\x84\x87\x04\x0d\x00\x4e\xb4\xde\xce\x13\xa0\xf1\x21\xd1\x06\x00\xd2\x11\x1e\xab\x01\xd0\x40\xcd\xb4\xaa\x07\xb6\xbd\x15\x2d\x2f\x86\x32\x6b\xe5\x0c\x10\xae\xf0\x35\x7c\x26\x01\x4c\xfe\xa4\x1c\x00\xbb\xbc\xf0\x27\x0c\xdc\x85\x5b\x30\x81\x2f\x4e\x92\x22\x80\xab\x3a\x9d\x27\x70\xef\x4a\x9a\x28\x46\x7d\xea\x57\x7e\x9f\xe0\x6b\xf5\x16\x04\x6c\x6a\x97\xba\x4e\x81\x78\x0f\xab\x75\x02\xb8\x26\x9e\xb7\x40\xb0\x6d\x45\xb4\x84\x22\x68\x2b\x3a\x8c\x27\xee\xd9\xad\xe6\xf3\x16\xd8\x9e\x98\x96\x36\x25\xcf\x56\xc4\x47\x48\x7e\x5c\xb4\xd6\x29\x23\x6e\x97\x28\xe7\x4c\x14\x67\xa6\xf3\x04\xc8\x71\x11\x97\x30\x91\x60\xab\xd6\xd3\xf5\x0c\xcb\xb5\xb7\xeb\x19\xe6\xfc\xcd\x5f\x00\xfe\x93\xe7\x5b\xb0\x3d\xfa\xad\x63\x72\x66\x68\xe5\x5d\xb3\x3f\x33\x24\x6f\x45\x27\x2b\x82\x07\x6d\x40\x43\x88\x60\x3d\x35\x9c\x6b\x03\x28\x6c\xb4\xe9\xf3\x21\x5e\x6d\xf7\x19\x20\x44\x7e\x29\x45\x0b\x77\x22\x21\x4f\xf3\xf3\x71\x15\x8c\xd6\x2d\xae\x69\x82\xd8\x76\x13\x41\x99\x48\x6b\xd3\xad\xbf\x4f\x60\x9b\xea\x74\xa6\x00\xb5\x86\xe1\x32\x81\x90\x09\xd7\xfa\xb6\x11\x04\xbb\x9d\x8f\xa3\xf9\x6f\x11\x6f\x46\x49\x6a\xbb\xf3\x79\x0b\x0c\x91\x43\xcd\x46\xe0\x83\x21\x14\x00\x9b\xa6\x7e\x88\x01\x83\x44\xf4\x74\x56\x72\x0b\xfa\xd1\x42\x75\x0c\x00\x4a\x9b\xf0\x03\x0f\x00\x31\x01\x2c\x5c\xfb\x02\x00\xd7\x64\xe1\x5a\x47\x00\xbc\xd9\x19\x64\xa3\xa0\xdd\xd2\x01\xbe\xd8\xea\xf7\x01\xa0\xfa\x17\x97\x40\xd7\xe6\xee\xd7\x79\x0b\xce\x1a\xbf\x4f\xa3\xe0\x33\x0f\xcf\xac\x7b\x5d\xea\xef\x4f\xe2\x2d\x26\x22\x3d\x11\x4f\xbe\x87\xbf\x3f\x00\x0a\xcc\xc5\xcf\x4c\xc7\xdd\x36\x7c\x73\x08\x54\xdc\x4a\xcb\x01\xb8\x1b\xea\x01\xe0\xca\x74\xb5\x03\x18\x7a\xfa\x67\xf6\x4d\x7c\xda\xf1\x19\xd7\x01\x20\xed\xf2\x17\x08\xf2\x13\xb9\x0e\x02\xa0\xe1\x4b\x28\x0d\x01\x60\x5a\x6f\x9d\x13\xf4\xc8\x85\x7c\x89\x00\x54\x0e\x22\xe9\xf4\x8f\x6d\xd7\xa1\x14\xf0\x64\xed\x26\xe6\x4f\x32\xd6\xc3\x52\xd1\x9b\xd5\xda\x59\xd5\x70\x34\x6d\xf7\xa1\x25\x93\x8c\xca\xd9\xe5\xd3\x69\xa6\x7c\x1f\x00\xcb\x5c\x04\x9b\xbe\x81\xd5\xfa\xf9\xc9\xa4\x8e\xe6\x05\x06\xc6\xf7\xbc\x85\xe3\x21\x06\x12\x77\xca\xbb\xd6\x33\x03\x34\xac\xc8\xa7\x8d\x0f\x09\x83\x0e\x1f\xfa\x85\x41\xc4\x06\x00\xb6\x36\xd6\xcf\x13\x93\x72\x44\x3f\x00\x4c\x52\x0f\x05\x87\x65\x77\x4f\x67\xbb\xe1\xb2\xd8\xcf\xf9\x3d\x19\xa1\x36\x42\x5c\x03\x80\x3c\xea\xb0\xba\x93\xb2\x69\x3b\x3b\x03\x59\x8a\xfb\x6d\xe5\x00\x15\xb3\xff\x3e\x01\x32\x78\xb6\xfd\x22\x05\x3f\x4f\x40\xc7\x5c\xfa\xe9\xfa\x43\x35\x91\x8e\xda\xf9\x50\xe3\xd6\xdf\x27\x30\xb7\x87\xea\x3d\x52\x25\xe1\xe3\xc2\x7c\x19\x26\xce\x85\x00\xa2\xf5\x59\xb8\x9b\x01\xa0\xad\x4f\xd6\x4f\x22\x7b\x24\x05\xb5\x00\xb0\x99\x2e\xd2\xb4\x0d\x80\xd1\x22\xf5\xdd\x40\x3f\x92\x5f\x02\xdc\x4c\xed\x00\x14\x71\x19\x81\x44\x7a\x94\xf5\x04\x75\x9a\x85\x24\x6c\x03\x5f\x10\x39\xbd\x96\xb9\x22\x6b\x3b\x3f\x21\x63\xc1\x6b\xdd\x6d\x14\xfd\x5a\xef\x07\xb8\x8f\x26\x91\x40\x3f\x32\x5b\x02\x90\x61\x37\x3b\x00\x76\xf6\xfd\xfe\x04\xe3\xd1\xd4\x8f\x4c\xa3\x34\x2e\xcb\xdb\x20\xf9\x2d\xf6\x02\x94\xa9\x17\xf5\xa3\xf0\x14\x28\x7a\xa2\x90\x8f\x28\xf7\x01\xb0\xa4\xba\xfa\x01\xdd\x5d\xef\x77\x3f\x00\xc7\xf4\x05\xd0\xb1\xae\x51\x87\xa6\xad\xfb\x19\x42\x98\xe8\x42\xb3\x18\x00\x82\xa3\x40\x1d\x1a\x00\xe4\xa3\xad\x5d\x02\x9c\x0c\xdf\x59\x41\x3e\x91\x27\xe7\x52\x1b\x83\x0c\x5f\xaa\x07\x80\xbe\xe8\xd2\x6b\x61\x01\x87\x98\x54\x01\x4c\xda\x57\x15\x35\x3a\x29\x78\xcd\xea\x3a\x84\x68\x35\x8c\x19\x08\x80\xef\xb6\xf7\x89\xe0\x66\xc5\x7a\x6c\x00\x37\xe3\x33\x1e\x1f\x2e\xcb\x52\x0f\x30\x20\x4b\xd0\x13\xb4\x40\x2a\xa5\x1c\x00\x5a\x33\xd3\x34\xc0\xcf\xad\x49\x74\x70\x1b\xbc\xcc\x10\x34\x81\xc0\x07\x5c\xb5\x56\xd0\xc3\xa0\x9c\xd7\x75\x80\x86\x01\x3a\x4f\xc0\x60\xce\x93\xbe\xe5\x81\xe0\xa8\x6b\x57\xf2\x12\x5b\x2b\x19\xf1\x9b\x3e\x0f\x2d\x3c\xb3\x01\xc0\x26\xad\xe6\xf3\x04\x05\xec\x1a\x53\x87\xf9\x44\xc4\xf0\xfd\xd3\x03\x6c\x3f\x8d\xcd\xe4\xe5\x00\xa0\x58\xb7\x5e\x40\xb9\x53\x2a\x07\x40\x08\x6d\xe7\x9d\xef\xf6\xc8\xd6\x7a\x23\xb9\x57\x00\x19\xe6\x11\xba\x48\xde\x8e\x28\x8c\x25\xf1\x72\x70\x3b\x02\x92\x59\x29\x6a\x03\xb1\xc0\x90\x2c\x16\x00\xbf\xfc\xe6\x94\x38\xd8\x90\x6a\x1a\x70\x87\xd8\xb8\xd5\x3b\x1d\xc0\xd1\xa8\xda\x80\x5c\xbf\x35\x9e\xf6\xb7\xbb\xb2\x7c\xe9\x89\x01\xb1\x75\x23\xff\x7c\xfb\x80\x22\xbd\x9d\x36\x90\xb5\xc4\xca\xa5\x36\x24\x9a\x11\x19\xf4\x49\x39\x8b\x68\x9a\xd3\x7a\xb3\xb6\x03\x40\x36\x51\xed\x3a\x00\xae\xef\xf9\xb4\x01\xa2\xff\x8e\xd8\xa4\x01\x46\x39\x3f\xc1\xd5\xf0\x3a\xf3\x3c\xc1\xfb\xd6\xeb\x00\xd1\xd3\x62\x67\x90\x71\xd4\x16\xc9\xd0\x36\x10\x7b\xd8\xfb\x0b\x40\x72\x79\xda\xf8\x90\x91\x2d\xea\x3a\xcc\x29\x8b\x35\x75\x8c\xae\xe0\xc5\x35\x40\xd8\x5d\xb5\x55\x3f\xc0\x84\x5e\xbc\x1e\x20\xb6\xca\xa1\x36\x4e\x3b\xc4\xd2\xd5\xd3\x2f\x1d\xbf\xce\x64\x7f\x11\x4d\x5a\x02\xd3\x0d\x40\x82\x7a\x3a\xf6\x45\xc0\x8d\x43\x8e\x1d\xce\xb3\x4d\x02\x8f\x0d\x40\x84\x78\x3e\x0e\x66\x89\x25\xe9\xe0\x70\x18\x26\x96\x43\x18\x1c\x9e\x98\xe5\x10\x7d\x87\x9d\x5c\xbd\x7b\x3d\x00\x2e\xe4\xf6\x3e\x81\x15\x74\x16\x3f\x7c\x2e\x6b\x3b\x6f\x01\x53\x50\x52\x7f\x01\x04\x55\x3b\x1f\x47\xa3\xb9\x72\x3e\x8e\xbe\x5a\xe5\xec\x39\x84\x12\xaf\x55\xc7\xa4\x23\x98\x78\x3d\x07\x98\x3f\x90\x5c\x9e\x23\x0e\x89\xf5\x77\xc7\xca\x01\x20\xba\xcb\x07\xc0\x10\xf6\xb3\xb4\x21\x65\xb3\x43\xe4\x90\xdc\x7e\xb3\x1e\xd7\x01\x40\xf4\xcf\x9e\x7b\xe0\x01\x75\x9f\xe5\x80\x24\xf7\xf5\x9c\xce\x48\x73\xbf\xfb\xf1\x02\x1f\xd0\x56\xbe\x85\x89\xde\x6b\x68\x5b\x09\x60\x13\xea\x20\x65\x8e\xf6\x26\xb9\xd3\x4d\xa5\x56\x71\x4d\x36\x12\xb5\xdf\x56\xc4\x25\x20\x4f\xfa\x8d\x44\xee\x04\xc0\x89\x96\xf7\x89\x79\x8c\x2e\x02\x40\x0c\xe6\x2a\xa9\xf4\xcd\x2c\xe8\x55\x77\x92\x7b\x90\xb6\x56\x2d\x5c\xa4\x04\xbf\xcb\x61\x4e\xf6\x7f\x10\x43\x9e\x27\x60\x62\x5c\x75\x92\x0c\x84\x12\x2e\x92\xb0\xdf\x4c\x15\x5e\x25\xb0\xb9\x07\xd8\x28\xf8\x95\x12\xa0\x89\x95\xde\x02\xad\x79\xad\xe2\x12\xe8\x0b\x54\xec\x7a\x01\xc8\x36\x6f\x35\x9a\x90\xfe\xf9\xd2\x2a\x1c\x09\x8e\x1c\x55\x0b\x77\xc0\x22\xac\xf8\x75\xde\x02\x45\x47\xca\xef\x13\x20\xd2\xa2\x41\x4c\x99\x5d\xce\x91\xcf\xa4\xd9\xb5\x8a\xf3\x1a\xd0\x27\x44\x1a\x63\x01\x0d\x47\x5c\x3d\x00\x84\x1c\xda\xc8\x23\xe3\xa8\x4d\xf9\xaf\x1c\x60\x23\xc7\xce\x28\x11\xe5\x02\x00\xc8\x60\x33\x01\x88\xd4\x5b\x5b\xd3\x5a\x29\x94\xa1\x9d\x19\x40\x52\xe4\xd6\xca\xf9\x09\xe6\xf9\xfa\xc3\x13\x48\xa0\x98\x5e\x00\x56\xb0\xe2\x5c\x06\x0c\xbf\x4a\xd7\xc1\xc1\x7c\xc4\xc5\xcf\x9a\x05\xaf\x57\xa4\xe2\xb9\x87\x7c\x8d\x8b\x9e\x40\xe4\xd3\x66\xda\x4c\xf4\xda\xb2\x52\xcf\x13\xa0\xe0\xa6\xe3\x9a\xae\x5a\x76\x98\xbf\x81\x28\x9a\xed\xdd\x08\x70\xc8\xea\xd7\x59\x2b\x38\x59\x8b\x89\xfc\x20\x87\xe6\xdd\xca\x99\xc5\x4e\x61\xe7\x19\x31\xd3\xee\xd2\x4f\xa0\x3e\x6d\x12\x89\xdc\x48\x1b\xb7\x9f\x28\x07\x08\x4e\xff\x12\xe3\xc6\x1c\x69\xe6\x62\xdc\x90\xd4\xe6\x6e\xed\xcc\x1c\xb2\x3f\xf4\xa6\x2b\xc8\x78\x20\xa8\xcc\x3a\x37\xe7\xa5\xf1\xe0\x4f\xe6\x0d\x4b\x85\x22\x5e\x64\x26\xda\xdf\x69\x01\xd2\xb0\xb1\x9d\xd9\xa7\x81\xa2\x95\xaa\x27\x2a\x4d\xcf\x34\x95\x0c\x5e\x0b\xd5\x36\x81\x15\x80\x36\x13\x63\x86\xc2\x6a\x1b\x00\x6d\x22\xb4\xaa\x27\xb2\xc4\x16\x5d\x73\x6f\x86\x5b\xec\xa6\x13\x9e\x56\x6b\x4d\xa2\xee\x9b\x11\xfd\x8a\xf3\x02\x7a\x4f\x64\xde\x6c\xef\xb7\xc0\x19\xa9\xdf\xf7\x01\xa0\xc4\x3c\x4c\xc1\x34\x48\x0c\x9b\x26\x7b\xc2\xd2\x01\xce\xe3\x01\x0c\x3a\xbb\x76\xbd\x05\xc1\xb5\x9a\xc4\x3b\x37\x43\x66\xd5\x2e\x9e\x93\x41\x9c\x4c\xda\xa9\x7b\x4e\x8a\xed\x75\xe4\x43\xd1\x7c\x37\x29\xd6\x6e\xc4\xbf\xb9\xad\x88\x17\x41\x14\x8c\xbb\x75\x71\x3c\x93\x9e\xcc\x92\xa1\xdd\x13\x39\x51\x60\x41\x1c\xc0\x03\xfb\x07\xc9\xd0\x92\xdd\x5c\x63\xe4\x45\x36\x80\x01\xe2\x49\x92\xec\x86\x41\x9b\x44\xee\xc9\x92\x53\xe9\xa1\x9f\xe8\xe2\x47\x92\x9e\x2c\xd3\xf9\x9a\x9c\x68\x32\x58\x65\x36\x29\x92\x92\x55\x66\x4f\xe6\xcd\x27\x19\x82\xeb\xb6\x76\xde\x02\x33\xc8\x2a\x61\x4b\x32\x84\x5c\x85\x55\x53\x00\x50\x67\xba\xe4\x22\x1b\x80\x3f\x8c\xab\x0d\xe3\x05\x94\xe7\x44\xe2\x85\xcb\x4a\x53\x4f\x3f\x24\xc7\x9e\x0e\x10\x44\x49\x5b\x3d\x19\x6c\xf1\x11\x7a\x38\x00\xd8\xc5\xb7\x4e\xf1\x54\xa2\x23\xb7\x95\xa6\xaf\x7d\xc8\xde\xf2\xac\x49\x54\x8a\xc1\x56\x14\x00\xd9\x28\x4d\x83\xc3\x80\xb9\x69\xad\x27\x2a\xc5\x9a\x73\x37\x24\x67\xe8\x86\xc6\x1d\xb5\x81\x0f\x42\x4b\xa8\x0d\x5c\xc8\xfd\x2e\xf9\x00\x0c\x3e\x51\x0e\xc0\x9f\xe8\x2d\x10\x0f\x37\x49\xb6\x93\xc3\xa6\xb7\x49\x94\xb9\x81\xe8\x58\x72\xb5\x81\xb0\xe0\x4d\x7c\x55\x72\x6a\x60\xda\x79\x0b\x5c\x4c\xab\x84\xbf\xc9\x1b\x78\x22\x4f\xe7\x09\x29\xf7\xf5\x16\x58\x72\x16\xcf\xf7\x01\xb0\x2b\x4f\xa3\xc6\x8d\xfc\xa7\xe1\xc7\xe3\x69\x98\xf9\xb4\x9e\x35\x14\x10\x21\x9a\xf8\x81\xe4\x14\x10\x9a\xbd\x00\x58\xff\xaa\x9f\x4c\x1a\x07\x9f\x59\x44\x80\xaf\x7a\xd7\x17\x80\x78\xf5\x0c\x27\xc2\x57\xc1\xa8\x8b\x00\xd8\xd4\x5c\x0e\x00\xd7\x94\xdc\x0f\x00\x2d\xf5\x75\x9e\x20\x39\x6e\x1a\x5f\x5c\xac\x7b\x3a\xaf\x45\x76\xa9\x5a\x6e\x0d\x16\x63\xb9\x5c\x49\xaf\x05\x77\xdc\xfa\x59\x09\x12\x99\xdd\x5a\x3c\x88\x54\xd0\x74\x5e\xa5\x71\xd1\x66\x50\x74\x60\xdc\xd0\x53\x76\x6d\x95\x71\x93\x95\xd1\xba\x1f\x58\xc4\x56\x78\x0a\xa4\x91\x20\xba\x93\xfe\x2a\x8d\x4c\x83\x83\xae\x46\x91\x84\xa0\x99\xc6\x63\x14\xa6\xb8\xa5\x90\x20\x31\x45\x7f\xb7\xa6\x8e\x55\x0a\xd5\xba\x5e\x5b\xe5\x14\x76\x1f\x80\x49\x18\xf4\x16\x5a\x45\xf7\xf3\x44\xa3\x56\xe8\xf4\xc3\x61\x31\x98\xaa\x1a\x9d\x90\xf7\xa4\xf3\xb5\x22\xc7\x5d\xfd\x98\x34\x32\xd4\x44\x0d\xdc\x15\xe1\xd8\x16\xc0\x87\x12\x7b\x91\x41\x7a\xc2\x15\x89\x11\xd2\xf8\x50\xa8\x46\x7e\x31\x31\x25\x5d\xbb\xb4\xa9\xc7\x97\x3c\xb8\x36\x35\x3d\x76\x60\x07\x4a\x00\xf1\xcc\x35\x73\x4c\x15\x53\x75\xa9\xdf\x40\x87\xa5\xf3\x25\x00\x12\xc3\x5b\xaf\x65\x0e\x12\x38\xd2\x01\x70\x1a\x63\x96\x03\xd4\x5f\x19\x6b\x02\x90\x74\x5c\x80\x84\x8c\x3c\x15\xd3\x4c\xda\xc3\x55\x00\xd8\x76\x17\xc1\x9e\x09\xda\xcb\x5b\xc4\x76\x26\x26\x49\x7d\xdb\xa0\x08\x43\xe7\xc4\xa4\x49\x69\xba\xee\x03\x40\xb0\xaf\x5d\x39\x29\x53\x34\x2d\x3a\xe6\x89\x28\x92\x06\x27\x66\x8a\x30\xe9\xaf\x12\xfd\x18\xac\xe8\x00\x63\xf4\xff\x9e\xee\xeb\x00\xd0\x27\xe8\x14\x60\xb0\xfa\xe2\x55\x3f\x01\x91\xeb\x29\xab\xeb\x8d\x0b\xc6\xf4\xb5\x34\x07\x6d\xa2\x30\x8c\x0a\xde\xaa\x88\x12\x2d\xf0\xbb\x64\x57\x89\xc1\xb2\xad\x98\x9e\xe8\x14\xca\xeb\xe0\xa0\x9a\xa8\xf5\xf3\x2d\xb0\xc9\x6c\xdd\xf5\x16\xa7\x22\xda\x34\x0d\x50\xbe\x14\xd7\x61\x8c\x60\xaa\xfb\x54\x3c\x00\xbd\x22\xb4\x2b\x11\x04\x91\x71\x4c\x02\xc0\xa5\xde\xca\xf9\xc9\xc3\x15\xa4\x93\x95\xa6\x5f\x55\x7c\x66\x36\xda\x44\x16\xf2\x11\xd9\xe8\xaf\x74\xf1\x14\xd8\x00\xce\x3c\xae\xd3\x6c\xf0\x0f\xb2\x42\x1e\x20\x1b\x9c\x7e\x4a\xe3\xd2\xce\xe2\x45\x44\x50\xb2\xc1\x98\xa4\x78\xd5\x4f\xb0\x82\x4a\xe5\xd7\x6e\x00\x32\x56\xde\x21\xb2\x65\x38\xa6\xf4\x4b\x4f\x14\x88\x43\xbd\xab\xa7\x94\x17\x7b\xd5\x4f\x2a\x45\x6d\xe7\x09\x4a\xd6\xdc\xf4\xb5\x30\x15\x29\xde\xd4\x0f\xe8\x04\x9b\xe5\xfb\x00\x0e\xf9\xcc\x5f\x38\xc0\xb2\x21\x87\xbd\x5f\x7e\xda\x03\xdf\xaa\xb5\x92\x0d\xea\xc0\xe2\x76\x00\x78\x1b\x65\x1e\xaa\x1b\x78\x20\x1a\x55\x27\x61\xbb\xd9\x2c\xf9\x01\x12\x6e\xc9\xe7\x27\xb2\x78\xb9\x0e\x00\x7f\x0c\x13\xe0\x3a\x6b\xec\x00\x0b\xa6\x11\xfa\x50\xf8\xb3\x17\x31\x08\xd9\x10\x33\xd8\xec\x8c\x0d\xd9\x65\x6f\xef\x13\x03\xd7\xd5\xf3\x04\x4f\xfb\x96\x0e\x00\x7e\xe0\x2c\x1e\x44\x8e\x2d\xde\xd4\x31\x78\x5d\x17\x77\x7d\x2d\x33\xf9\x7a\x2b\x07\x00\x3d\x72\x01\x1f\x85\xe4\xe8\x07\x18\xb8\x91\x1e\x00\xe2\x9d\xe2\x7a\x0b\x4f\x56\x49\xdb\xb3\x61\x23\x54\xd9\xc1\x64\x43\x5a\x39\x93\x41\x4a\x36\x64\x83\x6b\x52\xe0\x64\x7b\xa8\xc1\x38\x8b\x87\x22\xa2\x9e\xaf\x03\xd0\xfc\xfb\xb4\x41\x79\x60\x29\x07\x80\xe3\x08\x6f\x3e\xd9\x2f\x46\xa5\x22\x7d\xce\x94\x61\xd7\x44\x5e\x24\x3b\x92\x47\x15\x57\x1b\x0e\x65\x54\x93\xea\x3b\x3b\xf2\x24\x15\xa7\xc0\x23\xd3\xce\x1e\x01\x91\x03\x40\x86\x1b\xa4\x09\x07\x00\xcb\x21\x9d\x9b\xd9\xe1\xf8\xe4\xd2\x96\x6f\x00\xa2\xee\xae\x36\x74\x7e\xbb\xba\x0e\xca\x59\x74\xb2\x6e\x00\x62\xa6\xd3\x0f\xe8\xe4\xab\x98\xf2\xec\x08\xdf\xe5\x92\x5c\x66\xef\xe4\x67\xda\x7d\x00\x08\x91\xac\x1f\xe0\x81\x29\x91\xde\xd2\x49\xa0\xb4\x60\xdc\x64\x75\x77\x00\x30\xf6\x67\x8b\xd1\x70\xca\xca\x69\x83\x2a\x1e\x3b\x9f\x4f\x33\x67\x09\x17\xb2\x23\x3b\x7a\x93\xee\x69\x03\xb0\x8a\x16\xc5\x72\xa7\x64\xea\x7c\x0b\x9c\x82\xfc\x16\xe9\xf0\xc1\xab\xb2\x56\xa1\x23\x3c\x73\xe9\xda\xc8\x8e\xdd\x50\x25\x61\xcf\x92\xb0\xb7\xf3\x16\x08\xc3\x6b\x2b\x6a\x14\xa1\x05\x90\x31\x29\x00\x68\x85\x9a\x58\xb1\xec\x8c\xf8\x25\x43\xa1\xec\x1f\x7a\x3a\x5d\xf9\x00\xb8\x3e\xf4\xf3\x13\x7a\x44\xbb\xbe\x05\x1c\x4f\xe9\x22\x28\x0e\xff\xf8\x92\x92\x00\x72\xb3\xf7\x7d\x00\x08\xf7\x2e\x11\x14\x5f\x94\xb0\x8b\x16\x3a\x44\x18\xcd\x8a\x7e\x02\xff\xe2\x7a\xdd\x2f\xd0\xf0\xb5\xf9\x00\x90\x8e\x6b\x90\x29\xb9\x2c\x92\x9c\x64\xc6\x8d\xe9\x49\x34\x68\x0c\xad\x53\x8e\x29\x03\x39\x20\xf0\x1b\x00\x0c\xe1\x1f\x00\xde\x32\xb2\x1a\x85\x09\xb8\x5f\x3a\x15\x07\xe3\x6e\x4a\xa1\x95\x99\x04\xcd\x64\xc4\x91\xe9\x52\xda\x24\x8e\xd9\x40\xec\xfd\x73\x6e\x8a\xd1\x12\xe7\x95\x65\x6c\x74\xd9\xf9\xc9\xec\xc7\x2d\x35\x00\xdc\xd0\xad\xab\x63\x13\xaa\xd9\x26\xeb\xb4\x4c\x36\xaa\x49\x03\x9a\x99\xf3\xcb\x5a\x2f\x07\xa0\x57\xdf\x5f\xb0\x42\xdc\x4f\xc3\x85\xd3\xdf\xf6\x10\xbb\x42\x7b\x87\x09\x99\xaa\xc4\xcd\x99\x69\x87\x6a\xd5\x76\x53\x1e\x9c\x54\xd5\xeb\x86\x3d\x9c\x8a\x9e\xa0\x88\xa8\x6b\xad\x90\x83\xaa\xf5\x0c\x27\x23\x0b\x49\xd5\xb4\x81\x20\x2e\xb9\xbd\x3f\x19\xd0\x82\xf4\x03\x60\x7c\xc5\x42\x30\x2f\x49\x3b\xe4\x98\x99\x49\x9a\x54\x1a\x99\x19\x29\x8a\xa4\xba\x99\x59\x19\x4a\x6a\x02\x90\x10\xc1\xce\x22\xa6\xb1\x8e\x15\x2d\xc0\x69\xd4\xd7\x9c\x9e\x1a\x37\xf5\x99\x23\xc3\x7a\xab\x7f\x78\x22\x28\xf8\x21\xe9\x74\xd5\x68\x62\xb9\x33\xdd\x35\x90\xd7\x9a\x80\x83\xd8\xaa\x0d\xc4\xe1\xb7\xa6\x9d\x21\x61\x96\x9d\xd7\x0e\x5a\x45\x9f\x99\x03\x03\x59\x92\x0e\xb0\x39\x70\x5e\x95\xf3\x71\xb0\xbd\x2e\x26\x1e\x8b\x76\x30\xe5\x16\x6d\x45\x3c\xec\xfd\xb5\xe5\x00\x06\xba\x68\x07\x88\xb3\xa6\xd9\xfb\x13\x4c\x54\x3e\x8d\x52\x17\xf7\x07\x00\x13\xa5\x53\x91\x51\x88\xeb\x75\xa6\x01\xf6\xdb\x76\x9d\x01\xfa\x52\x03\x7a\xbe\x36\x42\xd6\xde\x7e\x9d\x1d\xca\x54\xcf\xd7\x79\x8b\xac\xb3\x45\x8e\x27\x49\x98\x6e\x3e\x1b\x80\x81\x5c\x79\x7f\xc2\x30\x75\x5a\x41\xe4\x23\xbc\xe7\x03\x74\x5c\xb7\xd5\x31\x84\x38\xab\xd7\x19\x31\xe8\xc2\x5b\x3e\x0b\x06\x26\x2b\xad\xe6\x74\x00\x88\xdd\xfc\x05\xb8\x82\xde\x9f\x04\xdb\x90\xf3\x69\xf4\x0f\x21\x2c\x00\x70\x05\x91\xc3\xde\xcb\x20\x98\xc6\xcc\x63\xa1\xd8\x45\x4e\xb4\xbf\x00\xb9\xb7\xf3\x13\x04\x14\xe9\xbc\x2d\x6c\xe0\x83\x21\xf4\x03\x60\x03\x91\xc3\x2e\x76\x73\x7d\xb8\xda\x80\xae\xa5\x39\x17\xee\x06\x30\xd9\xf5\x7d\x02\xfb\xe5\xf4\x03\x66\x9a\x08\xf4\x01\x80\x32\xb4\xa6\xd7\x66\x2e\x6d\x0a\x6c\x8a\xc1\x09\xb1\xf4\x7a\x1f\xe0\x03\xe1\xaf\xde\x52\x18\x10\x2e\xf5\x03\xf0\x44\xcb\x02\xa0\x21\xaf\x5c\x30\xc5\x0a\xac\x65\xa5\x11\x2e\x06\x4a\xd7\x74\xc1\x28\x0c\x88\xda\xbc\xf5\x03\x40\xc6\x5a\xd5\xb1\x0a\x65\xb6\xf7\xeb\x00\xb8\xc6\x9c\x79\x41\xa6\xb5\x7e\x9d\xcf\xaf\x5c\xb8\x7e\x1a\xa5\x19\xde\xf9\x16\x8a\x54\xc5\xdf\x15\xc3\x8d\xd4\xda\x19\x20\xdc\x48\x9b\x4e\xa3\x0d\x54\x98\xac\xd4\x03\x80\x15\xb3\xd3\x06\x15\xaf\xa6\x9e\x8a\x15\x2b\x6a\xa3\x33\x3c\xe9\xe9\x47\x97\xee\x5a\x3f\x81\xf8\xaf\xe6\xaa\x9f\x38\x63\xd8\x5d\xfa\x89\xf3\x40\x3f\x1f\x07\xbe\xaa\xb6\xd3\x0f\x58\x21\x56\xf9\xc3\x6c\x00\x26\x15\x67\x49\x39\xcd\x10\x2e\xfb\xf3\x03\xac\x18\xb2\x97\xd4\x74\xc6\x17\xf1\xb2\x6a\xb3\x17\x00\xdf\xfa\x3e\x41\x76\xf9\xcc\xf3\xa0\x1d\xc9\xf9\x09\xcd\x1a\xc4\xdb\x6c\x00\x57\x21\x2b\x07\x00\xa7\x7f\xf6\x0e\x43\x40\xd5\xf7\x27\x54\x06\xdf\x1a\x3d\x1a\x96\xd7\x33\x58\x1f\x72\x0c\x45\x6d\x7c\x70\x7d\x97\x59\x43\xb1\x2f\x43\xf4\x9f\x8e\x21\x34\x77\x95\xf1\x44\x41\xac\xd5\xbb\x55\xaf\x07\x40\xb8\x80\x62\x07\xc0\x12\x75\x01\x0b\xae\x41\x76\xb6\x0a\xe4\x92\x26\xf3\xa6\x42\xfb\x9e\x26\xe9\x67\x39\xc2\xf5\xf3\x16\xa8\xab\xaa\xec\x4f\x0a\xbd\xcf\x6b\x3f\x9f\xcf\x90\x2f\x39\xe9\x5b\x1e\x18\x0b\xdc\xb7\x1f\x00\xfa\x74\x7d\xad\x5f\xc6\xcf\xaf\x02\x60\x75\x57\x49\x6c\x37\x00\x86\x9a\x37\xd2\xe2\x08\x72\xd2\xaf\xd3\xc6\x4d\x53\x00\x6d\x04\xba\x7a\x97\xae\x51\xa7\xa3\x4b\xbd\xc8\x25\x6c\x00\xac\x07\x4f\xc5\xe2\x89\x71\xed\x29\xcd\x29\x14\xe1\xb7\xb3\xaa\x3d\xc3\xa7\xad\xb9\x5e\x4b\x7b\x38\xdd\x5a\x36\xc0\x31\x55\x1b\xd0\xc4\x9a\x18\xb7\xe2\x4c\x16\x7a\xf6\x9f\x23\x33\x61\x91\xbd\x45\xf1\x4e\xb5\x08\xf9\xe7\xe2\xc8\x5e\x84\xd0\x16\x00\x30\xc8\xd7\x19\x31\x87\x5a\xc4\xcf\x4f\x5c\x4b\x4a\x23\x86\x90\x70\xf5\xbe\xd4\xc6\x84\xec\x5b\x16\x73\xc5\xe1\x96\x69\xed\x8c\x3a\x74\x2d\xf5\x12\x29\xe5\xf5\xc1\xea\x69\x83\x51\xa0\x2e\x11\x7d\x47\x74\xa0\x76\xb5\x76\x00\x38\xfe\x8b\x72\x8e\x8b\x91\x6e\xb4\x3d\x18\xf0\xb3\x5f\x59\x00\x62\xc7\x94\x9b\x67\x6f\x19\x19\x72\xc9\x56\x0f\x40\x0b\x15\xad\xc2\xcd\xa7\x83\xb1\x68\x07\x40\x94\x49\xde\xaf\x36\x10\xd4\xe1\xd2\x4a\x1e\x99\x11\x9e\xb4\x1c\x06\x19\xe0\x9c\x04\x14\x1e\x0b\x77\x3b\x00\x54\xe6\xbc\xb3\x6e\x80\x8c\xa7\x1a\xa5\x3f\x4c\x15\x29\x1d\x48\x48\x5b\xaf\x76\x1a\xc5\x69\xd4\xdf\xb7\xe0\x84\x4f\x5a\x85\x83\x31\x50\xca\x9d\x0f\x80\x60\x4d\xe5\xf4\x83\x52\xb6\xb7\x63\xf3\x0d\xc6\x15\x00\x4f\x34\x99\x46\x6c\x00\x3a\x09\x1d\x4f\xa3\x82\x05\x92\x5e\x63\x03\x30\xaf\xa8\xe7\x27\x0c\xa6\xaa\x7d\x3b\x2a\x4e\xa3\x7e\x1d\x00\x82\x92\xeb\x7d\x02\x7e\x82\x52\xde\x6e\x80\xe3\x71\xde\x82\x51\x97\x9c\x76\x03\x38\x8c\xb3\xbe\x16\xa2\xbb\x26\xdf\xcb\x42\x5d\x7e\xf5\xb3\x3e\x9a\xc4\x53\xf7\x01\x82\x01\x96\x52\xac\x30\xc4\x6a\xad\xe9\xfd\x09\x9d\x17\xde\x27\xa0\x0a\x11\xb5\x1c\x4d\x91\x3e\xde\xd7\x42\xbf\x52\x4f\x1b\xf4\xad\xcb\xea\x3a\x0f\x63\x19\xb6\x6e\xa0\xe3\x52\x51\xfe\xc2\x01\x36\xe0\x0f\xda\x9a\xf6\x1f\x03\xb4\xd6\xcb\x4e\x9f\x06\x09\xf6\xe9\x13\xf8\xc5\xda\xcf\x67\x4c\x1a\xc8\x9d\x36\x74\x9d\x3a\x63\x03\x2e\xbd\x9e\x39\xe2\x75\xaa\x9f\xdd\xc5\xeb\xd4\x39\x15\x07\x12\x2c\xd6\x4b\x34\x6d\x74\x6a\xfe\x7b\x3b\x00\xcd\x8a\xae\x03\x2c\x88\x55\xf2\x01\x30\x7a\x76\x00\xdc\xc0\x5c\x9c\xdc\xe8\x20\x2e\xf5\x6d\x03\xf7\xab\xfb\x2c\x62\xe4\xf3\xab\x39\x9f\x9f\x60\x35\x49\x3b\xb5\x81\xd8\x5d\xe9\xd0\x12\x5e\xeb\x24\xd3\xdf\x00\x1c\x55\xfb\xfb\x13\x98\x68\x9c\xe5\xc5\x04\x75\x5d\x24\x9d\x5e\xfd\x26\xf5\x79\x51\xb0\x54\x3f\xab\x89\x1e\x7c\xe7\x10\x1c\x36\x20\xb8\xcd\x76\x00\xb0\x54\xa2\xcf\xc3\xe8\x17\x77\xbd\x3f\xc1\xde\x39\x3b\xc3\xe8\x98\x99\x4e\x3f\xa0\xd0\x3a\xd4\x77\x18\xad\x21\xaf\xf7\x27\x90\x61\x9f\xc9\x36\x64\xe1\xa8\x87\x40\xf1\x9c\x30\x3b\xfd\xa0\xdb\xe5\x19\x42\xa7\xf1\x71\x4a\x07\x40\x60\xd1\xd3\x06\x62\x3f\xd4\xab\x5d\x07\xc0\x56\xf1\xf7\x27\x30\xb2\x3b\xeb\x94\xa1\x5a\x25\x2f\x2e\x0c\xd6\x5a\xda\x19\x53\xc4\x58\xb5\xfb\x6c\x7b\x1e\x60\xa9\xbe\x00\x48\xc7\xd9\x1e\x08\xb9\x5f\xf3\xdb\x28\xcc\x12\xdb\xd9\x90\x92\xd4\x1d\x3a\x00\x8e\xb2\xe6\x3f\x3c\xe1\x60\xca\x5f\x20\x48\x87\x2e\x6d\x45\x21\x5a\x2f\xf1\xbe\x0c\xc3\x6a\xed\x8c\x18\x02\xb1\x56\x39\xa8\x15\x86\x62\x2d\xf2\x48\x2a\x0c\xc6\x5a\x5f\xca\x09\x73\x93\x7a\x9d\x43\x90\x9c\xa8\xbf\x8d\xd2\xc2\xb4\xbd\x00\x43\x35\x9e\x7e\xe0\x88\x93\x37\xc3\x06\x30\x73\x87\x0c\x42\x4d\x54\xeb\x99\x86\xc1\x0b\xf9\xd9\x51\x03\x66\x89\xe9\x2c\x87\x41\xd3\xaa\xb3\x09\x27\x83\xee\x9d\xc3\x07\xa1\x54\xab\xcc\x6f\x36\x00\xc9\xe5\x59\xda\x13\x73\x5b\xd3\x0b\x80\x29\x68\x07\x60\xe0\x27\xdd\x5a\xc6\xe4\x3a\x3d\x9f\x0f\x5b\x1a\xbf\x0e\xb9\x80\xe9\xab\xb5\xb3\xc6\x1e\xb2\x84\x62\xc5\xe6\x05\x7d\x8d\xb4\x64\x65\x26\x06\x25\xd3\xce\x9e\x49\x22\x55\xf6\x83\x32\x34\x84\xc0\x07\x80\x4b\xca\xe1\xab\x90\xd1\x7e\x93\xe0\x4b\x00\xf8\xbb\xb3\xd6\x29\xaf\xea\xb7\x2e\x15\x13\x9a\xa0\x7e\xdb\x0b\xd0\xd9\x87\x4b\x6a\x32\x06\x72\xd2\xe2\x9f\x0c\x90\xe2\xe2\x01\x90\xdc\x8f\xe1\x40\x09\xc0\x62\x47\x77\x56\x86\xb8\xb0\x73\x11\x66\x34\x08\xc4\xeb\x0e\x00\x32\x8d\x2e\x21\xf4\x06\xc0\x89\x8a\x39\x61\x0e\x99\x2a\xcd\xc7\x06\x40\x1d\x74\x21\x50\xca\x96\xe6\x7f\xc1\x0a\xb1\xcc\xc5\x8c\x0e\x67\xb0\x68\xba\xa6\x93\xa4\x1a\x3c\x8a\x11\xc8\x34\x80\x9b\xb1\x8d\xf8\xc6\x2a\x47\x97\x9b\x9d\xac\x56\x30\x7a\x77\x13\x50\x29\xff\xe2\xd8\x54\x2a\xfb\xfa\x7d\x1a\x85\x18\xb2\x6b\x33\x55\xde\x70\x4d\x8e\x50\xd5\x70\xf8\x74\x3b\x8d\x76\xea\x7c\x52\x3b\x00\xb9\xe3\x4c\x80\x41\xaf\x6f\xd2\xc5\x0d\x40\x0e\x7e\x09\x70\xda\x19\x65\x75\x6c\x50\xd0\x70\xeb\xf3\x99\x17\x30\x5d\xfa\x5a\x38\x97\x75\x99\x7b\x55\xa3\x97\xb6\x02\x3c\x54\xfb\x40\xea\xd8\xfe\x00\xe0\xe0\x20\x09\xab\x0c\xbb\x65\x3a\xd0\xab\x5f\x64\xfd\x79\x3a\x57\x26\x7e\x28\x32\x2c\xaf\x7e\x41\x09\x94\x5d\x6d\xdc\x5c\x1a\x3c\xd1\xaa\xdf\xe0\x34\x2a\x09\x54\x65\xdc\x2c\x53\x08\x88\xea\x89\x92\xf2\xae\x27\x0a\xa3\xe2\x95\xfb\x00\x71\x2a\xca\x14\x60\x03\xb8\x2d\x68\x08\xbd\xd2\x02\xe1\xb4\x41\xa1\x89\xa2\x46\x6c\x20\x8e\x7c\xd9\x7f\x6d\x80\xfd\xc8\x02\x18\x0f\x96\x64\x70\x03\x15\x1f\xf7\x3e\xc1\x8f\x53\x1b\x8d\x1a\x8c\xd3\x0f\x64\x59\x2f\x92\x90\x6d\x00\xba\xda\xae\x36\x28\x84\x2e\x67\x4c\x19\x2e\xbe\xd6\x72\x00\x08\xa1\x4d\x43\xd8\xb9\x60\x78\x5e\x55\x47\xb8\xf6\x2e\x8b\x8c\xea\x46\x4b\xf3\xa2\xb7\xf0\x54\xec\x5d\x8d\x22\x41\x6b\xd5\x21\x58\x1d\x47\x8b\xf9\xf9\x16\x78\x13\xd5\x5b\x8b\x8e\x36\x4e\x55\x36\xcf\x95\xb7\xb8\x52\xcf\xb7\xc0\xd7\xb0\xf5\x33\xfb\x34\xa1\x93\x17\x4f\xf5\x0f\xf5\xe9\x45\x5d\x47\xdc\xe3\xf6\xae\x0f\xda\xe6\xcb\x14\xb8\xd2\xae\xbe\xe6\xa2\x46\x71\xf1\x2b\xb7\x76\xb6\x3f\xbc\xe6\x52\xa6\x58\x07\x03\xb5\xdd\xe5\x05\x20\x17\xd1\x4f\x86\xf4\x9b\xea\xd8\x80\x16\xa4\x66\x3b\x80\x34\x6d\x59\x00\x04\x84\xb7\xb6\xc7\x28\x0c\xc2\x4a\xfd\x77\x1d\x95\x0e\xf7\xed\x00\x0a\x20\xca\x51\x17\x9b\x2d\xb9\x75\x1d\x88\xd0\xd5\xa4\x9c\xab\x0c\x1f\x6f\xee\xea\x29\xe7\xa5\x79\x39\x00\x2e\x18\xe7\x27\x43\x1b\xe8\x05\xa0\xdf\xac\xea\x07\x0e\xc1\x7a\xf6\x0b\x43\x46\x77\xf9\x18\x55\x06\x64\x36\x05\x20\xa8\x83\x6e\x16\x77\x7f\x01\x84\x8d\x3a\x8d\xc2\xff\xaa\xca\x5b\xbc\x32\x20\x6f\xc9\x22\x6c\xe3\xa1\x59\x94\x16\x2e\x02\xeb\xde\xe5\xcc\xcb\xbc\x48\x1d\xc8\x77\xd7\x89\xe0\x3f\x2d\x89\xa0\x30\x96\x2d\xc2\x9f\x02\x60\x1c\x16\xad\xe4\xc9\x98\x21\x59\x2b\x68\x26\x46\x2e\xd3\xbe\x9d\xf0\x57\x2c\x62\x3c\x37\x80\x7e\xe8\xe3\xa8\xa2\x2a\x8a\x59\x50\x67\xe1\x1a\x6b\x07\x80\xcd\xa5\xb4\xca\x75\xf2\x12\x9b\xae\xf4\xe7\x07\x58\x9d\xd0\x63\xbb\x2c\x78\x2b\x75\x4f\x7e\x9f\x4e\xe2\x72\x50\xd3\x25\xc0\xe9\x28\x7e\x3e\x94\xc6\x13\x8d\x97\xf3\x8a\x94\xcb\x77\xbd\x79\x8b\xab\xcc\xba\x5c\x74\x7b\xaa\x4c\xde\x5b\xef\xae\x2f\x07\x17\x56\xc5\x53\x54\x79\x25\xf7\xd3\x31\x7a\x25\x37\xd1\x67\xc6\xae\x6a\x59\x8b\x18\x39\x0d\x37\xd1\xd7\x4f\xb8\xff\xae\x96\x0e\x80\xb8\xef\x9c\xf8\xc6\x98\x4e\x2e\xa5\xc7\x06\xe8\xd7\x92\x09\x20\x67\x50\x93\x0c\xbb\x19\xdd\x36\xe4\xa3\xd3\x2c\x31\xe2\x0a\xe5\xa3\xcd\xe0\x28\xd7\xa5\x02\x6c\x96\xe8\xbc\xc7\x53\xb1\x31\xe5\x59\x04\x5d\x04\x80\x20\x7e\x26\x6e\xb0\x59\xa1\xc7\xda\xa5\xd7\x56\x09\x4d\xfc\x00\x30\x5a\xb8\xd2\x01\x70\xe3\x27\x9b\xda\x28\x8f\xaf\x8a\xc5\xd0\x0c\x77\x67\xeb\x9c\xa8\x0d\xc0\xbb\x2a\xa9\x1f\x8c\x1b\x20\xc6\xbe\x19\xe2\xa4\x36\x69\x40\x1b\x53\x82\x55\x99\xac\x34\x73\x32\x05\xf6\x02\x08\x47\x55\xed\x00\x70\xb8\xa9\xea\x18\xd2\xfa\x96\x74\xab\xeb\xd0\x81\x35\x5d\x85\x9a\x7d\x19\xc1\xaa\x5d\x07\x80\x26\xa5\xea\x2d\x5f\xa7\x4b\x9f\x7a\xba\x70\xad\xcb\x45\xaf\x05\xbb\xdc\xc5\xcf\x34\x0a\x5d\xab\x7c\x96\x9a\x5f\x1a\xf5\x26\x00\x1d\xd3\x71\xdd\x98\xa8\xaa\xca\xc8\xae\x31\x55\x55\x55\x18\x89\xc6\x50\x9c\xa6\x3b\x5a\xf3\x7b\xd0\xfe\x84\x5d\xf7\x44\xd1\x2e\x39\x9e\x46\xa1\xab\xc9\x97\x73\x03\x0e\x83\x83\x7c\x80\x2f\xe8\x91\xfa\x81\x98\xce\x25\x15\xbd\x85\xf6\x81\x12\x1d\x34\xaf\xb0\x53\x34\x57\xa3\xb0\xed\xab\xe9\xce\x07\xf8\x02\xd0\xb7\x30\x46\x63\x2d\x02\x98\x21\x45\xbe\x64\xcd\x19\xce\x2f\x9d\x01\x62\xae\x8b\x76\x7e\x32\xa8\xbc\xd5\xdc\xfa\x60\x94\xff\xd3\x75\xe4\x5e\xee\xef\xc7\x4d\xc6\x40\x3b\xe3\x31\x19\xcd\x9f\x1b\xb9\xd1\xaa\xa3\xa7\x24\xe0\x2b\x91\x3b\x27\xdb\x17\x39\x40\xad\x64\x7a\xdf\x99\x44\xdd\x8d\xf6\xc5\xf5\x7d\x2d\xac\xa0\x5a\x26\x31\x68\xe3\x72\x06\x64\xe0\x10\x0e\xb2\x84\x12\x77\x35\x7a\x79\x99\xbc\x22\xdb\x10\x4b\xa8\x69\x18\x98\xca\x26\x92\xb3\x81\x20\x4a\x92\x69\x34\xa6\x67\x32\xb9\x05\xb6\x41\x3b\x07\x05\x53\x68\x83\x71\xd4\xee\x4b\x6f\x81\x5b\x52\x57\xac\xad\x46\x0b\x64\xc4\xc0\x07\x00\x65\xb6\xe2\x8e\xb4\x51\x19\xbe\x4d\xbb\x72\x34\xa5\xff\xd2\x13\xd4\x81\xe9\xc2\xd5\x06\xe2\xa8\xf5\x5b\xb4\x90\x89\x78\x10\x1f\x3f\x00\x7a\xff\xc8\xdc\x7c\x03\xf0\x25\xd3\xc2\xa5\x3b\x90\x89\x25\x6c\x12\xa5\x24\x32\x6b\x8d\x52\x8f\xaa\x10\x32\x8d\x49\x6a\x8a\x4c\xc5\xdb\x80\x1f\x77\xd1\x85\x7c\x03\xc8\xa6\x66\x7f\xe1\x00\x6b\x83\x97\x83\xf2\xfe\x9c\xfc\xa2\xc8\x8f\xb2\x7b\xb8\x9f\x27\xe8\x66\xd8\xf5\xe5\x5f\x46\xc4\x32\x3f\x00\x65\xe9\xfd\x00\xc8\x82\x21\x8a\xc5\x84\x1b\xed\x2c\xf3\x81\x38\x85\xa6\xeb\x43\x63\xba\x8b\x7a\xbb\xde\x82\xdb\x69\x2d\x67\xf4\x16\x93\xed\x69\x43\x0e\xdc\x4e\x8b\xee\xf3\x1b\xe0\x0c\x1c\x40\x82\x71\x01\x54\xc1\xb7\x33\xe0\x0f\xe4\x81\x0a\x46\xd0\xc8\xb9\x94\x43\x39\x27\xdd\x1d\x65\x1b\xd0\x18\xc3\xc8\x25\x08\xde\x00\x0c\x28\x29\x66\x6a\x13\x36\xad\xad\xbe\x3f\x81\xf1\x84\x78\xbd\x36\x13\xfb\x41\x36\x64\x03\x50\x14\x88\x94\x2a\x1c\x7e\x3b\xfd\x48\xca\x93\xd0\x05\xa0\xeb\xed\xf4\x03\x01\x89\x8a\x78\xf0\x0d\xc0\x6d\x43\x7b\x87\x1c\x54\x95\x8a\x67\x03\xb4\x72\xd1\x4f\x32\x17\xa0\x46\x4c\x91\xda\xbb\xe8\xe2\x2c\x94\xe9\xeb\x74\x9e\x65\xd0\xa0\xf4\xfd\x09\xd4\x88\xe9\x05\xa0\xea\xd5\x56\x99\x74\xfa\xab\x3a\x26\x19\xa1\xa8\x36\x31\x16\x8a\x01\xaf\xb0\x47\x8d\x51\xe0\x9b\xa2\x36\x36\xc6\x63\xaf\xba\xf7\x36\x46\x06\x32\x31\xc3\x8d\xe6\xda\xcd\xce\x13\xf0\x37\x6a\x9e\xfa\x01\x90\x03\x5d\x34\x8d\x06\xdd\x25\xe9\x74\xa6\x41\x77\x2d\x5a\xb8\xb3\x51\xea\xe8\x6f\xa3\x0d\x1d\xb3\x03\x40\xc4\x9c\xdf\x46\x99\x93\x43\x4f\x74\x86\x01\x17\xd5\xa3\x44\xa8\xea\xaa\xdc\x28\x11\xda\x27\x9b\x00\xe8\xaf\xca\xf9\x89\x71\x59\x8a\xb6\x4e\x5c\x1e\x5b\x3a\x43\x68\x90\xc3\xf9\x99\x4a\x9c\x57\x55\x31\x43\x1a\x0d\xcb\x4b\x16\xd5\x9b\x8e\xe5\x90\xcf\x64\x23\xbf\x56\x39\xdc\xca\x84\xac\xb7\xc9\x28\xbc\x4d\x1f\x08\x01\x71\xe6\xc5\x19\x4a\x4a\x3c\x11\x63\x07\x95\x2c\x62\x30\xa9\x87\x97\xc5\x6d\xa3\xc1\x92\xdf\xa7\x63\x30\x47\x32\x3f\xaf\xa5\xa0\xe4\x3a\x6b\x6c\x32\xb1\xae\xf8\xcc\x39\x19\xdd\xfe\x74\x0c\xd6\xc3\xad\x9f\x51\x67\x78\x81\x5b\x7b\x7f\x52\x9d\x99\xc4\xe0\xd0\x61\xaf\xd4\xd3\xd3\xc9\x28\xba\x7f\x78\x6d\x7c\x4b\x39\x4b\xea\x43\xbb\x4d\x9d\xf0\x93\xde\xf3\xef\x1a\xfb\xd2\x2e\xe8\x7c\x1c\xb3\x2b\xdf\x67\x90\xe1\xd2\xd7\xda\x19\x0f\xf0\x66\xe6\x87\x5c\xc0\x02\xb9\x8a\x99\x6f\x8c\x7e\x53\x0b\x99\x82\x6e\x17\x4e\xc5\x4e\x9a\xdc\x69\x8a\x6f\x8a\x0a\xd6\x29\x48\x2b\x9d\xfd\xd8\x00\x3d\xf0\x13\x01\x9c\xce\x25\x73\xe6\xba\x25\x31\xc0\x2f\x40\x35\xe2\x75\x00\x18\xa4\x53\x8b\xda\x19\x29\xb5\xe4\xd3\xb1\x4c\x07\x2a\x53\x1b\x99\xa2\xa5\xec\x07\xa0\x67\xd7\x5f\x38\xc0\xba\x21\xbd\x85\x49\x6a\xd0\x19\x68\xb5\x28\x1e\xd3\x06\x10\x5a\x9b\x94\xb3\x1b\xc8\x4f\xbf\x6b\x3d\x00\x95\x40\x02\x2a\x13\x0b\xdf\xe9\x00\x50\xad\x70\x35\x75\xa3\x9e\x52\xfa\x89\x2e\x89\x61\x6d\x1a\x0a\x5a\xbc\x28\x5a\x62\x57\xc2\x5f\x19\xfc\x74\x1b\x4a\x4f\x73\x1f\x00\xcc\xdf\x99\x01\xae\x7b\x85\x94\xeb\x06\x89\x7d\x93\x30\x79\x03\x10\x45\x74\x01\x93\xcc\x4e\xd3\xd7\x7e\x35\xe0\x6a\x03\x32\xdb\x92\xcf\x2c\x22\xf6\x9f\x4b\xa5\xd1\xfd\xc2\x3d\x2f\x91\xb8\x74\x1a\x96\x9b\xa2\x13\x74\x32\xe5\x55\x04\x7b\x03\xc8\xe2\x5c\xf5\x04\x35\xbb\xe2\x4b\xba\xd3\x37\x46\xa7\x62\x57\x54\x4c\x89\xac\x3b\x43\x93\x17\xb1\x98\xdd\x3b\x9c\x32\x64\xf8\xb0\x01\xe4\x21\xa3\xa4\xbc\xbb\x31\xf4\x33\x0f\xb0\x0d\xd0\xab\xf0\x3c\xc1\x04\x5c\x77\x39\x00\xee\xdf\x1a\x42\x67\x2a\xbf\x56\x5e\x00\x8c\x6c\xb9\x0e\x80\x04\x60\xe7\x6b\xa1\xc0\xe9\x52\x28\x77\x87\xf6\xa1\xe4\xf3\x71\xb8\x92\x75\x91\xc1\x0d\xe0\xcc\x33\xf5\xe3\x2b\x99\xa2\x7e\x82\xac\xfb\x5d\x72\x96\xee\x8b\xf6\x49\x67\x4c\x99\x99\x2b\x69\xe1\x92\x29\x37\x85\x4c\xe9\xe3\xc6\x2d\xff\x2c\xcb\x01\x4f\xef\xe2\x64\x3d\xfa\x80\xb8\xbc\xca\x2e\xaf\x0f\x7a\x68\xb5\xd3\x06\x63\x3a\x89\x4b\xe8\x83\x07\x7a\xee\x7a\x82\xf6\xfd\x22\x94\x7d\xc0\xec\xac\x9c\x85\x3b\x70\xd4\x76\x31\xb2\x7d\x30\x61\x88\xe2\x8f\xf6\xd1\x99\x00\x4b\x8b\x6e\x30\x5e\x9e\xa4\x8e\x9d\x6a\xd5\xa6\x03\xbd\x4b\xf3\x28\xad\x7d\x67\x8a\xc6\x26\x95\xc6\x06\x60\xf9\xab\x41\x3e\xc9\x14\xcf\x6b\x71\xd6\x34\x45\x4b\xec\x4c\x21\x58\xb2\xe6\x76\x0c\xc8\x8c\xe4\x1b\xdf\x99\x74\xaf\xca\x68\xa1\x2b\x75\xde\xfb\x93\x0f\xb7\x69\xd7\x6b\x3f\xce\x64\xa7\x7a\xed\x07\xac\x58\x36\x3b\x00\x1c\xe5\xea\xfb\x04\x76\xa5\xe9\xb5\x30\xe0\xaa\xf7\x0b\x04\x0d\x72\x05\x22\xe9\xcc\x85\xe5\x67\xf1\x0f\xb8\x9d\xd4\xa6\x85\x3b\x79\xdd\x36\x4d\xc3\xbc\x99\x24\x9f\x4c\x41\x9f\x09\x32\x78\xc9\xad\xfb\xcc\x34\x36\xea\xfa\x09\x83\x6f\x9d\xf5\x41\x3f\xff\xa2\x80\xa4\x1b\x40\x94\x34\x11\xfd\x29\xf9\xf9\x69\x03\xae\xdf\xa6\x2b\x43\x9f\x90\x9f\x77\x99\x69\x76\xda\x7d\x17\x05\x53\xe8\xb3\xe1\xca\x2e\x97\xcf\x4e\x8b\xec\x22\xa3\x96\x4e\xae\xa9\xca\xed\xa4\x4f\x64\xfb\xac\x12\xa9\x76\x06\xa1\xaf\xed\x12\x80\x08\x78\xed\x3e\x3d\x7d\x18\x78\x8f\x4b\xca\x0c\x32\x8d\x22\x0f\x91\x0d\xe0\xae\x48\xd9\x9b\xd9\x85\xb3\x57\xc6\x46\x66\x4c\x37\xac\xe0\x1d\x1b\x40\xf2\xb0\xf6\x17\xcc\xe8\x8d\x12\x32\x53\x50\x12\x93\x40\x4c\xb4\xd5\x2c\x91\xfa\x9a\xde\x98\x28\x6d\xe7\x6d\x7d\x03\xb8\x03\x73\x01\x9a\x31\x94\x94\xc4\x19\x1b\xa0\x63\xa6\xde\x92\x79\xf7\x34\x7d\x79\x21\x57\x6a\x6a\x94\x6e\xb9\x8a\x65\x66\x4c\xdc\xdf\xef\xd3\xb1\x2a\xf7\x33\x75\x4c\x69\x8b\x4d\xfd\x68\x34\xf7\x7a\x81\xc9\xd3\x59\x83\x05\x0a\xde\xfd\x56\xc7\x60\xa9\x56\xeb\xe9\x3a\x5d\x72\x64\xa0\x6a\xb4\x14\xed\x12\x32\x1a\x7d\xfe\xbb\xbc\x70\xcd\x06\x52\x42\xa4\xae\x6f\x41\xa8\xde\x2e\xef\x73\xb3\x49\x67\xd7\x4b\x8d\xd2\x74\xad\x9a\xe6\x99\x7b\x58\x86\xb2\x66\x32\x5d\x33\x75\x9d\x5b\x36\x25\x35\xfa\x65\x64\x81\xdc\x0e\x00\x41\xd4\xf9\x16\xa4\x5a\x6c\xa9\xa9\xa7\x4a\x91\x48\xc2\x60\x4a\xe6\x2e\xa6\xdc\x1c\x31\xef\xad\x92\x93\x33\x6a\xda\xba\x6c\x36\x8c\x76\x8a\x55\xc1\xde\xcc\x13\x0d\xa0\xb8\xcc\xcd\x0b\x6d\xe2\x5d\x8d\x16\x4e\x03\x4f\x92\x0d\x60\x77\x15\x01\x75\xf0\x09\x75\xac\x2b\xbe\x85\x1a\x45\x22\xa7\xa6\xab\xb2\xd1\xbb\xaa\xb4\xab\x1f\x00\x1a\xae\xaa\xae\xd3\x42\x45\xd6\x14\xe6\x50\x6c\x17\x59\xab\x9b\x0f\xa6\x63\xf4\xeb\x00\x30\x81\xbf\xd4\x0f\xb0\x40\x2e\x89\xf2\x06\x90\x1c\xff\x74\x0c\xa2\xee\x22\x5b\x58\x63\x54\xb0\x52\x34\xea\x3c\xae\x4d\x91\x0e\xcd\x3f\xa4\x69\xa2\x03\xe3\xa2\x2b\xab\x3a\x36\x90\xe5\xaf\x5f\x5a\x41\x03\x6c\xa5\x5f\xda\x51\xb4\xba\x2b\x72\x63\xb7\x01\xbd\x73\x55\xf0\xeb\x0d\x20\x97\x5c\xd2\x4f\xa8\x48\x52\x9c\x3a\x1b\x95\xd1\x34\x79\x55\xde\x00\x8c\x05\xb4\x5f\x06\xe7\x45\xf6\xb4\xc6\x9c\xe4\x2e\x6f\x33\x1b\xf4\xa9\x91\x8d\xa1\xd1\xda\xad\x8a\xe1\x33\x4a\xb7\x8a\x82\x18\x6c\x60\x40\x2e\x52\x0e\x30\xc1\xc7\x9f\x36\xa0\xa9\xaf\xda\x73\x83\x1e\x33\x12\x77\x99\x72\x76\x4b\x74\x67\x83\xf4\xf9\x1d\x31\x98\x78\x95\xf2\x3e\x01\xd9\xb7\x22\x82\x18\x4d\xbc\xcc\xce\x78\x74\x1a\xc8\x69\x9b\xca\x1a\x4b\x21\xf1\x4c\xf9\xaf\xa5\x66\x36\x9a\x67\x15\xf9\xb5\x6f\x00\x21\x07\x45\x2d\x07\xfc\x6a\x4d\x31\x87\x6c\x18\x6d\x2e\xab\xda\xd0\x3a\x15\xd1\xa7\x59\x54\x93\x1f\xca\x66\xcc\xd3\xaf\x12\x03\x11\x80\x97\xf6\x99\x39\x5e\x95\x25\xc2\x30\x99\x45\x65\x11\xa5\xe1\xd4\x2b\x9e\x99\x73\xfa\xb5\x5f\x6f\x1b\x94\x5b\xbf\x6d\xc0\xc5\xd8\xcb\x01\x10\x76\xa5\xbd\x6d\xc0\xd0\xfe\x6d\x83\xb1\xe1\xeb\x75\x00\x78\x47\x9f\x9e\x0e\x8a\x87\xed\x05\x10\x7c\xab\xb6\xbf\x70\x80\x0d\xaa\x9c\xc5\x3f\xdb\x18\x8a\x1e\x53\x0f\x80\x3d\x7c\xbf\x00\x8c\x86\x44\xf4\x69\x34\x54\xc5\x41\x19\xd3\x31\x17\xc5\x2f\xd8\x00\x4c\x1b\xd3\xfb\x13\x2c\x2f\x7b\x9f\x80\x61\xda\xf9\xd0\x89\x8c\x12\xe5\x7d\xc2\xe9\x0e\x7b\xda\xc0\x15\x44\xd6\x25\x1b\x60\x20\xec\xd3\x0f\xba\x3a\xbf\x6d\x0c\x5a\x01\xfb\x01\x40\xf4\xed\x6d\x14\x99\x83\xce\xe7\x43\x40\x5f\xb3\x48\xd8\xf8\xf0\x8a\xaa\x83\x94\x52\xd8\xd2\xcf\x6a\xfa\x50\x32\x75\xc6\x54\x81\x26\xfa\x0b\x40\x2b\x64\xef\x4f\xe0\xcd\x77\x96\x28\xe3\xff\xca\x34\x62\x03\xd4\xb8\xeb\x5b\xbe\x3c\xf3\x44\x39\x87\xa2\xfb\x9e\x2d\xfb\xc5\x98\x9e\xb3\x86\xb2\xde\x9a\x9b\xbe\x05\x5e\x04\xb5\x9e\xd5\x04\x2f\x82\x9a\x0f\x19\xfc\xd2\x6b\xfd\x8c\x07\x1c\x44\xdb\x61\x3d\xc6\x57\x5d\xd7\x78\xc0\x28\xbc\x5f\x5d\x1f\x47\x85\x85\x38\xdb\x0d\x80\xf9\x3b\x7b\x67\xd1\x46\xa1\xe9\xe3\x16\x93\x94\x1c\xd2\x41\xdb\xa2\x7e\x3e\x8e\xa1\x47\xf3\xa1\x25\x8f\x92\xa4\xf6\x03\x74\x28\x5e\xed\x00\x20\x3f\xf5\x05\x18\x36\x4d\x0b\xe6\x61\xda\x8e\x9a\x0f\x80\x40\x62\x87\x94\x3e\xd4\x91\x26\x3f\x00\xdd\x3f\xdf\x27\x68\x19\x72\xba\xce\xc3\xf8\xd0\x12\x26\xf6\x90\x1a\xc0\x18\xbf\xbf\xc8\xd5\xd9\x26\xa3\xbd\x48\x84\x68\x53\x8c\xac\xce\xab\x09\x05\x4e\x55\xa4\xc3\x0d\xc0\x5a\x96\x8c\xbd\xcd\x8b\x6b\x9d\xd7\x7e\x53\x20\x92\x5c\x5e\x00\x96\xbf\xf5\xbc\x05\x72\x49\x99\x9b\x6c\x00\x76\x30\x22\xe9\xcc\x01\x50\x25\xb6\xb7\xc9\xfc\x3b\xf9\xba\x0e\x80\xc0\x1b\x3a\x16\x66\xa6\xcd\xd7\xe9\x3a\xed\xd9\xb3\xe8\x07\xf5\xf0\x5d\x26\xf0\x36\x95\x5e\x4d\x1b\x48\xb1\xd5\xdb\x19\x0f\x10\xec\x22\xf7\x22\xa3\xdf\x64\x3b\xcc\xc9\x74\x85\x5b\xf0\x03\xe0\xf3\x45\x83\x26\x3c\x22\x9a\x94\xc8\xc6\x70\xe1\x5d\x61\x35\x6c\x82\x5b\xe9\xe7\x74\x66\x24\x8e\xd2\xcf\x13\x13\x5d\x57\xd2\x08\x9b\x93\x56\xaa\x5a\x0e\x74\x0b\x34\x71\xc4\x6e\x37\x97\x36\xaf\xdb\x2e\x49\x9d\x24\xec\x2e\x57\x3a\x5d\xda\xdc\xa0\x47\xab\x99\x27\x89\x53\x52\x57\x64\x16\xe5\x86\xe8\x53\x55\x92\xba\x0d\xc0\x2a\xd3\x05\x50\x5b\xa0\xf0\x5c\xce\xc8\xcd\xb5\x5d\xf7\x01\x18\xef\xef\x7d\x02\x3b\x9b\x73\xbb\x01\xba\x8e\x55\x02\x60\xa3\xba\xec\x4f\xdc\x0a\x25\xb9\xa7\xd1\x42\x37\xe5\x4b\x5f\x8b\xb4\x01\xc5\x4f\x4f\x15\x6a\x8c\x84\x6d\x03\x30\xe4\xbc\xfe\x82\x19\xbd\x5b\xa5\x43\x64\x53\xaf\x1b\x9d\x98\x4c\xc3\xd9\x98\xb8\xf8\xd2\x60\x75\x4a\x86\xb3\xa6\x84\x51\xe8\xa4\xd0\x72\xc7\x66\x2a\x12\xee\x39\x13\x56\x9a\x6e\xfc\xee\x08\x9f\x52\xa4\x06\x70\xc6\x73\x28\xce\xed\xe6\x8e\xab\x61\x55\x74\x6d\xf7\x0c\x83\x41\xd9\x2a\x6d\x00\xb4\x84\x6c\xea\x06\xe0\x3b\xd5\x0e\x00\x5b\x09\x99\x8a\x6c\xe0\xcd\xc9\x1c\x00\x92\xc6\x5a\xd7\x1c\x29\x8f\xa1\x7c\x4a\x37\x00\xdb\x11\xf2\x8b\xee\xc8\x15\x5b\x33\x8d\xec\xdc\xfb\x60\x02\xe9\xf3\x04\xc5\x7f\xbc\x7a\x3b\x23\x0b\x74\xdd\xd6\xdd\x3f\xe0\xa0\xda\xad\xd7\x3e\xcc\x4b\xa9\xd7\x0e\x98\x13\x74\xb9\xb0\x39\xed\xbf\x8a\xae\x42\x3e\x68\x19\xa2\x18\x57\xce\xb8\x99\xa6\x70\x32\x3e\xb2\xa2\x2d\x55\x01\x30\xf9\xce\x7e\x9e\x98\x30\x4b\xac\x7a\x82\xf6\x5f\x0a\xad\xe5\x8c\x84\x59\x74\x27\x71\x39\xdc\x28\x0a\xbc\x0f\x44\x1b\x77\xb9\xb1\x6c\xa0\x83\x07\x78\x9f\x80\x1d\xda\xe9\xa9\xb2\x63\x50\xbe\xe1\xa3\xea\x00\xd3\xe7\x33\x8a\xa5\x92\x37\xf9\x68\x58\x52\x92\x4b\xfa\x60\xb2\x22\xe5\x14\xdb\x00\xc4\x5d\x3c\xc0\x9c\xf6\xfd\xa6\x50\xce\x3e\x9c\xdb\xed\x3c\x41\xfd\xf1\xd9\x5d\x8a\x71\xa5\x40\xab\xce\xd4\xee\xe5\x90\x9f\x79\x33\x17\xa2\x56\xf2\x84\x5e\xa0\x8a\x6d\xf7\x59\x78\x05\x51\xc7\x66\x65\xaa\x68\x4a\x72\x9d\x59\x3a\x9a\xdc\xb6\x9d\xf2\x9e\x2a\x41\xd4\x06\x10\xbd\x95\x34\xde\x27\x7c\x37\xba\x02\xe0\x3a\x1d\xee\x9b\xac\x32\x5d\xee\xf4\x52\x12\x3a\xd2\x0e\xde\xa5\x1d\x00\xf4\xb9\x29\x8e\x82\x4f\x04\x5b\x77\xe5\x79\xf1\x39\x19\x25\xcd\x0f\xc0\xc5\x4f\x21\x87\x4f\x2a\xc4\xdf\x46\x3f\xdc\x2f\x22\x94\xf4\xf4\x2e\xd2\x4d\x3a\xf5\x35\x4d\x96\xd5\x83\x89\x05\x4c\xbe\x64\x83\x79\xeb\x4a\xe2\x59\x33\x4c\x9e\x84\x59\x00\xed\x14\x15\x10\x78\x90\x94\x56\xa5\x40\x18\x46\x07\x35\xe5\x22\x18\xd4\xa4\x14\xd9\xf4\x6c\x00\x4e\x36\xa4\xcf\xc3\x0a\xd7\x69\x57\xc7\x0a\xc3\xec\xf2\xf0\x19\x86\x5b\x6d\xef\xdc\x2f\x1b\xc0\xbd\x26\x0b\xa8\x20\x4a\x22\x28\xc3\x1a\x44\x18\xed\xbc\x05\xc1\xd9\x8a\x1c\x20\x86\xf2\xd6\x49\xed\x3e\x0c\xb9\x52\x6b\x39\x8d\xc2\xde\xc2\xe5\x01\x30\x0c\xee\x40\x45\x6a\xd5\x61\x9d\x5e\xc9\x49\x5f\x0b\x7b\xeb\xa2\x30\x8e\x83\xa1\x8e\x8a\xdc\xa3\x86\xc9\x11\xe3\x74\x6c\x30\x7e\x78\xd1\xe7\x53\xbf\xa2\xa0\xd3\x1b\xa0\x4f\xec\xfb\x44\xc3\x59\x53\x0f\x40\x76\xff\x7d\x82\xb2\x26\xcd\x1c\xbd\x19\x14\x9a\x6f\x1f\xf1\x10\xa9\x9e\xa9\x84\xc1\x84\xb9\xa9\xa7\xcc\x02\xd5\xef\xff\x7c\x03\x2b\xe9\xbf\x9e\x5f\x83\x01\xf2\x8b\xd4\xe9\xc3\x91\x88\xa9\x49\xa3\x38\xe8\xda\x6a\x37\xc9\xe2\xf0\x2e\x2f\x85\x72\x00\xec\x36\xcd\xbb\x1b\xfc\x98\x25\xa9\x1a\x54\xa4\x74\x09\xfd\x07\x33\xba\x36\x39\xad\x0c\x25\x62\x4d\xdc\xa0\xc3\x99\xda\x40\x3c\xd7\x98\x1d\x9a\xa6\x5b\x3d\x9d\xd0\x89\x35\x29\x63\xa6\xc3\xde\xbf\x4b\x0c\x3e\x29\xdc\x6a\xf2\x63\x98\x83\x3e\xef\x89\xbb\x7e\xd2\x69\xa5\x4b\x50\x3e\x67\xa6\x01\x21\x3f\xff\xe3\x9d\x99\x96\x79\xb0\x7e\x8e\x7a\x82\x97\xa7\x2f\xd2\x6b\xde\x4d\xba\x97\x67\xc0\x82\xb5\x5a\x39\x00\x98\x41\x45\xb3\x78\x18\x6d\xbb\x67\xd2\xc9\x47\xd1\xb6\x15\x41\xed\x19\x17\x6d\xa0\x79\xc2\x9d\xac\xb1\x0a\xeb\xf8\x30\x74\xb6\x29\x05\xc0\x33\x98\xf9\x43\x3b\xe5\x19\xc8\x56\xd9\x14\x8f\xfb\x19\x09\x97\x27\x59\x8c\x3d\x23\x33\x16\x27\x39\x8f\x67\x64\x06\xb1\x29\x7a\x4b\x61\x1a\xd9\xf3\x2d\xb0\xe1\x68\xb2\xe6\x7f\x78\xa0\x75\xe5\xa3\x7b\xe8\xba\x58\x34\xfb\x8f\x5c\x17\x53\xd7\xb7\xc0\xd4\xf1\xa8\x6d\x1f\x0a\x84\x6a\x3a\xaf\xed\x52\x0b\xd8\x01\xa0\x2c\x4f\x7a\x82\x31\x41\x5b\xfb\xbf\x6b\x7a\xff\x31\xfe\xf5\x7f\xac\x7f\xfa\x5b\xba\x7e\x7f\xfe\xd6\x37\xf1\xfa\xa7\xbf\x7d\x22\x58\xf1\xfe\x27\xff\xfe\xa4\xcd\x03\x7f\xd6\xde\x3f\x7f\xfb\x84\xe2\x3c\x32\x5a\x7c\x22\x3b\xfa\xfe\xc7\x7f\x7f\xe2\x9c\xfe\x44\x08\xfa\xfd\xcf\xf3\xfb\x13\x89\x43\x3e\x61\xfc\xb3\xff\xd9\xbf\xda\x9f\xfe\x89\x88\xf2\xfb\x9f\xfd\xab\xcd\x97\x7d\x83\x07\xd9\xff\xec\xd9\xcf\xa1\xf0\xfb\x46\x76\x89\xbf\x7d\xe1\x62\x9e\x43\x91\xff\x0d\xf7\xf2\xfd\x4f\xa4\xbd\x0d\x1d\xef\x37\x66\x77\xff\x03\x6c\x13\x88\x95\x2c\x72\xa0\xa3\x00\xef\x4d\xa2\x1f\xa1\x60\x90\x03\xad\x7b\x9d\xa2\xe0\xbf\x3f\xc8\x9d\x9c\xc0\xaf\xa2\xe0\xbf\x3f\x71\xf3\x5e\xc9\x22\x3e\x35\x0a\xfd\xf7\x27\xf2\x4e\xec\xca\xe4\xdb\x70\x21\xca\xc8\x25\x9c\x2c\x04\x5a\x28\x8c\xdf\x9f\x38\x76\x56\xb2\xb8\xe0\xa0\xb0\xdb\xb8\xf1\xec\x47\xcf\x22\x70\x69\x41\xdf\xe2\xe6\x8b\x02\x73\x21\x97\x8d\x23\x4c\x59\x14\x36\xd9\x0b\x95\xe0\x4a\x7e\xf3\x4b\x60\xdf\x19\xbe\xed\xbb\xb2\x09\x15\x0a\xdf\xdf\x9f\x10\xc3\xac\xe4\x21\xd1\x44\x61\xfd\xfe\xc4\x25\x6f\x57\x62\xfe\xa2\x90\x7f\x7f\x22\x7d\xcc\x4a\xf0\xcc\x40\xc1\x7e\x7f\x22\x7f\xd4\x4a\x1e\xf1\x28\x50\xd8\xcf\x62\x84\xe6\x30\x7c\x1d\xed\x4b\x7a\xf8\xe0\x47\xf5\x23\x1c\x69\x5d\x31\x46\x73\x0a\xa7\xf6\x20\xcc\x1c\x76\x95\x23\x4d\xeb\x8f\x1e\xb6\x50\x2b\x21\xaf\x31\x0a\xf9\xf7\x27\xcc\x62\xa3\x62\x42\xe7\xef\x4f\xa4\x8a\x89\xca\x47\xe8\xfa\xfd\x09\x1b\xd2\x5d\xd9\x0d\xa2\x60\xbf\x3f\xc1\x1b\x46\xe5\x21\xba\x07\x31\x68\x43\x54\xb2\xd0\xb6\x51\xbe\x6d\xe8\x6d\xfb\x88\x0d\x99\x5c\x54\xd4\xc2\x5e\x3a\x0d\x33\x88\x6c\x4f\x28\xa4\xdf\x9f\x38\x3e\xa2\xa2\x76\xf7\xfa\x0e\x99\x68\x54\x9a\xd0\xdd\xb3\xca\x3e\x4c\x17\x3a\xf6\xb3\x42\xf5\x6d\x7b\x37\x44\x14\xe5\x95\xe6\xd7\x30\x27\x33\xf2\xa9\x76\xce\x49\xa4\x4e\x45\xe1\xfb\xfb\xd3\xb3\x9e\x65\x7f\xc3\x78\x21\x4c\x54\xa2\x52\x84\xda\xef\x4f\xe7\x98\x7d\xb9\x0e\x91\xd0\x18\x09\xa7\x13\x12\x1a\x47\x61\x5f\x11\x8c\x3d\xfb\x0e\xbd\x6d\x0f\x13\xf2\x7e\xef\x0a\xbf\x22\x72\x61\x44\xe2\xaa\xa8\xa8\xbf\x7b\x91\x46\x3e\xc6\xa8\x54\xa1\x7b\x0d\x5d\x37\x1b\x9e\xea\x44\x50\xc1\xeb\x66\xcb\xf3\x2b\x38\xf2\x3c\x27\x0c\xf1\xe2\x16\x61\x58\xa1\x2b\x55\xc2\x49\x70\xa4\x95\xc6\xa6\x44\x42\xad\x28\x04\xa3\x15\xe6\xa3\x51\xd3\xd3\xb1\x0a\xe3\xd4\x8d\x1a\x3f\x06\x09\x65\x91\x9a\x7f\xd7\xb2\xe0\xa0\x5a\x5c\x5a\x8b\x1b\x9e\x7e\x7b\xc8\x58\xbe\x6b\x53\x30\xc2\x13\xb0\x83\x5a\x46\x21\x5b\x4b\x97\x9e\xd6\xc7\x2f\x24\xa9\x06\xe9\x41\x78\x23\x14\xee\x0d\xd7\x4c\x38\x09\xee\xbf\x3f\xf9\xe2\x34\x3e\xda\x26\x11\x0e\x37\x87\xac\x38\x6a\x5f\xc1\xcf\xef\x4f\x46\x9e\xfa\x34\x23\x42\x37\x0a\x9b\x78\x67\xae\xdd\xc7\xb3\xe0\xb2\xa9\x4c\x2c\xff\x6c\x17\x36\x66\xa6\x76\x37\x72\xbf\xef\x4a\x15\xda\x91\x4e\xbb\x10\x37\xe1\x2e\x72\xb7\x2b\x43\x28\x84\x73\x44\x3f\x42\x61\x1d\x4e\x74\x09\x85\x02\x1a\x28\xfa\x9c\x19\x6f\x69\x73\x94\x51\x29\x42\x63\x62\xf4\xec\x57\x28\x6c\x86\x81\x0e\x7d\x47\x1c\x07\x31\xa0\xd9\xae\xa9\xfe\xee\x79\x08\xeb\x99\x95\xed\xd6\x37\xc3\xd6\x34\x47\xda\xc1\x95\x2d\x19\x7b\x01\x89\x50\x8e\x24\x7f\x51\x9d\xc2\x91\xa8\xfa\x6a\xc4\xbf\xc2\x91\x65\xbc\xb2\x1d\xf5\x05\xb9\x2b\xb2\x71\x44\xb2\xda\xcf\xc1\x28\x67\x6c\x9c\x5d\xfd\x0a\x67\xb6\x72\x0f\xbc\x68\x16\xc2\xc2\x13\x99\xef\xb3\x75\xb5\xd2\xa1\x87\x0b\xd1\x43\x54\x9b\x70\xe4\xf9\xbe\x8d\xb8\x0b\x47\xef\xf9\x55\xdd\xbe\xc2\x99\x6d\x1b\xed\x2c\xcd\x50\x48\x9a\x53\xef\x40\x9d\xb3\x19\x51\xf6\x43\x7b\xbc\xca\x34\x90\x92\x5d\x78\x36\x21\xb0\x40\x1d\xdb\x6f\x17\xf2\xef\xcf\xe6\xfe\xc1\xc2\x80\x61\xf9\x3f\xf1\x30\xab\xc0\x91\x07\x85\xf2\xfb\x83\x34\xb0\xbb\x86\xed\x56\x78\x3d\xc5\x79\xb5\x6b\x5f\xc1\x58\x04\x57\xc0\x13\x63\xb0\x0b\xfd\xf7\x27\x98\xeb\xa8\x0c\xa1\x9b\xf0\xb3\x97\x13\xab\xab\xe0\xa8\xea\x0d\x5f\x34\x07\xbb\x31\x37\x71\xec\x0d\xaf\xfb\x60\x7d\xee\xc2\xfd\xfb\x13\x17\xe0\x55\xe6\x57\x28\xee\x28\xc1\x22\xae\x32\x9f\xc9\x4e\x84\xc1\x34\x84\x36\xab\x6a\x3f\x54\xec\x87\x14\x5a\x92\x55\xed\xc6\x0b\x2b\xbc\x7f\x3a\x76\x5a\xb5\x04\x12\xbb\x0b\xfb\x98\x0e\x1d\xde\xaa\x56\xf0\x81\x95\xb7\xd3\x2b\xac\xaa\xa2\x6a\xc2\x83\xab\x8b\x4c\xf3\xbb\x36\x05\x07\xed\xcd\x3d\x03\xc7\xf0\x55\x5a\x36\xa4\x08\x71\xb1\xab\x60\x3a\x76\x61\xef\xb8\x14\x86\x2c\x51\xed\xc2\xf7\xe1\x10\xba\xbe\x55\xad\xaa\x99\xe0\x46\x42\xd0\xbf\x2a\x2c\x1d\x50\x18\xfb\x8b\x12\xd0\xc1\xa6\xc3\x2a\x38\x45\x7c\xcf\x5d\x9b\xfc\x20\x04\xdb\x08\x67\xf1\x55\xb1\xb6\x51\x88\x13\x31\xa1\x91\x3e\xd9\x74\xa8\x36\x7b\xcc\x6f\x35\xc3\x8e\xd8\x85\x7b\xb3\x11\x46\xb4\x09\xdd\xc7\xb2\xa1\xe1\x08\x3c\x88\x42\xfa\xfd\x89\x18\x86\xbb\x32\xd8\x2e\x42\x3a\x84\xa7\xfc\xae\x69\x12\xe2\xba\xdc\x22\x9f\xed\xaa\x08\xfa\x8b\x42\x1c\xe2\x09\x4d\xbb\x06\x2f\x72\x84\xe6\x90\x6b\x47\x6d\x0a\xfe\xec\x85\x6d\x68\x64\xa8\xd3\xa1\x62\xf4\xd0\x6f\x45\xad\x0b\xc6\x44\x16\xc2\x53\x30\x27\x12\x13\x36\xd4\xf1\xc1\x8e\x0b\xfe\x0a\xde\x13\x13\x37\xc4\x55\x61\xd9\x81\x42\x2c\x2a\x4e\x63\xe4\xec\x42\xe1\xf9\xfd\x01\xeb\x57\x91\x05\x0f\x85\xf6\xfb\x13\x76\x85\x51\x19\x42\xc1\x44\x61\x0a\xbe\x93\x5f\x13\x29\xb2\x9c\xab\xf5\xab\x65\x83\x6c\xd8\x99\x4b\x81\x14\xa6\x82\xc2\xb4\x74\x45\x1b\x88\x4b\x85\xc2\x26\x8f\x11\x7f\x68\x55\xcf\xec\x87\x47\xf0\xf3\x16\x71\xf5\x76\x8d\x6d\x7b\x48\x72\x7a\x78\xf5\xae\xea\x55\x8d\x44\x70\x9c\x1e\xd6\x6d\xab\x7a\x57\x23\x41\x25\x73\xa8\xe6\x77\x8d\x9b\x0f\xf6\x95\xb9\x62\x1b\xb8\x81\x34\xee\xc2\xe6\xb2\x23\x88\xda\xae\xe1\x8c\xaf\xc8\x18\x5e\x32\x56\x89\x93\x47\xde\x85\x7d\xd0\xdd\x95\x3d\x1c\x60\x20\x76\xa1\x63\x33\xa1\xf5\x31\xd9\x3a\xcc\xe9\x72\x84\x31\x5e\xd5\xc9\x23\xef\x42\x8a\x2f\x72\xc2\x59\x70\xd9\x1b\xa7\x11\x06\x91\xad\xb0\xcf\xc8\xe1\xc8\xb1\x6b\x43\xf0\xfe\xb4\x86\x63\xbe\x22\x51\x19\x0a\x65\x4f\x1b\x56\x9b\x2f\xae\x64\x0f\x43\xeb\x16\xc2\xd1\x55\xc7\xc5\xd9\x1c\xd7\x9e\xcd\x4c\x52\x05\xff\x60\x14\xf6\xf5\xa5\x78\x03\xcc\x4d\x09\x71\x71\x8e\xac\x26\xab\x22\x16\x13\x0a\xe3\xf7\xc7\x83\x57\xa8\x43\x94\x64\x04\x25\x89\xe8\xe7\xab\x42\x26\x8c\x02\xa2\x75\xdd\x80\x5d\xf0\xe6\x6a\xd3\x8d\x45\x0f\xef\x21\x14\xd6\x1e\x28\xec\xa8\xf1\xe1\xb8\x32\xd1\x40\xe2\xda\x1c\x5f\xee\x1d\xaa\x70\xf3\xcd\xe7\x49\xbe\x2b\x7c\x72\x42\x9a\x18\x95\x2e\x34\x3a\x28\x74\x08\x9d\x31\xc7\xe8\xe0\x52\xbf\xd7\xee\x77\x58\x5f\xee\x8a\xc6\x89\xe6\xeb\x21\x2e\x5f\x75\x3c\xb8\xde\x56\xa8\x4a\x91\x99\x64\xd7\x46\x25\xbc\x17\x4c\x09\x5d\xe7\xae\xe1\x0a\xb2\x0b\x9b\x33\xbb\x71\xce\xd7\x49\x6e\xab\x22\x0d\x79\x8e\x38\x28\xab\xc2\xf7\x06\x85\x3b\x7a\xd8\x09\x57\xc1\xb0\x1a\x48\x84\x97\x60\xe4\x55\x66\x23\x38\xe5\x77\x61\x9f\x51\xb8\xf7\xd4\x79\x93\x76\xc3\x13\xb9\x14\xcc\xf0\xbc\x49\x7c\xe6\x1d\xc4\x27\x5d\x7a\xe7\x64\x0f\x23\xcb\x58\xe3\x46\x9e\x89\xe3\x4d\xf7\xe5\x1b\xa3\x85\xcc\xdf\x28\x94\x38\x44\xd0\x15\xb2\x33\xbb\x10\xbb\xa7\x0b\xe7\xb0\xcc\x0e\x9a\x0c\xd4\xc0\x39\xef\xc2\x66\x39\x30\xf3\xd3\x06\x9f\x8d\x00\x41\x30\x6e\x58\x75\x3a\xe7\x61\x86\xfd\x87\x1b\xc7\xc4\x71\x03\xaa\x14\x8d\xdf\xa1\x43\x8c\xea\x57\x38\x0e\x4b\x1c\xae\x33\xdc\xd4\x51\x80\xba\x14\xdf\x33\x78\x68\x40\x9d\x09\xd7\xaf\xa8\x75\xc1\x7b\x2d\xb7\x9e\xfe\x9c\x2b\xaa\x73\x92\x26\xcc\xc8\x00\x99\x43\x99\xb5\x6b\x83\xd3\x87\x5c\x05\x09\x9c\x67\x9d\x1f\xe7\x44\x85\xab\x5a\xf8\x1d\xed\x0a\x69\xc2\xfc\xec\x79\x84\xad\x49\xd4\x9a\x60\xc8\xe4\x31\xab\x4b\x0b\x09\x37\xb0\xc8\xe3\x13\xb5\x21\x18\x02\x53\xb4\xbd\xb4\x06\xd6\x88\xcd\x9f\x01\x3f\x6a\x04\x21\x0d\x53\x04\x0c\x5d\xcd\x38\xd9\xbb\xb0\xb9\x9d\x30\xd3\x5c\x7b\x62\x1c\x70\xdd\x6f\xf1\x08\x4e\xb7\x6b\xa0\x71\xbb\x90\xf7\x44\x45\x0f\x9b\xd5\x21\x78\x4f\x6b\x89\xf8\x78\xab\x59\xc7\x3c\xed\x02\xe7\x09\x8f\x9b\xf1\x9d\x48\x4c\x9e\x73\x1c\x7b\xbb\xfa\x11\xfe\xdd\x27\x70\x07\x8a\x9d\xde\xe0\xa4\x90\xc2\x4e\x79\xd7\xb0\x94\x76\x61\x4f\x44\xa8\xe6\x56\x33\x37\x76\x25\xdc\x81\x5a\xa8\x79\x76\x4d\x9f\x19\xb1\x0d\x22\xa4\xd6\x6a\x36\xb0\xe9\x76\x21\xce\xbd\xb8\x96\x36\x9b\x7a\x18\x4e\x36\x61\x9b\x17\xb5\x26\x18\xd1\x53\xf0\xf4\x47\x4f\xc7\x5c\xc3\x91\x70\xd7\x06\xbb\x1d\xc2\x8d\x14\xd6\x0f\xab\xd9\x17\x7c\xd4\x2e\xec\x05\x91\xd9\x93\x47\x43\xf5\x40\x8c\x14\x8c\x54\x43\x6e\x58\x14\x7a\x5c\x97\x0a\x60\x8e\xb7\x87\xd1\x83\xe3\xbc\x6e\x08\x98\x8f\x42\xcc\x4e\xf0\x1e\xcd\x13\xf8\x9d\x86\xf8\x8e\xa5\x3b\x9e\xce\x20\x0a\xbb\x30\x7f\x7f\x2a\x7b\xe2\x15\x8c\xeb\x2e\xec\x7b\x73\xc8\x2c\x77\x4d\xaf\x8c\x29\xce\x21\xc0\xde\x35\x6c\xa2\x86\xa8\x8e\xb0\x5a\x5c\x0d\xa9\x5e\x51\xc8\xfb\x6e\x1b\x5b\xae\x79\xc3\xfd\xac\x41\x8d\x0b\xbf\x8f\x5d\x53\xbf\x91\xb6\xe2\x0a\x5b\x92\xd5\xbc\x73\x9d\x78\x30\x9f\x3d\x42\x3f\x45\x6d\x0a\xde\x57\xf8\x8e\x91\xf5\x08\xa8\x86\xc2\x37\xd6\x66\xa0\x64\xdf\x76\xc1\xf6\x08\x66\x7c\x0e\x6f\x20\xbb\x10\xc7\x07\xce\x48\x7a\x30\xa3\x30\x63\xc9\x1a\xde\xc9\x5b\xc8\x2e\x94\xd8\x3e\x1c\x96\xc9\x79\x63\xfc\xfa\x1c\x36\xa9\xbb\xaa\x4f\x9a\x9c\x0a\xa2\x4b\xe8\xf3\xfb\x93\xc1\x05\x36\x58\x78\x46\x61\x13\xe4\x16\x86\xbf\x51\x4b\x82\x73\x7c\xbe\x11\x2e\x82\x37\xdf\x1e\xea\x9f\x5d\xe3\x7a\xf3\x58\x6f\x20\xa1\xcd\xbf\x5c\xe1\x8e\x1b\x51\xa8\x19\x76\x6d\xf0\x8d\xc8\xa8\x1a\x66\x68\x51\x33\xc1\xbe\xe9\x92\xe3\x8d\x0f\x89\x81\x87\xb8\xa3\x39\x3a\x02\x95\x01\x0a\xd1\x3f\xd0\x88\x71\x73\x48\xe0\x41\xdd\x71\x06\xb7\x91\x39\xf7\x60\x5a\xa0\xe5\x5d\x6d\x68\xb9\x41\xc7\xec\x09\xa4\x03\xaa\x5f\x14\x56\xcc\x4f\x41\x2b\x03\x74\xb6\x21\xbe\x08\x8c\x7b\x76\x0d\x97\x96\x5d\x88\xb3\x29\x94\x97\xab\x8d\xa9\xc7\x45\x96\x3b\xf0\x8f\xde\xfa\x09\xb1\x49\xbe\xf9\xfc\x07\x97\x91\x5d\x48\x41\x99\x30\x8c\xf0\x91\x40\x21\x9e\x87\xf4\xb7\x8d\x0f\x97\x3f\x7c\x26\x3a\x04\xd6\x0d\x46\x63\x28\xc0\xcd\x15\x23\xb3\xf4\x51\xc1\x6f\x5b\x84\xdd\xdd\x35\x67\x27\x43\x0a\xe6\x8e\xf5\x3c\x16\x27\x74\x20\x63\xed\x0d\xe1\x4e\x1b\x0f\x77\xc5\x78\xe2\x5e\x1e\x29\x47\xa2\x56\x05\x6f\xa6\xa5\x60\xf3\xc3\x3c\x0b\x85\xd8\x2c\x8e\xae\x3c\x9a\xbb\x67\xcf\x1d\x0c\xf1\x16\x3d\x8a\x51\xd8\xec\x53\x02\xf5\x1c\xcf\x54\x23\x71\x63\x4a\xd8\xce\xf3\x02\x43\xb9\x0b\x7b\x5d\x40\xf8\xdd\xe6\x05\xf1\x39\xdd\x91\x1b\x74\x09\x0d\x79\xa0\x50\xd8\xe7\x6d\x06\x9d\x9c\x17\xa7\x68\x46\x1c\xa7\x9c\x40\x86\xe6\xcd\x4d\x8e\xe4\x50\x0d\xd2\xaa\x5d\xfb\x0a\xde\xeb\x22\xdc\x49\x76\x0d\x52\xe7\x36\x91\x15\x0c\x0c\x7c\x43\x52\x28\x14\xf6\xb4\x25\x6c\x2c\xb8\x16\xa3\x00\x17\xad\x58\x8a\xb3\x08\x86\x45\x80\x63\x85\xce\xca\xad\x3f\xc3\xde\xb9\x87\xdd\xf1\xa2\x1f\x2c\x0a\xdf\x3d\x99\x29\x06\x76\x1a\xae\x3b\x0d\x26\x5b\xc8\xc7\x1e\xb5\x8f\xe0\xfd\x74\x03\x99\x98\x0e\x9e\x6a\x17\x7a\xc0\x18\xaa\xc1\x23\x65\x86\xef\x96\x67\xd0\x89\x39\x07\x3f\x07\xb1\x74\x2c\xa2\x3a\xae\x36\x3f\x9a\x87\x08\x93\xe2\x11\xe9\x7b\xd1\xcf\x32\x0a\x7b\x50\x90\xd2\x62\x75\x89\x3d\x3a\xc5\x80\x94\x7b\x74\x09\xec\x3a\x7d\x44\x12\x68\x79\xb7\x1b\xeb\xad\x33\x63\x52\xbe\x8e\x9e\xf7\xff\xc1\x28\x75\x23\x9f\xbb\x0b\x21\x5b\xbb\xe2\x0a\xda\xe1\x42\x82\x82\xa3\x39\xbc\xfe\x76\x3d\x1f\xa7\x6b\x0e\x8f\x89\x5d\x05\x3f\xb3\x0b\x23\x64\x8e\x99\xcf\x4f\x7e\x06\xb2\x32\x85\x9f\xd9\xea\x96\x70\xe7\xdf\x85\x7d\xbe\xaa\xf5\xac\xde\x44\x48\x86\xae\x6f\xcb\x7a\x29\xe2\x18\xb7\xf0\xf4\x5c\x74\xd4\x44\x61\xfc\xfe\xa4\x88\x47\xbf\x6b\x2e\x78\x0f\x74\x86\xd0\xad\x4b\x00\xd8\x99\x02\xf2\xbe\xcd\x89\x67\xe1\xe5\xf7\xa7\x18\xbb\xd8\x71\xc6\xec\x42\x6c\x6c\x1c\x03\xdd\x3a\x76\x59\x47\x40\xf2\x9a\x83\x39\xde\xec\x2a\x5b\x31\xc7\xd1\x63\xc2\x97\xf0\x07\x03\xd6\x81\x0f\x0e\x0c\x2c\x4c\x22\x72\xe1\xea\xe6\xfa\xa4\x50\x85\x77\xac\xd7\x2e\x61\x48\x87\x30\xc4\xc2\x86\x61\x75\x1b\x9a\xa5\x90\x7a\x20\xc7\xca\xae\x81\x88\xef\xc2\x42\xd7\x31\x02\x63\x70\x1c\x11\xec\x27\x45\xd2\xb9\x5d\xd5\x6c\x44\xa8\x90\x06\xe9\x72\x47\x2e\x24\x14\x22\x1c\x41\x41\x2b\x5f\x7d\xd1\x17\xbb\xb8\xb1\x75\x92\xd3\x5d\xe8\x78\x6b\x25\x7e\x9e\x7f\xe2\xfe\x62\xe8\xe5\xd2\x88\xad\xe0\xc8\x72\xc5\xca\x7b\x70\x91\xdc\x85\x50\xc9\x04\x1f\xd4\xfd\xe2\x5b\xa1\x03\xbc\x2d\xe2\x2d\xed\x2a\x76\x72\x87\xf4\x23\x83\x16\x76\x04\x81\x41\x61\xee\xbd\x19\xf2\x8c\x5d\x7b\x08\xef\x33\xdc\x21\x0e\xea\x30\x66\x40\xe1\xf3\xfb\x93\x43\x35\xbe\x3a\xa2\xc0\xa0\x10\x52\x22\x68\xcf\xba\x67\xf5\x25\x2e\xf4\x3d\xb2\x71\xec\x1a\x87\xd1\x73\x2c\xea\x8a\x05\xe3\x19\xa7\x5e\x87\xe8\x25\x71\x7d\x79\x01\xf3\xb5\x0b\xc1\x4e\x5d\x59\xf8\x47\xf8\x77\x2f\x47\x7e\x67\xc1\x2d\xb0\x33\xce\xcc\x1d\x2e\x69\xbb\xca\x39\xf5\x70\x41\xce\x09\x64\xc2\x0b\x88\xd0\x2e\xec\x95\xd1\xd0\x95\x32\xd5\x08\xce\x93\x44\xb4\x0b\xdd\x17\xb8\xb0\x69\x58\xdd\x29\x5c\xe8\xe0\x35\x91\xa0\x71\xd7\xf4\xc2\x70\xc9\x4b\xe1\x6a\xb0\xba\x37\xe7\xc7\x47\x62\x26\x78\xed\x46\xcd\x05\xc3\xb4\x23\x03\x1e\xfc\x78\xb8\xf0\x3a\xfb\x47\x61\xe7\x2e\x84\xad\x0e\xf6\x96\x38\xcf\x0e\xce\x33\x81\xc3\xec\xe2\x30\x3b\x38\x4c\x23\x85\xf4\xae\x9e\x84\x45\x65\xd2\x00\xf2\x26\xb2\x0b\xe9\xf7\xa7\x44\x0c\xb4\xd5\xdd\xb9\x85\x1c\x7e\x10\x14\x89\x77\xf7\xc9\xc7\x23\xd8\x00\xf2\xa1\x45\x6d\x0a\xde\x2b\x25\x83\x5a\x3b\xf5\xc0\xdd\x19\x67\x00\x84\xcb\x87\x73\x2e\xb1\x11\xaf\x88\x69\xb0\xba\x4f\x9c\x8f\xbb\xb0\xf6\x07\x71\x75\x4e\xad\xab\x30\xef\xc9\x91\x0f\x7d\x75\x49\xb2\x76\x21\x88\x25\x3f\xe8\x63\x4b\x30\x82\xb8\x5d\x18\xf2\x8f\x86\x3c\xce\x99\x5e\xd9\x73\xaa\x7c\x3b\xcc\x26\x53\xee\x6c\x45\xdf\x19\x1a\x5b\x8b\x48\xec\xab\xfb\x57\x1f\x14\xda\x54\x84\xf8\x8c\xda\x14\xfc\x09\x18\x3d\xfc\xaa\xed\x20\x09\x5e\x38\x2a\x4b\xdf\x13\x02\x9d\x62\x20\xc4\xc8\xd5\x84\x42\x0e\x42\x91\xd1\xf1\xa5\xb1\x5d\xa0\xac\x7c\xfc\xd1\x2e\x44\x56\xcb\x14\xd6\x30\x51\x5d\xc2\xc1\x35\x72\xfe\x29\x2e\xea\x4c\xd5\x9f\x35\x00\xcf\xe0\x7a\x0e\xf3\x79\xe4\xc0\x58\x7d\xe8\xa0\x1d\x38\x68\x23\xed\xc2\xae\x81\xc7\xec\x08\x0d\xdf\x2f\x0c\xd7\xa0\x48\x67\x17\xea\x1e\x00\x4c\x34\x92\xbc\xa3\xd0\xf6\x00\x84\x2c\xaa\x8f\x44\x5a\x36\x22\x5a\x54\x8e\x28\x07\xab\x8f\xcc\x09\x1d\x39\xce\xea\x0b\xd2\x98\x0e\xf9\x60\x14\x82\xb2\xde\x09\xa3\x8e\x78\x82\x28\xc4\xde\x4f\xc1\x63\x76\x44\x8b\x47\xe1\x13\x6b\xf7\xc6\x6b\x0b\x29\xeb\x28\x38\x8b\xc0\x96\x77\x24\x42\x47\x21\x36\xba\x81\x42\x23\x30\x3b\x0a\x48\xdb\x92\x00\xf3\x4c\x87\xd9\xa8\xdd\x58\x8e\x08\x6c\x8e\xc2\x0c\xc2\x15\xdc\x7a\x47\xb0\x72\x14\xf6\x6c\x93\x40\x23\xd6\x37\x0a\x61\x15\x6b\xe8\x63\xd7\xf8\xf6\xa0\x67\x8e\xc3\x78\xf4\xc1\x4f\x8a\x7b\x62\x87\x64\xb9\x23\xc8\x36\x0a\x7b\x39\x42\xa7\xd9\x87\x71\xaa\x87\x85\x44\xaa\xf0\x3b\x79\x2d\xe9\xb8\x96\x94\xb0\xa3\xdb\x35\x0d\x63\x24\x1b\xac\xe1\x8a\x15\xb5\x2e\x38\x46\xa5\x78\xff\x0b\x9c\xd3\x70\x1e\xe0\x23\xe4\x5c\x77\xb2\x9b\x2f\x27\x8d\x65\x24\xe8\x9c\xb0\xa3\x06\x55\x11\x1d\xc1\x9c\x7b\xad\x84\x35\xe7\x63\xcf\x79\xee\x1c\xb5\xa1\x71\x80\xfe\xee\xba\x38\x6c\x53\x53\x85\xa4\x20\x77\xe4\x68\x8a\x6a\x12\x8e\x10\x24\xe0\xbf\xc6\xb4\x22\xbc\xc6\x37\x03\xfe\xa8\x99\x10\x9e\xf7\x70\x74\x5c\x1d\x97\x12\x14\xfa\xa6\x91\xec\xe3\xa3\x4f\x0a\xd9\xea\x7d\x43\x2a\xd5\xe7\x85\x8b\xf2\x2e\xec\x6b\x5e\xc5\x3b\xe7\x8d\xfb\xe9\x2e\x78\x34\x0e\x98\x6a\xe2\x8e\x40\x44\xfd\x06\xdb\x20\x36\xbf\x83\xcd\x2f\x37\x78\xbb\x99\x79\xde\x31\x5c\xd0\x1e\x5f\xe2\x55\xf8\xbe\x40\x19\x8e\xc1\x99\x71\x55\xee\x33\x62\x7f\xd4\x86\x83\x1d\x77\x04\x14\x9e\xbd\x6e\xb0\x8b\xe1\xf8\x8d\x42\xbc\x33\xee\x95\x7d\xea\x40\x99\x50\xf9\x5e\x61\x06\xbc\x3a\xb4\xb4\x51\xe0\xbe\xc4\x64\x4c\xe7\x49\x33\x23\xde\x43\xcd\x60\xf9\xa6\x73\xdf\xcc\x88\xbb\x57\x2b\x76\xeb\xa4\x8c\xa3\xd3\x56\x28\x47\xb6\xc3\xd5\xe7\x47\x7d\x0c\xf9\xbb\x19\x36\xf1\xfc\x6a\xb8\x10\xd5\xa1\x40\x1f\xda\xe7\x97\xe7\xef\x0c\x7e\xcb\x0c\xac\xb3\xec\x50\x3a\xec\x50\xbc\x98\x60\x17\xbc\x79\xe1\xce\x51\xfc\x92\x72\xd0\xb8\xe4\xce\xe0\x1c\x27\xd5\xd5\xbb\xb0\x2f\x40\x37\x1f\x5f\xe4\x04\x11\x47\xc6\x8c\xe3\xf2\x90\x12\xcc\x67\x0f\x9c\x45\x08\x9f\x5d\xd3\xd4\x85\x25\x85\xdd\x1c\xad\x47\xa3\x15\xd6\xdf\x99\x1c\xc2\x7c\xc8\x7b\xcd\x67\xbf\xdb\xc9\xef\xe1\x36\x84\xc2\xfd\xfb\x53\x22\x5c\x71\xd4\x92\xe0\xe0\x9a\xee\xcc\xc7\xa7\x1e\xdf\x4b\x14\xd9\xfe\xa3\xd6\x05\xc7\xde\x86\xc4\x6e\x57\xbf\xc2\x43\xe6\x09\x3d\xb1\xc9\xcc\xc2\x60\x66\xd1\x21\x82\x37\xe4\xa6\x42\x21\xbc\xa6\x70\x45\x35\x23\x3b\xb9\x27\xe1\x8a\x71\x69\x80\x71\xa6\xee\xc2\x26\x34\xb8\x23\x19\x3c\x68\x50\x88\xe5\x15\x87\x84\x19\x4f\x83\x5d\x28\xbf\x3f\x09\xf6\x3f\x86\xf0\x92\x28\x84\x35\x30\x34\x75\x06\x0b\x3d\x14\x62\x46\x83\xf9\x34\x6b\xce\xc6\x43\x7a\x57\xa0\x4c\x33\x23\x99\xdd\x85\x84\x01\xc0\xe3\x1d\xc3\xbb\x0b\x41\xa5\x22\xbf\xf0\xae\x62\xc0\x0c\x2a\x63\x8b\x18\xec\xcb\xa0\xdf\x45\x61\xfe\xfe\xa4\x30\x6d\xdc\x35\xdc\xee\x76\xe1\x1b\x4f\xa3\xeb\x8e\x3d\xba\x0b\x71\x13\xc8\x49\xb8\x09\xf7\x3d\x49\x37\x5a\xf1\x21\x38\x2e\xcc\x29\x52\x4b\x2c\xb3\xa1\x81\x09\xd3\x86\x06\xc9\x95\xd9\x57\x93\x11\x6b\x37\x41\x43\x66\x70\x42\x41\x21\xcc\xa8\x7a\xf0\xd9\xe6\x05\x74\x7a\x17\x62\x60\x82\xd4\x99\x57\xbe\xd4\xe3\x94\x2b\x50\xbd\xee\xda\x43\x18\x16\xf8\x61\xcf\xbb\x0c\x8a\x4e\x14\xc2\x84\x2d\x18\x56\x73\x9b\x84\x11\x46\x39\x47\x70\xc3\xb5\x3f\xb4\x01\x87\xbb\x6d\x8e\xf0\x9d\xbb\x0a\xa9\xdb\x2e\xac\xdf\x1f\xb8\xf6\x2e\xf3\xc1\x4f\x82\xe3\xb9\x81\x03\x37\x69\x3c\x0d\x1a\x4f\x8b\x2c\x93\xcb\xa0\xe7\x44\x21\xff\xfe\xe4\xf0\x96\xdf\xb5\xc1\x77\x42\x2f\x71\x25\x0c\xaf\x7f\x21\x19\xd9\x85\xe0\x36\xc2\x1d\x64\x99\x2f\x6c\xd3\x5d\x08\x0a\x9b\x3b\xfa\x48\x3b\x8c\x5d\xe8\xb8\xb2\xc7\xec\x0d\x1a\x1b\x19\x58\xa3\x3b\x71\xb6\x07\xcd\x8d\x76\x61\x0f\x0d\x2c\xbb\x6c\x50\x20\xb1\x0b\x61\x11\xd2\x0b\xe1\x2a\x18\xb1\xf6\x82\x85\xb4\x71\x4f\xe1\xa1\x80\x06\x01\xb7\x91\xa0\xc8\x31\xe4\xdf\x49\x11\x22\x6f\xd7\x38\xee\x03\x59\x2c\x4b\xc6\x88\x21\x77\x3c\x0a\xe9\xf7\x27\x83\x11\x35\x18\x34\xa3\xb0\x42\x39\x99\x01\x4f\x3d\x1d\xaa\xc2\x2b\x62\xcb\x2c\x1b\x05\x22\x5d\x03\x23\x55\x22\x62\x5e\xd4\xba\x60\x0f\xa3\x81\x0b\x9f\x44\xab\x90\x5d\x88\xeb\x76\xc6\xde\x1b\x55\x03\x86\x38\x72\x29\x61\x8f\x8d\x0a\xc9\xc2\x2e\x84\xf4\xba\xb2\xf3\xda\xd9\x8c\x7d\x93\x23\x3e\xe9\xb2\xd1\xf5\x7c\x48\x22\xcc\xb1\x96\x10\x2e\x12\x85\x60\xa3\x23\x90\xfc\xb2\x41\x9d\xde\x2e\xec\xdb\x12\xcc\x6b\xe8\x3c\x8e\xc2\xe6\x5c\x9d\xb3\xe7\xfa\xa8\xd8\x9c\xf0\x6e\xdc\x35\x35\xee\x61\x47\x63\xd8\x64\x63\x6a\xae\x11\xc7\xec\x32\xac\x77\x04\xb4\x41\x61\xe3\x77\xb9\xfe\x82\xf1\x92\x8d\x8f\xa6\x2b\x96\x74\x81\x5a\x9b\x2e\xc2\x28\x04\x5f\xc1\xb5\x40\x8b\xc8\x5d\x98\x71\x80\x76\x7c\xd9\x52\xa7\x16\xec\xdd\x0a\x16\xf8\x58\x24\x37\x74\xf5\xcd\x35\xf4\xc9\x26\x6d\xad\x41\x5b\x6b\x11\x9b\x6e\xd7\x48\x11\xa0\x9f\xbd\xaf\x84\xde\xcc\xc4\x81\x9b\xc1\xe4\x7b\xcb\x84\x49\x59\x67\xc2\x85\x1c\x12\x47\x9b\xb4\x62\xdb\x85\xbd\x62\x23\xca\xc4\x32\x24\x53\x45\x61\x5f\x05\x22\xff\xdb\xae\xa9\x95\x70\x48\x2d\xd0\xc9\xdb\xcc\x38\xe6\x76\x21\x56\x60\xc8\x55\x77\xed\x23\xf8\x1b\x30\x9e\xa6\x75\x93\x31\x8b\x7d\xaa\xd8\x82\xb3\xb8\xf0\x3d\xc9\x08\xd2\xb8\x6c\x8a\xf4\xcd\x20\x7d\x8e\x4b\xa9\x4d\xf2\xef\x86\xc0\x39\x1e\x3e\x2e\xbb\x86\xcb\xc4\x2e\x94\x0d\xe3\x44\x98\x46\x6a\x33\x91\x00\xe6\x82\x1c\xc0\x24\x42\x35\x88\x50\xef\x3b\x7c\x89\x96\x41\xd9\x8b\x42\x08\x0e\x35\xba\xc3\xf9\xd6\xe0\x7f\xef\x1c\xb1\x2e\x96\x4d\x0a\x9f\x76\x61\x33\x11\x90\x5a\xd3\x93\x15\x85\x58\xae\x20\xcf\xf3\xa3\xd1\xfd\xc0\xa0\xa0\xe1\xa5\xb4\x3f\x33\xd8\x9f\xdd\x17\x29\xe8\xfc\xa8\x33\x61\x1d\x7d\x5f\x06\xe2\x34\xbf\x1a\x48\x44\x4a\x4a\xe1\x5a\x18\xd5\x87\x78\xd8\xcb\xa6\x70\x06\x8c\xaa\x9e\xa7\xc1\x2c\x76\xf2\xfc\x6a\x70\x20\x0a\xeb\x9d\xef\xe5\x0d\xd7\x60\xd6\x7a\xd7\x88\xe5\xb5\xdc\x48\xe5\x76\x21\x85\xf9\xbd\x13\x1e\x82\xe7\xde\x07\xce\xa7\xb1\x65\x77\x21\x4c\xba\x63\x29\xb9\x65\x30\x0c\x8e\x5c\xf5\x1d\x1a\x58\xb7\x8c\x9b\x04\x1d\x67\x2d\xe2\xa2\xec\x1a\x36\xb8\xc3\xc5\xcb\x60\xfc\xee\x30\x99\x44\x01\x86\x51\x86\xc7\x0b\xc8\xf3\x2e\x84\x91\x51\x64\xd5\x8e\xea\x10\x1e\xb4\x2c\xc2\x5a\x2e\x47\xb2\x4a\x14\x62\x4f\xe2\xfe\xe2\xc8\x59\x89\xc2\x13\x46\x6e\x09\xf0\x10\x3c\x62\xed\x75\x0c\x40\xd3\xb8\x20\xff\xd6\x65\x7e\x13\xaf\xc2\x1b\x7a\x69\xc0\x31\xdf\xbb\x70\xa3\x97\xe8\x4d\xd3\x18\x44\x54\xfd\x1a\xd1\x74\x76\x4d\x63\x00\x8d\x66\x8a\x68\xe8\xcb\x91\x47\x1f\x85\x19\x6a\x68\xb4\x6e\xce\x6f\x8a\x54\x4b\xb9\x70\xdc\x27\x0e\xba\x5d\x28\xe8\x24\x5a\x99\x53\x38\xe2\x22\x69\xe4\xbf\xea\x24\x94\x7d\xb7\x73\x11\x3c\x20\x4b\xbb\xf0\xdd\xe7\x68\xdc\x8f\xe8\xb1\x8b\x82\xc3\x92\x53\xf8\x10\x3e\xb1\xa1\x3a\x70\x50\x94\x5d\xd8\x6b\xc9\x82\xfc\xbb\x93\xba\x39\xa3\x61\xe7\x48\x04\xbd\xab\xe0\x31\x76\x61\xfd\xfe\x54\x88\x3f\xdc\x79\x59\xdb\x85\xe0\x0f\xc3\xaf\x6e\xb9\x37\x35\xd3\xe0\x06\x13\xa6\x7d\xee\xbc\xe4\xef\xc2\x08\x2b\x9a\x0b\x78\x57\x27\xe3\x46\x55\xe1\x4c\xe1\xde\x71\xc0\xee\x42\x86\xc6\xa7\x13\xd7\xe3\x38\x19\x23\x5e\xe5\x72\x77\x70\xce\xbb\x10\x36\xa0\x46\x78\xb0\x19\x0f\xbf\x1d\xdc\x3f\xdd\x1d\x0c\x8c\x23\x49\x7a\x8e\x68\x31\xcb\x7d\x70\xd1\x40\x58\x97\x8b\x0b\x36\xc1\x9b\x1a\x5e\x05\x5d\x1c\xea\x62\x68\x79\x3c\xd2\xda\x45\xad\x08\xde\x6b\x20\xd2\xbb\xec\x1a\xc8\xd2\x2e\xd8\x3e\xc8\x1c\x83\x4b\xbb\xda\x5d\xe8\xf1\x4a\x27\xec\x82\x47\x34\x82\xa7\x3f\x7a\x3a\xa8\x59\xe9\x17\x06\xe5\xc3\xc5\xeb\x08\xc7\x91\x22\x5f\x7b\x54\x97\xf0\x90\x7f\x39\x36\xbc\x7f\x26\x3f\x28\x5c\x29\x2a\x74\x89\xee\x1f\x4d\x74\xdc\x37\x2b\x8c\x7a\xdc\xbf\xce\xd6\x23\x77\x4f\x85\xaa\xce\x9d\x26\x88\x0e\x65\xb3\x83\x51\x75\x7f\xb8\xad\x1d\x01\x04\x32\xae\xbc\xee\x8f\xb3\x71\x44\x0d\x4d\xf0\xe6\x70\x7f\xf4\x52\xde\xb3\xa0\xad\xf3\x71\x81\x47\xd9\x85\x1c\x53\xe4\x84\xab\xe0\x30\x37\x0c\x06\xcb\x21\x99\x43\x61\xb3\x6f\x70\xe9\x70\x31\xa4\x0e\x86\x34\x3b\xc6\x65\x5c\x24\x8f\x23\xdc\xa2\x0a\x2c\x26\x7c\xdc\x7a\x1a\x51\x4a\x13\x5c\x9f\x7c\xdc\x5c\x44\x03\x49\xd5\x53\x84\x0d\xdb\x55\x6e\xdf\x11\x1e\x45\x77\x6e\x98\x8e\x91\x06\x3b\x83\x48\xa5\x57\x66\xdf\xc9\x7a\x3a\x58\xcf\x3b\xe1\x46\xe1\x83\x56\xea\xbb\x10\x46\x91\x15\x23\xc0\xb3\xd9\x99\x8c\xf1\x82\xc5\x9c\x8f\xc2\xd9\x1e\x71\x6f\xb9\x6f\xef\xf9\xcf\x39\x29\x1f\x14\x74\x38\xb2\x2e\x56\x9c\xa2\x3e\xda\xe0\x5b\x10\x31\x38\x45\xf4\x86\xe5\xa3\x3b\x3f\x0e\x1e\x75\x97\x37\xf4\xaa\xab\xb3\x08\x8b\x79\x3b\x16\xcf\x70\x3d\x8f\xa4\x23\x39\x75\xe1\x43\xf8\x3e\xa1\x9c\x63\xe4\x7a\x2d\x9c\x31\x73\x38\x9c\x2f\x87\x39\x40\x14\x60\x09\xca\x29\x98\x6a\x3d\xd8\xcb\xea\x37\x3a\x4f\xb3\x00\x87\x59\x40\xe9\xd8\xc7\xe3\xc3\x35\x48\x3f\xf3\x14\x81\x09\x76\x55\xf3\x8e\x30\x6b\xf9\x06\xc9\x1a\x1f\x67\x33\x88\x17\x90\x33\xbf\xe9\xa3\x21\x83\xdd\xe3\x05\x81\x84\x8f\xaf\x26\x32\xdc\x8b\x0a\x8c\x17\x7c\x7c\x07\xd7\x0f\x72\x7d\x5f\xb8\xb8\x38\x42\xad\xa0\x00\x9a\x15\x92\x17\x87\xfe\x1c\x05\x18\x2f\x04\xdb\xee\xf3\xe6\xce\x82\x98\xac\x3a\x0e\xcc\xc9\xbb\xc8\x2e\x24\x58\xa8\xc7\xd7\xce\xc2\x41\x60\xd0\xc4\x04\x55\xa9\xcf\xca\x1d\xc4\xec\x22\x09\x1e\x3f\x8e\x10\xd5\x28\xc4\xe8\x74\x3e\xdf\x48\x42\x27\xb2\x4e\x26\xe8\xb8\x7c\x6a\x85\x30\xa6\x74\x82\x1d\x80\x4f\x51\x74\x66\xba\xcf\x50\xed\xfb\xec\xc2\xc3\x94\xbc\x72\xd3\x4d\xda\x92\xef\x02\xe4\x09\x17\xba\xef\x60\x07\x77\xe1\x1b\x8f\xa3\x37\xd4\x97\x38\x84\x62\xf7\x5d\xc1\xf1\x20\x3c\x32\x0a\x0d\xd6\x98\x99\xf8\x47\xf8\x6e\x26\x83\x1a\x4f\xda\xef\xec\x42\x78\x9e\x40\xee\xee\x93\xa6\x3a\x0e\x06\xf0\xbe\xaf\x0b\xcf\x7f\xd5\xcb\x2f\xcd\xeb\x32\x9e\x27\x1f\xe7\x70\x03\xbb\x53\xc7\x21\x20\x3e\xce\xc1\xc7\x55\x88\xe6\x76\x6d\x09\x0e\x9d\x6e\x01\x01\x87\x5b\x17\x0a\x0d\xf6\x27\x68\x66\x91\x64\xcc\x85\x80\x88\x50\x77\x2d\xa3\x5f\xe3\xa2\x4b\x4e\xcb\xc1\xb7\x2f\xa3\x69\xc6\x2e\x54\x84\x16\xed\xc4\x3b\x71\xe4\x27\x0d\x2f\xd4\xb5\xec\x56\x3b\xb8\x53\xb7\x88\x8e\x17\xd5\x2e\x3c\x02\x0e\x40\x5d\xb3\xa0\xd3\x8f\x02\x94\x72\xb8\x30\xed\xea\x87\x38\xbc\x79\x61\x9d\xb2\x8c\x4a\x8f\x05\x79\xd6\xdd\x0a\xfb\x49\x5f\xcb\x45\x87\xa0\x16\x69\x6b\xd7\x92\x43\xd0\x62\x9a\x95\x06\x0d\xcc\xae\x36\xe1\x78\xbe\xf1\x79\xac\xfd\x45\xc7\x9f\x16\x11\x5c\xd7\x92\xe3\xcf\x2e\x20\x59\x3c\xfb\x93\x8d\xfd\xcc\xf0\x6c\x8d\x38\x12\x51\x7d\x88\xa3\x9f\x70\xe5\x59\x96\xd5\xcf\x3c\x99\xdd\x94\xcf\x83\x1d\xdf\x85\x07\xe1\xb1\xf1\x5d\x45\xef\xc5\x7d\xaa\xe1\x9e\xb5\x64\x6f\xb0\xe0\x07\xb2\x71\xb4\x5f\x06\xdf\xcb\x2c\xb9\x91\xab\x39\xaa\x55\x38\x12\x8f\x5e\xf8\xae\xaa\xf6\xb1\x77\x1b\xbc\x3d\x17\x78\x65\x14\x98\xc4\xa2\x13\x1f\xc2\x27\x22\xc2\xdd\xc4\xbf\xc4\x11\x5d\xa6\x73\x9c\x2b\x28\xde\x62\x8c\xe9\xd6\xf9\xbd\xbc\xf8\x2d\xb0\xdb\x4c\x67\xbb\xab\x53\xfd\x61\x3f\x2b\xfa\xdf\xd4\xcf\xc6\xac\x72\x9c\x97\x06\xde\x68\x31\x0a\x43\x8b\x90\xe0\x51\x2d\xc2\x23\xbc\x10\xec\xb8\x96\xfc\x88\x17\x53\xc7\x23\xeb\x57\x54\xf9\xbd\xf0\x24\x6e\x76\xe1\x7b\xdb\xfc\x08\x47\x74\xb5\x84\xf6\xbb\xfa\x83\x64\xb0\xcd\x72\x26\xde\x85\x23\xf7\x68\xd6\xf3\x1c\x37\x26\x7e\x85\xb9\xdd\x82\xcc\x33\x0a\x6c\xbf\x61\x1f\x51\x72\xb2\x20\xe5\xbc\x9b\x39\xfa\x63\x63\x09\x47\x5e\xe0\x82\xf1\x37\xad\x5b\x63\xbe\xe0\x82\x76\x5c\xfd\x84\xfc\xb3\x39\xf7\xa3\x3b\xd7\x8f\x33\x7d\x81\xf1\x79\xcd\x8b\xb3\x1d\xc7\xba\x1a\x6a\x67\x30\x6b\x5b\x4a\xc4\xf9\xbd\xb8\x33\xf7\x8b\xe3\x33\xb4\x4f\x07\x23\x4b\xd6\x4e\x9c\xeb\x64\x30\xcf\x6c\xc3\x3a\xa7\x7c\x71\x31\xe5\x7c\x87\x8f\xcd\xbe\xbb\xf3\xbd\x93\x5e\x62\x86\x71\x9e\x5a\x27\x93\x69\xf6\xec\x26\x9e\x84\x23\x68\x6c\x06\x4e\xf1\xce\x32\x90\xe1\x7e\x73\x7c\x68\xbf\xb7\x0b\x15\x71\xcb\x32\x71\x7e\x17\x42\x19\x17\x68\x1c\x77\xf5\x23\x3c\xe2\xcf\x45\x10\xb7\xa8\x2e\xe1\x48\x7e\xd1\xb0\x6e\xbf\x7a\x2f\xa2\xd1\x15\xf8\x7e\x2c\x24\xb0\x47\x21\x1c\x2e\xa1\x0d\xd8\xd5\xaf\x70\x24\xf7\xfa\x2b\xae\x77\x4b\x17\xb9\x5d\x60\x0a\x83\x44\xbc\x09\xc7\x67\x90\x6c\x91\xd5\x5e\xcc\x9b\x5f\x6e\x6e\x83\xaf\xa6\xed\xcb\xe4\x3e\xd7\x4d\x5c\xdd\x45\xf0\x17\x18\xd4\x2c\x78\x05\xa1\x30\x4f\xb4\xd8\xa8\xea\x33\x10\x2b\x07\xe2\xcc\x65\x4b\xd3\xb9\x10\x34\x25\x71\x58\x97\x57\xe1\x5f\xc4\x84\x14\x4e\x72\xb6\x10\xa5\x3b\x71\x19\x2d\x91\xef\x35\x19\xca\x01\xd3\xf9\xa8\xfd\xc7\x98\xed\xe0\x22\x6e\xc2\xa1\x35\xe1\x76\xa2\xe2\x7e\x19\xc2\x33\x95\x4c\xb2\x48\xc5\xfd\xa2\xfb\x3f\xd2\xb0\x44\x95\xdf\xf5\x0c\xa6\x67\xc1\x34\x3f\x1a\x9f\x87\x21\x5f\x79\x4c\x3e\x1a\x07\x46\xb0\xc3\xfd\x7d\x29\x8c\xc0\x52\x52\x29\x58\x1c\xed\x6a\x11\x4e\x61\xb2\x13\x77\xe2\x8a\xdd\x59\x80\xf3\x18\xf6\x30\x8a\xbc\x4b\xc6\xfc\x3a\xdd\x7f\x96\xa2\x6e\x65\x1c\x03\xae\xe3\xd9\x6f\x44\xe4\x89\x00\xd4\x51\x9d\xc4\x19\x33\x26\x11\x27\x79\xf2\x9b\x41\x66\xb1\x6d\xfc\xd6\x7b\x6f\x1a\x16\xe2\x18\xf6\x1b\x1c\xe8\xf2\x7b\x32\x75\x04\xbe\xeb\x9e\x6a\x9f\x91\xfc\x1a\xfa\xa9\xe3\x99\x21\xf7\x4b\x01\x59\x47\xc0\x7d\x14\xd6\x89\x94\xb9\xab\xae\xe7\x11\x0e\x07\x06\x18\xbb\x9a\x88\xa3\x7d\x58\xe0\x2f\xd7\xb1\xed\x30\x6f\x28\xd0\x2d\x2d\x38\xa2\x45\xc1\xfd\x84\x3a\x8b\x2a\xfb\x99\xd9\x0e\xd8\x23\xd7\x31\xec\xcc\xbf\x50\xb1\x7e\xbc\x70\xfd\x78\xc1\x7c\xc1\xa9\x60\x57\x39\x3e\xc8\x0e\x53\x78\xfc\x3b\x65\x5a\x8b\xb9\x3f\x11\x34\x68\x2d\xd7\x31\xec\x95\x71\x55\xb1\xce\xbd\xaa\x9f\x8c\x0a\x17\xd9\xb7\xa2\xfa\x10\x67\x3b\x1c\x37\x1d\x93\x08\x18\x71\x17\x1e\xcf\x4e\x43\x89\xe5\x0c\x8e\x8b\x0b\xcc\xae\x0a\x67\xaa\x2e\xb6\xdf\x70\xe3\x5c\x4c\x03\x56\x78\xdc\xba\x8e\x3d\xef\x4c\xcd\x69\x98\x77\x4a\x51\x16\xa4\x28\x50\x90\xef\x0a\x7b\xdf\x19\x5a\x83\xb3\x42\xc3\xfb\xe5\x50\x17\x14\x38\xfb\xec\x6a\x15\x1e\x6f\x35\x8e\x8e\xe9\xad\x4c\x88\x60\x60\x8e\xdc\xc8\x04\x39\x0c\x1d\x4b\xe4\xbe\x89\x2a\xdf\x6b\x6c\x07\x87\x8c\xeb\x30\xa4\x81\x15\x55\xb3\x4b\x32\x9d\x10\xa5\xfc\x2a\x25\x43\x54\x85\x33\x76\x1d\x77\xaf\x0e\x43\x47\x6c\xd9\xe2\xdc\xa5\xd4\x12\xee\x4b\xe5\x9b\x40\x35\xaa\x4d\x78\x58\x77\x5f\xa0\x9e\x3e\xb4\x1a\x06\x63\x64\x5e\x6c\x5f\xe3\x83\xc3\xb0\x5e\x5c\x55\x3a\x0c\x1d\xe2\x3d\x44\x69\x8f\x2a\x57\xdb\x44\x92\xa4\x2b\x63\x57\x4c\x52\x67\x78\x0f\xdc\xf5\xe2\x6e\xf9\xa8\x1d\xe4\x73\xa9\x91\x2e\x34\xaa\x7c\x1e\x87\x58\xbd\x39\xfe\x5f\x3d\xff\x45\xa4\xc0\x9b\xab\xf3\xab\xd5\x73\xd2\x59\xa1\xff\x94\xd8\xec\xc2\xf8\x55\xfe\xf9\xa8\x7e\x84\x3f\x27\x25\xc9\x5a\xae\x53\xc1\x97\x70\x8c\xe7\xc3\xc3\xd3\x1f\x44\xfa\x87\x06\x74\xf9\x23\x2a\xf9\x28\xf6\x2c\x56\xe7\xc3\x43\xd8\x41\x6d\x6b\x06\xb5\x1a\xa2\xb6\xe3\x52\xac\xe8\x46\x7c\x12\x47\x4a\x90\x8c\xef\x1a\x17\x4f\xc1\x71\xb1\x1d\x9c\xa6\x43\xd4\x73\xc0\xb2\xb8\x42\xa7\xb7\xab\x1f\xe2\x78\xbe\x60\x1d\x0e\x51\xb7\x81\xa0\xf7\xb5\x74\xe1\x95\x38\x73\x14\x85\x00\x74\x21\x1c\x52\x14\xd8\x0e\xe6\x65\x88\x8a\x0d\x50\x25\xe4\x7c\x5f\x6b\x88\x2a\x8d\xc2\xf4\x1b\x38\xad\xe5\xa1\xb9\xe0\xa1\x79\x5b\x04\xdc\x8e\xaa\x0b\x47\xe4\x06\x5c\x1a\x64\x74\xb5\x46\x65\xc8\x6a\xec\x97\x41\x43\xf6\xc5\x94\x18\x15\x06\x89\x6b\x88\x79\x87\x59\x16\x13\xdb\x47\x75\x0a\x8f\xa0\x96\x64\xbe\x06\x45\xea\x6b\x30\x53\x02\x7c\xe0\x76\xb5\x0a\x87\x21\x2d\xa8\xf0\xa0\xac\x7d\x17\xca\x89\xee\x1c\xd5\x25\xfc\x39\x19\x28\x76\x95\xa7\xc2\x40\x6c\x36\xbb\xf9\x5d\x8d\x54\x78\x34\x65\xac\xa8\xc4\x39\x0e\xc8\x88\x65\x37\xa8\xde\x68\x9a\x77\x25\xc8\xfb\x2b\x02\xaf\xfd\xf4\x69\x0e\xb1\x5e\xf5\x7a\xf2\xba\x83\x79\x02\x22\xb5\xc0\xae\x4e\x7d\x1e\x87\x83\xcb\xab\x69\x38\xe0\x48\x6f\xb0\x3f\x5a\x32\x5b\xdb\x85\x2f\x70\xb4\xdf\xb5\x8c\x10\xef\xac\x67\x4e\x9b\xee\x20\xcc\xd3\x6b\xb0\xf3\x5e\xa3\x6b\x98\x40\xbc\x2d\xc2\x57\x46\xd5\x84\x2f\xe0\x6c\x7f\xe8\x79\xc4\x04\xe4\x76\x1d\x7d\xe8\xbd\x88\xd2\xcc\xed\x3a\xba\xbe\x17\x64\xdd\x12\x97\x9d\xc8\x3a\xc3\x9b\x5b\xe2\xf4\xd3\x7c\x7d\x29\x5b\x4a\x24\x7d\x5c\x6b\x88\xdc\x0f\x78\xfb\x59\xc2\x5d\x69\x30\x1c\xc0\x2e\x20\x43\x4b\xe9\xc4\x5d\xf8\x03\x1c\xfd\x31\x32\x95\x8c\xc4\x65\x89\xf3\x62\x64\xe2\x06\xec\xe0\x2d\x71\xdc\x68\x96\xbb\x0b\xe8\x7f\xe3\xf3\xfa\x5e\x63\x66\x18\x90\xf5\x61\x9a\x77\x9b\xc4\x31\x9e\x36\x0f\x0e\x73\x19\x63\x7f\x48\xfe\x06\x8e\x25\x8b\xe4\x65\x6b\x0d\x7a\x20\xee\x02\xde\x0b\x66\x0d\xda\x71\x14\x3e\xc0\x8d\xf8\x12\x1e\xed\x44\x34\xf4\x5d\xd5\x72\x77\x64\x5c\x23\xd3\x3a\x18\xec\x60\xc1\xea\x70\xe3\x18\x37\xd7\xf6\x76\x44\xfd\xcb\x89\xcf\x43\x91\xb6\x0b\x68\x9f\xe3\xaf\x63\x6f\x30\x93\x13\x99\xd9\xa1\x3b\xe0\x60\x42\xa7\x5c\x0b\xf1\x87\x38\xb6\x25\x42\x5a\xec\xaa\x0b\x47\xfb\xb8\x2b\x8d\xa1\xfe\x30\x4d\x02\x99\xdc\xa1\xe3\x70\x0c\xc4\xfc\x16\x39\x1e\xda\x47\x88\x91\x67\x99\xfb\x85\xbe\x5d\xbb\x80\x71\xe0\x7e\x19\x3c\x1e\xc6\xe0\x77\x81\x69\x95\x21\xe3\xa2\x21\xa3\x65\xee\x97\xa9\x75\xc5\x6c\x6b\x05\xc7\x8c\x64\xc4\xbb\x30\x4e\xc4\xbb\xa8\xb2\x7d\x44\x51\x37\x04\x9b\xd8\xd5\x22\x1c\xb9\xc8\xab\xf0\x2e\xfc\x83\xe7\x31\x0e\xba\xdb\x8e\x89\x20\xb2\x85\xfb\x65\x6a\x1f\x31\x68\x27\x74\x87\xbb\x3a\x84\xa3\x9d\xc2\xf6\xf5\xbd\x8c\xc8\x18\x29\xe8\xd6\x1a\x1f\xad\x37\x48\xad\xad\xf0\x38\xfc\x68\x1e\x99\x40\xa2\xb0\x9f\xba\x23\x33\x90\xbb\x51\xa6\x87\x64\x9a\x28\xc4\xbc\x94\x96\x88\x73\xde\x11\xe7\xdd\x0a\xf7\xcb\x47\xc7\xc6\x07\xf1\x74\x3b\xe7\xfd\xa3\xf9\xc5\x5d\xdb\x74\x1c\x7e\xf4\x5d\xb8\x6b\xd7\xde\x84\x2f\xe1\xe8\x27\x2e\xaf\xe3\x4b\xf6\x6b\x7c\x41\x37\x22\x8f\x40\x54\x4d\x38\xf3\x25\x75\xe2\x53\x38\x54\xe0\xa4\xcf\xba\x83\x33\x3e\xbc\x15\xee\xbb\xaf\xd6\x33\x13\x7e\x52\xe6\x30\xbe\x1a\x87\x2f\x13\x5e\x5c\xc2\xf5\x5e\x26\xa4\x05\xfb\xab\x48\x04\x8b\xe2\xfb\xda\x8d\xfd\xe1\x25\x86\x31\xe5\xad\x82\x4d\x1c\xba\x7c\x0f\x24\x5c\x41\x92\x92\xa8\xaa\x3f\x90\x81\x54\xb2\x23\x74\xca\xdc\x05\x64\x1b\x56\x3b\x1a\xb7\x2f\x73\xfb\xe2\x52\x32\xc4\x7e\x29\x09\xa9\x5d\x4e\x3c\x0b\x47\xe4\x78\xae\xe7\x45\x99\x27\xbc\x12\x37\x8e\x71\x5e\x5a\x27\xb8\xdc\x53\x46\xbd\x90\xca\x14\x05\xa4\x1f\x25\x9d\x59\x1a\x9f\xc5\x1c\x38\x64\x23\x68\xf9\xb9\x4e\x86\xd3\x8c\xf9\x5d\x3a\x8f\x16\x53\xe7\xe3\xda\x30\x96\xe8\xc6\x62\xc0\xe4\xc4\xf7\x8a\x6e\x2f\x66\x6c\xe2\x7e\x59\xda\x77\x8b\x79\x84\xf4\x5e\xb1\x2f\x8b\x11\x7f\xf5\x5e\xca\x94\x98\x60\x15\x39\x91\xa3\x5a\x84\x63\x9c\xc9\x96\x2d\x8d\x33\xd9\x59\x5e\x57\x86\x84\x13\x8c\xd5\x5f\x8d\xe7\xd7\x23\x3a\xff\x30\x63\x01\xf7\xe3\xa3\xf5\xf9\x30\x08\x26\xd9\xca\x47\xe3\xc9\x78\xfd\xc6\xfd\xf8\x68\x5d\x3d\x4a\x37\x5b\x88\x7f\x84\xa3\x1d\xb2\x3b\x8f\xd6\x1b\x0c\x58\x2b\x62\xc3\x2d\x45\xb3\x58\x8a\xf6\x6f\x8d\xed\x6b\x1d\x22\xc6\x3f\xb2\x2d\x46\x55\xfd\x1c\x4c\xd8\x76\x13\xff\x0a\x47\x9e\x05\xb2\xbf\x8f\xc6\xf3\x61\x6a\x9f\xce\xef\xd5\x78\x3e\x4c\x13\xdd\xea\x5f\x61\xbf\x1e\x91\x7b\x72\xfd\x88\x61\xb5\x90\x23\x00\x05\x7c\x06\x64\x41\x93\x11\xd0\x16\xc2\x70\x30\xbf\x5c\x54\x27\x71\xe6\x15\xc3\xf1\x30\xe9\x52\xbf\x0b\x8c\x93\x2e\xdc\x85\xe3\xb3\x71\x47\x9e\x8c\x6e\xb6\x0b\x4c\x17\xc9\xf6\xc9\x5e\xcc\x0b\xb7\x07\x28\xc9\x77\xf5\x23\x1c\x19\xe0\x12\x71\x1e\x03\xf3\x42\x50\x6f\xc7\x36\x9b\xd7\xd4\x77\x31\x63\x1c\x8e\x0d\x85\x0f\x59\x0c\x1f\x82\xe4\x57\x51\xad\xc2\x31\x6d\x10\xf5\xca\x61\x76\xc1\x61\x96\x39\x98\xa2\xba\x84\x83\x4c\x38\xdb\x71\xb5\x8f\x5c\xb4\xb0\xcf\xdb\xd5\x26\x9c\x59\x74\x2a\xf1\x8f\x70\x6c\x63\x67\xfb\x3c\x1e\x10\x93\x84\xb1\xf0\xa3\xca\xf1\xbc\x11\x48\xb6\x71\xdc\xee\xa9\xfe\x28\xb0\x70\x2c\x53\x19\xf1\x2f\x66\x13\x36\x44\x3f\xdb\xd5\x2c\x1c\xd9\x23\x71\x0b\x99\x89\xc7\xdb\x84\x0b\x5d\xf5\x9a\x88\x2f\xe1\x98\xaf\xca\xf6\xf5\xbd\x89\x61\xd7\xb3\x70\xb5\x8f\x30\xd7\x54\xe1\xcc\xc4\xed\x37\x91\x84\xd0\x60\x31\xb2\xab\x6a\x9f\xeb\x01\xb2\x4a\x59\xe7\x2d\x58\xe7\x6d\xbc\x11\x57\xfb\x1c\x1f\xb0\x59\x33\x0d\xf5\x9f\x61\xcf\x71\x3c\xcf\xa4\x71\x4b\x5c\x57\x5d\xf8\x57\x38\x62\x9e\x57\xf6\x87\xc7\xc6\x4c\xd8\x7e\xde\x89\x93\xbd\x50\xaa\x65\xe7\x3e\x4a\x3c\x4e\x66\xe2\xbc\x54\xf6\x93\xec\xec\xe4\x6d\xd5\xb9\xde\x74\x5b\x9d\x99\xc9\x18\xc1\x96\x4d\xa9\xc4\x60\x48\x78\xb7\xeb\x26\x4e\x72\x33\xa9\xfa\xba\xb8\xfe\x0b\x6f\x81\x13\x5e\x89\x0d\xce\xcb\xbb\x5a\x85\x37\xb8\xab\x26\xe2\x5d\x38\xc6\x87\xe3\x4c\x2f\xc6\x35\x0b\xe7\x11\x64\x6e\x16\x57\x3b\x8e\x9c\x01\x9d\xcf\xf3\x58\x9a\xb0\xad\x6d\x17\xae\x0d\xb3\xa8\xff\x05\xe9\x6b\x10\x5c\x66\x21\x45\x34\x0a\x15\x78\x25\xde\x84\xa3\x7d\x8e\x0f\xcd\x2a\x76\x01\xe1\xda\x39\x5f\x54\xaf\xaf\x59\x90\xb1\xe1\x22\x3d\x29\x53\xe3\xc0\x9c\x02\x1c\x4f\xa9\xf4\x26\x6e\xff\x0d\x36\xa8\xbb\xea\xc2\x11\x96\x9e\xfb\xba\x68\xbe\x90\x0d\xcd\x1a\xf7\x75\x99\xe7\xbd\x18\x7f\xa8\x5e\xa6\xa4\x02\xd0\xef\xef\xe7\x33\xf1\x2c\xbc\xe0\xf9\x44\xbc\x09\xc7\xb8\x91\xce\x48\x65\x38\x2b\xa3\x70\x83\xbd\x9e\x52\x19\xce\xca\x98\xfc\xa4\x0f\x92\x6d\x4e\x86\x5e\xbf\x48\xb7\xab\xf6\x1d\x32\x32\x1a\x55\x98\xb3\x6a\x1e\x91\x6f\xac\x5d\xea\x27\xaf\x43\xb3\x82\x2e\xf5\x8b\xfd\x11\xdd\xae\x74\x77\x26\xbd\xaa\xda\x17\xcc\x98\x71\xdf\xec\x27\x8f\x2b\xa6\xdc\x6e\x08\xd7\xb4\xa6\xa4\x17\x13\x31\xbb\x0d\x46\x52\xbb\x6a\xc2\xfd\x44\xf0\x8f\xaa\xbe\x17\xe3\x4c\xa9\xcc\x64\xe8\x93\x5d\xa8\xc8\x7f\x71\x11\xef\xc2\x0d\x78\x21\xee\xc2\x91\xea\x0a\x2a\x5b\x99\x55\xac\x89\x4c\x0a\x0d\x9e\x69\xbb\xca\xef\xa2\xca\xf3\xe6\xfe\x95\xca\x93\x39\xbd\x8d\xd2\x11\x58\x5f\xa0\x80\x76\x1a\xdb\xd7\xf8\x50\x15\x7a\x73\xdd\x4a\x26\x3c\x3b\xf3\x77\x80\x9d\x9d\x92\x09\xcf\x8e\x79\xa1\xb8\x61\x4a\xdc\x30\x3b\xfd\x70\xc1\x6e\xce\x2e\x3a\xd9\x11\x04\x3c\xf1\xbb\xba\xe8\x5b\x87\xca\x33\xf1\x1c\xec\xda\x17\x9d\x41\xd4\xc1\xae\x4d\x89\x1b\x18\x8f\xbd\x25\x8e\x83\x89\x9e\x40\x5a\xdc\x28\x3e\x98\x92\x16\x4f\x63\x7f\x9a\x70\xee\x17\xc3\x7e\x4f\xdc\x8f\xa6\xfd\x4e\x15\x6c\x22\x9d\x94\x0a\x96\xe6\xc6\x8d\xd7\xfb\x29\xa9\x33\x42\x36\xdc\x8d\xd7\xf5\xe9\x9a\x47\x77\xb8\x3a\xde\xf8\x2e\xd7\x3a\x47\xea\xde\x96\x93\xf0\x2e\x7c\x00\xef\xc4\x3f\xc2\x1f\xa4\xf8\xe1\x7b\x75\xbe\x38\xfa\x13\x99\xae\xd7\x9a\xba\xc6\xd3\xf9\xab\x51\x6c\x34\x87\xf6\x29\x82\xe0\xb5\x7d\xfd\xfe\x73\xf6\x6b\xea\x96\xaf\x74\x41\xf0\xeb\x5b\x53\xb7\xfc\xc9\xfc\x68\xd9\x84\x2f\xe1\xe8\x2e\xb7\xeb\x18\xea\x16\x97\x23\xa7\x6d\x90\xeb\x9c\x94\x0a\xf4\xa2\xe7\xf9\xd9\x83\xdb\x2f\xb8\xe6\xc7\xe8\xa2\xfc\x30\xc5\x25\x83\xab\xee\xaa\x13\x07\x1b\x01\xd5\xc5\x63\x14\x6e\xef\x42\xb0\x47\x08\x19\xbb\xab\x43\xf8\x1f\x22\x80\x3f\xc6\x5b\xc8\x2e\xdc\xca\x62\x80\x6a\x13\xce\xec\x06\x4e\x7c\x11\x0f\xb2\xd2\x3b\xdb\xe7\xad\xe2\xa1\x0a\xb3\x47\x98\xfc\xf5\x48\x85\xf9\x18\xb8\xf2\x8e\x48\xd0\x0f\xe2\x3c\x45\x81\xed\x74\xb4\xff\xcc\x2c\x1c\x71\xbc\x83\x1c\x3f\x52\x31\xee\x02\xfa\x19\xb7\xe1\x5d\xcd\xc2\x3f\xc0\x1b\xf1\x45\x1c\x09\x48\xed\x22\x8e\xe5\xf5\x38\x83\xf5\xe2\x56\xf7\x28\xa4\xd4\x03\x1d\xe4\xdd\x71\xab\xdb\x55\x13\x8e\x74\xa9\xe7\xf9\x41\x7c\xf2\x79\xe2\x38\xae\x76\xe1\x8b\xac\xb9\x68\xe7\x56\xff\xc1\xb6\x76\x90\xa1\x47\xaa\xca\xc7\x6f\x26\x4a\xed\xf8\xae\xdb\x4d\xf8\x40\xc6\x84\x4e\xfc\x23\x1c\x99\xe8\x9d\xed\x63\x7b\xec\x02\x93\xc6\x34\xe2\x0f\xf1\x89\x1c\x11\x71\xab\xde\xd5\x2a\xbc\x01\xe7\xf3\x53\xed\x63\x1e\xe1\x77\xf5\x48\xb5\xf9\x30\x5f\x69\x4f\xfc\x5e\xfa\x70\xec\x42\x3d\xe9\xe8\xa2\xda\x85\x23\xd1\x44\x2e\xc4\xbf\xc4\x61\xb9\x90\x0a\xfa\x93\x40\xb6\x1e\xe8\x3e\x37\xee\xc0\x87\xda\x47\x22\xf8\xc4\x71\x23\x9b\xf8\x38\x52\x61\x75\x48\x37\x77\xf5\x16\x1e\xed\xc0\x1a\x77\x57\xb3\x70\x24\x9c\xe8\xc2\x87\xf0\xe7\xe4\x40\x5f\x8f\x67\xad\xab\x8c\x78\x84\xd6\xf0\x5d\x74\x2b\x79\x98\xbc\xa9\x1b\xe7\x8b\xaa\xd6\x5d\xf8\x9c\x94\xe5\x51\xfd\x0a\xc7\x7a\x33\x3e\x3f\x38\x3e\x48\x7a\x84\x7c\x69\x51\x55\x3b\x98\x47\x5c\xf3\x76\x95\xf3\x88\x9c\x48\xc8\x79\x13\xd5\x26\x1c\xfd\xf1\x4e\xfc\x23\xfc\x39\xf9\x87\xd7\x23\xd5\xef\xc3\x34\xb3\xdd\xb9\x2f\x8a\xbe\xb7\x60\x7c\x70\xcd\x7b\x10\xb9\x02\x05\xe4\x64\xe3\xfc\x56\xb5\x03\xf6\xa5\xe3\xda\xb0\xab\xec\x0f\xac\x24\x7b\x6b\xe8\x7f\xd5\xbe\xa8\x60\xbb\x23\x21\xd1\x7a\xa4\xe2\x7d\x10\x29\x6d\xe3\x46\x7c\x0a\x47\xfa\xd7\x86\xf6\xe9\x34\xf3\x20\x2c\x06\xd3\xc2\x46\xb5\x09\x67\x36\xa7\x8b\xb8\xda\xc1\xb5\x56\xe3\xdf\x86\xda\xc1\xb5\xc4\x38\x5f\x5d\xeb\xb9\x33\xb7\x36\xe8\x1b\x42\x5e\xa0\xc0\x64\x75\xe8\x7f\x27\x9d\x64\xca\x5d\xf3\xca\xe7\x45\x1f\x3a\xa4\xbc\xce\xef\xa2\x5f\xe3\x43\xbf\x46\x86\x07\xdb\xd5\x2e\x7c\x02\xc7\xfc\xba\xc6\xc7\x39\x5f\x1c\x07\xd7\x7c\x41\xf9\xdb\xa1\x9c\x7d\xa4\xfc\x7d\x9c\xc9\xa3\x9c\xeb\xdc\xb5\x6e\x99\x90\xd9\x49\x57\x5d\x74\x06\xa9\x47\x3b\x42\xb5\xed\x2a\xd7\x0f\x0c\x8d\xbb\x73\x1d\xba\xf6\x9d\xc3\xf7\xe2\xe2\xba\x72\xad\x43\x4a\xd9\xe1\x6c\xfb\x48\xb9\xfc\x30\x37\xb0\x5d\x1c\x4f\x5a\x4e\x3d\x8e\xa4\x4e\x76\x71\xff\x0e\xed\xdf\x90\x6a\x57\xae\xce\xa9\x56\x22\xac\x47\x25\x6d\x9e\xc6\x3d\x11\xa2\x6a\xa8\x11\x1f\xa7\x7f\xd3\x2e\x24\xe5\x39\xd8\x15\x13\xfa\x45\x48\x73\x3e\x3d\xf5\x34\x43\xaf\xf3\xf9\x8f\xde\xf8\x21\xde\xf1\xfd\x3a\x5f\xa9\xf4\xcd\x46\xba\xb6\x84\x2f\xe2\xdc\xcf\x3a\xff\x1c\x52\xa3\xec\x71\xcd\x7a\x64\x4b\xbf\x0b\x61\x0a\x81\xeb\xe0\xae\x2e\xe2\xb0\x40\x43\x68\xf7\x5d\xbd\x85\x3b\xf2\x5e\xb0\x1d\xd2\x0b\x26\xb0\xe9\x3d\xc4\x0f\xbb\x5a\x84\x0f\xe0\x68\x5f\xe7\xd0\xa0\xe5\x2a\x42\x3b\x3d\xd3\x20\x1e\xd8\x85\x30\xa1\x42\x6c\x81\x47\xf1\xbc\x1e\xa6\x60\x0c\x66\x7e\x57\xba\xd0\xb0\x08\x2f\x44\x5d\x68\x58\x36\xdb\x7f\x66\xb8\x52\xfb\x2f\xfc\xd6\x7e\x74\xea\x37\x30\x65\x22\xfa\x15\x8a\xe4\x64\x81\x3a\x58\xde\x5d\x80\xa2\x99\x68\x16\x0a\x79\x29\x51\x17\x1a\xc1\x31\x9c\xe8\x14\xfa\xf9\xfd\x49\x21\xc1\x7e\x26\xa3\x5a\xec\xc2\x0a\x3f\x71\xa0\x1a\x11\x87\x1b\x62\x22\x5a\x84\x86\x7d\x35\x7b\xe6\x7a\x1b\x93\x87\x11\x7d\x88\xee\xc9\x83\x91\xd9\xae\x24\xa1\xed\xf7\x87\xe7\xab\x42\x1b\xec\xc2\xfc\xfd\xe1\x69\xa6\x7c\x24\xbb\x00\x07\x6e\xa0\xea\x59\x30\x81\xf0\x7e\x7a\xe6\x87\x2b\x04\xf9\x3d\xc0\x06\x3f\xf3\xab\x31\x0b\x31\x7d\x06\xb7\xa0\x18\x00\x0f\x62\x00\x24\xe6\xa6\xbc\x66\xa4\xa3\x56\xf1\x39\xe7\xd5\x73\xed\x75\x13\x27\x19\x8b\x71\x96\x79\xd2\xdf\x22\x2e\x93\x8a\xa0\x2f\xcc\x97\x75\x23\x45\x9f\x8a\x30\x6c\x61\xf2\xb5\xcc\x18\xec\x2c\xc2\xf2\x94\x09\x87\x32\x1d\xe6\x59\x84\xf5\x29\xd3\xcb\x15\xc3\x29\xc3\x22\x2c\x41\x4f\xfa\xe7\x3e\xf8\xbb\x5d\xa4\x08\xef\x7f\x63\xfd\x77\xe5\x5f\xc6\xdf\xff\xe9\xff\xff\x6f\xe3\xef\xff\x7d\xfc\xcb\xfa\xf9\xfc\xc7\x3f\xfe\xb1\xfe\xf5\xdf\xbf\xff\xfc\xf9\xf7\x9f\xff\x6f\xa3\x3f\xdf\xf5\xfc\xf3\xbf\xae\x7f\xac\xff\xf9\x6f\xff\xf1\x8f\xcf\xfa\xf9\xfb\xbf\xfd\x7d\xff\x2a\xfe\xff\x5f\x01\x00\x00\xff\xff\xf1\xfc\x13\xf3\x3c\x64\x04\x00"); +var _fecfa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x0d\xc6\x83\xf8\x2c\x5f\x70\xde\x4c\x6e\x66\x0d\xea\xdf\x1b\xad\xa5\x67\xad\xb8\x0d\x0d\xe7\x9d\x9c\x57\xf1\x44\x48\x5b\x5b\x5b\x5b\xfb\x5b\x7f\xfc\x0f\x7f\xfe\x8f\x7f\xfe\xf5\x97\x7f\x7c\xfd\xf1\x7f\xff\xed\xaf\xe7\x3f\xdd\xff\xf8\x7a\x7e\xf9\xf5\xfa\xed\xfe\xfb\x5f\xff\xf5\xb7\xf3\xfe\x3a\xee\x7f\xf9\xe5\xd7\x3f\xfc\x21\xc4\xaf\xeb\x97\xf3\x1f\x9f\x26\xfe\x9c\x7f\xd9\xff\xf6\x87\x3f\xcc\xef\xff\xe9\xdf\xfe\xfe\x8f\xfb\x2f\x7f\xfe\xf5\xf9\xeb\x57\xe2\x7b\xd7\xbf\xfe\x6d\xbd\xfb\xf5\xf5\xc7\xff\xe3\xfe\x97\x5f\xfe\xfe\x8f\xdf\xfe\xed\xeb\xdf\xfd\xcf\xd7\x5f\x8f\xfb\x7f\xf8\xba\xee\x67\x3e\xff\xdf\x7e\xbb\xee\xdf\x7e\xf9\xf5\x5f\xbe\xfe\xdd\x7f\xda\xff\xb6\xff\x1a\xf4\xc3\x3f\xfd\xeb\xdf\xfe\xf6\xff\xdd\x7f\xb9\x7f\xfd\xc7\x57\xc3\xb3\xfb\xd7\x0b\x7f\xff\xf0\xc7\xff\xf0\x9f\xf7\xbf\xfd\xaf\xfb\x5f\xee\xaf\x3f\xfe\xf3\xaf\xbf\xfc\xa7\x3f\xff\xd3\x7f\xdd\x62\x48\x71\xdb\xf2\xbf\xff\xe7\xff\xf2\xa7\x14\xff\xfd\xff\x82\xf7\xf0\xda\xff\x79\xff\xf6\xf7\x5f\xfe\xfa\xeb\x57\xf8\x1f\xb7\xb8\xf9\xf1\x7f\xf9\xb7\xbf\xdd\x5f\x61\x75\xf7\x5f\xff\xf9\xcf\xff\xf1\xeb\xff\x0e\x5f\x61\xfb\x8a\xa5\xa6\xf4\xff\xac\xe7\xff\xd7\x7f\xfe\xeb\x75\x7f\xf1\xab\x3f\x04\x4e\xe5\xfc\xeb\x75\xff\xfd\x6f\xfb\x79\xff\xb6\xff\xfa\x2f\xf7\x1f\xbe\xbe\xfe\xa7\x6d\xfd\xfb\x9e\xff\x0d\xdb\x9f\xfe\xf4\xa7\x3f\x7d\x4f\x58\xff\x9b\x37\x3f\x1d\xfc\xfa\xd7\x7f\x5c\xf7\xc3\x67\xbf\xff\x76\xfe\x0b\xcf\xf7\x57\x98\x5f\xbf\x5f\xfb\x43\xd8\xb6\x35\xfa\x2f\xd7\xf9\xff\xee\xbf\x7d\x3e\x2c\xe7\xf7\xd7\x68\x9f\x56\x9b\xad\xa1\xd6\xf5\xfd\x35\xb2\x5a\xf7\xf7\x57\xd8\xb6\x4f\x73\xdf\xe6\x30\x9f\x46\x9e\xbf\xa9\x9b\xbd\x7c\x7f\x55\xff\x58\xbf\xbf\x46\x52\xab\xcd\x57\xab\x9a\xfd\xfb\x2b\xa4\xa8\xe6\xf8\xfe\x0a\xc5\xcd\xfd\xfb\x2b\x64\x8f\x79\xcc\x6f\x05\xdf\x7e\xce\x97\xdd\xf3\x35\x9b\x1e\x76\xc2\x5b\x04\xfe\x3e\xd1\x12\xf5\xed\x31\x21\x8e\x82\xf8\x28\xf3\x65\xff\x5a\xbf\xbf\x42\xe8\x6a\x4e\x98\x83\x5f\x06\xcc\xea\xf9\x98\x30\x57\x01\x79\x00\x66\xff\x3a\x61\x8e\x02\xf2\x00\x18\x9a\xfe\x39\x07\x4a\x1a\xf7\x9a\x3d\x67\x4d\xff\x9a\x2f\x17\xf5\x7c\xcf\x97\x73\xf9\x34\x1f\xbc\xfc\x01\x32\x4c\x12\x18\xa9\x56\xb5\x03\xda\x41\xed\x38\x3b\x6b\xc5\x2f\x24\x3c\xa8\x43\x0f\x32\x1e\xa4\xa6\x07\xc0\x4a\xd3\x90\x61\xab\xec\xc3\x83\x36\x3c\x68\x1e\xa5\xe3\x41\x4f\x7a\x30\xf8\xc0\xa3\xec\xdf\x5f\x71\x4b\xc9\x6f\x1c\x78\xa0\x55\x0f\xdb\xc9\x51\xfc\xc9\xc5\x51\xfc\xc6\x4d\xd0\x3d\xec\xc3\x37\x3e\x68\x0f\x61\x43\xa7\x51\x9f\x84\xc0\x37\x34\x97\x10\x81\x1f\x0d\x12\x12\xda\xee\xa1\x12\x4e\x3f\x68\x84\x53\x80\x07\xce\x55\x4b\x1f\x02\xe7\xda\xfc\xc6\x3e\xfb\x1c\x1e\xf3\x98\x3b\x4a\x1b\x25\x04\xce\xb4\x7b\x0c\xce\x74\xb8\xcb\x9b\x50\xb8\x8b\x87\x50\xe8\x41\xe4\x4c\xbd\x6a\x31\xf0\x0d\x2d\x74\x8c\x7c\xc3\x0f\xb8\xd0\xdd\x7d\x70\xa1\x87\xf0\x19\x39\x79\xd1\x6d\x88\x58\xe8\x1e\xdc\x47\xc7\x54\x04\x68\x1c\xb3\x1d\x84\xef\x88\xa9\x57\x43\x75\xa0\xed\xdf\xd7\xc4\x84\xff\xb8\x26\xa6\x2f\xd2\x9a\x98\x88\x2d\xcd\x25\xcc\x82\x20\x71\x5a\x51\xc8\x4b\x89\x0f\xfc\xc1\x9a\xa7\x3f\x59\xf3\x14\x14\x89\xf3\x14\x8b\x09\x69\x2d\xb2\xfb\xe8\xec\x54\x70\x26\x2e\xf2\x0b\xce\x9d\xab\xee\x3e\x48\xd0\xd9\xa3\x9c\x78\x60\x42\x49\x5c\x66\x4f\x3e\x91\xa0\xb3\x3b\x25\x36\xa2\x96\x28\x2f\x6c\xa8\x8f\x0c\x6c\x68\xc5\xf2\xdc\xde\xfe\x3e\xaf\xcd\x2d\x18\x32\x71\xd1\x84\x8b\x5c\x08\xa5\x96\x38\x13\x17\xde\x54\x99\x9b\xbb\xfa\x0d\x12\x7c\xf3\x28\x83\x40\xe1\xbc\xf9\x9c\x2c\xff\xbd\xb3\x26\x64\xee\xfc\x68\x10\xb0\x1d\x4c\x97\x79\x1e\x3f\xc9\x88\xcc\x17\x68\x46\x38\x28\x1b\x01\xd2\x8a\x97\xb5\xa9\xb5\x5a\x05\x58\x10\xc0\x65\x62\x21\x0b\xcb\x85\x38\xf0\xde\x29\xa4\x87\xea\xef\x17\x3d\x78\x04\xd2\x83\xf1\x58\xd6\xa6\x77\x1f\x6b\xd3\x7b\x14\xd2\x83\x69\xaa\x1c\x7c\xe0\x51\xd6\xb6\x17\x1e\xcb\xda\xf6\x06\x7c\xd1\x83\xd6\xa2\x90\xc1\xe9\x30\x08\x75\xd2\x83\xf7\x67\x9d\x9b\x5e\xe7\x59\xa8\x64\xf6\xde\x7e\x95\xf4\xd0\xd5\x61\x25\x2e\x4c\xa4\x95\xb8\x28\x7e\x63\xf1\x00\xf7\x41\x5c\x24\x7f\x42\x1e\x20\x54\x54\xf2\x00\x7f\x40\x1e\xa0\x79\x57\xf2\x00\x03\xbd\xf0\xe0\x17\x16\x1e\x84\xfe\x7a\x63\x04\xb7\x1f\x8c\x20\x8a\x69\x8b\x22\xfc\x80\x14\xd1\x85\xa7\x46\x2e\xe1\x33\xac\x91\x4b\x18\x8a\x96\xb9\xe5\xfd\x09\x77\x86\xc9\xac\x11\x13\x46\x4d\x5b\x54\xe1\x4e\x27\x97\x30\x27\x6a\xa4\x09\x13\x62\x23\x4d\xf8\x8c\x6b\x8b\x26\xfc\xc9\x3a\xf4\xfc\xe0\x9a\x5d\x7a\x84\xc9\x2f\xcd\x85\xc6\x5c\x60\x63\x7e\x60\x79\xbb\xb7\xd6\x19\xf9\x40\x20\x9f\xd8\x4b\xc6\xec\x49\xcc\xfa\x83\x07\xbf\x6b\x29\xae\x0d\x98\x16\x52\xae\x80\xf7\xd5\xdf\x15\xf1\xbb\x66\x78\x25\xfc\xee\x76\xc6\xef\x82\xf0\x5a\xec\x46\x33\xb8\x28\x4b\x58\x0e\xb8\x88\x54\x33\xf8\x8b\x5b\xcd\x27\xf0\x45\x76\xe3\x8d\x74\x11\xad\x3e\x1d\xaf\xc5\x7a\x45\x82\x17\xd1\x6a\x1e\xf3\x10\x0e\xe3\xf9\x81\x94\x2b\x44\xc5\x79\x02\x8c\xac\x2e\x23\x99\x4e\x17\xd5\xc7\x02\x4c\x48\x3a\x8c\x85\xa8\xd6\x10\xb1\xac\xc5\xf0\x17\xc0\x85\x36\x6b\x24\xdb\xe9\xda\xdd\xb1\x00\x17\x7d\xf3\x17\x3c\x6e\x5f\x9f\x74\x3e\x18\x7a\x80\xbd\x16\x3d\xe8\x8e\xb6\x7f\x27\x6f\x75\x8f\x27\xa1\xdc\xf4\xe0\xe6\x03\x03\xf1\x10\x08\x75\x51\x39\x73\xd1\x60\xac\x81\x42\x80\xa0\x22\x13\xe9\x46\x16\x99\x48\xd7\x99\x1d\x2b\x67\x16\xdc\x29\x67\x26\xc2\x8f\x75\xcd\xac\xe9\x01\x16\xb5\x77\x77\xca\x35\x1c\xee\xf4\x22\xa4\x7e\x40\x76\x39\x3c\x0a\xe7\x92\xd2\x4f\x0e\xa6\x48\x2e\xd2\x83\x60\x5a\x5c\x44\x82\x5b\x6c\x5c\x63\x6d\x87\xd8\xb8\xc6\xa2\xf7\xd8\x88\x0a\xc9\x1a\x71\x72\x91\x91\x25\x96\xc5\x46\x4c\x74\x3f\xe0\xc4\xc5\xfd\x22\xb9\x46\xdf\x3c\x08\x31\x91\x3d\xc8\xc1\x37\xdc\xc7\xc2\x84\x21\x5f\x98\xd0\x1b\x9d\x73\x93\xfc\x1d\xfb\x5a\x44\xcd\xad\x73\x6e\x9b\x1f\x60\x2b\xeb\x64\x88\x9d\x53\x13\x7b\x8b\x9d\x90\x8b\x19\xc4\x4e\xc8\x25\x79\xc5\x4e\xc8\x93\x3f\x21\xbf\x1b\x42\x4f\x3f\x81\x1e\x7f\xc1\x99\x18\x5f\x9d\xf4\x19\x0c\x06\xd7\x54\xb2\x71\x1c\x9c\x9a\x78\x58\x1c\x9c\x9a\x21\x1f\x60\x52\xde\x67\x83\x33\xf1\xde\x1d\xa4\x57\x1d\x59\x71\x2c\x6a\xf4\x20\x9c\xda\x70\x1f\xdc\x48\xc3\x83\x10\xf2\xe0\x37\x16\xa0\x5a\xb6\x7d\xc1\xa5\x4e\xf7\xc5\x32\xb4\x28\x07\xa7\x22\xf6\x1c\x0f\xbe\x61\x0a\x3c\xb8\x6f\x8c\xc0\xa9\x58\x7a\x4b\x1c\x13\x9d\xfa\xed\xe4\x80\xa6\x02\xe8\x99\x5e\x9e\x93\x92\x9d\x98\x71\x3c\x39\xed\xec\x1e\xc6\x5b\x5d\x8e\xe7\xfe\x56\x97\xe3\x79\x7c\x7f\xe9\xf0\x8b\x27\x31\x22\xa6\x1b\x79\x76\x98\x6c\xaf\x35\x7f\x8d\xff\xe1\xec\x7e\xb0\xb4\x44\x21\x15\x9c\x3d\xb9\x87\x75\x5c\x0a\xbe\xc9\xd7\x8d\x9c\x8b\x72\x43\xf1\xfb\x24\x1e\xc9\x3f\x69\x6a\xc7\x82\x38\x4d\xd5\x77\xb8\x95\xdf\x73\x4d\x53\xeb\x8d\x62\xac\x69\xfb\x1d\x24\x69\x6a\xab\x21\xf9\xdb\x39\xf7\xe4\x61\xae\xdf\xe3\x31\x51\x31\xed\x12\x2e\x52\xe0\xce\x90\xb8\x98\xa8\x03\x76\x89\xdd\x89\xda\x59\x97\xd8\x94\xa8\x9d\xf5\xe2\x07\xed\x6d\x80\x48\x11\xf6\x08\x0d\x19\x49\xb1\x9e\x6d\x5c\x43\xfa\x0d\x0e\x29\x05\x3b\x45\x42\x29\x31\x2a\x25\xd2\xa3\xb4\xe3\x34\x95\x2d\x09\x44\x89\x8a\x55\x97\xda\x9f\x12\xec\x18\x02\x30\x2d\x10\x34\xeb\xc4\x11\x9b\x1f\x10\x51\xee\x72\x9d\x2d\x92\xd3\x52\x87\xd0\x95\x45\x74\xa9\x43\x8b\xf2\x91\x96\xfa\xcd\x07\x5a\x9b\xfe\xf0\x81\xfa\x18\x50\x9a\xcc\x00\xd2\xbe\xf3\x0d\x3f\x38\xf8\x40\x70\x1c\xeb\x13\xf5\x01\x49\xaa\x46\x9d\xe6\xe9\x64\x1f\xda\xcd\xe9\x64\x1f\x3a\xd2\xd2\x49\xc0\x4c\x05\x73\x43\x84\xb8\x8d\xed\x27\xc7\x51\xc2\x76\x89\xdb\xf0\xe7\x85\x0f\x34\x00\xb6\x43\xdc\x44\xc2\x79\x0b\xb0\xaa\xa9\x0d\xc5\x68\x13\x7b\x78\x20\x6c\xc5\xf0\xd9\x5f\xe1\x06\xbf\x48\x1f\x06\x11\xee\x03\x52\xd0\xe7\xec\x0f\x4f\xc3\x16\xfe\xb0\xc1\xf0\x34\x0a\x3d\xfe\x1d\x9c\xf5\x83\xb6\xf0\x34\x9c\x19\x9f\xa5\x88\xdb\x36\xc5\xee\x0f\x9a\xe3\x36\x37\x5c\xf5\xaf\x61\xe2\x23\xab\x15\x7e\xd7\x8a\xbf\x6b\xcd\x73\xf6\xd5\xcc\x2f\x3a\x8b\x5b\x28\xdf\x5f\xb5\x6a\x94\x50\x67\xb3\xaa\xd9\xcd\x21\xe3\x16\x86\x39\x64\xdc\xb0\x0d\x3f\xd3\x8b\x1b\x36\xe1\xe6\x77\x27\x75\x7e\x56\x3c\x6e\xe1\x06\xf6\x3e\xcd\x38\x21\xfc\xa0\x22\x6e\x11\x40\xb8\x09\x20\xd4\xd5\xdc\x49\xb2\x5c\xc5\x2d\x1d\xdf\x5f\x92\x68\xe3\x86\x7d\x11\x43\x50\xdf\xe9\x7e\x31\x9f\xb8\x25\x6e\xcc\xac\xde\x33\xa9\xb1\xab\x43\xe8\xf5\x9b\x3a\xcc\x83\x1d\xea\x77\x50\x42\x8d\x5d\x23\x4c\x41\xb1\x75\xe3\x65\xea\x9e\x4d\x47\x45\xdc\xb0\xf2\xa9\xb9\x0d\x10\x86\x91\xb3\x83\x74\x8a\x86\x04\xf3\xad\x32\xbb\xc4\x0d\xcc\x37\x6c\x9f\x6d\x18\x61\x9a\x0c\xa1\x17\x3f\x48\xdf\x5f\xed\x23\x4c\x45\xda\x19\x83\xf8\x51\x84\xd1\xb0\xa7\xcd\xef\xef\x68\x67\xb5\x01\x53\x11\x5d\xc0\x78\xd7\xb7\xa8\x0f\x26\x25\xb4\xea\x11\x62\x98\xbf\x1b\x00\x98\xc4\x04\x31\xcc\x5d\x23\xbd\x7e\x6e\xec\xdf\x0f\xe6\xb2\x7d\xd8\x5d\xfc\x18\xaf\x44\x6a\xcb\xb0\x54\x3e\x92\x71\x84\x0d\xa8\xa7\x8f\xa0\x16\x61\xba\x18\xb2\xeb\x45\x58\x2e\x86\x44\xbd\x08\xc3\xc5\x90\x28\x13\x3f\x96\x89\xa8\x0e\xe6\x32\xf4\xb4\x69\x80\x29\x72\x0d\xe9\xb9\x11\x0a\xa1\xd4\x9c\x08\x85\x50\xf6\xa5\x18\x28\xf8\x14\xd1\x59\x98\x02\x41\x4f\x9b\x5e\x38\xc1\x51\xa2\x01\xc6\xa1\x1e\xa3\x21\x22\x0f\x8b\x06\xf9\x82\x88\x92\x45\x8a\x50\xf9\xe6\x03\xc1\x78\xcf\x41\x36\x23\xe5\x6e\x68\xeb\x83\xbb\xa3\xad\x55\xbc\x07\xda\x02\x72\xea\x6a\x3d\xe9\xfd\x08\x3a\x2a\xf9\x63\x2e\x8d\x91\x36\xed\xfc\x91\xb4\x62\xa4\x4d\x3b\x7f\x74\x87\x18\x69\xc2\xce\x22\xe7\xb8\x2d\x2b\x97\x1f\x34\xf6\xe1\x4e\x21\x9c\xe4\xea\x07\x83\x7d\x54\x3d\xd8\xb9\x25\x36\x3d\x38\xf8\x89\x87\xa5\xf9\x4e\x6c\x20\xd2\xfc\x3c\x3e\x22\x73\x8c\x60\x73\xc5\xcd\xc4\x05\xd2\x5c\x61\x4b\x0e\x82\x92\x62\x43\xfe\x68\x38\x31\xd2\x52\x5c\x5e\x1d\xd2\xdf\x51\xc6\x0f\xce\x98\x18\x03\x19\x8b\xd8\x42\x8c\xc4\xed\xf0\x83\x35\x6b\x3f\x20\x08\x4d\xb3\x8e\x17\xe7\x24\x98\x23\xa5\x2e\x11\x65\xa4\x9c\x90\xab\x1f\x70\x9f\xf8\x13\x30\x40\x23\x32\xad\x59\xe9\x01\xed\x98\x45\x64\x18\xf3\xea\x41\x98\xa1\x51\xb2\x88\x3f\x2d\x7d\x3c\x8b\xd7\x2f\x3d\x36\x17\x3f\x08\x7c\x43\xcb\x45\x73\x59\x11\xc3\x59\x6a\xc0\x78\x3d\xb8\xf9\x40\x7d\xc0\xff\x55\x86\xe1\xd8\x49\x69\x43\x53\x3b\x16\x8a\xf5\xe0\x84\x9c\x19\x3f\x62\x70\x4c\x20\xbd\xb9\xd4\x9f\x07\x93\x28\xe4\x5d\x89\x69\x39\x18\xc4\xa7\xd2\xc0\x2e\x95\x81\x33\xa6\xc1\xf3\x43\xd4\x9c\xa0\x7b\xbc\x1f\x00\xce\x28\xb3\x79\x4c\x50\x46\xa2\x49\x2f\x41\x19\xf9\xdd\x27\xe5\xbf\x7d\x40\xe9\x41\x2c\x1f\x62\xd4\xef\xde\x98\x12\x4f\xa8\xf1\xe3\xf9\x88\x39\x26\x3e\xf8\x4c\x3e\xdf\x93\x85\xcb\x44\x16\xf3\xf3\xc0\x80\x25\x86\x56\x26\x87\xec\x51\x60\x95\x72\xa3\xfd\xe9\xa0\xcc\x45\xeb\x51\x30\x94\x8a\x0e\x8b\xbe\x9f\x2a\x7f\x8f\x1f\x41\x3b\x96\x86\xfe\x74\x72\x96\xc9\x30\x7b\xcc\xfa\xbe\xe3\x7b\xa1\xb2\x4c\x0d\xb5\xc7\xac\xf1\xa6\xb8\xd9\x63\x16\x3c\x53\x41\xed\x31\xab\xff\x0e\xf8\x92\xfb\xc7\xf8\x92\x4d\xca\x44\x7c\x8b\xfa\x79\xa2\xdd\x2b\x59\x26\xd2\xfb\xa6\x03\xa6\x10\xa3\xaf\xee\x76\x32\xe4\x8f\x6a\x11\xcb\xc1\x83\x5c\xa7\x6a\x39\xc0\xf1\x05\xdf\x01\x8e\x2f\xf0\x0e\xae\xd9\xf0\xeb\x64\xbe\x7e\xe1\x9c\xef\x6b\xfa\x53\x00\x6c\x49\xb3\x3f\x49\x36\xe2\x8a\xe5\xc4\x09\xaa\x03\xa3\xcc\x03\xc4\xc7\x53\x99\x1a\x65\x93\xdc\x52\x4e\x20\xdb\x83\x51\x66\x4e\x62\x26\x65\x9e\x37\x2d\x6a\x74\x9c\x36\x9b\xf9\x42\x99\x04\xd5\x74\x9e\x97\xf3\x99\x4d\x01\x73\x67\xac\xb5\xb0\x79\x17\xb4\x05\x0d\x3c\xa5\xf1\x45\x2c\xf7\xfc\xbe\x09\xf8\x67\x21\x57\xf0\x3e\x3c\xed\xb4\x7a\x75\x9e\x1b\x4d\x12\x60\xdd\x30\xdb\xa0\xe6\x0d\x71\xe2\xf3\x79\x0d\xa0\x05\xed\xe3\x1a\x40\x0b\xfe\x3c\x4f\x5a\x10\xef\xa8\x53\x88\x6b\xe2\x2d\xb5\x82\x52\x75\xec\x55\x50\xfa\x26\xde\x5f\x2b\x69\x45\xbd\xd7\x84\xf7\x93\xda\x19\xbf\x0b\xf6\x0a\x6c\xe8\x28\xa9\xb5\xa2\x9d\xd5\x26\x25\x08\x9c\xb9\x93\xe4\x18\x8d\xb5\x1e\x20\x34\xf1\xe0\x5a\xc9\x64\x5e\x0f\x26\xad\x34\xf7\x87\xcd\x1f\xc6\x8f\x4e\x9e\x5a\xb1\x14\x02\x7e\xf1\x27\xb1\xcd\xba\x76\x42\xf1\x1b\x5c\x2c\x49\x67\x75\x92\xea\x54\x7e\x84\xa0\xe3\xa6\x3a\xa4\x07\x4b\x9a\x11\x75\xb7\x8d\x3c\x4e\x47\x78\x0b\x8b\x3f\x6d\x7a\xc0\x61\xb5\xdf\x1b\x44\xef\x28\x93\x7b\x6c\x99\x02\x90\xf6\x70\x2b\x8b\xca\xf4\x46\x23\x4f\x13\xa6\xdb\x0e\x9e\xa5\x85\x6f\xc7\x43\xc8\x3f\x5d\x0c\x9c\x11\x35\x8a\x0b\x0e\x18\x62\x62\xd4\x46\x3c\x00\x57\xd8\x44\xaa\x07\xac\x01\xd1\x8c\xed\x88\x04\xe3\x63\x7e\x89\x07\x4e\xee\x68\x56\x78\x54\x42\x1e\xfc\x20\xf0\x81\x46\xc1\x01\x18\x4d\x83\xc7\x28\xbf\x83\xfc\x18\x8d\x0a\xe4\xa7\x8b\x1b\xd8\x28\x45\x54\x74\x77\xf8\xda\x2c\xb4\xdf\xbd\x40\x57\x2b\x7e\xa3\xc1\x63\xf9\x7a\x63\xe0\x93\xd7\x1b\x07\xde\x10\xa0\xf7\x64\xb2\x39\x8a\xeb\xdc\xb0\x01\x66\x8b\x62\xf7\xd4\xf0\x73\xcd\x6e\xc7\xef\xaf\x24\xb7\x67\xbc\xa7\x1c\x9c\x2d\x08\xdf\x53\x10\xce\xe6\x04\x37\x0d\x80\x49\x62\xcf\x3d\x18\x64\x21\x46\x7a\x63\xe6\xa9\x17\x77\x89\xb8\x8b\x52\xfd\xc9\xf8\xfe\x2a\x5b\x71\x9f\xc7\x6c\x77\xb7\x27\x79\x36\xd9\x03\xe3\x3d\x0f\xe9\x54\x75\x14\xdd\x73\x0f\x24\xef\x89\x7b\x07\x2a\x65\x9e\x8b\x37\xe2\x6b\x8a\xbc\x33\xf1\xc6\x89\x9c\x83\xb6\xc0\x8d\x38\x9a\x6c\x7d\xe0\x46\x24\x4d\xf2\x01\x74\x63\x5f\xa5\xa1\x03\xe1\xc6\xbe\xca\x63\xf8\x8d\xb9\xcf\x47\xf0\xd4\x11\x51\x93\x2d\x05\xdd\x88\xa9\x49\x43\x8c\xed\xc6\xa1\x54\x36\xb1\x86\x1b\x76\xcb\x77\xa7\x07\xe6\x12\x8c\x0d\x18\x32\xf3\xd6\x34\x17\xc4\xcf\xe4\xed\xf5\x09\x6d\x6a\x22\x68\x18\x27\x42\x7a\xad\x32\xec\x9b\x43\x67\xdf\x4d\x6f\x97\xed\x04\xf7\x99\xb0\x68\xda\xde\xf7\x94\xbd\x62\xd5\xc6\xbb\x19\x78\x53\x25\x9c\xdd\xb0\x70\x26\xeb\xc5\x37\xad\x9a\xf2\x68\xc5\xfb\x64\x7c\x51\xf7\x20\x10\xf0\xa2\x89\xed\x0a\xdf\x5f\x69\x33\xca\xa9\x21\x99\x73\xdd\xf4\x79\xbd\xbf\x68\x9c\x99\xdf\xe8\x13\x4e\xe9\x1e\x37\x94\xeb\xd4\x8d\x0b\x28\xd7\xc9\x16\x81\x1b\x41\x42\x49\xc6\xd5\x78\xcf\xc3\x31\x54\xe3\x62\x6a\x59\x29\x99\x32\x6e\x50\x86\xce\xde\xfb\x3e\x30\xa4\x90\x7b\xc3\xf1\x98\xfd\xfb\xa4\xd6\x21\xdd\xe6\x7e\x60\x82\x90\xe8\xf2\x6c\x34\x6e\x6d\x6a\x4f\xa6\xe7\xa3\xfe\x99\xbc\x37\xcb\x56\x15\x9f\xa9\xa3\x65\x33\xeb\x07\xe6\x57\xc5\x03\xc5\x67\x1e\xbd\x39\x48\x14\x78\xe6\xd9\x9b\x62\xf3\xf7\x6d\xfe\x1e\x3c\xde\x44\x59\xd1\x96\x7e\xa6\xba\x96\xa3\xf4\x81\x67\x6a\x6b\x29\xf6\xfa\x93\xd3\xe9\x99\x9a\x5c\x4a\xc3\x83\x9f\xb3\xb3\xe0\xce\xaf\xd9\x8e\x06\x1e\x0c\xea\x05\xfc\x33\xdb\x42\xde\x13\x36\xb4\x05\xcc\xd4\x03\x53\xa8\xfe\x7d\xf2\xab\x21\xf6\xf3\xcc\x73\x29\x47\x89\x5d\x4f\xa8\xdf\x5f\xd9\x76\x84\x07\x41\x48\xc9\xc8\x98\x2a\x42\x6a\x9e\xec\x54\x1b\x73\x12\x57\x7e\xe6\xf1\x91\x53\x74\xff\x07\xda\x7e\xff\x9c\xdf\x67\xbf\x3f\xe9\x6d\xc8\x9a\xf5\x4c\xc9\x26\xe7\xe2\xf6\x24\x86\x20\x8e\xfd\x20\xfa\x28\xca\x32\xf3\x4c\xb9\x3f\x75\x6d\xee\x27\xce\x7d\x27\xa7\x57\x7c\xe6\xe9\x15\x6d\x27\x7c\x10\x68\xf4\x5a\xac\x38\x17\xb7\x8a\xc1\x3c\x11\xfb\x41\x3b\xfd\x99\x67\x5b\xcc\xc5\xe3\xed\xbf\xe3\xff\x4f\x3c\xd0\x76\x7f\x73\xfd\xbc\xef\x9f\xa9\xb3\xc6\xd0\x0c\xcf\x9c\x5f\x33\xbe\x60\x09\x1f\x26\x26\x18\xc2\x87\x64\xab\x07\x31\x48\x72\x5c\xc4\x27\x91\xf3\xf8\xfd\xdf\x9f\x37\x4f\xc2\x79\x23\xa9\xe2\x99\x0a\x70\x56\xe0\x5a\x7c\x52\x45\x5b\xf8\x48\x0d\x6d\xf7\x3f\xf9\x7a\x15\x07\x79\x60\x59\xcf\xc5\x0b\x9a\x26\x02\x14\x6f\x17\x9f\x74\xa0\xed\x0f\xce\xb9\x3b\x8c\xb0\xa9\x61\xe7\x21\x1e\xff\x20\xf2\x68\xbc\xfa\x9b\x22\x8a\x62\x74\xe2\x83\xb8\xa3\xe8\xdd\x9e\x03\x0e\x3b\x01\x38\x65\xd9\x54\xbc\x61\xa6\xc2\x9e\xac\xa1\x3e\xb0\x4f\x2a\x18\x26\x3e\x53\x7f\x4f\xb6\xd9\x3e\xb9\xe2\xb0\x74\x7f\x0d\xbb\x55\xf0\x4e\xf5\xbe\x28\x42\x34\x3e\x30\x70\xca\xb3\x10\x9f\x3c\x77\xb7\x5c\xb7\xf1\xc9\xf3\x54\xeb\xc5\xe3\xcf\xf9\x47\xcf\x2f\x5f\xdf\x5f\x45\x61\x08\xf1\xc9\xf7\x6c\x57\x7f\xff\xa0\x2d\x78\xa6\x5a\x9a\xb2\x64\xa9\xa7\xcc\x0d\xdc\xbd\x21\x0b\x2c\x89\xe2\xa6\x4f\x49\xf3\x7b\x6f\x80\x82\x83\x67\xf3\xef\x90\x8a\x0c\xff\x14\x22\xd3\x26\xee\xfb\x94\x39\xff\x62\x82\x29\x73\xfe\xd5\x1b\xac\x0c\xb4\xfd\xfe\x9c\x7f\x35\x81\x96\xa9\x58\x99\x5b\x3f\xf0\xfb\x57\x73\x63\x84\x1a\xd9\x44\xf3\x20\x0c\x60\xbc\xfa\x7f\x40\xe0\xc2\x37\x65\x47\x1d\x50\x0f\x6d\x27\x7e\x9f\xa6\x13\xa9\xa9\xcf\x54\x4e\x62\x2d\xfe\x3e\x4f\x7c\xe9\x70\x7f\xa6\x72\x92\xe4\xbc\x8a\xcf\x54\x4e\x52\xf6\x86\x43\x7c\x40\xf6\x71\xf6\xd4\x89\x80\x17\x81\xd7\x31\x39\xb4\x17\x68\x6a\x2f\x29\x7b\xc1\xa7\xfa\x12\x43\x33\x00\x27\x08\x44\x08\x9b\xca\x4b\x6a\xaf\x01\xef\xf9\x7b\xf2\xef\x73\x03\x54\x49\x98\xf0\x84\xc4\xe8\x05\x43\x6c\x40\x1e\x52\xbf\xe0\x0a\x09\xa9\xfe\x24\xd4\x20\xc2\x4f\x12\x2c\x13\x3f\x6d\xa2\x67\x18\x7a\xc4\x1e\x0d\x2f\x57\x9b\xe8\x79\x2d\x37\x22\x8f\x5e\xe7\x0f\x83\x08\x24\x4a\x3e\x6d\x7c\x7f\xd5\xd7\xf9\xd2\x26\x76\x6c\x76\x7c\x1a\x35\x23\x7f\x3f\xf9\xe3\xe6\xed\xc8\xa8\xa3\x57\xfb\xfe\xfe\xaa\x51\x12\xe0\x33\x55\x9c\x68\x01\xe6\xe9\xdb\xfc\xdd\xfd\xf5\x80\xed\xab\xef\xfb\xdc\x1e\xc5\xe7\xc9\xd4\x12\x62\x34\x7c\x3d\x23\x8c\xcd\xfd\x41\xbb\x91\x91\xe3\x81\x17\xb0\x5a\x58\x98\x3a\x44\xb4\xa1\xe1\xe9\xf3\x7c\x78\x6d\xa7\x8e\x10\xa1\xd7\xf8\xfb\x1c\xdf\xdb\x69\x6a\x18\x35\xf9\x7c\xe9\xe7\xf7\x57\x7d\x91\x5f\x9f\xf3\x1f\x66\x47\x88\x42\xe8\x66\x77\x74\x31\xfa\xfb\x41\xd7\x86\xbe\x1f\xe1\xfb\xab\x56\xc3\x8f\x38\xad\xd7\xf9\x87\x40\xad\x6c\x7e\x0e\xc3\xbc\x9d\x2b\xcf\xc0\xfa\x9b\x5d\x4d\x75\x24\x85\xe1\xdf\xdb\xf7\x57\x55\xd4\x5e\x7c\xa6\x32\x52\x9b\xb7\x27\xc2\x15\xb2\xcf\xa3\x31\xe7\x6f\x31\xf7\x99\xba\x49\xec\xaf\xf1\x26\x7b\x54\x58\x51\x7c\xc6\x05\x61\x4a\xf4\x34\x75\x97\x98\x4c\x7f\x53\x75\x89\xc5\xf2\xc7\x54\x5d\xe2\x30\xfb\x65\xa8\x43\xf0\x76\xdd\x23\x04\x02\xbf\x30\xcf\x87\x97\x80\x34\x55\x9b\x94\x2d\x90\xec\x93\x3f\x0c\x6f\x7f\x68\x3a\xcd\xe7\xd7\xde\x7e\x27\x63\x3f\x53\xf1\x49\xdd\x04\x38\xf5\x9e\x54\xcc\xaf\xa7\xda\xd3\x82\x77\xeb\xd4\x7a\x5a\xf0\x79\xb6\xd3\xf2\xe3\xfe\xae\xef\xaf\x5e\x2d\xad\x4e\x95\x27\x65\x13\xec\xfe\x80\xff\xab\x7f\x44\x6e\x64\x6f\x98\xa9\x11\xb5\xe0\x0d\x0c\x2b\x5d\x90\x6e\xf7\x40\x1f\x4a\x16\x10\x8e\x8c\x0d\x2e\xf8\x8f\x39\xff\xf2\xea\x0f\xfc\xd1\xe7\xd3\x54\x9f\x62\x31\xfe\x0e\x6c\x00\x13\xdc\xc1\x18\x39\xb7\x27\x03\x78\x49\xd7\x07\x9c\xd5\xde\xc0\xc7\x8a\x4d\x56\xfb\x82\x5d\xcf\x6d\x18\xe2\xa4\xbb\x3e\x50\xbd\xac\x5d\x3c\x74\x8f\x5b\xde\x98\x9a\x57\xda\x2c\xb0\x4d\xc5\xab\xe5\xd7\xfb\x8c\xae\xd0\x7c\x61\x47\xcc\xd1\xdf\xcf\xf5\xb5\xda\xfa\xc0\x20\x92\xac\xae\x3c\x88\x4c\xa9\xde\x01\x34\x2d\x7a\x47\xc1\xb2\x98\x2d\x11\x4e\x3d\xae\x65\x1f\xf8\x53\x8d\x4b\x2f\xf5\x02\xa6\xeb\xe1\x03\x6c\x6a\x75\xb1\x19\xc0\x0b\x02\x80\x29\xfe\x4a\x50\x87\x56\xff\x89\xae\xed\xcf\xf0\x69\x9b\xda\x4c\x4f\x9f\x0d\x96\xe0\xce\x56\x80\x62\x82\x3f\x5b\xd2\x50\x82\xdf\xb9\x56\xff\x3a\x91\x5f\x5f\x1f\xd3\xf1\xdc\x7e\x12\x37\x90\x90\xf9\xd3\xea\xc7\x58\x92\xb6\x29\x9b\x77\x89\x6a\x09\xae\xe8\x10\x63\xf0\x03\xf8\xe7\x3e\x46\x84\x04\xe7\x74\x88\xca\xce\x49\x74\x4f\x57\x59\x81\xd3\x06\xff\x4c\x0c\x4d\x63\x2c\x7f\xc3\x87\xe1\x26\xe6\x05\xf9\xc4\x48\xdb\x03\x8e\xab\x31\x1f\xcc\x58\x08\x80\x1b\xa0\xca\x4c\x9d\xe2\x04\xb2\x87\x0f\xc3\x4f\x71\x0a\xd4\x5d\xf2\x64\x82\x4b\xa9\x2b\xee\x3d\xc1\xa3\xd4\x95\x06\x93\x22\xe6\xa4\x40\xf8\x84\x70\xce\x2e\x05\x25\xc5\x29\x50\x77\xe5\xd8\xa4\x38\x05\xea\x56\x3f\x91\x00\x29\x4e\x79\xba\xcb\x3b\x92\x22\x1c\xb9\x8a\x21\x4f\x70\x58\x75\xe5\xf7\x24\x78\xac\xba\x52\x78\x52\x9c\xf2\x74\x97\xbb\x25\xc5\x29\x4f\x77\xe5\x30\xa5\x98\x31\xbf\xe2\x36\x4d\x84\x9a\xff\x94\xa7\xbb\xb2\x7c\x12\x1c\x60\x5d\x21\x0f\x29\x2e\x7f\xff\xd0\x83\x02\x6b\xf1\x10\xc0\x38\x91\x36\xf9\xed\x12\xa2\xe2\x7a\xa8\x6e\x63\x04\x2d\x41\x1c\x18\xa1\x0a\x23\x03\x18\x2e\x9a\x01\x4c\x64\x5b\xf6\x12\x0d\xa0\xb8\xba\xdd\xf8\x82\x7b\x00\x8e\x45\x78\x88\xa1\xeb\x92\x91\x53\x9c\x87\x52\xd8\x72\x17\xd2\xe0\xd7\xda\x72\xf7\x17\x27\xbb\x14\x9a\xe7\xb9\xd4\x53\xf0\x17\x40\xf3\x6b\xd6\x0f\x67\xad\x17\xe0\xd5\xda\xb2\xdf\x80\x51\x6d\xcb\x43\xf3\x9e\x27\x45\x97\x53\x2b\xc5\x9d\x2b\x2f\xca\xd9\xb1\xf2\xc5\x3d\x62\xe5\xab\x66\x81\x93\x42\xf9\x67\x29\xee\x00\xa9\xba\x3f\xac\xbc\x38\x03\x62\xfc\xba\x92\xdb\x52\x7c\xa0\x69\x79\x7f\x22\x46\xad\x6f\xd9\x6d\x04\x35\x88\x54\x19\xa7\x16\x14\xc7\x95\x10\xa9\xd6\x75\xd6\xa6\xb4\x31\x6d\xed\xa3\xdd\x26\x3a\x18\x83\xbc\xbc\x29\xc1\xb7\x1d\x14\x7d\x96\x12\x7c\xdb\xa1\x7f\xf4\xad\xc4\x70\xb7\x20\xaf\x65\x62\xc0\x5b\x50\x60\x6b\x62\xc8\x5b\x50\xdc\x6a\x42\xd0\x5b\x2b\xa2\x8f\x14\x32\xbc\x98\xfa\x20\x14\xcc\x43\x40\x04\xb0\x1d\x6d\x99\x14\x08\xe5\xf0\x07\x88\x0b\xd0\x9e\x49\xf4\x85\xcb\x36\x97\x52\xa0\xff\x45\x3d\x46\x78\x48\xb4\x49\x52\x24\xe6\x84\x18\x84\xd4\x05\x39\x6b\x13\x43\xea\xc2\x10\xaf\x4c\xb1\x62\x0e\x02\x21\x36\xb4\x05\x42\xdc\x31\xa2\xb0\x82\x80\x90\x62\x88\xe0\x0b\x0f\x23\x08\x09\x09\xdb\x52\x7c\x03\x01\x74\xc1\x8a\xf6\x3c\x92\x27\x45\x47\x81\x94\x08\x81\x46\x48\xc0\x8a\x34\xf5\x94\x60\x0a\x08\x23\xf9\x0d\x84\x4b\x88\xd5\x24\x24\x22\x85\x91\x34\x6d\xf0\xae\x2d\x7b\x88\x93\x30\xf8\x0b\x42\x9d\xb4\xfa\x48\x2a\x0a\x43\xe7\x55\x02\x3b\xda\x72\xf9\xc9\x01\x94\x32\x1c\x4b\xe2\x6d\x29\x13\x62\xaf\xc3\x54\xde\x5b\xe9\xee\x7d\xc7\x9c\x85\xa4\x0c\x4a\x32\x65\x4d\xe5\xbc\xcb\x5a\x95\xd2\xe4\x75\xad\x0c\xf5\x57\x88\x54\x8f\x88\xd0\xfb\x30\xb4\xa9\x53\xe1\xca\x9b\x54\x0a\x60\x14\xff\x4e\x50\xe7\x82\xc2\x2f\x53\x6a\x88\xdc\x11\xb3\x4a\x53\x43\x6a\xf5\xd5\xc6\x19\x1d\xb5\x0a\x53\x43\x6a\xd5\xeb\x8a\x40\x9d\xcd\x10\x20\xb0\x39\x28\xd2\x31\x21\x28\xb1\x6f\x46\xf1\xe0\x76\xd0\x2a\x0d\x40\x18\xfd\x3e\x76\x83\x17\x6d\x70\x43\x56\x77\x00\x46\xe3\xfd\xb6\x63\x00\x1d\x69\xf0\xf8\xb7\x6a\xe2\xa7\xef\xd9\x10\xef\x38\x00\xba\x7f\x07\x7f\xf7\x2a\x1c\x04\x58\xfd\x1d\x20\xed\xa8\x55\x3b\xd8\x9f\xdf\x67\x30\x96\xfa\x83\x88\x68\xa5\x37\x25\xc8\x84\x52\x6a\x53\x3a\x71\x5e\x88\xd9\x23\xa0\xb2\x6f\xa6\xca\x13\x9c\xd7\x2c\xe9\xc4\x12\x04\x4d\xe0\x82\x03\x34\xa9\xbf\x8b\x3c\x4c\x8b\x9e\x37\xaa\xe8\xda\xae\x99\x61\x41\x49\x73\xce\x60\x9d\x4d\xee\xff\x94\x19\x63\x3b\x3e\x66\xe6\x94\x11\x34\xdb\xa2\xb6\x5b\x46\xb4\x4b\x8e\x41\x0f\x90\xc9\x90\xbd\xdf\x32\x32\x19\x5a\xfc\x68\xbf\x29\xf7\xa5\xad\x6b\x14\xa8\x87\x4d\xf6\xde\x94\x91\x88\x5c\x95\x09\x96\x32\x9c\x21\x4d\x81\x5f\x29\x43\x00\xef\x49\x1c\x3b\x23\x98\xbb\xc9\x46\x9c\x32\x83\xa5\x25\x53\xa7\x12\xe8\x22\x10\xc5\x14\x18\xfd\x6c\x43\x4f\x05\xe9\x61\x4d\x79\x6f\xa9\xc0\xa7\xdb\x94\x6a\x93\x0a\xf5\x30\xe5\xcb\xa6\x02\x8f\x53\x93\x9d\x3f\x95\x29\xd9\xcf\x07\x1f\x38\x0a\x96\xa1\x25\x11\x66\xb9\x10\x36\xb7\x55\xbd\xf1\xc0\x38\xa8\x04\xd9\x04\xb7\x7b\x68\xf9\x23\x9d\xa7\x8a\x80\xcf\x11\x3e\xfa\x44\xaa\x19\x9d\x2a\xa4\x37\x55\x04\xfd\xb7\xfc\xd1\xb0\x52\x85\x07\xaf\x29\xe4\x2b\x55\xe8\xc4\x4d\x22\x7c\xaa\x70\xdc\x34\x4b\x17\x0d\x2e\xef\x56\xc4\x39\x1b\x5c\xde\xad\x88\xd7\xb6\x56\xf8\xe0\x33\x97\xd6\xe9\x98\x11\xeb\x69\x58\x97\x56\xfc\xe0\x86\x2b\x4c\xb9\xdf\xa9\xdd\xc0\x58\x69\x7a\x83\xd3\x2f\x02\xbd\x3d\x17\x1f\x7c\x46\xe9\xf0\xad\xb4\xf2\x31\x27\xa6\x0e\xfb\xf4\x8b\x45\xf6\x44\xfd\x58\xb2\x54\xcf\xfc\x44\x47\x57\x2f\x9c\x8b\x66\xdb\x2b\x21\xd5\x61\xd7\x77\x64\x0c\x4b\x69\x4d\x1d\x8e\xbf\x21\xab\x6b\xea\xcf\xfe\x3b\x27\x68\x1a\x38\xb3\x5b\x15\x8d\x0d\xf8\xa9\x5b\x15\x17\x18\x48\xc1\x69\x55\xcc\x7f\xec\xc8\xb3\x53\x58\x6d\x1a\x50\x5d\x37\x23\x68\x2f\x27\x1f\x7c\x56\x6e\x27\x15\xb6\xa0\x37\x60\x3e\x6b\xb2\xd7\xa7\xbd\x23\x9d\x6b\xca\xf3\x3f\x38\xa0\xf6\x93\x20\x88\xf7\xee\x0c\xdd\x56\xf0\x7c\xda\xe1\xa1\x6b\x0a\xab\x49\x3b\x3c\x74\x4d\x41\x59\x69\xbf\x31\x51\x99\xf4\xd3\xfe\x30\xe6\x50\x0c\xfb\xd8\x08\xb5\x90\x45\x1f\x7e\x53\xea\x7d\x3a\x10\x6e\xdc\x94\x43\x9c\x8e\xc8\x98\x35\x11\xe0\x81\x14\xa7\xa6\xc4\x9e\x74\x34\xc2\x21\xc5\xe8\x80\x37\xbd\x29\xe5\x2f\x1d\x60\x2e\x76\xd4\xa5\xa3\xb3\x0f\x2d\xc9\x01\x37\x72\x53\x56\x4e\x3a\x10\x24\x54\xcd\xe4\x0e\xf8\x4d\xeb\x10\x6b\x3d\x4e\xf6\x21\x3e\x70\x3c\x20\x2f\xf3\x92\xe3\x41\x3e\xa5\x35\xa6\x13\xc1\xb9\x75\x48\x56\x3f\x11\xa0\xd0\x64\x04\x4b\x27\x46\x69\x43\xab\x78\xc2\x51\xda\x2c\x1c\x5d\x08\x97\x6c\x0a\xf1\x48\x17\x34\xe1\x36\x3e\x66\xdf\x74\x25\xd2\xac\xd6\xe5\xca\x38\x87\x25\x6e\x5f\xc8\x4d\x6b\x43\x64\x7f\x41\xeb\xe8\x9b\xb4\xeb\x0b\x31\x4e\xaf\x93\xf5\x3a\x97\x03\xfc\xb3\x0a\x17\x22\x5a\xbb\xac\x19\xe9\x06\x7f\x7a\x49\x96\x77\xe2\x64\x05\xd7\xcd\x3c\xed\xa0\x4d\x7e\x57\x8e\x22\x3d\xe2\x46\x4a\x5c\x97\xcd\x35\xdd\x38\x37\xba\x6c\x32\x89\xa1\x14\x7d\x13\xaf\xbd\x99\x4e\xa5\x5c\x88\x84\x30\x86\xd0\x37\xb1\xb4\x9b\x99\x90\x4a\x8e\x48\xf0\x23\x84\xee\xcd\x45\x33\x75\x1d\x3a\x37\x60\x6a\x0e\x5d\xc9\x2b\x09\xb6\xe5\xf0\xd2\x65\x61\xfb\x0a\x2f\x95\x08\xc6\xad\x90\xad\xe3\xd0\x18\xd3\x83\xa6\xff\x5c\xec\x43\x2c\xed\xb9\x16\x4e\xd7\x27\x79\x4b\xfc\xe4\xa3\x98\xe5\x0d\xa9\x8d\x5d\x36\xce\xbc\x31\x99\x55\x79\xe1\x79\x55\xaa\xc8\x1f\xc0\x32\x03\xc6\xbb\xcc\xc4\x99\x99\xe9\x5d\x31\x30\x39\xe4\x07\x0f\x3e\xdc\x38\x33\x01\xda\xf1\x83\x39\xa0\x02\x48\xd7\xe1\x9c\xc3\xc1\x4f\x3e\x9e\x83\x8c\xf0\xe5\xd0\xe3\x47\xbf\xca\xe1\xbe\xf9\x40\xa3\x3c\xec\xf4\x83\xd3\xcc\x60\xe2\xae\xf3\x3c\xc7\x8d\x9f\x7c\xb6\x6d\x66\xca\x64\x56\x24\x52\x8e\x6b\xb6\x1f\x6d\x27\x33\x57\xab\xcb\xa4\x97\xe3\xc5\x07\x59\x9f\x20\x28\xa0\x2b\x63\x39\x27\xc8\x37\x5d\x5e\xac\x0c\xf5\x24\x74\x9d\xc5\x39\x21\x8e\xb6\xa7\x8f\xe2\x97\x13\xe7\xa2\xa4\xd4\x9c\xb0\xb1\xbb\x32\x4a\x73\x86\xae\xd8\x45\x52\x39\xb3\x2e\xc7\xeb\x0d\x1c\x02\x5d\x59\x20\x39\x83\xaf\x75\x25\xe0\xe4\x0c\xbe\xd6\x95\x05\x99\x33\x33\xf2\x65\xef\xc9\x19\xc9\xf1\x6d\xfb\x98\x23\x72\x46\x9e\x64\xcf\xaf\x07\x3b\x1f\x7c\x08\x26\xe3\xc4\xef\xb9\xaa\x53\xd8\x54\xbb\xce\xf3\x9c\x0f\x4e\x6e\x08\x74\x6e\x64\x05\x8a\xe7\xc2\xc9\x95\x0f\xd3\xce\x05\x99\x5b\xbd\x7c\xa4\xe6\x5c\xa0\x22\x66\x85\x40\xe5\x42\x14\x16\x2d\x54\x69\x6b\xcf\x7d\xe6\x52\x90\x09\xd8\x94\x47\x92\xcb\xc1\x51\x04\x47\x01\x60\x23\xf8\x93\x1b\x94\x5c\x43\xff\xc1\xf9\x95\x0b\xcf\x1e\x59\xb3\x73\x05\xaf\xed\x55\x2b\x50\x03\xfd\xd5\xda\x3b\x15\x1a\x5d\x97\x47\x3c\x57\xa6\xe8\x2a\xf3\x32\xd7\x9d\x6f\x7c\x38\x7a\xae\xab\x72\xce\xe7\x84\xcb\x75\xe7\x28\xda\x2a\x0d\x94\xd0\xeb\x47\xc6\xc8\x8d\x55\x49\x14\x27\x91\x1b\xc8\xbc\xb7\x4f\x84\x59\x6e\x2c\x5e\xa3\x00\xe0\x4c\x59\xa7\x2b\xa8\x33\xf7\x80\x85\x57\x72\x4c\xee\xac\x7d\xa2\x1c\xf8\xdc\xe9\x4b\x96\xf1\x2f\xf7\x8c\x75\x56\xf8\x42\xee\x10\x9f\xbb\xbc\x7b\x79\xc0\x3c\xdf\x64\x23\xc9\xe3\x06\xcd\xca\x96\x90\x07\x44\x9b\xae\x28\xf6\xbc\xc3\xcc\xd2\x65\x2c\xc8\x3b\xe2\xe9\xba\x4e\xc9\xbc\x43\x26\xef\x52\x9b\xf3\x01\xd5\x3c\xa9\x7e\x4a\x3e\x60\x49\xed\x0a\xf4\xcb\x47\x5b\x0b\xff\xe9\xf4\x80\x52\xd4\x15\x8e\x95\x8f\x93\x70\x88\x53\x1c\xd7\x7a\xe3\x33\x97\xe3\xa6\xf6\xf0\x51\xc4\xf2\x49\x21\x4c\xc6\xcd\x7c\x22\x88\x7f\x28\xb4\x33\x9f\x00\x6c\xc8\x7c\x98\xcf\x93\xfe\x26\xb1\x9f\x13\xc9\x66\x63\x13\xc6\xce\x3b\xf0\x93\xcf\x83\x0b\x3c\x6d\x28\x3e\x2b\x5f\x38\x27\x86\x7c\x28\xf9\xfe\x7d\x04\x50\xbe\x37\xc4\x41\xbd\xda\xd4\x72\x84\xaf\x7b\x83\x17\xb0\xb9\x03\x18\xfd\x8b\x7f\x47\x48\x4f\x70\x07\x03\x3e\x5d\xff\x0e\xaf\xde\xc7\x7a\x93\x6f\x26\x65\x66\xbf\xcf\x43\xe7\xf5\xe0\xfa\xfe\x4a\x45\x9c\xeb\xde\xe0\xf4\xfd\xd8\xc5\xf2\x8d\x7d\xd4\x7c\xa0\xdc\x88\xdb\x91\x55\x35\xdf\x10\x48\x14\xe7\x93\xef\xb0\xa6\xa4\x1e\xa1\xa8\x28\x35\x25\xdf\xa1\xa0\x83\xa8\x36\x1c\x99\xc9\xed\x86\x40\x1d\x0f\x80\x40\x0f\x6d\xd3\x3b\xc0\x8f\x35\xdc\xdf\x0d\x94\xf8\x7d\x44\x42\x46\xd1\xf1\x1d\x27\xd2\x87\x71\x14\xe9\x39\xd6\x80\xb1\xbf\xc3\xb2\xf2\x0d\xaa\x6e\x0a\x30\xcf\x37\x42\x69\x36\xb1\xc8\x1b\x67\x48\x8e\x5a\xf7\x1b\x1a\xb0\x83\x0e\xf3\x1d\xe9\x2c\x15\x96\xa1\x11\x37\x45\x51\xe7\x7b\x0a\x69\x79\xf3\x24\x60\x04\x53\xb9\x96\x7c\xa7\x29\xbd\x87\xcd\x84\x80\x70\x18\xc5\x8a\xe5\x3b\x51\x0b\xf7\x42\x81\xa0\xe5\x1e\xcb\xf7\x94\x26\xe2\xf0\xc2\xa2\xf6\x8e\xac\x37\xf9\x4e\xf0\x6f\x0f\xff\xfe\xbc\x83\xcf\xf2\x9d\x19\x9c\x26\x88\x10\xbe\x22\x5d\x3a\xdf\x60\x39\x59\xa9\x67\xf9\x46\xfe\x49\xcd\x42\x4a\xe6\x1e\x4c\x7e\xd0\xa9\xf6\x69\xc8\x8c\x90\x32\x13\x6b\x9e\xb4\xa8\xa8\xe1\x7c\x67\xb2\x06\x4d\x29\x23\x3a\xd4\x53\x46\x06\x5f\x53\x64\x72\xbe\x4b\xf9\xfe\xaa\xd9\x68\x2f\x44\x9a\x3a\x44\xcd\x1a\xa5\x12\xe5\x7b\x0a\x58\x39\x78\x3b\xa2\x62\x4d\x32\x2d\xa3\x60\x8d\x23\x77\xf3\x0d\x3d\x2c\x4c\x26\xf1\x83\x43\xe9\x2e\x4b\x69\x55\x1b\xf3\x29\x9a\x7f\x81\xc7\x34\x0a\xbc\x1a\x11\x92\xe5\x76\xe2\x68\xea\x60\xca\xc3\xf3\x81\x16\xa5\x92\x54\xb3\x16\xa1\x81\xd6\xc5\x08\xef\x06\xa7\x72\xd7\x04\x50\x49\x61\xc8\x6b\x94\x6f\x96\x45\xf0\x0c\x11\xa9\x9d\xe5\xd7\xce\x37\xca\x24\x54\xb3\xb4\x1e\x81\x33\xe1\xbc\xff\x2e\x28\x31\xdf\xbd\x62\xb7\xf9\x77\xb8\xa1\xc5\x45\x11\xda\x1c\x9b\x29\x7f\x4a\xf0\x39\x98\x8c\xfa\x81\x20\x4b\xb7\xcf\x77\x90\x63\xbe\xa1\xbb\xe5\x17\x21\x22\x12\x3a\xb8\x0d\x21\x28\x9a\x5f\xc0\x92\x34\x4c\x86\x0c\x2c\xf0\x56\x1c\xb4\x78\x6b\x40\xc6\x39\xcb\x51\x99\x11\xe7\x1c\xc3\x66\xba\x1b\x93\x6c\xde\xed\x81\xb6\x90\x8e\x50\x82\x4d\x27\xeb\x0d\x9f\x4d\xd0\x69\x7d\x53\x1a\x52\xe8\x50\xbe\xa7\xa0\xe1\x90\xdb\x7c\xef\xc0\xb1\x09\x1f\xea\xa9\xcf\xcc\x7b\x27\xc8\xfe\xbe\x22\x56\x51\x53\x80\x05\xaa\x76\xad\xe1\x3e\x37\xd6\xd6\x04\x20\x5c\xf7\xa3\x79\xbc\x87\x33\xd4\x83\x29\x1c\xe4\xe0\x8d\x32\xe5\xc8\x6c\xe9\xea\x9e\xea\x71\x56\x54\x71\x5e\x91\xca\xaf\xad\x7c\xec\xef\xd0\xd3\x7c\xa3\xd8\x9f\x43\xde\x33\x43\x99\x9b\xf5\x92\x7b\xea\x9c\x31\x19\xa6\x73\xaa\xb1\xc5\x48\x3d\x89\x13\xf5\x48\x55\xf9\xb5\xce\xf3\x00\xcf\x4a\x0c\xcc\x08\x64\xce\xaa\x55\x98\x6f\x58\x03\x6b\x71\x87\x9d\x1d\xb8\x47\xf8\xcb\xab\x3b\x38\x18\xd3\xad\xf6\x85\x0e\x35\x85\x13\x84\xe7\x9d\x71\xce\xed\x5c\xbc\x5b\x91\x17\x9a\x93\x0f\xeb\x29\x6b\xc7\x60\x96\x8b\xca\x3f\xaf\x65\x9c\xea\x4c\x54\x89\x84\x8c\x18\xe8\xac\x5c\xec\x8c\x10\xe8\x54\xa2\x07\x18\x08\x01\xd2\x04\x68\x56\x54\xa6\x58\xbe\x51\xf4\x27\xbc\x28\x71\xea\x47\xd5\x8b\x70\x61\x06\xd1\xef\x3f\x68\xeb\xf5\x7b\xcd\x40\x2f\xdc\x8c\x60\x16\x4a\xee\xc8\x01\x44\x08\x77\x42\x54\xab\xa6\x74\xcf\x45\xd9\x4c\x17\x90\xea\x43\x15\x04\x37\x39\xda\xeb\x83\x83\x73\xd0\xa4\x6f\x60\x3d\x7a\x48\x84\x79\x67\xb7\x17\xed\xaa\x4b\xda\x61\x24\x3d\xdf\x0f\x4f\x89\xa2\x2f\x9e\x88\xc3\x59\x93\x82\xae\x3a\x82\xb7\xcf\x53\xf8\x85\xf0\xf0\x54\xea\x22\x6a\x73\x61\xfc\xc1\x3c\xc8\xa2\x84\xfe\xfb\x39\x81\x26\x7f\x4f\x9e\xe5\xfd\xf4\xdc\x04\x5a\x4b\xf9\x90\xed\x6a\x87\x21\x76\xbc\x27\x09\x2d\x88\x1d\x0f\xa5\xfd\xc4\xdd\x94\x11\x58\x3e\xbb\xef\x7a\x00\x97\x9a\x98\x28\x23\xc3\x83\x32\x31\x32\x43\xc3\xcd\xa2\x1e\x3a\x3b\xb5\x17\x10\xfd\x3d\xe1\x33\x3c\x4b\x90\xf4\x17\xb0\x8c\x4a\xb0\x7c\x3e\x95\x28\xd5\xc6\xee\x90\x22\x8e\xf8\xef\xa4\xc4\x8d\x8c\xf8\xef\x50\x45\xbb\x88\xff\x8e\x61\x13\x52\x9f\x50\x08\x82\x46\x0c\xf4\x4c\x14\x77\x49\x46\x3d\xdc\xc7\x3a\xed\x04\x44\x60\xaa\x87\xb0\x3c\xd5\xf2\x2c\x8f\x7f\x46\x90\x77\x92\x4d\x3d\x23\x68\x7a\x76\x20\x3c\x44\x8a\x24\xe2\x3a\x08\x8b\x4e\xaa\x82\x97\x11\x16\x9d\x65\xa8\xcd\x0c\x8b\x1e\x0a\x93\xc8\x88\x83\x9e\x40\xfa\x0b\xc4\x79\xe9\xb8\x79\x96\xe8\x67\x20\x29\xfa\x89\x8d\x20\x12\x7a\xce\x5b\xb3\x42\x25\xc6\x62\x20\xe1\xfe\x4c\x46\x7d\xda\xc1\x67\xfc\xfb\x5a\x4c\x3f\x40\x28\xb0\xd7\x12\xde\x4f\xf9\x3c\x32\x43\xa1\x9b\xd2\x08\x33\x63\x9f\x83\xe5\x57\x04\x3b\xcf\x07\xea\x02\xe2\xe2\xa6\x2d\x84\x68\xe6\x38\xb4\x03\x10\xcd\x9c\x5f\x98\x86\x70\x58\xad\x9f\x32\x9c\x39\x27\xf1\x6f\xc4\x27\x07\x19\xd4\x32\xe2\x93\xd3\xd6\xdc\x03\xa2\x06\xb4\xe9\x10\x9f\x1c\xcd\x9a\x56\x7c\xb2\xa9\xa5\x2c\x90\xd5\x61\x01\xef\xf2\x52\x16\x4a\xb8\x3a\x72\x56\x84\x72\xf6\x08\x28\x15\x20\x86\x0f\xcb\x62\x56\x96\x50\x46\x84\xf2\x44\x9b\x47\x18\x50\xae\xfc\x02\x64\x1f\x09\xc4\x08\x51\xce\xaa\x46\x94\x1f\x8a\x9b\xd9\x10\x91\x17\x1a\xa0\xc9\xbf\x4b\x35\x40\xb0\xb9\x36\x0f\x50\x17\x03\xd7\x08\x4b\xa4\xd4\x99\xf1\xd0\x18\xac\x4c\x9c\x8c\x28\xe2\x6c\x75\x1c\x51\xc4\xb3\x4f\xe1\xb9\x32\x6e\x5a\xc2\x02\xe2\x84\x63\xb0\x18\x8d\x40\xe1\x6c\x1d\x13\x81\xc2\xd9\xaa\x36\x02\x85\xe7\x07\xea\x12\xce\x0b\x9b\xf1\x60\x80\x4d\xc5\xc4\xd4\x70\x94\x4b\x45\x44\x2c\xef\xec\xc0\x0f\x28\xa8\x47\x0f\x09\x4c\x26\xf7\x08\x76\x25\xd1\x9a\xd1\xba\xb6\xac\x22\x3a\x77\xf6\x28\x54\x76\xaa\xb1\xa6\x06\x98\x9e\x95\x6e\x9f\x11\x9f\x1b\x86\xe2\x95\x32\x03\x74\x5b\xf4\x6a\x74\x40\x2d\xed\x04\x11\xb9\x59\x36\xf4\xcc\x88\xdc\x60\xd1\x17\x21\xb9\x2f\x4b\x24\x42\x72\xb3\xaa\x3e\x64\x84\xe4\xce\x0f\x84\x97\xce\x84\x24\xc3\xb4\x56\xc2\x0f\xb0\x12\x32\x2f\x20\x28\x77\xbe\xa0\xd5\x9d\xc2\x72\xb6\x49\x03\x51\xb9\x5d\x41\xfa\x19\x51\xb9\xf3\x03\x3f\x40\x14\x5f\xff\x49\x5d\xd3\x8c\x18\xdd\xfc\xa2\x5f\xc4\x43\x65\x2b\xa1\x08\xd2\xcd\x36\xfa\x21\x48\x77\x0e\x67\x78\x80\x12\x13\x34\x5c\xfc\xd5\xe7\xd6\x20\x53\x70\x9b\xfc\xd9\xc7\x08\xc2\x72\x43\x30\xf7\x64\x18\x9e\x8f\x15\x18\xf9\x92\x79\xdf\x7e\x60\x4f\x09\x65\x90\x9d\x9b\x3b\x84\xec\x5c\x24\x4d\x20\xec\x35\x0c\x1f\x21\xc7\x22\x1c\x75\x78\x14\x70\x67\x81\x88\xb8\xd5\xe1\xa3\xf5\xa0\xd1\xc8\x3d\x1e\x44\x82\xd7\x1d\xb6\xd1\xac\x7a\xbe\xf9\x39\xa0\x08\xbb\x4d\x93\x99\x97\xfd\x04\x27\x93\x5c\x87\x50\xd3\xf0\xc2\xe2\xb9\x48\xd5\x1f\x54\x0e\x29\xa0\xce\xce\x07\x5a\x77\xe4\xad\xdb\x8e\xce\xe0\xd2\xe4\x33\xe5\xa4\xdc\xe6\x69\x9d\x24\x56\x73\xcf\x13\x81\x6a\x66\x1b\x14\x9f\x4d\xbc\x27\x45\x20\xcb\x20\x17\xd8\x86\x31\x7f\x81\x56\x8d\xc8\x6b\x61\x5a\x30\x5e\x74\x18\x98\xba\x2f\xa8\x04\x3e\xc7\x50\x48\xb3\xfb\xd0\xb9\x40\x7e\x3e\x38\x2f\xf0\x63\x6f\xe9\x0b\x5c\xc4\x87\xfd\xc5\x39\x99\xcd\x4c\x79\x3a\x55\x33\x64\x0a\xd0\x26\xa6\x29\x40\xb7\x6a\xe2\xb8\xa1\xd4\xb8\x43\xca\xcf\x96\xc0\x9f\x29\x3f\xa7\xf6\xea\x80\x32\x8e\xf1\x7e\x23\xec\xdc\x20\xde\x18\xd1\x2b\xf9\x70\x87\x4b\x5e\x7e\x20\xfe\xa6\xe6\x49\x3f\x44\x9b\xb4\xc1\xe7\x81\x65\xc7\x4c\x62\x8a\xbf\x49\x55\x42\xf2\xf3\x60\x17\x57\x77\xd0\x91\xa4\xab\x49\xd0\x05\xfe\xfa\x7e\x61\x49\xbb\x7c\x89\xbf\x3e\xe7\x1e\x2c\xbd\xb7\xc8\x83\x12\x3e\x1f\x25\xa0\xb0\x46\xd6\x26\x03\x5b\x41\xec\xf0\xdc\x23\x49\x0f\x60\x75\x28\x7e\x81\x30\x76\xb5\x1b\x61\xc8\x7a\x00\xb3\xc3\x47\x73\x29\x1b\x0c\xa5\x56\xca\xcb\xb6\x51\xd4\xf3\x0b\x14\x70\x8b\x7b\x98\x6b\xad\x43\xaa\x6c\x10\x70\xab\xf2\x6f\xca\x36\x25\xdc\x22\x43\x66\x59\xb5\xbc\x54\x20\xbb\xa0\x9c\x57\x96\x50\x5d\x10\x01\x9d\x5e\x93\x08\x54\x69\x3f\x22\x4d\x41\x51\xaf\xac\x80\xd3\x82\x32\x5e\x61\x54\x8f\xb0\x66\xe9\x17\x28\x45\x75\x01\x4d\x09\xb8\xba\x47\x52\xb8\x7f\xa7\x28\xf8\x91\x59\x0a\xeb\x7d\xb5\x68\x44\x85\x8b\x63\x18\x6a\x84\x9e\x75\x8f\x09\xb9\x2b\xa8\x87\xc8\x59\xaa\x03\x84\x20\x26\x83\x84\x44\xc8\x9a\xd5\x1f\x12\x21\x47\xd1\x42\x44\x2e\xad\x96\x12\x01\x88\xb5\xf9\x7b\x1e\x22\x3f\x2a\xad\x5d\xb6\x88\x2d\xfe\xea\x1d\xe2\x4d\xd5\xa2\x45\x22\xc4\xd0\x1c\x48\x3b\xf5\xef\xd4\x10\x3c\xfa\x14\xc1\x36\x2f\x11\x63\x9d\x92\x57\x3d\xad\x0d\x28\xf8\x29\xcf\x4b\xd4\x2d\xdb\x27\x30\x45\x6d\x26\xee\xb9\x87\xb5\x26\xc2\x30\x22\xa3\x93\x09\x0d\x9e\xab\xda\xbc\x5f\x32\x51\x2c\x42\xca\x30\xd7\x54\xb7\x17\x08\x1a\x22\x43\x72\xed\x9a\x35\xa5\xf1\xa6\x35\xcc\xc0\x9a\x71\x9e\x59\x73\xc9\xbf\x73\xf7\x24\x83\xb4\x76\x8b\x41\xa2\xca\xd0\xfc\x06\xce\xac\xa0\x49\x15\x70\x77\xff\x5e\x16\xf1\x6b\xcc\x02\x3a\x30\x21\xc2\x98\x2b\xf7\x70\xd9\xca\xa2\x03\xf7\xc0\x73\xd3\x78\xa3\x78\xdd\x04\xd3\x14\xa7\xd3\xf6\xea\xf1\x21\xd0\xfa\xa0\x72\xed\x92\xf0\x82\x1c\xbe\xf1\x22\x8f\xba\xa0\x54\x9f\x95\x6e\x4a\x41\x5d\x69\x3d\x4c\x7e\xc0\x3d\x9a\xb4\xdc\x95\xb2\x6a\x72\x17\x20\xb1\xe6\x31\xb8\xe3\x92\x96\xaf\x71\xfd\xd5\xc3\x92\x9f\xb3\x96\xa3\xb1\x68\x9b\x3f\x40\x6e\x71\xd4\x44\x21\x4f\x6f\xc6\x75\x63\x2c\x8f\x60\x5c\x7e\x2b\x93\x64\xe3\xfa\xbb\x8d\x4a\x76\x5e\xbc\xce\xc5\xd3\x80\x4b\x7c\xce\xa2\x71\x5a\x85\xbb\xdb\x14\x30\xb2\x86\xec\xd4\x8d\x3c\xeb\x4e\x92\xca\x42\x4b\xc7\xd9\x6a\xaa\xef\x4b\xb4\xf3\xa0\x14\x18\xbc\x5a\x4b\xba\x35\x8b\xa6\x3f\xbc\x08\x0f\x14\x5e\x87\xf0\x36\x28\x07\x75\x3f\x58\xab\xa7\x89\x0f\xc8\x41\x5e\xee\x29\xa0\xa6\x6c\x16\x3e\x40\x62\xaf\x0e\x0e\x82\xe0\x17\x4e\xf6\x28\xa8\x97\x84\x5a\xf5\xc9\x4e\x1a\x33\x8f\xde\x17\x8d\x69\x1a\x3b\xed\x7a\xc6\xe6\x4e\x37\x84\xdb\x17\xf4\x4a\x41\x79\xd0\xe4\x65\xdc\x1d\x30\x9e\xbe\xda\x60\x10\xe6\xe1\x07\x0e\x9a\x2e\x44\x1d\xb4\x41\x08\x46\xe4\x56\x65\x4f\x62\x89\xa8\x3e\x8f\x0f\xd2\xac\x0f\x16\x06\x1a\x6c\xc2\xc3\xc9\xb5\x31\x83\xa0\x3d\xd7\x2c\xe8\xa4\x15\xce\x6c\xf0\xa4\x66\x6a\x20\xa7\xd4\xda\xea\xeb\x05\xda\x41\x5e\x5d\x10\xd7\xde\x17\xc8\x68\x8a\x2f\x20\xc8\x94\x4c\x00\x48\x69\x52\x8e\x74\xd9\x60\xb2\xad\xcd\x5d\xc2\x09\x5c\x87\x30\x7d\x51\x1f\x32\xcb\xb8\x08\xe5\xf8\x49\x98\x5d\xd9\xae\x82\xa2\x04\xee\x1e\x3c\xcd\x3b\xfb\x82\x2b\x72\x68\x8a\xac\xfe\x2b\xe3\x50\xd9\x2e\x64\xad\x7a\x27\xd3\x82\xeb\x9d\x7f\x51\xdd\xf1\x26\xb9\x49\x0a\x3e\xd0\x96\xc8\x69\xfa\xbb\x41\x0b\x1e\xf3\xce\x7c\x41\x73\xbe\xb1\x97\x8d\x34\x06\x2c\x24\x6f\xf6\x1b\xa9\xa7\x16\xbe\x6e\xfa\xd6\x7d\xc8\xde\xb4\xe5\x64\x8f\x01\x43\x86\xd1\x7a\x63\x1a\x2f\x20\xb9\xb5\xb3\x1e\x3c\xac\x54\xb7\x69\x5e\x0f\xed\x6a\x66\xbc\x2c\xbe\xd1\x4c\x2e\x0f\xb7\x91\x91\xfb\x70\xf7\x6b\xd0\x87\xf3\x12\x45\x3e\xe4\x51\x26\xb0\x07\xb2\xc2\xf0\x10\x64\x51\x9e\x17\xec\xbe\xd5\xab\xf3\xac\xbd\xfd\xe9\x92\xf5\x3d\xeb\x47\xad\x2a\x8c\xd7\xaa\xba\xf3\xa7\xf0\x66\x21\xe5\x3a\x14\xde\x23\x54\x75\xf1\x43\xe1\x3d\x42\x43\x02\x7e\xe1\x3d\x42\x59\xc6\xb9\x12\x68\xba\x1d\x7e\x81\xe2\x83\x18\x69\x58\x72\xa8\xd8\x22\x2e\xf8\x89\x96\x2f\x02\xc4\xcc\x28\x76\x12\xe0\xa1\x57\xd4\x42\x41\xcd\xd0\x1c\x24\x8d\x87\x15\x5d\xe1\x21\x03\xf5\xa8\xa4\x36\xd9\x83\xf1\x00\xb1\x33\x7e\xec\x35\x25\x2c\xb1\x53\x6c\x12\xb7\xf9\xcc\x07\x9a\x37\xa4\x4a\xc5\x7e\x15\xd4\x29\xcd\x2a\x07\x55\x42\xe4\x46\x14\xd1\xe1\x5a\x9d\xa4\x4a\xaa\x85\xb7\xe6\x04\x0b\x18\xb8\x24\x67\x3e\x10\xe2\x52\x44\xe9\x33\xf5\x90\xc8\x81\x24\xe5\xe0\x96\x9c\xf9\x85\xfa\x4c\x2b\x06\xdd\x6f\x34\x40\xe5\x17\x48\xf9\x12\x0f\x71\x27\xce\xec\x42\xa8\x4a\xc4\x84\x81\x38\xd0\x16\x22\xe0\x96\x57\x6c\x55\xe1\x65\x36\x2a\x03\x52\x02\x0d\xad\x96\x16\x78\x9f\x8d\xaa\xd4\x16\x5e\x67\xa3\xbb\x0a\x0a\x6f\xb3\x49\x9e\x75\x46\x59\x05\x2f\x36\xdc\xf4\x55\xdb\x1f\x01\x83\xb1\x79\xf1\x33\x35\x08\xa1\x31\xc3\x22\x33\xdc\x66\x8d\x67\x03\xc8\xba\x30\xee\x1f\xf6\x13\xd3\x4a\x66\xa5\xa4\x6c\x00\xd7\x42\xa9\x07\x18\x6e\xa3\x69\xa3\x44\xf4\x28\x88\x0a\x97\x5e\xd2\x07\x6e\xaf\xc9\xaa\xd9\x55\x58\x22\xb6\x2a\xe8\xa8\xe0\xae\x9a\xf9\xc0\x6f\xd0\xbc\xd1\xdd\xe7\x8e\xea\x33\x6e\x9f\xac\x65\xa0\xf6\x62\x48\x1a\xb3\xd2\xcb\x64\xea\xa9\x84\x52\x78\xa9\xe4\x36\xc2\x3b\xca\x3b\xf8\x34\xe3\x25\x32\xc1\x22\x12\x2e\x91\x09\xce\x9f\x2d\xb8\x44\x26\x2a\xa3\xbd\xe0\x92\x18\x57\xe0\x29\xbc\x24\x66\x54\x8f\x00\xd5\xa4\xfe\xc4\x45\x54\x70\x7f\x4c\x8e\xe6\x4c\x8d\x07\x9d\x3a\x63\x3c\x79\x32\x1d\x34\xaa\xe0\x92\x9e\xc3\x32\xd2\x0a\x5c\xdc\x05\xa3\x0b\x2e\x4a\x60\x5c\xb6\x94\x10\xdc\x04\x93\x64\x0f\x2a\xbc\x0a\xe6\xcd\x76\x1a\x43\x33\x4d\x5a\x8d\xc1\x74\xda\x5d\x8d\xe6\x4d\x89\x29\x01\x62\xa8\xd2\x76\x4b\xe8\xf1\x5d\x93\xa8\x84\xbe\x26\xa1\x21\x96\xd1\xd6\x4c\xa1\x63\x55\x8a\x7b\xe0\x75\x00\xfe\x00\x25\x93\xa2\x47\xc4\x11\x20\x7d\x20\xa0\x2e\x5b\x4b\xe6\x6c\x1d\xe4\x1f\xdd\x01\x04\xa3\xd7\xef\x6b\x0e\x86\x00\x75\x91\xa2\xda\x03\x75\x23\xa4\x1d\x04\x58\x68\x15\x1d\x58\x50\xce\x38\x29\x0d\xbf\xa0\x9e\x71\x56\x28\x60\x09\x83\x31\x2e\xee\x8f\xd9\x28\xe6\x38\xb0\xb1\xbe\x98\x37\x13\x48\xdd\x21\xeb\xb7\x9a\x23\xc1\x40\x9a\x65\x72\x2a\x01\xd1\x09\x31\xb9\xbd\xb0\xec\x1e\xf2\xf7\x57\xeb\xa6\x2d\x54\x2e\xb0\xba\x1a\xf6\x0a\x90\xb5\x4c\xa8\x54\xa0\x94\x92\x12\xa6\x78\x9b\x2c\x80\x04\x24\x5d\xb4\x64\xa6\x88\xf0\x04\x05\x68\x95\x00\x71\x56\x51\x74\x05\x11\xcc\xd1\x1a\x77\x38\x70\xa0\x99\x34\x61\x82\xed\x9e\xc1\x14\x6f\xf3\x66\x06\x72\x2c\x36\xee\x0e\x77\x3e\xd0\x14\x0e\x8a\x9a\xc5\x43\xa0\xfc\x95\x24\xe4\x70\xc0\x4a\x62\x2c\x1f\xe4\x72\x32\x83\xe0\x1e\xa2\xf9\x40\x5d\x9e\xb4\x5e\x9a\xcf\xb1\x32\x9b\x8f\xe9\x13\xb3\xf0\x91\x08\xa3\x6d\xf6\xc2\x9e\x0b\x6a\x7f\x00\xe2\x95\x9c\x16\x4e\xba\x72\xbc\xc9\xcf\x03\x67\x81\xe6\x3d\x05\xe8\x34\x3c\x4b\x56\x04\xa8\xfe\x9d\x0a\xb3\x0f\x1f\xc6\x48\xbe\x78\xf7\xb5\x66\x25\x18\x18\xe3\x60\x39\x1f\xb7\x1b\xd9\x91\x5c\x78\x97\xd1\x78\xf1\x41\x18\x5d\xa3\xd9\xde\x85\x72\xb3\x46\xdc\xc5\xe8\x19\x01\xc9\xdc\xa9\x17\xa7\xba\x08\xa5\xd9\xc4\xbd\xbd\x4b\x8f\x95\x30\x65\xe2\xd4\xbc\xa5\x6e\x8a\x8e\xde\x02\xf7\x02\x5a\xd3\xba\x81\x6a\x33\x1a\x48\xbc\xc3\xa7\xf2\x4d\x4c\xbb\x03\x54\x56\xf3\x71\x72\x23\x20\xc0\x87\x34\xe4\xdf\x68\x89\xec\xa6\xf8\x23\x7d\x2a\x3c\x04\x59\x1f\x40\xdc\xd5\xad\x03\x25\x3c\x0b\xcf\xa2\xb7\x67\x6d\x42\x3f\xa0\xf7\x52\x1a\x19\x6a\x86\xbb\xe0\x5a\x09\x0f\x53\x5c\x04\xf3\x43\x43\x85\x85\x1b\xd8\x79\xa3\xe9\xef\x41\x74\x9c\x27\xfd\xd0\x05\xe0\x01\x60\x20\xfd\x91\x6b\xa8\x04\x98\x80\x15\x7c\x53\x50\xc1\xdc\xe5\xdf\x0a\xea\x95\xc7\x22\xaa\x88\x1b\xce\x78\x31\x21\x96\x2f\x1f\xe6\xa3\x28\x5f\x9e\x14\x2f\x54\x90\x70\x10\x15\x03\x55\x56\xf1\x72\xd1\xfa\x2a\x55\xbe\x19\x00\x90\x5d\xf1\x80\x00\x50\x2b\xc2\x3a\xe5\xaa\x0f\x53\x58\xa6\xbc\xd9\xee\xc9\x42\xe5\x59\xd7\x34\x96\x48\xb1\x5a\xd6\x87\x88\x6c\x6f\x45\x3c\x94\xc8\xf8\x05\x45\xd7\x94\x88\xc8\x57\xa5\x87\x96\x18\x28\xa5\x0c\xbf\x70\x81\x0c\x05\x73\x24\x15\x48\x24\x88\x91\xb1\x04\x7e\x01\x35\xc5\x82\x7f\xaf\xc4\x5a\xd6\x03\x08\xb0\xc5\xed\xb5\x1b\x8b\x1e\x0c\x04\x14\x0a\x68\xd8\x4b\xe5\x2e\x2e\x71\x45\x48\x18\xcf\x91\x78\x53\x3b\x61\x61\x0d\x22\xea\xc0\x45\x63\x29\xad\x85\x14\xcc\x89\xf1\xc0\x7e\x01\x74\xa9\x23\x1a\x75\x2a\x82\x6e\x64\x29\xa8\x53\x91\xe3\xeb\x77\x46\x3b\xb8\x3f\x0a\xa8\x6e\xd3\x54\x29\x3a\x8f\x0c\x55\x10\xb3\x47\x21\x89\xec\xcd\x1b\x97\xf5\x54\x72\x49\xcc\x70\x23\x45\xb7\x57\xb5\x56\x81\x40\xf3\x68\xf6\x0b\x73\xdd\x9a\x91\x98\x71\xe6\x4b\x49\x8f\x14\x60\x25\xc9\xf1\x1a\xb4\xa6\x68\xa0\x82\x6b\xd0\x52\xf5\xb2\x7d\x04\x5a\x21\x61\x09\xb4\xc3\x6f\xf0\xc4\x32\xed\x14\x5e\x00\x27\x18\x98\xfc\x68\x46\x1c\x71\xdd\x85\x8d\x82\xb8\x06\x2d\x47\xef\xc8\xc2\x13\x4c\x0c\x83\xd5\xe3\xc7\x6b\x69\xeb\x92\x14\x34\x2f\xa6\x16\xc9\x5a\x86\x14\x9f\x68\x77\x05\x2e\x45\x4b\xc9\x43\x2c\xe3\xa9\x51\x8f\x60\x84\xf8\xea\x00\xd4\x57\x0d\xc2\x9a\x84\x1f\x50\x03\xf7\x5a\x55\x86\x1d\xe9\x05\x14\x2d\x2b\x9e\x75\x83\x78\xe5\x59\x37\xde\x16\xea\x36\xc8\x55\x6a\x26\x6e\x33\xcb\xd1\xd4\x87\xb2\x64\x96\x72\x23\xa5\x5e\x45\x5c\x14\x5c\x44\x96\xe5\x6d\x2b\xb1\x61\xed\xfd\x41\xa7\x61\xcc\x4b\xd9\x17\x63\xd1\x90\xac\x1f\xac\x03\x91\xb7\x8e\x35\x85\xef\x94\xd8\x17\x81\xfa\x01\xd3\x8f\xdc\x65\x07\x0c\x42\x42\xc7\xa6\xf6\x1e\xec\x8b\x58\xfc\xc1\xda\x23\x7e\x83\xb3\x10\x35\x51\x2a\x95\xa8\x81\xd2\x29\xd9\xd6\x7e\xe6\x6e\x65\x5d\x99\x5a\x50\x3b\x25\xdb\xad\x14\x97\x58\xaa\x13\x0d\xa5\x4f\x62\xb0\x3a\x80\xd2\x27\x2e\x00\x5a\x50\xf9\xa4\x27\xef\xeb\x41\xc7\xbb\x26\x05\xb9\x35\xe5\xf6\x93\xe3\x07\x35\x4f\xb2\x32\xf3\x4b\x64\x02\xa8\xca\x9f\x15\x5c\x5a\x30\xc1\xf1\x83\xfa\xfd\xd5\x75\xad\x6f\x89\x7b\xe3\x0b\x9a\xf2\x8e\x02\x9c\x12\x3a\x51\x35\x25\xd9\x22\x1a\x79\xa1\x92\x24\x44\x56\x41\x29\x46\x19\xee\x57\x0a\x36\x0d\xc4\x03\x39\x02\x66\x02\x30\xd2\xbe\x18\x19\xa5\x5a\x89\x39\xf1\xa0\xa6\xae\x35\x39\xa0\x8a\xf8\x08\xa5\x8d\xd6\xb6\x84\x78\xac\x3c\xfd\x4f\xfb\xdc\x30\x45\xb7\xb1\xc8\x3e\x62\x51\xc1\xaa\x99\xb4\x4f\x6e\x67\x1f\x37\x27\xfc\x0c\x12\xe4\x23\xc3\x0a\xac\xba\xe3\x7a\x35\x47\x01\x17\xde\xae\x96\x15\x3e\x57\x70\xbb\x5a\x52\xf2\x74\xe1\xf5\x6a\x2d\xbd\x1e\x30\xfa\xc8\x94\x89\xa8\x5c\x8b\x87\x11\x26\xdd\x60\x03\x44\x64\x18\xee\xe6\x41\x2f\x56\x2a\x35\x1b\xba\x50\x89\xcc\xb2\x05\xe3\x74\x6d\x50\x88\x30\xdb\xbe\x10\x77\xd1\x4a\xe7\xa3\x1c\x91\xba\xd1\xa7\x26\xaf\x71\xf3\xbc\xaf\x81\xd2\x8a\xfe\xfd\x00\xa6\x3d\xc0\xc9\x11\x85\xea\x0b\x27\x7d\xf6\x24\xc0\x8c\x7d\xca\x5e\xf0\xa6\x99\x98\x28\xe2\xfa\x4c\x5b\xb9\x4a\x86\x10\x66\xdf\x6a\xf6\x0f\xab\xaf\x6d\xe7\xf1\xe6\x06\xd0\x00\x14\x81\xa3\x19\xe5\x0d\xa5\xad\xbb\x83\xc6\xca\xd2\x6a\x77\x7e\xa0\x39\xde\x0c\xbe\xf4\x86\xbd\xb9\xc3\x4d\x3f\xf7\x9a\xb5\x80\x78\x68\xa9\xf4\x81\x40\x2b\xaf\x4d\x91\x91\xc1\x0b\x66\x54\x0f\xab\x02\x0b\x8a\x67\x2d\x9d\xc0\xa4\xd4\xeb\x33\xea\x59\x24\x29\xa8\x1e\x32\x6c\xb3\x02\x8a\xb5\x9e\x18\xae\x44\xa8\xcd\xf3\xa0\x95\xd7\x87\xd2\x83\x34\x0e\x0d\xc9\x6a\x45\x2a\x8f\x5d\x12\x92\xbe\x94\x6c\x5e\x90\x93\x9a\xa2\xcc\x57\xa8\x66\x34\x27\x19\xf4\x00\x52\x5b\xf6\x0b\x40\xbd\x0e\x5e\x14\x2f\x9a\x1a\x8f\x3f\x00\x7f\x17\x56\x50\x88\x28\x86\x28\xe6\x9a\x58\x9c\x79\x18\x84\x07\xc5\x93\xf5\x3b\x8b\x31\x6b\x8a\x29\x2c\xbc\x47\x3d\x48\xec\x51\x43\xc2\x46\xfc\x02\x01\xc2\xac\x7d\x02\x28\x5d\x94\x74\xb3\x43\x49\x94\x65\x6d\x49\x49\xb4\x11\x17\xbf\x80\x7a\xcc\xaf\x11\x0f\x7e\x20\x34\x22\x32\xa1\xf6\x17\xd0\x90\xaa\x8c\x47\x24\x82\x05\x9b\x4a\x12\x32\xc1\x86\x59\x74\x42\x4d\x66\x9f\xa4\x29\xd2\xe8\xd5\xd4\x4e\x80\xc1\xef\x67\xac\xa4\x10\x1f\xb9\x29\xa2\x1f\xa0\xc4\xaa\xb6\x21\x8b\x1d\x8d\xc9\xc3\x7f\x70\x08\xe1\x72\x41\x67\x50\x95\xc4\xd0\x01\x5d\x0e\x57\x50\x2a\xc9\xe9\x47\x85\xa5\x92\x46\x7c\x3d\x20\xc0\x42\x62\xa2\xe0\x28\xd3\x0a\x4a\x23\x39\x59\xa6\xa0\x32\x52\xca\xd2\xd7\x59\x19\x49\x17\xf5\x17\x14\x46\x7a\x89\xba\x28\x8c\x34\x41\x12\xca\xd2\x9a\xa1\x87\xa4\xea\x5a\xfd\x60\x6e\x87\xd7\xba\xe5\x0d\x20\x68\xc8\x1c\xde\x85\xba\x0b\x0a\x29\x85\xe6\x10\x14\x64\x64\xc7\x66\xd2\xca\x20\xb5\xe0\xdf\x59\xf9\x5b\x73\x84\x38\xae\x4b\x35\x0b\x8b\x2b\x0d\x93\x62\x66\xe5\x6f\x4d\x01\x85\x91\xf3\xab\x3f\x3a\x23\xaa\x21\xa4\x71\x47\x3b\x1c\xd5\x97\x1c\x9c\x5f\x50\x6d\x29\xd9\x39\x81\x6a\x4b\x51\x95\x72\x4b\x62\x24\xb1\x84\x71\xd6\x5a\xaa\xde\x9f\x28\x65\x6c\x99\x30\x41\x7a\x1f\x52\xfc\x12\x23\x19\x94\x54\x59\x12\xcc\xd3\x8a\xbe\x2b\xa9\x70\x73\x24\x3f\x38\xdf\xd5\xce\x4b\x82\xf0\x6e\xb9\x38\x21\xb2\xa1\x79\x77\x2d\x51\x5d\x62\x68\x82\xa8\x5e\xbb\xb1\x8e\xc0\x86\x61\xcf\x44\x5a\xd5\x19\x04\x53\x25\xe3\x34\x90\xf5\x77\x15\xd6\x4b\xaa\x44\xa3\xa7\x59\x17\xed\x08\xca\x4a\x28\x3d\x04\x6a\x26\x9a\x12\xda\xba\x1d\x52\xed\x75\xab\xbd\xda\x11\xfb\x53\x23\x36\xc6\x3d\x0a\x2b\xb0\x59\x57\x53\x06\x4c\xd6\xc3\xfb\xab\x21\xd5\xd4\x6c\xb2\xb1\xa4\xa6\xb0\xc6\x6c\xb9\x37\x00\x14\x47\x8c\x77\xc4\x19\x2b\x44\xbc\xa0\x06\x56\x48\xba\xff\xbc\xa4\xb6\xaa\x88\x7b\x0c\xd4\xa2\x94\x60\x9c\x60\xb3\x4e\x66\xac\x9d\x9c\xd6\xc4\xd4\x51\x27\x5a\xfa\x70\xe2\xdd\x20\x3e\x89\x79\xdb\x67\xb0\xed\x31\xa1\x6e\x61\xf6\xca\x31\xe3\xcd\x22\x11\x0a\x6b\x65\x0b\xbb\x28\xa4\x95\x86\xe9\x75\x70\xde\xde\x32\xa8\x10\x32\xbc\x43\x10\x76\x5b\xbb\xe9\x09\xc2\x78\xf7\x01\xb3\x63\xd3\x9b\x09\xa0\x90\x4e\xb0\xf1\x32\x2d\x81\xdb\xb8\xde\xb1\xcb\xcd\x5a\x77\xc2\x28\x98\x76\x24\x39\x98\x57\x43\xdc\xde\xac\x92\xf0\xea\xad\x61\x19\x2a\xf1\x1a\x8f\xf4\x7a\x03\x35\x3a\xbb\x61\x00\xf9\x49\x0e\x4c\x0c\xe5\xb5\xcc\x83\xfa\x5e\xd9\xde\x59\xd6\xf3\xb2\x37\x3e\xb1\xbc\x82\x8f\xcd\x63\x4d\x4a\x3d\x32\x8e\xc2\x26\xd8\x74\xd4\xf7\x2d\x03\x25\x1d\x6b\x13\xf9\x01\xcf\x49\x9f\x51\xc7\x9a\x96\x10\x73\x50\x1e\xf1\x0b\x14\xeb\x4d\xe5\xa8\xde\xd2\x52\xfa\xc9\xad\x43\x25\xf1\xc6\x10\x4b\x65\x89\x86\xe9\xe6\x36\xce\x18\x1f\x29\x67\x7f\x5f\x8c\x50\xd2\xc9\x85\x90\x9e\x91\x68\x66\x96\xdd\x0b\x45\xcb\x52\x97\xb6\x89\xa2\x65\xb1\x99\x2d\xc0\xca\x9c\x4d\x9d\xb8\x24\xd6\xfe\xeb\xb4\x24\x7a\x79\xbc\x51\xd5\x2c\x3a\x5c\x94\xb7\xc0\x36\x47\x0b\x24\x24\xd2\xbd\x68\x07\x71\xbf\x0e\x14\x4a\x17\x55\x35\x41\x78\x31\x24\xcb\x38\xbd\x50\x2b\xde\xc7\xe4\x14\xc7\xbb\xed\x6a\xe9\xe2\x96\xcb\xee\xf1\x61\xdd\x30\x4d\x02\xa9\x73\xc3\x72\x66\x82\x44\x6e\x7b\x62\x82\x40\xde\x4c\x9c\x77\x7a\xdf\x2f\x51\xd2\xbd\xea\x7b\xa9\xcd\x3a\x5b\xfe\x9d\xb6\x92\xe6\x17\xa8\x90\x5a\x6c\xbc\x71\xf6\x9b\x18\x6f\x64\x84\xbf\x40\xdc\xd1\xd6\x3a\x20\xf5\xae\x9a\x9a\x21\x9e\x67\xa3\x1d\x46\xeb\x17\x16\x11\xb4\xf1\xda\xc1\x08\xda\xb0\x0b\x1f\x75\x53\xa2\xca\x63\x96\x34\x85\xf9\x68\x9b\x41\x82\x0d\xfb\x25\xf6\xc2\x84\xfd\x12\xdf\x56\x0d\x34\x13\xc2\xc3\x0c\xb0\xe6\x37\x80\x83\xd7\x08\x10\x8c\xcd\x64\x9e\x8e\x11\xdc\x86\x8c\xa9\xcd\x86\xcb\x81\x5f\xb1\x59\x99\x79\x73\xb6\x32\x67\xc6\x6b\x68\x8a\x19\xe1\x1a\x46\x09\x2a\xc1\x44\x15\xf0\x2c\x19\x45\x43\x55\x74\xa4\x64\xdc\xb0\xa2\x94\xd2\x92\xb7\x75\xfd\x96\xda\x48\x6e\xde\x0c\x00\x9c\xe5\x9a\x50\x46\x8c\xb1\x92\xa9\x4b\x46\x12\xdd\x30\xc0\x48\xa2\x73\xbc\x62\xa6\xdc\xae\xad\x95\x03\x6b\x50\xeb\xd0\xce\x81\xba\x46\xf4\x1b\x54\xca\x64\xf7\xce\x08\xcd\xb0\x7e\x9d\x03\x56\x5d\xab\x9a\x03\xfd\xf7\x92\x45\x72\x60\xe1\x35\xe1\x28\xe2\xce\x26\x49\xb5\x39\x92\xf5\x8b\x1f\xe4\xb8\xd6\x55\xb3\x44\x41\x06\x2b\xbb\x79\x45\xf8\x36\x77\x49\x63\x91\xb6\x5b\x46\x14\xef\xbb\x4d\x26\x19\xdd\x05\x2a\xfd\x55\x8f\x09\x5a\xcd\xee\x91\x3c\x45\xdb\x31\x33\x4f\xcf\xfa\x49\x46\x34\x48\xb2\x68\x9c\x91\x86\xf7\x82\x7a\x5d\x40\xe2\x1e\x06\x0e\x28\xad\xcd\x14\xa5\x93\x3d\x18\x19\x91\x1d\x8e\xdb\xc9\x89\x88\x75\xff\x58\xeb\xec\xfe\xb0\x9d\x6c\x34\xc8\x14\xa4\x8d\x26\x56\x68\xd0\x49\x91\xf3\x2a\x55\x28\x08\x32\x95\x61\x99\xa0\x32\x62\x3f\xaa\xc9\x3b\x93\x65\x78\xed\xa6\xe8\x9c\x54\x03\xa5\x64\x06\x7f\xbc\x86\x60\x49\x71\x77\x70\x12\x6b\xee\x80\xa1\xfe\x3f\x2a\x90\x50\x72\xe6\xaa\x18\xe0\xb5\x2a\x1a\x1f\x82\xf6\x6b\x95\x60\x18\x77\xce\x75\xc9\x85\x8c\x58\x87\x4b\x2e\xd0\xa9\xfc\x45\xa5\x76\x61\x90\x97\x0d\x5a\xc6\xfa\xbc\x8c\xce\x92\x2a\x73\x5d\x58\x11\x58\x08\xc4\x78\xad\x7c\xa5\x78\x6e\xd2\xa8\x30\x19\x98\xaf\xd4\x25\x79\xf8\x01\xed\xd4\xde\x65\x48\x89\x4b\x9e\x28\xcc\xd0\x76\xd6\x65\xd4\x6d\x30\xb7\xcf\x8d\xde\xbc\xe6\x07\x10\x97\x5e\x1d\x82\x3a\x0d\x12\x45\x5b\xaf\x2c\x05\x55\xcf\xba\xad\xfc\x5d\xb5\xc9\x79\x84\x04\xd4\x81\xa8\xdd\xdb\xb8\x13\x62\x01\xc0\x90\x5f\xfb\x07\xf2\x12\x5c\xcd\x18\xa6\xe0\xfa\x32\x01\x67\x9a\xa9\x6d\xbd\xcf\x9d\x30\xbb\x07\x96\x2d\xd8\xfc\xc2\x42\xb4\xd0\x84\x0c\xb9\x2c\xb9\x34\xa3\x58\x84\xa3\x8a\x33\xa2\x2f\x1c\xe1\x9d\x57\xb1\x08\x89\x7c\x19\xc5\x22\x92\x79\x51\x27\xb9\xe8\x77\xdc\x9a\x67\x7b\x24\x2a\x6a\x4d\x08\x84\x17\x18\xba\xed\xe4\xcb\x0c\x21\x7e\xf5\xb8\x42\x88\xbd\xef\x61\xb7\xb6\x78\x93\x99\x91\x66\x97\x42\xde\x29\xaf\x99\x66\x57\xc4\x85\x2c\xbb\x19\x11\x17\x56\x2a\xf2\x0e\xcc\xea\x1c\xcc\x94\x9d\x0d\xe4\x2a\x49\x6a\x72\xda\x1b\xf7\xa9\x10\xb9\x43\x36\xf0\xc1\x82\x92\xdf\x39\x18\x84\xc5\x50\xdd\x25\xe8\xc7\x98\x45\x08\xf2\xe6\xf8\xed\xbc\x2f\x54\xbb\x0b\x16\x4a\x35\x09\x4e\xf1\x3a\xdb\xbc\x9c\x8f\xc5\x72\x85\x88\x03\xc7\xaf\x4f\x33\xde\x90\xe7\xd3\x72\x09\xcb\xde\x35\x07\x66\x61\xf2\x58\x65\x28\x64\x0c\xce\x07\xf5\x35\x2f\x17\x84\xe7\xe1\xd8\x13\x54\x91\xcd\xc9\x1c\xef\x60\x1d\x7f\x11\xc4\x01\x82\x31\x13\x3e\x18\x08\x26\xe1\x33\x43\xda\x0e\xee\x70\xca\xd3\x49\xb7\x3f\x96\x8c\x38\x67\x8b\x69\x99\x75\x2b\x5e\x3b\xf1\xe4\x36\x71\x07\x8b\x80\xdc\x03\xb6\xb2\xf7\xd5\xc9\xb5\x13\x88\x10\xc0\x83\x77\xea\xc9\x23\xfd\xd5\xe3\x5a\x1a\x61\x81\x37\x3b\x58\xd1\xce\x17\xbb\xd4\x0b\x37\x2d\x51\x1e\x83\xd2\xab\x89\xf8\xc6\xac\x0c\xe3\x94\x35\x5b\xb3\x9c\x71\xc3\xe0\x6d\xc1\xe9\x26\x3d\x25\x77\x40\x8e\x68\x86\x45\xe9\xd2\x4b\x47\xe9\xd2\xe4\x74\xf3\xfa\x25\xb3\x13\xd6\x75\x78\xed\xd5\x07\xe9\x54\xa6\xe1\x15\x12\xf1\xa3\xfb\x87\x4a\x5e\x86\x61\x6f\x09\x0a\x8b\x5e\xe8\x87\x67\x5d\xf2\x78\x84\xd8\x6d\x9e\x45\xde\x23\x48\x6b\xd3\x0d\x1f\xa5\x40\x7a\x74\x18\x52\x61\x0c\x83\xcd\x3c\x85\x57\xb0\x0b\xab\x05\x86\x5e\x15\xce\x2d\xac\xcd\x37\x6c\xf6\x29\x90\x37\x9b\x77\x40\xd9\x68\x8d\xeb\x1e\x03\x0c\x4e\x0c\xb0\x50\x62\x14\x31\x15\x04\x29\x98\x5b\x95\xb0\x60\x2a\x7a\x80\xd2\xf9\xe2\x1c\x25\x92\x95\x24\x3f\x58\x4b\xdb\xf4\x80\xa7\x9f\x3c\xfa\x85\xc2\x97\x8c\xf4\x05\x35\x13\x74\x13\x59\x29\x88\xcc\xcd\x92\xe6\x4a\xa2\x18\xae\x4d\x57\x68\xe6\x1c\x7e\x81\x8a\x80\xdc\x1d\x05\x29\x55\xe3\x85\x5a\xda\x3d\x65\x71\x2b\x08\x12\xf0\x0e\x28\x89\x06\xb4\xe6\x17\x16\x3d\xfa\x0d\xaa\xd5\xcd\x0f\xe6\xf2\xaa\x74\x76\x29\x14\xc7\x8c\xe9\xbc\xe8\xd1\x0f\x90\x85\x23\xb3\x7d\xa1\x1d\x53\xb6\xd5\x82\x92\x08\xba\x8f\xa5\x14\x16\xcc\xf2\xc6\x2e\x99\xc7\x5f\x73\x8f\xd4\x53\x8d\x49\x04\xdb\xbe\xf0\x90\x17\xd0\x42\x7d\x66\x89\x29\x2d\x77\xd9\x78\xc4\x6a\xd0\x42\x26\x2c\x95\xa2\x20\x0f\xab\x8b\x01\x16\x46\x16\xd8\x6a\x52\x0a\xc7\x8c\x6a\x63\x1b\xc8\xf4\x83\xeb\xc9\x5b\x35\x51\xaf\x1a\x04\xfe\xa0\x06\xba\x2f\xf4\x45\xc5\xf2\x9a\x5e\x58\x93\xc0\x87\x4d\xa9\x5c\x5e\xc9\xca\x05\xd2\x8c\x43\xdf\x0a\x2e\xeb\xb2\x7e\x5e\x1a\x23\x06\x9b\x5f\xc0\x6d\x8d\x92\x2c\x0a\xf3\xff\xed\xdb\x2c\x10\x6f\xec\xde\x2d\x3d\x10\x51\x5a\xfe\xe5\x96\x37\x51\x4e\x79\x27\xdb\x8c\x5c\x70\x61\x57\x33\x22\x3b\x1c\xc6\xc1\xef\x37\xbc\xaf\x49\x75\xfa\x3e\x65\x75\xc3\x3d\xec\x61\x78\xd6\xa8\x8c\x65\x27\x21\xee\x61\x4f\xdb\x66\x90\xb9\xd7\x4d\x60\x9d\xf6\x2b\x69\x08\x85\x15\xc0\x7d\xba\x15\xd6\xc2\xb2\x75\xa9\x30\xbf\xdf\xee\xd3\xb2\x6c\x85\x52\x43\x0a\xab\x5f\xd9\xb7\x59\x90\xb3\x6f\xa3\x6b\x41\xf5\x2b\xfb\xe5\x0b\x6c\x85\x0e\x40\x2d\xc8\x80\x2a\x26\x62\xd8\x0e\xb3\xf1\x38\xb8\x34\x42\xf4\xa0\x98\xa0\xef\xf7\x05\xa2\x06\xdc\x17\x88\x82\x19\xd2\x4d\xf7\xc6\x83\x70\x63\x61\xa6\x4c\xe1\x26\x5b\x02\xc3\x95\xf2\x51\xb7\x0a\x17\xde\x28\xef\x40\xcb\x82\x9b\xaf\x1c\x02\x5f\xf6\x65\xed\xf4\x00\x04\x59\xed\x83\x69\xde\x02\xe8\x58\x68\xd6\x1c\x79\xe7\x7c\xf9\x91\x5b\xa8\x1c\x3c\xe9\xcc\x93\x4f\x0a\xa1\xe6\x5e\xcc\x95\x72\xfc\x60\x81\x0c\x91\x83\x5f\x28\x68\x6b\xfc\x73\x6d\x20\xbf\x00\x62\x34\xad\x9d\x3c\x48\xba\x1f\x90\x41\x9a\xbd\x9d\x64\x90\xde\x31\x10\x22\xaa\x33\x0d\xca\xf2\xab\x9b\x96\xae\xb5\x65\xd4\xc7\xb5\xe0\xf6\x03\xc0\x2d\x6b\x04\x0a\xe3\xe7\xd7\x89\x79\x51\x5c\xcb\x1e\x03\x1b\x3d\xb8\x03\x6e\x74\x53\xe7\xb2\xcc\x99\x45\x22\x25\x3f\x4b\x1e\x2b\x37\x81\x32\x32\x51\xb2\xca\xae\x4e\x5c\xa1\x9f\x1d\x64\x57\xee\x85\x1a\x3f\xa0\x20\xe0\x63\xf9\xa6\x38\xe5\xa3\x61\xb9\xad\xa5\x14\x94\x87\xf8\xf7\x91\x87\x0a\x52\x39\xfa\x05\x9e\xec\x92\xd8\x0b\x72\x8f\x54\xd7\xba\x14\x08\x1b\xba\xb9\xa0\x14\xc4\x4f\x66\x33\xf6\x87\x0c\x4d\x5c\xb6\x2e\xe1\x42\xe2\x37\x6e\xea\x8f\x43\xd2\x76\xdd\x78\xdc\xbc\xbe\x58\x0c\xa9\xea\x01\x02\x3e\x85\xfc\xca\x9c\x79\xd5\x70\x2e\x95\x35\x9f\xac\xaf\xb3\xc8\x6e\xf3\x19\x87\x5b\x0a\xb2\x43\x4c\x2a\x52\x89\x2c\xd2\xd7\x40\xdf\x9d\x80\x42\x02\xbb\x65\x89\x4a\x2f\xb1\x7d\xdf\x15\xd7\xf4\xaa\xd2\x72\xa9\x28\xec\x5a\xbc\x3a\x75\xd9\x8a\x74\x26\xd6\xc8\xfb\xbe\x05\x74\x5c\xcb\xe7\x2f\x40\x21\x1e\x33\xad\x49\xe8\x0b\xc8\x27\x8e\x4f\xaf\x48\x1c\xea\x9e\x14\x4b\x3a\xd9\xff\x5e\x71\xb7\xad\x43\x81\x2a\x63\x1c\x6d\x30\xa8\xb0\x25\xe5\x57\x8f\xb4\x78\x89\x89\x56\xc8\x2f\xaa\x1f\x5d\x6a\xa2\x47\xa6\xba\x4b\x16\x42\x09\xee\x92\x9e\xda\xe1\x69\x70\x6b\xbc\xa0\xe2\x15\xf1\xe2\x6b\x35\xaf\x89\xea\x93\x4c\x46\xa3\xb3\xbc\xe6\x39\x53\x5d\x29\x57\x2a\x44\x96\x60\xb7\x7f\x5d\x32\xcb\xeb\x8b\xc1\x41\xfc\xc6\xc1\x07\xee\xe3\x9c\xaa\x82\xb1\x97\x49\x44\xd5\x2f\x90\xb4\xdd\xe5\x82\x5b\x44\x83\xd4\xf1\x2c\x95\xab\x4e\x91\xa5\x39\x45\xa9\x16\x1e\x10\xaf\x07\xbc\xd0\x5d\x98\x28\x54\x4d\x8d\x6e\x66\xf3\xbc\x50\x53\xb9\x82\xfa\x82\x46\x22\x4b\x1c\x15\xa5\xe9\x55\xe0\xb0\xd4\xba\xe6\x2d\x42\x45\xa8\xa2\x43\x03\x6a\x05\xe1\x26\xff\x0e\x4e\x26\x89\xb5\xf2\x5e\x83\x17\xe2\xea\x9a\xb6\x60\xc0\x8d\xa8\x45\x2c\xba\x22\xf4\x30\x38\x3c\xa0\x22\xad\xbb\xf8\xa0\xab\x48\xb9\xf1\x31\x54\x71\xe7\xe9\x6b\x12\x14\x7a\xf2\x8f\x22\xb6\x6b\x67\x52\x85\xe1\xe9\x8b\xaa\xdd\x1d\xa8\x5a\x52\x5a\x45\x18\xa2\x1d\xf3\x95\x39\xdf\xaf\x85\xa4\x84\x63\xf2\xa2\x39\xc7\xe1\x0a\x15\x71\x88\xed\x0d\x31\xf6\xaa\x67\x84\xb0\x42\x1b\xe4\x2b\xcc\x31\x2f\x49\x10\x57\x9c\xb4\x5a\xfc\x02\x44\x68\x8b\x6d\x75\x2c\xbc\xbb\x4b\x9e\x6b\xc6\x22\x03\x0d\x6d\xb7\xaa\x3b\xd1\xa6\x69\xe0\x26\x4f\x47\x0c\x55\x98\x63\x2c\xd8\xd7\x9d\xdc\xbf\xfa\x41\xe3\x3c\xb5\xf8\xfb\xc2\x8c\xdf\x18\x04\x42\xa8\xd9\x17\x6a\x34\x31\xca\x20\x3a\xd1\x2b\x6f\x20\xb0\xd4\x53\x59\x88\xc8\x82\x55\x3d\xe8\xe2\x7f\xbd\x41\xe4\xa9\xcb\x83\xeb\x27\xa8\x58\x99\xc8\xc6\xaf\x0a\x63\x49\xd6\x39\x57\x8f\x9b\x79\x36\x42\x26\x8c\x21\xae\x91\x59\x2a\x42\x08\xb3\x0e\xc2\x0a\x6b\x88\x2e\x8d\x2e\x15\xce\x45\xdd\x51\x5c\xea\xb9\xae\xb9\x11\x0c\x30\x76\x64\x9f\x62\x27\xf7\x99\x44\x84\x7a\xee\x08\x5b\x76\x8f\x44\x94\x57\x83\x77\x57\xd8\xde\x56\xcf\xb5\xe2\x9a\xf7\xc9\xab\xdc\x0d\xf4\x5a\x70\xbd\x70\x6d\xec\x53\xd3\xb8\x38\x2d\x21\xe6\xe2\x34\x34\x04\xe2\x01\xb3\x8f\x18\xd8\x57\xec\x75\xa9\x17\xd9\xb9\xa1\xbe\x60\x41\x36\x1d\xa3\x72\xa7\x23\x97\x2a\x03\x04\x1d\x82\x52\x21\xf8\xbc\x44\xbc\x7a\xd1\x2f\xe3\x36\xaf\xf2\xf1\xda\xc0\x23\x69\x9f\x7e\x65\x88\xa0\x0d\x1e\x15\x82\xd0\x30\xd9\xde\x74\x76\x79\x31\x79\x4d\xcf\x8b\xbf\xdc\x14\xcf\x9a\xfb\x24\x2f\x97\x68\x5d\x61\xc5\xc9\x3e\xf8\xe0\x13\xdc\xbc\x16\x4b\x52\xf2\xe9\x8c\x00\x3f\x27\xd0\x56\x5c\xa2\xe2\x2c\xc3\x4a\xb9\xc8\xe7\xe0\xc3\xd0\x65\x4d\x7b\xca\x49\x71\x33\x89\x3e\x60\x18\x3a\x0a\xda\x86\xbd\xab\xc3\xa6\x6d\xa8\x46\x93\xdc\xc6\x9e\x10\x4f\x6b\xcc\xbf\xb6\x2d\xa2\x21\xd6\x2e\x6b\x2f\xb7\x8d\x00\xf9\xf7\xc5\x60\x9a\x1e\x80\xf1\x57\xb7\x49\x8f\xcd\x3d\x40\xb4\x13\x4e\xda\xba\xba\xe0\x43\x3c\x2d\x04\xae\xbd\x1f\x44\xc4\x31\x08\xe6\x00\xea\x7b\x7d\x40\x26\x28\x29\xb9\x51\xea\x12\x52\x1b\xf2\xb5\xb3\xa8\xaf\xa1\x0c\xa6\x2e\x8a\x2a\x2d\xac\x65\x74\x8f\x0f\x62\x99\x05\x72\xe4\x86\x10\x41\x37\x44\xd2\xa5\xa1\x8d\xde\x98\x9a\xe2\xb8\x96\x16\x19\xc5\xee\x59\x44\x02\x25\x4c\xc3\xb0\x14\x7e\x74\xa1\x5e\x69\x91\x56\x09\x21\x95\x35\xdb\x4d\xab\x2d\xee\x1c\xdf\xdd\x13\xed\xdd\x20\xe3\x9a\x85\x60\x00\x29\xc5\x77\x3f\xe0\x01\xec\x49\x22\x3e\xcf\x61\xf3\x0d\xb9\xdb\x0e\xa6\x6b\xe9\xe1\x98\xa2\x05\x98\x88\xb2\xd1\x98\x17\x52\xd4\x5e\x16\x1f\xb5\x71\x65\x7d\xf7\xf7\x27\x21\xd0\xc2\x64\xb2\x2e\x83\x44\x59\xa9\xb9\x07\x90\xbb\x27\xc9\x22\x98\x92\xf0\x1a\xcd\x3d\x5e\xe9\xb2\x20\x12\xde\x0a\x1d\x01\x6e\x93\x17\x4a\xa9\x6b\x15\xac\xef\xd5\x5e\x3d\x68\x08\x38\xd8\x36\x53\x63\x2d\xe8\xd1\xbf\x53\x0f\xf1\xef\x3c\x0c\x25\xef\xb5\x4a\x36\x23\xe5\xa8\x21\xb0\x2c\x7b\x61\x2a\xbd\xea\xfe\x9d\x6c\xc8\x78\x5b\x81\x66\x32\x19\x34\x96\xa8\x4c\xaf\x41\xc9\x1d\x8d\x59\x84\x9a\xbd\x14\xaa\xc6\x22\x3b\x0e\x4b\x6c\xc8\xec\xa8\x2e\x16\xd2\x58\x85\x32\x49\xcc\x6f\x8d\x96\x50\xa9\x96\x0d\x19\xcd\xcd\x5a\x5c\x6b\x8c\x61\x15\xbb\x6a\x4c\x69\x76\xf9\xa8\xd6\xb8\x80\x7a\xa1\x2f\x30\x04\x28\xee\x8d\xaf\x92\x54\x5b\xa7\x4e\x2d\x45\xbd\x21\xd9\x23\x77\x7f\x40\xec\x09\x17\x48\x59\xb6\x14\xd0\xfa\x22\x32\x0d\x89\x8c\xe2\xec\x59\x0c\x0a\x7e\x52\x46\xda\xa0\xe0\x29\xd9\xb5\x0d\x32\x49\x29\x61\x6d\x2c\xd4\xb8\x4f\x5e\x4e\x67\x6c\x8e\x35\xaa\xc0\xa2\x5b\xcc\xe1\x2a\x8d\x52\x96\xe7\xb5\x2f\x4c\x08\x2e\x16\xce\x31\x03\xd9\x99\x73\xe2\x0f\xc0\xca\xa5\x08\xb6\x25\x75\x49\x24\x6f\x4b\xea\x32\x6e\x77\x82\x9d\xfd\x09\x04\x54\x19\x13\xda\x4e\x5f\x9e\x87\x20\xcf\xf0\x18\x88\x18\xd3\xf5\x3a\xa5\x1d\xc4\xa5\x86\x44\x66\xf1\x4b\xaf\x6f\x8c\xde\xb2\x57\xbf\x9d\x9c\xb6\x7a\xa0\x84\x24\x8d\xba\xa1\xac\xb9\x6e\xf4\x29\xed\x6c\x13\x24\x73\x04\x5c\x19\xf9\x62\xb3\x88\xbe\x6a\x46\x3c\xed\x38\x56\x6d\xda\xc9\xfb\x33\xb4\x54\x27\x3d\xbf\xde\xb0\x34\xd2\x48\xb2\x68\x17\xe5\x7e\x63\xe5\x22\x48\x1a\x92\x37\xc3\x59\x7b\x6d\x53\x7a\x49\x16\x13\xdb\xb5\x26\xad\x49\x42\x78\x69\xd6\x96\x1a\xa4\x17\x27\x24\xb5\x29\xbc\xa4\x62\x1e\x71\x93\x18\x24\xfe\x36\xe4\x33\x14\x6f\x0b\x08\x2f\xd5\x51\xf9\xeb\x9a\x9d\xfc\xea\x82\x44\xeb\xb5\xba\xd7\xea\x0b\xd5\x37\x65\xac\xf8\xa3\x40\xba\xc6\xba\xe3\x56\x7f\x70\x89\x61\x2c\xa6\x2e\x44\x27\xd9\xa1\xd0\x1e\x92\x9f\xb1\x30\x65\x9b\xf4\x9a\x13\x64\x1b\xa7\xb4\xb6\x87\xec\xc4\x00\xb2\xd2\xa2\xb1\xc6\x5b\x12\xad\x0e\x35\xba\xa4\xd2\xeb\x01\xcf\x34\xf1\x1b\xdc\xa3\x98\x9a\xc8\xa5\x33\x39\x41\x4b\xd5\x91\x87\xeb\xfa\xa8\xa5\xc3\x89\xd5\xf2\xeb\x01\x6f\x16\xf2\x17\xa8\x03\x21\x89\xab\xb3\xd6\xb8\xc3\x27\xfa\x46\x11\x3e\xf9\x0d\xee\xb2\xae\x36\x4a\xb0\x4a\x13\xee\x4c\x67\x70\x0c\x52\x5f\x76\x27\x6d\x8a\x3e\x25\x9e\xe8\x42\x5f\x3d\x0c\xf4\xe0\x36\x95\x02\xa9\x3a\x1d\x51\x4d\x65\x73\x07\x24\x40\x03\x19\xc8\x8e\xa4\xa9\xf4\xc8\x03\x42\x44\xdd\x51\x91\x46\x37\x67\x94\x8e\xdc\x5b\x5d\xd6\x51\x3a\x73\x6d\x6d\x2d\xeb\x91\xdb\x22\xfb\x0d\x5a\xca\xfd\x02\xb7\x85\x84\x57\xdc\x69\xd9\x2c\x22\x75\xde\x53\x2f\xd6\xde\x13\xee\x8d\xf0\xfb\xc8\x0f\x78\x19\x19\x3a\x2a\xd8\xd8\x19\xdd\x53\x99\xca\x52\x71\x07\x14\x9b\x8c\x59\x26\xcf\x7a\x92\x08\x52\x72\x96\x4f\x5f\x22\x8e\x31\x9d\xb1\x31\x25\x60\xf4\x8c\xa4\x35\x63\x25\x73\x04\xe3\x31\xb3\x04\xbb\x40\xca\x5c\x6c\x77\x40\xfe\xe4\x49\x2d\xfb\xd0\x70\x97\x14\x49\xdc\x45\xa1\x34\xea\x69\x4d\x29\x27\x36\xcf\x0a\x15\x64\x9c\x8e\xd5\x4b\x86\x13\x54\x3d\x16\x1e\x68\xb2\x12\x74\x04\xe8\x7b\x63\xf5\x82\xda\x25\xd5\x23\x22\x8d\xc2\xb3\x44\x7c\xbe\x53\xf3\x3a\xc3\x92\x5e\xbf\x2f\x90\x35\xcb\x29\x45\xb5\xe6\x49\xa2\x7a\x8c\xaa\x4b\x97\x5e\x17\xfb\x52\x8f\x8c\xb6\xb7\x26\xdd\x79\x17\x8c\xc3\x2b\x7a\x65\x7a\xbe\xe6\x80\x72\x31\xaa\x55\x5b\xfa\x12\x8a\xbc\xcd\x10\x83\x54\x36\xb7\x09\x83\x3a\x80\x7d\xc9\xf6\xa6\xde\xd6\x88\x02\xb2\x61\x97\x05\xbf\xc0\x33\x3d\xf9\x05\x44\xf2\x0e\xbf\xb0\xd0\xa0\x59\xf5\xb5\xa9\x84\x17\xb8\xdd\x86\x33\x93\x3a\x4b\xb8\x98\x17\xa0\xb0\xa0\xbd\x4b\xbd\xd3\x50\xe2\x69\xb2\x48\xb6\x03\x95\x3a\x2f\xfb\xb4\x09\xa1\x0f\x16\x20\xd5\x17\x83\x1c\x4d\xda\x7b\x1f\xb4\x72\x56\xbf\x81\x84\xef\xe0\x1e\x3a\xa1\x14\x54\x03\x95\x25\xc5\xc9\xfb\x32\x2a\x19\x08\xdc\xca\x6f\x71\xb3\xc3\xc9\xe5\x43\xb7\xef\x6b\x48\x21\x1f\x35\x51\x9a\x6c\x14\x7d\x5f\x4c\xf3\x27\xd7\xe1\x95\xce\x8a\x81\xd6\xbb\x3b\xab\x5a\x9b\x11\xc0\x7a\x54\xa4\x9d\x75\x56\x0c\xb4\x5e\xdd\x19\xea\x2e\x71\xb8\x4f\x41\x26\x15\xb3\x1e\x84\xde\x14\xa3\xfd\x20\x2d\xf8\xfd\x1d\x6d\x2d\xec\x41\x00\x34\x1f\x14\x50\x19\xce\xf7\xea\xb0\x25\x6d\x3e\x46\x10\x47\x53\x8d\x00\x86\xa5\x3b\xd4\xa1\x33\x90\xc6\xaa\x7d\x67\x3a\xaa\xc3\xa4\x3a\xbc\x60\x45\x7a\x44\x3f\x51\xb5\xc3\xfc\x97\x45\xae\xed\xf3\xef\x27\x79\x93\xdb\x27\xd8\xa7\xdb\x5c\x56\xaf\x12\x7c\x60\x2f\x2b\x6f\x67\xb2\xa9\x85\x80\x0e\x4b\x51\x31\x1e\x2f\x46\xe4\x1a\x28\x98\x8e\x8a\x29\xe3\x5a\x21\xc6\x5a\x09\x54\x50\x79\xd1\xd6\xb5\x48\x45\xe4\x0a\x63\x53\x91\xfc\xde\x2f\x2e\x8d\xa0\xbe\xb0\x34\x92\xb4\x3b\xa3\xdd\xf3\xab\xc7\x13\x2f\x78\x12\x3c\x87\xaa\x1f\x80\x5a\x82\x47\x04\xf5\x4a\xf1\xe9\x37\xa3\x0a\x3c\x89\x25\x9e\x79\x35\xe9\x75\xb3\x99\xa4\xc3\xcb\x56\x92\x5f\xe0\x5a\x69\x08\x96\x0c\xb4\xac\xd3\x6f\x5a\xc4\x84\x48\x44\xa7\xbf\x08\x12\x85\xb1\x5d\xbe\xa0\xdf\x84\x51\x93\x84\xe5\xa9\x9a\x79\x3d\x2c\xac\xa6\x39\x20\x7a\xe8\x75\x04\x4c\x69\x2d\x6d\xa6\x2e\x18\x9e\x8a\x4f\x46\x84\x07\x59\xba\x1b\x1b\xb8\xa7\xb4\x8f\xb1\x2e\xec\xae\x7e\xc0\x75\x93\x15\x66\x6c\xc8\x75\x16\x75\x8d\x8d\x3d\x0e\xb5\x91\x24\xac\x75\x1d\x1b\xd9\xab\x84\xb9\xb1\x91\x1c\x85\xe5\x01\xcb\x91\x65\x96\x81\xb4\x4e\xdd\xcb\x59\x46\x20\xa7\x33\x08\x53\x6e\x4a\x5d\x16\x8c\x11\xd6\x5d\x94\x6a\x23\x8c\x26\xf8\xf7\x81\xcc\x8b\xaa\xf6\x8e\x1b\x8b\x34\x05\x78\xe7\x4a\x76\xff\x27\x72\x97\xdc\x26\x65\x69\x95\x06\x53\x34\x9d\x72\x39\xe2\xa2\x1c\xcd\x3a\x46\xa4\x4e\x6b\x48\xd8\x91\x86\xcf\xb9\x11\xd7\x86\xf1\x17\x20\xa5\xec\x2e\xc1\xbd\xa5\xcf\x0e\xda\x8e\xd2\xab\xcb\x81\x93\x52\x50\x46\xce\x4a\xb3\x46\x4d\x68\xef\x8f\x01\x4b\x91\x4d\xf1\x63\x19\x8a\x24\x3c\x0e\x26\x72\x3a\x9e\x6e\x24\xa6\x3e\xa8\xc7\x04\x62\x79\x7d\x40\x29\xfb\xf5\x02\x8c\x61\x32\xac\x0e\xf8\x03\x8b\x11\x0d\xc1\xcd\xb7\x5d\x95\x91\x16\x2d\x08\x2d\x09\x7b\xd6\x93\x58\x92\x9b\xac\x28\x23\x73\x4c\x9d\xef\x03\x95\x03\x6d\xe9\x19\x79\x5d\x17\x2f\x28\x61\xae\x2a\x3f\x2b\xf0\x33\x10\x4a\x6e\xd7\xf0\xc8\xa0\xf6\xe2\xd1\x00\xdf\xab\xfd\x60\xff\x6a\x15\xe1\xe4\x2b\x92\x90\x06\x2c\x57\xb6\xbe\x8c\x65\xb9\x12\x03\x18\x05\x59\x6f\x62\x73\x03\x42\x9e\xfd\x8c\x03\xf5\xa4\x1d\x4c\x37\x28\xe3\x89\xf9\x0f\x5c\x06\x58\x8a\x07\x18\x24\x34\x43\x84\xfd\x59\x3c\x20\xf7\xa7\x3b\x40\x92\x90\x58\xd8\xa0\x10\xe8\x78\x88\x51\x68\x74\x92\x3d\x70\x54\xce\x51\x20\x33\x2b\xd3\x1a\xc2\xa0\x58\x28\xd1\x65\x54\xce\xd1\x1d\xe0\x46\x1a\x09\xb6\xa3\xe2\x28\x28\xfe\xbe\xc3\xbd\xee\xf7\xc1\xc4\x8a\xdb\x4c\x01\x72\xff\xd4\x93\xba\x1f\xe0\x68\x90\x68\x34\x2a\x55\x62\x93\x55\xc5\x75\x18\xde\x5c\x75\x91\x99\xe6\xd4\xd6\x3a\xe9\x0d\x24\x69\x5a\xfb\x1b\x70\x6b\xba\xa4\xde\x40\xed\xe9\x22\xd1\x65\xb4\xb5\x0e\xee\x71\x01\x29\x18\x1a\x55\x06\x93\x02\xc2\xbf\x5c\xc7\x6c\x74\x1c\xc2\x12\x6e\x46\x87\x92\x6b\x90\xa6\x90\x99\x7c\x20\x0e\xa6\x5c\x7a\xe5\x3b\xca\x79\x0d\x7f\x4f\xe7\xbb\x59\xf3\x12\x3a\x65\xe7\x19\xa8\x97\x52\xcc\x99\x99\xa3\xe9\xa8\x84\x31\x96\x1c\xa0\x59\xa1\x62\x4a\x35\xab\x5d\x46\x36\x0f\x3a\x50\xb4\xce\x40\xd3\xe8\x66\x67\xe9\x18\x2c\x32\xe1\x0f\x26\x33\xd6\xed\xc5\x65\x0c\xc0\x24\xb3\xe9\x18\x24\x47\xd3\x27\x8a\xa2\xb8\x56\xce\xd8\x91\xfe\xae\x33\x7a\xec\xd4\xb2\x85\xe6\x65\x50\x93\x7c\x3f\x20\xb4\xba\xe6\xd6\x60\x21\x3f\x9f\x3f\x3b\xd9\xff\x70\x0f\x54\xbb\x4d\x6f\xfb\x3a\x0f\x84\x06\x56\x45\x71\x30\xc6\x40\x29\xeb\x22\x31\x70\x1c\xeb\x3c\x10\xea\x8f\x05\x95\xfa\x3c\x18\x8b\x2c\xbc\x1c\x48\x22\x78\xb5\x79\x4b\x9e\x7b\x5c\xe4\xe4\x07\x73\xf1\xac\xc2\x0e\xc6\x63\x59\x87\x1d\x27\x3d\xab\x66\x05\x4b\x14\x1d\x7e\x50\x01\xb5\xdb\xb4\xfd\x78\x35\x11\xc4\xed\xb4\xfa\x71\x2e\x21\x4d\xd3\x3a\x29\xff\x68\x56\x4b\x16\xf5\x2e\x80\xe8\x19\xfc\xc1\xaa\xcd\xa7\x1e\x2f\x1a\x07\x3c\x0d\xd4\xb2\x76\x0d\x91\x01\xc9\xd3\xb5\x31\x07\xc5\xc2\xea\xdf\xb9\xf7\xcd\x92\x97\xd5\xce\x54\xcf\xca\x7b\x2f\x7e\x84\xa4\x45\x87\x1b\x0e\x18\xe1\xac\xf6\xf0\xce\xe9\x66\x1b\xed\xb8\xb9\xf9\x35\x29\x14\xd2\x6b\x26\x98\x29\x05\xa6\x3c\x7e\x76\x04\x21\x50\x2b\x0d\xaf\xc2\x4d\x80\xbd\xa7\x78\x79\xa0\xc3\x57\x06\xfd\x91\xf6\x1e\x0f\x16\xda\x73\xa8\xc8\x60\x85\x11\x87\x8a\x0c\xc4\x76\xd9\xa9\x33\x58\x47\xcf\x81\x1c\x83\xb1\x5d\xf6\x1e\x0f\xd8\xf1\x9c\xa8\x3c\x10\xbb\xe5\x4c\xfb\x7d\xdb\xd8\x43\xd4\x83\x80\x95\xc9\x6a\x27\xc4\x64\xfb\x03\x8a\x40\xc5\x2f\x80\xcf\x37\xbf\x40\xd1\x51\x07\xc9\xbe\x44\xc7\xe1\x07\x37\xc7\xfc\x00\xb5\xe3\xb2\x92\x22\x1e\xba\xf3\x3e\x3e\x87\x62\xec\x61\x11\x7d\xd7\x83\xb5\x98\x55\x0f\xa0\xc3\x76\x7f\x81\x03\xb4\xf9\x83\x83\x29\x76\x41\x0f\x40\x71\xcd\x1d\x2c\xa0\x0c\x04\x84\x7a\x23\x02\x7e\x48\x0b\x09\xfb\x72\x32\xea\x44\xdd\xe3\x5a\x2d\x3f\x80\x14\x20\x22\xdf\x97\x51\x4e\x34\xb2\x53\x3a\x74\xd8\x04\x2e\x39\x6f\x2e\x26\xbc\xd3\xb3\xe8\x10\x85\x3d\x2e\x5c\xfa\x01\xb6\x81\xe4\xf4\x3d\xad\xf5\x1c\x7a\x80\xcc\x5a\x83\x0d\x3f\xa1\x83\x89\x76\x1a\xd1\xb4\x53\x77\xe4\xed\xd9\x15\xb5\x67\x06\xd6\xe8\xcc\xdc\x33\x81\x16\x89\xed\xa8\x79\xe1\xe4\xc3\x3d\xf3\x26\x39\xd1\xdc\x4e\x9b\x99\xe3\x28\x76\xa6\xd6\xd9\x0a\xb2\x17\xe4\xfa\xe9\x38\xd9\x29\xce\x38\xe2\x60\xa7\x70\xe2\xe5\xad\x0b\xf9\x9a\x46\xa5\x0a\x34\xfc\x00\x35\x1a\x3d\x8f\x4a\x97\x5a\xf4\x0b\xa0\x90\xee\x21\x40\x10\xdd\x1f\x90\x05\x49\x38\xd8\x97\x53\xce\x5d\xb2\x42\x83\x1d\x01\x3b\xa5\x05\x7b\x34\xf7\x46\x9d\xdd\x54\xd7\x1e\x90\xa9\x50\xd3\x69\x7b\xd3\x01\xb1\xb3\xc8\xaf\x0d\xd2\xfb\x58\xc8\x13\xfe\x51\x94\xd7\x06\xea\x9d\x61\xd5\x76\x14\xed\x34\x29\xd9\x2d\xb3\xd3\x43\x66\xbf\xcd\x3e\x38\x75\x81\x39\xc8\xe9\xb4\xa2\x70\x98\x35\xdb\xb4\xf7\xb1\xe6\xa1\x07\xf0\x87\x35\x5b\xa4\xf7\x9d\x64\x22\x1d\x76\xdf\xc9\x06\x64\xbf\xd8\x69\xf6\xb1\xdd\x71\x67\xe4\xb2\xe3\x4c\x76\xe6\x60\x59\x71\xdf\x0f\xe6\xa1\x7b\x7f\x1c\x8b\xbd\xb9\xd3\xb5\x04\x9a\x3c\x0f\x58\x47\x81\xee\x07\x97\xd5\x5d\x40\x32\xf1\x16\x43\xd2\x55\xe9\xee\x80\x29\xc6\xde\x40\x28\x5a\x60\x43\xf9\x8e\xb0\xa2\xa2\x63\x64\x3f\xd7\x12\x0a\x37\xac\x44\x66\xcd\x76\xa7\xed\xc7\x16\xb9\x9d\x07\xb0\xf7\xe0\x09\x55\xb6\xbb\x8d\x62\xd4\xde\x0e\xac\x4a\x60\x0b\xd9\x8e\xeb\xca\xea\xf6\xa3\x6c\xa3\x1d\x2e\x33\x87\xb5\xec\xb4\xe1\xe8\x9c\xdb\x79\x95\xaf\x4d\xd6\xfb\xc5\xe5\xd7\xc1\xb4\xf3\x6e\x5e\x07\xa2\xec\xb0\xb9\xb8\x66\xc1\x4e\x8f\x98\x09\x68\x15\x10\x30\x8f\xb8\x09\x83\x26\x80\x22\xb6\xc5\x47\x02\x73\xb6\x5c\x44\x66\xe7\xf1\x69\x23\xdf\x4e\x97\x97\xad\xb1\xfb\xb3\xc6\xd0\x27\x0c\x7c\x76\x51\x98\x1d\xf1\x39\xc1\x56\x8d\x63\x5b\xf3\x68\x7a\x10\xf8\x46\xd5\x83\xce\x4e\xfd\x00\xb7\x62\x48\x71\x3d\xe0\x2f\xb2\x4b\xfc\xd8\x40\x5e\x62\x3b\x07\xc2\x5f\xaa\xb6\xef\xc1\x83\xca\x76\xbd\x23\xd0\xd8\x24\xb1\xe3\xc0\xc9\x34\xd2\xeb\x8d\x8b\x0f\xf4\x46\x5c\x82\x82\x06\x41\xc0\x4b\x79\xbd\x40\x7e\x5a\xfd\xc2\x0e\x28\xb2\xda\xb0\x19\x57\xb7\xc9\xdb\xa4\x33\x1c\xf4\xf6\xe8\xcc\x3e\x60\x34\xa8\x62\x00\x47\xca\x9c\x86\x86\x4c\x9c\xa7\x3f\xe0\xce\x8c\xee\xf1\xc6\x0b\x42\x64\x26\xc9\x0a\xc4\x4c\xfd\x53\x44\x7e\xe0\x22\xa9\xaa\xbd\x7e\x20\x85\xc9\x17\x5e\x1c\x79\xed\x6c\xbf\xb0\xc8\x54\x5d\xb2\x98\xbf\xbf\x98\x6a\x7c\xae\xa2\xeb\xa3\x90\x69\x19\x46\x06\xef\x4a\x06\x38\xa0\xb6\x57\xd1\xfd\x81\x4b\x57\xed\xc0\x3c\x70\xa7\xbf\x53\x0a\x0e\xe4\x2b\xf5\xec\xfe\x70\xb7\xad\x89\xa7\x50\x37\x14\xc4\xeb\x58\x8b\xee\x00\x29\x53\x46\x12\x2b\x23\x19\xed\x75\xd5\x90\x57\x9b\x00\x6a\x1d\x19\x2a\x5c\xfd\x3e\xc9\x57\xdc\xef\x80\x12\xae\x1b\xf5\xcb\x01\xa5\xbb\x67\xff\xbe\x20\x12\x0e\x19\xac\x62\x43\xf6\x01\xcf\x8d\xaf\x63\x3a\x90\x3d\x6e\xdb\xe6\x81\xa2\xa5\xb6\x2c\x1e\x8d\x20\x6a\x8a\x08\x14\xf6\xcd\xe2\xe5\x80\xce\x5d\xbd\x6a\x0d\xb4\x6a\x90\x97\x67\xa7\x19\x02\xa6\xc4\xc8\x1c\x7a\x20\x94\xb8\x1a\xc4\xce\x93\x45\xfc\xf5\x40\xfe\x54\x7a\x2d\x0c\xf2\xa7\xea\xeb\x05\x92\x73\x74\x97\x50\x37\xc5\x23\x0f\xde\x21\x65\x7d\xf4\x40\x7c\xb1\x8b\x0f\x1c\x1d\x79\xfa\xaf\x36\x6e\x2d\x93\x44\x73\x74\xea\x54\xcd\x2f\x1c\xb0\x39\x09\x4f\x08\x85\x79\x31\x1a\xde\xaf\xda\x0c\x22\x57\x46\x92\xc1\xc1\x8c\x2b\xf1\xdc\x83\x4a\x7c\x97\x03\xf6\x60\xec\x8c\xbd\xc6\xc7\x54\xeb\x93\xaf\x2d\x39\x06\x2f\x83\x33\xb7\x83\xaf\xc9\x41\x00\xc7\x60\x29\x49\xb7\x51\xc5\xc5\xcc\x6f\xc0\xf5\xf8\x02\x01\x15\xdc\xf2\x8f\xfc\x44\x07\x84\x8a\xd7\xba\x0f\xdc\xb9\x25\x0d\xff\x40\x50\x8e\xe3\xa8\x0e\x88\x18\x55\x92\xed\xb1\xb3\x54\x9b\xde\xdf\x33\xde\xd7\x0a\xa1\xf2\x7f\xf7\x0a\xa0\xa8\x53\xf5\x12\x33\xd3\xca\xbe\x8a\x83\x16\x02\x3b\x04\x0f\x58\x08\x1c\xbf\x7d\xec\x3c\x76\x65\x67\x3f\x68\x20\x30\x8b\x5a\x49\xe3\xfa\xe0\xa0\x55\x53\x2b\x82\x92\x4c\xf6\xa3\x1e\x48\xcd\x4a\xaf\x36\xcd\x2a\xa6\x7d\x78\xba\x5c\x92\xf4\x38\x78\x89\xb3\x01\xa0\x3e\xe0\xfd\x7b\x50\xd6\xce\xee\x12\x37\x24\x4a\xdc\x39\x58\x67\x55\x16\xb0\x83\xf6\x04\xfb\x3a\x0e\xf8\xba\x5e\x7c\xfb\xe4\x56\xd1\x32\x40\xbc\xb1\xef\xe3\x40\xdd\x55\xab\xd9\xc7\x94\x76\x52\x93\xcc\x76\x20\xdb\xab\x1a\xcb\xb8\x18\xa0\x9a\xe5\xa1\xee\xbf\xfd\x39\xc7\xc9\x55\xf0\x3a\xf3\xe2\x2c\x4b\xee\xc7\x92\x7e\x64\x74\x3f\x28\xfd\xf8\x05\x58\x1b\x2c\x03\x1e\x48\xfd\xb2\x79\xf7\x40\x50\x51\x35\x8f\xbb\xb8\x0f\x0c\xc3\xb5\xd6\x41\x93\xc2\xdd\x58\x8e\x6d\x38\x90\x1b\xf6\x3a\xfd\xe0\xb5\xb2\x41\xf9\x80\xd3\xca\xb5\x78\x0e\x5e\x8d\x25\xed\xe4\x60\x85\x26\xd7\x28\x3b\x6e\x0a\x95\x6e\xe3\xbc\xf5\x32\xc1\x65\x55\x0d\x21\x5c\x56\x2e\x0e\x74\x40\x9e\x72\x28\xf1\x71\xa3\xca\x9f\x34\xcb\xe3\xee\xdf\x5f\xc5\x79\x2e\x07\xe2\x8d\xca\x6b\x3c\x88\x31\xf2\x9e\x1f\xf0\x70\x6d\x76\x91\x1e\x53\xfe\x4a\xaf\xa3\xf1\x5e\x8b\x20\x14\x3c\x5c\x04\x8d\xc8\x14\x79\x3b\xad\x0e\x94\x4b\xb5\xc9\xe7\x58\xc6\x8c\xec\x07\xa8\xe0\x6b\x21\xe5\xe1\x9c\x3c\x42\x87\xcd\x48\x38\x40\xb1\xd4\xf8\xfa\xfe\xe2\x88\x42\x0a\x22\x90\x7c\x3f\xe2\x01\x5b\x87\x63\xf0\x4e\x14\x47\xb5\x45\xfa\x44\x09\x26\x57\x0f\x3a\x61\xea\x68\x45\x73\x3a\x37\xb0\x98\xe1\x36\x56\x41\xc7\xca\x09\x37\x9b\x33\x0a\xce\x8d\x57\x57\x16\xb5\xe9\xdc\x89\x6a\x1f\xf0\x23\x7a\x40\xee\xde\xe2\x0e\x2f\x0c\xe0\x0e\x6f\x44\x48\x05\xb5\x71\x53\x95\x38\xd4\x89\x70\x6d\x9b\x5a\xce\x55\x83\x49\xeb\x7a\x22\x5c\xdb\x4c\xf4\x84\x57\x2e\xeb\xca\xde\x72\x4e\x79\x35\xb6\xcd\x3d\xd0\xa2\x24\x75\xe7\x84\xbc\x9a\x7c\xcc\x9c\xf0\xc3\xd9\xec\x71\xe2\x8e\x56\x73\xd1\x73\xb9\xd9\xc4\x15\xcf\x08\x4a\xd1\xf6\x3d\x23\x68\x5d\x0e\xa9\x73\x19\x52\x9a\x1f\xc0\x24\x2e\x96\x74\x46\x1e\xc6\xda\x6e\x27\x2e\x5a\xad\x3f\x2b\xbf\x7d\x32\x5c\xdb\xde\xd2\x93\x45\x04\x7c\x76\x9f\x2c\x22\xe0\xc8\xe6\x93\xf1\xdb\x8e\x54\x3e\x69\x76\x79\xb5\x79\x38\x7b\xe5\x13\x35\x0b\x1d\x8d\x27\xbc\x70\xd6\xd2\x4f\xd6\x19\x78\x2d\x1d\xaf\x6a\x7d\xad\x1d\xeb\x0a\x38\xb8\xf9\x4c\x2c\x0e\xac\x59\xa3\x8e\x80\x1d\x79\x67\x42\x41\x2f\xa3\x0d\x55\x04\xac\xd5\x9f\x53\x02\x4f\x56\x34\x4e\x16\x4b\xd5\x61\x72\xe6\x75\xad\x94\xda\x94\xec\x84\xf6\xcc\xab\xad\x34\x47\xd4\x42\x75\x04\xd8\x89\xda\xa7\xba\x9b\xbf\x9c\x88\x28\x77\x76\xff\x89\x6c\x3c\xc7\x5a\x9f\x28\x18\xe0\x02\x64\x27\xbc\x72\xf6\xd2\x9d\x88\x27\xaf\x46\x08\xbc\x72\x3e\x8e\xcf\x29\xce\xb7\x2a\x25\xf4\x2c\xa0\x6d\xaf\x41\x81\xb8\x63\xd2\x5e\x4e\x35\x03\x50\x78\x7a\x9a\x74\xcb\x81\xe4\x4a\xb7\xd7\xba\x0b\x44\x08\xec\x56\xed\x4f\x7a\xd5\xec\xe5\x3e\xeb\x86\xd8\x2a\xc1\x88\x7a\x03\x8e\xf3\x3c\x2b\x92\x1a\xa5\x6b\x9f\xcb\x6e\x25\xd5\xff\x44\x04\x7b\x33\xdd\xe0\x9a\x82\xf1\x1a\x80\xea\x62\xf7\x83\x13\xb3\x16\x95\x30\xd4\xca\x06\xbb\xb3\x12\xad\xee\x11\xcb\x6e\xb2\x69\x54\xa4\xcd\x64\x18\x7d\x6e\xea\x47\x79\x27\x5d\x24\x5e\x4e\x84\x5e\xb9\x8a\xe8\x09\xb3\x57\xed\x5e\xe8\x65\xf6\x32\x63\x5d\x22\x7c\xf7\x27\x3c\xe4\xdd\x67\x27\x9b\x71\xa7\xcc\xd7\xb3\x0f\xf9\xec\xb4\x4a\x88\xdd\x9f\xa8\xb7\xe4\x2b\x39\xcf\xce\xd8\x61\xa3\x6a\x20\x3d\xd7\xdc\x15\xf7\x06\x54\x59\xa4\xce\xc1\x2d\xe8\x1e\x90\xd0\xe7\x54\xfa\x73\x2c\x28\xfd\xc5\x1a\x42\x50\xb2\x7c\x92\xcf\xd1\x93\x37\xfa\x9b\xd7\x2d\xbb\x98\x09\x62\xa7\x94\xee\x33\x80\xb5\xfd\xcd\x8d\x76\x1a\x08\x4c\xf6\x3b\xaf\x62\xd3\xbc\x11\x8d\x65\x37\xc5\xb9\x13\xfd\x5e\xbf\x9d\xbe\x37\x2d\x30\x3c\x61\xcd\xd3\xe2\x95\x56\xf6\xd4\x9e\x47\xc0\x39\xa9\x0f\x8e\x85\x18\x7d\x41\xb9\xd6\x78\xe0\x1d\x57\x36\xcc\x9d\xcb\x30\x67\x22\x3b\x48\x33\x6e\x43\x0a\x94\x7d\xe1\x84\xe1\xae\xbc\x7a\xa4\x5f\x4c\x93\x3c\x38\x07\x83\xc8\xc5\xf6\xef\x20\x6a\xe9\x84\x27\xc2\xad\xaa\x8c\x07\x27\xa5\x4e\xf3\x2a\xd6\x18\xb0\x67\xf7\x3c\xc9\xe3\xcd\xad\x78\xfd\x6a\xf7\xd1\xb8\x7c\x56\x92\x74\xcf\x6b\xd1\xa8\xf0\x84\xe0\x26\xdf\x0e\x7e\x5e\x6b\xeb\xfd\xc8\x43\x74\x22\xac\xdc\x65\x03\x4f\xde\x96\x2a\x89\xeb\xbc\x97\xa2\xac\xee\x91\x02\xe7\x20\x8a\xf3\xe6\xf0\x5a\x84\x1b\x8a\xb3\x39\x03\xaa\x1a\x55\xb3\x92\x9b\x87\x94\x91\x7a\xa3\x90\xbf\x29\x6d\x8a\x70\xe9\xc5\x60\x79\x8d\x93\x9d\xb4\xe7\x83\x74\x1a\xef\xb0\x29\xa1\x25\xdf\xf5\x7d\x22\x2e\xa9\x9a\x73\x3c\x07\x62\x30\x05\xc1\x43\x88\x3e\x08\xbc\x36\x1a\xb2\xc4\x4f\xaf\x8d\x92\xb8\xe8\xe2\xe2\x4d\x4a\xc1\x5f\x80\x2e\x84\x83\x6b\xa3\x2d\x20\xfb\x85\x15\xf8\xf0\x69\xb3\x2a\x40\x11\x2d\x5f\xf0\x2d\x55\x29\x44\xd7\xf2\x2d\x89\x34\x2f\x94\x0d\xa8\xdd\x3d\x80\xb4\x44\x28\xd7\x8a\x53\x2a\x6a\x83\xd4\x44\x26\x17\xe2\x96\x7c\xa9\xe5\x85\x78\x70\x5f\xe3\x7b\xc1\x13\x55\x87\xc7\xe3\x94\x34\x83\xc0\xed\x59\xfd\x00\xe7\xa0\xb4\xc8\x2b\xae\x29\x69\x0a\x14\xa0\x64\x2e\xbe\x78\x3f\xa9\x4d\x69\xd7\x0a\x53\x7a\x75\xc1\x84\x04\x0f\x1a\x91\xc9\x91\xfd\x05\x23\x66\xfc\x3b\xdd\x10\xda\xf1\x57\xa2\x78\xaf\x1d\x7e\xc1\x22\x38\x9c\x2c\x74\xa5\xb5\xe5\x04\x56\x5a\xdb\x43\x4b\xc1\xb0\x20\x5b\x76\x2e\xdc\x25\x6f\xd5\xef\xca\x3c\x1d\xbd\x58\x79\xc1\xad\x51\x79\x83\xa8\xa3\xc0\xae\xe5\x8d\xd2\xce\xbf\x58\xb7\xc8\x8e\xe2\x0b\x41\xdf\x2e\x88\x7e\xa1\x8e\x91\x8f\xe4\x8b\x62\x88\x4c\xd1\xd7\x14\x3b\xd2\x30\x8d\x16\x6a\xcc\xcd\x2f\x00\xfd\xb2\x65\x5f\x0c\x06\xca\xfe\x80\x92\x5d\xf3\x0b\x14\x44\x92\x7b\x00\x08\xda\x67\x57\x25\x72\xbd\x80\x75\x11\xa9\xe6\xcd\x4a\x92\x96\x1b\x2e\xd4\x85\xb4\xd9\xed\xaa\x3c\x2e\x8d\x5b\xca\x09\xc3\x2f\x20\x62\x48\x52\xf8\x85\xe0\x99\xcd\xa8\x5e\x62\x81\xa1\xa6\x61\x4f\x9b\xf9\xa2\x58\x20\x4b\xf7\xc5\x6a\xe3\x4e\xa2\xba\x58\xe7\xc8\x2c\xf6\x5a\x75\x8d\x74\xa6\x5f\xa8\x3f\x6e\x96\x77\x31\x9f\xcc\x69\x56\x17\xca\x38\x3a\x02\xfb\x42\x1d\x23\x57\xc7\xb9\x96\x94\xd0\xfc\x01\x45\x3a\xef\x46\x14\x2e\xf2\xbd\xba\x17\xa5\x06\xe3\x0d\x45\x17\x5d\xbc\xfe\x1a\xe4\xfa\xde\x9e\xcb\x9d\xe6\xc5\x19\xdc\x4c\xde\xd0\x8c\x96\x79\xed\xae\xc1\x23\xfc\x35\x08\x85\x36\xf3\x04\x5e\xd5\xfe\xda\x7f\x88\x8f\xb1\xea\x79\x8d\x85\x3b\x4d\x6c\xa7\x42\x61\x32\xdd\x89\x3b\xb7\xe9\x76\x92\x9c\x70\xed\xdc\x1a\x65\xfb\xc9\x69\x74\xed\x0b\x22\x21\x62\x4a\x0d\xd9\x8a\xe0\x85\xa8\x6d\x5f\xaa\x71\x1d\xa4\x0f\x1d\x37\x17\xdc\x77\xc5\x0e\xf3\x8b\x15\xc9\xed\x08\xbe\x0e\xae\x9e\x20\x44\x9c\xf6\x26\xeb\xf5\x85\x43\xbe\x05\xf7\x48\xa4\x08\x07\xe7\x5a\x0a\x75\x70\xd2\x4e\x63\x6e\x0f\xe3\x52\x93\x7e\x7c\x9d\x0c\x96\x2a\x7e\x00\x2b\xab\x4f\x03\xdc\xe0\xd3\xa4\x53\x5d\x27\xcf\x48\x2f\xff\x05\x7b\x99\x49\x96\x85\x86\x6c\xff\xba\x2e\xac\x83\x27\x81\x98\xea\x16\xfc\x7b\x45\x5b\x58\x61\x82\x9a\xc5\xd2\xeb\x62\x5a\x9e\xf9\xc7\x45\xf7\xac\x09\x0c\xb7\x52\xfa\xee\xa3\x0b\xd6\xa6\xd7\x52\x5c\x2c\x5a\x2e\xb4\x2c\xf7\x9c\x59\x18\xdc\x73\xf6\xb7\x5f\x88\x88\x4e\x2e\x5f\x78\x21\xfd\xde\x57\x83\x5f\xf7\x5a\x3a\x0d\x01\x07\xde\x30\x45\xdf\xac\x16\x28\xb4\x30\xa1\xcd\xc4\x00\x59\xc5\xa2\xd1\xc5\x42\x46\x76\xbb\x5e\x37\xe7\xe4\x36\x42\xf0\x0d\xc1\xba\x63\x5d\x03\x3c\x44\xb3\xdb\x28\x52\xeb\x19\x4c\x59\x25\xd9\x72\x7a\xe1\xee\x1d\xe7\x96\x5d\x4f\x9b\x8a\x97\x27\xf0\x2c\xac\x6b\x86\xcf\x62\xca\x7e\x83\x36\x3e\x8f\x70\x21\x5e\x51\x10\x3f\x2c\xe4\x62\x88\x58\x33\x59\xeb\x78\x2f\xef\xa2\x58\xee\x0d\xfb\x92\xf3\xdb\x6e\xe4\xff\x3b\x8c\xfb\xc6\x35\x92\x8e\x93\xb8\x37\x0a\x9c\x62\x1b\x37\xa4\x9f\x16\xdd\x01\xa8\x59\x8c\xe7\xde\xa8\xb0\x88\x49\xdc\x10\x76\x5a\x74\x7b\x71\xb7\xae\x07\xbc\x91\x5b\x3d\xa0\x06\xd2\x2b\xff\xed\x86\xf4\xd2\xa4\x44\xdf\x90\x5e\x1c\xd9\x7a\x07\x82\xa4\x49\x4f\xe9\x25\x6d\xc2\xf3\xbd\x2a\x74\x8b\x98\x6f\xa6\xef\x9b\xdc\x6f\x5c\x6c\x63\x0f\xe9\xcd\x6b\x20\x9d\x08\x7b\x47\x44\x9f\x05\xbf\x30\x67\x69\x5d\xe2\x46\x48\xf4\x2b\xe3\xee\x46\x81\x6d\x5f\xfd\x77\xc3\x18\x63\x87\xf7\xcd\xab\x6c\x9c\xf7\x7a\x27\xdc\xc2\xb8\xf9\x85\xc2\x17\xd4\x63\xc2\x05\x10\xa2\xa6\x3b\xc1\x57\xd1\x3d\x02\x6d\xd4\x5e\x29\x78\x37\x6d\x4b\xb9\xe1\xcc\x6c\x32\x3d\xdc\xb8\xe7\xb1\xc9\xb6\x73\x67\x5c\x68\x6d\x90\x33\x58\xa5\xce\xd2\x9b\xa9\x6c\x76\xd2\xdf\xcb\xfb\xa9\x3d\x7e\x67\x68\x79\xa6\x0d\x88\x31\xce\xbd\xbd\x71\xcf\x63\x93\x18\x73\xc3\x3a\xe2\xfc\xff\xbb\x50\xf4\x76\x87\x85\x20\x08\x49\x65\x91\x86\x40\x28\x74\x54\x67\x3f\xa0\xf9\xd2\xd4\x55\x58\xce\xa6\xc4\x9f\x1c\x41\x37\xca\x67\x37\x6f\x87\x29\x05\x25\x87\xda\xde\x88\xf9\x69\x12\x1f\xef\x8a\xed\xe3\xd1\x2a\x67\xa8\x09\xd4\x45\x48\xfe\x80\x86\x3e\xc9\x3c\x77\x5b\xb4\xa8\x65\xc2\x0d\x8c\xaf\x75\x6e\x1c\xc2\x6d\x70\x19\xd3\x6a\xe3\x01\x24\xf5\xe3\xc6\x2d\x2e\xf6\x90\xdd\x08\x20\xb6\x87\xf9\x86\x73\xd3\x85\x1a\x6f\x64\xe9\x8f\xcd\xbf\x23\x69\xa1\xbb\xbf\x0b\x4e\x2c\xbf\x7f\x63\xc7\xfb\x77\xe0\xcc\x94\xdc\xe9\x58\x90\x3c\x7c\x4f\x99\x2b\x6d\x9b\xdb\x10\xb1\x74\x7c\xdd\xa8\xac\xe4\x68\xae\x7b\x4a\x58\xc9\xee\xa0\xbb\xd3\xba\x2b\x24\xf7\xb5\xe8\x7e\x80\x13\xd3\x41\x4f\x77\x87\x4d\xda\xcb\x04\xaf\xe3\xa6\xa3\xe1\x1e\x15\x31\x6d\x42\xd1\x40\x2c\xbc\x79\x14\x85\xa5\xcd\x1d\xf2\x02\x98\xee\x0e\xe9\x31\x52\x1b\xc9\xfa\xbe\xab\xfe\xde\x23\x21\x12\x52\xe0\x19\x7c\xdd\xbf\x7b\xef\x30\x57\x38\x6a\xe3\xde\xa1\xc8\x4a\x13\xbe\x11\x5d\xbc\x99\xb4\xf6\x45\xfb\xc2\x3b\x8c\x2e\xaf\xd4\xd1\x7b\xe7\x5d\xb4\x5a\x28\x7a\x17\x5f\x6c\x6d\x07\x63\x94\x30\x74\xc3\xe8\x12\x5e\xdb\x69\x05\x13\xeb\x18\xbf\x61\x54\xb1\xd3\xe8\x3e\xe0\x5d\x30\xab\xa5\xb7\xd0\xdc\xff\xe8\xa0\x1d\xbf\x3f\x08\x82\xa6\x7d\x50\x01\x93\x45\xf7\xc6\xa5\x8a\xd6\x43\x6e\x94\x6a\x6c\xd5\x30\xa1\x02\x52\xf3\x86\x81\x7c\xb5\x99\x27\x9c\x90\xe0\x8a\xdb\x38\x33\x1d\x6a\x7e\x23\x8b\x2d\x38\xb1\xf3\x3e\x17\xb9\xb8\x4b\x52\xb0\x10\x79\x71\x35\x85\x69\x86\x12\x3b\xde\xea\xa6\x5d\xc6\xd1\x48\xf7\xb5\x62\xff\xd4\x86\xc4\x65\x0a\xbd\x16\x1e\x04\xc3\xb5\x80\xf2\x18\x90\x02\x8d\x97\x6b\x01\x69\xa0\x9e\x49\xb3\xde\x76\xa8\x51\x6d\x03\xe7\x7d\xe3\x9c\x95\xe5\xe4\x86\xfb\xce\xb9\xce\x37\xe2\xa1\x6c\xc3\xbb\x79\xc3\xa1\x5d\x94\x37\x32\xcc\x5e\x57\x42\xdf\x37\x64\x61\xef\x4b\xb8\xd7\x7c\x23\xc4\xfd\x70\x44\x75\x00\xef\x9a\x8b\xf6\xdf\x0f\x98\xa1\xec\xa9\x37\x82\xa1\xec\x4d\xbf\x99\x62\x66\x46\xf5\x60\xa5\xab\xdb\xcc\x6d\xf5\x14\x50\x10\xa0\x37\xbf\x00\x6b\xbe\x4d\x6c\xf7\x83\x42\x0b\x9e\x12\xdd\x71\x8e\xf8\xb9\x51\x36\xb2\x55\x7f\x40\xff\xc3\xa7\xfd\x6c\xb4\xc0\x09\x8b\x0f\xfc\x73\x76\x1d\x3f\x1b\xbd\x59\xda\xa6\xcf\x86\x49\x57\x7f\x80\x5b\x4a\xe5\x41\x78\x98\xf6\x56\xc2\x8f\x54\xa0\x07\xe5\x96\x5e\x39\xc5\x0f\x83\xbf\x1c\x82\xf4\x20\xb4\xd9\xbe\xed\x07\x57\xac\x98\x8d\x3c\x94\xcf\x64\x13\x79\x10\x0c\xb6\x0d\xff\x3e\xe9\xcc\xd1\xfe\x0f\x2b\x66\x3b\x86\xed\x81\x3f\xcf\xe5\xc2\x1e\x54\xcc\x76\xd9\x86\x87\xf2\x9c\x4c\x2a\x0f\xe3\xa0\x8d\x90\x80\x3a\x00\x9b\xbf\x47\x0c\xbc\x04\xff\x07\xd1\x68\x2e\x58\xf6\xe0\xa6\x44\xeb\xf8\x4f\xe0\xf1\x25\x00\xd7\x45\x89\xda\x6b\x0f\x8a\x19\x8c\xe2\x01\x6e\xa2\xc8\x10\x3d\xa0\x2b\xcd\x28\x06\xe8\x4f\xfa\x3d\xae\xdd\xab\x21\x22\x0d\xe2\xc5\x0f\xc8\xad\xbd\x0c\xb8\x48\xdc\x0e\xc7\x87\xc5\x0d\xc4\x59\x9f\x55\x15\x5c\x93\x8a\x64\xd6\x92\xd4\x1f\xdc\xd8\xe2\xe4\x94\x27\x62\xbb\x37\x0f\xc0\xed\x1e\x3c\x02\x78\x92\xac\x2d\x0f\x83\xa8\x5f\x40\xd3\x9b\x27\x29\xf8\x49\xc8\x56\x11\x03\x79\x12\x5d\xd9\x9a\x35\x7c\x79\xaf\x2c\xd6\x07\x39\x76\xd6\xde\x1f\xe4\xd8\xb9\x2c\xf0\x83\xbb\x11\x5f\xe2\xdc\x83\x9a\x9b\xaf\x24\xe6\x07\xde\x3e\x1b\x1d\x9e\x44\x4b\xa8\x38\xc6\x83\x9a\xe1\x23\x7b\x48\xc6\x20\x18\x2d\xf0\xf7\xbd\xf2\xa8\x1f\x38\xfc\x9c\xc6\xfa\xe4\xb5\x12\xea\x22\xe3\x16\x79\x93\x0f\x6b\x48\x39\xa2\xee\xc9\x9c\x86\x80\x82\xf1\xcd\x66\x8d\x07\xb6\x36\x27\x54\x3e\x79\x9d\x48\x7e\x01\x3c\xc2\x04\x5f\x16\x8c\xc2\x74\x21\x8c\x42\x43\x99\x47\x98\x2f\x95\x7f\x78\xdd\xa1\xc3\x7e\x9e\x25\xb6\x4a\x83\x79\x0a\xa8\xa1\xbb\x4d\xd6\x6b\xcc\xc2\x1a\xd7\xaa\x61\x00\xb9\xc8\x1e\xfb\x54\x52\x83\xf1\x86\xb2\x54\x0e\xe2\x7e\x70\xef\x8b\x53\xf6\x1f\x38\xf9\x9a\xe3\x08\x1f\x84\xf1\xbd\x12\xaf\x1f\xe6\xd2\x8d\xe1\x31\xa0\x0a\x76\x7f\x01\xfb\x6c\x71\x9b\xf7\x2e\x68\x96\x28\x4b\x65\x55\xf3\x41\x01\x86\xcd\x0b\x53\x21\x33\x79\xed\x2b\xe6\x64\xb4\x31\x75\xee\x85\x67\x88\xc6\x76\xd0\x3d\x8d\x57\x88\x09\x40\x48\xca\xcd\xd7\xfb\x3f\x30\x0f\x36\xd3\x23\x2e\x81\xf1\x91\xf9\xb0\x82\x83\x43\xec\x9e\x86\x58\x26\xe9\xcf\x4f\xdb\xf9\x82\x7b\x00\x85\x67\x7f\xb0\x28\x5c\x0b\xd5\xc8\x7c\xcc\x3e\x29\x0d\x4b\x02\x7a\x20\x0d\x3b\xa1\xe6\x41\x41\x2b\xc7\x6b\x3c\xb4\x3f\x4a\xc3\x78\x3a\xe7\x20\x2c\x21\x2c\xb0\x7b\xdb\x33\x2a\xd0\xec\x99\xe6\x48\x29\x65\x0f\xca\x5f\x39\x5d\xe3\xe1\x75\x89\x73\xce\x3f\x39\x7f\x50\x91\xb4\xf9\xb4\x80\xe9\x72\x78\xcd\x79\x31\xba\xe4\x9c\x07\x11\x82\xc1\xe1\x7b\x0f\x3c\xa0\xcd\xe1\xa0\x0f\x72\x05\x1c\xb6\xf4\xc0\x03\x6a\xd1\xfb\x41\xea\x40\xc8\x6e\x27\x5c\x8f\xaa\x0e\x99\x39\xe0\x10\xb9\x07\xb2\xba\xaf\x49\x7b\x10\x20\x98\x1c\x4b\xf1\xa0\x20\x7b\x1b\x1e\xf1\x24\x06\xfc\x60\x01\xed\x2f\xb0\xe3\x65\x0e\x78\x28\xcd\x9b\x92\xe1\x51\x75\x65\xc8\x67\x5f\x84\xa7\x1e\xf7\xb5\x99\xfc\x05\xcf\x71\xe3\x65\xe7\xb2\x68\xc8\x7d\x40\xd9\xf6\xef\xd0\x71\x36\xf7\x48\x8e\x20\xed\xfd\xd9\x19\x07\xe0\x73\x76\xc7\xf6\x19\x7e\x81\xa1\x15\x6e\x3f\x04\x41\x43\xa2\x84\x85\xc3\x45\x9f\x03\x07\xb5\x29\x13\xb2\x7e\x72\x61\x85\xe7\xe0\x86\xd7\xd2\x1c\x8b\x8d\x69\x08\x84\x02\x06\xaf\x35\x8c\xa7\xbe\xa1\xf8\x99\xc2\x7e\xb3\xdb\xff\x81\xf1\xd4\x8e\xe8\xe7\x24\xda\x64\x20\x78\x10\xc8\x67\x93\xf4\x73\x2e\xe6\xee\x07\xdc\xc1\x32\x21\x3c\xac\x87\xea\xb8\xb9\x07\xe2\x7f\xb3\x17\xe2\xa1\xb9\xd5\x1b\x0a\xd7\x2d\x3a\x1c\xe2\x81\xa8\xee\x8b\x5f\x1f\xb8\x58\x5d\x27\xf4\x41\xe6\x41\x7a\xb5\x2f\xbc\x2f\x90\x2e\xc4\x1a\x49\x48\x7d\x20\x97\x5b\xbb\x7d\xe0\x53\x7d\x55\x62\x78\x58\x0b\xc2\xd1\xc5\x0f\x02\xeb\x7c\x49\xdd\x73\xaf\x49\x6a\xa5\xee\x35\x49\xbf\x41\x2b\x82\x59\x21\x2a\x91\x3a\x4b\xef\xe1\xd5\xe2\x25\xf9\x85\x8b\x5d\x08\xf7\x10\xe6\x5f\x82\x2e\x84\x79\xe7\xfc\x3e\x4c\xfc\x73\xe0\xd9\xc3\xeb\x64\x1c\xbc\xfa\x20\x56\xce\xe1\x79\x0f\x6f\x90\x79\x6d\x44\xc8\xf3\xbe\x42\xeb\x79\xc8\x5d\x65\x79\x78\xa6\xfc\x9e\xfb\xab\x07\xee\x54\x4f\x9c\xd5\x4c\x7d\x02\xa0\x9a\xa9\x2e\x22\xa8\x1b\xab\x93\xea\x7e\xa3\xba\xb1\x44\xbb\x82\x61\xea\xb6\x9c\xb3\xd5\x0f\xe6\x5e\x57\x1e\x7d\xdd\x70\x41\x8c\x02\xbb\xea\x86\x9a\x11\x2a\x3c\x5c\xb7\x00\xfe\x54\x34\x24\x6f\x02\x57\x8d\x87\xba\x05\x9e\xf6\xd5\x0f\x0a\x7a\x10\x4c\x81\x59\x5f\x45\x6d\xf2\x86\xcf\xda\xd4\x2d\xf0\xde\xaf\xea\x31\x07\x7a\x70\x8f\xd4\xf4\x93\xbb\x04\xe2\x82\x7b\x80\x90\x1f\x3c\x04\xc2\x9a\x3e\x87\x52\xdd\x58\xcd\xab\x64\x8d\x00\x0b\xa8\x6a\xac\xd6\x2d\x72\xf5\xdd\x5e\x34\xaa\x11\x78\x69\xa1\x14\xa1\xba\x21\xbf\x43\xde\xd9\xba\xa1\x9c\xa9\x0a\x36\xd5\x0d\x55\x27\xaa\xd1\x04\x89\x38\xf6\x9f\xc4\xc7\xd5\x2d\x12\x01\x82\x1f\xe1\x71\xca\x39\xad\x5b\xe4\xfc\xb5\x28\xac\x1c\xa6\xf8\xa1\xba\x21\x05\x51\x9e\xa3\xba\xe1\x26\xf1\x6e\x04\xe1\x76\x43\x97\x2b\xa9\x1b\xcc\xad\x55\x65\xdb\xea\x36\xa5\xdf\xac\x22\xf7\x75\xcb\x94\xb8\xb2\x08\x07\x92\xaa\x6a\xbe\xd4\x0d\xd7\x11\xf6\xe4\x76\x42\xdb\x1d\x00\x41\x51\x23\x2e\xb7\x71\x75\x87\xdc\xf6\x59\x40\xf2\xf6\xc1\x64\xda\xcb\x84\x49\x6b\x00\x37\xf2\x96\xb4\xaa\xcc\x3e\x51\x54\x71\xdd\x70\x71\x77\x77\x1b\xa2\xac\xbc\x36\x75\xa3\x1f\x59\xf1\x7b\x75\x43\x3a\xca\xe8\x1a\x81\xd9\x28\xaa\x26\x55\x37\x38\x92\xb3\x69\x17\x92\x6c\x7f\xb5\x09\xa2\x40\x62\x51\x88\xa2\x49\x16\x6e\x37\xbd\x5f\xb9\xdd\xb4\xb2\x75\x71\x4b\x0d\x08\xb7\xf3\x16\x4d\xaa\x95\x78\xf5\x17\xe0\x9e\x46\xc2\x94\x63\xe3\x30\xc4\x95\x3c\xc2\x1c\x00\x45\x21\x74\x49\x5e\xdd\x58\x38\xcc\x53\xa8\x9c\x82\x40\x46\xe5\xfa\xee\xfd\x0b\x2f\xb6\x52\x3f\xea\xc6\xca\xf5\x9b\x70\x06\x39\x56\xc5\x11\xea\xc6\xd2\xaa\x4d\xfd\xb7\x85\x74\x41\xd8\x50\x41\xd0\x0c\x03\x62\xeb\xbb\x03\xea\x86\x45\x33\x68\x3c\xda\xcd\xe5\x50\xe0\xa1\x9b\x3f\x74\x32\xef\x22\xe2\x83\x54\xd9\x5f\x1f\x00\x69\xe6\x07\x1d\x51\x35\x45\x43\x32\xd7\x44\xd1\xe4\x75\xeb\x24\xce\x22\xf2\xc6\xdd\x84\xaa\x16\x5c\x37\x5e\x4d\x68\x7e\xd0\x81\xb5\x2c\xda\xed\x48\xf7\xea\xc2\x1a\x2a\x44\x74\x6f\xc0\x65\xc3\x35\xa5\xf0\xea\xc1\x62\x98\x70\xf5\x60\x37\xad\xd2\x2b\x5e\x3c\x24\xbd\xe2\x9b\x40\xe2\xdd\x84\xd5\xa4\x32\xd6\x24\x84\x27\x24\x9d\x76\x33\xa9\x41\xa0\x35\xc9\x75\xcf\x77\x35\x0c\x0b\x4a\x81\xcd\xe2\xf8\x59\x3d\x4e\xd1\x31\xbd\x8e\x9b\x65\x08\x36\x39\x22\xf8\xae\x98\xaf\x2c\xd1\xd1\x4b\xb1\xd3\x2e\xf7\xea\x02\x66\xb3\x26\x18\x76\x90\xc7\x6b\x48\x9a\x88\xcc\x69\x20\x5b\x26\x1f\x61\x30\x14\x07\x53\xc7\x41\x85\xd6\xd3\x64\x1a\x6c\x35\xef\x3a\x22\xd4\x1e\x0d\x89\x32\xae\xdd\x24\x8e\xca\xf9\xdd\xc4\x70\xe0\xc8\x33\x5e\x0f\xd4\xea\x30\x05\xb3\x26\x45\xf1\x19\x89\xa4\x92\x6e\x8a\xe6\xbd\x84\xe9\xf5\x02\x4a\x67\x34\xb7\x41\x2e\x26\x86\x83\x7a\x97\x77\x21\xeb\xa3\x15\x1f\xa2\x27\x59\xd7\xeb\x01\xea\xf9\xc5\x9f\x18\xe2\xea\x86\x82\x15\xdd\xb4\x75\x42\xeb\x30\xd2\xcf\x85\x74\x01\xc4\x60\xbe\xd7\xf9\x80\xca\x67\xaa\x87\x59\x37\x38\xe5\xbb\x77\xd4\xb5\xe4\x06\x0d\x71\x71\x0f\x8a\xb4\x2e\xe2\xc8\x6d\xda\x90\xcd\xa8\x50\x34\x7f\x33\xce\xae\x05\x82\x60\x82\x91\xb9\x1a\x89\xd7\x22\x67\xc3\x44\xd9\xd5\x6d\x94\x9d\x35\xab\xba\x29\x24\xaa\x03\xd8\x98\xbb\x39\xd7\xbd\x90\xae\x0e\x96\x13\x5f\xeb\xba\x8c\xcc\x55\x93\xb8\x41\xbc\x66\xef\x94\x75\x9b\x7f\x5f\xeb\xaa\x1e\x79\x8b\xb6\xd9\x02\xe5\xd4\xa6\x11\x1e\xc4\x6b\x79\xb7\x3c\x84\x40\x20\xc3\x08\xfd\xda\xc1\xcf\x62\x0a\x1a\x91\x5e\xf8\xd7\x19\xf8\xa0\xc8\x97\x8f\x30\x44\x14\xbe\xd6\x89\x52\xab\x0f\x24\x56\xa1\x2d\xaf\x07\xb4\x28\x49\x96\x08\x28\xba\xef\x93\x3e\x20\xc5\x57\xee\x84\x1a\x78\xef\xb6\xca\xe5\xd4\x00\xa3\xb2\xd7\x29\x6c\xa0\xc6\xea\x0f\xb8\x9f\x9a\x1f\xf4\xef\xaf\x26\x49\xba\x06\xd4\x56\x33\x8f\x08\x1b\x15\x86\x17\x08\x04\xba\xf9\x0b\x2e\xbd\xbe\x60\xd0\xa2\x72\x65\x6a\x08\xb0\xa2\x1a\x06\x8a\xb9\x42\x7c\x08\xcc\x15\x10\xa6\x43\x58\x40\x0a\x0d\x81\x04\x9c\xfd\x09\x4c\x73\x9e\x36\xd2\x8e\x43\x72\x9b\xfa\x40\xf1\x03\x52\x47\x36\x10\x0f\xb8\xa9\x66\x11\x11\x2a\x23\x6e\x1b\x28\xd7\x8a\xfc\x42\x5c\x98\x16\x1e\x22\xe8\x51\x14\x1f\x90\xc6\xd1\xc5\x6c\xc3\x4a\xcc\xa8\x7e\x81\xe1\x3c\xaf\x2e\x21\x0e\x88\xe4\x43\x02\x08\x5e\xfc\xc4\x73\xcc\x5d\xe2\x76\xa4\x2e\x0a\x0d\xcc\xba\x28\x86\x61\x65\x5d\x78\xf9\x13\x14\x71\x71\xb2\x90\x68\x12\xf7\x62\xc1\x54\xeb\x8b\x8a\x6a\xc0\x65\xdb\xbd\x09\x0f\xa8\x63\xdb\xbb\x7f\x87\x16\x64\x34\x24\x88\x65\xda\x86\x81\x97\x39\x2a\x49\xa7\x06\x4a\xb7\x5d\xb3\xca\x9c\x84\x7f\x5f\x93\x70\x0f\xf4\xe3\x89\x19\x85\x4c\x4c\xbb\x07\x5c\x4e\xef\xb5\xcd\x6b\x52\x82\x99\xd2\xae\x27\x89\x70\x03\xef\xfc\xc0\xcb\xb7\xbb\x47\xe4\x11\xe1\xef\x51\xd8\x5b\x47\x46\x40\x6e\x46\x1f\xea\x0f\xd1\x07\x2f\x5a\x82\x8d\x55\xf9\xb6\x35\x14\x06\x13\x7a\xa5\x29\xbb\x0e\x75\xc8\x5b\x93\x94\x35\x54\x43\x45\xad\x3e\x8f\x58\x79\xd6\x6b\xca\x75\x1d\x49\x3f\x29\xa8\x5d\x03\x12\xab\xfb\xf0\xd7\xb8\xe6\x4f\x1a\x56\x40\x6c\x81\xea\x04\xd4\x40\x39\x75\x08\x3f\x95\x5b\xdc\x94\x89\x5a\x65\xc3\xf3\xa9\x9c\x8f\x88\x02\x82\xaa\x79\x71\x40\x5a\x75\x1f\x5a\x63\x96\x32\x2b\xa6\x5c\xd8\x5b\x7b\xd7\x7c\x1b\x88\x62\xf8\x77\xce\xc0\x1d\x56\xcc\xc0\x6d\x90\x44\xd7\x0c\x96\x7d\xd6\x64\xca\xd0\x84\xe4\x35\x6f\x8b\x23\x78\x08\xf2\x5a\x73\xc2\x86\x49\x06\xb7\x99\xfa\x65\x46\x87\xe2\x67\x2f\x5e\x0a\x03\xaa\x5c\x39\x35\xc0\x04\x3a\xa4\x3a\x06\x5e\xca\x24\x03\x52\x0d\xbc\x54\xdb\xb2\x71\x80\xe8\x6a\x6d\x3c\x20\x9e\x73\x93\x34\x15\x60\xf2\x1c\x9b\x7f\xcf\x68\xfb\xf7\x8a\xb6\x26\xc9\xd8\xcd\xea\xad\x31\x90\xfa\x69\xe6\x0d\x0b\x67\x1f\xa2\x84\x41\x90\xfd\xfb\x5a\x79\x21\x7a\x2c\x2c\x79\x48\x6a\x10\x92\xe0\xc2\x4e\xf5\xb6\xab\xcf\x9d\xb7\x6d\xa9\xcf\x15\xaf\x60\xcc\xef\x90\x88\x24\x65\x86\x15\x9f\x50\xfc\xc5\x64\xf7\xb6\xac\x84\x9d\xb6\x19\x13\x28\x92\x44\x86\xa4\xca\x80\x70\xcf\xe1\x43\x8c\x49\x22\xd5\x88\x46\xfc\xe7\x90\xf9\x27\x20\xdc\xf3\xc5\x52\x98\xcb\x2c\x75\x37\xac\xd2\x2c\x66\x73\x07\x3d\xca\xa6\x27\x84\x7f\x0e\x2f\xdd\xc1\x0b\x2a\xaa\xbb\x40\xb0\x8b\x94\xc1\x70\xd2\x77\xe8\x3d\x8e\xdc\x64\x5d\x24\x5f\x03\x04\x47\x95\x14\xac\x01\x45\x77\x37\xc3\x88\x70\x86\x11\xdc\x1e\x68\x0b\xad\x27\x21\x12\x84\xa8\xc3\xa2\x90\xbf\x1a\x4e\x22\x49\x00\x22\x7a\x74\x98\x2b\xb0\x02\xaf\x89\xeb\x5a\xeb\x26\x00\x2f\x1a\x92\x7d\x1e\x5d\x0b\xcd\x7e\x40\x25\xc7\x8c\xee\x5a\xd4\x22\x34\xb1\xbe\x6d\x31\xaf\xbc\x19\xce\xe6\x33\x0c\xd1\x06\x43\x6a\x4e\x60\xf0\x66\x32\x37\x47\xb6\xf0\x30\x75\xdc\x94\x16\xcc\x9e\xef\xb5\x78\x5a\x6d\xde\x4f\x50\xcc\x4e\x98\xff\x5b\xbd\x75\x51\xc3\x76\x33\x49\x42\xf6\x1b\x5e\xbc\x25\xfb\x79\x1e\x0f\x81\xf0\x07\xe0\x05\xaf\x0e\x3a\x08\xcc\x1d\x60\x71\xcc\xd0\x1f\x2c\x86\x0c\x32\x01\xc9\x25\xc3\x2c\x19\xe1\x06\xba\x73\xb2\x06\xd8\x2f\x87\xf4\xa2\x08\xc1\x50\x77\xc1\xd4\xc8\xda\x2f\x0a\x97\xa9\x91\xd7\x0f\x28\x1a\xa6\xc6\x8d\x47\x48\xf3\x27\x34\x6f\x88\xcb\x47\x06\x04\x64\x77\x01\x18\x93\x7b\x00\x8c\xe9\x27\xf1\x70\x35\x22\x95\xc5\xab\x16\x03\xaa\x08\xbb\xf3\x80\x5c\xb3\xee\x36\xb6\x87\x38\x51\x0c\xc8\x43\x90\x4c\x18\x91\xd8\x32\x92\x7f\x2f\xa4\x2c\x0f\x80\x6a\x72\xc5\x1f\xec\x50\x61\x3c\x00\xb6\x43\xf2\xef\x27\x11\xe4\x1e\xaf\xef\xaf\xda\xb4\xc4\x31\x60\x09\x92\xdb\xb8\x5d\x4a\x92\x71\x64\x2c\xa8\xaa\xc6\xd4\x08\x91\x71\x24\xbf\xc0\x88\x0f\x9d\x30\x31\xd2\x10\x2e\xc5\x2c\x46\xe6\x2b\xfb\x8b\xc6\x2e\x35\x66\xa4\xfd\xfe\xf5\x05\xe8\x28\xb9\x7d\xf0\x0b\x77\x41\xa8\xb5\xca\xb0\x67\x56\xed\x96\x98\x40\x38\xd9\x6d\x46\x28\xe9\x68\x8e\xb8\xf9\xe0\x05\x34\x64\xca\xd4\x8c\x68\x16\xc7\x89\x7e\x81\xc6\x46\x2f\x65\x3a\xa0\xc3\xfb\x05\x9e\x21\x12\x01\x23\x02\x4e\x93\x02\xad\x6a\x44\x32\x6f\x75\x1b\x26\xd3\x6c\xa0\xa7\x50\xd9\x86\xc4\x83\xc8\xeb\xa0\x54\x4e\xa7\x46\xe6\xda\xd8\x58\x12\xe9\xfd\x57\x68\x47\x8d\x4c\xbe\xb1\x71\x24\x4e\xa9\x32\xb6\x57\x17\xfd\xfb\xab\xbe\x30\x8b\xb2\xbb\x2a\x4d\x5c\x23\x84\x48\x65\x51\xd7\xc8\x2b\xa6\x6c\x99\x88\xbc\x42\xfc\x35\x22\x56\x42\x82\x70\x64\xe1\x38\xc5\x1b\xd4\x58\x68\xb1\x94\x74\x1e\x59\xd2\xa7\x7a\x16\x53\xf0\x8c\xb6\x5d\xc4\xc2\x59\x89\xe7\x47\x48\xa2\xd6\x10\x62\x59\xb3\x14\xaa\x59\xd4\x47\xbc\x31\x16\xe6\x5b\x7a\x5b\x14\x6c\x0b\x53\x35\xc3\x60\xe5\x1a\xaf\xb1\x70\x1a\x1a\xa2\x92\x80\x84\x27\xa6\xfb\x54\x23\x16\x66\xd6\x61\xc4\xf1\x52\xf2\x6a\x44\x55\x1c\x64\xb2\x05\x44\x9a\x41\xab\x81\x5e\xa5\x71\x3d\x24\x33\x57\x75\x14\x46\xf8\xf3\x83\x81\x6e\xdc\x58\x92\x73\x62\xa3\xe7\x44\x30\x34\x2e\xa6\x3f\xa0\x72\xd6\xfd\x01\x9d\x7f\x5e\x0b\x5c\x8c\x3e\x24\x49\x45\x26\xfd\xca\x5d\x5f\x23\x2e\x46\x1f\xc5\x6d\x44\x8e\x7a\x96\x70\xdf\x57\xef\x02\xb8\xeb\xe5\x10\xaf\x11\x86\xd5\xe1\x9d\xcd\x58\x56\x03\x80\x4b\x42\x5d\x8b\xa4\x46\x5c\x47\xa5\x8b\xe2\x6a\x44\x6d\x5d\x5b\x1b\xe2\x60\xf4\xac\xd1\x36\xa5\xc7\xe4\x33\x29\x52\x7a\x34\x75\xb1\xa2\x8e\x49\x81\xd2\xa4\x19\x20\xeb\xe4\x76\xbf\x8f\x12\x16\xde\xa5\x83\x5a\xb9\x21\x84\x11\x74\x78\x99\x10\xeb\x6a\xe7\x4b\x84\x0d\xd4\x52\x7d\x64\xf6\xb0\x34\xe4\xb8\xf3\xe0\xee\x7e\x80\x52\x7e\xa6\xb5\x29\xe7\x95\x2d\xff\xec\x04\x3a\x78\xc7\x8b\x3e\x3e\x78\x22\x4a\x20\x8a\x07\x63\x7b\x05\x3e\xcb\xdd\x9a\x48\x58\x9f\xe6\xc5\x3b\x91\xd7\x3b\xbc\x44\x07\x1d\xbc\x9a\x2f\xae\xa4\x1a\x26\x2a\x14\xd7\x1b\x66\xa5\xcb\x6b\x6d\x32\x85\x61\x71\xc8\x6c\x11\x29\x02\x1a\xa1\x48\x04\x1e\x5e\x21\x8a\x80\x52\xef\x23\x45\xc0\xe6\xfe\x70\x3a\x34\xf7\x07\x22\x96\x4c\x1a\xe1\xc1\x4e\xaf\xfe\x6f\xce\x50\x33\x40\x3c\xeb\xf0\x4e\x5c\x32\xa1\x3e\x80\x69\x72\x98\xc8\x79\x29\x83\xf9\x0f\x2a\xe3\x5a\xbf\x88\x17\x49\x4e\x00\x2f\x99\xd2\x4b\x8e\xea\x35\xd5\x82\x52\x44\x3d\xbf\x61\x6e\x82\x04\xa3\x61\xa2\x43\x7e\x91\x92\x17\x6a\xbc\xd6\x4e\xf6\x83\x03\xfb\xc8\x53\x20\x0e\x44\x06\x17\x70\x60\xd6\xc0\x2b\x18\x9a\xdb\x2c\xe5\xe6\xf6\xa2\x02\x41\x88\xe2\xb8\xd9\x92\xcd\x8d\x4a\x15\x16\x2c\x70\x73\xe7\x78\x75\x08\x9c\xfa\x80\x85\x1d\x72\xf8\x7b\xfa\xcb\xab\x65\x3b\xf8\xcb\x6d\x49\x8a\x0f\x25\x37\x29\x65\x11\xe9\x41\xc3\x07\x2e\xfd\xe7\xc6\x19\x0a\xe9\x6e\xb2\xd2\xc7\xe5\x1d\xf7\xba\xaf\xe8\x56\x23\x05\xc5\x66\x92\x79\x0b\xc5\x4d\x11\x6a\x82\x78\xa9\x7b\xda\x6b\xda\x48\xd9\x43\xed\xc5\x80\xfd\x80\x27\x95\x8e\xcb\xb4\x31\x38\xc2\x3d\x82\x94\x25\x7c\x26\x56\x9b\xa9\x6e\xd3\x73\x5d\xdd\x01\x25\x1d\x89\xcc\x89\xe2\xa9\xd0\x94\x36\x6a\xd7\xda\x1d\x69\x19\x22\xb5\x1d\x52\x40\x3a\x81\xf6\x6b\xa2\x47\x5e\xe5\x9c\x6a\x5a\x96\x48\xb1\xbc\xb4\x32\x8a\xaa\xdf\x80\x1e\xd8\x3c\x06\x2c\xe7\x41\xab\x9f\x98\x32\x24\xb1\x22\x45\x6e\x61\xb7\x3b\x2c\x95\xc2\x64\x1c\x84\x41\x43\x2e\xbb\xa1\x28\x3e\x41\xc4\xdb\x86\x5f\xe0\x49\x94\xfc\xc2\x03\x73\x95\x30\x95\x28\x46\x88\x0f\xa7\xc4\x5d\xa7\x4d\x96\x96\x9d\x50\x02\x55\xe2\xad\x08\xb6\x44\x27\x94\x6b\xd9\x14\x72\x5d\xd3\x14\xe2\x5a\xf3\x3c\x60\x07\x34\xaf\x4b\x08\xd0\x6c\x6e\x2f\x3b\xa0\x31\x95\x29\x06\xb8\x87\xbc\x80\x88\x7a\x30\xe0\xfe\xd4\x90\x99\x3b\xcf\xb8\xca\x34\xea\xc8\xb0\x95\x58\x9c\xd7\x50\xc3\x90\xa7\xa4\x82\x9a\x32\xad\xbe\xa6\xd3\xcc\xbd\x28\xa0\x50\x95\x45\x21\x37\x35\xf1\x6e\x04\x95\xa2\xaa\xa9\x30\xaf\x41\xa6\xac\xb4\x44\xb0\xf4\x93\x6a\xa5\x35\xd1\x52\x98\xdc\x7f\x9b\x58\xcc\x6e\x77\xf6\xe6\xee\x79\xa6\x8a\x5b\x24\x06\x78\xda\x5d\x94\x20\xa0\x29\x02\xb4\xa6\x4a\x45\xa8\xf9\x01\xb9\x81\x38\x5c\xaa\x0d\x07\xa1\x90\x00\x37\xb6\xae\xb3\xaa\x09\x65\x15\x87\x09\x0c\xe6\xc0\xf1\xfa\x9d\xc1\x01\x5e\xdb\xba\x28\x50\x68\x44\xe1\x45\xd5\x30\xac\xa9\x51\xa9\x90\x1d\x20\x35\x54\x8e\x11\x4f\x4c\x8d\x27\xa1\x49\xb4\x51\xcb\x1f\x7e\x03\x47\xa1\x89\xa3\x35\xb0\x75\xf7\xb8\x30\x27\x28\x71\x45\x7b\x34\xcb\x9a\x12\x5d\xd2\xfd\x28\x35\xad\x1b\x44\xcd\x2f\x1a\xf9\x85\x77\xc5\x32\xf8\x49\x58\x4e\x28\xcd\xe8\xb3\x27\x75\xda\x2a\x8c\x99\x4e\x97\x91\xc6\xe8\x6b\x5a\x1a\x83\x17\xb9\xdb\x42\x9f\x58\x69\x31\xbb\x4b\xe2\xde\x1f\xac\xdd\xaf\xc5\xc0\x05\x09\xb6\xe0\xa5\xce\x7d\xe7\xdf\x41\xd1\xa6\xcf\x41\x17\xad\xf7\x1d\x2b\x2c\x7b\xad\x78\x69\x97\x4f\xd0\xc4\x0c\x70\xfb\x6b\x12\xe5\x40\x1d\x37\x69\xb0\x34\x92\x66\xb9\xe4\x3e\x6f\xb3\xc1\x8d\xea\x59\xa1\x94\x62\x36\x27\x66\xc5\x65\xdb\xf8\xd3\x20\xd4\x42\x0b\x9c\xdf\x43\x8a\x4e\xe2\x95\xa5\x52\x95\x12\x9c\xe1\xc3\x9c\x00\x17\x2e\x0c\x33\x02\x26\x49\xd9\x24\x9f\xe0\x0b\xaf\x9e\x03\xaf\x09\xb3\xfd\x21\x21\xce\xd2\x2a\x65\x42\xa1\x1a\xdb\x4f\x12\x6c\x90\xf1\xd5\xc1\x9c\xa3\xb2\x6c\x6a\xa2\x09\xf2\xf5\x3d\xc8\xeb\x05\x21\xf7\x88\xb7\x3a\x4d\x8e\xd2\x07\x12\x83\x28\x7d\xa4\xc2\x13\x3e\x4c\x7c\xa8\xfd\xdc\x8c\xe4\x83\x67\xb6\x21\x3a\xee\x29\x0c\x4b\xba\x4e\xe7\x86\xb6\x66\xc0\xe2\x88\xf6\xc4\xa4\x33\x4d\x2d\xda\xc4\x39\xc5\xd1\xb2\xf9\xa8\x3a\x49\x08\xd9\x2f\x54\xbc\xa0\x29\x30\x86\xd2\x6e\x8b\x34\xe5\xcf\xa2\x04\xdc\x9a\x96\x3c\x29\x11\x3a\x4d\x79\x32\x29\x15\xa9\xa6\x29\x4f\xa6\xcd\xb4\x77\x51\x05\x36\x83\x9e\x02\x65\x51\x32\x6b\x4d\x17\x8f\x68\xa9\x00\xe9\x42\x80\x80\x64\xf0\x34\xe5\xbf\x64\xdf\x45\x62\x71\x43\x09\x53\xe9\xa2\xec\x63\x41\xe3\xa6\x54\xe0\x95\x83\xc0\x17\xcc\x48\xee\x04\x10\x84\xb6\x9b\x01\x5e\xde\xc3\x37\x67\xed\x0e\xb0\x67\xb3\x31\x8f\x90\xc9\xf4\xda\xe5\x37\x13\x1f\x35\xc4\xc3\x13\xda\xbb\xf6\x59\xd3\x14\x1e\x1e\x16\xdf\x74\x1b\x2e\x7e\xef\xa8\x87\x4b\xf3\xa3\xa0\xb8\x34\xe5\xc1\x90\xec\xaf\x49\x0f\x91\xf6\x99\x41\xde\xd0\x5b\x70\x9b\xe2\x40\xf7\x03\xee\x70\x91\x7f\x46\xb2\xb6\xe3\x5d\xf2\xf6\xa0\x87\xcf\x0c\x73\x20\x1b\xd2\x31\x95\x61\xdf\x1b\x56\x25\x72\x00\x9a\x83\x5f\xc8\xf3\x68\x94\x98\x9d\x03\x67\x38\xd4\x6e\x78\xbf\xaa\xdd\xd9\xa1\x1f\x40\x1e\xec\x6e\xf3\xf0\x17\x6f\xcd\x28\x3d\x33\x74\x41\x41\xcd\x2b\x9d\x47\x9c\x2d\x23\x56\x71\xe8\x86\x82\x9a\x23\x25\x27\x31\xaa\x1c\x89\x29\x7f\xd1\xd1\x76\x97\xe4\x8d\xc3\x0f\x16\x71\x68\x1e\xa8\x5e\xad\x72\x06\x35\x4f\x71\x2e\xe9\xf2\x90\x9a\x19\x80\xa8\x52\x25\x35\x33\x7f\xc7\xfe\x93\x9c\xb0\x6f\xc5\x1c\x33\x13\xbe\xf3\xeb\x01\x81\xd4\x10\x70\xf2\x3a\xb4\x2e\xd3\x20\x97\xbd\xde\x69\x55\x00\x54\x9b\xb1\x49\x5e\x1c\x18\xdc\x54\xa4\xa7\x66\x26\x70\xdb\xc1\x92\x33\x98\x91\x87\xc8\xb4\xb0\xcb\x3c\x92\x51\xef\xce\xca\x75\x66\xbc\x60\x36\x26\x0b\xb7\x80\xdc\x0d\xb9\xf0\x30\xed\x7e\x80\xbb\x44\x37\xb7\xe9\xbb\xd6\x59\x99\x0b\xc3\x58\xc4\x33\xf3\x32\x66\x15\x3f\xb8\x18\x37\x20\x54\x95\x35\x53\x75\x5a\xe9\x84\x17\xf6\x2b\xb9\xa8\xa4\xeb\x5c\x17\x9c\x9a\x49\x25\x61\x0a\x8a\x0a\x33\x42\xf4\x07\x94\x33\x4c\x98\x2c\x56\x63\x51\x25\xd3\x7c\xa5\x4a\x31\x35\x37\xd2\xa1\x7c\x41\xb9\x61\x45\xa3\x5f\x40\xb6\xac\x38\x4e\x6e\xcb\x3d\x25\xa0\xa6\x34\xd4\x9a\xb1\xdb\x16\x6a\xfc\xc2\xc2\x84\xba\x40\x6e\xb5\xc3\xee\x72\xe7\x69\x50\xfc\xa0\xf1\x0b\xf5\xd9\x41\xfb\xd1\x2f\xac\x35\x17\x26\x68\x91\xca\xde\xb3\x23\xb0\x0b\xcd\x9c\x55\xec\x9a\xbf\x00\x53\x10\xf7\xce\x53\x36\x29\x9b\x99\x02\x6a\x36\xa7\xd7\xf7\xa4\x43\xa9\x8d\x79\x20\x6a\xb4\xba\x43\xd6\x1c\x15\xcc\xbc\xba\xc9\xf1\xbd\x99\x92\x86\xad\x93\x79\xe7\xfa\xea\x84\xc9\xf0\x67\x06\xaf\xc5\x4e\x98\x34\xa9\x25\x5a\xc8\xe2\x90\x77\x1e\x93\x5e\xdf\x1d\x07\x86\x34\xd7\x0c\xb3\x96\x5d\xa8\x99\x19\x1a\xd9\x24\x84\x74\x6b\x15\xd8\xad\x79\xe7\xb9\x2a\x18\x0f\x14\x6a\x34\x5e\x11\x75\xd7\xcc\x00\x98\x8d\x6d\x03\x7a\x3e\x58\xc3\x47\x10\x4c\xe1\xa2\x6c\x52\x3b\xf2\x01\xc3\x9a\x94\xd0\xcc\xcb\xd5\x6d\xda\xcb\xb8\x54\xd4\x27\x48\x3e\x71\x4e\x4b\xc7\xc8\xeb\xde\x88\xf6\x93\xea\xd9\x35\x9f\x40\x61\x72\x6f\xd8\x42\x52\x93\xf2\x49\xa5\xb8\xba\xfb\x9d\x27\xaa\x30\x80\x42\xcb\xcd\x7b\xea\x44\x3c\x9a\x54\xfd\xbc\x0a\xe2\x99\xb2\xae\xb5\xce\x42\x01\x25\x0d\x09\x6c\x99\xa6\x2a\x0f\x49\x53\x95\x35\xf9\x7c\x2d\xfa\x77\x97\xa0\x7f\x69\x66\x79\x8a\x22\x65\x93\x5e\x9e\xef\x08\x96\xa7\xf7\x29\x58\xf8\xcc\x64\x9d\x9a\x66\x36\x7c\x53\x95\x1b\xee\x81\xa4\x25\x3c\xdd\xc4\x93\x40\x82\x29\xca\x7a\x57\xbe\xc9\xd8\xcd\x27\x6e\x1c\xcb\x12\x01\xf3\xc3\x1d\xe9\x2f\x9e\x80\x1e\x85\x95\x07\x58\x31\x17\x78\x70\xd6\x98\x70\x1e\x72\x05\x23\x9a\x82\x88\x44\xc2\xfc\x50\xe3\xb1\x6c\xf1\x00\x2b\xc6\xc2\x43\x4e\x64\x52\x7a\xae\xf9\x82\x8f\x37\xd8\xa2\x1c\xe7\x9a\x1f\x6e\x59\x1d\x46\x65\x83\xa0\x2b\x59\xa4\x2c\xdf\xa7\xec\xac\x85\xb7\x3a\xa9\xde\x48\x2d\x1b\xe8\x4d\x47\x4b\xd9\x56\x97\x7a\xb0\x2c\x41\x92\x8d\x4b\x58\x6b\xe3\x07\xf4\xac\x0c\x7f\x82\xd5\xd7\x09\x58\x78\x15\x86\x7d\xdf\x85\x57\x61\xe8\xa2\x94\x5a\x02\x36\x59\x71\x1b\x13\x7f\x0d\x71\x73\xcc\xa6\x07\x3c\x9c\xc4\xfe\xca\x14\x58\x9a\x33\x03\x4a\x04\x45\xe9\x6c\x2a\x11\xab\xa5\xe3\xae\xb0\xd6\xb0\xf5\xee\x12\x79\x4e\x48\x1a\x2e\x11\xab\x63\x18\x23\x18\x83\x0e\xb7\x12\x69\x71\x77\x8f\x37\x41\xf2\x03\x24\x7d\x7b\x12\x69\x2d\x86\x7a\xa0\x35\x4a\xc5\x8f\x6a\xa1\x74\x22\x66\x56\x12\x88\x5a\x2c\xbc\x24\x20\x56\x44\x5f\x68\x9b\x92\x9c\x57\x78\xd3\xba\x0d\x49\x05\xd9\xc5\x36\x15\x14\x94\x0a\xae\xaf\x0e\x1f\xb8\x9e\x35\x47\xde\xdf\x69\x1b\x4b\xc9\x6b\xb1\x87\x1e\x40\xa2\xd2\x2e\x29\x79\x11\xb5\x60\xc8\x84\x51\x0b\xc3\x84\x0b\x87\x54\x95\x8c\xb5\x15\xb7\x29\x99\xfc\xc9\x43\x42\x31\xf2\xca\x2e\xe7\xa0\xe4\xe5\x02\xe7\xa0\xa5\x8c\xb2\x2c\x53\x92\x55\x4b\x21\xd0\xe2\xf1\xa5\x80\xc8\xc5\xc0\x4a\x21\x9e\xb5\x32\xb8\xb6\x53\xe5\xc6\x6a\x29\x9c\x83\xdb\x10\x5d\xc5\xde\x4a\xc1\x14\x9a\xfb\x87\x88\x57\xfd\x3b\x8f\x7b\xc9\x67\xa5\x2e\xe6\x22\x98\x91\x4a\x5c\x8c\x14\x8a\x4e\x26\x3e\xe4\x09\xeb\x06\x92\x5a\xea\x42\xb3\x3b\x38\x38\x47\xa1\x0d\xa6\x28\xa7\xce\x14\x24\xfa\x56\xd3\x56\x03\xfb\x6a\x3f\xa9\x61\x5a\xcb\x94\xb2\xa2\xf5\xe3\xd2\xe0\x0f\x33\xa1\x35\xd4\x17\x10\x6f\x2c\x0d\x08\x93\xa1\xad\xf0\xc6\xac\x66\x32\x59\x3e\x42\xc9\x9f\xa5\x53\xbd\x95\x2c\x5f\xfa\x5a\x34\x4d\xa0\x2f\x96\x2f\xac\xa2\x84\x8d\xb9\x63\xe9\xbc\x44\x41\x38\x43\xf6\x84\x4f\xc6\xd2\x17\x10\x9a\x45\x67\xb2\xb4\x87\x84\xec\xe0\x0e\xa6\x50\x96\x54\xd3\xa0\x16\x78\x09\x2d\x6a\x96\x41\xc1\x5c\x62\x5d\x19\x54\x2f\xa2\xbf\x40\xcd\x1b\xef\x27\x26\x47\xa8\x08\x68\x2d\xb8\x4f\xd3\x1e\x8e\x32\xc0\x54\xcc\x85\x10\x65\xa6\xab\xea\x6b\x59\xc9\x12\xde\x90\x03\xc7\x96\x3b\xd8\xd7\xee\xf0\x03\x3a\x80\xd5\xe3\x12\xda\xa4\x61\x97\x9d\x17\x36\x6b\x08\xda\x83\xa4\x65\x95\x25\xb4\x49\xa3\x29\x2c\x9a\x13\x5f\x0f\x08\xb4\x7b\x84\x2e\xe1\x85\x81\x81\xc7\x5e\xec\xb2\x64\xb4\xe1\x21\xc9\x19\x05\xf3\xc1\x2b\xf7\xdc\x26\x63\x34\x2b\x5d\x0e\x4a\x1d\x9d\xe5\xa0\x1a\x20\x89\xa2\xb0\x52\xb1\x75\x8b\x72\x80\x77\x4a\xca\x29\x88\x5b\x6b\xcd\x5b\x10\x3e\x4d\x4b\xb7\x85\x2e\xcb\xcd\x63\x32\xdf\x4f\xb3\x3c\xc8\xdf\x7d\xc4\xf0\x06\xb1\x66\x72\x38\x21\x31\x98\x51\x31\xae\xad\x7a\x35\x4f\x1c\x4a\xde\xe5\x34\x33\x99\x71\x21\x55\xd7\x4e\xc9\x42\x2b\x93\x17\xff\xa4\x62\x9f\x3c\xc2\x20\x08\xfe\x02\xa6\x31\xb3\xeb\x13\x87\x94\x19\xd1\xb9\x26\xe1\x21\x91\x58\x25\x71\xb7\x5c\xe4\x54\xaf\x07\xe0\x1b\xde\xb8\x17\xf7\xa9\x31\xcf\xbb\xe3\xab\x97\x1f\xd2\xa0\x45\xb5\x72\x71\x13\x58\xe6\xb8\x20\xf4\x9b\x64\x2f\xd0\x93\x37\x09\xaf\xfc\x54\x7e\x7b\x2d\x88\x84\xb3\xe0\x54\xa6\xb8\x18\x92\xb5\xc2\x72\xe3\xb2\x12\x4f\x13\xd2\xe1\x30\x9e\x50\xc6\xd0\xa2\x59\x41\x86\x44\x34\x9a\x10\x06\xd7\x0c\x11\x52\x7d\x5f\x07\x2b\xa4\xc7\xe0\x3d\x03\x61\xd1\xd7\x7f\xd5\x42\x61\xd1\x73\x7e\xd6\xd2\x0b\x82\x87\x2b\x65\x90\x50\x77\x27\x59\xce\x7a\x80\x04\x0b\x51\xf0\x4c\x36\x95\x4d\xab\x75\x83\xfa\x2d\x1e\x5b\x51\x35\xc7\x86\xde\xba\x81\xb8\x5e\xed\xb5\x50\x59\x0f\x50\xdb\x51\x82\x5c\xdd\xe8\x37\xa8\x6a\x73\x87\x24\xbf\x30\x30\xa2\x3b\x80\x44\x34\x0c\x01\x0d\xf0\x4d\x6d\x32\x79\x71\xec\x8a\x6b\x2d\x54\x87\xa1\x56\x94\xc1\xd9\xda\x4f\xca\x26\xd4\x8a\x1a\x38\x56\x80\x6b\xc0\x99\x64\x68\x02\xec\x7e\xe2\x5b\x15\x37\x5c\xb8\xd0\x76\xad\x14\x2a\x0d\x0d\x2f\x8a\xb7\x96\x5e\x71\x15\xe8\x66\x9d\xb9\x06\x8a\x43\x42\x40\xe4\x6d\x69\x9a\x60\xa4\x92\x2e\xdd\xae\xae\x38\x36\xed\xe0\xca\x12\xcd\x56\xe3\x6b\x44\x05\x99\xe6\x2e\x0a\x4a\x67\x0b\xa8\xff\x9f\xb1\x2b\x39\x9b\x18\xd5\x81\xa9\x4c\x08\x6d\x36\xc1\x65\x72\xf1\x9a\x7f\x08\xef\x73\x95\xa6\xca\xef\xf6\x1f\xdd\x6d\x83\x00\x21\x0a\xad\x25\xa9\x76\x9f\x81\xfc\x7d\x1a\x45\xd6\x0e\x75\x97\x8b\x1f\xf8\x07\x1e\x73\xd5\x5d\x30\x9a\x62\x9a\x86\x93\xcc\x68\x2a\x2f\x2c\x9c\xd6\xa5\x10\x82\x99\x06\xcc\x83\x19\xa1\xf2\xca\x38\xfd\xc3\xf6\xef\x3f\xd3\x01\x1c\xa3\x32\xd9\xcf\xf4\x0f\x90\x6c\x3a\xdd\x47\x0d\x52\xed\x1f\x72\x18\xa2\xba\xd2\xfd\x4a\xd2\x73\xbc\xd8\x35\x94\xf6\x7c\x0c\x14\x38\x5d\x1f\x1a\xde\x93\x70\x93\xe8\x1b\x0c\x26\x36\x4a\x1b\xed\xdd\x93\x9b\x47\x0d\x4d\x5d\xd1\xb5\x64\xc0\x33\xce\xf6\xa1\xf1\x62\xdd\xbe\x69\x4f\x8f\xc6\x23\x45\xb0\x70\x34\xae\x95\x94\x09\xa3\x31\xc8\x5c\x72\x63\xbc\x60\xb7\x6f\x66\x41\xda\x69\x7d\x8f\x1d\xd0\x0e\xda\x69\x71\xb4\x5c\x1a\x13\xc1\x9b\x4e\x73\x1f\x18\xa6\xce\x90\xd1\x93\x07\x35\x4c\xc2\x5f\xef\x83\x8e\xc0\x16\xef\x1b\x1a\x52\x7d\x49\x1c\x1d\xdb\xda\x13\xdb\xa9\x41\x30\x8f\x02\xde\x6e\x66\x49\xc0\x5b\x6b\x17\x47\x27\x49\xea\x81\x89\x73\xac\x52\x1b\x0c\x38\xb6\xeb\xe5\x78\xe1\x6e\xb7\xd1\x6a\xb0\x3c\x86\x2d\x0b\x63\x70\xee\xc5\x3f\x83\x9b\xdb\xff\x0f\x64\xbd\x70\x03\xf0\x5a\xb3\x70\x64\x5a\xec\xf0\xd6\x1d\xb4\xb3\x99\xe1\xe8\x39\xe7\x69\x83\xe7\x9c\x23\x92\xc7\x8b\x97\xfb\xe6\x95\x0a\x78\xd9\x9a\x1d\x13\x12\x8b\xc2\xe8\x1c\xb4\x1b\x40\x1a\x3f\x1d\xde\x23\xc8\xe1\x9b\xbf\x40\x61\x7c\x5d\xbe\x06\x1d\xeb\x94\xd0\x6e\x8c\x38\xf9\x85\xa6\x2d\xf2\xb4\x76\x13\x0f\xdf\xd0\x30\xe1\x4a\xf7\xd1\xa4\x0c\xd6\xc8\x13\xca\x19\xb3\x62\x58\x1a\xc6\xc4\x44\x9b\x28\xa8\x2e\x95\x01\x65\x0c\x68\x2e\x37\x2f\xe5\x04\x47\x7f\x3a\x24\x20\xd5\x59\x3c\x26\x98\xc3\xd3\xb0\x48\x91\x97\x0a\x31\xc7\x56\xbc\x8c\x45\x70\xd7\xfd\x03\x0e\xeb\xcf\x07\x01\x7f\x17\xff\x4f\x92\x34\xa4\x45\xfe\x15\x89\x0b\xec\x2a\xa0\x36\x98\x63\xdb\x57\xa3\xb1\xe3\xe4\xb4\x3c\xdc\xe9\xd2\xfe\xb7\x63\x88\xb1\xc4\xf6\x4d\x1d\xa8\x37\x67\x45\xec\x60\x56\x19\x9f\xbb\x8c\xb0\x50\x92\xc0\x31\x90\x44\xc6\x97\xec\xc1\xc8\x60\x65\x15\x1c\xe3\x40\xb8\xa5\x25\x5b\xea\x28\xcd\xab\x30\x88\x1a\xfd\x8e\x83\xbc\xa7\xeb\xd5\x38\x30\x45\xa6\xe9\xc0\xaa\xe9\x66\x33\x0e\x1e\x09\x3e\xba\xa1\xd5\x54\x72\xce\x31\x60\x31\xdd\x3e\x0d\x3e\x20\x49\x6c\x72\x12\x16\x5a\x2c\x01\xeb\x6e\x42\x50\x03\x50\x76\xf3\x76\x42\xca\xc9\x6a\x8f\x81\xc1\x60\x5f\x0f\x1a\x58\xd6\x45\x38\xc7\x38\x49\xb3\x9f\xb9\x1b\x3c\x28\x9a\x50\x0d\xf1\xc7\x99\x35\xb1\xf5\xc9\xd5\xf8\x86\x3a\x7d\xb1\x69\xdf\xfc\x05\x5c\xe4\xac\xe3\x1b\xd0\x4b\x6e\x9f\xf7\x73\x9e\x34\x2f\x17\xf2\xb6\x7e\x9e\xa1\x7e\x36\x08\xb9\x92\xd7\xc4\x7c\x37\xc4\xc8\xe7\x19\x14\x08\x2d\x0f\x26\xd0\x76\x00\xd8\x80\xc9\xd4\x5e\x4f\x83\x19\x23\x0d\xe9\x07\x9d\xea\xec\x76\x3c\x58\xef\xc3\x08\x7c\x3c\xe8\xd3\x90\x81\x36\xd4\xcf\xff\x15\x30\x46\x34\xd1\x6b\x4e\xea\xb8\xf1\x74\x7c\xaf\x41\x3e\x81\x67\x91\x88\x02\x6d\x56\x5e\x8c\x87\x68\xd9\xed\x21\x4d\x81\x4f\xc1\x17\xca\xce\x6a\x49\x88\x88\x8e\xfa\x69\x1f\x1a\x6a\x1f\xc4\x50\x6b\x7e\x04\x02\xea\xb9\xd9\x11\x3b\x58\xbb\x5e\x07\x79\xfc\x72\x03\x2d\xfd\x50\xff\xfd\xa7\x39\xb0\x3d\x7e\x9d\x53\xe6\x2f\x08\x3f\xaa\xdf\x40\x10\x8a\x64\x71\x30\xb6\x77\xf8\x83\x03\x97\x43\x93\x70\x21\xb5\xd4\xd4\x33\x10\xd3\xf4\x33\x8e\x44\x21\xa6\xd8\x28\xe4\xdc\xc1\xc6\x52\x3b\x92\x93\xb1\x65\xa5\x07\x3d\xc3\xe5\xf6\xd3\x02\x19\x67\xe8\x39\x90\x03\x53\x14\x32\xf0\x37\x4c\xe2\x06\x92\x97\x9f\xb9\x7f\xaa\x7f\x40\xa6\xda\xcd\x3d\x60\xcf\x57\x53\x80\xb8\x5f\x37\xc0\x28\x0e\xdf\x40\xa2\x24\xd2\xd0\x18\x0a\xf5\x1f\xcd\x9f\xc0\xf8\xe6\x41\xbe\xd8\xb4\x7e\x66\xe1\x85\xa6\xd5\x27\x5e\x14\x26\xb7\xf6\xf7\xe9\x3e\xa5\x67\x90\xa8\x0d\x1e\x99\x9f\x51\x24\xd7\x9c\x55\x8d\xe9\xc5\x9d\xd5\x78\x2b\xd2\x00\x2c\xe1\x1b\x50\xb1\x6e\x9f\x67\xf0\xba\x8e\xf5\x80\x8a\xd5\xf6\xde\x00\x2c\x75\x08\x5f\x30\x1d\xa3\xf6\x52\xd4\xdc\x8c\xfe\x00\x9c\xe0\x29\x21\x0a\x95\x2a\x2d\x1a\xef\xae\xfd\x4f\x8a\xb8\x60\x08\xb0\x6f\x1c\xd1\x48\xbf\x66\x20\x33\xde\x68\x33\x47\x4b\xb9\xea\x2f\xa0\x16\x93\xa8\x8f\x84\x9c\x9b\x9b\xe0\x81\x35\xdc\x04\xc2\x3d\x3d\xeb\x0d\x61\xec\xfe\x9f\x1a\x59\xc9\xb8\x40\xc6\x9b\xe9\x21\xf6\x8a\x62\x68\x7e\x9f\x37\x51\x5d\x17\xa2\xe7\xaa\xf8\x8b\x41\x15\x93\x66\xad\x43\x2a\x0a\x13\x44\x47\xea\x8a\xcf\x07\x49\xb3\x06\x41\x8c\x6a\xce\xea\x4c\x18\xa3\xff\x07\x64\xa4\x70\x52\xc0\x78\xed\x20\xf7\x40\x98\xb1\xf3\xc5\x04\xeb\xb3\x7d\xfe\x87\x43\xbe\x2e\xf8\x31\x70\x72\x74\xbf\x9f\xbb\xcd\x3f\xc0\xe0\x24\xbd\x78\x0c\x44\xf6\x58\xb5\x1e\xa8\xd7\xa6\xba\x04\x23\x08\x40\x75\x40\x46\x6c\xf0\x7e\xf0\x33\x14\x31\x02\x01\x11\xbc\xef\x6b\x96\x83\xb3\x6c\x29\x08\xc7\x41\x3b\x7e\x05\x2b\x34\x5b\x25\x1c\xd0\xe2\xaa\x3e\xe2\x08\x5a\xc2\x55\xba\x77\x44\x00\x25\xc8\x88\x12\x48\x9a\x63\x53\x62\xbc\x70\xb4\xda\x88\x1d\x33\x51\x82\x5a\xcc\xca\x30\x9e\x85\xc9\x13\x5a\xc0\x3f\x26\xce\x1e\x4b\x31\xe6\x29\x77\x17\xc4\x9f\x16\x7b\xf3\xc0\xb3\x48\x9c\x24\xd1\xed\xe5\x7e\xf4\x0b\x09\x12\x44\x02\x92\x27\xda\x9e\x15\x8b\x89\x08\xbd\xa5\x12\xa0\xea\x46\x15\x59\x81\x79\xf9\x0d\xe6\xd8\x57\x1f\xcc\xa7\xe8\x4b\x5b\x40\x0f\xec\x13\x36\x56\x9e\xfa\x22\x73\xf1\x72\xe0\xc5\x81\xf9\xfe\x23\x6b\x57\x22\x11\xf7\x01\xf5\xa4\xd7\x02\x09\x17\x8b\x20\x5e\x20\xbf\xa2\x95\xb2\xb1\x43\xee\x08\x45\x07\xfc\x04\x3f\x6b\xbb\x53\x83\xea\x1d\xb3\x43\xb2\x58\x56\xef\x9c\x79\x8d\x01\xb9\x0f\x1d\xa7\x19\xcc\x78\x63\xfd\x7b\x1c\x39\x91\xea\xe2\xa0\x12\x4c\x90\x2e\x0e\x5c\x46\xbc\x69\x0f\x80\x46\x0b\x96\x83\x72\xc1\xdb\x3e\x0b\x29\xfb\x03\x48\x6b\x9f\x0f\xc4\xbd\xc3\x3d\x82\x66\xaf\xed\x8b\x7b\x67\xf3\x9e\x49\x1d\xae\xa0\x46\xb0\x6c\xb2\xf0\x5d\xc0\x33\xd0\x29\x6a\x82\x19\x70\xc2\x82\xe7\xa4\x43\x8a\x2e\xcb\x71\x02\x9b\xff\xdc\x22\x25\xb6\xf7\x00\x94\xb8\xdb\xe7\x03\xaa\xd9\xbc\x52\x67\xf2\x82\x3b\x45\xd2\xd7\xf0\x33\x64\xdb\xe7\x19\x92\xc3\xe2\x14\xae\x83\xd6\xaf\x06\x5c\x07\xbb\x65\xdf\x95\x0c\xad\x69\x82\xeb\xe0\x7b\x8b\xfc\xcb\x11\x04\x50\xed\x90\xe1\x80\x7a\xb7\x7d\x0e\x94\x6b\xc2\x5d\x53\x03\x46\x4e\x1d\x57\xe4\x1e\x41\x47\xc4\xe1\x67\x5e\x7c\xa5\x81\x08\x26\x6e\xb7\x0b\x54\x5c\xb8\xd2\x19\x01\x5e\x9c\x01\x4d\x32\x63\xa5\x3f\x40\xe2\x86\x82\xc1\x5b\xf6\x06\x67\x59\x8c\xdc\xb9\x43\x35\x05\xf0\x17\x70\x5e\x86\x20\x0c\x37\xc0\xbb\x21\x57\x3c\xc7\x37\x29\xd0\x18\xe0\x3e\xb0\x79\x4c\xa9\x11\xb6\x30\x7d\x36\xa8\xab\xd4\x00\x63\x59\x7c\x2f\x0e\x54\xba\xf9\x9c\x9a\x0f\x8b\x10\xfb\xff\x2c\x3f\xa5\x67\x0e\xc1\xbc\xfb\xd0\xeb\xc2\x27\xca\x93\x13\xaf\x69\x7b\x81\x79\x58\xb9\x1f\x0f\xe3\x25\xdc\x05\x9c\x24\x9c\x25\x21\x1e\x28\x6c\x2d\x95\xe0\x60\xe0\x8b\xe8\x04\xf2\x6e\xb6\xa4\xce\x1f\xae\xd2\x1a\xd4\x44\xe9\x9b\xa2\x1e\x27\x94\xd0\xa5\xbb\x81\x0e\xa5\xde\x7f\x0b\x3d\x19\x88\xa2\xcc\xd1\x63\x6e\x64\x4d\x35\x48\x98\xec\xcb\xc2\x84\x9a\xd7\x5e\xaf\x13\x99\x1f\x95\xfb\x76\xcc\x8d\xdb\x4b\xb7\xe9\xc9\x5c\xe7\xbe\x8f\x4f\x14\xe2\x1b\xce\x4e\x31\x09\x84\xa7\xfb\xa4\x61\x47\x6b\x37\xa1\xf7\xb5\x03\xf2\xa4\x77\xa4\xa4\xf9\x64\x70\xb2\x6f\xf4\x93\xb5\x6e\x9a\xa9\x2e\x60\xaf\xe9\x67\xc4\xf0\x68\x25\x26\x9c\x0b\xb6\xe9\x16\x09\xd2\x8a\x49\x20\xe0\xf1\xcc\x15\xde\x3c\xb5\xed\x66\xc5\x16\xf0\xb8\x2b\x25\x95\xa0\xeb\x44\xf8\xb2\xb1\xf1\xac\x59\x2a\x49\xcf\x0b\xda\x79\x75\x59\xb9\x4d\x4d\x64\xcd\x72\xaf\x7a\x06\x5a\xff\x34\x48\xdd\xe5\xf2\x0f\x49\xa3\x9a\x6c\xc0\x38\x52\xdd\x4c\x84\xc2\x38\x17\xd6\x6c\xf4\x04\xd7\x18\x1a\xb2\x80\x87\x9f\xa1\x4d\x5f\x7e\xa6\x8a\xd6\xab\x4f\x78\x3c\xdd\x20\x62\x8a\x86\xff\xe7\xad\x69\x99\x02\x6a\x68\x75\xc4\x4c\xe6\x7b\x54\xe2\xe2\x31\xe1\xaf\xa0\x4c\xe4\x63\x36\x72\x8b\xc6\xc4\xfc\x8f\x3a\xb9\x27\x15\xb4\xfe\xbe\x43\xbb\x63\x12\x3b\x13\xd8\x68\x16\x99\xd9\x5c\xc0\x71\xf6\x1c\x93\x06\xd9\xb9\xcf\x97\x7b\xa4\x46\xb7\xbb\x09\x72\x97\x56\x92\xde\x9e\x8e\x9c\x9a\x3d\x53\xd7\xea\xf9\xc2\x3e\xf7\x33\x16\xca\xd3\x36\x70\x50\x7b\xe5\x11\x27\xf3\x61\xd7\xf4\x3e\xf0\x0e\x18\xb9\xf4\xea\x31\x78\xf6\x4b\x09\x31\x5f\x78\xda\x8b\x54\xe3\x33\x78\x47\xff\x53\x51\xd5\x31\x83\xea\x24\x11\x18\x10\xdf\xe6\xb4\x54\xb6\x7a\xa1\xe1\x81\xe0\xca\xf9\x63\xb2\x78\xb1\xca\x54\x8c\x89\xa8\x97\x50\x66\xe5\x31\x5f\x74\xdb\x8b\x34\xc6\x33\x20\xe2\xbd\x70\x28\xb9\xe3\x78\xb5\x89\x98\x97\x98\x96\x23\xd4\xb5\x7a\x0e\x18\xf3\xe2\x18\xa7\x39\x91\xdd\xd7\x3b\x6e\x0e\x8a\x09\xbf\xc0\x95\xd5\xb1\x32\xe7\x05\x9a\xc4\x1c\x2f\xbc\x0d\xa7\x06\x9d\x93\x34\xea\x7d\x6a\x5f\xed\xfe\x3a\x81\x5d\x7d\x71\x9a\x0b\x07\xa3\x79\x69\x0d\x7e\x20\x12\x16\xad\xfd\x02\x0b\x13\x2e\x0a\x9b\x97\x7a\xe5\xbc\xf9\x07\x6c\x10\x4b\xc7\x45\x9a\xd4\xe2\x8b\x4c\x7b\x91\xf9\x60\xd2\xaf\xd4\xf7\xcd\x09\x68\x6a\x0f\xa0\xc9\x5a\xca\x4e\x5a\x33\xf7\xe4\x15\x37\x31\xfe\xfd\xe7\x93\xdf\x71\x32\x64\xc5\x92\x69\x9f\xb8\xc1\xfa\xff\x64\x0f\x0d\x7b\x27\xcd\x26\x81\xd7\x06\x41\xd3\xb9\xb3\xde\x85\x5a\x24\xda\x95\xcd\x63\xa2\xcc\x8f\xfd\x30\x66\x62\x5d\xe9\x01\x26\xb1\xae\xe5\x35\xab\x26\x3a\x01\xf1\x7c\xc1\x6e\x2f\x9e\x78\x60\xdd\xcf\x2c\x00\xcb\x16\x73\xd7\xb1\xe3\xd9\x1d\x1c\x6c\x50\x83\xcc\xf4\x8e\x1a\x23\xa1\xaa\x73\x28\x4d\x78\xa2\xda\x4f\x6f\x9e\x9d\x2f\x88\x46\x40\xd5\xe2\x31\xbc\x50\x75\x3a\x67\xda\x3c\xe1\xbf\xed\x95\x3e\x41\x92\x0f\x6b\x96\x09\xf2\xca\x9f\x64\x15\xdd\x38\xe7\x09\x76\xfe\x74\x08\x35\xb3\xb9\x91\x41\xd5\x0e\xd0\x9b\x57\xf2\x8a\x5a\x78\xb1\x6c\x75\x78\xc8\x64\x14\x8c\x4a\xa7\x8c\x79\x41\xce\xb8\xcb\x0b\xd3\xac\x5b\xca\xbc\x78\x0b\xb6\xbc\x7d\xf1\x6c\x57\xee\xfb\x31\xe1\xbb\xea\x1c\x4c\x93\x29\x22\x9d\x23\x6c\x22\x45\xe4\xfa\xb4\xf8\x60\xde\xd5\x20\x54\xc0\xc5\x02\xfe\x05\xab\xdd\x7e\x80\x13\xce\xae\xc5\x87\x1c\xa0\xa8\x9d\x11\xe6\x4d\x0d\x4e\x75\x03\x3c\xa3\x04\x87\xe7\x4d\xff\x49\xe3\x8d\x9b\x13\x5d\xfc\xc6\xc5\x36\xdc\x28\x13\xb7\xf9\xf9\x01\x11\x7a\x06\x3c\x75\x78\xd2\x7c\xf2\x2a\x26\x2a\x13\x7e\x0a\x62\x4f\xc2\x4f\x7b\x9c\xcd\x07\x0c\x5b\xdc\x04\x54\x67\x9f\x2e\x92\x61\xfd\x01\x41\x8e\xb7\xe9\x43\x0b\xbd\x50\xf6\x42\x2e\x1f\x7b\x86\xac\x1f\xa6\x52\xbb\x70\x31\xb8\xda\x56\xbc\xf5\xc3\xea\x8b\xa6\x05\x4d\xb0\xa1\xdd\xfa\xe5\x28\xba\x7e\xc8\x51\xfc\xe9\x2e\xb4\x7e\xe4\x8d\x4d\xcf\x94\x2b\x61\x02\x77\x8a\x2e\x13\x00\x8d\xa7\x80\xdf\xfa\x9d\x68\xc1\x1f\x30\x44\xde\xcf\x2f\x02\xb7\x27\xf4\x82\x62\xb9\xc8\x30\xba\x36\x2a\x65\xc5\x6d\x6b\xa3\xad\xd5\x5f\x6c\x05\x53\xa0\x1e\x53\xf3\xac\x23\x60\xa5\xa3\x84\x0e\xb2\xb5\x51\x7a\x76\x77\x42\x95\xa1\xbf\xc0\x3e\xaf\x6e\x12\xf8\x62\x9a\x06\xf8\x1e\x9a\xa6\x82\x65\x92\xb8\x5e\x05\x24\x69\xe1\x17\x9c\x73\x4b\xf5\x33\xf7\xa8\xfa\x47\x28\x91\x23\xe2\x17\x42\x89\x8a\xb0\xc4\x2a\xa4\x47\xcb\x50\xb1\xe3\x24\xfe\x17\x3d\x6d\x7d\xe1\x5d\x95\x16\x35\xa1\xbc\x05\x3d\x71\xa9\xfe\x82\x27\x8c\x6e\xed\x0b\x7a\x62\x55\x71\x1f\xab\x26\xa2\xf7\x17\xe0\x76\xcf\x2a\x0b\xf9\xd8\x40\xbc\x2a\x64\xdd\xe7\x19\x27\x8a\xf4\x2b\x0b\x58\x77\x38\x85\xdd\x4a\x5d\xaf\x99\x95\xe9\x1e\x9d\x6a\x7c\x01\xbd\x0e\x27\xa5\x5b\x8d\xd1\x6a\x7e\xe6\x31\x26\x20\xb7\x50\x46\xc7\xa9\x7d\x56\xc7\xfe\x68\xfe\x1f\x95\x4f\x3c\xaa\xce\xcb\xbd\xe4\xc0\xea\x1c\xa6\x9f\x19\xec\xa9\xa5\xeb\x29\x8a\x44\x63\x07\x83\x7b\x66\xe1\x4c\xe0\xfc\x08\x0b\x8a\x5a\xa7\xa8\x5c\x83\xa5\xb0\xf4\xff\x00\xef\x08\x23\xad\x81\x50\x01\x1d\x00\x6b\x24\x3b\xfb\x87\xc6\x49\x11\x89\x83\xa2\xcb\x83\x66\xd8\xf7\x67\x13\x0e\xe4\xfe\x5b\x6e\x82\x22\xde\x0c\x06\xed\x6e\xf1\x28\x5f\xbc\xdb\x4b\xf3\xff\x94\xb7\xe6\x40\x26\xea\x29\x6e\x11\xa3\xf4\xa6\x84\xb7\x41\xfd\xd0\x94\xf8\xd8\xe3\x44\x49\xca\xea\x79\x21\x5e\x36\x43\x02\x2f\xdb\x82\xb5\x80\x80\x8b\x8e\xb1\x15\xdc\x23\x6e\x0f\x0b\x67\xc1\x42\x97\x5c\xe7\x74\x5f\x09\x88\xa7\x7b\x40\xc1\x03\x1d\x2a\x8b\x51\xe0\xc3\xcf\x1c\x93\x1a\x98\x58\xa9\xee\x67\x0c\x49\xf2\x7f\x01\xdd\x36\x63\xcf\x35\x77\x5c\xfe\x45\x12\x0b\xdd\xc4\xe7\x87\x1b\x59\xb9\x35\x86\x85\x1e\x86\x9f\x89\xb8\x2d\x38\x5e\x34\xfb\x81\x40\x0b\x41\x51\x25\xfc\xcc\x1d\x24\x44\xb3\x90\xf5\x51\x45\x2d\xc7\x42\x94\xd4\x67\x7f\x2c\x70\xaf\xb9\x91\xd8\x55\x7a\xa4\x95\xd8\xd5\xa2\x0f\xd0\x74\x38\x7f\xe2\xda\x89\x2f\x3c\x2d\x3b\x16\x6a\xf8\x0b\x4a\x92\xe1\x3e\xb8\x85\xc6\x9f\x72\xf7\xac\x9d\xab\x62\xde\xdc\xb9\xa1\x34\x44\xea\x69\x9d\xe6\x65\xb1\xa2\xb7\x2f\x0d\xeb\xc0\xb4\xea\x46\xbb\x0e\x88\x67\x2f\x3c\xd4\xb2\x25\xdc\x00\x85\xc2\xe7\x85\x4c\x30\xad\x41\x1f\xc9\x5c\x1a\x24\xa2\xa8\x8a\x20\xfe\x3a\x72\xc3\xf8\x0b\x50\xed\x89\x3f\x70\xce\x59\x40\x9f\x49\xb4\xd6\xfe\x24\xb7\xa9\x01\xf8\xd2\x16\x21\xfa\x95\x7a\xd7\xe9\x0f\xe2\xdf\x7f\xc2\x4e\x6d\x8b\x21\xda\x56\x67\x2c\xa2\x57\xcf\xd3\xc9\x60\x09\x37\x70\x22\x48\x49\xa3\x66\x60\xd5\xe7\x7b\x0e\x41\xeb\x08\x77\x84\xe1\x34\x92\xeb\x02\xf3\xf8\x58\x65\x8d\x71\x57\x0c\x58\x17\xc6\x60\xd9\x09\x4d\xaa\x6d\x79\xeb\x02\xde\xf6\xc2\x41\x2d\xea\xe8\xc8\x05\xb5\x68\x31\x5c\xba\x0b\xb8\x5b\x14\xdd\x84\x47\x1e\xc2\x9d\xa2\xd1\x3f\x80\x39\x2d\x19\x6f\x48\x11\x4f\xda\xcd\x13\xc7\x3b\xec\xa6\xb3\x98\xcf\xa4\x1b\x2b\x6d\x56\xb8\x41\xa3\xf7\xf4\x93\x75\x9e\xd4\x24\xe2\xa8\x5c\xe4\x60\x3d\x49\xa4\x96\xfe\xe1\x4d\xc9\xa2\xf1\xe1\x1e\x33\x7e\x78\x52\xb2\xf8\x07\x08\x3b\x9f\x9c\x0f\xca\xa4\x79\x0f\xd2\xe3\x60\xb9\x4f\xa8\x2b\x9c\x2b\x7f\x3d\x60\x3f\x41\xa2\x9d\x2e\x07\x56\x2c\xed\xd4\x7c\x3a\xea\x64\xff\x61\x18\x42\x7e\x3b\xb3\x4a\x5a\xb3\xb4\x23\xb2\x4a\x65\x30\xc7\x0e\xef\x59\x7b\xd1\xef\x2f\x32\xfc\x28\xc1\x77\x22\x43\x2d\xfe\x8e\x48\xac\x66\x53\xf3\xbe\x91\x7d\x74\x94\xee\x44\x7a\x62\xc8\x1d\x71\xe3\xc5\x14\x6c\xd8\xc7\x92\x55\x3b\x13\x43\x3a\x0a\x75\x47\x36\x71\x7b\x40\xee\x1b\xbc\xea\x96\x7b\xe4\xb6\xd6\x3c\xee\x1b\x16\x3b\xdc\xe2\xc5\x17\xdc\x25\x38\x52\x67\xca\x0e\x8f\x5a\x3b\x2d\xef\xe9\x53\xe0\x2e\x0b\xa2\x27\x85\x97\x77\x40\x45\x7b\xe1\xef\x84\x8a\x5e\x07\x56\x91\xb4\x76\x6c\x67\x55\x48\xc7\x34\xed\x08\xe4\x72\xda\xed\xbd\xd0\xd1\xda\x1f\x10\xa8\x69\x12\x0a\xb7\xb1\xde\x47\xae\x71\x15\x15\x1e\x7b\xa5\x16\x47\xfb\x7c\x47\x6e\x71\x3b\x1e\xef\x84\x8a\xba\x15\xef\xe9\xeb\xaa\x5b\xed\x0e\x9f\x02\xbb\x19\xef\x50\xb4\x3a\x62\x73\x87\x8f\x81\x9d\x49\x76\x40\xc9\xe1\x7c\xb7\x3b\x33\x0c\x55\xbf\x70\x93\x24\xd3\xf8\x70\x1d\x44\x03\x7c\x59\x8b\xa7\xb9\x71\xe9\x25\xec\xf6\x17\x5b\xce\x6e\x9a\x1a\x04\xc1\xfa\x53\x16\xed\xbd\x71\x40\x6e\x8c\xf8\xc9\xac\xda\x18\xda\x2f\xe9\xbc\x23\x3f\x91\xd5\xfa\x3b\xdd\x5c\xed\x80\xb3\x33\xc1\xa3\x53\x48\xef\x50\x8b\x76\x07\xda\xef\xe9\x34\xa0\x83\x74\x67\x46\x47\x07\xfc\xec\x28\x09\xe9\x7b\xf3\x0e\xec\xaa\xaa\xde\x63\x4f\xb5\xe8\xa7\x05\x7a\xbc\x68\x9e\x51\x99\xdc\xfa\x8f\x7d\x90\x19\x45\x24\xf3\x35\x3a\xc5\xc6\xfe\x22\xcb\x5e\xcd\x2b\xac\x8b\x63\xcf\xea\x7d\xf0\xea\xee\x2d\xf5\x22\xc9\xd9\x3d\x75\x91\xe2\x51\xec\x18\xdc\xd4\x1a\x14\xfc\x50\xbb\x37\x04\x71\x9e\x1b\x4c\x5c\xe7\x4d\xfd\xc2\xb4\xa9\x22\xc8\x63\x67\x61\x1b\x41\x98\x7d\xa2\x96\x9a\xa5\xc8\x24\xa4\xd1\xb9\xb7\x4f\x22\x6c\x0f\x02\x3e\xa3\xf5\xe7\x17\x68\x67\x32\xcd\x93\x37\x7b\x1d\x2b\x3b\xd4\x96\x55\x90\x7c\x9f\xb4\xbb\xea\x83\xf5\xc3\xff\xa2\x71\x51\xba\x9a\xc8\x45\x50\x2f\x4d\xd1\xbe\x5e\xfe\x74\xfd\x95\x9d\xe1\xed\x56\x74\xee\x40\x6e\x0e\x17\xd8\x77\x76\xa1\x41\xec\x94\x9e\xe6\x96\x44\x6e\x9b\xdf\x78\x05\xb4\x43\xcb\xf7\x3d\x47\xe5\x17\x4e\xd0\xe0\x2e\xa8\x30\x16\xd1\x89\xbc\x3c\x0a\xe8\x00\xab\x7b\x38\x1a\x89\xd6\x62\xc2\x7e\x5d\x3d\x4a\xc0\x26\x07\x85\xec\xcc\x6c\xe3\xd4\xd9\x3b\x51\x90\x0e\xb2\x1d\xc1\xe6\x55\xea\x84\xfd\x64\x8f\xea\x80\x95\xbf\x9d\x9c\x7b\xa7\x57\xa5\xb5\xb7\xfb\x45\xa0\x65\x11\xfd\xa2\x94\xae\x1a\xb8\x63\x47\x8d\x15\x07\x4a\xef\x0c\x00\x72\x1a\xdc\xfd\xe2\xbc\xf9\x05\x38\xee\xeb\xc0\xdf\x99\x67\xc6\x91\x1b\x3b\x93\x63\x3b\x69\xe9\x0e\x1c\x53\xa5\x51\xdb\xaf\x07\xcf\x22\x29\x71\x8d\xa6\xe9\x6e\x78\xd6\x18\x6e\x02\x54\xc1\x96\xfd\x85\x31\xd5\x99\x0f\xf7\x9b\x24\xfa\xff\x24\x49\xf3\x86\x8a\x28\x9b\xb5\xb3\x3b\x7c\x1e\x7f\x9b\x8f\xbe\x87\x4d\x68\x25\x10\xaf\xe3\xa4\xb7\x3b\x2b\x96\xf8\x2e\xb2\x3f\x39\xca\xff\xbe\x38\x58\x91\xc4\xfa\xaf\xe3\x47\xad\x44\xf8\x87\xf6\xef\x3f\xd5\x69\xa5\x0f\x40\x08\xbb\xbb\x1d\x54\x37\x59\xa3\x7b\x10\x53\x7c\xba\x20\xcb\x0a\x5c\x1d\x80\x08\x55\x17\xdb\x03\x5e\x85\xb6\xa3\x1c\xb4\x9e\x3a\x70\xe3\xd8\x78\xf6\x14\x7f\xf1\x0e\xc3\xf7\xca\x63\xe3\xd9\x23\x0c\x70\x6c\x58\x2c\x13\x8d\xa0\x19\x43\x82\xa3\x30\x41\xa2\x9f\x81\xf7\x74\xfa\x1d\x85\xe7\xab\x0e\xec\x03\x75\x9f\x5f\x9e\xfe\xc3\x51\x74\x30\x3c\xc6\x3a\xec\x83\x69\x9f\xad\x73\x3e\x0a\x8d\xdc\xc5\x1d\xf2\xb0\xd4\x79\x7b\xd4\x82\x6c\xb0\xa2\x30\x95\x41\x9e\xd6\x3a\xd8\xa6\x7f\x80\x34\xd2\x41\x71\xf0\x84\x97\xc2\xeb\x80\x72\xc8\x99\xc5\x0e\x06\xb7\x14\xf7\xc0\x2b\x5f\xf8\x03\x30\x8b\xee\xd6\x07\x4e\xf8\xee\x75\xcb\xb4\x33\xe2\xf0\xa3\x61\xa3\xeb\x2a\x71\x30\x89\xb3\xc3\x65\x8e\x46\x12\x45\x32\x42\x53\x0c\x3a\x0e\x96\x70\x9e\xd3\x2f\xd0\xc1\x48\xb3\xc2\xa4\xcd\xae\x35\x70\xe0\xcc\xae\x86\x25\x47\x87\x88\x35\xd1\x8c\x44\x71\x22\xaf\x83\xa6\x4e\x73\x1b\xb4\x4f\x55\xa2\xe4\xc8\x13\xdc\xec\xda\x99\x4f\x4d\x90\xf6\xe0\x11\x2e\xa0\x7f\x74\xec\xba\x66\x12\x92\x48\xd3\x00\x6e\x94\xd6\xed\x18\xb4\x28\xe8\x86\x73\x40\xbf\x54\x75\xdb\x38\x50\x0b\xcf\x8a\xbe\x03\x91\xd8\xd6\xcb\x1c\xef\x99\x5f\x1c\x2b\x7e\xb0\xa4\xb3\x33\xf1\x1e\x08\xd5\x76\x89\x86\x03\x18\x60\xd8\x75\xf0\x40\xac\x8a\x8d\x57\x07\x6a\xe1\xfd\xbc\xf6\x83\x1c\x6b\xee\x48\xed\xd2\x32\x4d\x37\xdf\xf0\x27\x08\xa0\xf5\xb4\x04\xc5\x97\x04\xdc\x01\xf5\x52\xb5\x72\xe7\x08\x5c\x4f\x24\x9d\x0e\x94\x15\x71\xaa\x96\x83\xea\x25\x47\x08\x1c\x11\x74\xe0\x17\x3f\x24\xd0\x58\xee\xf4\xc0\xcc\xe9\x0b\x86\x9e\x58\x1b\x79\x50\x21\xe4\xc0\xfc\x03\x06\xd2\x6a\x51\x40\x60\xd1\xdd\x42\xe7\x30\x44\xd5\x1c\x70\xe7\x15\x0d\x08\xf1\x76\x12\xaa\x63\xee\xf0\x07\xf6\x33\x63\x31\x4c\x01\x70\x88\xd7\x06\xfa\x21\x3b\xd1\x1d\x70\xdc\x73\x1c\xfb\x01\xe3\xe7\x66\xb7\xd1\x03\xb1\x27\x0e\x8f\x39\x16\x05\xec\xf2\x0f\x38\xba\x04\xbc\x8f\x9d\x43\x12\x45\xcc\x78\x63\xb5\xdb\xb1\xf3\x46\xed\xd5\x66\xf4\xb4\x95\x5a\xc7\x4e\xff\x14\xaf\xf6\x4e\xb0\x2c\x4c\x78\xec\x60\x72\x61\xe5\xe3\xa0\xdf\xa5\x45\x28\x34\x3c\x2e\x96\x75\x40\xc3\xe3\xb2\x6d\x07\x81\x89\xf0\xda\x01\xe3\xa4\x71\xc8\x71\xb0\xde\xa3\xdf\x87\x30\xf1\x26\xc8\xfc\xcf\xfe\x9e\x99\x4b\xb4\x6d\x11\x5e\x62\x0f\xb5\x23\x71\x8c\x99\xe9\xe0\x29\x32\xdd\x02\x8c\x68\x9e\xa6\xf3\xf7\xef\x3f\xad\x0b\x73\x1e\xb0\x55\x3a\xff\xc1\x01\x53\xa5\x4d\x93\xc7\x09\xc1\x20\xac\x76\xc0\xf4\xd8\xec\x3e\x75\x20\xc1\xb3\xad\x20\xc7\x09\x57\x27\xef\x4a\x68\x6f\xaa\x53\x09\x1f\xb0\x34\x96\xbf\xf9\x27\x1c\x17\x27\x54\xe4\xbe\x20\xa9\x7e\x26\xe4\xe2\x75\xcb\xff\xa7\x90\xd0\x8c\x42\xf5\x63\xeb\xef\x81\xe4\xcd\x61\x1b\xf8\x71\xa1\x74\x80\x30\xd0\x41\x8c\x24\x60\x77\x30\x39\xb3\x33\x2c\x1c\x37\x53\x4a\xe8\x3a\x74\x40\x53\xe3\xa2\x3d\x07\x5c\xdc\x5c\xe5\xe7\x60\x99\x38\x57\xe9\x39\x6e\x76\xa1\x29\x7a\xb2\x0b\x2d\xeb\x83\x51\x1b\xbf\x3c\xbc\xfe\xf8\xe0\x7c\x98\xfc\xc3\xa7\xd2\x43\x1d\x99\x76\xf8\x89\x28\xe6\xb0\x15\xe4\x64\x31\x0e\x95\xc8\x1f\xe7\x8f\x38\x5d\x7b\xf2\x84\x11\xce\x65\x51\xce\x5f\x76\x52\xf4\x43\xce\x9d\xbf\x60\xf2\x1f\x09\xa2\xf3\x97\x43\x9d\xfa\x01\x02\x55\x9b\xf2\xdc\xf2\xd8\x50\x13\x48\x90\x6c\xeb\xe7\xb9\xf1\xac\xd3\xf9\x7a\x6e\x8c\x7a\x57\x8b\x74\x3b\xb3\xb2\xef\xdc\x38\xfd\xfe\x80\x3e\x37\x3a\x91\x4f\xa8\x3a\x5c\x6e\xe2\x44\xca\x1a\x17\x21\x39\x0b\x73\x61\x69\xcf\x9c\x85\xc7\x82\x4e\xc3\x33\xc3\x21\xc4\xc3\x27\x5c\xbe\x1c\xf8\x7b\x26\xb2\xd1\xa1\x7f\x22\xdd\x71\x58\x67\x79\x56\x7a\xfa\xf8\x19\x25\x86\x75\x4f\x3f\x99\xfd\xb8\x7e\x3e\xe0\xe9\xa5\x13\xf7\x44\x8e\x99\x26\x59\x72\xbe\xd0\x65\x76\x5d\xfd\xcf\xc6\x44\x97\x6a\xa0\x21\xa6\xc3\xf3\x42\xbb\x58\xf7\x33\x75\x09\x62\xec\xb3\x65\x8f\xea\x81\x01\x0c\xae\xf7\x73\x36\x92\xa0\x69\x68\x39\xd5\xfa\x01\x11\x0c\x56\x1e\x9f\x99\x72\x6f\xfa\x87\xe4\x42\xf5\x81\x14\x32\x2e\xd4\x71\xc2\x50\xa6\x02\xe4\xe3\xec\xbc\x13\xeb\xcc\x3e\x19\x55\x6b\xbe\x86\xf2\x21\xac\x49\x3d\xfb\x89\x79\xf1\x07\xa8\xa1\xae\xdd\x76\xc2\x50\xe6\xda\x21\x27\x7c\xb4\x9c\xd4\xf4\x44\xd4\xad\x13\xce\x9f\x54\x56\x98\x3b\x06\x1d\x23\xab\x3f\xc0\xbe\xd1\x09\x7f\xc2\xc8\xe5\xa2\x08\x67\xe2\x10\x41\x9f\x73\xe4\xbc\x6a\xd0\x83\x4b\xa9\x67\xc0\x8e\xcf\x07\xc8\x65\xec\x44\x61\x27\x42\x14\x9c\x94\xfa\x0c\xde\xea\x75\x5e\x9f\x19\x92\x60\x9a\x98\xbb\xd8\x8a\xd9\x33\x72\x73\xfb\x13\x64\x6c\xd4\x91\x7e\x66\xd0\xc2\xa7\x93\x0b\x1b\xd1\x44\x61\x1e\xbd\x30\x30\x5b\x39\x91\xf9\x39\x39\x6f\x22\xfa\x05\x29\xd5\xc5\xa7\x4e\x26\xa6\xf9\xfe\xc0\x4d\xb4\xfc\x03\x84\xbb\x57\x76\x12\x45\x74\x77\x09\x0f\xe9\xea\x2e\x16\x9b\xd4\xd4\x23\x33\x8d\x8d\x9e\x27\x71\x8b\xb9\x8f\xfa\x92\xf5\x27\x27\x85\x73\x61\x40\x26\x6f\x51\xc1\xae\xce\x56\x0e\xc8\xad\xe7\x80\xfc\x06\x6b\x7e\xf9\x99\xac\xe4\x0d\xc5\x78\x06\x17\x59\x3a\x11\xcf\xe0\xe0\x94\x73\x91\xb7\xfc\x01\x84\x9f\x70\xfd\xb9\x78\x01\x17\xa4\x39\x19\xb4\x6b\x55\xf3\xb9\x43\xe0\x9a\x48\xe6\x39\x36\xfb\xa3\x00\x6f\xb3\x4f\xe3\xb9\x33\xb6\x4c\x24\x65\xea\x40\x2f\xf4\x9e\xec\xec\x1f\x5e\xce\x70\x59\xaf\xf3\x20\x8a\x76\x93\x80\x51\xae\xbc\x74\x1e\x14\xfa\x66\x3e\x44\xea\xba\x92\xf7\x99\x69\x69\x3c\xce\x63\xa2\x0a\x8d\x86\x79\xb0\x86\xa8\x3f\xd8\xd1\x83\xff\x07\xa6\x16\xde\x3c\x0f\xa4\xd8\xb0\x50\x38\xc0\x18\x66\xee\x83\x43\xf0\xfb\xef\xf9\x6a\x93\xc0\x79\x02\x93\x5b\xc8\x9c\x3c\x6e\x8b\x5f\xc0\x21\xe3\x75\x40\xfe\x41\xd7\x7b\x3e\xa1\x40\x1a\xce\x2f\x7d\x22\x5a\xc1\xd9\x04\x4e\x04\x2b\x18\x88\x9d\x27\x92\xb8\x9a\xf7\x4f\xde\xd0\x3c\xa4\x33\x57\x5a\x5d\xa6\xd3\x97\xb0\xdd\x49\xa7\x2f\x6b\xb3\xcf\x8b\xe2\xd9\xec\x45\xb8\xe5\xc3\xf6\xa2\x0e\xe1\xf3\x03\xb2\xcb\x0b\x00\x9f\xe9\xf5\xe5\x89\x83\xd7\x97\x0b\xb0\x9c\xc8\x49\x63\xff\xbe\xf3\xc5\x5f\xb3\x7b\xd3\x23\x47\x8d\x13\xe4\x9e\x50\x6a\x85\x6f\x79\x27\x6c\x73\xce\x74\x7c\xde\xac\x50\xee\x1e\x6e\x14\x5d\x11\x66\x3e\x6f\x64\x1f\x37\x12\x82\xb1\xce\x66\x86\xf3\x66\xce\x2d\x0d\xe1\x4e\xa9\xa2\x31\x22\x89\x8d\x33\xf6\x9f\x37\xa5\x8a\x41\x0c\xb4\x5e\x4e\x7e\x7b\xde\xdc\x00\xc5\x24\xdc\xa4\xd1\x5f\x3c\x18\x84\xba\x60\xa1\x60\xa3\x1e\xa4\xb9\x71\x50\xf7\xf9\xe4\x86\xd0\xb4\x31\xd4\xd8\x83\x78\xa8\xf1\x34\x7e\x78\xa8\x5f\xd2\xa9\x74\xfd\x7e\x24\x6a\xe8\x87\x8d\x8a\xff\xaa\x1f\xa0\xed\x93\xb0\xbc\x18\xcc\x6b\x53\xc1\xc5\x82\x18\x4e\xba\x72\xc1\xe9\xca\xf7\xa5\x0b\xa6\x35\xa7\x20\xb8\x7e\x39\x6e\x37\x49\x9e\xd4\x05\xe9\xa2\x57\x95\xb3\xac\x5c\x50\xa4\x39\x6d\xe8\xc5\xb4\x88\x8e\x18\xbe\x60\x4b\x73\x3a\x88\x6b\x03\x43\x49\x7e\x5d\x28\xba\xb6\x59\x47\x7e\x21\x5e\xf7\x33\xee\x8d\xf9\x58\xfd\x3f\xd6\x42\x5b\xf7\x2a\x14\xdb\xc2\xc1\x57\x41\xc4\x70\xf3\x0b\x3c\x3b\x75\x4b\xbb\x60\x09\x2b\x1e\x54\x01\x76\xfb\xf9\x03\xf0\xb4\x7b\x2c\x39\x2d\xee\xe1\x21\x84\xd0\x17\x28\x89\x36\xfe\x58\xe8\xee\xaa\x05\xa5\x53\x34\x45\x2f\x3c\xed\xce\xe5\x7a\x55\x8e\x48\x87\xfd\x55\x21\x7c\x74\xcc\x5c\xb0\xac\x7d\x38\x01\x6a\x36\xc7\x1b\x5e\x95\x77\xe9\xea\x17\x00\x06\xc2\x0d\x70\x97\x0a\xa6\x5d\x70\xca\x72\x4a\xb7\x0b\x60\xd5\x1a\xd6\xab\xf2\x7e\xa2\x6b\xe1\xd5\xe0\xf4\xad\x4d\x77\xa1\x7a\x9a\xb3\x13\x5e\x70\xda\x72\xea\x93\x8b\x0e\x54\x4e\x74\x73\xd1\x28\xe5\xea\x7a\x17\x54\x5a\x76\x93\xb9\x3a\x76\x69\xf1\xff\x04\x8a\x1e\x54\x67\xda\x3a\x4d\x5b\xcf\x65\xf2\x0f\xc9\xbd\x9a\x17\x16\xd1\xfd\x8c\x62\xd0\xca\x24\x9c\x75\xc1\xc1\xdf\x89\x10\x2e\xe4\x5f\x71\x3a\xcd\x8b\xa5\x33\x6c\xb0\xbb\x06\x0a\xe6\x37\xbf\x90\x9b\x50\xc3\x18\x40\x00\x3f\xb7\x08\x2d\x57\x37\x4d\x38\xf1\x3d\x0d\xcc\xc7\xd2\xdc\x01\xb1\xa5\xda\x8b\x1c\x83\x3e\x08\x28\xc7\xbd\x74\x50\x50\x59\xba\x5d\x80\x8e\x2e\x3a\x77\x05\xe7\x59\x04\x04\xf1\x80\x80\xe2\x45\xf5\x94\x0f\xc7\x0b\xb1\xa8\x4e\xf0\x76\xbd\x38\x6e\x76\xb3\x1b\xbc\xf3\xad\x83\xbd\x00\xe3\xaa\xd5\x4b\x17\x33\x0e\xba\x52\xde\x05\x5c\xf7\x59\x98\x49\x09\xac\x5b\xe3\x85\xec\x29\xce\x28\x78\xad\x0c\x1e\xd1\xa8\x98\x06\xda\x46\xa8\x6b\x71\xe5\x34\x8a\xb4\x94\x09\x5c\x5e\xd0\x71\x39\x27\xe1\xb5\x88\x4e\xdd\x40\xae\x9c\x5f\x98\xec\x53\xe3\x46\x29\x5c\x57\x1a\xb8\x5e\xf0\x56\x1d\x1d\x72\xa1\x78\x99\xdd\x35\xaf\x9d\x4e\xaf\x52\xa3\x5d\xb4\x9c\xb9\xd0\xdd\xb5\xf3\xae\xa3\x2e\xa9\xd1\x72\x6d\xbd\x0b\xa6\xb3\xcf\x3c\xc0\x9d\xde\x7e\x58\x17\xbd\xe7\xed\xe1\x7f\x1d\x5c\x2b\xad\xc5\xc1\x51\x49\x1f\x72\xc1\xb4\xd6\xbc\x14\x07\x2f\x12\x82\xc5\x17\xdc\xe5\x5d\xa8\xe9\x62\x62\xe7\xf9\xe9\x93\x86\x53\x41\x9d\xeb\x44\x29\x0e\xcf\x64\x82\x29\xa1\xb9\x8b\x55\xcc\x3e\xd2\x80\x68\x4a\x17\xf4\x0b\x5a\x2b\xc7\xd3\x5d\xc8\xee\xec\xfc\x3e\x17\x63\x43\x6d\x9c\xbd\x4e\x1e\x6d\x96\xd1\x27\x4e\x0d\x1f\x6d\x48\xf0\xe7\x0c\x0c\xd7\xc9\x99\xed\xfe\x01\xfb\xca\x07\x17\xd0\xd6\x57\xea\x03\x6d\x19\xaa\x5f\x48\xf8\xe7\xd8\xfc\xeb\xe2\x18\x44\xf3\x95\x71\x0a\x1a\x14\x54\x57\xb6\xbc\x5e\x84\x52\x5e\xdb\x8b\x2e\x43\xcb\x1f\x24\x06\x70\x97\xd4\x78\x7a\x5e\x60\x10\x74\x62\x97\xeb\xe2\x41\xe4\xa3\xe4\x26\x54\x8f\xbf\x1d\x44\x08\x17\xfd\x88\xc3\x9b\x9b\x2a\xdc\x1c\xc4\x9f\xb9\xeb\xa6\x22\x3a\xfc\x05\x17\x4e\x63\x82\x9f\x94\xd3\x4a\x5c\xc0\x5e\xcd\xc9\x9e\x2e\x62\x2f\x1f\x6d\x37\x8c\xa2\x9f\x06\xb8\x6e\xfe\x1f\x23\xf6\xc2\xb3\x0e\xaf\x6b\xf2\x5c\x99\x9f\xda\xb3\x88\x00\x53\x97\xc8\xbc\x1e\x18\x49\x2d\xd2\x51\x38\xc3\x88\xf6\x4a\x28\xa6\xbb\xc8\xf5\xb0\x42\xa6\xc6\xf0\x50\x17\x64\x71\xc6\x62\x69\x3e\x4d\x1f\x38\x4f\x1a\x46\xc1\xeb\xca\xd9\x28\x2f\x98\x48\x1d\x69\x7f\xc1\x0b\xcb\x39\x81\xae\x07\x52\x40\xa2\xeb\xfe\xe5\x22\x86\x7e\x48\x12\xa7\x7e\x40\x6e\x52\xcd\xe2\xfd\xe3\xe9\xba\xf4\x0c\xc8\xb3\xb9\x45\xd8\x07\x34\xc4\x1b\xf6\x51\x27\xb3\xbc\x51\x29\xcd\x2a\xb5\x1b\xbe\xf1\xb6\x37\xdc\x1b\xa5\x8a\xda\xdb\x78\xc6\x98\x00\xa2\x3a\x5d\x66\x6e\xa0\x3a\x4b\xe3\x9b\x99\xad\x75\x0a\xde\x48\x64\x6d\x8f\x80\x7b\xcb\xed\xe9\x1e\x81\xf2\x84\x0a\xef\xc2\x9a\x7b\x9a\x01\xf8\x47\x39\x1f\xc9\x5d\xf2\xd0\xd2\x9c\x41\x6b\x68\xff\xeb\x1b\x5a\x43\x7b\xa0\xdc\xc8\xd1\xb2\x55\xff\x8f\x83\x5c\x22\xe7\x2e\x38\xe4\x3c\x05\x85\x87\x9a\xdb\x07\x48\xd4\xb1\x7a\x97\x13\x89\x35\xdc\x3e\x46\x28\x79\x73\x17\x32\xb2\x07\x44\xb5\x95\x66\x88\x49\xaf\x8d\xa8\x6e\xa0\xc0\x6a\x1b\xf5\x9d\x3a\x49\x4f\x32\x61\x9f\x04\xf3\xfd\xc2\xbe\x69\x0c\x76\x57\xac\xb2\x4e\xd9\x3b\x55\x92\x66\x93\x4a\xc6\xd3\x98\x2a\x69\x14\x09\x50\x39\x7e\x60\xe1\x0d\xeb\xaa\x7d\x16\xef\xc6\x43\x56\xdb\xf5\x66\x1a\x6c\x47\x2e\xdd\x8d\x99\x6e\xd4\x05\xa2\x46\xed\x84\x7b\x23\x6a\xb4\x7d\xfe\xa7\x44\xf3\x0b\x2c\x79\x6b\x5b\xd7\x9d\xd6\x54\x33\x2b\xac\xa5\xbe\xbd\xdd\x8c\x0b\xb5\xba\xed\xee\xc4\x27\xea\x03\x05\xd2\x8c\xa0\x6e\x6a\x1c\x8b\x9f\x79\xe2\xe9\x60\xbf\x81\x2c\x87\x91\xc0\x0d\x6b\xaa\xc3\x26\xee\x91\x34\x69\xb5\xe1\x8d\x1f\xae\xbb\x79\x23\x52\xd4\x77\x90\x7b\xf0\x52\x22\xc5\xe9\x3d\xc8\x4f\x1a\xd5\xe0\x5a\xf8\x7f\x18\x82\x3c\x6a\xf8\x43\x39\x36\xe5\x0e\x3a\x4d\xe8\x0e\x7a\xa3\x00\x88\xab\xc3\xde\x41\xdb\xba\x74\x01\x77\x50\xfb\xaf\xbb\xff\x8d\xfa\xb4\xce\x3f\x7b\x23\xab\x9e\x9d\x60\xef\xf9\x9e\xf3\x8e\x5a\xbe\xa1\x21\xb4\x13\xe3\x0d\xdc\xb7\xfa\xef\xf7\x97\xc3\xe7\x06\x06\xb4\x3a\xee\x9e\x39\xeb\xfe\x01\x93\xec\x67\xd6\x06\xf1\x8e\x59\x39\xc7\xa2\x1f\x56\x4b\x23\xdf\x7b\x71\x7f\xb8\x01\x9a\x1e\xa4\xf1\xbb\x01\xd8\x5c\xde\xf6\x46\xee\x10\xd7\x71\xba\x17\x29\xd0\x84\x30\xa9\xb4\xbd\x42\xee\x1d\x45\xea\xcc\x49\x28\xf4\x61\x95\xfc\xbd\x93\x15\x2d\xe7\xe0\x4b\x65\xcf\x96\x1b\x88\xb0\xda\x49\xe8\x86\x09\xf3\x23\xc9\x0f\xde\x2c\x05\x64\x6e\x98\x2c\x6d\x06\xba\x99\x02\xda\xfe\x0a\x77\x42\x42\x8b\x85\x03\xf5\xaf\xcc\x18\x30\x5a\x7e\x0e\x83\x03\x85\x5f\x2c\xcb\x0f\x8a\x89\xe5\x1f\x4e\xae\xab\x5b\xa4\xf4\x16\x27\x1d\xc4\x52\x7a\x3e\x39\x4f\xd2\x4b\xdd\x67\x8e\x42\xe3\x3e\x39\x0a\xd1\xc0\x98\x4c\xd7\xad\xbd\xa1\x7f\xb3\x81\xec\x46\x0a\x68\xbb\xb7\xde\x27\x4f\x3c\x41\xe7\x9b\x6e\xec\x36\xd4\xdf\xc8\x9b\xe7\x5b\xc9\x9d\x90\xb1\xb8\x49\xea\x14\x35\xf5\x84\x8c\xde\x0e\xa9\xa1\x5b\x26\x9a\x17\xcc\xe2\x61\x11\x8c\x98\x87\x59\x9c\xcc\x54\x43\x1f\xf7\x91\x3c\x88\x99\xfc\xdc\xd4\xef\x0b\x45\xb1\x4c\xf4\x85\x7a\xc7\x66\xd9\x17\x5f\x6d\x1f\x3d\xe4\x7d\xf3\x0a\xf1\x79\x83\x54\x8b\x26\xaa\xaa\xbc\xda\x70\x2b\x37\x3c\xba\x1f\xd4\xa6\xf9\xf9\xff\x97\x1b\xec\xd6\x7b\x3f\xd8\x34\xa6\x88\x09\x9a\x5d\x03\xee\x7e\x92\x02\x91\x04\x87\xae\xe6\x6c\x65\xf7\x03\xd1\xe5\x79\x7b\x78\x96\xff\x37\xb1\xcf\x8f\xd9\x8f\xaa\x9e\x0b\x4a\xbe\xfd\xf4\x4c\xb8\xa3\x31\x3c\x88\x4e\x2c\x9f\x0f\x72\xad\xa7\x7e\xc0\x25\xbb\xfb\x03\x5e\x38\xc3\x3f\x50\xe1\x11\xfe\x22\x17\xd7\x44\x3d\xb8\x97\xeb\x0b\x58\x3a\x87\x8b\xb1\x3f\x1b\x94\xde\xda\x67\x0f\xbc\xca\xbd\x29\x1e\xd4\xff\xb0\x0b\xe2\xb3\x41\x03\xa2\x89\x7c\x18\x5e\x68\x4d\xfd\xc3\x8c\x1c\xbe\x69\x3d\x5b\x72\xa8\xc6\xb9\xd1\x6d\xc3\x7d\xbc\x28\xa8\x56\xad\xc5\x03\xd4\xd3\x85\xcb\x9e\x17\xf4\xc4\x14\xb6\x7d\x58\x8c\xcc\x35\x73\x1f\xa0\x9c\x65\xff\xe6\xa7\xa4\xcc\x76\x93\x49\x84\xdf\x80\xfd\xc0\x13\x83\xdc\x74\x0e\x87\x7a\x98\x9b\xce\x72\xf9\x29\xbc\x1f\xea\x3c\x7d\x90\x26\x79\xd9\xf5\xf6\xa9\x98\xca\xe5\x67\xf2\xa8\x16\x87\xf6\x5a\x67\xb4\x7c\x58\x8e\xd6\x75\xc2\x9f\xc4\x42\x12\x83\xcf\x8b\x85\x8a\x33\x4d\x3d\x35\xa7\xee\x4f\x17\xa1\x27\xf5\x61\x3a\xea\x1e\x20\xa1\x0f\x4b\x56\xee\x2a\x0d\xba\x91\x19\x44\x31\x70\x8f\x2b\x3a\x3f\xb4\xac\x3a\x22\xf1\x61\x31\x33\x6d\x9a\x87\x7e\xdd\xae\x86\xfb\xb0\x98\x99\xbd\x0c\x1e\x98\x5a\x6d\x1f\x78\x12\xd6\x4c\xff\xf0\xee\x54\xab\xe2\x9f\x4e\xad\x5f\xf3\x0b\xb9\x94\x5a\x3a\x78\x89\xd9\xdb\xe2\x61\x61\xd8\xcd\x44\xe5\x52\xfa\x87\x94\x78\x1a\x67\xe7\xda\x6a\x1d\x52\xa3\x26\x41\xfe\x8c\x94\xf4\xfe\x81\xc0\x5c\x7a\x97\x07\x8e\x63\xd6\xdf\x3e\xf0\x15\xb7\x1e\xe6\x19\xdc\x16\x3a\x75\x1f\xa6\x90\xb3\xdb\xc2\x33\x2e\x7c\xe1\x16\x10\x1b\xec\x61\xbc\x50\xa9\xdb\x0d\xf6\x09\x58\xd6\x05\xd5\x1f\x84\x10\x76\x1d\x46\x0f\x5c\xc7\x3f\x5b\x20\x76\x3c\x6b\x62\x91\xee\xcd\xe6\xdd\x87\x01\x80\x4e\x24\xfa\x44\xe2\x43\x51\xf8\x22\xa5\x6e\xc7\xdc\x07\xb6\xd5\xcf\x06\x00\x72\xb2\x65\xf4\x99\xb9\xf8\x22\x19\xf9\xe0\x9c\xa8\xe4\x99\x98\x24\xef\x31\xa4\x27\x5e\xdf\x1e\x78\x07\xf5\x07\xd4\xf8\x4a\x69\xf7\x4c\xba\x7b\x36\x77\x91\xa3\x30\x11\xe0\x79\x81\xfd\x67\xe5\xda\xea\x0b\x84\x1d\x5a\xef\xf7\x2c\x2e\xad\xc5\xcf\xca\x61\x88\x8a\x45\xc5\x8f\x2e\x9a\xcf\xca\x7d\xeb\x37\xe8\x2f\xe0\x17\x26\x0a\x4f\x7a\x5f\x2c\x32\xb1\xb7\x16\x4a\x7f\xac\xcf\xf2\xb2\x40\x9b\x0b\xab\x3e\x7b\x8a\x6e\x75\x82\x9c\x6f\xbe\xa0\x3f\x3b\x44\xb7\x90\xc0\x03\xe7\x34\xab\x08\x9e\x9d\xe2\xc6\xb2\x9b\xb5\x3f\xd6\xe6\x2f\xc0\x22\x16\x71\x50\xdc\xad\xcf\xd6\xda\x93\x28\xcd\x0d\x8d\xa8\x76\xc6\x78\x0e\xdc\x60\x3d\x79\xf0\x3d\xb3\x2e\xf0\x39\xfa\xbb\xa2\x66\xb2\xcc\x83\x21\xed\xd0\x73\x90\x07\x4c\x14\x32\x63\x58\x8f\xf0\x1c\x5c\xf2\xee\x17\x78\xcb\x16\xb2\x7b\x10\x4d\x68\xb3\xeb\x83\x34\x6f\x1f\x19\x74\x92\x4f\xc5\x65\x27\x82\x71\xbd\x13\x18\x5c\x68\xe7\x8d\x07\x8a\x3c\x5f\x41\x9f\x93\xfe\x5c\xd2\xdf\x3c\x27\x75\xa2\xba\x17\x3f\x17\xe7\x5e\x24\x40\xad\xe6\x3b\xe9\x83\xb4\x13\x9f\x69\xb8\x92\x1f\xfc\x01\x84\x9a\xe7\xf1\xa2\xcc\xf2\x51\x00\x8f\x30\xdf\xe4\x1f\xe8\xc8\xec\xb8\xff\xc0\x00\xe9\x98\xa0\x87\x4a\x2f\xf7\x08\x7b\xe2\x66\x77\x8f\x27\x0d\x8a\xc6\x27\x37\x94\x8f\x66\x62\x60\x32\xe3\xe1\x07\x4a\xac\xfe\x37\xeb\xd0\x03\x0d\xd7\xe7\xcc\x7f\xc8\xcd\xba\x09\x3e\x30\x36\xda\x7b\xf8\x79\xc8\x38\xa2\xf7\x21\xe3\xf8\xff\xf1\xef\x3f\xe1\xfc\x55\x0f\x10\x5d\xb7\xde\xf1\x81\x7e\xca\xb9\x16\x1e\x96\xd8\x70\xc4\xe7\xc3\xfc\x13\x76\xf5\x78\x80\xf0\x64\xa4\x88\x1f\x8c\x95\x53\x4e\x38\xf1\xfb\x91\xc6\xa9\x67\xd2\x54\xf4\x3c\x10\xbd\xee\xf7\xa1\x6d\xf9\x6f\x11\xe3\xf7\x03\x2b\xff\x37\xa3\xf1\x03\xa0\x9b\xb2\xd1\xc5\xef\xc7\x55\xef\x7a\xa6\x54\xd8\xfc\x02\x56\xfd\x3f\x36\x89\xdf\x46\x8a\x42\xcf\x1d\x61\x86\x7e\x0e\x8e\x51\x2d\xa2\x5a\x5b\x6f\x7e\xc6\x2c\x35\x0d\x01\x7e\x6b\xbd\xa9\x43\xa8\xb4\x7a\x13\xc9\xdb\x8d\x21\xfa\x7f\x10\xf4\xdf\xc1\x18\x3f\xd6\x96\xd5\x21\x10\x3f\x04\x00\x4c\x99\x8a\xe2\x57\x30\x49\xee\x01\xe9\xd4\x74\x1f\x89\x5f\x81\xcc\xf7\x24\x41\x05\x35\x3c\x89\x4c\x85\xb6\x36\x75\x89\x7c\x10\xbd\x69\xcc\xc0\x5d\xbd\x69\x8e\xe0\x16\xb7\xc9\x03\x26\x7e\x35\x27\x45\xeb\xc8\xca\x6a\xe1\x59\xa8\xb9\x30\x22\x82\xc9\xd0\x94\x43\x2b\x7e\x84\x52\x4d\x4d\xb4\x1c\xa6\x26\xb6\x65\xaf\x22\x03\xb9\x7b\xa7\x0c\x2d\xf1\x6b\xdc\x81\x45\xec\xc2\xe2\x69\x3a\x92\xe3\xd7\xd2\xfd\xce\x9f\x1c\x6c\x43\x43\x69\xbc\x27\xb9\x09\x9e\xd9\x5d\x84\x77\x30\x48\xd7\x0b\x2c\x26\x1b\x66\x80\x4e\x61\x57\xb4\x1e\x2f\x00\x73\xae\xdd\xf8\xc1\x78\xd8\xbb\xfe\x1f\xd9\x82\x86\x0e\xeb\xe1\x54\x85\xe2\xf8\x21\xc1\xc2\x54\x61\xde\xf8\x21\x81\x58\xf5\xbe\x18\x39\x9b\xfe\xe2\xe6\x17\xee\x84\x7a\x21\x2d\x08\xec\x83\xcd\xff\x33\xdb\xad\xb4\x86\xaf\x20\x60\x0b\xfe\x62\x32\xb3\x95\x3a\x7d\xf1\x8e\x2b\x18\xc7\x8f\x45\xca\x36\xcd\x54\x50\xc2\x7a\xaa\x58\xb4\x2c\x3c\xf2\xc9\xed\xae\x3e\x67\xf6\xa9\xf5\x42\x11\xfb\x9f\xe7\x16\x0e\xeb\xc3\x5c\xc4\x8c\x07\x4b\x34\xc2\x77\x4b\xf5\x4f\xe3\xb7\xc8\x33\xc5\x2f\xd0\x30\xdb\xfd\x03\x8f\xec\xe2\x4f\xc8\x55\x1e\x06\xa0\xc6\xea\x9f\x1f\x20\x74\x3e\x4d\xf0\x0e\x51\xfc\xc2\xc3\x26\x34\x33\x3b\xf5\x9f\xdd\x3f\x20\x8c\xb1\xfa\x19\x27\xc1\xe7\x7f\x94\x00\xfb\xfc\x8f\xcd\xd1\xb5\xbc\x50\xff\x74\x33\xe5\x91\x42\x42\x13\x05\x7d\xd0\xfc\x79\x8b\x12\x36\x74\xf1\xd8\x91\x33\xe3\x2f\xa8\x29\xf1\xdc\xc1\x02\xd8\xfb\x5f\x0a\x81\xc7\x0f\x8e\x59\xca\xd3\x1f\x3f\x64\x34\x90\xcd\x33\x7e\x07\x73\xda\xab\xb7\x73\x22\x7e\x42\x03\x3a\x29\x1f\xbc\x75\xe1\x90\xde\x2d\x16\xe1\x5f\x2e\xa3\x69\xfc\x2e\x0e\xd0\xbb\xec\x9a\xa4\xdf\x6f\x60\x99\x86\xc6\xc3\x38\x3a\xdd\x50\xe3\x07\x97\x23\x59\x80\xe2\x47\x00\xe0\x4d\x75\xe7\xaa\xe9\x03\x84\xbd\xcd\x9f\x25\x10\x8f\x58\xef\x99\x87\x35\xd1\xfc\xbc\x73\x92\x45\xd3\xc3\x2e\xff\x7b\x61\xfb\x51\xc8\x89\x3f\x37\x3a\xeb\xe8\x40\xdc\x7e\x29\x4c\x42\x3f\x70\x8b\x88\x5f\xb7\xb4\xe9\x74\x7f\x32\xf9\x46\xd3\x0f\x9c\x08\x3f\x27\xbf\xfa\x0b\x8e\xab\x98\x2c\x28\xea\x74\x08\x6e\xa9\xb3\x50\x9f\x1b\x5b\xf4\xff\xfb\xbf\xff\x54\xd5\xa1\x8e\x0d\xa5\xa3\xfa\xf0\x73\x0a\xd1\xff\x26\x6e\x2b\xf4\xee\xfa\xfc\x40\xff\x70\xb5\x88\xba\x4e\xd2\x6f\xc6\xc6\xa2\x4c\xcb\xa3\x4c\x75\x42\xf1\x1b\xec\x43\xcb\xb7\x15\xee\x42\x4f\xdd\x7b\xac\x85\x42\x18\x62\xab\x14\x47\xfe\x02\x71\x6a\x3e\x48\xb7\xca\xf3\xa4\xfa\x05\xba\x13\x8a\x08\xf8\x5e\x6f\x72\xf0\x89\x8d\x76\x0d\xdd\x52\x63\x7b\x4f\xa0\x98\x12\xdc\x5b\x23\x2c\x1d\xfe\x22\xcb\x9f\x88\x03\x70\x00\xc9\xac\x18\x5b\x03\x3e\x70\x8b\x9d\x18\xca\xab\xc7\x7a\x9e\xcb\x4d\xd2\xf2\x21\x0f\x98\xd8\x7a\x72\x99\xe6\x0a\xde\xd8\x7d\xf8\x19\x70\x3c\x34\x33\x9d\xe7\x79\xf5\x0f\x70\x85\x5a\x7e\x26\x63\x4b\x72\x6f\xb4\x8d\x54\xb7\xc8\xf3\xc7\x53\xc7\x40\x32\xe5\x8f\x8c\x0d\xfe\xd6\x3d\x34\xee\xf7\x14\xac\x55\x67\xc3\x36\x48\xa3\x86\xc9\xfb\x7f\xf8\x7f\x94\x5f\x9b\xee\x80\x8e\x42\xc3\x0d\x22\x1b\x83\x07\x3d\x38\xb1\x22\x19\x51\x61\x0a\x6f\x8f\x2d\x88\x59\xbc\x4f\xde\xf3\xcc\xba\xe6\xd8\x26\x67\xde\xf3\x8a\xf8\xab\x6e\x76\x98\x3c\x43\x3d\xc6\xc9\x6b\x8d\x9b\x44\x79\xa0\xae\x23\x74\x9b\x19\x14\xa6\x67\xea\x30\x24\xf8\x37\x18\x37\xe4\x00\x1b\x5b\xde\xa5\x2d\x41\xde\x13\xae\x4a\xc5\x19\x1b\xdc\x57\xba\x37\xce\xa2\xbc\x30\x7f\xa1\xfc\x8f\x52\x4c\xc4\xb6\x72\x29\xb5\x4d\x16\x21\x91\x17\x1f\xbe\xc5\xd5\xbb\x7f\xcf\x79\x50\x13\x7b\xe1\x0f\xa2\x72\xc7\x30\xbd\x36\x3c\xde\x74\x1a\x6c\x79\xc9\xb5\x98\xc3\x25\x57\x99\x02\x62\x83\xff\xca\xd2\x2d\x37\xb6\x83\xa1\x90\xeb\x4f\xa7\xd1\xc6\x1b\xee\x14\xc5\x07\x6f\x93\x9e\x35\xf8\xfd\xf6\xa9\x21\xbe\x17\xda\x29\x55\x4f\x6c\xbc\xc0\x0a\x7b\x6e\x2c\x42\xbe\x2c\xd1\x4e\x38\x6d\xb8\x87\x93\x3d\xfa\x7f\xea\x55\x2c\x22\x19\x38\xbe\x2c\x5c\x4e\x92\xa0\x29\x40\x16\x72\x5d\x16\x63\x83\x1f\x49\xf7\x3a\x5d\x54\x76\x7a\x43\xf0\x46\x3c\xfd\x41\xc7\x1e\xf5\x07\x54\x04\x78\x97\xc3\x67\xb7\x0b\x02\x6e\x17\x51\xa5\xae\x67\xdb\x45\x56\x68\x7e\x83\x07\x83\x89\x7e\x8f\xc8\xd6\xbc\xab\x91\xab\xb1\x9b\x7f\x6f\x2a\xb3\x35\x2d\xcc\x1b\xee\x2e\x91\x2f\x47\x95\x28\x63\xe3\x0d\x78\xb9\x3d\xa6\xf3\xd3\x18\xdf\x1b\x71\xab\x66\x45\x96\xde\x91\x4a\x26\x36\xd4\xde\x51\xd1\x95\xd8\x1e\x8a\x6c\xaf\x24\x9c\x2c\xba\x25\x17\xe2\xce\xbb\x0f\x9a\x87\x14\xf8\x7d\xa4\x7f\xf0\x21\x01\xa3\x84\x72\x5c\x44\xf9\x51\x8e\x69\x0b\x97\xf7\x40\xae\x0a\xa7\x8a\xf2\x23\x7e\xd4\x24\x96\x1f\xce\x7c\xc1\xe4\xb2\x61\xce\xb4\xd0\x85\xae\xb0\x52\x85\x46\xd9\x52\x8c\xf8\x0d\x6a\x70\x84\x75\xca\x96\x0b\xe5\x37\x30\x2a\x49\x81\xb2\x51\x69\x17\xfe\xe2\x61\x13\xa2\x8a\x89\x60\xa4\xe7\x8b\x82\x24\x81\x8a\xfb\x88\x82\xda\x33\x4a\x55\x1e\x85\x79\x5f\x94\x45\x33\x0a\x0a\x78\x2b\x73\x7f\x14\x78\x32\xa8\x5a\x6b\x94\xbc\x56\xea\x4e\x52\x70\xad\x54\x4d\xcf\x28\xb8\x56\x2a\xba\x2a\x0a\x3c\x19\xa6\x34\x2e\x51\x90\x29\x46\xd9\x18\xa2\x54\x84\x0a\x8b\x1b\x0b\x33\x70\x2b\xaa\x2c\x4a\x4d\x8e\xf6\x17\xb8\xef\xf9\xe0\x2a\xc8\xb9\x1d\x5e\x2d\xd4\x9f\x51\x8e\xa9\x28\x8d\x98\x40\x47\x61\x61\x4a\xed\x9f\x57\x87\x65\x0f\xa5\x3e\x8b\xc2\xbc\x83\x52\x9f\x45\x41\x12\x6d\x95\xce\x8b\xf2\xde\x53\xab\xea\x86\x44\x69\x88\x55\x94\x6c\x2b\x2f\x04\xe8\xe3\xe7\x67\x24\xce\xf2\xda\x31\x2b\xa1\x94\x63\x51\x3a\x0b\xb0\x69\xf5\x3b\x45\x83\x8e\xb6\xd2\x93\x07\xfd\xc6\xbb\xb8\x2a\xc2\x16\xe5\x3d\xcf\xc3\xf2\xb0\xc0\x04\xb0\xa4\xfc\x8a\x02\x2f\xda\x61\x1a\x3a\xc1\xb3\xce\xba\xc2\x14\xd8\x9e\xd8\x9e\x44\x6a\x75\xfb\x03\x44\xa7\x0f\x58\xc3\x5b\x1a\xbb\x28\x30\x01\x54\x1d\x4c\xe5\x05\x04\xed\xd7\xfd\x01\x51\x8b\x39\x14\xbe\x11\xf2\x27\x8c\x32\x78\x31\x2b\x7e\x61\xc1\x23\xcb\xcf\xc4\x56\xba\xd2\x94\x20\x5e\xd3\xbd\xa9\x04\xd2\xb6\x7a\x66\xa1\xf2\x57\x51\xb5\x28\x91\x3b\x4f\x6b\x13\x04\xd7\xfd\x2f\x3a\xba\x28\x2f\xa4\xa8\xc5\x43\x86\x45\x40\x8e\x35\x51\x10\x5b\x35\x3c\xa2\x20\x64\x35\xc1\x48\x36\xa3\x72\x83\x51\x60\x20\x50\x15\xac\x28\x30\x10\xa8\x50\x57\x94\x49\xf9\x28\x01\x5d\x5e\x04\xd2\x87\xb7\x10\x22\xc0\x37\xdf\x69\x4a\xaa\xf7\x4d\xd3\x24\x72\xf3\x1c\x2d\xf6\x21\x1a\x52\x7b\xef\x85\x5a\xe0\x77\xb3\x23\x6b\xaf\xc8\xe1\x22\x0a\x15\xed\xba\x90\x94\x9d\x2d\xaa\x81\x9d\x44\xfa\x7d\x0a\xf1\xee\x1f\x70\x0e\x09\x4f\x14\x26\xf1\x8b\xcf\x0f\x49\xb4\x88\x44\xfe\x69\xc5\x1b\x44\x39\x88\x59\x3c\xee\x83\x27\xbe\x26\x06\xfe\x12\xc3\x22\xf6\xa0\x52\x66\xfa\x07\xc4\xba\x17\x7f\xb0\xf0\x81\x7b\xe0\xc1\x21\x0a\xa0\x33\xaf\x8a\x7d\x8f\x72\xf2\xc6\xea\x79\xa3\xff\xab\x57\x1f\xc9\x67\x86\x45\x34\x7c\x1b\x3e\xd3\x06\xa5\xf9\xb0\xe0\x49\xdf\x86\xe9\x0f\xa8\xee\xd2\x75\xa4\x9c\x3c\xbf\x75\xc3\x29\x00\x1d\xc3\x83\x60\xb9\xea\xcf\x33\x67\x41\x83\x40\x9c\xb5\x6f\x2b\x85\xb5\xa8\x0d\xb2\x0b\x2a\x02\x86\x99\xe5\x42\x89\x0c\x21\xe0\xc2\x02\x7f\x86\xc4\x05\x88\x61\x78\xcf\xc2\xb7\xf4\x57\xbc\x69\x6f\x92\xa0\x85\x62\xce\x3d\xeb\x84\x0b\x8a\x4d\x57\x6f\xc9\x1b\xee\xd4\x9f\xff\xe1\x24\xee\x3d\xf1\x50\x8e\x98\x84\x04\x11\xd5\x3f\x80\xff\x3c\x6d\x00\x11\x56\x1a\x15\x60\x88\xe1\x4d\xf5\x50\x59\x21\x58\x5f\x9e\x8c\x9b\x70\x8b\xcc\x05\x2a\x1a\x1f\xd4\x3d\xb4\x70\x7c\x28\x2d\xd5\x42\x65\x35\x6a\x2b\x69\x6b\xc2\x08\x89\xe8\x0a\x5f\xcc\xf1\x79\xe1\xe0\x17\x7e\x81\x37\x62\x7f\xb1\xf1\xe8\xd2\x11\x5e\x13\x69\x7c\x7e\x00\x47\x55\x3f\x73\x22\xaa\x9e\x19\x34\x3f\xf5\x8c\x23\xdf\x5d\x42\x97\x2d\xaf\xdc\xa8\x1b\xcd\x5b\x9f\x06\xdf\x6d\x28\xbf\x82\xa8\x25\x87\xa9\x2f\x50\xdf\xd9\xaa\xe6\x8a\x54\xc6\x2a\xba\x15\xb5\xf0\x06\x15\xfe\x81\x67\xbe\x90\x76\x45\x69\x90\xd1\xdc\x05\xd2\x8b\x2f\xff\x7f\xc0\x6c\xb3\xf4\xcc\x3d\xf1\x69\x11\xb2\x63\xfa\xf9\xc1\xa0\xf4\x41\xaa\x09\x04\xb4\x6b\xe5\xfd\x7a\xf8\x07\x72\x98\xa0\x51\x45\xf9\x66\x65\x52\x8b\x5a\x09\x11\x86\x7f\x80\xaf\xd5\xa7\x05\x6c\x65\x25\x35\x89\x9a\x48\x46\x30\xb3\x22\xc3\xcd\xfc\x09\xeb\x54\xe8\xcb\x47\xfb\xd3\x41\x54\x2b\xe3\x1a\x35\x29\x8d\x88\x41\xb7\x8f\x0a\xe5\xba\xe5\x67\x05\xa8\x51\x56\xf7\xa8\x8d\x76\x13\x4f\x73\xa7\xb9\xc9\x63\xee\xe4\x36\x0f\xa1\x53\xb3\xaa\x63\xa0\x76\x70\x97\x24\x64\xed\x3c\xbf\xbd\xd8\xc8\x1d\x53\xbd\x12\x83\xc1\x93\x1e\x33\xf3\xc3\xd9\xb8\x52\x11\x93\xad\x64\xc6\x51\x07\x8f\x37\x13\x81\x20\xed\x61\xfe\x1a\xbc\xdc\x0a\x00\xd6\xd4\x9c\xeb\x0a\x53\x51\x47\x4e\x09\x6c\xa2\x06\xc5\xb6\x79\x98\xa9\x87\x85\x19\x6a\x80\x65\x3f\xcf\xb0\x51\x7d\x1a\x00\x8d\xdd\xdf\x27\x8d\xda\x45\xf0\x23\x50\x46\xda\xa8\x01\x3c\x28\x61\x51\x83\x24\xea\x96\x54\x89\x0a\x96\x07\x31\x93\x46\xd1\xc0\x1c\x74\xca\xd8\x19\x95\xc0\x40\x8a\xf3\x8a\x3a\x71\x46\x6b\x95\x21\xd5\xd5\xcf\x14\x71\xd3\x3f\xc0\xe2\xa0\x33\xbb\xb2\x50\x9c\x5c\xa7\xa2\xae\x24\x4a\x6f\x24\x4e\x10\xb2\xa8\x8b\xf8\x5e\x52\xb2\xa6\x32\x5e\x20\xb2\xd2\xec\xaf\xd3\xa5\x32\xd6\xe6\x23\x3f\x16\xe1\xd7\xf4\x17\xdc\xcd\xba\x26\xd7\x9d\x69\xc1\xcd\x01\x3b\x8d\x29\x16\x18\xcc\x30\xac\x9c\x82\x51\x91\x51\xd8\x31\x41\x51\x91\x63\xc6\x5a\xda\xba\xf3\xba\xe5\xe9\xdd\x29\xef\x2d\x54\x76\xca\x5e\x4f\xd7\x01\x30\x2b\xd0\x54\xa1\x7e\x1f\x02\x03\x15\xa5\xda\x9a\xaa\xa7\x44\xa5\xfa\x5d\xd5\x50\xa2\x1e\x94\x00\x16\x3b\x50\x62\x54\xa5\xec\x8b\x7a\x90\x4f\xfc\xc2\xc9\x26\xfc\xc2\xf5\x72\xa2\x39\xef\x20\xbc\xf4\xae\x3f\xc1\xeb\xdd\xcf\x48\x7b\xa4\xe3\xbe\x9e\x39\x77\x1a\xe7\xc9\x3d\xed\x25\x3c\xc9\xdc\x9a\xed\x13\xbe\xe5\xde\x0c\x27\xc3\x36\xfd\x3e\xf7\x9f\x79\x39\xf5\x22\x5e\x51\x24\x9a\xf9\xf9\x84\x20\x64\xb1\x64\x82\x21\xa0\x29\xe5\x69\xd4\x0b\x81\x1b\x26\x81\x25\x2d\x96\x59\x82\xc9\x63\xcc\xeb\x2c\xb0\x36\xbd\x19\xae\x5c\x3d\xf5\x81\xf8\x99\xe1\x79\x80\x2b\x80\x5c\xec\xa3\xde\xdc\x6f\xde\x5e\x37\xb2\x4c\x7a\x0b\xdf\x99\x7d\x53\xa3\xb8\x29\x24\x34\x91\x77\x4e\xa4\x5f\xe0\x79\x2f\x4d\x46\xbd\x93\x4a\x0d\x03\xa9\x83\x95\x20\x2f\xea\x8b\x73\xaa\xa2\x72\xa3\xde\x24\x5a\x44\xc2\x38\x31\xdc\x03\x60\x4f\x9b\xb2\x7d\x56\x3a\x00\x78\x66\x9f\xdc\x6d\x62\x07\xf8\x78\x0e\xc3\x85\x87\x2c\x29\x65\x49\x4d\x20\x24\xed\x48\x7d\x78\xe3\x9a\x7f\xc9\x83\x1a\x95\x1e\xa1\x4a\xca\x13\x15\x79\x85\x97\x87\xfc\x10\x3d\x8a\x5b\x1a\x43\x5e\xe4\xc3\x13\xed\x97\x2b\x31\xf4\x03\xc3\xc0\xab\x9e\x73\xd4\x53\x3f\x60\x25\x3e\x2f\x0c\xd4\xba\xf1\x33\xc4\xb7\x76\x6a\x43\x69\x63\x9b\x15\x1a\xa3\xa5\xe5\x3c\x19\x6d\xe3\xa5\x52\x2b\xd7\x18\x15\xf3\x93\x58\x6b\x25\x43\xb2\x45\x43\x61\x32\x06\x7d\xc1\x1c\x7e\x5e\xdb\x46\x18\x24\x09\xd4\x0a\x59\x38\xf4\x3c\xf9\x81\xa8\x2e\xdc\x77\x22\xaa\x20\xfe\xbe\xbb\x47\xde\xc9\xc2\x2d\x52\x58\x6c\x26\x92\x9b\x60\xb9\x49\x5c\x68\x3c\x70\xaa\x6b\x84\x59\x5a\x45\xa2\x0f\x89\xd1\xc6\x70\x64\x4f\xe4\x0b\x7a\xaa\xdc\xfe\xa3\x01\xf3\x28\xd9\x58\x34\xfa\x08\x4c\xcf\x0a\xe2\x50\x94\x37\x35\x1a\x9c\x29\x95\xd4\x34\x5a\xe3\x1d\xce\x3d\xc2\xbb\x72\x08\x1e\xb4\x74\x19\x90\x58\x6e\x2d\xe7\xd5\x3f\x24\xa2\x10\xbb\x34\x8a\xdd\xe2\x4e\x58\x9b\x43\xdb\xaa\x35\x32\xa9\x6e\x03\x8d\x91\x26\xca\x37\x17\x8d\xc8\x67\x93\x2c\x6f\x69\x6f\x91\x8a\xaf\x75\x2e\xa7\xc8\xe8\xd9\xab\x26\x1f\x41\xcd\xc3\x73\x95\xfa\x18\xb7\x78\x20\x14\xdd\x5d\x02\x88\x87\xbf\xbf\x48\x82\xa8\x86\x3a\xc6\x8a\x82\xd6\x39\x97\xfa\x7f\xa0\x32\x8c\x44\x60\x1b\x79\x6c\x8a\x64\x38\x29\x8c\xcf\x73\x43\x3a\x78\x3f\x0f\x0e\x41\x0c\x35\x38\x04\x3f\x63\x35\x05\x07\xda\xc8\x89\xd5\xd4\x0f\x46\x2d\x7e\xde\x20\xa4\xf0\x5e\x86\x83\xa6\x52\x3e\x44\x23\x34\xf3\xe2\x45\xae\x84\x88\x0a\x5e\x2f\xcc\x83\x48\xdb\x67\xa1\xda\x10\xec\xa2\xcc\x94\xd1\xa8\x80\x11\xbe\x68\x30\xf1\xb4\x69\x26\x25\xb2\xda\xbc\x55\x99\xde\x46\x3a\xca\x36\x27\x5f\x50\x97\x13\x3b\x71\xf8\x03\x9c\xd2\xc2\x0e\x6d\xa6\x4c\x13\xd1\x8b\x7d\x0a\x7b\xb5\x95\x02\x45\x44\xac\x64\x30\xcd\x2d\x7d\x14\x36\x89\xf2\xb6\x28\x0f\x74\x73\x6b\x6b\xf1\x0d\xf7\x42\x0c\xe3\xbd\xc1\x14\x32\xaa\x6e\x19\x6d\x71\x2e\x4c\x06\x8c\xc0\xe6\xb9\x3d\xe9\x14\x15\x7b\xce\x8d\xe8\xa4\x5e\xc7\x43\x47\x21\xb2\xa6\xca\x09\xd1\x88\xc5\x36\xcb\xce\x3d\xf7\xa3\x7f\xc0\x1d\x61\xba\xd3\x1c\x98\xc6\x91\xf9\xff\xbc\x64\x3b\x8f\xc5\xcd\x3f\x90\xd1\xaa\xc9\x82\x8e\xf7\xf7\xa7\x78\xa3\x68\xcc\x42\x6c\x0b\x40\x83\xea\xc8\x77\xda\x96\xd0\x4d\x17\xc4\x46\xa4\xa6\x42\x8e\xd1\x8e\x24\x49\xa3\x40\x7e\xbf\xb9\x59\xbe\x23\x58\xba\x58\x9e\x33\x56\x5a\xd9\xce\xa2\x9d\x1c\xb7\xee\x46\xed\xcc\x71\xfb\x07\xec\x2f\xe1\xa6\x06\x20\xe5\x48\xc1\x68\x27\x76\x8f\x60\x50\xbb\x7e\x7c\x41\x5f\x00\x28\x15\x7b\x58\x35\x58\x94\x94\x9f\x2e\x1a\x2c\x48\xd3\x1e\x3d\xed\x22\xb3\x6f\xfe\x82\x87\xa1\x2e\x64\x0d\xfa\x9f\x62\x7f\xaa\x06\x13\x92\xea\xb0\x44\xa3\xdb\xe5\xf4\x16\xbd\x72\xbe\xf5\x06\x35\x44\x42\x21\xed\x66\xd8\x87\x06\x8e\xfa\x5f\xca\xc1\x16\xed\xa6\x3a\x47\xf7\xca\xc6\x60\x18\x8f\x13\x46\xa7\x61\x10\x01\x47\xcd\xf2\x33\xdf\xa2\x78\xed\x30\xa8\x40\xc1\xb0\x62\xff\xab\x76\xe7\xfa\xb9\x0b\xec\x15\xcb\x95\x1b\xeb\xb7\xf9\xb0\x44\x38\xcd\xf0\x61\x9a\x3a\x27\x5d\x44\xdb\x03\x5b\x86\xc5\x27\x75\x50\x96\x0a\xc4\x5e\x96\x85\x4f\xf2\x94\x88\x7e\xa8\xff\x69\xfe\x81\x0c\x60\x36\xcc\x64\x81\xda\xd1\xfd\x07\x9d\xa7\xe4\x69\xff\x61\x26\x25\x12\x3a\xaa\x7f\x29\x0b\x50\x74\x40\x25\xa5\xe0\x89\xce\xf8\x1a\xbb\x84\x75\x24\x86\x09\x2d\x4d\x87\xa9\x4b\xf9\x70\xa2\xff\x6e\x3c\xeb\xfd\x8d\xca\x3e\x31\x6d\x47\x1a\xc0\x62\x87\xaf\x8e\x68\x19\x65\x96\x89\x8e\xe8\x98\x9f\xca\xbf\x44\xdf\x18\x99\xa2\xeb\x75\xdf\xa8\x21\x9a\x6e\x02\xd7\xb9\xea\x2f\xde\xd5\xb4\x21\xb5\x6f\xa8\xf3\xa7\x73\xa8\x6f\x24\xd2\xcf\x0f\x6c\x02\x22\x9a\x09\x99\x37\x41\x84\xce\x72\xb6\xbe\x57\xf5\xc2\x6c\xb1\xcb\x3f\x30\xd8\x4e\xc3\x04\xbe\x9b\x9b\x40\x45\x47\xc0\x8d\x12\xbc\x47\x2f\x59\xc0\x5f\x83\x80\x0f\x67\xb1\x17\x5a\x2f\xac\x6d\xa2\x61\xbf\x80\xef\x7d\x41\xc3\x2a\x79\x3d\x30\xdd\x07\xf2\xe6\xfa\x05\x2e\x96\x56\xb7\xa0\x78\xa0\xe4\x7f\xaf\x3f\xb8\x70\xf9\x19\xa5\x25\x04\x5a\x3a\xd4\x5e\x96\x16\xfd\xc5\x7f\xc5\xe7\x43\xaf\xc9\x1d\x9a\x48\x78\x85\xda\xfa\xd2\xeb\xfc\xf7\x9f\xa6\x42\x0f\xd1\x6b\x0e\xc1\x3f\xc0\xe4\x28\x16\xef\x48\x47\x53\x3d\x8d\x95\x23\x30\x45\x14\x1d\xba\x6d\xf6\x96\x4b\xa5\x16\x1b\x45\x9c\x9b\x44\x61\x07\xe5\x65\x89\x0e\x5b\x5d\x78\x16\x5b\xce\xbb\xfa\x68\x14\x79\xc5\x2d\x2c\x7c\xa1\x51\xb5\x1d\xcf\x9a\x76\x58\xf3\xac\x6d\xee\x8d\x99\x54\xfd\x3f\xf6\xc8\xf6\x97\xbc\xa8\xd1\x5b\x4a\x4b\x4d\x01\xe2\x9e\x6d\x50\xef\x3d\x47\x2c\x7a\x3b\x3c\x29\xcc\x8a\x09\x4e\xab\x7f\x40\x6a\x55\xb3\x49\xe7\x88\xcd\xde\x9d\x17\x1e\x4d\x6a\xe7\x00\xb5\xac\x88\x0e\x0a\x73\x26\xa2\x83\x14\xbb\x1a\x1d\xd1\x41\x56\x54\xf7\x4e\xa5\xb0\x37\x14\xf2\xed\x14\xbb\xee\x75\xd4\x30\x53\x8a\xc1\xe8\x63\xe3\x0b\xfa\xe2\x45\xa7\x55\x01\xb6\xd1\x07\x57\x51\x6b\x32\x3a\xb4\x59\x22\x11\xe0\xd4\xb8\xb0\x8f\xc0\xfb\x9a\xa4\xc1\x35\xf4\xff\xa8\x18\x6f\x92\x11\x64\x1d\x9e\x12\x28\x09\x9d\x7a\x29\x3a\x42\x8b\xe2\x33\x02\x62\x25\xb1\x11\xbc\x6b\xad\xf6\xe8\x54\x22\x2a\x3f\x6f\xf4\xc8\x65\x51\x0b\x40\xaa\x36\xc0\x76\x58\x22\xe3\xf3\xdc\x79\xc2\xf8\x03\x70\x6e\x71\x17\xf1\xef\x3f\xb5\x78\xbb\x42\xed\x18\x9e\x43\xba\x37\x29\xdb\x69\x74\x66\x82\x54\x64\x49\x74\x58\x1f\x6d\xc0\xef\x74\xd7\x55\x6a\xd2\xe8\xb0\x36\x86\x79\x0d\xf9\xa6\x8b\xfd\x06\xfb\xc4\xbc\x7a\xaf\x4c\xb0\x8e\xd7\xe1\xc5\xc2\xd5\x5e\x7d\x1d\xc1\x46\x73\xab\xee\xe1\x86\x39\xc9\xcf\x0f\x9e\xd5\x41\x62\x65\x1d\xa3\x1d\x09\x7f\x6c\xd0\xea\xa8\xcf\x1b\xe6\xf6\x95\x24\xaa\xc5\x45\x1b\x99\xa5\x12\x52\x2d\x86\x17\x62\xf1\x18\x35\xd1\xa8\xcf\x6b\xd5\x68\xdf\x73\xe9\x34\x4a\x84\x09\x85\xb9\x67\xe7\x59\xdf\xfd\x03\xce\x51\x4f\x34\x10\xaa\xca\xac\x45\xa7\x71\x72\x13\xfa\xeb\x48\x9c\x68\xef\xf9\x7e\x80\xff\xbd\x83\x0e\xf6\xa8\x41\xd1\x58\x39\x7d\x22\x1d\xec\x51\x24\x1e\xbc\x30\x08\x4e\x76\x38\xf7\xc6\xa7\xc7\x05\x61\x2e\x92\x0f\x42\x20\x2f\x25\x32\x29\xfe\x54\x4b\x3c\xfa\xc1\x69\xd1\x5a\x1e\x40\xd9\x16\xd6\x67\x9e\x92\xfa\x00\x41\x42\xe1\xf3\xe8\xe4\x20\x34\xcf\x67\x4e\x9b\x46\x85\x58\xee\xee\x03\xeb\x24\x1c\xb5\x30\x3c\xe9\x02\xa8\x41\x01\x12\xc7\xe7\x7f\x06\xa4\x77\x77\x01\x9a\x85\x3d\xfb\x49\x9f\x51\x63\x03\x28\x17\xe7\xe6\x4d\x02\x83\x68\x7c\x9e\x2b\x5f\x10\x91\x2f\x66\x2e\xaa\xab\x16\xfd\x02\x60\x31\x8b\x5f\x34\x59\x7c\x5e\xa0\xe7\x98\x5b\xc4\x9e\xf9\x34\x88\xda\x5b\xe6\xf0\x2b\x07\xe1\x16\x79\xd7\xff\xbc\x01\x00\x23\x20\xd8\x6f\xce\xbc\xc0\x68\x07\x82\x5e\x1e\x04\x10\x74\xb4\x3f\xf9\xd2\xf5\x3b\x79\x4b\xb3\x4c\x4d\xe5\x66\x66\x83\x41\x56\x31\xf7\xd1\x59\x1d\x44\x55\xe3\xa3\x23\x4f\xe2\xdc\x3e\x4d\xf0\xe0\xb6\x30\x7b\x5e\xcc\x6f\xdf\xf3\xfe\x50\x5e\x9a\xe3\x91\x7d\xc7\x76\xe7\xfe\x50\x9a\x7d\x5e\xc0\xda\x7b\xcf\xc1\xaf\xcb\xa1\x06\x83\x7e\x5b\x4a\x4e\x1a\x03\xa1\x47\x0e\x04\x18\x3f\x6a\x40\x74\xfb\x19\xf4\xcd\xde\x3e\x5f\x90\x41\x87\x3f\xc9\x99\xe8\xfa\x81\x3e\xa8\x3a\xa8\x06\x5c\xaf\xed\xe6\x3c\x52\x79\x28\x32\x07\xe2\x93\xec\x93\x3e\x7e\x5c\xed\xe1\x4e\xc1\xb2\x62\x9f\xf1\x23\x87\x6a\x97\x8c\x84\xd0\x92\xca\x63\x4b\xba\xfd\x03\x21\x8c\x3b\xdd\x72\xf2\xd4\xeb\x46\xeb\xde\xf0\x1b\xc4\x1d\xee\x16\x51\x49\x76\x95\x1e\x85\xc0\xaa\xfa\x07\x08\x5e\x9d\x80\xa3\xf0\xaa\xef\x81\x20\xa4\xbc\x3a\x2c\x69\x14\x1c\xca\xe2\x81\x51\x48\xa6\x89\x48\x88\x5b\xfd\x06\x55\x71\x1e\x19\x3c\xca\xec\x64\x39\x2a\xf5\x3f\xa6\x82\x96\xd9\x4d\x2a\xec\x51\x49\xa6\x9f\x79\x99\xf7\xc0\x58\xa8\xb6\x7f\xde\xc0\x0a\x49\x2b\x39\x2a\xcf\x2c\xf7\xd1\x78\xaf\x96\xfc\x1f\x8d\xcc\xab\xa3\x78\x34\xec\x3f\xc9\xa9\x41\xeb\xeb\xf4\xd0\x61\x7d\x2d\xf6\xa8\x1d\xe9\x47\xee\x91\x11\xa7\x86\xbf\xa0\xce\xe1\xf3\x03\x35\x86\xa6\x33\x15\x99\xe6\x56\x00\xd1\xcf\xc0\x88\x2d\x3f\x2b\x04\xb7\x32\x1f\x22\xa3\x73\x09\x75\x4e\x8d\x3e\xe0\xc8\xe6\x17\x70\x88\x84\x1b\xc8\x05\x53\x17\x50\x53\xc6\xa7\x81\xdc\xf7\x9a\x99\x2c\x3e\xab\xcb\xfe\x18\xb9\x1e\x6a\x93\xd0\x2d\xfc\x05\x9a\x94\xfa\x67\x0c\xf2\x84\xb9\x86\x91\x4f\x5b\xf8\x07\xea\x56\xbc\x60\x50\x23\xda\xb3\x67\xa4\x1a\xd1\x33\x83\x9c\x39\xf6\xab\x19\x41\x11\xe8\xd5\x20\xf6\x12\xbc\x1b\xc4\x5a\x3a\xfb\x46\x20\xa9\xef\x72\x8f\xc8\xe4\xd5\xdc\x01\x07\xe1\xff\xe1\x1e\xe2\xb5\x0b\x24\x60\x97\x01\x61\x4c\x52\xac\xef\x27\x5d\xfe\xa5\x03\x19\x13\x36\x30\x8f\x00\x95\x42\xec\xb2\x30\x26\xb3\x79\xa8\x83\x44\x6e\xd5\x2f\xb0\x24\xa4\x46\x84\x1c\xdc\x0e\xad\x1b\x93\x23\x74\x03\xd8\x15\x1f\x02\x70\x06\xe9\xda\x31\x68\x0d\xf6\x8c\x21\xed\xa2\xb2\x5c\xc4\x58\xc9\x5b\x9a\x02\x38\x91\xc5\xfa\xd3\xb5\x68\x2c\x84\x4f\x99\x8d\x16\xa2\x0f\x3e\xbd\x51\xb5\xfc\x21\x87\xb6\x0c\x91\xbf\x78\x05\x11\xfe\x19\xf4\x69\x57\x15\xfa\x18\xa9\xdc\x94\xb2\x79\xec\x30\xc1\x84\xbf\xa0\x4f\xb9\x6e\x2d\x63\xa7\x10\xfd\xbc\x81\x55\xf4\xf9\xb1\x53\x74\x9b\x77\x0f\x2c\xab\xd9\x04\x85\x63\x55\xf8\x30\xc6\x41\xed\xa8\x67\xed\x40\x4d\x56\x9f\x59\x47\x76\x29\x1a\x0e\x28\x97\xbd\xe1\x4e\xde\xa4\x84\x78\x06\x40\x98\xcd\xce\x83\x8e\xee\x9e\x87\x93\xfb\xcf\x83\x38\x51\x42\x46\x00\x7b\x9c\x2c\x68\x20\xd6\x3c\x29\x88\xbc\x59\x10\xc9\x55\x2c\x14\x98\x3e\xc7\x5e\xbd\x83\xa5\x45\xa6\x89\x06\x2a\xb3\xe5\x7b\x24\x2a\xf3\x49\x71\x91\x68\x3f\x53\x6a\x78\x7f\x5c\x03\x2f\x88\x86\x17\x74\xd5\x4d\x96\x85\x71\x11\xf4\x7b\x5e\xa0\xa6\xb4\xcb\xc5\xb8\x50\xcb\xc3\x82\x0b\x90\xca\x16\xe2\x71\xc1\x99\xd5\xec\x7e\x53\xe6\x7b\x47\xbf\x98\xab\xdb\x58\x3b\x6e\xc6\x2b\x88\x82\x1b\xb7\x6e\x0b\x78\xd8\x83\x6d\x8b\x1d\x77\x2e\xb5\x5f\x08\xbc\x20\x7e\xbc\x79\x3a\x5a\xc6\x20\x43\xa2\xed\x9a\xe3\xa6\x3e\xd0\x13\x7f\xe7\x3c\x6b\xd0\x2f\x0c\xab\xaa\x7e\x16\x83\x29\x11\x1d\xf6\x33\x1e\x8a\x15\x33\xe0\x83\x13\x41\x0a\x97\x81\xa4\x40\x9f\x93\xee\xa1\xca\x47\x50\x74\xc0\x73\xee\xc3\xc1\x4f\x4e\xbc\x86\x05\xf7\x7b\xc7\x43\x8d\x27\x89\x14\xd5\xf0\x8c\xb3\xba\x24\x7e\x49\xe4\xd0\x0f\x1b\x40\xbf\x5f\x68\x68\xb1\xea\x39\x69\x9a\xfa\x01\x33\xf9\x69\x71\xe2\x79\xd3\x33\xe2\x84\xc2\x0d\xe4\xc6\x0e\xfd\x70\x30\xf6\x44\xcf\xf4\x46\xed\x7a\xa6\x82\x43\xb2\x23\x12\x92\x49\x47\x19\x1b\x81\xa2\x04\x78\x6c\xd4\xe6\x4b\xd5\x1a\x1b\x2f\xe3\xd3\x6d\x70\xa2\xdc\x04\xaf\xa5\xda\xfb\x01\xb5\xa5\x57\x33\xa0\xb6\x34\xf4\x09\xe4\x00\xb2\x23\x7b\xa4\xeb\x9d\x36\x45\x14\x4e\x9c\x3f\x20\xf2\xd1\x51\x1b\xf0\xac\xb3\x85\x38\x0a\x2f\x1e\xd3\x2d\xd0\xb0\xa2\x6d\x14\x85\xe7\xbb\x24\x5c\xb0\xf8\xeb\x34\x15\x95\x72\x5f\x3b\x29\x2a\xed\x88\xe2\x90\xa8\x64\x19\x1d\xcf\x91\x5a\x41\x7f\x41\x1c\xa3\x99\x82\x4b\x7f\xb1\xc3\x72\x54\xae\x87\x59\x04\x08\xcd\x46\xa6\x68\x5c\x1f\xe1\xf6\x48\xb8\xa5\x03\x3d\x58\xde\xf5\x4f\xe9\x51\x23\x50\x2a\xce\x06\xe2\x48\x28\xa6\xad\x1a\x2d\xa7\x45\xfd\xf5\x24\x40\x8b\xd7\xb9\xbb\x25\xd1\x02\x4a\x37\xdb\x98\x03\x4a\x37\x1b\x4f\xa3\xe7\xbe\xf1\x0f\x39\x68\xfd\x00\x25\xda\x90\x44\x8a\x51\xfe\xfd\x27\xa6\x99\x74\x54\xf8\xa6\x6b\x31\x07\x6f\x37\xe6\x40\x04\xe0\x59\x89\x16\x83\xc5\xc4\x44\x52\x3a\xe3\x99\x1d\xe0\x8c\x67\xa3\x76\x0c\x96\x98\x30\x4b\x0e\x0e\xc2\xcf\xbc\xec\x98\x19\x82\x62\xb5\xfb\x87\xc2\x61\xfa\x07\xf0\xa4\xae\x1d\xc1\xaa\x6a\x4e\xf8\x10\x41\x78\x2e\x11\x14\xcc\xc2\x63\xe7\xf1\x80\xcd\x77\x16\x37\xf9\xe0\x59\xc3\x80\x0d\x38\x9c\x5f\x21\xd2\xa9\x5e\x68\x22\x00\x7e\x6c\xb0\x0d\x80\x9f\xa9\x7b\x4a\x20\x01\x8e\x8d\xb1\xc1\x8a\x21\x36\xcd\x05\x1d\xdf\xec\x73\x1a\x8b\x56\x8d\xe5\x37\x28\x0f\xa4\xef\x8f\xc5\x3e\x34\x77\x8c\x31\x57\xf5\xd4\x08\x14\x6c\xb5\x39\x37\xa8\xa6\x2a\x9e\x19\xa8\xa5\x66\xf1\xb8\x76\xa4\xb6\xf0\xb0\x76\x2e\xa8\x99\x10\xb6\xd6\xe6\xdb\x53\xec\x59\x69\xd9\x4d\x20\x20\xf6\x43\xc4\x85\x9b\x8e\xff\xa7\x84\x18\x6e\x92\x5b\x41\xe7\x5c\x1c\x24\x5b\x5d\x1c\x44\x2c\x66\x9a\x03\x7c\x6a\x31\x75\x10\xba\x9a\xa8\x03\x87\xbf\xa0\x6c\x64\xbe\x1b\x73\xc0\x41\x9e\xd1\x02\xc3\x6f\xce\x36\xcb\x38\xb8\x75\x2c\xf0\x51\x4c\xdf\x06\xde\x38\x79\xd9\xb5\xc8\x41\xde\x69\xdb\x30\x23\x1d\xef\x2d\xce\x09\x69\x84\x79\xe2\xa2\x4a\xc6\xcb\x79\x51\x02\x08\x91\xc6\x95\xc3\xf2\x1b\xec\x43\xe3\x26\x86\xb1\x7a\x36\x50\x37\xd6\xda\xd9\x80\xe2\xc8\x37\xa5\x00\xa6\xb1\xaa\x34\xee\xe4\x6b\x11\x05\xb5\xd0\x67\xea\xa1\x16\x9a\x3e\x38\xef\x64\x18\x91\x70\xb3\xac\x9d\x3f\xa0\xec\xb6\xd8\x7c\x41\x4b\x75\x5a\x8a\x60\x06\x9c\xe1\xff\x77\xb6\xe8\x16\x4e\xfe\x60\x22\x99\xf8\xc0\xcf\x60\x7b\x9f\xa4\xd0\x1c\xd9\xf8\x10\x0f\xd5\x3a\x96\xb5\xac\x97\xef\xb0\xb4\x40\x1e\x67\x3b\x8d\x44\xba\xc1\x59\x18\x3f\x34\x07\x0b\xf2\x06\x2c\xab\xb3\x08\x5a\x05\x74\x49\xbe\x18\x4f\x54\xa2\xb5\x1b\xdc\x44\x89\xb5\x59\x36\xbf\x90\x13\x33\xf4\xc3\xe2\x1b\x9b\x7e\x60\x93\x7e\xbe\xf8\x42\xd1\x0f\xdc\x39\x42\xc9\x73\xe3\xc6\xf8\xdb\x99\x34\x51\x6f\xc3\xea\xb1\x89\x08\x7e\x6f\xdc\x09\xbb\xea\x26\x0b\xc8\xdc\x92\x40\x8d\x69\xe3\xa9\x2a\x58\x34\x0b\x36\xaa\x4e\xd9\x59\x60\x4c\x0e\x3f\x53\x54\xeb\xfc\x98\xa9\x22\xfa\xbc\x81\x8a\x2c\xa6\x09\x46\x4f\x5b\xb4\x27\x7d\xfd\x75\x17\x99\xf4\xd4\x57\x49\x8f\x98\x95\x8b\x2d\x89\x35\x51\x79\xd6\x0e\x8a\xb3\x22\x86\x5c\xa2\x7d\xa6\x76\x47\x77\xb4\x09\x3f\xfb\xe5\x18\xc4\x09\x70\x61\x1d\xdf\xac\x0f\x13\xc4\xfc\xf7\x0c\x55\x4d\xf8\x22\x3c\x53\x55\x23\xbc\x32\x1b\x8e\xc9\xee\x17\x82\x54\xfb\x85\xe4\x2f\xbf\x41\x28\xa7\xa3\x78\x36\xdc\x4e\x3f\x4d\xb2\x96\xa2\x24\xd4\xec\x74\x20\x94\x41\x6a\x26\x80\x10\x98\x9b\xc0\x03\xcb\xc1\x94\x13\x56\x38\x95\xec\x8b\xd9\x93\x9f\x34\x37\x83\xcb\x63\x96\x18\x08\xc5\x30\x99\x83\x2e\x28\xcb\x2f\x70\xf7\x6e\x7e\x03\xf9\xac\x86\x5f\x80\x8d\x40\x9b\x79\x42\x15\x13\xdf\x1f\x70\x68\x99\xa8\x40\x0d\x9f\xcf\x33\x20\xa9\xb4\x8e\x33\xe0\xc5\xe8\x89\x82\xde\xc4\xca\xba\x89\x0c\x33\xcb\xf9\x60\xe6\xa4\x9c\xd5\x7a\x23\x1f\x9e\x15\x86\x13\x6e\xef\xf6\x3e\x9e\x33\x87\xa4\x1e\x27\x7b\xd0\x90\x18\x1e\x67\x8e\xe2\x51\x2f\xcd\xe9\x9c\x54\x24\x78\x08\xef\xd9\x5f\x9b\xb7\x09\xb2\x0f\x97\xea\x67\x0a\x55\xc1\xd9\x09\x0b\x95\x6d\x3f\x73\x05\xb2\x2b\x8b\x22\xa6\x9f\x31\x90\x9b\x30\x58\x59\x79\x38\x17\x45\x47\xf1\x0f\x54\xde\x5a\x3e\x25\x56\x10\x42\x9d\x7b\x0a\x49\xad\x24\x4c\x58\xd6\xba\xcd\xc4\x0a\x66\xb8\x9d\x31\xac\xea\x63\x27\x53\x4b\xee\xce\x17\x2b\x14\x7b\x1b\xcd\x9d\x54\xfa\x99\x4c\xff\x79\x01\x61\x5a\xce\x69\x34\x91\xd3\xc6\x5a\xb8\x79\xe4\x79\xa5\x99\x38\x92\x6a\x4d\xfe\xc1\x5d\x60\x31\x8b\x2c\x01\x6b\x7c\x3e\xc1\xe6\x14\xfc\x98\xf0\xcc\xb2\x02\x65\xd2\x31\x4b\x85\x2b\x63\xa2\xf2\xaa\xef\xcc\x93\x8e\x5a\xf6\xc2\x9f\xc8\x1c\x60\xe5\xc5\x3c\x92\x01\xd4\x25\x55\x2e\x66\x39\xd4\xb0\xf0\x05\x77\x22\x8a\x4f\x05\x49\x62\x9e\xb4\xbf\x4f\x7f\x90\xfb\x4e\x44\x9f\x79\xf2\xfb\x0d\xcc\xad\x05\x2b\x72\xe5\xd8\x53\x63\xa6\x86\x45\x20\x6b\x9e\xc9\x11\x9a\x28\x24\x1b\x50\xe1\x8c\x98\x28\x5a\x6f\x05\xe7\x4c\x78\xe2\x8d\x72\x71\x66\xbd\x5a\xf0\x15\x9b\xf1\x27\x9f\xba\x79\xf1\x80\xd4\xd5\x60\x5e\xbc\xa4\x5b\x30\x13\xcc\x78\xa7\xa7\x1f\x99\x85\xcf\xc5\x79\x36\x53\xa7\x5d\x4a\xa8\x6d\xde\x34\xfa\xeb\x7a\x31\xa9\x42\xb1\x40\x43\x55\x7b\x5b\xa3\x67\xba\x79\x79\xa2\x6f\x2e\xbe\x1b\x80\xb3\x85\x40\xdb\x7c\x70\xc4\x29\x35\x6f\xcc\x87\x32\xd4\x13\xfd\x70\x56\xfc\x45\x8e\x53\x34\xa0\xc4\x6b\x53\xda\xbe\x98\x0c\x1d\xb4\x2f\xf8\x44\x8a\xa0\x69\xc9\x0e\x9f\xf8\xe9\x8b\xda\x7c\x72\x26\xfe\x1b\xc7\x62\x09\x30\x3b\x7e\xad\x54\x91\x34\x3d\x27\x15\x53\x3f\x60\x66\x74\x25\x5a\xb4\x3a\x8d\x4f\x0b\xb4\xc3\xab\x0b\x64\x39\x9e\x45\xe7\xe2\x42\x9a\x3c\xe3\x89\x45\xbc\xa1\x0b\xcd\x42\x86\x20\x4b\xfa\xb5\xe5\x5c\x2f\xfd\xc0\x9d\x57\xfd\xc5\xc9\x51\xb8\x49\x9c\x58\x76\xab\x5e\xcc\x61\xe0\x70\xe9\x55\x7e\x7c\x43\x6d\xd0\xe8\xe4\x58\xd0\x55\x28\xff\x45\x06\x4d\x4a\x76\xe7\x5d\x05\x7c\x27\x4d\xc0\x42\xb9\x06\x83\xc3\x05\xa7\x29\xc3\xcb\x05\x2f\xf9\x62\x77\xdf\x55\x78\xc6\x09\x38\xad\x17\xa4\x4c\xab\x59\x16\xc3\x07\x97\xbf\xa0\x9f\xbc\x5d\xbb\x16\xa2\x03\xcb\xf6\xf3\x0f\x98\x2c\x1d\x73\xab\x26\x8f\x88\xaa\x8a\xf0\x52\xa1\xb7\x85\xe0\xc0\xa6\x84\xbc\xb1\x2a\x73\xdb\x68\x98\x35\xa7\x4e\x2d\x34\xa0\x39\x49\xce\xd5\xb6\x7f\xff\x09\xfb\xde\x2f\xa4\x3d\x58\x8e\xfa\x5e\xc4\x3d\xf6\x41\x5e\xd0\x99\x34\xa5\xdb\x8d\x05\xdf\xfa\xf8\x7d\xfa\x88\xb7\x4d\x49\xc2\x05\x57\x2a\x23\xf3\xd5\xb0\x18\xc5\xef\xf3\x30\xd6\xbd\x79\x21\x37\x52\xb1\x9b\xf3\x42\xba\xe4\x62\xaf\xe6\xd5\x5f\x39\x66\x6d\xf5\xea\x1b\x5f\xd0\x38\x3a\x0e\x36\x89\x91\xc5\xc2\xb4\x0e\x56\x5f\x70\xcd\x37\x42\x5c\x88\x5a\xb4\xbd\x75\x75\x6e\x15\x3f\x4f\x12\xa9\xc5\xa2\xa6\x66\x99\x84\x0b\x41\x8c\x1a\x35\x80\x97\x4d\x33\x0b\x9e\xf8\xd3\xff\x0f\xae\x84\x08\x82\xaf\x93\x43\x35\xd7\xe8\xd8\xcc\x9a\xa5\x41\x7c\x59\xfd\x02\x6a\x64\x7a\xad\x47\xf2\xb8\x7b\x38\x38\x66\x8d\x61\x30\x51\x9f\x5e\xa0\x33\x52\xd1\xad\x6b\xc1\x97\xc8\xea\xca\x05\xdf\xa1\xb0\x6b\xdf\x0a\x0e\x5a\x2b\xc5\x5a\xf6\x76\xc2\x5e\x91\x12\xc5\x7d\x70\x37\x5b\xc4\x50\xed\x22\xe1\xbb\x60\xe3\x72\x12\xca\xc5\x72\xf8\xcd\xff\xa3\xe2\xbe\x8e\xa8\x05\x13\x96\x7d\x39\xd6\x24\x49\x7f\xa9\xf1\x1a\x8b\x69\x8f\x97\xe9\x45\xe2\x25\x17\xf8\x8f\x05\xe0\xa7\x92\xef\xb1\x26\x92\x47\x9b\x4f\x5e\xe0\x57\x6d\x82\x5a\x8b\x9c\x67\x39\x80\xf0\xc7\x4f\x3a\xc4\xb5\x80\xaf\x2d\x32\x57\x0a\x2b\x2d\x0b\x94\x40\x6d\x79\x8a\xe8\xd5\xbf\x4c\x14\xed\x5e\x96\x46\x2b\xa9\x16\x73\xc0\x57\xc9\xe7\xfc\xa2\x15\xab\x48\x95\xb1\xe8\x70\xef\x16\xe0\x6f\xef\x43\x74\x11\xd7\xd9\xd3\x79\xed\xbc\x18\x0a\x9f\x2e\x02\x3b\x0b\xf2\x9d\xdc\x55\xfc\xc2\x8b\x90\x7c\x48\xae\x9d\x9b\xd6\x5b\xee\x05\x76\xe1\xbc\x44\xeb\x40\xce\x73\x6f\x39\x78\x37\xf9\x88\x5c\x07\xc1\x68\xf3\x0f\x39\x2f\x9a\xeb\x23\x97\x53\xc3\x62\xc1\x7c\x29\x4f\x16\x54\x3c\x2a\xe8\x1f\x0b\xe5\xf2\x8b\x60\xfd\x42\x25\x0a\x55\xa2\x8b\x45\x10\x27\x75\xeb\x3a\xb9\x43\x74\x23\x5b\x74\x56\x72\xbe\x88\x75\x72\x5b\x9a\x1f\x59\x8b\xec\x23\xa4\x91\x22\xca\x21\xb8\x8b\x85\x26\x9c\x49\x76\xc1\x52\xe6\x84\x11\xeb\xcc\x89\xd3\xc4\x40\x8b\xf4\xa1\xf2\xa2\x67\xbc\x46\x71\xe5\xc9\xe2\x1f\x3a\xba\x54\x8b\x74\xe8\x2f\xd2\x19\x2d\x96\xcd\x77\x97\x57\xd2\xe4\x17\x78\xde\x7d\x9a\xe4\x79\xe7\xe5\xbe\xe8\xa2\xa7\x17\x68\x1a\xb3\xbb\xf4\x82\x69\x6c\x59\x24\xa3\x7a\x58\xb1\x33\xf4\xba\xb9\xde\x6e\xa1\x21\xff\x8d\x66\xf2\xe6\xf9\xa8\xeb\xcb\x42\xf0\xa4\x2d\x00\x0b\x40\xef\x73\xfa\xc1\x21\xc9\xb1\x6e\x0b\x6a\xa7\x35\x3e\x0d\x1c\x1c\x84\x49\x38\xd1\x82\x5b\xe4\xe5\xc4\x5f\xa0\x92\x6b\xb3\x44\x7c\xb8\xdd\x75\x71\x58\xd4\x22\xa9\x5a\x57\x2c\x00\x3b\xdb\xeb\x16\xdd\xf3\x37\x1d\x77\x3b\x60\x9b\x6f\xec\x3b\x53\x40\x38\xbf\xc7\x0e\x07\xa4\xe6\x34\xbb\x3b\xf4\x4c\xd5\x00\x75\x47\x29\xd7\x62\x5f\xf6\x1d\xb6\x2d\x8b\xb5\x1d\x7a\xa7\xe6\xc4\xbc\x3b\x13\x24\x17\xdd\x90\x77\xd4\x7a\x35\xce\xde\x13\x0a\x6a\x1c\x3b\x1c\x90\x2c\x94\x76\x40\x43\x87\x01\xee\x2c\xf5\xea\xb4\xbc\xfb\xd6\x50\xca\xc9\xcf\x94\x73\xba\x74\xed\x5b\x20\xa5\xb2\x9f\x91\xb1\x41\x9b\x73\x4f\x68\xd8\xfd\x03\xea\xef\x4c\x3f\xe3\x3a\xe3\x3c\xbf\x3b\xbc\x93\xbc\x93\xf6\xc2\xb3\x44\x63\x28\xb9\x5a\x22\xba\xe4\xc4\x69\x5e\x0a\x0f\x30\x49\x84\x9d\xbe\x46\xce\xe2\xbb\xc3\xd8\x55\xab\x9f\xb9\x3b\x05\x89\x77\x96\xaf\xb0\x2f\xea\x8e\xf2\x15\xef\xf2\xfd\xe1\x44\xda\xe1\xba\x54\x24\x1d\xf6\x0a\x9e\xf6\x10\x2b\x71\x47\x77\xeb\x5c\x5a\xb1\xe8\x5e\x93\xcb\xc5\x0c\xf0\x5c\xfa\xac\x3d\x0c\x67\x75\xb8\x0b\x2a\x0e\xfc\x3f\x04\xb7\x17\x92\xba\x30\x6d\xdc\x1d\x66\x34\x5b\x20\x77\xb8\x35\x39\xcb\xc5\x8e\xaa\x5f\x9f\x19\x6b\x29\x23\x35\xeb\x09\x19\xcd\xe1\x8d\x26\x25\x51\x94\xba\x33\x29\xd3\x76\xea\xce\xec\xa3\xbc\xc3\xfb\xfe\xdb\xc2\xc9\x26\xdd\x04\xbc\xcf\xc3\x7d\x22\x43\xb0\xf4\x10\x7b\xea\xd6\x44\x34\x1c\xe8\xed\x81\xbc\x77\x0a\x1b\xe1\xbb\xbd\x53\x66\xea\x2e\xb4\x77\xae\x8c\xa6\xa1\xf3\x84\xec\x6e\x92\x7a\x4b\x89\xc4\xbd\x27\x2f\x89\x88\x4e\x85\x8c\x10\xfe\x3e\x30\xb5\xd5\x1b\x77\xd0\x1d\x5c\x9d\x8e\x24\x4b\x4d\x24\x0c\x94\x1a\x68\x1f\x9c\x19\x0d\x24\xb5\x75\x42\x30\x3b\x03\x30\xbd\xab\x46\x52\xa5\x3e\xe0\x17\xe5\xb4\xb0\x7b\xb0\xb2\x88\x5a\x0c\x6e\x64\x6f\x54\xa4\x88\x76\x7c\xe6\x1e\x3c\x97\x3f\x2d\x90\x26\x4d\x04\xad\x75\xe1\x06\x20\x5b\xbc\x85\x12\x24\x7a\x35\x5e\x90\xe8\x7a\x2e\xb1\xcf\xdc\x63\xea\x61\x22\x29\xbf\x90\xeb\x3e\x79\x50\x9b\x26\x94\xcc\x70\xa4\xd6\x8e\x8a\x19\x9b\x0c\x0a\x3b\x72\x76\x86\xf3\xe9\xee\xf0\x84\x5a\xc3\x44\xc3\xf5\xc9\x39\x5e\xf7\xd4\x19\x9a\xa5\x26\x65\x87\x89\x58\xbc\x2d\x0b\xf3\xef\x09\x0e\xcd\x75\x28\x4b\xeb\x30\xe4\x1d\x60\x31\x96\x5b\xe0\xd6\xf1\xcc\x20\xad\xa7\x53\xba\xee\x70\x97\x72\xfe\xd5\x7d\x81\x29\x75\xf1\xdd\x17\x89\xd6\x34\xac\x9c\x59\x8d\x8a\xd5\x30\x74\x3c\xed\x8c\xee\xfc\xac\x15\x83\x37\x3f\x8b\xb3\x63\x31\xbd\x36\x3b\x73\x97\x6a\x4c\x4c\xd2\xe5\x50\xad\x1d\x49\xb9\x1c\xc4\xbe\x23\x27\x97\x81\xe1\x0e\xd3\x9f\x93\x80\xee\x47\xf6\xa8\x99\x46\xa4\xe5\x1a\x9f\x1f\x38\x6a\xd1\xc8\xc8\x4b\xa7\x24\xdf\xa1\xdf\xf3\xfd\x7f\xa7\x83\xd4\xf8\xfc\x40\x6d\x4a\xb8\x49\x1c\x1d\x02\x76\xfb\x49\x22\xfc\xdc\xf0\xbf\xde\x87\x3a\x4f\x95\x0c\x63\x3f\x09\xda\x3d\xd3\xb0\x0d\x3a\x40\x78\x3f\x99\x36\x5d\x17\xb8\xfd\xe4\xfd\xec\xd3\xc4\x8e\x2f\xfc\x02\xd4\xea\xde\xa8\xcc\xe2\x65\x97\xaa\x1d\xd6\x45\x27\x8c\xdc\xcf\xc4\x64\x6e\x81\x83\xd2\x4a\x5c\xb0\xd5\xcc\x3f\xdd\x8d\xf6\x17\x55\x36\x07\xd8\xed\x28\x4e\xb6\x3e\xcf\x9c\x01\x2d\x1b\x55\x75\x8e\x2d\xd8\x2f\x1c\xd7\x5e\x77\xe4\xd9\x76\xae\x99\xfd\x45\x8c\x61\xcf\xba\xfd\x26\xb6\x12\xb5\x37\x2b\xaf\xaa\xbd\x17\xff\x55\x9b\x1d\x76\x14\x93\x75\xa6\xfa\xfd\x46\xc6\x86\xe9\xff\x79\x54\x4a\x3f\xba\xdf\x39\xe3\xa2\x00\x9a\xbf\xcf\xc9\x78\xf3\x5e\xe5\x67\x62\x35\x81\xf9\xfd\xe6\x10\xdc\x05\x8a\x6f\x98\x75\xe1\xbf\xee\xac\x7a\x7b\xc2\x43\x73\xc1\xc3\x3b\x8c\xa1\xdb\x43\x87\x2f\xf5\xf0\x20\x38\xce\x47\xe1\x43\x0c\xab\x49\x40\x2a\xf1\x0f\xdf\x3e\x39\xeb\x6e\x30\x21\xab\x68\x64\x32\x0d\x67\xf3\xda\x11\x0f\xea\x14\x4e\xc7\x0b\x38\xbb\xf3\xf8\x1d\xf0\xa4\x72\x97\xc7\x0f\xf3\x3c\xfc\x4c\xdd\xa5\x84\xce\xf1\x23\x6b\xeb\x40\x38\x90\xa3\xcc\xb9\x32\x0e\x78\xb7\x5b\x7c\x1f\x28\xb6\xe1\xbc\x7e\xc7\x46\x45\xa5\x28\x40\xc6\xb2\x70\xec\xcd\x01\xb3\x65\xb3\xd0\x39\x90\x91\xcc\xba\x8d\x03\x5e\x50\xe6\xb5\x63\x23\x2a\xd3\xde\x38\x98\x69\x5c\x8a\xad\x83\x56\x49\x47\x4f\x1c\xe5\x3d\x59\x9d\x41\xf6\x28\x4c\x32\xea\xe7\x1c\xb5\x3f\x80\x68\x1d\x7e\x4e\xee\x72\x17\x3c\x20\xa4\x5e\x3d\x0a\xaf\xc8\x92\x11\x07\x8b\xc0\x7a\xdc\x25\xd7\x4e\x3f\x54\x5e\xa2\xb4\xe9\x8e\xd4\x22\x56\xbf\x81\x5d\xa9\xd3\xfd\xa8\xd4\xcf\xc9\x48\x7d\x54\x6c\x53\x9d\x41\x47\xe5\x6a\xba\x01\xa4\xa1\xd2\x2e\x3a\x6a\xde\x89\xdc\x25\xe1\xa1\x94\xd9\x07\xfd\xda\x8b\x36\xda\x01\xd3\xa7\xef\x59\x07\xe0\xdc\x67\x39\x5b\x4e\x9d\x5b\x98\xb0\xf7\xb9\x01\x54\x0d\xd0\xce\x3f\xe0\xb3\xee\x58\x98\x03\xb9\xd0\x9d\xcb\xe9\x40\xec\xa4\x73\x8e\x1d\x74\x61\xb7\x34\x3e\x1a\xd2\x3e\x4a\x74\x1c\x1d\xfb\x52\x77\x91\x03\xfa\xc1\x4f\x03\x70\x79\xb7\x37\xda\xc1\x4c\xaa\x9b\x39\x16\xd1\x92\x76\x79\x3b\xe8\x13\x5f\x3e\x3f\xc0\x88\xed\x69\xef\x20\x51\xfb\xfa\x60\xde\x73\x1f\x20\xc7\xa0\x24\x90\xc2\xf0\x18\x9c\x45\x4d\x42\x06\x2f\x2e\x7f\x81\x13\xc5\xeb\x30\x88\xfc\xcd\xa2\x63\xe7\xda\xbb\x53\xcc\xdb\xf4\x0b\x84\x7a\xcd\x2f\x60\xdb\x4c\x3f\x03\x0d\xd8\xee\x7d\xd0\xf1\xca\xc7\xd8\x11\x2c\xf5\xec\x7d\x12\x94\x16\x9a\x88\xc8\x48\x6d\x2d\x1e\x73\xa7\x3a\x00\xf9\x08\x9e\xd6\x7f\x4b\x0e\x74\x40\xc5\xe8\xb0\xd2\x83\xb9\x51\x7d\x8e\x1e\x33\x39\x5e\x24\x4e\x86\x27\xf8\x85\xc0\x7d\xc7\xcf\xdc\xa8\x66\x79\xf8\x71\xd9\x4b\xfc\x98\x58\x3b\xb3\xe3\x24\x68\x92\xd8\x3f\x90\x8d\xdd\xfe\xd8\x47\x02\x3d\xd9\x7f\x8e\xc5\x6d\xda\xfc\x03\x64\xac\xd7\x12\xe9\xda\xab\x19\x72\xa1\x5e\xa9\x25\x28\xca\x91\x94\x4d\x27\xc9\xc1\x14\x68\x1e\x35\x81\xdd\xe7\x19\xa8\x4c\x6a\xd4\x03\xd6\x61\x47\x06\x1c\xcc\xe6\x6e\x7d\xf2\xb1\xc8\x1b\x5a\xb7\xc5\x41\xbb\x01\x38\x23\x7c\x1a\xc0\x98\xbd\x67\x77\x42\x70\x8b\xe4\x3d\xb3\x1b\xe9\x99\x57\x15\x9f\x2b\x48\x9f\xf6\x91\x02\x3b\x55\x0c\x96\xa8\x3b\x13\xed\x8b\x04\x38\x89\x35\x03\x9c\xe3\xc8\x3e\xd5\x24\xf3\xc5\x9b\xc1\x69\x09\x76\xcc\xd3\x01\x57\x7a\x67\x3b\x39\x0e\xee\xdb\xe5\x16\x38\xd1\x3e\xab\x0e\x54\xe9\xb1\x30\x3b\x88\xba\x3e\x4d\x50\x15\xe6\xb5\x82\xd2\xd0\x47\xf8\x71\xe2\xbe\xef\x99\x3e\x49\x94\xee\x22\xc7\xc9\xd0\x6b\x8d\x9b\xe9\xd5\x9c\xf6\xfe\x78\xc1\xe4\xf8\x7d\x9e\x03\x13\x23\x12\x4e\x5e\x87\xcd\xd2\xc0\x92\x1f\xf9\xc6\x32\x2a\x2e\x6a\x70\x9c\x64\x71\x7f\x80\xd5\x5f\x26\x81\x1c\xad\x69\x81\x0a\x71\x56\xe9\x21\x0e\xaa\x0c\x9d\x0a\xff\xb8\x28\xd4\x7d\x80\x5e\x29\x8e\xdc\x46\x12\xa1\x89\x48\x84\x68\xd1\x70\x61\xc1\x4d\x05\x75\x86\xe6\x49\x78\xcb\xdb\xda\x78\xbc\x08\x70\xd8\x09\xe7\xb8\x39\x4f\xa2\xe9\xa6\x8f\x84\x59\xec\x45\x7c\xc3\x2e\x9c\xc7\x9d\x24\xb9\xc7\x0b\xd6\x04\xf5\x00\x3f\xb2\x59\xa5\xec\x38\x1e\x6a\xe3\x7c\xb4\x3c\xf5\x6d\x52\x7a\xb0\xe3\x01\x0d\x96\x36\x4f\xe0\x59\x5d\x3e\xa4\xc9\xfb\xe2\x21\xdb\x5b\x6c\x27\x40\x93\x54\x3e\x7f\x3f\x50\x3d\xf5\xbc\x51\x2a\x6f\xfa\x81\x1c\x15\xfe\xa1\x92\xec\xa5\x1f\x28\x14\x75\xc2\x9d\xb4\xfd\xfa\x44\x3b\x7f\xa0\xf3\xf3\x05\xbd\x0b\x24\xe9\xcf\x1f\x95\xe9\xcd\x6f\x10\x0d\x87\xdf\xb8\x30\x54\x3f\xe3\x52\x65\xed\xc5\xf9\xe3\x06\xd6\xa9\x78\xbe\x40\x6f\xd8\x01\xf6\x7c\x81\x5e\x73\x42\xbd\x73\xe3\xe4\xfa\xb9\xe1\x7d\xf5\xb0\x71\x72\xfd\x3d\x45\xb9\x76\xeb\xb9\x91\xc5\x74\xa9\x38\x59\x56\x4d\x1c\x71\xbe\xc0\x70\x58\x35\x7e\x12\x17\xae\xfe\xa7\x80\xa3\x33\x33\xb8\x69\x56\x0b\xe9\x55\x6f\x85\x32\x4f\x87\xf8\x59\x78\x2d\xec\xfe\x82\x23\xf0\x0b\xc9\x1e\x1a\xc1\x8b\x1a\x87\x33\x55\x9c\x2f\x68\x1c\x56\x51\x9f\x25\x57\xc1\x2f\xd0\xa6\x2b\x29\x79\x26\x46\x14\x0c\x38\x2b\x9d\xd7\x74\xfb\x3d\x13\x24\x4a\xa0\x9c\x35\xc9\xd4\x44\x57\x90\x29\xb5\xe3\x59\x61\x20\x18\xee\x03\x4b\x5f\xdc\xe2\xcd\x53\x5f\xc3\xa8\x2f\x02\xfb\x0c\xab\x81\xa7\x25\xf3\xce\x34\x2c\x37\xff\x80\xa9\x94\x02\xef\x6c\x14\x8a\xda\x68\x67\x23\x07\x4b\xd8\x9f\xb4\x13\xd7\xcd\x3f\x9c\x68\x42\xe3\x4e\x1d\xa0\x66\xaa\x61\xed\x75\x33\x3a\x3b\x69\xd2\xff\x3d\x27\x4e\x44\x77\xb0\x5f\xf1\x33\x97\x57\x78\xe9\xec\xd8\xfc\x9e\x58\x26\xdc\xaf\x66\xd0\x3e\xd1\x82\x26\xba\x53\x48\x76\xd3\x40\xcc\xa6\x73\xf7\xec\xb9\x89\xfc\x03\xa8\xf6\x1e\x19\x94\x0e\x9a\x38\xe4\xcf\x9f\x2e\x8f\x70\xd2\xa3\xcf\x58\xe1\x1c\x18\x86\xc5\xc7\x80\x18\xd5\x85\xf0\x1c\x14\xe5\xdd\x4d\x2e\x36\x29\x2a\x07\x66\x56\x17\x97\x73\xf0\xa2\xf2\xf9\x81\x08\x5c\x87\xfd\x49\x17\xbf\x6a\x46\x8f\xdc\x68\x9a\x0a\x26\x69\x73\xf0\xd5\xf9\x42\xcb\x6a\x67\xb4\x33\x48\xa6\x86\x91\xd6\xe7\xcf\x0f\x90\x50\x76\xdc\x39\x83\x7b\x63\xba\x53\xea\x7d\xcc\xd7\x41\x3e\xd5\x61\x7d\xd2\xbc\xec\x81\xcc\xc2\x3c\xe4\x5a\xd2\x09\xbe\x14\xcc\x39\x67\xb2\xa1\x46\xca\xda\xba\xce\xe9\x7a\x4e\x94\x1f\xf8\xbc\x80\x20\x33\x8f\x6b\xa2\x64\xc2\xa7\x87\x04\xdd\x7a\x61\x61\x85\x85\x8b\xce\x85\xb8\x61\x01\x8e\x33\xe3\x08\x3e\x2f\x74\xd4\x1e\x11\x8b\x00\x2c\x3a\x4a\xfb\x5c\xb8\x6f\x99\x02\x54\xaa\x73\xa2\x95\x73\xf1\x04\x32\x57\x42\x2b\x68\xc0\x7b\xee\x74\x2d\x12\xf0\x3a\x77\x08\x72\x0b\xc2\xbd\xe0\x59\x3d\xee\x64\x39\xbf\x8f\x82\xd7\xc2\x23\xe7\x4e\x38\x61\xb1\xb6\x33\x87\x83\xb8\x63\xc7\xc6\xf1\x99\xb8\x43\x0c\x36\xbf\x0f\x01\x64\xb9\xbe\xdf\xf8\x5f\x53\x72\xf0\xe6\xec\x06\x0f\x52\xac\x21\x1d\xa4\x58\xab\x76\x60\x9d\x7d\xfc\x1d\x80\x0e\x42\x33\xe7\x41\xb3\x8a\x37\xc9\xc1\xa3\x46\xd7\x86\x93\x79\x77\xad\xf6\x38\x0f\xd0\xe8\x03\x14\xa9\x31\x3e\xcc\xc8\x6c\x6f\xd6\xac\x9c\x27\x16\xbe\xff\xc9\x99\xee\x3c\x31\x00\x9f\x2c\x27\x21\x9b\xc5\xdb\x89\xfd\xd3\xdd\x7a\x32\xaa\x86\x04\x94\xb8\x3e\x1f\x5c\x6c\xc1\x2f\xc0\xfd\xcb\x73\x96\x96\x68\x33\xce\x45\x1a\x34\xa2\x74\x0f\xf4\x26\x67\x5a\x8c\x4d\x57\xa5\xf3\xa2\x9e\xdd\x0b\xf7\x02\xcb\xfa\x99\xc5\xc4\x95\xc3\x6d\x82\x13\x2c\x26\x12\x67\xfa\xa8\xb9\xb8\x32\x9e\xf7\x0b\xd2\xca\x1b\xf2\xe2\xb5\xd7\xa7\xd7\x75\x63\x87\x9a\x06\xd8\xae\x85\x7e\x4f\x96\xfc\x35\x36\xba\x39\x4c\x7d\x4f\x17\x43\x1b\x01\x4f\x04\x3c\xf8\xf2\x74\xa6\xa6\xd1\x62\xe6\x26\x98\x92\xb6\xe8\xbc\x21\xd5\xbd\x16\x0f\xbb\x50\x97\x0f\x36\x90\xc7\xf4\xf0\x38\xb4\xd0\x26\xee\x34\xef\xd0\xf0\xec\x03\xf6\x01\x8e\x90\x62\xe8\xcc\x68\x06\x77\x40\xad\xfc\x7f\x04\x5c\x69\x86\x6e\x7a\x06\x41\xc3\xcf\x84\x98\xd5\x3f\xa0\xe2\x98\x16\xf2\x42\x89\x42\x63\xb7\xeb\x47\x02\xab\x9e\x49\x50\xe8\x19\x45\x05\xc4\x7d\xd7\x0f\xc1\xef\x9b\xdb\x4f\x66\xd3\x0f\x1b\x9c\x55\x35\xa7\x17\x23\x21\x36\x5d\x6a\x2e\x16\x3a\x70\xf8\xee\xb5\x51\x89\x2f\x9c\x7c\x6d\x2c\x26\xef\x26\xb0\x45\x86\x3f\xa0\x70\x5f\xfe\x21\xe0\x40\xe7\x0f\xa0\xea\xdc\xdc\x20\x7d\xd7\x34\x8b\x88\xdf\xb4\x55\xfc\x82\x9e\xd2\x21\x63\xd7\x06\xd6\x1c\x26\x99\xac\xa9\xc3\xe0\xda\x78\xfc\x4b\xb6\x5f\x70\x6e\x74\x7a\x8c\x0b\x15\x12\x9d\x10\xf0\x42\x0e\x61\xe7\x54\xb9\x4a\x8e\x59\x24\x97\x1c\x93\x5b\x24\xe4\x10\xbb\x5f\x34\x7a\x8b\x35\xae\x17\x62\xd6\x0f\x91\xe9\xec\xb8\xfc\x02\x84\xad\xce\x9b\xeb\x85\xa0\xcd\x90\xe4\x82\xda\xd2\x9e\x1d\x57\xe5\x05\x46\xc7\xc3\x55\xc1\x5c\x5e\x97\xcc\x21\x27\x8a\x2a\xd6\xc5\x63\x80\x92\xd2\xd5\x78\x2f\xd6\x73\x9a\x7e\xe6\x9d\xca\xb3\x54\xb1\xbd\x3c\xad\xcc\x08\xe7\x50\x8a\x8b\x05\x9e\xac\x6c\xb8\x10\x0c\x5a\xb5\xc7\x2f\xd6\x77\xfa\xf9\xb9\x61\x1d\xdc\x00\x59\x47\x24\x37\xb0\xfb\xa7\x3d\x42\x41\x9d\x60\x57\x43\xf9\x65\xc9\xce\xab\xe1\x44\xd3\x9d\xfd\x82\x09\xdb\x21\x8d\x17\x4b\x2d\x8c\x4f\x8f\x9c\x75\xcd\x32\xe1\xac\x7c\x6d\x2f\xe6\x80\xd3\x01\x75\xd1\x09\xd2\xa1\x81\x57\x4f\xd6\xd0\xc2\x76\x3a\x92\x08\x52\x5f\xc4\xb3\x31\xfe\x72\x00\x5d\xcc\x18\xe7\xc8\xc2\x2b\xc1\xad\x2e\x5f\x57\x27\x42\x6f\x26\x09\x63\x9e\x26\x80\xce\xbe\xcd\x4d\xe4\x7e\xf0\x17\x00\x6c\xc2\xf8\xd7\x8b\x76\xab\x8d\xd5\x17\x12\x16\x3b\x98\xe8\x1a\x38\xc6\x3d\x22\x1a\xcc\x1d\xed\x78\xb1\x98\x84\xa7\x7d\xe4\x28\xb4\x4e\x03\xe7\x4d\xf8\x85\x1c\x84\x56\x7a\x60\x1d\xcc\x7c\x91\xbc\xa5\x2f\x02\xa5\xfa\xbd\xd2\x41\x6e\x57\x03\x01\x1a\xbd\x0c\x99\xd3\x4d\xac\x13\x03\x0a\x25\x4d\x63\x50\xb4\x5b\x36\x53\x83\x3a\xfd\x4c\x77\xad\x4f\x0f\xdc\xd1\x3f\x77\x01\x28\x22\x60\x7c\x51\x8b\xea\x32\x9b\xd7\x4c\x66\x51\xa7\x93\xf0\xdc\xf2\x7b\xf2\x16\xe9\x2d\x34\x69\x96\xf5\x11\xc1\xe4\x21\xd6\x53\x5d\x4c\x8a\x5c\xbb\xdb\x00\xa8\x32\xe1\x33\x79\x5c\x74\x4e\xf2\xb4\xa8\x58\x8c\xf5\xb0\x84\x5e\x5c\x5f\xb5\x48\x45\xa9\x23\x07\x2f\xe6\x44\xb6\x77\xdc\xb5\xf2\x32\xa3\xe7\x57\x76\x38\x82\xf6\x5a\xe4\x49\xcd\x1d\x9c\x29\x9d\x1a\xe3\x62\x5c\xcd\x47\x32\x24\x5a\xb6\x90\x7f\xd1\xf2\xb0\xfb\xf9\xb5\xc3\xf5\xdb\x07\x17\xc1\xb1\x05\xf0\x8e\x31\x98\x3f\x76\x7a\x4c\x5b\x54\xec\x39\x06\x7f\x41\x1e\x14\x5c\xb8\x08\x87\x7d\xf4\x21\xac\xe6\x23\xde\x10\x55\xe3\x2b\xe0\x45\x78\x6c\x01\xba\x63\x9e\x7d\x04\xbc\x70\x79\xd8\x1f\xfe\x42\xf8\xad\x15\x2d\x17\x32\xcf\x39\x5f\xc3\x95\x11\x36\x16\x7f\x07\x52\x42\x98\xc0\x03\xe2\x71\xb9\x41\x42\x26\x01\x9c\xeb\x80\xb5\xd6\xa7\xf9\x31\x41\x81\x7b\xa0\x3e\xca\x1b\xf5\x00\x7e\x98\x7e\x7e\x79\xdc\x36\x9f\x8b\x68\xdb\xb3\x0e\x13\xbf\x8d\x21\x17\x7c\x3d\x0d\xf2\xae\x93\xdb\x56\x10\xeb\x62\x1d\x2e\x5f\x01\xae\x13\x4a\x10\x93\x08\xbc\x1c\x96\x66\x30\xd0\x37\x33\x06\xe3\x6d\x6c\x6f\xb9\x4e\xe2\x4a\x91\xcc\x32\x5b\x4e\x65\x7f\x5d\x90\x66\x9e\x25\xc4\xdb\x34\x29\x1c\xae\x17\x2d\x0f\x9b\xd4\x2f\x96\xb0\xf0\xb2\x5f\x64\x14\x9f\x7b\x17\x67\x51\x24\xb3\xb6\xa7\xfd\x97\x2f\xd4\xf6\x74\x3a\xc8\x8b\x58\xf9\x43\xe2\x85\x06\x34\x07\x2f\x54\x1e\x76\xbd\xbf\x5e\x68\x5c\x3f\x73\x72\x6f\xf8\x5f\xdf\xd3\xab\xd3\x61\x8f\x17\x32\xa0\xd4\xea\x1e\xef\x86\x2f\xfc\x02\xc5\x88\xc1\x40\xa2\xeb\x51\xff\x74\x0a\x21\x9a\xc7\x6e\xc7\x17\x62\x8d\x9d\xfa\xfd\x62\x74\x8f\xdd\x06\xae\x84\xe2\x16\x21\x28\x1c\xf6\x59\x25\xc4\x1e\x97\x22\xd5\xc5\xc5\xf8\x1f\x0b\xa5\x87\xd8\xc1\x62\x0c\xe0\xdd\xd1\x06\xd7\x03\x1f\x75\x63\x38\x66\xa9\xb3\xb5\xe6\x7a\x92\x28\x7f\x71\xa0\x85\xff\xbe\xb8\x51\xe0\xa2\xd8\x0f\xe0\x86\x0e\xd8\x49\x73\x6f\xa0\xef\xa2\xfd\x77\xff\xc0\x29\xda\xa0\xf7\x8f\x3e\x58\x22\xfa\xfe\x2d\xbc\xe0\x06\x76\x3c\x6f\x7a\x06\x05\xa2\xe8\xde\x72\x7b\xe8\x83\x74\xf0\x9c\xfe\x01\xa3\x36\x89\x1b\xdd\xfa\xa6\x9b\x48\xee\xf4\x0f\x07\xf4\x14\x6e\xe1\xe4\x28\x97\x7e\xa0\xac\x1d\xfe\x01\xa6\xb7\xe5\x3e\x20\x6a\xb5\x98\x77\xaa\x6f\x25\x15\xee\x02\x7e\x94\xe0\xba\x0b\x89\xf4\xff\x15\xcf\x45\xcf\x03\x61\x1a\x7e\x26\xcd\xda\xa2\x77\xa1\xff\xb6\x14\x05\x37\xf3\x29\x7b\x5e\x18\x9e\x5c\xc5\xbf\x37\xe1\xb2\x83\x26\x6f\xba\x8c\x2e\x3f\x53\x63\x2b\xac\x78\x57\x12\xad\x2e\x00\x8f\xed\xa6\x7a\x03\x1e\x17\x87\x76\xde\xc0\xc7\xf6\x3a\xbe\x2b\x9d\xd5\xc2\x2d\x04\x5e\xd0\x3c\x55\xac\x7e\x71\x8f\x58\x7d\xdd\x5b\xee\x8a\xd5\xd7\x26\xbd\xa9\xdf\x5d\xfe\x1e\xaa\x0b\x9d\xec\x37\x7c\x42\x8b\x43\x49\xef\x86\x78\x57\x53\x04\x75\xae\xbd\x9c\xef\x74\x02\x15\x36\xbc\x53\xbf\x1b\x6e\x61\xe0\x0b\xcd\x52\x7a\x0d\x78\xda\x10\x37\xd4\xac\x7d\xbd\x1b\x65\x99\x9f\x0f\xea\x2f\xf4\x8c\x10\x1c\x9d\xa2\x37\x0a\xa8\x16\x47\x79\xde\x9d\xbb\xcc\xd3\xd2\x91\x3f\xcd\xc3\xee\x0d\x75\x88\x35\xec\xce\x60\x13\xbf\x0f\x9a\x85\x2d\xee\x4e\xa4\xe6\x61\x77\x88\x53\x81\xfa\xbb\x43\x9c\x9a\xc4\x9e\xf3\xa8\x1e\x07\x02\xb0\xbc\xcf\x07\x0d\xf0\x02\x0b\x77\x02\x5a\x33\xc7\xe0\xbc\xf9\x05\x2e\xbd\x68\x1e\x58\xfa\xea\xf7\xb1\xf4\xd5\x3d\x1e\x6f\x8f\x66\xdf\x01\xf5\xa4\x10\xf5\x9d\xaa\xdd\xe5\x1f\x92\x7d\xd5\x22\x00\xb0\xab\x3d\xdf\xc1\x7b\xc6\xe7\x87\x5c\x6b\xff\x40\xab\x87\x00\xeb\x1d\x24\x52\xf3\x16\xe0\x47\x4f\x7c\x9c\x78\xf6\xfb\x98\x57\xe1\x9d\x3b\x78\x6d\xf6\x96\x0a\x08\x0a\xaf\x14\x23\xc2\x3f\x1c\x0c\x45\xaf\x85\xfa\x0d\x3d\xaf\xbd\xf1\xee\xb9\xff\xfb\x0f\xf0\xca\x1f\x0e\xa1\x7b\x82\x3c\x21\x83\x9b\xe1\xe2\x36\xc7\xdf\x13\xeb\x2e\x30\x72\x23\x6c\xe8\xb3\x3d\xa0\xf2\xb5\x9f\xcf\x9d\x0e\x04\xcb\x2f\x40\x24\xe8\x12\x72\xaf\x64\x03\xff\x00\x36\xf0\xb2\x65\xd0\x90\x79\x99\xa9\x64\xaa\xe6\xfc\x81\xd0\x70\x81\x8b\xa7\x02\x3b\x08\xce\x3c\x94\x11\xda\x3e\x4f\xe5\xf6\xd2\x85\xf3\x61\x0a\xcc\xaa\x9b\xd0\x53\x09\xe7\x3f\x3f\x70\x59\x24\x5e\x9f\x94\x1b\xda\x31\x0f\x6b\xf5\x38\xf6\xff\x61\xad\x1e\x1b\x85\x1f\x5c\xb4\xed\x46\xf0\x34\x02\x47\xff\x4f\x2d\xaa\x80\xdd\x03\xab\x8d\x8d\xe3\x4f\x47\x03\xba\xa6\x3c\xb0\xc9\xd8\x0a\xfd\x74\xba\x65\x79\x5c\x9d\xc7\x92\x76\xe9\xd3\x73\x5c\xfa\x01\x36\x97\xee\x74\x43\xcf\x20\x88\xf1\x30\x06\xef\x25\xd5\x3f\x60\x5b\x86\xbf\x40\x21\x16\x6d\xd3\x87\x15\x09\x3f\xef\xf3\x28\x9c\x7e\xe1\x86\x8d\x5f\xc3\x08\x66\x4b\xd7\xff\x41\x0e\x9f\x7e\x81\x60\x52\xe3\x0c\x58\x09\x3c\xf5\x88\xee\x6b\x5e\xdf\xc0\xbc\x48\x20\x3f\xef\x9e\xfc\xc4\x8c\x3c\x13\x2c\xa8\x4d\xfc\x70\xc7\xe8\xcc\x79\x26\xb2\xaf\xeb\xa8\x7d\x26\x38\x52\x5b\xf2\x99\x9c\x01\xf5\x37\xd9\x9f\xe8\x7b\x77\x5c\x75\xbc\xd7\x33\x73\x5d\xfc\x01\x76\x99\x19\x78\xf2\xa0\xad\xa6\x00\x99\x16\x3f\x3d\x26\xb7\xa9\x0b\x3a\xea\x54\xc9\xb2\x67\xe5\x42\xfa\x07\x30\x8f\xc4\xc4\xb3\x08\x46\xb5\x11\x1f\xdc\x2f\xc3\x86\x84\x67\x61\x9b\x98\x37\x58\x8a\xb0\x2e\xbf\x00\x59\x65\xf6\x5a\x90\x05\xde\x24\x3b\xbc\x72\xcd\xbf\x3b\x6f\xde\xd3\x3f\x60\xa2\xcd\x5b\xcc\xca\xf0\x73\x03\xc9\x6b\x9a\x28\x44\xef\x85\x8e\xb5\x87\xc5\x72\x8a\xff\x27\xfc\xac\xee\x81\xcc\xe6\x4d\xb5\x93\x46\x3f\x43\x9c\x9a\xb7\x60\x3d\xf1\xfd\xf2\x39\x1a\x5b\xd4\xbc\x1d\x58\x7c\x8f\x81\xd7\x3b\x73\x33\xcc\x2b\x16\xbf\xcf\xc1\x3d\x27\xf9\xfb\xc0\x65\xdb\xc7\xdc\x03\x63\x49\xb7\xef\xc0\x73\xf2\xf0\xd6\xe5\xe8\x41\xa6\xf1\x6a\xfe\x3b\x29\x5a\xbc\x43\xe8\x36\xe3\xe8\xbd\xe7\xc4\xd2\x2d\x37\x09\x8f\x65\xa1\xcb\x07\x0e\xd5\xdd\xfe\x07\x0f\xf3\x82\x3b\xd1\xd5\x73\x51\x6b\xa8\x61\x5e\x60\x1f\x73\x0b\x2f\x70\x3a\x07\x9e\x8b\xde\x95\x3a\x29\x9e\x2b\x87\xa5\x2f\x60\x7b\x70\x72\x8b\x87\x17\xac\xf5\x27\x95\xdc\x83\xcb\xd6\xb4\xe3\xe3\x73\xd3\xee\xa6\xfb\xdb\x03\x97\x19\x2b\x83\x9f\x3b\xe7\x44\x73\x00\x97\x19\x2b\x87\x9f\x1b\xf0\xc0\x52\x02\xa9\x9a\xba\x95\xbd\xcf\xf3\xc3\x0b\xea\x01\x1e\x33\xb3\x79\x4b\xc1\x63\xc6\xda\xe3\xe7\xbd\x0d\x0d\xab\x25\x1f\x94\xb4\xe9\xb6\x1c\x3c\x0f\x32\x58\x09\xa6\x3d\x0f\x97\x25\x7b\x9c\xbf\xf7\x72\x54\x95\x2a\x61\xfe\xde\xbb\x51\x93\x29\x64\xfe\x10\x41\xd7\x74\xa9\x9d\xbf\x1f\xca\x7f\xfd\x87\xaf\xe7\xef\xbd\x3c\x0d\xa9\xfc\xe6\x0f\xa6\x0b\x39\x3b\xcd\x1f\x4c\x17\xe5\xd3\x01\x2d\x67\xcb\x3f\x4c\x8e\xd1\x5f\xec\xfc\xc1\x4d\x1e\x68\xc2\x2f\x80\xbf\x3f\x34\xf2\x48\x59\xfe\x80\xbc\xb6\xf9\x0d\x0a\xaf\xa6\x26\xde\x1b\x59\x51\x2a\x95\xf9\xdb\x28\xbb\x36\x51\x85\x0b\x99\x94\x7e\xf3\xb7\xf1\xda\xd0\xfc\x43\xe3\x17\xea\x94\x65\x75\x36\x77\x31\x38\x0c\x7f\x11\xd0\xfb\x88\x28\xd8\x2f\x94\x12\x6b\xfe\x98\x1e\x4a\x91\xa4\xf3\xc7\xd2\xcf\x63\xa9\x49\x5c\xc8\xca\x4f\x6b\x51\x92\x06\xbf\xc0\x32\x4d\x5e\x9d\xf7\xc6\x35\x94\x45\x6b\xfe\x78\xc1\x6a\x3f\xf5\xc1\x7c\x93\xa5\xa9\x4d\x84\xdc\xcd\xf6\x13\x87\xf0\xc2\x34\x34\x33\x74\x78\x29\x5d\x6d\x56\x9a\x21\x9b\x06\xc2\x4a\xcc\x55\x33\x53\x53\xcc\xbb\x0f\xea\xa3\x96\xc8\xac\xc9\xb6\x22\x0b\x77\xa8\xe2\xe5\x60\x82\xca\x9f\xf9\x16\x19\x2a\xe5\x02\x3c\x7f\x95\xe3\xe8\xfe\xe1\x41\x0b\x7a\x66\x4a\x71\x85\x4c\xce\x5f\xcb\xfd\x2d\xb2\x5b\x0e\x4c\x74\xe3\x16\x55\x3c\xbb\xef\x1d\x69\x14\xaf\x78\x07\x8f\x78\xb2\xe1\xb7\x2c\xe7\x85\xf9\xeb\x9c\x7c\x0d\xaa\xf3\x7b\x8d\xa1\xc3\x74\x6a\xb6\xed\x24\x59\x04\xc1\xcf\xb9\xff\x3e\x3f\x6c\x50\xa7\x6a\x4c\x83\x04\x68\x5e\x47\x8e\x40\x14\x8f\xe4\x41\xbf\x01\x92\x8a\xd6\x6e\x90\xe7\x4c\xf3\x80\xf9\xa9\xaa\xcb\x17\x19\x0d\x5d\xf3\xe6\x2f\x72\xa3\xa8\x45\x28\xe4\x75\x79\x9d\x3f\x28\xe4\x75\xbd\x9e\xbf\x80\x32\xd3\x3d\x06\xa5\xe8\xe7\x07\xcc\x72\x11\xcd\x2f\x94\x2a\x0a\xa9\x98\x3f\x5c\x67\x74\x0d\x9c\x3f\x78\xaa\xcc\x66\x9e\xc6\xfd\x45\xd7\xbe\xf9\x7b\xef\x2f\xed\x67\x86\xc5\xf5\x45\xa7\xdf\xfc\xa5\x7a\xbe\xeb\x83\x09\x11\x56\x34\xe6\x17\x7c\x0d\xb9\x4a\xce\xdf\x24\x85\x1a\x32\x32\x5e\xd5\x29\x8a\x26\x6f\x60\xcb\x0d\xae\x7f\xff\xa9\x65\x6a\x0e\x5e\xf4\xd5\x64\xdf\x9a\xbf\x17\x7c\xd5\xfa\x27\xa7\xed\xf9\x9b\x29\x05\x44\x3f\xd4\xf6\x42\xd4\xf3\x07\xb5\x7d\x5b\xea\x0d\x1e\x2a\x4a\x55\x33\x7f\x54\xda\x37\x6f\x05\xa0\xac\xe2\xfd\x09\xad\xbd\xee\x11\xf3\x47\xd4\xd5\xbc\xfb\xa0\xb6\xef\x16\x4c\x8b\xf2\xd5\x8b\xcc\xe4\x57\x9e\xc1\x1d\x9a\x4b\xcf\x20\x51\x56\xf3\xd6\xd9\x51\xc8\xb4\xfb\x03\x0a\x2e\xb3\x11\xd5\xf6\xcd\x9b\x8f\x49\x13\xa6\x68\x78\x71\x57\xfd\xcc\x0a\x72\x26\xf4\x9f\x39\x75\x87\x78\xad\xfe\x00\x6c\x52\xdd\x20\x42\x71\xbd\x3b\x53\x4d\xaf\x06\x0f\x58\xc3\xdc\x01\x60\xd9\xe6\xf6\x0e\x9e\x5b\xde\xfe\x47\xe6\x5e\xf1\x17\x48\x59\xdf\x44\x11\x40\x94\x80\xe0\xfc\x9d\xe0\x3b\xcb\x30\xfa\x2e\x37\x93\x80\xd2\xd0\x0a\x4a\x98\xbf\x04\x5d\x9e\x36\x6a\xd1\x7f\x96\xc5\x40\x5d\xf5\xf3\x45\xee\x6f\xf1\x2e\xdc\x50\x14\xee\x3e\x7f\x27\x15\x10\x4b\x4d\x32\x4d\x95\xe2\x68\xe7\xef\xa2\xb6\xc9\x08\xe0\x4a\x32\xfd\x09\xf6\x87\xc7\x79\x61\xc7\x56\x7f\x00\x7e\x33\x51\x17\xf9\x4d\xc3\x84\x9e\xbc\x78\xc7\xc3\xa5\x64\x78\xbb\x64\x96\x4d\xcb\x76\x56\x63\xf1\x86\x44\xde\xaa\x8f\x60\xbd\xb9\x81\xdd\x00\xc5\xa0\x85\x16\x72\x11\x2c\x95\xe1\x9b\xbf\x9b\xc7\x87\x31\x05\x7c\x4a\x3e\xc7\x3d\x13\x7b\x87\x65\xef\x83\xb3\xd8\x7b\xe2\xc9\x79\xd3\x28\x1f\xda\xf8\x7c\xe0\x20\xd3\xf7\x87\x4a\xba\xa1\x34\xef\x22\x66\xb6\x52\xec\xd7\xfc\x21\xb3\xd5\x0a\x83\x27\x38\x40\x87\x59\xee\x21\xcb\x0d\x31\x35\xf0\xdf\x0a\x63\x27\xba\xaa\x34\x6f\xac\x07\xdb\xc2\x4c\xfa\xd0\x55\xc4\x4d\xde\x6c\xe1\xbf\x26\x37\x3a\x48\x4b\x3a\x6c\x70\x5e\x59\xaa\x27\x38\x37\xa4\x50\x50\x31\xb3\xb9\xc1\x3d\xda\xcb\xb7\xfd\x90\x7d\x2f\xfc\x3f\x72\x86\xfd\xa7\x15\x9e\x1b\xb4\xe9\xc6\x66\xdb\x8b\xff\x8a\x14\x1f\x73\xfb\xd1\x00\x3b\xdc\xe1\xc5\x31\xe9\x8d\x2d\xa5\x87\xba\xd8\x72\xe2\xfc\xc3\xe4\x1b\xa1\x1f\xe0\x5c\xa2\xf5\xdd\x36\xf0\x64\xf3\xff\xbc\x43\x0d\xb7\x70\xb3\x53\x7d\xc1\x4c\x59\x8a\xcd\x9d\x1b\xd4\xe1\x46\x52\x1b\x2b\x14\x36\xf7\x49\x7d\x78\x93\x98\xdc\x0a\x47\xee\x67\x14\xe7\x53\x12\x96\xb9\x25\x5c\x2b\x6e\x13\x6c\xa9\xfd\xbe\xd5\x64\x4b\xf5\x51\x11\x8d\xe5\xc5\x40\x45\xe9\xfa\x79\x4e\xa6\xd3\x6c\xbf\x58\xac\xbe\xa2\xfc\x0f\x67\xd1\x96\x38\xcd\x23\xa8\x39\x4d\xfe\x81\x6b\x63\x76\x79\x81\xd9\x30\x24\xd9\xe8\x2c\xa2\x6b\xdc\xdc\x1a\xb5\x6f\x43\x63\x24\xec\x12\x0c\xdb\x58\x3f\xb0\x98\x61\x5a\x52\xe1\x2f\xb0\x78\x92\x0f\x1b\xcb\xb2\xc8\xcf\x77\x6e\xd0\x56\x2b\x0f\xf7\xdc\x90\xe3\x4a\x86\xad\xb9\x75\x6c\x66\x21\x82\x8d\xb9\x40\x15\x1a\x3a\xb7\x8e\xb5\x15\x4c\xda\xa0\xcc\x36\x32\xdb\x7a\x47\x86\x49\x51\xd4\x93\x01\xfd\x02\x16\xee\x3f\x85\xd0\xdc\x46\xca\x34\x91\xc0\x02\x7d\xdf\x37\x78\x6c\x57\xbf\x01\x4f\xd3\xea\x17\xe8\x38\x6c\xaa\x07\xa7\x5a\x44\x50\xb9\xac\xe2\x8e\x73\x0b\x66\x9b\x10\x51\xc1\xda\xa1\x3a\x0d\xb6\xe0\xde\x16\xb6\xda\x02\x47\x94\x84\xda\x16\xb9\x16\x22\x2a\x26\xd8\xc7\x2f\xc0\x61\xd7\x6b\x15\xb4\x2b\xb8\x87\xe7\xdf\x7f\x22\xcc\x40\x13\xf8\xd2\xdb\x6c\x12\x5f\x9a\x7f\xa0\x29\xfb\xec\x32\x68\xca\x2c\x23\xb7\xc9\x3b\x90\xa7\x65\x92\xc3\xab\x9b\xa4\x58\x0d\x71\x1c\x94\x65\x16\x9a\xdb\xc4\xf9\x64\xf9\x42\x65\x59\x6c\xa6\x81\xa7\x83\xe7\x69\x12\x3b\x68\x62\x17\xb7\xa1\x10\xd3\x46\x8c\xe6\x69\x5a\x38\x91\xcc\xe3\xe9\x6a\x61\xa1\xb8\x88\x26\x74\x66\x6d\x2f\x48\xab\xdd\x52\x71\x25\x51\x6e\x12\xa6\xd6\xcf\x07\x17\x60\x9f\x49\xa0\x20\x17\x82\xda\x76\x4e\xb5\x3e\xd8\x93\xc9\x35\xb5\x3b\x89\xd6\xb0\xe1\x78\xfc\xd9\x77\x3b\xcc\xc3\xcb\x0d\x40\x7c\x79\x5e\xf7\x9c\x26\xbd\x00\x4f\x88\xcf\xb4\x1d\x54\x67\x08\x19\x6c\x07\x72\x34\x58\x0a\x1f\xb9\x98\x1a\x24\x5c\x1f\x3e\xd3\x04\xd5\xd7\xb7\x07\x2c\x9d\x07\x7d\x50\x27\xa4\xe3\x6d\x83\x27\x83\x02\x6e\xe7\x76\x60\x8f\x78\xcc\xf0\x64\x90\x6b\xfd\xdc\xe0\x36\x5c\x7c\xf8\x40\x11\x36\x5b\xf3\x0f\xe0\x47\x61\xfb\x8d\x9a\xb1\xd6\xfc\x03\xe5\x99\xbb\x44\x3a\x83\x6a\x61\x74\x62\x0c\x53\x63\x38\x31\x8d\x53\x63\xfe\x0f\xd4\xf9\x85\x5c\x7a\x4d\xd3\x89\x41\x09\xe1\x6f\x27\x27\xfe\x43\x35\x35\x61\x02\xbb\xdb\x05\x01\xa7\x2b\xcb\x86\x3a\xd5\xd3\xc3\x06\xa6\x5b\x9f\x43\x9c\x31\x6a\x4d\xa0\x6d\xbb\x78\x89\xb7\x74\xb9\x38\x0c\x37\xc1\x61\xb8\x05\x2e\x8d\xdf\x27\x12\xb1\xd0\x25\x8a\x0b\xef\xa2\x9b\x9e\x8b\x7f\xba\x16\x6d\xcc\xa4\xde\xcc\x3b\x37\x1d\xf0\xfc\x1c\x6f\xff\xd2\x33\x6d\x70\x6e\x50\xf8\xe2\xdc\xe8\xcc\x60\x41\x72\x13\x66\x78\x65\x99\x48\xbd\x19\x13\xdc\xb4\x81\xba\x05\xca\x57\xe3\x10\xe6\x2e\xb5\x28\xca\x0a\x7b\x22\xe9\x21\x6b\x98\x46\x64\x2c\x58\x2a\x7a\x3a\xb7\xf4\x3c\xf6\x2c\xc2\xdd\xa1\x2b\x50\x63\x6e\x08\x79\x2b\x9f\x67\x1e\xb8\x06\x11\x0f\x38\x7c\xf9\x05\xea\x59\x85\x4b\x0a\xcb\xbf\xc8\x6f\x65\x16\x20\xba\xae\xa0\x89\x59\x7e\x9c\x5b\x1d\xa8\x05\x1e\x11\x8a\xf4\x9c\xe5\xc7\xb9\x75\x93\xc4\xa5\xa1\xe7\xf5\xef\x3f\x5d\x8e\xe9\xb3\xc0\x41\x42\x41\x99\xb3\xfc\xc8\xd1\xba\xac\x15\xa8\xf4\x7c\x9b\x2b\x08\x87\x53\xcc\xe5\x2c\x4c\xdd\xae\x41\x95\x54\xe8\x69\x13\x95\xed\x87\x0f\x34\x26\x44\xc3\xc9\x33\x66\x96\x17\x22\x0e\x39\x1f\xcf\x02\x65\x9c\x92\xc1\xcc\x42\x80\x38\xfc\xcc\xd3\xb7\xfb\x03\x22\x6b\x61\xcc\x82\xf0\xb8\xef\x33\xeb\x36\x98\x02\x5e\xbd\xb4\x01\xca\x06\x75\x4f\x37\x49\xef\x18\xaa\xbb\x2c\x79\xf4\x69\x12\x0a\xc5\xa5\xb0\x53\x29\xe4\x8e\xe5\x4f\x16\x46\xe5\x17\xe0\xcb\x5b\xfc\xff\x81\xff\xd5\x25\xbc\x91\x0d\xfe\x0a\x9c\x8f\xa5\xe6\x9f\x05\x19\xb3\xba\xd5\x3f\xe5\x85\x8f\x43\x31\x9e\xb3\xd4\x14\xd0\xfe\xe2\x65\x69\x39\xca\xce\x02\xdd\x9f\x1c\x38\x66\x61\x76\xf8\x4f\x03\x13\x0d\x6a\xd6\xe0\x8d\xac\x04\xc2\xb3\xd4\x9c\x66\xff\xc0\x5d\x28\x94\x53\x1a\x57\x5a\x24\xb2\x1e\xb5\x62\xfb\x67\xa1\x7b\x84\x31\x46\xa1\x7b\x84\xb5\x0d\xa5\x65\x35\x7b\xcd\x53\x63\x0e\x73\xcd\x4b\xcb\xd5\x17\x15\x8d\xda\x85\xe6\x4e\x28\x72\x25\x5e\x4a\xa3\xc8\x95\xc0\x2c\xe9\x32\x2c\xf5\x5e\xe9\x3c\xf3\xdd\x0b\x23\xdc\xda\xf0\x27\xf4\xca\x90\x22\xa9\x74\xae\xaf\x66\x1b\x1a\x44\x45\xe9\xcd\xc2\xb4\x58\x6d\xb8\x49\xec\x1b\x21\x97\x02\xd8\xa9\x18\xba\x59\x12\x76\xea\x9e\x5b\xa0\x42\xf4\xf5\xaf\x0c\x1e\x67\xc3\x3f\x34\xbc\xa0\x1e\x06\x2d\xdd\x9a\x99\xf4\xf9\xf5\xd6\x84\x8a\xd1\x37\x8e\x32\x78\xd7\x16\x5a\x2f\x30\xbe\xca\xd7\x7a\x96\x81\x1c\x46\x12\x8a\xe5\x45\xa5\xa3\x9a\x89\x61\x7b\xed\x9e\xfa\x60\xc8\x96\xa7\x0d\x39\xb3\x3e\xd2\x89\x65\x99\xad\xba\x29\xe9\xc2\xeb\x79\x0d\x0a\xcd\xe1\x4f\xb0\x11\x2c\x8f\xe8\xd3\xdb\xfe\x76\x16\x95\xc9\x49\x13\x52\x2a\x2c\x6f\x13\x16\x2f\x33\x67\x49\x93\x30\x17\xdf\xd0\xa8\x98\x02\xab\x79\xe7\x00\x85\x16\xef\x94\x89\xa5\xf5\xde\x9d\x54\xc2\xe9\x3c\x2d\xf4\xef\x55\x55\xe5\x59\x16\xe3\xef\xcc\xa3\x2b\xe9\xf4\x0f\x8d\x7a\x3a\xd1\x49\x5c\xfa\x11\xbc\x6b\xf2\x07\x7f\x02\x80\xaf\x63\xb7\x2c\x88\x39\xef\x3e\x38\xf0\x56\xef\xdf\xfd\xc7\x06\xf4\xc1\xce\x00\x06\xf3\xec\x4e\x97\x6d\xbf\x30\xfe\xfd\x27\x96\x59\x74\x67\xac\xe2\x70\x93\x94\x11\x42\x89\x05\x1e\xbc\xd5\xa2\x18\xaa\xbf\x6a\x8e\x43\x09\x1d\xdf\x9c\xca\x9e\x53\x67\x12\x50\xe8\xcb\xeb\xc7\xe4\x08\x0a\x65\x9c\x05\x79\xf2\xab\xae\x29\x25\x91\xac\xa0\x6d\x41\x49\x1d\x79\xd8\xce\xc2\x04\xab\x2d\xfc\x45\xb0\x4f\x7f\x91\x88\x5f\xcf\x18\xa6\xce\xf1\x72\x24\x43\x68\xd8\x07\x47\xe9\x17\xb8\xf9\xc3\x3f\x20\xbf\xee\x74\x97\x39\x4c\xff\xc0\xe8\x48\xb3\xfd\x49\x65\xbc\x68\x38\x53\x30\xaa\xcf\x2b\x27\x42\x54\x5f\xf4\x9d\xd4\x38\x11\xb5\x56\xbd\x14\x2f\xb0\x6c\xbe\x18\x17\x04\xad\x4d\x0f\x22\x63\xd6\x3c\x51\xa8\x2b\xd8\x75\xe3\x2c\x80\x91\xd5\xd3\x04\x27\xdb\xf2\x39\x31\x80\x23\xab\xb9\x01\x5e\xb7\xd6\xb2\x16\x78\xd9\x56\x8b\x8b\x0b\x0c\xe9\xc5\xbf\x93\x21\xd5\x00\xac\xc2\xc6\xe7\xe5\xce\xb5\x15\x89\x37\x0e\x41\x6f\xd5\x3b\x77\x8d\x06\x89\x6c\xaa\x9f\x63\x14\xfa\xc6\x30\x87\xbf\x50\xb4\x2c\xcb\x23\x66\xd3\x6a\xd3\x5d\x26\x47\x6b\x90\x2f\x18\xad\x56\x0d\x17\xfa\xd1\x7e\x4e\x82\xc4\x9e\x06\x0b\x70\xa4\xf5\x3d\xb9\x3c\x24\x5a\xf3\x88\x20\xb8\x6a\x8e\x4e\xe8\xe9\xa3\xfe\xe1\x69\x64\xb9\xfc\x70\x25\x44\x24\xa2\xe0\xaa\x69\x84\x9f\x6d\x35\x14\xc8\x6c\x59\xde\x45\x4f\xf2\xdf\x7f\x5d\xd4\xcc\xaa\x2f\x19\x57\x7f\xdb\xbf\xff\x4c\xd5\x5f\x9a\xf5\xc7\xe2\x88\x4d\xcf\x1c\x84\x1b\x68\x58\x7b\x3f\xd3\x4d\x76\xe9\x19\x28\x4f\x67\x70\xfd\x71\x08\x6e\x8f\x5b\x66\xfa\x07\x3a\x55\xe9\x99\x30\xd1\x14\x33\x6f\xaa\x92\xd4\xce\x8a\x94\xfa\x72\xae\x9b\x95\x5e\xb6\xca\xb4\x36\x2b\xf3\xa2\xfa\xc0\xac\x85\xae\xf0\x12\xba\x15\x7a\x42\xe5\xd0\x99\xf5\x45\x75\xa1\xb4\x53\xb3\x12\xb4\x09\xf0\x54\x66\x29\x78\xcf\xe8\x3f\x9c\x45\x35\xf3\x5e\x49\xf5\x50\x69\xe1\xf5\x81\x5c\xa1\x43\x54\x4e\xe4\x59\xd3\xe2\x2b\x2c\x5d\xe1\x42\x5b\xa5\x64\xac\x70\xa1\x55\x4c\xce\xac\xb4\x08\xfb\xd2\x5c\x2b\x78\xab\xf9\xb9\xe3\x59\x3d\x56\xd8\x31\xc2\xff\x07\x1b\x70\x8f\xef\x29\x63\x94\x58\xe1\x62\x5b\xa5\x3a\xaf\x95\x57\x62\xa9\x1a\x6a\xa2\xc2\x69\x9a\xb8\x41\xb4\x07\x2b\x61\xa2\xae\x30\x95\x05\x0a\x0d\x2b\x6a\xe3\xad\xc7\xc3\x6a\x14\xd9\xcb\x6f\x60\x18\x82\xdf\xf5\x85\x8d\x31\xbc\x90\x8d\x57\x62\x1d\x02\x15\xd9\xf7\x55\x33\x75\xd6\xcc\xaa\xe0\xff\xdf\x4d\x6b\x3d\x65\xed\xa4\x51\x4b\xc5\x9a\x44\x36\xe7\xd4\xce\x13\xdc\x1f\x70\xe6\x25\xcc\x6a\x27\xcd\x02\x4f\xb5\x53\xa2\x7f\xfa\xc8\x7d\xae\x61\x26\xea\x5c\x7e\x63\x82\x6a\x53\x81\x08\x28\xbb\x6c\xd4\x17\x23\x4e\x15\x19\x98\x15\x18\xd1\x79\x7d\x66\x65\x8d\x41\xc3\xa7\x0a\x23\xb0\x6f\x01\x15\xe9\x07\xaa\x67\x2e\x98\x46\x4a\x34\xd1\x87\x35\x24\x6b\x2a\x8c\xbc\x3e\xd1\x2b\x7c\x56\xbf\x1f\x24\x97\xfb\x85\x07\x34\xaa\x87\x99\x24\x69\xf1\x66\xae\xbf\x88\x66\xae\xab\x4f\x1f\x93\xcb\xad\x3e\x26\x0f\x43\x73\x21\x9c\xee\x7c\xf2\x54\x44\x60\x55\x33\x25\xf4\x88\x1f\xe9\x04\xcf\xd5\x6e\x1d\x6f\x85\xe7\xaa\x51\x44\x5d\xbc\x6e\x99\xc3\x16\xe5\x9d\x7a\x80\x23\xaa\xd2\x0b\xcf\xba\x68\xc6\xf0\xde\x5d\x8b\x83\xf0\x17\xa4\x41\x13\xc9\x5c\x55\x6d\xf9\x05\x4a\x13\xc1\x88\xca\x98\xac\xb6\xfc\x03\xc4\xb6\x65\x20\x11\x9d\xe5\x13\xf4\x88\xd5\x02\x06\x21\x59\x4a\x04\x3f\x2b\x5d\xe8\x0c\xbf\xea\x9e\xfb\x44\x34\x20\x21\x41\x35\xff\xec\x54\x72\x58\xe4\xed\x1c\x85\xf8\x67\x67\xb0\x83\x48\x62\xe5\x23\x9f\xd9\x75\xe7\xf6\xf7\x56\x3b\x18\xdb\x28\xa2\x0e\x72\xa0\x3e\x80\x5e\x50\xce\x8b\xb3\x1e\x94\x92\x3a\xe4\xeb\x09\x21\xe8\x93\x02\x6a\xbd\x61\xf6\x39\x03\x0c\xa7\x0e\x58\xb4\xf9\x73\x16\x41\x8d\x37\xbc\x55\x11\xd1\x14\x16\x37\x27\x98\x21\xfc\x4c\x70\xe6\x41\x5e\x8c\x41\xf5\xe9\x78\x11\x39\xfb\x13\xa4\x08\xf8\x6c\x33\x66\x9a\xea\xde\xa9\x17\x5d\x03\x44\x03\x74\x76\x72\x21\x9e\xf5\xc5\x4e\xce\x02\x3f\x2b\xa2\xfb\x67\xf7\x36\x42\x91\xe6\xcd\x92\xfd\xc6\xda\xcf\xbf\xe4\xdf\x9e\xf5\x26\xbd\x82\x39\x15\x2a\xba\x69\xbc\x59\xe9\x31\x67\xf8\x58\xef\x85\x54\x37\x62\x84\x9b\xa6\x1e\x6f\xca\x1b\x87\xa3\x27\x09\x38\xe8\xb3\xae\xb4\xd3\x9a\x31\x1e\xc4\x52\x48\xb9\x5a\x11\x5e\x54\x7d\xd6\x11\x16\x59\x8e\xbc\xb0\x68\x0e\x23\x10\xa4\xa0\xb2\x56\xb1\x3e\x29\xa9\x34\xc5\x50\xd0\xcd\xfe\xf9\x02\x14\x2e\x7f\x71\xf2\x0b\xcd\xe9\x03\xd6\xd3\xac\xb4\x4c\x49\x25\xe0\xd5\x88\x7a\x3e\xcf\x34\x1c\x4f\x3d\x33\xc6\x51\xcb\xd8\x7e\x24\x72\xe8\x79\xff\xf7\x9f\x50\xa1\xeb\xd9\xe0\x40\x27\xbf\xf0\xd9\x5e\x18\x54\x15\x3a\x37\x1b\xb5\x6d\x3a\x4c\x1b\x50\x91\x1c\x4e\x67\xfb\x51\xb7\x21\xa9\xd2\xd2\x5d\x4e\x1b\xb4\x6d\x14\xf8\xea\x71\xcb\x95\xee\xfa\x21\xf8\x83\xdf\xa0\xe4\x12\xf4\x6a\x05\xac\xa5\x63\xa9\x21\xda\x48\x91\x3e\xb3\x95\x85\x34\x7f\xfe\x1f\x32\x42\x82\xad\xbd\x30\x69\xd8\x9d\xab\x31\x99\xbc\xf1\x6a\xab\xe9\x9f\xac\xe7\x57\x24\xd8\x2d\xa6\x51\x35\x25\x7d\x4d\xab\xb9\xb2\x6a\xb1\xe2\x10\x5a\x7e\x46\x65\x56\x49\xd2\x46\x4b\xa6\xc5\x77\x83\x25\xd3\xae\x74\x8d\x96\x4c\xe3\xd9\x86\x38\xf6\xe1\x59\x42\xf2\x4e\xd5\x35\x9a\x2d\x2d\x9d\x92\xbd\xad\xa5\x9c\xd3\x52\xb5\x1b\x89\x8d\x35\x8b\x80\x18\x53\x05\x2c\x66\xa3\xd6\xc9\x30\xbe\x75\x5e\x46\x44\x43\x4f\x8e\x56\xa7\x9d\x5e\xaa\xea\x93\x4a\xa6\x2e\x44\xdb\x3a\x25\x95\xf9\x69\xf0\xb0\x15\x8b\x37\x44\x96\x77\xc9\xf3\x06\x2d\x93\xdd\x7f\x1a\x0a\x25\x6f\x9e\x6a\x3a\xae\xf9\x12\xd7\x06\xf9\x67\x73\x0b\x2f\xcf\x2b\x7a\x73\x36\xaa\x9d\x0c\xed\x1b\x42\x73\xec\xd8\xd8\x98\xc0\xd3\x17\xc9\x36\x0e\xbc\x60\x1a\x19\x9b\xec\x06\x78\x22\xb8\x81\x1b\xef\xfb\xff\x07\xcf\x9a\x58\x46\xea\x28\x00\x7b\x36\x84\xaa\x5b\x0d\xd5\x82\x0e\x20\x92\x1d\x2d\x72\x94\xea\x02\xbe\x70\x9b\xb7\x40\x10\x71\xe8\x28\x6d\x2f\x4e\x1a\x72\x41\x7e\xef\xfa\x9c\x16\x71\x14\x9c\xe3\xec\x0b\xd7\x02\x56\x43\xf3\x4b\xe4\xda\x99\x28\x32\x90\x24\x7a\x83\xc1\x75\x76\x01\xe7\x06\x83\xab\xdd\x56\x1b\xbc\xe3\x9a\xb7\x4d\x66\x77\xb7\xb4\x41\x4e\xa6\xe6\xc5\x5c\x28\xfc\xe2\x8d\xba\x88\xbc\x04\x28\xda\xa2\x95\xd9\x6b\x47\x35\xd4\xf0\x33\x37\x92\xce\xca\xc6\x40\xf4\x5e\xdc\xe6\x82\x2f\xed\x5f\x0a\xb7\xce\x06\x4b\x69\x37\xf7\x2d\xe6\xf6\xd6\x9d\xad\x01\xe1\x34\x33\x1b\x32\x32\xd9\xd5\xa3\x31\xc3\x52\xd7\x39\xd9\x76\xe2\x30\x53\x0c\xe7\x32\xbb\x2c\xb7\x3d\x25\xa6\x9a\x60\xa1\x45\x9b\x3a\xdb\xc1\x60\x34\x7d\x71\x34\x88\x02\xd1\x70\x4c\x54\x2b\xd0\xa4\x1d\x5c\x69\xf5\x78\xf0\x4a\x64\x21\x0d\xf5\x90\x7d\x9c\xda\x41\xfe\x76\x87\xd4\xc3\x9a\xfb\x98\xb7\xbd\x17\x93\xc0\x69\xd0\x17\x27\xfd\x4f\x85\x57\xdb\xc9\x79\xd1\x34\x9c\xc4\xaf\x42\xc4\xed\x84\xc1\x4b\xd0\xb0\x21\xf9\x66\x73\x0f\x27\xe5\x9b\x06\x81\xa0\x01\x3b\x1a\x36\x58\x3a\x9b\x4e\xef\x76\x12\xe7\x59\xbc\xc1\xf2\x69\xd7\xb3\xf6\x62\xa4\x61\x17\xaa\x86\x20\xf0\x18\xfe\xbf\x72\x8c\xa2\xf0\x22\x45\x6a\xf0\xe2\xb4\xfa\x7f\x50\xa4\x5b\x62\x7b\x11\xd2\x34\xb8\x6d\x77\x72\xa2\xa6\x99\x69\x30\xbb\x69\xbe\x4f\x94\x00\x57\x0f\x37\xdc\x51\x2d\xb1\x6f\x4a\x68\x21\xcd\xf6\xe4\x34\x8b\xe8\x87\x5b\x52\xd0\xb1\xd1\xb7\xcc\x57\xf6\x06\xd4\x62\x47\xa2\xf6\x50\x1a\x5a\xe0\x3e\x49\x95\xe8\x7e\x68\x71\xf3\xbe\x87\x1f\x58\xab\x6e\x92\x97\x15\x5d\xb1\xda\x03\x6e\xd0\xcc\x75\x86\x51\x4f\x3f\xe3\x6e\xa2\x71\xf6\x5f\xd2\xb0\xf4\x03\xbd\x70\x04\x33\x3a\x8d\x78\xbe\x9c\xf4\x8d\xe7\x86\x44\x45\x67\x5c\xb4\x9d\xea\xfb\x8b\x2b\xaa\xea\x58\xbd\x87\x10\xa8\x56\xa7\x48\x3a\x64\x1f\x99\x0e\x2b\x9d\x5d\x09\x3b\xf5\x37\xfd\xf3\x01\x39\x4a\x12\xb2\x6f\x14\x06\xcb\x34\x60\xdc\x9a\xfc\x5e\xc8\xf4\x43\xcf\x5c\x0c\xb1\x44\x2f\xf5\x5d\xf0\x9f\x5f\x18\x48\xdf\xa0\x89\x62\x61\x1c\xdf\xe2\x3a\x93\x06\x59\x03\xd4\x4b\x52\xe9\x4f\xb8\x38\xa2\x09\x4a\x1d\x23\xc0\x5e\x78\x02\x0b\xd8\xf7\x4a\x25\x93\xd0\x52\x4f\x1d\x8d\xf6\x6e\x4f\xcb\x9d\x2e\x0b\x9d\x96\x3b\xb7\x59\x09\x14\xb4\x99\xfb\x0b\x6f\x22\x84\x0a\x7b\xbd\x5f\x54\xe9\xc5\x62\xfc\xa1\xef\xbb\x1d\x2a\x17\x3b\xde\xf4\x86\x99\xf3\x62\xb4\x8a\x0a\xa9\xea\xa0\x51\x35\xd1\xdc\xc0\x44\x03\xea\xb1\x31\x55\x91\x26\x0e\x41\xca\xb6\xa8\x75\xf8\x7d\xd9\x47\xa1\x23\x77\x79\x78\x48\x09\x86\x84\xb7\x7a\x4f\x86\x53\x0f\x9d\x5b\x4d\xb8\xa2\xd3\xf3\xcb\x17\x8a\xde\x2b\xe4\xb2\x88\x46\x04\xa4\xbd\x18\x7a\xea\x57\xda\x9f\x2c\x45\xbd\x43\xdb\x6d\xde\xe9\x1c\xb1\x09\x5c\xe8\xcd\xcf\x04\xb9\xa6\x97\xec\xeb\x55\x64\x38\x65\x74\xd3\x4b\xa5\xab\x74\x2d\x1d\x59\x7c\x3e\xb3\x3e\x68\x3e\xf3\x2c\x8e\x09\xdf\x35\x71\xe3\x40\x06\x79\xcf\xfa\x00\xa6\x30\x3f\xbf\x40\x6a\xaa\x74\xee\xec\x00\x4e\xcd\x14\x8c\x9c\x75\xbd\x40\x14\x23\xe1\xd4\x83\xd0\x5f\xf7\xff\xce\x1a\x36\xb6\xbf\x76\xfa\xf8\xdb\xca\xd4\x69\xb0\xb3\x0b\x7a\x87\xc1\xce\x06\xda\x4e\x83\x9d\xed\x92\x1d\x8e\x65\x4d\x18\xa3\x27\xce\x31\xb3\x4d\xa4\x0d\xf7\x3c\x31\x05\x4f\x48\x73\xd6\x27\x4f\x7d\xa1\x90\x3e\x39\x0e\x37\x89\xc5\x33\x4d\x33\xc7\xe5\x1f\x70\x98\x7c\xba\x3c\xf8\x82\x89\x64\xce\x26\x5d\x16\xfb\x24\x6e\xd0\x09\xda\x11\xcc\x6c\xd3\x75\x5f\xdc\x53\x6a\x81\x26\xbd\xee\xd9\x47\xd0\xa5\x5d\x37\x3a\xa0\x93\x2d\x7c\x9d\xb5\xaf\x15\x93\x3e\x3b\xa0\x94\x3d\x9f\x3b\xa2\x01\xda\xe7\x7f\xc8\x22\x9d\x3d\x9d\xfa\xa2\xfe\xe9\x81\x53\xef\x2f\xd2\xe4\xa7\x4b\x7a\xdf\x53\x3a\x69\x62\xe0\x59\x66\xdf\x9d\xce\xfc\xe6\x56\x86\x74\xe8\x90\x6c\xc2\xef\x3b\x65\xa8\x2e\xcd\x7d\xe7\xdc\xfb\x83\xf5\x5e\x5a\xa6\x3f\xd8\x61\xd1\x13\x91\x08\x0f\x50\xc6\x9a\xd9\xf7\x17\x13\x4e\xcb\xa6\x9d\xc7\x9f\xd7\x6e\xbf\xf1\x82\x49\x84\xe3\xa2\xa0\x78\x3f\x7e\xef\x2e\xd8\xfc\x4c\x70\x3f\xfd\x03\xe5\xa9\x6e\xe9\x3d\x2d\x80\xd2\x17\xf6\x83\xda\x0f\xdd\xa3\x3a\x31\x9e\xcf\x26\x78\xb7\x35\x9f\x97\xb4\xf8\xf9\x5e\xd5\x4f\x44\xeb\xe9\x0a\xd2\x99\x1e\xbd\xfa\x90\x66\x09\xc5\xcf\xe6\x85\xb3\x59\xf3\x21\xcd\xec\xe6\xdd\x0c\x76\xd2\x83\x6e\xf9\x0b\xdc\x72\x05\x14\x7a\x06\x72\x7a\xf7\x9e\x38\x30\xcd\x40\xc4\x64\x96\x71\x88\xdb\xb4\x8f\x42\x4f\x8b\x9e\xd7\x0a\x16\xbc\xe6\x83\x07\xf1\x00\x76\x41\xe8\x17\x19\xcc\x3d\xa4\x09\xcf\x47\xd3\xcd\xcd\xed\x99\x43\xb6\xf3\xcd\xfb\xea\x26\x0d\x9a\x38\x46\x04\x7c\x04\x71\x6a\xa2\x7c\x80\x42\x13\xe5\x3b\x40\xbf\xb1\x16\xdd\x1f\x50\x03\x6d\x8e\x4a\xe7\x2f\x03\x09\xd4\xa7\x69\x0e\xf0\xeb\x4f\x76\xaa\x99\x78\x50\xb5\x4f\x57\xd2\xfe\x70\xfd\xfd\x01\xfa\xb4\x30\x40\x81\x9a\x69\xa4\xc1\xfa\x87\xd6\x62\x76\xf8\x7e\xb5\xf8\xd3\xb5\xa8\x3f\x09\x22\xfe\x9b\xc5\xf1\xa3\xc2\x51\x13\x3f\x90\xb7\xd2\xae\x8d\x03\x90\x4f\x31\xe1\xef\xa9\x88\x3c\x7e\x55\xcf\xe4\x57\x37\x08\x51\xa2\x4d\x38\x90\x07\x27\x94\x1a\xeb\xdd\x3e\xec\x71\xe8\x07\xde\x28\x24\x21\x07\x14\x4b\xf6\xac\x18\xdb\xf8\xf7\x9f\x6e\xed\xf5\xd8\xe2\x7d\x16\x60\x1c\x1b\x3d\xd1\x74\xc5\x18\xa9\x67\x12\x2b\x8c\x8d\x93\xea\x2e\x29\x94\x97\x7f\xe0\xbd\x48\xfc\x38\x4a\x52\xa9\x4e\xa1\x9a\xb2\xf1\x7f\x94\xac\xea\xa6\x81\xd3\xd3\xdf\x0e\x05\xa3\x50\xc3\x1d\x6e\x82\xbb\x4a\x9d\x16\x94\xee\xd5\xa1\x3a\x2a\x36\x91\xe7\x21\xd1\xd9\xf2\x0f\x39\x50\x11\x91\xea\x2a\x1d\x68\x83\x25\xaf\xad\xaf\x1a\x34\x9a\x75\xf1\xd3\x48\xa3\x99\x39\x00\x41\x93\xf6\x28\x18\x2d\xd3\x20\xaa\x13\x78\xef\x8f\xa9\xfb\xd3\x60\xee\xf1\xd0\xbe\x18\x09\xea\xba\xdf\xc0\x6e\x96\x68\x1f\x00\x69\xaa\x48\x36\x07\x52\x2d\x5a\xe5\x3b\x7a\xb2\x80\x3e\xe8\x3c\xe2\xbc\x62\x74\xbe\xb7\xe3\xf1\x80\xf7\xbd\x23\x48\x06\xeb\x0b\x76\xcf\x1e\x6c\x5e\xa1\xd4\x5b\x73\xc0\xc6\x35\x3e\x7d\xc0\xde\x64\x65\xe1\xe8\x88\x93\xf6\x02\xa2\x04\xf5\xc7\xbd\x6f\x00\x67\x85\x79\x1b\x9e\x56\x76\xbf\x1e\x48\x36\x13\x4a\x43\x35\xc7\xa0\xbd\x51\x47\xd8\xa0\xd2\xcb\x9a\x96\x81\xb4\x16\xd6\x55\x0f\x56\x9d\xb6\x4e\x6b\x20\x02\x40\x49\xa1\xe6\x18\xbc\x61\xe9\xcc\x19\x83\xf0\xc1\x54\xc0\x97\xca\xf6\xee\x11\x8c\xd5\x31\x9f\x21\x3f\x62\xb1\x8e\x72\x44\xb2\xae\x3a\x09\x06\x33\xba\x49\xea\x24\x4d\x26\xc0\x9a\xca\xf5\xcc\x01\xac\xe6\xba\x5b\x73\xcc\x6c\x52\x9d\x4e\x08\x5b\x0b\xd7\x31\xc9\xbb\x9e\x1b\x78\x43\xd5\xcf\x17\x3c\x9e\x3d\x90\x4c\x36\x21\xd4\x3a\x60\x3a\x6b\x9f\xe7\x8e\x9c\x34\x1a\xd7\xca\x81\x6a\x5c\x69\x4b\x93\x1e\x6b\x20\x99\x61\xb1\x86\x6f\xec\x30\xe5\x5b\xbb\x36\x76\xf6\xa1\x2f\x76\x40\xc8\xe2\xff\xd9\x87\x40\xc1\x80\x63\x92\x4d\x6b\x83\x66\x2a\x2b\x3c\x06\x72\x41\xd8\x40\x33\xe0\x31\xdf\x2c\xac\x0e\x8a\x1e\x4f\xf6\xc1\xcd\xe0\x89\x40\x72\x08\x5b\x73\xc7\x11\xec\xc2\x4d\x50\x50\x78\x14\x8c\x53\xb4\xba\x6b\x1c\x0f\x7f\xd0\x5c\x9d\xf4\xfa\x11\xe6\x1b\x67\x92\xe1\x1f\x92\x0c\xb5\x81\x58\x46\xab\xb3\x06\xbd\xe0\xad\xa9\x19\x54\x05\xad\xf6\x97\xa3\x69\x9c\x4c\x15\xec\x8f\x71\x30\x5a\x44\x9f\xcc\x57\xe8\xde\x32\xd7\x99\x9e\x91\x67\x49\xe8\x6e\x5c\x49\xbf\x46\xc8\x28\x47\x6b\xcb\xc6\x45\xfa\xfd\x4c\x05\xb4\xf7\x1a\xd3\x03\x2a\xd1\xf5\x1c\xcc\x9d\x5d\xdd\x24\xd9\xc7\xdc\x80\x30\x47\x1b\x86\x06\x8c\x6d\xc5\xca\xaa\x01\x4f\x25\x1b\x24\x06\x3c\x95\x6c\x1d\x1b\x84\x39\xd6\xb7\x0d\xa6\xa4\x50\x0a\xe4\x39\x00\x73\x3e\x02\x82\x65\x9d\xad\x70\x1b\x89\x73\xcc\x1e\x37\xd9\xc3\x02\x1c\x39\x2a\x6c\x32\x1c\xf7\x89\x67\xf7\x79\x41\x79\xea\xf7\x91\x17\x46\x37\xd6\x71\x93\x68\x71\xc6\x83\x9a\x3f\xd2\xc8\x0c\x60\x9a\x6e\x76\xcc\x0c\x15\x9e\x47\xd8\xcb\xba\xf7\x0c\xec\x65\xb1\x7d\x7e\xe0\xde\xf7\xa8\xe1\x57\x64\x90\x1b\xa8\xf1\x62\x93\x47\xc0\x8b\xc8\x7e\x1a\xc1\x94\x15\x76\xff\x0c\x56\x74\xb1\x4e\x27\x7e\x5c\x6d\xb1\x6f\x00\xe9\xd8\x5a\x15\x3f\xae\xbe\x6e\xa8\xf1\x9b\x78\x61\xea\x99\xc3\x74\x03\x3b\x9e\xdd\x03\x1d\x88\xb5\x10\x01\x9b\x9b\xe7\x35\xe8\x89\xa4\x7c\x94\x33\xe8\xe2\x6e\x05\x5c\x30\x8b\x60\xf7\x30\x50\x01\xa6\x4b\x98\x04\x72\x56\xf4\x9f\xff\xe7\x89\xb3\xfc\x02\xdd\x52\xbb\xdf\x80\xdf\xcd\xf0\x33\x61\x8a\xe7\x01\x60\xc9\x2a\xe2\x40\xd9\xe8\xf8\x7c\xc0\xcb\x80\xe7\x65\x23\x56\x17\x4e\x89\x04\x4f\x92\x81\x51\x12\x31\xf8\x8d\xe4\x6a\xad\x5f\xe9\xe8\x54\x53\x55\x28\xa9\x3d\x35\x70\x7b\xb7\x3a\x3e\x0a\x43\x9d\xba\xfb\xc8\xb9\xd3\x0f\xb0\xfd\x7d\x3c\xcd\xa2\x52\x00\x48\x8f\x1b\xf0\x61\xb2\x65\x25\x90\xf5\xcf\x66\x91\x60\xce\x0a\x15\x65\x9f\x01\x9f\xa4\x8f\x5b\x4c\x20\x67\x45\x2f\xee\x22\xe7\x46\x93\x05\x74\x65\x5b\x4c\x10\x5d\xd9\x69\x25\x98\x92\xc2\x4e\x05\x41\x8b\xa2\x95\x91\x01\x8d\x98\x43\xb0\xa2\x31\xb3\x80\x3f\xc0\xee\x35\xcf\xd0\x5e\x68\x05\x69\x20\xf1\xb5\xcd\x0a\xd1\x73\x62\xb4\x80\x88\x74\xb4\xc2\x34\x5e\x6c\x15\x8e\x21\x8c\x8e\x79\x91\xba\x3b\x60\x3e\xfc\xd8\x30\x03\x3e\xeb\xd6\x3c\x47\x6a\xa8\x86\xbf\xc0\x34\xe8\xf0\x0f\x14\x61\xe9\x92\x48\xc1\x48\x48\x2b\x79\x63\x90\x24\x7f\x80\x80\x2a\xef\x6f\x78\x9c\x5b\xa1\x1e\xc8\xca\xd7\x75\x1a\x04\x2c\x79\x56\xa7\xc7\x20\x77\xd4\x3f\x39\xd4\x45\x66\xbc\x30\x47\xa3\xd8\xca\x47\x49\x17\x08\x92\xb4\x49\x20\x02\x0a\x60\x6f\x1a\x24\x03\xeb\x96\x36\x41\x5d\xbc\xee\xb3\x41\x2b\x9d\x55\x6a\x11\x88\x4a\x33\x3f\xc3\x26\xe7\x9c\x18\x31\x89\x67\xbd\xf5\x67\x6e\x11\x7f\x01\x44\x35\x2c\x90\xe0\x4e\x3e\x87\x05\xce\xa4\x5f\xc2\x70\x1b\xaf\xa4\xb7\xab\x6e\x30\xf1\x84\xaf\x77\xb1\x78\x1e\x99\x0c\x2a\x9f\x54\x1e\x70\x06\x0d\x77\xbe\x31\xc6\x4a\x81\xa2\x91\x65\x54\xa2\x25\x08\x6c\x6f\x56\x16\xc6\xce\x4d\x61\xc9\x09\xf7\x22\xeb\x70\x63\xa7\xf5\x50\xd7\xb3\x60\xaa\x88\xe1\xc9\x00\xea\xb2\x2a\x30\xf6\xec\xd3\x4d\xa0\x4f\x53\x79\x90\xe3\x84\x27\x02\x05\x4c\xac\xf9\x0b\x94\xba\xeb\xbe\xb8\x06\x52\x3b\x2c\xef\x75\x18\xdf\xac\x02\x0b\xb8\x17\xf5\x4f\x83\x37\x69\x74\x8b\xf4\xdf\xd5\x95\x31\x10\x78\xe8\x78\xcf\x20\xe4\x1a\x96\x82\x40\x58\xd6\x5f\x06\x00\x95\xd5\x70\x81\x0c\xcb\x56\x04\x06\x93\x45\xb4\x4f\x8b\x94\x60\xe1\x37\x88\x58\xa4\xe3\x8a\x93\x13\xa7\x51\x9c\xa4\xda\x82\xf6\x22\x91\xfa\x00\xde\xdf\x56\xbb\xc4\x95\xeb\xaf\xc5\x43\x18\x61\xdf\x2c\xd1\x2e\x82\x4f\x2f\x0e\x2b\x8e\xf8\x22\x15\x09\x93\x3c\x50\xaa\x7f\x86\xf7\x13\x9c\x90\x1c\x48\x15\xcc\x93\x6c\x65\x60\x10\x27\xd9\x59\x2b\xe8\xb1\x6d\x1d\x75\xd0\x6a\x37\x2c\x07\x91\xc9\xb8\x5b\x6f\x10\x34\xe3\x99\xb5\xa1\xef\xe9\xbe\x6f\x07\x81\x8f\x2e\xbe\xc1\xfa\xc4\xd6\xbc\x06\x5c\x8d\xba\x2e\xc2\x41\x05\x91\x35\xab\x81\x04\x10\xdd\x80\x30\x18\xfd\xd7\x3e\x6d\x32\x92\x45\xd3\xc9\x5c\xc7\xed\xd3\xe6\x81\x6c\x74\x1a\x06\x14\x40\xd6\xe6\xc5\x43\x51\xa7\xb9\x9a\x70\x36\xea\xbe\x09\x4f\x82\x23\xc7\x14\x4d\xd6\x1e\x71\x40\xcf\xfc\xe5\x1a\x4e\xfd\x00\xd7\x37\x49\x92\xf9\xe3\x9a\x76\xb7\xb9\x53\x3c\xf9\x8d\x9c\xdd\xa5\x1f\xb0\x3f\x84\x01\xe6\x0f\x74\x4b\x22\xce\x1f\x27\x57\x2d\xa6\xe6\x48\xcb\x31\x89\x7d\x24\x9b\xe6\x46\x1e\xd0\xc8\xe7\x96\x3c\xa0\x2e\x99\xb0\xcb\xf7\xa0\x09\xdb\xa1\xb5\x5d\x13\xbe\xdf\xd6\xce\xcd\x8d\x9a\x72\x9d\x33\x73\xcb\x71\x8a\xea\x2d\x97\xc3\x7d\x50\xb2\x87\xc9\x3a\xd9\xa9\x06\xc6\x24\xcc\xd6\xe9\xce\x17\x30\xc5\x94\x9c\x9e\x85\x03\xfb\x93\x87\xdd\x2c\xdc\x7f\x9a\x26\xb8\x96\xdb\xd9\x73\xa2\x42\x9e\xb5\xe0\xb3\xf0\xb0\xd6\xe9\x3d\x0b\x0f\x67\xa9\x52\x66\xe1\x96\xd7\x61\x3a\x59\x36\xd9\xea\xdd\x59\x49\xa0\x26\xba\xf2\x38\xd4\xf1\x3a\x2b\x85\xc0\xf0\x0f\x9c\x58\xcd\x12\xbc\xbb\xad\x1c\x9b\x19\xf3\x27\x2d\xd3\x24\x92\xf2\xc4\x53\x71\xa5\xb2\xdb\x73\xa6\x5e\x4a\x34\x34\xee\x3d\xb3\x43\xc3\xc4\x78\x58\x0c\x12\xb4\x12\x7a\x36\x48\x53\x2f\x54\xa3\xf5\x47\x4a\xa6\x89\x12\x79\xb6\x13\x4f\xfa\x72\xab\xf4\xee\x9c\x2d\xd7\x5a\x93\xfd\x62\xaf\xe2\x54\x08\x13\x95\x95\x7d\xd7\x9f\x54\x7c\x85\x34\x2b\xb3\x27\xd5\xfe\x81\x54\xab\x0b\xb8\x7b\x5b\x75\x39\x7b\x12\xa9\x99\xec\xdc\x9a\xee\x03\x8a\x2e\x1b\x8e\x67\xa2\x33\x61\xa1\x49\x74\xe6\x61\x76\xce\xbd\x34\x2f\x13\x9a\xb0\xf2\xa1\x89\xe2\xd8\xab\x07\x4d\x58\xfb\x10\x85\xad\xeb\x69\x80\x77\x58\xdf\xcc\xd1\xf4\x0e\xb3\x0e\x77\x0e\xa6\x9d\xf0\x0b\x1c\xb6\xba\x1c\xcc\x93\xa4\x1e\x47\xee\x5c\x2d\xde\x0b\xf8\xaa\x2f\xca\x93\xa9\x32\x54\xab\x74\xce\x41\x06\xf2\x33\xa7\x5e\x8a\xb2\x49\x1b\xa5\x2a\x89\xce\x19\x4c\x15\x29\x1a\x82\x6b\xe3\xad\x83\x3c\x67\x56\x78\x4c\xb8\xb4\x5b\x31\x33\x91\x19\x63\x99\x68\x1a\x39\x1d\x6b\x37\x19\x84\x68\x6d\xfe\x44\xde\x32\x6b\x72\x26\x4c\x9a\xdd\x34\xc2\xa4\x69\xcb\xee\x9c\x39\x8f\xfa\x60\x62\x27\x7a\xe9\x88\x12\x75\x2f\x9e\x2c\x19\xf2\xf3\xfb\x30\x1f\x78\x9e\x11\x51\xe8\x4b\xef\x5c\xfc\x5e\x43\x80\xca\x6c\x4a\xc3\x31\x17\xa4\x89\x54\x22\x93\x1a\xb4\x8f\x50\x5e\x60\x2e\xdd\x71\xe7\xe2\x88\x34\x05\x8b\xa7\x91\x19\x3c\xc1\x9e\x10\xc7\x24\xd8\x5b\x7e\xc6\x36\xd5\xf5\x72\xee\x3c\x21\xcd\xbf\x88\x05\xec\xca\x62\x3f\xe7\xce\x42\x12\x1a\x04\xb2\xaf\x5a\x65\x32\xa1\x61\xf3\x35\x7b\xa2\x96\x9d\xef\xab\x13\x81\x7b\x2a\x8a\x33\xe7\xc1\x75\xf6\xfb\x01\x6d\xa7\xff\xe7\x19\x60\xfe\xa7\x91\x4e\x25\x68\xe7\x84\x5b\x95\xaf\xed\xf3\xcc\x41\x6b\x50\x2f\xd4\x2b\x9b\xf7\xc3\x59\xe0\x31\x24\x92\xa1\x4b\xb3\x3b\xef\x44\x94\x5e\x73\x26\xa9\x79\xe6\x24\x68\xd0\x27\xc5\xba\xa9\x3e\xe9\x19\xe1\x69\x3a\x11\x74\x2b\xa0\x36\xa9\x21\x1b\x9f\x1f\xa0\x86\xdf\xca\x5f\x0a\xe8\xcd\x49\x3f\x2b\x95\x20\x9d\x13\xfa\x34\xdf\xb7\xe7\x8b\x0c\xeb\xf4\x76\xba\x88\x08\x8a\x7f\x80\x4f\xb2\x05\x15\x8c\x80\xbe\x0a\xcf\x8b\x07\xa7\xb9\x1d\x85\xe6\x7c\xbb\x9e\x37\x95\x96\xde\xa1\x37\x42\x00\x4c\x52\xaa\xbe\xbc\xc1\xee\x89\x2e\xc4\xcf\x19\x53\xe7\x0d\x04\x04\xe7\x6b\xd9\x04\x82\xb3\x1a\x72\x3e\x1c\xa4\xdf\xef\x00\x46\x9a\xf5\x27\x7b\x14\x3b\x3f\xc8\x41\xe1\x41\x43\x39\xe6\xcb\xf7\x84\x53\x96\x9d\x00\xe7\x83\xaa\xab\x66\xb6\x07\xa5\x03\x04\xf7\xd6\x2f\x57\x6d\xe9\x07\x52\xdc\xf5\x0c\x0a\x85\x79\x56\x62\x39\x5d\xb6\xd7\x0f\x0e\x29\x5a\x97\x05\xbd\x95\xef\x52\xeb\x07\x8a\x36\xff\x4f\x85\x82\xe4\xde\x02\x32\xf3\x10\xd7\x46\xe5\x9b\xff\xaf\x68\xc0\xcf\x74\xa8\x13\x45\x1b\xd6\x59\x50\x7d\xbd\x00\x69\x78\x0e\x17\xd3\x6c\x59\xe9\xbe\xa0\x1d\xf2\xfd\x70\x15\x1a\x9c\xb4\xc3\x17\x8c\x6f\x7d\xf3\x2c\x31\x6d\x82\x63\xf4\x16\x22\xde\xba\x12\x86\xcf\x55\x29\xed\x25\xda\x16\xfd\xa9\x54\xc2\x63\xae\xca\xa3\x57\xb2\x6d\x01\xd4\xf8\x6a\xb4\x2a\x6f\xa1\xdd\x2f\x80\xbb\xb4\xab\x17\x14\x48\xe1\x4d\xba\x68\x9f\x73\x0c\xdb\x02\xec\xf1\x8d\x6f\x51\x81\xa4\x8a\x07\x73\x35\xa2\xe0\xe2\x1f\x36\xcc\x85\x5a\x68\xc4\x62\xba\x40\xac\xc6\xd9\xd7\x72\x03\xf6\x8c\x4f\x03\x9d\x1f\xf8\x05\x9a\x30\x3c\x9b\x4c\x85\xe0\xac\xa6\x0b\x2a\xa6\x61\x0e\x7a\x61\xce\xff\xd1\x44\x21\xef\x99\xa2\x4b\x95\x8d\x1c\xab\x23\x8e\x4e\xb7\xc8\xc5\xe2\x67\x36\x1e\xac\x04\x25\x9f\x2f\x78\x76\xea\x1c\x58\x9d\xca\x8b\xcf\x27\x60\x1b\x89\xed\x45\x1f\x75\xaf\x06\x94\x4c\x43\x3a\x98\x95\x4a\x26\x9d\x03\x6b\xe4\xd4\xa9\x05\x96\xfe\xf5\x6e\x5f\x83\x73\xa7\xc9\x1e\xe4\x00\xb1\x08\xd4\x4e\x46\xce\x6b\x10\x20\x9a\x68\x38\x4a\x19\x7c\xaf\x41\x91\xb6\xdc\xe5\x83\x17\x34\xec\xa0\x48\x33\x91\x48\x85\x60\xd7\xc3\x15\x49\xa3\x68\x80\x2a\xca\x40\x79\x05\xb1\xb8\xf4\x2f\x0b\xbe\x58\x43\xba\xb5\x85\xfc\x5c\xc5\x46\x88\x15\x14\xcc\x1e\x46\xe4\x54\x6b\x1e\xe8\x42\x6e\x93\xc1\x02\x70\x31\x32\x5e\x2f\x70\x29\xaa\x8d\x3a\xd7\x0b\x5c\xb6\x3a\x05\x00\xd7\x84\x64\xb6\x94\x42\x4e\x2f\xcb\xfe\x35\x07\x84\x92\xe6\x81\x09\x57\xcb\x9f\x6c\x47\x0b\x5e\x59\x43\xa8\x65\xa5\x26\xec\x43\x0e\xd7\xc9\xcf\xd0\x8c\x59\x3a\xcc\x1c\x9f\xbb\x7f\x50\xce\x53\xe4\x31\xf3\xbd\x2a\xb3\xce\xb5\x48\xbf\x9f\x1b\xf7\xa9\x66\x88\x7a\x31\x23\xd6\x95\x79\x16\xfc\x8c\x11\x7a\x23\x2f\x0c\x42\x9a\xb6\x85\x82\x13\xbe\xf7\x2f\xfa\x5c\x0d\x8b\x51\xfa\x5c\x59\xf9\xbf\xe0\xc3\x6e\x80\xbb\xf6\x14\x60\x1a\xe6\x0e\xf6\x15\x4c\x59\x3b\xea\xae\x7a\xde\x90\xdd\xcb\xd0\x6c\xa5\x47\x95\x9f\x21\x07\x84\x62\x16\x94\x6a\x9f\x5d\x7d\x70\x96\x74\x71\x5c\xc8\x73\x6f\x84\xb1\x60\xca\xb4\x92\x6d\xd1\x83\xca\x46\x97\x75\x24\xc9\x5a\x29\xba\x54\xd9\xea\xb2\x0e\x0a\x5d\xdd\xd2\x16\x3c\xa6\x0c\x43\xd6\x91\xcc\xeb\x4e\xb0\x07\xa5\x5c\x5a\x80\x39\xd6\x8f\xac\x8b\x77\x0d\xef\x41\x66\xc6\x9a\xde\x20\xa9\xd2\xf2\xda\x5d\x41\xaa\xd4\xc7\xc5\x4b\x97\xb7\x29\x9c\xca\x3f\x47\x03\xeb\x78\x59\x30\x30\xb3\xbc\x03\x41\xd6\x3d\x90\xf2\x44\x44\x20\x97\xd5\x47\x4a\xb3\x26\xae\xb3\x26\xac\x9b\xda\xdd\xf1\x3f\xc6\xde\x24\x67\x9b\x5e\x59\x0e\x9b\x7b\x15\xdf\x0e\x5c\xec\xc9\xc9\x3f\xf1\xd8\xde\x43\x75\x34\x34\xd0\xd5\xc5\xb1\xb4\x7f\xa3\x22\xc8\x88\xe7\x18\x92\xf1\x0d\x5e\xe0\x7d\x8a\x55\x6c\x92\xc9\xcc\x64\xb6\x7e\x83\x48\x6c\xc6\x3d\xa9\xf8\xf1\x29\x9d\x14\xd9\xa4\x3c\x18\x94\x66\x0c\x0a\xb8\x2b\x35\x47\x07\x8e\x09\xa4\x2c\xfe\x60\xcd\xc2\x2f\x3c\xec\x52\xe0\x9f\x0b\x4d\x37\xb8\x4f\xe6\x9e\x3a\xfc\x1b\x79\x35\x6c\x91\x3a\x61\xbb\xb3\xa9\xe7\x44\x2c\x9c\xa9\xf2\x79\x90\xb9\x27\x7f\xc0\xba\x88\x7e\xe1\x64\x12\x8c\x43\x0f\x80\xa7\x3f\xbf\x5f\xb8\x86\xb9\x03\xde\x57\xdd\x03\x52\x49\xf9\x74\x9f\x74\x52\x72\xb8\xdc\x19\x10\x0f\x2d\x09\xe4\x84\xaa\xc9\x38\x76\x42\xd3\xd4\x55\x06\xa8\x9f\x61\xed\xaf\x96\x0d\x55\x93\x49\xd2\x89\xd2\xb8\x8e\xfb\x3a\xa1\x7a\xb2\x60\x79\x22\x3b\xa9\x8f\xd2\x89\xdc\x52\x87\x6f\xe9\x27\xd5\x4a\x36\xb3\x9e\x48\x2e\x65\xd6\x72\x52\x8c\xb2\x41\xf2\x8c\x6b\x55\x1a\x33\x52\xe0\x17\x15\x3b\xb7\x5d\x4e\xbf\x79\x3e\x83\xfb\x84\x24\x56\xdd\x03\x8f\xa7\x84\xa6\x33\x22\x47\xb3\x2e\xac\x27\xaa\x79\x55\x49\x06\x27\xcd\x74\xb6\xf4\x9d\x89\xee\x45\x82\x34\xb2\x97\xf6\xec\x76\x16\x8e\x55\x87\xcc\x66\xfa\x33\x02\xa5\xb2\x9f\x17\xa8\xaa\xd4\x94\x13\x89\x98\xa6\xfc\x89\x5c\xcd\x71\xe7\x27\xf2\x99\x9a\x9f\x9e\xf4\x90\xb2\xa9\xf1\x64\x15\x9e\xda\xfe\xca\x76\x74\x32\xe9\xbc\xed\xa7\x27\x05\x36\xe9\x1c\x4f\xea\xa5\x6c\xfc\x3a\x97\x40\xa6\x0b\xee\x99\xb9\x22\xcd\x88\x49\x07\xc2\x4f\x97\x38\x95\xd2\xcf\x9c\x10\xd8\x86\xb3\xc4\x9f\x99\xa7\x52\x37\xd4\x33\x53\xae\xf4\xaa\xe1\x16\x6f\x23\xee\x09\xc5\x54\x2f\x6e\x07\xe5\xd6\xb1\x3e\xcb\x9a\xb5\x96\x01\x8f\x2c\x4b\x19\x67\x29\x50\xd0\xb8\x43\x62\x86\xc4\xaf\x93\xf9\x51\x9d\x2a\xe1\x5c\x8a\x2a\x29\x27\xce\x42\x94\xf7\x17\x37\xbb\xf0\x24\x1e\x02\xc2\x83\x30\xbc\x44\xbf\x91\xeb\xca\x39\x37\x4f\x14\x1a\x6a\xc1\xb3\x86\xde\xe9\xe7\x04\xd4\x55\x3f\x49\xbf\xc9\xb5\xa3\x1f\xac\x10\x09\xfd\x5e\xab\x70\x0f\x74\x36\xf4\x08\x30\xcf\x76\xb7\x83\x16\x89\x87\x9e\x94\x08\x4d\x28\x3e\x89\xb0\x39\xa1\xe0\x09\x01\xd0\x82\xc5\xd9\xe0\xef\xeb\x19\xc3\x14\x69\xf3\xf0\x09\x79\xd0\xc2\xdc\xb9\xdc\xbd\x0c\xf7\x86\xf8\x02\x9f\xd0\xc6\x09\xf9\x83\x97\x2b\x12\x10\x1b\xa9\xa3\x8f\x20\xb5\x50\xb6\xef\x9e\x9d\x50\xd4\x9a\x3b\x91\xc3\xfb\x80\x00\xc2\x1f\x8c\x46\x9e\x85\x9f\x33\x0b\x3f\xfb\xe1\x48\xb5\x13\xd6\xcd\xe1\x55\x21\x9d\xbe\x2a\x2b\xf7\x93\x6e\xf4\x36\x08\x9f\x7d\x45\x45\xe8\xf7\x83\x48\x4c\x4f\x91\x74\xc6\x1b\xb7\x24\x38\x13\x1a\xb8\xd5\xdb\x1f\xf0\x64\xcc\xa2\x23\x72\xce\x4f\xc4\x8b\x3f\x5c\x04\x12\xdd\x90\xf4\x73\x8e\xb5\x08\x0f\x41\xa9\xc0\xd8\x84\xb4\xfc\xdd\x7b\xcf\xd4\x0d\xb6\x7c\x9e\x48\xdd\x50\xbd\x4c\x9a\x4a\x8b\x7f\x73\x15\x3e\xb6\x90\xf9\x7e\x18\x15\x45\x3e\x1f\x21\xb8\xab\x55\x63\x1f\xb2\xf0\x8f\xe2\xdf\x24\x8e\xfe\x1e\x94\xc4\x74\xe2\xe4\x0c\xbd\xf7\x27\x79\xab\xc1\x76\x32\x6d\xa3\xa0\x80\x44\x5b\x16\x6b\xcf\x73\x51\x4b\x0f\xb1\xd6\xa0\x45\x7d\x52\x62\x1c\x3e\x93\x08\x8b\x74\x72\x89\xf3\x22\x36\x65\x3f\x58\x80\xd6\x2c\x97\x0c\x28\xb5\xce\x89\x44\x5a\xc9\x57\xbb\xf3\x22\xbe\x78\xb3\x20\x15\xfa\x26\x77\x5e\xef\x07\x08\x1f\x3b\x24\x85\x3d\x4c\x59\x90\xf3\xb5\x4a\x05\x71\xde\x6b\x52\x1a\x01\xb6\x59\x95\x0b\xeb\xe7\x4d\x7a\x97\xfd\x05\x18\x7c\xf1\x0b\x9d\x2f\x68\x15\xf7\xa2\xda\xda\x3c\x1a\x67\x6d\xef\x3d\xe1\xf3\xf6\x23\x03\x20\x9f\x44\x29\x7f\xa5\x9f\x3b\x11\x37\x59\xbb\x27\x8c\x84\x67\x3e\x21\xcf\xd2\x2c\x68\x3e\xd0\x07\x0e\x3b\x24\x9f\x9f\xa0\x9c\x86\x61\xf0\x89\xc1\xd9\xc1\x7d\xe7\xb3\xb6\x41\x3b\x4b\xa1\xb7\xbb\x47\x10\x74\xb3\x56\x28\xfc\x0e\xef\x3c\x72\x4f\x0c\xd5\x45\xee\x27\xdc\xe3\x9c\x13\xf4\x7c\x90\xe2\xc5\xc2\x02\xcc\xc0\x3f\xc8\x87\x3c\x5e\xf6\xa6\x3f\x5f\xec\x9a\xd1\x00\xc5\x72\x7f\xa4\x8f\x17\x6e\x1a\x16\x04\x29\x64\x4b\xf3\x71\x22\xd5\x84\x43\x4a\x4e\xe4\x83\x1d\x2e\xe0\x73\xc2\x35\xae\x17\xff\x26\x03\xd2\x07\x93\xa4\xd2\x27\x18\x35\x03\x5c\xfa\xe8\x9c\x3c\xa0\x82\xf1\xe4\xe5\xc3\xa7\x63\xf2\xf2\x11\xfc\x00\xe9\x29\xcc\xfc\x27\xe7\xac\x35\xc0\x82\xec\x00\xda\x73\x9e\x48\x59\xe4\x29\x51\x39\x6d\x9a\x00\x8d\xe2\x30\xd9\xa2\xc1\xd8\x66\xed\x0b\x05\xa2\x5c\xfd\xe1\x62\xf1\x5c\x51\xf3\xeb\x60\x99\x8c\x43\xbf\x19\x79\xd1\xf4\x9b\x02\x4d\xf7\x07\x3c\xc0\xc1\x23\x34\xec\x9b\x7b\xa0\xa5\x4d\xc8\x7a\xb1\x00\x80\x2d\xe9\x17\x45\xfa\x9f\x39\x51\xc2\xe9\x1e\x14\x7c\xb4\x7a\xcc\xc9\x31\xd5\x03\x64\x7c\x17\x39\xb8\x02\xd1\x5d\xf2\xf3\x15\x88\x2c\x9a\x24\x24\x76\xd7\x55\xb8\x02\x27\xed\xf7\x59\x9e\xa4\xeb\xf7\x89\xf6\xa0\xdf\x17\x24\x76\x0f\xb8\x36\xc2\x1f\x20\xb9\xf0\x4f\x87\x94\xe8\x8b\x1f\x2c\x4e\xac\x29\x44\xae\x41\x8b\x8c\xd4\xaa\xf8\x37\xa7\x2c\x28\xa1\x16\x94\x73\x94\x5f\xc8\x33\xe6\x5c\xef\x57\x84\xc7\x83\xc1\x1e\x17\x54\xd5\x41\x5a\xf8\xac\x11\x90\x1d\xd6\xc5\x07\xae\xc4\xcb\x99\x08\xed\x45\x9d\xa7\x0e\xc0\xc5\x72\x01\xb6\xfb\x5f\xa8\x0e\xe0\x4c\xeb\x17\xe4\x63\x27\x39\xbf\x98\xb5\xcb\x0e\x0d\x57\x5e\x27\x42\x73\xc8\xeb\x96\xea\x37\x48\x5a\xc5\x16\xaf\x4f\x20\xae\x4e\x4e\x7c\x41\x81\xe9\xbc\xe8\x17\x7d\xe4\x9c\xfb\xf7\xca\x9c\x94\x87\x98\xf8\x2d\xc0\x2c\x9f\x39\x51\x92\x0b\x21\x0b\xc3\xe9\xb4\x2f\x06\x8d\x7a\xb7\xcb\x3a\xd8\x7e\x01\x7b\x23\x39\xec\x62\xb1\x5b\xc9\xaa\x57\xa1\xb2\x38\xfa\x01\xf0\x49\x2c\xea\x2a\xdc\x3c\xb7\x23\xc7\x81\x18\xce\x55\xc8\x79\x45\x6b\x2e\x78\xdd\x39\xe9\xf3\x45\xf5\xa6\x5d\x2e\xae\xba\xaa\x33\xea\x37\xa7\x20\x5a\x72\xc1\xa8\xea\x5c\xd5\x17\x84\xd9\x16\xff\xa6\xb4\x78\xbf\xea\xa2\xee\x5a\x71\xe5\x7c\x04\xa2\x25\xea\x6a\xb4\xc6\x5a\x7d\xfe\x8d\x2c\xb0\x06\x08\x34\x9d\x2e\x2c\x70\x21\x77\x46\xff\x39\xb1\x08\x64\x30\xcb\xbd\x98\x63\xac\x1b\x64\xb4\xd0\xda\x7b\xe9\xa2\xa6\xb3\x1b\xc8\xb0\xd0\x3a\xc5\xf3\xb5\xa4\x63\x83\x00\x9a\xce\xe0\x90\xbe\x0b\x51\xa7\xce\x5e\x7c\xf5\x85\x2a\x7e\x21\x21\x2c\x41\x60\x60\x16\x32\x3b\xb2\x5c\x0c\x43\xed\xde\xa8\x7e\xfe\xf3\xe7\x27\xdc\xee\x5a\x8e\x7c\xc3\x0f\xb8\x0f\xee\x72\xe1\xb3\xc7\x04\x3e\x1b\x74\x4b\x1c\xd6\x2d\xf4\x5a\x19\x3b\xf4\x01\xd2\x8e\x39\x91\xec\x35\xe8\xc5\x22\x59\xe4\x1a\xbc\x7b\x49\x49\x7c\x8d\x75\xa5\xd4\x18\x83\x14\x57\x9c\xea\x46\xce\x3f\x9b\xbe\xee\xc4\x63\x2a\x1a\x7d\x33\x7e\xc9\x02\xc2\x8d\x9a\xb9\x4e\x3d\x7a\xb3\xb4\x88\x19\xc5\xcd\x9a\x6f\x0e\xd4\xba\xe1\x60\xeb\x9c\x98\x37\xa9\x89\xc4\xfe\x9b\x97\x6b\x53\xf1\xfb\x23\x1e\x29\x78\xc8\x4c\x02\xa6\x9b\xef\x8d\xcb\xb5\x93\x64\xde\x79\x1d\x8a\xa8\x07\x54\x71\x68\x92\xf4\x0a\x71\x80\xd4\x4d\x6a\xa3\x63\x75\x93\xb8\x64\x8f\x30\x39\x27\x7d\x80\xa4\x80\x4e\x30\x75\xd3\x4b\xc4\x0e\x37\x37\xe2\xa1\x46\x17\xea\xdf\x8b\xba\x14\x7f\x52\xd0\x85\x26\xc9\x94\x7f\xe6\x56\x77\x59\xc0\xd7\xac\x0a\xcf\x42\xf3\x27\xdf\xba\x5c\x68\xe6\xa6\x05\xc6\x4e\x3b\x37\x03\xa2\x6c\x39\xbc\x61\x51\xb1\x55\xe0\xc6\xed\xda\x69\x85\x6e\x5e\x9e\xed\xdd\x72\x57\x06\xa6\x24\xbf\x31\x38\x4d\xed\x17\x72\xf8\x38\x65\xee\x8d\xeb\xb4\x9d\x09\x6f\x52\x20\xb1\x9b\xbb\x2e\x0c\x11\x02\x20\x05\x4f\x51\x25\xe7\x7e\xc3\x15\xd7\x59\x58\x6e\xd0\x80\xc3\xe5\xeb\xee\x06\xa4\x13\x1d\xbd\xdb\xda\x4f\x3f\xc0\x98\x22\x2b\x77\x23\x12\x4a\xc4\xba\x3b\xd7\xad\x39\x74\x6e\x86\x40\x8d\xac\x81\x4e\x7a\x70\xc3\x1c\x61\x37\x8f\x7b\xdd\x6e\x75\x9f\xb9\x51\x2d\xee\x07\xed\xe9\x86\x6b\xb7\x8a\x1b\x69\x04\xbb\x39\xf9\x4d\xbf\x5c\xb3\xfe\x1b\x41\xe1\x0e\xd2\xbb\x61\x5e\x70\x7c\xcf\xcd\x12\x71\xe6\xc3\x37\xd3\x06\x9a\x11\xdf\x4c\x1b\x68\x6f\x95\x1b\x24\xc0\x01\x34\xf7\x47\x01\x92\xc9\xd4\x0d\x02\x90\x6c\x1f\xb8\x4f\xd6\xdc\x11\x5c\x10\x5d\x65\xf6\x72\x9f\xcc\x75\xa9\x0e\xce\x85\xd5\x9a\x02\x0c\x14\x56\x16\xde\x48\xc2\xe3\x2c\x02\xf7\xc9\x88\xdd\xbf\xa9\xee\xda\xef\x93\x50\xd7\x2e\xb0\x7c\x9c\x8f\x10\x6f\xb6\xde\x04\x24\xf8\x71\xd0\xc2\x0d\xb7\x12\x3b\x4f\xdf\xb8\xd8\xba\xba\xc4\xfd\xdd\x6b\xd3\x0f\xf9\x83\x5b\x89\x7d\x0d\x6e\x84\x6d\xd9\xb7\xfa\xbe\x60\x00\xf2\x62\x11\x1b\xde\x9b\xfb\xe3\x01\x95\x74\x76\x23\xff\xcf\xe8\x62\x35\xf7\x05\xc7\x17\xf1\xf3\xfb\xbb\xe4\xa6\xf0\xd3\xce\x15\xb8\xc7\x09\xb4\xd2\xfb\x37\xad\x74\x9a\x21\x92\xfd\x34\x31\x89\x9b\x5e\x29\x3e\x19\xdf\x25\x38\xb9\x54\xc0\xfd\xdd\x81\xf3\x0f\x02\xdc\x8b\x91\xf9\x05\x12\x80\xee\x1e\x18\xd4\xaf\x19\xa1\x30\x8a\xb5\xbb\xf7\xba\x13\x47\xbf\x70\xc2\x21\x49\x40\xba\xd7\x51\xd1\x1a\x71\xcd\xb5\x9b\xd7\x8d\xc2\x28\x4e\xc3\x7e\xdf\xe4\x7c\x5e\x24\xf2\x05\xb9\x70\xca\xfd\x50\x92\xf3\x17\x4f\x02\xd2\x69\x9f\x19\x17\x66\x61\xf0\x66\xa1\x14\x8b\x93\x37\xe2\xc2\x4a\x30\x85\xc0\x45\xd8\xde\xe7\xf7\x77\x11\x8e\x76\x6f\xbb\x97\xc3\xb3\x87\x24\x65\xfd\x79\x01\xd5\xab\x74\xb1\xbd\x5f\x54\x2b\xf7\xe9\x7d\x69\xda\xf9\x79\x00\x82\xe0\x0e\x90\xc0\xda\x1e\xf3\x37\x6e\xc2\xbe\x1e\xdd\xb8\x09\x5b\xd5\x70\x33\x18\xde\x4e\x53\x37\x6b\xa5\x18\xf9\xd6\x55\x58\xfc\xff\x7e\x91\x2b\xa6\xb8\x47\x02\x5a\x22\xf2\x3d\x91\x2e\xc1\x64\x94\x39\x8e\x2c\x95\xdf\xcc\x71\x64\xd7\xaf\x7b\x22\x21\x96\xf1\x77\xdd\x85\xcd\x7a\x59\x1d\xef\x07\x1d\x26\xfd\xd1\x3c\x8b\x49\x8f\x4c\xff\x06\x7a\x98\xeb\x31\x41\xb5\x9d\xb9\xee\x75\xfb\x95\x10\xf9\x1c\xbc\x17\x4a\x99\xf9\xb0\xfa\x9d\x73\xfa\x3e\xbc\xbd\x36\xff\xc6\xc1\x15\x5d\x7c\x8e\x45\x5a\xfd\x00\xe8\xd0\xdc\x23\x28\x8f\x18\xeb\x03\xd7\x68\xbb\x95\x3e\x0c\x0c\xb3\xe8\xff\xc0\x37\xda\x9e\xaa\x0f\xef\xb2\x62\x40\x0f\xcd\x53\xd1\xbf\xb1\xfb\xc2\xf1\x07\x57\xdb\x26\xf6\xf1\xf0\x6a\x2b\x95\xc0\x13\x16\x5c\x3d\x00\x5d\x02\x8a\x7b\x5c\xdb\xaf\x39\x22\x94\xd9\xba\x9f\x67\x69\xce\x25\xf6\x3e\x64\xfe\x22\x8f\x0f\x42\x9d\x5b\x77\xfb\x3a\x34\x7e\x01\x99\xc0\xb4\x95\x0f\x43\x9d\x83\x2e\x69\x4f\xe5\x51\x17\xdc\xe9\xe2\x69\xed\xfd\x03\x8f\x4e\x2b\xd4\x1e\x5c\x28\xec\x1e\xf6\x34\x82\x45\x6b\x40\xa1\x5a\x9b\xa3\x9f\x46\x55\x8b\x7f\x37\x50\x70\xff\x5e\xb8\xa2\x19\x74\x0e\xd0\xff\x86\xff\x3c\x7d\xa1\xbb\xa6\xc3\x3a\x66\x41\xf4\xfb\xf9\xe4\x86\x64\xe4\x7d\xfa\x3a\x94\x9a\x30\x62\xa4\x5d\xca\xea\x61\x8c\x74\x10\x4f\x7a\x96\xa0\x20\xf1\xf6\x19\x0b\x9b\xb5\x86\x41\xc3\xa4\xd8\xd0\x03\x0f\x4e\xe7\x7c\x7a\x06\xa5\x1b\x6f\xdc\x92\xeb\x45\xad\x1e\x3a\x1e\xd8\xd3\xef\x39\xe1\xb4\xac\x53\xf9\xb0\xb4\x6b\x10\x59\x7f\xe0\xc3\x69\x6d\xeb\x73\x52\xc4\x92\xc4\xfb\x30\xbb\xaf\x23\xeb\x1e\x64\xd3\x6b\xb6\x8f\x3f\x17\xc9\xb4\x24\xdc\x07\x6a\x62\x73\x8a\xe7\x2a\xec\xc2\x2f\x34\x3e\xd0\xb4\xc8\x50\xed\x7b\xf7\xc0\x75\xc0\x3e\x47\x0f\xb5\xc6\xf6\xa5\x7b\xae\x55\x76\xdc\x5d\x40\x06\x10\x8d\x7b\xee\x05\x0a\x6d\x19\xf4\xc6\xf6\x4c\x7b\xee\x35\x2b\x6d\xd9\xbd\x60\xa3\x31\xee\x35\x4d\x6d\xd9\xdd\x79\xfa\x3d\x08\xcb\x56\x19\x0f\x11\xb4\x63\x27\x89\xe7\x86\x80\x6a\xc4\x62\xbe\x96\x50\xfd\x00\xf4\xc3\x34\x8e\x69\x85\xed\x19\xf0\x3c\x4c\xc7\x28\x79\xf2\x59\x3e\x10\xd9\x9f\x80\x64\x18\xf5\x59\x1c\xcc\x56\xf9\xe7\x21\xd5\x13\xdf\x7c\xc8\x04\x4d\x10\x1e\xce\x5a\x90\x80\xf6\xd7\xf2\xd6\x83\x58\x68\x1b\x31\x9f\x8f\xc7\x45\xeb\x2d\x1f\xb0\x34\xdb\x0f\x9f\x77\x1d\x1f\x75\xc8\x50\x68\x7b\x2e\x3e\x2f\xc9\x9a\x04\xd2\x07\x55\x18\x86\x11\xf5\x5d\x24\x46\x90\x7c\x51\x0b\x5b\x12\xeb\x43\x7d\xae\x9d\x23\x9f\x09\x11\x28\xfa\x85\xcc\x21\xfc\xa0\x40\xfe\xd0\x1c\xe0\xdf\x69\x7b\xe1\x43\x87\x09\x6b\x31\x9e\xc9\x65\x6f\x38\xbe\x8b\xff\x88\x35\xbf\x07\xc5\x8d\xe8\x37\x10\x89\x26\x94\x7a\x8f\x75\x9a\x86\x1e\xdc\xfc\x22\xe9\x01\x72\x3a\xeb\x48\xbf\xe0\x1f\xd6\xf4\xbf\x21\x70\x99\x1a\x82\xfe\x0c\xd6\x30\xbc\x61\x4d\xc2\x9f\x60\xda\x42\x98\x37\xd2\xc1\x52\x9c\xf6\x85\x2f\x41\xb3\x93\xc5\x4b\xaf\x4d\xdb\x98\x5f\xa6\x4c\xb1\xd2\xe1\x45\x7e\x5f\x5f\xa4\x5f\x64\x44\xb1\xda\xf8\x4d\x04\x8d\x44\xf6\x77\x15\xaa\x97\x48\xf1\x22\xa4\xd7\x4a\xdf\x17\x09\x7f\xad\x4c\x7f\x13\x97\x21\xc4\x7f\xa9\x82\xb0\xc2\xe0\x4d\x4b\xcf\xa1\x95\x23\xae\xc4\x26\x80\x37\xa3\xba\xb9\xd0\xf8\xcd\x0d\xed\xea\x00\xfa\x03\x6b\x94\x5e\xe8\x22\xad\x28\x7c\x51\x52\xde\x6a\xe7\x97\x75\xa6\x42\xf3\x07\xc0\x98\xe0\x09\x50\x8f\x26\xe9\xf2\x65\x21\xaa\xfa\x33\x04\x29\xb4\xa4\xc1\xb7\x10\x70\x7f\x95\xa0\xee\x65\x41\x01\xeb\x50\x5e\xe8\x12\x7c\xff\x7d\x11\x40\x62\x15\xd8\x4b\xc5\x40\xfd\x79\x40\xe1\xa0\xf8\x0b\xb8\x03\x8a\xd7\xbf\x70\xc5\xf4\xd5\xe8\xad\x6b\x23\x35\x24\x5d\x31\xad\x75\x79\x11\x00\x6c\x85\xc7\x0b\x4f\x4c\xab\xc8\xde\xca\x8b\x42\xf1\x07\x3c\xca\x52\x4e\xbc\x4b\x33\x20\xce\xf7\x32\x00\xc4\x7a\x98\xb7\x11\x65\xa5\x01\x79\xdb\x9a\x96\x3e\x41\x04\x88\xef\x33\x2f\xd2\xf9\x3a\x8b\xe3\xdb\x48\x25\xab\xbb\xac\xf8\x40\xeb\xa2\x46\xd2\x19\x14\x5f\x6a\x20\xad\x27\x7e\x99\x5b\x25\xc8\xfc\xf9\x42\xfd\xd0\xec\x94\xf3\x42\xfd\x60\x46\xf7\x42\xe8\xf0\x7d\xe5\x85\xb1\xdd\x32\xf1\x0b\xed\x83\x85\xe6\x17\x39\xec\x2c\xb8\xbf\xac\x43\xd5\xab\x5f\x00\x46\xfa\x4c\xf4\x0b\xbf\x35\x45\x46\x09\x8b\xf3\xbe\x2c\x7d\xda\x25\x42\xbc\x83\x33\xd2\xaa\x59\xe4\x20\x48\xe0\x7d\xe1\x2d\x69\xf1\xf2\x1d\x9c\xb2\xe0\x3a\x16\x1c\xfd\x01\x79\xa0\x04\x84\x17\x52\x8a\xc5\x98\x77\xf0\x2e\xec\xad\x18\x0b\x29\x3d\x89\x87\x0f\x3c\x08\xa5\x6a\xaf\x03\xc6\x73\x0b\x21\x2f\xab\xa3\x5a\xfe\x7b\xcf\xb5\x7b\x9a\xf7\xb9\x40\xa7\x41\xa0\x53\xb0\x68\xf4\x7e\x82\x4d\x74\x10\xda\x0b\x8f\xc9\x1f\xd0\x9d\x3c\xcb\x62\x38\x2f\xeb\x52\x05\x5d\x26\x5e\x0a\x3e\x5e\x17\x82\x57\xcc\x87\xdf\x8b\x93\x76\x3b\xf5\x5d\xba\x1b\xbc\x17\xaf\xab\x3f\x5f\x20\x76\xc4\x2e\x29\xef\xb5\xca\x60\x6a\xd6\x17\x55\x3f\xe2\x93\x2f\xc4\x9c\xae\x8b\xff\xfb\x89\x39\xcd\x6e\x5f\xef\x4d\x7e\x61\x9c\xba\x81\x73\xe2\x82\x2f\x22\x95\xcd\x78\xdf\x25\xe4\x18\xa7\x70\xf1\xff\x61\x72\x90\x71\x5c\xf2\xe9\x85\x88\xf3\xc3\xd2\x60\xfa\xb6\x7c\xf2\x32\xfd\xcb\xe1\x09\xc0\x52\xec\x09\x3d\xbc\x20\x4b\x54\x7e\x71\xcd\xef\x12\xcc\xde\xe5\xf5\xa9\x3b\xd4\x0b\xf1\xe4\x87\x3b\xf1\x8e\x6e\x1f\xe7\x17\x85\x11\x5c\xad\xf9\xfd\xae\xdc\xc9\x56\xa8\x97\xf2\x89\x99\x13\x85\x8d\x6e\x8e\xf8\x72\x04\xc1\x80\x0e\x9b\xf6\xf5\x79\x69\x4d\xb6\x57\xf4\xcb\xd2\x06\x76\xa3\x7e\xe7\x02\xbc\x96\x35\x17\x60\x35\x0b\x06\x14\x7b\x96\xac\x26\x1a\xa4\x56\x7a\x27\x23\x75\x8d\x93\x93\xd3\xd2\xe6\x52\x62\x29\x6e\x67\xb5\x10\xcf\x01\xc8\x21\x66\x33\x99\x43\xce\xea\xcd\xc9\xf2\xf1\x76\x65\x9e\xb8\x41\xe7\xf2\x57\x01\xae\x13\x85\x47\xcd\x1a\xe6\xc1\x43\x28\xc2\x3e\x8f\x45\x1b\x86\x1e\x0c\x04\x53\x65\xfd\xc6\xa1\x14\x37\x9a\xb0\x1d\x9b\x54\x4c\x24\x4d\x31\x95\x9f\xb8\x2d\x9b\x46\xcf\x4f\xf8\x49\x86\xf1\x0c\x9c\x91\xd6\x17\x2a\xd7\x97\xf4\x80\x36\x04\xdd\xb7\x27\xe3\x88\xed\xf9\x33\x03\xc8\x57\xf5\x0b\x80\xb9\xe8\xdd\x0c\x9c\xa2\xdf\x87\x6c\x1c\x3c\x25\x06\x73\xfd\x0c\x09\xf1\x4b\x27\x72\x46\x4a\x42\x3a\xb2\x33\x92\xa4\x36\xbf\x81\x23\x59\xfd\xc2\x82\xab\xe6\xc0\x98\x19\x7b\x52\x4f\x96\x5f\xc8\x7e\xe1\xfc\x84\x63\x5d\xfb\x26\x73\x18\x5b\x8f\x3d\x23\xe5\x00\x11\xb3\xc9\xca\x54\xe1\xa7\x0b\x62\xb8\x71\x25\xb2\x22\xaa\x66\x95\xb8\x17\x9a\x43\x5a\x79\xe2\xb5\x59\x69\xad\xcb\x5f\xf0\x42\xa5\x7b\xc4\x64\xa9\xa9\xea\x69\x25\xb8\x61\x09\xa1\x67\xe2\x66\xb8\x4b\xf2\x92\xe6\x41\xb9\x3b\x9a\x24\x4c\xd6\x3f\xbb\x99\x26\xbc\xd3\x04\x5a\xc6\x26\x3b\xf4\x64\x32\x38\xb9\xfe\x3c\x00\xca\x19\x87\x33\x75\x4a\xa2\x3e\x13\x95\xa8\xf2\x4f\x97\xc0\x39\x1d\xfc\x09\x9f\xd0\x1f\xc8\xe6\xb5\x7b\x5a\x04\xc5\x4c\xef\x26\x83\x97\x6d\x88\x9f\x14\x2b\x8d\x0f\x9f\x58\x99\x1c\x1e\x38\x33\x17\xe9\xdf\x93\x6b\x50\x07\x85\xd2\x91\xb1\xbc\x30\xe6\x41\xbc\x68\x32\x58\xb9\x7b\x2b\x90\x39\xe6\x07\xb0\x74\xf9\xb4\x55\x62\x16\x4e\x4a\x60\x80\xe0\x68\x8d\xf3\xa4\x03\xa7\x34\x36\x93\x5a\x26\x3b\x87\xcf\x41\x86\xab\x29\x20\x75\xad\x1d\x07\xe7\x92\x02\x7c\x78\xa9\xde\x30\x31\x40\x32\x92\x9f\xbd\x84\x07\x5d\x97\xe8\x3a\x4f\x4a\xc7\x26\x77\xe7\x5a\xa4\x1f\x2c\x04\xd4\x98\x9f\xd8\x90\x5d\xb1\x7c\x9e\x1d\xbf\x35\x67\x18\x16\x7e\x3b\xf8\x20\xff\x73\xb6\x4f\x4e\x49\x40\xa0\xc3\x9c\x2e\x35\x13\xb9\x4b\xec\x8a\x36\xaf\x88\x48\x12\x8d\x77\xad\x29\xbb\x03\x6c\x83\xa1\xc8\x2c\xb4\x76\x23\x9c\xc8\x6d\x62\x81\x7e\x7e\x02\x41\x77\x65\xc1\x09\x3d\x88\x6b\x1f\x4c\x96\x4e\xb2\x6f\xe4\xbc\x90\x2a\x57\xbc\x72\x2e\xbd\x88\x69\x2a\x73\x9b\xd8\xfa\x32\xef\xf8\x89\x14\xc9\xbf\xf3\x3f\x7f\xda\x30\x72\x41\x71\x62\x8d\xf8\xbc\x79\x73\xf3\x9c\xa1\x26\xc9\xf6\x3c\x9c\xcc\x6b\xdb\x7e\xc6\xa4\x48\x68\xaa\x4a\xa1\xa1\xd5\xbf\x4a\x96\x3a\x99\x0a\xc5\xb4\xeb\x59\x6b\xd2\x80\xd4\xa2\x18\x99\x99\x61\xce\xae\xe8\x93\x21\xb2\xed\xe7\x0b\x70\x16\xdd\x62\xe6\x32\x2d\xfc\x7c\x01\xd6\x25\x63\xc5\x7c\x79\x45\x31\x2e\xc0\xc3\xcd\x62\xcc\x7c\x49\xf7\x8d\xcf\x4b\x2b\xe2\xcd\x46\x1e\x5c\x5b\x06\xe6\xcb\x50\x3c\xb7\xd3\x26\xfb\xf3\x00\xd9\x1f\x8d\xbe\x48\x83\xdb\xa5\xf3\x9a\x2f\x2b\x73\x69\x51\x2f\x09\x89\xbf\x5f\xbc\xca\x1d\x00\x9f\xa5\x66\x9b\x50\xaa\x38\xfb\xea\x5c\x86\x01\xaf\x01\x61\x29\x5d\x9a\xa3\x39\x17\x98\xfc\xc5\x3a\x72\x1a\xe2\x13\x83\x92\xd5\x6e\x13\x71\x2b\x43\x0a\x8e\x39\xc9\xaa\x8c\xd1\x9f\x50\x93\x6c\x67\x9e\x73\x61\xf4\x1a\x62\x1c\xa8\x7d\x20\x62\x37\x8e\x03\x0e\xf2\xbb\xc7\x71\x1c\xbc\xe3\x74\x3f\x48\x1f\xd8\x0e\x7f\x40\xcd\x50\x77\x8f\xd8\x88\xad\x41\x1b\x07\xf4\x3a\xda\x88\x71\xac\x8a\xea\xd9\x3d\x5e\x58\x44\xd6\x6f\xaa\x75\x36\x5f\x1a\x07\xec\x06\x63\x0b\xc1\xe3\x40\x4a\x15\x11\x8a\x71\x40\xed\x13\xdd\x8e\xe2\x0b\xa3\xa9\x1d\x19\x55\xfa\x50\x7f\x28\xbd\x70\xfc\xfc\x86\x63\x9f\x27\x44\x41\x68\xf8\x77\xc5\xf8\x49\xbf\x91\xdc\x38\x78\x3c\xd2\x99\xaa\x25\x7e\x62\x50\x53\x7a\x95\x71\x84\x13\xbb\xe0\x01\xa9\xc9\xea\xfe\x00\xe1\x23\xd5\x1f\x60\x85\x87\x7f\x4f\x98\x07\x05\x74\xc4\xbc\x48\xf9\x32\x0e\xa4\x56\x19\xde\x94\x18\x41\xd8\xb4\x27\x11\xb5\x6b\xb3\xdb\x1b\xde\xd7\x1e\x45\x6a\x15\x86\x5f\xa0\x44\x53\xfc\xe0\x05\x9e\x68\xcd\x91\xba\x98\xae\x35\x21\xd0\x38\x19\x06\x48\x43\xa7\x74\x1c\xe3\x80\x8a\x4a\xda\xbc\x71\x24\x02\xd5\xed\xd4\x92\x55\x41\x1d\x69\x80\xa3\xa1\x0e\x71\x46\x01\x56\xe3\x48\x74\xea\x73\x3b\xb1\xc2\x1d\x92\xb1\x37\xbd\x90\x99\x9c\xc3\x50\x87\x0b\x5e\x35\xae\x33\x49\x9d\x12\x36\x8d\x23\x93\xc8\x0c\x3f\x80\x6f\xbc\x17\xc9\x90\x15\x2f\x12\xd2\xc9\x08\x82\x2b\x7c\x68\xfa\xcf\x14\x90\x82\xc4\x98\x96\x29\x49\xfa\x74\x41\x5a\x91\x17\xec\x38\x10\xd0\xa2\xb4\xfa\xe3\x28\x38\x7d\x41\xef\x23\x3c\x65\x04\xbd\x0f\xd1\xe4\x67\xc2\xf0\xc6\x1b\xc1\xdf\x83\x60\x04\x01\xb1\x7c\x98\x9a\xbd\x80\x42\xcc\x34\x22\x14\x40\x39\xfa\x05\xf2\x16\xe3\x76\x21\xd8\x35\x23\xc4\xa6\xa4\x23\xfc\x05\xef\x19\xc7\x27\xf7\x34\xe9\xd2\xc7\x51\xc9\x5a\x7c\x74\x19\xb8\xe2\xf5\x7c\x82\x51\xfa\x41\x02\x5a\xdf\xe4\xa5\x34\x8e\x0a\xcf\xff\xe4\x0e\xb0\x60\x9f\x14\x96\x80\x08\xfe\xcd\xeb\xaf\x21\x50\x1f\x58\x39\xfd\xc2\x8b\x1b\xbb\x20\x08\xef\x3e\x79\x7b\x8d\x83\x91\xcc\x3f\x53\x84\x32\x6d\x44\xcd\xa0\x91\x40\x0e\x2d\x12\x91\xcb\xd9\x48\x02\x65\xda\x30\x10\x90\x6f\x45\x79\x46\xc7\xd1\x3a\x7e\xbb\x9d\xda\x99\xe1\x17\x4e\x6c\xba\x5f\x40\x86\x67\xe3\x39\x9c\xfd\x86\xf7\x10\x39\xf8\xb2\xa9\x0d\x5c\xfb\x54\xed\x6d\x1c\xd0\xbc\x29\x51\xc8\x38\x3a\x57\xa4\x09\xf7\xf4\xcf\x9f\xa2\x1c\xb5\xe3\xa0\x81\xaf\xb8\x3f\xf2\x31\x6f\x0a\x55\x73\x9e\x30\x73\xfa\xfd\xcc\x18\x9e\x43\xc3\xf4\x0d\xaa\xba\x11\x85\x54\x7d\xa1\xa5\x80\xda\xc9\x23\xbc\x6d\x9d\x8c\xcd\x27\xa5\x63\x9f\x92\xb6\x85\x81\x31\xcd\x2f\x8c\x80\xb3\xa9\x2e\x97\xc5\xd0\xb3\x1c\x34\xfd\x14\x77\xc1\xeb\xae\x59\x1b\x73\x00\x06\x4f\x6b\x50\xc9\xed\x37\xce\x85\x1d\x9a\xe7\x49\x21\xa0\x09\xd8\x27\x19\xec\xcf\x1b\x38\xe2\x45\xf3\x64\x05\x89\xfa\xf3\x45\x85\x63\x9e\x3f\x00\x8a\x1b\x3f\x4e\xea\x98\x04\xbc\x93\x90\xd0\xba\x18\xbe\xdc\xcc\xf3\xa1\x6b\x1b\x3e\x33\xcb\x06\x39\x34\x85\x8b\x36\x0e\xef\xf0\xb5\x08\xa3\xdf\x00\x75\x4f\x5a\xf7\x45\x31\xd6\xfc\xe2\x93\xc5\xd3\x61\x9e\xca\x9a\x5d\x3f\x4c\xf9\xa2\x38\x55\x34\x4d\x88\xd2\xc1\x2f\x30\x31\xb3\xac\xfb\xe3\xb8\xd7\xfe\x08\x10\xcb\xa2\x68\x96\xb0\xdc\x6c\x3c\x2a\xd4\x6f\x87\x31\xfb\x5e\xa7\xdf\x2f\xa0\xa4\x55\x15\x28\x96\xac\xdb\xfd\x80\xbb\x61\xe0\x3d\x54\x8a\x78\x9e\x50\xb0\x8d\xa4\x2e\x1f\xa2\x6a\x17\x6c\x1e\x5a\xb3\x3d\xab\x07\x41\x3a\x06\x1e\xd3\x02\x36\x8b\x54\x2c\x02\x61\x71\x00\xd2\xb1\x52\xec\x8f\x03\x5e\x2f\x0a\x70\x1f\xc7\xb2\x10\x1a\x10\x2f\xd2\x4a\x15\xcd\x91\x41\xd5\xcd\x44\x0b\x39\x00\xf3\xcf\x0b\xb4\x4b\x1b\x0b\xa9\xa2\xfb\x11\x31\x26\x4d\x19\x66\x5d\x0c\xf1\xf8\x91\x0c\x27\x13\xe3\x68\x59\x73\xe1\x84\x06\x99\xdc\x40\xf7\x00\x09\x5b\x32\x47\x58\x1a\xb7\xe1\x07\x58\x77\xf6\x6f\xde\x00\x75\xfe\x02\x42\x32\x86\x45\xc5\xb0\x8c\x8a\xe3\x6f\x82\x5a\x47\x38\x28\xc8\x69\xab\x02\x73\xc2\x28\xc4\x63\x04\xd6\xf5\x52\x3c\xc6\x08\x81\x53\xd2\x80\x81\xca\x02\x41\x32\x04\x64\xce\x49\xfe\x80\x5e\xfd\xfb\x82\x37\x02\xb5\x6a\x16\x5f\x43\x20\x1a\x0f\x0f\x0a\xea\xb8\x35\x99\x23\x30\x39\x9f\x22\x2c\x46\x60\x2e\x3e\xd5\xb5\x1e\x81\x85\x1e\x64\x84\x1e\x21\xae\x79\x6b\xd4\xb8\x20\xa5\x4f\x22\x19\xa7\xfa\x8c\xb4\xe0\x18\xf8\x11\x8e\x50\xd9\x2f\x90\xe2\x0a\x87\x02\x4b\x77\xc9\x4b\x63\x04\xd8\x35\x15\x49\x38\x02\xcb\x94\x5a\xa4\x0b\x89\xc0\xf3\x6f\x02\xaf\xfa\x01\xd9\xfb\x70\x97\x94\x12\x75\xda\xc2\x32\x6c\xea\x30\x05\x68\xb9\x4a\x3c\x3c\x2a\xcf\xf8\x70\xa7\x0f\xdf\xd0\x2e\x33\x54\xb9\x1a\x8d\x72\xe7\x1b\xda\x01\x54\x2f\x8d\x9e\x28\x8c\x9b\x23\xbb\x07\x14\x16\xf5\xac\x90\x30\x4f\x85\xe9\x47\x80\x58\x97\x7e\xde\x47\x6c\x92\x41\xb7\x94\x50\xe2\x1b\x01\x99\x65\x54\x42\x76\x84\xb2\xa6\xa8\x1e\x21\xf8\xc9\x50\x30\x02\x05\xbd\xec\x76\x00\xca\x34\x23\x50\xf2\xd3\x35\x2c\x14\x86\xf5\x78\x33\x98\x9a\x66\xfc\x3c\xb8\x08\x05\x7d\x52\xd7\xfe\x69\x99\x10\xd7\x8a\x67\x0d\x6b\xe6\x30\x8a\xd4\x45\x12\xb4\x39\x15\x6c\x22\xfb\x77\xe3\x98\x5a\x27\x6a\x9d\x0e\x93\x80\xca\x6c\xb4\xfe\x00\x80\xad\xfe\xcd\x03\x6a\x44\xa7\xf4\x25\x4e\x15\xe0\x0b\x35\xc4\xc3\x03\xa4\xb1\xde\x3d\x62\x63\x52\x50\xcd\x19\xd2\x97\x2a\x9b\x8f\x00\xe9\xcb\x37\xa3\xd0\x16\xdc\xb4\xe8\xb6\xe0\xe6\x07\xd4\xc7\x18\x1b\x3a\xd5\xa4\xc6\x51\x0a\x54\x45\x5f\x74\xf2\x57\xb1\x9d\x40\x09\xaa\x1b\x01\x3b\x0e\x82\x5c\xa5\x47\xf8\x44\x2a\x57\x3a\x18\x81\x12\x54\x71\x0f\x6b\x56\x7e\x01\x6c\xc9\xeb\x42\x2c\x85\x6f\x1e\x01\x39\x91\x4b\x34\x46\xd1\xfc\xe9\x49\xd2\xc5\xca\x37\xb8\x80\x48\xe2\xea\xc3\x3a\x16\x49\xd1\xba\x99\xfa\xc5\x38\x3b\x68\xb3\x31\x86\xc1\xf5\x5a\x25\xdf\x46\x18\x6b\x0e\x7a\xc0\x3a\x15\xcd\xbb\x75\x12\x72\xea\xf2\xcc\x70\x20\x55\x8f\xe7\x82\x93\x66\xcd\x7a\xa6\x31\x08\x21\x60\xca\x1c\x26\xbf\x27\xe1\xa2\x55\x9d\xb8\xf0\x78\x95\x94\x9e\x4c\xcf\xaf\xc5\x08\xd5\xc1\x85\x3b\x8c\xe4\xca\x00\xe9\xa9\x44\xc9\xf7\x81\x85\x2d\xba\xbb\xbc\xc0\xae\xeb\x5f\x5d\x91\x02\x25\xab\xaa\x6d\xa1\x64\xd5\x0d\x65\x96\x53\x4d\x7e\x01\x0b\x34\x15\x86\xd5\x73\x0c\x6f\xec\x45\x6e\x61\xdc\xa1\x2c\x36\x0c\x76\x96\xcd\x68\x46\x1e\x94\x43\x1d\xc3\x50\xa4\x0b\xb4\x2f\x9e\xe1\xae\x70\x51\xd7\xac\x60\x09\x0d\x06\x02\xc2\x82\x93\x2e\xa2\x01\x75\x2f\x46\x75\x3b\xb6\xa1\x7a\x44\xdc\x61\x4c\x4a\x6e\x04\x11\x76\x8f\x87\x22\x66\x26\x90\xcc\xfa\x67\x96\x88\x7c\xce\xbe\xa9\x87\xa5\xc4\xd4\xfb\xf0\xf3\x1a\xd5\xef\x83\xfd\x59\xb4\x78\x3e\x89\x29\x98\x29\x33\xbb\x73\xf3\xb6\x3f\x27\xf8\xa5\x7f\x63\x01\xc6\xe5\x87\x1e\xba\x26\x1c\x70\x7e\x2e\xc6\x13\x4a\x7d\x96\x1c\xe0\x17\x36\x4c\xda\x10\xf4\xab\x3a\x3d\x23\xbc\xd0\x5a\x79\xc6\x70\x6d\x6e\x86\x30\xbc\xc0\x2c\xd5\x07\x38\x7d\xf5\xee\x2d\xa2\xe7\x72\xf3\x26\xb2\x3c\x6b\xf4\xa6\x4c\xfa\xcb\x79\x57\x26\x65\x13\xe9\x0b\x02\x13\xe3\x34\x77\x3a\xc9\x24\x24\xc4\x05\x98\x55\x47\xf3\x20\x0f\xbf\x10\xe4\xe1\x08\x36\x74\x7d\x89\x4c\x9c\x63\x75\x5e\x64\xea\xbf\xfe\xf3\x00\xfe\xaa\xd9\x5f\x70\x56\xba\xd4\x47\x78\x22\x0f\xeb\x5d\xe2\x81\xcd\x11\xf6\xc4\xe3\xe6\x24\x9a\x1e\x20\x9c\xbf\xf8\x03\x96\x55\xd9\x9b\x11\x03\x9c\xba\xc5\x2d\x23\x54\x88\x52\xdb\x8f\x08\x4f\xe3\xd1\xdc\x8e\x53\xaa\x7b\x44\x0c\xcb\x3c\xed\x0f\xa0\x26\x91\x30\x1c\xe1\x36\x36\xac\xae\x8a\x2c\x05\x11\xa5\x58\x88\x9f\x00\xd6\x0e\xb1\xc2\x18\x09\x58\xad\x29\x25\x7e\x10\xf5\x00\x61\x0a\xda\x89\x98\x98\x6c\x42\x60\x4c\x6b\x84\xa4\x07\x48\x99\x61\x20\x24\x42\xcd\x1d\xdc\x68\xd7\x8c\x18\x95\x26\xa7\xbf\x11\x11\x95\xe6\x43\x17\x33\xa0\xe6\x29\x33\x69\x9f\x7c\xbc\x46\xcc\x6b\xce\x9a\x13\xbc\xcc\xc2\xcf\x0b\x80\xa3\x8e\x79\x64\xd2\x3e\x2b\x3f\x62\x5e\x7b\xaf\x49\xc3\x0f\x4d\xd1\xfb\x23\x52\x05\xd7\x3d\xc2\xc9\x39\x68\x55\x28\xad\xaa\x74\xb6\x23\x32\x48\xd6\xfa\x96\x98\x71\x30\x8b\x87\x9c\x1c\x52\x43\xc0\xed\x6c\xe8\x64\xc7\x12\xf0\x81\x86\x64\x91\x2e\xab\x67\x23\xec\x83\x43\x37\xd7\xc8\x20\xb5\xe6\xad\x61\x71\x54\x31\xe7\x88\x98\xd8\x21\xc1\x2a\xb2\x88\xd7\xe1\x0e\x80\x4d\xba\x5d\xc7\xca\x93\xac\x8b\x6d\xac\x3c\x43\xc6\xa6\x0a\xe3\x99\x84\xe0\x08\x47\xb3\xd1\xff\xea\x5e\x14\x59\xb3\xbe\x1b\xd5\xa0\x76\x53\x16\x9c\x11\xa9\x75\x13\x5b\x8e\x08\x80\xeb\xdd\xa8\xc6\xf4\x31\x72\xbe\x1b\xb1\x51\x19\xab\x5d\x60\x3a\xbf\xe6\x13\x88\xa8\xd7\x61\xd5\x65\xa4\x4b\x99\xfc\x9a\x46\xa4\x9c\x25\x0f\xa0\x11\xdb\x8b\xb8\x1f\xbf\x30\x39\x0b\x75\x81\x74\x7d\xcd\xd3\x44\xc8\x6a\x32\xae\xc0\x31\xfd\x87\xae\xf4\x8e\x8c\x9e\xea\x90\x09\xf7\xe4\x28\x37\x62\x3f\x39\x05\xf7\xf0\xf0\x0d\xad\x8b\xa5\x26\xac\x71\x8d\x9f\x18\x15\x65\x42\x1c\x91\xf9\x58\x14\xb8\x37\x22\x9c\xc8\x86\x77\x6a\xf0\x48\x68\x11\x08\x61\x1d\xba\x12\x45\x56\x90\xb7\x71\x20\x22\x1d\x8b\xef\xf6\x91\x21\x70\xdd\xc7\x76\xc0\x1c\xe1\x55\xa0\x2e\xea\xd0\xf5\x27\xc2\xb8\x3c\x7e\x3a\x20\x1c\x7d\x08\xe9\x19\xdf\x4c\x91\x99\x6f\x45\x42\x54\x64\x32\xe3\x66\x52\x72\x32\x13\xa1\x0f\x19\xea\x85\xfd\x9c\x00\xf8\x83\x0d\xeb\x91\xe3\x45\xda\x21\x25\x47\x84\x18\x95\x7e\xce\x25\x73\xe6\x35\x93\x1b\xd8\x7f\x87\xe4\xee\x48\xfb\x6f\x33\x01\x43\x15\xd2\xa1\xcb\x42\xa4\x87\x58\xfb\xe9\x92\xb4\xc0\x07\xf1\xa6\xd0\x6b\xcc\x67\x61\xf8\x68\xe0\xdd\x24\xe4\x46\xf5\x25\x1a\x99\xc6\xd1\xa4\x2b\xa7\xbe\x11\xe9\x25\x66\x61\x24\x42\x71\x35\xac\x61\x8d\xf7\x9a\x87\x1f\xe0\x42\x2f\xef\xa4\x11\xe1\xea\x3e\x24\x5b\xc7\x07\xa4\x57\xc2\x78\x7c\x98\xac\x56\x4b\x7d\x10\xb7\x5f\xfd\x1b\x6a\x09\x71\xfa\x48\xf9\xa7\x0a\x54\xcf\x82\x9d\x07\x00\x89\xf2\x59\x78\x48\x15\x8d\x55\x2f\x67\xa0\x0f\x5e\xca\xee\x92\xb4\x23\x6d\xb8\x2a\x97\x33\x22\x6a\x57\x64\xd3\x84\x97\x64\xc6\x34\xe0\xe5\xa4\xfc\x01\x27\xe5\x59\xbe\xdc\x50\x0f\x01\x03\xff\xcf\x9c\xc8\xf7\x3d\x6b\xe8\xb9\x62\x73\x8f\x64\x69\x86\x1b\x3d\xe1\x65\xaa\x1e\x71\x46\x54\x09\x53\x0f\xc8\x94\xfc\x73\xfc\x26\x8f\x9f\xcf\x2f\x62\xb5\xaa\x89\xfd\x27\x32\x75\xd5\x12\x1f\x11\x89\x4b\x0e\x49\x96\x71\xa2\xe8\xb4\xa7\xc4\xd0\x2e\xaf\x61\xc2\xe5\x4f\x36\xa4\x74\xac\x19\x16\x3d\x40\x54\x54\xf3\xef\x8c\x2c\x41\xa2\x83\xe9\x80\x29\x5c\xfc\x2a\x1d\x0b\x8c\x55\x0f\xa8\x11\x49\xfe\x62\x62\x8e\xfa\x02\x6a\x2f\xf9\x69\x8d\xc4\xc4\x81\x72\xf8\x1c\x89\xf5\xb7\x6c\x63\x48\x4c\x0c\x28\xb7\x85\x91\x20\x11\x29\xc2\x60\x24\xd8\x48\x0f\xb1\x90\x14\x08\x96\xbf\x89\x71\x1d\x29\xac\x7d\x6d\x7a\xf0\x00\x06\xee\x0d\x3c\xbc\x79\xb4\x85\xad\x7a\x01\x0a\x31\x55\x56\x1a\x29\x82\x87\x4b\xfa\x4e\x31\x62\x3a\x02\x2a\x4a\xe1\x1f\xba\xc3\x25\xa6\x0c\xb4\x91\x3a\x45\x1e\x28\xff\x86\x9e\x2f\xb9\x43\x0a\x2e\xc9\x3d\x42\x27\x6b\x98\x46\x92\x69\x11\xd5\xc4\x62\xfa\xed\x67\x4e\x17\xee\x50\x1e\xe2\x86\x55\xd7\x3d\xbc\x98\xa3\x40\x0e\xa7\x33\x6b\xed\x53\x42\x9c\xab\xfb\x4b\x8b\x74\x69\x51\xf4\x42\x53\x1d\x9d\x91\x52\x41\x8f\xfe\x82\x4c\x59\xd4\x2f\xd1\x09\xcd\x26\xd3\x94\xb8\x8d\x7e\xe1\xfa\x7e\xeb\xf2\x99\x3e\x81\xaf\x1d\xc6\xcd\x25\xcf\x89\xcc\xa7\x4c\x9e\xab\x0e\x57\x5e\x02\x23\x2b\x04\xba\x94\x8d\x9c\x9f\x40\x97\xa2\xcf\x03\x3d\xbe\x44\xf5\x13\x4b\xe3\xdb\x64\x99\xca\xc2\x5e\x2d\x8b\x85\x59\x95\x66\x6d\xa4\x82\xe0\x87\xe2\x17\x28\x9d\xf8\x10\x22\xd1\xf3\xa1\x0b\x47\x2a\xa0\x54\xcd\x1d\x2c\x8a\xee\x1e\x28\x86\x8a\x59\xa5\xc2\x42\x8f\xee\xe1\x46\x8f\x9e\x35\x29\x93\x51\xfa\x93\xf1\xda\xe1\x03\x54\x17\xe8\xd5\xc3\x92\xb1\x74\xb3\x4a\x95\xaa\x50\xe3\x60\x25\x17\x36\x68\x10\x4d\xa0\x68\xa7\x91\x2a\x09\x81\xd8\x4c\x42\xda\xbe\x23\x78\x12\xbc\x43\x7a\xa1\x0d\x54\xdf\x63\x36\xc2\xd6\x48\xd7\xa8\xfd\x10\x4b\x4d\x6d\x21\x99\x50\x64\x69\xe0\x7e\xfa\x20\x63\xd7\x6d\x2a\x31\x95\xb3\xef\xb6\xa9\x11\x58\xee\x93\xfc\x52\x02\x71\x6a\x0c\x2c\xd6\xc2\x1a\xc5\x0b\x09\x49\xa9\x53\xa3\x61\x02\xc0\x92\x12\x72\xc8\x1d\x69\x69\xd0\x4c\x14\x57\x36\x65\xa9\x82\x12\x8c\x90\xd9\xd0\xeb\x6b\x16\x82\x56\xa7\xe0\x64\x3c\x5a\xc2\x9e\x0c\x0c\x69\xe0\x38\x04\xbf\x40\x44\xd3\x75\x26\x21\x9d\xf2\xe1\x31\x90\x7c\xaf\x1b\x4d\x96\x4e\x4d\xe2\x61\xfa\x84\xbb\x66\x71\x32\xd1\x24\x19\x4d\x25\x18\x1f\x20\x27\xdd\x91\xce\xb5\x65\x9a\xf6\xb9\xd4\x91\x9a\xd5\x89\x80\x65\xef\xd8\xd2\xb2\x75\xbf\xc0\xe2\x2c\xda\x8f\x25\xff\x99\xe5\x20\xa2\xa0\x58\x83\x9e\x4e\x0a\xef\x12\x32\x13\xaa\xd2\x1f\xc6\xd5\x8b\xe8\x2e\x40\x5c\xe0\x17\x92\xcd\xd3\x45\xe4\x36\x0b\x5a\x7a\x2e\x4f\xe2\xa6\xba\x5a\xc2\x79\xba\x41\xc3\xcd\xa3\x6e\xe8\x15\x8c\x66\x2c\x29\xdf\x4d\x49\x3e\xb9\xac\x7d\x97\x94\xbf\xe1\x49\x37\x8f\x9f\xa4\xcb\x74\xaf\x19\xba\xbb\xb5\x66\xc1\x11\xde\xfe\xc3\x57\xf4\xb4\xe4\x3e\x09\x34\xe9\x01\x14\x4c\x6f\x11\xd5\x1f\xbc\xfd\x0f\x64\xaa\x6e\x62\xf8\x70\xca\x1a\x93\x7a\x2b\x45\x10\x8c\x44\x73\x64\x37\x3d\x7d\x1e\x7c\xa1\x69\x53\x2f\xe5\xb3\xf6\xd0\xac\x63\xa6\x00\x6b\xa4\x55\x1b\xe9\x25\xf5\x34\xe3\x7a\x81\xd4\x3e\x6b\x2f\xb8\x88\x04\xe2\xf4\x92\x8b\x98\x15\xbe\x0b\xf0\x9a\xc3\xcb\x55\x68\x2b\xe9\x3a\x27\x47\xf2\x91\xe8\x2a\xd7\xcd\x26\x18\x20\x60\x7b\x47\xfa\xc4\x30\xe7\x4e\x1c\x69\x52\x47\x64\x46\x33\xd7\xf6\x68\xd0\xb9\xb2\xa5\xfb\x93\x45\x0d\x37\xf4\x33\x9c\xe3\xa2\x6d\x26\xf9\x58\x54\xa4\xe9\x01\x50\x4c\x1b\x9a\x0f\x5a\xb4\xd4\x67\x3e\x1a\x5e\x28\xfa\xdd\xd9\xa5\xbf\xa0\x18\x50\x3d\x28\x45\x17\x71\xab\x1c\x80\x13\x5a\x48\x0e\x1c\x53\x93\x0a\x04\x7f\xd4\xef\xc2\x21\x34\x26\x44\x31\x25\x54\x1f\x39\xc0\xba\x75\xf8\x03\xf0\x70\x91\xc6\x0c\xef\x33\x57\xe7\x1f\xf9\x13\x96\x9a\xdd\xc9\x72\x04\x93\x97\xed\x30\xb3\x6a\xe9\xf8\x79\x61\xf5\x20\x38\x25\x88\x5b\x12\x92\x33\x4b\x6d\xc9\xf7\x7c\xe4\x44\x1a\xf4\xf3\x80\xb6\x24\x31\xd0\x4c\xd9\x44\x04\x23\x27\xb0\x64\x6f\x05\xd2\x30\xd9\xb4\x94\x29\x99\x88\x0e\xe6\xb4\xb6\x5b\x70\x63\x46\x64\x6b\xd6\x73\x22\xe4\xc5\x2e\x73\xe6\xba\x35\xa7\xbc\x4e\x9f\xe6\x40\xe9\x46\x14\x27\x67\x08\x85\x52\x67\xe5\x4c\xa4\x74\x3b\x83\x54\x3c\x07\x3a\x84\xd9\x9e\x9c\x21\xab\x28\x69\xe1\xc8\x05\x72\x69\xf6\xef\x6f\xf3\x7d\xbc\x73\xa1\xdc\x2d\xfe\x9b\x99\xff\xc8\x0e\x4d\xb9\x00\x0e\xba\x5a\xe6\x82\xcd\xcb\xfe\x7d\xf3\x03\x77\x09\x19\xc0\xa7\xa0\x70\x33\x25\x89\x64\x4a\x26\x3a\xff\x99\x15\x28\xac\x79\xce\x95\x93\xd6\xd6\xd4\xb5\xb9\x82\x43\xe5\x29\x08\x7e\xc0\xcd\x12\x60\x2b\xb9\x98\xe1\xc0\xb0\x47\xf9\xf1\x8f\xcc\x92\x13\x0a\x38\x1d\x99\x71\x90\xf2\xca\x1f\xb9\x61\x9a\xde\xcd\x46\x6d\xb7\x04\xa8\xdc\x48\xc8\xc4\x08\x73\x03\x8a\x19\x96\x0d\x87\xd7\x93\xa0\x18\xa2\x3b\x72\x6e\x20\xa5\x3f\xdf\x03\x72\xc5\x33\xc0\xb5\x4a\xe2\x40\xee\xc0\x27\x09\x14\x99\x09\x86\x15\x44\x3b\x32\x73\xa8\x29\xea\x76\x94\x6f\x06\xe9\x2f\x39\x52\x69\x54\xf8\x6a\xab\xcb\xb2\x5d\x8a\x91\x97\xb6\x80\xa6\x07\x9d\xc9\x7d\x9a\x7e\x63\xe7\x24\x2b\x14\xcc\x50\x61\xc4\xa3\xec\x09\x0e\x3d\xa0\xb2\xa3\xf9\x01\x60\x26\x42\x5d\x3a\x25\x63\x1d\xa2\x82\x1c\xc8\xca\x56\x30\x4a\xc7\xd6\x57\xb7\x23\x5f\x46\xf0\x94\xe8\x28\xd4\x3c\x87\x09\xa7\x4a\xfd\x66\x01\x7d\xaf\x7a\xe0\x7e\xdc\xfd\x1b\x4a\x68\xed\x52\xa1\x0c\x26\x15\x40\x19\x20\x24\xd5\xed\x8b\x01\x6a\x06\x27\x10\xa9\xfa\x37\x95\x44\x3a\x94\x85\x3e\x5d\xc2\x8b\x72\x32\x30\x4c\x30\x81\xd5\xd2\x14\xba\x9c\x05\xc5\xce\xfd\xbb\x72\xe3\xdc\x01\x81\xe8\x0e\xc0\x1f\xc5\x23\xca\x12\xaf\x8a\xa7\x74\x51\x89\xe0\x29\xb1\xf6\xb8\xb7\xfe\x04\xae\x8a\xab\x17\xd4\xe3\x4f\xd6\x41\x17\x28\xe0\xa2\x3f\xb8\x16\x01\xd6\x24\x2e\x7a\xb2\x78\xab\x29\xa2\x35\xf7\xc0\xdc\x3a\x52\x9e\x95\x0b\xa4\xa6\xf9\x37\xce\x8f\x98\x63\xb9\xc8\x70\x8d\x6e\x17\x0e\x90\xe8\x44\x61\x6d\x59\xbb\x94\x14\x8a\x74\xde\x9a\x9b\xa2\x85\xa8\x59\x81\x4c\x67\x8f\x92\x42\x1f\x31\x05\xbe\x8c\x42\x1f\x31\x7b\x4e\x94\x1b\xf8\xd7\xdc\x03\x03\x95\x25\x10\x95\x9b\xb3\xd6\xb2\x6f\x42\x52\x80\x5a\x19\x87\x25\x7a\x94\x87\xe4\x4e\xdc\xae\x3c\xc0\xb8\x9f\x17\x40\x67\x3c\xc2\x03\x0c\xfc\x79\xbf\x83\x41\x6b\x8a\x4b\xa8\x93\x7c\x54\x1e\xca\x32\x3e\x65\x0f\xe6\xd8\xfd\x02\x79\x9b\x64\xb0\xf2\xf0\x14\x19\x0e\x0f\xa9\xba\x24\xc7\xc2\xaa\x63\x76\xd6\x28\x2f\xa8\x95\xbf\x78\x41\x1b\x74\x55\x29\x2f\x75\x40\xe2\xd0\x85\x72\x9f\x0f\xde\x92\xfb\x44\x81\x0b\x62\x32\xb2\x89\x43\x45\x11\x76\x55\xfa\x1d\x35\x2c\x84\x88\x7a\x40\x82\x25\x19\xbe\x52\x14\xd1\xf5\xa7\xc6\xc8\x17\xfc\x60\xcd\x4a\x5d\x44\x9c\x1d\x19\xad\x2a\xd4\x2c\xca\xd5\x37\x6a\xa4\x80\xec\x2e\x99\x8e\xc1\xae\x13\xf5\x13\x56\x92\xdd\x18\x2a\x95\x20\xd6\xc0\xd7\x44\x1a\x27\x12\x53\x3f\x59\xe3\x47\x65\x57\x59\xf6\xd3\x4e\xc3\x35\xd1\x04\x5f\xfc\xc6\x87\xe9\x8a\xba\x1d\x15\xf5\x16\x7c\x93\xac\x99\x97\x1b\x21\x76\xcd\xd8\x0d\xf7\x08\xcb\x9a\xd2\xbe\x8d\x0a\x17\x25\x55\x42\x18\x35\x03\x43\xa4\xc7\xac\x30\x83\x59\x8a\xac\x19\xbc\x4a\x66\x88\x5a\x80\x0e\x12\x23\x2a\x6b\x5f\xf5\xf4\x37\x49\x52\x47\x2d\x6b\x17\xb4\x6f\x85\xbc\x49\x54\xb6\x7e\x62\x48\x52\x4e\x9a\x51\xa9\x0f\x19\xfe\x00\xa7\x4c\x77\xa7\x4a\xa9\x44\xb7\xad\x5a\x38\x5f\x01\x68\x59\xc0\xbc\x40\xe4\x5e\xb0\xa1\xba\x22\x4d\xac\x32\x81\x8d\x5a\xa9\x8d\xd6\x00\x30\x7a\x29\xa1\xef\xa8\xf5\x3b\x94\xe1\xf0\xfb\x27\x72\x95\x69\x82\xf5\x46\xbb\xc7\x23\xaa\x8a\x57\x56\x78\x8a\xdb\xba\x54\x3f\x71\xa3\xd9\xc5\xa0\x36\x18\xf8\xb3\xdb\x17\xcc\x34\x83\x06\xe7\x77\xdd\xba\x2b\xaa\xb1\xdb\x9d\xae\x52\x3c\x91\xae\xa0\x36\xd4\xe4\xf3\x69\x82\xa7\x92\xdd\xb0\x2b\x33\x40\xda\xb7\xa5\x36\x8a\x7e\xc9\x23\x3e\x70\xb7\xf7\x88\x6b\x4d\xfe\x82\x04\xd9\x78\xd9\x79\x58\x44\xc2\x6b\x5f\x19\xdb\xb4\xd1\x9d\x5a\x47\x1f\x7a\xba\x8f\x5b\x81\x57\xe1\xfd\x64\x1d\x53\x45\xd1\xac\x61\x54\x81\x08\x61\xe5\x42\x65\xa6\x07\xbb\xbc\x54\x98\xe5\x14\x1d\x39\x2a\x7c\x9f\x2c\x13\xd7\x8e\xc2\x6e\x06\x1c\x44\x8a\x2c\x29\xa8\x22\x8d\xac\xd2\x21\x8d\x3a\x28\xd0\xea\xae\x51\x51\x06\x2b\x7b\x91\xa3\xa0\x43\xad\x80\x35\x13\x86\x4f\xe7\x68\x78\x41\xb8\x30\x3a\x7e\x6b\x49\x83\xd9\x3a\x9b\x3f\xa0\xbe\xd0\xf8\x8f\x08\x50\x95\xf8\x18\x15\xbe\x53\x2a\x29\x35\xea\x80\x06\xdc\x64\x8d\x35\x15\x6c\x31\xaa\x27\xd1\x4f\x60\x3f\x11\x13\x64\xf4\x3b\xd7\x36\x68\xc4\x93\x25\x36\x44\xbf\x2b\xd5\x3e\xb6\xcf\xd4\x93\xab\xd2\x98\xf4\x44\x17\x5b\xaa\x4b\x2c\x91\xa4\x54\xcf\x13\x1f\xf8\x37\x2f\x8a\xde\xda\x13\xc6\x0e\xa3\x38\xb4\x40\xd6\x77\xd4\xe5\x4b\xe5\x63\xfe\x49\x25\x4d\x65\x82\x47\xbd\x70\x4a\xbd\x75\x57\xfb\x56\xe9\x43\x77\xf1\x0c\xf8\x18\x5f\x2c\x3e\xe0\x0e\x6f\xc8\x62\x9a\x22\x64\x92\x6e\x97\xe2\x8a\x98\xcf\x6a\x06\x43\x35\x53\x73\x7b\x86\xdb\xb3\xc0\x08\x7b\x60\xf2\x92\x90\x2c\x32\x49\xf0\xaa\x37\xdd\x34\x04\xe5\x4f\x20\x71\x7d\xc6\x51\x99\x16\xcb\xb6\x96\xfa\x09\x24\x4d\x81\x88\xa3\xd2\x89\xdd\xbb\x02\x79\x24\x98\xd0\xdd\x2f\x7e\x6b\x42\x0f\xd2\x93\x7a\x9f\x59\x0f\x55\x25\x97\x46\x85\x38\x12\xbc\x8d\xf0\x95\x52\x06\xee\x51\x59\x05\xcc\x57\xeb\xfa\xc9\x23\x39\x49\x61\x50\x9f\x05\x64\xad\x09\x89\x21\xab\x71\x0f\xe2\x49\xf8\xf9\xbd\x80\xec\x21\xe8\x09\x68\x28\x2d\xf1\x44\x92\x5f\x45\x5a\x8a\x4f\x3a\xf9\x1b\xf6\x03\xdf\xa9\x9f\xd3\x05\xc1\x23\x4a\x3b\x5f\x5f\x22\xaa\x37\x11\x69\x21\xed\x8f\x5b\xdf\xe5\x6b\xa0\xdf\xbc\x13\x48\xf8\xa9\x13\x39\x60\xcd\x7e\x59\x94\x4c\x09\x2a\x46\x85\xbf\xbc\xd5\x17\x75\xa2\xca\x84\x41\x80\xd0\x4e\x9b\x80\xeb\x04\x1a\x48\x60\xab\x73\xa1\x81\x5f\xf8\x18\xa6\x72\x9b\x8d\x06\xbb\x60\xd2\x25\xa4\x31\x72\xd3\x8b\x6e\xc7\x22\xbc\xfe\x02\x67\x27\xfa\x37\x15\x45\xda\xe8\x06\xc3\xa1\x6a\xec\x8c\x76\x34\xb8\xb0\x75\xfd\x06\x15\xd3\x51\x68\xc7\x02\x63\xd6\x03\xa4\x52\xd0\x05\xa0\x1d\xac\xa8\xe9\xdf\x40\x4d\xed\x43\x83\xdd\x51\xc9\xb7\x47\x0b\x01\xbf\x0f\xfd\x4e\x78\x5f\x13\x60\xfe\x2e\xbb\x9c\xb6\x80\x19\xeb\x66\xd5\x60\x65\xb4\x70\xd7\xc2\x82\xa2\xa6\xcc\x50\x4c\x3b\x1e\x36\x98\x16\xad\xdc\x68\x81\x92\x73\xf6\x10\x0c\xc9\xd3\x6f\x16\x13\x33\x93\x6c\x11\x60\x95\x0e\xb0\x45\x04\xed\x4a\xba\x6f\x91\xd2\x61\xf5\x07\xa0\x8a\xde\xc9\x04\xa2\x27\xc1\xa1\x2d\x01\x54\x87\xa1\xd1\x90\xe7\x29\x25\x18\xf7\x87\xdb\x2b\xa3\xe6\x04\xc7\x4f\x20\x75\x59\xac\xd1\x12\xc1\x22\x28\x24\xd8\xa0\x85\xbd\x0d\xd2\x65\xb7\xbf\x67\x83\x74\x19\x8c\x5c\x99\x23\xba\x1d\x6b\xf6\x00\x19\xfb\x90\xdd\x61\x63\x87\xee\x00\xa8\x93\xdd\x01\x66\xa4\xe3\xdd\xf2\xca\xcb\xea\x1e\xc1\xdf\x86\x3b\x58\x17\x18\xad\x21\x83\x75\x48\xce\x68\xf4\xca\xd2\x11\x6e\x85\xee\xca\x6e\x2f\xbc\x22\xfb\x41\x45\xfe\x27\x8d\x50\xd6\x9c\xfd\x02\xb5\x54\x92\xa9\x1b\x74\x6b\x76\xa2\x68\x85\xd7\xb0\xe6\x07\x17\xbb\xf0\x03\x10\xbe\xec\xdf\x2f\x42\xf1\x34\x26\x54\x69\xc1\x27\x10\x01\x92\xd9\x07\x00\x6e\x5c\x56\xf7\xb7\x4a\x87\xba\xe6\x0f\xb8\x11\x82\x0a\xa5\x56\xa3\xca\xf2\xb8\x17\xa5\x6b\x95\x1b\x21\x64\x44\xc6\x31\x25\x5b\x1e\xad\x92\x96\x07\x8f\x00\xf6\x63\x20\xc0\x05\xdf\x94\xaf\xd5\x45\xba\x35\x85\x46\xcd\x82\x48\x59\x6b\x6b\xd2\x9a\x14\x24\x5d\x1b\xbd\xda\xf2\xfd\x12\xf1\x6c\x0d\xd8\xa1\x1b\x58\x6b\x38\x31\xc5\x43\x5c\xdc\x19\x0f\x01\x38\xeb\x3a\xd5\x1a\xef\x57\x26\x86\x4b\x70\x35\xa9\x62\xf5\xaf\xee\x4f\xa0\x9c\x73\x74\x59\xfb\xc4\xd4\x66\xfd\x48\xeb\xe0\x92\xe5\x6f\x4a\xb7\x8e\xd6\xb1\x0d\x92\xb4\x5b\xe7\x0d\xfe\xa7\x77\x42\x55\xdb\x00\x47\x32\x47\x04\xb4\xb1\x84\x31\xf5\x30\xd6\x19\xd7\x17\x2c\xcb\x65\x03\x66\x83\x8c\xd9\x4c\x1b\x07\xc5\x64\x63\xe7\x58\xe8\xea\x2e\x00\x35\xc9\xd1\x8d\xa6\x42\x47\xcf\xb6\xb1\xa0\xa6\x69\x9f\xac\x6d\x21\xa0\x50\xf3\x15\x4d\xec\x4e\x50\x6c\x1f\x91\x13\x80\xf0\xba\xa0\xc9\xb2\x7e\xa6\xc1\x1d\xff\x67\xd2\x27\x15\xe2\xc6\xa6\x93\x05\x22\x8d\x6f\xe7\x22\x04\x5a\xc5\xb5\x8e\xa9\xfa\xb8\xd6\xc2\xfd\x80\x6a\x77\x13\x4c\x26\x40\xf5\xf5\xba\x5d\x6b\xe5\x9a\x17\x5d\xe2\x6d\x35\x6d\x37\xb5\xc7\x9e\xc7\xcd\x95\x6a\x90\x9b\x2b\x55\x97\xf4\xfa\xea\x5e\x2a\xac\x8b\xb6\xab\xb5\x9b\x9e\x0e\x26\xaa\x4b\xf2\x33\xb0\x28\xf9\xf9\xec\xc2\x7e\xd8\xed\x6a\xd6\xee\x85\xe6\x1e\x94\x17\x36\xc3\x9f\xd9\x3d\x6c\xfe\x6b\x2c\x8f\x6f\xc1\xa3\x3d\x54\x8f\x6a\x1d\x0f\x79\xac\xa5\x80\x67\x2d\x44\x5b\xb2\xe4\x41\xcb\x01\x4c\x14\x1e\xa5\x7e\x6a\x0f\x75\x68\xa6\xde\x14\x00\x7d\xc0\x97\x7e\xca\xd0\x5b\x02\xa0\xb4\x4d\x6d\xa9\xa3\x8c\x59\xef\x9a\xb8\x3e\x79\xa9\x8b\x36\xc4\x91\xba\xdb\xc6\x95\xf6\xbe\x48\x89\xee\x76\x62\xb3\xf4\x70\x6d\xae\x2e\xf5\xc6\x04\xdb\xf3\x89\x41\x65\xd9\x94\xdc\xce\x3b\x53\xf7\x0b\x20\x0a\xc6\xb4\x09\x24\x30\xf6\x2e\x29\xce\x0b\x87\xd1\xd1\x4e\xdc\x0d\x75\x65\x95\x14\x77\xf4\x23\x40\x2d\xd2\xf4\x1b\x55\x64\xc5\x10\xfa\x27\xd4\xc5\x43\xdb\xd9\x19\x12\x39\x7e\x5e\x20\x9b\xcb\xfa\x5d\x11\x38\xe4\x0e\xc9\x10\x74\x59\xee\xb0\x48\x2a\xc1\xf5\xe8\x07\xa9\x44\xf7\x10\xd8\xbb\xee\x11\x28\xbc\x27\xcf\x79\xed\x9d\xc7\x80\x58\x27\xac\xec\x01\x56\x06\xed\x6d\x0f\xbc\x42\x69\x0a\xa8\xb4\x6f\xae\xd7\x03\x43\xa2\xdd\xbe\x16\xe9\x07\x24\x86\xa2\x43\x1d\x65\x67\x95\x94\x7d\xf4\x00\x55\xc8\x70\x8f\xa4\xbf\xcd\x1f\x80\xcd\x49\x60\xe9\xf4\x30\x73\x78\x78\x0f\x6b\x51\x7b\x6b\x3b\x43\x2a\x1d\xdf\xda\xa1\x8a\x0c\x42\xfa\x1e\xc9\xe6\x84\x6f\x9d\x82\xa1\x21\x8d\x18\xcc\x3e\x92\xbb\x24\xdf\xfb\xe9\x82\x66\x2f\xcf\x3b\xb2\x62\x86\xc7\x44\x1c\x83\x6e\x62\x7d\x59\x5e\xfb\x5f\x71\xa5\xbe\xcc\xb2\x22\xe7\x1d\x92\xa7\xfd\x81\x3a\x8c\xae\x56\x09\xf4\xc4\x1b\x82\xf0\xb9\x27\x68\x00\xbc\x93\x09\x34\x4d\x27\xaa\x23\x3c\x33\xdb\x68\xd0\x3f\x49\x33\xa9\x6c\xec\xe8\x09\x71\x3e\xd1\x1d\xe0\xcc\x76\xcf\x80\x60\x17\x99\xed\x99\xa7\x5c\x47\xac\x53\xd4\x34\x7a\x2e\x51\x53\x87\xb4\x2f\x51\xd2\xe8\x07\x55\xa8\x59\x69\x47\xb4\xa6\x73\x5e\x74\xa8\x3e\x2d\x59\x76\xd6\xa9\x71\x92\x9c\xce\xb2\x34\x46\x9e\xc2\x8d\xd4\x22\x0a\x2d\x23\x3f\x0f\xe0\x1e\x36\xdc\x23\xb4\x9f\x46\xae\x42\x82\xf9\xf3\x01\xbc\x78\x8c\xf1\xd0\x8e\xfa\xa2\xd4\x0b\xe2\xd4\xc5\x26\x7b\x85\xa1\x79\xf8\x37\x0f\x84\x04\xf2\x4e\xb9\x4f\x77\x8a\x5e\x09\x14\xef\x14\xc5\x3a\x23\x2b\x13\xcd\x46\xe3\x42\x03\x7f\xf3\x14\x1b\xb0\x59\x24\xbd\x9f\xf0\x67\x94\xe0\xd8\xa9\xeb\xf1\xf7\x74\x01\xb7\x69\xbb\x9f\xa4\x1b\xba\x03\xf4\x93\xcc\xca\x07\xe4\xc4\x46\x48\x07\xd6\x99\xb9\xc0\x86\xb6\x8e\xd8\x3b\xa7\x21\xe8\x17\x55\xa6\xde\x3a\xaa\x83\x0c\x17\x96\xd4\xb4\x7d\xa8\x5f\xd4\x43\xff\x8c\x41\x72\xf7\xd3\x27\xbd\x00\xdc\xc7\xcd\x14\x9b\xd9\x0f\x3e\xc8\x38\xf0\xbd\xdf\x84\x8c\x40\xb9\x3c\xc2\x8d\x70\x10\x0d\x1c\xf1\xdd\xef\x35\x2b\x7f\xb1\x66\xe5\x07\x04\x5e\xf1\x18\xa4\x4f\x26\x15\x0f\x8b\xa4\x68\x7b\x3e\x0e\x5b\x7f\xc6\x80\x02\xa5\x18\x74\x2f\x8b\xa2\x78\x15\x8b\x9f\x4a\xb0\xef\xf0\xeb\xb1\xc7\x6e\x7f\x79\xd1\x35\x52\xb2\xb8\x7b\xf2\xc2\x5f\x2a\x08\x4d\x0e\xde\x15\xe1\x2f\x70\xbf\x03\x2b\x77\x17\xbc\x5d\x14\x4f\xeb\xc2\x0b\xfe\xfd\xfc\xf3\x27\xff\xd0\xd0\x8f\x87\x97\x64\x92\xf9\x22\x97\x89\x79\x0f\xd5\x2c\xba\x70\xf5\xb9\x26\xad\xfd\x9d\x10\xe3\xcd\x0f\xe7\x9a\xb3\xbf\xa0\x3a\x4d\x53\x44\x56\x02\x3b\xbf\x75\xa4\xd0\x52\x11\xe0\x31\x96\x0f\x90\xa6\x38\x0e\xa2\x83\x5f\x28\x20\xaa\x6e\xa7\xfc\x24\x8a\x35\x98\xe9\xd3\x8a\xfe\x71\x10\x4a\x45\xbf\x11\x05\x2d\xdb\xcb\x40\x86\xac\xe4\x40\xab\x01\x97\x20\x2b\x08\x06\x8b\x3e\x9a\xdf\x8d\x8f\xa3\x36\x5b\x10\x47\x60\x9d\x7e\xb7\x67\xb4\x6b\x06\x81\x28\x2b\xb2\x3b\x3e\x06\xda\x1c\xfa\x3d\x96\x4f\x90\x4e\xda\xf8\xd8\x61\x8b\xba\xe0\x0f\x70\xc3\x78\xfc\x95\x7e\x6e\x2c\xab\x9d\x4e\xc8\x00\xab\x74\xd4\xee\x88\x6b\x97\x04\x44\xa4\x2b\x50\x8d\x9f\x31\x18\x3e\x57\xdc\xce\x1b\xa1\x57\x88\x1a\x90\x51\x97\xf9\x01\x67\x69\x23\xca\x48\x44\x7f\x49\xb5\x83\xce\xd0\xb6\xd1\x8d\xb4\x60\xa2\x49\x25\x0a\x11\x7e\x80\x04\x99\x25\x09\x7b\xc7\xd2\xa3\x48\x62\x1f\xd0\xa3\x38\x9e\x72\xe4\x0f\x37\x6c\x13\x1a\x99\x74\xbb\xb9\x4b\x22\xcb\x70\x97\xd4\x1e\xfd\x3c\x00\xb2\xe8\x1e\x38\xc0\xdd\x2c\x51\x0e\x18\xfa\x1c\x30\x37\x90\x67\xbd\x24\xe3\x67\xe6\x5d\x47\xec\x6c\x14\x6c\xa5\x64\xd0\xb1\x8c\x77\x22\xfd\xa3\x70\xd6\xc2\xa6\x8f\xbd\x35\x07\xd3\x8e\xc2\x14\x6f\xc3\x2f\x2c\x48\xb9\x87\xb5\x3d\x9a\x15\x72\xab\x97\x64\x9c\x2f\x94\x64\x7e\xde\x98\x7c\x43\x9d\x56\x72\x03\x71\xd1\x01\x5f\xd9\x24\x3d\xda\xa0\x51\xe5\xe7\xf7\x1a\x54\x3d\x30\x6b\xa6\x13\xdd\x8c\xef\xc2\xeb\x2a\x7a\x63\x2c\x23\x8a\x68\xff\x38\x49\x4e\x24\xf4\x8d\x93\xa0\x10\xf4\xcf\xb5\x81\x1a\x03\x01\xe8\x39\xf9\xf7\x27\xf0\xa8\x88\xc8\x18\x17\xc5\x48\x93\x07\x38\x62\x14\x67\x9c\x1a\x17\x0e\x87\x4d\x16\x03\x25\x41\x7e\xc0\xfd\x71\xbd\x64\x2b\xcb\x60\x89\x10\x9b\x2c\x06\xfc\x2c\x1c\xde\x31\x96\x4d\xa3\xf9\x8b\xc9\x07\xea\xf2\x5e\xb9\xd2\xfc\x60\x2d\x5c\xd3\xfc\x98\xdc\xcf\x7d\x78\x80\xc9\x59\xf5\x3b\xe0\x89\xe1\x18\x93\x01\x96\xe6\x88\x8d\x81\xdb\x6e\x49\x26\x6a\xb8\x99\xfe\xe0\xf5\x03\x02\x22\x1d\xe5\x80\x99\xc2\x01\x17\x83\xae\xaf\xce\x60\x32\xd6\x45\xb5\xbb\x47\x58\x5e\x7c\x80\xe1\x1b\xeb\x50\x83\xc1\x52\x1e\xbe\xff\x8d\xe7\x64\x97\x9e\x03\xce\x92\x69\x3d\x93\x65\xdb\xf2\x31\xe0\x3c\xeb\xa0\x8e\xf1\xf0\x2c\x75\x4f\x6a\xe2\x05\xf5\xf8\x2e\xca\xac\x49\xc0\x8b\xc2\x5e\xa8\xe3\x6d\x1c\x42\x5d\x4e\xa2\xb9\x98\xea\x98\x58\x86\x38\xf9\x98\x6b\x19\xfe\x02\xb3\x16\x07\x1b\x2c\x8d\xec\x18\xd9\x81\x62\x50\x59\xcb\x3c\x0f\x80\x5a\xca\xd7\x93\xa6\x83\x24\xfd\xf1\x79\xd0\x83\x45\x07\xe5\x3c\x40\x1c\xad\xcf\x3d\xc1\xe4\xec\x84\x75\x1e\x4c\x5b\x5a\xfd\x80\x9c\xbe\xbb\x8b\x8b\x5d\x78\x54\xaa\x7a\x7e\x06\x79\x21\x80\x78\x0c\xc0\x52\xb2\xdb\x19\xa8\x12\xd0\xe9\x3c\x19\x96\x64\x41\xeb\xfc\xd8\xde\x8f\x23\xe2\x19\x96\x34\xf0\x37\x4c\xe9\xc4\xa5\xb2\x24\x31\xa1\xf3\xbb\x34\x76\xc7\xd7\x9c\x61\x2d\x69\xe8\xc1\xcb\x25\x69\x86\x91\x7b\x27\x2e\x74\x92\xd1\x59\x9b\x7a\xae\x38\x70\x1d\xff\x13\xfe\x2a\xc5\x9e\x5b\x27\x03\x87\xac\xa7\x3e\x91\xc0\xda\xae\xcf\x67\xe4\x76\xab\x87\xef\x12\x97\x2c\x3d\x9c\x8b\xb3\xe9\x1c\x9c\x2c\x27\xe2\xd0\xda\x93\xd7\x3a\x07\xa9\x9e\x69\x2d\xdd\x6f\x7c\x14\xde\xd6\xab\x93\xb1\xe4\xe9\xe7\x0b\xb0\x53\x69\x4f\xcf\x0c\x1e\x22\xb9\xee\x64\xf2\x45\x87\x94\x9d\xe4\x84\x12\x26\xcf\x0c\xa9\x49\x1a\xdc\x33\xf3\x34\x0f\xbf\x00\x0c\x93\x78\x7a\x92\x33\x5a\x01\x7a\x66\xa2\xf9\xf0\x98\x38\x9c\x12\xab\xce\x4c\xea\xae\x21\xca\x9a\x93\xba\x84\x73\xad\x6a\xdc\x8e\xb3\x10\xcb\xc5\x4b\x4f\x32\x3e\x09\x93\x67\x21\x9c\xc4\xbf\xcf\x42\x38\x69\x4e\xcc\x04\x6d\xd6\x79\xc2\x44\xa0\x92\x35\xe3\x84\xf7\x6d\x94\xb6\xed\x64\xf1\xd1\xf1\xf3\x02\x90\x5e\x74\xf6\x84\x2f\xad\x3d\xbd\x4e\x28\xfc\xed\x07\x74\x56\x4c\x51\x3a\xdc\xb3\x42\x3c\xd0\xbd\xe0\x84\x67\xed\xcf\xb9\xc4\xbd\xcf\xce\x17\x27\x42\x37\xec\x7e\x79\x9e\xa4\x89\xba\xa1\x9f\xac\x61\x65\x85\xe1\x09\x4f\x42\xb3\x9f\x93\xd7\x38\x2b\x0c\xcf\x93\xdc\x45\x34\xef\x84\x55\xdf\x06\xe7\x73\x71\x38\x03\xfe\x5a\x80\xf7\x1b\xbc\x21\xf9\xa8\x5f\x64\xab\x9a\x15\x75\xbc\x3f\xf8\xc5\x22\x57\xd6\xe5\x9d\x64\x82\xd5\xbf\xc1\xdb\xad\x29\x3b\x51\xfd\xc1\x26\xe7\x73\x6b\x78\x35\xe6\xbd\xa8\xa0\xba\xb8\x99\x84\x49\x90\xa0\xf7\xa1\xa3\xdb\x4e\x64\x3d\x89\x56\x8d\x9d\x88\xe3\xfd\xb9\x2b\x9e\x37\xb6\x57\x02\xe2\x09\xe7\xc1\xf1\x43\x64\xc8\x06\x25\x10\x9e\xac\xe3\xe8\xc0\xc9\x93\x25\xac\x1c\xaa\x78\xa2\x6e\xe3\xcf\xf5\xf2\xa4\xc2\xd6\xea\xb2\x13\xc1\xbd\x8e\x20\x38\x11\xdb\xdb\x7e\x7a\x20\xec\x92\x27\x71\xe3\x05\x7d\xf0\xae\x59\xfa\x01\x37\xcc\xfb\xf1\xae\x59\x69\x4b\x91\x8f\xd9\xb6\x86\x73\xf1\x39\xb1\xce\xf3\x5d\x3b\x28\x70\x23\x98\x37\x99\x1d\xf0\x6a\x28\x6e\x7d\x32\xb8\xd7\x3a\x8d\x13\x19\x9a\xb3\xf8\xff\xf9\x82\x26\x89\x17\x9f\x2f\x60\xed\xf6\x09\xd0\x8a\xb1\x9e\xb8\x1a\x5a\x6b\x7d\x4e\x92\x45\x69\x92\xce\x89\xd3\x2d\x46\x7b\xb2\xe8\x44\xf2\x61\xa5\x7a\xd7\x6a\x97\x93\xac\x58\x9c\xf7\x64\x36\x14\x2b\x41\x4e\xd6\x65\x1c\xf9\x6f\x72\x75\x8f\x8b\xb1\xbf\x56\x80\x5c\xc7\x22\x61\x59\x0f\x22\x37\x3f\xea\x41\xe2\x1c\xfd\x06\x36\x42\x7c\xf8\x62\x3e\x66\x5f\xb9\x2f\xd4\x99\x38\x8c\x50\x17\x38\xf5\xe1\xdd\xbe\xc8\xa9\x1d\x17\x7a\x91\x13\x3b\xcc\xf3\x0a\xc4\x52\x49\x10\x57\xe0\xd1\x10\x33\xbd\x78\xa1\x14\xab\xbe\xc2\x1a\xd5\x7d\x82\x50\x75\xff\x26\x52\x4a\xc4\xb8\x58\xab\xd1\x51\x80\x57\x58\xa6\x21\x2d\x2d\x60\xc3\xc5\x7d\x2f\x16\xef\x4a\x22\x5d\x57\x04\xb1\x14\xc7\xb8\x78\xcd\x74\x96\xb4\x0b\x0a\xd8\xe1\x00\xc8\x2b\xae\xb4\x3e\x9a\x37\x33\x25\x9b\xdd\x5e\x1f\xbb\x2d\x49\x87\xed\x4a\x1f\xc1\xb6\x92\xe4\x02\xb3\x3d\x7e\x60\x45\xf7\x51\x6b\x7f\x2e\xd4\x65\x70\xd8\xc0\x95\x58\x14\x46\x73\xa0\xb3\xa8\xa3\x4f\x2f\x5c\x33\xed\xb3\x74\x21\xb1\xb1\xfd\x87\x2f\xf0\x56\xa7\x0f\xb9\x60\xad\x4f\x22\x10\xd7\xc7\x5a\x93\xc3\xea\xaf\xdc\x39\x45\x3f\x58\x60\xf0\x08\x3c\x7b\xc5\x5d\x4e\x74\x29\x48\x7e\xbc\xb5\xf9\xb2\x76\x21\xa2\x56\x85\xd6\xc6\x55\x16\x14\xd4\xc1\xc7\x29\x9b\x6f\x3d\x17\x18\xa5\xbd\xf6\x2f\xde\x18\xed\x21\x7b\x95\x45\x4a\x35\x04\xc3\x4e\xac\xea\xb9\x60\x1c\x1f\x87\x84\x94\xab\x92\x28\x49\x64\xb8\xea\x22\x95\x1a\xb5\xae\x95\x6b\x1d\xd4\x93\x5a\x37\x83\xea\xfe\xd9\x01\x38\xa8\xde\xdf\x6d\xb0\xbc\xda\x3a\x6f\x7e\x40\x60\xfb\x77\xc1\x07\xea\xb0\x91\x47\x88\xc3\xa3\x7a\xff\xd7\x83\x66\xc9\x7a\x9c\xf6\x98\x44\x2d\xfe\x6f\x96\xc2\x88\x8e\x0d\x36\x4a\xc1\xa5\xf2\x47\x5d\x83\xda\xfb\x5f\x17\x02\x37\x12\xca\x1d\x3f\x38\xd4\x89\x85\x12\x24\x2e\x9a\xa8\xed\x9b\x87\x72\xfd\xa1\x39\x9b\xdf\xc5\x7a\xde\x76\x28\x5a\xf5\xf9\xed\x4c\x83\xfa\xfc\x41\x05\x83\x07\xea\xf3\xbb\x7a\xf7\x60\x79\xfe\xc3\x51\x9e\xd7\x00\xda\x18\xf1\x06\xb2\x2f\x34\x7f\x40\x4c\xf6\x6f\xf2\x1d\x09\x1f\xd7\xe0\x7e\x49\xb6\x40\x41\xff\x6f\x08\xbf\x41\xbc\x31\xb0\x4e\x92\x26\x53\xc8\x93\x12\x77\xf2\x1b\xc0\x4d\xcf\xf2\x5c\xa0\xd1\x34\x3e\x21\x29\xa9\xe4\xda\xb8\x18\x7e\x61\x56\x73\xd1\x8c\xed\xb8\xcc\x0b\x66\xec\x1f\xc8\x9c\xac\xe7\xac\x59\x5e\x0b\x32\x5a\xc7\x15\x3e\xd0\x79\xd6\x4c\xd2\xeb\xb8\xcd\x0b\x9e\x90\x16\xd9\x2f\xd6\x05\xb5\x52\xf0\x82\xc8\x34\x1c\x4c\x7a\x21\x5e\xc3\xc2\xeb\x85\x72\x18\xce\x6b\x7f\xd1\x2a\x3e\xda\x5f\x25\xaa\xbb\x60\x32\x1f\x4e\xe9\x73\x41\xc0\x3a\x7e\x4e\x1b\x04\x2c\xdf\x19\x2e\x7a\x4e\xda\x6f\xf0\x82\x5e\x3c\x45\xff\x5e\x1b\x21\xac\xbd\x79\x3c\x3d\x65\x46\x6f\xf8\x74\x22\x78\x23\xfd\x0c\xb9\x36\xdb\x5d\x82\x4e\x49\xa2\xbf\x68\x0f\xb7\xc2\xed\x42\x6c\xc6\xcf\xf1\x45\x2c\x86\x3d\x52\xaf\x67\xcd\x49\xe7\xe4\x21\x58\xbd\x0a\x48\x4f\x56\x82\x5f\x0f\xc9\xb5\x57\x81\x88\xda\x6c\xa1\xef\x42\x64\xc5\xcf\x81\x87\x4e\x20\x49\x80\xbe\x5e\x60\xbd\x91\xe7\xe5\x1c\xb5\x6a\x08\x5b\x3f\xea\xd2\xeb\x5d\x93\xd4\x1c\xe0\xf0\x68\xe7\xc1\x0b\x7a\xf7\x61\x77\xff\x0b\x19\x81\x8b\x95\x67\xd7\xcb\xed\xfc\x79\x30\xf9\x40\x7d\x4e\x6c\xa7\xbb\x80\x38\xf5\xb3\x59\x30\x9e\xff\xec\xee\x24\x39\xf6\xb1\x42\x10\xaf\x9d\xca\xae\xb9\x66\xad\x75\x4f\x8a\x26\xa6\xc6\x4c\x3f\x67\x55\xe5\xc5\x20\xde\xe4\x73\xc3\x98\x5d\x1b\x08\xae\x49\x2c\x14\x52\xdd\x9f\x0c\xd5\x9d\x05\xef\x46\x19\xaf\xc3\x4e\x8a\x37\xdc\x22\xed\x48\x79\x43\x60\xb2\xd1\xff\x86\xd7\x63\xd2\x61\xbf\xa1\xad\xf7\xac\xef\x03\x38\x98\xdd\xdf\x02\xad\x3b\xb8\xf1\x41\xd7\x6f\x24\x5f\x6e\xfe\x80\xf4\x5e\xba\xb4\xfb\x13\xaf\xb2\xf9\xf9\xcd\x3a\xa6\xd6\x42\xde\x50\xef\x27\x49\x95\x37\xfc\x24\x0d\x95\x1b\xea\x7d\x6f\xee\x1d\x0a\x7e\x7b\x00\x92\x40\x4f\xf1\x13\xb6\x9a\x13\xd6\xde\x30\x87\x1f\x8e\xc8\xbe\x03\x91\xda\x50\x5a\xba\x0f\x29\x3e\x6f\x18\x00\x92\xec\x4b\x77\x24\xc1\x92\x96\xe9\x66\xe5\x54\xab\xe4\xef\x48\xc0\x6b\xd6\x90\xce\x52\x76\x8f\x94\xce\x9a\x5f\x20\xc2\x78\x2b\x58\xdb\xcb\x7a\xcc\x3b\xf2\x52\xe1\x85\x44\x22\x8c\x41\x05\x0b\x7a\x09\x7e\xe1\xc5\xa0\x9e\xd4\x84\xbd\x48\x93\x80\x89\x3c\x49\x58\xbb\xe9\x9c\xe9\xe0\xd6\x9b\xf2\x9e\xf4\x14\xf7\x92\xf7\xc4\x5e\xee\xa5\x5c\x31\x82\x30\x51\x9f\xfd\x39\x6f\x5a\xcd\x25\xfb\xdc\x08\x5d\x36\x3f\xba\x13\xcb\x48\x78\x08\xf2\xdd\xe6\x49\x61\x11\xd2\xbe\xdc\x8c\x16\xfa\xc1\x69\x46\x2e\x5b\x57\x7a\xc3\xac\x7e\x98\x41\xdd\x99\xb2\x92\x17\x0a\x3b\x7b\x92\xc4\x77\xe7\x86\xdf\xee\x01\xf1\xd6\xc6\x10\x96\x6f\xb5\x76\xf5\xa6\x76\x45\x5a\x80\xbb\x50\x52\x32\xa8\x69\x67\x70\x68\xf2\x5d\x28\xa4\x44\x7f\x02\x6f\xfe\xe3\xaf\x2e\x4b\x37\x73\xb0\x38\x3c\xf7\x86\x51\x3d\x15\x8f\x47\xa9\x56\xdc\xe3\x66\x81\x57\xe7\x5c\xbc\x0b\xb1\x5c\xea\x99\xbb\xac\x45\x09\x0a\x85\x54\x51\x1a\x9f\x1b\x1e\x9c\xc9\x6b\xa8\xbc\xa1\x89\x58\xdf\x75\x2d\xdb\x6f\x2c\xea\xed\x37\x08\x59\xcd\x7b\x09\xa5\xe2\x49\x37\x2b\xba\xfe\x9c\x8c\xc6\xb3\x25\x49\xec\x66\xc5\x56\xfb\x05\xdd\x8d\xbb\xa7\x31\xda\x3a\x3a\x7e\x00\xaa\xe6\x95\x32\xad\xb1\xa3\x5c\x6f\xfa\x58\xda\x39\xe5\x7e\x51\xc6\x5d\xf4\xfd\x66\x78\x9f\xa3\x52\xef\x97\xeb\x10\x68\x50\x71\xc9\x6a\xe7\x1b\x17\xfa\x24\x01\xf3\x7e\x41\x17\x25\x08\xdf\x64\x30\x12\x7b\xef\xb9\x56\xa9\x0e\x51\xa5\xda\x09\x3c\xee\x89\x4b\x86\x54\x86\xf7\x44\x80\x94\xc9\x03\x93\x44\x58\x95\x7e\x2f\x7e\xa2\x93\xf6\x2c\xcd\xb7\x8e\xe2\x03\x63\xae\x4a\xe1\x8e\x87\xcc\x40\x70\x7d\x8e\x86\x94\x81\x51\xbf\x01\x46\x49\xd1\xcf\x41\x07\x98\xe6\x17\x88\x74\x12\xcb\x1e\x68\xb9\x2d\x91\x3c\xb4\xdd\x3a\x4a\xf6\x21\x71\x17\x37\x78\x48\xbc\xc5\x03\x9f\xc0\xe4\x90\xfe\x4d\xb1\x4d\x4a\x87\x07\xd7\x60\xa7\x59\x7e\x90\xcb\xca\x11\x28\x4f\xe4\x9a\xb4\x66\xd8\x52\xb3\xae\xd1\x0f\xfc\xd3\x5d\xda\xe7\xa1\x6d\xf5\xe7\x7b\x98\xa3\xa3\xfb\x27\xff\x92\x8a\xe1\x49\x14\x66\x25\xe0\x3c\x89\x3b\x29\x3a\xfd\x24\x8a\xed\xba\xaa\x3f\x89\x01\xcc\xee\x82\x8b\x92\x12\xfb\x49\x94\xeb\x93\xbf\x00\xcd\x6b\xfe\x82\xab\x16\x14\x90\xbc\x21\x89\x67\x3e\x79\x6d\xb5\x26\x95\xc9\x8f\x24\x5c\x3e\xbc\x26\x7b\x23\x32\x2f\x51\xc3\x0f\x00\x38\xaf\x82\xc9\xac\x4c\x13\x1f\x78\xb9\xa7\xe6\x21\x78\xa8\x44\x76\x1f\x98\x5a\x9d\x81\xf2\xe1\xb5\x59\x67\xec\x29\x54\xe7\x18\xb6\x28\xd8\x93\x8c\xb0\x20\x59\xce\xc2\xf7\x2c\x7a\x24\xaa\xfb\x80\x1e\x39\x05\xc5\xf3\xd1\xa3\xd4\x7e\xda\xb9\x15\xa2\x68\xcf\xa2\x4f\xc5\x6f\x00\x0c\x3f\x2f\x2c\x30\x68\x0e\x95\x17\xd6\xe2\x37\x4e\xee\x8d\xbb\xe0\xcd\x42\xcb\xac\xf7\x77\x70\x0d\x86\x8a\xbd\xf2\xee\x37\xca\x68\x9a\x34\x42\x25\x93\x31\xba\x51\x94\x34\x18\xe0\x10\x6e\x53\xdf\xd3\xa8\xb2\x92\x30\xfa\x34\xda\x97\x8b\xbb\x7c\xf9\x40\x73\x62\xf2\x05\x6b\xa9\x9f\x4e\x76\x24\x15\xd5\xc3\x24\xec\x36\x50\x3d\xc8\x6d\x90\x7a\xff\x1b\x76\xf4\x74\xee\x9c\x3f\xe6\x75\xda\x07\xbf\x53\x74\x15\xeb\x78\x58\xd3\xc6\x4a\xef\x87\xf9\xa4\x24\x38\x3c\xc8\x16\x95\x6c\xc0\x78\x06\xf5\x19\x62\xc2\x0f\x7d\xbe\x0f\x5d\x5f\x9e\x41\x40\xa9\x0b\xe6\x2e\x38\x0c\xfa\x13\xbb\x2d\x95\xd8\x73\x62\xda\x32\x60\x3c\xab\xba\xcc\xe1\x07\xa0\xe2\x1e\x81\x99\x06\xec\x70\xf0\x9c\xac\xa0\x74\xf8\x01\x76\x5b\x64\xfc\x59\x16\x6f\x31\xbc\xe7\xc2\x76\x1b\xc1\x60\xe0\x3e\x7e\x3e\x20\x77\xf3\x2a\x2e\x9c\xb3\xe1\x17\xb8\x6c\xaf\xe2\xfa\x96\xed\x9c\x71\x0f\x32\x11\x24\x43\xf6\x5a\x93\xf6\x14\xc8\xf9\xbd\x6e\xa6\x1e\x70\x80\xf5\x73\x1f\xfc\x44\x6f\xdc\x38\xbb\xc6\x0e\x94\x7e\x34\xbb\x7b\xee\x75\xb0\xfc\x02\x41\xad\x31\x71\xfd\xcd\xde\xcd\x75\xfd\x15\x4f\x7e\xee\xb5\x2c\x01\x66\x95\x93\x3e\xdc\xe5\x44\x17\x02\xcc\x93\xf0\x5b\x1f\x3c\x94\x3d\xc5\x93\x9f\xef\x3a\xdb\x9c\x5b\xfb\x79\x50\x10\xcc\xbb\xfb\x90\x62\x79\x92\x0f\x77\x53\x8a\x88\x87\x89\x40\xcd\xb6\x9f\x65\x1c\x30\x20\x5e\x9e\x56\x43\xfb\xa5\x48\xac\xab\xe3\xf3\x72\xe5\xfe\xa2\x11\xb6\xfe\x82\xda\x61\xdd\x58\x9e\x75\x5f\x95\x70\xf0\xc0\xd9\x3b\x1f\xfe\x62\xcd\xd3\x2f\x10\x34\x5a\x39\xcb\x33\x5a\x03\xf9\x4c\x44\x55\x99\x58\x23\xd3\xe7\xe1\x1b\xf0\x43\x6f\x6f\xe7\x03\x7e\x60\x89\xcf\xd2\x40\x3e\x10\x27\xec\x31\xf4\xc0\x1c\xe0\x28\xa8\x67\x62\x8e\x06\xdd\x5c\x73\xdc\x70\x78\xe9\x4b\xe6\x98\xf0\xf7\x58\x80\x18\x7a\x70\xf2\x8d\x43\x0f\x1e\x3e\x88\x7a\xb0\x3a\xdd\xa0\x7a\x99\x8a\xd3\x32\xc9\x8b\xc2\xce\xc9\xba\xa5\x17\x86\xed\x26\xfd\xd6\x4b\xcd\xba\x03\xa4\x5f\xe6\x61\xb0\xa8\xf6\x7e\xb7\xbd\x96\x3d\x71\x64\xca\xc9\x1e\xb3\xd1\xee\xa9\x1e\x11\xc0\xe3\x9a\x67\x6f\x5b\x1c\xc2\x2f\x5c\x1c\xd2\x3d\x7c\xc2\xa0\x33\x2a\xbe\x8d\xb0\xf3\x07\xab\xbc\xdf\xfe\xdd\x57\x7e\x02\xbd\x80\xf8\x1d\x3b\xba\xbf\x88\x2a\x1f\x0e\x3e\x7e\xa1\xf1\x4c\xd6\x4f\xbd\x1d\xdb\x69\xb0\x40\x19\x99\x45\x4c\x51\xef\xbf\x65\xf1\x62\x94\xfb\xcf\x96\xb1\x51\xde\xbf\x65\x11\xf4\x97\xfe\x48\xc7\xcf\x03\x06\x23\xbb\xc3\xce\x17\xfc\x60\x41\xc1\x53\xc0\xaa\x45\x63\xde\xa5\xbc\x94\xd4\xf3\x0e\xa8\xa3\xbd\x53\xe7\xc2\xd1\xbf\x72\x71\x78\x4f\xce\x58\xdb\x82\xd2\x62\x49\x7c\xf9\x65\xf5\x0c\x8b\xbb\x2f\xb8\x41\x8e\xfe\x0d\xba\xaa\x73\xfa\x9e\x64\xb3\xde\x96\x93\x0b\x10\x8c\x17\x33\xf0\x8a\x4e\x06\x3c\x48\x56\x78\x97\xe6\x53\x52\x3b\x4a\xff\x7f\x9f\x68\x96\xd0\x74\x3a\x79\xd8\x7b\xd1\xc1\x52\x63\x82\x1b\xe4\xe8\xdf\x20\x1e\xd9\xbf\x51\x95\xd1\x87\xec\x63\x06\xa9\x79\x8e\x1f\x33\xc8\xed\x67\x02\x3c\x62\xc1\x0f\xe0\x84\xda\x3c\xa1\xf9\x75\x20\xd9\xe2\xbd\x19\x26\xe2\x7d\xbd\x91\x92\xf7\xe7\xf7\xc2\x0c\xc1\xf1\x5e\x98\xa0\x39\x22\x57\xe0\x4f\x92\xee\x17\x59\x67\xec\xe8\xfa\x22\xd4\xa7\x4a\x16\x78\x1f\xea\x87\xd5\x01\x2a\x97\xf9\x2e\xfd\x42\xaf\x99\x93\x7f\x53\x76\xf0\xaa\x9f\xfe\xcf\x9f\x52\xb3\x5f\xf8\x6e\x6b\xce\xa7\xf5\x2e\xb5\xa6\xd6\xf0\x70\x42\x5a\x02\x5c\xa1\x9c\x3f\xe3\x7d\x40\x22\x92\x27\x34\x09\x45\xcd\xf8\xe3\x13\x2d\x4b\xe7\xf4\xbe\x54\x41\x88\x5c\xbe\xc8\x1f\x93\xbd\x0f\x4b\xab\xa9\x8b\xca\x8b\x34\x81\xf9\xe7\x03\xca\x74\xd5\x5d\x82\xe6\x1b\x48\x73\xe1\x96\x1f\xa0\x6a\xa9\xe5\xc4\x77\x52\x1b\x28\x4d\xc9\x0b\xa3\x70\xfe\xf9\x4d\xb8\x25\x3f\xe0\xd6\x89\x35\xbd\x88\xdc\xce\x62\xa9\xef\x5c\x0b\xdf\x5f\xcc\x45\xe5\x45\x2d\x27\x23\xb3\x1d\xa2\x3f\x97\x09\x36\xfb\x8d\x17\xe5\x48\xa2\x7e\x53\xab\xa9\xdd\x9a\x81\x2a\x01\x5d\xca\x66\x58\x2b\xf3\x1b\xbc\xef\xe8\x1a\x38\xe1\x0c\xe5\xdc\x85\x33\x2c\xf8\x6b\x16\xb8\x68\x66\xa1\xf5\x5c\x7c\x23\xf9\x05\x6e\x88\x6e\x48\xa8\xff\xff\x3d\xf0\x27\x14\x50\x7e\x06\xa1\x60\x9e\xfd\x60\xf2\x8d\xbd\xa9\x13\x71\x35\x76\x14\x9c\xd0\x23\x66\xc9\xe9\x33\xae\x1d\xf2\x07\xd4\x12\xe9\x22\x87\xfa\xfc\x2d\x0b\xf5\x51\x7c\xff\x9b\x95\xba\x48\x5c\xa9\x2e\x2c\xa8\xa5\x1f\x7e\x4e\x34\x6a\xe7\x7f\x0f\xb4\x54\x16\xcf\x77\xd6\x05\x14\xcf\x4f\xf9\xe7\x0b\xd4\x32\x32\xf6\xce\xb4\xa8\x86\xe6\x89\x0b\x6a\x2e\xee\x92\x2b\x17\x32\xce\xa5\xa5\x13\xcf\x43\x75\xfc\xef\x81\xba\x80\x7b\xf0\x70\x6e\x07\xd4\xc7\x8f\xe9\x07\x0f\x32\x08\x72\x71\x17\xd7\x3f\x7f\x8a\x1d\x58\x59\xfe\xde\xa9\x75\x27\x63\x5d\x0c\x1a\x28\xe9\x5c\x08\x70\x16\xa2\xa6\x2e\xc5\xa8\x86\xdf\x9c\xcb\x6c\x15\xc3\x77\x2e\x87\x59\x88\x25\x46\xa3\xb2\x80\xfb\x57\xae\xe0\xac\x9d\x3f\x9c\x23\x60\x16\x8a\x0a\x46\x43\x2a\xe5\x9c\x1a\x61\x16\xf2\x14\xe3\x54\x85\x24\xe7\x17\x2a\xa4\x60\x49\xa8\xb3\x92\xad\x75\x3f\x18\xec\x52\x73\x86\x97\x54\x36\x12\x22\xb9\x4f\xae\x6e\x5f\x73\xf0\x0b\x6b\x0e\x02\x5c\xe5\x09\x35\xde\xb2\x50\xac\x93\x17\xcc\xc6\xed\xd6\x55\x7c\xe2\x96\x9b\x45\xbd\x66\x23\xe3\x33\x62\x37\xe2\x83\x38\xdf\x84\x56\x2f\xfb\xd0\x23\x03\x50\xae\x1e\x82\xc7\xaf\xf8\x85\x87\x0f\x34\x66\x47\x86\x1f\x2f\xac\x13\x29\x7d\x34\x06\x09\x8b\xe8\xfe\x1c\x94\x30\xa4\xb3\x98\x14\x7b\x4c\x57\x96\xd8\xe3\xf3\xc7\x42\xaa\xf6\x3f\x9e\x88\x33\xb6\xc1\x63\x7e\x52\x4e\xb1\xfb\xd7\xfc\xa4\x9c\x0f\x76\xea\x01\x19\xf7\xb2\xc9\xca\x49\xe2\xe6\xb3\xc4\xb8\x63\xeb\x45\xe6\x49\xd8\xf9\x20\x9c\xbc\x73\xf8\x13\xc4\x0a\xfd\x64\x51\x98\xac\x8b\x65\x16\x3b\x99\x8e\xce\xc2\xcb\x84\x89\xb3\xd8\xeb\x0c\xd5\xfc\x43\xf6\xf5\x9a\xe5\xfb\xb3\xa3\x80\x27\xe2\x74\x0e\x85\x91\x9f\x0d\x77\xd7\xa2\x74\x11\xe7\x45\x35\xb8\x92\x35\xcc\x0e\xcd\x6b\xc9\x1b\x9d\x67\x47\xac\x7a\xc9\x7b\xa6\x13\xf1\x21\x21\x29\xb9\xfc\x1c\x90\xcf\x93\xae\xf5\x13\xe1\x19\xdf\xc4\xf2\x7e\x10\xe9\xf2\xb5\x05\xc5\x39\x22\x9d\xe3\xf7\xd5\x70\x0e\x98\x25\x92\x6e\xfa\x93\x0e\xf7\x49\xc1\x0b\x73\x00\x83\x93\x14\xf6\x73\x20\x95\x53\x96\x86\x64\xc2\xe3\xbe\x29\x75\xe8\x1c\x88\x30\xcf\xba\x0a\xce\x81\x7d\xca\xba\xc1\x4e\xf8\x95\x37\xe5\x5c\x9d\xf0\x02\x0f\x2e\x1a\x37\xe1\x72\x1d\x5c\xb9\x66\x0e\x68\x89\x55\xf5\x63\xd2\x37\x39\xc9\xed\x63\xc2\x6d\xb8\xeb\x96\x35\xe1\x36\xdc\x25\xb6\x4f\xb8\x0d\x37\x15\x2f\x99\xf4\x1a\xce\x72\x13\x9a\xf0\x1a\xee\xb9\xfb\x83\xf4\xfd\xd6\x22\xce\x8f\x51\xf6\xbc\xb5\x0d\xf3\x0c\x0c\xb1\x3d\xfc\x42\xfd\xe7\x4f\x2f\xda\xaf\xf3\xe3\x93\x5d\x29\x82\xe6\xf9\x31\xc1\x5e\xf6\x91\x9a\xe7\x77\xdf\xea\xa5\xfb\xfb\xe7\xfb\xfd\x33\xa1\x17\xbf\x3d\x20\x52\x5d\x78\x85\x60\x99\x41\x99\x17\xe7\xc9\x6a\x06\xc1\xbf\x91\x02\x73\xd3\xd4\x09\xaf\xe3\x5e\x93\x3b\x60\x21\xd5\xea\x07\xac\x5a\xea\x0e\x90\x2a\x3b\x09\x66\xac\x16\xba\xef\x83\x13\x3e\xc9\xbd\x7a\x85\x11\xd5\x42\xbc\xa2\x48\x07\x42\x4f\xe0\x81\xb4\xba\xd1\x00\x3e\xcb\x21\x89\xb2\x4d\x3a\x2d\xa7\xe4\x19\x41\x65\x9c\xa4\x67\x9a\xf0\x62\xfe\x1e\xb8\x0f\x08\xd9\xb2\xab\x4e\xb8\x35\x87\x24\xf6\x39\xe1\xd6\xdc\x54\xd0\x6a\xc2\xab\xf9\x1b\xe4\x6f\x8a\x4e\x4c\xfa\x3c\x3b\x74\x63\x9e\x10\x12\x92\x28\xe1\x3c\x21\x24\xa4\xe4\x65\xc3\x50\x97\xa4\xa5\x98\x27\x5d\xb9\x94\x61\x6d\x9e\x89\x27\x37\x0a\xb2\x08\x78\x4d\x72\x40\x98\x27\x32\x01\x26\x5d\xdf\x27\x5c\xab\xbf\xdd\x16\xac\x32\x61\x65\x84\xcd\x84\x55\xd2\xc4\x32\x61\x55\xfc\x09\x61\xd5\x04\xbc\x4c\x58\x45\x4d\x0c\xba\x6d\x15\x9c\x9c\x70\xb7\xfe\xfa\x74\x17\x04\x47\xf6\x17\x94\x99\x86\x66\x0e\x59\xa4\xfd\x7c\x41\x68\x34\x6d\x61\xe6\xd9\xf6\x41\xc9\x84\x46\xf6\xb4\x08\x8d\xe4\x07\x84\xc6\xd0\x5a\x0b\x31\xa7\xa8\xd3\x42\x68\x78\x97\x0b\xa1\x11\xd5\x47\x21\x34\x8c\xad\x85\xd0\xc8\x02\x71\x59\x98\xe3\x07\x24\x8e\x45\x33\x2d\x04\x87\xcf\x24\x3d\xbd\x75\x55\x9e\x67\x21\x76\x34\x3f\x20\x76\x14\x77\x0a\xbb\x7f\xf8\xe9\x83\x79\xe8\x0c\xc1\xb2\xf6\x5e\x30\x66\x75\x7d\x39\x55\xcc\xb3\x72\xb5\xa6\x66\x75\xad\xd6\x6f\x70\xb5\x62\x16\xf0\x18\x0f\xbe\xe5\x4f\xb8\x8c\x7f\xa3\x08\x5d\xe0\x16\x57\xa4\xba\x9c\x67\xe5\x6a\xa3\x3f\xe1\xe6\x37\x7f\xc2\xd5\x1a\xb1\x21\x41\xa9\xd8\xf3\x84\x9f\x79\xb0\x8f\xd4\x3c\x11\x60\x9c\xa3\xb1\x16\x32\x55\x52\xc6\x9e\x09\x6f\xd7\x61\x98\xbf\x28\xca\x27\xb7\xf1\x09\xb5\x55\x53\xf4\xd6\x7c\x61\x9a\x97\xac\x3b\xdf\x04\xde\x22\x32\x3a\x8f\xf0\xcf\x1f\xdd\x98\x27\xae\x61\x5d\xba\xd3\x89\x5b\x98\x94\x60\x73\xae\xec\x58\xfa\xc9\x74\x2f\xfa\xc9\xc4\x0e\xfa\xd9\xd0\x97\x3f\x46\xf0\x73\xd7\x4f\x54\xd8\x72\x5f\xf7\x3f\x7f\x4c\x4c\xe7\x81\xfa\xfc\x49\x3f\x3f\x11\x3d\xb9\xeb\xf9\xcf\x1f\x15\x76\x9a\x33\xb0\x38\x97\x7e\xe2\x5b\xbd\x1c\x58\x02\x46\x3f\xbf\x6f\xf7\x95\x64\xe2\x6a\xa5\x7a\xdb\x13\x57\x18\x05\xb6\x4e\xdc\x60\x4c\xd2\x71\x7f\x91\x6d\x75\xe2\xf6\xa2\x8a\x8a\x13\x97\x17\x05\xa0\xce\xf9\xd1\x24\x69\x91\xe7\x2c\x5f\xcf\x42\xb0\x59\xd0\xb3\x26\xf9\xe1\xbd\x32\xf3\x4f\x88\xef\x4a\xa2\x34\x27\x9c\x9f\x74\x7a\xe7\x9b\xbe\x9e\x35\x8d\x37\x03\xd0\x7e\x1b\xdb\xe2\xb7\x91\x29\x97\xc0\x0a\x13\x15\xc4\xfb\xce\x2f\x1b\x66\xc4\xcd\xfb\xd8\xf6\xde\x30\x59\x23\x31\xec\xab\x42\x98\x48\x81\x13\xe2\x8e\x85\x8a\xc7\x01\x7b\x6d\xda\xb9\x1f\xe3\x71\x20\xdb\xa4\x42\xba\xbe\x07\x10\x72\xb6\xd2\x2e\x1e\x2c\xe9\xdf\xb6\xdd\xf9\x7b\x40\x77\xcc\xac\x4f\x10\xc8\x9e\xff\x2a\x3a\x36\x1e\x28\xa4\xfe\x89\xae\x6d\x3d\x40\x2d\xe7\x78\xec\x1c\xc5\xf1\x40\x59\xdc\x90\xba\xde\x88\x81\xb6\xcc\xb2\x67\x8d\xda\x41\x41\xce\xf0\xf1\x60\xa1\x96\xb6\x13\x2b\xc4\x23\x75\x3e\xe8\xfa\x64\x72\xa1\x63\x8f\xb2\xb2\xd5\x6f\xff\xea\x78\x94\x63\xbd\xb1\x3f\x29\xe0\x55\x79\xa7\x56\x88\x07\xb2\x4a\x7f\x20\xda\xa0\x28\x0c\x4e\x48\x02\x56\xdd\xd2\xd7\x06\x78\xa5\xf5\x79\x27\xd3\x8c\x47\x7d\xe9\x7b\xd4\x37\xf4\x90\xe9\x2b\xb4\x1d\x98\x15\x8f\x46\xb7\xc0\x7d\xb5\x8a\x07\x93\x9a\xc8\x0f\x30\x1e\x1d\x9c\x59\xae\x85\xf1\xe8\xb0\x10\xc9\x87\x2e\x1e\x83\x66\xf8\x9d\x99\x22\x1e\x03\x16\x43\xf9\xaf\xc5\x63\xc0\x1e\x98\xc3\xb1\x3b\x45\xf8\x68\x90\xc7\x5b\x3c\x16\x65\xdd\x65\xdb\xe2\x71\x32\xf3\xf3\xa6\x8a\xf1\x80\x8b\x7a\x90\xf3\x58\x3c\x2e\x64\x54\x4a\xbb\xa4\x44\x3c\xe0\xb6\x19\xd2\x8e\xb5\x88\x07\xac\xce\x41\x6e\x14\xf1\x78\xd6\xee\x8f\xdd\xc7\xc3\x82\x1c\x9b\x5b\xc5\xe3\xc5\x3c\x60\x98\xdc\x0f\x38\xac\xb6\xe1\x65\x3a\xa9\xcd\x8a\xe3\x31\x0b\x61\xba\xd1\x21\xb0\x0a\xab\x54\xfa\x31\x44\x4a\x2a\x3b\x54\x3f\x86\x08\x26\x29\xa5\x7e\x0c\x91\x69\xbc\xb6\xa4\xfd\x3d\xb8\xf8\x46\xdb\x0f\xe0\x3c\x29\x75\x70\x0c\x28\x01\x17\xa4\x40\x8e\x21\xc2\x7f\x4f\x7a\xca\x18\x12\xbc\x1b\xea\x4e\x81\x1f\x03\x6b\x50\x49\xb1\x18\x03\x4a\x4a\x05\x69\x1e\x63\x48\x37\x1f\xe4\x3d\x0a\x8b\x05\xb4\xbc\x0c\x37\xdf\x83\x97\x35\xda\xf6\x4c\xcb\x9a\x58\xdb\x6f\xd4\xcc\x07\x1b\x62\x01\x89\x46\x3f\xc9\x6d\x8f\x82\xe4\x88\xa1\xe5\xb1\x3f\x41\x8e\xbc\xef\xc1\x06\x50\xc7\xfd\xb1\xee\xa2\x87\x31\x30\x88\xb6\x95\xb8\x17\x87\x08\xc2\xd6\xf5\xfb\x66\xe2\x90\xb2\x89\x4d\x78\x18\x5d\x50\x36\x39\x0a\x0b\x1b\x4a\xde\x9f\xd0\x7e\xdf\x4a\xde\xe0\x78\x60\x7a\x69\x3b\x5d\x67\x0c\xcf\xe0\x1b\xc5\x0f\x6e\x3e\xd8\x33\xa7\x11\xb8\xed\x64\xd1\x31\x3c\x40\xc2\xb6\xc3\xe9\x63\xa0\x4d\xaf\xed\xec\x1e\x31\xbc\xac\xcf\x51\x04\xd2\x37\x11\x3e\x9a\x18\x58\x51\x68\xa5\xe9\x41\xe3\xe2\x36\x09\x0a\x13\xce\x9b\xad\x2c\x6a\x1c\x63\x20\xbe\xec\x8b\x4e\x8c\x28\xa3\x1b\x86\x68\x41\x4c\xec\xb4\xfa\x01\x92\x88\xb4\xba\xe9\x49\xac\xcc\x41\xb9\x15\xb6\x31\x56\xb8\x9d\xb6\xba\x4f\x69\x44\x2e\x95\xd0\x76\x71\xdf\x18\x99\x99\x44\xa9\xdd\x62\x1c\xb0\xb3\xb7\x5d\xcf\x32\x46\x46\x9b\xb5\xcd\xc2\x62\xbc\x32\xa3\x9b\x37\x7a\x44\x3a\x91\xcb\xcf\x22\x46\x3a\x48\xca\x4a\x11\x23\xbc\x1b\xbf\x07\x6b\x1b\xe2\x3a\xb6\xdb\xa5\x3b\xc6\x97\x61\x1b\x5b\xb1\x15\xe3\x44\xd6\xd1\x63\xe7\xbf\x8c\x89\xc5\xbf\xdb\xae\x37\x1a\x53\x20\x46\xed\xa2\xa8\xdf\x03\x6e\xc3\x3e\xfa\x29\x4c\x26\x53\xde\xf0\x48\x09\xbe\x62\x6d\x47\x7b\xc4\xc4\x2a\x44\x79\x27\x6f\x8c\x29\x31\x81\xfd\x0e\xb5\xfe\x1e\xac\x4f\xb2\x1e\x70\xd8\xfa\x17\xc9\xbf\xbf\xb7\x57\x3e\x67\x0f\x70\xf2\x41\xd4\x83\xc9\x07\x1a\x80\x74\x61\xd7\xbe\x8b\x29\x4d\xaa\x5e\xe2\xfe\x64\x31\xa3\xd6\xfd\xe0\xe2\x83\xdd\x07\x4b\xa7\xb4\xb6\xb7\x24\x65\x3a\xda\x35\xc1\x26\x73\x94\x5d\x76\x24\xa6\xc2\xe8\xcc\x6d\xf4\x88\x09\xb5\x21\x42\xdb\xe9\xe4\x63\x2a\x84\xef\x0e\xcf\x8e\x89\xb9\xde\x5b\x17\x7c\x2b\x6e\x85\x6d\xa7\x92\xfa\x1e\xd0\xe5\x74\xe8\x0d\xd2\x96\xae\x4d\x6b\x88\xa7\x6a\x3b\x35\x5c\x4c\x48\x42\x1a\xda\xce\x67\x18\x53\x03\x63\xad\x43\x33\x65\xe2\xc7\xba\x03\x89\xbf\x07\x2b\x87\xe2\x9e\x69\x5b\xf5\xc0\xf7\xf9\x4b\xc8\x6e\xf6\x09\x0f\x1a\x96\xb9\xc6\xba\xa0\xde\x89\xa2\x3b\xd1\x51\x4c\xc8\xc6\xf4\x3d\xd8\x7d\x9c\x83\xab\xdd\x22\x40\xba\xa1\x9b\x6a\x3b\x37\x49\x4c\x37\x74\x64\x39\x6a\xb5\x37\x76\x2e\xed\x98\xf9\x98\x1e\x14\xfc\x6e\x3b\x80\xf4\x7b\x80\xa0\xf9\xad\x79\x8a\xe9\xc9\x7c\x43\x00\x7a\x88\x6f\x3b\x6d\x4f\x4c\x0f\x65\x93\xa1\x83\xf0\x90\x96\x0c\x6d\xc3\x84\x7f\x4f\xdb\xee\x8a\x31\x1f\x99\x87\x69\x63\x75\x3e\xe8\x2c\xb3\xdd\x6b\x62\x0e\xd0\x24\x29\xc0\x3b\xe6\xc0\xca\xad\x3b\x48\x26\xe6\x80\xb5\xf4\x6d\x39\x8f\x19\xf5\x43\xbf\x4b\xcc\x9a\x69\x4e\x50\x22\xf6\xed\x49\x1d\x33\x2b\x78\x89\x6d\xe4\xca\x32\x8f\x5b\xa9\x1b\x33\xd3\x6c\xf7\xad\xec\x8c\x99\x59\xe8\x54\xf9\x3d\xe6\xce\x54\x8f\xbb\xca\x45\xcc\xbc\x26\xf7\x6d\x2c\x8f\xf9\x62\xc5\xe9\x6d\x9d\x88\xf9\x62\xf1\x9b\x6d\x28\x88\x99\x1e\xde\x5d\xb4\x25\x3f\xc8\xa1\x96\xb6\x17\x57\xcc\xef\xb1\x8c\x22\x5d\x0f\xb0\xd8\xe0\x07\x10\x96\xfb\xce\x0f\x19\xf3\xcb\xdc\xa0\x61\xe3\x5c\x7e\x59\x22\x2f\x68\xea\x73\x99\xd3\x36\x23\x29\x07\xcb\x71\xef\x0c\x61\xb1\x1c\xcc\x9d\xb5\xd3\xa6\xc5\x12\xe0\x27\xde\x77\x0a\xb0\x58\x02\xb2\x88\xf7\x9d\xad\x31\x96\x70\x73\xf9\x43\x9f\xb0\x70\xec\xce\x9c\x18\x0b\xaa\xad\x7f\x0f\x76\x1f\x91\xb1\xe1\x3b\x81\x41\x2c\x2c\x51\xd5\x77\x30\x53\x2c\x99\x65\x65\xf6\xcd\x22\x96\xcc\xec\x10\xdb\x2d\x37\x96\x72\xac\x37\xf6\x27\xa8\xca\x12\xfa\x76\xce\x88\x85\xd9\xf0\xb3\xe4\xf2\xc2\xd4\xa7\x4d\xf8\x52\x1a\xd7\xb2\x4b\x8a\xc5\xd2\x20\x56\xf4\x1d\xbd\x1f\x0b\xd3\x6a\xed\x72\xb0\xb1\x0c\x0a\x33\xfb\x86\xf2\x3d\xa0\x46\x79\x4b\xbf\x65\xe5\xbd\xd8\xf7\xe2\x58\x10\xef\x1b\xd2\x0e\x5b\x8f\xe5\x64\xe6\xa6\x9d\x92\xf5\x7b\xc0\x4f\x96\x6e\x22\x96\x93\x99\x0f\x77\x4a\xd6\x58\x18\x5e\xd4\x75\x8c\xcb\x0d\xf2\xda\x77\x10\x61\x2c\x37\x08\x4e\xdf\x1a\xe5\x58\x96\x14\xb1\x2d\xa3\xb1\xbc\x84\x71\xd2\xea\x5f\xa2\xa9\xc4\xf2\xf2\x42\x78\xe9\x49\x33\x7d\x59\x69\x7c\x2b\x1a\x62\x79\xef\xf5\xc6\x9e\xfa\xcb\x64\x93\x5b\x9b\x13\xcb\xfb\xae\x07\xbb\xd3\xc9\x84\xcc\xdb\x5d\x3e\x16\x5c\x3f\xbf\x07\x7b\x94\x49\x88\xa5\xf4\x37\xd7\xaf\x32\x21\xfb\xf4\xad\x57\x8c\x65\xb2\x50\xdc\xd6\x52\xc5\x7a\x1c\x1c\x60\x53\xa3\x7a\xc0\x30\xda\xb7\xbe\x2d\xd6\x83\xb9\x6a\xb6\x6f\x5f\xac\x07\x0a\x11\xf7\xed\x58\x1c\x6b\x04\xda\xa7\x9d\x83\x39\xd6\x58\x79\xad\xdc\xf7\xb1\x1a\x1b\xfb\xe8\xfa\x84\xb5\x96\xb6\x5b\x64\xac\x29\xaf\xd2\xc1\xbb\x0f\xd6\xa7\xeb\x5b\x25\x17\x2b\x0a\x38\x84\xbe\xdd\x68\x62\xad\xbc\x89\x6e\x7f\xa2\x58\x91\xef\x3a\xf4\x9d\x7c\x31\xd6\xce\xdc\xec\x59\x8b\x5b\x39\xbb\xb6\x81\x3b\xd6\x41\x8d\x5b\xf5\x03\x52\x9f\x5c\x76\x1f\xb0\x0b\x84\xbc\x73\x62\xc7\x3a\x56\xa7\x02\xd0\xc9\x13\x9b\x05\xa0\xa5\x4f\xdb\x86\xc6\x58\x4f\x54\xdb\xec\x3b\x57\x72\xac\x2b\x27\xc0\x36\xca\xc5\x7a\x92\x9f\x1d\x7a\x83\xd1\x1f\x2d\x6f\xac\xae\x37\x8b\x91\xee\xd2\x77\xb1\xde\xb4\x34\x45\x3f\xe0\xc4\x76\x3c\x48\xac\x2f\x79\xd1\xa1\x6d\x58\x28\x5a\xf6\x95\xa5\xd2\x20\xd6\x25\xa3\xd7\x89\xb0\xa5\xbe\x8b\xb6\xc5\x76\x4c\x56\x01\xdc\x47\xa5\x05\xa6\xcc\xdc\x16\x81\xd8\x02\x84\x86\xbe\x33\x02\xc6\x46\x11\xa9\xef\x92\xcb\xdf\x83\x8b\x0f\x8e\xfd\x80\xbc\xa8\x6e\xfa\xd4\x50\x17\x30\xf4\xba\xcf\xce\x77\x01\xe2\x83\xdd\x69\x65\xde\xcc\xba\x31\xb9\x55\xb8\x86\xf5\xad\x6c\x8a\x8d\xb5\x6e\x7a\xdd\xb2\x60\x63\x71\x0e\x55\x1b\x88\xad\xa2\x7a\x56\xdf\x7e\x22\xb1\x35\xb2\x89\xad\x0b\x8a\x6d\x25\x44\xdf\x85\xda\x63\x43\xe6\xed\xef\xc1\x02\x72\x1b\x9d\xc3\x6e\xf9\xaf\x21\x83\xd1\x27\xe8\x6e\x00\x9d\x9d\x33\xdd\xc2\x5c\xbb\x58\xf8\x61\x2b\xbe\xbe\x07\x18\x76\x67\x00\x8b\x8d\xc1\x82\xb2\x31\xc4\x76\x27\x86\x6a\x0b\x1e\x37\xa4\x78\xc5\xea\xc6\x06\x37\xe2\x78\xec\xf2\x66\xb1\x3d\x48\x67\x2c\x4f\xb8\xd8\xde\xb0\x1e\xec\x4f\x26\xaf\xe7\x5b\xc9\x18\x3b\xb5\x3f\x7d\x27\x0d\x89\xfd\x40\x1d\xd2\xde\xf6\x5a\x3e\xb2\x0b\x10\x6e\x98\xf6\xc8\x92\x28\xbb\x46\x6b\xec\x91\x49\xea\xda\xbe\x91\x74\xd4\x01\x0d\xca\x03\x1e\x7b\x26\x85\xd9\x25\xe3\x63\x67\x9d\xbf\xde\xf6\x15\xa5\x17\xd6\xf6\x95\x90\xdd\xeb\x43\x78\x6c\x10\x76\x54\x10\xf8\x1e\xec\x4f\x56\xb2\xb1\x9d\xeb\xfe\x7b\xc0\xfa\x70\x1b\xe9\xfa\x58\x05\x83\x83\x3e\xe9\x8d\xf9\x3c\x93\x1e\xb0\x9e\xd6\xc6\xb1\xbe\x0e\xb2\xe4\xe1\x7e\xee\xba\xd6\x7a\x23\xb3\x86\xc7\xe6\x81\xfd\x5c\x35\x83\xb5\xfc\x73\xf0\x93\x4d\x0c\xfa\x49\x8e\xbf\xd3\x65\xc7\x7e\xf2\x98\x4a\x62\xee\x8b\xa3\xf5\x2d\x9b\x74\x06\x97\x76\x09\xb7\x9d\xf1\x8b\x5d\xf2\x70\xc7\x51\x6f\x5b\x3b\x1a\xfb\xc3\xbd\xde\xe9\x27\x63\x7f\xd6\xbc\xb6\x68\xd2\x9f\x55\x21\x74\x53\xe0\xfe\x86\x05\x8e\xaa\x07\x1c\xa4\xeb\x01\x53\xf1\x6f\x25\x74\xec\x6f\xe7\xda\x36\x63\xed\xef\xcb\x4e\x87\x3a\x45\xce\xe0\x5d\xf0\x3d\xf6\xb9\x6a\x63\x6e\xd9\xa5\x2f\xfa\x32\x8e\xbf\xb9\x7d\x8d\x48\x9c\xde\xd9\x7e\xe2\x88\xd7\x4a\xee\xbf\xe0\x3f\xf2\xe0\x1b\x5b\xe7\x32\xca\xcd\x84\x2d\x7b\xcb\x56\x99\x9f\xb4\x2b\x66\x47\x96\xbb\x08\x7d\xd7\xfd\x89\x2c\xb4\x10\xfa\x0e\x30\x8f\xa3\x15\xbe\xb1\xa9\x33\x93\x5e\x86\x2e\x81\x7c\x9c\x2b\x68\x69\x9f\xe0\xf1\xd0\x3e\xd4\x34\xd3\xe7\x61\xac\x4c\xdc\x7d\xd0\x95\x75\x6c\x0f\xa4\x38\x5e\x46\x81\xa4\x4d\xae\xc7\x9b\xe9\x22\xbd\x49\xdc\x78\xfb\x8a\x74\xdd\x9d\xd2\x17\x6f\x6c\xff\x94\x48\xc7\xb6\x30\xb6\xa7\x46\x1c\xef\xca\x44\xb2\xd5\x21\x63\xde\x8c\x85\x6d\x7a\xf0\xb4\x7f\x7b\x70\x1e\x81\xa3\x6c\x09\xeb\x3c\x22\xdd\xc5\x37\xb6\x9d\x47\x5f\x71\x16\x79\x3f\x98\xcb\x35\x7f\xc1\xe3\x0c\x63\x39\x94\xef\x3e\xe2\x45\xe1\x79\x93\xc9\x93\x05\xa7\x87\x34\x90\x67\x66\xe4\xe0\xae\x8f\x13\xcf\x02\x39\x6e\xec\xda\x2d\xf1\xac\xcb\xd7\x6c\x8b\x4b\x67\x85\x47\xd6\xb1\x83\xd9\xe3\x59\xaf\xf5\xc6\xee\x74\xbc\xf4\x61\xd8\xe4\xe9\x42\x31\x87\xa0\x0a\x16\xf1\x6a\x64\xf8\x3b\x89\xf8\xf7\x80\x84\x74\xdf\xac\xaf\xb6\x9c\x76\x86\xdf\xa0\x12\x77\x23\xf1\xd5\x2a\xab\x7e\x67\x3d\x40\xd5\xef\x63\x7b\xc5\x7d\x0f\xa8\x09\xdd\xe7\xf1\x42\x52\xff\x78\x68\x2d\x57\xeb\x54\x98\xec\x23\x7c\x21\xad\x7e\xc8\xbb\x76\xe3\xf7\x80\x97\xbe\x8d\xb8\x57\xeb\xac\xde\x11\xf5\xc6\x20\xeb\xd9\x14\xed\x42\xc6\xf9\x78\xec\xfa\x92\xdf\x03\x78\xf2\x04\x2f\xff\xa2\xdd\xae\xa9\x0f\x94\x7e\x3e\x76\x6e\xdc\xef\xc1\xa4\x58\xa1\x89\xd1\x1b\x73\x27\x05\xfd\x1e\x74\xa6\xf0\xd4\x1b\x74\x4d\x94\xd1\xe0\x42\x5a\xed\x78\x88\xb6\x5c\xcc\x69\x7d\xec\x54\x50\xdf\x83\x93\xb1\x65\x0b\xea\x4f\xa1\x55\xb7\x6f\x31\xeb\x8d\x8d\xba\xf4\x4d\xf2\xdf\x42\x33\x9d\xe8\xe6\x8b\x42\x37\x21\xef\xc0\x87\x38\x99\x40\xbc\x48\x77\x3c\x99\xbc\x5b\x3a\x92\xd9\xe9\xed\xb0\x8d\x2a\xdf\x83\x8e\x17\x9a\x7e\x9f\x54\x14\xeb\x8b\x25\xda\x76\x3f\xe8\x54\x7a\xeb\x93\x78\xff\x9b\x6a\x7d\x76\x1a\xf7\xb7\xad\xea\x7b\x40\x0a\xb4\x0f\xfa\x44\xda\xe7\x6f\x1a\x71\x3f\xa0\x99\x57\x7a\x97\xd9\x69\x09\xd5\xfd\x7e\xf6\xca\x7d\x8b\x7a\x03\xe2\x60\xea\x49\x7d\xc0\x7f\xaa\x79\xe6\xa8\xf9\xd0\x92\x7e\x33\xa3\xa4\x24\xcc\xd9\x07\xd7\x1a\x35\xc6\xb9\xa6\xa5\x4f\xe0\x11\x9d\xb6\xbf\x4a\x9c\xfd\xe2\x3c\xab\x16\x7f\xf1\xbc\x45\xad\x15\x41\x1b\xd2\x78\x4f\xa4\xf6\xfd\x51\xd0\x4d\xe4\xf6\x6d\xdb\x50\x1a\x27\x53\xf7\x66\xd9\x72\x66\x5f\x01\x16\xd5\x6f\x60\x9e\xdb\x9c\xf7\x3d\x00\xf3\xf3\x0b\x73\xa5\x94\xdd\x83\x0e\xba\xd5\x48\x09\x38\xc7\x32\x84\x6d\x9c\x9e\xe3\xa0\x7f\x90\xa0\x37\xd6\xc6\x6b\xe2\xcc\x09\x2b\xd3\xd9\x44\x4e\xd8\xaf\x8b\x7f\xbf\x77\xf5\xff\x09\xdb\x9a\x63\x39\x24\x6c\x01\x67\x0e\x3a\x20\x48\x27\x36\x07\x0d\xc8\x3a\x97\x73\xc0\xa8\x91\x74\x77\x5e\xce\x44\xf9\xf0\x1a\x1e\x3a\x96\x55\xcd\x90\xa9\x18\x76\x68\x51\x9c\x63\x65\xf4\xaf\xff\xeb\xab\xe1\xbf\xce\xff\xf8\xbf\x5f\xbc\xfe\x7d\x71\xfc\xf3\x67\xfd\x0b\xb5\xf2\x7e\x5e\x1e\x3d\x6f\x28\x3e\xb7\x1b\xbe\x4b\xf2\xfe\xf7\x83\xf0\xa1\x4f\x2e\x77\x75\xb1\x04\x83\x5a\x6e\xb7\x30\x25\xe2\x6e\xb9\xfd\x0d\xf2\x6f\x6e\xeb\xed\x71\x7c\xd2\xf0\xfa\x97\xb6\x8d\x63\xb7\x3c\xc3\x2d\x94\xa1\x77\xcb\xeb\xde\x98\xbe\x2b\xa9\xc5\xbd\x4d\xd6\x0b\xd8\x2d\xd3\xbd\x21\xd3\xc2\xb6\x9f\x1f\xe1\x93\x52\xf6\xbf\x83\xf9\xd2\xf7\xbc\xe3\x77\x34\xf7\xbf\x58\xab\xfc\xca\x8f\xe8\x59\x44\xe0\xb5\xbd\x57\x3f\x02\xe6\x36\xf4\xa9\x62\x3c\x47\x3a\x04\xd9\x74\xb0\x74\xad\x5a\xaa\x5b\x40\x79\x36\x2c\x52\xd0\x1c\x13\x5d\x97\x95\xf0\xff\x48\xe1\x71\xdb\xcb\xb6\xa8\xb6\xa9\x36\xe6\x94\xea\xda\xe1\x94\x4e\xb5\xc1\xfd\xa7\x28\x5d\xfe\x91\x3e\x7a\xb2\xff\x5d\xe5\x87\xdc\xe6\xb9\xa0\x7e\xe1\xa1\xb0\x8a\x23\x0d\xaf\x0d\x5a\x16\x85\x35\x1d\xe9\xc3\xa2\xfd\xef\xb7\x84\xc3\x5f\x9d\xb7\x9b\xc0\x90\xe4\xad\x7f\xa4\xcb\x3d\x42\x52\x96\xa3\xf8\x91\x6e\xf7\x88\x80\x33\x39\x83\x1e\x30\x15\xec\x7f\xc1\x9e\xe4\x5b\x7f\x40\xd7\xb0\xff\xbd\xd9\xd6\xd4\xf6\xba\x8d\x33\xd9\x5e\x1d\x07\xae\xad\xfb\xdf\x82\xe1\x86\x9a\xb4\x71\xa8\xf6\x1e\x14\x6b\x73\xa0\xda\xfb\xfa\x17\xe6\x60\x55\xfe\x3c\x50\x22\x7d\xff\xcb\x89\x6c\x2f\xb2\x03\xb5\xcc\xf7\xbf\x9c\xc8\xf6\x02\x0a\x6f\xda\x6d\xe1\x65\xe5\x77\x85\x84\x44\x9f\xf3\x78\xc0\x1f\x7d\x7b\xf5\xc4\x23\x45\xb5\x7c\x4c\x6b\x28\x8c\x31\x1e\x69\xb8\xe9\x84\x9f\xc1\x6e\xc9\x4d\x2d\x70\xa3\xaa\x2a\x86\x14\x8f\x96\xd5\xd6\xc6\xd7\xa1\x9b\xba\x67\xd1\xd1\xb4\x5d\xcf\x62\x28\x7b\xd3\x62\x28\x19\x5f\x15\x35\x55\x37\x9d\xff\xfc\x19\xad\xbb\xe9\x72\xd3\x8b\xaf\xc2\x6e\xaa\x1a\x2b\x20\x85\x64\x71\x87\xf5\x74\xd3\xf5\xcf\x9f\xae\x58\xcf\x18\x9a\xbf\x6a\xc8\x96\xba\x9d\x5e\x62\x68\xfe\xaa\xe1\xab\x7d\xac\x23\x24\xdf\xfd\x2f\xa3\xb4\xd5\xe2\xb9\xc3\x8b\x38\x2a\xaf\x7a\x0c\xa3\xbb\x6d\xb0\x4d\x83\xdd\x02\x62\xf8\x08\x63\x57\x6e\xac\x18\xe3\xa6\x21\x31\x46\xfa\x39\x6d\x9f\xc2\x18\x63\x73\x5b\x67\x9b\xbf\xbb\xdc\x06\x4f\xe1\xb2\xfd\xa3\x62\xac\x1a\x2e\x52\xae\x55\x0c\x4a\x8c\xb5\xba\x0d\x9e\xf0\xf2\xce\x8f\xd1\x90\x8c\xac\x70\x2f\x2f\xd3\x18\x9b\x10\x2b\x32\xa7\xd8\xf0\x78\xcd\x7d\x32\x91\x43\x39\x34\x5e\xf7\x77\xf0\xcf\x2d\xf2\x07\x8f\xb1\x7b\x9e\xd0\xc1\x14\x39\x61\x47\x68\x13\xf7\xbf\x9c\xe7\x3e\x6d\x31\x76\xcf\xb3\x73\x9e\x9b\x4e\xc6\x38\x0c\xcf\xc1\xef\xba\xbe\x7b\xfc\x1d\x84\x98\xd2\x84\x2a\xe9\xd0\x77\x20\xd0\x5f\x9f\x7b\x9e\x29\xea\xe4\xa4\x78\xfe\xf3\x47\xb1\x5e\x31\x8d\x47\x2d\x88\x85\x8b\xaa\x19\x17\x4d\x0a\x63\x82\xc7\x4d\xdc\xb6\xae\xef\x41\x73\xdb\x87\x98\xc1\x83\x9d\x97\x9b\x1e\x34\xa9\x47\xf1\xe4\x08\x82\x19\xaa\xb2\x01\xc7\x74\xbd\x6a\x83\x05\xb5\x2a\xdb\x6d\xcc\x3e\x3c\x19\x65\x33\x54\x8d\x3e\x66\x1f\xef\xdc\xe1\x34\xa6\x23\x97\xc5\x01\x22\xae\xe4\x5d\x59\x58\x63\x16\x03\x88\x79\x30\xb0\x6b\xb3\xed\x98\xc7\xad\xb6\xeb\xc3\x75\x85\x58\xc5\x7c\x69\x4f\x33\xee\xf4\x87\xdc\x00\x63\x7e\x3c\x47\xf0\x52\x57\x8b\x8f\xf9\x15\x48\x32\x04\xa2\x43\x09\x72\x62\x9e\xc5\x6d\x90\x46\x14\x6e\x1e\xcb\xa1\x3e\x0b\xd2\xd0\xe7\xed\x3f\x16\x4b\xd5\xc6\x95\xfa\x7e\xc7\x7f\x73\x87\x58\x9a\x16\x57\x3e\x68\x75\x65\xb7\x8d\xa5\xbb\xe9\x83\x4e\x57\xe4\x63\x84\x69\x76\xff\x5b\xd0\xe1\x9e\x62\xf1\xd2\x58\x7b\xbd\x2a\x2f\x79\x44\xd5\xf2\xfd\x2f\x06\xd3\xd6\x54\xcf\xbe\x1e\x68\xd2\xa2\xab\x38\x51\xac\xd0\xf9\x54\xa5\xf4\x8e\x28\x5a\xbe\xff\x7d\x40\x0e\xf7\x1c\x6b\xd5\x8e\x56\xdc\xbc\xa2\x82\xa0\x63\xf5\xf9\x46\x99\xe5\x0f\xb7\xf6\x24\x9b\xcf\x77\x6b\x00\x96\x8e\x14\xca\x12\xec\x7f\x21\xf2\x29\xd1\x6b\x1c\x53\xc7\x0d\x39\xc0\xbf\xb6\xb6\xe4\x58\x4a\xad\xff\x2b\x41\x36\x5e\x3e\x8d\x17\x7c\x19\x95\x13\x31\x22\x8d\xe2\xfe\xb7\xb0\x86\xf0\x5e\xfb\x65\x62\x83\x1c\x84\x1f\x0d\xde\x0b\x7c\xbb\xe0\xf2\x22\xb5\x41\xea\x82\xd9\x2b\x31\x38\xbe\x0c\x09\x50\x86\xb5\xf8\xfa\x60\xbd\x37\xad\x13\x22\x8a\x88\x51\xdb\xff\x96\x7f\xfe\x64\x25\xb1\x8c\x88\x13\xdb\xff\xc6\x7f\xfe\xe4\xb2\x1d\xc1\xe3\xbc\xa6\x9a\x98\xe4\x77\x0b\x0b\x71\x3e\xfe\xea\x89\xbf\xa1\x53\x11\x56\xa2\xfd\x6f\xf9\x0d\x58\x49\x87\x30\x25\x1d\x9f\xd8\x23\x47\xf9\x74\x08\x8e\xe9\xf8\xe0\xb8\x7d\x48\xbe\x9f\x5d\x2d\x21\xfc\xd0\xb4\x74\x68\x51\xe9\xf8\x16\x55\xb7\x70\x91\x0e\xa1\x5d\xa2\x49\xa9\x0a\x14\xe9\x08\x3f\xfd\x01\xb7\x54\x1e\x28\x41\x12\xd9\xff\x62\xcb\x14\x52\x9c\x8e\x1c\xd4\x36\x10\xd8\xa0\x79\x0c\xcf\xe3\xe3\xbb\x4d\x95\xc1\xd3\x31\x86\x9b\x90\x98\x53\x1e\xeb\xe9\x18\x97\xdb\xee\x7f\xfe\xd4\x2c\x60\x88\x58\xa7\xe3\x23\xd6\x2a\x9e\x98\x7c\x0d\x4a\xc7\xac\xff\xfc\x51\x36\xe9\x84\xfb\xc5\xfe\xf7\x04\xe7\xd6\x47\xd3\xdd\x4d\x74\xb7\xf6\x3e\x59\x80\x48\x01\x0e\x75\x55\x59\x7c\x53\x98\x6e\xc3\x3d\xa4\xaa\x02\x40\x0a\x3a\x30\x29\x4c\x7e\xb7\xa9\x52\x8a\x12\xf9\x52\x84\x0a\xfb\x50\x78\x58\x8a\xf1\x74\xdb\xfc\x48\xee\x3e\xd6\x29\x26\xad\x2c\x22\x13\x58\x0d\x6a\x92\x60\x9a\xe2\x27\x78\x75\xc5\x73\xa6\x58\x6e\x37\x81\x50\x2b\x1b\x7f\x8a\xdd\x13\x81\x7e\xeb\x50\x75\xce\x64\xc6\x9c\x22\x9c\x96\x0e\x23\x29\x14\xbf\xfb\x5f\x88\xf8\x62\xcc\x29\x9e\xd9\x6d\x1d\xb3\xdc\xf0\x8a\x97\x17\x70\xad\xa9\x68\x05\x8f\xbb\x04\xed\x3f\x94\x02\x20\xf9\xfe\x95\x78\xff\x0a\xba\x4b\xa5\x24\xf9\x3f\x25\x78\xa6\x06\x55\x72\x49\x29\x9c\x6e\x43\xd1\x4b\x55\xba\x48\xbe\x67\xa5\x04\xdd\x41\x50\xe9\x85\x94\x62\x77\xdb\x40\xdb\xe6\x7b\x29\x45\x8f\x87\xc8\x92\xa0\xdc\xf6\x29\x89\x80\xa6\x84\xb3\x11\x94\xdb\x3c\xa5\xe4\xef\x32\xbf\x13\xae\xa4\x9c\xdc\x56\xd9\xa6\x35\xe4\xcb\x6d\x37\xda\xb4\x7d\x29\x7b\x0d\x85\x7d\x66\xf5\x59\x8a\xdb\xd8\xe7\xe6\x46\x09\x17\xc4\xfd\x2f\x04\x85\x7d\x7d\x4e\xbe\x2a\xa6\xd4\x21\xcc\x0c\xad\xbc\x7b\x05\x1d\x99\xeb\x0c\x30\xc9\x09\x09\xa2\x53\xab\x87\x3a\x34\x3a\xa4\xf3\xe3\xa5\xca\x59\x90\xd2\xa3\xf3\x98\xa0\xb3\x0c\x2a\xb0\x98\x8a\xb4\x1c\xa9\x30\x1b\xaf\xf2\xea\x25\x54\xae\xdd\xff\xd2\x01\x71\x5f\x4c\xe9\x6a\xb2\xff\x2d\x54\x5d\xd5\xdd\x16\x93\xda\xe0\x8e\x34\x94\x3f\x23\xbf\x71\xaa\x0d\xdb\x9a\x95\x56\x39\xc3\x4e\xbb\xff\x0d\x6c\x8b\xbb\xad\x79\xbc\x56\x18\x3c\x33\x76\xdb\x78\xd5\xf6\x1d\x18\xf9\x71\x7f\xbf\x2f\x37\x31\x6e\x67\x11\x87\x3c\xb5\xe1\x79\xc2\xe8\x1e\x94\x21\x25\x23\x08\x73\xff\xcb\x04\x96\xfb\xfe\x99\x11\x7f\xb9\xff\x85\xeb\x90\x02\x35\xf2\xbc\xdc\xe7\x85\xec\xb0\x12\xe4\xf2\x94\xa2\x27\x4f\x94\x66\x09\x61\xcb\x26\x19\x2e\xf1\xfb\xdf\x8f\x27\x4a\xea\x2d\xe6\x53\xe5\x38\x08\x94\xad\x15\x29\xbe\xb8\x16\xb0\x8b\x18\xc4\x3f\xca\x51\x82\xda\x50\x36\x39\xa8\x9c\x75\x39\x7a\x52\xdb\x77\x9d\x88\x41\x55\x9c\xcb\x31\xdc\xe7\xa0\x07\xfa\x16\xb3\xcb\x31\xa6\xda\x4e\x2e\x21\xab\xed\x74\x1b\xd2\x3f\x04\xd5\x17\x2e\xc7\x75\xba\x6d\x39\xb1\x6b\x2e\xf7\x50\xdb\x7d\x7e\x4b\x77\xd3\x73\xab\xe9\x21\x34\x37\x2b\x2e\x41\xa4\xaa\x84\x8f\x54\x59\xc0\x28\xe1\xb8\xdd\x04\xab\xcf\xf6\x6e\x3a\x4a\x08\x6e\x0b\xec\x72\xdf\x90\x4a\xd0\xcd\xb1\x04\x84\x5a\x06\x55\x7e\x2d\x21\xfa\xbb\xc8\xef\xb6\xcc\x5f\x42\xd2\xca\xc3\x87\xc1\x59\xf2\x53\xc1\xb5\x7b\xff\xfb\x2d\x4e\xe2\x68\x09\xba\x73\x15\xdc\x90\xa5\xbf\x3f\xe8\x2d\xb5\xff\xbd\xbe\xa6\xa4\xb1\x2e\x2f\xfb\x8a\x68\x52\x87\x8f\x36\x35\x3c\x3c\x75\xfb\x84\x94\x68\x68\x31\x7e\x22\x2b\x45\x55\x31\xb7\x2b\x91\x39\xdd\xa4\x4e\x2c\x51\x67\x84\xee\x57\x59\x62\x7d\x81\x5d\x62\xff\xcb\xd0\xeb\x1d\x76\x5a\x7c\x9f\x2c\xb8\x4f\xc6\x20\xe6\x5a\xa2\x34\x5a\x25\x9e\x28\x0c\xa7\xa0\xf2\xff\x7f\xf9\xb6\x44\xdd\x84\x4a\x44\x7d\xe0\xa0\x8c\xed\x25\x1a\xc3\x22\x31\x4c\x99\x3a\x4a\x9c\x9e\xe9\x27\x3d\xc8\xb1\xf1\x28\xe9\xd0\x67\x09\xba\xf1\xac\x08\xaa\x92\x8c\x0e\x60\x4e\x31\x78\x87\x92\x14\x09\x25\x21\x9b\x7c\x50\x7a\x9f\x02\x4a\xbf\xff\xe5\x34\xb7\x2e\xa4\x24\xe9\x34\x4a\x62\x45\x41\xa5\x8c\x2c\xf0\xd0\xdd\xff\xe2\x30\xeb\x36\x54\xb2\xd1\x2f\x7f\xe8\x97\x95\x79\xb4\x64\xf1\xc2\x42\x05\xdb\xd0\x5d\xae\x64\x5d\xd8\x0a\xdc\xe5\x63\xf0\xfe\x65\xe9\x61\x4b\x7e\x3f\xfc\x93\x8e\xaa\xf8\x0a\x58\x0a\x43\x08\x0c\x95\xe2\xc3\x55\x60\xdd\x0a\x71\x47\xd8\x95\x22\x2d\x55\x29\xc8\xf2\xa9\x40\xe4\x02\xaf\xdc\xfd\xef\x85\xcf\x76\xf0\x50\x29\x62\x4f\xa5\x3c\x04\xd8\x96\x2c\x4a\x95\xd4\x51\x2a\x6c\x15\x59\xc9\xb9\x0a\xc2\x4e\xf6\xbf\x40\x5c\xd5\x89\x29\x55\x9c\xbe\x54\xa4\x45\x0d\xba\x2f\x94\x5a\xfd\x5d\x05\xa0\xc5\x66\x4a\x6d\x6e\x83\x6d\x3b\x2b\xa3\x55\xa9\xc6\xdc\x0a\x97\xf5\x9c\xb7\x0a\xb7\x54\x43\xb3\xa2\x2a\x46\xd0\x4d\xb0\xd4\x29\xb0\xd4\xc9\x90\x84\xcd\x14\x4a\xf3\xc1\x6c\x48\x62\x1c\xa4\x4d\x2e\x4d\x52\x55\x69\x88\xa0\x18\x2a\xc8\x5e\x5a\xd4\xae\xb7\x08\x76\xa8\xec\x93\xa5\xe9\xe6\x50\x1a\x3c\xfa\xb3\x02\xa7\x4b\x4b\xcd\x6d\xfd\x9f\x3f\x59\xd9\x2f\x4a\x4b\x8f\x9b\x40\x36\x55\x76\xa3\xb4\xac\xe5\xd1\x92\xec\x14\x4b\x05\xa5\xe0\xf7\xbf\x0c\x27\xd9\xc2\x58\x69\xc3\x7d\x32\xed\x91\x42\xf3\x4b\x33\xbe\xa3\x5e\x75\xce\x9b\xfd\x96\x36\x3d\xdc\x84\x65\x4d\x85\x84\x4b\xf7\xf1\xea\x3c\x5e\xca\xc6\x56\xba\x44\xe9\xd2\x3b\xe3\x56\xf6\x75\xa5\xf4\x2e\x2a\xdd\x69\xa5\x57\x1a\x8f\xd2\x25\x66\x97\x7e\x72\x17\x74\x4e\x50\x7d\x72\xff\xcb\xa0\x14\x71\x8c\x3e\x2f\xb7\x3d\xb8\xaf\x6e\x68\xa2\x5a\xe3\xfe\x97\x48\xb6\xa5\xfa\x32\x7c\x9a\x07\x4e\xf3\xf6\x3b\x3b\x0a\xf4\x01\xfb\xdf\xca\xcf\x36\xde\x8e\xe6\x36\xc6\x61\x28\xbe\xbd\x0c\x59\x84\x0a\x2a\xa0\x65\x45\xaa\x97\xf1\x6a\x01\xe3\x25\x3a\x48\xb8\x38\x3d\x1c\x02\xab\x73\xd1\x96\x23\xbc\x78\xff\x5b\x98\x03\x6d\xef\xc1\x69\x39\xe0\x3c\x19\x55\xb2\xf5\x9a\xe5\xd4\x7d\xac\xa0\x72\x4a\x2e\x3a\xb0\x97\x89\x00\x4a\x41\x64\x15\x26\x2d\x57\xd3\x39\xbf\xe8\x81\xab\x4c\x11\xe5\xd2\xcd\xb0\xa0\xb6\x40\xfc\x44\xa0\xdd\x76\x8a\xb6\x33\xa3\x7f\x50\x7a\xa4\x72\x99\x57\xc2\x15\xf6\x6b\xdb\xb0\xbc\x0c\xaf\xeb\x61\x86\xb7\x2d\xd1\x97\xfb\x10\x86\x21\x4f\x78\x56\xf4\x65\xb9\x93\x86\x43\x82\xe7\xac\x68\xca\x82\x8c\xbf\xfb\xdf\x15\xbe\xa3\xcf\x24\xbc\x96\x9b\xc2\xab\x54\x14\xe5\x9e\x9a\x25\x92\xe3\xc6\x20\x5d\x6f\x41\x26\xd0\xf5\x6f\x85\x4c\x95\xb7\x5e\xa1\x3c\x4d\x2b\x40\xe6\xcc\x18\xa4\xe7\x2e\xc8\xa5\xb8\xff\xfd\x2e\x17\x5e\xdc\x2b\x45\x45\xa1\x27\x4e\x56\x12\x84\xf2\xca\x20\x53\xe0\x27\x9e\xa5\xe9\x2d\x6f\xd1\x1e\xbc\x85\x7b\xa0\xd3\xfa\x56\x9d\x82\x97\xf6\xdc\xb2\x2f\x2c\xe5\x35\x07\x7a\x2b\x83\x89\x84\x0e\xaf\xf1\xf9\xfd\xf0\x39\xcb\x66\x50\xac\x3f\x2a\x48\xcc\xf5\x75\xb9\x81\xf2\xde\x02\x18\x3c\x8b\xf3\x8e\x8b\x39\xca\xfb\x78\x71\x2c\xa9\xa4\x70\xf9\xf2\x4a\x8f\x5d\xe0\x2d\x94\x15\x9f\x4a\xf7\xe3\xfd\xef\x40\xd3\x5e\xf7\xb4\xbc\x88\x30\xdd\x90\x8b\xe8\xfa\xb4\x10\x30\x29\x04\x94\x7d\x93\x2e\xd3\xac\x10\xb9\x73\x72\xd3\xe6\x4c\x23\xc3\x24\x32\x14\x91\xee\x29\x65\x75\x99\x08\xbb\x0c\x45\x84\x6f\x3e\x6e\x7b\x56\x9b\x86\x33\x2d\xa5\x63\xb4\x55\x16\x65\x3e\xdd\x6d\x03\x39\x5b\xd5\xf4\x0a\xcc\xf3\x65\xbc\xd4\x9e\x4a\x3d\xb4\x82\x7a\x94\xc6\x42\x17\x6d\xb7\x0d\xb7\x21\x1f\xde\xf6\x0c\x3c\xaa\xc5\xf9\x0a\x71\x3e\x86\xb2\xe3\x9e\xeb\x71\xbf\x6e\x9b\x6c\x2b\xbb\x6d\xba\xcb\x89\x2e\xb7\xe2\xbc\xc2\xd3\x76\xff\xfb\x7e\x4d\x9b\xb6\xd5\x20\x2a\x5b\x03\x1c\x63\xb3\x27\x89\x08\xdb\xfd\xef\x47\x12\x55\xe8\xb6\x06\xa9\x63\x6a\xe8\x04\xe5\xd6\x35\xd5\xa0\xbb\x51\x0d\xbc\x1b\xed\xe0\xb6\xa3\x86\xe1\xe1\x78\x37\xd2\xf9\xaf\xe1\x76\x9f\xbc\xde\x95\xa1\x69\x7a\xe1\x61\x2d\x7c\xa4\xbf\x12\x7a\x6b\x78\x6f\x7d\xfa\xb2\xde\xc8\x3e\xaf\x35\x4a\x1d\x59\xe3\xf1\xe1\xad\x0a\xa1\xd5\xa8\x9b\x61\x8d\x9f\x38\x90\x55\xae\xaa\xc6\x2e\x70\x42\xdf\x14\x5d\x96\xa8\x46\x2f\x30\x22\x33\xe2\xf6\x00\x3a\xaa\xa5\xef\x1a\x51\x96\x24\x08\xc5\x6a\xd4\x71\xad\xd0\x37\xc5\x50\xb7\xc4\x51\x61\x40\xdf\xff\x22\x24\xaa\x6e\x91\xa3\xa6\xac\xe1\xa0\x9a\xf9\xc8\xe2\x5e\x41\x3a\xd5\x27\x2c\xdf\x61\x28\xf5\x6b\x4d\x3a\xe7\x75\x05\xa6\x49\xf5\x5c\xd3\xeb\xf1\x5e\x8e\xb7\x35\x2b\x35\xe9\x26\x50\x19\x19\x3d\x94\x1f\xa1\x66\x99\x22\x6b\x66\xc6\x5d\xe5\x9d\xac\xd9\xeb\xcb\x8b\x1c\xed\x33\x54\xf3\xad\xf1\x32\x6c\x48\x4d\x35\xd6\x6a\x96\x1f\x44\xcd\x6f\xf8\xe7\x4f\x51\x46\xc4\x0a\x7b\xcd\xfe\x17\xe7\xa4\x6e\xb2\x5f\x8b\xf7\xb5\x1c\x6c\xdb\xb2\x43\x2d\x12\xf7\x6b\xf9\x98\x77\x51\x62\xfb\x5a\xd2\xed\xa6\x87\x9f\x6d\xa8\x14\x29\xf9\x6b\xf9\x10\xbc\x28\xd1\x4c\x2d\x9e\x64\xe1\x24\xb5\xb6\x32\x3d\x18\x02\xd8\x83\x32\x3b\xd4\x32\x5f\xb7\x71\xcf\x37\x65\xaf\x96\xcc\x2b\x24\xf3\x18\x94\xcf\xa0\x56\x89\x1c\xb5\x7e\xfc\xa6\x48\xeb\x52\xab\x4c\xd9\xb5\x22\xde\x23\xef\x20\xd1\xa3\x56\xb1\xd7\x0a\x8b\x4c\x51\x12\xd0\x5a\xeb\xed\xa6\x87\x91\x92\xea\xb2\xf9\x33\x28\x72\xaa\xb4\x96\xb5\x76\x0f\x47\xaf\x4c\x65\x3a\xac\x75\x9c\x6a\x1b\xa0\xed\xca\x04\x51\xeb\x2d\x58\xd6\x1b\xa2\x9d\x6a\x41\xd6\x16\x75\x4a\xda\x77\x7f\x2c\x61\x5b\x30\x6a\x93\x0d\xa6\x22\xd0\xaf\x48\x3f\x52\x9b\xbc\x83\x6a\xa3\xda\x68\x47\x83\x1e\xb5\x27\x6d\x4f\x87\x67\x7f\xae\x5b\xff\x53\x7b\x9d\x6a\x6b\xa0\x39\x6d\x3b\x5e\xd4\x6e\x7c\xa6\x87\x5b\xeb\x02\x26\xea\xfa\xef\x7f\x2f\xb6\xe9\x3b\x29\x5d\x18\x36\x12\x43\xd3\x99\xec\x52\x53\x55\x16\x8e\x6f\x3d\xaa\x6d\x7a\x9e\x93\xf3\x14\xb2\x0f\xb9\x14\xd4\xb1\xe6\x29\x7a\x3b\x9a\xd6\x30\x90\xff\x35\x2b\x25\x45\x1d\x8f\xa0\x39\xe0\x01\x95\xeb\xe6\xcc\x75\x88\x77\xd5\x41\xde\xa5\xd2\x38\xf5\x34\xf5\x63\x8a\xa1\xd6\xf5\xdd\x29\x49\xa6\x32\xcd\x4c\x56\xbe\x8c\x7a\xca\x7e\x5e\x4f\x64\x96\x0d\x5d\x78\x7b\xea\x2a\x53\x21\xfe\x86\xac\x54\x49\xf5\x3c\x3d\xde\xf9\x9d\x2e\xb9\x2a\xd4\xf3\xf2\x70\xe4\xe8\x5d\x24\xe7\x34\x59\x61\x25\xcb\xd0\x45\x3a\x50\x76\x72\xff\x4b\x72\xe4\xe1\x1e\x1d\x21\x14\x8a\xfc\xbe\xdb\xdb\x77\x4a\x9c\xac\x27\xa3\xa6\xfb\x16\x19\xeb\x25\x27\xaa\x0a\x03\x61\x0c\x5d\x94\xff\x3a\xb4\x0d\x17\xd2\x39\xb4\xed\x44\x7f\xd4\x4b\xaa\x9e\x8a\xc2\x66\xae\xad\x50\x2f\x29\x43\x2b\x44\xf8\x6f\x9a\x1a\xce\x3b\x8b\x6a\x67\x4e\xaa\x5f\xaf\xe1\xa6\x13\x82\x6d\x8f\xea\xd2\xc0\xbc\x90\x01\x2e\x74\xb1\xb5\xcb\x88\x8b\xfa\x5c\xce\x82\x5d\xaf\xcb\x93\x44\xb2\xd8\xb0\x7d\x68\x8f\x7a\xc9\x1d\xaa\x5e\xa8\xf7\x19\x7a\xd2\x2c\xe5\x65\x57\x59\x89\xaa\xa9\x8e\x77\xbd\x5e\x03\x8c\xa1\xb8\xf2\xdf\xa8\xa8\xcf\xb3\xff\xcd\xc8\x25\xbb\x8f\xe5\x6d\x22\xc0\x6a\x36\xce\xf7\x5e\x6f\xb3\x27\xd4\xca\x08\x59\x05\xf0\xeb\xe3\xef\x9e\xc8\xe1\x04\x95\xc7\x22\xcb\xc3\x2c\x1f\x32\x6b\xd4\x37\x6b\xe9\xf4\x9d\x6f\x43\x60\x79\xa5\xc1\xab\x2f\xcc\x1a\x4d\x35\xe8\xea\x2b\x87\xa3\xfa\x22\x7d\x52\x53\xa5\xb8\x8a\xa4\xbf\xfb\x5f\xa8\x8e\x2c\x3e\x59\xcc\xae\x10\xb3\x4b\x16\xaa\x58\xca\xae\xcb\x27\xbf\x1c\x6a\x7b\xdd\xe5\xcb\x2e\xc5\x4d\xa6\x7c\x3b\xea\x64\xb5\xf5\xa6\xe5\x4d\x1f\x85\xc9\x1d\x52\xdd\x82\x66\x27\xcd\x76\x30\xf3\x92\x68\x7f\x3b\xa4\x10\x6d\x07\x84\xe2\xbc\xbd\x82\xbf\x07\xc5\x6d\x48\xc8\x59\xb6\xd7\x63\x0b\x79\x6f\x43\x0b\x19\x59\xdf\x36\x21\x6b\x41\x42\x49\x0b\xac\x88\xab\xb4\xa8\x2d\xc8\x42\xdd\x20\x0b\x46\x1b\x97\x9a\x25\xb5\x06\x49\x2d\xda\xb8\xd4\xa2\x04\xa4\x16\x3f\x0e\x5e\x64\xee\x69\x51\x9a\xe5\x16\xf3\x81\xa6\x3d\xc9\x98\xdd\x04\x93\xd4\x28\x51\x9f\xc9\x24\xd5\x22\x4c\x52\x59\xbe\x6e\x2d\x56\xad\x20\x32\xc4\x4f\x99\x25\x1b\x72\x7d\xec\x7f\xc1\xf4\x64\xca\x6a\xd1\x00\x8b\xa4\x39\xaa\x76\xd8\x92\x6c\x41\x2d\xd1\x16\xb4\x23\x96\x8e\x66\xf7\xcc\x46\xf7\xcc\x7e\xd4\xbf\xf3\x67\x68\xf6\xc2\x6c\xf4\xc2\x1c\x72\x07\x68\x29\x6b\x19\x30\xce\x15\x59\xac\x5b\x32\x4a\x24\x5e\x9a\x55\x3f\xaf\x25\xaf\x3e\xad\xd5\x37\x75\x29\x63\x5d\x4b\x9d\x50\xdb\x82\x63\x4b\xc3\xdf\x41\xe1\x91\x9b\x50\x30\x4b\x4d\xd7\x32\xd4\x74\xb9\x6f\xea\xdf\xb2\xac\x5d\x2d\x93\x79\x2b\x19\x73\xcb\x92\x68\x5a\x46\x75\xa0\xa0\x12\xd3\x2d\x7b\x2e\x99\xe1\x5a\x7d\xeb\x97\x5b\x96\x5a\xa3\x65\x16\x5d\x56\xf1\x88\x96\xc5\x84\x5b\xfe\x18\x41\xa9\xea\xb2\x48\xbd\xd7\x4a\x62\x68\xf5\xbe\xdd\xb7\xe2\x8d\x2f\xd8\xf8\xa8\x7c\xe6\xad\x34\x7f\xc7\xc8\x53\xd9\x91\x5a\x11\xbf\x6c\xe5\x9b\x66\x69\xc2\xc1\xa2\x9b\x44\x2b\xb8\x2a\xe5\x1d\x2c\x76\xb4\xe2\x93\x52\xe0\x1d\xd2\x65\x7e\x6a\xe5\x71\xdb\xbb\xda\xf4\xdd\x74\x9f\x1f\x6f\x2b\xba\xa7\x37\x4b\xa3\x0d\xd2\x68\x69\x3b\xdd\x14\x03\x24\xf7\xbf\x95\x45\xb9\x8a\xda\x2e\xb7\x31\xbc\x5c\x58\x5d\xe5\x3c\xf0\xdd\x8a\xbf\x2e\xf7\x8d\xb4\x55\x79\x85\xb6\xca\xaa\x37\xca\x3e\xdd\xaa\xfc\x42\xbf\xcb\x21\x3e\xd3\x4c\xa4\x78\x6e\xb5\xa2\xc7\x6d\x5d\x6f\xf6\x32\x6a\xb5\x9e\x68\xda\x27\xb6\xca\x07\xa7\x55\x16\xe7\x54\xa2\xe5\x56\x87\x27\x32\xf0\xd9\x36\x6d\xb4\x2a\x36\xda\x2a\xd8\x68\x54\x5e\xe3\x56\x65\x2b\x6e\x4c\x5d\x90\x7b\x55\x97\xa7\xe7\x0f\x4a\x6c\x37\xbb\x56\x2f\xcf\xf2\xe2\x70\x9b\xfa\x35\xe9\x95\x5a\x43\x74\x49\x34\x5d\x69\x72\xd7\x6c\x90\x8f\xcb\x0e\x34\x39\x9a\xf5\xd1\x0d\xfa\xe8\x22\x81\xb2\xb5\x2c\xc4\x6b\x48\x21\x58\x55\x61\xbf\x35\x29\x27\x5a\x83\x72\x22\x2a\x4b\x6c\x6b\x52\x9a\xb5\x86\x90\xed\x2c\xe7\xed\x66\x5d\x75\x6b\x0d\x65\x47\x0f\xed\x77\x33\x9c\x1b\x7c\x9d\x86\x2e\xf0\xcd\x02\x7a\x83\x80\x5e\xba\x58\x42\x7b\x84\x79\x0d\x91\x08\x5d\x65\x98\x5b\x8f\x5a\x42\x47\x20\x7d\xde\x49\x5d\x8e\xd6\xe5\x5f\xd8\x3a\xab\xde\xaa\xa4\x50\xeb\xaf\xdb\x18\x17\x22\xff\xf9\xd6\xe5\xad\xdf\x3a\xa3\x41\x65\x96\x6a\x43\x26\xab\x86\x64\xb1\x61\xc8\x27\xa4\x0d\x5d\xae\xda\xe0\xe5\x6a\x6c\x95\x5a\x1b\x97\xfa\x1c\xd8\xd7\xb1\x99\x76\x1b\x72\x17\x6f\x83\x11\x9c\xf2\x6a\x69\xa7\x69\xfb\xf9\xd1\xf6\x22\xef\x8d\x76\xea\x9a\xda\xa0\x63\x8e\x31\x6c\xc5\x7f\x3b\x7d\x0c\x90\xe9\xb0\xc8\x79\xa3\x9d\xb2\x9f\x37\xd4\x7a\x0f\x59\x15\xcf\xdb\x29\x95\x6d\x3b\x1f\x4c\x52\x08\x76\xbe\xee\xf1\x45\x8f\x5b\xed\xdf\x2e\xcf\xf1\xe2\x1c\xab\x9a\xe4\x61\xd2\xae\xc8\x9d\xdb\xfa\xf4\x76\x99\xf3\x5e\xc8\xd5\x19\x75\x5b\x6b\x97\x6e\x33\xed\xfa\x6e\x33\x45\x25\xf8\xda\x25\x33\x64\xbb\x58\xbc\x5e\x81\x1e\xed\xd2\x65\xba\x5d\xac\x4a\x2e\xb3\x74\xbb\xbc\xa9\x17\xeb\x8f\xcb\xf4\xdc\x6e\x13\x9b\x9b\xc4\x26\x68\xbc\x5b\xee\x48\x8d\xa5\xf8\x86\x14\x52\xed\xf6\x86\xaf\x1a\x78\xba\x58\xb5\x5b\xca\x9c\x76\x33\x04\x5f\xe6\xd2\x76\x4b\xdc\x6a\x37\xc4\xad\xac\x92\xc3\xed\x91\x6a\xbc\xad\xaa\x68\xaa\xd2\xdb\x1e\x33\x98\x87\x0c\x46\x45\x1d\xdb\xa3\xab\x76\x7b\x3a\xf7\x55\x6b\x78\x24\x9c\x37\x54\xcf\x89\xf6\x3f\x6c\xcf\xed\x3e\x6f\x54\x52\x52\x81\xd4\xf6\xc8\x48\xd4\x1e\x18\x89\x86\xb4\x24\xed\x2d\x82\xd9\x5b\xce\x7f\xfe\xd4\x1d\x96\x7e\xb4\xd7\x3c\x0b\xd5\x43\x42\x97\x9b\x7d\x7b\xe5\x94\xd3\x10\xe3\x5b\x77\x00\xe5\xd1\x50\x28\x64\xff\x9b\xbf\x26\x01\xf3\x95\xf3\x5c\x7b\xe1\x3c\xa7\x92\xc0\xed\xd5\xa5\xb1\xc1\x49\x25\x46\xd9\x89\x1b\x9c\x4e\xf6\xbf\x2f\x3e\x53\x93\xee\xa8\x6d\x7e\x77\xd4\x1a\xb4\x03\xd3\x3b\xce\xbc\xee\xd9\x54\x71\x9a\xf2\xcd\x8f\xba\x54\x23\xd8\x94\xf2\xa1\xcd\x95\xf4\xa3\xbb\xad\xbb\x0d\xab\x16\xee\xd9\xd7\xa5\xd1\xd7\xa5\xab\xc0\x57\x9b\xcd\xa3\xb1\x70\x8b\x2a\x7d\xb7\x79\x6b\x6f\x90\x4e\xbb\x06\x91\x52\xeb\x9c\x1b\x75\xce\xe5\xd0\x76\xcf\xe9\xe1\x58\x71\x41\x7a\xbd\x6e\x5f\xc9\x0e\x5f\xc9\xaa\xaa\xe1\xfd\x90\x8b\x59\x47\x90\x47\x8c\x72\x01\xec\x87\x8c\xcb\xfd\x80\xef\x53\x51\x4e\xf9\x1e\xea\x9e\x65\x0f\xf5\x9b\xa5\x9c\x7c\x7a\x90\x70\xd6\x03\xad\x39\xca\x02\xdf\xc3\xf3\xa8\x0d\xd1\x57\x43\x49\x44\x7b\x90\xf8\xd2\xc3\x47\xc4\x6b\x1c\xc7\x5f\x49\xbb\xdd\x3e\x8e\x3d\xc0\x0e\x14\x65\x7e\xed\xf6\x71\xec\x61\x22\x14\x6d\xb3\xf9\x6e\xcf\x8e\x0e\xcf\x8e\x2a\x37\xac\x1e\x75\x43\xed\x11\xca\xf1\x21\xf1\xac\x3b\x6a\xa1\x23\x6a\xa1\xca\xec\xcc\x5c\x07\xfb\xdf\xfe\x35\x6d\x5d\x6e\xb7\x1b\xe3\x47\x2a\x31\xc7\xa1\xcf\x86\x7b\x1c\x20\x7d\x4a\x54\xde\xe3\xe9\x99\x30\x8f\xa6\xca\x5c\xf6\x78\x7a\x38\xca\x1b\xb2\xfc\xf5\x24\x72\xd3\x19\xf5\xd5\x75\xd3\xec\x76\xdd\xe8\x70\xdd\x88\x51\x4a\x97\x9e\x82\xbf\x0b\x58\xc2\x96\x0e\x3a\xe2\xc0\xf6\xbf\x93\x9f\xa9\x4b\x49\x1c\x3d\xb1\xf2\xa9\x97\x9e\xe4\x58\xdb\x13\x62\x14\x7b\xde\x37\x80\x9e\x24\xcf\xf6\x04\x79\xb6\x48\x1a\xe9\x59\x6e\x58\x3d\x33\x87\x46\xd1\x34\xb3\xa8\x54\xcf\xc8\x5a\xd6\x8b\xe6\x92\x4f\xb7\xa1\x5c\x5b\x94\xf6\xa4\x67\xa9\x2c\x7a\x46\xda\xcc\x28\x33\x57\xcf\x32\x35\x74\x86\x0b\xf4\x9d\xaa\xf0\xe8\x45\xe1\x5d\xbd\x1c\x89\xdf\xed\x79\x16\x83\xac\x00\x64\x4a\x99\xdf\x8b\x7c\x0d\xbe\xbe\xd0\x65\x52\x97\x22\x39\xbd\xe0\xb2\x15\x95\x70\xb9\x17\xf1\xf9\x5e\x98\x24\xa8\x6c\x31\xbf\x97\x4b\xa0\xc6\x6d\x20\x46\xc5\x41\xf5\x22\x83\x55\x2f\x4c\xe0\xb4\x93\x18\x1e\xbd\xea\xaa\xd9\x2b\xae\x9a\x4d\x65\xb4\x7a\x95\x9d\xa8\xc3\x6d\x24\x46\x65\x9c\xef\x55\xc6\xa0\x5e\x0b\x0a\x86\x66\x7f\x27\x49\xac\x57\x4a\x62\xb2\x0a\x74\xeb\x88\x3b\xe4\xf0\xaa\x40\xa3\x5e\xe5\x8b\xd9\xeb\x60\x2e\x98\x2d\x3e\x74\x0b\xd1\x9d\x42\x74\x39\x36\xb9\xed\xd5\x3b\x5b\xbf\x9d\xad\xd9\x4d\x97\x57\x77\x41\x44\x90\x6f\x6e\x6f\xd2\xee\xf7\xc6\x5a\xc1\xf2\x89\xe8\x4d\xb1\x4b\xbd\x31\xb5\x8d\x14\x05\xbd\xc9\x9e\xd5\x1b\x8b\x1f\x2a\x82\xb0\xb7\xa1\x69\x36\x64\x85\x1b\x3b\x3f\xe0\xd1\xdb\xe9\xf1\xe0\xed\x52\x0c\xe9\x26\x6f\x97\xde\x90\x69\xa0\xd7\xa8\x3e\x65\xc8\xeb\x6d\xc2\x7b\x5e\x9b\xd7\xa5\xa7\xea\x3d\x73\x13\x44\x06\xba\xc9\x47\x47\x6e\xcb\xd1\x74\xd4\xbb\x91\xa5\xb3\x7c\x83\x6a\xb8\xf4\x2e\xe9\xa1\xf7\xfb\xe3\xcb\x65\x4b\xca\xbd\xcb\x32\xd3\x3b\x12\x6e\x45\x45\x27\xf5\x6e\x1c\xeb\x1f\x8e\x55\x39\xd2\x76\x2b\xb2\x3b\x15\xd9\x45\x85\x4c\xfa\x90\x3b\x52\x67\xe8\xf4\x50\x76\xec\x3e\x74\xcf\xec\x23\x10\xd0\x42\xe9\x61\xe6\xc5\x08\xeb\xa2\xcb\x77\x1f\x72\x44\xef\x23\x7e\xa4\xb8\x6a\x71\x43\x92\x45\x1f\xb0\x42\x44\x59\xd6\xfb\x30\xd1\x19\x1f\xd1\xa9\x4a\xb0\xdc\x87\x54\xf8\x1d\x49\x9a\x6a\x15\x79\x38\x7d\x7e\xce\x03\x18\x26\x9b\x75\x3f\x65\xcf\xee\xc8\xf5\xff\xb5\xed\x2e\x4f\x45\xb3\xf4\xb3\xe1\xc2\x55\xa2\xdb\x4e\xb7\x81\x12\x97\x2d\xeb\xf7\xf3\x14\x50\xce\xf3\x63\xb1\xca\x28\xdd\x4f\xa9\xe7\x3a\x14\xda\x31\x16\xad\xe0\x92\xfb\x56\xbf\x90\x10\xa1\x48\x12\xeb\x97\x34\x0b\xfd\xfa\x84\xb2\xda\x74\x0e\x2e\x13\xe9\x8b\x44\xba\x8a\x1b\x5e\xba\x2a\xf7\xeb\xc3\xb5\xba\xb3\xfb\x1c\xfd\x96\x70\xd4\x91\x11\x2d\xc6\x22\x22\x76\xcb\x49\xa1\xa3\xfe\xf2\xd7\xb6\xbb\xbc\x25\x4a\xf6\xbb\x13\x28\xdb\xe0\xd6\x6f\x59\x59\xfb\xdd\x51\xaf\x67\xdf\x1f\xfa\x7d\x69\x01\xf7\x85\x05\x48\xec\xb8\xcd\xe8\x6f\x30\x7a\xd9\x5e\xfa\xe3\x9d\x7b\x0e\x44\x98\x6c\x69\xb7\x3f\xaf\xbe\x42\x4d\xc5\xda\xb6\x48\xd8\x1f\x99\x03\xfa\xc3\xd2\xcb\xb2\x92\x74\xbb\x70\xf7\x97\xb8\x20\x43\x70\x7f\xa5\xb0\xec\xef\x27\xe8\xd7\x2e\xc4\x7b\x15\x54\xdd\x51\x42\xb0\xee\x1c\x10\x47\x7f\x15\xbf\xd3\x5f\xa6\x00\xf4\xde\xbc\xba\xe9\xf7\x37\x75\x8e\xb6\x8f\x8e\x1d\xbf\x3b\x1d\xbf\x47\x17\xc6\xbe\xc5\xc3\xb1\x72\xb7\x7c\x14\xfa\x2b\xab\x66\x7f\x59\xfa\xb5\xea\x58\xbd\x26\x0c\x48\x17\x13\xe3\x4e\x1f\x7b\xf4\x29\x63\x47\x47\xd1\xad\x18\xe5\xe2\xd3\xa7\xd4\x3e\x1d\xe1\x48\x5f\xdb\x5e\xba\x85\xef\x0e\xe1\x3b\x46\x85\xc3\xf4\xe9\x79\xce\x35\xcf\xad\x66\xea\xb3\xfa\xbb\x0f\xc1\x6a\x17\x9e\xcc\xd3\xc3\x9d\xdc\x20\xd1\xbd\x79\x09\xf7\x26\x12\x4c\x94\x9d\x62\xf1\xe8\x53\x37\xc6\x8e\x1c\xbc\xd5\x85\x1a\x0f\x45\x55\x8c\x23\x42\x74\x90\x69\x79\x38\xaa\x68\x1c\x89\x50\x51\xd1\x9f\x43\x2a\xe5\x01\x8f\xf1\x3a\x54\x2d\xef\x90\xdf\xea\x60\x92\x82\xa6\x3b\xce\x38\x1e\x0f\xf7\x80\xaa\xd7\x1e\xfe\x4a\xe6\x1d\x87\xb4\x76\x03\x99\x07\x42\x77\xe1\x6f\xe4\x90\xdc\xff\xc2\x90\x25\xd5\xdc\xb0\x86\x7e\x40\x43\x1f\xba\xec\x74\x23\xe8\xa2\x36\x02\xf2\xc2\x44\x19\x58\x46\x90\x51\x63\x40\x93\x1f\x8a\xc2\xe0\x86\xfd\x37\x06\xfc\x37\xaa\x14\x05\x23\xdc\xee\xf2\x66\x8e\x2a\x95\x20\xb5\xd7\xf5\x80\xd7\xf5\x37\xdc\xae\x57\x14\x64\x2e\x1d\x48\x6f\xd9\x85\x49\x23\xc8\xfc\x3f\x02\xcc\xff\xb1\x09\xd8\xe1\xf5\x2c\xbf\xcb\x52\x77\x85\xc0\xa0\x3b\xef\x08\x1f\x9f\xad\x43\xf5\x94\xa2\x4e\xf3\x88\x3c\xcd\xaa\x74\x30\xa2\xdc\x64\x06\x2e\x05\x5f\x5b\x57\x5b\x75\x1b\x61\xf9\xf3\xdd\xed\x36\xc8\x1c\x4d\x35\xc2\x62\xf4\x78\xa8\xde\x16\x65\x05\x1f\x51\x9a\x95\x11\x51\x37\x3c\x36\x95\xe5\x8a\xb2\xff\x8f\x98\xd6\x77\x1b\x98\x0e\xa1\x1a\xb1\x70\x3c\xd5\xbe\xb3\xe1\x62\x20\x8b\xe2\xd7\xa6\x35\xe8\xca\x32\x70\x65\xf9\xc4\x3d\x35\xb9\xcb\xc6\x84\x63\x2a\x42\xe9\x08\xaa\x11\x4f\x82\x4c\xf5\xc7\xa2\x34\x51\x23\x42\x13\x35\x86\xea\xa7\x45\xb1\xde\x11\xa9\xbf\x56\x31\x98\x11\x6f\x7f\x07\x77\x90\xe2\xc2\xaf\xf1\xf1\x5c\x1e\x2e\x4f\xb5\xad\x92\x44\xb8\x91\x98\xe3\x58\x97\xf7\x91\x74\xed\x1a\x89\xd7\x2e\xc9\x46\xc3\x09\x22\x06\x22\x9f\xdb\xa1\xf2\x76\xe9\x72\x97\x17\x21\xad\xd3\x65\x47\xf4\x01\x47\xf4\xaf\x6d\x83\x25\xc9\xea\x3e\x10\x39\xd4\x0e\x6d\x7a\x96\x88\x3d\x32\x43\x2b\x86\x36\xc1\x99\x1e\x46\x5e\x88\xa4\x32\x68\x45\xba\xd5\x51\x3a\x77\x41\x85\xdb\x8a\x1c\x15\x46\x41\xed\x29\xdd\x0d\x47\x91\xfa\x64\x14\xaa\x4f\xa4\x1e\x1e\x45\x51\x9f\xa3\x20\xb7\xf5\x18\xda\xbc\x2a\x85\xf3\xa8\xc4\x4d\x99\x97\x47\x35\x6e\xd6\x38\xbf\xe1\x54\xf9\xab\x9a\x38\xd6\xc4\x73\xae\xc2\xe1\x56\xf9\x8f\xa5\xf2\xef\x2a\x32\x56\xa5\x8d\x1e\x95\xda\x68\x99\x9e\x47\x95\xb5\x66\x20\x4b\x57\x0b\x22\x1d\xd6\xa6\x8f\x7a\x0d\x94\xc0\xd8\x5f\x35\x31\xd2\xd1\x22\x17\x27\x6c\xb0\x9f\xf6\x80\x9f\x76\x93\x8b\xc9\x68\x3e\x07\xad\x81\xc7\x8a\x8f\x8e\x26\xff\xe7\xd1\x06\x6a\x88\x88\x9c\x36\xcf\xb1\x31\x67\xec\xd0\x8e\xb7\x2b\xb9\x0d\xd5\x54\x54\x67\xae\x89\x3d\x8d\x46\xf6\x24\xfd\xe9\x68\xc6\xaf\x46\xfc\xea\x2a\xf3\xdc\xa6\x67\x39\x39\x4b\x55\xbf\xeb\xf2\xdc\x18\xcc\x1f\xd5\x65\xe6\x1e\x5d\xd7\xf3\xd1\x61\x10\xd0\xed\x61\xf4\xe2\xcf\x58\x8b\x2d\x0a\xd5\x7b\x75\x1b\x12\xd5\x8c\xa1\x12\x73\x76\xa0\x19\x70\xa0\x69\x41\x45\xd4\xbb\x09\x40\x67\x42\x68\xc5\xfc\x0d\x5f\x11\x06\xaf\x08\x5d\x7e\x72\x63\xf8\x18\x0c\x1e\x03\x19\x4a\xc7\x90\xa9\x70\x0c\x9a\x9b\xcc\x64\x86\xc4\xaa\x31\x50\x01\x26\x8a\x21\x0c\x03\x65\x24\x16\x20\x17\x4b\x1b\xc9\x5d\xa6\xd5\x65\x57\x9b\xbb\x4c\xec\x72\xaf\x60\x48\x2d\x31\x06\xca\x45\xba\xde\xfc\xd0\xa5\x70\x8c\xef\x68\x2a\x9b\xdd\x31\x86\xf9\xe7\x38\xd1\xa1\x8a\x18\xdb\x84\x30\x60\x42\xf8\xe6\xa8\x79\xbc\x9e\x23\x0a\x81\xc4\xa1\x12\xcf\xc3\xcc\x0e\x1e\x3d\x2d\x0a\x9b\xc7\xf4\x1c\x27\xe6\xa8\x32\xb2\x43\xba\xf4\x31\xa8\x4b\x57\x31\xbe\x31\xa6\x7b\x9c\xac\xbe\xaf\x02\xe2\xa7\x0c\x32\xe3\x8c\x2c\x34\x2b\x66\x87\x52\x57\xfb\x5f\x5c\x63\x4c\xf1\x4f\xa3\xfa\x49\x54\x97\x66\x68\x9c\x97\xfb\xbc\x98\x9b\x4a\x35\x5e\x7d\xc7\x19\x27\x8a\xf7\x2a\x58\x66\x9c\xb2\x1b\x8d\xf3\x99\x68\xd2\x4c\x94\xdf\x60\x20\xed\x73\x53\xdc\xc7\x38\xa7\x9b\x50\xdb\x3c\xba\xf8\xeb\x65\x09\xe0\xa2\x04\x20\x27\x83\x71\x99\x70\x5f\xc7\x9a\xa4\xbe\xb3\xa4\x75\x45\x0c\xa7\xea\xe7\x97\x0c\x4a\xe3\xfa\x44\xc9\x16\x55\x4c\xdf\xd6\x93\x01\xeb\x49\x53\x2e\x98\x71\x99\x8e\x5e\x89\xa9\xe8\xc4\xfe\x2f\xd3\xd1\x8b\x74\x54\x66\x9c\x71\xf9\x80\x5f\xdf\x01\x6f\x49\xa5\xc4\x2f\x93\xd8\x8b\x24\x56\x26\x9e\x71\xc9\xff\x7c\x5c\xf0\x3f\x1f\x87\x36\xee\xaa\xee\xb2\x12\x19\x24\x1a\x5c\xcd\x7d\x36\x26\x83\x54\xc5\xd2\x6b\xb8\xed\x3b\x0f\xaa\x54\xf3\xfd\x16\xcd\x80\xef\x52\x4b\x21\xff\xbb\xb8\x5b\xdb\xff\x54\xda\xbd\xcc\xb1\x2e\xe4\x29\x70\x31\xe9\x5b\xfa\x81\x71\xaf\x34\x94\xc2\xf5\x3b\x0b\x62\x77\x66\x9b\x88\xfa\x6d\x91\xfd\x2e\x4c\x3d\x29\x7c\xbe\xab\xbf\xab\x4c\x8f\x29\x42\x74\x1b\x2c\x77\x65\x62\x4c\x11\xa2\x47\x9a\xc0\xf1\xb0\x76\x87\x7c\x45\xc7\x63\x22\xf5\xb0\x8c\x47\x94\x20\xf9\x78\xd7\x1f\x5e\x2d\x86\xb8\xe7\x53\xdc\x56\xd8\x36\xd4\x67\x71\x9f\x05\xbb\x2e\xd1\xe0\xf1\x0e\x3d\x6b\x87\xba\x0a\xf5\x4b\x0d\x30\x9e\xc1\x93\xb0\x6f\xbd\xe3\x31\x09\x7b\x56\x7d\x76\x1d\xc9\x47\xce\x4b\xe3\x59\xf5\xb3\x5d\xaa\x5d\x79\xac\xc6\x0b\xbf\xd5\x74\xb8\x76\xb6\x69\xf7\x1b\x90\x17\x45\x54\xc5\xd7\xd0\xf1\x76\x66\xe0\x77\xc9\x6c\x29\x10\x07\x92\x69\xb4\xfc\x53\xab\xfe\x75\x13\x4b\xb6\x0a\x6f\xdf\xdb\x6d\x0f\x6b\x6c\xef\x05\xbc\xf2\x08\x1f\xf0\xa8\x8a\xe9\x70\x29\x79\x29\xdf\xc6\x3b\x51\x47\x56\x14\xe0\x9d\x9e\xc8\x44\x99\x6f\xd7\xda\x95\x9a\x7d\xcc\x03\xe5\xb8\x5d\x6c\x56\xca\xa9\x81\x70\x87\x78\xfc\x14\xa2\x55\xe0\xe8\x40\x7e\xdb\x6f\x22\xae\x49\xac\x0d\x9f\x88\xbf\x4b\x2e\xc7\x6d\x33\xd5\x98\x15\x85\xa1\x25\x1a\x4c\x25\x5a\x1a\xb3\xb2\x0e\xae\x4b\xd4\x7a\xb4\xc1\xd1\x5c\x4e\xd8\x02\xf9\xbc\x99\x70\x55\x15\xe6\x6c\x67\x5f\xd9\x24\x4b\x76\xf1\x53\xe1\xd0\x1c\x83\x45\x4c\x5d\x9f\x73\x9f\xc8\x89\x0a\x3f\xbd\xb8\xe4\xa1\x60\x32\xa1\x32\xeb\xf5\xa7\xfa\xdf\xa5\xa6\xb2\x0a\x23\xee\xb6\x4b\x96\x9a\x79\x31\xb9\x42\x54\x4b\x72\x0b\x12\x7f\xa9\x12\xe2\x2b\x4f\xea\x09\x8c\x6c\xf2\xc2\x9b\xaf\xce\xe9\x7c\x71\x4e\xeb\xce\x9f\x7f\xcc\x37\xf9\x33\x64\xb0\xe8\x2a\x5c\xf7\xea\xfe\x35\x11\xef\x63\x77\xc7\x69\x15\xcd\x84\x8a\xa6\x0d\xd5\x68\x7b\x45\xb6\xe7\xfb\x91\xed\x36\xb6\x04\x32\x5f\xf9\xaf\xcd\xf7\x93\x40\xda\x08\xfe\xea\x71\xd3\x8b\xaf\x3c\xd6\x54\x53\x3e\xd0\xa4\x85\x65\x4f\xfe\xc3\x9d\xe6\xba\xba\x6f\xf6\xe4\x11\x87\x18\xab\x6a\x22\xbe\xd9\xb3\xcf\x9c\xbd\xcb\xf1\x69\x33\x51\x96\xbd\xaa\xe6\xe1\xd4\x89\x9f\x93\xa5\x08\x5d\x77\xef\x74\x0b\x2c\x64\xaa\x5f\x27\xe1\x7c\xce\x05\x8b\xdd\xe2\x99\xa3\xe4\x75\x77\x25\x42\xe1\xfc\x84\x69\x36\xd8\x1f\x62\xce\xea\xaf\x3e\xde\xe2\x02\x9e\xf3\xf5\xec\x5e\x88\xa7\xaa\x8a\xb7\xe7\x1d\x66\x60\x66\x93\xe3\xd8\xf5\xef\x42\x72\x1b\xdc\x41\x8f\xbd\x59\x61\x86\xe2\x36\x64\x33\x3a\x6a\x52\x5b\x73\x1b\x92\x94\x84\x3d\x5e\x8c\xd7\x66\x34\x31\x5e\x64\x34\x5b\x6f\x14\xeb\xdc\x44\xe7\xfb\xb7\xd1\x5e\xb3\x33\x76\x97\xed\x4c\xf0\xfd\x3b\x98\xdd\x5c\x79\xc7\xb7\xb3\xc4\xf7\x2f\x13\x68\xa7\xff\x0f\x27\xfd\x7e\xfc\xd7\xf3\x3f\xff\xb7\xff\xe3\xff\x3c\xff\xf3\xff\x3a\xff\xeb\xfb\xe7\xfe\x1f\xff\xfa\xd7\xfb\x1f\xff\xfd\xf9\x2f\xf7\x7f\xff\xf3\xbf\x7f\x4f\xff\x3c\xef\xfc\x2f\xff\xf1\xfe\xeb\xfd\x7f\xfe\xdb\xff\xf8\xd7\xfd\xfe\xf9\xcf\xff\xf6\x9f\xdf\x57\xf8\xfb\x7f\x03\x00\x00\xff\xff\x82\x78\xbd\xa1\xf5\xb5\x03\x00"); +func _dafe ()(*asset ,error ){_gbefe ,_adad :=_aaaeb ();if _adad !=nil {return nil ,_adad ;};_edfc :=bindataFileInfo {_ee :"UniJIS-UTF16-V",_ffd :3426,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492941,0)};_cgbf :=&asset {_da :_gbefe ,_dc :_edfc };return _cgbf ,nil ; +};func _df ()(*asset ,error ){_gac ,_cf :=_cg ();if _cf !=nil {return nil ,_cf ;};_ec :=bindataFileInfo {_ee :"78-EUC-H",_ffd :12552,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490820,0)};_cfa :=&asset {_da :_gac ,_dc :_ec };return _cfa ,nil ;};func AssetNames ()[]string {_fcff :=make ([]string ,0,len (_aaafd )); +for _cbgb :=range _aaafd {_fcff =append (_fcff ,_cbgb );};return _fcff ;};var _ab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd3\xb1\xae\xd3\x4c\x10\x05\xe0\xde\x4f\x31\xe5\xfd\x8b\x9f\x78\x77\xbd\x5e\xaf\x84\xae\x84\x92\x82\x20\x5d\x40\x04\x2e\x48\x88\xc2\xb1\x27\x91\x25\xb2\xb6\xd6\x76\x91\xb7\x47\x73\x26\x98\x22\x9a\xf8\x8b\xe7\xe8\x14\x93\xdd\xfe\x78\x38\xa6\x61\xa1\xdd\xe7\x3c\x76\x27\x5e\xe8\x32\xa4\x3e\xf3\x3c\xae\xb9\x63\x3a\xf3\x75\x48\x45\x61\x2c\xf5\x43\xb7\xfc\x7d\xc4\xe8\x6e\xed\x54\x14\xbb\xd0\xfc\xff\x9e\xd6\x99\x1f\x8f\xfb\xe3\xe1\x74\x9f\x17\xbe\x1d\xd3\x65\x24\xa7\x6b\xfd\x3a\x3d\x56\x89\x76\x5f\xf8\x3a\xcc\x4b\xbe\xd3\xd3\xbb\x7e\x3c\xf3\x7f\xd4\xf3\x45\xfc\x53\xee\x39\x0f\xe9\x4a\x4f\x1f\xda\xa9\x4d\x66\xfb\xe1\xb4\x4e\xd3\x6f\xbe\x71\x5a\xa8\x84\x71\xea\x31\x8b\xdd\xfe\xa5\x9d\x3e\xb6\x37\x26\xa9\xf1\x0a\x84\xbd\x72\x9e\x87\x31\x91\x29\xdf\x94\x65\xfd\xcf\xbf\xde\x27\x26\xf3\x58\xfe\xf1\xed\x78\xa0\x9f\x86\x4c\x49\xd6\x3b\xef\x7e\x3d\xfc\xfb\xcb\xd8\x6f\x6f\xd9\xa0\xcd\xbb\xa1\xcf\x6d\xba\x72\xf1\xd6\x1a\x6b\x9f\x49\x86\x7b\xa6\xd0\x34\x41\xc8\x19\x90\xb3\xa0\x08\xea\x94\x58\x28\x1a\xa1\x4a\xdf\xaa\x3c\xa8\x02\xb5\x20\x7f\x06\x61\xb1\xd6\xb7\x64\x84\x68\x24\xbe\xb2\x20\x8c\x10\x4d\x03\x72\x4a\x0e\x14\x41\x5e\x49\xe2\xa3\x2d\x41\x41\x29\x80\x0c\x28\x2a\x45\x90\x15\xaa\x34\xab\x42\x96\x75\x42\xb5\x52\xad\x54\x81\x34\xbe\xd6\x78\x0f\xd2\xf8\x5a\xe3\x6b\x10\x2b\x31\x48\xda\x7b\x6d\xef\xb5\xbd\x6d\x40\x4e\x49\xe3\x23\xc8\x2b\x21\xde\x95\xa0\xa0\x84\x78\x67\x40\x51\x09\xed\x9d\xb4\xf7\xda\xde\x6b\x7b\x27\xed\xbd\xb6\xf7\xda\xde\x55\x20\x8d\xd7\xf6\xce\x83\x34\x5e\xdb\xbb\x1a\xc4\x4a\x68\xef\xd0\x3e\xe8\x62\xa8\x41\x8d\x5c\xdf\x76\x0c\xf2\x5d\xee\x7e\xbb\xc3\x6e\xcd\x99\xd3\x82\xab\xc7\xc5\xc9\x15\x0d\x89\xb7\x3f\xd4\x34\x4e\xb2\x85\xcf\x9f\x00\x00\x00\xff\xff\xc4\x5a\x5d\x5a\x7c\x03\x00\x00"); +var _fffb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4d\x6f\xdb\x46\x18\x04\xe0\x3b\x7f\xc5\x1e\xd3\x43\xea\x7d\x3f\xf6\x83\x00\x61\xa0\x89\x91\x40\x87\x34\x45\xd3\xb4\x05\x8a\x1e\x64\x71\x69\x08\xa8\x29\x41\x92\x0f\xfe\xf7\xc5\xec\x48\x2e\xd0\x43\xa0\x68\xbc\x7c\x29\x3d\xe3\xe5\xfa\xee\xe3\xe6\x61\xb3\xee\x2f\xe1\xee\x97\xd3\x61\xf7\xad\x5d\xc2\xb2\x5f\xe7\x53\x3b\x1f\x5e\x4e\xbb\x16\x1e\xdb\xd3\x7e\x1d\x06\xd1\x30\xef\x77\x97\xdb\xdb\xfe\xb2\x7b\xde\x1e\x87\x01\xd7\x7f\x7b\x3d\x5f\xda\xf3\x66\x5d\x0e\xc1\xb8\x6e\x7e\x39\x5e\xd7\x86\x70\xf7\x6b\x7b\xda\x9f\x2f\xa7\xd7\xf0\xee\xa7\xf9\xf0\xd8\x7e\x08\x73\x5b\x90\x7f\x3d\xcd\xed\xb4\x5f\x9f\xc2\xbb\xcf\x1f\xe4\x2d\xfd\xf6\x72\x3c\xfe\xd3\x9e\xdb\x7a\x09\xda\xb3\xb6\xce\xfd\x75\xb8\xfb\xf8\x65\x7b\xfc\x79\xfb\xdc\xc2\x5d\x1f\xf4\xfe\xf3\x07\x79\xcf\x35\xfd\x47\xbf\xb7\xd3\x79\x7f\x58\x83\xc8\x8f\x31\xe6\xff\xf2\xdf\x5e\x8f\x2d\xc8\x75\xc6\xf7\xcd\xc3\xd7\x65\x39\xb7\x4b\x28\x29\x72\xcd\x9f\xdf\x37\x0f\xe1\x2f\x09\x12\x83\x26\x4f\xfe\xf7\x75\xe9\x1f\x5f\x0e\x73\x0b\xf1\x76\xf3\xcd\xc3\xc7\xc3\x0b\x3e\x95\x8a\x16\x86\xc2\x2f\xb9\x3b\xcc\xed\x7c\xdc\xee\xda\x69\xbb\x3e\xb5\x21\x84\x29\xc6\x18\xef\xc3\x94\xf2\xa7\x4f\xf7\xf8\x02\xff\x5b\x31\xd4\x72\xbd\x72\x3f\x33\xb9\x5d\x11\xe3\xb2\xdc\x87\x38\x4c\x51\xf8\x5e\xf0\x5e\x53\x1e\xa6\xa8\x4c\x14\x49\x12\x1d\xa6\x68\x4c\x0c\x49\xc9\x75\x98\xa2\x33\x71\x24\x12\xd5\x87\x29\x26\x46\xa9\x47\x5a\x31\x3b\x33\xca\x3d\x4a\x86\xe1\x85\x51\xe9\x51\x19\x31\xbd\x32\xaa\xfd\x13\x44\xc7\xf8\x91\xd1\xd8\x23\x8b\x18\xbf\x65\xb4\xbd\x7e\x4e\x8c\x7f\x64\xf4\xd8\xa3\x2a\x18\xbf\x63\xb4\x43\x64\xb1\x60\xfc\xcc\x68\xee\x91\x29\xc6\x37\x46\xad\x47\xa9\x62\xfc\xc2\x68\xe9\x51\xf5\x38\x4c\x42\x29\xe9\x52\x1e\xc7\x3c\x4c\x42\x2c\xe9\x58\x6e\x49\x87\x49\xa8\x25\x5d\xcb\x73\xac\xc3\x24\xe4\x92\xce\xe5\x35\xfb\x30\x09\xbd\xc4\xaf\xa6\x18\x4f\x2f\xe9\x5e\xc9\x0a\xc6\xd3\x4b\xba\x57\xca\x86\xf1\xf4\x92\xee\x95\x6a\xc5\x78\x7a\x49\xf7\xca\xe2\x18\x4f\x2f\xe9\x5e\xd9\x23\xc6\xd3\x4b\xba\x57\xce\x28\x56\xe8\x25\xdd\x2b\x8f\x68\x56\xe8\x25\xdd\xab\x08\xaa\x15\x7a\x49\xf7\x2a\x8e\x6a\x85\x5e\xd2\xae\xfd\x63\x3c\xbd\xa4\x7b\x95\x11\xd5\x2a\xbd\xb4\x7b\x55\x41\xb5\x4a\x2f\xed\x5e\xd5\x51\xad\xd2\x4b\xbb\x57\x2d\xa8\x56\xe9\xa5\xdd\xab\x8e\xa8\x56\xe9\xa5\xdd\x6b\x54\x54\xab\xf4\xd2\xee\x35\x3a\xaa\x55\x7a\x69\xf7\x1a\x0b\xaa\x55\x7a\x69\xf7\x1a\x47\x54\xab\xf4\xd2\x7a\xfb\x5d\xc5\x7c\x82\xe9\xc8\xcc\x51\xae\x52\x4c\xb7\xcc\x0a\xda\x55\x92\x69\x27\x43\xfb\xb8\x05\xcd\x74\xc7\x4c\xd1\xaf\x12\x4d\x67\x66\x09\x05\x2b\xd5\xb4\x31\x2b\x68\x58\xc9\xa6\x0b\x37\x49\x44\xc5\x46\x37\x8b\xcc\x14\x1d\x1b\xe1\x4c\x98\x25\x94\x6c\x94\x33\xbd\x6d\xb0\x38\x4c\x46\x3a\xeb\x74\x62\x11\x35\x1b\xed\x8c\x7b\xd3\x0c\x3d\x1b\xf1\x8c\x9b\xd3\x12\x8a\x36\xea\x19\x77\xa7\x55\x34\x6d\xe4\x33\x6e\x4f\x8f\xa8\xda\xe8\x67\xf4\x73\x43\xd7\x46\x3f\xa3\x9f\x27\x94\x6d\xf4\x33\xfa\x79\x45\xdb\x46\x3f\xa3\x5f\x12\xd4\x6d\xf4\xb3\xdd\xed\xa9\x80\x7b\xd0\xcf\xe8\x97\x32\x0a\x37\xfa\x19\xfd\x52\x45\xe3\x46\x3f\xa3\x5f\x16\x54\xee\xf4\x73\xfa\x65\x43\xe7\x4e\x3f\xa7\x5f\xce\xe8\xdc\xe9\xe7\xf4\xcb\x15\x9d\x3b\xfd\x9c\x7e\x45\xd0\xb9\xd3\xcf\xe9\x57\x1c\x9d\x3b\xfd\x9c\x7e\x25\xa3\x73\xa7\x9f\xe7\xdb\xa3\x0c\xf7\xa0\x9f\xd3\xaf\x0a\x3a\x77\xfa\x39\xfd\xaa\xa3\x73\xa7\x9f\xd3\xaf\x66\x74\xee\xf4\x73\xfa\xd5\x11\x9d\x3b\xfd\x9c\x7e\xa3\xa2\x73\xa7\x9f\xd3\x6f\x74\x74\xee\xf4\x73\xfa\x8d\x05\x9d\x3b\xfd\x9c\x7e\xe3\x88\xce\x9d\x7e\xbe\xf0\x59\xab\xe8\x3c\x5d\xcf\x90\x78\x7b\xfe\xc6\x61\x4a\xf4\x4b\x3c\x15\x62\x41\xe7\x89\x7e\x49\x99\x8d\xe8\x3c\xd1\x2f\x75\x3f\x15\x45\xe7\x89\x7e\xc9\x99\x25\x74\x9e\xe8\x97\x12\xb3\x82\xce\x53\xbe\x9e\x5d\xb9\xdd\x07\xd5\x28\xb9\x9f\x60\xb7\x93\x0a\xff\xc7\xc9\xff\x76\x18\xef\x5e\x4e\xa7\xb6\x5e\xfa\xb9\xdf\xcf\x5b\x9c\x8d\xfb\xb5\xbd\xfd\x0d\x71\x3c\x1c\x71\x55\xff\xf7\x6f\x00\x00\x00\xff\xff\xe0\x07\xe7\xdd\x6f\x08\x00\x00"); +func _gaa ()([]byte ,error ){return _gb (_ea ,"78-EUC-V")};var _cbf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4d\x6b\xeb\xc6\x1b\x05\xf0\xbd\x3e\xc5\x2c\xef\x7f\x71\xff\x99\xe7\x45\xa3\x11\x88\x40\x49\x08\xa4\x70\xdb\xd2\xf4\x0d\x4a\x17\x8e\x34\x0e\x86\x46\x36\x8a\xb3\xc8\xb7\x2f\xe7\x39\x76\x28\x5d\x04\x47\xc7\xd2\x23\xe5\x77\x32\x9a\x9b\xbb\xc7\xfb\xc7\xf5\x70\x4e\x37\x3f\x6d\xc7\xf9\xa9\x9d\xd3\xfe\xb0\x2e\x5b\x7b\x3b\xbe\x6f\x73\x4b\xcf\xed\xe5\xb0\x76\x9d\x68\x5a\x0e\xf3\xf9\x7a\x18\x1f\xf3\xeb\xee\xd4\x75\xb8\xfe\xe9\xe3\xed\xdc\x5e\x1f\xd7\xfd\x31\x19\xcf\x5b\xde\x4f\x97\x73\x53\xba\xf9\xb9\xbd\x1c\xde\xce\xdb\x47\xfa\xf2\xdd\x72\x7c\x6e\xff\x4b\x4b\xdb\x23\xff\x71\x5b\xda\x76\x58\x5f\xd2\x97\xef\x77\xa7\xdd\x2a\x9f\x5f\x3c\xbd\x9f\x4e\x7f\xb7\xd7\xb6\x9e\x53\x1f\x59\x5b\x97\xf8\xec\x6e\xee\xbe\xed\x4e\x3f\xec\x5e\x5b\xba\x89\x59\x5f\x79\xe5\x57\x9e\x16\xdf\xfe\xd6\xb6\xb7\xc3\x71\x4d\xf2\xff\x9c\xff\x15\xff\xf2\x71\x6a\x49\x2e\x53\xfe\xf8\xf5\xf1\x3e\xfd\x29\x49\x72\xd2\xbe\x88\xfd\x75\xc9\x7f\xff\x76\x5c\x5a\xca\xd7\x7b\x3d\xde\xdf\x1d\xdf\xd7\x73\xd2\x6c\x32\x30\x14\xfe\x59\xf3\x71\x69\x6f\xa7\xdd\xdc\xb6\xdd\xfa\xd2\xba\x94\xa6\x9c\x73\xbe\x4d\x93\x3f\x3c\x3c\xdc\xe2\x79\xff\x73\x46\x57\xf3\xe5\xca\xc3\xc2\xe4\x7a\x45\xce\xfb\xfd\x6d\xca\xdd\x94\x85\xc7\x82\x63\xed\x4b\x37\x65\x65\xa2\x48\x7a\xd1\x6e\xca\xc6\xc4\x90\x0c\xa5\x76\x53\x76\x26\x8e\x44\xb2\x7a\x37\xe5\x9e\x51\x1f\x91\x56\xcc\x2e\x8c\x4a\x44\xbd\x61\xf8\xc0\x68\x88\x68\x18\x31\xbd\x32\xaa\xf1\x04\xd9\x31\x7e\x64\x34\x46\x64\x19\xe3\x77\x8c\x76\x97\xe7\xc4\xf8\x67\x46\xcf\x11\x55\xc1\xf8\x99\xd1\x8c\xc8\xf2\x80\xf1\x0b\xa3\x25\x22\x53\x8c\x6f\x8c\x5a\x44\x7d\xc5\xf8\x3d\xa3\x7d\x44\xd5\x73\x37\x09\xa5\x24\xa4\x3c\x8f\xa5\x9b\x84\x58\x12\x58\x6e\xbd\x76\x93\x50\x4b\x42\xcb\x4b\xae\xdd\x24\xe4\x92\xe0\xf2\x5a\xbc\x9b\x84\x5e\xe2\x17\x53\x8c\xa7\x97\x84\x57\x6f\x03\xc6\xd3\x4b\xc2\xab\x2f\x86\xf1\xf4\x92\xf0\xea\x6b\xc5\x78\x7a\x49\x78\x15\x71\x8c\xa7\x97\x84\x57\xf1\x8c\xf1\xf4\x92\xf0\x2a\x05\xc5\x0a\xbd\x24\xbc\xca\x88\x66\x85\x5e\x12\x5e\x83\xa0\x5a\xa1\x97\x84\xd7\xe0\xa8\x56\xe8\x25\xed\xd2\x3f\xc6\xd3\x4b\xc2\x6b\x18\x51\xad\xd2\x4b\xc3\xab\x0a\xaa\x55\x7a\x69\x78\x55\x47\xb5\x4a\x2f\x0d\xaf\x3a\xa0\x5a\xa5\x97\x86\x57\x1d\x51\xad\xd2\x4b\xc3\x6b\x54\x54\xab\xf4\xd2\xf0\x1a\x1d\xd5\x2a\xbd\x34\xbc\xc6\x01\xd5\x2a\xbd\x34\xbc\xc6\x11\xd5\x2a\xbd\xb4\x5e\xff\x57\x31\x9f\x60\x3a\x32\x73\x94\xab\x14\xd3\x1d\xb3\x01\xed\x2a\xc9\x34\xc8\xd0\x3e\x6e\x41\x33\x9d\x99\x29\xfa\x55\xa2\xe9\xc2\xac\x47\xc1\x4a\x35\x6d\xcc\x06\x34\xac\x64\xd3\x3d\x17\x49\x46\xc5\x46\x37\xcb\xcc\x14\x1d\x1b\xe1\x4c\x98\xf5\x28\xd9\x28\x67\x7a\x5d\x60\xb9\x9b\x8c\x74\x16\x74\x62\x19\x35\x1b\xed\x8c\x6b\xd3\x0c\x3d\x1b\xf1\x8c\x8b\xd3\x7a\x14\x6d\xd4\x33\xae\x4e\xab\x68\xda\xc8\x67\x5c\x9e\x9e\x51\xb5\xd1\xcf\xe8\xe7\x86\xae\x8d\x7e\x46\x3f\xef\x51\xb6\xd1\xcf\xe8\xe7\x15\x6d\x1b\xfd\x8c\x7e\xbd\xa0\x6e\xa3\x9f\xcd\xd7\xb7\x02\xee\x41\x3f\xa3\x5f\x5f\x50\xb8\xd1\xcf\xe8\xd7\x57\x34\x6e\xf4\x33\xfa\x15\x41\xe5\x7e\x79\x07\xd2\xaf\x18\x3a\x77\xfa\x39\xfd\x4a\x41\xe7\x4e\x3f\xa7\x5f\xa9\xe8\xdc\xe9\xe7\xf4\x1b\x04\x9d\x3b\xfd\x9c\x7e\x83\xa3\x73\xa7\x9f\xd3\x6f\x28\xe8\xdc\xe9\xe7\xe5\xfa\x2a\xc3\x3d\xe8\xe7\xf4\xab\x82\xce\x9d\x7e\x4e\xbf\xea\xe8\xdc\xe9\xe7\xf4\xab\x05\x9d\x3b\xfd\x9c\x7e\x75\x44\xe7\x4e\x3f\xa7\xdf\xa8\xe8\xdc\xe9\xe7\xf4\x1b\x1d\x9d\x3b\xfd\x9c\x7e\xe3\x80\xce\x9d\x7e\x4e\xbf\x71\x44\xe7\x4e\x3f\xdf\xf7\x33\xde\xb5\xaa\x1e\xbb\xc6\x75\x77\xc0\xef\xd8\x5f\x3f\xf7\xbb\xf9\x7d\xdb\xda\x7a\x8e\xdd\x35\x36\x34\xec\x47\x87\xb5\x7d\xee\xd4\xa7\xe3\x09\x57\xc5\xcf\x3f\x01\x00\x00\xff\xff\x98\xa1\x0f\xb2\xd5\x07\x00\x00"); +func _fedd ()(*asset ,error ){_dcab ,_fbda :=_gbege ();if _fbda !=nil {return nil ,_fbda ;};_feee :=bindataFileInfo {_ee :"Ext-RKSJ-H",_ffd :13359,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491904,0)};_fde :=&asset {_da :_dcab ,_dc :_feee };return _fde ,nil ; +};func _efg ()([]byte ,error ){return _gb (_aff ,"Adobe-CNS1-5")};var _eefd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x4b\xeb\x65\x39\x96\xdd\xe7\xf1\x29\xce\xb0\x3d\xb0\xf3\x48\xfb\x25\x41\x10\x60\xba\x1b\x9c\x86\x6e\x37\x2e\xdb\x6d\x30\x1e\xdc\xc7\xb9\x49\x80\x33\x22\x88\xcc\x1c\xd4\xb7\x37\xfb\xb7\x6e\xa5\xab\x0b\x43\x0e\x8a\x95\xb5\x42\x57\x67\x6b\x6b\x3f\x25\xfd\x7f\xf8\xfb\x1f\xff\xe1\xc7\x2f\x9f\x7f\x3d\x7e\xf8\x97\xef\x5f\x1f\x7f\xba\x7e\x3d\x5e\x9f\xbf\x3c\xbf\x5f\xbf\x7c\xfd\xed\xfb\xe3\x3a\xee\xd7\x4f\x9f\xbf\x7c\xf8\x30\xe6\xf1\xfc\xfc\xf8\xf5\x2f\xff\x17\x78\xfc\x7c\xfb\xf6\xe1\x43\xff\xfe\x4f\x7f\xfe\xe5\xd7\xeb\xe7\x1f\xbf\xbc\xbe\x1e\xa6\x71\xcf\xdf\xbe\xbd\xc7\x1e\xc7\x0f\xff\xf5\xfa\xe9\xf3\x2f\xbf\x7e\xff\xf3\xf1\x77\xff\xf1\xf9\xf5\x7e\xfd\xbb\xe3\x79\xbd\x9a\xff\x2f\xdf\x9f\xd7\xf7\xcf\x5f\x7e\x3a\xfe\xee\x3f\xdf\xbe\xdd\xbe\x8c\xdf\xff\xe1\x4f\xbf\x7d\xfb\xf6\x7f\xae\x9f\xaf\x2f\xbf\x1e\x27\xdc\xf5\xe5\x09\x7e\xf8\xe1\xef\xff\xe9\xf6\xed\x9f\x6f\x3f\x5f\xc7\x0f\xff\xfc\xaf\xff\xf2\xef\xff\x13\x2c\xe4\xff\xb8\xbe\xff\xf2\xf9\xeb\x97\x63\x9c\xff\xe1\x3c\xf3\xff\xf1\xff\xed\xcf\xdf\xae\x63\xbc\x7f\xfd\x3f\xff\xfb\x8f\xff\x70\xfc\xaf\x71\x8c\xf3\x98\x61\x96\xff\xfb\xcd\xff\xeb\x3f\x7d\x7d\x5e\xef\x6f\x7d\x18\x92\xfc\xf1\xf5\x79\xfd\xf2\xed\xf6\xb8\xbe\xdf\xbe\xfc\x74\x7d\x38\x8e\x8f\x73\xcc\xf1\xe9\xf8\x58\xff\x58\xff\xf8\xa9\x45\xfa\x9b\x11\x1f\xc6\x79\xbe\x7f\xfa\xf9\x29\xea\x2f\x3f\x99\x23\xd7\xa7\xe3\x48\xb3\xa6\x72\x8b\xda\x9f\x8e\xf2\x5a\x50\x37\xa8\xba\x3e\x1d\x47\x9d\xf9\xe1\xe3\x9c\xfa\xe1\x9c\x50\xb3\x9a\x32\x46\x4d\x1f\x4d\xf9\x68\xca\x45\xc5\x09\xb5\x9b\x8a\x07\x54\x4f\x79\x54\x30\x57\x4d\xa8\xda\x4d\x15\x3f\xec\x4f\xbd\xe1\xa8\xea\x1f\x9a\x9d\x4d\x99\x31\x6a\x9d\x4d\x39\x42\x58\x30\xd7\x86\x4a\x51\xd5\xd4\x1a\x3d\xbd\x4b\x54\x2f\x6b\xca\xe7\x87\x8f\x33\x44\x45\xe5\xa7\xe3\xd8\x33\x3e\x7c\x9c\x29\x2a\x6d\x7d\x3a\xc6\x39\x5a\x88\xd4\xf4\x19\x50\xd6\xa3\x4a\xa3\xaa\xff\x65\x9c\xd1\x72\x55\x88\x2a\xa8\xdd\xd3\x6f\x8d\xda\xf1\xfa\x74\x1c\xd3\xa0\x12\xe9\x81\xc3\x10\x75\x4b\xd4\xcd\x1a\xe7\x6e\x51\x6f\xfa\xe1\x8d\x1f\x1a\x5a\xbd\xe9\x87\x37\x46\xd9\x6e\xb9\xee\x1a\x75\xef\x2f\x1e\x3e\x7b\xfa\xbb\x54\x08\x1c\x73\x07\x94\x89\xea\x1f\xc6\xd9\x5b\xfb\x98\xde\xd4\x23\x5f\x6c\x6d\x4b\xff\xd4\x5c\x4f\xbb\x3e\x1d\x15\xd1\x3f\x7c\x3a\x5f\x7c\x46\x36\xb5\xa0\x24\xc4\x93\x1f\xe6\xd9\x36\xf1\x2c\x51\xc5\xd6\xe6\x84\xd2\x5c\xc8\x55\x39\xa0\xa6\xa8\x09\xc5\x17\x25\xd7\xb3\x77\xbb\x72\x3a\xd4\x4d\x14\xfb\x98\x9a\xfe\x2e\xea\xd1\xa3\xac\xe7\xba\x24\x2a\x70\x24\xfb\x78\xcd\x29\xaa\xa7\xcf\x32\x28\x13\x65\x58\x8e\x28\x17\xe5\x4d\x0d\xfd\x30\x44\x05\x54\x40\xa5\xa8\x84\x2a\xa8\x12\x55\x4c\x2f\x21\x96\xa8\x0d\xe5\x50\x37\x51\x48\x3f\x16\xd4\x5d\xd4\xbd\x47\x6d\x7d\xf1\x21\xea\x81\xa7\x25\xd4\x53\xd4\x93\x51\x12\xf5\x12\x75\x31\x4a\x42\xbc\x44\xb5\x4d\x64\x32\x4a\xae\x70\xfd\x95\x2b\x5c\x72\xbe\xcb\xf8\xa2\x6d\x28\x7d\xd1\xf8\xe2\x16\xa5\x2f\x9a\xbe\xc8\xf4\xa6\x2f\x9a\x7c\x5b\x73\xe9\x8b\xc6\x17\x71\xe4\x4b\x36\x01\x1c\x35\x98\x4b\xde\x71\xfd\x95\xf3\x5d\xa1\x65\x07\x42\x10\x3a\x2e\xb9\x3b\x70\x14\x6e\x75\x85\x84\x08\x84\xc0\x0a\xaf\x90\x10\xc1\xb2\x5d\x3f\x94\x10\xb8\x42\x06\xd3\xcb\x0a\x81\x23\x1d\x15\xca\x87\xae\xbf\x72\xf7\x4b\x96\x03\x1c\x29\xe5\x94\x84\x28\x34\x91\x2c\xbb\x24\x44\x21\xc4\x42\x2e\xc5\x1c\xe0\x48\x82\xd5\x4b\x26\xf7\x92\xc9\x11\x01\x5e\x32\xb9\x17\xf6\x95\x2b\xa1\x5c\x94\x33\xca\xa1\x42\x54\x40\x2d\xa8\x14\x95\x1d\x27\x4e\xfd\xb0\x44\xd5\xef\x61\xe8\x25\xfb\x02\x8e\x4d\x04\x78\xcd\x2d\x6a\x43\x49\xae\x9b\xa8\x5e\xf6\xc6\x3b\x5e\x32\x39\xe0\xd8\x44\xf2\x97\x4c\x0e\x38\xf6\xd6\xa8\xa7\xa8\x27\x94\x46\x5d\xa2\x2e\x28\x09\xf1\x12\xd5\xba\xdf\x44\xb9\x97\x4c\x0e\x38\x32\x4f\x28\x29\xa7\xe1\xd8\x93\x05\x99\x94\xd3\x70\xec\xc9\xb2\xcd\x44\x19\x72\xe9\x87\xd2\x57\xc3\xb1\x09\x8f\x2f\x93\xbe\x8c\x80\x2c\x15\x9a\x94\x63\x28\x07\x57\x78\x99\x94\x63\x28\xc7\x24\x97\x94\x83\x2b\x6c\x6c\xf5\x25\x57\x00\x8e\xed\xac\xd1\xa4\x1c\xbc\x63\x3b\x6b\x94\x77\x00\xc7\x76\x4d\x2f\xe5\xe0\x1d\x5b\x06\x20\xef\x00\x8e\x1d\x9a\x5e\xca\x31\x29\x87\xe9\xe5\x1d\xc0\xb1\x09\xa2\x2f\x79\x07\x70\xec\x28\x12\xf2\x5f\xf2\xee\xff\x37\x15\xbf\x5c\xba\x73\x74\x27\x0d\xbb\x74\xe7\xe8\x8e\x18\xfb\x72\xe9\xce\xd1\x5d\xa2\x28\x97\xee\x9c\xf5\x26\xfb\xe0\x5a\xaf\xb3\xde\xd2\x28\xad\xd7\x59\x6f\xb1\x5e\xd7\x7a\x9d\xf5\x2e\x7d\x51\xeb\x75\xd6\xbb\xb4\x38\xad\x37\x10\x42\x06\x1f\x12\x22\x10\x82\xf0\xf6\x0a\x09\xd1\x70\xec\xcd\x17\x43\x06\x4f\x34\xd8\x5b\x3f\x94\x10\x0d\xe3\x24\x27\xbd\x14\x0d\x80\x71\x9e\xc8\xa5\x68\xf0\x92\xeb\x6b\x03\xe5\xfa\xaf\x24\xc9\x9e\x4c\x9f\xd2\x57\xc3\x38\x4f\x84\x48\xe9\x2b\x1d\x8a\x0d\x4c\xc9\xd5\x30\x4e\x32\xd7\x2b\x25\x57\xca\xd6\x90\x2b\x65\x6b\x29\x5b\xd3\x28\xd9\x1a\x95\xd1\x76\x94\xa3\xca\x08\x38\xb6\xeb\x8b\xb2\xb5\x94\xad\x49\x2e\xe9\x3e\x65\x6b\x9a\x5e\xcb\x4e\xd9\x9a\xa6\xd7\xb2\x13\xdd\x87\xa6\xd7\xb2\x53\xb6\xa6\xe9\xa5\xfb\x94\xad\x31\xbd\xf2\x2e\x70\x6c\xea\xa7\x97\xf2\x2e\x70\xec\x60\x7a\xe5\x5d\xe0\xd8\xa4\xe2\x97\xf2\x2e\x70\x6c\xf2\xc8\xab\xb4\x8f\x25\x63\xc2\x6e\x4b\xfa\x52\x65\x54\x08\x51\x52\x4e\xa1\x89\xd2\x28\x69\x82\xb0\xbb\x4b\x5f\xd4\xb2\x89\xb1\x7b\xe9\x8b\x5a\x63\xc9\x98\xfc\xc3\x47\x3b\x09\xa8\x82\x31\x3a\xe2\xd9\x49\x40\x15\x14\x25\xa8\x9d\xe4\x70\x3b\x3b\x8c\x8c\xd1\x41\xd0\x4e\x7b\x53\xf6\xe9\x28\xeb\x30\x62\x27\x61\xc4\xce\xf6\xf3\x31\x9c\xe9\xf1\x73\x41\x11\x89\xed\xc4\xcf\xed\x6c\x45\x8f\xd1\x5a\xb5\x13\x45\x0b\x8a\xa8\x6e\x27\x8a\xb6\xb3\xf5\x35\xe6\x89\x10\xa5\x2f\x36\x14\x09\xdb\xce\xd2\x17\x7b\xa9\x63\xb6\x31\xd9\x59\x9a\xfe\x5d\xa7\x20\x2a\xcb\xb6\xb3\x97\x3d\x66\x17\x12\xa6\x32\xdb\x46\x87\xf0\x31\x3b\x7d\xda\x20\x84\x0b\x8a\x0c\x61\x83\x10\x6e\xa3\xd7\x35\xe6\x64\x14\x71\x51\x50\xa4\x75\x1b\x1d\x23\x1b\xba\x2a\x9d\x6d\x98\x36\x08\x82\x82\xca\x37\xa5\xe9\x0d\x51\x51\xce\x90\x26\x46\x87\xb7\x22\xad\xdb\x20\xbc\xd9\xa0\x9c\x9d\x8e\x10\x84\x21\x41\xe1\x7c\x36\x08\x43\x46\x17\x30\x66\x40\xa5\x44\x4d\x14\xad\xe9\x53\xd3\x6b\xd9\x1d\x01\x4c\x4d\x82\xcd\xce\x6f\xc3\x86\x41\x2d\x51\x8b\x1f\x06\xd4\x16\xd5\xd2\x5b\xd7\x88\x36\xa5\x9c\x29\xe5\xb4\x0f\xd9\x94\x72\x66\x07\x85\x61\x93\xb9\x08\x0a\x82\xca\x0e\xe1\x36\x53\x5f\x6c\xfb\x1c\x56\x50\xa5\xb9\x4a\x73\x2d\x28\xcd\xd5\x9b\x36\x9c\xdd\x9e\xda\x34\xa0\x48\xfe\xa6\x1e\x44\x30\xbc\x13\xb6\x99\x16\x04\x0c\xef\x60\x65\x26\xf3\x35\x99\x6f\x3b\xb2\x99\xcc\x97\xee\x64\x78\x87\x21\x33\x69\x15\x48\xdf\xfc\xd0\xdf\xa3\x7a\x1f\x9d\xed\x30\xdf\xa2\xf6\xa7\x23\x4e\xd6\x68\x74\x50\x66\x84\x34\x47\x7a\x23\xa4\x09\x2a\x83\x1f\x12\xd2\xcc\xd8\x21\x2f\x44\xd5\x0e\x99\x76\x08\xbb\x37\xed\x90\x61\xe4\xbe\xa0\x64\xe4\x26\x23\x67\x6b\x4d\x46\x6e\x1d\x08\x86\x6f\x16\x54\x9a\xbe\x21\x48\xc5\x66\x04\x05\x33\x14\xed\x5b\x3f\x94\xa8\x52\x74\x07\x2b\x33\x29\xda\xa4\x42\x96\xad\x6e\xcc\x1c\xe5\xc4\xd9\xd2\xbb\x94\xe3\x32\xb9\x4e\x9f\xe6\x52\x0e\x10\x12\xc2\xc9\x7c\xe6\x9d\xc0\x46\xe0\x8f\x4e\x02\x13\x54\x86\x28\x36\xcd\x83\xe9\xb1\x1c\x0f\x4d\xdf\x90\xb9\xd6\x1f\xa6\x62\xf3\xd0\xd7\x51\x7a\xa0\x61\x97\xd2\xfd\xad\x74\x56\x22\xa5\x3b\x8b\x8b\x6a\x19\xd5\x57\x5a\xb4\xdd\x8e\xe8\x5a\xca\x42\x76\x0b\x54\x76\x70\xb6\xa0\x2e\xb3\xe8\x0a\x62\x24\x86\x15\x54\x10\x82\xca\xae\xb8\x2c\x5c\x73\x31\x7d\x12\x04\xd5\xa3\x0a\x46\xae\x0d\x35\x45\xa1\xbb\xae\x1a\x2c\x65\x7e\x49\xb0\xc9\x2e\xfb\x2c\xe5\x4f\x29\x7f\x4a\x51\xc8\x95\x5d\x3c\x0c\xba\x03\x4b\x4f\x51\x49\x7b\xe8\x50\x25\xaa\x85\x28\x09\x41\x3d\x20\xa8\xec\xa2\xc4\x32\x90\x3e\xdb\xbe\x46\xb1\x35\x49\x7e\x13\x14\x5d\x8b\xa5\xc2\x6e\xb6\xad\x8d\x4a\x46\xc9\xd6\x80\xca\xe4\x8b\x24\x20\xcb\xb6\xa2\x41\xff\x66\x29\x2b\x02\x2a\x3b\x4d\x59\x2a\xec\x02\x83\x0e\xc8\x52\x1e\x9c\xf2\xe0\xf7\xf4\xef\x2f\x22\x3d\x06\xaf\x06\xde\x6a\x22\x44\x17\x38\x56\x94\xef\x82\xa2\x3b\xb0\xa2\x7c\xb7\xea\x50\x3b\x6a\x41\x51\x8e\x0a\x2a\xbb\x47\xb5\xa2\x1c\xb5\x6a\xc3\x1c\x8b\x7d\x2c\xd7\x0f\x1d\x33\x21\x96\x95\xb4\x5a\x6d\xa4\x63\xcd\x13\xea\x12\x45\x02\x2a\x51\x68\x95\xc3\x84\xb1\x88\xfd\x25\xbb\x05\x8a\xee\xd3\x4a\x86\x59\xc1\x17\xc9\x95\x15\xfa\x62\xf0\xc5\x62\x8d\xa1\x2f\x76\x67\x36\x16\xdb\x51\x74\x66\x82\x1a\x4b\x73\xa1\xc2\xea\x9a\x69\x70\x2c\x62\x95\xd2\x44\xa2\x09\x74\x5f\xb2\xfb\xea\x72\x63\x2c\x5c\x81\x93\x8e\x37\x14\x2d\xb0\x55\x49\xd4\x2e\x11\xc6\x4a\x51\x5b\x14\x39\xa9\xab\x06\x2b\x05\x88\x2a\x34\x21\x51\xb5\x43\x40\x25\x81\x6b\x69\x87\x96\x21\x17\x21\x7c\x29\xd3\x03\x95\x6f\x0a\xb9\x96\x23\x17\x91\x65\xc9\x61\x80\xa2\xfb\xb4\xa5\xc8\xb2\x30\x80\x3d\x5a\xd1\x3a\x9b\xb1\x8d\x8b\x6e\xb4\xba\xe5\x0a\x5b\x2e\xda\x0d\xa9\x6d\xb9\xe8\xc6\x00\x36\x96\xb3\x65\x00\x5b\x06\x80\xc9\x6d\x19\xc0\x26\x96\x51\xf4\xda\xd6\x17\xb7\x62\x19\x8a\xde\x8a\x65\xbb\x75\x3f\xcf\xb3\x35\xb1\xa5\x7b\x20\x16\x61\x77\x53\x07\xdb\x6e\x1f\x9a\xa7\xf1\xc3\x7c\x53\x58\xb4\x84\x90\x0f\xed\xf6\xa1\x79\x92\x0e\xb6\x7c\x68\xcb\x87\xb0\xe8\x2d\x1f\xda\xbd\x1d\xf3\x24\xa0\x6e\x6d\xc7\xd6\x76\x50\x8b\x6d\x6d\x07\xe7\x4f\xf3\x24\x74\xe8\xfc\xc9\x6e\x6d\x72\xf3\xc4\xd3\x6e\x32\x39\xa0\x72\x89\xe2\x8b\xb7\x8e\x7f\x73\x74\xd3\x6d\x37\x0a\x68\x41\xd1\x15\xdb\x8d\x02\xda\x6e\x88\x3a\xb0\xc2\x9b\x44\xbd\xbd\x45\x2d\xa8\x10\xd5\x42\x0c\xf2\xae\x8e\xb7\xec\x3e\x99\x3e\x44\x95\x28\x4d\xbf\xa0\x96\xa8\xdd\xa3\x70\xf7\xbb\xa2\xdc\x5d\x51\x6e\xe9\x87\x77\x51\x77\x46\x89\x7a\x88\xa2\x62\x23\xb5\xdc\xe9\x8a\xed\xde\xdb\x39\x07\x36\x71\x57\x49\x75\x57\x49\xb5\x45\x69\x7a\x89\x8a\x0a\x1f\x12\xf5\xd1\x36\x31\x55\x19\x3d\x64\x13\x40\x71\xf4\x63\x0f\xcd\xf5\x70\x46\x61\xbe\x0f\xd7\x28\xd7\x28\x7e\xe8\xef\x51\xbb\x4b\x04\xea\x81\x87\x92\xff\xa3\xfd\x79\xaa\xa4\x7a\x44\x89\x42\x13\x6f\x4a\x73\xb5\x31\x4d\xa3\x2a\x7d\xc8\x98\x1e\x81\x5b\x91\x87\x1e\x9c\xa7\xd8\x03\xe9\x6d\x34\xa5\xb3\x3f\x7b\xb6\xbe\xa6\x51\x3f\x3d\xa5\xaf\xa7\x5c\x61\x8b\x42\x5f\xcf\x76\xb8\x69\x24\xb0\xa7\x4a\x50\xa0\x72\x8b\x42\xae\x67\x97\x1b\x53\x45\xdc\x53\xe5\xc6\x53\xe6\xbb\x45\x61\xbe\x9c\x10\x4e\x9f\xfe\xc7\xa9\x58\x07\x88\xc6\xa1\x61\x15\xe5\xc2\x53\x56\xf4\x64\x25\x4e\x2b\xa0\xa3\x41\xe3\x84\x6f\x4a\x77\x3a\xe1\x13\x54\x51\xe3\xe9\x84\xcf\xae\x6e\x2b\xa6\x53\x1b\x5c\x6a\x2b\x80\xaa\xee\x2b\xed\x52\xb0\xe1\x40\x6c\x3a\x6e\xa1\x03\x31\x41\x15\x1e\xac\x03\x31\xbb\x82\x2f\x12\xcb\x2e\x45\x62\xa0\x38\x25\xb7\x4b\x91\x98\x73\xad\xe9\xec\x96\xce\xb5\x04\x55\x94\x90\x3a\xd7\xb2\xab\x23\xf1\x0c\x09\xa1\x48\x0c\x54\xb1\xa7\x97\x22\x31\xc7\x53\x33\xa8\x2a\x75\x3c\x65\x9c\x0c\xcd\xa0\x91\xd1\xc9\x90\xa0\xea\x3d\x8a\x3d\x7d\xb5\x99\xcc\xa0\xe4\x7e\xc5\x16\xd5\xd6\x5d\xc4\xc5\x57\xe8\x87\x2d\xd7\x0c\xec\x56\x4d\xb7\xa0\x38\xbb\xb3\x97\xea\x6b\xba\xe2\x19\xec\xa9\xba\x62\x41\x71\xba\x6a\xea\x8a\x8d\xc6\x6f\x72\x5c\xec\x6a\xfc\x04\x33\x3b\xbf\xb9\x1a\x3f\x41\x55\x77\x07\xae\xc6\xcf\x4f\x67\x54\x07\x41\x3f\x5d\xa3\x5c\xa3\x1c\x4a\xa3\x5a\x21\x93\xda\xc2\x4f\x6a\x31\x41\x71\x9e\xeb\x27\x21\xc9\xcf\xce\x5c\x13\xf3\xf3\xb3\x24\x44\x69\xae\x84\xd2\x5c\x84\x4a\xd6\xe8\x27\xa1\xd2\x4f\xea\x58\xce\x73\x9d\x8e\xaf\xe1\x62\x54\xcf\xa5\x96\xce\x07\x51\xaa\xba\x56\xf7\x41\x94\x12\x54\x75\xa6\xf7\x41\x94\x12\x24\x35\x8f\xd3\x04\x7e\x74\xfa\xb7\x59\xac\x51\xfd\x9b\xa0\x6a\x8a\xba\x41\x79\xfb\x53\x75\xa0\xf7\xc1\x09\x8e\xa0\x6a\x4e\xa8\xa7\x28\xe4\xea\xd2\xc5\x07\x85\x84\xa0\xde\x72\x51\x9e\xf9\xc0\x0a\xab\x90\x2b\x34\x4a\x56\x38\x5b\xab\x23\x35\x8a\xad\xad\x85\xa8\x29\xb9\xb4\xb5\xdd\xad\xbb\xae\x82\x7c\x48\x13\xbb\x47\xa9\xcb\xf3\xd9\xed\xe5\x5c\xdd\xef\xfa\xe4\x24\x4d\x50\x35\x19\x45\xab\xe9\xd3\x19\xe5\x50\x92\x1e\x28\x8a\x4b\x9f\xae\x51\xe4\xca\xd5\xc5\xa5\xeb\xc2\x48\x50\x35\x17\x94\x7e\x98\xed\xc8\x94\x08\x3e\x39\xfa\x11\x54\x61\x5f\x13\x1f\xf2\xd9\x31\x67\xae\x8e\xd7\x3e\x69\xf3\x05\x55\x1d\x3a\x7c\x72\x9e\xe2\xb3\x83\xca\x5c\x5a\x10\x39\xc9\x67\x61\x4c\xec\xd0\xa4\xdd\x71\x3a\xc6\xb9\x3b\x9a\xb8\x3a\x46\x41\x95\x89\x92\xf4\x28\x87\x72\xc3\xd5\x31\xba\x61\x26\x1b\xfb\x32\x99\x89\xc9\x4c\xcc\xa1\x96\xa8\xc5\xa8\x05\xb5\x45\x61\x85\xed\xdb\x6e\x38\xb2\xdb\x44\x88\xa9\xb9\x9e\xa2\x2e\x46\x15\x14\x6b\x34\xd3\x28\x7e\xa8\xed\x30\x6d\x87\x6d\x28\x44\xb5\xd6\xc4\xe4\x78\xcb\x4d\x9a\x00\xaa\xde\x94\xa4\x47\x39\x9c\x20\xbb\x49\x39\x40\x71\xcb\xe7\x6a\x0f\x9d\x66\x6f\x72\xd0\xe7\x46\x7d\x2e\xa8\xea\xe2\xd2\x4d\xfa\xa2\x17\x34\xce\xfe\x5c\xbd\xa0\x7b\x8b\x6a\x54\x46\xee\x12\xd5\x25\xaa\x33\x4a\xa2\x7a\xa7\x4f\x3b\xd1\x97\x93\x3e\x05\x55\x2e\x6a\x8b\xda\x3d\xca\x99\x8b\xf4\x29\xa8\x7a\x53\x77\x51\x7c\xb1\x53\x9e\xab\x89\x14\x54\x61\x98\x6a\x22\x05\x76\x76\x4f\xef\x2e\xb7\x72\xb9\x95\x7e\x28\xb7\xf2\x0e\x9c\x76\x76\x87\xed\x1e\x9a\xbe\xc1\x03\x9b\x70\x99\xaf\x6b\xd9\x5d\x1a\xbb\xba\x44\x81\x9d\x44\xa6\x50\x2c\x0c\xc5\x42\xdc\x3d\x14\x0b\xa3\x2d\xc7\x46\x67\x3e\x0f\x59\x4e\xc8\x72\x5c\x3f\x5c\xa2\x9e\x8c\x4a\xa8\x4b\x14\x36\x81\xf4\x21\x9b\x88\xce\xe1\x36\x08\xb5\x41\x0e\x17\x54\xc5\xf8\xc3\x54\xec\x61\xfa\x7a\x6f\x87\x0d\xcc\x8f\x16\xf6\x0d\x55\xa8\x40\x9d\xac\x07\xbb\x35\x70\xb1\xd0\x6e\x85\x76\x2b\xf8\xba\x76\x2b\x7a\x6b\x6c\x60\x91\xa1\xad\x01\xaa\x02\x45\x29\xe2\x45\x2b\xda\x06\x56\x14\x21\xdd\xd1\x14\x55\x97\xb6\x1e\x21\x45\x05\x8a\x92\x56\x42\xa2\x36\xc4\x7a\x8f\x92\x10\x1d\x20\x6c\x68\x7a\x05\x88\x50\x92\xed\x9e\xde\x83\x24\xeb\x91\xa8\x33\x45\x49\x9d\x0d\x31\x4f\x16\xa4\x30\x12\x9d\x47\x6c\x10\x7f\x42\x79\x04\x08\xd7\xb2\x4b\xd3\x17\x9a\x58\x48\x5f\x12\xa2\xa4\x09\xb6\x59\xd9\x86\x36\xdf\x46\xd7\xc4\xae\x36\xdf\xd3\x10\xa2\x8b\x43\x4f\xf9\x00\x50\xd5\x35\xb1\xa7\x74\xcf\x25\xb5\x4d\x02\x7d\x2a\x57\xa6\x72\x65\x97\x2e\x9e\xca\x95\xd9\x3a\xb2\x49\x8c\x4d\xca\x77\x4f\xd5\x29\x39\xa0\x52\x54\x6f\xc7\xc4\x07\x52\xa6\x9c\x0a\xbb\x24\xd9\x54\xd8\xcd\x4e\x14\x46\xb5\xeb\x99\x12\xb5\xa1\xaa\x1b\x06\xcf\x94\x10\xad\x49\x9b\xac\x31\x95\x9d\x93\xee\x40\x59\x30\xe9\x0e\x3c\x3b\xb5\xd8\xc4\x2d\x52\xa9\x05\x28\x6e\x81\x3d\x53\x42\x14\x73\xb1\x1d\xa9\x60\x03\xe4\x92\x72\x14\x9c\x69\xf3\x6d\x76\xff\xe6\x6a\xf3\xbd\xda\x3b\x6c\xa2\xd5\x52\x40\x05\x8a\xab\x68\x2f\x8a\x25\xa7\x8f\x37\x6e\xe0\xbd\x94\x8a\x4b\xa9\x98\x5c\x59\x4a\xc5\x74\xd5\x66\x5d\xe0\x78\xc9\xbe\x80\xe2\xc5\x82\x97\xec\xab\x92\x51\xd8\x6a\xa9\x02\x29\x2d\xbb\x44\xbd\x47\x75\x3d\x10\xc4\xeb\x52\x92\x2d\x25\xd9\x6e\xba\xbd\xa4\x89\xea\x02\xda\x8c\x7d\x2c\x7a\x41\x41\x55\x37\xdd\x5e\x32\x4c\x7a\x67\x33\x54\xa8\xde\xd9\x57\x87\x0e\xb3\xee\x3e\x7d\x71\xba\x21\xa8\xea\x3e\xdc\x17\xa5\xb1\x2f\x62\x86\x2d\x51\x97\x28\xec\xab\xfb\x70\x5f\x8a\x19\x80\xd9\x66\x14\x97\x80\x82\x2a\xec\x7e\x99\xbe\x88\x7d\xd9\x86\x92\x7d\x01\x55\xdd\x87\xfb\x0a\x7d\xb1\xcd\xc4\x9c\xb8\xb8\x64\x26\x40\xf1\xc2\xc3\x97\x72\xf8\x6a\xbf\x31\x27\xc6\x2e\x65\x9b\xa5\x6c\xd3\x4d\xb7\x2f\x19\x00\x3d\xbd\x39\xc6\xa4\x9e\x5e\x60\xce\x1a\xb7\x02\xea\x9e\xd4\x03\x68\x62\x4b\x13\x7b\xf2\x43\xe4\xda\x5a\x23\x50\x9c\x06\xf9\xd6\x1a\x81\x18\xc8\xb5\xb5\x46\xc0\x9c\x2c\xb8\x4d\xd3\x1b\xd2\x53\x5b\x6c\x5a\x09\xdf\x86\xf4\x5b\x73\x85\x28\x49\x8f\x5c\x0a\xbb\xbb\x9d\xd7\x1c\x93\xdb\x8a\x98\x40\xa9\xf0\xe2\x44\xa1\xa1\x77\x28\xba\x49\xf0\xad\x9c\x04\x14\x47\x52\xbe\x95\x93\x36\xe1\x31\x08\xc8\x5b\xe1\x11\xa8\x5a\xac\x31\x24\x2a\xfa\x0a\x4a\x3d\xb5\xf9\x7e\xeb\x38\x61\x81\x2b\xdc\x14\x27\x80\xaa\x25\xca\x45\xb5\x15\xe6\xc9\x0f\x95\x2b\x6f\xca\x95\xdd\x3b\xfb\x4d\x72\xdd\xba\x95\xb0\xa4\x3e\xbf\xd1\x4a\x08\xaa\xd0\xd7\x4d\xd1\xe4\xd6\x81\xcf\x38\xcc\xf4\x9b\x02\x1f\x50\xd5\x0d\x87\xdf\x4a\x3f\x44\x54\xce\x4a\x5d\x87\x01\x02\x53\xad\x7f\xd7\xd6\xde\x95\x2b\xb7\x28\x13\xc5\xf4\x84\xa1\xbb\xdc\xfd\x2e\x77\xef\xd6\xcb\x75\x3e\xe0\x77\x92\x0e\x47\x65\x7e\x57\xd2\xb9\x2b\xe9\x60\xe4\x77\x25\x9d\x3b\x91\x89\x36\xce\xef\xf2\x47\xa0\x64\x5f\x77\x45\xa6\x7b\x67\x02\x53\xe1\x75\x57\xfd\x74\x57\xfd\xc4\xd6\xde\x55\x3f\xdd\x59\xb6\xaa\x99\xbb\x96\x0d\xf8\x78\x53\x9a\x9e\x65\x77\x16\xfd\xc3\x54\xac\x73\x07\x7f\xb0\x35\xca\x5c\x0f\x6d\xcd\xe3\xbd\x35\xa2\xd8\x1a\xce\x07\x6c\x9d\xbd\xde\x07\x8d\x9f\xa0\xaa\x3b\x77\x7f\x68\xb7\x38\x2b\xb0\xc5\x06\xea\xac\x40\x50\x45\x81\xf2\x50\x77\xf0\xc0\x83\x39\xc5\xf4\x87\x3c\x18\xa8\x75\x8a\x62\x1f\x1e\xac\x77\x91\x93\x1e\x5a\x2f\x90\x1e\xa2\xf4\x45\x1a\xac\x45\x65\xf3\x50\x83\x05\xd8\xc2\xf5\x1f\x2a\x21\x81\x7a\x4b\xaf\x12\x12\xb0\x45\xa6\x7f\xa8\xe4\x06\x6a\x51\x55\xea\x58\xc3\x9f\xb8\x2b\x47\x96\xfe\x94\xbb\x02\xb5\x30\xe5\xa7\xdc\xf5\xd9\x3e\x64\x0b\x1f\x78\xaa\xa0\x03\x6a\x51\x8e\x3e\xe5\x4f\x4f\xc2\xdb\xda\x1a\xe5\xa2\x9c\x51\x09\x15\xa2\xda\x64\xd4\x1d\x3c\xa5\x55\xa0\xb8\x91\xf1\xa7\x7c\xe0\xd9\xb1\xdf\xf6\xc9\x5c\x8a\xfd\x40\x2d\xfc\xfc\x29\x5b\xe3\x74\xc3\x36\xee\xaa\xd3\x0d\xbf\xb0\x5b\x5e\x2f\xf8\x25\xbb\x05\x6a\xd1\x61\x5f\xb2\xdb\xab\x10\x02\xd7\xbf\xa4\x68\x9e\xc2\xd4\xe2\x8b\x7a\x0a\xe3\x9c\x22\xf8\x69\x2d\x97\x4e\x11\x04\xb5\x68\x51\xf4\xc8\xc5\x79\xed\xe1\x27\xad\x80\x5e\x7b\x08\x6a\x91\x05\xf5\xda\xc3\x79\xbb\xe1\x67\x30\x97\xc2\x1b\x90\xdc\xe6\xbb\xde\x71\x38\x8f\x36\xfc\xa4\xdc\xd0\xa3\x0d\x41\x2d\xca\x51\x3d\xda\x70\x5e\x19\x38\x65\x72\xe8\xc8\x20\xce\x60\xfa\x0e\x36\x71\x52\xa7\x08\xac\x8b\xd6\xfe\xef\x82\x62\x41\xdc\x02\x87\x5a\xf3\xe0\xbe\xd3\x39\xa8\x0b\x2e\x3d\xdf\x50\x18\x79\xe8\xee\x33\x86\xe7\xa7\xc3\x67\x0b\x11\x83\xdb\x0e\x41\xad\x11\x50\x4b\xd4\xad\x47\x4d\x8d\xba\x8b\x42\xab\x23\xa1\x1e\xa2\x1e\x8c\x2a\x28\x7d\xd1\xf5\x45\x51\xfa\x22\xa2\x72\xbf\x1b\xea\x9d\x63\x8a\xea\x9c\x14\xea\x18\x83\x36\xce\xad\xa3\x54\xe8\xe9\xa3\xa0\xd6\x60\x94\x69\x54\xab\xd0\x6d\x89\xba\x89\xc2\xad\xc6\x86\x42\x54\x73\xe6\xda\x8c\x0a\xcd\x25\x23\x6f\x47\x0e\x0b\xcd\xd5\xe5\x9d\xfb\x9b\xba\x44\xe1\x56\x9d\x5a\xc2\x08\x0a\xc1\x1d\xa3\x7b\xb7\x61\xa1\x3b\x46\x41\xad\x89\xa8\x1c\xfa\x05\x5d\x9e\x93\xc3\x43\x5d\x5e\x70\x97\xe7\x24\xec\xd0\x5d\x9e\xa0\x88\x13\xe1\xdc\x9c\x84\x77\x04\xf1\x68\x77\x0f\xee\xdf\xde\x60\x67\x32\x2a\x35\x8a\xe9\x03\x21\xd4\x4d\x45\xb0\xdb\xd1\xc5\x52\x84\x76\x3b\xb4\xdb\x93\x51\xda\xed\xe8\x60\xe5\xd1\xf9\x2d\x68\x05\xde\x50\xab\x1b\xe5\x50\x47\x10\x14\xe3\x4e\x9a\x0a\x15\xe3\x02\xe7\x56\x33\x74\xe7\x26\xa8\x35\x13\x8a\xb9\xb2\x34\x0a\xaa\x34\xaa\x34\x8a\xb9\xea\x3d\xaa\xa7\xe7\x9e\x2c\x54\xa8\x46\x89\xea\xc6\x2f\x54\xc4\x05\x45\x9c\x73\x31\x13\x2a\xe2\x04\xb5\xa6\x46\xa1\x09\xca\x20\xe7\x3c\x25\x54\x06\x05\xcf\x4e\x9d\x87\x2d\xa1\x67\xa7\x82\xe2\x5a\x29\xf4\xec\x34\x76\x6f\x5a\x9c\x1d\xb6\x63\x6b\xd3\x80\x5a\x26\x0a\x15\xee\x2e\xad\xe3\x6c\x77\x0f\xae\x13\xde\x30\xb4\xb5\xba\x55\x08\x6a\x8b\x38\x51\xb4\x6a\x8b\xb8\xb5\xbb\xc7\xc9\x5c\x37\xdc\x5d\x50\xcb\x06\x14\xb6\x4a\x6d\x11\xdc\x50\x84\x6a\x0b\x41\x2d\x9b\x50\x6c\xda\x4d\xd3\x77\xde\x0d\xd5\x03\x71\x6f\xcb\x89\xc1\x17\xef\xb2\x1c\xa0\xb8\x14\x8b\x3b\x77\x6e\x71\xe7\x22\x7d\x74\xcc\x09\xb2\xfe\x1b\x6a\x99\x7e\x88\xf9\xde\xe9\x12\xb9\x42\x88\x3b\x55\xbc\xc0\x7c\x9f\x7f\x98\x8a\xe3\x4e\x46\x0d\x6a\x83\x18\x5d\xa1\x86\x6a\x03\x41\x2d\x43\x6c\x69\x18\x88\xd1\x79\x24\xee\xd2\xf0\x5d\xad\x66\xf1\x75\x2a\xfa\xe0\xe5\x6e\xcc\x13\xb1\x69\x22\x05\xc5\x5d\x5e\xdc\x4b\xeb\x2d\x35\xa4\x6d\x0c\xaa\x07\xe2\x21\x8a\x00\xa1\x2c\x18\xe4\x91\xa0\x6b\x09\xe5\x91\xb8\xd8\x1a\x1e\x34\xc4\xa5\xad\x01\x8c\x7b\xc1\xd0\x4b\xd2\xb8\x3a\x66\x84\xb3\x5b\x97\x62\xc6\xa5\x98\xd1\xc5\x4e\x5c\x8a\x19\x57\xcb\x15\x8e\x5b\x5c\x92\x0b\x18\x9c\x46\xc7\x45\xad\x1e\x64\x9b\xa0\x72\x0e\x65\x9b\xe0\x65\x52\x04\xe6\xa7\x97\x49\x82\x5a\xb6\xa0\x5c\x54\xff\x30\xba\x30\x4f\xa5\x83\x3c\xdb\xee\x23\xba\xa0\xcb\x93\x03\x7d\x41\x2d\xdb\x50\x05\xd5\x81\x2b\xb2\xa7\xcf\x93\xc0\x25\xa8\xe5\x50\xb8\x45\x9e\x2d\x6a\x70\x9b\x9f\x67\x69\xae\xd2\xe5\xb7\x28\xcd\x85\x10\xdc\xf8\xa5\x52\x4b\xf2\x6a\x27\xb8\x88\x4a\xbd\xda\x11\xd4\xf2\x01\xf5\x10\xd5\x2a\xe4\xe8\x39\x07\x21\x3c\x87\xd2\x67\x3b\x75\x0e\xd2\x67\x92\x0e\x82\x5b\x85\x54\x3a\x48\xde\xbd\x04\x17\xd6\xa9\x77\x2f\x82\x5a\x9d\xdf\x72\x6a\xfa\xd9\x7d\x65\x50\x00\xe7\xa4\xaf\x14\x4c\xbc\x2e\x27\xb5\x85\x20\x56\xf0\x43\x6a\x0b\x81\x8d\xd0\x0f\x35\x3d\xa7\x1b\xab\x03\x57\xea\x90\x54\x50\xcb\x91\x8b\xd2\x36\x49\x53\xb1\xda\x9f\x52\x69\x2a\xf5\x56\x65\xb5\xf9\xa6\xde\xaa\x08\x8a\x90\x94\x86\x8b\xa5\x75\x5a\x0f\x0e\x36\xd3\xa8\x9f\x04\x45\xa9\x97\x46\xfd\x94\x24\xa0\xe0\xd9\x68\x2a\x01\x09\x86\x77\x77\x90\x4a\x40\x49\x6a\x09\x1e\xe9\xa5\x52\x4b\x3a\x16\xbd\xbb\x5b\x4f\xc7\xa2\x05\xb5\x9c\x51\x58\x74\x92\x61\x82\x17\xae\xe9\x04\x08\x81\x73\xf7\x99\x9c\x2f\x7e\x4c\x12\x50\xf2\x52\x30\x95\x80\x04\x45\xbd\x99\x4a\x40\xe9\xed\xb5\x79\x4a\x08\xbc\x56\x50\x2b\x98\x4b\x2a\x24\x4d\x25\xd7\xb4\xa9\x34\x95\xd1\xa2\x26\x05\x4e\x86\x44\x0d\x89\xda\xd5\x4c\x86\x44\x05\xf2\xec\x34\x95\x41\x0e\x17\xd4\x8a\x09\x85\x01\x44\x2f\x28\xcf\xcd\x0f\xb5\x20\xa0\xb8\x51\xce\xd0\x82\x48\x66\x39\x3a\xa3\xa6\x92\x59\xf2\xe8\x23\x47\x37\x58\xa9\x47\x1f\x82\x92\x99\xe8\xd1\x47\xa6\x7e\xd8\x8d\x4c\x2a\x4d\x25\x8f\x05\x72\x22\x84\x1e\x0b\x08\x8a\x33\xb6\xd4\x63\x81\xd4\xe9\x86\x75\x21\x91\x3a\xdd\x10\x94\xec\x4b\xa7\x1b\xc9\xfb\x81\xb4\xc9\x0f\xc9\x95\x82\x5a\xf8\x63\x11\x14\x92\xc4\x98\xd6\xf1\x3a\x95\x18\x93\x97\x01\x69\xd8\x97\x5e\x06\x08\x6a\xb1\x20\xbd\x0c\xc8\x85\x0a\x2d\x35\xea\x2e\x4a\x2a\xdc\x50\xa8\x70\x15\x73\x55\xeb\x8b\x73\x87\x37\xd4\xc2\x26\x74\xfc\x90\x24\xd9\xe4\x54\x2f\x95\x64\x05\xe9\x2e\x6a\x8a\x9a\x5c\xd3\x1a\x94\x89\x7a\x32\x6a\x42\x5d\xa2\xe8\xb3\x70\x2b\x1d\x3f\xe4\x6e\xb9\x92\x20\x9a\x5b\x72\x01\x25\x4f\xdb\x54\x33\xb9\x83\x0e\x2a\x7b\x8d\x9b\xee\x42\x30\xde\x42\xd0\x5d\xe4\x96\xa8\x5d\xea\xa5\x52\x71\xde\x5a\x96\xa4\x58\xca\x1b\x85\x84\xc0\xb8\xcc\xcd\x1b\x85\x44\xde\x3a\x88\xb6\x79\x42\x95\x28\xea\xe0\x9c\x50\x04\x98\x5b\xcb\x95\x41\x94\xbb\x49\xae\x9b\xaa\xac\x2e\xcf\xf2\x46\x95\x95\xb7\x76\x85\x0c\x51\x72\x85\x9b\xa2\x09\x76\x7f\x53\x34\x21\xad\x67\x76\xe5\x9d\x4a\xeb\x79\xef\xf0\x98\x49\x04\xb8\x2b\x3c\xde\xd5\xb3\x65\xfc\xdb\x54\x1c\xfb\x6f\x33\x71\xde\xe9\xe8\xf2\x1e\x2d\x22\x8f\x06\xf3\xce\x89\xa5\x60\x04\xae\x79\x57\x60\xb9\xb7\xa9\x26\x8f\x04\xf2\xce\xf1\xa4\xa0\x16\x16\x73\xe7\xe8\x2e\x49\xb5\xc9\x0d\x77\xde\x95\x20\x80\x5a\x59\x50\xef\x51\xbd\x10\xee\x26\x53\x99\x38\xe9\xcc\x93\x4b\xba\x54\x67\x2e\x98\x5c\x3a\xa5\x3a\xf3\x7c\xa4\xae\x05\x7b\xae\x87\x1c\xe5\x21\x47\x61\x97\x1f\x72\x94\x07\x36\xca\xe1\x44\x3e\x64\xa3\x8f\xb7\x8d\x6e\xa8\x10\xd5\x42\xd0\x8f\xa6\x72\x7f\x3e\xfb\x8b\x49\x87\x92\x4f\x7d\x11\xa8\x45\xa4\xa4\xf5\xfd\x98\x5c\xd9\xa7\x76\x59\x57\xf6\x82\x5a\x35\xa0\x9e\xa2\x98\x6b\x6b\x94\xe6\x52\xc0\x2b\x51\x9a\x4b\x42\x90\x9c\x55\x6d\x24\x7f\x30\x93\x5c\x86\x25\x7f\x35\xf3\x86\x5a\x38\x9d\xfe\x78\x26\xf9\x23\x95\xdc\xdd\xb4\xa4\xfe\x48\x45\x50\xab\x98\x4b\x76\xc5\x75\x7a\xf2\xf0\x3f\x2f\xfa\x3e\x41\xad\xae\x0d\xf3\xa2\x78\x4b\xaa\x8d\xe4\x39\x73\xaa\xda\x48\x5e\x84\x17\xef\xc6\x53\x2f\xc2\x05\xa5\xc4\xa5\x17\xe1\x49\xb5\x51\x67\xcb\x55\xaa\x36\x8a\x27\xc8\x75\xb6\x01\x94\x9e\x20\x0b\x8a\x5b\xc7\xd2\x13\xe4\x3a\xe9\x63\xc6\x80\xa2\x1a\x15\xd4\x2a\x7e\x48\x88\xad\x93\xf2\x69\x74\x61\x54\x67\x68\x7a\xce\xe9\x56\x6d\xa8\x29\xaa\xed\x6b\x38\x73\xb1\x46\x41\xad\x2e\x40\xea\x64\x8d\xa5\x57\xc9\xa4\xf0\xd2\xab\x64\xc1\xa0\x00\x29\x0a\x9b\x37\xd4\x5a\xa2\x24\x04\x6b\x1c\x5d\x51\xd5\xfb\xef\x05\x87\xa8\xde\xda\x52\x01\x52\x54\x18\x35\x57\x42\x3d\x45\xb1\x1d\x4b\xa3\x2e\x28\xe2\xe9\xec\xfa\xa6\xb8\xfd\x7d\x43\x2d\xa6\xd7\x25\x70\x71\xe3\x5b\xd6\xde\x51\xba\xf1\x15\x0c\x0e\xbf\x4a\x37\xbe\x82\xe2\x96\xb6\x26\x86\x59\xb3\xf4\xd6\x9b\x2f\x6a\x8d\xc0\xb0\xee\x47\x4b\xb7\xb4\x45\x4d\x52\xd6\x16\x5d\xaa\x49\x4a\xbd\xad\xa1\x2f\xf5\xb6\x82\x5a\x2b\xa0\x50\xb4\xee\x26\xbd\x7b\xa2\xd2\xdd\xa4\xa0\x16\xcb\xa6\xcc\x78\x43\x79\xd9\xbf\x09\x3f\xfd\xdf\x3f\xdf\xbe\x7d\xf8\xfd\xcf\x3d\x1f\xbf\x7d\xff\x7e\x7d\xf9\x95\x3f\x2e\xe5\xef\x3a\x8f\xe7\xf5\xfa\xfc\xe5\xfa\xfd\x0f\x55\xbf\x7d\xfd\xd6\xbf\xe2\x7f\xff\x37\x00\x00\xff\xff\x37\xcb\x4a\x23\xd4\x3a\x00\x00"); +func _gfged ()(*asset ,error ){_cgb ,_dfef :=_dcbc ();if _dfef !=nil {return nil ,_dfef ;};_cabf :=bindataFileInfo {_ee :"CNS-EUC-H",_ffd :10002,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491600,0)};_abb :=&asset {_da :_cgb ,_dc :_cabf };return _abb ,nil ; +};func _fbg ()([]byte ,error ){return _gb (_ffea ,"Adobe-CNS1-3")};var _cef =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\xe4\x46\x10\x05\xf0\xbb\x3e\x45\x1f\x37\x87\x8d\xbb\xaa\xba\x5b\x2d\x10\x86\x60\xb3\xe0\xc3\x6e\x42\x9c\x7f\x10\x72\x18\x4b\x3d\x66\x20\xd6\x0c\x9a\x99\x83\xbf\x7d\x78\xf5\x34\x0e\xec\x61\x99\x9d\x67\x75\x49\xfe\x3d\x77\xeb\xee\xe1\xe9\xf1\x69\x39\x5c\xc2\xdd\x2f\xeb\x71\x7a\x6e\x97\xb0\x3f\x2c\xf3\xda\xce\xc7\xeb\x3a\xb5\xf0\xd2\x5e\x0f\x4b\xd7\x89\x86\xf9\x30\x5d\x6e\x5f\xfd\x63\x7a\xdb\x9d\xba\x0e\xeb\x9f\xdf\xcf\x97\xf6\xf6\xb4\xec\x8f\xc1\x78\xdd\x7c\x3d\x6d\xd7\x86\x70\xf7\x6b\x7b\x3d\x9c\x2f\xeb\x7b\xf8\xf4\xd3\x7c\x7c\x69\x3f\x84\xb9\xed\x91\xff\xbc\xce\x6d\x3d\x2c\xaf\xe1\xd3\xc3\xb7\x67\xf9\x88\x9f\xaf\xa7\xd3\xbf\xed\xad\x2d\x97\xa0\x9e\xb5\x65\xf6\xcf\xee\xee\xe1\xeb\xee\xf4\x6d\xf7\xd6\xc2\x9d\x4f\xfa\x8c\x75\x9f\x79\x91\xff\xec\x8f\xb6\x9e\x0f\xc7\x25\xc8\x8f\x31\xe6\xff\xe3\xdf\xde\x4f\x2d\xc8\x36\xe3\xaf\xdf\x9f\x1e\xc3\xdf\x12\x24\x06\xcd\xb9\x96\x7f\xb6\xfc\xcf\xaf\xc7\xb9\x85\x78\xbb\xd3\xd3\xe3\xc3\xf1\xba\x5c\x82\xf4\x25\x6e\x4b\x85\xbf\xd2\x74\x9c\xdb\xf9\xb4\x9b\xda\xba\x5b\x5e\x5b\x17\xc2\x18\x63\x8c\xf7\x61\x4c\xe9\xcb\x97\x7b\x3c\xed\x77\x57\x74\x65\xd8\x56\x1e\x66\x26\xb7\x15\x31\xee\xf7\xf7\x21\x76\x63\x14\x7e\x17\x7c\xd7\x5c\xba\x31\x2a\x13\x45\x92\x45\xbb\x31\x1a\x13\x43\xd2\x97\xda\x8d\x31\x31\x49\x48\x24\x6a\xea\xc6\x98\x19\x65\x8f\xb4\x62\x76\x61\x54\x3c\xca\x86\xe1\x3d\xa3\xde\xa3\x7e\xc0\xf4\xca\xa8\xfa\x13\xc4\x84\xf1\x03\xa3\xc1\x23\x8b\x18\xbf\x63\xb4\xdb\x9e\x13\xe3\x5f\x18\xbd\x78\x54\x05\xe3\x27\x46\x13\x22\x8b\x3d\xc6\xcf\x8c\x66\x8f\x4c\x31\xbe\x31\x6a\x1e\xe5\x8a\xf1\x7b\x46\x7b\x8f\x6a\x8a\xdd\x28\x94\x12\x97\x4a\x71\x28\xdd\x28\xc4\x12\xc7\x4a\x96\xb5\x1b\x85\x5a\xe2\x5a\xa9\xc4\xda\x8d\x42\x2e\x71\xae\x54\x4b\xea\x46\xa1\x97\xa4\xcd\x14\xe3\xe9\x25\xee\x95\xad\xc7\x78\x7a\x89\x7b\xe5\x62\x18\x4f\x2f\x71\xaf\x5c\x2b\xc6\xd3\x4b\xdc\xab\x48\xc2\x78\x7a\x89\x7b\x95\x14\x31\x9e\x5e\xe2\x5e\xa5\xa0\x58\xa1\x97\xb8\x57\x19\xd0\xac\xd0\x4b\xdc\xab\x17\x54\x2b\xf4\x12\xf7\xea\x13\xaa\x15\x7a\x49\xdb\xfa\xc7\x78\x7a\x89\x7b\xf5\x03\xaa\x55\x7a\xa9\x7b\x55\x41\xb5\x4a\x2f\x75\xaf\x9a\x50\xad\xd2\x4b\xdd\xab\xf6\xa8\x56\xe9\xa5\xee\x55\x07\x54\xab\xf4\x52\xf7\x1a\x14\xd5\x2a\xbd\xd4\xbd\x86\x84\x6a\x95\x5e\xea\x5e\x43\x8f\x6a\x95\x5e\xea\x5e\xc3\x80\x6a\x95\x5e\x5a\x6f\x7f\xab\x98\x4f\x30\x1d\x98\x25\x94\xab\x14\xd3\x1d\xb3\x1e\xed\x2a\xc9\xd4\xc9\xd0\x3e\x6e\x41\x33\x9d\x98\x29\xfa\x55\xa2\xe9\xcc\x2c\xa3\x60\xa5\x9a\x36\x66\x3d\x1a\x56\xb2\xe9\x9e\x9b\x24\xa2\x62\xa3\x9b\x45\x66\x8a\x8e\x8d\x70\x26\xcc\x32\x4a\x36\xca\x99\xde\x36\x58\xec\x46\x23\x9d\x39\x9d\x58\x44\xcd\x46\x3b\xe3\xde\x34\x43\xcf\x46\x3c\xe3\xe6\xb4\x8c\xa2\x8d\x7a\xc6\xdd\x69\x15\x4d\x1b\xf9\x8c\xdb\x33\x45\x54\x6d\xf4\x33\xfa\x25\x43\xd7\x46\x3f\xa3\x5f\xca\x28\xdb\xe8\x67\xf4\x4b\x15\x6d\x1b\xfd\x8c\x7e\x59\x50\xb7\xd1\xcf\xa6\xdb\xa9\x80\x7b\xd0\xcf\xe8\x97\x0b\x0a\x37\xfa\x19\xfd\x72\x45\xe3\x46\x3f\xa3\x5f\x11\x54\x9e\xb6\x33\x90\x7e\xc5\xd0\x79\xa2\x5f\xa2\x5f\x29\xe8\x3c\xd1\x2f\xd1\xaf\x54\x74\x9e\xe8\x97\xe8\xd7\x0b\x3a\x4f\x69\x3b\x53\xa7\x88\x2c\xc5\xea\x27\xeb\xed\x04\xc5\xff\xf1\xfe\xf9\x78\x23\x4c\xd7\x75\x6d\xcb\xc5\xdf\x3e\x7e\xe8\xe3\xcc\x3e\x2c\xed\xe3\x4d\x76\x3a\x9e\xb0\xca\xff\xfd\x17\x00\x00\xff\xff\x1b\x84\x37\x93\xf5\x06\x00\x00"); +var _ebcc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd3\xcf\x6e\xda\x40\x10\x06\xf0\xbb\x9f\x62\x8e\xe9\x21\x65\xff\x78\xbd\xb6\x84\x90\x1a\x90\x52\x0e\x69\xab\x52\xd2\x4a\x55\x0f\xe0\x1d\xa3\x95\xca\xda\x5a\xec\x03\x6f\x5f\xcd\x8c\xe3\xe6\x10\x7d\xe1\x67\x7f\xbb\x63\xbc\xac\xb6\xfb\xdd\x3e\xc5\x11\x56\xdf\x72\xdf\x1e\x70\x84\x2e\xa6\x90\xf1\xd6\x4f\xb9\x45\x38\xe3\x25\xa6\xa2\xd0\x06\x42\x6c\xc7\xb7\x8f\x1c\xed\xf5\x34\x14\xc5\xea\x98\xe2\xf3\xd3\xe3\x71\x7b\x30\x8f\x9f\x61\xba\xe1\xcc\xdb\xfd\xee\x70\xbf\x8d\x78\xdd\xa7\xae\x07\x2b\xf5\x30\x0d\xf3\x12\x00\xab\xef\x78\x89\xb7\x31\xdf\xe1\xe1\x53\xe8\xcf\xf8\x01\x02\x76\xe4\x5f\x73\xc0\x1c\xd3\x05\x1e\x9e\x9f\xf4\xa2\x87\x69\x18\xfe\xe2\x15\xd3\x08\x25\x1b\xa6\xc0\x59\xac\xb6\x2f\xa7\xe1\xcb\xe9\x8a\xf0\x7e\x96\x57\xbe\xc8\xd7\x5e\x31\xdf\x62\x9f\x40\x9b\x8f\x4a\xb9\xff\xfe\xe3\x3e\x20\xe8\x79\x91\x5f\xc7\xfd\x0e\x7e\x6b\xd0\x0a\x8c\xb3\x95\xff\x33\xfb\xcf\x97\x3e\x2c\x77\x99\x52\xc6\x6f\x63\xc8\xa7\x74\xc1\x62\x6d\x94\x2e\x37\x30\x87\x6b\x6a\x12\x53\xb1\x50\xb8\xa6\x29\xd6\xc6\x18\x47\xc2\xe1\xbd\xaa\x8b\xb5\x55\x4a\x6f\x60\x0e\xe7\x1d\x8b\x11\x31\x24\x25\x4b\x2d\xd2\x6d\xc0\xd5\x2c\x5a\xb1\x68\x6a\x35\x22\x56\xc4\xf2\xd2\x15\x53\x29\xe4\xa8\x66\x58\x2a\x11\x4f\x35\x53\xac\xbb\x8e\xb7\x97\x70\xbe\x66\xa9\x45\x1a\x6a\x29\x96\x56\xa4\xa5\x7b\x2c\x0b\x8a\x20\x6f\xe6\x89\xf4\x89\x49\x9f\xe9\xa6\x8a\x25\x88\x84\xb7\x87\xed\x3a\xdd\x09\xd1\x83\xf8\x86\xc4\x9e\x59\x28\xbc\x57\x42\xd2\xb3\xdc\xd3\x3c\x81\x95\x1e\x45\xa5\x58\x9c\xf4\x28\x5c\xc3\xdb\x39\xa9\x51\xb8\x86\x47\x72\x32\xa5\x93\x29\x4b\x22\xb4\x4c\xc8\xdf\x92\xd6\x74\x78\x96\x77\x48\xff\xd3\x99\x5d\x8e\x51\x3b\xe5\x8c\x69\xe4\x13\xcb\x07\x85\x5e\x7e\x4c\xb8\xfc\x28\x86\x7e\xa0\x16\xff\xfd\x0b\x00\x00\xff\xff\x66\xba\x5f\xa0\x40\x03\x00\x00"); +var _egdg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xd2\xcd\x8a\xdb\x30\x10\x07\xf0\xbb\x9f\x62\x8e\xdb\x43\x6a\xc9\xae\x1d\x19\x96\x40\x71\x0e\x31\xcb\xb6\xa5\xe9\xee\x16\x4a\x0f\xfa\x18\x07\x41\x2d\x09\xd9\x3e\xe4\xed\x8b\x46\xae\xcb\x1e\xc2\x24\xbf\xf1\xfc\x23\x4b\x2a\xfb\xe1\x3c\x38\xbb\x40\xf9\x2d\x7a\x7d\xc5\x05\x46\xeb\x4c\xc4\xd9\xaf\x51\x23\x28\xbc\x59\x57\x14\xbc\x02\x63\xf5\xf2\xef\x27\x15\x3d\xc9\x50\x14\xe5\xd3\xb5\x9f\xe6\xc3\xcb\xa5\x3f\x5c\xde\x0e\x17\x58\x67\xdc\x1a\xfd\x70\xbe\xde\xe7\x05\xa7\xc1\x8d\x1e\xea\x1c\x60\xd6\xb0\x85\x00\x94\xdf\xf1\x66\xe7\x25\xde\xe1\xe1\xb3\xf1\x0a\x3f\x80\xc1\x31\xf9\xd7\x68\x30\x5a\x77\x83\x87\x27\x1f\x51\xf2\xbd\x71\x5d\x43\xf8\x83\x13\xba\x05\x38\x19\x3a\x43\xb5\x28\xfb\x67\x19\xbe\xc8\x09\xe1\xfd\x82\x5e\xa9\x4d\xdd\x57\x8c\xb3\xf5\x0e\x38\xfb\xc8\x58\xfb\xdf\x7f\xdc\x03\x6e\x71\x45\xf9\xf3\x65\x38\xc3\x2f\x0e\x9c\x41\xd5\x7c\xe2\xc7\xdf\x9b\xbf\x3d\x7b\xb3\x3f\xc5\xdb\xfc\x0e\xda\x9a\x28\xdd\x0d\x8b\x47\xc9\x65\x75\x82\x54\xea\x13\x08\xd6\xb4\x44\x4d\xa6\x86\x48\x10\xb5\x99\xda\x13\x88\xba\x62\x44\x5d\x26\x45\x4f\x75\x44\x26\x93\x49\xd4\x56\x89\x54\x8e\x57\x99\xea\x44\xa8\x88\x90\x06\x8f\x4d\xf1\x28\x6b\xc9\x13\x51\x11\xec\xd8\x12\x89\x4c\x1d\xd1\x91\x48\x67\xd2\x44\x1d\x11\x66\xc2\x44\x22\xad\xab\x56\x92\x48\x8d\x44\x3c\x91\xa1\x7f\xa4\x22\x98\xa0\x2c\x63\x32\xd1\xba\x84\x20\x1a\x33\xe5\x41\x8a\x1f\xf3\xe0\x48\xf1\x1d\x4b\xc7\xb6\xef\x5d\xfa\x9e\x2e\xcc\x7e\x80\x7a\x8d\x11\xdd\x42\xd7\x85\x0e\x28\x6d\xba\x75\xb8\xdf\xc9\xe0\x43\x9a\xa2\xcf\xdf\x00\x00\x00\xff\xff\xc4\x43\xb0\x3f\xbf\x02\x00\x00"); +var _deeg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x41\x6f\x1c\x37\x0f\xbd\xef\xaf\x98\x63\xbe\x43\x3e\x4b\xa2\x34\x23\x01\x85\x81\x22\x41\x51\x07\x48\x5b\xd4\x49\x1a\xa0\xe8\x61\x76\x57\x72\x17\xa8\xd7\x8b\xb5\x7d\xc8\xbf\x2f\xf4\xb8\x7a\x74\x8d\x1c\x82\xcc\x23\x29\x8a\x8f\x12\x49\x79\xaf\xde\xdd\xbc\xbf\x39\x1e\x9e\xa6\xab\xdf\xce\x0f\xbb\xdb\xfa\x34\xb5\xc3\x71\x7f\xae\x8f\x0f\xcf\xe7\x5d\x9d\xb6\xf5\xee\x70\xdc\x6c\x7c\x98\xf6\x87\xdd\xd3\x80\xf8\x6f\x77\xbf\x9e\x36\x9b\xab\xcf\xc7\xc3\x87\x9b\xdb\xaf\x2e\x78\x79\xfb\xf9\xd3\x4f\x12\xde\xfe\x3c\x3d\x3f\xd6\x8b\xf6\xdd\xcd\xfb\xdb\x6f\x8f\x4f\xf5\xfe\xe6\xd8\x1e\x26\x51\x2f\xfb\xe7\xd3\xc5\xd3\x34\x5d\xfd\x5e\xef\x0e\x8f\x4f\xe7\x6f\xd3\x9b\x1f\xf7\x0f\xdb\xfa\xbf\x69\x5f\x5b\x97\xff\x7a\xde\xd7\xf3\xe1\x78\x37\xbd\xf9\xb0\x9e\xd6\xa3\xa7\xe2\xf6\xf9\x74\xfa\xa7\xde\xd7\xe3\xd3\xb4\x40\x56\x8f\x7b\xfc\xbf\xb9\x7a\xf7\x71\x3d\xfd\xb2\xde\xd7\xe9\x3b\x51\x7d\x81\x0d\x4c\xbe\xd4\xf3\xe3\xe1\xe1\x38\xf9\xff\x3b\x97\x4d\xfc\xe9\xdb\xa9\x4e\xfe\xe2\xea\xeb\xe7\x9b\xf7\xd3\x9f\x7e\xf2\x6e\x0a\x69\xf6\xe9\xaf\x8b\xfc\x8f\x8f\x0f\x7b\x5a\x79\xe7\x94\xc8\xee\xb0\xdf\xfd\xbd\x9e\x37\x3f\x38\xe7\x5c\x70\x3e\x5d\x4f\x4b\x2e\x81\x78\x06\x4e\x03\x07\xd5\x67\x62\xd5\x2f\x17\xec\x8b\xbb\x9e\x16\xc9\x84\xbe\xc3\x99\x30\x74\x58\x08\xa5\x43\xae\xdd\xc5\xeb\x29\x8b\xf7\xc4\x09\xd8\x11\xcf\xc0\x23\x36\x5f\x3b\x76\x2f\xf0\x02\x1c\x89\x33\x30\xfd\xd5\x02\x2c\x17\x2c\x65\x7b\x3d\xf9\xe0\x63\xa6\x60\x07\xc1\x6c\x82\xbd\x5a\x2c\x14\x54\x08\x92\xa3\xa0\xbd\x5a\xb2\x3a\x5d\x52\x28\xf0\xba\x64\xa6\x20\xbc\x5e\x22\x6a\x91\x28\x88\x2a\x30\x8b\xf4\x7a\xc9\xac\x16\x0c\x6c\xed\xdc\x5f\x1a\x64\x60\xd3\x17\x60\x0b\x62\x7d\xed\x71\xdb\x0d\x96\x40\xbc\x03\xf6\xc4\x7b\xe0\x41\x3c\xb9\xdd\xf5\xb4\x44\x5e\x8c\xe4\xf6\xc0\x0b\x71\x05\x9e\x89\x1b\xf0\xd8\x2f\xf9\x7e\x51\x92\x13\x62\x0f\x4c\x7f\x3e\x00\x47\x62\x01\xa6\x3f\x1f\xe1\xcf\x13\x27\x60\xf3\x37\x03\x07\xe2\x05\xd8\xfc\x65\xe0\x42\x5c\xe0\xdf\xfc\xad\xc0\xe4\xeb\xb7\xc0\xe6\xaf\xf3\x4f\xc1\xf6\xdb\x03\x93\xbf\xaf\xc0\xc6\xa7\x01\x73\xff\x00\xfe\x81\x7c\x02\xf8\x07\xc6\x13\xc0\x3f\x30\x5f\x28\xbc\x24\xf4\x87\xc2\x4b\xc2\xfd\xc3\x02\xcc\xf8\x42\x06\xb6\xfd\xc0\x8f\xc5\x96\x02\xf8\x89\xed\x0f\x7e\x62\xfb\x81\x9f\xe7\x7e\x82\x78\x3d\xed\x25\x22\x1f\xf4\x27\xd8\xcf\x71\x7d\x84\x7d\x64\x3e\x23\xf8\x45\xe6\x33\x82\x5f\x64\xbc\x11\xe7\xcb\x4a\x4b\x11\xfe\x59\x46\x29\x82\x7f\xe4\xfe\x11\xfc\xa3\xed\x07\xfe\x89\xf9\x88\x88\x27\x0d\xff\x73\x3f\xaf\x1c\x82\x27\xee\xf7\x39\xf8\x42\x5c\xa1\x37\xfb\x06\x3c\xe2\x5d\x9c\x56\xed\x32\x36\x5c\x7a\x5d\xe7\xe0\x2e\x0e\xc4\xe1\x42\xe4\x71\xc1\xc4\xe1\x42\x94\x51\xf6\xe2\x70\x01\xca\xa8\x58\x71\x48\x48\xf1\x99\x58\x80\xe9\x0f\x84\xcb\x08\x40\x1c\x08\x96\x41\x40\x5c\x2c\xc0\x61\xe0\x19\xeb\xc7\x85\x14\x97\x15\x33\x9e\xac\xfe\x12\xb1\xfa\x63\x7c\xb9\x02\x33\xbe\xde\x1d\x73\x58\xe8\xbf\x20\x81\x0b\xf7\x47\xa3\x9b\x45\x4c\x00\x42\x21\xf7\xa9\x36\xa6\xca\x26\x7f\x6f\xcc\x88\x5b\x35\x38\x92\x5d\x11\x9c\x90\xec\x8a\xe0\x5e\xf8\x06\x59\x61\x30\x3b\xac\x17\x92\xad\x8a\x49\xb6\xaa\x3f\x92\xad\xea\x8f\x64\x2b\xc8\x0a\xc9\x36\x3d\xbc\xb1\x5f\x68\xed\x7a\x0a\xe2\xd2\x08\x50\x9c\xeb\xb3\x67\xf4\x7d\x11\x27\x1d\x8f\x72\x11\x71\xbd\x65\xfb\x32\x9b\x01\x86\x17\x23\x14\x37\xab\x81\xa7\x60\x51\x41\xa2\x20\xab\xc0\x96\x14\x15\xd8\x26\xab\x0a\x66\x0a\xb6\x10\x2c\xb6\xeb\x4e\x05\x81\x02\xbd\x85\x34\x40\xdb\x2c\x91\x51\x78\x84\x19\x4d\x8f\x19\x2b\x86\x35\xca\x6c\x82\x0c\x03\x26\xc6\x6b\x90\x99\x3b\xa2\x90\x24\x91\x45\x6f\x64\x59\x78\xd4\x12\x90\xb9\x48\x52\x41\x33\xc7\xdc\x4b\xef\x74\x5d\x60\x1e\x66\x70\x30\x03\x1c\x66\x64\xe2\x7a\x2b\xcb\xc2\x4a\x13\xb4\xb2\xf2\x22\x82\xbd\x3a\x64\x08\xe2\xb1\x80\x21\x08\x6a\xdb\x39\x7a\x14\x3d\xdd\x48\x8c\x08\x46\x73\x12\x91\x05\x0b\xbc\x19\x64\x15\x30\x06\x29\x60\xc9\x18\x64\x55\x03\x73\xb1\x85\x81\xc5\xb4\x53\x03\x26\x5a\xf6\x2a\x60\x94\xd1\xab\x80\x4b\x22\x32\x6b\x51\xf5\x0e\x91\x25\x19\xd6\xa0\x82\x09\x50\x45\x76\xd8\x71\x45\xa2\xc8\x22\xe2\xb2\x58\xd0\x11\x47\xc9\x2a\x91\x84\x0a\xb7\xa3\x4b\x9a\x37\xcb\x53\x12\x15\x98\x45\x54\x01\x33\x9b\x10\x63\xe4\x8a\x05\x6f\x30\xf7\x42\xa0\x79\xb0\x20\x16\xcd\x43\xe4\x05\x5b\xaa\x0a\x78\x1f\x96\x86\x1b\x76\x71\xd1\x9a\x43\xa7\x1a\x65\xd3\x9a\x43\x6b\x5f\xa8\xf7\xfa\xf6\x19\xb3\xbe\x35\x6d\xd5\xe3\x6c\x5a\x13\x5c\xa0\xf1\x36\x69\x4d\xa0\x77\x74\x20\x0d\xdd\xc2\x0d\x9c\xd4\x3e\x11\x6b\x37\x99\x89\x75\xbd\xe1\xfa\x72\x54\xb4\x86\xee\x95\x73\xf9\x4f\xe7\x94\x85\x9d\xf3\xbc\x1e\xef\xea\x65\xee\xc8\xd6\x5d\x4f\xe3\xd3\xa3\x05\x27\x7b\x94\x51\x97\x5c\x3f\xab\x98\x39\x7f\xfb\xfc\x1a\x9f\x7d\xbb\xb8\x70\xb4\xf6\xde\x35\x3e\xf1\x8a\xca\xf6\xaa\x9b\x4d\x85\x07\x54\xe6\x80\xed\xed\x6a\x7c\x16\xa8\xcc\xe1\x6a\xaa\x2d\x54\xf6\xec\x10\xaa\x02\x26\xbc\x30\xf8\x5e\xa6\xe3\x13\x8f\x25\x6f\x8f\x0b\x4f\x95\xe0\x9d\xc0\xb9\x9c\x24\x99\x0a\x4f\x00\xc7\x30\x7a\x0d\x8e\x4f\xbc\x6e\xf8\xa7\x42\x12\xdb\x0b\x87\x99\xa2\x3d\x1c\x6c\x15\xea\x23\xb1\x79\x3a\x37\xc2\x10\xd7\xd3\xb9\xe4\xcc\x01\xc2\x6c\x88\xc3\x4b\xb6\x38\xaa\x7c\x34\x15\xc6\x92\xe3\x58\xf3\xb3\xa9\x16\x9c\xa5\x8d\x44\xff\xc2\x63\xc1\x85\x65\xd3\x75\x25\x51\x57\x66\x5c\x76\x4e\xbe\x66\xaa\x86\xae\xc5\x62\xf4\x6d\xdc\x0e\xf1\xad\xe8\xf0\x16\xea\x56\xd3\x35\xe8\xac\x24\x8d\xb6\xe0\x15\xe4\x8b\xb5\xce\x5e\x5b\xa3\xf1\x8b\xce\x1e\x56\xae\x5f\x4d\xa7\x2d\x38\xd3\x67\x7f\x0d\x8d\xf6\xec\x55\x67\x13\x21\x9b\x4e\xa7\x4b\xb1\xde\x6e\xfb\x89\xd3\xae\xcd\xc6\x20\xd1\x74\x49\x75\xd6\xe2\x6d\x5d\xd4\x75\xc1\xda\xa0\x98\x6e\x56\x9d\xb5\xc0\xad\xe9\xb4\x33\x05\x6b\xc8\xc6\x21\xa9\x4f\x9b\x9b\x29\x99\x4e\x7d\x8e\xd3\x6b\x8d\x77\xa5\x35\x54\x4e\x2e\x54\xa5\x46\xd5\x7c\xf9\x43\xd2\x5f\xba\x82\x36\x01\x80\xfb\xf5\xb4\xe1\x0f\x06\xbb\xe7\xf3\xb9\x1e\x9f\xf0\xf3\x04\x7e\x0c\xe8\x7f\xe0\x1f\x8e\x95\x3f\x84\x9c\x1e\x4e\x7d\x15\xfe\xfd\x1b\x00\x00\xff\xff\x3c\x91\x84\x09\x34\x11\x00\x00"); +func _eff ()([]byte ,error ){return _gb (_bdbe ,"90msp-RKSJ-H")};var _fecc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbc\x4b\xaf\x27\xbb\x75\x9f\x3d\xef\x4f\xb1\x87\x7e\x07\x7e\x55\x17\x92\x45\x02\x1b\x0d\x24\xbe\xc0\x42\x60\x27\x88\x9c\x0b\x10\x64\xc0\xab\x72\x80\xa8\xcf\x41\xeb\x68\xa0\x6f\x1f\xf0\x79\x4a\x8a\x2d\x38\x38\x83\xc6\xbf\xc9\x2a\x92\xab\xc8\xdf\xba\x2f\xee\x5f\xfd\xcd\xaf\xff\xf6\xd7\xdf\x7e\xf8\xf9\xe3\x57\xff\xe9\xfb\x8f\xfd\x37\xf3\xe7\x8f\xf5\xc3\xb7\xf1\x7d\xfe\xfe\xc7\x3f\x7c\xef\xf3\xa3\xcd\xdf\xfe\xf0\xed\xcb\x97\xf3\xfa\x18\x3f\xf4\x9f\xff\xd4\xe4\xa7\xff\xae\xfe\xf4\xe5\xcb\x1e\xff\x9b\x3f\xfe\xfe\xe7\xf9\xbb\x5f\x7f\x5b\x3f\x7e\xdc\xbe\x37\xfe\xf0\xd3\xfb\xee\xc7\xc7\xaf\xfe\xf3\xfc\xed\x0f\xbf\xff\xf9\xfb\x1f\x3f\xfe\xea\xdf\x8d\x1f\xdb\xfc\xff\x3e\xc6\x5c\xbb\xff\x3f\x7e\x1f\xf3\xfb\x0f\xdf\x7e\xfb\xf1\x57\x7f\xf3\x4f\xbf\x39\xff\xdc\xfd\x9b\x3f\xfc\xf4\xd3\xff\x9e\xbf\x9b\xdf\x7e\xfe\x48\xf4\xcd\x6f\x83\xdf\x2f\xbf\xfa\x9b\x7f\xac\x3f\xfd\x53\xfd\xdd\xfc\xf8\xd5\xdf\xfd\xf3\x3f\xfc\x87\xbf\xfe\xf7\xf1\xaf\xff\x81\x27\x3c\xf8\xaf\xf3\xfb\xef\x7f\xf8\xf1\xdb\xc7\xf5\xff\x1f\x47\xf9\xbf\xdd\xff\xfc\xc7\x9f\xe6\xc7\xf9\x4e\xf0\xdf\xff\xcb\xaf\xff\xf6\xe3\x7f\x9c\x1f\xe7\xf1\x71\xc5\x98\xaf\xff\xf9\xf6\xff\xb7\x7f\xfc\x71\xcc\x8f\xc3\xd6\x25\xe9\xfd\xc7\x31\x7f\xff\x53\xed\xf3\x7b\xfd\xf6\xdb\xf9\xe5\xe3\xe3\xf3\x38\xbe\x7e\x7c\x7c\x7c\xe6\xe3\xeb\x6e\xe5\x27\x1c\x5f\x3f\x3e\xff\xfe\xef\xfe\xfe\xef\xbe\x6e\x1a\xff\xe2\xfd\x2f\xa7\xd3\x7c\xfb\xf1\xe7\x31\x97\x7d\xcc\xf0\x79\xae\xaf\x1f\xe7\x1e\xf1\x2f\x1f\x7d\x39\x8f\xe3\x5d\xf7\x87\xd1\xff\x57\xfd\xfe\xe5\x33\x97\x70\x7f\xfd\x38\x9f\xe7\xcc\x34\x3a\x8d\xeb\xa6\x31\x76\xe3\x0e\xcf\x6e\xc4\x93\xc6\x91\x76\xa3\x26\x1a\x67\xa0\xd1\x68\x64\x26\xa8\x4e\xf0\x30\xa6\x3a\x41\xb6\x31\x7d\xc2\x6b\x7d\x39\xf5\xb1\x1b\xa3\x38\x35\x4f\x46\xdd\x8d\x7c\x46\x1a\x4e\x7d\xfa\x5a\xf7\x09\x14\x0c\xa7\x3e\xcf\xdd\x98\xd2\x76\x42\xf5\xbc\x78\xed\x62\xcc\xbc\x7d\xc2\x6c\x8b\xa9\xef\x6b\x8f\xa9\x7b\x5f\xcf\x27\x87\x48\x83\x09\xce\xe4\x93\xe1\x93\xbd\x4e\x8d\x92\xc3\x1e\xd4\x38\x6d\x6c\x42\xeb\x73\xda\x28\x34\xd8\x90\x8b\x0d\xa9\xcf\xc3\x93\x78\xd0\x70\x82\xc8\xd4\x4f\xf3\x35\xc7\xf8\x3d\xf1\xa2\xc1\xa2\x97\xb4\x3d\xae\x13\xf7\xf7\xd4\x9a\x6d\x30\x75\x4b\x36\xa0\xba\xb1\xce\xe5\x27\xb4\xf7\x35\xa8\x6e\xc5\x27\x50\xdd\xdf\x75\x68\x4c\x27\x48\xd0\x36\x99\xe0\x7e\xf6\xa2\xed\xdd\x90\x7c\xd3\x88\x4c\x50\x02\x0d\xc7\xe4\x44\xc3\x45\x4b\xa4\xe1\xa2\x1c\x70\x0b\x2e\x5a\x7c\xcd\xcf\x06\x14\x2d\xf8\xd9\xc5\xd7\x24\x27\xef\x3d\x68\x31\x7b\xf4\x2c\x1a\x99\x20\x3b\x81\x1b\x7f\x1f\x50\x10\xc5\x01\x1b\xdf\xd2\x7b\xda\x4c\x90\x9c\xe0\xda\xaf\xf5\xb4\x8f\xbe\x1c\xd7\xde\xd1\x0e\x76\xca\x01\x94\x3b\xd8\xc9\x25\xed\xd7\x06\x5f\x5a\x0e\x36\x64\x30\xe6\xb9\xef\x4c\xc3\xd9\xee\x42\x43\x58\x9e\x17\x0d\xc9\x09\x27\x8d\x69\x83\x27\x1e\xfd\x1d\x6e\x1a\xef\x6b\xac\xe3\x69\x97\xcc\x18\x4f\xfb\xe6\xb0\x46\x8d\x36\x12\x8d\x77\x51\xc8\xa9\x2e\x7a\xf1\x9a\xa7\x7d\x83\x9d\xd1\x85\x32\x70\x19\x42\x39\x1c\xfb\xc9\xe4\xb0\xf2\xf1\xec\x27\x73\x53\x1d\x4e\xd6\x9c\x10\x1d\x4e\xbe\x7a\xa6\xcd\x72\xe7\xc3\xf8\x09\xd1\xf9\x78\x22\x8d\x66\x23\xd1\x98\x5f\x3f\x2e\x0e\x67\xd6\xf7\xa5\x87\x46\xfb\xfa\x11\x2e\x0e\x6a\xb6\xf0\xf5\x23\x94\x83\x99\xc0\x5d\x3e\x60\xeb\xd9\x8b\x0d\x86\xf7\x0d\xe9\xc4\xbe\xcc\x71\xec\x11\xf0\xf1\x9c\x92\x9b\x6d\x2c\x1b\xd0\xbb\x5c\x30\xef\x89\x57\x7c\xbe\x7e\xdc\x37\x0f\x16\x30\x09\x42\x6b\x45\x17\x01\xa8\x2b\xbe\xe3\xf7\x27\xae\xf4\xd8\x88\x34\x18\x73\x1f\x85\xc6\x1e\x73\x9c\x50\xb9\xf6\xf1\xe5\xcc\x67\xad\xe7\x9d\x2c\x21\x5d\x5f\xa9\xf8\x6f\xc9\xc9\xd5\x0e\xdf\x64\x58\x7f\xbf\x81\xf9\x7a\x62\xa5\x64\xe3\xa5\x81\x65\x7b\xa5\x51\x0e\x1a\x7b\x07\x4b\xf0\xff\x1b\x0d\xe9\x96\x86\xf1\xbe\xc5\xa7\x22\xb1\xf2\x51\xd8\x83\xd5\x6d\xf0\xa9\x6b\xef\x67\x08\x08\xb6\xb5\xf6\x31\xc5\xbd\xa1\xe5\x88\x12\xb3\x99\xb5\x1c\x69\x7c\xfd\xb8\x8f\x2d\xf0\xca\x01\x4e\x43\x48\x89\x86\x3b\x55\xf2\x6e\x80\xd3\x00\x0b\x94\xe3\x3d\xe7\x52\x76\xc3\xf3\x3c\x0f\x66\xde\x6c\x13\x8f\x83\x07\xeb\xfc\xfa\x11\x9f\x7d\x04\xe5\x4c\xd1\x97\x4e\x1a\xd3\xc6\xb5\x1b\xcf\xdb\xb8\x77\xa3\x6e\x4e\x0d\xe9\xb6\x71\xf9\x64\x53\x79\xb6\x4d\xcc\x15\x1c\xd3\xdf\x25\x37\xcd\x57\x08\x7b\xcc\x73\x6d\x32\xaf\x14\x7c\x92\x68\x0c\x1b\x9b\xe6\xab\x9d\x1b\xa6\x81\xff\x5e\xfb\xbf\x7b\x8d\x8b\x99\xd2\x0d\xf1\xd7\xd8\xab\x1f\xe9\xa2\x31\x5f\x8a\x99\x76\xbd\xa4\xec\xef\xba\x93\xab\xb3\x95\x77\xad\x36\xf6\x87\xdd\xdd\xd7\xb6\x00\x28\xf7\x3b\xc1\xd6\x31\xe5\x9e\xef\x98\x40\xa3\xd9\xd8\xe4\x07\x64\x65\x3e\xb7\x92\x2a\x61\xcb\xca\x27\xdc\x7b\xe6\x20\xd0\xce\x73\x53\x1f\xc0\xc5\x91\xa2\x8d\x77\xfc\x26\x2d\x06\x3f\x72\x0b\xb7\x12\xa3\xd4\xf0\x05\x51\xa4\x9f\x5b\x43\x94\xd8\x5d\x66\x4b\xba\x12\xb7\xfe\x4c\xe7\x96\xe2\x25\xb1\x7d\xb1\x30\x3e\xa1\xb3\xf3\xb9\x45\x60\x49\xe9\x9d\x6c\xd3\x9c\x86\x1b\xbb\xc5\x4c\x49\x73\xaf\x19\xc3\x66\x8e\x92\x80\xdc\x79\x6c\x09\x56\x72\x7a\xd7\xdc\x4f\x32\x6a\x2d\x3e\x1c\x53\x06\x40\xf1\xe1\x64\x72\xbd\x6d\x3c\x34\x96\x0d\xc6\x6c\x49\xb1\x85\x16\xb3\x35\xb7\xf0\x6d\x24\x5f\x2b\x34\x1e\x9f\x30\xb5\x9a\xec\x8e\x4c\x8d\x26\x8b\x0f\xa7\x93\x9b\x9f\xf0\x3e\x69\x8a\xc0\x8b\x46\xf7\x09\x14\x70\x6e\xf1\xe1\xa8\x32\x62\x33\xa3\xda\x4b\xee\xc1\x27\x50\x20\x0f\x9f\x89\x09\x86\x6a\xc0\x09\x64\x48\xa4\x45\xc9\xaf\x0d\xe2\x04\x43\xbb\x25\x31\xc1\xf4\xb3\x39\xd2\x3c\xdd\x1d\x4e\x31\xbb\xa3\x0f\xa7\x90\xd7\x41\x83\x53\xcc\xcb\x23\x29\x7c\xe9\x92\x50\x8e\x34\x2f\x09\x85\xc1\x32\xa7\x10\x1f\xce\x37\xc3\xf8\x19\xd9\x5b\xf2\x52\xf7\xa4\xbd\x68\x09\x97\x7b\x10\x68\x48\x0e\xa7\x5d\xc0\x41\xbe\x38\x9f\x82\x82\x88\xcf\xe5\x6b\xc9\x27\x4e\xa0\x05\xb0\x45\x57\x29\xc1\x93\x03\x14\x25\x7a\x72\xa9\xd0\x50\x79\x3d\xc7\x2f\x48\xc9\x52\x92\xc3\xb6\x2e\x2a\x25\x09\x92\x0b\x22\x10\x13\xf1\xb9\x58\xf7\x79\x29\x62\xdd\x27\xdb\x60\x29\x64\x46\xbe\x80\x42\xa9\x6e\x10\x1c\x54\x40\x59\xbe\x38\xfd\x52\x5d\x27\x38\x26\xfa\x84\xa9\x5f\xdb\x34\x3a\xc6\x45\xef\xbd\xc3\xa5\x79\xc6\x0f\xdb\xf0\xe2\xef\x86\xd0\x26\xa1\x08\xaa\xd2\xd5\xe1\x0f\xeb\x74\xed\x4c\xa0\x50\x86\x2a\xf8\x61\xd1\xe1\x3a\x99\xa9\x5f\x5c\x3c\x50\x3d\x5f\xaa\x59\x47\x79\x8e\x71\x5b\xca\x94\x6a\x8f\x48\x89\x82\x82\x2a\x65\xbe\xb3\xf9\x04\x76\xc0\xec\x2d\x65\xca\x0e\xd9\xa9\x97\x07\x4e\x63\x89\xe6\x7b\x37\x6a\x78\x3f\x21\xd1\x40\xa4\x60\xad\x94\x1a\xc4\xd2\xb6\x2f\x4a\x8d\xf2\xd3\x36\x77\x4a\x8d\x52\xcd\x91\xd4\x84\x7e\xbb\x63\xa1\x71\xfa\x9a\x8d\x97\x36\x1b\xd2\x06\x07\xd4\xe4\xc9\x6d\x9d\x56\xea\x6b\x2f\x15\x1b\xd5\xd7\xa0\x2d\xbd\xac\xca\x3a\x8f\x30\x95\xb6\x07\x98\xde\xcf\x4d\x43\xab\xa8\xd8\xf0\xe4\xb6\x8d\x55\x6a\x75\xe3\xe1\x9a\x5a\x1d\x83\xf0\xaf\xaf\x25\x55\x6c\x14\xd7\x81\x82\xea\x31\xc2\x4f\xb5\x79\x24\x81\xa9\x9b\xac\x8a\x88\xd3\x6e\xce\x37\xca\xaf\xbe\xd2\x26\xb0\x8e\xd2\xe6\x9d\x0d\x69\x13\x9f\xe0\x6c\xdd\x27\x7c\x42\x13\x21\x9e\x42\x7f\xa7\xe6\x4b\x87\x8c\x1f\xd8\x6b\xb4\x51\x0e\x88\x84\x3a\x5e\x72\x68\xbc\x70\x89\xd0\x26\x5c\x02\xb0\xac\xd3\x03\x46\x60\xd6\xe9\x5e\xc3\x18\x75\xbe\x66\x22\x53\x4f\x45\x02\x5c\x52\x5f\x99\x02\x97\xd4\x25\xc8\x61\x8c\xba\xfc\x84\xb8\xc7\x68\xd3\xc7\x87\xd3\x6e\x2f\x76\xb6\x53\x50\x5a\x74\x51\xc4\xa2\xf6\x79\x7c\xd2\x4d\x03\x15\x16\xe0\x1f\xed\xf3\xf8\x24\x1b\xcd\x27\x91\x86\x78\x4b\x36\x86\x4f\x36\x39\x4d\x88\x85\x6d\xf5\x94\x86\x09\x7a\xa9\x5d\xdb\xab\x5b\xc0\x41\xdb\xf2\x20\x16\xc4\x50\xc3\x36\xbd\x8f\xdb\x21\xce\xec\x64\x8f\x33\x17\x1b\xa2\xc5\x99\xab\xe0\x85\x67\x9b\x66\x47\x28\x3e\x81\xce\xc8\x91\xb6\xea\x6c\x30\x56\x7b\xb5\x56\x66\xb6\xe6\x6c\xc0\xad\x61\xaa\xe4\x08\x9b\x36\xf4\xee\x51\x92\x0d\xb6\x20\x23\x97\x9b\x5a\x3c\x9e\x36\xba\x4f\xc2\x2f\xc9\xcb\x86\x7c\xc9\x11\x8d\xd4\xfa\x2b\xdb\x21\xaf\xbb\x2e\x66\x45\x03\x30\x39\x62\x56\x34\xc4\x50\xcc\xb0\x53\x53\x93\xc7\xd3\x46\xf4\x09\x5f\x8e\x8b\x1c\xb3\x1b\x3c\xe6\xd7\x8f\xe7\xcc\x3e\x58\x3e\x80\xd4\xc9\x99\x44\x34\x4d\xc3\x91\x8e\x59\x6a\xa6\x6b\x5e\xbe\xe6\x9a\x52\xa3\xae\xcb\x52\xa3\x2d\x14\x11\x22\x6d\x62\xd7\x66\x64\x40\x9b\x7e\x1b\x20\x6d\xcb\x09\x9c\x6d\xe3\x32\x64\x44\x40\x5b\x08\x94\x88\xb4\x6c\xf8\x35\x39\xc2\x4c\x1d\xed\x76\x06\x64\x55\x47\xbb\xe5\xf8\x36\xde\x31\x85\x06\x18\xcd\xef\x18\x30\x1a\x91\x48\x5d\x5c\x67\x64\x62\x8f\xf7\xd7\x8f\x24\x5f\xf4\xe8\xa6\x21\x0e\x7a\x74\xd3\x10\x07\x3d\x26\x9f\xd8\xe8\x36\x98\x39\xba\x9d\xe8\x95\x0e\x92\x23\x5e\x7d\xe9\x08\xcb\x1c\xe1\x73\x7c\xd0\xa8\x95\xd5\x93\x34\xc3\xe6\x5d\xc1\x19\xdf\xf1\xf9\xeb\x47\x2e\x60\xb7\x27\x49\x7e\xe7\x92\x64\x38\xb6\x23\x37\xef\x70\x3a\xb1\xc4\x6c\xff\xad\xf4\xf4\x12\xe3\x93\xe9\x13\xbe\x66\x73\x52\xce\x2e\xf9\x78\x34\x7e\x33\x06\x68\xcc\xc9\x86\xfb\xec\x32\x72\x52\x74\x32\x39\x29\x83\xf0\x5e\xdd\x1a\xb4\x79\xd7\x36\x8e\xc8\x82\x0e\x27\xc5\x0c\xc7\xf7\x2a\x69\xc8\x82\xde\x64\x04\x0c\x94\xbe\x25\x65\xc2\x07\x2f\x7d\x0b\xca\x4b\x41\xdb\xbb\x24\x63\xb3\x76\x90\x1e\x0b\x7c\xd4\xb7\xd0\x7c\xf2\xed\xff\x9d\x0a\x7e\xef\xd3\x93\x81\xc5\xfb\x94\x16\x58\xbc\xbf\x38\x43\x2d\x77\x8c\xa5\x58\xc4\xc9\x72\x19\xb4\xaa\x6e\xff\xa3\xde\x18\xca\xbf\x02\x82\x06\xa0\x89\xb8\x66\x65\x04\xc7\x14\xc7\x48\x1a\x70\x18\x51\x56\x29\x36\x4e\x9f\x44\x1a\xd1\x46\xa2\x21\xa1\x38\x5a\x63\x7b\xb1\x25\x25\xdf\xaa\xdb\xa3\x75\x95\x37\x88\xc1\x99\x19\x83\x88\x05\x00\x0d\x41\x93\xe0\xee\x91\x34\xe7\x39\xce\xf1\x68\x09\x20\xca\x86\xc7\x59\x80\xd3\xf0\xd0\x0a\x10\x32\x84\x90\x13\xfc\x30\x38\xb4\x58\x80\xc0\x50\xfc\x25\xf8\x61\xe0\xcf\xc6\x82\xb0\x19\xed\xb6\xc1\x04\x18\xed\x39\x05\x1b\x7e\x1a\xea\xc0\x80\x44\x4e\xc1\xc6\xe3\x13\x3e\x01\x91\x99\x13\x8a\xcf\x50\x45\x2c\x58\x95\x43\x9b\x1b\x5b\x66\x18\x1f\x48\x60\x78\x28\x3e\xcb\x73\xfd\x92\x90\x1c\x4a\xbf\x84\xea\x1b\xfa\xc4\x09\xba\xa7\x52\x21\x41\xf7\xd4\x43\x4a\x90\x3a\xdf\x6d\x84\xba\x89\x9d\x92\x0e\x14\xe9\x94\xdf\x12\x8c\x60\x88\x24\x1d\x4c\x3d\x09\xe9\xa5\x83\xcd\x9a\x8f\x8b\xa2\x92\x26\x46\x4b\xd2\x5f\x9e\xba\x72\xe9\xb1\xe1\x04\x92\x63\x24\x25\x01\xcb\x89\xb6\x4a\x87\xb4\xc9\x63\x09\x8c\x12\x63\xd9\x4f\x20\x54\xb3\x36\x65\x26\xf0\xec\x6e\x1f\xbc\x33\x33\xe4\x3d\x3a\x90\x3c\xab\x9b\x0d\x92\x09\xc6\x9c\x89\x50\x4e\x99\xba\x58\x29\x43\x9a\xa6\x4d\x42\xe8\x4f\x4c\x9b\x74\x48\x5a\x93\x34\xa9\xd1\x97\x4c\x08\xa3\x37\x68\x43\xf8\xa2\x4c\xf7\xfd\xc1\xce\x99\xc3\x2d\x28\xd0\xb6\xed\xd0\x72\x03\xf1\xb9\xde\xb7\x18\x8f\x91\x91\xf5\xd7\x26\x47\x95\x14\x86\x73\x33\x66\x3a\xa3\x0f\xa6\x0f\xf6\x90\xe5\x19\x3e\xf8\xdc\x0b\x61\x9e\x1f\x94\xd6\x42\xca\xde\x11\x0d\xbd\xb0\x42\x83\x47\xbd\x9e\xc3\xd7\xf6\x77\x2e\x3f\x5a\xd7\x6b\xb5\x97\x80\x42\x03\x44\xe8\x7a\xad\xbe\xc7\xa4\xcb\xa9\xfb\xe9\x13\x66\xdb\xba\xfb\x2e\x8f\x6f\x75\x1f\xf0\x96\xca\x55\x97\x6a\x0d\x02\x4a\x04\xb1\xca\x9a\xef\x93\xfd\x69\x6b\x15\x1b\xf1\xcb\x67\x3d\x82\xa4\xed\x6f\xab\x87\x8a\x0a\xa7\xa7\xbe\x71\x1a\x9c\x9e\x7a\x80\xcf\x80\x00\xa8\x87\xa1\x0d\x3c\xa0\x7a\x68\x0b\x6d\x02\xea\x21\xa0\x70\x80\xea\x81\x5d\x93\xee\xb7\xe1\xae\x6f\xcf\xa6\x1e\xd5\x65\x6e\xc6\xe8\xd7\xe2\xcc\xd4\x63\x48\xcd\xd6\xae\xf5\xd0\x3c\x38\x32\xa4\x0d\x8e\x30\x30\x5e\xab\x13\x4f\xa2\x1e\x5a\x9d\x47\x80\x98\x3f\xd9\x96\xcc\xbc\xde\x58\xe9\x1e\x7f\x6e\x1d\x7e\x6d\x91\x55\xcf\xad\xc2\x09\x36\x57\x24\xee\x15\x36\x55\x6d\xc6\xeb\xeb\x47\xc0\xf3\xe9\xd7\xde\xe2\x48\x78\xbb\xdf\x1b\x8a\x11\x7d\xd7\xef\x6d\x64\x47\x94\x62\x0f\x5b\x70\xc6\xb0\xad\xae\x9e\x36\x75\xe9\xd8\x2b\xf5\xac\x89\x42\x40\xbe\x67\x2c\xdf\x4c\x40\xbe\xbf\xde\x34\x01\xf9\x5e\xb6\xb6\x4f\x17\xff\xdd\xd2\x28\x1d\x5b\xb8\xf7\xba\x89\x4b\xe7\xde\x80\x91\xf6\xe1\xe6\x67\x33\xc4\x78\x36\xe3\x66\xc2\xd0\xa3\xee\xd5\xf2\xb9\xc5\xda\x40\xbe\x14\x18\x60\x36\xe6\x3f\xca\x3e\xcb\xd9\xb7\x09\x75\x9e\xc7\x16\x08\x73\x12\xf4\xb9\xf8\xb8\x75\x20\xf1\x4f\x30\xb7\x0e\x0c\xc1\x93\x78\xc1\x3a\xd1\xe0\x57\xda\x32\x7f\x5d\x48\xa1\xeb\xd9\x3c\xbc\x02\xa0\xbd\xe2\x9e\x7a\x25\xc0\x70\x95\x6d\x97\xae\x82\xc0\x04\xf5\xff\x52\x2e\x86\xf0\x17\x62\x71\x15\x0e\xfa\x4e\x1b\x35\xab\xc0\xc5\x37\x42\x7b\xe1\xd8\x5d\x84\xcd\x16\xde\xdb\x85\xa6\x5f\xf8\x2a\x4f\xe6\x95\x3d\xf8\xde\xd2\x71\xd5\x0d\x8b\xeb\xdc\x3a\x6e\x19\xd1\x4f\xc7\x71\xed\x46\x14\x16\x5b\xb6\xad\xa6\x95\xf1\xf0\x5d\xad\xbe\x4f\x78\x6d\xcb\x99\x9b\xb8\xdc\x7a\xad\x65\x1c\x86\xf5\x1a\xb7\xf8\x08\x0b\x03\x30\x11\x18\x5b\x6d\x29\x8c\xb6\x9d\xb9\xb4\xd2\x32\xfe\xc2\xea\x5b\xe1\x66\x30\xb0\x7a\x14\xe2\x5b\x50\xaf\xd7\x96\x7a\xb6\x59\xb1\xb4\x85\x12\x3e\xf1\xea\x2f\xf3\x6c\x6d\xb3\xfa\x23\xf8\xb7\xd0\x5c\x7d\x03\x2d\x84\xc0\x90\x97\xaf\xb7\x29\xb3\xfa\x36\x6d\xef\x73\xab\xf8\xd5\x5f\xec\x3f\x36\xfc\xc8\x07\xc2\x38\x7d\x92\x35\x4b\x13\x21\x3f\x5b\xca\x2e\x93\x01\x19\x3f\x64\xa1\x06\xd3\xbd\xb9\x6d\x0d\x76\xe2\x62\x8b\xc6\x16\x44\xf7\xb5\x1d\x97\x35\xfe\xb4\x06\x8d\x3d\xed\x7d\x6d\x41\xbc\xc6\x2b\x3b\x69\xc0\x2f\x6f\x50\x64\xcd\xf7\xab\xb6\x88\x5e\xd3\x84\x03\x5a\x6a\x11\xc8\xbf\x1f\x36\x72\x6a\xe1\x3d\x5b\x79\x2c\x14\xc6\x95\x19\xbd\x6d\xff\xe7\xc8\xff\xef\x78\xcd\x9b\x2b\xbc\x8e\xaf\x1f\x9f\xa8\xa3\x2f\x7f\xca\x35\xee\x93\xf8\x4a\xb2\x24\xee\xbe\x6d\xb6\x7e\x6e\x3a\xc8\x99\x10\xff\x87\x75\xf6\xcf\xa4\x8f\x20\xf8\xb3\x85\xd3\x67\x7e\xf0\x2d\x8a\x11\xeb\xec\x7c\x19\xb9\xf7\x24\x22\xf1\x79\xf3\xca\x67\xce\xc6\x89\x71\xbe\x72\x76\x6c\x26\x11\x92\xf3\x66\x89\x9c\xb7\x26\xdc\x3f\x55\x0e\x27\xd3\xe8\x7c\xc5\x6c\xdd\x63\x22\x30\x24\xfb\x8a\x7d\x85\xbe\x49\x1f\xf6\xda\x83\x8c\xce\x65\x6f\xee\x67\x2e\xa6\xd6\x10\xc8\xb9\xb8\xae\xe1\xa3\x07\x68\xe4\xd2\x5c\xc3\x58\x11\xdb\x9f\xcb\xe6\xd5\xfd\x43\xb8\xe4\x21\x3d\x51\xba\x63\xcd\xca\x3c\x7c\x2f\x0c\xb9\x7f\x5c\xa3\x98\xa8\x74\xbe\x61\xa6\xcc\xf4\xe9\x90\xbe\x69\xc6\xed\x84\x96\x2d\x75\xf7\x8f\x39\xb0\xcb\xbc\x66\xb5\xef\xcd\x82\xfa\x5e\xa7\x6f\xbd\xef\xd1\xb7\x95\xee\xfe\x79\xd3\x93\x66\x31\xef\xdd\x67\xf0\xe7\x39\x13\xa9\x44\xf7\xc5\x18\xd0\x73\x3e\x64\x14\x63\xb3\x8f\x28\xc6\x99\xcd\x73\x2e\xfa\x4c\x8d\x9d\xe4\x25\x6a\x82\xbe\x8a\xe2\x7d\x88\x52\xe6\xfa\x5c\xf6\x05\xb3\x9a\xe6\x3b\xb3\x7d\x26\x03\x39\xa3\xea\x3e\xd7\x6a\xea\xf0\x32\xad\x59\xec\x23\x4a\x73\xdd\xac\x51\xf9\xb6\x8a\x65\xfa\x5c\xb7\x19\x4f\xd7\x68\x26\x24\xc9\x9e\x10\x8c\xf9\xcc\x06\x5b\x9e\xcb\x0c\x6c\x77\xbe\x6e\xaa\xd1\xef\xed\x7e\xef\x70\x2c\xf9\x99\x3a\x92\x7d\x6f\x8e\xd6\x3e\x69\x36\xc1\x0c\x67\x66\x54\xc2\x67\xae\xd3\xb1\xe0\x94\x10\xcc\x67\xae\xc4\xdd\x9e\x6c\xb6\x78\x39\xdf\xbb\xf7\x8f\x09\x53\xbe\xb7\x19\x9d\xbd\x48\xe5\x34\xcf\xa3\x05\xc7\x66\xdf\x1b\xf4\x89\xd3\xab\x90\xdd\x8c\x8e\x45\xf4\x3e\x38\xd2\xb9\xc5\x68\x9f\x34\x17\x93\xa5\xec\x95\x21\x95\x27\x9b\x5a\x4d\x97\x7d\xbc\x67\x7e\xae\x25\xf6\xc5\x00\xc9\x53\xc8\xb1\x37\xcf\x43\x59\xfd\x94\x9b\x35\x3a\x38\x6d\xee\x41\xe2\x3c\x9a\x38\x6d\xb8\x54\x0f\x16\x77\xee\xf2\xe0\xeb\xf3\x9a\xfd\x46\x36\x7f\x66\x5d\xc7\x6c\x06\xb9\xbb\x86\x1e\x64\x2e\xe4\xe9\x7b\x45\x96\xf4\xfe\xf6\x6d\x6c\x74\xcf\xed\x15\xcf\x85\x8c\x75\xf7\xdc\xba\x61\x78\xbc\x9a\xdc\x07\x7b\xd5\x31\x4e\xca\x61\xbe\x77\xb2\xf7\x7a\x79\xe5\xb8\xc9\x8c\x06\xf6\x60\x44\xe5\x50\x34\xad\x0b\xcd\xaf\xcf\x85\x93\x93\x87\x34\x8f\x77\xaf\xc0\xcb\x48\xcd\xbe\x61\x9f\x63\xc1\xc1\x30\x36\x59\x1e\x73\xb9\x8f\x7d\xc5\x3e\xde\x7b\x86\x7d\xee\x33\x32\x62\xb8\x07\xc3\x58\x75\xe1\xcc\x47\x4d\xf6\xb9\x2e\xb2\x13\x27\xed\x33\xeb\x6a\x3d\x85\x33\x47\xad\x7c\xe6\x61\x0e\x0a\x7d\x9c\x71\xa5\x3e\xf3\xd0\xdc\x44\x7b\xe6\x21\xef\x0f\x3d\xdd\x03\x9a\xa7\x67\x34\x4d\xa5\x91\xfe\xc9\x53\x39\xa9\x27\x14\xc8\xe8\xe4\xe9\xf7\x4e\x23\x0b\x18\x36\x19\xbd\xb3\x7f\xa6\xa9\x63\x73\xc2\xce\xc7\x1e\x84\x33\x91\xdd\x75\x0f\x74\x7f\xc2\xf9\x26\x92\xbb\x7d\x24\x2a\x4f\x13\xbc\xee\xc1\xac\x8e\x65\x5f\xa6\x38\xd0\xc1\x09\xca\x9c\x29\xef\x4f\x1c\xd1\x70\x16\x73\xcb\xd1\xbe\x87\xec\xaf\xc9\xee\x06\x5e\x66\x37\x23\x7c\xb0\x6e\xaf\xf6\x75\xfa\x90\x9d\x53\x0c\x4d\x62\x0b\xe1\x22\x9f\x3e\x87\xb4\x80\xa1\x70\xb9\x07\x62\x68\xa2\xf8\x03\xf6\x6c\x9e\xcb\xef\x5d\xd0\x4c\x5a\x21\xcf\x25\xcd\xcb\xf7\x48\xa9\x2f\xf7\x79\x61\xfe\x85\xeb\x31\x6d\x5d\xed\xf3\x3d\xf8\x72\x89\xbf\xd7\x83\xb9\x39\xcb\x95\x7c\x0f\xac\x05\xeb\x58\x96\x58\x5b\x8f\x99\x6b\xf8\x63\xa9\x6b\x17\xb8\x0a\x84\xea\xf3\x72\x4f\x17\x31\xcb\xb0\x6d\x73\xb5\xfc\xbf\x51\xe4\xf3\xaa\xf9\xbc\x9a\x43\xb0\x2d\x83\x85\x14\xab\x67\xfb\x8a\xe9\x6b\x33\xd6\x1c\xff\x1a\xf6\x21\xce\xd6\x00\x26\x8b\x78\x60\xb0\x9a\x67\xa9\xae\x16\xee\x5e\x30\xc8\x8e\xe7\xf3\x59\x0e\x82\x6b\x21\xe0\x41\x61\x1a\xef\x1f\xde\x0b\xc4\x51\x0e\x44\x57\x39\xa2\x90\x25\xca\x7a\xa0\x72\xca\x01\x14\x43\x20\x90\x71\x3c\xce\x07\x9b\x85\x40\x40\x09\x87\x68\xff\x98\xd9\x7e\xcc\x5f\x9f\xf4\x09\xb1\x40\x42\x06\x8f\xe8\xb3\x1c\x42\x27\x10\xd6\x3d\x80\x4e\x39\x88\x2a\x85\x48\xb8\xe9\x40\xac\x94\x83\x1c\x5d\x30\xa0\x88\x9b\xb3\x7f\x58\x23\xe2\xd9\x9f\x7e\xdb\x49\x3c\x26\x44\x82\x02\x67\x4a\xf6\x71\x84\x09\xbf\xf0\xe4\x08\xcb\xf9\xbc\x7d\x99\xcc\xf7\x4d\x1f\x21\x92\x90\x08\x74\x9e\xdd\xf9\x50\x61\xc1\x28\xc5\x89\x28\x2c\xa7\xeb\x26\x82\x6e\x97\xeb\x5e\xf8\xc8\xc1\x4c\xda\x15\x22\x7d\x7a\x90\xe6\xb6\xae\xf4\xf6\xb1\x7f\xc6\xeb\xaf\xcd\xc3\x9f\xe5\x72\xaf\x1e\xe7\x73\xaf\xae\x6a\x1f\x6e\xfe\x55\xa1\xf9\xda\x6a\xf7\x62\xf7\xae\x06\xc5\x97\xd4\x19\xe0\xbe\xa4\xee\xc2\xa1\x0c\x99\xe8\xfc\x35\xd8\xa9\x4b\x86\xca\x7c\xd9\x05\x43\x95\x0b\xe3\x39\x50\xc3\x54\xae\xe5\x7c\x7e\x59\x26\x1a\x76\xfb\x65\x77\x72\x0d\x4e\xf2\x46\x59\x95\x5b\x8a\x0b\xde\xfd\x2d\xc5\x37\x91\x91\x60\xc0\xee\xae\xa0\xe0\xc6\x89\x0f\xc6\xcd\xee\xce\x1a\xb7\xb4\x20\xa8\xcb\x2d\x2d\xb7\xf1\xea\x83\xac\xd9\x3d\x5d\x83\x08\x62\x3c\x08\x95\xdf\x18\x55\xe5\x86\xbe\x78\x70\x92\x41\xfa\x82\xb9\xd3\x83\xe4\x64\xd8\xde\xd1\x67\x09\x26\x2c\xf1\x4e\x4b\x80\x41\x4b\x30\x04\x87\x6f\x5d\x82\x34\x07\x38\x2b\x52\xd8\x51\x42\x67\x8d\xe0\x1a\xf8\xa3\x25\xba\x46\x34\x43\x77\x12\xe7\x88\x18\x69\x25\x9a\xa8\x3b\x09\xb1\x44\x8c\xb4\x12\xe1\x98\x88\xa1\x55\x62\x72\xec\xf3\xf6\x31\xd6\x75\x23\x0a\x36\x5e\x84\x23\x63\x87\x13\x22\x06\x68\xb4\x4e\x22\x0e\x68\x8e\xd2\x82\x40\x2a\x49\x5a\x92\x59\x64\x4a\xa0\x4a\x12\x69\x09\x03\x25\x52\xd5\x54\x12\x86\x74\x49\x44\xd1\xa2\x09\xf3\x84\x22\x29\x49\x5a\xee\xcc\x7c\xd2\x92\x4c\x56\x98\xa6\x4f\xc3\xf9\xc8\x12\xc4\x00\x36\xd2\xe4\x7b\x93\xd9\xa9\x3f\x15\x21\x0c\xfb\x98\x2f\x10\x8a\xd5\x39\x29\x3a\x1d\x46\x09\x8a\x4e\x47\x79\x7c\xcf\x00\xb6\x4e\x47\xc9\x7e\x87\xa1\xc6\xbc\x35\xe1\xfe\x31\xe3\x0f\x17\x65\x14\x62\xc9\xa6\xa5\x93\x63\x95\x38\xf9\x31\x05\x46\x9a\x28\x3f\xd1\xbe\xb7\xe2\x82\x94\x3e\x46\x6e\xc9\x6f\x4d\x07\x1c\x98\x95\x4c\xaf\x63\x73\x12\xc0\xd6\xb1\x29\xf9\x2d\x7d\xb9\xad\x8f\x90\x96\xfa\xbe\x67\xfd\x83\xeb\x36\x4b\x00\xa2\xc5\x0e\xc3\x3e\x73\x51\x44\xc7\x72\x83\x53\xb3\xc1\xab\x53\x9a\xbb\xdf\xf1\x66\x1e\xc1\x41\xee\xd2\x67\xce\x11\xe3\xbf\xe4\x71\xdb\x67\xa9\xc5\x63\xdf\xfb\x9e\xd9\x44\xe7\x1b\xdd\x3e\xe9\x23\x44\x48\x04\x66\xff\xf8\x1d\x9c\x6f\x9e\x7e\x87\x61\x79\xb1\x9b\xa7\xf3\x4d\xab\x31\xb2\xb5\x10\xd3\x3e\x4b\x49\x8a\x45\x0c\x8e\x5d\x26\x6f\x93\xc5\x10\x7e\x87\x01\xc4\xb3\x58\x9e\xc0\xba\x3a\x7c\xf9\x7a\xcb\x1c\xb2\x7d\xd3\x3e\xf2\xea\xd1\xf7\x8c\x57\xc8\x0b\x05\xa3\xb9\x14\x53\x93\x78\xf1\xa5\x44\xf6\xb4\x18\x4b\xb8\xde\xba\x04\xdf\x33\x2a\x7c\x59\x02\x20\x9e\x8b\x3e\xf8\x45\x2e\xa1\x28\xd9\x8b\x19\xeb\x8b\xe0\x78\x79\x92\x7d\x8f\x7d\x96\x36\x14\xfb\xa4\xef\x2d\x50\x80\x07\xad\x87\xcd\x17\xfb\x5c\x94\xba\xa5\xf9\x6d\xec\x41\x51\xee\x16\x03\x9a\x97\x55\x19\xcd\xb1\x4d\xfa\x9e\xf3\x17\x95\x7d\x29\x4d\xf2\xfb\x3b\x84\x6d\xeb\x6f\x1f\x47\x43\x81\x5f\xc1\x51\xfd\x2c\xc5\x30\xef\x55\xac\x64\x08\xf6\x49\x02\x8a\xbd\x0c\x49\x10\x12\xf8\x29\xa5\x08\x09\x4b\x6f\xf3\x6d\x9d\x89\xa2\xb5\x18\x44\xc1\xa6\x29\x65\xf9\x9e\xd5\x2d\xf8\xb0\xa5\x2c\xb7\x5c\x9b\x95\x7a\xdc\x52\x3d\xea\x6a\x9c\xe5\xbe\xed\xe3\xb8\x6a\x34\x45\x6f\x29\x00\xf6\x55\xb1\x14\x37\x5b\x58\x84\xa3\xba\x7f\x2c\xa8\x48\x16\x20\x00\xe3\x6a\x14\xff\x26\xd8\x5f\x3d\x2e\x6b\x6d\xb3\x75\x20\xfa\xa6\xa5\xca\xa2\x8a\xae\x5a\x7d\xcf\x78\x84\x95\x17\x55\x95\x53\x3d\x2e\x8a\x9d\x4b\xf5\xb8\x2c\xca\xcd\x6f\x75\x42\x63\x4f\xab\x41\x75\xc5\x5e\x95\x1d\xab\x19\xdd\xc0\xbe\x54\xd9\x11\xd7\xf3\xcc\x14\xf5\x95\x3a\x8a\x7d\x6f\xa2\xde\x3e\xbf\xc3\x7d\x0e\x40\x16\xa7\x74\xff\x00\xbb\x70\x5b\x38\xe0\xbe\x98\x0b\x0b\x96\x81\x4c\x20\x56\x8d\x92\x06\xab\x34\x54\xc5\x15\xd6\xcb\xc1\x82\x08\x6c\xdb\x52\x4d\xbe\x06\x6b\x1c\x96\xeb\x7a\x46\x01\x5a\x9a\x67\x64\x71\x70\x56\x7c\x53\x0f\xbc\x7f\xac\x0d\x78\xeb\x09\xd8\xab\x37\x7c\x18\xde\x4a\x82\x68\x9f\x34\xa3\x9e\x5b\x9c\xf6\x99\x7b\x4f\xd6\x08\x70\x96\xcd\xca\x33\xd5\x41\x53\x2c\xb7\xb7\x72\x24\xd9\x17\xec\x93\x96\x62\x15\x41\xb1\xcf\xef\x20\x4f\xd7\x34\xbe\x5a\x55\xa4\x23\xce\x5a\x95\x16\xeb\x1e\x43\xb1\x4e\xc0\xef\x30\x5f\x46\x8c\xb4\xb4\x3a\xec\x33\x23\x48\x1a\xa4\x29\xaa\x9b\x38\xd0\x88\x6c\x4d\x9a\xdf\xea\x11\x92\x2f\xad\x55\xfb\xcc\x4d\x62\x7a\xe8\x63\x97\xa6\x7a\xb6\x94\xb2\xa9\x9e\x9b\xbc\x6a\x9a\xac\x0d\xdf\x1b\x66\xe3\x1d\x4b\xdc\xa2\x34\xc5\x77\x3c\x4d\xe4\x67\xfb\xde\x3a\x04\xbe\x6d\xb8\xf7\x16\x3c\xc7\xcb\x44\xbc\x7b\xf5\x66\x50\x2f\xb3\xfb\xee\xd5\x34\x8f\x6b\xf9\x80\xa2\xba\x4d\xeb\x03\x2e\xd3\xf3\xd2\xb2\xde\x62\x00\xd6\x50\x7c\x37\x31\x14\xc9\x56\xb5\x25\x2d\xcb\x2c\xb3\xc5\x1b\x4b\x5a\x2c\x66\xcb\x56\x08\xa8\xda\xdb\x9b\x99\x35\x35\x2f\xae\x7a\xf0\x7b\x2f\xb3\xfa\xc1\xbe\x64\x0a\x9f\x0c\xb4\xb8\xea\xe1\x4d\xcb\x93\x3c\x56\x46\x18\x2b\x8e\x19\x15\xdb\xe3\x63\x9f\xdf\xf6\xa6\xef\xa7\x7d\x56\x55\x04\x33\xef\xae\x91\x5c\xc3\xfc\xb9\x62\xbe\x3f\xce\x17\xcd\xa3\xdf\xf6\x59\x35\x80\xcc\xe9\x9a\x05\xfd\x71\xac\x49\x71\x4d\x80\x6e\x99\x4a\x36\x03\xae\x7c\xe9\x56\xb2\x65\x72\x4c\x5d\x4c\xf6\xfa\xce\x67\xaa\x3d\xd9\xe7\xf9\x92\xe5\xea\x35\xdb\xe7\x9e\x3e\x26\xde\xfd\x5e\x0b\xdb\xb2\xa9\x71\x55\x49\xb7\x42\x39\xa2\x4a\x7a\x73\x5d\x2b\xdb\xb2\x89\x72\x65\x53\xb7\x3e\xd2\x22\x8d\xae\xd9\xfc\xc6\x64\x22\xbc\xd5\x35\x29\x7a\xb7\xc8\x00\xb9\xd6\x87\xf3\x69\xce\x95\xc3\x3e\xf7\xef\xc5\xa4\x55\x02\x62\xd2\xd8\x4d\x24\xde\x54\xba\x32\xac\x4f\x53\xc9\xc8\xbf\x3e\x3d\xa3\x69\x1a\xfb\xb2\xcf\xfd\xd3\x3c\x2c\xd6\x50\x88\xc9\xbe\xde\xf7\xf8\xde\x55\xed\x13\x07\xd9\xb4\x3d\xf4\x0d\x65\x53\x7c\x93\xfc\x8f\x7d\x96\x41\x64\x73\xfd\xd5\x3e\x4b\x0b\xd0\x79\x23\x74\xfb\x2c\x1d\x30\xbb\xad\x99\x3b\xde\x4a\x91\x62\x02\x3f\xdb\x27\xaf\x52\xc9\x30\x34\xcd\x87\xa5\x4d\x09\x19\x31\x34\x29\x86\x66\x41\x62\x0f\x86\x6e\xc2\x78\xf3\xc0\xf0\x82\xf1\xa1\x62\x7c\x28\x13\x73\x2b\x43\xd9\xe4\xa5\x80\x58\xe2\x2f\xfb\xf6\x65\x54\xc9\xaf\x92\x1f\x9d\x7a\xda\x67\x4a\x1c\xb6\x18\x42\x62\x34\x13\xdb\x96\x3e\x34\x3f\xc9\xac\x29\xc5\xfa\x65\x34\xe7\x6b\xce\x47\x55\xc7\xd0\xf2\x1c\xfd\x2d\x1a\xa0\x82\xa0\x3b\x9f\x21\xaa\x64\xf5\x42\x97\xfc\x37\xa7\x6c\x75\x82\x22\x6e\x74\x3f\xe9\xb1\xcf\x6d\xd3\x1c\x49\x96\x41\x10\x7b\x28\x43\xb1\x57\x80\xfb\x50\x4d\x0e\x33\x97\x84\xda\xca\x50\x14\x8e\xf1\x16\x13\x40\x8b\x1e\xcd\xd0\x8b\xe0\xca\x45\x19\x8a\x1a\x43\x63\xc9\x92\x78\x43\x63\x65\x12\x9a\x4d\x07\x62\x6f\x2a\x6a\x66\xf4\x3d\xa0\x38\xf5\xae\x66\xf2\x3d\xac\xb8\xa9\xb8\x98\x98\x19\xe9\x88\x96\x19\x24\xfb\x3c\xea\x64\x81\x01\xdf\x36\xcd\x51\xa7\x64\x99\x80\x63\xf5\x22\x12\xa6\x87\x21\xb4\x62\x0e\x27\x11\xaa\x2c\x86\xcb\xca\xac\xae\x6b\xf5\x82\x1e\x83\xd7\x31\xd2\x01\x7b\x1b\x42\x2b\xb3\xbe\x29\x7e\x68\x16\x07\xb3\x9a\xc2\x7f\x2c\x28\xe0\xdc\x66\xb3\xb2\x01\x16\x9d\xaa\x2b\x43\x6d\x39\x65\x0b\x07\xfc\x0e\xe2\x25\x89\xab\x20\x65\xaa\xc2\xe6\x8b\x0d\x4b\x02\xf4\x4a\xe6\x5b\xee\x01\xfb\x4c\xb1\x31\xcd\xaf\x1f\x16\x32\x88\x8d\x69\xf5\x75\xc2\xea\x9f\xdd\xef\xe8\xee\x1f\xa6\xd6\x14\x1b\x44\xf0\x76\x1f\xfb\x22\x36\xe6\x8b\x0d\x3c\x01\xc3\x79\xc5\x70\x5e\x4e\xc5\xf2\x04\xcf\x68\xf8\x6d\x88\xb3\xa9\x48\x9a\x9a\xaf\x0f\xe6\xd7\x14\x2f\x73\xf8\x6d\xd2\xa2\x98\x9a\x62\xe8\xc1\xb3\x98\x62\xc8\x50\x60\x32\x2e\x65\x28\xb0\x4c\x4c\xa8\x64\xf5\xfe\xd4\x84\x32\x3c\x98\x2c\xd5\x9f\x7a\x2f\x73\x99\x8f\x3b\x7c\xaf\xd8\x57\x2d\x76\xa0\xa2\x40\xfc\x2d\xf1\x77\x22\x06\x96\xf8\x5b\xd4\x0a\xa4\x93\x32\xce\x15\x8a\x7d\x8e\x25\x5a\xb0\x54\x7f\x4b\xf5\x67\x79\xfb\x52\xfd\x79\x0d\x26\x9d\xa8\xd3\x95\xd8\xfb\x25\x4e\xad\x96\xe7\x6a\xcc\xfe\x79\xcb\x2b\xac\xa8\x70\x8d\xe4\x58\xb0\xb6\x1e\xc7\x5a\xa1\x72\x5a\x12\x21\x26\x97\x85\x26\x27\x67\xb4\xc4\xcb\x42\xbd\x24\x3d\xb3\xa5\xdc\x58\x60\x23\x5d\x98\x23\xab\x83\x35\x2f\xc2\xa4\x4b\x9a\xe5\xf3\x65\x41\xc9\x65\x09\x85\x91\x81\xe5\x19\x5d\xb7\xd5\x17\xd2\x37\x7d\xcf\x6f\xd3\xf4\x5d\xec\x73\xd2\xe3\x5a\xaa\x83\x25\x9f\x5f\x89\x5a\x0b\xd4\x41\x3d\x30\x1f\x12\xa1\xd9\x7a\xe0\x39\x56\xe3\x93\x89\x34\x4f\x35\x3e\x59\x0f\xf9\x1c\x17\xa8\x1e\xf0\x79\x3d\xde\x24\xf3\x41\x51\x04\xb1\xb4\x7a\xc0\xbf\x89\x8b\x8f\xf5\x78\x9c\xcf\x0a\x20\xae\xa0\xd5\x83\x10\x78\x35\x3e\x99\x6e\xeb\x3e\x50\xf7\xd5\x6b\x36\xe9\x7e\x2b\x36\x1c\x4b\x3c\x36\xdd\x16\x5e\x74\x69\x01\xe3\x89\x0a\xeb\x7a\x0c\xbf\x63\xf8\xde\x63\x9f\xef\x0d\xd7\x78\xac\xd3\x38\xe8\xc3\x43\x4f\x94\x6a\xd7\x83\xbd\xaa\xc7\x74\xdd\x42\x3d\x08\x6a\xb7\x1e\xba\x09\x54\x8b\xd7\x03\x37\xa1\x1e\xba\x09\xd4\x48\xd7\x63\x49\xb3\x66\x1a\x65\xcf\xd5\x18\x68\x3d\xb7\x16\xdc\x0c\x58\xcf\xad\x08\xf7\xcf\xde\xa8\xdb\x81\x27\x2e\x76\xf5\x1e\x10\x95\x2e\xdc\x02\xfa\xac\xa7\xec\x72\x51\x2f\x92\xed\xa1\x56\x64\xcf\x64\x98\xb3\x12\xaa\xa4\xc0\xbf\x1a\xa8\xac\x84\x0c\xb9\xea\x57\x0d\x18\x56\x82\x83\x61\x03\xa9\x1a\x1a\xac\xf7\x16\x50\x54\x18\xd7\x1b\xf1\x54\xef\x2d\x91\xb0\xcd\xab\x61\xbc\x4a\x78\x0e\x2d\x5e\x0d\xce\x55\x02\x71\x84\x7d\xaa\x61\xb8\x4a\x28\x8d\xfb\x71\xd5\x40\x5a\x25\x40\x46\xcd\x6b\x35\x3c\x56\x09\x71\x95\x0d\xed\x6a\x80\xab\x12\xa4\x2a\x00\xcc\x10\x55\x35\x44\x75\x6c\x1d\x59\x8d\x50\x55\x23\x54\xe7\x55\x7e\x51\x9b\x57\xe3\x57\xd5\x38\x12\xb9\xd2\x6a\x18\xa9\x7a\xf5\xe3\xa2\x7a\xc7\xc8\x48\x35\xca\x70\x6f\x91\x5b\xcd\x66\x57\xbd\x6a\x1c\xbb\xaa\x53\x5d\xdf\x5a\xfa\x6d\x04\x54\xfd\xdd\x5a\x5f\xa5\xb8\x07\xea\xd6\x55\x53\x84\x69\x7b\x4d\xd5\x0c\x61\xd5\x4a\xa7\x7c\xbc\x6a\xa4\xd7\x37\xc9\x17\x37\x88\xb5\x6d\xab\x25\x97\x05\x9e\x18\xbe\x45\x1a\xec\x3a\xb6\x18\xac\x5a\x39\x15\x35\x7c\xa1\x95\xaa\x5a\xb8\x7a\xd7\x90\xeb\x89\x55\xc5\x57\xc9\xaf\x5c\x17\x7c\xa3\xac\xac\xc8\xa2\x8b\x28\x41\x55\x14\xd5\xb5\x59\xe4\xa2\x92\xb3\xae\xe1\x5b\x6f\xe1\xd1\xf5\xe5\xb3\x99\x88\x68\x30\xe1\x15\x36\x7f\x34\x73\x04\xed\xf0\xda\xdc\xb6\xf0\x9a\x70\x6e\x20\xf5\xa2\x26\xb2\x09\xd5\x26\x30\x51\x32\x4d\x64\x36\x91\x49\x9a\xbf\x09\xcd\x06\x34\x2f\x2e\xdc\x36\xb1\xd9\xc0\xe6\x45\x4d\x66\x13\x9c\x8d\x98\xf2\x7d\x6c\xbc\x36\xb1\xd8\xc0\xa2\xf5\x32\x4d\x30\xb6\x20\xcc\xf7\xe6\x34\xd1\xd8\x40\xe3\x4d\xa2\xa9\x09\xc7\x06\x1c\x6f\x84\x4a\x13\x8f\x0d\x3c\xde\x61\x6f\x4e\x13\x90\x0d\x40\xde\x61\x6f\x4e\x13\x91\x0d\x44\xde\x54\xcb\x36\x11\xd9\x40\xa4\xe5\x42\x4d\xc8\x35\x20\x77\x53\x04\xd6\x84\x5c\x03\x72\xf7\xb3\x3d\xe4\x26\xe4\x1a\x90\xbb\xf3\x76\xb8\x9b\x90\x6b\x40\xee\x2e\x71\x0f\x14\x72\x0d\xc8\x05\xec\xa6\x26\xe4\x1a\x90\x0b\xd4\xfb\x37\x21\xd7\x80\x5c\xe0\x92\x52\x13\x72\x0d\x7f\x38\x5c\x69\x0f\x6c\xc4\x4d\x1a\x28\xf4\x22\x67\x13\x85\x0d\x14\x06\x44\x64\x13\x85\x8d\x2c\x70\x08\x6c\x8e\x28\x6c\xa0\x30\x44\x36\x47\x14\x36\x50\x18\x70\x0f\x9a\x28\x6c\x33\x9e\x5f\x3f\x02\x35\x9b\x6d\xc6\x9b\x2e\x06\x52\x11\xd9\x04\x66\x03\x98\x81\x9b\x2e\x4d\x60\x36\x80\x69\xd6\xa3\x09\xcc\x06\x0a\x03\xd9\xf8\x2e\x0a\x3b\x28\x0c\x65\x6b\x96\x2e\x0a\x3b\x28\x8c\x54\xa3\x76\x51\xd8\x41\x61\x3c\x29\x64\x13\x85\xfd\xac\xf5\xeb\x47\xbc\xb6\xb7\xd4\x4f\xa2\x4f\x1d\x60\xc6\x6b\x5b\x12\x5d\x60\x76\x80\x19\x89\xbf\x75\x81\xd9\xaf\xad\x6c\x23\xf9\xbc\x7e\x91\x75\xe8\x60\x35\x12\x79\xea\x62\xb5\xdf\xdb\xc2\x8d\x04\x67\xfa\x8d\xc5\xd0\x81\x6f\xe4\x46\x45\x17\xbe\xfd\xde\xfe\x41\xa4\x4a\xad\x23\x67\x3f\x3b\x88\x8e\xd4\xa1\x77\x11\xdd\x43\x8c\x5f\x3f\x22\x37\x2d\x7b\xc0\xf9\xee\x0a\x5c\x2a\x85\xbb\x20\xef\x80\x3c\xa6\x6d\xf7\x75\x41\xde\x01\xb9\x17\x3a\xba\x20\xef\x80\x3c\x66\x6a\xf7\x04\x79\x4f\x0a\xef\xfb\xde\x5d\xbe\x95\x1a\x5b\xb8\xc7\x25\xcc\xcf\x9e\xb6\xe9\x80\x8c\xeb\x09\xe3\xae\x27\x14\xe4\xcd\x65\x9c\x9e\xa6\x53\x2d\xfb\xd8\x7b\xb9\xa3\x2b\xaf\x6f\x6a\x91\xba\xec\xd1\x15\xd8\xb7\x95\x85\xf2\x47\x57\x24\xdf\xf8\x87\x5d\x06\xe9\x44\xd5\xcf\x40\x6a\xa9\x67\x8c\xcf\x9e\xbd\x19\x96\xa0\x8e\x78\xfb\xfe\xa1\xd6\x22\x15\xc6\x4e\xc7\x7a\xb3\x8b\xf2\xda\x9e\x89\xdf\x75\x2f\x0b\x3e\x5c\x8b\xec\xc4\xc7\xf7\x8f\x75\x15\x1b\x68\x5d\x2e\xec\xd4\x3b\x45\x2e\x10\xf4\x82\x5d\xd8\x09\x5a\xa7\x83\x55\x0b\xd1\xcf\x0e\xaf\xa6\x63\x83\xb6\xcb\xab\xbd\x6c\x0d\x99\x8e\x58\x28\x93\x64\xe7\x28\x29\x4a\x94\x71\xf5\xb2\x0d\x83\xcf\x0e\x47\xa7\x73\x8b\x82\x2e\x47\x77\x38\x3a\x9d\xdb\x53\xeb\x72\x74\xa7\xf6\x25\x51\xe3\xd3\x2b\x3a\xbd\xc3\xe4\x89\x8c\x52\x97\xc9\x3b\x4c\x9e\x60\xdf\x2e\x93\xf7\xe6\x5b\x5b\x69\x76\x39\xba\xc3\xd1\x89\xab\xca\x5d\x8e\xee\x5d\x0d\x7d\xed\x81\x72\x74\x87\xa3\x53\xda\x5a\xb1\xcb\xd1\x1d\x8e\x4e\x69\x6b\xc5\x2e\x47\x77\xd8\x37\x51\x14\xd7\x65\xdf\x0e\xfb\xa6\xbc\xb5\x62\x97\x7d\x3b\xec\x9b\xca\xfd\xfc\xa2\x4e\xee\x72\x77\x87\xbb\x9f\x63\x2b\xcd\x21\x77\x0f\xb8\xfb\xe1\xea\xf5\x90\xbb\x07\xdc\xfd\x70\x15\x75\xc8\xdd\x03\xee\x7e\xae\xad\x34\x87\xdc\x3d\x60\x65\xff\x82\xc6\x90\x95\x07\xac\xfc\x84\x23\xef\x2e\xdf\x82\x6f\x1f\xa2\xa5\x43\xbe\x1d\xb7\x56\xca\xf6\x02\x87\x4c\x3a\xe0\xc8\x87\xd2\xd7\x21\x47\x0e\xd8\xef\xa1\x8a\x79\xc8\x7e\x03\xf6\x7b\x40\xf9\x90\xfd\x86\x16\x4f\xde\x1a\x72\xc8\x7e\x03\xf6\x7b\xc0\xf8\x90\xfd\x06\xec\x97\xc9\x76\x0e\xd9\x6f\xa4\xed\xa2\x79\x63\x7c\x24\xcc\xf9\x91\xb4\x95\xf6\x0e\x0f\x19\x6b\x50\x34\x68\xca\x67\x3c\xc4\xc6\x06\xbc\x96\xdd\x09\x59\x6d\xc0\x6a\x5e\xf8\x1c\x72\xda\x80\xd3\x32\x97\x3b\x87\x8c\x36\x60\x82\x1c\xb6\xf6\x18\xf2\xc0\x00\xdd\x19\x21\x30\x44\xf7\x00\xb7\x39\x26\x8a\x7a\x7d\x0b\xdc\x7a\x0f\x60\x88\xdb\x51\xb7\x60\xb0\x42\x7b\xd4\xe9\x5b\x0c\x24\x1f\x3e\xc4\xed\x00\xb7\x99\xbf\x23\x32\xc4\xed\x20\x62\x6c\x81\xd3\x30\x60\x3c\x80\x72\x26\x96\x36\x84\xf2\x00\xca\x99\x58\xc5\x10\xca\x03\x28\x97\x63\x6b\xdb\x21\x94\x07\x50\x2e\xb0\xd8\x10\xca\x83\xe8\x45\x21\xe5\x3b\x0c\x5e\x0c\xd0\x5d\x48\xd7\x0c\xd1\x3d\x40\x77\xc1\x55\x19\xa2\x7b\x80\xee\x42\x32\x64\x88\xee\x01\xba\x4b\xd8\xf2\x6b\x08\xdf\x01\x7c\x4b\xdc\x4a\x60\x0a\xdf\x09\x7c\x4b\xda\xd2\x6b\x0a\xdf\x09\x7c\x4b\x4a\xf9\xcb\xe7\x14\xbe\x13\xf8\x16\x8a\x7d\xa7\xf0\x9d\xc0\xb7\x10\xe6\x9d\xc2\x77\x02\xdf\xc2\xcd\xf3\x29\x7c\x27\xf0\x2d\x14\x43\x4d\xe1\x3b\xcd\xed\x1f\x44\x18\xa6\xf8\x9d\xe6\xdd\x0f\x72\xa1\x53\x00\x4f\xf3\xe9\x07\xf9\xb8\x29\x82\xa7\xb9\xf3\x83\xa4\xd4\x14\xc2\xd3\xfc\xf7\xc1\xad\xd3\x29\x86\xa7\x79\xed\x83\x04\xc5\x14\xc4\xd3\xdc\xf4\x11\xb7\x32\x98\xa2\x78\xaa\x0c\x0e\x2a\x37\xa6\x98\x9d\xaf\xf1\x4e\x44\x60\x8a\xd0\xa9\x32\x38\xa8\x3d\x9e\x42\x74\xaa\x0c\x0e\x8a\x00\xa7\x18\x9d\xe6\x79\x0f\x02\x97\x93\x4b\xf1\x9f\x53\xe1\x7d\x94\x6d\x97\x4c\x81\x3b\xbd\xfd\x7c\x1e\x6c\x95\x39\xc4\xa9\x25\x7f\x1e\xdb\xc3\x9b\xa2\x79\x6a\xca\x9f\xfc\xa5\x8b\x29\x9c\xa7\xb6\xfc\x79\x3e\x7b\x3e\xf1\x3c\xeb\xeb\x5d\x6c\x39\x3f\x45\xef\xf4\x7e\xe6\x79\x6f\xa5\x31\xb9\x9f\xf9\x39\xb5\xf0\xcf\x9b\x83\x14\xd2\x93\xf8\xfe\x79\x72\x95\x63\x12\xe5\xdf\x3f\xbc\x47\xf2\x65\x0a\xea\xa9\xdd\x7f\x86\x0d\xbb\x29\xaa\x27\x35\x79\xe7\x49\x40\x7c\x76\x0a\x26\xa7\xc5\x78\x67\xda\x4e\xd3\x14\xea\xd3\xa2\xb8\x93\xcb\x41\x53\xac\x4f\x6f\x29\x9d\x5c\x14\x99\x16\xc0\x4d\x23\x75\x27\xd7\x35\xa6\x68\x9f\xde\x95\x39\x49\x82\x4c\xe1\x3e\x27\xb5\x1b\x67\x06\xa3\x93\xda\x8d\x69\x61\xd6\x89\xe0\x9a\xf2\xc0\x34\x8a\x71\x52\xf0\x37\x65\x82\x69\x94\xe0\xa2\x80\x70\xc9\x05\xcb\x8b\x19\x17\x7f\x81\x61\x1d\xd8\x2f\x4b\x0f\xfe\x3a\xa9\xdc\x97\x35\xd6\x41\x14\xe3\xa2\xb0\x6d\x1d\x58\x56\x4b\x0f\xf9\xc2\x26\x5b\xf2\xcb\x3a\x89\x26\x5c\x17\x25\xe5\x27\x85\x86\xeb\xa4\x66\xfc\x42\x0d\xae\x13\xf5\xbc\x5e\x27\x99\xa4\xe8\x92\xb1\x96\xd5\x3f\x17\x77\x2c\x96\x9c\xb5\x2e\xa2\x8b\x17\x7f\x48\x62\x5d\x44\x6d\x96\x55\x3d\x57\x78\xe8\x73\xec\x45\x24\xf6\x22\x19\xb6\x2e\x02\xfb\xcb\x9a\x9b\x8b\xeb\x99\x4b\x1e\x5c\x37\x89\x8c\x2b\x66\xfa\x48\x64\x2c\xf9\xf2\xf2\xfe\x80\x7c\xb9\xe4\xcb\x2b\x6d\x69\xbd\xe4\xcb\x15\x88\x2a\x5d\x5c\x91\x5e\x81\xe8\xe7\x92\x57\xaf\x67\x5b\xd5\x4b\x5e\x5d\x81\x68\xd1\x45\x52\x6a\x85\xe6\x7b\x04\xec\x2f\x12\x3c\x2b\x20\xe0\x96\x3c\x7d\x95\x6d\x04\x2d\x79\x7a\xc9\xd3\x17\x17\x02\x97\x3c\xbd\xe2\xfb\x1e\x97\x01\xe4\xe9\x95\xd8\xe7\xfb\x48\xc7\xbf\x56\xe1\x29\xfe\xa5\x06\x5f\x89\x98\xce\x52\x0a\xdc\xc4\xf6\x96\x52\x60\xbd\x26\x21\xf1\xb9\xa5\x14\x58\xaf\x49\x88\x69\xb3\x94\x02\xeb\x35\x09\x2f\x2a\xf2\x95\x02\xeb\x35\x09\xb9\xbf\xbe\x94\x02\x4b\x8e\xbf\x49\xc1\x2e\x39\x7e\xc1\xe4\xe7\x1d\x39\x41\xca\x05\xf6\xcf\xf4\x9e\x07\xef\x39\xd6\x72\xf2\x9b\x2b\x86\xab\x74\xdf\x23\xbe\x79\x27\xc7\x52\x71\xb5\x4c\xcf\xdf\x98\xd7\x8b\xbf\x44\xf0\xb9\x5e\xc7\x9f\xdb\x6b\x4b\x69\xb1\x4c\x93\x27\x52\xd3\x8b\x1b\xfe\xfb\x87\x40\x0c\x9e\xd2\xe2\x3a\xff\xe7\x52\xaa\xa4\xb0\xa5\xc5\x52\xaa\x2c\xd3\xdf\x29\xc4\x4c\x5f\xb1\xcf\x9b\x0f\x6f\x5f\xa3\xcf\xcb\x64\x81\xfb\x17\xa6\xbf\x57\x35\xae\x15\x40\x18\xb9\xf0\xcf\x55\x8d\x61\x79\xb7\xc3\x32\xec\xf5\x86\x21\xd0\x49\x4b\xc9\xb5\xfc\x0b\x53\x09\x07\x63\x91\x57\xfe\x5c\x8d\xf4\x5e\x8a\x5e\x3e\x89\x9c\x65\xa3\x3a\x23\x91\x76\x5a\xe4\x8b\x3f\xd7\x1b\xc3\x20\x35\xb3\x94\x70\xcb\x1b\xe0\x09\x89\xb4\xc8\x03\x7f\xae\x66\x9c\x9b\xfa\xbc\x45\xde\x76\xff\x30\x96\xbc\xc8\x32\x55\xbb\xbc\xc8\x9d\x12\x68\xe7\x7a\xf6\xe7\x32\x15\x9a\x08\x1d\x2d\x53\xa1\xab\x19\x8f\xc4\x63\x5c\x5c\x62\xde\x3f\xcc\x47\x0c\x7a\x29\x45\x97\xd7\x93\x13\xf1\xe1\x65\x3a\x73\xf5\xe0\x7b\x48\x81\x1e\x7d\x8f\xdb\xa5\x89\xeb\x69\x8b\x9b\xcb\x9f\xcb\xbf\x6e\x95\xb8\x8c\xb6\x4c\x5d\x2e\x6f\x08\x27\xfe\x4e\xc3\xe2\x1e\xf0\xe7\x32\x4d\x99\xf8\xe3\x02\x8b\xfc\xe4\xfe\x71\x0d\xb0\xa1\xf4\x5e\x9d\xeb\x81\xe9\xbd\x77\x43\xac\x7f\x79\x79\x37\x61\x07\x2d\x2e\xef\xee\x9f\xf7\x26\xca\x41\x9f\x6b\x74\xdf\x43\xd2\x90\x27\xfc\x5c\x9d\x12\x85\x94\xfd\xb6\x29\x7d\xc4\x19\x93\x1c\xdf\x89\x33\xae\x8e\xc6\x49\x59\x9a\xd1\x38\x4b\xad\x91\x32\x78\x56\x6b\x2c\xd3\x76\x89\xbf\x75\xb6\x4c\xdb\x2d\xff\x26\x57\xca\xdc\x28\xb2\x5c\x7b\xa9\x5d\x12\x4e\xf7\x52\xbb\x2c\x2f\xaa\x26\x2a\x08\xd7\xf0\x7c\x87\xb1\xea\x12\xbc\x9d\xc3\xb7\x0d\xe3\xa5\xdc\xef\x5d\x43\x9a\x87\xf4\x51\xae\xbd\x06\x71\xd0\xf5\xe6\x90\x4a\xe1\x72\x8d\xf4\x4d\xff\x22\x1e\xd5\x82\xcb\xc0\xc1\xb2\x94\xfa\xa1\x5a\x70\x59\x36\xbd\xa6\x7f\x0e\x8e\xbb\xa3\x8b\xbb\xa3\xfb\x87\xc0\x1a\xb9\x9c\xa5\x56\x5b\xde\xfd\x7c\x8e\x6d\xec\xaf\x29\x6f\x4d\xcb\xf1\x0f\xef\xf7\x50\x8e\xbf\xe6\xf0\x8a\x15\xd7\xb8\xe6\x74\x8d\xe9\x35\x8f\xdb\xbe\x61\x9f\xb1\x5b\xae\x9b\x4d\xf7\x5e\x2d\xf9\x9c\x21\xfc\x6b\x89\xb9\x1b\xbf\xab\x3f\x7d\xf9\xf3\xdf\x3e\xec\x7f\xf8\xfe\x7d\x7e\xfb\x99\xbf\xb3\xc8\x5f\x38\xfc\x18\x73\xfd\xf0\x6d\xfe\xf9\x6f\x36\xfe\xf4\xe3\x4f\x7b\x14\xff\xfe\x4f\x00\x00\x00\xff\xff\x69\x55\x86\x2d\xdf\x51\x00\x00"); +func _adg ()([]byte ,error ){return _gb (_bdab ,"Adobe-KR-4")};var _dd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd5\x4f\x8f\xdb\x36\x10\x05\xf0\xbb\x3f\x05\x8f\xe9\x21\xb5\xf8\x77\x48\x20\x58\xa0\xd8\x3d\xd4\x29\xd2\x16\xd9\x76\x5b\xa0\xe8\x81\x94\xb8\x0b\x01\xb5\x2c\xc8\xf6\x61\xbf\x7d\x31\xef\xb9\x6e\x0e\xc1\x64\x7f\x26\x47\xc3\x67\xc9\xda\x3f\x1e\x9e\x0e\xcb\x7c\x31\xfb\x5f\xb7\xd3\xf8\xdc\x2f\xe6\x75\x5e\xa6\xad\x9f\x4f\xd7\x6d\xec\xa6\xf5\xb7\x79\xd9\xed\xac\x33\xd3\x3c\x5e\xfe\xfb\x13\x65\x3c\xd6\x75\xb7\xdb\x4b\x3e\x9e\x3f\x7e\xfd\xe9\xf9\xf3\xc7\x1f\xcd\xf5\xdc\x6f\xfa\x78\x78\x7a\x7e\x3f\x5f\xfa\xf1\xb0\xbc\x9e\x8c\xe7\xee\xe9\xba\xde\x3a\x18\xb3\xff\xda\xdf\xe6\xf3\x65\x7b\x37\x1f\x7e\x98\x4e\xad\x7f\x67\xa6\xfe\xaa\xfe\xcb\x36\xf5\x6d\x5e\xde\xcc\x87\xcf\x75\xad\x8b\xbd\x7f\xf0\x7c\x5d\xd7\x7f\xfa\xb1\x2f\x17\xe3\x60\x7d\x99\x50\x77\xfb\xc7\x2f\x75\xfd\xb9\x1e\xbb\xf9\x66\x9a\x17\x7c\x86\x8f\x5e\xfa\x76\x9e\x4f\x8b\xb1\xf6\xfb\x61\x48\xff\xfb\x6f\xef\x6b\x37\xf6\xd6\xe3\xcf\xdf\x0f\x4f\xe6\x2f\x6b\xec\x60\x5c\x0c\xc1\xfd\x7d\xf3\x3f\xbe\x9c\xa6\xfb\x2a\xc9\x3c\xc0\x38\x4f\x5b\x5d\xde\xfa\xee\x53\xb6\xc1\x3e\x18\x2d\xee\xc1\x48\xce\x02\xf2\x24\xff\x60\xb2\x4b\x19\x14\x48\x41\x49\x82\x52\x1c\x40\xd1\x62\x63\x01\x35\xd2\xa4\x54\xac\x52\xe2\xaa\x14\x40\xd8\x98\x0a\x48\x2a\x08\x1b\x33\x87\xd0\x22\xc5\x62\x88\x9a\x41\x5a\x8c\x78\xac\xaa\xdc\xa8\xc5\x88\xc7\x5c\xb5\x92\x1a\x28\x81\x46\xd2\x88\x51\x87\xdd\xa7\xec\xca\xab\x12\x8a\x14\xab\x1b\x5d\xc5\x15\x51\xa4\xd8\x02\xf2\x24\xaf\xe4\xb0\xb1\x46\x52\x04\x59\x90\x90\x04\xe4\x94\x46\xf6\x1a\xd1\xcb\x79\xa5\x4e\xea\xa4\x00\x62\xfb\xce\xf6\x11\xc4\xf6\x9d\xed\x13\x68\x24\x8d\x20\x4d\xc2\x07\x44\x88\x22\xc5\x65\x90\x23\x39\x50\x01\x05\x92\x06\x5d\xfc\x00\x4a\xa4\x04\xb2\xa0\x4c\xca\x20\x9d\xde\x27\xf6\x4a\xe8\xe5\x75\x7a\x9f\x31\x2a\x8a\x14\x1f\x40\x91\x84\x51\x7d\x04\x09\x09\x49\x20\x7b\x9f\x3b\xa9\x83\x30\x7d\xe1\xc6\xc2\x21\x74\xfa\xc0\xaf\x03\x45\x42\xd6\xb9\x42\xc5\x19\x51\x24\x48\x01\x59\x92\x46\x18\x4a\x04\x39\x92\x8e\x1a\x07\x0f\xf2\x24\x8f\x55\xdc\x18\x48\x01\xc4\xf6\x91\xa4\xd3\x47\xc7\x8d\x89\xa4\x73\x45\xcb\xf6\x42\xd2\x03\x45\xcf\x8d\x99\x94\x71\x45\x01\x15\x52\xc1\x2a\x5e\xb1\x92\x2a\x0e\xe4\x40\x8d\xd4\x40\x03\x68\x24\x8d\x98\x0b\x49\xd4\x89\x34\xa1\x7d\x02\x75\x52\x07\xb1\x17\xf3\xaa\xc8\x0b\xcf\x50\x68\xcc\x4b\x8b\x44\x7c\xdb\xa1\x31\x2f\x2d\x12\x71\x63\x86\xc6\xbc\x1a\xf2\x62\xf6\x8d\x79\x69\x91\x68\xd9\x8b\x79\x69\x91\x18\x49\xcc\xab\x31\x2f\xcc\xd5\x98\x57\x63\x5e\x38\x76\x63\x5e\x8d\x79\x71\x23\xf3\x6a\xc8\xcb\x22\xc2\xc6\xbc\x1a\xf2\x0a\x08\xba\x31\x2f\x2d\x12\x71\x93\x87\xc6\xbc\xb4\x48\xb4\xbc\x22\xf3\xd2\x22\xd1\x73\x23\xf3\x6a\xcc\x8b\x07\x62\x5e\x0d\x79\x05\x3d\xb6\x44\xe4\x25\x09\x0f\x4c\xd0\x70\x24\x59\x92\x7d\x30\xd9\xe3\x81\x11\xde\xf7\xc2\xfb\x3e\x78\x90\x27\xe9\x0f\x9f\xf7\x5c\x15\x48\x78\xac\x30\xbd\xa4\x48\x8a\x58\x95\x41\x89\x84\x47\x21\x08\x28\x93\xb2\xae\x0a\x01\x54\x48\x7a\xec\x12\x39\x57\x23\x35\xac\x62\xaf\x91\x34\x61\x15\xe7\xea\xa4\x8e\x55\x98\x2b\xe3\x06\x10\xfe\x62\xc6\xa4\x6f\x93\xfb\xaf\xba\xfe\x5f\xdf\x63\xf7\xf7\xca\x78\xdd\xb6\xbe\x5c\xf0\x16\xc3\xab\x43\x5f\x07\xf3\xd2\xef\xef\xc9\xf5\xb4\xea\x2e\xfc\xfb\x37\x00\x00\xff\xff\x30\xa4\x71\xa2\x53\x07\x00\x00"); +func _bccb ()(*asset ,error ){_bcdb ,_acdg :=_acgc ();if _acdg !=nil {return nil ,_acdg ;};_ebea :=bindataFileInfo {_ee :"RKSJ-V",_ffd :915,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492637,0)};_ffbg :=&asset {_da :_bcdb ,_dc :_ebea };return _ffbg ,nil ; +};func _cfbb ()(*asset ,error ){_aed ,_fe :=_gf ();if _fe !=nil {return nil ,_fe ;};_gaca :=bindataFileInfo {_ee :"90pv-RKSJ-H",_ffd :5565,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491045,0)};_eee :=&asset {_da :_aed ,_dc :_gaca };return _eee ,nil ;}; +func _edgg ()([]byte ,error ){return _gb (_eegd ,"UniJISPro-UTF8-V")};func _dgc ()(*asset ,error ){_gge ,_gag :=_eff ();if _gag !=nil {return nil ,_gag ;};_ccd :=bindataFileInfo {_ee :"90msp-RKSJ-H",_ffd :3749,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490990,0)}; +_efcc :=&asset {_da :_gge ,_dc :_ccd };return _efcc ,nil ;};var _bggg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xcb\x8e\x24\xb7\x11\xbc\xf7\x57\xd4\x51\x3e\xd8\xcb\xf7\x03\x68\x34\x20\xeb\x01\xef\x41\x92\xe1\xb5\x6c\x03\x86\x0f\x45\x32\xb9\x18\xc0\x3b\x33\x98\x99\x3d\xe8\xef\x8d\x88\x68\xc9\x96\xe0\x83\x50\x9a\xd8\x48\x92\x95\x8c\xc8\xcc\xea\x77\x5f\xbd\xff\xfa\xfd\xe3\xc3\xdb\xf1\xee\xcf\x2f\x4f\xf3\x83\xbd\x1d\xfb\xe1\x71\xbd\xd8\xeb\xd3\xe7\x97\x69\xc7\xb0\x8f\x0f\x8f\x97\x8b\x0f\xc7\x7a\x98\x6f\x3f\xff\xc9\xc7\xfc\x74\x3e\x5f\x2e\x88\xff\xf0\xd3\xeb\x9b\x7d\x7a\xff\xb8\x9f\x8e\x28\xde\xfa\xfc\x7c\xe7\x1e\xc7\xbb\xbf\xd8\xc7\x87\xd7\xb7\x97\x9f\x8e\x2f\xbe\x5c\x4f\xc3\x7e\x77\x2c\xdb\xc0\x7f\x78\x59\xf6\xf2\xf0\xf8\xf1\xf8\xe2\xab\xef\x3f\xf8\x5f\xe0\x0f\x9f\x9f\x9f\xff\x6d\x9f\xec\xf1\xed\x70\xc4\xec\x71\xf1\x79\x79\xf7\xd5\x77\xe7\xf3\xf7\xe7\x27\x3b\xde\xfd\x31\xff\xfe\x4f\x04\x89\xfd\xcd\x5e\x5e\x1f\x9e\x1e\x0f\xef\xfe\xe0\x5c\xf9\x2f\xfe\xd7\x9f\x9e\xed\xf0\xf7\xe0\x1f\xdf\x7f\xfd\xc3\xde\xaf\xf6\x76\x78\xa7\x85\xdf\xfd\xe3\xc7\xf7\x5f\x1f\xff\xf4\x87\x77\x47\xc8\xb1\xb9\x7f\xdd\xa9\x7f\xff\xee\x69\xd9\x7d\xf7\x4b\xd0\x9b\xcc\xa7\x65\xaf\xcf\xe7\xb4\x97\xf3\xf1\xa3\x5d\x8e\xe3\xea\xdc\xed\x38\x8e\x6b\x73\x37\xfc\xf5\xa5\x4f\xee\x76\x5c\xbf\xfd\xe6\xdb\x6f\x6e\x38\xf2\x6f\xf8\x17\xaf\x65\x1e\x9f\xde\x96\x6d\x61\x5c\xe1\xea\xf7\xed\xf0\xb1\xa4\x86\xa8\xff\xfd\xe7\x0b\xce\xa9\xbd\x1f\xd6\x3d\x22\x20\xa2\xda\xcf\x11\xd7\x53\xbb\x9e\x3e\xb7\xdb\xd1\x3b\x80\xdc\x05\x4c\x90\x6a\x8a\xc4\x16\x31\x06\x06\x86\x9d\x9e\xc8\xce\xb7\xc3\x97\x00\x64\x17\x21\xe5\x76\x04\x2d\xbd\xab\x90\x0a\xa4\x12\x69\x42\x0c\x08\x76\x0b\xda\x3e\x60\xe5\x90\x0b\x10\xad\x1c\xc0\x89\x1e\x9c\x28\x4e\x04\x27\x79\x9c\x27\x8a\x13\xc7\xb8\x1d\xa9\x22\x2a\x8e\x25\x64\xdf\x8e\xec\xc0\x49\x8a\x4a\x88\xca\x3d\x03\x51\x54\xc2\xca\x25\xe3\x84\x59\x9c\x0c\x4e\xcd\x78\x8b\x2c\x4e\x06\xa7\x79\x44\x15\x71\x0a\x38\xdd\xe1\x3c\x45\x9c\x02\x4e\xaf\x88\xaa\xe2\x54\xe6\xc7\x15\x1c\xa8\x8a\x54\x41\xf2\x3e\x20\xae\x89\xd5\x94\xc5\x80\x43\x36\xb1\xda\x56\x62\x11\xd8\xc5\xea\xba\xa4\xe6\x00\x89\xd5\xc9\x4a\xbc\x91\x53\xac\x93\xac\x1c\x91\xdc\x53\xac\x93\xac\xe2\x10\x38\xc4\x1a\x64\x95\x9e\x00\x89\x35\xc8\xaa\x19\x81\x53\xac\x49\x56\xcb\x1e\x90\x58\x73\xaf\xdb\xe1\xbb\x47\xe0\x44\xc4\xfd\x11\x52\x04\x6b\x29\x70\xf1\xf2\x9c\xc3\x5a\x4b\x81\x8b\x2c\x57\x71\x08\x13\xcb\xc8\xf2\x05\x6b\x99\x58\x46\x56\x08\x08\xdc\x62\x6d\xb2\x62\xc0\xf2\x5b\xac\x3d\x37\xa0\x86\xc0\xbd\xc4\xba\x1f\x22\x5c\xae\xc3\x31\x70\x38\x06\xa6\xda\x01\x31\x70\x38\xb2\x72\x02\x4b\x32\x1f\x54\x70\x28\xb1\x00\x12\x4b\x62\x2c\xd0\xfe\x90\x1a\x87\xd4\x58\x7b\x04\x24\x16\xe5\x18\x1a\x14\x3a\xa4\xc7\x41\x3d\x86\x9e\x1d\x20\xb1\x22\x45\xeb\xa0\xd1\x21\xfd\x0d\xea\x2f\x7a\x24\x67\x48\x80\x23\x49\xda\x48\xce\x90\x02\x07\x15\x18\x03\x92\x33\x24\xc1\x41\x09\xc6\x88\xe4\x0c\x69\x70\x50\x83\x31\x21\x39\x43\x22\x1c\x14\x61\x4c\x48\xce\x90\x0a\x07\x55\x18\x73\x6d\x80\xc4\xa2\x0a\x63\x49\x08\x94\x0a\x07\x55\x18\x6b\xcc\x80\xc4\xa2\x0a\x63\xed\x08\x94\x0a\x07\x55\x18\x5b\x47\x0a\xa5\xc2\x41\x15\xc6\x9e\x11\x28\x15\x0e\xaa\x30\x39\x18\x7a\x48\x85\x83\x2a\x4c\xde\x23\x50\x2a\x1c\x54\x61\x0a\x0e\x29\x94\x0a\xc7\x98\x15\x50\x41\xe0\x98\x8d\x10\x03\x23\x8c\x36\x24\xcc\x41\x61\xa6\xc8\xe4\x48\x98\x83\x2a\x4c\x89\xc9\x91\x0a\x07\x55\x98\x32\x93\x23\x15\x0e\xaa\x30\x65\x26\x47\x2a\x1c\x96\xfd\xed\x48\x85\xc9\xb1\x1c\x04\x05\xee\x28\x28\x12\xe2\x5a\xa5\xe3\xa8\xd2\xea\xa0\x56\x53\x4d\xb8\x34\x69\x75\x50\xab\xa9\x45\x2c\x2f\xad\x0e\x0a\x33\xb5\x5e\x2f\xd7\x29\x61\x4e\x0a\x33\xf5\xee\x01\x91\x35\x29\xcc\xec\x72\xba\x5c\xa7\x84\x39\x29\xcc\xec\x51\x37\xa7\x84\x39\xfd\x79\xde\x8e\x1c\xbc\x27\x34\x08\x31\x30\x84\x70\xb9\x4e\x69\x75\x52\xab\x39\x22\xab\x53\x5a\x9d\x61\x22\x30\x22\xab\x33\xcc\x21\x68\x30\xd0\x13\x9a\x84\xb8\x56\xe2\xf2\x52\xf4\x8c\xc5\x01\x42\x39\x9f\xb1\x70\x2d\x8a\x3c\x27\x64\x62\x4a\xe4\x33\x8e\x76\x3b\x72\x0e\x84\x46\x17\xd4\x01\x65\xae\x35\x4e\x41\x27\x21\x47\x88\x87\xa0\x3b\x72\x46\x9d\x9d\x72\xc7\x4c\x39\xdf\x8e\x5c\x02\x58\x29\x17\x41\x85\x3b\x66\x42\x95\x10\x0f\x51\x12\x03\x75\x08\x7a\x28\x97\x06\x48\x1e\x9a\xf4\x50\xae\x68\x07\x53\x1e\x9a\xf4\x50\x6e\x11\x99\x90\x87\x66\x51\x3f\x88\xf1\x72\x9d\x12\xf9\xec\x09\xa7\xef\x7c\xc7\x9e\x4e\x41\xe7\xed\x28\xe8\x74\xb3\x27\x1e\xbe\x97\x71\x3b\x8a\x63\x9e\x7b\x61\x06\x69\x8e\xe2\x92\x63\xbb\xfe\xb9\xc5\xfe\xbf\xae\x3b\xe5\x9d\xd9\xd1\xa5\x8a\xcb\x38\x4f\x1f\x26\x88\x8b\x44\x41\x9b\x90\x4d\x40\x8d\xbb\xdb\x22\xc4\x9e\xe5\xe1\xd6\x29\xd3\x4d\x9a\xae\xf8\x8c\x17\x91\xe9\xe6\x89\xde\x5b\x82\xc7\x19\x4f\x36\x5f\x3d\x8a\x87\x46\xe7\xc9\xee\x3b\x69\xcd\x12\x1d\x52\x27\x6b\x4e\x5a\xb3\xd0\x74\x53\xd6\x9c\x43\x2c\xb4\xb7\x29\x1f\x4e\xfa\xb0\x24\xb4\xb7\x29\x1f\xce\xa9\x5e\x8a\xf6\x36\xe5\xc3\x49\x1f\x96\x82\xf6\x36\xe5\xc3\x49\x1f\x96\x82\xf6\x36\xe5\xc3\x49\x87\x95\x8a\xf6\x36\xe5\xb0\x49\x87\x95\x86\xf6\x36\xe5\xb0\x49\x87\x95\x8e\xf6\x36\xe5\xb0\x49\x87\x55\x87\xf6\xb6\xe4\xb0\x45\x87\x55\x87\xf6\xb6\xe4\xb0\x45\x87\x55\x8f\xf6\xb6\xe4\xb0\x45\x87\xd5\x00\x8d\x2e\x39\x6c\xd1\x4e\x35\xa2\xbd\x2d\xd9\x69\xd1\x4e\x35\xa1\x18\x2c\xd9\x69\xd1\x28\x35\x55\x04\xca\x28\x2b\x6a\x60\x28\x19\x90\x58\x14\x77\xa5\x64\x96\xc4\xbd\x28\xdb\x5a\xe1\xd6\x25\xd9\x2e\xca\xb6\xd6\x86\x40\xc9\x76\x69\xf8\x68\x68\x5c\x4b\xb2\x5d\x94\x6d\xed\xd0\xfb\x92\x6c\x17\x65\xdb\x1c\x1a\xd7\x52\xe9\x5f\x05\x9e\x6e\x0e\x8d\x6b\x15\x7a\x5a\x8f\x56\xa1\x9c\x55\xe6\x22\xa4\x49\x06\x59\x5d\x6a\x10\xab\xd6\x0e\xa8\x13\xaa\xa7\xa0\xf3\x76\xb4\xd6\x3a\xa1\x21\x08\x81\xca\x97\xda\xc8\x62\x1b\x69\x01\xa5\x7f\xa9\x8d\x2c\xb6\x91\x16\x51\xfa\x97\xda\xc8\x62\x1b\x69\x09\xa5\x7f\xc9\x61\x8b\x4e\x69\x19\xe6\x59\xb2\xc2\xa2\xa2\x5b\x46\x91\x5a\x52\xf4\xa2\xa2\x5b\x29\x38\x97\x14\xbd\xce\x05\xa8\xa2\xd6\xac\x73\x6d\x41\x9b\x2f\x84\xe5\x4f\x53\x20\xd7\xaa\x3c\xbd\x14\xbd\xa8\xe8\xd6\x50\x58\x96\x14\xbd\xc6\x59\xf8\x8e\x91\x50\x25\xc4\xc0\xd6\xc1\x92\xc8\x17\x45\xde\x3a\x1a\xc4\x92\xc8\x17\x45\xde\x1d\xba\xe7\x92\xc8\x17\x45\xde\xe9\xc7\x25\x91\xaf\xb5\x07\x20\x74\xcf\xb5\xf6\x14\x34\x11\xc8\x73\xad\xbd\x04\x21\x30\x10\x92\x15\x16\xad\xd0\x03\x1a\xc4\x92\x15\x16\xad\xd0\x23\x1a\xc4\x92\x15\x16\xad\xd0\x13\x1a\xc4\x92\x15\x16\xad\xd0\x33\x2a\xb8\xc9\x0a\x46\x2b\xf4\xe2\x32\x20\xb2\x8c\x56\xe8\xa5\xb4\xcb\xd5\x64\x05\xa3\x15\x7a\x45\x9d\x37\x59\xc1\x68\x85\xde\x02\x02\x65\x05\xa3\x15\x7a\xc7\x08\x6e\xb2\x82\xd1\x0a\xbd\xa3\xea\x9a\xac\x60\x51\x33\xaf\x43\xd9\x35\x79\xc1\xe8\x05\xef\x3c\x8a\x9a\xc9\x0c\x96\xc4\x0b\x28\xbc\x26\x37\x58\x12\x2f\xa0\xf2\x9a\xec\x60\x59\xbc\x88\x3b\x31\xf9\xc1\xb2\x78\x09\xb5\xce\x64\x08\x2b\xe2\x65\x7c\x57\x98\x1c\x61\x45\xbc\xe2\x11\x2b\xb1\xdb\x7d\x26\xaf\x2e\x01\x13\x4f\x43\xb9\xab\x05\xb1\x12\xb2\x69\x2a\x77\xad\x20\x9b\x52\xb2\xb5\x33\x00\xeb\x21\x11\x8b\xc4\x14\xdb\x31\x7a\x98\xe4\x6d\xbd\xe2\x2b\xc8\x3b\xa6\xaa\xd7\x22\x8c\x83\xbf\xab\x88\x95\xe6\x4d\x03\xbc\x77\x90\xa0\x49\xf4\xa6\x09\xde\xfb\x8a\xf5\xa4\x7a\x3b\xef\x1f\x0d\x18\x36\x4c\x82\xb6\x91\x4f\x60\x11\x95\xdc\x46\x1e\xc4\x14\x1b\x79\x91\x52\xb9\x8d\xed\x88\x41\x87\x36\xf6\x1d\xf3\x3a\x73\x21\x16\x84\x31\x36\x41\xe8\x26\xed\x9b\xbe\x00\x7c\x82\x14\x4d\xe2\xb7\xb9\xf0\x09\xe0\x33\xb4\x68\x13\x76\xbc\x3f\xf0\x6e\x91\xd8\x26\xa6\xf5\x0a\xbe\x99\x4c\x2e\xb1\xa5\xf5\x0a\xef\x48\x36\xb1\x75\x76\x60\x95\x77\xb4\x30\xe2\x5c\x6d\x29\xb6\xc2\xad\x26\x57\x98\x29\xb6\x51\xca\xb2\x85\x99\x31\x07\x8d\x5a\x36\x1b\xc2\x06\x3e\x9d\x38\xbe\x99\xa1\x73\x5e\xcd\xb4\x1e\x0b\xa8\xc9\x3f\xb6\xb5\x5e\x2f\xfe\xd7\xdd\x3a\xa5\xdf\x36\x6b\x93\xbd\x6c\xeb\xa3\xcc\xe1\xf6\xb7\xfc\xb5\x1d\xe6\x15\x1f\xbc\x6f\xc0\x38\xb0\xe8\x81\x37\xea\xc4\x2a\x31\x7d\xe3\x79\xdc\xe0\x96\x11\xb7\xc3\x58\xe6\x83\x6f\xc4\x38\x97\xe9\x81\x1b\xf4\xc4\x26\x31\xed\xcb\x29\x6f\xcb\xb1\xdb\x97\x40\x0c\x19\xdf\xbe\x44\x61\xa7\xde\xbc\x13\x1b\xc2\x98\x8d\xc2\x7d\x3d\xc7\x94\x7d\xff\x6a\x8f\xbe\x02\xd3\x59\xbc\xf6\x88\xe8\x27\x5b\x7e\xdf\xa1\x54\x60\x29\x22\x36\x94\x26\xac\x01\xab\x50\xec\x0e\xa5\x13\xd3\x7a\xa9\x92\xa7\xf5\xc2\xe4\xf9\x12\x3e\x14\x76\x98\x3c\x5f\xd0\x1e\x19\x4e\xd9\xaa\x16\x3b\xd6\x44\xac\x11\x83\x6d\xf0\x30\x9d\x19\x39\x50\x05\xd9\xaa\x20\xa1\xa0\xfb\x6c\x55\x90\x9d\x0a\x73\x5f\x53\x06\x56\x98\x7b\x55\x95\x50\x31\xe2\x6f\x55\x95\x9d\x06\xf7\x68\xcc\x4b\x1a\x59\x58\xd6\x59\x0a\x31\xc5\xa2\x3a\xfb\xd0\x02\x79\x2c\xcf\x5b\x15\x29\x74\x87\x7d\x55\x91\xb6\x2a\x52\xe8\x0e\x39\x50\x45\xda\xf9\xce\xc3\x2c\xb4\x55\x91\x76\xe1\x1d\x45\x57\x90\x97\xa2\x3b\xe2\x03\xb1\xc2\x12\x31\x7d\xd9\x3b\x4c\xb8\x5b\x95\x6b\xab\x72\x45\xcf\x3b\x57\xe5\xda\xaa\x5c\x91\xe3\xdc\x56\xe5\xda\xaa\x5c\x31\x60\x5a\xd8\xaa\x5c\x5b\x95\x2b\x46\x6a\x43\x95\x6b\xab\x4a\xc5\xc4\xfb\x55\x95\xda\x2c\x4c\x3e\x66\xde\x6f\xaf\x55\x18\x79\xb9\x91\xa7\xd8\x8e\xeb\xf3\x31\x63\x9e\xda\x7d\x26\x61\x49\xbc\x4c\x2c\x0b\xcb\xfc\x19\x89\xf9\xeb\xb3\x08\x2b\xfa\x69\xc9\x13\xd3\x1e\xcb\x13\xd3\xbe\x2b\x08\x53\x6c\x0a\xbf\x72\x23\xfe\xff\xd3\xf9\x7c\xf9\xe5\x77\xba\xf9\xf9\xe5\xc5\x1e\xdf\xf8\x9b\x20\x7f\x91\x3b\x96\xed\x87\x47\xfb\xe5\xf7\xc5\xe7\xa7\x67\x44\xf1\xbf\xff\x04\x00\x00\xff\xff\xaf\x70\x6a\x2a\x8b\x14\x00\x00"); +func _dgcgf ()([]byte ,error ){return _gb (_bgcb ,"GBT-V")};var _bf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd5\x4f\x8f\xdb\x36\x10\x05\xf0\xbb\x3f\x05\x8f\xe9\x21\xb5\xf8\x77\x48\x20\x58\xa0\xd8\x3d\xd4\x29\xd2\x16\xd9\x76\x5b\xa0\xe8\x81\x94\xb8\x0b\x01\xb5\x2c\xc8\xf6\x61\xbf\x7d\x31\xef\xb9\x6e\x0e\xc1\x64\x7f\x26\x47\xc3\x67\xc9\xda\x3f\x1e\x9e\x0e\xcb\x7c\x31\xfb\x5f\xb7\xd3\xf8\xdc\x2f\xe6\x75\x5e\xa6\xad\x9f\x4f\xd7\x6d\xec\xa6\xf5\xb7\x79\xd9\xed\xac\x33\xd3\x3c\x5e\xfe\xfb\x13\x65\x3c\xd6\x75\xb7\xdb\x97\xe1\x78\x5e\x3f\x7e\xfd\xe9\xf9\xf3\xc7\x1f\xcd\xf5\xdc\x6f\xfc\x78\x78\x7a\x7e\x3f\x5f\xfa\xf1\xb0\xbc\x9e\x8c\xe7\xf6\xe9\xba\xde\x5a\x18\xb3\xff\xda\xdf\xe6\xf3\x65\x7b\x37\x1f\x7e\x98\x4e\xad\x7f\x67\xa6\xfe\xaa\xfe\xcb\x36\xf5\x6d\x5e\xde\xcc\x87\xcf\x75\xad\x8b\xbd\x7f\xf0\x7c\x5d\xd7\x7f\xfa\xb1\x2f\x17\xe3\x60\x7d\x99\x50\x77\xfb\xc7\x2f\x75\xfd\xb9\x1e\xbb\xf9\x76\x9c\x17\x7c\x88\xcf\x5e\xfa\x76\x9e\x4f\x8b\xb1\xf6\xfb\x61\x48\xff\xfb\x6f\xef\x6b\x37\xf6\xd6\xe4\xcf\xdf\x0f\x4f\xe6\x2f\x6b\xec\x60\x5c\x0c\x21\xfd\x7d\xf3\x3f\xbe\x9c\xa6\xfb\x2a\xc9\x3c\xc1\x38\x4f\x5b\x5d\xde\xfa\xee\x53\xb6\xc1\x3e\x18\x2d\xee\xc1\x48\xce\x02\xf2\x24\xff\x60\xb2\x4b\x19\x14\x48\x41\x49\x82\x52\x1c\x40\xd1\x62\x63\x01\x35\xd2\xa4\x54\xac\x52\xe2\xaa\x14\x40\xd8\x98\x0a\x48\x2a\x08\x1b\x33\x87\xd0\x22\xc5\x62\x88\x9a\x41\x5a\xc4\x63\x51\xe5\x3e\x2d\xe2\x31\x55\xad\x94\xa6\x92\x20\x23\x65\xc4\x9c\xc3\xee\x53\x76\xe5\x55\x09\x45\x8a\xd5\x7d\xae\xe2\x72\x28\x52\x6c\x01\x79\x92\x57\x72\xd8\x58\x23\x29\x82\x2c\x48\x48\x02\x72\x4a\x23\x7b\x8d\xe8\xe5\xbc\x52\x27\x75\x52\x00\xb1\x7d\x67\xfb\x08\x62\xfb\xce\xf6\x09\x34\x92\x46\x90\xc6\xe0\x03\xf2\x43\x91\xe2\x32\xc8\x91\x1c\xa8\x80\x02\x49\x53\x2e\x7e\x00\x25\x52\x02\x59\x50\x26\x65\x90\x4e\xef\x13\x7b\x25\xf4\xf2\x3a\xbd\xcf\x18\x15\x45\x8a\x0f\xa0\x48\xc2\xa8\x3e\x82\x84\x84\x24\x90\xbd\xcf\x9d\xd4\x41\x98\xbe\x70\x63\xe1\x10\x3a\x7d\xe0\xd7\x81\x22\x21\xeb\x5c\xa1\xe2\x8c\x28\x12\xa4\x80\x2c\x49\x23\x0c\x25\x82\x1c\x49\x47\x8d\x83\x07\x79\x92\xc7\x2a\x6e\x0c\xa4\x00\x62\xfb\x48\xd2\xe9\xa3\xe3\xc6\x44\xd2\xb9\xa2\x65\x7b\x21\xe9\x81\xa2\xe7\xc6\x4c\xca\xb8\xa2\x80\x0a\xa9\x60\x15\xaf\x58\x49\x15\x07\x72\xa0\x46\x6a\xa0\x01\x34\x92\x46\xcc\x85\x24\xea\x44\x9a\xd0\x3e\x81\x3a\xa9\x83\xd8\x8b\x79\x55\xe4\x85\x07\x28\x34\xe6\xa5\x45\x22\xbe\xed\xd0\x98\x97\x16\x89\xb8\x31\x43\x63\x5e\x0d\x79\x31\xfb\xc6\xbc\xb4\x48\xb4\xec\xc5\xbc\xb4\x48\x8c\x24\xe6\xd5\x98\x17\xe6\x6a\xcc\xab\x31\x2f\x1c\xbb\x31\xaf\xc6\xbc\xb8\x91\x79\x35\xe4\x65\x11\x61\x63\x5e\x0d\x79\x05\x04\xdd\x98\x97\x16\x89\xb8\xc9\x43\x63\x5e\x5a\x24\x5a\x5e\x91\x79\x69\x91\xe8\xb9\x91\x79\x35\xe6\xc5\x03\x31\xaf\x86\xbc\x82\x1e\x5b\x22\xf2\x92\x84\x07\x26\x68\x38\x92\x2c\xc9\x3e\x98\xec\xf1\xc0\x08\xef\x7b\xe1\x7d\x1f\x3c\xc8\x93\xf4\x57\xcf\x7b\xae\x0a\x24\x3c\x56\x98\x5e\x52\x24\x45\xac\xca\xa0\x44\xc2\xa3\x10\x04\x94\x49\x59\x57\x85\x00\x2a\x24\x3d\x76\x89\x9c\xab\x91\x1a\x56\xb1\xd7\x48\x9a\xb0\x8a\x73\x75\x52\xc7\x2a\xcc\x95\x71\x03\x08\x7f\x2e\x63\xd2\x77\xc9\xfd\x27\x5d\xff\xaf\x6f\xb1\xfb\x5b\x65\xbc\x6e\x5b\x5f\x2e\x78\x87\xe1\xbd\xa1\xef\x82\x79\xe9\xf7\xd7\xe4\x7a\x5a\x75\x17\xfe\xfd\x1b\x00\x00\xff\xff\x56\x46\xab\xf5\x52\x07\x00\x00"); +func _befe ()([]byte ,error ){return _gb (_abaa ,"Roman")};var _dafd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4f\xaf\x2d\x3b\x72\xe5\x37\x7f\x9f\xe2\x0c\xdb\x83\xb6\x32\x93\xcc\x24\x09\x3c\x1c\xc0\x92\xba\xe0\x6a\xa0\x6d\xc3\x6a\xd9\x06\x0c\x0f\x92\xfb\x8f\x5c\x80\xf5\xaa\xf0\xaa\x34\xd0\xb7\x37\xb8\xd6\x6f\xed\x57\x6d\x18\xb8\x75\x27\x77\xc7\x21\x93\x0c\x92\xc1\x60\xfc\x63\xf0\xef\xfe\xe1\xf7\xff\xf8\xfb\x5f\xfe\xf0\x97\xaf\xbf\xfb\x5f\x7e\xfd\xe3\xe3\x9f\x5e\x7f\xf9\x7a\xff\xe1\x97\xe7\xaf\xaf\x3f\xff\xf1\xdf\x7e\x7d\xbc\xbe\xe6\xeb\x5f\xfe\xf0\xcb\x4f\x3f\xed\xc7\xd7\xf3\x0f\x8f\xbf\x04\xd4\x7f\x8f\x7f\xbd\xff\xf4\xd3\x4f\xeb\xfb\x7f\xfa\xf7\x3f\xff\xe5\xf5\xaf\xbf\xff\xe5\xfd\xc7\xaf\xe2\x7a\xcf\x7f\xfb\x13\x75\xbf\xbe\xfe\xee\x7f\x7d\xfd\xcb\x1f\xfe\xfc\x97\x5f\xff\xfd\xeb\x3f\xfc\x0f\xcf\x3f\xce\xd7\x7f\xf7\xf5\x7c\xbd\xd7\xdf\xff\xe7\x5f\x9f\xaf\x5f\xff\xf0\xcb\xbf\x7c\xfd\x87\xff\x7c\xff\xe9\xfe\x65\xff\x14\xfc\xd3\xbf\xfd\xe9\x4f\xff\xcf\xeb\x5f\x5f\xbf\xfc\xe5\xab\xe9\x6f\xaf\x5f\x9e\xfa\xff\xa7\xbf\xfb\x87\xff\x72\xff\xe9\x7f\xba\xff\xf5\xf5\xf5\x77\xff\xfc\xcb\x1f\xfe\xf3\xef\xff\xe9\xd8\xb6\xfa\x1f\xff\xf9\xbf\xfe\xae\xff\xc7\xff\x51\x35\x54\xe1\x7f\x7b\xfd\xfa\xe7\x3f\xfc\xf1\x97\xaf\xfd\xbf\xdf\x8e\xfd\xb7\x3f\xff\xd7\x7f\xff\xd3\xeb\x6b\xa7\xa1\xff\xe3\x9f\x7f\xff\x8f\x5f\xff\xe7\xfe\xb5\x6f\x5f\xc7\x79\x95\xfd\xff\xe2\xef\xff\xfb\x7f\xf9\xe3\xf3\xf5\xb5\x19\xaa\x1e\xc4\xe3\x8f\xcf\xd7\x9f\xff\x74\x3f\x5e\xbf\xde\xbf\xfc\xcb\xeb\xa7\xaf\xaf\x9f\xb7\xed\xfb\xcb\xff\x7e\x6e\xbf\xfb\x5e\x7f\xf9\x87\xad\xf3\xb7\x9f\xff\xf1\x77\x7f\xef\xbf\xfd\xa7\xad\xf3\xd7\x9f\xff\xd3\xef\xfe\x3e\x7f\xfd\x9d\xfe\xba\xfe\xfe\xf3\xef\xda\xdf\xf3\xf7\xd7\x2f\xcf\xff\x4f\x2f\x3f\xed\xee\xfc\x97\x3f\xfe\xe5\xf9\x7a\xfb\x6f\xea\xf7\xe7\xfd\xfd\xfd\xb5\xaf\x2f\xfe\xba\xe8\xa7\x7d\xdb\xc0\xf6\x0f\xcf\xc7\xff\x7d\xff\xfa\xd3\xcf\xe7\xe3\xfb\x6b\xb4\x9f\x7e\x6e\xeb\xff\xf1\xd3\xcf\xed\xf9\xfd\x35\xea\x4f\x3f\xb7\xd7\xf7\xd7\xbe\x6d\x3f\xfd\xfc\x38\xee\x6d\x35\xb5\x7e\xd4\xf5\xb7\xa6\x9f\xe7\xf7\xd7\xe5\x3f\x5e\xdf\x5f\xa3\xe8\x57\xfb\xfe\x6a\x87\x3f\xe9\xdf\x5f\x57\x75\xcd\xf1\xfd\xb5\x9f\x87\x7e\xde\xdf\x5f\x7b\x75\x85\xb9\x9a\x1a\xfa\xf9\x58\x15\xdc\xc2\x73\xfd\x74\xb3\xab\xff\xb3\xea\xe7\x1a\xca\xa1\xba\x73\xfb\xfe\x6a\xc6\x60\xee\xdf\x5f\xd7\x50\x85\x59\x57\x6f\xa7\x7e\x9e\xeb\x33\xd7\xbd\xbe\xbf\x5a\xeb\xfa\xd9\xbe\xbf\xf6\xdd\x9f\xf5\xef\xaf\xbd\xf8\xb3\x85\xd9\x25\x74\xa6\x30\xf3\x5f\x17\x66\x87\xd0\x99\xea\xf8\xfa\xe9\xe7\x47\xe9\xd7\xfa\x6c\xb5\x5b\x46\x5b\x1d\x9f\xfa\xb9\x1a\xab\x87\x7e\xae\xba\xe7\x6a\xac\xac\x19\xd9\x85\x4e\x99\xaa\xab\x16\xd4\x71\x5d\xe8\xd4\xb5\xac\xa3\x5c\x97\x7e\xef\xfa\xbd\xeb\xf7\xb1\xda\x68\xa7\x0b\x8a\x80\x6b\x08\xa8\x02\x4a\x13\xa0\x31\x36\xf5\x50\x85\xd8\xd9\x4e\x37\xdc\x04\x34\xb7\xd6\x05\xf4\x22\x60\x18\x70\x6b\xf7\xf7\xd7\xb1\x95\xe2\x92\x29\x40\x2b\x54\xfb\xc3\xad\xb9\xda\xd3\xad\xb9\xe4\x65\x74\xdc\xf4\xdb\x25\x6b\xc2\xea\xd8\xd4\xc0\xa1\x6a\x63\x77\x89\x70\x1b\x87\xc6\xa6\xc6\x46\xd1\x6f\x7f\x71\xb9\x7f\x03\xcd\xfd\x0b\x99\x61\x9c\xb5\x28\x75\x18\xe7\xe6\x92\x7b\x7d\x3f\xdc\xee\x5c\x34\x2a\x32\xa8\xc3\x18\x77\xb7\x65\x8c\x87\x3f\x7f\xb9\x17\x7f\xf2\x76\x2f\x02\x6e\x63\xec\xd9\xbc\x77\x97\x68\xd2\xef\xc3\x25\x06\x3c\xe9\xdd\xdf\x78\xd2\x87\xc6\x7f\x7b\x00\xa2\x92\x7a\x6b\xd2\xfb\xee\x6f\xba\x50\x13\x02\x8b\xf2\x47\xdd\x35\x2f\xb7\xd0\xbf\xdc\xe3\xd4\x6f\xff\x1d\x24\x35\x47\x37\x48\xaa\xd6\x04\x49\x2d\xec\x22\xf6\xbd\xaa\x87\x69\x14\x0f\x0d\x78\x16\x03\xae\x04\xbe\xae\x06\xbe\xea\x65\x1a\x5f\x6d\xbd\x3a\x99\x70\x7f\xd3\xdd\x80\xfa\x9f\x9e\x70\xfa\xbf\x3d\xfb\xfe\xc6\x44\x52\xdd\xda\x43\x80\x17\x69\x7a\xca\x3d\x80\x69\x22\xa9\x6e\xc0\xa3\x39\xd6\xf4\x9d\x9d\xd1\x6c\x02\x34\x9a\x5d\x3f\x17\xc9\xab\xfe\x19\x82\x3f\x04\x78\x2c\xed\x12\x70\xba\xf7\x22\x0e\x08\xe7\xfa\xff\xe1\x65\x8f\xb3\x7b\xa0\x97\xdb\xf6\x6e\xb8\x8a\x00\x53\x56\x73\x57\xc3\xd8\xb8\x9a\x77\xc3\xe1\xae\x44\x5a\xc5\xbf\x17\x4b\x2c\xcd\x28\x3f\xb5\x66\x1a\xcb\x22\xf8\xd5\x6e\x15\x00\xc1\x77\x01\x1a\x8d\xfa\x5b\xf4\xbe\xd7\xa1\x9f\x1e\xcb\xe9\x8f\xbd\x2e\x97\xeb\xb3\x2e\x6e\xc9\xeb\xe2\xf1\x67\x23\xf8\x1b\x36\x82\x5b\xf3\xba\x68\x2d\xcf\xb5\x13\x16\xe0\xd6\xd8\x0a\x1a\x62\xb6\x82\x91\x61\x5d\x34\x5e\x73\xaa\x26\x5e\x75\x6a\x2b\x88\x8e\x4f\x6d\x84\x43\x1f\xdf\x66\x44\x97\x01\xaf\x4b\xd7\xc7\xec\x09\x11\xc2\xc9\x9e\x38\x5d\xc2\x9e\xf0\x37\x1e\x4b\x71\x35\xef\x09\x0d\x85\x3d\xe1\x4a\xde\x13\xc2\x9d\x3d\x61\x44\x18\x87\x0b\x18\x87\xa6\x68\xed\x96\x51\x37\xff\x7e\xab\x25\xad\xd4\x64\x45\x0c\x78\x45\xba\xc6\xc7\x6e\x11\xaf\x3c\xd9\x2d\xee\x65\xed\x96\xb5\x0d\x5c\xcd\x14\xe6\x25\x65\xb7\x78\x58\xec\x16\x2f\x84\x76\xcb\xe1\x4a\x5e\x13\x2f\x36\x7b\x45\x3c\xf4\x9c\xac\x89\xab\xc1\x50\x0d\x3c\xd7\xe7\x6e\x69\xed\x7b\xed\xba\x4b\x44\xa3\xd9\xb9\x44\x34\x67\x17\x29\x36\x9f\x06\xfd\xd8\x05\x88\xfe\x34\x0b\xad\x7b\x16\x5c\xe9\xad\xbf\xaf\xa9\x6a\x8b\x2e\x47\xdd\x37\xfd\xde\x55\x47\xdf\x8a\x0d\xd7\xbd\xe8\x77\xd1\xdf\xfd\xbb\xea\xef\xa7\x7e\xb3\xc5\x86\x00\x9f\x29\xc5\xb5\x3c\x01\x62\x3e\x0d\xb2\x14\xe7\x6e\xc3\xbb\xa8\xba\x73\x4f\x41\x71\x6b\xb0\x8b\x26\xc0\x53\xa0\x3d\xd5\x98\x68\xcd\x47\x9b\x92\x35\x34\xc0\xbe\xe6\x79\x54\x7d\x3e\xbc\xc1\xba\xa8\x67\x78\x24\x7b\xd7\x6f\x4f\x89\x9a\x1a\x99\x2c\xd7\xd2\x58\x44\xc8\xc3\x5b\xac\x8b\xda\x87\xc7\xd2\x37\xd7\x32\xab\xa6\x5a\x37\x30\x04\x88\x2e\x0f\x37\x7c\xeb\xb7\xff\x6e\x7e\xe0\xaf\x1f\xee\x7d\x13\xf0\x32\xe0\x4e\xde\xee\x44\x9f\xdc\xc6\x5e\xeb\x3c\xee\xdd\x87\x83\x7a\xf4\xe6\xe9\x1e\xa4\x37\x4f\x17\x7f\x1f\xb7\xb1\xdc\xdd\x80\xb1\x14\x01\x8d\x1b\x2c\x9b\x00\x4d\x72\xef\xe7\x8f\x18\xe1\x60\x0f\x0d\xb7\xfe\x34\x7a\x06\xcc\x0b\x86\xbb\x32\xe2\x5a\xe9\xe1\x5d\xd4\x77\xf5\xcb\x2e\xd2\x81\x3b\xa6\xe7\x5d\xa4\x35\xa6\xe7\x7d\xf3\x37\x1e\x92\xce\x9c\xb1\x16\x77\x54\x1d\xab\x63\x7a\x44\xdd\x80\x07\xa1\x1d\x3d\xbc\x73\xfa\xe6\xc6\x3c\xa2\xea\xc6\xa6\x4b\xfc\x0d\x48\x1b\x1b\x90\x5e\x25\x77\x37\x9e\x92\x65\xee\xce\x04\x9f\x02\x8c\xe7\x66\x40\xa4\x2e\x4e\x75\xfb\x38\xe9\xda\xba\xb7\x8f\x82\xae\xcd\x71\x5b\x30\xea\x3a\x41\xef\x6e\x6c\x8a\xab\x79\x1f\x4b\x7a\xbb\x75\x16\xd4\xe2\x5a\xc6\xac\x18\x19\xd3\xc1\xee\x6e\x3c\x9d\x92\x3f\x6e\xa8\x58\xfb\xf4\xf6\x31\xd1\x8d\x8d\x37\xa4\xe8\xf3\xf6\xe1\xd0\x45\xdf\x37\x94\x2b\xf6\x78\x87\x3e\xdd\x98\xd1\x1c\xfe\xc6\x84\x38\xdc\x98\xb1\xd9\x5d\x02\x02\x6b\x3a\x6f\x68\x4f\x27\xc5\x7d\xb3\x75\x34\x69\xac\xb4\xd8\xc9\xcd\xe2\x6a\xa5\xef\x69\xda\xf3\xa0\xd7\x7a\x88\x82\xee\xc5\xc6\xf4\xb7\xc9\x7c\x6b\x25\xa6\x84\x4f\x4d\xdd\xe4\xb0\x15\x03\x99\xcc\x70\xf5\x17\x23\xe2\xfb\xd4\xfc\x1e\xfe\x74\x7e\x7f\x89\xa9\x4e\xcb\x9c\x5d\xcc\x62\x9a\x87\x89\x1c\x66\xe6\x4c\xed\x87\xf3\x18\x40\x9a\x3d\x04\xac\x46\x8b\xbf\x80\xf5\xaa\xdf\x35\x4b\x1a\xd4\xe4\x2c\x3c\x5d\xc7\x0b\xa6\xb3\xed\xb1\x48\x49\x58\x3c\x44\x2d\xfe\x55\x83\xef\x43\x82\x87\x98\xc2\xa3\x7f\x7a\x79\x88\x30\x8a\xeb\x2e\xdc\x8b\x9b\x7a\xfe\x36\xe6\x07\x84\xa0\xc3\xe5\x61\xd6\xd8\x75\x7c\x3f\x58\x3b\x49\x28\x0f\x18\x82\x8e\xc0\x07\x0c\xe1\x34\xd0\xa2\xa6\x3c\xc4\x01\xc4\xf2\x1e\xd6\xa5\xba\x31\x86\x19\x34\x97\xb8\x59\x09\xee\x0f\x76\xb5\x8e\xc3\x07\x6b\x2d\x29\xfc\xb1\xd6\x5a\x87\xdc\x83\x8d\x2b\x55\xe1\xa1\xcd\xaa\xa9\x7d\xb0\x3b\x25\xdc\x3d\x7c\x7a\xf5\x66\xc0\x03\xd4\xe7\xcf\xd0\xd6\xc2\xe4\x65\xa9\xab\x6a\x61\x5f\x5d\xd2\xa1\x59\xe6\xab\xbf\x0c\x14\x01\x6f\x03\xfa\xc6\x5a\x83\x37\xc1\xeb\xbe\x5d\x62\x60\x1a\x58\xfd\xbc\x26\xd5\xd6\x37\x6f\x6d\xef\xeb\x38\x8e\x1f\xb1\xbf\xb7\x65\xba\x2a\xd2\x7f\x5b\xc3\xa9\xe2\xa7\x6f\x30\xd2\x32\xbd\xb5\x45\x8f\x4d\xfb\xf5\x2d\x72\x3b\xb6\xe1\x92\xd3\x80\xbe\x11\x59\x1d\xdb\x22\x8f\xe7\xa6\x0d\xb0\xad\x25\x78\xee\xfa\x64\x5b\x5b\xe4\xb5\xcd\xb7\x8e\x9a\x63\x5f\x54\xf9\xda\xa7\xf7\x4c\x59\x1b\x45\x90\xce\xba\x75\x42\xbc\xf6\xf9\x9c\x22\xf3\xb5\xb5\x05\xf9\x88\x4b\x99\xb8\xc3\x1a\xbe\x20\x71\xb1\x35\x81\xaf\xa3\x6f\x6b\x06\x8e\x35\x4d\x02\xca\xf7\xd7\x95\x92\x35\x94\x6b\xc9\x8e\x02\x24\x60\xf3\x7b\x4d\xda\x07\x28\x7f\x0d\x54\x56\x5d\xc0\x52\xe8\x2f\x5a\x5e\x23\xb9\x16\xf9\x08\xe8\xe6\x02\xfa\x3d\xcc\x07\xf4\x5b\x9b\x79\x03\x58\x94\xb2\xa5\xd6\xa2\x94\x23\xb8\xbc\x34\x2b\x06\xc4\x85\x34\xd0\x05\xa8\xcb\x00\xea\x92\x06\xa4\xe6\x37\x1a\x58\x5c\x48\x12\x87\x80\x87\x5a\xdb\x69\xcf\x62\x14\x08\x4d\x93\x7d\x75\x8b\x3b\xd4\xd2\x0f\x40\x19\x2f\x2a\xc0\x70\x33\x94\x69\xbe\xae\xa3\xef\x80\xf7\xf7\x57\xeb\x8c\x79\x5f\xa3\x69\x62\x78\x0b\xd2\xca\x95\x16\x48\x5d\x0e\x06\x2e\x53\xc6\x90\x70\xf3\x3a\x7a\xd1\x34\x5c\x52\xce\x04\xae\x89\xd8\xb7\x45\xfe\xaf\xa3\xcb\x08\xb0\xef\xfd\x0c\x58\xbe\xbf\xda\xbe\x01\x9c\x2e\x1b\x80\xe3\xfb\xab\x97\x2d\x35\x6f\x41\x15\xe8\x6d\xda\xf4\x48\xa4\x66\xf7\xed\xa0\xea\x5a\xc7\x76\xa5\xd5\xb5\x67\xfb\x96\x0e\xa5\xea\x82\x5b\xb5\x11\xe7\x53\x24\x5e\x7e\xee\x01\xd7\x02\xb4\x1d\xc0\x0a\x2b\xc4\x61\x35\xf3\xd8\x3a\x98\xae\xb5\xea\x65\xf3\xec\x48\x51\x1a\xd2\xc6\x05\x2d\x2a\xd7\xb1\x2f\xe8\x10\x74\x01\x59\x93\x38\xf8\x70\x4d\x6b\x2f\x9b\x49\xfb\x5a\xc3\x1f\x92\xe7\x17\xb4\x3e\x94\x30\x29\x60\xcd\x5a\x19\x00\x62\xdc\xc7\x66\x4c\xdb\xe2\x4a\xbd\x6c\x03\x68\xba\xb0\x01\x3e\x0c\xba\x9d\x66\x46\x70\x80\x9c\x24\x66\x49\xf3\x02\xea\x02\x8c\x4b\x5b\x13\xd5\xb7\x3d\x50\x13\x44\xc5\xc5\xa8\xfb\xc6\xee\x6a\x8b\x57\xf7\x0d\x42\x95\xdc\xdb\x0b\x35\xfb\x5a\xfb\x06\x99\xf4\xae\xce\x06\xc0\x1a\x10\xeb\xd0\x45\x06\xc7\xde\x53\x11\xe5\xb6\x01\xb6\xb5\xb8\x1b\x40\xff\xfe\x92\x7e\x27\x40\x3c\xbc\xb6\x0b\xd0\x1b\x75\xa4\x74\x2d\x67\x0d\x26\x56\xd2\xd9\x78\x7d\xad\x51\xbb\x20\x9f\xbe\xa6\xe1\x1a\x05\xa0\x78\xcb\xf4\x1f\x30\x5f\xd5\x1d\xd8\xdb\x04\xac\xdd\x74\xa5\xc9\xb5\x99\x32\x82\xb5\x23\xda\x96\xf6\xdf\xea\x9a\x79\xb8\x35\x43\x0c\x60\x4d\xa5\x74\x5c\x01\xab\xb9\x4a\x0b\x4b\xb2\xed\xfb\xa0\xf1\x45\x9b\xed\x3a\x98\xae\x75\xc2\xb5\x2d\xc0\xb9\x8a\x68\x42\x4c\x84\xb5\xee\x53\x18\xb9\xa7\xd1\x3d\x48\xb8\xda\xb0\xa5\xed\x84\x68\x86\xc5\x9a\x93\xdd\x2e\x6d\xa4\xc1\x72\x25\xf5\x5f\xb0\x0c\x49\xfd\x0d\x66\x3a\x2c\x79\x9d\x6c\x5f\xcb\x78\xc7\xde\x3b\x20\x87\xc6\x05\xd8\x0c\x0e\xc0\x6e\xb0\x01\xbe\xcc\x6e\xa8\x2c\x4d\xe3\xd8\x3b\x2d\x2f\x7e\x2a\xe3\xcd\x02\xa6\xa6\xb3\x78\x20\xd3\x32\xcd\xc1\x1c\x3e\x24\xac\x1d\x07\x8c\xf8\x61\x72\xa7\x0c\x41\x0b\xce\xf0\xf2\xd9\x27\xa3\x86\x40\xf3\x5f\x56\xf0\x25\x79\xf3\x37\x10\x84\xea\x05\xa8\x13\x55\x06\x5d\x81\xc7\x7f\x5b\xf9\xfc\x6f\x41\x4f\x04\xbb\x42\x22\xc1\x6f\xa5\x3a\xb6\xf7\xeb\x68\x42\x63\x6c\xb2\x49\x5c\x87\x8f\x88\x51\x56\xe5\x7e\x78\xe1\x47\x11\x53\xde\x4e\x13\xd6\x10\x17\xea\x87\x91\x18\x32\x85\xf4\xc3\x7b\x7b\xc8\xe6\xd1\x0f\xf7\x39\x4e\x37\x73\xf2\xdd\x92\xa2\xfa\x71\x6e\x86\xa6\x5a\xf1\xd9\x32\xc4\x92\xfa\x51\x2b\x90\xbe\xf3\x14\x8d\x6b\xed\xaf\x7e\x78\x83\x8d\x6b\x31\x9a\x7e\x78\x67\x8e\x6b\x09\x89\xfd\xa8\x1b\x90\x70\x29\x69\x53\xfd\xf9\x3c\x1e\x97\x36\xc0\x41\x91\xe8\xe9\x48\xc9\x21\xc6\x72\x02\x69\x9e\x3e\x8d\xdc\x66\x73\xa5\x19\x9c\x3e\xd8\x0a\x95\xa7\x78\x27\xb8\x4c\xf1\x4e\x50\x99\x9e\xfd\x91\x8a\x66\x6c\x29\x7c\xac\x9a\x0c\x4f\xfb\xa5\x78\x74\xad\x7b\xc1\x47\x05\xd4\x09\x63\x96\x3b\xc4\x80\x61\xe9\xa3\x89\x5b\xf9\xa4\x1e\xcd\xd3\x47\xf3\x0d\x03\x9c\x4f\x98\x21\x4e\xdd\x8e\x02\xf0\xf0\x5a\xa6\xbf\xb5\xc3\xcd\x9e\x86\x6c\x1f\x8d\x45\x6f\x4b\x94\xee\x87\x89\x78\xb4\x45\x5b\xfd\x38\xe9\xdb\xa4\x95\x65\x6e\x6b\x61\x65\x4c\x5b\xc0\x64\xc2\xc0\xcc\xf2\x45\x56\x41\x1c\xb8\x59\x92\x19\xdd\xe3\xd9\x01\x5e\x3a\x4c\xfd\x59\x37\x55\x79\x3f\x0d\xb1\xb2\x7e\xf0\xd9\x10\xb3\xf7\x96\x1d\x43\xcc\xde\xac\x60\x88\x67\xf4\xc3\x47\xc4\x18\x3e\x9e\xcd\x35\xc7\x60\x95\x07\x50\x51\xcd\x02\x54\x55\xd6\x81\x34\xd6\xfd\x47\x42\xb1\xaa\x5e\xaa\x5a\x81\xbc\xc8\x60\x26\xbe\xda\x82\xd9\x14\xdd\x98\x47\x0e\x5b\x13\x8e\xfd\x03\x2e\x12\x68\x69\x45\x3b\x73\x1f\xc1\x54\x93\x6b\x44\xc3\xa0\x2c\x9c\x8c\x1b\x5a\x3d\x53\xea\xa9\xf7\x69\x37\x24\x21\x2f\x21\xbb\x01\xbe\x7c\x6a\x19\x9c\x9c\xdf\x50\xe1\xa3\x9b\x97\xf8\x88\x1b\x8f\x01\x3f\xd8\x00\xdd\x11\xbb\xee\x61\x3f\xce\xc1\x6e\x7a\x9a\x68\x91\x7d\xc6\x73\x40\x1d\x94\xc2\x3d\x98\xa4\x97\x39\x04\xcb\xf7\xb2\x4d\x7b\x98\xcc\xee\x4b\x75\xaf\xc3\x9c\xe6\x6e\x3a\x1f\x8e\xc3\x9b\xe3\x36\x16\xfb\x66\xd2\xba\xad\xdf\x1d\xb0\x90\xfb\x01\x51\xfa\x24\xbb\xad\xda\x1d\xb0\x9b\xfb\xe9\x99\x63\x8b\xdc\x56\xb7\x8e\xc3\xf2\xc3\xfd\x34\x27\x85\x72\xee\xd7\x38\x7f\xc3\xf1\x7e\xe5\x08\xd1\xa7\x73\xd8\x5a\x72\x7a\x99\xa7\xac\x22\x7b\x45\x98\x9c\xb7\x4e\xb8\xd2\xcf\x94\x36\x59\xe6\x3f\xa5\x43\x95\x3f\xa5\x53\xa5\x46\x6a\xca\xf4\x51\x0f\xef\xf6\x69\xdb\x47\x45\xe8\x98\xb2\x7e\xd4\xab\x06\x3a\xbe\xbf\x0a\x67\xe5\xbc\xd7\x6a\x55\xc4\xb6\x29\x0b\x48\x65\x3f\x4e\x4c\x20\xc5\xc2\xca\xf4\xf1\x58\xcf\x42\x97\x1a\x5b\xe9\x67\x1a\x92\x4f\xed\xbc\x52\x79\x7c\x7f\x9d\xdb\x99\x96\xe6\x82\x7a\xa0\x45\x4e\xad\x5b\x9a\x99\x32\x94\x94\xcb\x0c\x7c\x8a\x4e\x0b\x54\x3b\x6f\x1d\x2e\xb5\x55\xbe\xb4\x92\x5e\x7c\xb6\xcf\xdb\xde\xbd\xdd\x64\x3a\x6f\x69\xe7\x15\xe9\x74\xde\x5a\xc6\x02\xe3\x9e\xa6\xf8\x32\x06\xf3\x29\x8a\xaf\x63\xa4\x74\x6d\xab\xb1\x67\x70\x32\xd3\xd5\x91\xc9\xd7\xc6\x2a\xe3\x60\xac\x36\xc8\x6d\x1b\x95\x65\xb5\xf9\xad\x29\x19\xe5\xea\x9e\xd1\xca\x8c\x53\xb7\x06\xce\x52\xea\xeb\xf6\xa9\x6c\xab\x45\x65\x08\x52\xec\x4b\xd6\x6a\x8a\x60\x2a\x1b\x7a\xda\xe0\x33\x7c\x68\xcc\x69\x0b\x1b\x2a\xe4\x9c\xa2\xa6\xd2\xbd\xef\xa6\xc4\x8c\xe3\xf2\xee\x98\xb6\x0e\x95\xcb\x0a\xd8\xb4\xf1\xa7\xa0\x56\x4d\xcc\x3e\xd5\x7b\x67\x4e\x9b\x4f\x90\x75\xe7\xb4\x01\xe5\x80\x62\x64\x0a\x2a\x1b\xb3\x3a\x6d\x06\x86\x71\xcc\x69\x13\xef\x6f\x75\x9b\x87\x93\xd2\xbe\x70\xba\x68\x57\x3a\x59\xe9\x0c\xdd\xc6\xa0\x82\xca\x38\xa7\xc4\x99\xd2\x2b\x28\x6a\xe5\xaf\x8c\x75\xad\x74\x29\x2c\xf4\xf4\x42\x1f\x60\x2f\x9b\x05\x1a\xf3\x9c\xb7\xec\xfc\x35\x65\x8b\xd4\xc6\x05\x3a\x5a\xb7\xcb\xa7\xf7\x7c\x98\x15\xb1\xa6\x0f\x1d\x9f\x9c\x83\x53\x2c\xae\x6e\xe3\x47\xb6\x5e\x55\x2d\xaa\xda\x80\xa4\xd7\x9b\x53\x4e\xd9\xb0\xea\xee\x03\x74\x3e\xd6\x9a\x94\xa3\xa5\xfb\xb6\xca\xf6\x74\xbf\x66\xea\x64\x23\x3e\xd6\xde\xaf\x87\x65\xdd\x29\xf3\x57\x39\x2c\xa5\x4e\x59\xc0\x4a\x19\x69\xf3\xb1\x6a\xee\xf9\xee\xb9\xa0\x23\xb8\x88\x47\x7c\x70\x79\x2f\x88\x89\x79\x88\x45\x20\x93\xce\x87\x96\x78\xbf\x52\xb6\x18\xc6\x80\x0b\x88\xbd\xd7\xc3\x52\xc6\x7c\xac\xf5\xae\x28\x99\xf3\x21\xff\x44\xc9\x88\xd6\x6a\x97\x16\xac\x17\x43\xa8\x05\xd6\x27\x7e\x5c\xcb\x91\x36\xa7\xa0\xd4\x7c\xac\xef\x6a\x6a\x2e\x2a\x19\x17\x23\x5a\x44\x52\xeb\x19\x68\x2d\xe7\x0e\x4b\x7c\xd8\x7f\xb6\x81\xd9\xe2\x1c\xa5\xb3\xeb\x64\xdd\x3b\x7a\x07\xcf\xc5\xfe\x8f\x9a\x99\x90\xb7\xec\x33\xbb\xeb\x24\xae\x17\x3b\x5d\x06\xbf\xe3\x62\xc7\xe9\x60\x38\xea\x99\x1e\xee\xbf\x62\xab\x8f\x45\x76\xf5\xca\x0c\x2e\x76\x52\xb3\xfb\x1e\x22\xc2\xbd\xa5\xf7\x35\x86\x96\x99\x90\x81\x70\x64\xa5\x65\x21\x1c\x3b\xdf\x89\xcf\xb4\x12\xc8\xfb\x3d\x35\xff\x9a\x71\xcb\x84\x58\x51\x3a\xe7\x63\x69\x58\x15\xa5\x67\xca\xa2\x58\x5b\x56\x73\xb1\xa3\x8a\xfa\x35\x1f\xf2\x06\x5c\xec\x5e\x1b\x1c\xeb\x99\x65\x99\x6b\x80\x0a\x5a\x10\x34\x05\xa5\xea\x63\x11\x68\xa6\x62\xb1\xad\x3a\x60\x9e\x0f\x89\x0b\xe3\xd3\xca\x3a\xa7\x8b\xc5\xcd\xa9\x03\xff\x38\xd8\x73\xcf\xb5\xcb\xce\x8d\x69\x7a\xae\x5d\x56\x4e\x48\xf9\xb9\x36\x52\x41\xd9\x99\x4f\x6d\xa4\x66\x69\x7d\x3e\xd7\x46\x2a\x98\xc8\xe6\x73\x6d\xa4\x73\xeb\x69\xa5\x69\x7b\x54\xa0\xfe\xfd\x75\xee\x25\x6d\xae\x01\xf6\x2b\xad\xac\x8d\xd4\xf7\xd4\x5c\x07\x42\x3f\xd3\xdf\x1a\xdf\x71\xa4\x87\xe7\xf7\xd7\x59\x60\x4d\xcf\xb5\x91\xce\x72\xe5\xbb\xb7\x20\x7a\x5f\x1b\xa9\xd4\x93\x1e\xb4\x91\x3a\xdb\xe3\x39\x64\xe6\x81\x4f\x3d\xd7\x46\x3a\x4b\xcb\x77\x62\xd7\x5b\xca\x24\x0a\x04\xcf\xb5\xc9\xca\x06\x47\x7b\xae\x4d\x56\x4e\x96\xfa\xb9\x36\xd9\x79\x41\xf4\x4f\x9d\xba\xd7\x96\x9a\x6b\x7c\xd7\x9e\x1e\x96\x2c\x1f\xde\xf7\x94\xf2\x78\xb5\xb4\xb2\x36\x59\xef\xe9\x4f\xeb\xf7\x69\xf3\x2d\x22\x64\x06\x2d\x0c\xc1\xd0\x31\x3d\xa7\xa6\xb5\xeb\xc2\x68\xd7\x06\x3c\xae\x33\xdf\xd5\x35\x13\x1c\x64\xcf\xb5\x01\xcb\x5e\xf2\xdd\x1a\x5f\x6d\x29\xd3\x79\x19\xc6\xff\x5c\x3b\xf0\x0c\x11\x3e\xd7\x0e\x2c\x9f\xc9\x5e\x3b\xb0\xd4\xf3\x47\xb1\x08\xaa\x3a\xb5\x05\x83\xcd\x43\x2b\xcf\x3c\xad\xed\x59\xda\xa7\xff\xd7\x2a\x2b\x29\x5b\xd4\x7b\x21\x49\xc9\x56\x7c\x1c\x59\x17\x47\x82\x8c\x1d\xdc\xb4\x3f\xcb\x15\xa8\x88\x9c\xf2\xe1\x1a\xfe\x08\x71\xc9\xf3\x3a\x32\xf9\x6b\x7f\x96\xcf\xa2\xc9\xc9\x1d\x9e\xfd\xb4\xb7\x0e\xd9\xe8\xb9\xf6\xe7\xb5\x7f\x7a\x58\xa3\x1f\x5b\x5a\xb1\x50\x9e\xef\x16\xff\xd9\xb2\x41\xec\xec\xfe\x40\xaf\xef\xaf\xeb\x40\xb4\x91\x8c\x7d\xe4\xc0\x7e\xc9\x09\x93\x56\x5e\x6b\x7b\x16\x4c\xb1\xf3\x25\x83\xf7\x09\x27\x7e\xad\xed\x79\x1c\xe0\xf2\x92\xb4\x81\xb4\x3d\x5f\x36\x96\x59\xd3\x9d\x76\x49\x5c\x23\x6d\xae\xf1\xa1\x7d\xce\x97\xce\xb9\x10\xfa\xcb\xb1\x20\x9f\xfe\x96\x2e\x1a\x42\x7f\xc9\x49\x55\x8e\xf4\xf0\x50\x50\x5b\x70\x59\xe3\x1b\x30\x00\x39\x3a\xf6\x7e\x06\x92\x9a\x90\xef\x86\x2d\xbd\x7c\xb7\xb6\xe7\x75\x05\x4f\x89\x32\x39\x23\x5e\x0e\x1a\x39\x53\x56\xb5\x25\x68\x53\x1e\xfa\x30\xb8\x97\xb6\xe7\x3e\x52\xd6\xbe\xbf\x2e\x6c\x7a\xf3\xb5\xb6\xe7\xd5\x6a\x5a\x19\x16\xe7\x80\xd6\xf8\x22\x92\xc9\xb8\x73\xf4\x4f\x0f\x8b\xfd\xf4\x23\x35\x9f\x92\x06\x2a\xd0\x6b\xcd\x19\xf4\x22\xb3\xcf\x71\x72\xe6\xca\xea\x73\x0c\x58\x9a\x8d\x3e\xe7\xce\xe6\x91\xd1\xa7\xf4\x34\xa3\x03\x32\x02\xc0\x4b\xfb\xb3\x72\x04\xcb\x1e\x54\x46\x0d\xb4\x84\x3a\x6c\xa4\xf3\xb5\xf6\xe7\x47\xfe\x7b\x49\x12\xeb\x21\x18\x6d\xcf\x13\xee\x27\xbb\x51\xdb\xf7\xf4\x30\x05\x05\x51\x2b\xf7\x69\xe5\xf9\xfd\xd5\xaf\x91\xb2\xb5\x03\x6b\x48\x4b\x32\x1b\xb6\xea\x29\x27\xd4\x5e\x21\xe5\xd7\xda\x81\x6d\x6f\x81\x0e\x41\x7c\xa7\x0d\x58\x38\x20\x5f\xda\x80\x17\x9c\xf8\xb5\x36\x60\x39\x3f\xad\x88\xff\xc0\xcf\x5f\xda\x80\x67\xe6\x45\x61\x26\x25\x24\x32\x1d\x66\x11\x68\x6d\xc0\x08\x77\x2f\xc7\x65\x65\x23\x25\x30\x0b\xe8\x29\xf3\x4b\x20\x59\x4e\x46\xbe\x93\xe9\x04\xce\xf8\x96\x85\xa2\x30\xda\xb7\x04\xfe\x48\xbd\xf8\xdc\x38\x81\xdf\x3a\x1f\x37\x44\x93\xf7\xda\x80\xad\x7e\x6a\xda\x59\xda\x80\x2e\x59\x99\xf3\xdd\x5a\xbf\x68\x45\x6f\xe9\xc9\x25\xc2\xf3\x5b\x07\xe4\x05\xf5\xe2\xba\x3b\xf3\xa1\x8c\xd5\xc8\x3b\xef\xb5\x03\x5b\xad\x69\x66\xb1\xd0\x48\xb6\xb6\x10\x8e\xd2\x7e\xcc\x97\xdf\xda\x9e\x2d\x98\xfa\xf4\x84\x98\xdf\x6b\x0b\x96\xa1\x73\xaf\xe0\x62\x13\x2e\x0b\xa8\x72\x28\x74\x43\xf6\x43\x50\x24\x3f\x84\x04\x85\x62\x5f\xd8\x75\xa5\x44\xe6\xe5\xcf\x47\x76\x86\xb5\xd4\x94\x91\x56\x1a\x74\xe9\x9b\xcc\x41\x16\x4c\x8a\x7d\x60\x4b\xc7\x0f\x28\xc7\x83\xb4\xce\x62\x9f\xd8\x7e\xec\x1b\x68\x4a\xa1\xbb\x6c\x86\x5b\xe0\xd3\xbd\xb8\xdd\x03\x23\xad\x58\x5c\xe9\x0e\xe7\x85\x17\x97\x5e\xa6\x78\x5c\x07\x10\xea\x1b\xc0\xdb\xad\xba\x62\x97\x05\x74\x1f\x0d\xa8\x2c\x48\x14\x5b\x6c\x6b\xef\x0a\xe9\x13\x74\x0a\xea\x40\x97\xa0\x7c\xd7\x64\xab\xa8\x40\x5d\x65\x07\xd0\x90\x41\x7d\x03\xba\x57\xd9\x99\x36\xa7\x6a\x0e\xa0\x87\xa0\xb4\x22\x2f\x40\x49\xd9\x4b\x65\x17\xd0\x5b\x90\xdb\x94\x31\xa4\x2b\x4c\x57\x90\x6d\x3b\x27\xd0\xa1\x9a\x81\x34\x3e\xe6\x65\xe0\x3c\x1c\x80\x43\xa6\xba\x61\xd4\x1c\xe8\xb1\xd5\x16\x70\x15\xee\x57\x20\xb5\xca\x94\xca\xf2\xd1\xf7\xeb\x00\xd2\xac\x9d\x17\xd0\xe9\x3e\x4e\x40\x4d\xdb\x15\xa8\xb9\x30\x5f\x6a\xde\x20\x15\xd9\x3d\xba\x65\xbc\x05\xdd\xaa\xda\x07\xe0\x34\x98\xba\x0f\x37\x54\x01\x9f\xf2\x4b\xa5\xae\xa6\xee\x33\xae\xb7\xc7\x45\xa1\x24\xad\xad\xa6\x54\x56\x92\xad\x0e\x46\x26\x77\x97\xad\xf7\x0b\xf2\xda\x35\x20\xad\xdd\x99\x76\xb4\x76\x17\xd8\xda\x83\x73\x06\x12\x02\x57\x5a\xd1\xda\xb1\xfd\x6e\xd3\xdf\xe9\x19\x98\x96\xf0\xb3\x5b\xa4\x48\xf7\xad\x06\x92\x17\x14\xb2\xb2\x3e\xbc\x2b\x50\x42\xa0\xa8\xb3\x17\xa0\xcb\x85\x0d\x50\x91\xe2\x9d\xbd\x22\x95\x78\x95\x0e\xc0\xe1\xd2\x0a\x78\x1b\x4c\x3f\xd3\x60\xfa\x79\x18\x0c\x4e\x4f\xb9\xf9\x3c\x98\x87\x9d\x8a\xa9\x2a\x03\xde\xc6\xf6\x91\x7e\xdb\x37\xc8\x59\xfa\xed\x92\x1e\x52\x55\x4e\x46\xe8\xf9\x61\x47\x5b\x87\x2e\xa5\xa9\xf6\x8d\x2d\xf3\xb0\x09\x19\x12\x96\x6e\xda\x37\x36\xac\x23\x4f\xf6\xb1\x31\x6c\xd9\x26\xf7\x01\x27\x92\x76\xda\xce\x74\xa9\xb8\xfe\x93\x85\x96\x06\xda\x37\x96\x41\x1a\x68\x3b\xd3\xbf\x2c\x58\xfb\xd8\x19\xe4\xd4\x36\x61\xcf\x5a\x95\x44\x45\x5b\xe0\xc2\xa7\x1c\x3f\xe4\xd7\xab\xaa\xd1\xa1\x4b\x07\xf3\x5b\xf1\x5b\x60\x37\x98\x52\xb9\x5d\xd9\xfd\xd2\x26\x57\x21\xa3\x16\x13\xd9\x60\x45\x8e\x6e\xd9\xc7\x91\xba\x46\xbe\x78\x71\x6d\x25\xde\x07\xd3\x27\xad\x71\x81\x27\xa0\xe6\xb6\x06\x92\x25\x1d\xb6\xf2\x34\xd1\x0c\xa6\x5a\xfa\x5f\x3b\x7b\xaa\xde\x1a\xcb\x00\x12\x51\xf4\xf4\xf1\xd2\x94\x00\xc9\x17\x7b\x0e\x5a\x71\x18\xc7\x48\x1f\x0e\xe4\x18\xec\x37\x69\x72\x0b\xdc\x01\x85\x0f\xec\xd1\x2a\xc3\xde\xe1\x48\x4f\xfb\xe8\xe1\x16\x12\xda\xdb\xf5\x81\x74\x5a\x1d\x07\x90\xfd\xa9\xf9\xee\xad\x41\xba\x51\x89\xbf\xab\x51\x40\x39\xd9\x36\x66\xe7\x05\x05\x37\x20\x61\x73\xa4\xa6\x08\x98\x49\xb7\x7b\x71\xef\x57\x3e\xd4\x8e\x67\x5b\xbc\x7c\x20\x72\x1e\xbc\xec\x54\x85\x62\x5f\x26\x6e\x70\x93\x5c\xd9\xed\x26\x2d\x76\x25\xf6\x9d\x59\x95\xf4\xd6\x37\xc8\xe5\x65\x9a\x3c\x06\x90\x5b\x49\x4d\x07\x4f\xb8\x15\x4b\x3e\x68\x53\x0b\xac\xea\x3e\x90\x18\x30\x5c\x54\x52\x4a\xdf\x4a\x20\x31\x38\xb8\x82\xa4\x94\x76\xed\x46\xf4\x2d\x96\x6f\x11\x6d\x41\x66\x20\x5e\xb6\xa1\xe8\x9e\xbd\xd8\x8b\xbc\x40\x9b\xc2\x3d\xaa\xb1\x89\x53\x35\x3b\x16\xcb\xd8\x1c\x21\x36\x64\xbc\x5b\xe0\xc3\xa5\x17\xe0\x4b\x37\x53\x76\x83\xbb\xad\xd4\x50\xfe\xd8\x65\x96\x6e\x87\xd4\xaa\x32\x8e\x8e\xc2\xe7\x96\x0f\x91\x5a\xb3\xb9\xad\x0c\x5f\xa9\xb9\x9a\x09\x71\x1c\xda\x35\xcd\xc1\x19\x65\x14\xed\x8b\x5e\xcc\x12\x47\x11\xff\x6c\x36\xce\x95\x51\x1c\x90\x67\x31\xb0\x8c\x8a\x7d\xf5\x02\x94\xcd\x06\xfb\x63\x19\x0e\x34\x6f\xc5\x64\x3b\x14\xec\xbd\x40\xcf\xc6\x65\x85\xa0\x80\xf3\xa5\x11\x35\x1b\x4b\xcb\x68\x9a\xab\xe6\xb8\x9c\x32\x1c\x8d\xdc\x8a\x09\x69\x34\x5f\x05\xd9\x2e\x4a\x15\xfb\xd6\x8a\x79\xb1\x9d\x7c\x7b\xab\x9b\x87\xdf\xad\x76\xed\xc5\x2d\x0f\x31\xf9\x56\xcd\x9c\x87\x03\x39\x5b\x6d\x05\xf0\x32\xd8\x00\x87\x41\xb7\x6c\x2b\x76\xe3\xb0\x1d\xb2\x07\xec\xed\x34\x37\x1a\x4f\x2f\xd9\x69\xce\x35\xa4\xa0\x2f\xd0\x38\x7b\x83\x95\xee\x0d\x3f\x2c\x95\xb7\x33\xa0\x0e\xe3\xba\x7b\xdf\x8e\xb7\x67\xe3\x6c\x94\x7a\x80\x27\x48\xbe\xc5\xd9\xda\xe9\x03\xf0\xd6\xad\xb2\x05\x76\x83\x32\x06\x86\x09\xdd\x12\x34\x17\xa8\x79\xbe\x77\x2a\x9b\xfb\xdf\xfb\x30\xce\x1e\xd1\xbd\xdf\xc6\xca\x27\xc5\x7d\xf8\x2e\xcd\xd2\x8d\x7e\xc4\xd4\x6f\xdf\xf5\x1a\xb6\x92\x95\xbb\xcc\xfb\x37\xcf\x4e\xb9\x75\x2b\x68\x27\x12\x65\x81\xb7\x41\xe3\x78\x1a\xe5\xcb\x1c\xf6\xbe\x64\x68\xdd\x1c\x71\x56\xee\xcb\x77\x5a\x98\x9b\x5b\x61\xdb\x0b\x6c\x06\x4d\x56\x6d\xa7\x54\x1a\x5b\xb3\x65\xb4\xdc\xb7\xaf\x9a\x20\x91\xde\x76\x68\x6c\xbb\xf9\xda\x3d\x1d\x49\xb8\x7b\x89\x6e\x3b\x1e\x9a\x1d\xea\x0b\x14\xce\x0e\xa4\x28\xf7\xf4\x26\xb3\x7d\xb4\xdc\xd3\x61\xd3\xd5\x6c\xf0\x96\x61\x7c\x55\x76\x47\xf6\x15\x36\x47\xbc\x2c\xf0\x61\xd0\x38\x3f\x6c\xe4\xb2\xf1\xb8\xdc\xb2\x1d\xed\xad\x5b\x88\xbe\x65\xbd\xd9\x5b\xb3\x64\x7e\xbf\xbc\x05\xbb\x39\xec\xfd\xb2\xb2\x65\x1b\xdc\x02\xfd\x2d\x33\x29\x15\x7c\x6f\xdd\xac\xeb\x96\x56\xba\x5f\x30\x95\x5b\xea\xde\x02\x77\x40\x7f\xeb\x1d\x79\xbf\xa5\xa1\x34\x76\xf3\xfd\xf6\xed\x0a\x04\xf6\xb9\x89\xf6\xaf\x61\xd1\x72\x6e\xde\xbe\xb6\x74\x94\x59\xd4\x72\x1b\x9e\xf6\x59\xcc\x72\x90\x0d\xa6\x6f\x91\x35\xbb\x82\x17\xa8\xb9\x1a\xb2\xc0\x95\xa9\xcb\x50\xab\x23\x83\xa7\x62\x02\x50\xd2\xa6\x2f\xa8\xb4\x61\x02\x9d\x97\xe6\xb5\x6f\xd6\xbf\xa6\xe3\x15\x72\xfa\x4c\x47\x17\x8c\xdd\xf3\x3a\x15\xe9\xb5\x77\xab\xb7\x65\x9a\x2f\x44\x64\x9a\xdd\xea\x50\xb0\x18\xbe\xd1\x84\x2a\x37\x1d\xf5\xdf\xed\x7c\x5c\xe0\x25\xd0\x67\xee\x74\x14\x7f\xb7\xa2\x5e\x70\xc2\xf6\xcd\xbc\x6c\x12\x76\x5e\x4d\xa1\x76\x88\xee\x7d\x33\x13\x99\x8e\x6f\x3e\xab\x37\x8a\x4d\xb1\x7b\x87\xba\x31\x00\x5e\xc3\xfc\xd7\x56\xbe\xbd\xef\x3e\x7a\x6d\xd8\xdb\xa3\x1a\xd9\xc8\xb1\x47\x2e\xb7\x25\x63\xaf\x88\xdb\xe8\xe1\x7d\x67\x80\x6f\x3a\x32\x13\x99\xef\xc1\x5c\xad\xca\xb5\x6f\xd3\x95\xa5\x0d\xd4\xbe\xcb\x13\xdb\x6d\x90\xaa\xfd\xf0\xdd\x0c\xdd\xa3\x7a\xd5\xce\x5d\xc6\x2a\x34\x2a\xe1\x8d\xdd\xb6\xba\xda\x7d\x35\xab\xdb\x13\xbe\xc0\xb7\x40\x71\xba\xda\x7d\x2a\x10\xa3\x53\xfb\x25\xd6\xd6\x7d\x74\x2d\xd0\x95\x65\x63\xad\x0e\xcf\xdb\xfb\x21\xe1\x7e\x81\x2f\x83\x6e\xb9\xd9\x3c\x6a\x33\x7d\x75\x00\xdd\xde\x7d\xce\x2d\xd0\x95\x87\x2b\xfb\xb2\x46\x75\x84\x41\xb5\xe6\xb6\xce\x48\x63\x65\xdf\x66\x2f\x0c\xc1\x9c\xa0\xeb\x92\x8c\x40\x99\xb6\x0b\x43\x70\xb0\x42\xb7\xf1\xbe\x5a\x66\xde\xbb\xcf\xaa\xda\x9f\x26\x86\xd2\x3c\xa2\xb7\x71\xd6\x55\x96\x05\x6a\x93\x75\xdd\x4c\x79\xd5\xb1\x79\xae\x4c\x0c\x0b\xb4\x13\x35\xa5\x5e\x32\xc7\x0e\x2f\xf0\x61\xf0\x34\x28\x2e\xd2\x75\x3f\xe3\x55\xc7\x6e\x63\xa3\xd5\xfb\x05\xea\x70\xda\xa4\xa9\xd6\xb1\x8b\x13\xf4\xfa\x01\x6f\x83\x5a\xee\x71\x68\x83\xf6\x7a\xb9\xa9\xc3\x13\xbb\xce\xb9\x1f\xf0\xfd\x55\xd7\xe3\x1b\x1e\x41\x31\xb1\x57\x49\x17\x75\xf8\xd2\x6a\x3f\x8f\x0a\xf8\x34\x68\x2c\x7c\x09\xb3\x3a\xd2\xa1\x0e\xdf\x18\xec\xa7\xd7\x64\x70\x0b\x2b\xc3\xbd\xb4\x08\xcd\x41\xc9\x75\xe8\x54\xd8\xfb\x49\xbf\x97\xfd\x45\x3b\x95\x15\x30\xb4\x44\xe4\x0e\x28\x76\x6c\x33\x62\x1d\xdd\x24\x79\x31\xaf\x7d\xd8\x61\x66\xea\x1e\xc3\x22\x90\xdd\x70\x75\x70\xb1\x47\x77\x45\x5e\x75\xf8\x16\x46\xb7\x3d\x68\x81\xbe\xd7\x5c\x77\x40\xb7\x6c\x72\x1e\xd6\x19\xfb\x35\x3c\xa2\x87\x6f\xad\xda\xb5\x5a\x87\xfc\x19\x7b\x6f\xbb\x87\xf0\x76\x24\xc2\xc1\x5c\xf9\x94\xef\x0e\x88\xaa\xf7\x66\x92\x74\xe0\xf4\x02\x5f\x36\x49\x0b\x8d\xdb\xd1\xd0\xcd\x16\x9b\x05\x6a\x51\xec\xff\xac\xb7\x45\xbe\x6e\xef\x44\xbd\x2f\x33\x7a\xab\xcc\xf5\x56\xd4\xeb\xde\xad\x74\xd6\xbb\x99\x34\x86\xc4\xa7\x7a\x77\xb5\xdc\xad\x59\xd6\x5b\xb1\x9b\x7b\xf7\x89\x52\x6f\x87\x1e\xf4\x01\x56\x56\xde\x4a\x33\x17\xb9\xa5\x9f\xed\xdd\xe1\x35\xf5\x7e\x66\x8d\xdc\x94\x05\xf2\xee\x60\x8a\x05\xba\xdf\x41\xe9\xa0\xd4\x38\x5b\x22\x3a\xab\xc4\xfe\x3a\xbd\x33\x9a\xed\x4e\x75\xca\xd4\xb6\x0f\xc7\x3e\xd5\xb9\x09\x8d\x61\x6b\x4f\x9d\xa5\xdb\xf0\xee\xad\x3f\x8b\x88\x7d\x6c\x9e\x8d\x59\xb4\xa0\xc3\x3c\xb5\x4e\xdf\xb9\x1e\x8e\xad\xa8\x53\xf7\x05\xf7\x61\x93\x73\x9d\xfd\xaf\x1c\xfc\x0b\x52\x18\xc3\x07\xb2\x9c\xed\xb9\x98\xdd\xce\x8d\x96\x0f\x65\x31\x3d\x53\x26\xd7\xfc\x9e\x0f\x87\xfc\x4a\x29\x93\xcb\x62\x1b\x40\xba\x9c\x52\x53\xd3\x4c\xfb\x03\x3e\xbf\xbf\xca\x69\x6e\x31\xc5\xf0\x8a\x4d\x1d\x0b\x7a\x1b\x1b\xfa\x97\x73\xde\x26\xae\x05\x29\xfe\x48\xe7\xe4\x82\x40\x9c\x76\xb4\x85\x6b\x07\x9d\x71\xea\xc3\x03\x48\x7e\x98\x12\xa8\xc9\x1f\x9f\x46\xe5\x07\xf6\xb6\x99\x8a\x19\x2e\x16\x2c\x17\xf4\xd2\x80\x53\x53\xb1\x45\xc7\xa0\xea\x5a\x81\x32\x32\xfe\xdb\xae\x2c\xba\x50\x10\xb6\xd5\x82\x05\x0d\x63\xda\x00\x6f\xe1\xc6\x30\x1c\x8d\x73\xb0\x72\x5d\xe2\x38\x81\x3d\x0b\xb4\x7f\x87\x99\xb3\xd4\x78\x40\x21\x7d\x9d\x9c\x75\x0b\xb2\x3a\x83\x75\x05\x58\xd0\x12\x21\xf7\x2d\x0b\x29\x4f\xf8\x36\x02\x59\x6b\xcb\xa4\xdb\xd5\x76\x05\x1a\x72\xf1\x30\xad\xb2\xed\x5b\x4f\x5f\x90\x9c\x6b\x23\x65\xef\x4f\xc0\x47\x9d\x83\x48\x91\x0e\x54\xbe\xbf\x8a\x35\xb0\x05\x55\xc7\x7b\x55\x40\x29\x73\x75\x00\x79\x57\x94\x80\xdd\x4a\xc5\x05\xa8\x28\x8f\x6d\xfc\x90\xa9\xcf\x21\xc2\x72\x08\xdd\x82\xbc\x6f\x77\x20\x85\x5a\x31\xe2\x61\xd1\xce\xa1\x79\x0b\x3c\xbf\xbf\xae\xca\x2c\xeb\xb2\x66\xcd\x56\xd2\x6d\xcd\xe3\x34\xb7\x9b\xba\xae\x59\xf7\x2d\x35\xc7\x27\xc6\x65\x41\xf7\x6f\x41\x6d\x0b\x7c\x78\x05\x18\xc7\x40\xfd\x01\x12\x72\x67\xca\xe4\xe8\x39\xe8\x71\x9d\x90\xf5\xca\x30\xe4\x4c\xde\xb7\xc6\x87\x0a\xcb\xd8\x37\x96\x79\x40\x5a\x95\x89\x9d\xa2\x49\xd8\x8d\xb4\x8a\x72\x74\xf0\x91\xac\x34\x6c\x2c\x5f\xa0\x8e\x80\x20\x2b\x09\xa6\xda\xb5\x56\xa7\x2f\x37\x5e\xb0\x0f\x5d\x68\xac\xfb\xb6\x03\xfd\x16\xca\xb3\xa0\x4b\xbb\x20\x65\xf2\x89\xc1\xa3\x14\xb8\x77\x34\xe8\x53\xf2\x65\xdd\xb7\x40\x53\xd1\x49\x81\x1e\x9f\x80\xa0\x05\x3d\x8d\x4c\x03\x7c\xe9\x43\x20\x33\x01\xf6\xab\x0c\xdb\xfb\x80\x74\x2c\xb3\x8e\x92\x32\x9b\x13\xe9\xc2\x31\x7c\x76\x9c\x54\xc7\xf0\x1d\xfb\x06\x41\xc8\x94\x5d\x7f\x83\x86\xa0\x0d\x48\xfa\x96\xcf\x9d\x69\xd3\xf5\x7e\x80\xaa\x57\xd5\x51\x01\x75\xea\x98\x25\xd6\x6c\x41\x9a\x37\x28\xd0\x11\x7c\x9c\x2a\xf3\xc6\xd6\x99\xef\x2e\x05\xfe\x80\xaa\x4e\x8d\xab\xb3\x16\xf2\xd1\x6f\x0d\x64\xe4\x21\x1c\x2d\x3d\xbc\x3d\x0a\xc0\x75\x44\xd6\x7d\x0f\x54\x04\x81\xb7\x38\x80\x43\xe6\x6a\x62\xf1\x0a\xfc\xfa\x9e\xf7\x27\xe8\x6a\x41\xf3\xb7\x70\xcc\x4a\xa0\x5e\x43\x32\x76\x64\xde\x51\xc0\x40\x81\x79\xc7\xc9\x54\x4d\x53\x8a\x25\x05\xe2\xf2\x5a\xd6\x4a\x6a\x6c\xf5\x85\x8c\xea\xb8\xbc\xba\xef\x29\x6b\x8a\xc6\x49\x33\xdd\x1f\xa6\x1d\x39\xe3\xae\x7c\x38\x1d\x91\x08\xf4\x54\x33\x17\x90\x48\x05\xba\x95\xe1\xa3\x9c\xec\x1c\x5d\xea\xdc\x6b\xe1\xf8\x9a\x0a\x3b\xd9\x61\x65\x53\x7e\xed\x2c\x87\x04\xe9\xa3\xd7\x94\x29\x3e\xed\xc8\x77\x5d\xa7\x57\x1a\x1d\xf2\xf0\x83\xa8\xf5\x67\x47\xf9\x2f\x70\x7a\x75\x0a\xe0\xf3\xfb\xeb\x3a\xd3\xa8\x30\x3d\x52\xf3\x2d\x88\x8a\x37\x98\x52\x78\x3b\x20\x8f\x01\xeb\xc6\xd4\xbe\x71\xd0\x4d\xb1\x87\xce\x1e\x57\xac\x60\xdd\x58\xd5\x69\x1a\xbb\xe8\x11\xce\xf1\xa9\x3a\x8d\x2b\xc3\xba\x35\x8f\x47\x3a\x51\x44\x62\x0d\x04\x95\xd1\x90\x05\xb1\x03\x04\x1c\xa9\xe5\xbb\x0c\xd5\x91\x85\xc7\x3a\x59\x7e\xc8\xae\x6d\x8b\x18\x7b\x4d\x43\xa7\x1b\x62\x12\x2c\xfa\x73\x28\xcd\xe9\x35\x48\xd5\x75\x26\x1c\x03\xd4\xe5\x86\x2b\x2d\xdf\x99\x79\xec\xc1\xe7\x65\xdc\x59\x2f\xf8\x1c\x9b\xc2\x0e\x9b\xc2\x19\xfe\xf0\xad\x62\xb8\x90\xf4\xa5\xf5\x65\x07\x94\xa7\xe0\x53\xc8\x64\x0e\xc0\x21\xf4\x52\x28\x83\x2a\xf4\x6a\x87\x4c\x2d\x7b\x3a\x41\x18\x4a\x5d\x19\xa0\x10\x8d\x1e\xc9\x6f\x03\x24\xfa\xbd\xf8\x50\x1e\xe2\xc2\xf9\xfa\xf0\x65\x41\x28\x4d\x81\x8a\xc7\xbe\x31\x23\xf2\xe4\xac\x2e\xe9\xc3\x16\x22\x94\x57\x62\x15\xf7\x48\x55\xf6\xde\x8c\x1d\x6a\xb7\x0d\xa8\x20\x9d\xc8\x04\x54\xed\x38\xac\x8e\x48\x2c\xb6\x49\x56\xc7\xfd\xad\x0f\x19\xe7\xed\xf3\x96\xdd\xae\xe8\xbe\xa2\x3c\x22\x0b\x32\x67\x62\xd7\x38\xba\x6f\xec\xec\x6f\x39\x61\x16\x42\xa9\xab\x80\x0c\x18\xf5\x03\x41\x26\x08\x59\x90\x61\x13\xdb\x0b\xd3\x0e\x36\x95\x04\xf9\xe3\x0c\x42\x72\xc2\x94\x4c\xa6\x58\xdc\x3e\x52\xc6\xa2\x04\x54\xcc\x5b\xd6\xc4\xa1\xc8\xd0\xa5\x63\xfa\xda\xc1\xc9\xed\x30\xbe\x3d\x52\xd7\x13\x2a\x81\x73\x38\x74\x6f\x83\x86\x15\x9e\x77\x0c\x48\xf1\xe9\x38\x57\x66\xcf\xfe\x99\x0b\xed\x86\xf8\xbc\x5a\xe0\x87\x4f\x3b\x36\xae\x40\x2f\x1d\x01\xf9\x52\x4e\x47\xe8\xfd\xe9\x2b\xcc\xb0\x03\xc2\xee\xce\x40\x20\x47\x33\x43\xbc\x82\x25\xb1\xb7\xa6\x16\x98\x35\x81\x77\x35\xad\xea\xda\x22\xac\xf3\x69\x0e\x88\x58\xa1\xc0\xbb\x35\x21\x69\x75\x48\x80\x4f\xa1\x4e\x79\x84\x37\x45\xde\x55\xdd\xcd\x17\x24\x89\xa8\xa6\x7f\x73\x9c\x74\xbf\xf8\xe1\x79\xa5\x7b\x59\xb9\x5a\x1a\x0d\x43\xa4\x55\x44\x22\xb8\xae\x15\xd2\xe6\x40\xec\xea\x40\xb9\x8a\xba\xe6\x40\xb9\xd5\x12\x73\x77\x3b\xf8\x8f\x03\x53\x11\x6f\xc7\x1e\x79\x4e\x21\x6f\x35\x7a\xca\xd3\x34\x8b\x34\x21\xff\xd5\xaa\x4a\x43\x8e\xb1\x61\xd3\x3c\x1d\x55\x13\x22\xf0\x51\x8b\xba\xa1\xd0\xb5\xf5\x61\x40\x4b\x89\x47\x3a\xd1\x0c\x95\xb4\x23\xe6\x80\xe8\xe7\x00\x35\xac\x59\x0e\x49\x5b\xed\x14\x40\xab\x3f\xac\xe6\xcb\xc6\x2d\xe4\xb7\x97\x75\xc7\x1d\xe6\xee\xa8\xb4\x76\x5c\xf9\x54\xf8\x21\xfc\xca\x34\x5b\xf7\x92\x32\xb0\xfd\xb1\x11\xc5\x61\x6a\x31\x19\x39\x4c\xad\x6e\x7b\x5a\x7d\xb8\x9d\x13\xd0\xc1\xe8\x41\x8f\x69\x0f\xa8\x69\x47\x03\xf5\x9d\xfc\x3d\xf2\x9e\x22\xd5\x6a\xf4\x5c\x45\xaa\xf5\x82\xf4\xab\x48\xb5\x55\x35\xa0\x42\x63\x58\x6a\xb9\xff\x6a\xa8\xcd\xf7\x51\x6a\x14\x99\x97\xe5\x78\xd4\x4c\x45\xa7\xad\x76\xd2\x89\xc6\x05\xf1\xd9\x39\x78\xf5\x94\x79\x63\x06\x32\xcf\x3b\xd3\xa5\x16\x6c\x87\x3b\xf9\x22\x22\x66\x14\x42\xd2\x0a\x3c\x46\x31\x61\x35\xbc\xfd\xe5\x38\xcc\x34\x23\x19\xef\xe4\x44\x7d\x39\x4c\x1a\x16\xfc\x9a\x2c\x3b\xcd\x88\x3b\x9e\x30\x52\x87\x73\x0d\x0e\x9e\x17\x46\x80\xb4\x03\x1d\x66\x81\xec\xf6\x2a\x1c\xa9\x8a\xc5\x2a\x17\x10\x46\x0e\xd6\x47\x06\xf8\xa3\x23\xab\xbc\x1d\xd8\xcf\xec\xbc\x43\x5a\xa9\x7a\xb9\x93\x06\xd8\x0d\x76\x40\x71\xe4\x2b\x9d\x2c\x8e\x5c\x46\xaa\x5a\x1e\xb9\x02\x9a\x7e\xe0\x4e\x32\xfa\xf7\xc2\xb6\x7d\x5b\xcc\xab\xe9\xd3\x67\x3a\xa7\xaf\x22\xa9\x6a\x96\xe4\x6d\xf2\x61\x82\xde\xd8\x0c\xe0\xab\x6f\xcc\xa9\x90\x9a\xdc\xa2\x35\xf2\x88\x2c\xcf\x47\x2f\x69\x47\x04\x53\x53\x53\x5c\x8e\xed\xf5\x36\x97\xab\x69\xd4\x98\x1f\x29\x7c\x6a\x62\x83\x80\x39\x0c\xa8\xea\x7a\xe5\xc5\xd2\xbe\xe5\xb7\x3a\xd3\x8c\xe5\xbc\x48\x88\x6f\xc5\x2c\xb6\xcf\x87\x3e\xd1\x33\x93\x62\x63\x25\xe8\x98\x8b\x65\x45\xa6\xb7\x13\x92\xdd\x5b\x47\x6f\x69\x19\x16\xe4\x84\x76\x21\xef\x49\x29\xec\xc4\xb7\xb8\x5a\x1d\x69\x48\xfb\xe9\xca\x87\x5d\x57\x97\x40\xd6\x7e\xb3\xcf\x77\xcc\x40\x01\xb4\x44\x76\xa4\x1d\x2d\x1e\x04\xfc\xf6\x25\x7b\x09\xa5\x27\x99\x25\x36\x1b\x43\x4e\xc7\xba\x2d\x0a\x2e\x80\xd2\x3c\xcf\x14\x1a\x9f\x0e\xd4\xdc\x67\x05\x94\xea\x29\x99\x79\x41\xb7\x0b\xd3\x8b\x05\x97\x14\x5a\x20\x3b\xf3\xe5\x5a\x2f\x33\xf6\x05\xbd\x7c\x5e\x04\x83\xf7\xf7\xd7\x69\x43\xd2\xe9\x6c\x17\x6b\x60\x20\x64\x52\x13\x01\x9f\x8e\xcc\x2b\x1f\x64\x87\x55\x21\x1d\xe1\xa7\x93\x5e\x54\xc7\x5c\x9d\x4e\x74\xb1\x8f\x2b\xad\x32\x92\x14\x5a\x4e\xe8\xa0\x67\x69\xed\x4a\x3b\xa6\xc3\x94\x59\xa8\x29\xdb\x8f\x78\xf7\x49\xaa\x8c\x76\x64\x86\x14\x67\xbb\x5b\x40\x3b\x1d\x21\xd8\xed\xb8\x3e\x1d\x20\x78\x58\x71\x3a\xfb\x76\x7b\x98\x7c\xa8\x08\x88\x12\xec\x44\xa5\x4a\xb9\x29\x68\xa9\x58\xe3\x64\xd6\x6f\xaf\x1e\xeb\xa5\xe0\x9e\xab\xe5\x3b\x73\xe7\xc2\xb0\x6e\x6d\xb6\xcf\x87\x3a\xd0\x2f\x96\xe0\xf6\x90\xd3\xc5\xd4\x0d\x9d\x94\x59\x5a\x4d\xa3\x4b\xc0\xd8\x32\xe5\x8e\x45\x28\x59\xbb\x6c\x0b\xd0\xb1\x94\xb9\x07\x81\xb8\x9f\x81\x7c\x77\x22\x5f\x32\xcb\x9e\x9c\xdd\x2a\x04\x04\xb2\x3b\x6c\xb5\x41\xcf\xca\xfe\xd1\x4b\x1f\x40\x52\xc8\xaf\x40\x74\x79\x00\x4a\xe2\xea\x0d\x48\x12\x57\xdb\x80\x34\x1f\x4c\x96\xd3\x86\xfc\x56\x66\xda\x2e\x41\x00\x6a\x0e\x02\x16\x5e\x5b\x4a\xc5\xe5\x77\x50\x37\xa7\x4c\x59\x48\x94\x5e\x64\x41\xdd\xa1\x8f\xdd\x87\x69\xcb\x87\x2c\x57\xbe\xf4\xc9\x92\x19\x31\x51\x36\x30\xd0\x9d\xa6\xed\xd3\xce\xdb\xe8\x51\xf5\xf6\x2a\x14\x46\x2d\xdf\xd0\xc8\xe2\xee\x37\x18\xd1\x12\xde\x11\xf0\xb3\xdf\xc1\x3c\x67\x81\xde\x35\xa5\x03\x5a\xca\x2a\xf9\x54\x84\xd1\xd2\xae\x89\xbd\xb0\x10\xd3\x2b\xc8\x97\xc8\x79\x95\xe9\x9d\x4e\x50\x92\xaa\xba\x4c\x75\x30\x18\xf1\xc7\x2d\xf3\x67\x9a\xc9\xf4\xe5\xf0\x4d\xab\x5e\xc1\x40\xca\xc9\xc2\x32\x1c\xdd\xcb\x30\x80\xe8\x7f\x07\xd4\x32\xf4\x40\x3e\x5e\x6b\x05\xb4\x24\xce\xb8\x0e\x48\xa1\x9e\x80\x3a\x79\xa0\xcc\x03\x73\xe8\x99\x6e\x7c\x68\x32\xf3\x07\x42\x17\x6c\x0f\xcf\xda\x79\x00\x49\xae\x1a\x1b\x90\x4f\xfc\x1e\x90\x75\xe8\x80\x3a\xf1\x59\xb2\x43\xba\x41\xbd\xd2\x89\x08\xe3\xf3\xe1\x74\x97\x29\x7c\xb8\x1d\xf0\x43\xb2\xba\xa8\x0c\x65\xc0\xf7\x8e\x50\x06\xe8\x12\x49\x94\x59\xba\x6d\x79\x0d\xf4\x94\x7e\x02\x46\x98\x2b\x32\x2b\x53\x06\xab\x0f\xa4\x0d\x0a\xdb\x53\x42\xdf\xea\x08\xaa\x05\x59\x0f\x05\x1f\x85\xca\xd7\x20\x8b\x68\x75\xa6\x19\xd3\x17\x6c\x19\x5f\xe3\xe6\x71\x16\xeb\x8f\xd9\xa0\xc5\x16\xb3\x9e\x42\x9b\x44\xae\x1f\x5e\xa3\x5f\x75\xad\xf6\x80\x6d\x51\x92\x80\x0b\x26\x45\x04\xd4\xf1\x69\xd7\x93\x0b\x51\x17\x1b\xca\x3f\x18\x99\x47\x8c\x14\x2e\x6e\xef\xbb\x61\xe7\x5a\x75\x33\x34\xea\xda\xec\x30\x76\x20\xcb\xdf\xec\x66\x7b\x51\xdb\x31\xc0\x61\x11\x4a\x69\xe9\xc5\x1c\x84\x5d\xa6\x9c\xc5\xbd\x7c\x6a\x3a\x55\xcc\x96\x42\x5d\xef\x61\x5f\x15\x5b\xca\xd8\x81\x05\x11\x1b\x32\xb6\x1b\x8c\x1b\x05\x0b\xb4\xd0\x04\xd5\x94\x5b\xeb\x99\x5e\x74\x1c\xed\xa1\xa1\xe2\xf3\x28\xa3\x86\x9d\xd4\x14\xea\xae\x0e\xc2\x45\xb9\xed\x99\xbb\xd2\x8b\x75\xf5\x9a\x76\xa5\xc8\x66\x4e\x74\xc7\x71\xff\x20\xe4\x6d\x56\x01\x9d\x06\xcd\x09\xb8\x16\x68\x3b\x08\x2c\xad\x38\x8a\xa2\x65\x45\x1d\x14\x74\x64\xca\xa6\x77\x21\xdd\x4c\x63\x0f\x15\x4d\xf3\x85\xac\xfe\xd4\x89\x39\xd2\xac\xd9\x42\xb0\x97\xf1\xec\xca\x5c\xe3\xdd\xbc\xdc\x50\xc5\xf0\xdf\x80\x8a\x11\x1a\x80\x92\xfc\x8f\x14\x5e\x2e\xec\x80\x66\x78\xd7\x05\xd8\x3d\xf0\x0a\x68\x8c\x52\xe8\x23\x14\x46\x55\x91\xa3\x60\x3e\x4a\xd8\x7c\xe4\x7c\xad\x12\x95\x0e\x36\x73\xd5\xa9\x74\xb0\x0b\xab\x69\x0a\x69\x91\x68\xad\x23\x9d\x20\xb1\x17\x20\x6f\xd1\x8c\x53\xac\xe8\xd8\x0e\x20\xf0\x61\x64\xc3\xa2\x42\x65\x64\x22\xb9\xca\xde\x51\xfe\xaa\xea\x64\x0b\x0b\xf2\x0e\x80\x50\x94\x60\xb9\x74\xf6\xb6\x33\x29\xef\x39\x60\x2b\x27\x0b\x27\x84\x52\x28\x37\xe5\xc6\x14\xe4\x9d\xcf\xa9\xae\x2c\xca\xab\x2e\x2d\x25\xfa\x31\xa5\x4d\x38\xa4\xd0\xd4\x89\xa0\x53\x61\x46\xf0\x46\x65\x50\xae\x76\x39\x9f\x4e\x8d\x55\xb3\xf3\x95\x43\x99\x40\x86\x05\xbd\x3f\x77\xad\xcf\xae\x5c\xc9\xe4\x55\x58\x90\xd3\xd2\xa5\xcc\xdb\x8c\x73\x87\x08\x88\x11\xc8\x81\x43\xf9\xf0\x94\xb1\xaa\x02\xe9\x3e\x27\x8b\xe9\xd4\xc8\x17\xdb\x53\x01\x38\x47\x63\x69\x95\x1c\x79\x1f\xd0\xec\x69\x4b\xc3\x08\xe4\x54\x7a\x41\xc6\x17\xbf\xd3\xa6\x34\x69\x68\x40\x51\x59\x7b\x19\x35\xc8\xb0\x20\x7c\xa9\x43\xef\x60\xd5\x95\x0b\xac\x1e\x48\xb9\x27\xac\x8d\x53\xf9\x34\x15\xa2\x32\x38\x51\xd8\xd5\xd8\x8b\xca\x99\xbc\xc0\x94\x5a\xe9\xed\x7f\x83\x18\xae\x3c\xca\x25\xfc\xca\xb9\x93\xeb\xa7\x59\x78\x07\x28\xdc\x36\xbb\x43\x30\xca\x8e\x5c\x9d\x8c\x65\x41\x66\x0e\x4c\xb3\x2e\xb1\xe5\x64\x70\x4e\xe4\x3d\x32\xc4\x49\xc8\xee\x95\x52\x4d\x3b\xbc\x4c\x19\x90\x4b\xf8\xb2\x73\x20\x8f\x2b\xad\x4a\x9e\x66\x07\x29\x30\xb6\x1e\x70\x0a\xa7\x3b\xbe\xd2\xbf\x39\x57\xc9\x5a\x4e\xab\x71\xc8\x80\x27\xc6\x32\xfa\x17\xeb\xea\x88\x0f\x0e\x5c\x68\x88\xc8\xca\x74\x5c\x6c\x03\x58\xd0\x70\xdc\x0d\xe3\x70\x98\xc6\x87\x28\x1c\xd3\x11\xec\x6c\xf6\xcf\xe1\x7d\x99\x98\xf7\x0e\x74\x7c\x52\x05\x2c\x08\x64\x77\x40\x90\x2d\x80\x9a\xca\x33\x5f\x3a\xd5\x68\xaa\x2a\x39\xc1\x91\x3e\xc4\x66\x91\x5d\x2f\x9b\x33\xca\x96\x42\x11\xe9\x91\x0f\x25\x20\x7c\xca\xc0\x35\x3d\x6a\x1b\x1e\x40\xca\xa8\x78\x20\xc7\x5e\x52\x31\x0f\x94\x5c\x25\xa1\x2b\xd7\x48\x99\xd2\x13\x1c\x81\xec\xb6\x4e\x2b\x8e\x53\xde\xf2\xe1\x50\xde\xe7\x0b\x48\xb6\x95\x34\xe3\xc4\xc1\x70\x08\xe5\x7c\xda\xab\x4d\x0b\x0b\xd4\xcc\x95\x40\xcc\x5c\xbe\xac\xdf\x5f\xad\xef\xf9\x52\xa7\x7f\x4f\xd9\x25\xe4\x98\x72\x5d\x9d\x3c\xd1\x7c\x2e\x5d\x49\xce\xb1\x7c\x39\xac\xb4\xc0\x94\x14\xf5\x53\x0f\xc4\x54\x65\x8b\xaa\x07\x32\xff\x65\x26\x89\xce\x76\xe9\x44\x3c\x20\x24\xa5\x92\x2a\x3d\x98\x8a\x61\x6e\x6c\xdf\x2b\x0c\x33\xcd\xdc\x06\x41\x75\x5a\x56\x3a\xd3\xac\x32\x49\x20\xe9\x29\x60\x6b\xc9\x32\x40\xe6\x27\x68\xbf\x0d\xb6\xc8\x98\x1b\xf1\x86\x70\x94\xe6\xb4\x24\x1c\x6b\x0a\x15\xaf\x47\x4d\xd9\xda\x04\x75\x4b\x3b\xe0\x97\xaa\x22\x33\x24\x13\xe5\xa9\x5a\xcc\x26\x75\xa7\x38\xea\x01\xf4\x90\xe4\x14\x04\xe4\xae\xb9\x52\x66\xd5\x0b\xa6\xdd\x1c\x4f\x14\x5e\xd8\x06\xb8\xd3\xa7\xfd\xa1\x91\x4b\x9b\x93\x5d\x20\x13\x3a\xff\xf6\x08\x43\x51\x9e\xed\x7a\xc0\x41\x94\x68\x9b\xe8\xc6\x05\xd9\x3f\x0e\x42\x3c\x86\x00\x5f\x68\x28\x83\x6c\xd2\x76\x6f\x9f\xbc\x1c\x0b\xda\x75\x59\x93\x76\x6e\x8b\x46\x10\xa9\x02\xe5\x16\x7a\x20\x2f\x0e\x57\xf7\x40\x8b\xf4\xc7\x16\xc8\xb3\x97\x0f\x95\x41\x04\x7e\xdb\x74\x09\xac\x70\x70\x35\xf1\xb7\xa3\x5e\x3f\x66\xdb\x0d\x63\x02\x02\x7f\x33\x91\x72\x90\x34\x07\xb4\x1e\xf4\x31\x99\xd8\x01\xc8\x9e\x09\x68\x27\x0c\xaa\x42\x33\x0d\x73\xb2\x35\xe2\xa0\x41\x7d\x5a\xc3\x1d\x69\x77\xed\xa1\x23\xe4\x24\xde\x58\x32\xe6\x69\xcb\x6a\x1a\x95\x45\x2b\xab\x25\xf3\xdb\xc1\xa1\xa2\xc8\xb0\x12\xd1\xd0\xc1\x5f\x27\x35\x15\x43\x57\x0f\xb6\xbe\xe3\x90\x47\xb8\x94\xd2\x90\x95\xb3\xa7\xb0\xe9\x42\xf7\x05\xa4\x78\x22\x68\xd2\x89\x1f\xcf\x2d\x1d\x8a\x58\xce\x74\x21\x64\x98\x46\xc7\x77\x75\x06\x41\x7c\x57\xcc\x4e\xce\xfc\x58\x0b\xfc\xb5\xfb\x40\x46\x43\x55\xb8\x57\x2f\x23\x5f\xfa\x92\x06\x22\x81\xe3\xbd\xb6\x23\x1f\xfa\x74\x1e\x29\x7c\x8a\x74\xc0\x0e\xfd\x81\xf3\xaf\xfb\x6a\x78\x50\x17\x47\xbb\xf6\x94\x5d\x9e\x8f\x0a\x28\x91\xec\x0c\xc4\x0e\x39\x01\x87\xc2\x72\x40\x4f\x16\xac\xe3\x4c\x99\x8d\x91\x99\x3b\x1f\xab\x68\x54\xba\xed\x5a\x3e\xe8\x98\xfb\x65\x06\x26\x0b\x02\x76\xd3\x31\x6e\x29\x14\xb1\x70\x6c\x39\xc0\xab\x5f\x69\x54\x3b\xe2\x53\x66\xbf\x68\x5a\xb1\x68\x15\xc8\xc6\x24\x48\xce\x31\x5d\x1b\x6c\x73\x98\x3c\xae\x94\x79\x47\x72\x1a\x2b\xa6\xeb\xe8\x47\x20\x32\x78\x75\x40\x75\x59\x53\xb8\x56\xa0\x95\x94\xe9\xf4\x43\xbd\x1b\x5e\x65\x04\x10\xa7\xd4\x6f\x85\x43\x4d\x71\x5a\xe5\xea\x29\x44\x08\xbb\x00\x59\xe6\x94\x9a\xc7\xb3\xea\x83\xa7\x01\xe8\xd3\xb6\xd0\xb0\x37\x45\x6a\xb5\x18\x72\x14\xa9\x55\x8f\x2b\x7d\x9a\xe3\xb3\x27\x1d\x6f\x3f\xb2\x40\x23\xa7\x25\xd8\x3b\x68\x1c\xeb\xc7\xb0\xfa\x89\x59\x57\xf1\xb9\xa5\xa4\x59\xb4\xcf\x4c\xa6\x79\xd6\xe7\x43\xd1\xcb\x95\x2e\x41\x36\xa0\xf5\xb7\xcc\xfb\xed\x90\x01\x0a\x65\xe4\x3c\x33\x2e\x85\x0b\xc6\xbe\xe7\x6c\xfa\xf5\x03\x89\xb4\x50\x63\x94\x4f\xbf\x1e\xd0\x8b\x12\xea\x1f\x91\xc9\x86\x25\xb4\xb2\xa7\x50\x4c\x13\xb5\x65\x58\x85\xa0\xea\x8d\xa9\x83\x25\x71\x5e\xfc\x56\x60\xd3\xe4\x80\xe3\xd8\x70\x6e\xfc\x56\x90\x1e\xee\x90\x53\x40\x87\x94\xa7\xa1\xae\x3e\x4f\x20\x6d\xae\xf3\x87\x57\x38\x57\x55\xa8\x20\xed\x40\xde\xe9\xc4\x43\x31\x89\xdc\x16\xb5\x38\x83\x6f\x2b\x07\x08\x85\x37\xbc\xe8\x4a\x55\x4d\x17\xe2\xed\x8d\xac\x05\xff\xd7\x45\xe8\x63\x8f\xd4\xaa\x60\x32\x52\x4a\x9d\xbe\x07\xdd\x0b\x9b\xcf\x57\x9d\x07\x8b\xe7\xb4\x85\xd1\x49\x75\xd1\xb9\x6e\x98\xab\x1d\x4b\xd6\x0a\xa2\xe7\xed\xe3\x30\xea\xac\xa2\xc9\x7a\xe5\x94\xbd\x6d\x19\x8d\xc6\x7a\x3b\x93\x13\x42\x93\xae\x48\x97\x58\xaa\x6e\x27\x3d\x47\xd6\xf1\xc5\xe7\x33\x63\xb6\xc1\x3c\x8a\xe4\xed\xd8\xd3\x3d\x85\x8a\x3b\x82\x6d\xdc\x3e\xc5\x38\xd6\x1d\x6a\x16\x75\xe3\xb6\xca\xc9\x11\xe3\x6c\x8b\x1f\xbd\xd2\xd9\x16\x2b\x52\xb2\x02\xcd\x7a\xdd\x02\x69\x3d\x38\x7e\x14\x5a\x56\x1a\x44\xe8\x0b\x52\x7b\x94\xd5\x29\x99\x7d\x43\xbc\x9c\xb6\x99\x46\xb1\x53\xa4\x19\xb1\x6d\x0b\xb2\x99\xe2\x4a\xdd\x21\x67\xdd\x09\xe4\xfb\x7b\x1f\xd0\xb1\x03\x90\x8b\x23\xcf\x22\xe8\x4c\xab\x96\x51\x43\x09\x36\xdb\xd2\x8d\xe3\x4d\xcb\x11\x50\xe9\x3a\x38\x59\x89\x44\x8b\x72\xa9\x50\xb4\x92\x29\xf1\x9d\x8e\x2b\x66\x02\xc7\xa2\x1d\x9c\x2b\x3c\x47\x90\x91\xc9\xd8\xda\x5a\xca\xa6\x66\x2f\x8d\x3e\xdc\x07\xd3\xe7\x53\xaf\x06\x59\xb1\xb8\x1e\xe4\xe4\x23\x80\x08\xa6\x85\x32\x4e\x80\x49\xd4\x79\xb0\xd1\x71\x79\x95\x40\xe2\x21\x88\x8c\x13\x12\xa5\x51\x28\x14\x56\x34\xad\x0e\xf4\x7c\xd8\x9c\xce\x0f\xa8\xbb\x2a\xe3\xb8\x1d\x9e\x34\x82\x8f\xb7\x53\x56\xfe\x66\x5c\x74\xea\x1c\x29\x61\xab\x8e\x4d\x1b\x31\x17\x39\xeb\x5d\x4e\x88\x69\x96\xc7\x4e\x9c\x93\x45\x00\x25\x93\x30\x7c\x7d\x4e\x48\x08\x1c\x60\x81\x47\xea\x4a\xda\x0a\xfa\x52\x4b\xaf\x16\x7c\x6d\x5f\xbb\x82\x9f\x02\x7d\xe9\xe4\x01\x81\x17\x20\x85\xee\x1c\x29\x3b\x14\x11\x3b\x80\x8a\x07\xb2\x03\x4a\x12\xa9\x29\xd4\x64\x72\x24\x29\x77\xc0\x92\xb1\x53\x55\xbc\x92\x31\x3f\xec\x55\x3f\xe0\x4d\x64\xc9\x1b\xe9\xf2\xad\x8c\x76\x94\x39\x2f\x1e\xc3\x70\xb8\xd9\x08\x87\x79\xd8\x3a\x12\x7d\x56\xf1\x66\xf5\xd3\xa5\x48\x36\x96\x54\x45\x9b\x95\x86\x3a\xf7\xf0\xb1\x1c\x9d\xf9\x61\xab\xdc\xf9\x37\x88\xdc\xe4\xcd\xfb\x20\x30\xdd\x0e\x73\xe7\x9c\x5e\xfd\x83\xbb\x44\x8a\x4c\x9e\xb4\x8e\x3d\x5a\xf3\xc3\x5c\x36\xfc\xd0\xb9\xf3\x72\x0c\x3d\x6e\xdb\x31\x1a\x50\x51\x9f\xa9\x59\xb5\x5c\xcc\x33\x14\x7d\x04\x54\x42\x2e\x76\x8d\x53\x10\x8c\x30\x4b\xc5\xc2\xd5\x68\xdf\x0f\x38\x29\x2c\x58\xc1\x70\x35\x4a\xb4\xf3\x13\x8c\xe3\x03\x1a\x03\x66\xcf\x21\x92\x71\x38\x2b\xdc\x8d\x30\xe9\xd3\x39\x07\x4a\x45\x9f\x73\xce\x81\x86\x40\xe1\x70\xb7\x08\x09\x8e\x76\xdb\x0f\x18\xa4\xc3\xdd\xc6\xf1\xe9\xc4\xba\xcd\x15\x70\x91\x6c\x26\x5a\xd1\x6f\x35\x7a\x86\xd2\x11\x90\xf5\xf0\x74\x36\x82\xbd\x15\x74\x6e\x85\xc2\x1d\x0d\xa2\x50\xde\xba\x1a\x61\x5e\x81\x71\x35\x4a\x90\x02\xe3\x8e\x5a\xd3\x85\x64\xe7\x9a\xef\x9c\x3c\xf1\x00\xd2\x2c\x7f\x5a\xb1\xd9\xf6\x0a\x36\x56\xdc\xd9\x6b\x0a\xa1\xab\x11\x16\x1d\x18\x17\x23\xae\x03\xe3\x3a\xcc\x89\xb8\x38\x44\x45\xc7\xc5\x5d\x23\x65\xca\xa9\xd7\xf2\x5d\xd7\xdd\x08\x7a\x30\xf5\x1e\x25\x5d\x28\x29\xd2\x95\x66\x4c\xa1\x25\xe0\xe3\x93\x12\x72\x41\x2f\xe1\xc6\xc4\x89\x04\x1b\xa4\xfd\x44\x88\x44\x88\x7a\x3a\xc9\x78\xcf\x3c\xca\x09\x3a\x62\xc1\x7d\x72\xc3\x13\x0c\x6e\x33\xa6\x20\x74\xff\x96\x78\x72\x41\x9e\x9e\x0c\x25\x24\x0a\x46\xb7\x31\x4a\xb3\x4a\xd6\x93\x95\x9c\x3c\x50\x02\xc4\x5b\x73\x40\x87\x36\x05\x7d\x4c\x47\x0a\x31\x66\x29\xb7\x57\xd6\x55\x66\xbf\x01\xd5\xeb\x4e\x68\x8d\x90\xe4\x64\x6f\xf1\xd6\x3e\x2d\x31\xfc\xd6\xa1\x8f\xe1\xcc\xa4\x4c\xd8\x65\x4f\xa1\x62\x35\xcb\x95\x4f\x49\xc0\x98\x76\x95\xda\x08\x39\x4d\x21\x73\xa4\xde\x5c\x90\x79\x18\x44\xa0\x90\xb9\xd2\xd1\x9f\x5e\xd6\x58\x72\x42\x11\xb0\x16\x2b\x90\xe2\xce\x7a\x65\x0d\xc8\x90\x96\xa3\xdf\x71\x67\x11\xcd\x14\x68\x56\x06\xb4\xe5\x34\x68\x23\x47\xfd\xcb\x5a\x09\xf4\xeb\xd0\xb2\xab\x6f\x29\xd4\xa5\x3c\x98\xb3\x62\xc9\x08\x5f\x3b\x9d\x85\xe2\xd8\x63\x3e\xe2\xfe\x74\xe6\x4f\x39\xcc\x6a\xc4\x16\xe5\xa1\x20\xce\x6b\x41\x0a\x91\x85\xc1\x29\x6b\xd9\xb1\x45\xe6\x75\xba\xfb\x11\x29\xe1\xe5\xab\x49\xe5\x53\xaa\x84\x4e\x3d\x7d\x8a\x60\x8e\xbf\x81\x75\x13\xc1\x96\xc3\x5f\xa9\x30\x6a\xdc\x48\x2f\x08\x88\x61\xfa\x0e\x27\xa7\xce\x8b\x14\x09\x59\x22\xbb\x60\x63\x09\x53\xb4\x5b\xcd\x29\xfc\xe2\x50\x2e\x01\x7d\xd0\xc0\xd7\x5f\x93\x91\x31\x27\x1c\xd2\x29\xb4\x14\x0a\xa1\xbe\x9d\x6c\x20\x9e\x68\xe7\x3c\x18\x91\x38\xde\x36\xf2\xb5\x40\xe2\xcf\x47\xaa\xf6\x4f\xfe\xd6\x05\x79\x72\x91\x75\x7d\x53\xf0\xc2\x62\xa1\x70\xb7\xd2\xd1\xe5\x1d\xed\xd6\xd8\x9a\x4e\x29\x56\xf7\x7c\xa7\xe0\x2e\x0c\x58\x6f\xe4\x4c\xfc\x6a\x0a\x59\x3b\x12\x3e\xf5\x46\x41\xce\x40\x74\x8d\x21\x2b\xef\x78\xb6\x38\xfc\xdf\xc3\x6a\x00\xd8\x70\x75\xa9\x05\x54\xc2\x4c\x8e\x12\x45\xb0\xf5\x58\x41\xde\x9c\xa6\x35\xed\xbc\x9d\x3d\x03\x64\xad\x10\x47\x52\x7a\x3b\x63\x38\xf6\x1d\x87\xb4\xb5\x96\xaa\xe5\x93\xde\x76\x41\xe4\xbb\x00\x72\x16\x8a\x94\x59\x3b\x6e\x29\xb4\x42\x53\x53\xaa\x53\x10\x1a\x79\x8b\xa2\xc7\x07\x9d\x5b\x10\xf3\xea\x7c\xf2\x23\xdf\x3d\x74\xea\x30\x3b\x32\xfe\x7d\x66\xc7\xc4\xcd\x7e\x52\x40\xdd\x1e\x77\xa0\x03\xea\x3a\xd2\xb2\xe2\xe9\x8e\xa8\x89\x6f\x47\x8b\xc0\xab\x15\x4d\xf7\x91\x3b\x48\x87\xf1\x59\xc8\xe9\x18\xfd\x96\x52\x8d\xf1\xd3\xaa\x84\x38\xb6\xf7\xdb\x0f\x3e\x6e\x81\x24\x08\x99\xce\x87\x1e\x82\x4a\xd4\x84\x73\xb7\x1c\x3b\x36\xbb\xb1\xd9\x7f\xeb\x61\x0c\x47\xd3\x31\x60\xdf\xe1\x3e\x9c\xed\x69\x41\xca\x7e\x57\x52\x76\x2b\xed\x6a\x03\x22\xe9\x3d\x90\xae\x6a\x6d\xe9\x50\xee\x36\xa3\x3d\x1c\x2d\xe7\xcb\x60\x0b\x52\xca\xe9\xa0\xa6\xeb\x0b\x44\xfa\x0c\xbf\x0d\x35\x1a\x78\x0e\xa7\xf7\xdb\xe8\x62\x58\xda\x3d\x52\x6a\x91\xff\xa4\x59\x5f\x11\x1f\x69\x48\xeb\x56\x99\x0d\x67\xd2\xc6\x63\x35\x36\x27\x70\x3d\x19\xbf\xf3\xab\x6f\x94\xc1\x42\xbd\x1f\xc7\x06\x0b\xad\x8c\xc4\x89\x59\x33\x3b\x84\xa7\xb5\x34\x64\x0d\xbf\x82\x82\x8f\xd9\x0f\x64\x4e\x73\xe4\x53\xe5\x9e\xb9\xd2\x8b\xe8\xaa\xa6\x1d\xef\xe5\x93\x61\xa3\xad\x1c\xd4\x75\x84\x39\x22\xdc\xd8\xcc\xed\x82\x1f\xd9\x8b\xf3\xe5\x10\x53\x67\xa6\xe5\xe0\xc7\x8a\x3b\x94\x95\x2f\x7e\xf8\xa1\xa4\x7c\x8a\x03\xf9\x11\xd7\x1e\x9b\x8f\xd2\x9a\x2e\xb4\x07\xd0\x2e\xc7\x6e\x39\x90\xf9\xd9\x7d\xf5\xd3\xbc\x76\xec\x38\xd4\xbc\x3f\xc7\x8e\x72\x6e\x1b\xc3\x50\x9c\x5b\xb9\xa0\xd0\xdd\x61\x9b\x18\x43\x87\x02\xdd\x8a\xaf\x4c\x2e\x48\xa7\xe5\xa7\x59\xa7\x64\xcc\x87\x0f\x4f\x56\x3e\x74\x8c\xe9\xe7\x4b\xcf\x73\x30\x60\x9e\x29\x94\x28\x98\x59\xdf\x7d\x57\xc6\x77\xc6\x16\x68\xf6\x66\xc6\x3c\x14\xaf\x16\x3b\xff\x70\x7c\x5a\x2b\xc1\x01\x8b\x9e\xcd\x9a\x23\x11\x69\x8d\x4f\x61\x53\x27\x48\xe8\xe0\xcd\xfa\xed\xb7\x45\xc7\x2b\x2d\x49\x85\x2c\x69\x88\x73\x37\xa0\x2d\x7e\xd0\xff\xee\xe3\x33\x83\xb1\xf6\x90\xc9\x55\xfc\x6e\x4b\x97\x38\x17\x5a\x40\x89\x05\x9f\x66\x44\x4f\x41\xc0\xe2\x58\x96\xc1\x22\x56\xc6\x85\x15\x38\x5d\x78\xc7\x33\x48\xa7\x23\xe9\x6c\x2a\x87\xb2\x61\xff\x1c\x84\xb2\x61\x3b\x1d\x07\x02\xd7\x95\xba\x55\x08\xec\x40\x3e\xdb\x2d\xc7\x8d\xc3\x0a\xc2\xe7\x4b\x5f\x88\xdc\x52\xc8\xe4\x5d\x80\xf7\x3a\x9f\x2c\x53\x8d\x43\xc1\x01\x44\xc8\x8d\x43\x7e\x57\xa2\x0f\xc7\x01\x95\x58\x84\x19\x87\xa9\xe4\x4c\xa1\x97\x9a\x32\xa9\xbf\xd8\x85\x9c\x69\x62\xf5\xd8\x00\x25\x48\x9e\x81\x7c\xea\xa6\x1d\x02\xe2\xd8\x7f\x8a\x6b\xeb\x1c\xe6\xe3\xb0\xfd\x18\x43\xeb\x70\x16\xcc\x16\xfa\x3a\x10\xfd\x3b\x2d\xc9\xdb\x5a\x32\x25\xba\xdb\xc7\x79\x31\x0e\xcb\x78\x41\x88\xb4\x54\x67\x0a\x9b\x37\x07\x13\xe4\x13\x12\xb6\xac\xa7\xf0\x7b\xdd\xd3\x25\xec\x2a\x0d\x69\xe5\x33\x5f\x3a\x22\x37\xe2\x0b\x87\x93\x25\x55\x62\x5d\xc7\x41\x6a\xac\x33\xf8\xad\xf9\xc3\x5c\x37\x8e\x30\x33\x06\x6a\x2f\x18\xdc\xdf\x99\x3a\x2a\x27\xca\x81\xe4\x06\x45\x1f\xd6\x6a\xb3\xb8\x5c\x54\xed\x8c\x0c\x5d\x20\x53\x2f\x39\x6e\xe0\x57\x76\x56\xb0\x0f\x13\x38\x48\x40\xca\x82\xca\xef\x15\x16\x7e\x70\x0f\xd0\x82\xd3\x28\x4e\xb3\x47\x33\xca\x26\x56\xfc\x56\xc9\x82\xb4\x0a\x16\x3e\x06\x29\x83\xb2\x37\x0a\x44\x9c\x0f\x59\xfa\x7c\xa9\x4d\x05\xbd\x97\xee\x55\xd8\x80\x44\xc3\x5b\xca\x7c\xc4\x7d\xda\x61\xa2\x1b\xa0\x95\x9a\xc2\xa7\xc3\x0d\xfd\xd8\xe0\x3d\x8a\xe3\x6b\x8f\x74\xca\x53\x58\x3b\x90\x06\x16\x64\x17\x91\xb4\xc6\x11\xac\x10\xb7\xd2\x90\x1c\x0a\x44\x52\xf2\xa1\x19\xd2\x95\x56\x75\xa6\xb0\x42\x8e\x7f\x0b\x8d\x38\xfe\xad\x65\x97\x17\xd2\xfa\xb3\xad\x14\xf0\x56\x76\x48\x91\x78\xb7\x6c\x7a\x62\xda\xd0\x4d\x46\xb1\xd8\x93\x05\x33\x4f\xc2\x84\x31\x8a\x8f\xb5\x1e\xc8\x3c\xbc\x05\x7c\x8b\xe0\x8d\x9f\x83\xd8\x08\x13\x18\x4e\x02\x34\x50\xe1\x47\xf5\xe3\x76\x4c\x89\x42\xda\x8e\x13\x8e\xe0\x88\xb6\x81\x42\x3f\x14\xd1\xb6\xb0\x4d\x5d\x5b\x4d\x7a\xda\x15\x33\x81\xd1\x54\xcb\x3e\x10\x82\x23\xda\xc2\x1f\x14\xd1\xb6\x9a\x3d\x01\x95\x09\x94\x9d\x5b\xd9\xc8\x25\x20\xeb\xd0\x00\x7d\x4e\xd8\x03\x38\xaa\x67\x7e\xd0\xae\x93\x47\xc3\x59\x1c\x7b\x56\x91\x51\xfc\x7a\xff\x8e\x07\x65\x54\x1b\x99\x46\x0a\x2d\x98\x0e\x70\x97\x60\x3a\x3e\x13\xe6\xdd\x39\x40\x48\xae\xc4\xd0\xa9\xdf\xe7\xdf\x11\x86\x47\x25\x47\xdf\x95\x52\x6b\x59\x2d\xe0\x5a\xa4\xce\x69\xe4\x68\xb3\xcc\x9e\xa3\xcd\x1a\x86\x9d\xa1\x88\xb2\xa3\xdb\xc0\x39\x4e\x5b\x92\x6c\xcb\x1a\x7e\x6b\xbf\x72\xac\x9e\x24\xfe\x83\xde\x4f\x0e\x8a\x96\x76\xac\xe5\x8c\xf4\x29\x6e\x31\x52\x17\xf4\x06\xa0\x53\x32\x78\xc9\xfc\xd8\xfe\xe5\x0b\x51\x0b\x34\x73\x43\xb4\xf5\x2b\xfb\x1d\x46\x43\xf8\x17\x7a\xf2\x50\x4c\x57\x25\xa2\x6a\x9c\x16\x57\x07\x08\xe9\xe9\xc1\x0b\xe2\x3b\xb9\xe5\x98\xaa\x4e\x63\x87\xad\xcd\x79\x09\x3f\x6b\x4d\x82\xb1\x30\xea\xd3\xce\x68\xec\x01\x43\xa1\x51\x95\x70\x92\xa1\xc8\xa8\x8a\xfe\x36\x4e\xa7\xe1\xcb\x39\xa2\x40\xa9\x8a\x51\x73\x9c\x0e\x68\xc1\xcb\x32\x1c\x36\x85\x23\x69\x5c\xbe\xdb\x40\x20\xf3\xb8\x30\xf7\x41\x44\x0a\xa3\xaa\x98\xe6\x86\xa2\xa8\x8e\xc6\x04\x29\x6c\xaa\xd7\x3d\x35\x9b\x6a\x1e\x40\xf6\xc0\xd8\x42\xe2\x37\xed\xf6\xd1\x52\x78\x0b\x81\x40\x8e\x75\x09\x72\xde\x71\x23\xad\xda\xc8\x80\x48\x7a\xe1\x71\x81\x16\xfd\xbc\xfd\xc0\x1c\x30\x2e\xec\xd7\xf0\xac\x0b\x0b\x0e\xb2\xae\x63\xa7\x76\xbc\x2c\x43\xc1\x53\x15\x13\xd7\xb8\xfc\x9a\x0b\xb2\xb6\x33\xbb\x11\x66\x35\x2e\x1e\x99\xef\x40\xe2\xe2\x99\x1f\xbf\xdf\x92\xc9\x1b\x3e\x2c\x7f\xf8\x7e\xc3\x39\xae\x1b\x5c\xe9\xff\x06\x57\x50\x77\x1a\x24\x76\x8a\x02\xab\x6a\xce\xf6\x4b\x8a\x49\x44\x0f\xbd\xd1\x77\xb4\x96\x32\xe9\xc2\x25\x8d\x6a\xab\x66\xa1\x6f\x0c\x51\x69\xd4\x98\x03\x4d\xdf\x59\xa3\x7b\xcc\xd5\x68\x34\x3c\xe0\x77\xa6\xd0\xcc\x1f\x4e\xd7\x10\x07\xe1\x16\x0d\x9f\x06\x5b\x57\xe1\x51\xb5\xee\x29\x3c\x05\x9d\x40\x90\x77\x0a\x45\x40\xd0\x48\x83\x11\xf7\x80\x66\x42\xb0\x12\x27\xd7\x6b\x39\x8f\x9a\xef\x73\x11\x9d\x3a\x1a\x54\x02\x1d\x34\x42\x4e\x58\xc0\x86\x1e\x5a\x03\x0a\x43\xb4\x52\x25\xf7\xac\x39\x55\x14\x03\xb5\xaa\xa6\x5d\x6d\xb9\x3d\x1f\x7a\xcb\x41\x4f\x0d\x15\x03\x36\xd4\x4c\x0a\x48\x1b\x0d\x15\x23\x93\xa4\xc5\xc7\xed\xe2\xe7\x05\x2b\xc1\x2a\xa3\xdd\x0c\x3c\xa0\x8f\x44\x8e\x2b\x87\x28\x8d\x68\xcd\x0d\x79\x0c\x21\xb5\xc1\xd5\x39\x1e\x14\x5b\x54\xeb\x91\x42\x9f\x74\x2c\xa3\x62\x8b\x6a\x45\x42\x54\x34\x51\xad\xe8\x5d\x8e\x26\xaa\x47\x6a\x9a\x7d\xc0\xc1\x08\x19\x8a\x72\xe7\x97\x63\x07\x12\x61\x87\x55\x7f\xea\xc2\x06\x2e\x40\xc5\x33\x31\x9d\x1d\xf1\x08\x1e\xd1\x9d\x33\x21\xfa\x9c\x13\xa1\xb5\x9c\x08\x9d\x65\xda\x81\x2e\x41\x29\xb3\xa7\x01\x14\xfc\xae\x29\xa7\x69\xc7\x9a\x0f\x3f\xe9\x8a\x6a\xab\x1c\xc4\xdd\x51\x91\x99\xeb\x8e\x05\x80\xb3\xa3\xf3\xde\x1a\xe8\x65\x21\x52\x57\xeb\x9b\x5e\x26\xc8\x52\x57\xe7\x32\x91\x90\x43\x29\x9c\x5a\x0f\xea\x4e\x8b\x70\x64\x4a\xe4\x63\xc7\x71\x3f\x88\xfe\x89\x02\xe9\xfc\x4e\xf5\xd3\x8e\xed\x15\x30\x29\x85\xff\xd4\x5a\xd2\xa5\x6d\xd0\x57\x1a\xf2\xf5\xe6\x3d\x0d\xd9\x37\x34\x82\xae\x49\xf7\x83\x83\x9f\xd7\x83\x51\x0c\x2c\xa5\x54\x1e\x6c\x70\x4e\x37\xbf\x32\x79\xc1\x72\x87\xdd\xf0\x38\x09\xc7\xc8\xf2\xa7\xee\x70\xc3\x29\x9d\x06\xf3\xed\x43\x2f\x71\xa7\xd0\xcb\x7f\xa5\xd0\x24\x98\x86\xc0\xd0\x0b\x3e\xa4\xc6\x55\x04\xfb\xa1\x07\x12\x08\x2a\x1f\x03\xae\xff\x01\xfd\x2c\xde\x05\x64\xe5\x86\x29\x74\xa0\x4f\xfb\x0c\xdc\x1b\x11\xee\x49\xf4\x4e\xfd\xf1\x9d\xf9\x55\xd7\x0f\xdb\xa6\x59\x86\x7d\x02\x8a\xa7\x94\x14\x8a\x02\x4b\xca\xc4\x52\x10\xc3\x86\xa3\x64\x3f\xf3\x75\x33\x6a\x10\x52\x06\x8d\x13\x8e\xe8\xf8\x9d\xbd\xa4\x13\x6d\xfd\x33\xc7\xc2\x70\x1c\x61\x4d\xa1\x1c\x6c\x48\x0e\xb7\xcf\x7f\x8e\xd4\xdb\x86\x1c\x9c\x91\xe3\x66\x77\x5f\xa9\x2b\x0a\x44\x02\xe1\x09\x47\x0e\xd4\xdb\xf7\xd4\xb2\x28\xce\x04\x85\xcb\x75\x38\x13\xd4\x8e\x1b\x73\x38\x28\xa7\xfd\x86\x82\x76\x0f\xe8\x39\xd2\x26\x26\x4c\x27\x78\xfa\x48\x36\xca\xda\xd4\xae\x33\x85\x12\xf6\x22\x90\x90\xa8\x29\x33\xed\x87\x18\xaf\xce\x24\x10\x79\x13\xeb\x83\x42\x6f\xea\x07\x7b\x3d\x1e\x53\x52\x55\x8a\x77\x04\xce\x1b\xc1\xeb\x0a\xd8\x3c\x96\x0e\xc8\xb8\x53\x3a\xdc\x29\x03\xbf\x19\x38\xe8\xfb\x98\xe5\x8c\xf3\x43\x8b\x9f\xa3\xdc\x0f\x2d\xb6\x88\x0f\x7e\x68\xf1\xea\x9f\x52\x4f\x0b\x0d\x99\x17\xc0\xe4\xfc\x08\xe3\x88\xe9\xc2\xf1\x37\x95\x53\xe1\xb6\xa6\x84\x5b\x76\xe4\xd1\x45\xce\x22\x87\xdc\x54\x8e\x0c\xe7\x76\xaa\x67\xaa\x4a\xdc\xe3\xfc\x98\x49\x5e\xdd\x01\xc5\x70\xe0\xfb\x93\xbd\xcd\x51\xa9\xa8\x9a\x86\xaf\xc3\x2f\xaa\x2e\x0c\x76\x40\xf3\xce\x2b\x0d\xb1\x6a\x03\xd0\x6f\xe0\x05\x3d\x16\x8d\x42\x5f\x61\xc4\x55\x3c\x14\x72\x53\x2b\x86\x82\x39\x8c\x2e\xcd\x2a\x8a\xa6\x9e\xf9\x50\x21\x12\x9c\xeb\x13\x17\x5d\xf0\x93\xf1\x39\xe6\x53\x67\x74\x22\x74\x60\x10\x54\x83\x8b\x79\x38\xdf\xea\x47\x68\xe1\x55\xc7\x11\xc8\x49\xb8\x33\xd3\xbc\x49\x0b\xae\x0e\xab\x89\xaa\xeb\x9c\x4e\x03\x12\x73\x20\xcd\x47\x40\x98\xd0\x54\x26\xcc\xe1\xa3\xd1\x75\x27\x5e\x5d\xa4\xbc\x69\x9a\xe2\x90\x50\x74\xcc\xb1\x65\x6e\x91\x08\x38\xb5\x1c\x1c\xb3\x07\x05\x9d\x3d\xdc\xd1\x18\xd3\x12\xc0\x95\x32\x47\xd1\x31\x30\x3f\x98\x7b\xa6\x4c\xdb\x15\x96\xfa\x30\xff\x80\x51\x2b\x88\xa5\x70\x79\x7e\x3c\x2c\xef\xc1\x3d\xfc\xe2\xc5\x88\x46\xea\xa8\x95\xca\xae\x72\x76\xa5\x7a\xa5\x8c\x8d\xdd\x00\xc5\x25\xaf\x40\xa6\x9f\x96\x2f\x25\xac\x30\xe2\x07\x09\x54\xbd\xec\x0f\xdb\xf4\x70\x24\x0f\xa5\x50\xda\x8f\xfe\xe3\x9b\x97\x7e\xe7\xb7\xd6\x4f\x3b\xe6\x42\x08\x7b\x7e\x17\xb2\x32\x8f\x0f\xeb\x0e\x10\x93\xb3\x29\x55\x16\x87\xf7\x1d\xa3\x71\xfe\xf5\x93\x8e\xe7\x70\x58\xca\x8e\x83\x7c\x38\x2e\xa5\x0c\xf6\xe2\xc3\x71\xca\xb8\xb2\xc7\xc3\x6f\xc5\x46\x30\xd4\xc3\x19\x95\xd0\xce\xa1\x87\x33\x72\x29\x78\x3c\x88\xae\x62\xba\x2c\x42\x86\xb6\x1e\x0e\xae\xc2\x63\x38\x1e\x08\x32\x3d\x38\x28\xb5\xeb\x9e\x3e\x2d\x5f\xf6\x80\x3e\x81\x82\xaf\x48\x6d\xb0\xfb\xfc\x80\x22\xa1\x29\x7e\x08\x79\xf5\x62\x8c\x1c\x52\x52\x99\x05\xf2\x29\x41\x24\xcf\xe8\xf3\x40\x7a\xd5\xaf\xe7\xbb\x87\x7b\x2c\x80\x66\x15\x20\xf0\x34\xab\x68\xf9\x52\x64\xc9\x40\x48\x99\x84\xd4\xf2\xc4\x15\x45\x33\x83\xfe\x2f\x40\x1b\x4b\x03\x99\xe3\xa0\x2e\x28\x52\xa3\xd6\x0f\xc4\x97\x34\xeb\x74\xf0\x10\x89\xc2\x36\x7a\x68\x56\x51\x1b\xc7\x38\x52\xe6\x43\x03\x09\xe6\xc9\x06\x47\x18\x77\x10\x47\x65\x9a\xfd\xee\xdf\x76\xa5\xcc\x9b\x3f\x33\xc2\xe6\x47\x53\x24\xb9\x51\xf9\x74\x63\x0e\x94\xf9\x72\xa8\x5c\x44\x77\xd2\x1b\x11\xbc\x33\x9c\xb2\xfb\xe2\x16\xf0\x20\x87\x11\xf9\x19\xc6\x13\x6f\x3a\x4a\x8a\x1f\xe0\x6b\xd1\x10\x9c\xc4\xe8\xea\x30\x88\x27\x67\x4c\x96\xd4\x1c\x02\x94\x49\x6a\x44\xc4\xca\xf0\x43\x7b\x17\x52\xd6\x0b\x0d\x11\x55\xce\x89\x8a\x6a\x4f\x55\xcf\xcb\x05\x34\x9d\x62\x1c\x08\xd2\xa0\x13\xef\x57\xb0\x7d\x39\xdc\x92\x70\x92\xe1\x17\xed\xf6\xf8\x5e\x9c\x27\x68\x70\xe1\x7f\x90\x19\x08\x4f\xf0\x70\xc0\x46\xab\xcc\xd2\x6b\xd0\x0f\x48\xd8\xb8\x8f\x2b\x7a\x38\x64\xa3\x06\xfb\x9b\x91\x82\x85\x2f\xb4\xb3\x47\x5f\xde\xc0\xc1\xc1\xd2\x25\xca\xc5\x0b\xf2\x40\x2a\x7c\x41\x1e\x99\x31\x3b\x92\xb8\xd9\x3d\x5e\x96\x20\x51\x2d\xf5\xd4\x5c\x0f\x67\x7a\xb1\x63\xd3\xae\xfc\x48\x15\xfd\x4b\x81\x17\xb5\x66\xd8\xd2\x00\x3f\x3a\x1f\x01\x12\x71\xf7\xbd\xbd\x63\x11\x2f\x1d\x02\x51\xd1\xbe\xde\x16\x03\x51\x6f\xf4\xe2\x5a\xcf\x9e\xf4\x73\x25\xe1\x52\x8e\x80\x68\x25\x65\x16\xfb\x98\x3b\x07\x3d\x9c\x90\x90\x33\xfc\x5c\x5c\x2d\x1b\xce\xd3\x53\x39\x59\xdf\x18\x50\x19\xf3\xdb\xfc\x77\xfc\x30\x5f\xec\xaa\xda\xdc\x27\xc8\x2a\x44\x2b\xb2\xd0\x7b\x30\x66\x46\x69\x7d\x20\xb2\xb9\xc3\x1e\x08\x24\x1f\x8a\x7a\x28\x27\x1b\xf8\xcd\x4a\x23\xc9\x29\xce\xa1\x9e\xd0\xb4\xe3\x1c\x2e\x42\x40\x93\x3d\xbb\x7e\x3e\x35\xf5\xb1\x28\xef\x2c\x2e\x73\x6b\xff\x4b\xb4\x19\x5e\x3e\x88\xc8\xad\xf8\x82\xe3\x84\x2e\x1c\x41\x10\x63\xab\x22\x08\x56\x55\xda\x55\xa8\xe0\x07\x41\x67\x2c\xef\x69\xc6\x9b\x39\x7d\x5a\x1f\xcc\xb0\xad\x0e\x46\x00\x7f\xb3\xb5\x3f\xa0\xcf\x00\xef\x74\xbf\xf0\x51\x9a\x97\xfb\xde\x1c\xd0\xea\xd9\xbd\x37\xfb\x02\xf1\x84\xdf\x1b\x6f\xdc\x7e\x40\x67\xfe\x4e\x5d\xdd\x10\xb5\x4c\x71\x3b\x6e\x81\xcc\x6b\x0b\xb4\x70\x59\x52\x6a\xfa\xef\x40\x4a\xb2\x65\x25\xe9\xde\x1c\xfc\x4a\xac\xc0\xbd\xa1\x46\x0e\xbe\x14\x1f\x20\xe5\xc5\xad\x34\x3b\x95\x2b\x4c\xf7\xe6\x58\x3e\xcc\x11\xb7\x63\x0e\xce\x2d\x1f\x9a\x32\x82\x10\x4c\xe0\x04\x79\x1b\x75\xa1\xb1\xdb\xc9\x73\x9c\x75\x77\x41\x55\xee\xee\x06\x64\x5d\x62\xa4\xaa\xa9\xb3\xa6\xd4\x96\xc6\x14\x9a\x3a\x4f\x86\xb6\x78\x7b\xe3\xc4\xbf\x79\xb4\xaf\x83\x9f\x72\x02\x5f\xa9\xe9\x6b\x1f\x68\x95\xf7\x66\xa2\xd9\xc1\x7d\x69\x8a\xad\x9d\xf9\xd0\xc2\x41\xe6\xcb\x17\x85\x32\x10\x99\x81\x88\xd9\xbe\x37\x8e\x74\x66\x4f\xd1\x01\x85\x20\xb3\x5b\x39\x71\xea\xc6\x98\xed\xd4\x6f\xe8\x11\xf7\xee\xf7\xd8\xbd\x91\xee\x9d\x05\xcb\x87\xe6\x09\xa0\xbe\x67\xc1\xd2\x90\x0f\xe3\x7c\x8a\xf8\x0f\xf2\x72\xf2\x1f\x0d\xdc\x77\x39\x6c\x09\x94\xbf\xf7\xc5\x3f\x0a\xa9\x00\xee\x9d\x03\xc0\x7a\xe3\xad\xdc\x36\x05\x82\xbf\xf5\xa2\x44\x21\xa9\xc1\xbd\x3b\x9d\x49\x46\xa2\x78\x4f\x2e\x3d\xdc\x04\x0e\x7c\xca\x40\x8e\x91\xe8\xd5\xa8\x96\x81\xc8\xf1\xe6\x5c\x7d\x0b\x82\x23\xd0\x0e\xcb\x9e\xa9\xb4\xbc\x86\x93\xf5\xde\x6d\x69\xda\xc0\x55\xb7\xb5\x9d\x69\x6c\x41\xcc\x0f\x63\x16\x7f\x3f\xb7\x40\xee\x93\x0f\x9d\x36\xae\xd3\xc7\xa4\x0f\x10\x92\xb4\xef\x8c\xd7\x0b\xf2\x19\x57\x52\xa8\x68\xb4\x91\x42\x86\x69\xdc\x8f\x0e\xb1\x37\x40\x3f\xda\x6f\xd6\x77\x1f\x76\x9d\xb2\x1b\x9d\xd8\x06\xcb\xf9\x7d\x38\xfe\xa8\x1f\xa9\xea\xad\x7a\xfe\x98\x8b\xdf\x07\x82\x1f\x33\xa4\x47\x3f\xca\x55\x69\xc8\x29\x49\x50\xfc\x6e\xf9\xe6\x0f\x9e\x97\x5e\xa0\x6e\xa9\xed\xf9\xb2\x1b\x5d\x10\x74\xe2\x22\xb3\xcc\xfb\xc0\x7e\x70\x32\x52\x25\xc8\x42\x96\xba\xe5\xd5\xaf\x67\xda\xb9\xe9\xa4\x02\xfa\x31\x78\x3e\xc4\xe2\x53\x40\xc8\x99\x6b\x6a\x10\x72\x56\x40\xb6\xa3\x1c\xec\xbc\x49\x7e\xde\x64\xae\x41\x0b\xbb\x0f\xc7\x4d\x1e\x74\xa2\xc0\x8f\x93\x2d\x6f\x17\xfa\x99\xc9\x64\x3d\x53\xf3\x16\xc4\x12\x4d\x77\x08\x72\xf6\xaa\x12\x64\x7f\xcb\x65\x7e\x6c\xb0\x61\x7b\xc5\x2f\xc6\x51\x90\xd3\xd9\x19\xb8\xc5\x51\xfc\xee\x82\xa9\x88\x2d\x56\xbc\xd6\x96\x68\x6f\xb9\xc5\x8f\x01\x5f\x2b\xf0\xf3\x2b\xa0\xf9\x41\x20\xbd\xb5\xbe\x07\xf2\x1a\x30\xb1\x76\x8b\xc7\x5c\x76\x3b\x53\x4d\x2c\x50\xb7\x32\xd5\xd4\x93\xf9\x29\x44\x98\x05\x05\x49\x84\x27\xcb\xe7\xbc\x35\xb1\x73\xdd\xca\x5b\x73\x64\xe1\x4b\x48\xa6\x03\x36\x7d\xc9\xc0\x86\x27\x1a\xfc\x7c\x68\x1c\x4c\x09\x06\xa8\x4f\x3b\x0f\x15\x06\x59\xf3\xef\x2b\xa0\x56\x7a\x4f\x1f\x22\xa7\x02\x3a\xce\x22\xd9\x83\x2c\xd2\x45\x56\xc5\xfe\x82\x9a\x99\x96\xe8\x78\x96\x14\x7a\xde\x69\x16\xd2\xab\x69\xc8\xb6\x0c\x26\x48\xa1\x1e\x21\x20\x39\xf1\x0f\xae\x40\xde\x72\xe2\x57\x8c\xd4\xb7\x72\xd8\x1c\x17\xcc\xc2\x1e\x7d\x22\x1e\x6f\x3b\xf4\xc3\x4a\xcb\xd4\x7b\xc9\xa1\x09\x93\x61\x49\x99\xc8\x90\x63\xbb\xca\xb6\x74\xb2\x29\x2a\xd6\xa4\x2b\xa0\x57\xc0\x2a\xf5\x5d\x7d\x47\x0b\x9a\xa8\xdd\xed\x0c\x20\x5d\x7a\x62\x75\x2a\x6a\x80\xc5\x93\xbb\x42\x3e\xcc\x9c\x5c\xf4\x9f\x73\x5a\x2e\xfa\x7a\xd6\x40\x66\x1b\xe9\x52\x57\xb2\x7a\x03\x9f\xc1\x8b\x27\x40\x72\x88\xef\x29\x1b\x8a\xc7\xbd\x80\x6e\xe5\x11\x07\x55\x79\x14\xce\x9a\x36\xf5\x10\x7b\x09\x64\x7a\x60\xc6\xfd\x44\xdd\xe0\xe6\xc9\x5d\xb3\xe6\x8c\x4b\x06\xc9\xd6\xe8\xc4\x71\xb4\x39\x13\x2a\xe6\xa2\x9a\xba\x22\x81\x9a\x86\xc4\xf0\x3a\x08\x71\xb6\x7c\x1a\x1a\x3a\x4d\xc0\xe8\x36\xee\x8c\x4b\x27\x4d\xa8\xb7\x3a\x3d\xf8\x16\xc8\x62\x1f\x02\x50\xf5\xf5\x96\xbf\x25\x3e\xe5\xae\x44\xcf\xd2\x89\xcf\xa8\x4f\x3b\x16\x11\x3f\x85\x32\x63\x34\x66\xdd\x1c\x2e\x33\xeb\x20\xa1\x3d\x34\x81\x94\x9a\xc9\x94\x8f\xea\xcc\x48\x10\x55\xac\x50\xdf\x27\x82\x28\x47\xa1\x93\xd7\xa0\xe0\xdf\x67\xe7\x5d\xbd\x0b\x50\xf7\xd4\x3e\x5f\xca\x70\x7e\xa6\x4c\x54\x79\xa6\x19\x75\xf9\x81\xf4\xd2\x33\xab\x77\x9a\xd2\x90\x05\x1c\x4a\x80\x9e\x7d\x9f\x58\x1f\xd8\x86\xa7\xef\x19\xc0\x50\x94\x83\xa6\xe0\x05\xb9\x95\x83\xa6\x12\x9c\x72\x9f\x96\x5a\x60\xa2\xa7\xd9\xd2\x99\x46\x87\x09\x24\xfd\x6b\xc7\x9c\xe9\xc2\x3b\x26\x1f\x2a\xd4\x1b\x86\x71\x5a\xa4\x29\x99\x0d\x4c\x98\xb6\xd4\xdc\x0a\x57\xa8\x67\xc6\xef\xd0\xb5\x48\xab\xce\x4e\x73\x72\x26\x2b\x76\xa1\xa3\xb7\xdc\xca\x4e\x13\x9b\xf3\xad\x74\x34\xf5\x3c\xf3\x5d\x97\x83\x2e\x35\xc5\x32\xce\x40\x0e\xe6\x4e\x9b\x96\xc9\x7b\x40\xb1\x57\xce\xf9\x13\x4d\xa9\x06\x54\x42\xdd\x9e\x3e\xa0\x00\x30\x27\x34\x2d\xa5\x22\xbb\xe8\x13\x4a\x5d\x53\xf6\x60\x67\xaa\xe3\xb0\x76\x3e\x9a\x81\x3f\xe4\x3e\x27\x08\xd1\xa7\xa3\x5f\x6a\x96\xd2\x97\xac\xa0\x01\x85\x52\xd4\x93\xa3\xfc\xb2\x6a\x04\x02\x0a\xa4\x28\x39\x36\x2e\x5f\x4b\xd9\xf2\x9d\xd2\x57\x8c\x7c\x67\xd7\xdd\x91\x42\x0b\x4d\xd6\xe1\x6f\x25\x99\xa9\x27\xdc\x8e\x24\x33\x78\x2c\xef\x2b\xe7\xe1\x05\x28\x7f\x02\x4c\xec\x42\x22\x4e\x37\xba\x67\x1f\xa6\x71\xd9\x40\x82\xbb\xe6\xbe\xb8\x74\x9a\xaa\x8b\xc5\x5d\x1c\x46\x97\xf5\xa4\x8b\x91\x40\x3e\x50\xd3\x65\xb5\x38\x55\x7d\xb7\x8e\x73\x4b\xb9\x63\x0e\x62\x97\xee\x0b\x03\x08\x32\xa7\x93\xc7\x90\x6b\xe2\x26\x79\x4c\xcd\x87\x66\xa3\x23\x5f\x5a\x35\xeb\xe9\x04\xae\xca\x30\x61\x54\xe8\x5b\x97\xb9\x0f\x02\xcd\x35\xe1\xaa\x4c\xe6\x04\x07\x5a\x9a\x0e\x8f\x63\xd4\x7a\x23\xbc\x7e\x20\xbf\xfa\x90\x76\x20\x83\x80\x6b\x19\xa2\xfc\x10\x11\x11\xed\xc7\x11\x11\x57\x67\x33\x36\x84\xa8\x11\xf0\x12\x7e\x81\xac\xd1\xf7\x80\xca\xe8\xb3\xa5\x21\x44\x8f\x01\xe8\x93\xfe\x04\x32\x77\x84\x4e\x9b\xc4\xa6\x3d\x55\xc9\x0a\xf3\xe3\x5b\x3d\xb7\x83\x25\xea\x67\x2c\x0a\xa9\xe1\xda\xf0\xed\x47\x0c\x49\xa2\x74\x3b\x1c\xe2\xbc\x52\xe6\xcd\x09\x07\x6c\xe8\xcf\x3d\xa5\x5e\x24\xd8\x83\x9f\x44\x23\x6e\xe7\xf6\xcb\x7a\x11\xb4\x1b\xaa\xd2\x48\x55\xef\x4e\xc6\x25\x4b\x69\x83\x12\x9a\xce\x2f\xec\x62\xb7\x43\x25\xca\xc8\xcc\x42\x26\x9f\x52\xf3\x07\xf4\x28\x22\x27\xf0\x50\xdd\xe4\x73\xc1\x31\x7c\x37\xdf\x1b\xc6\x31\x7c\x3b\xae\x02\xf3\xf5\x4d\xca\x16\xbc\xb4\x37\x71\x15\x78\xa8\xee\xc6\xf3\xf9\x60\xa8\x73\x89\x7b\x7d\x77\x77\xea\x04\x1c\xe0\x77\xf7\xbb\xcf\x1c\x68\x4a\xd3\x92\x5c\xbd\x3c\x75\x56\xeb\x99\x42\xf1\xcc\x96\x42\x8b\x40\x30\xe2\xce\xda\x8f\x80\x2f\xf7\x62\x14\xba\x45\x66\x78\x54\xf7\x59\x84\x23\xf6\x76\xfe\x95\x8b\xfb\xc9\x77\xc7\x76\x06\xe9\x2a\x94\xa2\x90\xa4\xf8\xee\x3e\x62\x5a\xaa\x4e\x5f\x64\xd8\x01\x45\x0c\x2d\x1f\x82\x42\x3a\x95\xa8\x99\x81\xca\x09\x92\xa3\xb2\xe3\xe5\xe0\xc4\xe9\x37\x33\x1f\x50\xe7\x21\x14\xd7\x43\x1a\x4c\x83\x25\x9d\x9a\xd9\x5d\xe7\x4a\x23\x7d\xdb\xdd\xed\xf5\xc0\x79\x79\x77\x5c\xeb\x23\xa0\xe8\x11\x19\xb2\x4f\xd6\x65\x00\xea\x0e\x11\x08\x2a\x1c\xa2\xe2\xdb\xbf\x87\xcd\x1e\x6c\x0f\x85\x3f\x14\xcc\xeb\xf7\xc0\x3d\xce\xb9\x32\xac\x03\x11\x12\x77\x0f\x2f\x61\x4f\xab\x7e\x35\x01\x3a\x19\xb6\x73\xe0\x4d\xbd\x07\xde\x27\x0e\x3e\xe5\x39\x39\xc8\x79\x7c\x0f\x26\x97\xfd\xe2\x87\xa5\x4e\x16\x69\x64\x3a\x41\xd7\x57\xae\xea\x08\xa8\xfc\x3e\xc1\xf7\xb6\x3b\xe0\x48\xa1\xd6\xb7\xa7\x59\x2d\x68\x4f\x55\xef\x6e\x0e\xc9\x81\x23\x21\x0d\x39\x7e\x1b\x6b\xe8\x3d\xcc\x2b\xf1\xaf\xdc\x7e\x93\x2a\x8e\xc6\x5b\xd9\x44\x0a\xb9\xb7\x6f\x67\x08\xb9\x22\x31\xdf\x4e\xb0\x16\xe3\xde\x9d\x69\x69\x80\x52\x44\x38\xff\x6f\x87\xfb\x61\x08\xbf\x6f\xab\x74\x18\xa2\xef\xdb\x36\x7e\xac\xd4\xf7\x6d\xe2\x85\x61\x3b\x5f\x07\x56\xf2\xfb\xe6\xe1\xe1\x2d\x20\xf8\x02\x5a\x17\x8b\x75\xef\xf6\xad\xa1\xe8\xc4\xb7\xef\xdf\x46\x7b\xb5\x83\xbf\xc5\x0a\x64\x07\xff\xc0\x97\x7c\xdb\xc1\x1f\x9f\xe7\x7d\xf3\x2a\x33\xf4\x7b\x87\x91\xa4\x29\x26\x95\xe1\x31\xa9\x08\x8a\xf6\xf8\x2f\xe1\xe7\x87\x2c\xfd\xb6\x51\x6f\xe4\x43\x09\xb1\x3d\xad\xfa\x2e\x15\x94\xaf\xd8\x80\x8f\xfd\xd1\xb1\x01\x27\x8c\x78\x66\xa5\x0e\x40\x4f\xf7\x11\xd0\xc4\x8e\x3e\x3b\x7d\x72\xb5\x34\x2b\x1d\xa9\x07\x7a\xf8\xa9\x49\xa0\xb7\x3f\xf4\xa8\xe5\xef\xaf\x17\xbc\x4b\x79\x32\x2a\x0e\x6b\x3f\x82\x5c\xcf\x91\x32\xcf\x0f\x47\xca\x64\x11\x61\xe8\xbc\xb6\x84\xb3\xf9\x96\x2f\xfe\xe0\xee\xe3\xed\x9c\x16\x27\xcb\x3f\xb9\x96\xb8\x07\x74\x9f\xe0\x63\x61\x15\xd6\xea\x77\x97\x07\x57\xbc\x6f\x3f\xa8\xd4\x62\x84\xe1\x09\xa5\x58\xbf\x78\xfa\x28\xe7\x9a\x9f\x3e\x1a\x5c\xdc\xbe\xed\x61\xdf\xa3\xd5\x3e\x30\xb2\x21\x08\x3c\x2c\x43\x44\x49\x78\x58\x2e\x88\x09\x49\xae\xf3\x3d\x86\x3e\xfb\xca\x71\xaf\xdd\xf2\x95\x57\x6e\x8d\xdd\xf6\x5b\x5f\x6c\xa7\x87\xd9\x7b\x2c\x2f\x7e\x23\x28\x8e\xf4\xfb\xe1\x68\xc7\xf2\x29\x7d\x1a\xa4\xf4\xe6\xc0\xa4\x61\xf9\x45\xcf\x4f\xa1\xf9\xd5\x95\xc2\x5b\xbd\x56\x20\x99\xdc\xae\x40\xe6\x24\x48\xb0\x0f\x5b\xb5\x39\xc9\x94\x27\xa1\x5e\x6c\xc4\x07\x4f\x8d\xa7\x93\xe9\xb1\xa4\xaa\x77\xcb\x91\x76\x5e\x2a\xf4\x04\xd9\xfb\x1c\xab\x96\x12\x1a\xec\xf1\xde\xdf\x4a\x61\x50\x2f\x76\x9d\x53\x18\x90\x38\xf7\x7e\x72\xcf\xe8\x48\x21\x44\x45\x43\x4e\x2d\x9a\xba\x3a\x58\x2f\xe8\xef\xe9\x28\xd3\x98\xe7\x9c\x6f\x60\x70\x1e\xea\x19\x9e\x7a\x41\x9b\x7e\x86\x27\x0e\x15\xe5\x22\x38\x08\x47\xbd\x9d\x8b\xa0\xd7\xb4\xa2\x17\x8c\xf6\xb4\x62\x6d\x03\xdc\x38\x06\x8e\x7c\xa8\xd0\xf6\x4c\x80\xf3\x0b\x30\x91\x4f\xae\xe1\xf2\xe1\x6d\x64\x2a\x90\xec\x1e\x57\x6a\x9a\xd0\xe0\x32\x76\x53\x5f\x50\xb0\x1c\xd3\x47\xaf\x29\xa3\x7f\xe6\x86\xa7\xde\xe1\x07\x7e\x66\xe7\x0a\xe6\xba\xcf\x16\xeb\x92\xf2\x09\xd4\xd8\x7a\x94\x41\xa0\x46\x4b\x79\xfa\xc6\x6c\xac\xdf\x4a\x21\x50\xaf\xcc\xbf\xcc\x4b\x57\x90\xc3\x86\xdd\xd2\xa3\xe3\x9b\x31\x45\xbd\x4c\x02\xa0\xf3\xe2\x89\x7b\xd8\x93\x9f\xd9\x29\x99\xe6\x97\x29\xe2\x53\x68\xb2\x3b\xd2\x90\xd4\x16\x78\xd0\x0b\xb6\x57\xf2\x65\xd3\x2d\xda\x13\x48\xb7\x01\x3f\x90\x32\xfa\x73\x86\xbf\x90\xde\x5b\x0a\xa7\xac\x07\x7f\x03\xff\xb6\xdf\x3b\x7b\x9f\x37\x77\x5a\x70\xf5\x22\x70\x7c\xbe\xec\x3d\x81\xcd\xbd\x10\xee\xf0\x0a\xe1\x22\x8f\xd3\x4a\x2e\xf2\x42\x8e\xe3\xfb\xe5\xec\x7a\x31\x73\xbe\x7c\xad\x1c\xbd\xff\x45\x46\xa2\x40\xba\x8c\x0d\xf7\x79\xd9\x5f\xf2\xe9\x52\x29\x49\x6a\x20\xc5\x0c\xb0\x7a\x2f\xbf\x99\x82\xfe\x67\xb7\x3a\x51\x0d\xb7\x1d\xe7\x17\xf2\x98\x1c\xe7\x07\xb7\x96\xfc\x8e\xfc\x41\xbc\xca\xad\x34\x08\xa5\x67\x56\xc5\xac\xaf\x2c\x95\x03\xde\x63\xb9\x7d\x59\x6f\x8c\xe3\xc2\x9e\x72\x22\x09\xef\x97\xf5\x81\x98\xec\x5f\x16\x01\x61\x0a\x2f\xae\xb2\x51\x75\xda\x7c\xc4\x34\xca\xcb\x12\x4f\x8e\x5f\xb5\x2f\x1f\xc8\x6a\x34\x14\xfa\x32\xf5\x86\x1e\xa6\x9f\xd4\x4a\x87\x96\x4f\x6b\xaa\x5a\x1e\xac\x69\x48\x8f\x73\xa0\x07\xbe\x9d\x52\x08\xeb\xc5\x9b\xb3\xa1\x06\x54\x62\x6d\x36\xcc\x1b\x52\xbe\x80\xaa\x0e\x8a\xd4\x54\x0e\x2a\xba\x90\x4f\xbf\x34\x64\x11\xf9\xf4\xeb\x75\xa4\x43\xed\x7b\x58\x8b\xbc\xf8\x25\x96\xeb\xb7\xaf\xd4\xc4\xfe\xfa\x76\x9e\xf9\xc8\x94\x64\x32\x88\xa1\xd2\xcf\xf6\x5c\x29\x14\x8f\x8c\x44\xe3\x77\x7a\x62\x40\xb3\xfb\xff\x82\x9b\xbc\x21\xc7\xf4\x89\x79\x82\xdd\xac\x67\x7b\x7a\xbc\x9d\xca\x6b\xb0\xe7\x94\xb0\x87\x3f\x46\x3a\x39\xf8\x2b\x37\xe0\xef\xb7\xbd\xb8\xc8\xc6\x64\x35\x20\xfb\xc6\xed\xac\x06\xf1\x34\xbe\xfd\x5c\x6b\xa6\x5c\x06\xf8\x2b\xd8\x98\x81\xa6\x7b\x93\x20\xdc\x5c\xbe\xfe\x12\x0f\xa1\xb2\x18\x9c\xc4\x34\xdf\x76\xfc\x9f\x9f\x1e\x74\x6c\xe3\x81\x73\xde\x82\x2d\x4e\x9a\x37\x0f\x82\xa6\x90\x49\x65\x88\xe6\xad\x90\xf5\x1b\x91\x33\x63\x34\x73\x45\x63\x7f\xa3\xc8\xd6\x80\xca\xa1\xb6\xa5\xaa\x31\x4f\xab\x5d\xaa\x3e\x63\x14\x79\x1e\x9f\xef\xfc\xcc\x6d\x86\xec\x5b\x5e\x57\x9a\x11\xad\xba\xc7\xb9\xf9\x9a\xe5\x19\x48\xc9\x21\xdc\xe1\x74\xe6\x82\x76\x1a\xf3\xa9\xf8\x80\x83\xb9\x9a\x7e\x07\x08\x17\xdf\x74\x78\x00\x91\xa8\x73\xe3\x71\x94\x13\xc8\x46\xec\x03\x68\xca\xc7\x91\x2e\xbc\x8f\xce\x34\xf3\x54\xa3\x69\xe6\xa5\x68\x85\x1d\x48\x19\xe0\x4f\x3e\x94\x6b\x19\x95\x7a\x26\x77\x81\x57\x67\x2a\x77\x41\x5d\xec\xe9\x47\xdc\x7a\x6e\x76\x3b\xf9\x65\xa6\x05\x5e\x9a\x80\x34\x6b\xd3\xc1\x09\x06\x7e\x69\x18\x06\x3d\x9d\x12\x01\x4d\x78\xfa\xb5\x9e\x9a\xb9\xc2\x80\x72\x80\xad\xcc\xb4\x57\xe5\x43\x13\x6b\xe5\x43\x54\xc0\x16\x50\xb6\xc6\x83\x09\xb1\x1b\x13\xf6\x35\xfd\x26\x0f\x4f\xfb\xcc\xcd\x81\x83\x78\x6c\x26\x49\x0f\x38\xcf\xa6\x93\x1e\x24\xfa\x6e\x6e\x8e\x23\x24\xa6\x6e\x6e\x56\xb0\x3f\x90\xcf\xa5\xac\x1f\x61\x69\x8d\x86\xe5\x20\x40\x8f\x9b\x9b\x6d\x2f\x9f\x85\x70\x60\xfb\x67\x25\x10\x9b\x0f\x7a\x25\x2d\x1b\xe8\x4b\x29\x3a\x33\xf0\xe9\xf7\x86\x03\x89\x11\xf4\x40\x2f\xbd\x59\x92\x2e\x95\xfe\xca\xac\x78\xee\x9d\x1c\xec\x40\x96\x55\x36\x20\x27\x85\x2f\x40\xda\x31\x2c\xdf\x6e\xa9\xdc\x07\xe1\xdc\x6d\xc5\x2d\x69\x45\xe6\x91\x23\x3d\xe8\xd0\xde\x52\x26\xa6\x74\xe6\xbb\xb7\x20\x0f\xd7\xaf\xf7\x70\x48\x4d\xc5\x3b\xb4\xcb\x4a\xcc\xdc\x4d\x85\xcc\xe9\xee\xf3\x1b\x3a\xdb\x71\x07\xa4\x43\x67\xd7\x08\x2d\xed\x4a\xfd\x82\x5d\x78\xea\xf1\x9e\x55\x17\x74\x24\x48\xa2\xd7\xcd\x9d\xec\x1a\xec\x43\xbd\xe5\xd3\x5a\xf0\x91\x1a\x45\x20\xd3\x54\xc4\x43\xbb\x06\xf8\x84\xec\x68\x55\xa7\x76\x63\xc5\xf5\xca\x4f\x19\x9f\x46\xad\x78\xf4\x80\x0f\x8d\xab\x01\x59\xef\x28\x29\xf4\x64\xa5\x1d\x2d\x1c\x0b\xbe\xa3\x70\xb1\xbd\x79\xe4\x07\xfa\x74\x2a\x04\x3f\xc3\xb6\x20\x9d\x68\x17\x2b\x27\xdd\xfa\xea\x59\x2c\x74\xeb\x33\xa0\x05\xcb\x9e\xca\x3e\xf0\x68\xe9\x70\x72\x0b\xcc\x19\x93\xd7\x7a\x70\x44\xcd\xc3\xd9\x25\xfd\x76\xdf\x02\x35\x34\x1f\x00\xf3\x20\xe2\x8d\x69\x50\x36\x82\x3d\x9c\xeb\xb0\x3a\x61\xbb\xc2\x3c\xb0\xd3\xe5\x4b\x9f\x8e\x57\xaa\x82\x51\xea\xd2\x2c\x18\xf9\x56\x0b\xe7\xcc\x74\xfa\x81\x30\x8e\x03\x6b\xc6\x19\xd0\x22\x22\xbc\xf4\x70\x8e\x51\xf6\xbf\x13\x0e\x34\xfc\x3d\xf3\xe0\x4d\x01\x46\xa6\x35\xc4\x2e\x3b\x1d\xf1\x70\xf5\x9a\x3e\xed\x31\xb8\x80\x94\x25\x2d\xc8\x9b\x51\xe0\x1b\x9a\x0a\x80\x38\x7a\xaa\xc2\x0b\x52\xd7\x72\x58\xc6\xc9\x61\x76\x81\x0f\xfa\x35\xa4\x71\xb0\xde\x81\x24\xcf\x34\x66\x9a\xb7\xf0\x7f\x7c\x31\x73\x1e\x98\xfd\x19\xe5\xf4\x40\x82\xab\x57\x33\x65\xa2\x4c\xab\x1f\xd3\xd1\x10\x97\x75\xcc\xe9\x24\x01\x61\x1b\xc5\xd1\x51\xb8\x98\x66\xe1\x1e\x14\x8c\x83\xc7\x78\xba\x05\xaa\x59\xb0\xc0\x77\xbe\xe5\xc8\x60\x82\x1c\x8d\xc0\x0b\x6b\xb3\xa0\xa3\x17\x7a\x55\xc4\x22\x49\x6a\x26\xaf\xe8\x6c\xf4\x72\xa3\x58\xf1\xa5\x14\x3d\xfc\xa5\xb3\x58\xcf\xe3\x7c\x2d\x56\xdf\xd9\x9d\x4e\x04\x70\xb1\x91\x0b\x8c\x9d\x19\x51\x10\x41\x09\xf3\x52\x10\x41\x09\xf3\x2a\x4e\x54\x82\x6b\x68\xea\x6d\x9b\x4e\x20\xc7\x54\x1e\x80\xc2\xab\x69\xd3\x71\x03\x17\x3b\x57\x6f\xd9\x1c\x58\xea\xa7\xb3\x00\x5c\x70\xf5\x4a\xf4\x11\xdc\xca\xcf\xd5\xb4\x13\x0a\xf1\xdd\x7e\xb4\xce\x59\x6d\x18\x61\x8c\x0e\x14\xb8\x48\x37\x3c\x2b\xae\x33\x77\xe2\xc7\x6a\xda\x09\xdd\x55\xef\x45\x8b\xdf\xb3\xb2\x17\x21\x26\xdf\xf4\xbf\x7a\xbe\xd4\xba\xb3\x96\x89\x22\x38\x81\x44\x05\xac\xa4\x63\x0a\x78\x18\x65\x56\x2f\xe4\x00\x39\x99\x27\xfd\xa8\xe8\x82\x8c\x38\x98\x3a\x48\x09\x1f\xd6\x54\x14\x41\x25\x5e\x7e\x56\x36\x3b\xeb\x51\x2d\x09\xd8\xd2\x36\x79\xc7\x06\xc3\xc7\x4c\x10\xc1\xe7\x53\x47\xa9\xa6\x9b\x5b\x51\xbd\x35\x75\xed\xf9\x4e\x99\xcd\xb2\xec\xbc\x8a\xc8\xc9\x5e\xab\x7e\x09\x84\x70\xef\x69\xbf\x7d\xc3\x31\x34\xed\xb7\x1f\x44\x66\x4f\x3c\xf5\x68\xed\x53\x8f\xce\x74\x94\x89\x79\x92\x3d\x9a\x89\xb7\xa7\x3e\xc1\xd6\x93\x97\x65\x88\xbc\x98\x27\x26\x47\x36\x19\x79\x00\xf0\x38\xcd\xd3\x8b\x6f\xb5\x7d\x3a\x2b\x40\x8e\x2a\x3b\xf2\x49\xc1\x3f\xe5\xba\x2f\x03\x8a\x3a\x7d\x81\x04\x3d\x7d\xfa\xfd\x18\x9e\x40\x99\xb8\xee\x6b\xaa\x5a\x52\x69\x29\xf4\x11\x5c\xf2\xa5\xba\x84\xfa\xed\x49\x6f\x27\x4b\x71\xde\x90\x14\x23\xc3\xeb\xc1\xd9\x29\x0f\xf9\x81\x81\x64\x9e\x8e\x26\x3b\x33\x63\x3e\x2d\x47\x0a\xe5\xdb\x47\x10\xb4\x13\x7c\xcb\xf4\x71\x3c\x06\x3f\x6b\x06\x6c\xab\xd3\xec\x72\xd0\xa3\xd3\x42\x11\xe4\x3e\xc9\x18\x10\x0e\x95\x1c\x01\x9c\x71\x7e\x69\x25\x8c\xc5\x2f\xad\x0c\x42\xe0\xa7\x5c\xdb\x95\x78\xc0\xe9\xac\x00\x5c\x41\x9f\x17\x67\x65\x4b\x55\x0b\x29\xec\x0f\x27\x02\xe0\xad\xa4\xe9\xb7\x55\x2e\x66\x44\x0f\xa6\xd4\xb6\xf5\x1f\x33\xf0\x0b\xfe\xc9\x5e\x22\x29\x40\xb8\xd0\x45\x54\x18\xfb\x0e\xa7\x78\xb6\xc4\x85\x81\xf4\xd3\xab\xe5\x14\xb6\xec\xe5\x80\xe1\x6c\x18\x3b\xc2\xa3\xdb\x5c\x83\x29\x63\x6c\xd8\x9f\xa1\x38\x3f\xb1\x82\x45\x63\x5e\x04\x87\x72\x94\x5e\xf8\x61\x10\x39\xaf\x9b\x6e\x98\x6d\xad\x77\x34\x08\x5f\xdb\x27\xf1\xee\xbc\x58\x61\x58\xb5\xef\xed\x9f\x35\x75\xb1\x9f\xc2\x00\xfd\x5c\x0a\x21\x8b\x53\xee\xed\xba\xed\x60\xaf\x93\xad\xed\x69\xc7\x23\xf3\x50\x5a\x67\x06\x07\xa0\x75\x71\x38\xa7\xdf\x31\x69\xe8\x54\x8d\xe0\x85\x33\xa0\x4c\x57\x70\x55\xf9\xa8\x6b\x43\x76\x6f\x98\xae\x58\x27\x79\xac\x3b\x2a\xee\xe4\x0a\x3f\x96\x8b\x29\xaf\x74\x6d\x20\x2b\xa7\x74\x6d\x7b\xca\x2e\x41\x27\x90\x57\xb0\xa7\xaa\xaf\x3c\x8c\x80\x76\x0a\xb1\xfa\x7e\xe3\x84\x7c\xe3\xb3\x39\xbf\xf0\x16\xc8\x09\x1a\x19\x74\x96\x93\x5e\x24\x07\xd7\xe0\x23\x99\x8a\x57\xf1\x17\x28\xeb\x55\xa6\xeb\x66\x11\x68\xd6\x99\x5e\x5b\x0a\x9d\x99\x86\x41\xfb\x9e\x00\x8b\x29\xc7\xf7\x9e\x93\x9e\xb4\x00\x44\xbb\x4c\x79\xbe\x6b\xdb\x03\x29\xa4\x33\x3d\xf2\xfe\x1c\x8d\x4e\x4f\x5d\x20\xa5\x12\x0b\xa6\x8a\x83\xc1\x5a\x35\xfd\x4c\x09\x91\xfd\x53\x5e\xee\x96\xfd\xd7\xb8\x3a\x02\x3b\x6d\x04\xc9\x94\x94\xda\x02\x93\x56\x9f\x8a\xe8\x01\x37\x3f\xb4\x1f\x6a\x21\xe1\x1c\xeb\xd1\xf1\x7a\xc0\xcc\xba\xac\x05\xdc\x26\x98\x72\x88\x17\x82\x09\xa7\x9f\x26\xc1\x5f\x3a\x3b\x42\x38\x3b\xd3\xef\x8f\xb4\x23\x1f\x8a\xea\xd8\xd3\x1d\x7b\x15\x3b\xd1\xee\xf0\x76\x04\x82\x59\x74\x40\xbf\x64\xc6\x97\x26\x1e\x9c\x91\x53\xa9\x04\x6a\x43\xe1\xb2\x37\x9c\xb8\xad\xe9\xbc\x02\xbc\x6b\x33\xf5\xfc\x48\xd9\x98\xbb\x8e\x46\x05\xd1\xd9\xfd\xbd\x87\x24\xe5\xe1\x3e\xae\xf4\xe1\x27\x46\xb8\xf8\x33\xbb\xa3\x39\xf7\x14\xae\x91\x44\xa6\xed\x7e\xad\x06\xaf\xe5\x94\x47\xfb\xe0\x59\x8a\xe9\x84\x04\x38\xce\x66\xc7\x0d\xc9\xd9\xae\x14\x04\x65\xdb\x52\x78\xba\x90\x76\x64\x06\xc2\xe3\x31\x95\x29\xa0\x44\x10\xea\x5e\x4b\x1c\x67\xd3\x9e\xf1\xe8\xcd\x7a\x47\xa4\x36\x14\x50\xbf\x23\xd2\xd0\xda\xf5\x8e\x48\x59\x42\xca\x0f\xd9\xf7\xf0\x89\xc1\x41\x34\x90\x9c\x59\xbc\x81\x7b\x86\x6d\x28\x27\x7a\xc9\xb2\x3b\x65\x00\x57\x8f\xa6\x1f\x19\x69\x9c\xea\xc3\xaf\x56\x72\x46\x0d\xac\x8b\x69\x66\xb8\xcb\x1d\x88\x55\xa7\x4b\xbc\x62\x35\xa0\xed\x4b\x10\xcc\xe0\xc6\xf9\x99\x6e\xde\x6a\x89\xba\x7a\xec\x88\xd0\xb1\x69\x3f\x7d\x43\x0c\x92\x9f\xbe\x9c\x69\xe6\x36\xb2\xe0\x13\x22\x48\x55\x9b\x61\x38\xe3\x07\xc1\x0a\x9c\xdc\x7e\xf1\x23\xeb\x35\x1c\x31\xfe\x29\xd3\xfe\x86\xb6\x06\xc6\x69\x04\xe0\x61\x07\x1a\x47\xfc\xd0\x8e\x3e\x33\x95\x3a\x1c\x48\xf4\x33\x87\xf3\xb1\x6d\x29\x53\x88\x6b\x4f\x2b\x7a\x87\xf5\x4c\xcd\x97\x76\x5e\xca\x34\x1b\x50\x9d\xd2\x0e\xac\xee\x1b\xe0\x2e\x22\x0c\x24\x21\x02\x76\xef\x9c\x04\xc4\x51\x4c\x65\x1d\x28\x98\xbb\xa7\xd2\x0c\x1c\x44\x46\x4c\xc7\x0b\x8c\x98\x92\x6e\x9f\x29\x04\x22\xcc\xdb\x16\x3e\xa6\x5c\x89\x05\xca\x06\x7b\x55\xb8\x40\xe3\x75\xbf\x79\x3b\xd2\x12\xae\x70\xfb\xdc\xdf\xd2\x8c\x13\x3a\xf7\x34\x63\x6b\x38\x90\x0c\x71\x3c\xb4\x37\x6f\x8b\x75\xe1\x18\xb7\xc5\xba\x6c\xd1\xdb\x8e\xe6\x2b\xcd\x2a\x18\x83\x27\x63\xa7\x93\x0c\x6c\x10\x84\x73\x0c\xe4\x36\xc9\xbc\xfd\xf0\xf1\x99\xd9\xe2\x75\xa1\x01\xf4\x70\xb3\xe9\x54\xcc\x87\x43\xff\xb6\x4d\x24\xd4\x7c\x13\x00\xc7\xb1\xe6\x08\x04\x0c\xe2\x53\x29\x06\x0e\xbc\x1e\x93\x14\x03\x70\x51\x05\x27\x94\xde\x53\x73\xb8\x4b\x06\x86\x88\x8f\x00\xe3\x67\x3c\x22\x07\x4f\xab\x68\xb8\xf4\xa7\xb3\x08\xb4\x9a\xc2\xc5\x53\x37\xb6\x9e\x92\x08\x54\x6e\x9d\x4f\x45\x0d\xec\x27\xc1\x8d\x73\xda\xb2\xcb\x65\x97\x39\xb3\xd4\x69\xc8\xb4\xe6\x09\x72\x14\x01\x29\x9b\xa7\xdf\xe9\x18\x25\xed\x9a\xe7\x13\x29\x30\xe7\x20\x62\x06\x48\xd2\x04\xf4\xe4\xb4\x01\xed\x4a\x9f\x03\x14\xd2\xae\xe4\x99\x8c\x7a\x80\x50\x50\x78\x2f\xfa\x62\x2b\x4c\xbf\x47\xc0\x44\x2b\x1a\xa1\xc6\xa8\x36\xcd\x18\x30\xd7\x38\x36\x21\x56\x16\x5e\xd8\xc0\x65\x32\xa7\x45\x43\xc2\x35\xe6\xb4\x68\xc8\x3e\x51\xf8\x41\x25\xb3\xec\x54\x22\x80\xca\x63\xe7\xd3\xcf\x62\xb4\xf4\xaf\xcc\x12\x84\x6e\x4d\x07\x26\x1c\xc1\xd4\xe1\xfd\xb0\x85\x29\x0f\x56\xfb\x1b\x5e\x2e\x9e\x4a\x27\xb0\x58\x21\xe3\x90\x89\xad\xb7\xb4\x23\x73\x68\x0c\x22\x53\x3c\xa4\x64\x54\xf6\x2e\x5c\x99\x56\xd9\x55\xda\x95\xaa\x36\xd5\x1a\x72\x98\xc4\xd5\x99\x3a\xbf\xae\x81\xd7\x6a\xea\x75\x8d\x55\x78\x02\x6a\xcc\x57\xaa\xea\x31\x1b\x18\xf5\xc3\x6e\x5c\x82\x47\xa6\x13\x15\xe4\x76\xd4\x24\xdc\x82\x10\x81\xe9\x4c\x05\x78\xca\xe6\xc3\xf7\xd5\xb7\x7c\xa9\x83\x1f\x4d\xd8\xc1\x17\xdb\x48\x99\x9e\x10\x66\x58\x0f\x5f\x6c\x21\x3a\x64\x2a\x6d\xc1\x71\xe4\x43\xe9\xa0\x5c\xec\x9c\x0f\xcb\x28\x28\xd0\x0f\xbb\x71\x33\x2a\xc5\x8b\x6f\x5b\xbe\x53\x20\x25\x82\xa8\xa3\x3d\x48\xc2\x31\xfd\x46\x47\xb4\xbf\x87\xef\x41\xb1\xca\x79\xa2\x83\x3d\xe0\x87\x37\xc6\x99\x46\x5f\x1e\x7e\xfa\x7f\x8b\x22\xc0\x7b\xd1\x6e\xc7\xa1\x34\x15\x06\xb2\xe7\x6e\xd3\x7c\x60\x4e\x3c\x03\x9a\xff\x65\x5a\xed\xba\x85\x2f\x3c\x7c\x31\x12\xae\xf5\xe0\x8e\x2c\xa8\xc3\xfe\x90\x21\x95\xd0\xa0\x12\x8e\x3c\x15\x41\x52\x5b\x4b\xa3\xde\x76\x7b\x5a\x15\x1f\x40\xaf\xe6\x51\x8e\x0f\x7a\xf6\x3b\x20\xb3\x29\xbc\xa4\xc7\x53\xf4\xc0\x35\xc6\xb8\x1c\x86\x80\x53\x71\x3e\x9c\xcc\x14\x16\xe6\x17\x3a\xc8\xb9\x36\xfd\x26\xc7\x47\x0a\xf1\xa3\x1c\xb9\x7c\x35\xf5\x2a\x47\x89\x7e\xf9\x20\x46\x81\x1d\xab\xa0\x95\x63\xd4\x74\x62\xef\x24\x83\x7e\x5a\x36\xce\x91\xac\x20\x96\xca\xe5\x9d\xf9\xec\xcc\x6c\x07\xd4\x4b\x79\x2d\x55\xfd\xdc\xea\x1e\xd0\xe8\x9e\x40\xb2\x26\x6c\x69\x47\x1c\x04\xe3\x9a\xb3\x2d\x0c\x6e\xfa\x4c\x67\x5b\x68\x10\xe5\x73\x80\xcf\x0e\x68\x7c\x06\xd0\x62\xf9\x3c\x9b\x37\x79\x6c\x03\x27\xfd\x7c\x22\x51\x21\x39\x3f\x2d\x47\xf7\x40\x66\x69\x7b\x1a\x12\x42\x57\xfa\xd4\x52\x63\xf9\xf2\x8b\x1a\x1f\x21\xc5\x89\x1a\x08\x24\x9c\x4a\xd4\xb0\x73\xeb\x6f\x3a\xfe\xa5\x11\x71\x33\x1d\x00\x93\xab\x61\xd3\xcf\x6d\x94\x31\xd2\xae\x54\x8b\x9e\xba\xb2\x83\x9d\x81\x9c\xd1\x95\x91\xf8\x3d\x18\xd4\x15\xc5\xc3\x94\x2d\xd3\x2c\x2b\xf7\x67\xf5\x4c\xa4\x99\x10\x3b\x70\x3f\x73\x27\xb2\x8c\x43\xc1\x4f\x6f\x70\xe5\x64\x3e\x9d\x13\x88\x07\x09\xa7\x63\x65\x78\x70\x75\xfa\x7d\x8d\x1c\x2a\x4f\xdf\xf0\x24\x50\x65\x3e\x1d\x5f\x80\xa6\xf5\x74\x7c\xc1\x79\x9c\x3f\x66\xdd\x4f\x13\x69\x4d\x3b\x10\x29\x2b\x62\xa1\xff\x82\x6f\x39\xd3\x43\xb4\x5b\x45\xd9\x24\xcf\xcf\x74\xde\x87\xb8\x70\xfd\x30\x07\x2f\x89\x4f\xc7\xd8\x90\x61\x7a\x3a\xc6\xa6\xb3\x2f\x09\xb1\xb9\x52\x53\x83\x44\xe4\x77\x7e\x08\xa2\x7a\x27\x2f\x78\x64\xc8\x0a\xaa\xa9\x3c\xa0\x3d\x15\x53\x53\xc6\x99\xaa\xf2\x72\x71\xae\x3b\x6c\x66\x27\xbe\x65\x3a\x50\xa6\x11\x04\x35\x5f\x0a\xec\x22\xa0\x60\xbe\x4c\xda\x88\x86\x2f\x05\x9d\xee\x35\x50\xd1\xe3\x38\x34\xe3\x98\x53\x02\x4e\xe6\xcb\xcf\xca\x04\x39\x91\x7d\x89\x37\xf5\x65\xb2\x1f\xe9\xe3\xe1\x81\x04\x04\xbd\xd4\xd5\xce\x43\x45\x74\xca\x09\x72\xe3\xcf\x97\x03\xf1\x90\x6d\x1c\x38\xd3\x08\xd1\x9a\xaf\x10\x7a\xea\xfa\x5c\xcb\xa8\x6f\xcf\x25\x9d\xc8\xc4\x1b\xb3\xb2\x72\x4c\x1c\x31\x1d\xbd\x10\x34\xd0\xed\x5e\xf8\x7a\xcf\x94\x8a\xb8\x47\x0a\xed\x5a\x0d\xf4\x76\x97\x74\x22\x85\xe4\xc8\x30\xa5\x90\x6c\x21\x17\x49\x9f\xa5\x64\xdd\xa7\x37\x1e\x13\x3d\x61\x1a\x34\x2b\xe2\xde\xb3\x5e\x32\x57\xf1\x30\xd4\x54\x22\x8b\x16\x17\xe1\xdb\xcf\x9d\xc2\xc3\x1c\x01\x93\xbb\x93\xd3\x21\x30\xb1\xe0\xbd\xc3\x28\x03\x7a\x3f\xa1\x33\xbe\xa1\x35\x84\xd3\xb7\x43\x93\x63\x95\x7d\x63\x64\x08\xf4\x54\xd8\x07\x5f\xea\x1c\xe6\x71\x9f\xe9\x27\x3a\xc8\x0a\x35\x95\x8f\x22\xf9\xac\xa6\xa2\x55\x2a\x51\x7b\xf3\x6d\x97\x3f\x12\x94\xe2\x53\x8e\xe8\x44\x0e\x4f\xa9\x1f\xe4\x58\x77\x38\x8a\x03\x54\x78\x6a\x61\xbe\x6f\x06\x72\x02\x32\x90\x94\x5a\x9f\x84\xe1\xf8\xfd\x0c\x6e\x3e\x4c\xc7\xa1\xec\x67\x49\xe1\xd3\x9f\x32\x9b\x12\x31\x23\x7d\x29\xf2\xa4\x72\x8b\x69\xfa\x95\x8c\x3d\xc1\x1d\x7e\x26\xa3\x11\x9a\x35\x1d\x79\x42\x78\xcb\x7c\x3b\x0b\x74\xb6\x86\x42\x4f\x2a\xe9\xe6\xe7\x1b\xce\x85\xf6\xa9\xd4\x15\xb5\x7f\xbe\xf4\xbe\xc9\xd0\x9c\xa7\x0a\x4e\xaa\x48\x94\xea\x0c\xa7\x57\xdf\x30\x54\xea\xb0\x5d\xa0\x9b\x15\x77\x5a\xa0\xb9\xdc\x15\x70\xed\x38\xdf\xd8\x5b\x90\x1a\x3a\x28\x93\x36\xe1\x04\x6f\x0b\x12\x3f\x38\xe9\xc4\xe6\x65\xdf\xff\x5c\xa0\x4f\xbe\x2b\xe0\xa9\x2f\xc1\x60\x38\xfa\xfe\x04\xf2\xde\xd4\x4c\x2f\xd0\xd9\xf0\xaf\xf4\x32\xf4\xe5\xfe\x23\xee\xbd\xaa\x5a\x39\x2c\xe9\x45\xf3\xb5\xa7\x59\x49\xa4\x7b\xfa\x54\x1c\x82\x58\xf9\x82\x7c\x2a\x55\xba\x14\xbd\x39\x91\xd6\x82\xbc\xb8\x81\x20\x37\x5a\xb5\x51\xd3\x82\xf7\x02\x15\x24\x71\xa6\x50\xd4\xbf\xe7\x4b\xb9\xe4\x32\x3f\x12\xec\x7c\x29\x6e\x41\x1e\x24\xe8\x58\xc9\xdd\x98\xf4\xdb\xc3\x60\x9a\x1d\xca\x67\x4f\xff\x02\xc5\xbe\x37\x46\x65\x3a\xcc\x18\xed\x33\x36\x6d\x2d\xf0\xf4\xbc\xf2\xa5\x2c\x1b\x4e\xc6\x79\xf5\xdd\x17\x72\xce\x5a\x01\xd5\xd0\x51\x80\xd6\xf9\xd5\x4b\xa0\x22\x28\x1f\x6a\x8c\x47\x07\xb2\x01\xff\x4a\x33\xde\x7e\xf5\x04\xb4\xb1\xf4\x4c\x65\x63\xd0\x80\xa6\x14\xe0\x03\xc8\xaa\xfc\x31\x00\xc5\x1d\x02\xd9\x47\xb9\x5d\x40\x56\xec\x6b\x40\x99\xf8\x98\xd8\xdd\xd1\xc7\x7e\xb2\x61\x81\x0a\x59\x2c\xa9\xaa\x59\xff\x40\x46\x07\x04\x7c\x55\xf4\x64\x20\xc3\xdb\x80\x9a\xb7\xb7\xc1\x06\x04\x3f\xa2\x0b\x59\x3e\xb6\xe3\x0a\xe8\xd9\x4a\x5d\x71\xa7\x0c\x52\x3a\xed\x08\x6e\x16\xfc\xcb\x95\xaa\x7a\xc0\xa6\xa5\xea\xf0\x09\x01\x64\x54\x41\xce\x04\xc2\x6e\x72\x0c\x89\x83\x7f\x17\x24\x8d\x72\x63\x36\x6c\x1a\x3d\xa8\xe9\x58\xa4\x46\x9b\xd8\x47\x2a\xd8\x88\x5a\xb2\x61\xfd\x7e\xc6\x6f\x1f\x5a\xd3\x38\xc1\xd4\x79\x71\xc2\x4f\x0e\xd3\x0e\x9b\xf0\x70\x22\x05\x5f\x72\x5a\xa0\xa6\xe3\x53\x55\xd3\xc1\xb6\x53\xca\x8c\xee\x70\xa7\x05\x99\x33\x9e\x29\x34\x29\x9d\x05\x50\xd7\x2a\x7a\x5a\x55\xa8\x02\xdb\x4e\x4f\x64\x54\xfb\xe8\x16\xa4\xa0\xfb\x5e\x81\x44\x48\x25\x65\x0c\x84\x42\x28\x29\x18\xc8\xd7\xd2\xa1\xab\x03\xfe\x96\x4e\xec\x3e\xdb\x40\xc0\x6f\x64\x5c\x2c\xf3\x31\x40\x96\x39\x30\x65\xd5\xd4\x35\x7a\x0c\x84\x57\xd1\xae\xf4\x09\x46\x20\xe8\x60\xb7\x4a\x3b\x8a\x6a\x08\xa3\x3e\x30\xb1\x41\x3e\x0e\x60\x39\xd9\xcf\x07\xe2\x4f\xa6\x16\xeb\xc9\xe7\x53\x19\x3a\x1a\x7d\xea\x8a\x72\xff\x74\x62\x95\xbf\xa4\x21\xe5\x52\xda\xd3\xce\xad\xfb\x7f\x54\x35\x01\x85\x17\x91\xc1\xe3\x2a\x01\x0f\xc9\xd2\x3f\x14\xbb\x57\x55\x51\xc5\x96\x66\x45\x15\x59\x69\x39\x63\x7a\xa6\x52\xd1\x12\x21\xc4\x83\x67\xc0\x39\x64\x9c\x17\xa4\x43\x96\x3c\x9e\x51\x3e\x85\xba\x49\xdb\x02\x89\x0e\xb2\xd2\x48\xf6\x6c\x1a\x92\x7f\x9c\x9c\x40\xca\xf6\xb1\x1a\x0a\xa8\xe4\x32\x1c\x89\xc5\xfc\x0f\xaa\x50\xb4\x4b\x39\x98\xca\x82\xf5\x84\x9d\x49\xb4\x4b\x78\xac\x33\x78\x38\x3b\xd2\x82\x34\x05\x50\x7b\xc9\xe9\x49\xb3\xc3\x3b\xa3\x03\x79\x98\x81\x6c\x99\x2b\xa9\xaa\x1b\x72\x0c\xba\x0c\xba\x04\x03\x99\xed\xae\x96\x42\x48\x2f\x18\x58\xe6\x0a\xa4\x0c\x60\x30\x87\x62\x8e\xc7\x26\x2e\x3e\x11\xe1\x14\x05\x3a\x4c\x33\x38\xfd\x98\x9e\x10\x1e\xc8\x9a\xd4\x4a\xbe\xd4\x36\x69\x29\x63\x11\x68\xc7\xef\x90\xb1\x35\x8b\x4f\xb6\x46\xab\x4e\x0e\x73\x05\x72\x8f\x20\x67\xea\x61\x3f\x95\xc9\xc6\xa4\x0f\x64\x69\xf6\xb4\x72\x76\x1c\x05\x96\xef\xd8\x9b\xcf\x9c\x5b\xda\x82\x8d\x17\x47\xa5\x9f\x1f\xd0\xf6\x01\xce\xd2\x2a\xff\x4f\x4e\xbd\xea\x67\x43\x99\xac\x0a\x31\x81\x7a\x35\x03\x64\xb2\xaa\xa9\xe7\x4a\x55\x93\x73\x0b\xd8\xbf\xbf\x9a\xe5\xbd\x05\x49\xa9\xad\xf9\xd0\xa2\xeb\xa7\x4b\xa3\xd7\x52\xd7\x8b\x47\x5d\x1f\x97\x17\xb3\xae\x90\x9e\x5e\xd3\xa7\x05\x33\xa6\xd2\x51\x3b\xa3\x30\x7b\x75\x80\x10\xc3\x84\xd4\x6a\x2a\xcb\x80\x92\x81\xf9\xc2\x43\x09\x64\xe9\xf4\x0c\xe8\xb5\xad\xe9\xf4\x2d\x5e\x05\xb6\xb7\x1c\xde\xf0\xb1\x6a\xe2\x82\x60\x2a\xc4\xd5\x18\xa7\xe9\x07\xaa\x54\x82\x8f\xda\x61\x63\xbc\x1e\x52\xae\x14\xda\x01\xff\x69\x48\xc7\x22\x64\xa9\x24\x1e\xbd\x66\xf9\x38\xfa\xd2\x90\x29\x08\x7a\xaa\x8e\xc2\x3d\xd3\x27\x51\xb8\x59\x40\xab\x6a\xb0\x86\xea\x3c\x92\x67\x26\x9e\x47\x6a\x6b\x4a\x85\x42\x63\x9c\xe6\x40\x3d\x65\x92\xba\x33\x4c\x8b\xef\x6c\x0c\x9e\x0b\xb9\xe0\x1b\xa7\xa5\xb1\x5e\x80\x8c\x6c\xca\x40\x36\x5f\xda\xe3\xc0\xf6\x57\xd8\x50\xed\x2d\x5f\xea\xd9\x3d\x56\x88\xb7\x44\x4e\xb0\x3b\x2d\x9b\xfd\xf8\x56\xce\xaa\xaa\xcb\x50\x2d\xed\x48\x41\xee\x41\xc0\x6c\x36\x8d\x2a\xeb\x21\x4c\xf7\x34\xc7\x1b\x0d\xc8\x6f\x3e\xef\x40\xfa\x6e\x5c\x40\x8e\xc9\x61\x29\x4f\x0b\x63\x83\x66\x1c\xf7\x75\xb1\xa5\x4f\x27\x8f\x49\x1f\x1c\x8a\x8c\xf8\x86\x91\x83\x8e\x6e\x2f\xf4\x91\x42\xbd\x34\xb1\xa7\x4c\x8c\xe2\x48\xa3\xe2\x05\x83\x21\xa2\x19\xf6\x80\xba\xa1\x10\xe4\x6e\x23\xe7\x65\x75\xe0\x51\x38\xdc\x69\x26\x36\x58\x2b\xd4\x44\xe8\xcc\x41\x49\xbd\x83\xb8\x69\x70\xa4\xcc\x98\xa6\x19\x3d\x8a\xbb\x07\xd2\xa2\x76\x30\xc5\x12\xd6\xd3\xbf\xcf\xc0\x2c\x0e\x3a\xe3\x99\x66\xcd\xc5\x5a\x40\x0d\x64\x0f\xe4\x38\x7b\x58\x8a\x93\x78\x84\x53\x39\x9a\x69\x6c\x81\x6e\x41\x27\x90\x2d\x26\x48\xe0\x97\x1f\x7b\x8a\x1c\xe7\x44\x1d\x51\xca\x1c\xcd\xb4\x21\x31\xe8\x51\x93\x3a\xb6\x94\x55\x41\x29\xbb\x04\x6d\x40\xb6\x57\x9c\x01\x75\x0d\x06\x66\xe8\x27\x4c\xfc\xc8\xea\x82\x8c\x5c\xca\x58\xbb\x0e\xc8\x0c\xa4\x13\x4b\xb2\x88\x1e\x17\x66\xd6\x4e\x4b\xb7\xd3\xce\xd3\x12\x3e\x4c\xe6\xf2\xf2\x75\x17\xe4\xa4\x0b\xb3\xfd\x99\xba\x8b\x71\x46\x8b\xf6\x4b\x25\xfb\x39\x02\x4e\x21\xc8\x74\x89\x4f\x8d\x2d\xed\xd8\x21\x94\xc9\x53\xcc\xd3\x40\xad\x77\x90\x53\xb6\xb3\xdf\x26\x29\xa8\x48\x17\x97\x42\x61\x28\x17\x2e\x29\xe8\xc0\x21\x4f\x23\x8b\x40\x42\xdb\x2b\x9f\xca\x75\x8d\x72\xd1\xba\xfd\x1a\x6c\x28\x85\x40\xd5\xb1\xa7\x50\x8b\xb2\xa7\x4c\x8e\x5b\xf0\x51\x06\x8f\x3a\xf6\x40\x43\xd0\x0e\xe4\xfe\x37\x20\x4d\x00\xaa\x86\x22\xa5\xea\x40\xdd\x76\xa4\xd4\x60\x57\x3a\x99\x47\x85\x24\x1a\x42\x37\x93\xdc\x08\xe6\x87\x8b\xf3\x2a\xc9\x15\xc4\x11\xac\x47\x40\x56\xda\x53\xe0\x30\x26\xc2\x44\x16\xe8\x30\x91\x16\x50\x83\x46\xb4\x26\x70\xa9\xc0\xe4\x15\xb9\x54\x07\x6b\xdb\x9c\xcc\xe5\x1c\x29\x64\x19\x3a\xa0\x99\xec\x08\x28\xb3\xc3\xc5\x36\x52\x80\x52\xd9\x20\x21\x85\x24\xd5\x91\x65\x40\x8e\x09\xbe\xd3\x9d\xa6\xaa\x76\xe3\xe7\xc3\x2e\xb2\xf8\xe1\x15\x9d\x55\x55\xeb\x00\x7b\x6c\x3a\x9f\x06\xfa\xb8\x1f\x42\x19\x47\x3a\x14\xe5\xa1\xe6\x2b\x78\xa9\x0e\xa4\x70\xc5\x2e\xd5\x01\xe5\x75\x5f\xca\xbb\xa0\xe0\xee\x98\xb9\x8b\x35\xeb\xc8\xd2\x2d\x95\xad\xf3\xc2\x4a\xbb\x3d\x8a\x35\x9f\x0a\x9f\x92\x2f\x85\x4f\x49\x99\x82\xd2\x58\x03\x3d\x91\x72\x7c\xbe\x93\x97\xbb\xf4\x40\x22\x60\xf6\x7f\x77\xdc\x2a\xf2\x8d\xdf\x52\x19\x25\x65\xa7\x69\x22\x8d\x2a\xd7\xc9\x99\xaa\xb7\x44\xe7\x34\x2a\x92\x2d\x29\x7b\x78\x8c\x69\xe7\xf9\xfd\x75\x35\x96\x4a\x19\x40\xea\x28\x81\x94\xa3\x1d\x29\x8e\x08\xa8\x0b\xce\xd9\x25\xfa\x8c\x92\x42\x3b\x71\xe1\xce\x1d\x47\x0e\x62\x7f\xbf\x7d\x9d\x2a\x75\x9b\x1b\xa2\x17\xec\x9c\x9f\xba\x5a\xe6\x12\x68\xba\x6e\x3e\x35\x7e\x2c\x88\xec\x49\x17\xd4\xac\xe0\xa9\x3a\x6a\x20\x47\x0f\x70\x60\xe9\xc1\x96\xe3\x83\x9e\xd9\x4f\xcb\xe4\xf1\xc6\x4e\x0a\x6d\xf8\xc9\x92\xe8\x05\xd7\xfe\x29\x34\x0f\x46\xa0\x71\x68\x55\x29\x23\x9d\x2a\xae\x1e\x48\x81\x56\x47\x3d\x02\xed\xdf\x5f\x6d\x70\x48\x0e\x0b\xda\x17\xdc\x71\x38\x82\x3a\xea\xf1\xb0\x9f\xf0\xda\x02\xda\xad\x79\xa5\xa5\xa6\xd9\xcc\xa7\xfd\xfb\xeb\xca\x7c\x29\xf2\xaa\x54\xe4\x0b\x07\x5e\x95\x23\x90\x0f\xd4\x2b\x28\xc8\x38\xf7\xe9\x43\x33\x8b\xd8\x46\x62\x93\x0b\xa6\x37\x86\xad\x46\x48\x8e\xc3\x97\xe6\xaf\x60\xeb\x27\xfb\xa1\xbd\xe1\xfb\xca\x17\xdc\xd3\x21\x5c\x91\x56\x1d\xc2\x55\x4f\x64\xd9\xe1\x6b\xf3\xf0\x1f\xe5\x4b\x59\x34\x94\x5e\x44\xb6\x35\x85\x26\xdb\x3d\x85\x46\x97\x66\x6f\x2f\x3d\x73\xe0\xa0\xed\x2b\xd3\x65\x86\x98\x29\xc1\x06\x9a\x49\x90\x54\x3e\xd0\x0e\x79\xc9\xe5\x0a\x7a\xa4\x2a\x4b\x27\xbe\xaf\xc3\x91\x31\x44\x60\x7b\xd0\xc3\x6e\xce\xa9\xae\x77\x5d\x4a\x8c\xc4\x8a\xd2\x2a\xf5\x53\xd5\xa2\x7f\x4f\x55\x3b\x28\x32\xb7\xe6\x6b\xc8\x0a\xc3\x97\x98\xae\x3d\x7d\x6a\xd4\x67\x20\xc5\x49\x31\x12\x07\x6a\x5d\x47\xa0\x43\x35\x03\x69\x0a\xd8\x61\xc4\x69\xd1\xa1\x9f\x8e\xe1\x46\xf1\x02\x75\xf6\x9d\x29\xbc\x15\x6a\x0a\x34\x1c\x0b\xc6\x84\xdc\x7a\xbb\x77\x71\xf2\x1f\xf2\x6e\xbf\x15\x13\xe3\xa1\x43\xba\xf6\x96\x56\x75\x3c\xc0\x81\x6e\xdf\x19\xee\xa9\xa9\xdb\xad\x6c\xa8\x1b\x95\x2e\xa8\x9a\x40\x58\x0f\x07\x78\xc5\x0e\x7d\xfb\x76\x1c\x67\xd7\xed\x0b\x52\x28\x5b\x37\xe7\x5c\x0f\xa8\xac\x32\x35\x55\x1f\xdf\x5f\xe7\x06\x77\xbe\xc9\xd7\x4c\x99\xb3\x20\x5e\x1c\xfe\xb7\x63\x0f\x32\x1b\x4e\x43\x56\x53\x26\xb1\x29\xbc\x49\x69\x60\xea\xc8\x94\x4f\x3b\x93\x40\xdc\x81\xb7\x90\x83\xb3\xb7\x0c\x18\xd5\xc4\x0f\x76\xa5\x50\x36\x58\xd4\xd6\x69\x81\x86\xd9\x98\x96\x72\x99\x54\xc7\x6b\x0d\x14\x3f\xc7\x6b\x8d\x96\x56\xc4\x61\x5b\x5a\x11\xc1\x21\x4f\xe9\x91\x97\x52\x3e\x6d\xbe\x3c\x8a\x02\xa8\x93\x94\xdd\x31\x91\x6f\xa8\x6a\x71\x18\x62\x74\xb0\xd6\xd5\x52\x26\x06\x81\x8c\x3b\xa1\x05\x50\x43\x2e\x62\x6d\x14\xc8\xb5\x36\x19\xa8\x2a\xc6\x73\xb0\x93\xa7\x83\x61\x46\x20\x5d\xb7\xe8\x69\x87\x5d\x15\x70\x8a\xc6\x83\xaa\xc7\xd8\x81\x34\x46\x36\xa7\x53\xce\x5c\x2d\x90\x93\x8e\x04\x62\x15\xc1\xc6\x59\x83\x38\xc7\xf5\xbc\xcb\x11\xbf\x90\x5f\x77\x19\x9f\x66\x34\x53\x1c\x3e\x0e\xea\x1a\xf9\xce\xaa\xd4\x85\x40\xa2\x18\xaf\x3d\x76\x81\xc9\xa5\x1c\x44\x7e\x25\xa3\xa9\x83\xa3\x68\xda\xff\x96\xd9\xe0\x5d\x7a\x86\x88\xb6\x94\x95\x23\x38\x2b\x43\x76\xa6\xe8\x33\xed\x78\x1d\x3d\x2a\x27\xad\x39\x60\x15\x0f\xe8\x6f\x00\xc1\xd6\x02\x9a\xb7\x73\xa0\x28\xfe\xea\x38\xf6\xb4\x23\x92\x43\x3a\x72\xb2\x9b\xe0\xca\x3b\x31\xe7\x95\x0f\x7d\xaa\x23\xbd\x39\xfe\x6a\x30\x05\x0f\x74\x30\x68\xf7\x81\x41\x08\x72\x55\x90\x55\xd9\xd8\x3b\x0f\xdb\xb9\x2f\x44\xbd\x07\x16\x21\xb8\xc7\x83\x08\x96\x2b\xa5\xd2\x2b\x5a\xda\x95\xb5\x71\x67\xfd\x1e\x0e\xf7\xe6\x50\x55\x5c\x53\x1d\x2d\x50\x97\xb5\x88\x19\xb2\x5c\x1c\x6f\xcf\x03\x4b\x0e\x54\xf9\x90\xc0\xb2\x8d\x14\x9a\x7f\x97\x14\xbe\x65\x53\x60\x16\x88\x19\x81\x81\x3d\x90\x9a\x21\xfd\x07\xb6\x1b\x04\x86\x87\xd3\xaa\xc6\xa6\xa7\xf0\xa5\x63\x3b\x7a\x9a\x7a\xea\x1d\x27\xf0\xf5\x31\xd1\xd3\x90\x32\x9e\x02\x3d\xb1\xcf\xfc\x2d\xc6\x92\xa7\x53\xaa\x5c\x34\xfb\xec\x60\x74\x00\x0e\xf9\x67\x2e\x20\x6f\x15\x26\xe9\x49\x84\x2f\xf6\x8a\xa7\x4d\x7e\x20\xff\xb4\x74\x0c\xe3\x7c\x3a\x15\xc5\xd5\x52\xe8\xad\xe3\x55\x52\xf8\x52\x1d\x88\x5b\x3c\x08\x73\x21\x57\x3f\xfd\x26\x64\xc1\x46\xf1\x44\xf2\x28\xa9\x2c\x23\xcd\x07\x6a\x6b\x86\x6a\xa0\xee\xaa\xf9\xd2\x07\x0b\xfb\x95\xe0\xa6\x98\xc2\x9d\xce\xa7\xb1\x09\x1d\x85\x54\x63\xbd\xf4\xf3\x31\x7b\x2c\xda\x0a\x43\x2a\x91\x8c\x94\x97\xe7\x38\x38\x85\x9c\x96\x67\x8c\x94\xe9\x48\xf8\x94\xd9\x85\x98\x55\x0a\xdd\x30\x0b\x8a\x96\xbb\x38\x86\x9f\x88\xb6\x68\x87\x0a\x3d\x6a\x61\x60\x4f\x5f\xdf\x8c\x15\xf4\xc9\x35\x81\x91\x52\x1d\x19\x59\x41\x71\x90\xe8\x17\xc4\x25\xc5\xfa\xac\x48\xa4\x72\xc0\x24\xf4\xac\x4c\x29\x5b\x5a\xb5\x12\xde\xf2\xa5\x77\x6c\x4b\x5d\x1b\x63\x10\xeb\x9c\xd2\x27\x5c\xdb\x39\x7c\x46\x61\xdc\x8a\x2f\x3a\x1a\xeb\xfb\xe2\xb8\xa3\xdd\x17\xf1\x9d\x0c\x8d\x3c\x3d\x35\x0d\x79\x36\x53\x95\x5d\x38\x00\x95\x0b\x10\xe4\x5f\x96\x6d\x7b\xca\x44\x60\x10\xcd\x8b\xf8\x38\xb8\x82\xc3\x86\x4a\x09\xe4\x0d\xd0\x03\x9e\x9e\x21\x1a\xb2\xe0\x02\xab\x76\xdc\xd0\x67\x24\xa1\x28\xd0\xf3\xc5\xfe\x18\xa3\x9d\x6f\xa7\x5e\x69\xd6\x21\xa6\x2d\x0d\x19\x3f\x06\x2d\x37\xda\x40\xb8\xe6\xe1\x1a\xc4\x72\x45\x11\x1d\x83\x2d\xf7\xb2\x9c\xcb\x8e\x73\xfa\x9d\x3d\x36\xca\x97\xef\xab\x04\x57\x88\x16\x29\xc7\xf1\x46\x51\x4d\x14\x6e\x74\x44\x25\x56\xb8\x11\x2f\xb8\x2e\x48\xef\xd6\x9e\xe9\xdf\x24\x9c\xef\x44\x14\x1f\x6c\x4c\xc1\x6c\xb8\x97\xcd\x3f\x48\xa7\x04\x14\x9d\x81\x74\xc8\x85\x5c\x74\x8d\xb8\x65\xe2\x38\xc7\xd2\xff\xe2\x6c\xe7\x86\x90\xa7\x04\x3b\xe7\x06\xa6\x24\xd8\x89\xe5\x59\x01\x45\x2d\x87\x8a\x02\x8a\xce\x0d\xf6\xfe\xb6\xe5\x39\xa6\x66\xe5\xd4\x39\x37\x88\x9b\x78\xa2\xd8\x68\x15\x4f\x74\x6e\x5b\xaa\x5a\x22\x42\xcc\x53\xde\x9c\x72\xa2\x9d\x2a\x6d\x4e\xd9\x7a\x20\x2b\x4d\xf0\x35\x65\xd1\x39\x37\x94\xde\x37\x07\x17\x52\xe7\xdb\x69\x7d\x91\x0f\xdf\x4a\xce\x14\x0b\x2e\x89\x72\x10\x17\xde\xf8\x2a\xfa\xf6\x63\xfe\xfd\xc6\xda\xcc\x02\x39\x16\x69\x67\x7f\xeb\x29\x9c\x73\xc3\x0c\xf0\x76\x2c\x48\x9c\x15\x8a\x3d\x3a\xb7\x2d\x1f\x6a\x73\xd5\x4c\xb4\xb4\xa4\x92\x8d\xa8\xa4\x37\x1f\x23\xe5\x9b\x43\x8d\xed\xf5\x46\x64\x46\xc1\x7a\x93\x93\x29\x90\x3c\x85\x6c\x03\x45\x17\x9d\x5b\xe6\x52\xb1\xbb\x25\xb6\x69\x45\x17\x15\x4c\xcc\x63\xf3\x82\xed\x81\x7c\x34\xf6\x80\xde\x6b\x26\xd2\xa1\x88\xa1\x03\x0f\xf6\x50\x88\xd0\xb9\xd9\x1c\x3d\x36\x36\xbf\x59\xfb\x70\xfa\x98\x81\x48\x3b\x14\x24\x74\x62\xe2\x1a\x8a\x11\x6a\xbe\x2b\xb6\x20\x23\x3b\x80\x9a\x6a\x5e\x40\xdd\xcd\x04\x94\x74\xd3\x03\xf9\xb4\x1b\xf4\xe1\x6c\x46\x4e\x86\xba\x40\x1b\x30\x3b\xd8\xda\x07\xe0\x6c\xa8\x0b\xb4\x84\x30\x68\xea\xf6\x2c\xa4\x6e\x17\x94\x86\xcc\x7f\x46\x40\x56\x10\x7c\x15\xf4\xea\x8b\x90\x0b\x7a\x4a\x1d\x4b\x3b\x8e\xb1\x1c\xf4\xe9\x58\x6c\x2c\xc7\x43\x6f\xd4\x9c\x0e\x9e\x5d\x90\x4e\x97\xfa\x01\x8d\x10\xcd\xfa\x2a\xc1\xc1\xf4\xd9\x70\x52\xb3\x66\x93\x4c\x33\x40\x8e\x1c\x60\xaa\x77\xbf\x3c\x66\x2a\x19\x3b\xc2\xe2\x99\x42\xb1\x80\x23\x90\xad\x92\x56\x89\x87\x33\xaf\xa0\x84\x0d\xa2\x6b\xea\x9e\x42\xd3\xa2\x4d\xb0\xc3\xd1\x36\xa4\x60\x5d\xa0\x5e\x97\xd9\x02\xd9\x1b\x36\xc0\x01\xd7\xb4\xb9\xd2\xd8\x31\x46\x9c\x01\x9f\xf6\x2d\x6e\x80\x8c\x86\xa6\xec\x31\xb4\x10\x3a\x9c\x8b\x25\x51\x57\x63\xbf\xc1\x09\x8c\x6f\x13\x12\xbd\x2a\x9c\xc1\xc9\x79\x16\xe4\x53\xb6\x07\x7c\x3b\x74\x87\x5e\x6c\x80\xf0\x0d\xee\x05\x9a\x72\x76\x30\xf4\xca\x1c\x29\xd4\xad\xa0\x8d\x29\x8c\xb9\x1d\x14\xa6\x9e\x04\xcd\x9c\x11\x17\xdf\x53\xc8\x48\xfd\xa9\x5f\x91\x21\x78\x65\x1c\x70\xd5\x33\x60\x73\xdd\x02\x28\xfa\x3c\x52\xc8\xba\x79\xa4\xce\xa9\x32\x2a\x3b\xe8\xf0\x3d\xe2\xc6\x62\x90\x55\xa5\xa5\xae\xb6\xa5\xf9\xe1\x50\x30\xcb\xb9\x1d\xa9\x29\x7b\xc5\xe7\x3b\x53\x8e\x95\x90\x71\x38\x4a\xea\x4a\x33\xce\x2a\x05\x76\x16\xff\x89\x4d\x1b\x07\xab\x64\x75\x76\x1c\xac\xd2\xc5\xb0\xe5\x5b\xd9\xf7\xd4\x35\x06\xa0\xce\xd1\x7a\xd1\xae\xa3\x06\xb0\x0b\x8d\xc3\x7c\xd5\x7a\xcf\x38\xfc\x90\xc3\xf9\xc3\xfc\x26\xab\xaa\xc3\xa2\xa1\x0c\x65\x63\x29\xce\x81\xb6\x20\x1f\x4a\x20\xab\x47\xe1\x5b\xa6\x52\x76\xfa\xc6\x0e\x75\x66\x96\x81\x4d\x72\x1c\x56\x2a\xd8\x2e\x8a\x41\x39\xb7\x02\xaa\x53\x86\x90\x83\x0e\x31\x44\x59\x56\x1c\x7e\x7f\x06\xe6\x3c\x14\x82\x72\x6e\x16\x81\x47\x21\xe3\xac\xc5\x99\xa1\x08\x94\x93\x50\xb9\xa1\x98\x93\x13\x1f\xda\x28\xf6\xe3\xa2\xfc\x0f\xde\x9b\xf1\x85\xd7\x05\xea\x66\x77\x4f\xa1\x22\x3e\xac\x06\x8e\x64\x5f\x81\x26\xca\x60\xbd\x1a\xa0\x11\xa2\x1d\x1b\x1c\xd2\x89\x0d\x0e\x68\x7a\xa3\x0c\xa8\x34\x0d\x89\x4a\x0b\xc3\x5c\xe4\x74\x6e\x85\x3e\x95\x38\xc9\x77\xbc\x16\x24\x32\xe4\x5c\x29\x36\x2b\x36\xd8\x5b\x41\x49\x18\xf9\xd2\x44\xc1\x1c\x78\x93\x17\x10\xb0\xd8\x74\xa4\xcc\x6c\xf2\x48\x3b\x3a\xae\x2c\xd2\x0c\x45\x99\xac\x42\xea\x2e\x3d\xe0\xdc\x0a\x63\x9e\x1a\x33\x7b\xb1\x98\x4f\xd7\x94\x79\x67\x66\xf2\xcc\x0d\x2a\x13\xe2\x07\xca\x4f\xce\x56\x05\x96\x9c\x5b\x46\xc9\xfe\xcf\x4a\x2f\x32\x38\x11\xdc\x46\x11\x13\x3f\x83\xab\x93\x12\x37\x98\x78\xb5\x70\xc6\x29\x5c\x11\xce\x6c\xd7\x1a\x15\x41\xdf\xc2\xea\xa8\xa6\x11\x18\xb3\x03\x42\x5a\x83\x7f\x56\xd8\xb6\x25\xb9\xc1\x73\x30\x6d\x0f\x68\x8b\xf2\x48\x65\xad\x1f\x67\x85\x63\x40\xc8\x03\xbc\xc0\xe9\xf9\xa3\xd7\x21\x0a\x3f\x03\x69\x68\x9f\x66\x5f\xee\xa5\x01\x9a\xa5\xc3\x66\x14\xe8\xd1\x88\x2a\x1d\xd5\x94\x00\x47\x57\xba\x96\x73\xe3\x68\xa8\xac\x7c\x4b\xa1\x79\x6d\x67\x56\x6e\xcd\x75\xf0\xb9\xb5\xff\x38\x0a\x2a\x86\xc8\xb4\xf3\x32\x02\x01\x75\x0d\x2d\xc8\x4e\x26\x97\x2f\x2d\x82\x35\x84\x9c\xea\xd5\x86\x3b\x28\x06\xe4\xdc\x60\x89\x7a\xba\xe5\xdc\x20\x4c\x9e\x6e\x41\x6e\xa9\x98\x30\x5b\x9a\xd1\xe4\x8d\x54\x5d\xdc\xf3\xfa\x34\xf3\x96\x4b\xcb\xe3\xe0\x19\x17\xb4\xe9\xe1\x67\x5c\x5a\x83\x75\x9d\x3c\x55\x7e\x00\x41\x7c\x17\xa0\xf1\xa9\x40\xc3\x83\x4e\xa1\x56\x88\x3d\x7e\xc2\x0f\xd2\x89\x04\x71\xd6\xe7\xc4\x7d\x81\x5c\xe7\x77\x5d\x72\xc6\xf2\xae\xcb\x85\x8c\x75\x42\x4f\xb0\xc4\xd3\xe7\x09\xcc\xe2\xb4\x98\x07\xd7\xf3\xc3\x2e\x85\x8d\x7b\x9a\xd4\xae\x1f\x26\x37\x59\x55\x25\x8d\xc1\x63\x4e\x53\x5a\x4b\x87\x92\x67\xae\x94\xf9\x5c\x44\x28\x39\x11\x0f\x39\x30\x14\x2f\xc2\x6d\x98\x05\x69\x9e\xa1\xa5\x53\xd7\xa1\x0e\xf6\xff\xc9\x15\x92\x91\x0f\xa7\x07\xc9\x6c\x89\xe7\x10\x31\x3d\x4e\x3f\x22\x05\xb9\x9c\xe6\x23\x99\x57\xf9\xcd\xd0\xa9\x86\x42\x3b\xca\x0e\x81\x28\x98\xa3\x10\xc0\x3e\x4e\x93\x52\x63\xca\x1d\x4d\xd4\xb2\xcc\x1c\x1f\xc8\x4f\xce\x4c\x53\x71\x2d\x8f\x0b\x0a\x01\x9f\xab\xc3\x3c\x07\xa0\xba\x81\xf0\x94\x8c\xa6\x62\x57\x1f\x97\x0e\x90\x9c\x1f\x57\xa7\xd3\x0a\xe8\xab\x5d\xe9\x44\x87\x64\x3e\x94\xaa\x56\xe1\x72\x8a\xe5\x28\x11\x96\x2e\xc4\x46\x44\x95\xcb\x6f\x9a\xd6\x23\x75\x75\xe7\x1c\x5a\xbf\x30\x24\x71\x48\xf9\x05\x16\x2c\xbd\x43\x99\x67\xce\xad\xa5\x6c\x09\x8d\x65\x0b\x02\x8e\x67\x64\x93\x28\x98\xe3\xdc\xf2\x21\xae\xd6\x1e\xd0\xae\x26\xda\x41\x18\xe9\xa0\xe7\x93\xa7\xd2\xac\xf5\x7c\x64\xf9\x0b\xee\x83\x24\xed\xc7\x5b\xb6\xe3\x03\x1a\xbd\xb4\x23\x99\x36\xd3\x2c\xf5\x7d\x64\x7e\x10\x30\x46\x3a\x31\xf7\x01\xbb\xe9\x87\x21\x02\x99\xf9\xc0\xa8\x2e\xf4\x3f\x0e\x97\x0b\xb1\x94\x13\xf5\xb2\xc9\x33\x12\xee\x65\xde\xc4\x99\xee\xa8\x90\xd6\x8e\x34\xac\xd4\x56\x57\x1a\x92\x0b\x65\x4b\x2f\xbe\x20\xc1\x48\x9c\x15\xa9\x96\x54\xf5\x71\xc2\x72\xea\x9d\x97\x73\x83\x35\x10\x31\x72\xb1\x2a\x8a\x18\x39\xb7\x1e\x48\xac\x1c\x46\xd1\x74\x09\x09\x47\xc9\x68\x56\x41\x59\x3e\xbf\x00\x33\x6a\x49\xab\xc3\x5d\xa6\xae\x4c\x1a\x7b\x20\x31\x76\x76\xb8\xf2\xe9\xac\x2f\xd3\x89\x82\xde\x91\xc1\x1a\x62\xf1\x07\xd4\xd6\x64\x13\x35\x18\x17\x73\xd9\x7c\xa9\xed\x62\x01\x9d\x51\x27\x02\x48\x83\x4c\x39\x6f\x95\x50\xe7\xc4\x50\x31\x9a\xc9\x14\x12\xe6\xcd\x97\x8a\x08\xe4\xe8\x92\x08\x07\x0a\x2e\xd9\x4b\xb4\x0c\x45\x97\x94\x23\x43\xf1\x4b\xda\x99\x03\xa7\x47\x82\xcb\x35\x5b\x42\x33\x05\x32\xa1\xb7\xf4\x2f\xca\xcb\xb1\xd3\x24\x01\xed\xd0\x73\x73\xd4\xf6\x95\x0e\x2d\xf2\x64\x54\x93\xc5\xa3\x47\xa7\x37\x68\x41\xc0\x37\x7c\x91\x22\x9a\x85\xdb\x11\xe8\xe1\xaa\x7f\x83\xe8\xdd\x9d\xc6\x19\xc6\xd6\x6d\xbf\x64\x22\xbb\xe9\xe5\x03\xb1\x22\x15\x50\x69\x82\x90\x5b\x9c\xfb\x06\x1f\xe4\xe8\x8e\xb6\x6e\x25\x85\x7a\xda\xbc\xe5\x43\x89\x05\x23\x3d\xda\x96\xd9\x80\xcc\x49\x61\x8e\x0a\x2d\x29\x0d\x5e\xd0\x45\x3d\x5b\x9a\x91\x79\x3c\x6a\x93\xc2\x47\x8e\xeb\x53\x26\xd3\x0b\x7c\xa2\x9b\x76\xa2\xd6\x75\x0b\x46\xe9\xc2\x97\x1c\xa3\xc7\xf9\x91\x98\x2d\x3a\x96\x62\x44\x0e\x2c\x69\x43\x31\x22\xfb\x01\x2f\xe8\x76\xc4\x37\x14\x83\xc4\x88\xb0\x9f\xba\xf9\x58\x94\xbc\xee\x57\xa7\x5a\x3e\x3d\x95\x4c\x10\x14\x6e\xf0\x4b\x2f\x4d\x69\x61\xc0\x96\xf7\x64\xd2\xc9\x70\xd5\x80\x3e\x12\x4a\x9a\x75\x9c\x6d\x4f\x9f\x0f\x13\x50\x30\x7a\x6a\xa6\x99\xcc\xdb\x02\x46\xfa\xd4\x38\xb3\x5e\xd3\xea\x47\x0f\xb8\x7f\x7f\xf5\x92\xb5\x9d\xbe\x4e\xdf\x03\x8a\x8b\x70\xd6\x75\xdf\x02\x88\xfa\xd1\x27\xe8\x82\x1f\x19\x4e\xe1\x4e\x8a\x3d\x69\x17\xec\xc8\x0f\xdc\x8c\x4f\x9f\xeb\xc4\xd8\x61\x31\x8e\x35\xf9\x88\x18\x0a\x36\x39\x77\xc6\xe5\x60\x93\x03\xa1\xd8\xb1\x26\xd8\xbf\x87\x42\x4d\xce\x9d\xfd\x35\xfc\xda\x63\x43\xc4\x19\xbe\xd6\x12\xed\x51\xa1\x26\x0b\xbb\x06\x38\xf4\x69\x9a\xbd\x5d\x37\x2d\x29\xc7\xef\x99\x86\x98\xe8\x74\x6a\xe9\xba\xa6\x5d\x0d\x05\x1e\x3c\x50\xfe\x0b\x43\x41\xf9\x67\x28\x43\x21\xcc\x2d\x65\x8e\xc9\x47\xe5\x18\x43\xbb\xa8\xa7\x1d\x6b\x93\x50\xd4\x90\xd4\xb5\x43\x42\x8a\x1f\x39\x63\xed\x51\x02\xa0\x73\xcf\xe4\xf9\xf4\x8d\x09\xc4\xe1\x24\xbc\x3c\xb1\xc0\xc5\x84\xf7\x4c\x89\xd3\xe7\xee\x99\xb0\xdb\xb3\x79\x01\x79\x93\xa5\xec\xd2\x7d\xd7\x7c\xa8\x98\x90\x92\x3e\x4c\xa6\x6c\xa3\xe1\x9c\xcd\x44\x07\x0d\xe2\x50\x32\x21\x32\xd0\x71\x9f\x6a\x28\xaf\xd0\xb9\x67\xd6\xa7\x22\xc6\x20\x9f\x81\xf0\x06\x36\x56\x02\xa3\x56\x0d\xa7\x8d\xe1\x38\x1b\xd0\xe1\x9e\xba\x7a\xde\x0f\xf1\x9e\x10\x95\x86\x6c\x39\x7c\xbd\x20\xba\xd1\xc8\x71\x9b\x4f\xdf\x2e\xf5\x50\x1c\x96\xf2\xd1\x9a\x6f\xbb\x1f\x39\xd3\x15\x97\x72\xee\x2c\xdf\x6d\x52\x04\x05\xe5\x0f\xe2\xad\xe5\x05\x75\x95\x15\x20\x51\xde\xfe\xe3\xdb\x3a\xe3\xe6\xc2\x28\x07\x98\x52\x0d\x9d\x3b\x73\xe0\x80\x96\x86\x3f\x63\xdc\x4e\x26\x8e\x90\x7c\x3b\xca\xa9\x9d\x01\x75\xba\x7d\xaa\xea\x05\xcc\x2b\x65\xc6\x8e\x51\x41\x86\xe0\x6a\xba\x43\x36\xb9\x2d\xdf\x47\x10\xbf\x6d\x1b\x84\x1d\x29\x0f\x51\x89\xfd\xf4\xf6\xad\x28\x62\xb0\x86\x62\x58\x6a\xcc\x5e\xb7\xe3\xe2\x38\x78\x6e\xc7\x2d\xb5\x33\xa0\x94\x33\x44\x54\x1e\x37\x6a\x68\xd7\xb7\xaf\xa3\xc0\x45\xc8\x2c\x54\xa1\xad\x5b\x8e\x99\x48\x6b\x37\x14\x83\x10\xaf\x64\x42\xe7\x1e\x0c\xa6\xd6\x00\x79\x5a\x01\x2e\x6b\x9a\x53\xf5\xa1\xc2\x60\xa0\x49\xff\x34\xf3\x16\x02\x5e\xe6\xe9\xfc\x52\x15\x56\x30\xcd\xb8\x90\x13\xfe\x5f\xc6\xce\xe5\xea\x62\x54\x57\xc2\xa9\x9c\x10\xb6\x8d\x79\x4d\x3a\x17\xd8\x8f\xfc\x43\xb8\xcb\x55\x5f\xb9\xef\xec\xef\xa1\x16\x18\x30\x08\x49\x88\x42\xda\xe6\x08\x58\xdd\x21\x89\x0a\xf7\x8a\x73\xfb\xf9\x52\x4d\xe1\xf0\x6c\x1d\x90\x1e\x5d\x28\x73\x2c\x43\x07\xd6\x12\xb3\x73\x0f\xb2\x8a\x51\xd9\xd7\xc8\xe1\x51\x21\x52\xea\x91\xba\x02\x9d\xc4\x03\x23\xd0\x49\x3d\x9e\x9a\xcc\x41\x81\x54\xc4\xad\x87\x92\xc7\x0e\xf5\xbb\xc3\x06\xe6\x0a\x61\x50\xea\xf1\x50\xea\x11\xbb\x6e\x3b\xa0\x20\x40\xfc\xa9\xcc\x46\x15\x2c\xc2\x24\xb2\x50\x0c\x4d\x00\x2a\x80\xe4\xe6\xb6\xd9\x1e\x0b\x71\x5b\x54\xa0\x36\xb7\x0d\xf5\xa7\xac\x48\x71\x33\x02\x9b\xe9\xb8\x4d\x04\x42\xa9\x07\xa2\x4a\xb0\x93\x7a\x60\xe3\x28\xd2\xd0\x99\xf3\xa9\x82\x09\x9d\xb1\x46\xb6\x63\x32\x8f\x94\x6d\xe9\x48\x46\x2a\x98\x5b\x79\xda\x94\xa7\xaf\x66\x64\x4a\x78\xcc\xbe\x13\x58\xe5\x04\x14\x38\xdf\xd6\x73\x28\xb6\xf7\x80\xb5\x27\x64\xf9\xe7\x7f\x17\xaf\xe6\xe6\xdb\xc7\x48\xb0\x73\xd3\x60\x95\xa3\x97\x94\x0a\x78\x8c\x84\x7b\xfb\xbd\x52\x4b\xd5\xad\xa3\x46\xba\xfc\x28\xe0\xc2\x80\x92\x55\x30\x42\x49\x71\x60\x15\xbc\x91\x18\x69\xd4\x21\xaa\x1a\xfb\xf9\x4d\x22\x97\x0e\x25\xf0\xd8\xf3\xa5\x97\xbc\x41\x75\x05\x3d\x62\x34\x76\x1e\xf4\x0c\x47\x49\xd0\x62\xe6\xbf\x7d\x13\x11\x5b\xe8\xed\x10\x86\x47\x5a\xd5\xbe\x2b\xe9\x51\xef\x98\xf2\x21\x4a\x8e\x15\x70\x62\xa8\x23\xa6\xab\x33\x43\x4d\x87\xcc\xbd\x49\x5d\x18\xe4\x47\x9c\xcd\x31\x7f\x29\x27\x76\x74\x83\xb3\x46\x45\x62\x3c\xf0\x17\x28\x0d\xe7\xfa\xfb\x71\xfc\x4c\xc8\x1f\x46\x4e\x3c\xf1\xfc\x96\x84\x54\x0c\x8d\x37\x77\x50\x48\x3b\xc1\x66\xea\xf1\x50\x62\x56\x34\xe0\xdb\x02\xec\x4a\x33\x4b\xf7\x96\xf0\x8e\xc3\xa7\xb0\x01\x1c\xe2\xe7\x88\x79\xfe\xb6\xad\xc5\x6c\x7c\x2c\xa3\xf0\x89\x28\x2f\xd5\x51\xc2\xae\x1f\x5f\x82\xc4\xe6\x15\x66\xa6\x66\xd1\x3f\xbc\x38\x67\x63\x7d\x22\xb3\x52\x57\xce\x0c\x84\xe6\x07\x93\xe9\xc8\xa7\x16\xf1\x2d\x9f\xea\xf9\xcb\x95\x4e\xf5\x84\x2e\x65\xf6\x7e\x21\x4d\x14\xf1\xe7\x1c\x19\xed\xcd\x93\xcf\xed\xe3\x87\x23\x24\x86\xeb\x07\x4f\xc7\x53\xb7\xd9\x5d\xc0\x6f\xeb\xd0\x78\xa0\x00\x05\x8a\x29\xcf\x24\x70\x03\xc6\x21\xe5\x63\xc6\xbb\x32\x02\x3f\xe4\xa6\xcc\xb2\x0e\x7b\x40\xd1\x80\x4e\x1e\xd7\x4d\x45\x03\x2a\x23\xbf\xec\xec\x03\x4f\x99\x30\x9c\x1c\xfd\x14\xd2\xa7\x1e\x35\x35\xd9\x05\x21\xe5\x44\xc7\xa7\xf8\x71\x82\xec\xb8\x23\x15\xd4\xa7\x14\x14\xde\xc7\x32\x11\x25\x22\x64\x4d\x39\x7a\x28\x1d\xb7\x51\x86\x0a\xe9\x53\x5f\x99\x39\x07\xe9\xed\x3d\x85\xba\x3e\xcf\x72\x38\x0c\x55\x3c\x6a\x82\xd9\x94\x72\xe6\x4b\xdb\x76\x47\x06\x20\x4d\x89\xf3\xf8\xe3\x94\xb4\x1c\x9a\x05\xa4\x29\xb9\x14\xfb\x46\x53\x56\x48\x47\x77\x9e\x29\xb5\xd6\xc2\x10\x55\x6c\x9e\x9a\x1b\x87\xaf\x63\x31\xd2\xec\xd7\xba\x11\xf1\xa2\xf0\x3b\xf5\x40\x84\x0a\x38\x53\x09\x93\x31\xc9\x53\x15\x53\xfc\x1b\x45\x49\x97\x7e\xc8\xc0\x01\xe9\xeb\x70\x7d\xb9\x4c\xfa\x22\x0b\xb1\xdb\x93\xd4\x6a\xa6\xd4\x81\x3d\x69\x97\xe3\x27\x36\x80\xe3\xf1\x44\xfb\x7c\x89\xb0\xc1\xf9\xc9\x69\xac\x8e\xce\x54\x3b\x8f\x55\xa4\xd8\x37\x1a\x38\xed\xca\x49\x54\x33\x5c\x39\x89\x30\x58\x1c\x9d\x27\xce\x2f\xe1\x6a\x6a\xcc\x39\xe3\x6a\xb2\x42\x5f\x2e\xe1\xaf\x54\xd5\x8e\x6e\x69\xc6\x73\xc9\x58\x9d\x9f\x94\x1d\xfc\xc5\x77\x91\x1e\x37\x13\x44\xb3\x38\x2f\x30\x51\x14\x71\xa7\x1e\x6c\x20\x01\x64\x6a\x36\xf4\x17\x11\x57\xd3\x90\x93\x57\xa5\xaa\x44\x5c\x4b\x9f\x12\x71\x2d\x7d\x68\x74\x59\x21\x69\xe0\x6b\xa6\x43\x9b\xed\xc8\x2d\x92\x55\x61\xad\x18\x4b\xc3\x43\xf1\xe9\x5c\x55\x47\xff\x3b\x91\xce\x5d\xd7\xf7\xd0\x9c\xba\x84\xbb\x29\x71\xdf\x80\xbb\xc9\x31\xc7\xb8\x9b\xe3\xa9\x6a\x97\x08\x4b\xf2\x1b\x2c\x74\xc6\xa0\x18\x5e\x3d\x94\x04\xcc\x43\x69\x4b\x23\xc5\x8c\xc2\x89\xab\xcb\x28\x9c\x8a\xf0\xf9\x85\x2b\x27\xa4\xd0\x67\xe8\x15\xe5\xb2\x3a\x4b\xfa\x77\xa0\x97\x88\x63\x25\xaf\x2a\xb9\xd6\xf9\xf9\x62\x09\x60\xf0\x04\xb0\xd3\x42\xf9\xb8\xc4\x39\xf4\x87\x8a\xbe\x32\x04\x9d\x07\xb0\x67\x7e\x96\x94\x88\x91\x9f\xaf\x9d\xa3\x4c\x7f\x3e\x6a\xb2\x85\x7e\x3e\x5b\xb2\x89\x7f\xb8\x44\xe0\x26\x25\xb0\xaa\x47\xc6\x6e\xae\x6c\xa1\xb4\xa7\x33\x3d\xd6\xc2\xc8\x38\xe5\xa8\xaa\x47\x46\x1e\x8e\xe5\x2f\xa5\x85\x83\x5c\x21\x52\x50\x0e\x4b\x42\xf6\x94\xe8\x15\x67\xac\x3a\x67\xca\x88\xcf\x0e\xe5\xa1\x86\xd3\x1c\x95\x8f\x27\xf0\xf3\xb7\x99\x4a\x26\x44\xf0\x83\x38\x40\x15\x45\xe8\x7c\x3d\xcd\xea\xaa\x94\x77\x95\x53\xf9\xac\x4a\x24\xc1\xcf\x81\x3d\x2c\x52\xd6\xcb\x37\x0c\xdc\xe3\x2c\x25\xb4\x2a\x5c\x46\x2e\x25\xb4\x2a\xa7\xfb\x58\xca\x67\x75\x9c\x35\x1f\x56\xb9\x5c\xba\x29\x0e\x88\x9d\x66\xe0\x17\x9a\xe1\xa0\x60\xb3\x75\x39\x67\x14\x88\xae\xe5\x38\x41\x8e\x46\x76\x53\xe6\x6d\x9f\xba\xd6\x0b\x21\x66\x11\xbc\x5e\xbe\x0b\xe0\x85\xea\x7a\x99\x27\x46\x7a\xb1\xfb\x7a\x30\x04\xc7\x11\x9b\x8c\xcf\x78\xa1\x49\x9f\x7e\x58\xc5\x49\x6f\x39\x6a\xcf\xbc\x32\x3e\x33\xc5\x08\x25\x44\xf6\xa4\x13\x5d\x05\x1c\x23\xed\xd8\xf4\x38\xd3\xa5\x95\x7b\xe6\xc4\x0f\x01\x79\xb5\xbc\x94\x07\xaa\x1e\xf9\x33\x60\x28\x83\xd9\x14\x5b\x60\xaa\xad\x57\xc2\x91\x43\x4d\x39\x2b\xe9\x04\x1f\x43\x06\x94\x64\x3e\x50\xb2\x23\x9f\x66\xec\x3d\x9a\x21\x19\x8f\x1b\x52\x70\xa0\x7a\xf8\xf4\xbd\x14\x1b\xe8\x20\x16\xc4\x12\xb0\xe8\x20\x20\xc7\x52\x6c\xa0\x82\x74\x5c\xc7\x90\xff\x71\x86\xb2\x23\x8c\xf5\x3b\x2c\xa9\x46\x9a\x11\x1e\xbc\xa5\xcc\xf6\xf9\x4c\x8f\xf6\x83\x59\x3c\x2f\x62\x03\x39\x28\xdc\x4d\x6a\xf7\x8f\x50\x5e\x69\x46\x6e\x66\x2b\xb4\x63\x37\x58\xbe\x9b\x3a\xb5\x67\x38\xd3\x2f\xc5\x07\x94\x00\x17\x85\x0e\xc1\x37\xe4\x47\xc0\x37\xcc\x3f\xb3\xc8\xdf\x75\xed\x4e\xab\x69\xd7\x0c\x33\xa1\x6c\xb7\x9c\x21\x89\x38\x06\xf5\xd1\x56\x0c\xa5\x15\xc9\x6c\xe9\x7a\xfc\x60\x61\x85\x70\x2a\xd7\x43\xb1\xea\xf4\xb8\x58\x59\xfa\x40\x45\x16\x2a\x4b\x29\x9e\x2f\xe6\x60\xfb\x78\x57\xe8\xc5\x4a\xf1\xa1\x24\x0e\x67\x28\x6f\xb7\x2c\x98\x0c\x7f\x72\xff\xdd\xa4\xcf\xd0\x8d\xc1\xfb\x6a\xc0\x51\xea\x6e\xf2\xab\x4e\x19\xa0\x0f\x02\x2c\x83\x82\x07\x15\x5e\x09\x2c\x05\x0f\xba\x3f\x3c\x20\xfd\xdb\x13\xca\xce\x1c\x16\x57\x50\xa9\x52\xae\x14\x36\x6f\xd4\x14\x7a\x19\x2c\x94\x97\xa2\x00\x55\x27\xa3\xbf\xa9\xaf\xe4\x63\x83\xf2\x78\xa8\x69\x06\x02\xd8\xb5\x4e\xfb\xff\xaf\x14\x4a\x7d\x4c\x3e\x74\x2c\x75\x87\x9e\xbb\x49\xdf\x0c\x76\x06\xa4\x1b\xa1\x83\x55\x39\x27\x33\x12\x52\x2c\x8c\x04\x3a\xed\x3a\x85\xf9\x15\xf4\xa7\x9e\x2f\xba\x44\x9d\xd9\x8c\x59\x8e\x01\xc4\x8d\xfd\x22\x87\xd5\xcc\x60\x17\xcb\x99\x4f\x95\xce\xf9\x4a\xa1\x00\xca\x48\x03\x61\xaa\xca\x7c\xca\x58\x5c\x7e\x6c\x79\x74\xe9\xd2\x06\x6c\x63\xb0\xcb\x31\x71\x69\xc7\xda\xee\xc5\x3f\x4b\xd9\x71\x03\xbb\xce\xb0\x1e\xed\xd8\x3a\x1b\x29\x94\xf1\x3f\x90\x47\x0a\xfa\x53\xcf\x4c\xa5\x8d\xff\xfc\xa5\x2c\xb0\x33\x3c\x21\x6c\xcd\xf9\x4a\xa3\xdb\xcd\xf0\x23\xc4\xfc\xf1\x7f\x14\xdb\x51\xc4\x1e\x58\x06\x55\x81\x72\x59\xc5\xd2\x89\x83\xd2\x52\x58\x9f\x7a\x32\x56\x05\xf2\x19\xc4\xfc\x58\x82\x58\x95\x3e\x43\x69\x00\x28\x30\xc7\xf8\x01\x84\xb3\x8a\x25\x15\xa1\x1a\x56\x31\xdb\x3d\x5d\xc8\x69\x07\xf7\x18\x7d\x45\x16\xcc\x9b\x64\x9d\xf9\x52\x18\xfa\x96\xb1\x1a\xbe\xe3\xb0\xc8\x37\xa9\x4d\x9c\x4e\x84\xb6\xc0\x26\x5f\xc5\x58\x9e\x48\x32\x41\xb3\xaa\xe3\x72\xde\x94\x92\x72\x32\x59\x04\x12\x22\x02\xc6\x72\x20\xa1\xf9\xb4\xf3\xd3\x4c\xd2\x8c\x79\x12\x61\xa9\x70\x40\x15\xe4\xcc\x32\x88\xeb\x3c\x43\xa9\xc3\xb4\xe9\xb0\x08\xbc\x87\x58\xc5\x6f\xc1\x1c\xc0\xf8\x26\x8d\x25\x42\xd7\x1a\xc5\xd5\x41\xbb\x2e\xc3\xb8\xc8\xe7\x79\x93\x8e\x25\x12\xea\xa7\x4e\xa1\x64\x56\x01\x28\x5f\x25\xa6\x3e\x23\xc2\x74\xea\x7f\xdf\x53\x2e\xe3\xb8\x3a\xa8\x8e\x55\xcc\x79\x67\xda\x95\xb3\xe3\xe9\x13\xce\x4b\x55\xeb\x7b\x76\x54\xb1\xb6\x75\xd0\xe2\xb6\x1c\x2f\x88\xeb\xe1\x25\x20\x57\x3d\xd9\x34\x17\x5c\x7a\xa6\xaa\x16\x97\x11\x08\xd5\x75\xc4\x8e\xb9\xb8\x4b\x42\xdd\x5e\x83\xd1\x86\xf4\xea\x1e\x50\xde\xd3\x3d\x7d\x2e\x8b\x8a\xb4\x2b\x8f\x13\x86\x8c\xa2\x09\xd5\xf3\x48\x55\x3f\xca\x0b\x75\x5b\x88\x60\xf4\x96\x70\x65\xf5\x7c\x51\x66\x2f\x09\x07\x95\x75\x19\xad\xdf\x52\x57\x57\xed\x27\xcb\x79\xe1\xc9\x43\x94\x5e\x9c\x57\x11\xfc\x97\x9f\xac\x12\xd1\x6d\x5d\x7e\x97\x98\x29\x91\x8b\xf8\x2c\x69\x48\x4a\x74\xa4\x4f\xa7\xd4\x87\x32\x67\x22\x00\x05\x31\xab\xc0\x53\x97\x21\x66\x67\x09\xe5\x5d\x43\x7f\x3a\x90\xf2\x0a\x6f\x5d\xce\x5d\x8b\xca\x34\xc0\xec\x44\x2b\x2a\x90\x50\x05\x22\xb4\xae\xe4\x5d\x64\x29\xb9\x09\xc0\x6e\x51\x5c\xa1\x72\x96\xd4\xb5\x74\xbe\x58\x2d\x39\xd9\x9c\xb1\xee\xa6\xb0\x33\x53\x57\x8c\x97\xb9\xc2\xdd\x71\x31\x58\x01\x08\xcf\x87\x92\x3c\xf6\x59\x7a\x55\x07\x82\x27\xa4\xca\x22\x3c\x10\xc7\xa8\x45\x78\x20\xc2\x2a\x2e\x63\xc3\x1a\xa1\x52\x96\x42\x00\x15\x9c\xe4\xab\xe2\xb7\xc0\x02\x51\xf0\x9e\x52\xd3\x8d\x25\xd0\x95\x32\x05\x31\x66\xec\x95\x43\x1f\xbb\x51\xb8\xad\x7a\x3e\x94\x1f\xbf\x14\x28\x04\x00\xe3\xd1\x9d\x79\xe6\xcb\x10\x2f\xde\x54\x2e\x43\xbc\x08\x5e\xb4\xaa\xd3\xfd\xa1\x20\xaa\x57\x1d\x4b\xa0\x1a\x62\x8a\x20\x75\x40\xa0\x2b\x47\x0a\x47\x04\x6a\x04\x5f\x59\x15\x1f\x6d\x7e\x8b\x03\x21\xdb\x42\x31\x81\x46\x4e\x06\xd5\xcf\x01\x88\xec\xb8\xaa\xd9\x22\x7f\x22\xe3\xff\xbc\x52\x66\x49\x56\x32\x3e\x27\x88\x4d\x3b\xfa\x93\x2b\x1f\x2a\x2d\xd0\x33\x02\x74\x66\xfe\x45\x07\xc4\x92\xbf\xb6\xf1\x06\x03\x55\x03\x7f\xd2\x87\xac\xb5\x13\xb1\x6f\x20\xd9\x59\xd2\x8a\x96\x80\x0d\x0d\xac\x8c\x98\x94\xab\x62\xba\x8d\xb4\xaa\xa8\xa9\x88\x64\x07\x0c\xe2\x0d\xd8\xaa\xb6\xe3\xae\x7c\xa8\xc3\x22\x97\xb1\xab\x39\x68\x3b\x8f\x1c\x56\xb3\x8c\xe3\xdc\xd4\x0c\x11\x42\x90\x36\xc7\x62\x88\x55\x25\xc8\x59\x07\xfe\xb5\x9a\xc1\x19\xfd\x21\xbf\x8a\x5c\x38\xff\x16\xde\x42\xa0\x55\xe2\x70\x2e\x23\xd0\x3a\x41\x4c\x97\x82\x0b\x3d\x76\x42\xb3\xce\xec\xa1\xbc\x2d\x50\xfe\x0e\x2e\x54\x31\x5e\x9d\xfa\x2c\x8c\xdf\xcc\xa2\x30\x5e\xb3\x5a\xec\x94\x61\xaa\x21\x99\x1c\x2f\xa8\x11\xbc\x67\x35\xe7\x1c\x6c\x99\x11\xeb\xc9\x96\xba\xde\xfe\x2d\xed\x7a\x5f\xb4\xd4\xf5\x2a\xc0\x6b\xcd\x0c\x84\x7a\x6b\xf6\x97\xf1\x4c\x7b\x91\x17\x2d\xc6\x6d\x13\xd8\x07\x74\xd1\x12\xb0\xac\x72\xdd\xb7\x9a\xd9\xa9\xe7\x43\x6f\xdb\xa7\x90\x50\x7d\x8c\x3e\x4c\xc3\x78\x85\x04\x3a\x31\x4a\x1b\xe6\x7e\x49\x5d\x8d\x2f\x33\x26\x73\x1f\x38\xcb\xea\x83\xe1\x4d\x48\x73\xc9\x80\x92\x84\xc6\x0a\xed\x91\x5d\xa9\xda\xff\xf9\x5f\x07\x4a\xb2\x3a\xf6\x3d\x67\xa0\x6e\x9b\x8c\x39\x70\x2a\x36\x1e\x89\x2e\x61\xc5\x7a\x87\xd9\xba\x01\xf1\xcf\x77\x1e\xea\x01\xf5\xf3\x8a\xf1\xe1\xd4\xea\xa2\x92\xc8\xcb\x46\x24\xd3\xa5\x4c\x6c\x35\x1e\x0f\x61\xc3\x0a\x77\x12\x4b\xd0\xb0\xc2\xf5\xc5\xea\x96\x63\xec\xa1\x6e\x39\x86\x5d\x20\x64\xd8\xa8\x98\xb6\x46\x86\xf5\x91\xa1\x46\x38\x85\x14\xc7\x20\x9b\xba\x75\x54\xa6\xc3\x98\x68\x22\x02\xad\xbe\x0c\xdb\x40\xce\x77\x0b\x27\x96\x52\xe0\xb0\xca\xab\xe7\x45\xca\x34\x1e\xb0\xae\x6e\x0e\x41\xe8\xf7\xcd\x80\x58\x3c\x6c\x76\x84\x93\x43\x14\x35\x22\x3e\xad\xbe\xd9\xd5\x21\x25\x74\xd0\x3c\x82\x8e\x15\x30\xe5\xcb\x79\xd2\xe2\x7c\x20\x4f\x1a\x61\x3c\x57\x37\xc3\x60\x18\x0c\x40\x39\x1c\x17\x87\x7d\x52\xe0\x90\x97\x90\x64\xf5\xc4\xc6\x21\xf4\x50\xbc\x08\x43\xfe\xfb\x73\x84\x12\x8b\xc0\x4d\x4a\x9b\x16\xf7\xe2\x1a\xb6\x7f\x58\x3e\x21\xc0\x0e\x12\x2f\xb7\x35\x58\x78\x04\xdb\xb0\x55\x03\x03\x0d\xb3\x41\x7a\xb4\x5a\x44\x00\x10\x5e\x88\xf7\x39\x6b\xe8\x7c\x08\x66\x68\x29\xa5\x5a\x89\x6e\x19\x7e\x2a\x45\x34\xd0\xa5\x68\x43\xf5\xec\x69\xe7\xe3\xc2\x74\x22\x0e\x42\x5e\x1b\x3b\x06\xb2\x6e\x11\x5f\x28\x1e\x0f\x81\xc7\x4a\x0e\xa8\xc2\x8e\x55\xf0\x9e\x6b\xd8\x1c\xca\xbc\xfa\xa9\x6b\x3c\x1e\x03\xbb\x9d\x3d\xec\xf0\x42\x23\x4b\x62\xee\x3a\x52\xd5\xc6\x09\x3f\x69\xd9\x84\xf2\x15\xc4\x6b\xd4\xd7\xdf\xd1\x4d\xd6\xf0\x9b\x6b\xb0\xa9\x4b\xa9\xd9\x4e\xb0\x75\x6b\xd8\x56\xe2\x00\x16\xf8\x17\x07\x29\x45\x1e\xaa\x60\xe9\x96\xc1\x60\x3c\x7f\x59\xc6\x82\x71\xd3\xbc\x86\x01\x16\x33\x23\xf7\x83\xff\x92\xc2\xaf\x07\xc0\x84\x18\xf1\x4a\x18\xda\x65\x88\xd7\xc9\xbc\x4e\xae\xc5\x91\x37\x82\x78\x8d\xfa\x4a\xa1\xf6\x29\xd2\x47\x78\xaf\xca\xa3\xef\x45\x52\xb7\x98\x4a\xd3\x2f\xae\x01\x34\xae\xe9\x38\xfb\x9c\x2c\x01\x78\x71\xbd\xbe\x08\x18\x44\x40\xbe\xa5\x10\x41\x47\xe5\xb9\xdf\x9a\x5c\x3b\xa2\x4f\x88\x11\xd4\xd2\xb0\xef\x7f\xf8\x53\x41\xbc\x6a\x79\xa5\x21\xaf\xdf\xf3\xa5\x6f\xb8\x3d\x45\xce\xe3\x96\x53\xf1\x84\x81\x18\x90\x41\xd3\x3c\xb8\x5d\x82\x66\xd5\xf2\x0a\x65\x7b\x1e\x46\x98\x1c\xfc\x66\xc8\xad\x09\x63\x52\x22\x82\x98\x31\x8b\x20\x56\xd7\x68\xac\x0a\xd3\x4e\xdb\x35\x69\x06\xa5\x54\xf3\xe1\x57\x55\xf3\xa1\x76\x31\xba\x59\x10\xaa\x93\x58\x3e\x6b\xf9\x25\x4d\x7c\x64\x4e\xc1\x46\x02\xed\x9b\xbc\xf4\x27\x29\xb4\x6f\xbd\x85\xf4\xb1\x0f\xa1\x2c\x68\x54\x2d\x98\x93\x0b\x20\x32\x55\xa5\x3f\x0a\xe3\x59\x1c\x8e\x32\x20\x3b\x1c\x09\x82\xb7\x84\x85\xaa\x44\x5d\x5e\xcb\x8f\xee\xe2\x84\x52\x58\x9e\x0a\x08\x75\x09\xef\x54\x0b\x66\xc5\x32\x3e\x94\x20\xb6\x6b\x61\x74\x1c\x29\xbd\x85\x1e\x6f\xdc\x96\x93\xa7\xf5\x91\xff\xd4\x9d\x46\x39\xd2\xac\x9d\x74\x0c\x0f\xab\x22\xa3\x95\xef\xa6\xa4\x55\x67\x23\x1f\x2c\x8a\x31\x4d\x25\x7f\x22\xd3\x00\xc8\xf0\x72\x7e\xb4\x4e\xa8\xc1\x65\x68\xd2\x89\xe0\x57\x9c\x9e\x5a\x38\x76\x2a\x77\x5a\x8d\x58\x21\x77\x1a\x01\x0c\x17\xe8\xa3\xf8\xcf\x36\x5e\x3a\xc4\x9e\x02\xe7\xd4\xc2\x59\x4a\xa1\x72\x2e\x1e\x7c\xad\xed\xfb\x79\xc2\x96\x2d\xc3\x8d\xca\x99\x42\x81\x43\x51\x7e\xdb\xef\xc2\xc1\xf7\xae\x8d\xdc\x45\x08\x29\xcb\x59\x2d\xf8\x47\x84\x3e\xaa\x44\x75\x5a\x1b\x3d\xde\xa1\x2e\x51\x8c\xd5\xcf\x48\xb8\xe3\x5d\xc2\x22\x15\x62\xec\xac\xcd\x02\xa5\x8c\x01\x30\x23\x7e\x37\x1c\x1f\x99\x71\x42\xaf\x03\x25\x21\x68\x50\x8d\x8e\xdf\x9e\xf6\x33\x5f\x7a\xba\x8e\x54\xe5\x4f\x5c\xf7\xed\xbb\xc8\xb8\x2e\x1c\xa0\x66\x46\xd8\x2a\x40\x4d\x21\x0a\xdf\x12\x02\xa8\x96\xf3\xef\x50\x27\xeb\x6d\x8f\x43\xdc\x6d\x6f\x2b\xdc\xa7\x4f\xf3\x1e\x96\x85\x60\x3e\xb5\x70\x96\x32\x74\x27\x8e\xe7\xb7\xdd\xed\x60\x7f\x97\x83\xcc\xb4\x38\xa6\x04\xcf\x39\x72\xb4\x71\xc2\x2e\xf2\xa7\xdf\xa4\x56\x25\x63\x17\x92\x3a\x7a\x53\xe9\xbb\xce\xf3\xa1\x64\xda\xa0\x27\xde\xe0\x04\xd1\x70\x4e\xc9\x15\xc6\x7c\x1b\x1c\x1d\x4f\xa1\xa3\xd3\x24\x1c\xeb\x7a\xfb\xed\x21\x91\xef\xd6\xdb\x4f\xbf\x07\x2a\x47\xf1\x69\x4a\x4c\xa4\x37\x2e\x80\xcc\x89\x3d\x53\x71\xc0\x19\x68\x53\x10\xb6\x06\xda\x14\x5c\x19\x0a\x5d\x53\x89\xa9\xb1\x0c\xbb\xe1\x5a\x75\x39\xef\xd6\x04\xf9\xbe\x8c\xc2\xe9\x9c\xd2\xde\x0e\xee\x99\x89\xe6\x91\x38\xbc\xf8\xf1\x96\xc3\xa4\x75\x6c\x1a\xb2\xdf\xdf\xa4\x87\x33\xa1\x34\x00\xe6\x8b\x54\x5a\x63\xa4\xd0\x20\x81\x01\xa5\x13\x1c\xd1\x4f\x97\x63\xd3\x94\x68\xdd\x8f\xa5\x22\xc3\x23\x1a\x0d\x41\x2d\x96\xa3\xd1\xd4\x12\x4a\x82\x98\x8d\xfc\x41\xa7\x8d\x14\x3a\x56\x08\x86\x98\x91\x35\x05\xe3\x53\xd1\x67\x6a\xb9\xd2\x25\x03\x4a\x9f\x62\x12\xfc\x27\x1f\xe7\x37\xe6\x9d\xdb\x12\x98\xa6\x16\x2c\x5e\x81\x69\xce\x38\x69\x94\x5a\xeb\xcc\xd9\x5c\x99\xb5\x4e\xde\xb5\x2d\x12\x6b\x11\x10\x6d\x39\xb1\x16\xe1\x60\xd7\xc7\xef\x38\x66\x06\xe0\x0c\xf3\x25\x85\x4a\xfd\xd8\x43\x99\xbb\x58\x5b\x62\xda\x00\xbd\x5d\x0e\x62\x13\xe0\xf2\x72\x72\xad\xb8\x12\x3e\x88\x0b\x84\x89\xd3\x69\x95\x1c\xec\x3f\x7e\x45\x84\x44\x10\xf6\xe6\xe2\xc1\xf5\x32\xf4\xa6\x83\x3c\x5d\x1f\xc7\x8d\x20\xbe\xcc\xfa\xa0\x66\x67\xba\x51\x66\xde\xfc\x8b\xac\xf5\x78\x28\x84\xaf\xa9\x44\x42\x5f\x86\xd7\xf4\x78\x94\xbe\xbc\x13\xc2\x20\xff\x9a\xf9\x6a\x28\xad\x35\xb2\xcd\x69\xb1\x0e\x02\x23\xad\xaf\x32\x20\xf3\x18\x73\x09\x7b\x73\x12\xd0\x61\x29\x6a\xcd\x59\xce\x50\xc6\xf4\xa6\x47\x69\x67\x56\x41\x80\x99\x0a\x94\x65\x19\x30\xc3\xcb\xbb\xf5\x75\xe0\x73\x00\x56\x4b\x80\x99\x0a\x70\x7a\x19\x12\xd3\x73\xbc\xfb\x5a\x11\x60\x19\x0a\xda\x52\xc3\xfb\x5f\x64\x05\xce\x95\x2f\xe7\x32\x56\xf3\x6b\x8c\x55\x7c\x12\x8a\xef\x72\x97\x32\x3e\xdf\xdc\x81\x46\x5a\x02\xc2\x54\xb2\x19\xac\x2f\xef\x96\x91\x50\x02\xc2\x54\xc2\xd1\x2f\xe1\x60\x2a\xf9\x0a\x96\x61\x30\x44\x8a\x5f\x82\xc1\x1c\xb7\x76\xfe\x53\x80\x0b\x23\x73\xce\xac\x81\xc5\x11\xfc\xfd\xe5\x25\x6b\x1a\xf5\x93\x66\x56\x5d\xf8\x2b\xb0\x23\x8b\x70\x33\x80\x8d\xd6\x17\xbb\x7a\xe4\x4b\xdd\x2b\x30\x3f\x42\xcc\x5c\x15\x53\x4b\xd0\x96\x84\xd2\x5d\x46\xb6\xe4\x0e\x46\x39\xa8\x2a\x11\xc1\x97\x53\x50\x5d\xa0\x23\x96\x73\x50\xc5\xb5\xfc\xf3\x7b\x9e\x12\xea\xe7\x8d\x49\x55\x5d\xac\xc4\x9b\x2b\xf0\x4a\x05\x50\xbb\x04\x5e\x29\xf9\x2b\xc5\x93\x19\xcf\xd8\x26\x5b\xb8\x42\x0e\x41\x69\xd2\x8c\x76\x48\xee\xe1\x04\x5e\x29\x64\xb7\x58\x3f\x8b\x1b\x0c\x19\x92\x59\xf1\x8a\x73\xfd\x78\x7f\x8a\x69\xae\x8c\x54\x95\x10\xdc\xcb\xa0\x93\x92\x4e\xcc\x1e\x44\xdd\x5e\x46\x9d\x00\x86\x5e\x82\x99\xdc\xcd\x36\x48\xfd\x17\x1a\xdd\x68\x91\xc9\x8b\x8f\x65\xb4\xc8\xe4\x8d\xc7\x32\xe8\xa3\x11\xf8\x77\xbf\x7c\x05\x8b\x07\x79\x1b\xd9\x31\x9d\x22\xf0\x26\x6d\x5f\x7a\x9f\xec\x97\x4f\x37\x3d\x75\x69\xf8\x84\x64\x56\x52\xd7\xcf\xf2\xbd\xfd\xf7\x6b\xf0\x3b\x03\x52\xa2\xec\xa4\x90\xcb\xb1\xc1\xa7\x7a\x5b\x0a\x0e\x6e\xbf\xd0\x19\xd6\x4c\xfb\xc5\x2b\x3d\xda\x31\x2c\x04\x37\xcd\x7e\x59\x11\xf4\x54\xf5\xa5\xfa\xc5\xcf\xe8\x08\x5c\xf2\x6b\xde\xc8\x83\x0f\x09\x16\x61\xb6\xdd\x2f\x04\xaf\x35\xca\x26\xd3\x12\xef\x47\xb7\x21\x1a\x3c\x81\xda\x2f\xb4\xfc\xa0\x53\xf9\x45\x3a\x5e\xa5\xfd\xda\xbe\xbc\x0f\xa5\xac\x50\x8d\x4e\x1d\x91\xae\x3c\x55\xad\x0b\x2e\xa6\x57\x58\x9d\xeb\x60\x4e\xf4\x04\xc0\x69\x5c\xdb\x16\x62\xa3\xbc\xe8\xf2\x70\x42\x8a\x1e\x4a\x77\x02\x35\x94\xcf\x9c\x66\xc0\x4d\x64\x18\x5c\x3c\xfb\x30\x44\x96\xb8\xdd\x5b\xe0\x8a\x72\x59\xf0\x6e\x02\xc5\x10\xab\x64\x0b\x6b\x71\xe2\xae\xdb\x09\x14\x33\x42\xc2\x37\xb4\x6b\xd9\xcb\xda\x1b\x50\xe1\x84\x6e\x37\xe5\x13\xd6\xa4\x4f\xbf\x39\x7a\xa5\x9d\xed\x01\xa5\xee\x5b\x7f\x9d\xaa\xca\x3d\xe7\x3d\xb0\x0f\xcb\xe5\x91\x9a\x7a\xc7\xf7\x62\x7e\x9c\x51\xae\xf1\x9d\x0f\xb2\xac\xad\xf3\x30\x75\x42\x82\x6e\xe5\x61\xaa\x44\xe8\xdb\x87\x0d\xf4\xcc\x16\xda\xf9\x62\x2e\x17\xb3\xc5\x6f\x2d\x2f\x09\x94\xf3\x99\xa4\xaa\x22\xcc\xcd\x4c\x96\xf7\xe7\x4c\x4d\x9f\x05\x4f\xe6\x15\xe8\x6b\x46\x60\x4f\xec\xa8\x7f\x47\xab\xda\x47\xb6\x76\x5a\x52\xf8\xa0\xca\x7f\x72\x8d\xf4\xf4\xfa\xd1\xbe\xc9\xf8\x34\x79\xac\x81\x50\x19\x95\x18\x90\xfb\xf4\x39\x8d\x95\x15\x28\xa3\x10\x11\x7e\x1b\x94\xd1\xff\x25\xcd\xfb\x33\xa4\x64\x28\x8b\x77\xfa\xf9\x00\x9e\xb4\x2d\x8c\x46\x21\xe4\xc9\x3e\xed\x1a\xc1\x4c\xdc\xce\xe2\xc4\x9d\xce\x36\x7e\x83\x43\xd3\x3e\x6d\x42\x4e\x6a\xfa\x28\x91\x1e\xa7\x5d\x96\x29\x63\x74\xf9\x90\xd1\xa5\xd4\x11\xf4\x43\x99\x0d\x60\xf6\xd3\x3e\x13\xa2\x9c\xef\x53\x72\xe5\x95\xf9\xf1\x29\x72\xa4\xaa\x84\x8c\x2d\xd1\x7d\x72\x8a\x9c\xfc\x17\x32\xa7\x32\x07\xf2\xa8\xf4\x0c\xc8\xd1\xe7\x60\x52\x27\x5b\xba\x00\x04\xed\x93\x57\x01\x0c\x20\x02\x29\x24\xac\x17\xf2\x5e\x3e\x02\xe5\xef\x13\x4b\x30\x0d\xc9\x58\x20\x22\xfa\x3e\x8d\x41\x0c\x57\x38\x9c\x0d\xf9\xd2\xf6\xc9\xe3\xf2\xfc\x8b\xa2\x1c\x11\x3c\x70\x9f\x4e\xb3\x9a\x01\xe9\xfc\xc9\x93\xe3\x7d\xda\x2a\xac\xcc\xa5\xce\x9f\x9c\x48\xb6\x02\xdf\x54\x1e\xa2\x6e\xe5\x5e\xaa\x04\x08\xdb\xa7\xb4\x0f\xee\xd4\x5d\x6c\x31\xb2\xbd\x0b\xaa\xe8\x4c\xa1\x04\x34\xf3\xea\x98\x38\xe4\xe3\xda\x82\x6f\x1c\x8d\x38\x7e\xdb\x41\x71\x78\xd3\xb8\x8b\x23\x30\xdb\x92\xd8\xc2\x68\x14\x30\xbb\xbb\x70\x58\x61\xe0\x05\x11\x57\xe9\x04\x3d\x34\xf9\xd4\x20\x0d\x9c\x82\xbb\x20\xf2\x60\x8a\x62\x63\x02\x45\xe4\x8c\x4e\x57\x7b\x48\x45\xd2\xb4\xc1\xb6\x83\xd2\x60\x4a\x8c\xd2\x20\xee\xf2\x16\x2e\xa3\x82\xa9\xd9\x82\x65\x8c\xca\xfe\x52\x7e\xa7\x4a\xa8\xb3\x5d\x8c\x2a\xe2\x5c\xb1\x95\xdf\xa9\x12\x62\x6e\x17\x1f\x6c\x7a\x5a\x15\xe3\x11\x44\x69\x2b\x0e\x4f\xc1\x5d\xb0\x8b\x71\x44\x48\x47\x05\xde\x29\xbc\x0f\xda\x65\xb1\x69\xf9\x0f\x19\xb8\x84\x16\xdd\xc5\x77\xa2\xd8\xb7\x5b\xf8\x8e\x4a\x28\xb3\x5d\x60\xd1\x33\x5d\x7e\x3d\x9e\xd4\xfd\x69\xb0\x34\x6b\x61\x89\x86\x77\x54\x9e\x92\x59\x0f\xc3\x32\x21\x7e\x66\x95\xc1\xe2\x8b\x42\x83\x16\x5c\xbc\xc8\xf2\xcb\xd7\x4d\xb1\x6d\x04\xbc\x38\x2a\xc1\xcc\xb6\xa0\x16\xa3\x22\x71\x48\xc6\x84\x83\x75\x1b\x30\x71\xf1\xb4\x7a\x1b\x30\x81\x6d\xbe\x0d\x98\xe0\x95\xe3\xbe\x06\x7f\x96\x86\xcc\x43\x36\xc7\x37\xa8\x88\xfe\xfa\x1b\x3d\xb8\x0d\x99\x20\xb4\xd4\x26\x6a\x0f\x4f\xaa\xb6\x93\x33\xf1\xf6\x74\x5f\xe6\x12\x04\xc9\xe5\xe0\x98\xb8\x25\xb7\x30\x12\xe5\xf9\x6d\xc2\x74\xa5\x4c\x13\xcf\x1e\xbb\xec\xc5\x8d\x41\x27\x58\x44\x79\x5d\x29\xb4\xea\x69\xfc\x98\xe3\x58\xe6\xbf\xe4\xd3\x25\xbe\xe1\x76\xe0\x9d\x2b\x7d\x64\xad\xd3\xea\xcf\x1a\x96\xba\x32\x56\x1b\x51\x0e\xb6\x62\xed\x9c\x1c\x04\xb7\x30\x14\x95\x20\x5d\xfb\xf2\x95\x13\x4f\x46\xb7\x30\x14\x35\xf6\x88\x21\x14\xcf\x6a\xca\x61\xc2\x4b\x8f\xed\x38\x3c\x0d\x37\xd6\x06\x42\xd1\xf3\xa1\xf7\xcd\x33\x00\xed\x9b\xf0\x81\xcc\xac\x92\x09\xc1\x3a\xf6\x69\x62\x57\xc3\x15\xd9\x0c\x0a\xcb\x73\x12\x31\x67\x1b\x6c\xc1\x93\xe7\x0d\x0c\x82\x47\xea\xbb\xa2\x4e\xec\xdd\xd9\x46\x45\x70\x21\xbe\x85\x8a\xa8\x04\x26\xda\x15\x93\xa7\xa4\x21\x87\x60\x99\x50\xcc\x6c\x48\x78\xcd\x7f\x4d\x6e\xa4\x67\xb4\x24\x4c\xc6\x92\x10\x16\xa2\xf2\xf0\x72\x0b\x0a\x51\xaf\x0c\xde\xd8\x41\x2e\x1f\x76\x75\xc2\xc0\x2b\x85\x6c\x0d\x86\x2b\xb8\x20\x31\x43\x77\xb5\xff\xa2\x66\x04\xd2\x7e\xf9\x4d\xbf\xba\xbe\xd2\xa8\xed\x23\x5a\xd9\x8c\x95\xaa\x02\xcb\x44\xfd\x57\xdf\x46\x67\x34\x32\x81\x48\xba\xb0\x0d\x67\x20\xa2\xd1\x76\x8a\xa3\xc9\xab\x8b\x0d\xd2\x20\x2a\xa4\x59\x4b\x94\x50\x5d\x03\x68\x50\x7a\x77\x69\x5f\xd8\x56\x18\x9c\xa3\xe0\x2c\xd8\xc4\xc1\x21\x27\xc4\x76\x1c\x9c\x4c\x73\xc3\x4a\xe6\x04\x22\x8c\x42\x25\xd6\xcd\x6e\x01\x1d\xbf\x20\x2d\xbd\x5a\x4a\xbd\x06\x8c\x96\x5b\x00\x6c\x20\xc3\x12\x88\x92\xb3\x9b\x0f\xa0\x47\x3e\x64\x0d\x52\x38\xdc\x0b\x7f\xa6\x14\x48\x44\x46\xdd\xc2\x2c\x14\xc0\xc3\x5b\x98\x85\x02\xd4\x69\x2b\x19\xd1\xdd\x65\x87\x34\xb3\x5d\x29\xb5\x7d\x4d\x27\x1c\x39\xaf\xd4\xd5\x95\x4a\xfe\x53\xfe\x25\xa0\x10\xbb\xb1\x51\xaf\x14\x7a\xde\x99\x5b\xdf\xd8\xe1\xcc\xdf\xcd\x3b\x35\x53\x8b\xcd\x8a\x01\x27\x30\x41\x21\x78\xfa\x76\x54\x9a\x63\x3c\xbd\xf8\x52\x07\xc5\x2e\x34\x41\x89\xc5\xd6\x31\x17\xb0\x4f\xba\xe1\xc2\xd9\x8f\xdd\x9c\xc0\x01\xce\xa1\x67\x78\xe9\xb0\x85\x2d\xa8\xbc\xbe\xdf\x0e\x44\xd3\xb9\x2c\xda\x1d\x45\x70\xfc\xfd\x72\x67\x77\xe7\x61\x9f\x69\x48\x5a\xe2\xca\x60\x3d\x99\x35\xa4\x36\x03\xa2\xde\x51\x6a\x1e\xf9\x29\xb0\xc1\x19\xfb\xd2\x31\x6b\x78\x52\xb8\xbb\x99\x24\x7f\x39\x81\xca\xf2\x5f\x8e\xc0\xd9\x53\xa8\x9d\xc2\xf2\x75\x82\x39\xcc\x54\x45\x55\xa6\x13\x3b\xa3\x32\x25\x3a\x4c\xf1\x9e\x7b\x3b\xa0\x4d\x27\x6b\xc6\xee\xbe\x66\xe6\xfa\x65\x3b\x99\x52\x84\x4e\xf7\x33\xd8\xe8\xf2\x6e\x31\x03\x5f\x74\xa7\x87\x24\x37\xc1\x56\xb8\x9b\x7a\xc1\x8b\xc6\x34\xf0\x0a\x75\x1b\xd3\x70\x11\x4e\x61\x77\xdb\x16\x28\x02\x41\x1a\x92\x3a\x72\x2b\xfa\x4d\xe5\xfd\xfb\xee\xb6\x85\xb3\x7c\x7e\x6a\x41\x9c\xed\xdd\xf1\xa3\x65\x12\x04\xe0\x23\x29\xcb\x16\xfa\x61\xf0\x92\x72\x0b\xfd\x70\xc6\x0e\xeb\x18\x1a\xd8\xc2\x02\x3f\x94\x9a\x9f\xe4\x8c\x8f\xf0\xe8\x4e\x2b\x80\xb6\x51\x7e\xa6\x41\x88\xbf\x6d\x5c\x04\x51\x8e\x76\xb7\x11\x7d\xa5\x51\xed\xdb\x33\xad\x68\x2f\x22\x2a\x00\x42\x80\x74\xdc\x63\x30\x9c\x01\xa9\x98\x55\xcc\x8e\xb3\x2c\xe1\xef\xd9\xc3\x58\x99\x23\xed\xc8\x7b\xca\x6f\x18\x15\x41\x70\xa4\x3d\x9c\xeb\x06\x17\x88\x63\xdf\xe0\x83\xdd\xc3\x6c\x87\x52\x1a\xd6\x6e\x47\x3a\x34\xa3\x61\x44\x3b\x75\x52\x64\xdc\x30\xc8\x0f\x6d\x31\x6c\xa3\xf6\x7c\xc7\x9e\x48\x1f\x32\x4d\x30\x62\x06\x59\x25\xf8\x43\xd9\xaf\x3c\x3c\xde\x8e\x83\x73\xe5\x1c\x65\x30\x03\x38\xc2\x3d\xcc\x72\x2d\x1f\x0a\x42\x5b\x52\x26\xc5\xc6\x56\x57\x14\x9c\x51\xf3\x8b\xe4\x5c\x4e\x9b\xb2\x68\x50\x3a\x0a\x73\x73\x92\xf6\x7a\x2b\xca\x4d\xe5\x55\xd0\x1e\x30\x5c\x86\x6d\xc7\x03\x7f\xef\x10\x01\xb1\x18\x0c\x73\x28\x5c\x7c\xed\x11\xbe\xe1\xaf\x2c\x18\x11\x76\x82\x32\x8c\x58\x17\xc3\x9c\x82\x06\x1a\xb8\x86\xb2\xc4\xb0\x0a\x23\xf7\x09\x8b\x2e\x15\xb9\xe6\x78\xcc\x1b\x85\xae\xa9\xe0\x7d\xf6\x74\xa0\xd1\x28\x2b\x03\x1b\x26\x18\xf5\x2d\x7c\x42\x01\xf9\xbf\x95\xec\xa8\x02\x34\xdb\xd3\x4a\xef\x29\xb3\x80\x48\x21\x36\x2f\x92\x99\xf8\x33\x84\x6c\xdc\x46\x27\xe4\x5c\x30\x39\x77\xf3\x67\x8e\x47\x43\x0c\xa3\x2d\x74\xc2\x19\x1b\x61\xda\xfb\x73\x86\xb2\x6e\x40\xcd\x29\x1c\xcd\xfd\x2b\x21\xc5\x4b\xf5\x6f\xbf\xf7\x9e\x48\x2c\x3c\x47\x8e\x47\xd3\x67\x7e\x4d\xaf\x6d\x62\x03\x4f\x4c\x62\x3c\x59\x13\x26\xe1\xc7\x60\x84\x94\xc9\xd5\x9d\x9f\x96\x8f\x1e\x80\xf3\x9e\x20\x85\x39\xe2\x4c\x5b\xb2\x88\xa1\xc9\x85\x1e\x47\xc7\x49\xd8\x67\x0e\x8b\x4e\x60\x44\xe0\xb1\xed\x50\x31\xa0\xc2\xb6\x60\x0e\x85\x67\x5c\x5b\x09\x8c\x2a\xd8\xa0\x6d\x20\xc3\x04\xd7\xb8\x97\x2c\x9a\xb8\x4d\x16\xc7\xe0\x11\x52\x93\x17\xca\x21\xd4\xe0\xe8\x35\x99\x9e\x09\xa9\x18\x38\x58\x6a\x8e\xe2\x92\x83\xff\xc2\x19\x8b\x37\xc6\xe9\x85\xc8\x60\xb4\x15\xd4\xe5\x24\x78\xfa\x5e\x5e\x2e\xfe\x6a\xa1\x60\x70\x39\x29\xa8\x4b\xd2\x2a\x6f\x61\x1c\x6a\x1c\x98\x0b\xef\x1d\x12\xc5\x88\x07\xee\xb2\xb7\x11\x0f\x85\xeb\xfe\xbd\x7c\xe6\x64\xd3\x2c\x8e\x21\xe8\xe7\xe5\x05\x82\x9b\xc8\x53\xc4\x0d\xe7\x5e\x98\x37\x3d\xa5\x8a\x35\xcf\xea\x2d\xdd\x94\x44\xa4\x2e\x07\x7f\x46\x32\x2e\x36\xea\x0c\xf9\xf6\x22\xa4\x1d\x4b\xc3\x01\x65\x93\xc0\xd4\x46\xe0\xe3\x5d\xd8\x83\xd1\x16\x48\x8f\xb6\x41\x79\x4d\x58\x6a\xc7\x7c\xc1\xc1\xbf\x95\xf1\xa8\x00\xed\xda\x1b\xdd\x80\x89\xb7\xad\x1c\xb8\xfa\xdb\x8e\xf9\x12\x9b\x78\x63\xfa\x9c\x69\xc8\x3e\x9e\x0b\x4a\x4a\x77\xa6\x1d\x33\xd0\xcc\xf0\x7c\x4c\x39\x33\x78\x2b\x61\xb8\x6d\x5b\x3c\x64\x7c\x36\x89\xd9\xf1\x8a\x0e\x73\x3c\xe7\x38\x81\x30\xce\x67\x78\x4e\x49\x05\x7b\x29\xc8\xcb\xf1\x78\x84\x36\xa6\xec\x53\xea\xf1\x31\x02\x2f\x3d\x2b\xb6\xbd\xd6\x99\x12\x1d\x3d\x8e\x57\xca\xee\xd5\xac\xe8\xab\x6d\x91\x9c\xfe\x1d\x1e\x6f\x66\x7e\x36\x3d\x32\x00\xa3\xa5\x89\xdc\xb1\xb7\xc5\x70\x66\x64\x5b\xb7\x79\xba\xde\x44\x1e\x28\x50\xa7\x52\x20\xbc\xa0\xac\xda\x19\xeb\x5b\x8f\x3e\xce\xa7\x2a\xeb\x35\x20\x75\x14\xab\xa9\xea\x43\x4b\x0f\xe9\x63\x6e\x4f\x5d\x96\x28\x43\xf8\xe9\xdc\x46\x5d\x07\x83\x26\x79\xdd\x56\x8a\xa0\x1a\x67\xa3\xa2\xb0\xd4\x30\xad\x82\xb0\x1c\x80\x78\xb6\x82\xb0\x9c\xe0\x33\xf7\xdb\xcf\x3a\xe2\xd1\x7c\x73\x4a\xe9\x69\x07\x7e\xe2\x5f\x0c\x73\x9a\x69\x57\xa0\x7e\xd2\x79\xee\xb7\x83\x26\xfe\x87\xe8\x82\x5b\x58\x8e\x3e\x30\xd4\x1c\x77\xa5\x93\x44\x69\xbf\xc5\x24\x13\x74\xde\x56\xe6\xa1\x9b\x4c\x2f\x8c\x28\xa5\x72\xb9\x66\x4e\x14\x88\x05\x2c\xfc\x26\x10\x4b\xc4\xa0\x81\x1e\x17\xf1\x90\xf6\xdb\x76\x25\xe8\xb3\xfd\xb6\xcb\x75\x86\x32\xbb\xb1\x0e\xbe\x3c\x22\x74\xd2\x26\x67\x11\x39\xd8\xf6\x1b\x93\x00\x39\x24\x18\xc8\x49\x58\x87\xfd\xde\xcc\x18\xb3\x8d\x1f\x63\x84\xfc\x6a\x99\x52\xd7\x1c\xef\xd1\x3b\xe0\x4a\x2e\x06\x3e\xbe\x69\x45\xa0\x7e\xbc\x3b\x79\x07\xb2\x3f\x4e\x00\x00\x53\x7f\x8c\x3b\x24\x13\xd2\xfe\xd8\x27\xc5\x2d\xe4\x76\xf4\x93\x78\x4f\x3f\xa8\xf2\x11\xf2\xde\x3b\x71\x5d\x3a\x41\x50\x23\xdf\xe0\xfe\x84\x17\x3a\xe4\xd6\xd8\x27\x94\xd2\x05\x1d\x19\x02\x33\x1f\x12\xd9\xc2\xbf\x38\xb3\x2b\xd3\xf7\xc1\x03\x82\x60\x14\x9c\xe3\xee\x34\xa4\xcd\x46\x4e\xd8\x86\x70\xc4\x15\x26\xcc\x46\xcd\x79\x5b\x79\x87\xee\x86\x18\x1f\xa1\x5d\x5f\x21\x3f\xaa\x9b\x2f\xf5\x46\x2a\xc3\x95\xa8\x01\xfe\xb5\x85\xca\x28\x84\x8e\xde\xc2\x5d\xd4\x8a\x10\x57\xba\xa0\x1a\x5e\x14\xce\xa2\x86\x51\x1d\xd4\x24\x97\x49\xa4\x07\x22\xd4\xd4\x56\x8c\x93\xfb\xb7\x3c\x1a\xc3\x2e\x80\x9f\x6d\xc1\x2e\x6a\x38\x51\xa8\x8b\x9a\x2b\x18\xe7\x0a\x3a\x72\xeb\xea\x88\x27\xbc\x47\xde\x82\x59\x54\x60\x99\xdb\x99\x83\xe6\xbf\xad\xfa\x14\x93\xaa\xf6\xa7\xe1\x58\x51\xc8\x93\x7b\x3c\x69\x96\xd1\xa6\x53\xf1\x25\x06\xa8\xb3\x05\x75\x72\xfe\x6c\xc5\x3c\xa9\xf1\xc9\x38\xe4\xc9\xc5\x03\xee\xfd\x0d\xb7\xd1\xab\x7d\xea\x5c\xed\xef\xef\x64\xab\xa4\xd4\xb7\x8a\x29\x1c\x4a\x7e\x32\x42\x9a\xdd\x4a\x06\xf1\xf1\xcf\x65\x10\x36\x5f\x91\x69\xdf\x85\x30\xa4\x61\x61\x82\x72\x80\x53\x8e\xa0\x9a\x83\xbb\xe1\x1f\x39\x32\x7e\x91\x3d\x33\xa4\xa5\xe1\x91\xba\x5a\x60\x24\x86\xe1\x1e\x33\x2c\xff\xc5\x47\x8a\xba\xf8\xfa\x0a\x27\x17\xb1\x5f\x47\xd5\xc9\xb4\xc8\x47\x1a\x2f\x8d\x60\x1b\x03\x88\xd7\xfe\xf2\x76\x96\x63\xfd\xd7\x77\xff\xb9\x27\x76\x34\x93\x9c\x29\xbf\x04\x83\xa8\x29\xf4\x69\x0c\x5b\x45\xe0\x8c\xe7\xae\xd3\xe1\x4c\xb2\xef\x7f\x70\x55\x87\xd2\x33\x25\x78\x95\x08\x25\xb9\xb2\x35\x8e\xe3\x3e\xc6\xfc\x29\xc8\x7f\x8e\xed\x14\xcf\xcb\x8f\x37\x8b\x1c\xb3\x04\xcf\xa8\xe1\xc0\x9f\xce\xa3\x39\xf2\xfc\x2c\x6a\x98\x83\x5f\x16\x3b\x55\x25\x5b\x98\xbc\x1f\xe2\xe3\x4a\x5d\xed\x56\x84\xb1\xd2\xfd\x9c\x60\x47\xf7\xcf\xf0\xe7\x19\x4a\x56\x55\xfa\xf0\x41\x20\x77\xbf\x3f\x6e\x42\x50\xda\x02\x72\x94\xb8\x44\x0c\xe4\x88\x61\xe7\xe8\x21\xb9\xfd\x16\x8e\xe3\x8c\x0e\x74\xf4\x90\x16\x47\x8b\x60\x1d\x15\x3c\xdc\xfe\xb1\xec\x0c\x80\x65\x4f\x59\xfb\xe7\x7f\x9d\x48\x10\xdb\x10\x8f\xe7\x8a\xf4\x67\xc9\x52\x52\x68\xad\x81\x1d\xf0\xb3\x8b\x2d\x37\xb8\x3f\x2b\x11\xcd\x4e\x1f\x2f\xf3\x80\xaf\xd1\x6f\xd2\xe3\x19\x50\x1e\xc1\x09\xd5\xf4\xee\x2e\x35\x75\xb2\xd6\x9c\xdf\x94\xd8\x4e\xd3\x71\x53\xcb\x8d\x1e\x90\x5e\x9e\x0a\xe5\x9d\x79\xa4\x50\xcb\xa3\x95\xbc\x55\xbc\xfb\xef\x50\x55\x8f\x38\x42\x75\xff\x07\xed\x98\x23\xae\x50\x9a\x81\x8b\xa1\x9a\x21\x2e\xba\x90\x4b\xa2\x5e\x0c\xee\x66\x8f\xde\x5b\xca\xd4\xbd\xd4\x47\x1f\x64\x1a\xb2\x30\xbd\xc9\xe2\xff\x08\xa9\x09\x48\xab\xf2\x99\xdb\x1e\xbe\x29\x49\xcf\x4c\x80\x94\x49\xcb\xe4\xd8\x43\xe5\xec\xec\x7d\x28\x5b\x50\xad\x17\x7f\x25\xd3\xa1\x5e\xfc\xbf\x9d\x50\xbe\xcf\xbe\x49\x7e\x99\xf5\x70\x18\x98\x9e\xbf\xdc\x4c\x33\x9d\xfa\x85\xb2\x03\x4c\xdc\xa4\xd7\xd9\x9f\x1e\x83\x5f\xa9\x90\xf4\x33\x21\xbb\x4b\x1b\xa4\x59\xff\x7c\x41\xda\xa4\x3a\x0a\x24\x20\x96\x54\xde\xfe\xb6\x43\xda\x2a\xcf\xa7\xd6\x63\xd5\x43\x3c\xbc\xbc\x95\x42\xa4\x3d\x4b\x78\x38\x73\x9c\x81\xb6\x37\x39\xb4\x4e\x34\x6b\xa1\x5c\x29\x5b\x7c\xc9\xcf\x49\x2a\x0f\x67\x9a\xba\x49\xbd\x66\x71\x02\xa6\x9b\xd4\x19\xb1\x85\x62\x96\x52\xf7\xeb\xba\x69\xd8\x47\x7a\x4f\xf0\xe1\xe0\x07\x29\xe3\x39\x54\x65\xb8\x92\xc3\xe3\x75\xa4\xee\x70\x74\x08\xba\xb9\x17\x83\x2c\x54\x37\xe5\xd8\x2c\xcc\x82\x11\x73\x9d\x69\x38\xfd\xe4\xa9\xf3\x6f\x27\x9b\xae\x42\xd1\x4b\x81\xd4\x35\xc0\x95\x42\xa5\x30\x67\xfd\x4f\xbf\xa4\x9c\x1e\x8f\x51\x13\xb5\xf2\x9d\xc3\xf0\xf8\x22\xf9\x26\x7d\x19\x54\x43\x5a\x8d\x9d\x7f\xda\xe2\x77\x5d\xb3\x0a\xff\x62\x14\xc5\xac\x0f\x29\x39\xf0\xb4\x6b\x6b\xf6\x4c\xe1\xcf\x9f\x7a\x52\x4e\x9e\xea\xd6\x90\x7a\x33\x52\x42\x49\xa2\x3e\x65\x8a\xb4\xff\x94\x89\xb3\xeb\x84\xd2\x0e\x86\xc3\x4e\xcc\x74\x84\x84\x90\x11\x77\x97\x1d\xd2\x5c\x34\xa0\x98\x94\xd4\xf5\xc1\x39\x53\x66\xdb\xad\xe6\xcb\x29\xfd\xcc\x92\x69\xe7\xf9\xfe\xe5\xa6\x1c\xb5\xd3\xcd\x28\xb4\xc4\xe5\x9c\x40\x37\xe5\x3d\xca\x56\x2a\x16\x85\x08\x1f\x81\x11\x0e\x5f\xdc\xf4\x21\xf0\xc1\x5d\x95\x42\x27\x66\xed\x35\xa5\x9a\xd9\x56\xa0\xcc\xc5\x8c\xce\xc0\x00\x7b\xb9\x6f\x4a\x33\x02\xc3\x97\x4c\x33\x55\x9d\xd6\xe2\xc5\xce\xf7\x4d\x7c\x85\xa7\x0b\xf9\x03\x42\x2d\xcf\x0f\x23\xd8\xee\xc4\x85\x17\x02\x05\x8e\xe2\xaa\x1d\xc5\x71\x61\x21\x9c\x1d\xd2\x4c\x7c\x16\x48\x26\x3a\x95\x87\x4b\x2f\x48\xff\x68\x28\x58\x28\x75\x3d\xfa\x33\x83\x90\x43\x05\x75\x71\x71\x6e\xa5\x17\x26\x2c\x65\x4b\x69\xca\x1b\x94\xb8\xab\x85\x42\x48\x79\x4a\x2e\x70\x15\x0f\x69\x6c\x22\xed\xc8\xe2\xb3\x87\xe9\xa6\x7c\xc5\x92\x3f\xe1\x04\x79\xa6\xd4\xed\xb2\x10\xbe\x24\x1f\xaf\x4c\x8a\x52\x50\x35\xb4\x92\xaf\xcc\xaf\x68\x57\xdd\x7c\x9f\x51\x35\x97\x11\x62\xb3\xa4\xd0\xe0\x1b\x77\x5a\xfd\xd6\xc9\x77\xef\x37\x59\xbd\x01\x52\x3a\xf5\x2c\xfa\x05\x65\xbb\xa9\xa5\x2e\x01\x92\x4f\x48\xcd\x4a\x2f\x50\xd2\x93\x69\x67\xda\x4e\x38\x43\xfa\xd8\x95\x86\xec\xff\x9d\x28\xbc\x3a\xe1\x8d\x09\x29\x4b\xae\x85\x92\xb9\xd8\x2f\x28\x6b\xb8\x12\x52\x08\x84\x19\xca\x0c\x88\x2c\xac\xf6\x0e\x97\xb4\x63\xc9\xcd\xa4\x54\x56\x8d\x0d\xa2\x20\x01\xd5\x09\x68\x6f\xea\xd2\x33\x7b\x46\xbb\x3c\x1e\x7e\xc5\xa7\xc2\x9e\x32\x65\x20\x18\x69\xd4\x97\xfa\x2d\xcd\xe8\x4d\x67\x7e\xcb\x22\xaa\x33\x38\x01\x48\x0b\x26\x4f\x45\x53\xc3\xc5\x7a\x66\x8f\xf7\xae\x8f\x86\xcd\xc5\x6c\x29\xb3\x4b\xad\x2c\x67\x03\x80\xdb\x52\x68\x8b\x99\x86\x74\xa5\x5d\x2b\x4a\x86\x3b\xec\x31\xa1\x7c\x82\x2d\x7f\xe2\x50\xee\xba\x12\x11\xdd\x1b\xa0\x71\x28\x63\x6b\xeb\xd2\xba\xd8\x03\x75\x53\x9a\x2d\x38\xde\x4f\xe9\xc7\x0b\x96\xd1\xb5\xf4\xf0\x5b\xd5\x9b\x62\xbd\x3a\xa4\x2d\x03\xd6\x56\xe9\x5b\xce\xc2\xf6\x6c\x8b\x49\xe0\x53\x1d\xdc\xc7\x0b\x11\xaf\xf7\xf2\xb5\xb2\x0c\xcd\x33\x8d\xb8\x6d\x9c\x9c\x90\x35\x7a\x01\x5f\x0a\x06\xac\x2f\xad\x67\x45\xbc\x29\xb5\xca\x01\xd2\xe8\x26\x25\x13\x06\x43\xf0\x2b\x9b\x99\xdf\xb6\xc1\x34\x18\xad\x23\xa6\x4d\xb8\xad\xdb\x59\x3b\x31\x9b\xf5\xae\x7d\x54\x4c\xad\xee\xe3\x11\xb6\x55\xe7\xca\x05\xe9\xa2\xdb\xe6\x72\x8c\x54\xf5\x08\x52\xe6\x53\x36\x42\xaa\xb3\x82\x6c\x7b\x3f\x5e\x77\xd2\xd0\x3e\x74\x83\x5c\x26\x7f\xe2\x2b\xe3\xca\xc4\x77\xc7\x5e\xe9\x2d\x55\xc5\x51\x23\x55\xab\xf6\x54\xaa\xfa\xf8\xc8\x6e\x54\x0a\x94\x5a\x31\x78\x74\x9f\x7c\x8c\x57\xfe\x92\xf5\xbc\x52\x6a\xe1\x9b\xe1\x29\x07\xef\xc5\xfe\xd3\x95\x71\xad\xf0\xa2\xaf\x81\x3b\x6b\xed\xa4\x27\xb1\xaa\xfc\xce\xdd\xd9\x52\x6e\x4a\x6b\x3b\xd3\x8a\x43\xd3\xf0\x1f\xca\x17\x5f\xe0\x1f\xbf\x4e\x9f\x15\x55\xaa\x0b\xda\x5a\x31\x77\x3a\x22\x32\x2b\xe2\x85\x9e\xf9\x52\x5a\x17\x11\xde\xed\x78\xc9\xd8\xfc\xa8\xf4\x4a\x4d\xed\x0b\xe6\x6a\x38\xe4\x45\x67\xbb\x29\x57\x49\x29\x6c\x9a\x81\xcd\xcc\xe4\x28\xe7\x48\xad\x18\x7c\x43\x08\xd6\xca\x62\x0d\xbc\x1c\x57\x0a\xd9\xe2\x29\xf5\x09\x1e\xbd\x3f\x32\xe9\x29\xd5\xd8\xd9\x8c\x7e\x2a\x7e\xf5\x9e\xba\x3f\x7f\xca\x18\xfc\xc8\x7b\x62\x16\x0f\x6f\xa2\x39\xa1\x96\xfc\x54\x8c\xc1\xaf\xba\x7b\xcf\x97\xf7\x9c\x34\xa4\x97\x6f\x3f\x1b\x5b\x6a\x70\x7c\xc1\x62\xd6\x9b\xef\xda\x38\x13\xe9\xfa\xb3\x1a\x19\x7f\x53\x97\xe7\xe4\x82\x54\x82\x12\x6c\x31\xdd\x85\x96\x1c\xca\x86\xe3\x1c\xf6\x9e\x2f\xe1\xbc\xd4\x75\xea\xf6\x99\x86\x14\x4f\x20\x33\xaf\x00\xc0\x67\x0d\xf5\xd3\x08\x4c\x29\xc7\x47\x6d\x1c\x46\x26\xa6\x35\xca\xc6\x37\xa5\xe3\x75\xa5\x6e\xf1\xec\x15\x48\x1b\x2d\x98\xe5\x7a\xf4\x5d\x9d\x5e\xe2\xa6\x94\xb3\xfc\x08\xa5\xd7\x21\x08\x19\x3d\xeb\xae\xed\x15\x4a\xe1\x28\x58\xa1\xe9\x28\x3b\x13\xd5\xa3\x8b\xd2\x12\x73\x74\xb2\x6d\x51\x21\x13\xd3\xfa\xfa\xf3\x4a\xf3\xae\x7b\xaf\x6d\x43\xaf\xeb\xc5\x77\x8f\x20\x73\x52\x8f\x59\xb1\xdb\xfc\x00\xbc\x65\x40\x58\x8e\xa8\x9b\xe9\xa0\x84\xcc\xb3\xae\x58\xef\xd1\x9e\x90\x3f\x99\x3e\x54\xe5\x70\x8c\xfd\xe2\x94\x1f\x05\x45\xa0\x2b\xd6\xeb\x55\x53\xd5\x06\xc0\x15\x52\xb9\x68\x8e\x54\xf5\x91\xe1\x4c\xe1\x14\xd0\x22\x94\x4d\x12\x8c\xf0\xe9\xf8\x4b\x39\x3f\x4e\xc7\x01\xcb\x64\xca\xd7\xda\x8e\x50\x6c\x23\x96\x61\xdb\xaa\xcc\xaf\xc8\xb2\x3d\x33\x76\x79\x5b\x47\x4f\xd5\xaf\xda\x49\x4d\x9b\x69\x8c\xc0\x0f\xcb\x0f\xce\x2c\x7a\x58\x5e\x1b\xa7\x1d\xdf\xbf\xb6\x23\x35\x2d\x9f\x10\x88\xca\xcd\x51\x1b\xcc\xbf\xfc\x76\x36\x56\xf8\xc2\x81\xca\x08\xfc\xae\x7c\xbc\xf8\x4d\x65\xd5\xa8\x2d\x7d\x22\x3d\x98\x5b\xdd\xc7\xd6\x06\x0b\x2d\x40\x3e\x88\xf3\x65\xc7\x26\xa6\xb4\xae\x55\x6b\x98\x56\x17\xa9\xb5\x1d\xa9\x69\x81\x59\x43\x4a\xb6\xa3\x70\x9d\x2b\xe3\xea\x0f\xc9\xf0\x18\x90\x0e\xc9\x17\x72\x78\x6d\x2b\xf2\xfc\xd9\xb6\x66\xe4\xb7\x2d\x1e\x10\x6d\xbe\x64\xbd\xfa\x08\xa9\x17\x7a\x67\xaa\x4e\x55\x4d\xab\x16\xcb\xee\xd1\x09\x30\x4a\xe1\x98\xe2\xab\xd2\x11\x6e\xdb\xc6\x85\xb1\x7e\x7e\x66\xde\xce\x50\xe2\x11\x26\x64\x7b\x4f\xb3\xe1\x73\x53\x3a\x52\xd5\x6e\x0e\x0c\xe9\xcd\x51\x03\x8b\x5c\x17\x9e\xb5\x31\x58\xbf\x4f\x9f\x0f\xe5\xbf\x64\xb0\xbe\x24\xc1\x34\xde\x8e\x17\x1a\x13\xd2\xb9\x31\x3a\x0b\xad\xe7\xe9\xe7\x0b\x5b\x8f\x84\x17\x31\xfd\x9c\xf0\xa2\xb1\x4d\xb6\x30\x58\xaf\xb3\x87\x74\x97\x1d\xca\x46\x3f\x9b\x51\xf9\x2f\xce\xc2\x4e\xd0\x3d\x69\x39\x9f\x32\x41\x1b\xe1\x59\xa7\xb4\x18\xcf\x08\x50\xb1\x25\xa4\x38\x26\x13\x22\x15\x1b\x17\xc2\xf6\x72\xc1\xec\x1b\x57\x14\x66\xea\x0e\x1a\x37\xed\x38\xe6\x14\xe3\xd9\xca\xf2\x51\xd3\x8e\x45\x0e\x5f\xbe\x9d\x3a\x2c\x8e\xb4\x37\x4a\x16\xc9\xe6\x27\xe7\xed\x29\xdc\xae\x9b\x42\x9f\xbe\x52\x77\x5a\xd8\xa3\xf0\xde\xec\xa2\x87\x14\x27\x94\x50\xfe\xd1\x02\xe5\xe7\x7d\x03\x4a\xaa\x31\x9d\xe8\xa4\xdd\xb0\x70\xfd\x3a\x7d\xd6\xa7\x99\x7b\x63\xcc\xbf\xd3\xce\xf7\xe1\xdb\xcf\x99\xa3\xeb\xdb\x11\x05\xae\x50\xb7\x69\xd3\xd0\x94\x6f\x1e\x17\xf7\x90\x56\x9c\x98\x90\xba\xef\xac\x0d\x8b\x4d\xd7\x9d\xe7\x9c\x29\xdb\x72\x6f\x4f\x28\x33\xf4\xd3\x8e\x36\xf5\x08\x25\x2d\x8a\xb5\xfb\xe6\x34\x8a\x05\xf9\x36\x40\x3f\x06\xcb\x1b\xa6\xc1\x76\x78\x5b\x0c\x63\xb3\xbd\x1d\xd6\x7a\xb6\x90\x4e\xda\x9f\x2f\xb5\xe3\x5e\xe8\xe3\x37\x4a\x1f\xfb\xca\x0f\xdb\xc7\x0b\x93\xc0\xb7\x9d\xed\x4a\x2f\x7e\x47\xe2\x3f\x73\x42\x89\xab\x63\x1b\x7f\xe4\xce\x8c\x7c\x72\x7a\x89\x93\x3d\xff\xc1\xdf\xcc\x0c\x7d\xb8\x07\x67\xf0\x1f\xb8\x84\x11\x7d\xf0\x84\x21\x4e\x3f\xe6\x0b\xa4\xd0\x07\x5f\x17\xeb\xe2\xd7\xe2\x65\x84\xf2\x03\x15\x06\xef\x17\xe1\x33\x0e\x69\x5d\x36\xd6\x86\x3e\xfc\x38\x1c\xeb\x4c\xa7\xba\x36\x6a\x2c\xbe\x1e\x88\xdf\x23\xa2\x53\xfc\x95\x18\xd6\xce\xc5\xd0\xae\x50\x16\x84\xc8\x69\xbf\x08\xbf\x50\x8f\x7a\xf4\x5d\xdb\x43\xc9\x5f\xff\x7c\xa8\xf1\xd4\x7c\xc7\x78\x2a\xa4\xc6\x83\x02\xd4\x73\xf0\xda\xd8\xae\x1f\x9c\xcc\xd8\xeb\x5f\x8e\x45\x0c\xf6\x8b\x60\x66\x4e\xbe\xac\xd2\x0c\x29\xe9\x82\xbb\xd2\xf9\x16\x62\x6a\x7c\xfd\x3a\xac\x84\xb2\x38\x19\x21\xe5\xc1\x45\x8f\x91\x70\x61\x62\xce\x3b\xc3\xc2\x31\x11\x8c\xb9\x51\x44\xb3\xfa\x46\x71\xbc\x90\x44\x5f\x1c\x9f\xd8\x3b\x5c\x30\x22\x9b\x79\x23\x3e\x99\x4d\x5f\x30\x8e\xd7\x48\x5d\x6f\x1f\x8e\x5c\x5f\x27\xea\xcb\x1a\x7e\x71\x41\xb3\x2b\xbf\x0e\x06\xd7\x31\xdb\xf5\x6a\xfc\x00\x15\x7e\x93\xba\xbd\x69\x69\xc9\x06\x7f\x26\x0d\xcb\x9c\x5d\xfb\xc5\xa7\x94\xa9\xd8\xb2\xb3\x30\x0d\x7c\x4f\xd8\x50\x8b\x4e\x81\x70\x0d\xec\x76\xdf\x0c\x5e\x03\xa3\xfe\xcb\x66\x63\x4f\x7f\x9d\xf9\x71\xbc\xd2\xae\x57\x39\x85\x6f\x7f\x9a\xc2\xcf\xcd\x3b\x35\xed\xda\x40\x62\xef\xfd\x6c\x71\xd7\x50\x0a\x4a\x80\xf2\xf3\x83\xef\xf1\x82\x79\x7f\x0e\x6f\x3a\x59\x0c\x25\x33\xa8\x0d\x5d\xa8\x5c\x06\x23\x1e\xfe\x9f\x23\x84\x3f\x35\xbd\x27\xe0\xba\x1f\xe7\xe4\x91\x2f\x95\xd0\x07\x51\xea\xb4\x07\x0d\x59\xe0\xd7\xe1\xd7\xe0\x80\xa2\xd7\xe1\x23\xce\xe2\x1f\xbc\xc2\x92\xf2\x20\x1c\x8e\x24\x7d\xc1\x78\xfd\x79\xaf\x79\xd7\x65\x91\xe8\x54\xd8\xea\x96\x49\xd0\x95\x63\x41\x53\xfa\x7d\xf8\x78\xcd\x14\x2a\xfc\x11\x7b\x4d\x37\x90\x07\x8f\x7e\x6e\xd2\x3b\x98\xd9\xe3\xb2\x79\xa4\xd0\xaa\x91\x03\xb0\xef\x27\xaf\x81\x13\xe2\x27\xdc\xcb\x38\x52\xf8\x91\xc5\x96\x3e\x3d\x3c\x06\x24\x0f\x70\x4b\xab\x36\xd1\x06\xc7\x29\xee\x20\x33\x99\x5c\x47\x65\xe5\x2d\x44\x5a\x0a\xcd\x5f\x9c\xab\x7f\x58\x04\x1c\xa5\x7f\x00\x5b\xc2\x09\x86\x3b\x8c\x57\x7a\x95\x1e\xcd\xd8\x71\xbd\x78\xb5\xe7\x0b\x19\xe3\x19\x9b\x2f\x64\x8c\x35\xc1\x54\x9e\x82\xc3\xef\xee\x6e\x8a\xe1\x0f\x48\x4d\xe0\x53\xd8\x14\x13\x3b\x94\x04\xa2\xf7\xce\xd4\x05\x66\xc1\x55\x3b\x7d\x81\x79\x19\x71\xd4\xe7\xcb\xcf\x02\x7d\xeb\x7f\x93\xd6\x7f\x16\x22\xd3\xd9\x06\x78\xb4\x74\x93\x7e\xf2\x49\x5d\xdf\x54\xb1\x10\xf3\xe5\x15\x6d\x74\xba\xcc\x70\x1d\x6a\xb8\x2a\xe3\x5b\xde\x0f\x0c\x61\xe9\x95\x60\x4d\x1f\xb6\xfa\x7b\xda\xf1\x76\x3d\x32\x20\x73\xe3\x4c\x43\x32\xa5\xf3\x6b\xb6\xc8\x1b\x7d\x2a\xfe\xe8\x9c\x34\x6b\x10\x64\x26\x48\x08\x78\xa3\x4b\x6f\x4a\xce\x8f\x33\x35\xcd\x6d\xf9\x67\x6b\x8c\x16\x4a\xb6\x84\xb5\xfa\x3c\xf0\x76\xd2\xc7\xe1\x13\x94\xd5\xe4\xcc\xb5\xa4\x85\xdd\x3c\x58\xbe\x23\x24\x3a\xb5\x41\x5a\xa0\x9d\x69\xd8\x71\x82\xcd\xd5\xd3\x2f\xdb\x2f\x07\x81\xe9\xf3\x00\x82\x78\xd2\x91\xf5\xbc\xf3\x67\xde\x24\xfd\x76\x48\x2f\x0b\xdd\x4e\xfa\xb9\x20\x65\x61\xf5\xb4\xeb\xc3\x75\xda\xd9\x7a\x31\x97\x4e\x64\x2a\xf6\x7c\xf7\x71\x97\x8c\x4f\x67\x6b\x8e\x8e\x53\xaf\xd7\x2b\x87\xf2\x79\x38\xd1\xce\x8b\xb2\xa8\x16\x06\xa7\xab\xcf\xf6\x50\x97\xc2\x64\x86\x6a\x1e\x6a\x85\xf4\x50\x43\x69\x55\x3a\x13\xbf\x98\x2e\x26\x93\xd8\x24\x4f\xa9\x95\xea\x4c\xa9\x86\xd7\x18\x90\x8d\x8e\x2c\xc3\x66\x66\x19\x02\x1e\x57\xb8\x46\x2f\xdf\x4f\xa4\xd2\xd4\x25\x69\x75\x3c\xa4\x9b\x92\xe0\xb1\x7e\x9d\xa7\xbd\x6b\x03\x96\xf2\x35\xe8\x38\xd8\x38\xbc\x42\xb7\x27\x69\x9e\xbe\x23\xf2\x9b\xd5\x9b\xd4\xde\x68\xa9\x2a\xdd\x65\xfd\x39\x4f\xc0\x6e\x2c\xad\xe3\xfd\x5f\xa3\xfc\x19\xa3\xf0\xae\xcb\x3e\x67\x44\xe1\x99\x0a\xd9\x4d\x36\x48\x6f\xd7\xc2\x90\xec\x3a\x35\xc8\xf4\x26\xad\xd4\x61\x6c\xde\x8c\x3b\x65\xcb\x4d\x7a\x22\x18\xff\xd4\x2d\x16\x4c\x74\x2e\x06\x4c\xaf\x8b\x69\x61\x4c\x3e\xf7\xe5\xcf\x1d\xfc\xd8\xc1\x60\x6f\xb2\xba\x2e\x9d\xc6\x24\x0d\x29\x63\x76\xa4\x1b\x86\xcf\x78\x09\x64\x93\xb5\x41\x7d\x1c\x21\xcd\x3b\x25\x83\x90\x03\x0e\xd0\xc8\x3c\x1d\x4b\xae\x66\xad\xe4\x10\xa8\x19\x13\x46\x49\x61\x10\xd6\x12\x4e\x53\x72\x93\xf4\xc3\xa0\x74\x6e\x1c\x07\xd2\xf2\x74\xca\x72\xe4\xa3\x5f\x92\x5f\x8e\xfc\xd1\x67\x71\x62\x38\xc7\xfa\xb8\x49\x7e\x20\xa4\x78\xdf\x16\xc2\xd4\x93\xf0\x93\x37\x1b\x37\x29\xee\xb6\xda\x9f\xc5\x61\x2e\xb2\xfb\x1c\x8b\xff\x04\x29\x31\x1d\x8b\xdf\x71\x57\x6e\xaa\x79\x80\xa9\x6b\xb6\x3c\x52\xd7\x6a\xc3\x46\xff\xd4\x5b\xee\xbb\xa5\x0e\xf9\xd6\x93\xcb\xd4\xfd\xba\x2e\x43\xc2\x93\x9b\x52\x9f\xfd\xad\x68\xa7\x1f\x73\x57\x04\x89\xe3\xf1\x3b\xfa\xc8\x4d\xf9\xc8\x7e\x31\x40\x43\xa6\xf3\x2f\x5e\x72\x14\xa9\x9f\x76\x9f\xaf\x57\x5a\x95\xb0\x98\x69\x75\xb9\x30\xcd\xb2\x12\x69\x56\x0c\xcb\xae\x2e\x86\xc6\x1e\xa8\x94\x62\x95\x82\xba\x29\xf8\x10\x2e\xfe\xda\x5e\x5f\x04\x54\xb1\x47\x61\xa6\x4c\x06\x04\x32\xa7\x84\x17\x18\x9e\x1f\x49\x00\x60\x99\x8a\xbf\x7f\x9e\x00\x35\x66\xe1\xd9\x2e\x5b\xe8\xf2\x7d\x0c\xf2\xea\xb2\x0b\x88\xbd\xe7\x80\xfb\x8d\x4d\xad\xab\xe9\xda\x61\x5d\x07\xdc\x3f\x01\x71\x4c\x3f\xfb\xee\x4c\xb4\xe2\xe4\xd7\x0e\xd3\xe8\x11\x78\xed\x88\x27\x3d\xfa\x3e\x5f\x27\x0c\xa6\x77\xdd\x77\x3b\xd4\x15\x9e\xba\xc3\x42\x97\x80\x2d\xaf\x13\x9d\x7b\xf9\x75\x0c\x47\xb1\x79\x11\x78\x68\xe4\x53\x1d\x15\x4a\xea\xde\xab\xc2\x35\xcf\xbc\x9c\x4f\x10\x09\xae\x6b\xeb\xda\x5f\xa1\x94\x7b\xbb\x32\x3c\xdf\xae\x1d\xa8\xca\xcb\xef\x84\xb1\xe0\xa7\xe2\xe6\x1f\x85\x43\xdc\xbc\x88\x51\xc4\xaf\x88\xa1\xc6\x81\x5a\xbd\x1c\xf7\x0c\x1e\xf6\xf5\xf7\xeb\xcc\x60\x75\x5b\x7a\x02\x06\x99\x97\x53\x60\x66\xde\x75\xca\x3d\x5f\x6c\x8e\x2b\x16\x69\x46\xa8\x14\x9d\x25\x85\x9e\x78\xd6\x48\xef\x88\x2f\x84\xa5\x2e\xca\xcb\xf1\x50\x0a\x79\xdb\xfe\x8c\x17\x7e\x57\x3d\xf5\x00\x85\x2e\xa4\x98\x22\x65\x7d\xc1\x7e\x72\x90\x9a\x97\x2c\x5b\xbc\xce\x53\xf7\xed\xd7\x09\x97\xea\xa5\xf9\x5d\x35\xa4\xee\x51\xe0\x52\xbf\x3b\x2f\x99\xbb\xed\xdf\x60\x02\x1c\x8c\x8f\x23\xcd\xac\x83\x35\xe9\x90\x96\x33\x34\xa4\xa7\xe6\xb5\x23\x70\x15\xc8\xbf\x76\xa6\xae\x0e\xa6\x79\x42\x5a\xea\x9c\xf9\x72\xaa\x6e\x81\x5a\xa2\x4e\x28\x65\xf4\x6f\x29\x73\x54\xad\x94\x89\xbd\x8f\x8c\x0e\x79\x74\x41\x2a\x5b\x26\xdb\x8b\xdb\x7f\x27\x52\xbf\x49\x5d\xb9\xc2\x3e\x15\x35\x59\x42\x2a\xc8\xd6\x99\x2f\x3d\xf4\x33\x85\x36\xb3\xe9\x73\x7a\xac\x0d\x6a\x8b\x62\x00\x42\x88\xcf\x9e\xef\x3e\x02\xd4\xa5\xcc\x6e\xb7\x9a\x3e\x7e\xee\x83\x56\xfd\xcc\x60\x86\x3a\x5c\x48\x5d\x89\x52\x3f\x43\xba\x29\x4f\x3a\x13\xe9\x5c\x9a\x95\xe1\x48\x92\xc6\xca\x11\x2e\xa0\xf6\xac\xc0\xf2\x94\xa7\x4c\x69\xf7\x32\x38\xbd\x18\xeb\xf9\x61\x99\xe6\x84\x3b\xb8\x49\xcd\xf9\x33\x52\x2b\x7e\x56\x59\x7a\x93\x23\xef\xac\x76\xed\x38\x90\xda\x4d\x32\xc9\x7c\x69\x66\x46\x12\x38\x6f\x40\x7f\xa8\x6a\xe9\x9c\xaa\x62\xa5\x33\xcd\x2a\x21\x34\x96\xae\xd3\x08\xf4\xcc\x0d\x46\xfd\x95\xf1\x78\xc3\x96\x7c\x29\x89\x8b\xe0\x6c\xbe\x59\x1b\xa8\x1d\xbd\xca\xaf\x1d\xfe\x68\x76\xc0\x81\xd2\x99\xcd\x0c\x0a\xbb\x36\x33\x28\xf3\xda\xf4\xa0\x1a\x3c\xcd\x6c\xf6\xb9\x1f\x25\xad\x3a\xc9\x71\xa8\x9f\x28\x1a\xc5\xae\x43\xcd\xf8\x51\x7e\x4b\x8f\x52\xda\x1d\x8e\x14\x82\xe1\x1e\x0e\xed\x4c\xfb\xf9\xd9\xec\xcd\x4c\xc8\xc4\xea\x2d\xfd\x5d\x37\xcd\x6a\xbd\x58\x04\x40\x0a\x07\x66\x50\x93\x22\xee\xac\x7b\x43\x11\xd7\x90\xd2\x33\x4c\x9e\x5f\xe1\x9f\x9c\x21\x1c\xc3\x7f\x1c\x58\x32\x8e\xe1\x0f\xaa\x73\x0a\xc1\x50\xae\x1a\xca\x7d\x30\x74\x4e\xe7\x35\x1f\xba\x0f\x86\xb3\x6d\x9f\x62\x10\xf9\x11\x7e\x7f\xfa\x98\x92\x7e\x0c\x6e\x5b\xd9\x67\x49\xa4\x5b\x5f\x07\xe7\x06\xbd\xc9\xaf\x1d\x8b\xad\xf9\xb6\x75\xe4\xcb\x9f\x3b\xf1\xf0\x3a\x32\x0d\x2b\x46\xb0\x88\x7b\x0e\x2a\xa4\xb8\xa2\x84\xf2\xaf\xfc\x7d\xbb\x39\x3b\x57\x69\xac\xbc\x9e\xf6\x97\x8a\x76\xe8\x46\x93\x1d\x48\x2a\xbd\xed\x3f\x2f\xec\x3e\x27\x0a\xe8\x4f\x99\x5f\xe3\x61\x41\x76\x4b\xbc\x67\xb0\x86\x67\x8d\x0c\x8f\x3f\x83\xd4\x9d\x4e\x7f\xa8\xe2\x42\x06\x24\x38\xe5\xc9\x69\xbc\x5b\xbf\xc3\xc3\x9d\xeb\xfc\xa7\xd0\xf0\x8f\xb4\xa3\xad\xf0\x34\xa3\xa0\xf9\xb0\xb0\xe1\x15\x33\x27\xfe\xce\xf1\xf1\x29\x95\xb6\xc7\x1a\xea\x28\x74\x2c\x30\x3d\xc9\x2f\x33\x83\x35\x5f\xe6\x43\x3c\x10\x68\xa1\x6e\xb7\xd1\x51\xf3\xa5\xee\xa3\x66\xbe\xb4\x82\xe0\x78\xd1\x7d\x45\x70\x3c\x9f\x5a\x9f\x21\x58\xf4\xd2\xbe\x02\x97\x9c\x1d\x79\x05\xdf\xfa\x35\xfd\x4c\x43\x48\x96\xa7\x50\x8b\xc4\x4e\x31\x1e\x03\xf8\xeb\x04\x73\x31\x68\x56\xf9\x00\x2a\x40\xd5\x39\xc8\x7e\x83\x35\x3e\xec\x3d\x38\x9e\xba\xe6\x9a\x96\xca\xfc\x69\x85\x34\x96\x0b\xd1\x3f\x2c\x94\x98\xec\x81\xc3\x87\x21\xe9\x9d\x7c\x05\x5d\x39\x07\x5c\xd4\xd2\x8d\xb8\x88\xf5\x1d\xb0\x0d\xac\x3a\x30\x04\x91\x84\x3c\xb1\x3f\xd2\x0d\xe7\x85\x74\x83\x8b\x31\xfd\xf0\x66\xa5\xa5\xd4\x1a\x39\x1d\xc9\x63\x00\x40\x70\xea\x41\xfc\x79\x82\x7e\x9b\x7e\x11\x0f\x80\x6b\x0e\xce\x81\x19\xb0\x34\x19\x59\xf6\x6f\x52\xaa\x8c\x55\x74\x26\x80\x71\xa4\x53\x8c\xb6\x92\x52\x3b\x55\x32\x7e\x2f\x39\x86\xec\xe0\xe4\x9f\x5e\x7d\x2d\xe4\x1c\xaa\x37\xe9\x21\x85\xf2\x31\x30\xc3\x77\x3a\xa4\xfa\x94\x6a\xbe\xf1\x1f\xe9\xb1\xfb\xdd\x90\xdb\x15\xa4\xe3\x1e\xd2\x05\x69\x46\x43\x85\x09\xd3\x51\x72\xec\x33\xa4\xe3\x1a\x2d\xe4\xe5\x4f\xd3\x92\xaf\x49\x19\xbf\x11\x1e\x20\x35\xa6\x43\xf7\x8f\xe3\x21\xed\xe7\x61\x4c\x13\x67\x13\xbc\x25\x90\xc7\x91\xe1\x3b\x92\xff\x95\xf9\x36\xc8\x23\x42\xda\x91\xfb\xc7\x81\xec\xd7\xdb\xf8\x02\x70\x63\x1a\xc6\x01\x08\x66\x0a\xc6\x71\x0f\x97\x66\xe5\x4e\xea\xcf\x87\xec\x3e\xfe\x1b\x58\x2f\x47\xc4\xb9\x98\x5f\x5a\xf2\x1a\xf7\xd4\x55\x43\x9c\xed\x27\x6b\xca\x8a\x4f\x36\x79\x0f\xe9\x53\x76\x26\xdf\x2b\x9e\xe9\xc5\xf5\x93\xff\xd6\xc1\xaf\x8f\xff\xe0\x5a\x99\x68\xae\x4c\xbd\x8d\x12\x6c\x1d\x47\xfd\xef\xa8\x18\x45\xfd\x27\x8a\xc9\x4d\x29\x64\xc6\x95\x1e\xfd\x27\x29\xd3\x4d\x72\x96\xc8\xe1\x33\xf1\xca\x0a\xb7\x51\xb9\x25\x9d\x8b\xc7\xd5\x1c\x9a\x05\xdc\x18\x59\xbe\x65\xc5\x84\x60\x10\x8c\xa3\xc4\xdf\xb2\x30\x65\x4a\x0a\x9d\x03\xa5\x40\x29\x0c\xc8\x2b\xcd\xf8\x2f\xf2\xa1\x58\xfa\xe9\x50\xd2\x1b\x8b\x79\xf9\xca\x8a\xb9\x58\x3e\x2c\x72\xb6\x5e\x61\x97\x0a\xa9\x89\xc2\x98\x15\xda\x63\x84\x05\x96\xf1\xb0\x4f\x33\x76\xe8\x3d\x7d\xd8\xeb\xcb\x68\x30\x91\xb1\x06\x16\xc7\x43\xbc\x88\x0b\x1f\x13\x0e\xbe\x65\xb7\x74\x4f\x5d\xa3\x24\x33\x04\xe7\x8d\xff\xb7\x54\x93\x8e\x04\x76\x56\x81\x71\xc0\x69\xcb\xcc\xc3\x4a\x2e\x0b\x04\x4e\xfb\x02\x7f\xdc\xcd\xf2\xdb\x5b\xd9\x7f\x6a\x28\x3a\xa1\x4f\xb2\xd7\xba\x50\xe8\x8f\xfb\x5f\x0a\xe4\xcd\x84\x5c\x7a\xcd\x6d\x28\xe6\x15\xca\xbb\xa2\x87\x54\x98\x69\x8c\x44\xbd\x8c\x3f\x4e\xb6\xc1\x66\xfb\x8f\x74\xb2\x64\xb0\xa5\x0f\x7b\x72\xae\xd4\xb5\x37\x8f\xe1\xe9\x69\x7c\xe5\x9e\x6d\x6e\xcc\x0a\xa4\xad\xb1\x21\xdc\x3f\xcd\x4d\x3c\x28\x98\x74\x6b\x75\xb9\x66\x9b\x02\x8e\x94\x03\x8f\xec\xc6\x4c\xcd\x5f\xcb\x99\xc4\xa5\xec\x54\x26\x83\x5a\x10\x14\xce\x5c\x30\x5e\x69\x54\xa8\x2d\x38\x4f\x28\x92\x7b\xe8\x54\xd5\x53\x47\x6e\x89\xe6\x5e\x86\xc7\xd2\xa3\x50\xd2\x57\x49\x59\x55\xcd\x7c\xc7\x72\xa5\xb0\xab\xb0\x43\x59\x87\xb0\x81\x9d\xf3\x20\x77\x30\x7e\xb5\x3f\x6b\xa6\x92\xbb\x8a\xfc\x96\xf8\x67\x70\x04\xdc\xbc\xde\x40\x16\x6d\x02\x38\xcc\x94\x4a\xae\x72\xba\xf6\xa3\xfe\x68\x85\xcd\x79\x1e\xa3\xc7\x58\x95\xfe\x7c\xc8\x54\x32\x78\x69\x1b\x30\xf1\x73\x73\xd7\x99\xf1\xc9\xdc\xcd\x19\xf9\x3d\x18\x50\x83\x3c\x64\x6b\xa6\xf0\x52\x3b\x05\x8a\x11\x0c\x48\xcd\xd0\xd3\xce\x10\x75\x40\x09\x47\xde\xf3\x21\x1b\xac\x43\x6e\x43\x96\xa1\x8c\xcb\xaa\x50\x3e\xf8\xb2\x6f\xdf\x18\x1b\x78\x92\xde\x38\xa8\x91\x79\x6f\xde\x63\xe3\xf8\xf2\xdb\xfc\x71\x8c\x7c\xeb\x49\xf8\x0f\x7e\x94\x37\x67\x22\x36\xe7\xdb\xdc\x76\xa4\x97\x9f\x0e\x16\x0c\x50\x67\x6f\xf0\x96\x33\x20\x17\x38\x5a\x20\x97\x3a\x8e\x54\xb5\x09\x80\x8e\x32\x8e\x25\x57\x58\x7a\x8b\x7f\x0f\x36\x5f\xda\xe1\x0c\xf7\xbf\x31\x44\x11\x33\x6f\x74\x4b\x7a\xdd\x96\xa0\x6c\x00\xbf\xb7\xbf\x06\x8b\xff\x86\x17\xd0\x68\x6f\xbc\x39\xa9\x6b\xb5\xce\x14\xd9\xfd\x0c\x2a\x6f\x3a\xd3\xc2\x04\x2b\x3d\x3f\xce\x38\xc3\xf0\x3f\xc3\x4b\x81\xb1\xf9\xc1\xd2\x40\xc1\x7d\x1c\x26\xb7\xe7\x4b\xb1\xc6\x19\xca\x86\x06\x9b\x47\x6f\xf5\x6f\x92\x86\x58\x62\xcc\xcb\x0f\x06\x24\xf2\x43\x6f\xec\x6b\xee\xb8\xfc\xc4\x3e\x17\x3c\x1f\xae\x1c\x7a\x48\x46\x0f\x29\xb7\x48\x43\x0e\xe8\xd9\x7c\x1f\xb0\x95\x80\x2d\xe5\xe4\x70\xf8\xe1\x5c\x3b\x52\x28\xb1\x70\x86\x72\xe0\x7e\x06\x00\xe8\x65\xe4\x4b\x31\x3d\xd7\x68\x1f\x82\xdf\xb6\x74\xe9\xc1\x86\xb2\x89\xcd\x9a\x39\xd3\xc1\x09\x62\x6c\x82\x6b\x19\x99\x6b\x41\xcf\x06\xa6\x2f\xd9\x0b\x78\x6c\x3a\x3f\x18\x8f\x6c\x7d\xde\xd5\x03\x6c\x9c\x7a\x57\x5f\xc7\x99\x86\x7e\xa2\x3c\xdc\xaf\x63\x89\xf2\xda\x73\x82\x56\x01\x99\x3e\x85\x41\xa9\xa3\xa4\x50\xed\x60\x25\xfb\x89\x7b\x6e\x82\x0c\x39\xe9\xb9\x6c\x00\x72\x02\xd0\x6a\x7e\xf1\xfe\xce\x94\x7a\x57\xe2\x33\x75\xea\x81\xdc\xfd\xf8\xd5\xfa\x38\xd1\x6d\x7a\xb5\x5e\x73\x87\x64\x00\xca\x38\xf9\xef\xaf\xdd\xb6\x67\x46\xbf\xf4\x74\x36\x83\x67\x61\x66\x3e\x9d\x5e\x8a\x06\x49\x12\xad\x7c\xaa\xe7\x45\x4f\xa7\x1f\xd9\xd7\x29\xf3\x46\x6c\x69\xc8\xcc\x8a\x56\xd0\x9b\xf6\x9a\xdb\x28\x3d\x69\x3f\x49\xa0\x71\x93\xe2\xaa\x23\x94\xed\xaa\x0c\x41\xf6\x60\x2e\xa3\xf2\xa6\x7d\xa6\xd0\xeb\xcd\x32\x59\x7a\xe3\x80\xf8\xb2\x29\x67\xbe\xd4\x8a\x22\x3c\x7f\xb8\x58\xd9\xcf\x3f\xef\x3b\xec\x86\x1f\x70\x4f\xc4\xe3\xcf\x4a\x1c\x0d\xff\x9b\x3e\x5f\xb3\x2c\x3f\x76\x21\xd6\xd4\x0f\x87\x52\x4b\xa9\xdb\xad\x50\x6a\x37\x8e\xb2\x9f\xb7\x28\xea\xd7\x99\x03\x62\x97\xff\xa4\xc5\xe3\xc2\xfa\x2d\xf8\x8f\x21\xe8\x4c\x9f\xc9\x14\x4e\xa4\x0e\x94\xcb\x2f\x8b\x4d\x97\xcb\x79\x1d\xfe\x7e\xf8\x33\x7f\x5c\x18\x23\x98\x04\x22\x29\xbc\x8d\x9d\xbc\x71\x6f\x29\x5b\xee\x24\x23\x78\x9b\xcc\x68\xfd\x24\x33\x94\xf8\x16\x45\xf4\x73\xa8\x03\x64\xb9\x9f\xbc\x5f\x63\x84\x3c\x3c\x3f\x07\xa4\x72\xae\x20\xa5\x02\x3f\x41\xfa\x09\x61\x72\x9e\x00\x04\xe7\xcf\xd7\x83\x27\x96\x85\xde\xb9\x57\xce\x59\x4b\x79\x0d\x4e\xe0\x27\xcb\x79\x0c\x86\xb3\x78\xdf\x24\xbf\xdd\x20\xa7\x4b\x0f\x48\x37\x14\xea\xe3\xc2\x13\xd2\x2c\xdf\x29\x9d\xe6\xea\x4e\xa9\xcd\xbb\x1a\x4a\xeb\x32\x42\x09\x0a\x69\x2f\xf1\x7a\x4d\xfa\x64\x80\xd3\xca\xa5\x43\x7a\x6f\x5b\xd5\x2c\x41\x4a\x06\x66\xd0\x7a\x39\xa8\xc9\x18\x34\xc4\xd1\xff\x29\x55\x34\xe7\x8c\xc0\x20\x21\x7b\xb4\xd7\xcb\xd0\xd1\x8b\x49\x60\x05\x0f\x3e\x64\x5d\x26\xa5\xb2\xae\x40\xf3\x2c\x41\x41\x48\x30\x79\x53\x96\x61\x93\x39\xf0\xfe\xe4\x0d\xc8\x12\xfa\xa3\xe0\x85\x59\x42\x7f\xc4\x31\xb1\x0c\xf0\xe8\x9c\x91\xd6\xc1\x81\xdc\xca\x78\x1d\xba\x8c\x73\x30\xee\x9b\xea\x1e\x5f\x0a\x59\xfc\x94\xda\x0a\xb1\x92\x5a\x7a\x59\x3e\xea\xd3\x90\x93\x80\x58\x2a\x2c\x83\x3f\x88\xb3\x7c\x93\xde\xbe\xb6\x43\xd6\x61\x47\x1b\x8f\x56\x96\x70\x1a\xa7\xd3\x56\xdc\x14\xcb\xed\x3f\x3f\x98\x6c\x96\xf4\x30\x4e\x37\x43\xe2\x0e\x7d\xa6\xd0\x1b\xe6\x48\xa9\x42\x44\xb4\x14\xca\xc7\xfa\x62\xf4\x0e\xbc\xfa\x2f\x29\x41\x9f\x21\x68\x25\xca\x43\xc9\x6a\xaa\x8c\x7d\x0b\x07\x94\x49\xf0\x0e\x68\xfc\xa6\x65\x21\xef\xc1\xd7\x89\x33\xf6\x80\x92\x84\xb5\x46\x5d\x8a\xd4\x5f\xc0\xd3\xad\x73\x30\xf0\x01\xe9\x56\x4f\x28\x69\xd0\x33\x1f\x6a\xa3\xdb\x63\xb5\x8c\xb5\x38\x41\x57\x2e\xe1\x27\xca\x05\x13\x3b\x52\xbf\x73\x75\xdf\x94\x45\xd6\x41\x3b\xde\x1b\x70\xa6\xa0\x15\x17\x88\xc2\xc5\x9b\x72\x8c\x93\xe5\x58\xfc\xb8\x74\xd6\x69\xb7\xa8\x53\x36\xdd\xa4\x9d\x64\x33\x23\xb0\xc6\x3c\x19\xfb\x42\xd6\x34\x48\x09\xd1\x46\x5d\x84\x28\x4c\x22\x78\x44\xe1\x35\xc9\x3a\xb9\x2b\x1f\x8c\x5e\x6e\x31\x10\x03\xeb\xf4\x01\xa7\x85\x32\x63\x3e\x85\x02\xd8\x13\x7d\x60\xf9\x79\x3a\x1e\x93\x65\x6c\x44\xe7\x0a\x7e\x9d\x91\x85\x4c\xe7\x36\x9f\x8e\xbf\x05\xf9\x72\x58\xff\xd9\x9e\x96\xb4\x93\x1a\xc3\x75\x5a\x4c\x64\x02\xa8\x0a\xe7\x5e\xb9\x49\x2d\x6f\x4f\xa1\xe5\xd0\xc8\x10\xb4\xbe\x08\xbb\x73\xb3\xbe\xee\xa4\xf8\xe4\x0d\x0f\x39\x40\x3f\xe7\xa6\x55\xcc\x5f\x2d\x35\x7d\xed\x37\x52\x95\x8d\x72\x41\xa2\x22\x53\xaa\xe9\xec\x29\x94\x7e\x6f\x29\xb3\x15\x6b\x0b\x63\x15\x6e\x29\x6d\x19\x2c\x41\x37\x8a\xe3\xfa\xde\x94\xcc\x30\x6b\xfb\x55\xd8\xf4\xf0\xb8\x60\x1d\xc7\xc4\xf1\xb6\x0c\xeb\xc0\x31\xb0\x8a\x9d\x2e\x40\xc6\x97\x50\x1e\x27\xc9\x20\x6e\xd2\xe3\x4b\xbb\xf6\x05\xb0\xe9\x0b\x9e\x15\x18\xb0\xe0\x6d\x9f\x54\xe6\x12\xf1\x64\xf8\x3e\x36\x23\x3e\x84\xc7\x28\xdc\x84\xad\x00\x30\x32\x47\xcb\xab\x94\x0f\x75\x1d\x3b\x99\x14\xdb\xc3\x0e\xc2\x76\x93\x96\x51\x99\x23\x0b\x8c\x9e\xba\xfc\x0b\x7d\x1a\x14\xec\x70\x34\x37\xb9\x4d\xf2\x33\xba\xf9\x19\xc8\xc9\x22\x79\x32\x38\x08\xac\x02\x33\xf0\x6b\x84\xde\x07\x90\xb1\x2e\x8e\xc6\x17\x14\xbd\x0e\x48\xfd\xb7\x8d\xf0\xe5\x47\xfc\xb3\x3d\x5f\xfa\x96\x8f\x66\x7d\xd5\x7c\xa2\x3f\x2e\xaf\x29\xe2\xd7\xe1\xf3\x31\xa5\x97\x5f\xf8\x47\x6a\x1a\x2a\x71\x02\x25\x5c\x97\x1f\x1f\x3b\x11\xd4\x4d\xbe\x3d\xda\x34\x24\x29\x0f\x1c\x70\x5d\xf6\xad\xb6\x94\xda\x67\x02\x72\x6f\x19\x02\x31\x78\x41\xb3\x84\x81\xa8\x5c\x50\x2c\x50\x0e\xc0\xd6\xd6\x65\xd1\xe0\x63\xe0\x72\xd0\x7c\xac\x99\x65\x90\xc3\xc8\x14\xc9\x80\x3a\x81\xb4\xad\x0b\x8d\x80\x79\x70\x39\xb3\x2e\x2b\x41\x74\x80\x99\xba\xc6\x69\x02\xbb\x58\x97\x6d\xe9\xe3\x15\x52\x13\x81\x52\xb8\xb2\xc2\x8c\xc1\x4f\x71\xb0\x49\x2e\x9f\x8e\x26\xf2\x51\x91\xf1\xcf\x92\x5f\xd9\x4c\x8a\xbf\x14\x7c\xa1\xc6\x82\x52\xd4\x81\x0e\xe2\x73\x55\xbf\xda\xe1\xc5\xda\x72\xd8\xfc\x13\xe0\xdc\x72\x48\x82\x6b\x22\xe5\xaa\x33\x7f\xbe\x9e\x76\xfb\xdd\x12\x42\xc5\xd8\x06\x8c\xc3\x25\x68\xc3\x99\xdd\x53\x51\x53\x3e\x67\x2d\x47\x2f\x38\xc1\xe3\xad\x6a\x5d\x74\xa4\x17\x89\x86\x6c\xf0\x6a\xab\x0d\xaf\xee\x52\x80\x82\x1a\xbd\x5d\x9d\xca\x88\x27\x75\xcb\xe1\x0a\x62\xeb\x28\x5c\xc1\xc9\x6d\xcf\xaa\x36\xf5\x47\xa8\xe1\x01\x5d\x90\x5a\xfb\x99\x2e\x3f\x7a\x1e\xf2\xb7\x83\x65\x09\xcf\x70\xe2\x8e\x5e\x82\x33\xd4\x81\xe8\xac\x36\x0c\x11\xcf\x86\x2f\xf0\x0a\x66\x09\xb0\x70\x5e\xb0\x57\xf5\xcd\xde\x59\x52\xa8\xd4\x2e\x2c\x66\x0d\x9b\xa6\xd5\xed\x5f\xe6\x47\x8c\x18\x46\x37\x83\x35\x38\x0b\x7d\x0a\x32\x70\x64\xe1\x1d\x21\xf3\x95\xa5\xde\xfe\x67\x96\xc4\x49\x62\x80\x0d\x2e\x42\xf7\xb7\xa7\x5d\x6f\x3a\xf6\x7d\xf5\x59\x0d\x79\xa7\xa0\x08\x95\x18\x49\xcb\xf0\x02\xae\x71\x97\x22\x24\x5c\x1c\xe3\x96\xd1\x05\xdc\xe2\x2e\xc3\x09\xa2\x1f\x9a\xaf\x69\x26\x03\x70\x48\x04\x92\x22\xde\xe4\x47\x8f\x13\x42\x29\xa8\x1f\xeb\x2c\x74\x41\xc1\xb5\xbe\x1a\xfc\xc2\x6e\x6c\xc6\x04\x02\xfb\x5b\x82\x17\x0c\x1c\x41\xab\xa1\x3c\x7c\x3e\x5d\x8e\x90\x70\x4d\xfe\xd2\x71\xfc\xaf\x99\x21\xd8\x83\x3f\xd2\x10\xe3\x63\xf4\x42\x1b\x44\xb9\x35\x7b\xe5\x9d\x09\xf5\x26\xe5\x81\xcd\x97\xd6\x24\xc8\xe2\x66\x6b\xe5\xc8\xec\x39\x00\xd2\x89\x75\xd5\x2c\x93\x66\xda\xf1\xd2\x9f\x29\xbc\x15\x7e\x54\x49\x73\xc2\xc9\x9c\x59\x04\x54\xe8\x3d\x93\xb2\x15\x37\x92\xad\x60\x64\x42\x14\x89\x91\x09\xe3\xbc\x42\xf2\xd7\xcc\x1f\x42\x28\xf3\x47\x06\x53\xfe\x5a\x6a\xa6\xb4\x54\xfd\xc9\xf9\xe4\x2e\x1d\x76\xa1\x60\x51\x76\xdb\x1f\x76\x70\x2d\xa7\x03\x18\x27\x36\x3f\x98\x01\xde\x9a\xae\xce\x61\x02\x36\x21\xe6\x7f\x04\x9f\xc3\x30\xf0\x14\x69\x91\x01\x80\xc8\x62\xab\x3b\x4a\x7a\x0d\xc5\x94\xf8\xb7\x15\xb9\xff\x78\x46\x34\x8d\xcc\x64\xb4\x78\x7e\x8e\x90\x55\x9d\xd0\x8e\xa1\xa3\xe7\xc5\xe8\x9d\x60\x30\x9d\x4c\x46\x90\x42\xeb\x86\xa7\x21\xeb\x06\x96\x4c\x81\x17\x4e\xae\xae\x57\x47\x59\xa5\x50\x0e\xfe\x89\xa0\x73\xac\xfe\xf3\xc8\xa4\x2c\xaf\x59\xbe\xbc\xf4\x52\x9d\x19\x5a\xd6\x22\x98\xce\x8e\xd9\x80\x2b\x74\x39\x66\x43\xf4\x84\x41\x03\xbc\x3e\x58\x0a\xdc\x7f\x4f\x7c\x3e\xdc\x1e\x6c\xba\x7c\xeb\xcb\xb4\x63\xe3\x38\x75\xe5\xe7\xbb\x10\x2d\x8e\xd5\x7f\x1e\xd8\xa9\x0e\xe9\x70\x1e\x18\x65\x0a\xe2\x70\x70\xc7\xb0\xba\xe1\xa0\x07\xaa\xc1\xa8\x81\x9c\xe8\x06\xea\xe8\x0c\x59\x3c\xb9\x1d\x52\x88\xc6\x98\x56\xc3\xa6\x2a\xa8\xca\x25\x98\x40\x8d\x00\x19\x4e\x0e\x3e\x8f\xf1\xb7\x14\x1f\xa8\x27\x0e\x5c\xc2\x10\x94\x98\x89\x60\x08\x78\x88\xbc\x8c\x21\x88\x8c\x18\xb2\x80\x78\x93\xb1\x86\x5f\x2e\x10\x9b\x6d\x0d\xe1\xe9\xb2\x07\x07\xc2\x06\xd3\x5e\xb1\x23\x3a\x2f\x98\x97\x43\x47\xf0\x7e\x78\x0d\x2c\xa0\x1a\x52\xc1\xb9\x47\x28\x19\xd2\x84\x78\x5b\x06\x17\x64\x03\x28\x30\x7f\xcd\x6e\x1d\x8b\x65\x61\x78\x8b\xf9\x1a\x90\x16\xf9\x6c\x58\x00\x03\x04\x71\x5b\xc3\x51\x71\x4a\x28\x6f\x25\x6c\xbb\xe1\xdb\x9e\x96\x35\x14\x0c\xea\x59\x25\x67\x1f\x61\x87\x0e\xe1\x86\x9f\xd1\xfa\x6d\xff\x59\xf3\xa1\x17\x09\xa6\x52\xec\x88\xbb\x59\x16\x54\xfe\x42\x42\xe8\x2d\x63\x0b\x4a\x4b\xb3\x3e\x4c\xa6\x4c\xa2\x30\xf3\x6e\x3f\x06\x1b\xc9\x20\x04\xae\x40\x96\x41\x07\x3c\x79\x5d\x8e\xb8\x9f\x5f\x9e\x91\x43\x1d\xd2\xc6\x0f\xbc\x38\xc9\x74\x7b\x41\x59\x48\xe1\x00\x99\xf6\x78\x80\xb8\x5b\xd3\x42\xea\xf9\xf2\xed\x86\xf2\xa9\x10\x91\x3d\xbd\x28\xf6\x1b\x27\xd2\x99\x94\xa8\xa6\x64\x51\x83\xa9\x5b\xd3\xbe\x4b\xe0\xb4\x6b\x22\x95\xb0\xbe\x15\x82\xa2\x66\x26\x27\x2e\xab\x9a\x86\xec\x3f\x42\xf0\xcc\xc9\x52\xd3\x29\x47\x6f\xec\xce\xe9\x40\x9b\xe5\x08\x69\xc0\x22\xdd\x20\x6b\x0a\x9f\x62\xb9\x70\xc4\x57\x44\x88\x4a\xd8\xb1\x35\xf1\xaa\xa0\xb5\xa7\x9f\x22\xc0\xd4\x33\xec\x46\xbb\x72\x40\x13\x2c\x6c\x19\x73\x10\xef\xd2\xf4\xb5\x10\x6f\x75\xd6\xf4\xfd\x33\x8c\x30\xd1\x57\xcf\x97\x1e\x01\x3f\xea\x1b\x86\x9e\x0f\xb5\x75\xe1\xe1\x89\x4d\x93\xd9\xbd\x99\x86\x50\xcf\x7d\xad\x01\x83\x0f\x48\x45\x1b\xc5\xac\x5a\xa8\x2f\x46\x20\x10\xc2\x09\xc2\x7e\x2d\xc7\x67\xb4\x3f\x75\x09\x84\x70\x4b\xcd\x34\xdb\xdc\x6c\x4a\x25\xb1\xd8\x63\x0b\x29\x04\x2b\x2c\x8c\xe4\x74\xca\xe9\x0a\x53\x73\x61\xe6\xc0\x29\x8a\x3b\x71\xf2\xdc\x6a\x39\xee\x44\x9f\xf9\xd2\x6c\xcd\x7f\x2f\xeb\x36\x38\xd5\x28\x05\xe2\x74\xad\x65\x26\xe2\xb8\xe4\x8c\x01\x04\xf8\x5a\x8b\x83\x17\x46\xcd\x72\x5c\x5e\x84\xba\x61\x09\x57\xe6\x7d\xf9\x75\x4b\xa6\x7a\x99\x2d\x98\x69\xc3\x12\x40\x5b\x2c\xc2\x57\x00\xb1\x5f\x0e\x58\xd1\x32\x07\x8a\x57\x71\x9b\x38\x7f\xca\x70\x23\x16\x66\xe6\x63\x33\x00\xa6\x56\x1c\x34\xdb\x43\xfa\xa7\x19\xac\x1f\xb6\x10\xff\x71\x29\x49\xc0\x91\x23\x23\x78\x86\xf6\x90\x3e\x58\xf7\x34\x24\xe1\x8b\x1d\xb3\xd1\x56\xa1\x2e\x95\x1d\x50\x9a\x75\xec\xba\x6d\xa7\x76\xa6\x56\xe1\x2c\x2a\x2f\xa6\x96\xe3\xfe\xbf\x08\xcd\xb5\xb6\x4f\x52\xc7\xf3\xe9\x52\xdd\x14\xca\x53\xc9\x9e\x22\xf0\x05\xd8\x87\x65\x74\x03\xb1\x8b\x96\xd1\x0d\x1d\x68\xef\x52\xdc\xff\x4a\xac\xa2\xa5\xb0\xff\xa3\xa6\xcb\x9b\x9b\x2e\x9e\x39\x2c\x27\x01\x98\x0f\xe5\x1f\x19\x50\x66\xd2\xfc\xa5\x35\x55\x4b\x33\xea\x1f\xc9\x2b\x70\x43\x07\xa9\xb2\x0c\x6e\x00\xcd\xbd\x84\x66\x38\x2f\x2c\x52\xe1\x17\x4a\x9c\xb1\xc2\x2f\x54\x62\x77\xae\xed\xb4\x30\x23\x65\x56\x27\x38\xa0\x36\x47\xa5\xac\x87\x43\x2a\xa0\x3f\xb6\xa3\x54\x8e\x50\xb6\x42\x30\x32\x15\x5b\xa3\x02\x20\x5f\xdb\x81\x7f\xe1\xa5\x6d\xce\x42\xce\x6e\x4c\x9d\x2c\x16\xd6\x33\x26\xc9\x06\x1b\x43\xab\x7e\x8d\x70\xa4\xaa\x6d\x2f\x7e\xd2\x67\xfd\x87\x62\x1e\xd3\x0c\xc6\x16\xe3\xc1\x3d\x5c\xd2\xec\x4f\x3e\x72\x33\x84\xe2\x6e\x54\x62\xcc\x2c\x23\x1b\xd2\x89\x90\x0d\x15\xd0\xfe\x72\x48\x8e\x2b\x9b\xfd\x0d\x9f\x21\x56\x1d\xa1\x83\x77\xb4\x4b\x58\x86\x1a\x71\xf8\x36\xb3\xa0\x3e\x94\x81\xe0\xbc\x98\x49\x47\xeb\xe8\xe0\xae\x97\x53\x10\x5c\xd9\xec\x8e\xc8\x91\xc3\xab\x01\x08\xe1\x0f\x03\x10\x4e\x10\x62\xeb\x9d\x74\xff\x50\x3e\xb8\xc1\xa0\x0a\xac\x71\x12\x33\x6c\xbd\x9d\xc3\xff\x0a\xc5\x7f\xa5\xaa\xc4\x56\x0b\x05\x4f\xa4\x59\x0b\x59\x1c\x5a\x6f\x8e\x54\x6c\xc4\xb7\x53\x09\xe5\xcf\x62\xf2\x42\xfa\x6a\x3b\xa2\x9d\x48\x1b\xe1\x92\xb7\x0f\x55\xe8\x3a\x01\x1b\xce\x13\xac\xee\x12\xb0\xa1\x12\xc1\x64\xbd\x2d\x7e\xf2\xa3\x0e\xe1\x00\x7f\xbf\x37\x36\x78\x3a\xb1\x99\xd3\x43\x7a\xc6\x30\x54\x0d\x64\x38\x73\x83\xf4\x31\xbe\xf2\x64\x73\x7c\x2c\x72\xe0\x4c\x01\x19\x4a\x16\xed\x13\x56\x98\x90\x43\xf7\x16\xf9\x50\x11\x53\xd9\x9b\x1f\x1d\xcc\x01\x3e\xaf\x8f\x6e\x18\x88\x9d\xb0\x3e\x96\x30\x3d\xfd\xdb\x32\x85\x31\x85\x87\x28\xf7\xa6\xfe\x53\x78\x2b\xb4\x47\x25\x76\xc7\x52\x96\x83\xf3\x69\x55\x07\x35\x30\x21\xeb\xe3\xc0\x5b\x07\x8c\xa9\x24\x07\xe5\xc8\x5f\x61\x62\x3f\xa4\x6e\xd4\x58\x83\x8f\xa5\x11\x5b\xf3\x83\xc2\x42\x70\x7d\xb8\x51\xc0\x03\x64\xa8\x04\xcf\x78\xd7\x07\x57\xf0\x4c\x5d\x49\x6b\x96\xe4\xe3\x1b\xf9\xe8\x80\x8f\x7d\xc1\xb9\x52\xfb\xf8\x0c\x35\x52\x68\x9b\xe7\x4a\xa1\x76\xc3\x08\x25\x85\x9a\xeb\x37\x90\x13\x51\x0a\x1f\x43\x74\x89\x11\xbc\x9c\xac\x80\x27\xc0\x4b\xf1\x42\xee\x9d\xcc\x1a\x71\xc9\xc7\x3e\xff\xa0\xdf\x32\x83\xf2\xfb\xf0\x3c\x67\x7d\xfc\x2a\x20\xca\xe6\x8b\xff\x8f\x43\xb2\xd2\x0e\x94\xf8\x11\x9d\x76\x80\x68\xb9\xeb\x8b\x5e\xaa\x21\x25\x30\x98\xc0\xaf\x19\x03\x16\x72\xdc\x8f\x13\xa4\xf5\xfa\x5a\x9a\xf0\x2b\x5f\x0c\x1b\xfc\x40\x5f\xce\x50\x57\x48\x49\x37\xa6\x5e\x00\x8d\x52\xe0\x13\xe1\x33\x0a\x97\xde\xeb\x6b\xd7\xff\x81\x9c\x26\x24\x48\xfe\xcb\xa6\xcc\x43\xc9\x1e\xc1\x7f\x25\x20\x47\x05\x60\xba\xbe\x9c\xbd\x70\xe5\x28\x76\x48\x05\xab\xbb\xbe\xe6\xa1\x91\x0f\x75\x91\xf9\x7c\xa8\xbf\x62\x0f\x39\x4f\xc1\x24\x4c\xd1\xfa\x26\xd2\x00\x94\x8d\x68\x64\xb6\xc3\x88\x64\x2f\x7e\x0d\xa8\x21\x50\xd1\x12\x8a\xa3\x67\xc3\x19\xb6\x71\x45\xa7\x7f\x39\x87\x21\x83\x9c\x8a\xa0\xc0\x6d\x5f\xdf\x49\x81\x60\x5f\x5f\xb3\xcc\x0c\xe5\xad\x32\xf3\xa5\x27\x0f\xe9\xff\xdd\x8a\xe0\x8d\xe8\x70\x4c\x91\x71\x3e\x9f\xda\xc5\xc1\xbc\x2b\x8a\xc8\x19\x95\xa7\x5c\x04\x15\xdc\xdf\xfa\x19\x5b\x05\x44\x7d\xfd\x86\x1f\x98\x75\x28\x0d\x81\xf8\x9f\x4b\x21\x46\xda\xeb\xa1\xba\x7e\x7b\x42\xf9\x78\x05\xeb\x09\x00\x72\x46\x5c\x38\x17\xc1\x20\x80\xeb\xfa\xc1\x88\xa9\xaa\xf5\x9b\xe9\xd2\x9c\xe7\x9f\xfe\xf9\x62\xb3\x70\x52\xfd\xf9\x40\x45\x30\xd0\xf5\x73\x2c\x81\x58\x48\x04\x15\x89\xe1\xe3\x3c\x06\x83\x50\xea\xeb\x87\x1d\xd4\x42\x6a\xd1\xd2\xab\xfd\x3c\xf0\x90\x10\x20\x25\xb7\x24\x02\x80\xb4\x5c\xb2\x0b\xe3\xd1\x5e\x19\x81\x71\x76\x84\x76\x5a\xc2\x78\x34\x40\x4e\x0b\x8c\x07\xcf\x3b\x97\x40\x1d\x17\x21\xcf\x96\x81\x1b\xa3\x70\x04\xfe\x19\xee\x1f\x34\x81\x80\x1b\x2d\xd7\x3f\x4a\x4f\xd0\xe2\xd3\x57\xa0\x90\x96\xcb\x96\x9f\xc1\xfe\xed\xfa\x0f\x32\xfc\x87\xcb\xf8\xca\xa7\xb6\x59\x2c\xeb\xb6\x42\x81\x34\xce\xe4\xdb\x91\x40\x3a\x6f\x15\xf6\x0b\x36\xe9\x21\x8b\x47\x3f\x21\x2d\x93\xac\x0f\xf6\xcb\x17\x54\x68\x80\xad\x60\x20\xed\xf5\xd4\xf5\xfd\xa4\xa5\xe6\x7e\xe1\x54\xbe\x52\x6a\xa3\xaf\xa7\xf4\xa3\x7f\x0d\x25\xd3\x9e\x63\xef\x7e\x39\xfc\x0c\xe1\x22\xb6\xc0\x23\x0d\x64\xd8\x16\x76\xe4\x22\x30\xcc\x56\x54\x91\xf6\xca\x87\x37\x57\x35\xb0\x40\x5b\xa9\x0f\x1a\x77\x43\xfb\xe5\x67\x02\x40\xc4\xf7\x0b\xae\xb1\x4d\xbc\xc9\x6f\x50\x18\xec\x2d\x4f\x1a\x1e\xc9\xfd\x42\x5f\x55\xa6\x08\x79\xc2\x94\x2c\x0f\x80\x66\x90\x2e\xd6\x5e\xfb\x65\xdc\x10\x66\xf8\x16\xb0\xa4\xe1\x4d\xdd\x2f\x58\xec\x62\x40\x37\x53\x35\x1e\xb6\x6e\xc5\x2a\x69\xb8\x03\xf7\x0b\x8b\xb9\xa7\xd0\x77\x4c\x17\x9d\x62\x0d\x55\x7e\x74\x1b\x3c\x52\xe8\x14\x73\xa8\xf3\x33\x9b\x21\x31\x47\xe6\xb9\x93\xf9\x53\x62\x7b\x67\x53\xbc\x29\xad\xd1\x99\x76\xbe\x56\x74\x0c\x57\x1e\xe7\x0c\xfe\x30\x8b\x59\xba\xec\x03\x4f\xe2\x15\x52\x53\x64\x17\xcc\x3e\x10\x3d\xde\x02\xfb\x80\xa5\x2c\x38\xf7\x81\x40\x39\x42\xbe\xf5\x69\x81\xb2\xf7\x66\x40\x69\x91\x6c\xa7\xef\x63\x7a\x04\x94\xa1\xc9\x2a\xc3\x33\x5f\x9c\xa1\xbc\x48\x83\x56\xa7\x36\x21\xd3\xe5\x30\x26\xa3\x1c\x29\x1c\xfa\x72\x42\x59\x10\xd5\xf4\x69\x83\x63\xf0\x67\x13\x2e\x0e\xa9\xf1\xc1\xa8\x0a\x56\xd2\x80\xae\xec\xc3\xb7\x14\x04\x79\xdd\xe0\x65\xd0\x98\x5b\x78\x99\x96\x1d\x7a\x58\x4c\x15\x06\x84\xc1\x5d\xd3\xd0\x74\x43\x8c\x68\x69\xbe\x0a\x23\xc0\x88\x7e\x48\xdb\x88\x95\x39\x32\x7c\xa6\xc0\x8e\xa4\x6d\xe0\xa0\xb1\x09\x50\x02\x74\x7e\x2b\x40\x49\x01\x12\xb2\x95\xd4\xa1\xf1\x40\x68\x1f\x5c\x6e\x3d\xa4\x36\x3e\x57\xf2\xfb\xc0\xe7\x3c\xd2\x8d\x0f\xf5\x35\xa5\xe6\x2a\xab\xb0\x6d\xf4\x0d\x8f\x43\xf7\x69\x70\x1a\x0f\x40\xf7\x69\x3e\xb2\x5a\xdf\x67\x18\x67\x40\xda\xf0\x62\xc5\x15\xeb\xa4\xd4\xa7\x50\xcf\x00\x5e\xf9\x52\xd1\x5b\x9f\x56\xb1\xfd\x28\x34\x1f\xd9\x02\xd8\x0a\x66\x52\xf0\x0d\xef\x93\x9b\x8a\xa7\xb0\x2a\xb2\xf1\x0b\x4a\x79\xe8\x5b\x28\x59\xf5\xe9\x51\xc2\xa6\xcc\xbf\x45\xf9\x36\x34\x67\x12\x89\x6b\x1b\x9a\x73\x84\x02\xec\x58\xf8\xad\x25\xc1\x88\x24\x52\x90\x93\xc6\x63\x95\x7d\xc2\x43\xa9\xa9\xcc\x66\x56\xd3\xdb\x21\x4e\x46\x39\x43\xfa\x2d\xe8\x84\x12\xc7\xa3\x3b\x4e\xcb\xa1\x2b\x35\x25\x11\x4a\x6a\x7e\x55\xc6\x6c\x70\x44\x4b\x33\xdb\x63\x63\xe0\xdb\x63\x63\x71\xac\x04\x51\x14\x0a\x6e\xd2\x78\x01\xb0\x4f\xfc\xd0\x35\xad\x5a\x4c\x4f\xfe\xca\xcf\x0e\x66\x66\xd9\x12\xea\x4a\x97\xba\x10\xa8\x69\xd6\x4a\xc4\x07\xf0\x5d\x2c\xa1\x50\x29\x65\x68\x3c\xc8\xe5\x32\x6c\x8c\x20\x4a\x04\xd1\x69\xaf\x9a\x0f\x61\xac\x01\xa9\xf1\x3d\x55\x3f\xfe\x32\x85\x02\x65\x5c\x29\xf4\x89\x71\xd2\xd0\x74\x9f\x17\x94\x91\x35\x6c\xb7\xe2\xb7\xb1\xc7\x64\x44\xd3\xbe\xcb\x92\xd2\xfb\x2c\x90\x49\x28\x58\x47\x2d\x2d\x69\xc1\xd8\xa8\x05\x11\x85\x98\x76\x70\x95\x49\xd8\xb2\xad\x68\x2a\x0d\xbc\xfd\x2e\xf8\xa2\x91\xf7\x0a\xae\x52\xb0\xa9\xb7\x21\x3a\xc4\xe2\xdb\xc5\x8e\x69\x54\x7d\x31\xab\xc1\x95\xc0\x75\xb8\xaf\xd8\x82\xeb\x14\x0c\xf5\x5d\xf0\x01\xb0\xc1\x1d\x21\xe5\xc2\x43\xb0\x85\xd0\x69\xaf\xcc\xad\xb9\x24\x53\xb2\xc5\xc1\x19\xb9\x8d\xe6\x82\x18\x2c\xb6\x9c\xb2\xb8\xbe\xf4\x42\xfd\x28\x24\x4a\x7b\x35\xa6\x12\x1c\x57\x1a\xb5\x8f\xd3\x1d\x5e\x5c\x80\x5d\x50\xea\xbe\x85\xb2\x25\x54\x42\x2a\xbc\x3f\x0b\xe2\x54\x1d\x31\x3b\x2e\x9b\xcf\x48\x89\x6b\xb8\xfb\x0e\xa5\xb0\xa8\xf0\x8b\x82\xa3\x94\x68\x88\x2b\x0c\x02\x69\x5c\x16\x33\x75\xe1\x65\xb6\x31\xbd\x2f\xc7\x8b\xe0\xf1\xd2\xbe\x7c\x16\xc7\xd9\xb4\x95\xc4\xe3\xe4\x85\xdd\x56\xe8\x94\x06\x4a\x7c\x5f\x1c\xce\x66\xc8\x2e\xb8\x4a\xaa\xca\x11\x75\xa4\x19\x23\x47\x98\x1d\xf1\x4e\xcb\x8f\xc8\x9b\x04\xb0\x7f\x5f\x66\xa4\x96\xc1\x99\x91\x10\xa9\x17\x8a\x10\x39\x69\x60\x10\x4f\x67\xb7\x33\x83\xb4\x8c\xc6\x49\x86\x6b\xca\xf8\x2b\x06\xb7\x18\x79\xda\xb1\xba\x85\x25\x2f\xdf\xa1\xb1\xb0\x97\xb3\x52\x66\x40\xc0\x84\x66\x0a\x25\xa9\x90\xd4\x0a\x94\x72\x45\x15\x5f\x4e\x8c\x80\x2c\x34\x66\xa8\x47\x8a\x5e\xe6\xc8\xfe\x1f\x04\x77\x22\xa5\x30\x38\x6b\xc8\xfc\x88\xfc\x4c\x57\xe6\xce\x61\xda\x47\x28\xdb\xee\x99\x9e\xad\x1d\xc1\x4c\x12\xfd\x04\x84\xee\xae\x8e\x1f\xc1\x89\x74\x0b\x40\x74\x16\xb6\x61\x75\x60\xf6\x57\xa8\x4b\x93\x9e\x0f\xcd\x11\x03\x4a\xfc\xfa\xb4\x62\x8b\x07\x89\x5f\x9d\xd1\x10\xa1\x25\xb8\x50\x03\xb3\xbf\x1d\x0a\x85\x37\x24\xbb\x3a\x46\x6c\x7b\xfa\xf0\x24\x77\x28\xfd\xc7\xa0\x19\x3b\x1a\x10\xea\xe0\x8a\x78\xa1\xb1\x6b\x78\xb9\x42\xfa\xa6\x19\x8b\xb0\xda\x3c\xc3\x4e\x27\x32\x0a\xef\x37\x76\x45\xda\x3d\xa5\xb6\x1e\xaf\xf4\xa3\xc1\x8f\xb4\x6b\x30\xdb\x95\x4f\xe1\xd9\xd4\x95\x21\x82\xdd\xa9\xf8\x27\x85\x0b\xb2\x2d\xfc\xd0\x81\xab\x6f\x57\x5b\xfc\x19\x9e\x2d\x7e\x5e\x90\x6c\xc7\x3f\x69\x99\xaf\xc5\x68\x99\x5a\xab\xd6\x9e\x42\x06\xcb\xa2\x98\x47\xe1\x8a\xca\x29\x12\xd5\x56\x9d\xe8\x30\x8b\x02\x57\xf2\xa1\xb5\x69\x66\x8f\x38\x26\xac\xad\x7c\x0b\xd9\x6c\x15\x31\xf9\x4a\xa1\x6c\xc7\x11\xca\x60\x8a\xa7\x55\xef\xae\x57\x9a\x95\xa6\xc5\x88\x73\x54\x93\x41\x6a\x98\xdd\x40\x98\xc0\x7a\x0d\xf3\x1f\x79\xd8\x00\xb3\xc3\xc3\x4e\xd5\x32\xb9\x43\xdc\x8d\xeb\x18\x26\xa5\x39\x4a\x4f\xa9\xf9\x56\xb6\xc1\x48\x5d\x18\xae\x42\x9a\xc5\xe8\xd5\x8f\x4f\x80\xe2\xef\xe6\x83\x21\x36\x7e\xb3\x0c\xe4\x19\xc6\x6e\x18\xf9\xe8\x62\xc7\x36\xe1\x5d\xd2\x76\x3e\x16\x5e\x13\xed\x06\x0f\x0d\x28\x39\xa9\x61\xdc\x66\x54\x75\x36\x60\xc3\x74\x6b\xe9\xe4\x1e\x1e\x70\xc8\xad\xcc\x2d\x83\xb7\x44\xbb\x59\x81\x22\xd8\x9a\x39\x6a\xa6\xa6\x91\x7e\xec\xc7\xb6\x18\x6b\xea\x9a\x6b\x50\x99\xcd\xf6\x19\x4a\x42\x29\x5f\xce\x48\x8b\x26\xf3\x3f\x87\x8a\x66\xfe\x42\x06\x35\x2b\x5e\x44\xa9\x10\x4b\x0d\x34\xe6\x16\x62\x29\x51\xb9\xb6\x23\xab\xf0\xee\x73\x37\x00\xd4\x2d\x1f\xea\x39\x69\x06\x63\xa1\x37\xd3\x8c\xcd\x02\xd4\x79\x73\x28\xe5\x99\x56\x87\x7a\x4c\xab\x76\x1d\xb4\x54\x95\x06\x1d\xa1\x94\xec\xfe\x4a\x55\x31\x62\xe6\x51\xea\xfc\x08\xb7\xe8\x4c\x1a\x93\x85\x28\x2b\xa5\xfd\x7d\x83\xb9\x8d\x8a\xea\x31\x49\xbb\x1d\x1b\x8c\xd5\x40\x27\x22\x83\xec\xee\xd8\x3b\xac\x79\x07\x5f\x80\x34\x30\xec\x89\x28\xc4\xbb\x3b\xde\x3d\x31\x3d\xb7\x40\x50\x05\xdf\xeb\x16\x08\xea\xbc\x38\x93\x0a\xf5\xd4\xb8\xcb\xdb\xdd\x31\x75\x67\xca\xcc\x01\x2d\x85\x9e\x3a\x06\x07\xef\xb6\xb4\x7a\x33\x2f\xb1\x89\x76\xb7\x96\x7e\x86\xf3\xd1\x87\xfc\xe3\xcd\xad\x0d\x1c\xe8\x16\x1e\xaa\x3c\x7f\xac\x83\x05\x37\x47\x1b\x38\x14\x2f\x4c\xb6\xe0\x50\x47\x29\xe9\x43\x07\x0d\x50\xab\xbb\x3b\xa6\x3e\x21\x3a\x77\xc7\x34\x6c\x69\xf7\x3e\x15\x01\xa2\xdb\xdd\x01\x9d\xaf\x94\x2d\xf7\x92\x01\xd9\x50\x1c\x29\x7d\x6b\x69\x33\xa2\x8f\xeb\xb2\x24\xc6\x79\x23\x08\x3a\xee\x10\x84\x46\x97\xb0\x04\xc3\xba\x15\x61\xe5\xca\x09\x8e\x08\x2b\xf8\xa6\x77\xdf\x0c\x21\x75\xb7\xbe\x74\xdd\xe1\x0b\x1f\x6e\x14\xb7\x42\xac\x1c\x44\x3b\xdb\x0a\xa2\x52\x4e\x76\x85\xb0\x52\x0d\x3c\xe7\x76\x08\x95\x0b\xef\xf4\x16\x38\xaa\x81\x15\xdc\x82\x3f\x35\xc0\x9d\x5b\xe8\xa7\x06\x68\x6e\x8f\x09\x03\x53\x15\x9f\xc6\x08\xa9\xff\xca\x70\xfc\x5e\x12\x67\xf9\x1e\x61\x99\x90\x5b\x27\xd5\x7c\xf9\xf6\x9f\x4c\x48\x4b\xb1\x16\x52\x17\x06\x33\xed\x4a\x88\xb1\x28\x03\x4f\x18\x3b\x73\x98\x4d\x10\x14\x63\x79\x40\x29\x2b\xa2\x4e\xa8\x26\x58\x6f\x28\x8f\x8e\x7d\xe1\x60\x2a\x3d\xa7\xc3\xe1\x18\x77\xf9\x6b\x63\x14\x0a\x0c\x35\x58\xf9\x33\x9f\x0a\x29\x35\x43\xd9\x2f\x86\x61\x23\x68\x54\x03\x26\xba\x87\xf9\x00\x95\x3e\x8c\xfe\xe7\x41\xcc\x56\xa0\x95\x06\x86\x6e\x2b\xe7\xce\xdd\x4e\xbe\xec\x2a\x64\x0e\x74\x5c\x05\x5f\xb7\x05\x9b\x6a\xc0\xba\xf6\x30\xc7\xb0\x33\x06\xa2\x2a\xdf\xe9\x74\x8a\x9e\x33\x4e\xea\xe4\xc9\xcd\x56\x78\x96\x42\xa4\xf3\x2d\x68\x54\x03\xa5\xb7\x03\x8d\xc2\xc6\x99\xf8\xcf\x7a\xbe\x6c\xaa\xfb\x82\xf2\xd1\x70\x86\x14\xeb\xc5\xd3\xa5\xe8\x2c\x67\x7f\x7a\xd9\x3e\xbb\x42\x09\x78\x8d\x96\x71\x02\x9e\xf3\x4c\x55\x07\xfb\xe4\xa5\xc7\x9e\x8e\x07\xce\x8f\x4d\x9d\x3d\x78\x7a\xbf\x8d\x94\x02\x83\xbc\x05\x94\x6a\xc4\x5f\xdb\x8a\xdb\x72\x06\x99\xbe\xa7\xe5\x11\xd6\xe4\xb4\x3c\xca\x70\x26\xf3\xf3\xf7\xa3\x9e\xad\x9c\x3a\x9d\xf0\x98\x7b\xfa\xdd\x1f\xd7\x56\x1b\xd0\x54\xce\x86\x73\x79\xba\x52\xe8\x95\x65\xe8\x72\xf2\x03\xfa\xd9\x42\x50\x35\x20\x4a\x5b\x00\xaa\x1e\xb1\x26\x00\x55\x21\xbe\xd2\x9e\xf8\xd5\x66\x48\xb8\x90\x76\xfc\x78\x09\xc9\x3a\x01\xc7\x3c\x24\x8b\x19\xd2\x2e\x61\x6c\xb0\x69\x56\xc3\x12\x99\x66\xae\xcc\xf3\x7d\x6c\x68\x60\x90\xb6\xe0\x55\x0d\xf0\xc5\x9e\x46\xca\x14\xf6\x81\xe0\x55\x0d\xd4\xc4\x76\x50\x97\x19\x46\x14\xa0\xea\x8c\xec\x5c\xe6\x3c\x74\xad\x50\x51\x8f\x02\x5f\xf2\xc5\x02\x0a\xd8\xe4\xe2\xe1\x22\x6f\x2b\x54\x4b\x8b\x22\x5e\xba\x7e\x0e\x03\x0b\x3e\xd5\xb8\xbb\xdf\x0b\x31\x36\x53\xa8\x6d\x89\x11\xbc\x26\xab\x15\x52\xab\xc5\x3c\x2f\x40\xe1\xf0\xdd\xc2\xd8\x67\xb2\x1c\xb1\x80\x70\xba\xfb\x6d\xfb\x02\x2d\xfd\xf6\x2e\x85\xb9\x7d\xcf\x3f\xc8\x41\xb1\x1d\xbe\x60\x14\x2c\xef\x37\x0e\xca\x87\xf4\x5c\x22\xba\x40\x01\xf0\x40\x66\x7f\x70\x12\xb0\xc1\x3e\x8e\xc4\xcd\xe5\xd3\xfe\x58\x0f\x60\x1d\x7d\x1c\x3a\xfd\x29\xb3\x7b\x0a\x63\x45\x97\xe9\x8d\x4b\xb6\xfd\xb1\x35\x80\x89\xfc\xb1\xc2\xc7\xb0\x55\xbc\x82\x7b\x7c\x8c\x00\x61\xce\xbe\xf9\x4c\x46\x0f\xe9\xbb\x0a\x9e\xf9\xef\x0f\xda\x39\xc3\xf5\xf9\x9a\xa7\x21\xfb\xe3\xdd\xd0\x53\x57\xb1\x98\xd9\x1b\xe4\xd7\x78\x6a\x5a\x65\x8c\x14\x7e\x75\x27\xc8\x70\xb7\x23\x49\x52\xc6\x63\xbd\x91\x42\x5b\x3d\xfc\x8b\x82\xa5\xc7\x71\xa4\xbb\xf3\x72\xb1\x4a\x1f\xaf\x20\x62\x4e\x17\xe9\x17\x78\xa2\xfd\xe1\x91\x0d\x7a\xfb\x0b\x62\x10\x26\x56\x6e\xff\x96\x4b\xaa\xaf\x59\xba\xa7\xaa\xa2\x55\xa2\xa4\xbe\x16\x9e\xec\x13\xdd\xb1\xb7\xdc\xdd\x28\xb3\x7f\xcb\xfd\x90\x72\x6b\x14\x70\xfb\xe4\xf9\x9f\x84\xff\x77\x9e\xff\x96\xdb\x19\xdd\xbf\xdf\xb3\x9a\x1e\x15\xeb\xe7\xe9\x03\xfe\xa1\x59\x54\x3c\xa2\xc3\x17\xf0\x95\x7b\x46\x27\xf6\x6f\xb9\xb9\xf9\x72\x47\xca\xc6\x71\x5e\xff\x1e\x0f\xab\x6e\xd2\x5b\xae\x51\x48\xbb\x51\x66\x0a\x25\x1e\x60\x99\xaf\x25\x2d\x0c\xfe\xf5\xab\x69\xf8\xd0\xf1\x11\x26\x31\x94\x9d\xd5\xbf\x45\x7f\x10\x2d\xe1\x95\x0f\xe1\x1e\x26\x41\xaf\x29\x3a\x2a\xc2\xc1\x12\xda\xf9\x77\xd8\x42\xe7\xff\xbf\xdb\x49\x97\xe6\xad\x99\x66\x3d\xd8\x50\x12\x65\x30\xd3\xd7\x2a\x3d\x5c\xe0\x8b\x2e\x5e\x7e\x38\xe3\x7f\xcb\xf5\xc0\xd7\xdc\x34\x52\x26\xc1\x1a\x7e\xf1\x0d\x05\x0f\x3f\xb6\xee\xd8\x8f\x28\x0c\xe7\xed\xa8\xb9\x7d\xfc\x61\x05\x62\xa8\xeb\xca\xfd\x28\xb0\xd3\x0f\x69\x30\x43\x5a\xdd\x21\x95\x7f\x36\xf5\x66\x1a\x12\x5c\x0f\xc3\x4a\xe9\x37\xee\x5e\x2e\x48\x9d\xaf\x89\x26\xb1\x1d\x48\x21\x47\xbe\x9f\xb9\x02\x36\xf8\x59\x54\x20\x86\x75\x17\x7e\x33\x45\x87\x64\xf0\xd4\x95\x23\x8e\x77\xb3\x4e\xe3\xdf\xe2\x16\xfc\x39\xf9\x1c\x38\xc0\xfd\xe3\xc2\xe0\x95\x52\x4d\xe6\xcc\x97\xfc\x18\xbf\x62\xbd\x09\x07\xfd\xac\x29\x6b\xaa\xbe\xdd\x0e\xa4\xd3\xf7\x22\x96\x7d\x37\x3e\x2e\xd8\xdd\x77\xe3\xf1\xd9\x29\x33\x46\x8b\x8f\xc8\x89\x31\x6a\x3c\xae\x8a\x69\x50\x62\xc9\xe8\xfa\xbb\x18\x03\x3f\x9c\x9c\xbf\xf8\x71\xe6\x70\x6e\xfe\xcb\x8e\xe2\x9b\x3a\x7d\x37\x35\x21\x15\x76\x5f\x16\xe2\x4d\x5d\xea\xb1\x40\x29\x0d\xa3\x56\x64\x38\x8d\x7f\x3b\x9f\x46\x7d\x27\x30\x43\x0e\xff\x47\xea\x2e\x93\x69\x68\xeb\xd3\x14\x8a\xd9\x9e\xf1\x58\x5c\xcf\x54\x35\x1b\x1c\x29\xb5\xb0\xb8\xf8\x54\x56\x98\x1f\x50\x0f\x27\xfd\xbf\xeb\x32\x06\xe9\x51\xbb\x6b\x6e\xca\xe6\xed\x15\xf2\x72\x5d\xba\x71\xe8\xcd\x23\xcd\x36\x0f\x37\x75\xbb\xce\xfb\x0c\x41\x27\x48\xc7\x8e\xb8\x29\x8b\x36\xc9\x9c\x9b\xb4\xc3\x63\xd2\x90\x18\xea\x7c\x31\xb7\x8b\x3e\x53\xe8\x10\xeb\x99\x6b\xb9\xc2\x1c\x68\x62\x0c\x62\x2c\x5c\x2f\xda\x75\xbc\x94\xf3\xa2\x25\xfb\xc2\xae\x17\xeb\x6b\xd3\xbd\xf1\xdf\xec\xfa\x4a\x4b\xdb\x17\x27\x17\x03\x76\x22\xad\xc2\x7f\x6f\x44\x66\xda\xb5\xd7\x61\x32\xa4\xb0\x18\x83\x90\xb9\x75\x66\x7a\x1d\xe3\xe8\x15\x1e\x13\x0e\xc7\x08\xb6\x9b\xf2\x78\x6b\xc8\x9f\xbe\x34\x75\x20\x31\xea\x09\xc9\x3e\x1b\x90\x0c\xbf\x40\x8a\xcd\x98\x33\x5d\x86\xb7\x93\x55\x3b\xbc\xc2\x4c\xa0\x6e\xad\x4f\x5f\x77\x0e\xa7\xfd\x6f\x27\x43\xd7\xbd\x74\x3b\x19\xeb\xe1\x6b\x9d\x99\x56\x3c\x38\xba\xd7\x81\xae\xbe\x1e\xf2\x90\x7b\x8b\x91\x2f\x77\xf8\xe7\x5b\xcc\xbb\x2a\xbf\xc1\xc0\x17\x2c\x35\x21\x35\xba\xf3\x05\x65\x26\xca\xd0\xed\x8d\x2f\x8c\x40\x9e\x28\x9f\x3b\x6e\x0a\x1e\xa7\x1d\xc9\x7b\x9f\x99\x6e\xaa\x88\x62\xb0\xf6\x44\xa5\x8f\x6d\xf1\xf5\x90\x9a\xd6\x93\xd1\x29\x6c\xb9\x31\xbc\x37\x25\x39\x73\x32\x1a\xdb\x86\xd7\x91\xc2\x8f\x0a\x99\xd7\x7b\x9d\xaf\x57\x4b\xff\x9a\xc9\xd3\xb3\x7c\xe2\x03\xad\x0d\x52\xb2\xe4\x1c\x50\xb7\x90\x36\xee\xe8\xa6\x3c\x9a\x09\xa5\x60\x32\xa3\x42\xf9\x04\x30\xd3\x8c\x12\x70\x8e\x03\x6a\xab\xff\x34\xfa\xd6\x87\x69\x86\xbd\xc8\x70\xe4\xfe\xb4\x55\x78\x53\xca\xbf\x3e\x69\xc6\x8f\xe8\xc6\x05\x35\xfd\xc7\x29\x14\xef\xb0\x63\x74\x71\xdd\x6c\xed\xde\x94\xb7\xe9\x91\x56\x3f\xb2\xb8\x19\xea\xb4\xec\x62\x3d\x08\x22\x91\x09\xb0\x0b\x29\x13\x60\x3b\xe2\x82\xb1\x75\x39\x5d\xae\x9a\xaa\x16\x14\xac\xf2\x69\x5f\xc1\xc5\x96\x70\xc6\x0d\xbf\xa7\xbe\xa9\xa5\xbb\x24\xfe\x59\x36\x6a\x7d\x9d\x69\x56\xa2\xab\xa4\xaa\x56\xb2\xa4\x19\x3d\x53\x62\xbf\x9c\x38\x3c\x69\x46\x5a\xe9\x48\xa3\x92\x2f\x47\x5a\xf1\x1b\xaa\x8b\x4d\x78\x6e\x5e\x5a\xa7\xae\x62\x70\x5e\xee\xbf\x68\xa7\xdb\x72\xb9\x29\x31\x04\x12\xa3\xf8\x10\x7f\x1d\x29\x6c\x12\x27\x27\x94\xd5\x2b\x13\xe2\x1b\xe7\xfe\x42\xc2\x15\x2f\xfb\x53\x97\xcd\x34\x21\x6f\x49\xe4\x47\x7a\x37\x65\x33\x79\xd2\x90\x63\x3b\xf8\xad\xd1\x4d\xda\xaf\x80\x2e\x24\x9a\xc3\x75\xa4\xb2\x98\x34\xff\x32\xb5\x49\x4a\xaa\x8a\x47\x32\x04\x78\x84\x5f\x91\xa9\x79\x5e\xe9\xe3\x2b\x5f\x0e\x6d\x02\x5f\x40\x4e\x16\x58\x84\x46\xc5\x14\x11\x5a\x65\x79\xc7\xe4\x43\xcb\x93\x23\x55\xa5\x35\x9d\x8e\xe2\x26\x2d\x7e\x5b\x9a\xd5\xbe\x44\xf5\x15\xc3\x34\x3b\x32\xad\xc8\x27\x14\x05\x56\x36\x33\xc2\x9f\x80\x9c\xaa\x21\xe5\xd4\xcb\x88\x7c\x54\xbf\xce\x34\x64\xeb\xb7\x31\x41\xc6\xfd\xf6\x57\x3e\x95\x4b\xeb\xc8\x18\xcc\x26\xed\x82\x5c\xae\x9b\x4f\x2d\x72\xce\x7c\x2a\xb6\xad\xe9\xd5\x17\xc6\x69\xe8\xeb\x2f\xdd\xd0\x65\xec\x1e\xbb\xd3\x17\xd6\xb3\xa3\xc7\x2f\x3f\x7f\x3a\xfe\x74\xa0\xdc\x55\xa5\x4b\x58\x25\x85\x9d\xb8\x7c\xe1\x76\x53\x0a\xb7\xd1\x5f\x50\xe2\x83\x2b\xfd\x2f\xc5\x77\x49\x99\x6f\x8c\x5a\xfa\xff\xf8\xb7\x28\x9d\x6c\x6b\x9a\x9d\xcc\x57\xc8\xe1\xd2\x0e\xa9\x9b\x67\x96\xf0\x32\x83\x5d\x29\xb3\xb5\xde\xf2\xe5\xd7\xdd\x50\xd7\x78\x4f\x3f\x69\xba\x49\x89\x41\x14\x3e\x49\x3a\xae\xf4\x82\x68\x41\x46\x29\x26\x45\x3b\xaf\x50\x4a\x51\x31\x91\x51\x17\x16\xca\x99\x96\xc4\x63\x6c\xc9\x2b\x3c\x46\xbb\x12\x27\x13\xe1\xa2\x7b\xe1\x52\x1e\x0a\x2e\x62\x06\x95\x60\x39\x32\xf3\xc2\x02\xc9\x80\x38\x97\x64\x5d\xfc\x1e\xe1\xca\x72\xdf\xbc\xd0\xa2\x71\xb9\x19\x3e\x66\x48\xfb\x51\xda\x84\xd4\x66\xc6\xc8\x20\x31\xc6\xc9\x9a\x3a\x40\x44\x7d\x9d\xa9\xab\xd9\x66\x8f\xfa\xc6\xb7\xbe\x4a\xea\x2a\xe6\x02\x32\xcd\xd1\x22\x2a\x32\x42\xb7\xba\x2d\x0a\xb0\x22\x6c\x3a\xed\x58\x1f\xa1\xf3\x15\x3b\xe2\x8c\xd5\xa1\x0b\xdf\xeb\x85\x22\xab\xe1\x8c\x14\x6a\xa6\xbb\x37\x47\x8d\x04\xa1\x4b\x3f\xb2\xfd\xb7\xd4\xaa\xac\xa4\x54\xa8\xab\x92\x42\x83\xe1\x32\xbe\xe5\xe9\xa3\x53\xfb\xec\x3a\x06\x8b\x6e\x5f\xcf\x17\x02\xb8\x6e\x92\x08\x33\x78\x5f\x81\x75\x4c\x04\xa5\x91\x68\x11\x21\x0a\xfb\x70\x8f\x88\x21\x08\x50\x19\x5d\xa6\x0b\xd7\x52\x33\xef\xdb\xde\xd8\xb4\xfa\xfb\xe7\x7f\xbd\xb3\xf4\x8a\xeb\xd0\xc2\xe3\x8e\xeb\x50\x5f\xac\xbc\xee\x57\x5b\x58\x5c\xd7\xab\x2d\x72\x48\x41\x1f\xee\xaa\x27\xa4\xd9\xad\xa4\x21\x0b\xad\x7e\x41\xca\x2e\x6b\xa1\x24\xd5\xd9\xbe\x8e\x09\x31\xfb\x91\x3e\x2d\x63\x7b\x4a\xad\x3f\x3d\x5d\xce\x2a\x31\x3b\x76\x81\xaf\x5e\x33\x05\x0a\xf4\xd0\xc2\x89\xb9\x88\x45\xba\x38\xce\xc3\xb8\x90\xf3\xba\x7a\x2d\x15\xf1\xd2\x26\x43\x48\x43\xba\x02\x7a\xaa\x2a\x39\xe3\x48\x97\x16\x8c\x58\x09\xba\x6c\x6d\xd9\x38\x8d\xfb\xab\xce\x84\x59\x26\xc0\x98\x4a\x40\xd1\xb2\x17\x9a\x2f\xa8\x66\x3e\x94\x44\xc8\x6c\xa1\x66\x3a\x85\xb6\x54\x33\x21\x1c\x65\xd1\x90\xba\x26\x3d\xfb\x95\x42\x16\x85\x1f\xd1\x65\xc3\x33\x05\xf2\x4c\xfc\xdb\xaa\x16\x21\xbf\xc5\x8b\xa4\xfa\xa7\x1b\xe5\xae\x2b\xc5\xdb\x33\x00\xb1\x77\x7e\x59\x17\xa3\x05\x4d\xd6\xcd\x5c\x88\x6d\x67\x9f\x18\xd7\x15\x52\xcc\x85\xc5\xd9\x39\xad\x5c\x21\x2d\x56\xe8\xc4\x39\x25\x4a\xc9\x97\xfa\x91\x31\xa0\x34\x77\xa3\x40\x61\xc3\xa4\x90\x95\xad\x90\x1a\x3a\x06\x69\x87\xd5\x9e\xf1\xd9\x87\x81\xe5\xd6\x2d\x65\x30\x97\x95\x61\xe2\x1c\xf9\x31\x99\x30\xb3\x23\x6b\x89\x1d\x71\x61\xa7\x74\x1c\x66\x6c\x79\x5f\xa3\x9e\x23\x9f\x7a\xb8\xf9\xd2\xab\x90\x9a\x56\xd0\xc8\x39\xb2\x48\x74\x98\xbf\xfb\x8d\x76\x0b\x65\x15\xc3\xca\xfb\x3a\x34\xc6\xbd\xe2\x41\xb4\x13\xaf\x81\x2f\x43\xe7\xcc\x87\x8e\x3f\x94\x3e\xac\x4b\xb3\x0c\x68\x1f\x54\xa0\xaf\x3f\x4b\x7e\x04\xd9\x85\xa2\xed\x3e\x1e\x23\x00\x92\x51\x82\x01\x38\xe6\xd1\x33\x7b\xbe\xe7\xea\xa8\x1f\x42\x47\x3c\x93\xa0\xe3\x71\x35\xac\xf7\x26\x95\x88\xed\xa1\xac\x8c\xd0\x96\xdd\xec\x36\x53\x68\xf7\x15\x6a\xd7\x61\x26\x66\x47\x0a\x3a\xb0\x44\x7d\x21\x93\x9c\x7f\x62\x5c\x28\x1c\xdf\x9d\x9e\xec\x40\x85\x99\x68\xe7\x4c\x43\xb6\xaa\x3a\xd4\xfc\xe7\x7f\xf5\x55\x52\x76\x2f\x59\xc1\x24\x1c\x30\x18\x47\x01\xc5\x91\x38\x73\x4e\x50\x18\x89\x56\x5e\xe9\xd0\xf7\x9d\x15\xca\x2e\x17\xb8\x58\x57\xb0\xad\x60\xd5\xe9\xca\xf5\x3a\x30\xb0\x86\x2c\xe4\x82\x15\xa7\x1b\xd7\xd2\xd8\x0b\x4e\x59\x51\x5b\x28\xeb\xa5\x9a\xaa\xb6\xff\x30\x85\x74\x39\x7b\xfe\x4b\x39\x8e\x6c\x7a\xb4\x79\x0f\x27\x0e\x1f\xe5\x6b\x06\x70\x8f\xb5\xa4\x13\x5c\xfd\xd8\xe1\xc3\x81\x6e\x2f\xec\x83\x81\xcb\x6e\xa6\xf2\xd4\xd8\x53\x28\x40\xda\x99\xb2\xad\x32\x3a\xd1\xc5\x7b\xec\x15\xdd\xb7\xb6\x02\xeb\x3b\xda\x44\xcd\xd9\x5d\x77\xaa\xad\x60\x05\x8d\x08\xbd\xd4\xbd\x59\x6f\xd4\x14\x2a\x2f\x2a\x32\x78\xd8\x78\x7e\x3e\x1c\x6a\x86\xf9\x90\xed\xdc\xcf\x94\x31\x75\x21\xbd\x2f\xd0\xe9\x0a\x37\xd1\x0a\x96\xc3\x74\x1c\xdb\x93\x53\x2f\xd7\xa8\xd1\xb0\x5c\xa3\xe6\xd4\xa9\x6b\xd4\xa3\xbe\x90\x82\x93\x48\x8f\x17\x14\xeb\xd7\x21\x7d\xce\xbc\xd2\xb0\xe5\x15\xdb\x7a\x22\xaf\x90\x3a\x13\xac\xdb\x2c\x7f\x8b\xf0\x89\x72\x4c\xb7\xbe\xc4\xbf\x5a\x5a\xf2\x65\x2e\xae\x01\x85\x99\x68\x05\x8b\x65\x4a\x62\x95\x23\x55\x3d\x2f\x2d\x0d\x89\xe1\x51\xe5\xba\x5a\x6d\x05\xad\x3a\xb1\xa8\x38\x3c\xe9\xf6\xb4\xe5\xbc\x31\x71\x0a\xb7\x90\x97\x0a\x69\xd5\x07\x75\x64\xd2\x04\xea\x36\x53\x55\x8b\x88\x24\x9e\x1c\xd8\x30\x31\x75\x61\x7a\xbe\x46\xba\x54\xa0\x01\x64\x92\x92\x65\xb4\x02\x2f\x2a\x57\xc6\x59\x33\xd3\x44\x70\xcb\x84\x48\x7c\x45\x54\x4c\x63\x39\x72\x6e\x9f\xe0\xd7\x32\x5b\xc8\xab\x96\xca\xe2\x63\xc4\xc3\x44\x5e\x21\xc3\x17\x4a\x0f\x9b\x60\xc1\x38\x25\x24\x3f\x9a\xca\xd3\xa5\x07\xa4\x7d\xbf\x3d\xa4\x32\x58\xc1\xcb\xcb\x82\x87\xbd\xb4\x70\xf6\xa2\x56\x7c\x2f\x3a\x3b\x82\xdb\x51\x25\x5e\xe1\xaa\x35\x19\x53\xc8\xcb\xfe\x14\xc6\x64\xc6\x89\x48\x5b\xbe\x67\x8f\xd8\x5a\x4a\x1f\x57\x51\x49\xcb\x22\x65\xa6\xaa\x98\x81\xfd\xb4\x7c\x7a\xca\xde\x77\x86\x8b\xfe\x82\x8d\x96\xb3\xa5\x1c\x29\x6c\xff\xfc\xaf\x4f\xf8\x66\x39\x08\xf2\xab\xa5\x21\xef\x53\x2c\x9e\x65\x91\x82\x88\x53\xd8\x89\x56\x60\x06\xa5\xc6\x28\xb1\xd2\x1d\x83\xa2\xbe\xae\x74\xa9\x38\xf9\x59\x09\xce\x59\x98\x02\x4b\xde\xc1\x82\x91\xbc\xb0\xc0\x30\xc8\x96\x1f\xac\x64\x49\x1d\x2a\xe0\xea\xa9\xdb\xdd\x4b\xea\x62\x85\x42\xe9\x57\xd0\x6c\x0e\x49\x31\x2e\x2c\xa9\xb5\xfd\x27\x29\xf4\x3e\xeb\x21\x15\x29\x6d\xa4\x13\x7e\x25\xa4\xdf\x99\xc0\x81\x4e\xb2\x51\xd1\x1e\x3b\xe2\xc7\xbd\x6c\x0c\x6a\x94\xad\x22\x44\x1c\xe1\x38\x45\x88\x68\x85\xa9\x55\x84\x88\x2b\x47\x29\x65\xca\x38\x47\x4f\x33\x76\x86\xb7\x7c\x78\x0b\xb5\xca\xb9\x65\x5b\x7e\x5c\xe9\x62\x79\xe5\x1b\xa4\x4e\xbf\x2d\xed\x68\xc1\xae\xf4\xa8\xbd\xc3\x9e\xdc\x66\x20\x96\x6f\x87\x81\xf8\x50\x37\x02\x31\x10\x37\x2a\x09\xeb\x51\x81\x27\x5a\x61\xe3\xec\x05\x47\xf3\x23\x82\x6d\x44\xd1\x38\x8f\x46\x87\x0f\x15\x87\xe2\x9c\x33\x7d\x78\xf1\x46\x3a\x81\xf3\xf8\x11\x81\x89\xe2\x76\xdb\x76\x3d\x47\x68\x6e\x2c\x27\x54\xa6\x13\x67\xe4\x5c\xb5\xad\xcd\xb2\x04\x3a\xe5\x95\xf2\x67\x5a\xfb\xbb\xaa\xad\x2a\xb4\xe2\x76\x82\xb9\x0b\x69\xa7\x48\x14\xad\xa0\x67\x14\x89\xa2\x95\x0c\xd6\xcc\x85\xc6\x4c\x20\x8a\x9e\xaa\xb0\x93\x9b\x7d\x13\x48\x14\x41\xa3\x1c\x1b\xa3\x21\x0f\x14\x97\xa2\x0c\xd4\xfb\x7b\xf8\x4f\xf2\xe1\xa5\xa5\x0d\x65\xdc\xd8\x84\x92\x49\x83\xea\x52\xc2\x8d\x56\xae\xb4\x62\x5e\x1f\x21\x8d\x8b\x80\xb2\x2d\x94\xb1\x61\x30\xb3\x11\x94\x09\xe3\x38\x98\xc9\xb7\xe1\x66\x17\x86\xf7\xdb\x47\xf8\x28\x15\x27\xbf\xe8\x2f\xe4\xdc\xdb\x3c\x82\xfe\x51\x74\x89\x3e\x5b\xca\x34\x5b\xe8\x7e\x87\x8f\x38\xa3\xb9\x12\x3f\x82\x43\x28\xa9\x30\xa2\x8f\x94\x0a\xa3\x15\xec\xa8\x37\xf7\x4b\xd8\x7c\x6f\x6b\x20\x7c\x3b\x6f\xdd\x39\x14\x4c\xd9\x37\xc6\x35\x26\xe8\xdb\x5c\x71\x85\xaa\xa2\xe8\x43\x0e\xc2\xd9\x53\xd6\xfd\x61\xfa\x18\x4a\x77\x9f\x42\x4d\x34\x6e\xc7\x37\xa9\x19\x38\x76\x02\x4f\xb9\x46\x46\x60\x16\x66\x67\x7c\x6c\xf2\x60\x3c\x93\x4f\x23\xda\xf3\x83\xa5\x7d\xa5\xae\x85\xe0\x4c\xa9\x86\x8b\x81\xa8\x18\x15\xbd\x31\xef\x8e\x51\xd1\x5f\x08\x53\x45\xa5\x38\xc7\x2b\x85\x40\x90\xa1\xee\x4d\x14\x7f\xd1\xc7\x06\x33\x96\xee\x87\x3b\x4a\xe6\xf2\x83\x4e\x4b\x55\xcf\x25\xa2\xe3\xe3\x17\xe1\x17\x76\x80\xe3\x49\xd4\xd7\xd3\x2e\x9b\x8a\x5f\xc1\x34\x9a\x29\x1d\x1a\x5f\x7a\x15\x92\x3d\x97\xb5\x4a\xd3\x31\x1a\xba\x51\x69\x3a\x0e\xde\xd7\x8f\x41\xce\x8c\x58\x02\x1f\x6f\x7a\x36\xd5\xc7\x0b\x9a\x39\xd9\x0e\xc1\xc0\x08\x0c\xd5\xea\x6c\xe4\x8f\x33\xda\xa2\xe1\x94\x4e\xa3\xfd\x5b\x15\x5e\x4c\xe1\x4f\xe3\x71\xab\xdf\xc1\x00\x2e\x48\x56\xb0\x42\x5a\x2a\xd2\xee\x97\x25\x9b\x50\x56\x1a\x35\x2d\x75\x75\xda\xa1\xc4\x53\x3d\xcd\x4a\xce\xb0\xe9\x85\x50\xb9\x3f\x2c\x90\x12\xe8\xe8\x51\x45\x7d\xb8\x0b\xf9\x72\x5a\x78\xd0\xaa\xf7\x79\x4b\x99\xbd\xb6\xec\xa3\xaf\x5f\x0f\xc5\x98\x30\x22\x25\xc7\x13\x62\x3b\x5c\x33\x85\xde\xae\x28\xd2\x2f\x42\x61\x86\x94\xac\xbb\x42\x69\xb7\xb2\xed\x15\xdd\xa1\x15\x36\xf6\xd7\xf6\x6a\x0b\x65\x3b\x08\xd3\xc2\x09\x3c\xfa\x8b\x3d\xf8\xb5\x4d\xda\xeb\xdf\x32\xdc\xf0\x95\x1a\x67\xa1\x20\x2a\xad\x60\xeb\x7c\x97\xd1\xb4\x8c\x0e\xc1\x83\x92\xfb\xa2\x62\xd8\x1d\x0e\x0b\x31\x61\xaf\x2f\x0c\x45\x55\x79\x6c\x0a\x16\xde\xd7\x97\xc8\xd1\x87\xc1\x9d\x70\xe6\x10\xee\xe4\x26\x07\xa4\x64\x14\xb2\x58\xd1\x1c\xce\x06\xcf\x28\x7c\xc3\x68\x6c\x86\x1f\x67\x17\x24\xbc\x03\x36\x34\xf6\x9c\x40\x28\x47\xbf\x52\x26\x3e\xe8\xa1\x6c\xaf\xf0\x9b\x3f\x5e\xf0\xa0\x61\x9c\xea\xa3\xbf\x52\x59\xe6\x69\xf6\x0d\xc1\x1d\xea\x2b\xa4\x6f\x1f\xe9\x53\x7e\x97\x32\x42\xbd\x85\x32\x0b\xf5\xf1\x87\x21\x05\x23\x44\xbc\xfe\xbc\xf0\x23\x94\x07\x80\xda\x37\x5e\x65\xc4\x9e\x02\xa1\x12\x23\x49\x08\x95\xd2\x90\xcc\x0e\xdf\x50\xe3\x08\xfa\x59\x8f\xe4\x3f\x65\x13\x64\x89\x1c\xcc\x61\x96\x50\x42\xe9\xe2\xd3\xfa\x59\x33\xa0\x35\x7e\x56\x05\xec\x71\x05\x76\x18\x0d\x05\xec\xc0\x0e\xf1\x02\xfd\x22\x39\x98\x1d\xbf\xc2\xa9\x4f\x5d\x8d\x66\xa6\xee\xdb\x75\x99\x10\x73\x8c\xff\x79\x26\x92\x83\x2d\x8b\xf9\xb2\x9a\x7f\x28\x5f\x5e\x0d\x28\xbf\x29\xf1\xac\x4f\x07\x6e\xc0\x50\x9d\xc2\xab\x74\xa7\x25\xbb\x29\x0d\xc0\x3f\x39\x05\x57\x29\x7e\xc1\x70\x53\xee\x7f\x42\xe9\xf1\xc5\x48\x17\x66\xd8\x46\x55\x44\x7f\x63\x38\x16\x23\x9d\x3e\x26\xab\x55\x21\xbb\xc9\x94\x5a\x8e\xd8\xb6\x98\x2f\xaf\xfb\xa4\x21\x6f\xf8\x49\x2f\x5a\xd8\x92\x4e\xbc\x4d\x27\xcd\xe8\x98\x01\xd0\x62\xbe\x1c\x45\x13\x53\x6b\xbe\x40\x16\xd0\x8c\xf6\x25\x57\xe0\xf3\x65\x07\xc4\x64\x06\xb2\x3e\xb4\x63\xd1\x3e\x43\x29\xcf\x8f\xa5\xd8\x3c\xec\x1e\x45\x58\x4e\x83\x39\x80\xad\xcc\xc3\xe7\x46\xcc\xb0\xa9\x3c\x1d\xa3\x31\x03\x87\xee\xf9\x1d\xa9\xfc\xa6\xcc\xa0\x96\x78\xd3\x61\x0f\x4e\xec\xc2\xa9\x1c\x1e\xc5\x01\x1c\x6e\xea\xe7\xe1\x51\xc8\x49\xd0\x6a\x69\x2a\x9a\xc1\x39\x19\xed\x31\xe1\x3c\xba\x99\x46\x6a\xd1\x8b\x7d\x06\xf5\xa0\x5d\xc7\x18\x7c\xc1\x07\x07\x86\xfd\x45\x65\xbd\x8f\x73\xa6\xe1\x9b\x3a\x35\x7d\xa9\x5a\xf4\x56\x2d\x94\x35\x58\xfa\x64\x9f\x1e\xf9\xf2\xe6\x4b\x3f\x7b\xb9\x29\x4f\xd1\xc5\x10\xe4\xa4\x02\x14\x34\x0f\x3b\x48\xef\x03\xcb\x5f\xe2\x7b\x2a\x89\x48\xc3\x89\x36\x9d\x44\x04\x6b\x78\x0a\x7e\xd2\x8c\x8c\xbc\xa9\xaf\x6a\xa6\xec\x27\x8a\xb9\x24\xed\xc4\xa0\x50\xbb\xff\xcc\x5c\x72\x57\x3c\x58\xc0\xcd\x6f\xd2\xac\xae\xf9\x8e\x92\x2f\xad\xa8\x1b\x73\x20\x71\x60\xa4\xdd\x4d\x0d\xcf\x08\x6c\x22\x5b\x10\xfc\xc9\x54\xe2\x92\x52\xc3\x08\x9b\x25\xca\x10\xcc\x17\x96\x8f\xd3\xb1\x13\x46\xb5\x65\x38\x15\x3c\xa1\x81\xea\x9a\xc6\xa3\x5c\xf0\xfb\x49\x68\x4c\x04\x80\xc3\x23\x5c\xac\x98\x22\x20\x9c\xd9\x53\xa7\xef\xf1\x30\xed\xa7\xd3\x93\xcc\xce\x12\x9d\xf6\x43\xb4\x50\xe6\xff\x8b\x11\xb0\xad\xcf\xb4\x34\x05\x2c\x3b\xa1\xde\x3a\x8c\xa6\x4f\x07\x48\x1c\xfc\x8a\x34\xfe\x05\x93\x38\xcc\x01\x37\xbc\x93\xe0\x05\xf5\xa4\x9d\x65\x1b\x24\x43\xd0\xea\x02\xbd\x9b\x82\x79\xdc\x85\x7c\x6a\x2c\x32\xd7\x32\xf3\x24\xcc\x17\x75\xef\x15\x1c\x0d\x6e\x13\xd0\xe3\xac\x6c\xec\x93\x45\xa1\x0f\x0c\xf4\x91\x42\x31\x5b\xa6\x7d\x9b\xd9\xd2\x85\x1d\x5f\x57\x5a\xfd\x7a\xec\xe9\xd2\xbf\xe9\xba\x05\x15\x6f\x3b\x6c\x2a\x6d\x48\x03\x15\x30\x15\xb0\xe0\x2e\xec\x90\x72\xeb\xdb\x08\x9a\xc5\x82\xe6\x0c\x65\x59\x72\x41\x2d\xf5\x91\x66\xf4\xaa\xca\xfa\x6c\x16\x63\x11\x39\x02\x4c\x61\x49\x1a\x00\x90\xa9\x2c\x21\x0d\xb8\xc3\x54\x96\x90\xe2\x5c\xc3\x37\x55\xfc\x1f\x8c\x66\xba\x7f\x9a\x99\x9e\xac\x94\xa9\xff\x93\x1e\x95\x7c\x15\x73\x6d\x96\x05\x83\x4c\x48\x9d\x2b\x6a\x46\x77\x6f\xdb\xde\x27\xad\x2e\x61\xaf\x4a\xaa\x5a\xea\x15\x46\xb7\x99\x3a\x86\xe7\xac\xda\xb5\xf0\xd3\x46\x79\x70\xdc\x9b\x8e\x2b\xc0\xad\xff\x2c\x1c\xcc\x10\x65\xc6\x66\x8c\x5a\x18\xe1\xf6\x3d\x02\x5b\xcc\xd8\x0c\xe7\xfa\xbc\x29\x9b\xd1\x8d\x31\x79\x35\x99\x93\xcb\x76\xfd\x08\x25\xbb\x99\x7f\xb9\x50\x05\x36\x40\xe6\xc5\x1d\x3b\x4a\xd6\x99\x3d\xe2\xd7\x9f\x97\xdf\xde\x64\x3f\x5e\x7e\x3e\x01\x94\x73\x2a\x0e\x40\x71\x74\xf9\x9b\xd2\xaf\x21\x76\x1c\x06\x80\xdb\xf0\x69\x4c\x05\xc0\x9c\x49\xa2\x8f\xfa\x54\x35\x27\x20\x68\x2e\xb6\xe3\x4c\x9f\xfa\x33\xa6\xf3\x62\x3b\x36\x28\x4f\x2e\x4b\x2a\xc0\x45\x07\xd6\x31\xf5\x80\xbf\x60\xc3\xce\x0b\xf1\xde\xfe\x76\xa2\x4c\xde\xfa\x73\xf2\x9f\x46\x63\x8c\x5a\xd2\x92\xd7\x81\xe1\xe9\xac\x1f\x53\xe7\x22\x96\xdf\x64\xb4\xdb\x0e\x05\x0c\x86\x8b\x03\x3c\x9b\xec\xe2\x92\xa2\xd3\x92\x2f\x29\xd2\x92\x21\x3e\x9c\xa8\xa6\xf0\x17\xbd\x63\xfc\x08\x7e\xd1\x47\x56\xc5\xcf\x42\x38\x60\x4d\x3d\xdb\x6f\xdc\xba\xcf\xea\x9d\xcc\xcc\xeb\x99\x7e\xb9\xf8\x13\xa7\xf5\x98\x78\x1b\xa7\x1e\xdf\x37\x6e\x91\xa7\x13\x79\x5c\x70\x8d\x70\x1a\xe7\x89\xb8\x32\x4c\x83\xbb\xcd\x59\x1d\x60\xf6\x48\x2b\xec\x0e\xc8\x70\x10\xad\x4e\xef\x0e\x94\x2e\x40\x0d\x2c\xde\x29\xa0\xc6\x68\x18\x2d\xd5\x2c\x84\xf2\xae\x1c\xc2\xaf\x34\x24\x7f\x62\x4b\xa1\x87\x9e\x3e\xa7\x9a\x09\x65\xc3\x2c\xdf\x99\xd9\x7a\x06\x60\x19\x59\x33\x00\xfb\xb9\x3a\x7f\x26\x0f\xd0\x33\x5d\xcb\x37\x00\x99\x84\x5b\xf8\x5f\xd1\xc1\x82\x7f\x94\x23\xd3\x25\x6c\x60\xad\xf9\x70\x6b\x3c\x8c\xc0\x5a\x22\x3d\x46\x98\x50\x68\xf5\x8c\x40\xa8\xc6\x6e\x95\x4e\x1f\xc8\xfe\x74\x62\xec\x16\xbe\xf5\x59\x7d\xcb\x00\x24\x72\x2a\x75\x47\xbb\x32\x04\xdf\x32\x70\x61\x32\x0d\xf1\xb8\x50\xa4\x0d\xe5\x0d\x1f\x08\xc6\x51\xf0\x3c\x4c\x9e\xcc\x3b\xd9\xff\x4d\x5a\x03\xb2\x0c\x6d\x78\xbc\x69\x48\xcb\xc0\x08\xda\x60\xf4\x21\x25\x8c\x9f\x4e\xb6\x0b\x33\x20\xc7\x47\xf0\xd1\x63\x36\xec\x79\x74\x4c\xb3\x3a\x40\xd0\xe8\xb1\x7d\xbb\xf2\x2b\xa8\x03\xe6\xb3\x59\x0a\x65\xb4\xb2\x02\xb8\xa9\x98\x0d\x13\x14\xa3\x53\x2f\xef\x0b\xc8\xbd\xe9\xb7\xf6\xd7\x53\xa6\x4d\x8e\xd4\xe6\xad\x7d\x7d\x5a\xf5\x64\xa6\x2e\xe6\x69\x67\x78\x78\x11\x31\xf2\x8c\xf1\xe0\x4e\x7e\x36\xbf\x08\xe4\x9c\x3b\xf5\xdc\xfe\xe4\x5a\x70\x36\x64\x14\x47\x2c\xe1\x41\xda\x95\x99\xbe\x19\xac\xb7\x91\xaa\x4b\x77\x13\x0c\xc8\x09\x1c\x66\xca\x6e\xeb\x66\x5c\x69\xc5\x8a\x22\xab\xe0\xec\xcd\xcf\x70\x04\xfc\xc1\x1a\x14\xaa\x64\xb4\x23\x94\xad\xca\x11\xd2\x02\x89\x53\x5c\xe3\x16\xa3\xb3\xf2\xbe\xbe\xcf\xc9\xad\xd9\x66\x69\xa9\xab\x95\x47\xa7\x34\x0c\x49\x78\xbc\xfb\x8d\x04\x76\x6e\xc7\x05\x85\xea\x22\x25\x48\x36\x92\x71\x1d\x57\xfd\x1b\x14\x3e\x0d\xfa\x18\x15\x9e\x31\xe8\xa3\xbf\x66\x1a\xd2\xd1\x09\x5d\xda\xb9\x0c\xeb\x21\xa5\x71\xe0\x8b\x6e\xde\x43\xd0\xf8\xa9\x3c\x77\x9b\xb3\x73\x71\xc1\xa2\xf8\xc5\xfb\x85\xc8\xf6\x8b\x77\xae\x2f\x67\x87\x67\xd2\x2a\x3c\x83\x40\x37\xac\x63\xc4\xd6\x16\x90\xa3\x1c\x6c\x06\xe1\x38\xda\x85\xd6\xe0\x55\x7b\x24\x5f\xc7\xd9\x80\x8a\xd1\xb3\xf6\x12\x73\x55\xb8\x8e\xc6\xd5\xff\x4c\x26\x0f\xd8\x24\x58\x0d\xf4\x6c\x77\x1e\x4f\x5e\x5b\x4c\xc3\x33\x46\xcd\x9f\x2a\xd9\x3b\x08\xd3\xd9\x59\xde\x54\x55\x2f\xec\x55\x3d\x5c\x3f\x07\x4a\x98\xa4\x1f\xf8\x99\xa6\xa1\x1a\x5c\x24\xce\xce\xad\x14\xa2\xd9\x50\x8d\x51\x99\xb1\xe1\x33\x04\x9a\x62\xd8\xcc\x84\xdd\x9c\x01\xa4\x33\x07\x86\x5f\x70\x83\x3a\xfd\x8e\x9d\x4b\xd0\xe9\x77\xec\xfd\x60\xe4\x03\xfd\xc3\x64\x0e\xfc\x8d\x48\xa1\x21\x47\x01\x77\xaf\x53\x18\x8b\x8a\x97\x70\x0a\x63\x51\xb9\xb9\x9e\xc6\x58\xf4\x03\x43\x77\xe0\x35\x60\xc5\x86\xed\xce\x9e\x4e\x2c\xea\x66\x48\xdb\xe1\xb0\xc9\xc8\xd2\xd3\x8d\x8f\xb3\xb0\xe2\x58\xe4\x43\xe0\xd7\xb0\x59\x33\x40\x1c\x85\x3d\x9f\x9a\xa9\xe9\xc6\x59\x0c\x51\x3a\x4a\xdc\xd1\xae\xfc\x27\x7b\x79\x86\xe4\x67\xe8\x14\xa7\x03\xab\x34\x1c\x98\x20\x5e\x07\x60\x0f\x95\xe5\x1e\x9c\x03\xb3\x86\xb6\x43\x19\xd1\x64\x45\xf9\x1b\x3d\x34\x3f\xda\xc0\x56\x9f\x0e\xd5\xd2\x61\xcf\x89\x35\x52\x53\xaa\xed\x83\xa0\x74\xb6\x8c\x89\xd1\xe5\xfc\x18\xb8\xd4\xe6\xcc\x22\x52\x15\x85\xd0\x53\x7a\x19\x40\x49\xb3\xc2\x7b\x02\x22\x9e\xe4\xd2\xa8\xcc\x8b\x41\x0f\xfd\x78\xe5\x53\xf9\x2b\x9f\x76\xe5\x65\x8f\x13\x67\x3a\xe4\x3d\x4b\x31\x7d\xb1\x9d\x53\xff\xb4\x0d\xdb\x33\x5c\x4d\x0a\x92\xd3\x6f\xc4\xfb\x81\x95\x63\x98\x43\xc5\x97\x38\xa7\x5d\x16\x39\x3a\xfb\x91\x38\x5e\xbf\x39\x1d\xcf\x2c\x5e\x09\xbd\x0b\x3f\x27\xd2\x67\xf2\xda\x0d\x79\x3d\x39\x7e\xa6\x57\x5d\x2c\x71\x81\x36\xfd\xf4\xbb\x1f\x70\xc7\x34\x3f\xc4\x5b\x34\x37\x6c\x46\xc3\xdb\xef\x40\xd2\x90\xfd\x43\x19\x92\x73\xfc\xa0\x7d\x8d\x74\x20\xf2\xfd\x98\x0b\xf1\xcd\x0c\x2e\xbf\x2d\x88\x74\x32\x7a\x61\xd4\xf1\x67\x8c\x94\xbb\xee\x92\x67\x34\x0d\x59\xa7\xf1\x37\x0b\x77\x1f\xa6\xd8\xf2\x2e\x7e\x28\xa5\x2d\x45\xa1\x00\x56\x88\x63\x6e\x71\x89\x80\x2f\x62\x59\x9e\xc7\x07\xb3\x7c\x3d\x18\x7f\xc8\xb2\x35\x98\xba\xcb\xe9\x76\x53\xe6\x76\xd1\x9d\xc6\x1c\x70\xa3\x30\x97\xdd\xf2\x39\x07\x2f\x3b\x7a\x10\x89\xcb\x3b\x13\xc9\xb1\x38\x3d\x32\xbb\x4e\x67\x41\xf2\xb1\x9b\x94\x10\x44\x62\x2f\x9f\x1e\x73\x84\x5f\xec\xe2\x8c\xd6\xb6\x63\xfc\x18\xcb\x87\x84\x9c\x8c\x37\xb0\x38\x0c\x9c\x8d\x05\x38\x42\xd2\x6d\x83\x94\x09\x83\xdd\xbb\xed\x68\xcc\x51\x7d\x5b\x30\x63\x93\x2a\xa3\x45\x2e\xd2\xe7\xb6\xbe\x9e\x69\xc6\xb1\x74\xd2\x0c\x91\x3f\xa0\x14\xc6\x00\x9b\x65\x23\xa5\x59\xb4\xed\x53\x42\xbc\x1c\xdb\x26\xde\x0c\x65\xa7\x1e\xbb\x60\xe3\xf7\x19\x29\x15\x30\xa7\xa4\x21\xaf\xef\x99\x6e\xee\x55\xc2\xf9\x3d\xb7\x4f\x06\x71\x3a\x18\x69\x10\x27\xad\x91\x06\x78\xf8\x27\x48\x83\xf8\x47\xb6\x91\x4a\x15\x1d\x2c\x34\x41\xc9\x26\x35\x98\xe0\x8c\x83\x64\xa3\xbe\x59\x43\xc3\x09\xce\xb8\x2f\x94\xc8\xa2\x71\x77\x31\x95\xab\xa2\x71\x21\x31\x85\x1f\x28\x71\x91\x6e\xd9\x71\x39\xf1\x08\x4c\xd0\xe2\xd2\xde\x8e\xe2\xcd\xd9\xdb\x97\xfe\xf5\x48\x19\xdb\x97\xf9\x91\xff\xa8\xc2\xb6\x5b\xb2\xbd\x1f\x0f\xe9\x6d\x96\xff\x72\xd6\x37\x16\x45\x18\x80\x16\xd7\xaf\x2f\xfd\xb9\xc1\x9d\x6f\x3f\x6d\x05\xff\x34\xdf\xbe\x48\xcc\xa9\xdd\xd7\xfe\x44\x63\xba\xc9\xa6\x86\xd2\xac\xd7\x0f\x7e\x52\xae\x8a\x16\xff\xb7\x41\x01\xf1\xdb\x29\x71\x45\x8b\x37\xf7\x0d\x30\x8e\x89\x7d\x4b\x7d\x64\xb6\x00\x0c\x54\x76\xd9\xdb\x40\xcb\xb8\x4b\xde\x5c\x2f\x65\xb8\x3a\x5f\x54\x76\xab\xd2\x5c\xb4\xfa\x4a\x99\xa5\xf5\x4c\xa1\xe1\x59\x35\xa5\xba\x59\x6f\xa1\xac\x9e\xf3\x9f\x32\x0a\xe2\x7e\x7b\x1b\x50\xfe\x54\xb5\x05\x9a\xbf\xc6\x58\x44\x3f\xbf\x31\x11\x10\x27\x86\x29\xcc\x5e\x53\x0a\xf7\xb1\x12\xb2\x16\xe3\xf7\x7c\xe3\xa1\xcc\x8f\x9b\xbf\xe0\x5b\x01\x13\xee\x86\xd2\x2e\xb3\x02\x69\x51\x04\xac\x63\xbe\xed\xc8\xe2\x11\xca\x34\xfa\x20\x8e\x63\x21\x0c\x5a\xfd\x0f\xaf\x35\xe7\xdb\x0f\x5f\x7b\x4d\x3b\xcb\xbd\x30\x5e\xf3\xe3\x99\x3e\x99\x16\x66\x49\xc6\x45\x3c\xd0\x1f\x1b\x17\xdc\x65\x4f\xa2\x61\x70\xf5\x38\x3f\x48\xa9\x92\x52\x65\x83\x9e\xf9\xd4\x6f\x19\x53\x55\xdb\x0c\x66\xf8\xf8\xc2\x23\x9e\x2b\xe5\xb6\x68\xf1\xc5\x1a\x53\x90\xbb\xb5\x29\x14\x41\x8b\x1f\x4b\xa8\x81\xce\x33\x8e\x29\x94\x40\x8b\x3f\xf1\xe3\xb7\x06\xb9\x72\xf9\xc8\x4d\x19\x47\x1f\x71\x33\x7a\x4b\x5d\xfd\x26\x5a\x52\x09\x2b\x5a\x45\x40\x7c\x50\x49\xe9\x72\x79\x00\xa9\x2a\x48\x3c\x9b\xf0\xa3\xe3\x63\xbc\x94\x8a\xa8\xd1\x2a\xe2\x56\x41\x33\x5a\x7c\x94\x1f\x16\x3e\xcd\x70\x3d\x05\xf7\x39\x21\xc5\xe3\x4e\xf9\x78\xe1\x61\x83\x8f\xb0\xb4\xbc\x7a\x9c\x0e\x9b\x51\xd9\xe7\x1f\xfc\x97\x1c\x79\x3e\x36\x1c\xe3\x06\xf9\xf8\x59\x00\xbc\xe7\xb0\x19\x3c\x8b\x9d\x4e\x38\xd1\x0f\xb6\xa0\xa2\x61\xdc\x03\x4a\x5d\xd9\x0d\x0d\x31\xe0\x78\x18\xa3\xb1\xd5\xbf\x4e\xdb\xd7\x5b\xbe\xfd\x28\xa9\x6c\x87\x32\xc7\xb3\xf2\x5f\x3b\xa7\xa2\x76\xbe\xb6\x1c\x1b\xa2\xf2\xeb\x1b\x85\x9c\x40\xbe\xd9\xce\x13\x92\xa6\x1a\xa4\x16\x0d\x37\x8e\xb3\x40\x8c\x86\x6c\x32\x50\x20\x2e\x31\xc5\xb5\xb8\xbf\x64\x4c\x36\xea\x5b\x7e\x56\xa6\x43\x1c\x35\x5f\xb6\x68\xcb\xa7\xea\x25\x23\x72\x4a\xa2\x78\xc8\xbe\xc2\x8f\xc4\x33\xe3\x44\x0f\x35\x07\x9f\xaf\x2e\x73\x26\x1b\xeb\xeb\x6d\x56\x53\x26\x59\xf9\x34\xf3\xf5\x78\xd2\x8e\x71\x6a\x1c\x41\x7e\x16\xfb\xd8\xcf\x0e\x41\x31\x1a\xd2\x46\x79\x1e\x5a\xfc\x48\x4e\xec\x10\xa7\x89\x90\x01\x2d\x6e\x1a\xc2\x53\x5c\x4f\x3b\x16\x0a\x3d\xa5\xd6\xd3\x78\x29\x94\xd9\xa1\x55\xdc\x8d\x0e\x57\x31\x1a\x42\x4c\xd8\x80\x16\x27\xd8\xcf\xd2\xba\xa5\x8c\x15\x6c\x90\xcd\x53\x52\x20\x6d\x21\x31\xd5\x3f\x90\xf1\x18\xed\x3f\xcc\x81\xfc\x8c\x45\x72\x83\xd3\x8d\x07\x00\x0c\x3f\x7f\xf6\x43\xc7\x55\x43\x38\x0b\x30\x11\xf3\x87\x49\x9f\x5f\xf7\x4d\x43\x43\xa4\xfc\xfc\x70\x38\x27\xc9\x9f\x2f\x1e\x8e\x7c\xfa\x71\x61\x48\x2d\x3f\x07\xa6\x1f\xcb\x9f\x09\x16\x24\xa0\x72\x7c\xfa\xf9\x74\x1f\x7f\xd6\xcf\xdc\x10\xe3\xe6\x67\x77\xcd\xf5\xb4\x64\xf8\x32\xd3\xe4\x03\xdf\x55\xff\x83\xab\x5c\x88\x81\xe3\xf9\x17\x1d\xef\xe3\x73\xf9\x61\x72\x7a\x92\x96\x11\x03\x95\xc3\xd5\x22\xfc\x05\xa8\xf1\xe5\x88\x17\x2f\x20\xdc\xcb\x98\x81\xea\xc8\x79\x37\x29\x58\x89\xb7\xf8\x7a\xd9\xb1\x88\x97\x74\x39\xe4\x45\x3f\x9e\x52\x26\x74\x42\x8a\xb9\xad\x2c\xd7\xcb\xe2\xdc\x22\x69\x09\x36\xd0\x6a\xda\xc1\x55\x70\x30\x04\x9b\x01\x16\x15\xeb\x85\x0d\x5a\x19\x10\xa2\xe2\xa4\x13\xc7\xb8\xc0\xf6\x5e\x82\x18\x34\x1c\x19\x4b\x31\x2e\x1a\x9e\x94\xf5\xc2\x09\xd9\xf9\x6f\x98\x30\xe3\xc3\x42\xad\x69\xd7\x22\xb4\x67\x10\x6f\x77\xc3\xf0\x1d\x2d\x0f\xc7\xda\x52\xe2\x88\x3e\x0e\xea\x2e\x0f\x9f\x76\x2d\x81\x1a\x7f\xea\x93\xcc\x4c\x99\x76\x66\xa7\x51\x43\x5a\x79\x4c\xb2\x5e\xa0\xe7\x3b\xa3\x5f\xde\x7c\x85\xca\x46\xb0\x5d\x99\xcf\xed\x3e\x99\x23\x14\x47\xe1\x4f\xfd\xfe\x07\xa7\xe0\x52\x74\x8c\x86\x67\x63\xbd\x6c\xa4\x76\x3a\xe5\xa5\x45\x67\x02\x2d\xad\x32\x63\xe8\x11\x2b\xcf\x75\xe0\x63\x18\x50\xde\x13\x2d\x85\xfa\x6d\x06\x7f\xf8\x51\x06\xde\xbb\x75\x58\x5a\xf5\x54\xb5\x9f\xdb\x6e\x83\xe5\xd4\x10\xdc\x49\x2d\x32\x43\x38\xb3\xd2\x4d\xb2\x2c\x1d\xf2\x2d\xde\x4d\xdd\xcf\x3f\xff\xab\x1c\xf6\xd6\x81\xc6\xe9\x8c\x6f\x32\xbe\x90\x1e\x1f\xcd\x0a\x94\x88\x13\x69\x1d\x3c\x28\xf3\x99\x77\x1d\x08\xaf\xb4\xeb\x38\xec\xac\xc3\x81\x79\x51\x18\xbc\xcd\x8b\xfc\x0a\x82\xcd\x1e\x86\x25\xe4\xc5\x71\x3e\x23\xb0\x98\x6b\xe9\xe5\xa3\x5b\x9f\x0c\x41\xbb\x25\xbf\xe9\x80\x3e\x07\x0c\x06\x2a\x03\x6f\xd9\x72\xf8\x0e\x2c\x81\x65\x54\x46\xcd\x5f\x2f\x47\x23\xa0\x8f\xc5\x66\x61\x19\xc8\x7a\x9e\x0f\xad\xdc\x4b\xea\x7a\xe9\x43\x79\x32\x07\x7f\xed\xbb\x93\x76\x41\x6e\x47\x18\xa2\x4f\xa4\x63\x4f\xa1\x06\x34\x98\x12\x61\x6e\x38\x65\x2f\xc7\xe4\x98\x19\x1e\x07\x67\xd8\xed\xf0\x5b\x8e\x2b\x6c\x62\x5d\x39\x18\xbb\x05\x5e\xc6\x63\x7f\xa6\xe5\xfc\x3a\x07\xf3\x73\x41\x6a\x6f\x8c\x14\x7a\x38\x1d\x4a\xcb\xf7\x4a\x4d\x79\x50\x99\xbb\xd3\xf2\xcb\x87\x88\x75\x9a\x61\x18\xaa\x43\x6b\x8c\x42\x2b\xb6\x38\x07\xdf\xd9\xb5\x71\x4b\xb3\xbf\xa4\xf8\x3a\xcd\x2f\x3e\x3a\xad\xd3\xab\x6e\x7f\xcf\x3a\x1d\x0c\x11\x8f\xe4\x3a\xb1\x6c\x2e\x4a\xbd\xce\x33\x94\x76\xd4\xe4\x3f\xec\x9a\xc6\x0d\xba\x4e\x23\xdf\x1c\xce\xf3\x26\x1d\xca\x96\x3f\xb1\x41\x3a\x99\x1d\xf9\x44\x38\xad\x2d\x67\x73\xe0\x30\xb4\x04\x95\x38\x1c\x1d\xfb\xa6\xbc\x90\xa9\xd9\xe5\x8c\x4a\x99\x65\x69\x0f\x69\xb9\x71\x31\x93\x3e\x4c\xf8\x68\xb1\x0a\x87\x09\xdb\x23\x4b\xf8\x07\xd2\x5a\xdf\xd4\xa9\xeb\xff\x17\x94\xee\x69\x7d\x5e\x5d\xc5\x21\xa4\x09\xd4\xb0\x1c\x2f\xa3\x3a\x10\xe9\x4d\x5a\x7a\x32\xbe\xc2\x4d\xe9\x91\x4e\xf5\xf8\xe8\x82\xe2\x6c\xf1\x90\xf2\x6a\x3a\xb8\xe6\x4d\x5a\xe1\x5c\xf4\x23\x1f\x08\x67\xb3\xa5\xf0\x19\x65\xc0\xea\x8a\x89\x71\x7f\x19\x52\x28\xba\x92\x66\x3f\xfa\x90\x3f\x43\x83\x8c\xb4\xa3\x97\xd5\x99\x13\xa7\x32\xeb\x23\xa4\xd0\xa4\x19\x00\x8e\x0b\x58\xbf\xe8\xb0\x91\xbd\x57\x78\xdb\x00\x7b\x3b\xb5\x02\x86\xff\x52\xa0\x8b\xf3\x4a\x27\xdb\x3f\x92\x9a\x55\x7a\x9e\xe9\xc2\xc1\x05\x27\x2a\xae\x45\x99\xf9\x2d\x69\x0c\x4e\x62\xcb\xe0\x08\x00\x34\x4b\xe0\x88\xb3\xd5\x34\xaa\xe0\xa7\xb6\x51\xd6\x85\xc9\x6a\x5b\x6d\x39\xef\x02\xe7\xb2\xa5\x44\x0b\xad\xa1\xc6\x2f\x8c\x10\x9f\xbd\x96\x90\x13\x25\x7a\xd2\x99\x16\xb0\xda\x97\x60\x14\x8d\xab\xb3\x75\x71\x86\x44\xbe\x08\x45\x71\xe4\x37\x94\x4c\xa1\xb4\x9e\xb2\xa2\x0f\x43\x19\xa2\x42\xff\x5e\xab\x93\xb1\x69\x5b\x66\x6e\x88\x35\x81\x37\x72\x5d\x3a\xf5\x73\xde\x58\x82\x3e\x1c\xb3\xb3\x9d\x1c\x6b\xa2\x1e\x99\x01\xf6\x25\xab\xe3\x00\x12\xf5\xc0\x94\xb9\x90\x9b\x88\x11\x20\x0c\x0e\x0b\x7c\x93\x56\x4a\x88\x0a\xa1\x14\x1a\xa6\xf8\xba\xec\x37\x6e\x35\x85\xe2\x09\x36\xd1\xe5\x97\x4d\xd9\x19\x17\x9b\x73\x84\xdc\xaa\x9b\x2f\x75\xee\x3f\xd8\x71\x4e\x44\xd0\xb3\x15\x0c\x69\xe0\x7c\xb2\xaa\x93\x32\x3b\x57\xd0\x4d\x7a\x3e\x2f\x28\xad\xe7\xf3\x61\x75\xd5\x14\xda\x67\x3b\x53\x6a\xcd\x83\xb9\x5a\xbd\xa2\x67\xea\x7e\xfe\xf9\xdf\xff\x1b\x81\x65\x22\xb3\x00\x8a\x01\x8f\xee\x12\x52\xa1\x13\x40\x64\x91\x34\x00\xef\xe9\xaa\x28\xe3\xa7\xae\xb5\x0b\x22\xd3\x69\x02\x66\x7f\x2a\x6b\xc9\xff\x0e\x64\x78\x57\xb5\xee\x61\x44\x3a\x9e\x38\x9f\xfa\x4d\x79\x49\x91\xa7\xce\x28\x30\xb2\x3d\xaa\xf3\x3f\x65\x43\x0a\xe5\xd0\x62\xd8\x2a\xa5\x40\xcb\xde\x11\xac\xa1\xc5\xf8\xab\xce\xa1\xda\x33\x76\xe1\x1a\x62\x37\x56\x3f\x7a\x89\x8d\x29\x98\x43\x8b\x29\x58\x79\x4b\x97\x01\xc9\xb5\x04\x8a\x67\x55\x4e\x2e\x93\x3e\x2d\x20\x4a\x0a\x6d\x44\x4e\x86\x27\xbf\x93\xb3\xb8\xde\x94\x78\x0a\x9f\xed\x32\x3e\xa2\x1e\x19\x2e\x70\xe6\xfc\xa7\x2f\xae\xf0\xb5\x2e\xc3\x25\x62\xe0\x09\x2e\x71\x36\x8c\x4a\xa1\x25\x8e\x32\xb0\x74\x04\x97\x28\x13\x91\xe1\x10\x18\x11\xaf\x82\x47\x94\x98\xaa\xcd\xe1\xb5\xe0\x21\xa3\x23\x1a\xda\xba\x85\xdd\xd2\x87\xa7\x36\x94\x7c\x1a\x23\x55\x19\x6a\x5a\xfd\x29\x71\x0c\x3d\xda\x79\xd9\x50\xa4\x8e\x7f\x11\xf3\xa9\x39\x69\x54\x54\x41\xf3\x79\x38\xb6\x16\xf1\x30\x4a\x28\x0d\xf6\xc8\x97\x1a\xec\xc5\x2f\xfb\x55\x0b\x1b\x07\xfc\x43\x43\x4c\x81\x7f\xa8\x19\x90\x0e\x1e\x31\xca\xda\x42\x60\xf0\x2b\xe6\x27\x74\x70\x73\xb6\x9e\xcc\x88\x9c\x93\xb1\x2c\x82\x70\x08\xa5\xdd\x88\x7a\x76\x02\x81\xec\xb0\xe6\x27\x54\x8d\x43\x48\xb3\xb6\x41\x8d\x3a\x67\x00\x4e\x91\x05\xa6\x01\x67\xf3\x6a\x91\x66\xcc\xba\xaf\xc1\xf0\x36\xaf\x86\x38\xe3\x0c\x60\x14\x43\x14\x70\x0b\x37\xa5\x61\x31\xff\x95\x2f\x3d\x3e\x97\x39\xe4\x45\xc3\x2c\x54\xe8\xfd\x23\x87\xe2\xce\xc1\x91\x8d\x41\x10\x89\xf1\x4a\x5d\x2b\x20\x56\xa8\x5b\x94\xe0\x73\x5f\x1d\xa3\xbf\xa5\x54\xe3\x43\x02\x10\x28\x9f\xbd\xe9\x50\x10\x15\x4c\xf0\x12\x86\xe0\xc4\xa1\xb2\x1c\x19\x22\x52\xb1\xfb\x8e\x91\x97\x9a\xcb\xa1\xf0\x47\x6b\x29\x35\x2b\xa2\xe8\x1c\xee\xbe\xf2\xbc\x6e\x75\x5f\x57\x35\x8e\x99\xdd\x5b\x37\xbf\x2a\x44\x41\xe7\xb9\xc5\xea\xd6\x0e\x35\x55\xe9\x35\x85\x1f\x37\xd4\x21\x61\x38\x4f\x2f\x31\x1d\x5e\xa1\xf4\x12\x17\x1f\xfc\x12\x6c\xa0\xe0\xf0\x5e\xc3\xbb\x13\x51\x27\xd8\xc0\x3d\xdc\x54\x75\xbe\x8f\x14\x2e\x3f\xa0\x7d\x41\x8a\xe3\x1e\xea\x2b\x44\x46\x3e\xf4\x49\x28\x5f\x4e\x2f\xf0\x84\xb2\x81\x81\xb4\x10\xc4\x40\x9e\xc0\x3f\x65\xb8\xe0\x07\x47\x58\x6a\xf8\x21\x4b\xc3\xde\x70\x90\xfd\x7a\x20\x21\x1c\x00\x22\xd2\x63\x18\x6a\xcf\xbe\x36\x38\x21\x36\x95\xe0\x07\x2d\xbb\xc3\x41\x1d\x5e\x39\xfe\x11\x70\x9f\xdb\xa1\xe5\xa8\x0e\x11\xda\x83\x8d\x8d\x55\x01\x52\x21\x96\x8b\x83\x3c\xd4\x03\x51\x33\x72\x0d\x01\xe5\x8d\x76\xa4\x25\x99\x27\x2d\x5f\x7a\x9f\x61\x53\x0c\x07\xd2\xe3\x9c\xe4\x20\xfb\x0d\xd5\x3a\xec\x9a\xe6\x3a\x63\x29\xaa\xfe\x41\xd0\xaf\xa5\x98\x0f\x65\x5c\x29\x73\xd2\x21\x9a\x71\xac\xab\xa7\x55\x1b\x2a\x4f\xa1\xdd\x49\x0c\x6e\x5b\xd2\x30\xb8\x5b\x6b\x74\x9e\xd6\x2d\xa1\x1d\x1e\x5d\x04\xd8\x81\xfb\x93\x35\xf0\x94\x72\x34\x9a\x3e\xf0\x71\xc3\xb3\xa6\xcd\x94\x96\xc2\xe2\xc2\x0b\x92\xe1\x35\x48\x0f\x6f\x40\xd9\xfd\xfd\x34\xa4\x9d\xc2\x09\xdd\xf1\x20\x26\x71\x32\xd7\xf4\x35\x6a\xe3\x90\x63\x9c\x44\x3d\x18\xbe\x63\xe7\x73\xad\xb4\x1c\x0e\x62\xd4\x94\x49\x4e\xb2\xc5\xe6\x64\x7c\x0c\xd7\x39\xbd\x60\x45\x81\x26\x0a\x17\xa5\x8b\x48\x11\xb8\xf9\x97\x41\x13\x93\x07\x9a\x6b\x22\x95\x38\xbe\x4e\xb8\x2f\x75\xdf\xfe\x34\x9d\x7e\xfc\xa3\x69\xd8\xe0\x63\x28\x1d\x3f\xce\xfc\xb6\x9f\x5c\x1d\x19\x9f\xce\x9d\x61\x45\x42\x45\xb0\x35\x88\xba\xcf\x9d\xcd\x9a\xbc\xcb\x63\x04\x8b\xd1\xe6\x4b\x03\x77\xd2\xaa\xee\x85\x46\xca\x24\x01\xd0\x40\xd3\xe6\x0d\xbb\x51\x51\x24\x3a\x61\x6f\x96\xc3\xec\x47\xe9\x0a\x6a\x71\xbd\x32\x36\x03\xfd\x11\xf0\xd3\x89\xba\x5e\xf9\xce\x30\x8c\xcc\xe4\x16\x6e\x95\x6d\xe1\x20\xfb\x11\x23\x0e\xab\x3f\xe3\x23\x70\xd4\x88\xca\xe3\x95\xb5\x60\x3d\x14\xc5\xf2\xa1\x06\xbe\x5c\xb0\x1e\xf3\xba\x6c\x13\xc3\x79\x4b\xaf\x3a\xb3\x4d\x96\x31\x38\xbc\x20\x58\xc6\x6f\x4c\xc6\x2e\xbc\x06\xa9\xb1\x6e\x6a\xbb\xd5\x54\x05\x57\x0b\xf5\xd1\x73\x95\x0c\xc7\x9b\x98\x25\x58\x58\x2c\xec\x62\xa1\x37\x1a\x28\x9b\xe5\xd0\x13\x67\x4d\x43\x62\xcb\x48\x61\x63\x39\x26\x56\xc0\x9a\x0c\x36\xcd\x5a\x3b\xc2\x05\x82\x76\x94\xc1\xea\x2d\xbb\x59\xb9\x9f\x59\xcb\xba\x32\xbf\xe2\xab\x9c\x1a\xca\xa3\x65\x0b\x39\x2c\x45\xfb\x0f\x98\xc3\xb5\x6c\xf9\xc0\xf9\x86\x8b\x34\x98\x49\x70\x91\x63\xd6\x50\x16\x40\x8c\xc6\x87\x67\xb6\xf0\x42\x01\x67\x69\x97\xd5\x52\x66\x6b\x39\x9a\x10\x53\x20\x4c\x40\x2c\xb8\x85\x73\x36\x53\x89\xec\x44\xcd\x0b\x68\x72\x4e\x36\x90\x23\x56\xf0\x92\x75\x2d\xdb\xdc\x5c\x01\xad\xb5\x99\x59\x46\x84\x21\xc4\x59\xdf\x31\x2a\x4a\x8e\x13\xcb\x0e\xb2\x9a\x55\x91\x61\x94\xf3\x83\xe2\x50\x8c\x1c\xc0\x04\x42\x29\x2f\xb6\xfb\x36\x97\x72\x82\xdd\x70\x29\x46\x9d\x31\x27\x6d\xa4\xaa\x45\xce\x95\xba\x52\x77\x35\x85\xc3\x85\x1d\x12\x01\x39\x20\x7d\x28\xb8\x42\x2a\x1b\x2b\xda\x70\xfb\xf5\x03\x12\x51\x90\x94\xd6\x46\x46\xa0\xf0\x1f\xf0\xf0\xe6\x72\x00\xc9\x65\x84\xca\x04\x5e\xb7\xb6\x53\xb5\xe6\x57\x6e\xc6\xbc\x78\x52\xb1\x40\xa4\x84\xd9\x36\xac\x97\x76\x24\x1e\xd1\x2f\x82\xa0\x94\x17\x4b\xb4\x7d\x2d\x3c\x8e\xb4\xa3\x13\xca\xcc\x87\x7a\xc8\x8d\x5e\xdc\x3e\xef\xc1\x15\x8e\x7c\x01\x58\x73\x6d\x8b\x4a\x56\x6b\xfb\x78\x37\xf3\x9d\xae\x6f\x31\x6b\xb6\x0d\x41\xce\xc3\x8a\x5e\xd1\x00\x1c\xaf\xed\xec\xf4\x84\xe6\x5e\x06\xa3\x8c\x1a\xca\x82\x9b\xaa\xbe\x14\xe0\x76\x71\x29\xb2\x45\x23\x5c\xf9\x72\x64\x8b\xc6\xb1\x7f\xfb\x09\xc4\x71\xa5\xd0\xe6\xef\x11\x52\x0f\x59\x51\x83\xdb\x67\xbd\x8c\x55\x37\x58\x3c\x26\x5a\x42\xb5\xf4\xec\xbc\x8d\xa7\x6f\xe4\x43\x65\x88\x78\xe5\x43\xef\x0a\x76\xa2\x60\x2c\x85\x38\xb4\xeb\xed\xc4\x4a\xc8\x46\x81\x5a\x8e\x83\xf9\x10\x8a\xa5\x10\xe2\x67\x01\x62\x09\xf7\xbe\x11\x9c\x47\x5a\xed\x5a\x81\x7c\xe9\xdb\x03\x18\xeb\x8d\xe4\x84\x7d\xdf\x36\x34\x9f\x11\x58\x9f\x8f\x74\x23\x3d\xd3\xd2\xcb\xcf\xbd\xf0\xa5\xec\x4e\x02\xb2\xae\x37\x2c\x89\x29\xf7\xb6\x87\x10\xf6\x75\x8c\x0c\xa2\xbe\xae\xf7\xf4\xf0\x52\xd3\x61\x8d\x07\xd4\x52\xd9\x01\xb5\x65\x2e\xa6\x0b\x26\xf6\xff\x18\x7b\x97\x5c\xd9\x7e\xe4\xdc\xaf\x5f\xa3\xd8\x33\xf0\x5a\x7c\x13\xf8\xe3\x74\xdc\xb6\xe7\x40\x66\xe6\x32\xd4\x90\x54\x28\x4b\xf3\x37\x18\xbf\xef\xcb\x23\x4b\xf7\xe2\x54\x63\x63\x93\xb1\x98\x7c\x33\x18\x8c\xa7\x8b\x86\x2b\xb8\x6f\x35\x90\x92\xd5\x59\xdd\x50\x6a\x72\xd1\x57\x0d\x04\x5e\xe2\x37\x47\xe7\x34\x03\x81\x0d\xe5\xcf\x71\xe1\x68\x43\xfe\x2e\xd7\x0b\xe9\xa8\x27\x72\x69\xae\xf4\x43\xef\x3b\xd5\x1a\x3b\xad\x5f\xff\x04\xf3\xe4\x85\x32\xfb\x2d\x14\x86\x8a\x8a\xcc\x04\xd6\x0b\x15\x66\x4b\x10\x43\x27\xa5\xc9\x35\xe5\x7a\x07\x91\x27\x2f\x91\x4b\x2e\x30\x24\x00\x5d\xef\xa1\xed\xdc\x94\xd5\x03\xc8\x5f\x41\x5b\xa2\x98\x43\x43\xa5\xc9\xbf\xdc\x42\x27\x45\x2e\x25\x97\x74\x52\xe4\xd2\x6d\xa1\x93\xd2\xbf\xd5\x3e\x91\x63\x4e\xac\xa1\xa2\x03\x1e\x5e\x2f\x4e\x17\x54\x2d\x06\x36\x5a\xce\xb7\x1e\x9f\xc5\x1f\x63\x19\x44\x7e\xe0\xd6\xc2\xe4\x57\x28\xac\x9c\xbe\x3b\x1b\x9b\x44\x68\x3d\xa2\xc2\x34\xf9\x24\x5c\x6f\x8c\x2b\x85\xaa\xdf\x68\x3b\xfb\xf8\xa3\xdb\x22\x6f\x7c\xeb\x0d\xeb\xc9\xe2\xd8\xb7\x02\xb6\xa9\x1e\xbc\x3a\x99\x09\xf8\x66\x23\x24\x17\x8d\xf9\x11\x6a\x20\x24\xcc\x1c\xee\xfa\xa2\x11\x8d\x52\xc4\x99\xaa\x21\x2e\xd7\x74\x2e\x5c\x7c\x79\x54\xf1\x5e\x95\x53\xd4\xf5\x46\x03\xde\x27\x08\x0f\x1c\xbe\x73\xe4\x81\x63\x78\xcc\x7a\xbe\x8a\x55\x80\xaa\xcb\x1c\x9e\x9f\x60\x0e\xc8\xc9\xde\x7a\x8b\x92\xf3\x48\x02\x1f\xdd\x32\xa4\x58\xe1\x92\xa3\xc9\xc7\xdc\xfa\x88\x59\x3d\xfd\x31\x87\x2e\xeb\x50\x8e\x37\x96\x5e\x55\x1f\xed\x36\xcd\x6d\x78\xdd\xb0\x4d\xc3\xb2\x92\xcc\x74\x96\xe9\x73\x45\xda\x5e\x6e\x25\xb6\x97\x26\x45\x41\x63\x2c\xcc\xfe\xc8\x40\x57\x45\xd9\x32\x22\x10\x3f\x12\x4f\xeb\xaa\xfd\x88\xba\x17\xff\x4d\x7e\x35\x6e\x71\x45\x42\x61\xe6\x74\x37\x7a\xbf\x2f\x64\x70\x4c\xca\xbe\xd0\x4f\x90\xbc\x7a\xcb\x0c\x5e\xd7\xe4\x0e\xf1\x70\x93\x83\xaa\x7d\xc1\x2b\x10\xb2\xdd\x8a\x87\x20\xc1\xf7\x26\x1e\x82\xbc\x2c\xed\x9b\xe3\x0a\x21\xba\x11\xf9\x0e\x61\xc5\x1d\x22\xdf\x7c\xab\x91\x5b\xbc\x02\x68\x83\x1d\x26\xf3\x4d\x7e\x95\x76\x98\xcc\x9f\xa1\x25\x65\x79\xc1\x56\xe5\x36\x23\x2b\xca\xc6\x5c\xb3\xab\xf7\xcd\xe4\x16\xd7\xfa\xd0\x03\x15\x05\xa1\x43\xf9\x6d\xc9\x8a\x25\x4e\xdf\x37\xd6\xcf\x23\xa9\x15\x1d\xde\xea\xc2\x35\x7e\xaa\x0e\x41\x73\x08\xc3\xef\x7b\x6a\x3a\xd5\x07\x11\xc3\xdd\x85\x4f\xef\x93\x07\x0a\x47\x5a\xa2\xf8\x8d\x40\xd8\x96\x46\x1b\x29\xaf\x98\xa6\x1b\x29\xaf\x4c\xfa\xf7\xad\x67\xbd\xa7\x81\xc8\x7a\x62\x5e\x6d\x09\x76\x75\x03\x6c\x2c\xea\xe5\x04\x6d\x87\x98\xb7\xdc\x5e\x08\x0e\x77\xd1\xa4\x2c\xad\xef\x9f\x11\xf9\xc6\x30\xbe\x12\xb4\xeb\x64\x63\xd1\xdc\x48\x1c\xd2\x4b\x21\x1c\xf6\xcd\x2e\x2a\xea\xcf\xd6\xa2\x39\x1b\x5d\xa8\xea\x82\xf6\x14\xf4\xc5\x46\x78\x2b\xbb\xdc\x4d\x7c\x05\xd9\x25\x12\xfb\xbf\xc9\xa4\x72\xa7\xe0\xea\x4a\x22\xbc\x93\x2e\x7e\xe8\xe8\x4d\x0c\x05\xef\x5b\x2c\xdf\x93\xc4\xae\x04\xff\xbf\x87\x2e\xbe\x8d\xe9\xfb\xd0\x1d\xb9\xc3\xf4\xbd\xc9\x72\x82\x78\xff\x4d\xba\xdc\x5b\x31\x15\x74\x43\x11\xfe\xff\x64\x5d\x96\xdb\x0c\xc2\x7a\x13\x46\x41\x9a\xd5\xc4\xff\xcf\xc2\x19\x0a\xff\x9f\xc5\x74\x25\xfe\x7f\xae\x1e\x75\x6c\x04\x21\x67\xc2\xff\x27\x11\xae\x84\xff\x3f\xab\xa0\x26\x83\xcb\x2b\x16\x0e\x21\xfe\xef\xec\x36\x64\xaf\xd4\x94\x63\xba\x34\x79\x68\x46\x55\xff\x2e\x1e\x3e\x9e\xbb\x78\x8d\x4b\x05\x76\x23\x3d\x96\xca\xdf\x26\xbe\x82\x7c\xdb\xee\x90\x25\x67\xa3\x19\xa4\xc7\x92\x53\xee\x14\x5c\x21\x69\x03\xee\x90\x1e\xe7\xec\x5e\x07\x0a\x1a\xdd\xb5\x70\x64\x86\xba\x8d\x82\xca\x48\x6a\x3f\x22\x02\x49\x0b\x66\x87\xa0\x39\xdf\xdf\x6f\xf4\xd4\xf5\x44\x94\x58\x9d\x9f\x2c\xc1\xc2\x50\x2e\x90\x13\x88\x76\x4b\xe8\xac\xed\x19\xf1\x1c\xb2\x9c\x9d\xee\xb0\xc0\x2f\x5e\xa7\x6c\xc4\xef\x8f\x1c\xc3\xe1\x5f\x62\x54\x38\x95\x8b\xad\x02\xfa\xde\x59\x4f\xa5\xe4\x8f\x04\x1f\xce\xca\x69\xb7\x76\x65\x63\x1c\xc3\x3d\x3f\x27\x42\x6e\x29\x77\xd6\x1d\xe1\x81\x84\xbd\xbe\x7c\x28\xef\x2c\x12\xc4\x65\xc3\x68\x5c\x2c\xb4\xad\xc0\x0f\xa2\x5e\x76\xc6\x1e\x47\x74\xcf\xce\xa8\x5c\xde\xd5\xd9\xd8\x1e\xcd\xad\xec\xb8\x0c\xd5\x77\xe9\xb1\xb8\x11\xb0\xd6\xf7\x63\x78\x8e\xbf\xd4\x66\x6c\x64\x59\xe4\x6f\x02\x41\xd4\xfb\x9b\x8d\x73\xe7\x1f\xc6\x1b\x5e\x9a\x9a\x3b\xa2\x44\x34\x11\xe3\x3b\xe2\x42\x64\xbd\x2b\x77\x46\xa8\x2a\x0d\x86\x9d\x31\x21\x1f\xae\x14\x7a\x20\x6b\xf2\x56\x18\x73\x57\xd7\xc3\xe4\x4d\x7d\xc4\x08\x53\x27\x42\xde\x04\x44\x16\x6e\x79\x13\x90\xbe\xc5\xce\xb8\x8d\x48\xfe\xc8\x3e\xc8\xfe\x08\xa7\xcb\xcb\xb9\xd1\x07\x71\xab\x1b\x9d\x25\xe7\x62\x71\x75\x3f\x64\x89\x5f\xab\xeb\x55\x07\xa9\x08\x01\xfa\x94\xf7\xbd\xad\xc8\x0f\xf2\xc8\xb6\x0b\x2f\x9f\xee\x5c\x1c\xa2\x7f\x42\x2f\x7c\x97\x21\xb4\x35\x95\x8d\xb5\xee\x6e\x24\x50\x81\xee\xa4\xc2\x56\x84\x5f\xb2\x0b\xfa\xa0\x22\x46\x77\x81\x1c\xe6\x09\xb7\x0b\x37\xaa\x10\x77\x81\x17\x9f\x9c\x8b\xc5\xd5\x36\xc5\x7d\x41\x17\xfa\x2d\x10\x36\x43\x43\x16\x8b\x33\xbb\x52\x04\x8b\xd5\xf5\x68\x75\xe9\x4f\x08\x50\x93\x9e\xfb\x0e\xd1\x2e\x9d\x18\x42\xb4\xdb\x7f\x2b\x21\xda\x5b\x1f\xfe\xa6\xdd\xee\x8f\xe1\x2e\x43\xeb\x55\xb1\xee\xba\x79\x02\x6c\x84\xad\x7a\x08\x11\xbe\xfd\xf4\x80\x0e\x11\x41\x40\x0c\x10\xc2\xb7\x37\x69\x71\x28\x60\xbb\x34\x33\x76\x08\x57\xb3\xa4\x63\x04\x6c\xb7\x4e\xe3\x0e\xd9\xea\x2d\xad\x0d\xa2\xae\x9f\x71\xd0\x62\x03\x57\xe9\xc0\x37\xbd\x7b\x78\x9b\x6f\xc5\x01\xb8\x85\x0f\xc3\x82\x3c\x7b\xab\x35\x3d\x7b\x78\x47\xef\x90\x7b\xde\xf2\x15\xaf\x20\xeb\xf5\x16\x26\x6f\xba\x13\x45\x92\x29\xca\xba\x1e\x08\xbb\x49\x22\x22\xf4\x1d\xe6\xdc\x4d\x2e\x12\x88\x87\x7e\x7e\xea\x2c\xd4\xa6\xf0\x83\x44\x96\xd2\x9f\x21\x06\xba\x1d\x76\x29\x06\x7a\xbd\x85\x24\xc3\x0c\x3b\x89\x85\x45\xcc\xf3\x53\x91\xc6\x86\x03\x36\x99\x2f\x10\xd9\xfc\xd0\x3c\xfa\xe9\x06\xf5\x89\x2a\xc3\x31\xbf\xb1\x6d\x43\x94\x2d\xfb\x05\x42\x94\x9f\xac\x3a\xc1\x85\x23\xfd\x16\x45\x25\x97\xd6\x80\xa2\x92\x27\x69\xad\xec\xb6\x15\xd6\xcd\x3f\x8d\xdb\x50\xf8\xa4\x0f\x0d\xb5\x29\x1b\xb4\x8b\xd0\x94\x7c\xea\x4b\x54\xb4\xbb\x14\x5e\x74\x05\xf5\xa1\x2e\x0d\x65\x07\x07\xcd\x15\xe3\x34\x5e\x1b\x24\x2c\xac\x9b\x44\xa9\x84\x26\x6f\x92\xb5\x6f\x19\x58\xdf\xcd\xd9\x38\xa2\xc2\x27\x1d\x6f\x6e\x92\x21\xee\x2e\xaf\x3e\x22\x7c\x2c\x11\x2d\x2e\x1c\xe7\x72\xba\x2c\x82\x12\x9d\x4b\x85\x23\xd7\xeb\x92\x70\xe4\x4d\xea\x09\xbb\xf3\x48\xd5\xb6\x0b\xe3\xec\xdb\xd4\x44\x18\x67\x37\x89\x54\x08\x40\x9e\xc4\x3d\x22\xe2\x78\x93\x74\x83\x80\xe3\x67\x24\xaa\x86\xd3\x2d\xbd\x9f\xdd\x25\x5c\x10\xc5\x14\xb6\xd9\xf7\xcc\xae\x48\x27\x58\x33\x44\xe8\x31\x91\x53\x1d\xde\x85\xd4\x89\x76\x08\x52\xb3\x22\xd2\x10\x37\xfc\x54\xeb\x6c\x44\x39\xd6\x65\x12\x16\xd6\x4d\xf2\x8c\x2d\xc1\xa9\xde\xb0\x3b\x04\xa7\x4d\x1c\x72\x85\x0d\x9f\x43\x57\xd6\xc0\x95\x83\xde\xa5\x44\x03\xcf\x72\x0b\xba\xe5\xc4\x7e\x08\x35\x0c\x1c\xb0\x9e\x07\xf7\x1f\x31\xf9\x20\x00\xaf\x4e\x1e\xc2\x51\x31\x4a\x89\x23\x7e\xc6\xa9\x36\x91\x71\xea\x21\xba\x87\xae\xff\xe4\xc2\xd1\x7b\xed\x04\xe2\x7f\xd7\x5b\x97\x14\xf2\xc6\x2e\x19\x2c\x41\xbe\xef\x29\xe1\x96\xa3\x7c\xeb\x65\xba\x43\xc4\x68\xc3\xe3\x8d\x31\xb4\x78\x75\x44\xea\x3e\xbf\xbc\x95\x25\xc2\x9f\x6e\xdc\x90\x2a\x36\x71\xdc\x14\xaa\x5b\xfc\x49\x85\xea\x1e\x7e\x88\xca\x6e\xda\xaf\xcb\xb1\xf5\xfc\x65\x6c\x61\xed\xdc\xc4\x3f\x25\xae\x76\x96\x89\x0d\x91\xb3\x9b\xf8\x44\x04\xce\x6e\x62\x1e\xec\x90\xf7\x35\x31\x70\x88\xa2\xdd\xc4\xe3\x53\x14\xed\x7a\x77\x17\x8d\xad\x70\xbb\x41\x98\x22\x22\x9e\xe4\x29\xbe\x7d\xab\x05\x21\x8a\xec\x99\xac\x92\x2e\xdf\xa9\x65\xd1\xdc\x86\xf8\xaf\xf9\x69\x84\xef\x77\xb1\x2f\xf6\xe4\xb9\xd8\xbe\x59\xee\xc2\xea\xb2\xa1\x47\xa3\x0b\x2e\x24\x7a\xcd\xa4\x38\x12\xbd\x29\xaf\xfc\x0a\x9d\x3d\xfc\xc2\x9e\x1c\x3b\xed\x63\x9c\xbf\x8b\xb5\x41\xac\xec\xf3\x4b\x17\xe5\x60\xe9\x89\x3a\xf5\x5e\xd4\x2d\x81\x1d\xf4\xf0\x8b\x7b\x4a\xdb\x4d\x6f\xdf\xe9\xc5\x57\xe1\xd0\x1d\x31\x25\x1d\x2e\xdf\xed\x06\x48\xe1\xb2\xa7\xf4\x03\x76\xd8\x4c\x37\xbf\x00\xa6\x88\x2d\x5d\x79\x53\xd8\x5b\x1b\x4e\x36\xd3\x44\x05\x1e\x04\xd3\x3e\x3b\xc3\x8d\xc6\xb2\x69\xd3\x47\x88\xec\x66\x6a\x19\x61\x9d\x69\x38\x84\x75\x26\xf0\x16\xbb\x46\x78\x40\xbe\xe0\x47\xf3\xc7\xd8\x28\xda\x9a\x21\xac\x6b\x26\xd9\x90\xce\xf9\x56\x42\x1c\x37\x87\xae\x51\xc4\x71\x26\x66\x96\xb4\x50\x45\x87\x61\x5a\x6d\x3a\x28\x1c\xc1\x37\x53\x1d\x4b\x98\xba\xb9\x28\xb7\x85\x2e\xca\xc5\xae\xd1\x90\x09\x9f\x3d\x15\x4e\x74\x2f\x6f\x22\x37\xfa\x26\xeb\x8a\x21\xf0\xdc\xdf\x90\x6e\xf8\x02\x5e\x98\xde\x98\x68\x59\xc2\xc0\xba\x69\x96\x76\x8a\xd0\xf5\x02\x0d\x68\x2b\x84\x91\x76\xaa\x1e\x5a\x30\x1d\xbe\x93\x22\x8e\xa2\x90\xb5\x3c\xc3\xdf\x22\x6b\x17\xd7\xbc\x7b\x0f\x3a\xd1\x0d\x15\x16\xdc\x4d\x0e\x56\xf6\x12\x43\x42\xe4\xe8\x42\x2b\xa1\x7f\xcb\x86\xf2\xb0\x04\xce\x7b\x6d\x85\x61\x51\xff\xf0\xef\x63\x3e\x48\x88\xd2\xda\xd0\x83\x30\x0c\xb8\xbb\x34\x2a\xf6\xc6\xec\x41\x9a\x79\x7b\xb3\x4f\x74\x5f\x60\xa1\xed\x4b\x69\xeb\x52\xff\x27\xbc\x89\xef\x0d\x26\xd2\x7d\x81\x24\x4d\x5e\xda\xf7\x66\x4b\xe9\x7e\x40\x90\xe6\x4b\x5b\xb6\xdd\x97\x7b\x13\xa2\x2a\xf7\x0d\x63\xfd\x5b\x14\xdf\x86\xcf\x21\x7a\x64\x8b\xa9\x25\x7a\x1d\xe9\x98\x71\xba\x0c\xb4\xa5\xa3\xb7\x43\x02\x96\x15\x7e\x6b\x87\x94\x2b\x8b\xb7\xbe\x71\xef\x6e\x94\x8e\x97\xf6\x39\x74\x73\x20\xd8\x32\x5e\x94\x5b\x76\x09\xef\xb7\x44\x59\xd2\xe7\xdb\x1b\x4d\x45\xa9\xfe\xed\xbd\x35\xcf\xea\xbc\x68\x36\x9d\x00\x64\x52\xdf\x1e\x11\xc2\xe6\x16\x07\x01\xc3\xeb\x2e\x51\xd7\xc6\xf0\x7a\x88\xd9\xb0\x41\x01\xd5\xdf\x70\x48\xec\x36\x63\xdd\x85\xa8\x71\xbd\x3e\xcc\x60\x7a\x41\x79\x4b\x4f\x6f\x87\xe1\xf5\x2d\x63\xa2\xfd\x62\x1b\x7c\x73\x1c\x0d\xa1\xc9\x97\xa8\x39\x2d\x60\x98\x56\x27\x69\x62\x6c\x4c\xab\x8d\xc5\x91\x50\xf9\xb0\x62\x10\x6d\x8c\xf9\x02\x23\x08\xef\x85\xd0\x29\x7b\x7a\x5e\xdc\x1b\x42\xd3\x2f\xd4\x46\xa4\xfb\xb7\x43\x06\x75\xd7\x5b\xcf\xaf\x17\x66\x51\x92\xd7\xef\x17\xe8\xa2\xf9\x63\x4c\x96\x30\x4b\x48\xa1\x9a\x11\x1d\x2e\xdd\x4d\x81\x61\x48\xdd\xef\x6f\x23\x41\x41\xe8\x94\xbc\x10\x37\x48\x35\x70\xbf\x50\x4d\x1c\xdd\x5f\xe3\x98\x34\x7f\xd4\x6c\xa9\x4d\x9e\xf7\xd2\xfe\xdb\x2f\x5c\xbf\x16\x7f\x5c\x87\x94\xd3\x63\xe2\x85\xc6\x9c\x99\x7e\x2f\xbd\xfd\x85\x3a\xe4\x1b\xfe\xfe\xfe\x94\xed\xe6\xe5\x5c\x44\xd5\x51\x1f\x36\x73\xab\x36\xb7\xdc\x5d\x6a\xe2\x75\x1d\x75\x97\x85\x74\x17\x45\x2b\x97\xef\xcd\x9d\x08\xd5\x79\xef\x2f\x5c\xbe\xfb\x38\xbc\xc4\xcb\xea\x6e\x86\xb9\x56\x87\xd8\x7c\x5e\x95\xe0\x5e\x0d\xa1\x2b\x19\x60\x4b\xe7\x78\xbf\x85\x83\xbe\xd9\xd8\x26\xdd\x39\xb8\x04\x3a\xd8\x78\x83\x2f\xdf\x8a\x62\x9f\xe8\x8c\xbd\x41\x57\x9a\xaf\xb7\x77\xed\x54\x36\xba\xae\x55\x91\x33\x78\x49\xea\x36\x42\x33\xaf\x67\x08\xcd\xb2\x6c\x2d\x36\x32\x33\xcf\xd6\x1b\x86\x55\xf3\x0f\xf5\xb0\xd4\x5e\x7c\x4b\x6b\x56\x38\xfc\xad\x8b\x4d\x53\x8b\x61\xb7\xa7\x4b\x86\xdd\x66\xc5\xbe\xd9\x9b\x1e\x26\xf6\x14\xda\x6f\x6f\x54\x98\xf4\xf4\x7e\xeb\xe9\xa0\xd3\x19\x2e\xca\xbf\xbc\xf3\x0f\xd5\x88\x87\xf0\xd1\x7d\xa8\x83\xf4\xe1\x69\xdb\xfe\x6c\xd8\xb3\xb1\x4a\xf6\x82\x11\x50\x7f\x88\x1a\x53\x40\x7d\xb3\x8d\x3f\x3a\x0d\xc3\x59\xed\x27\x75\xe1\x1c\x87\xa2\x40\x71\x84\xdb\x2f\x7e\xb4\x87\xd7\xf1\xf6\xfb\x87\x11\x33\xbf\xb8\x49\x3a\xc0\x0c\x7c\x50\x41\x11\x31\x8d\xf9\xb2\x14\x3e\x88\xa7\x9f\x15\xa3\x80\x78\xfa\xa7\x73\xfe\x61\xcc\xb9\xa6\xee\x03\x9e\x95\xc2\xe5\xc6\xb4\xd9\x14\x68\x98\x36\x0f\x05\xd2\x50\x78\x7d\x39\x68\xdd\x72\x73\x2e\x75\x22\xc2\xeb\x77\x93\xef\x8a\xae\x2f\xd5\x10\x45\xd7\x1f\x66\x46\x3f\x67\x3b\x77\x63\xfa\x30\x74\xee\x53\xfb\x05\x17\xe8\x66\x36\x3e\x7a\x56\x55\x67\x23\x72\x92\x74\x74\x08\xc4\x7f\x8f\xfe\x6d\x05\xca\x47\xc8\xec\xe1\xe2\xec\xdf\x2c\xf1\x45\xe9\xfd\x33\xd5\x41\xd5\xc4\xbb\xb9\x3a\xc7\x45\xd0\x5c\x16\x79\xc1\xb7\x6c\xe0\x65\xd1\xcf\x8f\x98\xae\xdf\xb2\x81\xec\xc5\xcb\x79\xf4\xcc\xd2\x92\x85\x69\x73\xf3\xfd\xfc\x08\x83\xea\x2a\x78\xf4\x1a\xd6\xba\x84\x1f\xf4\x66\xde\x69\x84\xed\xef\xc6\x98\x8f\xa4\x41\xdf\x6c\xf8\x14\xea\x6e\x33\x7a\x20\x8e\xc5\x23\x17\xf7\xea\xfa\xe2\x18\xfb\x77\xc2\xef\xfe\x61\x6c\x2f\xb1\x45\xc2\x61\xba\xfd\x6c\xed\x47\xac\x53\xf7\x95\x87\x9c\xb8\x01\x8f\x08\xb1\xe6\xb2\xda\xed\xaa\x36\x24\x01\x66\x92\x84\xb1\x74\x9b\x7a\xc1\x3e\xa2\xca\xb4\xc1\xc2\x2b\x7a\xb6\x1c\xeb\xf1\x06\x3b\xd5\xce\x71\xc5\x96\x02\xad\x9c\x1c\x01\xce\xa7\x72\x50\xd6\xc3\xd9\xf3\xe2\x4f\x97\x8b\xf2\xe2\x1f\xae\x27\x26\x36\xb8\x1e\x27\xd7\xc2\xfb\x55\x57\x4e\x13\xeb\x7a\x76\x74\xb6\x28\xc7\xb3\x3d\xb0\xf9\x24\xe2\x7f\x9b\x41\x97\x4d\x02\xfe\x37\x4e\xe3\x24\xde\x7f\x4e\xfe\x16\x7b\x6d\x76\x7d\xe3\x4d\x30\x55\x4b\x70\xf0\xaf\x6f\x2e\xd4\x62\xdc\x3c\x57\xfe\x74\xae\x45\x7b\x59\xb9\xf0\x21\x77\xbb\x05\x0e\x71\xd3\x30\xce\x85\xdf\xb1\x8a\x3e\xb9\x15\xb3\xea\x26\xe0\x45\x0c\x17\x0d\x0d\xe1\xe6\xa2\x31\x8a\xcb\xb9\x27\x44\x18\x9a\xc6\x60\xf3\xf1\x92\x3e\xb9\x3b\x4a\x3a\x97\x02\x4f\x68\x86\x57\x44\x32\x2a\xfe\xd6\xa3\xa4\xe6\x5b\xef\xcb\xe9\x8f\xdc\xe0\xd5\xd9\x88\x7a\x3d\x34\x2a\x2c\xdf\x38\x4c\x73\x84\x41\xb4\x9c\xb8\x9e\x5c\x68\x1b\xf4\x3f\xaa\x82\x9f\xa2\x35\x7a\xe0\x1f\x32\x8f\xea\x2b\xea\x78\x70\xeb\x4f\x76\x44\x98\x2f\x4d\x72\xdc\xed\xe8\xc6\x9f\x1c\xfa\x32\xfe\xc6\x82\xbb\x1a\xee\xc0\xce\x47\x2c\xa7\xaf\xa4\x49\x0e\xcb\x69\x31\xf7\x4e\x0e\x74\xd2\x6f\x65\x39\xf7\xd3\xd9\x50\xcb\x6c\xfe\x65\x30\xe5\x7a\x53\x2e\xfa\x73\x57\xe5\x56\x28\x65\xba\xc9\xb0\x44\x2e\x6e\x03\x42\x69\x38\xfb\x0e\x94\xe5\xa2\xe1\x7b\xa8\xab\x89\xd8\x81\xe9\x56\xc9\xe0\x18\x12\x2c\xf9\xe4\xc2\xfb\xb9\xbb\xc6\x0e\xbc\xfd\xbb\x38\xc9\xf7\x50\xee\x6c\xb9\xe2\x8e\x6a\x93\x69\x95\xc3\x2e\xba\xc3\x1b\x3b\x39\xf0\xb2\xb6\x27\x76\xd1\xd3\xed\x07\xc6\xcc\x3a\x39\x21\x21\xef\xf0\x20\x4f\x0e\xb4\xac\x83\x84\x21\xf4\x70\xe7\x22\xf6\xbc\xd7\x4a\xe2\x73\xb4\x08\x4e\x36\x54\x44\xb3\x7f\x18\x3d\xd7\x4e\xbe\x71\x36\x7b\x3b\xc7\xbb\xc8\x03\x89\x07\xcd\xf8\x7e\xfc\xc4\xa3\x4d\x13\x10\xf8\x12\x2d\x8b\x39\x6e\x3d\x6e\xdc\x9d\x60\x7e\xcc\xa4\x16\xc5\x74\x9c\x1a\x48\x30\x1d\x8b\xd7\x91\x0d\xe9\x41\x06\xb1\x89\xbf\xa9\x93\x1b\x91\xf3\x37\x5e\xe0\xd3\x1f\x57\xac\x8e\x3f\x86\x0f\x3d\x6f\xb9\x10\x42\x4d\x4f\x79\xd0\x9a\x45\xa7\x3c\x8c\xa9\x1b\xb1\x0e\x4e\x2e\x4e\x72\xea\xca\xd1\xef\xaa\x5c\xfe\xf5\x53\xf1\x32\x76\x72\xb1\x53\xab\x6b\x01\xeb\x77\x17\x0d\xaa\x62\xba\x28\x02\xb2\xe9\xb2\xb1\x71\x85\x49\x10\xe4\x13\x2e\xfe\xe4\xb4\x57\x8a\xb2\x60\x59\x2d\x40\x12\xa7\xad\xbb\x7b\x31\xe7\x99\x49\x4e\x28\x3f\x77\x7f\x0c\x51\xe9\xd0\xf6\x48\x92\x68\xb8\x47\x62\x6f\x57\xff\x94\x27\x92\xae\x81\x24\xe1\xa8\x3b\x21\xa1\x94\xbf\x2e\xad\xad\xfa\x84\xed\x06\x82\xb0\x93\xe5\xf2\xf9\x7e\x8d\xf3\x54\xd5\x27\x51\xa6\xdf\xb2\x2d\x94\x5b\x5c\x34\x36\xa2\x56\x37\x04\xf6\x0a\x69\x76\x72\x8c\x54\xbd\xc7\x2c\xab\xeb\xf6\xc3\x8a\x7b\x6a\x3f\x27\x49\x46\xa6\x9a\x24\xa0\xc1\xed\x75\x92\x5a\xe8\xf7\x6b\x20\xc3\xac\x91\x89\xeb\x2a\x8c\x9b\x88\x72\xad\x1b\x47\x3e\xef\x7d\x55\xe1\xf3\xbe\xa3\x89\x30\x47\x48\xd8\xef\x5b\x1f\xb3\x90\xda\x48\xca\x6a\xb6\x9b\xb2\x10\xf6\xc3\x3f\xd5\x3e\xfe\xa3\x28\xf3\x94\x25\xa4\x69\x57\x4e\xc7\x73\x2a\x1b\xbe\xe4\x1b\xf3\x90\x45\xb6\x0d\x67\x99\x7a\xcd\x59\xd6\x1b\xd9\x1d\x8e\x67\xf0\xcc\xaa\x08\x65\x4c\x64\x80\x27\x8b\xe8\x6c\xfa\x6b\x28\x5e\x67\x7f\x84\x09\x2a\x7a\x02\x99\xf7\xd0\x9d\x19\x22\xef\x86\xdf\xd0\x93\x2b\x91\x53\xe7\xb5\x17\x3c\x0b\xf8\x6a\xa8\xea\x8f\x5e\xba\xc2\x1f\x21\xd6\xbe\xcb\xf7\x23\xa2\x30\x6d\x2a\xbc\xe4\x4f\xdf\xbe\x19\xdf\x20\x5d\xc8\x3e\xb3\xe0\xe9\xfb\x15\x7b\x76\x75\xde\x0b\xae\x8a\x37\xeb\xe4\x5f\x06\x79\xa8\xcb\xb8\xe8\x49\x3a\x9d\x8d\x91\x15\xe7\x78\x53\xe8\xc0\x14\xd4\x26\x4c\x0d\x15\x91\xed\x3a\x3f\x48\xae\x53\x1b\xce\xf2\x04\xd3\x04\xca\x2f\x7e\x13\xe6\x0a\xb9\x72\x9b\x45\x35\xe9\xf9\xa8\x89\x08\x4f\xf8\xa3\x65\x17\x45\x09\xb4\x4e\x65\x3b\x03\xf7\x4f\xd9\x74\xd3\xcd\x04\x0e\x2a\x49\x39\xd8\x83\xc3\xf5\xbe\xf8\xa9\xbf\xc2\x25\xd5\x99\x91\x7d\x78\xd3\x04\x97\xa5\xc1\xaa\xb0\x2e\x17\xd5\x84\xc5\x41\xf3\xac\xa1\x9e\x50\xfc\x11\x6c\xa6\x45\x96\x87\xfb\x5b\x78\x39\x8c\xc7\x1b\x16\x19\x27\x77\xd3\xa5\xac\x2c\xd3\xe2\x1c\xd3\xd2\x9c\xe5\xba\x9b\xae\x08\xa2\x46\x5b\xbd\x48\x96\xa2\xdd\x5c\x60\xa0\xa7\xcb\xed\x70\xa4\xa6\xab\x7a\xf3\x95\xb5\xaa\x58\x12\x34\xad\x73\x05\xaf\x27\x51\x4f\x61\xe6\x9d\x93\x3a\x55\xc1\xeb\xc5\xbf\x8c\xa0\x34\xea\x43\x58\x80\x2b\x6c\xdf\xc9\x45\xa8\xd0\x6f\xc9\xd0\x29\xd7\xa4\xc8\x1e\xbc\x69\xef\x60\x0f\x9e\x85\xea\xea\x54\x77\x54\x4f\x50\x2b\x4d\xd7\x73\x85\x3e\x29\xfe\x16\x93\xe0\x83\x89\x57\xfb\x29\x42\xbf\x4a\x4d\x5b\x93\x2b\x43\xf2\xf9\xcd\x6e\x46\xa9\xc2\x4b\x2b\xa1\xa1\x04\x19\x52\xdd\xbf\xe0\x03\xcc\xe2\x6f\x3a\x7b\x53\xd9\x40\xb6\xc5\xb9\x4e\x2b\x1a\x4b\x98\xe8\x4e\x9d\x36\xbc\xdc\xfb\x52\x0c\x0d\x05\x39\xfa\x3f\x39\x0e\x8c\xb6\x63\x65\x2b\x08\xbf\xa3\x84\x30\x75\xaf\x55\xde\xfa\xc3\x6d\x6c\x3c\x41\xa9\x77\x41\x5b\x5c\x42\xe0\x35\x68\x0b\x53\xe2\x75\x6b\x46\x34\xac\xad\x19\x71\x96\xa7\xb5\x56\xb3\x89\x3d\xa5\x1d\xd5\x40\x0d\xf5\x8f\x4c\x94\x53\x94\xcb\x49\x28\x1b\x87\xf8\x63\x68\x3f\x35\xd4\xad\xba\x50\x57\x98\x7c\xcb\xeb\xea\xc9\x31\x5f\xfe\xa5\x3a\xe8\x8f\x81\xce\x35\x34\x8c\xbc\x4d\xfd\x36\x24\xe6\x49\xdb\x04\x23\xef\x59\xab\x72\x37\xf5\x74\x65\x83\x54\xd7\xb9\x42\x2b\x62\x9a\xaa\x94\x55\xb7\x36\x5f\xe3\xd1\xd5\x2f\x97\x8d\x25\x13\x55\xdf\xa6\xda\x54\x16\xaf\x01\x5d\xcb\xd2\xb8\x25\x74\x3b\x86\x57\x7b\x19\x92\x9f\x9c\xe6\x40\xfd\xc3\xe9\x64\xba\x93\xb2\x71\xc6\x84\xf1\x42\x81\xa2\x4d\x5d\x0b\x0d\x85\x7e\x8f\x04\x02\x42\x88\xb3\xf9\xca\xd0\x0f\x77\x10\xd6\x22\x9c\x50\xad\xa8\x49\x04\x29\x66\xde\x63\xb8\xa2\x78\xec\x13\x1f\xf8\xe4\x62\x4b\x37\xcd\x25\xd7\xc9\xf0\x04\x11\x6c\x27\xfb\x63\xf4\x55\xd8\xad\xa1\x14\x3a\xbd\x0a\x1b\x8c\xeb\xc5\x85\xd6\x98\x9e\x2f\xde\x53\x5d\xab\xdb\xf1\x6e\x3d\x35\x09\x5d\xb7\x8d\x5e\x29\xa1\x69\x91\x8b\x36\x39\x8a\x16\xb7\xc6\x12\x7a\x16\x0a\xf3\x79\x72\xb1\x85\x9a\xbf\xc5\xec\x35\xb7\x11\xf4\x73\x71\x2d\x61\x8e\x31\xdc\x42\x38\xfa\x17\x12\xea\xb8\x9a\xd1\xd5\x81\x4f\x7b\x3f\xd8\xa4\x80\xa1\x4d\x8a\x86\xc5\x6c\x2e\x19\x17\x85\x6e\xd0\xb0\x38\xcf\xb7\x2e\xab\x8e\x1a\x71\xd7\xfa\x84\xba\x85\x1c\x37\x9d\x5c\x74\xb4\xbb\x28\xda\x66\xd3\xf5\xbc\xe3\x21\xec\xf6\x83\x54\x29\x2e\x1a\x7b\x40\x68\xa4\xf3\x66\xef\xfa\x5d\xd0\xa9\x97\xfb\x16\x84\x69\xf7\xac\x11\x6f\x71\xb8\x64\x10\x47\xc3\xd3\x8d\x8e\x5d\xf7\x62\x20\x04\x4e\x9e\xe2\x8d\x06\x8a\xe7\x18\x6b\x90\xa4\x67\xa2\x4c\xd3\xbb\xab\xc2\xab\x84\x1f\x9f\xa8\x5f\xcc\xee\x8a\xdf\x94\xd5\x5c\x86\xfa\xc5\x14\xe9\x2c\xb3\x75\x33\x5c\xd0\xc6\x18\xe3\x9b\x0d\xe5\xab\xe2\xb2\xf4\x41\x0f\xbe\x01\xf5\xe9\x67\x74\xa8\x6a\x8c\xa6\x75\x1f\x10\x98\x5d\xa3\x19\xd8\x5e\x56\x17\xc5\xb1\x32\x93\x1b\xca\x18\xc3\xac\xa3\x50\xc6\x68\x53\x53\x16\xba\x18\x6d\x76\x7f\x8b\x33\x23\xa2\x75\x08\x6f\xb8\x3b\xbc\x7f\x45\x9f\xa1\x89\x31\xcd\x57\x18\x3a\xfd\x7a\x64\x86\x93\xfa\x7e\xe9\xca\x88\x88\xfe\x6d\xea\x69\x31\x90\x8e\x26\xbd\x23\x43\xd7\xa2\x5c\x9a\x59\x05\xe6\xd7\x06\xc6\x47\x7d\x4d\xe2\x07\x0c\x4c\x65\xff\x19\xf4\x1d\xe6\xdd\xf2\xf7\x33\x89\xda\x2f\x17\x35\x27\x17\xc4\x4d\xcf\xce\xc6\x7a\xe9\x94\x84\x3d\xf7\x68\xea\x39\xde\xea\xc7\xb8\xfd\x51\x5d\x2f\xca\x06\x17\xec\xfb\x31\x26\x4f\x27\x71\xea\x86\xd0\x9b\x69\x7a\x69\xab\xb2\x71\xc9\x8b\xb0\x44\xdb\x63\x0e\xd7\xba\x68\x73\x2a\x1b\x67\x6a\x38\xc7\x5e\xcb\x6e\x25\x4e\x51\x75\x23\x0f\x8d\xa8\x5a\x0e\xbc\x8e\x5f\xd8\x81\xcb\x0d\xce\x1c\xf2\x81\x6f\x2e\x59\x98\x73\xb7\xa9\x47\xd1\xd4\xc2\x67\x97\x65\xda\xd5\x64\x30\x8e\xa7\xa8\x0a\xf9\xc7\xbf\xfc\xc3\xd8\x22\x7a\xa4\x61\xcb\x5d\x93\x9e\x44\xa8\x7e\x8c\x91\xfc\x35\x58\xff\xa2\xe6\xd0\xf5\x98\x22\xbc\x27\x31\xfb\x86\xb6\x08\xc6\xdc\x55\x77\xd2\x84\x8c\xd5\x9d\x34\xf1\x5c\x38\x92\xeb\xe1\xdc\x8a\xf0\x0e\x4d\x8f\x83\x82\x94\x8b\x77\x4d\xd7\xb9\x20\x9a\xff\x34\x9f\x48\xea\x1b\x5d\x84\xb7\xc2\xf9\x77\xd1\x8c\x61\x8a\x9d\xbb\x07\x8a\x6f\x8a\xa1\xa1\x2d\x7c\x15\xa9\x4b\x98\x5e\x67\x2d\x67\xa8\x6f\x64\x9f\xe9\xf0\x86\x3f\xb2\xae\x1a\x39\xc3\x1f\xba\x11\x16\xca\x75\xbd\xf8\x97\x6f\xbe\x4e\x65\x3f\x74\x57\x85\x43\xa9\xaa\xeb\xad\x27\x0b\xea\x5e\x9c\x0d\x5a\x4b\x93\xbb\x38\xd6\x7a\xb7\x2c\x70\xbd\x48\xf0\x25\xea\x53\x57\x21\x06\xd4\x7e\xdc\x2d\x51\x9f\xd9\xd9\x60\xd0\xba\xb7\x20\x7b\x11\xdc\x2b\x84\x57\xf3\xfb\x43\xe6\x47\xbb\x5f\x51\xfe\xbb\xf0\x9c\x0c\xa1\x45\x0d\x2c\xa4\xac\x5d\x67\x75\xf1\xbe\x1c\xda\xe1\xb8\xd1\xf7\x56\x44\x07\x63\x9a\x09\xa7\x08\xfc\x43\xaf\x58\xf4\x2e\xb2\x8f\xc3\xe2\xb1\xd1\x75\x96\xc3\xa0\xb9\x4d\x51\x86\x4b\x62\x7b\xe1\x84\x05\x07\x55\x84\xab\x74\x32\xfa\xb7\x22\x0e\x9d\x4e\xc0\xd2\xe2\x6b\x8f\xe1\x55\x7f\x0c\xbd\xab\xf0\xaa\x3f\xcd\x26\xdb\x70\xfc\x53\xf2\x57\xd0\xa6\xb6\xeb\x16\x81\x20\x84\x42\x50\xfe\x31\x74\x9d\x4a\x6b\xc3\x97\x74\x28\x66\x9c\xc2\x55\x59\xf5\xca\xd9\x78\x0a\x0e\xdd\xda\x1b\x06\x94\x48\xc0\xcd\x15\x20\x6a\x71\xcb\x19\x99\xfa\x8f\x79\x60\x73\x2e\x1e\xae\xba\x15\x37\x94\x80\x48\xaa\x2d\xbc\x50\x5d\x69\xe0\x05\xed\xe5\x8d\xe9\x67\xd2\x5e\x09\xe3\xe4\x61\x99\xc8\x16\x59\x29\x72\x70\x23\x51\xea\xed\x8f\x41\x20\xa6\xc2\xf4\x17\x4f\xb6\x30\x43\x71\x2b\xf4\x4f\x63\xd6\x4e\x72\x77\x79\xb7\x4c\xb7\x19\x02\xc3\x6f\xf7\xb8\x3e\xdd\x79\x02\xba\x75\xd7\xc3\x05\xe1\xe9\x42\x4d\xb3\xeb\x29\xb0\x43\x66\x59\x45\x55\x84\x69\x73\xf2\x69\x52\xe8\xfd\xa1\x63\x18\xba\x21\x77\x1b\xfe\x38\xe3\xec\x6b\x27\x84\xf5\xf2\x25\xb2\x2a\x34\x43\xe4\x3e\xe6\xe4\x5e\xb8\xc9\x55\x2e\x54\x69\xc4\x3f\x7f\x0d\xf5\xa6\x2a\x1b\xda\xed\xdd\xb9\x08\xb5\x5f\x84\xa6\x5e\x84\x58\xd7\x0d\xf0\x1a\x9a\x9e\xa6\x2c\x0f\xe8\xec\xb2\x4f\xf4\x47\x65\x83\xd7\xd1\x44\xe5\x62\x65\x3c\x86\x50\xa3\x1c\xe0\x9b\x69\xfb\x82\x81\x99\x74\x62\xf1\x87\xdf\x6e\x97\x0d\x4a\x40\xb8\x3b\xec\x8c\xfb\x75\xf9\x87\x5a\x84\xae\xec\x3b\x86\xe2\xa2\x71\xb5\x75\x57\xa3\xdd\xa5\x8f\x81\x50\xaa\x26\x28\x0c\x8b\x47\x13\xf5\x18\x9e\xf2\xfb\xa5\x67\x49\xa8\x7f\xf4\x4b\x4f\x84\x17\x1e\x6a\x2c\x1a\x0b\x65\x10\x79\x18\x3a\xb9\xe0\xd2\x64\x57\xc3\x8d\x9d\x5d\x4f\x30\xc1\x3c\x21\xd8\xb5\x0d\x21\xb4\x17\x86\x1f\xfd\xdb\x83\x1d\xb4\xbc\xab\x7d\x85\x94\xc9\xbf\xfc\x44\x7f\x34\x57\x41\xa2\x9a\x03\x1a\xde\xf6\xcb\xe5\x5a\xb6\x50\x85\xba\x8e\x26\x48\xd7\x16\x09\x4d\x90\x7e\x5d\x2e\xcb\x55\x26\x2c\x23\x45\x10\x4b\x6e\x5e\xda\x6a\xfe\xb8\x4f\x4e\xcf\x9b\x50\xca\xe8\x97\x36\xcc\x5b\x64\x8a\x10\xea\x5b\xb7\xd5\xad\x1c\xf6\x8f\xcd\x1f\x17\x7b\xcd\x15\xed\x08\xac\x56\x95\x83\x43\xa7\x5f\xc2\x39\xb3\x24\xe5\xed\xed\x34\x95\x05\x45\xea\x88\x87\x22\x46\xbe\xaa\x3f\x72\x67\x6b\xf7\x87\xb9\x72\xbf\x44\x12\xbf\x41\x4f\xdd\x3f\x14\x7e\xf4\x2f\xa1\xa3\x84\xfe\xc3\x5e\x39\x99\xe9\x13\x2a\x1b\xfd\xba\xdd\x3f\x0e\xbc\xb6\x5e\x78\xdf\xef\x97\x76\xf0\x7b\x69\x32\xf5\x4b\x51\x18\xa2\xef\xdf\x38\x38\x4d\xda\x35\x6f\xdd\x5e\x1e\x78\xbc\x48\xcc\x5e\xc4\x62\xb9\x26\xa1\xe8\x37\x5b\xe1\x76\xa3\xbc\x56\x3c\x18\x2c\x82\xdc\x0a\x62\xed\xa1\x8d\xf2\xd6\xc3\x57\x17\xd2\xdb\x5b\x63\x28\x0b\x2f\xe5\xfb\x5b\xae\x41\x51\xf5\x6f\xdd\x6d\x7a\x00\x84\xd5\x72\xbf\x6e\xd7\xc4\x9d\x22\x0a\x2e\xac\x96\x53\xd5\x51\x7a\xe3\x14\xde\xd2\x91\x8f\xde\xba\xf9\xfe\x33\x12\xc7\x99\xff\x18\xba\xf2\x3f\xe2\x89\x08\xf5\xc8\x4e\x79\x88\x05\x80\x33\xff\xa2\x49\x93\x9d\x72\x17\x39\xf5\xc1\x78\x76\x68\x7b\x7c\x44\xf7\x88\x70\xfc\xcc\xd8\xcd\xb7\x3f\xb2\x77\x44\x66\x87\xdd\x72\xba\x5c\x6f\x78\x8e\x19\xda\x01\x1f\x5d\x6d\xa2\x91\x3e\x81\xa7\x4c\x4d\x7d\xc4\x66\x2b\x2e\xcb\x4d\xab\x5b\xe7\x23\xba\x56\xb7\xf4\x47\x2a\xea\x3a\xc5\xa1\x70\x33\x2c\x56\xf9\x88\x67\x32\xfc\x11\x7f\xce\x59\x39\xfa\x30\x5d\xef\xa4\x55\x7f\x85\x1e\x15\x85\x15\x1a\x37\xf9\xd2\xb6\x0b\x1d\x9b\x7e\xe9\x31\xf6\xd9\x81\x73\x45\x72\x7e\xc4\x46\x15\xf2\xfe\x88\xbd\xa1\x46\xd1\x78\xa9\x49\x34\xe7\x33\x02\x5d\x0a\xb3\x3f\x3c\x4f\xb5\x73\x1e\xa2\xb4\x0c\x1d\xf1\xd0\x71\xe9\xa6\xad\x1f\xdc\xb3\x9b\x13\x8d\xc6\x4b\x4d\xc5\x65\xd5\xf9\xa1\xec\x8b\x3e\xb8\x51\x96\x58\x37\x75\xa8\xbc\x74\x93\x99\xa1\xf1\x92\x6f\xad\xd3\x03\x5f\x75\x08\xe9\x44\x68\xff\x7e\x89\x22\x92\x6f\xff\x71\xb9\x2c\xec\x00\xe1\xab\x08\xf5\xdf\x2d\xa0\x79\xb8\x5e\x86\xeb\x81\xc1\x2d\xe4\xaa\x50\xff\xc9\x39\xf0\x93\x90\x7d\xe8\xbf\xf4\x2b\xfb\x63\xe0\x61\x11\x70\x0f\x06\x09\x96\x5a\x3d\x4b\x33\xa6\x36\x17\xbd\xd5\xcc\xeb\x4c\x8b\xac\x90\x72\xca\x10\xb2\x7d\x40\xe1\xe6\x0a\x87\x3a\x8a\x9c\xf1\x4c\x45\xf0\x9f\x96\xde\x3c\x5e\x61\x35\xb3\xe5\x47\xd2\x85\x85\x75\x62\x3e\x89\xe1\x7f\x2a\xce\xca\xea\x14\x77\x65\x63\xfd\x59\x18\x42\xfa\x9f\x69\xb9\x95\xed\xf1\xb1\x2a\x37\xa8\xc8\x65\xb9\x12\x9b\x9b\xe1\xc2\x06\xc7\xcf\x8b\x35\xa5\xc3\xc4\xe6\xef\x57\x56\x17\x38\xb4\x20\x03\x22\xf5\x27\xc5\xb3\x3e\xd9\xe0\xd4\x5d\xfe\x61\xf0\xf1\x2f\x17\x8d\x7b\x2d\xab\x77\xb8\x70\x1a\x2e\x1a\x22\x79\x29\x77\xcc\x6b\xc5\xa5\x97\xd5\x39\x4c\xe7\xe6\xf7\xa3\x7e\xa9\x39\xd8\x41\x4e\x0c\x35\xa2\x37\x46\x77\x96\xe3\xfd\xcd\xc2\x47\xaf\xaa\x89\x5b\x39\x6b\xd0\x3b\x2e\x2b\x4f\x6d\xbc\x38\xa6\xa7\x8b\x3b\xb9\xa8\xef\x5e\x32\xcd\x08\x68\x58\xdc\xca\x79\xe1\xf7\x2b\x71\xa9\xcc\x50\xda\xe8\x17\xe7\x79\xca\xbf\xbd\x34\x8c\xe6\xcd\x7d\xce\x71\x9e\xa1\xa4\x21\x9f\x38\x27\xc7\x26\xf2\x37\x74\x93\xbb\x3f\x72\x26\xcb\x9f\xd1\xf9\xbc\x51\xe7\xae\xfa\xe5\x0c\x82\xab\x38\x77\xd6\x56\x67\x70\xde\xa2\x0d\xab\x3a\xab\x13\x0a\xf1\x31\x6f\x16\x90\x17\xcc\x0c\x65\x8c\x8e\x56\xd5\xc9\xbd\x28\xea\x8a\xe2\xb2\xd4\x26\xbe\xb5\xd6\xb7\xaa\xe5\xc2\xe6\x80\x4e\xdc\x15\x24\xb1\x01\xe7\x0d\x3d\xc8\xe1\x98\xb7\xd0\x73\xd7\x24\x80\x73\xc5\x8f\x23\xe4\x7f\xbf\xb4\x69\x6f\x6c\xd1\x93\xc7\x89\x8d\x09\xea\xa4\x93\x40\xfe\xe7\xa7\xea\x2f\x26\x27\xa8\x88\x4e\x42\xf9\xf7\xcb\x4b\x26\x66\x63\x57\x59\xf1\xb1\xab\x5a\x65\xd7\x78\x8e\x22\xea\xe6\xe5\x46\xb9\x9f\xab\xda\x8c\x88\xd0\xd7\xf7\x77\x31\x27\xd5\x2d\x06\x01\xcf\xc5\x48\x6c\xfe\x7e\x71\xa5\xce\xa4\x4d\x02\xab\x83\xd8\xfc\x27\x4b\xad\x21\x6e\xc9\xc2\xe4\xb3\x8a\xe9\xa6\x55\xb1\xbc\x85\x1b\x8c\x08\xc3\x49\x11\xab\x27\x31\x85\xb3\xf8\x20\x33\xe4\x2b\xfd\xe2\x62\x9c\x21\x42\x49\x5d\x67\xbe\xb9\xcd\xa9\x2c\x4f\xdd\xee\x6c\x0c\x1a\xe4\x47\x48\xe1\xb3\x17\x93\xb2\xe7\xd4\x37\x9d\x9c\x10\xa8\xf4\xab\xf9\x5b\x18\xcc\xde\xee\x00\xa2\xff\xee\x36\x9f\xd0\x35\x52\x4e\xbb\xb6\x2a\x17\x0f\xa7\xe1\x5c\x70\xf6\x34\xb1\x0d\x8c\xc4\xfb\x6f\x36\x68\xce\xe6\x6f\xba\x2a\xd4\x22\x5b\xaf\x39\xc7\xe3\x5f\x67\x81\xa8\xc0\x55\x8b\x17\x06\xa7\x77\xd1\x02\x21\x4c\x31\xd6\x0b\x8f\xb9\x7e\xb7\x4d\x19\xa3\xa6\xef\x0f\x99\x1c\xff\x30\x6e\x11\xe1\xd9\x26\x2a\xa1\xba\x03\x9b\x97\xa3\x3b\x40\x6c\xb7\xee\xc2\xb1\x7d\xba\xd6\x27\x36\x65\x16\x63\x6f\x22\x5c\x49\x2e\x6a\xc4\xa6\x46\xe5\xc7\xd5\xcb\x05\x85\xd1\xfd\x4b\xec\xde\x93\x7a\xcf\x03\xa3\x3b\x17\x1b\x58\x57\x48\xd3\x65\xe4\x2d\xc2\x0e\xd6\x61\x6c\x22\x30\x85\xbc\x3a\x77\x91\x26\x1a\x33\xd5\x29\x02\x5e\x41\x82\x25\x57\x9e\xb2\x52\x1d\xc3\xbf\xe4\x7e\xd4\xc2\x77\x76\x4c\xf7\x2f\x31\xc4\xe2\xea\x9f\x21\x4e\xe9\x97\x06\x16\xe2\x94\x7e\x69\x12\xba\xfc\xbf\x71\xed\xce\x8e\xab\xd6\x5b\x37\x43\x67\x97\x7c\x3f\xc6\x21\x76\xad\xec\x99\x6f\xc9\x11\xd7\x96\xba\x23\x24\x98\xd4\xf7\xc9\xed\xdd\x5c\x4f\xf4\x67\xf8\x23\x37\x41\xd2\xc0\x64\xe9\xe0\x71\x0a\x0d\x26\x8d\x0c\xf5\x9f\x59\xfe\xac\xae\x42\xf0\xe1\x7e\xb9\x22\x70\xe4\x50\x07\x71\x5b\x28\x89\x2f\xa1\x88\xfb\x35\xdc\x08\xeb\x20\xcc\x86\xb9\x6b\xf1\xc9\x1d\xf8\x81\xd2\x2f\xc7\xd4\x6a\x27\x65\xc1\x1d\x50\x97\x04\xc1\xed\x17\x24\x37\x31\x70\xcf\x47\x67\xd5\x07\xfd\x94\x4d\x0f\x93\x7e\x86\x65\x67\xba\x45\x3f\x0c\x89\x7d\x5c\x11\xd6\x7d\x12\xb1\xce\x11\xec\x1a\x09\x3f\xe7\x10\x59\x95\xd5\x41\x3c\x3a\x49\x56\x3b\xc3\x0d\xac\x59\x2b\x0e\x7a\x2b\x4d\x39\x82\xde\x9e\xb2\xfe\x7a\x36\x2b\xb6\x47\x93\xa0\xb7\x49\xaf\x12\xc5\xbc\xad\x49\xbb\x73\x82\x16\x55\x0f\x52\x83\x5a\x9d\x8b\xc3\x02\x17\x75\x4e\x36\x23\xdc\x24\xa2\xe1\x26\x93\x49\x13\x06\xcd\x54\x0e\xe1\xb0\x2e\xd2\xc9\x33\x68\xb8\xa8\x18\x34\xc2\x1f\x78\x67\xad\x49\x18\x2c\x78\xf6\xb9\x89\xc0\x9a\xec\xb7\xe9\xa2\xb1\xff\xa7\x46\xc5\xa5\x0b\x4d\x4f\x44\x5b\x05\x6e\x9e\xd3\xec\x7c\xf7\x35\x50\x9d\x04\x64\xc4\xb7\x95\x5f\x8c\xa9\xf0\xb6\x45\xc4\x17\xcc\xfd\x2a\x84\x15\xbc\xfd\x7e\x5f\x2e\xb9\xc2\x4b\x87\x3a\x13\x72\xe2\xfb\x72\x0b\xec\x1e\xdd\x27\xd8\x74\x8a\xaf\x3e\xc3\x86\xb3\x4b\x48\x39\x27\x96\xd4\xc5\xdf\x34\x1b\x6a\x31\xf4\x8c\x24\x50\x21\x0a\x6e\x96\xf2\x0a\x41\x70\x15\x90\xfe\xe4\x22\xf6\x44\x75\x35\xc1\x4f\xf0\xfc\xeb\x19\xa5\x0b\x76\xa2\x9c\x22\x9e\x30\x21\x71\xb3\x84\xd8\x73\xea\xce\xf4\x04\x08\xcd\x69\xb3\x2c\x31\x8c\x85\x12\x97\x44\x4e\xda\x11\x4b\x0c\x63\x9d\xaf\x85\x6a\xa3\xd8\x2c\x33\x84\x0b\xb7\x78\x06\x33\x1c\xb9\xe6\xd9\xfc\xcb\xd0\x11\x9f\xae\x16\x94\xa8\xa3\x88\xa8\x61\x0c\xe7\xf6\xaf\x9f\x66\x22\x6d\x11\xf6\x40\x53\x82\xd8\xa1\xe8\xbe\xc7\xab\x6b\xd3\xf5\x82\x0c\x22\x89\x5f\x3d\xc3\x34\xf4\x2e\x1e\x48\x20\xc4\x5b\xdb\x4c\x7e\x5b\x67\xf3\x2f\x7b\x7c\x6c\xca\x8d\xc8\xa9\xe3\x13\x97\x4d\xdd\x45\xe1\xe3\x4c\x97\x0d\x0f\x30\xc9\xd5\xbe\xe2\x79\xa0\x09\x80\x83\x28\x2c\x21\x9f\xae\xe2\x88\xcf\x85\x6b\xe1\xa4\x89\x44\xf7\xfb\x72\x4e\xd3\xaa\x36\x16\x2e\x7a\x85\xf2\x14\xe7\x57\x4c\xe7\x19\xe2\x8b\x7e\x8b\x38\x5f\x52\xd2\x55\x67\x75\x1d\x8b\x1e\x08\xdb\x53\x45\x7d\x3e\x39\x9e\x1d\x5e\xa0\x15\x7c\x5d\x6d\xc4\x30\x28\x8d\x28\xac\x7f\xc4\xdd\x0a\x10\x2c\x85\xfb\xb9\xce\xfe\x56\xdc\xc4\x49\xb8\xe0\x7e\x7b\x85\xce\x86\x2e\x62\x05\xcc\xa5\x2d\x7c\x39\x8b\x5b\x54\x57\xf3\x0a\x12\x44\x7d\xc5\x1c\x51\x8a\x72\x84\x0e\x96\xad\xee\x54\xe4\xe0\xda\xfd\xad\x84\xe2\x5e\x53\xae\x86\x7b\xa3\xa9\x5c\x44\xd4\x12\xc5\xb1\xe5\x5a\xb8\x2a\x37\xa3\xa7\x43\x39\x88\x08\xd1\x7c\x61\x69\xda\xef\xdb\x0d\xe2\xe8\xc7\x0d\xc6\x06\xbd\xdd\xc4\x27\x72\x6a\x3e\xb6\xa4\x78\x94\x04\x11\x3e\xcb\xa1\x36\xd8\x92\x5a\xab\x4d\x88\xb6\xe2\xa2\x83\x01\x17\x65\xe7\xaf\x9f\x92\xf5\xb6\xdc\x53\x13\xa7\x9e\xc7\x1e\x6c\xc9\x1f\x03\x4d\x7d\x73\x9a\x38\x57\x8b\x7e\x8d\x67\xc0\x7b\x52\xad\x84\x10\x54\x7a\x57\x84\x14\xce\xde\xf7\x18\xb0\xa6\xe4\x6f\x6c\x2c\xcf\x79\xdc\x80\xd2\x3d\x9b\x5b\xbc\x21\x57\x0a\x85\xaa\xdb\x3c\xc4\x17\xb9\xea\xf6\xd9\xd2\xd6\x13\x75\xb6\x21\xfa\x84\xe2\xc2\xf7\x6a\xb9\x3c\x92\x78\x16\x48\xdc\x44\x44\x61\x79\xed\x9e\x44\x14\x3e\xe3\xf0\xc7\x73\xa5\xdc\x5a\x58\x44\x14\x59\x44\xf0\x4b\x12\xb0\xee\xac\x10\x9a\xcb\xc6\xe6\x4d\xce\xf1\xf8\xd7\x9a\x20\xbf\xb8\x93\x73\x3d\x14\x48\x86\x72\x81\x33\xb4\x23\xc3\x92\xf5\x34\x52\x94\x0d\xe3\x4c\x11\xa4\x2f\xc5\x71\x71\x2e\xf6\x8b\xe6\x15\xb1\xc7\xad\x75\x0e\x41\x87\xbc\x4f\x4e\xe2\xfe\x76\x5f\xf1\x48\x3d\x86\x74\xac\x66\x58\xb6\xca\x19\xe0\x24\xec\x6f\x37\x45\xf2\x9a\x9a\x1d\x75\x0e\x2b\x03\x29\xf0\x10\x05\xf8\xfb\x76\x7d\x89\xc2\x2b\xae\x16\x9b\x07\xe5\x64\x3a\xa0\x8b\x24\xc4\x17\x72\x34\x73\x72\x61\xb0\x24\x8a\x93\xa0\xbf\x53\x3a\x34\xf3\x05\xe6\xf1\x8a\x80\x5c\x74\x75\xbe\x44\x21\x69\x4f\x4a\xec\xe0\x0e\xec\x10\x07\x4e\x7f\x6b\xd8\x2e\x68\x7e\xce\x8d\x28\x47\xf3\x93\xa8\xbe\x72\xc6\x31\x89\xe2\x2b\x1f\xa4\x73\xbe\x51\x74\x91\x26\xd4\x0c\xc3\x50\x59\xe8\x4e\xc2\xf6\xca\x3d\xe8\xc9\xc5\xa8\x54\xe9\x9b\x35\x2f\xae\xa6\x53\x8d\x7f\x18\x8b\x5e\xfc\xc3\x68\x5f\x67\xe9\x2d\x04\x52\x5d\x4f\xdc\x05\xd3\x3f\x14\xe1\xdc\x95\x0d\xd4\xab\x3b\xf6\x8d\x6a\x84\x0e\xd3\x5b\x9a\x75\xfe\x56\x79\x50\x39\xdb\xc2\x8b\x82\x6a\x9d\xea\xdd\x1f\xcd\xea\xe7\x94\x6b\x55\x49\x06\x08\x06\x2c\x9b\xba\x93\xe3\x0d\xd0\x9d\xdd\xd4\xeb\x6c\x20\x98\xe2\x5c\x04\x01\xd7\x45\x8a\xac\xe2\xd6\x81\x09\x6b\xd3\x5e\xb4\x7f\xdf\x81\x5d\xc4\x2b\x25\x6c\xf0\x69\xc3\x45\x99\x75\x4d\x08\x64\x98\xf6\xc0\x5b\x0a\xa0\x42\x36\x11\x54\xd8\xc6\x66\x13\x17\xad\xa5\xf9\x1b\x98\xf1\x76\xad\x81\xb6\x3d\xc8\x10\xde\x1b\xf5\xbc\x97\x50\xa1\x9a\xd4\xf3\x53\x18\xe5\x2d\xb5\x20\xed\xfc\x37\x8a\xc3\xc2\x61\x6f\xc9\xb7\x84\xb5\xde\x6c\x3c\x51\xf8\x21\xd1\xb0\xce\x39\x01\x88\xcf\x3c\xbb\xda\x98\x3b\x11\xed\x6f\xd1\xf0\xdd\xbf\x84\x12\x13\xd6\xf8\x20\x5a\x1d\x2a\x1c\x7e\x58\x6d\x1a\x30\xc3\xf1\x6a\xf7\x63\x39\xfc\xae\xf6\xbb\xfa\x87\x31\x7b\xa2\x05\x3f\xb0\xc2\xc7\xf7\x87\x4c\xc9\x54\xee\x1d\xef\x56\xfd\x70\x8a\xd0\xd0\x2f\xa7\x4e\x9b\xca\xe2\xdc\x5e\x52\x93\x19\x32\x8a\xde\x2f\x97\x85\xa0\xd3\x96\xf9\x78\x07\xf9\xa7\x31\x6c\x51\x7b\x92\x58\xc8\x92\x68\xca\x0b\xab\x54\xd4\x14\xb7\xb8\x09\x77\x7d\xc4\xed\x16\x5a\x09\x71\x86\xb5\xe4\xe6\x87\x6d\xe2\xde\xb3\x2f\x9a\x7f\x18\xbe\x96\xdc\x3d\x2c\xe0\xa5\x59\x36\xc3\x5c\x38\x5d\x49\x5b\xe1\x23\x8b\x4e\x51\x09\xb2\xed\x1d\x9e\x40\xb1\xb7\xbb\xb3\x30\x2a\x85\x92\x3e\x22\xb5\x3d\xa1\x5b\x63\x53\x2f\x50\xc8\x94\x70\x46\xb1\x8a\xbb\x2c\xc3\x26\xe2\x8d\x5b\xe4\xc0\xc3\xb2\x09\x63\x3e\x68\x5b\x0c\x0d\x07\xf1\x86\x24\x02\x8a\x55\xdc\x65\x27\xe4\x58\xc5\xe2\xdd\x13\xab\xf8\xcb\x26\x47\xba\x31\xa4\xd4\x31\x31\xef\x9d\xd2\xaa\x23\x92\xf1\xf9\x29\x33\x2a\xfb\x5e\x09\x29\x26\xf6\xbd\xc3\x97\xee\x23\xb6\x94\xfa\xab\x1b\x28\xb9\xac\x3a\xdc\x95\x85\x80\x49\xce\x72\x23\x8a\x91\xf0\x4c\xb8\x1e\xd3\xd9\xd8\x1f\x3a\x4f\x8f\xee\x20\xcf\x8b\x68\x16\x31\x07\x1e\xb1\x15\xb4\x23\x10\x8e\x0c\xc9\x9a\x1d\xe8\x78\x78\x16\x83\xc5\x64\xa6\x72\x58\xee\xe6\x34\xfc\x8d\x7d\x27\x8e\x89\x04\x20\x92\xd7\x12\xca\xf8\xcb\x22\x7d\xd0\xe5\xc9\xfe\x06\x7d\x3e\xfc\x31\x4e\x9f\xf6\xc7\x03\xc5\xab\x9d\xa6\x40\xc6\xe6\xd7\x23\x0c\x91\xb2\x21\xd1\x89\x6f\x9c\x99\x4d\x82\x13\x67\xfc\xa0\x9d\x5c\xc4\x10\xca\x7f\xd6\x49\x71\x18\x63\xd6\x6c\x21\x25\x19\x92\x8b\x3a\xa8\x31\x97\x34\x31\x8d\x93\xf8\x93\x84\x34\x3e\x33\x90\x94\x0d\xe1\xc6\x74\x51\x8e\xf0\x70\xb5\xb1\x44\xc3\xb5\x42\x56\x66\x77\x5d\x4b\xe4\x7a\x83\x8a\x61\x8b\x11\xd3\x38\x8b\x19\x46\x48\xe3\x1b\xbf\xbf\x93\x90\xc6\xb9\xb8\xaf\xd8\x54\x56\x7f\xd3\x40\x9c\x05\x1b\x81\x18\x56\x58\xf2\x26\x7c\x54\x4e\x22\x1a\x67\x29\x17\x3a\xa0\xb1\xe4\x17\x04\x34\xbe\xf5\x5e\x22\x80\xf1\xf9\xe8\xfe\xa8\xeb\x83\x2c\xba\x61\xb2\xfb\x21\x82\x71\xbf\x87\x2a\xd2\x9d\x35\x34\x30\xee\x2c\xcf\x1e\xba\x40\x33\xbb\x22\xee\x88\xef\x4f\x61\xde\xbb\x87\x0b\xbf\xbb\x6e\x25\xd4\x65\x2f\xf5\x48\xef\x32\x4f\x98\xc4\x41\x5d\x23\x0d\xda\x49\x32\xfc\x85\xc0\x27\x79\xe9\xd1\x28\x14\xd3\x7f\x85\x91\xae\xb9\x73\x2b\x04\x3e\x66\x1e\x12\xec\xf8\x2e\x62\xa8\x12\xde\x38\x13\x36\x68\x12\xde\x38\x0b\x63\xac\x10\xff\xf8\xf5\xb9\x2e\x1c\x73\x0a\x75\x12\xc0\x38\x29\x52\xec\x24\x64\xb1\x69\xfd\x75\x8b\x5c\xe2\xd8\x10\xc1\x38\xc9\x9f\xed\x24\x82\xb1\x2f\x1b\x05\x30\x96\xe9\xeb\xba\xd9\x41\xda\x4f\xf2\x42\x2d\x23\xf6\x25\xb7\xd3\x5a\x5d\x64\x3a\x62\x50\x28\x44\x71\xbf\xbf\xd9\x50\xc9\x98\xae\x27\x38\x4f\xdd\xdf\x40\x49\xdf\xa2\x21\x64\xd7\xe6\x0b\xe9\x4f\x16\x59\x4e\x10\xe2\x22\x95\x95\x75\xa3\xa7\x33\x9d\x63\x5f\x16\x75\x0e\x62\x25\x6b\x06\xe4\x83\x55\xb3\x7e\x43\x8f\x68\xff\xdc\x18\x75\x27\xad\x65\x38\x8e\xfe\xdd\x73\x9e\xd1\x20\x48\xe2\xd8\x66\x9c\xd4\x4f\xc2\xd8\x76\x99\x59\x12\xc5\xf6\x74\xc0\x1f\x39\x9a\x50\xa5\x44\xb5\x4d\xe6\xad\xac\xb0\x8f\xec\x32\xba\x5c\xb2\x8f\x94\x80\x80\x28\xb7\x5d\x26\x8f\x8e\x72\x2b\x45\xcd\x95\xc0\x6b\x1a\x35\x61\x6e\x87\xf8\xdf\x2b\x49\x4a\xf3\xad\x17\xdc\xf1\xad\x09\x89\xa1\x7e\x9b\xe1\x29\xc9\x66\x60\x85\x0d\x64\x97\xdd\xdd\xca\x90\xdf\x30\x13\x96\xfc\x0a\x4b\x1d\x9a\x48\xb7\x5d\x96\x6a\x2b\x6b\x7b\x15\x97\x55\x1f\x9c\x65\x5a\xaa\xeb\xe5\xd8\xeb\x3c\x86\x1d\x63\x26\x0c\xf7\x24\x3e\x6d\xfb\xd6\x1b\xaf\xe2\xaa\x49\x21\x04\x6d\x1e\xee\xad\xee\x9b\xaa\xb2\x41\x9f\x48\xbd\x6c\x65\x3d\x90\xaa\xb3\xc1\x5b\xcc\xd7\x3f\x81\xc4\xb3\xb8\x3a\x3a\xad\x79\xc9\xc2\xb0\x2a\x3b\x63\xe0\xae\x17\x2a\xb7\xba\x87\x3b\x3e\x3a\xf7\xfe\xf5\x53\x8c\xa3\xf2\x59\xfe\x9a\xb3\x3b\x1f\x06\xcd\xc2\xda\x18\x40\xca\x7c\x85\x98\xb8\xa7\xd2\xa6\x6c\x10\x98\xba\x37\xf2\x56\xef\x5c\x16\x06\x88\xba\x13\xec\x45\x29\x95\x28\xd4\x6d\xd5\x0f\x8b\x04\xfa\xea\x4e\xd1\x5a\xfb\x63\x0d\x5c\xe6\x6f\x10\x10\x42\x1e\x05\x21\x8a\xf8\xa4\x2b\x7c\xf3\x76\xd9\xd7\x11\xf9\x36\x8b\xdf\x4c\xe4\xdb\x3b\x4b\x4d\x9e\x58\xb7\x5d\xef\xc9\x55\x64\xa9\x34\x9d\x4d\x51\x8f\x1a\x99\x84\x28\xf4\xb7\x12\xdf\xd4\xa2\xac\x98\x84\xe9\xc2\x2e\xb2\xcb\x9a\x6d\x15\x71\x4e\x74\x38\xc2\xd4\xb1\x27\xde\x85\xab\xc4\xad\x21\x6b\xb6\x55\x24\x4a\xd0\x1e\x2e\x71\x6b\xc8\x30\x89\x30\xb9\xc9\x36\x57\x84\xc9\x1d\x5d\x1b\xb1\x60\xc6\x50\xfd\x8d\xa7\x84\x3b\x1b\xec\xe8\x74\x6b\x2a\x43\x7b\xcb\x6b\x59\x44\xcb\x34\xf5\x0e\x8d\xac\xe1\x91\x6c\x0d\x4c\x5d\x40\xd3\x5c\xac\x73\x45\xba\xad\x59\xdb\xa9\xea\xe5\x0c\x35\x49\xa8\xdb\x2e\xbb\x14\xa2\xd9\x76\x71\xbd\x09\x66\x7b\x8a\xba\x22\xd6\x73\xba\x22\x38\x02\xdf\x6c\xac\x27\x6f\x8b\x85\xd5\xa3\xe8\x22\xe2\xde\x76\x59\x27\x10\xf7\xf6\x74\xa8\x28\x0b\x85\x2d\xf4\x5f\x63\xb1\xc5\x47\x5d\x55\xa2\x06\x21\xd1\x3a\xe9\x5f\x53\xee\xdc\x87\x32\x2b\x5a\x61\xd9\x78\x7f\x51\x61\x15\xcd\xf0\xfd\xa5\x26\x5b\x7d\xc0\xd0\x35\x5f\xce\x72\x45\x7f\xbf\x3e\x7c\x55\x55\xc4\x27\xd7\x3b\x4e\x21\x4e\x33\xbc\x8f\xd5\x60\x27\x7f\x73\x6a\xa6\x29\x0b\xe5\x2b\xbc\x19\xd6\x70\x8a\x0d\x31\x09\x79\x7a\x3e\xd2\xff\x26\x5c\x23\x4a\x25\x44\xb6\x5d\xfc\x39\x62\x9c\x9e\x8f\xaa\x17\xb1\x58\x76\xee\x5c\xef\x59\x84\x54\x43\x9f\x58\xec\xdb\x85\x18\xb6\xca\x5b\x03\x91\x4c\x53\x12\x8f\x96\x50\xa6\xc9\x53\x18\x52\xd9\x2c\xee\xf2\x92\x33\x61\xf1\x68\x89\x4e\xda\xa5\xcf\x4b\x70\xd2\xd3\x21\x97\x7d\xc8\x52\x51\xb7\xe3\x0f\x67\x35\xb4\xa9\xec\xd9\xbe\x7a\x43\x2d\xac\xd8\xc4\x5a\x5b\xc8\x61\xa5\x44\xbc\x10\xbc\x4a\x83\x77\x21\x77\xad\x59\x58\xa2\xe3\x4f\x46\xfb\x2f\x2c\xce\xba\xb4\x3c\x15\x11\x55\x8a\xb8\xab\xa3\xd6\x25\x4b\x65\x05\x48\x1d\xe7\xc5\xf1\x47\x34\x8e\xaf\xe0\xac\x93\xd6\xc1\x19\x9a\x77\xf9\x06\xd6\x83\x83\x60\xa9\x49\x11\x33\x4f\x36\x8e\x80\xf0\x26\xd6\x6a\xd6\xcf\x59\x21\x78\xed\xd2\xfe\x5d\x5d\x0f\xe8\xe1\xfe\x3d\xf1\x51\xf5\x48\xe8\xaf\x2d\x85\x2c\x55\xca\x58\xc4\x59\x3d\xd5\xaa\x22\xdd\xff\xba\x74\x22\x1e\x6a\x97\x8a\x1f\xf1\x50\xcf\x47\x97\x8d\xfe\x09\xe7\x77\xa4\x91\xb2\x19\x22\x3a\x6a\x2a\x1a\x4a\x98\x95\x75\x29\xf1\x11\x0d\xf5\x2c\xc3\xad\x2c\x62\x6b\xed\xf1\x01\x01\x29\x96\xda\x1a\x60\x14\x18\x48\x8a\x8e\x5a\x4c\xdf\x12\x1e\x75\x98\x22\x19\xa8\xf1\xc9\x98\x8d\x68\xa9\x67\xe0\xfe\xfa\x89\x9b\xd9\xf5\xc6\x1c\x89\x5c\x19\x88\x2b\x65\x7d\xe1\x70\xa9\xa6\x32\x22\x5c\xaa\x15\x76\x14\x11\xd5\x88\x00\xf7\xc0\x35\x0b\x7d\x8f\x30\x3a\xb8\x3c\x6e\xf1\xe5\x85\xcc\x25\x60\x16\xdf\x8c\x50\xa6\xf7\xf0\x45\x24\x09\xb3\x58\x55\xcb\x16\x6c\x3a\x86\x08\x9c\x6b\x76\x27\x50\xff\xce\x1e\x6a\xe8\x09\x49\x39\x6f\x0d\xee\x7f\x91\x41\xe1\x59\x38\xfb\xa2\x1c\xba\x09\xb4\x21\xe5\x59\x58\x46\x46\x44\x28\x3d\x59\x0d\x7c\x6b\x70\xfe\x7a\xf0\xa5\xb8\xf1\x4b\xd6\x6f\xf9\x5b\x36\x2e\x1c\x98\x53\xc4\x1d\xed\x52\x4d\x22\xec\x68\xba\xa4\xbd\xbf\x10\x38\xfb\x59\x37\x21\x01\xe0\x55\xad\xa9\xd7\xea\xf4\xc7\x58\x7e\x11\x57\x93\x1b\x44\x0c\xa8\x35\xc5\xc9\x98\x6e\x25\xce\x84\xe8\x03\x6c\xcf\x64\x29\xac\x30\xa3\x97\x04\x6a\xc4\x19\xed\x44\x34\x9a\x0a\x2c\x9a\x64\x13\x43\x64\xd1\x2e\xed\x16\x22\x8b\xde\x35\xeb\x4e\x0b\x53\xb4\xee\x67\x92\x02\x8b\xfa\x7a\x09\xe3\xb3\xbb\xeb\xd5\x34\x39\xc0\x70\x47\x88\x2b\x7a\x1a\xf1\xc7\xd8\x7f\xc2\x61\x93\x43\xa9\xf5\x9b\x50\x04\x4d\x25\x41\xe4\x4d\x9d\x83\xf0\x13\x9d\x1a\x02\xe9\xee\xe3\x30\x59\x77\x58\x37\x44\x70\x4c\x52\x44\x22\x64\xe3\x69\xbe\x28\x0b\x3a\x49\x2e\x1b\x53\x27\x3c\xb9\x78\x22\x88\x91\x43\xcc\xc6\x33\x48\x65\xe3\xc1\x29\x99\x15\x31\x1b\x4f\x59\xfd\x74\x6b\x2a\xfd\x15\x8a\x7c\x3a\xcb\xb5\xa3\x3e\xc0\x47\xf3\xae\x50\xcc\x46\xf1\x5b\x88\xd9\xd8\x89\xf5\x35\x89\xd2\x98\x92\x99\x18\x78\x9a\x95\xd4\x6a\x6d\x73\xd1\x86\xb2\x42\x28\x53\x59\x9c\x1b\x54\xe5\x1a\x8d\x26\x65\x07\xf5\xfe\x59\xae\xb9\x30\x61\xfa\x3e\x4c\x36\x18\x44\x74\x10\xb1\x18\xa7\x4f\xfe\xe6\x36\x11\xe5\x83\x9c\x6f\xca\xcc\x64\x6d\x08\x49\xd9\x80\x10\x9a\xf1\xfe\xbe\x62\x36\x7c\x33\xb3\x39\xb0\x6a\x92\x6a\xea\xc2\xa8\xa9\x7f\x7f\xc9\x94\x65\x37\xfa\x8a\x8f\x2a\xba\xd4\x23\x67\x59\x19\x4d\x3e\x96\x4a\x53\x96\x27\x04\x5d\xec\x62\xcf\x12\x74\xf1\x94\x55\x33\x4b\x0b\xa5\xf9\x45\x0b\x62\xfa\x97\xb1\xe9\x74\x87\xc9\x70\xc9\xcf\x5d\x42\x32\x16\xbd\xd3\x37\x34\xa9\x6e\xa9\x90\x03\xf6\xe4\x6f\xf1\xd4\x14\x4f\x8f\x18\x8c\x5d\xcc\x41\x42\x30\x9e\x4a\xd5\x3b\xd0\x90\xae\x21\xb9\xb4\xcd\xc9\x65\xd9\xe7\xc5\xd5\xd2\x3b\x75\x07\xc5\x55\xbf\x8c\x15\x76\xd1\x2f\x63\x99\x2e\xf9\xf1\xfb\x32\xd2\x2a\xca\x26\x56\xc9\x85\x33\xcd\xfa\x6b\xcc\x9f\x2e\x22\xfc\xd8\x7e\x5f\x60\xf8\xb1\xbd\xbc\xde\xc4\x5a\xbc\xbc\x30\x2f\xae\x29\xd9\xca\x10\x40\xf1\x9e\x32\x80\x59\x2f\x6d\x1d\x5d\x96\x2f\xf4\x14\x64\xfc\xb1\x5e\xd0\x13\xba\xa7\x5e\x53\xed\xb8\xa6\x40\x0e\xc3\x39\xf6\x8a\x6e\x52\xc2\x26\x4e\x59\x56\x28\x6c\xe2\xe5\x07\xfa\x0b\xec\xa4\x9b\xe9\x85\xa5\x6c\x16\xb2\x78\x81\x90\x84\x75\x5f\x8a\x1e\x22\x82\x02\x4f\xb3\x53\x66\x23\x04\x47\x3c\xf5\xaa\x87\xf8\xa9\xf3\x65\x14\x92\xbe\x9a\xb5\xd3\x43\xd0\xd7\xb3\x8e\xd7\x0b\x33\x91\xef\x3c\xa0\x19\xe5\xb7\x3d\x1e\x61\xa5\x5b\x4a\x38\xc4\xbb\xb9\x4d\xa4\x28\xb2\xc2\x21\x1c\xe2\x2d\xc5\x01\x85\x43\x94\xe6\xdb\x0a\x49\x5f\x97\x7d\xf0\x42\xd2\x27\xa7\x69\x44\x4a\xcc\xb2\xd6\x53\x64\xc4\xcb\xeb\xf0\x1e\x1a\xa6\x6b\x65\xdb\x57\x57\xf4\x44\x45\xcc\x50\xc8\xef\xba\x1f\x03\xd8\x0f\x75\x21\x48\xc9\xef\xbc\x9e\x21\x85\xeb\xa6\xb5\x11\xbb\x49\x07\x94\x88\x86\xa7\x0d\x67\x85\x8d\x54\x2d\x5a\xc5\x7e\xad\x23\x4d\x9b\x97\x2e\xe7\xb7\x4e\xbb\x2e\x4e\x82\x1a\x7e\x1f\xb6\xef\xa5\xb1\xa9\xbf\xba\x2a\xaa\xbf\x12\x14\x42\x1f\xcf\x22\x0d\x89\x51\x96\xa4\x62\xd9\xa3\xd9\x4c\xa0\x73\x35\x8a\xaa\x1a\x84\x28\xd2\x23\x22\x3a\xe1\xf9\xa5\x7a\xa4\xa3\xa8\xd9\x46\xd4\x75\x79\x17\x7d\x58\x26\x6d\x85\x0f\x6a\xff\x7e\x79\x7f\x10\xca\x4b\x75\x68\x85\xb0\xeb\xfc\xf4\xcf\x66\xf8\xeb\x23\x7a\x42\x37\xad\x24\x63\x52\x80\x21\x5a\xe1\xfd\x7d\xb6\x7f\x44\x5d\xea\x7a\x95\xe1\x8f\xa4\xe6\x04\x28\xbc\x25\x71\x23\x40\xa1\x22\xa3\x4d\xc5\x27\xbc\x64\xff\xb2\x3e\xec\x07\xed\xa4\x30\x11\xca\xb5\xbb\x28\x1b\xd2\x39\x70\xb6\xee\xe5\x8f\x1e\x08\xba\x7a\x71\xc1\x7b\x79\x0f\x7e\xb4\x21\x3c\x4b\xf0\x9b\x65\xfa\xb1\x3e\x22\x18\xb3\xbf\xc6\x46\x73\x8f\x96\x06\xae\x66\x03\xc1\xf7\xe2\xa2\x84\x5b\x1d\xce\x82\x38\x84\x0c\x90\x9c\x7d\xc7\xbd\x08\xc1\xa5\x1e\x6d\x8d\x5b\xfd\x0d\xc3\x85\xee\xfe\xe1\x6d\x4d\x06\x2f\xeb\xc3\xd6\xf1\x58\x74\xda\xbb\xcb\x0e\xca\xba\xa2\x43\x03\x99\x22\xc3\xb9\x6e\xf7\x74\xc2\x89\x32\x7b\x02\xf1\xdb\x94\xf2\xf8\x42\xfc\x76\xf9\x1c\x84\x7b\xdd\x6e\x0a\x56\xb6\x46\x52\xaa\x59\x88\xdf\x72\x72\x4e\xf3\x97\x94\xe5\xc8\xa8\x0f\xc8\xdf\x7c\x62\x42\xfc\xd6\xf3\xb7\x11\xad\x8b\x2b\x0a\xdc\x20\x5a\x53\xf2\x35\xb3\x48\x42\x84\xd6\x7d\x9c\x9e\xd0\xe1\x90\x06\xd6\x7a\xa6\x7a\x90\x95\x65\x4e\xdc\xdb\xc0\x0e\xe6\x16\x3e\x84\x69\xbe\xdc\xdb\xe0\x47\x14\xd3\x2a\x21\x22\xeb\x3e\x7a\x61\x3f\xd4\xb3\x88\xbd\xf0\xa6\xdb\x8d\xea\x31\x26\xca\x5a\xa3\x07\xbd\x33\xb3\xaa\x1e\x6f\x29\xb5\x89\xab\x83\xe2\x5f\x2e\x7a\xa0\xde\x22\xee\x30\xd3\x03\x97\xb9\xf3\xfa\x66\x1f\xb2\xaa\x29\x28\xcc\xef\x40\x83\x32\xf8\x4e\x3c\x97\x84\x47\x8d\x11\xaa\xac\x9d\x16\x46\x4a\x52\xe3\x58\xcf\x56\xff\x34\xb2\xcd\xa5\x7c\xfb\x2b\x7b\xbe\x3b\xbb\x28\xac\xa1\xa2\x08\x6e\x3e\xe9\xa3\x7d\xc3\x66\xd8\xe1\x43\x77\xc8\x73\xcb\xbe\xb8\x52\xa4\xce\xb3\x2f\x6e\x11\x3a\xb1\x2f\x76\x11\xa4\xcb\x0e\x89\x5a\xcf\x9c\xac\x1d\x36\x49\x5d\xfd\xdb\x17\xbb\xa6\xb8\x16\x4d\x98\x7f\xf8\x8a\xa2\x43\xb9\xf0\x6a\xd7\x5d\x14\xdc\x09\x07\x64\x87\x78\xad\xe8\x86\xdb\x17\xa2\x12\x71\x85\x76\xc8\xd7\x7a\x2e\x1a\x07\xd8\x86\x31\x6f\x0c\x9d\xb4\x44\x3b\x0c\x9d\xba\x16\x77\x5f\xa2\x3b\xdc\x9d\x78\xda\xc8\xf1\xd8\x46\x82\x76\xc9\x72\x6c\x5f\xda\x7c\x9e\x01\xbd\x7a\xbb\x86\xc9\xe6\x2b\x1a\xc9\x02\x0b\x14\x35\x83\xf9\x8b\x98\x98\x1b\x81\x5a\x2e\x7f\x8c\xb2\x79\x8a\x46\x77\x8b\x1b\x81\x28\xe9\x1a\x99\x76\xaa\xe7\x1d\xab\x1a\x31\x9b\xf6\x25\xf2\xd6\xa3\xc1\x64\xf6\x3b\x47\x41\xc2\xd6\xdb\x1f\x3f\xd1\x8c\xfb\xf7\x04\x4f\x5c\x8d\xb2\x6d\x8b\xa6\x08\x2d\x26\x19\xf6\xec\x8b\x7d\x5b\x55\xa9\x88\x9b\xa4\x7a\xf4\xce\xf6\xda\xe3\x65\xe6\xf2\x1c\x21\x9a\x1b\xea\x41\xa8\x93\x08\x8f\x6f\x2c\xb3\x92\xfb\x2a\xfa\xb6\xbb\x0b\xd1\x59\x1e\xe1\xc4\x99\x3d\x8d\x38\xcb\xcb\x1f\xb4\xbe\x91\xdb\x5d\x42\xeb\x0a\x43\x3b\x65\x6a\x44\x18\xda\x9e\x21\x6f\x08\x43\xdb\x73\xf5\x2f\xc3\x70\x2c\xb9\x5a\x56\x9b\xf7\xc0\xc6\xf8\x4a\xbe\x03\x15\x2e\xb6\x7a\xfa\x90\xdb\x4d\x19\x58\xed\x1b\x03\x58\x59\x77\x12\x2f\xb6\xe8\xa1\x46\xb8\xd8\x53\xd6\x1f\x63\x16\xaa\x2b\x82\x1a\x03\xff\xee\x5b\xb4\xad\x3b\xa8\xfd\xc8\x43\x7c\xdf\xda\x8f\xc3\x15\x83\x7b\xaa\x46\x1a\x8c\xfb\xec\x2e\x2d\xde\x00\x49\x15\x2f\xf5\xdf\x5f\x85\x0f\xfd\x95\x69\x51\x0f\x45\x54\x25\xb5\x8a\x7b\x27\x6f\xd0\x5b\xb7\x5f\x53\x4d\x70\xe0\x25\xb2\xdf\xe1\xca\xb6\x67\x0f\x47\x78\xac\x38\x1b\x38\xc4\xa3\xc1\xc1\x9c\x2c\x7c\x08\x19\x7b\x06\xc7\x6a\x84\xc0\x29\xeb\x8e\x20\x3a\xe4\x29\x3b\x94\xa5\xbf\x53\xb9\x88\x7a\x7a\xf9\x87\x71\xc0\xa1\x84\x88\x15\xd9\x33\xa4\x1b\xd1\x20\xbb\xcc\xee\x09\xff\x78\x2a\x55\x35\xa1\xdb\x2e\x9b\x5c\x82\x41\x66\x42\xc4\x9d\x5c\x28\xb3\x17\x57\xc3\x1d\x3f\xd4\x86\xf0\xb1\xb6\x79\x11\x93\x50\x67\x00\x39\x51\x6e\xfe\x18\xf3\xa3\xd9\x0a\x39\x51\x96\xac\x80\xf0\x8e\x3d\x43\xd2\x29\x82\x63\xd1\x43\x5c\x31\x1b\xa7\x4c\x8c\x14\xa6\x31\xfb\x97\x08\x86\x2e\x97\x05\x55\x0a\xab\x16\xd0\x61\x57\xb5\xf2\x2b\xe4\x1c\x34\xc7\x50\x7f\xe2\xf1\x24\x0f\x76\xbb\x70\xa1\xba\xc5\x45\xcf\x35\x2a\xd8\xf0\x3c\xba\x76\x09\x66\x8e\x1c\x73\x6f\x49\x77\xbe\xbf\x0b\x89\x56\x72\x9d\x60\xfc\xa1\xa2\xa2\xb3\xb8\xd0\x77\xd1\x8a\x08\xbd\x15\xbd\x88\xa7\x6a\xda\x98\x60\xf9\xa7\x74\x7d\xaa\xe2\x0d\x49\x99\x5d\x36\x10\x48\x77\x59\xc6\xc5\x28\x43\x0e\xd4\xb3\xee\x95\xea\xe5\x9a\xca\x82\xc7\x21\x8f\x76\xe5\x4a\xec\xe9\xcf\x78\xbc\x8a\x9a\xd7\x96\xa9\xac\xb4\x86\x52\x45\x84\x55\x57\x1b\x4b\xdd\xdd\x26\x27\x41\x08\x0d\x39\x90\xdc\x1c\xed\x0a\xcd\xad\x63\x51\xe1\xee\x4b\x48\xb4\x43\xd4\xd3\xb3\x76\x1e\xa2\x1d\x39\x8a\xd9\x55\xe8\x41\xf8\x2c\x44\x39\xbd\xb9\x9e\x83\x1e\x72\xff\x7e\x63\xde\x85\x58\xaa\x90\x45\xf5\xd7\x98\x83\xef\x47\x0d\x53\x6d\xa2\x3e\x6d\x04\x5b\x09\x44\xed\x73\x1b\x51\x37\x15\x80\x76\x12\x75\x33\x37\x0f\x33\xae\x20\x09\x2c\x89\xb2\xa9\xb8\xca\x27\x17\x3b\x58\xdb\xb2\x8a\x56\xf2\x30\xb9\x47\xb4\xf0\x38\xa6\xbc\x44\x30\xee\x8a\x57\x41\x5f\x1d\x15\x1d\x0f\xa3\xdb\xa6\xab\x43\x58\x9d\xd0\x9a\x53\xd6\x4f\x5b\xce\x27\xc5\x76\xdf\x98\x4e\xe6\xef\x47\xa6\xda\xdf\x78\x61\xe9\x00\x2a\xd2\xa6\x91\x6f\xd3\x55\x32\xfd\xd3\x60\x43\xea\x8e\x0c\x97\x92\x29\x8b\xa1\xbb\x9b\x78\x68\xba\x85\x1a\xda\x87\x17\xa4\xf3\x6e\xdc\x16\xda\x53\xb2\x82\xbc\x34\x67\x8d\x85\x99\xfa\x65\xf0\x57\xf3\xd4\x48\xe5\x4b\xfa\x72\x36\xb0\xa2\x6b\xc5\x7a\x51\x62\xc9\xdd\xe4\xd5\xfc\x72\x36\x16\x46\x68\xd1\x52\x34\x5d\x0e\x8d\x95\xd1\xea\x23\x36\xbb\xbe\x45\xb9\x0b\xdc\x5b\xd0\xfd\xf4\x47\x06\xe6\xde\xc6\x22\xca\xc7\x09\x21\x38\x7b\xf6\x7c\x6d\x75\xcf\x4d\x72\x0b\x7a\x64\xe8\x96\xca\xea\x8b\x88\x9c\xa7\x70\x51\x36\x8e\x8b\x96\x30\xdc\x46\x76\x5f\x0d\x5d\x9c\xaf\xea\x8f\x4c\x5f\x53\xae\x45\x51\xd7\xaa\xf3\x3a\x94\x55\xe7\xab\xb2\x9a\x5c\x57\xf4\xc4\x4f\x19\x76\x88\xdc\x7a\xd1\x64\x76\x31\xe1\x75\x57\x85\x07\xc8\x2e\xbf\x84\x84\xd8\xec\x45\x6b\x84\xbd\xe2\xbc\xdc\xa1\xc9\xaa\xf0\xea\x24\xaa\xe6\x5d\x7d\x95\xc9\x24\xf1\xf2\x40\xc5\x35\xd1\x0c\x12\x49\xf3\xd2\x1b\x66\x87\x69\x61\x2f\xee\x2e\x0a\x19\xf2\x9c\xb5\xfb\x82\xf7\x26\x7a\xb9\xeb\xbd\xa3\x4b\xb2\x07\x7f\xbd\x5c\x2e\xab\x3e\xf9\x23\x03\xd7\xd8\x08\x18\x22\x8e\xd0\xee\x68\xbf\x77\x7f\xcc\xb4\xa2\x69\x41\xef\x50\xfe\xda\x36\xe2\xba\x72\x69\xe4\x71\xa1\x0e\x2f\x70\xdc\x02\xd2\x5b\x27\x24\x67\x2f\x9e\x94\xad\xfe\x30\x4e\xe4\x73\x53\xd6\x6a\x1b\xb7\x8f\x96\x24\x13\x92\xf3\x7c\xfd\xb3\xf0\x73\x0f\x74\x4b\x65\x22\xb7\x43\x02\x77\xda\x61\x8e\x06\xc6\xf7\xbe\xaa\x07\x62\x71\x71\x0b\x36\x92\xb4\x0e\x87\x62\x0f\x48\x3a\x59\x7d\x6d\x59\x6e\x9a\x3e\x09\xc1\x5a\x2f\xea\x7f\x58\xd0\xf5\xa2\x56\xc2\x4a\xee\x96\x40\x9d\x20\x88\x5d\x21\x03\x88\x81\x78\xa6\xd3\x1f\x37\x8d\xf8\x97\x87\xea\x91\xfb\x9e\x3d\x35\x65\x2e\xaa\x40\x15\x91\xc3\xc1\xde\x94\xbd\x18\xe1\x12\xbb\x94\x2a\x09\x90\x78\x3e\x3a\xdb\x19\xe6\x54\x36\xd6\x4c\x83\x0e\x8b\xb5\x5e\x84\xc5\xc2\x6b\x5e\x2f\xba\xa5\xc2\x69\x5e\x31\x89\x88\xf9\x5a\x11\xe6\x5c\x9a\xbb\x6f\x16\xb3\x2a\x57\x33\xf8\xe8\xac\x46\xe9\x26\x63\x5c\x3a\xf8\x4b\x4c\x24\x11\x00\x61\xa3\x56\x24\xd4\xd8\x32\x43\x33\x15\x16\x66\x68\xbd\x24\xe7\x0e\x71\x97\x75\x2d\x2d\x34\x55\x4c\xa2\x85\xdd\x59\x2f\xc9\xb9\xc0\x5a\x3a\x39\x0b\xad\x37\xd3\x3d\x88\xa2\x8a\x76\xdb\xd2\x51\x71\xf7\xb0\x1d\xf2\xe5\xbc\x44\xf8\x88\xa2\x0c\xc3\xb3\x53\x58\x3d\x42\x63\x49\x37\x6e\x84\x39\xec\x72\x00\xb3\x17\x47\x25\x39\x17\x87\xb7\x38\x17\x01\x41\x2e\xb7\xb1\x83\x5f\xab\xfe\x9c\x3d\x51\xfa\xb7\x41\xf6\xf7\xed\x6c\xe8\x56\x75\x37\x1f\x61\xf5\x75\x85\x22\x94\xca\x12\x53\xec\x8d\x27\xb4\x6f\x4e\xcb\xd7\x94\xd5\x82\x75\x65\x37\xd9\xa1\xec\x2b\x8c\x28\x6e\xe5\x22\xd4\x9c\x6e\xc5\x10\x3b\x29\x32\xfb\x24\x8e\x61\xf2\xf3\x2a\xe2\x18\xf6\x92\x9d\xe3\xfe\xd4\xb8\x42\xca\x54\x5b\xf1\xc7\xf3\x16\x90\xeb\x08\x22\x1e\x5a\x51\x8e\x88\x87\x5d\xaa\x23\x7b\xb3\x7b\xc4\x97\xd8\x9c\xc3\xec\xe6\x1f\x66\x47\x7d\x0b\xd2\xa9\x88\x83\x80\x38\xea\x92\x87\x91\xbd\xd9\x4b\x9a\xd7\xad\xf7\xba\xc8\xe4\x30\x35\xeb\xe5\x5b\x14\x62\xa4\xb9\xa2\xc0\x9e\x9e\x00\xef\x08\x67\x23\xd6\x8d\xc9\x9a\x30\x27\x3b\x5f\x35\x94\xd8\x20\xe5\x9b\x63\x46\xb2\xb3\x2c\x82\x10\x3a\xf6\x65\x45\x57\xce\xde\x1a\x1a\x65\x5f\xc2\x98\x42\x39\xb2\x21\x93\xcd\xdf\xb6\xf8\xa7\xf8\xeb\x27\x1c\x16\x27\xe5\xe0\x2c\x69\xe6\x91\xfe\x54\x3f\x17\xc2\xe0\xeb\x74\xc2\x5f\xa1\xb2\xf5\xb4\x08\x03\xb0\x5b\xbe\x71\x88\x73\x78\x6a\x52\xab\x20\x08\x6d\xbf\x97\x10\x44\xf6\x47\x26\xf8\x9f\xa1\xc8\x5f\xa8\xc5\xfa\xe9\x83\xf1\x58\xbe\xbe\xad\x42\x38\x16\x67\x1f\xbe\xb2\x72\x38\xc2\x93\xfe\xcd\x7e\x61\xfe\x23\x2a\x32\x1c\xe1\x9d\x5f\xba\x28\xaf\x7f\xbd\x20\x42\x70\xd4\x8b\xf6\x6e\x38\xa2\x3b\x7d\xd0\x4f\x37\x43\x15\xb9\xfc\xd2\x03\x59\x07\xef\x25\xd1\x82\x1e\x2a\x8a\x25\x28\x5b\x4d\x62\x09\xe6\xf2\x2d\x1b\xde\xc6\xbd\x0d\x5f\x3e\xd0\xea\x53\xbc\x7f\x4a\x75\x45\x8c\x4d\x7b\xeb\x2d\x7e\x8a\xee\x87\x10\x17\x9d\xec\x50\xb6\x51\xd3\x54\x16\xac\xaf\x65\x0e\x63\xb0\x5e\xaa\x7f\xba\x7f\xfd\x54\xe9\x71\x29\x2a\xa0\xfc\xa1\x11\x15\xd0\xfe\x60\xf6\x9b\x1b\x41\xf4\xd4\x9b\xf5\xbf\xf5\xca\x7a\x73\xc0\x45\x23\x29\x42\xa0\xec\x3e\xf7\x5b\x1b\x40\xbb\xe3\xed\x0d\xe0\xc2\x83\xc2\x1a\xda\xe4\x5e\xd4\xe6\x79\xc3\x40\x91\x71\xe5\x7e\x8b\xa4\xd2\x92\x87\x19\x57\x31\x86\x0e\xc1\x53\x97\x91\xf5\x7e\xeb\x1a\x18\xce\x4e\x2a\x52\x27\xb8\x07\x9a\xeb\x89\x15\x6f\xfe\xa6\x36\xfd\x51\x6d\x6a\xe4\x8b\x53\xa3\xad\xf4\xc6\x2b\xbb\x4c\x21\xf7\x5b\xc4\xb6\xde\x65\x21\xb2\xea\x45\xf8\xe2\xad\x4b\xa2\x38\xcb\xb2\xe9\x96\x08\x4b\xae\x5e\x74\xfc\xde\x21\x69\x2e\xcd\xd5\xb2\xf3\xab\x3f\xbe\xc9\xd2\x4a\xc8\x83\xb2\xc4\x41\x3b\x04\x40\xe7\x23\xd5\x7e\x74\xac\x85\x43\x3f\x28\xac\xfb\x71\xfa\xe1\xa8\xea\x54\x7f\xb4\x52\xda\xfa\x1f\x02\xee\x48\x6f\x8e\x28\x8c\xdd\xac\xdf\x10\x01\x55\x29\x5f\x28\x08\xe3\xf5\xfd\x25\x08\x57\xe7\x36\xfc\xc0\x9d\x6a\xd5\x41\xec\xa8\xfc\xe8\x0d\x3b\xaa\xf3\x55\x35\x89\xf2\x75\xe1\xa0\x33\x6d\x83\x49\x00\xc3\xbb\xfa\x0a\xfa\xc0\x2b\xf7\x95\x8d\xc8\xa5\x4a\xcb\x63\x5b\xe4\xa2\x49\x7c\x88\xb2\xe9\x97\x19\x81\x09\xcb\xfd\xfd\x1a\x9c\x64\x8c\xda\xd6\xfc\xb0\x38\xd8\x97\xae\xc5\x7e\xaf\x58\x7b\x3e\x0b\xd6\x57\x2d\xb1\x0f\x4f\xf6\x21\x3b\x22\x0b\xe7\x27\xe3\x2f\xf3\x59\x25\xf6\x70\xe6\x0d\xf8\xa0\xae\x7b\xba\x51\xc8\xc2\xac\x83\xa1\x73\xb2\xe8\x64\xc6\xeb\xe3\x59\x11\x16\xe4\xfc\x96\xc2\xb0\x04\x32\x22\xa6\x67\xc5\x9b\xfb\x56\xe0\xd5\x67\x11\x99\xa1\xf0\x1a\x7e\x50\xef\xec\x43\x5d\x8e\x87\xe8\x5d\x78\x6f\x3c\x0b\x07\x3c\x85\x07\xd1\x83\x9a\x63\xc7\xad\xd6\x83\x7a\xe2\xad\x30\x09\x0f\x0a\x80\xb7\x3c\x52\x3f\xab\x13\xa4\x20\xf6\xe2\x23\x1d\xba\x8c\xf4\xf7\x41\xd5\x6d\x1c\xf2\xfe\x0f\xd8\xfd\x41\x0f\x6e\x40\x63\x3e\xe8\xc1\x75\x1c\x21\x3f\x52\x83\x2b\xa8\x01\x3c\xa8\xc1\x8d\x32\x5c\x34\x9f\x9c\x46\x12\x8e\xda\x47\x99\x53\x39\x6c\x8c\x2e\x7f\x6c\xbf\x7e\x46\xd5\xc2\x8c\x30\xc1\xa8\xdd\xd5\xec\x93\x1b\x59\xb9\x57\xe4\xfc\xbb\xf7\xc9\x7d\x9b\xff\x44\xce\x4d\x84\x89\xec\xad\x6f\x71\xcf\xdc\x78\xfc\x39\xd9\xb0\x98\xbd\x9d\x0b\x57\x4a\x29\x29\x17\xc6\xbd\xd9\x3f\x24\xfe\x4e\x73\x96\xb8\x38\xfe\x61\xf8\x17\xcc\x9a\x0d\x39\xf3\x2d\xca\x85\xb3\x32\x8f\x62\x85\xaf\x61\xf7\x7b\xa1\x87\xe3\x06\xdf\x41\x93\xb1\xc6\x43\xbb\x65\xe8\x23\x56\xa6\xd9\xed\x07\xeb\x2e\xc3\x61\x78\xd0\xce\x3b\x59\xff\x36\x88\x46\xa4\x40\x0f\xca\x7a\x77\xe6\xc6\x79\x50\xd6\xeb\x78\x91\x7f\xd0\xd5\x3b\x15\xab\xf3\xf1\x0a\x92\x8e\xef\xc9\x4e\x2a\xd6\x60\xe2\x24\xe5\xec\xfe\xc7\x3b\x28\xf3\x78\x3d\xd9\xd0\xae\xc0\x79\xc8\xc9\x72\x92\x92\x6b\xfe\x90\x75\x2f\x1e\x7e\x4b\x43\x38\x9e\xb9\xe1\xa9\x3e\x28\x02\x9e\x86\x6e\x65\x19\x6e\x2e\xca\x32\xdc\xea\xc2\x0c\xb7\x57\x65\x19\x6e\xea\xca\xb6\x30\x37\xbd\x94\x63\xb8\xd9\x3f\x65\xb8\xc5\x65\xa1\x08\xe6\x50\x36\x2c\x7b\xbe\x65\x19\x6d\x9f\xca\x72\xce\x8a\xcb\x32\xda\xe2\x4e\x30\xda\xec\x2c\xa3\x9d\x1a\x8f\x8e\x6c\x55\x55\x93\xd1\x56\x7f\x65\xb4\x49\xbf\xc5\xd4\x20\x77\x7f\x65\xb4\x45\x13\x37\xb5\xb8\xce\x82\x82\xaa\x7a\x35\x19\xee\x74\x43\xf1\xc6\xf5\x62\x87\x47\xfc\xf3\x5b\x67\x59\xdd\xea\xaa\x42\x78\x78\x7f\x7f\x8b\x03\x15\xcf\xcd\xd4\xfa\x69\xe6\x30\x76\x41\xde\x7a\xb2\x8c\x48\x08\x02\xaf\x3a\x39\x27\x7f\x65\x44\x42\xb9\xa1\xc6\x78\xeb\x49\xf8\xa0\xc7\x78\x6a\xd6\x62\xe3\x44\xac\x08\xe5\x86\xdb\xfc\x53\x95\x0b\xb3\x80\xdd\x85\x19\x51\x76\xaf\x62\x01\x85\x62\x43\xed\xf1\x96\xbe\xc2\xc9\x86\x7f\xd6\xe4\x3d\x16\x84\x44\x6e\xc2\xb1\xa1\xe4\x35\x35\x8f\x9b\xd8\x13\xe8\x32\x3e\xb0\x1c\x3a\xca\xf6\xcf\x8e\x93\xda\xa1\xca\x4e\x2e\x70\x33\xb8\x68\xc7\x2e\xef\x04\xbb\x79\x36\xca\xae\x78\x5e\x78\x76\xe8\x8d\xf1\x20\x7b\x78\x19\x8c\x4b\x05\x5f\xb2\xef\x55\x06\xd7\x12\xca\x60\xb0\xad\x0c\x16\xa3\xca\xf4\xa8\xe1\x8f\x01\x3a\x1f\x22\xa4\xf7\xdb\xdd\x08\xff\xf7\xae\xfe\xf5\xeb\x47\x88\x6c\xbf\x88\xb8\x9a\x95\x39\xd4\x66\x76\x5b\xcf\xaf\x1f\xdc\xb0\x3f\x0a\x69\xce\x2e\x21\xa2\x79\xd3\xcc\xbc\xf0\xbb\x74\x29\x73\x7e\x13\xf4\xf3\x03\xbd\x4f\x18\xb4\x47\x51\xbb\xbb\xba\x13\x31\x49\x58\x7b\xc8\x6c\x64\x44\x8f\xc2\x79\x17\x17\x3b\xb5\x71\xab\x11\xcc\x1b\x2e\xdf\xb3\xdf\xc4\x5b\xd7\x97\xe8\x1b\x7b\x14\xf2\x14\xdf\xa3\x0f\xc4\x29\x7e\x0b\x1e\x02\x05\xe3\x43\xff\x21\x4e\x30\x21\x37\x1e\xa2\x04\x0f\x78\xb5\x0f\x41\x82\xd1\x20\x79\x88\x0a\x1c\x2f\xf3\xe7\x9a\x0f\xe1\xdb\x46\x38\x10\x8b\x3c\xdc\xb1\x2b\xe4\x54\x00\x02\xd3\xde\x41\x00\x1f\x00\xc6\xed\x77\x0a\x75\xf7\xe7\x5a\x17\xf1\x6f\xef\x1c\x7e\x88\x02\x90\x30\xd7\x0e\x0d\x7d\x01\x82\x2e\x08\x9e\x0c\x80\x85\x84\xe2\xec\x69\x01\x50\x7a\x2a\xdf\x9f\xc4\x45\x52\x42\x3b\x29\x00\x59\x32\xe5\x43\xc2\x05\xa0\xa2\x39\x1a\x8e\xe5\x02\x00\xb9\x91\xc7\xb7\x04\xaa\xec\x68\x33\x07\x00\xed\x3d\x54\x34\x03\x00\x29\xdd\xc3\xba\x33\x00\x1f\x74\x6d\x43\xab\x30\x00\x38\x7b\xed\x61\xb4\x78\x00\x76\xdc\x19\xaa\x84\x01\x28\x1a\xed\x9c\x06\xc4\x1d\x51\xc2\xd2\x33\x00\x8d\x38\x18\x21\xba\x09\x00\xfc\x5e\x34\xc9\x02\xf0\x25\x45\x8a\x01\x88\xce\xc2\x7f\x53\x00\xd0\x3c\xbd\xc2\x33\x5d\x00\xe2\xe5\x74\xf7\xd0\xcc\x0f\x80\x74\x76\xe2\x95\x70\x00\x32\x77\x46\x51\x07\x00\xa6\xfc\x81\xcf\x02\x90\x18\x5c\xdc\x39\x01\x90\xc4\xb0\x26\xb5\xb2\x90\x94\xa0\x90\x12\x00\xa4\x21\xe5\xf6\xba\x60\xc3\x73\xa3\xc0\x12\x00\xe1\xc5\x88\x8c\x10\x80\xcd\x32\x04\x76\x0b\xc0\x4b\x3f\xf1\xea\x2f\x5c\x22\xe4\xf0\x8a\x0b\x80\xeb\x3d\x74\x7d\x0f\x00\xb9\xd9\x8d\x34\x17\x80\x56\x7f\xaa\x8e\x8d\x1d\x08\x22\xcc\x00\xd0\x0f\x44\x33\x02\xd0\xac\x97\x01\x26\xe3\x8d\x84\x2d\x00\x6f\xbc\x4b\x66\x6d\x87\x5b\x01\x83\x60\xb6\x02\x80\x3a\x08\x53\xc4\x00\x70\x91\xc1\x72\x05\x80\xeb\x8c\x92\xee\x2f\x60\x53\xa2\x0b\xb0\x79\xf2\xc4\x83\x02\xc0\xd2\x4f\x86\x01\xd1\x0a\xcc\xac\x00\xe0\xc3\xa6\x85\xcb\x50\x00\x78\x84\x2c\xd9\x95\x12\xde\x1f\x56\x55\x00\x1e\x01\x8a\x5a\x91\x03\xd5\x1e\xe1\x5d\x05\xf8\x10\x1f\x41\x3d\x9d\x5d\x1d\xeb\x2e\x01\xd9\xd1\x8b\x66\xec\xc6\xd9\xd5\xa1\x95\xd4\x0a\x3e\x82\xee\x5e\xa6\x7f\xf2\x46\x8f\xb8\x4c\x4d\xd0\x22\x3c\x68\x1b\xd9\x00\x04\x2c\xbd\x26\x0d\x0e\x33\x92\x3e\x9c\xdf\xb2\x69\xae\xc2\x27\xf7\x2e\xf4\xbc\x0a\xe3\xdc\xde\x0d\x11\xc7\x1e\x00\xf8\xa4\x96\x6e\x00\xda\x50\xb5\xfc\xe9\x5e\x89\xd2\x0d\x81\x69\xb8\x0a\x15\xe0\x05\x20\x19\xc0\xee\x0a\xbf\x81\x00\x08\x89\x59\xab\x3b\x89\xac\xa5\xd7\xe6\x12\x50\xb7\xbd\x7a\xbe\xf7\xd0\xe4\x7d\x7b\x8d\xb7\xa1\x5e\xbb\x01\x38\x5a\xe9\x75\xf8\x27\xa8\x6d\xf5\x0a\x36\x5e\x89\x08\x7b\x77\xaf\x42\x36\x89\x30\x51\xf7\x34\xa2\x48\x43\x95\xb6\x2f\xe0\xc3\xec\x35\x21\x9b\x34\x89\x6c\x55\x8b\x70\x6d\x9a\x9b\x9e\x36\x1d\xe1\x84\x35\xf8\x4d\x20\xf9\x00\x60\x73\x8d\xff\x95\x00\x20\xad\xec\xad\xba\x04\xb6\x0f\x3d\x2e\xad\x00\xbc\x65\xa9\xa6\xbd\x93\xa4\xb1\x89\x70\xf9\x00\xa4\x48\x05\x07\x1b\x00\xe7\x20\x22\x7e\x06\x40\x67\x3a\x74\x2a\x03\x30\xd1\x45\xbb\xb9\x8c\x56\x22\x70\x7d\xba\xc2\x67\xd4\x73\xad\xac\x50\x73\xbd\x6b\xaf\xe4\xa1\xed\x16\x81\x85\x04\x60\x19\x84\x17\xf2\xe8\x1b\x37\x7e\x9a\x8f\x3c\x82\xa3\x72\xf7\xae\xa5\xcc\xf2\x98\x5e\xee\xe2\x56\x1e\x5c\x93\x86\x01\x9d\x00\xfa\x49\xf9\x02\x68\xb6\xe5\x2f\x40\xce\x02\x7f\xd7\xb1\x00\xa4\x2f\xe0\x01\xf0\xad\x83\xf9\x88\xc0\x16\x00\xc4\x7b\x48\xfa\x89\x2f\xa3\x3e\x7e\x03\x36\x80\x62\x00\x91\xe6\xba\x66\x3d\x4f\x69\xf5\x74\x0f\x7f\x66\x5a\x19\xb7\x7f\x42\x98\xcb\x3e\x84\xd2\x32\x0e\x79\xef\x3e\x74\x4d\xe4\xa9\x29\x9c\x97\x4b\xf0\xfe\xea\xc3\x53\x38\x79\x81\xf5\x70\x42\x21\x00\x6a\x67\xd3\x25\x84\x5b\x86\xd7\x65\x62\x28\xd0\x87\x67\x0c\x4f\x5d\x77\x0f\x5f\x42\x00\xe2\x62\x25\x7c\x7e\x00\x50\x03\x27\xbc\xba\x00\xf2\x5b\xe4\x9e\x3e\x0a\x51\xd7\xdd\xd3\x87\xbb\xf8\xae\xe9\x0b\x78\x28\xa1\x4a\x97\x76\xe1\xd0\xc6\xcd\x38\x84\x38\x00\xd5\xb1\x16\xa6\xb4\x43\x24\x40\xde\xf0\x66\xfa\xd4\x3e\xcd\x9b\x20\xc8\x25\x79\xb4\x3b\xf3\x8c\x0c\xfb\xc6\x00\x10\x36\xb7\x4f\x61\xbd\x2c\x65\x9d\x91\xa7\x4b\x54\x95\xf0\x04\x6d\x39\xc0\x9d\xc5\x3f\xc1\x62\xb1\x4f\xef\x75\xa4\xa0\x07\xe0\x66\xdf\x04\x63\x9e\x5a\xfd\x42\xfc\xf7\x74\xdd\xda\xb8\x65\x24\x90\x6d\x68\x21\x04\xa0\x60\x8c\x7a\x5d\xfe\x09\x26\xa7\xe3\xd2\x76\x28\xa3\xe3\xf3\x27\x24\x99\x01\x40\x64\x51\x4c\x56\x95\x01\x07\x6d\x5c\xc2\xe0\x45\x41\x05\x7c\x6d\x94\x39\x88\xe0\x72\xe9\x72\x2a\xf2\xf9\x38\x2e\x11\x0d\x45\xee\x69\x08\x43\x78\x00\x8b\x8e\x8e\x70\x48\x1c\x00\x9e\xae\xe3\xd6\x94\x96\xf5\xa6\xc4\x7d\xbb\xc4\x1b\xcb\xae\x5b\x04\x50\x91\x9a\xe7\x30\xfa\x28\x9b\xb8\xc1\x79\x8a\xba\x2b\x7b\x48\x4f\xb0\x8e\x2f\x20\x06\x7b\xff\x06\x60\xf3\x75\x0b\xad\x97\x3d\xf1\x4e\x70\x6b\xcf\x95\xbd\xf0\xc4\x70\xbb\xeb\xfb\x91\x5c\x46\x77\x45\x25\x26\xff\x3d\xc2\x39\x09\x00\x9c\x7a\xdc\x5a\xa7\x3a\xc2\x88\xfe\x00\xfe\xa4\xe6\x1f\xa5\x71\x43\x3d\x6e\x11\x43\x95\xb8\x94\x07\xe0\xfa\x3a\xf3\x7b\xeb\x9e\xae\xc4\x13\x3c\x80\x2a\x80\xac\x0d\x6f\x6d\xea\x2a\x37\xfd\xc3\x14\x78\x9d\x09\x4d\xef\x4b\xa7\xbe\xce\x8c\x81\x6f\xba\xfd\x93\xe2\x12\xfe\x49\x23\x04\x43\x4a\x06\xe0\x7d\xb5\x98\x68\xaf\xf2\x43\xd6\xbd\x99\xea\x24\xf0\xc6\x88\x80\x09\x00\x88\x55\x9b\xb4\x57\xaa\x5c\x85\x34\x4d\x6f\xc5\x5e\xfa\xee\x7a\xa1\x04\x00\x36\xab\x48\xe3\x6a\x8b\xe6\xa4\x5d\x5f\x31\x42\xbb\xf3\x4c\x2e\xb1\xb1\x2e\x4f\xda\x5d\x15\x7b\xb2\x03\x68\x06\x60\x59\x1a\x1e\xd2\x02\x80\x86\xff\xf0\x19\xaf\x1b\xdc\x3b\xc2\xdc\x06\x00\x75\xe4\xcb\x25\x44\x45\x5c\xd9\x80\xc1\x1c\x67\x8f\x7e\x2b\x32\xa0\x69\xf6\xba\xe1\x41\x8c\xec\x9e\x6e\x45\xe7\x0b\x4e\x42\x00\x88\x71\x36\x4c\xc4\xd7\x2d\x5f\x9a\x59\xa8\xa5\x22\x60\x3c\x00\x57\x2a\xc7\x86\x39\xbb\x8e\x37\xc1\x3a\x4c\xc4\xd7\x2d\x67\x57\x39\xfb\x27\xb8\xa1\x1a\x39\xbb\xa7\x8a\x73\x91\x85\x8d\xda\xb8\xd8\x40\x59\xd8\xa8\x8d\x0b\xff\x7c\x59\xa8\xb6\x8d\x5b\x75\x54\xff\x84\xf0\xe5\x23\x24\xee\x01\x18\x3c\xe1\x9a\x08\xf0\x36\x38\x5c\xe5\xd6\x7b\xac\x0d\x1c\x0f\x8f\x3c\xfc\x93\x05\x7a\xca\x22\x1a\xda\xc0\x58\xe9\x0a\x03\x94\x03\x50\x90\x8d\x91\x85\xe2\x1a\x1e\x81\xef\x51\x74\x6d\x34\xbc\xbf\x9e\x47\xcd\x25\x00\x2f\x94\x51\x34\x41\x6d\x65\x01\x3c\x38\xfb\x24\x09\x89\x69\x00\x2a\xdc\xb0\xf6\x1b\x00\xf6\x29\xd5\x75\xa0\xb5\x55\xc2\x81\x64\x00\xba\x2a\xf5\x04\x2d\x1d\xca\xe2\x09\x32\xe7\xab\x08\x73\xb4\xb5\x98\xe4\xa2\x4b\xb2\xd9\x04\x35\xe4\x4a\x01\x40\x76\x8b\xfb\xfc\x03\x90\xfe\x77\x2f\xda\xb8\x6d\xdf\x78\x3e\xa9\x7a\x5c\xb5\x9d\x10\xac\xa4\x2f\x40\xa3\xad\x42\xf9\x0d\x16\xd0\xdd\x2f\x2f\x83\x77\x61\x4d\xae\x14\x99\xcf\x30\x8d\xde\x36\xf6\x08\xa3\x8a\x64\xec\x0a\x38\x8f\x67\xe3\x00\x14\x90\x54\xb0\xca\x01\x60\x81\x5f\x75\x15\x77\x91\x48\xa3\xdd\xf7\x17\xb0\x01\x5c\x06\xb0\x94\x4d\x28\xa8\x13\xea\xe4\x1e\x4d\xc7\xa3\xcf\x9b\xc8\x28\x4d\xd8\xa1\xcf\x41\x4f\x9b\x76\xf2\x01\x54\x00\xae\x43\x46\xe4\xad\xb8\x8e\xa5\x48\x2c\xdf\x56\x16\x46\xf2\x4d\x9b\xbf\xe3\xd6\xf4\x26\x72\x29\x00\x8e\x58\xd3\xda\x76\x1c\x5b\xde\x44\xce\x3c\x80\xa5\xa0\xd6\x4d\xf4\x5f\xc7\xbd\xc4\xa1\x65\x35\x41\x8b\x66\x09\x19\x12\x80\x0f\x2b\xd7\x44\xfd\x77\xd9\xff\xe0\x40\x25\x00\x8a\x12\xd4\x85\x83\xfa\xbe\x08\x66\x97\x3c\x1f\x1b\xd7\x45\x98\xb8\x05\xa0\x4a\xe9\xaa\xb9\x44\xe3\x98\x76\x1d\x8f\x0e\x1b\xf1\x00\xfc\x13\x3d\xcf\x87\x4e\xd4\x10\x83\x67\x74\xe1\xa0\x31\x12\xd8\xa1\xe7\xfc\xe7\xfb\x6b\x8c\xc9\x63\xca\xf4\xf5\x18\x72\xc3\xdd\x35\xbf\x83\x40\x7f\x07\xe0\x06\xf0\xeb\x87\xeb\xcd\x03\x98\x42\x3f\x5d\xd4\xe2\x50\xf0\x93\xd1\xf5\x44\x19\xb3\xe2\x38\xca\x14\xf8\x98\xdc\x02\xc3\xc4\xf2\xc0\xaf\xee\x01\xe8\x27\x76\xf1\x32\x74\x93\x0c\xdc\xb8\x1c\xc0\x6d\x80\x42\x8e\xdd\xfe\x49\x28\x84\xde\x25\x69\xdf\x1f\x80\x62\xa4\xaa\x15\x9f\x72\x13\xcb\x63\x0d\xc7\xb3\x73\x09\x24\x05\x63\xe8\x0e\x1c\x6b\x2a\x5a\x91\x87\xbf\x1c\x1b\x54\x98\x62\xac\xad\x70\xa5\xda\x5e\x63\xc9\x13\xb2\xc9\xe9\xe1\x1b\x6d\x34\x8f\xe5\x51\x34\xe4\xee\x66\x1f\x07\x51\x51\xa5\xe0\x81\xde\x44\xc4\x8f\x5d\xd8\x08\x43\x84\xde\xd8\x55\xfd\x12\xdd\x32\x76\x57\x28\x9d\xe1\x2a\x42\x1c\x76\xa6\xa3\x7d\x01\x34\x32\xbe\x00\x05\x07\x17\xf1\x32\xb6\xe3\xb2\x4e\x57\xba\x35\xc7\xd3\x95\x6e\x64\x41\xdd\x05\x5e\x8a\x12\x24\xda\x65\x18\xf9\x4c\xe1\x1a\xc5\x40\xbd\xc7\xd4\x32\xcd\xb1\xe4\x28\x42\x7b\x7a\xce\xc4\xd8\xa6\x78\x2e\x73\x76\x14\x72\x4d\x5d\xdb\x73\x7c\x1e\x22\x44\xe4\xdb\xf9\x1e\xb3\x1a\xf0\x92\xc7\x13\x4d\xf1\x9c\x6f\x55\x2a\xec\x2c\x8f\x5e\xf7\x30\x41\x3e\xd7\x94\x36\xbb\x4e\xf0\xdc\x15\x6e\x6a\x77\x4f\x77\x97\xf5\x47\x52\x1d\x52\x2c\x9c\xa1\xec\x02\x00\xb5\xf6\x2c\x74\x3d\xf7\x94\x26\xaa\x50\xdc\xdc\x4b\xca\xe3\xd9\x95\x6e\x29\x35\x17\xd7\xb1\x6d\x63\x52\x0c\x90\xd9\x50\x75\xc7\x30\xf4\x9b\x57\xff\x02\x66\xff\xaf\x80\x35\x2e\xe9\xa6\x8a\x88\x5a\xe3\x92\xe1\x9b\x36\xd4\x1a\x69\x48\x87\xbc\x08\x90\xa5\xf0\xab\xf9\x58\x0a\xbb\xdf\x53\x72\x1d\x4b\xc4\xb3\xd0\xe4\x52\x80\xba\x69\x0e\xe4\x9a\xb2\x27\xba\x75\x26\xd7\x24\xb8\xf8\xbc\xc5\xc5\x5c\xd3\x2a\x9f\xa2\x88\xd6\x1c\x68\x80\x64\xa1\xb8\x35\x89\x65\x3b\x6f\x91\x48\x6b\x11\x68\xa3\xdc\xc2\x40\x1b\xcf\xc8\x37\x0e\x9f\x01\x70\xe1\x0f\xad\xed\x01\x80\x48\xf5\xb2\xde\xd3\x7a\x26\xf3\x77\x09\x98\xb8\xda\xa7\x7b\xbe\x51\x44\x48\xe5\x0b\x08\xc7\x63\xd7\xad\x27\xee\x01\xc0\x09\xd5\x91\xdb\xb8\xd4\x4d\x97\xc7\xb2\xe7\x47\x3c\x11\x9d\xd2\x8d\x07\xdc\xbb\x5c\xad\x7c\x01\x3c\xfa\xb4\x71\x0f\x00\x37\xd7\xe9\x5b\x02\xe5\xaa\x5b\x48\x6b\xe3\x40\x36\x5d\x77\x6f\x5f\x40\xe8\x39\xdc\xdf\xe1\xa3\x16\x51\xee\xee\x3a\x88\x41\x77\xdd\xf3\x37\xe0\x81\xac\x70\xc7\x1e\x14\xf6\xd2\xf5\x2d\x11\xe4\x4d\x6e\xf5\x5b\x02\xfd\x36\xcb\x05\x36\x8e\x37\xd3\x65\xf4\xb1\xe5\x07\xf3\x4a\xed\x5b\x02\x9d\x03\xd3\xe5\xef\x59\x91\xab\x0e\x91\x59\x9f\x81\x8a\x6c\xb9\x85\xd5\x3f\x13\x73\x84\x6c\xd4\xf8\xc1\x9f\xfb\x5d\x92\x8e\xd8\x23\xa7\xa2\x35\x8f\xf1\xff\xbb\xbe\x4a\xf9\x9f\xb7\xd7\x23\xf7\x9f\xe6\x9f\x3c\xeb\x92\xd1\xbb\xd8\x47\x0f\xde\x3a\xbb\xaf\x88\x47\x5d\xce\xb3\x7e\x7f\x21\xb2\x77\xfc\x06\x0c\x18\xe2\xdf\x9f\x20\xf5\xf3\xa6\x7f\x16\x91\xd0\x72\xbf\x7f\x03\xc0\x4e\x42\x02\x0f\xbe\x29\x4f\x37\x92\x01\x08\x68\xcd\x93\x79\xd6\x4d\xb3\x7e\xfb\x1f\x00\x6b\x9a\xbe\x25\x68\x65\xe4\x6f\x1d\xa1\x32\xd4\xbf\x3d\x8f\x58\x56\xbd\xe7\x6f\x5e\x3e\x1a\x34\xb5\x07\xc0\x58\x93\xdb\x48\x52\x84\x6b\xdf\x9f\x60\xfb\xd3\x45\x3a\x3d\x2b\xa1\x25\x60\x26\xce\x83\x2b\xc6\xd3\x2d\x8f\x35\x13\xe5\xec\x6e\xdf\xfc\xfe\xaf\xfc\xb9\x07\x07\x87\xbd\x4d\xcf\x05\x5e\x0c\x8b\xe5\x3c\x0f\xae\x0a\x4f\x2f\x7e\x97\x88\x7e\xb6\xfe\x6d\x23\x14\x75\xdb\xef\x02\x5b\x4e\xf7\xdc\x28\x8c\x92\x6c\x1e\xe0\x01\x20\x07\xbb\xee\x2f\x00\x4d\x9a\xef\xec\x15\x4d\xc6\xb7\xe3\xf8\xd1\xb3\xe4\xec\xc1\x93\xde\xa9\xc2\x80\x2a\xad\x80\xda\xbf\x00\x48\xaf\xef\x0a\x54\xed\x8c\xe1\xb1\x37\x44\xeb\x7e\x1f\x5b\xd3\xa6\x5c\xdf\x8e\x76\x29\x52\xb5\xf6\x05\xf0\x2a\x6f\x6e\x56\x9a\xf7\xa9\xfd\xef\x63\x19\xfd\x63\xfd\xdb\xff\xf3\xf9\xdb\x5f\xe9\xfa\xf5\xf3\x57\x3d\x03\xff\xdb\x5f\xf5\xfd\xeb\xe7\xaf\x1e\xc1\x4c\xfe\xf6\xd7\x2b\x9d\xb1\x9c\x7f\x67\x9a\xce\x9c\xbc\x62\x61\xcf\xbf\xd0\x73\xea\x01\x79\x01\xc1\x77\xd5\xdf\xfe\x7a\xe5\xf3\xd2\x38\xff\x6a\xe8\xfd\x06\xa4\x07\x04\x46\xd5\x75\x20\x67\x93\x9d\x7f\x10\xbf\x07\xb2\xf8\x15\x7e\x20\x72\x40\xf8\x95\x5c\x97\x1f\xc8\xe6\x57\xa1\xb0\x75\x56\xe0\x15\x06\x05\xe7\xdf\xc4\xbf\xea\x69\x3f\xde\xdb\xe7\x5f\xf4\x31\x08\x9b\xd7\xa6\xf6\x08\xa3\x7d\xa3\xc8\xf8\x0a\x8d\xde\xf3\x2f\x7e\x1b\x7e\xe5\x5f\x21\x1a\x3f\xff\x08\xe5\x15\x90\x06\x24\x8e\xf3\xe9\x7b\xb8\x34\x39\xff\xf8\xdd\xc1\x9e\xaf\x78\x6d\x9e\x7f\x1f\x60\x29\x60\x4f\xc0\xf0\x4d\x12\x44\xdb\x2b\x54\x3d\xcf\xbf\x4d\xb9\xd3\x42\x78\x8b\x38\xff\xe4\x28\x1f\xd8\x00\x16\xd7\x4f\x88\x95\x5e\xe1\x95\xe1\xaf\x17\xe1\x52\xc3\x34\xe3\x15\x4a\x71\xe7\xdf\xe9\xca\x45\xa9\xf5\x02\x14\x98\x3b\xb4\xa0\x5f\xe1\xd7\xe0\xfc\x3b\x7b\x24\x54\x75\x5f\x0f\x8b\x04\x01\x19\x0a\x83\xaf\xf0\xed\x7d\xfe\x45\x65\xe7\xd5\xf3\x0a\xae\xf9\xf9\x17\x28\x3c\x54\x98\xdf\xf1\x16\x3f\xff\x5e\xc0\x7a\xc0\x3e\xc0\x68\xb4\x8e\x03\x3b\x7b\xf6\xfc\xab\x51\xdd\x0c\x50\x0b\x50\x70\xeb\x63\xef\xbe\xc3\xb0\xf8\xfc\x8b\xae\x9d\x55\x7e\xdf\xd1\xb5\x77\x38\xd4\xbd\x03\x5d\xbe\x03\xef\x9d\x7f\xb4\x79\x6e\x8e\x77\x58\xc9\x9e\x7f\xb4\x19\x4a\x2a\xf7\x0e\x65\x1f\x12\x0f\x5e\x9b\xe7\xdf\xfe\xfa\xa4\x11\x5e\x92\x49\xdc\x07\xdd\x35\xa0\xb1\x9d\x23\x11\xa1\xd2\x86\xa0\xd3\xd0\x15\x5d\x08\x68\xd8\x14\x93\x88\xa0\xe4\x38\xda\x4f\x23\x78\x59\x24\xe6\xaf\x9f\x99\x05\x4e\x43\x0d\x86\x28\x7d\xa2\xc8\x94\x46\x3d\x78\x8f\x44\x89\xd2\x55\xe0\x66\xf0\xfa\xf5\x33\x09\xc7\x7b\x72\xdb\xe0\x4f\x94\xbe\x01\x7b\x30\x71\x0d\x22\x7d\x8a\xdc\x32\x78\xff\xfa\x19\x98\x7d\xa5\x11\xea\x7f\x24\xc2\xf5\x5b\x68\x5c\x9c\x9c\x4b\x87\x7b\x0a\x1c\xe0\x24\xa8\x37\x12\x98\x4f\x0a\xda\x0c\xed\x44\x8d\x2a\x82\x0f\xc3\x27\x70\x2a\x0f\x86\x1e\x89\xfa\xeb\x67\x64\xcd\x61\x68\xaf\x91\x40\xb7\x66\x4c\xc1\xbb\xe1\xa1\x48\x6f\xe8\x36\x94\xbb\x20\xa0\x21\x14\x26\xc1\x81\xf9\xc2\x9b\xe1\x11\x83\xea\x16\x74\x19\xba\xc3\x12\x1e\xa8\xd7\x3d\x02\x5d\xdd\x09\x1d\xe4\x93\x75\x1d\x28\x6c\xd7\x8b\xba\xe3\x31\x4b\x22\x94\x87\xab\xa0\xc5\xd0\xd0\x02\x45\xe7\x35\xc1\xcf\x22\x11\xda\xb9\x59\xd0\x65\xe8\xa6\x34\x53\x18\xa1\x71\x48\x6c\x76\x2c\xb5\x87\xc2\x0d\x09\xe6\x4a\x1b\x2b\x42\xa7\x93\x58\xbf\x7e\x30\x1e\x49\x23\xf4\x6c\x49\x7c\x62\x44\x85\xda\xc1\x10\x91\x28\xb8\xce\x55\x79\xcf\x78\xe0\x8e\x71\xab\xf2\x8f\xa7\x3c\x44\x8e\xe3\x56\x1f\x3f\xde\x42\x1f\x78\xfa\x38\x13\x3c\xd9\x8f\xe1\x21\xd7\xc1\x9d\x5e\x1a\x8f\x37\x3f\x62\xb7\x86\xd3\xbd\x44\x9c\xd1\x48\xc4\x79\xab\x06\xeb\x08\x11\x82\x73\x10\xeb\x30\x4d\x1f\xa1\x99\xd0\x30\x0a\x15\xcc\x93\x1b\x02\x4f\x14\x5f\x12\xe0\x40\x8f\x91\xc0\xa8\x24\x74\x05\x4f\xf6\x25\x78\x78\xfb\xc1\xd8\xe3\xe4\x9a\xc1\x60\xc5\xd0\x09\x4b\x33\xbb\xd1\x3c\x80\x17\xc1\xa7\xe1\x20\x5b\xfc\x1c\x9e\xec\x16\x3c\x2e\xdc\x0b\x3f\x0c\x27\x5b\x0d\x8f\x9b\x11\xc3\xcf\x34\x8b\xeb\xc7\x58\xb9\x74\xaa\xaf\x06\xe3\x57\x16\x57\xce\x69\xd6\xf5\x16\x78\x7d\xce\x21\x2d\x8c\x29\x1e\xed\x24\x72\xa8\x87\x31\x61\x6d\x08\x1c\x0c\x8b\x81\x8d\x54\x42\xf8\x47\xa2\x46\x25\xf4\xb0\x7b\x44\x48\xa5\x1a\x0e\x4a\x13\xb1\x0c\x49\x44\xe5\x5a\xa4\xe1\x1e\x86\x2a\xef\x48\x1a\xe7\x10\x66\x98\xb0\x09\x1a\x4e\x3d\x13\x81\x0c\x49\xbc\x03\x19\x59\xd5\x17\xaa\xe3\x7f\x45\x88\x7c\xd2\x0c\xad\x3a\x12\x81\x4f\x30\x74\x4c\xd3\x07\x96\xc0\x70\x67\x03\xd2\xd7\xb7\x57\x31\xc4\x64\x03\x37\x6a\x09\xf7\xc1\x24\x82\x08\xc1\x73\x5d\x5a\x5d\x38\x0f\xd7\xa0\x07\x1e\xf3\xb9\x7c\xd6\x16\xba\x6c\x06\xbf\x75\x78\xe4\x9d\x2a\xe1\x99\x25\xad\x8f\xd0\x01\x6e\x9f\x0e\xd6\x8b\x5e\xee\x60\xed\x92\x78\x43\x74\x67\xe0\xeb\x16\x1c\x75\x6a\x1c\xe6\x24\xcc\xb1\x48\xa0\x6f\x14\xea\x6b\x09\x43\x19\x12\xf5\xd7\x4f\xc1\xdf\x57\xc2\x3a\x85\x44\xfa\xf5\x53\x6a\xa6\xd5\x47\x1b\x7f\x3f\xb2\xbd\xe8\x02\x17\x83\xeb\x57\x21\x3f\x8f\x8b\x65\x3c\x89\xf4\xeb\x07\x45\xe2\x93\xa9\x86\xf6\x5f\x3f\xa1\x13\x10\x99\x21\xe8\x69\x02\x54\x73\x32\xc5\xd0\xfa\xeb\x87\x08\xfb\x27\xd3\x0c\x8d\x7d\xc0\x58\x4e\xf6\x5b\xc7\x04\xd5\x4e\xe0\x3b\x0b\x1e\x4b\x94\xb0\xf6\xcb\xe3\x66\x0f\xe7\x01\x2e\x28\xb4\x99\xdc\xeb\x74\xf6\x2a\xce\x60\x4f\xa6\x18\xda\x7e\xfd\x74\x62\x09\x9e\xdc\x34\x38\xdc\x93\xa1\x08\x7c\xb2\xdb\xf0\xd7\xaf\x9f\x56\xb2\xa0\x6f\x43\x3f\x67\xe8\x82\x2e\x75\x23\xd0\x03\x5e\x28\xf3\xc8\xee\x46\x10\xa5\x28\xb3\x9f\x4c\x37\x74\xc5\x65\x97\x05\x7e\x1b\x1c\x15\xdf\x01\xd5\xfd\x7a\x12\xa0\xcc\x41\xe9\xbe\x05\x87\x96\x6d\xb8\xe0\x3d\xd9\x65\x38\xe5\x0b\xf3\x3a\x96\xca\xc3\x7a\xbc\x6e\x0d\x72\xac\x65\xf8\x99\x3f\xb4\x66\xf3\x18\x5b\xe3\x09\x05\xee\xde\x6e\xc0\xa1\xf1\x4b\xe2\x10\x01\xd8\x7c\x9d\xdc\xcb\xe0\x40\x82\x38\xc6\xcd\x63\x79\xfc\x30\xf8\x2e\x82\x18\x65\xdf\x6d\x27\x11\xe5\xbd\xd9\x96\x3b\xb9\x20\x5a\xcb\x68\x82\x17\xc3\x47\xf4\x86\x39\x58\xee\x24\xe7\xe1\x22\xe4\x7a\x1e\xdb\x73\xb6\x03\x97\x5e\x45\xe5\x5f\xde\x2b\xd0\xeb\x37\x11\x32\x4e\xf6\x23\x78\x60\xb6\x1b\x5f\xe5\x27\xbb\x0c\x8f\x20\x42\xf8\x88\x3e\xd9\x47\xf0\xe8\xe6\x8d\x0f\xe3\x93\x1d\x86\xcf\x80\xdf\x49\x70\xd7\x1f\xec\xc3\x7b\x6a\x36\x5f\xbb\x18\x1e\x6e\x9e\xf0\x65\x7a\xb2\xdf\xf2\x41\xd3\x4e\xad\x6d\x38\xf7\x23\xd1\x80\x4f\xc1\xb7\xe1\xaf\x80\x6b\xfa\x43\x61\x30\x12\x93\x76\x8b\xea\x99\xd5\x70\xea\xa9\x6c\xd7\x8f\x4f\xf5\x87\x0b\x34\xdf\x02\x0f\x83\xe3\xee\x9f\x49\xe0\x8f\xc1\xe1\x34\x48\x93\xf0\xf1\x5e\x08\xca\xa2\xb7\x4b\x95\x78\x09\xc3\x12\x67\x60\xd8\x9b\x47\x70\x14\x49\x8c\x98\xfa\xa0\xce\xf2\xac\x3a\x65\x13\x47\xe4\x72\xf0\x94\x09\xb8\x45\x02\x05\xae\xd0\xd2\x97\x14\x9f\x44\xe5\xdd\xdf\x80\x83\x92\x4f\x22\xd8\x9f\xd8\x8b\x9f\xec\x23\x38\x82\x40\x9c\x34\x16\xc4\x5e\x24\x6e\xe0\x09\xf8\x56\xfd\x61\x8b\x9d\x6e\xec\xd7\x0b\xe6\xc5\x91\x38\x5b\x17\x7d\xd7\xc8\x6d\x83\x31\x35\xe8\x01\xd6\x42\x9d\xc4\x2b\x6a\x51\x2f\xdf\x60\x84\x93\xc0\xa5\x57\xbb\x04\x7f\x1b\x1e\xfa\x16\xe8\xa5\x97\x1d\x1e\xe2\x48\x84\xb3\x3a\x88\x94\xb2\x1f\xf7\x3e\xde\x69\x07\x5e\x81\x2f\xf5\x3e\xf4\x82\x0b\x44\x5d\x35\x6e\x3f\x09\x06\x1b\x96\x08\xd5\xcf\x9c\x0a\xd2\x4d\x37\x38\xb8\x8e\x9b\x9b\xe3\x24\x52\xc0\xc3\xcc\xa1\x8e\xc4\xbe\x3c\x89\x12\xf0\x42\xfd\x69\xaa\x9e\x24\xb5\xdc\xa0\x1a\x4f\xf6\x11\x7c\xd1\xcd\x22\xf8\x32\x3c\x98\x82\x37\x61\xcd\x4e\x76\x19\x2e\x6d\x5e\xda\xcd\x63\x02\xcf\x11\x7e\xf0\x36\x98\x1d\x78\x12\xcc\x4e\x65\x58\x65\xa8\xfb\xe1\x8a\x47\xb7\xe7\xc9\xbd\x0c\x0e\x76\x77\xa8\x75\x9c\xac\xab\x29\xaa\x26\x8c\x11\xea\x28\x90\xc2\x27\x31\x80\x4f\xc1\x5d\x1e\x0f\x82\x84\xa7\xaa\x3c\xba\x48\x9c\x5e\x42\x08\xd5\xd1\x38\x84\x95\xb7\x12\x9c\xc8\x8f\x14\x3b\x48\xec\x03\xce\x54\xd2\xb6\xfa\x1e\x8e\x36\x0a\x7e\xd2\xeb\xe8\x53\x33\x8f\xbe\xc3\x24\x22\x51\x45\x8b\x95\x44\x50\x10\xb9\xd6\x3f\x93\x53\xd5\x58\xbf\x82\xf5\x0f\x9e\x62\x2a\x26\xfb\x56\x2a\x23\x05\xfa\xb1\xc2\x66\x25\x81\x19\xe4\x64\x01\x96\x87\x16\x66\xfb\xe9\xe6\x52\xa9\x63\x79\x86\x16\x11\x3c\xd4\xd9\x05\x51\x76\x12\x31\xa1\x38\x53\x3d\xd9\x65\xf8\x46\x69\x39\x07\x7c\xbb\xd9\x30\x61\x46\xe5\xea\x53\xc7\x6b\xa8\xf8\x8b\x10\xf5\xd8\x65\xd4\xf1\xf2\x7a\x05\x56\x4e\xb7\x67\xfa\xb5\xb6\xe1\x2f\xe0\x74\xe7\x33\x54\x3e\xf0\x5e\xba\xf1\xa0\x5f\x51\xaf\x25\x11\x3c\x27\xbc\x64\x55\x14\x01\x49\xc4\x69\x81\x5e\xae\xf3\xd2\x68\x67\x38\x5c\x2b\xf8\x42\xab\xf3\x02\x93\x9c\x04\xd5\x30\x2a\x94\x75\x49\x7c\xa2\x1a\x26\x79\x66\xde\xc0\x27\x71\xf6\x09\xfc\x82\xea\x77\xc1\x49\xa0\x05\xcd\x68\xa7\x77\xf3\x0c\x59\x7b\xba\x09\x03\x5a\xa7\x38\x06\x27\xd1\x4f\x35\x2c\x15\x9a\x7f\x24\x08\xf3\x3b\x68\xb5\x83\x97\x2b\xa1\xd4\x0f\x3c\x26\x67\x0e\x90\xfe\x49\x04\x09\x8a\x47\x95\x8a\x3a\x3b\x89\xd8\x39\x38\x2d\xaf\x73\x0a\x35\x10\x85\xfb\x50\x73\xd4\x33\x97\xca\x13\xb9\xfa\x06\xcf\xd6\x39\xb7\xe1\xb1\x03\x0b\xce\x49\xea\xf4\xd6\x99\x0b\x86\x75\xb9\xe9\xe7\xf6\xec\xe0\xe1\xf9\x86\xd0\xaf\x44\x56\x25\x81\x42\xf3\x4d\xfd\x22\x01\x2a\x51\x52\x4f\x79\xea\x7f\x79\x1e\x14\x3b\x94\xa0\x89\x95\x08\xa0\x24\x02\xef\xe3\x5a\xab\x12\xb5\x93\x44\x68\xc7\x63\x6f\x78\xb2\xdd\xf0\xf1\xeb\xa7\x60\x95\x7d\x72\x6f\x83\x03\xc7\xe0\x32\xba\xce\xf7\x50\xf7\xa5\x3b\x8b\xdb\x8c\x4a\x70\x46\x12\x28\x9b\x27\x86\xa5\x67\x7b\x55\x84\x41\x39\x4d\xa8\xd3\x7b\x90\x00\x76\xa5\xc4\xbd\x52\x89\xdb\x46\x22\xf8\xe9\x84\x21\xab\x2b\x69\x8b\xaf\xc4\x16\xc7\xf5\xcd\xc9\x2e\xc3\xd1\x60\x0f\xea\xf6\x64\x1f\xc1\x91\xd5\x61\x40\x5e\x57\x82\x5e\x3b\x09\x66\x93\x3d\x4b\xa4\x1d\x12\xa8\xa4\x83\x3a\x57\xe6\xde\xaa\x04\xd4\x29\x15\x2c\x46\xc4\x1a\x12\x6c\x86\x20\x07\xeb\x32\x46\x5d\x81\x51\x4b\x68\x9a\x9c\x9c\x46\x85\x19\xeb\x29\x1e\x7b\x6a\x55\xc3\xab\x54\xe5\xd9\xcb\x44\xa5\x20\x71\x10\x30\x86\x9a\x75\xf5\xa5\x4e\x12\x7e\xbf\x14\x6e\x45\xac\x10\x49\x9c\x03\x57\x59\x2a\x8c\xf7\x48\x54\x1c\xcf\x30\x97\x4b\x97\xd9\x5a\x52\x07\xbf\x98\xb3\x2d\xec\x85\xc7\xee\x52\x39\x28\xb8\x40\x26\x71\xc0\xc4\x55\xaa\xeb\x0d\xc9\x57\xf1\x1b\x7c\x17\x8c\x9c\x2b\x9e\x76\x49\xc4\x55\x59\x32\xe5\x3f\x90\x9a\x55\x9e\x6e\xef\xa2\xa9\xfc\xe8\xfc\xa0\xab\x76\xe0\xcc\xcd\xe3\x39\x08\x05\x9b\x74\xe3\xf7\xa1\xee\x4b\x3b\x01\x47\x9e\x05\xb3\xa7\xba\x2f\xa1\x58\x5c\x35\x16\x8c\x99\x2a\x0e\x01\x49\x48\xd9\x9e\xe2\x62\xc8\x54\xdc\xfe\xa5\x9b\x37\x65\xdd\x59\xbd\xc1\xa7\x5e\xba\x31\x3c\xaf\xf8\x20\x8b\x04\x66\xae\xa5\xd3\x9b\x0a\x27\xb5\xe2\xcb\x2b\xdd\xf8\x59\xaf\xb8\x8c\x22\x71\x28\x50\x77\x7e\x4c\x35\x8b\x7c\xbc\x60\xad\x5b\xd1\x2f\x20\x71\x70\x1d\x1c\xb2\xba\xa7\xe6\x72\x4f\xcd\x25\xa7\x64\x4f\x5d\x04\x5b\x86\x76\x35\x28\xd9\x8a\xf5\x08\x09\xb4\xf6\x59\x42\x48\x40\x12\x67\x83\xc0\xf3\xac\x7e\x9d\x57\xbf\xce\xeb\xc5\x60\xb7\x50\x0e\x6a\x7b\x05\xfe\x5e\xc5\x7b\x09\x09\x44\x18\x6c\xbf\x2d\xfe\x5e\x45\x3e\x5f\x30\xf6\x92\x46\x1f\x89\x19\x60\xc6\xf4\x12\x91\x82\x3d\xdb\x5d\x2a\xf8\x6f\xfb\x72\xdb\xba\xdc\xea\x4d\xab\x6f\x5d\x03\xf8\x4b\x28\x5d\x13\xfc\xf6\x02\xbe\x59\xc0\x0a\x9a\xdb\x62\xe4\x9d\x44\x4c\x59\x05\x81\xec\xc7\x53\xf9\x4c\xc1\xb3\xe0\xc9\x70\x14\xfb\xc1\x67\xfb\x99\xc3\xf0\x19\xbe\xde\x04\x5e\x9a\x32\xf4\x50\x3a\x26\xcd\x6d\xdc\xf4\xf2\x24\x3a\xce\x98\x7b\xc0\x93\xe1\x29\x7a\x4f\x54\xef\x66\x3a\xb0\x41\x07\xa6\xbb\x06\xdb\xf6\x64\x3f\x86\x3f\xc0\x2b\xf0\xad\x6a\xe2\x25\x5e\x42\xd4\xf2\x69\x68\xa7\x91\xf8\x1c\x70\xe0\x89\x36\x84\x9d\x4e\x22\xf0\x84\x3b\x53\x19\x53\x83\x07\x5f\xc6\xe8\x7f\x26\xb1\xda\x68\xdc\xdb\x27\xc1\xcc\x8d\x2c\x78\x36\xbc\x00\xa7\xaf\xcd\xad\x37\x68\x68\x8e\x62\x1b\xdd\xf5\x74\xd5\x33\x6f\xc1\x3f\x86\x33\xe6\x49\xfd\x1d\x5c\x7a\x12\xf8\xb7\x8e\xb3\xd2\xc6\x18\x1a\x45\xd8\x88\x14\xe2\x51\x34\x08\x40\x12\xe7\x42\x21\xc0\x40\x1b\xcb\x53\xb4\xa8\x1d\x0f\xf5\x6d\x2c\xf7\x12\x9f\x4e\x21\xe7\x3e\x39\x4f\x74\xe8\x2c\x9e\xe2\x43\xf0\x8f\xe1\x54\x93\xa8\xfe\xc5\xfd\x70\x12\x61\x08\xd0\x3a\x93\xf0\x1e\xaa\xfe\x8d\x2f\x82\xda\xe9\xe5\x67\xa9\x9e\x0f\x6a\x27\xf8\x8d\x6b\x43\xbc\xac\x66\x13\x0c\x18\x68\x6d\x3c\x4b\xf5\x3f\x78\xba\xc3\x9a\xb4\x8d\x67\x6b\x12\xb0\xfd\x9b\xd8\xf0\xb6\x99\xb4\xc4\x33\xe1\x7e\x0f\x0f\x58\x6d\x26\xf5\x5f\xcc\xe0\x52\x63\x3f\xb7\x99\xa1\x93\x4f\x22\xea\x27\x72\x45\x9b\x08\x2b\x23\x71\xff\xfa\xa9\xb8\x77\x6a\xb0\x86\x49\x2c\x82\xe8\x53\x4d\xd1\x9a\xcc\xc2\x7e\x0e\x85\xc1\x93\xe5\x94\x9e\x44\x3d\xd5\x54\x15\xdf\x2f\x83\xdf\x14\x8f\xd1\xce\xa6\x59\x9b\xb1\xb7\x2a\xbe\x04\xda\xec\xee\x4c\xa7\x33\xea\x7b\x77\xe5\x1d\x14\x80\x7d\xf1\xc9\x7e\x0c\x67\xad\x26\x73\x20\x8a\xaf\x41\xf1\xa5\x1b\xf3\xd9\x36\x75\x7d\x9e\x44\x3b\xd5\x4f\xa6\x60\x4e\x4d\x4d\xf0\x8a\xee\x12\xd6\x4a\x27\xcb\x95\xd2\x60\xe5\x56\x9c\x8a\x9d\xdc\xcb\xe0\x37\xa6\x3a\xaa\x66\xbb\x78\xbc\x94\x1b\xac\x9a\x36\x97\x67\x1e\x75\xd9\x89\xcb\xa6\x36\x17\xd8\xf4\x24\x02\x0f\x62\x4c\xdc\xe6\xf6\xdc\x84\x1b\xab\xa4\x10\x37\x6d\xbe\x90\x0a\x35\x82\xbd\xd7\x3b\x53\x5c\x9c\xdd\x86\xb9\x49\xe5\x61\xda\x08\x8d\x4c\x22\x66\x3e\x4c\x8e\x3e\x8d\x10\xa6\x24\xe2\x61\xdd\xe2\x61\xdd\xd6\xcd\x03\xb7\xad\x1b\x74\xda\xc3\xae\xbe\x2d\xef\x33\xe9\x4e\xf4\xc1\xe4\x10\x06\x93\xc4\x06\x4e\x79\xbd\x70\xa5\xa4\x9c\xee\xce\x79\x58\x19\x6a\xb5\x29\x2e\x63\x1f\x49\x70\xf7\x27\xab\x3f\x6c\xc0\x55\x0d\xaf\xea\x0f\xc8\x68\x75\xe1\xd9\x85\x7d\x60\x69\x95\xfe\x74\x9d\xb7\xd5\xc1\xd7\xf8\x46\x6f\xcb\xd8\x42\xfe\x1d\xfa\x50\x79\xdd\xb8\x4d\x8e\x03\x0a\xe6\xd2\x6d\x49\xe2\x75\x12\x81\x17\x08\x99\xde\xd6\x82\xbc\x6d\x10\x55\x77\xc1\x1b\x45\x5b\x6b\xa9\xfe\x75\xd6\x41\xf1\xce\x1a\x81\x7b\x48\xdc\x54\x93\x05\xff\x18\xfe\x00\x8f\xcd\x43\x6c\x1c\x12\x1c\x67\x55\xbf\x79\xaf\x36\x02\xd7\x9c\xf2\x4c\xf3\x86\x7c\x39\x09\x86\xd5\xa9\xe7\xe5\xee\xbf\xd4\x7d\xb0\xe0\x7a\x0d\x2d\xef\x0b\x13\x2c\x42\x92\x36\x22\x45\x90\x98\xa7\xfb\xa0\xf0\x25\xee\x4e\x83\xf8\x3b\xdd\xa1\xfa\xcf\x54\x35\x1f\xa8\xa3\x91\x28\xff\xf1\x2c\xe0\xdb\xe6\x1e\xe0\x6a\xa2\x1b\x90\xd8\xa7\x7a\x6d\xaa\x8f\x5b\x8d\xe8\x02\xa7\x38\xbd\x7c\x74\xd3\xac\x87\x9b\x66\xe4\x26\x78\x37\x1c\x4b\x2e\x6e\x88\xf5\xe8\x48\xc8\x3d\x7e\x27\x9c\x5b\xc3\xd7\x3a\x89\x12\x5e\xe2\x3a\x60\x15\x97\x53\x72\xf9\x37\x6d\x5b\x82\xaf\x86\xef\xe5\xbb\x20\x71\x6d\x38\x10\x26\x41\xf5\x8c\x76\xfb\xa2\xdc\x8d\x07\x2e\x4c\xd0\xb6\xa7\x16\x51\x2a\x8f\x7d\x32\xdc\x2d\x1e\xc5\x49\x04\xee\x25\xf2\x46\xdb\xd3\xdd\xc4\x1f\x45\x27\x18\x46\xc3\x2d\x1f\x89\x78\x6f\x13\xe8\xb2\x99\x2e\x6b\xd0\x65\xb5\xb0\x86\x26\xcb\x9a\xd5\x26\xeb\x25\xb8\xab\xd9\xaa\x06\xb4\xb9\x25\x30\x3d\x89\xd0\x45\xeb\xea\xfe\xe3\xee\x6b\x96\x71\x98\xdb\xc7\xcd\xd6\x3f\x89\x60\xf5\x81\xf0\xfa\xc8\x74\xff\x24\x82\xfa\x08\x45\xac\xc8\x56\xc3\x43\xdf\xa5\xde\x94\xaf\xec\xcd\x93\x08\xaf\x34\x71\xd2\xfb\x68\x9c\xdc\x93\x08\x1d\x57\xbc\x9d\x75\x5f\xff\x9d\xeb\x3f\x89\x75\xdc\xc7\xe0\x26\x3e\x89\xd7\xaf\x9f\x0a\x73\xb7\x8f\xc9\x0e\x3f\x7b\x23\x1c\x54\xd5\x24\xb8\x7b\x83\x35\x4b\x41\x61\xa2\x8f\xe9\x66\xa7\x9a\xad\x74\x67\xba\xfa\x70\x49\x99\xc4\x81\xee\x63\xbb\x1e\x9d\x44\x82\xab\xf4\xf1\xe2\xf1\xd5\x91\x72\xdf\xa5\x8f\xf2\x67\x62\xab\x0f\x54\x6f\x22\x81\xf5\x59\x63\xd4\xa8\xd5\x44\x82\xc5\x0c\x34\xdf\xc7\x7b\xa8\xbb\xc1\x39\xaf\x88\x7c\xfa\x78\x7b\x6d\xde\x1c\x48\xa2\x78\x9c\xac\x8b\x6b\x74\x9d\x6a\xc4\x47\x3f\x09\x66\x23\xc8\x8c\x0e\x47\x3c\x12\xf1\x54\x2c\xc4\xb8\xee\xf3\x62\x6f\x9d\x44\x70\xae\x46\xe0\xb7\x3e\x2f\xae\x8b\x3e\x75\x8d\xe0\xbf\xb0\x4f\x3d\xc3\x4e\x22\x8e\x18\xd1\xda\xce\xc9\xa1\x5d\x04\xe0\x77\x19\xc1\xd1\xea\x33\x81\xc7\x4e\x22\x62\x9b\xe1\x63\xb8\x4f\x5d\x0b\x27\x71\x28\x81\xa6\x6a\x0a\x78\xe9\x24\xb0\x18\x4b\x34\x5b\xb5\x68\xb3\xe2\x63\x1b\xff\x9b\x27\xfb\x36\x9c\xf2\x99\x7a\x9a\xb6\xe2\x0c\x05\xf9\xda\x93\xc0\xd0\x8a\x27\x11\xc4\x1c\x71\x87\xfb\xec\x53\xa3\xc5\xae\x7a\xdc\x86\x6f\x95\x0f\x5f\xb1\x95\x97\x4f\x37\x5d\xd2\xa1\x4b\x2a\x4a\x20\x32\xed\x20\xd1\x08\x32\x50\x05\xdf\x86\x63\xf5\xc6\xce\x9a\x92\x8b\x9d\x44\x3a\xd5\xc4\x5b\xa0\x63\xcd\x4a\x22\x9c\x8d\xe3\x70\xb1\x63\xc3\x4a\x62\x44\x71\x5a\x15\x3b\xeb\x24\xa2\x96\x5e\x04\x1e\x06\xaf\x00\xc7\xa9\x98\x92\xfb\x9e\xc4\x9b\xca\x19\xe9\x9a\x6a\x34\xa8\x96\xda\x27\xf3\xab\xdb\xef\x24\xc2\x4d\x35\xbe\xfd\x4e\xb6\x18\x1e\x87\x62\x34\x55\xe3\xed\x81\xcf\x52\x29\x6b\xf4\xb9\xb6\x7a\x13\x8c\xd5\x8a\xe7\xd0\x3e\x25\x3d\x3e\x89\x70\xe1\xad\x33\x0a\xc7\x8b\xc4\x21\xe4\x42\x99\xf5\xe4\xb6\x6a\x0f\x0e\x57\x85\xc4\xe8\xf3\x3d\xb4\x09\xde\x44\xa5\x24\xcc\x63\x9f\x7a\x70\x9e\x44\xa7\xf6\x2e\xb8\x56\xfb\xcd\x59\x20\xa4\x7b\x37\xe7\xeb\x24\x22\x54\xd0\xa5\x75\xfa\x78\xce\x3e\xb8\xe0\xe5\xbd\xd3\x4d\x82\x75\x48\xb0\x3a\xc0\x77\xf3\xd1\x51\x9b\x98\x58\x0f\x22\x97\x75\x02\xd1\x93\x08\x34\x4b\xcc\xe2\xbe\xa4\x69\x72\x12\x11\x5e\x04\xa7\xeb\x7d\x65\xc3\xa5\x4f\x8a\xf7\x9c\xbe\xb2\xf6\xc7\xca\x18\x90\xc0\x54\xee\x4b\xc2\x81\xae\xc8\xc6\x13\x51\x65\x5f\xd2\xcc\xea\x8a\xb3\x5b\xf0\xad\xd3\x57\x73\x3d\xe1\xf8\xba\x12\x90\xb5\x63\xcf\x48\xe2\x8d\x29\x64\x6c\xa8\x35\x84\xd0\x08\xcb\x59\x11\x30\x76\xfc\x68\x91\x88\x25\xbc\x83\x2d\xd8\x97\xb7\x25\x7e\x8d\x2a\xf2\xc5\x4e\x60\x42\x12\x74\x86\xcd\x4d\x2c\x3e\x12\xd1\x19\x36\xc2\xda\xae\x65\x53\x4b\x65\x48\x46\xae\x44\x69\xab\xc4\x9c\xea\x4b\xc2\xce\x93\x60\xe6\x07\x7d\x79\x0b\xd9\xac\xb0\xff\xac\x53\x13\xfc\x11\x2a\x26\xea\x51\x4a\xa1\x13\xfa\xe9\xeb\xf1\x90\x1e\x0d\x09\xd4\x4d\x94\x1b\x12\x0b\x78\xec\xb3\x2d\x25\xbc\x4e\x38\x91\x94\x6e\xea\x27\x5e\x07\x89\xf0\x2d\xc9\xfb\xb9\x13\x61\x83\x44\xec\x27\x5c\xf4\xf4\x2d\x3d\x9f\x93\xc0\x96\x11\x24\xb7\xb3\x2e\xca\x9d\xd1\xb5\x27\x3a\x57\x27\x56\x03\x09\xc1\xa9\xdf\x48\x74\x0b\x89\x12\xaa\xa5\xef\x36\xd4\x6e\xc3\xc3\x80\xe6\x01\x27\xe4\x24\xc2\xdb\x3c\x3a\x22\x27\xfb\x36\x3c\x9c\xc7\x13\xab\xa8\xef\xce\x33\xeb\x24\xe2\xfe\xe7\x8d\xd8\xf7\xd4\x1a\xee\x70\x92\xd5\xc2\xb4\xec\xd3\xb7\x28\xee\x8e\xb7\xe6\x7b\xa0\x48\xd8\xf1\xd6\x4c\x62\x9e\xe2\x45\x60\x51\x1d\x7b\x1d\xe4\xd0\x6e\x4d\xce\xf2\xa4\xc5\x6b\xaa\x11\x24\xab\x6f\x91\xed\x1d\x69\x68\x4a\x48\x52\x3a\x52\x4e\x12\x9f\x28\x2e\x30\xaf\x82\x93\xb8\x0f\x58\x33\xf9\xf6\x4a\xe1\x15\xb1\x08\x83\x6c\x63\x8a\x1d\x98\xa2\x69\x23\x6c\x3d\xc9\x4e\x02\xc3\xd5\x61\xf8\x30\x3c\x46\xa4\xfd\xf1\xf6\x7a\xbc\xb5\x1e\x93\x21\x3d\xba\x33\x71\xdc\xd8\x6e\xd0\x8a\x39\x53\x5d\x9c\xa9\x7a\x69\x39\x1e\x57\x83\x13\x81\x09\x67\x61\x58\x6d\x65\xa0\xb6\xd2\x08\x62\x77\x72\x8f\xc0\x41\x39\x24\xb4\x31\xc6\xc8\x88\x57\x4e\x22\xfc\x89\xe2\x6c\x74\x8c\x0a\xce\x3d\x89\xd3\x1b\xe4\xc0\x27\xd7\x0d\x0e\xbe\x2b\x6e\x42\xc7\xe8\x4c\xfc\x49\xc4\x0b\x02\x17\x5b\x27\xab\x66\xe3\x2a\x6d\xf8\x3b\x1c\xd6\x19\x39\x89\xa0\x03\x90\x42\x0c\xeb\x8c\x9c\x44\xa8\x72\xcf\xfc\x67\xe2\x6a\x58\xc6\x38\x90\x31\x36\x24\xee\x03\x17\x4c\x24\x42\x24\xd9\x35\x34\x69\x56\x0e\x34\x2b\x5b\x56\x57\xf5\xa0\x1f\x08\x13\x1b\x12\xee\x61\xcd\x91\x93\x08\x7c\x4c\x1c\xc7\x31\xf4\x9e\x3f\x89\x40\x17\x38\xb8\x1c\x63\x2d\xb5\x8a\x4b\xef\x4e\x1c\x9a\x93\xed\x86\x63\x57\xdb\x29\xff\x1a\x82\xa3\xa8\x3d\x8a\xa6\x42\x42\xc4\x81\x10\x31\x25\x9e\x9a\x63\xbc\xbc\x60\x81\xf5\x1a\x02\x93\x81\xeb\x15\x12\x0f\xc5\xa9\x46\xb7\xe1\x80\xa2\x4c\xc9\xc3\xfa\x70\xd7\x9e\x44\x98\x2a\x96\xa0\x00\xc7\x94\x64\xfd\x24\x12\x76\xb8\x97\xe0\xd3\xf0\x05\x3c\xea\x9f\x69\x09\x9e\x08\x6d\x48\x00\x91\x31\xb3\x86\x35\x33\x61\x60\x61\x2a\x9f\xec\xc7\xf0\x07\x2b\x5e\xda\x2d\xb0\x41\x4e\x22\x53\xbe\x03\xd7\x70\x67\x89\xe1\xe2\x09\x75\xcc\x02\xc5\x71\x12\x18\x03\x67\xaa\x11\x3f\x7f\x4c\xf8\xf9\x09\x27\x7f\x27\x7b\x1b\xce\xb0\x0a\xdd\x69\x9c\xa2\x93\x60\xda\x42\x72\x3f\x10\x36\x92\xc0\x2e\xb8\xd2\xae\xb4\x3b\x4e\xa2\x62\x51\x7c\x09\xfe\x36\x9c\x69\x9e\xb4\x3b\x5d\xcf\x24\xe6\x7d\x51\xf9\xc9\x6d\x3e\xa0\xd7\x92\xc2\x79\x0f\x73\x8f\x06\x94\x59\x43\xcd\x78\xc0\x33\x22\x81\xdd\x72\x5c\x65\xc3\x04\xd6\x10\x81\x55\xaf\xd1\x05\x9f\x86\xaf\xa8\x46\xe0\xad\xde\x2f\xae\x32\xd4\x91\xc6\x7c\x6d\x55\xff\x22\xca\x15\xd2\xb9\x01\x8f\x89\x04\xf6\xc2\x20\x93\xf9\xe1\x8a\x38\x89\x46\x79\xc1\xbd\x58\x1f\x3c\x03\x85\x4b\x9a\x93\x5d\xaa\x1f\x7f\x40\xd5\xb3\xf6\x08\xc9\xcc\x87\x18\xfa\x2d\x51\xcf\xc3\xd5\x77\x12\xa1\xd4\xc7\xe4\xaf\x9b\x2b\xe2\x24\x98\x4c\x8e\x16\xbc\x2a\x12\xc1\x72\xeb\x1c\x21\xdc\x3f\x91\x08\xeb\x06\xfc\x54\x8f\x95\xd5\xfd\x95\xcf\x6a\xb6\x1a\x94\xd4\xc9\x6d\x83\xe3\x55\x81\xde\xf2\x58\x59\x6b\xb8\xc2\xf6\xa3\xa1\x47\x34\xcc\xca\x1a\x62\x65\x55\x3c\x3c\x0f\xfc\x98\x91\x78\xe8\x0d\xd5\x14\xde\x03\x27\xc1\xa4\xb1\xd5\x56\x71\xf5\x58\xe8\x54\x1e\x39\x63\x15\xa1\xa9\x15\xe1\x8a\x5a\x53\xe7\xdb\x54\x2f\x1b\xa1\x91\x90\x11\x0d\x9c\xd8\x92\x78\x87\x9b\x3e\x7a\xe3\x0d\x4b\xb4\xf7\x94\x10\xbf\x8c\x25\x15\xf5\x81\x47\xd5\x03\x67\x8e\xa5\x48\x7e\x12\x41\x25\xd7\x64\xf8\x32\x3c\xd0\x51\xcd\xcc\xc2\xd2\x12\xae\x08\x52\xd0\xf0\x22\x38\xf0\xbb\x46\x82\x66\x0b\xd5\xbc\x3d\xf5\xf8\x0c\xab\x5c\xf3\x83\x50\x9d\x24\xf2\xaf\x9f\xd6\xd9\x80\xcb\x58\x6a\x09\x4b\x35\x50\xfb\xfa\x08\x1b\x11\xb7\xb3\xf5\xa0\x2d\x06\x41\xc4\x48\x04\xc9\x5e\xbb\xe0\x90\x28\x83\xe8\x5f\x07\x1e\xd5\xec\x04\x2d\x72\x12\x0c\x36\xf8\xd5\x27\xfb\x36\x3c\x1c\x86\x07\x93\x75\x6c\x6c\x88\x22\x11\x9d\xe4\x4e\xdc\x59\x53\xb3\x33\x5e\x19\x3b\xe0\xa2\x99\xdf\x65\x84\xb6\x69\x90\x45\x63\x77\x2d\x2b\x71\x4c\x5a\x9f\x34\xd9\x79\x19\x0f\xa2\x92\xdc\x13\x86\xe6\xb0\x3a\xd9\xd8\x5a\x3f\xe4\x1c\x27\x3b\x0c\x9f\xe1\xbc\x51\x60\xdd\xc3\xc4\xed\x68\x61\xc4\x77\x72\x42\x7f\x1b\x27\x17\x43\xf3\x8b\x58\x92\xc4\xa0\xf6\xd8\xab\x56\x3e\x1b\x52\x3e\x9b\x83\xdd\xb4\xa7\xab\x9f\xd0\x57\x88\xc9\xc6\x96\x99\xc1\x49\x64\xe0\xf4\x7e\x6b\xb9\xb1\xf9\x4d\x29\xdc\x7c\x7d\xc6\x16\x7f\x72\xe0\x94\x3f\x25\xa4\xbd\x03\x27\x97\x24\x6e\xe0\x0c\x4b\x14\xd9\x80\x22\x4b\x09\x65\xd7\xb1\xdf\xee\xcf\x5b\xfd\xa9\xb4\xfb\x5e\x2e\x7f\x36\x42\x1b\x5a\xd7\x8f\xab\xc7\x45\xf7\x84\x2d\x3a\xf6\xc7\xfb\xe3\x43\xb4\xc0\xf0\x85\xf3\x19\x5b\x24\xfe\xc0\x17\x5a\x53\xa4\x93\x71\x41\xd8\x9d\x44\xdc\x79\x48\x4b\xa6\x35\x83\x4f\x82\xd1\xe2\x76\x7c\xdc\x8c\x76\xa2\xad\xd6\x26\x31\x2d\x46\x66\x69\x4f\x82\xbb\x04\x97\xeb\x43\xf8\xe6\x24\x02\xcd\xe1\x7f\x73\xa2\x8d\x4b\x22\xae\x4e\xc5\x7e\xc3\x5f\x0f\x09\xa2\xb3\xe3\x21\xde\x0c\xb8\x09\x03\xee\x1e\xf0\xb6\x27\xf2\x3b\x12\x85\x38\x68\xf7\x9f\xa9\xac\x39\x1a\x0f\xd6\x09\x07\xef\xae\x8a\xf6\x69\xf9\xdf\x44\xfe\xd7\x14\xf1\x77\xe8\x19\x31\xe5\xf3\x6c\xc0\xca\x9e\x56\x14\x9b\x28\x8a\x9d\xd6\x3b\xf0\xa5\xd9\xe8\x38\x8a\x26\xa4\xc3\xe8\xdc\x64\x27\x11\x73\xad\x18\xb7\x08\x0f\x49\x7c\xa2\x38\x73\xa1\xc7\xc8\x49\xb4\xf0\xaa\x4a\x67\x86\xa7\x5a\xa7\x08\x77\xb0\x73\x8c\xa9\xa9\x1b\xec\x2b\x84\x32\x27\xdb\x0c\x67\xea\xbe\xe5\x5f\x86\xc7\x45\xd9\x09\x01\x30\x86\x3b\x3f\x88\x8e\x89\x10\xe7\x64\xb5\x64\xa1\xdc\x79\xe0\xec\xa0\xe1\x6e\x8e\xad\xf2\x4c\xce\x74\xfd\x53\xf5\x13\x9d\xc2\xdc\xcb\x89\x0b\x9a\x03\xa7\x9f\xa2\x59\x27\x34\xeb\x68\xd5\x60\x57\xb3\x71\xc4\x40\xd8\x16\x6b\x2f\x9f\x04\xd3\x40\x9c\x81\xa1\x67\xf8\x49\xc4\x05\x3a\x09\x7b\x30\xf6\x10\x3c\x02\xa3\xdc\x55\x81\x8a\xc6\x76\x37\xb7\xba\x89\x6f\xfb\xf1\x76\xfd\xd0\x0b\x9d\x17\xd2\x1c\x1f\x6f\x91\x0f\x34\x34\x17\xf4\x1c\xa2\x0b\x26\x46\x3b\x5d\xe1\x96\xc7\x67\xab\x9a\x8f\x66\x47\x1b\xfd\xf1\x2a\x3e\x5a\x45\xa2\x5d\x8d\xc7\xab\x15\x3a\xbc\x5d\xa1\x64\xe7\x05\x16\x3f\x89\x78\x93\x4c\x26\x6d\x4a\xe1\xff\x24\x58\x5c\xc2\x17\xcc\xc6\x23\xf1\x24\x98\x35\x42\x2b\x4c\x99\x8a\x9d\xc4\x3c\xd5\x13\xa3\x67\xb6\xf9\x36\x38\x70\x0f\xfc\xa7\x39\x3b\x14\xf4\x49\x04\x92\x51\xf8\xf6\x29\x13\xb2\x93\x68\x94\x1f\x82\x7f\x0c\x7f\xc2\x94\x8f\xde\x0c\x21\x93\x89\xeb\xc6\x01\x7f\x68\x9a\x1f\x38\xcd\x0f\x1c\x84\x0a\x98\xd3\xa3\x9a\xb0\xb7\x10\xb2\xcc\x29\xd5\xf4\x89\x9b\x81\x7e\x73\x0c\xcd\x82\x3b\x89\x19\x0e\x7a\x29\x2d\x4b\x8d\x93\xa0\xf3\xac\xa0\xd5\xc6\x26\x6a\x63\xfd\xd6\x54\x4a\x5d\xf8\x24\xe2\xfe\xe0\x9e\x98\xf3\x23\x8c\x37\x43\x6b\xc8\x18\x69\x7e\xdc\x17\xf9\xaf\x9a\x5a\xa9\x8f\xc7\x4a\xa8\x6a\xf4\x5b\xe7\x14\x5a\x3e\x89\x40\xcb\x30\x70\xe6\xf4\x3e\x98\xda\x07\xa3\x09\xee\xde\x3c\xea\x8d\x62\x5c\x4b\x8b\x78\xca\x70\x7d\x4c\x85\x2d\xbe\xb5\x41\x56\x44\x56\xbd\x8b\xc2\x8f\x8b\x51\x73\x12\x61\x88\x9b\xd8\x7e\x98\xac\x93\x08\x06\x8e\xe2\x69\x5a\x96\x3a\x91\xa5\xf6\x5b\xa1\xfd\x93\x0e\xd5\x4a\x78\xa4\x43\xe7\x7d\x9a\x6e\x9c\xa2\x1b\xc7\x54\x80\xef\xa2\x05\x5c\x85\x6d\xe9\x70\xee\x05\xea\xf6\x24\xa8\x47\x21\xd5\x8b\xf6\xdf\x2a\xa1\xde\xee\xe0\xe4\xc5\x83\x2d\x0a\x20\xaf\x98\xfb\x65\xbb\x1a\x75\x47\xa1\xce\xc5\x1e\x3a\x09\xaa\xa1\x97\x55\xbb\x78\x45\x40\x47\x47\xff\x5b\x0d\x0a\xff\x24\x46\x80\x89\xe9\xec\xbb\x61\xc5\xdd\xe0\x18\x57\xe6\x29\x4e\x78\x8a\xa7\x2f\xb4\x29\x1a\x68\x12\x6a\x21\xa5\xa9\x48\xfb\x46\xea\x88\x77\x7b\x52\x88\x68\xd1\x46\x27\x11\x7d\x51\xf4\x74\xe9\x09\x9c\x04\x11\x1f\x15\xda\xbd\x7b\x44\x04\x5f\x4b\x53\xe1\xc1\x87\x6b\x1f\x0a\x73\x04\x52\xc7\x67\x3d\x09\x22\xbc\x2a\xf2\xf8\xd2\xf6\x5b\x4b\x31\x84\x15\xaf\x7c\xb9\xfe\x90\xee\xa6\x4b\x71\x74\x4d\xf3\x9e\xc4\xd9\xc5\x49\xe1\xaf\x37\x2f\xf3\x93\x78\x02\x4c\xab\xdb\xbb\x29\xdc\xbf\x75\xd4\x3c\xe7\xda\x5e\xbe\x90\xf4\xa6\xa4\x10\x44\x4b\x72\xa7\x89\xc5\x57\x4a\x88\xc7\x4e\xf6\x6d\xb8\x3a\xa3\xf2\xae\xfe\x45\xf5\xc4\xaa\x5b\x52\x41\x3e\x89\x15\x60\xd5\x22\x1c\x04\xab\xb4\x63\x52\x3b\x97\x74\x4b\x4f\x02\x9f\x14\x8a\x64\xfe\xf2\xba\xbe\x14\x00\x95\xb8\x2d\xeb\xed\xce\x04\xb3\xa1\x67\xa2\xbd\xad\xb7\x77\xb6\x38\xef\xf0\x6d\xe7\x7a\x2f\x9d\x90\xb7\x03\xdf\xab\x1a\x2f\x14\xa1\x69\x12\xe6\x51\x73\xc9\x66\xee\x24\xf0\xfe\xa2\x48\xef\x1f\xd7\x1f\xef\x4f\xdc\x52\x47\x4e\xe7\x92\x68\x2d\x28\xe4\xce\xf5\x78\x67\x63\x75\x96\xbf\xa1\xb5\x41\x88\xdb\x9e\x64\x8a\x63\x30\x33\xd6\x7d\xcb\x8f\xcd\x37\x52\xf3\x23\xb8\xbc\xc6\xdc\x8e\x5c\xec\xf2\x0b\xaf\x36\xed\xbf\xd9\x0f\xb6\xf2\x3f\x89\xab\x2d\x9d\xeb\x93\xc0\xd3\x8d\x83\xec\xea\xbc\xed\xa2\x20\xcd\xdf\x28\xb9\x6f\xc3\x15\x02\xdf\x11\x69\xb3\xe0\x90\xa0\x53\xc1\x41\x65\xbd\x7d\x12\xc0\xa7\xc3\xb5\xbe\x0d\x8f\x15\x73\xe8\x53\xcd\xf4\xae\x9a\x69\x05\x3a\x95\xc4\xec\x24\x14\xa7\xd4\x51\x40\xbb\xe1\x84\xf6\xfa\x86\x9a\x64\xd7\xee\xee\x98\xa2\x8e\x40\x08\x0e\xdc\xa8\xec\xe4\x4b\x93\x37\x84\xeb\x76\x08\xc9\x7a\x51\x18\x47\x3d\x2f\x4e\x02\x17\x99\xd9\x01\xff\xb6\xe1\x11\xba\xe7\x1b\xf8\xef\x63\x30\xa1\x82\x14\xc5\x69\x1b\x1e\x66\x59\xbd\x38\x74\x99\xa8\x10\x24\xe8\x29\x3b\x44\xef\xf6\x24\x6c\x62\x15\x15\x87\x2b\xdb\x06\x47\x80\x36\x87\xe7\x1a\x9a\x82\x17\x61\x07\x15\xca\xe8\x25\x54\x87\x1e\x64\xba\x1c\xe2\xe8\x25\x9c\x86\xff\xa8\xd3\xa8\x83\x52\x69\xa1\xe2\x81\x9c\xb2\x03\xaa\x89\xf7\x3c\xf7\x9b\x48\x5f\x8a\x7e\xf9\x5e\xcd\x60\xe2\x29\x39\xec\x91\x6a\xff\x68\x7e\x15\x6e\x4a\x66\x39\x27\x81\x67\xa3\x46\x3c\x09\x09\x9d\xec\x96\xa5\x16\x47\xdc\x61\xbd\x4f\x82\xf8\x39\x8e\x10\x33\x00\xc7\x7a\x8d\xaa\xf8\x1e\xb2\xe0\x7b\x60\x2e\x8c\xf6\x0d\x83\xb1\x01\x4f\xc5\xd9\x21\x50\xc0\x92\x06\xfc\x49\x84\x11\x5c\x12\x34\x1b\x1a\x7e\x06\x08\xf8\xb1\xa5\xe4\xf5\xb0\x63\x3a\x3a\x12\x0f\x2e\xbe\x48\x0c\x2c\x26\x55\x7c\xbb\x78\x5c\x19\x43\xc1\x1a\x44\x77\x3f\x28\xe6\x4a\xb1\xe4\xf1\x33\xf8\xe1\x19\xdc\xa7\x62\x17\x88\xd4\x3a\x89\x15\xe0\x5b\xe0\x6d\xf0\xd9\x75\xf3\x76\xe9\xb7\xc1\x9f\x28\x3d\x15\xc1\x42\x3d\x09\xb5\xed\xae\x08\x4b\x7b\x8e\x6a\xf0\xb9\x5c\x52\xcb\x2e\xde\x0d\xa7\x2b\x8e\x25\xc1\x8c\x13\xf1\xae\x75\x05\x7b\xe0\x18\x3d\x04\x92\xeb\xc3\x61\x23\x96\xa1\xc1\xdf\x56\x2c\x88\xa5\x7e\xbc\x34\x18\xc5\x81\x10\x34\xb4\xc1\xc7\xed\x80\x10\x8f\xa0\x21\x12\x95\x14\xef\xd9\x6f\xd7\x11\xba\xe1\x0a\x17\xb3\x45\xdd\x3f\x3b\x10\xae\xe3\x7f\x3c\xda\x52\xfb\x89\x0d\x7b\x7f\x83\x3e\x44\x9f\x49\x62\x00\x7a\x5d\xc5\xdf\xf6\xef\x6f\xf2\xab\x71\x39\x38\x04\x76\xe6\x4a\xc6\xef\xe4\x50\xed\x00\x7e\xd7\x89\x7f\xa5\xab\xe5\xef\xef\x7e\xd7\x59\x31\x62\xfc\xdd\x97\xf6\xbb\xce\x88\x9e\x7c\xdf\x5d\x7e\x7e\xd2\xc2\x64\x91\x24\x18\xbe\xc9\xd9\x58\xdb\xf0\x27\x95\xec\xf0\x87\xed\xc7\xaf\xc7\x4a\x29\x39\x71\xfa\xf7\x75\xc7\x17\x34\x98\x92\xf8\x95\xcb\xff\x4d\x7d\xe4\x64\xfe\x75\xfd\xfd\x6f\xff\xe7\xff\xb5\xfe\xfe\x7f\xaf\x7f\xfd\xfc\xbc\xfe\xf3\x1f\xff\xf8\xfc\xdb\x7f\xbc\xff\xe5\xf5\x1f\x3f\xff\xc7\x81\xfe\xbc\x3f\xcf\xbf\xfc\xdb\xe7\x1f\x9f\xff\xf7\xdf\xff\xf3\x1f\xaf\xcf\xcf\xdf\xff\xfd\xef\xe7\x57\xf1\xf7\xff\x05\x00\x00\xff\xff\x9d\x99\xe5\xcd\xd0\x44\x03\x00"); +var _bageb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xed\x61\x8b\x0d\x85\x18\x69\x15\xa9\x22\x87\x45\xab\xed\x56\x4d\x93\x56\xaa\x7a\x30\x78\x1c\x59\x2a\x06\x19\x73\xc8\xdb\x57\x9e\xa1\x74\x0f\xd1\x84\xcf\x9e\x1f\x63\x3b\x6f\xbb\x53\xe7\x5d\x84\xfc\x6b\x98\x86\x33\x46\xb0\xce\x9b\x80\xcb\xb4\x86\x01\xa1\xc7\x9b\xf3\x59\x26\x0b\x30\x6e\x88\xff\x1e\xa9\x0c\xa3\x9e\xb3\x2c\x7f\x39\xb7\xe3\xf2\x78\x79\x6e\x1f\x9f\x61\x5d\x70\xd3\xb6\x3b\x9d\xef\x4b\xc4\xb1\xf3\x76\x82\x92\xbb\xcd\x3a\x6f\x09\x00\xf9\x37\xbc\xb9\x25\x86\x3b\x3c\x7c\x36\x53\x8f\x1f\xc0\xa0\x4d\xfe\x16\x0c\x06\xe7\x6f\xf0\xf0\x32\x05\xd4\x72\x1f\x38\xaf\xf3\xfc\x07\x47\xf4\x11\x24\x19\x7a\x43\x35\xcb\xdb\x57\x3d\x7f\xd1\x23\xc2\xbb\xd5\x5c\x69\x8c\x86\xae\x18\x16\x37\x79\x90\xe2\xa3\x10\xf5\x7f\xff\x7e\x9f\x71\xcb\xca\xf2\x4b\x77\x7a\xb3\x76\xc1\x08\xb5\x12\x3c\xe7\xe7\xa5\x3b\xc1\x2f\x09\x52\x40\x51\x7d\x92\xe2\xf7\x36\xf5\xc7\xeb\x64\xf6\x46\x59\xf3\x37\x0d\xce\x04\xed\x6f\x98\x3d\x69\xa9\x8b\x23\xa4\x52\x1e\x41\x89\xaa\x26\xaa\x98\x2a\x22\x45\x54\x33\xd5\x47\x50\x65\x21\x88\x1a\xa6\x9e\x66\x35\x44\x86\xc9\x24\xaa\x8b\x44\x3d\xc7\xf7\x4c\x65\x22\xec\x89\x90\x1a\x0f\x55\xf6\xa4\x4b\x2d\x13\x51\x51\xe2\x50\x13\x29\xa6\x86\xe8\x40\x34\x30\x0d\x44\x0d\x11\x32\x61\x22\x95\xd6\x55\xf6\x9a\xa8\xb7\x44\x32\x91\xa1\x37\x52\x51\x42\x51\x96\x31\x4c\xb4\x2e\xa5\x88\x2c\x13\x37\x52\xbc\xe5\x46\x4b\xf1\x8d\x48\xc7\xb8\xef\x5d\xfa\x9f\x2e\xd0\x7e\xa0\xc3\x1a\x02\xfa\x48\xd7\x87\xce\x2c\x6d\xba\xf3\xb8\x5f\xd0\x79\x9a\x53\x17\xfd\xfe\x06\x00\x00\xff\xff\x5d\xc8\xdb\xa1\xcc\x02\x00\x00"); +func (_bdf bindataFileInfo )Sys ()interface{}{return nil };func _befab ()(*asset ,error ){_cgebg ,_fgff :=_dfdg ();if _fgff !=nil {return nil ,_fgff ;};_fdge :=bindataFileInfo {_ee :"UniJIS-UTF8-H",_ffd :214153,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492958,0)}; +_ggee :=&asset {_da :_cgebg ,_dc :_fdge };return _ggee ,nil ;};func _dbaa ()(*asset ,error ){_afeb ,_ece :=_gbfed ();if _ece !=nil {return nil ,_ece ;};_ggfgb :=bindataFileInfo {_ee :"KSC-V",_ffd :703,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492528,0)}; +_adbdc :=&asset {_da :_afeb ,_dc :_ggfgb };return _adbdc ,nil ;};var _dgab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xd2\xc1\x8e\x9b\x30\x10\x06\xe0\x3b\x4f\x31\xc7\xf4\x90\x82\x01\xe3\x56\xaa\x2a\xb5\xe4\x10\x54\x25\xad\x4a\x9b\x5d\x69\xb5\x07\x62\x4f\x90\xa5\xc5\x58\x06\x0e\x79\xfb\xd5\x8c\x59\x76\x0f\xd1\x84\xcf\xf8\xd7\x78\x4c\x5a\x37\x87\xc6\xd9\x19\xd2\x3f\x61\xd4\x2d\xce\x70\xb3\xce\x04\x9c\xc6\x25\x68\x84\x2b\xf6\xd6\x25\x89\xc8\xc1\x58\x3d\xbf\x3d\x72\xd1\x43\xe7\x93\x24\x3d\xfe\xea\xb5\x9e\xf6\x3f\xe5\xfe\x08\xcb\x84\xab\xd6\xcd\xa1\xbd\x4f\x33\x0e\x8d\xbb\x8d\x50\xc4\xdd\x66\xf1\x6b\x02\x40\xfa\x17\x7b\x3b\xcd\xe1\x0e\xbb\x1f\x66\xbc\xe2\x27\x30\x78\x23\xff\x1d\x0c\x06\xeb\x7a\xd8\xd5\xe7\x56\x6c\xdc\x2e\xde\xbf\xe0\x80\x6e\x06\xc1\x86\xce\x70\x4d\xd2\xfa\xd4\xf9\x73\x37\x20\x7c\xe8\xe5\xc2\x6b\xbc\x74\xc1\x30\xd9\xd1\x81\xc8\x3f\x67\x99\x7c\xf7\x7f\x77\x8f\x6b\x56\x92\x3e\xfe\x6f\x0e\xf0\x24\x40\x64\x90\x4b\x99\x67\xcf\xab\x3f\x9c\x46\xb3\xbd\x25\xf2\xd8\xbe\xb6\x26\x74\xae\xc7\xe4\x5b\x27\xca\xeb\x77\x58\x8b\x28\xaa\xb2\x22\x93\x1d\x1b\x15\x51\xa8\xb2\x60\xd3\xd1\x74\x34\xc9\x66\xa2\x21\x59\x46\x52\x09\x96\x2a\x27\x29\x59\x64\x94\x8a\xe4\x0b\xcb\xd7\x28\x94\x5e\xe6\x2c\x31\xa7\xa2\x9c\xd8\x81\x8a\x39\x8a\x72\x24\x27\xab\x98\xa3\x28\x47\x72\xb2\x8a\x39\x8a\x72\x24\x27\x63\xc1\x42\x85\xce\xa2\x68\xc6\xdb\x59\xe9\x3f\xdd\xed\x36\x6d\xbd\x84\x80\x6e\xe6\x9b\xe5\x81\xd2\x90\xac\xc3\xed\xdb\xf1\xa3\xa7\x5d\xfc\x7b\x0d\x00\x00\xff\xff\x90\x65\xb7\xe6\x67\x02\x00\x00"); +var _ffg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x49\xef\x6e\xbb\x95\x9f\x37\xd7\xa7\x38\x43\x67\xe0\xd4\xe6\xde\xec\x16\x20\x08\x70\x57\x88\x61\x38\x09\xdc\x24\x63\xf2\x6d\x2a\x02\x52\x57\x82\x4a\x1e\xf8\xdb\x07\xe4\xf3\xf0\x94\x13\x04\x38\xba\x93\x7b\x7e\x7f\xee\x97\xed\x6a\xc9\xb5\xc8\xbf\xfb\x37\xff\xfe\xdf\xfe\xfb\xdf\xfe\xf8\xd7\x1f\x7f\xf7\xbf\xff\xe5\x4f\xaf\xff\xfc\xf9\xeb\x8f\xef\x1f\x7f\x7b\xff\xe5\xf3\x4f\x7f\xfa\x6f\x7f\x79\x7d\x7e\xcc\xcf\x3f\xfc\xf1\xb7\xdf\xfd\x2e\xdd\x3f\xde\x7f\x7c\xfd\xf5\xc0\xfd\xbf\xd7\x3f\x8e\x3f\xff\xee\x77\xeb\xf7\xff\xf9\xbf\xff\xd3\x5f\x3f\xff\xf8\xef\x7f\xfb\xfe\xe9\xc7\xc3\x77\xef\xff\xf6\x67\xbf\xfd\xf1\xe3\xef\xfe\xd3\xe7\x1f\xfe\xf8\x4f\x7f\xfd\xcb\x7f\xff\xf1\x2f\xfe\xd5\xfb\x4f\xf3\xf3\x3f\xfd\x78\x7f\xbe\xeb\xef\xff\xdb\x5f\xde\x9f\xbf\xfc\xf1\xb7\x7f\xf8\xf1\x2f\xfe\xc3\x7f\xfa\xf9\xc7\xff\xfc\xdf\xfe\xfc\xe7\xff\xfb\xf3\x8f\x9f\xdf\xfe\xfa\x23\xf6\xdf\x3e\xbf\xbd\xf7\xff\x7f\xf7\x77\xff\xe6\x3f\x8e\x3f\xff\xaf\xe3\x1f\x3f\x3f\xfe\xee\xbf\xfe\xf6\xc7\x7f\xf5\x1f\xfe\xd3\xbf\xfc\xaf\xff\xe5\xef\xfb\xbf\xfc\x5f\x76\xe9\x2e\xfc\x3f\x3e\x7f\xf9\xa7\x3f\xfe\xe9\xb7\x1f\xe9\x7f\xbe\xae\xfb\x9f\xff\xfc\x5f\xfe\xfb\x9f\x3f\x3f\x92\x95\xfc\x9f\xff\xf1\x4f\xef\xcf\x8f\x0b\x94\xe9\xe4\xeb\x4f\xef\xcf\x3f\xfd\x79\xbc\x3e\x7f\x19\xbf\xfd\xc3\xe7\x77\x3f\x7e\xfc\xfe\xba\xfe\xf0\x83\xff\x7e\xdf\xfe\xfe\x0f\xeb\x2f\xff\xe6\xea\xfe\xed\xf7\xff\xf6\xef\xff\x35\x7f\xfb\x77\x57\xf7\xaf\xbf\xff\x77\x7f\xff\xaf\xcf\x5f\xff\x7e\xff\x75\xfd\xfd\xf7\x7f\xdf\xfe\xb5\x7f\xff\xfc\xf6\xfe\xff\xb4\xf2\xbb\x44\xe3\xbf\xfd\xe9\xaf\xef\xcf\x97\xbf\xed\x76\x7f\x9f\xbe\x7f\xf8\x91\xd6\x2f\xfe\xc7\xa2\xdf\xa5\xeb\xb2\xb7\x7f\x7c\xbf\xfe\xaf\xf1\x97\xdf\xfd\xfe\x75\x8f\x6b\x7d\xb9\xfe\x91\xfe\xf0\xe3\xbe\x73\xbf\x36\x88\x3f\xfc\x48\x17\xff\x1c\xfc\x3d\x6f\xf0\xfe\xc3\x8f\xc4\xbf\x3e\xeb\x0b\x7e\xf9\xe5\x8b\xb2\xc0\xec\x80\xbe\xc1\xaa\x26\xf5\x7e\x6f\x60\x45\xb1\x01\xbf\x89\xd5\xc4\x13\x6d\xd5\x55\xd7\x3f\xe7\xfe\x67\xfb\xdd\xef\x5f\x39\x76\x87\x4a\x79\x16\xa0\xda\x52\x62\x83\xfd\xe3\x52\xd7\x8f\x67\x6f\xb4\xb1\x7e\x33\xe3\x02\xf4\xdf\xfd\xfe\x7d\xf5\x5d\x41\xbd\xf3\xef\x7e\xff\x4e\xd4\x56\x57\xeb\x9f\xbb\x5f\xfb\xc3\xec\xbf\xd3\xff\xf0\xef\xba\x2b\x88\x02\x9c\xd4\x17\x55\x38\xff\xf0\x23\x3d\xb7\xe0\x45\x59\x13\x7e\x80\x7d\xc3\xd4\x33\x90\xf6\x12\x15\xc5\xf5\x08\xbf\x1b\xa6\x6b\x43\xa6\xfb\x79\x04\xab\xde\x87\xfe\xe4\xfe\x2c\x50\x04\xfb\x33\xfa\x92\xe3\xd9\x55\xdc\x49\x58\x81\x74\x2e\xaf\xd5\x5c\xf0\x11\xde\xeb\x97\x4d\xe0\xa7\x36\x31\x26\x90\x46\x5a\xdc\x1b\x96\x5b\x98\x81\x54\xd4\x3b\xe3\x28\x59\xc8\x6f\x4b\x08\x19\x56\x65\x58\x3d\xe8\x44\x4d\xc2\x55\x73\xee\x82\x41\x19\xcd\xf4\x41\xbd\xb5\x08\x0b\xb0\x0a\xf7\xdc\x46\xa3\x13\x61\x17\x1b\xad\xc6\xfe\x6d\x3e\x80\x36\x3b\x5d\x18\x11\x40\x4a\x87\xf5\x06\xa5\x73\xd0\xdf\xa0\x83\x2f\xeb\x8d\xdd\xa7\x78\x58\xa4\x7a\xed\x8f\xa3\xee\xd2\xfb\x62\x34\x51\x77\xab\xf7\xc5\x00\xa2\xee\x76\x99\xb4\x68\x7b\x5a\x98\xb2\x68\x7b\xba\x99\xb0\xe8\xf1\xda\xbf\xa2\x03\xd1\xe3\x03\xa4\xce\xe8\xd4\x69\x07\xa2\xd3\x62\x50\xd1\xbb\xaf\xdf\x96\x3d\x43\xf3\xb5\x3f\xcd\xf7\xd3\x85\x79\xc3\x7a\x60\xdd\xb0\xdf\xc2\xbe\xe0\x03\xf5\xcd\xd7\xa6\xa3\x48\xa9\x0a\xd7\x52\xe4\xc2\x38\xe7\x6b\x77\x3e\x97\xeb\x34\xf4\xda\x1f\xdf\x07\x7e\x37\xcc\xfe\x16\xde\x29\x3f\xe1\x5e\xe2\x12\x36\xb4\x89\x27\xd7\xc7\x6e\x6c\x1a\x8d\x14\x59\xd8\x76\x69\x3e\x70\x77\xb2\x16\x87\xb0\x67\x2a\xd7\x33\x84\xd8\x92\xa7\xfe\xac\xf9\xbb\x69\x89\x55\x9f\x2f\x49\xa0\x38\x84\xf1\x00\x4f\xe9\xee\x86\xc4\x35\x5f\x9b\x08\x72\x9c\x6e\xb0\x3e\x57\x3b\xbf\x5d\xdd\x28\xe9\x67\x55\xb1\x21\xab\x3e\x5f\x9b\x59\x4a\x3a\xf3\xbc\xe5\x61\x49\x71\x4a\xbf\x9b\x08\x4e\xaf\x36\xd3\x97\xfb\x2c\xd9\x84\x44\x4e\x55\xf3\xde\xb0\xc7\x96\xec\x4a\xe4\xff\x1f\x19\xbd\xbf\x5d\x53\x15\xed\x4c\xe4\xdc\x7d\x7c\xf2\xa9\x69\x13\x46\xbe\x0e\xdc\x9d\x2a\x3f\xdb\xf9\x6c\xd8\xec\xf2\xa6\xea\x52\x3a\x2b\xf6\xde\x74\x54\x1a\x94\x3b\xdf\x9b\xe4\x4a\xeb\x8f\xf0\x01\x36\x61\xde\x30\x4e\xe9\x9a\xc8\xd2\x6d\xf7\xbd\x89\xae\xf4\x74\x60\x03\x9e\x8f\x77\x9f\x15\x79\xf3\xbd\x69\xb0\x28\xa0\xe6\x7b\xd3\x60\x89\xe7\xf4\x6a\x4d\x73\x4d\xae\x18\x94\x5f\x13\x0c\x3f\xdf\xfd\xf3\x87\x1f\xf7\x75\xbb\x80\xef\x4d\x92\xf5\xbe\x2c\xdd\xa2\xbd\xde\xc9\xd2\x4d\xa1\xf5\x4e\x5d\x78\x6f\x78\x3b\xde\x4d\xa1\xf5\xbe\x6d\x37\xd6\x88\x6a\x79\xce\x6f\xd7\x88\x6a\x7d\x1c\xd1\x26\xd8\x5a\x1f\x67\x63\x13\x6c\xad\xcf\x69\x77\x6c\x98\xcf\x6f\xdf\x1b\xd6\x03\xd7\x2a\xd4\x26\x57\xbd\x37\xfd\xd6\x76\xd9\xab\x4d\xbf\xb5\xdf\x36\xb4\x85\x49\xed\xf2\xdc\x7b\x4b\xef\xda\x5d\xfd\xf7\xa6\xee\xda\x9f\x53\x9a\x81\x76\x63\x53\x77\xed\xf9\x7c\xbc\x87\xd0\x9b\xf3\xbc\xc9\xb9\xc6\x7d\x3e\xde\x7d\x8e\x33\xa2\x4d\xdd\x35\x7e\x56\xb5\xa7\x3d\xca\x69\x68\x8f\x28\xe2\xc0\x0f\xf0\xfc\x76\x8d\xa8\x5d\x97\xe3\xdd\xb4\xdf\x2e\xd9\xe8\xbd\x89\xbd\x5d\xfd\x94\xae\x21\xb4\x74\x46\x34\xf3\x86\xa7\xa1\x59\x36\xac\xd6\x3c\xd7\x10\xda\x7d\xc6\xbb\x78\xe1\x4e\x57\x39\x55\xad\x55\x68\x4f\x3f\x55\x8d\x0d\xc3\x21\x6c\x8d\xdd\xf2\xa1\xc9\xcd\x29\x2d\x9f\xe1\x6f\x4e\x69\xf9\x2c\xf7\xe2\x94\x3b\xa5\x7e\x3e\xde\x23\xca\x99\x21\x7c\x36\xa7\xb4\xac\x7c\xfa\x2c\xeb\x22\xb5\x5c\x1f\xe1\x1e\x60\xc9\x45\xf8\x00\x43\xb8\x07\x58\x4a\x12\x16\xe0\xf9\x78\x0f\xf0\x30\xec\x67\x33\x4e\x2b\x52\xce\x67\x33\x4e\x2b\xce\xc6\x67\x33\x4e\x2b\x8e\xf7\xb3\x19\xa7\x95\x7e\xaa\x9a\xc0\xf3\xf1\x7b\x8d\x28\xdf\xa7\xcf\x6b\xc9\x5a\x2f\xa7\xcf\x5f\xa0\xbf\xdd\x8c\xd3\x7a\x3d\x70\x8f\x48\x8b\x62\x7e\xb6\xbd\xd1\xe2\xf1\xb7\x9b\x71\xda\xa1\x9c\xcf\x66\x9c\x7e\x9d\xd9\xd8\x8c\xd3\x2f\xf4\xf7\xfc\x6c\xc6\xe9\x47\xc4\x7e\x16\xe3\xdc\xa9\x2a\xbe\x3e\x5b\x47\x2f\x73\x57\xb8\x46\xd4\xb5\x80\xe6\x27\x26\xf0\x34\xf4\xda\x30\x9f\x9a\xdf\x1b\xf6\xd3\xee\x07\x78\x4a\xd7\x00\xfb\x7d\xfb\xdb\xcd\x65\xfd\x3e\x35\x6f\xb6\xea\xcf\x19\xe0\x66\xab\xfe\x48\xb1\x9f\xc5\x56\x77\xea\xcf\x81\x7b\x80\x8f\xb4\xf1\xd9\x6c\xd5\x9f\xd3\xd0\x66\xab\x5e\xd2\xa9\x6a\x99\xba\xe9\x68\x98\xcf\x62\xab\x05\xcf\xc7\x7b\x08\xa5\xfd\x0d\x82\xff\xb3\x79\xae\xd7\xeb\xfc\xf4\x03\x94\xac\xb6\x46\xe9\x55\x39\xf1\x59\x4c\x76\xdf\x87\x33\x3e\x9b\xc9\x7a\x3d\x8b\xbf\x99\xac\xd7\xb3\x80\x9b\xc9\xfa\x91\x4f\x9f\xcd\x64\xbd\xd6\x53\xf3\x5e\xb1\xda\x1c\xee\xe6\xaa\x7e\xa4\xd7\x67\x73\x55\x6f\x87\xd8\x37\x57\xf5\x76\x88\x7d\x71\xd5\x7d\xa7\x7e\xda\xdd\xd6\xfa\x11\xc0\xdf\xc5\x46\x0b\x86\x70\x0f\xa1\x95\x2a\xdc\x6b\xd2\xec\xd5\x77\xb3\x51\x6f\x52\xf7\x77\xb3\x51\x3f\x2a\xe5\xbb\xd9\xa8\xf7\x74\x7e\xbb\x87\xd0\x5d\xcf\xef\x66\xa3\x7e\x84\xe8\x77\x33\x4a\x3f\xeb\xf9\x5d\x2a\xe5\xbe\x1f\x29\xf4\xbb\x89\xbd\xf7\xdc\x84\xbb\xdd\xee\x4c\x7e\x83\x76\xcb\x29\x2d\xfb\xb7\x5b\xc6\x3c\xf8\x69\x69\x49\x24\xe1\x03\xac\xc0\x10\xb6\x0d\xa9\xf9\xbe\xef\x22\xac\xc0\x2a\xec\xc0\xfd\x71\xdc\xb0\x42\xdf\x22\xe7\x09\xfc\xa4\xde\xb7\x59\xf3\x44\x86\xe7\xfa\xb6\xb6\x9f\xc0\xe4\xef\x7d\x4b\x91\x27\xda\x96\x5e\xbd\x6f\xfb\xf4\x89\x18\xc2\x67\xc3\x09\xfd\xf6\x4a\x43\x18\x4c\xbd\xd7\x2e\xf4\x63\x1a\x7a\xb1\xfa\xbd\xd1\x90\xcb\xdd\x37\x6d\x3c\xe3\xea\xc2\x1b\xb8\x87\xd0\x51\x38\xcf\xb8\x59\xc1\xde\x32\xf0\x54\xb5\x87\x3f\x9e\xc1\x88\x5a\x05\x6e\x79\xdc\x7b\xdb\xbd\x1a\x05\x7e\xed\xdb\x72\x59\x90\xf1\x6e\x2b\xe0\x19\xd5\x9a\xb7\xd8\x78\x46\x0d\x3e\xee\xf4\xaa\xfa\x71\xa7\x57\x15\xf2\xee\x9d\x5e\xf5\xed\x98\xf6\xde\xe9\xd5\x18\xac\x6f\xa7\x57\x13\x19\xd3\x3b\xbd\x9a\xe7\xb7\xf4\xea\x75\xda\xa5\x57\x67\xea\x3a\xbd\x7a\x5b\x73\xd0\xab\x2f\x3c\xd8\xb7\x81\xf8\xcc\x4b\x42\xda\x06\xfe\x33\x2f\xdb\xdd\xf6\xd4\x82\x0c\x7f\x8b\x8d\x67\x3e\xce\xf3\x56\xb0\xcf\xcc\xae\xfe\x76\x30\x9f\x59\x90\x6d\x38\x98\xcf\xac\x7c\x1c\xdb\x88\x7f\x66\x83\x8f\xe2\xa2\xdd\x09\xe3\xc4\x45\xbb\xb8\xc9\x1d\x6f\xf4\x99\x93\x76\xe3\xa2\xdd\x39\x85\x7b\x36\x74\x2d\x7a\x6c\x7a\xce\xfd\x82\x36\x62\xd3\x73\xee\xd7\xb4\xb4\x6f\x98\x86\xed\xc6\x86\x38\xb6\x1d\xa3\x2f\xf7\xa7\x0b\xd3\x86\x19\x21\x13\x5b\x6a\xe6\x5e\x91\x8b\xb1\xb9\x3b\xf7\x08\x3f\xce\x1b\x2a\x73\x22\x95\x0d\xe5\xee\x48\xf4\xea\x3b\x84\x4d\x38\x80\xbb\x57\x91\x1c\xef\x96\x39\x39\x32\xcc\x1e\xf7\xee\x55\xb4\x29\xdc\xbd\x8a\x0e\x01\xa3\xf7\x72\x0c\x3b\xb9\x0d\xd5\x05\x3f\xc0\xdd\xab\x98\x2c\x28\xce\xf3\x82\xfe\xb6\x0a\x99\xc9\xcd\xce\x39\x5e\xce\xf3\xdd\x7f\x25\xf8\x73\xbc\x9d\x8c\x9b\x2e\xbf\x5d\x93\x87\x2e\xab\xd8\x62\x1b\xa6\x79\x24\x68\x30\xb6\x39\x95\x0f\xcf\xa1\xaa\xf3\xb8\x51\xc6\xb1\xd5\x5e\x1e\xf7\x10\xee\x2e\x8f\x0c\xa3\x60\x79\xe7\x51\xd1\xa0\xe8\xf5\x7c\xd8\x28\xb6\x9b\x99\x07\x8e\x6d\xc7\x40\xcc\xa3\x3b\x91\xdb\x42\xca\xa3\x3b\xbe\x4c\xaf\xc6\x64\x32\x32\xbd\x9a\xf6\x39\xd3\xab\x39\x2c\xa5\x57\xd3\xe5\xcd\xf4\xea\x8d\x00\x8e\x4c\xaf\xde\x28\xba\xd8\xe2\x39\xcf\x8c\x4d\x80\xbb\x97\x67\xdf\xe3\xcd\x77\x3e\x90\x01\x6e\x63\x6b\xc1\x37\xa5\x15\x88\xc7\x7a\x5b\x15\x1e\x78\xbe\xb7\x49\xb4\x20\x9d\xdc\xee\x50\x9e\xdd\xb9\x3a\xa5\xc3\x76\xb3\x90\x9a\x0f\xdc\x74\x94\x71\xf7\x16\x84\x70\x8a\x0d\xed\x01\xe6\x7b\xcb\xf2\x3c\x03\xbd\x17\x3f\x61\xc1\x7f\x4f\x42\xe8\x77\x4b\xfa\x05\xf9\x6d\xa5\x57\x11\x78\xf7\xb5\x0a\xe9\x55\x65\xf8\x21\x2b\xd4\x47\xc8\x6f\x9b\xbf\x95\xae\x6a\x16\x32\x84\xe6\xc7\xb2\x42\x6d\x42\x26\xb6\xf9\xf1\x64\xae\x1a\xa5\xa3\x33\xde\xd6\x85\xf4\xaa\x85\x90\x6e\xd8\xee\x60\x0b\xe2\xee\x97\x90\xaa\xfa\x23\x64\xda\xed\xc6\x08\x3f\xb6\x2a\x25\x81\xdd\x18\xc1\x88\xc2\xaa\x90\xd6\xd1\x8a\x90\x9a\x23\x09\xad\x99\xb9\x1a\x83\x9a\xc3\x21\x28\x27\xce\x88\x26\x72\xe2\x8c\x68\x0b\xfe\xfc\x5c\x0e\x01\xd1\x1e\xdd\x9a\xb7\x2a\x73\x53\x65\x41\x88\xbf\xf3\x31\x12\x37\x3f\x48\xcd\x39\xa5\x49\xc7\xcb\xa6\x65\x7e\x10\xa2\x73\x42\xa2\x0f\x62\x72\x4e\xd9\xaa\x67\xa1\xa5\x7e\x2c\x87\xf6\x22\xfc\x52\x4a\x9f\x27\x56\x40\x74\xdb\x1d\x7e\xec\x6f\xf7\x00\x33\x26\xef\x82\x37\xd0\x5e\xa1\xac\xa2\x5b\x15\x16\x62\xb8\x0a\x70\x68\x7e\x6e\x6b\x76\xbc\xae\xc2\xc4\xdc\x08\xa7\x9d\xed\xa9\xce\x56\xda\x82\x89\xdf\xd2\x8d\x17\x76\x4d\x04\xed\x62\x6e\xe4\x07\x11\xe4\xb6\x49\xc7\x7a\x5e\x90\x99\x7c\xfc\xad\x8b\x82\x44\x72\x2b\x24\x3f\x48\xa4\xf9\x72\x51\x14\x05\x2f\xa5\x75\x30\x57\x6f\xb5\x62\x54\xe1\xc3\xc7\x8f\x90\xf5\x95\x36\xde\xca\xba\xa0\x21\xb6\x06\xf2\xa3\x64\xc0\x91\xce\x8f\xdc\x8d\x23\x1d\x97\xcb\x8d\x7f\x9b\x1f\x59\x12\xff\x36\xae\xab\xfd\x52\xf0\xeb\xed\xe6\x47\x49\xf0\x76\x40\xb2\x3e\x4e\x68\x5c\xe8\x48\x9d\xd0\xfc\xd4\x22\xf4\xb7\x5d\xc8\xdc\xd4\x10\x06\xbf\xcd\x42\xc8\xaa\x9d\x9a\x3f\x94\x9e\xaa\x58\x13\x39\x12\xdf\x30\x2e\xd4\xed\xfc\x20\x44\x1f\x39\x12\x57\x31\x2e\x29\x14\xdf\x30\x2e\x49\x12\x67\x30\x3f\x32\x28\xce\x60\x5c\xc9\x5e\xc1\xeb\x4f\x3b\x35\x33\x91\xe8\x66\xbd\xbf\xfc\xb4\x53\xf3\x8b\xd2\x24\x74\x08\x36\x34\x68\x57\xea\xde\xee\xd0\x82\x0e\x61\x32\xfc\xdb\x3e\x6f\x72\x8e\xeb\xb6\x57\x93\xf1\xca\xa0\xb8\x25\x71\x49\xec\x78\x1a\x71\x49\xbf\x5f\xa4\xd7\x23\x67\x7c\x9d\x0d\x59\xe1\xeb\x6c\xa0\x8d\xe7\x97\x6d\xce\x47\x62\xff\x06\x0b\x2a\x75\x7f\x83\x6e\xa0\x8d\xe7\xd7\x11\xc5\x81\x2c\x8a\x9c\xf1\xdd\x7a\x3e\x2e\x59\xe1\x3b\x59\x14\x59\xe1\xbb\x95\x64\x66\x1b\x70\xc1\x07\x68\x37\xa4\x41\x19\xe5\xbb\x99\x3b\x67\xa5\xd7\x77\x53\x5d\x5c\xf2\xcd\x17\xae\xca\x97\x9d\x84\x08\xf3\x65\xaf\x26\xbd\xda\x7a\xbe\xe8\xff\xc4\xb5\xf5\xfc\x82\x37\x1f\x57\x21\x53\xb7\x99\x6c\xc1\x4a\x69\x13\x42\x0c\xdb\x0a\x58\x30\x28\xed\xc2\x09\x0c\xe1\x9e\x9c\xbc\xc5\xe4\x82\x5f\x7e\x5b\x80\x90\x59\x4e\x36\xb4\xe9\x2a\xae\x6c\x55\x6c\x27\xe7\x64\xaf\x06\x73\x95\xac\x79\xb0\x64\xf9\x40\xfa\x5c\x6c\x68\x40\x39\xc5\xf1\x0e\x86\x5f\x1c\xaf\xab\x50\x6c\x17\x31\xc9\x16\x53\xe9\x09\x19\x93\x9f\x4b\xc8\x2a\x94\x2c\x84\xda\x4b\x11\x5a\x73\x15\x7e\xf9\xad\x1f\x07\xab\x5f\x9a\x90\x15\x7c\xfc\x2d\x9b\xeb\x57\xe9\x42\x96\xec\xb1\x2a\x87\xff\xf8\xdb\x41\x9f\x6b\x12\x32\xfc\x7a\x0b\xad\xd9\xaa\x06\x35\xd7\x47\x48\x9f\xab\xbd\x72\xf8\xd5\x6e\xc8\x74\xd5\x76\x25\x24\x69\xe3\xe6\xd4\x22\x4b\x0c\x18\xaa\x71\xd5\x26\xa4\x5d\x89\xe1\xee\xb0\x46\xed\x42\x56\xdf\xe5\xbe\x61\xba\x9c\xab\xd0\x76\x43\xc8\x3c\xb7\x4b\xc8\x10\x1a\xe3\xbd\x1d\x6f\xf3\xb7\x2e\x68\xb3\x1b\x72\x4a\xb3\x5d\x39\xc5\xf5\xbd\xb7\x59\x97\xb3\x2b\x78\x6f\x35\x18\x57\xb3\x5d\x4c\xa4\xec\x82\xee\x63\xce\x14\x57\xbf\x7e\x25\xf8\x4b\x7f\x3a\x9d\xea\x49\x48\x2f\xfa\x2d\xb4\x17\x55\x08\x69\x14\x9a\x7d\x9c\x8c\x7a\x09\xfd\xed\x23\x84\x16\xea\x81\xcc\x6b\xcf\x42\xba\xec\x7a\x3e\xce\x4d\x2f\x42\xda\xad\x07\x32\x91\xdd\x6e\x0c\x26\xa3\x1e\x08\xa3\xf4\x26\x44\x5a\xf7\x2e\x64\x01\xeb\x29\x65\xd6\xbb\x43\x98\xf0\x5c\x38\x84\x89\x24\x70\xf1\x1f\xb9\xaa\x9e\x8f\xf9\x6d\x38\x57\x08\xef\xec\x6a\x67\x6c\xaf\xdc\x1e\x21\x82\xa1\x65\x21\x22\x27\x0e\xa4\xa1\x56\x84\x4c\x4e\x08\xd5\x7b\x51\x85\xc8\xb6\x76\xa0\xed\x32\xa2\xac\x50\x91\x70\x38\x74\x0d\xf6\x85\x16\x6c\xc0\x53\xca\xa2\x48\x38\x9c\xc2\x46\x52\xd4\xe5\x2d\xcb\x23\x29\xea\x32\x86\xda\x3e\x9c\xdf\xf0\xa1\x34\x09\x0b\xf0\x16\xb2\x28\xfd\x94\xd2\x50\x3f\xa5\x34\x94\xec\xd5\x44\x30\x48\x2a\x19\x82\x4d\x8a\xc9\xc2\xf0\x53\x6a\x42\xba\x11\x07\x0e\x8e\x06\x6f\x21\x55\x05\x03\x2c\xc3\x8f\x43\x58\xfe\xf9\x94\x71\x41\x1a\xba\x69\xb7\xa0\xbb\x8a\xc3\x2f\xd3\x9a\xb3\x70\xd7\x5c\x12\xb0\x22\x45\x8a\x43\xa8\x30\x0e\x27\x94\x0b\x56\x4a\xab\x90\xc3\xce\xfb\x40\x0e\x3b\x1d\x51\x3d\xa7\x9b\x07\xbe\x29\xed\x42\x3b\x29\x0c\x16\x45\xd1\x5e\x3d\xec\x4c\x07\xb2\x28\x4a\xfa\x8a\x78\x2e\xf7\x81\x0d\x98\x84\x9d\x8f\x0f\xfc\x00\x99\x49\xce\x96\x73\xb9\x0f\xb4\xaa\x47\xc8\x10\x9c\x1c\xb6\x4d\x72\x39\xc3\x9f\x0c\xe1\xf4\x79\x5a\x33\x9d\x6c\xb0\x46\xb9\x0f\x84\x72\xf2\x25\x64\xea\x9e\x03\x03\x98\x84\x2c\x8a\x6a\x9f\x40\x81\x48\x8a\x76\x02\x05\x22\x29\xda\x9b\x67\xbd\xca\xf2\x86\xcc\x49\x0a\xef\x86\xfe\x49\x0a\xef\x06\xe3\x14\x15\x4e\x43\x8c\xa4\xdc\x84\x6f\xa0\xa5\x18\xc8\xe5\x74\xc3\xf1\x5a\x73\x97\x36\xac\xb9\x63\xc7\x25\x55\xb7\x3b\x05\xc5\x9a\xbb\xc4\xf0\xb3\xf4\x03\x64\x44\xee\x14\x14\x05\x7f\x77\x7d\x7f\x96\x32\xc0\x9f\xa5\xac\xaf\x6a\xa1\x63\xc7\x95\x52\x7e\x2d\xf8\x89\x6e\xc8\x45\xe1\xdd\xf1\xd1\x8a\xba\x39\xec\xb2\x82\x30\x50\x0b\x49\xc1\x1f\x9d\x5e\xf8\xdb\xc0\xaf\x2c\xf5\x94\x32\x91\xa7\x2a\x8e\xe3\x8b\x82\x30\x82\xc5\x57\xeb\xbb\xab\x50\x14\x84\x81\x99\x9e\x54\x1a\x21\xaf\xd7\xf3\x5b\x82\x04\x14\x84\xe1\x70\x15\x84\xe1\x7a\x2a\x08\xd9\x7b\xce\x45\x81\xc4\x26\x43\x2e\x0a\xa4\x40\xdd\x26\xd5\x42\xa0\x6e\x8b\x02\x29\xa6\xdd\xb0\x2a\x05\xc3\x19\xa0\x8b\xaf\x2a\x8b\x69\x43\x0c\x61\x28\x18\x54\x0b\xc3\x99\x54\x77\x0d\x79\x5d\x85\x33\x5c\x5e\x4d\x04\x37\x19\x88\x64\x28\x7d\x28\xbc\x9d\x3a\xb6\x02\x22\x39\x40\x36\x05\x73\xbd\xf8\xed\xc4\x2b\xab\xd7\x2d\x7c\x80\x8f\xb0\x00\xb3\x90\x28\x08\xb5\xc4\x84\xe7\xaa\xd6\xf3\x54\x3e\xa9\x25\xdc\x28\xa8\x5a\xcf\x6c\x14\xe4\xaa\x4a\x99\xf4\xb9\x6a\x01\xb3\xc7\x1f\xc9\x79\x9e\xb2\x91\x13\x8b\xef\x1f\xc9\xa9\xc3\xf7\xcf\x55\x71\x85\xef\x9f\xab\xe2\x6a\x62\xc6\x55\x05\xd2\xcb\x21\x28\x35\x0d\x2f\xa9\x8a\x9c\x97\x72\x42\xc5\x7e\x02\x48\x9c\xe7\x97\x43\x50\x02\xbd\x82\xf1\x6a\xc5\x1a\xb9\x51\x95\x04\x2f\xa7\x5d\x3d\xff\x42\xf2\x55\x85\x99\xfb\x06\x55\xe9\xf5\x52\x67\x86\x9d\x9c\x46\x9b\x3c\xc2\xfe\xcf\xc1\x27\x0b\xd2\xae\x52\x84\xa8\x88\x5c\x15\x66\x6f\xe5\xa2\x8a\xee\x6d\x9f\x95\x13\x6f\x03\x57\xb4\xc5\x38\xf8\xcf\x55\xbb\xfc\x6d\xe0\x8a\x86\x38\x07\xff\xb9\xca\xb0\x9c\xf4\xe7\x2a\xc3\x72\xd2\x1f\x49\x9d\xc9\x69\x7d\xae\x32\xec\x9b\xdd\xaa\x2a\x87\xba\xc9\x90\xe2\x54\xb5\x27\xf6\xbe\x4e\x55\x1f\xa0\xbf\xc5\x0a\xa8\x32\x0e\x1b\xc8\xb9\xca\x38\xef\xe9\xc7\xa7\x94\xe1\xcb\x29\x6c\x2b\xc4\xad\x36\xe6\xf4\x3a\x57\x59\xc3\x9d\x82\x5b\xdb\x84\xbd\x80\xb8\x35\x46\x38\x27\xce\xb5\xdd\xc2\x4a\xe9\x81\x8c\x48\xd3\xec\xe3\xd4\xc9\x56\xf8\xf3\x71\x4b\xc0\x1f\xc6\x7b\xab\xf6\x39\x0b\xcd\x55\x5e\xf8\x38\x5e\xad\x00\xdd\xfb\x5b\xd5\x8d\x7b\x9f\xab\x16\x13\x67\x56\x71\xab\xab\xbf\xb2\xa4\x12\x49\xf7\xfe\x96\xf8\xbf\x50\xec\x7d\x9f\x52\xda\x55\x6e\x7c\x0d\x6a\xd2\xc8\xfd\x06\xed\xca\x1a\x5f\x79\x30\xfe\x06\x8b\xff\xbb\xcd\xc7\xb8\xd5\xeb\x5f\xf8\xf5\x56\xaf\x7f\xf7\xe2\xc7\xad\x5e\xff\x3a\x5c\xed\x18\x3d\xf4\x86\x9c\x88\xcb\x15\x43\x55\x07\x8e\x73\xdc\xd8\x13\x71\xd1\xa9\xc6\xdc\xc4\x85\xb4\x6e\x4c\x46\x5c\x10\x5d\xbb\xfd\x98\x9d\xad\x46\xaf\xe2\x62\xff\xb8\xd1\xab\xb8\x24\xba\xe7\x94\xd2\xab\xc7\xd2\x69\x37\x8a\xf0\xe1\xb7\x07\x32\xc0\xc7\x3e\xe3\x3a\xdd\xf8\xa4\x41\x00\x65\x6e\x18\x1f\x91\xd8\x55\x20\xc0\x6d\xc1\x9b\xd2\x24\xb4\xaa\x10\x32\x1b\x8e\x17\xb7\x3a\x37\x3b\xa9\x5b\xcd\xf9\x40\x89\x84\x5e\x6f\xf6\x39\x49\x74\xd9\x9a\x5d\x94\x6c\x55\x18\xf1\x77\xb6\x2a\xb6\x98\xee\xec\x6f\x5d\x32\x8c\x8f\x48\xc3\x6e\x1c\x68\x37\xaa\x90\x45\xc9\x42\x1c\x67\x0e\x22\x16\xb4\x57\x07\x32\x75\x67\xf8\xc8\xe3\x76\xc6\xeb\x4c\xe6\x53\x6a\x9f\x29\xd5\xcb\x6e\xf6\xf9\xc6\x64\xb8\xd9\xcd\x88\x1b\x23\xaf\x39\x84\x1b\x77\xe8\x46\xb6\x85\x4e\xf7\x8d\x95\x13\xf7\x66\x85\xdc\x1c\x20\x3e\x78\x70\x5a\xb2\x20\x4b\xe6\x88\x6e\xcc\x65\xce\x43\x4a\xdc\x61\x37\x9a\x90\x3e\x17\xab\xc2\x04\xbc\x8b\xbf\x75\x9e\x8b\x1f\x13\xb2\xd7\x1c\xe0\xcd\x86\x0c\x87\x27\x0b\x32\xcf\x67\xbc\xc3\x76\x85\x68\xb6\xbb\x3a\x5e\x67\xf2\x8c\x48\xc6\x39\x43\x40\x2e\xb6\xd3\x67\x67\x12\xab\x27\x70\xc2\x73\xb3\x57\x7a\xce\x44\x59\x96\x78\x30\x73\x9a\x0d\xe9\x2a\x37\x84\x77\xe8\x2a\xdf\x48\xdc\x78\xec\x33\xb2\x3c\x74\x95\xef\xe6\x6f\x65\x9c\xe6\x6f\x31\x91\x1a\x5e\x77\x3c\xb8\x70\x0d\x37\x3b\x1e\x19\xa7\x59\x95\x7d\x46\xa6\x86\xde\x6f\xc3\x9e\x0a\xfc\xdb\xe0\x0c\x67\x41\x96\xcc\x76\xb3\x4b\x86\xd1\x17\xd9\x25\xb3\x1b\x19\x9b\xfe\xc6\xca\x8b\x8c\x66\x6b\xb6\x9b\xe5\x94\x66\x43\x92\x37\x36\x51\x64\x25\x03\xd2\x3a\x32\xba\xba\x9d\x4e\x4a\xed\xa7\x57\x38\xb4\x9c\x0e\x2d\xc8\x4c\x9e\x5e\x29\xda\xbb\xbd\x52\x96\x77\xbb\xa1\xdc\xb0\x93\x45\xb9\x81\x99\x13\x05\x1b\xf0\xc6\xcc\x89\xe2\xe4\xd8\xe7\x22\x2f\xd8\xe7\x82\xe5\x72\x63\x3f\x46\xe9\xf6\x99\x21\x14\x34\x5b\xb3\x93\x05\x7b\xb9\xd9\xab\x82\xbd\x7c\xf7\xfa\x4b\xc1\x1f\x78\xca\x8b\xf5\x84\x8c\xc0\x01\x95\x61\x3b\x8e\x00\x87\xfd\xee\xf6\x11\x5f\xb8\x39\x20\x7d\xe1\x66\x97\xab\xe3\x43\x57\x45\x95\x9b\xc3\x52\x55\x75\x58\xca\xee\x4d\xfb\x09\xb7\xc2\xe1\x40\x6b\xc1\xdd\x2b\xa2\x3b\x4b\x54\xc4\xd5\x73\xd9\xee\xf4\x63\x6a\x6e\xec\xe4\x3d\xaa\x23\xfc\xca\xdc\xb1\x80\xa3\x61\xe3\x76\x6b\xc6\xaf\x0c\x4e\xbf\x4a\x34\x7a\xf5\x60\x8b\x04\x8e\x64\xee\x36\xd4\x30\x11\xfa\x69\x08\x16\x7c\x30\x4d\xa2\x41\x92\xfd\xb4\x6b\x58\xf0\xa9\x19\x19\xc3\xb9\xda\x82\x37\x30\x09\xdf\x40\x3b\x89\xa7\xf1\x24\x3b\x09\x57\x3d\x18\x1f\xd1\x11\xa2\x0f\xd6\x46\x70\xc6\x9c\xbb\xbf\xed\x9d\xd9\x60\xcf\x21\x3a\x46\x7c\xb7\x2a\x8e\xc9\xe3\x51\xc1\x76\x07\x78\x6a\x46\x2e\x3e\xf7\xf9\x98\xb9\x3a\x0d\x21\x27\x1e\xd5\x6f\x47\xfd\x3e\xf7\x29\x65\xbc\xa7\x5d\xc4\x46\x67\x73\x23\xfa\xb4\xa1\x2e\xb4\xcf\x21\x64\x26\xef\x03\x19\xaf\xea\x57\xd7\xf1\x51\x85\x72\x02\x1d\x8f\x3a\x33\x60\x85\x7e\xfb\x31\x9e\xe4\xa3\xb2\x0a\x44\x1d\xd1\xac\x0b\x4e\xe0\x2d\xa4\x21\x55\x0a\xde\x60\x3c\xea\x90\xb0\xcf\xce\x46\xa0\xe8\x1e\x75\x48\x48\x75\xaa\x05\xbd\xc1\x47\x3d\x30\x60\xfd\x47\x45\x37\x5c\x32\x35\x9b\xe7\xd3\xdd\x99\xe4\x7c\x3a\x1e\xd5\x02\x27\xd0\xf1\xa8\x16\x48\x14\xc8\xdd\x79\xd6\xfd\x7b\x54\x56\x83\x2d\x97\x7e\x1f\x08\xa7\xe0\x0e\xc5\x40\x98\x3d\xe5\x40\x47\xd4\x85\x8c\xa8\x1c\x68\x55\x0c\x61\x62\xb9\x74\x57\x41\x7f\xaf\x6b\xf5\x4c\x2c\x97\xae\x99\x33\x9d\x76\xb5\x04\x07\xc3\xb9\x3f\x07\x32\x22\x95\xc6\xc4\xf1\xe8\xcf\x81\x2c\xa8\xda\x89\x73\xe2\x78\x54\x0b\x9e\x13\x77\x8d\x91\x29\x6b\xa8\x16\x38\xfa\x8d\x47\x3d\x30\xa5\x1c\x45\xfb\xcb\x89\x55\x1e\xeb\x1c\x76\xed\x29\xb3\x0b\x7a\x3e\x1f\x33\x40\x8d\x11\x32\x04\x72\x77\xb9\x4d\x09\xe8\x2e\x37\x29\x01\xf1\x28\x8f\xff\x5f\x39\x00\x25\x08\xeb\x8f\x47\xf1\xfc\x92\x08\xcb\x81\xfc\x56\xa1\x4a\x28\x4e\xee\xd2\xc6\xcb\xe1\x2b\x54\x5f\x0e\x5f\xda\x78\xe1\x4b\x74\x69\x83\x43\xe5\x78\x14\xb9\x44\xd0\xe7\x5e\xf2\xaf\x05\xff\x1b\x33\xfd\x51\x3c\x73\x1e\x9d\x7b\x39\x35\xc1\xfa\xe5\x94\x42\x0b\xd2\x11\x41\xf0\xf1\xf4\x03\x99\x75\xd5\x02\x8e\x64\xee\x9a\x17\x04\x85\xe7\xae\x1d\xa3\x5f\xd9\xd9\xbd\x09\x1c\xc9\xdc\x25\x9c\xb7\xf4\x2b\xa5\xbc\x65\xd0\xb0\x2a\x27\x43\x7b\x82\x50\x9c\xe0\x38\x73\x41\x88\x3d\xac\x19\xcd\xdd\xb5\x90\xde\xca\x98\x38\xbf\x85\xd8\x25\xba\x8f\xc3\x97\xe8\x3c\xae\xee\x52\xd9\x47\x4a\x91\xca\x3e\x0e\x1f\x4f\x39\x74\x33\xbb\x44\xf7\x91\x15\xc2\x9a\xd9\x4f\xcd\x97\x35\x4b\xfb\x5a\x1b\x9e\x13\x67\x35\xdb\x07\xa1\x92\x55\x56\x1f\xa8\x3b\xab\xac\x74\x15\xbb\x16\x03\x41\xa6\x91\xd5\x4e\x5f\xc4\x64\x56\x3b\x7d\xed\xb3\x34\xe8\x39\x71\xd7\x44\xf8\xb2\x64\x9e\x8c\xc6\x17\x72\xf6\x74\x33\xbe\xf6\x4a\x65\xf5\x45\xf0\x67\x95\xd5\xd7\x55\x90\x42\x39\xdc\x8d\x9c\x0e\x64\xb9\x25\x49\x4f\x73\x73\x3a\x10\xba\x92\xea\xbe\x2c\x8a\x47\xa1\xf1\x75\x51\xba\xdd\x70\xf8\xe8\x90\x71\x49\xdd\xec\xde\x0c\x0f\x77\x89\x67\x5c\x90\xaa\x6e\x4b\xb1\x81\xf2\x6d\x29\xae\x71\x46\xf0\x0f\xdc\xce\xc8\x88\xf6\x71\x29\xae\xc2\x86\xd0\xd5\x19\xf1\x3c\x3c\xa0\x25\xda\x71\x41\xc6\x8b\x3c\x1e\x97\xe4\xcd\x72\x0f\x3c\xd8\xc8\xc8\xe3\x71\x61\xd7\x10\x0b\xb9\xe0\x00\xda\xab\x61\x37\x6c\x77\x5a\x0a\xd4\xed\x24\x62\x7e\x41\x87\x10\xc2\x2d\x72\x88\x67\x2c\x83\xb8\xc2\xc8\xc8\xe3\xa1\x63\x49\x78\xe3\x82\x37\xa5\x8f\x90\x2c\xa4\x74\x3e\xa6\x66\x34\xea\xf0\xbc\x96\xf0\xc6\x05\x3f\x40\x46\x94\xcc\x60\x4a\x76\x43\xda\x78\xfc\x18\xa6\x0b\x57\x21\xb1\xb5\x15\xae\x42\x62\x7d\xc3\x55\x48\xae\xef\x63\xcd\x58\xcf\xe1\xa2\x70\x22\x9b\xc3\x55\xf0\x44\x36\x9c\xf6\xbb\x5b\x73\x15\x0e\xaa\xa2\x57\xb7\xb3\x81\xa4\x1f\x77\x58\x55\x13\xda\x8d\x2e\xa4\x1b\xd9\x76\xd9\x07\xf3\xe8\x77\xdc\x2e\x77\xb6\x5d\x94\x95\x67\xbd\x83\xf3\xda\x1c\x4e\xac\x0e\x5e\x38\x93\x1e\xc1\x12\xc1\x58\xc6\xc3\x66\x2c\x11\x8c\x0b\x5a\x73\x08\x19\xe0\x73\x20\x94\xc3\x4e\xc1\x78\xe0\x5f\x02\x1a\xcb\xf0\x94\x35\x1c\xe0\xe3\x00\xf3\xf3\x4b\xc1\x3f\x3c\x91\xcd\xc5\x8a\x39\x1c\x0a\x87\xcb\x01\x6d\xe4\x62\x3b\x4e\x46\xb1\xd4\xc5\x3f\x5d\xc6\xe6\x23\x44\xb1\x18\x33\x9d\x03\xa5\x31\xb2\xf2\x09\xa5\x31\x32\x86\x29\x49\x2b\x0b\xfa\x5b\x4b\x5d\x31\x1c\xe7\x41\x58\x65\x78\x8a\x3c\x74\xf7\x08\x24\x5c\x10\x99\x8a\x7b\x3b\x38\xdd\xcc\x04\x12\x2e\xc8\xcc\xa1\x52\x46\x46\xdd\xe6\x9f\xa5\x48\xbe\x53\x8a\xf7\x17\xcd\xaa\x30\x01\x3d\x45\x1e\x9e\x5f\x12\x39\xb8\x20\x43\xa8\xf6\x59\xe9\x55\x1d\x91\xe4\x5c\x1d\x82\x8b\x8f\x5a\x18\xba\x7b\x44\x0e\x2e\x48\xaf\x50\x38\x03\x87\x2e\xb2\xdd\xc0\x83\xcb\x84\xdd\x2d\x48\xbb\x76\xa3\xc8\xa0\x88\xd8\xa1\x0b\x97\x4f\x43\x26\x20\x22\x62\x87\x67\x9f\x84\xdd\x2d\x68\xcd\x5d\x08\xfb\x9e\x5e\x39\xfc\x66\xcd\x0a\xef\x66\x55\xec\x57\x10\xb3\xb6\x20\xcb\xad\xd4\xe4\x38\xb3\x5c\xca\x36\xce\x20\xcb\x85\x2a\x1b\x75\xcb\x98\x72\xa1\x9d\x46\x95\xe7\xba\x1f\x6f\x83\xa9\x10\xb3\xb6\x20\xc2\xdb\xe1\xe3\x0d\x96\x4b\xb9\xc8\x29\x63\xb9\x70\xd2\x46\x75\x41\x9d\x8d\xea\x10\x1c\xbe\xce\x61\x46\xa5\x8c\x3a\xed\xc6\x81\x3b\x87\xf2\x52\x88\x72\x42\x59\x2e\xa5\x66\xc5\x9a\xcc\x2a\x9c\x86\xc5\x94\x55\x38\xf8\x99\xe5\x52\x88\x72\x60\x59\x08\x87\x5b\x90\x76\xe3\x94\xd2\x2e\x4a\x72\x78\x7e\x99\xe3\x7c\x6c\x37\x8a\x90\xc9\x09\x3f\x56\x78\x87\xa5\x12\xbf\xab\x60\x4e\xef\xa5\x98\x6c\xce\x95\x62\xb2\x0d\x16\xe5\x3e\x1f\x6f\x8a\x2d\xae\x51\x73\x26\x95\x8b\x6d\x30\x7c\xe5\x62\xc3\xcd\x2e\xae\x20\xb1\xe9\x51\x2e\xfb\x8c\x21\x5e\x2e\xdb\x9d\xb6\x1b\x42\x46\xf4\x38\x75\xec\x93\x14\x57\x10\x87\xb6\x5c\xf8\x12\x83\x93\xd1\x72\xa9\xbb\xba\x13\xab\x4c\x25\x68\x3a\x8a\x6b\xc4\x51\x68\xb9\x14\xb1\x1e\x85\x16\x97\x8c\x88\xf9\x72\xa9\x8e\xfa\xb0\xd4\x8f\x25\x33\x65\x6a\x87\xcc\x3c\xbc\x1f\xf8\xb7\xc5\x58\xb2\xd1\x9d\x2b\xf5\x1e\x11\xd6\xe1\x69\xfd\xe8\x04\x3a\x78\x3c\x3f\x70\x68\x8b\x81\x67\xa3\x93\x06\x6b\xa4\xd9\xd0\xa1\xf5\x78\x7e\x90\x5b\x1d\x9e\xc7\x8f\x70\xf8\x4a\xe0\x90\x90\x54\x38\x9c\xa3\x86\xa7\xf5\x23\x24\x24\xf5\x0f\x67\xa1\xe5\xca\xbf\x0c\xe7\x2c\x83\xe4\xf4\x28\xd2\x42\x6c\xc1\x50\x8c\x4a\x1b\xe1\x54\x49\x0b\x21\x59\x29\xe9\xc3\xa9\xba\xcf\xc7\x4c\x86\x0b\xa8\xe3\x5c\x5c\x40\x0f\x4a\x8b\x0b\x18\x8e\xde\x15\xd3\x17\x2e\x2e\xd1\x70\x79\x35\x02\x06\x7a\xa0\xa8\x32\x47\xd0\x49\x95\x95\x27\xa3\x9e\xce\x8f\x81\xa9\x5d\x54\x99\x83\x4d\x95\xe2\x22\x90\x4a\x53\x8c\x86\x1b\x3a\xce\x25\x1f\x38\x80\xf6\x0a\x2b\xd6\xb3\xfb\x31\x5c\x5e\xa7\x99\x10\xea\x62\x34\xdc\x98\x30\xb7\xc7\xf1\x63\xba\x26\xaa\xb2\x89\x25\xea\xf9\xfb\xe0\xdc\xb4\x18\x0d\x37\x08\xa1\x0e\xcf\xd4\xc7\x74\x51\x70\x96\x06\x31\xd3\xe5\x52\x0d\x4e\x57\x41\x35\x38\xa5\xd0\x9f\xbf\xa5\x21\xd5\x11\xc9\x41\x51\xd4\x21\xba\xc6\x1e\xb1\x8f\x97\x44\xa7\x68\xe7\xdc\xb4\x18\x67\x37\x5e\x8e\x48\x49\xff\x72\x44\xea\x5b\x7c\xe1\x62\x24\xdd\xe0\xa0\x34\x3c\x62\x1f\x2f\x74\xb5\x47\xec\x43\xe7\xb7\xe0\x1a\x0f\x9c\xdf\x28\xf8\x21\xe3\xa5\x40\xb2\xcf\x2f\x09\x49\x3d\xf0\x52\xe4\x74\x7b\x25\x5d\x75\xbb\xc1\xf1\xbc\x47\xec\xc3\x7c\x71\x83\xf2\x86\x09\xe2\x86\xdd\x0d\xcf\x4d\x8b\x7a\x4f\x97\xb5\xa8\xf7\x48\xa7\x8e\xa2\x5a\x78\xcb\x46\x0e\xff\xed\x88\x14\xfc\x64\x48\x17\x03\xeb\x86\x07\xa5\x45\x3d\xf0\x76\x51\xec\x33\x89\xcb\xc5\x80\xb7\x81\x17\x5a\x8c\x52\x1b\x6f\xd7\x48\xd1\xfe\x56\x6a\x9e\x4e\x4e\xba\x71\x3a\xa9\x14\x39\x9d\x94\x8f\xd4\x03\x1f\x57\xd0\x4e\x92\x7d\x1b\x45\x2f\x85\xa0\xe9\x62\xb4\xd8\xf8\xa8\x8d\xd5\xd5\x9e\x6e\x16\x9d\x16\x72\x78\xa2\xea\xa5\x90\x15\x5a\x8c\xe9\x1a\x9c\x6e\x16\x63\xba\xc6\x87\xab\x04\x92\x8a\x8e\x68\xe5\x92\x14\x66\x5f\x16\x25\x29\xae\x38\xbf\x2c\x86\x2d\x8d\x6f\x58\x1a\xc2\x4a\xbb\x7e\xbc\xad\x9e\x92\x94\x1b\x64\x20\x86\xb1\x0b\xc3\xf0\x64\x63\x17\xc6\x17\xca\x31\x76\x61\x18\x80\x6c\xec\xc2\xe0\x4c\xd2\xab\x13\x16\x1c\x40\x1b\x9a\x8e\x77\x4f\xce\xe4\xc4\xb2\x18\x4e\x33\x2f\x98\xdd\x70\x9a\x49\x52\x61\x90\xe8\x5a\x26\x57\xb4\x14\x43\x55\x4c\xa3\x8b\x8a\x76\x9a\x44\xfe\x16\x43\x55\x26\x6e\x67\x31\x54\xc5\x24\xbb\xc2\x5d\x02\x0b\xd2\xc9\x6a\x37\x60\x67\x63\x26\x26\x07\x98\xc5\x60\x94\xe9\x11\x65\x45\x95\xcd\xe4\x3c\xb7\x5f\x47\xf5\xcc\x84\xe1\x52\xd1\x73\x33\xa1\x51\x2a\x8a\x6d\x72\x60\x59\x0c\x20\x99\x09\x5b\xc4\x30\x8f\xa9\x5f\x59\x51\x7b\x33\x39\x7a\x88\x7d\x12\xf8\x5b\x0c\xe4\x98\x29\xf8\x6d\xb7\x8f\x83\x3e\x76\xdb\x45\xe1\x90\x11\xbd\x20\xcb\x9b\x6c\x57\xa2\xeb\xb6\xcb\xfd\x15\x86\x6a\xcc\xe4\x64\xc0\x73\x93\x23\xc9\xa8\xc9\x8f\xb1\xea\x0c\xb7\x98\x89\xbd\x58\x03\x48\xe6\x8d\x6c\x33\x80\x64\xea\x2a\x1a\x40\x32\x6f\x97\x17\xaf\x73\x7a\x70\x58\x31\xa7\xa6\xb1\xbc\xa4\x35\x2f\xc8\x6a\xa3\x42\xa7\x9e\xa3\xc1\x27\x13\xcf\xb1\xa4\xf0\x63\x34\xaa\xb1\x28\xf3\xf6\xfa\x8e\xf0\xb7\xe8\x1f\x72\xa0\x17\xa4\xaa\xc7\x76\xcf\x78\x43\xb8\xd9\xd7\xf8\x8a\x49\x1c\x70\x31\xbe\x62\x92\xc9\x5a\xee\xeb\xfc\xf6\x03\xa4\x1b\x0f\x94\x72\x4b\xec\x0f\xda\xc9\x28\x97\xf9\x38\xc0\xc7\x52\x08\xf6\xc6\x50\x9b\xcf\xf0\xb7\x5d\xd8\x81\x21\x0c\x7e\x7b\x3e\x76\x08\x7e\xcc\xee\x9c\x11\x32\xf3\xd9\xc2\xbb\x18\x7d\x31\x1f\x0c\x26\xe3\x2b\x26\x41\xb5\xc5\xf8\x8a\x89\x27\x59\x0c\xa8\x98\x7a\x92\x46\xd7\x4c\xc2\x66\xcb\x2d\x01\xeb\x3a\x1a\x3f\x33\x33\x24\x6a\x7c\xc5\xe4\xe0\xb0\x18\x50\x31\xc9\x54\x0e\xa3\x6b\x66\x56\xc6\x60\x14\xcc\xec\xf0\xef\x03\x99\x2b\x6c\x84\xe9\x29\x63\xcd\xf6\x0a\x73\xa3\x66\xbb\xc1\xa6\x59\x65\xc3\x78\x72\xb5\x51\x54\xcc\xab\x89\x53\x5a\x8c\xa8\x98\x79\xd8\x90\x55\x4d\x7f\x6b\x9f\xe5\x75\xa4\xd7\xc4\x75\x8c\xaa\x40\x2a\xc4\x10\x54\xec\x8b\x49\x60\x6c\xb9\x25\xb3\x72\x6a\x0e\xe1\x66\xab\xfb\xb1\x2a\xaf\x85\xc1\x70\x9b\xc5\x35\xc2\x72\x99\xd5\x86\x30\x37\x66\x75\xda\x31\x37\x66\x75\xda\xb1\xf2\x26\x07\x7a\xc5\xf0\x8b\x59\x25\x24\xe5\x22\xfe\x5e\x54\x45\x1d\xfe\x5e\x31\x38\x63\x56\xe9\x4a\x22\xac\x48\x06\xa3\x31\xa6\xee\x5f\xad\x07\x42\xde\x92\x59\x55\x4c\xd6\x03\x99\x0d\xac\x80\xe9\xd9\xa0\xc1\x45\xb3\x62\x8a\x1a\x4d\x34\xf1\x06\x8b\x91\x1c\xb3\xca\x38\xcf\xf9\x98\xaa\x30\xa0\xa6\x67\x83\x86\x0f\xcd\x26\xe3\xe0\x66\x4f\x9c\xb4\x62\x70\xc6\xf4\xe4\xd0\xf0\xa1\x89\xcf\x56\x8c\xd5\x98\x0d\xbb\xb5\x62\x7c\x4d\x22\x52\x8b\xa1\x1b\x93\x73\xc5\xa8\x58\x1f\xd3\xa3\xc2\x8a\x79\x35\x9b\x82\x42\xf9\x8c\x0b\x57\xee\xf2\xeb\xad\x9e\xa9\x43\x67\x14\xc4\x6c\x18\xb5\x86\x1a\x4d\x3c\xb8\x62\xac\xc2\xd4\x47\xab\x0a\x6f\x8e\x15\xcb\x5d\x0f\x64\x32\x94\xe5\x1d\xbd\x7e\xbb\xbc\x3a\x65\xb7\x2b\xd6\x65\xb2\x7e\xa0\x55\x35\x21\x14\xea\x8a\x75\x47\xdf\x4f\x29\xe3\x73\x01\xbb\x84\xe3\x02\x76\xe7\xa6\xfb\x5b\x1c\x3a\x63\x15\x66\x57\xa5\xa8\x43\xba\x53\xe5\x02\xe2\xc1\x15\x83\x13\x66\x57\xa6\xba\x62\x7a\x70\x86\x1f\x98\x32\x1b\x55\xfd\xd3\x25\x1c\x97\xa8\x2b\x9f\x5c\x22\xfc\xbb\x62\xbc\xc1\x0c\x25\xae\x2a\x94\xb0\xd9\xa8\xea\xae\x90\x8d\x54\xa1\xe1\x4c\xaa\x42\x43\xe6\x56\x95\x85\x0a\x27\x2c\x45\xdf\x1a\x42\x30\x43\xe9\x15\x07\xfa\xdb\x22\xa4\x57\x2e\x59\x38\x39\xea\x1f\x8f\x33\xdb\x65\x43\xe8\xcc\x76\xd9\x10\x16\x52\x53\xa5\x78\x9c\xd9\x54\x29\x84\xaf\x86\x11\x5f\x13\x8f\xae\xdc\x2a\x2b\x8e\x33\xcb\xa3\xb2\x1a\xec\x0b\x3d\x2a\xab\x01\x1b\x35\x35\x0c\x87\x9d\xe5\xb1\x1b\x78\x74\xc5\x83\xff\x39\xc2\x4e\x76\xa1\x35\xdb\xab\xb0\x66\x7b\xb5\xf7\xc1\xca\x73\x7a\x85\x8c\x79\x4e\x43\xb8\x25\x4d\xdd\x45\xf6\x6d\x34\xed\xb6\x01\xa9\x3c\x3f\xe1\x1b\x68\x9f\x31\x37\xda\x4f\xf8\x06\xda\x67\xf4\xad\x27\xee\x93\x90\xdb\x68\x6a\xb6\xc9\x35\x56\x8f\x06\x94\xce\x61\x53\xd1\x4d\xcc\x8d\xa6\xa2\xe3\x36\x84\xf2\x68\xaa\x70\xc8\x1a\xed\xd4\x8c\x11\xef\xe1\xfd\xf4\xcc\xb5\x9d\x9a\xe1\x32\x0f\xef\xe7\x44\x00\x1b\x68\x67\x32\x6e\xb4\x53\x33\x6a\xc1\x23\xf6\x39\xa7\xa5\x56\x05\x6b\x3c\x6a\x09\x4f\x55\x9b\x1a\x86\x0c\xda\xf2\x28\xad\x5f\x12\x83\x0a\x87\x3b\x1a\xca\xa3\xb4\x7e\xb9\xfa\xcf\xf9\x2d\xc3\x57\x87\xbc\x5c\x7d\x05\x30\x57\xb8\x95\x47\x3d\xcf\x15\x6e\x61\xec\xdc\xc4\xcf\x2c\x1e\xcf\x7b\xef\x5a\xf1\x3c\x7e\xbe\x86\x1f\x67\x21\x93\xa3\x86\xf1\xee\x34\xcf\xe3\xbd\x2c\x2d\xda\x19\x02\xd6\x96\xc7\xf3\xa6\xf9\x46\x3b\x43\xc0\xda\xf2\x78\xfe\x9f\x2f\x40\x73\x44\xe8\x10\x4f\xeb\xcf\x05\x68\x8f\x22\xf7\x2d\xe3\x38\x40\xee\x25\x8b\xe6\x00\xbd\x88\xec\xe1\xd0\xf5\xdc\x3c\xe6\xd1\xbe\x57\x8d\x15\x0f\xef\xb9\x6a\x6c\xc1\x5f\x5e\xd9\x50\xbc\x4b\x2c\x9a\x26\x11\xd7\x83\x45\x53\x57\xbd\x11\xc0\x4f\x3d\xa5\xcc\x6b\x3d\xa5\xcc\x8d\xaa\x8b\x1b\xbf\xca\xa3\x47\x43\x2c\x6f\xf1\x84\x7d\x72\xc7\x48\x79\x14\xa2\x7a\xac\x8f\x42\x14\x8f\xb5\x78\xfe\xee\xc5\x54\x61\x8c\x9e\x57\x4f\x15\xcf\xd0\xbd\x6b\xaa\x78\x68\x7e\xf2\x6b\x0d\xac\xf3\x3a\xa5\xf2\x28\x8f\xb9\x21\x29\x5a\x39\x90\x35\x71\x01\xf5\x58\x1f\x45\xdd\x87\x1d\x62\x03\xeb\xbc\x8c\x28\x9a\xb3\xfe\x71\x79\x71\x8d\xbd\x6e\xa8\x78\xb8\x6b\xaa\x6e\xf1\x34\xd7\xfb\x85\xa2\xb9\x44\x1c\xd0\x16\x0f\x77\xbd\x23\xc8\xdb\xef\x8a\xa9\xba\xc5\xd3\x5c\x53\x75\xa3\xa9\x6f\xf1\x85\xc3\x90\x3d\x6e\xf2\x59\x90\x89\xfd\x22\xbd\x3c\x91\x9d\x5f\xd9\x57\x15\xea\x01\x6d\x53\x85\x1a\x9f\xdb\xea\xf9\x78\x2f\xa8\xc7\xb7\x26\xe3\x86\xf1\x6e\xa6\xdb\x16\x4f\x73\xcd\xaf\x0d\xc3\xdf\xe6\xd7\x11\x29\xdb\xf0\x94\x0b\x99\xac\xb5\x5f\xf8\x4e\xc4\xac\x55\xb3\x60\x83\x98\xb5\x6a\x16\x6c\xe1\x24\xb8\xf6\x0b\x1b\x88\xa3\xdf\x6a\x52\x6c\xe1\xac\x77\x41\x96\x6c\x1b\x23\x0b\x22\xae\xb6\x56\x5c\x10\x39\xd1\x6d\x17\x3d\xcf\x69\xee\x82\xb0\x51\xb7\xa1\xe1\x6f\x6d\x08\x7b\x91\xe3\xdb\xea\x2d\x31\x85\xf3\xda\x7a\x72\x64\x09\x4b\x5b\x10\x62\xe8\x8e\x08\x13\xb0\x75\x46\x64\x52\x6c\x8b\x5b\xc8\xe4\x6c\x51\x57\x3b\xbe\x71\x21\xa1\x76\x41\xc6\xfb\x24\x21\x7d\x7e\xfc\x2d\x4c\xc7\x11\x6c\x35\x29\x36\xb8\xbf\x70\x41\x6a\x7e\xe8\xb3\xf1\xb9\x84\xc3\xd5\xce\xa9\x6a\xb4\xa0\x93\xb7\x1a\x26\xba\x90\x86\x72\x15\xee\xc9\x21\x58\x6e\x41\xda\xcd\xe7\xb7\x5f\x4a\x69\x48\xff\x96\x90\xb6\x6a\xae\x6a\xe1\x6c\x70\xc1\x42\xa9\x35\xbb\x82\xc5\x9a\x59\x41\x22\xdc\xea\xc9\x64\xed\x97\xbd\xc2\xe1\xe1\xb8\xaf\xf6\x9b\x5d\x23\xce\xf7\x16\x4c\x7c\x7c\x20\x0d\x25\xdb\xc5\x16\x23\x4b\x74\xc1\x0e\xb4\xcf\x1c\xbb\x71\xb9\x63\x35\xcf\x35\x88\x7f\xab\x27\x59\xb5\x4b\xb1\x8f\x93\x53\x9b\x90\xc9\x91\x44\x39\x64\x2d\x9c\xe0\x55\x2f\x05\x8a\x2e\xc5\xea\x2a\x77\x29\xf6\x71\xea\x92\x55\xa1\xac\x38\xee\x5b\xf0\xa1\xd4\xaa\x9c\xba\x74\x4a\xa1\xc9\x76\x09\xa9\xf9\xb6\x93\x58\x2e\x9c\xfe\xd5\x93\xf7\x4a\x4c\x57\xed\x44\xe0\x46\xbf\x7f\xb9\xc7\xbf\xbe\x45\x02\xc9\xa0\x38\xdd\x41\xc0\xd7\x82\xcc\x6b\x3b\x70\x0b\xb3\x2e\xc1\x66\x74\x55\x97\x60\x33\x6a\x3e\xf7\x03\x19\x9f\xf4\x8b\x4b\x5e\xb2\x0c\x6a\x78\x6e\x97\x7e\xb3\xb4\xdf\x43\xc8\xac\x3f\x45\x68\xbb\x55\xc8\x02\x3e\x4d\x08\xbf\xca\x73\x7a\xd9\xfd\xe9\x42\x56\x4c\xbe\xc9\x48\x3e\x6e\x9c\xac\x3d\x4b\x65\x61\x37\xd8\x73\xe0\xe4\xac\x9a\x8d\x5a\xb2\x5c\x95\xbd\xab\x54\xae\x22\x3c\xb7\x90\x15\xba\x60\x06\x26\x21\x43\xc8\x8f\xf0\x0d\xcc\x42\x48\x23\xd3\x50\x91\xab\xe4\x48\x0e\x77\x4b\x91\x51\x8a\x73\x95\x0f\x2c\x94\x76\xe1\xa0\xf4\x40\xe6\x2a\x87\x90\x0b\x55\xa5\x7d\x6e\xde\x2a\x45\xda\x2f\xb8\x8a\x04\x8b\x2d\x38\x29\xb5\x2a\xb4\x62\x91\x24\x0b\x73\xc5\x29\x54\x35\xed\x35\x88\x2c\xab\x27\xed\x95\x88\xaf\x6a\xda\x6b\x74\xb9\xb9\x4a\x0c\x72\xb3\x47\xbf\x9c\x1d\x55\x53\x57\x83\xdb\xe0\x16\xa4\x5d\x89\xb0\x22\x63\x8a\x54\x57\xa5\x0d\x79\xbd\x0e\x4b\x8b\xb0\x01\xab\x90\xe5\x56\x12\x54\xac\xba\x22\xe5\x54\x07\x98\x6d\x17\xb5\x4f\x68\x59\xed\x1c\x0c\x17\x92\x35\x17\xac\xc0\x5b\x68\xcd\x36\x84\x55\x57\x5c\x6e\x0f\x86\x8b\xcb\xed\xd1\x6f\x71\xb9\x9b\xb4\x21\x73\x37\x76\x14\xbb\xdc\xdc\xa4\x8d\x46\x43\x4d\xc1\xd0\x1e\x21\x42\xb4\x59\x33\x76\x4d\x97\x7f\x3d\xdc\x2d\x4a\xdc\xe6\x10\x5c\xdf\x66\x27\x4b\x15\x72\x29\xb3\x4b\xe6\x21\x6b\x71\xc9\xc8\x46\x2d\xc5\x25\xeb\x2e\x59\xa5\x2a\x5d\xf4\xa2\x30\xc3\x27\x2f\xc5\x11\x75\x39\xb4\x9f\x8f\xa9\xd9\x01\x76\xb6\x3d\x8b\x03\xec\x32\xac\x92\xc1\x43\xd6\xae\xae\x36\x88\xb8\xab\xab\xfb\xb0\xa1\xf3\x31\x94\xa3\x72\xee\x2e\xa8\x93\x43\x10\x71\x29\x4e\x8e\x47\xb0\x5d\x21\xa3\x03\x5f\x14\x6e\xdc\xab\x17\x44\x8b\x55\x73\x57\x83\x68\xb1\x05\x21\x6f\x85\x0c\x31\xc5\xde\x44\xbc\x20\x5c\xa6\x51\xa0\x4f\xde\x95\x39\x21\x3b\x6b\x23\x98\x9d\xda\x95\x2a\xf8\xe4\xa5\xd8\x2b\x7d\x72\xc2\xc3\x6a\xf7\x94\x35\x14\x32\xfa\xe4\xa1\x90\x09\xc7\x7b\xfa\x8c\x5b\x52\x22\xfd\x5a\xf0\x73\x3f\x56\x70\xad\xde\x82\x4c\xc6\x19\x1f\x56\x6c\x39\x23\x80\xb9\xb9\x74\x6f\x41\x08\x47\xa9\xc9\xdd\x5a\x11\xd7\x81\xac\xb6\x42\x74\x48\x47\x0e\xd7\xad\x80\xb8\x4e\x29\x4b\xa4\x4c\x25\xd0\x39\xe2\x3a\x1f\x7f\x81\x96\x22\x08\x43\xc9\xa7\xef\x5f\x1d\x82\xbe\x7f\x68\x22\x90\x05\x5b\xea\x69\x08\x13\x30\xb4\x18\x74\xe7\x43\xb9\xa8\x3b\x5f\x4f\xbb\x84\x00\x85\x62\x92\x20\xe9\x08\x4d\x84\xc1\x34\xd7\xd3\x2b\xd4\x6d\x68\x22\x70\x12\x5c\xea\xe9\x24\x33\x59\xed\x95\xde\x7d\xb5\x66\x1d\xf6\x50\xa6\xea\xa1\x87\x66\xeb\xb4\x21\x55\xa8\x5e\x76\x55\x67\x12\xd9\x5c\xaa\x92\xcf\xe3\xdb\xd0\x8a\xd5\xe9\xae\xaa\xc1\x17\xae\x54\x68\xd4\x12\xe8\x5c\xaa\x6a\xd0\xe3\xdb\xaa\x20\x34\xed\x35\xb4\x27\x5e\x38\x1e\xa1\xb4\xd6\xe9\xae\xca\x45\x9d\xee\x50\x5a\x7b\x7c\x1b\x9a\xbc\x1c\xdf\x46\x68\xf2\x7a\x07\x79\x55\x88\x7a\xe9\x78\x55\x6a\x92\xd8\x1a\xa1\xa4\xd7\xf9\x0d\x07\xf8\x3e\x9d\xec\xc2\x17\x90\x86\xb8\x75\x2f\xc2\xf1\xbe\xa5\x0d\x25\x1f\x69\xaf\x11\xcf\xf9\x98\x5e\x39\x5e\x4e\x64\x23\x1c\x11\x27\xb2\x11\x76\x92\x10\xe3\x52\x8b\xdd\x40\xef\x85\x7d\xe6\x76\xe8\x52\x95\xa9\x9e\xd7\x86\x82\x5f\xef\xb7\x2a\x62\xf5\x6f\xab\x8a\xce\x1b\xb1\x42\xb5\xc0\xc5\xcb\x85\xed\xf3\x6a\xea\x6a\x84\x46\x01\xee\x6e\x84\x56\x80\xc7\xb7\xe1\x6c\x7c\x9c\x0d\x15\x1d\xb7\x5a\x95\xaa\x2a\x23\x93\xb5\x54\x95\x15\x99\xac\xa5\x6a\xe3\x7e\xe4\x14\x8d\x5a\x1d\xe9\x50\x87\x78\xd6\x1b\xce\x24\x97\x09\x97\xda\x0e\xf4\x63\x66\xe3\xa3\x28\x28\x74\xc3\xc3\xdd\xaa\x00\xfe\xca\xfb\xce\x24\x57\xe2\x96\xaa\x00\x26\x3c\xb9\x90\x23\xbb\x20\x8b\xe2\xc4\x7a\x33\x55\x38\x93\x5f\x47\xa4\x86\xc1\xdd\x2d\x55\x2d\xe1\x65\x53\xe1\x3c\x1b\x8f\x1c\x4e\xec\xd7\xf5\x55\x95\x7d\xe5\x5f\x0d\x0a\xe2\x91\x4b\x55\x5a\xe3\xfd\x06\xb1\x82\x35\x2e\x69\x92\x89\x8d\xcb\x4e\x32\xb1\x81\x7f\x5b\xd8\xb9\x5d\x90\xe5\x46\xa8\xc6\xe5\x10\x98\xf6\xe0\x24\xb8\xb0\x55\xbb\x20\x8c\xc3\x2a\x04\x97\x3e\x15\x76\x5f\x6b\x18\x62\x1c\xe8\xdb\xe0\xd2\xa7\x52\xc3\xaa\x64\xba\x76\xff\x52\xf0\x07\xb7\x9e\x06\xf7\x06\xd6\x93\xd8\xca\xbd\x81\x0b\x6e\xfd\xda\xd0\x37\x26\xb6\x96\x86\xbe\x89\x04\xe1\xb0\x07\xbc\x20\x13\xc9\x8a\x05\x81\xbf\xc1\xfb\x15\x35\x3c\xcd\x65\x87\x78\x41\xe8\xb7\x5b\x15\xa6\x18\x1b\xc6\x0b\x22\xbd\xba\x35\x23\x18\xd8\x3f\xae\x66\x94\x06\x57\x10\x2e\x48\xbb\xdd\xdf\x2a\xf9\x58\xfc\xc0\xbd\x0d\xe2\x19\x17\xb4\xcf\x74\xd2\x48\x5f\xc2\x1b\x17\xf4\xe3\x2e\x64\x3d\xfb\xf9\x98\xd9\x40\xf0\xc7\xed\x78\x51\xb7\xe1\x69\x6e\xb8\xda\x37\x3b\x4e\xec\xd4\x2e\x08\xdf\xb8\xf8\xb7\x34\xe8\x6a\x13\x16\x5c\xd8\x8b\xad\xa1\xb7\xdb\x6e\x6b\x46\xa8\xb0\xf9\xba\x20\x1f\xdf\x56\x85\x6d\xcd\x25\x83\x35\x88\x12\x2e\x24\x3d\x2f\xd8\x80\x55\x68\xbb\x4d\xc8\x88\x6e\xa1\xb3\xc1\xce\x40\x70\xb8\x5b\xc8\x63\x5e\x90\x37\x13\x90\xc7\xa1\x8b\x1a\x98\x26\x5c\xe9\x7c\x5f\xd7\x75\x3e\x66\x9e\xf1\x06\x43\x07\x96\xbd\xd8\x1a\xfb\x60\x78\x7d\x6c\x55\x8b\x41\x17\xf4\x63\x76\x97\xd9\xf5\x5c\xf0\x4d\xe9\xf9\xed\x17\xe8\x78\x97\x00\x5e\xb0\x08\xe9\x73\xb6\x1b\xb0\x2f\x3b\x99\xd5\xf4\xd3\xc2\x4e\xe6\x82\xac\x11\xc2\x3b\xb2\x2f\x48\x20\xad\x23\x2f\x25\xb9\x6a\xae\x42\xab\x2a\x42\xc7\xdb\x84\x03\xd8\x85\x76\x92\x21\x6c\xff\xf6\xbe\x08\x14\x5d\x90\xc9\xc9\xd6\xbc\xc8\x6c\x95\x26\xe1\x9b\x52\x6b\x1e\x74\x03\x1b\x21\xf2\xe0\x21\x8b\x6c\x43\xc3\x9a\x1d\x82\x9c\x52\xfc\x78\xfa\x5b\x47\x24\xe5\x14\x6b\x9e\x4c\x2c\xfb\x15\x51\x3a\xab\xc0\x7e\x45\x14\xb6\x3e\xd8\x60\x5c\x90\x3e\x23\x35\xa3\x74\xfb\x4c\x55\x05\x2b\xa0\x29\x08\xb7\x07\xbb\x4a\xbb\x90\x86\xa4\xc9\x22\x6b\x28\xdb\x0a\x5e\x0a\xa9\xba\x35\x8a\x2b\x88\xd5\x1e\xc5\x35\x52\xaa\xd4\xce\x72\x63\xd7\x44\xb5\x93\x0a\x0a\xcf\x98\xdd\xf7\x0b\xee\x44\x2a\x6e\xf4\x05\x37\x17\xf9\x06\xc8\x82\xc8\x1c\x99\xbd\x9e\x4e\x16\x21\x33\x29\x3b\xfb\x2a\x8e\x5b\x79\x26\x9c\x96\x16\x7e\x8c\x62\xef\x12\xbf\x61\xc2\xee\xa1\xc5\x0e\x04\x5e\x35\xd3\x50\xeb\x10\x3f\x36\x51\x10\x17\x5c\xdc\x52\x33\xe1\xb4\xb8\xa5\x16\xdb\x39\xbc\xaf\x4b\xc6\x69\x92\xd9\x73\x3e\xfe\xf2\xb1\x35\xc3\xb0\xfd\xfa\xe5\x7d\xfc\xeb\xdb\x42\x4d\xb6\x13\xbe\x71\xc2\x08\x38\x44\xf6\x05\x94\x05\x1f\x20\xa3\x6f\x58\xa2\xee\x4e\x71\xed\xf4\xaa\xaa\x0a\x37\xa3\x74\xa5\x97\x8e\x64\x77\x5e\xbb\xa3\xc7\xe9\x0e\x4f\x82\xbb\x32\x66\x47\xeb\xde\xd7\x25\xfb\x6e\xdf\x70\xc1\x47\xc8\xdc\xc8\xcd\xfb\x80\x76\x95\x56\xe1\x9b\x52\xe6\x46\x77\xcf\x9d\x90\xd8\xee\xde\xfa\xd8\x76\xf1\x70\xdc\x18\x89\x7d\x5e\xbb\x4a\xf9\x38\x16\xb1\x2f\x18\x42\xd6\x13\xe3\xc3\x14\xd2\xe2\xe6\x46\xec\x23\xd8\xfb\x22\xc8\x74\xc1\x0f\x30\x09\x19\x7e\xb1\x66\xc5\x24\x26\x51\x70\x35\x78\x71\x27\x24\x76\x3c\xee\x2a\x2d\x42\x1a\x92\x05\x49\x3f\x2d\x6e\x14\x44\x4c\x66\x52\x8e\xdc\x4e\xda\x82\xb7\x70\xf0\xb1\xed\x4e\xe6\x0a\xb3\x26\x42\xd6\xd7\x8e\x09\x29\x54\xf6\xd5\x0d\xeb\xf2\x1c\x57\x1c\x17\x5d\xf2\x18\x76\x52\xf6\x1d\x88\x2b\xfd\xe8\xd8\xb7\x16\xaf\x52\xa1\x84\xa4\x92\x24\xc6\xb6\xe8\x47\xc7\x50\xf0\xb7\x53\xca\x00\x65\xb2\xed\x77\xad\xd2\xf3\x31\xdd\x50\x67\x0e\x05\x7f\xf3\x63\xd7\xb7\x9d\x52\x56\x50\x29\xa2\xdf\xd5\xd5\x7b\xfb\xc6\xe3\x55\xea\x78\xa7\xed\x3a\xa2\x69\x43\x0e\xc1\xc9\x69\xac\xbe\xc1\xbc\xfa\xe0\xb1\x2f\x41\x5a\xa5\x21\xa4\xdd\x7e\x4a\x79\x1c\x48\xdd\xe5\x21\xab\xbe\x31\x97\xac\xaf\x8f\x4f\xa9\x1f\x17\x21\x33\xa9\xe5\x42\xa8\x6f\xd1\xdd\x8d\xe9\xd4\x29\xcc\x0c\xf5\xd5\xdd\x8d\xe9\xd4\x39\xcf\x64\xc1\xfa\x64\xd1\x82\x2f\x20\x55\x11\xdb\x5b\xf4\x33\x83\x13\xd9\x12\xda\x17\x2f\x45\x8e\xa6\x27\x47\xb0\x45\xd7\x31\x5e\x12\xbf\x13\x4b\x16\x6c\xd1\x57\x0c\x1e\xc6\x2a\xba\x7f\xe1\x11\xac\xee\x5f\xbc\xb4\x02\x9c\xf6\x7d\xc8\x7a\x5f\x49\xa9\xf9\x82\xbc\x93\x46\x81\x87\xac\xba\x61\xf1\x9a\x0f\xa5\x8f\x90\x45\xc9\x07\x32\x1b\x8a\x02\x0f\x59\xf5\xac\xc2\x67\xa5\x74\xa5\xc8\x82\x5d\x55\xf1\xf1\x9b\x05\x4d\xae\x82\x6f\x41\xe9\x68\xc5\x79\xed\x49\x41\x81\x9f\x59\x74\x78\xe2\xed\xfa\xca\xdd\x5c\xa0\x54\xf4\x70\xe2\x8d\x86\x49\xae\xe0\x7b\x38\xc0\x10\xd2\xae\x6b\xb4\x33\x5b\x17\x4c\xc2\x17\xf0\x16\x32\x84\x72\xaa\x62\x08\xe9\x97\x51\x3d\x35\xde\x48\xeb\xa4\x4d\x40\xda\x6b\xd1\xfd\x31\xed\xb5\xe8\xfe\x84\x1e\xeb\xf1\x77\xc8\x82\x2d\xc7\xdf\xd9\xe7\xb5\xab\x2a\xe0\x07\x03\x22\x69\x40\x78\x22\x7b\x5c\x98\x8f\x33\xa7\x60\xf8\x48\x47\xb2\xfe\xa7\x5b\x15\xd3\xfc\x09\x3b\xe9\x6f\x9d\x66\x99\x9b\x1c\xd9\x12\x32\xf7\x47\x2a\x93\x9b\xb9\x8a\xa9\x84\xfc\xfa\x71\xbc\x52\xf7\xc7\xf1\xf6\x03\x3f\x40\x7e\xfb\xc5\xbc\x48\xd2\xbe\x3e\xe9\x71\x1e\xbe\x92\x86\x76\xcc\x17\xce\x48\xda\x22\x5f\xdb\x55\x3e\x71\x01\x72\x39\x76\xf9\x17\x33\x2e\x69\x3d\xe3\x84\x96\xd0\x80\xf8\x62\xf2\x86\x4c\xf6\x45\x96\x27\xad\x67\xf2\x5c\xeb\x31\x79\xb9\xb5\xb8\x1e\x93\xf7\x8b\x7c\x22\xee\xb9\x8e\x0b\x15\xca\xeb\x8a\x75\xec\xf7\x21\x17\x6c\x40\xde\xc9\xd2\x9a\x1c\x97\x84\x83\xbe\x1d\x1c\x76\x56\xad\xc9\xb1\x9d\xc3\x55\x7a\xe0\x04\xee\x6e\x8c\x7d\x03\xf0\x82\x45\x58\x81\x55\xb8\xdf\x14\xe3\x0a\xeb\x4a\xfa\xe9\x2a\x6d\x42\x86\xc0\x4c\x0e\xfc\xbd\xaa\x85\x34\x12\x26\x3e\xf7\x24\xd6\x91\x4e\x37\x42\x58\xf9\xf8\xc0\xad\x51\x89\xd5\xae\xa4\x81\x2e\x98\x84\x8c\x08\x91\x33\x38\xfb\xac\xa4\x0e\x55\x92\x44\xd7\xc7\xb7\xb0\x50\x7a\x20\x23\x82\xb9\x07\x67\x9f\x55\x53\x6c\x70\x7e\x59\xb5\x7a\xc6\xf6\x06\xd7\xc7\x59\xc8\x88\x9c\x76\xdc\xbf\xca\x05\xd7\x75\xdc\xb2\x3e\x82\x81\x24\xd1\x05\xad\xca\xd9\x70\xda\x89\xde\xad\x5a\x2e\x03\x17\xae\x5e\xf6\xf9\x91\x08\xcb\x29\x85\x54\xec\xf3\x23\x5b\x21\x27\xc6\xd3\xa9\xd9\x4e\x3e\xd2\x06\xd6\xc7\xc0\xdf\xab\x5a\x1f\xa6\x76\xd6\xcb\x5e\x3d\xc1\x6c\x60\x8c\x98\xe9\x59\xaf\xf3\x5b\x87\x80\x31\x32\x1e\xc5\x55\xb5\x93\xbc\xb0\xa6\xb9\x31\x70\xd2\xaa\xe6\xc6\xc0\xef\xaa\x1a\x14\x23\xcb\x83\xec\xa2\x8c\x2c\x99\xb1\x4f\x32\xb2\x6b\x84\x18\x21\x4b\x74\x95\x9e\xdf\xb2\x0a\x3f\x4b\x21\x24\x84\xcc\xe0\x21\xd6\x8b\x9b\x11\x17\xa4\x1b\x58\x10\x43\x37\x2c\x1d\x38\x58\x5f\x64\xce\xe0\x6c\xb0\x6a\x50\x8c\x2c\x4d\xfe\x2c\xa5\x1b\x3f\x4b\x99\xe7\xe6\x00\x25\x42\x24\xd2\x28\x38\x96\x89\x3d\x97\xc1\x5d\x3d\xf5\xfa\x09\xed\x33\x23\x2a\x92\x19\xf2\x6a\xe8\x4a\x11\x5f\xbf\x20\x13\xdb\x7f\x79\x65\x43\xe5\xd5\xa1\xfb\x4a\x98\x26\xa3\x0c\x18\xb4\x5b\x93\xfa\xe6\xb4\xc3\x03\x7a\xa4\x87\x2c\xc8\x7a\xe2\x67\x8d\xa2\xf6\xc5\x70\x19\x65\xb2\x26\x88\xba\x51\x94\x13\xb8\x5d\xa3\x62\x10\x27\x2c\x95\x51\x5d\x04\xdc\xae\x51\x71\x8d\x93\xdd\xa8\x12\x5d\x9c\xd2\x6d\x21\x25\xbb\xb1\x9d\xb2\x05\xe9\x64\xc5\xf9\x25\x70\xbf\x9a\x06\x5a\x35\x20\x46\x1d\xac\x09\xf2\xd8\xac\xd0\xaa\x3d\x31\x2a\xbb\x0a\xc9\x3e\x73\xf8\x57\xb5\x27\x46\xdd\xf6\x44\xd5\x26\x18\x55\x19\x73\x7a\x85\xf9\x48\x78\x7d\x35\x0d\xb4\x6a\x31\x8c\x8a\x56\x24\xda\xbe\x0e\xdd\xbd\xdb\x9a\x71\xf7\x2a\x8f\x6a\x55\xd3\x40\x2b\x8f\x6a\x2d\xd8\xf8\x38\x0b\x07\x90\x9a\x1b\x0f\x42\x6a\x13\x8c\x1d\x16\xbc\x4a\xbb\xb0\x02\xe9\x55\x43\xe1\x70\xb9\x61\x35\xb3\xb3\x6a\x40\x8c\x86\xb1\x45\xc4\x7c\x35\xd1\xb3\x26\x05\x7f\x63\x72\x08\xa0\xaf\x43\x07\x8f\x88\xf9\x05\xfd\xad\x7d\x76\xf8\xa7\x2a\x68\x3f\xfd\xfc\xed\x17\xc8\x6f\x75\xff\xb8\xdc\x70\xc1\x9b\xd2\x26\x2c\x94\x86\xd0\x5e\x9d\x8f\x37\x5d\x11\x8b\x5f\x4d\xe5\xac\xe9\x7c\x8c\xc9\xc0\x5d\x87\xd5\xcc\xce\x9a\x7e\x7e\x9c\x29\xbd\x85\x10\xc3\xcf\x8f\x03\x78\x4a\x6d\x88\xd9\xe0\x84\xb2\x72\x2d\x73\x35\x2b\xb4\x72\x0f\x73\x25\xef\x73\x7d\x9c\x85\xfe\xd6\x8f\x61\x0d\xae\x65\x5e\xd0\x52\x7f\xeb\x5c\xa9\x8e\x02\x75\x74\xfb\x31\x37\xe4\x56\xad\x80\x11\x4e\x8e\x4a\x32\x24\x15\xd5\x60\xa0\x6f\x8f\x15\x10\xbe\x3b\xca\x46\xc1\x08\x24\xfd\xfd\x13\x42\x57\x38\xff\x83\x50\xdf\xca\xd5\xca\x75\x84\xe3\xd5\x28\x08\x09\x49\x45\x17\x30\xdd\xad\x66\x0b\xb8\xec\x56\xb3\xe1\xa3\x56\xae\x56\xae\xa4\x76\xae\x52\x6b\x76\xf8\xd9\x11\xe1\x85\xde\x2a\x3a\xbd\xd0\x5b\xfb\x82\xa3\xc2\x9a\xfc\x78\x38\x39\x9a\x1b\xc3\xc9\xf1\xb7\x03\xad\x78\x6c\x93\xe1\x78\x35\x46\x86\xab\xaf\x0a\x1d\xae\xfe\x4f\xc8\xa3\xac\x9a\x1b\x23\xec\x95\x10\x13\xe9\xd6\xa0\x20\x98\xb7\xa6\x9f\x90\xe1\xab\x8d\x87\xbc\xf0\x13\x22\x0a\xd4\xc6\x7a\x92\xb7\xea\x77\x4a\xa2\xea\xdb\xfd\x8e\xd4\x2a\x0d\x21\x6b\xa4\xbe\xd5\xa3\xbb\x55\xb0\x13\xef\xf7\xae\xbf\xde\xe3\x37\xb3\xb3\x1e\x23\x60\x22\xcc\xb8\x19\xb0\xfa\x5e\x55\x3d\x46\xc0\xb4\xcb\xaa\xea\x97\xd3\x6c\x2f\x5e\x72\xa4\xbd\x78\xf9\x9c\xad\x6a\xfe\x15\x76\xaa\x09\x61\x6e\x1b\x7a\xb1\xe3\x74\xab\xaa\xc9\x0a\xad\xe9\x34\x84\xb7\x7b\xab\xb9\x5f\x32\xd9\xa9\xca\xd1\xab\xc8\xc9\xec\xac\x47\xeb\xe3\xdf\xd5\xa3\xf5\x5f\x52\x99\xca\xf8\xe5\xac\xab\x8c\xdf\xd2\x91\xca\xf8\xe7\x8b\xbc\x59\x88\x1e\x38\x1f\x2b\x71\xcf\xc7\xd2\x91\xda\xd7\xb7\x6f\x8f\x22\xd7\xa1\xbb\xd5\x8a\xef\xc1\x3c\xab\x06\xdf\xca\x89\x6e\xcd\x4a\xdc\x53\xea\x88\x4e\xa9\x8b\xa2\x92\x7c\x2b\x44\x55\x92\x1f\x85\x28\x6e\xc9\xf8\x60\x4f\xdc\x2a\x58\xde\xce\xa9\x47\x2b\xf2\x72\xea\x75\x5b\xd5\xc7\x35\x3a\x55\xb9\x0a\xf8\x21\x83\xb3\xc0\x4a\x96\xd9\x82\xcc\x46\x58\xb3\x92\x40\x6d\xfc\x51\x12\xa8\x8d\x3f\x4a\xbe\xd3\xae\x3a\x44\xf5\xcb\x1b\x36\xf5\x68\xc5\x0f\x16\xc4\xad\xfa\x25\x8a\xb6\xde\xaa\x6e\xa2\x68\xeb\xad\xae\xe6\xd1\xce\x7a\x54\x28\x51\xb4\xf5\x28\xc9\x8f\x52\xe4\x0c\x61\xfa\x88\x32\xf0\xeb\x5c\x39\x22\x9e\xc3\xa9\xf7\x75\xa0\x43\x68\xc2\xf9\x87\x9f\x0f\x30\x2f\xb8\xc5\xf3\x51\xa1\x5f\x9f\x67\x56\xfd\x7e\x15\xa2\x1a\x05\x24\x98\xd6\xa3\xd9\xbe\xf8\x30\xb7\x36\xc2\x97\xf1\x3e\x0e\xff\xcb\xf6\xd4\xe3\x78\x75\xe1\x48\x63\xa8\xf3\x42\xd2\x93\xc6\xb0\xe0\x5e\x14\x35\xdb\xbc\xec\xc6\xed\xc7\x88\x3a\xb2\x1a\xaa\x09\xa6\x55\xdd\x35\x79\xb4\xb3\xaa\x9d\xe6\x85\x66\x23\xe7\xa1\x4e\x2e\x23\xaa\x2a\x2b\x12\x4c\x57\x69\x05\x9e\x3e\x37\xe1\xff\xf0\xc2\xf4\x82\x95\xd2\x2e\xfc\x50\x1a\x42\x47\x04\x4c\x30\x1d\x09\x12\x95\x2c\xd1\x05\x93\x90\xdf\xa2\xbb\x66\xc2\x02\xe6\x3a\xc3\x6a\x0e\x69\x55\x77\x99\x34\x5a\xd5\x5d\x33\x21\xcb\xd5\x4e\x33\x61\xc4\x93\x4d\xb1\x20\x94\x83\xb2\x9a\x09\x65\xf5\x24\x7b\x85\x4d\xa4\x3a\x9a\x09\x0e\x7d\x6e\x3b\x09\x87\xaa\x9d\xa6\x3e\xaa\xda\x69\x72\xe9\x6d\x55\x1d\xcd\x24\x79\x67\xdb\xc5\x3d\x78\x5c\x32\x5d\x56\xf5\x8f\x19\xa6\x55\x0d\x33\xef\xee\xc7\xb7\xd0\x6e\x3c\x42\xa8\xbd\x9c\x8f\xdf\x94\xfe\xda\xe2\x9f\xb7\x33\x87\x68\x9f\x37\xc6\xf4\xe3\x6a\x73\xe8\x58\x95\xc7\xf3\x46\xc4\x3e\x2e\x2f\x57\x13\x55\xe5\xb1\x29\xa4\x55\x01\x3c\x6f\x17\xdf\xd5\x26\x6a\xb6\x72\xeb\xe9\x82\x74\x19\x41\x38\x1f\x69\x10\x51\x37\x1f\x84\xe8\xf3\x1c\xc8\x7a\x22\xf9\xe6\xe3\x7a\x22\xdb\xe6\x23\x57\x21\xdb\xa6\x07\x87\x64\x7c\x2c\xc8\x6f\x91\x40\x26\x98\x56\x25\xd0\x7c\x1c\x60\xd8\x0d\x54\x26\xe9\x21\x0b\xd2\xab\xb0\x66\x09\x16\xc3\x65\xea\x75\x3e\x92\x86\xa7\x7d\x8f\xb4\xe0\x69\xdf\x23\x2d\x90\x33\x5a\x65\xee\x99\xb1\x44\x1f\x49\xc3\xc3\xbf\x47\xd2\xe0\xf5\xd3\x2a\xeb\x9b\x33\x5a\x0f\xeb\x93\x33\x5a\x0f\xeb\x13\xdc\x5a\x0f\x73\xe7\xb0\x93\xf4\x39\xe3\x74\x3f\xd2\x11\x0f\x60\xd6\xc3\xdc\x3a\xb0\x87\x9b\x33\xe6\x05\x57\x4c\x2e\xb8\xf5\x2d\x69\x29\x75\x72\x73\x51\x3d\xfc\x9a\xf1\x70\x48\x4b\x59\x90\x5e\x25\xbb\x81\x8d\x40\x96\x4a\x9d\x05\x99\x4a\x8e\xd2\x82\x96\xd2\x0d\x42\x50\xeb\xe1\xaa\xc2\x91\x0e\x59\x2a\x0b\x3e\x94\x26\x61\x05\xde\x42\xa6\x5d\x02\x26\x1b\xb5\x1e\x02\x26\x22\xb5\x1e\x8a\x2d\x48\x5c\x9e\xaa\xab\xb3\x60\x7a\x92\xa6\xb2\x60\xe6\x63\x3b\x89\x96\x20\x47\xa9\xce\xda\xfd\xf8\x16\x32\x93\xcf\x81\xd6\xcc\x6c\x54\x97\x5b\x22\xe4\xaa\xa2\x7a\xe8\x4a\x87\xf6\xc1\xae\x99\x3a\xb4\x87\xae\x88\x2a\xad\x87\xae\xaa\xd3\x2e\x5d\x55\xc5\x86\x5c\x56\xa7\xbf\xb5\x2a\xa7\xbd\x9d\x8f\xe9\x15\x96\xcb\x6c\x98\xcb\x87\xea\x1a\x07\x11\xe4\xd2\x54\xd3\x4f\x2b\x39\x4a\x0b\x5a\x55\x15\xd2\x2b\x89\xa1\xa9\x52\xb0\x6b\x4c\x4e\xad\x87\x18\x9a\xe4\xcd\x06\xc5\xd4\xed\x24\x0f\x67\x41\xe4\x93\xa2\xa0\x49\xc0\xc5\xaa\xe4\xdf\x6e\x37\x86\x35\x5b\x15\xfc\x7b\x96\xbb\x29\x91\xfa\xf9\x2d\x55\xb9\x46\x1c\x42\xd6\xb3\x28\x0d\x76\x3e\xd3\xde\x9c\xba\xea\xf0\x95\x57\xdd\x86\x9c\x49\x8c\xa0\xa9\xdb\x49\x76\xd0\x82\x4c\x9d\x52\xa5\xcb\xec\x4a\x15\x5d\x47\xae\x10\xad\x64\x98\xae\x52\xba\xd1\x31\x91\xb8\x45\xb2\x92\x52\xba\x60\x11\x32\xcf\xca\xba\xee\xea\x2b\xeb\xba\x24\xea\x78\x39\xa2\xac\xa7\xcf\x1e\x51\x3e\xf1\xcb\x6b\x99\xab\xf9\xa6\xf5\xe7\xf8\xd0\x37\x67\x7c\x81\x49\xf4\x28\xf9\xe2\x8c\xbe\x0b\xfd\xb8\x0a\xdf\xc0\xf3\x31\x62\x03\xb3\x66\x06\xd6\x64\x56\xf2\xf1\xf2\x4a\xfd\x59\x15\xd6\xe4\xcf\x8f\x11\x57\x59\x61\xc6\xa5\x40\xf5\x9f\xe1\x04\x32\x37\xc1\x79\xde\x3f\xc3\xdd\xab\xac\x01\x31\xe0\xc8\xac\x6c\xe3\xda\x9f\x9a\xb5\x27\x46\xf8\xdb\x26\xac\x94\xde\xc2\x4e\x69\x17\x7e\x29\xa5\x21\x4e\x28\xab\x79\x46\xe6\x7d\xd6\xac\x6c\x1b\x2c\x60\x56\x98\x11\xfb\x59\x4d\x2c\x9a\x03\x91\xf3\xb3\x1b\x0e\xe1\xb4\xcb\x7a\xe6\xfb\xc0\x46\xe9\x23\x64\x80\xf7\x81\x6f\x4a\x99\x1c\x02\x45\xab\x49\x49\x73\x62\x4e\x9d\x3e\x7b\xe8\x78\xfa\xcc\xa1\x63\xcd\x8a\xba\x89\x75\x65\x9e\x91\x59\xa1\xd5\x3c\x23\xd2\x40\xd7\x6f\xfd\x18\xfb\x29\x63\xc5\xce\xe9\x78\xd5\xd5\xd3\x01\x3a\xde\x09\xc1\x66\x4d\xb1\xe9\x78\x1d\xa0\x7e\xe6\x19\x11\x2f\xaf\xd4\xac\xa1\xa6\x9f\x79\x46\xf4\x42\xdf\x9a\x66\x35\x5f\xf8\x30\x59\xa9\xf9\xc2\x24\xca\x4a\x7a\x0f\x1d\xcf\x00\x49\x03\xad\x59\x99\xfa\x72\x80\xca\xd4\x17\xbb\x64\xdc\x83\x59\xe7\x3e\x74\x5c\xa5\x56\x85\xc9\x7b\x66\xe3\x85\xd3\x7d\x46\xf4\xc2\x87\x39\x7d\xf6\x48\x32\x6b\x4d\x7a\x06\xc9\xeb\x82\xd5\x07\x5c\x6b\x56\x4c\xbe\x1c\xa0\x5a\xc2\x53\xc6\xac\x96\xe0\x99\x96\x9a\x55\xa1\x5c\xa7\x5b\xb3\x3a\xf3\x2d\x79\x3b\xfc\xb7\x23\x52\x67\xbe\x11\xc0\x67\xbc\x64\x6b\xd6\xac\x88\x7d\xbb\x82\x0e\xff\x8d\xbe\x3d\xe3\x7d\x4b\xde\x8a\xc9\xb7\x2c\xa9\x41\xc1\x65\xbb\x35\x2b\x35\xdf\x98\xcb\x59\xfb\xe2\x3d\xec\x15\x23\xe2\x3a\xdd\x6a\xf6\xd3\x7c\x63\x5e\x99\xfc\xc5\x4b\xb1\x0b\x3a\x04\x1c\x9e\xac\x86\x79\x4b\xed\x5a\x97\x1f\x87\xaf\x66\xd3\xa1\x3d\x33\x49\xe8\x6b\xcd\x2a\x3a\x6e\xd7\xad\x59\xcd\xf6\x91\x36\x9c\x9c\x8f\xa2\x40\xed\xe4\x41\xa2\x89\x63\x3e\xe8\x5a\x73\x3b\x10\x11\xa4\xb2\xfa\x28\x19\xd4\x30\x1f\xac\x2d\xf3\xc8\xe6\xc7\x99\x74\xea\x3e\x6c\xa7\x9f\xb9\xfa\x28\xcd\xfa\xf9\xd8\xaa\xec\x95\x74\xc5\x76\xc6\xfc\x28\x37\x14\xfc\x9c\x49\xd6\xdc\x4f\x29\xd3\xee\xc4\x92\x43\x5a\x73\xff\x65\xe6\xee\xfa\x16\x5e\x57\xf0\x7f\x9d\x1b\x75\xd5\x17\xd1\x6e\x7e\xd3\xfc\x62\xa9\x70\x2f\x64\x35\x85\xb4\x9a\xee\x34\xbf\x4e\x86\x6b\xc2\xe9\x66\x35\xfb\x89\xd7\x5e\x57\xe9\xa9\x0a\xea\x76\x4d\x48\x30\xad\x26\x43\x4d\x0e\x3b\xab\xc9\x50\xf3\x3b\xfc\xb8\x0b\xbf\x94\x5a\x15\x73\x53\x14\xfc\x5f\x27\x43\x8b\xe1\x8b\x61\x6a\x5a\x99\x0f\xb8\xd6\xb2\xf5\x40\xeb\x5c\xc5\x54\x49\x95\x6a\xbc\xc9\xba\x3e\x7e\x84\x74\x63\xeb\x90\xe6\x9b\xac\x95\x64\xa8\x66\xfa\x69\x25\x19\xaa\x75\xfd\xe8\x92\xfc\x2d\x93\xc3\x55\x80\xcd\x37\x59\x2b\x77\xff\xb5\xae\x1f\xcd\x33\x77\x8d\x04\xd3\xd5\xae\xbd\x72\x80\xb7\x1f\x2b\x45\xba\x9d\x54\xa6\x6e\x35\xbf\x60\xe3\x63\x7f\x2b\xdf\xec\x05\x5d\x10\xa1\x12\x0e\xc1\xe1\xdf\x54\xe5\x89\x2c\x57\x4c\x2e\x48\x37\xe2\x16\xbe\xf8\xb8\x0b\x59\x85\x60\x80\x49\x31\x19\x59\xc8\x00\x1f\xab\xe2\x38\x93\x2b\xfa\x16\xf4\xb7\x8c\x28\x39\xfc\xc7\xaa\x1c\x7e\x54\x21\x44\x18\x76\x12\x3d\xcf\x7d\x7e\x0b\xc2\x64\x61\xaf\x10\x2a\x24\x70\x35\x5f\x5d\xad\x24\x70\x2d\x68\xbb\xcc\xc6\xcd\x49\x21\x64\xd6\xcc\x64\xad\xdc\xe7\xd7\xba\xc7\xb7\x50\xdd\x82\x9b\x80\x49\xef\x5a\x90\xa9\xcb\x96\xb2\x57\x49\x3e\x57\x23\x75\x75\xfd\xf6\xc0\x09\x64\x80\xdc\xd4\x54\xb9\xde\x6f\x41\xa8\x3d\x37\xa1\xed\x66\xe1\x07\x58\x84\x10\x43\xb1\x5d\x88\xe1\x10\xb0\x6e\x36\x29\x5a\x0b\x0e\x4a\xa9\xf9\x41\xf2\x91\xb1\xb5\xa0\xa5\x5d\xc8\xc4\x96\xf3\xb1\x0d\x59\x1a\x9b\x72\x0e\xb5\x3f\x2e\x68\x3d\x90\x8f\x2b\xed\x1a\x63\x7b\x78\xe1\x91\x25\xeb\x23\x84\x8f\x6a\x16\xd2\x8d\x74\x4a\xad\x99\xf1\x66\x4c\x95\xc3\x38\x44\xd1\xd6\x52\xab\x90\xb9\x4a\xe7\x63\x6b\x6e\x42\x28\xb6\x32\x84\x7c\x86\xe0\x6f\x71\x2d\xc8\x23\x6b\x3d\xe3\x5a\x70\xc3\x66\xf3\x09\xd3\x4a\x5a\xd9\x82\x15\x48\x27\x3d\xcd\x25\x35\xac\xf1\x48\xe9\x7d\x71\x4b\xe6\x82\x7e\x4c\xaf\x0c\x8c\x3d\xdc\x5d\xec\xf3\xfd\x08\x61\xd8\x56\x85\xf4\xb9\x85\x90\x4e\x76\xa8\x8e\xdb\x96\x2a\x17\x16\x36\x92\x37\x57\x55\xfe\x16\x43\x95\xfb\x0b\x17\x6c\x94\xfe\x32\x73\x77\x7d\xcb\xcc\x29\xea\x74\xba\xb9\xeb\xb0\x75\x4f\x8d\x0f\xeb\x7b\x6a\xcc\xeb\x82\x8d\xf7\x4d\x57\xa9\x5d\x46\x75\xf1\x76\xe6\x82\xd4\x1c\x07\x52\xb3\x32\x46\x1f\xbc\x28\x63\x8a\x8b\xaf\x50\xa9\x78\x1a\x47\x8a\x54\x17\x5f\x19\x53\x71\x3c\x8e\x50\xa9\x12\xac\x72\xa2\xca\x91\x0a\x06\xf2\x3e\x6b\x91\xf5\x09\xde\xad\x55\xd6\xaf\x32\xa8\x62\x83\xe0\xdd\x5a\x65\x7d\x2e\x88\xaa\x55\x6e\xf6\xd8\x98\x6b\x40\x9b\xcf\x8e\xd6\x2a\x73\x57\x69\x5f\xc1\x50\xa1\xfd\x2a\x37\x57\xa4\xf5\x91\x13\x64\x76\xd6\x2a\x83\x7a\xb8\x5b\xe5\x48\x0f\x77\xc9\xf6\x5a\x90\x4e\xe6\x47\xc8\x6f\x65\xb2\xd6\x6d\x97\x86\x3c\xeb\xad\x72\x15\xa1\xbd\xb5\xa6\x53\x0a\x0d\xe6\x22\x0c\x60\x15\xda\x90\xbd\x72\x36\xe4\x0c\x7d\xf0\x92\xed\x24\x5e\x76\xc9\x76\x92\xc3\xdd\x52\x2e\x21\x94\xa3\xb8\x22\x0d\xb4\x56\x15\x4e\x57\x00\x2b\xae\xb8\xf4\xa9\x56\xc9\xac\xa3\x7e\xb9\xe7\xb4\xf5\xee\x88\x24\x33\x4f\x64\x8f\xb8\xea\x12\xbb\xe2\xaa\xb3\xb9\x4e\xbe\xe9\x82\x5b\xb6\x55\x69\xb2\x63\x99\xf1\xd0\x68\xeb\x1d\x53\xec\x08\x33\x9d\xee\x23\xcc\x48\x12\xad\x55\x22\xe4\x55\xd2\x5a\xd5\x3f\xfa\xe0\x55\xca\xe9\xd8\xf4\x47\xd4\x85\xe3\x75\xb9\x03\xc3\xf4\x48\xaf\x70\x41\x15\x57\xdc\xc5\x54\xab\xab\x10\x2e\x99\xab\x10\x2e\x59\xbb\x84\x0c\x50\xe9\x15\x0e\xb0\x9c\xd2\x37\xf0\x94\xb2\x82\xce\xb3\x8e\xf4\x91\x6d\x3a\xd2\xa4\xa4\x2d\x08\x6b\xa8\x25\x42\x7a\x56\xf2\x85\xe3\x75\xda\x03\x33\xfd\x08\xc2\xc0\xdc\x38\x92\x8f\xc4\xcf\x5a\x5d\x14\x1e\x29\xad\xd5\x45\x19\xce\x86\x92\x6f\xb8\xdc\xad\x09\xa1\x9c\xc6\x6f\x47\xf8\xb1\xbf\x75\x36\x94\x8b\x43\xd1\xae\x5c\xd4\x09\xaf\xae\xe0\x70\x80\x2e\xca\x90\x61\xd5\x3f\xfa\xe4\x55\x85\x33\x5d\x32\xd7\x48\xcf\xb9\xba\x46\x44\xef\xd6\xaa\x4a\x99\x18\xc8\x47\x12\xea\x2a\x73\xfd\x5b\xeb\x53\x8a\x75\xc9\xa6\x43\xd0\xac\x9b\x38\x0f\xd5\x15\x9c\x4a\x24\x17\x85\x1b\x93\x6a\x75\xda\xa7\x32\x56\xa3\x6f\x4a\xb1\x1a\x7d\x1e\xfd\x16\xad\xbc\xe9\x0a\xb6\x5f\xee\xf1\xb7\x3e\x5d\x40\xc5\xb3\x4e\xf7\x11\xcf\x3a\xce\x47\xe2\x7a\x7c\x5b\x5d\x04\x5d\xe3\xa2\x19\xe7\x89\x6c\x75\x4d\x0c\xcf\x3d\x12\xf7\xc5\x08\x8e\xc4\xe5\x86\xa4\x5a\xd5\x30\x2f\x34\xe8\x11\xa2\x2f\x7a\x75\xa4\xa6\x67\xae\x55\x1b\xe8\x8d\xe9\x59\x35\x7a\x3c\x64\xad\x76\xf2\x2d\xdf\xd8\xab\xb7\xd3\x1c\xe7\xe3\xce\x6f\x9b\xf0\x05\x64\x22\x3d\x82\x3d\x12\xf7\x8d\xa4\xaf\x5a\xfc\xbc\x42\x5a\xab\x1a\xc6\x13\xd9\xaa\x49\xe4\x89\x6c\x8d\x53\xd5\x97\x52\x7b\xa5\xd8\x70\x36\x3c\xaf\x6d\xce\x06\x61\xb3\xb5\xa9\x70\xde\xac\x42\xd5\xac\xe1\x9e\xde\xda\xd4\x3f\x86\xcd\x56\xed\x98\x0f\x42\xf4\x88\x67\xbd\xdd\xe6\x5c\x7d\xd8\xdb\xe1\x9e\xd3\x05\x83\xd2\x03\x27\x30\x84\x9b\x7e\x9b\xe3\xd5\xf9\xe5\x9e\xd3\x05\xa9\xd9\xf1\x7e\x30\x3e\xb8\xe7\x74\x41\x16\xe5\x3e\xa5\x5f\x3e\xb6\x1b\x4e\xac\x36\xd0\x07\x1b\xb7\x6a\x03\xe9\xfc\xb6\x33\x22\xe8\xb7\x9d\x11\x71\x72\xd6\xce\x10\xa4\x0d\x8d\x9e\x8f\x73\xa5\x4a\xd1\xdb\x6d\xa7\x1b\x6c\x72\x1f\xe1\x4d\x0a\x69\x6d\x76\xe3\x0b\x73\x37\xbb\xf1\xc5\x32\xab\xcf\x29\x65\xea\x9e\x53\xca\x88\xd4\x4e\x5f\x27\x47\x3d\x40\x0a\x69\x6d\x6a\x27\x1e\x43\xad\x4d\x85\xc3\x7d\x4a\xb5\x9d\xaa\xe4\x85\xa7\x09\x27\xd0\x9a\x1d\x6f\x3e\xbf\x65\x62\x75\x4b\xbe\xec\x92\xd5\x53\x8a\xbf\xd7\x34\x37\x3c\x18\xae\x3f\x21\xdd\x40\xff\xf8\x38\x6a\x25\x07\x6d\xc1\x07\x58\x85\x4c\xec\xcf\x8f\xf9\x2d\x2a\x25\x3c\x09\xe6\x92\xab\xe6\x4b\xaa\x95\x4c\xb1\xc6\x4b\xaa\xeb\xb7\xd6\x8c\x82\xad\xa7\x66\xf9\x08\x55\x66\x82\x69\x6d\xa8\x85\xb8\x24\x6f\xa4\xa6\x49\xa3\x95\x87\x19\x17\x64\xda\x11\x93\x3c\x7f\x7a\x5f\x2a\xba\x48\x12\x30\x3a\x24\x12\x3b\x7b\xaa\xb2\xd0\x47\x55\x95\x85\x47\xbf\xdc\x1f\xb5\x20\x53\x87\x86\xe1\xf9\xd3\xf5\xb1\xa5\xe8\x10\x6e\x6a\x5a\x10\x11\x64\x9f\x49\x29\xad\xe4\x73\x35\x92\x46\xef\x4b\x1d\x12\xbc\x25\x53\xb9\x5e\xa9\xf1\x0c\xe9\x2a\xad\x42\xda\x8d\x03\x99\x67\xa4\x4a\xdc\x78\x65\x2a\x0d\x9f\x21\xad\xdc\xb6\xd4\x78\x86\x74\x95\x32\x1b\x37\x27\x2d\x2a\x8d\xb8\xf1\xba\x5b\xfc\x32\x81\x6b\x7d\xbb\xb5\x20\x39\x67\x8d\xf4\xd3\x55\x93\x5d\x46\xfd\xf0\x50\xe1\x82\x0f\x30\x0b\x0b\xb0\x08\x07\xd0\x3e\x4a\xce\xcd\x8f\x91\x7c\x5c\xb6\xb4\x20\xe2\xaa\xf9\x5b\x04\x21\x89\x63\x0b\x52\x73\x72\x7c\xec\xde\x54\x97\xf7\x96\xba\x5d\xc0\x1b\xea\x26\xad\xac\x91\xc9\xba\x4a\xed\x06\xd6\x06\x57\x31\x35\x1f\x34\xad\xdc\xbd\xd4\xe2\x71\x4d\x50\x65\xc1\xcd\x4c\x95\xbb\x97\x9a\x89\xad\x95\xbb\x97\x16\x64\x72\xd0\x6c\xa1\x6b\xcc\x55\x4c\x2d\x0c\x83\xe6\x62\xd3\x05\xa1\x14\xbc\x30\xd3\x5e\x2b\x37\x33\x35\x13\x5b\x2b\xb9\x6f\xcd\xc4\xd6\x4a\xb2\x5b\xe3\x5d\xd5\xf5\xdb\x47\xc8\x1a\xdd\xd6\x8c\x14\xe1\xfd\xc0\xe6\xbb\xaa\x95\xcc\xb8\xc6\x43\xaa\xeb\xb7\x0e\x10\xcf\x8a\x6b\x9c\x5a\x3c\xc8\x09\x9e\xe6\x6b\xc1\xf5\x4a\x95\xab\x99\x16\xb4\xcf\xa7\x94\x3e\x23\xcc\xc2\xf3\x69\x92\xec\x16\xe4\x63\x6c\x84\xe0\xb6\xa5\xca\x3d\x4e\xcd\xe4\xd4\xca\x3d\x4e\x2d\x74\xba\x6b\x1c\x08\x47\xca\x19\xdc\xb6\x54\xb9\x9a\xa9\x9d\x5c\x55\x35\xb9\xb9\xaa\x95\x9b\x9a\xda\xc9\x55\x55\xb1\x07\x97\x2f\x55\x2e\x5f\x6a\x91\x11\x1b\xe4\xeb\x35\x72\x55\xd7\xc7\xfe\x56\x3d\x20\x93\xe9\x92\xab\xab\x43\x1f\x9c\x6c\xbe\x05\x99\x76\x65\x4c\x41\x8a\xa8\x9c\x7d\x0c\xb5\x76\x05\x61\x71\x72\x14\x84\x3a\xd2\x5d\x09\x54\x30\xd3\x55\xdd\x51\x50\x83\x4d\xb6\xe2\x75\x9c\x4a\xfa\xde\x82\x99\xd2\x2c\x6c\x40\xab\x92\xcb\xea\xa9\x6a\x52\xca\x00\x79\x1d\xa7\xf2\x38\xdd\x82\x7e\xec\x00\x25\x7e\x45\x6c\x45\xb3\x71\x0b\x6a\xf3\x35\xd4\xda\xe5\x32\x4f\xa0\xb5\x11\x48\x6c\x5d\xa5\x7e\x8c\x20\xd4\x0a\x08\x83\xa6\xbb\x4c\x57\x21\xc2\x26\x4b\x72\x5b\x72\xed\x72\x99\xe7\xd3\x4d\x96\xf4\x7c\xba\x4b\xed\x46\x3a\x37\x39\xb4\xa1\x9c\x49\x0c\x6c\x3c\xac\xba\x4a\x8b\x90\xdf\x62\xb7\xfa\xb0\x6a\xed\xd2\xa4\x81\xcf\x1a\x14\xc1\x6d\xc9\xb5\x4b\x84\xcd\x05\x95\x7f\xf5\x8d\xbb\x34\x69\x58\xb4\xe6\x86\xef\xac\xd6\x1e\x07\xfa\x5b\x7b\xe5\x0a\xc6\x81\x2c\x99\x1c\xca\x1b\x36\x35\x94\xb1\x5c\xa0\x54\x43\x42\x6a\xf8\x8a\x5a\x1f\xe6\xbd\xd6\xb8\xce\x6f\x99\xc9\xdb\xd9\x60\x41\xe3\x3a\x1f\xbf\x80\xa7\xf4\xcb\xc7\xbf\xbc\x8f\xbf\x85\x3e\x78\x48\x56\xfa\xe0\x4d\x39\x61\x90\xb4\x86\x0b\x09\xb5\xeb\x63\x4b\x11\x75\x4d\x5e\xef\x98\x80\x4d\x5e\x37\x0c\x3a\x24\xab\xce\xbe\x66\x48\x0b\x1d\x71\x15\x2e\x7e\x77\xaa\x1e\x21\x21\x22\xe1\xe2\x07\x8b\x1f\xae\xb6\x91\xcd\x4d\x5e\xd7\x53\x0e\x97\x97\x1b\x92\x6a\xb8\x9e\x3a\xce\xe1\x02\x86\x9d\xcc\xd6\x1c\x76\xc3\xaa\xf0\x07\x8e\x49\x14\x88\xab\x63\x12\x19\xca\x1c\x8a\x67\x43\x99\x9b\x76\x4c\x38\x40\xc5\x73\x0c\x1b\xb2\x5d\xac\xd8\x90\x16\x02\xaf\x33\x5c\xed\x90\x34\x5c\xde\x40\x2b\x72\x49\x68\xf3\x2d\xd8\x1a\x8a\x76\x5e\x7b\xad\xe1\x1a\x19\xca\xdc\xb4\x54\x0c\x65\x0e\x17\x65\xb8\x82\x5a\x2a\xc3\xc9\xc1\x4e\x0d\x8f\xba\x43\x89\xab\x5b\xdd\x94\x40\xbc\x70\x53\x43\x89\x6b\x32\x6e\xd3\xac\x19\xca\x27\xed\x18\xf3\x6b\x9b\x22\x87\xfc\xda\xca\x73\x73\x8d\xd7\x5e\x57\xa9\xdd\x40\x93\x1f\x23\xcf\xfc\xda\x63\xe4\x79\x7a\xcd\x7d\x3b\x8d\x94\xd9\x05\xf9\x78\xa2\x9c\x43\xc3\x94\xf7\x6f\x2a\xc9\x9a\xcd\x97\x62\x6b\xb8\xbe\xd3\xd5\x77\x41\xa7\xcb\xed\x82\x7a\x3e\x7d\xec\x45\xbd\xec\x50\x96\xeb\x56\x1f\x03\x71\xe2\x96\x84\x8b\x62\x44\xf5\xb1\x17\x8d\xa8\x6e\xca\xb6\xe9\xf0\x15\xfc\x06\x58\x37\x4d\x86\xe9\x82\x6a\x89\x7a\xf2\x1d\xae\xa0\x67\xdb\xe1\x92\x4d\x59\x5f\x83\x62\xa2\xca\x9a\x06\xc5\x94\xf5\x5d\xb2\x89\xad\xc9\xed\x34\x8d\x37\x68\xd7\xc7\x4c\xce\x4b\x99\xaa\x51\xc0\x3d\x4e\x95\xbb\x6b\x16\x64\xf5\xd9\xbe\x08\x83\xb5\x43\x0d\xf3\x62\x43\xe6\x58\xc0\x26\xf2\x36\x6d\x04\x12\x79\x6b\xd4\xf3\x5b\x66\x83\x1d\x89\x78\x29\x28\x14\xde\xaf\xb0\x93\x56\x85\x7b\x70\xac\x67\xcf\xd4\x43\x42\x7a\xb1\x9b\xd1\xd4\xf3\x2f\xf9\x48\x42\x72\x6b\xe0\x58\xcf\x2f\xe7\x4a\xc5\x6e\x28\x77\x68\x1f\x1b\xca\x7d\xac\xe7\x97\x53\xa7\xb9\xec\x99\x7a\x53\x78\xbf\x15\x8c\x9a\xc0\x6e\x3a\x1c\x03\xf9\xad\x24\xd4\xaa\xf5\x10\xfd\x18\xc8\x6f\xf4\xfc\x31\x90\xb9\xd4\xb8\x86\x46\xee\x5b\x32\x93\xea\xde\xc3\xdf\x36\x21\x4c\xd7\x0e\x2c\x94\x76\x21\x04\xdc\x0e\xec\x94\xda\xe7\x61\x43\x7f\x83\xc5\x6f\x0e\xf0\x31\xb5\xdd\x64\x38\xa6\x36\x77\x29\xd7\xe8\xa7\xf4\x4d\x29\x53\xe5\x46\x41\x48\x56\x1f\x2c\x86\x90\xac\x3e\xec\xc6\x1d\xeb\xf9\x03\x93\x1d\xeb\xd9\x28\xf0\x90\xca\xdc\x0a\x38\xd6\xb3\x41\xe1\xc7\x3e\xe6\x46\xa8\x1a\x12\x9d\x07\xdf\xc7\x5c\xfe\xe0\x0b\x1f\x73\xf9\xa3\x10\x95\xca\x3c\x07\x8f\x38\xa5\x74\x43\xf1\x6c\x9c\xf7\xb1\x9e\x8d\xf3\x0e\xb5\xfe\x17\x62\xef\xf7\x81\xfe\x36\x0b\xfd\x2d\x43\xe0\xa9\xa0\x1a\xda\xa9\x9e\x5e\x1f\x63\xfa\xcb\x41\xff\xb1\x9e\xbf\x8e\x28\x0e\xa4\x21\x15\x2c\x67\xdb\xed\x92\xca\xbe\x9c\xe7\x1d\x63\x9a\xd7\x6d\xdb\x25\x59\xe9\xdd\x6b\x5b\xfb\x06\x6d\x23\x91\x77\x41\x6b\x6e\x42\x96\x1b\x99\x3a\x2e\xce\x07\x34\x97\xc7\x45\xe4\x55\x67\x1b\x61\x70\x9b\x54\xe3\xb2\x9a\x36\x2e\x17\x85\x6d\x84\x71\x6d\xdd\xd5\xb8\x7f\xa6\xf1\x70\xec\x2a\xb5\x1b\xf6\x19\x79\x3c\xf6\x81\xf4\xfa\xd8\xdf\x6e\x51\xd7\xc8\x18\x6e\xc3\x48\x6e\x6e\xd9\x58\xb0\x50\xfa\x08\xbf\x40\x4b\xb7\xe9\xd9\xb8\x61\xa6\x8d\x24\xe5\xa0\x7e\x47\x92\x36\x30\xd3\x47\x92\x36\x90\xe5\x24\x01\xaf\xdf\x32\xfc\x84\xb1\xa5\x99\xee\x5b\xb0\xed\x82\xae\xcc\xeb\x6d\x17\x74\x35\x8c\xa8\xe6\x36\xd2\x05\x1b\xa5\x49\xc8\x4c\xa2\x16\xc6\x1d\xfe\xb6\x08\x6d\xe8\x40\x7f\x5b\x85\xfe\x56\x38\x58\x5f\xbc\xb2\x71\x0f\xdb\x3d\xd0\xdf\x76\x21\xab\x5f\x0e\x84\x72\x6e\x87\x80\x30\xeb\x88\x76\x5f\x7b\x6d\x64\x1b\x37\x9f\x77\x6d\x5c\xfc\xb2\x20\x55\x21\xe9\x7d\xde\xb5\x5d\x52\xce\xe3\x00\xab\xbf\xdd\x26\x43\xbb\x24\xa4\x47\xca\xa9\x56\xc5\xc1\x8b\x8e\x07\x79\xbd\x0b\xfa\xb1\x4b\x86\xda\x1f\x8f\xc4\x8f\xda\x1f\x04\x5c\xb7\xeb\x39\xa5\xfc\xb6\x39\x04\xa9\x2e\x9f\x8f\x59\x50\x69\xf2\x41\x0f\x70\xb1\xe9\x82\x0c\x30\x1f\x68\x43\x0e\x61\x5a\xb3\x7d\xde\xc6\x66\xbb\xa4\xd8\xec\x5c\x49\x93\x59\xc6\x41\x1e\x8f\xec\xe4\x60\x50\x9c\x9c\x60\x1d\x9e\xc1\xe5\xc2\x8d\x4b\x64\xda\x49\x02\xe6\xa1\xeb\x46\x12\xf0\x82\xb7\x10\xc6\xe9\xb6\x8b\x8d\xc0\xe5\xa4\x0b\x8e\x5d\x95\xf4\x6c\x94\x34\x77\x95\x36\x1f\x74\x6d\x97\xe4\x5d\xd0\xc6\xcb\x3b\xfa\x95\xe0\x1f\xc5\x05\x94\xac\x0a\x26\xaf\xfe\xce\x28\x92\x24\xc2\xcc\x07\x5c\x1b\xc9\xd5\x6d\x78\xb8\xdb\xe3\x40\xa6\x19\x45\x3e\x74\x51\xb9\x7d\xb4\x99\x13\xdc\x2e\x69\xa1\x0c\xd8\x57\x5a\x28\xca\xe3\xb0\xd4\xe1\x4a\x1a\xc5\xe1\xc6\xf9\x98\xd5\x96\x52\x3c\x09\xd6\xcf\x1a\xd5\x15\x93\x52\xaa\x2c\x88\xba\x3d\x39\xc1\x7a\x52\xc3\xc3\x5d\x5d\xa7\xe1\x45\x4d\xba\x4e\x3c\xef\xba\xa0\xbf\x1d\xf4\xca\xe5\xad\xc3\xdf\x56\x21\x8b\xd0\xec\x06\x92\x4f\x87\x67\x70\xd6\xdb\xb8\xbc\x65\x41\x98\x5b\x5a\xd0\xf9\xe5\x02\x96\xe6\x5b\xb0\xed\x92\x34\x1a\x22\x47\x67\x69\x78\x6f\x93\xce\xd2\xe0\xda\xde\x76\xc5\x81\xcc\xb3\x4b\xa6\x4f\xaa\xef\x34\x38\xaf\x6d\x97\x4b\xd6\x06\x02\xd8\x35\x6a\x8a\x0d\x67\xb2\xb1\x9d\xac\x87\xc3\x43\xaa\x0b\x26\xe1\x66\x94\x84\x76\x22\xfb\x76\xc1\x24\x2c\xc0\x5b\xd8\x81\x8f\x70\x50\x55\x16\x5a\xd5\x81\x2f\x4a\x8b\xf0\x4d\xa9\x70\x6f\x9a\xb5\xe4\xb4\x13\x33\xdd\x92\xf3\xdc\xc3\x4e\x9e\xd2\x2d\x27\x92\xda\xa9\x3b\x1b\xca\x54\x23\xaa\x43\x21\xda\x11\xb1\xa1\xd4\xd4\x0b\xe5\x4a\x99\x05\x3f\x54\xe5\x10\x5c\xdf\xc7\xf1\xb2\xbe\xc9\x79\xf6\xac\x37\xd4\xc6\x1d\xf2\x8e\xe7\xfc\x76\xaf\x42\x72\x62\xc3\xa9\x73\x62\x3d\x09\xd6\x2b\x3b\xb9\xb9\x7a\x65\x3e\xc2\xda\xc8\x27\x6e\xbe\xba\xda\xb8\x37\x64\x41\xa6\x0e\x27\x6d\x44\x58\x55\x13\x32\x57\x4e\x4e\x0c\x87\xd0\x85\xd0\x95\x12\x17\x1f\xb5\xa5\xfb\x40\xd6\xc8\xd9\xc0\x47\x6d\xc9\xe1\x07\x9a\x3c\x39\x5e\x23\xac\x23\x9f\x8f\xe9\xb3\xc3\xe7\xac\xb7\xa5\xd3\x49\xb4\x53\xe4\x53\x15\x93\x63\x9f\x07\xdc\xad\x83\x37\x06\xdc\x9d\xec\x33\xfe\x6d\x4b\xf6\x79\x48\x66\xb6\x3b\x24\x33\x8d\x02\xae\xf1\x6d\x49\xd1\x3e\xc2\x8f\xb3\x90\x35\x52\xc4\x0e\x25\x83\x32\x95\x50\xee\x96\x94\xf4\xc3\xa9\xd3\x64\xf0\xb2\xa9\xd0\x28\xd0\xfb\xd5\x39\x24\xaf\x77\x41\x7f\x8b\xbb\xab\xbf\x37\x86\xb4\xa1\x04\xc6\xdd\x6d\xe9\x74\x63\xda\x0d\xc6\x3b\x31\x37\x92\x0d\x19\x9d\xad\xcf\x36\xa6\xeb\x5b\x7e\x19\xc7\xbf\xbe\x65\x79\x6d\x76\xb2\xb9\xa1\x7f\xe7\x5b\xb0\x2d\x9d\x66\x65\x14\xb5\xfe\xc4\x34\x49\xa7\x59\x04\x7f\x3a\xbf\x95\x8e\x34\x02\x26\x52\x33\xfd\xfc\x2d\x35\xff\x2c\x65\x5e\x55\x29\x1e\x39\xc7\x4f\x08\xe1\xa8\x52\xa6\x12\xe8\x27\x44\x5a\xab\x52\xa6\x84\xa3\xd2\x78\x29\x26\xd5\x30\xaf\x33\x55\xa7\x14\xd2\x50\x87\xe8\xa2\xea\x1b\x8e\x17\xbb\x80\x3a\x83\x83\x28\xf0\x96\xce\xc7\xa8\x94\x74\x3e\x96\xc9\xb4\x27\x5e\x4a\x20\xed\x89\x97\xf3\x7c\xaa\x0a\xd8\xe8\xe7\xc7\x08\x95\xf3\x31\x0a\x36\xa9\xac\x5e\xb8\x7b\xf1\x13\x32\x1b\xb8\x8a\xe3\xc5\x29\xb2\xde\xdf\x30\x64\x3c\xd4\x3f\x2f\x59\x50\x85\xc3\x8d\xc7\x2d\x59\xea\x4d\x54\xa1\xfe\x79\x2b\x54\xfc\xf8\xed\x5c\xa9\x7f\xde\xca\x98\xf3\x31\x56\xac\xfe\x1e\x89\xcb\xab\xd4\x9a\x31\x7a\xb8\x56\xa3\x91\xc7\xbc\x3e\x66\x80\x6f\x07\x18\x56\xc5\x96\x30\x97\xa2\x2e\x88\xb4\x0e\xdb\x55\xe2\xaa\xd9\x8c\x02\x8f\xd3\x90\xe3\x3d\x0d\x61\xe4\x25\xf5\xde\x5b\x19\xa3\xa2\xfb\xc8\x37\x2a\xba\x8f\x0a\x47\x73\xe3\xe3\xfa\x6a\x5f\x78\xb6\xad\xfb\x37\x88\xe4\x6e\xb7\x9a\x4d\x0f\x56\x07\x6f\x70\x25\x54\xbb\x55\x74\x1f\xf9\xe8\xb4\x0b\x1f\xdd\xea\x3d\xfd\xdb\x38\xdd\xd8\xbe\x7f\xbb\xd5\x7b\x1c\x66\xb7\x5b\x45\x47\x24\x77\xbb\x55\x74\x1f\x44\xec\xad\xa2\xfb\xec\x7d\xa1\x76\x6b\x32\x7c\x14\xa2\x8e\x88\xdb\xa5\xda\xad\xa3\xc5\x15\xc7\xed\x56\x3b\x71\xc5\x71\xbb\xf5\x9d\x08\xd6\x4e\x97\x03\xdc\xe7\xd3\x0b\xde\xc2\x09\x7c\x84\x6f\xa0\x55\xb1\xa0\xdc\xdf\xb1\x60\xa2\xd4\x9a\x87\xdd\xb0\x57\x5b\x32\xa4\xe3\x49\xea\xdf\xde\xba\x61\xdf\x6d\xe2\xa7\xcb\x01\x92\xd6\x9c\x2e\x07\xb8\x0f\xb3\x17\x0c\xe1\x67\x43\x14\xfb\xbc\xb6\x96\x48\x3a\x96\xf3\x62\xb9\xb9\xec\x63\x41\x46\x84\x01\x35\x77\x74\xf6\x82\x8f\xf0\x0b\xcc\x40\x27\xe7\xb6\x66\x38\x94\x0c\xe9\x36\x2f\x97\xec\xb6\x2a\xdc\x30\x52\xa2\x1b\xb9\xc8\x0b\xd2\xee\x4e\x2f\x5e\x35\x1f\x78\x6f\x68\xcd\xc9\x69\xb7\xe6\x14\x74\x03\x9b\xc8\x27\x6a\x1b\x6f\x5a\x2e\xc8\x4c\x3e\x36\xb4\x25\x43\xd2\xb1\x9c\xfb\xca\xe3\x05\x7f\x2d\xf8\x4d\x45\x4e\xfa\x95\xbe\x6e\xdb\x48\x81\x6e\x24\x1b\xaf\xd2\x2e\x64\x40\x8f\xed\x38\xeb\x8e\x8f\x20\xe9\xc4\x0d\x58\x0b\xfa\x71\x15\xb2\xbc\x28\x72\xb3\x8b\x13\xf7\x63\x35\xdf\xaf\x6d\x5c\xee\xb1\x60\x01\x5a\x33\xea\x96\xf4\xe9\x36\xf7\x0b\x3e\xeb\xb7\x07\x32\x73\x4e\x06\x47\xce\x8d\x6c\xea\x05\xa1\x32\x47\xa4\xa7\x4c\x72\xf5\x82\x9d\xd2\x22\x64\x79\xb3\x10\x31\x79\x67\xbb\x81\x63\x75\xa3\x8c\x27\x47\xbf\x8d\xfb\x3a\x1a\xe9\xc5\x77\xd2\x09\x9d\x0f\x92\x8f\xfb\x3a\x1a\xd9\xc6\xab\xd4\x8f\x1d\x02\xce\x20\xe9\xc5\x0b\x36\x21\x9d\x2c\xa7\x14\x5a\xe0\xb8\x60\x3e\x93\x3e\x63\x4f\x4c\x3c\xd6\xc4\x65\x5a\xcd\x17\x6a\xdb\x5d\xac\xea\xf4\x99\xdf\x72\x03\x56\x23\x51\x7b\x41\xa6\x9d\x2d\xe1\xc9\xe1\x6e\xba\x6c\x37\x63\x6a\x93\xb7\xdd\x7c\xbf\xb6\x91\xa8\xbd\xa0\x1f\x37\x21\x24\xd9\xac\xca\xd9\x38\xed\x6e\x41\x98\xae\xd3\xae\x84\x84\x1e\x98\x19\x69\x4d\x66\xf6\x82\x0c\x10\x0b\x82\xac\xdf\x05\x1f\x21\x14\x8b\xc9\x30\x8b\x84\x84\x8d\xe0\x2b\xb3\x8d\x54\xec\x05\xfd\x6d\x15\xfa\xdb\x10\x32\x39\x61\x55\x83\x11\x35\xdb\x45\xc1\x92\xb7\xbd\x20\x22\x16\xb5\xc0\xfb\xb5\xeb\x63\x1b\xc2\xae\xe1\x16\x86\x66\xc6\x70\x23\x51\xbb\xcd\xfd\x86\xcd\xfa\xd8\x86\x26\x93\xd3\xec\x33\x76\x0d\xb9\xd7\x0b\x06\xf0\x94\xb2\xbe\xcd\x21\x60\xd7\x90\x6c\xdd\x66\x75\xc9\xd8\x82\xe0\x29\xdc\x05\xe9\x24\x19\xc3\x8d\x64\xeb\x05\x99\xd8\x76\xe0\x66\xf6\x47\xa9\xc9\x63\xb7\xed\x51\x6a\x12\xcb\xdc\x1e\xc5\x64\x75\x72\xfa\xf9\x98\xe1\xbb\x82\x78\xbf\xe9\x72\x05\xb7\xf7\xbb\xa0\x9d\x74\xf8\xdd\x4e\xa2\xac\x1e\x05\x21\x0e\x6d\xe2\x35\xf9\x05\x37\xf1\x3f\x0a\xb3\xa6\x3c\xc6\x46\xf0\x49\xda\xf6\x28\x91\x9a\x6c\x85\x8d\x30\x75\x77\x1f\x25\x12\x0f\xd6\xb6\x47\x89\xd4\x24\x42\x69\x83\xbb\x86\xdb\x23\xef\x37\x05\x85\xc4\xd0\x90\x84\x8f\x12\xa9\x61\x99\x3e\x4a\x24\x8e\x60\xdb\x23\xb3\x93\xf5\x9b\x74\xa4\x27\x27\xb2\x49\x47\x7a\xea\x1b\x3f\xf2\x7e\x77\xc9\xa4\x2b\xce\x51\x93\x9e\xb3\x6f\xd2\xb6\x47\x01\x45\x3c\x72\x7b\x94\x48\xfb\x5d\xd9\xf5\xf1\x81\x89\xd2\x10\xde\x94\xfe\x0d\x82\xbf\x3b\x7a\x85\x19\x6f\xd0\xb6\x47\x61\xa6\x03\xfb\x28\x63\xb8\xd3\x38\x25\xe9\x88\x47\x67\xdb\xa3\xc8\xc1\x9f\x4d\xba\xd5\x93\xab\xa7\x52\x92\x8e\xa2\x5b\x55\x17\xda\x6e\x08\x3b\x1f\xd3\x10\xd7\x47\x25\xee\xf4\x5a\x10\x1a\x54\x12\xf0\x48\x4d\x7b\xe4\xf5\x70\xf4\x32\x77\x38\x7a\x15\x6a\x60\x3f\x3d\xed\xc0\x2f\xa5\xf6\x0a\x8f\x95\xe4\xea\xc6\x2b\xb3\xab\xd4\x86\x64\xc1\x76\x20\xb4\x20\xaf\x0f\x04\x52\x92\x42\x07\x42\xf4\x91\xb9\x71\x33\x53\x92\x42\x47\xf7\xb7\xe7\xe3\x37\xa5\x21\x84\xac\x64\xee\x21\xbf\xca\xcd\xdc\x26\x95\xf4\xb2\x4d\x2f\x6e\x8f\xcc\xad\xc7\xfa\xc8\xcd\x2f\xa5\x08\x66\x3a\xcf\x7f\xae\xdf\x26\x21\x1f\x63\xa6\xfb\x1a\x68\x7b\x64\xdf\x77\xf7\xe3\x26\x64\x05\xa5\xfd\xb7\x43\x90\xb9\x89\xa2\x6d\x8f\xcc\xbd\x4d\xfc\x3b\x25\xa9\x9b\xb0\xd9\x94\xd4\xd5\x5c\x45\x9b\xf4\xb2\x4d\x03\x4d\x49\x45\x47\xde\x67\x4a\x6a\x36\x8e\xac\x52\x92\x9c\xb5\xf8\x1f\x59\xff\xed\x92\xc9\xeb\x04\xc6\xb6\x47\x6e\xd6\xe2\x7f\x64\xdf\xb7\x24\x2a\x47\x92\x15\x9a\xf4\xa3\x7d\x0e\xb4\x3d\x32\x28\x69\xa0\x29\x49\xed\x3c\xf8\xd9\x1e\x19\x94\x34\xd0\xf6\x28\xf8\x79\x01\xa5\x3d\x4a\x7a\x5e\x40\x69\x59\xf6\x25\x30\xb6\xf1\xb4\x66\x33\x0d\xb4\xf1\xb4\xe6\x82\x03\xf8\x08\x99\x1c\xd5\x2f\xc7\x5f\x2d\xab\x07\x48\x03\x4d\xfa\xd5\xf3\x33\xac\xaa\x08\x59\x23\x59\xe3\x23\x79\xab\x24\xb9\x04\xa9\x91\x7a\xde\x4c\xf4\x4c\xba\xd9\x3e\x07\xda\xb2\x1c\x4a\xe8\x6b\xd2\xeb\x9e\xdc\x5c\xd4\xb2\x82\x9f\xd7\x41\x5b\xd6\x3e\x26\xb5\xb3\x65\x19\xf6\xeb\xf0\xd3\xf9\x2d\x43\xc0\x01\x98\xba\x16\xe4\x7c\x2f\x68\x37\x4e\xa9\x43\xb0\x54\x62\x90\x61\xf5\x07\xb2\xc6\x34\xaf\xa7\xb4\xac\x41\xbc\xef\xb1\x5d\x1f\x27\xe1\x07\x68\x9f\x21\x95\x2c\x87\xea\x3c\xe8\x66\x4f\x62\x5d\x1b\x49\xde\x0b\x32\x04\x4d\x60\x7d\x09\xfc\xea\xde\x09\x7d\x6d\x24\xb5\x2f\x08\x4b\x6e\x0e\xed\x66\x7a\x36\x5e\xcb\x5c\x90\xaa\xb6\xb1\xd9\xfb\x05\xa7\x90\xe4\xbd\x20\xbf\xdd\x1c\xda\xcd\xf4\x6c\xe4\x7c\x77\xde\x1d\x5d\xa5\x56\x85\xa9\xc2\xb5\x5d\x0b\xd2\xab\x6e\x55\xd2\x46\xf7\xb7\x4e\x5d\xff\x65\x02\xd7\xfa\x16\x56\xd8\xea\x76\x41\x26\x72\xfb\xd1\x0b\x42\x1a\x8f\x10\xcd\x8d\xff\xde\x7d\x85\xb4\x91\x5b\xbe\x60\x05\x26\x21\xbf\xcd\x8e\x0f\x4b\x85\xfc\xf0\xde\xf5\x86\x72\xce\x42\x7f\x5b\x84\xf4\x2a\x92\x10\x2a\xcb\x8c\x4f\x5f\x89\xad\x80\xce\x93\xa5\x0b\x5a\x73\x58\x55\x13\x76\x60\x17\x5a\x55\x08\xa1\xd0\xc2\x10\x92\x13\x19\xf6\x6a\x0a\xed\x15\x52\x84\x6c\xf9\xee\x1b\xa5\x8d\x3c\xed\xde\x39\xc0\x4b\x6c\x14\x74\x9f\x1d\x6d\x64\x62\x2f\xe8\x88\x42\xb8\xd5\x02\xd7\x92\x75\x12\x3d\xd7\xc7\x4d\xc8\xd4\x55\xab\xc2\x87\x21\x9d\xba\x9b\xe8\x99\xd8\x73\x58\x70\x02\x6f\xe1\x1b\x68\xaf\xb0\x54\x48\x98\xee\xfd\xc6\x52\xc9\x12\xec\x8d\x26\x67\x93\xa1\x93\xf7\xb9\x4a\x69\xf7\xe9\x36\x54\x84\xf6\xb9\x0a\xa1\xee\x9e\x84\xcc\xa4\xe4\xfc\x40\xb0\x5c\x69\xd6\x4d\x03\x4d\x5c\x69\xb6\xa0\x1f\x5b\x33\x76\x0c\x3b\x12\x0b\x22\x72\x24\x67\x1d\x9e\x3b\x59\xf3\xb4\xd4\x9a\x1d\x91\x34\xc9\x01\x5e\xba\xd3\x23\x64\xf5\x25\xa4\x47\x9a\x8c\x53\xd5\x87\x8f\x19\xbe\xfe\x4f\x96\x90\x32\xae\x05\x3b\x21\x0b\x32\x39\xae\x6f\x96\xae\x5c\x50\x62\x4e\x5b\x71\x15\x88\x39\x4d\x6c\x5f\x74\xde\xff\x5c\xf0\x7c\x1c\x7c\x6c\x43\x08\xb3\xe2\x2a\xf0\x98\x4a\x2b\x4e\x7b\x86\xe9\xd8\x73\x58\xd0\xdf\x56\x21\x8b\x72\x27\xe1\x87\x52\xd6\x57\x67\x89\x1d\x89\x6e\x0a\x69\x62\x47\x62\x41\x7f\x9b\x85\x76\xa3\x0b\xad\x8a\x3e\x17\xd7\xe8\xb6\x66\x07\x78\xfb\xb1\x43\x48\x55\x08\x11\xde\xfe\x76\xf2\xb1\x52\x53\xa7\xa5\xd8\xab\x8a\x17\x5a\xec\x95\x4e\xcb\xad\x20\xac\xe8\xdb\x62\x27\x79\xb4\xb3\x91\xd4\xbe\x20\xc4\xff\x34\xa1\x35\xfb\xdb\xf0\x63\x4b\x91\x9a\x6c\x2b\xf4\xae\x87\x53\xec\x55\x75\x05\x9f\x24\xa4\xdd\xc7\x4e\xe2\xe1\xdc\x4a\x42\x7d\x98\x5b\xd1\xe7\x91\x5d\x51\xf0\x57\xc7\xab\x24\x24\x5e\xb5\x15\xf5\x00\xaf\x74\xb6\xa2\x1e\x68\x0e\xdf\x9a\x09\x5f\x6d\xc5\x9a\x79\xa5\xb3\x15\xab\x6a\x2e\x99\x62\x93\x00\xd5\x56\x94\xb1\x7a\x47\x77\xfe\x65\x38\x67\xef\x0d\x5f\xf8\x56\xa6\xea\x2b\x15\xc5\x33\xd7\x29\xa5\x5b\x31\xe9\xd1\x60\x39\xcd\x4a\x0b\x4a\x4d\x5d\xa7\xa2\xf0\x6e\x88\xab\x72\x6a\xc6\x17\x2e\xa7\x2a\x34\x0c\xfb\x24\x0b\x32\x82\x53\x15\xa6\x09\xfb\x24\x0b\x42\x83\x85\xaa\x3c\x38\x24\x77\xb3\xfb\x1a\x68\x23\x1d\xb3\x93\xe8\xb9\x7e\xeb\xc7\x58\x1b\x45\xf1\xdc\xc3\x9a\xfd\x2d\xf2\x98\x9d\x90\xee\x6b\xa0\xad\x28\x71\x39\xa2\x4b\x6c\x8c\x2c\xc8\xc7\xa7\x21\x59\xb0\x15\x21\x73\x55\x19\x91\x27\x76\x45\x8b\x21\xec\xb3\x12\x37\xf0\x67\x8b\x22\x36\xba\xbf\x65\xbc\xe1\xa2\xd8\xe7\xb0\x93\x35\x0b\x6d\x37\x84\xd0\x42\x2d\x42\x16\x5f\x85\x43\x90\x69\x23\xd3\x71\x41\xe8\x48\x69\x1d\xc3\x9a\xed\x95\x04\xdb\xfc\x78\xfa\xb1\x55\x29\x53\xd5\x3f\x44\x95\x36\x72\x0a\xbb\x0f\x6f\xb6\xa2\x05\x41\x90\x69\xba\xdb\x2d\xa4\x93\xed\x11\x22\x27\x14\xde\xc3\x25\x53\x3b\x0d\x97\x4c\xf1\xac\xc3\x73\x3b\xcf\xc3\xd9\x70\x62\x79\x00\xa6\x95\x38\xa5\x90\x68\x58\xaa\x88\x55\x3c\x0f\xf9\x55\xfb\x89\x0b\x94\x5a\xbd\x0e\x7c\x80\x56\xa5\x5a\xe8\x07\xee\x9a\xab\xfa\x87\x97\x57\xd2\xed\xe4\x4c\xd4\xfe\xed\x6c\x78\xcc\x46\x56\xdd\x82\x13\xd8\x85\x10\xbf\x73\x35\xe5\x23\x67\x83\xa8\xd2\x56\x95\xe5\x3c\xb5\x92\x6e\x35\xdb\x54\x02\xc5\x29\x45\xf2\x39\x57\xd3\x11\x29\x17\x09\xe7\x4c\xb7\xca\x8a\x70\xce\x74\x3b\x1b\x9c\x77\xa5\x47\xeb\x83\x87\x37\x5b\x55\x7a\xbd\x1c\x82\xe2\x8a\xb7\x34\x5b\x55\x5c\x71\x55\x51\x7a\xd4\x30\xbc\xa5\xd9\xaa\xd2\x9a\xb7\x34\x5b\x55\x1e\xbf\xec\x95\x12\x97\xbb\x89\xd2\xa3\x15\x40\xe0\x64\xab\x4a\x15\x02\x27\xd3\xa3\x15\xf0\x86\x53\xaa\x52\xe5\x8d\x68\xaf\xda\x71\x6f\x28\xe7\x71\x51\xf4\x24\x1f\xd5\xfe\xdb\x05\x55\xc8\xe8\xfe\x55\xa5\xca\x1b\x9d\xf9\xa8\xf6\xb9\xf4\xb6\xd5\xc2\x6f\x75\xff\x1e\xd5\xfe\x87\xe5\x7e\xd4\x6c\x7a\x74\x55\x21\xc3\x3d\xb6\xad\x2a\x55\xb8\xc7\xb6\x55\xa5\x8a\x1e\xdd\xe3\x82\xea\xd1\x55\xa5\xca\x87\x2d\xb5\xaa\x54\xe1\xea\x9e\xf4\xa8\xe8\x3e\xec\x9b\x3c\x2e\xa8\x4e\x5a\x55\x14\x70\xbd\x6c\x7a\x54\xbf\x3a\x69\xb5\xfe\x0d\x82\xff\xeb\xf8\xd4\xcd\x3a\x74\x55\xb1\xa1\x07\x47\x2a\x72\xef\x5f\x04\xd2\xa3\x8e\xfc\xb2\x23\x51\xdb\x81\x99\xd2\x24\x64\x32\xda\x81\x0c\x48\x0d\xfa\x65\x7f\xb1\x2a\x18\x74\xe8\xaa\x82\x41\x87\xae\x2a\x09\x78\xff\xb2\x55\x45\x1d\xb7\xf1\xa4\x47\x2a\xd3\x65\xab\xca\xb6\xaf\x53\x25\xd1\x7d\x9d\x2a\x44\x5d\x5c\x68\x09\xf2\x9b\x16\xe4\x63\xf4\x6b\x5c\x76\x03\x8e\x0c\x23\x16\x2b\x1c\x19\x97\xf4\x1b\x7e\x8c\xb9\xcc\xd6\x5d\x37\x01\xb1\x91\xd0\xb4\x60\x50\x7a\x0b\x21\x76\x34\x6a\xe8\x0e\x91\xd0\xd4\x83\x4b\x72\x12\x1b\x7b\x0b\xd2\x0d\x4c\xcf\x48\x48\x4d\xf6\xf9\x7a\x24\x57\x01\x8d\x6a\x02\x62\x23\xdd\x69\x41\x3f\x6e\x42\x66\x32\xfc\xad\x42\x25\xfc\x2d\xba\x9a\x84\xa6\x05\x59\x32\xe4\x04\x0f\x60\xde\x89\x6d\xc0\x6e\xb6\x62\x23\x83\xa9\xf3\x00\xe6\x2a\xb5\x93\x98\x35\xe4\x28\x2d\xd8\x28\xb5\x57\x58\x39\xa4\x2c\xf5\xb8\xa5\x3a\x7c\x27\xb3\x15\x13\xd7\x71\x76\xdf\xc3\x6c\x64\x30\x2d\xc8\x78\xe1\xaa\xb8\xd9\x36\x21\xa1\xa9\xfb\x3c\x66\x23\x83\xa9\x9b\x90\xd8\x48\x4a\xea\xbc\x78\xb9\x7e\xcb\x88\x48\x48\x6c\x24\x25\x2d\x08\x4d\xc2\x82\xa1\xb3\xc4\xdd\x9d\x0b\xf2\x5b\x34\xb9\x39\x86\x8d\x2c\xe7\x05\xa1\x76\x74\x35\x49\x85\xa9\x91\xf4\xdc\x49\x1b\x5c\xa5\x76\x12\xa5\x41\xca\x52\x27\x6d\x70\xc1\x2c\x64\x80\x30\x5d\x3c\xd8\x7c\xe4\x28\x2d\xc8\x78\xd3\x29\xad\xc0\x26\x64\xf8\xa8\x94\xd0\x2b\x7b\xea\x29\x9d\x94\x86\x70\x53\x1d\x4f\x7a\xf6\x78\x88\x4e\x20\xcb\xb9\x9b\x72\x98\xd8\x14\x5d\x10\x9a\x6c\xa7\x94\x15\xc4\x4c\xf7\x79\xcc\x46\xda\x51\xf7\x79\xcc\xc4\xa6\x68\x37\x6d\xb0\x91\x76\xd4\x7d\x2d\x33\xb1\x47\xda\x7d\x2d\x33\xb1\x29\xda\x7d\x1e\xb3\xb5\xdb\xf1\x2a\x8f\xdb\x81\x36\xe4\xf0\x9d\x58\xd4\x3e\xaf\x65\x2e\xd8\x84\xf6\xb9\x0b\x3f\x40\x86\x9f\xcf\x78\xfd\x98\x9d\x02\x2e\x09\x5d\x90\x01\x22\xa0\xc8\x31\x5c\xf0\x11\x32\x04\xc5\x48\x96\x90\xd0\x8a\xe6\x18\xb6\x86\x56\x0c\xee\xc0\x6d\xed\xb1\x93\xb8\xe8\xec\xbe\x2e\xc8\x00\xbb\x35\xcb\x56\x8f\x9d\xc4\x36\x79\x14\x50\x3c\xe2\xd2\x9a\x02\x2a\x4b\x48\xca\x1c\x2e\xbd\x6d\x4d\x21\x53\xd8\x46\x69\xf9\x97\x2f\x70\xad\x6f\xed\x54\x11\x42\x47\x4a\x20\xdd\xbd\xa6\xc8\x29\x61\xc5\x55\xe8\xc7\x4d\xc8\x34\x2b\xcc\xb8\x5c\x37\x3d\x4a\xaf\xe2\xdc\xa0\xaa\x4d\x4f\x4c\x8f\xe2\x8a\x04\xc4\xf4\x28\x9f\x0c\xf6\x24\x21\xbc\x93\x8f\xb8\x4a\x6d\x57\xd2\x50\x5c\x95\x69\xbb\xd4\x5c\xa5\x05\xcc\x9a\xa8\xf2\x8d\xf2\x49\x47\x92\xbd\xd8\xee\x23\x9d\xad\x29\x9f\xf6\x23\x9d\xab\xf4\x7c\xcc\x34\x2b\x9f\x8c\x0c\x6d\xca\xa7\xaa\x04\x52\x20\x55\xce\x99\xb2\xe2\xaa\xb2\xd7\x91\xaf\xf3\x5b\x58\x50\x09\x44\xdc\x68\xca\x8a\xab\x8a\xc4\x6d\x4a\x20\x8f\xca\xb2\x32\x46\xdf\xb0\x29\x45\x9a\xab\xad\x9c\xe0\x99\x96\x94\x15\x39\xcd\x15\x94\xf5\xb9\x3e\x37\xb1\x8f\xdb\xc3\xd8\xcf\x26\x37\x37\x6c\xa0\x26\xa3\x78\x28\xc5\xb6\xee\x82\x74\x52\x71\xd5\x24\x3a\x69\x9f\xd7\x53\x52\x56\x7a\x75\xc5\x95\xd4\xdd\xd9\x04\xcd\x4a\x2f\xbd\xb2\xd6\x0f\x64\x80\x0a\x33\xfd\xae\xac\x30\xeb\xb2\xa0\xea\x97\x0b\x76\x52\x56\xb6\x79\x82\x95\x15\x66\x04\x5d\xa6\xac\x30\xeb\x52\x4e\x3f\xa5\xfc\x56\xf9\xd4\x51\xbf\x59\x81\x64\x58\x65\x53\x93\x07\x02\x38\x2b\x81\xc2\x21\x28\x72\x42\x5e\x50\xb1\x87\xda\x49\x6a\x0f\xa4\x66\x56\xa8\x70\x0d\x4e\x6b\x12\xa1\x27\x4b\xee\x10\x9b\xa0\x97\xb8\xe8\xb3\x93\x91\xb7\xa0\x55\x61\xc8\x74\x49\x74\x30\x75\x5d\x7d\x3b\x9c\x3a\x65\x8c\x67\x47\x5d\x7d\xeb\xd9\x91\x1b\xc6\xa6\xe0\xb5\x2e\x3d\x73\x17\x6d\xe2\xce\xd0\x1e\x63\xd8\x6e\x17\xda\xae\xbf\x45\x3e\xb9\xcd\x6b\x0a\x5e\x72\xab\x36\xa6\xab\xaf\xa0\x30\xcc\xb0\xab\x6f\xb9\xca\x26\xb9\xdd\x1a\x13\xfd\xd3\xd5\xb7\x13\xc6\xe9\x92\xb7\x81\x85\x5d\x02\xd6\x3b\xea\x52\x2c\x2f\x4f\x26\xb7\x6a\x63\xe2\xd1\x75\x49\x54\x77\xc8\x9d\xdb\x98\xf8\xb7\x5d\x8a\xd5\x3b\x72\x23\xd7\x24\xbb\xc4\x35\xa0\x0b\xbe\xf9\xd8\x21\x60\x30\xe6\x72\xe0\x87\x52\xe6\x99\x77\x29\x5b\x97\x62\x5f\x8a\x91\x72\x4a\x3b\xa5\x74\x83\xb7\x47\x52\x2e\x07\x52\x2a\x89\xbe\x20\xef\xae\xbe\x7d\x61\xaa\x74\x35\xea\x4b\xc9\xa0\xf5\xf1\x42\x8a\x66\xad\x0f\x02\xfc\x52\xd6\xdc\xf0\x04\xcf\x2d\xe2\xe0\x75\x91\x94\xdb\xf5\x6b\xc1\xff\x76\x01\x95\x04\x6f\x25\x9f\x9a\x9b\xa7\x47\x5a\x97\x6f\xde\x88\x8d\x2e\xdf\x70\x0d\x4e\xeb\x32\xca\x5b\x51\xd7\xce\xc7\x2c\x91\x7c\xc3\x35\x38\xc9\xcd\x66\x53\xd0\x5a\x97\x51\xb8\x06\xa7\x91\xee\xd4\x7d\x3c\x32\xb9\x15\x1d\x6f\x6c\x02\xb2\x9f\x16\xe4\xb7\xb2\x11\x57\xd9\xb4\x2e\x1b\x7d\x90\x40\x5d\x36\xe2\x05\xc8\xe4\xbe\xb5\x8f\x3a\xa6\xac\x11\xf0\xc1\x06\xea\xea\xf5\x8f\x12\x48\x23\xe0\x23\xd1\x29\xea\x3e\x8e\x48\x35\xaf\x8f\xd6\x65\xc1\x8f\x34\xa8\xe4\xe3\x3a\x9a\x94\xd5\xeb\x3c\x3d\x92\xb2\x8a\x9c\xb4\xb2\xd6\x65\xd0\x8f\x5c\xa5\x5c\xe4\x71\x91\xd6\x65\x50\xdd\x3d\xf7\xbc\x4d\x3a\x4b\x5c\xd6\xd9\x43\x77\x2f\x2b\x26\x8d\xe0\xeb\xcf\x81\x90\x86\x82\x90\x1b\x66\x92\x9b\xdc\x61\x14\x5e\x97\xb9\xbf\x0e\x41\xf5\xcb\x0b\x90\xad\x6b\x6d\x70\x29\x6a\xeb\x5a\x1b\x5f\x2c\xe0\xae\xb5\x61\x9c\x5d\x56\x39\xeb\x86\x75\xe5\x04\xcf\x45\xb6\xae\x9c\xf8\xca\x55\x18\x14\xe3\xc2\xcf\xec\x18\x14\x3e\x17\x99\xb8\x9d\xb3\x9b\x56\x96\xdc\x5c\x1f\x97\xd2\x0b\x99\x3a\x2e\x17\x25\xfb\x31\x8c\xc2\xfd\x9b\x7d\xe8\xa4\x91\xcf\xd5\xc9\x23\x5b\xa5\x49\x08\x21\x95\x03\x83\xd2\x5b\x48\x9f\xb1\x3e\x46\x92\xf5\xb1\x20\x7c\x6a\x32\xb9\x4f\x3f\x3c\xa4\x22\x81\x6b\xc1\x41\xe9\x81\x1f\x20\xe3\xd5\x49\xe3\x8e\x86\x05\x99\x2b\x78\x7d\xe8\xa4\x91\x75\xd5\x4f\xc2\x1a\x79\x55\x0b\x5a\x15\x73\x95\x64\x9c\x7a\xa0\xbf\x6d\x42\x3f\x16\x72\xd8\x49\x22\xd5\x82\xac\x60\xb5\x1b\x58\x01\x24\x52\x2d\xf8\xe6\xb7\x7c\x7c\x2b\xdb\x30\xc4\xc7\xad\x2c\xc7\xf2\x1e\xb7\x7c\x04\xc3\x0e\x83\xf4\x48\x68\xea\x3e\x44\x99\x3c\x2e\xe0\x21\xca\x3b\x71\xe9\xed\x82\x10\x03\x5c\x36\x8c\xd9\xe3\x56\xd0\x05\x99\x49\x24\xfd\xb8\x1d\x60\x17\x2a\x19\xe0\xb2\xc1\x0d\x2c\x89\x7b\x3f\x3b\x19\x6a\x0b\x66\xa1\x55\x15\xa1\xdd\xa8\x42\x08\xa9\x0b\xc3\x6e\x34\x61\x07\x76\x21\x4b\x06\x5b\x8d\x47\x22\x84\xad\x86\x87\x54\x64\x43\xf5\x93\x92\x46\x36\x54\x1f\xfa\x3f\x25\xf9\x5b\xac\x80\x82\x5a\x18\x9e\x4a\x75\xa9\xfd\x91\x26\xd1\x12\xc3\x43\xaa\x1e\xe7\xb7\xac\x2f\x4a\xc3\x77\x29\x53\xb9\x7f\x6d\xf1\x8f\x8c\xaa\x0e\x19\x25\x3b\x37\x88\x76\xf3\xd5\x92\x47\x29\xc3\x80\xbe\x90\x6f\x78\xb4\x32\x79\x94\x32\x74\x9d\x3c\x4a\x19\x39\xac\x8a\x11\xe8\xfe\x84\x04\xeb\x71\x17\x37\x7b\x2e\x38\x28\xf5\xb7\x98\xbc\x9e\xbb\xf0\x86\xe5\x2a\xb5\x2a\xe6\x26\xa4\x23\xcf\xb7\x3c\x59\x19\xbc\x08\xd2\x42\xb2\xd2\x1b\x0a\xe9\xa8\x20\x17\x43\x3a\x32\x18\xd0\x73\x97\x51\x5c\x6d\x64\xf9\x28\x78\xbb\xdc\xf1\xdb\xcd\x6e\x4b\x05\x79\x3c\x0a\x3b\xb5\x5c\xd6\xd9\x87\x0e\x8f\x87\x34\xe4\xbe\xad\x86\xe8\x95\x67\x63\x9e\xd9\x8c\x32\xec\x86\xed\x62\x7b\x79\x84\x33\x8c\x0d\x0c\x29\xd4\xa3\x32\x8f\x70\x46\x91\x70\xb2\x35\xc3\xbe\x21\xfd\x7a\x90\xe6\x39\xcc\x49\x76\x0b\xe9\xb7\x9e\xd9\xe8\xc2\x07\x18\x42\xa6\x4e\x3a\xd2\xe1\xe1\x5e\x89\x3e\x8c\x0d\x0c\x69\xa3\xb2\x95\x17\xd2\x46\x3d\x03\xb4\x2a\x68\x3f\xa4\x8d\xea\x00\x15\xc0\x15\xdb\xab\x28\x71\xab\x23\x52\xc4\x56\x47\x24\x6d\xe8\xf0\x84\xc4\x50\xa1\x7d\x32\xa7\x16\xf4\xb7\x74\xc3\xa3\x32\x32\xa7\xfa\xe0\x02\x96\x16\xd2\x46\x63\x37\xd2\xc3\xa2\xd1\x24\x51\x05\xb0\x87\x54\x21\x31\x34\xac\xab\xa2\xc4\xe5\x4e\x95\xc4\xed\xc1\x0b\xb2\x82\xcf\x81\xd0\xa4\xa4\xd2\x4f\x37\x9a\x10\x6a\xaf\xa7\x94\x8f\x25\x86\x8e\x7d\x5c\xea\xf9\x98\xf1\x4a\x0c\x1d\x9b\x3e\x5c\xfd\x8e\x2d\x16\xae\x7e\x77\x51\x5c\x6e\xa3\xff\x78\x04\x7c\x41\xe6\xca\x45\xe9\xd2\xa4\xab\xa0\xef\xc4\x65\x9d\xdd\xd7\x23\x5b\xb8\x28\x5d\x86\x2d\xa7\x94\x5e\xa9\xf7\xf4\xac\x42\x45\x67\xf8\x5f\xb8\x0a\xdd\xc9\x71\x9e\xbb\xfc\x5b\x1c\x20\x7e\x17\xf7\x7e\x2e\x08\xe3\x60\x12\x0e\xfd\x2e\x8f\xce\x48\x58\x5b\xb0\x0a\x91\x0c\x6a\x18\xfd\xae\x50\x67\x7a\x38\xe6\xd1\xd9\x08\x67\x83\xb3\xb2\x61\x34\x20\x99\x45\x9d\xfc\xb5\x05\x6d\x48\x93\x41\x95\xe2\x69\x58\xa8\x24\x4d\x67\x0b\x95\x64\xb0\xb1\x19\xa7\x57\x98\x39\x71\x7a\xe5\x00\xbb\x35\x4b\xa2\xaa\x14\x2e\x27\x4d\x1e\x8e\x91\x83\xb6\x60\x17\x5a\xf3\x81\x0c\x5f\x0d\x33\x14\xd7\x4d\xe8\x78\x71\x59\x87\x0e\x5e\xf4\x5f\x3e\xbd\xd8\x4f\x36\x5b\xa8\x32\x8d\x0d\x24\xd1\x66\x41\x38\x03\xf7\x76\x0c\x67\xce\x01\x0d\x09\x47\x3d\x37\x94\xe5\xea\xb9\x81\x9e\x8b\x9f\xa5\x10\xce\x29\xc5\xf8\x08\xb5\xe0\x90\xd7\xc3\x9a\x9d\xc8\x70\xaa\xd8\xe7\x0b\x4d\x40\x6e\x4c\xed\x97\xca\x8a\x1b\x53\xfb\xa5\x3a\xc2\xeb\xec\x97\x76\x9b\x5e\x67\xb1\x21\xbc\xce\x7e\x69\xa8\xcd\x6d\xa9\xf4\xeb\x3a\xa5\x5f\x20\xdd\xe0\xa6\x97\x7e\xa9\xac\xb8\xe9\xa5\x5f\x6a\x27\x0e\xe1\xfa\xa5\x86\x99\x6c\x5e\x79\x8e\x38\x26\x7b\x75\xf5\x74\x72\xfa\xb1\xbf\xdd\xc2\xac\x5f\x2a\x72\xde\x1a\x49\xf5\x74\x63\x1b\xc4\xfd\x52\x00\xbf\x1c\xa0\x42\x94\x5b\x53\x92\x67\x90\x26\x9d\xa5\x7a\x9d\x52\x7f\x4b\x43\xfb\x9a\x94\x05\xbb\x30\xf1\xf1\x29\xb5\xe6\x10\x5a\xd5\xf9\x98\xc9\x51\xb6\x91\x56\xd6\x2f\x65\xdb\x0b\xf7\xa0\xaa\x7e\x5f\x78\x38\xd5\xd9\xe0\x2c\xb0\x5f\x4a\xbe\x9d\x56\x96\xfa\xa5\xa8\xd3\x45\xad\x6a\x63\xd2\xca\xfa\x95\x0f\xa4\x1b\x2a\x67\x2e\x51\x49\x55\x15\xca\x4b\x24\xfd\x52\x10\x7a\x16\x58\x55\xa1\xef\x6e\x37\x8a\xd0\x9a\xcf\x6f\xad\x99\x21\x18\x82\x5a\xd5\x7b\x3b\x04\x75\x7d\x7c\x4a\x37\xe5\x54\x4d\xb1\x7d\x01\xcb\x2a\x6d\xc2\x17\x90\xb9\xc2\x83\xed\x97\x22\xf6\x8d\xe5\x52\xd5\x99\xa4\xa4\xf5\x4b\x89\x4b\x0e\x5a\xaa\xaa\x50\x1c\xda\x7e\x29\x53\x39\x83\xec\x57\x39\xa5\xac\x82\x32\xf5\x8d\x14\xf1\xf8\x96\x97\x36\x57\x69\x15\x32\x1b\xf7\x81\x0e\xa1\x09\x19\x42\x39\x90\xd9\x90\x36\x3e\xb8\x25\x55\x62\xf8\x48\x39\xc5\x52\x89\x5f\x3f\xe4\xe3\x6c\xa8\x15\x3f\x52\x8e\xca\x59\x57\x99\x4b\x51\xfb\xbc\x1c\x11\x02\x98\xa7\x17\x17\xdc\x03\x9c\xc9\x05\x45\x00\x4f\x7c\xa7\x4e\xea\xc5\x82\x90\x0a\x9a\x7c\xf2\x6a\x7f\xe7\x02\x80\x05\x19\x20\x8a\x7d\x26\x07\x88\xb4\x9e\x3c\x28\xd1\x49\xdb\xe8\x53\xbf\xcb\xe3\xea\x93\x57\xe5\x71\xb5\xcf\x36\x76\xee\x03\x58\x10\xda\x78\xec\x86\xe3\x65\x67\x64\x26\x79\xbf\xd9\x2b\x24\xa1\x87\xd9\x3c\xdb\xb8\xa0\xdd\x18\x4e\x8e\xdd\xc0\x82\xe0\x7e\xd5\x05\xf9\x18\xe2\x9f\xb7\xc2\x0d\x1d\x42\x36\xd4\x2a\xbd\x85\x76\xa3\x0b\x19\x20\x7a\xe0\x24\x47\xd5\xbf\x61\x8f\xdf\xb7\x16\x13\x17\xa8\xf6\xe9\x61\x18\x17\xa8\xf6\x79\xe3\x1a\x7b\x86\x3e\x39\xa3\xea\xa4\xe5\xf7\x69\xb8\x9f\x87\xe6\x26\x34\x75\xa2\xfc\xfb\xe4\xe8\xa8\x13\xd6\xdf\x7d\x5c\xb1\x13\xd6\xbf\x20\x2b\x86\x3d\x31\x39\x3a\xea\xbc\xfa\xdd\x79\x4d\x71\x95\x3e\xc2\x17\xa5\x07\x7e\x80\x2c\x20\xb7\x55\x76\x82\xfe\x17\x84\xab\xca\x29\x2d\xc0\x53\x5a\xf9\xd8\x4e\x0e\xda\xbd\xed\xa4\x4b\x04\x1b\xcd\x7d\x64\xb5\x4a\xed\xb3\x2b\x56\xfc\x2d\xfc\x4a\xd0\x7f\xe7\xad\xc5\xd4\x89\xb6\x5f\x90\x21\xd4\x03\xa9\x4a\x56\xc8\xce\x86\xe4\xcc\xd3\x8b\xa9\xca\x19\xdc\xf5\xd1\xd3\x73\xa0\x55\x31\x22\xbc\x85\x9e\x9e\x03\xfd\xb8\x08\x61\x94\x7a\xe0\xa4\x94\x11\xed\x4c\xa2\x05\x9b\x90\x15\x94\x51\x0a\x0c\x9a\x24\xc9\x8a\xed\xe5\xd1\xbe\x8f\x0d\xf6\x24\x85\x56\xc7\x2b\x49\x56\xb9\x4a\xbe\xa9\x72\x95\x8c\xc2\x33\x08\x9d\x38\xfe\x3e\x75\x0f\x3c\xda\x27\x39\x68\x95\x66\x61\x07\x16\x21\xc3\x6f\xfe\x56\x9a\x6c\x7e\x3c\xfd\x6d\x15\xda\xab\x26\x84\x54\x24\xe0\xd6\xfd\x6d\x11\x32\x75\x48\xeb\xd9\xce\x10\xaa\x10\x6a\x97\x44\xb9\x9f\xb1\x27\x69\xb2\xa1\x15\x93\x64\xd6\x64\x1c\x36\x09\x7d\x30\xb0\x27\xa9\xae\x39\x40\xe9\xaa\x39\x40\x04\xb0\xc9\x41\x9d\xfc\xf8\xce\x83\x81\xab\x2a\x7f\xeb\x00\xa5\xba\xa6\x56\xc4\x7c\x9c\x5d\x1e\xc4\x7c\xe4\x0d\xc0\xd4\x93\x54\xd7\xa5\xab\x38\x10\xc1\x80\x1d\x37\xbb\x7c\x24\xd5\x79\x96\x62\xc0\xc1\xec\xb2\x86\x54\xd7\xa5\x1c\xe9\xaa\x4f\x6b\xf6\xb7\x13\xda\x50\x5a\x77\xe9\x2a\xce\x6f\x07\xf0\xfc\xd6\x6e\xf0\x31\xcf\xfc\x25\x23\x0c\x26\x37\x32\xf6\x54\x0f\x84\xda\x25\xd1\x50\x59\xc5\x81\xf6\x99\xc9\xe1\x0a\xc6\xc4\x6d\xe7\x0b\x42\x75\x52\x0e\x77\x2e\x26\xa3\x13\x26\x6f\xbe\x27\x63\x08\x66\xc8\xce\xae\x3e\x21\x6d\xdd\x48\xfd\xc9\x8b\xf0\xc9\x90\x02\x72\x78\x56\x69\x17\xda\x6e\x15\xc2\x47\xca\xe3\x81\x76\x32\xe0\x80\x0c\x9f\xd4\x93\xa4\xe2\xa1\x8d\x01\x07\x64\xf8\xac\x52\x3a\xc9\x45\x12\xc9\xb0\x80\xc9\x45\x89\xc9\xb0\x80\x39\x90\x75\xc6\x01\xcc\x31\xfc\xf8\x97\x09\x5c\x9d\x27\x01\xd7\xb7\x76\x0a\xd9\x66\x90\xc0\x34\xa2\xcd\xa8\x80\xc9\x5b\x05\xdd\xf4\x81\x39\x21\x3a\x83\x04\xa6\xf6\xb1\x51\xfe\xd3\x53\x19\x63\x06\x26\xa7\x32\xdd\xd0\xfc\xc9\x13\x02\xc9\x20\x81\x39\x95\x4f\x12\x1d\x17\x14\x76\x43\xf3\x27\x6f\xbe\x77\xc3\xeb\x7d\x8b\x2f\x19\x06\x30\xb5\x8f\x8d\xb6\x9f\xaf\x0e\xa3\x48\x56\x2f\xc5\x95\x64\x45\xcc\x5a\x37\xda\x7e\xbe\x4e\x37\x0e\x7c\x03\x43\xb8\xfb\x6c\x04\xb9\xef\xe9\xa5\xa6\x68\xd7\x8a\x35\x64\x7c\xbe\xe8\x24\x59\xeb\x7d\x7a\x78\xd2\x94\xf4\x6f\x44\x8e\x31\x03\x53\xc3\xd4\x98\x81\xa9\x61\x6a\x34\xb6\x2f\xe6\x25\x63\x06\x78\x31\x6f\xc1\x22\x7c\xf3\xf1\x29\x65\x9e\x35\x2f\x38\x5a\xe9\xb7\x93\xf3\x96\x34\xb4\x36\x78\x4f\xaf\xf3\x28\x76\xf7\xc9\xb8\x64\x54\xc0\xe4\x6e\xbc\xd4\x14\xcf\x1f\xc4\x95\xd1\xd8\xf3\x83\x86\x31\x1a\x9b\x27\xe3\x16\x4c\x42\x7a\xf5\x9c\xaa\xe8\x95\xb2\xdc\x63\x0a\xa3\x04\x4e\xae\x90\x51\x02\xd3\x63\x0a\xa3\x04\x26\xd7\xe4\x77\x83\xb3\x4d\x1d\xea\x86\x5f\x4f\xee\xc6\x4b\xdc\x13\xdf\xcd\x15\xea\x06\x58\xcf\x2f\xe6\x86\x01\xd6\xf3\xcb\x99\x6b\xd3\x36\xf9\xe2\xe1\x18\x60\xcd\x13\x72\xab\x94\x3e\x7f\x1d\xbe\xa2\xfd\xeb\x78\xf3\x29\x85\x54\x14\xde\xa6\x0e\x79\xb4\x3f\xbf\x0e\xdf\x01\x92\x3a\xd4\xef\x33\xc0\xc9\x88\xce\x00\x91\x9a\x9e\xf4\x4f\xee\xd4\xef\x77\x3e\xd0\x86\x1c\x11\xee\x90\x21\xd5\xbe\x28\x97\x9a\xa2\xfd\x2b\x2f\x54\x47\x84\x7b\x70\x9f\xc9\x71\x9e\xb7\x5d\x1e\x3e\x30\x97\xda\x96\xf4\x0b\xb2\x82\x7b\x08\xe1\x03\x73\x9d\xd0\xe6\x20\x0b\x69\x7d\x9c\x85\xd6\x1c\x42\xd6\x77\xeb\x81\x38\x69\x47\x04\x1c\x2c\xc8\x88\x4e\xe9\x60\x8d\x9a\xd0\xe1\x57\xdb\x45\x69\xdc\xcd\x76\xa7\x55\x1d\x48\x27\x9b\xed\x6e\xe7\xbf\xf3\x74\x77\xf8\xa2\x5c\xbf\xb7\x98\x8c\x9e\x90\xb8\x84\xeb\x2e\x88\x20\xac\x21\x64\x36\x1a\xbf\x35\x1d\x88\x40\x87\x20\xe1\x67\xc1\x5b\xc8\xb4\x87\x55\x61\x7c\xb5\xc6\xd4\x11\x0e\xd7\x89\x84\x5d\x90\x11\x35\x3f\x96\x54\x1c\xef\xbe\x1d\x61\x7d\x6c\x43\x52\x4e\x63\xae\x38\x69\xe9\x24\x6a\x2f\x58\x80\xa7\x94\xd9\x68\x4d\x38\x28\x75\x44\xca\x67\xa7\x2e\x61\x98\x3f\xe9\x97\x5b\x3d\xc1\xeb\x73\xeb\xa7\x21\xa4\xe2\xfb\x12\x52\xd3\x4d\x97\xb9\xf7\x3f\x11\xb9\xb1\x60\xa2\xf4\x40\xba\x7c\x3f\x42\x86\x7b\x33\x19\xf7\xf0\xb7\x45\x58\x29\x6d\xc2\x0e\xec\x42\xbb\x61\xaf\x54\x47\xbd\x0a\x69\xe8\xb1\x21\x48\x83\x97\xd9\xa3\x73\x05\x61\x27\x13\x3b\xba\x7e\x08\xb1\x9f\x41\x9e\xd1\x9d\x08\xc6\x08\x33\x89\x3a\xb1\x9f\x61\xea\x50\x27\x4f\x7b\x41\x48\x23\xac\xca\x4e\x3e\x21\xdc\xac\x40\x28\x68\x9c\x3c\x23\x2e\x7d\x8d\xfe\xd8\xc9\x9c\x84\x7e\x4c\xbb\xe4\x0a\x75\xa2\x3b\xa3\xe7\x10\x66\xa1\xbf\x2d\x42\x66\x32\x57\xe1\x1e\x02\xa1\x1a\x41\x72\xd0\x2a\x6d\x42\x1b\xa2\x1b\x59\xb2\xca\x21\xcc\xfc\xf6\x94\xbe\x81\x94\x16\x02\xbb\x89\xaf\x88\x5e\xec\x55\xa1\x5d\xae\x8d\xef\x8f\x72\x82\x27\xd5\x3a\xc1\x8f\xd1\x79\xb8\x3c\x11\xf6\x10\x27\x67\x87\xeb\x56\x17\x64\x44\x35\x09\x2b\xa5\x5d\x18\x40\xba\xe1\x35\x04\x5d\x22\x24\xf2\xaa\x3f\x4a\xa0\x8a\x92\x7c\x14\x2a\x9c\x4b\xf4\x47\x91\x53\x91\x4f\x8f\x42\x45\xc7\xa3\x4b\xc0\xd5\x11\x29\x54\xb8\xb3\xa0\x3f\x0a\x06\x13\x7c\xba\xf4\x5c\x59\xfd\x2e\x3d\x57\x4e\x19\xbb\xf4\xcc\xad\x7b\xfd\x69\x07\xfa\xb1\xbd\x42\x1e\x13\xd9\x10\x26\xe9\xf4\x47\xf6\x6d\xb8\x52\xfd\x3e\xd0\xf1\x76\x21\xe3\x6d\x07\x32\x5e\x39\x54\xe7\x81\x3c\xe6\x05\xf9\x58\x7a\x6e\xd8\x7c\x5d\x5e\x68\xf2\x51\x3c\x42\x96\x5b\xd6\x68\x2e\x8a\xb2\x8d\xdb\xdc\x53\x97\x53\x3c\x97\xe8\xb2\x46\x77\x62\xe5\x05\xee\xc6\xeb\xc4\xce\x2d\xc8\x78\xe5\x05\x7d\x89\x7c\x1d\x48\xcd\xf2\x42\x67\x57\xb0\xcb\x0b\x1d\xdb\xb3\xcb\x0b\x9c\x0f\xf4\xac\x98\xf4\xb6\x80\x2e\x6b\xf0\x28\x78\x27\x07\x7a\xc1\x2f\x90\xdf\x92\x3c\xd3\x89\xac\x5b\xd0\x9a\x9b\x10\x9a\x94\x35\x48\xad\xe9\x59\x89\xcb\x75\x77\x3d\x2b\x71\x3d\x4c\xe8\x32\x0e\xf7\xdb\x75\x1e\xe7\x0e\x1f\x3e\xeb\x59\x3e\x8a\x33\x5e\x3f\x86\x53\xb2\x7c\xe4\x96\x7f\x57\xa3\x72\x29\x5d\xea\xaa\xd0\x61\x9f\x53\x16\x3e\xc0\x22\xa4\x93\xb2\x95\xee\x41\x97\xe9\x06\x12\x38\xcb\x65\xec\xf1\xf7\x9c\x7e\xf9\xe6\xee\xfa\x96\x79\x95\x23\xb9\x0e\xa0\x67\x59\x90\x2d\xff\x9e\xef\xd3\xce\x0b\xe8\xc7\x98\xbc\x59\x46\x31\xe0\xab\xcb\x91\xec\xd3\xf7\x2c\x2b\xe8\x1e\x74\x19\x74\x76\xab\x3a\x90\x05\x94\x15\x26\x5b\xd1\xbd\x1e\xc8\x44\xca\x19\xf3\xf4\xf9\x40\x28\x54\xf6\x9d\x52\x99\x7a\x9d\x08\xaf\x9e\xd5\x21\x5c\xb2\x9e\xba\x6a\x9e\xab\xe3\x3a\x71\x76\xd1\xa7\xec\xab\xd6\xd7\xf1\x20\xec\x6e\x41\xfa\xfc\x50\x6a\x3a\x4c\x97\x9b\xdd\x89\xcf\xaa\x23\x03\xbe\xba\xec\xfb\xea\xf6\x8a\x6e\xb8\xf5\x9e\x65\xd0\x97\x23\xd2\x8e\x79\x39\xed\x32\xe8\x0b\x77\xaf\x6b\xd6\x10\x0e\xd6\xb3\x0c\xea\x5e\x7b\x57\x1b\xbf\x1c\x6f\x3e\x90\x05\x95\xab\x5e\x6c\x04\x11\x05\x11\x66\xe5\xf4\x2c\x57\x99\x95\xd3\xfb\x81\x50\xb7\xfa\xe7\x85\xa5\xd2\x55\xdd\xef\xee\x6f\xbb\xd0\x4e\x56\xe1\x96\x13\x84\xce\x45\x7f\xbb\xa0\xbd\x09\xe9\x64\xb9\x85\xf6\xca\xaa\xe4\xaa\x42\x27\xb9\xb2\xa1\x13\x67\x17\xbc\x65\x76\xa7\xae\x04\xe2\x8e\x86\x4e\x60\x5d\xf0\x3c\xd9\x82\x76\x63\xfa\x5b\xda\xfd\x10\xbb\xc0\x8d\xb1\x0b\xfa\x31\xed\x7e\x4e\xaf\x42\xc8\xd4\xc9\x64\x1f\x3b\x19\x56\xe5\x2a\xc8\x38\x1f\x2c\xc2\xae\xda\xd7\x59\xca\x9a\xda\x1f\x2c\xc2\xb8\x0e\x44\x8a\x68\x79\x73\x91\x78\xcf\xb2\x86\xde\x51\x28\xcc\xbe\x4a\x02\x79\x41\x97\x26\x4b\xfc\x5f\x45\x8e\xc4\xff\x85\xf8\x43\x29\xf2\xc5\x90\xc9\xf2\x82\x2e\x4d\x28\x54\xbe\x92\x8a\xbc\xe0\x5d\x09\xa1\x8c\xd1\xc3\x09\x85\xca\x97\xad\x8f\x2c\x6b\x98\x2d\xc3\xcd\xad\xc1\x63\x5e\x0b\x26\xa1\x35\x3f\x40\xe9\x19\x25\x19\x5e\x43\xc0\xc1\x7f\xc4\x35\x58\x41\xec\xe3\xb8\x20\x42\x6e\x50\x5d\x10\x62\x68\x7e\xec\x72\x37\x4b\xb1\x20\xb8\x5f\x35\xcc\xa5\xe9\x84\xf0\x05\x8f\x79\xad\xd2\x3d\x39\xbe\xde\x95\x88\x12\x58\xd0\x4e\x9e\x52\x3e\x86\xd9\x7d\xcc\x2b\x11\x25\x10\xe1\xf5\x00\x44\x09\x84\xe9\x31\x9d\x10\xbe\x05\x3f\x94\x32\x40\xae\x0a\x4f\x1c\xfc\x07\x29\x2e\x77\xe2\x3c\x3e\x4e\x8a\x0b\xe7\xf1\x0b\xd2\x50\x3e\x1f\xc3\x38\xfd\x7c\x4c\xcd\x18\x7d\xa1\x4d\x4f\x70\x60\x84\x7b\xb3\x44\x03\x06\x91\xec\x0b\xfe\x72\xab\x67\x7d\x0b\x59\xc1\x91\x3e\xca\x93\xb8\xc8\x74\x41\x84\x37\x1c\x19\xd5\xb9\xc9\x07\x3a\xfa\x10\xda\xc7\x03\xe9\x63\x30\xcd\xd5\xc5\x0f\xfb\x88\x89\x40\x80\x41\x84\xdb\xba\xc4\xe8\x2d\xb8\x47\x4f\x50\x5e\x84\xd6\x15\x51\x78\x0b\xb2\xda\xc5\x4e\x62\x2f\x72\x73\x69\xf8\x46\x4f\xe2\xaa\xd2\xf0\x51\x9e\x4e\x60\xdd\x82\x0c\x10\x8e\xe4\x8d\x9e\x55\x5a\x84\xf0\x0d\x2c\xe8\x2b\x3c\x89\x7b\x3f\x17\x64\xf8\xd5\x86\x50\x83\x04\xa9\x85\x8f\xf2\x24\xce\xfd\x23\x4c\x6b\xe6\xde\xcf\x05\x59\x7c\x98\x2c\xba\xbf\x4d\x74\x83\x8c\xe1\x4e\x18\x5a\xf0\x68\xcd\xfa\xf8\x94\xd2\x49\xb8\x99\x50\xf5\x55\x5a\x85\x1f\x4a\x8b\x90\x21\xc8\x19\x3c\x0d\xdb\x89\x59\x0b\x5f\xb8\xe9\x04\xa9\x85\x81\xec\x9d\x20\xb5\x08\x0d\x26\x02\xcd\xc2\xf7\x6f\x7a\x91\xb9\xdd\x6d\x2d\x32\x37\x01\x15\x9d\x88\xaf\xe0\x49\x9b\xd5\xae\x55\xe1\x38\x87\x5c\x65\xc8\x04\x97\x84\x2e\xc8\x88\x64\x94\x40\xa5\x70\x49\x68\xf8\x2c\x4d\x2f\xf2\x8d\x7b\xb1\x21\x93\x05\xe6\x06\xa1\x56\x0b\x32\x57\x32\x4a\x48\x0c\x72\x86\xc6\x56\xf4\x53\x15\x74\x85\xe9\x19\x06\x54\xf0\xce\x43\x84\x31\x12\x21\x2f\x0c\x24\x7d\x48\xfc\x03\x59\x5e\xd0\x3f\xbe\x43\x93\x42\xe2\xff\x7f\x18\xfb\x73\xa4\xeb\x61\x20\x4b\x1b\xf3\x7b\x15\xb5\x04\x62\x06\x22\x2a\x6a\x2f\x04\x79\x29\x4f\x86\xf6\x6f\x28\x70\x9e\x93\x6f\x75\x87\xf4\xf7\x57\xd6\x65\x82\xbc\x18\x73\x00\x90\x93\xaf\x57\x97\xb1\xfd\xf6\x00\x8d\xa2\xf6\x18\x5e\xcb\xed\x1a\x9f\x8d\xb1\xb7\xf1\x79\xb9\x66\xa8\x19\x5b\xa3\x03\xb2\x64\xdd\x35\x7b\x44\xc8\x1f\x2c\xe6\xcf\x5b\x83\x1c\x0e\x9b\x59\xec\x36\xc6\x22\x8e\x9c\x00\x66\x36\x4f\xce\x66\x6b\xd6\x3c\x5e\x19\x1c\xe4\x7c\x99\xca\x7c\xbf\xda\x3c\xfc\xc7\xb8\xe1\xf1\x12\x9a\x76\x62\xd8\x71\x40\x26\x87\xa3\xc5\x92\xd1\x40\xce\xd8\x3d\x1c\xb0\xf3\xb6\x1a\xa4\x5d\xb3\x82\xc7\xb4\x80\x34\x76\x9a\x96\xd9\x3c\x40\xf6\x35\x99\x80\x9b\x07\xec\x80\x6e\x17\x11\xda\x3c\x40\x76\x2e\xf9\x32\x1d\x3d\x46\x24\x73\x95\x87\xe1\x77\x73\x15\xc5\xad\x3a\x1f\xbb\x57\xcc\x46\xf7\xf0\x1f\x50\x85\x7c\xdb\x6b\xbd\xd3\xff\x2d\x06\x2b\x60\x35\xe8\x5e\x35\x83\x93\xb7\x01\x2e\xde\x76\x83\x0f\x20\x03\x7c\x99\x49\x8c\x33\x96\x73\xba\xe4\xcb\x24\x29\x0b\xfa\x03\x2e\x83\x9d\x8f\xe3\xbf\x0f\x60\x7c\xfc\xea\xe3\xfc\xcf\x9c\xbb\xe7\xdb\x1f\x7f\x75\xc5\x62\x57\xf9\x32\x35\xbf\x9e\x66\xcb\x66\xa2\x67\xe5\xcb\xc2\xf8\xe5\xee\xaa\x7b\x11\x5e\xb8\x75\xf7\xac\x13\x2f\x37\x5f\x16\xc6\x36\x5d\xe8\x9e\x66\x6d\xd4\xce\x5b\xb7\x0b\xb2\xf7\x98\x39\x0e\x74\x3d\xa6\x6a\x33\x55\x16\xd5\x44\xd3\x9d\xdd\x33\x87\x2d\xfe\xec\x9e\x2a\x82\xeb\xce\xee\xa9\xc2\x34\x3f\x5f\xe6\x22\x3f\x34\xc1\xdd\xcc\xec\x67\xb4\x32\x17\xf9\x79\xbc\xc5\x35\x23\x8e\xba\x59\xdd\x8f\xcd\x07\x89\x63\x0f\xe8\x5e\xb9\x5d\x0f\x9f\x9b\x01\x9b\xe6\xe7\xcb\x3c\x46\xde\xd4\x07\xac\x06\x69\xd7\x62\xfe\x43\xcb\x88\x99\xc7\x01\xdd\x90\xdf\x2e\x16\xc5\xf2\x16\x87\xe9\xd9\xbd\x28\x84\xcf\xcd\x97\xe5\xed\x67\x5c\xf0\x1a\x91\xb5\x65\x76\xaf\xc2\xe7\x69\x6f\x01\xba\x5d\xff\xd7\xa4\xdf\x02\xa4\x1b\x9e\x76\xc2\x56\xe5\xab\x07\xc8\x3c\xb3\x43\xba\x7d\x61\x8c\x25\xc3\x01\x59\x41\xae\xc5\x48\x00\x93\x26\x96\x0c\xeb\xe6\x4a\x38\x63\xd7\x71\x40\xd7\xdc\x00\x6f\xe6\x0a\xf1\x7b\x5f\x5e\x94\xee\xaa\xa4\xeb\xcd\x58\x5f\x2c\x12\xc0\x9c\x9a\x87\x41\xaa\x1a\xee\x15\xa4\x8f\x75\xc2\xb2\x1d\x7f\xc6\x18\xe3\x80\x03\xb0\x18\x64\xbc\x2d\xfe\xcb\xfa\x0e\x77\x52\x37\x21\x99\x90\x9a\xeb\x66\xfb\x98\x09\x9a\xb9\x6c\xc7\x3f\x31\x56\x38\xa0\x3b\x49\x9f\x13\x67\x09\x8c\x06\x0e\xc8\x2a\x4c\x7f\xcc\x9e\x08\x87\xff\x85\x59\xff\x79\x5b\x0c\x32\x93\x2c\xd9\x9d\x16\xbd\x82\x79\x63\xd6\x7f\xde\xba\x21\x76\xcf\x98\x14\x1c\x90\xa9\x9b\xee\x33\x6c\xb2\xb3\x27\xb2\xd1\xff\x24\x35\xf9\x72\x96\x9a\x89\x85\xc1\xba\x7d\xfb\xda\xbd\x46\xb8\x35\xe7\x0b\xc9\x76\xe7\xf8\x98\x9a\x33\xa2\xac\x7b\xc9\xb2\xe7\x19\x41\x77\x93\x3a\x35\x13\x43\xf3\x80\xa0\xd9\x72\x43\x9e\xe7\xe5\x86\x3c\xcf\x88\x85\xbb\x78\x9e\x11\x0b\x77\x31\xc7\x45\xd0\xdd\xc5\x1c\x77\x05\xe8\x01\x4e\x83\xcc\xe4\x0a\x90\x45\x41\x0e\xd8\xf8\x7e\x76\xa3\x0a\xf6\xf4\x99\xa4\x10\xeb\xb6\xe9\x06\xf9\x5d\x17\x69\x5a\xce\x5b\x7a\x55\xd9\x2f\x13\x0f\x60\x61\xf6\x7e\x40\xfe\x8b\xd9\xfb\xec\x9e\xf6\x0a\x2f\x27\x83\xc4\x01\xfd\xdf\x00\x99\x67\xc4\xaf\xad\xe0\x33\x26\x32\x07\x64\x7d\x11\xbf\x77\x35\xfb\x9a\x7e\xeb\x35\xf2\xa2\xe0\x13\x9c\xd3\xff\xe0\x8e\xff\xae\x70\x2f\x0c\x66\x0e\xf8\x03\xf4\x08\x60\xde\x29\xb9\x53\xda\x4e\xe5\x04\x8b\xbd\x1b\x6b\x82\xd1\xcb\x01\x41\xba\x15\xe0\xe4\x6d\x36\x88\x94\xf0\xe2\x37\x98\x19\x09\x24\x0e\xc8\x34\x7b\x89\x1a\x94\x91\x60\x84\x77\xe3\x82\xad\x7b\xc5\x30\xa0\xcf\x84\xc5\x5c\x36\xa0\xcf\xa4\x97\x58\xb6\x2f\x9f\x68\xf6\x0f\xb8\x00\x93\x41\xff\x77\x19\x7c\x79\x9b\x0d\x0a\xe9\xb0\xcc\x59\x18\xa3\x1f\xd0\xff\x45\x4a\x60\x8a\x73\xc0\xc6\x7f\x8b\xc1\xc1\xdb\x00\x27\x6f\xab\x41\xd6\xa4\x18\xdc\x0c\x1f\x71\xe4\x34\x2d\x13\xcd\xfe\x01\x3b\x6f\x3d\x22\xf6\x22\xe4\x37\x5d\x37\x9e\xbb\x93\x84\xa6\xcb\x69\x5a\x32\x86\x3a\x07\x64\x08\x66\xb1\xb8\xea\x4e\x1c\xfe\x17\x69\x5a\xce\x5b\x57\xe5\xc9\xf1\xfa\xda\x52\x65\x78\x7d\x87\x27\x16\x61\xe5\x24\x2e\x13\x4d\xff\xba\x95\x67\xf4\xbc\x6d\x06\x5d\xb3\x1b\xf2\x78\xcd\x8f\x89\xc5\x34\xb1\x03\x38\xa0\x6b\x76\x43\x1e\xbe\x11\x89\x8c\x2f\x19\x63\x9b\x03\x8a\xe5\x24\xf3\x54\x1c\x88\xe7\x30\x5e\x4d\xcf\x86\x11\x09\x13\xf9\x39\x8c\x39\xb8\x08\xe7\x64\x9e\xaa\x8b\xea\x03\xd2\xee\x5c\xac\xaf\xb9\x26\x71\x9c\x72\x32\xd7\x9c\x9e\x2b\xb3\xc9\xe9\xb9\xca\xae\x6a\x51\xb3\xb9\x26\x61\x6d\x27\x56\x02\x0b\x33\xf7\xf3\xd6\xbd\x42\xfe\x0c\x63\x1d\xf7\xd6\x39\x99\xa7\x4e\x8f\xd7\x4c\x14\xbb\xf6\x9c\xcc\x44\x7d\x0c\x1b\xc6\x3a\xc2\xda\xce\x61\x34\x5b\x5e\x7d\x4b\x45\xdf\x5b\x0f\xa3\xd9\x9a\xac\x82\x85\x24\x26\x31\x39\x99\xd5\x2d\x76\x4c\xc3\x48\xb8\xcc\x9f\x2c\xe8\x96\x31\xc7\x48\xe8\x4b\xee\x61\x34\x5b\x9e\x9c\x11\xff\x65\x51\x8c\x75\xbe\xe4\x1e\x46\x33\x05\x8c\x3a\x1f\xbb\x2a\x13\x0e\xb7\x91\xb6\xfb\x9e\xc3\x88\x74\x1b\x73\xcc\x71\x6f\x53\x0a\x27\xc9\xfb\xde\xfe\xb8\x1b\x84\x23\x59\xc0\x72\x1c\xca\x18\xcc\x1c\x10\x5a\x30\x7b\xc6\xdb\x38\x27\xcb\x5b\x2e\x9f\x73\xb2\x80\xdd\x26\x1c\x33\xef\x6d\xdc\x30\xf3\xde\xcb\xed\x2e\x83\xfe\x98\x5e\x6d\x33\x0a\xf3\xe3\x6d\x46\x61\x7e\xbc\x3d\xde\x16\x20\xed\x9a\x4f\x12\x6d\x29\x27\x33\xc6\x6d\xcc\xb1\x54\x24\x87\xe7\x1c\xde\x8c\x6c\xcf\x86\x85\x24\x57\xd3\x39\x59\x48\x92\xc6\x24\xa7\xf5\xef\xab\x1e\x67\x31\xc9\xd9\x6c\x92\xbc\x9b\x39\x9b\x4d\x3e\xd3\x6f\x99\x66\x72\x67\x66\x92\x40\x2c\xa7\x1e\xc9\xd9\xec\xea\x81\x6e\xb2\x65\x95\xaf\xa2\x87\xe9\x95\xcc\x9a\x39\x9b\x5d\xf9\x8c\x86\x05\xc5\x01\xfd\x31\x03\x7a\xcc\x09\xb8\xb8\xbd\x1f\xc6\x97\xcd\x72\x1e\x76\x0c\xd9\x5c\x84\xdc\x99\x73\x78\x3b\x45\xfa\x90\x9c\xcd\x45\x88\x2d\x9c\xb3\xf9\x04\x41\x9e\xa6\xed\x1c\x6e\xee\x9e\x73\xb6\x0c\xf1\xdd\xb3\xcd\x1e\x30\xec\x3e\x6f\x5d\xb3\x47\x64\x7a\xf5\x71\x28\x9b\x13\xbc\xb7\x6b\x76\x55\x2c\x42\x36\x27\xf8\x81\x74\xd9\xa4\x8f\xbd\x75\xce\x96\x30\xc4\x7c\x9a\x36\x8a\xc0\x84\xfa\xbc\x4d\x06\x99\x0d\xef\x72\xb8\x6c\xce\xd9\xc4\xfd\x33\xcd\x79\x97\x43\x5e\xca\x9c\x4d\xa0\x3e\xa5\xd8\xb0\x81\x24\x1f\xe7\x6d\x7c\x4c\xbb\x66\x0c\xe4\xa5\xcc\xd9\xdb\x74\x9f\x52\xb2\xa9\xf9\x83\x50\xb2\xa9\x99\xac\x1e\xd3\x46\x11\xf7\x07\x8f\xc9\xa6\x66\x02\x37\x65\xb2\x22\x1c\x10\x69\x3c\xe2\x2d\x8b\x62\x91\xc2\xdd\x73\xce\x26\x7d\xdf\x3d\xdb\x82\xe2\xfe\xcc\x18\xcc\x90\x70\x11\xce\x18\xcc\xac\x7d\x79\xb9\x91\x30\xfb\x8a\x6e\x4c\x83\x0f\xe0\x32\x08\xab\x83\x5d\x6d\xe2\xe5\x4e\xdb\x57\x38\xf7\xc6\xb4\x05\xc5\xbe\x16\x6b\x04\xbd\xee\xcb\x8c\x70\xb8\x66\x98\x19\x51\x06\x0f\xe8\xb7\x6e\x88\xed\x63\x6e\x6e\x88\x4b\x06\x72\xee\x1e\xb0\xf1\xd6\xed\x72\xd2\x20\x16\xc6\x01\x7f\xbc\xa5\x2a\x5b\xaa\xd8\xa2\x02\xcb\xf5\x03\x16\x83\x90\x15\xc2\x6a\x27\xb3\x67\xb8\x17\x69\x3c\xce\x5b\x7f\x0c\x43\x22\xda\xdf\x72\xde\x8e\x6c\xdb\x1b\x1b\x94\x67\xc2\xfb\x1d\x90\x35\x02\xeb\x30\x8b\x3e\x35\x37\x83\x20\x03\x58\xe7\x0c\x12\xd3\xe6\x17\xbb\xdc\xee\xa4\xff\xcb\xc1\x92\xd0\x18\xcb\x69\x1f\x32\x89\x1d\x0e\xc8\xc7\x30\xc2\x5d\xbd\x64\xac\xfe\xf6\x76\x99\x00\x7e\xcb\x79\x1e\xb2\x0d\x84\xb0\x74\x3e\xff\xcd\x06\x99\x0d\xaf\x51\xf5\x78\xbd\x28\xf2\x21\x3d\x14\xe9\x6e\xdc\xee\x95\x1b\x32\x9a\x2d\x37\xc4\xe6\x2b\x7b\x9e\xab\xd7\x08\x16\xbb\x1b\xf2\x36\x7b\xbc\xcd\x14\xba\x02\x04\xcd\x38\x87\x6c\xef\x4c\x09\xc2\xb7\xb0\xbf\x3e\x9c\xe0\x32\x08\xd1\x79\xf8\xb6\x99\x20\x60\xc7\xda\xb8\x67\x4e\x02\x76\x2c\x0c\xae\xcf\xc7\xd5\x20\x6b\x14\xbd\x32\xe6\xfc\x0f\x18\xff\xee\x1e\x81\xfb\xd8\x61\xde\x36\x53\xda\x9d\x73\x87\x0d\x91\xb6\x77\xc0\x85\xfd\xf1\xee\xe0\x7e\x61\xcb\x4b\x6e\x86\xd3\xc7\x78\xfb\xf0\xb6\x1a\xfc\x78\xeb\x8f\x39\x49\xcd\x78\x0b\x29\xd8\xa6\x69\x77\x06\x54\x10\x29\x1b\xef\xcc\x6c\x23\x26\x32\x37\x9c\xff\x36\x83\x9a\x0c\x22\xf4\xad\xcd\xc5\x7c\x26\x42\xdf\x22\x73\xc3\x01\xab\xc1\xc1\x7f\xbb\xc1\xc5\x5b\x57\x75\xfb\x63\xbf\x8d\x59\x1f\x06\xa9\x39\xbb\x21\x64\xa6\xad\x98\xf6\x70\x27\xd9\x6b\xee\xe9\x5e\x21\x52\xf6\x9c\x7e\x4b\xcd\x24\xa6\xcf\x36\x6a\xda\x44\xa7\x99\xc4\x27\x59\x61\x60\x3d\x3d\x22\xdc\x04\xe7\xf4\x88\x88\x92\x99\x09\x95\xb7\x9c\x34\x60\x4e\x0f\xd0\xd7\xd8\xd3\x23\x22\x91\xdd\xb4\xb1\xcd\x26\x91\x5d\xb6\x41\x14\x39\x04\x0e\x58\x0d\xb2\xa0\x6c\x01\xc9\x12\x70\x40\x56\x81\x2b\xf0\x6c\xa3\xa6\x7d\x7b\x26\x53\x80\x62\x1b\xb6\x71\xda\x04\xcd\x9c\xb6\xcc\xb1\xfd\x71\xb6\x8d\xd3\x26\x86\xe6\xb4\xb1\xcd\xbe\x8d\x48\x08\x8d\x7d\xc3\x63\x6c\x5d\xb3\xef\x9b\x6e\x54\xf7\x0a\x12\xb4\xfd\xcc\xbe\xbd\x0a\x96\x03\x37\xda\x5c\x9b\xd3\x6c\xef\xf9\x6c\xf2\xb4\x37\xdb\x65\x9b\xd3\x6c\x22\x6c\x66\x5b\x40\xed\x0d\xcb\xb1\x05\xd4\xde\x50\xf3\xf4\x3c\x13\x61\x66\x12\x19\xe4\x80\xa0\x0a\xfb\x9a\xed\x1d\x21\x81\x42\x0e\x08\xe1\xb0\xaf\xd9\x9b\xcb\x57\x42\xd6\x2d\x2c\x9d\xcf\xc7\x0c\x81\xe8\x9c\xb9\xb4\x00\xe9\x95\xc5\xc2\xbe\x5d\xb3\x41\x36\x41\xc5\x62\x61\x9b\x8e\x8a\x47\xe4\xf1\x9a\x5b\x3f\x5e\x6e\xb3\x67\x6f\xeb\x6c\xc5\xb4\x1f\x2f\x37\x62\x7f\xdb\xf5\xcf\x96\x39\xdb\xbb\xbc\x62\x06\xec\x5b\x7c\x5b\xe6\x6c\xdf\xe2\xdb\xa8\x69\x3f\x6c\x46\x8a\xf9\xf1\x63\xb2\xb2\x44\xb5\xeb\x9f\xcd\x78\xf6\x83\x9c\xb7\x8d\x13\x46\xd3\x67\x2f\xe2\x76\xd9\x31\x15\x8b\x41\x5b\x49\xdb\xe6\x67\xe3\xcd\x97\x8b\x25\xdb\x1b\x7d\xa6\xa1\x17\xd1\x6d\x33\x9e\xfd\xba\x57\x33\x40\xb0\xce\xcb\xed\x6b\xed\x32\x03\x64\xb9\xbd\xfa\xde\xd6\x95\x19\x20\xd8\xee\x5d\x00\x39\xe3\x72\x59\x01\x42\xbf\xde\x05\xe0\xbe\x97\x6d\x79\xb5\xed\xbe\x37\x8d\x2a\xaf\x57\x70\x05\x48\x43\x96\x3f\xbe\xf4\x9e\xc6\x1c\xdf\x63\x4f\x63\x0e\x4e\x76\xd9\x86\x58\xdb\x4e\x76\xd3\x98\xf3\xf3\xa2\xac\x7f\xc6\xe3\x3f\xdf\x42\x64\xc6\xb2\xdf\x72\x1f\x87\x41\x10\x96\x1b\x98\xfd\xf3\x54\x71\xe5\x62\xb3\xef\x6c\xa3\xad\xfd\x03\x61\xb1\xc3\xba\xf7\x65\xb4\x32\xf0\xfc\xd7\x7f\x14\xdc\xfe\xee\x2d\x2d\x7f\xc5\x1b\xed\xde\x97\x6a\xfd\x03\x92\x5e\x35\x43\x59\x7f\x8b\x77\xbf\xf3\xae\xb9\xca\xcd\xbb\x80\x86\xde\x75\x43\x87\x84\x9b\xff\x76\x88\xa1\x70\x63\x7c\x6f\x85\x5c\xc9\xae\x43\x4e\x83\x05\x37\xc0\x1b\xbf\xbf\xda\xff\x3e\x3c\xab\xa7\x09\xbf\xf1\x01\x2c\xdc\x1c\x1f\xe8\x4c\x4b\xa3\x8f\xa4\x4e\x73\xc3\x18\x03\x37\xd7\xa7\x6b\x25\x5d\x2b\xdc\x24\x4d\x2b\xdc\x2e\xdf\xce\x99\x26\xe2\xbd\xc9\x73\x56\xf1\x67\xb9\x71\xec\x2b\xdc\x3b\x1f\xe8\xd4\xee\x09\x90\x79\x40\xe1\xd2\xf9\x40\x5d\x7f\x73\x63\x87\xff\x17\x6e\xa0\x0f\x74\x18\x4f\x07\x50\x5e\xf0\xc2\x6d\xf4\x81\xce\xe4\x73\x41\x75\x6f\x2c\x74\xc7\x34\x40\xd3\xc3\xd0\x69\x7a\x2c\x03\x67\xee\xf1\x14\xb9\xc9\x72\x56\xae\xf8\xdb\xa1\x91\xca\x15\xd0\x4d\x8e\xb3\x72\xc5\xff\x0e\x0d\x54\xae\x78\x0e\x74\x66\x64\xfa\x6f\x5b\x93\x3f\xfd\x6a\x6b\x7e\x66\x32\x74\xeb\x6f\xee\xc9\xa1\xf6\xc2\x95\xf8\x8d\x1b\x61\xf6\xb0\x15\x9d\xa5\x72\xc3\x72\xa0\x23\x9b\x56\x00\x42\x90\x59\x0c\x15\x7d\xb8\x0c\x9d\xb1\xad\x00\x34\x9a\x59\x0d\xcd\x03\x5d\x06\xb6\x5e\x35\x43\xc2\x02\xba\x58\x16\x1d\xee\x86\x54\x47\x36\xa0\x09\xa9\xf1\xa1\x56\x66\xba\xc3\xc6\x03\x03\xbc\x72\x87\x0f\xfb\x20\x58\xf1\x01\x68\xd9\x5d\x3c\x13\x47\xa4\xe2\x1b\xbf\xc2\x3a\x8c\xde\x8a\x84\x59\xb8\x7b\xbf\x77\x11\x2e\x0d\xe3\xb7\x5c\x0e\x8b\x17\x4d\xb7\xd6\x75\x18\xa3\x95\xb8\xa0\x70\x0b\x7f\x93\xd5\xad\x8e\x16\x5f\x9e\x6e\x25\x7a\xa5\x00\x98\x18\x74\xdf\x6c\xd6\x0b\xd7\xf1\x07\x3a\x63\xc9\xd9\x40\x3b\x55\xf4\xcb\x50\x3f\xaf\x8a\x01\x21\x8f\x09\x4b\x97\xda\x6c\x5b\x0e\xa0\x19\x58\xcd\xd0\x19\x66\x71\x5b\x4b\x74\x6b\xb2\xd0\xed\x36\xb1\x7d\x0f\x70\xb8\xc4\x18\xf1\xea\x2c\x74\x71\x5b\xb7\x96\xcf\xe8\xa1\xcc\x07\xec\x6b\x0e\x20\xa4\x9a\x51\x87\x26\xd8\xc8\xa2\x30\x30\xec\x69\x6e\xb6\xf7\xe5\x5a\x01\x9d\x4e\x55\xf7\x77\x6b\xee\x97\x1b\x13\x62\xa6\x2b\xde\x7d\x7a\xf7\x4f\xd5\xea\xbd\x15\x1b\xb3\x0e\xb7\xd0\x44\xa0\xb5\x18\x98\xaa\x33\x19\x3a\x03\xa8\x0c\x40\xf7\xe3\xc5\xbc\x51\xa7\x8c\x92\x8c\x72\xba\x2b\x67\xf7\x73\x80\xa1\x57\xae\x50\xf3\x5d\x99\x10\xd9\x64\x57\xac\xac\x6f\x72\xce\x11\x7d\xf7\xc6\x31\xb4\x4e\x2f\xbb\x32\xa8\x93\x90\xeb\xc6\xef\xb3\x18\x73\x74\xea\xa8\xd3\x94\xa4\x00\x9a\x05\xcd\xc8\xcd\x99\xa3\x4e\x2f\x93\xe2\xc5\x14\x33\x2f\x99\x1c\xd5\xe9\x65\x52\xb0\xcc\x82\xca\xe4\x40\xaa\xb2\x74\x43\x67\xc2\xfb\x34\xf0\xe9\x43\xbf\xd2\x0c\xf4\x65\xe0\xac\x27\x72\xfc\x40\x5b\x1f\xfa\x9d\xc8\xcc\xdc\x56\x97\xf2\x25\x99\xb2\x74\x09\x5f\x92\x89\x49\xd7\xea\x75\x1a\x37\x3b\x98\x9f\x80\x74\xc2\x28\x66\x87\x3a\x5f\x94\x94\x02\x3a\x95\x98\x01\xca\xe2\xba\xce\xbf\x0f\x45\xc6\x9e\x47\x05\x8d\xa9\xd3\x5c\x48\xa7\x92\x62\x26\xa7\x00\x32\x25\x99\x6f\xea\x52\xbe\x18\x39\x65\x38\x54\xfe\xfe\xf4\x9e\xef\xcc\x43\x65\x35\x54\xcc\xac\x94\x34\xbd\x98\x3d\x0d\x06\x66\x52\xd5\x75\x7a\x5d\x57\x40\x9a\x46\xd3\xea\x38\xeb\x59\xd7\x15\x90\x30\xc9\xc4\x2a\x0f\xd1\x62\x76\xa2\xc3\x4d\x5d\x9e\xab\x01\xba\x67\xb7\xad\xd5\x35\x03\x91\xe7\x68\xc5\x9a\xf0\x26\xab\x5c\x31\x69\x29\xe6\x4c\x5d\xe6\x42\xba\x6d\x2f\x46\x7c\xc5\x9f\x29\xc9\x6c\x5e\x87\xa3\x6a\x62\x52\x76\x85\xba\xbc\x12\xba\x94\x8f\x9d\x85\x32\x2d\x94\x64\x9e\xaf\x33\x54\x49\x46\x47\xdd\xcf\x57\x63\xa3\x4c\xa8\x4a\x32\xab\x51\xf6\xba\x92\xcc\x5d\x64\x53\x5e\x57\x54\x22\xa1\x95\xcc\x28\xe6\x99\xc8\xba\xa2\xca\xc3\x43\xaa\x31\x55\xc6\xe6\x58\x71\xdf\xa4\x9e\x2b\xe8\x6b\x6e\xdc\x54\xab\xa7\x4a\x56\x54\x75\x99\x6b\x28\x48\x4d\x49\xc6\x6f\x19\x4d\xd5\x65\xa2\x5e\xe0\x55\x19\x86\xd4\xb4\x69\x5c\x26\xe6\x85\x4c\x68\x07\x52\x03\x01\x08\xdd\xcd\xb1\xe4\xc8\x5a\x97\xe9\x5f\x76\x57\xd5\x6b\xad\xf0\xa1\x25\xb9\x27\xeb\xe0\x5c\xf5\x52\xeb\x36\xbf\x62\x8d\x77\xa0\x33\x23\x5e\x5c\x19\xa8\xd7\x65\x81\xa0\xbb\xfa\xba\xbc\xc9\xd1\x55\x7d\xf5\xac\x2e\x84\x96\x99\x97\x32\xb3\xd7\xe5\x8d\x8d\x8c\xb6\xaa\x29\x7e\x21\x8b\x62\xd4\x5b\xf4\x1f\xe3\x14\x4b\x59\x26\xc2\xa5\x89\x5c\xde\x95\xe9\xac\x5a\x31\x92\xbb\xf1\x9c\x2d\xc9\x03\x95\xa7\x6c\x5d\xe3\x9f\x91\x0a\xce\xa7\x22\x8e\x1a\x95\x6a\xf6\xcc\x3a\x6e\xf8\xa5\xe7\x41\x47\xd8\xba\x4c\x54\xf2\xa0\x2d\xc9\x3c\x52\xb9\xd6\x6b\xb4\xae\x59\x89\x1a\xb5\x37\x4b\x66\x98\x3a\x70\xb6\xcb\xcc\x42\x3a\x86\xea\x57\xfb\x8c\xa0\x5d\x5e\x46\x85\x9d\xa9\x16\xe5\xfb\x90\x43\xc3\xa2\xe6\xc6\x2f\xb6\x24\x73\x5d\xe5\x7d\xa8\xde\x4c\xea\x10\xda\x2e\xd3\x8d\xac\xdc\xab\xe7\x5c\x47\xce\x92\xbc\x70\x8a\x78\xda\x2e\xaf\x95\xd2\x41\x54\xf3\x63\x1d\x28\xab\xb7\xcf\x0a\x67\x5a\x52\x54\x7f\xd6\xb4\x5d\x46\x19\xe9\x22\x6a\x77\x37\xd8\x88\x44\x63\xda\x89\x78\x9b\xb9\x61\x23\xde\x00\xe8\x44\x5a\xbd\xa2\x9b\xc9\xf1\xf6\x5f\xc6\xf2\xd5\xcb\x2b\x1b\xb2\x92\xa2\x53\x5b\x3d\xa4\x1b\x32\x8c\x6f\x97\x77\xd3\xd2\x3e\x54\x73\x74\x9d\x4a\xab\xf7\xc8\x0f\xcb\xe7\x6e\x3c\x30\x7b\xb7\x2c\xfb\xae\x3a\x02\xa0\x87\xae\xf0\x74\xaa\xc5\xc6\xe9\x01\x21\xa3\xe9\x83\x90\x2d\x76\x47\x0f\x32\xce\x62\xe7\xa1\xc7\x23\xfe\xa7\x35\xf3\x8e\x48\x61\x52\xab\x99\xb8\x5c\x79\x5b\xec\x6d\x64\x0f\xd6\x62\x3b\xa3\xa4\xe7\x75\x06\xa0\x81\x7a\xcf\xf2\xc2\x10\x7c\xd6\x90\x29\x58\xf5\x36\xf0\x45\x18\x7a\x12\x5e\x58\xe4\x65\xe0\xac\x59\x88\xbf\x17\x61\xe8\xd3\xc0\x0b\x3f\x03\xf8\x41\x4f\xd3\x80\x66\xc4\x7b\xf0\x9f\x90\xd1\xbc\xf9\x47\x37\x2c\xab\x94\x86\xb0\x99\x37\x2b\x29\x79\x0b\x22\xd4\x11\xb2\x79\xb3\xa1\x03\x64\x33\xff\xfd\xc1\x71\x2d\xab\x94\x15\xb0\x24\x0f\xe5\xb7\xf5\xe1\x30\xa0\x71\x79\x28\x1f\xf3\x36\x0d\xa8\x87\x5e\x09\xe9\x15\x5a\xb2\x60\x94\x2d\x14\x06\xb2\x37\xb9\x00\x5b\x34\x26\x8d\x43\xb3\xf4\xf8\x10\x11\xcb\x1f\x1e\xfa\x6e\x26\xcd\x8f\x89\xf2\x7e\x4e\x06\x52\xcd\xa4\x29\x2b\xf7\x96\x3d\xe6\x0f\x09\xe1\xe5\x93\x27\x6e\x33\x1b\x95\x0e\xa2\x24\x2f\x9f\xdc\x70\x89\x79\xb8\xe7\x75\x58\x7d\x23\x2d\xd7\x26\x9b\x5f\xc1\x87\x7c\x93\xcc\x8f\x00\x87\x07\xa0\x8b\xcb\xd0\xe9\x47\x8e\xef\x8e\xc4\xa4\x1f\x9b\xac\x7e\x44\x3a\x3c\x40\xd1\xab\x64\xe8\x54\x58\xe2\xbb\x9f\x7a\xd8\x0d\x7d\xfa\x30\x03\xdd\xaa\xa3\xb8\xe9\xb3\x99\x2e\x24\x70\xdb\x24\xe8\x23\xfc\xe1\x26\x3d\x5f\x21\x5d\xdb\x26\x1d\x5f\x2b\xff\xdc\xde\x6e\xbc\x6d\x31\xce\xdd\x24\xd7\x23\xb0\xe1\xc6\xb5\xb6\xa1\x28\xd8\x24\xda\x23\xc8\xe1\x01\xb6\x1a\x1b\x86\x4e\x15\xf5\x32\xc0\x14\xc4\xbf\xce\xd0\x2a\x83\x56\x84\x9d\x86\x7e\xe0\x40\x87\x6e\xab\x1b\xd6\x42\xa3\x2b\xd8\x38\xe6\x92\x24\x6a\x93\x96\xaf\xa1\x37\xd8\x38\xe9\x16\x54\x95\x07\xd2\xe4\x8f\xf8\xf2\x3d\x7f\x73\xa7\x98\xd4\x11\x90\x26\x35\xb9\x8f\x9a\xd4\xea\x2e\x32\xa7\xc9\x7d\x3c\x82\x82\x60\x86\x07\x50\x63\xc9\xbd\x92\x54\x24\xe7\xdb\x81\x84\x12\xcb\x7f\x13\xd7\x24\x30\xc0\x9e\x59\x54\xd1\xb2\x01\xfe\x36\x0c\x9d\xbf\xb5\x62\x80\xfa\xa7\xa1\x9f\x70\xc2\xd0\xa2\xc6\x65\x48\x5f\xe6\xcb\xd0\x19\x76\x77\xfd\xe7\x60\xd0\x4a\x34\x7d\x73\xce\x4b\x86\x6e\x41\xfe\x52\x47\x03\xee\x79\x0e\x74\x84\x9b\x67\x5c\x96\x5e\x25\xe7\x80\xce\x6a\x0c\x3a\x22\xdb\xac\xc6\x49\x6f\xe3\x63\x5b\x50\xbb\x1e\xe8\xd3\x3b\xda\xd6\x31\x1b\x0b\xe3\x8d\x7f\x6d\x2b\x35\xa0\xd3\xc9\x55\x0c\x08\xf9\x3d\xc9\xd2\x4f\x61\x4c\x7c\x00\x9d\x45\xb3\x2b\x94\xa8\xcb\xa6\x3b\x1d\xac\x31\x33\xde\x53\x47\xdd\x56\x8c\x4b\x55\x9c\x27\x9b\x0a\x15\x9f\xa7\x64\x13\x5e\x95\xc8\xc9\xa6\x35\xd9\x65\x35\xb6\xe1\x1b\x77\xdb\x92\x3d\x36\x9d\x62\x1b\xe9\x6a\xf7\xd4\xe9\xb4\x7b\xed\xa5\x54\x6a\xc5\xec\x40\x67\xc9\xee\x59\xd5\x51\xb2\x04\xf5\xca\xa6\xaa\x55\x93\x79\x63\xed\x4d\xbd\xd2\x3d\x75\x4f\x5d\x63\xed\x4d\x6b\x72\xc7\x6d\xd5\xf8\xd9\xe0\x15\x26\x36\x1d\x0a\x09\x87\x75\x80\xe7\x00\xc5\x80\x68\xad\x1a\x3a\x58\x4d\xac\xab\x03\x88\xf0\x72\x40\xea\xa3\x17\x43\x47\xc4\x56\xa3\x23\x07\x0f\x7a\x09\x40\xd5\xc7\x77\xa2\x27\xb7\x2c\x77\x91\x56\xfd\x4e\xde\x22\xa4\x67\x3a\x80\x18\x80\xfb\x2b\x37\xdd\x6e\xc2\xee\xe0\x8b\x11\x5e\x27\xc4\x56\xcd\x2a\x38\x21\x72\x6f\x77\x20\x21\x7c\xf3\xff\x34\xe8\x16\x1f\x6a\xae\x5a\x37\x74\xfa\xd8\x98\x61\x0e\x8f\x5c\xe3\x1d\xa8\x9d\x57\xee\xb0\x84\x42\xfd\x83\x84\x06\xcd\xdd\xd7\xe2\x46\xaf\x40\xb3\xe6\xee\x9f\xd9\xe9\xd1\x29\x5d\x75\xa1\xa4\x3d\xd0\x14\x44\xd3\x3a\x72\x76\xf7\x57\x19\x16\x7a\xfb\xa7\x73\xe6\xf9\x52\x8b\x6b\xea\xd5\xc1\xb2\xbb\x69\x19\x6c\xb5\x6a\x5a\x90\xbd\x56\x8f\xef\x24\x9f\xd1\x07\x1f\xe8\xac\xd9\x1f\x20\x9a\xe9\xfe\xd7\x2d\xb6\x6a\xe9\xa4\x94\x7a\x5c\x93\x1e\x40\x58\xd0\xdd\x63\x8d\xb3\x0f\x03\x67\x71\x9b\x99\xa0\xf2\x90\x13\xdf\xe9\x00\x8f\x5e\xb9\x1f\x07\x27\xb0\xb5\xdc\x53\xc6\x5a\xdd\x2c\x64\xb2\x9a\x6e\x6b\x7a\x94\xc3\x50\x17\x43\x0c\x68\xfc\xd7\x7f\x10\x3f\x69\x93\x6d\xaf\x85\x00\x95\x91\x16\xe6\x98\x07\x50\xa7\x4c\xc7\x13\x24\xe8\xf1\xa1\x7a\x55\xa2\x92\xd3\xab\x99\x0d\x08\xe5\x7a\xfc\xed\xd3\x87\xae\x52\x34\x32\x8b\x01\x71\x0d\x8f\x73\x82\x49\x31\xb4\xc3\x10\x5b\x33\x69\x4d\x58\xbf\xe5\x8c\x0e\x96\x18\x89\x6e\x7c\x98\x4b\xc8\x19\x9d\x1e\xbb\xb9\x8b\xa2\x1f\x95\x6c\x3e\xba\xb8\x9c\x1b\xcb\xd0\x59\xea\x66\x54\x92\x35\x56\x37\xe3\x51\x2c\xa3\x42\xd6\xb8\x03\xa9\xc6\x00\xb4\x82\x66\xb1\x8b\xc1\x04\xa0\xc9\x8a\xea\x91\x5c\x33\x20\x4d\x96\x67\x5c\xf9\xce\x0b\x5a\xec\x03\xa9\x23\x9e\xf2\x05\x8a\x58\xaa\x2d\xf0\x7d\x31\xaf\x0a\x49\xda\xf0\xe4\x38\x90\xe8\xc9\x2c\x5d\x47\xb6\xd6\xcc\x1f\x15\x06\xa9\xc7\x87\x07\xc3\x87\xb7\x44\xb7\x0e\x39\xfd\x8a\x57\xda\xb3\x2c\xc6\xad\xe8\xa2\xad\x1b\x07\xe5\xa0\x33\xe2\x43\x49\x8c\x6e\x1c\xbc\x3d\x00\xbf\x3b\x78\x3c\xcc\xa7\x6f\x16\x2a\xfa\x71\x16\x6a\x58\x60\xcb\xb6\x6c\x58\x4c\xde\x2c\x8d\xa9\x44\x2a\xc8\xd6\x73\xbc\xfb\xce\x87\xd4\xae\xf3\x60\x29\xee\xbe\x0e\x84\xc3\xf2\x5a\xca\xc7\x61\x49\x2b\xd5\x63\x29\x57\x40\xf9\xbc\xaa\x06\xce\xca\x74\x33\x3d\x1d\xf3\x86\x29\x61\x23\xc8\x6b\xfc\xeb\x13\xc4\x28\xa5\x63\x1c\x46\x70\x19\xa8\xb5\x6e\x74\xdc\x67\xa6\x86\x51\x5a\xc6\x6a\xa5\x78\xe3\xb7\x45\xfe\xc1\x98\x75\x70\x1c\xe6\xed\xb2\x3d\x2b\x28\xec\x37\x59\x01\x5b\xf7\x6e\x49\x3a\xca\x42\x44\x92\x03\x75\x41\xf1\x4e\x37\xbd\xde\x97\xc8\xee\x6c\x58\x76\x2b\x2e\x53\x29\x57\x40\x67\xe2\xcc\xb3\xa5\xaa\x1c\xe6\xb0\x8a\x60\x5a\x4a\x8a\x57\xa7\x57\xe6\xb0\xb2\x45\x6b\xc1\x01\xa5\x86\x2c\xc5\x38\x20\x5f\xa2\xd1\x03\x78\xf5\x8a\xd9\x91\x82\x72\xf4\x7f\x5a\x48\x6f\x7c\xa7\x0b\xc6\x05\x1b\x5f\xe9\x52\x8c\x2e\x8f\x90\xbf\x7b\x6f\x29\xb5\x66\x29\x5e\x79\x1d\x47\x5b\x37\xcd\xeb\x3c\x3a\xcc\x71\x39\x64\x16\xe3\xc1\xc3\xfc\x78\xa7\x26\x1f\xe9\x52\xbc\x53\x93\x3e\xb3\x0d\xcf\x9d\xcc\xd2\x86\x79\xe2\xcb\x50\x8d\x3f\x9c\x09\x87\x67\x52\xae\x3f\x6d\x78\xbe\xa4\xd8\x2c\xc5\xfb\x0d\xe9\x35\x87\x99\xae\x8e\x8b\xa5\x78\x4b\x27\x1d\xe7\xf0\x68\xa4\xe1\x2c\x25\xc7\x87\x07\xed\x3c\x18\xa9\x37\x5b\x10\x86\x1c\x7e\x4a\xf1\x76\x40\xe6\x6f\xc3\xec\x40\xaa\xcd\x52\x4c\x18\xca\xb4\x31\xcc\x65\x95\x67\xa3\x05\x22\xff\x26\x5d\x0c\x88\xa6\xa7\xa1\x43\xf3\x81\xae\x72\xcf\x1e\x33\x5e\xd1\xf4\x32\xf4\xd3\x87\xd1\x80\x56\xc3\x04\x20\xbd\xe9\x30\x3f\xfb\x49\xb8\xc4\x96\x54\x3a\xd4\xb1\xe2\x3b\x4d\x48\xd4\x21\x81\x3a\x6a\x7c\x48\x8d\x0c\x54\x5e\x41\xc3\xfc\xeb\x87\xf2\xc1\x9b\x38\xb9\x04\x0d\x8b\xe1\x1f\x64\xe3\x3d\x9c\x72\x73\xb4\xe1\x0d\x81\xbc\xba\x4b\xa9\x01\x69\x5a\x8d\xaf\xca\xd3\x51\x8a\xdb\xfe\x84\xf3\x66\x59\x8a\x6f\xd5\x86\x05\x8f\xc2\x5b\xcd\x2b\x00\xf5\xd1\xf4\x2b\x97\xa1\x69\xa6\xf2\x31\x6a\x6f\xac\x64\x98\xd7\x86\x37\xc0\xdf\xc1\xb3\x79\xc5\xbf\xb4\x7d\x1f\x01\xad\xf3\x2a\xfe\xa5\x95\xf1\xd1\x4a\x27\xea\x79\x05\x20\x34\x36\x43\xf8\x0e\x06\x4e\x73\x00\xe5\x09\x99\x46\x62\xb9\x9f\x97\x62\x32\x97\xc9\xdf\x34\xda\xca\xe0\x6f\x1a\x6b\x15\x10\xab\x0d\x4b\x2e\x05\xb1\xc2\x5a\x66\xaf\x0b\xa6\xca\x7e\x6e\x29\xce\x54\x73\x37\x70\x2b\xc7\x34\x66\xe3\x54\x5e\x88\x2c\x73\x20\xd5\xd1\x0c\x68\xa2\xd8\x1e\x2d\x1d\x93\x31\x99\x39\x80\x28\x1e\x62\xc5\xf5\xbc\x11\xda\x65\x2f\x05\xa6\xc2\x4e\x65\xe3\x77\x5e\x08\x3e\xb3\xf1\x33\x2f\xc4\x9e\xd9\x64\x61\x6c\x18\x40\x1c\x48\x84\xc0\x8a\x2d\x8e\xc9\x18\x38\x6c\x12\x34\x16\x52\xe3\x1d\x48\xfd\x1a\xfe\xdf\x52\x73\xae\x92\xd1\x0c\xff\xed\x2c\x05\x71\x61\x36\xae\xe7\x05\xdb\x8c\xbd\x14\x5d\xb6\xa1\xd9\xdf\xe4\x65\xc4\x88\xe5\x00\x3a\x63\x35\xff\xed\xec\x77\x51\xe1\x1c\x40\x6b\x3b\xdc\xd8\x21\xf8\x36\x3d\x09\x0a\x48\x85\x42\x67\x93\xca\xb1\x60\xea\xb1\x57\x02\xbf\x87\x1b\x93\x28\x9c\x51\x89\xce\x36\x68\x3a\xf6\xd2\xb1\x76\xfe\x0f\x2e\x15\x56\xd6\x79\x0c\xa5\xc8\x81\xce\x92\x42\x76\x2b\x33\x5b\xec\x9e\x96\xe2\xd9\x16\x1f\xc7\x56\x86\x78\x61\x0e\x24\x73\x44\xd1\x74\x00\xad\xe2\x72\x8d\xc2\x4e\x48\x72\xe9\xc8\x4b\xc2\x9b\x03\x68\x49\xd9\xc0\x90\xd3\x91\xf4\x36\x07\xd0\x1c\x2f\x0f\x46\x33\x02\xe5\x92\xbf\xb1\x94\xa8\xfd\xa0\x05\x66\x33\x07\x38\x78\xb0\x8c\xb9\xd2\x61\x93\xb7\x66\x93\xaa\xb1\x60\xd9\xb1\x49\xcd\x88\x59\xcb\x01\x4e\xc3\xd0\xd2\x2a\xa2\x62\x0e\x5f\xe4\x59\x2c\x84\xda\x39\x50\xd6\xb9\xf8\x32\x24\x0a\x5f\xae\x43\xc7\xe9\xe5\x85\x97\xd6\x1a\x53\x97\xbd\x14\x08\x17\xeb\x94\x03\xa0\x0f\x75\x63\x12\x69\x2b\xba\x78\x44\x1a\x11\x65\xf6\x2a\x92\x68\x2b\xba\x78\x24\xda\x34\x69\x49\xa9\x3c\x4d\x4c\xe8\x94\x7d\xd8\x25\xe7\x62\xe0\x51\x01\x21\xd8\x37\x91\x70\x71\x9a\x7c\x74\xea\x6e\xeb\x0f\xda\xd2\xc4\x66\x43\x3a\xba\x9b\xb4\x14\x21\xb7\x10\xd7\x67\x2f\xe9\x98\x09\x0a\xb3\xc9\x8e\xd8\x96\x11\xa7\x72\xe2\x37\xae\x28\xfa\x55\x41\x61\x74\xa0\xc3\x35\x47\xfc\xed\xd3\x2b\xd7\xbf\x75\xd9\x30\x03\x3a\xeb\x82\x40\x23\x65\x62\x21\x96\xcf\x5e\x1c\xd6\x97\x91\x45\x69\x0e\x8b\xcf\xe0\xab\xe9\xa8\xba\x3c\xab\x52\xe7\x4e\xa3\x0e\xc7\xf3\x6a\x94\x90\x3a\x37\x10\x53\x16\xa3\x9d\x80\xf1\x7b\xc9\x24\xb4\x54\x73\x2c\x34\xb3\xd5\x4c\x4a\x87\xeb\x42\x74\x9f\x4d\x7e\xc2\xe9\x69\x55\xd8\x06\x32\xb3\x6c\xf2\x0b\xa2\x1a\xdc\xa4\x13\x5c\x9e\x54\x1d\x7d\x97\xc7\xcc\xf1\x16\x8d\xd3\x26\x00\xc3\x32\x47\xd5\xf1\xb6\x5f\x5e\x98\xce\x54\x25\x37\x75\x98\x74\x27\x7c\xf6\x5e\x0a\x65\xb5\xdc\x25\x45\x5e\x28\x44\x09\x3a\xd0\x69\x2c\xc5\x77\x1a\xa5\x27\x58\x3e\x49\xcb\xfc\x55\xe6\x99\x85\x60\x42\x9b\xa0\x0a\xa5\x9a\xdd\xea\x40\x5b\xd0\x68\xed\x25\x0f\xa3\x9e\xbc\x9c\x43\xc4\x49\xe4\xa0\x03\x3d\xa7\x4a\xd7\xcf\xba\x67\x77\x4b\xa4\x5a\xcd\x37\xe5\x6a\x54\x88\x03\xb4\x97\x92\xc0\x97\x6a\x6a\x9a\xe8\xe3\x4d\x3f\x68\x22\x7d\x99\xb1\x74\x3c\xed\xc9\x3c\x49\xc1\x73\x97\xab\xd4\xe9\xb4\x54\xf3\xca\xc9\xe0\x5c\x3f\x03\x30\x4b\x52\x1a\x8d\x9e\x2c\x21\x94\x45\x63\x45\xf5\x67\x69\x7a\xb2\x80\x50\x46\x8d\x15\x15\x1e\x2c\x58\x51\xc5\x19\xcc\x32\x1f\xd3\x01\xb1\xa3\x0d\xd9\xa4\x21\x2c\xb5\xfc\xd3\x30\xec\x7c\xca\x40\xa7\x21\xcd\xb9\x99\x9e\x32\xc1\xf7\x64\x82\x52\x68\xab\x42\x64\xa0\x03\x9d\x59\x36\x0b\x94\xde\x70\x99\xe9\x49\x6d\x58\xaa\x99\x88\x32\xc2\x2f\x8f\x53\xda\xc0\xee\xeb\xe9\x25\x25\x5b\x30\x1b\x1d\xd9\x0a\x41\x7b\x36\x21\x15\x82\xd9\xc8\x40\xb4\xfb\x46\x6b\xdd\xda\xd0\xd6\x16\xef\xc6\xf9\x70\x18\xd0\x62\xb7\x80\x74\xd1\xe6\x79\x94\x59\x29\x31\x46\x36\x41\x18\x7a\xf6\x50\x14\x83\x81\x0c\x26\x07\x50\xef\x2d\x23\xe5\x71\xb4\xcc\x2b\x6f\x0c\x44\x9a\xfb\x01\x37\x30\x7b\x94\xa6\x8e\x3c\x27\x07\x10\x62\x99\xed\xe9\xe8\x44\xce\x93\x03\xe8\xbb\x66\x40\xd8\xe2\x8d\xc1\xa6\x2d\xc6\x25\xdb\xcd\xee\xf3\xd6\x7a\x20\x27\xef\x12\x94\xc3\x61\xf5\x00\x34\x66\x6f\x19\x1e\xcc\x43\xbc\x4b\x78\xa0\x20\x6f\x0c\x94\x07\xb0\x54\x4b\x67\xc5\x6e\x0a\x86\xfb\x70\x8d\xe7\x19\x96\xe3\x4d\xa9\x16\xf1\x0a\x63\xbb\xcc\x62\x1f\xf7\x38\xa0\x5b\x97\x86\x6e\xed\xec\x67\x97\x07\xf3\x70\x17\x58\xa3\xfe\x4f\x10\x4d\xbf\x50\x1a\x57\x1b\x44\x48\x58\x23\x5e\x9d\x5e\xb9\x65\x0e\x39\x44\xe3\xd9\xeb\x15\x4a\x98\x15\xbf\x70\x2c\x2e\x25\x88\x49\xb0\xbc\xd1\x90\xbd\x65\x2f\xf1\xa1\x7a\x6f\x66\xa3\xe3\x49\x2f\x7f\x1f\x1e\xca\x9a\x6e\x4b\x9b\xf1\xea\x7f\x49\x77\x46\x3c\x8f\x03\x68\x35\xfd\x2f\x9d\x33\x7a\xc8\x37\xec\x28\x2f\x23\xb4\xbc\x70\x7a\x08\x01\x82\x38\x5d\x7f\x90\x66\xdf\xcd\x49\x47\x96\x2e\x4b\x01\x65\xf4\xeb\x24\x49\x3d\xd0\xd4\x3b\xa6\x4e\x39\xf9\x4a\x75\x5f\x88\x75\x7b\x59\x28\xc8\x37\xa7\xfb\x2e\x96\x74\x7d\xe9\xb2\x88\xd0\x99\xa1\x07\x4f\xc4\x6d\xe7\x32\x77\xd6\xc9\x20\x5d\x66\xc8\x04\xbd\xbd\xcc\xd4\x3f\xe8\x90\x13\xd1\x22\x4e\xed\x65\x1e\xfc\x09\x4d\x02\xe5\x15\x0b\xa0\x54\x0b\x40\x42\x01\x10\xe9\x61\xdf\xd2\x87\x15\x52\x05\x1e\x48\xe3\xeb\xf1\x4e\x23\x42\xe8\x91\xbf\xaf\x13\xad\xea\x40\x22\x6e\x76\x45\x8e\x18\x70\x95\x80\x44\x70\x6c\x7e\x6e\xbc\x78\x08\xe9\x70\x20\xcd\x3c\xcb\x77\x4b\xb7\x95\x48\xe3\xb1\xf1\xff\x2f\xbe\xd4\x24\x6f\x5f\xff\xab\x45\x24\x8d\xbe\xf3\x40\xba\x7c\x5e\xee\xa7\xc6\x47\xa4\xa1\x8d\xeb\x7f\x8f\x5a\x48\xe8\x77\xc1\x33\x6e\xcc\x4b\xc9\xfd\xb7\xc9\xee\x97\xae\xf6\xef\xeb\x85\x5b\x49\x25\x0a\x21\x87\x0e\x94\xf4\xc7\x62\x28\xeb\xa6\xda\x4d\xc8\x1e\x9b\x2c\x1f\x9b\x58\x02\xdd\xd7\xaa\x84\x12\x28\x64\xf5\xdb\xb7\xf4\x53\x09\x6d\xfa\x26\xc7\x5f\x41\xff\xba\xf1\xf6\x2f\xa8\x5c\x37\x19\xfe\xba\x6f\x4f\xed\xfa\x8f\x0d\xee\x26\xdd\x5f\xf7\xf5\xe9\x9d\xe4\x99\x87\x0d\xee\x81\xaa\x6a\x89\x77\xba\x36\x2f\xf1\x3f\x2d\x19\x72\xe8\xd6\xa6\xbf\x44\x3f\x15\x43\xb6\x5b\x6b\xe7\xb4\x7f\xd8\xe4\xee\x9b\x5c\xec\xde\x4b\xdc\xec\xe5\xd1\xdd\xee\x1b\x4b\x53\x62\x0f\x6d\xc7\x24\xb8\x8c\x30\x19\x04\x1d\x7e\x27\x22\x23\x2c\xd1\x76\x82\x3f\x8c\x79\x0f\xa4\x59\xca\xee\x8b\xd0\x80\x04\x51\x07\xa2\x85\x62\x48\x2d\xc0\x52\x09\x3e\xd0\x09\x94\x73\x20\xad\x03\xec\x8a\x48\x04\xc5\x4a\x60\x52\x06\xa6\xcb\x75\x16\x90\x17\x56\x49\xc2\xc0\x42\x84\xa4\x7d\x17\x90\x17\x0e\x78\xb3\x73\x27\x23\xde\x81\xe8\xf5\x32\x24\x04\xcd\xae\x45\x6e\x16\x98\xd2\x1e\xe8\xac\x5f\x37\xda\x11\xca\xe0\x32\x09\x68\x93\xdf\x89\x51\xb3\x9d\x54\x10\xc3\xda\x03\xa9\x67\xd3\x7d\xd1\x9e\x2e\xb0\xa0\x30\x9f\xd3\x7d\xd9\xf4\xcc\x7d\x11\xbb\xef\x5e\x07\x45\x43\x48\x18\xae\x1e\x48\xba\x02\xcf\x3c\x41\x6d\x31\xb9\xd8\x37\x96\xa5\xbe\x6e\xbf\xa5\x6e\xeb\xdd\x73\xa6\x78\xb7\xc5\x37\xec\x84\x54\xe8\xd6\x72\x91\x92\x30\x61\x9c\x71\x20\xad\x9f\xf1\xac\xca\xd5\xfb\x32\x83\x51\x26\x8c\x4e\x42\x95\x03\x69\x35\xff\x20\xbe\x2c\x86\x96\xde\x31\x5a\x42\x29\x5c\x66\x37\xb2\x36\x2d\x56\x53\xdf\xf5\xa6\x75\xf7\x05\x3a\xaa\x1e\x83\x64\x0c\x56\xe8\xfb\x6e\x30\x03\xb3\x0d\xd4\x76\x56\x40\x3b\x75\xe0\x65\xb6\xd1\x84\x13\xc9\xec\xa6\x81\x13\x6c\x5e\x6e\x9d\x20\xba\x15\x22\xb7\x4e\x10\x29\x99\xf9\x60\x10\x6a\xa5\xf3\x8d\xdf\x59\xf2\xba\x4b\xa9\x97\x92\x79\x88\x32\x08\x16\xeb\xa0\x49\x20\x98\x92\x39\x83\x32\x04\xf6\xee\x39\x23\xe5\x47\xba\xe2\x4b\xad\x9f\x67\x89\xe4\xe9\x18\x52\xee\x5b\xa6\x9f\x89\x28\x11\x07\x12\x0f\x69\xf1\x4e\xad\x27\xf7\x5a\xe7\x92\x66\xb6\xd8\x59\x77\x76\x4f\xb7\x2c\x41\xbb\x2f\x29\x6f\x62\xf7\x26\x53\x78\x47\x17\xe4\xf6\xa4\x1e\x2c\xd6\x73\xdf\xd2\x0f\xf6\x61\x3e\xa8\x04\xea\xa5\x99\x0f\x92\x3f\x3d\xe5\x80\xb4\x46\x6c\xae\x6e\x05\xed\x2d\xcd\x6b\xa4\xe0\x0e\x7d\xe4\xff\x01\x53\x56\x78\xdf\x3e\xcc\x0c\x3a\xa6\xb3\xcd\xdd\xd6\xde\x7c\x44\x83\xd8\xce\x76\x77\x5b\xa4\x93\x4c\xaa\x1d\xd2\xe9\xee\xf6\xa6\xa3\xd3\x90\xba\x66\x56\x2b\x77\xb7\x94\x4c\x02\xd8\xa2\x36\xb3\xda\x21\xe9\x48\x94\xfc\x03\x75\x7d\x19\xd0\xd0\xbb\x66\xe8\xd6\xff\xe2\x9d\x94\x70\x46\xc2\x01\xda\x99\x20\x86\x54\xac\xc3\x68\x27\x8d\x62\x1f\x46\xad\xc1\x84\x5a\x72\x2a\xca\x5d\x1f\x5e\x40\xb4\x88\xa4\x32\x3c\x90\x96\xd3\x8b\x34\x60\xd1\x66\xfb\x24\x2e\x49\x2d\x20\x21\x85\x19\xfd\x10\xe3\x1d\x1e\xbb\xf4\x83\x7d\xc4\x68\xc5\x36\x52\xd4\xe2\x59\x72\xcf\x24\x7f\x87\xc7\xa7\xdc\xf0\x29\x59\x08\x10\xf7\x21\x59\x08\x48\x97\x98\x92\xd9\xfe\x04\x61\xe2\x4b\x09\xd5\x61\xa6\x8c\x9e\xb1\xfd\xfd\x4f\x6b\x6b\xa6\x2c\x73\xd3\x94\x2c\x04\x26\xa8\xf5\x57\xa7\x98\x72\xbc\x13\x5b\xf4\xf5\xe4\x3d\x21\x0f\x76\xe0\x64\x2d\x4c\xc9\xe2\x42\x31\xf6\x8a\xcd\x26\x1c\xdb\x21\x59\x5c\x70\x64\x6b\xfe\x92\x78\x7b\xc9\xfd\x94\x41\x68\xc7\xf5\xee\x40\xd4\xe2\xff\x89\xbd\xa5\xe9\x2f\x59\xa3\xf8\x9f\xd6\xc8\x37\x77\x37\x16\x9c\xb6\xcc\xb8\x17\xe4\x6f\xf6\x26\x25\x5f\x9f\xc6\x2c\x94\x7c\x56\x07\xde\x64\x3c\xb1\x35\x13\x59\x0b\xbb\x2f\xb8\x6e\x99\x70\x16\x2b\x07\x49\x52\xd8\x7d\x73\x45\x16\xc2\xee\xab\x2b\x27\x21\xb4\x89\xd1\x2d\x95\x5f\xf7\x8d\xd4\x2d\x95\x5f\x69\x9c\x33\x6f\xf2\xd1\x67\x33\xb4\x1b\x26\x69\xf1\x7b\x6b\x6d\xb3\x19\x9a\xdc\x0c\xbb\xaf\x97\xee\x1b\xd6\x67\x81\x74\xa3\xdf\x34\xbe\xdc\xb0\x76\x0b\x24\x29\x0b\xfb\x34\x26\x73\xf2\x6c\x16\x33\x3a\x79\xf6\x69\x1c\xd4\xf1\xb2\xfb\x82\x89\xe8\x14\x7d\x1a\x23\xa5\x2e\xec\xd3\x38\x71\xb3\x29\xb2\x28\xb9\xc1\x09\xaf\x26\x3e\x8c\xb6\xe2\x21\x4e\x45\x9f\x5e\x3f\x29\x13\x93\xcd\x78\x6e\x29\x13\xbb\x6f\xa6\x08\x61\x51\x6c\xb5\x72\x6f\x04\x0b\x17\x7c\xce\x63\x68\x13\x9f\x7b\x23\x1c\xb9\x70\xba\xb7\xe8\xc1\x06\x3f\x24\x22\xec\xbe\x7f\xba\x15\x1b\xb9\xc4\xa6\x41\x7a\xc2\x64\xab\x1e\x92\x12\x96\xd8\x34\x48\xff\x57\xba\x57\x0c\xab\xcf\xee\x55\xc1\x0f\xd1\x26\x3f\x24\x24\x4c\xb6\xeb\x21\xb8\x44\xe9\x5e\x23\x82\x05\xda\x28\xe7\xe6\x20\x6b\x15\xae\x53\x15\xe6\xfc\xef\x6b\x0a\x12\x15\x76\xdf\x83\xdc\x8a\x9d\x9c\x6c\x96\x43\x80\x8a\xbe\x8c\xbc\x84\x23\xb4\x59\xce\x4d\xe0\xe4\xec\x5d\x03\x1a\xc2\xee\xfd\x2f\xd1\x06\x73\xd4\x29\xf4\xe9\x96\x4f\xf8\x30\xe6\xa8\x93\xa9\xb0\x7c\x7a\xe4\xf9\x9c\x7d\xf4\x50\x10\x8b\xee\x3b\x82\x9b\x08\xc9\x36\xe8\xb9\x75\xc8\xee\xbe\x16\xb8\x95\x3d\xa6\x58\x47\x4d\x56\xc3\xbe\x2c\x3c\xa4\x15\x4c\xb9\x06\x24\x1d\x78\x8f\x2f\x6f\xfd\xcf\x2d\x88\x11\x2e\x33\x50\xd9\x9e\x96\x6e\xd9\x2c\x03\xd3\xbe\x8c\xbc\x2f\x24\x67\x72\xd4\x39\xbb\xfb\x20\xef\x54\x87\x36\xea\xb9\x5f\x31\x98\xd5\x03\xda\xaa\xb3\x1a\xd2\x18\xcc\x40\x89\xe2\x9c\x6b\x40\x5a\x15\x33\x50\x85\xd5\x28\xc4\xef\xdb\x8e\xaa\x91\x3d\x2f\x2f\x68\x97\xdc\x33\x56\xc5\xf3\x22\xcf\xcc\xd2\x4d\x1e\x38\x66\xda\xb0\xe7\x56\x42\x9a\xee\xb3\xbd\x33\x23\xda\x0e\xe7\x7e\x3d\x9f\x86\x36\xb5\xb8\x67\x22\xc7\xd8\xab\x2a\xe8\xf3\xb8\xbc\x9b\x7a\xed\xae\x42\xeb\x3f\x88\xc5\x02\x5e\x39\x10\x8b\xb5\xf9\x4e\x81\x68\x0b\x9e\x5b\xba\xc8\x71\x19\x7b\x08\x15\x6d\x7b\x1e\xe7\x3f\xb4\x61\xce\x8d\x22\xb1\x7b\x2b\xf0\x53\xf0\x20\x9b\xdf\x90\x0b\x71\xf8\xb8\x7d\x2b\x4a\x74\xb2\xfd\xcd\xad\xa8\xd0\xc9\x46\x36\xb7\x1c\x2d\x4b\x37\x96\x13\x88\xd0\x26\x32\x44\xf8\x28\xdd\x58\xfe\x63\x5e\xbc\xb6\x3f\x88\xd3\xab\xf9\xdb\xd4\xe2\x9e\x1d\xf1\x3b\xae\x12\x5f\x0a\x43\xbc\xb6\xba\x78\x18\x57\x89\xff\xa9\xd7\x5e\x5b\xe5\xdc\x19\x97\x37\x1b\x1f\x64\x6c\xca\xf9\x20\xe3\x11\x90\x56\xda\x94\xf3\x31\xbb\x23\x20\xcd\x6e\x89\x5a\xe4\xff\x63\x5a\x41\x79\x19\x7b\xf8\x4f\x46\x10\x97\xb1\x87\x70\x87\xb6\x93\x21\xca\xc8\x88\x73\xb2\x8c\x7e\x93\x0d\x65\xee\x0f\x0a\x2f\x01\x69\x5e\x2c\xc8\xa4\x96\x2c\xdd\xfb\xfb\x0f\x0a\xb7\xe8\xfa\x60\x7d\x35\x20\xf5\xcc\x42\x8e\xdc\x3d\x79\x06\x24\x5c\x1a\x01\xa9\xd7\xd5\xfd\x94\x39\x49\x9c\x1c\x75\x5d\x92\xf2\x0c\x28\xeb\x4b\xf7\x1a\x96\xe9\x33\x18\x97\x27\xc4\x95\xd8\xfb\x82\x65\x22\xd2\xf7\xa5\x8d\x81\x8d\x32\xb6\x2e\x56\x92\x8d\x78\xb6\x2e\x56\x86\xcf\x75\x78\xe2\x16\x1b\xcf\x11\x13\x65\x5c\x7f\x75\xfe\xf4\x2e\x20\xb5\xb7\x5c\x27\xce\x56\xd5\xed\xc1\x3f\x57\xfb\x27\x53\xc6\xa3\xb7\x10\x58\xf1\x40\x42\x2d\x8e\x10\x5b\x9a\xd3\x71\x45\x13\x62\x8b\xb6\xbf\xd8\x97\xa7\x77\x19\x7a\xf5\x2e\xfe\xa7\xe9\x5d\x1e\x04\xd3\xcb\x61\x63\x5f\x5b\xc3\x5d\x1e\x84\xd0\xdc\x16\x17\x5b\xb1\x18\x87\x8f\x3a\xa4\x05\x2d\xb6\xf3\x73\xf4\x14\x1b\x29\x90\xc9\x33\xd9\xc0\x00\xb7\xde\x62\xb3\xbf\x2d\xc3\xdf\x81\x8b\xd4\x81\xce\x34\xd9\x54\x80\xb0\x2a\xc3\x87\x0d\xe7\xf4\xb4\xad\xc0\x46\x0f\x6a\x7b\xbe\xad\x78\xde\xc5\xc7\xc3\x9d\x90\x87\x5c\xc8\xec\xec\x9e\x4d\x43\x43\x46\x46\xd5\xd0\x54\x9d\xcd\x10\xff\x5b\x86\x7e\x7a\x17\xff\x93\x99\x51\xd4\xc9\x02\xc2\xa6\x76\x3e\xf2\x7e\xe0\x84\x71\xa0\x2d\x28\x1b\xd2\xcc\xff\xbd\xd3\xcc\x1b\x61\x32\x63\x87\x4d\xed\x2c\x67\xcb\x1e\xff\x93\x41\x15\x31\xcb\x0e\xa4\x99\xf7\xfa\xc9\xfc\x77\x10\x39\x6c\xe3\xa8\x9b\x8a\x7b\x5d\x60\x14\x30\x34\xbc\x71\x53\x71\x3f\x71\xc0\xb5\x7d\xe1\x96\x6d\xf0\xc0\x6b\x60\x6f\xa9\x36\x8b\x0d\x0c\x9d\x14\xb4\xc4\x97\xac\x18\xec\x0d\x87\xdc\x54\xfe\xbe\xd4\x0c\xfe\xbd\x13\x33\xe8\x51\xe7\xa3\x77\x86\xc0\xdd\xe1\xbe\x08\x5b\xbd\x3b\xb5\x4f\x2e\x99\x24\x37\x3e\xb9\xc3\xfb\x51\x9c\x72\x4b\x8f\xd1\xb2\xd2\xc3\xef\x24\xc4\xad\xa3\xc7\x35\x76\x78\x67\xb7\xab\x84\xb1\xaf\xa5\xb7\xae\x2f\x86\x77\x6f\x8e\x85\xe3\x7b\x69\x42\xe1\x0c\xef\xde\xc8\x08\x5a\xfa\x88\x5a\x7e\x7a\x17\xb5\x88\x3a\x86\x6b\x01\xaf\xa7\x5b\x47\x18\x4f\xd7\x22\x61\x6c\xc5\x39\x8e\xb4\xc3\x1b\x9f\x2d\x45\x69\xb2\xe2\x7c\x57\x30\x19\xc6\xb4\xb9\xda\x28\x5e\x95\xa6\x33\xa6\x8d\x06\xb7\x8c\x90\x87\xc5\xda\xe6\x6a\xc3\x0a\xf2\xdd\xe8\x59\xfc\x8f\x9e\x99\x33\x34\x09\x40\x8b\x8b\xdd\xa4\x55\x22\x7a\xe5\x81\xa8\xa5\x1b\xd2\xd8\xd9\x99\x3b\xa1\xa9\x55\xd5\xf6\x5b\xed\xd1\x9e\x84\xa3\x6f\xe5\x89\xa6\x53\x7a\xb4\x07\x9f\x58\xee\x0b\xe2\xd0\x7c\x49\xf9\x86\x46\x8e\x5a\x58\x4d\xf3\x1e\x5d\x7b\x8c\xfc\x57\x8b\x70\xc9\x3d\xeb\xba\xb6\xb2\x95\xe2\x56\xe4\xfc\x61\x3b\x3f\x62\xec\x24\x6b\xaf\x37\x97\x19\xdd\x3d\xc3\xa2\xb9\xbb\x2f\xb2\x68\x1e\x56\xf2\x6c\xe5\x20\x1a\x36\xa3\xb3\x9b\x2b\xee\xfb\x9b\x4c\xa8\xa9\xfe\x3b\x63\xe3\x26\x4b\x6a\x19\x46\x65\x5d\x58\x24\x6b\x8a\x09\xd2\x53\x46\x34\x28\xc6\x6b\xb5\xef\xee\x62\xbc\xe5\x0f\xfa\xf4\xa5\x3b\xb3\x69\xde\xdd\xd6\x51\xc0\xe6\x95\x0e\xed\x63\x55\xef\x96\x95\x73\xb2\x0a\xd7\x6e\xb6\xb6\x60\xdb\xca\x7d\x54\x7c\x03\x44\x94\x9f\xe2\x3b\x9f\x2d\xed\x71\xf1\x2d\xcf\x26\xca\xa5\x55\xbf\x38\xda\x0e\xbc\xbb\xf7\x96\xc6\x38\x59\xe9\x41\xba\xd5\x62\x83\x4b\xdc\x69\x93\x95\x1e\x76\x9a\xb5\xc5\xe5\x56\xd8\xfd\x64\x4d\x30\xa1\x7f\x46\x31\xdb\xe7\xfa\x62\x78\x7c\xc3\x86\x8f\xc5\xd0\xd2\xff\x5c\x0b\x33\x91\xfd\x25\x33\xe1\xb1\x0f\x66\xa2\x04\xa4\x3a\x3d\x13\x83\x79\xb1\x28\x99\x12\x56\xb6\xfa\xd9\x53\x77\xca\xd5\xe3\xd3\xd5\xc6\xb0\x0d\xd0\x96\x56\x3a\x55\x8b\x04\xae\x36\xac\xac\xdd\x5c\x5f\x0c\xcf\x92\xcc\xa4\x47\x90\x3f\x06\xcf\x23\xc7\xff\xb4\xb6\xde\x0b\x48\x13\x9d\x48\x00\xb3\x71\x97\x1d\xc5\xbb\x0d\xd2\x0f\x58\xc9\xbb\x27\xb6\xa2\x26\xf8\x09\x66\x79\x76\xa5\xa6\x1e\xc1\x1a\xa4\xa6\x2e\xb6\xe8\xc3\xe9\x76\x14\x13\x35\x4e\xb7\x23\x47\x2d\xc2\x02\xcf\x20\xc1\x31\xab\xf7\x1e\xba\x4a\x19\x36\xee\xc0\xb7\xb6\xd8\xa4\x0f\xdf\xda\x61\x0b\x0e\x92\xc3\xa6\xea\xad\x87\xbc\x69\x53\xb5\xb8\x57\x68\xcb\x61\xcb\x89\x2d\x63\xe9\x54\x2d\x62\xe5\xfc\x3a\x02\x3f\xe5\xfd\x3a\x02\xcf\x30\x90\xb6\xc5\xeb\x56\x18\xcb\x42\x04\xcc\x03\x15\x7d\x59\x0c\x69\xa5\x2d\x0e\x95\x95\x60\xc4\xda\xe2\xf1\x4a\xa8\xcc\x4d\xb8\xa6\x32\xbc\x62\x8b\xf1\x95\xf8\xdf\x27\x88\xf6\x48\xf7\x64\xad\xe8\x56\xb6\xa7\x42\x5a\xce\x4d\xa4\xa6\x64\x4d\xe8\xbe\x25\x04\xac\x60\xdf\xa4\x60\xaa\x5e\x3f\xe2\x69\x56\xaf\x18\x97\x12\x04\xe6\x3c\x90\x7c\xd9\xd9\xd5\x3a\xc0\x91\xd5\x77\x04\x25\x4a\x56\x8b\x6d\x59\x0c\x17\x62\x74\x1e\xe8\x8c\xcf\x5a\x9c\xad\x08\x96\x65\x18\x7b\xe4\x27\x9a\xac\x16\xc3\x4f\xb4\xf8\xba\x72\x4b\xf1\x9d\xac\x5c\x23\x0d\xeb\xb0\x2e\x81\xc8\x45\xc5\xa6\xc0\x04\x2e\x1a\xd6\x10\xec\x47\xd4\x6f\xc5\xdb\x96\xb6\x3b\x35\xaf\xbb\xe2\x4b\x0e\xdf\x84\x6f\x25\x08\x18\x2d\x6a\x61\xfd\x4c\xd3\x18\xf9\xfa\x9e\x7a\xa3\xfc\xf6\x75\xe5\xc6\xac\xd7\x56\xc4\x78\x6c\xa6\x18\x1f\x6e\x99\xc3\x1b\x34\xe2\xf7\x37\x6f\x4e\x15\x70\x68\xd8\x4b\x69\xbf\xda\x96\xb4\xff\x09\x53\xd6\x61\x78\xf8\x6e\x6a\x2b\x92\x7f\xb2\x7a\x6b\xa3\xe6\x1e\x2d\xde\x69\x80\x96\x3a\x1c\x8d\x7d\x5b\xba\x5f\x08\xd0\x12\xf7\x65\x39\x8d\x84\x1c\x6a\x87\x77\x5a\x24\x2e\x6a\x66\x7d\x3f\x48\xce\xbb\x22\x74\xc8\x56\x92\x6d\x74\xc1\x56\x61\x91\x0f\xb5\x8c\x11\xef\xce\xf4\x0e\x4b\x32\x65\x12\x4a\xb1\x80\x3a\x3e\x8d\x90\x4f\xa4\x15\x8a\x05\xfc\x60\x06\x66\x61\x32\xec\x2c\x36\x36\xdd\x1c\x98\xb0\x2f\x7d\xf0\x8d\x2c\x58\x1d\x3f\xf8\x2b\x26\x94\x41\x8f\xfd\x15\x31\x3b\x7e\x9c\xd8\x13\xf5\xcf\x33\x51\x95\xe2\xbe\xf8\xe0\x00\x98\x48\x21\xf2\xe0\x00\x58\x88\xc9\xf8\xe0\xe5\x97\xf0\x51\x7c\xec\xca\x47\x44\xc6\x07\x57\xbe\x44\xfa\x90\x03\xdd\xb2\x50\x76\x9d\xda\x03\x62\xcb\xfc\x90\x93\x73\x60\x07\x7a\xa0\x57\xff\x73\x0b\x10\xd9\xa4\x67\x28\x32\x5b\x0d\x48\xc8\x34\x8b\x21\xf5\xb3\x1a\x12\x59\x91\xa4\xec\xc1\x13\x2f\xa1\x36\x7a\xec\x89\x47\x40\xc7\x03\x69\xc5\xc4\x24\x0f\x44\xcf\x02\xfa\x09\x9a\x40\x87\xdd\x8c\xe9\xf9\x54\x3c\x9d\x31\x3d\x83\xa4\xe5\x27\xd3\xc8\x33\x0b\x68\xbe\xba\x21\x8d\x7d\x0c\x43\x6a\x61\x05\xa4\x19\xec\xd4\xa9\x14\xfc\x63\xba\xf5\x02\x46\x2e\xd7\x29\xe6\xd3\xdc\x3a\xbb\x68\x62\x9f\x3c\x38\xe0\xa5\xe6\xbe\x28\x36\xe4\x58\x57\x35\x34\xf4\xce\x5f\x0a\xaf\xb1\x69\x3e\xd0\x11\xbf\x6d\x06\x74\xeb\x7f\x6e\x41\x02\x02\x13\xe7\x03\xfd\xf4\x65\x40\x9f\xde\xb1\x0e\xa8\x12\x9b\xe7\x13\xe5\x61\x9b\xd4\xc2\xbe\xb9\xcd\x6e\x48\x73\xed\xf1\x29\x78\x64\x21\x8a\xe1\x83\x57\x5f\x99\xee\xb5\x62\xce\x8c\x65\x8c\x54\xd0\x99\x32\xdd\x33\x05\x9d\x19\xab\xc4\xff\x7e\x82\xfc\x3f\xe1\x0b\x26\xcb\x07\x6a\x7a\xe7\xf6\x14\x33\xb3\x47\xaf\xcf\xbc\x8c\x55\xa6\xa1\x47\xef\xdc\x82\x56\xb3\xbb\x16\xf6\xe9\xdc\xab\x1e\x48\xb3\xd4\x2e\x43\x3f\xb5\xe7\x77\xa2\x1c\x2e\x0c\x1f\x5c\x07\x0b\xd6\xd9\x0f\xae\x83\x83\xeb\xca\x03\x69\x8d\x5a\x35\x34\xf4\xe5\x32\x34\x55\x8b\x5b\xd7\x66\x03\xdb\xed\x07\x2f\xc3\xc4\x75\xde\x33\x15\xf7\x72\x70\x5d\xf9\x90\x0c\x74\x2c\xe3\x7c\xdb\x44\x49\x71\x7b\xda\x3e\xa1\xfc\x3d\x90\x5a\xc8\xb4\xa0\xfd\xf6\x58\xc6\x82\x2e\x0e\x46\xc6\x8a\x07\xbf\xc0\xb1\xbc\x62\xf2\x0b\x4c\xbd\xfc\x33\x54\xc4\x63\xa7\xc1\xe9\x41\x10\x3a\xbe\x97\x80\xb4\x64\xab\x18\xd2\x64\x9b\xe0\xb5\x19\x1f\xe4\xe8\x39\x90\x26\xb4\xba\x6b\x22\xea\xb5\x9a\x21\x06\x18\xff\x93\xaf\x81\x49\x8e\x08\xf2\xdc\x31\x3d\xf8\x1b\x16\xe2\x27\x3e\xf8\x1b\x8e\x65\x02\xd4\xae\x3d\x71\x03\xf4\xe0\x62\x98\xb8\xe5\x39\xd0\x2d\x23\x7f\xff\x4f\xbb\xa2\x6e\x26\x42\xe0\xcc\x6e\xb6\x21\x55\x62\x99\x9e\x5e\xc5\xb5\x49\x5c\xdd\x1c\x48\x0b\x98\xe3\x7f\xb4\x47\xaf\x51\x09\x76\x23\x53\x44\xaf\x71\x9d\x67\xce\x26\x46\x3f\x07\x5a\x7a\x67\x48\xcc\xb5\x1b\x99\xe4\x74\x58\xa6\x97\x4c\x3b\xf3\xd4\x8d\x5a\xec\xbe\x09\xbc\x78\x20\xf5\xac\xb9\x9f\x07\x61\xe6\xe5\x11\x4d\xd0\xbc\x17\x43\x9a\x5d\x8b\x0b\x54\x82\xa4\xaa\x38\x90\xfc\x22\xfe\x20\xad\x5f\xa7\xd7\x13\xc7\x08\x33\xb4\x09\x41\xf4\x69\x48\x58\x60\x04\x9d\x78\x46\x8c\xcb\x90\xe6\x65\x80\xca\x38\x00\xce\x12\x90\x88\xda\x04\x3f\x3d\x22\xb7\x7e\x6b\x8d\xcc\xde\x08\x16\xdf\xcd\x6a\xb5\x1b\x9e\x97\x11\x5b\x91\xe3\x13\x87\xfd\x03\x89\x70\x2d\xba\x94\xcd\x2b\xf5\xa8\x65\xe3\x55\xe1\xb1\x43\x48\xc6\x5d\x12\xa5\x76\x0b\x24\x7c\x0c\xa7\x19\xcc\x84\xb9\x9a\xa5\xac\xa9\xf5\x33\x96\x13\xa1\x66\xd6\x80\xb4\x0e\x33\x20\xad\xad\x71\x70\x81\x13\x66\x99\x0b\xd6\x60\x8c\x44\x21\xd9\x4d\x8e\x0b\x2c\xb0\x78\x5a\xcc\x99\x57\x53\x3b\xec\x49\x80\xa6\x03\x89\x1e\x26\xe3\x23\xf1\x17\xc7\xfb\x03\x69\x7c\x35\xde\xa9\xf5\xe8\xf5\x61\xfb\x33\xe5\x78\xa7\x59\x32\x8d\x69\x4f\x3d\x93\x31\x4b\x31\x65\x52\x37\x55\x49\x3d\x59\x66\x8b\x77\x43\x5f\x36\x43\x67\xa5\xc7\x15\xef\x24\x4a\x1a\xfd\x44\x05\x39\xae\x80\xa6\xa0\x6c\x48\xb3\xd4\x02\xba\xe5\x8d\xe2\xf6\x74\xd3\x3f\x2c\x4a\x6e\xdc\x51\x4c\x7f\x84\x4f\x1d\x16\x2c\xec\xe1\x87\x19\xb6\xac\x53\x27\x91\x58\x0e\x94\xcf\x3b\xcf\x19\x1e\x8b\x04\x75\x3c\x50\x97\x1f\x8b\x7b\x2d\xa1\x8a\x6f\xe3\x81\xe4\x19\xd3\xe3\x7f\x4b\xef\x3c\x5a\x29\xda\xe7\x5f\x0b\x9f\xbe\xe4\x7f\x52\x33\x96\xe9\x3a\xa5\x58\x2c\xd3\xb5\xc8\x51\x71\x26\x63\xf2\x26\xe4\x55\xfc\x4f\x86\xed\xc9\x98\xbc\xe1\x1a\xfd\x9f\x77\xca\xe7\x53\x75\xa6\x77\x43\xea\x8c\x25\x35\x87\x94\x61\x26\xa9\x43\xca\x4c\x46\x42\x1d\x52\xca\x34\x89\x73\x48\x99\x26\x6a\xf9\x35\xce\x34\xe3\x1d\x83\x58\x86\x84\x3e\xcb\x75\x8a\xdd\x10\x85\xe4\x40\x67\x4f\x36\x4a\xbc\xd3\x54\x8c\x80\x9a\xbe\xcc\x86\xba\xbe\x8c\xff\xa9\x3d\x23\xa8\x92\xa9\xcd\x64\x71\xa1\x83\x4f\x1a\x26\x55\xb4\xa3\xc3\xc4\xf9\x4c\x79\xf5\x18\x99\x1e\x98\xf2\x28\x86\x34\x2f\xde\x37\x4b\xc9\x59\x62\x9f\x27\x37\xc8\x99\xaf\x80\x84\x3e\x35\x20\x6a\x71\x7b\x62\x61\xc3\x04\xa8\x0c\x6a\x33\x5b\x52\xe3\xdd\x18\x7b\x40\xfc\x19\xa7\x17\xf0\xf1\xd8\x99\x33\x65\x40\x9b\xd9\xec\xed\x85\x0d\xcf\x80\xe4\xb4\x64\x42\x92\xa9\x6f\x1a\x16\x02\x52\x25\x96\xe9\xd5\x54\x58\x9b\x32\xbd\x7e\x3a\x21\x95\xd8\x57\xbe\xc4\x45\x33\xdb\x78\x61\x1b\x66\x0d\xf8\x26\x4e\xaf\x98\x7c\x13\x67\x36\x33\x47\x41\x38\x4c\x10\x2f\x63\xf0\x6a\x4a\x41\x98\x46\x73\x0b\x22\xab\x6c\x0c\x79\x21\xab\x16\x90\xd6\xc1\x73\x8d\x69\xf0\xf4\x4a\xcb\x75\x31\x0d\x8b\x20\x45\xf4\x9f\xd9\xf3\x82\x2a\x71\x18\x77\x7f\xac\xdf\x8a\x2f\xd5\x33\xe3\x27\xe7\xb3\xe1\xd6\x7f\x90\x87\x31\x44\x59\x66\x67\x76\xaf\x15\x9a\xb5\x4c\xef\xb0\x49\x5d\x36\x8c\xbb\x3f\xe6\x65\x05\xa4\x3a\x8d\x9f\xb2\x30\x9e\xc5\x3b\x3b\x29\x01\x13\xe7\xba\x07\x5f\xc3\x34\x2c\xc8\xf0\x35\x5c\xde\x49\x7e\x60\xa4\xb1\x0e\xf7\xc2\x62\x91\x8e\xcb\x5f\xf1\xda\xa2\x5c\x1b\xc6\x17\x9d\x00\x9d\x20\xff\x21\xaf\x6c\x8a\x73\xd6\x27\x01\x58\x2c\x3c\x3e\x9d\x0b\x56\xca\x86\xe4\x5c\x66\x6c\x45\xd5\x16\xe7\x25\x29\xd0\xca\x4a\x01\x69\x76\x8d\x2f\x4a\x4c\x56\x96\xd9\x1b\xea\x34\x9f\x89\x96\xac\x88\x27\xee\x7d\x07\x1a\xfa\x32\xde\x51\xcb\x34\xb4\xf4\x2e\x20\xf5\x93\xb5\x5d\x97\x32\xb0\xe1\x36\xfa\x2c\xec\x8d\xf1\x14\x3d\x10\x3d\x8b\x77\x07\x77\xc9\x7c\xfb\xac\x4b\x9b\xbe\x95\x5d\x0b\xab\xc2\x6a\xae\x0b\xfc\x5c\xee\x99\xae\x4b\xf0\x7e\x79\x16\x79\xca\x70\x2a\x3d\x10\xb5\x34\x43\xd4\x12\x5f\xfe\xe4\x7e\xe6\xf6\x88\xcf\xc7\xe6\x6d\x61\x99\xec\xb3\xdb\xc2\x32\x99\xcc\xb9\x0f\xae\x87\xc9\xa7\x35\xbb\x1e\xae\xfc\xcf\xb0\x13\x0f\xa9\x6f\x0b\x9e\x2c\x8f\x9d\x0f\xab\x27\x0d\xef\x43\x1f\x6e\x96\x8e\xdb\xce\x16\x7e\x20\x2d\xe7\x32\x44\x68\x6b\xd8\x1b\x3e\x86\x85\x8c\xb8\x0f\x3e\x86\xc9\x07\xad\xa5\x90\xb7\xb3\x16\x77\x5b\x37\xa9\xb8\xbd\x1c\x48\xde\x71\xc5\xad\x13\x0e\xfd\x8a\x77\x3f\x7d\x19\xff\x3b\xc2\x83\x7b\xce\x07\x07\xc4\xe4\x63\x90\x9d\x0c\x7d\xb4\x5a\x0a\xac\x53\x16\xfb\xfb\x95\x09\xb3\x7c\xf9\x1d\x4b\xcd\x81\x7e\x65\xb1\x5a\xdc\x54\x0e\xa4\x45\x8a\x16\x08\x19\x7e\x45\x2d\x4d\xef\xaa\x21\x8d\x8f\x7d\x3a\x2e\x88\x05\xd7\x97\x67\x65\xe2\x65\x23\xd3\xf1\x2d\x4c\x04\x83\x3f\x10\x5f\xba\x2f\x12\x56\xb8\x77\x3c\x0b\x3b\x65\x1f\x9f\x96\x8e\xfe\x05\x3b\x94\x03\x51\x8b\x5b\x07\x45\x60\xc3\xf8\x21\x16\x1f\xec\x96\x8e\xfe\xb3\x1a\x41\x39\xfa\x93\x4f\xf7\x40\x5a\x4d\xa3\x2b\x36\xcc\x24\xd7\x7d\xec\x6f\x48\x08\xc0\x07\x7f\xc3\x84\x7f\xed\x83\xbf\x61\xc1\xb6\xe5\x40\x53\x90\x5b\x90\xd0\x69\x9e\x25\xa5\x90\x28\x58\xac\x3c\x78\x23\xce\xe6\x59\x72\x3e\x89\xe4\x77\x84\x3e\x37\x66\xa1\x78\xc3\x9a\xe5\xc1\x03\x31\xf9\xf4\x84\x0b\xa2\x93\xd3\x1e\x48\xc1\xba\xff\x20\x05\x05\xcf\x8c\x48\xd6\xc7\xb3\x99\x74\x9c\xd0\xcd\x24\xa7\x2b\x83\xd9\x4c\x3a\x58\x1f\x63\x21\xf3\x2c\xe7\x7a\xfb\xfb\x9f\xe6\x05\xa6\xbc\x9c\xf8\x2d\xfe\xc7\xbc\x64\xff\x0f\x2c\xc8\xf1\xa5\xfe\x07\xc3\x5e\x0a\x27\x34\x7d\x01\xb4\x08\x8a\x4b\x8e\xe0\x67\x55\x5c\x36\xab\xeb\x14\xdb\x27\x25\xf0\x81\xce\xfa\x35\xaf\x26\xce\x8c\xcb\x18\x52\x49\x3d\x65\xda\xac\xb0\xd3\x11\x90\xfe\xd7\xe3\x4b\xb5\xde\xe3\x1d\x09\x9b\xe9\x59\x03\x5f\xd8\x6c\x2c\xec\x9b\xf1\xd1\x79\x16\x17\x08\xa4\x18\x3e\x50\x17\x34\x0d\xa9\x2f\x9c\x51\x16\xea\xbb\x69\xa6\xdc\x58\xf7\x19\x90\x13\x47\x02\x49\x74\xb5\x78\x77\x18\xfd\xf4\xf5\xcc\x6a\x50\xf8\x74\x5f\x44\xe1\xbe\xac\x89\x64\xd7\x9e\xb3\x4e\x3f\xfd\x3f\x94\x72\xd3\x73\xd6\x9d\x5d\xa5\x18\xd2\xd8\x97\xbf\x64\x44\x51\xe7\xc1\x72\x67\xa0\x7d\xf0\xa7\x2c\xcb\xc2\xa3\x3b\x37\xcc\x32\x24\xbc\x5e\xf1\x4e\xd4\x38\xe3\x1d\xe1\xd6\xdd\x3a\xf3\x62\x51\xd2\x1d\x2d\xdf\x7d\xd1\xe6\x74\xad\xf4\x6f\xa6\x1c\x09\x38\xaa\xa1\x5b\x1e\xb9\x51\xa9\xc8\xd8\x84\xab\xd8\xb7\xc5\x97\x19\xab\x6b\x77\xea\xfb\x99\x85\x1a\xce\x97\x19\x4b\x17\x01\xce\x6e\x7a\xa0\xd3\xed\x65\xa6\x2c\xbb\x61\xe7\x36\x7d\x16\xd7\x02\xcb\x4c\x52\x79\x36\x8a\xaf\x3d\x70\xea\x4c\xcb\x24\xae\x5c\x71\xb3\x9b\xd1\xcb\x57\xd3\x39\x41\x0f\x24\x17\x63\x23\x1a\xca\xb5\x90\xc6\x28\xd7\xd6\x0a\x48\xb5\x70\x5d\xb2\x06\xd2\xd1\x82\x05\xc5\x5b\x48\xe3\xa1\x9d\x79\x37\xc3\x96\xe2\xad\x5e\x96\x95\xba\x24\xa8\x18\x82\x3d\x38\x79\xd6\xcb\x02\x69\x32\xda\x62\x48\x42\xae\x9b\xbd\x49\x49\x56\x2f\xcf\x84\x8e\xf7\xce\x7b\x79\x20\x8d\xb6\xc6\xbb\xa5\x77\xdd\xd0\xad\xff\x31\xbb\x13\xaf\x69\x33\x2d\x45\x09\xaa\xd7\xe5\x5a\x24\xf2\x7c\x0d\xb1\xa6\x0e\x6f\xc1\xb0\x27\x0e\xd6\x66\x30\x8a\x46\x9b\x82\x7d\x13\x8d\xf6\xb2\x00\x24\xa9\xf7\x6a\x51\xa7\xbc\xaf\xcd\x60\x64\x7d\xec\x54\x97\x8f\x53\x78\x07\x33\xd7\xd1\xbf\x5e\x5e\x31\x8e\xfe\xc1\xda\x51\xa0\x05\x33\x97\xf5\xb1\x93\x5e\x3e\x4b\x69\xe3\xa6\xaf\x1a\xc8\xf4\x9d\x82\x99\x2b\x14\x51\xf5\xd5\xd4\xe2\x22\x20\x98\xa4\x02\x07\x39\xe3\xe3\x43\x6a\xee\x14\x4c\x44\x47\xf8\x7a\x59\xac\xa1\x16\x0b\x96\xa2\x23\xfc\x1c\xee\xa7\xec\x8d\xeb\x65\x21\x77\x4b\x90\xf9\x50\xbb\xee\xc5\xbb\x80\x0e\x19\xfb\xe4\xb8\x38\xb4\x07\x6b\xd0\xc1\xbc\x5e\x29\x20\xf5\xc5\xe4\xaf\x83\x79\xbd\x4c\x2b\x72\x3d\x9d\x3e\xe5\xe1\x7a\x9a\x82\x8c\x75\x68\x77\xa2\xbe\x87\x1c\xe0\x4e\xf2\x7d\xa0\x47\xb5\x78\x0c\x60\xab\x29\x4e\xb6\xc1\x4e\x87\xf7\xe0\x62\x5a\x2f\x63\xb2\x0e\xdf\x4e\x77\x77\xa0\xf6\x5f\xff\x91\x03\x07\x95\xc0\xae\x5e\x1e\xd1\x56\xfa\x99\xc0\x33\x1d\xd3\xe7\xb0\xb8\xd8\x60\xb9\x05\xe0\x56\x22\x80\xcb\xdb\x20\x45\x1e\x72\xb6\xb6\x07\x27\xd6\x7c\x99\xa6\x37\x21\x96\xbd\x3b\xd5\xb9\x7c\x0e\xe3\x84\xd4\x7e\x39\xe6\x6c\xdf\x5a\x31\x8b\x3c\xd2\xd4\xc5\x9c\x71\xfa\xb5\x86\x87\x4c\xe2\xf9\xaf\xd7\x8c\xd6\xc2\x91\xa4\x74\xd1\x4f\x9d\x8c\x9d\x77\xeb\x40\x8a\x0b\x6d\xc1\xa9\x18\x40\x39\x7a\xa6\x73\x72\x25\xf6\xed\x83\x73\xac\x93\x57\x3f\x78\xc7\x3a\x7d\xd5\x81\x7e\xfa\xd2\x2d\x28\xd2\xee\xe5\x15\x53\x1e\xbb\x19\xfb\x7b\x29\x08\xf3\xc5\x75\x1e\xa9\xc5\xeb\x55\xfe\x7d\x7d\xb1\x64\x29\x9c\x2f\x4b\x5c\x79\xd2\xce\xd8\x9d\xca\x93\xd6\x89\xa5\x0f\xa4\xd0\x02\x57\x40\x5a\x5c\xef\x47\x15\xa4\xb6\x5e\x25\xfe\xa7\xc5\x35\xcb\x94\xfd\xef\x8c\x9d\xa4\xec\x7f\xf3\x65\xe6\xf3\x82\x06\x46\x18\x59\xf5\xe6\xcb\x68\x20\xab\xde\x19\x3b\x34\x1d\xbe\x67\xec\xad\x5e\x48\xd5\xcc\x55\x87\x6f\xe7\x78\x3e\x90\x16\xd7\x08\x4a\x16\x95\xcb\x7b\x39\x05\x17\xaa\x7f\xad\x8b\x2d\xc6\xae\x48\xc7\xf4\x19\xfb\x20\x29\x2b\x9d\xbf\xf9\x40\x1a\x83\x47\x4b\xa4\xda\xcb\x3b\x65\x85\xaa\x9d\xd3\xa3\xfd\x41\xe2\xde\x29\xff\x40\x7a\x8f\xef\xc7\xc2\x7b\x7c\x3f\xa2\x8a\x7b\xa7\xac\xd0\xb5\x33\x76\x30\x3f\x96\xba\xba\x4e\xd0\xdc\xe4\xaf\xc3\xb7\x13\xdd\x1c\x88\x20\xe0\xf1\x3f\xcd\xa0\x91\x42\x79\x50\x9c\x6d\xe6\x40\x42\x8a\xe6\xff\x89\xfc\x67\xb4\x0e\x09\x58\x3c\xc9\xf5\xd7\xd9\x62\x1e\x27\x05\x4f\x16\x48\x3f\xed\xbb\x7c\xf7\xb6\x14\x1f\x37\x27\x93\xf8\xc7\xd8\xbd\x17\x97\xb5\x6c\x4e\x26\x4e\x45\x01\x9a\xbe\xee\x5a\x3a\xa6\x3b\x5f\xf0\x81\x34\x13\x66\xed\x64\x0e\x4f\xc6\x17\x85\xf7\xc9\xbe\x73\x25\x6f\x78\xbd\xdc\xba\xe2\xfb\x4c\x5f\x2a\xad\x0f\xb6\xd8\xe3\x7f\x8f\xde\x75\x43\xaf\x6a\x01\x27\x64\x3b\xeb\x2c\xc2\x07\xa2\x85\x6a\x88\x5a\xdc\x9e\xd8\x46\x32\x0e\x7e\xc4\x58\xf7\x8e\x90\xb4\xe4\xc9\x18\xa9\xac\xe4\x73\xae\xf8\x52\x73\xed\xfd\xa1\x2e\x02\xe6\x5c\xf1\xa5\xc6\xc0\xce\x15\x57\xe3\xe9\x2d\x0b\xae\xc6\x99\x88\xfa\x0f\xae\xc6\xd3\x4a\x47\x5c\x8d\xab\xb5\x00\xb7\xb2\x00\x4e\x6f\x59\xee\x8b\x79\x41\x90\xe1\x5c\x3c\x7d\x61\x71\x5f\x9e\x97\x01\x24\x7a\xc0\x25\xeb\x40\xc2\x33\x84\xf8\x4d\xb2\x40\xdf\x29\x93\x95\x7c\xfa\xb0\x7f\xcb\xb0\x35\x13\xf1\xfd\xc1\x45\xb9\x9a\x3a\x6e\xd2\x08\x12\xf2\xfd\x21\x5f\x79\xb5\x0e\x02\xf7\xe5\x8a\xf5\xf1\x43\xf2\xf2\x49\xf0\x89\xc7\xc9\xca\x89\x29\xf1\xe0\xb0\x5c\xb1\x45\x7e\x70\x58\xce\x38\x76\x3d\x38\x2c\x57\x72\xcf\x3c\x4e\x63\x4e\xc4\xf6\x03\x69\x0c\x23\x20\xcd\x3c\x38\x71\x2b\x8e\xef\xf4\x49\xfc\x4e\xb0\xd3\x61\x88\xd0\xfd\x08\x71\xbc\x97\xa7\x4f\xd4\x78\x2f\x57\xfc\x5d\x1f\xbc\x97\x33\xa1\xd6\x1f\xbc\x97\xab\xb5\x23\xe4\x41\xaf\xd6\x87\x90\xe8\xbc\x5a\xcb\x41\x26\xf3\xe9\x13\x2e\x89\xcc\xeb\x35\xff\x19\x51\xe8\xc1\x09\x7a\x7a\x37\x75\x27\xe2\xfc\x4f\x0f\x09\x72\x8c\x77\x20\xda\xf4\x90\xc4\xb4\xb0\xce\x3d\xd0\xd9\xd9\xad\x1e\xd0\xad\x77\xd4\x92\x75\x90\xf4\x51\xee\x56\xd4\x5e\x27\x1a\x3e\x90\xc2\xb3\x78\xc9\x48\xc4\x93\x8c\x76\xba\x5c\x98\xde\xf9\xe0\x04\xed\xdc\xbf\x07\xd2\xc4\x70\x84\xb8\x33\x53\xb1\xdc\x02\x04\xd8\xe3\x7f\x42\x2d\x4e\x02\x77\x56\x3a\xc4\x64\x24\xcc\xec\x5c\x97\x5b\x57\x4a\xbf\x64\x44\x53\x42\x1f\x27\x08\x7e\x70\xb3\x9e\x2b\xda\x83\x8c\xa3\xd7\xcc\x19\xe7\x89\x9b\xf4\x3e\xc9\xa8\x95\xd9\x61\x2f\x8f\x48\x09\x11\xb0\xd1\x7e\x6e\xd9\xf8\x3a\x9d\xef\x43\xf2\xf5\x4a\xfc\xf3\x07\x07\x69\xe7\xf6\x7d\x6e\xe5\xd2\x59\xde\x19\xdc\x45\xa9\xbc\x92\x17\xbe\x80\x14\x2b\xbe\x5c\x7a\x47\xeb\x05\x22\xf3\x6a\x2a\x2d\xce\xb2\x18\xc5\x7d\xb9\x9a\x9d\x92\xcd\x7d\x59\x8c\xde\x05\x76\xe3\x95\x96\x25\x41\x4d\x66\x0d\x15\x62\xf1\x4c\xe8\x5a\xa0\xe2\x60\x7b\xa0\x71\x6a\xa9\xf1\x6e\xea\x5d\x37\xf4\x53\x50\x9d\x62\x48\xeb\xe0\x79\xd1\xb5\xc0\xba\x8c\x4b\xb2\xce\xcd\xc9\xb3\x24\x87\xe5\x9a\xd8\x0a\xe0\xb0\x9c\xd3\x0a\x68\xe9\xdd\x34\xf4\x08\x72\xeb\x47\xc4\xae\x60\x06\xb2\x39\xa8\x66\xbc\xce\xed\x9e\x3c\x67\x0a\x7f\x54\xcd\x78\xef\x0a\xce\x2f\xd7\x72\x66\xa2\x9a\xf1\xde\x4a\x90\x53\x71\xcc\x7d\x6e\xe5\xaf\x59\x81\x83\x8d\x84\x63\x9c\x97\x48\xcc\x5e\x49\xc4\x7e\x20\x25\x04\xf4\x5c\x2b\xfd\xcc\x8a\x11\x35\x32\x72\x7a\x96\x74\x11\xb0\x62\x44\xb2\xe3\xad\xe4\x6f\x7f\xee\x46\x8a\x63\x8f\xaf\x39\xa5\xf1\x65\xc8\xd9\xea\x0d\x69\x44\xd9\x2d\x1c\x31\xba\xfe\x1b\xfa\xf4\x8e\x16\x3a\x81\x89\xfe\x20\xb2\x35\x67\x43\xd4\xd9\x0c\xf1\x3f\x5a\xef\xce\x52\xdf\x0d\x1d\xf6\x66\x55\xe2\xdd\x23\x5d\xb6\xa1\x72\x5a\x28\xf1\xbf\xaa\x2f\x93\xa1\xb3\x46\xc1\x78\xbb\x53\xe0\x46\x2d\x8f\xde\x55\x43\x64\xe9\x8d\xff\xfd\x54\x8b\xfb\xe9\xbc\xb3\x01\x69\xce\x8a\xeb\x54\xd4\xff\x10\x41\x32\x16\xa8\x21\x74\x74\xf2\x5f\x58\xff\x1f\x48\x2b\x66\xea\x90\xa9\xee\xc2\xde\xff\x21\xcf\x7c\x8d\x31\x38\xaf\xbc\xd7\x56\x79\x6f\x56\xb2\x48\x18\x4e\xb6\x3b\x0d\x69\xce\xd8\x68\xdd\x64\xc1\x49\xf5\xdf\xd7\x17\x64\xa3\x5f\xc9\x7c\x5f\x76\xbc\x35\x64\xd7\x60\xf0\x9e\x34\x85\x7e\x5a\xc9\x32\x61\x90\x9c\x2e\x1a\x3c\x0c\x6d\x05\xa3\x18\xe4\xb6\xf5\x84\x0e\x26\xe6\x0f\x12\x8a\x70\xb0\xbb\x07\x53\x51\x3d\x40\x50\xcb\x84\x3b\x40\x1f\x76\x99\xf7\x24\xa9\xa2\x09\x57\xf9\x6f\x56\xa0\xf9\x84\x20\xd8\x23\xe1\x32\x5c\xad\xef\x8d\x0c\xf2\xec\x7c\x48\x20\xbf\x02\xed\x74\xb9\x50\xad\xfd\x25\x9b\xfc\xca\x29\xea\xd4\x02\x9a\xc1\x4c\x16\xde\x0b\x38\x59\x78\x4b\x4e\x59\xd9\xae\x40\x18\x5d\x4a\x54\x12\x93\x1c\x48\xa1\xa7\x72\xfc\x4f\xf9\x0b\xbd\xd4\x13\x66\x60\x39\x3a\x21\x39\x8b\x35\xf2\xde\x84\x38\x5c\x90\x80\xc5\x8c\x32\xcc\xd4\x10\x87\xcb\x63\x9f\x86\xb4\x7e\x2d\xbe\x3c\x73\x1d\xbd\x5e\xee\x99\xbf\x94\x60\xb1\x72\xed\x5e\x12\x2c\xd6\x6e\xe3\x86\x5c\xad\xc1\xbe\x15\x4f\xb8\x5a\x67\x7d\x2f\xfa\xe9\x9d\x88\x2c\x69\x97\x15\x6f\xf7\x22\x2b\xa8\x77\x22\xba\x32\x58\xd9\x02\x42\x57\x06\x35\x84\xaa\x73\x9e\x5a\x20\xdd\xca\xce\x11\x62\xf4\x86\x99\x7b\x44\xb7\x04\x52\x36\x8b\xbe\x61\x76\xde\x31\x39\xfb\xe9\x88\x2f\x35\x06\x8f\x88\x6c\x31\x21\xf2\x6e\x70\x30\xbe\x94\x78\x2a\x66\x37\x37\xe2\xc9\xb8\x7b\x13\xce\xcb\xec\xe6\x86\x29\xc7\x18\x94\x6e\x8b\x40\x5c\x0f\x6e\xc1\x8b\xb8\xad\x4f\x24\xb6\x77\x2d\xba\x24\x58\xc5\xec\x94\x4b\x82\xe4\x8d\x81\xd2\xce\xac\x62\x96\xe2\x94\xf7\x16\x80\xba\x16\x58\xc5\x2c\x65\x33\x5a\x0b\x55\x05\x1a\xce\xd9\xc2\x5f\x2a\xf9\x1a\x82\xd3\xc9\x4c\x97\xff\x27\x81\x54\x8c\xd7\x24\x94\x09\x31\xca\x95\x01\x3e\x67\x0f\x99\xee\xab\xd5\xee\x91\xbb\xde\xa2\x72\x33\x76\x6f\x59\xc8\x22\x63\x45\xfb\xcd\xd1\x3f\x56\xc5\x49\x4b\x2d\x2a\x1f\x58\xb4\x6b\x71\xca\x52\x0b\xc0\x87\x11\xfd\xfd\x8f\x5a\xe8\x99\x12\x94\x2e\xac\xdc\x0f\xd4\x05\xc5\xbb\xc3\x51\x8a\x45\x1e\x59\x66\x48\xd1\xf1\x90\xaf\x7e\x95\xa8\x53\x79\x3e\x8b\xb7\x09\x44\xcd\x2a\xd1\x33\x51\x15\xf9\x3b\x0e\xf4\x53\xe8\xb4\xf8\xf2\xd3\x3b\xe6\x45\xe7\xf9\x55\x2d\x2a\x5f\x09\xab\xf2\x07\xdd\xfa\xb2\x19\xda\x8a\xb9\x56\x0c\x3d\xfa\x72\x19\xa2\x4e\xff\x4f\xb3\x54\xd2\xf5\x6f\xa6\x2c\x17\xde\x55\x53\xfc\x31\xab\x9a\x61\xe8\x56\x24\xb7\x6c\x68\xab\x52\x37\x4f\x34\xb8\x1c\xd0\xab\x77\x1e\x92\x58\x58\x20\xfd\x2b\x16\x96\x2d\xfd\xc9\x58\x13\xf2\x5e\xb9\x51\x57\xe5\x28\x7e\x2b\x7e\x70\xcd\xae\x85\x54\xfa\xb8\xa7\x1c\x28\xe9\x5d\x33\xa4\xe9\x75\xaf\x75\xf4\x5f\xd5\x2c\x45\x47\xff\x4c\x80\xe5\x03\x69\x9a\x2c\x7f\xa5\x5b\xaf\xd9\xbd\x96\x6e\xbd\x66\x1f\xd0\x94\x24\x7f\x55\x93\xf1\x4f\xac\x28\x7b\x67\xa0\xe3\xfd\xaa\x26\x6a\x1d\xef\x6b\xf6\xce\x40\x4e\xb4\xb9\x98\x29\xcb\x89\xb6\xe6\x12\xd0\x23\x88\x19\x94\xa6\xbd\x66\x93\x9c\x32\xde\xac\x6a\x84\x51\xc6\x9b\x9a\x7d\xd0\xd2\xd1\x7f\x55\xa3\xb2\x8e\xfe\x4e\x4b\xfd\xdc\x3a\xd0\x57\xb2\x44\x3c\xb8\xb1\x3a\x0b\xf5\x81\x34\xd7\x16\x95\xca\x73\xb3\x9a\x67\xe9\x03\xb1\x73\x40\x8a\x3d\x97\xa2\x96\xa5\x77\x01\x09\xed\xbc\x2a\x1c\xda\x43\xc4\xea\x28\x5e\x49\xe1\xff\xe0\x9c\xba\x6c\x6b\x8d\x73\x6a\xc5\xc5\xfc\xc1\x39\x75\xd9\xd6\x1a\x97\x53\xe7\xb4\x3e\xd0\x4f\x41\xf1\x8a\xa1\x4f\xef\x5c\x8b\x82\x04\x5a\xbd\x85\xe7\xa8\x33\x47\x3f\x78\x8e\x2e\xe2\xaf\x3c\x78\x8e\x66\xa2\xd1\x3d\x78\x8e\x56\x12\xf5\x3f\x5b\x07\xec\x6c\x0b\x04\xf2\xf4\x57\x5c\xd3\x0f\x74\xab\x16\x8d\x16\x3f\xd2\xea\xad\xc0\xd6\x61\x78\x11\x21\xe4\x40\x5a\x5b\xf7\x25\xb1\x46\x7f\x90\x7a\xc6\x79\x70\x2b\x5b\xcd\xb2\x0a\x6b\x4b\x61\xbe\x88\x6f\x71\x20\xfe\x17\x5f\xfe\x04\x75\x43\x8a\x52\x38\x0d\x89\xb9\x12\xc1\xf8\xc1\xe3\xb4\x92\xad\xe2\x21\xcf\x6c\xb6\x8d\x03\x79\x66\x17\xfe\x05\x07\xea\x7a\xe7\xf6\x14\x22\x91\xd8\x17\x07\xd2\x18\xba\x7b\xcd\xbc\x74\xf7\xc5\xf3\x32\x0d\x69\x35\x57\x40\x5a\xcd\xe6\x16\x08\x63\xb8\x02\x6a\xaa\xc5\xbd\x96\x46\xc2\x9b\xa2\x9d\x14\x15\x90\x28\x12\x07\x12\x05\x78\x44\x3a\xfd\x56\x6f\x13\xf0\x4d\x75\xb6\xea\x03\x69\xfd\x3c\x86\xcc\x4c\x78\x1d\x74\x52\xad\xde\xb2\x6c\xe5\xa9\x59\xd6\x0c\x6d\xa9\xc8\xab\xed\x81\xf0\x4d\xad\xd9\x3d\xcb\x84\x32\xac\xf1\x4e\x33\x01\x15\x6f\xce\xad\xde\xea\x6c\xa9\xcf\x73\x61\x7b\xe1\x9c\xb2\xde\xea\x6c\xe5\xb4\x59\xdd\x2b\x26\x3b\xfa\x5c\xbc\xd2\x3a\xef\xd6\xec\x31\x14\xb0\x1c\x31\xba\x0b\xa3\xf5\x18\xa4\x30\xcf\x65\xfe\xd3\x79\xe4\xc1\x55\xb5\xe2\x30\x79\x20\xc9\x04\xf6\xb1\x5b\x99\x72\x56\xff\x7b\xa7\x8e\xb2\x13\xc1\x71\xd5\x49\xab\x1f\x67\x93\xf5\xfe\x69\x17\x16\x1e\x19\xeb\x94\xb1\xde\x3f\x6d\x19\xd2\x2f\xdb\x5e\xee\x82\x7c\xf2\x54\xe8\x68\xbc\x6c\x7b\xb9\x2b\xf2\xc9\x5f\x56\x48\x00\xf9\x8b\x73\x6a\xc5\xbf\xfe\xc1\x39\x35\x5b\x56\x6e\x25\xd2\x59\xb6\x62\xdc\x15\x51\x62\x64\xd2\x11\x77\x8d\xe4\x3a\x25\x4a\x6c\xea\x42\xd2\xd7\x5c\x8d\x4c\x1c\x78\xbd\xf3\xc1\x8d\x35\x5b\xaa\xee\xca\x88\xbc\x2c\x3a\xe2\x66\x4b\xd5\x2d\x23\xfb\x85\x07\xda\x81\x84\x4c\x26\x4e\x1d\x7f\x97\x4d\xfe\x76\x3d\xec\x3b\x57\x04\x20\xce\xb0\x99\xa4\x90\x07\xa2\x05\xfa\x22\xa3\xf7\x4c\x6c\xe0\x07\xc7\xd5\x9a\xbd\x46\x8d\xc4\xd7\x1c\x63\xc9\xc5\x5a\xf1\xe0\x7f\x70\x6a\xcd\xd5\x33\xa1\xc4\x3b\xcb\x86\x59\x5b\x89\x77\x72\x4d\x6e\x81\xbd\x87\x49\x5c\x89\x77\x32\x3e\x6e\x0f\xae\xaa\xd9\x62\x1b\x57\xd5\x9a\xbd\xee\x0d\x92\xf3\x4a\x93\x9d\xd5\x7b\xb9\xad\xb8\x5b\x19\xef\xd0\x03\xf1\xbf\x62\x48\x6b\xf4\xf7\x3f\xcd\x35\xbb\x37\x32\xb7\xae\xf1\x57\x8b\x46\xeb\x75\x57\x14\xae\x8c\x3f\xe8\x83\x1b\x6b\xf5\x7e\x6d\x77\x66\x29\xbb\x4e\x09\x24\x6b\x32\xb6\x6c\xde\x33\x49\x87\x1e\x92\xb7\x2e\xdb\xc4\x6c\xa9\xba\x33\x3e\x9f\x0f\xde\xa8\x19\x2f\xcf\x07\x6f\xd4\xea\x3d\x20\xde\xa8\xd5\xbb\xbe\x3d\x24\x90\x6c\x6f\xb1\x15\x94\xb8\x16\xce\x6e\x24\x7d\xcd\xf8\x83\x1e\x88\x5c\x97\xb4\xae\x84\x3c\xb9\x1a\x0b\xa4\xea\xce\xf8\xf7\x1d\xe8\xac\x91\x6f\xfa\xf1\x15\xcd\x44\x06\x7e\xf0\x15\xad\xc5\x23\x1a\x60\x64\x71\x7b\x12\x48\xc5\x23\x1a\x8c\xa1\xb8\x3d\x89\x20\x1b\xbd\x6e\x65\xd0\xc9\xb6\x7e\x22\x4f\xeb\xf2\x4d\x3f\x89\x5a\xb3\xad\x9f\xf6\x64\xfd\xcc\xfa\xa4\xc0\xce\xd5\xc2\x91\xb3\xa9\xad\x9f\xc8\x9e\x5a\x4b\x8a\x77\x9a\x79\x8b\x19\x59\xb9\x57\x6f\xe5\xc8\xac\xba\x6c\x88\xb9\x75\x6e\xcd\xd5\x82\x93\xd3\x28\xde\x9a\x0f\x7e\x9d\xd5\xdb\x3c\xfc\x3a\xab\xb7\x79\x5b\xca\xed\xe5\x7b\xf8\x2d\xfb\xf4\x5c\x2d\x70\x09\x5c\xec\x7b\xf8\x3d\xa1\xcd\x16\x5f\x6a\x0c\x2d\xde\xbd\xaa\x93\x7e\x2a\x60\x56\x2d\xc6\x56\x29\xb0\xab\x37\x84\x78\x79\x2e\x1b\xdd\x39\x4d\xaa\x37\x61\xa4\x49\x5d\xbe\x79\xdf\x4b\x6c\xd8\xdb\xa7\xbd\xc0\x48\x0b\x55\x85\xc8\x5a\xab\xfe\x7b\xa7\xbc\x75\x38\x5d\xcb\x53\xcf\xe1\xb4\x5a\x42\x2c\x1d\x0c\x6c\x32\x86\x7b\x68\x2d\xd1\x35\xc9\x20\x5b\x0b\xec\x05\xe1\x72\x83\xb7\x65\x92\xbe\xac\xbd\x27\xe9\x69\xae\x66\xca\x1c\x4e\x8b\x07\xa1\x88\x59\xd9\xbb\xd3\x2d\x03\xf5\x65\x7d\xfd\xbe\x59\x78\x33\x5e\x0e\xae\xde\xcb\x91\xf3\x34\x57\xb3\x4c\xc5\xc1\x5a\x2b\x5a\x07\x95\xbd\xf0\xf7\x61\xae\xcb\xc6\x42\xfb\x66\x7c\x66\x29\x3a\xaa\xd6\xd8\xbd\xe9\x70\xba\x56\xfc\x4f\xe2\xc2\x07\x49\x32\xa2\x2e\x1b\xcc\x90\x12\x35\xdb\xd4\x8c\x94\xa8\xd9\xc6\x65\x7b\x33\x3e\x13\x84\xd2\xe3\xd4\xd8\x03\x6e\x7a\x66\x06\x83\xad\xf5\x65\x35\xee\x96\x82\xf9\x80\xae\x47\x72\xbc\x78\x9f\x49\x64\xaa\xeb\x8a\xee\x88\x7a\xda\x15\xd0\x4f\x9f\x0e\x43\x1f\x9f\xd2\x03\xc5\xa6\xca\xcd\x22\x43\x39\x68\xaa\xad\x5b\x37\x87\xd0\x66\xb1\x20\xeb\xeb\x74\x59\x2b\x89\x87\x6a\x25\x96\xf2\x81\x36\x2f\x03\x3c\xe8\xd6\x4c\x24\xca\x4a\x53\xc9\x00\xf2\xe0\xb0\x9a\xbd\x3f\xdf\x8f\xc4\x44\x31\x7e\xa1\x8f\xf6\xfe\x7c\x2b\xf3\x4c\xba\xac\x55\x23\x6d\x69\x6e\x46\x30\xc5\x8e\xaa\xb1\x45\x56\x1c\xe6\x1a\x9b\xe2\x17\x0a\x32\x35\xeb\x3c\x99\x2e\x2b\x5b\xb6\x82\x32\x65\x1b\xc3\x6d\xa9\x76\xd3\xe5\x4b\xf7\x2d\xdd\x6e\xb6\x6b\x26\x89\x46\xcf\xcb\x65\x70\xe9\x65\x36\xa4\x09\x68\xae\x55\xfb\xb1\xd2\xe2\x8f\x1f\x31\x91\xdd\x1f\x9d\xfb\xe3\xc0\x80\x8e\x38\x8e\x08\x1c\xf8\x9a\x57\x87\x03\x5f\x31\x07\xc1\x08\xfb\xf2\x9d\xf5\x96\x15\x76\x6e\x5e\x9d\x1f\x21\x37\x7d\x85\xbd\x7f\x32\x9b\xb0\xb3\xe6\x96\x19\x76\x6e\x9e\x72\xa5\x90\xa9\xc5\xbc\x47\x31\x9c\x6a\x6c\xef\x95\xfe\x25\x5d\xbe\x49\xdd\xca\xff\x52\x8b\x69\x0c\x3b\xec\x2b\x45\x5f\xb5\x27\x6b\x5e\x2c\xe9\x82\xb3\x5d\x40\xf7\x0f\x99\xe0\xed\xf0\x0f\x2e\xe9\x95\x43\x4f\x6c\x87\xd0\xfd\x03\x93\xad\x53\xda\x3f\x30\xd9\xbb\x5c\x6c\xb6\xaf\xe4\x6d\xe7\x0f\xce\xe8\x6d\xee\x07\xb2\x7a\x5d\x3f\x64\x99\xa5\xc9\x07\xb2\xd6\xf8\x92\xf6\x99\x1b\xe5\x81\x49\x57\xf2\xa6\xf0\x83\x57\x78\x87\xfa\x11\x38\x35\x99\x01\xa1\x2b\x2e\x66\x16\x1c\x34\x9b\xa5\xe0\x87\x24\xf0\xbe\xe5\xf3\xf8\x99\xaa\xcf\xa1\xae\xbd\x75\xf8\x24\x0a\x9a\x17\xf2\xdb\x8e\x3d\xed\x0e\x48\x16\xc4\x41\xf0\xd3\x41\xa2\x8c\x80\x44\x49\x5c\xbe\xbc\xf3\x02\x3d\xda\x3f\xf7\xcf\x2f\xe9\x58\x2b\xf9\x51\x5e\x5c\x8e\x73\x13\xc7\x7f\xc9\xc0\x9a\x71\x8a\x7d\x49\xc1\x5a\xc9\x82\xf2\x92\x82\xb5\x92\xea\xe4\x40\x5a\x63\x21\xc0\x81\x34\xc6\xee\xce\x78\x6e\x5c\x27\x44\xae\x35\x7e\x71\x6a\xce\x04\xfb\x3c\x90\xd6\x98\x3b\x80\x03\x8a\x21\xe9\x94\xf3\xce\x0b\x02\xe8\x6e\x90\xf5\x9f\xfe\x72\x53\x29\x4d\x28\xbe\x51\xba\x72\xbb\x0c\x8a\x3a\x47\x40\x93\x97\xc9\xa0\xa8\x73\x18\xd2\xd6\x86\xd8\x95\x2f\x7e\xd4\x95\xa0\x11\x07\xd2\xd4\x8c\x80\xd4\x1b\x4f\x1b\x67\xd1\xe6\xa9\xe1\x2c\x4a\x3c\x99\x03\x69\x89\x73\xb4\x0f\xeb\x9a\xf1\x69\xe5\xa5\xdb\x27\xa9\xf8\xec\x86\xc4\xf5\xa7\x47\x05\x39\x8c\x69\x28\xf1\xc7\x65\x30\xeb\x65\x40\x85\x70\xe3\x6e\x12\x46\xf2\x07\x35\x5e\xba\x49\xe9\xcc\xb9\xdf\x3b\xd0\x8f\x97\xd1\xa6\xe8\x7a\x52\x2d\x46\xe2\x57\xf6\xb7\xb2\x12\xcf\xcd\xd3\x93\xc1\x1c\x0f\x3a\x43\x57\x1e\xa5\x32\xd3\x54\xce\x5a\x07\x12\x95\x2d\xda\xcf\xe0\xd1\xca\x86\x84\x01\x5c\xea\xbd\x24\x67\xad\x1c\x9a\x5e\x92\xb3\x9e\x97\xc3\xa0\xf0\x71\xf9\x53\xe8\x2a\xfa\x76\xf3\x47\x7f\xa9\xbd\x66\x8b\x61\x20\x22\xb9\x07\x7a\xf1\x03\xaf\x44\xc7\x79\xed\x07\x7e\x21\xbe\xdf\x59\x18\x95\xeb\x91\x35\x78\xe5\x2c\xf6\x92\xa2\xb5\x56\x93\x5c\x41\xd0\x21\xda\x5e\x3c\xc1\x2b\xd9\x4a\x0f\xb4\x89\xd5\xce\xec\xe8\xcc\x9a\x89\xb4\x78\xa0\xc4\x4b\x37\x22\xe6\x41\xa8\xc5\x97\x1c\xae\x95\x43\xdd\x81\x7e\xc4\x75\x37\xa8\xb5\xe3\x54\xf7\xda\x51\xfc\x2a\x26\x42\x99\x7d\x67\x02\x0e\xbe\x78\x8a\xd7\xea\x79\x55\x40\xea\x5a\x3d\x91\x3a\xb6\xd6\xea\xee\x54\x04\x5f\x31\x11\x28\xdd\x4c\xe5\x0c\x76\x20\x96\xc0\x54\x20\xe3\xee\x8c\xa7\xf3\x3b\x65\xce\x9d\xb1\x9d\x3d\xd0\xd4\x1f\x5d\x8d\xc2\xfc\x5d\x41\x4c\x95\xe9\x49\x86\x84\xa0\xc4\x23\x7c\x71\xec\xae\x9c\xec\x0e\xa4\x61\x64\xb7\xcf\x30\x3c\xa8\x86\xa4\x8b\x6a\x14\x49\x29\x13\xf6\xef\xc5\x5f\xbb\x56\xf7\x0d\xed\x6c\x37\x67\x69\x88\xaf\xfa\xf7\xe9\xa7\x97\xae\x95\xf4\xf6\x1e\x46\x93\xf4\xc2\xf3\xf9\xc5\x61\x3b\x13\x87\xef\x40\x83\x6a\xe2\xa5\xba\x5a\xa6\x21\xba\x1a\xd0\xa3\x77\xcb\x90\x50\x27\x19\x12\x65\xf7\x7f\x6f\xac\xcf\xa7\x5a\x1c\x42\xbb\xbc\xe4\x91\xad\xdc\x3a\xbf\x53\x66\xdc\x99\x20\x7a\x2f\x7e\xe0\x95\x5b\xe7\x03\xa9\x6f\x46\x40\x1d\x51\x2b\xc7\xc9\x77\xa2\x93\xad\xa6\x87\x2e\x39\xc7\x01\xf2\x25\x5b\x6c\xba\x48\x41\x70\x40\x0d\x2a\x33\x7e\x14\xaf\xdd\x88\xdb\x91\x65\x75\x06\x78\x64\x19\xb1\xe3\x5e\xd2\xbd\x9e\x97\xd3\x60\xd3\x4b\x77\x0e\x8a\xac\x26\x50\xb9\x6d\xe7\x6e\x24\xef\x88\xb6\x6a\xee\xa1\x38\x49\x19\x0f\xe8\x17\x9f\xee\x1a\xeb\xa8\x38\x49\x99\xcb\xa7\x17\x0f\xef\x5a\xbd\xe4\xca\xac\x93\x2e\xb6\xb7\x07\xd4\x0a\x78\xc9\x07\x21\xe7\x9b\xc9\x6c\x88\xf1\xc7\xb2\x4a\x17\x9b\xbb\x65\xe2\x00\x57\x2d\x13\x65\x4e\x5d\xab\x97\x75\x80\xab\x2d\xa0\x73\x52\xed\x96\x82\x03\x92\xab\x40\x13\x11\xd5\x3c\x75\x53\x22\xaa\x5b\x28\xea\xe0\x5a\xab\xd7\x51\x76\xd8\xb9\x5b\x44\x4e\x70\xdc\x32\x71\xd2\x51\xaf\xea\x64\x1d\x6b\x33\x44\x2d\x0c\x62\x22\x85\x42\x7c\x2a\x5a\x51\xad\x75\x19\x22\x29\x83\xe5\xa7\x14\xa9\x19\x67\xf1\x17\x67\xea\xdc\xe3\x9d\x6e\x3a\xab\x45\xeb\x64\x32\xfa\x34\xd4\x48\xae\x10\xa0\x68\xc5\x98\x33\x91\x2c\x21\x20\x64\x6f\x9d\xbb\x99\xcc\x72\xc6\x08\xcb\x0b\x85\x7b\xce\xdd\x4c\x66\x81\xba\x16\xb5\xf2\xb5\xae\xd5\xe2\x7b\x81\xc8\x46\xb2\xc5\x04\x18\x37\x16\xb2\x84\x78\x11\x07\x14\x23\xf3\xc2\x71\xb4\xed\x23\x3e\x15\x1a\x79\xe1\x16\x68\xed\xad\xcd\x82\x03\x7b\x19\xa5\xa0\xad\xd5\x2b\xb5\x40\xdc\xe0\x5c\x4b\xb6\xa8\xdd\x3b\x1d\xb4\xa9\xdd\x62\x57\x07\xd6\x5a\x3d\x55\x37\x63\xb2\x0c\xbe\x91\x1d\xc1\x39\x6e\x38\x97\x27\xee\x76\xf2\x87\x12\xa0\x16\xc7\xd3\x78\x33\x0c\xcf\x1b\x06\xd9\xd5\x3b\x8d\x1b\x29\xe3\xcd\xc4\xcd\xa0\x4c\x9c\x37\xec\xc8\xd4\xa8\xd4\x40\xb5\x7a\x13\x72\x23\x64\x02\xc5\x6f\x78\x95\x57\xea\x26\x05\x42\xe0\xb8\xfc\xaf\x73\x9f\x01\x31\xe3\x46\x32\x59\x6f\xd7\xea\x65\xbc\x21\xdc\x15\xf5\x68\xfd\x17\xef\x50\xd3\x12\x77\xee\x25\x17\x6c\xad\x23\xa0\xac\x77\xcd\x50\xa1\x89\x65\x50\x2b\x3e\xe2\x25\xed\x8f\xa8\x55\x04\x68\xc9\xbe\x11\x5d\xfd\xaf\x5a\x89\x2e\xcb\x72\x99\x7a\xe7\x61\x59\x8e\xa9\xf7\xb0\xf0\x96\x7f\x76\xad\x46\x07\x19\x7e\xe7\x71\xfd\x33\x56\xfe\x4b\x0e\xda\x3c\xcc\x71\x36\x62\xc5\xc8\xb1\x39\x41\x76\xef\x82\xe4\x84\x5d\xab\x29\x67\x47\x16\x8f\x6c\x50\x28\xef\xcd\x1d\xea\xe0\x61\x69\xbd\x11\x96\x46\x32\xa9\x83\xf3\xf0\xde\xe1\x41\x3c\x12\x45\xee\x80\x87\x21\x0f\x0b\x64\xc2\x4b\x5f\xc3\x82\xfd\xd1\x41\x70\x58\x92\x3e\x70\xa0\x19\xef\x16\x9f\x56\x83\x92\xdd\x33\xea\xd9\xbc\x6c\x06\x3f\x40\x66\xcb\xc7\xff\x61\x61\xfa\x2c\x92\x80\x58\x28\xca\xac\x3c\x0f\xcb\xf6\x07\xa1\x3c\x2c\x95\x1e\x38\xd6\xb0\x58\xe2\xc8\x5f\xbd\x7f\x90\x1e\xba\xd6\x19\x9f\x0e\x3e\x75\xa3\x42\xee\x61\xa1\xf0\x80\x94\xc3\xc4\xf5\xc2\x6a\x08\xf4\x75\x40\xe1\x9a\x09\xe8\xf5\xb8\xbb\x21\x31\x17\x93\xcc\xcb\x71\x70\x58\xba\xbc\x88\x49\x4b\x25\x62\x36\x5f\xa3\xc5\xb7\x5a\x31\x2f\x2e\x1a\xdf\xbf\x16\xc1\x03\xaf\x2d\x07\xf9\x61\x0e\xae\xb3\x7a\xad\xa6\x0a\x9d\xd5\xf3\x30\x3f\x57\x6e\xa5\x5a\x4d\x23\x3f\x90\xd2\x54\xf1\x63\x22\xcd\x14\x7f\x6b\x90\x08\x25\x3e\xd5\x74\xb4\x80\x44\xce\xde\x35\xeb\xa8\x9e\x87\x39\xe6\x8f\xf3\xd7\x4c\xf1\x72\xeb\xe5\x34\xa4\xd9\xf0\x56\xf8\xa7\xb3\xd9\x30\x1b\x90\x3f\x75\xad\xa6\xb4\x1f\xc7\x8f\xe9\x75\x45\xe9\x3b\x2c\xc0\x50\xfa\xd6\x15\x7f\xa4\x45\xaf\x39\xa7\xfa\x66\x32\xd4\xa9\x3e\x0f\xcb\xba\x0f\x91\x39\x2d\xcf\x15\x49\xb9\x36\xd3\x28\x76\xdc\xc3\xdc\xf5\x93\x58\x6c\x66\xfc\x1f\xd4\x6c\x8e\xc1\x31\x3e\xb6\x01\x58\x7c\x0f\x73\x4c\x85\xed\xaa\xb1\x0b\x90\xd3\x76\x1e\xe6\x8a\x38\x6d\x5f\xb3\xc5\xa7\x22\x26\x73\xc5\x0f\x01\x3a\x5b\x7c\xdb\x54\x4f\x33\xf4\x13\xd4\x0d\x91\x89\xc6\xb3\xaa\xa0\xc8\x79\x98\x81\xe9\xfc\x5f\x9b\xf7\xe5\x1f\x94\x6e\xc6\xf3\x21\x40\x67\x8c\x51\x0c\x94\x40\x5e\x2f\x79\x5f\xcf\xcb\x00\xd5\x75\xb8\xc2\xd2\xa1\xbe\x92\xd8\xe8\x40\xa2\x74\x68\x1b\x6f\xf0\x8a\xc3\xe9\x8b\x37\x78\xba\xf0\x04\x3c\xe0\x59\x72\x3c\x4e\x5f\x9c\xbc\x2b\x39\x97\x0e\xc4\xca\x41\x39\x0b\xc3\xef\x06\x8b\x20\x9f\xec\x79\xd9\x0d\x0a\x59\xa6\x5f\xca\x06\x88\x6b\xbe\x17\x97\xec\x3c\x66\x40\x5a\x39\x10\x70\x25\x08\x60\x06\x34\xf5\x6e\x00\xc1\x59\xf0\x48\x3b\xa0\x66\x0e\x41\x4c\x72\xd8\xf3\xb2\x18\xd4\x7a\xe4\x7f\x1a\xde\xbd\xb8\x68\x67\x7c\xe5\x5f\x5c\xb4\x2b\x69\x91\xde\xc5\x29\x1f\xef\xf8\x97\xe4\xb1\x95\x8b\xc5\x97\xec\xb1\x19\x7f\xf8\x17\x87\xed\x4a\xdc\xb8\x97\xac\xb0\x19\xef\x99\x03\xfd\x48\x9d\x93\x0c\x6a\x1d\x97\x21\xc4\x2b\x66\xdc\x07\xd4\x74\x64\x4f\x0e\xf4\xb0\x5c\x2b\x08\x00\x07\xc0\x81\x3b\x13\xb1\xec\xc5\x81\x3b\x5d\x0b\xd2\x59\x32\xc0\xce\xb8\xbd\x1f\xe8\xe6\xe5\x32\x78\xa8\x9c\x88\x62\x2f\x69\x63\xd3\x85\xb1\xf6\x01\x5f\xbd\xa4\x77\x98\x60\xe3\xa3\xfe\xe2\xc3\x5d\xb9\x12\x7d\xc9\x30\x5b\xf1\x08\x7e\x57\x46\xbc\x2d\xcf\x95\x2c\xa4\x33\x0e\xec\x2f\x39\x61\x2b\x57\x99\x2f\x8e\xda\x95\xab\xcc\x77\x15\x72\x7b\xe0\x82\x75\x40\x4d\x32\xbb\x66\x12\xc1\x9e\x97\xd3\xa0\x3a\x00\x5f\xc5\x1d\x3b\x9b\xe9\xe1\x8e\x5d\xb9\x66\x7c\xc9\x13\x9b\x89\x3f\xf6\xe2\x8e\x9d\x71\x3c\x3a\x10\xff\x73\x83\xac\x38\x7b\xef\xa5\x24\x52\x29\x5d\x39\x5e\x7e\xfa\xd4\xcd\x3b\x7f\x50\x0e\x50\x6b\x55\xdd\xbe\xce\x82\xd3\x74\x25\x67\xed\xca\x35\xe3\x81\xd4\xa2\xc9\x4a\x29\xa6\x2a\xae\xcd\x2f\x99\x64\xf3\x34\x91\x71\x86\xc7\xdd\xfd\xc5\x75\xbb\xfa\xcc\x60\xd7\xed\x74\xfd\xfd\x51\xcb\x98\xdc\x71\x52\xab\x5c\x7f\xdf\x6a\x19\x4d\x9d\x72\xde\xce\xd3\x04\x58\x3d\x8b\xd3\x10\x2d\x76\x43\xa2\x6a\x8e\x09\x38\x76\xe7\x69\x02\xac\xb0\x03\xf8\xe1\x52\x92\xa9\x94\xf0\x34\x39\xe0\xd9\x09\xcf\x1c\x2f\x27\x2f\xdd\xa2\xd4\x66\x16\x0f\xb8\x6f\xe7\x69\x1a\xab\xcc\x62\x8b\x77\xc2\x94\x16\xef\x84\x29\x1c\x1a\x97\xd2\x4c\xa5\x74\x99\xab\x54\x58\x67\x73\xc7\x49\xcb\x72\x99\xad\xa0\xe2\x9e\xa6\x55\x54\xd5\xd3\x88\xdb\x40\x31\x24\xf7\x6a\xcc\x4d\x0e\xe8\x47\xaa\x27\xff\x71\x91\x97\xc9\xb8\x82\x5a\x9b\x10\x54\x2f\x0e\xdd\xd5\x97\x9e\x0b\xb5\xf6\x34\x8e\x37\x46\xc5\xa9\x61\xc9\xfe\x3b\xa5\xe4\x65\x45\xe7\xed\x3b\xd0\xa5\x1b\x86\xe4\x84\x52\x2f\xae\xe0\xd5\x77\xa0\x4b\x49\xaa\x92\x33\x4a\x1d\x50\x6b\x5e\xa3\x5a\x31\x9d\x1e\xef\xb4\xe4\x35\x6a\x95\x0c\xf2\x02\xe8\xfa\xe1\x54\x63\x10\x9c\x33\xce\x37\x78\x4e\x77\xcf\xb7\xfb\x1a\xa0\xd0\xc3\x68\xd5\x49\xb9\x94\x4c\x01\x52\x8a\x1f\x70\x19\x54\xef\xd8\x5b\xac\x4e\x9a\x25\x6c\xc4\x0f\x28\x3a\xeb\x51\x11\xf3\xcc\x96\x6d\x61\x4e\xde\xfa\x3f\x83\x6f\xbc\x38\x9d\x67\x4b\xd3\xd5\x61\x42\xe6\x6c\xdd\xf3\x6c\x92\x54\xbc\xb9\x8c\x37\xd9\x4b\x8e\xdf\xf3\xd2\xdd\xd3\x99\x77\x7a\xf5\xe4\x21\x5e\x7d\x0f\xbc\x3a\xf4\xea\xd5\xe3\x92\x61\x7a\xb9\x06\x34\xe1\x89\xe5\x56\xc1\x77\xc4\x0b\x45\xf9\xf4\x4c\x72\xa9\xe0\x1b\xe3\x25\x5b\xf0\x3c\x3d\xfe\x01\x2b\x1d\xae\x05\x5a\xc2\xa2\xf5\x80\x4c\xeb\x8c\x7f\x6a\x5a\x87\x7b\x23\x83\x68\x22\x47\x1e\x48\x8b\xee\x7e\xcb\xb7\xbc\x92\xef\xe8\x40\x5a\x3a\x8e\x18\x78\x9a\xd7\xf6\x07\x69\x14\xde\x4c\x28\x0b\x55\x72\x52\xa3\x03\x0a\x77\xfe\x5e\x8a\x07\x9a\xb0\x26\xe4\x62\x36\x3f\xd9\x93\x79\xdb\x81\xfe\x7d\x5a\x24\x2a\xb9\x54\x4a\xd9\xa8\x3b\xa1\x1d\x4b\xaf\x09\xd7\xf5\x9e\x64\x42\x3b\x96\x65\xa8\xd5\xa7\x85\x17\x8a\x74\x6c\xc7\x0e\xa4\xf1\xba\xa3\x0a\x09\x97\x9c\xb3\xe6\xc5\xf9\x3b\x39\x6d\xcc\x8b\xf7\x77\x6d\xde\x4c\xa0\x4a\x5f\x16\x6c\xa8\xd2\x9b\xa5\x3e\x57\x15\x29\xd7\x78\xa9\x45\xf5\x18\x75\x55\x91\x97\x65\xe0\x62\xbf\xe2\x31\xa2\x75\x6f\x16\xf4\x4b\x1b\xad\x65\xde\xb1\xa0\x95\x6c\x64\xc4\xa7\xbc\x59\xec\xaf\xe9\xae\x36\x83\x5b\xff\xec\x86\x1e\x5e\x06\xf8\xea\x25\x7d\x95\xc2\x3e\x2f\x8b\x24\xf9\x98\xe7\x65\xe9\xc1\x8d\x47\x5b\xee\xaa\x66\x7c\x99\xe9\x2c\xb6\xba\xcb\x9d\x83\xcf\x7a\x67\xa1\x1b\x8f\xbc\x52\xbc\xd3\x0e\xd1\x2b\xa5\xf0\x72\x99\x68\x02\x2f\x3e\xe6\xc9\x39\x44\x0e\x78\x28\x6c\x99\xeb\xeb\xfe\xa3\xf6\x2b\x20\x55\x6a\xa6\xaf\x38\x71\x79\x79\x83\xc4\x85\x47\xbf\xe2\x9d\x9a\xf0\xa6\x47\x37\x1c\xd5\x97\x38\xb8\x9c\xe7\x65\xd6\x7d\x23\x9e\xb3\x71\x43\x39\xae\xf2\x32\xef\xbe\x11\xcf\xd9\xc8\xa1\x24\x57\x79\xe5\x80\x34\x51\xe6\x54\x72\x48\xaf\xdd\x2b\xc5\xdd\xc8\x32\xa3\xe2\xfa\xa3\x7b\x5b\x81\xaa\x7f\x99\x4f\x29\x6e\x5c\xed\xde\x56\x28\x6e\x5c\x8e\x0d\x29\x77\x21\xa9\x98\x71\xea\x2e\x24\xc7\x86\xf4\x46\x3c\x17\x8b\x52\xa5\xb9\xca\x44\x09\x7a\x71\x50\xcf\xcb\x1b\x22\x5d\x62\xd4\x6e\x5c\x90\x95\x7a\xed\x57\xbc\x23\x39\x9e\x07\xa5\x90\x73\xd5\x6a\x85\xb5\xe1\x22\xc5\x63\x94\xd5\x7a\x5e\xc6\xb0\x8d\x44\xb6\x9a\x63\x6d\x49\xe4\x65\x0c\xc3\x6c\x7d\x99\xc9\x2b\x92\x5c\xed\xc6\x29\x65\xc1\xca\xcb\xbb\x05\x6c\x0f\x56\x5d\xff\x66\xd4\x38\xbe\x2f\x6f\x17\x94\x30\xab\x76\x23\xe3\x46\xc8\x94\x68\x51\xd2\x3a\x36\xc8\x0f\x04\xc7\xf1\x95\x64\xcf\xd5\x5a\x8d\x85\x1d\xc2\x6a\x01\x09\x1d\x8a\x99\xf1\x03\x69\x78\x47\x80\x71\xc1\x32\xf7\x57\x34\xec\xea\x7b\xbb\x85\x71\xc1\xea\x01\xb1\x72\x66\xbf\x4a\x5a\x95\x63\x2b\xad\xbb\x85\xe4\x64\x11\x07\xd4\xca\x59\xe6\x62\x6b\xb0\xcc\xd4\x65\x6b\x90\x9c\xd9\xe1\x25\xe9\x73\x26\x48\xce\xbb\x5e\xc6\xe1\x1d\xc9\xcb\x38\x2c\xb7\x14\x17\xae\x76\x13\xc7\x0b\xe3\xb0\x9e\xc9\x5e\xec\xb1\x3f\x27\x02\x77\xb2\x9e\x69\x29\x71\x55\x5e\x23\xa0\x57\xf5\x30\x1d\x2f\x64\x65\xf9\xa3\x28\xdb\xb5\x9b\x90\xb8\xa1\x58\x26\xe3\x17\xb2\xb2\xea\xc6\x3e\xee\xdd\x64\xf5\x22\x54\xad\x73\x59\x8a\xba\x9d\x97\xf9\xf1\x8b\x50\xb5\xee\x66\xbd\x30\x92\x19\x9f\x8a\x5a\x8c\xac\x98\x45\xac\x19\x5f\x6a\x72\x2c\x55\x94\xbb\xaa\x5a\x91\xb3\x5e\x30\xc7\x8c\x5b\x39\xab\xab\x15\x39\x24\xad\xce\xcb\x8c\xfb\x85\x71\xd7\x68\x42\x8c\xbb\x9b\xe6\x7e\x64\x14\xac\xa6\x07\xd9\x4c\xe4\x65\x5e\x8d\xe5\xc3\x5a\xf1\x29\x7f\xa4\x6f\x3f\x78\xd5\x0a\x68\xe8\x5d\x33\x24\x5c\xf1\x2d\xfb\xc2\x4a\xde\xca\xa2\xf5\x53\xac\x33\xa2\xab\x7c\xf8\x4d\xa6\x89\x6f\xf4\x47\xa6\xd7\xd4\xe0\xb2\x1f\xa9\x5e\x93\x03\x36\x7e\xb7\xa3\x2d\xe1\x07\xf8\x39\xd9\x6b\x47\xcf\xf1\x91\xed\x35\xd9\x4a\xfa\x80\x5d\x01\xf7\x57\x80\x8a\xdf\x33\x5b\x34\x34\xff\x4f\x50\x19\x1b\x08\x3c\x74\x40\x05\x80\x2a\x7f\xed\x6e\xe2\xec\x47\xbb\x04\xb0\x1f\xf1\x56\xa1\xbd\xd9\x81\x7f\x78\x74\xa6\xbe\xb4\x75\xff\x70\xe9\x4c\x03\xa5\xeb\x87\x4f\x67\x1a\x1c\x7b\x3f\x9c\x3a\xd3\x20\xd4\xea\x01\x89\x81\xb7\xdc\x90\xa2\xc5\x4f\x8c\xd2\x0e\xa8\xf1\x62\xa5\x72\x40\x45\x3f\xc5\x38\xf1\x23\xa1\x6d\xea\x6c\xb5\x3f\x1c\x44\x53\x27\xba\xc8\xe7\x94\xb6\x83\xcb\xd3\x0f\x17\xd1\x34\xd1\x8a\x1e\xf0\x26\xd4\x51\x34\xb4\xc9\x7b\x11\xdd\xd0\x78\x7b\xac\x91\x22\xb4\xf5\xf4\xd7\xd0\x8f\x00\xbb\x01\x6a\xbc\x9c\xf9\x3f\xa7\xcb\x9d\x1c\xd6\x3e\xf2\xe5\xa6\x86\x27\xe0\x01\x33\x81\x82\xe3\xad\x82\x67\x72\x61\xf5\x39\x9d\xee\x20\x60\xdf\x01\x15\x66\x1b\x2e\x77\x40\xc5\xcf\xe4\x50\x7a\x40\xc5\x2e\x65\x13\xfe\x91\x7c\x37\x35\xdc\x36\x0e\xa8\x90\xe0\x88\xb6\x0f\x2f\xd8\xd4\x31\x8d\xfb\x70\x83\x4d\x1d\x15\xc5\x17\x7e\xb0\x23\xe6\x8a\x9c\x27\xe5\xdf\x1b\xef\xf3\x2d\x99\x23\x72\xd4\xa4\xb4\x19\x7f\x5d\x26\xbb\xc1\x88\x66\x37\x71\xb5\x03\x61\xc5\xef\x7b\x8f\x3e\xea\xbe\xb0\xc3\xe2\x3f\x1c\x70\xd3\xa8\x7f\x6f\x89\xce\x38\x3d\x7a\x82\x89\x72\xd3\x71\xc0\x41\x68\x35\x4f\x24\xb1\xce\x7a\xd0\x1c\x01\xf0\x08\xfc\x7f\xc0\x9b\x25\x8a\xb7\x04\x9d\x0d\xfc\x25\x4c\x22\xc1\x04\x0e\xf8\x12\xb5\xd4\x98\x22\xde\x32\xfe\x50\xc3\x41\xc0\x0a\xbd\x22\xc4\xb8\x43\x86\x1c\x30\x89\xd6\xaf\x61\x30\x8b\x8c\xea\x34\x58\x88\xcf\x1f\x6f\x35\xde\x6c\xfc\x6d\x44\x05\xad\x2d\xde\x12\x73\xd9\x93\xd3\x44\xdc\x83\xd4\xee\x07\x24\xca\xdd\x15\x6f\x35\xde\x36\xa3\x1b\x37\xed\xc6\xc7\x9b\xbc\x07\xf1\x96\x50\xe4\x46\x1c\x25\x5c\x4e\xbd\xb4\x78\xfb\x23\xae\x76\xf4\x4a\xc8\x8e\xcd\xf8\x47\xce\xe5\x34\x8a\x17\x94\xb8\xe9\xb3\xe5\x78\xab\xf1\x76\x73\x2f\x69\xe2\xd3\x20\x23\xc8\x87\xa3\x74\xaa\x2d\x86\x20\xe2\xae\x2d\x66\x52\xc4\x3d\x92\xd7\x88\x23\xf7\xc0\x40\xf4\xc3\x91\x3a\x8d\xc0\xdf\x06\x71\xb7\x98\x49\x88\xfb\x8a\x21\x88\xb8\x1b\x39\x10\xbf\x3b\x42\xaf\xa7\xf8\xf8\x25\xe0\x62\xf4\xf9\x07\x4f\x8d\xb7\xca\x07\x90\x2a\xab\x4f\xae\xe8\x56\x8d\xde\x8d\xb0\xe6\x23\xd6\x17\xe2\x9e\x31\x40\x11\xb7\xe5\xc7\x87\x4b\x77\x1a\x97\xc9\xb7\x91\x6a\xa7\xcc\x00\x3b\xe9\x12\xe2\xe3\xa1\x6e\x54\x0f\x81\x78\xdf\xf9\xef\x63\x11\xf7\x30\xbb\xe2\x3a\x60\xe4\x3f\x50\xcc\xac\xcf\xe8\x33\xcc\x3b\x70\x92\xf0\xd9\x44\x1a\x3c\x20\xf8\xbc\xa2\xe6\x8f\x60\x94\x06\x89\x30\x9d\xaf\x00\xb5\xbe\x39\x46\x04\xfd\xfe\xcd\x95\xe8\xb7\x21\xf6\x3e\x1c\xd3\xd3\xe8\x31\xb1\x1b\x66\xd6\x97\xc1\xce\x5c\x79\x7d\x45\xbf\xb5\x5c\xee\x15\x99\x80\xda\x5f\xbb\x0b\xdc\x88\xb7\x62\x66\xd7\x1f\x28\xfa\xcd\xb1\xdc\xd0\x6f\x8b\xb9\xda\xac\xef\x15\x6f\x7f\x08\xba\x18\x02\xfc\xca\x72\xa0\x3b\xbf\x4c\x09\x30\x91\xb8\xa5\x1a\xcc\x10\xec\x65\xb0\x90\x75\xa1\x19\x74\x0c\xf8\x6e\xb0\xb1\xdc\xc3\x60\x17\x8a\x5e\xf1\x5f\x82\xeb\xd5\xa8\x19\xe1\x9c\x96\x41\xa2\xd6\xe5\x00\x45\xbf\xcd\x8b\xd2\xa1\xdf\x75\x45\x27\xc1\xe7\x19\xed\xbe\x04\x6f\x0c\xf0\x47\x42\x92\xf8\x98\xfc\x16\x51\x33\x69\x1d\x5a\x0b\x50\xc2\x6a\xa4\x7f\x26\x06\xf8\xf0\xee\x3f\x8c\x61\x1a\x14\xf3\x6e\xa6\x48\x92\x8e\xf7\xb1\x02\x64\x32\x66\xb4\x43\x24\xe8\xea\xc9\x80\xb8\x51\xe6\x7f\xa4\x28\x4f\x33\x5f\x51\xf3\x22\x10\xaf\xa7\x0a\xe2\xc6\x7f\xe7\x23\x58\x40\x9a\x98\x30\x7c\x44\x0b\x48\xb5\xb5\x78\xfb\x32\x73\x9e\x0c\x88\x7b\xfc\xbd\xfd\x88\xa2\xef\xb7\xc4\x0d\xe6\x4e\xe3\x80\xe9\x7f\x27\x05\x6e\x91\x5a\x89\x25\x72\x2a\x12\x8b\x05\xae\x91\x5a\x8f\x89\x24\x4e\x7b\xf2\xb6\xa6\x23\xb9\xb3\x85\xa4\xbc\x38\x0e\xdb\x88\xff\x92\xf6\xca\x0c\x98\x90\x85\x95\xc0\x4f\x07\xbc\xff\x77\x0e\xa4\x2b\xa9\xd4\x72\x89\x86\x1e\xba\x11\x35\x13\x1b\xff\xaf\x93\x3f\x56\x21\x6a\x16\x71\x57\x53\x15\x49\x12\x9c\x23\xe9\x80\x89\x78\x96\x6e\x48\xc4\x3d\x5b\xcc\x86\x88\x7b\xf6\x40\x76\x02\x8d\x76\xf3\x27\xd9\xf1\x24\x1b\xbe\x7e\x44\x54\x38\x22\xd4\xdd\x40\x38\x63\x32\xfa\x11\x53\x21\xa7\xb5\x02\x5c\x24\x6e\xf1\xa2\x88\xb8\xed\x4b\x75\x40\x31\xb3\xda\xa3\xcf\x0f\xb3\x11\xed\xbe\x24\x09\x8a\xff\x0a\xd9\x63\xdb\x4a\xd2\xf8\x3f\x4e\x3f\x9c\x18\xc1\x3b\xb3\xe1\x48\xf7\xe6\xe5\x83\x98\xd5\xc3\x74\x33\xd8\x79\x17\xcb\x1f\xd2\x44\xcc\x69\xcc\x19\xa4\x07\x9a\x66\xb1\xc3\xc4\xfd\x57\x95\x98\x59\x33\xb6\x93\x46\xa2\xad\x1e\x6f\x97\xb8\xd7\x15\x35\xb3\x33\xfb\xeb\xe4\x26\xe3\x45\x31\x48\x3a\x85\x16\x1f\x6b\x7d\x67\x8b\xaa\x7e\x84\xd9\x8f\x3e\x23\x9c\xcd\x62\xb1\x66\x9a\x81\x93\xba\x78\x4c\xd6\x2a\x7e\x44\xa1\x48\xad\x79\xea\x06\x3b\xef\x66\x92\x24\x72\xa5\xcd\xbf\x0e\x48\x3a\x24\x8b\xdf\x11\x69\x40\xe2\xe3\x41\xf4\x58\xcf\x86\x33\x0d\x79\x8f\xa0\x8c\x17\xa9\xb5\x2b\xde\xc2\xbc\xaf\xe8\xd5\xfe\xdf\x45\x28\xc9\xe9\x66\xec\x71\x87\xe9\xd7\xdb\xba\x61\xfa\x8d\x79\xb6\x70\xf6\x72\x93\x4c\xa3\x4d\x6f\x28\x06\x3b\xef\x65\xce\x30\x10\xce\x97\x37\x32\x43\xf4\xdb\x83\x2f\x3a\xd9\xc6\xa8\x51\x95\xf3\x2c\xc4\x7f\xe1\x57\x66\x23\xc3\x3b\xef\x19\x20\xd1\xb2\xcd\x28\xc8\x85\x37\x4b\xe0\x86\xe8\x77\x06\x63\x1c\x16\xce\x7f\xdd\x20\x8d\x48\x4c\x2c\x3b\xef\xa0\xdf\x01\xfd\xf6\x40\x86\xc8\x6e\xe1\xb7\xd0\xef\x18\x01\xb2\xf9\x0a\x14\x85\x7e\xc7\x0c\xb0\x20\x52\xdc\x2b\xd1\x6f\x5b\x26\x49\xd9\xaf\x9d\x4d\xdf\xff\xa9\x1a\x9d\xeb\xff\x97\xef\x73\x2b\xec\xec\x62\x1f\x31\x42\xd2\x88\x2d\x3d\x29\xfc\x46\xfa\xab\x77\xb1\xa7\x8d\x8f\xb5\xf6\x18\x06\x1d\x70\x93\xe1\x24\xba\x48\x78\xeb\x1a\x6f\x39\x85\x5c\xf1\x96\x8d\x4a\x8d\x01\x48\x70\x37\x57\x45\xd2\x13\xab\xa8\x0e\xe8\x54\x5b\xd3\xa0\x70\x3d\xa4\x3c\xb9\x04\x07\xbe\xcd\x07\xd4\x5c\x5c\xe6\x92\x64\x13\xec\xd1\x2e\x26\x7a\x6d\xae\x68\xc8\xb8\x1e\x20\x6b\xef\xe1\x4f\x6f\xbc\x73\xfc\xf7\x26\x92\x79\x34\xb4\x39\xa2\x19\xbc\xd9\x8a\x78\xd7\x4a\xee\x92\x69\x59\xbc\x7d\xfb\x42\x76\xbb\xcf\xce\x14\x19\x83\x8d\x6f\xcb\xee\x20\x25\x14\x0e\x1f\xc9\xc4\x52\xf6\xc6\x6c\x7f\x28\x8f\xa4\x72\xf8\xae\xf5\x61\xda\x9b\x48\x9e\xf1\x5d\xf7\x35\x89\x1d\x95\x95\x80\x53\x05\x1c\x01\xb3\x64\xc3\x29\x58\x8e\x60\x53\xe3\x2f\xec\x6f\x32\xce\xa3\xdf\x75\xa7\xa9\x1d\x7b\xc6\x63\x54\x05\xb7\xae\xa4\x71\x05\x3d\x05\xd6\xca\xe0\x0d\xaa\x82\xc7\xb1\x67\x0e\xf1\x9f\x82\x4d\x18\x45\xfc\x3e\xbf\xeb\xce\x2b\x13\xc1\x44\x72\x55\x05\x72\xc9\x3d\x05\xf4\x34\x73\x04\x39\x05\xf4\x34\x6f\x54\xe7\xf8\x80\xaa\xc0\xf1\x36\xb4\x4b\xff\xae\xbb\x4c\xf4\x9e\xf8\x7e\xaa\x40\xd7\x6e\x19\xa7\xce\x53\x80\x56\xe0\x14\xd0\xd3\x72\x73\x15\x9a\x65\x9b\xfb\x5d\x77\x9d\xba\xaa\xcc\xf8\x6c\xaa\xe0\x47\x28\x22\x39\x6a\x9e\x82\xbb\xb8\xeb\x39\xbb\x60\x4e\xff\xa5\x44\x01\x11\x91\x64\x70\xfb\x5d\xe7\x78\xe8\x29\xcc\xcd\x05\x0a\x7b\x91\xf1\xdb\x54\x81\x92\x12\x64\x5c\x30\x55\xf0\xc5\x17\xf4\xb4\x11\xfb\xee\x14\xac\xbf\x02\x56\xae\x5c\x2e\xc0\xf0\x1f\xe7\x4c\x15\xa0\xbe\xc3\x23\x53\x05\x3f\xa3\x43\xa1\xa7\x0d\xc7\xc1\x8c\xef\xe5\x77\xd6\x3e\xc5\x17\xf4\xb4\x2f\x47\x5b\x92\x75\xac\x0a\xb0\xa1\xc1\x25\xf3\xbb\x8e\x88\x8c\x3a\xe8\xe9\xb0\xce\x28\xcb\x4c\x56\x05\x58\x98\x66\x59\xc3\x9e\x82\x1b\x35\x06\xce\x9a\x2a\x90\xed\x5a\xc6\x5f\xf3\x14\xec\xe2\xc5\xae\xc5\x05\x0e\x6b\x23\xe3\x57\x15\x3c\x84\x8f\xd2\xb6\xe6\xbb\xee\x39\x15\x26\xf1\x14\xd0\xd3\x69\x55\x3f\x2e\x9a\xa7\x00\x37\xde\x53\x30\xa3\xe0\x76\x3f\xe8\xe9\x22\xa5\x53\xce\x32\x78\xa5\x80\x70\x5d\xda\xb3\x9e\x02\x6c\x04\x32\xfe\x9b\x2a\xd0\x0d\x5b\xc6\x69\xf3\x14\xdc\x97\x71\xac\xd1\xd3\x1b\x7b\xcb\x53\x40\x4f\x6f\xdb\x27\xe4\xda\xba\x0b\x96\x27\xb9\xd1\x53\x67\x5e\x3b\x05\xf4\xf4\x59\x4a\x46\x78\x0a\xe8\xe9\x6f\x35\xc2\x18\xd5\xfe\xff\x6c\x46\xfe\xff\xb9\xff\xdf\xff\xaf\xdf\xff\xfa\xcf\x7c\xfd\xd7\x7f\xfc\xe7\x38\x5c\xe6\x7f\xfd\xe7\xa3\x44\x7b\xe7\xa7\xfd\xd7\x7f\x1c\x1e\xf3\xc8\x74\xe3\xfc\xb0\xaa\x93\x8f\x36\x65\xba\xfc\x96\x0e\xf1\x11\xc1\x9e\x1f\x1c\x51\x54\x42\x55\x1b\x16\x35\x2f\x95\x55\xca\xe8\xfe\x54\x0b\x9b\x16\xf0\x57\xa8\x2a\xa1\x7e\xee\x6f\x15\xee\xfb\x51\x20\xfe\xff\x7c\x14\xfa\x2e\xe3\x17\xf9\x28\xd6\xdd\x7f\x3e\x85\x85\x95\xb5\xd1\x23\x1b\x89\xf3\xf3\x11\x89\xaa\xfd\xaf\xff\x7c\x2a\x63\xa8\x70\x1d\x49\xc6\x47\x77\x50\xe7\xa7\x50\x76\x7a\xd2\x68\xa3\x81\x6c\xd2\xcf\x3f\xba\x43\x39\x3f\x9b\xb2\xaa\xb2\x1f\x65\xb4\xd1\xc7\x29\x5b\x1a\x6d\x63\x1d\xa4\x73\x7e\x1a\xed\x36\xb7\x3b\x54\xdf\x99\xb4\xf3\xf3\x52\x76\xc6\xb6\x19\xc7\xd6\x2e\x27\x49\x45\xfa\xfc\x96\xfa\x87\xb7\x1c\xbe\x44\x8f\x6e\x90\xcf\x8f\x96\x56\x9a\xbc\xe7\xc7\x38\x7e\x1e\xef\xd9\x13\x3c\x1f\xe3\xf8\xc0\xbc\x7e\xe6\xe5\x95\xb9\xd6\x7f\xbe\x17\xdf\x49\x0b\xf0\xca\xd8\xea\xfc\x50\x26\x3d\x75\x42\x48\xe8\x81\x4c\xfb\xa8\x1a\x12\x79\xf3\xf4\xe0\x72\xdd\x6f\xa4\xd9\xa3\x9c\x7d\x76\x6e\xba\xe3\x4c\x98\xdf\xeb\xc1\xe5\xba\x56\xcc\x53\x91\x4f\x78\xc0\xbc\xcc\xa5\x2b\x4a\xb9\x43\xa7\x74\xc5\xb7\xda\x79\x4a\xda\x66\x1c\xca\x78\x38\x72\x56\x07\xa6\x8c\x2b\x19\x0f\xaf\xa4\x20\xa5\xf7\xe5\x52\x89\xca\xec\x7a\x0f\x7e\xf3\x70\x44\x64\x76\x1f\x76\xb4\x26\x9c\x2d\xd4\x2b\x87\x31\x1e\xa4\xc1\x59\x97\xcb\x85\xcb\x7a\x70\x39\x75\xe7\xe9\x16\xb3\xbf\xd7\x7e\x38\xe3\x81\xc2\x83\xd4\x22\xa8\x2d\x33\x19\x01\x79\xf8\x51\x4e\x6f\x5a\xf4\x9c\x6b\x1e\x47\x5b\xcf\xf8\x87\xf0\x40\x79\xa5\x5c\x87\x78\x1e\x48\x91\xae\xd2\x19\xb3\xcd\x6e\xc7\xf1\xce\x33\x3e\x06\x3c\x4c\xca\x07\xe5\x67\xf2\x78\xa0\x37\x3a\x71\x65\xd2\xb4\xf1\xf0\x50\xee\xef\x63\x16\x26\x66\x02\x68\x94\x0e\xf8\x44\xf9\x4b\x39\xdf\x8b\x95\xf1\xa0\xb3\xc4\xe5\xd2\x1e\xa5\xb2\xa9\x41\x1f\x71\xc0\x3b\xca\x37\xe5\xf4\xe6\x8e\x51\xdd\x1e\xd5\x6c\x2e\xef\x51\xee\x7a\x68\xf5\xb9\x8d\x5d\x68\xf3\x74\x8e\xc8\x58\xf0\xe9\x41\x18\xea\xa4\xc8\x79\xc5\x0a\x92\x0b\x24\x25\xcc\x8c\x33\xc9\x40\xf4\x80\x3d\x11\xb6\x57\x79\xd5\x28\xaf\xee\xcd\x2a\x2e\x7f\x5c\x4e\x3d\x24\x29\xcc\xab\xc5\xf7\x5c\xc1\x66\x3c\x9e\x33\x26\x29\x3c\x80\xd7\xcc\xfd\xea\xc6\xcb\xc5\xe9\x3b\x73\x27\x9d\xc9\x55\xc0\xc3\xa0\x3c\xbb\xfc\x89\xf2\x97\x72\xad\xc9\x1a\xd1\x2e\x67\xde\x4c\x38\xda\x03\xf6\x28\xa7\xdd\x31\x5d\xfe\x73\xf9\xe2\xfb\x49\xfd\xda\x1a\xf3\xd0\x29\xef\x2e\xff\x45\xf9\x47\x39\xf5\xac\x98\x67\xe5\xb4\x4b\xf9\x5a\xd5\xe5\x25\xca\x1b\xe5\xdd\xe5\x23\xca\x6f\xca\x97\xcb\x9f\x28\xd7\xb8\x30\xc4\xca\xeb\x8d\x79\x78\x99\x67\x4c\x07\x32\x29\xb2\x79\xe0\xea\x57\xa5\x0a\x37\xc6\x83\x82\xcb\x63\x91\x9f\xf7\x6b\x3a\x64\x33\x9a\x3a\x49\x1d\xf3\xfe\xb9\x37\xf8\x2a\x1f\xfe\xd8\x5c\xfe\xb9\x9c\xcc\x21\xe8\xc4\x0f\x38\xa3\x1c\x75\x03\xfc\x02\xe7\x62\x1e\x7c\xad\x37\x5c\xfe\xba\x9c\x6b\x73\x02\x71\x97\x29\xab\x5d\x1e\x32\x47\x80\xe4\xf2\xe9\x72\xae\xe9\x26\xa5\xab\x46\x29\x67\x56\x97\xf6\x28\x7d\xa8\xa3\x50\x7e\xff\x5c\xae\xd3\x46\x26\x07\x59\x99\x29\xda\x4c\x96\x13\x8b\xbe\x98\x22\xca\xcc\xc8\x5f\xb2\x94\x15\x9c\x2e\x79\xf8\x11\x2b\xb0\x53\x7e\xbb\x9e\x4c\x3d\x5c\x51\x97\x59\xa2\x9e\xc2\xf6\x15\x8b\xc8\x32\x91\xc6\x7a\xd0\xdd\x05\xad\xb6\xf8\x9a\x2b\xf4\x49\x1f\xdb\xed\x91\x5a\x0e\x1d\x09\xc2\x16\x87\x0d\xcd\xff\xbf\x3d\xce\xaf\x84\x98\x3a\x0f\x3f\xfd\xad\xd0\xd5\x19\xe5\x66\x78\x2c\x63\x99\xda\x83\xea\xc1\x48\x25\x36\x5b\xf0\x71\xe1\x81\xf2\xc9\x10\x7e\x51\x0f\x3e\xf5\x99\xe8\x92\x85\x44\x67\x7a\x70\x77\x1b\xed\x7e\xf1\xbd\xa2\x99\x25\x87\x59\x3d\xe0\xe7\x72\xdd\xdb\x64\x2e\x5b\x0a\x09\xc5\x78\x40\xbc\x49\x4c\x94\x25\x17\x18\x1e\x94\x62\x05\xb5\x43\xd9\x79\xb3\x34\x9b\x6d\x94\xe3\x83\xd7\x2d\xab\x55\x3d\xa0\xa1\x44\x0d\x55\xb7\xe7\xe1\x3c\xe8\x82\x88\xc3\xfa\x01\x47\x94\xa3\x1c\xd5\xc9\xbb\x12\x33\x85\x87\x4e\xb9\xbf\x47\x38\x57\xc2\xa1\x24\x87\x15\xab\x64\xaf\xe7\x41\x68\x8e\x20\x3a\x60\x7c\xbf\xfd\x7d\x57\xf9\x82\xc5\x9f\x87\x42\xf9\x72\xf9\x1b\xe5\x3a\xfa\x13\xf6\xaa\xee\x15\xed\x2e\xb7\x2b\x01\x75\xc0\xf8\x7e\xf9\x7b\xd7\x73\xbb\xff\x30\x9f\x89\x26\xe4\x80\xbf\x28\xff\x28\xa7\x9f\x0b\x26\x73\x1e\xd0\xc9\x8c\x28\xbf\xa3\xfc\xe5\x7b\xe6\xe1\x9e\x9b\x72\x12\x64\x3a\xf6\x52\xdd\xf7\xf2\x3c\xe0\xe6\xe5\xa8\x48\x95\x50\x24\x3c\xa0\xce\x9f\xf4\xff\x86\x94\x2a\x11\x48\x92\xe3\x11\x1d\x30\xbe\xbf\x99\xff\xe5\x7a\xee\x68\x17\x95\x2c\x16\x4f\x75\xdf\xb0\xbd\x4a\x44\x92\x34\x31\xef\xa8\x84\x1d\xe1\x21\xfd\xf7\x45\xcb\x01\xef\x28\xdf\x94\x53\xcf\x8e\x7e\x6e\xe6\x19\x8d\x68\xdd\xfb\x76\xfd\xdb\x1a\xad\xe4\xfa\x63\xde\xb6\x75\x3b\x99\xfa\x1f\x36\x7c\xe7\x81\xfa\xf3\x74\xb9\xd7\xeb\xe1\xa2\xb2\x14\xea\x7f\x10\x6a\xe7\x81\x0b\x21\xe3\xe1\x3b\x5d\x3f\xc6\x2f\x8e\xd8\x71\x40\xd7\xf3\xba\x9e\xca\x7c\xbe\xab\x44\x39\xf3\xb0\x96\xcb\xa3\x1e\x5d\x63\x2e\x12\xdf\x54\x52\xce\xf3\xa0\x75\x24\x02\xc6\x01\xff\xea\xff\xf8\xde\xe5\xb7\xe9\x8b\x1c\x8a\xb5\x34\xc6\xf5\x06\x9e\xbf\xe4\xa4\xb9\xae\x28\xdf\x51\xfe\xaa\x5c\x57\xcd\x07\xfc\x45\xf9\x87\x1a\x9e\xfa\x7f\xd3\xfd\x87\xcf\x38\x76\xc5\x01\xef\x28\x67\x3e\x07\xf5\xfc\x02\x9f\x7f\xe8\xe4\x8b\xd7\x5d\x37\x0a\x3c\x74\x34\x90\x8c\xf7\x0b\xba\xfb\x5c\xbf\xf1\xf3\x8b\xf5\x82\x5f\x39\x10\x41\x25\x4a\x06\x0f\xf4\xdf\xeb\x68\x3e\x56\x9d\x35\x7f\x91\x74\xa4\x92\x36\x9f\x07\xea\x5f\x6e\x37\xe8\x57\xc1\x33\xce\xf7\xc5\xe5\x51\xcf\xcd\x3a\x2e\xc6\xfb\xc5\xb8\x3e\x8f\x4b\xeb\xd8\x90\x8a\x3c\x88\x5e\x50\xcd\x1c\xb0\x44\x39\xd9\x98\x74\xbf\xd8\x38\x43\xf0\x70\xf3\x7d\x75\xf9\x2f\xca\x3f\xca\x07\xe5\x77\xd4\x73\xfb\x6e\xfc\x72\x79\x8f\xf2\x49\x79\x76\xf9\x1d\xe5\x2f\xe5\x4d\xe5\x3e\x56\x34\x1f\x2b\xec\xb5\xdc\x08\x25\xc1\x03\xf3\xd0\x18\x97\x8f\x1b\x8d\x10\x0d\xc9\x5e\xc6\x8d\x44\xf9\x3c\x50\x4f\x1d\x2e\xbf\xa3\x5c\x79\x8e\xd8\x1c\xb6\x10\xd9\x0d\x91\x7d\xca\x19\x6f\x66\x73\x75\x1e\xe8\x67\x75\xfd\x6c\x3e\xcf\x83\xf8\x30\x9b\xe4\x36\xcb\xf4\xbc\x15\xf0\x01\x0b\x85\x36\x95\xcf\x8e\x07\xfa\xd9\xf9\xde\x9b\xe4\xf3\xa0\x75\xc4\xbf\xf4\x80\x39\xca\x0b\x99\xb0\xe8\x67\x8d\xf5\xc2\xdc\x67\x11\x0a\xff\x80\x23\xca\x95\x99\x88\xec\x20\x8d\x18\x02\x3c\x3c\x94\xbb\x9e\xdb\xf3\x86\x19\xcd\x22\x00\x7d\x23\x92\x00\x0f\x9a\x67\x4c\xec\x5b\x6c\x3a\xce\x03\xfd\x9c\xd5\xe5\x25\xca\x99\xe7\xd9\x5d\xbe\xa3\x5c\xfc\x16\x77\xbd\xc6\x29\x8f\x87\x41\xfd\x93\xf2\xdb\xfd\x6f\x36\x99\xb9\x98\x87\xb6\x3d\x6f\xa1\xf4\x4e\x8c\x4b\x0a\x47\x1e\xc8\xdc\x55\xa8\xbf\x6f\xf7\x13\x0d\xdd\x62\x3f\xd3\xa6\x0f\x05\xe7\x01\xf5\x53\xa6\x7c\x44\x3f\x51\x1e\x55\x42\x10\xb5\x39\x96\xd7\xdd\x5a\x15\x0c\x31\xda\x1c\x51\x3f\x0a\x85\xda\x8c\x6f\x63\x97\x28\xa7\x3f\x7f\xe6\x9e\xff\x97\xed\x57\xc3\x19\x9e\x07\xb4\xd8\x95\xe6\xe7\x74\x77\x39\x87\xda\xf3\xa4\xe1\x84\xce\x03\x06\x21\xad\xbb\x3c\xbe\x27\xa5\x14\x21\xb6\x0f\xb8\xa2\xfc\xfe\x6f\x5d\x51\x9b\x73\x9b\x1d\xc8\x55\xfd\x7c\xef\x7a\x62\x9a\x38\x1b\xd8\xe1\xa2\xcd\x35\x8d\x46\xcb\xd3\x34\x58\x86\x15\xec\x80\x6d\xc4\x22\x2b\x45\x9b\x2b\xda\x5d\x6e\x77\x30\x4d\x77\x90\xf7\x0d\xba\x60\x4d\xde\xe6\x1d\xec\xc9\xe2\x1f\x9b\xef\x03\xc6\xf7\x46\x6b\x93\xeb\x0d\xfb\x6b\xf8\x6f\x27\x5b\x65\x1f\xb0\x44\x79\xfd\x6f\xdd\xf6\x01\x57\x94\x33\xae\x35\x5d\xfe\x44\xf9\x8f\xfa\xe9\xff\x0e\x72\xc5\x40\xb8\x12\x69\xa4\xe1\xd8\xcc\xc3\xc2\x94\x2b\xb9\xfc\x8d\x72\x9b\x78\xd1\x9f\x7d\x1b\x5d\x64\x20\x9c\x1c\x82\xbe\x91\x6b\x9a\x87\xca\xf7\xcc\xc3\xde\x9e\xe7\xcd\xfc\x63\xfb\x7a\xc0\x5f\x94\xdb\x24\x83\x7e\x3e\x41\x96\x0f\x6c\x82\xd3\x40\xc3\xc3\x58\x0f\x12\x33\x15\x73\xbc\x86\x6f\x31\x0f\x83\x72\xe6\xf3\x89\x7e\x3e\x88\x93\x6e\xb2\x79\xb6\xc7\xa5\xab\xf7\xb4\x08\xb3\xd4\x70\x10\xe6\x81\xef\x6b\x71\x79\x89\x72\xc6\x55\xe3\xfb\x11\xe5\x37\xe5\x8c\xf7\x8d\x75\x67\xdb\x51\x89\x84\xd1\xa6\xb7\x0b\x8d\x24\xcb\xa9\x12\xcb\xa1\x91\x65\x99\x07\x8d\x37\x9b\x9d\xbd\x21\x06\x5e\x74\xed\x28\xd1\x0e\x38\xa3\x7c\xf3\x3d\xeb\xf2\x0b\xfc\x41\x73\x54\xbb\xd7\xfd\x77\xb7\x28\x67\xdd\x07\xfd\xfc\x45\xbb\x3f\xb7\x9b\xa8\xdf\xa7\xd7\xf3\x60\xb3\x22\xfa\xf3\x2d\xd3\xd1\xe7\x79\x9e\xe0\xdb\x77\x7b\xbc\xe8\xa4\x6a\x37\x9e\x7f\x81\x9f\xa4\x2f\xae\xdd\x78\xfb\xc5\x3c\x7c\x88\x99\x61\xb6\xf8\xc5\x78\x3f\xd2\xfc\x61\x3c\xd1\xd6\xe5\xf9\xc7\x9d\xf5\x7c\x1f\xe5\x33\xca\x6f\xca\x97\xcb\x1f\x97\xb3\x1d\xc4\xf1\xfd\x80\x9f\xcb\x99\x1f\xf2\xde\xb5\x75\xed\xa8\x87\x63\x09\x06\x01\x07\xdc\x51\xfe\x50\xae\xf1\xae\x14\xe5\x89\xed\xe9\xa8\xd4\xc3\x5d\xb9\x1e\xf8\xbe\xb9\x3c\xbe\x27\xfb\xec\x22\xce\x6f\x8b\x3b\xa6\xf3\x40\x3f\x75\x4c\x6a\x78\x42\xf2\xc0\xba\xe8\x98\x77\xc0\x1e\xe5\xcc\x0f\xf8\xb0\x4a\xcc\x43\x81\xff\xe0\xb7\xdd\xd0\xa3\xf1\x80\x12\x1d\x7c\x5b\x35\xea\xc1\x5e\xb8\x62\x8b\xda\x56\x33\x5d\x90\x3f\x34\x2d\x82\xaa\xb6\xd5\xb9\x29\x68\xe4\x0e\x4d\x8b\x63\x49\xc3\x09\x8c\x07\xea\x81\xef\xad\xee\xed\x82\xdd\xc2\xea\x88\x7a\x2c\xe6\x51\x12\x9e\x7a\xfc\xbd\xf9\xcf\xc2\xd0\xa7\xe2\x12\xdb\x48\x0f\xca\x03\xf3\x0c\x3f\x5c\xdd\xfc\x99\x8c\xa1\xa7\x1e\xd7\x7f\x47\xfd\x88\x4f\x4c\xcb\x1a\x57\x6c\x3c\xb0\x2e\x6e\x77\xc4\xf7\x98\x02\x54\xdc\x3b\xdb\x1a\x31\x0f\x28\xa0\x2b\x56\xa3\x8d\x4c\x98\x7a\x60\x9b\x8b\x01\x47\x23\x2b\x25\x0f\x8b\x54\x99\xac\xcb\x8a\x79\xd3\xf9\x36\x2d\x8e\x37\x6d\xf9\x58\xdb\x48\x1a\x79\xca\x59\x77\x1f\x53\x9b\xef\xc8\x16\x11\xa5\x0e\xb8\xa2\xfc\x56\x79\x75\x3d\xe6\xf3\xbe\x23\x5b\x84\x33\x6c\xeb\xf6\x36\x77\xdd\x8b\xef\x91\x9b\x6b\x07\xbe\x11\x4a\x63\x61\x19\xdd\x70\x3b\xe1\x81\xfe\x1b\x4f\xb6\xb7\x59\x6b\x63\x2b\x3d\x8b\xcb\x2d\x97\xd7\x46\x2e\x13\x36\xaf\xad\xbd\xdd\x2e\xb1\x27\x6d\xcf\xd4\xc8\x52\xc8\x03\xf3\xc0\x36\x14\x8f\x0e\x1e\x98\x7f\xd3\xd1\x13\xf8\xa3\x78\x13\xe7\x7b\xea\x7f\x96\xe9\x42\x29\x0a\xcf\xf7\xcc\xdb\x13\xf3\xf3\x78\x7e\x26\xf3\xf3\xc6\x3c\xbf\x6c\xd7\xa6\xe9\xe2\x5d\x9e\x07\x1f\x17\xb1\x48\x6c\x24\xea\xe3\x81\x79\x30\xde\xbe\xb1\xbe\x62\xbc\x69\x11\x95\xac\x91\xf8\x8e\x07\xfa\x03\xbf\x5d\x9f\xe5\xc2\xfa\xd8\xe7\xe0\x79\xd7\xd6\x67\xb9\xb0\x3e\xed\x07\x56\x35\x1f\xfb\x82\x2f\x7d\xf0\x25\x12\xe2\x1e\xf0\x8d\x72\xc9\xa9\x9a\xf2\xff\x60\xfb\x45\xe6\x37\x1e\x58\x06\xc8\xf2\x0e\x36\x4a\xfa\xb7\x53\xdd\x74\x79\x8b\x72\x89\x07\x52\xfa\x1f\x70\x46\x39\xf5\x40\x7e\xe4\x68\xd3\x03\x62\x0c\x8f\xb8\x03\xd6\x28\x6f\x94\x6b\x3a\xc8\x8e\xc6\xc3\xa6\x7c\xba\xfc\x89\xf2\x97\x4c\xb1\x17\xe5\xde\x1e\x91\xf4\x2c\x55\x1c\x25\xda\x9d\x2c\x66\x6e\xe2\xea\x55\x52\xd7\xb7\xdb\x17\x96\xe7\x21\x51\x4f\x94\x3f\x51\x4e\xfd\xa0\x17\x69\xc1\x78\xd0\xb6\x03\x83\xf9\x46\x6a\x2f\x1e\x70\x94\x80\x5c\xef\xbc\xa3\xfe\x4d\xfd\xd5\xf5\x7b\x5b\x43\x6e\xaf\xf3\x3d\xe3\x2d\x66\x67\x64\xe4\x0a\x23\xec\x03\x3e\x51\x4e\x7f\xd8\x16\xdc\x25\xfa\x53\xdc\x1f\xd7\x5f\x2c\x4e\xee\x62\x73\x5e\xc4\xc9\x1d\x6c\xfd\x2e\x46\x8b\xe6\xfa\xbd\xee\x64\xed\x3a\xdf\x33\x6f\xd5\xa7\x13\x7b\x4f\x54\x92\xdb\x36\xfc\x23\x78\xc0\x58\x1c\xb1\x74\xc7\x29\xca\xce\x08\xab\xb2\x5d\xc6\xbf\x80\x07\xea\x47\xfc\xe0\x3b\xc0\xc3\x8f\x72\xe6\xb3\x99\x0c\x6c\x9b\x5e\xb1\x3c\x6a\xd8\x97\xeb\x01\xf2\x23\x89\x6d\xbb\xe3\x14\x15\x76\xe1\xb8\x16\x35\x6c\x9d\x79\xa0\xfe\xe9\xfa\x7d\x3a\xb1\xd9\xb1\x6d\x76\x1b\x36\xbb\x3c\xb8\x7c\xba\xfc\x89\x72\xe6\x1f\xb6\x82\x09\x2c\x0f\x90\x25\xdb\x7a\x4c\x56\x79\x18\x52\x5f\x5d\xcc\x67\x88\x19\x5b\x80\xae\xea\x7e\x76\x9f\xea\x6c\x0b\xb9\xaa\xe9\x6e\x98\xdd\xd8\x1c\xaf\x61\xbb\xd7\xb0\xbf\xe3\x01\x6b\x24\xd3\xe3\x88\x75\xc1\x6e\xae\x91\xfc\xad\xdd\x71\x7a\xb3\x89\x5c\xc3\x7e\xbd\x61\xe6\xc6\x03\xeb\xb5\xdc\x6e\xe0\x03\xc7\xb0\xd5\x4c\x8f\xd3\xec\xd5\xb6\x4a\xab\x99\x1e\x67\xb4\x3b\x11\x1b\x8d\x6d\x13\x79\x98\x78\x90\x25\x26\xf9\x57\x0f\x68\x3e\x30\xb1\xc2\x23\xbd\x5c\xbb\x97\x4f\x9f\x37\xee\xab\xab\xb9\x9f\x2b\xe6\x41\xd7\xed\xa7\x9c\xf5\x0a\xf1\x76\x5b\xbc\x35\xd3\xe3\x6d\xf1\x73\xdf\x58\xf3\x93\x53\xf4\x80\xbf\x28\xff\xc8\xf8\xcc\xfc\xdc\x41\x8f\xdc\xd6\xaf\x66\x3a\xda\x16\x3f\xf7\xc6\x26\x8c\x64\x73\xed\x8e\xe3\x10\x69\x7d\xd2\x6a\xa6\xa3\x1d\xf3\x80\xd8\x5b\x3e\x5e\xde\x71\xbc\xb9\xb9\xf5\x5c\xb8\xe6\x37\x72\xf6\xf0\x40\xbb\xdd\xdf\x47\x7f\xb6\xb3\x4f\x73\xcc\xbb\x9f\x98\x1f\xe5\xe4\x4d\x8d\xc8\x09\x8d\xfc\x37\x3c\x50\x0f\xc7\x9e\x3b\xc4\x15\x59\x68\x52\x43\x25\x78\xc0\x1a\xe5\xa8\x57\x5d\xff\x1b\xfc\x93\xd0\x44\xcd\xb7\x3e\x24\xa3\xe1\x01\xfc\x31\xfe\xbf\x81\xcf\xf8\xf0\x35\x02\x1f\x37\x52\xd2\xf0\xd0\xc9\x7b\xed\xfa\x83\x1f\x72\x8c\x69\xc4\x61\x68\x24\x9f\xe1\x21\xf3\x7d\x77\xf9\x88\xf2\x85\xd5\x5d\x72\xf9\x8e\x72\xe6\xc1\xf4\xfb\x8b\x75\xf9\x19\xdf\x4c\xbf\x21\x6e\x6f\x8e\x31\xcd\xb7\x3b\xf7\x2f\xf8\x00\xb7\x9b\x0d\x83\x82\x76\x5b\x39\xd7\xc8\x36\x73\xca\xa9\xe7\x0b\xfe\x20\x39\x9d\x5a\x32\x7e\x7e\x2b\xca\xa1\xc7\x64\x79\xf4\x05\xbe\x7d\x36\x3e\x2d\xd4\x1f\xc7\x9e\x9b\x00\x41\xcd\xb7\x32\x24\x9b\xe1\x81\x76\x4d\x17\x5f\xf0\xf3\xef\xb6\x45\x73\xd4\x13\xf5\xdf\xdf\x7f\x5b\x3a\xb7\xfb\x0b\x7e\xf2\x79\x5c\x5c\x97\xec\x90\xd7\x1b\x79\xbd\xf0\x09\x3e\xe0\x88\x72\xbc\x7d\xc0\xf3\x7d\x79\x1b\xb4\x2f\x3c\x01\xc8\x2a\xd6\x76\x1c\x87\xc8\x25\x93\x96\x8f\xfd\x3b\x8e\x43\xfb\xb2\xe5\x75\x77\xbb\xc6\xcf\x2d\xc3\x92\xd4\xc8\xfa\xd5\x76\x8a\xfe\x10\x7d\xb7\x11\x19\xf9\x80\x6f\x94\xff\x30\xda\xbd\x28\xf7\xfc\x90\x9d\xe5\x94\xd3\xff\x6c\x3c\x27\xff\x49\x6a\x89\xdb\xb5\x9d\x8d\x87\x3b\x93\x51\x1e\xe7\xb1\x03\xee\x28\xa7\x9f\xcb\xf5\x78\xbb\x46\x26\x93\xd4\x7c\x9c\xc6\x8e\x4c\x0f\xb8\xa8\x91\x40\xb1\xed\x1a\xfd\xac\x76\x9c\x60\x5f\xb1\xab\xf9\xff\xc6\xcd\xb0\xe5\xbf\x28\x42\xff\xb7\xed\xd7\x6e\x26\x83\x8d\xef\xd7\xea\xb0\xad\x1d\x97\x87\x1b\xef\xab\x86\xbb\x46\xdb\xb6\x15\x39\x0f\x95\xef\x45\xf6\x3b\x4e\x5d\xbb\x47\x3d\x2c\x43\x37\xd9\x6f\x3c\x2c\x96\x6f\x11\xb6\x2d\x01\xce\x83\xc8\x9b\xe8\x07\x6d\x0f\xdf\xe2\x90\xa1\xe1\x94\x53\xff\x30\xfa\x6e\xcc\xa4\x5b\x86\x5d\xee\x11\xd3\x8d\x91\x73\xcb\x5c\x0e\x93\xb6\x81\x07\x89\xcf\x3e\x5c\xbe\xa3\x1e\x0c\x8c\xb3\xfb\x1f\xb7\x80\x1b\x8b\xe0\xe5\x5b\x84\x1d\xa7\xab\xcd\xe9\xaa\x91\x11\xa7\x6d\x5b\xaf\x9c\x87\x42\x39\xdf\xcb\x2e\x91\x07\x2c\xd2\x8d\x46\x2b\xfa\xbf\xf0\xcb\x20\x65\x5b\xdb\xb6\x23\x39\x0f\x0f\xa9\xf5\x19\xd7\x32\xdb\x22\x0d\x41\x5a\xe8\xea\x1b\x79\x08\x78\xa0\xff\x6c\x2f\xd0\xfd\xf1\xb0\xf0\xa7\x71\x7f\x7c\x9a\xdf\xcb\xfd\xe7\x34\x80\x6e\x8e\x87\xf1\xdf\x96\xc8\x6d\xdf\x26\xe3\x7d\x83\x8e\x24\x9b\x68\x3b\x4e\x5d\x68\xdf\x4e\x39\xdf\xc7\xa9\x6b\x23\x7e\x1a\x4a\xb4\x03\xbe\x51\xae\x6d\x1f\x16\xe3\x07\x34\x5a\x6f\xc4\xb0\x4f\x9f\x3b\xc4\x15\xda\xba\x53\xee\xfa\x83\xfc\x2c\xc6\x46\x76\x7f\x7c\xfa\xd9\x9b\xd3\xcf\x88\x76\x7d\x7b\x6a\xa5\x5e\x23\x51\x5e\xdb\x21\xde\x48\x2d\x70\xca\xf9\xfe\x09\x36\xa4\x50\x82\xc9\x49\x63\xda\x7e\x02\xcf\x09\x05\xd8\x7c\x8a\xdd\xcf\x8a\xef\xed\x44\x50\x5d\x4f\xcc\xe7\xe3\xf9\x34\xfb\x7b\x83\x2c\x51\xde\x35\x9f\x62\xf7\x1b\xe3\x7a\x3d\x2e\xd7\xf3\x46\x3d\xaf\xeb\xe9\x51\xbe\xa2\xfc\xa5\x9c\x79\x0b\xf1\xb6\x2d\xde\xf0\x70\x69\xdb\x4a\xff\x46\xcc\xfd\x53\x3e\x5c\x3e\xa3\x9c\x79\xab\x51\x7e\x47\xf9\x83\x73\x84\xeb\x09\x36\xf7\xc3\x1d\x03\xa5\xdb\x01\x47\x94\x2f\xca\x5d\xcf\x1d\xdf\xe3\xdd\x80\x12\xad\x61\xa2\xc2\x03\xf8\x63\x76\xf9\x0b\x3a\xfd\x41\xa7\x83\x63\x46\xd8\xa4\x34\xdb\xa4\x2c\x22\x16\xb6\x50\xea\x35\x2b\xf5\x1a\xbe\x42\x6d\x87\x38\x44\x8b\x97\xd6\xe0\x78\xb0\xe3\x16\xd0\xca\xbb\x46\x10\xea\x03\xbe\x51\xfe\xf1\x3d\xe3\x8a\x53\xac\x95\x77\x8b\x90\x7b\x8d\xc0\xf5\x3c\x3c\x94\x9f\x7a\x7a\x58\xb7\x74\x5b\xb7\x2c\x9c\x1d\x7a\xd8\xfc\x75\xdb\xfc\xd9\x01\xaa\x87\xd5\xdf\x79\x48\x94\xfb\x7b\xf0\xb9\x5b\x49\xd7\x50\xd2\xf5\xb0\x7b\x39\x0f\xf8\x73\x89\x5e\x3a\xb1\xe3\x79\x00\x6f\x27\xf5\x24\xe8\xab\x13\xea\x3d\x2d\x6e\xa1\x3a\xd1\xdd\x79\x10\x3e\x13\x51\xb8\x13\xbb\x9d\x87\x9b\x72\xd7\x73\x3f\x51\x4e\xff\xab\xfb\x73\x47\xfd\x88\x25\x62\xfa\xf6\x99\x39\xae\x77\xe2\xab\x9f\x76\x97\xcb\xef\x28\xd7\xb6\x92\xa0\x6c\x7d\xfa\xb8\x7b\x1e\x5c\xff\xa4\x7c\xc5\xf7\xf0\x13\x8e\x9d\x07\x74\xbb\xd9\x1e\xae\xcd\xed\xde\xd1\x2e\xdb\x41\x99\x26\x1f\x70\x7b\xbc\x19\x3e\x49\x5c\xdc\x03\x46\xbb\xc8\x9d\xda\x99\x87\xb2\x3c\xff\x1c\x83\x17\x21\xc1\x0e\xf8\x46\xf9\x8f\xf2\xea\x72\xf7\xa7\x78\x1d\x07\xfd\x2c\xdb\xeb\x5b\xb6\xcb\x5d\xff\x8e\xfa\xb9\x95\xc1\x75\xb2\x4f\x1f\x83\xcf\x03\xe3\x35\xfe\xd4\xe9\x75\x21\x0e\x42\x43\xd9\xd7\xa7\xc5\xff\x79\xf8\x28\x67\xbc\x35\xe6\xad\x7a\xde\x16\xfd\xaf\x6c\x3b\xce\x83\xe8\x8b\x5b\xab\x3e\x2b\xdb\xa3\x6e\xbb\xa6\x46\x4c\xcc\x3e\x7d\x0c\x3e\x0f\x13\xaf\xa8\xec\xf2\x3b\xca\x1f\xca\xe9\x4f\x5b\xee\x67\x0b\x2f\x2a\xfa\xdf\x02\xcf\x71\x41\x5e\xc4\xa3\x3c\x60\x8e\x72\xad\x4b\xd3\x75\x49\x0f\xe5\x63\x27\x38\xf9\x29\x67\x5c\x3e\x36\x77\xb4\x90\xa7\x1e\xb7\xbb\x7b\x94\x8b\x4f\x36\xb9\xce\xf4\xe9\x5b\xe1\xf3\xf0\xa3\x9c\xfa\x7b\xd0\x91\x7d\x64\x89\x55\xd8\xc3\x36\xf5\x3c\xa4\xff\xfa\x73\x3c\x3d\x60\x8e\x72\xf1\x13\xa2\x6a\xf5\xd9\x63\xbc\xdc\xfe\x36\x94\x95\x7d\xf6\x98\x67\x3b\x3c\xb6\xf2\x3f\xb0\xfd\xea\x04\x0d\xe7\x81\xe5\xe9\xb0\x89\x11\xcb\x80\xbb\x5d\x23\xec\x5e\x47\x15\xca\x83\xd8\xd3\x34\x7a\x8d\x98\x0e\xfc\x9b\x1c\xfa\xe2\x80\x6f\x94\x83\xbe\x83\x65\x9e\x51\xff\xf4\x32\x9b\x3c\x66\x90\xe5\x64\x77\xc9\xa9\xb1\x13\xce\x9b\x07\xa6\xaf\x77\x97\xd7\x28\x67\x79\xa6\xeb\x09\x32\xc0\xa6\xaa\x35\xf7\x73\x06\x59\x5a\xe9\xc9\x6d\x5f\x27\xea\x36\x0f\xf8\xff\x9a\x0c\xd6\x74\x3d\x0b\x31\x46\xe8\xad\x03\x8e\x28\x07\xed\x26\xfd\xb4\x6d\xdc\x79\xd0\x36\x74\x9a\xfd\xad\xb5\xa3\xfc\xa1\x9c\x76\xef\x69\xf2\xbb\xd9\xd6\x34\x93\xc1\x1d\xf5\xa0\x0c\x6d\x04\x6a\xe8\xa1\x0c\xed\x56\x86\x36\x62\x31\x75\x82\x46\xf3\x20\xb6\xd2\x13\xdf\xef\xe9\xf9\xd9\x9c\x7e\x70\xe6\x3c\xe0\x88\xf2\xc5\xf7\xc5\xe5\x77\x94\x6f\xbe\x9f\x2e\x7f\xa2\xdc\xf5\x77\x97\x9b\x0d\x6d\x1c\xa5\x7b\x7c\x1f\xe8\xbb\x39\x1d\x76\xb3\xb3\xbd\x7a\x94\xd3\xae\xc9\x63\xc7\xfc\x6c\x4e\xb1\x44\xd1\xe9\x73\x87\x18\xe0\xb6\xa0\x75\x93\xc7\x66\x9b\x78\x1e\x18\x97\xc5\xd5\x8e\x75\x44\x49\x6a\x5f\xfb\x4e\x70\x63\x1e\x30\x78\xb5\xd8\x78\x02\x3f\x51\x6e\xb6\x6e\x3c\x7f\xa7\xfb\x8f\x12\x73\x2d\x93\xd9\x1b\xec\x8f\x4b\xf2\xb5\x4a\x7c\xef\x79\x78\x3d\x0f\x66\x37\x6f\xb0\x15\x92\x1d\xb5\x6e\xba\x78\xa3\x3f\xaf\xfb\xd3\x98\xb7\x5f\xb0\x5d\x9f\xfe\x09\x67\xdf\x09\x6a\xcc\x83\xe8\x0e\xa7\xcd\x3e\x7f\xc1\xe6\x7e\x1c\x4b\x88\x1e\x70\xc0\x11\xe5\xc2\x2b\x5c\x18\x7a\xd8\x50\x76\xdb\x50\xb6\x6e\x7a\xf9\x82\x7d\x7f\x8e\x05\x61\x7c\xfe\x42\xcc\x70\xd9\xbe\x96\xfb\xe9\x6d\x4a\x27\x68\xef\xf9\x9e\x79\xf8\x82\x0f\xa0\x94\x6c\xd8\x80\xf6\x65\x73\xdb\xf3\x40\x39\x74\x41\x8c\x5b\x1e\x44\xbf\xc4\x6b\x3a\xe0\x1d\xe5\xe0\x21\xfd\x5f\x97\xf1\x61\x61\x33\xd4\x08\x5a\x7e\xc0\xcf\xe5\x9b\x7e\x42\xef\x2b\x71\xac\x3a\x0f\x9a\x87\xa1\x5b\x90\xbe\xb2\xe9\x6b\x65\xb1\xd7\x46\xec\xef\xbe\x72\xf4\x27\xb3\x4d\xc1\x93\xf6\x80\x6f\x94\xe3\x41\x0d\x9e\xaf\x6c\x7c\xb3\x41\xfc\xc2\x67\xbb\x13\x81\x95\x07\xea\x41\x6c\x13\x6e\x95\x07\xea\xc9\xd4\x53\x6e\xf7\xa7\xb0\x8e\xa3\xf8\x7b\x8e\x97\xe7\x61\x50\x4e\xff\x6b\xcc\x4f\x85\xdd\x0f\xf0\x61\x55\xcf\xff\xc2\x76\xa7\x61\x8e\x7c\xc0\x5f\x94\x7f\x94\xd3\x6e\x8b\xfe\x10\xb7\xa4\x11\x7d\xba\x2f\xdf\x2e\x9f\x87\xf6\x5f\xff\x91\xaf\x8b\x6d\xe2\x6a\xb1\x8e\xd8\xee\xb4\x01\x1f\x5e\x21\x86\x97\xc4\x70\xbe\x2e\xc4\xe1\x0a\x71\x4b\xf0\xce\xf3\xbd\xeb\x89\x75\x24\xda\x46\x23\x40\x74\x5f\x6d\x47\xbb\x44\xc3\xf0\x36\x77\x35\x6f\x5f\x08\xac\x79\xca\xc5\x1f\x96\x6f\xaf\xbb\x95\xad\x8d\x50\xce\x7d\x85\x58\x5d\x11\xb1\x61\x36\x97\xef\x28\x67\xde\x8c\x9f\x3d\xd6\xbd\x7b\xdd\x57\x71\x79\x7c\xef\x79\x5e\xdd\xe5\xc6\xb7\xee\x00\x3e\xc6\xc3\xbe\x53\x94\x67\xe6\xc1\xdf\x9b\x3f\xdb\xf1\xa0\x79\x1b\xba\x46\xf4\x9f\x44\x92\x17\xb6\x80\x07\xdc\x51\xfe\xf0\x3d\xf5\x8c\xc0\x07\x3c\xae\x1b\x71\x6c\x3b\x41\x2b\x79\x58\x94\x37\x97\x3f\x51\x4e\xbb\x1c\x03\xd6\x30\xff\x41\x7b\x9b\xda\xf4\x7a\xcd\xe8\x8f\xae\x15\x4e\x7f\xa6\xcb\x7b\x94\x0f\xbe\xef\x2e\x5f\x51\x8e\xfb\x48\x8e\xef\x8d\x6f\xd3\xa6\xf8\xc5\xf5\x73\xac\x3d\x0f\x04\x08\xe0\x18\xb0\x66\xac\x0b\xf1\x2e\xaf\xab\xc6\xf7\x51\x4f\xf8\xae\xbb\xfe\x3b\xea\xb9\x99\x37\xf8\xf9\xb2\x33\xce\x79\x10\x9e\x10\xd7\xf5\x80\x5e\x2f\xef\x07\x50\x86\xf6\x35\x63\x1e\xec\x08\xe1\x6d\x62\x28\xa3\x3b\xa1\x2a\x4f\x39\xf5\xac\xc0\x2b\x1c\x31\xaf\xeb\xaf\xfc\x8d\x72\xd1\xd1\xd9\xae\xfd\x7b\xfb\x15\xfe\x1f\xe7\x01\x74\xe1\xf4\x10\xba\xed\x8e\x32\xfb\x54\x57\x5d\xfe\x44\xf9\xcb\xf7\xcb\xe5\xbf\x28\xa7\xf9\xc1\xf4\x2d\xef\x5e\x97\x6f\x6b\xa6\xd9\xe8\x0a\x36\xb1\x20\x27\x6f\xe3\x96\x6d\xb3\xce\x03\xed\x9a\x9c\xee\x40\x47\x99\x6c\xe7\xeb\x32\xd9\xdf\x31\x1d\xb7\x97\x99\x53\xc2\xba\x83\x4d\x78\x9b\x42\x24\x80\xbe\x6e\x6f\xbf\xd6\xed\xfe\x58\x0c\x58\xd7\x7e\x1e\x98\x56\x93\xf7\x0e\xb4\xdb\xa0\x1d\x21\x5d\xfa\xda\x81\x46\x64\xa0\xb8\xae\x19\xe5\x77\x94\x6f\xca\x5d\xbf\x4f\xc3\x0b\x4f\xc2\xb6\x4c\x4e\x3b\xc8\x66\x1f\x7e\x7a\xbe\x9f\x2e\xff\x45\xf9\xa7\xf2\xc5\x32\xef\xe8\xff\x76\x78\x80\xe4\x76\x83\x3d\xa1\xcb\x6f\x04\x28\x3b\x60\xd4\x03\xdb\x5d\x66\xa3\x4f\x88\x07\xd2\x49\x5c\x97\xe7\xe1\xb1\xf8\x47\xa9\x9f\x1a\xa9\x48\xfb\x7a\x82\x1d\xfb\x36\x88\xd8\x9d\x07\x7c\xa3\x9c\xfa\x4d\x66\x4f\xb0\x5d\x65\x83\xc8\xce\xb1\x78\xc0\x1e\xe5\x84\xdc\xb0\x98\x79\x42\x9c\x90\x14\xb2\x11\x54\xb3\xaf\x37\xd6\xfd\x65\xdd\x93\xe7\xed\x0d\xf2\xb6\x92\xc5\xdb\x11\x22\x22\xf2\x40\x7f\x8c\xcf\x6f\x90\x9f\x6f\x89\x96\xf1\xf6\x8d\xf9\x79\x3d\x3f\xc6\xab\x9f\xb7\x29\xc4\x14\x4c\x6d\x19\x9f\x7f\x21\x66\x7e\x88\x99\xe4\xf9\xfc\xc5\xfa\xfe\xbc\xbe\xc6\x9f\x5f\xb4\x8b\x27\x52\xc3\xb4\xff\x80\x3d\xca\x99\x87\xc9\xfa\xc6\xf6\x68\x59\xa9\x81\x97\xdc\x01\x7b\x94\xd3\x2e\xa7\xb7\xf5\xc5\x78\xb5\x4f\x3a\xe5\xd4\xff\x45\xbb\x9f\xc7\xbb\x5c\x4f\xd0\x23\x4a\x8a\xff\x2f\x63\xdf\x72\x35\x3d\x88\x6b\x9b\x4a\x87\x60\x63\x03\xd2\xa4\x73\x01\xdb\x95\x7f\x08\x77\x69\x3f\xfe\xbe\xb3\xf3\xcd\xf0\x5e\x2e\x0a\x0b\x21\x84\xd0\x43\x39\x4e\x86\x9d\x0d\x06\x9d\x0d\xda\xc1\x4b\x93\xb1\x14\xe5\x59\x8d\x8b\xef\x0f\xe1\xc3\xf8\x24\x1e\xc2\x5f\xe3\x1f\xfb\x11\x2e\xf5\x62\x1d\x4a\xf2\x71\xea\x7f\xb7\x71\x6e\x57\x4c\xa2\x53\x8f\x61\x9c\xb9\x58\x4e\x8d\x47\xdb\xd8\x3a\xb0\x6d\x0c\x5e\xce\x8e\x75\x6a\xfd\x2e\x5a\x89\x06\x2f\x67\xc7\x3a\xd3\x38\xf8\x64\x1c\x54\x83\xd6\xa9\xf5\xbb\x58\x80\x60\x68\x9b\x5c\xcd\x78\x13\x2e\x3a\x34\x8f\xbf\x69\xfc\xb4\x12\xad\x26\x71\x4f\x6f\x84\x73\x68\xdb\x58\x4d\xf4\x97\x13\xc2\xd0\xf6\xb0\x9a\x8e\x0d\xab\x89\xfe\xb4\xfa\x2c\xab\x6b\x8b\xea\xda\x38\xb8\x0d\x2c\x5b\x65\xe8\xa5\x50\xf8\x14\xae\xfe\x19\x2a\x34\x8e\xa1\xf7\x3d\x9e\x4b\xe3\xa1\x3a\x65\x67\x83\x6a\x30\xb9\x0b\xf9\x9c\xbe\x07\x6c\x40\x9e\x9f\x3c\xee\x2e\x5b\x59\x9c\x3a\x92\x97\x98\x83\x79\xfa\xd8\x80\xbc\xa2\xaf\xea\x58\xdd\x74\xa3\x33\xc0\x60\x9c\xe2\x60\xde\x37\x36\xf8\xbf\xe4\xf3\x65\xeb\x88\x52\xb0\x0d\xe6\x7f\x1f\xcc\x7d\xc6\x06\x32\xa9\xf0\xf2\x71\x2c\xab\x5f\x4a\x34\x36\x0e\xaa\xb9\xcc\xb4\xc5\x06\xe5\x83\xfa\xb1\x9a\xa5\x74\x53\x43\xf2\x67\xc9\x35\x7b\x2c\xa9\x47\xa7\xfb\x91\x1c\x60\x46\xa2\x76\x34\xca\xf9\x65\x35\xc8\x79\x7d\x4e\xf1\xb9\xe2\x2f\x07\x33\xfa\xd4\xfb\xa4\xa7\xd5\x23\x66\xa0\x69\x07\x33\xee\x8c\x65\x35\x82\xb7\xf0\xe7\x38\x29\x57\x57\x98\xcf\x99\x03\x7b\x30\xde\x79\xac\x94\x5a\xb3\xe0\xf4\xdc\x8e\x46\xb5\x8c\x77\xf4\x6c\xbc\xc4\x49\xcf\xf4\x3a\x4d\xae\x53\xd6\x7b\xad\xc7\x30\x9e\xc4\xc9\x3f\x29\x35\x77\x25\xe2\xfd\x0f\xde\x3e\x8d\xb5\x3c\xef\x8b\xf3\xce\xac\xeb\x63\x2d\xf3\x1b\x6b\x55\x1d\xbc\x65\xaa\xc7\x66\x9c\xff\x2b\x7c\x4b\x8d\x5b\xf4\x5d\x1b\x27\x8f\x01\xcb\xfb\xa3\x2e\xeb\x07\x7d\xbe\xeb\xf1\x31\x4e\x7a\x76\xfe\xef\xe3\x7e\x58\x13\xe9\x68\x43\xb8\xf9\x87\xbe\xc2\xe3\x34\x6e\x3e\x41\x4e\xdf\xa6\x7a\x9d\xf5\xf8\x1a\xe7\x77\x89\x9f\x15\xa2\x54\x8d\x49\xbc\x09\x4f\xe3\xa4\x3f\xe5\xf9\x7a\xcd\xcf\x2f\xf7\x77\xde\x6e\x8d\xf5\x5a\x3e\xf0\xf2\x7d\x9c\xf3\x2f\xd6\xaf\xf5\x7a\xb8\x74\x55\x53\x8a\xb8\xb1\x3e\x8b\x63\x46\x12\x8d\x93\xc6\x4c\x5e\xc9\xb3\x41\x76\xe1\x29\x61\x29\x92\xa8\x1a\xbf\xff\xa5\x35\x1b\xeb\x17\x62\x47\xd6\xe4\x19\xed\xe0\x67\xfc\xcc\x2e\xdc\x66\x06\x23\x1c\xeb\x71\x18\x67\x3a\x43\x6a\xf1\xbe\x0b\x1f\xba\x0b\x1f\x8d\xdb\xde\x3e\x34\x7e\x5e\x42\x9f\x83\x2e\xc0\x63\x5b\x1c\xef\x33\x98\x80\x90\xec\xbb\x4f\xfd\xef\x66\x8d\xd6\x83\xd5\xda\xeb\x71\x1b\x7f\x88\xab\x1f\x6d\x27\x9b\xc6\xfc\xc1\xc8\xc7\xb1\xcf\x6d\x9c\xd3\x29\x76\xdc\x4d\x5a\xf3\x6e\x64\x3b\x46\x38\xd6\x63\x37\xce\x71\xd2\x88\xba\x9b\xc7\xd3\x98\x2f\x8b\x97\x9b\xf5\x98\xc6\x37\xf1\x4e\x5c\xe2\x63\x43\xac\xb7\xe3\xd2\xf7\x36\x2d\xe3\xdd\x28\x9e\xc4\x76\x5b\xae\xc4\xd5\xf8\x11\xe7\xf7\x5e\x1e\xe7\x25\xfa\x50\x5c\xee\xcb\xe3\x84\xef\x70\x53\x75\xd3\x7a\x4c\xe3\x8b\x69\x26\xd9\xff\xa5\xed\x6d\x5f\x3c\x0d\xf0\xb2\xaf\x1e\xfd\x7e\x2e\xe2\x5d\xf8\x63\xfc\x25\xce\xf1\xfb\xf4\xbf\x2f\x25\xdd\x0a\x8d\x47\x7c\xa5\x3b\xf8\xc1\x48\xc6\xb1\x6f\x89\xc5\xcd\xbc\xc3\x83\x91\x8c\x63\xcb\xe7\xac\x1a\xcc\x99\x46\x7e\xdb\x36\xc2\x6f\x26\x31\x3a\x58\x56\x7b\xec\x5b\xdb\xe1\x66\xb2\xd8\xc1\x64\x6e\xf5\x18\xc6\x93\x78\x13\xfe\x1a\xff\x88\xf3\xbb\xbc\xcd\x6c\x6d\x33\xbc\x9c\x1d\x5b\x01\xc9\xd5\xe8\xfc\xdf\x29\xdc\xef\x3b\xeb\x2e\xe7\xc5\xdb\xcc\xd6\x36\xc3\x4b\xd8\xb1\x87\x8e\x25\x9b\x79\x1f\x07\x0b\xc3\xd7\xe3\x63\x9c\xe3\xa1\x75\x64\xcb\x17\xad\x1a\xd8\x06\x2e\xf1\xcf\x90\x9a\xbb\x87\xe8\x40\x6b\xf7\x1e\xfe\x5f\x66\xde\x3b\x2e\xf1\xcf\x94\x1c\xd8\x4c\x58\x37\x2e\x5a\x07\xf7\x94\x58\xdf\xca\xd5\x76\x89\x9f\xe5\x5b\x56\x0d\xf2\x0f\xb7\xdb\x3d\xfd\xbf\x4c\x6e\xa6\xbc\x70\x63\x4f\xff\xaf\x12\x7d\xf1\x52\x75\xec\x30\x3d\x83\xfc\xcf\x1a\xb3\xf5\xf8\x13\x4e\xb1\xcb\x84\x81\xf5\x78\x19\xe7\x3c\x8a\x9f\xc3\xf3\x1e\x4c\x7b\xe8\xf1\x28\x05\x45\x35\x48\x37\x6e\xf3\x0c\x28\x66\xe3\x26\xce\xef\xca\x34\x4e\x6b\x10\x53\x20\xd6\xe3\x36\xce\x2c\x6d\x54\x67\xb7\x42\x82\x86\x22\x8b\xc7\x4d\x6b\x87\x23\x88\x87\x22\x88\x07\xcb\xec\x0e\x3b\x15\x54\xe3\x22\xce\xf1\x2f\xaf\x97\xc5\x04\xd3\xb7\xe4\xd5\x92\x9a\xb5\x59\x9e\xe0\xb8\x79\xe9\xb3\x97\xe9\xcc\x10\x9f\x71\x8b\x0f\x6d\x05\xdf\x8c\x04\x1f\x8c\x34\x1c\x0c\xe0\x65\x43\x59\xe6\xf4\xbe\xbf\x97\xd6\xeb\x71\x6b\x5d\xdb\x1a\xbd\x37\x8f\xdf\xba\x3c\xdd\x3e\xe6\xa9\xfc\xff\xb8\xb5\xae\x1f\xcb\x19\xba\x72\x0f\x5d\x6e\x6e\x1f\xe7\x74\xb9\x3f\x74\x89\xb9\x1f\xcf\xfb\x43\xb9\xc1\xd4\xce\x63\xfb\x38\xc7\x7a\xfe\xf5\xbe\xfa\xd7\x71\x6e\x3f\xa2\x83\xc6\xf9\x78\xde\x1f\x65\xcf\x93\x7c\x7e\xb6\xc7\xc3\xc4\xb4\xb7\xe4\xb3\x7c\xe0\x06\xab\xf7\x17\x1e\xc2\x97\x71\xd2\x53\x7c\xfb\x7a\x5e\x98\x0f\xff\xf0\xf8\x7d\xfc\x53\xe4\xef\xa0\x2f\xec\xa0\xcf\x00\x1b\x4c\x96\x2c\x3e\x7f\xcd\x87\x4c\x48\x3f\x58\x91\x73\xec\x4f\x6a\xc1\x86\x33\x5c\x3b\x74\xd9\xba\x3f\xcf\x17\xd3\xd0\x1f\xb7\xe4\xc9\x27\xb5\x69\x7f\x4a\xc6\x3c\xd9\xbf\x7c\xe3\xaa\x81\xf5\xe8\xf1\x7f\x5e\x2f\x1f\xb3\x1a\xde\x92\xe7\xde\xc7\x15\x11\x3c\x74\xe9\xb9\x7f\xde\x4f\x7f\xdc\xd7\x74\xb9\xb9\x7f\x1e\xe7\x4f\xe3\xa4\x75\xd3\x91\xb9\x43\x91\xb9\x83\x3e\xa6\x83\x59\xe8\xd8\xe0\x78\x34\x4e\xef\xef\x5b\xfb\xbb\x2e\x3d\xb7\x8f\x8b\xac\x70\x5f\xef\x57\xff\x33\xe4\xd3\x56\x0d\x66\x78\xc7\x7a\x99\x4e\x0a\x34\x19\xd2\xdb\x0e\x8e\x7f\x32\x80\x97\x0d\x26\x74\xc5\xb1\x6d\xfa\xd2\x7f\xea\xd2\x7f\xf0\xb2\x72\x86\x8e\x6d\x33\x74\x6c\xe3\xa5\xe4\x8c\x93\xf3\x55\x0d\xac\x47\xe6\x93\x9e\x8e\xb4\x9d\x2a\x4b\x3e\xfa\x7d\xfd\xdf\xea\xd7\x0c\xb9\xa4\x4d\x05\xd6\x0e\x46\x38\xce\x90\x4b\x5a\x35\x20\xee\x79\x99\x38\xe3\xe2\xb2\xac\x06\xc8\xc1\xbb\xde\x7a\x0c\xe3\x7a\x9f\xb8\x5c\xb6\x27\x2f\xa7\xcf\xc1\x7a\x47\x33\xe4\x82\x5d\x0d\x68\xbb\xfd\xe4\xff\x32\xa3\x15\x1a\x7c\x7f\xf2\xf3\xba\xc9\xca\x1c\x56\x07\x5d\x71\xa7\xf3\x6d\x4c\xd5\xb7\x1e\x4c\x27\x3e\x43\xdb\xd5\x54\x31\xe9\x83\x29\xbb\xeb\x31\x8d\xb3\x7f\x9c\x7e\x66\x8c\x25\x72\x33\xab\xda\xc1\x8a\x6f\xf5\x18\xc6\x93\x38\xc7\x3f\xb6\xfb\x51\xba\xc8\x83\xfd\xcc\xd0\xfb\xca\xa0\xca\x4b\xc0\x19\x33\x35\x4e\x66\x29\x1d\x4c\x3e\x3f\x43\xa7\xa5\x6a\x4c\xe2\x21\xfc\x35\xce\xf4\x9a\x30\x0e\x4f\x16\x6a\x66\x83\x79\x60\xc4\x2e\x93\xe2\x6f\x2a\x9f\xd5\x60\x64\xe2\x8c\x08\xbd\x1f\x3c\x2d\x31\xf3\xe6\x64\xa2\x24\x36\x30\xef\x8c\x40\x9c\xac\x8b\xcc\x06\x73\xb9\x8b\x0e\x3a\xa5\x55\x83\x74\x18\xea\x67\x2f\xe3\xcc\xd6\x7f\x85\xf0\xd7\x38\xc7\x7f\x93\x0e\xc9\xe5\x3a\x59\x29\xb9\x70\x8e\x3f\xcd\x57\x29\xbe\x1a\x21\x3c\x8c\x93\x9e\xe2\x4f\xf9\xd2\x55\x83\xf9\xf9\xc5\x9f\x2b\x34\x8f\x8b\x99\x73\x59\xd2\x7a\x86\x12\x4c\x54\x03\xdb\x27\xab\x32\x4d\x56\xa1\x65\x83\xfd\xcf\x2e\x7c\x19\xc7\x29\x87\xae\xc4\xf5\xf8\x18\x27\xdd\xc4\x9f\xf2\x09\xab\x06\xe9\x93\x43\xf8\x36\xce\xf7\x83\xf3\xf8\x78\xd9\x6b\xdb\x60\x56\xa0\xe9\x5c\x50\xd5\x20\x3d\x83\xe3\x79\xb6\xe8\x86\xe3\x5d\xe1\x21\xfc\x33\xce\x79\x4f\x7e\xef\x1b\xe2\xb7\x97\xdb\xed\xd0\xf8\x5f\xaf\x77\x56\x31\x39\x98\x68\x78\xfa\x32\x74\xea\x32\x74\x30\xef\xd0\x8c\xcf\xf3\xf5\x85\xf2\x41\xf3\xbb\xbe\x34\xce\xed\x6a\xaa\x9f\x6f\xa9\x1f\x16\x64\x3d\x86\xd6\xa9\x22\x37\xa7\x22\x37\x95\xfd\x79\xb2\x8a\x2a\x1b\x2f\xdf\xe7\x77\xfd\xbc\x4e\x99\xd0\x61\x4c\xf5\x23\xdf\xaf\x6a\x30\x8b\x74\xe3\x78\x7e\xa6\x3f\x33\x3c\x1e\x2c\x7a\x32\x43\x3e\x5e\xd5\x60\x9a\xe9\x8b\x74\xfe\x2d\xf1\x03\xd3\x90\x0e\x5e\xf6\x4d\x47\x80\x56\x83\xff\x2b\x7e\xfe\x99\x9f\x59\xda\x74\x4c\xf2\x6d\x7a\x1b\x50\x39\xd2\x41\x5f\xba\xc9\x3b\x56\x36\x38\x1e\xbf\x2f\x39\x93\xb2\x02\xf2\x72\x70\xa6\x72\xbe\x55\x83\xe3\x81\x55\x60\xfa\x12\x76\xf2\xd6\xb5\xf0\x14\xfe\x09\xe7\xb1\x84\x97\x86\xf5\x78\x1a\x6f\xfc\xdf\x10\x7e\x19\x67\xff\x50\xc7\x67\xea\x98\x3a\x59\xcd\xf4\x1c\xbc\x04\xac\xc7\xcb\x38\x93\x0e\xc3\x25\xbf\x1e\xbb\x71\x6c\x9f\xf4\x15\x9e\x2c\x78\xca\x46\x12\xe7\x77\x9d\x92\xff\x2c\x56\x5a\xfd\xa4\x70\x8d\x5f\xc7\x5a\x96\xcc\x98\x29\x57\xeb\x6a\x74\xe2\x53\xb8\xfb\xd7\xbc\x84\xfa\x91\x9c\x64\xa9\xd2\xa6\x62\xdf\x93\xc5\x49\xd9\xc0\x7e\xc1\x7a\xf5\x93\xe5\x45\xd9\x20\x1f\xe6\x2d\xfc\x36\xce\xef\x1a\xfc\xdf\xe6\x71\x32\xf4\x6a\xb0\xbc\xe8\x4c\x59\x3d\xab\x11\xc4\x39\x5f\xd7\x52\xff\x3a\x46\xb2\x8e\xe3\xcc\x6b\x1b\xd7\x78\xb8\xae\x9d\x85\xad\x1a\x1c\x3f\xd7\x75\xca\x97\xab\x1a\x58\x8f\x8c\x64\x9c\x79\x9b\x4f\x58\x68\x65\xb0\x46\x4d\x3d\x6e\xe3\xa0\x33\x7d\xbc\x66\xde\xa6\x83\x0a\x97\xf0\x32\xae\x1e\xa7\x71\x8e\xff\xe6\xf8\xe5\xe3\x35\x99\xfd\xad\x1d\x2c\x3a\x3e\x53\xd6\xcd\xc9\x5b\xe9\x73\x84\xe6\x57\xf9\x01\xab\xa1\xac\xdf\xea\xc7\xe3\xec\xeb\xff\xab\xa1\x30\x59\xce\x11\x0d\xf2\x6d\x0c\xf5\xb3\xfd\xbe\x6b\x2e\x90\x3e\x8a\xd8\x9d\x8a\xd8\x1d\x31\x0f\xe1\xcb\x38\xe9\x23\xbe\x1d\xf1\x19\xe7\x7c\x89\x6f\x87\xf9\x70\x50\xad\x67\xe4\xf5\xf4\x65\xf1\x54\xf6\xba\xc1\xdb\xb6\x7a\x0c\xe3\x49\x5c\xfd\x48\xfe\x27\xd3\xb8\x0f\xde\xaa\xcd\xf4\xfe\x9e\xda\xdf\x23\xef\x3f\xa8\x5f\xa9\x53\x6c\x35\xf8\x37\xa9\xee\x24\x9e\x18\xe8\xdb\x0e\x06\x7e\xcf\x94\xcf\xd6\xe4\xa5\x6f\xe1\x9c\x7e\x9d\x4a\x67\x06\xc5\x0a\x23\x16\xa7\xef\x5c\x27\xef\x5c\xdb\x21\x31\x97\x61\x71\x10\xd4\x6a\xa7\xd8\xc8\xdb\x73\xa6\xfa\x17\x1b\xa5\xd9\x3d\xb9\x5d\xd1\xd7\x61\xf2\x0e\x94\x0d\xa8\x71\x53\xe2\x40\x2e\xe7\xd5\x50\xdd\x25\xf6\xef\xed\x39\x17\x2f\x19\x19\x40\x5e\x8f\xc3\x38\xa6\x99\xbe\x3e\xd3\x97\x98\xd5\x80\x76\x3f\xc5\x46\xcb\xcb\x63\xd1\x5a\x66\xf1\xb7\xbd\xbc\x65\x74\x4d\x8d\x7f\x7b\x99\x6d\x2e\x33\x56\xca\x9e\xbe\xc4\x9c\xbe\xc4\xb4\x98\xdb\x66\x6b\xfa\x42\x8d\x94\x58\xdf\x16\x07\x4c\x30\x31\x52\x74\xd8\x9e\x2f\x26\x92\x18\x2c\x8a\x3c\x7d\x99\x38\x75\x99\x38\x52\xec\xfe\x78\xfc\x4c\x04\x7c\xb0\xfa\xc1\xcc\xc7\xcb\xe6\xe1\xe9\x84\x3e\x10\x33\x1f\x2f\xd7\x87\xcb\x95\x11\x8b\x33\x5f\xd3\x8d\xa5\xd6\x0e\x8b\xa7\xd7\xfc\xf0\xd2\x58\xcd\xfa\x1f\xd3\x97\x7d\x53\x97\x7d\x83\xa9\x2c\x67\xea\xf4\x56\x0d\xd0\x87\x3e\x0d\x33\xe5\x9a\x5d\x0d\x56\x64\x91\x38\xf6\xb6\x9d\x1f\xd5\xd0\x4c\xf6\xf3\xf3\x32\xfb\x71\x99\xd1\x47\xa1\x1e\xb7\x71\xbd\xcf\xf1\xfc\x2c\x2e\x99\x2b\x7c\xf0\x92\x6e\x3a\x90\x78\xf2\x16\xef\x9c\x87\xbe\xeb\x27\x35\x25\x7f\x54\x17\x24\x16\x97\xb7\xcf\x75\x30\xed\x3d\xab\x19\xcd\x25\xab\x6a\x35\xc0\x27\xf4\x39\x98\xeb\x14\x3f\xaf\x93\xfc\x1c\xdc\x26\xd7\xb9\xfc\xfe\x7a\xfe\x57\xb5\x60\x3a\x32\xb7\x1a\xdf\xff\xea\x30\xcd\xa5\xbc\x44\xd5\xe0\x78\xb8\xfd\x38\xd2\xb6\x1a\xec\x07\x56\xcc\xb9\x2e\x89\xad\x75\xc5\xfe\x5f\x6d\xa4\xb9\x2e\x89\x8f\x75\xd1\xba\x23\xf1\xb7\x2e\x89\x1b\x5f\x4e\xd1\x49\x60\xb2\x42\x19\x1b\x8d\x38\xff\x57\x3e\x49\x93\xd5\xb2\x5c\xd9\x65\x2e\xe5\x0d\x9a\xaa\xf6\x34\xe9\x33\x31\x59\xcf\x89\x0d\xf0\x9b\xc4\x99\x23\x61\xa7\x22\x61\x27\x23\x10\xa7\x2f\xb9\xe6\x92\x4f\x52\x90\x6f\x97\x7c\x92\xa6\x6b\x20\x1d\x3d\x84\x2f\xe3\xa4\x1b\xd7\xef\xb2\xf8\xe6\xed\x55\x3b\x98\xb6\x76\x32\xd0\x95\x0d\xce\x3b\xc5\x3a\x8b\x93\xb0\xc1\xfe\x27\xc7\x39\x4c\x67\xc8\xe5\xea\x27\x85\xbb\x1f\xa5\x6c\xa4\x7a\xb1\xa6\xe9\x30\x45\x07\x7d\xef\x94\xba\xa9\xd2\x16\x93\x4e\x08\x93\x01\xb0\x6c\xa0\xf2\x06\x2f\xe3\xa6\x23\x58\x27\x4b\x34\xb4\x83\x3e\x9d\x93\x45\x18\xd8\xe0\x38\xc9\xcf\x6b\x7a\x5e\x58\xbd\xf6\x60\x24\xf8\x64\xf6\x75\x36\x30\x8f\x29\xbe\x92\xf5\x71\x2a\xb2\x75\xf2\xd2\x6d\x3a\x82\x75\x2a\x82\x75\x9e\x27\xc7\xa3\x84\x41\xd5\x60\xa9\x03\x8d\x27\xb4\x4e\x17\x13\xdd\xce\x53\xff\x9b\xa6\x73\x92\x9f\x99\x7a\x78\x2e\x1f\xab\x16\x8f\x55\xf3\x6c\x7a\x5f\xc7\xdd\x85\x84\x82\xe7\xe4\xe5\xf8\x5c\x4a\x75\x5b\x0d\xd2\x81\x6a\xee\x5a\x52\x13\xd7\x22\x5f\xa5\xd6\xdd\x4a\xbf\xcf\x3a\x5b\xbc\xec\xae\xc7\x61\x7c\xf2\x7d\x7e\xaf\x12\x06\x55\x83\xff\x4b\x35\x65\x2d\xa9\xbf\x6b\x51\x3e\x9c\x7e\x7f\x1b\xe7\x25\x66\x6a\x3d\x6e\xf3\x39\xad\x8f\x93\xf9\x2f\xeb\x71\x19\xdf\xc4\xf9\x5d\xdb\x74\xde\xa2\xb3\xfb\x31\x1d\xb6\xe8\x40\x35\x71\xf9\x38\xb7\x74\x9c\x4b\xf1\xe7\x63\xf9\x80\xe2\x9b\xe7\x3c\x79\x5c\x5c\x72\xea\xa8\x06\x71\x1e\x47\x97\x7c\x58\xe7\x7a\xc9\x6f\xbc\xcc\x9d\x8e\x6c\xad\x06\xe9\x23\xdc\x72\x7b\x49\x6e\x4b\x0e\xaf\xcf\xf2\xe4\x63\x51\xa3\x93\x6a\xdc\xfa\x99\xff\x7f\xe4\xff\x76\x18\x1f\xc6\xc1\x3f\xbc\x0d\xab\xc7\x65\x9c\x7c\x8b\x5b\x8e\xe9\x48\xcc\xc9\x48\xcc\x76\x1e\xe4\xb7\xed\xe3\xca\xa6\xcf\xe8\x6c\xe4\x2b\xdf\x92\x4d\xde\x92\xd5\xfb\x53\xf8\x6b\x9c\x65\x61\xb8\x5f\x6c\x65\x5a\x98\x0c\xc9\x3c\x27\x6f\xcf\xa6\x6f\xc9\xa6\x6e\xc9\x4e\xc9\xe1\xdd\x74\xdc\xda\x8d\x45\xd7\xda\x7d\xfc\x41\xfd\xe2\x1d\x16\x1b\xac\xb6\x41\xf6\xda\x8a\x10\x99\xcc\x53\xda\x4e\x06\x90\x4f\x5f\x4e\x4d\x5d\x4e\x9d\x74\xcd\x9b\xbe\x6c\x9a\xba\x6c\x3a\x59\xc0\x65\xfa\xb2\x69\xea\xb2\xe9\xa4\x0f\x44\x3d\x7e\xc2\xc9\x5e\x8d\xda\xf4\xbe\x3c\x1e\x1c\x17\xea\xfd\x14\x7e\x1b\xe7\xff\x92\x7d\xf7\x2d\xb6\xde\x2c\x9c\x39\x99\xa7\xa7\x1e\x97\x71\x4e\xc3\xe0\xf8\x6f\x93\x89\xa7\x8a\xc9\x4b\xba\xb9\x6f\x9d\x4a\x37\x4b\x3f\xce\x36\xf5\xbe\xb6\xc3\xad\xed\x84\x05\x8f\xea\x51\xe3\x67\xed\xc4\xc9\xcb\xb8\x7a\x3c\x8d\x73\xfc\x14\xf7\x5b\x3e\x13\xd5\x60\x15\x38\x8a\x5d\x06\x9c\xb2\xc1\xe2\x53\x14\xbb\xbb\xa7\xe8\x8c\x7d\xa5\xfa\x99\xc2\xb7\x71\x4e\x3f\x4f\x03\xbb\x4b\x6c\xed\xae\xf1\x53\xbd\xd8\xdd\xe3\x61\xd9\xb7\xc9\xfc\x3a\x73\xfb\x94\xb0\xb5\xcd\xf0\x92\x6e\xee\xa1\x65\xb6\xb1\xcd\xb4\xf3\xd0\x77\x0d\x2d\xe3\xcd\xda\x55\x93\x97\xb6\x73\xfb\xf4\xb0\x99\xe6\x6e\x5e\x5a\x06\xc3\xf3\xc5\x9a\x53\xf3\x12\xbb\x7b\xbb\xda\xac\x18\x35\x59\x4e\x6b\x6e\x6f\x57\x5b\xdb\xd5\x25\xb6\x9e\x9e\x47\x6d\x4b\x97\x96\xc7\xf4\xf2\x80\x4f\x46\x8d\x93\xf3\xa2\xc8\xd9\xa9\xc8\xd9\xc9\xfc\x3d\x73\x4f\xcf\x2f\xeb\x0d\x4d\x5e\xde\xcd\x2d\x97\xd5\x6a\x24\x71\xf6\xef\x63\xc6\x66\x5d\xf4\xf3\xd0\xb2\x97\xab\x69\x35\x16\x8b\xa3\x71\x9c\x0a\x0d\xa9\x46\xa9\xf5\xe7\x29\x3a\x87\xf9\x0d\x79\x77\x0b\xbf\x84\xbf\xc6\xf9\xbd\x5a\x77\x61\xbe\x62\x9d\x99\x79\x75\xf5\xaf\xd3\xf3\xc6\xb9\xa5\xfa\x99\xc2\xdd\x0f\x0b\xef\xb0\x20\xe4\x74\x04\xee\x64\x04\x6e\x3b\x4f\x8a\xb3\xed\xe3\xcd\x4e\x8a\xb9\x4b\xfc\x99\xe9\xf7\x29\x2e\x99\x4f\xa8\x1e\xfd\x3e\xb6\xa5\x93\x39\xfe\x27\xb3\xf8\xb2\xb1\x88\x93\x3e\x4a\x0c\x51\x0d\xce\x97\xf8\x36\x3d\x4e\x1c\x87\xda\x49\xdf\x97\xb9\x97\xe9\xbc\x48\xe7\x53\xf3\xbb\xcc\xe7\x38\xde\x9c\xf3\xe2\xa9\x74\xdb\xda\xb7\x61\xed\x6b\xe7\xc9\x63\xd2\x56\xbe\xb7\x6a\xf0\x7b\xb9\x3d\x3b\xcd\x6c\x35\xf8\xbf\xb4\x5e\xef\xd7\xdf\xfb\xea\x7b\xa9\xd6\x6f\x1f\x1b\x36\x9c\x39\xda\x79\x4a\x5e\xbd\x16\xeb\xaf\xbe\x4b\xfc\xf6\x5a\x4e\xbe\xfa\x2e\xc9\x25\x5b\x0d\x75\x79\x74\xb2\xf2\xd2\xdc\xb6\x1a\xee\x4f\xfc\xd0\xf9\xbf\x9f\xf9\xf0\x23\x1f\xf2\x52\x72\x3a\x5b\xf9\x54\xb6\xf2\xc9\x4b\xc6\xc9\xec\xac\x6c\xb0\x00\xa9\xe8\xff\xf3\xf8\x79\xe9\x33\x6f\xad\x2f\x5b\xfb\x36\x32\x1d\xb4\x93\x09\x02\xe6\xf6\x71\x82\xa1\x9d\xed\x64\x8d\xb6\x88\x83\xdb\x64\x30\xcd\x79\xf5\x13\xc2\xbb\x71\xc8\x2b\xa6\x45\x8d\x50\x22\x83\x60\xfa\xf3\xea\x47\xef\x53\x7d\x0c\xde\x0a\xb5\x93\x09\x05\xea\xd1\xef\x73\xbb\xe2\x65\x65\x38\xb2\x32\x14\x59\xa9\x6a\x83\xf5\xd8\x8c\xb3\x3c\x29\xf6\x8b\x7a\xec\xc6\x21\x27\x4f\x98\x0f\x22\xe4\x1c\x12\xcc\x94\x5e\xef\x13\x97\x95\xab\x1a\xaa\x66\x98\xc2\xb7\xf1\xe7\x7f\xe5\x4f\xc3\x99\xd2\xab\xd1\x88\xeb\x7d\xf2\x79\x35\x20\x07\x18\xf9\x18\xa1\xfd\x34\x18\x7a\x59\x78\x07\x7e\x91\x3f\xab\xc1\x7a\xb9\x93\xfd\x28\x1d\x6b\x30\x1d\x6b\x3b\xe9\x9c\x53\x8f\xcb\x38\xf8\x8d\x35\x0e\x22\xae\xa5\xf1\x23\x26\xa3\x70\xbe\x7f\x7b\x5e\xb4\x0f\xde\xc9\xf1\x2b\x21\x42\x30\x2f\x6b\x3b\x99\x2f\x30\x1c\x29\x19\x8a\x94\x9c\xac\x78\x19\xd1\x53\xf3\xce\x44\x3f\x93\x69\x4e\xc3\xb7\x4f\xa1\xdb\xa7\xb3\xb5\x2e\xfc\x36\xde\xf9\x3e\xe9\x20\xeb\x57\x35\x58\x88\xec\xe4\x78\x54\x1d\xa3\x1a\xea\x7f\x0a\x1f\xc6\x39\x4e\xf1\x55\x27\xff\x57\x63\xf1\x7d\xd2\x4d\x21\x17\xd5\xb8\xf9\x3e\xe9\xa3\xfc\x73\xd5\xc0\x3e\xd5\xc5\xb7\xc3\xfd\xc0\x9a\xd5\xce\x76\x37\xe1\xaf\x71\xf0\x09\x6f\xbd\x22\x94\xd0\xa7\x1a\x8b\xef\x73\x9c\x73\x89\x6f\x55\x4e\xae\x1b\xdf\x9a\x5f\x66\x54\x98\xbd\xff\xc1\xf5\x3e\x42\x11\x10\xa1\xcb\xac\xd9\xc5\xd6\x3a\x15\x05\xcb\x82\xb4\xb3\xfd\xc3\xa7\x71\xfe\x7d\x0f\xe1\x8f\x71\x7e\xf6\x20\xf9\x14\xd1\x50\x0d\xf6\x2f\xb6\x96\x2b\x62\x35\xf8\xd9\x83\x9f\x1d\x4b\xe3\x61\x19\x91\xd9\xc5\xee\xe1\x65\xa6\xd3\x55\x17\xbb\xa7\xdf\x87\xb8\x6f\x67\x1b\x21\xfc\x33\xce\xfe\x43\xef\x7b\x79\x24\x97\x47\x0f\x8e\x47\x2e\x87\xd5\xc0\x36\xd6\x93\x6c\xb7\x3c\x0d\x4c\x8b\x37\x59\x5c\xb5\x86\xa9\x7e\xe0\x72\xd8\x4e\xba\xe6\xd5\x63\x37\x4e\xb6\x4b\xe3\xd3\x38\xc4\x53\x93\x18\x5a\x1e\xff\xd2\xf8\x35\x4e\xa5\x63\xad\x06\xc6\x3f\xb4\x3c\xd6\x76\x3f\x14\xc7\xe3\x18\xc2\xb7\xf1\x97\x38\xe9\xb6\x2d\xfe\x36\x4f\x33\x8c\x70\x8c\xd8\x5e\x36\x9b\xcb\x86\x97\xa1\xf5\xf8\x19\xe7\xff\x8a\xdd\xb7\xbf\x8b\xe9\xfb\x54\xae\x37\x62\x9b\xed\x10\x0a\xd0\xce\x26\xfa\xe8\x94\x16\xba\xbc\x3b\xa9\x0e\x06\xef\xec\xd8\x60\x9d\xbe\xc6\xf1\x3f\xe6\xb7\x87\xa7\xc3\xa1\x65\xf3\x98\x7f\x1e\xaa\xef\x54\x1f\x23\x9e\xa5\xff\x85\xb9\xae\x70\xce\xe3\x63\x31\xfd\x50\x4d\x61\x42\x8d\x7a\xbc\x8d\x63\x5e\xc6\x95\xc2\xc3\x38\xe9\xa9\x65\x29\xd7\xcb\x50\x9a\xd6\xc9\x88\xc8\x70\x9a\xd6\x6a\x90\x9e\x37\xfb\xf9\xfc\xfe\xa7\xf7\x3b\xc7\xf3\x59\x6c\x7d\x14\x5b\x97\xc4\xcd\x67\xf1\xf7\xc1\xfa\x78\x5e\xa2\xb3\xd2\xb1\x06\x43\x1a\xdb\x79\x89\xce\x9f\xc5\xfd\xc7\xed\x7f\x68\x7d\x7d\x5b\xf3\xc5\x02\x4f\xe7\x25\x7a\xfe\x3c\x9e\x9f\xc6\x33\xf8\xbf\x3f\xf7\xff\xa3\x7a\x71\x49\x6c\xfd\xbc\xed\xfd\xb8\x2e\x78\x09\x1b\x4e\xa3\x1a\x4a\xa3\x3a\x99\x90\xa5\x1e\x87\xf1\xc9\x7e\x42\xf8\x63\x9c\xf3\x1b\xec\xe7\xd4\xf8\x79\x79\xd4\x4e\x26\xe6\xa8\xc7\x6d\x1c\xeb\x9d\x97\x1d\xe1\xcb\xa3\x6a\x70\x9c\xdc\x86\xb3\x89\xaf\x12\xe6\xbd\x76\x52\x4d\x0c\xa7\x4b\x0d\xa5\x4b\x9d\xf3\xe4\xfb\x17\x4f\xf3\xa1\x9a\x69\xe7\x45\xf9\x90\xca\x1e\x5e\x0d\x7c\x17\x23\x10\xeb\x71\x1a\x87\x7c\x63\x22\x92\xe0\x9d\x0e\x1b\x2f\x71\xd0\xd3\x97\x35\xa1\xcb\x9a\xf3\xc2\xb1\x2a\x52\xc7\xa7\x60\x48\x60\xe1\xec\xbf\x53\xcd\xaa\x06\xe6\x85\x56\xfc\x70\xfa\xd3\xe0\xad\x4a\x3b\xe9\x5b\x16\x8e\xc8\x0b\x46\xe4\x15\x3e\x85\x87\x71\xf6\x33\x0e\xe1\xfa\x5e\x55\xed\x9d\xa2\xcf\x94\x7c\x4b\x15\x7f\x9d\xa2\x83\xf2\xc3\x55\x83\xdf\x45\xb9\xca\x4b\x0f\x36\x58\x4f\x9f\x6a\x19\x03\xeb\xd8\xe0\xff\x4e\x7e\xaf\xf7\x91\xa4\x0f\x9f\xaa\x8d\x86\x23\xe6\x42\x11\x73\xaa\xcb\x1f\x19\x69\x3c\x85\xb3\x9f\x70\xff\x41\x3e\x41\xd9\xc4\x2f\x52\xc7\x83\x6a\x70\x3c\x94\x33\x29\xdf\xbb\x6a\x70\xde\x29\x67\x52\xbe\x77\xa1\x48\xb4\xc9\xf4\xad\x91\x69\x7e\x43\x0c\x59\xf5\x4f\x3a\xa4\xc7\x9f\x94\x57\xac\xd4\x5f\xdb\x8b\xf8\x84\x69\xb4\x67\x50\xce\xe4\x32\x9d\x17\xf9\x93\x79\x22\x83\x45\x56\xd8\x18\xc4\x39\x1e\x39\x39\x04\xf3\x9d\xb6\x93\x09\x35\x22\xe5\x5a\x1e\xcc\x6b\x7a\x4e\x46\x26\x86\xd3\x99\x56\x83\xe3\xa1\xfa\xc8\x88\x25\x36\xd8\x8f\xe6\xd7\xf2\x2d\x9f\x4d\x3e\x19\x5d\xf8\x32\xce\x7e\x34\xef\xaf\xe7\xf7\x15\x5f\x69\xbd\xff\xcc\xcf\x3f\xfd\x2f\xf7\xc1\x54\x64\x74\xf0\x1a\xa1\x70\xfc\x2f\x23\x69\xd8\xe0\xf8\xb9\xae\x9d\xa7\x33\x94\xa7\x53\x95\x4f\x63\xc9\xf7\x3a\x18\xfb\x52\xf8\x24\xae\xfd\x74\x9d\xea\x87\xdf\xb5\x4e\xc9\xb7\x25\x35\x9a\x21\x7d\xb1\xe4\x63\x5d\x8d\x46\x9c\xef\x37\xf1\xd5\x6a\xe4\x2b\x5a\xe5\x63\x5d\x7e\xff\xd2\xfb\xdc\xf7\x6d\xf5\x0f\x5a\xfd\x0b\x9f\xc2\x1f\xe3\x1c\x3f\xe9\xb0\x2e\xed\x77\xeb\xa2\x59\x81\x55\x73\x82\x97\x00\x6c\x60\xfc\x79\xfc\x21\xed\x6a\xbd\x1d\xfe\x59\xf2\x67\x1c\xd6\x2d\xf6\x5a\xb0\xee\xb4\x93\x25\xed\x63\xe9\x2e\x36\x54\x18\x7e\x66\x3b\x84\x87\x71\xb0\x45\x27\xdb\x31\x0b\x25\x1b\x41\x9c\x9f\xa7\xec\xc6\xa1\xb2\xe1\x93\x97\x83\xb1\x54\x1c\x20\x58\x8b\xbb\x9d\x52\x07\x59\xc9\x99\x0d\xe1\x53\xf8\x63\x1c\xdb\x33\x13\x58\xc4\x52\x71\x80\x60\xb5\xe1\xc2\xd9\x8f\x02\x6b\xc3\xb5\x75\x93\xdb\xc6\x92\xf5\xa2\x1a\x7a\xdf\xf8\x6d\x1c\x6c\xca\x6c\xfb\xf5\x38\x8c\x43\x4c\xa7\xbe\x57\xbe\x50\x41\xab\xfb\x39\x19\xa8\x5f\x5a\x9c\xfa\x91\xf8\x60\xda\xd2\x7a\x1c\xc6\x49\x1f\xb1\x4b\x9a\xad\x99\x27\x6c\x32\x22\xaf\x1e\xb7\x71\x88\x0f\x26\xbc\xa8\xc7\xd7\x38\xb6\xbd\xd4\x38\xd3\x74\xa0\x4b\xef\x4c\x8a\xd7\xb5\xbc\x3c\x16\x97\x47\x52\x1d\x64\x60\x0b\x1b\xac\x2a\x4f\xb1\xb8\x2c\x86\x96\xd4\xca\xe4\x76\x62\x63\x7b\x28\x7d\xe5\xa4\x71\x38\x96\x2e\x4f\x83\x21\x2d\x67\x30\x32\xae\x1e\x35\x4e\xd6\xbe\x3d\xbb\xd8\x57\xd9\x99\xab\x81\xba\xc5\x07\xb7\xcf\xb5\xa5\x9e\xae\x0d\xb5\x23\x0e\xaa\x8f\x4e\x5f\x59\x8d\x8f\xb8\xfa\x91\xfa\xb5\xa4\x0e\xd2\xa7\xaa\x1e\xdd\x3f\x2e\x4f\x83\x91\x71\xb1\x94\xb5\x3f\x18\x62\x73\xc6\xd1\xd8\xff\xe3\x79\x61\x76\xfe\xe0\xe5\x5d\x3d\xa6\x71\x8e\xe7\x22\x3d\x1f\xcf\x0b\x5d\x7d\xe3\x10\x5f\x29\x42\x33\x68\xd5\x3f\x83\xd6\xdf\x58\x2a\xf2\x13\xcc\x87\xd9\x4e\x56\x1d\xa8\x47\xbf\x8f\x08\xa0\x93\x3e\x7f\xb1\x5e\xaf\x47\x16\xed\x09\x5a\x7f\x63\x59\xbd\x5b\x1f\xeb\xa2\x33\x12\x39\xf6\x29\xba\xed\x53\x74\xa3\x78\xda\xa7\xd4\x97\xcd\x44\x0c\x71\x50\xec\x6e\x45\xfc\x55\x83\xe3\xe1\x38\xb7\x8a\xb1\x54\x83\x74\x26\x9f\xec\x26\x3e\xd9\xb4\x0a\x04\x23\xda\xea\x71\x1a\x27\x1d\x42\xfd\x6b\xfc\x8c\x1d\x39\x83\x97\x68\x41\xa3\x3b\x1b\x37\xf1\x4b\xf8\x30\xce\xf9\x4a\xf5\xe3\xf1\x4b\xfd\x92\xfa\xeb\x10\x93\xa0\xb5\xbe\xde\x07\xfd\xb7\xb2\xd5\x57\x03\xfd\xb3\xe8\x4a\x3d\x4e\xe3\x41\x7c\x12\xd7\xba\xdb\x30\x33\x9c\x41\x6b\x5f\x6c\xe5\x73\x0a\x9a\xe7\xdb\x39\xba\xde\xf7\xff\x5e\xfc\x5f\x5a\xf5\xc2\x56\xf9\x6a\x74\xe2\x43\xf8\x34\xce\xff\xe5\xf6\xbf\x6f\xa9\x89\xfb\xa6\x9a\x28\xf5\x7a\x2b\x12\xb0\x1a\x1f\x71\xf6\xd3\x4d\x37\xa6\x11\x0e\x46\x98\xc6\x56\xa4\x5e\xd0\x3c\x7c\x06\xeb\x57\xc6\x9e\x52\x07\xb7\xe4\x27\x7d\x16\xc3\x21\x11\xc1\xfc\x88\xed\xa4\x6f\x62\xd0\xe8\xcb\x46\x12\x0f\xe1\x1a\x27\xb3\xc9\xc7\xa9\x71\xa6\xbf\x0b\x91\x7a\x85\x73\x5e\x52\xea\xfe\x4e\x16\x73\x93\x75\x6d\xab\xb2\x62\xb0\xca\x59\x3b\xa7\xe6\x45\x91\xec\xd5\x38\x89\xa7\xf0\xcb\x38\xdf\xa7\x7c\x70\xa8\x41\x35\xf8\xbd\xe2\x43\x5d\xea\x55\x83\xf3\x42\x39\xb6\x7d\x2c\x64\x22\xc0\x76\x4e\xcd\xd7\xe3\xf1\x3f\xb4\xde\x4d\xcd\x97\xb2\xb7\x87\x42\x04\x82\x97\x68\xb1\x7d\x2c\xdc\x8c\xf8\x8e\x76\xa8\x1f\xc9\x31\xe5\xff\x8b\x46\xb9\xb7\xe5\xd3\x59\x8d\xc5\xba\xec\x9c\x17\x1f\xff\x36\x8f\x7f\xd1\x68\x25\xb2\x95\x37\x68\xe5\x2d\x9c\xf3\xf5\x9a\xaf\xe8\xd3\x19\x0c\x41\x0b\x5b\x79\x83\x56\xde\x33\x1a\x8f\x6d\x0e\x29\x08\x86\x14\xb4\x93\x89\x4b\x62\xbf\xa6\xff\x2b\xfa\x53\x7d\xdc\x9f\xbf\x8b\x69\x6c\x83\xa1\x6c\xe1\x5a\x92\xb1\x3f\x96\xeb\x97\xb5\x89\x9e\xf8\x6c\xa8\x1f\x7e\xaf\xd2\xc9\x06\x7d\xed\xdb\x39\x79\x1c\xdd\x3f\xcf\xd7\x8f\x72\xa9\xe1\xb2\x38\x6d\x6d\xad\x06\xe4\x18\x43\xd6\xd2\xd6\xd6\x94\xb5\x35\x18\x11\x59\x8f\x3f\xe1\xac\x49\xc9\x90\xb5\x74\x1e\xbe\x54\x1e\xbe\x60\xf1\xbd\x74\x11\xad\x54\x11\xad\xe0\x6d\x58\x86\x22\xb5\x53\xd5\x77\x83\xe6\x9b\x0c\xf9\x50\x26\x4b\xee\x9e\xc1\xdb\xb0\x74\x1e\xbe\x6a\x10\x07\xbf\xd5\xe3\x32\xce\xef\x8a\xfe\x7f\xab\x5f\xf5\xf6\xeb\x9f\x71\xda\xa0\xfd\xa5\x3d\xff\x53\x9e\xff\xc1\xf4\x9e\xf5\x78\x19\xe7\xe7\xe5\x29\xfc\x31\xce\x7e\x92\x64\x52\x01\xd9\x6a\xb0\x9f\x0c\xe1\xfe\x5f\xd6\x10\xbc\x0e\x7d\x06\xad\x3b\xd5\x08\xe2\x1a\xcf\x76\xff\x14\x73\x8c\x50\x4b\x97\xdd\x4c\xa5\xfb\x0b\x5e\x8a\x25\x6d\xcb\x6c\xb0\x9f\x33\x84\x3f\xc6\x21\x6e\x98\x27\x26\x43\x77\xb7\xc9\x10\x86\xc2\xd5\x0f\xc5\x71\x32\xbf\xdf\x19\x57\xeb\xc2\x35\xfd\x0c\x2c\x0f\x46\x08\x66\xa8\xa6\x64\x35\x3e\xf6\xc3\xf1\xcb\xf8\x5c\x0d\xb2\xa3\xe8\x79\x99\x6e\xba\x9c\xe5\xa9\x2e\xe3\x5a\x9a\xce\x8b\x56\x31\xe6\x9b\xc9\x90\xf6\x5d\x0d\xb2\x7b\xb2\x1f\x19\x99\xd3\x46\x66\xfa\x60\x65\xdc\x1e\xff\x4d\x2b\x1d\x4f\x6f\x19\x72\xc9\x4c\xd6\x15\x2d\x9c\xfd\x2b\xf4\x21\x55\xab\x2b\x18\x21\x98\xd1\xdd\x7f\x57\xff\x27\xfb\xef\x4b\xe3\x61\x64\xdf\x19\xa2\xbf\x22\xfb\xaa\xb1\xd8\x0f\xe9\xdf\x3d\xbf\x5d\xf3\x3b\x38\xef\xca\xaf\x93\x4a\x5b\x17\xac\xcd\x57\x8f\x9f\x71\xf2\xc9\xd4\xfb\x5b\xcb\x8c\x97\x9b\xc1\x08\xb8\x8c\xe9\xe5\x3a\x79\xfa\x64\x7a\xc3\x74\x6d\xaf\x0c\x66\x93\x8f\x4b\xf3\x3e\x3d\xef\x70\x82\x2c\x7c\x0a\x7f\x8c\x93\xdf\x34\x5f\xb2\x0a\x54\x83\xfd\x5f\xa4\x43\x78\xbd\x30\x2f\x5d\x5c\x9a\xaf\xb0\x38\x90\xfa\xce\xbc\x35\x19\x61\x3a\x04\x7d\x11\xe8\x13\x96\x91\x5e\x8f\xc9\xcb\x9a\x10\xfd\xd3\xff\x8b\x3a\xd0\x67\xdc\xa2\x7f\xba\x9f\x54\x3f\x9d\xff\xbb\x2c\x6e\x16\x4f\xab\x21\x3a\xaf\xad\x79\x84\x19\xf5\x8c\xbb\x71\xbe\xb4\x2d\x65\x68\x5b\xe2\x69\x32\x6d\xad\x4c\x5a\x2b\x0b\xe7\x38\x9f\xd4\xbc\x3c\x54\xbf\x78\x79\x54\x8f\xff\x70\xcc\xd7\x7d\x73\x3c\xaf\xc5\xd3\x4b\xf1\xc4\x48\xb4\x8c\xd7\x74\x66\x04\x19\x4b\xbb\xd7\xa3\xbf\x57\xa7\xf3\x90\x9c\x79\xcd\x27\x0c\x1d\x38\x43\xeb\x45\x56\xc3\x0c\x96\x83\x3f\x43\xeb\x42\xbe\x83\xd5\xc0\x3c\xf2\x52\x29\xe3\x67\xf9\xf0\xe3\x76\x9b\x87\xf1\x65\xfc\x21\xce\xf1\xff\xcc\xff\x74\xed\x3f\xe9\xe3\x55\x8f\x8f\x71\x8c\x3f\x4f\xd2\xf9\xc7\x6d\xb5\x1a\x49\x1c\xf3\x9e\xde\x36\xf2\xa0\x9a\x45\x5f\xab\x7a\xbc\x8c\xdf\xc4\x31\x9e\x3c\x69\x6d\xad\x06\xe9\x4c\xbe\x4d\xa5\x51\xad\x06\xd6\x35\xf3\xcf\x65\x4a\xed\x4e\x9a\x15\x0b\xe7\xff\xca\x9a\x58\x0d\xf0\x15\x7d\x52\x33\x87\xfb\x67\x71\xa1\xb8\x49\x67\xd6\x08\x42\x83\xc7\xa4\xec\xc2\xb5\xde\x95\x1f\xab\xe4\x8e\xf0\x34\x4e\xba\xe1\xd8\x9c\xa9\xbc\x92\x49\x9f\xe5\x62\xe7\x26\xfc\x35\xfe\xf1\x7d\xd0\xd3\xf9\xae\x32\xe5\x54\x40\x5f\xd5\xb4\x6b\x73\x35\x06\xfb\xe1\xff\x2a\x1d\x77\x35\x40\x1f\x5e\x96\xa5\xf3\x3f\x25\xcd\x69\xed\x64\xde\xb8\xcc\x74\xff\x2c\x5e\x17\x5d\xf4\x97\x15\x2d\x65\x2d\x0b\xd6\x04\xcc\x4c\xd3\x39\xa9\x8e\xd3\x0c\x51\xaf\x77\xe1\x94\x63\x8c\x80\xcb\x94\xcf\x59\xd2\x99\xf8\x0c\x16\xf1\xab\xc7\x65\x7c\x13\xbf\x85\xbf\xc6\x3f\xe2\xfc\xdf\xe5\xef\x65\xad\xdb\x60\x48\x5c\x32\x8f\x12\x1b\x50\xd7\x3a\xe5\x43\x2e\x8f\x9f\x97\xf5\xd1\xbb\xfe\xd7\x74\x58\x2c\xcd\xcd\x6a\x0d\x99\x0a\x45\x4a\x26\x60\x6a\x67\xa6\xde\xdf\xee\x5f\x7c\xcb\x7d\xdc\x89\x99\x92\x89\x99\x4a\xcc\x9c\xc2\x6f\xe3\x93\xf8\x25\x7c\x1b\xe7\x77\x51\xad\x49\x55\x8f\xa8\x06\xe9\x43\x79\x6e\x5f\xe7\x94\xaf\x73\x30\x4f\x67\xa6\x8e\xeb\x49\xa7\xe7\x1a\x0f\xf9\x64\x7b\x5e\xb6\x0a\x5f\xcf\x29\x3c\x8c\x2f\xe2\x7e\x5f\xfc\xbc\x79\xfc\xe3\x6d\x58\x3d\x0e\xe3\x1c\x7f\xf0\x7f\x1f\x7f\x17\x13\x33\xb5\x43\x7c\xfb\xc4\x30\xce\xf7\xf3\x10\x1e\xc6\x93\xef\xff\xc1\xf5\xbe\xde\x7e\xfc\xb3\x1f\x7f\xc6\xe9\x7f\x3d\xcd\xcc\x6f\xd1\x58\xcc\x24\xf3\x35\xbb\xbf\x64\xf7\x21\x76\xff\x3c\x3d\xc8\xb2\xdd\xda\x21\x36\xfd\xfc\x19\x9f\x3e\xe3\xe2\xf4\x7c\x16\x07\xdf\xd6\xfb\x29\x3c\x8c\xf3\x33\xc4\xbe\x3f\x8f\x13\x11\x4f\x85\x73\x9c\x3f\x4f\xcf\x8f\xd5\xcd\x0f\xb1\xe3\x4f\x6a\x5f\xf2\x92\xa5\x1d\x62\x47\xb9\x54\x27\x6b\x33\x15\xce\x65\xf0\x93\xb6\x9b\xb8\x7c\x29\x1c\xfd\x2f\x6b\xe5\x4b\x5a\x39\x23\x04\xd3\xc5\x97\x52\xc5\x97\x82\x11\x82\xf5\xf8\x1a\x27\x3d\xc9\xa6\xeb\x48\xf7\x43\x2b\xc5\xb8\x8d\x4f\xe3\x41\xbc\x13\x97\x98\x5b\xc8\x4b\x59\xfd\x4c\xe2\xa2\x8f\xf2\x21\x05\x4f\xff\xb9\x54\xaa\xb6\x1a\x81\xf7\xc9\x8e\x36\x02\x57\x03\xcb\x80\x11\x49\x69\x23\x70\xd2\x08\xdc\x1a\xad\x1a\xb9\x2c\xa6\xd7\xa9\x79\x89\x21\xfc\x32\xce\xf1\xe0\x34\x9c\xeb\xd2\xb2\xa1\xb5\xf6\x0c\xa6\xfd\xcc\xa5\x44\x12\xd5\x20\x9f\x70\x99\xad\x8b\xa7\xc3\x64\x82\xa2\xd6\x58\x1a\xb6\x1e\x97\xf1\x4d\xdc\xef\xbf\xc6\x7f\xec\xe7\x26\x2e\x75\x7c\x5d\x2c\x9d\x3e\x26\xc7\x73\x4b\x7d\x5c\x37\x4f\xe1\xbc\x2c\x4b\x17\x53\xaa\x46\x67\xff\xa4\xcf\xed\xf1\xdc\x1a\x0f\xf9\x79\x59\x3d\x5d\x54\x4f\x1b\x5d\x89\xeb\xf1\x31\xfe\x12\xe7\xf7\xaa\x4a\x44\x35\x20\xd6\x07\xd5\x02\xd6\x4a\x62\x83\x74\xe0\x76\x65\xab\x70\xca\x2a\xdc\xe8\x62\x9c\x4b\x3e\x76\xd5\xc0\x77\xcd\x83\xff\x3b\x4c\xff\x41\x6b\x07\xad\x02\xb9\x14\x69\x9b\xf4\xdd\x6e\x8d\x56\x90\x74\xf1\xa2\x94\xcb\x76\x4c\xaa\xc5\x6b\x7a\xbe\xa0\x5f\xb6\x76\x72\x7d\x2d\x5d\x1e\x55\x83\xf4\xe7\x3a\xb2\xb5\xb8\x1a\xa4\x9b\xf8\x47\x69\x15\xab\x81\x79\x99\x3c\x96\xd8\x05\x3b\xe5\x82\x1d\xbc\xbc\xab\x5d\x43\x74\x40\x4d\xbd\xd6\x4e\xf1\x73\xba\x9f\xe4\x7a\x39\xc5\x27\x99\x1a\x4f\xd2\xca\x38\xf5\x5d\xf2\x2d\x4b\x15\x1d\x0a\x46\x20\xd6\x66\x21\xfa\x30\x51\x42\x30\x02\xb1\x1e\x87\x71\xce\xaf\xf8\xd9\xea\x26\x8b\xfc\xb4\xc6\x22\x24\xb9\x1e\xaf\x6b\xc8\xd9\xd6\x9a\xf8\xf0\xd1\xf6\xc9\x2a\x40\x85\x93\x0f\x1f\xc9\x49\x9a\x45\x5b\x6b\xe2\x1f\x25\x4a\xa8\xc6\x45\xfc\x12\xee\xf7\x97\xde\xef\xc2\x3f\xe3\x3f\xe2\x1c\xcf\x6b\xba\xc9\xda\xc1\xec\xff\xb9\x5e\xcb\x19\xfa\xb4\xb5\x46\x35\xda\xd6\xd0\xa4\x35\xb4\x60\x8e\x5f\x69\x78\xab\x11\xc4\xf1\xbf\xfb\xd0\xfa\xda\x87\xfe\x97\x72\x72\x1f\xa2\xcf\x3e\xa0\x8e\xb7\xc6\xff\x75\xe2\x9e\x6a\xb0\x7f\xca\xb7\xed\x63\x21\x9d\x74\xcf\x98\x94\x0f\x5b\x35\x2b\x93\xd6\xbe\xd6\x1a\x8f\x55\x5b\xb7\x2e\xd5\x20\x1d\x68\x5d\xd8\xba\x75\x49\xfa\xd4\xb6\x46\x9f\xda\x74\x75\x96\xa4\xb3\x6c\xe1\x37\x71\xcd\x3b\xab\xb0\x14\xce\x71\x2a\xaf\x58\xd2\x29\xf6\x0c\xa6\x45\xad\x47\xf5\xdf\xd5\x3f\xd5\x8e\xad\xcb\xdf\x6a\xf0\x7b\xf5\xbe\x7c\x86\xaa\x81\x71\x5e\xdc\x1f\xf7\xf4\x78\x26\xc7\x23\x73\xc0\xd6\xe5\x6c\x32\xc1\x4a\xe1\x1c\x8f\x6e\x63\x92\x65\x57\x6a\x5a\xf4\xbe\xfb\x67\xb1\xaf\x60\x2d\xcb\xdc\x72\xda\xa9\xc6\xc3\xf7\x89\xeb\x92\x34\x59\xce\xa4\x35\xfa\xb6\x96\xd6\xa1\xf7\x99\x17\xb3\xd1\x87\x35\xf7\xf2\x7c\x31\xd4\x20\x42\xe3\x59\x1e\x27\xcc\x87\xad\xb1\x06\x65\xee\xa5\x63\x2d\xcb\x9f\x9c\xc1\xc8\xcd\xa4\x11\x91\x8d\x8f\x78\x08\x17\x3d\x91\x76\xbb\xd8\x8a\xdf\x65\x75\x6a\x4b\x9d\x62\x88\x52\x6e\xe5\xb3\xac\xc6\x8f\xef\x73\x3c\x4a\xa3\x9d\xac\x56\xd2\x1a\x7d\x52\xd3\xd5\x4a\xaa\xf1\x12\x67\x3f\xb2\x56\xa6\xaa\x95\x84\x8e\xb5\xfb\xf1\x3c\x3e\x9c\x47\x26\xd0\x49\x27\x22\x49\x26\x22\x29\x5c\xef\x9b\xfe\x8f\xe6\x97\xfb\xc5\xf6\x71\x71\xeb\xb8\x18\x54\x97\xed\x33\x9a\xf4\x19\xad\xf7\xb9\x8e\x3e\xc9\x79\x56\x07\x69\xed\xca\x3f\x58\xbf\x96\xd3\xdf\xad\xd5\x71\x3a\x69\x03\x6a\xc7\xda\x52\x3b\xaa\xc1\xed\x47\x68\x33\x7a\xfd\xf7\x3f\x17\x6f\x3a\x96\x0b\x4b\x2d\x16\x96\xba\x07\x4e\x02\xcb\x75\xa5\x16\xeb\x4a\x31\x06\x61\xb9\xaa\xd4\x62\x55\xa9\x9b\x4e\x38\x6b\x4b\x3f\xa9\x06\xe8\x6f\x34\x8d\x16\xf5\xdd\x31\x8f\xde\x8b\xf1\x0f\x2a\xb7\xbc\xb6\x54\x96\x6a\xd4\x52\xfc\x87\x7a\x70\x35\x03\x37\x9d\x78\xea\xe9\x31\x5c\x3d\x43\xeb\x59\x5b\xc9\xb3\xd7\x86\xf1\x91\xfe\x76\xf5\xe0\x8e\x8b\x39\x6f\xfa\xf5\xd4\x93\x7b\xae\x3d\xe7\x62\x39\xb6\xe5\x32\x58\x8b\x22\xac\x81\x1f\x17\xc5\x18\x1b\x18\x46\x77\xd7\xa6\x46\xa9\x11\xf7\x10\x45\x4f\x13\xfa\x24\x45\xc7\x29\x78\x1a\x4e\xfc\x63\x08\x16\x3d\x20\x13\x6f\xfa\xf9\xd4\x53\x37\x3c\x0b\x9e\x97\xe0\x34\x8c\x91\xcc\x21\x58\x23\xc1\x79\xfa\x66\x95\xa6\x7a\x1a\x86\x41\xeb\xd0\xdb\x5b\xd3\x45\x35\x6d\x1c\x42\x3d\x3e\xd8\x62\x86\xfe\x90\x27\xe0\x6a\xa0\x8b\xe4\xa8\x9b\x59\x8c\xb1\xde\x63\x08\x4d\xa3\x35\x2f\x1a\x73\xf3\x17\x36\x30\xcd\x3c\x48\x6a\xe5\x2e\x5f\x4c\x9f\x76\x33\x2b\x42\x3d\x75\xc3\x1b\xb0\xfe\x30\x1f\xc3\xd5\x75\x1c\x42\x35\xe5\xf0\xb2\xa5\x31\x79\x6d\x59\x3d\xab\x51\x53\x3e\x4f\xf5\xbc\xc2\x70\xad\xee\xe8\x42\x5f\xa3\x35\x89\x53\xab\xa5\x99\x99\x70\xe1\x46\xfb\x71\x3d\xb8\xe7\xe2\xaa\x9b\xb7\x1f\xf5\xe4\x31\x17\x33\xdd\x54\x67\x96\x6b\x92\x2d\xde\xba\xd1\xd6\xbc\x7c\xd5\xb6\x14\x18\x93\xa4\x86\xca\x3c\x2f\xde\xac\xdd\xd4\x7c\x96\x53\xb6\x2d\xa6\x6c\xbb\xe7\xd5\x04\x6b\xd0\xc8\x25\x73\x33\x24\xb9\x9e\xa6\xe1\x28\x16\xbb\x84\x2e\xa3\xa0\xff\xad\x3e\x24\x3d\x98\xb6\xed\x3a\xba\xd0\x66\x14\x3d\xdf\x21\xb8\x1b\xc6\x17\x6a\x61\x28\x51\x68\x35\xf0\x87\x7e\x59\xb4\xc3\x65\x1f\xb3\xae\xd5\x83\xbb\xc0\x8a\xd3\xa4\x5c\x5e\x5a\xb8\x09\xbc\x98\xa1\xb8\x9e\x1e\xc3\x6f\xbd\x9c\x42\x3f\xa3\xf8\x12\xc9\xbb\x3b\xc4\x49\x77\x80\x93\x7a\x08\x9e\x86\xc1\x49\x5a\x87\x4a\x17\xb0\x58\x02\xee\x92\x64\xd3\x05\xe2\xda\x70\x04\xa1\x17\x5e\x3d\x5c\x46\x31\x2b\x5a\x9c\xb7\x29\x7a\x93\x47\x67\x13\xfc\x1a\x06\x2b\x4d\x75\x6d\xd1\x86\x53\xc2\xcd\x9c\xef\x6b\xdf\x16\x62\xf0\x48\x63\x6e\xbd\xe5\xb0\xa0\xb5\x6f\x72\x58\x70\x0e\x6f\xee\xac\x8b\xb9\xee\x2e\xc9\x52\xa5\xc9\xaf\x06\x7a\x16\x97\x2a\x54\x68\x31\x54\x48\x95\xb5\xd7\xee\x5e\xb3\x3d\xd0\x75\x76\xc1\xb7\xe1\xea\xfa\xf6\xcb\xcb\x68\x91\x3a\x0e\x4e\xb8\xbc\xb8\x17\x55\xa7\x3b\xb4\x68\xbb\x17\x2d\x0c\xed\xaa\xa9\xbd\x9c\x50\xaf\x1a\xe8\xe4\x54\x27\xe6\x3c\xa8\x57\x97\x58\xac\x5b\x58\x75\xc8\xfa\xd0\x9c\x77\x93\x09\x57\xb9\x8c\x66\x59\xbc\xce\x65\x03\x3d\x6b\xc5\x29\x58\xa9\x1a\x0d\xf0\x14\x7c\x19\x2e\xd6\xeb\x7e\xd9\xa3\x03\x99\x42\x4b\xae\x7b\x7d\xa2\x06\xce\x25\xa1\x3e\xcc\x63\xc8\xd0\x7f\x49\x3a\x0e\xd3\x6e\x14\xed\xee\xd0\x3a\x94\x37\xcf\xa2\x62\x78\x49\x3a\x0e\x93\x14\x01\xbb\x77\x68\x12\x87\xd7\x32\x22\xaa\xee\xd0\x9e\x3a\x2c\x1e\x71\xd8\xbb\x43\xf3\xa2\xc2\x39\xd5\xa8\xae\x79\x12\xad\xa7\xc7\x70\x0d\x7a\x1e\x42\x45\x25\xd8\x3d\xef\xb8\xd5\xb5\x29\x8d\x10\xad\x3b\x44\x0f\x19\x41\x17\xf3\x0b\xde\xa1\x5d\x4e\x77\x1b\x8b\x11\x5c\xd7\xa9\xe5\x3c\x2c\x37\x71\xb8\xbc\xc3\x74\x32\xa3\xe2\x66\xe3\x62\x59\xce\xe5\xd4\x84\x8b\x2a\xf1\xa5\x9d\x61\x78\xf1\xc3\x77\xfe\x8e\x31\xff\xa0\xf6\xec\x69\x3e\x86\x1a\xcd\xab\x93\xb5\xa7\x77\x5d\x64\x3b\xbc\x43\x7f\x31\xad\xde\xe0\x46\x45\xd5\xba\x97\xef\xf9\xab\x81\x7f\x9e\xe4\xc1\x69\x45\x06\xf7\x2c\x97\xb6\x51\x39\x4f\x55\x03\x13\x17\xb7\xe0\xcf\x30\xfa\x48\x12\x5d\x36\xdd\x6a\x60\x20\x92\x68\xd3\x12\x74\x92\xe8\x5a\x7d\xd3\x44\x9f\xe4\x7a\xed\xaf\xd3\x5c\x0f\xbf\x82\x4b\x1b\xf7\xf4\xf6\x83\x8c\x8b\x77\x4a\xc0\x4f\x2b\x2d\x28\xba\x48\x4f\xd5\xb5\xa7\x89\x8b\x43\xf9\x4d\x93\xff\xda\x61\xea\xe1\x70\x7e\x69\x74\x11\x97\xd1\x1b\x22\xbb\x0b\xee\x86\x8b\x7a\x79\xfa\xed\x69\xb8\xfe\x50\x9f\x12\x16\x96\xb8\x35\x62\xb2\xc4\x7a\x18\x46\x31\xe6\x73\x0a\x4e\xc3\x18\x9d\x56\x7b\x58\x84\x22\xac\xe0\xe6\xfd\xc2\x62\xa2\x48\x36\x2e\xc0\xfa\xc7\x75\x1b\x06\xb3\x5d\x7e\x7b\x19\x46\x27\x5a\xd8\x61\xb5\x07\x89\x3c\x6e\x89\xae\x30\x4d\x11\x17\x77\xf3\x26\xa2\x9e\xfc\xe5\xd8\xd2\x79\x11\x51\x4f\xfe\xf2\xa2\xf9\x6d\x9a\x5a\x11\x44\xd9\xa5\x3b\xb5\x56\xd3\xa4\x86\xfd\xe2\x16\xf1\xd2\xa4\x46\x24\xdd\xad\x05\x92\xde\x95\x60\xd3\xb8\x45\x8e\xb4\x10\xc0\x7d\x9a\x8a\x84\x2f\x86\xd2\xb1\x01\xe2\x69\x37\x4e\x0b\x01\x94\x71\xb8\x45\xa4\xb4\x8e\x84\xc0\xf4\x5b\x22\x31\xbd\xcf\xc3\x93\xe4\x3a\x3d\x64\x8b\x06\x64\x2b\xb9\xb3\xfb\xed\x30\x9c\xff\xfd\x0f\x43\xb6\xea\xe1\x35\x5a\x63\x4e\x29\x92\xe9\xed\x1f\xce\x73\xb7\x64\x62\x5a\x34\x23\x70\xe3\xce\x21\x6a\x58\x5e\xe0\x4a\xe2\xce\xe1\xb7\xfd\x87\x1b\x7f\x38\x84\x6e\xa3\xf5\x81\x9a\x93\xb4\x56\x90\xa4\xbe\x14\xeb\x65\x81\x80\xb8\xfa\x9b\xb9\xf7\xeb\xe9\x36\x5c\xe4\xbf\x8d\xa6\xd1\x85\x97\x6f\xc1\x8f\xe1\xfa\xc3\xdb\xa8\xfe\x10\x21\xf7\x77\x4a\x09\x5f\xd6\x0a\x16\x79\x57\x8b\x76\x99\x77\x17\x79\x57\x2b\x6e\x59\x1e\xe0\xd0\x7c\xa7\x16\xd1\xf2\x96\x8e\x80\x90\x4e\x3f\xbe\x7a\xf2\x40\x70\xd4\xd0\x96\xb9\xfd\x89\x48\xd5\x72\x9d\xda\x1c\xb7\x57\x2d\xae\x31\xfa\x21\x66\xda\xfe\x18\x1c\xc7\x19\xff\xb6\x7c\x06\x5f\x1b\x91\x26\xb7\xf6\x82\xed\x55\x0b\xcb\x57\x3f\x9a\xfe\xd0\xbb\x0f\xea\x5e\xdd\x9a\xf0\xed\x45\x8b\x5b\x8e\x7e\x88\x3d\xb6\x19\x0f\xbe\x8a\xd7\x29\x6d\x6d\x9b\x1e\x70\x55\xec\xb4\xe9\x2f\x9f\xed\xd7\xc6\x15\x47\x3f\x34\x31\xdb\xcb\x13\x81\x2a\xfd\xd0\x14\x6c\x93\x09\x27\xfe\x7e\xe8\x60\xb8\xbd\xa5\xe3\xe4\xdf\x0f\xd3\xc9\xeb\x13\x89\x4d\xfb\xa1\xf5\xf2\x78\x7d\xc2\x77\xbb\x1f\xa2\xc8\x63\x0e\x81\x39\xef\x3a\x87\xe1\x69\x18\xdf\x9e\x42\x97\xd1\x07\x7d\x84\xe0\xcf\x30\xfe\x51\xba\xe7\xe3\xf5\x0c\xff\xc8\x7e\xb8\x6b\x93\xf5\x29\x81\xd6\x0f\xf7\xed\xc5\x08\xfb\x43\x3f\x74\xbc\x79\xbc\x37\x20\x21\xc2\x2d\x56\x7d\x4c\x3f\xd8\x00\xfb\xa1\x5d\xe0\x31\xfd\xe0\x60\x7e\x4b\xf7\x7c\x4c\xa7\x87\x74\x12\x4f\x3e\xe6\x32\x24\x3a\xbf\x75\xc8\x7a\xad\xfa\xbc\xdc\x59\x2f\xa1\x61\x34\xb1\x83\x0a\x5d\x46\x31\x64\x6d\x67\xaf\x75\x1c\x18\x1c\xfb\x29\x6d\xf2\x35\x39\xe0\x66\xd5\x4f\x6d\x19\xaf\xc9\xf1\x52\xc7\xd1\x56\xfe\x5a\xbc\xe1\xb2\xfd\x96\x56\xfb\x7a\x17\x86\x4b\x56\x3f\xa5\x63\xbe\xde\x1a\x70\x03\x4f\x6f\xf7\xe5\xb2\xb0\x8b\x65\x61\xfb\xa9\x43\xc8\xeb\x4d\x18\x41\xba\xaa\x19\xbe\xf6\x6b\xcd\xe7\xa5\xe6\x33\xfd\xb6\x3f\x06\x2c\x79\x36\xfd\xa3\x25\xd9\x4b\xcd\x47\x2a\xc5\x6b\x4e\x45\x96\xf6\x7e\x4a\xfe\xbe\x16\x70\x2f\x04\x5c\x8e\xbf\x68\x3e\xaf\xb7\x74\xa4\x1e\xea\xa7\x0c\x2d\x9f\xc5\x00\x12\xbe\xf7\x53\x47\x89\xcf\x62\x00\xa1\xc4\xfd\x94\xbe\xf9\x59\xd4\xa1\x3a\x49\x3f\xa5\x6f\x7e\x56\x7d\x60\x8c\xea\xc7\x29\xf4\x32\x0a\xbd\x40\x2c\xf8\x59\x3c\xc0\xdf\xad\x9f\xda\x97\x3e\x0b\x02\xf8\x33\xf4\x53\x0b\xea\xf3\x8a\x47\x75\xb7\x6e\x41\xf0\xf9\x5c\x84\xf4\xb5\xd7\xa9\x03\xf9\x67\xc1\x88\x48\xa9\x7e\x6a\x45\x7d\xe6\x7a\xb8\x42\x5c\xa7\x18\xee\x33\xdb\xe3\x2a\xb0\x33\x83\x7f\x3d\xb9\x6f\x52\x5d\x2b\xea\x33\xd5\x71\x41\xd8\x0f\xbf\xbc\x8c\xe2\x1f\xb5\xa2\x3e\x4b\x0d\xc4\x68\x75\x4f\xff\xcf\xd4\xfe\x91\xac\x9a\xe7\x9f\xc5\x03\x22\xb7\xba\x34\x83\x9f\x19\xff\x27\x62\x13\x35\xad\x51\x65\xb7\xfb\xcb\x7f\xa6\xea\x8f\xcb\x41\xc7\xb9\x9f\x55\x25\xc4\x70\xf4\x53\x8c\xff\x33\xb1\x7f\x64\x7c\xb1\xf8\xcf\x8c\xff\xa3\x4e\x24\xfb\xc2\xcf\x3b\x38\xb2\x33\x76\x6d\x09\x3f\x6b\x4a\x08\x1f\xeb\x4d\xb3\xfe\xb3\xa6\x84\x8b\xcd\xde\x8c\xfa\xc3\xc1\xf7\x4d\x47\x8f\x9f\x35\x25\x14\x83\xe9\xcd\x5f\x6e\x11\xf3\x03\xaf\xb2\x84\xc5\xb6\xa3\xe2\x66\x58\x38\xcb\x87\xee\x50\x34\x5a\x35\x36\x5e\x4e\xc1\x9f\x61\xf4\xe1\xb7\x29\x36\x36\x43\xc2\x3b\x7d\x2c\x37\x5d\x16\xd9\x40\x27\x4d\x9d\x50\x6c\x6c\xfa\x2a\xd2\x03\x62\x87\xe2\x5e\x36\x93\x07\x77\x96\x04\xa8\xa7\x34\x8c\x3e\xb0\xdd\xd4\xd3\x6b\x18\x03\xb9\xf5\x8f\xdb\x03\x01\x97\xd1\x5c\x58\x4f\x61\xb8\xe4\x57\x3b\x34\x6c\xb2\x59\x35\xd0\x77\x77\x27\xee\x9b\x84\xea\x1c\xf6\x69\x42\x21\x8d\xa4\x0a\xa3\xd7\xd3\x6d\xb8\xd7\xd7\x0c\xa1\xc3\x28\x06\x32\x0c\xff\x04\x93\x50\x43\x5d\x73\x51\x6f\x7a\x41\xd2\xc7\x63\xbb\xb4\x71\x35\xf0\x87\x33\x04\x77\xc3\x98\xde\x38\x04\x4f\xc3\x75\xa0\x63\xb2\x9b\x7a\x4a\xc3\x0b\x6f\x1b\xd6\x1c\xc0\x7f\xa7\xf3\xfe\x65\x33\xe4\x9e\x0d\x50\x24\xf5\xf6\xfe\xf7\x76\xcd\x98\xa8\xaa\x48\xa2\xcd\x80\xfc\xce\x3b\x96\x1d\x0a\x24\xaa\x46\x75\x7d\x1d\x87\xe0\x6e\x78\x01\x6e\x82\x1f\xc3\xe8\xfa\x16\x2a\x3a\xc1\x26\xd9\x3b\xa9\xa7\xb2\x0e\xd5\xb8\xd1\x45\x0a\x1e\x86\x27\xf8\x49\x3d\x67\x18\xae\x3f\xec\x7e\xf9\x35\xfa\xe1\x65\xfd\x61\xfa\x0f\x21\x11\xa1\x06\xd4\x83\xc7\xbc\xd8\xf3\x14\xec\x9e\xb1\x74\x87\xd1\x6d\xb4\xc8\xa1\xa9\x55\x3c\x40\x35\x6a\x6a\x67\x17\xea\x21\x83\x4f\x79\x7d\xb4\x43\xc1\x00\xd5\x00\x8d\x9a\xbe\x64\xbb\xe7\x9a\x07\xba\xa0\x6c\xbb\x86\x56\xe3\x87\x97\xf9\x25\x97\xd9\x14\x2e\xa2\xfd\xd2\x5a\xbc\xcc\xa6\x70\x18\x65\xb9\xd9\x7a\x98\x46\xeb\x4b\xe2\x12\xba\x8c\x62\x81\x5e\x1c\x86\xaa\x52\x54\xa3\x26\x25\x86\xd0\x66\x14\xff\x77\xe9\xff\xbc\xf6\x91\x05\xa1\x5f\x57\x0a\xf6\x1f\xd6\xec\xf4\x30\x9a\x46\xf1\x29\xb7\x46\xb7\xfc\x87\xb5\x5f\xf5\x34\xea\x2e\x6a\x1a\xfa\x25\x6e\x94\xcb\xc1\xa6\x87\x6b\xa7\x5d\xaa\x9e\x44\xa5\x8b\x54\x12\x83\xdd\xa1\x51\xc3\x26\xd9\xaf\x69\x38\x0c\x17\x3d\x72\x08\xdd\x46\x8b\xfe\xe2\x73\xd5\x52\xaa\x06\x38\x49\xeb\xf0\x36\xeb\xc2\x54\x39\xc4\xfd\x72\x58\xd8\x74\xac\xed\x97\x96\xe1\x6d\x1e\xc5\xbd\xe9\x90\x5c\xba\xd3\xff\x57\xcc\x3a\x0e\x52\xf4\x36\x35\x6e\x18\xe9\x9a\x66\xe5\xb6\x94\x40\x16\x55\x3a\xf0\xd4\xc3\x30\x8a\xef\x0b\xf7\x91\x86\xc1\x60\xa2\xff\x6d\xd6\x85\x09\x74\x9c\x7f\xb8\xec\xda\xce\x76\xbe\x03\x86\x51\x15\xc4\xaf\x27\x7f\xe9\xc6\x78\xf4\xc7\x7b\x1a\xad\x0f\xd5\x76\x72\x5b\x00\xdf\x10\x37\x57\x1a\x7e\x0c\xc3\x20\x7c\x71\x72\xba\x39\x1b\xb7\xc7\x4c\x12\x5e\x0f\xdd\x68\x51\xf6\x96\x5c\xe9\xe6\x6c\xd4\xfb\x66\x50\xfc\xb6\x3b\xf2\x66\x26\xf6\x7e\x1f\xee\xf9\x31\xfc\x03\xac\xb7\xcd\xf0\x70\xfb\x60\x00\xfd\x76\x7e\x8c\xcd\xfc\x18\xe3\x3a\x84\x0e\xa3\x45\xf0\x5b\xbb\x6b\x37\x67\x23\xcb\xd3\xc5\x7a\x4c\xf5\xf4\x19\xc6\x1f\x9e\xfa\x96\x25\xd1\x89\x94\x4f\xfd\x3e\xbb\xe0\xcb\xf0\x8d\x4e\x34\x6a\x4b\x27\xd8\x67\x55\x89\xbf\x9e\xfc\x31\x8b\xe6\x74\x7d\xcc\x16\x9f\xc0\x65\x5a\xf5\xf6\xb7\xb3\x71\x54\xa3\x26\xe6\x32\xba\x8c\x72\xd8\x29\xd8\xc3\xae\xc5\x74\x31\xa6\x61\xc7\xf0\xc4\x20\x85\xc7\xd0\x52\x1f\x71\x19\xc5\x1f\x5e\x97\xe0\x30\x5c\x7f\xa8\xbd\x6e\x58\x83\x80\xdf\xe8\xd0\x98\x87\x89\x3a\x48\x54\xc9\x85\x61\xa2\x22\xef\x6d\xbf\x6f\xf5\x6c\xd1\x0e\xe3\x6a\x67\xa0\x70\x3d\x2d\xc3\xa0\x75\xd7\xdb\x56\x15\x60\x2e\xed\xb7\xf6\x87\xb1\xbb\x61\xfc\xa5\x76\xf9\x61\xc9\x0c\xc3\xa8\xaa\xeb\xef\x98\xfe\x72\xd8\x38\x55\x2c\x7f\xdb\x6b\x7c\xd3\x4d\xbc\xb3\x1c\x43\x3d\x3d\x86\x6b\x5d\x77\xa3\x9f\x51\x74\x2d\x21\x3c\x4d\x11\xb8\xfc\xf4\x3b\xf4\x8f\x96\xab\x30\x7d\xf6\x5b\x0b\x7b\x5a\xa7\x82\x7f\x39\x13\xc4\xef\x98\x96\x0d\xb0\x75\xf6\x3b\xd5\x87\xf7\x2f\xd8\x3a\xc7\xb8\x85\x2e\xa3\x1b\x9b\xbc\xfb\x78\x0d\x7f\x80\xf5\x89\x26\x1f\x2c\x9f\x2a\x9b\xbf\x63\x9a\x9d\x60\xf9\x1c\x23\x84\xfa\x13\x41\xbd\x2e\x76\x0f\x53\x0f\xc6\xce\xde\xc5\xee\xe1\xad\x0a\xc6\xce\x21\x9a\x86\x35\x2a\xd8\x3a\x7b\x97\x08\x09\xaf\x68\x64\xef\x52\xb9\xfc\xed\x12\x01\x9b\xd9\x53\xc6\x74\xcf\x9f\x51\x8c\x43\x22\x24\x4c\x6a\x38\xdb\x77\xeb\xc0\xe1\x85\x0e\x5f\xfb\x21\xf5\x2b\x4c\x53\x58\x3e\x55\x27\xbf\x9e\xba\xe1\x01\xf8\x16\x3c\x0d\x43\x2b\xf3\xc7\x58\x0e\xc3\x20\xda\xad\x35\xca\x20\xba\x59\x5d\xfe\x6a\xda\x95\xc2\xda\x02\x62\x70\x7b\xbf\x0d\xfb\x6b\x48\x55\x6d\x84\x69\xfd\x0b\xbe\x59\xbd\x6b\x23\x4c\x2f\x47\xe4\x11\xbb\xac\x36\xa6\x59\x15\x9e\xcc\xdd\x0a\x58\x9a\x55\x93\x77\x72\xe1\x4e\xb4\xb9\xc1\x0e\x7a\x59\x6d\x4c\xeb\x00\xb0\x83\xf6\xae\x45\x23\xaf\xaf\xcd\x2a\xf5\xbd\x8b\x1b\xd2\xeb\x14\x29\x05\x3a\x23\x90\xb7\xab\x1f\x54\x03\x9d\x88\x54\x69\x66\x85\xa5\x73\x68\xc7\x4a\x53\x0a\x61\xc0\xbd\x7b\x7c\xde\x7c\x60\xbc\x1c\xda\x92\xd2\xf4\x4b\xf2\xaa\x34\x97\xf4\x9a\x86\x17\x4e\xef\xa1\xe1\x59\xdb\xca\xda\x86\xe8\xf9\x57\x0f\x1e\x34\x89\x9d\x1c\xf4\x32\x0b\x2f\xb2\xb0\xde\x5e\x66\x61\xf8\x6f\x0f\xad\xbb\x65\xbd\x0a\xee\x3d\x17\x6f\x9a\xeb\xe9\x31\xcc\xae\xf9\x89\xcb\xbb\x0f\x22\x07\x87\xb4\x8e\x65\x52\xc3\x03\x48\x75\xfa\xeb\xa9\x1b\x1e\x80\xf5\x8f\x56\xb7\x60\x0a\x9d\xc7\x29\xf4\x35\x0a\x4d\xf5\x50\xd7\x56\x30\x60\x20\x9d\xee\xc2\x8c\x0d\xd7\xef\xf9\xef\xdd\x30\x0a\x15\x58\x2b\x7a\x59\x86\x20\x7a\x71\x6a\x13\x54\x62\xd3\xcd\xd4\x3b\x7d\x68\x9d\x2f\x8b\x10\x54\xef\xed\x56\x15\x96\x25\x30\x0d\xae\xd6\x15\xb6\x35\x36\x78\x86\xab\x90\x7f\x3d\x85\xe1\xac\x7f\xf4\xcb\xcb\x28\xfa\xd0\xde\xb3\xad\xb2\xc1\xed\xa9\xb3\x9e\x42\x3d\x89\xab\xe1\xf5\x34\xdb\x1f\x12\x0d\xd4\xbb\x97\x7f\x54\xeb\xc9\xe7\x99\xed\x89\xa0\x9d\x76\x48\x1d\xde\x56\xf4\x60\xa7\x9d\x92\x30\xdb\x13\x01\x3b\xed\x94\x82\xb1\x97\x98\x07\x31\xe4\x53\x02\x66\x5b\x64\xc0\x13\xbd\x0f\xed\x6e\xdb\xaa\x1b\x3c\xb0\xa6\x04\xc9\xf6\xa9\x03\x8e\x58\x53\xfb\xe6\xb6\x12\x06\x2f\xc9\x29\x31\xf2\x98\x85\x91\x31\x68\x6a\x4f\x7f\x4c\x6e\x9a\x62\x59\x72\x61\xc7\x63\x71\x01\x87\xca\x3e\x24\x73\x1e\x4b\x61\x5a\x57\x87\x64\xce\x63\x16\x86\x99\x95\x79\xd1\xeb\xe1\x32\x5a\xdf\xa7\x53\xf7\x63\x56\x85\xed\xb5\x7b\x0b\x7b\x2c\x43\x10\xa0\xda\xc7\x70\xcf\x9f\x61\xfc\xa1\xf6\xb0\xc7\x32\x04\x7e\x9a\x7d\xe8\xd8\xfd\x98\x87\x61\xc0\xed\x43\x67\xb3\xc7\x4c\x4c\x73\xee\x98\xfa\x74\x2b\x50\x0f\xfd\x00\xc4\xae\x8f\x15\x28\xe4\x2d\xef\x0c\x38\xde\xf1\x58\x8a\x3c\x64\x57\x6d\xdf\x8f\xe5\x05\xe2\x5d\xfb\x90\xcc\x79\x4d\x6c\x14\x3e\xee\x16\x67\xaf\x37\x26\x84\xd1\xf7\x29\x66\x7a\xbd\x03\xbd\xa0\x94\x3e\xf2\xf5\xf1\x00\xf6\xd7\x29\xa9\xfa\xe6\xbf\x2e\x8a\x11\x24\x54\x5f\xaf\x69\x1a\x63\xbd\x22\x5f\xb3\x18\x8c\xb1\x53\xa2\xf6\xf5\x3a\x45\x35\xe5\xa9\x0f\x7c\xfd\xdd\xb4\xae\xd2\x79\xa7\x9e\xba\xe1\x01\x58\xc3\x30\x39\x68\x11\x9d\x3a\xd9\x7e\xfe\x6e\x04\x14\x4c\x11\xe9\xf3\x9e\x04\xcb\xe8\x94\x8a\xf3\x59\x75\x87\x61\xb4\x7b\x59\x7c\xde\xa5\xe1\x93\xd7\xa7\xd6\xf4\xe7\x05\xf7\x61\xc1\x4d\xad\xe9\xcf\x3a\x22\x0d\xa2\xf3\x72\x27\x8f\x61\xcc\xad\x3b\x31\x99\x60\x19\x9d\xda\x37\x3e\x6f\xf5\x70\xb7\xed\x53\xba\xea\x67\x21\x47\x7b\xe8\xd4\xd2\xf8\xac\x28\x21\xb4\xb8\x4f\x2d\x8d\xcf\x52\x8e\x86\xcf\x29\xf5\xf3\xb3\xa2\x04\xc3\xe7\x75\x79\x7c\xde\xd3\x3f\x92\x4f\xec\xfe\x33\xf9\x10\x9e\xdc\xcd\x09\x3f\x6f\x33\x28\x08\x3a\xb5\xcd\xfc\xac\x29\xc1\x02\x7a\x5d\xb7\xfb\x48\xc3\x0b\x7d\x84\xe0\x6d\xb8\xb8\x49\xdb\xcc\xcf\xc4\xfe\x91\xd8\x5a\x1a\x3f\x33\x24\x72\x54\x86\xd8\xf4\x67\xd6\x43\x2e\xac\xeb\x12\x41\x7e\x26\x1f\xed\xa1\x53\x4a\xd8\xcf\x8b\xf1\x47\xaa\x8a\xcd\x7e\x96\x6f\xb4\x7c\x4e\xe9\x27\x3f\x6f\xf4\xb0\x7c\x5e\x97\xc4\xd3\xcf\x02\xee\x47\xf7\x1b\x51\xf5\xe7\x9d\x1e\xb9\x2f\xfb\xd4\x96\xfe\xf3\x62\xa4\xe9\x93\xf5\x51\x76\x1e\xd2\x94\x12\x9e\x98\x9d\x19\x8d\xb6\x33\x74\x6d\x66\xe8\xba\xe8\xd3\xba\x5d\x15\xa7\x1a\xe8\x9b\xdb\xb4\xf3\x73\x55\x83\x5e\x43\x86\x7f\x82\x4b\x06\x06\x6d\x52\x69\x43\x29\x4b\xe9\xf4\x38\xd4\xb5\x84\x5c\xd2\x50\x1a\xa7\xc6\xa7\xed\x21\xe1\xa2\xd9\x83\x2b\x2f\x55\x74\xbb\x1a\x17\xe0\x10\xec\xf1\x81\xae\x41\x4d\x38\x0f\x09\xb9\x84\x25\x95\x0e\xc3\xf5\xb0\x8d\xbe\x85\x6a\xd0\x12\x00\xac\xac\xd3\xe9\xc4\xb3\x59\x5e\x87\x0d\xf4\x7c\xa9\x67\x2d\xf5\x84\x1d\xb5\xd3\x27\xb8\x9e\xdc\x75\xe9\x4f\x17\x9d\x6d\xea\xc9\x1f\x83\x39\x08\xae\x53\xd7\xea\xd9\x2c\xce\xd3\xe9\xf8\xbb\xd3\x56\x55\xd6\xe6\xb9\x98\x64\xac\x9e\x96\x61\x50\x84\x5b\x58\x2a\xba\x7c\x33\xbc\x91\x4e\xce\x3b\xe5\xdc\x5e\x0d\x74\xcd\x43\x6c\xca\x91\xb3\x1a\x25\xb8\x82\x1c\x95\xa7\xf6\x9f\x3c\x6b\xff\x61\x8d\x87\x9d\x8a\x43\xaf\x06\x46\xdd\xd5\xf5\xf2\x1f\x2e\xfc\xa1\x7a\x96\xd1\x85\xb9\xd9\x7a\x74\xc3\x9f\x61\xf4\x31\x34\x68\x09\x06\x86\x50\xf6\x10\x9d\x14\x9a\x53\x0d\x70\xdf\xd4\x97\x6f\x8f\x1a\x9c\x1d\x26\xc8\xf6\xf8\x60\x2a\x91\x11\xca\x15\x81\xaa\x81\x19\xe3\x01\x34\x9b\xc9\x87\xdc\xa8\x3d\xa8\x35\x67\x93\x5a\x94\x8d\x54\x8d\x3f\xc4\x9a\xd5\xcb\xe2\xf0\x56\xd4\xbf\xe8\x12\x53\x4f\xa7\x61\xfc\xf5\x3f\x78\x1b\x06\x57\x70\xe3\x73\x29\xa2\x9d\x8d\xbc\xac\x95\xd9\x4c\x49\x1a\x5e\x59\x49\xa1\x9e\xd2\xf0\x02\xac\xf1\x2f\x8f\x1f\x6c\xcb\xd8\xdb\x7a\x9a\x86\x8b\xf3\x6f\xbd\xbc\x4d\x03\xf0\x61\x6a\x65\x5e\xa6\x18\xcd\xa6\xa9\x45\x75\x79\xd1\xc3\x52\xda\x99\x1d\xaa\x9e\xd2\x30\x3a\x11\xc7\x5d\xb2\x57\x24\xe2\xa8\x3a\x0b\xbe\xd4\xd3\x63\xb8\x16\x5b\x57\x1f\xfe\x74\x1a\x3d\x53\x9c\x7f\x79\x75\xc3\xf1\xb3\x33\xb0\x76\xb3\xf4\x12\x1b\xb3\xfa\xd0\x1f\x9a\x20\x34\x7a\xa6\xbe\xf1\x5a\xfe\x43\xac\xee\xae\x9e\xb7\x3f\x11\xcb\x98\xbe\x2b\xf5\xb4\x0c\xa3\x0f\x77\xed\xf5\x0a\x1f\xcf\x9e\x54\xde\xf2\xb6\xcc\xa4\xe1\x34\x25\x1c\x6d\x38\x4d\x18\x4e\xaf\x5b\x13\x76\x4b\xaf\x61\x76\xc0\x9e\xe2\x71\x5b\x43\x13\xe1\x5b\xac\x0b\x52\x0f\xc3\x28\xba\xa6\x56\x92\xaa\xb6\xb8\x59\x3e\xaa\xd3\x13\x64\xa7\x8d\xa4\x79\x17\x75\xbd\x1e\x6e\x8b\x4c\xf8\x78\xf6\x14\xe3\xdf\xcb\x7f\x58\x42\x92\xf5\x96\xea\x61\x1a\xdd\x85\xea\xff\xb4\xe3\x24\xf2\xbd\x87\xd6\xdf\xed\xf5\x07\x17\xcf\x9e\x62\x6b\xdb\x35\x59\x72\xca\x0b\xea\xb6\x64\x84\x5d\xf3\x92\x3d\x31\x6d\xd7\xcc\x9b\x24\xe5\xee\x94\xb6\x6b\x26\xec\x9a\x74\x66\xab\x87\xcb\x68\x0d\x59\xff\xd7\xb5\xb7\x33\x4d\x62\xa7\xef\xca\x4e\xc5\xab\x55\xa3\x26\x5c\x8b\xab\x7b\x29\xc2\x49\xb4\x33\x95\xd5\x76\x26\xc5\xcd\x3a\x57\xe3\xd0\x5c\x75\x73\x29\xaa\x5e\x79\x25\x76\x5d\x8c\x24\x6c\x93\x2c\xe5\x54\x0f\xcd\xe8\x40\x17\xea\xd9\x04\x45\xba\x86\xeb\xd6\xda\xea\x52\x98\x12\x86\xca\xc1\x94\x57\xf5\xf4\x1a\xfe\x01\x26\x1b\x74\xcb\x45\x04\x51\x8c\x43\x2b\xd1\xb6\xc7\x84\xed\x71\x30\x7f\xd5\x4e\xdb\x1e\x13\xe6\xc6\x71\x68\xc9\x0d\xaf\x5b\x18\x1f\x07\x6b\x1d\x6c\x27\x85\xdc\x39\x68\x9c\xa7\xa9\x32\x87\x29\x02\x67\xce\x71\x68\x85\x0e\x6f\xcb\x88\x5e\x1f\x0c\x2e\xdd\x39\x2c\xfc\x51\x56\x93\x3e\x7f\xf5\xd0\x8c\xa2\xeb\xa1\x3e\xbc\x2b\x0f\x52\x6a\x68\x7c\x26\x09\x9c\x39\x53\x7a\xc0\xf0\xba\x45\xb8\xe0\x38\xb4\x30\x86\x39\x12\x36\x4b\xfa\x0d\xee\x1c\xde\x28\x60\xb2\x4c\x6a\xf6\x39\xbc\x57\xc3\x95\x73\xd0\x73\x65\x3b\x6e\x7e\x33\x50\x3e\xa5\x60\x0c\xd3\x74\x90\xa6\x5a\x5a\xd3\x6b\x1c\x2e\x9c\xe3\xd0\x22\xb2\x55\x93\x41\xf5\xe3\xd0\xca\xb0\x55\x93\x21\xf6\x29\x55\x62\x7a\x77\x80\x1d\x33\xa5\x8c\x4c\x6f\xc9\xc8\x93\x31\x0e\x71\xf5\x34\xa1\x27\x39\x52\x5c\x3d\xbd\x98\xe1\xd8\x39\x0e\xb1\xe4\x34\xfd\xe1\xb8\x39\x0e\xf1\xa4\xad\x9a\xcc\xa8\x79\xdd\xcd\x6f\xeb\x1b\x91\xcf\x79\x9c\x34\x6b\xe4\xf4\x7a\x86\xfd\x72\x9c\x22\xdf\xf4\xca\x85\xa5\x72\x9c\x22\x94\x2d\x95\x09\xdb\xe4\x38\xf5\x39\xb6\x49\x26\xb2\x4b\x8d\x53\x4a\x43\x78\x9b\x85\x99\x71\x9c\x52\x0f\xc2\x5a\x4a\x90\x24\x7a\xd9\xbc\x07\xbf\xcc\x71\x5e\x86\xd3\xf0\xaa\xaf\xb9\x34\x10\x4b\x3d\xa4\x7b\x1e\xa7\x36\x8d\x30\x49\xe0\x97\x99\x5a\x1b\xe1\x5d\x14\xf5\xba\xc7\x29\x6d\x29\xcc\x65\x28\x93\x9a\xee\xd9\x74\x82\x49\x72\x9c\x5a\x03\xe1\xd5\x18\x24\x1f\x4f\xf6\x19\x26\x5f\x90\x4e\xda\x1d\xd2\xbb\x28\x5c\x29\x07\xc3\x42\xeb\x69\x1a\x8e\xfa\xc7\x10\xba\x8c\x62\x78\x92\xbf\x69\x6d\x04\x8e\x97\xe3\x14\x53\xda\xf4\x98\x09\x75\xe3\xd6\xbe\x98\x96\x71\x30\x3d\x8e\x53\xbc\xaa\x12\xab\xd5\x00\x33\x68\x63\xb4\xe9\x31\xe1\x64\x39\x4e\xc9\xda\x34\xa1\x60\x7a\x1c\x67\xfe\x21\xd3\x77\xbd\x9c\xfe\xd5\xc2\xaf\x2e\xc1\xdb\xf0\x83\xbf\xd6\x88\x2c\xed\x92\x84\x4c\x51\x4c\x16\x4b\x66\x80\xb8\xe8\x48\x58\x4f\xa6\x18\x8e\x87\xb7\x66\x23\xbd\x57\xc3\x0a\x39\x9a\x64\x8f\xad\x90\xac\x40\x77\xe9\x8a\x23\x97\x67\x03\xd9\x1c\x46\x93\xe0\x58\x16\xf4\xb0\x03\xb2\xba\x51\x3d\x7c\x46\xd1\xb5\xf4\xf3\x65\x75\x64\x95\x7c\x1b\x0c\x1a\xdb\x69\xfb\x5f\xc2\xe2\x37\x74\xaf\x95\xcb\xdf\x0e\xfb\x5f\xea\x63\x96\x15\x0f\x78\x56\x0e\x86\x87\xd5\xd3\x30\x3c\x01\xfb\xed\x34\x8c\x51\xeb\xd3\x97\xf5\x11\x38\x5c\x8e\xa6\x6f\xdc\xfe\x74\x98\xfc\x46\x13\x23\x6e\x6f\x88\xf0\xb1\xbc\xee\x71\x0a\x56\x27\xb0\xde\x0d\xb9\x65\x38\x8b\x44\x35\x30\x92\xa9\xbe\xbd\x06\x77\xa2\xef\xe9\xb7\xdd\x77\xb2\xef\x5b\xb0\xfb\x06\x6f\xc9\x5d\x23\x6d\xcd\x4b\x24\xfc\xbe\x6e\xff\xa5\x59\x0e\x4e\x97\x83\xc1\x4f\xdb\xf9\x26\xaa\x81\x79\x1f\xee\x64\x19\xc6\xe4\xf0\xd6\x27\xb7\x17\x27\xec\x7d\xa3\x89\x03\xb7\x17\x27\x9c\x32\x47\x93\x80\xdc\x26\xec\x26\xf3\x48\x1d\xb0\xfd\x2f\x61\xff\xb3\x42\xf7\xf8\x00\x06\x8b\x5f\xea\x28\xf3\x58\xe0\x21\x6e\x7a\x5c\x52\x6c\x1e\xab\x79\x30\xed\x0d\x79\x60\xe4\x63\xb2\xc2\x76\x37\x2e\xed\xe4\x8f\x09\xf5\x94\xd4\x1a\x97\x4e\x99\x8f\x37\x50\x64\x9a\x1b\x97\xa4\xa6\x8d\x74\xcc\xcf\x9b\xda\x3f\x1f\x13\x04\xa6\xbb\x71\x5d\xee\xe3\x5f\xd7\x1f\x60\x7d\xcc\x92\xec\x78\x6a\x27\x4d\x6d\xab\x8f\x97\x1e\x32\x98\x8f\x4b\x3c\xac\x18\xd2\x6a\xe0\x0f\x35\x68\xb3\x1f\x12\xd9\xd1\x77\x79\xa7\xcd\x79\xf9\xf2\xe6\x53\x6b\xfd\xb5\xee\x86\xec\x76\x29\x76\x7a\x4d\x3c\xd4\x35\x1c\x97\xce\xa3\xaf\x75\x92\x97\x34\xed\xee\x5a\x7f\xf8\x92\xa6\x52\x3e\x6c\x12\x4c\x44\xac\x26\x8d\x27\xf9\x5a\x75\x86\xa7\xe6\xb8\xc4\xee\xaf\xf7\x55\xd8\x04\xc7\x25\x4e\xb5\x51\x90\xe9\x3f\x72\x6a\x1c\xa6\x3f\x4c\x85\xe3\x92\x92\xfc\x5a\x81\x81\xab\xe6\xb8\x24\xa5\x5f\x0b\x3f\x24\xf2\x1c\x72\xa0\xc8\xd7\xaa\x0a\x4c\x88\x19\xfa\x72\xaf\x74\xf8\x4b\x8e\xeb\x1f\xfc\x18\x2e\x41\x24\xa6\x7e\xad\x94\xc0\x82\x38\x2e\x69\xc9\x9f\x95\x92\x4f\x97\xcc\x87\xe0\xcb\x70\x91\xfa\x1f\xda\x8d\x82\xd4\x52\x28\x3e\x93\xfa\x23\xa9\x25\x83\x3f\x6b\x30\xa8\x3c\x96\xff\x5e\x16\xd3\xc0\xde\x98\x52\x3e\xe4\x7f\x59\x0d\x2c\x67\x7d\xca\xe7\x09\x80\xdd\xd1\x9a\xf6\x67\xfa\x7f\x5c\x00\x32\x19\x7d\x5e\x00\x1f\x36\x71\x66\x26\xaf\x27\xff\x21\x52\x4b\x1e\x12\xee\x9f\x25\x30\xac\x90\xe3\xfe\x07\x87\xe1\xc4\xdb\xfa\x16\x4b\x60\x26\xa8\x3a\xa4\x59\x7e\xde\xdd\x61\x9c\x1c\x72\x4f\xc8\xcf\x4b\xe0\x43\x7c\xf8\xa1\x85\xfb\x79\xbe\x60\xb3\x1c\xb7\xb4\xa0\xcf\x02\x04\xfe\x99\xe3\x96\x3d\xea\xb3\x6e\x89\xba\x99\x97\xae\xa4\xf3\xf3\x8a\x81\x29\x73\xdc\x5a\xfd\x36\x65\x26\x4c\x99\xe3\x96\x2a\xf5\xb3\x32\x00\xbf\xcc\xc1\xa8\x88\x9d\xb6\x43\x26\x1c\x33\x87\x9c\x08\xf2\x67\xc9\x02\x1b\xe3\xb8\xa5\x34\xfd\x2c\x6b\x91\x8c\x71\x78\xd7\xfc\x59\xe1\xf9\x91\x26\xcd\xf0\x67\x18\x7f\xa9\x63\xf2\xcf\xbb\xd5\x0f\xb9\x0f\x0e\x9d\xed\x7f\x16\xaa\x30\x2d\x0e\xef\x28\x3f\xf3\x30\x6c\x8c\xe7\x41\xad\xce\x89\x66\xaa\x71\x02\x4e\xc1\xd3\x30\x26\x8d\x96\xb4\x75\xe8\xe3\x17\x4c\x8b\xe3\xe6\xd2\x73\xf6\x99\x6a\x80\x4f\xb8\xf4\x96\x8d\x88\xcc\x36\x33\xe8\x6f\xbe\x99\x72\x86\x0d\xf6\xad\x91\x68\xb7\x5a\xb0\x26\xaa\xba\x5b\x3d\x7d\x82\x21\x84\xef\x50\xdf\xcb\x7d\x23\x0a\xe5\x4f\x6e\xd0\x9b\x59\x6d\xd8\x00\x1b\xdd\xfa\x2c\xed\x71\x2c\x60\x3a\xe4\xc2\xb0\xec\xd2\xb9\x50\x58\x6f\x88\x5f\x96\x4d\x92\x8b\x55\xc1\x19\x58\x50\x4f\x26\x02\x67\x29\x44\xc9\xed\x81\x62\xeb\xbb\x53\xe3\xdf\x1e\x09\x19\xfa\x16\x11\xb6\xe9\x8e\x3c\x3b\x0c\x43\xa8\x27\xd3\x9d\x73\xca\x8d\x72\x29\x5e\xbc\x1a\xd5\xb7\x3c\x21\x96\xca\x84\x57\x63\x00\x6e\x82\xa7\xe1\xf8\xef\x7f\xae\xce\xf5\xb9\x4e\xc9\x9a\x05\x9f\xcf\x21\x07\x89\x75\x4a\x50\xb0\x8a\xeb\x90\x2b\xc4\xb2\x9d\x71\x9d\x9c\x25\xaa\x31\xeb\xf4\x2c\xc1\xfc\x38\xe4\xf4\xe0\xdc\xee\xd5\x28\xf6\x97\xd3\x03\x33\xbd\xb3\x01\xce\x25\x43\x2f\x3b\x8c\xb2\x40\xec\x90\xd7\xc3\xb2\x67\xe8\x82\x67\xe8\xe8\xe2\x5c\x7b\x86\xae\x93\x8b\x65\xe8\xe3\xb7\x69\x02\x7a\xf7\xcb\xb0\x3f\xa7\x28\x7c\x31\x5d\x5a\x3d\x85\x61\xd0\x7b\xe8\xe3\x4d\x6f\x18\x31\x47\xbf\x34\x12\x49\x0a\xa6\xa4\x1f\x9d\x9b\xb9\x33\xd2\x57\x03\xe3\x16\xe7\x36\x99\x9a\x16\x82\xdb\x2f\x53\x50\xe5\x9e\x36\xcb\xda\x5e\x72\x26\x59\x8a\x75\xdf\x0b\x09\xa1\x47\x17\x43\x28\xa8\x7d\x33\xab\xfd\x90\x93\xc4\x6a\xd2\xf8\x16\x7c\x46\x47\xd7\x34\xd8\x78\xb9\x68\xbc\xec\xa7\x46\x22\x39\xbe\x60\xae\x1c\x4c\xe1\x5e\x4f\xee\x04\x1c\x2b\xff\xd0\xd5\x4c\xc1\x46\x0a\x6a\xd9\xda\xe7\x73\x35\x7e\x3c\x77\xf4\x65\x37\x4e\xe6\xd9\x3f\x99\xee\xba\x9e\x86\x61\x50\x50\x4b\xea\xf2\x57\x5e\x64\x36\x5e\x60\xad\xcb\x92\x02\x4e\x9a\x43\xde\x09\xcb\xbe\x99\x4c\xf7\x34\x98\xb2\x7c\x2f\x45\x9a\x6f\x26\x73\x1a\x43\x1c\x7b\x69\xa3\x59\x17\x37\x9a\x50\x27\xd2\xc0\x98\xe2\x69\xc8\xf1\xd0\x19\x9e\xaa\xf1\x01\x26\x61\x2f\x2f\x57\x18\x21\xc7\x38\xd5\xb7\x97\x2b\x4c\x92\x63\x70\x47\x59\x97\xd9\xe7\x22\xfb\x48\x42\x28\xda\xbc\x1a\xf5\x95\xac\x98\xb3\xd7\x6d\x9a\xc0\x24\x39\xe4\xeb\xe7\xdc\x51\x9b\xb9\xa3\x86\xdc\xf7\x96\x9d\x39\xd7\x4d\x3e\x11\x0f\xda\x9b\x93\xe5\x06\x86\xdc\xfa\x9c\x68\x6a\x33\xd1\xd4\x65\xd6\x54\xbc\x79\x35\x30\x12\xb1\xa6\x7d\x31\x17\xac\x8f\x63\x48\x84\xdd\x5e\x80\x37\x09\x2b\x1e\xb4\x33\x26\x6b\x13\x0c\xe6\xfe\xda\xce\x55\xb5\x99\xab\xea\xea\x12\xa6\xb7\xcc\x3d\x8b\x01\xe7\xfd\xd6\xb8\xbd\x00\x61\x6a\x1c\x43\x3c\x68\x53\x23\x13\x5b\x9d\xb2\x91\xac\xdb\x14\xbc\x49\x41\xfa\x39\xaf\xee\x95\x86\x74\x3c\x63\x50\x41\x5e\x76\xad\x64\x3a\xac\x31\xc4\xc8\x0a\x39\xdf\xac\x8b\x3c\xe4\x5c\xb5\xba\xf7\x1f\xf8\x3c\xaa\x2c\xe2\x76\xb5\xe4\x6a\xa0\x13\x7a\x1e\xaf\xee\xb5\x03\x57\xc8\xa1\x6b\xf3\x65\x0f\xc8\xd5\x49\x2a\xf1\x77\x37\x0f\xc2\xb0\xa8\x52\x89\xf5\xa4\xcf\x41\x3c\xf9\x18\xd4\xd1\x56\x37\x57\xa1\x00\xff\x29\xdb\xce\xea\x26\x15\x3c\x20\xc7\x94\x58\xef\x5e\x80\x70\x7a\x1c\xba\x7b\x5f\xb6\x37\x2e\xda\x1b\xa7\x56\xc3\x30\xa9\x68\x6f\x64\x92\x8c\x7a\xba\x0d\xf3\x2f\xbb\xe0\x34\xbc\x00\x87\x60\x7d\xfc\x40\xd2\x71\x06\x2c\xd5\x53\x33\x8c\xbe\xb5\x76\x6c\x9d\x64\x96\xb1\x31\xb5\x76\xec\x05\xb9\xe0\xf7\x38\x26\x6f\xf6\x96\xad\x93\x0b\xd6\xc9\xcb\x42\x69\x78\x2f\x86\xc1\x71\xc8\x03\xc5\x09\xca\xaa\xf1\x62\x24\x86\x3f\xc3\xf8\x78\xe9\x29\xf6\x99\x5c\x28\x0d\x3a\x74\x05\xbf\xec\x33\xb9\x60\x65\x1c\xba\x82\x67\xf9\x6a\x36\xd8\x37\xf9\xdb\x3e\x93\x2a\x57\xcd\x18\xe1\x7a\x6a\x86\xf1\xf1\xb7\xe1\x30\x8c\x99\x57\xdf\x76\x9a\x54\x42\x34\xd9\xc1\x96\xbd\x23\x59\x55\x63\x4c\x2d\xa9\x69\xd6\x9c\x64\x4d\xad\xcb\x69\xb1\x8e\x78\xf1\xf3\xd4\xba\x9c\xe6\x41\x56\xea\x61\xfd\xc7\x7a\x4a\xc3\xe0\x93\xfe\x97\x5b\xb2\x35\xad\xd5\x20\x80\x5c\xc5\x21\xeb\xc9\xe3\x07\xe7\x32\x71\x46\x3d\xdd\x86\xf9\xd7\x1a\xbf\xd5\x17\xd6\x02\x62\x8e\xfa\xbd\x6c\x95\x64\xc5\xed\x53\xd6\x36\x27\x79\xdb\x2c\x09\x32\xa6\x56\x73\x78\x35\xc3\x81\x72\xcc\x7f\x6f\xa7\x61\x4c\xb5\x74\xcf\xb0\x9e\x12\xa4\x24\x0f\x89\xae\xe1\x5d\x0d\x4c\xb5\x56\x73\x78\x35\x07\x97\x16\xed\x6a\x2b\x2c\xc7\x03\x72\xfc\xd4\x26\x16\xfb\xdf\xdb\xb5\xf6\x75\x39\xbe\xec\xa1\xb8\x60\x2e\x1c\xba\x05\x5f\x69\x0e\x48\x72\x00\xed\x2a\x2b\x2d\xc7\x59\xed\x9b\x55\x28\xf7\x4a\x19\x59\x17\x7c\x12\x47\x34\xc3\xee\x1b\xf9\x4f\x65\xf8\x73\xb5\x92\x6a\xe0\x2f\xa5\x1a\xa5\xbf\x12\x1e\x8c\x43\xf7\xe0\x2b\xcd\x2f\x2c\x8d\x74\x86\x46\xe2\x8f\x47\x60\xf7\x60\x8e\x8b\xed\xb2\xe3\x9b\x15\x4f\x46\x68\x47\x49\xeb\xca\x49\xee\x4a\xc3\xd3\x30\xbe\x52\xfa\x6c\x9a\x4f\x10\xc3\x3d\x74\x6b\xee\x2a\x28\xd5\xc0\xcc\x4b\xbc\xa7\x55\x0c\xda\x18\x99\xd0\xa2\x9e\xba\xe1\x01\x38\x05\xfb\x2f\x91\x73\x96\x95\x00\xea\xc9\x5f\x09\xc1\xa7\x7b\xd3\x65\x1b\xe3\xa2\x8d\x51\x11\x24\xac\x91\xce\x46\x7d\x0e\x03\xd6\xea\x69\x19\x2e\x3e\xd1\x9d\xe7\x5a\x5e\xb6\x70\x75\x1c\x21\xb5\x6b\x59\x4f\x59\x9c\x34\xda\x3a\xd6\xf2\xa4\x21\x7b\xed\x65\x65\xc7\xbe\x8e\x8b\x66\xcd\xd0\xda\xb1\x59\x73\xc1\xac\x79\x75\x29\x0d\xf6\x5f\x64\xa1\x97\xab\x8b\xb0\x36\x60\xb2\x1a\xbb\x8a\x74\xd6\xd3\x36\x8c\x0c\x5e\x34\x99\xae\x65\xad\x06\xae\x8c\x23\x86\xe1\x9f\x60\x24\xd5\x57\x48\xdd\xb2\x07\xe3\xa2\x61\x53\x17\x8b\x6b\x79\x35\xb0\xd2\x60\xd3\x1e\x61\x0b\xe6\x82\x87\xe3\xd0\x85\xe3\xda\xd6\x6a\x36\x57\x83\xe8\xbd\xbd\x5c\x69\xef\x0c\xed\x9b\xb6\x77\x2e\xda\x3b\x15\xa3\xb2\x6c\xef\x64\x42\xc5\x11\xa2\xe0\xb6\x56\x03\xc3\xe7\xa5\x20\x95\x65\x27\xc5\x05\xc3\xe7\xd9\x74\xac\xd8\xde\xc1\x37\xf9\x5b\x5a\xe4\x36\x7f\xd3\xde\x19\x62\x9f\x6d\x7a\xd3\xb0\xa9\x3b\xfa\x65\xf7\xc5\x85\x68\xf2\x91\x87\x46\x62\x8e\xa5\x05\x33\xa5\xcc\xdb\x82\xc9\x7c\x8e\x23\x4d\x2a\xef\xc9\xb4\x60\xa6\x14\xc0\xc7\x7b\x32\x9c\x16\x07\x73\x5d\x6f\x27\x7f\xdc\x4c\xf2\x38\x74\xe1\xb2\x94\x23\xb7\x1a\x2f\xbe\x92\xa4\x7a\xbc\xf9\xc2\x11\x71\xa4\x56\x9a\xfd\x0f\x59\x1f\x67\xa4\xb4\x31\xdb\x30\x17\x1c\x11\x87\x8c\xe8\xcb\xfe\x87\xac\x9d\x3f\x58\x44\x69\x3b\x1d\xe4\x5e\x0f\xbf\x52\xfc\x6d\x03\xe4\x62\x09\x45\xd9\xd6\xd7\xe3\x05\x08\x53\xe3\xd9\xf4\x97\xaf\xbf\x12\xd6\xc5\x91\xd2\xdd\x5e\x6b\x1e\x4c\x29\x29\xe3\xba\x8b\xee\xef\xf5\x42\xc5\x90\x15\x9d\x25\xf8\xd9\x40\x27\x53\x7d\x7b\x49\xc1\x90\x38\x64\xb1\x5c\xaf\xe5\x20\xed\x87\x29\x4d\xef\xf5\x39\x13\xb6\xc1\x53\x36\xf7\xf5\x5a\xc5\x40\x98\xf6\x90\xf1\x6f\xd9\xab\x90\x25\x7f\x46\xea\x00\xff\x5a\x97\x78\x49\x13\x1d\x59\xec\x56\xb8\x5e\xce\xbc\x54\x3a\x9b\x0a\x17\x4c\x85\xd7\x10\x6b\xda\xad\x70\xc1\x3a\x78\x0d\xcd\xfc\xe7\x1d\x10\xe6\xbf\x79\x88\x07\x3f\xaf\x06\x98\xf6\xe6\xa1\xc5\x6d\xc7\xc2\x05\x0f\xc2\x29\x23\xd8\xb2\xab\xe0\xa2\xab\xa0\xcf\x0f\x9f\x8f\xe4\x88\x96\x9e\x32\x26\xad\xcf\x1f\xff\xd1\x4d\x5a\xcc\xf6\x99\xed\xe1\x34\x38\x0f\x77\x62\x79\x82\xb0\xe8\xa9\xcb\xec\xf5\xf9\x7c\x0c\x93\xd9\xd4\xf5\xf4\xb2\xc9\x6c\xfd\xb0\xcf\x37\x4d\xda\xcf\xfc\x0d\x87\xbf\x69\x5b\x87\x2d\x69\x0b\x9e\x7d\xd3\xb6\x8e\x9f\x3f\xfe\x57\x32\x78\xea\x8e\x7b\xfd\xbc\x5f\xc2\xd2\x76\x36\x4d\xf1\xcf\x1b\x23\xf2\xd3\x4f\x5d\x7d\xaf\x9f\x57\x03\x8a\xd6\xcd\x43\xda\x8c\x1d\x00\x17\x1c\x00\xe7\xd1\xf3\x2f\xaa\xd1\xcf\x8b\xe5\x47\x4a\x4a\xab\xb1\x7f\xe0\x82\x11\x6f\xda\x76\x60\x8f\xbf\xf5\xdb\x20\xb0\x58\xf4\x67\xa1\xfa\xa3\x50\x0d\xc3\x1e\x28\x5c\x9d\x75\x57\xbd\xec\x08\xb8\x7e\x1b\x44\xa0\xd2\xe0\x94\x8b\x9b\x49\x16\xa7\x8e\xb8\xfb\x90\xe6\xb1\x69\xad\x63\xce\xb9\xcd\x04\x8c\x6c\x40\x80\x90\x73\xf7\xa1\xa5\xb5\x91\x13\x7a\xea\xd0\xba\x55\xc0\xa5\x1a\x81\xb7\x87\xe0\x34\x0c\xc6\x70\xdf\xe9\xbe\xa1\x92\xb2\x38\xeb\xde\x36\xcb\x6d\x44\x49\xcf\xc3\x7f\xa9\x85\xc8\xb4\x8c\xa7\xae\x63\xf6\x21\x5d\x62\xc3\xd2\x76\x2a\x4e\x76\x1f\x52\x1a\x36\x4b\xc0\x28\xf4\xd5\x89\x17\x37\x13\x2f\xce\x23\x35\xee\xed\x4e\xa0\x1d\xe8\xf2\xc6\x99\x64\xab\x81\xa9\xa6\xd4\xdf\x76\xe3\xdb\xa8\x27\x73\x2a\xa0\x75\x9f\xd2\x0e\x36\x6c\x67\xaa\xbd\xba\x9d\x79\xb1\x1a\xc5\x5d\x3a\xce\x6d\x7b\xf7\x6d\xd4\x9c\x99\xe7\xe1\xbe\x1f\xc3\x2f\x3a\x19\x82\x3f\xc3\x3f\xc4\x1a\x90\x26\xaa\x70\xb0\x99\xbe\x71\x9e\xdc\x51\x9c\xbe\x71\x33\x4f\xe3\x64\xa2\x89\x7a\x72\xdf\xc9\xbe\xf5\x97\x3a\xc8\x33\x61\xe3\xd4\xb1\x68\x3b\xc6\x7a\x33\xc6\x9a\xd9\xb7\xeb\x29\x0d\x63\x24\x97\x3e\x7e\x7b\x24\x20\x2c\xd3\x3d\xec\x6d\xdb\xd8\x86\xef\xde\x3c\x6f\x75\xb2\xfd\x39\x20\xec\xc9\x65\xeb\xbc\x8e\xd5\xc0\xe7\x70\xd9\x6e\x15\x3d\xaf\x06\x08\xcb\x93\x98\xf3\x3d\x56\x63\xe1\xed\x2e\x78\x1b\x7e\xf0\x36\x3f\xde\xae\x7a\x2c\x96\x36\x99\xd8\x61\xb3\x62\x1a\x1b\xec\x3b\x05\x4f\xc3\x75\x96\x55\x90\xae\x33\x3e\x6e\x66\x7c\x3c\x75\x05\xb6\x1d\x3a\xbd\x1b\x29\x38\x34\x12\x53\x10\x31\xd4\xe7\xe5\xcf\x31\x05\x1b\x29\xc8\xb3\x09\x53\x3d\xb2\x81\xbe\xa9\x2e\xba\xc6\xda\x66\x9a\xc7\x53\x57\x63\x2e\xb1\xb6\x99\xe6\x71\x9e\x53\x7f\x69\x7a\xc3\xd2\x76\xc9\xe6\xb1\xed\x07\xc8\xf4\x8f\xf3\x9c\xfe\xcb\xc7\x30\x18\xa2\x1b\xfe\x0c\x63\x80\x3c\x0e\x6d\x15\xc1\xac\x46\xad\xcb\x93\x4a\xda\xb6\xd7\x20\x73\x47\xce\x53\xf2\xc4\x5e\x83\xfb\x22\x7f\xd3\xfb\x65\x5f\xe6\xef\x8b\xfc\x3d\xdc\x89\x08\x0b\x2b\x9e\xea\xf2\xd6\xd3\x30\x8c\xbe\x79\x7e\x70\x4e\xc9\x6a\xa0\x6f\xaa\xb9\xfb\x92\x9e\xc2\x54\x93\x93\xc9\x27\xf6\xb6\x93\x21\xf3\x45\xce\x53\x6b\xde\xa6\xbe\x0d\x53\xdf\xa5\x80\x88\x7d\x69\x07\x67\x5a\xe8\xd9\x24\x66\x6c\xbc\x63\xfe\xc8\x53\x17\x86\xfb\xb2\x84\x80\x63\xe1\x54\x22\x02\x17\x96\xdb\x4c\x15\x79\xea\xc2\x70\xdf\xe6\xef\x1b\xfc\xdd\x4e\xc3\xb7\x61\x4c\xb1\xe8\x7d\x5b\x42\xc0\x8a\x77\x31\xdb\xea\xde\xb7\x45\x2f\x8c\x77\xb3\x49\xcc\xdc\x5e\xf3\xf0\x2c\x9c\xcc\x99\xbb\xf7\x6d\x46\x46\xf4\xf5\x25\x8b\xd4\xb6\x9f\xe1\x86\x4d\x6f\x36\x89\x19\x87\x5d\x6f\x86\x5d\xcb\x50\xe5\x1c\x92\xd5\xc0\x00\xa9\x59\x6f\xc7\x5d\x6f\xb8\x14\x4e\x85\x2e\x6f\xc7\x4a\x33\x21\xf6\x94\xbb\xc4\xbe\x2d\x21\xe0\x6a\x38\x9b\x44\x81\x4d\x7d\x4c\x32\x79\x29\x76\x64\xdb\x05\x71\xc3\x78\x37\xa5\xe9\x39\x97\x76\x35\x26\x42\x8b\x86\xe0\x30\x8c\x4d\x40\x7c\xd2\xa5\x06\x6c\x14\x64\x9a\x8d\xbb\xeb\xb6\xab\xe0\x86\x4d\x6f\xca\x31\x62\xdb\xa6\xc7\xc4\x91\xe7\x95\x7e\x5b\x0c\x81\xc8\xe4\xa9\x38\x45\x27\x8c\xac\x06\x3a\xd1\xee\xda\xbd\xb8\x3b\x69\xc2\xab\x26\x57\x02\xdc\x4c\x06\x39\xe5\x01\xb1\x1d\x7a\xbc\x3b\xbf\x52\x7f\x69\x3f\x3f\xe6\x7d\x3c\xe5\x60\xba\xed\xe7\xb7\x51\xc7\x75\x7a\xbf\x1c\xde\x60\x68\x77\xd3\x9d\xe9\x1e\x5e\x69\x30\xc0\xcd\xcb\x70\xba\xef\x64\xdf\x53\xf0\x65\xb8\x03\x4e\xc1\xc3\x30\x32\x27\x7a\x24\x66\x1f\x78\x0d\x9e\xf2\x7d\x74\x1e\xc8\xcd\x3c\x90\xe7\x7d\xfe\xc5\x6a\xe4\x3c\x91\xd5\x40\x54\x97\x47\xe4\x65\x0b\x67\xc3\xe9\x8d\xdd\x3e\x86\xcc\x0c\x39\x2f\xed\x84\x43\x67\x2b\x26\x84\x9c\xcc\xd9\xba\xb7\xad\x75\x4c\x01\x39\xaf\xe6\xb7\x97\x61\x74\xa2\xc5\xa2\xc2\x3a\xd5\xf8\x00\x93\x31\x6c\xad\xdb\x33\xd8\x49\x08\x0e\xc3\x25\x40\x64\xc1\x74\x72\xc7\x6a\x20\x19\xa6\x16\xb9\x8d\x78\x7b\x62\xd9\xca\x89\x63\x4f\xef\x3f\x93\x74\xa7\x51\xc6\x49\x1f\x37\x2b\x3e\x4e\xef\x3f\xd3\x74\x87\x13\xe1\xbc\x6e\xbf\xad\x71\x23\xe9\xe3\xbc\xb4\x58\x1c\xe4\xbc\x27\xc3\xe5\xb4\x75\x4c\x93\x6a\x92\x54\xbc\xf4\xda\x76\x12\xdc\x13\x3b\x38\x8b\x8b\xed\x6d\x27\xc1\x0d\x27\xc1\x29\xb7\x0a\x27\x72\xac\x06\xd8\x88\x86\xcd\x6d\x27\xc1\x8d\x98\xe4\xc9\x54\x9b\xf5\xf4\x18\x06\x63\x68\x4f\x76\x88\x32\x0b\x53\x4e\x0b\x3e\x87\x28\x6f\x84\x28\xcf\x4b\x32\xcb\x21\xca\x3b\x48\xaa\xcb\x6f\x4f\xc3\x60\x51\x51\xd0\xc6\xbb\x1d\x24\x55\x68\xdc\x66\xd1\x20\x8b\x8a\xb0\xe1\xcd\x00\xc1\xca\xaa\xbb\xbd\x9d\xcb\xb1\x1a\xf8\x9c\xf4\xdb\xaf\x61\x8c\x3b\xf5\x97\x96\x70\x41\x66\x93\xf6\x6b\xc3\xe0\x86\x61\xf0\x9a\xd2\x98\x1c\xd1\xcc\xb4\x8d\xf3\xa6\x91\xc0\x69\x1b\x37\x33\x35\x4e\xaf\xcf\xf4\x1e\x81\x18\xe6\x93\x25\xc0\x36\xb3\x38\xb2\x31\x11\xfb\x78\x0a\x4e\xc3\x0b\xf0\x25\x78\x1b\x2e\xd5\xe8\x96\x8a\x61\x6f\xc3\x0d\xc3\xe1\x94\xab\xc3\x4e\xd3\x9b\x66\xc4\x5b\xfa\x55\x9a\xde\x2c\x6f\x71\x4b\x69\x48\x13\x36\x99\x03\x56\x4a\x5a\x7a\x47\x81\x85\xf0\x54\x8a\x81\x9d\x5e\xc5\xf0\x46\x9c\xf2\x5f\xdd\x36\x0c\x6e\x96\xc8\x50\xe6\x81\x6d\x2f\x43\x26\x77\x9c\x4a\xe7\xb0\x6d\x18\x64\x76\xc7\x93\x49\xf1\xea\xe9\x32\x8c\x71\x6b\x63\xb7\x05\x90\xd9\x1d\xa7\x39\xd6\x16\x40\x26\x72\x3c\xe5\x60\xb0\x97\x37\x1a\xf8\x15\x4e\x73\xec\xb2\x08\x86\xa9\x6f\x32\x09\xe4\x76\xa6\xc6\xcd\x4c\x8d\xe7\xad\xcd\x60\x99\xb0\x8b\xb2\x56\x9b\x81\xc3\x9a\x37\x22\x96\xa7\x9c\x26\xf7\xf2\xfe\xc3\xf2\x54\xf2\x20\x70\x62\xc7\x6a\xe0\x2f\xbb\x3b\x11\x0f\x32\x54\xf9\xd6\xe2\x5e\xde\x7f\x50\xa4\x6a\x9a\x82\xb6\xd2\x6d\x58\xe9\xa6\x92\x34\x6c\xbb\x1f\xee\x45\x1e\xd4\x02\xb4\x95\x8e\xe9\x19\xe7\xad\x3d\x79\x7b\xeb\xd8\xfa\x1c\xbd\xed\xcf\x81\xdd\x6d\xca\x55\x60\xdb\xcf\x90\xd9\x1c\xa7\x7c\x02\x98\xd2\x91\x0d\x7c\x65\xfa\xed\x65\xf8\x87\xb7\xf5\x97\xd6\x3c\x60\x69\x3b\xe5\xb4\xc0\xe4\x8d\x6c\x6c\x84\xf1\x5e\x82\x3f\xc3\xe8\x44\xc7\x38\x7b\x0e\x32\x9d\xe3\xec\x3a\xaf\x39\x6e\x78\xa3\xda\xf4\x35\xb5\xe6\x6d\x8e\xdb\x0c\x1c\xee\xd2\xaf\xb6\x75\x65\xa4\x73\xbc\x58\xa4\x65\x6f\x87\x0e\x33\x41\xe3\x54\x82\xaf\xfd\x78\x6f\x40\xb0\xf0\x69\x9a\x3c\x56\xe9\x60\xa5\x9b\xfd\x72\x27\xaf\xe1\x0f\x70\x0a\x16\xfb\x20\xb4\xf8\x52\x90\xa5\xd3\x38\x56\x03\x7f\x29\x11\xf6\x98\x7d\x50\xce\xe5\xec\x92\x27\x8f\x0f\xd9\xb0\xe2\x9d\x5d\xf2\xc4\x0e\x88\x1b\xc1\xc3\xb3\x77\x75\xe2\x75\x09\x2b\xdd\xec\x3a\xf4\x3d\x5e\x3b\x0f\x45\x98\x44\xc1\xe3\x6d\x14\x71\xbf\xb3\x6b\xa5\xd9\x51\x90\xb9\x1b\x4f\xf9\x49\xec\xd7\xa4\x82\x4d\x6f\xea\xf2\x9f\xb5\x70\xd9\x60\x84\x74\x0a\x4e\xc3\xe8\x5b\x9b\xc0\x6b\x1e\x44\xf6\xc6\xb3\x6b\x77\xb5\x4f\x20\xb3\x37\x4e\x65\x2c\xd8\x8e\x1e\x66\xf6\xc6\x6b\x0e\xc3\xaf\x61\xf4\x2d\xb5\xeb\xb5\xc6\x01\xef\xc0\xd9\x75\x50\x70\xfc\x30\x73\x28\x4e\xa5\x2c\xd8\x0e\xfe\xdd\xf0\xe1\x9b\x0a\xdd\xdf\xb6\xd2\x31\x79\xe1\x1c\x3a\x4d\x3b\x72\x97\x79\x07\xe7\xb8\xff\x92\x76\x88\xb9\x09\xd9\xe8\x18\xff\x10\x3c\x0c\x17\x1b\x29\x7c\x7c\xdb\xd0\xc6\x7a\xbf\x73\xf8\x6d\x8b\x49\x44\xe7\x9e\xdd\x03\xb5\x1a\x40\xfb\x9b\xe2\xc4\xb7\xed\x6f\xfb\xc7\xfc\xd6\xff\xe0\x66\xf8\x46\x1c\xf6\x25\x78\x18\xc6\x48\x24\x29\x7e\x96\x87\x30\xc4\x9d\x5e\x43\x3f\xef\xf7\xf0\x7b\x9b\x43\x6b\xdf\x7e\x6f\x1b\xf1\xb7\x53\x37\xdb\xdb\xf1\xb7\x1b\x0e\x70\xa7\x32\x95\x38\x4f\x61\x35\xf0\x97\x12\x09\x3f\xef\x3f\x3f\xf2\x39\x2f\xa6\xb6\xe3\x72\x99\x99\x70\xea\x66\x7b\xff\x4c\x41\xc4\xe5\xce\x79\xf8\xed\x34\xfc\x01\xd6\xc7\x9b\x82\x08\xa9\x9d\x13\x16\xfa\xc7\xd9\x04\x1f\x96\x3d\x9e\xbc\x38\x7e\x5c\xf5\xf8\x89\x83\xc1\xe9\x97\xde\xe6\x48\x1e\x26\xe0\x9b\x8c\x76\x7e\x9c\x80\xef\x61\x02\xbe\xc9\x28\xde\xc7\x09\xf8\x1e\x96\x2a\x9e\x8c\xd2\x7e\x42\x36\xa6\x87\x99\xf8\x2e\xc6\x13\x3f\x71\xfa\x2f\x11\x1c\x3a\x19\xf3\xfb\x84\x82\x42\xab\x51\x5f\xc9\x7c\xf9\xf5\xb4\x0c\xd7\x48\x78\x25\x59\x4f\xaf\xe1\x0f\xb0\x3a\xe1\xaa\x78\x98\x74\x6f\x32\x30\xf7\x61\xe6\x3d\x36\x20\x6e\x2e\x8d\x84\x22\xf8\x09\xb8\x4e\x4d\xde\x26\xd6\x93\x07\x88\xaf\x0c\x91\xaa\xf9\x2b\x11\x5f\x39\x79\xfd\xf6\x44\x4b\xc3\x5c\xe4\x38\x41\x3e\x4e\x89\x57\x0d\xf4\xdd\x43\x70\x37\x5c\x02\x24\x86\xdf\x4e\xc3\xe8\x5b\xf4\x56\xed\xfb\x6a\xb0\xef\x5b\xf0\x30\x3c\x8b\xb0\xd1\x05\x87\xe1\x52\xa4\x18\x4c\x57\x4f\x8f\x61\x30\xdb\xad\x91\xf0\x8a\xec\x09\xd6\xc9\x67\x92\x9a\x87\x65\x8e\xd9\x68\xe8\xe4\x12\x7c\x19\x1e\x78\x5b\x03\xa4\xac\xad\x06\xf4\x59\xec\xb2\x4f\xc8\x84\xf3\x30\x41\xde\x65\x86\x90\x09\xe7\x61\x86\xbc\x93\xd9\x03\x1f\x27\xc6\xab\x06\xbe\xb2\xa7\xe0\x66\x18\xec\x93\x97\xe0\x6e\x18\x23\x19\xa7\xe0\x30\x8c\x29\x1e\x7e\xfb\x35\x0c\x3e\x99\x21\x58\x1f\x8f\xd4\x79\x67\x1f\x1a\x49\x9e\x86\xc1\x3e\x71\x08\x76\xdf\xdc\xad\x86\x3a\xa1\xc0\x7e\x58\xd2\xf9\xec\xd3\x6f\x8b\xab\xe0\xb6\x35\x43\x8b\xe4\xa2\x78\xac\x06\x24\x84\x08\x7b\x79\x2e\x69\xf0\x09\x7f\xe5\x4a\xc3\x98\xcb\xec\x82\xfd\x39\xe4\xd8\x24\x23\xcb\xe0\x53\x0d\xf6\x6d\xf8\x31\x5c\xa7\xea\xd4\x92\xba\x4d\xef\x9b\xf4\x8e\x26\xb8\x19\xbe\xf0\x76\x08\xee\x86\x27\x32\x30\x1c\x82\xd3\xf0\x0f\x30\xc7\x7d\x9b\x82\xf0\xcf\x9a\x0c\xcb\x7d\x5c\xb5\xfa\x61\x06\xbd\xc9\x8b\xc0\x7a\xd2\x00\x61\xcb\x39\xbb\x48\x75\x7b\x15\xc3\x6d\x6b\x32\x6a\xea\x09\x59\x76\xaa\x71\xd7\xdb\x22\xd5\x6d\x0a\xc2\x89\xeb\xec\x22\xd5\xbd\xfe\xf5\x8d\xd9\x11\xa9\x6e\xb3\xfd\xcd\x0d\x26\xc9\x6c\xf7\xf6\xc7\x83\xb0\x29\x39\x78\xef\x30\x5c\x33\xcf\xa4\x3e\x8f\xd3\xe3\x3d\x4c\x8f\x37\xf3\x72\x27\xaf\xe1\x62\x36\x5e\x49\x3e\x21\x3b\xd0\xc3\xd4\x77\x93\x57\x92\x4f\x74\x73\x2c\xed\x40\x43\xf4\x56\xc4\x68\x35\x6a\xdc\x43\xf4\xee\xe6\x58\xe4\xbe\x9b\x2c\xd3\xfb\x38\xe7\xdd\xc3\x9c\x77\xe7\x90\x1c\xec\x96\x27\x70\xf2\x9a\x8c\x11\xae\xa7\xd7\x30\x06\xd8\xa7\x60\xf7\x8d\xf4\xe3\x2c\xf9\xfd\x38\xe9\xdd\xc3\x34\x77\x33\xb5\x2e\xbb\x19\x19\x69\xee\xce\x71\x6a\xdc\x6b\x1a\xc6\xe7\x68\xe6\x15\x62\x5a\x0d\xf0\x89\xd6\x65\xdf\xe2\x41\x04\x95\x9e\xcc\x19\x58\x4f\xdd\x30\x48\xa5\x25\x25\x4f\xb0\x87\xe9\xed\x66\x6a\xed\x0c\x33\x32\x4d\x4f\xcc\x3c\xf4\x38\xbf\x5d\x35\x6e\x7c\xce\x2d\x78\x18\xc6\xa4\xc5\x29\xf8\x31\x5c\x67\xaa\x21\x66\x1b\x66\x64\xf8\x7e\xcd\x14\x6b\xca\xf4\xf4\x30\x1d\xde\x39\xae\x3f\x58\x8d\x9e\x50\x15\xca\x6a\x04\x46\xa4\x81\x7a\x96\x06\x57\x45\xfa\xaf\x3d\x22\xc8\x95\xa1\xdd\x6a\x58\xbc\x0f\x12\x58\xfb\xcf\x30\x81\x69\x63\x62\x84\x43\x3d\xbd\x86\x7f\xff\xfd\x4f\x30\x96\xf8\x71\x72\xbd\x87\x59\xf4\xe2\x10\x43\x0f\xf3\xf9\x60\x5d\x8c\x26\xda\xec\x6d\xf8\x01\xec\xb7\x3f\xc3\xe8\x5b\xfc\x32\x3d\x1d\x70\x14\x8b\x43\x22\x61\x9a\xee\xb0\x48\xc5\xa1\x8f\x9f\x16\x20\xb3\xce\x19\xc1\xd4\xfb\x0f\x33\xf0\xa1\x91\xe8\x44\x23\x99\xa6\x20\xcb\xb7\x8f\x6e\x78\x19\xc6\x48\x9a\x3a\xb1\xfa\x02\x1b\x53\x1c\x5a\xcd\x2a\x2c\xf2\xb0\xa6\x7b\x1c\x22\xec\xb4\xac\x9d\x24\x95\x56\xf3\x34\x8b\x4e\xb2\xa8\x76\xab\xe9\x9d\x90\x9e\x60\x43\x1b\xfb\xdc\xfe\xca\xa2\x59\x1c\xb7\xfa\xb6\x08\x9e\xd8\xf2\x86\x76\xab\x69\x0a\x4e\x52\xb0\x93\x54\x61\x49\x01\x4f\xb1\x38\xb4\x6c\xc3\x22\x18\x86\xaa\x38\xb4\x6c\xc3\x9c\x4b\x43\x15\x9d\x43\x1f\xe6\xca\x63\x03\xa9\x60\xb4\xb7\x85\x37\x31\x18\x9b\xce\xa1\xa5\x15\xa6\x20\xfc\xc6\xe2\x98\xa7\xe0\xd7\xf0\x07\x58\x03\xb4\xa4\x40\x5c\xeb\x39\x0c\x9b\xde\x41\x7a\x4f\x8d\xc4\xf4\x0e\xd2\x5b\xdb\x52\x98\x91\x69\xbf\x1a\x7e\xdb\xac\x89\x3a\x23\xe7\xd0\xe6\x1b\x26\x6c\x90\x63\xb5\x5b\x85\x45\x42\x6c\xb0\x4f\xdc\x82\xb7\x61\x70\xac\xe6\x32\x2c\x99\x83\xf4\x0e\xd2\x24\xcd\xb1\x49\x8e\x95\xfa\x22\xfb\xd5\xc3\x1c\x7c\x57\x48\x8e\x2b\x2c\xf6\x61\xb2\xbd\x38\xa4\xb8\xa6\x15\x40\x44\xbc\x9e\x23\x0c\x37\xc3\xd5\xf7\xa9\x05\x98\x56\x00\xe1\xe1\x16\x4c\xe4\x5f\x4f\x69\xf8\x07\x58\x9d\x78\xcb\x83\x73\xda\x15\xe2\xaa\xf4\x96\x07\x63\x53\x9c\x52\x8a\xd3\x5b\x1e\x42\x5a\xcf\x21\x79\x92\x56\x73\x61\x91\x8a\x53\x02\x3b\x4d\x6f\x38\xa7\xc5\x29\x81\x9d\x16\xc1\x30\x36\xc5\xd9\xd4\xb7\x19\x39\xc9\xc8\xfa\xf8\x65\xa5\x01\xc6\xa6\x38\xa5\x2b\x2f\xef\x6d\x8b\x7b\x9b\x84\xd2\x32\x05\x61\x91\x0a\x86\x54\xd7\xd3\x6b\xf8\x03\xac\xb7\x2d\x82\x61\x7a\x8a\x53\x9a\xf5\xb2\x7e\x85\x2a\x21\x71\xde\x9c\xb4\xe5\x6d\x09\x7e\x65\x27\xb3\xe4\xd5\xd3\x30\x8c\x4e\xba\xe1\x34\xbc\x00\x4f\xc1\xdb\xf0\x8b\x4e\x34\x12\x53\x70\x6d\x6c\x90\x5a\xae\xcb\x6a\x17\x8b\x78\x4e\x4d\xc3\xb2\x76\x80\x38\xd9\x2b\xdc\xb7\x29\x88\x80\xd9\x38\xa5\xe3\x6f\xf3\x20\x0b\xae\x4f\x1d\x59\xb6\x09\x8b\x82\x25\x71\x6a\x71\x6f\x8b\x02\x38\x9f\x05\xef\x63\x9f\xd8\x16\xa6\x30\x82\xc5\xa9\xc5\xbd\xcd\x9a\x30\x82\x5d\x3e\x56\x6c\x6b\x63\x08\x98\x0d\xde\x99\xd6\xd3\x63\x18\x1f\x2f\x3e\xd9\xe6\x41\x9a\xb5\xa6\x24\xf2\x36\x05\x37\x29\x18\x7e\x7b\x1b\x46\x27\xd2\xf4\xb6\xd5\x2e\xd8\xb7\xce\xa9\xad\x7a\x7b\xdf\x41\x08\xec\xc9\x94\x7a\x0f\xd3\xe0\xb1\xf1\x00\x56\x27\x5e\xc5\x70\x37\x8b\x53\x9a\xde\x63\xa9\x09\xfb\xd6\x15\x12\x61\x8f\xd5\x80\x87\xa4\x92\x02\xf8\x98\x35\x69\xed\x9a\x62\xb6\xc7\xc2\x94\xce\x67\x53\xcc\xf6\x58\xed\x82\x59\x2b\x9a\xf6\xcb\xc7\x6a\x00\x22\x69\xcf\xa9\xbd\xf8\x31\x61\x61\xed\x8a\x26\x85\xfb\xf1\xe2\x86\xcf\x5a\x34\x71\xd5\x63\x19\x0b\xb3\x56\x34\x69\x7a\x8f\x19\xf9\x21\xbd\xb5\xe6\x1f\x4b\x4d\x84\xdb\x9e\x53\x6c\xff\x78\xfb\x87\x2b\x5b\x34\x4d\xda\xe3\xcd\xeb\x21\xbd\xb5\x5f\x3e\x56\x73\xe1\xef\x16\x4d\x1b\xfa\xe3\x35\x0f\x4b\x5a\x34\x1d\x84\x1f\x9f\xee\x10\x79\x7b\xf9\x38\xf4\x58\xf4\xc2\x92\x16\x4d\x73\xf9\x9a\x91\x61\x49\xbb\x22\xfe\x90\xad\xb1\x5e\x1e\xfe\xd5\x46\x86\xa8\x21\xf8\x35\x8c\xff\x10\x81\x5f\x8b\x04\x78\xc9\x05\x6f\x5a\xeb\xa9\x1b\x46\x27\x3a\xe2\xbe\x26\x30\xe2\x6a\xa3\x69\xed\xbf\xde\xad\x50\xda\x24\x9a\xf4\xda\xd7\x04\x7e\x49\xe0\x7e\x0b\xfe\xd7\x09\x08\xac\xed\xf4\xb5\x1a\x00\x43\x5b\xb0\x60\x40\x3d\xb9\x13\x32\xb4\xfb\xf6\xda\x87\x97\xdc\x39\xa5\x06\xbc\x56\x03\x5e\x52\x52\x3b\xe1\x67\x4a\xc2\x79\x2e\x9a\xf6\xcd\xcf\xdb\x12\x82\x68\x4f\xe6\x9a\xab\xa7\x61\x18\x23\xd1\x2c\x7d\x16\x09\x1f\xf4\xab\xa6\x7d\xf3\x33\x61\x3f\x52\x50\xbb\xd5\x67\xfd\x0a\x61\xb2\x97\xcf\x9b\x9f\xb5\x03\xf8\xdc\x05\xcb\x0e\xd4\xd3\x67\x18\xe3\xf6\xdb\x26\xec\x47\x86\xd6\x8a\xfb\xac\x06\xc0\x14\x18\x4d\x47\xae\xcf\x07\x06\x04\xcc\x5e\xa9\x0d\xf2\xb3\x5c\x81\x61\x30\x78\x71\xfc\xc4\x67\x86\x86\x61\xf0\x4a\xed\x9b\x9f\xa7\x01\x01\xb3\x57\x6a\xdf\xfc\xac\x34\x20\x04\x36\x78\x1f\xfb\x38\x89\xdf\xc3\x24\x7e\x71\xc9\x36\xf6\xb3\x00\x81\x61\x30\x2e\x69\xa8\x3f\x8b\x04\x18\x06\x2f\xe6\x82\xa9\x27\x89\x04\x98\x02\xaf\x54\xdf\x3f\xef\xf7\x28\x49\x12\x57\x33\x1c\x86\x57\x4d\xda\xbc\x05\xbf\x86\x8b\xab\x2e\xb1\xfd\xcf\xfa\xd5\x0f\xfa\xd5\x94\xb9\xe2\x67\x11\x0c\x0b\x60\x5c\xd2\x6a\x7e\xe6\xd8\x1f\x39\x56\x27\x9a\x9f\x77\x2b\x98\x02\x83\x8e\x3f\xf5\xe4\x01\x62\xed\x5f\x12\x20\x3f\x6f\x62\x3f\x6e\x62\x62\x88\x9f\x29\x08\xaf\xbe\xb8\x24\x40\x7e\x5e\xfb\xf0\xe3\x8b\x4b\x3b\xe1\xcf\x92\xf9\x47\xc2\x72\xa5\xa5\x8d\x8e\xcc\xdc\x17\x17\x75\x65\xa6\xef\x63\xa3\xf4\x2b\x3a\x11\x3f\x4e\xd8\xf7\x30\x45\x5f\xf0\xf6\xf6\x49\xb9\xef\x55\x03\x9d\x0c\x75\xa2\x35\x9f\x07\x14\x29\x3a\xb9\x3c\xcc\xdf\xc7\x06\xb8\x8a\xbb\x55\xca\xab\xef\x49\x58\x36\x83\xc1\xf2\x8f\x53\xf3\x3d\x4c\xbb\x17\xcc\xfe\xff\x38\xdd\x5e\x35\x30\x12\xea\x85\xa9\xd0\xd6\x6a\xa0\x93\x54\xdf\xdb\x9d\x90\xd9\x68\x97\x60\x96\x3d\x36\xb0\xe6\xb9\x48\x52\x31\xac\xd5\x28\xc2\x32\xc6\xfc\x71\x02\xbd\x6a\x6c\xc0\x53\xf0\x6b\xf8\x03\x9c\x82\x7f\x82\x71\xdb\x22\x0b\x49\xca\xc5\xee\x61\xce\xbc\xe0\x0d\xeb\xc3\xc4\x79\x6c\xa0\x08\x21\x77\xd9\x54\x0c\xeb\x93\x08\x4f\x8d\xbb\xa9\x13\xed\x3f\x89\xf0\xd4\x93\xf5\x4c\x1f\xe7\xd0\xab\x06\xfa\xc6\xbd\xe6\x93\x72\xb1\xab\xc6\x02\x1c\x82\x3d\x6e\x30\xdb\xed\x01\x6e\xf7\xcd\xb2\xe7\x5c\xae\xa9\xf0\xd3\x87\xc9\xf2\x82\xb7\xe5\x8f\x93\xe5\x55\x03\x9d\xd0\xfc\x99\x2a\x58\x52\x8d\x01\x78\x08\x9e\x86\x31\xf3\xdc\xc1\x53\x9e\x77\x0f\xd3\xe2\x05\xf3\xb8\x3c\xa9\xda\x24\x0f\xf3\xdf\xc5\xdd\xd5\x89\x69\x02\x43\x6c\xf0\x0a\xf8\xc9\x26\x53\x48\xa2\x0a\x49\xdc\x62\xcd\xa6\x75\x99\x28\x9f\x7c\xa5\x47\x62\xae\x42\xe5\x91\x60\x66\x91\x7a\xd2\xa4\x35\x8a\xb0\x5b\x5f\xb9\xfd\x95\x58\x69\xbc\xd4\x7d\x9c\x0e\xaf\x1a\xe8\x24\xf4\x39\x5a\x69\x09\xc7\xb7\xb8\xc5\xb1\xf2\x77\x7b\x98\x0e\x2f\x6e\xae\xe2\xb4\x55\x94\x79\xf1\x2e\xd9\x81\x52\x51\xa9\x4f\x22\xfc\x34\x6e\x71\xec\x65\x9a\x5c\x64\x1f\x6a\xed\x79\x79\xed\xc0\x95\x2d\xba\x18\xc2\xe6\x4f\x66\xd1\xbb\x52\xa4\x92\x63\xdb\xc3\xc4\x78\xc1\xdb\xc4\x7a\xba\x0d\x63\xcd\x8b\x82\x0a\x56\xad\x46\xd1\xbb\x8b\x63\x2f\x49\xfb\x44\x78\xea\x29\x83\x89\x13\xe5\x55\x03\x7d\xff\x83\xbb\xe1\x01\x38\x05\x7b\x80\x20\x15\x2f\x76\x9e\xb4\xf9\x93\x19\xf3\x4e\x19\x35\x52\xc1\xaa\xd5\xd8\x78\x3b\x04\x7f\x86\x31\x40\xaa\xa2\x69\x3b\x27\xf3\xe7\x05\xf3\xc4\x3f\x79\x5b\x28\xc1\xce\x19\x5d\x8c\xac\xf0\xd3\x87\x89\xed\xa2\xdf\xf1\x07\xd5\x28\x6f\x89\xf7\x44\x3c\xea\x19\x5a\x43\xaa\x09\x52\x0d\x94\xfc\xd7\x6a\xbe\xbd\xe2\x50\x17\x39\xba\xa6\xda\x86\x4d\x26\xc4\x0b\x46\x1d\x3e\x69\xc3\x26\x33\xe2\x9d\x0c\x5f\x7a\x98\x16\x8f\x8d\x17\x30\xdf\xb6\x05\x33\x11\x86\x1a\x9d\x87\x91\xec\x96\xe3\x88\x47\x3d\x75\x4e\x76\x2a\xbc\x6a\xe0\x2f\x87\x3b\x09\xc3\x3f\xbc\x4d\xba\xab\x96\xc7\xc3\xa4\x78\xc1\xf2\x3c\xf5\x74\x19\x46\xdf\x5d\x7d\x5b\xbc\xd3\xef\x8d\x01\x49\xf5\xb4\x0c\xd7\x91\x8b\x99\x53\x1e\x67\xce\xab\xc6\x87\xb7\x35\x92\xe5\xbf\xc4\xb5\x8a\x2e\x61\x9c\x3b\xaf\x1a\x98\xd3\xa9\xbf\xf4\x6a\x86\x17\x5d\xc8\x70\x9f\xdd\x82\xaf\x93\x73\xa7\x68\x62\xce\xa5\x61\x33\xc4\xe7\xaa\xab\x5c\x0d\x7c\x8e\x44\x82\x22\x5f\xab\x11\xc8\x07\xa9\xbe\xb7\xfb\x2e\x21\x70\xe5\x3f\xd8\x9f\xc3\xd9\x11\xa9\x86\x67\x67\x70\x76\x78\x12\x73\xa6\xbd\x6a\x60\xdc\xb4\x06\xe4\xf0\x34\x0c\xf2\x39\x55\xba\xb4\x19\x34\xe1\x81\x77\x86\xa4\xd0\xf0\x46\x43\x0f\x3c\xe6\x2b\xad\xa7\x69\x38\x0a\x96\x70\x1a\x9e\x86\x41\xf6\x4f\x0d\xd0\x22\x01\xde\x73\x31\xb4\xe5\x0d\x0b\x55\x14\x57\x0e\x19\xd7\x9d\x6b\xaf\x1a\x18\x09\x6f\xb7\x72\x78\x4f\x86\xd3\x5c\x0c\x49\x8a\xe1\x1d\x65\x90\xb0\x31\x05\xfb\x2b\xe1\x29\x13\xda\xc1\x6d\xa2\x4c\x9a\x28\x65\xbb\xce\x69\x46\x86\x2d\xf2\x64\x32\xc5\x7a\xd2\x5f\x22\x55\xde\x29\xe5\xd2\xb9\xf2\xaa\x81\x4e\x9a\xe1\x6e\x78\x00\x56\x27\x96\x9e\x34\x51\x0e\xc9\x95\x69\x1e\x44\x50\xeb\xa9\x6b\x95\x9c\xde\x51\x18\xe2\xca\x24\xa8\xf5\x34\x0c\x17\x9f\x0c\x89\x1b\x5b\x2e\x13\xde\x73\x57\x7a\xdc\xa6\x20\x82\x59\x4f\xeb\x57\x36\x51\x32\xb3\xde\xa9\xbb\x19\x67\xd6\xab\x46\x4d\xda\xd0\xba\xb4\xe5\x92\x09\xf7\xce\x94\xf4\x0c\x53\x90\xbe\x74\xa9\xaf\x0c\x6f\xd5\x41\xc2\xde\x86\xbb\xe1\xc0\xdb\x21\x78\x19\xe6\x5f\x1a\x7e\x0d\x83\x4f\x78\x25\xc9\x64\x7d\x68\xe0\xb2\x2e\x2f\x0e\x30\x2c\x82\xe1\x54\x17\x4c\x6d\x5f\x4f\x61\x38\xf1\x76\x17\xbc\x0d\xbf\x80\xa7\xe0\xcf\x30\x66\x47\xa2\x20\xcc\x9a\x34\x68\x0e\xed\x6d\xe1\x4d\x0c\x06\xcd\xd3\x2a\x46\x58\x22\xa3\x4c\xc8\x99\xd2\x53\xc2\x6b\x1e\x39\xf9\xce\xf4\xe7\x78\x07\x87\x53\xdd\x7d\x48\xd3\xb3\x2d\x32\x93\x84\x95\x42\x92\x26\x2c\x4d\x94\x43\x8a\x6b\x9a\xb0\x70\xaa\x8b\xa1\xe5\x9a\x56\x76\x90\xab\x2f\x86\x96\xab\x4d\x94\x4c\xca\x77\x26\x8f\x9f\x99\x96\xb1\x74\x9a\xd3\xdd\x4c\xa6\xd5\x80\x24\x61\xc3\xf0\x32\x8c\x49\xd3\xba\x4c\xcb\xd8\x24\x61\x25\xed\xd3\x84\xa5\x41\x73\x68\x5d\xa6\x09\x8b\xaa\xca\x31\xb4\x2e\x6d\xe7\x4c\xd8\x39\x6f\xdd\x28\x64\x5a\xf4\xd2\xce\x39\xd2\xb0\xff\x12\x12\x42\xb7\x44\x99\xd6\xaf\xe8\x62\x97\x26\x95\x77\x40\x38\xd5\xc5\x90\x50\x4a\x4b\x08\x24\xf2\x3b\x53\xf2\x3b\xad\x76\xd1\xfc\x29\x33\x62\xa6\x27\x0d\x9e\x77\x31\x35\x69\x0a\xb2\xad\x46\xf5\x3d\xb5\x8a\x6d\xfe\x4c\x9a\x3f\xbd\x1d\x2d\x5d\xed\x25\x3d\xef\x74\x03\x95\xcb\x62\x06\x06\xcf\x90\x05\x30\x97\xae\xf6\x72\x71\x76\xa4\xd2\x2d\xcf\x0e\xad\xa2\x32\xc7\xe5\xb2\x98\x81\x0b\x5e\x4c\x69\x35\x36\x96\x26\x8d\xa5\xcc\x2e\x50\x4f\xee\x9b\x62\x46\x5b\xc6\xb2\x36\xb6\x98\x77\x57\x2b\x6d\x59\xb5\x40\x58\x6d\xc8\x49\x24\x97\xb7\xba\x45\x7a\x6b\x27\x59\xa6\x37\xbc\xfa\x42\x06\xb6\x5c\x56\xd2\x90\x5d\x30\x64\x60\x63\x8a\x41\x36\x16\x3a\xf9\x83\xaf\xd1\xe3\x9c\x83\xd5\xc0\x88\x24\xb3\x6c\x4b\x4d\x18\x4d\xcf\xd4\x54\x6f\x8b\x1b\x04\xe3\xc6\x94\xb8\xd9\xde\xf2\x10\x8c\xdb\x0e\x4d\xf5\xf6\x74\xd0\x96\x3a\xb5\x6c\xb7\xa5\x3e\x3c\x07\xef\x43\xf2\x70\x5b\xea\x6f\x4e\x47\xd7\x48\x3c\x1d\x34\xb1\x4e\xad\x66\x9b\x58\x99\x93\xb0\x1d\x3a\xce\xa9\xfe\xf3\x93\x08\xdd\x6d\x66\xff\x6d\x85\x64\x73\xf2\x24\x9c\xb6\x27\x0f\x06\xd9\xfb\xd0\x9c\x6e\xef\x11\x70\x38\x0c\xf9\xec\x38\x71\xe1\xc3\xc4\x85\xed\xe0\x6d\xa8\x13\x17\x56\x03\x03\x1c\x86\x5f\xc3\xe0\x73\xe9\x29\xdb\x27\x5f\x54\x2a\x89\xa9\x33\xb8\xcd\xb7\xcc\x60\xd8\x8e\xd3\xb0\x29\xc8\xd9\x91\x14\x7a\x2c\xca\x60\x99\x8d\xa9\x55\xf1\x78\xf3\x45\x58\x70\x33\x61\x1f\x6b\x91\x34\xdf\xca\xb8\x91\x8f\x25\x1c\xdc\x13\x63\x4a\x38\xd9\x4e\x9b\x88\x16\x8e\x19\xfa\x4b\xaf\x21\xd8\x69\xdb\xd1\x0c\x4f\xc3\x18\xb7\xb6\xa5\xc7\x12\xee\xe1\xa4\x49\xdc\x3c\x9e\x34\x18\x6c\xef\x43\xab\xe2\xf1\xd2\x42\xa5\x93\x90\x7f\x0a\x73\x27\xb2\x81\xb9\xbc\xd4\x89\xe7\x92\xc6\x5e\x5b\x03\x1e\x4b\x38\x14\x40\x09\x56\x3a\x78\x98\x52\x91\x0d\xf6\x2d\x52\x79\xc5\xc1\xaa\xdb\x74\xaf\xe9\xc4\x88\x0f\x13\x23\xde\xba\xd7\xcc\xc7\xa2\x0c\x71\xcb\x11\x87\xbe\xd2\x1b\x3b\xa2\x98\xdb\xa1\x85\xf8\x5a\x8b\x84\xeb\x63\xc8\x09\xc0\x19\x13\x1f\x66\x4c\x6c\x87\xf6\xb6\xd7\xfb\x0f\xec\xb7\xb7\xee\x4c\xf3\xb5\xe0\x83\x47\x64\x04\xaf\x80\xf3\xf5\x4a\x83\x35\xb7\x1d\x5a\x80\xb6\xe6\x32\x39\x62\x3b\xb4\x83\xbf\x9e\x06\x5a\x73\x7d\xf8\xb3\x35\x37\x51\x50\x25\x42\xa7\xbc\xd7\x3b\x0a\x62\x9e\x43\x57\xd7\x69\x6b\x2e\xf3\x21\xb6\x43\xab\xe1\xf5\x56\x0d\xb3\x6e\x3b\xc4\xf6\xaf\x95\x4b\x98\x75\x23\xc4\x10\xaf\x95\x4b\x04\x3f\xb7\x43\x7b\xdb\x6b\x45\x8a\xb6\xdf\xd0\x99\xf0\xb5\x22\x85\x64\x8a\x11\x52\xd2\x5e\x9f\xa9\x5e\xd2\x5b\xbb\xd5\x67\xc2\x7e\x64\x7b\xed\xe0\x9f\xad\x18\x30\xdb\x36\xdd\x99\x3a\x13\x62\x35\xd0\x89\x56\xc3\xe7\x8d\x1d\xa1\xd2\x4d\xb7\xa0\x4e\x7a\x58\x0d\x10\x56\x9b\xef\x67\x1d\x88\x66\x5b\x79\xb0\xe5\x67\x8e\xfd\xc8\xb1\x62\xfb\xcf\x7b\x32\xcc\xb6\xed\x10\x7f\xdb\x3e\xcb\x84\x86\xb7\x27\xed\xf3\x9e\xfc\x91\xb0\x62\xe4\xcf\x84\xa5\x35\x37\x64\xf3\xf8\xbc\x47\xc0\x7e\x7b\xeb\xa2\x9b\xc9\x0e\xd9\xc0\xcc\xbb\x6f\x73\x2c\x32\x17\xb6\x53\xe7\x87\x9f\xa5\x3d\xec\xb7\x4d\x77\xa6\x4c\x5f\xc8\x06\x66\x47\x52\xf3\x67\xd6\x44\xb9\x95\x76\xf2\x6e\xc6\xe9\x0d\xab\x81\xbf\xd4\xd1\xf6\x67\xd6\xa4\x35\x37\x24\xf0\x7e\x5e\xf3\xb0\xc8\x46\x68\x76\x7e\x5e\xc5\xb4\xcf\x86\x84\xd2\xcf\xa4\x42\xf1\xe8\x08\x09\xa5\x9f\x65\x2c\x0d\xb1\x72\x10\xcb\x9f\x97\x2b\x6d\xa8\xf2\xed\x72\xc2\xc2\x6a\xb4\x1a\xf7\x69\x78\x1a\xde\x05\x93\xed\x97\x6d\xa8\x8b\x36\x54\x66\x73\x78\xd6\x91\xee\x04\x7c\xc2\x7c\xd8\xf5\x74\x19\x1e\x80\x43\xb0\xfb\x46\xc5\x0d\x9d\x4d\x96\xca\x43\x3f\x4c\x58\xd8\x98\x1f\xe8\x71\xc2\xc2\x6a\xe0\x2f\xb9\xe6\x9d\xb0\xb0\x1a\x0d\xb0\x46\x22\x52\x31\xab\x60\xa4\x3f\x67\xb9\xef\xc5\xbe\x35\xc0\xed\x01\x16\x67\x44\x36\x75\x22\x81\xc7\xac\x81\x4d\x37\xc3\xce\x1a\xf8\x30\x6b\x60\x24\x4d\xf0\xcb\x5e\xab\xeb\x80\xee\x96\x94\xc8\x4b\x95\x4c\x1e\x66\x0d\x0c\x1d\x2b\x98\x2c\x90\x0d\xf6\xdd\x05\x6f\xc3\x18\x20\x6f\xe5\x96\x0d\xb1\x0b\x86\xd8\xd0\xb1\xc2\xc9\x04\xab\x31\x91\xb2\xff\x10\x9c\x86\x31\x40\x2e\xc0\x65\x67\x56\xe6\x09\x8c\xf4\x5f\x2e\x0f\x90\xfb\xfc\x9f\x2e\xd4\x98\x34\x90\x0d\x4c\x07\x2d\x24\xeb\xd4\xd6\xb1\x10\xfc\xdc\x98\x3b\xe9\x71\xf6\xc0\x87\xd9\x03\x23\x87\x06\xaa\x85\xc8\x34\x82\x21\xdb\x1e\xb3\x03\xb2\x81\xbe\xb9\x58\x96\x3d\x63\x99\x18\xb0\xb1\x6a\x7d\x3d\x75\xc3\x13\x70\x0a\x0e\xc3\xb5\x2a\xa4\xa6\x3b\x4d\x60\x35\x40\xe0\x61\xf8\x33\x8c\xbf\x9c\xfa\x4b\x69\x63\xcc\x1e\x78\x4b\xc2\x2d\x5b\x75\x99\x18\x30\x92\xf7\x27\xab\x2d\xbf\x8d\x3d\x22\x43\x9d\x98\x54\xb4\xd3\xca\xff\x6a\xa9\x6a\x49\x35\xc0\x2f\xa9\x91\xe8\x78\xb1\xe0\x30\x7b\x4b\x1e\x2e\x3b\xcc\x2e\x9a\x6f\x99\x17\xe3\x71\xf6\xc0\x6a\xac\xff\xfe\x27\x0f\xca\xac\x65\x17\xd8\xd5\x28\xca\xa6\x3b\xf1\x57\x16\x61\x53\x6e\x59\xce\x35\x58\x8d\x0b\x70\x17\x7c\x1b\xee\xe8\xc4\xf0\x30\x3c\xf1\x76\x0a\x4e\xc3\x18\x09\x37\xf6\x65\xcf\xd8\x85\xf2\xd0\x29\x6f\xad\x75\xa5\xfb\x4e\xf6\xad\x4e\xb4\x27\x2f\x84\x2b\xa7\xdc\xb2\x96\x0a\x41\x57\x03\x33\x1f\xea\xc4\xf4\x86\x0d\x38\x0f\xde\x10\xaf\xcb\x6b\x1f\x4e\xaf\x29\x6f\xad\xa5\xba\xd1\x0f\x13\x1a\xde\xcc\x5c\xf0\x2c\xbb\xc0\x2e\x98\x86\x53\x8a\xd4\xb2\x69\x98\x99\x0b\x6f\x6d\x06\xeb\xda\xfe\x78\xd2\x5b\x2b\xce\x2e\xb0\xeb\x22\xbd\xc5\x27\x97\xe9\x7d\x91\xde\x5a\x71\xaa\xa1\x52\x8d\x06\x78\x0a\xbe\x0d\x43\x4c\x8a\x4f\xec\x02\xcb\xcc\x85\xc9\xc4\x1d\x0f\xd3\x17\xb2\x81\xbf\x14\x9f\xdc\xe6\x58\xf8\xc2\xa6\xb6\x3c\x27\x2c\xac\x06\x3a\xd1\x02\xbc\x2d\x12\xee\x92\xae\x29\xf5\x85\x59\x0d\xd1\x28\xc2\xdf\xa7\x24\xb3\x1d\x66\x99\xc7\x30\xa5\xd5\x2c\x1b\x90\x99\xd0\xf0\x96\x9b\xd0\xba\xb5\x27\x33\x73\x61\x1e\x5a\x80\xb7\x29\x08\x4b\x71\x1e\x5a\x3b\xb7\x19\xf9\x26\x61\x43\x7f\x69\x51\x80\x84\x86\xb7\x9c\x8a\x96\x5d\x60\x99\xc7\x30\xe5\xad\xb5\xba\x19\xb9\x93\x91\xb5\x00\x6d\x40\x66\x42\xc3\x5b\x2e\x48\xab\x7b\x6f\x83\x67\xec\x2d\x17\xa4\xd5\xb5\x55\x2f\x18\x90\xf3\xd0\x34\xd8\x80\xbc\x60\x40\x6e\xed\x30\xdc\x0c\xe3\x2f\x69\x1b\x5b\xaa\xb1\x52\x0d\x4c\x03\xef\x38\x96\x1d\x66\x17\x7c\x61\xf3\x74\x27\xe6\x6f\x58\x8a\x5b\xa3\x8a\xb1\x14\x4f\x5d\x8d\x8d\xb7\x53\xf0\x63\xf8\xc5\xdb\x53\xf0\x67\x18\x7d\x6b\x27\xec\x16\x1c\xb0\x0d\xa7\x37\x76\xbb\xc0\x2e\x54\x78\x4e\xd3\x64\xe8\xf0\xb4\x10\x41\x9d\xa7\xd6\x8e\xad\xb9\x4c\x68\xd8\x9a\x56\xf1\x30\xa9\x60\xe4\x4d\x26\xe7\x7b\x9c\xde\xb0\x1a\x1f\x60\xfe\xe5\x30\x4d\x60\xd6\x4d\x6f\xa7\x23\xdd\x77\xb2\xef\x10\x2c\x1e\x44\x3d\x95\xf4\x06\x39\x4c\x13\x58\x73\xf3\xd4\x6a\x18\x5e\xc5\xac\xa7\xc2\x32\x15\xcf\xb2\x7b\xea\x1a\xfc\x78\xad\x06\x5b\x73\x99\xb9\xf0\xb6\x1a\x30\xbc\xb1\xc3\xe1\x34\x4f\xf1\xb7\xad\xb9\x4c\x58\xd8\xe4\xcd\xe2\x84\x85\x0f\x13\x16\xa6\x9c\xa1\xd6\xf4\x76\x04\x87\xd4\x3c\xc5\xf6\xd3\xcc\x86\x10\xe9\xd6\xa4\x1a\x4d\x6f\x47\x93\xa4\x92\x8c\x9d\x66\xb6\x49\x66\xd3\x34\x4c\x2b\x52\xf0\x53\x6d\x4d\xb2\xca\xb6\xdf\x05\x3f\xd5\x26\xe7\x96\x35\xad\x48\x21\x16\xba\x35\x5a\x48\x96\xbd\x56\xd7\xac\x8d\xbf\x31\xbd\xd4\xb3\xec\xb5\xba\x60\x04\xce\x53\x4b\xca\xb6\x5f\x26\x32\x4c\x26\xce\x7b\x96\x6d\xbf\x6b\x92\x07\x35\x3b\xd3\x9b\x17\x02\xaa\x5b\x93\x64\xb3\x33\xeb\x82\x6d\x38\xe5\xc4\xb5\xa6\xf5\x2b\xd8\x86\x5b\x93\xb2\x30\x3d\x0d\x93\xac\xa9\x8d\x71\x7a\xcd\xc3\xab\x35\x4f\xed\x80\x76\x66\x65\x5a\xc3\x3c\xb5\x00\xc3\x1c\x1b\xe4\x58\xcd\x7c\x98\xde\x30\x02\xb7\xc6\xab\x9a\x15\xde\xfe\x03\xab\xd8\x0b\x30\xbc\xcf\xc3\xf6\x9b\xed\x3c\xfe\xa2\x1a\xd9\xa9\x75\xc1\xaa\x9b\x4c\x69\x51\x4f\xcb\xf0\x53\xb0\xd8\x28\xbc\x6c\x11\x38\x9d\x66\x0c\xbb\xa9\x2e\x98\x77\xb3\x49\x67\x0e\x2f\x5b\x78\x98\xa6\x39\xc0\x56\x5d\x66\x45\x4c\xf9\x31\xad\xf4\x1e\x91\xfc\x5a\x29\x52\xe9\xaf\x85\x87\x69\x36\xe9\x6e\x2a\xa5\xf2\x30\x75\x62\x36\xe9\x57\x76\x25\x65\xb2\xc4\x6c\xf4\xae\x58\x69\xed\x1d\xa5\x56\x6e\x2f\x2d\x7b\x98\x32\x75\x62\x36\x6d\x34\x36\xdf\x32\x59\x62\x93\x1f\x13\x33\x26\xa2\x41\xc1\x37\xf5\x39\x66\x51\x78\xa0\x66\xa3\xc5\x78\xa5\x29\x08\x3b\x6d\xb6\xa1\x91\x78\x91\xc3\x03\x35\x9b\x16\xa2\x1d\x4f\x99\xe7\x30\x9b\x16\xa2\x0d\xb2\x0b\x06\xd9\xdb\x0a\x60\x7a\xa3\x49\x6e\x34\x5a\xfb\xe9\x1d\x3c\x49\x6f\x6d\x4b\xf6\x47\x65\xfa\xc3\x6c\x52\x48\x96\x55\x23\xd8\x69\xb3\x69\xff\x59\xde\xc1\xe1\x98\x9a\x4d\xda\x81\xed\xb4\x0b\xa1\xd2\xf7\x29\x9a\xd8\x4d\x95\xe9\x0f\x93\x59\xa7\x9e\x65\x3b\x2d\xd3\x1f\xde\xa7\x48\xb5\xbc\xb1\xa3\x6c\x4b\xca\x19\x6a\x2d\xef\x28\xa8\xdf\x72\x5b\xae\x2c\x13\x16\x76\xda\xbc\xa4\x00\x2e\xaf\x7d\x78\xaf\xe6\x75\xf8\x6d\x8f\x1b\xac\x79\xd1\xb2\xb3\x6c\x90\x5d\x8b\xaa\x91\x74\xb7\xe5\x8d\x1d\xfe\xa8\x29\xf7\xa6\x65\x7f\xd4\x05\x63\x6a\x6b\x7a\x7b\x7b\xd9\xc2\x03\x35\x99\x6e\xa2\x9e\x2e\xc3\x10\x4e\x92\x42\xdb\xd2\x13\xa6\xd5\xbc\xa4\xe9\xd9\xb4\xca\x3c\x87\x4d\x5e\x66\x6b\x9b\x91\x61\x43\x6d\xa6\xf7\x36\x05\xe1\x98\x9a\xd7\xe5\xb7\xc3\x30\x24\x85\xf6\xfb\x6d\xc2\xc2\xb4\x9a\xd7\xe5\x4e\x5e\xc3\x1f\x60\x7d\x8e\x55\xa3\x4d\x0a\x4a\xa8\xda\x2a\xca\xf4\x87\xb7\xf5\xc2\xed\x35\x8f\x78\xeb\x94\x8f\xd4\xda\xa6\x20\xcc\x9f\x29\xf7\xa6\xb5\xad\x1a\x6d\xa8\x46\x97\x64\x96\xbd\x57\xd7\x26\xc7\x4a\x01\xb4\xf7\x2a\x73\x24\xe6\xa5\xe3\xd0\x63\x09\x01\x3b\x67\x5e\x62\x7b\xdb\x39\x17\x2c\x9b\x29\xf7\x26\x27\x43\xac\x06\x06\x48\x03\xc4\x7a\x2c\x0a\x1e\x52\x50\x73\x69\xc7\xd3\x05\x13\x65\x32\x39\xc5\xb3\x6c\xa2\x64\x56\xc4\x76\x49\xd9\x79\x64\xf0\x59\x30\x4a\xde\x72\x98\x5d\x76\x3c\x5d\xa8\xe8\x92\x57\xfa\xed\xc7\xf0\x8b\x4e\x2e\xc1\x9f\x61\xfc\xa5\x36\x03\x7b\x98\x32\x87\x62\x5e\x52\xbb\x6c\x8b\x5c\xa8\xe2\x72\x37\x3a\x8b\xac\xd7\xab\x18\x05\x59\x52\xce\x50\xcb\xd6\xc5\x05\xeb\x62\xbb\xfe\xc1\xaf\xe1\x9a\xf9\x5b\x62\xfd\xf5\x9e\xfc\x62\x8f\xb8\xc5\xf6\xaf\xb9\x0a\x39\x14\xdb\xa5\xe3\xd0\x6b\x2b\x06\x72\x28\xe6\x2d\xb6\x7f\xad\xd5\xc0\x57\x34\xe5\xc7\xb4\x5e\x2f\xc0\xb7\x24\x5f\xde\x32\x85\xd8\xba\xb8\xde\x22\xce\x2d\x8f\xde\x65\x17\x52\x66\x54\xcc\x5b\xfc\x6d\xeb\x22\x53\x2b\xde\x4d\xea\xb9\x5d\x48\x17\xec\x89\xed\xe2\x75\xd0\x7a\xbd\xf9\xc2\x57\x34\x6f\xed\x24\x9f\x49\x05\x7b\x62\xca\xbd\x69\x7d\x56\x76\xe0\x1d\x9a\xb7\xb4\x31\x5b\x17\xd7\x57\xa4\xbc\x9b\x68\x62\x5f\x51\xe6\x5f\xcc\x5b\x4a\x9a\xad\x8b\x4c\xc4\x78\x37\x5a\x5c\xd7\xe7\xe5\x8a\x38\xf1\xbb\xe9\x2c\x68\xa3\xe3\x82\x99\x31\x6f\x6d\x30\xf6\x15\x5d\x30\x3a\xa6\x9c\xa1\xd6\xe7\x75\x09\xa7\xd1\xbc\xb5\x65\xd8\xe8\xb8\x10\x4d\x7e\xcb\x13\x79\xd9\x85\x74\xc1\xe8\x98\xb7\x56\x83\x8d\x8e\x4c\xdb\x78\xcb\x13\x79\xd9\xba\xb8\x50\x25\x25\x6f\xad\x86\xcf\x14\x84\x75\x31\x6f\x6d\x02\x9f\xd7\xe5\x47\xc2\x4a\x14\xd8\x29\x74\xfd\xc8\x83\x62\x7b\x9b\x11\x17\xcc\x88\x77\xd3\x5c\xfe\xbc\x73\xa3\x1c\x4a\xde\x3a\xc3\xfe\x4c\x2a\x84\x85\xb7\x4b\xaa\xc5\xcf\xa4\x82\x75\x31\xbb\xc4\xfa\xcf\xcb\x15\xbe\xa2\xd9\xc5\xdf\x3f\x99\x6d\x17\xc2\xc6\x6f\xab\x8b\x76\x21\x65\x96\xc6\xec\x3a\x84\xfc\xcc\x83\x28\x9e\x92\xfd\xfc\x8b\xaf\xd1\xfa\x79\xeb\x40\x35\xe7\xdb\x7a\x8a\x7d\x46\x99\xe4\x31\xbb\xc7\xef\xd5\x0c\xe7\xd0\xec\x9a\x25\x3b\x87\x2e\x58\x30\x53\x2e\x54\xdb\x16\xcc\x8d\x92\x2b\x77\xa3\x6f\x80\x73\x3b\x56\x63\x00\x4e\xc1\xd3\x70\xcd\x92\x62\xb5\xb7\x0d\x9b\xcc\xed\xd8\xae\x7f\x7d\x7f\x86\xf1\x97\x1c\xf7\x56\x25\x96\x87\xb9\x1f\x53\x81\xd3\xdb\xf6\x4e\xe6\x7e\x6c\x17\x95\xb4\x6d\x57\x52\x26\x79\xcc\xee\x01\xa6\xff\x12\xaa\x11\x53\xf9\x3d\x4e\xf9\xf8\x30\xe5\x63\x93\xeb\xae\x53\x3e\x3e\x4c\xf9\x98\xf2\xbf\xda\x2a\xb5\xf2\x30\xe5\x63\x63\x39\xf1\x7a\x5a\x86\xf1\x97\x5d\xb0\xe8\xcd\x24\x8f\xa9\xe0\xe6\x6d\x7b\x27\x93\x3c\x36\xe6\x4c\xaa\xa7\x6d\xf8\x07\x98\xa4\x72\x38\x3e\x53\x3e\xa6\xc2\x95\xb7\xed\x9d\x4c\xf9\xd8\x98\xb3\xaf\x9e\x86\x61\xfc\x25\xd5\x97\xad\x2a\x29\x0f\x73\x3f\xa6\xbc\x9e\xb6\xfd\x51\x99\xc4\x31\xe5\xf5\xb4\xcf\x74\xdf\xe4\x73\x6a\xa8\x5b\xa5\x9b\xab\x81\x71\xeb\x2b\x4f\x13\x16\x86\xcf\xec\xd4\x0e\x9c\xdb\xb1\x1a\xe8\x3b\xf4\x39\xcb\x23\x21\x43\xa7\x06\xb8\x3d\x6e\x56\x03\xe3\x26\xb6\x55\xb2\xe4\x61\xb6\xc6\x1c\x5c\x5a\xce\xd6\xf8\x6c\x84\xeb\xa7\x82\x6d\xb7\xcd\x88\xcc\xa1\x98\x4c\x80\x51\x4f\x61\x18\xe3\xe6\xbd\x0f\xf3\x2b\xb2\x51\x93\x36\xc4\x3e\xaa\x36\x52\x8d\x0f\x30\x49\x65\x9f\x51\x26\x5a\xcc\x71\xa9\xef\xe5\xbe\xc9\x10\xa2\x77\xd3\xb2\xdd\x8d\xdb\xe9\x74\x27\x3f\xc1\x28\xdb\xa5\xa0\xcf\xdd\xb4\x75\x30\xd1\x62\xbb\x78\xc3\xea\x44\x8b\x0f\x13\x2d\xa6\xbc\x70\xb6\x6d\x91\x4c\xad\x98\x72\xb7\xd9\x76\x25\x65\xea\xc4\x94\xbb\xcd\xb6\xd1\x91\xa9\x13\x93\xb9\x34\xeb\xe9\x36\x8c\xbf\x0c\xbf\x9d\x86\x17\x60\xbf\xbd\x0d\xb3\x6f\x52\xf0\x32\xbd\x69\x74\x94\x5f\xcd\xbe\xbc\x00\xe1\x81\x9a\x83\x3a\x3e\x13\x29\xb2\x81\xdd\x4a\xa4\xb2\x3f\x2a\x53\x27\x26\x53\x87\x3c\xdb\x1e\xa6\x1b\x66\xc6\xc6\xf2\x64\xf5\x34\x0c\x63\xd2\xa6\xfa\x96\x9e\xb2\x69\x5d\x1c\xfe\x1c\x9d\x4d\x98\x51\x31\x47\x68\x80\xdb\x03\xc4\xd6\x21\xdf\x97\x6d\xeb\xe2\xbe\xa8\xbe\x50\x1b\xdb\x8e\xa4\xdf\x08\x99\x4f\xc5\xca\x6d\x95\x62\xae\x06\x66\x9e\x7a\xa1\x53\x27\x3e\x4c\x9d\x98\x53\x8c\x7c\x7b\xa5\xc1\x03\x35\x59\xfd\xe2\xd9\x76\x3c\x65\xb2\xc4\x64\x8e\x90\x87\x19\x13\xd9\x60\xdf\x1a\x89\x36\xdf\x0d\x0f\xd4\x9c\xa7\xfe\xd2\xb2\x0a\x39\x12\x9b\x7c\xd0\x9d\x23\xb1\x1a\xe8\x9b\x06\x9f\x7d\x7b\x01\xde\x50\x76\x66\xd3\x00\x97\x07\x08\x52\xcd\xa6\x01\x6e\x7f\x0e\xb8\x4a\x89\x46\x9c\x0c\xb1\x1a\x78\x5b\x62\xbd\x7b\x13\x80\xb9\x2e\xe5\x15\xb2\xed\xfd\xb9\x11\xdf\x7e\xeb\xbc\xb6\x6d\xbc\xdb\x70\xf3\x4c\x85\xe8\x38\xeb\x61\x35\xf0\x97\x92\x9a\x8e\x5f\xdf\x9d\x1f\xcf\xc3\xea\xb6\x3f\x27\xb3\x1e\x26\xab\x30\xd4\xd3\x63\xb8\x16\x20\xd3\x04\x3e\xbb\x5b\x22\x23\x22\x3d\xa7\xd6\x65\xf7\x57\xd2\x4a\x27\x5f\x86\xdd\xbd\xa4\x3a\x3f\x9e\x0a\xf7\xb6\x87\x26\xd3\x1f\xa6\x62\x2c\xf6\xf0\xe6\x85\xa8\xf2\x94\x07\xc1\x1e\x16\xa6\xb0\xcb\xb5\x5b\xd3\xa0\xf4\x86\xd5\x40\x27\x54\x31\x9c\xde\xf0\x61\x7a\xc3\x0c\xcd\xa5\x7d\x2e\x37\xad\x74\x71\xa8\x6f\x2f\x92\xc1\x99\xd7\xa4\x39\x88\x7c\x23\x5a\x3c\x95\x65\xc5\x89\x0a\x1f\x26\x2a\xcc\xf0\x48\xbc\x1a\x50\xd3\x38\x43\x0c\x31\xe4\xca\xb3\xe1\x7c\x79\x37\x0f\xd0\xd2\x87\xc6\xbb\xd0\x5f\xda\x78\xb7\x61\xbc\xbb\x15\xe7\xb3\x1d\x2d\xce\xd4\x84\x29\xa7\xe7\x3d\xbd\xfd\x23\x3e\xbc\x29\xcc\xc0\x89\x0a\xab\x81\xbe\xb5\x17\x4f\x2f\x12\xd8\xe5\x32\xb4\xe9\xda\x43\x73\xa3\xbe\x48\xc6\xfd\x87\x6a\xb2\xf5\xb2\xff\x1a\xee\x1f\x3a\x83\xef\x29\x0b\xc9\x86\x03\xe7\xad\xc3\xc8\xb6\x11\x6f\xa3\x06\x72\xea\xc2\xdb\xe9\x0d\xab\x81\xbf\x96\x76\x30\xbd\x86\xe0\xa9\x99\x72\x50\xde\xd3\x52\x08\x9e\x9a\x19\x5d\x9d\x58\x0d\xa0\x59\xee\xd6\x8e\xe2\x60\x72\x66\x3d\x4c\xdd\x55\x3b\xeb\x61\x35\x40\x04\xea\xcc\x3b\x2c\xc7\xe1\x9b\xd9\x14\x6b\xe1\x64\x88\xd5\xc0\x5f\x4a\x4c\x86\xc5\x7b\x70\x3a\xb4\xd1\xd8\x53\x73\xd3\x2c\x17\x62\x7f\x07\x93\x6f\x78\x53\xa6\x6e\xb6\xb7\x8a\x20\x57\xa3\xce\x9b\xb7\xd4\x17\x47\x8d\x6f\x9a\xe3\x42\x62\xd2\x51\xe3\x1b\x4e\x96\x29\x67\x5c\x67\x3d\x7c\x98\xf5\xb0\xe9\xa0\xe3\xac\x87\x0f\xb3\x1e\x66\xa4\x61\x0f\x10\x0c\xad\xe0\xb2\x1d\xdb\x23\xc1\x2d\xa8\x8e\x45\xdb\x31\xe6\x1b\xe1\xe3\xa9\x5b\x73\x67\x3d\x7c\x98\xf5\x30\x59\xc9\xfb\xd9\xe9\xd5\x0c\x97\xcc\xd4\x85\xf7\xb6\x4b\x26\x33\x17\x66\xf2\xdc\xb6\x6d\xea\xdb\x30\xf5\xdd\x4c\xf6\xf9\x6c\x87\x87\x33\x45\x61\xea\x66\x7b\xa7\xe5\x38\xcc\x75\xed\xee\x86\x97\x61\xf4\x2d\xa1\x9a\x5e\xe4\xf0\xb6\x4c\x5d\x61\x6f\x1b\xef\x36\xcc\x75\xed\x96\xda\x65\x27\x4b\x66\x2e\x4c\x79\xc6\xee\x34\x61\x93\x84\xd5\x9e\x9c\x56\x48\x60\xbc\x6b\x0a\x79\xd9\x69\xcd\x03\x71\xe2\x8d\x79\x0c\xeb\x69\x18\x46\xdf\xb7\xdf\x4e\xc3\x0b\xb0\x68\x62\xc5\x15\x36\xbd\xc6\xfa\x89\xf5\xe4\xcf\x21\xbd\x35\xc5\xcb\x8c\x4c\x9b\x9e\x52\x9f\xec\x65\x46\x5e\x64\x64\x71\xac\x63\xcc\x99\xe7\x30\xe5\x47\xbb\x6d\xbc\xdb\xf0\xb6\xbc\x2f\xd1\x7b\xa5\xfb\x86\x3d\xff\x9e\xfa\x4b\xcf\x0e\x4d\x7d\xba\x16\xdf\xcb\x02\x04\x4e\x98\xa9\x6b\xf1\x6d\xdf\xcb\x4d\x53\x9f\x62\x5b\xb6\x4d\x7d\x7b\x91\xed\xa5\x4b\x2c\x4f\xc3\xa2\x08\x0e\xbf\x3d\x0c\x83\x82\xd3\x6f\xbb\xef\x62\xf4\xdb\xe7\x9e\xe5\xdd\x6a\x71\xb7\x0a\xc3\x9f\x61\x8c\x44\xea\xf9\xb2\x3c\x81\x4b\x66\xa6\xf4\x14\xbb\x64\x6e\x1a\x06\x53\x3a\x90\x0d\x83\x1b\x86\xc1\xdb\xa7\x24\x47\xa4\xef\xcd\x69\xa0\xf9\x73\x3b\x22\x7d\xc3\x14\x98\x99\x7e\x3b\x0d\xa3\x6f\x2d\xee\xed\x69\x80\x4b\x63\xa6\xf4\x14\xbb\x34\x32\x75\x62\x53\x40\xd2\xb6\x4b\x23\x73\x28\x9e\xc7\xa1\x9d\xc6\xb1\xe7\x1b\x5e\x8c\x85\x37\xe1\xdb\x38\xf8\x4a\xa2\xc3\x4e\x8d\xcc\xa2\x58\xaf\x6b\x30\xe6\xe5\x4d\x5e\x96\xec\xd8\xde\xc7\xe8\xd5\xa8\x78\xa7\x6d\x43\xdd\x46\xbc\x79\xeb\xd2\xbc\xec\xd5\xb8\xe1\xd5\x78\x1e\x72\xca\xdb\x8f\xe9\x02\x47\xc6\xc2\xa7\xf0\x34\xfe\x23\x4e\x3a\x3e\xe6\x44\xa4\x4c\x6c\x5d\x27\x14\x47\x9a\x6f\x7a\x30\x32\x3f\x61\x3d\x0d\xc3\xa4\x8c\xce\x7e\x8f\xe5\x07\x3d\x1b\xbb\x64\x93\x7d\x15\x37\x0c\x81\xe7\xa1\xbb\xea\xfd\x58\x45\x82\x7b\x62\xe1\x4d\xb8\x07\x5f\x14\x2d\x5c\x1f\x6b\xb6\xa3\xd1\xaf\x4b\x21\x78\x7c\x4a\xa1\x5f\x62\xd7\x34\x39\xda\x9c\x29\x19\xcf\x43\xb7\xd8\x4e\xc5\x58\x0d\xf6\xae\x1d\xeb\xf1\xfa\x47\x60\xf9\x79\xc8\x55\x6e\xdb\x35\x71\xc3\x1c\x58\xf8\x25\x3c\x8c\x67\x31\xaa\xf6\x95\xd7\x67\x8f\x97\x12\x57\xa4\x79\xad\x2b\xc0\x30\x78\x1e\xf2\xa1\xdb\xaf\xd5\xad\x97\x14\x16\x73\xbc\xa6\xf0\x2b\x0a\xeb\x38\xfa\x7a\xb1\xc3\x4d\xb1\xf0\x14\xee\x7f\x2d\x7d\xa1\x31\xa7\xdf\xe3\xf4\x8d\xcf\x86\x5d\xf1\x3c\xe4\x5d\xe7\x44\x8d\xd5\xe0\xbf\xaa\x17\x73\xf0\xcb\x22\x9f\xba\x88\xde\xaf\x37\xae\x97\x14\x96\xa4\x7f\x4d\xe1\x97\x9c\x2d\x1f\xb8\xfd\x7a\x65\xbf\xa4\xbc\xbc\xdd\x9c\x07\xb2\x1a\x3f\xe2\xfc\x5b\xc7\x90\x6f\xd4\x5f\x3e\x0f\x5d\xe7\xef\xcf\x34\xfb\xc8\xac\x67\xfb\x4b\xbe\xa3\xfd\x59\xff\x42\x85\xe6\xfa\xd9\x10\x7e\x19\x2f\xb5\x5e\x76\x74\xe7\x9b\xac\x06\xff\x5d\x42\xee\xb3\xe6\xf5\x51\xf3\x92\x76\xe4\x30\xf3\xfd\x51\x2a\xe8\x1a\x7b\x7f\x56\x05\x3e\x32\x2d\x0b\x38\x3c\x4e\x35\xf9\x30\xd5\x64\xe1\xfa\x5b\x4b\xc5\x4f\x44\xd2\x7e\xf3\x59\xcd\x42\x59\xe5\x5b\x16\xf9\xed\xe0\x71\xe6\xa0\x3c\x0f\xe5\x0c\x71\x12\xca\x6a\x70\x0e\xa4\xad\xfd\x4c\xd3\x1f\xb9\xf6\xd4\xf9\xe3\x67\x01\xf0\x13\xad\x75\x00\xf9\x59\x34\xfe\xc8\x9f\xa7\x56\x85\x6d\x88\x4c\x2d\x79\x5f\xff\xe0\x65\x98\xc3\x91\x50\xff\x79\xd7\x41\x15\x97\x66\x63\xd6\xcf\x44\xfb\x91\x0f\xe5\xaa\xb3\xed\xba\xc8\x2c\x93\x85\x6b\x34\x16\xb1\x3f\x11\x4d\xec\x6f\x43\xe1\xfe\x91\x11\x25\x48\x1c\x2e\xbe\x59\xed\xe5\xd0\x6d\xef\xfe\x79\x2f\x41\x84\x78\xeb\x92\x23\x3f\xd3\xf2\x47\x5a\xb2\x3a\xd9\x1b\x07\x57\x7a\x35\x1a\xf1\x4b\x78\x37\xbe\x89\x77\xe1\x9f\x71\xf6\x83\x83\xcb\x1b\x8a\x19\xaf\xc6\x24\x7e\x0b\x5f\xc6\xd9\x0f\x24\x55\x3d\xbe\xc6\xd9\x4f\x53\x3f\xcb\xe3\x21\xab\xd1\x1e\x5d\x8f\x61\x1c\x2c\x02\xb5\xa1\x9e\xb6\xe1\xa7\xe0\x50\xef\xcb\xa3\xe4\x2a\x6d\x97\xbe\x8a\xfb\x4f\x35\x20\x03\x86\x06\x49\x5a\x56\x83\x7f\x8a\x1d\xa2\x1e\xd3\x38\x24\x0f\x1d\x04\x5e\x67\xe5\x7c\x99\x95\xb3\x70\x76\x2f\x3b\xe0\xcb\x44\x9c\x85\x0f\xe1\xb7\x71\xfe\x6d\x08\x5e\x86\xd9\x4d\x27\x0d\x4e\xd3\xf2\x24\x5f\xf2\x9e\xb9\x1e\xbb\x71\x0e\x73\x1c\xc2\xd3\x38\xfb\x19\x1a\xce\xd2\x67\x9d\xa2\xe5\x54\xff\xcb\xef\x73\xd9\xb2\x68\x41\x3d\x3e\xc6\xc1\x3a\x53\xa3\x37\x31\x4f\x32\x26\x8d\x2e\x6f\x9c\xdc\xb5\xab\xc1\x6e\x42\xdd\x6f\x77\x43\x0e\x0c\x12\x4d\xb1\xe5\xd5\xe0\x57\x45\x0a\xef\xc6\x39\xca\xf4\xfb\xcb\x38\xbb\xcf\x5b\xf8\x6b\x9c\xc3\x49\x0e\x53\x25\x5c\xaa\xa1\x7e\xd4\x7f\x86\x71\x70\x4e\x5e\x82\xf5\x55\x8d\xcb\x93\x57\xba\xf5\x78\x1b\xc7\x5c\x85\x7a\x37\x2d\x1b\x69\x79\x89\xbf\x9b\x69\xd9\xa8\x18\xf1\xf2\xe8\x0d\xb9\x34\xbe\xcc\xe3\x59\xb8\xba\x37\x07\xd2\x8e\xc8\x18\xd1\xd7\x69\x3d\xab\x01\x2d\x22\x9b\x60\xd3\x80\xb5\x6b\x59\x73\xe0\x75\x02\xcf\x97\x09\x3c\x1b\x33\x30\xbe\x4e\xe0\x59\x0d\xfe\xe9\x75\x0a\xef\xc6\x07\xf1\x4b\xf8\x34\xce\x7f\x0d\xc1\xdb\xf0\xc7\xd7\xd5\x7d\xfa\x5f\xa1\x30\x0d\x89\x90\x8b\x7b\x4c\x35\x3a\x60\x75\x9e\xc3\x30\x8b\xb0\xdf\x87\xf0\xc7\xf8\x8b\xd7\xf5\x49\x9e\x8f\x8b\x4c\x4c\xdd\xe2\x0d\x79\x36\x56\xe3\xfa\xef\x7f\xee\xfb\x68\x82\xdd\x3b\x79\xf8\xba\x35\x76\xf3\x30\x12\x77\x36\x26\x73\xac\xa7\x9f\x60\x08\xd1\x21\xa9\xa5\xf0\xf6\x57\x69\x3c\x0f\xee\x8f\xf5\xb8\x8c\xb3\x77\xad\xb4\xcb\x0b\x9f\x95\x5b\x0e\xee\x54\x6f\xdc\x96\xa2\x37\x79\xf8\x1a\x5d\x78\x18\x4f\x0c\x3e\x05\xeb\x5b\x6f\x2e\xf0\x4b\x0b\xf0\xf6\x02\xbf\xc9\xc2\x16\x67\x77\x6a\x42\x6e\xae\x40\x96\x2b\x78\x43\xf5\x91\xff\x1f\x63\xe7\x93\xab\x3b\x6a\x44\xf1\x79\x56\x71\x77\x90\x0f\x8c\x0d\x35\xc9\x24\xe3\x64\x0f\x60\x6c\xa9\x07\xdd\xfd\xf4\xd2\xbd\xff\x08\xce\xf9\xbd\x28\x51\x06\x6f\x70\x25\x7c\xc4\xad\x0f\xca\xf5\xcf\x05\x14\x53\xa5\x35\xf3\x65\x19\x2b\xcc\xaa\x48\xf6\x8a\x6d\xb7\x6f\x4d\x59\x8d\x4b\x78\x35\xde\xc1\xc7\x22\x63\x53\x5c\xd0\xe3\xa2\xc9\x32\xfa\x13\xe1\xdb\x19\xc6\xac\xd3\xb8\xeb\xe9\x00\xde\x62\x60\x51\xf5\xd9\xf4\xa9\x32\x9b\xe9\x53\x12\xdd\x6f\xf0\xfd\xa2\x32\xc4\x1f\x60\xfd\xa8\xfd\xc5\x89\x76\x9f\x0a\x70\x8a\x07\x79\xc2\xb2\x53\xfe\xa5\x30\x1a\xa4\xec\x94\x94\x59\xe2\x4f\xa4\xe9\xf4\xf5\xfc\xc7\x4f\x6c\xf1\x9e\xd4\xd4\x5c\x0d\xfd\xca\x51\x8d\x4f\xf0\x47\xb8\x67\x31\x18\xad\x1c\x4a\xb1\xe3\x38\x47\x03\xdf\xf2\xc0\xe4\xc6\x00\x5e\x91\xec\xf5\xa3\x37\xbc\xf0\x0b\x28\xa2\x7e\xf1\x02\x2e\xa9\x79\x39\x93\xf1\x0b\x5c\xbf\x6a\x69\xf6\xd5\xcb\x53\x75\x38\x17\x5e\x8d\x7b\xf4\x97\xc4\xb0\x58\xca\x2f\x78\xba\x13\xa0\x0b\x77\x7f\x7c\xf9\x25\x15\xd5\xa2\xf0\x6c\xbe\x67\x79\x35\xb6\x40\x58\x73\x2f\x78\x7d\xc9\xc2\x16\xfb\x13\xdf\xd1\xb2\x1a\x22\x6f\x5f\x7e\xf5\x0a\xde\x36\x19\x60\x46\x2f\xe1\x2f\x56\x8a\x0b\xe1\xbf\x24\xfc\x27\x30\x54\xcc\x62\x53\x81\x97\x97\x79\x69\x2f\x53\xd1\xdc\x6a\x5e\xda\x3d\x54\x4c\x66\x35\xcf\xec\x65\x2a\x62\xbb\xd3\xa2\xa5\x58\xae\x2a\x2e\xbb\x4a\x73\x4f\xab\x5c\xc5\x35\x57\x09\x8e\xca\x6d\xac\x47\xc8\x74\x91\xa9\x86\x3d\xca\x2a\xcd\x3d\x0f\x4d\xaa\x12\xa0\xe8\x20\xf9\x47\xd5\x2f\xd6\x23\xe4\x15\xa0\x9c\x47\x33\x3e\xc1\xf7\x6c\x4f\xdb\xde\x86\xe4\x34\xcd\xf6\x74\xe0\xd2\x08\x50\x76\x8a\xb2\x20\xae\x0d\x17\xdc\x9a\xc9\x88\x7c\x63\xb6\x4d\x82\xa3\x20\x73\xaa\xfe\xa5\x1a\x1a\xe6\x79\x19\x0f\x70\xd1\x39\x25\xc8\x0d\xc1\xd9\x69\xca\x52\x4a\x35\x7c\x01\x8b\x69\x8e\x97\x1a\x4c\x6b\xb2\xed\x36\xb2\x0d\xa6\x35\x09\xc8\x69\x6b\xda\x50\x42\x95\xb7\xfc\x10\xcf\x34\x24\xa4\xc9\xb8\xeb\x4e\x81\xa9\x02\x96\x6a\x6c\xf2\x96\xee\xc0\xa9\x86\xb4\x8a\x88\x20\x60\x4e\x48\x42\xf0\xd9\x81\x56\xe9\x36\xe6\xcf\xe9\xb8\xc5\xf7\xa8\x4c\x95\xaf\x2c\xe5\x14\xeb\x03\xc3\x16\xe6\xa5\x05\x2d\xe0\x65\x98\x97\x0e\x67\x82\x70\x66\xe7\x2b\x4b\x39\xe9\x6e\x26\x84\x94\x0d\x2f\x1c\xf0\x32\x14\xb7\x5c\x36\xe2\x81\x56\xe9\x2e\x95\xcf\x65\xc1\x0c\x02\xea\x7d\xe4\xbb\x14\x3b\xb8\xc0\xd0\x85\x04\xf3\x4a\x26\x4f\x38\xb3\x93\x93\xa5\x38\xa0\x0e\xec\x9c\x76\x16\x6a\x0b\xca\x7a\x82\x65\x12\x4b\xdd\x5d\x3a\x5b\x47\x2c\xbb\x3c\x8a\x0d\x42\x87\xf3\x5d\xd2\xaa\x72\xc3\xb3\x75\x74\xb3\x2b\x9c\xc1\x77\x74\xec\x5c\x97\xb8\x5e\x0e\x7f\x3a\x71\x8b\x52\x8e\x97\xe3\xd4\x4e\x80\xd2\xe5\x3a\x2e\x2b\x49\x87\x95\x5d\xd2\x7a\x39\x8a\xef\x7c\x9a\x74\xb3\xd8\xda\xd0\xb1\x67\x5d\xe2\x7a\xd9\x1c\x77\xdc\x70\x97\xd2\x5e\x36\xaf\x1d\xe6\xec\xfb\x55\xf2\x15\xc0\x13\xf8\x51\x77\xcd\x76\x30\xdb\x21\xf9\x43\x2e\x07\xb1\xc5\x4e\xfc\xe5\xcb\x72\x33\x70\xa0\xbb\x14\xe5\xea\x2e\x2d\x19\xe8\xec\x90\x9c\xc1\xe4\x01\x17\x86\xe4\xec\xb2\x79\x1d\xe8\xec\x30\x77\xcc\xb5\xc1\x87\xdb\x30\x77\x9a\xe9\xc3\x9d\x61\xee\x34\xd3\x27\x9e\x56\xa2\x51\xcb\xa7\xb3\x0d\x3c\xea\x90\xd2\x5e\xb6\xbb\x03\xab\xbe\x0f\x40\xe7\xea\xe8\x70\xc0\x4b\x27\x14\x2f\x6b\xc3\x20\xa4\x19\x0a\x69\xaa\x63\xd2\x81\x61\x1c\x92\xb4\x6a\x75\xb8\x91\x34\xa5\x14\xab\xc3\xc3\x1b\xcf\x79\x8b\xc7\xd5\xf1\xe1\x8d\xb5\xdf\x57\xaf\xe4\xea\xd8\xe5\x46\xa0\x94\x39\xac\xa9\x1a\x3e\x80\xcb\x86\xc3\x70\x05\x1e\x22\x0e\x0e\xf1\x1d\xa2\x54\x47\x34\x77\xd8\x4e\x68\xaf\x60\x75\x40\x73\xc3\xc7\x5b\x7c\xb4\x2e\xdc\x7c\x17\xef\x03\xcc\xb9\x5a\x15\x6e\xd8\xeb\x74\xe2\x7f\xba\x4f\xf0\x47\x38\xfd\xf9\xd1\xc5\xff\xac\xb2\xa0\x53\xb5\x2c\xd5\x10\x5f\xac\x51\x37\x22\xbc\xcf\x3f\x67\x95\x0b\x5d\x4f\x03\x78\xcf\xe8\xb8\x7e\x26\xb8\xba\x71\xcd\x4e\x42\x56\x07\x51\x13\xf5\x9f\x52\x7f\xd5\xfc\x5c\x8f\x05\x7c\x73\xe2\x47\xf7\x0b\x58\x63\x2d\xc5\x78\x80\x8b\x15\x56\xe7\x89\x9d\x76\x76\xb2\x3a\xba\x72\x76\x72\xaa\xc6\x65\x29\x96\xe3\x49\xf0\xb3\xb3\x8d\xe9\x53\x4f\xf0\x07\x5c\xa3\xbf\xc4\xa2\x89\x3e\x4c\x79\x99\xea\x8f\xf2\x89\x97\x99\xe2\x11\x93\x82\x09\xce\x13\x56\x5b\x85\x87\xf8\xe4\x51\x7e\xa6\xda\xcb\x3c\x58\x05\xe7\x0f\xab\xbd\xcc\x83\xc4\xee\xb2\x93\x99\xc9\x3e\x38\x1f\x1d\x5b\xae\x36\x5d\x0f\x46\x61\xa7\x07\xd3\xa7\x59\x7d\x1e\x9c\xcc\x2e\x4e\x99\xab\x13\x13\x0f\x3c\x70\xda\xb0\x39\xca\x79\xb0\x09\x7b\xeb\xe1\xc2\x25\x6d\x0f\x3c\x70\xde\xb0\xd9\xf9\x3c\x08\xed\x23\xa1\xb5\x0f\x7b\x70\xe4\xba\x8a\xe6\xd3\xac\x57\x0f\x4e\x66\x9f\x56\xce\xd5\x76\xf4\x21\x28\x72\x36\xb1\x59\x81\x1e\x0c\xa9\xd3\x86\xcd\x29\xa4\x17\xdd\x77\xda\xb0\x39\x34\x7c\x91\xa7\x57\xf2\x64\x1f\xf6\x62\x5f\x75\x7c\xb9\xda\x87\xbd\xb8\xfd\x57\x4e\xa6\x39\x02\x7c\x61\xa5\x93\x89\xcd\x62\xf9\xe2\xc7\x5f\x05\xd3\xcd\xb1\xd5\x8b\x7d\x75\x36\xb1\x39\x14\x7b\x71\xd8\xaf\x34\xb7\x99\xf7\x2f\xc1\xcf\x3e\xcc\x9c\xb5\x2d\x62\xb6\x17\x0d\x7d\x15\xe4\x34\x87\x56\x2f\x86\xf1\x95\xf8\x35\x8b\xe5\x8b\xf8\x29\x3d\xa8\x2b\x62\x66\x7c\xac\x6b\xaa\x1b\x99\x3e\x5a\xbb\x5e\x8f\x0d\x7c\x33\x41\x4e\x20\x3e\x66\x42\x38\x3b\xa8\x4b\x4b\xd6\xe3\x04\xd7\xa4\xe4\x7c\xc2\xbb\x03\x67\x38\x3b\xa8\x5b\x41\xa6\x4a\x46\xaa\xb1\xe2\x84\x33\x99\xbc\x75\x2a\x3e\xf2\x25\xaa\x31\x35\x29\x1e\x39\xc3\x79\x37\xdd\xdd\x31\xa9\xf0\xb8\x1a\xbb\xbf\x0a\x2d\xad\xc7\x13\xbc\x0a\xcf\xc6\x03\xfc\x15\xae\x61\x26\xdb\x75\x95\x75\x2c\x5a\x6c\x59\x4f\x17\xf0\x9e\x6d\xc8\xdc\x51\xce\x71\x35\x44\xa6\xf8\x67\x2d\xf6\x91\xb4\xc6\xa3\x53\xc7\x53\xe5\x1d\xd5\x10\x9d\x62\x3a\x83\xe1\x4b\x90\xe3\xf4\xb4\x6c\x65\x23\xc9\xca\x86\xc9\x38\x8a\x0a\xe7\xdd\x74\x4d\xc4\x0c\x6f\xc4\x5b\x8d\xad\x85\x2a\x3a\x34\x55\xcb\x51\x0d\x91\x97\x80\x47\xe6\xdd\x66\xbd\x5b\x65\x7f\xc2\xe7\x7f\x67\x64\x09\xb2\x2e\xc6\x9f\xd4\x6f\x5c\x0d\x91\xb1\xe8\xf8\x26\x9d\xd5\xe8\xc2\xc3\xf8\x00\x5f\x91\xa4\xf6\xa6\xae\x27\x8f\xd2\x79\x37\xd5\xe4\x99\x41\xde\x4d\xb5\x1c\x8b\xbf\x7c\xc2\xb7\x24\xaf\x46\xdb\x70\x36\xdc\x81\xc5\xfa\xe6\x1f\x75\xf8\xa0\x8a\x8f\xe5\xf4\x9b\xca\x70\xd8\xd9\xb8\x50\xc2\x2c\xb2\xb5\x44\x95\x20\x17\xee\x39\x0d\xe6\xb4\x05\x2d\xe9\x32\x87\x19\xe4\xdd\x54\xfd\xb1\xf8\x73\x2b\x7c\x0e\x78\x35\x86\xba\x87\xf1\x07\x5c\x64\x92\x7e\xf6\x40\x1d\x76\xea\x6c\xe1\xd5\xf8\x09\x2e\x3a\x96\x63\x72\x60\xb1\x0f\xee\x2e\xdc\xf4\xe1\x82\x92\x60\x49\x2b\xa1\xeb\x71\x82\x3f\xc2\x4d\x7f\xf0\xbb\x43\x74\x0e\xd3\x19\x8c\xd3\xd3\x95\x7b\xa0\x70\xe3\x6a\x68\x9c\xfa\xc6\xa6\x72\xe3\x6a\x88\x8e\xbe\xff\xa2\xa0\x57\x7b\x87\xdd\xc2\x2f\xe3\x13\x5c\xf4\x4f\xd3\x87\x0f\xc5\x7c\xb0\xc4\x16\xbb\x60\x55\x77\xcc\x2d\xd1\xbd\x03\x8b\xcc\x65\xf2\xb0\x67\xef\xb2\x4b\x49\xe7\x6b\xd7\xe3\x09\xae\x61\x56\x0f\xb3\x33\xcc\x2e\x3a\x96\x64\xd2\x69\x51\x24\x3c\xcc\x6a\x30\xdb\x21\x2e\x37\xff\xac\x4d\xa9\x4a\x37\xe6\x96\xe9\xfe\x00\x8b\xba\xd5\xd6\xfb\xf1\xa6\x4a\x3a\x2e\xbc\x18\x3f\xc1\x45\x5e\x81\x7c\x90\x20\x0b\x25\xc8\xec\xad\xc2\xd7\xd2\x4c\x55\x6f\xcc\xed\xf8\x89\x83\x78\xab\x73\xe6\xbf\x96\xa3\x4f\x5a\xb6\x9c\x41\xfa\x2c\xf6\xe1\xdc\x72\xfa\xc5\x9c\xd8\xe5\x7d\x4a\x37\xdb\xc7\x51\xf4\x71\xaa\xe8\xe3\xa2\x42\xf7\x09\xbe\xe5\x4d\xa7\xa4\x67\x9c\xe8\xf4\xce\xb6\xe5\x66\x31\x3c\x3b\xd4\xbb\xa8\x4b\x0a\x5d\xb1\x71\xaa\x62\x63\x6e\xb6\x8e\x27\xec\x57\x2e\x2d\x25\x2b\xcb\x89\x8e\xee\x9d\x81\x0b\x87\xcc\x00\xbf\x37\x19\x8f\x11\xeb\xa8\x64\x5a\x52\xfd\x8e\x19\x24\xd3\x42\xc9\xb4\x94\xfc\x1a\x2f\x47\x05\xaa\xea\x98\x9b\x45\xdf\xd7\x29\xaf\xc6\x1e\xbb\xbc\x33\x55\x1b\x67\xec\x0b\x94\x73\xb3\xe0\x5f\xb0\x5d\x19\xb6\x94\x6c\xbe\xc8\xb0\xa9\xac\xe3\xc2\xfd\xa3\xd8\x52\x65\xd8\x52\x32\xc7\xc8\xb0\xa9\x82\x63\x39\xed\x9d\x7d\x02\x78\x35\xc4\x82\xe2\x9f\x45\xff\x2f\xcf\x55\x5f\xa4\x41\xb2\x2b\xaa\xf4\x36\x99\x4e\xc5\x13\x54\x4d\x4a\xa1\xaa\x6a\x33\xaa\xa1\xd7\x6d\x3d\xa9\xa8\xf3\xde\x0c\xb8\x70\x71\xde\x67\x72\x57\x43\x42\x66\xd3\xee\xab\x64\xa6\x2a\x33\x66\x6d\x97\x5b\x4f\x0f\xb0\x46\xa9\x2f\x49\x0a\x35\x4e\x15\x6a\xcc\xc4\x16\x2e\xd4\x38\x55\xa8\x31\x13\x5a\x54\x78\x50\xa5\xe4\xc9\xb1\x42\x45\xc9\xab\x79\x63\x0f\x51\xe1\x8d\x52\x6c\x29\x85\x07\xe9\x20\x33\xaa\xa4\xaf\x99\x35\x83\xb1\x6f\x1f\xdc\x1c\x00\x55\x7c\xb0\x6e\x99\x49\x49\xdf\xa3\x14\x6b\x9c\x2a\xd6\x98\x9b\x4d\x45\x23\x40\x51\xde\x2d\x79\x95\x95\x6a\x8d\xab\x71\x09\x3f\x8d\x07\xf8\x2b\x5c\x93\x6a\x04\x28\x4d\xca\xaf\x8f\x84\x68\x30\xbe\xc9\x5e\xda\xe2\x34\x3c\x76\x93\xba\x66\xbb\x9f\x06\xe3\x95\x8e\x4b\xd9\xaa\xd0\x88\x5b\x9a\xec\xa8\xce\xe5\xae\x47\x46\x29\x37\xa3\x83\xb9\xeb\xd1\x42\xdf\x64\x2f\x9b\xbb\xe3\x6c\x9b\x14\x36\x5b\xb8\x1b\xe1\x4c\x13\x2b\xcd\x32\xf2\x6b\xaa\xb7\xb8\xf4\x2f\x1b\x6f\xe0\xab\x7b\xd8\x62\x05\x3e\x75\xa7\xd1\x56\x77\xb1\x26\x50\x35\xe5\xd1\x52\xb6\xc2\x06\xbe\x64\x27\xd4\x72\xd8\x35\x07\xbc\x51\x7a\x2d\x79\xed\x35\x02\x0d\xdc\x1b\x00\x17\xee\x9f\xc5\xc4\x85\x79\x66\x0d\x0f\x78\x16\xe6\x99\x83\xb1\x20\x6e\xd1\x1e\xbf\x48\x26\x83\xc7\x0e\xb9\x9e\x7c\xf9\x67\x71\x3d\xfb\xa8\x6e\x0e\xdb\xb8\x80\x95\x4a\xbb\xa5\x6c\xd5\x09\xe2\x96\xbd\x0b\x30\xa5\x6c\x45\x0e\xa4\x75\x27\xe0\x8a\x73\x89\x11\x98\x4a\xe5\xdd\x92\x17\x82\x83\xbc\x5b\x74\x85\x33\x8e\x00\x3b\xee\xbd\x4b\xef\xb3\x75\xa1\xe3\x91\xf6\xd6\xbe\x4c\x34\xdd\x79\x23\xdd\xc2\x6a\xa1\xef\x78\xf7\xbd\xb7\x6f\xe1\x26\x8f\xf1\xeb\x16\x4b\x4b\x71\xc7\x8d\x77\x69\xb2\x17\x70\xa9\x91\x38\x55\x23\x31\xa5\xc3\x4a\xd2\xd1\xe4\xae\x28\xe7\xb0\x92\x74\xa2\x1c\xe5\xdd\xd2\xe1\x57\xde\x71\xcc\x5d\x5c\xf0\x92\x2c\x35\x0c\xa7\x6b\x18\xa6\xc3\x51\xd7\xc0\x03\xec\x0c\x5c\x0e\x07\x57\x03\xee\x28\x1f\x97\x0e\x3b\x8c\x81\xce\x0e\x05\x3f\x5e\xab\xa5\xe8\xe1\x74\xd1\xc3\x70\xcc\x38\x50\xe5\x7d\x44\x37\xf3\xed\x30\x50\xe5\x21\x71\xb5\x32\x0c\x3c\xaf\xb2\x71\xc9\x2b\xbb\x94\x37\x9c\x2a\x6f\x58\x9c\xdd\x8d\x81\x86\x2b\x49\x97\xbc\xe0\x4b\x7d\xc3\xa9\xfa\x86\x0b\xf7\x9c\xd0\x70\x6d\xfb\x4b\x87\xfd\xce\xc0\x88\x2a\x4b\x97\x0e\x46\x89\xab\xde\x1b\xfa\x8a\xb3\xc1\x31\x70\xd5\x43\x91\x92\x17\x65\x63\x10\x29\xed\x13\xb9\x39\xac\x6b\x83\x17\x32\xfc\x42\xac\x6b\x37\x6e\xea\x56\xa4\x74\x58\xd7\x6e\xac\xe5\x2d\xb9\x3c\x1c\xad\x90\xa5\x8b\x7d\x93\x4c\xb9\x12\xdd\x6d\x9e\x76\xba\xae\x78\x75\x34\x6e\x0c\x85\x36\xf2\xa5\xc3\x51\xe4\x4d\xcc\xa3\x8d\x7c\x71\xd6\xff\x0e\xac\xce\xff\x17\x57\xdd\xbc\x97\xdb\xef\xc5\x9a\x75\x63\x2e\x6e\x45\x44\x5e\xe1\x8d\x1b\x73\x71\x9b\xd1\xd5\x3f\x4e\x48\xa4\x34\x1e\x9f\x6e\x3e\xdb\x3b\xe3\x96\xfe\x1f\x76\x91\x37\xce\x6a\x9f\xf2\xcd\x2a\x0b\xb5\x9e\x2e\x60\x51\xb7\x6f\xbb\xf1\x56\x3b\x41\x57\x9c\x76\x8f\x9b\x90\xe8\x36\xff\x1d\x91\x4e\x14\x62\x9a\xff\xfe\x2a\x9a\xc4\x03\xbb\xba\x60\x4a\x5e\x8b\x8f\x89\x01\x98\x32\x00\x5e\x6f\x8e\x89\x88\x4f\x89\xb8\x79\x33\x79\x01\x4a\xbc\x25\x2f\x43\xc7\xc4\x24\xeb\x9c\x70\x54\xa8\xf0\xab\xe1\x5f\x95\x8c\x4f\xc2\x84\x9d\x69\xcb\x61\x23\x35\x89\x07\xa6\x38\x5c\xec\xf4\x26\x56\x64\x6f\xf8\x2b\x5e\x33\xa0\x0e\xe1\x6a\x68\xec\xb6\xbc\x13\x23\xb2\x37\xfc\x2d\xdc\xfd\xb1\xbc\x4a\xeb\xa5\x62\x5e\x92\xd6\x0b\xa5\xf5\xc2\xb6\xee\xc1\xb9\x3d\x32\x16\xc5\x9f\xb5\x0f\xce\xed\x91\x73\xf3\x8b\x7a\xe0\xb0\xb2\x7a\x49\x17\xcb\xaf\xc7\x09\xfe\x08\x37\x79\x4c\xec\x3e\x0a\x9c\x52\xb1\x7e\x92\xbf\x0b\xe5\xef\xf8\xdc\x7d\xf8\x24\xdf\x09\xbb\xcc\xd7\xee\x83\xb5\x78\x64\x2d\xbc\x0e\x17\xa4\xef\x62\xef\xff\x5b\xb8\x78\xf0\xe0\xac\x94\x60\xcb\x5e\x02\xa0\x3c\xe0\x6a\xac\xd1\x64\x27\xe3\x55\xe8\x6f\x37\x36\xcf\xb2\x2e\xf9\x7a\x39\x88\xbf\x1a\xe5\x6f\x5f\x87\x2a\x76\xbd\xc3\x41\xce\x6a\xc4\xfa\x59\x1d\x51\x7a\x39\x4a\xb0\x1a\x5b\x6e\x54\x27\x76\x3d\x9e\xe0\xaf\xf0\xb2\x71\x57\x02\x59\x8d\x1d\x8e\xea\xdc\xd1\x7a\xac\xe0\x6d\xe3\x55\x74\x6c\x76\x5e\x6f\x86\x4d\x75\xcb\xeb\xcb\x85\xe5\xaf\x76\x96\x26\x97\xee\x7f\x87\xd9\xf3\x6a\x9f\x62\x32\x15\x5f\x85\xfd\x6a\x13\xa2\x6a\x23\xad\x87\x0e\xba\xeb\x71\x5e\x42\x83\xbe\xbb\x88\x4d\xca\x46\xe9\xbb\xf7\xb5\x6e\xb3\xf5\xb2\xcb\xf0\xd5\xbe\xc2\xa4\x8a\x37\xef\x27\xde\x56\x36\xbf\xd4\xec\xe2\xd8\xe7\x7f\x6a\xfa\xae\x87\x5f\xfb\xb7\xbf\xfc\xfd\x1f\xfd\xdb\x3f\xfb\xaf\xcf\xd7\xfd\xe7\xf7\xef\xcf\x6f\x7f\xcc\x5f\xee\x3f\xbe\xfe\xba\xd0\xaf\xf9\xbc\xbf\xfc\xf6\x7c\x7f\xfe\xf5\xfb\x9f\xdf\xef\xe7\xeb\xdb\xef\xdf\xd6\x7f\xed\xbf\x7f\x07\x00\x00\xff\xff\x51\x1f\x69\x36\x9f\x52\x03\x00"); +var _cfb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x8f\x1c\xc7\x0d\xbd\xcf\xaf\xe8\xa3\x73\x70\xb6\xbe\x49\x02\x8b\x01\x0c\x29\x8b\xc8\x81\xe3\xc0\x8a\x93\x00\x41\x0e\xdd\x5d\x6c\x61\x81\x68\x76\x30\xbb\x0a\xa0\x7f\x1f\xf0\xbd\x95\xe2\x18\x3e\x58\xf4\xbe\x26\x59\x2c\xd6\x63\x91\x35\x77\x6f\xde\xbd\x7d\x77\x79\x7c\x59\xee\xfe\x72\x7b\xda\xdf\xfb\xcb\x72\x3c\x5e\xe6\xcd\x9f\x9f\x3e\xdd\x76\x5f\x36\xff\xf0\x78\x39\x9d\x72\x59\xe6\xe3\xfe\xf2\xe5\x4f\x88\xfd\xe3\x7a\x3d\x9d\xc2\xfe\xfd\xe7\xe7\x17\xff\xf8\xee\x72\x3c\x2d\x95\x7a\xf3\xd3\xf5\x55\x77\x59\xee\x7e\xf2\x0f\x8f\xcf\x2f\xb7\xcf\xcb\x37\xdf\xcd\xa7\xcd\x7f\xb7\x4c\x3f\x02\xff\xf1\x36\xfd\xf6\x78\xf9\xb0\x7c\xf3\xfd\x7a\x5d\x2f\xf9\xeb\x87\xf7\x9f\xae\xd7\x7f\xfb\x47\xbf\xbc\x2c\x19\x98\x5f\x26\xe4\xe9\xee\xcd\x0f\xeb\xf5\xcf\xeb\x47\x5f\xee\x2c\x5d\xff\xf3\xed\x4f\x7f\x7a\xff\xfd\xb7\x7f\xc4\x37\x7c\xfa\x9b\xdf\x9e\x1f\x9f\x2e\x4b\x4e\xbf\x4f\x69\xfc\x0f\xff\xeb\xe7\xab\xbf\xfa\x3a\xdd\xfd\xfc\xee\xed\x8f\xc7\xf1\xec\x2f\x8b\x4a\xa2\xce\x3f\x7e\x7e\xf7\x76\xf9\x67\x5e\x72\x5a\x4a\xaf\x2d\xff\xeb\x55\xf5\xef\x3f\x3c\x4d\x5f\xa8\x74\xea\xdc\xd2\xfe\x34\xfd\xf9\xba\xee\x7e\x5b\x2f\x1f\xfc\xb4\x2c\xf7\x29\x9d\x97\x65\xb9\xd7\x74\x8e\xbf\x34\xb7\x74\x5e\xee\xed\xe1\xe1\x0d\xfe\xfe\x8e\x5f\xdf\x3e\xe0\xaf\x3f\x24\x7c\x7d\x78\xf3\xfa\xf5\xe1\x2d\xbe\x3e\x3c\x9c\x63\x97\xbf\xf2\x7d\xca\x5c\xf2\xf2\xf4\x32\xfd\x20\x86\xd5\xee\xf3\x71\x5e\x72\x58\xfc\xf2\xd3\x29\xa7\xf4\x1a\xe3\xe3\x7c\xd5\x2e\xa1\x2d\x1e\xda\x11\x20\xa2\x5c\x4c\x4e\x5f\xc2\xd4\x1c\x1f\x47\xad\x81\x50\x21\xaf\xfb\x79\x19\x36\x02\xd9\x14\xc8\x76\x9c\x17\x69\xe1\x22\xef\x44\x76\x0f\xc4\x02\x99\x2b\x10\xd7\xf3\x22\x1d\x56\x07\xfd\x1c\x72\x5e\x44\x60\x75\xec\x44\xf6\x40\xc2\xaa\xb4\x23\x90\xd2\xc3\x4a\x53\x20\x03\x56\x45\xec\xbc\x88\x01\xd1\x0c\xc4\xd6\xf3\xa2\x39\x3c\x17\xa3\xd5\x91\xcf\x8b\xb6\x72\xba\xd7\xca\x5d\xd4\xd8\x85\x95\x1e\x08\x77\x51\x6d\x9c\x17\x53\x0d\x84\x56\x75\x1b\xe7\x25\xa7\x1c\x01\xd5\x8d\xd0\x04\x54\xc3\xae\xd1\x53\x8b\x30\x72\xea\x11\x64\x13\x42\xc8\x5f\xb2\x58\xaf\xd1\x7b\xb3\x7c\x5e\x72\x4e\x91\xc8\x46\xf7\x10\xd2\xb0\xbb\xb6\x52\x2b\x84\x34\xcd\x80\x32\xa1\x8c\xc4\x11\x2a\x84\x0a\x20\x04\xb1\x56\x42\x35\x92\x99\x2a\xa0\x46\xa8\x41\x8b\xee\x3b\xa1\x0e\x2d\x04\xb1\x0e\x42\x23\xa0\x42\x43\x21\x14\xc7\xd0\x33\xdd\x2b\x21\x9c\x55\x65\x10\x46\xc8\x00\xd1\xfd\x4a\x68\x45\xf4\x09\xd0\x46\x68\x03\x84\x4c\xac\x3b\xa1\x1d\x71\x35\x40\x93\xd0\x04\xa4\x80\x9c\x90\x23\xd4\x01\x88\xf9\x0a\x21\x3d\xc1\xd7\xc6\x7c\x85\x90\x9e\xe1\x6b\x63\xbe\x42\x48\xaf\x08\x62\x63\xbe\x42\x48\x2f\x34\x64\xbe\x36\xe4\xab\x62\xc5\x8d\xf9\x0a\x21\xbd\xd3\x17\xf3\xb5\x21\x5f\x20\x40\xdb\x98\xaf\x8d\xf9\x42\x5c\x1b\xf3\xb5\x31\x5f\xc8\x04\xf9\x0f\x21\xbd\xd2\x17\xf3\xb5\x21\x5f\x8d\x41\x30\x5f\x21\xa4\x27\x06\xc1\x7c\x85\x90\x5e\x70\x42\x1b\xf3\x15\x42\x7a\xe6\x8a\xcc\x57\x08\xe9\x64\xe1\xc6\x7c\x6d\xc8\x57\x0b\xa8\x93\x98\xbd\x63\x8f\x1d\x50\x87\x56\x97\xa8\x83\x84\x12\xeb\xb2\x13\xf2\xf3\xa2\x45\xc3\x7d\x27\x57\xbb\x76\x40\xb1\xa1\x6e\xc8\x6a\x47\x49\xa5\x01\x43\xd2\xb7\x93\x13\x02\xf7\xe4\x44\x0f\x02\x68\x29\x84\x36\x42\x33\x20\x70\xb5\x33\xf7\x3d\x36\xa4\xac\x8e\xce\x0d\xf5\x3d\x43\x2b\x32\xd1\x27\x0d\x8f\x16\x45\x9c\x43\x6b\x70\x43\x10\x32\x52\x06\x94\x09\x85\x61\x46\xf4\xa3\x15\x42\x05\x5a\x34\xac\x84\x6a\xac\x58\x12\xa0\x46\xa8\x01\xa2\x56\x27\x14\xdb\xae\xa8\xa1\xd1\x06\xa1\x01\x5f\x02\x48\x08\x09\x0c\xa9\xa5\x84\x14\x5a\x84\x8c\x90\x41\x8b\xa1\xae\x84\x56\x68\x35\x40\x1b\xa1\x0d\x2b\x12\xda\x09\x4d\x68\x75\x40\x4e\x28\x4e\x28\x55\x06\x81\xdc\x8f\xde\xe1\x1e\x86\x9d\xa1\x86\xd0\x4a\xc3\xce\x50\x3b\x42\xad\x48\x4e\x67\xa8\x1d\x71\x55\x1a\x32\xae\x8e\xe3\x40\x6d\x8f\x3e\x09\x4d\xf8\x82\xa1\x31\x54\x43\x5c\x19\x29\x34\xc6\x15\x42\x2b\x93\x43\x4e\x40\x68\xca\x71\x8e\x83\x57\xda\x58\x41\x39\xd0\x77\xf0\xfe\x82\xd0\x84\x82\x19\xbc\xbf\x20\xb4\xa0\xd2\x06\xef\x2f\x08\x2d\x19\x59\xe5\xfd\x05\xa1\x85\x9c\xe0\xfd\x05\xa1\x05\x37\xc0\x20\xbf\x20\x34\x75\x04\xc1\xda\x86\xd0\x84\x66\x33\x58\xdb\x10\x5a\x51\x7c\x63\x67\xbe\x76\xd0\x97\x71\xed\xdc\xf6\xce\x3d\x12\xe2\x1e\x77\xee\x11\x2b\x4e\xee\x31\x84\x26\x86\x3a\x49\xcc\xc9\x6d\x17\x74\xe9\x2f\xdd\xf5\xb7\x1a\xae\x8e\xc9\xac\x4c\x66\x05\x29\x98\xdc\xc9\xc4\xe6\x70\x0e\xc2\x1a\x90\x60\xa4\x66\x34\x64\x21\x23\x21\x34\xf7\x04\x48\x09\x29\x0c\x1b\x20\x23\x14\x27\x9f\x71\x41\x08\x19\x09\xa1\x19\x97\xa0\x90\x91\x10\x32\x0a\x7d\xed\x84\x76\xb8\xcf\x80\x26\x21\x92\x81\x86\x4e\xc8\xe1\x9e\xa1\x1e\x84\x0e\x40\x30\xec\x8c\xbe\xa3\x82\x91\x61\xe9\x99\x10\x2a\xb8\x11\x2a\x84\x0a\x20\xec\xb1\x57\x42\x15\x50\x05\xd4\x08\xe1\x82\x68\x08\xa2\x77\x42\x1d\x10\xb6\xcd\xb2\x10\xd4\x40\xae\x74\xcf\xe4\x84\xd0\x8c\x9b\x58\x78\xbd\x89\xc5\x8a\x35\x63\x45\xe3\x8a\x26\x08\x15\x2b\x1a\x0d\x0d\x86\xe8\x10\x62\xcc\xaa\x21\xab\x03\x59\x35\x66\x15\x57\x65\xe5\x1e\x59\x3c\x10\x9a\xc1\x48\x31\x66\xd5\x90\x55\xb4\x75\x31\x66\xd5\x50\x75\xcc\x3d\x4b\x0c\x42\x4b\x61\x10\xcc\x2a\xa6\x86\xae\x58\x91\x25\x06\xa1\x89\xe7\xc8\xa9\x01\x42\xba\x12\x62\x56\x31\x35\x74\x5c\x95\xc2\xaa\x83\xd0\xc4\xe4\xb0\xea\x20\x34\x2b\x56\x64\xd5\x09\x4a\xac\xa2\x27\x09\x47\x04\x08\x4d\x4c\x21\x47\x04\x61\x3b\x30\x42\x4c\x0e\xda\x41\x6a\xd8\x10\xdb\x01\x84\x74\x23\xc4\x4c\x60\x1e\xe8\xc6\x15\x99\x09\xcc\x03\xdd\x18\x17\x33\xb1\xe2\x12\x24\xbf\x38\x0f\x40\x68\xe2\x69\x73\x1e\x10\xce\x03\xe8\x36\xc2\x79\x00\x42\x13\x79\xcf\x79\x00\x42\x13\xc9\xc4\x3b\x43\x38\x0f\x60\x86\x15\xde\x19\xc2\x3b\x83\x2c\xe4\x9d\x21\x9c\x07\xd0\xa6\x84\x9d\x0b\x42\x13\x59\xc8\x56\x2c\x1b\xe2\x62\xc1\xec\x8c\x6b\x67\x10\xd8\x90\xd3\x97\x83\x5f\xe8\x10\xe2\x4c\x61\x08\xad\x3c\xed\x83\x64\x3a\x90\x42\x52\xee\x60\x0a\x63\x26\xd6\x0a\x43\xe5\xa5\xa0\x6c\x8c\x68\x07\xca\xc6\xa8\xec\x82\x25\x56\x54\x16\x8c\x46\x75\xc8\xc0\x8d\xa7\x03\x2b\x42\x88\x75\x42\x2b\x21\xb0\x10\xbc\x57\x52\x4e\x63\xc5\x9c\xd1\xd6\x8d\x2b\x1a\x26\x5c\x5e\x95\xc6\xa9\xc1\xa0\x55\x30\xea\xad\xd4\x5a\xa1\xd5\xd0\x21\x56\x6a\xad\xd0\x6a\x12\x04\xd8\xa8\xb5\x41\x8b\x87\xb6\x51\x6b\x83\xd6\x40\x5c\x3b\xb5\x76\x68\x09\x88\xb9\x53\x6b\x87\x96\x82\x13\x93\x5a\x13\x5a\x86\x01\x67\x52\x6b\x86\x56\x61\xcb\x73\x6a\x79\x68\x95\x8c\x91\xdd\xa9\xe5\xd0\x2a\x98\x07\x0e\x6a\x1d\xd0\xaa\x20\xc0\x41\xad\x03\x5a\x2d\xba\xa0\xf1\x5d\x66\x09\x5a\x98\xc5\x2c\x29\x21\x68\x81\x26\xf6\xfa\xb6\xc3\xa3\xa9\x48\x1c\xad\xf1\xd5\x64\x78\xdb\x14\x89\x7a\xb4\x42\xad\x02\x2d\x8b\x16\x60\x85\x5a\x05\x5a\x26\xed\x74\x6f\x7c\xba\x18\x9e\x2e\x35\x45\x75\x18\xdf\x2e\x56\x43\xab\xe6\x51\x4e\xf7\xc6\x67\x89\xe1\x0d\x52\x8b\x4a\x40\xd4\x6a\xd0\xaa\xd1\x28\x8c\x33\xa2\x61\xfa\xab\x2d\x86\x38\xe3\xf4\x67\x1d\x5a\x18\x8d\x8d\x83\x97\x0d\x68\x8d\x11\xd1\x0f\x6a\x0d\x68\x49\xcc\xc1\xc6\xd6\x64\x02\x2d\x0d\xde\x9b\x50\x0b\x5c\xad\x16\xbd\xd2\xc8\x55\x53\x29\xe7\xa5\xe1\xce\x31\xf2\xcb\xc0\xaf\x96\xe2\x52\x30\xf2\xcb\xc0\xaf\x96\x35\x0c\xc9\x2f\x03\xbf\x5a\x89\xe3\x30\xf2\xcb\xc0\xaf\x56\x25\xb6\x4d\x7e\x19\xf8\xd5\x1a\x8e\x83\xfc\x32\xf0\xab\xf5\x91\xfe\xbf\x15\x8f\xfa\xeb\x4e\x6c\x64\x9f\x81\x7d\x6d\xe0\xb0\xc8\x3e\x03\xfb\x9a\x44\x99\x1b\xd9\x67\x60\x5f\x53\x1c\x16\xd9\x67\x60\x5f\xb3\x18\xb8\x8c\xec\x33\xb0\xaf\x19\x0e\x8b\xec\x33\xb0\xaf\xe7\xa8\x56\x23\xfb\x0c\xec\xeb\x19\x87\x45\xf6\x19\xd8\xd7\x6b\xcc\x3a\x46\xf6\x19\xd8\xd7\x6b\x1c\x16\x2e\xfe\x79\xc4\x09\x8f\xd3\xbd\x93\x8b\x0e\x2e\xf6\x9e\x52\x40\x4a\x08\x36\x3d\x8e\xce\xc9\x45\x07\x17\xfb\x88\xde\xe0\xe4\xa2\x83\x8b\x5d\xe2\xe8\x9c\x5c\x74\x70\xb1\xab\x84\x7b\x72\xd1\xc1\xc5\x6e\x71\x74\x4e\x2e\x3a\xb8\x38\xd2\x68\x01\x51\x0b\x5c\x1c\x39\xda\x85\x93\x8b\x0e\x2e\x8e\xd2\x4b\x40\xd4\x02\x17\x47\x8d\x47\xa6\x93\x8b\x0e\x2e\x8e\x16\xed\xc2\xc9\x45\x07\x17\x07\x9e\xb5\x4e\x2e\x3a\xb8\x38\x46\x89\xe8\xc9\x45\x07\x17\xc7\x88\x5e\xea\xe4\xa2\x83\x8b\x03\xbf\x01\x38\xb9\xe8\xe0\xe2\xd0\x78\x6e\x3b\xb9\xe8\x1a\x5a\x92\x62\x4c\x72\xa5\x16\xb8\x28\x69\x44\xf4\xe4\xa2\x83\x8b\x92\xa3\xb3\x39\xb9\xe8\xe0\xa2\x94\x78\x5a\x39\xb9\xe8\xe0\xa2\xd4\x78\xfc\x3a\xb9\xe8\x2b\xdf\xe9\xd1\x67\x7c\x45\xc7\xf5\x95\x43\x6d\xf0\xda\x37\xdc\xd4\xbe\xe1\xa6\xd6\x38\x7b\xdf\x30\x26\xf9\x16\x33\x91\x68\x3c\xc0\x7c\xeb\x1b\xa1\x68\x89\x8a\x3d\x6e\x83\x5a\xa3\x01\x82\xaf\x61\x80\x64\x05\x04\x43\xa5\xfb\x10\x62\x31\xda\xf8\x8e\x7a\xa3\x10\x8b\xf1\xcd\x77\xcc\x0b\x14\x62\x71\x9f\xfb\xce\x50\x21\xc4\x62\x1c\xf1\x1d\x93\x00\x85\x58\xb4\x1e\xdf\x31\x09\x50\x88\xc5\xbd\xe9\xfb\x4e\x5f\x3b\x7c\x45\xf9\xf8\xee\x84\x9c\x50\x03\x44\xf7\x4e\xf7\x1d\x10\xdd\x3b\xdd\x0f\x40\x3b\xa1\x1d\x50\x44\xcf\x22\xa3\x10\x03\x01\x26\x9e\x7c\x14\x62\xd1\xec\x7c\xe2\x7d\x47\x21\x56\x13\xa0\x41\x68\x00\xca\x80\x94\x10\xfa\x5f\x8d\xe8\xe7\xa0\xaf\x01\x5f\x35\xa2\x9f\x8a\x50\x21\xc4\xa2\x83\xf8\xd4\x4e\x08\xa1\xc6\x35\xe3\x53\x85\x10\x32\x11\xc5\xef\x53\x9d\x90\x03\x42\xf4\x46\x43\x63\x10\x7a\xba\x3f\x62\x80\x88\x7f\x72\x14\xc6\x11\x16\xf1\x4f\x89\x9d\x1d\x71\x50\xf1\x4f\x5c\x13\xbf\xbc\xb6\xe2\xff\x3f\xae\xd7\xd3\xd7\xdf\x35\xf7\x4f\xb7\x9b\x5f\x5e\xf0\x2b\x2a\x7e\xba\x5c\xa6\x1f\x8f\x17\xff\xfa\x8b\xec\xf5\xe9\x1a\x56\xf8\xef\xbf\x01\x00\x00\xff\xff\x89\xe9\xd8\x67\xbd\x15\x00\x00"); +func _cce ()([]byte ,error ){return _gb (_dac ,"Add-RKSJ-V")};var _cfcb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\xdb\xab\x65\xb9\x75\xee\xdf\xf7\x5f\xb1\x1e\x7d\x1e\xce\xe9\x29\x69\x5c\x24\x28\x36\x1c\x6c\x43\x3a\xe0\x38\xc4\x71\x12\x08\x79\x98\xb7\xd5\x14\xa4\xab\x8a\xea\x6a\x88\xff\xfb\x30\x7e\xdf\xb2\x83\x4d\xa0\x1f\xcc\xe7\xfe\x4a\xd2\x1a\x1a\x1a\x57\x69\xee\xef\x7e\xfd\xfd\x6f\xbe\xff\xf4\xf1\xdb\xe3\xbb\x7f\xfc\xfa\xf9\xfc\xc3\xfd\xed\xf1\xfc\xf8\xe9\xfa\x7a\xff\xf4\xf9\xe7\xaf\xe7\xfd\x38\xee\x1f\x3e\x7e\x7a\x7b\x6b\xfd\x71\x7d\x3c\xbf\xfd\xf9\x3f\x81\xf3\xc7\xfd\xcb\xdb\x5b\xcd\xff\xc3\x9f\x7e\xfa\x76\xff\xf8\xfd\xa7\xe7\xe7\xc7\xd0\xb8\xeb\xe7\x2f\xaf\xb1\x8f\xc7\x77\xff\x74\xff\xf0\xf1\xa7\x6f\x5f\xff\xf4\xf8\xd5\xff\xbf\x3e\x1f\xf7\xff\x79\x5c\xf7\xb3\xf8\xdf\x7f\xbd\xee\xaf\x1f\x3f\xfd\xf0\xf8\xd5\xdf\xef\x5f\xf6\x4f\xed\x2f\xff\xf0\x87\x9f\xbf\x7c\xf9\xcf\xfb\xc7\xfb\xd3\xb7\x47\x87\xbb\x3f\x5d\xe0\xdb\x77\xbf\xfe\xdd\xfe\xe5\x1f\xf6\x1f\xef\xc7\x77\xbf\xfd\xaf\x6f\xff\xf7\xef\x60\x21\xff\xe5\xfe\xfa\xd3\xc7\xcf\x9f\x1e\xad\xfd\xbf\x6d\x8b\xff\xe1\xff\xf9\x4f\x5f\xee\x47\x7b\xcd\xfe\xe3\xf7\xbf\xf9\xfd\xf3\xf9\xd3\xfd\xed\x31\xe6\xa6\x31\xff\xf6\xc7\xef\x7f\xf3\xf8\xf7\xf6\x68\xdb\xa3\xfb\x18\xed\x3f\x5e\x43\xff\xf5\x77\x9f\xaf\xfb\xa1\x41\x6f\x4d\x9b\x39\x3f\x5f\xf7\x4f\x5f\xf6\xf3\xfe\xba\x7f\xfa\xe1\x7e\x7b\x3c\x3e\xf4\xd6\xdb\xfb\xe3\x43\xfe\x36\x7f\xfb\x5e\x52\xfe\xcd\x88\xb7\xb6\x6d\xaf\xa9\x1f\x2f\x51\x7f\x9e\xd2\x5b\xcc\xf7\xc7\x23\xc6\x28\x2a\x96\xa8\xf5\xfe\x48\xcb\x09\xb5\x43\xe5\xfd\xfe\x78\xe4\x16\x6f\x1f\x7a\xd7\xc4\xde\xa1\x7a\xbe\x7d\xe8\x63\x6c\x45\x8d\xb1\x8a\x9a\x5b\x51\xc6\xa8\xe1\x7b\x51\x0b\x2a\x44\x65\x51\xb3\xd5\x5a\xa6\xb5\x2c\x47\x51\xd6\xdf\x3e\x74\x17\xe5\x19\xef\x8f\xc7\xea\xfe\xf6\xa1\x87\xa8\x18\xf3\xfd\xd1\xb6\xd6\x8a\xd2\xf2\xe1\x50\xa3\x46\xa5\x46\x65\xfd\x4b\xdb\x7c\x15\xe5\xa2\x12\x6a\xd5\xf2\x4b\xa3\x96\x3f\xdf\x1f\x8f\x3e\xa0\x02\xe9\x81\xc7\x40\xd4\x25\x51\x17\xdb\xee\xab\x44\xdd\x35\x71\x67\xe2\x60\xdb\xbb\x26\xee\x8c\x1a\xab\xe4\x3a\x34\xea\xa8\x5f\x7c\x58\xaf\xe5\x8f\xec\xa2\x3a\x6b\x39\xd4\x10\x55\x13\x7d\x2b\xdd\x9f\xdd\x8a\x3a\xe3\x89\xee\x4b\xfa\x4b\x6b\x5d\xe3\x7e\x7f\xa4\x7b\x4d\xbc\x8c\x5f\xbc\x3c\x8a\x9a\x50\x25\xd0\x0b\xe6\xe8\xb5\xd6\x25\xb9\x2e\xd6\x8a\xad\xce\xf1\x4a\x51\x05\x8f\x8c\x0e\xa5\xe5\x11\x35\xa3\x41\x75\x51\x1d\x0a\x21\x24\xea\x95\x65\x13\xd1\x0d\x6a\x17\xc5\xd1\x86\x96\x3f\x44\x9d\x35\x6a\xb4\xb7\x0f\x63\x43\x7a\x41\x6b\x75\x8e\x63\xeb\x5d\x54\x67\xd4\x80\x1a\x50\xa3\x33\x2a\x8b\x1a\x2f\x6a\xbc\x3f\x72\x8c\x0d\xca\x44\xed\x35\xca\x0c\xea\x10\x75\xb0\x96\xa8\x13\x2a\xae\x1a\xe5\xbd\xa8\xb8\x45\xdd\x8c\x42\x88\xd2\xca\x87\xb1\xd5\x1e\x5b\xdf\x10\x22\xf5\x8b\x05\x19\x23\xa0\xf4\x8b\xb5\xaf\xd6\x4b\x85\x63\x4b\x2d\xff\xda\x23\xa2\xe6\x25\xea\xae\x51\xad\x28\xb9\xd5\x68\x7d\x41\x2d\xa8\x5d\xd4\xce\xc4\x09\x85\xf4\xad\xf6\xd5\x7a\x67\xd4\x70\x51\xce\x28\x51\x21\xaa\x8c\xbc\xdb\x06\xb5\x44\x71\x1c\x2f\x4a\xcb\x0f\x44\x45\x39\x4d\x9a\x68\xe3\x62\x54\x83\x42\x13\x0d\xef\xe8\x86\x10\xd6\x45\x71\x1c\x36\xa0\xd0\x04\x5e\xdf\xba\x43\x85\x44\x0d\x14\xad\xe5\x43\xcb\x6b\xdb\xab\x28\x05\x85\xd1\x7b\xbe\x3f\xda\x68\x03\x6a\x8a\x9a\x4c\x74\xa8\x25\xaa\xa4\x1f\x65\x5f\xa3\x4b\x39\x5d\xca\xb1\x80\xe2\x17\x7b\x59\x74\xc3\xa2\x47\xc7\xa2\x05\x19\x96\x50\xfa\xc5\x32\xcc\x36\x12\x2a\xb5\x56\x6a\xad\x09\xa5\xb5\xea\xd0\x9a\x71\xda\x5d\x87\x06\x64\x18\x42\xe4\x2d\xea\x66\x54\x09\x31\xb4\x21\xa0\xd9\x96\x50\x5d\x14\xfa\xf2\x0d\x0a\x7d\x11\xec\x9a\x6d\xb5\xd6\x90\x56\x81\xb0\xc5\x44\x7b\x8d\xaa\x73\x34\x8e\x63\xd8\x12\xb5\xde\x1f\xbe\xb1\xc7\x61\x48\x3f\xc2\x18\x55\xd2\x8f\x70\x51\xd8\x84\x33\x31\x42\x54\x9d\x90\x25\xa2\xea\x84\x86\x4e\x08\xbb\x1f\x3a\xa1\x81\x91\xdb\x84\x92\x91\x0f\x19\x39\x47\x3b\x64\xe4\x23\xbd\x46\x2d\x36\x94\x5a\xbe\xc0\x17\x46\x3e\x32\x45\x2d\x46\x69\xa2\x44\x95\xa2\xdd\xa0\x24\x84\x54\xc8\xb6\x15\xdc\x87\xa1\x1c\xdf\x4a\x7a\x93\x72\x4c\x26\x57\x21\x6d\x98\x94\x03\xb8\x84\x30\x33\x51\x75\x68\x8e\x3f\x9a\x5d\xa2\x38\x34\x17\xc5\xa1\x99\xb3\x3c\x96\x63\xae\xe5\x0b\x22\xe6\x84\xd2\xf2\x68\xd5\x51\xa1\x49\xab\xf6\xd2\x2a\xa2\x4a\xab\x86\xf4\x9e\x25\x84\xf2\xd0\xf0\x32\xcc\xe6\x15\xb6\x87\xcb\x30\x81\x0c\x9f\x50\x28\xda\x47\xd9\x6a\x60\x39\x4e\x8c\x16\x64\xf8\x22\x21\xff\x39\xef\xfe\x6f\xa9\x78\xb8\xe9\xa7\xf8\xf5\x20\x08\x2a\xe5\x09\x5a\xcc\x05\xd5\x45\xa1\xbb\xd8\xa0\x86\xa8\x3a\x9a\xa8\x04\x34\x42\xfe\x14\xf2\xa7\x10\x85\xd8\x61\xce\x28\xd6\xb2\x10\x15\x64\x1b\x83\x4a\x51\x25\x44\x4a\x08\x7b\x8a\x22\x8f\x54\xd2\x18\xe1\x6c\x2e\xca\xbe\x5a\x72\x34\x11\x97\x28\x8e\x26\x06\x14\x47\x13\x65\x6b\x2d\x83\x51\xb2\x35\x20\x23\xf8\xc5\x74\x51\xa5\xe1\x4c\x26\xca\x8a\x80\x8c\x70\xa8\x53\x14\xbf\x38\xd9\xb6\x3c\x38\xe4\xc1\xaf\xe5\x5f\xbf\x88\xf4\x18\xbc\xea\x81\x91\x1d\x21\xe6\x80\x32\x51\x12\x22\xa1\x10\x22\x2b\xd4\xb6\x9c\x50\x23\x45\x25\xa3\x26\x14\xb1\x2c\xcb\x30\xdb\xe4\x98\xd3\x34\xd1\xb0\x22\x62\x59\x4a\xab\x59\x46\xda\x66\xdf\xa0\x6e\x51\x24\xa0\x14\x85\x56\xa9\x4d\xda\x24\xf6\xa7\xec\x16\xc8\xc8\x06\x35\x44\xf1\x8b\xe4\xca\x74\xfd\xa2\xf3\x8b\xc9\x1e\x5d\xbf\x58\x55\x56\x9b\x1c\x47\xfa\x21\xaa\x54\xd8\xa6\xd6\x42\x85\x19\xa5\x09\xaa\xac\x91\x21\x4d\x04\x9a\x40\xf7\x29\xb7\xc8\x2a\x11\xda\xc4\x53\x28\x9c\x5e\x90\x81\x99\x64\x4a\xd4\xac\x58\x36\x43\xd4\x12\x45\x4e\x4a\x87\xda\x45\xa1\x09\x89\xaa\x13\x02\x32\x08\x5c\x53\x27\x34\x07\x72\x11\xc2\xa7\x32\x3d\x90\xf1\xa2\x90\x6b\x1a\x72\x11\x59\xa6\x1c\x06\xc8\xa8\x42\x75\x4c\x45\x96\x89\x01\xac\x56\x8a\x56\xa9\x37\x16\x1e\xbc\xd0\xea\x92\x2b\x2c\x79\x70\x55\x59\x63\xc9\x83\x17\x06\xb0\xb0\x9c\x25\x03\x58\x32\x00\x4c\x6e\xc9\x00\x16\xb1\x6c\x91\xf2\x96\x7e\x71\x29\x96\xa1\xe8\xa5\x58\xb6\x4a\xf7\x7d\xdb\x4a\x13\x4b\xba\x07\x7c\x12\x76\x97\x63\xbe\xab\x7c\xa8\x6f\x14\x4b\x2b\x5e\x14\x16\x2d\x21\xe4\x43\xab\x7c\xa8\x6f\xa4\x83\x25\x1f\x5a\xf2\x21\x2c\x7a\xc9\x87\x56\x1d\x47\xdf\x08\xa8\x4b\xc7\xb1\x74\x1c\x13\x51\x75\x1c\x94\xb3\x7d\x23\x74\xa8\x9c\x1d\x7b\x99\x5c\xdf\xf0\xb4\x5d\x26\x07\x64\x4c\x51\xfc\xe2\x5e\xe1\xb1\xb7\x2a\xd9\xc7\x1e\x29\x4a\xca\x11\x85\x72\x76\x44\x6d\x58\xe1\x2e\x51\xf7\x97\xa8\x09\xe5\xa2\x4a\x88\x46\xde\x55\xb5\x3c\x8e\xce\xf2\x2e\x2a\x45\x69\xf9\x09\x35\x45\xad\x1a\x85\xbb\x1f\x8a\x72\x87\xa2\xdc\xd4\xc4\x43\xd4\xc1\x28\x51\xa7\x28\x2a\x36\x52\xcb\xd1\x51\xf4\x51\xc7\xd9\x1b\x36\x71\xa8\xa4\x3a\x54\x52\x2d\x51\x5a\x5e\xa2\xa2\xc2\x53\xa2\x9e\x65\x13\x5d\x95\xd1\x29\x9b\x00\x32\xaa\xbb\x18\xa7\xd6\x3a\x8d\x51\x98\xef\x69\x1a\x65\x1a\xc5\x44\x7b\x8d\x5a\x55\x22\x50\x0f\x9c\x4a\xfe\x67\xf9\x73\x57\x49\x75\x7a\x8a\x42\x13\x2f\x4a\x6b\x95\x31\xf5\x41\x55\x7a\xca\x98\x4e\xc7\xad\x48\x53\x27\x1d\xc1\x38\x91\x7e\xb4\xa2\xd4\x4a\x8c\xab\xf4\xd5\x07\xf5\xd3\x25\x7d\x5d\x72\x85\x25\x0a\x7d\x5d\xe5\x70\x7d\x90\xdf\x2e\x95\xa0\x40\xc6\x12\x85\x5c\x57\x95\x1b\x5d\x45\xdc\xa5\x72\xe3\x92\xf9\x2e\x51\x98\x2f\xdd\x45\xb7\xea\x1b\x86\xba\x8b\x41\x47\x91\x49\x3d\x70\xc9\x4c\x2e\x44\x35\x6a\xfd\x5b\xa2\xde\x15\xa3\xbb\x94\x73\x2b\x46\x03\x99\x14\x71\x77\x47\xae\xbb\xfa\x86\x6e\x24\xff\x5b\x7d\x03\x90\xb9\x19\x94\x89\x62\xf9\xd8\x7e\x39\x15\xdf\xe3\xa9\x19\x4f\x16\x29\xdd\xdd\xca\xe7\xb7\x23\x10\xb1\xec\x56\x24\x06\x92\xae\x78\xdc\x8a\xc4\xb7\xf3\x53\x9c\xd6\xad\x73\x00\x32\x29\x21\x6f\xd5\xb1\x77\x45\xe2\xee\x92\x51\x91\x18\xc8\xe4\x4c\x6f\x45\xe2\x1b\xad\x38\x55\xe5\x53\x5a\x79\xe2\x03\x4e\x23\xf3\x94\x0f\x00\x99\xaf\x51\x9c\xe9\xb3\xcc\xa4\x3b\x25\xf7\xd3\x97\xa8\xb2\xee\x24\x2e\x3e\x5d\x13\x4b\xae\xee\xd8\xed\x53\x72\x01\x99\xd5\x61\x8f\xa7\xea\xeb\x67\xb0\x16\x67\xfa\x0c\xad\x15\x5a\x4b\x13\xb5\x16\xa2\xd2\x6a\x9a\x1a\x3f\x41\x8f\xca\x6f\xa6\xc6\x4f\x90\x59\xdd\x81\xa9\xf1\xb3\xcd\x18\x55\x41\xd0\x36\xd3\x28\xd3\x28\x83\xd2\xa8\x52\x48\xa7\xb6\xb0\x8d\x52\x4d\x90\x59\xd6\x6d\x1b\x21\xc9\xb6\xca\x5c\x1d\xf3\xb3\x2d\x25\x44\x6a\xad\x80\xd2\x5a\x84\x4a\xf6\x68\x1b\xa1\xd2\x36\xea\xd8\x6c\x48\x4f\x05\x62\xb4\x74\x3d\xab\x7f\x33\xb5\x74\xd6\x88\x52\x59\xb5\xba\x35\xa2\x94\x20\xb3\x32\xbd\x35\xa2\x94\x20\xa8\x79\x8c\x26\xf0\x83\xd1\xbf\xf5\x64\x8f\xea\xdf\x04\x99\x5d\xd4\x0e\x65\xe5\x4f\x59\x81\xde\x5a\x55\xbe\x2f\xc8\xec\x1d\xea\x12\x85\x5c\x55\xba\x58\xa3\x90\x10\xe4\x4b\x2e\xca\x33\x6b\x58\x61\x26\x72\xb9\x46\xc9\x0a\xcb\x11\xad\x85\x46\x71\xb4\x39\x11\x35\x24\x97\x8e\xb6\xba\x75\xd3\xd5\x8f\x35\x69\x62\xd5\x28\x75\x79\xd6\xab\xbd\xec\xb3\xfa\x5d\xeb\xe3\x12\x75\x31\x91\x51\xb4\x9a\xd6\x8d\x51\x06\x25\xe9\x81\xa4\xb8\xb4\x6e\x1a\x45\xae\x9c\x55\x5c\x5a\x27\x57\x0a\x32\xfb\x84\xd2\xc4\x28\x3f\xa7\x44\xb0\x1e\x43\x14\x7e\x8e\x7d\x75\x7c\xc8\x7a\xc5\x9c\x3e\x2b\x5e\x5b\xa7\xcd\x17\x64\x56\x64\xb1\xce\x1d\x88\xf5\x8a\x39\x7d\x6a\x43\xe4\x24\xeb\x89\x31\x71\x42\x9d\x76\xc7\xe8\x18\xfb\xaa\x60\x63\xea\x18\x05\x99\x43\x94\xa4\x47\x39\x94\x1b\xa6\x8e\xd1\x06\x66\xb2\xb0\xaf\x21\x33\x19\x32\x93\x61\x50\x53\xd4\x64\xd4\x84\x5a\xa2\xb0\xc2\xf2\x6d\x1b\x38\xb2\x8d\x8e\x10\x5d\x6b\x5d\xa2\x6e\x46\x25\x14\x7b\x1c\x43\xa3\x98\xa8\xe3\x18\x3a\x8e\xb1\xa0\x10\x75\x94\x26\xfa\x32\x44\x95\x26\x80\xcc\x17\x25\xe9\x51\xce\x5a\xfc\xa2\x94\x03\x64\x9a\xa8\x10\x75\x30\x2a\xa0\x4e\x51\x1c\x5a\x15\x97\x36\xa4\x2f\x7a\xc1\xb1\xa1\x42\xf5\x82\x66\x25\xea\xa0\x32\x32\x93\xa8\x26\x51\x8d\x51\x12\xd5\x2a\x7d\x8e\x0d\x7d\x19\xe9\x53\x90\x69\xa2\x96\xa8\x55\xa3\x8c\xb5\x48\x9f\x82\xcc\x17\x75\x88\xe2\x17\x2b\xe5\x99\x9a\x48\x41\x26\x86\xa9\x26\x52\x30\xb6\xea\xe9\xcd\xe4\x56\x26\xb7\xd2\x44\xb9\x95\x55\xe0\x1c\x5b\x75\xd8\x66\xae\xe5\x0b\xcc\xb1\x09\x93\xf9\x9a\xb6\x5d\xa5\xb1\xa9\x89\x14\x8c\x8d\xc8\xe4\x8a\x85\xae\x58\x88\xbb\xbb\x62\xa1\x97\xe5\x8c\x56\x89\xd1\x5c\x96\xe3\xb2\x1c\xd3\xc4\x29\xea\x62\x54\x40\xdd\xa2\xb0\x09\xa4\x77\xd9\x84\x57\x0e\x1f\x8d\x50\xeb\xe4\x70\x41\xa6\xb3\xfc\xd0\xf2\xa5\xef\xd1\xba\xa8\xd7\x44\xb6\xcd\x1e\xd5\xc9\x9a\x73\x1c\x0d\x1f\x72\x1d\x87\xeb\x38\x9c\xe5\x75\x1c\x5e\xba\x1f\x0d\x93\x73\xe9\x1e\xc8\x74\x34\xa1\x90\xe6\xa5\xc9\xd1\xac\xff\x62\x2a\x36\x77\xe9\x8e\xa6\x28\xab\xb4\x35\x77\x29\xca\x51\x94\xb4\xe2\xda\x49\x81\xcf\xd7\x28\xc9\x58\x01\x62\x34\xfd\xba\x02\x84\x2b\xc9\x56\xcb\x6f\x4e\x92\x35\x0f\xd4\x19\xa2\xa4\xce\x02\xef\x1b\xfb\x55\x18\xf1\xca\x23\xa3\x11\x7f\x5c\x79\x04\x70\x93\x56\x52\xcb\x27\x8a\x9a\xe8\x2e\x25\x44\x4a\x51\x1c\xb3\xb2\x0d\x6d\xfe\x68\x55\x13\x9b\xda\x7c\x8b\x81\x10\x55\x1c\x5a\xc8\x07\x80\xcc\xaa\x89\x2d\x74\x34\xdc\x79\x8f\x4e\xa0\x0f\xe5\xca\x50\xae\xac\x8a\xde\x42\xb9\x32\x4a\x47\xa3\x13\x63\x83\xf2\xdd\x42\x75\x4a\x34\xa8\x10\x55\xa7\xd5\xf1\x81\x90\x29\x87\xc2\x2e\x49\x36\x14\x76\xa3\x12\xc5\xa0\xda\xb5\x08\x89\x5a\x90\x59\x0d\x83\x45\x48\x88\xd2\xe4\xe8\xec\x31\x94\x9d\x83\xee\x40\x59\x30\xe8\x0e\x2c\x2a\xb5\x8c\x8e\x5b\x84\x52\x0b\x90\xdc\x20\x5b\x84\x84\x48\xd6\xe2\x38\x42\xc1\x06\x88\x29\xe5\x28\x38\xd3\xe6\x8f\x5e\xfd\x9b\xa9\xcd\xb7\x2c\xef\x18\x1d\xad\xa6\x02\x2a\x90\x5c\x63\x5b\x52\x2c\x19\x7d\xfc\xe0\x42\xdf\x52\xa9\x38\x95\x8a\xc9\x95\xa9\x54\x4c\x57\x3d\x46\x15\x38\x96\xb2\x2f\x20\xb3\x1a\x06\x4b\xd9\x57\x06\xa3\x88\x78\xa9\x0a\x24\xb5\xed\x14\xf5\x1a\x55\xf5\x80\x13\xaf\x53\x49\x36\x95\x64\xab\xe9\xb6\x94\x26\xb2\x0a\xe8\x31\x38\xc7\xa4\x17\x14\x64\x56\xd3\x6d\x29\xc3\xa4\x77\x1e\x03\x15\xaa\x77\xb6\x59\xa1\x63\x8c\xea\x3e\x6d\x72\xbb\x21\xc8\xac\x3e\xdc\x26\x95\xb3\x4d\x62\xc6\x98\xa2\x6e\x51\xd8\x57\xf5\xe1\x36\x15\x33\x80\x31\x16\xa3\x78\xd1\x11\x64\x62\xf7\x73\xe8\x17\xb1\xaf\xb1\xa0\x64\x5f\x40\x66\xf5\xe1\x36\x5d\xbf\x58\x66\x32\x8c\xb8\x38\x65\x26\x40\x26\x87\x36\x95\xc3\x67\xf9\xcd\x30\x62\xec\x54\xb6\x99\xca\x36\xd5\x74\xdb\x94\x01\xd0\xd3\x0f\xc3\x98\xd4\xd3\x0b\x86\xb1\xc7\xa5\x80\xba\x3a\xf5\x00\x9a\x58\xd2\xc4\xea\x4c\x44\xae\xa5\x3d\x02\xc9\x6d\x90\x2d\xed\x11\xf0\x86\x5c\x4b\x7b\x04\x86\x91\x05\xd7\xd0\xf2\x03\xe9\xa9\x2d\x16\x9d\x86\xad\x81\xf4\x4b\x6b\xb9\x28\x49\x8f\x5c\x0a\xbb\xab\x9c\x77\x18\x26\xb7\x14\x50\x81\x54\xe1\xc5\x8d\x42\x41\x9d\x90\x57\x93\x60\x4b\x39\x09\x48\xae\xa4\x6c\x29\x27\x2d\xa2\xa7\x13\xaf\x97\xc2\x23\x90\x39\xd9\xa3\x4b\x54\xf4\xe5\x94\x7a\x6a\xf3\x6d\xaf\x38\x31\x1c\x57\xd8\x15\x27\x80\xcc\x29\xca\x44\x95\x15\xc6\xc6\x44\xe5\xca\x5d\xb9\xb2\x7a\x67\xdb\x25\xd7\x5e\xad\xc4\x08\xea\xf3\x9d\x56\x42\x90\x89\xbe\x76\x45\x93\xbd\x02\xdf\xe0\x32\xd3\x76\x05\x3e\x20\xb3\x1a\x0e\xdb\x53\x13\x11\x95\xab\x54\xd3\x65\x80\x60\xa8\xd6\x3f\x74\xb4\x87\x72\xe5\x12\x35\x44\xb1\x3c\x61\xe8\x90\xbb\x1f\x72\xf7\x6a\xbd\x4c\xf7\x03\x76\x90\x93\xb8\x2a\xb3\x43\x39\xe9\x50\x4e\xc2\xc8\x0f\xe5\xa4\x83\xc8\x44\x1b\x67\x87\xfc\x11\x48\xd9\xd7\xa1\xc8\x74\x54\x26\x18\x2a\xbc\x0e\xd5\x4f\x87\xea\x27\x8e\xf6\x50\xfd\x74\xb0\x6d\x55\x33\x87\xb6\x0d\x58\x7b\x51\x5a\x9e\x6d\x2b\xc9\xea\x62\xc1\x4e\x74\xaf\xd4\x74\x4a\xf7\xe7\x4b\xf7\xa2\xd0\x3d\x17\x00\x63\x6e\x4c\xa4\xb3\x13\x64\x56\x6b\x6e\xa7\x8e\x83\xcb\x80\x31\x39\x21\x5d\x06\x08\x32\xa9\x40\x4e\x95\xff\x27\x2e\x3a\xfb\x2f\x77\xc5\x76\xca\x83\x81\x9c\x24\xc6\x53\x1e\x7c\xb2\xdf\x49\x4e\x3a\xb5\x5f\x20\xcc\x45\x49\x20\x1a\xac\x49\x65\x73\xaa\xc1\x02\xc6\xc4\xf5\x4f\x95\x90\x40\xbe\x36\xa7\x12\x12\x18\x93\x4c\x7f\xaa\xe4\x06\x72\x52\x55\xea\x5a\xc3\x2e\xdc\x95\x2b\x4b\xbb\xe4\xae\x40\x4e\x4c\xf9\x92\xbb\x5e\xe5\x43\x63\xe2\x03\x97\x0a\x3a\x20\x27\xe5\xe8\x25\x7f\xba\x08\x6f\x73\x69\x94\x89\x32\x46\x05\x94\x8b\x2a\x93\x51\x77\x70\x49\xe9\x40\xf2\x22\x63\x97\x7c\xe0\xaa\xd8\x3f\xd6\xc6\x5a\x8a\xfd\x40\x4e\xfc\xfc\x92\xad\x71\xf9\x31\x16\xee\xaa\xcb\x0f\xbb\xb1\xdb\x45\x1d\x7b\xcb\x6e\x81\x9c\x74\xd8\xb7\xec\xf6\x4e\x84\xc0\xf5\x6f\x29\xfa\x4e\x8d\x5a\x50\xaf\x51\xf7\xfb\xc3\xb6\x51\x72\xe9\x16\x41\x90\x93\x16\xe5\x29\x17\x7b\x56\x10\xb4\x8d\x56\xe0\xa9\x20\x08\xe4\x24\x0b\x3e\xc7\x6b\x94\xd7\x28\x67\x2d\x85\x37\x20\x36\x36\xf4\x54\x55\xf9\xac\x24\x6b\x1b\xe5\xc6\x53\x49\x16\xc8\x49\x39\xfa\x54\x92\x7d\x96\xa2\x8d\x32\xd9\x75\x65\xe0\x9b\xb3\x7c\x05\x1b\xdf\xa8\x53\x04\x83\xa2\xd5\x37\x52\xb1\xd3\x9a\x1b\xaf\xc0\xae\xd6\xdc\x79\xef\x34\x2e\xea\x9c\x47\xcf\x17\x24\x3e\xe0\x7a\xfb\xf4\x66\xf1\xfe\xb0\x5e\x42\x78\xe3\xb5\x43\x90\xb3\x39\xd4\x14\xb5\xd7\xa8\xae\x51\x87\x28\xb4\xda\x02\xea\x14\x75\x32\x2a\xa1\xf4\x8b\xa6\x5f\x14\xa5\x5f\x44\x54\xde\x77\x5d\xbd\xb3\x77\x51\x95\x93\x5c\x1d\xa3\xd3\xc6\xd9\xa8\x28\xe5\xfa\x92\x42\x90\xb3\x31\x6a\x68\x54\xa9\xd0\xc6\x14\xb5\x8b\xc2\xad\xda\x82\x42\xd4\x61\xac\xb5\x18\xe5\x5a\x4b\x46\xde\x37\x28\xad\x55\xe5\x9d\xd9\x8b\xba\x45\xe1\x56\x95\x5a\x7c\x10\x33\x9c\x37\x46\xb3\x6a\xc3\x5c\x6f\x8c\x82\x9c\x1d\x51\xb9\xf4\x73\xba\x3c\x23\x87\xbb\xba\x3c\xe7\x2d\xcf\x48\xd8\xae\xb7\x3c\x41\x12\x27\xdc\x78\x39\x71\xab\x08\x62\x5e\xee\xee\x3c\xcf\xbd\x60\x6c\xc1\xa8\xd0\x28\x96\x77\x84\x50\x37\xe5\xce\x69\x7b\x15\x4b\xee\x3a\x6d\xd7\x69\x77\x46\xe9\xb4\xbd\x82\x95\x79\xe5\x37\xa7\x15\x78\x41\xce\x6a\x94\x5d\x1d\x81\x53\x8c\x1b\x69\xca\x55\x8c\x0b\x8c\x57\x4d\xd7\x9b\x9b\x20\x67\x0f\x28\xd6\x8a\xd4\x28\xa8\xd4\xa8\xd4\x28\xd6\xca\xd7\xa8\x5a\x9e\x77\x32\x57\xa1\xea\x29\xaa\x1a\x3f\x57\x11\xe7\x14\x71\xc6\xc3\x8c\xab\x88\x13\xe4\xec\x1a\x85\x26\x28\x83\x8c\xfb\x14\x57\x19\xe4\x7c\xc5\x52\x85\x46\x51\x44\x75\x41\xf2\xac\xe4\xfa\x8a\xc5\x57\x1d\x9a\x6f\x15\xb6\x7d\xe9\xd0\x80\x9c\x43\x14\x2a\x5c\x55\x5a\xfb\x56\xee\xee\x3c\x27\xbc\xa0\xe9\x68\xf5\xaa\xe0\xd4\x16\xbe\xa1\x68\xd5\x16\xbe\x97\xbb\xfb\xc6\x5a\x3b\xee\x2e\xc8\x39\x1a\x14\xb6\x4a\x6d\xe1\xbc\x50\xb8\x6a\x0b\x41\xce\xd1\xa1\x38\xb4\x5d\xcb\x57\xde\x75\xd5\x03\x7e\x94\xe5\x78\xe3\x17\x0f\x59\x0e\x90\x3c\x8a\xf9\xc1\x9b\x9b\x1f\x3c\xa4\xb7\x8a\x39\x4e\xd6\x7f\x41\xce\xa1\x89\x98\xef\x41\x97\xc8\x13\x82\x1f\x54\xf1\x82\xc1\xbb\xb3\x1f\x64\x54\x27\xf9\x7b\x9b\x50\xb2\xfb\x43\x76\x3f\x90\x4b\x2a\x04\xbc\x55\xa2\xf0\x43\x2a\x3c\xd4\x4b\x26\xcb\x53\xb2\x3b\x5f\xfa\x78\xdf\x90\x8b\x2e\x51\x90\x3c\xd6\xf9\x91\xda\x50\xaa\xe3\x9c\xbf\x98\x8a\x5d\xe5\x82\x9f\x9a\x41\x80\x50\x16\x74\xf2\x88\xd3\xb5\xb8\xf2\x88\xdf\x1c\x0d\x1f\x34\xf8\xad\xa3\x01\x06\xef\x82\x7e\xeb\x68\xee\x8a\x19\x6e\x9c\xd6\xad\x98\x71\x2b\x66\x54\xb1\xe3\xb7\x62\xc6\x5d\x62\xbb\xe1\x16\xb7\xc4\x06\x1a\xb7\xd1\x7e\x53\xab\x3b\xd9\xc6\xa9\x9c\x5d\xd9\xc6\x9f\xe5\x16\xee\x98\xdf\x53\x6e\x01\xe4\x1c\x13\xca\x44\xd5\x44\xaf\xc2\x3c\x94\x0e\x62\x2b\xbb\x77\xaf\x82\x2e\x36\xee\xfb\x05\x39\xc7\x82\x4a\xa8\x0a\x5c\x1e\xb5\x7c\x6c\x04\x2e\x41\x4e\x83\xc2\x2d\x62\x2b\x51\x9d\xc7\xfe\xd8\x52\x6b\xa5\x1e\xbf\x45\x69\x2d\x84\xe0\xc5\x2f\x94\x5a\x82\xaf\x76\x9c\x87\xa8\xd0\x57\x3b\x82\x9c\xd6\xa0\x4e\x51\xa5\x42\xae\x9e\xa3\x11\xc2\xa3\x29\x7d\x96\x53\x47\x23\x7d\x06\xe9\xc0\x79\x55\x08\xa5\x83\xe0\xbb\x17\xe7\xc1\x3a\xf4\xdd\x8b\x20\x67\xe5\xb7\xe8\x5a\xbe\x57\x5f\xe9\x14\xc0\xd1\xe9\x2b\x05\x1d\xaf\x8b\x4e\x6d\x21\xf0\xe9\x4c\xa4\xb6\x10\x8c\xe6\x9a\xa8\xe5\xb9\xdd\x98\x15\xb8\x42\x97\xa4\x82\x9c\x86\x5c\x94\xb6\x41\x9a\xf2\x59\xfe\x14\x4a\x53\xa1\x6f\x55\x66\x59\x77\xe8\x5b\x15\x41\x12\x92\x62\xe0\x62\x31\x2a\xad\x3b\x17\x9b\x31\xa8\x9f\x04\x49\xa9\x17\x83\xfa\x29\x48\x40\xbe\xba\x46\xdd\xa2\xf4\xe5\x48\x87\x42\x2e\x52\x8b\xaf\x32\x93\x50\x6a\x09\xc3\xa2\x57\x75\xeb\x61\x58\xb4\x20\xa7\x31\x0a\x8b\x0e\x32\x8c\xaf\x2a\xf2\xc3\x08\x10\x02\xe3\xed\x33\xb8\x5f\xfc\x10\x24\xa0\xd8\x36\x26\x92\x0e\x04\x49\xbd\x19\x4a\x40\x61\xe5\xd4\xb1\x49\x08\x9c\x5a\x90\xd3\x59\x4b\x2a\x24\x4d\x05\xcf\xb4\xa1\x34\x15\x5e\xa2\x06\x05\x4e\xb8\x44\x75\x89\x5a\xd5\x4c\xb8\x44\x05\x62\xab\x34\x15\x4e\x0e\x17\xe4\xac\xee\x20\xc8\x75\x1f\xc2\x6b\x43\xb1\x2d\x26\x6a\x43\x40\xf2\xa2\x1c\xae\x0d\x91\xcc\xa2\x55\x46\x0d\x25\xb3\xe0\xa3\x8f\x68\xd5\x60\x85\x3e\xfa\x10\xa4\xcc\x44\x1f\x7d\x44\x68\x62\x35\x32\xa1\x34\x15\x7c\x2c\x10\x1d\x21\xf4\xb1\x80\x20\xb9\x63\x0b\x7d\x2c\x10\xba\xdd\x18\x55\x48\x84\x6e\x37\x04\x29\xfb\xd2\xed\x46\xf0\xfd\x40\x8c\xce\x44\x72\xa5\x20\x27\xfe\x98\x04\x85\x20\x31\xc6\xa8\x78\x1d\x4a\x8c\xc1\x97\x01\x31\xb0\x2f\x7d\x19\x20\xc8\xc9\x86\xf4\x65\x40\x4c\x54\x38\x42\xa3\x0e\x51\x52\xe1\x82\x42\x85\x33\x59\x2b\x4b\x5f\xdc\x3b\xbc\x20\x27\x36\xa1\xeb\x87\x20\xc9\x06\xb7\x7a\xa1\x24\x2b\x08\x33\x51\x5d\x54\xe7\x99\x76\x40\x0d\x51\x17\xa3\x3a\xd4\x2d\x8a\x36\x0c\xb7\xd2\xf5\x43\xac\x92\x2b\x08\xa2\xb1\x24\x17\x90\xf2\xb4\x45\x35\x13\xcb\xe9\xa0\xa2\xf6\xb8\xe8\x2e\x04\xed\x25\x04\xdd\x45\x2c\x89\x5a\xa5\x5e\x28\x15\xc7\x5e\xb2\x04\xc5\x52\xec\x14\x12\x82\xc1\x63\x6e\xec\x14\x12\xb1\x57\x10\x2d\xf3\x84\x4a\x51\xd4\xc1\xd1\xa1\x08\x30\x7b\xc9\x15\x4e\x94\xdb\x25\xd7\xae\x2a\xab\xca\xb3\xd8\xa9\xb2\x62\x2f\x57\x08\x17\x25\x57\xd8\x15\x4d\xb0\xfb\x5d\xd1\x84\xb4\x1e\x51\x95\x77\x28\xad\xc7\x51\xe1\x31\x82\x08\x70\x28\x3c\x1e\xea\xd9\xaa\xa7\x8f\x83\x9e\x2d\x0e\x2f\x21\xf8\x2c\x30\x0e\xee\x24\x05\xcd\x71\xbe\x43\xa1\xe3\x28\x63\x0c\x3e\x03\x88\x83\x0b\x48\x41\x4e\x6c\xe2\xe0\x72\x2e\xc8\xb5\xc1\x1b\x76\x1c\x4a\x01\x40\xce\x48\xa8\xd7\xa8\x12\x35\x9b\xfd\x75\x2a\x8e\xf6\xb7\x99\x38\x94\x89\x83\xc6\x3d\x78\xa4\x0b\x35\xee\x82\xce\xa3\x53\xa8\x71\x8f\x33\xf4\x2c\x58\xbf\x74\xca\x51\x4e\x39\x0a\xa7\x7c\xca\x51\x4e\x6c\x94\xcb\x89\x38\x65\xa3\xe7\xcb\x46\x17\x94\x8b\x2a\x11\xe9\x47\x43\xb9\x3f\xae\xfa\xc5\xa0\x43\x89\x4b\xbf\x08\xe4\x24\x52\xd2\xfa\x7e\x08\x9e\xec\x43\xa7\xac\x27\x7b\x41\xce\x6c\x50\x97\x28\xd6\x5a\x1a\xa5\xb5\x14\xf0\x52\x94\xd6\x92\x10\x24\x67\x55\x1b\x71\xf3\xf4\xc9\x63\x58\xdc\xdc\xc9\x08\x72\xe2\x74\x37\x77\x32\x71\x63\x57\xab\x9a\x96\xb8\x65\x57\xb7\xec\x2a\x59\x4b\x76\xc5\x73\x7a\x2c\x12\xfd\x4d\xdf\x27\xc8\x59\xb5\x61\xdc\x14\x6f\x41\xb5\x11\x0b\x8b\x51\xb5\x11\x4f\x82\xd4\x56\x8d\x7f\x3c\x15\xa4\x80\x54\xe2\x7a\xca\x3c\xa8\x36\x72\x2b\xb9\x52\xd5\x46\xf2\x09\x72\x6e\x65\x1e\xa9\x4f\x90\x05\xc9\xab\x63\xea\x13\xe4\xdc\xe8\x63\x5a\x83\xa2\x1a\x15\xe4\x4c\x26\x12\x62\x73\xa3\x7c\x6a\x55\x18\xe5\xe6\x5a\x9e\x7b\xba\x99\x0b\xaa\x8b\x2a\xeb\x6b\xc6\x5a\xec\x51\x90\xb3\x0a\x90\xdc\xd8\x63\xea\xab\x64\x52\x78\xea\xab\x64\x41\xa3\x00\x49\x0a\x9b\x17\xe4\x9c\xa2\x24\x04\x7b\x6c\x55\x51\xe5\xeb\xef\x03\x9a\xa8\x3a\xda\x54\x01\x92\x54\x18\xd9\x67\x40\x5d\xa2\x38\x8e\xa9\x51\x37\x14\xf1\xb4\x57\x7d\x93\xbc\xfe\xbe\x20\x27\xcb\xeb\x11\x38\x79\xf1\xcd\x51\x3d\x77\xea\xc5\x57\xd0\xb8\xfc\x4a\xbd\xf8\x0a\x92\x57\xda\xec\x18\x66\xf6\xd4\xb7\xde\xfc\xa2\xf6\x08\xb4\x51\xfd\x68\xea\x95\x36\xa9\x49\x72\x94\x45\xa7\x6a\x92\x54\x6f\x3b\xd0\x97\x7a\x5b\x41\xce\xe9\x50\x28\x5a\x6f\x93\x56\x3d\x51\xea\x6d\x52\x90\x93\x6d\x53\x66\xbc\x20\x0d\x9b\x50\xe8\x4f\x42\xec\x1c\x95\x46\x52\x21\x36\xf7\xca\x39\x93\xdb\xad\xdc\xb9\x02\x11\xb4\xb5\x44\x71\x8e\x04\xbc\xc9\x87\x95\xa9\x80\x97\x04\x96\xc9\x77\xaa\xa9\xd0\x91\x67\xb9\xd5\xe4\x2b\xee\x3c\x53\x54\xee\xef\x8f\xc9\x9f\x2a\xa4\x6e\xca\x04\x0f\xae\x40\x52\x37\x65\x49\x04\x98\xdb\xe6\x7f\x15\xa4\xea\xff\xff\xb8\x7f\x79\xfb\xcb\x1f\xa7\x9c\x3f\x7f\xfd\x7a\x7f\xfa\xc6\x9f\xc2\xf0\x57\x28\x8f\xeb\x7e\x7e\xfc\x74\xff\xe5\xcf\x6a\xbe\x7c\xfe\x52\xb3\xf8\xdf\x7f\x07\x00\x00\xff\xff\xcf\x44\xd9\x36\x82\x33\x00\x00"); +var _bab =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x9b\x4b\x8f\x65\xc7\x6d\xc7\xf7\xfd\x29\xee\xd2\x59\x38\x3a\xf5\x64\x11\x18\x34\x60\xc8\x11\x22\x07\x4e\x02\x2b\x2f\x20\xc8\xe2\x3c\x78\x84\x01\xa2\x9e\xc6\x68\xb4\xf0\xb7\x0f\xf8\xfb\x5f\x29\x71\x12\x40\x0b\x83\xd6\xbf\x79\xaa\x58\x24\x8b\xaf\xba\xf3\xd5\xd7\xdf\xfe\xfe\xdb\xb7\x8f\x5f\x1e\x5f\xfd\xe3\xe7\x4f\xe7\x77\xf1\xe5\x71\x7f\x7c\xbb\x3e\xc7\x8f\x9f\x7e\xfa\x7c\xc6\xe3\x88\xef\x3f\xbe\xbd\xbc\x94\xfa\xb8\x3e\x9e\x5f\x7e\xfe\x4f\xc8\xf9\xc3\xfe\xfe\xf2\x92\xdf\x7f\xf7\xe7\x1f\xbf\xc4\x0f\xdf\xbe\xdd\x9f\x1e\x4d\x7c\xd7\x4f\xef\x4f\xde\xc7\xe3\xab\x3f\xc5\xf7\x1f\x7f\xfc\xf2\xf9\xcf\x8f\xdf\xfc\xee\xfa\x74\xc4\x5f\x3d\xae\xb8\x13\xff\x87\xcf\x57\x7c\xfe\xf8\xf6\xfd\xe3\x37\x7f\xd8\xdf\xf7\xb7\xf2\xcb\x1f\xbe\xfb\xe9\xfd\xfd\x3f\xe3\x87\x78\xfb\xf2\xd8\xc0\xe2\xed\x82\xbe\x7c\xf5\xf5\x1f\xf7\xf7\xbf\xdf\x7f\x88\xc7\x57\xb6\x7e\xfb\xa7\xbf\xfb\xee\x0f\xbf\xfd\x5b\xfe\xc2\x1f\xfe\x25\x3e\xff\xf8\xf1\xd3\xdb\xa3\x6c\x7f\xbd\x6d\xf3\xbf\xf1\x7f\xfa\xf3\x7b\x3c\xca\x73\x85\x7f\xfb\xe7\x6f\x7f\xff\xf8\xf7\xf2\x28\xdb\xa3\x8e\xd6\xe7\x7f\x3c\xf1\x7f\xfd\xe3\xa7\x2b\x9e\xfb\xbd\x74\x49\x7f\x7e\xba\xe2\xc7\xf7\xfd\x8c\xcf\xfb\xdb\xf7\xf1\xf2\x78\x7c\xd8\xb6\xd7\xc7\xe3\xf1\x61\x6d\xaf\xf9\x5f\xab\xf4\xed\xf5\xf1\xc1\xbf\xf9\xe6\x6b\xfe\xfb\x77\xfa\xeb\xef\xbf\xe1\xbf\xfe\x66\xe3\xaf\xdf\x7c\x9d\x7f\x8d\xb7\xeb\x7f\xad\xf6\x52\xb4\xc9\xdb\xa7\x2f\x57\xdc\xc2\x58\xff\x43\xb9\x5f\x1f\xb5\x95\xfc\xe6\x7f\xfe\xf1\xa5\x6c\xdb\x53\xae\x8f\xd7\x93\xbf\x26\xbf\x85\xf8\x7f\x96\x67\x95\x44\x66\x6b\x89\x2c\x21\xfb\xf9\xfa\x98\x3e\x5f\x3e\xac\xda\xef\x44\xea\x58\xaf\x0f\x5b\x5b\x22\x13\x9e\x6a\xfe\xfa\x30\x07\x59\x05\xc4\xf7\xd7\xc7\x2a\x7c\xe5\xfa\xea\x2e\xaf\x8f\xd5\xeb\xcb\x87\xd5\xb4\x57\xcb\xbd\xbc\x8e\x44\xb4\x57\xf3\xf9\xfa\xf0\xb5\x12\xd1\x57\xed\x98\xaf\x8f\xb2\x95\x14\xb1\x1d\x82\x2e\xa0\x96\xdf\x75\xad\xd4\x53\x8c\xb2\x0d\x4f\xc8\x04\xe5\xe2\x65\xf3\xdc\xaf\x6b\xf5\xee\xe5\xf5\x51\xca\x66\x2f\x1f\xd6\xd2\xf2\x90\x52\x90\x61\xed\x70\x41\x4c\x2a\x58\x7b\x11\x34\xe1\xe2\xc3\xdd\x04\xd9\xeb\x63\xd5\x39\x81\x96\x20\xd6\x6a\x3d\xa1\x43\x6b\x25\x31\x9f\x05\x48\x6b\x25\xb1\xd6\x36\xa0\x2a\x68\xe5\x87\x5d\x1f\xba\x20\x47\x08\x41\x3b\x50\x1c\xc9\x35\xf2\x40\x2b\x4e\x41\x27\x5c\x48\x1f\x17\xd0\x9d\x9a\xa8\x1b\xd2\xdf\xda\x31\x89\xcd\x86\xa8\xb7\x76\xbc\x1d\xae\x05\xa4\xe5\x93\xd8\x6c\x9c\xf1\x3e\x04\x9d\xc9\x55\x12\x72\x29\xda\xfb\x02\x72\x20\x17\x24\x51\x17\x10\x6b\xf9\x68\xc9\x55\xe1\x1a\x5d\x50\x87\x4b\xd0\x10\x64\xc9\xd5\x37\xa0\x25\x28\x3d\x6b\x3e\x21\x2d\x3f\x0e\xb8\x3a\xd0\x29\x88\x63\xe3\x4a\x3e\x38\xb6\xe3\x00\xb5\x23\xc4\x2c\x82\x38\x76\x6f\x40\x1c\xdb\xf1\x89\x3a\x80\xe4\x13\xbe\xf6\x84\x16\x6b\xad\x43\xd0\xc1\x87\xec\xb8\xb4\xe3\x3e\x92\xcb\x81\xd2\x19\x9e\xc4\x66\x1f\x40\x26\xc8\xd2\xb4\x93\x33\xca\x27\x20\x36\xfb\x04\xd2\x81\xae\xeb\xf5\x51\x5a\x45\x88\x2b\x04\x05\x5c\x28\xfa\xc2\x31\xfd\x4e\xe5\x34\x03\xba\xb5\xd6\xad\xb5\x38\xe3\xad\xb5\xd2\x68\xa5\x63\x6d\x97\xd1\x20\x36\x3b\x42\xdc\x92\x1e\x3b\xf6\x2d\x85\xd8\x65\x47\x48\xe9\x5c\x85\xbd\x17\x41\xe8\x6b\x6c\x40\xe8\x6b\x9f\xe2\xca\xb5\x76\x69\x15\x32\xbb\xf3\xe1\x7c\x72\xa5\xa8\xbd\x17\xa0\x25\x68\xbd\x3e\xc6\xc6\x19\xf7\x89\xa8\x3b\xba\xef\x48\xbf\x4b\xf7\xfb\xea\x09\x19\x3b\xae\x21\x68\x20\x04\x6b\xad\x29\x88\x33\x1a\xd2\xcb\x42\xbb\x2c\xc4\x55\xd8\x65\xa1\xdd\x6b\x72\x61\xc7\xdd\x9b\xa0\x06\x17\x42\x78\x17\x94\x76\xec\x04\xaa\xdd\xb5\x7c\x92\xe1\xf8\xfd\xee\x26\xc8\xe1\xd2\x87\xbb\x20\x6e\xc7\xe8\x40\x12\x22\xa3\x51\x79\x6a\xe2\xd4\x81\x4e\x42\xc7\x18\x40\xd2\x57\x92\xf1\xdc\xf1\x94\xbe\xce\x3c\xd0\xe0\x3e\xee\xa7\xd6\x3a\x75\x20\x41\x3a\xd0\x99\xcb\x0f\x3c\x67\xbf\xb4\x7c\x92\x39\x09\x8f\xfb\xa5\xe5\x23\x8f\x3d\xa4\xaf\xd0\xb1\x43\xc7\x46\xae\xd0\xb1\x71\x80\x81\xa2\x0f\x39\xc0\x91\xb7\xb6\x0c\x1f\x40\xbb\x20\x9d\x71\x01\x21\xd7\x31\xd2\x68\x13\xcf\x39\xc6\x2d\xe8\x86\x2b\x7d\xe2\x50\xf4\x3f\x30\xed\x24\x3c\x1e\x32\xed\x41\x5c\x7d\xae\xa5\xb8\x7a\x28\xae\x4e\x84\x50\x5c\x3d\xf2\xc2\x94\xe9\x05\x68\x09\xc2\xc9\xa7\x20\x3c\xe7\x38\x1b\x5c\xec\x78\x76\x41\x19\x4d\xba\x75\xa0\x21\x28\xcf\x68\x12\xe2\xbc\x04\x5d\xac\x55\x81\xb8\x69\x47\xa4\xee\x0d\xdd\x1f\xa1\x33\x06\xba\x9f\x0d\x08\xdd\x1f\x19\x31\x8b\x11\xdc\x0f\x45\x4c\x88\xcd\xc9\x8e\x77\x13\x94\xb1\xd0\x8c\x0f\x75\x1f\x21\x36\xe7\x20\x69\xff\x9c\x6a\xff\xbf\xec\xbb\x0e\x85\x5d\x48\x51\x32\x3d\x74\x83\x0f\xdd\xe0\xe7\xee\x4f\x81\x38\x1c\xde\x7d\xca\x80\x67\x5e\xd1\x62\xab\x01\x35\x41\x58\x7e\x1a\x10\x8a\x3a\x33\xd4\x16\x5b\x40\x63\x0a\x22\x70\xcd\x05\x84\xc3\x9f\x33\x35\xbc\x30\xf3\x39\xf5\xe1\x24\x5e\x13\xcb\xce\x39\x04\xa5\x10\xab\x6e\x40\x97\x20\x34\x6c\x82\xd0\xf0\x99\xe9\xb7\x2c\x62\xff\x69\x45\x10\x91\xc5\x0a\x50\x15\xc4\x8e\x24\xd9\xd3\xb4\xa3\xb1\xa3\x71\x46\xd3\x8e\x59\x56\x94\x85\xb5\x4e\xdb\x05\xa5\x93\x96\xa5\xb5\x0e\x41\xe9\x7e\xaa\x2c\x4e\xb9\xdf\xb9\x58\x9e\xcb\x73\x2e\x2d\xbf\xb4\x3c\x3b\x2a\xd8\x9c\x8e\xa8\x5c\x9e\xd3\x25\xaa\x4b\xd4\x0e\x24\x51\x3d\xcd\xbc\xa6\x20\x17\x84\x99\x6d\x00\x49\x2e\xcf\xa8\xbe\x24\xbd\x4b\x13\x4e\x54\x27\x70\x9d\x2a\x37\xce\x4c\xfe\x65\x11\xd5\x4f\x25\x7f\x88\xcd\x27\x24\x3b\x1e\x1c\xc8\x05\x3d\x3f\xe4\xd6\x19\x46\x53\xb0\x39\xf1\x09\x2f\xa9\xfb\x4b\x3e\x71\x71\xa9\x1d\x45\x5f\xba\xd4\x97\x2e\xb5\x39\x10\xfa\xba\xf0\x09\xc7\x99\x2e\xf9\xc4\x25\x9f\xc0\x0b\x2f\xf9\xc4\x45\xec\x77\x52\xde\xa5\xd8\x7f\x29\xa3\xa2\xfb\x4b\xb1\xff\x4a\x73\xd4\x6d\x4b\x4d\x5c\x32\x07\x64\x2c\xc2\xee\x65\xa7\xa0\x2c\x33\x37\xea\xcc\x4b\x16\xba\x32\x6c\xd7\x8d\x02\xe7\x5a\x97\x20\x9c\x49\x72\x2d\x54\x78\x65\x08\xaf\x1b\x49\xe3\x52\x08\x87\xd8\xc4\xef\x2f\x1f\x82\x56\x72\x11\x76\x2f\x59\xe8\x92\x85\x16\xcb\xcb\x42\x57\x46\xcf\xba\x11\x7f\x2e\x45\x4f\x88\xcd\xc5\x87\x97\x0e\x94\x11\xb3\x16\x0a\xd7\x2b\xb4\x7c\x90\x93\x96\x20\xe9\x2b\x03\x44\x2d\x38\xe6\xa5\x00\x71\x29\x40\x70\xd3\x2e\x05\x88\x2b\x2d\x54\x0b\xa9\x38\x64\xa1\xe8\x23\xa1\x21\x68\x0a\x92\xee\x17\x90\x09\xca\x03\x15\x22\x40\xa8\xca\x0a\x55\x59\x4b\x1f\xee\x82\x76\xb8\x04\x1d\x82\x08\x1d\x64\x9b\xe8\xe8\x3e\xd2\x9c\xb5\xe0\x13\xa1\x2a\x2b\x54\x65\xb9\x20\x2d\x8f\x85\x0a\xfa\x0a\x59\x28\x32\xae\xd6\x5a\xd3\x1c\x71\x4a\xd4\x13\x51\x49\x8c\x71\x4a\xd4\x24\x53\xc9\x3f\x4e\x2d\x7f\xa5\x0a\x55\x2c\xc5\x35\x04\xa1\xc2\x27\xa4\xb5\xae\x94\xbe\x51\x82\xc6\x25\xe9\x2f\xea\x3a\x72\x52\x5c\xf8\x44\xa0\xc2\x56\x12\xba\xa5\xc2\x3b\x35\x51\x1b\xc5\xd2\x2d\x4d\xdc\x72\x72\x17\xc4\x5a\x77\xd6\x9b\xb5\x91\x80\x6e\xd5\x9b\x10\x9b\x2e\x08\x21\x6e\xf5\x3f\xa8\xf0\xd6\xb1\xef\xac\x2d\x6a\xe7\x5a\xdd\xaa\x2d\x6e\x39\xa6\x8b\x0b\xc7\xbc\x33\x4e\xd4\x5e\xf3\x40\xb7\xe2\xc4\x4d\xb9\x61\x5b\x01\xc2\x57\xef\xbd\x26\x17\xb5\xfe\xbd\x37\x41\xe2\x6a\x40\xe2\xca\x26\xa1\x76\x82\xd5\xad\x26\x01\x62\xb6\xb1\xbc\xe2\xc4\x7d\xa4\x26\x3a\xee\x7b\x1f\x97\xa0\x0b\x2e\x94\x73\x48\xae\x8b\x1d\x09\x43\xf7\xa5\x1d\x2f\xed\xc8\xf2\x97\x76\xbc\x58\x0b\x73\xdc\x52\x34\xc4\x8c\x82\xf0\x56\x55\x7a\x47\x9e\x71\x48\x88\x90\x10\x49\xcc\x30\xda\xad\x72\xe3\xc6\x42\x23\x6b\x44\x57\xd7\xea\x1b\xee\x3b\xb2\x2d\xf1\x0d\xf7\x15\x31\x7b\x72\xed\x40\x96\x8e\x39\x3a\x5c\xb6\x04\xa5\x63\x5a\xea\xde\x37\xd3\x87\x58\x68\x64\x1b\xe7\xdb\xd2\xf2\x49\xcc\xb2\x25\xf4\x8d\x6e\xd3\xb7\xc5\x8e\xce\xf2\x4b\x1f\x2e\x76\x2c\xf5\x57\x53\xb1\x6f\x4b\x02\x65\x8c\xae\x33\x0f\xe7\xdb\xae\xad\x76\x6d\xd5\x80\xb4\xd5\x01\x57\x63\xf7\x53\x5c\xa7\xb8\x3a\x90\xb8\x52\x39\x95\xa2\xc2\x37\x8a\x30\x11\xb3\xc2\x79\x89\x2c\xbe\x45\x1e\x6e\x4a\xec\xb8\x81\x6e\xad\x35\x13\xba\xb5\xd6\x3d\x5f\x1f\xf5\x79\xde\x6c\x0b\x92\x48\x51\x88\x7a\xeb\xbc\xd8\xc1\xb2\x33\xf3\xe7\x6c\xa1\x10\x6c\x2c\xab\x70\x2f\x04\x1b\x11\xb3\xcc\xe1\x5e\x08\x36\x22\x93\x62\xc7\x4b\xc7\x0e\x85\x98\x61\x9c\xb1\x8c\x27\xc4\x8e\x55\x10\x3b\x96\x99\x37\xd8\x32\x38\x7b\x99\x87\xa0\x03\xae\x0a\x74\x0a\xba\x92\x2b\x8b\x12\x2f\x94\x08\x22\xf6\x94\x6b\x72\xec\x62\x70\x19\x72\x99\xb8\x4c\x5c\xa9\x55\x8d\x22\xbc\x60\x66\x5b\x88\x2a\x33\x17\x99\x39\x1b\x78\x2f\xb2\x63\x39\x90\xcb\xe1\x3a\x24\xd7\x21\xb9\x04\x49\xae\xac\xc2\x2b\x25\x82\x97\x53\x5c\xa7\xb8\x10\xf5\x14\xd7\x95\xc1\x66\x4d\x0e\x74\x69\xf9\x24\x66\x95\x63\x5f\xfa\x30\xf2\x06\x93\xd6\xbd\x44\x11\xc4\x0d\xae\x98\x83\xcb\xe3\x25\x8b\xcb\xba\x16\x07\xa2\x5b\x17\x31\x6b\x1c\x3b\x74\xec\xcc\x23\x75\x49\x7a\xf2\x88\x97\x1b\xcf\x91\x39\xee\x21\x28\xa5\xf7\x0d\x15\xde\x12\x82\xb2\xd1\x9a\x20\x49\x8f\x4f\x50\x22\x78\x95\x4f\x54\x7c\xc2\x71\xa6\x2a\x9f\xa8\xf2\x89\x4c\xc5\x5e\xe5\x13\x90\xea\xf8\x57\x95\x4f\x54\xdd\x60\x2e\x75\xd5\x0d\xae\x19\x6a\xab\x57\xad\x75\x0a\xd2\x81\x0c\x88\x03\xd5\x21\x2e\x3e\x1c\xe2\xa2\x81\xb7\xe6\x40\x68\xa2\x72\xcf\xbd\x23\xaa\xac\x5d\x57\xde\x34\x37\xe4\x72\x41\xce\xed\x10\x17\x15\x9b\xd7\x0c\xb5\xd5\x1d\x21\xa8\x07\x44\xcc\xba\x20\x9d\xd1\x11\x02\xad\x56\x97\x10\x8e\x10\x59\x36\x7a\x75\x09\x91\x9e\xd3\x36\xb4\x5a\xe5\x39\x55\x9e\xd3\x05\xe9\xc3\x4c\x8c\x6d\x93\xbe\x4e\x2d\x4f\x62\xb4\x2e\x48\x2a\x4c\xd2\x36\xc2\x5b\x3d\xa5\xc2\x93\x3b\xf4\x84\x5c\x10\x3b\x76\xf4\x25\x2f\xac\xf2\x42\x1c\xb3\x9e\xcf\x1d\xcf\xe4\x1a\x1c\xfb\x94\xa8\xf4\x36\xf6\xfc\x50\x8a\xce\x6a\xa6\x6d\x83\x03\x51\xcd\x88\xac\xca\xe5\xab\xa4\x03\xaf\xd7\x82\x4b\x90\x84\x48\xd2\x07\x9e\x53\xe5\xe4\xf5\x66\xc7\x2c\x7a\x5d\xd3\x3a\x91\xb6\x11\xac\x1a\x23\x03\x11\x53\x04\x68\x8c\x0c\xbc\xa5\x7f\xb5\x92\x59\xd0\x9b\xfc\xab\xc9\xbf\xba\x3e\x34\x41\x27\x5c\x13\xe8\x12\xc4\x81\x38\x63\x93\xe7\xb4\xcc\xe1\xad\x10\x7d\x1b\x39\x5c\xc4\x6c\xb0\xfc\xd0\xf2\xe9\x40\xad\x54\x41\xcf\x0f\x09\x1d\x68\xa2\xd1\xb6\x7a\x9b\x33\xb9\xb8\x69\x6d\x4a\x88\x24\x66\x83\xe5\x99\x5b\x78\x9b\x0e\x17\xa2\xce\x5d\x10\xd7\x7d\xa0\x09\x45\xb9\x96\x31\xab\x15\x3c\xa7\x99\x94\x43\x8b\x63\x59\x82\x7a\x33\x69\xc2\xd0\x84\x8e\x6d\x12\x35\xc9\x58\x4f\x2e\x09\x91\x7e\xdf\x8a\x96\x97\xdf\xb7\x6c\x5e\x5a\x21\xe6\x34\x9a\x17\x11\x33\x8c\xd6\x96\x34\xb1\x38\xf6\x14\xa4\x63\x27\x19\x75\xe3\x8c\x4b\xc7\xce\xda\xa4\x15\x22\x53\x63\x2c\x22\x32\xba\x34\xe1\x5a\xde\xd3\x57\xcb\x62\x47\x97\x26\x1c\x5f\x1d\x98\x96\x9a\xda\x5b\x5e\x85\x56\x16\x6b\xe9\x2a\x40\xcc\x06\x67\x3c\x64\xc7\xcc\x8f\xad\x12\xdc\x9b\xf2\x63\x53\x7e\x9c\xdb\xaf\xa7\xe2\xa6\xf4\xd9\x70\xe5\x4a\x24\x6e\x72\xe5\xa6\x32\x66\x62\xe6\x4b\x62\xe3\xca\x95\x9b\xd2\xe4\xca\x4d\xc1\x99\xbc\xdb\x14\x9c\x5b\x56\x33\xad\xca\xcc\x97\xb4\x92\xc4\x6c\x62\x87\x90\x8c\x99\xb0\x5b\xd5\x79\x95\xb0\x1b\x75\xbf\x12\x63\x0b\x19\x30\x52\x51\x55\xd7\x22\xa4\xa8\x40\x51\x53\x1f\x4a\x88\x9b\xb5\x64\x9a\x5b\x6b\x25\x99\xcb\x11\x42\x21\xbc\x71\xc5\x6a\x76\x66\xae\x31\xb6\xf7\xce\xf2\x68\xb8\x2b\xec\x42\xcc\xa6\xb8\x58\xbe\x0f\xb8\x88\x65\x5d\xd9\xb9\x2b\x3b\x93\x3e\xbb\xb2\x73\xc7\xfd\x5a\x49\x9b\x76\xb9\x1f\xc4\x2c\x5b\x01\xef\x72\x3f\xa6\xe4\xad\xe1\xca\x9a\x92\x7b\x5f\x79\x53\x1a\x17\xb1\x2f\x71\x2d\x6e\x8a\x89\x4b\x3b\x26\x99\x83\x40\xdf\x95\x8a\xbb\x52\x71\x76\xd8\xde\x95\x8a\x7b\x16\xd0\xad\x4d\xad\x75\x09\xe2\x9e\x13\xd5\xbb\xfc\xb6\x67\x65\xd5\x1a\x5a\xed\x7b\x15\x44\xa1\x99\x1d\xb6\x77\x2a\x67\xef\x7b\xba\x5f\x5b\x82\x4e\x41\xb8\x9f\xa1\x89\x5d\xcb\x27\x69\xcd\xc5\xf5\x5c\x9e\x68\xc0\x1d\xe8\x3b\x0e\xd0\xf1\xaf\xe6\x40\xf2\x2f\x88\x59\x76\xd8\xde\x15\x2a\x7b\xba\x49\xeb\xc4\xc5\x2e\x37\x81\x98\xc9\x68\xca\xf4\x3d\x13\x76\xeb\x44\xe2\xae\x84\x0d\x31\x86\x3a\xde\xe5\x00\x1d\x6b\x77\x9c\x69\xc8\xda\x90\xd6\x39\xe3\x50\x40\x1d\x1d\x21\xb2\xc3\xf6\xc1\x50\xc7\x47\xc6\xc5\xd6\x91\x6b\x28\x2e\x42\x8c\xd1\x8f\x0f\x9e\x64\x44\x46\x41\xae\x31\xb4\xfc\x60\x79\x12\xe3\x18\x5a\x7e\x10\xa5\xa8\x40\xc6\xa8\x82\x1a\x5c\xac\xc5\xa8\x5e\xc4\x0c\x45\x0f\x85\xdd\x91\x01\xb5\x75\x5c\x6e\x28\xa0\x42\x4c\xb5\xd8\x98\xda\x31\x2b\xbe\x36\xb2\x87\xf0\xc1\x80\x48\xc4\x98\x3f\xf9\x50\xf5\x37\x88\x9e\x83\x78\x3d\x14\x3d\x21\x66\x8b\x33\x9a\x44\xc5\x31\x07\xd5\xdf\x90\x63\x8e\x0c\x23\x6d\x34\xb8\x14\x27\x20\x66\x8b\x63\x9f\x3a\x10\x19\x75\x6e\x7c\xa8\x8c\x3a\x94\x51\xb3\x2b\xf6\xa1\x8c\x3a\xae\xbc\x43\x93\x92\x7d\x5c\x4b\x10\x77\x48\xfa\x52\x34\x19\x59\x79\x37\x06\x9b\x3e\x54\x79\x43\xcc\xe8\x47\xc6\xad\x0f\x31\x2d\xb3\x4e\x9f\x32\x2d\xa4\xa9\xfc\x9f\x32\xed\x54\xae\x74\x41\x55\x10\x42\x10\x86\xa6\xae\xfb\xd4\x75\xcf\xce\xcc\xa7\xae\xfb\x24\x27\x31\x17\xf3\xa9\x9c\x34\x95\x93\x70\xf2\xa9\x9c\x34\xd1\x17\x5d\x9e\x4f\xe9\x6b\xe6\x7d\x6c\x2a\x7a\xa7\xee\x23\xc4\xe4\x72\x73\xe9\xc3\x4c\x14\x4d\x15\xdb\x54\x95\x35\x55\x65\x61\xed\xa9\x2a\x6b\x92\x21\x54\x06\x4d\x65\x08\x88\x39\x4e\x3e\x95\x21\x20\xbd\x3c\xb9\xb4\x23\xe6\x50\x2a\x9e\x32\xc7\x7c\x9a\x83\x1d\x65\x8e\x79\xa5\xa2\xd7\x06\xd7\x65\x82\xa4\x68\xb4\x2a\x0b\xcd\x6c\x5b\xdb\xc2\x68\x93\xb6\x55\xc4\x8c\xa2\x64\xd2\xb6\xfa\xe4\xd6\x32\xa6\xf4\xa9\x5b\x0b\xb1\xb5\x09\xd2\x81\x30\xed\x22\x4d\x4d\x99\x16\x32\xfb\x10\xa4\x1d\x6f\xbd\x74\x16\x20\x9d\x31\x49\x5b\x5c\xf7\x79\xeb\x8c\x3c\x9d\x3d\xa5\x57\x31\x0e\x69\x8b\xe4\x3f\x55\x8c\x43\x6c\x51\x5c\x9a\xdc\xc4\xb8\xa2\x0c\x20\xdd\x74\x45\x21\xb6\x70\x5f\xd3\x15\xb5\xbc\x37\x6d\x91\x02\x4c\xed\x12\xc4\x56\x76\xfe\x6e\xba\x43\x96\x55\x47\x5b\x68\xc2\xac\x09\x6a\x70\x4d\xa0\x2e\x28\x53\x66\xf6\x0d\xbf\x9a\x8a\x4d\x0d\x38\xc4\x78\x7e\x71\x63\x06\xeb\x86\xaf\x39\xcd\xbc\xc9\xd7\x6c\xb1\x2e\xa6\x31\xa5\x03\x88\x2d\xa2\x81\xc9\xfd\xec\x84\x8b\x4b\x6d\x2a\x80\x21\xb6\x68\xba\xed\x14\x57\xda\xa1\xf1\x0a\xec\x26\x3b\xd8\x2d\x2e\x76\xbc\x9f\x5c\xe7\xeb\xa3\x6f\x2d\xe5\x5a\x52\x27\xc4\x16\xbd\xcd\xd2\xad\x5b\x19\x17\xfb\x46\xc3\xb0\x14\x17\x21\xb6\x48\x8c\x4b\x4a\x5f\x19\xf1\xfa\x36\x58\x4b\x11\x0f\x32\x37\xa4\x5f\x2a\x34\x57\xe6\xdd\xbe\x51\x81\x2c\xe5\xdd\xa5\x97\x70\x2a\xd4\xa5\xbc\xbb\xd2\x0e\x5d\x95\xb3\x1e\x99\x7d\x65\x3a\xe9\x1b\xf1\x67\xa9\x74\x81\x34\xd5\xb1\xeb\xd2\x8e\x1c\x88\x57\x60\xd7\x6b\xab\xf3\xf6\xd9\x99\xca\xb9\xde\x3e\x45\x4c\x77\x40\x6f\x9f\xee\x73\xbc\x3e\x7a\x45\x08\x9f\x53\xd0\x84\x6b\x00\x99\xa0\xbc\x9b\xaa\xcb\x5c\x61\x04\x62\x3c\xd2\xbb\x2b\x8c\x40\xba\x0a\x2f\x57\x03\x0f\xb1\x55\x04\x69\xc7\x74\x80\xce\xfb\xae\xeb\x1d\xd5\x79\x63\xec\x95\x6b\xa1\x37\x46\xdf\x33\x4d\xf5\x46\xe0\xda\x95\xa6\x20\xb6\xe8\x2b\x77\x99\x63\x4f\x15\xf6\xb6\x04\xb9\x20\xac\xcd\x28\x63\x1f\x88\xba\x5b\x2e\xdf\x88\x06\xbb\x5d\x82\xf2\xea\x2f\xf2\xc8\xae\x91\x01\xa4\x77\x3a\x33\xbd\x31\x3a\xaf\x87\xbd\xd3\xb6\xea\xf5\x50\xc4\x16\x43\x0a\xbd\x1e\x3a\xaf\x74\x5d\x39\x5c\xaf\x74\x22\xa6\x00\xb1\x9f\xdc\xa7\x3d\x43\x47\x1f\xdc\xf3\x5d\x3d\x3d\xa4\x6d\x04\x7a\xbd\xbf\x39\x8f\x6d\x7d\x20\x84\x1e\xdb\xfc\xc0\x8e\x83\x32\xe8\x90\x1d\x0f\xd9\x91\xab\x70\xc8\x8e\x3c\xa3\xf5\x41\x32\xd3\x33\x9a\x1f\x2b\x9d\x69\x22\xc4\xb1\x9a\x20\x2e\x35\xed\xf4\xa1\xee\x80\xc7\xb6\xae\x34\xa5\xc7\x36\x11\x5b\xc4\x7e\x3d\xb6\x39\x6f\x48\x9d\x37\x46\xd7\x1b\x92\xf3\x72\xd2\xd5\xbf\xe9\xe5\xc4\xcf\x64\xee\xba\x43\xa7\x6a\x31\x88\x2d\x06\x1e\xa7\x6a\x31\xde\x1e\xba\x86\x27\x7a\x7b\x70\x66\xfc\xdd\xb9\x8f\x9a\xf1\x8b\x18\x4f\x41\x7e\x69\x50\x77\xa5\xee\xc7\x46\x24\xbe\xa4\x7b\x88\xad\x26\x08\x4d\x5c\x99\x6d\xc6\xc6\x15\xbd\x94\x6d\x20\x45\x16\xd2\x8c\xdf\xaf\x63\xf2\xc8\x9c\x2a\xbc\x0e\x13\x64\xac\x55\x80\xf4\x61\x06\x95\xc1\xe3\x80\x5f\x4a\x40\x10\x5b\x8d\xe5\x95\x80\x18\xd5\x8f\x8d\xc4\xa8\x51\xbd\xc7\xcc\x3e\xa9\xb0\x7c\xf0\x28\x26\x62\xbc\x5a\x79\xf0\x28\xe6\xc1\x4b\x77\x21\x28\x04\x2f\xdd\x22\xb6\x9a\x3e\xc4\x7d\x83\xc6\x8f\x81\xbe\x87\x2a\x6f\x48\xe3\x61\xd8\x43\xe3\x4f\x86\xf0\xa3\x90\x51\x35\x84\xf7\x48\xf7\x1d\xea\xb9\x42\xee\x1b\x72\x5f\x3c\x3a\xa4\x42\xc8\x28\xc4\xfe\x90\x0a\x43\xed\x21\x61\x3b\x54\x66\x07\x8d\x5f\x25\x99\x85\x1a\x3f\x88\xf1\xc0\xe6\xa1\xe1\x09\x13\xf7\xc1\x4f\x43\x5c\x13\x77\x67\x4a\x3e\xd4\x4a\x68\x4a\xee\x37\xba\x6f\xe8\xeb\x96\xee\x21\x8d\x97\x39\xbf\xa5\xfb\xfb\xbc\x68\x35\x81\x34\xa4\x80\xd8\xa2\xdc\xb8\x4f\x82\xc2\x9d\x05\xf4\xe8\xb4\xc0\xb7\x0a\x68\x48\xd1\x04\xf9\x56\x01\xcd\x9c\x79\x50\xce\xe2\xe2\x64\xf9\xf4\xef\xd0\xd4\x39\x98\x14\x8f\x91\xae\x15\x9a\x14\xc7\x96\xde\x3a\x46\xde\xce\xd8\x18\xb6\x8b\xd8\xca\x0e\x3f\xb6\x7d\x00\x65\x59\x31\xa6\x3e\xa4\xac\x10\xb1\xd5\x05\x05\x50\x8a\x34\x78\x56\x8f\xed\xd6\x5a\xb7\x5e\xa1\x05\x69\x2d\xa4\xe4\x21\x2d\x34\x85\x8d\x92\x65\xdc\xe0\x7d\x27\x0a\x83\x33\x11\x5b\xbd\xfc\x6a\x16\x8e\xc2\x73\x46\x94\x8c\xa5\x83\x49\x71\x14\x62\x69\x14\xe5\xb1\x6c\xdd\xa2\x90\xc7\x82\x91\xe9\xe0\x41\x20\x34\x32\x8d\xb2\xa7\x7f\x92\x68\xa2\xf0\x9e\x2e\x62\x2b\x13\x4d\x94\x5d\x02\x65\xab\x3b\x28\x4e\xa3\xd0\xea\x8a\xd4\xad\x71\x92\x6c\x7b\x9f\x64\xac\xc1\x87\x74\xbf\x22\xad\x0c\x7d\xa8\xe5\xe3\x84\x6b\x02\x5d\x82\xa4\x4e\xe4\x62\xcc\x19\x8c\x26\xc7\xca\x7b\x13\x1a\x4d\x46\xe5\x2a\xad\x74\xd9\xa8\x5c\x25\x11\x23\xce\x44\xe5\x2a\x45\xcd\xfc\x3a\x18\x4d\x46\xa5\xce\x11\x31\x4a\xb2\xa8\xd4\x39\x51\x33\x5f\x0c\xaf\xe2\xba\x04\x5d\xfc\x5e\xa3\x02\x85\xa0\xe0\xb7\x1f\x70\x49\x5f\xf5\xd0\xcf\x41\x52\xd1\x15\xc7\x16\xb1\xd5\xe1\xc2\xb1\xa3\x66\x42\x18\x9e\x05\x78\xd4\x53\x3b\x9e\xd4\x10\x19\xe3\x83\x09\xe1\x87\xa8\x99\x2f\xe6\xb6\xf1\x21\xf9\x42\xc4\xa8\x0b\xa3\x86\xa4\x8f\x23\xb9\x24\x04\xbf\x3f\x10\xb1\x35\x58\x4b\x2a\x64\x20\x37\x79\x09\x0d\x0d\xe4\xa2\x65\x3d\x32\xa9\x34\xa2\x51\x8f\x88\x18\x05\x65\x34\x92\xa9\xc8\xdc\x32\xab\x44\x23\x99\x8a\xd8\xca\x9a\x3c\xda\xc0\xbf\x5a\x46\xb6\xb9\x39\x1f\x12\xd9\x44\x8c\x77\xdc\x60\x7a\xf6\x21\x18\x56\xcd\xb2\xf1\xa1\xf4\xd5\x52\x13\x93\x9f\xc6\x45\x93\x26\x20\x26\x37\x69\xd2\x04\xb3\x8e\x59\xb2\xa3\x08\xcd\x3a\x82\xc9\xc3\xac\x08\xa1\xc9\x43\xf4\x4c\x6d\x93\xc7\xbe\xe8\xa4\x36\x11\x63\x62\x16\x9d\xc1\x57\x68\xf2\xd0\xb2\xbe\x0f\x4d\x1e\x44\x4c\x2e\xa7\xc9\x43\xf0\x5b\xbf\xd9\x2a\x1f\xf2\x40\x27\x62\x8b\x1b\xdc\x99\x85\x45\x3f\xe0\xca\x50\x1d\xfd\x10\xd7\x21\xae\x05\xf4\xe4\x62\xc7\xc9\xf2\x87\x76\x3c\xb4\xa3\x03\x69\xc7\x9b\xb5\x2c\xf5\xc5\x4c\xe0\x49\x6c\xe1\x13\x1a\x0d\x04\x73\x80\xc9\xf4\x2d\x34\x07\x10\x99\xbd\x0b\x2a\x82\x0a\x4f\xa8\x0d\xa8\x0a\xe2\x43\xae\x3b\x33\x81\x27\x69\xba\x56\x1a\x0d\xc4\xc8\x4c\x32\x89\xa5\x31\x28\xe0\x45\xca\x73\x79\x0a\xf8\xa0\xb9\x9e\x3d\xab\xa9\x50\x73\x1d\x23\xf3\xfe\x1c\x1b\x3b\xee\xda\x31\x49\xe3\x09\x35\x06\x79\x3f\x46\x46\xcf\x49\x0b\x1e\x43\xd1\x13\x62\xbc\x90\xc4\xe0\xa7\x71\x31\x52\x21\x73\xf4\x74\xa6\xc1\x18\x5d\xc4\x16\x91\x78\x30\x3b\x8c\x91\x4e\x3e\x15\x9c\x87\x9c\x7c\x28\x4e\xe0\xd1\x43\x71\x82\xe6\x7a\xce\x2c\x6e\x43\xcd\x75\xcc\xc1\xcf\xa0\xb8\xdb\x53\x81\x6f\xaa\x6b\xca\x4e\x3a\x26\x5d\x53\x4c\xcb\x6b\xc5\x2f\xef\x62\xf2\x33\x04\x91\x32\xb8\x56\x53\x41\x81\xb6\x79\xf2\xac\x1e\x6a\x9b\x63\xa6\x9b\x4d\x5e\xc7\x63\xf2\x13\x34\x11\x5b\x38\xc0\x64\x24\x16\xd3\xc5\x85\x10\x2e\x2e\x17\x97\x01\x89\x2b\x8b\x8f\xc9\xcb\x60\xa8\xfb\x15\xa9\x3c\xf9\x84\xba\xdf\x98\x19\x6a\xa7\xe9\x43\x85\x5a\x88\xad\xc9\xf2\x0a\xb5\x13\xff\xa2\xe9\x8f\x29\xff\x9a\x4f\xff\x42\x7a\xf9\x17\x5d\xe6\xa4\xe7\x0b\x75\x99\x61\x13\xa8\x00\x51\xc0\x8b\xd8\xb2\x0d\x08\x45\xd3\xd4\x4d\xd9\x51\x4d\x5d\x58\x56\x1a\x73\x99\x03\x9d\x82\x88\x4c\x56\x80\xb4\x56\x92\xb9\x5c\x1f\x6a\xad\x45\x92\x37\x41\x64\x2b\x4b\xd7\x98\xcb\x53\x13\xc6\xcf\x25\x45\x6c\x71\x61\x8c\x5f\x7f\x85\xe1\x39\x5e\xd8\x51\x9e\x63\xf2\x1c\xe3\x43\x79\x8e\x65\xf3\x34\x15\xa3\x8d\xe6\x49\xc4\x56\xd6\x23\x61\xfc\xc0\x20\x68\x10\xa7\xe3\x13\x6a\x10\x63\xf1\xa4\xb8\x65\x73\x1d\x4b\x67\x5c\x94\xf9\xdb\xb4\xbf\x4c\xc5\x75\xfe\x9f\x4c\xbc\x68\x02\x44\x6c\xd9\x02\xea\x82\x72\xd9\xd2\xd8\x89\x9a\x46\xc4\xa4\xba\x75\x69\xa7\x94\xda\x0a\x59\x4a\x2d\x9f\x88\x2d\xaa\x85\x25\xa9\xf5\x63\x5d\x25\x54\xfd\x58\x57\xa4\x2c\xae\xd3\x92\x95\x21\xb6\x96\x20\x09\xc1\x78\xa1\xac\xfc\x50\xed\x63\xd0\xa6\x59\xc1\x32\x6a\xd3\xc2\x33\xdf\x5b\x25\x9e\xfa\x7e\x08\x42\xc1\x0b\x2e\xe6\xaa\xe1\x44\xb7\x4a\xb5\xe1\x8a\x6e\x10\x5b\x5a\x5e\x96\xf1\x74\x6e\x6b\x38\xb7\x9f\x4f\x88\xdf\x28\x77\xb8\xe4\xdc\x10\xe3\xd5\x33\x9c\xb7\xab\xf0\x5b\x3f\x81\x66\x47\x9d\x11\x52\x5a\x36\x73\xe1\x3a\x23\x1d\xa5\x35\x7c\x54\x1d\x65\xec\x8c\x3d\x1a\xfa\xda\x4d\x10\xa3\xc3\xb5\x06\x50\x11\x94\xc7\xee\xd9\x76\x84\xba\xc0\xd8\x79\xeb\xeb\xc8\xb5\xf3\xd6\x27\x62\x6b\x4d\xa0\x10\xc4\x87\xf6\x97\xc3\x91\xfc\xff\x3f\xec\xef\x2f\xbf\xfc\xfb\x81\xf3\xa7\xcf\x9f\xe3\xed\x0b\xff\x5a\x81\x7f\x24\xf0\xb8\xe2\xfe\xf8\x16\xbf\xfc\xcb\x87\xf7\x4f\xef\xf9\x15\xff\xfb\xaf\x00\x00\x00\xff\xff\x69\x49\xc0\xae\x25\x31\x00\x00"); +func _cgce ()(*asset ,error ){_eade ,_aacaf :=_eagf ();if _aacaf !=nil {return nil ,_aacaf ;};_dffd :=bindataFileInfo {_ee :"UniKS-UTF32-V",_ffd :789,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493054,0)};_bgfb :=&asset {_da :_eade ,_dc :_dffd };return _bgfb ,nil ; +};func _fbag ()([]byte ,error ){return _gb (_fceb ,"UniKS-UTF8-V")};func _ddg ()(*asset ,error ){_efac ,_acg :=_ecbc ();if _acg !=nil {return nil ,_acg ;};_agcd :=bindataFileInfo {_ee :"HKdlb-B5-V",_ffd :613,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492332,0)}; +_bded :=&asset {_da :_efac ,_dc :_agcd };return _bded ,nil ;};var _gafa =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x8f\x9b\x30\x10\x85\xef\xfe\x15\x73\xdc\x1e\xb6\xd8\x18\x36\xb6\x14\x21\x55\x44\x55\x39\x6c\x5a\x95\x4d\x5a\xa9\xea\x81\xd8\x43\x6a\xa9\x18\xcb\xc0\x21\xff\xbe\xb2\x31\x54\x7b\x40\xf6\xfb\x8c\x1f\x6f\x86\xc9\xea\xe6\xd4\x58\x33\x43\xf6\xcd\x8f\xaa\xc5\x19\x7a\x63\xb5\xc7\x69\x5c\xbc\x42\xb8\xe1\xdd\x58\x42\x58\x0e\xda\xa8\x79\x93\x71\x51\x43\xe7\x08\xc9\x2e\xd6\xd4\xe7\xf6\xf9\xf2\xf6\x59\x3c\x7f\x81\x65\xc2\xc4\xeb\xe6\xd4\x3e\xa6\x19\x87\xc6\xf6\x23\xf0\xf5\xbe\x5e\x5c\xf2\x00\xc8\xbe\xe3\xdd\x4c\xb3\x7f\xc0\xd3\x27\x3d\xde\xf0\x03\x68\xec\x03\xff\xea\x35\x7a\x63\xef\xf0\x54\x9f\x5b\xb6\xe3\x76\x71\xee\x2f\x0e\x68\x67\x38\x44\x86\x56\xc7\x95\x64\xf5\x6b\xe7\xce\xdd\x80\xf0\x2e\xcd\x35\x9e\xc6\xc3\x2b\xfa\xc9\x8c\x16\x18\xff\x48\xa9\xfc\xcf\xdf\x1e\x0e\x81\x25\x97\x9f\x97\xe6\x04\xbf\x18\x30\x0a\x79\xc9\xa5\xf8\x9d\xf8\x8f\xd7\x51\xef\x6f\xbd\xac\xf9\x95\xd1\xea\x4f\xe7\xc9\x11\x73\x41\x25\xaf\x80\xe5\x34\x89\x22\x88\x7c\x15\x5d\x59\x01\xa3\x92\x1c\xb1\xbf\x49\xd1\x57\xc0\xf8\xa1\x28\xa3\xd4\xf2\x16\x64\x91\x84\x0e\xa2\x0c\x35\x6d\xd6\xe4\xb0\x7f\xca\x77\xf6\x8e\xe4\x88\x5c\x50\x21\x2a\x58\x37\xb2\x02\x56\xd2\x44\xbb\x8d\x06\xd3\xe2\x25\x51\xb5\xd1\xe0\x5e\x16\x89\xe2\x46\x43\x9e\x52\xac\x54\xd2\x44\x25\x0b\x0e\x79\xa2\xc5\x46\x43\x21\x5c\xc4\xb0\x6a\xcd\x10\x36\x21\x03\xa7\x29\xf5\x9a\x32\x8a\x30\x02\xfb\x4f\x51\x8b\xf7\x68\xe7\x38\x00\xb1\xeb\xa1\x93\xc6\xe2\x3e\x64\x6e\x74\xe1\x56\x7c\xfe\x05\x00\x00\xff\xff\x20\x40\xbf\x48\x90\x02\x00\x00"); +func _fca ()(*asset ,error ){_eabg ,_bgga :=_gea ();if _bgga !=nil {return nil ,_bgga ;};_cgef :=bindataFileInfo {_ee :"Adobe-GB1-1",_ffd :1205,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491251,0)};_ddf :=&asset {_da :_eabg ,_dc :_cgef };return _ddf ,nil ; +};func _ebf ()(*asset ,error ){_dec ,_age :=_dfff ();if _age !=nil {return nil ,_age ;};_bbf :=bindataFileInfo {_ee :"Add-H",_ffd :12616,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491075,0)};_afe :=&asset {_da :_dec ,_dc :_bbf };return _afe ,nil ;};func _cccg ()(*asset ,error ){_efdd ,_ecg :=_dacc (); +if _ecg !=nil {return nil ,_ecg ;};_eaab :=bindataFileInfo {_ee :"CNS1-V",_ffd :620,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491540,0)};_defc :=&asset {_da :_efdd ,_dc :_eaab };return _defc ,nil ;};func _dddg ()(*asset ,error ){_dfdad ,_fgfa :=_ebab (); +if _fgfa !=nil {return nil ,_fgfa ;};_caedd :=bindataFileInfo {_ee :"UniJIS2004-UTF16-H",_ffd :185990,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492807,0)};_effbd :=&asset {_da :_dfdad ,_dc :_caedd };return _effbd ,nil ;};var _adgc =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbd\x4d\xab\x36\x3b\x96\x25\x36\xcf\x5f\x71\x86\xed\x41\x3b\x43\xdf\x12\x98\x03\xa6\x9b\xc4\xd9\xd0\xb6\x71\x75\xd9\x06\xe3\x41\x7c\x96\x2f\x38\x6f\x26\x37\xb3\x06\xf5\xef\x8d\xd6\xd2\xb3\x56\xdc\x02\xc3\x79\x27\xe7\x55\x3c\x11\xd2\xd6\xd6\xd6\xd6\xfe\xd6\x1f\xff\xd3\x9f\xff\xf3\x9f\x7f\xfd\xe5\x1f\x5f\x7f\xfc\x5f\x7f\xfb\xeb\xf9\x4f\xf7\x3f\xbe\x9e\x5f\x7e\xbd\x7e\xbb\xff\xfe\xd7\x7f\xfd\xed\xbc\xbf\x8e\xfb\x5f\x7e\xf9\xf5\x0f\x7f\x08\xf1\xeb\xfa\xe5\xfc\xc7\xa7\x89\x3f\xe7\x5f\xf6\xbf\xfd\xe1\x0f\xf3\xfb\x7f\xfa\xb7\xbf\xff\xe3\xfe\xcb\x9f\x7f\x7d\xfe\xfa\x95\xf8\xde\xf5\xaf\x7f\x5b\xef\x7e\x7d\xfd\xf1\x7f\xbb\xff\xe5\x97\xbf\xff\xe3\xb7\x7f\xfb\xfa\x0f\xff\xe3\xf5\xd7\xe3\xfe\xef\xbe\xae\xfb\x99\xcf\xff\x97\xdf\xae\xfb\xb7\x5f\x7e\xfd\x97\xaf\xff\xf0\x5f\xf6\xbf\xed\xbf\x06\xfd\xf0\x4f\xff\xfa\xb7\xbf\xfd\xbf\xf7\x5f\xee\x5f\xff\xf1\xd5\xf0\xec\xfe\xf5\xc2\xdf\x3f\xfc\xf1\x3f\xfd\xd7\xfd\x6f\xff\xf3\xfe\x97\xfb\xeb\x8f\xff\xfc\xeb\x2f\xff\xe5\xcf\xff\xf4\x1f\xff\xf9\xbf\xfd\x29\xc5\xff\xf8\x3f\xe1\x67\xfc\xfa\xbf\xdf\xbf\xfd\xfd\x97\xbf\xfe\xfa\x15\xfe\xfb\x2d\x56\x3f\xfe\x6f\xff\xf6\xb7\xfb\x2b\xac\x5e\xfe\xcf\x7f\xfe\xf3\x7f\xfe\xfa\xbf\xc2\x57\xd8\xbe\x62\x29\x69\xfc\xdf\xeb\xf9\xff\xf1\x5f\xff\x7a\xdd\x5f\x1b\x5b\x81\x33\x38\xff\x7a\xdd\x7f\xff\xdb\x7e\xde\xbf\xed\xbf\xfe\xcb\xfd\x87\xaf\xaf\xff\x61\x5b\xff\xbe\xe7\x7f\xc3\xf6\xa7\x3f\xfd\xe9\x4f\xdf\x13\xc4\x7f\xf7\xe6\xa7\x83\x5f\xff\xfa\x8f\xeb\x7e\xf8\xec\xf7\xdf\xce\x7f\xe1\xf9\xfe\x0a\xf3\xeb\xf7\x6b\x7f\x08\xdb\xb6\x46\xff\xe5\x3a\xff\x9f\xfd\xb7\xcf\x87\xe5\xfc\xfe\x1a\xed\xd3\x6a\xb3\x35\xd4\xba\xbe\xbf\x46\x56\xeb\xfe\xfe\x0a\xdb\xf6\x69\xee\xdb\x1c\xe6\xd3\xc8\xf3\x37\x75\xb3\x97\xef\xaf\xea\x1f\xeb\xf7\xd7\x48\x6a\xb5\xef\xaf\x16\xdd\x4d\xff\xfe\xaa\xd9\x5f\x8e\xef\xaf\x50\xa2\x9a\xfb\xf7\x57\xc8\x7e\xf9\x98\xc3\x08\xbe\xfd\x9c\x2f\xbb\xe7\x6b\x36\x3d\xec\x84\xb7\x08\xfc\x7d\xa2\x25\xea\xdb\x63\xfb\xfe\x6a\x86\xf8\x08\xdf\x5f\xd5\x73\x3d\xf2\x84\xaa\xa8\x59\x66\x57\xfe\xb6\x7e\x7f\xb5\xd6\xd5\x6c\xdf\x5f\x21\xb8\xab\xfe\xfd\x15\x92\xbb\x9a\x33\xaa\x9a\xc2\x81\x19\xf9\xd7\x39\xa3\xa8\x29\x1c\x00\xb2\x7e\x9a\x67\x9d\x5d\x69\xdc\xab\x4d\x20\x05\xd5\x35\x07\xca\xc2\xd5\x35\xbf\x2d\x1a\xe8\x9e\xdf\x7a\x0a\x0f\xbe\x55\xcf\x0f\xbe\xfd\x4c\x21\x4c\xf2\x19\xa9\x56\xb5\x03\xda\x41\xed\x38\xfb\x6e\xc5\x2f\x24\x3c\xa8\x43\x0f\x32\x1e\xa4\xa6\x07\xc0\x59\x13\x04\x61\xab\xec\xc3\x83\x36\x3c\x68\x1e\xa5\xe3\x41\x4f\x7a\x30\xf8\xc0\xa3\xec\xdf\x5f\x71\x4b\xc9\x6f\x1c\x78\x20\x8a\x09\xdb\xc9\x51\xfc\xc9\xc5\x51\xfc\xc6\x4d\xd0\x3d\xec\xc3\x37\x3e\x8b\x12\xc2\x86\x4e\xa3\x3e\x09\x81\x6f\x68\x2e\x21\x02\x3f\x1a\x24\x24\xb4\xdd\x43\x25\x9c\x7e\xd0\x08\xa7\x00\x0f\x9c\xab\x08\x23\x04\xce\xb5\xf9\x8d\x7d\xf6\x39\x3c\xe6\x31\x77\xa3\x48\x36\x04\xce\xb4\x7b\x0c\xce\x74\xb8\xcb\x9b\x50\xb8\x8b\x87\x50\xe8\x41\xe4\x4c\xbd\x6a\x31\xf0\x0d\x2d\x74\x8c\x7c\xc3\x0f\xb8\xd0\xdd\x7d\x70\xa1\x87\xf0\x19\x39\x79\x51\x75\x88\x58\xe8\x1e\xdc\x47\xc7\x54\x04\x68\x1c\xb3\x1d\x84\xef\x88\xa9\x57\x43\x75\xa0\xed\xdf\xd7\xc4\x84\xff\xb8\x26\xa6\x2f\xd2\x9a\x98\x88\x2d\xcd\x25\xcc\x82\x20\x71\x5a\x51\xc8\x4b\x89\x0f\xfc\xc1\x9a\xa7\x3f\x59\xf3\x14\x14\x89\xf3\x14\x7b\x0a\x69\x2d\xb2\xfb\xe8\xec\x54\x70\x26\x2e\xf2\x0b\xce\x9d\xab\xee\x3e\x48\xd0\xd9\xa3\x9c\x78\x60\x42\x49\x5c\x66\x4f\x3e\x91\xa0\xb3\x3b\x25\x36\xa2\x96\x28\x2f\x6c\xa8\x8f\x0c\x6c\x68\xc5\xf2\xdc\xde\xfe\x3e\xaf\xcd\x2d\x18\x32\x71\xd1\x84\x8b\x5c\x08\x65\xc2\x29\xb5\x4e\x94\xff\xbf\x33\x26\x64\x22\xca\x3b\x2e\x73\xe7\x57\x51\x48\xe6\x6e\x68\x06\x61\x10\x62\x7f\xc2\x9d\x1f\x0d\x02\xb6\x83\xe9\x32\xcf\xa3\x2b\x19\x91\xf9\x02\xcd\x08\x07\x65\xe3\x98\x5a\xf1\xb2\x36\xb5\x56\xab\x00\x0b\x82\xa9\x4c\x2c\x64\x61\xb9\x10\x07\xde\x3b\x85\xf4\x50\xfd\xfd\xa2\x07\x8f\x40\x7a\x30\x1e\xcb\xda\xf4\xee\x63\x6d\x7a\x8f\x42\x7a\x30\x4d\x95\x83\x0f\x3c\xca\xda\xf6\x42\x55\x59\xdb\xde\x80\x2f\x7a\x10\xee\x0a\x19\x9c\xce\x86\x50\x27\x3d\x78\x7f\xd6\xb9\xe9\xa3\x3a\xac\x64\xf6\xde\x7e\x95\xf4\xd0\xd5\x61\x25\x2e\x4c\xa4\x95\xb8\x28\x7e\x63\xf1\x00\xf7\x41\x5c\x24\x7f\x42\x1e\x20\x54\x54\xf2\x00\x7f\x40\x1e\xa0\x79\x57\xf2\x00\x03\xbd\xf0\xe0\x17\x16\x1e\x84\xfe\x7a\x63\x04\xb7\x1f\x8c\x20\x8a\x69\x8b\x22\xfc\x80\x14\xd1\x85\xa7\x46\x2e\xe1\x33\xac\x91\x4b\x18\x8a\x96\xb9\xe5\xfd\x09\x77\x86\xc9\xac\x11\x13\x46\x4d\x5b\x54\xe1\x4e\x27\x97\x30\x27\x6a\xa4\x09\x13\x62\x23\x4d\xf8\x8c\x6b\x8b\x26\xfc\xc9\x3a\xf4\xfc\xe0\x9a\x5d\x7a\x84\xc9\x2f\xcd\x85\xc6\x5c\x60\x63\x7e\x60\x79\xbb\xb7\xd6\x19\xf9\x40\x20\x9f\xd8\x4b\xc6\xec\x49\xcc\xfa\x83\x07\xbf\x6b\x29\xae\x0d\x98\x16\x52\xae\x80\xf7\xd5\xdf\x15\xf1\xbb\x66\x78\x25\xfc\xee\x76\xc6\xef\x82\xf0\x5a\xec\x46\x33\xb8\x28\x4b\x58\x0e\xb8\x88\x54\x33\xf8\x8b\x5b\xcd\x27\xf0\x45\x8e\xe2\x8d\x74\x11\xad\x3e\x1d\xaf\xc5\x7a\x45\x82\x17\xd1\x6a\x1e\xf3\x10\x0e\xe3\xf9\x81\x84\x2c\x44\xc5\x79\x02\x8c\xac\x2e\x23\x99\x4e\x17\xd5\xc7\x02\x4c\x84\xae\x36\x51\xad\x21\x62\x59\x8b\xe1\x2f\x80\x0b\x6d\xd6\x48\xb6\xd3\xb5\xbb\x63\x01\x2e\xfa\xe6\x2f\x78\xdc\xbe\x3e\xe9\x7c\x30\xf4\x00\x7b\x2d\x7a\xd0\x1d\x6d\xff\x4e\xde\xea\x1e\x4f\x42\xb9\xe9\xc1\xcd\x07\x06\xe2\x21\x10\xea\xa2\x72\xe6\xa2\xc1\x58\x03\x85\x00\x41\x45\x26\xd2\x8d\x2c\x32\x91\xae\x33\x3b\x56\xce\x2c\xb8\x53\xce\x4c\x84\x1f\xeb\x9a\x59\xd3\x03\x2c\x6a\xef\xe5\x27\x07\x53\x5c\x3c\x64\x78\xc4\x8b\xd3\xf0\x03\xf2\xd2\x61\x10\x38\x51\x51\x5e\x24\x17\xe9\x41\x30\x2d\x2e\x22\xc1\x2d\x36\xae\xb1\xb6\x43\x6c\x5c\xe3\xcd\x7d\x10\x15\x92\x35\xe2\xe4\x22\x23\x4b\x2c\x8b\x8d\x98\xe8\x7e\xc0\x89\x8b\xfb\x45\x72\x8d\xbe\x79\x10\x62\x22\x7b\x90\x83\x6f\xb8\x8f\x35\x59\x43\xbe\x26\xab\x37\x3a\xe7\x26\xf9\x3b\xf6\xb5\x88\x9a\x5b\xe7\xdc\x36\x3f\xc0\x56\xd6\xc9\x10\x3b\xa7\x26\xf6\x16\x3b\x21\x17\x33\x88\x9d\x90\x4b\xf2\x8a\x9d\x90\x27\x7f\x42\x7e\x27\xed\x25\xf6\x13\xe8\xf1\x17\x9c\x89\xf1\xd5\x49\x9f\xc1\x60\x70\xd9\x24\x1b\xc7\xc1\xa9\x89\x87\xc5\xc1\xa9\x19\xf2\x01\x26\xe5\x7d\x36\x38\x13\xef\xdd\x41\x7a\xd5\x91\x15\xc7\xa2\x46\x0f\xc2\xa9\x0d\xf7\xc1\x8d\x34\x3c\x08\x21\x0f\x7e\x63\x01\xaa\x65\xdb\x17\x5c\xea\x74\x5f\x2c\x43\x8b\x72\x70\x2a\x62\xcf\xf1\xe0\x1b\xa6\xc0\x83\xfb\xc6\x08\x9c\x6a\xa7\xa9\xfe\x98\xe8\xd4\x6f\x27\x07\x34\x15\x40\x0b\xf5\xf2\x9c\x14\xde\xc4\x8c\xe3\xc9\x69\x67\xf7\x30\xde\xaa\x76\x3c\xe7\x7a\x7a\x8b\x9e\xc7\xf7\x97\x0e\xbf\x78\x12\x23\x62\xba\x91\x67\x87\xc9\xf6\x5a\xf3\xd7\xf8\x1f\xce\xee\x07\x4b\x4b\x14\x52\xc1\xd9\xbd\x43\xaf\x75\x5c\x0a\xbe\xc9\xd7\x8d\x9c\x8b\x72\x43\xf1\xfb\x24\x1e\xc9\x3f\x69\x6a\xc7\x82\x38\x4d\xd5\x77\xb8\x95\xdf\x73\x4d\x53\xeb\x8d\x62\xac\x69\xfb\x1d\x24\x69\x6a\xab\x21\xf9\xdb\x39\xf7\xe4\x61\xae\xdf\xe3\x31\x51\x31\xed\x12\x2e\x52\xe0\xce\x90\xb8\x98\xa8\x03\x76\x49\xd6\x89\xda\x59\x97\xd8\x94\xa8\x9d\xf5\xe2\x07\xed\x6d\x9e\x48\x11\xd6\x0a\x0d\x19\x49\xb1\x9e\x6d\x5c\x43\xfa\x0d\x0e\x29\x05\x3b\x45\x42\x29\x31\x2a\x25\xd2\xa3\xb4\xe3\x34\x95\x2d\x09\x44\x89\x8a\x55\x97\xda\x9f\x12\xac\x1c\x02\x30\x2d\x10\x34\xeb\xc4\x11\x9b\x1f\x10\x51\xee\x72\x9d\x2d\x92\xd3\x52\x87\xd0\x95\x45\x74\xa9\x43\x8b\xf2\x91\x96\xfa\xcd\x07\x5a\x9b\xfe\xf0\x81\xfa\x18\x50\x9a\xcc\x00\xd2\xbe\xf3\x0d\x3f\x38\xf8\x40\x70\x1c\xeb\x13\xf5\x01\x49\xaa\xc6\x18\x7f\x72\x1c\xa5\x93\x03\x68\xab\xa7\x93\x03\xe8\xbc\x4b\x27\xa1\x36\x89\xcc\xdd\x12\xe2\x26\xbe\x96\xb0\x5d\xe2\x36\xfc\x46\xe1\x03\xf5\x81\xed\x10\x37\x91\x70\xde\xe6\x27\x9b\x96\x3c\x43\x31\xda\xc4\x1e\x1e\x08\x5b\x31\x7c\xf6\x57\xb8\xc1\x2f\xd2\x87\x41\x84\xfb\x80\x14\xf4\x39\xfb\xc3\xd3\xb0\x85\x3f\x6c\x30\x3c\x8d\x42\x8f\x7f\x07\x67\xfd\xa0\x2d\x3c\x0d\x67\xc6\x67\x29\xe2\xb6\x4d\xb1\xfb\x83\xe6\xb8\xcd\x0d\x57\xfd\x6b\x98\xbb\xf1\xa3\x53\xc5\x0d\xb6\x99\xac\xd6\x44\xf8\xab\x99\x7e\xdf\xcc\x2f\x4a\x8b\x5b\x28\xb3\x27\x8d\x13\xea\x6c\x56\x35\xbb\x79\x64\xdc\xc2\x30\x8f\x8c\x1b\x36\xe2\x67\x82\x71\xc3\x36\xdc\xfc\xee\xa4\xcf\x68\x08\x6f\xe0\xef\xd3\x8c\x00\x71\xa8\x09\x20\xdc\x04\x10\xea\x6a\xee\x25\xd9\xae\xe2\x96\x8e\xef\x2f\xc9\xb4\x71\xc3\xce\x88\x21\xa8\xef\x74\xbf\xd8\x4f\xdc\x12\xb7\x66\x56\xef\x99\xf4\xd8\xd5\x21\x34\xfb\x4d\x1d\xe6\xc1\x0e\xf5\x3b\x68\xa1\xc6\xae\x11\xa6\xa8\xd8\xba\xf1\x32\xb5\xcf\xa6\xc3\x22\x6e\x58\xfb\xd4\xdc\x06\x08\xc3\xc8\xd9\x41\x3c\x45\x43\x82\xfd\x56\x19\x5e\xe2\x06\xf6\x1b\xb6\xcf\x46\x8c\x30\x4e\x86\xd0\x8b\x1f\xa4\xef\xaf\xf6\x11\xa7\x22\x2d\x8d\x41\x1c\x29\xc2\x6c\xd8\xd3\xe6\xf7\x77\xb4\xb3\xda\x0f\x77\xc0\x67\x96\x30\xdf\xf5\x2d\xea\x83\x49\x09\xad\x7a\x84\x18\xe6\xef\x06\x00\x46\x31\x41\x0c\x83\xd7\x48\xaf\x9f\x71\x42\x96\xe0\x07\x73\xd9\x3e\x0c\x2f\x7e\xcc\x57\x22\x35\x9a\x96\xe2\xd6\x35\x83\xb9\xce\x3d\x7d\x44\xb5\x08\xe3\xc5\x90\x65\x2f\xc2\x76\x31\x24\xec\x45\x98\x2e\x86\x84\x99\xf8\xb1\x4d\x44\x75\x30\x97\xa1\xa7\x8f\xc4\x19\xc3\x14\xba\x86\x34\xdd\x08\x95\x50\x8a\x4e\x84\x4a\x28\x0b\x53\x0c\x10\x7d\x62\xdc\x34\x83\x29\x12\xf4\xb4\xe9\x85\xf3\xe0\x0b\x1a\x0f\xc7\x7a\x8c\x86\x88\x8c\x2a\x1a\xe4\xa9\x03\x4a\xa7\x8d\x50\xf9\x74\x06\xc7\x70\xcf\x01\xb6\xe0\x76\x43\x5b\xaf\xdf\x1d\x6d\x2d\xe9\x3d\xd0\x16\x80\x53\x53\xeb\x49\xef\xc7\x49\x43\xd2\x8f\x63\xdc\x30\xf8\x50\x73\x4e\x57\xeb\x17\x41\x50\x31\x74\xbf\xbe\x0c\x58\x4d\x0f\xda\x24\x90\x4d\xcd\xfe\xfd\x25\x7b\x4b\x8c\x34\x5b\xe7\xcf\x99\x19\xe3\x46\x76\x31\xfc\xc6\x24\x88\x6c\xe8\x68\xb0\xd3\xb6\x8f\x93\xa9\xb5\x2a\x82\x8c\x93\xad\xd5\x8f\x4c\x18\x23\xd8\x5a\x0c\xa1\xff\xe0\x58\x89\x11\x96\xe5\x20\xd8\x27\xef\x92\x09\x2a\xc6\xc9\xac\x9a\x67\x36\x99\x55\xdb\x3c\xd2\x03\x40\x84\xa9\x08\x3c\x6a\x62\x53\x5c\x90\x6d\x2a\xc6\x29\x2c\xc8\x0e\x19\x63\xbc\xbe\xbf\x7a\x18\x1a\x6a\xd2\x7d\xab\x51\x68\x9d\x92\x40\xdb\xdc\x2c\xf3\x67\x75\x06\xe6\x26\x7a\x89\x09\x70\x6a\xe4\x4c\x14\x88\x07\xc7\x0c\x92\x2f\x22\xc1\x48\x9b\x62\x11\xe7\x81\xae\x2d\xa3\x66\x84\x86\x5a\xc5\xc8\xa0\x9f\xca\x29\x10\x23\x8d\x60\x45\x4c\x84\xd2\x7e\x0c\x5d\x1f\x8c\x75\x2c\x0a\xa4\xd1\xf8\x40\xc8\x82\x3e\x10\x43\x17\x48\xe3\x26\x33\xd4\x27\x70\xa2\xc5\xd0\x35\xca\x3e\x71\x50\xf4\xc1\x01\xf4\x27\x4d\xf2\xe4\x46\x14\xc6\x13\x7c\x28\x73\x89\x3f\x0f\x02\x28\x5b\xbf\x2f\x37\x83\x78\x55\x1a\xd8\xa9\x32\x73\xc6\x34\x78\x86\x88\x02\x12\x34\x90\xf7\x83\x05\xe4\x47\xe8\x88\x09\x2a\x49\x94\xab\x2d\x26\xa8\x24\xbf\xfb\xa4\xfc\xfb\x07\x44\x96\x76\x20\x84\xa9\xdf\xbd\x31\x45\x9b\x50\xe3\xc7\xff\x11\x73\x4c\x7c\xf0\x59\xb0\x7c\x4f\x36\x2e\x43\x59\xcc\xcf\x03\x33\x96\x88\xb5\x4c\x2e\xd9\xa3\xc0\x2a\xe5\x46\xfb\xd3\x41\x99\x4b\xdc\xa3\x60\x28\x15\x1d\x8a\xe9\x94\xa9\xdb\xf7\xf8\x11\xb7\x63\x69\xe8\x4f\xa7\x67\x99\x4c\xb3\xc7\xac\xef\x3b\xbe\x17\x2a\xcb\xd4\x53\x7b\xd4\xb6\x2e\x53\xe8\xec\x51\x7c\xa1\x4c\x35\xb5\xc7\xac\xfe\x3b\xe0\x4b\xee\x1f\xe3\x4b\x3e\x29\x13\xf1\x4d\x7b\xaf\x4c\xb4\x7b\x25\xcb\x44\x7a\xdf\x74\xc8\x14\x62\xf4\xd5\xdd\x4e\xa6\xfc\x51\x30\x62\x39\x78\x98\xeb\x64\x2d\x07\xb8\xbe\xe0\x3b\xc0\xf5\x05\xde\xc1\x35\x1b\x7e\x9d\x4c\xd8\x2f\x9c\xf3\x7d\x4d\x7f\x8a\x81\x2d\x69\xf6\x27\xc9\x66\x08\x5d\x27\x4e\x51\x1d\x1a\x65\x1e\x22\x3e\xa2\xca\x09\xc7\x70\x55\x13\xc8\xf6\x60\x14\x8e\x93\x4e\xd1\x32\xcf\x9c\x16\x35\x3a\x4e\x9c\xad\x6c\x1e\x7f\x72\x1b\xb1\xd0\x72\xce\xad\x24\xe2\x29\x77\xc6\x5a\x0b\x9b\x77\x41\x5b\xd0\xc0\x7d\x1a\x5f\xc4\x72\xcf\xef\x9b\x80\x7f\x16\x72\x05\xef\xc3\x13\x4f\xab\x57\xe7\x29\xd2\x24\x05\xd6\x0d\xb3\x0d\x6a\xde\x10\x29\x3e\x9f\xd7\x00\x5a\xd0\x3e\xae\x01\xb4\xe0\xcf\x33\xfc\xd5\x7a\x7d\x0a\x72\x4d\xcc\xa9\x56\x50\xaa\x8e\xbf\x0a\x4a\xdf\xc4\xf3\x6b\x25\xad\xa8\xf7\x9a\xf0\x7e\x52\x3b\xe3\x77\xc1\x5e\x81\x8d\xf0\x13\xb5\x25\xd6\x5a\xf1\x72\x56\x9b\x64\x22\x58\xe7\x36\x93\xef\x34\xd6\x7a\x80\x0a\xc5\xd9\x6b\x25\x07\x7a\x3d\x98\x84\xd4\xdc\x1f\x38\x43\x18\x86\x1e\x4b\x21\xe0\x17\x7f\x92\x38\x57\xd7\x4e\x28\x7e\x83\x8b\xa5\x13\xbe\x4e\x52\x9d\x2a\x90\x10\x74\xdc\x3c\xa1\xf5\x60\x49\x34\xa2\xee\xb6\x91\xc7\xe9\x50\x6f\x61\xf1\xa7\x4d\x0f\x38\xac\xf6\x7b\x83\xf8\x1d\x65\x78\x8f\x2d\x53\x08\xd2\x1e\x6e\x65\x51\x99\xde\x68\xe4\x69\x42\x66\xdb\xc1\xb3\xb4\xf0\xed\x78\x08\xf9\xa7\x8b\x81\x90\x81\x1a\xc5\x05\x07\xcc\x31\x31\x6a\x23\x1e\x80\x2b\x6c\x22\xd5\x03\x36\x81\x68\xc6\x76\x44\x82\xa1\x93\xfb\x80\x19\x20\x9a\x15\x1e\x95\x90\x07\x3f\x08\x7c\xa0\x51\x70\x60\x46\xd3\xe0\x31\xca\xef\x20\x3f\x3e\xc7\xe3\xa7\x8b\x1b\xd8\x28\x45\x84\x72\x77\x78\xdc\x2c\xb8\xdf\xbd\x40\x5f\x2b\x7e\xa3\xc1\x6f\xf9\x7a\x63\xe0\x93\xd7\x1b\x07\xde\x10\xa0\xf7\x64\xb2\x39\x8a\xeb\xdc\xb0\x04\x66\x0b\x67\xf7\xd4\xf3\x73\xcd\x6e\xc7\xef\xaf\x64\x39\xe1\x9e\xb2\x70\xb6\x30\x7c\x4f\x61\x38\x9b\x13\xdc\x34\x03\x26\x09\x77\xf7\x60\xe4\x85\x18\xe9\x8d\x99\xa7\x5e\xdc\x25\xa2\x2f\x4a\xf5\x27\xe3\xfb\xab\x6c\xc5\x7d\x1e\xb3\xdd\xdd\x9e\xe4\xd9\x64\x15\x8c\xf7\x3c\xa4\x53\xd5\x51\x74\xcf\x3d\x90\xbc\x27\xee\x1d\xa8\x94\x91\x2e\xde\x88\xd0\x29\xf2\xd1\xc4\x1b\x27\x72\x0e\xda\x02\xf7\x0e\xa0\xac\x13\xdc\x88\xc5\x49\x3e\x80\x6e\xec\xab\x34\x74\x20\xdc\xd8\x57\x79\x0c\xbf\x31\xb7\xf2\x08\x9e\x3a\x62\x72\xf2\xf0\x82\x21\x2a\x27\x0d\x31\xb6\x1b\x87\x52\xd9\xb4\xfb\x6f\x58\x2f\xdf\x9d\x1e\x98\x8b\xe5\xaa\x1b\xe6\xcc\xbc\x35\xcd\x05\x31\x36\x79\x7b\x7d\x42\xcb\x9a\x08\x1a\x26\x8a\x90\x5e\xab\x0c\x2b\xe7\xd0\xd9\x77\xd3\xe7\x65\x5b\xc1\x7d\x26\x2c\x9a\xb6\xf7\x3d\x65\xaf\x58\xb5\xf1\x6e\x06\xe7\x54\xe9\xd2\x37\xec\x9c\xc9\xba\xf1\x4d\xdb\xa6\xfc\x5a\xf1\x3e\x19\xa1\xd4\x3d\x08\xb4\xe3\x68\x62\xbb\xc2\xf7\x57\xda\x8c\xf2\x0b\x60\x99\x73\xdd\xf4\x7c\xbd\xbf\x68\x9c\x99\xdf\xe8\x13\xce\xaa\x31\xa0\x60\xa7\x6e\x5c\x40\xc1\x4e\xb6\x0a\xdc\x88\x1c\x4a\x32\xb1\xc6\x7b\x1e\x8e\xa1\x1a\x17\x53\xdb\x4a\xc9\x94\x71\x83\x32\x74\xf6\xde\xf7\x81\x21\x85\xdc\x1b\xee\xc7\xec\xdf\x27\xb5\x0e\xe9\x1c\xf7\x03\x33\x84\x44\x97\x67\xa3\x15\x6b\x53\x7b\x32\x3d\x1f\xf5\xcf\xe4\xbd\x59\x16\xab\xf8\x4c\x7d\x2d\x4f\x66\xfd\x83\xe3\xe9\x81\x85\x56\x21\x43\xf1\x99\xe7\x72\x0e\x92\x13\x9e\x79\x30\xa7\xd8\xdc\x79\x9b\xbf\x07\x03\x33\xf1\x59\xb4\xdf\x9f\xa9\xdd\xe5\x28\xb5\xe2\x99\xca\x5d\x8a\x52\x03\x9e\xa9\xdb\xa5\x34\xdc\xff\x39\xdf\x0f\xfe\xfe\x9a\x6d\xc9\x3d\xcf\x06\x06\xf5\x82\xef\x99\x6d\x21\xef\x09\x1b\xda\x1a\x6f\xea\x86\x29\x54\xff\x3e\xf9\xd5\x10\xfb\x79\xe6\xb9\x94\xa3\xc4\xae\x27\xd4\xef\xaf\x6c\x5b\xc2\x83\x50\xa4\xe4\xf9\x4e\x15\x21\x35\xcf\x67\xaa\x8b\x39\x89\x2b\x3f\xf3\xf8\xc8\x29\xba\xff\x03\x6d\xbf\x7f\xce\xef\xb3\xdf\x9f\xf4\x36\x64\xd1\x7a\xa6\x64\x93\x73\x71\x7b\x12\x43\x10\xc7\x7e\x10\x83\x14\xa5\x06\x3e\x53\xee\x4f\x5d\x9b\xfb\x89\x73\xdf\xc9\xf5\x15\x9f\x79\x7a\x45\x5b\x0b\x1f\x84\x1b\xbd\xd6\x23\xce\xf5\xab\x62\x30\x4f\xc4\x7e\xd0\x4e\x7f\xe6\xd9\x16\x73\xf1\x78\xfb\xef\xf8\xff\x13\x0f\xb4\xdd\xdf\x5c\x3f\xef\xfb\x67\x6a\xb5\x31\x34\xc3\x33\xe7\xd7\x8c\x2f\xd8\xc3\x87\xe9\x05\xe6\xf0\x21\xd9\xea\x41\x24\x92\xdc\x17\xf1\x49\xe4\x3c\x7e\xff\xf7\xe7\xcd\x93\x70\xde\x48\xaa\x78\xa6\x9a\x9c\xad\xa9\x3e\xa9\xa2\x2d\x7c\xa4\x86\xb6\xfb\x9f\x7c\xbd\x8a\x83\x3c\xb0\xaf\xe7\xe2\x05\x4d\x13\x01\x8a\xba\x8b\x4f\x3a\xd0\xf6\x07\xe7\xdc\x00\x46\xd8\xd4\xc4\xf3\x10\x8f\x7f\x10\x7f\x34\x5e\xfd\x4d\x11\x45\x91\x3a\xf1\x41\xf4\x51\xf4\x6e\xcf\x01\x87\x9d\x00\x9c\xb2\x6c\x2a\xde\x30\x53\xb5\x4f\xd6\x50\x1f\xd8\x28\x15\x12\x13\x9f\xa9\xe9\x27\xdb\x6d\x9f\x5c\x71\x58\xba\xbf\x86\x0d\x29\x78\x73\xff\xfe\x2a\x21\xb9\xff\x89\x00\xf9\x17\xe2\x93\xe7\x06\x96\x03\x37\x3e\x79\x9e\x6a\xbd\x78\xfc\x39\xff\xe8\xf9\xe5\xeb\xfb\xab\x28\x18\x21\x3e\xf9\x9e\xed\xea\xef\x1f\xb4\x05\xcf\x54\x4b\x53\x96\x2c\xf5\x94\xb9\x81\xbb\x37\x64\x81\x35\x51\xdc\xf4\x29\x69\x7e\xef\x0d\x50\x70\xf0\x6c\xfe\x1d\x52\x91\xe1\x9f\x42\x64\xda\xc4\x7d\x9f\x32\xe7\x5f\x4c\x30\x65\xce\xbf\x7a\x83\x95\x81\xb6\xdf\x9f\xf3\xaf\x26\x50\x84\x1c\x25\xd3\x03\xbc\xff\xd5\xdc\x18\x01\x47\xbd\x7b\x7c\xac\xff\xab\xff\x07\x04\x2e\x7c\x53\x76\xd4\x01\xf5\xd0\x5b\xe3\xf7\x69\x6a\x91\x9a\xfa\x4c\xe5\x24\xd6\xe2\xef\xf3\xc4\x97\x0e\xf7\x67\x2a\x27\x49\x2e\xac\xf8\x4c\xfd\x23\x65\x6f\x38\x44\x09\x64\x1f\x67\x4f\x9d\x08\x78\x11\x78\x1d\x93\x43\x7b\x81\xa6\x82\x92\xb2\x17\x7c\x6a\x28\x31\xb4\x1f\x69\x3f\xcf\xd4\x5e\x52\xf7\xf6\x9f\xca\x4b\x6a\x2f\x68\xee\xf9\x7b\xf2\xef\x73\x77\x54\x89\x9f\x70\x96\xc4\xe8\xd5\x44\xf8\x40\x1e\xd2\xcd\xe0\x2d\x09\xc9\xfb\x1b\xd1\x03\x96\x89\x9f\x36\xd1\x33\x0c\x3d\x22\x90\x86\x97\xab\x4d\xf4\xbc\x96\x1b\xf1\x47\xaf\xf3\x87\xa1\x04\x12\x25\x9f\x36\xbe\xbf\xea\xeb\x7c\x69\x13\x3b\x63\x73\x7f\xd4\x8c\xfc\xfd\xe4\x8f\x9b\xb7\x23\x63\x8f\x5e\xed\xfb\xfb\xab\x46\x49\x80\xcf\x54\x71\xa2\x05\x98\xa7\x6f\xf3\x77\xf7\xd7\x03\xb6\xaf\xbe\xef\x73\x7b\x14\x9f\x27\x53\x4b\x88\xd1\xf0\xf5\x8c\x60\x36\xf7\x07\xed\x46\x46\x8e\x07\xbe\xc0\x3a\xdc\xff\x9c\xbf\x0d\x0d\x4f\x9f\xe7\xc3\x6b\x3b\x75\x04\x0a\xbd\xc6\xdf\xe7\xf8\xde\x4e\x53\xc3\xa8\xc9\xe7\x4b\x3f\x11\xc1\x6e\xf8\xe6\xfc\x87\xd9\x11\x62\x11\xba\xd9\x1d\x1d\x8d\xfe\x7e\xd0\xbd\xa1\xef\x47\xf8\xfe\xaa\xd5\xf0\x23\x5a\xeb\x75\xfe\x21\x5c\x2b\x9b\x9f\xc3\x38\x6f\x07\xcb\x33\xb0\xfe\x66\x57\x53\x1d\x49\x61\xf8\xf7\xf6\xfd\x55\x6d\x7c\x7e\xa6\x32\x52\x9b\xb7\x27\x82\x16\xb2\xcf\xa3\x31\xe7\x6f\x31\xf7\x99\xba\x49\xec\xaf\xf1\x26\x7b\x54\x70\x51\x7c\xc6\x05\x79\x49\xf4\x34\x75\x97\x98\x4c\x7f\x53\x75\x89\xc5\xf2\xc7\x54\x5d\xe2\x30\xfb\x65\xc0\x43\xf0\x76\xdd\x23\x04\x02\xbf\x30\xcf\x87\x97\x80\x34\x55\x9b\x94\x2d\x90\xec\x93\x3f\x0c\x6f\x7f\x68\x3a\x36\xfe\x3f\x7b\xfb\x9d\x8c\xfd\x4c\xc5\x27\x75\x13\xe0\xd4\x7b\x52\x31\xbf\x9e\x6a\x4f\x0b\xde\x90\x53\xeb\x69\xc1\xe7\xd9\x4e\xcb\x8f\xfb\xbb\xbe\xbf\x7a\xb5\xb4\x3a\x55\x9e\x94\x4d\xb0\xfb\x03\xfe\xaf\xfe\x11\xbf\x91\xbd\x61\xa6\x46\xd4\x82\x37\x30\xac\x74\x41\xba\xdd\x03\x7d\x28\x59\x40\x38\x32\x36\xb8\xe0\x3f\xe6\xfc\xcb\xab\x3f\xf0\x47\x9f\x4f\x53\x7d\x8a\xc5\xf8\x3b\xb0\x01\x4c\x70\x07\x23\xe5\xdc\x9e\x0c\xe0\x25\x40\x1f\xf0\x4a\x7b\x03\x1f\x2b\x42\x59\xed\x0b\x76\x3d\xb7\x61\x88\x93\xee\xfa\x40\xf5\xb2\x76\xf1\xd0\x49\x6e\x79\x63\x6a\x5e\x69\xb3\xc0\x36\x15\xaf\x96\x5f\xef\x33\xc6\x42\xf3\x85\x1d\x31\x47\x7f\x3f\xd7\xd7\x6a\xeb\x03\x83\x48\xb2\xba\xf2\x20\x3e\xa5\x7a\x07\xd0\xb4\xe8\x1d\x05\xcb\x62\xb6\x44\x38\xf5\xb8\x96\x7d\xe0\x4f\x35\x2e\xbd\x34\x08\x98\xae\x87\x0f\xb0\xa9\xd5\x45\xfb\x54\x9e\x0b\x02\x80\x29\xfe\x4a\x50\x87\xea\x0f\xce\x97\x44\xef\xf7\x07\xb6\xb4\x4d\x6d\xa6\xa7\xcf\xee\x4b\x70\x78\x2b\x86\x31\xc1\xe1\x2d\x51\x29\xc1\x31\x5d\xab\x7f\x85\x0f\xe5\xf5\x31\x3d\xd3\xcd\xef\xc3\xdf\xf0\x31\x96\xa4\x6d\xca\xe6\x5d\xa2\x5a\x82\x3b\x3a\xc4\x18\xfc\x00\x7e\xba\x8f\x11\x21\xc1\x41\x1d\x62\xf8\xec\xf6\x44\x17\x75\x95\x15\x38\x6d\x08\xde\x88\xa1\x69\x8c\xe5\x6f\xf8\x30\xdc\xc4\xcc\x22\x9f\x18\x69\x7b\xc0\x71\x35\xe6\x83\x49\x09\x66\xb8\x01\xaa\xcc\xd4\x29\x4e\x20\x7b\xf8\x30\xfc\x14\xa7\x40\xdd\x25\x4f\x26\xb8\x9d\xba\xa2\xdf\x13\xfc\x4e\x5d\xc9\x30\x29\x62\x4e\x0a\x87\x4f\x08\xea\xec\x52\x50\x52\x9c\x02\x75\x57\xe2\x4d\x8a\x53\xa0\x6e\xf5\xe3\x89\x4a\x71\xca\xd3\x5d\xde\x91\x14\xe1\xcc\x55\x24\x79\x82\x63\xab\x2b\x07\x28\xc1\xb3\xd5\x95\xe6\x93\xe2\x94\xa7\xbb\xdc\x2d\x29\x4e\x79\xba\x2b\x0b\x2a\xc5\x8c\xf9\x15\xb7\x69\x22\xd4\xfc\xa7\x3c\xdd\x95\xfa\x93\xe0\x2a\xeb\x0a\x7b\x48\x71\xf9\xfc\x87\x1e\x14\x58\x8b\x87\x00\xc6\x89\xb4\xe5\xe6\x07\xf3\x85\x50\xdd\xc6\x08\x5a\x82\x38\x30\x42\x15\x46\x06\x30\x5c\x34\x03\x98\xc8\xb6\xec\x25\x1a\x40\x71\x75\xbb\xf1\x05\xf7\x00\x1c\x8b\xf0\x10\x49\xd7\x25\x23\xa7\x38\x0f\xa5\xb0\xe5\x2e\xa4\xc1\xaf\xb5\xe5\xee\x2f\x4e\x76\x29\x34\xcf\x73\xa9\xa7\xe0\x2f\x80\xe6\xd7\xac\x1f\xce\x5a\x2f\xc0\xab\xb5\x65\xbf\x01\xa3\xda\x96\x87\xe6\x3d\x4f\x8a\x2e\xa7\x56\x8a\x3b\x57\x5e\x94\xb3\x63\xe5\x8b\x7b\xc4\xca\x57\xcd\x02\x27\x85\x32\xd8\x52\xdc\x01\x52\x75\x7f\x58\x79\x6d\x7e\x44\xfa\x75\xa5\xc7\xa5\xf8\x40\xd3\xf2\xfe\x44\xa4\x5a\xdf\xb2\xdb\x08\x6c\x10\xa9\x32\x5a\x2d\x28\x9a\x2b\x21\x5e\xad\xeb\xac\x4d\x09\x49\x5a\xa1\x7f\xb4\xdb\x44\x07\x63\xe8\xda\x9d\x09\x49\x5a\x41\x31\x68\x29\xc1\xdb\x1d\xfa\x47\xdf\x4a\x0c\x7a\x0b\xbd\x7b\xd4\x83\x0f\x3c\xea\xc9\x07\x86\xf3\x82\x3f\xfe\x33\xd1\x14\x10\x0d\xe0\x0f\x42\xc1\x3c\x04\x44\x00\xdb\xd1\x96\x49\x81\x50\x0e\x7f\x80\xf8\x00\xed\x99\x44\x1f\xb8\x6c\x73\x29\x05\xfa\x5f\xd4\x63\x84\x87\x44\x9b\x24\x45\x62\x4e\x88\x41\x60\x5d\x18\x9b\x10\x03\x23\x7a\x18\xe2\x95\x29\x56\xcc\x41\x20\xc4\x86\xb6\x40\x88\x3b\x46\x14\x56\x10\x14\x52\x0c\x51\xbc\xd0\x61\x10\x12\x12\xb6\xa5\xf8\x06\xc2\xe8\x82\x15\xed\x79\x24\x4f\x8a\x8e\x02\x29\x11\x02\x8d\x90\x80\x15\x69\xea\x29\xc1\x14\x10\x46\xfa\x89\x66\x93\x10\x88\xd7\x37\xf1\xa1\x84\x5c\xa5\x30\x92\x70\x02\xc6\xb6\x65\x8f\x7f\x12\x40\x7f\xc1\x29\x25\x91\x06\xf2\x8e\xc2\xd0\x79\x95\xc0\xab\xb6\xec\x36\x7c\x47\xe2\x6d\x29\x13\x62\xaf\xc3\x54\xde\x5b\xe9\xfe\x60\xc7\x9c\x85\xa4\x0c\x4a\x32\x65\x4d\xe5\xbc\xcb\x5a\x95\xd2\xe4\x75\xad\x0c\xf5\x57\x88\x54\x8f\x88\x00\xfc\x30\xb4\xa9\x53\xe1\xca\x9b\x54\x0a\x60\x14\xff\x4e\xd0\xd8\x82\x82\x30\x53\x6a\x88\xde\x11\xb3\x4a\x53\x43\x6a\xf5\xd5\xc6\x31\x1c\xb5\x4e\x8d\x71\x11\xfe\xfe\x01\x12\x34\x00\xc2\x9b\x83\xe2\x1d\x13\x42\x13\xfb\x66\x2c\x0e\x6e\x07\x2d\xc4\x00\x84\xd1\xef\x63\x37\x78\x5d\x06\x37\x64\x75\x07\x60\x34\xde\x6f\x3b\x06\xd0\x91\x06\x8f\x7f\xab\x26\x7e\xfa\x9e\x0d\xf1\x8e\x03\xa0\xfb\x77\xf0\x77\xaf\xc2\x41\x80\xd5\xdf\x01\xd2\x8e\x5a\xb5\x83\xfd\xf9\x7d\x06\x64\xa9\x3f\x88\x88\x56\x7a\x53\x82\x4c\x28\xa5\x36\xa5\x13\xe7\x85\x98\x3d\x22\x27\xfb\x66\xc2\x3b\xc1\x79\xcd\x92\x4e\x2c\x41\xd0\x04\x2e\x38\x40\x93\xfa\xbb\xc8\xc3\xb4\xe8\x79\xa3\x16\xae\xed\x9a\x99\xdf\x9a\x34\xe7\x0c\xd6\xd9\xe4\xfe\x4f\x99\x91\xb6\xe3\x63\x49\x4e\x19\xa1\xb3\x2d\x6a\x47\xe5\x78\x23\x83\x37\xe8\x01\xf2\x19\xb2\xb7\x54\x46\x3e\x43\x8b\x1f\xed\x37\xe5\xbe\xb4\x75\x8d\x02\xf5\xb0\xc9\xde\x9b\x32\x92\x95\xab\xf2\xc1\x52\x86\x33\xa4\x29\xf8\x2b\x65\x08\xe0\x3d\x89\x63\x67\x84\x74\x37\xd9\x88\x53\x66\xc8\xb4\x64\xea\x54\x02\x5d\x04\xa2\x98\x02\xa3\x9f\xcd\xe4\xa9\x20\x49\xac\x29\xfb\x2d\x15\xb8\x6d\x9b\x12\x6e\x52\xa1\x1e\xa6\xac\xd9\x54\xe0\x71\x6a\xb2\xf3\xa7\x32\x25\xfb\xf9\xe0\x03\x47\xc1\x32\xb4\x24\xc2\x2c\x17\x42\xe7\xb6\xaa\x37\x1e\x18\x07\x95\x26\x9b\xe0\x76\x0f\x2d\x7f\xa4\xf3\x54\x11\xf4\x39\xc2\x47\x9f\x48\x35\xa3\x53\x05\xf6\xa6\x8a\xd0\xff\x96\x3f\x1a\x56\xaa\xf0\xe0\xb5\x2c\x38\x2a\x74\xe2\x26\x11\x3e\x55\x38\x6e\x9a\xa5\x8b\x06\xaf\x76\x2b\x62\x8e\x0d\x5e\xed\x56\x3e\x76\x89\xd4\x5a\xe1\x83\xcf\x5c\x5a\xa7\x63\x46\xac\xa7\x61\x5d\x5a\xf1\x83\x1b\xae\x30\xe5\x87\xa7\x76\x03\x63\x45\x02\x7b\xe3\xf4\x8b\x40\x6f\xcf\xc5\x07\x9f\x51\x3a\x7c\x2b\xad\x7c\xcc\x89\xa9\xc3\x3e\xfd\x62\x91\x3d\x51\x3f\x96\x2c\xd5\x33\x3f\xd1\xd1\xd5\x0b\xe7\xa2\xd9\xf6\x4a\x48\x75\xd8\xf5\x1d\x79\xc3\x52\x5a\x53\x87\xe3\x6f\xc8\xea\x9a\xfa\xb3\xff\xce\x09\x9a\x06\xce\x6c\x07\xb9\xa5\x01\x3f\x75\xab\xf1\x27\x51\x6d\x69\x20\x11\xa7\x55\x9d\x0c\x63\x47\x2a\x9e\xe2\x6e\xd3\x80\x5e\xbb\x19\x7b\x7b\x39\xf9\xe0\xb3\xac\x3b\x49\xb4\x05\xbd\x01\xdb\x5a\x93\x31\x3f\xed\x1d\x19\x5f\x16\xf6\xf7\x93\xa3\x88\xf7\xee\x8c\xd1\x56\x08\x7d\xda\xe1\xa1\x6b\x0a\xab\x49\x3b\x3c\x74\x4d\x41\x59\x69\xbf\x31\x51\x99\xf4\xd3\xfe\x24\x6e\xb7\x0f\x7e\x8f\x8d\x80\x09\x59\xf4\xe1\x37\x45\xde\xa5\x03\x21\xc7\x4d\xa1\x62\xe9\x40\x58\x71\x91\x5f\x24\x1d\xc8\x65\x6a\x4a\xef\x49\x47\x23\x1c\x52\x8c\x0e\x78\xd3\x9b\x12\xff\xd2\x01\xe6\x62\x47\x5d\x3a\x3a\xfb\x10\x63\x3e\xe0\x46\x6e\xca\xcd\x49\x07\x82\x84\xaa\x99\xdc\x01\xbf\x69\x1d\x62\xad\xc7\xc9\x3e\xc4\x07\x8e\x07\xe4\x65\x5e\x72\x3c\xc8\xaa\xb4\xc6\x74\x22\x40\xb7\x0e\xc9\xea\x27\x02\x14\x9a\x8c\x60\xe9\xc4\x28\x6d\x68\xa1\x4e\x38\x4a\x9b\x85\xa3\x0b\x71\xe1\x4d\x21\x1e\xe9\x82\xb2\xdb\xc6\xc7\xec\x9b\xae\x44\x9a\xd5\xba\x5c\x19\xe7\xb0\xc4\xed\x0b\x19\x6a\x6d\x88\xec\x2f\x68\x1d\x7d\x93\x02\x7d\x21\xc6\xe9\x75\xb2\x5e\xe7\x72\x80\x7f\x56\xe1\x9a\x07\x4b\xe8\xb2\x66\xa4\x1b\xfc\xe9\x25\x59\xde\x89\x93\x15\x5c\x37\xb3\xb5\xad\x95\xdf\x95\xa3\x48\x8f\xb8\x91\x18\xd7\x65\x73\x4d\x37\xce\x8d\x2e\x9b\x4c\x62\x28\x45\xdf\xc4\x6b\x6f\x26\x55\x29\x23\x22\x21\x8c\x21\xf4\x4d\x2c\xed\x66\x3e\xa4\x52\x24\x12\xfc\x08\xa1\x7b\xff\xd0\x12\x5d\x87\xce\x0d\x98\x9a\x43\x57\x0a\x4b\x82\x6d\x39\xbc\x74\x59\xd8\xbe\xc2\x4b\x25\x82\x71\x2b\x64\xeb\x38\x34\xc6\xf4\xa0\xe9\x3f\x17\xfb\x10\x4b\x7b\xae\x85\xd3\xf5\x49\xde\x12\x3f\xf9\x28\x66\x79\x43\x82\x63\x97\x8d\x33\x6f\x4c\x69\x55\x76\x78\x5e\xf5\x2a\xf2\x07\xb0\xcc\xa0\xf1\x2e\x33\x71\x66\x0a\x7a\x57\x0c\x4c\x0e\xf9\xc1\x83\x0f\x37\xce\x4c\x83\x76\xfc\x60\x0e\x07\x50\xa8\xc3\x39\x87\x83\x9f\x7c\x42\x16\x33\xc2\x98\x43\x8f\x1f\xfd\x2a\x87\xfb\xe6\x03\x8d\xf2\xb0\xd3\x0f\x4e\x33\x42\x8b\x43\xd7\x79\x9e\xe3\xc6\x4f\x3e\xdb\x36\x33\x71\x32\x2b\x12\x29\xc7\x35\xdb\x8f\xb6\x93\x99\xb1\xd5\x65\xd2\xcb\xf1\xe2\x83\xac\x4f\x10\x14\xd0\x95\xb7\x9c\x13\xe4\x9b\x2e\x2f\x56\x86\x7a\x12\xba\xce\xe2\x9c\x10\x71\xdb\xd3\x47\xf1\xcb\x89\x73\x51\x6a\x6a\x4e\xd8\xd8\x5d\x79\xa5\x39\x43\x57\xec\x22\xa9\x9c\x59\x9d\xe3\xf5\x06\x0e\x81\xae\x5c\x90\x9c\xc1\xd7\xba\xd2\x70\x72\x06\x5f\xeb\xca\x85\xcc\x99\x79\xf9\xb2\xf7\xe4\x0c\x7f\x55\xdb\x3e\xe6\x88\x9c\x91\x2d\xd9\xf3\xeb\xc1\xce\x07\x1f\x82\xc9\x38\xf1\x7b\xae\xea\x14\x36\xd5\xae\xf3\x3c\xe7\x83\x93\x1b\x02\x9d\x1b\x39\x7f\xc4\xaa\x5c\x38\xb9\xf2\x61\xda\xb9\x20\x7f\xab\x97\xb8\xfd\xe0\xfc\xca\x05\xfa\x63\x56\x7c\x54\x2e\xc4\x6f\xd1\x2a\x96\xb6\x36\xe4\x67\xa2\x05\xc9\x82\x4d\x89\x26\xb9\x1c\x04\x41\x40\x16\x40\x3d\x82\x3f\xb9\x41\xe6\x72\xee\xe5\xc2\xb3\x47\xd6\xec\x5c\xc1\x6b\x7b\xd5\x0a\xd4\x40\x7f\xb5\xf6\x4e\x85\xd2\xd6\xe5\x11\xcf\x95\x89\xba\xca\xbf\xcc\x75\xe7\x1b\x1f\x8e\x9e\xeb\xaa\xbd\xf3\x39\xe1\x72\xdd\x39\x8a\xb6\x4a\x03\x25\xf4\xfa\x91\x31\x72\x63\x6d\x12\xc5\x49\xe4\x06\x32\xef\xed\x13\x61\x96\x1b\x2b\xda\x28\x00\x38\x53\xd6\xe9\x0a\xea\xcc\x3d\x60\xe1\x95\x20\x93\x3b\x2b\xa0\x28\x13\x3e\x77\xfa\x92\x65\xfc\xcb\x3d\x63\x9d\x15\xbe\x90\x3b\xc4\xe7\x2e\x07\x5e\x1e\x30\xcf\x37\xd9\x48\xf2\xb8\x41\xb3\xb2\x25\xe4\x01\xd1\xa6\x8f\x8f\xc8\x99\x77\x98\x59\xba\x8c\x05\x79\x47\x3c\x5d\xd7\x29\x99\x77\xc8\xe4\x5d\x9a\x71\x3e\xa0\x9a\x27\x55\x51\xc9\x07\x2c\xa9\x5d\x81\x7e\xf9\x68\x6b\x6d\x3f\x9d\x1e\x50\x8a\xba\xc2\xb1\xf2\x71\x12\x0e\x71\x8a\xe3\x5a\x6f\x7c\xe6\x72\xdc\xd4\x1e\x3e\x8a\x58\x3e\x29\x84\xc9\xb8\x99\xcf\x88\xd5\x57\xf4\x66\x3e\x01\xd8\x90\xf9\x30\x9f\x27\xfd\x4d\x62\x3f\x27\x52\xce\xc6\x26\x8c\x9d\x77\xe0\x27\x9f\x07\x17\x78\xda\x50\x7c\x56\xbe\x70\x4e\x0c\xf9\x50\xf2\xfd\xfb\x08\xa0\x7c\x6f\x88\x83\x7a\xb5\xa9\xe5\x08\x5f\xf7\x06\x2f\x60\x73\x07\x30\xfa\x17\xff\x8e\xa8\x9d\xe0\x0e\x06\x7c\xba\xfe\x1d\x5e\xbd\x8f\xf5\x26\xdf\x4c\xcd\xcc\x7e\x9f\x87\xce\xeb\xc1\xf5\xfd\x95\x8a\x38\xd7\xbd\xc1\xaf\xfb\xb1\x8b\xe5\x1b\xfb\xa8\xf9\x40\xb9\x11\xb7\x23\xab\x6a\xbe\x21\x90\x28\xce\x27\xdf\x61\x4d\x49\x3d\x42\x51\xc9\x3a\x09\xee\x50\xd0\x41\x54\x1b\x8e\xcc\xe4\x76\x43\xa0\x8e\x07\x40\xa0\x87\xb6\xe9\x1d\xe0\xc7\x1a\xee\xef\x06\x4a\xfc\x3e\x22\x21\xa3\xe8\xf8\x8e\x13\xe9\xc3\x38\x8a\xf4\x1c\x6b\xc0\xd8\xdf\x61\x59\xf9\x06\x55\x37\x05\x98\xe7\x1b\xa1\x34\x9b\x58\xe4\x8d\x33\x24\x47\xad\xfb\x0d\x0d\xd8\x41\x87\xf9\x8e\x74\x96\x0a\xcb\xd0\x88\x9b\xa2\xa8\xf3\x3d\x85\xb4\xbc\x79\x12\x30\x82\xa9\x68\x4b\xbe\xd3\x14\xd0\xc3\x66\x42\x40\x38\x8c\x62\xc5\xf2\x9d\xa8\x85\x7b\xa1\x40\xd0\x72\x8f\xe5\x7b\x4a\x13\x71\x78\x61\x51\x81\x47\xd6\x9b\x7c\x27\xf8\xb7\x87\x7f\x7f\x56\xf0\xd9\x6a\x67\x06\xa7\x09\x22\x84\xaf\x48\x97\xce\x37\x58\x4e\x56\xfa\x59\xbe\x91\xa9\x52\xb3\x90\x92\xb9\x07\x93\x1f\x74\xaa\x7d\x1a\x32\x23\xa4\xcc\xc4\x9a\x27\x2d\x2a\x6a\x38\xdf\x99\xac\x41\x53\xca\x88\x0e\xf5\x94\x91\xc5\xd7\x62\x0e\x3f\x39\x99\xee\x52\xbe\xbf\x6a\xf6\x9a\x14\x62\x54\xa3\xa1\xac\x4d\x11\x5f\xbe\xa7\xf4\x95\x83\xf7\x2a\x8a\xda\x24\x13\x3a\x6a\xda\x38\xac\x37\xdf\xd0\xc3\x82\x39\xc8\x5d\x96\xd2\xaa\x36\xe6\x53\xfc\x3b\x3c\xa6\x51\x10\xd4\x88\x90\x2c\xb7\x13\x3b\x54\x07\x53\x1e\x9e\x0f\xb4\x28\x95\xa4\x9a\xb5\x08\x0d\xb4\x2e\x46\x78\x37\x38\x95\xbb\x60\x44\x3d\x85\x21\xaf\x51\xbe\x59\x1c\xc1\x93\x40\xa4\x76\x96\x5f\x3b\xdf\x28\x96\x50\xcd\xd2\x7a\x04\x5a\xb4\x08\xfd\x77\x71\x87\xf9\xee\x15\xbb\xcd\xbf\xc3\x0d\x2d\x2e\x8a\xd0\xe6\xd8\x4c\xf9\x53\x82\xcf\xc1\x64\xd4\x0f\x04\x59\xba\x7d\xbe\xe3\x18\xf3\x0d\xdd\x2d\xbf\x08\x11\x91\xd0\xc1\x6d\x08\x41\xd1\xfc\x02\x96\xa4\x61\x32\x64\x60\x81\xb7\xe2\xa0\xc5\x5b\x03\x32\xce\x59\xbe\xc8\x8c\x38\xe7\x18\x36\xd3\xdd\x98\x94\xf1\x6e\x0f\xb4\x85\x74\x84\x12\x6c\x3a\x59\x6f\xf8\x6c\x82\x4e\xeb\x9b\x02\x8f\x42\x87\xf2\x3d\x05\x0d\x87\xdc\xe6\x7b\x07\x8e\x4d\xf8\x50\x4f\x7d\x66\xde\x3b\x41\xf6\xf7\x15\xb1\x8a\x9a\x02\x2c\x50\xb5\x6b\x0d\xf7\xb9\xb1\xb6\x26\x00\xe1\xba\x1f\xcd\xe3\x3d\x9c\xa1\x1e\x4c\xe1\x20\x07\xef\x85\x29\x47\x66\x4b\x57\xf7\x54\x8f\xb3\xa2\x8a\xf3\x8a\x54\x7e\x6d\xe5\x63\x7f\x47\x97\xe6\xfb\x38\x7e\x17\xf2\x9e\x19\xca\xdc\xac\x97\xdc\x53\xe7\x8c\xc9\x30\x9d\x53\x8d\x2d\x46\xea\x49\x9c\xa8\x47\xaa\xca\xaf\x75\x9e\x07\x78\x56\x42\x60\x46\x20\x73\x0e\xc1\xbf\x37\x04\x0c\xba\xc3\xce\x0e\xdc\x23\xfc\xe5\xd5\x1d\x1c\x8c\xe9\x56\xfb\x42\x87\x9a\xc2\x09\xc2\xf3\xce\x38\xe7\x76\x2e\xde\xad\xc8\x0d\xcd\xc9\x87\xf5\x94\xb5\x63\x30\xcb\x45\xfd\x9f\xd7\x32\x4e\x75\x26\xaa\x50\x42\x46\x0c\x74\x56\x2e\x60\x46\x08\x74\x2a\xd1\x03\x0c\x84\x00\x69\x02\x34\x2b\x2a\x53\x2c\xdf\x28\xfd\x13\x5e\x94\x38\xf5\xa3\xea\x45\xb8\x30\x83\xe8\xf7\x1f\xb4\xf5\xfa\xbd\x66\xa0\x17\x6e\x46\x30\x0b\x25\x77\xe4\x00\x22\x84\x3b\x21\xaa\x55\x53\xba\xe7\xa2\x6c\xa6\x0b\x08\xee\xa1\x0a\x82\x9b\x1c\xed\xf5\xc1\xc1\x39\x68\xd2\x37\xb0\x1e\x3d\x24\xc2\xbc\xb3\xdb\x8b\x76\xd5\x25\xed\x30\x92\x9e\xef\x87\xa7\x44\xd1\x17\x4f\xc4\xe1\xac\x49\x41\x57\x1d\xc1\xdb\xe7\x29\xfc\x42\x78\x78\x2a\xd5\x0d\xb5\xb9\x30\xf9\x47\xe7\xce\x33\x4f\xb9\x28\x8d\xe0\x7e\x4e\xe0\xd0\x9d\x93\xa1\x79\xb3\x3d\x37\x67\xa4\x75\x7e\xc8\x93\xb5\xfd\x10\x58\xde\x93\x24\x1a\x04\x96\x07\xc5\x1e\x65\x04\x96\xcf\x1e\xba\x1e\xc0\xa5\xf6\x7a\x61\xa1\x7d\xe8\xc1\xc0\x8c\xfc\x02\x1c\x05\xda\x0b\x88\xfe\x9e\x20\x78\xc8\x25\x48\xfa\x0b\x58\x46\x25\x58\x3e\x9f\x7a\x94\x6a\x63\x77\x48\x11\x47\xfc\x77\x52\xe2\x46\x46\xfc\x77\xa8\xa2\x5d\xc4\x7f\xc7\xa0\x12\x10\xf9\x09\x85\x20\x68\xc4\x40\xcf\x44\x71\x97\x64\xd4\xc3\x7d\xac\xd3\x4e\x40\x04\xa6\x7a\x08\x91\x53\x2d\xcf\xf2\xf8\x67\x04\x79\x27\xd9\xd4\x33\x82\xa6\x67\x07\xc2\x43\xa4\x48\x22\xae\x83\xb0\xe8\xa4\x5a\x78\x19\x61\xd1\x59\xb6\xd8\xcc\xb0\xe8\xa1\x30\x89\x8c\x38\xe8\x09\xa4\xbf\x40\x9c\x97\x8e\x9b\x67\x89\x7e\x06\x92\xa2\x9f\xd8\x08\x22\xa1\xe7\xbc\x35\x2b\xd4\x63\x2c\x06\x12\x1e\xce\x64\xd4\xa7\x1d\x7c\xc6\xbf\xaf\xc5\xf4\x03\x84\x02\x7b\x2d\xe1\xe0\x94\xcf\x23\x33\x14\xba\x29\x8d\x30\x33\xf6\x39\x58\x7e\x45\xb0\xf3\x7c\xa0\x2e\x20\x2e\x6e\xda\x42\x88\x66\x8e\x43\x44\x8e\x68\xe6\xfc\xc2\x34\x84\xc3\x6a\xfd\x94\xe1\xcc\x39\x89\x7f\x23\x3e\x39\xc8\xa0\x96\x11\x9f\x9c\xb6\xe6\x1e\x10\x35\xa0\x7d\x85\xf8\xe4\x68\xd6\xb4\xe2\x93\x4d\x2d\x65\x81\xac\x0e\x0b\x78\x97\x97\xb2\x50\xc2\xd5\x91\xb3\x22\x94\xb3\x47\x40\xb9\x00\x31\x7c\x58\x16\xb3\xb2\x84\x32\x22\x94\x27\xda\x3c\xc2\x80\x72\xe5\x17\x20\xfb\x48\x20\x46\x88\x72\x56\x4d\xa2\xfc\x50\xa2\xcc\x86\x88\xbc\xd0\x00\x4d\xfe\x5d\xaa\x01\x82\xcd\xb5\x79\x80\xba\x18\xb8\x46\x58\x22\xa5\xce\x8c\x87\xc6\x60\x65\xe2\x64\x44\x11\x67\xab\xe3\x88\x22\x9e\x7d\x0a\xcf\x95\x71\xd3\x12\x16\x10\x0a\x1c\x83\x25\x65\xc4\x02\x67\xeb\x98\x88\x05\xce\x56\xb5\x11\x0b\x3c\x3f\x50\x97\xf0\x4f\xd8\x8c\x07\x03\x6c\x2a\x26\xa6\x86\xa3\x5c\x2a\x22\x62\x79\x67\x07\x7e\x40\x59\x3c\x7a\x48\x60\x32\xb9\x47\xb0\x2b\x89\xd6\x8c\xd6\xb5\x65\x15\xd1\xb9\xb3\x47\xa1\xb2\x53\x8d\x35\x35\xc0\xf4\x5c\x24\x17\x23\x3e\x37\x0c\xc5\x2b\x65\x06\xe8\xb6\xe8\xd5\xe8\x80\x5a\x36\x19\x44\xe4\x66\xd9\xd0\x33\x23\x72\x83\x45\x5f\x84\xe4\xbe\x2c\x91\x08\xc9\xcd\xaa\xfe\x90\x11\x92\x3b\x3f\x10\x5e\x3a\x13\x92\x7e\x12\x71\x97\x11\xb0\x3b\xbf\xf6\x0c\xb0\x4c\xb2\x3d\x20\x62\x77\xbe\xa0\xa5\x9f\x92\x74\xb6\xbd\x03\x21\xbb\x5d\x11\xfc\x19\x21\xbb\xf3\x03\x3f\x40\x14\x9f\x49\x65\x10\x03\xc2\x21\xe2\xa1\xb2\x95\x50\x04\xe9\x66\xdb\xf5\x10\xa4\x3b\x7b\xf4\x90\x40\x89\x09\x1a\x2e\xfe\xea\x73\x6b\x90\x29\xb8\x4d\xfe\xec\x63\x04\x61\xb9\x21\x98\x7b\x32\x0c\xcf\xc7\x0a\x8c\x7c\xc9\xbc\x6f\x3f\xb0\xa7\x84\x15\xc8\xce\xcd\x1d\x42\x76\x2e\x92\x26\x10\xf6\x1a\x86\x8f\x90\x63\x11\x8e\x3a\x3c\x0a\xb8\xb3\x40\x44\xdc\xea\xf0\xd1\x7a\xd0\x68\xe4\x1e\x0f\x22\xc1\xeb\x0e\xf3\x67\x56\x55\xdf\xfc\x1c\x50\x84\xdd\xa6\xc9\xcc\x2b\x7b\x82\x93\x49\xae\x43\xa8\x69\x78\x61\xf1\x5c\xa4\xea\x0f\x2a\x87\x14\x50\x67\xe7\x03\x2d\x2d\xf2\xd6\x6d\x47\x67\x70\x69\xf2\x99\x72\x52\x6e\xf3\xb4\x4e\x12\xab\xb9\xe7\x89\x40\x35\xb3\x0d\x8a\xcf\xde\xf4\x27\xa5\x1c\xcb\x20\x17\xd8\x86\x31\x7f\x81\x1c\x8d\xc8\x6b\x61\x5a\x30\x5e\x74\x18\x98\x80\x2f\xa8\x04\x3e\xc7\x50\x4e\xb3\xfb\xd0\xb9\x40\x7e\x3e\x38\x2f\xf0\x63\x6f\xe9\x0b\x5c\xc4\x87\xfd\xc5\x39\x99\xcd\x4c\x79\x3a\x55\x33\x64\x0a\xd0\x26\xa6\x29\x40\xb7\x6a\xe2\xb8\xa1\xd4\xb8\x43\xca\xcf\x96\xc0\x9f\x29\x3f\xa7\xf6\xea\x80\x32\x8e\xf1\x7e\x23\xec\xdc\x20\xde\x18\xd1\x2b\xf9\x70\x13\x4b\x5e\x7e\x20\xfe\xa6\xe6\x49\x3f\x44\x9b\xb4\xc1\xe7\x81\x65\xc7\x7c\x60\x8a\xbf\x29\x0f\x77\x89\x5d\x5c\xdd\x41\x47\x92\xae\x26\x41\x17\xf8\xeb\xfb\x85\x25\xed\xf2\x25\xe1\xfa\x9c\x7b\xb0\xf4\xde\x22\x0f\xca\xf8\x7c\x94\x80\xc2\x4a\x59\x9b\x0c\x6c\x05\xe1\xc1\x73\x8f\x24\x3d\x80\xd5\xa1\xf8\x05\xc2\xd8\xd5\x6e\x84\x21\xeb\x01\xcc\x0e\x1f\xcd\xa5\x6c\x30\x94\x5a\x29\x2f\xdb\x46\x51\xcf\x2f\x50\xc0\x2d\xee\x61\xae\xb5\x0e\xa9\xb2\x41\xc0\xad\xca\xbf\x29\xdb\x94\x70\x8b\x0c\x99\x05\x15\xbd\xe6\xb4\x05\x64\x00\x01\x7f\xb6\x48\x41\x90\x73\x7a\x4d\x22\x50\xa5\xfd\x88\x34\x05\x85\xbd\xb2\x02\x4e\x0b\x4a\x79\x85\x51\x3d\xc2\x9a\xa5\x5f\xa0\x14\xd5\x05\x34\x25\xe0\xea\x1e\x49\xe1\xfe\x9d\xa2\xe0\x47\x66\x29\xac\xf9\xd5\xa2\x11\x15\x2e\x8e\x61\xa8\x11\x7a\xd6\x3d\x26\xe4\xae\xf0\x13\xf7\x50\xd9\x22\x51\xa0\xde\x11\x9f\x98\x0c\x2f\xb2\x24\x75\x71\x42\xd9\x90\x25\x39\x8a\x56\x29\x72\xdd\xb5\xce\x91\x9a\x99\xd6\x20\xf2\x84\x49\x9a\x70\xc4\x16\x7f\x75\x00\xf1\xe6\xf5\x01\x11\xe2\x01\x0f\xa4\x9d\xfa\x77\x6a\x08\x06\x70\x8a\x60\x9b\x97\x88\xb1\x4e\xc9\xab\x9e\xd6\x06\x14\x88\x94\xe7\x83\x41\xfa\x04\xa6\xa8\xcd\xc4\x3d\xf7\xb0\xd6\x44\x18\x46\x64\x74\x32\xa1\xc1\x73\x55\x9b\xf7\x4b\x26\x16\x45\x48\x19\xe6\x9a\xea\xf6\x02\x41\x43\x64\x48\xae\x5d\xb3\xa6\x34\xde\x44\x05\x19\x58\x6b\x9a\x75\x66\xad\x25\xff\xce\xdd\x93\x0c\xd2\xda\x2d\x06\x89\x2a\x43\xf3\x1b\x38\xb3\x82\x26\x55\xc0\xdd\xfd\x7b\x59\xc4\xaf\x31\x0b\x96\xda\x84\x08\x7b\xad\xdc\xc3\x65\x2b\x6b\xa9\xdd\x03\xcf\x4d\xe3\x8d\xe2\x75\x13\x4c\x53\x9c\x4e\xdb\xab\xc7\x87\x40\xeb\x83\xca\xb5\x4b\xc2\x0b\x72\xf8\xc6\x8b\x3c\xea\x82\x52\x7d\x56\x7a\x22\x05\x75\xa5\xf5\x30\xf9\x01\xf7\x68\xd2\x72\x57\xca\xaa\xc9\x5d\x80\xc4\x9a\xc7\xe0\x8e\x4b\x5a\xbe\xc6\xf5\x57\x0f\x4b\x7e\xce\x5a\x8e\xc6\xc2\x6d\xfe\x00\xb9\xc5\x51\x13\x85\x3c\xbd\x19\xd7\x8d\xb1\x3c\x82\x71\xf9\xad\x4c\x92\x8d\xeb\xef\x36\xaa\xd9\x79\xf1\x3a\x17\x4f\x03\x2e\xf1\x39\x8b\xc6\x69\x15\xee\x6e\x53\xc0\xc8\x1a\xb2\x53\x37\xf2\xac\x3b\x49\x2a\x0b\x2d\x1d\x67\xab\xa9\xbe\x2f\xd1\xce\x83\x52\x60\xf0\x6a\x2d\x01\xd6\x2c\x9a\xfe\xf0\x22\x3c\x50\x3e\x1d\xc2\xdb\xa0\x1c\xd4\xfd\x60\xad\x9e\x26\x3e\x20\x07\x79\xb9\xa7\x80\x9a\xb2\x59\xf8\x00\x89\xbd\x3a\x38\x08\x82\x5f\x38\xd9\xa3\xa0\x5e\x12\x6a\xd5\x27\x3b\x69\xcc\x3c\x7a\x5f\x34\xa6\x69\xec\xb4\xeb\x19\x9b\x3b\x3d\x0d\x6e\x5f\xd0\x2b\x05\xe5\x41\x93\x97\x71\x77\xc0\x78\xfa\x6a\x83\x41\x98\x87\x1f\x38\x68\xba\x10\x75\xd0\x06\x21\x18\x91\x5b\x95\x3d\x89\x25\xa2\xfa\x3c\x3e\x48\xb3\x3e\x58\x18\x68\xb0\x09\x0f\x27\xd7\xc6\x0c\x82\xf6\x5c\xb3\xa0\x93\x56\x38\xb3\xc1\x93\x9a\xa9\x81\x5c\x61\x94\xee\x81\x76\x90\x57\x17\xc4\x75\xfe\xd9\x51\x84\x74\xa7\xf8\x82\x90\x1c\xcb\xd4\x81\x7c\x27\x25\x50\x97\x0d\xf6\xdc\xda\x3c\x1e\x3c\xc4\x75\x68\x19\x2e\xea\x43\xe6\x27\x17\xa7\x30\x34\xa7\xab\xa0\x28\x81\x7b\x00\x4f\xf3\xce\xbe\xe0\x8a\x7c\xbd\xcf\x92\x7b\x9b\x5f\x40\xd6\xaa\x77\x32\x2d\xb8\xde\xf9\x17\xd5\x1d\x6f\x92\x9b\xa4\xe0\x03\x6d\x89\x9c\xa6\xbf\x1b\xb4\xe0\x31\xef\xcc\x17\x34\xad\x1b\x7b\xd9\x78\x61\xc0\x42\xf2\x66\xbf\x91\x7a\x6a\xe1\xeb\xa6\x6f\xdd\x87\xec\x4d\x5b\x4e\xf6\x18\x30\x64\x18\x73\x37\xa6\xf1\x02\x92\x5b\x3b\xeb\x01\x8c\xba\x45\xc5\x58\xcb\xf6\xd0\xae\x66\xc6\xcb\xe2\x1b\xcd\xe4\xf2\x70\x1b\x19\xb9\x0f\x77\xbf\x06\x7d\x38\x2f\xd1\xd3\x43\x1e\x65\x0a\x7c\x20\x2b\x0c\x0f\x41\x16\xe5\x79\xc1\xb4\x5b\xbd\x3a\xcf\xda\xdb\x9f\x2e\x59\xe3\xb3\x7e\xd4\xaa\xc2\x78\xad\xaa\x9b\x7f\x0a\xef\x17\x52\xae\x43\xe1\x6d\x42\x55\xd7\x3f\x14\xde\x26\x34\x24\xe0\x17\xde\x26\x94\x65\x9c\x2b\x81\xa6\xdb\xe1\x17\x28\x3e\x88\x91\x86\x25\x87\x8a\x2d\xe2\x9a\x9f\x68\xf9\x22\x40\xcc\x54\x19\xcc\x12\xe0\xa1\x57\xd4\x42\x41\xdd\xd0\xac\x42\x55\x25\xac\xe8\x0a\x0f\x19\xa8\x47\x25\xb5\xc9\x1e\x8c\x07\x88\x9d\xf1\x63\xaf\x29\x61\x89\x9d\x62\x93\xb8\xd3\x67\x3e\xd0\xbc\x21\x55\x2a\xf6\xab\xa0\x56\x69\x56\x39\xa8\x12\x22\xf7\x9a\x88\x0e\x97\xeb\x24\x55\x53\x2d\xbc\x3b\x27\x58\xc0\xc0\x55\x39\xf3\x81\x10\x97\x90\x80\x1b\xfc\x02\x39\x90\xa4\x1c\xdc\x95\x33\xbf\x50\x9f\x69\xc5\xa0\xfb\x8d\x06\xa8\xfc\x02\x29\x5f\xe2\x21\x6e\xc6\x99\x5d\x08\x55\x89\x98\x30\x10\x07\xda\x42\x04\xdc\xf2\x0a\x9f\x2a\xbc\xd2\x46\x65\x40\x4a\xa0\xa1\xd5\xd2\x02\x6f\xb5\x51\xa5\xda\xc2\x4b\x6d\x74\x63\x41\xe1\x9d\x36\xc9\xb3\xce\x28\xab\xe0\xc5\x86\x9b\xbe\x6a\xfb\x23\x60\x30\x36\x2f\x7e\xa6\x06\x21\x2c\x65\x58\x64\x86\xdb\x2c\xe6\x6c\x00\x59\x17\xc6\xfd\xc3\x7e\x62\x5a\x81\xd9\xd6\x42\x1a\xe2\x11\xe7\x84\xd4\x01\xec\xb6\xd1\xa4\x51\x22\x3a\x14\x40\x85\x2b\x2f\xe1\x03\x57\xd8\x64\x95\xec\x2a\xac\x12\x5b\x15\x73\x54\x70\x61\xcd\x7c\xe0\x37\x68\xdd\xe8\xee\x73\x47\xf1\x19\xb7\x4f\x56\x2b\x50\x7b\xf1\x23\x8d\x59\xe9\x64\x1a\x82\xba\x12\x4a\xa1\xa5\x92\xd9\xfc\xc4\x45\x54\x70\xcf\x8c\x6b\xed\x14\x5e\x33\x13\x2c\x3e\xe1\x9a\x99\x80\xdc\xda\xcf\x03\xac\x92\x18\x2a\xae\x91\x71\x75\x9e\xc2\x6b\x64\x86\xb8\x23\x6e\x91\xc9\x9b\x37\x64\x45\x75\x1e\x33\xa6\xc6\xa3\x4c\xef\x33\x62\x3c\x99\x0c\x1a\x35\x70\x09\xcf\x61\xd9\x68\x05\x11\x2e\x84\xd1\x2d\x17\x25\x30\x2c\x5b\x3a\x08\xae\x83\x49\x32\x07\x15\xde\x07\xf3\xe6\x3a\x8d\x91\x99\xa6\xac\xc6\x58\x3a\xc1\xdc\x68\xc0\x94\x94\x12\x20\x85\x2a\x6b\xb7\x84\x1e\xdf\x25\x89\x4a\xe8\x6b\x12\x1a\x62\xd9\x6c\xcd\x13\x3a\x10\x5f\xdc\x03\xef\x04\xf0\x07\x28\x8a\x14\x3d\x22\x4e\x00\xa9\x03\x01\x65\xd9\x5a\x32\x63\xeb\xa0\xfe\xe8\x0e\x20\x17\xbd\x7e\x5f\x73\x30\x04\x28\x8b\x14\xd5\x1e\x28\x1b\x21\x21\x27\xc0\x06\xab\xe0\xc0\x82\x8a\xc6\x49\x59\xf8\x05\x25\x8d\xb3\x22\x01\x4b\x18\x8c\x62\x71\x7f\x4c\x46\x31\xc3\x81\x89\xf5\xc5\xbb\x99\x3f\xea\x0e\x61\x1f\x2d\x66\x48\xb0\x8f\x66\x59\x9c\x4a\x40\x70\x42\x4c\x6e\x2f\x2c\xbb\x07\xec\x47\x29\xc0\x01\x85\x0b\xac\xad\x86\xbd\xe2\x77\x2d\x13\x0a\x15\x28\xa3\xa4\x84\x29\xdd\x26\xcb\x1f\x01\x39\x17\x2d\x99\x27\x22\x3a\x41\xf1\x59\x25\x40\x9a\x55\x10\x5d\x41\x00\x73\xb4\xc2\x1d\x0e\x9c\x67\x26\x4d\x58\x60\xbb\x67\x30\xa5\xdb\xbc\x99\x81\x1c\x8b\x8b\xbb\xc3\x9d\x0f\x34\x85\x83\x92\x66\xf1\x10\xa8\x7e\x25\x01\x39\x1c\x30\x92\x18\xcb\x07\xb9\x9c\x0c\x1d\xb8\x8c\x68\x3e\x50\x97\x27\x8d\x97\xe6\x73\x2c\xcc\x66\x46\x79\x62\x16\x3e\x11\x61\xb3\xcd\x5e\xd8\x73\x41\xed\x0f\x40\xbc\x12\xd3\xc2\x49\x4f\x8e\x37\xf9\x79\xe0\x28\xd0\xbc\xa7\xfc\x9c\x86\x67\xc9\x82\x00\xd5\xbf\x53\x5f\xf6\xd9\xc3\x10\xc9\x17\xef\xbe\xd6\xac\x04\x03\x43\x1c\x2c\xe6\xe3\x8a\x23\xfb\x91\x0b\x2f\x34\x1a\x2f\x56\x07\x9b\x6b\x34\x67\xbb\x50\x6d\xd6\x88\xbb\x18\x3c\x23\x20\x99\x3a\xf5\xe2\x54\x17\xa1\x34\x9b\xb8\xb7\x77\xe5\xb1\x12\xa6\x48\x9c\x9a\xb7\xd4\x4d\xc9\xd1\x5b\xe0\x5e\x40\x6b\x5a\x37\x50\x6d\x46\x03\x81\x77\xf8\x50\xbe\x89\x69\x77\x80\xda\x69\x3e\x4e\x6e\xb8\xfc\x7d\x46\x43\xfc\x8d\x16\xc8\x6e\x4a\x3f\x52\xa7\xc2\x43\x90\xf5\x01\xa4\x5d\x5d\x3d\x50\xc2\xb3\xf0\x2c\x7a\x7b\xd6\x26\xf4\x03\x3a\x2f\xcb\xcf\x0e\xa0\xa7\xbc\x8b\xb1\x95\xf0\x30\xfd\x45\x13\x7a\x68\xc4\xb0\xe0\x03\x1b\x70\x34\x71\x3e\x08\x8e\x33\x46\x1e\xba\x07\x84\xe3\x07\xc6\x53\xaf\x32\x2c\xc0\x8a\xbd\x29\x28\x64\xee\xea\x6f\x05\xa5\xcb\x63\xd1\xfb\x71\x03\x4f\x11\x13\x62\x2d\xf3\x61\x3e\x8a\x5a\xe6\x49\xe1\x42\x05\xf9\x06\x51\x21\x50\x25\xf2\x12\x4e\xd1\x3a\x6b\x97\x2b\x50\xb6\xa0\x74\x79\x56\xe8\x4c\x89\x2c\x5f\xa7\x15\x41\xe9\xf2\xa0\xf2\x30\x25\x32\xcc\x55\xc1\x3d\x85\xc5\xcb\xb3\xee\x6a\x2c\x91\x52\xb5\x8c\x0f\x11\xc9\xde\x0a\x78\x28\x91\xe1\x0b\x0a\xae\x29\x11\x81\xaf\xca\x0e\x2d\x31\x50\x4a\x19\x7e\xe1\x02\x19\x0a\xe6\x48\x2a\xd0\xa9\x1f\x23\x43\x09\xfc\x02\x4a\x8a\x05\xff\x5e\x89\xb5\xac\x07\x90\x5f\x8b\xdb\x6b\x37\x16\x3d\x18\x88\x27\x14\xd0\x30\x97\xca\x5b\x5c\xe2\x0a\x90\x30\x9e\x23\xf1\xa6\x76\xc2\xc2\x1a\x44\x94\x81\x8b\xc6\x52\x5a\x0b\x29\x98\x13\xc3\x81\xfd\x02\x48\x4f\x47\x34\xca\x54\x04\x5d\xcb\x52\x50\xa6\x22\xc7\xd7\xef\x0c\x76\x70\x7f\x94\x4f\xdd\xa6\xa5\x52\xa4\x1c\x19\xa9\x20\x66\x8f\x3a\x12\xd9\x9b\x37\x2e\xe3\xa9\xe4\x92\x98\xe1\x45\x8a\x6e\xaf\x62\xad\x02\x81\xd6\xd1\xec\x17\xe6\xba\x35\x23\x31\xe3\xcc\x97\x8e\x1e\x29\xc0\x4a\x58\xe3\x5d\x68\x4d\xf1\x3e\x05\x77\xa1\xa5\xea\x65\xfb\x08\xb4\x42\xc2\x12\x68\x87\xdf\xe0\x89\x65\xda\x29\xbc\x05\x4e\x30\x30\xf7\xd1\x8c\x38\xe2\xc6\x0b\xdb\x04\x71\x17\x5a\x8e\xde\x91\x85\x27\x98\x78\x02\xaf\x42\x1b\xaf\xa5\xad\x4b\x52\xd0\xbc\x98\x59\x24\x63\x19\x32\x7c\xa2\xbd\x15\xb8\x19\x2d\x25\x0f\xb1\x6c\xa7\x46\x3d\x62\x11\xe2\xab\x03\x50\x5f\x35\x08\x6b\x12\x7e\x40\x05\xdc\x6b\x55\x19\x75\xa4\x17\x50\x96\xac\x78\xd6\x0d\xe2\x95\x67\xdd\x78\x65\xa8\xdb\x20\x57\x69\x99\xb8\xd2\x2c\x47\x53\x1f\xaa\x92\x59\xca\x8d\x94\x7a\x15\x70\x51\x70\x1b\x59\x96\xb3\xad\xc4\x86\xb5\xf7\x07\x9d\x76\x31\x2f\x65\x5f\x8c\x45\x43\xb2\x7c\xb0\x0e\x44\x5e\x3d\xd6\x14\xbd\x53\x62\x5f\x04\xea\x07\xcc\x3e\x72\x97\x1d\x30\x08\x09\x1d\x9b\xda\x7b\xb0\x2f\x62\xf1\x07\x6b\x8f\xf8\x0d\xce\x42\xd4\x44\xa9\x54\xa2\x06\x2a\xa7\x64\x1b\xfb\x99\xba\x95\x53\xfd\x49\x64\x76\x41\x5d\x95\x6c\x97\x53\x5c\x32\xab\x8e\x3b\x94\x45\x89\xc1\xba\x02\xca\xa2\xb8\x38\x68\x41\x55\x94\x9e\xbc\xe9\x07\x9d\xf2\x9a\x31\x84\x5a\x9b\x1b\x50\xf2\x24\x2b\x31\xbf\x44\xe6\x7f\xaa\xfa\x59\xc1\x85\x05\x73\x44\x3f\xa8\xdf\x5f\x5d\x77\xfb\x96\xb8\x37\xbe\xa0\x29\xef\xa8\xbf\x29\xa1\x13\x45\x53\x92\x0d\xa2\x91\xb7\x2a\x49\x42\x64\x11\x94\x62\x94\xe1\x92\xa5\x60\xcb\x40\x3c\x90\x22\x60\x26\x00\x1b\xed\x8b\x91\x51\xaa\x95\x98\x13\x0f\x2a\xea\x5a\x93\x03\xaa\x88\x8f\x50\x9a\x68\x6d\x4a\x88\xc7\x4a\xd3\xff\xb4\xcf\x0d\x53\x74\x1b\x8b\xec\x23\x16\x05\xac\x9a\x49\xfb\xe4\x76\xf6\x71\x73\xc2\xcd\x20\x41\x3e\x32\xaa\xc0\xaa\x3b\xee\x58\x73\x10\x70\xe1\x15\x6b\x59\xd1\x73\x05\x57\xac\x25\xe5\x4e\x17\xde\xb1\xd6\xd2\xeb\x01\x83\x8f\x4c\x99\x08\xca\xb5\x78\x18\x61\xb4\x0d\xb6\x3f\x44\x46\xe1\x6e\x1e\xf4\x62\xa1\x52\xb3\x21\x5c\xd9\x12\x2c\x5b\x30\x4c\xd7\x06\x85\x08\xab\xed\x0b\x71\x17\x8d\x74\x3e\xca\x11\xa8\x1b\x7d\x6a\xf2\x2e\x37\xcf\xfb\x1a\x28\x9e\xe8\xdf\x0f\x60\xda\x03\x9c\x1c\x51\xa8\xbe\x70\xd2\x67\x4f\x02\xcc\xd8\xa7\xec\x05\x67\x9a\x89\x89\x22\xae\xcf\xb4\x95\xaa\x64\x08\x61\xf5\xad\x66\xff\x30\xfa\xda\x74\x1e\x6f\x6e\x00\x0d\x40\x11\x38\x9a\x51\xde\x50\xda\xba\x3b\x68\x2c\x2c\xad\x76\xe7\x07\x9a\xe3\xcd\xd8\x4b\xef\xc9\x9b\x9b\xd8\xf4\x73\xaf\x59\x0b\x88\x87\x86\x4a\x1f\x08\x34\xf2\xda\x12\x19\x19\xbb\x60\x46\xf5\xb0\x28\xb0\xa0\x78\xd6\xd2\x09\x4c\x0a\xb6\x3e\xa3\x9e\x45\x92\x82\xea\x21\xc3\x36\x2b\xa0\xe4\xea\x89\xe1\x46\x84\xda\x3c\x0f\x1a\x79\x7d\x28\x3d\xc8\xe2\xd0\x90\x2c\x56\xa4\xea\xd8\x25\x21\xe7\x4b\xb9\xe6\x05\x29\xa9\x29\xca\x7c\x85\x62\x46\x73\x92\x41\x0f\x20\xb5\x65\xbf\x00\xd4\xeb\xe0\x45\xed\xa2\xa9\xf1\xf8\x03\xf0\x77\x61\x05\x75\x88\x62\x88\xe2\x9f\x89\xb5\x99\x87\x41\x78\x50\x3b\x59\xbf\xb3\x16\xb3\xa6\x98\xc2\xc2\x7b\xd4\x83\xc4\x1e\x35\x24\x4c\xc4\x2f\x10\x20\xcc\xda\x25\x80\xca\x45\x49\x17\x3b\x94\x44\x59\xd6\x96\x94\x44\x13\x71\xf1\x0b\x28\xc7\xfc\x1a\xf1\xe0\x07\x42\x23\x02\x13\x6a\x7f\x01\x0d\xa9\xca\x78\x44\x1e\x58\xb0\xa9\x24\x21\x11\x6c\x4c\x16\xfd\x83\x43\x28\xa1\x5e\xb3\x8f\xd9\x14\x69\x11\x6b\x6a\x27\x00\x28\x78\xa6\xac\xdd\x75\xd1\x73\x41\xe1\xa4\x39\xbc\x1f\xa0\xfc\xaa\xf6\x28\x0b\x21\x0d\x33\x78\xdc\x30\xe8\x04\xaa\x92\x18\x39\xa0\x1b\xe2\x0a\x2a\x25\x39\xc1\xa8\xb0\x52\xd2\x88\xaf\x07\x84\x49\x48\x4c\x14\x1c\x65\x5a\x41\x65\x24\xe7\xca\x14\xd4\x3e\x4a\x59\xfa\x3a\x6b\x1f\xe9\xc6\xa7\x82\xd2\x47\x2f\x51\x17\xa5\x8f\x26\x48\xc2\x4a\x5a\x93\xf0\x90\x54\x5d\xab\x1f\xcc\xed\xf0\x5a\xb7\xbc\x01\x04\x0d\x99\xc3\xbb\x4e\x77\x41\xa9\xa4\xd0\x1c\x81\x82\x84\xec\xd8\x4c\x5a\x19\xa4\x16\xfc\x3b\x0b\x7f\x6b\x8e\x10\xc7\x75\xb3\x66\x61\x6d\xa5\x61\x52\xcc\x2c\xfc\xad\x29\xa0\x2e\x72\x7e\xf5\x47\x5f\x44\x35\x84\x34\xee\x68\x87\xa3\xf8\x92\xc3\xef\x0b\x8a\x2d\x25\xfb\x26\x50\x6c\x29\xaa\x16\x6e\x49\x0c\x24\x96\x30\xce\x52\x4b\xd5\xfb\x13\x95\x8c\x2d\x13\x26\x48\xef\x43\x8a\x5f\x62\x20\x83\x72\x2a\x4b\x82\x79\x5a\xc1\x77\x25\x15\x6e\x8e\xe4\x07\xe7\xbb\xd8\x79\x49\x10\xde\x2d\x17\x27\x04\x36\x34\xef\xae\x25\xaa\x4b\x0c\x4d\x10\xd5\x6b\x37\xd6\x11\xd7\x30\xec\x98\x48\xab\x38\x83\x60\xaa\x64\x9c\x06\xb2\xfe\xae\xc0\x7a\x49\x95\x68\xf4\x34\xeb\xa2\x1d\x41\x59\x09\xa5\x87\x40\xc9\x44\x53\x42\x5b\xb7\x40\xaa\xbd\xae\xb6\x57\x3b\x62\x0b\x6a\xc4\xc6\xb0\x47\x61\x05\x36\xeb\x6a\xca\x80\xc9\x7a\x78\x7f\x35\x64\x9a\x9a\x4d\x36\x56\xd4\x14\xd6\x98\x2c\xf7\x06\x80\xe2\x88\xf1\x8e\x30\x63\x45\x88\x17\x94\xc0\x0a\x49\x97\xa0\x97\xd4\x56\x11\x71\x8f\xc1\xb2\x18\xc2\x01\x6c\xd6\xc9\x8c\xb5\x93\xd3\x9a\x98\x3a\xca\x44\x4b\x1f\x4e\xbc\x1a\xc4\x27\x31\xaf\xfc\x0c\xb6\x3d\x26\x94\x2d\xcc\x5e\x39\x26\xbc\x59\x24\x42\x5d\xad\x6c\x61\x17\x75\xb4\xd2\x30\xbd\x0e\xce\xdb\x5b\x06\x05\x42\x86\x77\x08\xa2\x6e\x6b\x37\x3d\x41\xde\xee\x9e\xd5\x8e\x4d\x6f\x26\x80\x3a\x3a\xc1\xc6\xcb\xb4\x04\x6e\xe3\x7a\xc7\x2e\x37\xf7\xdc\x09\xa3\x60\xda\x91\xe3\x60\x76\x8c\x5b\x3c\x6c\xd4\xe3\xc5\x5b\xc3\x22\x54\xe2\x25\x1e\x4a\xeb\x2d\x09\x66\x64\xc7\x7a\xa4\x1d\xd4\x27\x31\x30\x31\x90\xd7\x22\x0f\xaa\x7b\x65\xfb\x66\x59\xcd\xcb\xbe\xf8\xc4\xe2\x0a\x3e\x35\x8f\x35\x27\xf5\xc8\x28\x8a\x9f\xe5\xa7\x96\x74\xd4\xf7\x05\x04\x25\x1d\x6b\x83\xf9\x01\xcf\x50\x1f\x51\xc7\x9a\xb3\x90\x76\x50\x56\xf1\x0b\x14\xf9\x8d\x25\x14\x76\x69\x8e\x46\x49\xbc\x2f\xc4\x42\x59\xa2\x5d\xba\xb9\x8d\x23\xc6\x27\xca\xd9\xdf\xd7\x22\x94\x74\xb2\xac\xb4\x40\xa0\x91\x59\x56\x2f\x54\x2c\x4b\x5d\xba\x26\x2a\x96\xc5\x66\xa6\x00\x1b\x73\x36\x6d\xe2\x2a\x58\x3b\xaf\xd3\x92\xe7\xe5\xee\x46\x49\xb3\xe8\x58\x51\x5e\x04\xdb\x1c\x2a\x90\x90\x45\xf7\xa2\x1c\x04\xfd\x3a\x4a\x28\x5d\x54\xd4\x04\xe1\xc5\x78\x2c\x63\x6d\x4a\xe7\x29\x9b\xfa\xa7\x30\xde\x6d\x55\x4b\x17\x37\x5c\x76\x8f\x38\xc8\xdd\x23\xd2\xe6\x86\x85\xcc\x04\x71\xdc\xc6\xc4\x04\x69\xbc\x99\x34\xef\xf4\xbe\x5b\xa2\xa4\x7b\xd5\xf6\x52\x9b\x35\xb6\xfc\x3b\x0d\x25\xcd\x2f\x50\x1b\xb5\xcc\x78\xe3\xe0\x37\x29\xde\xc8\x06\x37\x9a\x21\x8c\x0f\xb3\x25\xa4\xdd\x55\xd3\x32\x64\xf3\x6c\xac\xc3\x62\xfd\x42\x22\x02\x36\x5e\xdb\x17\x01\x1b\x76\xdf\xa3\x66\x4a\x54\x69\xcc\x92\xa6\x24\x1f\x6d\x30\x48\x30\x60\xbf\x64\x5e\xd8\xaf\x5f\xb2\xdb\xaa\x7f\x66\x3a\x78\x98\xfd\xd5\xfc\x06\x70\xf0\x1a\x01\x52\xb1\x39\xcc\xd3\x31\x82\xdb\x10\x30\xb5\x9b\x70\x3d\xf0\x2b\x2e\x2b\x33\x67\xce\x26\xe6\xcc\x58\x0d\x4d\x31\x23\x54\xc3\x28\x41\x15\x98\xa8\xe2\x9d\x25\xa3\x60\xa8\x0a\x8e\x94\x8c\x0b\x54\x94\x4e\x5a\xf2\xb6\xae\xde\x52\x1b\x89\xcd\x9b\x01\x80\xa3\x5c\x13\xca\x88\x2f\x56\x22\x75\xc9\x48\xa0\x1b\x06\x18\x09\x74\x8e\x55\xcc\x14\xda\xb5\xb3\x72\x60\xfd\x69\x9d\xd8\x39\x50\xd1\x88\x7e\x83\x1a\x99\x8c\xde\x19\x61\x19\x56\xae\x73\xc0\xaa\x6b\x55\x73\xe0\x2d\x47\x12\x44\x72\x60\xd1\x35\xe1\x28\xe2\xbe\x26\x89\xb4\x39\x92\xef\x8b\x1d\xe4\xb8\xd6\x55\xb3\x44\x31\x06\x6b\xba\x79\x05\xf0\x36\x77\x49\x63\x90\x76\x5b\x46\x04\xef\xbb\x4d\x2e\x18\xdd\x05\xaa\xfc\x55\x8f\x09\x5a\xcd\xee\x91\x2c\x45\xdb\x31\x33\x47\xcf\xca\x49\x46\x24\x48\xb2\x5c\x9c\x91\x82\xf7\x82\x7a\x5d\x3e\xe2\x1e\x06\x4e\x27\xad\xcd\x94\xa3\x93\xdd\x17\x19\x51\x1d\x8e\xd9\xc9\x89\x88\x75\xff\x58\xeb\xec\xfe\xb0\x9d\x6c\x31\xc8\x94\xa2\x8d\x26\x56\x67\xd0\x51\x90\xf3\x2a\x53\x28\x08\x32\x35\xe1\x9f\xf9\x7f\x32\x82\x42\xaa\x69\x3f\x93\x9f\x78\x61\xa7\x50\x9d\x54\xda\xa0\x64\x46\x85\xbc\xc6\x67\xad\x71\x77\x70\x12\xa5\xee\x80\x39\x00\xaf\x1e\xb8\x2a\x06\x78\xad\x8a\x5e\x80\x94\xfd\x5a\x25\x58\xc5\x9d\x6f\x5d\x72\x21\x1f\xd6\xd9\x92\x0b\xf8\xb0\xbf\xa8\x54\x2d\x0c\xd5\x32\x40\xcb\x52\x9f\x97\xc5\x59\x22\x65\xae\x6b\xe2\x02\x0b\x81\x16\xaf\x95\xaf\x94\xcd\x4d\x1a\x15\xf6\x02\xf3\x95\xba\xe4\x0e\x3f\xa0\x91\xda\xbb\x0c\xe9\x70\xc9\x13\x85\x0d\x5a\x57\x47\x97\x8c\x9a\x0d\xe6\xf6\xb9\xd1\x95\xd7\xfc\x00\xb2\xd2\xab\x43\x50\xa7\x41\xa2\x5c\xeb\xc5\xa3\x94\xea\x59\xb7\x95\xbb\xab\x36\x39\x8f\x90\x40\x19\xb5\x7b\x1b\x77\x42\x2c\x00\x18\xee\x6b\xe7\x40\x5e\x52\xab\x19\xc3\x94\x5a\x61\xff\xfd\xb4\x29\x0a\x49\x30\xce\x9d\x30\xbb\x07\x96\x2c\xd8\xfc\xc2\x42\xb4\xd0\x84\xec\x38\x1f\xcb\x19\x85\x22\x1c\x51\x9c\x11\x7a\xe1\xe8\xee\xbc\x0a\x45\x48\xe0\xcb\x28\x14\x91\xcc\x8b\x3a\xc9\x45\xbf\xe3\xc6\x3c\x1b\x23\x51\x4d\x6b\x42\x20\xbc\xc0\xca\x6d\x0f\x5f\x1e\x2b\x20\xd5\x5f\x90\x9c\xbc\xef\x61\x97\xb6\x74\x93\x99\x8d\x66\x7f\x42\xde\x29\x90\x99\x66\x57\xb8\x85\xcc\xba\x19\xe1\x16\xd6\x28\x32\xa2\x2b\x7c\x0e\x66\x0a\xce\x06\x72\x95\x23\x35\x39\xed\x8d\x5b\x51\x88\xdc\x21\x1b\xf8\x60\x41\xb9\xef\x1c\x0c\xc2\x62\xa8\xee\x12\xf4\x63\xcc\xee\xe0\x66\xaf\x49\x2c\x4c\xbb\x07\xd6\x48\x35\x05\x4e\xd9\x3a\xdb\xb4\x9c\x8f\xc5\x71\xd5\xc5\x81\xd3\xd7\x87\x19\x2f\xc7\xf3\x61\xb9\x84\x61\x6f\x9a\x03\x93\x30\x75\xac\x0a\x14\x32\x04\xe7\x83\xba\x9a\x57\x0b\xc2\xf1\x70\xdc\x09\x0a\xc8\xbe\x39\xd2\xc1\x12\xfe\xa2\x87\x03\xf4\x62\x1e\x7c\x30\x08\x4c\xa2\x67\x86\x34\x1d\xdc\xe1\x14\xa6\x93\x2e\x7e\x2c\x19\x21\xce\x96\xd2\x32\x4b\x56\xbc\x36\xe2\xc9\x5d\xe2\x0e\x16\xfd\xb8\x07\xec\x64\x6f\xab\x93\x4b\x27\x10\x21\x7d\x07\x6f\xd4\x93\x27\xfa\xab\xc7\xb5\x34\xc2\x02\x2f\x75\xb0\x92\x9d\x2f\x76\xa9\x17\x6e\x5a\xa1\x3c\x06\x85\x57\xd3\xf0\x8d\x59\x19\x46\x58\x7e\xb3\x8f\xd7\x1b\xc6\x6e\xcb\x4d\x37\xc9\x29\xfd\x48\x0b\xca\x37\xb9\xa5\x99\x19\x25\x4f\xaf\x2b\x25\x4f\xd3\xda\xcd\x6b\x99\xcc\x6a\x58\xef\xe1\xb5\x8f\x1f\xa4\x59\x99\xbe\x57\xac\x84\x79\xcf\x32\x0a\x7b\x47\x50\x56\xf4\x42\x3f\x3c\xcd\x92\xbb\x24\x50\x6e\xf3\x28\xf2\x16\x41\x46\x9b\x2e\xf7\x28\x05\xc2\xa3\x43\x90\x0a\xe3\x17\x6c\xe2\x29\xbc\x8b\x5d\x58\x2d\x30\xf2\xaa\x66\x6e\x61\x59\xbe\x61\x93\x4f\x81\xb8\xd9\xbc\x03\xca\x46\x4b\x5c\xf7\x18\xe0\x6f\xe2\x7f\x85\x02\xa3\x88\xa9\x20\x40\xc1\xcc\xaa\x84\x05\x53\xd1\x03\x54\xcd\x17\xe3\x28\x91\x9c\x24\xf9\xc1\x5a\xda\xa6\x07\x3c\xfc\xe4\xcd\x2f\x94\xbd\x64\xa0\x2f\x28\x97\xa0\x4b\xc8\x4a\x41\x50\x6e\x96\x30\x57\x12\xa5\x70\x6d\xba\x42\x13\xe7\xf0\x0b\xd4\x03\xe4\xea\x28\xc8\xa6\x1a\x2f\xd4\xd2\xe6\x29\x6b\x5b\x41\x80\x80\x77\x40\x49\x34\x9e\x35\xbf\xb0\x48\xce\x6f\x50\x6d\x6e\x7e\x30\x97\x57\x55\xb3\x4b\xa1\x34\x66\x4c\xe7\x45\x72\x7e\x80\x04\x1c\x99\xec\x0b\x6d\x98\xb2\xab\x16\x54\x43\xd0\x55\x2c\xa5\xb0\x56\x96\x37\x76\xc9\x3c\xfd\x9a\x7b\xa4\x96\x6a\x4c\x22\xce\xf6\x85\x87\xbc\x80\x16\xea\x33\xab\x4b\x69\xb9\xcb\xc6\x13\x56\x83\x16\x32\x61\x69\x14\x05\x29\x58\x5d\x0c\xb0\x30\xaa\xc0\x26\x93\x52\x38\x66\x54\x1b\xdb\x40\x66\x1f\xdc\x4c\xde\xaa\x89\x7a\x95\x1f\xf0\x07\x35\xd0\x75\xa1\x2f\x2a\x96\xd7\xf4\xc2\x72\x04\x3e\x6b\x4a\xe5\xf2\x4a\x54\x2e\x10\x66\x1c\xf6\x56\x70\x4f\x97\xb5\xf3\xd2\x18\x2d\xd8\xfc\x02\x2e\x6a\x94\x60\x51\x98\xfa\x6f\xbf\x66\x81\x74\x63\xd7\x6e\xe9\x81\x88\xd2\xf2\x2f\x97\xbc\x89\x72\x8a\x3b\xd9\x26\xe4\x82\xbb\xba\x9a\x11\xd9\xe1\x2c\x0e\x7e\xbf\xe1\x7d\x4d\xaa\xd3\xef\x29\x8b\x1b\xae\x60\x0f\xc3\xb3\x46\x51\x2c\x3b\x08\x71\x05\x7b\xda\x36\x83\xcc\xbd\x6e\x02\xeb\x34\x5e\x49\x41\x28\x2c\xfe\xed\xd3\xad\xb0\x0c\x96\xad\x47\x85\xd9\xfb\x76\x9d\x96\x65\x27\x94\x16\x52\x58\xf8\xca\x7e\xcd\x82\x74\x7d\x1b\x5c\x0b\x0a\x5f\xd9\xed\x5e\x60\x27\x74\xf0\x69\x41\xf2\x53\x31\x11\xc3\x6e\x98\x8d\xc7\xc1\xa5\x11\xa2\x07\xc5\x04\x7d\xbf\x2f\x10\x35\xe0\xbe\x40\x14\xcc\x10\x6e\xba\x37\x1e\x64\x1b\xcb\x32\x65\xca\x36\xd9\x02\x18\x6e\x93\x8f\xad\xfd\xc8\x25\xc4\x9b\xe6\x1d\x81\x59\x70\x23\x96\x43\xe3\xcb\xbe\xcc\xa0\x1e\x9d\xf3\x51\x9b\x35\x36\xbd\xac\xc7\x5a\x03\x21\x80\x77\xd1\x4b\x56\x2b\x07\x0f\x33\xf3\xe4\x93\x32\xa8\xb9\x17\xd3\xa4\x1c\x3b\x58\x20\x43\xe4\xe0\x17\x0a\xda\x1a\xe2\x5c\x1b\xc8\x2f\x80\x18\x0d\xd4\xc9\x83\xa4\xfb\x01\x19\xa4\xd9\xdb\x49\x06\xe9\x1d\x03\x21\xa2\x3a\xc9\xa0\x2c\x9f\xba\x69\xe9\x5a\x5b\x46\x7d\x5c\x0b\x6e\x3f\x00\xdc\x32\x46\xa0\x26\x7e\x7e\x9d\x98\x17\xc5\xb5\xec\x31\xb0\xd1\x83\x3b\xe0\x46\x37\x75\x2e\xbb\x9c\x59\x24\xec\x72\x59\xf2\x58\xb9\x09\x94\x91\x89\x6a\x55\x76\x73\xe2\xf6\xfc\xec\x00\xbb\x72\x2f\xd4\xf8\x01\x05\x01\x1f\xcb\x37\xc5\x29\x1f\x0d\xcb\x65\x2d\x9d\xa0\x3c\xc4\xbf\x8f\x3c\x14\x8f\xca\xd1\x2f\xf0\x64\x37\x11\x20\xed\x48\x25\xad\x4b\x81\xb0\xa1\x4b\x0b\x4a\x41\xec\x64\x36\x63\x7f\xc8\xd0\xc4\x65\xeb\x12\x2e\x24\x7e\xe3\x92\xfe\x38\x24\x6d\xd7\x8d\xc7\xcd\xeb\x8b\xc5\x90\xaa\x1e\x20\x9e\x53\xc8\xaf\x4c\x97\x57\xf9\xe6\x52\x59\xee\xc9\xea\x3a\xeb\xeb\x36\x9f\x71\xb8\xa0\x20\x3b\xbc\xa4\x22\x8b\xc8\x22\x7d\x0d\xf4\xdb\x09\x28\xe4\xae\x5b\x96\xa8\xf4\x10\xdb\xef\x5d\x71\x43\xaf\x8a\x2c\x97\x8a\x9a\xae\xc5\xab\x53\x97\xa9\x48\x67\x62\x8d\xbc\xea\x5b\x40\xc7\xb5\x7c\xfe\x02\x14\xe2\x31\xd3\x9a\x84\xbe\x80\x7c\xe2\xd8\xf4\x3a\xe5\x93\xac\x6a\xf4\xa5\xb2\x9a\x93\x7d\xef\x15\xd7\xda\x3a\x0c\xa8\x32\xbe\xd1\xf6\x82\x0a\x53\x52\x7e\xf5\x48\x83\x97\x98\x68\x85\xfc\xa2\xd2\xd1\xa5\x26\x7a\x63\xaa\xbb\x64\x0d\x94\xe0\x2e\xe9\xa5\x1d\x9e\x06\xb7\xc6\x0b\x2a\xde\x0e\x2f\xd6\x55\xf3\x9a\xa8\x3e\xc9\x64\x34\x3a\xcb\x2b\xfc\xb2\x66\x1b\x15\x22\x4b\xb0\xcb\xbf\x2e\x99\xe5\xf5\xc5\xe0\x20\x7e\xe3\xe0\x03\xcd\x15\x57\xce\xb6\x57\x9f\x24\xa2\xea\x17\x48\xda\xee\x72\xc1\x2d\x7c\x23\x6b\x3c\x4b\xe5\xaa\x53\x64\x69\xce\x4e\xaa\x85\x07\xc4\xeb\x01\xef\x72\x17\x26\x0a\x55\x53\xa3\x9b\x99\x3c\x2f\xd4\x54\xae\xa0\xbe\xa0\x8d\xc8\x12\x47\x45\x55\x7a\xd5\x36\x2c\xb5\xae\x79\x8b\x50\x11\xa6\x68\xcf\x7f\xad\x20\xdc\xe4\xdf\xc1\xc9\x24\xb1\x56\x5e\x69\x30\x11\xf7\x83\x53\xa9\xd6\x85\x13\x01\x88\x9b\x52\x8b\xf8\x77\x45\x4c\x62\x70\xdc\x40\x45\xba\x77\xf1\x29\x58\x91\x8b\xe3\x63\xa8\xe2\x2e\xd4\xd7\x0c\x29\x11\x49\x98\xa8\x9d\x09\x15\x1e\xb2\x2f\xaa\xf6\x17\xa0\x6a\x49\x69\x15\x21\x88\x76\xca\x57\xa6\x7b\xbf\x16\x92\x12\x8e\xa4\x91\x4a\x6b\x8e\x43\x15\x2a\x62\x10\xdb\x1b\x28\xec\x55\x03\x8d\xa8\x41\xdb\xe3\x2b\xac\x31\x2f\x49\x10\xb7\x9b\xb4\x5a\xfc\x02\x44\x68\x8b\x6d\x75\x2c\xbc\xbb\x4b\x9e\x6b\x46\x14\xe3\x08\x6d\xb6\xaa\x3b\x31\xa3\x69\xe0\x12\x4f\x47\x0b\x55\x58\x63\x2c\xd8\xd7\x9d\xdc\xbf\xfa\x41\xe3\x3c\xb5\xf8\xfb\xc2\x8c\xdf\x18\x04\x42\xa8\xd9\x17\x6a\x34\x31\x8a\x19\xde\x46\xbc\x7c\xc0\x52\x4f\x65\x0d\x22\x0b\x56\xf5\xa0\x7b\xff\xf5\x06\x91\xa7\x2e\x0f\xae\x9f\xa0\x62\x51\x22\xdb\xbe\x2a\x8c\x25\x59\xe7\x5c\x3d\x6e\xe6\xd8\x08\x99\x27\x30\x63\x6c\x23\x7a\x30\xeb\x1c\xac\x30\x86\xe8\xba\xe8\x52\xe1\x58\xd4\xed\xc4\xa5\x9e\xeb\x82\x1b\x81\x00\x5b\x47\xf6\x21\x76\x72\x9b\x05\x8f\xb0\x23\x62\xd9\x3d\x12\x4f\x5e\x0c\xde\x5a\x61\x6b\x5b\x3d\xd7\x82\x6b\xda\x27\x2f\x71\x17\xee\xcf\xb5\xde\x7a\xe1\xda\xd8\xa7\xa6\x71\x71\x5a\xc2\xcb\xc5\x69\x68\x08\x84\x02\x66\x9f\x30\x30\xaf\xd8\xe7\x52\x2f\x72\x73\x43\x7d\xc1\x7e\x6c\x32\x46\xcd\x4e\xc7\x95\x56\xc6\x06\x3a\xfa\xa4\x42\xee\x79\x49\x78\xf5\xa2\x57\xc6\x6d\x5e\xe2\xe3\xa5\x81\x3f\xd2\xee\xfc\xca\xe8\x40\xdb\x3b\x2a\xe4\xa0\x61\xaa\xbd\xe9\xea\x0a\x7e\x40\x22\x35\x6a\x6f\x4a\x67\xcd\x7d\x92\x95\xcb\xd8\x55\x61\xa7\xc9\x3e\xf7\xe0\x11\xdc\xbc\x16\x4b\x50\xf2\xe1\x8c\xd8\x3e\xa7\xce\x56\x5c\x9f\xe2\x04\xc3\x4a\xb1\xc8\xc7\xe0\xc3\xa8\x65\x4d\x7b\x8a\x49\x71\x33\x85\x3e\xe0\x17\x3a\x09\xda\x06\x02\xd5\x59\xd3\x36\x94\x9a\x49\x6e\x63\x4b\x88\xa5\x35\x66\x5e\xdb\x14\xd1\x10\x66\x97\xb5\x95\xdb\x46\x80\xfc\xfb\xe2\x2f\x4d\x0f\xc0\xf7\xab\xdb\xa4\xc7\xe6\x1e\x20\xd9\x09\x27\x6d\x5d\x5a\xf0\x21\x9e\x16\x02\xd7\xde\x0f\x70\x28\x8b\xd5\xb7\x00\xea\x7b\x7d\x40\x1e\x28\x21\xb9\x51\xe8\x12\x52\x1b\x32\xb5\xb3\xa8\xaf\xa1\x00\xa6\xae\x88\x2a\x2d\xac\x65\x1c\x3f\x39\x8a\x70\xb9\x41\x72\x10\x5f\x8b\xdc\x2d\xa2\xf6\x86\x20\xba\x34\xc4\x05\x1a\x53\x56\x1c\xef\xd2\x22\xa3\xdb\x3d\xc5\x48\x88\xb5\x0c\x30\x3a\xb9\x2c\x48\x8b\x34\x4a\x08\xa9\xac\xd6\x6e\x5a\x6d\x71\xe7\x10\xee\x81\x68\xef\x86\x0a\x17\x2c\x04\xc3\x40\x21\xbe\xfb\x01\x8f\x58\xcf\x03\xa1\x79\x8e\x98\x6f\xc8\xda\x76\x1c\x5d\x4b\x0f\xc7\x14\x94\xb0\x10\xe9\xd2\xcd\xd2\xf2\x9a\xb7\xda\xcb\xe0\xa3\x36\x2e\xab\xef\xfe\xfe\x24\x04\x5a\x98\x4c\xd6\x65\x90\x28\x2a\x35\xf7\x00\x72\xf7\x24\x59\xfe\x52\x02\x5e\xa3\xb5\xc7\x2b\x5d\x16\x44\xc2\x5b\xa1\x1b\xc0\x6d\xf2\x42\xe9\x74\xad\x82\xf5\xbd\xda\xab\x07\x0d\x01\xf7\xda\x66\x6a\xac\x05\x3d\xfa\x77\xaa\x21\xfe\x9d\x67\xa1\xc4\xbd\x56\xc9\x66\xa4\x1b\x35\xc4\x94\x65\x2f\x4c\xa5\x4f\xdd\xbf\x93\x0d\x19\x6f\x2b\xc6\x4c\x16\x83\xc6\xe2\x94\xe9\x35\x28\xb9\xa3\x31\x8b\x28\xb3\x97\x3e\xd5\x58\x5e\xc7\x11\x89\x0d\x49\x1d\xd5\x95\x40\x1a\xeb\x4f\xba\xca\x54\x6b\x34\x84\x4a\xb3\x6c\x48\x66\x6e\x56\xe2\x5a\x63\xf8\xaa\xd8\x55\x63\x36\xb3\xa3\x46\x5a\xe3\x02\xea\x85\xbe\xc0\x10\xa0\xb8\x31\xbe\x4a\x50\x6d\x9d\x2a\xb5\xf4\xf4\x86\x3c\x8f\xdc\xfd\x01\xb1\x27\x5c\x20\x5b\xd9\x42\x40\xeb\x8b\xc8\x34\x24\x92\x89\xb3\x67\x31\x28\xf7\x49\x17\x69\x83\xa2\xa5\x44\xd7\x36\xc8\x24\xa5\x83\xb5\xb1\x50\xe3\x3e\x79\x2d\x9d\xb1\x39\xd6\xa8\x02\x8b\x4e\x31\x07\xab\x34\x0a\x59\x9e\xd7\xbe\x30\x21\xb8\x58\x32\xc7\x3c\x62\x67\xba\x89\x3f\x00\x2b\x97\x1e\xd8\x96\xd0\x25\x89\xbc\x2d\xa1\xcb\xb8\xdd\x09\x76\xf6\x27\x90\x4f\x65\x4b\x68\x3b\x3d\x79\x1e\x82\x3c\xc3\x63\x20\x5a\x4c\x17\xeb\x94\x76\x10\x97\x1a\x12\x49\xc5\x2f\xb5\xbe\x31\x38\xcb\x3e\xfd\x46\x09\xca\xcc\x9d\x12\x92\x14\xea\x86\x82\xe6\xba\xcb\xa7\xb4\xb3\x4d\x90\xcc\x11\x70\x59\xe4\x8b\x93\x22\xf4\xaa\x19\xf1\x34\xe3\x58\xb3\x69\x27\x6f\xce\xd0\x52\x9d\xf4\xfb\x7a\xc3\xd2\x46\x23\xc9\xa2\x5d\x14\xfb\x8d\x95\x8b\x20\x69\x48\xde\x09\x67\xe5\xb5\x4d\xe9\x25\x59\x4a\x6c\xd7\x9a\xb4\x26\x09\xe1\xa5\x59\x59\x6a\x90\x5e\x9c\x8b\xd4\xa6\xf0\x92\xca\x8f\x6e\xcf\x2b\xed\x26\xa5\x48\x34\x6e\xc8\x73\x28\xde\x33\x90\x6c\xaa\xa3\xf5\xd7\xed\x3b\x56\x39\xdb\x4d\x8a\xf6\x42\xde\x8b\x34\xb4\x0e\x37\x05\x30\xb3\x14\x56\x1c\xb7\xf6\x83\xeb\x0b\x63\x31\x75\x21\x36\xc9\xfe\x84\xf6\x90\xfc\x8c\x85\x29\xdb\xa4\x17\xd8\x90\x6d\x9c\xcd\xda\x1e\xb2\x13\xc3\xc0\x1a\x8b\xc6\x1a\xef\x47\xb4\x36\xd4\xe8\x91\x4a\xaf\x07\x3c\xd3\xc4\x6f\x70\x83\x62\x6a\x22\x97\xce\xbc\x04\x2d\x55\x47\x0a\xae\x2b\xa3\x96\x0e\x1f\x56\xcb\xaf\x07\xbc\x53\xc8\x5f\xa0\x04\x84\x24\xae\xce\x2a\xe3\x0e\x9e\xe8\x1b\x45\xf8\xe4\x37\xb8\xcb\xba\xda\x28\xbe\x2a\x0b\x42\x67\x26\x83\x23\x90\xfa\x32\x3b\x69\x53\xf4\x29\xf1\x44\x97\xf8\xea\x61\xa0\x07\xb7\xa9\x14\x48\xd3\xe9\x88\x69\x2a\x9b\x3b\x20\x01\x1a\xc8\x40\x76\x24\x4d\xa5\x47\x1e\x10\x22\xea\x8e\x5a\x34\xba\x33\xa3\x74\xa4\xdd\xea\x9a\x8e\xd2\x99\x66\x6b\x63\x59\x8f\xdc\x16\xd9\x6f\xd0\x50\xee\x17\xb8\x2d\x24\xbc\xe2\x36\xcb\x66\x29\xa8\xf3\x86\x7a\xb1\xf6\x9e\x70\x63\x84\xdf\x47\x6a\xc0\xcb\xc6\xd0\x51\xbb\xc6\xbe\xe8\x9e\x0a\xa2\xc5\x84\xc8\x44\xb1\xc9\x98\x65\xde\xac\x27\x89\x10\x25\x27\xf8\xf4\x25\xe2\x18\xd3\x19\x1b\x53\x02\x46\xcf\xc8\x57\x33\x56\x32\x47\x30\x1e\x33\x8b\xaf\x0b\xa4\xcc\xc5\x76\x07\xe4\x4f\x9e\xd4\x32\x0f\x0d\x77\x49\x91\xc4\x5d\x14\x0a\x9c\xd2\x22\xfb\x94\x72\x62\xf3\xac\x50\x3c\xc6\x99\x58\xbd\x64\xf8\x40\xd5\x63\xe1\x81\x26\xb5\xb5\x23\x36\xdf\x1b\xab\x17\x94\x2d\xa9\x1e\x11\x19\x14\x9e\x25\x42\xf3\x9d\x95\xd7\x19\x94\xf4\xfa\x7d\x81\xac\x59\x4e\x29\xaa\x35\x4f\x12\x85\x63\x54\x57\xba\xf4\xba\x38\x94\x7a\x64\xa0\xbd\x35\xe9\xce\x5b\x60\x1c\x5d\xd1\x2b\x93\xef\x35\x07\x14\x83\x51\x95\xda\xd2\x97\x50\xe4\x6d\x86\x08\xa4\xb2\xb9\x4d\x18\xd4\x01\x2c\x48\xb6\x28\xf5\xb6\x46\x14\x90\x0d\xbb\x2c\xf8\x05\x9e\xe9\xc9\x2f\x20\x8c\x77\xf8\x85\x85\x06\xcd\xaa\xaf\x4d\x25\xbc\xc0\xeb\x36\x9c\x94\xd4\x59\xbd\xc5\xbc\x00\x25\x05\xed\x5c\xea\x9d\x76\x12\x4f\x93\xe5\xb1\x1d\xa6\xd4\x79\xcd\xa7\x4d\x08\x7d\xb0\xba\xa8\xbe\x18\xe4\x68\xd2\xde\xfb\xa0\x91\xb3\xfa\x0d\xe4\x7a\x07\xf7\xd0\x09\xe5\x8f\x4c\x75\x7d\xa0\xe0\xa4\xd8\x7c\x5f\x06\x27\x43\x88\xcb\xfa\x2d\x8b\x76\x38\xc0\x7c\x22\xf7\x7d\xc1\xa3\x95\x41\xad\x94\x26\x03\x46\xdf\x17\x47\xd5\x0c\x58\x2b\xd0\x7a\x77\x67\x3d\x6b\x33\x02\x18\x8f\x8a\x14\xb0\xce\x5a\x81\xd6\xab\x3b\xc3\xdc\x25\x0e\xf7\x29\xc8\xa4\x62\xd6\x83\xc8\x9b\x62\xb4\x1f\xa4\x05\xbf\xbf\xa3\xad\x85\x3d\x08\x80\x40\x46\xed\x94\xe1\x54\xaf\x0e\x53\xd2\xe6\x63\x04\x61\x34\xd5\x73\x64\x48\xba\x23\x1d\x3a\xe3\x68\xac\xda\x77\x66\xa2\x3a\x48\xaa\xc3\x09\x56\xa4\x47\xf4\x13\x05\x3b\xcc\x7f\x59\xde\xda\x2e\xff\x7e\x92\x37\xb9\x7d\x82\x7d\xba\xcd\x95\xf3\x42\xc0\x05\xf6\x32\xf2\x76\xe6\x99\x5a\x08\xe8\xb0\x14\x15\xe3\xf1\x62\x3c\xae\x81\x82\xe9\xa8\x78\xf1\xaf\x15\x60\xac\x95\x40\xf1\x94\x17\xf9\x5c\x8b\x1a\xb4\xd8\x30\x36\x15\xc9\xef\xfd\xe2\xd2\x08\xea\x0b\x4b\x23\x49\xbb\x33\xd4\x3d\xbf\x7a\x3c\xf1\x82\x27\xc1\x73\xa8\xfa\x01\xa8\x25\x78\x44\x10\xa8\x14\x9f\x7e\x33\xa8\xc0\x93\x58\x12\x98\x57\x93\x4e\x37\x9b\x49\x3a\x9c\x6c\x25\xf9\x05\xae\x95\x86\x60\xb1\x40\xcb\x3a\xfd\xa6\x45\x4c\x88\x44\x6c\xfa\x8b\x20\x51\x12\xdb\x95\x0b\xfa\x4d\x18\x35\x49\x58\x9e\xaa\x99\xd7\xc3\x92\x6a\x9a\x03\xe2\x83\x5e\x47\xc0\x94\xd6\xd2\x66\xea\x82\xe1\xa9\xf8\x64\x44\x74\x90\xa5\xbb\xb1\x81\x7b\x6a\x0b\x8e\x0d\x49\xcc\xa2\x9d\xb1\xf1\xfd\xa1\x36\xb2\x7f\xb5\x6a\x63\x23\xf3\x94\xa8\x36\x36\x12\x9b\x70\x38\x60\x17\xb2\x44\x32\x90\xaf\xa9\x2b\x35\xcb\x08\xe4\x63\x32\xf3\x8c\x29\x15\xa5\x2e\xfb\xc4\x08\xeb\x8e\x49\xb5\x11\x23\x13\xfc\xfb\x40\x52\x45\x55\x7b\xc7\x4d\x44\x9a\x02\x5c\x6f\x25\xbb\xff\x13\x49\x49\x6e\x93\x6e\xb4\x06\x83\xb9\x97\x4e\x97\x1c\x71\xd1\x85\x66\x1d\x23\x72\xa2\x35\x24\x0c\x41\xc3\xa7\xd8\x88\x6b\x3b\xf8\x0b\x10\x4a\x76\x97\xe0\xcd\xd2\x56\x07\x2d\x43\xe9\xd5\xe5\xc0\x39\x28\x28\x23\x67\xa5\x59\xa3\xd6\xb3\xa9\x7f\xc0\x0e\x64\x3b\xfb\x58\x66\x20\x89\x86\x83\x19\x9a\x0e\x96\x1b\x89\x69\x0d\xea\x11\xee\xc1\xf2\xfa\x80\x32\xf4\xeb\x05\x58\xb3\x64\x36\x1d\x70\xf6\x15\x23\x1a\x62\x99\x6f\xb1\x2a\x23\x2d\x5a\x10\x5a\x12\x76\x64\xfe\x91\x3e\x34\x96\xd0\x26\x03\xca\xc8\x04\x48\x47\xfb\x40\xb9\x40\x1b\x79\x46\x5e\x77\xc4\x6b\x0a\xb0\x54\x95\x57\x0f\xf0\x1d\x15\xff\x0e\x6a\x2f\xee\x10\xf0\xbd\xda\x0f\x76\xa7\x56\x11\x1e\xbc\x22\xf9\x67\xc0\x2e\x65\xdb\xca\x58\x76\x29\x6d\xef\x51\x90\xce\x26\x26\x36\x20\xc2\x35\xaf\x2a\xea\x44\x3b\x52\x6e\x50\x82\x13\x6b\x1f\xb8\xc7\xaf\x14\x0f\x30\x48\x68\x86\x08\xfb\xb3\x78\x40\xee\x4f\x77\x80\xfc\x1f\x31\xa8\x41\x11\xcf\xc1\x0e\xa3\xd0\xa4\x24\x6b\xdf\xa8\x9c\xa3\x40\x66\xba\xa5\xe5\xff\x41\xa1\x4f\x82\xc9\xa8\x9c\xa3\x3b\xc0\x4d\x33\x12\x5b\x47\x05\xa3\x2f\xfe\x9e\x31\x97\x7e\x1f\x2c\xaa\xb8\xcd\xf4\x1e\xf7\x4f\x2d\xa8\xfb\x01\x18\xbf\x04\x9f\x51\xa9\xd3\x7a\x6f\x54\x5c\x73\xe1\xcd\x55\x17\x25\x69\x4e\x6d\xad\x93\xde\x40\xf6\xa5\x75\xbb\x01\xb7\xa4\x6b\xe5\x0d\xd4\x94\x2e\x12\x4c\x46\x5b\xeb\xe0\x1e\x17\x90\x82\xa1\x51\x21\x30\x29\x20\xb6\xcb\x05\xca\x46\xc7\x11\x2b\xd1\x65\x74\xa8\xb0\x06\x69\x8a\x90\xc9\xc7\xdd\x60\x2e\xa5\x57\xbe\xa3\x4e\xd7\xf0\xf7\xf4\xac\x9b\x35\x2f\x91\x52\x56\x9c\x81\x42\x28\xc5\x9c\x99\xc9\x97\x0e\x39\x18\x63\x9d\xf2\x9a\x15\x4a\xa1\x54\xb3\xda\x65\x42\xf3\xa0\x03\xd5\xe8\x0c\x34\x4d\x6a\xf6\x84\x8e\xc1\xea\x11\xfe\x60\x32\x63\xdd\x4a\x5c\xc6\x00\x4c\x32\x8a\x8e\x41\x72\x34\x7d\xa2\xda\x89\x8b\xe0\x8c\x1d\xa9\xeb\x3a\x81\xc7\x4e\x1d\x5a\x68\x5e\xe6\x32\x49\xef\x03\x52\xa7\x8b\x69\x0d\x56\xe8\xf3\xf9\xb3\x93\xfd\x0f\xf7\x40\xa5\xda\xf4\xb6\xaf\xf3\x40\x68\x60\xb9\x13\x47\x5a\x0c\x94\xa8\x2e\x12\xf2\xc6\xb1\xce\x03\xa1\xfe\x58\x50\xa9\xcf\x83\x81\xc6\xc2\xcb\x81\x04\x81\x57\x9b\xb7\xdf\xb9\xc7\x45\x4e\x7e\x30\x17\xcf\x0a\xea\x60\xb0\x95\x35\xd4\xc1\x4b\xff\xbb\x59\xc1\x12\x34\x87\x1f\x54\x40\xed\x36\x2d\x3b\x5e\x4d\x44\x68\x3b\x5f\x7e\x9c\x4b\x04\xd3\xb4\x4e\x4a\x37\x9a\xd5\x92\x34\xbd\x0b\x20\x58\x06\x7f\xb0\x8a\xee\xa9\xc7\x8b\xaa\xbf\xa7\x81\x32\xd4\x2e\x0e\x32\x20\x57\xba\xe8\xe5\xa0\xd0\x57\xfd\x3b\xf7\xbe\x59\xf2\xb2\xc9\x99\xea\x59\x52\xef\xc5\x8f\x90\x90\x18\x73\xfc\xd1\x21\x04\x13\x9b\x95\x1a\x5e\x34\xdd\x6c\x9e\x1d\x37\x39\x83\x66\x8c\xf2\x79\xcd\xd4\x74\x23\x21\xd3\x3b\x06\x51\x58\x69\x78\x15\x6e\x02\xfc\x7a\x83\xdc\x4a\x1a\xef\xa0\xb7\xd1\xbe\xe1\xc1\x0a\x7a\x8e\x03\x19\x2c\x1d\xe2\x38\x90\x81\xc0\x2d\xbb\x6c\x06\x6b\xe0\x39\xbc\x65\x30\x70\xcb\xbe\xe1\x01\x2b\x9d\x53\x90\x07\x02\xb3\x9c\x42\xbf\x6f\x1b\x7b\x88\x7a\x10\xb0\x32\x59\xed\x84\x80\x6b\x7f\x40\x11\xa8\xf8\x05\xf0\xf9\xe6\x17\x28\x3a\xea\x20\xd9\x97\xe8\x38\xfc\xe0\xe6\x98\x1f\xa0\x76\x5c\x42\xa2\xbb\x02\xcb\xce\x7b\xf6\x1c\x67\xb1\x87\x45\xf4\x5d\x0f\xd6\x7a\x55\x3d\x80\x12\xda\xfd\x05\x0e\xd0\xe6\x0f\x0e\xa6\xcf\x05\x3d\x00\xc5\x35\x77\xb0\x80\x32\x10\x10\xd9\x8d\x08\x38\x12\x2d\x24\xec\xcb\x4b\xa8\x13\x75\x8f\x6b\xb5\xfc\x00\x52\x80\x88\x7c\x5f\x26\x37\xd1\xc8\x4e\xe9\xd0\x31\x11\xb8\xbc\x3c\xd5\xe8\x1e\x58\xb5\x4d\x2c\x6a\x8f\x0b\x97\x7e\x80\x6d\x20\x39\x7d\x4f\x6b\x3d\x87\x1e\x20\x6b\xd6\x60\xc3\x0b\xe8\x48\xa1\x9d\x26\x32\xed\xd4\x1d\x69\x77\x76\x34\xed\x99\x51\x33\x3a\x33\xf7\x4c\xa0\x45\x62\x3b\x8a\x59\x58\x1a\xdb\x33\x6f\x88\x13\xcd\xed\xb4\x88\x39\x4a\x62\x67\xda\x9c\x6d\x1c\x7b\x41\xaa\x9e\x8e\x93\x9d\xe2\x8c\xe3\x09\x76\x0a\x27\x5e\xde\xba\x90\xaf\x69\x54\x86\x6a\x0c\x3f\x40\xf1\x45\xcf\xa3\xd2\x61\x16\xfd\x02\x28\xa4\x7b\x08\x10\x44\xf7\x07\x64\x41\x12\x0e\xf6\xe5\x72\x73\x97\x2c\xbd\x60\x4b\xfe\x4e\x69\xc1\xfe\xca\xbd\x51\x23\x37\xd5\xb5\x07\x64\x2a\xd4\x74\x5a\xd6\x74\x40\xec\xac\xde\x6b\x73\xf3\x3e\x16\xf2\x84\x7f\x54\xdb\xb5\xf9\x79\x67\xcc\xb4\xdd\x40\x3b\x0d\x46\x76\xba\xec\xf4\x7f\xd9\x2b\xb3\x0f\x4e\x5d\x60\x0e\x32\x33\xad\x28\xdc\x61\xcd\x16\xeb\x7d\xac\x79\xe8\x01\xbc\x5d\xcd\xf6\xe6\x7d\x27\x99\x48\x43\xdd\x77\xb2\x01\x59\x27\x76\x1a\x75\x6c\x55\xdc\x19\x79\xec\x28\x92\x9d\x09\x56\x56\xcb\xf7\x83\x39\xe6\xde\x1f\xc7\x62\x6f\xee\x74\x2d\x81\x26\xcf\x03\xd6\x21\x9e\xb8\xfe\x3f\x5b\x68\xdc\x51\x15\xb7\x0c\xff\x0e\xdd\xa0\xbb\x03\xa6\x0f\x7b\x03\xa1\x1c\x81\xcd\xe0\x3b\x82\x86\x8a\x4e\x8a\xfd\x5c\x4b\x28\xdc\xb0\xc4\x98\x35\xdb\x9d\x96\x9d\x1c\x7f\x14\xe1\xbd\xf3\x74\xf6\x06\x3d\xa1\xe7\x76\xb7\x51\x82\xda\x7b\x85\xd5\x08\x6c\x1c\xdb\x71\x47\x59\x35\x77\x85\x43\xcc\x41\x2b\x3b\x2d\x34\xc3\xbf\x13\x87\x3a\x49\xf7\x8b\xcb\xaf\x83\x69\xe7\x9d\xbb\x0e\x33\xd9\x61\x51\x19\xe6\xae\x74\x69\x99\x80\x56\x71\x00\xf3\x88\x9b\x30\x08\x46\x54\xa7\x2d\x3e\x12\x98\x90\xe5\xea\x30\x3b\x8f\x4f\x9b\xf0\x76\x3a\xb4\x6c\x6b\xdd\x9f\x35\x86\x3e\x61\x54\xb3\xab\xbd\xec\x88\xbe\x09\xb6\x6a\x1c\xdb\x9a\x47\xd3\x83\xc0\x37\xaa\x1e\x74\x76\xea\x07\xb8\xed\x42\xba\xe9\x01\x6f\x90\x1d\xde\xc7\x06\xf2\x12\xdb\x39\x10\xdc\x52\xb5\x7d\x0f\x1e\x54\xb6\xda\x1d\x81\xa6\x24\x49\x16\x07\x4e\xa6\x91\x5e\x6f\x5c\x7c\xa0\x37\xe2\x12\x14\x34\x08\x22\x56\xca\xeb\x05\xf2\xd3\xea\x17\x76\x40\x91\xd5\x86\xd1\xb7\xba\x4d\xde\x26\x9d\xe1\xa0\x2f\x47\x67\xf6\x01\xa3\x41\x15\x03\x38\x52\xe6\x34\x34\x64\xe2\x3c\xfd\x01\x77\x66\x74\x8f\x37\x5e\x10\x22\x33\xa9\x52\x20\x66\xea\x9f\xa2\xe3\x03\x17\x44\x55\xed\xf5\x03\xf9\x49\xbe\xc8\xe2\xc8\x6b\x67\xfb\x85\x45\xa6\xea\x92\x55\xfa\xfd\xc5\x54\xe3\x73\x15\x5d\x1f\x85\x4c\xcb\x30\x32\x32\x57\x32\xc0\x01\xb5\xbd\x8a\xee\x0f\x5c\xa6\x6a\xf7\xe4\x81\xeb\xf8\x9d\x2f\x70\x20\x19\xa9\x67\xf7\x87\x3b\x6b\x4d\x3c\x85\xba\xa1\x20\x5e\xc7\x5a\x74\x07\xc8\x87\x32\x92\x58\xf2\xc8\x68\xaf\xab\x38\xbc\xda\x04\x50\xeb\xc8\x38\xe0\xea\xf7\x49\xbe\xe2\x7e\x07\x94\x70\xdd\x94\x5f\x0e\x28\xdd\x3d\xfb\xf7\x05\x91\x70\xc8\x50\x14\x9b\xa9\x0f\xf8\x65\x7c\xcd\xd2\x81\xcc\x70\x5b\x2e\x0f\x54\x23\xb5\x65\xf1\x68\x04\x51\x53\x44\xa0\xaf\x6f\x0c\x2f\x07\x74\xee\xea\x55\x6b\xa0\x55\x83\xbc\xfc\x36\xcd\x10\x30\xa5\x45\xc6\xce\x03\xa1\xc0\xd5\x20\x76\x9e\x2c\x32\xf8\x1e\x48\x8e\x4a\xaf\x85\x41\x72\x54\x7d\xbd\x40\x72\x8e\xee\x12\xea\xa6\x78\xe4\xc1\xbb\xa1\xac\x8f\x1e\x08\x1e\x76\xed\x80\xa3\x23\x07\xff\xd5\xc6\x6d\x64\x92\x68\x8e\x4e\x9d\xaa\xf9\x85\x03\x36\x27\xe1\x09\x81\x2e\x2f\x46\xc3\x7b\x53\x9b\x41\xe4\xca\x48\x32\x38\x98\x4e\x25\x9e\x7b\x50\x89\xef\x72\xaf\x1e\x8c\x8c\xb1\x4f\xf8\x18\xf0\xaf\x9a\xd3\x0c\x5e\xf2\x16\x7f\x72\x37\x6b\x39\xe0\x66\xb2\xff\xff\x18\x2c\x20\xe9\x36\xca\xb7\x98\x33\x0e\x78\x1d\x5f\xf0\xa1\x6e\x9b\x37\x0b\x84\x8a\xd7\xba\x0f\xdc\xa5\x25\x0d\xff\x40\xc8\x8d\xa3\xa4\x0e\x88\x18\x55\x92\xed\xb1\xb3\x06\x9b\xde\xdf\x33\xde\xd7\x0a\xa1\xa4\x7f\xf7\x0a\xa0\x5a\x53\xf5\x12\x33\x53\xca\x9e\x88\x83\x16\x02\xbb\xfb\x0e\x58\x08\x1c\x9c\x7d\xec\x3c\x59\x65\x45\x3f\x68\x20\x30\x8b\x5a\x19\xe1\xfa\xe0\xa0\xe1\x52\x2b\x82\x62\x4b\xf6\x92\x1e\x48\xad\x4a\xaf\x36\xcd\x2a\xa6\x7d\xf8\xb1\x5c\x6b\xf4\x38\x78\x39\xb3\x01\xa0\x3e\xe0\xfd\x7b\x50\xd6\xce\xee\x12\x37\x1f\x4a\xdc\x39\x58\x40\x55\x16\xb0\x83\xf6\x04\x7b\x32\x0e\x78\xb2\x5e\x7c\xfb\xe4\x56\xd1\x32\x40\xbc\xb1\x67\xe3\x40\x41\x55\xa7\xec\x1d\x53\xda\x49\x4d\x32\xdb\x81\x54\xae\x6a\x2c\xa3\xe2\x7f\x35\xcb\x43\x41\x7f\x7b\x6b\x8e\x93\xab\xe0\x75\xe6\x9d\x57\x96\xdc\x8f\x25\xe0\xc8\xe8\x7e\x50\xc0\xf1\x0b\xb0\x36\x58\x06\x3c\x90\xd7\x65\xf3\xee\x81\x90\xa1\x6a\x1e\x77\x71\x1f\x18\x86\x6b\xad\x83\x26\x85\x3b\xaf\x1c\xb9\x70\x20\xf1\xeb\x75\xfa\xc1\x27\x65\x83\xf2\x01\x97\x94\xeb\xec\x1c\xbc\xf2\x4a\xda\xc9\xc1\xea\x4b\x2e\x3e\x76\xdc\x14\x2a\xdd\xc6\x79\xeb\x65\x82\x43\xaa\x1a\x42\x38\xa4\x5c\xf8\xe7\x80\x3c\xe5\x40\xe1\xe3\x46\xf9\x3e\x69\x96\xc7\xdd\xbf\xbf\x8a\x93\x58\x0e\x04\x0c\x95\xd7\x78\x10\x63\xe4\x1b\x3f\xe0\xbf\xda\xec\x00\x3d\xa6\xfc\x95\x5e\x47\xe3\xbd\x16\x41\x28\x78\xb8\x08\x1a\x91\x29\xee\x76\x49\x1d\xa8\x83\x6a\x93\xcf\xb1\x8c\x19\xd9\x0f\x50\x9a\xd7\x42\xca\xc3\x39\x79\x84\x0e\x9b\x91\x70\x80\x2a\xa8\xf1\xf5\xfd\xc5\x11\x85\x14\xc4\x17\xf9\xde\xc3\x03\xb6\x0e\x47\xd8\x9d\xa8\x7a\x6a\x8b\xf4\x89\xf2\x4a\xae\x0c\x74\xc2\xd4\xd1\x8a\xe6\x74\x6e\x60\x31\xc3\x6d\xac\x82\x8e\x95\x13\xc1\x45\xce\x17\x38\x37\x5e\x49\x59\xd4\xa6\x73\x27\xaa\x7d\xc0\x4b\xe8\x01\xb9\x7b\x8b\x3b\xbc\x30\x80\x3b\xbc\x11\xff\x14\xd4\xc6\x0d\x54\xe2\x50\x27\x82\xb1\x6d\x6a\x39\x57\x7d\x25\xad\xeb\x89\x60\x6c\x33\xd1\x13\x5e\xb9\xac\xab\x78\xcb\x39\xe5\xd5\xd8\x36\xf7\x40\x8b\x92\xd4\x9d\x13\xf2\x6a\xf2\x31\x73\xc2\x0f\x67\xb3\xc7\x89\xbb\x57\xcd\x45\xcf\xe5\x66\x13\x57\x3c\x23\x28\x25\x97\x9f\x9c\x3a\x67\xc4\x46\x90\xb7\xea\x5c\x56\x96\xe6\x07\xb0\x97\x8b\x5f\x9d\x91\x27\xb5\xf6\xe2\x89\xdb\x55\x7d\x5d\xeb\xc9\x60\x6c\xfb\x42\x4f\x56\x08\xf0\xd9\x7d\xb2\x42\x80\xe3\x96\x4f\x46\x67\x3b\x0e\xf9\xa4\xd9\xe5\xd5\xe6\xe1\xec\x95\x4f\xd4\x2c\x74\xfa\x9d\xf0\xc2\x59\x4b\x3f\x59\x44\xe0\xb5\x74\xbc\x82\xf5\xb5\x76\x2c\x1a\xe0\xd0\xe5\x33\xb1\xea\xaf\x26\x86\x22\x01\x76\xe4\x9d\x09\xc5\xba\x8c\x19\x94\x08\xb0\x56\x7f\x4e\x09\x3c\x59\xd1\x38\x59\x05\x55\x87\xc9\x99\xd7\x7d\x51\x6a\x53\xb2\x13\x66\x33\xef\xac\xd2\x1c\x51\xe4\xd4\xf1\x5d\x27\x8a\x9a\xea\xce\xfd\x72\x22\x5e\xdc\xa9\xfb\x27\x52\xed\x1c\x49\x7d\xa2\x1a\x80\x8b\x8b\x9d\xf0\xca\xd9\x4b\x77\x22\x5a\xbc\x1a\x21\xf0\xca\xf9\x38\x3e\xe1\x95\xd3\xa5\xff\xe5\x2c\xa0\x6d\xaf\x41\x81\xb8\x63\xd2\x5e\x4e\x35\x03\x50\x78\x7a\x9a\x74\xcb\xf1\xfd\xd5\xec\x17\x39\xcb\x5a\x77\x81\x08\x81\xdd\xaa\xfd\x49\xaf\x9a\xbd\xdc\x67\x45\xfd\x0a\x9d\xc7\x27\x8a\x09\x38\x50\xf3\xac\xf1\xfb\xab\x55\xe9\xda\xe7\xb2\x5b\x49\xbb\x3f\x11\x9f\xde\x4c\x37\xb8\x7f\x60\xbc\x06\xa0\xba\xd8\xfd\xe0\xc4\xac\x45\x25\x0c\xa4\xb2\xc1\xee\xac\x44\xab\x7b\xc4\xb2\x9b\x6c\x1a\x15\x69\x33\x19\xc6\x96\x9b\xfa\x51\xba\x49\x17\x84\x97\x13\x81\x55\x55\x36\xac\x13\x66\xaf\xda\xbd\xd0\xcb\xec\x65\xc6\xba\x44\x78\x2f\x55\xe3\x21\xef\x3e\x3b\xd9\x8c\x3b\x65\x32\x5e\xf1\x86\xe9\xb4\x4a\x88\xdd\x9f\xa8\xa5\x54\x75\xa4\x9d\x9d\x91\xc1\x46\xd5\x40\xee\xad\xb9\x2b\x2e\x04\xa8\xb2\x48\x9d\x83\x5b\xd0\x3d\x20\x5b\xaf\x56\x7f\xb0\xa0\xf4\x17\x6b\x08\x41\xc9\xd2\x48\x3e\x47\x4f\xde\xd4\x6f\x5e\xb7\xec\x62\x26\xda\x9d\x52\xba\xcf\x00\x16\xed\x37\x37\xda\x69\x20\x30\xd9\xef\xbc\x46\x4d\xf3\x46\x38\x95\x3d\x11\xe7\x4e\xf4\x7b\xfd\x76\xfa\xde\xb4\xc0\xf0\x84\x35\x4f\x8b\x77\x55\xd9\x53\x7b\x1e\x01\xe7\xa4\x3e\x38\x16\x62\xf4\x05\xe5\x5a\xe3\x81\x97\x57\xd9\x30\x77\x2e\xc3\x9c\x89\xec\x20\xcd\xb8\x0d\x29\x50\xf6\x85\x13\x86\xbb\xf2\xea\x91\x7e\x31\x4d\xf2\xe0\x1c\x0c\x22\x17\xdb\xbf\x83\xa8\xa5\x13\x9e\x08\xa6\xaa\x32\x1e\x9c\x94\x3a\xcd\xab\x58\x40\xc0\x9e\xdd\xf3\x24\x8f\xef\x3f\x72\x0f\x9d\xbc\x56\xb5\xfb\xdc\x5c\x0e\x2d\x89\xc1\xe7\xb5\x08\x58\x48\x44\x5c\x53\x6d\xfe\x62\xed\x4b\x81\x88\xa0\x71\x97\x04\x3c\x79\x0b\xaa\x24\xae\xf3\x5e\x8a\xb2\x7a\x40\x82\x9b\xe3\x24\xce\x9b\x23\x68\x11\x6e\x28\xce\xe6\x0c\xa8\x4a\x54\xcd\x4a\x6e\x1e\x52\x46\xea\x8d\x0a\xfd\xa6\xb4\x29\xc2\xa5\x17\x83\xe5\xfd\x4c\x76\xd2\x9e\x0f\x92\x65\xbc\xc3\xa6\x84\x96\x7c\x87\xf7\x89\xa8\xa3\x6a\xce\xf1\x1c\x88\xb0\x14\x04\x0f\x21\xfa\xe0\xe8\xda\x68\xc8\x12\x3f\xbd\x36\x4a\xe2\xa2\x8b\x8b\x57\x24\x05\x7f\x01\xba\x10\x0e\xae\x8d\xb6\x80\xec\x17\x56\xe0\xc3\xa7\xcd\x94\xff\x22\x5a\xbe\xe0\x5b\xaa\x52\x88\xae\xe5\x5b\x12\x69\x5e\xa8\x09\x50\xbb\x7b\x00\x69\xe9\x58\xbb\x56\x9c\x52\x51\x1b\xa4\x26\x4a\xb8\x10\xb7\xe4\xcb\x2a\x2f\x44\x7b\xfb\x06\xde\x0b\x9e\xa8\x3a\x3c\x1e\xa7\xa4\x19\x04\x6e\xcf\xea\x07\x38\x07\xa5\x45\x5e\x71\x4d\x49\x53\xa0\x8c\x24\x8b\xf0\xc5\x7b\x47\x6d\x4a\xbb\x56\x98\xd2\xab\x0b\x66\x14\x78\xd0\x88\x3c\x8d\xec\x2f\x18\x31\xe3\xdf\xe9\x86\xd0\x8e\xbf\x12\xc5\x7b\xed\xf0\x0b\x16\xc1\xe1\x54\xa0\x2b\xad\x2d\x27\xb0\xd2\xda\x01\x5a\x0a\x46\xfe\xd8\xb2\x73\xe1\x8e\x78\xab\x7e\x57\xe6\xe9\xe8\xc5\xca\x0b\x6e\x8d\xca\x9b\x41\x1d\x05\x76\x2d\x6f\x94\x76\xfe\xc5\xa2\x44\x76\x14\x5f\x08\xe9\x76\xa5\xf3\x0b\x45\x8a\x7c\x24\x5f\x14\x43\x64\x8a\xbe\xa6\xd8\x91\x86\x69\xb4\x50\x63\x6e\x7e\x01\xe8\x97\x2d\xfb\x62\x30\x50\xf6\x07\x94\xec\x9a\x5f\xa0\x20\x92\xdc\x03\x40\xd0\x3e\xbb\x2a\x91\xeb\x05\xac\x8b\x48\x35\x6f\x56\x89\xb4\xdc\x70\xa1\xe6\xa3\xcd\x6e\x57\xe5\x71\x69\xdc\x52\x4e\x18\x7e\x01\x11\x43\x52\xa2\x2f\x04\xcf\x6c\x46\xf5\x12\x0b\x0c\x35\x0d\x7b\xda\xcc\x17\xc5\x02\x59\xba\x2f\x96\x11\x77\x8a\xd4\xc5\x22\x46\x4e\x16\xba\x56\xd1\x22\x9d\xe9\x17\x0a\x8b\x9b\xe5\x5d\xcc\x16\x73\x12\xd5\x85\x12\x8d\x8e\xaf\xbe\x50\xa4\xc8\xd5\x6d\xae\x25\x25\x34\x7f\x40\x91\xce\xbb\x11\x55\x89\x7c\x5f\xee\x45\xa9\xc1\x78\x43\x41\x45\x57\xa5\xbf\x06\x19\xbb\xb7\xe7\x72\xa7\x79\x71\x06\x37\x93\x37\x34\xa3\x65\x5e\xbb\x6b\xf0\x08\x7f\x0d\x42\xa1\xcd\x3c\x81\x57\xb0\xbf\xf6\x1f\xe2\x63\xa6\xea\xf9\x83\xd3\xe8\x1a\x0b\xb1\x9a\xf5\x4e\x6d\xc3\x34\xbc\x13\xb1\x6e\xd3\x27\x25\x21\xe2\xda\xb9\x6f\x24\xdc\x5f\xfb\x82\x48\x88\x40\x01\x45\x2b\x82\x17\x62\xb2\x7d\x5b\xc6\xc5\xba\x41\xf6\x8f\x5e\x70\xdf\x15\x3b\xcc\x2f\xd6\x1a\xb7\x23\xf8\x3a\xb8\x7a\x02\x02\x51\xd8\x9b\xac\xd7\x17\x0e\xf9\x16\xdc\x23\x91\xa2\x69\x9e\x6b\x29\xd4\xc1\x49\x3b\x8d\xb9\x3d\x8c\x4b\x4d\xfa\xf1\x75\x32\x58\xaa\xf8\x01\xac\xac\x3e\x0d\x70\x35\x4f\x93\x4e\x75\x9d\x3c\x23\xbd\xfc\x17\xec\x65\x26\x59\x56\x11\xb2\xfd\xeb\xba\x80\x6a\x4f\x02\x11\xd3\x2d\xf8\xf7\x8a\xb6\xb0\xc2\xf4\x33\x8b\xa5\xd7\xc5\xa4\x3b\xf3\x8f\x8b\xee\x59\x13\x18\xae\x9b\xf4\xa5\x46\x17\xac\x4d\xaf\xa5\xb8\x58\x8f\x5c\x68\x59\xee\x39\xb3\x30\xb8\xe7\xec\x6f\xbf\x10\xef\x9c\x5c\x7e\xf0\x42\x72\xbd\xaf\xfc\xbe\xee\xb5\x74\x1a\x02\x0e\xbc\x61\x8a\xbe\x59\x0a\x50\x68\x61\x46\x9a\x89\x01\xb2\x8a\xa5\x9f\x8b\x55\x8a\xec\x76\xbd\x6e\xce\xc9\x6d\x04\xd8\x1b\x82\x75\x77\xba\x06\x78\x88\x66\xb7\x51\x80\xd6\x33\x98\xb2\x4a\xb2\xe5\xf4\xc2\xa5\x3a\xce\x1c\xbb\x1e\x02\xe8\xdf\x17\xd6\x35\xc3\x67\x31\x65\x7f\x41\x1b\x9f\x47\xb8\x10\xaf\x28\x88\x1f\x56\x69\x31\x44\xac\x87\xac\x75\xbc\x97\x77\x51\x2c\xf7\x86\x7d\xc9\xd9\x6b\x37\xb2\xfb\x1d\xa4\x7d\xe3\x7e\x48\xc7\x49\xdc\x1b\x65\x4a\xb1\x8d\x1b\xd2\x4f\x8b\xee\x00\xd4\x2c\xc6\x73\x6f\x54\x58\xc4\x07\x6e\x08\x3b\x2d\xba\xbd\xb8\x5b\xd7\x03\xde\xb4\xad\x1e\x50\xe0\xe8\x95\xdd\x76\x43\x7a\x69\x52\xa2\x6f\x48\x2f\x8e\x6c\xbd\x03\x41\xd2\xa4\xa7\xf4\x92\x36\x11\xca\xbd\xaa\x6f\x8b\x98\x6f\xe6\xdf\x9b\xdc\x6f\x5c\x4a\x63\x0f\xe9\xcd\xfb\x1d\x9d\xe6\x7a\x47\x44\x9f\x05\xbf\x30\x67\x69\x5d\xe2\x46\x48\xf4\x2b\x9f\xee\x46\xf1\x6c\xdf\xe9\x77\xc3\x18\x63\x87\xf7\xcd\x3b\x6a\x9c\xd5\x7a\x27\x5c\xaf\xb8\xf9\x85\xc2\x17\xd4\x63\xc2\xcd\x0e\xa2\xa6\x3b\xc1\x57\xd1\x3d\x02\x6d\xd4\x5e\x29\x78\x37\x6d\x4b\xb9\xe1\xcc\x6c\x32\x3d\xdc\xb8\xc0\xb1\xc9\xb6\x73\x67\xdc\x54\x6d\x90\x33\x58\xa5\xce\xd2\x9b\x89\x6a\x76\xd2\xdf\xcb\xfb\xa9\x3d\x7e\x67\x68\x79\xa6\x0d\x88\x31\xce\xac\xbd\x71\x81\x63\x93\x18\x73\xc3\x3a\xe2\xec\xfe\xbb\x50\xf4\x1e\x3f\x32\xcb\xdd\x85\xf0\x09\x83\x65\xd1\x8d\xe0\x2b\xf4\x62\x67\x3f\xa0\x6d\xd3\xa4\x57\x58\xc8\xa6\x18\xa2\x07\x7d\xea\x8b\x29\x05\x25\x87\xda\xde\x88\xf9\x69\x12\x1f\xef\x8a\xed\xe3\x0e\x2b\x67\x28\x8c\xd4\x45\x48\xfe\x80\x86\x3e\xc9\x3c\x77\x5b\xb4\xa8\x65\xc2\xd5\x8a\xaf\x75\x6e\x1c\xc2\x6d\x70\x19\xd3\x6a\xe3\x01\x24\xf5\xe3\xc6\xf5\x2c\x76\x82\xdd\x08\x20\xb6\x87\xf9\x86\x73\xd3\x55\x18\x6f\xe4\xe0\x8f\xcd\xbf\x23\x69\xa1\xbb\xbf\x0b\x4e\x2c\xbf\x7f\x63\xc7\xfb\x77\xe0\xcc\x94\xdc\xe9\x58\x90\x3c\x7c\x4f\x99\x2b\x6d\x9b\xdb\x10\xb1\x74\x7c\xdd\x28\x9b\xe4\x68\xae\x7b\x4a\x58\xc9\xee\xa0\xbb\xd3\xba\x2b\x24\xf7\xb5\xae\x7e\x80\x13\xd3\x41\x4f\x77\x87\x4d\xda\xcb\x04\xaf\xe3\xa6\xa3\xe1\x1e\xac\xe3\xae\x11\x07\x62\xe1\xcd\xa3\x28\x2c\x6d\xee\x90\x37\xbb\x74\x77\x48\x8f\x91\xda\x48\xc5\xf7\x3d\xf3\xf7\x1e\x09\x91\x90\x02\xcf\xe0\xeb\x62\xdd\x7b\x87\xb9\xc2\x51\x1b\xf7\x0e\x45\x56\x9a\xf0\x8d\xe8\xe2\xcd\xa4\xb5\x2f\xf2\x16\xde\x61\x74\x79\x25\x86\xde\x3b\x2f\x99\xd5\x42\xd1\xbb\xf8\x62\x6b\x3b\x18\xa3\x0e\xa0\x1b\x46\x97\xf0\xda\x31\x2b\x98\x58\xc7\xf8\x0d\xa3\x8a\x9d\x46\xf7\x01\xef\x82\x59\x2d\xbd\x85\xe6\xfe\x47\x07\xed\xf8\xfd\x41\x10\x34\xed\x83\x0a\x98\x84\xbe\x1b\xb7\x25\x5a\x0f\xb9\x51\x87\xb1\x39\x54\xe8\x46\x7d\xa3\xe6\x0d\x03\xf9\x6a\xf3\xb6\x3f\x21\xc1\x15\xb7\x71\x66\x3a\xd4\xfc\x46\x8e\x5a\x70\xda\xe6\x7d\x2e\x72\x71\x97\xa4\x60\x21\xf2\xe2\x6a\x0a\xd3\x0c\x25\x76\xbc\xd5\x4d\xd3\x8b\xa3\x91\xee\x6b\xc5\xfe\xa9\x0d\x89\xcb\x14\x7a\x2d\x3c\x08\x86\x6b\x01\xe5\x31\x20\x05\x1a\x2f\xd7\x02\xd2\x40\xe1\x8a\x56\x7f\x80\x02\xd4\x36\x70\xde\x37\xce\x59\x59\x4e\x6e\xb8\xef\x9a\xcc\x82\x37\xe2\xa1\x6c\xc3\xbb\x79\x75\xa1\x5d\x94\x37\xf2\xc7\x5e\x77\x3d\xdf\x37\x64\x61\xef\x12\xb8\xd7\x7c\xdb\xc3\xfd\x70\x44\x75\x00\xef\x9a\x0b\xf2\xdf\x0f\x98\xa1\xec\xa9\x37\x82\xa1\xec\x4d\xbf\x99\x40\x66\x46\xf5\x60\xa5\xab\xdb\xcc\x5c\xf5\x14\x90\xee\xdf\x9b\x5f\x80\x35\xdf\x5b\xe4\x41\x15\x05\xcf\x88\xde\x38\x07\xfc\xdc\x28\x09\xd9\xaa\x3b\xa4\xfb\xe1\xd3\x7e\x36\xda\xd8\x7e\x76\x1b\xc4\x03\xdf\x9d\xdd\xca\xcf\x46\x4f\x97\xb6\xf0\xb3\x01\x21\x92\xf4\x1f\x94\x4e\xda\x74\xda\x3c\xf0\xd5\xbd\x2e\xc0\x7c\x50\x4b\xe9\x95\x30\xfc\x30\xf6\xcb\x11\x48\x0f\x22\x9b\xed\xda\x7e\x70\x7b\x8a\xb9\xc8\x43\xf1\x4c\x26\x91\x07\xb1\x60\xdb\xf0\xef\x93\xcc\x1c\xec\xff\xb0\x1a\xb6\x43\xd8\x1e\xb8\xf3\x5c\x0b\xec\x41\x35\x6c\xd7\x64\x78\x28\xce\xc9\xa2\xf2\x30\x0c\xda\x73\x0e\x48\xf2\xdf\xfc\x3d\x42\xe0\x25\xf7\x3f\x08\x46\x73\x35\xb2\x07\x37\x20\x5a\xc5\x7f\x02\x4f\x2f\x01\xb8\x2e\x40\xd4\x56\x7b\x50\xa9\x60\x14\x0f\x70\x13\x45\x86\xe8\x01\x59\x69\x46\x31\x40\x7d\xd2\xef\x71\x6d\x5e\x0d\x11\x69\x0f\x2f\x7e\x40\x66\xed\x65\xc0\x05\xe1\xf6\x37\x3e\xac\x5c\x20\xc6\xfa\xac\x8a\xdf\x9a\x54\x24\xaf\x96\xa0\xfe\xe0\x32\x16\xe7\xa6\x3c\x11\xbb\xbd\x79\x00\xee\xf6\xe0\x11\xc0\x92\x64\x6c\x79\x18\x43\xfd\x02\x9a\xce\x3c\x09\xc1\x4f\x42\xb2\x8a\xf8\xc7\x93\xe8\xc9\xd6\xac\xe1\xca\x7b\xa5\xa8\x3e\x48\xb1\xb3\x7e\xfe\x20\xc5\xae\x35\xb7\x91\xea\x6b\x69\xee\x41\x3d\xcd\x57\x86\xf2\x03\x67\x9f\x6d\x0e\x4f\xa2\x21\x54\x0c\xe3\x41\x3d\xf0\x91\x3d\x24\x43\x10\x8c\x16\xb8\xfb\x5e\x49\xd2\x0f\xfc\x7d\xce\x51\x7d\xf2\x5a\x09\x75\x91\x71\x3b\xbc\xc9\x87\x05\xa2\x1c\x50\xf7\x64\x4e\x43\x40\xc1\xf6\x66\x87\xfa\x03\x53\x9b\xf3\x29\x9f\xbc\x0e\x24\xbf\x00\x1e\x61\x82\x2f\x0b\x46\x61\xba\x10\x46\xa1\xa1\xcc\x13\xcc\x97\xc5\x3f\xbc\xc6\xd0\x51\x3f\xcf\x12\x4c\xa5\xc0\x3c\x05\xd4\xd0\xdd\x26\xe7\x35\x66\x61\x8c\x6b\xd5\x30\x80\x5c\x64\x8e\x7d\x2a\xa9\xc1\x78\x43\xcd\x29\xc7\x70\x3f\xb8\xd2\xc5\xf9\xf8\x0f\x7c\x7c\xcd\x61\x84\x0f\xa2\xf8\x5e\x59\xd5\x0f\x53\xe9\xc6\xf0\x18\xd0\x04\xbb\xbf\x80\x79\xb6\xb8\xcd\x3b\x15\x34\x4b\xd4\x9c\xb2\xa6\xf9\xa0\xba\xc2\xe6\x85\xa9\x10\x99\xbc\xf6\x15\x73\x32\xda\x98\x39\xf7\xc2\x33\x24\x63\xfb\xe7\x9e\xc6\xdb\xc1\x04\x20\x04\xe5\xe6\x6b\xfb\x1f\x58\x07\x9b\xe9\x11\xf7\xbb\xf8\xa6\xa8\x87\xe5\x19\x1c\x61\xf7\x34\x84\x32\x49\x7d\x7e\xda\xce\x17\xdc\x03\x28\x3c\xfb\x83\x45\xe1\x5a\xa8\x46\xe6\x63\xf6\x49\x61\x58\x02\xd0\x03\x61\xd8\xf9\x34\x0f\xaa\x55\x39\x5c\xe3\xa1\xf9\x51\x0a\xc6\xd3\x39\x87\xf6\xa3\x03\x08\x21\x83\xdd\x3c\x81\x11\x83\xe6\xdd\x34\x55\x4a\x61\x7b\x50\xf8\xaa\x0d\x03\x33\x48\x04\x9a\x1f\xaa\x8d\x36\x9f\x16\xb0\x5c\x0e\xaf\x39\x2f\x3c\x97\x98\xf3\x20\x40\x30\x38\x73\xfe\x81\x03\xb4\x39\x1a\xf4\x41\xaa\x80\xa3\x96\x1e\x38\x40\x9b\x94\xd4\x07\x99\x03\x21\xbb\x9d\x70\xed\xa9\x3a\x64\xe2\x80\x23\xe4\x1e\x88\xea\xbe\x01\xed\x19\x9c\x93\x3f\xc0\xde\x1a\x1e\xf0\xe4\x1c\xfd\x60\xc1\x2c\x2c\xa1\xba\xba\x6d\x26\x0f\x65\x79\x13\x32\xfc\xa9\xae\xfa\xf8\xec\x8b\xee\xd4\xe3\xbe\xf6\x92\xbf\xe0\x31\x6e\xb4\xec\x04\x52\x43\xee\x03\xaa\xb6\x7f\x87\x86\xb3\xb9\x47\x32\x04\xe9\xee\xcf\xce\x28\x00\x1f\xb3\x3b\x76\xcf\xf0\x0b\x0c\xac\x70\xfb\x21\x08\x1a\x12\xe5\x29\x1c\x2c\xfa\x1c\x38\xa7\x4d\x98\x90\xf4\x93\x8b\x26\x3c\x07\xf7\xbb\x56\xe6\x58\x5c\x4c\x43\x20\x10\x30\x78\xa9\x61\x3a\xf5\xc5\xc3\x0f\x44\x7d\x87\x63\x3f\x30\x9d\xda\x0d\xfd\x9c\x44\x9b\xcc\x03\x0f\xc2\xf8\x6c\x90\x7e\xce\xc5\xdb\xfd\x80\x1b\x58\x06\x84\x87\xb5\x4e\x1d\x35\xf7\x40\xf8\x6f\xf6\x41\x3c\x34\xb6\x76\xb7\x2f\x04\xa5\xa9\x07\x08\xea\xbe\xcf\xf5\x81\x0f\xd5\x35\x40\x1f\xe4\x1d\xa4\x57\xfb\xc2\xfb\x02\xe9\x42\xa4\x91\x44\xd4\x07\x52\xb9\x75\xdb\x07\x1e\xd5\x57\x95\x85\x87\x75\x1e\x1c\x5b\xfc\x20\xac\xce\xd7\xcf\x3d\xf7\x9a\xa4\xf0\x76\xaf\x49\xfa\x0d\xda\x10\xcc\x09\x6f\xca\xc1\x5a\x19\xde\x18\x5e\x92\x5f\xb8\xd8\x85\x70\x0f\x51\xbe\x7b\x2d\x20\xca\x3b\xe3\xf7\x61\xda\x9f\xc3\xce\x1e\x5e\x06\xe3\xd0\xd5\x07\x91\x72\x0e\xce\x7b\x78\x39\x8c\x43\x9a\x1e\x48\xf3\xbe\x1c\xeb\x79\xc8\x5c\x65\x77\x78\xa6\xf4\x9e\xfb\xab\x07\xee\x54\x4f\x9c\x95\x4a\x7d\x00\xa0\x52\xa9\xae\x11\xa8\x1b\x2b\x8f\xea\xea\xa2\xba\xb1\xfa\xba\x42\x61\xea\xb6\x5c\xb3\xd5\x0f\xe6\x5e\x57\x16\x7d\xdd\x70\xf7\x8b\x22\xb7\xea\x86\x8a\x11\xaa\x29\x5c\xb7\x00\xf6\x54\x34\x24\x2f\xf8\x56\x85\x87\xba\x05\x1e\xf6\xd5\x0f\x0a\x7a\x10\x4c\x81\x39\x5f\x45\x6d\xf2\x86\xcf\xda\xd4\x2d\xf0\x46\xaf\xea\x31\x07\x7a\x70\x8f\xd4\xf3\x93\xbb\x04\xe2\x82\x7b\x80\x8c\x1f\x3c\x04\x82\x9a\x3e\x67\x52\xdd\x58\xa9\xab\x64\x8d\x00\xfb\xa7\xea\xa7\xd6\x2d\x72\xf5\xdd\x5e\x34\xfa\x93\xa0\xec\xba\xf1\xae\x42\xe9\x41\x75\x43\xea\x87\x1c\xb7\x75\x43\xa9\x52\x55\x6a\xaa\x1b\x0a\x52\x54\xe3\x10\xd2\xb2\xd2\xd1\xeb\x16\x89\x00\xc1\x8f\xe0\x38\x65\x9c\xd6\x2d\x72\xfe\x5a\x14\x56\x05\x53\xf4\x50\xdd\x90\x80\x28\xbf\x51\xdd\x70\x41\x78\x37\x82\x70\x6f\xa1\x4b\x91\xd4\x0d\xc6\xd6\xaa\x92\x6c\x75\x9b\xc2\x6f\xee\x51\x20\x66\x0a\x5c\x59\x84\x03\x41\x55\xf5\x5c\xea\x86\x8b\x06\x7b\x72\x3b\xa1\xed\x0e\x80\x83\xa8\x11\x97\xd3\xb8\xba\x43\x6e\xfb\x2c\x20\x79\x75\x60\x32\xed\x65\xc2\x24\x34\xc1\x89\xbc\x25\xad\x2a\x73\x4f\x14\x53\x5c\x37\xdc\xc7\xdd\xdd\x86\x24\x2b\x9f\x4d\xdd\xe8\x45\x56\xf4\x5e\xdd\x90\x8c\x32\xbc\x10\xcc\x45\x51\xa5\xa8\xba\xc1\x8d\x9c\x4d\xbb\x10\x64\xfb\xab\x4d\x10\x05\x12\x4b\x42\x14\x4d\xb2\x70\xbb\xe9\xfd\xca\xed\xa6\x95\xad\x8b\x5b\x6a\x40\xc8\xb1\xca\x04\xae\x5b\x25\x5a\xfd\x01\x98\xa7\x71\x30\xa5\xd8\x38\x0c\x70\x25\x8b\x30\x03\x40\x45\x08\xdd\x7e\x57\x37\xd6\x04\xf3\x0c\x2a\x67\x20\x88\x51\x93\xbe\x7b\xfb\xc2\x85\xad\xbc\x8f\xba\xb1\x26\xfd\x26\x94\x41\x8a\x55\x65\x84\xba\xb1\x6a\x6a\x53\xff\x6d\xe1\x5c\x10\x36\x14\x07\x34\xbf\x80\xd0\xfa\xee\x80\x9a\x61\xd1\x0c\x1a\x4f\x76\x33\x39\x54\x77\xe8\x66\x0f\x9d\xbc\xbb\x88\xf6\x20\x53\xf6\xd7\x07\x40\x9a\xd9\x41\x47\x48\x4d\xd1\x90\x4c\x34\x51\x28\x79\xdd\x3a\x69\xb3\x88\xba\x71\xe9\xa0\x0a\x01\xd7\x8d\x77\x0e\x7a\xc7\x77\x60\x2d\x8b\x74\x3b\x72\xbd\xba\xb0\x86\xf2\x10\xdd\xfb\x6f\x19\x70\x4d\x28\xbc\x53\xb0\x18\x26\xdc\x29\xd8\x4d\xaa\x74\x89\x17\x0f\x49\x97\xf8\x26\x90\x78\xe9\x60\x35\xa9\x8c\x35\x09\xe1\x09\x19\xa7\xdd\x6c\x68\x10\x68\x4d\x72\xdd\xde\x5d\x0d\x03\x6d\x25\xaf\x2f\x98\xe8\xac\x1e\xa7\xe4\x98\x5e\xa7\xcd\xb2\x02\x9b\x1c\x11\x79\x57\xcc\x56\x96\xe4\xe8\xa5\xd8\x69\x94\x7b\x75\x01\x9b\x59\x13\x0c\x3b\xc8\xe3\x35\x24\x0d\x44\x66\x34\x10\x2d\x93\x4f\x30\x58\x89\x83\xa9\xe3\xa0\x3a\xeb\x69\x32\x07\xb6\x9a\x75\x1d\x11\x4a\x8f\x86\x44\x85\xd6\x6e\x12\x47\x4d\xfc\x6e\x62\x38\x70\xe2\x19\xaf\x07\x0a\x75\x98\x82\x59\x90\xa2\xf8\x88\x44\x46\x49\x37\x45\xf3\xc6\xc1\xf4\x7a\x01\x75\x33\xda\x4f\x8a\xc7\xd5\x0d\x1e\xfa\x6e\x4a\x39\xa8\x92\x79\x8b\xb2\x2e\x5a\xf1\x01\x7b\x92\xad\xbd\x1e\xa0\x8e\x9f\xa5\x00\x54\xab\xe8\xa6\xad\x13\x3a\x87\x91\x7e\x2e\xa4\x6b\x4c\x46\xf2\xbd\x8e\x07\x14\x35\x53\xa9\xcb\xba\xc1\x23\xdf\xbd\xa3\xae\x25\x36\x68\x88\x8b\x7b\x50\x3b\xe2\x22\x8e\xdc\xa6\x01\xd9\x8c\x0a\xf5\xf0\x37\xe3\xec\x5a\x20\x08\x26\x58\x98\x15\x8e\x58\xb7\x6b\x91\xb3\x61\xa2\xe8\xea\x36\x2a\xca\x9a\x55\xdd\x94\x11\xd5\x01\x0c\xcc\xdd\x9c\xeb\x5e\x78\x55\x07\xcb\x83\x2f\x34\x2e\x0b\x73\xd5\x24\x6e\x10\xaf\xb9\x3b\x45\xdd\xe6\xdf\xd7\xd2\xa9\x47\x5e\x8f\x6d\xb6\x40\x31\xb5\x69\x84\x07\xc1\x5a\xde\x2d\x0f\x21\x10\xc8\xb0\x40\xbf\x76\xf0\xb3\x98\x82\x46\xa4\x0b\xfe\x75\x04\x3e\xa8\xf0\xe5\x13\x0c\xe1\x84\xaf\x75\xa2\xd0\x6a\xd1\x89\x05\x66\xcb\xeb\x01\xed\x49\x12\x25\x02\xea\xe9\xfb\xa0\x0f\xc8\xef\x95\x2f\xa1\x06\x5e\xa8\xad\x5a\x39\x35\xc0\x6a\xec\x75\x0a\x1b\xa8\xb1\xfa\x03\xee\xa7\xe6\x07\x70\xba\x88\xdb\x06\x14\x56\x33\x8f\x08\x1b\xf5\x85\x17\x08\x04\x5a\xa7\x60\xd8\xb8\xf4\xfa\x82\x11\x8b\x4a\x94\xa9\x21\xc0\x86\x6a\x18\x28\xe5\x0a\xf1\x21\x30\x51\x40\x98\x0e\x61\x01\x29\x34\x04\x12\x70\xf6\x27\x30\xcc\x79\xda\xc8\x39\x0e\xc9\x6d\xaa\x03\xc5\x0f\x48\x1d\xd9\x40\x3c\xe0\xa6\x9a\x45\x44\x9c\x8c\xb8\x6d\xa0\x58\x2b\xf2\x0b\x71\x61\x5a\x78\x88\xa0\x47\x51\x7c\x40\x9a\x46\x17\xb3\x0d\x2b\x2b\xa3\xfa\x05\xc6\xf2\xbc\xba\x84\x38\x20\x92\x0f\x09\x20\x78\xf1\x13\xcf\x31\x77\x89\x7b\x8f\xba\x28\x34\x30\xe5\xa2\x18\x86\x95\x72\xe1\xe5\x4f\xd0\xc3\xc5\xac\x42\xa2\x41\xdc\x8b\x05\x43\x6d\xab\xd9\x6f\x00\xa8\x26\x3c\xa0\x44\x6d\xef\xfe\x1d\x4a\x90\xd1\x90\x20\x95\x69\x1b\x06\x5e\xd3\xa8\x0c\x9d\x1a\x28\xdc\x76\xcd\x2a\x73\x12\xfe\x7d\x4d\xc2\x3d\xd0\x89\x27\x66\x14\x32\x31\xed\x1e\x70\xeb\xbc\xd7\x36\xaf\x49\x09\x66\x0a\xbb\x9e\x24\x62\x0d\xbc\xf3\x03\x2f\xce\xee\x1e\x91\xa7\x80\xbf\x47\xcd\x6e\x9d\x0a\x01\x89\x19\x7d\xa8\x3f\x84\x1e\xbc\x68\x09\x16\x56\x25\xdb\xd6\x50\x18\x49\x58\x7f\x52\x3f\xae\x06\xca\xb5\x43\xa3\xf1\xb2\x24\xa5\x0c\xd5\x50\x51\xc5\xcf\xe0\x54\x0a\x02\xc2\x47\x5d\x47\x92\xe0\x47\x56\x75\x1f\x7e\x01\x17\xf8\x05\xff\x0e\xc6\x15\x3d\x00\xf8\xd2\x10\x7e\x2a\xb7\xb8\x29\x13\x85\xca\x86\x29\xb7\x12\x64\x11\x05\x04\x55\xf3\xe2\x80\x9c\xea\x3e\xb4\xc6\xac\x63\x56\x4c\xb9\xb0\xb6\xf6\xae\x29\x35\x10\xc5\xf0\xef\x9c\x81\x3b\xac\x98\x81\xdb\x20\x89\xae\x19\x2c\xeb\xac\xc9\x94\x71\x09\xc9\x6b\xde\x16\x47\xf0\x10\xe4\xb5\xe6\x84\x0d\x93\x0c\x6e\x33\xef\xcb\x8c\x0e\x95\xcf\x5e\xbc\x14\x16\x52\x39\x72\x6a\x80\x01\x74\x48\x73\x0c\xbc\x6e\x49\xf6\xa3\x1a\x78\x5b\xb6\x65\xe3\x00\xd1\xd5\xca\x78\x40\x30\xe7\x26\x69\x2a\xc0\xe0\x39\x36\xff\x9e\xd1\xf6\xef\x15\x6d\x4d\x92\x81\x9b\xd5\x5b\x63\x20\xef\xd3\xcc\x1b\x06\xce\x3e\x44\x09\x83\x20\xfb\xf7\xb5\xf2\x42\xf4\x58\x58\xf2\x90\xd4\x20\x24\xc1\x85\x9d\xda\x6d\x57\x9f\x3b\xaf\xca\x52\x9f\x2b\x58\xc1\x98\xdf\x21\x11\x49\xca\x0c\x2b\x38\xa1\xf8\x8b\xc9\xee\x6d\x58\x09\x3b\x4d\x33\x26\x50\x64\x88\x0c\x49\x95\x01\xb1\x9e\x63\x73\x8f\xf4\xdd\x1a\xd1\x08\xfe\x1c\xb2\xfe\x04\xc4\x7a\xbe\x58\x0a\x13\x99\xa5\xed\x86\x55\x97\xc5\x6c\xee\xa0\x3b\xd9\xf4\x84\xd8\xcf\xe1\xa5\x3b\x78\xf7\x84\x37\x21\x44\x49\x99\xc7\x6b\x38\xe9\x39\xf4\x36\x46\x62\xb2\x6e\x88\xaf\x01\x82\xa3\xea\x09\xd6\x80\x7a\xba\x9b\x61\x44\x2c\xc3\x08\x6e\x0f\xb4\x85\xd6\x93\x10\x09\x42\xd4\x59\x51\xbc\x5f\x0d\x27\x91\x24\x00\x11\x3a\x3a\xcc\x15\x58\x5c\xd7\xc4\x75\xad\x75\x13\x80\x17\xed\xc8\x3e\x8f\xae\x85\x66\x3f\xa0\x2a\x66\x5e\x76\x2d\x6a\x11\x9a\x58\xba\xb6\x98\x57\xde\x8c\x65\xf3\x19\x86\x50\x83\x21\x35\x27\x30\x72\x33\x99\x9b\x23\x55\x78\x98\x3a\x6e\x4a\x0b\x66\xcf\xf7\x5a\x3c\xad\x36\x6f\x17\x28\x66\x27\x4c\xfe\xad\xde\xba\x28\x4f\xbb\x99\x24\x21\xfb\x0d\x2f\xde\x92\xfd\x3c\x8f\x87\x40\xf8\x03\xf0\x82\x57\x07\x1d\x04\xe6\x0e\xb0\x38\xe6\xd9\x0f\x16\x43\xf6\x98\x80\xcc\x92\x61\x96\x8c\x60\x03\xdd\x26\x59\x03\xcc\x97\x43\x7a\x51\x84\x60\xa8\x6b\x5e\x6a\x64\xe1\x17\xc5\xca\xd4\xc8\x9b\x05\xea\xf6\x93\x1a\x3d\x35\x6e\x3c\x42\x9a\xfb\xa3\xed\x43\x47\x40\x64\xac\x40\x76\xff\x98\x80\x58\x55\x44\x6c\x80\xb2\x0c\x6a\x44\x1e\x8b\x57\x2d\x06\x14\x08\xf6\xf7\x01\x89\x66\xdd\x6d\x1a\x6b\xb2\xda\x48\x42\x90\x4c\x18\x91\xd5\x32\x92\x7f\x2f\xa4\x2c\x0f\x80\x52\x72\xc5\x1f\xec\x50\x61\x3c\x00\xb6\x43\xf2\xef\x27\x11\xe4\x1e\xaf\xef\xaf\xda\xb4\xc4\x31\x60\x09\x92\xdb\xb8\x38\x4a\x92\x71\x64\x20\xa8\x7c\x14\x35\x42\x64\x1c\xc9\x2f\x30\xa4\x43\x27\x4c\x8c\xb4\x83\x4b\x31\x8b\x91\xc9\xca\xfe\xa2\xb1\x4b\x8d\x19\x69\xbe\x7f\x7d\x01\x3a\x4a\x6e\x1f\xfc\xc2\x5d\x10\x6a\x2d\x24\xcc\x99\x55\xbb\x25\x26\x10\x4e\x76\x9b\xe1\x49\x3a\x9a\x23\x2e\x35\x78\x01\x0d\x99\x32\x35\x23\x9a\x95\x71\xa2\x5f\xa0\xad\xd1\x4b\x99\x0e\xe8\xf0\x7e\x81\x67\x88\x44\xc0\x88\x68\xd3\xa4\x28\xab\x1a\x91\xc9\x5b\xdd\x86\xc5\x34\x1b\x68\x18\x4c\x87\xcc\x0e\x91\x37\x3d\xa9\x96\x4e\x8d\x4c\xb4\xb1\xb1\x24\xd2\xf7\xaf\xc0\x8e\x1a\x99\x79\x63\xe3\x48\x9c\x52\x65\x6c\xaf\x2e\xfa\xf7\x57\x7d\x61\x16\x35\x77\x55\x97\xb8\x46\x08\x91\x4a\xa1\xae\x91\xb7\x47\xd9\x32\x11\x79\x39\xf8\x6b\x44\xac\x84\x04\xe1\xc8\xaa\x71\x8a\x36\xa8\xb1\xd0\x60\x29\xe9\x3c\xb2\x9e\x4f\xf5\x2c\xa6\xe0\x19\x6d\x9e\x88\x85\xb3\x12\xcf\x8f\x90\x44\xad\x21\xc4\xb2\x66\x29\x4c\xb1\xa2\x8f\x78\x63\x2c\x4c\xb6\xf4\xb6\x28\xd8\x16\xa6\x6a\x86\xb9\xca\x31\x5e\x63\xe1\x34\x34\x44\x25\x01\x09\x4f\xcc\xf5\xa9\x46\x2c\xcc\xac\xc3\x88\xe3\x75\xe3\xd5\x88\xaa\x38\xc8\x64\x0b\x88\x34\x83\x56\x03\xbd\xea\xe2\x7a\x48\xa6\xad\xea\x28\x8c\xf0\xe6\x07\x03\xdd\xb8\xb1\x24\xe7\xc4\x46\xc7\x89\x60\x68\x5c\x4c\x7f\x40\xe5\xac\xfb\x03\xfa\xfe\xbc\x16\xb8\xf2\x7c\x48\x92\x8a\xcc\xf8\x95\xb3\xbe\x46\x5c\x79\x3e\x8a\xdb\x08\x1b\xf5\x2c\xe1\xbc\xaf\xde\x05\x70\xd6\xcb\x1d\x5e\x23\x0c\xab\xc3\x3b\x9b\x81\xac\x06\x00\xd7\x7f\xba\x10\x49\x8d\xb8\x69\x4a\xd7\xbc\xd5\x88\xc2\xba\xb6\x36\xc4\xc1\xd0\x59\xa3\x6d\x4a\x8f\xc9\x67\x52\xa4\xf4\x68\xea\x62\x39\x1d\x93\x02\xa5\x49\x33\x40\x16\xc9\xed\x7e\x1f\xf5\x2b\xbc\x4b\x07\xb5\x72\x43\x08\x23\xe8\xf0\x32\x21\xd0\x35\x6f\xdb\x8f\x8e\xa0\x01\x59\x58\x67\x74\x64\x5e\xb1\xd4\xe7\xb8\xf3\x54\xef\x7e\x80\x22\x7f\x26\xc4\x29\x04\x96\xcd\x27\xcc\xc1\xeb\x5b\xf4\xfb\xc1\x13\x51\x02\x51\x3c\x18\xd8\x2b\xf0\x59\xeb\xd6\x44\xc2\xe2\x34\x2f\xde\x89\xa4\xde\xe1\x25\x3a\xe8\xdf\xd5\x7c\x71\xdb\xd4\x30\x51\xa1\xb2\xde\x30\x2b\x5d\x4e\x6b\x93\x29\x6c\x87\x43\x66\x8b\x48\x11\xd0\x08\x45\x16\xf0\xf0\x0a\x51\x04\x94\x7a\x1f\x29\x02\x36\xf7\x87\xd3\xa1\xb9\x3f\x10\xb1\x64\xd2\x08\x07\x76\x7a\xf5\x7f\x73\x86\x9a\x01\x82\x59\x87\x77\xe2\x92\x09\xf5\x01\x4c\x93\xc3\x44\xce\xfb\x16\xcc\x7f\x50\x16\xd7\xfa\x45\xbc\x48\x72\x02\x78\xc9\x94\x5e\x55\x94\xae\xa9\x16\x94\x22\x8a\xf9\x0d\x73\x13\x64\x17\x0d\x13\x1d\x92\x8b\x94\xb9\x50\xe3\xb5\x76\xb2\x1f\x1c\xd8\x47\x9e\x02\x71\x20\x32\xb8\x80\x03\xb3\x06\xde\xae\xd0\xdc\x66\x1d\x37\xb7\x17\x15\x08\x42\x54\xc6\xcd\x96\x6c\x6e\x94\xa9\xb0\x60\x81\x4b\x39\xc7\xab\x43\xe0\xd4\x07\x2c\xec\x90\xc3\xdf\xd3\x5d\x5e\x2d\xdb\xc1\x5d\x6e\x4b\x52\x7c\x28\x9c\x49\x29\x8b\xc8\x0d\x1a\x3e\x70\xe9\x3e\x37\xce\x50\x45\x77\xf3\x71\xb9\x9c\xe3\x5e\xf7\x15\xdb\x6a\xa4\xa0\xd2\x4c\x32\x6f\xa1\xb8\x29\x42\x4d\x10\x2f\x75\x03\x7b\x4d\x1b\x29\x7b\xa8\xbd\x18\xb0\x1f\xf0\xa4\xd2\x71\x99\x36\xc6\x46\xb8\x47\x90\xb2\xe4\xcb\xc4\x52\x33\xd5\x6d\x3a\xae\xab\x3b\xa0\xa4\x23\x91\x39\x51\x02\x15\x9a\xd2\x46\xed\x5a\xbb\x23\x2d\x43\xa4\xb6\x43\x0a\xc8\x25\xd0\x7e\x4d\x74\xc8\xab\x96\x53\x4d\xcb\x12\x29\x96\x97\x56\x3a\x51\xf5\x1b\xd0\x03\x9b\xc7\x80\xe5\x3c\x68\xf5\x13\xf3\x85\x24\x56\xa4\xc8\x2d\xec\x76\x87\xa5\x52\x98\x8c\x83\x30\x68\xc8\x65\x37\x14\xc5\x27\x88\x78\xdb\xf0\x0b\x3c\x89\x92\x5f\x78\x60\xae\x12\xa6\x12\xc5\x08\xf1\xe1\x94\xb8\xeb\xb4\xc9\xd2\xb2\x13\xca\xde\x92\x78\x25\x82\x2d\xd1\x29\xa1\xf8\x59\x77\x9f\x73\xd7\xa8\x72\x60\x4d\x30\x03\x9a\xd5\x25\x44\x67\x36\xb7\x97\x19\xd0\x88\xca\x94\x02\x8c\x88\xbc\x60\x50\x97\x30\xe3\xd9\xbf\x9b\x32\x37\x9e\x51\x95\x69\xd3\x91\x5d\x2b\xb1\x30\xaf\x81\x86\x1d\x4f\x09\x05\x35\x65\x1a\x7d\x7f\x74\xd1\x6a\x4d\x99\xfb\x54\x10\xa3\x5c\x8b\xa2\x71\x6a\xe2\xa5\x09\xd5\x38\x28\x4c\x78\x90\x99\x2b\x2d\xf1\x2c\xf9\x13\x18\x0a\x5f\x6d\x04\xad\xbf\xda\x9d\x1f\xb8\x07\x1e\xa9\x62\x16\x89\xd1\x9d\xf6\x16\x25\xc8\x67\x0a\xff\xac\xa9\x52\x0f\x6a\x7e\x40\x66\x20\x06\x97\x6a\xc3\x39\x28\x2c\xc1\x8b\xad\x8b\xaa\x6a\x42\x49\xc5\x61\xfa\x82\x35\x70\xbc\x7e\x67\x68\x80\xd7\xb6\x2e\x02\x14\xa6\x50\x74\x51\xf5\x0b\x6b\x6a\xd4\x29\x64\x06\x48\x8d\xe6\x16\x81\xd4\x78\x10\x9a\x42\x1b\x95\xfc\xe1\x37\x70\x12\x9a\x38\x5a\x03\x57\x77\x8f\x0b\x73\x82\x12\xd7\xab\x47\x73\xac\x29\xd0\x25\xdd\x8d\x52\xd3\xba\x1b\xd4\xec\xa2\x91\x5d\x78\x53\x2c\x7b\x9f\x64\xe5\x84\xb2\x8c\x3e\x7a\x52\xa7\xa9\xc2\x98\xe9\xf4\x18\x69\x8c\xbe\xa6\xa5\x31\x78\x43\xbb\x0d\xf4\x89\x55\x16\xb3\xbb\x24\xee\xfd\xc1\xda\xfc\x5a\x0c\x5c\x8e\x60\x03\x5e\xea\xdc\x77\xfe\x1d\x44\x6b\x12\x1c\xf4\xd0\x7a\xdf\xb1\xba\xb2\xd7\x8a\xd7\x71\xf9\x00\x4d\xcc\xfe\xb6\xbb\x26\x51\x0c\xd4\x69\x93\x06\xcb\x22\x69\x96\x4b\xec\xf3\x36\x1b\xdc\xa8\x9e\x15\x2a\x25\x66\x33\xe2\xe5\xfb\xf6\xde\x1f\x84\x5a\x68\x81\xef\x7b\x48\xcf\x49\xbc\x8c\x54\x9a\x52\x82\x2f\x7c\x98\x13\xe0\xb2\x85\x61\x46\xc0\x04\x29\x5b\xe4\x13\x5c\xe1\xd5\x73\xe0\x1d\x5f\x36\x3f\x24\x44\x59\x0e\x33\x40\x14\xa9\xb1\xf9\x24\xc1\x04\x19\x5f\x1d\xcc\x39\x2a\xc3\xa6\x26\x5a\x20\x5f\xdf\x83\xbc\x5e\x10\x72\x8f\xe8\x0c\x4e\xb4\x38\x4a\x1d\x48\x0c\xa1\xf4\x89\x0a\x47\xf8\x30\xf1\xa1\xee\x73\x33\x92\x0f\x1e\xd9\x86\xe8\xb8\xa7\xb8\x2b\xdb\x6f\x3a\x37\xb4\x35\x03\x16\x46\xb4\x23\x26\x21\x84\xd2\x0e\xd4\x34\xa5\xd1\xb2\xf9\xa4\x3a\x49\x08\xd2\xf4\xd2\x94\x46\xcb\xe6\x2d\xc4\x08\x4a\x3b\x26\xd2\x14\x3f\x8b\x92\x6f\x6b\x5a\xe2\xa4\x24\xe8\x74\x32\xed\x48\xed\x29\x4e\xa6\xcd\xb4\x77\x51\x03\xb6\x1c\x31\xe5\xc9\xa2\x44\xd6\x9a\x2e\x9e\xd0\x12\xf2\xd3\x85\xf8\x00\x89\xe0\x69\x8a\x7f\xc9\xae\x8b\xc4\xc2\x86\x92\xa5\xd2\x45\xd1\xc7\x72\xc6\x4d\xa1\xc0\x2b\x07\x79\x2f\x98\x91\xdc\x09\x20\x08\x6d\x37\xc3\xbb\xbc\x87\x6f\xce\xda\x1d\x60\xcf\x3a\xce\x28\x21\x60\x32\xbd\x76\xf9\xcd\xa4\xc7\x1f\xb9\x83\xd2\xc3\xd3\xdb\x5b\xfa\x59\x38\x10\x92\x1e\x56\xe5\x74\x1b\xee\x7f\x6f\xb7\x87\xeb\xe6\x76\x83\xa9\xcd\xcc\xf4\x21\xd2\x3e\x33\xc8\x1b\x3e\x08\x6e\x53\x1a\xe8\x7e\xc0\x1d\x2e\xf2\xcf\x48\xd4\x76\xb8\x4b\xde\x1e\xf4\xf0\x41\x62\x0e\x64\x43\x3a\xa6\x32\xcc\x7b\xc3\x9a\x44\x0e\x40\x73\xf0\x0b\xf9\xfb\xab\x29\x0f\xbb\xe6\xc0\x49\x0c\xb5\x1b\xde\xaf\x6a\x77\x76\xe8\x07\x10\x07\xbb\xdb\x3c\xfc\xc5\x5b\x33\xca\xce\x0c\x5d\x4e\x50\xf3\xca\xe5\x11\x67\xcb\x08\x46\x1c\xba\x9d\xa0\xe6\x48\xc1\x49\x8c\x2a\x47\x62\xca\x5f\x74\xb4\xdd\x25\x79\xe3\xf0\x83\x45\x1c\x9a\x07\x2a\x57\xab\x94\x41\xcd\x53\x9a\x4b\xba\x38\xa4\x66\x86\x1f\xaa\x4c\x49\xcd\x4c\xde\xb1\xfb\x24\x27\xec\x5b\x31\xc7\xcc\x64\xef\xfc\x7a\x40\x20\x35\x04\x7c\xbc\x0e\xac\xcb\xb4\xc7\x65\xaf\x77\x5a\xd5\xff\xd4\x66\x68\x92\x17\x07\xf6\x36\x15\xe8\xa9\x99\xc9\xdb\xf6\xaf\xe4\x0c\x66\xe4\x21\x32\x0d\xec\xb2\x8e\xe4\x82\x1b\x39\xc5\x19\x32\xa3\x05\xb3\x31\x59\x48\xe5\xf2\x36\xe4\xc2\xc3\xb4\xfb\x01\x6e\x09\xdd\xdc\xa6\xeb\x5a\x67\x65\x2e\x8c\x62\x11\xcf\xcc\xcb\x96\x55\xfc\xe0\x62\xd8\x80\x50\x55\xd6\x4c\xd5\x69\xa5\x0f\x5e\xd8\xaf\xe4\xa2\x12\xae\x73\x5d\x70\x6a\x26\x95\x84\x29\x28\x2a\xac\x08\xd1\x1f\x50\xce\x30\x61\x56\xec\x15\x59\x15\x32\x8d\x57\x2a\x12\x53\x73\x23\x19\xca\x13\x94\x1b\x16\x34\xfa\x05\xc4\x6c\x88\xe1\xe4\xb6\x9c\x53\x82\x09\xb9\x28\xd6\x10\x72\x5b\x98\xf1\x0b\x0b\x11\xea\x02\x69\xd5\x0e\x03\xc9\x9d\x87\x41\xf1\x83\xc6\x2f\xb4\x60\x1d\xa4\x1f\xfd\xc2\x5a\x72\x21\x82\xf6\xa8\xec\x2d\x3b\x02\xbb\x10\xb2\x59\xc0\xae\xf9\x0b\xf0\x04\x31\xef\x3c\x45\x93\xb2\x99\x27\xa0\x22\x73\x7a\x7d\x4f\x32\x94\xd2\x98\x07\x42\x46\xab\x3b\x64\xb9\x51\xc1\xcc\x5b\x9b\x1c\xdc\x9b\x29\x68\xd8\x36\x99\x77\x2e\xaf\x0e\x98\x0c\x6f\x66\xf0\x5a\xec\x84\x49\x93\x5a\x92\x85\xec\x0d\x79\xe7\x29\x29\x91\x2d\xef\x38\x2f\xa4\xb7\x66\xd8\xad\xec\x40\xcd\x4c\xcf\xc8\xa6\x20\x64\x5a\xab\xb6\x6e\xcd\x3b\x8f\x55\xc1\x88\xaa\xcd\xcd\x2c\x05\x31\x77\xcd\xfb\x9f\x89\xd8\x36\x9f\xe7\x83\xe5\x7b\x04\xc1\x94\x2d\xca\x96\x7e\x92\xa8\x5a\xf3\x01\xb3\x5a\xf4\x68\x94\x6c\x24\x8a\x67\x5c\x25\xea\xd3\x25\x9f\x38\xc3\xa5\x7f\xe4\x75\x9f\x84\xa4\xbf\x7c\x02\x85\xc9\x1f\x60\x07\x49\x2b\xca\x27\x55\xe2\xea\x1e\x76\x1e\xa8\xc2\x00\x6a\x2c\x37\x6f\xa9\x13\xd1\x68\x52\xf4\xf3\x2a\x77\x67\xca\xba\xd6\x3a\x0b\x05\x14\x34\x24\xaf\x65\x1a\xaa\x3c\x24\x0d\x55\xd6\xe3\xf3\xb5\xe8\xdf\x5d\x82\xfe\xa5\x98\xe5\x29\x89\x94\xcd\x7b\xee\x46\xf4\xbf\x49\x8d\x72\x85\x8f\x4c\x96\xa8\x69\xe6\xc2\x37\x35\xb9\xe1\x1e\x48\x5a\xc2\xd3\x4d\x3c\x09\x24\x18\xa2\xac\x76\xe5\x9b\x7c\xdd\x7c\xe2\x06\xa7\x91\x04\x98\x1f\xee\x48\x7f\xf1\x04\xf4\x28\xac\x3c\xc0\x8a\xb9\xc0\x83\xa3\xc6\x84\xf3\x90\x2b\x18\xd1\x14\x35\x24\x11\xe6\x87\x0a\x8f\x45\x8b\x07\x58\x91\xec\x92\x1f\x72\x22\x53\xcb\x73\xcd\x17\x7c\xba\xc1\x12\xe5\x28\xd7\xfc\x70\xcb\xea\x2c\x2a\x1b\xe4\x5c\x89\x22\x65\x79\x3e\x65\x65\x2d\xbc\xd0\x49\xa5\x46\x6a\xd9\x40\x6f\x3a\x59\xca\xb6\xba\xd4\x83\x65\x07\x92\xde\x56\xc2\x5a\x1b\x3f\xa0\x5f\x65\xf8\x13\xac\xbe\x0e\xc0\xc2\x5b\x30\xec\xf9\x2e\xbc\x05\x43\xd7\x0e\xd7\x12\xb0\x8f\x8a\xdb\x98\xf8\x6b\x88\x9b\x63\x36\x3d\xe0\xd9\x24\xf6\x57\xa6\xbc\xd2\x9c\x16\x50\x22\x28\x4a\x47\x53\x89\x58\x2d\x9d\x76\x85\x95\x84\x6d\xda\x2c\x91\xe7\x84\x84\xe1\x12\xb1\x3a\x86\x31\x82\x31\xe8\x6c\x2b\x91\x26\x75\xf7\x78\x13\x24\x3f\x40\xc2\xb7\x27\x91\xd6\x62\xa8\x07\xda\xa2\x54\xf7\xa8\x16\x0a\x27\x62\x66\x25\x81\xa8\xc5\xc2\x4b\x02\x62\x45\xf4\x85\x96\x29\x89\x79\x85\x57\xa8\xdb\x8e\x54\x90\x59\x6c\x4b\x41\x41\x95\xe0\xfa\xea\xf0\x81\xe3\x59\x73\xe4\xed\x9c\x36\xb1\x94\xbc\x16\x7b\xe8\x01\x04\x2a\xed\x92\x92\x17\x51\x0b\x86\x4c\x18\xb5\x30\xcc\xb6\x70\x40\x55\xc9\x58\x5b\x71\x9b\x92\xc9\x9f\x3c\x24\xf4\x22\xaf\xec\x72\x0d\x4a\x5c\x2e\x70\x0d\x5a\xc8\x28\xcb\xf6\x24\x51\xb5\x14\x02\x2d\x1e\x5f\x0a\x88\x5c\x0c\xac\x14\xe2\x59\x2b\x03\xd3\x93\x2a\x8d\xd5\x52\x38\x07\xb7\x21\xb9\x8a\xbd\x95\x82\x29\x34\xf7\x0f\x09\xaf\xfa\x77\x1e\xf7\x12\xcf\x4a\x5d\xcc\x45\x30\x23\xfd\xa2\x18\x29\x94\x9c\x4c\x7c\xc8\x11\x8e\x3f\xba\x64\xb5\x96\xba\xd6\xc0\xbd\x1f\x44\x80\x70\x0a\x33\x95\x93\x6a\x0a\x32\x80\xab\x09\xaf\x81\xb7\x79\x0d\xa6\x94\x15\xad\x1e\x97\x06\x6f\x98\x09\xad\xa1\xb6\x80\x78\x63\x69\x40\x98\xec\x6c\x85\x97\x65\x35\x93\xc9\xf2\x10\x4a\xfc\x2c\x9d\xda\xad\x44\xf9\xd2\xd7\xa2\x09\xc6\xbe\x58\xbe\xb0\x8a\xea\x35\xe6\x8e\xa5\xf3\xfe\x04\xe1\x0c\xb9\x13\x3e\x19\x4b\x5f\x40\x68\x16\x9d\x89\xd2\x1e\x12\xb2\x83\x3b\x98\x42\x59\x52\x3d\x83\x5a\xe0\x23\xb4\xa8\x59\x06\xe5\x72\x89\x75\x65\x50\xbb\x88\xfe\x02\xe5\x6e\xbc\x9f\x98\x1a\xa1\xfa\x9f\xb5\xe0\x2a\x4d\xfb\x37\xca\x00\x53\x31\x17\x42\x8c\x99\xee\xa0\xaf\x65\xa5\x4a\x78\x43\x0e\x1c\x5b\xee\x60\x5f\xbb\xc3\x0f\xe8\xfe\x55\x8f\x4b\x68\x93\x6d\xa4\xec\xbc\xab\x59\x43\xd0\x1c\x24\x25\xab\x2c\xa1\x4d\x0a\x4d\xd9\xb9\xd8\xee\x80\x30\xbb\x0d\x4d\xc2\xeb\x02\xf3\x8e\x5d\xd8\x65\x89\x68\xc3\x23\x92\x31\x0a\xe4\x83\x97\xed\xb9\x4d\xbe\x68\x4e\xba\xbc\x93\x3a\x39\xcb\x41\x2d\x40\x02\x45\x61\x8d\x62\x6b\x16\xe5\x00\xeb\x94\x90\x53\x10\xb4\xd6\x9a\x77\x20\x1c\x9a\x16\x6e\x0b\xfd\x95\x9b\xc7\x64\xae\x9f\x66\x79\x90\xbd\xfb\x84\xe1\xdd\x61\xcd\xd4\x70\x42\x60\x30\x9f\x62\x50\x5b\xf5\x62\x9e\x38\x93\xbc\xc9\x69\x64\x32\xdf\x42\x9a\xae\x3d\x92\x85\x36\x26\xaf\xfd\x49\xb5\x3e\x79\x84\x41\x10\xfc\x05\x0c\x63\xe6\xd6\x27\xce\x28\xf3\xa1\x73\x4d\xc2\x43\x22\xab\x4a\x36\xf6\x72\x91\x51\xbd\x1e\x80\x33\x78\xdf\x5e\xdc\xa6\xc6\x3c\xef\x84\xaf\x5e\x7e\x08\x83\x96\xd4\xca\xc5\x3d\x60\x91\xe3\x82\xcc\x6f\x8a\xbd\x40\x4f\xde\x23\xbc\xec\x53\xa9\xed\xb5\x20\x0c\xce\x72\x53\x99\xd2\x62\x48\x56\x0a\xcb\x8d\x6b\x4a\x3c\x4d\x08\x87\x8e\xb7\x2a\x28\x60\x68\xc9\xac\x20\x3d\x22\x1a\x4d\x88\x81\x6b\x86\x08\x69\xbe\xaf\x73\x15\xc2\x63\xf0\x96\x81\xac\xe8\x8b\xbf\x6a\xa1\xac\xe8\x39\x3f\x6b\xe9\x05\xc1\xc3\x95\x32\x48\xa8\xb8\x93\x2c\x66\x3d\x40\x82\x65\x28\xb8\x25\x9b\x0a\xa6\xd5\xba\x41\xf9\x16\x8b\xad\xa8\x89\x63\x33\x6f\xdd\x40\x5c\xaf\xf6\x5a\xa8\xac\x07\xa8\xea\x28\x39\xae\x6e\xf4\x1a\x54\xb5\xb9\x43\x92\x5f\x18\x18\xf1\x47\x9a\x50\xdd\x20\x2d\x0d\x83\x47\xdb\x7c\x53\x9b\x07\x80\xb8\x79\xc5\x6d\x17\xaa\xcf\x50\x2b\xca\xe3\x6c\xf2\x38\x54\x94\xbf\xb1\xfe\x5b\x03\x8e\xa4\xd7\xef\x30\xec\x89\x6d\x55\xdc\x6d\xe1\x12\xdb\xb5\x52\xa6\xf4\x80\xbc\x22\xde\x4a\x7a\xc5\x25\xa0\x9b\x55\xe6\x1a\x28\x0d\x09\x01\x91\xf7\xa4\x69\x0e\x91\x3a\xba\xb4\xb7\xba\x82\xd8\xb4\x83\x2b\x8b\x33\x5b\x8b\xaf\x11\xc5\x63\x9a\xbb\x28\xff\x1f\x63\x57\x72\x36\x3d\xab\x2b\x53\x39\x21\xb4\x99\x04\x9b\x3f\x17\x8f\xf9\x87\x70\x1f\x57\xe9\xab\xf2\xdd\xbd\x4b\x77\xdb\x20\x40\x88\x42\x23\x92\x66\x8b\xa8\x92\x54\xbb\xcf\x40\xe6\x3e\x8d\x22\xab\x86\xba\xcb\xc5\x0f\xfc\x03\x4f\xb9\xea\x2e\x18\x4a\x31\x4d\xc3\x49\x66\x34\x95\x17\xd6\x46\x53\x5f\x88\xc0\x4c\x03\xe6\xc1\x8c\x50\x79\x63\x9c\xfe\x61\xfb\xef\x7f\xd3\xd1\x1b\xa3\x32\xcf\xcf\xf4\x0f\x90\x6c\x3a\xdc\x47\x0d\x52\xed\x1f\x72\x18\xa2\xba\xd2\xf7\x4a\xd2\x73\xbc\xd0\x35\x94\xf0\x7c\x0c\x94\x36\x5d\x1f\x1a\xde\x83\x70\x93\xe8\x1b\x0c\x24\x36\x48\x1b\xed\xdd\x93\x9b\x47\x0d\x3d\x5d\xd1\xad\x64\xc0\x2d\xce\xd6\xa1\xf1\x42\xdd\xbe\x69\x4f\x8f\xc6\x23\x45\xe7\xde\x68\x5c\x2b\xe9\x12\x46\x63\x80\xb9\xe4\xc6\x78\xb1\x6e\xdf\xcc\x82\xb4\xd2\xfa\x1a\x3b\xa0\x1b\xb4\xc7\xe2\x68\xb9\x34\x26\x82\x17\x9d\xe6\x3e\x30\x4c\x9d\x21\xa3\x27\x0f\x6a\x98\x44\xbf\xde\x07\x1d\x51\x2d\xde\x37\x34\xa3\xfa\x8e\x38\x3a\xb6\xb5\x27\xb6\x53\x81\x60\x1e\x05\xba\xf5\xe5\x7c\x00\xdd\x5a\xb7\x38\x3a\x49\x52\x0f\xcc\x99\xa3\xac\xb8\x63\x30\xd8\xd8\x7e\x97\xe3\x45\xbb\xdd\x26\xab\xc1\xc2\x18\xb6\x2b\x8c\xc1\xb9\x17\xff\x0c\x6e\x6e\xff\x8f\x2b\xa6\xd9\x07\x7a\x44\x1f\x63\x83\x09\xb1\xc3\x5b\x77\xd0\xca\xf6\xf9\x02\x6e\x73\x9e\x36\xb8\xcd\x39\x1c\x79\xbc\x88\xb8\x6f\x5e\xa9\x80\x8b\xad\xd9\x31\x11\xb1\x28\x8c\xce\x41\xbb\x01\x24\xf0\xd3\xe1\x3d\x82\x1c\xbe\xf9\x0b\x94\xc4\xd7\xdd\x6b\xd0\xab\x4e\xa9\xec\xc6\x88\x93\x5f\x68\xda\x22\x4f\x6b\x37\xf1\xf0\x0d\x0d\x13\x7e\x74\xa1\xdc\x73\x63\xb0\x3a\x9e\x50\xce\x98\x15\xc3\xd2\x30\x26\x26\xda\x44\x41\x73\xa9\xec\x27\x63\x40\x71\xb9\x79\x29\x27\x38\xfa\xd3\x21\xf1\xa8\xce\xe2\x31\xc1\x1c\x9e\x86\x45\x8a\xa4\x82\x18\x08\x38\xb6\xde\x65\x2c\x82\xbb\xee\x1f\x70\x58\x7f\x3e\x08\x38\xbb\xf8\x7f\x92\xf4\x97\xc4\x3d\x63\x2c\x32\xb7\xe8\x5f\xe0\x65\xa1\xb8\xc1\xec\xda\xbe\x19\x8d\x1d\xc7\xaa\x85\xe5\x4e\x67\x77\x3f\x43\x61\x62\xc7\xd4\x81\x4a\x73\xd6\xc3\x0e\x66\x94\xf1\xb9\xcb\xf0\x0a\xa5\x07\x1c\x03\x09\x64\x7c\xc7\x1e\x0c\x0b\x56\x3e\xc1\x31\x0e\xc4\x5a\x5a\xb2\xa5\x8a\xd2\xbc\x0a\x73\xa8\xd1\xef\x48\xb0\xeb\x55\x3b\x30\x45\xa6\xe9\xc0\xaa\xe9\x62\x33\x0e\x1e\x09\x3e\x9d\xa1\xb7\x54\x5a\xce\x31\x60\x2f\x55\x35\x9d\x31\x5e\x6c\x3b\x9b\xe5\xf9\x49\x58\x68\xb1\x04\xac\xbb\x09\x41\x0d\x40\xd9\xcd\xdb\x09\xc9\x26\xab\xfd\x05\x06\x23\x7d\x3d\x68\x60\x59\x97\xdf\x1c\xe3\x24\xcd\x7e\xe6\x6e\xf0\xa0\x68\x40\x35\xc4\x1f\x67\x56\xc3\xd6\x27\x57\xe3\x1b\xea\xf4\xc5\xa6\x7d\xf3\x17\xf0\x8f\xb3\x8a\x6f\x40\x2d\xb9\x7d\xde\xcf\x79\xd2\xbc\x5c\xc8\xd8\xfa\x79\x86\xf6\xd9\x20\xe4\x4a\x76\x12\x7f\xdd\x10\x23\x9f\x67\x50\x20\xb4\x3c\x98\x3a\xdb\xd1\x5f\x03\x06\x53\xbb\x3c\x0d\xe6\x8a\x34\xa4\x1f\xf4\xa8\xb3\xcf\xf1\x60\xa5\x0f\x23\xf0\xf1\xa0\x4f\x43\x06\x1a\x49\x3f\xff\x57\xc0\x18\xd1\x44\x97\x39\x69\xe3\xc6\xd3\xf1\xbd\x06\xf9\x04\x9e\x45\x22\x4a\xb3\x59\x77\x31\x1e\xa2\x65\xb7\x87\x1c\x05\x3e\x05\x5f\x28\x3b\x1d\x71\x37\x10\xce\x51\x3f\xed\x43\x41\xed\x83\x18\x5a\xcd\x8f\x40\x40\x25\x37\x7b\x61\x07\xab\xd6\xeb\x20\x8f\x5f\x6e\xa0\xa5\x1f\xea\x7f\xff\x6b\x9b\xb4\x17\xf1\xeb\x9c\x32\x7f\x41\xf8\x51\xfd\x06\x22\x50\x24\x8b\x83\x81\xbd\xc3\x1f\x1c\xb8\x1c\x9a\x84\x0b\x69\xa5\xa6\x9e\x81\x98\xa6\x9f\x71\x24\x0a\x31\xc5\x46\x21\xe7\x0e\x36\x16\xd9\x91\x5c\x89\x2d\x6b\x3c\xe8\x19\xfe\xb6\x9f\x16\xc8\x38\x43\xcf\x81\x0c\x97\xa2\x90\x51\xbf\x61\x12\x37\x90\xbc\xfc\xcc\xfd\x53\xfd\x03\x72\xd4\x6e\xee\x01\x7b\xbe\x9a\x02\x04\xfd\xba\x01\x86\x70\xf8\x06\x12\x25\x91\x86\xc6\x50\xa8\xfe\x68\xfe\x04\xb6\x37\x0f\xf2\xc5\xa6\xf5\x33\x0b\x2f\x34\xad\x3e\xf1\xa2\x30\xad\xb5\xbf\x4f\xe7\x29\x3d\x83\x44\x6d\xf0\xc8\xd4\x8c\x22\xb9\xe6\xac\x6a\x4c\x2f\xee\xac\xc6\x5b\x91\xe6\x5f\x09\xdf\x80\x86\x75\xfb\x3c\x83\xd7\x75\xac\x07\x34\xac\xb6\xf6\x06\x60\x69\x9f\x7f\x72\x92\x0b\xa6\x69\xd4\x46\x8b\x9a\x3b\xd5\xad\x81\x4d\x3c\x5f\x84\xa8\x52\xb3\x45\xe3\xc5\x56\x5b\x21\x18\xff\xeb\x1b\x47\x34\xd2\xaf\x19\xc8\x6c\x37\xda\xcc\xd1\x52\xae\xfa\x0b\x68\xc5\x24\xea\x23\x21\xe7\xe6\x26\x78\x60\x0d\x37\x81\x58\x4f\xcf\x7a\x43\x0c\xbb\xff\xa7\x42\x56\x32\x2e\x90\xed\x66\x7a\x14\xb0\x56\xdb\xf3\x3b\x52\x1d\xab\xeb\x42\xf4\x5c\x15\x7f\x31\x60\xd7\xf0\x17\x10\x8a\x82\x04\xd1\x91\xb6\xe2\xf3\x7e\x92\xac\x31\x10\xa2\x9a\xb1\x3a\x93\xc5\xe8\xff\x01\x11\x29\x98\x14\xb0\x5c\x3b\xc0\x3d\x10\x45\xec\x5c\x31\xc1\xc2\x6c\x9f\xff\xe1\x6f\xaf\xfb\x7d\x0c\x1c\x1c\xdd\xef\xe7\x66\xf3\x0f\x30\x37\x49\x2b\x1e\x03\x51\x3d\x56\xac\x07\x0a\xb5\xa9\x20\xc1\x08\xe2\x4f\x9d\x8f\x11\x1b\x5c\x1f\xfc\x0c\x3d\x8c\x30\x40\x04\xaf\xfb\x5a\x94\xe0\x24\x5b\x08\xc2\x6b\xd0\x5e\x5f\xc1\xd2\xcc\xd6\xf9\x06\x74\xb8\x2a\x8c\x38\x82\x76\x70\xd5\xec\x1d\x11\x00\x09\x32\xa1\x04\x12\xe6\xd8\x90\x18\x2f\x1a\xad\x36\x61\xc7\x4c\x90\xa0\x16\xb3\x24\x8c\x67\x61\xf2\x80\x16\xee\x8f\x89\xa3\xc7\x42\x8c\x09\xca\xdd\x05\xe1\xa7\xa5\xde\x3c\xf0\x2c\x12\x27\x49\x74\x7b\xb9\xe3\xfc\x42\x62\x04\x91\x80\xb4\x89\xb6\x66\xc5\x62\x0e\x42\xef\xa8\xc4\xa7\xba\x50\x45\x96\x5e\x5e\x7e\x83\xc9\xf5\xd5\x07\x33\x29\xfa\xce\x16\xd0\x02\xfb\x80\x8d\x95\x87\xbe\xc8\x5c\xbc\x1b\x78\x71\x60\xbc\xff\x88\xda\x95\x40\xc4\x7d\x40\x3b\xe9\xb5\x40\xae\xc5\x22\x84\x17\x48\xad\x68\x9d\x6c\xec\x90\x2c\x02\xd1\x01\x27\xc1\xcf\xda\xee\x54\xa0\x7a\xc7\xec\x10\x2c\x16\xd5\x3b\x67\x5e\x63\x40\xda\x43\xc7\x68\x06\xb3\xdd\x58\xfb\x1e\x47\x4e\xa4\xba\x38\xa8\x03\x13\xa2\x8b\x03\x77\x11\x6f\xda\x03\x98\xd1\x72\xe5\xa0\x58\xf0\xb6\xcf\x0a\xca\xfe\x00\xc2\xda\xc7\x03\x61\xef\x70\x8f\xa0\xd9\x6b\xfb\xc2\xde\xd9\xbc\x67\x52\x85\x6b\xf1\xca\x7a\xc9\x82\x77\x01\xb7\x40\xa7\xa7\x09\x26\xb8\x09\x0b\x9e\x93\xee\x28\xba\x2b\xc7\x09\x68\xfe\x73\x8b\x14\xd8\xde\x03\xd0\xe1\x6e\x9f\x0f\xa8\x65\xf3\x4a\x9d\xc9\x0b\xee\x14\xe9\x5e\xc3\xcf\x90\x6d\xf1\xa7\x94\x71\x01\xa7\x42\x6b\x66\x02\x4e\x85\xd6\xbd\x06\x9c\x0a\xbb\x05\xe3\x95\xdc\xae\x39\x84\x53\xa1\x6f\x98\x01\x4c\xed\x70\xe1\x80\x76\xb7\x7d\xce\x93\x6b\xc2\x57\xd3\x1f\x2c\xbe\xa0\x39\xa3\x17\xe2\xf0\x33\xef\xbd\x52\x40\x04\x33\xb6\xdb\xff\x29\x2e\x5c\xda\x0c\x00\x2f\xce\x80\x26\x99\x71\xd2\x1f\x1c\x71\x43\xbf\xe0\x2d\x7b\x83\xb3\x2c\x46\xee\xdc\xa1\x1a\x25\xbc\x05\x9c\x93\x21\x88\xc2\x8d\xef\x6e\xc8\x15\x4f\xe3\x4d\x0a\x34\x06\x38\x0f\x6c\x1e\x53\x2a\x84\x2d\x4c\x9f\x0d\xda\x2a\x35\xc0\x38\x16\x5f\x8b\x03\x25\x6e\x3e\x87\xe6\xc3\xea\xc3\xfe\x3f\xeb\x4e\xe9\x99\x43\x30\xef\x3e\xf4\xb9\xf0\x89\xf2\xe4\xc4\x6b\xda\x5e\x5c\x1e\xd6\xed\xc7\xc3\x58\x09\x77\x01\x17\x09\x67\x48\x88\x07\x2a\x59\x4b\x25\xb8\x17\xf8\x1e\x3a\x01\xbc\x9b\xed\xa8\xf3\x87\xcb\xb2\x06\x35\x51\xf3\xa6\xa8\xc7\x09\x1d\x74\xe9\x6e\xa0\x43\xa7\xf7\x6f\xa1\x27\x83\x50\x94\x33\x7a\xcc\x8d\xdc\xa7\x06\x89\x92\x7d\x57\x98\xd0\xf2\xda\xe5\x75\x22\xe9\xa3\xb2\xde\x8e\xb9\x71\x7b\xe9\x32\x3d\x99\xe5\xdc\xd7\xf1\x89\x0a\x7c\xc3\x99\x29\x26\x71\xf0\x74\x9f\xb4\xeb\x68\xed\x26\xd4\xbe\xf6\x3e\x9e\x74\x8d\x94\x34\x9f\x0c\x4c\xf6\x85\x7e\xb2\xc8\x4d\x33\xd5\x05\xec\x35\xfd\x8c\xf8\x1d\xad\xc4\x84\x6b\xc1\x36\xdd\x22\x31\x5a\x31\x09\x04\x3c\x9e\xb9\xc2\x8b\xa7\xb6\xdd\xac\xd8\x02\x1e\x77\xa5\xa4\x92\x15\x6f\x22\x74\xd9\xd0\x78\xd6\xac\x91\xa4\xe7\x05\xfd\xbb\xba\xac\xdc\xa6\x26\xb2\x66\x9d\x57\x3d\x03\xac\x7f\x1a\xa4\xea\x72\xf9\x87\xa4\x51\x4d\x36\x60\x1c\x29\x67\x26\xe2\x60\x9c\x07\x6b\x36\xba\x81\x6b\x0c\x0d\xf9\xbf\xc3\xcf\x50\xa6\x2f\x3f\x53\x0f\xe2\xd5\x27\x3a\x9e\x6e\x10\xf1\x44\xc3\xff\xf3\xd2\xb4\x4c\x01\x15\xb4\x3a\x62\x26\x53\x3d\x2a\x67\xf1\x98\xf0\x56\x50\x0e\xf2\x31\x1b\xb9\x45\x63\x62\xea\x47\x9d\xdc\x93\xfa\x59\x7f\xdf\xa1\xdc\x31\x89\x9d\xf9\x69\x34\x8b\xcc\x69\x2e\xe0\x38\x7b\x8e\x49\x83\xec\xdc\xe7\xcb\x3d\x52\xa1\xdb\xdd\x04\xb9\x4b\x2b\x49\x57\x4f\x47\x4d\xcd\x9e\x59\x6b\xf5\x7c\x61\x9f\xfb\x19\x0b\xe5\x69\x1b\x38\xa8\xbd\xf2\x08\x92\x79\xd9\xf5\x0f\x27\xd0\x4c\xdf\x03\x6f\x8f\x91\x7c\x21\x72\x82\xc0\x40\x0a\x8a\xf9\x62\xd7\x5e\xa4\x36\x9f\xc1\xfb\xbb\xae\xeb\x33\xa8\x4d\xf2\x33\xc4\xb7\x39\x2d\x75\xad\x5e\x68\xf8\x1f\xb8\x64\xfe\x98\xac\x5a\xac\x02\x15\x63\x22\xe4\x25\x94\x54\x79\xcc\x17\xdd\xf6\x22\x85\xf1\x0c\x88\x78\x2f\x1c\x6a\xed\x38\x56\x6d\x22\xe0\x25\xa6\xe5\x08\x55\xad\x1e\x26\x03\x5e\x1c\xe0\x34\x27\x12\xfb\x7a\xc7\xcd\x41\x31\xe1\x17\xb8\xb2\x3a\x56\xe6\xbc\x40\x93\x98\xe3\x85\xb7\xe1\xac\xa0\x73\x92\x46\xbd\x4f\xe5\xab\x9d\x5f\x27\xb0\xab\x2f\x4e\x73\xe1\x60\x34\x2f\xad\xc1\x0f\x44\x02\xc3\x9a\xbd\x78\xf0\x4f\xd8\x3e\xcf\x39\x6d\xfe\x01\xfb\xc3\xc2\x71\x91\x24\x35\xf8\x02\xd3\x5e\x64\x3c\x98\x74\x2a\xf5\x6d\x73\x02\x99\xda\xfd\x67\xb2\x86\xb2\xf3\xd5\xcc\x3d\xb9\xc1\x4d\x8c\xff\xfe\xf7\x49\xed\x38\x19\xae\x62\xc1\xb4\x4f\xdc\x5f\xfd\x7f\x72\x87\x46\xbd\x93\x66\x93\xc0\x5b\x83\x90\xe9\xdc\x59\xe8\x42\x2d\x12\xec\xca\xe2\x31\x51\xde\xc7\x4e\x18\x33\xa1\xae\x2e\xfa\x93\x50\xd7\xe2\x9a\xd5\x12\x9d\x7a\x78\xbe\x58\xb7\x17\xcf\x3b\xa0\xee\x67\x16\x00\x65\x8b\x99\xeb\xd8\xf1\xec\x0e\x0e\x36\xa8\x41\x66\x66\x47\x8d\x91\x48\xd5\xe9\x93\x26\x3c\x4d\xed\xa4\x37\xcf\xce\x17\x44\x23\x90\x6a\xf1\x18\x5e\xa4\x3a\x9d\x2e\x6d\x9e\xf0\xdd\xf6\x4a\x9f\x20\xc9\x67\x35\xcb\x03\x79\xe5\x4f\xb2\x8a\x2e\x9c\xf3\x04\x37\x7f\x3a\x84\x92\xd9\xcc\xc8\x78\x6a\x07\xe7\xcd\x2b\x79\x45\x2d\xbc\x68\xb5\x3a\xfa\x63\x32\x02\x46\x35\x53\xc6\xbc\x20\x49\xdc\xe5\x85\x69\xd6\x25\x65\x5e\xbc\x04\x5b\xdc\xbe\x70\xb6\x2b\xe9\xfd\x98\x70\x5c\x75\xfa\xa5\xc9\xec\x90\x4e\x0f\x36\x91\x1d\x72\x7d\x5a\x7c\x30\xef\x6a\x10\x0a\xe0\x62\xf9\xfe\x62\xd5\x6e\x27\xc0\x09\x4f\xd7\xe2\x33\x0e\x48\xd4\xae\x08\xf3\xa6\xfe\xa6\xba\x01\x1e\x51\x42\xc3\xf3\xa6\xf3\xa4\xe1\xc6\xcd\x89\x2e\x7e\xe3\x62\x1b\x6e\x94\x39\xdb\xfc\xfc\x80\x08\x3d\x03\x9d\x3a\x34\x69\x3e\x79\x13\x13\x95\x89\x3e\x85\xb0\x27\xd1\xa7\x3d\xca\xe6\x03\x86\x2d\x6e\x02\x8a\xb3\x4f\x17\xc9\xb0\xfe\x80\x18\xc7\xdb\xf4\xa1\x7d\x5e\x20\x7b\x21\x8d\x8f\xfd\x42\xd6\x0f\x53\xf9\xfb\x93\x2e\x6e\x31\xe8\xda\x06\xbe\xf5\x03\x6b\x88\xe0\x05\x25\xb1\x61\xdf\xfa\xe5\x10\xbb\x7e\xc8\x21\xfa\x07\xf2\xc6\xa6\x67\xca\x95\x30\x81\x3b\x45\x97\xfb\x80\xbe\x53\xb8\x6f\xfd\x4e\xb4\xe0\x0f\x18\x1d\xef\xe7\x17\x80\xdb\x0d\x7a\x41\xad\x5c\x64\x16\x5d\x1b\x55\xb2\xe2\xb6\xb5\xd1\xd2\xea\x2f\xb6\x82\x51\xaa\xc7\xd4\x3b\xeb\x04\x58\xe9\x26\xa1\x73\x6c\x6d\x94\x9e\xdd\x9d\x50\x61\xe8\x2f\xb0\xcf\xab\x9b\x04\xbc\x98\xa6\x01\xbe\x85\xa6\xa9\x60\x99\x24\xae\x57\x01\x49\x5a\xf8\x05\xcf\xdc\x52\xfd\xcc\x3d\xaa\xfe\x11\x46\xe4\x60\xf8\x85\x30\xa2\x22\xb4\xb0\x0a\xe9\xd1\x32\x54\xec\x38\x89\xff\x45\x37\x5b\x5f\x69\x57\xa5\x3d\x4d\x20\x6f\x41\x4b\x5c\xaa\xbf\xe0\x09\xa3\x4b\xfb\x82\x96\x58\xd5\xdb\xc7\xaa\x09\xe8\xfd\x05\xb8\xdd\xb3\xca\x0a\x3e\x36\x0f\xaf\x0a\x59\xf7\x79\xc6\x89\x22\xf5\xca\x02\xd4\x1d\xce\x5e\xb7\x52\xd3\x6b\x7e\x64\xa6\x47\x27\x19\x5f\x00\xaf\xc3\xf9\xe8\x56\x63\xa4\x9a\x9f\x79\x8c\x09\xc7\x2d\xd4\xcf\x71\x56\x9f\xd5\xb1\x05\x9a\xff\x47\x55\x13\x8f\xaa\xf3\x6e\x2f\x39\xb0\x3a\x87\xe9\x67\x06\x7a\x6a\xe9\x7a\x8a\x22\xd1\xd8\xc1\xe0\x9e\x59\xb8\x12\x38\x35\xc2\x82\x9e\xd6\xd9\x29\xd7\x60\x0d\x2c\xfd\x3f\xc0\x3b\x82\x48\x0b\x7a\xd9\xa2\x93\x7b\x8d\x64\x67\x75\x80\xfc\x39\xc3\xd9\xee\xd6\xa0\xe8\xf2\xa0\x19\xf2\xfd\xd9\x84\x03\x69\xff\x96\x9b\xa0\x88\x37\x83\x41\xb9\x5b\x3c\xca\x17\xd1\xf6\xd2\xfc\x3f\xe5\xad\x39\x90\x39\x7a\x8a\x5b\xc4\x28\xbd\x29\x91\xba\xdc\xb1\x75\x2b\x01\xb0\x87\x89\x4a\x94\xd5\xd3\x42\x40\x6c\x7e\x04\x20\xb6\xf9\x6a\x01\xff\x96\xea\x06\xb9\x45\xdc\x1e\xd6\xcd\x72\x85\xee\xb8\xce\xe6\xbe\x12\x0e\x4f\xf7\x80\x4a\x07\x3a\x53\x16\x03\xc0\x87\x9f\x39\x24\x35\x30\xb1\x50\xdd\xcf\x18\x92\xc4\xff\x02\xb6\x6d\x46\x9e\x8b\xb5\xbb\x85\x2e\x16\x0b\xdc\xf8\x96\xbd\x5e\x6c\xbb\x15\xef\xda\x85\x1e\x86\x9f\x89\xb7\x2d\x37\x16\x6b\xbe\xa9\x45\x04\x44\x15\x9d\x93\x2b\xb1\xad\xbb\x44\xbe\x47\xd5\xb2\x1c\x0b\x11\x52\x9f\xed\xb1\xc0\xbc\x66\x46\x42\x57\x69\x91\x56\x42\xd7\x3f\x95\x10\x1a\x0b\xb0\x75\x38\xad\xe2\xda\x89\x3d\x3c\x67\x3b\x56\x51\x00\x6b\x31\x89\x8f\xb3\x24\x2d\x96\x9d\x74\xda\xa3\xb5\x73\x55\xcc\x9a\x3b\xf7\x93\x86\x48\x2d\xad\x13\xbc\x2c\x16\xf2\xf6\x95\x61\x1d\x98\x56\xdd\x67\xd7\x01\xe9\xec\x85\x87\x52\xb6\x84\x1b\xa0\x4c\xf8\xbc\x90\xa9\xa5\x35\xae\x23\x99\x4b\xe3\x40\x04\x55\x11\xc2\x5f\x47\xee\x17\x7f\x01\xaa\x3d\xf1\x07\x8e\x39\xcb\xe7\x33\x89\xd6\xda\x9f\xe4\x36\x35\x00\x47\xda\x8f\x58\x48\xad\xeb\xf4\x07\xf1\xdf\xff\xc2\x1e\x6d\x8b\xd1\xd9\x56\x66\x2c\x82\x57\xcf\xd3\xc9\x40\x09\x37\x80\xbc\xfa\x66\x5f\x06\x55\x7d\xbe\xe7\x10\xb4\x54\xf0\x45\x18\x4e\x20\xb9\x2e\x30\x8f\x4f\x55\x96\x16\x77\xad\x80\x75\x61\x0c\x16\x9d\xd0\xa3\xda\x90\xb7\x2e\xc0\x6d\x2f\x1c\x94\xa2\xce\xe1\xb0\xa0\x14\x2d\x46\x4b\x77\x01\x77\x8b\xa2\x9b\x00\xc8\x43\xb8\x53\x32\xfa\x07\xf0\x9f\x05\xe3\x0d\x29\xe2\x49\xbb\x79\xe0\x6c\x7e\x81\x9e\x62\x3e\x92\x6e\xac\xb4\x59\xe1\x06\x8d\xde\xd3\x4f\x16\x78\x52\x93\x88\xa1\x72\x79\x83\xf5\x24\x91\x5a\xfa\x87\x17\x25\x8b\xc6\x87\xdb\xc8\xf0\xe1\x49\xc9\xe2\x1f\x20\xec\x7c\x70\x3e\x28\x8f\xe6\x6d\x46\x77\x83\xe5\x3e\xa1\x8f\x70\x96\xfc\xf5\x80\xfd\x84\x88\x76\xfa\x1b\x58\xad\xb4\x53\xef\xe9\x88\x93\xfd\x87\x61\x08\xf8\xed\xcc\x27\x69\xbd\xd2\x8e\xa8\x2a\x95\xbf\x1c\x3b\xbc\x63\x1d\x95\xbe\x03\x18\x7a\x5e\x76\x02\xc3\xe5\xe7\x87\x3d\x8a\xa6\x8d\xec\xa3\x93\x74\x27\xd0\x13\x43\xee\x08\x19\x2f\xa6\x60\xc3\x3e\x16\x4a\xdb\x99\x12\xd2\x11\xa8\x3b\xf2\x88\xdb\xfd\x71\xdf\xe0\x52\xb7\xdc\x23\xb7\xb5\xe6\x71\xdf\xb0\xd8\xe1\x16\x2f\xbe\xe0\x2e\xc1\x91\x3a\x53\x76\xb8\xd3\xda\x63\x79\x4f\x87\x02\x77\x59\x10\x1c\x29\xb8\xbc\x03\x29\xda\x05\x7f\x27\x52\xf4\x3a\xb0\x7a\xa4\x75\x63\x3b\xab\x41\x3a\x9e\x69\x47\x10\x97\xa3\x29\xf7\x42\x2f\x6b\x7f\x40\x9c\xa6\x49\x28\xdc\xc6\x7a\x1f\x59\xc6\x55\x4b\x78\xec\x95\x3a\x1c\xed\xf3\x1d\x59\xc5\xed\x75\xbc\x13\x29\xea\x52\xbc\xa7\xa3\xab\x2e\xb5\x3b\x1c\x0a\xec\x63\xbc\x43\xcd\xea\x68\xcd\x1d\x0e\x06\xf6\x24\xd9\x81\x24\x87\x33\xdd\xee\x50\xb3\x3a\xdb\xea\x0e\x35\x6b\x1b\xa3\xfc\xe5\x14\xda\x11\xad\x1e\xae\x21\xb1\xc3\xcb\xb5\x78\x0d\x1a\xf9\x42\x92\x70\x7f\x71\xe7\xec\x26\xb8\x41\x4a\x48\x32\xee\x8d\x03\xf2\xfb\x84\x4f\x66\xd5\xc6\xa8\x7e\x49\xe7\x1d\xa9\x89\xac\xd4\xdf\xe9\xe3\x6a\xef\x9b\x9d\xa9\x1d\x9d\x3c\x7a\x87\x52\xb4\x3b\xc6\x7e\x4f\x8f\x01\x9d\x95\x3b\x73\x39\x3a\xd8\x67\x47\x29\x48\x5f\x9b\x77\x40\x57\x15\xf3\x1e\x7b\x2a\x45\x3f\x2d\xd0\xdd\x45\xf3\x8c\x82\xe4\x56\x7f\xec\x83\xcc\x28\x22\x99\xa9\xd1\xd9\x35\xf6\x17\x58\xf6\x6a\x5e\x61\x45\x1c\xbb\x55\xef\x83\x37\x77\x6f\xa9\x17\x48\xce\xee\xa9\x8b\x14\x8f\x9a\xdb\xe0\xa6\xd6\xa0\xe0\x84\xda\xbd\x21\x88\xf3\xdc\x60\xe2\x3a\x6f\xea\x17\xa6\x4d\x95\x32\x1e\x3b\x4b\xda\x08\xc2\xec\x13\x45\xd4\x2c\x45\x26\x21\x8d\x57\x77\x12\x60\x7b\x10\x70\x18\xad\x3f\xbf\x40\x2b\x93\x69\x9e\xbc\xd8\xeb\x58\xd9\xa1\xb4\xac\x42\xbb\xfb\xa4\xd5\x55\x1f\xac\x1f\xfe\x17\x8d\x8b\xd2\xd5\x44\x2e\x62\x7a\x29\x8a\xf6\xf5\xb2\xa0\x2b\xaf\xec\x0c\x6d\xb7\x9a\x73\x07\x72\x73\xac\xc0\xbe\xb3\x0b\x0d\x62\xa7\xf4\x34\xb7\x24\x38\xdb\xfc\xc6\x2b\xa0\x1d\x56\xbe\xef\x39\x2a\xbf\x70\x82\x06\x77\x41\x75\xb1\x88\x4e\xe4\xe5\x51\x40\x05\x58\xdd\xc3\xd1\x48\xb4\x16\x13\xd6\xeb\xea\x51\x02\x36\x39\x22\x64\x67\x52\x1b\x27\xcd\xde\x89\x82\x74\x90\xed\x88\x25\xaf\xd2\x26\xec\x27\x7b\x54\x07\x2c\xf8\xed\xb4\xdc\x3b\x5d\x2a\xad\xbc\xdd\x2f\x02\x2d\x8b\xe8\x17\xa5\x74\xd5\xbe\x1d\x3b\xaa\xab\x18\x06\xed\x8c\xfe\x71\x02\xdc\xfd\xe2\xbc\xf9\x85\xd4\xfe\xeb\x99\x5a\x9e\xf0\x0b\x1c\x95\x25\x28\x70\x4c\x95\x42\x6d\xbf\x1e\x3c\x8b\xa4\xc4\x35\x9a\xa6\xbb\xe1\x59\x63\xb8\x09\x50\x05\x5b\xf6\x17\xc6\x54\xe7\x3c\xdc\x6f\x92\xe8\xff\x93\x24\xcd\x1b\x6a\xa1\x6c\x56\xce\xee\x70\x78\xfc\x6d\x3e\xfa\x1e\x36\xa1\x51\x21\x58\xc7\xe9\x6e\x77\xd6\x2a\xb1\x36\x76\x7f\x72\x94\xff\xbe\x38\x58\x8b\xc4\xea\xaf\xe3\x47\xa5\x44\xf8\x87\xf6\xdf\xff\xaa\x73\x46\x1f\x80\x10\xf6\x75\x3b\xa8\x6d\xb2\x42\xf7\x20\xa6\xf8\x74\x41\x96\x15\xb8\x3a\x00\x11\xaa\xee\xb5\x07\x5c\x0a\x6d\x45\x39\x68\x3b\x75\xd4\xc6\xb1\xf1\xec\x29\xfe\xe2\x1d\x86\xef\x95\xc7\xc6\xb3\x47\x18\xe0\xd8\xb0\x58\xf5\x4f\x79\xb4\x0f\x84\xd3\x18\x2f\x1c\x85\x79\x13\xfd\x0c\x30\xa8\xa3\xf1\x28\x3c\x7c\x75\x9a\x1f\x28\x06\x6d\x86\x3f\x18\x1b\x63\x15\xf6\xc1\x84\xcf\x56\x39\x1f\x85\x26\xee\xe2\x36\x79\x1e\xea\xbc\x3d\x6a\x41\x1e\x58\x11\x91\xba\x20\x4f\x6b\x1d\x6c\xd3\x3f\x40\x1a\xe9\xa0\x38\x78\xc2\x4b\xdf\x75\x40\x37\xe4\xa4\x62\x07\x23\x5b\x8a\x7b\xe0\xad\x2e\xfc\x01\x98\x45\x77\xeb\x03\x27\x7c\xf7\xba\x65\xc6\x19\x71\xf8\xd1\xb0\xd1\x75\x95\x38\x98\xbe\xd9\xb1\x32\x47\x23\x89\x22\x19\x71\x29\x06\x1d\x07\x4b\x37\xcf\xe9\x17\xe8\x5e\xa4\x59\x61\xba\x66\x57\x19\x38\xa0\x5b\xfa\x70\x67\x87\x84\x35\xcd\x8c\x42\x71\x0a\xaf\x83\x76\x4e\x33\x1b\x74\x4f\x55\x92\xe4\xc8\x03\xdc\xdc\xda\x99\x49\x4d\x88\xf6\xe0\x09\xde\xdc\x25\x36\x9d\x94\x22\x47\x4f\x1a\x4d\x03\x98\x51\x3a\xb7\x63\xd0\x9e\xa0\x0b\xce\x01\xed\x52\xd5\x65\xe3\x18\x88\x08\x32\xcd\x08\xc2\xb6\x5a\xe6\x78\x8f\xfc\xe2\x30\xf1\x83\x95\x9c\x9d\x65\xf7\x40\x94\xb6\x6b\x33\x1c\x80\x00\xc3\x7e\x83\x07\xe2\x54\x6c\xba\x3a\x50\x04\xcf\x41\x6e\xc7\x20\xc3\x9a\x39\x52\xb7\xb4\x4c\xd3\xcd\x37\xfc\x09\x82\x67\x3d\x2d\x41\xe9\x25\xf9\x76\x40\xbb\x54\xad\xdb\x39\x02\xb7\x13\x09\xa7\x03\xf5\x44\x9c\xa5\xe5\xa0\x76\xc9\xd1\x01\x47\x04\x9d\xf7\xc5\x0e\x89\x33\x96\x3b\x3d\x30\x73\xfa\x82\x61\x27\xd6\x45\x1e\xd4\x07\x39\x26\xff\x80\x75\xb4\x7a\xb3\x13\x57\x74\xb7\xd0\x39\x0c\x51\x35\x07\x5c\x79\x45\x03\xa2\xbb\x1d\x02\x74\x40\xa1\x54\x8b\x9f\x19\x87\x61\x0a\x00\x43\xbc\x36\x50\x0f\xd9\x83\xee\x80\xd7\x9e\x43\xd8\x8f\x15\x24\xc0\x3f\x60\x5f\x4b\xb7\x72\x2c\xca\xd7\xe5\x1f\x70\x72\x09\x5a\x1f\x3b\x87\x24\x8a\x98\xec\xc6\x5a\xb7\x63\xe7\x85\xda\xab\xcd\xc8\x69\xeb\xb4\x8e\x9d\xce\x29\x5e\xed\x9d\x58\x59\x90\xf0\xd8\xc1\xe4\x82\xca\xc7\x41\xa7\x4b\x0b\x49\x28\x78\x5c\x25\xeb\x80\x82\xc7\x25\xd9\x0e\xe2\x12\xc1\xb5\x03\xa6\x49\xc3\x90\xe3\x60\xa1\x47\xbf\x0f\x59\xe2\x4d\x90\x89\x9f\xfd\x3d\x93\x96\x68\xdb\x22\xb4\xc4\x1e\x68\x47\xc2\x18\x33\xd3\xc1\x43\x64\xba\x05\x98\xd0\x3c\x4d\xe7\xef\xbf\xff\xb5\x2e\xc8\x79\xc0\x52\xe9\xec\x06\x07\x0c\x95\x36\x4c\x1e\x27\x04\xc3\xdf\x0a\x0a\x1d\xb0\x4a\x36\x3b\x56\x1d\x48\xfb\x6c\x03\xc9\x71\xc2\x09\xca\x5b\x16\x9a\x9d\xea\x04\xc3\x07\x8c\x90\xb6\x3f\x1c\x17\x27\x54\xe4\xbe\x18\xa9\x7e\x26\xe4\xe2\x85\xca\xff\xa7\x90\xd0\x8c\x42\xf3\x63\xdb\xef\x81\xac\xcd\x61\x0b\xf8\x71\xa1\x66\x80\x20\xd0\x41\x88\x24\x5c\x77\x30\x2b\xb3\x93\x2b\x1c\x37\xb3\x49\xe8\x36\x74\x40\x51\xe3\x6a\x3d\x07\xfc\xdb\x5c\xde\xe7\x60\x7d\x38\x97\xe7\x39\x6e\x76\xa1\x59\x78\xb2\x0b\x2d\xeb\x83\x51\x1b\xbe\x3c\xbc\xfd\xf8\xdc\x7c\x98\xf7\xc3\x87\xd2\x43\x15\x99\x76\xf8\x89\x08\xe6\xb0\x0d\xe4\x64\xa1\x0d\x55\xc6\x1f\xe7\x8f\x30\x5d\x7b\xf2\x84\x09\xce\xf5\x50\xce\x5f\x76\x52\xf4\x43\xce\x9d\xbf\x60\xde\x1f\x09\xa2\xf3\x97\x43\x9d\xfa\x01\x02\x55\x9b\xf2\xdc\xf2\xd8\x50\x13\xc8\x8c\x6c\xdb\xe7\xb9\xf1\xac\xd3\xf1\x7a\x6e\x8c\x78\x57\x8b\xf4\x39\xb3\xae\xef\xdc\x38\xfd\xfe\x80\x0e\x37\x3a\x90\x4f\x68\x3a\x5c\x67\xe2\x44\xb6\x1a\x17\x18\x39\x0b\xd3\x60\x69\xcf\x9c\x85\xc7\x82\x4e\xc3\x33\x43\x21\xc4\xa6\x27\xfc\xbd\x1c\xf4\x7b\x26\xb0\xd1\x99\x7f\x22\xcf\x71\x58\x65\x79\x56\xba\xf9\xf8\x19\xd5\x83\x75\x4d\x3f\x91\x5d\xe6\x57\x3f\x1f\xf0\xf4\xd2\x89\x7b\x22\xbd\x4c\x93\x2c\x39\x5f\xe4\x32\xbb\x6e\xfe\x67\x63\x8a\x4b\x35\xd0\x10\xcf\xe1\x79\xa1\x55\xac\xfb\x99\xaa\x04\x31\xf6\xd9\xb2\x47\xf5\xc0\xe0\x05\x17\xfa\x39\x1b\x49\xd0\x34\xb4\x9c\x6a\xfd\x80\xe8\x05\xeb\x8e\xcf\x4c\xb6\x37\xfd\x43\x72\xa1\xfa\x40\xf6\x18\x57\xe8\x38\x61\x26\x53\xe1\xf1\x71\x76\x5e\x89\x75\x66\x9f\x8c\xa8\x35\x5f\x43\xf7\x10\x56\xa4\x9e\xfd\xc4\xbc\xf8\x03\xd4\x4e\xd7\x6e\x3b\x61\x26\x73\xd1\x90\x13\x0e\x5a\x4e\x67\x7a\x22\xe2\xd6\x99\xe6\x4f\xea\x2a\xcc\x1d\x83\x5e\x91\xd5\x1f\x60\xdf\xe8\x84\x3f\x61\xe2\x72\x35\x84\x33\x71\x88\xa0\xcf\x39\x72\x5e\x35\xe8\xc1\xa5\xd4\x33\x60\xc7\xe7\x03\xa0\x0e\x6b\xe2\x4e\xc4\x27\x38\x1d\xf5\x19\xbc\xd4\xeb\xbc\x3e\x33\x1e\xc1\x34\x31\x6b\xb1\xf5\xb2\x67\xe4\xe6\xf6\x27\xc8\xd5\xa8\x23\xfd\xcc\x88\x85\x4f\x27\x17\x36\xa2\x89\xc2\x3c\x7a\x61\x60\xb5\x72\x06\xf3\x73\x72\xde\xb4\x50\x2f\x48\xa9\xae\x3a\x75\x32\x27\xcd\xf7\x07\x6e\xa2\xe5\x1f\x20\xdc\xbd\xb2\x93\x28\xa2\xff\xa9\xc2\xea\x39\xe1\x3b\x5d\xdd\xff\x62\x7f\x5a\x17\x64\xac\xb1\x3d\xf4\x24\xa8\x31\x6b\x52\x97\x22\x48\x72\x2e\x0c\xc8\xe4\x2d\xea\xd7\xfd\x7f\x0e\xc8\x0d\xe4\x80\xfc\x06\x8b\x7d\xf9\x99\xac\xe4\x0d\xc5\x60\x06\x57\x57\x3a\x11\xcc\xe0\xc8\x94\x73\x91\xb7\xfc\x01\x84\x9f\x70\xfd\xb9\x78\xff\x16\xa4\x39\x19\x93\x6b\x4d\xf3\xb9\x43\xe0\x9a\x48\x66\x38\x36\xfb\xa3\xf2\x6e\xb3\x43\xe3\xb9\x33\xae\x4c\x24\x65\xd6\x40\x2f\xf4\x9e\xec\xec\x1f\x5e\xce\x70\x3d\xaf\xf3\x20\x8a\x76\x93\x80\x51\x2e\xb9\x74\x1e\x14\xfa\x66\x3e\x44\xe9\xba\x82\xf7\x99\x29\x69\x3c\xce\x63\xa2\xfc\x8c\x86\x79\xb0\x78\xa8\x3f\xd8\xd1\x83\xff\x07\xa6\x16\xde\x3c\x0f\x64\xd0\xb0\x50\x38\xb0\xf6\x66\xee\x83\x43\xf0\xfb\xef\xf9\x6a\x8b\xc0\x79\x02\x93\x5b\xc8\x9c\x3c\x6e\x8b\x5f\xc0\x21\xe3\x75\x40\xea\x41\x17\x7a\x3e\xa1\x3f\x1a\xce\x2c\x7d\x22\x54\xc1\x99\x04\x4e\x44\x2a\x18\x88\x9d\x30\x9a\x39\xbc\xe2\x3c\x79\x43\xf3\x90\xce\x5c\x69\x75\x99\x2e\x5f\xc2\x76\x27\x5d\xbe\xac\xaf\x3e\x2f\x8a\x67\xb3\x17\xe1\x96\x0f\xdb\x8b\x5a\x82\xcf\x0f\xc8\x2b\x2f\x00\x7c\xa6\xcf\x97\x27\x0e\x3e\x5f\xae\x7a\x7f\x22\x1f\x8d\xbd\xfb\xce\x17\x7f\xcd\xee\x4d\x8f\xfc\x34\x36\xdf\x9f\xd0\x69\x85\x6f\x79\x27\x4c\x73\xce\x71\x7c\xde\x2c\x4d\xee\x1e\x6e\x54\x5b\x11\x66\x3e\x91\xfe\xd0\xfa\xa3\x13\xb6\x3a\x5b\x19\xce\x9b\xe9\xb6\x34\x84\x3b\xa5\x8a\xc6\x88\x04\x36\x4e\xc7\x7f\xde\x14\x1c\x06\x31\x50\x7a\x39\xed\xed\x79\x73\x03\x14\x93\x70\x93\x46\x7f\xf1\x60\x10\xea\x82\x15\x82\x8d\x7a\x90\xe2\xc6\x01\xdd\xe7\x93\x1b\x42\xd3\xc6\x30\x63\x0f\xe2\xa1\xc2\xd3\x47\xc2\x43\xf5\x92\x4e\xa5\xeb\xf7\x23\x51\x43\x3f\x6c\xd4\xfb\x57\xfd\x00\x65\x9f\xe4\xe1\xc5\x40\x5e\x5b\x0a\x2e\x56\xc2\x70\xc2\x95\x0b\x96\x35\xdf\x97\x2e\x58\xd6\x9c\x7e\xe0\xfa\xe5\xb8\xdd\x24\x79\x52\x17\xa4\x8b\x3e\x55\xce\xb0\x72\x41\x8f\xe6\x8c\xa1\x17\x33\x22\x3a\x5a\xf8\x82\x29\xcd\xa9\x20\xae\x0d\x0c\x25\xf9\x75\xa1\xda\xda\x66\x15\xf9\x85\x58\xdd\xcf\xb8\x37\xa6\x62\xf5\xff\x58\x0b\x6d\xdd\xab\x50\x6c\x0b\x07\x5f\x05\xd1\xc2\xcd\x2f\xf0\xec\xd4\x2d\xed\x82\x21\xac\xfc\xcd\x48\x74\x15\x00\xbb\x9f\x5b\x03\xc3\x9b\x9c\x92\x73\xe6\xee\x1f\xe2\x0b\x7d\x81\x42\x69\xc3\x19\x97\xae\x5a\x50\x33\x45\x53\xf4\xc2\xd3\xee\x34\xae\x57\xe5\x88\x74\xd8\x5f\x15\xc2\x47\xc7\xcc\x05\xc3\xda\x87\x13\xa0\x65\x73\xb0\xe1\x55\x79\x97\xae\x7e\x01\x60\x20\xdc\x00\x77\xe9\x87\x24\xec\x52\xf3\x12\xc0\xaa\x15\xac\x57\xe5\xfd\x44\x37\xbf\xab\xc1\xe3\x5b\x9b\xee\x42\xd9\x34\x27\x26\xbc\xe0\xb2\xe5\xb4\x27\x17\xdd\xa7\x9c\xe4\xe6\xa2\x4d\xca\x65\xf5\x2e\xa8\xb4\xec\x25\x73\x75\xec\xd2\xe2\xff\x09\x14\x3d\xa8\xce\x8c\x75\x9a\xb6\x9e\x2b\xe1\x1f\x92\x7b\x35\x2f\x2c\x90\xfb\x19\xc5\xa0\x91\x49\x38\xeb\x82\x77\xbf\x93\x20\x5c\xc8\xbd\xe2\x4c\x9a\x17\x8b\x66\xd8\x5e\x77\x21\xf9\x8a\x9d\xdd\xae\x91\x9b\x50\xc3\x18\x40\x00\x3f\xb7\x08\x2d\x57\x37\x4d\x38\xf1\x3d\x0d\xcc\xc5\xd2\xdc\x01\xb1\xa5\xda\x8b\x1c\x83\x3e\x08\xe8\xc6\xbd\x74\x50\x50\x59\xba\x5d\x80\x8e\xae\x36\x77\x05\xe7\x59\x04\x04\xf1\x80\x80\xe2\x45\xf5\x94\x0f\xc7\x0b\x81\xa8\x4e\xee\x76\xbd\x38\x6e\x76\xb3\x1b\x5c\xf3\xad\x82\xbd\x80\xd4\xaa\xd5\x4b\x17\x93\x0d\xba\x44\xde\x05\xe8\xf6\x59\x98\x49\x09\xac\x5b\xe3\x85\xcc\x29\x4e\x26\x78\xad\x8c\x1c\xd1\xa8\x98\x01\xda\x36\xa8\x6b\x71\xe5\x34\x8a\x34\x94\x09\x3f\x5e\xd0\x71\x39\x1d\xe1\xb5\x88\x4e\xdd\x40\xae\x9c\x5f\x98\xec\x53\xe3\x46\x0d\x5c\xd7\x18\xb8\x5e\xf0\x56\x1d\x1a\x72\xa1\x6a\x99\x9d\x35\xaf\x9d\x2e\xaf\x52\xa3\x5d\x34\x9c\xb9\xc2\xdd\xb5\xf3\xae\xa3\x2e\xa9\xd1\x72\x51\xbd\x0b\x96\xb3\xcf\x3c\xc0\x99\xde\x6e\x58\x17\x7d\xe7\xed\xdf\x7f\x1d\x5c\x2b\xad\xc5\xc1\x51\x49\x1f\x72\xc1\xb2\xd6\xbc\x14\x07\x2f\x12\x82\xc5\x17\x9c\xe5\x5d\xa1\xe9\x62\xda\xe6\xf9\xe9\x93\x76\x53\x41\x9d\xeb\x44\x11\x0e\xcf\x64\x82\x29\xa1\xb9\x8b\xe5\xcb\x3e\xd2\x80\x68\x4a\x17\xf4\x0b\x5a\x2b\x07\xd3\x5d\x48\xec\xec\xdc\x3e\x17\x03\x43\x6d\x9b\xbd\x4e\x1e\x6d\x16\xc3\x27\x4e\x0d\x1f\x6d\x48\xee\xe7\xec\x0b\xd7\xc9\x99\xed\xfe\x01\xfb\xca\x07\x17\xd0\xd6\x57\xb0\x03\x6d\x19\xaa\x5f\x48\xf6\xe7\xb8\xfc\xeb\xe2\x18\x44\xf3\x95\x51\x0a\x1a\x14\x54\x57\x36\xbc\x5e\x84\x52\x5e\xdb\x8b\x1e\x43\xab\xff\xe9\x1c\xba\x12\x20\x98\x1e\xaa\x43\x3d\x69\x30\x16\x3a\xe3\xcb\x75\xf1\x20\xf2\x39\x73\x13\xc7\x4b\xd3\x75\x21\x56\xf4\x23\x0e\x6f\x6e\xaa\xf0\x17\x10\x7f\xe6\xae\x9b\x8a\xe8\xf0\x17\x5c\x38\x8d\x09\x6e\x52\x4e\x29\x71\x01\x7b\x35\x27\x7a\xba\x88\xbd\x7c\xb4\xc1\x61\xbf\x7c\xfe\xe7\xba\xf9\x7f\x0c\xca\x0b\xcf\x02\xbc\xae\xc6\x73\x65\x6a\xea\xe5\x1f\x90\xbe\xc0\x90\xe5\x81\x8d\xd4\x22\x1d\x55\x31\x8c\x68\xaf\x84\x62\xba\x8b\x5c\x0f\x4b\x63\x6a\x0c\x0f\x75\x41\x16\x67\xac\x92\xe6\xd3\xf4\x81\xef\xa4\x61\x14\x9c\xae\x9c\x89\xf2\x82\x85\xd4\x61\xf6\x17\x9c\xb0\x9c\x0f\xe8\x7a\x20\x05\x24\xba\xee\x5f\xae\x53\xe8\x87\x24\x71\xea\x07\xa4\x25\xd5\x2c\xde\x3f\x9e\xae\x4b\xcf\x80\x3c\x9b\x5b\x84\x7d\x40\x43\xbc\x61\x1e\x75\x22\xcb\x1b\x25\xd2\xac\x52\xbb\xe1\x19\x6f\x7b\xc3\xbd\x51\xaa\xa8\xbd\x8d\x67\x8c\x09\x20\xaa\xd3\x65\xe6\x06\xaa\xb3\x34\xbe\x99\xd4\x5a\xa7\xe0\x8d\x1c\xd6\x76\x08\xb8\xb7\xdc\x9e\xee\x11\x28\x4f\xa8\xf0\x2e\x2c\xb6\xa7\x19\x80\x7b\x94\x73\x91\xdc\x25\x0f\x2d\xcd\x19\xb4\x86\xf6\xbe\xbe\xa1\x35\xb4\x03\xca\x8d\xfc\x2c\x5b\xf5\xff\x38\xc8\x25\x72\xee\x82\x43\xce\x53\x50\x78\xa8\xb9\x7d\xe0\x40\x1d\xab\x77\x39\x91\x55\xc3\xed\x63\x84\x92\x37\x77\x21\x23\x7b\x40\x54\x5b\x69\x86\x98\xef\xda\x88\xea\x06\x0a\xac\x36\x51\xdf\xa9\x93\xf4\x24\x13\xf6\x49\x30\xdf\x2f\xec\x9b\xc6\x60\x77\xc5\x2a\xeb\x94\xbd\x53\x25\x69\x36\xa9\x64\x3c\x8d\xa9\x92\x46\x91\x00\x95\xe3\x07\x16\xde\x30\xae\xda\x35\xef\x6e\x3c\x64\xb5\x5d\x6f\x66\xc0\x76\xdc\xd2\xdd\x98\xe5\x46\x5d\x20\x64\xd4\x3e\xb8\x37\x42\x46\xdb\xe7\x7f\x0a\x2d\xbf\xc0\x5a\xb7\xb6\x75\xdd\x69\x4d\x35\xb3\xc2\x5a\xea\xdb\xdb\xcd\xa0\x50\xa7\xe4\xbf\x3b\xf1\x89\xfa\x40\x69\x34\x23\xa8\x9b\x1a\xc7\xe2\x67\x9e\x78\x3a\xd8\x6f\x20\xcb\x61\x24\x70\xc3\x9a\xea\xa0\x89\x7b\x24\x4d\x5a\x6d\xf8\xe2\x87\x0b\x6e\xde\x08\x13\xf5\x1d\xe4\x1e\xbc\x94\x48\x71\x7a\x0f\xf2\x93\x46\x35\xb8\x16\xfe\x1f\x86\x20\x8f\x1a\xee\x50\x8e\x4c\xb9\x83\x3e\x13\xba\x83\xde\xa8\xfd\x61\xff\xe8\x3b\x68\x5a\x97\x2e\xe0\x0e\x6a\xff\xd7\x9f\x62\x86\x6e\x54\xad\x75\x62\xda\x1b\xe9\xf6\xec\x20\x7b\xcf\x17\x04\x38\x9e\xf9\x86\xfa\xd0\x0e\x8e\x37\x40\xe1\xb2\x87\xf9\x0d\x0c\x68\x75\xdc\x3d\x73\xd6\xfd\x03\x26\xd9\xcf\x2c\x0b\xe2\x1d\xb3\x72\x8e\xc5\xce\xb0\x5a\x1a\xf9\xde\x8b\xfb\xc3\x0d\xd0\xf4\x20\x8d\xdf\x0d\xc0\xe6\xba\xb6\x37\x12\x87\xb8\x82\xd3\xbd\x48\x81\xc6\xcc\x7c\xd2\x76\x0a\xb9\x77\xc0\x31\x8b\x35\xd4\xf8\xb0\x4a\xfe\xde\xc9\x8a\x96\x73\x70\xa5\xb2\x63\xcb\x0d\x44\x58\xed\x23\x74\xc3\x84\xf9\x91\xe4\x07\x2f\x8f\x02\x32\x37\x4c\x96\x36\x03\xdd\x4c\xff\x6c\x77\x85\x3b\x21\xa1\xc5\xc2\x81\xca\x57\x66\x0c\x18\x2d\x3f\x87\xc1\xb1\xa3\x50\x89\x7b\xa0\x98\x90\xb2\xec\x86\x8f\xfa\xb2\xfb\xf4\x7d\x50\x7a\x8b\x93\x0e\x62\x29\x3d\x9f\x9c\x27\xe9\xa5\xee\x33\x47\xa1\x71\x9f\x1c\x85\x68\x60\x44\xa6\x0b\xd6\xde\xd0\xbf\xd9\x40\x76\x23\xfd\xb3\xbd\x5b\xef\x93\x27\x9e\xa0\xf3\x4d\x2f\x76\x1b\xea\x6f\xe4\xcc\xf3\xad\xe4\x4e\xc8\x58\xdc\x24\x75\x8a\x9a\x7a\x42\xc6\xe5\x16\xc9\x90\xcb\x44\xf3\x82\x59\x3c\x2c\x82\x11\xf3\x30\xcb\x92\x99\x6a\xe8\xe3\x3e\x92\x07\x11\x93\x9f\x9b\xfa\x7d\xa1\x1c\x96\x89\xbe\x50\xcb\xd8\x2c\xfb\xe2\xab\xed\xa3\x87\xbc\x6f\x5e\x21\x3e\x6f\x90\x6a\xd1\x44\x55\x95\x57\x1b\x5e\xe5\x86\x47\xf7\x83\xb2\x34\x3f\xff\xff\x72\x83\xbd\x7a\xef\x07\x9b\xc6\x14\x31\x39\xb3\xab\xa5\xde\x4f\x52\x20\x92\xe0\xcf\xd5\x9c\xa9\xec\x7e\x20\xba\x3c\x6f\x0f\xcf\xf2\x7f\x13\xfb\xfc\x98\xfa\xa8\xea\xb9\xa0\xd8\xdb\x4f\xcf\x84\x3b\x1a\xc3\x83\xf0\xc3\xf2\xf9\x20\xd7\x7a\xea\x07\x5c\xb2\xbb\x3f\xe0\x85\x33\xfc\x03\x15\x1e\xe1\x2f\x72\x71\x4d\xd4\x83\x7b\xb9\xbe\x80\xa5\x73\xb8\x0a\xfb\xb3\x41\xe9\xad\x7d\xf6\xc0\xa9\xdc\x9b\xe2\x41\xe9\x0f\x7b\x20\x3e\x1b\x34\x20\x9a\xc8\x87\xc1\x85\xd6\xd4\x3f\x4c\xc7\xe1\x9b\xd6\xb3\x25\x87\x6a\x9c\x1b\xdd\x36\xdc\xc7\x8b\x82\x6a\xd5\x5a\x3c\x40\x3d\x5d\xb8\xec\x29\x70\x49\x14\xae\x7b\x58\x86\xcc\xc5\x72\x1f\xa0\x9c\x65\x0f\xe6\xa7\xa4\x58\x76\x93\x49\x84\xdf\x80\xfd\xc0\x13\x83\xbc\x74\x8e\x86\x7a\x98\x97\xce\x72\xf9\x29\xbc\x1f\xea\x3c\x7d\x90\x22\x79\xd9\xf3\xf6\xa9\x98\xca\xe5\x67\xf2\xe8\x9f\x9c\x14\x1e\x1a\x73\x9d\xea\xf2\x61\x91\x5a\x57\x0f\x7f\x12\x28\x49\x46\x3e\x2f\x50\x2a\xce\x41\xf5\xd4\x9c\x57\xad\x4d\xea\xc3\xa6\x7f\xb8\xb1\xb8\xfe\x82\xbb\x4a\x83\x6e\x64\x06\xb1\x13\x70\x8f\x4b\x39\x3f\xb4\xac\x3a\x1e\xf1\x61\x19\x33\x6d\x9a\x87\x6e\xdd\xae\x83\xfb\xb0\x8c\x99\xbd\x0c\x1e\x98\x5a\x6d\x1f\x78\x12\xd6\x4c\xff\xf0\xee\x54\xab\xe2\x9f\x4e\xad\x5f\xf3\x0b\xb9\x94\x5a\x3a\x78\x89\xd9\xdb\xe2\x61\x49\xd8\xcd\x44\xe5\x52\xfa\x87\x94\x78\x1a\x67\xe7\xda\x6a\xaa\x53\xa3\x26\x41\xfe\x8c\x94\xf4\xfe\x81\xc0\x5c\x7a\x97\x07\x8e\x63\xd6\xdf\x3e\x70\x15\xb7\x1e\xe6\x19\xdc\x16\x3a\x75\x1f\xe6\x8f\xb3\xdb\xc2\x33\x2e\x7c\xe1\x16\x10\x19\xec\x61\xa0\x4e\x9a\xbd\x60\x9f\x80\x65\x5d\x50\xfd\x41\x04\x61\xd7\x61\xf4\xc0\x73\xfc\xb3\x05\x62\xc7\xb3\x26\x16\xb9\xde\x6c\xde\x7d\x18\xff\xe7\x24\xa2\x4f\x24\x3e\x14\x85\x2f\x18\xea\xf6\xcb\x7d\x60\x5b\xfd\x6c\x00\x80\x23\x5b\x46\x9f\x99\x8b\x2f\x92\x91\x0c\xce\x59\x4a\x9e\x89\x49\xf2\x1e\x43\x6a\xe2\xf5\xed\x81\x77\x50\x7f\x40\x8d\xaf\x94\x76\xcf\xa4\xb7\x67\x73\x17\x39\x0a\x13\x01\x9e\x17\xd8\x7f\x56\xae\xad\xbe\x40\xd4\xa1\xf5\x7e\xcf\xe2\xd2\x5a\xfc\xac\x1c\x86\xa8\x58\x54\xfc\x58\x20\xad\xdc\x9a\x7e\x83\xfe\x02\x7e\x61\xa2\xe4\xa4\xf7\xc5\x22\x13\x7b\x6b\xa1\xea\xc7\xfa\x2c\x2f\x6b\xb3\xb9\xa4\xea\xb3\xa7\xe8\x56\x27\x48\xf8\xe6\x0b\xfa\xb3\x43\x74\x0b\x09\x3c\x70\x4e\xb3\x8a\xe0\xd9\x29\x51\x2c\xbb\x59\xf6\x63\x6d\xfe\x02\x2c\x62\x11\x07\xc5\xdd\xfa\x6c\xad\x3d\x89\xd2\xdc\xd0\x88\x6a\x67\x8c\xe7\xc0\x0d\xd6\x93\x07\xdf\x33\xeb\x02\x9f\xa3\xbf\x2b\x6a\x26\xcb\x2c\x18\x52\x00\x3d\x07\x79\xc0\x44\x21\x2f\x86\xf5\x08\xcf\xc1\x25\xef\x7e\x81\xb7\x6c\x21\xbb\x07\xc1\x84\x36\xbb\x3e\xc8\xf1\xf6\x91\x41\x27\xf9\x54\x5c\x76\x22\x16\xd7\x3b\x81\xb1\x85\x76\xde\x78\xa0\xc8\xf3\x15\xf4\x39\xe9\xcf\x25\xfd\xcd\x73\x52\x27\xaa\x7b\xf1\x73\x71\xee\x45\x02\xd4\x6a\xbe\x93\x3e\x48\x3a\xf1\x99\x86\x2b\xf9\xc1\x1f\x40\xa8\x79\x1e\x2f\xca\x2c\x4b\x7b\x78\x84\xf9\x26\xff\x40\x0d\x66\xbf\xfd\x07\x06\x48\x47\xfd\x3c\x54\x7a\xd5\x3f\x65\xf4\x79\x60\x6c\xdc\xec\x0b\xf2\xa4\xb5\xd1\xe0\xe5\x86\x66\xd2\x1c\x0e\xc0\x66\xb0\xfc\x40\xc3\x65\x8f\x99\x07\x1a\xae\xcf\x99\xff\x90\x9b\x75\x13\x7c\x60\x6c\xb4\xf7\xf0\xf3\x90\x71\x34\xde\x87\x8c\xe3\xff\xc7\x7f\xff\x0b\x27\xaf\x7a\x80\xe8\x3e\x8e\x11\x0f\xf4\x53\xce\xb4\xf0\xb0\xbc\x86\x03\x3e\x1f\x66\x9f\xb0\xab\xc7\x03\x84\x27\x23\x45\xfc\x60\xac\x9c\x72\xc2\x89\xdf\x8f\x34\x4e\x3d\x93\xa6\xa2\xe7\x97\x26\x25\xbf\x8d\xdf\x0f\xda\x96\x7f\x8b\x18\xbf\x1f\x58\xf9\xdf\xa4\xc5\x0f\x80\x6e\xca\x0c\x17\xbf\x1f\x57\xbd\xeb\x99\x52\x61\xf3\x0b\x58\xf5\x7f\x6c\x12\xbf\x8d\x14\x85\x9e\xa1\xe5\x2b\xa2\x00\x76\xca\x4d\x76\x94\xf8\xa1\x50\x5b\x6f\x7e\xc6\x2c\x35\x0d\x01\x7e\x6b\xbd\xa9\x43\xa8\xb4\x7a\x13\xc9\xb4\x5b\x7e\x9e\x41\xd0\xbf\x83\x31\x7e\xac\x2a\xab\x43\x20\x7e\x70\xf1\x9f\x32\x15\xc5\x0f\xf5\x2f\x94\x2a\x33\x7e\xc8\xa5\xa6\xfb\x48\xfc\x0a\x64\xbe\x27\x09\x2a\xa8\xe1\x49\x64\x1e\xb4\xb5\xa9\x4b\x64\x83\xe8\x4d\x73\x00\xdc\xd5\x9b\xe6\x08\x6e\x71\x9b\x3c\x60\xe2\x57\x73\x52\xb4\x8e\x2c\xaa\x16\x9e\x85\x9a\x0b\x23\x22\x98\x09\x4d\x09\xb4\xe2\x47\x28\xd5\xd4\x44\xcb\x61\x6a\x58\x2d\x7b\x15\x19\xc8\xdb\x3b\x65\x68\x89\x5f\xe3\x26\xf3\x62\xb1\x6e\x9a\x8e\xe4\xf8\xb5\x74\xbf\xf3\x27\x07\xdb\xd0\x50\x1a\xef\x49\x6e\x82\x67\x76\x17\xe1\x1d\x0c\xd2\xf5\x02\xcb\xc8\x86\x19\xa0\x53\xd8\x15\xad\x38\xea\xca\x2a\x4e\x3a\x7e\x30\x1e\xf6\xae\xff\x47\xb6\xa0\xa1\xc3\x7a\x38\x55\x9b\x38\x7e\x48\xaf\x30\x55\x92\x37\x7e\x48\x10\x56\xbd\x2f\x46\xce\xa6\xbf\xb8\xf9\x85\x3b\xa1\x5e\x48\x0b\x02\xfb\x60\xf3\xff\x4c\x75\x2b\xad\xe1\x2b\x08\xd8\x82\xbf\x80\x25\x76\xf8\x19\x65\xb6\x36\x4d\x0c\xcb\x93\x7d\x9e\x29\x60\x3d\x53\x2c\x57\x16\x1e\xf8\xe4\x6e\x57\x97\x33\xbb\xd4\x4c\xa1\x7a\xfd\xcf\x53\x0b\x7f\xf5\x61\x26\x62\xbe\x83\x25\x92\xe0\xba\xa5\xca\xa7\xf1\x5b\x64\x99\xe2\x17\x68\x97\xed\xfe\x81\x27\x76\xf1\x27\x64\x2a\x0f\x03\x48\x63\xf5\xcf\x0f\x90\x39\x9f\x26\x78\x4b\x28\x7e\xe1\x61\x13\x62\xb2\x9d\xea\xcf\xee\x1f\x10\xc4\x58\xfd\x0c\x59\xff\xf9\x1f\xf1\xaa\x9f\xff\xb1\x37\xba\x56\x17\xda\x9f\x6e\x9e\x3c\x52\x46\xfc\xc5\x44\x14\x3f\xe8\x8a\xe6\xcf\xdb\x97\x90\xa2\x8b\xff\x8e\x9c\x36\xcd\x3b\x13\x18\x84\x27\x16\xd6\x41\x55\x1b\x8b\x1f\xfc\xb2\x94\xa2\x3f\x7e\xc8\x67\x20\x93\x67\xfc\x0e\xa6\xb3\x57\x83\xe7\x44\xf8\x84\x06\x74\x52\x3c\x78\xe7\xc2\x1f\x5d\xd6\xe8\xf8\xc1\x83\x5c\x36\xd3\xf8\x5d\x1c\x83\x37\xd9\x35\x49\xa2\xdf\xc0\x32\x79\xd7\x31\x8a\x2e\x4c\x33\x3c\x8e\xba\xf9\x99\xe7\xbf\xf7\xd4\x9d\xab\xa6\x0f\x10\xf4\x36\x7f\x16\x40\x3c\x61\xbd\x65\x1e\x96\x43\xf3\xf3\xce\x79\x14\x4d\x0f\xbb\xfc\xf7\xc2\xf6\xa3\x8c\x13\x7f\x6e\xf4\xd5\xd1\x79\xb8\xfd\x52\x96\x84\x7e\xe0\x16\x11\xbf\x6e\x69\xd2\xe9\xfe\x64\xf2\x8d\xa6\x1f\x38\x11\x7e\x4e\x7e\xf5\x17\x1c\x57\x31\x59\xd0\xd3\xe9\x0c\xdc\x52\x65\xa1\x3e\x37\xb6\xe8\xff\xf7\xf7\x8c\xfc\x77\xb9\x8b\x0d\x55\xa3\xfa\xf0\x73\xca\xd0\x7f\x13\xb7\x15\x3a\x77\x7d\x7e\xa0\x7b\xb8\x5a\xc4\x91\x26\xf5\x66\x6c\xac\xc7\xb4\x3c\xca\xd4\x26\x14\xbf\xc1\x3e\xb4\x7c\x5b\xe1\x2e\xf4\xd4\xbd\xa7\x5a\x28\x48\x21\xb6\x4a\x71\xe4\x2f\x10\xa5\xa6\xd8\xb9\xd8\x2a\x8f\x93\xea\x17\xe8\x4d\x28\x22\xe0\x7a\xbd\xc9\x85\x27\x36\x9a\x35\x74\x49\x8d\xad\x41\x80\x49\xc2\x6d\x8d\xa8\x74\xf8\x8b\xac\x7c\x22\x0e\xc0\xf9\x23\xab\x62\x6c\x08\x1a\x93\xbd\x2a\xb6\x4e\x08\xe5\xd5\x63\x25\xcf\xe5\x26\x3b\xaf\x5b\x62\xec\xad\x27\x97\x69\xae\xe0\x8c\xdd\x87\x9f\x81\xc6\x43\x33\xd3\x79\x9c\x57\xff\x00\x4f\xa8\xe5\x67\x32\xb6\xc7\x45\xd3\x48\x75\x8b\x3c\x7e\x3c\x75\x8c\x23\x53\xee\xc8\xd8\xe0\x6e\xdd\x43\x44\xbe\x87\x60\xad\x3a\x1b\xb6\x41\x1a\x35\x4c\x5e\xff\xc3\xff\xa3\xf2\xda\x74\x07\xf4\x13\xf2\xa8\x59\xde\xc8\x83\x1e\x9c\x58\x91\x8c\xa0\x30\x05\xb7\xc7\x16\x84\x2c\xde\x27\x38\xcf\xc2\x6b\x39\x39\xf3\xc2\x4d\x1b\xc2\xaf\xba\xd9\x61\xf2\x08\xf5\x18\x27\x6f\x35\x6e\x12\x95\x81\x7a\x88\xe8\x99\x31\x61\x7a\xa6\x0a\x43\x82\x7f\x83\x6d\x43\xfe\xaf\xb1\xe5\x55\xda\x12\xe4\x3d\xe1\xaa\x34\x9c\xb1\xc1\x7b\xa5\x7b\xe3\x2c\xca\x0b\xf3\x17\x8a\xfb\x28\xc1\x44\x6c\x2b\x97\x52\x0c\xb6\x88\x88\xbc\xf8\x70\x2d\xae\xde\xfd\x7b\xce\x83\x9a\x80\x75\x63\xfe\x4c\xf5\x8e\x61\xce\xbf\xdc\x8c\x62\xe3\xd9\xa7\xa3\x62\xcb\x0b\xb0\x65\x20\x2e\xc0\x4a\x22\x10\x1b\x7c\x5b\x96\x6e\xc0\xb1\x1d\x0c\x93\x5c\x1a\x02\x2f\xb8\x53\x14\x1f\xbc\x4c\x7a\xd6\xe0\xf6\xab\xca\xff\xb1\xbd\xf7\xd9\x29\x4d\x4f\x6c\xbc\xbf\x0a\x7a\x6e\xac\x30\xbe\x2c\xd1\x4e\xf8\x6c\xb8\x87\x93\x3d\xfa\x7f\xaa\x55\x2c\x22\x19\x36\xbe\x2c\x5c\x4e\x92\xa0\x51\x22\xc9\xf8\xf2\x18\xe0\x46\xd2\xbd\x4e\x17\xd5\x99\xde\x10\xbc\x10\x4f\x7f\xd0\xb1\x47\xfd\x01\xf5\x00\xde\xe5\x70\xd9\xed\x42\x80\xdb\x45\x50\xa9\xdb\xd9\x76\x91\x15\x9a\xdf\xe0\xc1\x60\xa2\xdf\x23\xb2\x35\xef\x6a\x24\x6a\xec\xe6\xdf\x9b\xba\x6c\x4d\x0b\x73\x86\xbb\x4b\x64\xcb\x51\x11\xca\xd8\x78\xc7\x5d\x6e\x8f\xb9\xfc\x34\xc6\xf7\xce\xdb\xaa\x59\x91\x55\x77\x7c\x1b\xdb\x50\x76\x47\xf5\x56\x62\x7b\x28\xb2\xbd\x92\xf0\xb1\xe8\x96\x5c\x88\x3a\xef\x3e\x68\x1e\x52\xe0\xf7\x91\xfc\xc1\x87\x04\x6c\x12\xca\x70\x11\xe5\x47\x39\xa6\x2d\x5c\xde\x03\xb9\x2a\x9a\x2a\xca\x8f\xf8\x51\x93\x58\x7e\x38\xf3\x97\x5e\xd8\x30\x67\x5a\xe8\x42\x4f\x58\x69\x42\xa3\x6c\x29\x46\xfc\x06\x15\x38\xc2\x3a\x65\xcb\x85\xf2\x1b\x18\x95\xa4\x40\xd9\xa8\xb3\x0b\x7f\xf1\xb0\x09\x51\xc5\x34\x30\x52\xf3\x45\x41\x86\x40\x85\x7d\x44\x41\xd9\x19\xa5\x29\x8f\xc2\xac\x2f\x4a\xa1\x19\x05\xa5\xbb\x95\xb5\x3f\x0a\x1c\x19\x54\xa8\x35\x4a\xde\x2a\x75\x25\x29\xb8\x55\xaa\x9c\x67\x14\xdc\x2a\x15\x5c\x15\x05\x8e\x0c\x53\x0a\x97\x28\xc8\x13\xa3\x5c\x0c\x51\x2a\x22\x85\xc5\x8d\x85\xd9\xb7\x15\x54\x16\xa5\x26\x47\xfb\x0b\x64\xf7\xab\xee\x12\x22\xdd\x8b\x85\xe2\x32\x4a\x30\x15\xa5\x11\x12\xe8\x24\x2c\xcc\xa6\xfd\xf3\xe2\xb0\xe0\xa1\x94\x67\x51\x98\x73\x50\xca\xb3\x28\xc8\x9f\xad\xa2\x79\x51\xde\x5b\x6a\x55\xc9\x90\x28\x0d\x91\x8a\x92\x5e\xe5\x45\x00\x7d\xfc\xfc\x0c\x7b\xb7\x47\xc9\x8c\x84\x52\x8d\x45\xe9\xac\xae\xa6\xc5\xef\x94\x0c\x3a\xd9\x4a\x4f\x16\xf4\x1b\xef\xda\xaa\xfc\x5a\x14\x1c\xe7\x0a\xc6\x8a\x02\x03\xc0\x92\xea\x2b\x0a\x7c\x68\x87\xd9\xa7\x13\x3b\xeb\xa8\x2b\xcc\x7e\xad\x6d\x55\x7a\x12\xa9\x99\xee\x0f\x00\x9d\x3e\x60\xf1\x6e\xe9\xeb\xa2\xc0\x00\x50\xbd\x34\x2f\x1e\x68\xbf\xee\x0f\x08\x5a\xcc\xa0\xf0\x8c\x90\x37\x61\x94\xc1\x7b\x59\xf1\x0b\x0b\xfe\x58\x7e\x26\xb4\xea\x7f\x49\xac\x10\x25\x88\xe5\x74\xa7\x2a\x81\x7c\xae\x9e\x76\x58\x03\x54\x6b\x2d\x4a\xe4\xae\xd4\xc2\x05\x81\xb7\xe7\xe0\x45\x14\xb5\x78\xc8\xb0\x07\xc8\xad\x26\x0a\x22\xab\x86\x47\x14\x44\xac\xba\x65\x15\x64\x9a\x51\xa1\xc1\x28\x30\x0f\xa8\xfe\x55\x14\x98\x07\x54\xa2\x2b\xca\xa4\x78\x94\x7c\x2e\x2f\x00\xe9\xc3\x3b\x08\xf1\xdf\x9b\xaf\x34\x25\x95\xfb\xa6\x69\x12\xb8\x79\x1a\x16\xfb\x10\x0d\xa9\xbb\xf7\x42\x2d\xf0\xbb\xd9\x91\x65\x57\xe4\x6e\x11\x85\x6a\x76\xdd\x47\xca\xce\x16\xd5\xc0\x4e\x22\xfd\x3e\x65\x78\xf7\x0f\x38\x86\x04\xf5\x0a\x33\xf8\xc5\xe7\x87\x24\x5a\x44\x22\xf7\xb4\xa2\x0d\xa2\x1c\x84\x2c\x1e\xf7\xc1\x03\x5f\x13\x03\x6f\x89\x61\x09\x7b\x50\x25\x33\xfd\x03\xab\x2b\xf9\x83\x85\x0f\xdc\x03\xcf\x0d\x51\x00\x8d\x79\x55\xe4\x7b\x94\x93\x17\x56\xcf\x1b\xbd\x5f\xbd\xfa\xc8\x3c\x33\x2c\xa1\xe1\xd9\xf0\x99\x36\xa8\xcc\x87\x05\x4f\x7a\x36\x4c\x7f\x40\x65\x97\x6e\x23\xe5\xe4\xf1\xad\x0b\x4e\x01\xe6\x18\x1e\x04\x0b\x55\x7f\x9e\x39\x0b\x1a\x04\xa2\xac\x7d\x59\x29\xac\x42\x6d\x8c\x5d\x50\x0b\x30\xcc\x2c\x17\xaa\x63\x08\x00\x17\x96\xf6\x33\x22\x2e\x37\x7b\xd0\x3a\x30\x9f\x9e\x15\xbe\x05\x55\xa4\xab\x37\xd5\x0d\x5f\xe9\xcf\xff\xf0\x00\x37\xcb\x3f\x14\x13\xee\x21\x21\x42\xf5\x0f\x60\x2f\xcf\x0a\x20\x82\x55\x42\x05\x08\x61\x78\xcf\x3c\x54\x45\x08\xb4\x97\x27\x83\x22\xdc\x22\xf3\x7c\x8a\xc6\x07\x05\x0d\xbd\xef\x1f\x0a\x43\xb5\x50\x59\x66\xda\x1a\xd8\x9a\x20\x41\x80\xb4\xc2\xd1\x72\x7c\x5e\x38\xf8\x85\x5f\xe0\x7d\xd7\x5f\x6c\x3c\x99\x74\x40\xd7\xc4\x11\x9f\x1f\xc0\x30\xd5\xcf\x9c\x88\xaa\x67\x46\xc4\x4f\x3d\xe3\x40\x77\x97\x50\x54\x2b\xcd\x77\xd4\x8d\xb6\xab\x4f\x83\xef\x2e\x93\xd3\x40\xd4\x92\xc3\xd4\x17\x28\xdc\x6c\x3d\x72\x45\x96\x62\x95\xd3\x8a\x5a\x78\x3f\x0a\xff\xc0\x13\x5d\x38\xba\xa2\xe8\xc7\x68\xee\x02\x99\xc3\x97\xff\x3f\x60\x93\x59\x7a\x26\xcb\x7f\x5a\x84\x68\x98\x7e\x7e\x30\x28\x7d\x90\x4a\x00\xc1\xe8\x8a\xa0\x9b\xcd\xe8\xab\x56\x72\x98\x80\x4f\x45\x5d\x66\x65\x49\x8b\x5a\x89\x00\x86\x7f\x20\x0c\x11\x46\xac\x48\x4e\x33\x7f\xf1\xa7\x93\xa8\x42\x11\xae\x9c\xde\x51\x2b\x63\x12\x35\xe6\xc6\xf3\x5e\x57\x87\x0a\xc5\xb8\xa5\x5f\x05\x24\x51\x3e\xf6\xa8\x8d\x36\x0f\xcf\x62\xa7\xa9\xc8\x43\xea\x64\x26\xe1\x9e\xda\xa9\x16\x95\x10\xaf\x1d\xcc\x23\xf9\x56\x3b\x4f\x5f\xaf\x25\xf2\xbe\x54\x4f\xf4\x60\xe0\xa3\xc0\x59\x65\x6a\x37\x1b\x46\x2a\xe2\xa9\x95\x86\x38\xea\xe0\xe1\x64\x22\x10\x60\x3d\xcc\x3e\x83\x37\x53\xc1\xb7\x9a\x5a\x6f\xdd\x3f\x2a\x0a\xc0\x29\xf9\x4c\xd4\xa0\xd0\x35\x8b\x32\x6b\xb0\x0e\xf5\x1a\xe0\xc8\xcf\x33\xec\x4b\x9f\x06\x40\x63\xf7\xf7\x49\xa3\x36\x09\x7c\x00\x94\x4c\x36\x6a\x00\xcd\x49\x16\xd4\x20\x89\xba\xe2\x54\x9e\xe9\xcb\x83\x98\x49\xa3\x68\x60\xfa\x38\x25\xdb\x8c\xca\x63\x5d\x5a\xef\x8a\x02\x6f\xc6\x5a\x95\x11\xcf\xd5\xcf\x94\x60\xd3\x3f\xc0\x5a\xa0\x13\xb7\xb2\xc2\x9b\xdc\x9e\xa2\xae\x24\x4a\x6f\xe4\x29\x2f\x5c\x50\x17\xc1\xb9\x84\x60\x4d\x4d\xba\x20\x60\xa5\xc9\x5e\x67\x43\x65\x9c\xcc\x47\x3c\x2c\xe2\xa3\xe9\x2f\xb8\x59\x75\xc7\xad\x3b\x13\x7a\x9b\x03\x76\x1a\x42\x2c\x0f\x98\xff\x57\xe9\x00\xa3\x22\xdf\xaf\xe3\x79\xa2\x22\x3f\x8c\x55\xac\x75\xe7\x5d\xc9\xd3\xbb\x53\x9c\x5b\x66\xec\x14\xad\x9e\xae\x03\x50\x54\x90\xa7\x42\x3d\x3e\x74\x94\x57\xd4\x58\x6b\x2a\x7b\x12\x95\xea\x71\x95\x31\x89\x7a\x50\x02\x58\xaa\x40\x03\x51\x95\x6d\x2f\xea\x41\x3e\xf1\x0b\x27\x9b\xf0\x0b\xd7\xcb\x89\xe6\xbc\x83\xe0\xd0\xbb\xfe\x04\xaf\x77\x3f\x23\x65\x91\x0e\xeb\x7a\xe6\xdc\x69\x9c\x27\xf7\xb4\x97\xf0\x24\x73\x6b\xb6\x4f\xf8\x85\x7b\x33\x9c\x0c\xb9\xf4\xfb\xdc\x7f\xe6\xe5\x54\x6a\x78\x45\x91\x07\xe6\xe7\x03\x80\x80\xc3\x92\x09\x5a\xfc\xa6\x6c\xa5\x51\x2f\x04\x5d\x98\x04\x16\xa3\x58\x66\x09\x26\x7e\x31\xaf\xb3\x32\xda\xf4\x66\xb8\x72\xf5\xd4\x07\xc2\x5b\x86\xe7\x01\x66\x7c\xb9\xc7\x47\xbd\xb9\xdf\xbc\xbd\x6e\x24\x88\xf4\x16\xbe\x33\x71\xa6\x46\x71\x53\x48\x68\x22\xef\x9c\x48\xbf\xc0\xe3\x5c\x6a\x88\x7a\x27\x95\x1a\x06\xb2\xfe\x2a\xb7\x5d\xd4\x17\xc6\x54\x45\xd4\x46\xbd\x49\xb4\x88\x84\x65\x61\xb8\x07\xa0\x9a\x36\x65\xb7\xac\x34\xde\x7b\x66\x9f\xdc\x6d\x62\x07\xf8\x67\x0e\xa3\x81\x87\x2c\x29\x4d\x47\x4d\x9c\xf3\xa7\xb0\xa2\xa8\x0f\x2f\x53\xe6\x26\x7a\x73\x2a\xa1\x4e\x54\xa4\x04\x5e\x1e\xf2\x43\xec\x27\x6e\x69\x0c\x57\x91\xff\x4d\xb4\x5f\xae\xc4\xd0\x0f\x0c\xe1\xae\x7a\xce\x51\x4f\xfd\x80\x95\xf8\xbc\x30\x50\xa5\xc6\xcf\x10\xdf\xda\xa9\x0d\x25\x89\x6d\x13\x68\x8c\x74\x9e\xba\x6c\xb7\x8d\xb7\x3e\xad\x5c\x63\x44\xcb\x4f\x62\xad\x95\x0c\xa7\x16\x0d\x85\x89\x14\xf4\x05\x33\xec\x79\x6d\x1b\x51\x8e\x24\x50\x2b\x64\xe1\xd0\xf3\xe4\x07\xa2\xba\x70\xdf\x89\xa8\x82\xd8\xf9\xee\x1e\x79\xa3\x0a\xb7\x48\x61\xb1\x99\x48\x6e\x82\xe5\x26\x71\x1d\xf1\xc0\xa9\x6b\x11\xa8\x69\x15\x49\x3a\x24\x46\x1b\x43\x89\x3d\x91\x2f\xa6\xa9\xf2\xca\x8f\x06\xd5\x8b\x12\x85\x45\xa3\x7d\x7f\x7a\x56\x10\x43\xa2\x94\xa7\xd1\xe0\x08\xa9\x7c\xa4\xd1\x1a\x6f\x60\xee\x11\x9e\x91\x43\xf0\xa0\xa5\xb9\x5f\x62\xb9\xb5\x9c\x57\xff\x90\x88\x42\xec\xd2\x28\x76\x8b\x3b\x61\x55\x0d\x6d\xab\xd6\xc8\xa4\x02\xfb\x8d\x51\x22\xca\x15\x17\x8d\xc8\x67\x93\x2c\x6f\x69\x2c\x91\x7e\xae\x75\x2e\xa7\xc8\xe8\xd9\xab\x26\x1f\x01\xc9\xc3\x73\x95\xda\x14\xb7\x88\xd0\x35\x33\x2d\xea\x3b\x28\x9b\x67\x34\x14\xe2\x9d\x9b\x4e\x8f\x06\x65\x8a\xaf\xf9\xad\x73\x2e\xf5\xff\x40\x4d\x17\x89\xc0\x36\xf2\xd8\x14\xc9\x70\x30\x18\x9f\xe7\x86\x4c\xee\x7e\x1e\x1c\x82\x18\x6a\x70\x08\x7e\xc6\x6a\x0a\x0e\xb4\x91\x13\xab\xa9\x1f\x0c\x2a\xfc\xbc\x41\x48\xe1\xbd\x0c\xe7\x4a\xa5\x6b\x88\x46\x68\xe6\xc5\x8b\x5c\x09\x11\x15\xbc\x3d\x98\x07\x91\x72\xcf\x42\xb5\x21\x50\x45\x49\x25\xa3\x51\x7d\x22\x7c\xd1\x60\x9f\x69\xd3\x4c\x4a\x64\xb5\x79\xab\x32\x35\x8d\x14\x8c\x6d\x4e\xbe\xa0\x2e\x27\x76\xe2\xf0\x07\x38\xa5\x85\x1d\xda\x4c\x99\x26\xa2\x17\xfb\x14\xf6\x6a\x2b\x05\x8a\x88\x58\xc9\x60\x9a\x5b\x3a\x18\x6c\x12\xe5\x6d\x51\x1e\xe8\x62\xd6\xd6\xe2\x1b\xee\x85\x18\xc6\x7b\x83\xe9\x5f\x54\x96\x32\xda\xe2\x5c\x98\x0c\x58\x70\xcd\x73\x7b\xd2\x29\x2a\xf6\x9c\x1b\xd1\x49\xad\x8c\x87\x8e\x12\x62\x4d\x45\x0f\xa2\x11\x8b\x6d\x96\x9d\x7b\xee\x47\xff\x80\x3b\xc2\x74\xa7\x39\x30\x8d\x23\x73\xf7\x79\xc9\x76\x1e\x8b\x9b\x7f\x20\xa3\xd5\xbf\xb8\x78\x47\x43\xcd\x31\xe7\x74\x8a\xc6\x04\xc2\x56\xdf\x37\x28\x7e\x7c\x65\x6d\x09\xdd\x74\xff\x6b\x44\x6a\xaa\xc0\x18\xed\x48\x92\x34\x0a\xe4\xe6\x9b\x9b\xe5\x3b\x02\x9d\x8b\xe5\x39\xe3\x9c\x95\xa9\x2c\xda\xc9\x71\xeb\x6e\xd4\xce\x1c\xb7\x7f\xc0\xfe\x12\x6e\x6a\x00\x52\x8e\xf2\x8b\x76\x62\xf7\x08\x06\xb5\xeb\xc7\x17\xf4\x05\x80\x52\xb1\x77\x54\x83\x39\x48\xb9\xe5\xa2\xc1\xfc\x33\xed\x8e\xd3\x2e\x32\xfb\xe6\x2f\x78\x18\xea\x42\xd6\xa0\xbd\x29\xf6\x85\x6a\xb0\xff\xa8\x84\x4a\x34\xba\x4c\x4e\x6f\xd1\x2b\xe7\x5b\x6f\xc0\x20\xa4\x04\x6a\xd1\x6e\x86\x6c\x68\xe0\xa8\xdc\xa5\xfc\x69\xd1\x6e\x6a\x6b\x74\xaf\x6c\x0c\x64\xf1\x38\x61\x31\x1a\x06\x11\xf0\xa3\x2c\x3f\xf3\x2d\xaa\xce\x0e\x83\x0a\x94\xfa\x2a\xf6\x9d\x6a\x77\xae\x9f\xbb\xc0\x5e\xb1\x5c\xb9\xb1\x7e\x9b\x0f\x4b\x84\xc2\x0c\x1f\xa6\xa9\x52\xd2\x45\xb4\x3d\x30\x44\x58\x7c\x52\xc5\x64\xa9\x40\xec\x65\x59\xf8\x24\x4f\x89\xe8\x87\xea\x9d\xe6\x1f\xc8\x00\x66\xc3\x4c\xf4\xa7\x1d\xdd\x7f\xd0\x58\x4a\x9e\xf6\x1f\x66\x52\x22\xa1\xa3\x34\x97\x32\xf8\x44\x07\x54\x52\xfa\x9c\xe8\x8c\x8d\xb1\x3b\x57\x47\x52\x97\xd0\xd2\x74\xd8\xa9\x94\xcb\x26\xfa\xef\xc6\xb3\xde\x07\x54\xb2\xd6\xab\x23\x83\x5f\xb1\xb3\x56\x47\xa0\x8b\x92\xc2\x44\xdf\x48\x81\x28\xde\x18\x53\xd2\xdc\x02\xd5\x3f\xd3\x2d\xe0\x32\x27\x79\xd1\x61\xe7\xb2\x0d\xb4\x6f\xa8\xcf\xa7\x53\xa8\x6f\x24\xd1\xcf\x0f\x54\xf6\x22\x99\xc9\x92\x37\x01\x84\xce\x2a\xb4\xbe\x55\xf5\xc2\x3c\xaf\xcb\x3f\x30\x4c\x4e\x44\x03\xdd\xcd\x4d\x90\xa2\x23\x54\x46\x99\xd9\xa3\xa3\xd2\x56\x7c\x9e\x83\xd3\xe2\x16\x58\x93\x44\xa3\x7e\xd1\xde\xfb\x82\x46\x55\xf2\x6e\x60\xb2\x0f\x24\xbc\xf5\x0b\x5c\x29\x2d\x6d\x41\xcd\x3f\x09\xff\x5e\x7f\x70\xbe\xf2\x33\x4a\x42\x08\xb1\x74\xa8\xb4\x2c\x2a\xfa\x0b\xfe\x8a\x0f\x87\x5e\x93\x35\x34\x8f\x70\xe7\x94\x27\x71\xf4\x3a\xff\xfb\x5f\x53\x81\x86\xe8\x35\x87\xe0\x1f\x60\x2c\x14\x7f\x77\xe4\x91\xa9\x9e\xc5\xca\x11\x98\x22\xca\x0d\x5d\x35\x7b\xcb\x95\x52\x8b\x8d\xf2\xcd\x4d\xa2\xe6\x82\x12\xaa\x44\x87\x99\x2d\x3c\x8b\x2d\xe7\x5d\x7d\x34\xca\xbb\xe2\x16\x16\xbe\xd0\xa8\xda\x8e\x67\x4d\x3b\x0c\x71\xd6\x24\xf7\xc6\x2c\xa7\x7f\x49\xff\x13\x1d\xf1\xca\xca\x85\x12\xbd\xa5\xa8\xd4\x14\x20\x60\xd9\xa6\xf0\xde\x73\xc4\xa2\xb7\xc3\xcd\xc1\x9c\x98\xc8\xb4\xfa\x07\xe4\x44\x35\x9b\x74\x8e\xd8\xdc\xdd\x79\xdb\x11\x0d\x9d\x03\xd4\xb2\x22\xac\x27\xcc\x99\x08\xeb\x51\xd0\x69\x74\x84\xf5\x58\x09\xdd\x3b\x15\xbe\xde\x4f\x48\x94\x53\xec\x74\xd7\x51\x7a\x4c\xb9\x01\xa3\x8f\x8d\x2f\xe8\x0b\xd4\x1e\x53\x64\x6c\xf4\xc1\x55\xd4\x9a\x8c\x0e\x55\x96\x48\x04\x32\x35\x28\xec\x23\xf0\xbe\x26\x69\x70\x0d\xfd\x3f\xea\xbc\x9b\x64\x44\x47\x87\xa7\x04\x1a\x42\xe7\x4c\x8a\x8e\x98\xa0\xf8\x8c\x80\x40\x49\x6c\x04\xb7\x58\xeb\x3c\x3a\x35\x88\x4a\xac\x1b\x3d\x72\x59\xd4\x02\x60\xaa\x6d\xa7\x1d\x76\xc2\xf8\x3c\x77\x1e\x2f\xfe\x00\x9c\x5b\xdc\x45\xc0\x3d\x58\x24\x42\xe7\x18\x9e\x43\x3a\x26\x29\x4d\x69\x74\xa6\x70\x54\x48\x48\x74\x18\x0e\x6d\x7a\xef\x74\xb4\x55\x4e\xd1\xe8\x30\x14\x86\x79\x0d\x89\xa2\x8b\x3d\xfe\xfa\xc4\xbc\x7a\xaf\x4c\xb0\x8e\xd7\x61\xa2\xd6\x4e\xb8\x81\x93\x24\xb8\x07\xb8\xa9\x79\x21\x81\x94\x55\x5a\x3b\x7a\x02\x65\x9d\xa1\x1d\x99\x7a\x6c\x8b\xea\xa8\xaa\x1b\xe6\xf6\x95\x24\xaa\xc5\x45\xf3\x96\xa5\x12\x72\x24\x86\x17\x62\xf1\x0c\x35\xd1\x28\xab\x6b\xbd\x68\xdf\x73\xe9\x34\x4a\xc4\xf7\x84\xb9\x67\xe7\x41\xdf\xfd\x03\x8e\x30\x4f\x34\xe0\xa9\xca\xa3\x45\xa7\x5d\x71\x13\xf4\xeb\xc8\x78\x68\xb7\xf7\x7e\x80\xff\xbd\x83\x0e\xf6\xa8\x41\xd1\xce\x38\x7d\x20\x1d\xec\x51\x24\x1e\xbc\x2d\x08\x4b\x76\x78\xde\xc6\xa7\xc7\x05\x61\x2e\x92\x0f\xe2\x1f\x2f\x25\x72\x49\xc7\xa7\x01\xce\x8a\x96\xf2\x00\x88\xb6\xac\x3e\xf3\x8c\xd4\xca\x20\xb8\x27\x7c\x1c\x9d\x1c\x83\xa6\xf9\xcc\x59\xd3\xa0\x10\x83\xdd\x7d\x5e\x9d\x84\xa2\x96\x85\x27\x7d\xf7\x44\x12\xe0\x70\x7c\xfe\x67\x20\x79\x77\x17\xa0\x59\xb8\xb3\x9f\x74\xf6\x34\x32\x80\x62\x71\x6e\xde\x23\x30\x65\xc6\xe7\xb9\xf2\x05\x11\xf9\xe2\xe5\xa2\x72\x68\xd1\xaf\x8e\x64\x2d\x9a\x96\x8b\xe6\x8a\xcf\x0b\x74\xf9\x72\x8b\xd8\x32\x9f\x06\x51\x32\xcb\x0c\x7e\xe5\x20\xdc\x22\xef\xf9\x9f\x37\x00\x5f\x04\x02\xfb\xcd\x99\x17\x10\xed\x40\xcf\xab\xfd\x49\x43\xd7\x01\xad\xc3\xad\xdf\xc9\x5a\x9a\x65\x6a\x29\x37\xf3\x1a\x6c\xad\x8a\x95\x8f\xce\xa2\x1e\x2a\xf5\x1e\x1d\xf9\x0d\xe7\xf6\x69\x82\xe7\xb6\x65\xd9\xf3\xe2\x7d\xfb\x85\xf7\x87\xe2\xd2\x0c\x8f\xac\x39\xb6\x18\xf7\x87\xc2\xec\xf3\x02\xd6\xde\x5b\x0e\x0e\x59\x8e\x11\x18\x74\xb8\x52\x52\xd1\x18\x08\x19\xb2\x07\xff\xf8\x51\xfb\xa1\x9b\xcf\xa0\x53\xf5\xf6\xf9\x82\x0c\x3a\xfc\x49\xce\x44\xd7\x0f\x74\x1e\xd5\x39\x35\xe0\x33\x6d\xff\xe4\x91\x8a\x43\x91\x39\x10\x57\x64\x67\xf2\xf1\xe3\x6a\x0f\x77\x0a\x96\x15\xfb\x8c\x1f\x39\x54\xbb\x64\x24\x7e\x96\x50\x1e\x5b\xd2\xed\x1f\x88\x60\xdc\xe9\x96\x93\xa7\x5e\x37\x5a\xf6\x86\xdf\x20\xec\x70\xb7\x88\x26\xb2\x8f\xf3\x28\xc4\x55\xd5\x3f\x40\xee\xea\x00\x1c\x85\xd7\x7c\x0f\x04\xa1\xe0\xd5\xe1\x44\xa3\xe0\x4c\x16\x0f\x8c\x42\x32\x4d\x44\x22\xdc\xea\x37\xa8\x86\xf3\xc8\xe0\x0a\x66\xef\xc8\x51\xa9\xfb\x31\x15\x34\xba\x6e\x52\x5f\x8f\x4a\x32\xfd\xcc\x8b\xbc\x07\xc6\xf2\xb2\xfd\xf3\x06\x56\x48\x1a\xc9\x51\x79\x64\xb9\x8f\xc6\x3b\xb5\xc4\xff\x68\x64\x5e\x9d\xc4\xa3\x61\xff\x49\x4e\x0d\x5a\x5e\xa7\x87\x0e\xcb\x6b\xb1\x2b\xec\x48\x07\x70\x8f\x8c\x30\x35\xfc\x05\xf5\x0d\x9f\x1f\xa8\x2d\x34\x9d\xa9\xc4\x34\xb7\x02\x87\x7e\x06\x46\x68\xf9\x59\x21\x38\x84\xf9\x0c\x19\x9d\x4b\xa8\x63\x6a\xf4\x01\x17\x34\xbf\x80\x33\x24\xdc\x40\x2e\x98\xba\x80\x8a\x32\x3e\x0d\xe4\xbe\xd7\xcc\x64\xc9\x58\x5d\xf4\xc7\xc8\xf5\x50\x9b\x44\x6e\xe1\x2f\xd0\xa4\x54\x3f\x63\x90\x27\xcc\x35\x8c\x58\xda\xc2\x3f\x50\xaf\xe2\x05\x83\x0a\xd1\x3e\x39\x23\x55\x88\x9e\x19\xe4\xba\xb1\x47\xcc\x08\x8a\x40\xaf\x06\xa1\x97\xd0\xdd\x20\xd4\xd2\xd9\x37\x02\xc9\x78\x97\x7b\x44\x06\xae\xe6\x0e\x38\x08\xff\x0f\xcf\x0f\xaf\x5d\x20\x71\xba\x8c\x07\x63\x92\x62\x7d\x3f\xe9\xab\x2f\xfd\xc7\x98\xb0\x7f\x79\x04\xa8\xf0\x61\x6f\x84\x31\x99\x85\x43\x1d\x24\x70\xab\x7e\x81\x95\x1c\x35\x22\xe4\xce\x76\x48\xdc\x98\x1c\xa1\x1b\xc0\xae\xf8\x10\x80\x33\x48\xb7\x8e\x41\x4b\xb0\x67\x0c\xe9\x12\x95\x9d\x22\xc6\x4a\xde\xfa\xd3\x99\x34\xe0\x1b\x66\x4b\xf6\x58\x88\x7b\x32\x1b\x2d\x84\x0d\x7c\x7a\xa3\x5a\xf9\x43\x0e\xed\x18\x22\x7f\xf1\x06\x22\xf8\x33\xe8\x8c\xae\xda\xf1\x31\x52\xb1\x29\x45\xf3\xd8\x61\x7e\x09\x7f\x41\x67\x70\x13\xb5\x53\x88\x7e\xde\xc0\x2a\xfa\xfc\xd8\x29\xba\xcd\xbb\x07\x96\xd5\x6c\x82\x7a\xaf\xaa\x57\x18\xe3\xa0\x66\xd4\xb3\x76\xa0\x94\xaa\xcf\xac\x23\xbb\x14\x0d\x07\x14\xcb\xde\x70\x27\x2f\x52\x42\x3c\x03\x20\xcc\x26\xe7\x41\x0f\x75\xcf\xc3\xc9\xfd\xe7\x41\x9c\x28\xfd\x22\x7c\x3d\x4e\x16\x22\x10\x6b\x9e\x14\x44\xde\x2c\x08\xc1\x2a\x16\x0a\x4c\x7b\x63\x77\xdc\xc1\xaa\x1f\xd3\x44\x03\x95\xd9\xea\x3d\x12\x95\xf9\xa4\xb8\x48\xb4\x9f\x29\x35\xbc\x3f\xae\x81\x17\x44\xc3\x0b\xba\xea\x26\xab\xc2\xb8\x88\xf9\x3d\x2f\x50\x51\xda\xdd\x62\x5c\xa8\xc1\x61\xc1\x05\x48\x65\xeb\xf0\xb8\xe0\x86\x6a\x76\xbf\x29\xf3\xbd\xa3\x5f\xcc\xd5\x6d\xa8\x1d\x37\x63\x09\x44\xc1\x8d\x4b\xb7\x05\x3c\x6c\xc1\xb6\xc3\x8e\x3b\x97\xda\x2f\x04\x5e\x10\x3f\xde\x3c\x1d\x2d\x63\x90\xd9\xd0\x36\xcd\x71\x53\x17\xe8\x89\xbf\x73\x9e\x35\xe8\x17\x86\x55\x15\x2d\x8b\xc1\x54\x86\x8e\xd7\x19\x0f\xc5\x8a\x19\xf0\xc1\x89\x20\x7d\xcb\x40\x32\x9f\xcf\x49\xf7\x50\xe3\x23\xb0\x38\xe0\x14\xf7\xe1\xe0\x27\x27\x5e\xc3\x82\xdf\xfc\xf4\x11\xf2\x24\x91\xa2\x1a\x4e\x6f\xaa\x36\x19\xf1\x4b\x22\x87\x7e\xd8\x00\xfa\xfd\x42\x43\x8b\x55\xcf\x49\xd3\xd4\x0f\x98\xc9\x4f\x8b\x13\xcf\x9b\x9e\x11\xe0\x13\x6e\x20\x37\x76\xe8\x87\x83\x71\x21\x7a\xa6\x1f\x69\xd7\x33\xf5\x1b\x92\x1d\x91\x90\x4c\x1a\xca\xd8\x08\x14\x25\xc0\x63\xa3\x26\x5f\x6a\xd6\xd8\x78\x17\x9f\x6e\x83\x13\xe5\x26\x78\x2b\xd5\xde\x0f\x28\x2d\xbd\x9a\x01\xa5\xa5\xa1\x4f\x20\x77\x8f\x5d\xd0\x23\xbd\xea\xb4\x29\xa2\x70\xe2\xfc\x01\x91\x8f\x8e\xda\x80\xd3\x9c\xad\xc3\x51\x78\xf1\x98\x6e\x81\x76\x13\x6d\xa3\x28\x3c\xdf\x25\xe1\x82\x35\x5b\xa7\xa9\xa8\x94\xfb\xda\x49\x51\x69\x43\x14\x87\x44\x25\xcb\xe8\x78\x8e\x54\x0a\xfa\x0b\xe2\x18\xcd\x14\x9c\xf1\x8b\x5d\x8d\xa3\x72\x3d\xcc\x22\x40\x68\x36\x30\x45\xe3\xfa\x08\xb7\x47\xc2\xad\xf9\x27\xc7\xba\x60\x55\xd6\x70\xf3\x60\xb0\xe2\x67\x42\x31\x6d\xd5\x68\x39\x2d\xea\xaf\x27\x01\x5a\xbc\xce\xdd\x2d\x89\x16\xd0\xb9\xd9\xbe\x1c\xd0\xb9\xd9\x70\x1a\x3d\xf7\x8d\x7f\xc8\x41\xeb\x07\xe8\xd0\x86\x24\x52\x8c\xf2\xdf\xff\x62\x9a\x49\x47\x85\x57\xb9\x16\x73\xf0\x76\x63\x0e\x44\xe4\x9c\x75\x68\x31\x58\x04\x4c\x24\xa5\x23\x9e\xd9\x01\x8e\x78\x36\x68\xc7\x60\x69\x08\xb3\xe4\xe0\x20\xfc\xcc\xcb\x8e\x99\x21\x28\x56\xbb\x7f\x28\x1c\xa6\x7f\x00\x4f\xea\xda\x11\xac\x86\xe6\x44\x0d\x11\x84\xe7\x12\x41\xc1\xec\x39\x76\xfb\x0e\xd8\x7b\x67\x71\x93\x0f\x9e\x35\x0c\xd8\x7f\xc3\x79\x11\x22\xdd\xe1\x85\x26\x02\xe0\xc7\xc6\xda\x00\xf8\x99\xba\xa7\x04\x12\xd7\xd8\x10\x1b\xac\xf4\x61\xb3\x5c\xd0\xe9\xcd\xee\xa4\xb1\x68\xd3\x58\x7e\x83\xf2\x40\xea\xfe\x58\xec\x43\x73\xc7\xe0\x70\x15\x3d\x8d\x40\x9d\x55\x9b\x72\x83\x5a\xaa\xe2\x99\x81\x56\x6a\x16\x8f\x6b\x47\x71\x06\x2f\xe8\xce\x05\x35\x13\xc2\xce\xda\x7c\x7b\x8a\x3d\x0b\x24\xbb\x09\x44\xb2\x7e\x88\xb8\x70\xd3\xf1\xff\x94\x10\xc3\x4d\x72\x2b\xe8\x9c\x8b\x83\x64\xab\x8b\x83\x88\xc5\x4c\x73\x80\x4f\x2d\xa6\x0e\x42\x57\x13\x75\xe0\xf0\x17\x94\x8d\xcc\x53\x63\x0e\x38\xc8\x33\x5a\x60\xf8\xcc\xd9\x5e\x19\x07\xb7\x8e\x05\x3e\x6a\xe0\xdb\xb8\x1b\x27\x2f\xbb\x16\x39\xc8\x17\x6d\xfb\x65\xa4\xcb\xbc\xc5\x39\x21\x8d\x30\x4f\x5c\x54\xc9\x78\x39\x2f\x4a\x00\x21\xd2\xb8\x72\x58\x7e\x83\x7d\x68\xdc\xc4\x30\xd6\xce\x06\xca\xbd\x5a\x39\x1b\x50\x1c\xf9\xa6\x14\xc0\x34\xd6\x94\xc6\x9d\x7c\x2d\xa2\xa0\x16\xfa\x4c\x3d\x34\x3f\xd3\x07\xe7\x9d\x0c\x23\x12\x6e\x96\xa3\xf3\x07\x94\xdd\xba\x07\xc5\x0b\x5a\xaa\xd3\x49\x04\x93\xd3\x0c\xff\xbf\xb3\x45\xb7\x70\xf2\x07\x13\xc9\x8c\x05\x7e\x06\xdb\xfb\x24\x85\xe6\xc8\xb6\x87\x78\xa8\xd6\xb1\xac\x65\x99\x7b\xc7\x93\x05\xf2\x2f\xdb\x61\x24\xd2\x05\xce\xc2\xf8\xa1\x29\x58\x90\x37\x60\x55\x9d\x45\xd0\x2a\xa0\x4b\xf2\xc5\x78\xa2\x80\xac\x5d\xe0\x26\x4a\xa3\xcd\xb2\xf9\x85\x9c\x98\xa1\x1f\x16\xdf\xd8\xf4\x03\x9b\xf4\xf3\xc5\x17\x8a\x7e\xe0\xce\x89\xbf\x14\x2f\x8a\xb9\x71\xd7\xe8\x4c\x9a\xa8\x93\x61\xf5\xd8\x44\xe8\xbd\x37\xee\x44\xb6\xc0\x4d\x06\x90\xb9\x25\x81\x1a\xd3\xc6\x53\x55\xb0\x68\x16\x6c\x54\x9d\xb2\xb3\xc0\x90\x1c\x7e\xa6\xa8\xd6\xf9\x31\x53\x45\xf4\x79\x03\x95\x54\x4c\x13\x82\xf3\x6d\xcd\x9e\x74\xe3\xd7\x5d\x64\xd2\x09\x5f\xa5\x38\x62\x56\x2e\xb6\x04\xf1\x44\xc1\x58\x3b\x27\xce\x8a\xe0\x6f\x89\xf6\x99\xda\x1d\xdd\xd1\x66\x0d\x72\x87\x68\x00\xb8\xb0\x8e\x6f\xd6\x87\x89\x5d\xfe\x3d\x43\x55\x13\xbe\x08\xcf\x54\xd5\x08\xaf\xcc\x86\x63\xb2\xfb\x85\x20\xd5\x7e\x21\xf9\xcb\x6f\x10\xca\xe9\x28\x9e\x0d\xb7\xd3\x4f\x93\x2c\x73\x28\x09\x35\x3b\x9d\x07\x65\x8f\x9a\x09\x20\x04\xe6\x26\xf0\xc0\x72\x14\xe4\x84\x11\x4e\xa5\xf6\x62\xf6\xe4\x27\xcd\xcd\xe0\xf2\x98\x25\x06\xa2\x2c\x4c\xe6\xa0\xfb\xc9\xf2\x0b\xdc\xbd\x9b\xdf\x40\xaa\xa9\xe1\x17\x4e\x28\x0d\x34\x2e\xa8\x62\xe2\xfb\x03\x0e\x2d\x13\x15\xa8\xbd\xf3\x79\x06\x24\x95\xd6\x71\x06\x3c\x18\x3d\x51\xd0\x9b\x58\x59\x37\x91\x1a\x66\x39\x91\xcb\x9c\x94\xb3\x5a\x6f\xe4\xb1\xb3\xc2\x70\xc2\xe5\xdd\x9e\xc7\x73\xe6\x90\xd4\xe3\x64\x0f\x1a\x12\x03\xdb\xcc\x51\x3c\xea\xa5\x39\x9d\x93\x8a\x04\x0f\xe1\x3d\xfb\x6b\xf3\x36\x41\xd6\xe0\x52\xfd\x4c\xa1\x2a\x38\x3b\x61\xa0\xb2\xe9\x67\xae\x40\xe2\x63\x51\xc4\xbc\x31\x06\x72\x13\xf6\x2a\x2b\x0f\xe7\xa2\xe8\x28\xfe\x81\xca\x5b\xcb\xa7\xc4\x0a\x42\xa8\x73\x4f\x21\xa9\x95\x84\x05\xcb\x5a\xb7\x99\x58\xc1\x0c\xb7\x33\xfa\x54\x7d\xec\x64\x6a\xc9\xdd\xf9\x62\x85\x62\x4f\xa3\xb9\x93\x4a\x3f\x93\xe9\x3f\x2f\x20\x02\xcb\xb9\x88\x26\x92\xd1\x58\x0b\x37\x8f\x3c\xaf\x34\x13\x47\x52\xad\xc9\x3f\xb8\x0b\x2c\x66\x11\xc1\xbf\xc6\xe7\x13\x6c\x4e\xc1\x8f\x09\xaf\x2c\x2b\x50\x26\x9d\xb2\x54\x70\x32\x26\xac\x5c\xbe\x33\x4f\x3a\x69\xd9\x03\x7f\x22\xe4\xdf\xca\x8b\x79\x24\x03\xa8\x4b\xaa\x5c\xcc\x72\xa8\x3d\xe1\x0b\xee\x44\xfc\x9d\x0a\x89\xc4\x3c\x69\x7e\x9f\xfe\x20\xf7\x9d\x88\x3e\xf3\xe4\xf7\x1b\x98\x5b\x0b\x56\x24\xb9\xb1\xa3\xc6\x4c\x0d\x8b\x40\xd6\x3c\x93\x23\x34\x51\xc8\x12\xa0\x82\x17\x31\x51\x6b\xde\x0a\xce\x99\xf0\xc4\x1b\xe5\xe2\xcc\x6e\x7f\xca\xc5\x30\xe1\x44\x66\x25\xd2\xbc\x78\x40\xea\x6a\x30\x2f\x5e\xd2\x2d\x98\x09\x66\xbc\xd3\xd3\x87\xcc\xc2\xe7\xe2\x3c\x9b\xa9\xd3\x2e\x25\xd4\x36\x6f\xda\xfc\x75\xbd\x98\x54\xa1\x58\xa0\xa1\x18\xbd\x8d\xd1\x33\x5d\xbc\x3c\xd1\x37\x17\xdf\x0d\xc0\xd7\x42\xa0\x6d\x3e\x38\xe2\x94\x52\x37\xe6\x43\x19\xea\x89\x7e\x38\x70\x7f\x91\xe3\x14\x0d\x28\xcd\xda\x94\x6e\x2f\x26\xa3\x02\xed\x07\x3e\x91\xdb\x67\x5a\xb2\xc3\x1f\x7e\xfa\xa2\x36\x9f\x9c\x89\x7f\xe3\x58\x2c\xdd\x65\xa7\xaf\x95\x2a\x92\xa6\xe7\xa4\x62\xea\x07\xcc\x8c\xae\x44\x8b\x56\xa7\xf1\x69\x81\x66\x78\x75\x81\xec\xc4\xb3\xe8\x5c\x5c\x48\x6f\x67\x3c\xb1\x88\x37\x74\xa1\x59\x48\xed\x63\x49\xbf\xb6\x9c\xeb\xa5\x1f\xb8\xf3\xaa\xbf\x38\x39\x0a\x37\x89\x13\xcb\x2e\xd5\x8b\xc9\x07\x1c\xe8\xbc\xca\x8f\x6f\xa8\x0d\x1a\x9d\x1c\xe6\xb9\x0a\xe5\xbf\xc8\xa0\x49\xc9\xae\xbc\xab\x80\xef\xa4\x09\x58\x28\xb3\x60\x70\xb8\xe0\x33\x65\x78\xb9\xe0\x21\x5f\xec\xea\xbb\x0a\xcf\x38\x01\xa7\xf5\x82\x94\x69\x35\xcb\x62\x64\xe0\xf2\x17\xf4\x91\xb7\x67\xd7\x42\xe0\x5f\xd9\x7e\xfe\x01\x93\xa5\x63\x6e\xd5\xe4\x11\x51\x55\x11\x39\x2a\xf4\xb6\x10\x18\xd8\x94\x48\x37\x56\x65\x52\x1a\x0d\xb3\xe6\xd4\xa9\x85\x06\x34\x27\xc9\xb9\x5a\x86\x15\xeb\xb9\xf0\x03\xbf\xd0\x48\xa4\xdf\xe8\xec\x53\x44\xc0\xaf\x3e\x7e\x9f\x3e\x80\xe7\x8a\x9b\x80\x75\xd4\xab\xd5\xb0\x18\xc5\xef\xf3\x30\xd6\xbd\x79\x21\xa9\x51\xb1\x8b\xf3\x42\x9a\xe3\x62\x8f\xe6\xd5\x5f\x39\x66\x41\xb3\xfa\xc6\x17\x34\xfb\x1d\x07\x9b\xc4\xc8\x62\x41\x59\x87\x99\x2f\xb8\xe5\x1b\x21\x2e\x44\x2c\xda\xde\xba\x3a\xb7\x8a\x9f\x27\x89\xd4\x62\x51\x53\xb3\x4c\xc2\x85\x00\x46\x31\x3a\x80\x97\x4d\x33\x0b\x5e\xf8\xd3\xff\x0f\xae\x84\x08\x82\xab\x93\xc3\x34\xd7\xe8\xd8\xcc\x9a\xa5\x41\x7c\x59\xfd\x02\x6a\x5b\x7a\xad\x47\xf2\xb8\x7b\x38\x38\x66\x8d\x61\x30\xc3\x9e\x5e\xa0\x2f\x52\xd1\xad\x6b\xc1\x95\xc8\xea\xca\x05\xd7\xa1\xb0\x67\xdf\x0a\x0e\x5a\x2b\xc5\x1a\xf4\x76\xc0\x5e\x91\x12\xc5\x7d\x70\x37\x5b\xc4\x50\xed\x22\xe1\xbb\x60\xe3\x72\xf2\xc8\xc5\x32\xf6\xcd\xff\xa3\x52\xbe\x8e\xa8\x05\x13\x56\xb4\x3f\xa9\xec\xd6\x24\xbd\x9a\x44\xa6\x2b\x5e\xa6\x17\x19\x93\x5c\x98\x3f\x16\x80\x9f\x4a\xb5\xc7\x9a\x48\xfa\x6c\x3e\x79\x81\x5f\xb5\x09\x6a\x2d\x72\x9e\xe5\x00\x42\x1f\x3f\x79\x0c\xd7\x02\xbe\xb6\xc8\x5c\x29\xac\xb4\x2c\x50\x02\xb5\xe5\x29\xa2\x47\xff\x32\x51\xb4\x7b\x59\x1a\xad\xa4\x5a\xe3\x82\xab\x92\xcf\xf9\x45\x2b\x56\x91\x2a\x63\xd1\xd9\xde\x2d\xc0\xd7\xde\x87\xe8\x22\xae\xb3\x97\xf3\xda\x79\x31\x14\x3e\x5d\x04\x76\x16\xe4\x3b\xb9\xab\xf8\x85\x17\x21\xf9\x90\x5c\x3b\x37\xad\xb7\xdc\x0b\xec\xaa\x33\x0c\xad\x03\xb9\xca\xbd\xe5\xe0\xdc\xe4\x23\x72\x1d\x04\xa3\xcd\x3f\xe4\xbc\x68\xae\x8f\x5c\x4e\x0d\x8b\x85\xee\x9b\xbb\xb8\xb1\x9a\xfe\xe0\x81\xf2\x53\x83\x40\x05\x09\x55\x90\x8b\x45\x10\x67\xd1\x75\x72\x87\xe8\x46\xb6\xe8\xac\xe4\x4c\x0f\xeb\xe4\xb6\x94\x4e\x68\xb1\x86\xd8\x47\x48\x23\xb7\x93\xc3\x6f\x17\x0b\x44\x38\x03\xec\x82\xa5\xcc\xa9\x1e\xd6\x99\x13\xa7\x89\x81\x16\xe9\x43\xe5\x45\xaf\x78\x8d\xe2\xca\x93\xc5\x3f\x74\x74\xa9\x16\xe9\xcc\x5f\xa4\x33\x5a\x2c\x77\xef\x2e\xaf\xa4\xc9\x2f\xf0\xbc\xfb\x34\xc9\xf3\xce\xcb\x7d\xd1\x43\x4f\x2f\xd0\x34\x66\x67\xe9\x05\xd3\xd8\xb2\x48\x46\xd5\xaf\x62\x57\xe8\x75\x73\xbd\xdd\x02\x53\xb8\xf9\x99\xe7\xa3\xae\x2f\x0b\x81\x93\xb6\x00\x2c\x00\xbd\xcf\xe9\x07\x87\x24\xc7\xb9\x2d\xa8\x9d\xd6\xf8\x34\x70\x70\x10\x26\xe1\x44\x0b\x6e\x91\x97\x13\x7f\x81\x0a\xac\xcd\x12\xf1\xe1\x76\xd7\xc5\x61\x51\x8b\xa4\x2a\x5b\xb1\x00\xec\x6c\xaf\x5b\x74\xcd\xdf\x74\xdc\xed\x80\x6d\xbe\xb1\xef\xcc\xee\xe0\xcc\x1c\x3b\x1c\x90\x9a\xd3\xe3\xee\xd0\x33\x55\x03\xd4\x1d\x25\x58\x8b\x3d\xd9\x77\xd8\xb6\x2c\xd6\x76\xe8\x9d\x9a\x13\xea\xee\x4c\x6c\x5c\x74\x43\xde\x51\xa3\xd5\x38\x7b\x4f\x28\xa8\x71\xec\x70\x40\xb2\x50\xda\x01\x0d\x1d\x02\xb8\xb3\x44\xab\xd3\xe9\xee\x5b\x43\x09\x26\x3f\x53\xce\xe9\xd2\xb5\x6f\xa8\x6d\x1f\x6e\x01\xc9\x18\xb4\x39\xf7\x84\x86\xdd\x3f\xa0\x6e\xce\xf4\x33\xae\x33\xce\xcf\xbb\xc3\x3b\xc9\x3b\x69\x2f\x3c\x4b\x34\x86\x92\xab\xa5\x2e\x4b\x4e\x9c\xe6\xa5\xf0\x00\x93\x44\xd8\xe9\x6b\xe4\xec\xbb\x3b\x8c\x5d\xb5\xfa\x99\xbb\x53\x90\x78\x67\xd9\x89\x51\xfe\xe4\xd2\xb0\xa3\x26\xc5\x67\x6d\x2b\x4b\xfb\x88\xe4\x0a\x9e\xf6\x10\x2b\x71\x87\xb6\xea\xce\xd0\x49\x27\x20\xd9\x6b\x72\xb9\x98\x01\x9e\x4b\x9f\xb5\x87\xe1\xac\x0e\x77\x41\xc5\x81\xff\x87\xe0\xf6\x42\x52\x17\xa6\x8d\xbb\xc3\x8c\x66\x0b\xe4\x0e\xb7\x26\x27\xb0\xd8\x51\xad\xeb\x33\x63\x2d\x65\xa4\xc6\x98\x90\xd1\x1c\xde\x68\x52\x12\x45\xa9\x3b\x93\x32\x6d\xa7\xee\xcc\x2e\xca\x3b\x9c\xef\xbf\x2d\x9c\x6c\xd2\x4d\xc0\xf9\xdc\xcc\x05\x2f\xa7\x22\x3d\xc4\x9e\xba\x35\x11\x0d\xff\x79\x3b\x20\xef\x9d\xc2\x46\xf8\x6e\xef\x94\x99\xba\x0b\xed\x9d\x2b\xa3\x69\xe8\x3c\x21\xbb\x9b\xa4\xde\x52\x02\x6c\xef\xc9\x4b\x22\xa2\x53\x21\x23\x84\xbf\x0f\x4c\x6d\xf5\xc6\x1d\xf4\x06\x57\xa7\x23\xc9\x52\x13\x09\x03\xa5\x06\xda\x07\x67\x46\x03\x49\x6d\x9d\x10\xcc\xce\xe0\x4b\xef\xaa\x91\x54\xa9\x0f\xf8\x45\x39\x9f\xeb\x1e\xac\x08\xa2\x16\x83\x1b\xd9\x1b\x15\xa9\x9d\x1d\x9b\xb9\x07\xcf\xe5\x4f\x0b\xa4\x49\x13\x41\x6b\x5d\xb8\x01\xc8\x16\x6f\xa1\x04\x89\x5e\x0d\x54\xfd\xb2\x1f\xfe\x3e\x73\x8f\xa9\x87\x89\x64\xfa\x42\xae\xfb\xe4\x41\x6d\x9a\x50\xea\xc2\x51\x5a\x3b\x2a\x5d\x6c\x32\x28\xec\x48\xb6\x19\x4e\x84\xbb\xc3\x13\x6a\x0d\x13\x0d\xd7\x27\x27\x67\xdd\x53\x67\x68\x96\x9a\x94\x1d\x26\x62\xf1\xb6\x2c\xcc\xbf\x27\x38\x34\xd7\xa1\x9c\xac\x43\x90\x77\x80\xc5\x58\x6e\x81\x5b\xc7\x33\x83\x7c\x9c\xcb\xfb\x00\x1e\x51\x4e\x9c\xba\x2f\x30\xa5\x2e\xbe\xfb\x22\xd1\x9a\x86\x95\x33\xab\x51\xb1\x8a\x85\x8e\xa7\x9d\x91\x9d\x9f\xb5\x62\xe0\xe6\x67\x71\x76\x2c\xa6\xd7\x66\x67\xd2\x51\x8d\x89\xe9\xb5\x8a\x4f\x06\xa4\xd3\x72\x00\xfb\x8e\x6c\x5a\x06\x86\x3b\x4c\x7f\x4e\xd0\xb9\x1f\xd9\xa3\x66\x1a\x51\x96\x6b\x7c\x7e\xe0\xa8\x45\x23\xa3\x2e\x4b\xb8\x49\x38\x1f\x79\x1a\xe8\x20\x35\x3e\x3f\x50\x9b\x12\x6e\x12\x47\x87\x80\xdd\x7e\x92\x08\x3f\x37\xfc\xaf\xf7\xa1\xce\x53\x05\xc2\xd8\x4f\x82\x76\xcf\x34\x6c\x83\x0e\x0e\xde\x4f\xae\x84\x66\xe5\xe4\xf5\xec\xd3\xc2\x8e\x0f\x34\x4d\x2c\x2d\xeb\x7d\xca\xf4\x5b\xf6\xa8\xda\x61\x5c\x74\xa2\xc7\xfd\x4c\x48\xe6\x16\x38\xa6\xf8\xd3\x41\x74\xc1\x8e\xa3\xfb\xe5\xfe\x82\xca\xe6\xe8\xba\x1d\x35\xc5\xd6\xe7\x99\x13\xa0\x55\xa3\xa6\xce\x91\x05\xfb\x85\xd3\xda\xcb\x8e\xfc\xd8\x4e\x33\xb3\xbf\x80\x31\xec\x58\xb7\xdf\x84\x56\x9a\xa0\x9b\x05\x53\xd5\xde\x0b\xff\xaa\xad\x0e\x3b\x6a\xc0\x3a\xc1\xfc\x7e\x23\x59\xc3\xf4\xff\x3c\x29\xa5\x1e\xdd\xef\x9c\x71\x51\x00\xc5\xdf\xe7\x60\xbc\x79\xad\xf2\x33\xa1\x9a\xb0\xfc\x7e\x73\x08\xee\x02\x35\x33\xcc\xb9\x70\x5f\x77\x3a\xbc\x3d\xd1\xa1\x99\xe0\xe1\x15\xc6\xc8\xed\xa1\xbf\x97\x7a\x78\x10\x1a\xe7\x93\xf0\x21\x84\xd5\x24\x20\x05\xf8\x87\x6d\x9f\x9c\x75\x37\x98\x88\x55\x34\x32\x8f\x86\xf3\x74\xed\x08\x05\x75\xf6\xa6\xe3\xc5\x9b\xdd\x09\xf8\x0e\x38\x52\xb9\xcb\xe3\x87\x79\x1e\x7e\xa6\xea\x52\x32\xe7\xa0\xb7\xbb\xa4\xdc\x81\xe4\x63\xce\x92\x71\xc0\xb7\xdd\x99\x9b\x0e\x94\xc8\x70\x3e\xbe\x63\xa3\x9a\x52\x04\x20\x15\x59\x38\xf0\xe6\x80\xd1\xb2\x59\xe4\x1c\x48\x35\x66\xcd\xc6\x01\x1f\x28\xb3\xda\xb1\x11\x93\x69\x6b\x1c\x4c\x10\x2e\x65\xfb\x41\x9b\xa4\x63\x27\x8e\xf2\x9e\xab\x4e\xfc\x7a\x14\xe6\x06\xf5\x73\x0e\xda\x1f\x60\x3b\x0f\x3f\x27\x73\xb9\x0b\x1e\x0f\x52\xae\x1e\x85\x17\x64\x49\x88\x83\xa5\x5b\x3d\xee\x92\x4b\xa7\x1f\x2a\xaf\x50\xda\x73\x47\xea\x10\xab\xdf\xc0\xa6\xd4\xd9\x7e\x54\x6a\xe7\x64\xa2\x3e\x50\xc2\xdf\x49\xdc\x8e\xca\xc5\x74\x03\x48\x40\xa5\x4d\x74\xd4\xbc\x11\xb9\x4b\x82\x43\xa9\xb2\x0f\x6a\x08\x8b\xf6\xd9\x01\xc3\xa7\x6f\x59\x07\xc0\xdc\x67\x39\x5b\x4e\x9d\x5b\x98\xb0\xf6\xb9\x01\x24\xfb\xd7\xc6\x3f\xe0\xb1\xee\x48\x98\x03\x29\xcc\x9d\xc5\xe9\x40\x6c\xa4\xb3\x8d\x1d\x74\x60\xb7\x2c\x3e\x1a\xd2\x35\x4a\x72\x1c\x1d\xdb\x52\x37\x91\x03\xda\xc1\x4f\x03\x70\x78\xb7\x2f\xda\xc1\x0c\xa8\x9b\x39\x16\xa1\x92\x76\x78\x3b\xe8\x11\x5f\x3e\x3f\xc0\x84\xed\x69\xef\x20\x51\xdb\xfa\x60\xba\x72\x1f\x1f\xc7\xa0\x20\x90\xba\xf0\x18\x9c\x45\x4d\x42\x46\x2e\x2e\x7f\x81\xf3\xc4\xeb\x30\x88\xfb\xcd\xa2\x63\xe7\xda\xbb\x53\xcc\xdb\xf4\x0b\x04\x7a\xcd\x2f\x60\xdb\x4c\x3f\x03\x0b\xd8\xea\x7d\xd0\xed\xca\x87\xd8\x11\x2c\xd0\xec\x7d\x12\x14\x16\x9a\x88\xe0\x30\xb4\x76\xcc\x6a\x3a\xea\x9f\x2e\x43\x47\xf0\x1c\xf7\x4a\x40\xbf\xe8\x90\xd2\x83\x29\x4d\x9d\x6e\xfc\x98\xc9\xf0\xa2\x70\x32\x36\xc1\x2f\x04\x2e\x3b\x7e\xe6\x3e\x35\xc7\xc3\x89\xcb\x2e\xe2\xc7\xc4\xd2\x99\x1b\x27\x11\x93\x84\xfe\x81\x1c\xea\x76\xc6\x3e\x12\xe5\x49\x8f\x75\x2c\xee\xd2\xe6\x1f\x20\x61\xbd\x94\x48\xb2\x5e\xcd\x8f\x0b\x45\x46\x85\xa7\x0f\x14\x11\x29\x9b\xce\x91\x83\xb9\xcf\x3c\x6a\xa2\xba\xcf\x33\x20\x99\x74\xa8\x07\x4c\xc3\x0e\x0b\x38\x98\x83\xdd\xca\xe4\x63\x91\x35\xb4\x6c\x8b\x83\x76\x03\xf0\x44\xf8\x34\x80\x31\x7b\xcb\xee\xc4\xdf\x96\xc8\x7b\xa6\x35\xd2\x33\xef\x29\x3e\x55\x90\x37\xed\x23\x04\x76\xea\x17\x2c\x50\x91\x36\xcd\x91\xb4\x07\x3c\xc4\x9a\xe1\xcd\x71\x64\x9f\x6a\x92\x89\xdc\xcd\xdf\x34\x03\x3b\xe0\xe9\x80\x1f\xbd\xd3\x9c\x1c\x07\xb7\xed\x72\x0b\x9c\x68\x1f\x55\x07\x45\x93\xe6\xe1\x20\xe6\xfa\x34\x41\x3d\x98\xd7\x0a\x1a\x43\x1f\xe0\xc7\x89\xfb\xbc\x67\xfa\x24\x51\xba\x88\x1c\x27\xc3\xae\x35\x6e\xe6\x55\x73\x3e\xfa\xe3\x45\x92\xe3\xf7\x79\xa6\xc9\x5d\x24\x9c\xbc\x0b\x9b\xa5\x81\x24\x3f\xe2\x8d\xc5\x4f\x5c\x8a\xe0\x38\xc9\xe2\xfe\x00\xab\xbf\x4c\x02\x39\x5a\xd3\x02\xfd\xe1\xac\x52\x42\x1c\xd4\x17\x3a\x81\xfd\x71\x51\xa6\xfb\xfc\xbc\x52\x1a\xb9\x8d\x24\x42\x13\x91\xf8\xd0\x47\xd1\x8b\x07\x87\x3d\x36\x0f\x2a\x0c\xcd\x93\x50\xff\xd9\xd4\x78\xbc\xf8\x6f\xd8\x03\xe7\xb8\x39\x4f\xa2\xe9\xa6\x83\x84\x59\xec\xc5\x7b\xc3\xfe\x9b\xc7\x9d\x24\x89\xe8\x17\xce\x35\xe7\xb3\x3d\xe0\x44\x36\xab\x34\x1d\xc7\x43\x55\x9c\x4f\x96\xa7\xbe\x4d\x4a\x09\x76\x3c\xa0\xc1\xd2\xe6\x09\x3c\xab\xcb\x87\x34\x79\x5f\x3c\x64\x7b\x4b\xed\x84\x67\x12\xca\xe7\xef\x07\xaa\xa7\x9e\x37\x0a\xe5\x4d\x3f\x90\xa3\xc2\x3f\x54\x92\xbd\xf4\x03\x85\xa2\x0e\xb8\x93\x86\x5f\x1f\x68\xe7\x0f\x74\x7e\xbe\xa0\x6b\x81\x04\xfd\xf9\xa3\x26\xbd\xf9\x0d\x62\xe1\xf0\x1b\x58\xbe\xcd\xcf\xb8\x51\x59\x75\x71\xfe\xb8\x81\x75\x28\x9e\x2f\xce\x1b\xf6\x7e\x3d\x5f\x9c\xd7\x9c\x49\xef\xdc\x38\xb9\x7e\x6e\x78\x5f\x3d\x6c\x9c\x5c\x7f\x4f\x51\x2e\xe4\x71\x6e\x64\x31\x9d\x3e\xe7\x8b\x0b\xc3\xb1\xc9\xe7\x8b\x0b\xc7\x6f\xfb\x4b\xe5\xf1\x38\x89\x19\xed\x44\x74\x66\xea\x36\xcd\x6a\x21\xbd\xea\xad\x50\xe6\xe9\x0c\x3f\x0b\xef\x84\xdd\x5f\x70\x04\x7e\x21\xd9\x43\x23\x78\x41\xe3\x70\x96\x8a\xf3\xc5\x8c\xc3\xfa\xe9\xb3\xe4\x2a\xf8\x05\x1a\x74\x25\x25\xcf\x84\x88\x42\x01\x67\xa5\xe7\x9a\xae\xbe\x67\x62\x44\x21\x89\xb3\x26\x99\x9a\xe8\x0a\x32\xa5\x6d\x39\x2b\xac\x03\xc3\x7d\x60\xe9\x8b\x5b\x44\x8d\xf6\xea\xff\x5f\xfc\xf5\x19\x55\x03\x4b\x4b\xe4\x9d\x69\x54\x6e\xfe\x01\x33\x29\xe5\xdd\xd9\x28\x13\xb5\xcf\xce\x46\x06\x96\xac\x3f\x69\x23\xae\x9b\x7f\x38\xd1\x84\x86\x9d\xfa\x3f\x4d\x54\xc3\xd2\xeb\x5a\x74\x76\xd2\xa4\xff\x7b\xce\x9b\x88\xee\xe0\xbe\xe2\x67\xae\xae\xd0\xd2\xd9\xb1\xf7\x3d\xaf\x4c\x93\x5f\xcd\x9f\x7d\xa2\x05\xcd\x73\xa7\x8c\xec\xa6\x81\x88\x4d\xc7\xcd\xd9\x73\x0f\xf9\x07\x50\xed\x2d\x32\x28\x1c\x34\x71\xc8\x7a\x3f\x5d\xd3\xe0\xa4\x37\x9f\xa1\xc2\x39\x30\x0c\x4b\x8f\x01\x29\xaa\xdb\xe0\x39\x28\xc9\xbb\x9b\x5c\x6c\x52\x54\x0e\xcc\xac\xae\x2d\xe7\xe0\x35\xe5\xf3\x03\xf1\xb7\xce\xfa\x93\xee\x7d\xd5\x7c\x1e\xb9\x95\x34\x15\x4c\xce\xe6\xc0\xab\xf3\x05\x96\xd5\x8e\x68\x67\x90\x4c\x0d\x23\x2d\xcf\x9f\x1f\x20\xa0\xec\xb4\x73\x06\xb7\xc6\x74\xa7\xd4\xf9\x98\xad\x11\x4d\xe9\xf8\x8c\x93\x96\x65\x8f\x63\xb2\x36\xb2\xa6\x6a\x82\x2b\xcd\xd6\x33\x99\x50\xe3\x64\x35\x5c\x67\x72\x3d\x27\x4a\x06\x7c\x5e\x40\x78\x99\x47\x35\x51\xe6\xc0\x72\x79\x26\xe0\xd6\x0b\x0b\xeb\x2b\x50\x74\x2e\x44\x0c\x0b\x6d\x9c\x19\x41\xf0\x79\xa1\xa3\x5c\x88\x18\x04\x48\xd1\xf1\xd9\xe7\x02\xa0\x31\x05\x28\x2e\xe7\x0c\x2b\xe7\xe2\xf1\x63\x9e\x84\x3e\xd0\x68\xf7\xdc\xe9\x54\x24\xd4\x75\xee\x90\xe2\x96\x82\x7b\xc1\xb3\x7a\xdc\xc9\x70\x7e\x1f\x25\xaa\x75\xcc\x9f\x3b\xb1\x84\x65\xda\xce\xec\x0d\xe2\x8d\x1d\xdb\xc6\x07\xe2\x0e\x19\xd8\xfc\x3e\xa4\x8f\x85\xfa\x7e\xe3\x7f\x4d\xc9\xc1\x5b\xb3\x1b\x3c\x48\xb1\x86\x74\x90\x62\xad\xda\x81\x75\xf6\xd9\x77\x00\x37\x08\xca\x9c\x07\x0d\x2a\xde\x22\x07\xcf\x19\xdd\x19\x4e\x66\xdb\xb5\xca\xe3\x3c\x40\xa3\x4f\x4f\x24\xc5\xf8\xb0\x22\x73\xbc\xad\xf1\x27\xaf\xee\xf3\x04\x57\xf8\x20\x3d\x31\x00\x1f\x2b\x27\xf1\x9a\x85\xdb\x89\xdd\xe3\x93\xeb\x4c\x46\xd5\x90\x00\x11\xd7\xe7\x83\x8b\x2d\xf8\x05\x38\x7e\x79\xce\xd2\x06\x6d\xc6\xb9\x48\x83\x46\x94\x8e\x81\xde\xe2\x4c\x88\xb1\xe9\x9e\x74\x5e\xd4\xb0\x7b\xe1\x5e\x54\x59\x3f\xb3\x98\xa0\x72\xb8\x4d\x70\x82\x85\x44\x82\x4c\x21\xdf\xf3\xe2\xca\x78\xde\x2f\xc8\x2a\x6f\xc8\x8b\x57\x5e\x1f\x5d\xd7\x8d\x1d\x6a\x1a\x60\x58\x10\xf4\x3d\x59\xa4\xd7\xc0\xe8\xe6\x30\xf5\x3d\x9d\x0b\x6d\xfe\x3b\x11\xea\xe0\x9b\xd3\x99\x4a\x46\x5d\x08\xce\x9b\x48\x4a\x9a\xa2\xf3\x86\x4c\xf7\x5a\x3c\xec\x42\x5d\x3e\xd8\x40\x1e\xd3\xc3\xc3\xd0\x22\x9b\xa0\x53\x0a\xb9\x93\x26\x67\x1f\xaf\x0f\x40\x84\x94\x42\x67\xc6\x31\xb8\x03\xea\xe3\xff\x11\x70\xa5\x01\xba\xe9\x19\x04\x0d\x3f\x13\x5f\x56\xff\x80\x22\x61\x5a\xc8\x0b\x55\x05\x0d\xdc\xae\x1f\x09\xac\x7a\x26\x41\xa1\x67\x54\x0a\x10\xf7\x5d\x3f\x84\xbd\x6f\x6e\x3f\x99\x4d\x3f\x6c\x70\x53\xd5\x9c\x5e\x0c\x73\xd8\x74\xa3\xb9\x58\xbd\xc0\x81\xbb\xd7\x46\xf5\xbd\x40\xf2\xb5\xb1\xfc\xbb\x9b\xc0\x16\x19\xfe\x80\xc2\x7d\xf9\x87\x80\xeb\x9c\x3f\x98\x18\xa4\x1b\xa4\xd7\x9a\x66\x11\x91\x9b\xb6\x87\x5f\xd0\x51\x3a\x58\xec\xda\xc0\x9a\xc3\x24\x93\x35\x75\x18\x5c\x1b\x0f\x7f\xc9\xf6\x0b\x6e\x8d\x4e\x8c\x71\xa1\xa8\xa1\xd3\x00\x5e\xc8\x1c\xec\x6c\x2a\x57\xc9\x31\x8b\xe4\x92\x63\x72\x8b\x04\x1c\x62\xf7\x8b\xe6\x6e\xb1\xc6\xf5\xe2\xcb\xfa\x21\x32\xdd\x1c\x97\x5f\x80\xb0\xd5\x79\x73\xbd\xf8\xb3\x19\x90\x5c\x50\x59\xda\xa7\xe3\xaa\xbc\xbd\xe8\x78\xb8\x2a\x98\xcb\xeb\x92\xc9\xe3\x44\x51\xc5\xba\x78\x0c\x50\x50\xba\x7e\xee\x05\x9f\x48\x67\xe0\xbf\x2a\x2f\x54\x9e\xa5\x8a\xed\xe5\x69\x65\x2a\x38\x07\x51\x5c\x2c\xca\x64\x7d\xe2\x85\x30\xd0\xaa\x3d\x7e\xb1\x26\xd3\xcf\xcf\x0d\xeb\xe0\x06\xc8\x3a\x22\xb9\x81\xdd\x3f\xed\x11\x08\xea\x04\xbb\x1a\x0a\x26\x4b\x76\x5e\x0d\x27\x9a\x2e\xec\x17\x8c\xd7\x0e\x66\xbc\x58\x60\x61\x7c\x7a\xe4\xac\x6b\x96\x09\x66\xe5\x65\x7b\x31\xf9\x9b\x0e\xa8\x8b\xee\x8f\x0e\x0a\xbc\x7a\xb2\x86\x16\xb6\xd3\x85\x64\xfe\x29\x1b\xdd\x45\xa8\xab\x7b\xd5\xc5\x54\x71\x8e\x29\xbc\x12\xda\x7e\xde\x20\x3e\x6f\x26\x09\x63\x9e\x26\x80\x6e\xbe\xcd\x4d\xe4\x7e\xf0\x17\x37\x36\x9c\x26\xe1\xc5\xba\xd5\x66\xea\x0b\x69\x8a\x1d\x46\x74\x0d\x1c\xe3\xd3\xcf\x2c\x5b\xf1\xf3\x0f\x34\x53\x6b\xda\x47\x8e\x42\xeb\x34\x70\xde\x84\x5f\xc8\x41\x68\xa5\x07\xd6\xc1\xcc\x17\xc9\x5b\xfa\x22\x50\x5c\xdf\x2b\x1d\xe4\x76\x35\x10\xa0\xd1\xcb\x90\xc9\xdc\xc4\x3a\x31\xa0\x4d\xd2\x34\x06\x45\xbb\x65\x33\x35\xa4\xd3\xcf\x74\xd4\xfa\xf4\xc0\x1d\xfd\x73\x17\x80\x22\x82\xc5\x17\x55\xa8\xae\x8c\x79\xcd\x64\x16\x75\x3a\x09\xce\x2d\xbf\x27\xaf\x90\xde\x42\x93\x06\x59\x1f\x11\x4c\x1b\x62\xed\xf4\xc5\x54\xc8\xb5\xbb\x0d\x80\x2a\x13\x3e\x93\xc7\x45\xe7\x24\x4f\x8b\x8a\xc5\x28\x0f\x4b\xe8\xc5\xf5\x55\x8b\xd4\x92\x3a\x66\xf0\x62\x26\x64\xfb\xc5\x5d\x2b\xaf\x32\x7a\x7e\x65\x87\x63\x67\xaf\x45\x9e\xd4\xdc\xc1\x8d\xd2\x49\x31\x2e\x46\xd4\x7c\x24\x43\xa2\x65\x0b\xf9\x17\x2d\x0f\x3b\x9e\x5f\x3b\x9c\xbe\x7d\x70\x11\x1c\x5b\x00\xef\x18\x83\xf9\x63\xa7\xaf\xb4\x45\xc5\x9e\x63\xf0\x17\xe4\x41\xc1\x85\x8b\x70\xd8\x47\x1f\x02\x6a\x3e\xe2\x0d\xf1\x34\xbe\x00\x5e\x84\xc7\x16\xa0\x3b\xe6\xd9\x47\xc0\x0b\x97\x87\x3d\xe1\x2f\x04\xde\x5a\xcb\x72\x21\xe5\x9c\x33\x35\x5c\x19\x5b\x63\xf1\x77\x20\x19\x84\x09\x3c\x20\x1e\x97\x1b\x24\x64\x12\xc0\xb9\x0e\x18\x6a\x7d\x9a\x1f\x13\x14\xb8\x07\x2a\xa3\xbc\x51\x0f\xe0\x87\xe9\xe7\x97\xc7\x6d\xef\xb9\x88\xb6\x3d\xeb\x30\xee\xdb\x10\x72\xc1\xcb\xd3\x20\xef\x3a\xb9\x6d\x05\xb1\x2e\xd6\xce\xf2\x15\xe0\x3a\xa1\x01\x31\x89\xc0\xcb\x4e\x86\x76\xc1\x36\xdf\xcc\x18\x8c\xb4\xb1\xad\xe5\x3a\x89\x2b\x45\x32\x4b\x63\x39\x81\xfd\x75\x41\x9a\x79\x96\x10\x69\xd3\xa4\x6e\xb8\x5e\xb4\x3c\x6c\x4d\xbf\x58\xb8\xc2\xcb\x7e\x91\x51\x7c\xee\x5d\x9c\x45\x91\xcc\x72\x9c\xf6\x5c\xbe\x50\x8e\xd3\x79\x20\x2f\x62\xe5\x0f\x89\x17\x1a\xd0\x1c\xbc\x50\x79\xd8\xe9\xfe\x7a\xa1\x71\xfd\xcc\xc9\xbd\xe1\x7f\x7d\x4f\x7f\x4e\x07\x3c\x5e\xc8\x7d\x52\xab\x7b\xbc\x1b\xbe\xf0\x0b\x14\x23\x7f\x8b\x6d\xbd\x12\x7a\x5b\x2c\x21\x8e\xc7\x0e\xc7\x17\xa2\x8c\x9d\xf0\xfd\x62\x5c\x8f\x3d\x06\xae\x84\xe2\x16\x21\xa8\x06\xf6\x59\x25\x44\x1d\x97\x22\xc5\xc5\xc5\xc8\x1f\x0b\xa5\x87\xd8\xc1\x62\x0c\xe0\xdd\x71\x06\xd7\x03\xef\x74\x63\x38\xe6\xa7\xb3\xa9\xe6\x7a\x92\x28\x7f\x71\xa0\x85\x7f\x5f\xdc\x28\x6b\x51\xec\x02\x70\x43\x01\xec\x6c\xb9\x37\xd0\x77\xd1\xfe\xbb\x7f\xe0\x14\x6d\xd0\xfb\x47\xef\x2b\x11\x7d\xff\x16\x5e\x70\x03\x3b\x9e\x37\x3d\x83\x02\x51\x74\x6f\xb9\x3d\xf4\x41\xba\x76\x4e\xff\x80\x51\x9b\xc4\x8d\x0e\x7d\xd3\x4d\x24\x77\xfa\x87\x03\x7a\x0a\xb7\x70\x72\x94\x4b\x3f\x50\xd6\x0e\xff\x00\xbb\xdb\x72\x1f\x10\xb5\x5a\xcc\x3b\xd5\xb3\x92\x0a\x77\x01\x3f\x4a\x70\xdd\x85\x44\xfa\xff\x8a\xe7\xa2\xe7\x81\x00\x0d\x3f\x93\x66\x6d\xd1\xbb\xd0\x73\x5b\x8a\x82\x9b\x89\x94\x3d\x2f\x0c\x4c\xae\x02\xb3\x37\xe1\xb2\xc3\x25\x6f\x3a\x8b\x2e\x3f\x53\x5d\x2b\xac\x78\x57\x12\xad\x2e\x00\x8f\xed\xa0\x7a\x03\x1e\x17\x07\x75\xde\xc0\xc7\xf6\x37\xbe\x2b\xdd\xd4\xc2\x2d\x04\x5e\xd0\x3c\x55\xac\x7e\x71\x8f\x58\x7d\xdd\x5b\xee\x8a\xd5\xd7\x26\xbd\xa9\xdc\x5d\xfe\x1e\xaa\x0b\x9d\xec\x37\xbc\x41\x8b\x83\x48\xef\x86\x48\x57\x53\x04\x65\xae\xfd\x9b\xef\x74\xff\x14\x36\xbc\x53\xbb\x1b\x6e\x61\xe0\x0b\xcd\x52\x7a\x0c\x78\xda\x10\x31\xd4\xac\x7b\xbd\x1b\x65\x99\x9f\x0f\xea\x2f\xf4\x8c\xe0\x1b\x9d\xa2\x37\x8a\x9e\x16\xc7\x77\xde\x9d\xbb\xcc\xd3\xd2\x91\x39\xcd\xc3\xee\x0d\xa5\x83\x35\xec\xce\x30\x13\xbf\x0f\x9a\x85\x2d\xee\x4e\xa4\xe6\x61\x77\x88\x53\x81\xfa\xbb\x43\x9c\x9a\xc4\x9e\xf3\xa8\x1e\x5f\x7c\x1b\xce\xfa\x7e\x0f\x1a\xdf\x05\x16\xee\x04\xb4\x66\x8e\xc1\x79\xf3\x0b\x5c\x7a\xd1\x3c\xb0\xf4\xd5\xef\x63\xe9\xab\x7b\x3c\xde\x1e\xcd\xbe\x03\xea\x49\x21\xea\x3b\x15\xbb\xcb\x3f\x24\xfb\xaa\x45\x00\x60\x17\x68\xbe\x83\xf7\x8c\xcf\x0f\xb9\xd6\xfe\x81\x26\x0f\x01\xd6\x3b\x48\xa4\xe6\x2d\xc0\x8f\x9e\xf8\x38\xf1\xec\xf7\x31\xaf\xc2\x3b\x77\xf0\xda\xec\x2d\x15\x10\x14\x5e\x29\xc6\x82\x7f\x38\x78\xe2\xde\x6c\xf9\x08\x3d\xef\xd6\xfe\x14\xd2\x7a\xcf\xfd\xbf\xff\x7d\xc0\xcc\x3d\x41\x9e\x90\xc1\xcd\x40\x71\xdb\xe2\xef\x89\x75\x17\x18\xb9\x11\x30\xf4\xd9\x1e\x50\xf9\xda\xc7\xe7\x4e\xef\x81\xe5\x17\x20\x12\x74\x09\xb9\x57\xb2\x81\x7f\x00\x1b\x78\xd9\x32\x5c\xc8\xbc\xcc\x24\x32\x55\x73\xfe\x40\x68\xb8\xac\xc5\x53\x81\x1d\x04\x67\x1e\xca\x08\x6d\x9f\xa7\x72\x7b\xe9\xc2\xf9\x30\xf9\x65\xd5\x4d\xe8\xa9\x84\xf3\x9f\x1f\xb8\x2c\x12\xaf\x4f\xca\x0d\xed\x98\x87\x15\x7a\x1c\xf5\xff\xb0\x42\x8f\xed\xd2\x0f\x2e\xda\xf6\x21\x78\x1a\x81\xa3\xff\xa7\x16\x55\xc0\xee\x81\xcd\xc6\x96\xf1\xa7\xa3\x01\x5d\x53\x1e\x58\x64\x6c\x82\x7e\x3a\x5d\xb2\x3c\xae\xce\x63\x49\xbb\xf4\xe9\x39\x2e\xfd\x00\x8b\x4b\xb7\xd9\xfa\x19\x04\x31\x1e\xc6\xe0\xbd\xa4\xfa\x07\x6c\xcb\xf0\x17\x28\xbf\xa2\x6d\xfa\xb0\x0e\xe1\xe7\x7d\x1e\x85\xd3\x2f\xdc\x30\xf0\x6b\x18\xc1\x34\xe9\xfa\x3f\xc8\xe1\xd3\x2f\x10\x4c\x6a\x9c\x01\x2b\x81\xa7\x1e\x71\x7d\xcd\xeb\x1b\x98\x17\x09\xe4\xe7\xdd\x93\x9f\x68\x91\x67\x82\x05\xb5\x89\x1f\xee\x18\x9d\x39\xcf\x44\xda\x75\x1d\xb5\xcf\x04\x47\x6a\x4b\x3e\x93\x33\xa0\xfe\x26\xfb\x13\x7d\xef\xa6\xaa\x8e\xf4\x7a\x66\xae\x8b\x3f\xc0\x2e\x33\x03\x4f\x1e\xb4\xd5\x14\x20\xc7\xe2\xa7\xc7\xe4\x36\x75\x41\x2f\x9d\x2a\x59\xf6\xac\x5c\x48\xff\x00\xe6\x91\x98\x78\x16\xf1\xa6\x36\xe2\x83\xfb\x65\xd8\x90\xf0\x2c\x6c\x13\xf3\x06\x0b\x10\xd6\xe5\x17\x20\xab\xcc\x5e\x0b\xb2\xc0\x9b\x64\x87\xcf\xad\xf9\x77\xe7\xcd\x7b\xfa\x07\x4c\xb4\x79\x8b\xf9\x18\x7e\x6e\x20\x79\x4d\x13\x85\xb8\xbd\xd0\xb1\xf6\xb0\x44\x4e\xf1\xff\x84\x9f\xd5\x3d\x90\xd9\xbc\xa9\x76\xd2\xe8\x67\x88\x53\xf3\x16\xac\x27\xbe\x5f\x3e\x47\x63\x8b\x9a\xb7\x03\x8b\xef\x31\xf0\x7a\x67\x6e\x86\x79\xc5\xe2\xf7\x39\xb8\xe7\x74\x9d\x7b\xe0\xac\xed\x63\xee\x81\xb1\xa4\xdb\x71\xe0\x39\x79\x78\xeb\x72\xf4\x20\xc7\x78\x35\xff\x9d\x14\x2d\xde\x21\xf4\x99\x71\xdc\xde\x73\x62\xe9\x96\x9b\x84\xb3\xb2\xd0\xe5\x03\x5f\xea\x6e\xe7\x83\x87\x19\xc1\x9d\xe2\xea\xb9\xa8\x35\xd4\x30\x2f\xb0\x8f\xb9\x85\x17\x38\x9d\x03\xcf\x45\xcf\x4a\x9d\x14\xcf\x95\xc3\xd2\x17\xb0\x3d\x8c\xdf\x9f\xdc\xb5\x1f\xde\xbe\xcc\x6a\xb8\x6c\x4d\x3b\x3d\x3e\x37\xed\x6e\x3f\xbf\x81\x75\xf1\x42\xdf\x39\x27\x9a\x03\xf8\xcb\x58\x39\xfc\xe0\xba\xe4\xd0\xd6\x07\x49\x9a\xba\x95\xbd\x0f\xfc\x65\x5c\xad\xe7\x81\xbb\xcc\x6c\xde\x52\x70\x97\xb1\xf6\xf8\x79\x6f\x43\xc3\x6a\xc9\x07\x85\x6c\xba\x2d\x07\xcf\x83\xdc\x55\x82\x69\xcf\xc3\x65\xc9\x1e\xe7\xef\xbd\x1c\x55\x25\x49\x98\xbf\xf7\x6e\xd4\x64\x0a\x99\x3f\xc4\xce\x35\x5d\x6a\xe7\xef\x87\xa2\x5f\xff\xf0\xf5\xfc\xbd\x97\xa7\x21\x95\xdf\xfc\xc1\x74\x21\x4f\xa7\xf9\x83\xe9\xa2\x7c\x3a\xa0\xe5\x6c\xf9\x87\xc9\x31\xfa\x8b\x9d\x3f\xb8\xc9\x03\x4d\xf8\x05\xf0\xf7\x87\x46\x1e\x29\xcb\x1f\x90\xd7\x36\xbf\x41\xe1\xd5\xd4\xc4\x7b\x23\x2b\x4a\xa2\x32\x7f\x1b\x65\xd7\x26\xaa\x70\x21\x93\xd2\x6f\xfe\x36\x5e\x1b\x9a\x7f\x68\xfc\x42\x9d\x6e\xb4\xd9\xb8\x8b\xc1\x61\xf8\x8b\x80\xde\x47\x44\xc1\x7e\xa1\x64\x58\xf3\xc7\xc4\x50\x8a\x21\x9d\x3f\xd6\x73\x1e\x4b\x4d\xe2\x42\x56\x7e\x5a\x8b\x92\x34\xf8\x05\x16\x67\xf2\xea\xbc\x37\xae\xa1\xfc\x59\xf3\xc7\x0b\x56\xfb\xa9\x0f\x66\x9a\x2c\x4d\x6d\x22\xd8\x6e\xb6\x9f\x38\x84\x17\xa6\xa1\x99\xa1\xb7\x4b\xe9\x6a\xb3\xd2\x0c\xd9\x34\x10\xd4\x22\xd4\xf1\x3b\x7f\x35\xc5\xbc\xfb\xa0\x3e\x6a\x89\xcc\x9a\x6c\x2b\xb2\x70\x87\x2a\x5e\x0e\xa6\xa6\xfc\x99\x6f\x91\x9b\x52\xee\xbf\xf3\x57\x39\x8e\xee\x1f\x1e\xb4\xa0\x67\x26\x13\x57\xb0\xe4\xfc\xb5\xdc\xdf\x22\xbb\xe5\xc0\x44\x37\x6e\x51\xc5\xb3\xfb\xde\x91\x46\xf1\x8a\x77\xf0\x88\x27\x1b\x3e\xcb\x72\x5e\x98\xbf\xce\xc9\xd7\xa0\x3a\xbf\xd7\x18\x3a\x4c\xa7\x66\xdb\x4e\x92\x45\x10\x7c\x9c\xfb\xef\xf3\xc3\x06\x75\xaa\xc6\x34\x48\x80\xe6\x75\xe4\x08\x44\xf1\x48\x1e\xf4\x1b\x20\xa9\x68\xed\x06\x79\xce\x34\x0f\x98\x9f\xaa\xba\x7c\x91\xd1\xd0\x35\x6f\xfe\x22\x37\x8a\x5a\x84\x42\x5e\x97\xd7\xf9\x83\x42\x5e\xd7\xeb\xf9\x0b\x28\x33\xdd\x63\x50\x8a\x7e\x7e\xc0\x2c\x17\xd1\xfc\x42\xa9\xa2\x68\x8a\xf9\xc3\x75\x46\xd7\xc0\xf9\x83\x9f\xca\x6c\xe6\x69\xdc\x5f\x74\xed\x9b\xbf\x80\xf3\x94\x19\x16\xd7\x17\x9d\x7e\xf3\x97\xea\xf9\xae\x0f\x26\x44\x58\xd1\x98\x5f\xf0\x35\xe4\x27\x39\x7f\x93\x14\x6a\xc8\xc8\x75\x55\xa7\x28\x9a\xbc\x81\x2d\x37\xb8\xfe\xfb\x5f\x2d\x53\x73\xf0\xa2\xaf\xf6\x1b\x7f\xa9\x99\x37\x7f\x2f\x32\xab\xc2\xaa\xf3\x37\x53\x0a\x88\x7e\xa8\xed\x85\xa8\xe7\x0f\x6a\xfb\xb6\xd4\x1b\x3c\x54\x94\xa4\x66\xfe\xa8\xb4\x6f\xde\x0a\x40\x59\xc5\xfb\x13\x5a\x7b\xdd\x23\xe6\x8f\xa8\xab\x79\xf7\x41\x6d\xdf\x2d\x98\x16\xe5\xab\x17\x99\x69\xaf\x3c\x83\x3b\x34\x97\x9e\x41\xa2\xac\xe6\xad\x83\x0c\x99\xad\xfb\x03\x0a\x2e\xb3\x11\xd5\xf6\xcd\x9b\x8f\xe9\x12\xa6\x68\x78\x71\x57\xfd\xcc\x0a\xb2\x25\xf4\x9f\x39\x75\x87\x78\xad\xfe\x00\x6c\x52\xdd\x20\x82\x70\xbd\x3b\x53\x4d\xaf\x06\x0f\x58\xc3\xdc\x01\x60\xd9\xe6\xf6\x0e\x9e\x5b\xde\xfe\x47\x66\x5d\xf1\x17\x48\x56\xdf\x44\x11\x40\x94\x80\xe0\xfc\x9d\xe0\x3b\xcb\x30\x3a\x2e\x37\x93\x80\x82\xd0\x0a\x48\x98\xbf\x04\x5d\x9e\x36\x6a\xd1\x7f\x96\xc5\x40\x5d\xf5\xf3\x45\xee\x6f\x71\x13\xdc\x50\x14\xe8\x3e\x7f\x27\x15\x10\x4b\x4d\x32\x41\x95\x22\x68\xe7\xef\xa2\xb6\xc9\x08\xe0\x4a\x32\xfd\x09\xf6\x87\xc7\x79\x61\xc7\x56\x7f\x00\x7e\x33\x51\x17\xf9\x4d\xc3\x84\x9e\xbc\x78\xc7\xc3\xa5\x44\xf6\x90\xf9\xcb\xfc\x9a\x96\xed\xac\xc3\xe2\x0d\x89\x8c\x55\x1f\xc1\x7a\x73\x03\xbb\x01\x8a\x41\x0b\x2d\x64\x21\x58\x2a\xbe\x37\x7f\x37\x8f\x0f\x63\x0a\xf8\x94\x7c\x8e\x7b\xa6\xf4\x0e\xcb\xde\x07\x67\xb1\xf7\xc4\x93\xf3\xa6\x51\x3e\xb4\xf1\xf9\xc0\x41\x8e\xef\x0f\x95\x74\x43\x69\xde\x45\xcc\x69\xa5\x30\xe0\xf9\x43\x4e\xab\x15\x06\x4f\xf0\x7e\x0e\xb3\xdc\x43\x96\x1b\x62\x6a\xe0\xbf\x15\xc6\x4e\x74\x55\x69\xde\x58\x0f\xb6\x85\x99\xf4\xa1\xab\x88\x9b\xbc\xd9\xc2\xbf\x26\x37\x7a\x47\x4b\x3a\x6c\x70\x5e\x59\x2a\x23\x38\x37\x24\x4f\x50\x15\xb3\xb9\xc1\x37\xda\xcb\xb7\xfd\x90\x77\x2f\xfc\x3f\xb2\x85\xfd\xd3\x0a\xcf\x0d\xda\x74\x63\xb3\xed\xc5\x7f\x45\x8a\x8f\xb9\xfd\x68\x80\x1d\xee\xf0\xe2\x98\xf4\xc6\x96\xd2\x43\x5d\x6c\x39\x71\xfe\x61\xf2\x8d\xd0\x0f\x70\x2e\xd1\xfa\x6e\x1b\x78\xb2\xf9\x7f\xde\xa1\x86\x5b\xb8\xd9\xa9\xbe\x60\x8e\x2c\x45\xe5\xce\x0d\xea\x70\x23\xa9\x8d\x95\x09\x9b\xfb\xa4\x3e\xbc\x49\x4c\x6e\x85\x23\xf7\x33\xaa\xf2\x29\xfd\xca\xdc\x12\xae\x15\xb7\x09\xb6\xd4\x7e\xdf\x6a\xb2\xa5\xfa\xa8\x88\xc4\xf2\x62\xa0\x8e\x74\xfd\x3c\x27\xd3\xb5\xbf\x9c\x45\xdb\x0b\xd4\xaa\xe5\xfc\x96\x38\xcd\x23\xa8\x39\x4d\xfe\x81\x6b\x63\x76\x79\x81\xd9\x30\x24\xd9\xe8\x2c\xa2\x6b\xdc\xdc\x1a\xb5\x6f\x43\x63\x24\xec\x12\x0c\xdb\x58\x38\xb0\x98\x61\x5a\x52\xe1\x2f\xb0\x78\x92\x0f\x1b\x0b\xb2\xc8\xcb\x77\x6e\xd0\x56\x2b\x03\xf7\xdc\x90\xdd\x4a\x86\xad\xb9\x75\x6c\x66\x21\x82\x8d\x59\x40\x15\x15\x3a\xb7\x8e\xb5\x15\x4c\xda\xa0\xcc\x36\x32\xdb\x7a\x47\x6e\x49\x51\xd4\x93\x01\xfd\x02\x16\xee\x9f\x42\x68\x6e\x23\x65\x9a\x48\x60\x65\xbe\xef\x1b\x3c\xb6\xab\xdf\x80\xa7\x69\xf5\x0b\x74\x1b\x36\xd5\x83\x53\x2d\x22\xa8\x5c\x56\x55\xc7\xb9\x05\xf3\x4c\x88\xa8\xe0\xb0\xfd\xcc\xad\x2d\x68\xb5\x05\x4e\x28\xc9\xb4\x2d\x72\x29\x44\x53\x4c\x30\x88\x5f\x80\xbf\xae\x97\x2a\x68\x56\xd0\xbc\x21\xed\xc0\xb4\x2c\x98\x80\x97\xde\x65\x93\xf0\xd2\xec\x03\x45\xd9\x67\x93\x41\x51\x66\x11\xb9\x4d\x5e\x81\x3c\x2b\x93\x0c\x5e\xdd\x24\xa5\x6a\x88\xe1\xa0\x2b\xb3\xcc\xdc\x26\x8e\x27\x8b\x17\xea\xca\x54\x2a\x72\x6e\x0c\x58\x53\x8c\xf1\xdc\x26\xa1\x83\xe6\x75\x71\x17\x0a\x30\x6d\x84\x68\x9e\xa6\x85\x03\xc9\x2c\x9e\x9e\x16\x9e\x87\x45\x30\xa1\x23\x6b\x7b\x31\x5a\xed\x16\x8a\x2b\x89\x72\x93\xb0\xb4\x7e\x3e\xb8\x80\xfa\x4c\x02\xe5\xb8\x00\xd4\xb6\x73\xaa\xf5\xc1\x9e\x3c\xae\xa9\xdd\x49\xb4\x86\x0d\xbf\xe3\xcf\xb6\xdb\x61\x1d\x5e\x6e\x00\xd2\xcb\xf3\xba\xe7\x34\xe9\x05\x38\x42\x7c\xa6\xed\xa0\x36\x43\xc0\x60\x3b\x90\x9c\xc1\x42\xf8\xc8\xc5\xd4\x20\xe1\xf9\xf0\x99\x26\x68\xbe\xbe\x3d\x60\xe9\x3c\xe8\x83\x2a\x21\x9d\x6e\x1b\x1c\x19\x14\x6b\x3b\xb7\x03\x5b\xc4\x63\x86\x23\x83\xfc\xea\xe7\x06\xc7\xe0\xe2\xb3\x07\x7a\xb0\xd9\x9a\x7f\x00\x3f\x0a\xda\x6f\x54\x8c\xb5\xe6\x1f\x28\xce\xdc\x25\xf2\x18\x54\xcb\xa2\x13\x63\x98\x1a\xc3\x89\x69\x9c\x1a\xf3\x3f\x4c\xe7\x17\x72\xe9\x35\x4d\x27\x06\x25\x80\xbf\x9d\x9c\xf8\x0f\xd5\x54\x84\x09\xeb\x6e\x17\x36\xba\x6e\x2c\x1b\x8a\x53\x4f\x0f\x1b\x90\x6e\x7d\xce\x70\xc6\xa7\x35\x61\xb6\xed\xe2\x1d\xde\xc2\xe5\xe2\x30\xdc\x04\x87\xe1\x16\xb8\x34\x7e\x9f\x40\xc4\x32\x97\x20\x2e\xfe\x14\x3b\x34\xb7\x9b\x5e\x8d\x6a\x8e\x29\xd4\x9b\x79\xe7\xa6\xff\x9d\x9f\xe3\xed\x5f\x6a\xa6\x0d\xbe\x0d\x0a\x5d\x9c\x1b\x7d\x19\x2c\x48\x6e\xa2\x0c\xaf\x2c\x33\xa8\x37\x43\x82\x9b\x26\x50\xb7\x40\xf1\x6a\x18\xc2\xa4\xa5\x16\x45\x59\x5a\x4f\x24\x3d\x64\x0d\xd3\x88\x5c\x05\x2b\x7c\xbe\xa6\xe3\xb1\x67\x11\xde\x0e\x5d\x51\x1a\x73\x43\xb8\x5b\xf9\x3c\xf3\xbc\x35\x86\x78\xc0\xe1\xcb\x2f\x50\xcd\x2a\x58\x52\x58\xf7\x45\x6e\x2b\xb3\x00\xd0\x75\xc5\x4c\xcc\xf2\xe3\xdc\xea\x3c\x2d\x70\x88\x50\x94\xe7\x2c\x3f\xce\xad\x9b\x24\x2c\x0d\x3d\xaf\xff\xfe\xd7\xe5\x97\x3e\x0b\xfc\x23\x14\x90\x39\xcb\x8f\x1c\xad\xbb\x5a\x81\x46\xcf\x97\xb9\x82\x50\x38\xc5\x5b\xce\xc2\x9c\xed\x1a\x54\x49\x7d\x9e\x36\x51\xd9\x7e\xf8\x40\x63\x42\x24\x9c\x1c\x63\x66\x79\x11\xe2\x90\xef\xf1\x2c\xd0\xc5\x29\x0b\xcc\x2c\xc4\x87\xc3\xcf\x3c\x7c\xbb\x3f\x20\xb0\x16\xc4\x2c\x08\x8d\xfb\x3e\xb3\x60\x83\x29\xe0\xcd\x4b\x1b\xa0\x6c\xd0\xf6\x74\x93\xf4\x8e\xa1\xba\xcb\x92\x47\x9f\x26\xa1\x50\x5c\x0a\x3a\x95\x42\xee\x58\xfe\x64\x61\x54\x7e\x01\xae\xbc\xc5\xff\x1f\xf8\x5f\x5d\xc2\x19\xb9\x15\xbf\xff\xf2\x8a\xb4\xfc\xb3\x20\x55\x56\xb7\xf6\xa7\xbc\xe8\x71\x28\xbe\x73\x96\x9a\x02\xda\x5f\xbc\x2c\x2d\x3f\xd9\x59\xa0\xfa\x93\xff\xc6\x2c\x4c\x0b\xff\x69\x60\xa2\x41\xcd\x1a\x9c\x91\x95\x39\x78\x96\x9a\xd3\xec\x1f\xb8\x0b\x05\x72\x4a\xe3\x4a\x8b\x44\xd6\xa1\x56\x58\xff\x2c\xf4\x8e\x50\xa9\xdc\x59\xe8\x1d\x61\x65\x43\x69\x59\xc2\x5e\xf3\xd4\x98\xbc\x5c\xf3\xd2\x72\xf5\x45\x45\xa3\x72\xa1\xb9\x13\x8a\x5c\x89\x97\xd2\x28\x72\x25\x30\x4b\x7a\x0c\x4b\xbb\x57\x3a\xcf\x7c\xf7\xc2\xf0\xb6\x36\xfc\x09\x26\x47\xe8\xab\x74\x2e\xaf\x26\x1b\xfa\x43\x45\xe8\xcd\xc2\x74\x58\x6d\xb8\x45\x6c\x1b\x01\x97\x02\xd0\xa9\xf8\xb9\x59\x12\x74\xea\x96\x5b\xa0\x40\xf4\xe5\xaf\x0c\x9e\x66\xc3\x3f\x34\xbc\xa0\x1e\x06\xed\xdc\x9a\x98\xf4\xf8\xf5\xce\x1c\x1c\x83\x96\x6b\xf0\xa6\x2d\xac\x5e\x60\x7a\x95\xa7\xf5\x2c\x03\xb9\x8b\x24\x13\x0b\x30\x69\x35\x0f\xc3\xf2\xda\x3d\xf3\xc1\x80\x2d\xcf\x1a\x72\x65\x7d\x84\x13\xab\x31\x5b\x71\x53\xd2\x81\x57\xea\xb9\x12\x94\x99\xc3\x9f\x60\x1f\x94\xbf\x64\x3c\x9d\x85\xee\xbe\x4d\x47\x51\x99\x9c\x34\x01\xa5\xc2\xb2\x36\x61\xe9\x32\x73\x96\xfc\xc9\xe2\x1b\x1a\x15\x53\x5f\x35\x6f\x1c\x80\xd0\xe2\x8d\x32\xb1\xb4\xde\xba\x93\x2a\x38\x1d\xa7\x85\xde\xbd\x2a\xa6\x3c\x0b\xbc\x1c\xaa\xa0\x77\x59\x49\xa6\x5f\x68\x54\xd2\x89\x4c\xa2\xd2\x8f\xd8\x5d\x93\x3f\xf8\x13\xc0\xfb\xe6\x36\x21\xe4\xbc\xf7\xe0\xbd\x5b\xbd\x7b\xf7\x1f\x1b\xd0\x07\x3b\xa3\x17\xcc\xb2\x3b\xfd\xb5\xfd\xc2\xbb\x9a\x9b\xb7\xd1\xce\x30\xc5\xe1\x26\x29\x21\x84\x11\x0b\xdc\x77\xab\x05\x31\xf4\x7e\xd5\x0c\x87\xca\x39\xbe\x36\x95\x3d\x67\xce\x24\xa0\xbe\x97\x97\x8f\x69\x11\x14\xc6\x38\x0b\xd2\xe3\x57\x5d\x52\x4a\xe2\x58\x01\xdb\x82\x4a\x3a\xc3\x1c\xc1\xbc\xaa\x2d\xfc\x45\xb0\x4f\x7f\x91\x78\x5f\xcf\x18\xa6\x4e\xf1\x72\x24\x3f\x68\xd8\x07\x47\xe9\x17\xb8\xf7\xc3\x3f\x20\xad\xee\x74\x97\x39\x4c\xff\xc0\xd0\x48\x73\xfd\x49\x4d\xbc\x68\x38\x53\x2c\xaa\xcf\x2b\x27\x42\x54\x5f\x74\x9c\xd4\x38\x11\xb2\x56\xbd\x14\x2f\xac\x6c\xbe\x15\x17\x44\xac\x4d\x0f\x22\x03\xd6\x3c\x51\x28\x27\xd8\x2d\xf1\x00\x22\xab\xa7\x09\x1e\xb6\xe5\x73\x5e\x00\x45\x56\x73\x03\x5c\x6e\xad\x62\x2d\x70\xb1\xad\x96\x16\x17\x18\xd2\x8b\x7f\x27\x43\xaa\x01\x58\x7d\x8d\xce\xcb\x9d\x6b\x2b\x12\x6f\x1c\x81\xde\xa9\x77\xee\x1a\x0d\x12\x49\x54\x3f\x87\x28\x94\x8d\x61\x0e\x7f\x81\x68\x59\x16\x47\xcc\xa2\xd5\xa6\xbb\x4c\x8e\xd6\x20\x5f\x28\x5a\xad\x17\x2e\x74\xa2\xfd\x1c\x04\x89\x3c\x0d\x15\xe0\x45\xeb\x5b\x72\x79\x48\xb4\xe6\x11\x11\x70\xd5\x1c\x9d\xc0\xd3\x07\xfd\xc3\xb3\xc8\x62\xf9\xe1\x4a\x88\x48\x84\xc0\x55\xd3\x08\x27\xdb\x6a\x20\x90\x59\xb2\xbc\x8b\x9e\xe4\xbf\x7f\x5d\xd4\x4c\xa6\x2f\x11\x57\x7f\xdb\x7f\xff\x9b\x2a\xbb\x34\xeb\x8f\x35\x11\x9b\x9e\x39\x08\x37\xd0\xb0\xf6\x7e\xa6\x8f\xec\xd2\x33\x30\x9e\x44\x47\xfd\x71\x08\x6e\x8f\x5b\x66\xfa\x07\x7a\x54\xe9\x99\x20\xd1\x14\x33\x5d\xaa\x72\xd3\xce\x8a\x4c\xfa\xf2\xac\x9b\x95\x2e\xb6\xca\xb0\x36\x2b\xd3\xa1\xfa\xbc\xac\x85\x7e\xf0\x12\xba\x15\x4a\x42\x65\xcf\x99\x15\x2e\xb1\xb6\x33\x57\x42\xb6\x3e\xfe\x72\x14\x55\x26\x2f\xf0\xf9\x5d\x33\xe1\x95\x14\x0f\x95\xe6\x5d\x9f\xc7\x15\x0a\x44\xa5\x42\x9e\x35\xcd\xbd\x42\xd2\x15\xfe\xb3\x55\x1a\xc6\x0a\xff\x59\x05\xe4\xcc\x4a\x73\xb0\xaf\xcc\xb5\x82\xb7\x9a\x9f\x3b\x9e\xd5\x63\x85\x11\x23\xfc\x7f\xb0\x01\xf7\xf8\x9e\x32\xc6\x88\x15\xfe\xb5\x55\x7a\xf3\x5a\x79\x21\x96\xa2\xa1\x26\x26\x9c\xa6\x89\x1b\x44\x7b\xb0\x12\x24\xea\x02\x53\x59\x97\xd0\xa8\xa2\x36\xde\x79\x3c\xac\x46\x91\xbd\xfc\x06\x86\x21\xf0\x5d\x5f\xd0\x18\xc3\x0b\xd9\x78\x21\xd6\x21\x50\x91\x74\x5f\xa5\x52\x67\xcd\x84\x0a\xfe\xff\xdd\xb4\x56\x52\xd6\x4e\x1a\xb5\x54\x2c\x45\x64\x5b\x4e\x85\x12\xd2\xca\xd7\xda\x39\xf3\x12\x66\xb5\x93\x66\x61\xa7\xda\x29\xd1\x3f\x7d\xe4\x3e\xd7\x30\x13\x73\x2e\xbf\x31\x41\xb5\xa9\x40\xf8\x93\xfd\x35\xea\x0b\x11\xa7\x6a\x0b\xcc\x0a\x88\x18\xe1\x71\xb3\xb4\x60\xd5\x65\xae\xc2\x02\xec\x3b\x40\x45\xe6\x81\xea\x99\x0b\x26\x90\x12\x4d\x74\x60\x0d\xc9\x9a\x0a\x0b\xaf\x4f\xf4\x0a\x87\xd5\xef\x07\xc9\xe5\x7e\xe1\x01\x8d\xea\x61\x26\x49\x5a\xbc\x99\xeb\x2f\xa2\x99\xe5\xea\xd3\xc7\xe4\x72\xab\x8f\xc9\xc3\xd0\x5c\x08\x8f\x3b\x9f\x3c\x15\xe1\x57\xd5\x4c\x09\x2d\xe2\x47\x3a\xc1\x6d\xb5\x5b\xc1\x5b\xe1\xb6\x6a\x14\x51\x17\x2f\x5b\xe6\xb0\x45\x79\xa7\x1e\xe0\x85\xaa\xac\xc2\xb3\x2e\xda\x30\xbc\x77\xd7\xe2\x20\xfc\x05\x69\xd0\x44\x32\x4b\x55\x5b\x7e\x81\x02\x43\x30\xa2\x32\x20\xab\x2d\xff\x00\xb1\x6d\x19\x48\x44\x27\xb4\x5d\xa1\x45\xac\x16\x30\x88\xc7\x52\x08\xc9\xac\xf4\x9f\x33\xfc\xaa\x7b\xee\x13\xd1\x80\x6c\x04\xd5\xfc\xb3\x53\xc5\xa1\x1b\x5e\xdd\x39\x0a\xf1\xcf\xce\x48\x07\x91\xc4\x82\x47\x3e\xb3\xeb\xce\xed\xef\xad\x76\x30\xb0\x51\x44\x1d\xe4\x40\x7d\x00\xad\xa0\x3c\x17\x67\x3d\x28\x25\x75\xc8\xd7\x13\x42\xd0\x27\x05\x94\x7a\xc3\xec\x73\x06\x18\x4e\x1d\xb0\x56\xf3\xe7\x2c\x82\x12\x6f\x78\xab\x22\x9c\x29\x2c\x6e\x4e\x30\x43\xf8\x99\xe0\xcc\x83\xbc\x18\x80\xea\xd3\xf1\x22\x72\xf6\x27\xc8\x0f\xf0\xd9\x66\xcc\x31\xd5\xbd\x53\x2f\xfa\x05\x88\x06\x68\xec\xe4\x3f\x3c\xeb\x8b\x9d\x9c\xfc\x7d\x56\x84\xf6\xcf\xee\x6d\x84\xda\xcc\xdb\x9f\xb2\x9d\xce\x7a\x83\x31\x7c\x14\xde\xa4\x57\x30\xa7\x42\x41\x37\x8d\x37\x2b\xdd\xe5\x0c\x1f\xeb\xbd\x90\xe5\x46\x8c\x70\xd3\xce\xe3\x4d\x79\xe3\x70\xf4\x24\x01\x07\x7d\xd6\x95\x46\x5a\x33\xc6\x83\x40\x0a\xa9\x56\x2b\x62\x8b\xaa\xcf\x3a\xc2\x22\xcb\x91\x17\x16\xcd\x61\x04\x82\xe4\x53\xd6\x29\xd6\x27\x25\x95\xa6\x18\xea\xb9\xd9\x3f\x5f\x80\xc2\xe5\x2f\x4e\x7e\xa1\x39\x7d\xc0\x7a\x9a\x95\x96\xc9\xa8\x04\xbc\x1a\x51\xcf\xe7\x99\x56\xe3\xa9\x67\x06\x38\x6a\x19\xdb\x8f\x44\x0e\x3d\xef\xff\xfd\x2f\x54\xdf\x7a\x36\x78\xcf\xc9\x29\x7c\xb6\x17\x06\x55\xc5\xcd\xcd\x46\x5d\x9b\x0e\xd3\x06\x54\x24\x6f\xd3\xd9\x7e\xd4\x6c\x48\xaa\xb4\xf4\x95\xd3\x06\x6d\x1b\x05\xbe\x7a\xdc\x72\xa5\xbb\x7e\x08\xfe\xe0\x37\x28\xb9\x04\xbd\x5a\x01\xf7\xe8\x58\x6a\x08\x35\x52\x98\xcf\x6c\x65\x21\xc1\x9f\xff\x87\x8c\x90\x60\x6b\x2f\x12\x1a\xf6\xe5\x6a\xcc\x21\x6f\xbc\xda\x6a\x3a\x27\xeb\xf9\x15\x09\xf6\x89\x69\x54\x4c\x49\x5b\xd3\x6a\xae\xac\x5a\xac\x38\x84\x96\x9f\x51\x90\x55\x92\xb4\xd1\x8c\x69\xf1\xdd\x60\xc6\xb4\x1f\x5d\xa3\x19\xd3\x78\xb6\x21\x88\x7d\x78\x96\x90\xb5\x53\xe5\x8c\x66\x4b\x33\xa7\x64\x6f\x6b\x29\xe7\xb4\x54\xed\x46\x42\x63\xcd\x22\x20\xc6\x54\xdd\x8a\xd9\xa8\x73\x32\x8c\x6f\x9d\x97\x11\xd1\xd0\x93\xa3\xd5\x29\x1c\xf8\x7d\x0f\x68\xd4\x31\x75\x21\xda\xd6\x29\xa9\xcc\x4f\x83\x87\xad\x58\xbc\x21\xac\xbc\x4b\x9e\x37\x28\x99\xec\xfb\xd3\x50\x1f\x79\xf3\x54\xd3\x6b\xcd\x97\xb8\x36\xc8\x3f\x9b\x5b\xa0\x52\x40\x44\x51\xeb\x64\x68\xdf\x10\x97\x63\xaf\xc6\xc6\xcc\x9d\xbe\x48\xb6\x71\xe0\x05\xd3\xc8\xc0\x64\x37\xc0\x13\xc1\x0d\xdc\x78\xdf\xff\x3f\x78\xd6\xc4\x32\x4c\x47\xd1\xd7\xb3\x21\x4e\xdd\x5a\xa8\x16\xf4\xfe\x90\xec\x68\x91\xa3\x54\x17\x70\x84\xdb\xbc\x05\x82\x88\x43\x47\x69\x7b\x71\xd2\x90\xff\xf1\x7b\xd7\xe7\xb4\x88\xa3\xe0\x19\x67\x47\xb8\x16\xb0\x19\x9a\x5f\x22\xd7\xce\x44\x91\x81\x84\xd5\x1b\xcc\xad\xb3\x0b\x38\x37\x98\x5b\xed\xb3\xda\xe0\x1a\xd7\xbc\x6d\x32\xa9\xbb\xa5\x0d\x12\x32\x35\x2f\xe6\x42\xbd\x17\x6f\xd4\x45\xe4\x25\x40\xd1\x16\x6d\xcc\x5e\x3b\xaa\xa1\x86\x9f\xb9\x91\x74\x56\x36\x46\xa1\xf7\xf2\x97\xa0\xd6\xf7\x0c\x86\x97\xad\x26\x01\x76\xd2\x6e\xee\x5b\xcc\xe9\xad\x83\xaa\x01\xe1\x34\x33\x1b\xd2\x31\xd9\xcf\xa3\x31\xbd\x52\xd7\x39\xd9\x76\xe2\x30\x53\x0c\xcf\x32\xfb\x2b\xb7\x3d\x25\xa6\x9a\x60\x7d\x45\x1b\x3a\xdb\xc1\x48\x34\x7d\x71\x34\x88\x02\xd1\x70\x4c\x14\x29\xd0\xa4\x1d\x5c\x69\xf5\x78\xf0\x4a\x64\x21\x0d\xf5\x90\x1d\x9c\xda\x41\xfe\x76\x87\x54\xc3\x9a\xfb\x98\xae\xbd\x17\x93\xc0\x69\xd0\x17\x27\x9d\x4f\x85\x57\xdb\xc9\x79\xd1\x34\x9c\xc4\xaf\x42\xc4\xed\x84\xb9\x4b\xd0\xb0\x21\xed\x66\x73\x0f\x27\xe5\x9b\x06\x81\x88\x01\x7b\x19\x36\xd8\x39\x9b\x4e\xef\x76\x12\xe7\x59\xbc\xc1\xee\x69\xbf\xb3\xf6\x62\xa4\x61\xff\xa9\x86\x08\xf0\x18\xfe\xbf\x72\x8c\xa2\xf0\x22\x45\x6a\xf0\xe2\xb4\xfa\x7f\x50\xa4\x5b\x62\x7b\x11\x92\xe3\xa3\x67\xbb\x93\x13\x35\xcd\x4c\x80\xd9\x4d\xf3\xcd\xc3\x55\x24\xdd\x4c\xe4\xe7\x0f\x28\xa1\x85\x34\xdb\x93\xd3\x2c\xa2\x1f\x6e\x49\x41\xc7\x46\xc7\x32\x5f\xd9\x1b\x50\x8b\xbd\x88\xda\x43\x69\x68\x81\xfb\x24\x55\xa2\xfb\xa1\xbd\xcd\xfb\x1e\x4e\x60\xad\xba\x49\x5e\x56\x74\xc5\x6a\x0f\xb8\x41\x33\xd7\x19\x43\x3d\xfd\x8c\xbb\x89\x6c\x19\xfd\x97\x34\x2c\xfd\x40\x17\x1c\xc1\x8c\x4e\x13\x9e\x2f\x27\x7d\xe3\xb9\x21\x51\xd1\x37\x64\xe3\x11\x93\xf7\x17\x56\x54\x55\xaf\x7a\xcf\x20\x10\xed\xff\x71\x84\x6b\x94\x1d\x26\x3a\xbb\x11\x76\xaa\x6f\xfa\xe7\x03\x32\x94\x04\x64\xdf\x28\x0b\x96\x49\xc0\xb0\x35\xf7\xbd\x90\xe7\x87\x9e\xb9\x16\xe2\x88\x5e\xea\x7f\xff\x0b\xfb\x99\x75\x64\x39\xb7\xff\x41\x67\x39\x1c\x5f\xe2\x3a\x13\x06\x59\x01\xd4\x4b\x52\xe9\x4f\xb8\x36\xa2\x09\x3a\x1d\x03\xc0\x5e\x78\x00\x0b\xd7\xf7\x4a\x1d\x93\xc0\x52\x4f\x15\x8d\xb6\x6e\x4f\xb3\x9d\xd8\xb2\xd3\x6c\xe7\x36\x2b\x71\x82\xf6\x72\x07\xba\xf1\x05\xa7\xd7\xfb\x05\x95\x5e\x2b\xc6\x1e\xfa\xba\xdb\xa1\x71\xb1\xd7\x4d\x6f\x98\x39\x2f\x46\xab\xa8\x8b\xaa\x0e\x1a\x35\x13\xcd\x0d\x4c\x34\x20\x06\x6a\x4c\x53\xa4\x89\x43\x80\xb2\xcd\x69\x1d\x3e\x5f\x76\x50\xe8\xc8\x59\x1e\x1e\x52\x62\x21\xc1\xad\xde\x93\xdf\xd4\x43\xe7\x4e\x13\xac\xe8\xf4\xfa\xf2\x7d\xa2\xf7\x0a\xb1\x2c\xa2\x11\xfd\xd8\xfe\x54\x19\x6f\xf6\xd4\xbd\x34\xf7\x07\x65\xb7\x79\xa7\x73\xc4\x26\x70\xa1\x37\x3f\x13\xe3\xfa\x7b\xb2\xaf\x57\x91\xa1\x94\xd1\x4d\x2f\x75\xae\x52\xb5\x74\x64\xf0\xf9\xcc\xfa\xa0\xf1\xcc\xb3\x38\x26\xfc\xd6\xc4\x8d\x03\x99\xe3\x3d\xeb\x03\x90\xc2\xfc\xfc\xe2\xa8\xa9\x82\xb9\xb3\x03\x37\x35\x53\x30\x72\xd6\xf5\x02\x41\x8c\x64\x53\x0f\x22\x7f\x5d\xff\x3b\x2b\xd7\xd8\xf8\xda\xe9\xdf\x6f\x23\x53\xa7\xb9\xce\xee\xe7\x1d\xe6\x3a\x5b\x67\x3b\x2d\x72\xb6\x4a\x76\x78\x95\x35\x41\x8c\x9e\x30\xc7\xcc\x36\x91\x2f\xdc\xf3\xc4\xf4\x3b\x21\xc5\x59\x9f\x3c\xf4\xbd\x78\x93\xe3\x70\x93\x58\x3c\xd3\x34\x73\x5c\xfe\x01\x67\xc9\xa7\xcb\x83\x2f\x98\x48\xe6\x6b\xd2\x5d\xb1\x4f\xc2\x06\x1d\xa0\x1d\x81\xcc\xb6\x5b\xf7\xc5\x3d\xa5\x16\x68\xd1\xeb\x9e\x7d\x04\x5c\xda\x6f\xa3\x03\x39\xd9\xc0\xd7\x59\xf1\x5a\xf1\xe8\xb3\x03\x2c\xd9\xeb\xb9\x23\x12\xa0\x7d\xfe\x87\x2c\xd2\xd1\xd3\xa9\x2e\xea\x9f\x1e\x38\xf5\xfe\x22\x2d\x7e\xba\xa3\xf7\x3d\xa5\x93\x26\x06\x6e\x65\x76\xdc\xe9\x4c\x6c\x6e\x5d\x48\x87\x0a\xc9\xf6\xfb\xbe\x53\x86\xea\xce\xdc\x77\xce\xbd\x3f\x40\xc9\x05\x8b\x54\x84\x64\x76\xef\x13\x84\x06\x28\x5b\xcd\xec\xfb\x7b\x48\x4f\xcb\xa6\x9d\xa7\x9f\xd7\x6e\x47\x5e\xd3\x0f\x89\x0f\xa2\x7f\xd5\xc0\xf1\x7b\x77\x81\x2e\x8f\x9d\x11\x9b\xbe\xb4\x77\xa6\x41\xb7\xae\xa5\xa7\x01\x50\xea\xc2\x7e\x50\xf9\xa1\x6b\x54\x27\xc4\xf3\xd9\x04\xd7\xb6\xe6\xe3\x92\x06\x3f\x5f\xab\xfa\x89\x48\x3d\xdd\x40\x3a\xf3\xa2\x5b\x03\xd3\x59\x38\xf1\xb3\x79\xe1\x69\xd6\x7c\x46\x33\xad\x79\x37\x83\x9d\x74\x9f\x5b\xfe\x02\x97\x5c\xe1\x84\x9e\x41\x9c\xde\xbd\x27\x0e\x4c\x33\x10\x21\x99\x65\x1c\x62\x36\xed\xa1\xd0\xd3\xa0\x27\xe0\xda\x61\xc0\x6b\x3e\x78\x10\x0b\x60\x07\x84\x7e\x91\xc1\xdc\x43\x5a\xf0\xa4\xaf\xe8\x37\x37\xb7\x67\x0e\x69\xce\x37\xef\xab\x9b\x34\x68\xe2\x18\x0d\xf0\x11\xc4\xa9\x88\xf2\x01\x0a\x45\x94\xaf\x00\xfd\xc6\x5a\x74\x7f\x40\x05\xb4\x39\x2a\x3d\xbf\x0c\x24\x50\x96\xa6\x39\xb8\xaf\x3f\xd9\xa9\x66\x02\xa8\xcd\x9e\xdd\xfd\xe1\xfa\xfb\x03\xf4\x69\x61\x80\xba\x34\xd3\x48\x83\x55\x0f\xeb\xfa\x4b\xbe\xb9\xd9\xe1\x15\x66\xdb\x7f\x7f\x12\x44\xfc\xeb\x7e\xfc\xa8\x6f\xd4\xc4\x0f\xe4\xac\xb4\x5f\xe3\x00\xe2\x53\x3c\xf8\x7b\x2a\x22\x87\x5f\xd5\x33\xf9\xd5\x0d\x42\x94\x68\x13\x0e\xe4\xc0\x09\xa5\xc5\x7a\xb7\x0f\x7b\x1c\xfa\x81\x17\x0a\x49\xc8\x01\xbd\x92\xfd\x2a\xc6\x36\xfe\xfb\x5f\xb7\xf2\x7a\x6c\xf1\x3e\xeb\x6a\x37\x36\xba\xa1\xe9\x86\x31\x52\xcd\x24\x56\x18\x1b\x27\xd5\x5d\x52\x28\x2f\xff\xc0\x6b\x91\xf8\x71\x94\xa4\x52\x9d\x42\x33\x65\xdb\xff\x28\x59\xcb\x4d\x03\xa7\x97\xbf\xfd\x09\x46\xa1\x82\x3b\xdc\x04\x77\x95\x3a\x2d\x28\xd8\xab\x43\x75\x54\x6c\x22\xcf\x43\xa2\xb3\xe5\x1f\x72\xa0\x22\x22\xb5\x55\x5a\xdf\xc1\x42\xd7\x56\x57\x0d\xda\xcc\xba\xf8\x69\xa4\xcd\xcc\x1c\x80\x80\x49\x3b\x14\x8c\x96\x29\x10\xd5\x09\x3c\xf7\xc7\xd4\xf5\x69\x30\xeb\x78\x68\x5f\x8c\x04\x75\xdd\x6f\x60\x37\x4b\xb4\x0f\x80\x34\xd5\x21\x9b\x03\x69\x16\xad\xf1\x1d\x3d\x59\x40\x1f\x74\x1e\x71\x5e\x31\x24\xa4\xb0\x7e\x6a\xc0\xf1\xde\xc1\x23\x83\x45\x05\xbb\x27\x0f\x16\xaf\x50\xd6\xad\x39\x60\xe1\x1a\x9f\x2e\x60\x6d\xb2\xaa\x70\x74\x84\x48\x7b\xfd\x50\x77\xfa\xe3\xda\x37\x00\xb3\xc2\xac\x0d\x37\x2b\xbb\x5e\x0f\xe4\x99\x09\x65\xa0\x9a\x63\xd0\xda\xa8\x13\x6c\x50\xe5\x65\x3d\xcb\x40\x46\x0b\x6b\xaa\x07\x4b\x4d\x5b\xa3\x35\xe0\xfc\xaf\x7c\x50\x73\x0c\xde\xaf\x3c\x11\x83\xe8\xc1\x54\xc0\x91\xca\xd6\xee\x11\x0c\xd3\x31\x9b\x21\x35\x62\xb1\x86\x72\x44\x72\xae\x3a\x09\xc6\x31\xba\x49\x6a\x24\x4d\x26\xb0\x9a\xaa\xf4\xcc\x01\xa8\xe6\x6a\x5b\x73\xcc\x6c\x52\x9d\x4e\xc8\x5a\xcb\xd6\x31\xc9\xba\x9e\x1b\xb8\x42\xd5\xcf\x17\x3c\x9d\x3d\x90\xcc\x33\x21\xd0\x3a\x60\x38\x6b\x9f\xe7\x8e\x74\x34\x1a\xd7\xca\x81\x6a\x5c\x69\x49\x93\x16\x6b\x20\x8f\x61\xb1\x7e\x6f\xec\x30\xe4\x5b\xb7\x36\x76\xf6\xa1\x2f\x76\x20\xc8\xe2\xff\xd9\x87\x30\xc1\x80\x5b\x92\x0d\x6b\x83\x46\x2a\xab\x3b\x06\xd2\x40\xd8\x3c\x33\xe0\x2d\xdf\x2c\xab\x0e\x4a\x1e\x4f\xf6\xc1\xbd\xe0\x89\x40\x5e\x08\xdb\x72\xc7\x11\xec\xc2\x4d\x50\x4e\x78\x14\x0c\x51\xb4\xb2\x6b\x1c\x0f\x7f\xd0\x5c\x9d\xf4\xf9\x11\xe4\x1b\x67\x92\xe1\x1f\x92\x0c\xb5\x81\x30\x46\x2b\xb3\x06\x3d\xe0\xdb\xf6\xa7\x70\xd7\x41\x2d\x91\xe0\xff\x38\x99\x25\x58\xf3\x46\xd0\x62\x09\x7d\x32\x55\xa1\x7b\xcb\x34\x67\x7a\x46\x8a\x25\x81\xbb\x71\x25\xfd\x1a\x21\x03\x1c\xad\x2b\x1b\x17\xe9\xf7\x33\xd5\xcf\xde\x6b\xcc\x0c\xa8\x1c\xd7\x73\x30\x6d\x76\x75\x93\x64\x1f\x73\x03\x22\x1c\x6d\x16\x1a\x30\xb5\x15\xab\xaa\x06\xfc\x94\x6c\x8e\x18\xf0\x53\xb2\x6d\x6c\x10\xe5\x58\xdb\x36\x98\x8d\x42\xd9\x8f\xe7\x00\xca\xf9\x08\x08\xd6\x72\xb6\xba\x6d\x24\xcc\x31\x7b\xdc\x64\x0f\xcb\x6f\xa4\xa7\xb0\xc1\x70\xdc\x27\x9e\xdd\xe7\x05\xd5\xa9\xdf\x47\x4a\x18\x5d\x58\xc7\x4d\xa2\xc5\x19\x0f\x1d\x39\x34\x4d\x80\x34\xdd\xec\x98\xc9\x29\x3c\x8f\xb0\x96\x75\xef\x19\x58\xcb\x62\xfb\xfc\xc0\xbd\xef\x51\xc3\xab\xc8\x18\x37\x50\xdb\xc5\x06\x8f\x80\x0f\x91\xbd\x34\x02\xd6\x34\x3b\x98\x05\x0b\xb9\x58\xa3\x13\x3f\x2e\xb6\xb8\x37\x80\x73\x6c\xaa\x8a\x1f\x17\x5f\x0c\x1a\xbf\x89\x17\xa6\x9e\x39\x4a\x37\xb0\xe3\xd9\x3d\xd0\x77\x58\xeb\x10\x30\xb8\x79\x5a\x83\x6e\x48\xca\x44\x39\x83\xde\xed\xd6\xbe\x05\xf3\x07\x2a\x97\xda\x0c\x14\x7e\xe9\x92\x25\x81\x6c\x15\xfd\xe7\xff\x79\xe0\x2c\xbf\x40\x97\xd4\xee\x37\xb0\x56\xc3\xcf\x04\x29\x9e\x07\x40\x25\xeb\x87\x03\xa5\xa2\xe3\xf3\x01\xaf\x02\x9e\x97\x8d\x48\x5d\x28\x25\x12\x3a\x49\x04\x46\x49\xbc\xe0\x37\x92\xa9\xb5\x7c\xa5\xa3\x53\x4d\x55\xa1\xa0\xf6\xd4\xc0\xe3\xdd\xba\xf8\x28\x8c\x72\xea\xee\x23\xe7\x4e\x3f\xc0\xf0\xf7\x71\x33\x8b\xca\xfd\x2f\xe4\x1d\x70\x60\xb2\x59\x25\x90\xef\xcf\x36\x91\x60\xb6\x0a\x15\x62\x9f\x01\x87\xa4\x8f\x4f\x4c\x20\x5b\x45\x2f\xee\x22\xe7\x46\x93\x05\x6c\x65\x43\x4c\x10\x5b\xd9\x63\x25\x98\x8c\xc2\x0a\xb7\xa0\x39\xd1\xaa\xc8\x80\x3e\xcc\xd1\x57\xd1\x98\x53\xc0\x1f\x60\xf3\x9a\x67\x68\x2c\xb4\x7a\x34\x90\xf2\xda\x36\x85\xe8\x39\x31\x5a\x40\xc4\x38\x5a\x5d\x1a\x48\xd0\xe7\x10\xb4\xe8\x98\x17\xe9\xba\x03\xb6\xc3\x8f\x01\x33\xe0\xaf\x6e\xb5\x73\xa4\x7e\x6a\xf8\x0b\x4c\x83\xce\xfe\x40\xf1\x95\x2e\x81\x14\x8c\x81\xb4\x8a\x37\x06\x49\xf2\x07\x88\xa5\xf2\xf6\x86\xb7\xb9\xb5\xe9\x81\x7c\x7c\x5d\x87\x41\xc0\x8c\xd7\xeb\x9f\xee\x48\x31\xc8\x3a\xee\x2d\x73\x5d\x98\xa3\x51\x64\xe5\xa3\xa2\x0b\xc4\x47\xda\x1e\x10\x01\xf5\xaf\x37\x0d\xd2\x80\x75\x4b\x9b\xa0\x22\x5e\xb7\xd9\xa0\x89\xce\x0a\xb5\x08\x04\xa4\x99\x9f\x61\x90\x73\x36\x8c\x98\x84\xb3\xde\xfa\x33\xb7\x88\xbf\x00\xa0\x1a\x16\x48\x70\x25\x9f\x56\xac\xc7\xa4\x53\xc2\x70\x1b\xaf\xa0\xb7\x9f\x6e\x30\xe5\x84\x2f\x77\xb1\x78\x1c\x99\x0c\xaa\x9e\x54\x15\x70\x06\xad\x76\xbe\x2f\xc6\x4a\x81\xa2\x91\x65\x40\xa2\x25\x08\x0c\x6f\x56\x15\xc6\xce\x4d\x61\xc9\x09\xdf\x22\x6b\x70\x63\xa7\xe9\x50\x97\xb3\x60\x92\x88\xe1\xc9\x00\xe8\xb2\x22\x30\xf6\xec\xd3\x4d\xa0\x4f\x53\x79\x90\xe3\x04\x27\x02\xa5\x4b\xac\xf7\x0b\x54\xb8\xeb\xbe\xb6\x06\x92\x3a\x2c\xef\x75\x58\xde\xac\x00\x0b\xf8\x16\xf5\x4f\x83\x37\x69\x74\x8b\x74\xde\xd5\x85\x31\x10\x73\xf8\xd9\x67\x44\x5c\xc3\x52\x10\x00\xcb\xda\xcb\x00\x64\xb2\x12\x2e\x90\x5b\xd9\x6a\xc0\x60\x9a\x88\xf6\x69\x91\x12\x2c\xfc\x06\x01\x8b\x34\x5c\x71\x72\xe2\x34\x8a\x93\x54\x5b\xd0\x5e\x24\x52\x1f\xc0\xf5\xdb\x4a\x97\xb8\x72\xfd\xb5\x78\x88\x20\xec\x9b\x25\xda\x45\xec\xe9\xc5\x61\xad\x11\xdf\xa3\x22\x51\x92\x07\x4a\xe5\xcf\xf0\x7e\x82\x93\x91\x63\xa8\x82\x19\x92\xad\x0a\x0c\xc2\x24\x7b\x6a\x05\xdd\xb5\xad\xa1\x0e\x9a\xec\x86\xe5\x20\x93\x72\x59\x6b\x10\x2f\x0c\x0a\x87\x5b\x06\xb4\x3d\xdd\xb7\xed\x20\xee\xd1\xb5\x37\x58\x94\xd8\x7a\xd7\x80\x9f\x51\xd7\x35\x38\xa8\x1e\xb2\x5e\x35\x90\xfa\xa1\x1b\x0f\x06\x03\xff\xda\xa7\x4d\x46\xb1\x68\x3a\x99\xe5\xb8\x7d\xda\x3c\x90\x87\x4e\xc3\x80\x86\xc7\xba\xbc\x78\x28\xcd\x34\x57\x13\x9e\x46\xdd\x17\xe1\xc9\x4c\x5e\x8e\x27\x9a\x08\xf3\xb3\x25\x6a\xfe\x72\x09\xa7\x7e\x80\xdb\x9b\x04\xc9\xfc\x71\x49\xbb\x9b\xdc\x29\x9d\xfc\x46\x4e\xee\xd2\x0f\xd8\x1e\xdd\x7d\x80\x6c\x09\xc4\xf9\xe3\xdc\xaa\xc5\x54\x1b\x69\x35\x26\xa1\x8f\x44\xd3\xdc\xc8\x02\x1a\xf8\xdc\x92\x05\xd4\x25\x33\x75\xf9\x16\x34\x61\x38\xb4\xaa\x6b\xc2\xef\xdb\xaa\xb9\xb9\x51\x4d\xae\x63\x66\x6e\x39\x4e\x51\xbd\xe5\x6a\xb8\x0f\x0a\xf6\x30\x59\x27\x3b\xd5\xc0\x98\x7d\xd9\x0a\xdd\xf9\xe2\xa5\x98\xdb\x9f\x8c\x49\xb3\x70\xd4\x22\xa0\x70\xfb\x69\x9a\xe0\x56\x6e\x47\xcf\x89\xba\x78\x56\x81\xcf\xc2\xb3\x5a\x87\xf7\x2c\x3c\x9b\xa5\xcf\x9b\x85\x3b\x5e\x67\xe9\x64\xad\x64\xeb\x76\x67\x25\x0d\x9a\xe8\xca\xd3\x50\x10\x65\x56\xca\x80\xe1\x1f\x38\xb1\x9a\x25\x78\x76\x5b\x33\x36\x33\xda\x4f\x2a\xa6\x49\x20\xe5\x89\xa7\xd6\x4a\xa5\xb6\xe7\x4c\xa5\x94\x68\x68\xdc\x7a\x66\x87\x86\x89\xf1\xb0\x18\x1e\x68\x0d\xf4\x6c\x10\xa6\x5e\xa8\x46\xd3\x8f\x34\x4c\x13\x95\xf1\x6c\x24\x9e\xf4\xe3\x1e\x82\x05\xb3\xe5\x5a\x6b\xb2\x5f\xe8\x55\x9c\x04\x61\xa2\x9c\xb2\x6f\xfa\x93\x5a\xaf\x90\x5e\x65\xf6\xa4\xda\x3f\x90\x6a\x75\x01\x57\x6f\xeb\x2d\x67\x4f\x22\x35\x93\x9d\x5b\xd3\x7d\x40\xcd\x65\xab\xf1\x4c\x70\x26\x28\x34\x09\xce\x3c\xcc\xce\xb9\x97\xde\x65\x42\x0f\x56\x3e\x34\x51\x1a\x7b\xf5\xa0\x07\x6b\x1f\xa2\xb0\x75\x3d\x0d\xf0\x0c\xeb\xca\x17\x3e\x27\x3d\xc3\xac\xc0\x9d\xc0\x77\x86\x47\x73\x70\xd8\xea\x72\x30\x41\x92\x7a\x1c\xb9\x73\xb5\x78\x2f\xde\xab\xbe\x26\x4f\xe6\xc8\x50\x85\xd2\x39\x07\x19\xc8\xcf\x9c\x7a\xa9\xc9\x26\x0d\x94\xaa\x1f\x3a\x67\x30\x47\xa4\x68\x08\xae\x8d\xb7\x0e\x12\x9c\x59\xdd\x31\xe1\xce\x6e\xb5\xcc\x44\x4e\x8c\x65\xa2\x69\xe1\xb4\xae\x7d\x32\xfe\xd0\xaa\xfc\x89\x84\x65\xd6\xe3\x4c\xd8\x33\xbb\x69\x84\x3d\xd3\x66\xdd\x39\x73\x1e\xf5\xc1\xc4\x4e\xf4\xd2\x11\x24\xea\x56\x3c\x59\x2b\xe4\xe7\xf7\x61\x3b\xf0\x3c\x23\x98\xd0\x77\xde\xb9\xf8\xbd\x86\x00\x85\xd9\xf4\x41\xb0\x20\x4d\xa4\x10\x99\xd4\x9f\x7d\x84\xf2\x02\x73\xe9\x8a\x3b\x17\x47\xa4\x29\x58\x3c\x8c\xcc\xe0\x89\xf5\x04\x38\x26\xb1\xde\xf2\x33\xb6\xa9\x6e\x97\x73\xe7\x01\x69\xfe\x45\x1c\x60\x57\xfa\xfa\x39\x77\x56\x90\xd0\x20\x90\x76\xd5\x0a\x93\x09\xfd\x9a\x6f\xd9\x13\x45\xec\x7c\x5d\x9d\x08\xda\x53\x35\x9c\x39\x0f\xae\xb3\xdf\x0f\xe8\x3a\xfd\x3f\xcf\x00\xf3\x3f\x2d\x74\x2a\x3c\x3b\x27\x5c\xaa\x7c\x6b\x9f\x67\x0e\x5a\x83\x7a\x91\x5e\xd9\xbc\x1f\xce\x02\x6f\x21\x91\x0c\x4d\x9a\x5d\x79\x27\x22\xf4\x9a\x53\x48\xcd\x33\x27\x41\x83\x3e\x29\xd6\x4d\xf5\x49\xb7\x08\x4f\xd3\x89\x78\x5b\xe1\xb4\x49\xfd\xd8\x68\x7f\x8a\x38\x9a\x17\x14\xf4\xca\x2c\x3f\x27\x7d\xac\x54\x79\x74\x4e\x68\xd3\x7c\xdd\x9e\x2f\x30\xac\xd3\xdb\xe9\x22\x22\x28\xfe\x01\x2e\x53\x16\x54\xb0\x00\xfa\x26\x3c\x2f\x1e\x9c\xe6\x76\x54\x98\xf3\xe5\x7a\xde\x54\x59\x7a\x87\xde\x70\xff\x37\x49\xa9\xf8\xf2\x06\xbb\x27\xba\x10\x3f\x67\x3c\x9d\x37\x10\x00\x9c\x6f\x65\x13\x00\xce\x4a\xc8\xf9\x70\x90\x7e\xbf\x03\x18\x69\xd6\x9f\xec\x51\xec\xfc\x20\xfb\x84\x07\x0d\xd5\x98\xef\xde\x13\x0e\x59\x76\x00\x9c\x0f\x8a\xad\x9a\xd9\x1e\xd4\x0c\x10\xda\x5b\xbf\x5c\xb5\xa5\x1f\x48\x71\xd7\x33\x28\x14\xe6\x59\x89\xe5\x74\xd7\x5e\x3f\x78\xa3\x68\x5d\x16\xd4\x56\xbe\x4a\xad\x1f\x28\xda\xfc\x3f\xf5\x09\x92\x7b\x0b\xc8\xcc\x43\x5c\x1b\x55\x6f\xfe\xbf\xa2\x01\x3f\xd3\x99\x4e\x14\x6d\x58\x67\x21\xf5\xf5\x02\xa4\xe1\x39\x5c\xcc\xaf\x65\x95\xfb\x82\x72\xc8\xd7\xc3\x55\x68\x6d\xd2\x0e\x5f\xb0\xbc\xf5\xcd\xb3\xc4\x84\x09\x8e\xcf\x5b\x88\x76\xeb\xca\x14\x3e\x57\xa5\xb4\x97\x68\x5b\x74\xa6\x52\xed\x8e\xb9\x2a\x8f\x5e\xc9\xb6\x05\x50\xe3\x9b\xd1\xaa\xbc\x84\x76\xbf\x00\xee\xd2\xae\x5e\xd0\x1f\x85\x37\xe9\xa2\x71\xce\xf1\x6b\x0b\xb0\xc7\x17\xbe\x45\xfd\x91\x4a\x1d\xcc\xd5\x88\x82\x8b\x7f\xd8\x30\x17\x6a\xa1\x11\x8b\xe9\xfe\xb0\x1a\x67\x5f\xcb\x0d\xd8\x33\x3e\x0d\x74\x7e\xe0\x17\x68\xc0\xf0\x6c\x32\x09\x82\xd3\x99\x2e\x68\x98\x86\x39\xe8\x85\x39\xff\x8f\x26\x0a\x79\xcf\x14\xfd\xa9\x6c\xe2\x58\x40\x2d\x36\x9a\x2c\x56\x3d\xb3\xe9\x60\x25\x28\xf9\x7c\xc1\xb3\x53\xe7\xc0\xea\xd4\x5d\x7c\x3e\x01\xdb\x48\x6c\x2f\xfa\xa7\x7b\x35\xa0\x63\x1a\x52\xc1\xac\xd4\x31\xe9\x1c\x58\x23\xa7\x4e\x2d\xb0\xe2\xaf\x77\xfb\x1a\x9c\x3b\x4d\xf6\x20\x07\x88\x45\xa0\x75\x32\x72\x5e\x83\x00\xd1\x44\xc3\x4b\xca\xe0\x7b\x0d\x8a\xb4\xe5\x2e\x1f\xbc\xa0\x61\x07\x45\x9a\x89\x44\x16\x04\xfb\x1d\xae\x48\x1a\x45\x03\x34\x51\x06\xca\x2b\x88\xc5\xa5\x7e\x59\x70\xc4\x1a\x52\xad\x2d\x64\xe6\x2a\x36\x41\xac\xa0\x60\xf6\x30\x22\xa7\x5a\xf3\x40\xf7\x71\x1b\x0c\x16\x80\x8b\x91\xf1\x42\x76\x2f\x15\x45\x9d\xeb\x05\x2e\x5b\x9d\x02\x80\x6b\x42\x32\x5b\x4a\x21\x9b\x97\x65\xff\x9a\x03\x42\xe9\x4f\xfa\xba\xc5\x34\xac\xe6\x47\xb8\x64\x0d\xa1\x96\x95\x8a\xb0\x0f\x39\x5c\x27\x3f\x43\x31\x66\xe9\x30\x73\x7c\x5a\x06\x78\x64\x59\x2a\x2f\xa6\xbc\x57\x49\xd6\xb9\x16\xe9\xf7\x73\xe3\x3e\xd5\x0c\x51\x2d\x66\xc4\xba\x32\xc7\x82\x9f\x31\x08\x6f\xe4\x85\x41\x48\xd1\xb6\x50\x69\xc2\xd7\xfe\x45\x87\xab\x61\x31\x4a\x87\x2b\xeb\xfe\x17\xfc\xd7\x0d\x70\xd7\x9e\x02\x4c\xc3\xdc\xc1\xbe\x82\x29\x6b\x47\xc1\x55\xcf\x1b\xf2\x7a\x19\x9a\xad\x74\xa7\xf2\x33\xe4\x80\x50\xcc\x82\x4e\xcd\xa9\x14\xd7\xc1\x59\xd2\xc5\x71\x21\xc1\xbd\xad\xfc\x0b\x86\x4c\xeb\xd8\x16\xdd\xa7\x6c\x73\x59\x47\x92\xac\x95\xa2\x3f\x95\x8d\x2e\xeb\xa0\xd0\xd5\x2d\x6d\xc1\x5d\xca\x30\x64\x1d\xc9\xbc\xee\x04\x7b\x50\xba\xa5\x05\x24\x63\xf5\xc8\xba\x78\xd7\xf0\x1e\x64\x4e\xac\xe9\x0d\x92\x1a\x2d\xaf\xdd\x15\xa4\x4a\x7d\x5c\xbc\x74\x79\x9b\xc2\xa1\xfc\x73\x34\xb0\x80\x97\x05\x03\x53\xca\x3b\x08\x64\xdd\x03\x3a\x77\x11\x81\x2c\x56\x1f\x29\xcd\x62\xb8\x36\x68\xad\x9b\xca\xdd\xe1\x37\xc8\xc4\x3e\xb8\x1f\xea\x7d\xbc\x4b\x1f\x42\x36\x29\x0f\x16\xd1\x8c\xa7\x02\xbe\x4a\xe1\xc8\xc0\xf5\x80\x29\xbb\x3f\x48\x2a\xfc\xc2\xc5\x26\x35\xfd\x4f\xb2\xe9\xbf\xe9\xde\x99\x75\xea\xe7\x67\xe4\xd4\xb0\x41\x6a\x87\xe5\xce\x96\x9e\x1d\x96\x3b\x4b\xe5\xfd\xc7\xc3\xbd\xfa\x03\x16\x44\xf4\x0b\x60\xd3\xf9\x7f\x8c\xbd\x49\xce\x36\xbd\xb2\x1c\x36\xf7\x2a\xbe\x1d\xb8\xd8\x93\x93\x7f\xe2\xb1\xbd\x87\xea\x68\x68\xa0\xab\x8b\x63\x69\xff\x46\x45\x90\x11\xcf\x11\x24\xe0\x1b\xbc\xc0\xfb\x14\xab\xd8\x24\x93\x99\xc9\x6c\x3d\x02\xd0\x54\x07\xe5\x3c\x5e\xb8\x85\xf9\x7b\x5e\x57\xdd\x01\x72\x48\xf9\x70\x9f\x74\x50\x72\xa4\xdc\x19\x10\x0a\x2d\x01\xe4\x84\xa6\xc9\x28\x76\x42\xd1\xd4\xed\xfd\x7f\x86\xb5\xbd\x9a\x13\x34\x4d\xa6\x48\x27\x4a\xe2\x3a\xe4\xeb\x84\xe6\xc9\x72\xe5\x89\xac\xa4\x3e\x49\x27\x65\x26\x61\xfd\x49\xa5\x92\x4d\xac\x27\x92\x4a\x99\xb1\x9c\x14\xa2\x6c\x8d\x3c\xe3\x5a\x94\x86\x8c\x94\xe8\x45\xc3\xce\x6d\x94\xd3\x6f\x9e\xce\xe0\x3e\x21\x87\x55\xf7\xc0\xc3\x29\x91\xe9\x8c\x48\xcd\xac\xeb\xea\x89\x22\x5e\x55\x72\xc1\x49\x1b\x9d\xcd\x7c\x67\xa2\x67\x91\x00\x8d\xa4\xa5\x3d\xbb\x9d\xf5\x62\xd5\x21\x93\x98\xfe\x8c\x40\x99\xec\xe7\x05\x2a\x2a\x35\xe5\x44\x12\xa6\x29\x27\x38\x11\x0c\x0f\x88\xe4\x5d\xa2\x37\x27\x9d\xa3\x4a\xfc\x2b\x46\x74\xb2\x32\x8f\x2a\x86\xf5\x93\xb9\xe6\x6d\x3c\x3d\x29\xae\x55\xbf\x90\xf8\x82\x26\xbc\xc4\x31\x5d\x6f\xcf\xcc\x15\x69\x46\x4c\x37\x10\x7e\xba\xc4\x99\x94\x76\xe6\x84\xb8\x36\x9c\x1c\xfe\xcc\x3c\x93\xba\x9f\x9e\x99\x52\xa5\x78\xcb\x09\x8f\x78\x5b\x70\x4f\xa8\xa5\x7a\x71\x3b\xe8\xb6\x0e\xf5\x59\xd6\xac\xb5\x0c\x64\x41\xb5\x8c\x71\x96\x02\xf5\x8c\x3b\x24\x66\x48\xf8\x3a\x99\x16\xd5\x49\x12\xce\xa5\xa6\x92\x6a\xe2\x2c\xc4\x78\x7f\x71\xb3\x0b\x4f\xe2\x21\x20\x3c\x08\x03\x4b\xf4\x1b\x49\xae\x9c\x6b\xf3\x44\x7d\xa1\x16\x3c\x6b\x68\x9d\x7e\x4e\x40\x5d\x65\x93\xf4\x9b\x3c\x3b\xfa\xc1\x8a\x8e\xd0\xef\xb5\x0a\xf7\x40\x3f\x43\x8f\x00\xdb\x6c\x77\x3b\x48\x91\x38\xe8\x49\x79\xd0\x74\x02\xf2\xa0\x73\x64\x9d\x10\xff\x2c\x56\x9c\x0d\xae\xbe\x9e\x31\xec\x90\xb6\x0d\x9f\x90\x06\x2d\xca\x9d\xcb\xd5\xcb\x70\x6f\x08\x2d\xf0\x09\x6d\x9c\x90\x3f\x78\xb9\x22\x01\xb1\x91\x38\xfa\x08\x52\x07\x65\xe3\xee\xd9\x09\x45\xad\xb9\x13\x39\xbc\x0f\x08\x1d\xfc\xc1\x68\x64\x58\xf8\x39\xb3\x70\xb1\x1f\x8e\x51\x3b\x61\xda\x1c\x5e\x15\xb2\xe8\xf7\xee\xdf\x17\x47\xf0\x07\x2b\x20\x42\xbf\x1f\xc4\x60\x7a\x8a\xa4\x33\xde\xb8\x25\xbf\x99\xd0\xc0\xa3\xde\xbe\x80\x27\xa3\x15\x6d\x02\x39\x3f\x01\x2f\xfe\x30\x11\xc8\x73\x43\xb2\xcf\x39\xd6\x22\x3c\x04\x65\x02\x63\x13\xb2\xf1\x77\xef\x3d\x93\x36\xd8\xec\x79\x22\x69\x43\xf5\x32\x69\x27\x2d\xfe\xcd\x55\xf8\xd8\x42\xe2\xfb\xe1\x53\x14\xf8\x7c\x84\xe0\xaa\x56\x8d\x7d\x48\xbe\x3f\x8a\x7f\x93\x38\xfa\x7b\x50\x12\xd3\x89\x93\x33\xf4\xde\x43\xd5\x96\xba\xc1\x76\x32\x5d\xa3\xa0\x80\x14\x5b\x16\x6a\xcf\x73\x11\x44\x0f\xb1\xd6\xa0\x45\x7d\x32\x62\x1c\x3e\x93\x08\x88\x74\x5a\x89\xf3\x22\x36\x65\x3f\x58\x80\xd6\x2c\x97\x04\x28\xa5\xce\x79\xc1\x69\xdb\x5b\x75\x11\x5d\xbc\x57\x10\x09\x7d\x8d\x3b\xaf\xf7\x83\x43\xf4\x07\x13\xc6\x7b\xbd\x8f\x54\xaf\x55\xfa\x87\xf3\x5e\x73\xd2\xa4\x61\x97\x55\x91\xb0\x7e\xde\x24\x77\xd9\x5f\x80\xbd\x17\xbf\xd0\xf9\x82\x16\x71\x2f\xa2\xad\xbd\xa3\x61\xd6\xb6\xde\x13\xee\x6e\x9f\x04\xf0\x37\x8c\x08\x59\x26\x6c\x08\x3e\x11\x30\x59\xbb\x27\x8c\x4c\x67\x3e\x20\xcf\x52\x2b\x68\x3e\x50\x06\x0e\xbb\x22\x9f\x9f\x94\x9c\x86\x61\xf0\xc9\xc0\xd9\x51\x7d\xe7\xb3\x76\x41\x1b\x4b\x89\xb7\xbb\x47\xd0\x73\x73\x56\x68\xfb\x0e\x6f\x3c\x92\x4e\x0c\x55\x43\xee\x27\x3c\xe3\x9c\x0a\xf4\x7c\x90\xdb\xc5\xb2\x02\x4c\xc0\x3f\xb8\x87\x04\x5e\x4e\x91\x7f\xbe\xd8\x35\xcb\x91\x28\x91\xfb\x23\x7c\xbc\x70\xd1\xb0\x18\x48\x09\xdb\xa2\x00\x72\x4c\x54\x8b\x91\x48\x03\x3b\x5c\xb6\xe7\x84\x57\x5c\x2f\xfe\x4d\xfe\xa3\x0f\x26\x29\xa5\x0f\x30\x2a\x05\xb8\xe0\xd1\x39\x79\x3e\x05\xe3\xc9\x9b\x87\x0f\xc7\xe4\xcd\x23\xf8\x01\xf2\x52\x98\xf7\x4f\xce\x59\x6b\x80\xf5\xd8\x91\xb3\x27\xab\x00\x78\x17\x27\x35\xd3\x26\x09\x50\x27\x0e\x53\x2d\x1a\x8b\x6d\xd2\xbe\x50\x16\xca\x35\x1f\x2e\x96\xcc\x15\x31\xbf\x0e\x16\xc7\x38\xf4\x9b\x31\x17\x4d\xbf\x29\xcf\x74\x7f\xc0\xf3\x1b\x3c\x42\xc3\xbe\xb9\x07\x9a\xd9\x84\xac\x17\xd3\xfe\xdb\x8a\x7e\x51\xa0\xff\x99\x13\x05\x9c\xee\x41\x5f\x44\x33\x45\xfd\x9e\x1c\x53\x3d\x40\xc2\x77\x69\x83\x2b\x10\xdd\x25\x3e\x5f\x81\xc8\xa2\x49\x42\x5e\x77\x35\x85\x2b\x70\xd2\x7e\x9f\x45\x49\xba\x7e\x9f\x68\x0f\xfa\x7d\xc1\xe0\xe5\x01\xd7\x46\xf8\x03\xe4\x14\xfe\xe9\x90\x02\x7d\xf1\x83\xc5\x88\x35\x85\xc8\x35\x08\xb0\x91\x2a\x15\xff\xe6\x94\x05\x25\x54\x80\x72\x6a\xf2\x0b\x09\xc6\x9c\xe2\xfd\x62\x4e\x58\x9d\x97\x2b\x2e\xa8\xaa\x83\xb4\xf0\x59\x23\x20\x29\xac\x4b\x0e\x5c\x89\x37\x33\x11\xda\x8b\x0a\x4f\x1d\x80\x8b\x45\x02\x6c\xf4\xbf\x50\x13\xc0\x09\xd6\x2f\x88\xc7\xce\x6d\x7e\x31\x5d\x97\x9d\x19\xae\xbc\x4e\x84\xe6\x90\xd7\x15\xd5\x6f\x90\xb4\x8a\x2b\x5e\x9f\x3c\x5c\x9d\x93\xf8\x82\xf6\xd2\xe9\xd0\x2f\xfa\xc7\x39\xe5\xef\x95\x39\x29\x0f\x31\xf1\x5b\x80\x59\xfe\x72\xa2\x24\x17\x82\x15\x86\xb3\x68\x5f\x0c\x17\xf5\x6e\x97\x75\xb0\xfd\x02\xf6\x46\x62\xd8\xc5\x12\xb7\x12\x55\xaf\x42\x4d\x71\xf4\x03\xe0\x93\x58\xd4\x55\xb8\x79\x6e\x47\x72\x03\x31\x9c\xab\x90\xf1\x8a\xd6\x5c\xf0\xb8\x73\xae\xe7\x8b\xba\x4d\xfb\x5b\x5c\x75\xd5\x64\xd4\x6f\x4e\x41\xb4\xe4\x82\x45\xb5\xfd\x5d\xf2\x85\x0b\x82\xae\xf3\x3a\x5f\x75\x51\x77\xad\xb8\x72\x3e\x02\xd1\x92\x74\x35\x5a\x63\x11\x3e\xff\x46\xf6\x57\x03\x04\x6a\x4e\xd7\x13\xb8\x90\x34\xa3\xff\x9c\x58\xc4\x30\x98\xe5\x5e\x4c\x2e\xd6\x0d\x32\x9a\x67\xed\xb9\x74\x51\xcd\xd9\x0d\x64\x98\x67\x9d\xd9\xf9\x5a\xc2\xb1\x58\xd0\xc5\x74\x63\x9e\x04\xc2\x4d\x9d\xb3\xf8\xea\x0b\x53\x34\x09\xc8\xc6\x4e\xa9\x73\x31\xfb\x98\x9d\x58\x2e\xc6\x9f\x76\xef\x53\x3f\xff\xf9\xf3\x13\x67\x77\x2d\x1f\x3e\x1f\xd3\x4e\x48\xbb\xcb\x85\xce\x1e\x13\xe8\x6c\xc8\x2d\x61\x58\x77\xd0\x6b\x65\xea\xd0\x07\x48\x37\xe6\xfc\xb1\xd7\xa0\x07\x8b\x44\x91\x6b\xf0\xe6\x25\x05\xf1\x35\xd6\x85\x52\x63\x0c\x12\x5c\xed\xff\x8d\x5c\x7f\x36\x7b\xdd\x89\xa7\x54\xd7\xbb\x9b\x81\x4b\x96\x0f\x6e\x14\xca\x75\xca\xd1\x9b\xf5\x44\xcc\x27\x6e\x16\x7a\xb3\x2b\xcc\x0d\xdf\x5a\xe7\xc2\xbc\x49\x4c\x24\xf4\xdf\xbc\x5a\x9b\x88\xdf\x1f\xed\x48\xc1\x43\x66\xd2\x2f\x89\x4d\x37\xae\xd6\x4e\x8e\x79\xe7\x75\x26\xa2\x1e\x50\xc1\xa1\x49\xd2\x23\xc4\x91\x51\x37\x89\x8d\x4e\xd5\x4d\xda\x92\x3d\xc2\xe4\x9c\xf4\x01\x92\x01\x3a\xb1\xd4\x4d\x0f\x11\x3b\xdb\xdc\x08\x84\x1a\x5d\x48\x77\x2f\xe2\x52\xfc\x49\x41\x17\x9a\x24\x53\xfd\x99\x59\xdd\x65\x01\x5f\xb3\x2a\x3c\x0a\xcd\x9f\x7c\xeb\x72\x75\x99\x9b\xd6\x17\x3b\xec\xdc\x0c\x85\xb2\xd5\xf0\x86\x35\xc5\x16\x81\x1b\x77\x6b\xa7\x13\xba\x79\x75\xb6\x67\xcb\x5d\x19\x92\x92\xfc\xc6\xe0\x34\xb5\x5f\xc8\xdd\xe3\x54\xb9\x37\x2e\xd3\xf6\x23\xbc\x49\x63\xc4\x6d\xee\xba\x30\x44\x08\x80\xd4\x3b\x45\xe5\x9b\xfb\x0d\x2f\x5c\x67\x5f\xb9\x59\xa4\xc4\x80\x69\xc0\x39\x51\xd1\xbb\xad\xed\xf4\x03\x0c\x29\xa2\x72\x37\xe2\xa0\xae\x5c\x77\xe7\xb2\x35\x85\xce\xbd\x10\xa4\x91\x2c\xd0\xc9\x0e\x6e\x58\x22\xec\xe1\x71\xaf\xab\xad\x2e\x33\x37\x8a\xc0\xfd\x60\x3d\x1d\x70\xed\x51\x71\x23\x7b\x60\x37\x1f\xbf\xe9\x91\x6b\xc6\x7f\x23\x18\xdc\xc1\x79\x37\x2c\x0b\x0e\xec\xb9\x59\x16\xce\x5c\xf8\x66\xb6\x40\xb3\xe1\x9b\xd9\x02\xed\xa8\x72\x83\x02\x38\x72\xe6\xfe\x08\x40\x32\x95\xba\x71\xfe\x93\x4d\x03\xf7\xc9\x3a\x3b\x82\x0b\xc2\xaa\xcc\x5c\xee\x93\x29\x2e\xd5\xc1\xb9\x90\x5a\x53\x80\x6d\xc2\x9a\xc2\x1b\xb9\x77\x52\x2b\x7f\xc3\x8d\xee\x93\x61\xbc\xda\xc6\x93\x50\xd7\x2e\xb0\x64\x9c\x4f\x10\xaf\xb5\xde\x04\xe4\xf5\x71\xb8\xc2\x0d\x8f\x12\xbb\x4d\xdf\xb8\xd5\xba\xa4\xc4\xfd\x5d\x6a\xd3\x0f\xf5\x83\x47\x89\xdd\x0c\x6e\xc4\x6b\xd9\xab\xfa\xbe\x60\xfb\xf1\x62\x11\x13\xde\x9b\xfb\xe3\xf9\x94\x48\x7c\x23\xed\xcf\xe8\xe2\x34\xf7\x05\x9f\x17\x71\xf3\xfb\xbb\xe2\xa6\xf0\xd3\xce\x15\xb8\xc7\x09\xb4\xd2\xfb\x37\x0d\x74\x9a\x21\x72\xfc\x34\xf1\x88\x9b\x0e\x29\x3e\x19\xdf\x15\x38\xb9\x3e\xc0\xfd\xdd\x80\xf3\x0f\x02\xdc\x8b\x8f\xf9\x05\x9e\xff\xee\x1e\x18\xcc\xaf\x19\xa1\x1a\x8a\x55\xbb\xf7\xba\x11\x47\xbf\x70\xc2\x17\x49\x40\xba\xd7\x51\xd1\x1a\x71\xc9\xb5\x87\xd7\x8d\x6a\x28\x4e\xbe\x7e\xdf\x64\x7c\x5e\x24\xd2\x04\xb9\x5a\xca\xfd\x50\x8e\xf3\x17\x4f\x02\xd2\x69\x9f\x19\x10\x66\x51\xf0\x66\x75\x14\x0b\x93\x37\x02\xc2\x4a\x30\x85\xc0\x35\xd8\x7e\xe7\xf7\x77\x0d\x8e\xf6\x6c\xbb\x97\xab\xb3\x87\x24\x61\xfd\x79\x01\x15\xab\x74\xad\xbd\x5f\x54\x28\xf7\xe9\x7d\x69\xd5\xf9\x79\x00\x82\xe0\x0e\x90\xb7\xda\xbe\xf2\x37\xee\xc1\xf6\xbe\xbf\x71\x0f\xb6\xa2\xe1\x66\x10\xbc\xfd\xa5\x6e\x16\x48\x31\xf2\xad\x8b\xb0\xd8\xff\x8d\x8b\x70\xf8\xe9\x81\x80\x96\x80\x7c\x4f\xa4\x49\xf0\xf9\x63\x6a\x23\xcb\xe4\x37\x53\x1b\xd9\xeb\xeb\x9e\xc8\x83\x65\xfc\x5d\x37\x61\x73\x5e\x56\xc4\xfb\x41\x87\x49\x57\xb4\xe2\x41\xe8\x8c\xe9\xdf\x40\x0f\x33\x3d\xe6\xa5\xb6\x1f\xd7\xbd\xee\xbe\x12\x21\x9f\x83\xb7\x42\x69\x32\x1f\x56\xbc\x73\x2a\xdf\x87\x77\xd7\xe6\xdf\x38\xb8\xa2\x8b\xcf\xb1\x48\xab\x1f\x00\x1d\x9a\x7b\x04\xe5\x11\x5f\x7d\xe0\x15\x6d\x8f\xd2\x87\x21\x61\x16\xfc\x1f\xb8\x45\xdb\x49\xf5\xe1\x4d\x56\x0c\xe8\xa1\x69\x2a\xfa\x37\x76\x5f\x38\xfe\xe0\x62\xdb\xc4\x3e\x1e\x5e\x6c\xa5\x10\x78\xc2\x82\xab\x07\xa0\x37\x40\x71\x8f\x6b\xfb\x35\x47\xc4\x30\x5b\xf3\xf3\x2c\xb5\xb9\xa4\xde\x87\xbc\x5f\xe4\xf1\x41\x8c\x73\xeb\x6e\x5f\x87\xc6\x2f\x20\x01\x98\xb6\xf2\x61\x8c\x73\xd0\x15\xed\xa9\x3c\xea\x82\x3b\xbd\x3b\xad\xba\x7f\xe0\xcc\x69\x75\xda\x83\xeb\x84\x3d\xc3\x9e\x46\xb0\x68\x0d\x28\x4e\x6b\x4b\xf4\xd3\xa8\x68\xf1\xef\x06\x0a\xee\xdf\x0b\x57\xfe\x8a\xff\x3c\x9d\xa3\x6b\x36\x7d\xa1\xbb\xa6\xc3\xe2\x65\x41\xf4\xfb\x41\xd9\x7f\x23\xef\xd3\xd7\xa1\xd4\x84\x11\x1c\xed\xfa\x55\x0f\x83\xa3\x83\x78\xd2\xb3\x04\x05\x49\xb7\xcf\x58\xd8\xac\x35\x0c\x1a\x25\xc5\x86\x1e\x38\x6f\xb6\xee\x17\x28\xdd\x78\xe3\x96\x58\x2f\x6a\xf5\xd0\xe7\xc0\x4e\x7e\xcf\x09\x7f\x65\x9d\xca\x87\xe5\x5c\x83\xc8\xfa\x03\xf7\x4d\xeb\x5a\x9f\x93\x22\x96\x04\xde\x87\x49\x7d\x1d\x53\xf7\x20\x89\x5e\xb3\x69\xfc\xb9\x48\xa6\x25\xe0\x3e\xd0\x11\x9b\x53\x3c\x57\x61\x17\x7e\xa1\xf1\x81\xa6\x45\x86\x6a\xb7\xbb\x07\x5e\x03\x76\x37\x7a\xa8\x33\xb6\x1b\xdd\x73\xad\x52\xe3\xee\x02\x32\x80\x68\xdc\x73\x2f\x50\x68\xcb\xa0\x35\xb6\x53\xda\x73\xaf\x59\x69\xcb\xee\x05\x1b\x8d\x71\xaf\x69\x6a\xcb\xee\xce\xd3\xef\x41\x58\xab\xca\x78\x88\x70\x1d\xfb\x47\x3c\x37\x04\x54\x23\x16\xf3\xb4\x84\xea\x07\xa0\x1f\xa6\x71\xcc\x26\x6c\xa7\x80\xe7\x61\x16\x46\xc9\x93\xcf\x72\x7f\xc8\xfe\x04\x24\x63\xf8\x0b\x5a\x24\x4d\x32\x1e\x52\x3d\xf1\xcd\x87\x4c\xd0\x04\xe1\xe1\xac\x05\x09\xe8\x7e\x2d\x6f\x3d\x08\x82\xb6\x05\xf3\xf9\x78\x5c\xb4\xd6\xf2\x01\x4b\xb3\xf1\xf0\x79\xd7\xf1\x51\x87\x8c\x81\xb6\xd3\xe2\xf3\x92\xac\x49\x20\x7d\x50\x7c\x61\x18\x51\xdf\x45\x62\x04\xc9\x17\xf5\xaf\x25\xb1\x3e\xd4\xe6\xda\x2f\xf2\x99\x10\x81\xa2\x5f\xc8\x1c\xc2\x0f\x0a\xe4\x0f\xcd\x01\xae\x9d\x36\x16\x3e\xf4\x95\xb0\x0e\xe3\x99\x5c\xf6\x86\xe3\xbb\xf8\x8f\x18\xeb\x7b\x50\xdc\x88\x7e\x03\x31\x68\x42\xa9\xf7\x58\xa7\x69\xe8\xc1\xcd\x2f\x92\x1e\x20\x95\xb3\x8e\xf4\x0b\xfe\x61\x3d\xff\x1b\x02\x97\xa9\x21\xe8\xcb\x60\x05\xc3\x1b\xd6\x24\xfc\x09\xa6\x2d\x84\x79\x23\x7d\x2b\xc5\x69\x5f\x38\x12\x34\x3b\x58\xbc\x74\xd8\xb4\x81\xf9\x65\xaa\x14\xeb\x1c\x5e\xa4\xf5\xf5\x3d\xfa\x45\x26\x14\x2b\x8d\xdf\x44\xd0\x48\x64\x7f\x57\x71\x7a\x89\x14\x2f\x82\x79\xad\xf2\x7d\x91\xe7\xd7\xaa\xf4\x37\x71\x19\x42\xfc\x97\x1a\x08\xeb\x0b\xde\xb4\xd4\x1c\x5a\x39\x42\x4a\x6c\x00\x78\x33\x2a\x9a\x0b\x8d\xdf\xdc\xd0\xae\x0e\xa0\x3e\xb0\x3e\xe9\x85\x26\xd2\x6a\xc2\x17\x65\xe4\xad\x74\x7e\x59\x5c\x2a\x34\x7f\x00\x8c\x09\x9e\x00\xb5\x68\x92\x2e\x5f\x56\x9f\xaa\x3f\x43\x90\x42\x97\xbf\xe2\x4b\x6f\x21\x54\xb5\x51\xac\x23\x60\x15\xca\x0b\x55\x82\xef\xbf\x2f\x62\x47\xac\x00\x7b\xa9\x17\xa8\x3f\x0f\x28\x1c\x14\x7f\x01\x4f\x40\xf1\xfa\x17\x5e\x98\xbe\x1a\xbd\x75\x6d\xa4\x86\xa4\x17\xa6\x95\x2e\x2f\x42\x7f\xad\xef\x78\xe1\x84\x69\x0d\xd9\x5b\x79\x51\x28\xfe\x80\x47\x59\xba\x89\x77\x29\x06\xc4\xf9\x5e\xc6\x7e\x58\x0d\xf3\x36\xa2\xac\x14\x20\x6f\x5b\xd3\xd2\x27\x08\xfe\xf0\x7d\xe6\x45\x16\x5f\x67\x6f\x7c\x1b\xa9\x64\x75\x97\x15\x1f\x68\x5d\xd4\x47\x3a\x73\xe2\x4b\xfd\xa3\xb5\xc4\x2f\x93\xaa\x04\xd9\x3e\x5f\xa8\x1f\x9a\x3d\x72\x5e\xa8\x1f\xcc\xe8\x5e\xc8\x15\xbe\xaf\xbc\xb0\xb4\x5b\x26\x7e\xa1\x7d\xb0\xd0\xfc\x22\x77\x9d\x05\xf7\x97\xd5\xa7\x7a\xf5\x0b\xc0\x48\x9f\x89\x7e\xe1\xb7\xa6\xc8\xf8\x60\x71\xde\x97\xf5\x4e\xbb\x44\x88\x77\x70\x46\x5a\x35\x6b\x1b\x04\x09\xbc\x2f\x1c\x25\x2d\x5e\xbe\x83\x53\x16\x5c\xc7\x82\xa3\x3f\x20\x0f\x94\x80\xf0\x42\x4a\xb1\x18\xf3\x0e\xde\x85\xbd\x15\x63\x21\xa5\x27\xf1\xf0\x81\x07\xa1\x54\xed\x75\xc0\x72\x6e\x21\xe4\x65\x49\x54\xcb\x7f\xef\xb9\x76\x4f\xf3\x3e\x17\xe8\x34\x08\x74\x0a\x16\x8d\xde\x4f\xb0\x89\x8e\x3f\x7b\xe1\x2c\xf9\x03\xba\x93\x67\x59\x0c\xe7\x65\x39\xaa\xa0\xcb\xc4\x4b\xc1\xc7\xeb\x42\xdc\x8a\xf9\xf0\x7b\x71\xd2\x6e\xa7\xba\x4b\x77\x83\xf7\xe2\x75\xf5\xe7\x0b\x84\x8d\xd8\x1f\xe5\xbd\x56\xed\x4b\xcd\xfa\xa2\xea\x47\x7c\xf2\x85\x98\xd3\x75\xf1\x7f\x3f\x31\xa7\xd9\xe7\xeb\xbd\xc9\x2f\x8c\x53\x37\x70\x4e\x5c\xf0\x45\x8c\xb2\x19\xef\xbb\x84\x1c\xe3\x14\x2e\xfe\x3f\x4c\x0e\x32\x8e\x2b\x3d\xbd\x10\x71\x7e\x58\x1a\x6c\xdb\x96\x4f\x5e\xe6\x7d\x39\x3c\x01\x28\xe5\x3d\xa1\x87\x17\x64\x89\xca\x2f\xae\xf9\x5d\x82\xd9\xbb\x1c\x3e\x75\x87\x7a\x21\x9e\xfc\x70\x27\xde\xd1\xed\xde\xfc\xa2\x1e\x82\x2b\x34\xbf\xdf\x95\x3b\xd9\x06\xf5\x52\x3e\x31\x73\xa2\xb0\xd1\xcd\x11\x5f\x8e\x20\x18\xd0\x57\xd3\x8e\x3e\x2f\x6d\xc9\x76\x88\x7e\x59\xd1\xc0\x1e\xd4\xef\x5c\x80\xd7\xb2\xe6\x02\xac\x66\xc1\x50\x62\xcf\x92\x25\x44\x83\xd4\x4a\xef\x64\x90\xae\x71\x72\x72\x5a\xda\x5c\x4a\x2c\xc5\xed\x2c\x12\xe2\x39\x00\x39\xa4\x7a\x98\xcc\x1d\x67\xf5\xe6\x64\xc9\xf8\x9a\x8f\xbf\x61\x47\x13\xd7\x6b\x07\xd7\x4e\x84\x21\xf7\x9f\xdf\x3c\x84\x22\xec\xf3\x58\xb4\x61\xe8\x01\x12\x40\x8a\xa4\x4e\x5c\xb7\xcd\x8d\x26\x2c\xc7\x26\x15\x13\xe9\x52\x4c\xe5\x27\x6e\xcb\xa6\xd1\xf3\x13\x7e\x92\x61\x3c\x03\x67\xa4\xf5\x85\xca\xf5\x25\x3d\xa0\x09\x41\xf7\xed\xc9\x10\x62\xbb\xfd\xcc\x00\xf2\x55\xfd\x02\x60\x2e\x7a\x37\x03\xa7\xe8\xf7\x21\x1b\x07\x4f\x89\x71\x5c\x3f\x43\x42\xfc\xd2\x89\x9c\x91\x92\x90\x8e\xec\x8c\x24\xa9\xcd\x6f\xe0\x48\x56\xbf\xb0\xe0\xaa\x39\x30\x5c\xc6\x4e\xd4\x93\x55\x17\xb2\x5f\x38\x3f\xe1\x58\xd7\xbe\xc9\xdc\xc5\xd6\x63\xcf\x48\x39\x40\xc4\x6c\xb2\x20\x55\xf8\xe9\x82\x18\x6e\x5c\x89\x2c\x83\xaa\x59\x25\xee\x85\xe6\x90\x56\x7a\x78\x6d\x56\x5a\xeb\xf2\x17\xbc\x50\xe9\x1e\x31\x59\x61\xaa\x7a\x5a\x09\x3e\x58\x42\xe8\x99\xb8\x19\xee\x92\xbc\xa4\x79\x50\xee\x8e\x26\x09\x83\xf5\xcf\x6e\xa6\x09\xd7\x34\x81\x96\x61\xc9\x8e\x3a\x99\x8c\x4b\xae\x3f\x0f\x80\x72\xc6\xe1\x4c\x9d\x92\xa8\xcf\x44\x01\xaa\xfc\xd3\x25\x70\x4e\x07\x7f\xc2\x21\xf4\x07\xb2\x79\xed\x9e\x16\x41\x31\xd3\xbb\xc9\xb8\x65\x9b\xe1\x27\xc5\x4a\xe3\x43\x86\xfe\x4e\x72\xeb\xcc\x5c\xa4\x7f\x4f\xae\x41\x1d\x14\x4a\x47\xc6\xf2\xc2\x70\x07\xf1\xa2\xc9\x38\xe5\xee\xad\x40\xce\x98\x1f\xc0\xd2\xdf\xd3\x56\x89\x59\x38\x29\x81\x01\x82\xa3\x35\xce\x93\xde\x9b\xd2\xd8\x4c\x6a\x99\xec\x17\x3e\x07\x19\xae\xa6\x80\x94\xb5\xf6\x1a\x9c\x4b\x0a\xf0\xe1\xa5\x7a\xc3\xc4\x00\x69\x48\x7e\xf6\x12\xee\x73\x5d\xa2\xeb\x3c\x29\x1d\x9b\xdc\x9d\x6b\x91\x7e\xb0\x10\x50\x63\x7e\x62\x43\x76\x99\xf2\x79\x76\xfc\xd6\x9c\x61\x58\xf8\xed\xe0\x83\xfc\xcf\xd9\x3e\x39\x25\x01\x81\xde\x72\xba\xd4\x4c\x64\x2d\xb1\x23\xda\xbc\x22\x82\x48\x34\xde\xb5\xa6\xec\x0e\xb0\x0d\x86\x22\xb3\xcf\xda\x87\x70\x22\xab\x89\x05\xfa\x09\xc3\xc2\xf1\xd3\x01\xb4\xaa\x26\x57\xac\x98\x64\xc7\xc8\x89\x44\x72\x43\x77\x8a\xb9\xf4\x22\xa6\xa9\xcc\x6a\x62\xeb\xcb\x44\xfd\x80\x18\xfd\x3b\x23\xdd\xbb\x7a\x84\xe2\xc4\x1a\xf1\x79\xf3\xe6\xe6\x39\x43\x4d\x92\xed\x76\x38\x99\xcf\xb6\xfd\x8c\x49\x91\xb0\xfe\x95\x1b\xf7\xa4\x44\x61\xfb\xce\x64\x12\x14\xd3\xae\x67\xad\x49\x03\x52\x8b\x62\x64\x66\x6a\x39\xfb\xa1\x4f\x46\xc7\xb6\x9f\x2f\xc0\x59\x74\x8b\x99\xcb\xb4\xf0\xf3\x05\x58\x97\x74\x86\xf3\xe5\x15\xc5\xb8\x00\xff\x36\x8b\x31\xf3\x25\xdd\x37\x3e\x2f\xad\x88\x37\x1b\xf9\x6f\x6d\x19\x98\x2f\x93\x28\xb9\x47\x9a\x64\x4d\xf6\x91\xfe\xf6\x07\x7d\x91\xfe\xb6\x4b\xe7\x35\x5f\x16\xe4\xd2\xa2\x68\x08\x08\xfe\x7e\xf1\x2a\x77\x00\x7c\x96\x9a\x6d\x42\xa9\xe2\xac\xab\x73\x19\x06\xbc\x06\x44\xa4\x74\x69\x8e\xe6\x5c\x60\xf2\x17\xeb\xc8\x69\x88\x4f\x0c\x4a\x56\xbb\x4d\x84\xac\xd8\x05\x6e\x4e\xb2\x2a\xf3\x95\x4f\xa8\x49\x36\x33\xcf\xb9\x30\x7a\x0d\x31\x0e\x94\x3c\x10\xb1\x1b\xc7\x01\xef\xf8\xdd\xe3\x38\x0e\xde\x71\xba\x1f\xa4\x0f\x6c\x87\x3f\xa0\x66\xa8\xbb\x47\x6c\xc4\xd6\xa0\x8d\x03\x7a\x1d\xb1\xdb\x71\xac\x32\xea\xd9\x3d\x5e\x58\x44\xd6\x6f\xaa\x75\x36\x5f\x1a\x07\xec\x06\x63\x0b\xc1\xe3\x40\x36\x15\x11\x8a\x71\x40\xed\x13\xdd\x8e\x9a\x0b\xa3\xa9\x1d\xc9\x54\xfa\x50\x7f\x28\xb9\x70\xfc\xfc\x86\x5b\x9f\x27\x44\x41\x68\xf8\x77\xc5\xf8\x49\xbf\x1b\x1c\x4c\xfd\x3d\xe9\x4c\xd5\x12\x03\x24\x8a\xe2\xdf\x27\x76\xc1\x1f\x50\x93\xd5\xfd\x02\x62\x47\xf6\x99\x1c\x07\xa2\x84\xc7\xe1\xdf\x13\xe6\x41\x01\x1d\x01\x2f\x52\xbe\x8c\x03\x89\x53\x86\x37\x05\xe1\x2e\x72\x3f\x18\x47\x44\xc9\xda\xec\xf6\x86\xf7\xb5\x47\x91\x5a\x85\xe1\x17\x28\xd1\x14\x3f\x78\x81\x27\x82\x71\xa4\x2e\xa6\x6b\x4d\x88\x31\x4e\x86\x01\x12\xd0\x29\x13\xc7\x38\xa0\xa2\x92\x36\x6f\x1c\x89\x40\x75\x3b\xb5\x64\x55\x50\x4f\xac\x19\xaa\x35\x40\x9c\x51\x6c\xd5\x38\x12\x5c\xfa\x8c\x98\x89\x58\xe1\x0e\xc9\xd8\x9b\x3a\xc8\xb0\x88\x16\x2d\x01\xfe\x77\xd5\xa8\xce\xec\x74\xca\xd4\x34\x8e\x4c\x1a\x33\xfc\x00\x7e\xf1\x5e\x23\xc3\x55\xbc\x46\x08\x27\x23\x08\xac\xf0\xa0\xe9\x3f\x33\x40\xf2\x11\x23\x5a\xa6\x20\xe9\x35\x40\x58\x91\x0b\xec\x38\x10\xcc\xa2\x6c\xfa\xe3\x28\x38\x7c\x41\xef\x23\x34\x65\x04\xbd\x0f\xc9\xe4\x67\xc2\x70\xc5\x1b\xc1\xdf\x83\x5e\x04\xc1\xb0\x8c\x7f\xfe\xb4\xec\x05\x14\x22\xa6\xf1\x00\x81\x29\xba\x86\x8f\xa3\x90\x7b\x34\x61\x66\x21\xd4\xc7\x5f\xf0\x9e\x71\x20\x68\x25\xf9\xa0\xc2\xaf\xa6\x99\x18\x55\x72\x16\x9f\x5c\x06\xad\x78\x3d\x9f\x5c\x94\x7e\x70\x80\xc6\x37\xf9\x28\x8d\xa3\xc2\xeb\x3f\xb9\x03\x2c\xd8\x07\x85\x95\x1f\x82\x7f\xf3\xf6\x6b\x08\xd4\x07\x46\x4e\xbf\xf0\xe2\xc2\x2e\x08\xc2\xb5\x4f\xbe\x5e\xe3\x60\x0c\xf3\xcf\x14\xa1\x4b\x1b\x51\x33\x68\xa4\x8f\x43\x10\x43\xcc\x72\x36\x92\x40\x97\x36\xa2\xdb\x91\x72\xdc\x67\xb7\x75\xfc\x76\x3b\x95\x33\xc3\x2f\x9c\xd8\x74\xbf\x80\xcc\xce\x26\x2e\xf0\xf4\x1b\x51\x4b\x44\xf2\xbd\x6c\x62\x03\xc7\x3e\xd5\x78\x1b\x07\x14\x6f\x4a\x11\x32\x8e\xce\x15\x69\xc2\x3d\xfd\xf3\xa7\x28\x37\xed\x38\x68\xdf\x2b\xee\x8f\x6c\xcc\x9b\x42\xcd\x9c\x27\xcc\x64\x7e\x3f\x33\x86\xe3\xd0\x30\x79\x83\xa6\x6e\x44\xa1\x79\x5f\x68\x29\xa0\x76\xb2\x08\x6f\x5b\x27\x5f\xf3\x49\xe9\xd8\xa7\xa4\x6d\x61\x50\x4c\xf3\x0b\x23\xe0\x6c\xaa\xcb\x65\x30\xf4\x2c\x07\x2d\x3f\xa6\x17\xac\x2b\xf1\xc3\xd9\x98\xfc\x2f\x78\x5a\x83\x3a\x6e\xbf\x71\x2e\xec\xd0\x3c\x4f\xca\x00\x4d\xc0\x3e\xc9\x5f\x7f\xde\xc0\x11\x37\xef\x60\xe1\x88\xfa\xf3\x45\x85\x5b\x9e\x3f\x00\x8a\x1b\x3f\x4e\xaa\x98\x04\xbc\x93\x90\xd0\xba\x18\xb8\xdc\xcc\xf2\xa1\x6a\x1b\x3e\x33\xcb\x04\x39\x34\x85\x8b\x26\x0e\xef\xf0\xb5\x08\xa3\xdf\x00\x71\x4f\x5a\xf7\x45\x29\xd6\xec\xe2\x13\xc5\xd3\x61\x96\xca\x4a\x5d\x3f\x3c\xf9\xa2\x34\x55\x34\x4d\x48\xd2\xc1\x2f\x30\x21\xb3\x8c\xfb\xe3\xb8\xd7\xfe\x08\x10\xcb\xa0\xd8\xdd\xc5\x3a\x29\x1a\x15\xda\xb7\xc3\x98\x7d\xaf\xd3\xef\x17\x50\xc8\xaa\x0a\x14\x4b\xd4\xed\x7e\xc0\xdd\x30\xf0\x1e\xea\x44\x3c\x4f\xe8\xd7\x46\x52\x97\x0f\x51\xb5\x0b\x36\x0f\x8d\xd9\x9e\xd5\x83\x08\x1d\x03\x8f\xf9\x00\x9b\x25\x2a\xd6\x7e\xb0\x34\x00\xe1\x58\x99\xf5\xc7\x01\xa7\x17\x85\xb6\x8f\x63\x19\x08\x0d\x88\x17\x09\xa5\x8a\xe6\xc8\x70\xea\x66\xa2\x85\xe4\x7f\xf9\xe7\x05\x9a\xa5\x8d\x85\xd4\xd0\xfd\x48\x18\x93\x96\x0c\xb3\x2e\xc6\x77\xfc\x08\x86\x93\x29\x71\xb4\xac\xb9\x70\x42\x83\x4c\x6e\xa0\x7b\x80\x80\x2d\x91\x23\x2c\x85\xdb\xf0\x03\xac\x3b\xfb\x37\x2f\x80\x3a\x7f\x01\xf1\x18\xe3\x93\x14\xff\x82\x1b\x85\x65\x70\xd4\x69\x0d\x07\xe5\xb8\xee\x07\xbc\x55\x6b\x27\x02\xab\x79\x29\x18\x63\x84\xc0\x29\x05\xfd\xa6\xae\x40\x90\x0c\x01\x39\x73\x92\x3f\xa0\x4b\xff\xbe\xdf\x8d\x40\xa5\x9a\xa5\xd7\x10\x88\xc6\xc3\x83\x82\x3a\x6e\x45\xe6\x08\x4c\xcb\xa7\xf0\x8a\x11\x98\x85\x4f\xd5\xac\x47\x60\x7d\x07\xd9\xa0\x47\x88\x6b\xde\x1a\x35\x2e\x48\xe9\x93\x48\xc6\xa9\x3e\x23\x0d\x38\x06\x3e\xca\x39\x84\xc3\xbf\x49\x71\x85\x43\x81\x15\xbb\xe4\xa4\x31\x02\xcc\x9a\x8a\x22\x1c\x81\xc5\x49\x2d\xd1\x85\x44\xe0\xf9\x37\x81\x57\xfd\x80\xec\x7d\xb8\x4b\x0a\x89\x3a\x6d\x61\xd9\x35\x75\x98\x02\x94\x5c\x25\x1e\x1e\x95\x67\x7c\xb8\xd3\x87\x6f\x68\x97\x19\xa6\x5c\x8d\x46\xb9\xf3\x0d\xed\x00\x6a\x96\x46\x4f\x14\xb6\xcd\x91\xdd\xc3\x05\xd9\x57\xb3\x42\xaa\x3c\x95\xa3\x1f\x01\x62\x5d\xfa\x79\x1f\x81\x49\x06\xdd\xd2\x41\x19\x13\x91\x53\x46\x85\x63\x47\x28\x6b\x8a\xea\x11\x82\x9f\xec\x04\x23\x50\xd0\xcb\x6e\x07\xa0\x4c\x33\x02\x25\x3f\xdd\xc2\x42\x61\x4c\x8f\x37\x83\x49\x69\xc6\xcf\x83\x8b\x50\xd0\x27\x75\xed\x9f\x96\x09\x71\xad\x78\xd6\x30\x66\x8e\xec\xf6\x45\x12\xb4\x39\x15\x6c\x22\xfb\x77\xe3\x98\x5a\x27\x2a\x9c\x0e\x93\x80\xca\x34\xb4\xfe\x00\x80\xad\xfe\xcd\x03\x6a\x44\xa7\xf4\x25\x4e\x15\xe0\x0a\x35\xc4\xc3\x03\xa4\xb1\xde\x3d\x22\xa4\xb1\x43\xc2\x4f\x80\xf4\xa5\x7a\xe6\x23\x40\xfa\xf2\xc5\x28\xb4\x05\x37\x2d\xba\x2d\xb8\xf9\x01\xd5\x31\xc6\xd1\x4e\x2d\xa9\x71\x94\x02\x55\xd1\x17\x9d\xfc\x55\x6c\x27\x50\x82\xea\x46\xc0\x8e\x83\xd0\x7c\xfa\x3a\xea\xea\x18\xc3\x28\x41\x15\xf7\xb0\x66\xe5\x17\xc0\x96\xbc\x2e\x44\x52\xf8\xe6\x11\x90\x0c\xb9\x44\x63\x14\xad\x9f\x9e\x24\x3d\xac\x7c\x81\x0b\x88\x22\xae\x3e\xac\x63\x91\x14\xad\x9b\x49\x5f\x8c\xb3\x83\x26\x1b\x63\x18\x3c\xaf\x55\xe9\x6d\x84\xb1\xe6\xa0\x07\xac\x4f\xd1\xbc\x5b\x27\x21\xa7\x2e\xcf\x0c\xff\x51\xf5\x78\x2e\x38\x69\xd6\xac\x62\x1a\x83\x10\x02\x96\xcc\x61\xf2\x7b\x12\x2e\x5a\xd5\x89\xb4\xb8\x5e\x25\xa5\x27\xd3\xf3\x6b\x31\x42\x75\xf0\x49\x4f\xcd\x72\x65\x80\xf4\x54\xa2\xe4\xfb\xc0\x82\x16\xfd\xf8\x9b\x02\xe3\x23\x5c\xe0\xe5\x55\x20\xa0\x64\x55\xb5\x2d\x94\xac\xba\xa1\xcc\x22\xaa\xc9\x2f\x60\x81\xa6\xc2\x30\x7a\x8e\xe1\x8d\xbd\xc8\x2d\x8c\x3b\x94\xc5\x86\xc1\xce\x72\x19\xcd\xc8\x03\x25\xe6\x18\x86\x22\x3d\xa0\x7d\xf1\x0c\x77\x85\x13\xba\x66\x05\x43\x68\x30\x10\x10\x13\x9c\x74\x11\x0d\xa8\x77\x31\xaa\xdb\xb1\x0d\xd5\x23\xe2\x0e\x63\x52\x72\x23\x82\xb0\x7b\x3c\xd4\x2e\x33\x81\x64\xbe\x3f\xb3\x44\x24\x72\xf6\x4d\x3d\x2c\x1d\xa6\xde\x87\x9b\xd7\x30\xc5\x7e\xc0\xfe\x2c\x5a\x3c\x1d\xdc\x4e\x20\x61\x5a\xe7\xe6\x6d\x7f\x4e\xf0\x4b\xff\xc6\x02\x8c\xcb\x10\xfb\xb2\x79\x0a\x5c\x9f\x8b\xd1\x84\x42\x9f\x05\x07\x78\x85\x0d\x53\x36\x04\xfc\xaa\x3c\xcf\x08\x2f\x74\x56\x9e\x30\x1c\x9b\x9b\x01\x0c\x1f\x30\x0b\xf5\x01\x2e\x5f\xbd\x7b\x87\xe8\xb7\xdc\xbc\x87\xac\xc9\x1a\xbd\x27\x93\xde\x72\xde\x94\x49\xd1\x44\xea\x82\xc0\x8c\x38\xcd\x9d\x4e\xf2\x08\xc9\x70\x01\x46\xd5\xd1\x3c\xc8\xc3\x2f\x04\x07\xb8\x81\x0d\xdd\x5e\x22\x33\xe6\x58\x99\x17\x99\xf3\xaf\xff\x3c\x80\xb7\x6a\xf6\x17\x9c\x95\xee\xf4\x11\x7e\xc8\xc3\x6a\x97\x78\x60\x6f\x84\x3c\xf1\xb8\x39\x89\xa6\x07\x88\xe4\x2f\xfe\x80\xd5\x54\xf6\x66\xc4\x00\x97\x6e\x31\xcb\x08\x05\xe2\x10\x70\x23\xfc\x8c\x47\x73\x3b\x0e\xa9\xae\x11\x31\x2c\xe3\xb4\x3f\x80\x96\x44\xb2\x70\x84\xd3\xd8\xb0\xb2\x2a\xb2\x04\x44\x94\x5e\x21\x7e\xf2\x57\x3b\xc4\x09\x63\x24\x60\xb5\xa6\x94\xf8\x41\xd4\x03\x04\x29\x68\x27\x62\x62\x9e\x09\x81\x31\xad\x11\x92\x1e\x20\x5b\x86\x81\x90\x08\x35\x77\x70\xa3\x5d\x33\x62\x48\x9a\x5c\xfe\x46\x44\x48\x9a\xcf\x5c\xcc\x80\x9a\xa7\xcc\x6c\x7d\xf2\xf0\x1a\x31\xaf\x39\x6b\x4e\xf0\x31\x0b\x3f\x2f\x00\x8e\x3a\xe5\x91\xd9\xfa\xac\xfb\x88\x79\xed\xbd\x26\x0d\x2f\x34\x45\xee\x8f\x48\x0d\x5c\xf7\x08\x27\xe7\xa0\x55\xa1\xa0\xaa\xf2\xd8\x8e\xc8\x00\x59\xab\x5b\x62\xc6\xc1\x2c\x1e\x72\x72\x48\x0d\x01\xbf\x32\x65\xd5\x19\xb1\x04\x7c\xa0\x21\x59\x9b\xcb\xca\xd9\x08\xeb\xe0\xd0\xc5\x35\x32\x42\xad\x79\x6b\x58\x12\x55\xbc\x39\x22\x1e\x76\x48\xae\x8a\xac\xdd\x75\xb8\x03\x60\x93\x2e\xd7\xb1\xf2\x24\xeb\x5e\x1b\x2b\xcf\x90\xb1\xa9\xc2\x74\x36\xfe\x26\x0b\xf7\x88\xf0\x41\x1b\xba\x05\x45\x16\xaa\xef\x46\x35\x68\xdd\x94\x00\x67\x44\x2a\xdd\xc4\x95\x23\xa2\xdf\x7a\x37\xaa\x31\x73\x8c\x5c\xef\x46\x6c\x4c\x91\xac\x5d\x60\x1e\xbf\xe6\x13\x88\x88\xd7\x61\xcd\x65\xa4\x43\x99\xbc\x9a\x46\xa4\x98\x25\xff\x9f\x11\xdb\x8b\xa8\x1f\xbf\x30\x39\x0b\x75\x81\x3c\x7d\xcd\xd3\x44\xbc\x6a\x32\xae\xc0\x2d\xfd\x87\xae\xf4\x8e\x54\x9e\xea\x90\x99\xf6\xe4\x26\x37\x62\x3f\x39\x05\xf7\xf0\xf0\x0d\xad\x8b\x25\x26\xac\x70\x8d\x03\x1a\x4f\xdd\xf5\x23\x53\xb1\x28\x6a\x6f\x44\xb8\x90\x0d\xdd\x56\xe2\xe0\x91\xd0\x22\x10\xbf\x3a\x74\x23\x8a\x2c\x1b\x6f\xd3\x40\x44\x26\x16\x5f\xed\x23\x03\xe0\xba\x8f\xed\x80\x31\xc2\xab\x40\x35\xd4\x21\x4e\x15\x61\x5a\x1e\x3f\x1d\x10\x8e\x3e\x84\xf4\x8b\x6f\xa6\xc8\x4c\xb5\x22\x19\x2a\x32\x8b\x71\x33\x29\x39\x99\x82\xd0\x87\x0c\x65\xc2\x7e\x4e\x00\xbc\xc1\xc6\xf0\x31\xbd\x48\x3b\xa4\xe3\x88\x90\xa2\xd2\xcf\xb9\x64\xb2\xbc\x66\x72\x03\xeb\xef\x90\xd8\x1d\x69\xfd\x6d\x26\x60\xa8\x3d\x3a\x74\x57\x88\xf4\x0f\x6b\x3f\x5d\x92\x16\xf8\x20\xde\x94\x79\x8d\xf9\xac\x06\x1f\x0d\xbc\x9b\x84\xdc\xa8\xbe\x24\x23\xd3\x38\x1a\x74\xe5\xd2\x37\x22\x7d\xc4\x2c\x8b\x44\xe8\xad\x86\x15\xac\xf1\x5e\xf3\xf0\x03\xdc\xe7\xe5\x9b\x34\x22\x1c\xdd\x87\x44\xeb\xf8\x80\xf4\x4a\x16\x8f\x0f\xb3\xd4\x6a\xa9\x0f\x62\xf6\xab\x7f\x43\x2b\x21\x4e\x1f\x29\xfe\x48\xea\x8c\xcf\x82\x9d\x07\x00\x89\xf2\x59\x78\x48\x15\x8d\x55\x2f\x67\xa0\x0f\x5e\x8a\xee\x12\xb4\x23\x2d\xb8\x2a\x93\x33\x22\x6a\x56\x64\xd3\x84\x97\x64\xc6\x34\xe0\xe5\xa4\xfc\x01\x27\xe5\x59\xbe\xdc\x50\x0f\x01\xf3\xfe\xcf\x9c\xc8\xf7\x3d\x6b\xa8\xb9\x62\x73\x8f\x64\x69\x86\x1b\xfd\xe0\x65\xa8\x1e\x71\x46\x14\x07\x53\x0f\x48\x91\xfc\x73\xfc\x26\x8f\x9f\xcf\x2f\x22\xb5\xaa\x89\xfd\x27\x32\x75\xab\x06\xe2\x3c\x3f\xbe\x2e\xc1\x32\x4e\x94\x9a\xf6\x94\x18\xd8\xe5\x35\x4c\x38\xfc\xc9\x84\x94\x8e\x35\xc3\xa2\x07\x88\x89\x6a\xfe\xfd\xdd\x70\x93\xea\x38\x8e\xf4\xc9\x4f\x51\x7e\xd7\x23\x1d\x0b\x8c\x55\x0f\xa8\x10\x49\xfe\x62\x62\x8e\xfa\x02\x5a\x2f\x79\x69\x8d\xc4\x94\x81\x72\xf7\x1c\x89\x75\xb7\x6c\x62\x48\x4c\x09\x28\xa7\x85\x91\x20\x11\x29\xbe\x60\xa4\x00\xf1\xe6\xc8\x7f\xc3\x90\x52\x20\xcc\xdc\xfb\xda\xd7\xa6\x07\x0f\x60\x90\xf5\x1b\x3c\xbc\x79\xb4\x85\xad\x7a\x01\xfa\x30\x55\x54\x1a\x29\x82\x87\x4b\xfa\x4e\x31\x62\x44\x01\x15\x05\xf0\x0f\xdd\x0a\x13\xb3\x05\xda\x44\x9d\x22\x0f\x94\x7f\x43\xcd\x97\xdc\x21\x05\x97\xe4\x1e\xa1\x92\x35\x4c\x23\xc9\xb4\x88\x6a\x62\x09\xfd\xf6\x33\x27\x28\x99\x82\x87\xb8\x61\xd3\x75\x0f\x2f\xe6\x28\x90\xc3\xe5\xcc\x4a\xfb\x94\x10\xe5\xea\xfe\xd2\x22\x5d\x5a\x14\x7d\xd0\x9a\x31\x25\x15\xf4\xe8\x2f\xc8\x94\x45\xfd\x12\x5d\xd0\x6c\x31\x4d\x89\x3b\xe5\x17\xae\xef\xb7\xee\x9e\xe9\x13\xf8\xda\x61\xdc\x5c\xf2\x9c\xc8\x7c\xca\xe4\xb9\xea\x70\x25\x25\x30\xb2\x42\xa0\x4b\xd9\xc8\xf9\x09\x74\x29\xfa\x3c\xd0\xdf\x4b\x54\x3f\xb1\x20\xbe\x2d\x96\xa9\x2c\xec\xd5\xb2\x58\x8e\x55\x19\xd6\x46\x2a\x08\x7d\x28\x7e\x81\xd2\x89\x0f\xe1\x27\xe2\xb5\x43\x17\x8e\x54\x40\xa9\x9a\x3b\x58\x14\xdd\x3d\x50\x0c\x15\xb3\x4a\x85\xf5\x1d\xdd\xc3\x8d\x1e\x3d\x6b\x52\x26\xa3\xf4\x27\xe3\xb5\xc3\x07\xa8\x2e\xd0\xab\x87\x25\x63\xe9\x66\x95\x2a\x35\xa1\xc6\xc1\x4a\x2e\x6c\xd0\x20\x96\xc0\xfa\xef\x54\x49\x08\xc4\x66\x52\x05\x4a\x05\x4f\x82\x77\x48\x2f\xb4\x81\xea\x7b\xcc\x46\xd8\x1a\xe9\x1a\x95\x1f\x62\xa9\xa9\x2d\x24\x13\x8a\x20\xb6\xc0\xe6\xd1\xc4\x7a\xad\x2a\x02\x32\x12\x53\x38\xfb\x6a\x9b\x1a\x61\xe5\x2e\xc9\x2e\x25\x0f\xa7\xc6\xa8\x62\xad\xab\x51\xba\x90\x8c\x94\x3a\xf5\x19\x3e\xff\x2c\x25\x21\x6f\xdc\x91\x96\xfe\xcc\x34\x71\x65\x51\x96\x22\x28\x75\x5e\xf0\x35\x48\x5f\xb3\x10\xb0\x3a\xe5\x26\xa3\xd1\x92\xf5\x24\x58\xa7\x81\xd3\x10\xfc\x02\xf1\x4c\xb7\x99\x84\x34\xca\x87\xc7\x40\xda\xbd\x6e\x2c\x59\x1a\x35\x49\x87\x89\xb2\x9d\x89\x08\x0d\x92\xd1\x44\x82\xc1\x01\xf2\xd0\x1d\xe9\x5c\x3b\xa6\x69\x9f\x4b\x19\xa9\x59\x9d\x88\x56\xf6\x86\x2d\x1d\x5b\xf7\x0b\x2c\xca\xa2\xfd\x58\xe2\xdf\xf0\x18\x83\xb3\xf0\x1b\x94\xdd\x25\x63\x26\x94\xa2\x3f\x8c\xaa\x17\xb1\x5d\xeb\xb8\xc0\x2e\x24\x9a\xa7\x8b\xb8\x6d\x0e\xb4\xb4\x5c\x9e\xc4\x4d\x65\xb5\x64\xf3\x74\x83\x84\x9b\x45\xdd\x50\x2b\x18\xcd\x58\x47\xbe\xd7\xbf\x09\x2e\x1a\xe9\x93\xd9\x9a\x2f\x30\xe9\xe6\xe9\x93\x70\x99\xee\x35\x43\xed\xdd\xbd\xd6\x2c\x38\xc2\xd5\x7f\xf8\x86\x9e\x96\xd8\x27\x79\x26\x3d\x80\x82\xc9\x2d\x42\xfa\x83\xb7\xff\x81\x48\xd5\x4d\x0b\x1f\xce\x4a\x63\x52\x6b\xa5\xf0\x81\x91\x68\x8c\xec\x26\xa7\xcf\x83\x2f\x34\x6d\xaa\xa5\x7c\xd6\x1e\x1a\x75\xcc\x13\x60\x8b\xb4\x66\x23\xbd\x24\x9e\x46\xb9\x17\x48\xed\xb3\xf6\x82\x89\x48\x1e\x4e\x2f\x99\x88\x39\xe1\xbb\x00\xaf\x39\xbc\x5c\x85\xb6\x92\x7e\x73\xf2\x22\x1f\x89\x7e\x72\xdd\x5c\x82\xd1\x01\xb6\x76\xa4\x4f\x0a\x73\xd6\xc4\x91\x26\x55\x44\xe6\x33\x73\x6d\x8f\x06\x9d\x2b\x4b\xba\x3f\x59\xc4\x70\x43\x3f\xc3\x33\x2e\xda\x62\x92\x8f\x45\x45\x9a\x1e\x00\xc5\xb4\xa1\xf9\xa0\x3d\x4b\x7d\xe6\xa3\xe1\x85\xa2\xdf\x9d\x5d\xfa\x0b\x4a\x01\xd5\x83\x52\x72\x11\xb3\xca\x01\x38\xa1\x85\xe4\xc0\x31\x35\xa9\x40\xf0\x47\xfd\x2e\x1c\x42\x63\x42\x12\x53\x22\xf5\x91\xe1\xab\x66\xdb\x61\xa6\xb0\x25\xd2\x98\xe1\x7a\xe6\x92\xfc\x23\x7f\xb2\x52\xb3\x2f\x59\x8e\xe0\xf1\xb2\x1c\x66\x16\x2b\x1d\x3f\x2f\xac\x1e\x04\xa7\x04\x69\x4b\x32\x72\x66\x89\x2d\x39\x9e\x8f\x9c\x48\x83\x7e\x1e\xd0\x92\x24\xfe\x99\x29\x9a\x88\x60\xe4\x04\x8e\xec\xad\x48\x2c\xd2\x2b\xc0\x52\x30\x11\x1d\xcc\x69\x6d\xb7\xe0\xc6\x5c\xc8\xd6\xab\xe7\x44\xc8\x8b\x5b\xe6\xcc\x75\x6b\x4e\x79\x9d\x3e\xcd\x81\xc2\x8d\x28\x4e\xce\x90\x09\xa5\xcd\xca\x99\x48\xe9\x76\x46\xa8\x78\x0e\x74\x07\xb3\x35\x39\x43\x54\x51\xbe\xc2\x91\x0b\xc4\xd2\xec\xdf\xcc\x20\xad\xad\x29\x14\xbb\xc5\x7e\x33\x73\x1f\xd9\x9d\x29\x17\xc0\x41\x37\xcb\x5c\xb0\x79\xd9\xbf\x6f\x7e\xe0\x29\x40\x04\xf0\x29\x28\xdc\x4c\x09\x22\x99\x82\x89\xe7\xc0\xca\x13\x56\x3c\xe7\xca\x49\x6b\x6b\xea\xda\x5c\xc1\xa1\xf2\x14\x04\x3f\xe0\x66\x09\xb0\x95\x5c\xcc\x70\x60\xcc\xa3\x9c\xf8\x47\x66\xa9\x09\x45\x9b\x8e\xcc\x20\x48\xb9\xe4\x8f\xdc\x30\x4d\xef\x66\xa3\xb2\x5b\xf2\x53\x6e\x24\x64\x62\x84\xb9\x01\xc5\x0c\xcb\x86\xc3\xeb\x49\x50\x0c\xd1\x15\x39\x37\x90\xd2\x9f\xef\x01\xb9\xe2\x19\xe0\x56\x25\x71\x20\x77\xe0\x93\x04\x8a\xcc\xd4\xc2\x8a\xa0\x1d\x99\xf9\xd3\x7a\xf8\x9b\x9a\x45\xa3\x7c\xd3\x4b\xe6\x48\xa5\x51\xdf\xab\xad\x2e\xcb\x72\x29\x46\x5e\xda\x02\x9a\x1e\x74\x66\xf6\x69\xfa\x8d\x9d\x93\xac\x50\x30\x43\xc5\x10\x8f\xb2\x27\xa8\x31\x3b\x75\x1d\xcd\x0f\x00\x33\x11\xea\xd2\x29\x18\xeb\x10\x15\x64\x3f\x56\xaa\x82\x51\x3a\xb6\xbe\xba\x1d\xc9\x32\x82\xa7\x44\x37\xa1\xe6\x39\x4c\xb8\x54\xea\x37\xcb\xe6\x7b\xd5\x03\xd7\xe3\xee\xdf\xd0\x41\x6b\x97\x0a\x65\x30\x69\x00\xca\x00\x21\xa9\x6e\x5f\x0c\x50\x33\x38\x81\x48\xd5\xbf\xa9\x23\xd2\xa1\x2c\xf4\xe8\x12\x5e\x94\x93\x81\x5f\x82\x09\x6c\x96\xa6\xd0\xe5\x2c\x28\x71\xee\xdf\x95\x1b\xe7\x0e\x08\x44\x77\x00\xfe\x28\x1e\x51\x96\x78\x55\x3c\xa5\x8b\x3a\x04\x4f\x89\x15\xc7\xbd\xf5\x27\x70\x55\x5c\xbd\xa0\x0a\x7f\xb2\x0a\xba\x40\xff\x16\xfd\xc1\xb5\x08\xb0\x26\x71\xd1\x8f\xc5\x5b\x4d\x11\xad\xb9\x07\x26\xd6\x91\xee\xac\x5c\x20\x35\xcd\xbf\x71\x7e\xc4\x1c\xcb\x45\x86\x6b\x74\xbb\x70\x80\x44\x27\x0a\x4b\xca\xda\xa1\xa4\x50\xa4\xf3\xd6\xdc\x14\x2d\x44\xcd\x0a\x64\x3a\xfb\x93\x14\x7a\x88\x29\xea\x65\x14\x7a\x88\xd9\x6f\xa2\xdc\xc0\xbf\xe6\x1e\x18\xa5\x2c\x81\xa8\xdc\x9c\xb5\x96\x7d\x13\x92\x02\xd4\x4a\x36\x2c\xd1\xa3\x3c\x24\x77\xe2\x76\xe5\x01\xc6\xfd\xbc\x00\x3a\xe3\x11\x1e\x60\xe0\xcf\xfb\x1d\x0c\x5a\x53\x5c\x42\x9d\xe4\xa3\xf2\x50\x96\xf1\x29\x7b\x30\xc7\xee\x17\xc8\xdb\x24\x83\x95\x87\xa7\xc8\x70\x78\x48\xd5\x25\x39\x16\x56\x1b\xb3\xab\x46\x79\x41\xad\xfc\xc5\x0b\xda\xa0\xab\x4a\x79\xa9\x02\x12\x87\x2e\x94\xfb\x7c\xf0\x96\xdc\x27\x0a\x5c\x10\x90\x91\x4d\x1c\x2a\x6a\xaf\x2b\xaf\xf3\xa8\x61\x21\x44\xd4\x03\x12\x2c\xc9\xf0\x95\xa2\x88\xae\x3f\x35\x46\xbe\xe0\x07\x6b\x56\xea\x22\xe2\xec\xc8\x66\x55\xa1\x65\xb1\xa3\x7c\x8d\x14\x90\xdd\x25\x73\x31\xd8\x71\xa2\x7e\xc2\x4a\xb2\x13\x43\xa5\x0e\xc4\x0a\xf8\x9a\x48\xe3\x44\x62\x2a\xca\x30\x58\x63\x57\x59\xee\xd3\x2e\xc3\x35\xd1\x00\x5f\xfc\xc6\x87\xe9\x0a\xb9\x1d\x15\x95\x16\x7c\x93\xac\x99\x97\x1b\x21\x76\xcd\xd8\x0d\xf7\x08\xc3\x9a\x72\xbe\x8d\x9a\x71\xf6\xa4\xe3\xaf\x19\x18\xa2\x4b\x77\x85\x15\xcc\x52\x64\xcd\xe0\x55\xb2\x42\xd4\x02\x74\x08\x7f\x13\xe9\x3a\x2a\x0b\x62\x59\xdb\x5f\xcb\xda\x05\xed\x5b\x21\x6f\x12\x95\xad\x9f\x18\x92\x94\x90\x66\x54\xaa\x43\x86\x3f\xc0\x29\xd3\xdd\xa9\x52\x2a\xd1\x6d\xab\x16\xce\x57\x00\x5a\x06\x30\x2f\x10\x89\x17\x6c\xa7\xae\xc8\x10\xab\x34\x60\xa3\x56\x2a\xa3\x35\x00\x6c\x5e\xca\xe5\x3b\x6a\xfd\x0e\xa5\xbd\xdf\x2a\x1c\x93\x92\x57\x54\x6f\xb4\x7b\x3c\xa2\xaa\x78\x65\x85\x9f\xb8\x8d\x4b\xf5\x13\x37\x9a\x1d\x0c\x6a\x83\x7d\x3f\xbb\x7d\xc1\x4c\x33\x68\x70\x7d\xd7\xad\xbb\xa2\x08\xbb\x9d\xe9\x2a\xc5\x13\xe9\x0a\x6a\x43\x2d\x3e\x9f\x26\xf8\x29\xd9\x09\xbb\x32\xfd\xa3\x3d\x5b\x6a\xa3\xe8\x97\x3c\xe2\x03\x67\x7b\x8f\xb8\xd6\xe4\x2f\x48\x90\x8d\x97\x9d\x87\x45\x24\xbc\xf6\x95\xae\x4d\x1b\xdd\xa9\x74\xf4\xa1\xa7\xf3\xb8\xf5\x77\x15\xbe\x4f\x56\x31\x55\x14\xcb\x1a\x46\x15\x88\x10\x56\x2e\x54\xa6\x79\xb0\xc3\x4b\x85\x55\x4e\xa1\x91\xa3\xc2\xf3\xc9\x32\x71\xed\x28\xe8\x66\xc0\x41\xa4\xc8\x92\x82\x2a\x52\xc8\x2a\x17\xd2\xa8\x83\x02\xad\xee\x1a\x15\xe5\xaf\xb2\x17\x39\x0a\x3a\xd4\x0a\x58\x2d\x61\xf8\x74\x8e\x86\x17\x84\x0b\xa3\xe3\xb7\x96\x44\x13\x9d\xb7\x6a\x50\x5b\x68\xf4\x47\xf4\xa7\x6a\x7b\x8c\x0a\xc7\x29\x55\x92\x1a\x75\x40\xff\x6d\xaa\xc6\x62\x0a\xb6\x17\xd5\x93\xd8\x27\xa8\x9f\x88\x07\x32\xf6\x9d\x6b\x17\x34\xe2\xc9\xda\x1a\x22\xdf\x95\x5a\x1f\x5b\x67\xea\xc9\x45\x69\x4c\xba\xa1\x8b\x2b\xd5\x25\x95\x48\x50\xaa\xe7\x89\x0f\xfc\x9b\xf7\x44\xef\xec\x09\x53\x87\x31\x1c\x4a\x20\xab\x3b\xea\x72\xa4\xf2\x29\xff\x84\x92\xa6\xea\xc0\xa3\x5e\x38\xa4\xde\xb9\xab\x7d\xab\xf4\x99\xbb\x78\x04\x7c\x8a\x2f\x96\x1d\x70\x87\x08\x29\xf2\x14\x21\x92\x74\x47\x9e\x55\xc4\x7b\x56\xf3\x17\x6a\x99\x9a\xdb\x33\x7c\x9e\x05\x46\x58\x03\x93\x97\x84\x44\x91\x49\x72\x57\xbd\xe9\xa4\x21\x28\x7f\xf2\x88\xcb\x32\x8e\xca\x94\x58\xb6\xb4\xd4\x4f\x1e\x69\x0a\x42\x1c\x95\x1e\xec\xde\x15\x88\x23\xc1\x74\xee\x7e\xf1\x5b\x13\x7a\x90\x9a\xd4\xfb\xcc\x4a\xa7\xaa\x87\x3c\x2a\xa4\x91\xe0\x6d\x84\xa3\x94\x72\x6f\x8f\xca\xe2\x5f\xbe\x59\xd7\x4f\x1c\xc9\x49\xfa\x82\xfa\x2c\x20\x6b\x4d\x48\x0a\x59\x8d\x7b\x90\x4e\xc2\xcf\xef\x05\x64\x0f\x41\x37\x40\x43\x69\x49\x27\xf9\xaf\xac\x45\x15\xf9\x2a\x2c\xb9\x54\x78\x4e\x45\x09\xa6\x15\x72\x47\x8c\x6e\x27\xa2\x7a\x13\x91\x12\xd2\xce\xb8\xf5\x5d\x9e\x06\xfa\xcd\x2b\x81\x64\x9f\x3a\x91\xff\xd5\xdc\x97\xb5\xc8\x94\x9c\x62\x54\x38\xcb\x5b\x7b\x51\x27\xea\x4b\x18\x04\x08\xeb\xb4\x01\xb8\x4e\xa0\x81\xe4\xb5\x3a\x17\x1a\xf8\x85\x8f\x5f\x2a\xaf\xd9\x68\xb0\x0a\x26\xdd\x41\x1a\xa3\x36\xbd\xe8\x76\x2c\xba\xeb\x2f\x70\x76\xa2\x7f\x53\x4f\xa4\x8d\x6e\x07\x0e\x53\xf4\x6f\x04\x3d\x4a\xd0\x6d\x07\x88\x98\x8e\x42\x3b\x16\x18\xb3\x1e\x20\x8d\x82\xe4\xff\x76\xb0\x90\xa6\x7f\x03\x35\xb5\x0f\x0d\x56\x47\xe5\xdd\x1e\x2d\x04\xfc\x3e\xf4\x3b\xe1\x7d\x4d\x80\xb9\xbb\xec\x6f\xda\x02\x66\xac\x8b\x55\x83\x8d\xd1\xb2\x5d\x0b\x0b\x8a\x9a\x32\xc3\x30\xed\x75\xd8\x60\x58\xb4\x6e\xa3\x05\x0a\xce\xd9\x43\x30\x1e\x4f\xbf\x59\x45\xcc\x3c\xb2\x45\x80\x55\x2a\xc0\x16\x11\xb0\x2b\xe1\xbe\x45\x0a\x87\xd5\x1f\x80\x2a\x7a\x27\x13\x88\x9e\xe4\x86\xb6\xe4\x4f\x1d\x86\x46\x33\x9e\xa7\x94\x60\xda\x1f\x6e\xaf\x0c\x99\x13\x1c\x3f\x79\xd4\xf5\xb0\x46\x4b\x04\x8b\xa0\x90\x60\x81\x16\xf6\x36\x08\x97\xdd\xce\x9e\x0d\xc2\x65\x30\x72\x65\x8e\xe8\x76\xac\xd9\x03\x64\xec\x43\x76\x87\x8d\x1d\xba\x03\xa0\x4e\x76\x07\x98\x91\xee\x75\x2d\xaf\x9c\xac\xee\x11\xfc\x6d\xb8\x83\x75\x7f\xd1\x1a\x32\x58\x87\xc4\x8c\x46\x9f\x2c\x1d\xe1\x56\xe8\xab\xec\xf6\xc2\x1b\xb2\x1f\x54\x68\xd2\x34\x42\x59\x73\xf6\x0b\x54\x52\x49\xa4\x6e\x50\xad\xd9\x85\xa2\x15\xde\xc2\x9a\x1f\x5c\xec\xc2\x0f\x40\xf8\xb2\x7f\xbf\x88\xc3\xd3\x98\xd0\xa4\x05\x9f\xc0\x4f\x88\x6d\xd9\x07\x00\x4e\x5c\xd6\xf6\xb7\x4a\x77\xba\xe6\x0f\xb8\x11\x82\x0a\x85\x56\xa3\xca\x72\xb7\x17\xa5\x6b\x95\x1b\x21\x64\x44\xb6\x31\x25\x5a\x1e\xad\x92\x96\x07\x8f\x00\xf6\x63\x20\xc0\xff\xde\x94\xaf\xd5\x45\xba\x35\x85\x86\x43\x2c\xe1\xab\xb5\x35\x67\xcd\x09\x72\xae\x4d\x5e\x6d\x39\x7e\x35\x7f\x01\xe4\xd0\xfd\xab\x35\x1c\x98\xe2\x11\x2e\x6e\x8c\x76\x0a\x7a\x39\xa5\x0c\x1e\xad\xf1\x76\x65\x5a\xb8\xc4\x56\x53\x2a\x56\xfd\xea\xfe\xa4\x73\xd6\x9a\x54\x67\xd6\x92\xbf\x0a\x72\x6d\x1d\x1c\xd4\xf3\xe9\xd8\x05\xc9\xd9\xad\xf3\xfe\xfe\xd3\x3b\x81\xaa\x5d\x80\x17\x99\xa3\x01\xda\x58\xb2\x98\x7a\x18\xeb\x88\xeb\x0b\x96\xe3\xb2\xf9\xb2\x0d\x2a\xf9\xfd\x05\x85\x64\x23\xe7\x58\xd8\xea\x2e\x00\x35\x49\xd1\x8d\x86\x42\x47\xce\xb6\xb1\xa0\xa6\x69\x9f\x2c\x6a\x21\xb0\x52\xef\x15\x4d\xeb\x4e\x10\x6c\x9f\x90\x13\x80\xf0\xba\xa0\xc7\xb2\x76\xa6\xc1\x15\xbf\x79\xd2\x27\xd5\xe1\x46\xa6\x93\xd1\xd1\x7e\x61\x91\x01\x2d\xe2\x5a\x87\x54\x6f\x5c\x6b\xdd\x7e\x40\x9d\xbb\xc9\x25\x53\x9f\xfa\x6e\xdd\xae\xb5\x70\x4d\x8b\xde\xf0\x36\x99\xb6\x9b\xaa\x63\x63\xfd\xcd\x85\x6a\x90\x9b\x0b\x55\x97\xf4\xf8\xea\x5e\x29\xac\x87\x36\xaa\xb5\x9b\x5e\x0e\x26\xa9\x4b\xee\x33\xac\x28\xf7\xf9\xe4\xc2\x78\xd8\xed\x66\xd6\xee\x85\xe5\x1e\x94\xb7\x35\x83\x9f\x79\x3d\x6c\xfb\x6b\xac\x89\x6f\xb1\xa3\x3d\xd4\x8d\x6a\x1d\x0f\x39\xac\x65\x80\x67\x2d\x44\x3b\xb2\xa4\x41\x4b\x01\x4c\x11\x1e\xa5\x7b\x6a\x0f\x15\x68\xa6\xdd\x14\xff\x7c\xbe\x97\x72\xca\xd0\x5b\xe2\x9f\x54\x4d\x6d\xe9\xa2\x8c\x58\xef\x9a\xb8\x3e\x79\xa9\x88\x36\xc4\x5f\xc8\x1a\x3e\xf2\x2f\x6a\x26\x19\x51\x58\x0a\xdf\x2e\xb4\x6d\xae\x2e\xf5\xc6\x04\xd3\xf3\x81\x41\x39\xd9\x94\xdc\xce\x1b\x53\xf7\x0b\x38\xf6\xc6\xb4\x09\x24\x30\xf2\x2e\x19\xce\x0b\x87\xc5\xd1\x0e\xdc\x0d\xc5\x64\x95\x0e\x77\xf4\x23\x40\x27\xd2\xf4\x1b\xa5\x63\xc5\x0e\xfa\x27\xd2\xc5\x43\xdb\xd9\x19\x0d\x39\x7e\x5e\x20\x93\xcb\xfa\x5d\x11\x33\xe4\x0e\xc9\x0e\x74\x53\xee\x30\x47\x2a\xb5\xf5\xe8\x07\x89\x44\xf7\x10\xd8\xbb\xee\x11\x28\xba\x27\xcf\x79\xed\x9d\xc7\x80\x50\x27\xac\xec\x01\x26\x06\xed\x6d\x0f\xbc\x40\x69\x0a\x28\xaf\x6f\x9e\xd7\x03\xa3\xa1\xdd\xbe\x16\xe9\x07\xa4\x85\x22\x43\x1d\xc9\x39\x94\x8e\x7d\xf4\x00\x3d\xc8\x70\x8f\x24\xbf\xcd\x1f\x80\xc9\x49\x5c\xe9\xf4\x2e\x73\x64\x78\x0f\x6b\x51\x7b\x6b\x3b\xa3\x29\x1d\xda\xda\xa1\x87\x0c\x42\xfa\x1e\xc9\xe5\x84\x6f\x9d\x62\xa1\x21\x1d\xe9\xf4\x92\xdc\x25\xd9\xde\x4f\x17\xb4\x79\x79\xde\x91\xb5\x32\x3c\x26\x62\x18\xfe\xce\x83\xae\x2f\x9b\xac\xe1\xbe\x6c\xb2\xa2\xe6\x1d\x72\xa7\x7d\x81\x3a\x2c\xae\x56\x08\xf4\xc4\xfb\x81\xf0\xb9\x27\xdc\xff\xdd\x63\x02\x4d\xd3\x89\xea\x88\xcc\xcc\xb6\x18\xf4\x4f\xce\x4c\xaa\x16\x3b\x3a\xf2\x77\x98\x82\xf5\x84\x33\xdb\x3d\x03\x82\x5d\x64\xb6\x67\x9e\x72\x1d\xb1\x4e\x41\xd3\xe8\xb9\x04\x4d\x1d\xd2\xbe\x04\x49\xa3\x1f\xf4\xa0\xe6\xa4\x1d\x81\x9a\x4e\x77\xd1\xa1\xf7\xb4\x5c\xd9\x59\xa0\xc6\xe9\x71\x3a\xeb\xd1\x18\x79\x0a\x37\x52\x8b\x28\x34\x8b\xfc\x3c\x80\x6b\xd8\x70\x8f\x50\x7d\x1a\xb9\x0a\x09\xe6\xcf\x07\x9f\x7c\x63\xa7\xe4\x0e\xd5\xa8\xaf\x49\xbd\x20\x44\x5d\x5c\xb2\x57\x58\x99\x87\x7f\xf3\x40\x48\x1c\xef\x94\xfa\x74\xa3\xe8\x95\x40\xf1\x4e\x51\xa8\x33\xb2\x32\xc5\x6c\x34\x2e\x34\xf0\x37\x4f\xb1\x01\x9b\x45\xd2\xfb\x09\x5f\x46\x89\x8d\x9d\x9a\x1e\x7f\x4f\xf7\x6f\xdb\xb5\xfb\x49\xba\xa1\x1b\x40\x3f\xc9\xac\x7c\x40\x4e\x6c\x84\x34\x60\x9d\x49\x0b\x6c\x65\xeb\x08\xbb\x73\x06\x82\x7e\x51\x5f\xea\xad\xa3\x32\xc8\x70\x61\x25\x4d\x1b\x87\xfa\x45\x25\xf4\xcf\x18\x24\x77\x3f\x7d\xd2\x05\xc0\x7d\xdc\x4c\xae\x99\xfd\xe0\x83\x8c\x63\xde\xfb\x4d\xc8\x08\x94\xcb\x1b\xdc\x08\x07\xd1\xc0\xc1\xde\xfd\x5e\xb3\xf2\x17\x6b\x56\x7e\x40\xe0\x15\x8f\x41\xfa\x64\x52\xf1\xb0\x3c\x8a\xb6\xe7\xe3\xb0\xf5\x67\x0c\xa8\x4f\x8a\x41\xf7\xb2\x1c\x8a\x57\xb1\xf8\xa9\xc4\xfa\x0e\xa7\x1e\x7b\xeb\xf6\x97\xd7\x5c\x23\x25\x2b\xba\x27\x2f\xfc\xa5\x7a\xd0\xe4\xe0\x5d\xc1\xfd\x02\xf7\x3b\xb0\x72\x77\xc1\xbb\x45\xf1\xb4\x2e\xbc\xe0\xdf\xcf\x3f\x7f\xf2\x0f\x0d\xfd\x78\x78\x49\x26\x99\x2f\xd2\x98\x98\xf7\x50\xc9\xa2\xeb\x56\x9f\x6b\xd2\xda\x5f\xb0\x6c\x5f\x5e\xfa\x5c\x73\xf6\x17\x54\xa6\x69\x8a\x48\x48\x60\xcf\xb7\x8e\xe4\x59\xaa\xfd\x3b\xc6\x72\x00\xd2\x14\xc7\x41\x74\xf0\x0b\x48\x81\x10\xdc\x4e\xf9\x49\x14\x6b\x30\xc7\xa7\xb5\xfc\xe3\x20\x94\x8a\x7e\x23\x00\x5a\xfe\x1b\x03\xb9\xb1\xcc\x0f\x07\x5c\xb3\x2d\x8a\x0e\xd6\x7a\x34\xbb\x1b\x1f\x43\x6d\xb6\x1e\x8e\xc0\xda\xfc\x6e\xcf\x68\xd7\x04\x02\x31\xf6\xa7\xc7\x8e\x17\xba\x7e\x93\x73\xe8\xa0\x8d\x8f\x1b\xb6\x18\xfe\x2a\xb6\x68\x80\x53\x3a\x22\x7c\x2c\x8b\x9d\x0e\xc8\x00\xa7\x74\xbc\xee\x88\x6b\x93\xfc\xc5\x47\x50\x55\xdc\x67\x0c\x46\xce\x15\xb7\xf3\x3e\xe8\x15\x7e\x8c\xb3\x45\xdd\xe4\x07\xfc\xa4\x8d\x27\x23\x11\xfb\x25\xd4\x0e\xfa\x41\xdb\x3e\x37\xd2\x82\x89\x26\x95\x28\x43\xf8\x01\x32\x63\x96\x24\xe4\x1d\x4b\x89\x22\x81\x7d\x40\x89\xe2\x50\xca\x91\x3f\x71\xd1\xf6\xa0\x91\x49\xb6\x9b\xbb\x24\xae\x0c\x77\x49\xd5\xd1\xcf\x03\xe0\x8a\xb1\x0b\xcc\xcd\x02\xe5\x80\x91\xcf\xb1\x72\x03\x09\xd6\x4b\x32\x7a\x66\x5e\x75\xc4\xcd\x46\xc1\x56\x4a\x04\x1d\xcb\x70\x27\xca\x3f\x0a\x67\x2d\x6c\x82\x9a\xa4\x79\xc8\xc2\xdc\x6e\xc3\x2f\x2c\x48\xb9\x87\xb5\x3d\x9a\x15\x92\xaa\x97\x64\x94\x2f\x94\x55\x7e\xde\x98\x7c\x43\x9d\x56\x32\x03\x31\xd1\x01\x3f\xd9\x24\x25\xda\x40\xf5\xe9\xe3\xe7\xf7\x1a\x54\x3d\x30\x5d\xa6\x53\xdc\x8c\xef\xba\xeb\xea\x79\x63\x2c\x0b\x8a\x48\xff\x38\x49\x4d\x24\xf3\x8d\x93\xa0\x10\xf4\xcf\xb5\x81\x1a\x03\xa1\xe7\x39\xf9\xf7\x27\xef\xa8\x7a\xc8\x18\x17\xa5\x48\x51\xfa\x01\x27\x8c\xe2\x5c\x53\xe3\xc2\xe1\xb0\xbd\x62\xa0\x16\x88\xa3\x96\xc7\xc7\xf4\x92\x4d\x2c\x83\xb5\x41\x6c\xaf\x18\xf0\xb1\x70\x64\xc7\x58\x06\x8d\xe6\x2f\x26\x1f\xa8\xcb\xef\x72\x9b\x92\x24\xa6\x71\xaf\x75\xfb\xc1\x77\x3a\x7c\x1b\x1e\x60\x71\x56\xfb\x0e\x38\x61\x38\xba\x64\x80\xa1\x39\x56\x63\xe0\xae\x5b\x92\x49\x1a\xee\xa5\x3f\x68\xfd\x80\x44\x48\x3f\x39\x60\xa2\x70\xa8\xc5\xa0\xd7\xab\x53\x97\x8c\x75\x4d\xed\xee\x11\x56\x17\x9f\x5f\xb8\xc5\x3a\xc8\x60\xb0\x84\x87\x6f\x7f\xe3\x39\xd9\xa5\xe7\x80\xa3\x64\x4a\xcf\x24\xd9\xb6\x7a\x0c\xf8\xcd\x3a\x9c\x63\x3c\x3c\x4a\xdd\x93\x9a\x78\x41\x3d\xbe\x8b\x30\x6b\x12\x70\xa0\xb0\x03\xea\x78\x1b\x87\x50\x97\x93\x58\x2e\x96\x3a\x26\x96\x21\x3e\x3e\xe6\x5a\x86\xbf\xc0\xac\xc5\xbf\x06\x0b\x22\x3b\x3a\x76\xa0\x08\x54\xd6\x32\xcf\x03\xa0\x96\xe2\xf5\xa4\xd9\x20\x49\x77\x7c\x1e\x74\x5e\xd1\x39\x39\x0f\xd0\x46\xeb\x72\xcf\x03\xc7\x40\x4a\xcb\xf3\x60\xba\xd2\xea\x07\xe4\xf3\xdd\x5d\x5c\xec\xc2\xa3\x52\xcf\xf3\x33\xc8\x0b\xf1\xc3\x63\x00\x96\x92\xdc\xce\x40\x85\x80\x0e\xe7\xc9\x80\x24\x8b\x59\xe7\xc7\xf5\xe0\x83\xf8\x17\x3c\xe9\x0c\x4b\x50\xd0\xef\x4a\x28\x44\x3d\x00\xa1\xcd\xee\x7d\x2d\x69\xe8\xc1\xcb\x25\xa9\x8b\xc8\xbd\x13\x13\x3a\xc9\xe7\xac\x49\x3d\x57\x04\xb8\x4e\xff\x09\x57\x95\x62\xa7\xad\x93\x21\x43\xd6\x51\x9f\x48\x5c\x6d\xaf\xe7\x33\x72\xbb\xd5\xc3\x77\x85\x4b\x96\x1d\xce\xc5\xd8\x74\x0e\x4e\x96\x11\x71\x50\xed\xc9\x4b\x9d\xc3\x53\xcf\xb4\x96\xee\x37\xbe\x5b\x9e\x2d\x57\x27\xa3\xc8\xd3\xcf\x17\xe0\xa6\x52\x9d\x9e\x19\x2c\x44\x52\xdd\x89\x14\xd1\x87\x83\xc9\x4e\x32\x42\x49\x30\x67\x86\xcc\x24\x75\xe9\x99\x79\x9a\x87\x5f\x00\x86\x49\x6c\x3b\xc9\x18\xad\xfd\x3c\xe1\x47\x5b\xd2\xcf\x03\x62\x58\xf4\x27\x3c\x08\xc3\xb3\xc2\xf1\x95\xd8\x75\x66\x92\x7f\x4d\xa2\xac\x59\xab\x07\x78\xde\xaa\xf8\xed\x38\x0b\xcf\x81\x38\xdf\x49\xce\x28\x61\xf3\x2c\x84\xa4\x18\xfc\x59\x08\x49\x4d\x92\x39\xa2\xcd\x5b\x4f\x18\x10\x54\xcc\x66\x9c\x70\xcd\x8d\xd2\xc6\x9d\xac\x4a\x3a\x7e\x5e\xc0\xb1\x10\x25\x3e\xe1\x68\x6b\x37\xb0\x13\xe6\x00\x3b\x09\x9d\x15\x53\x94\x8a\xf7\xac\x40\x6b\xdd\x1b\x4e\xb8\xdd\xfe\x9c\x5c\xdc\x0b\xed\x99\x71\x22\xae\xc3\xbe\x99\xe7\x49\xaa\xa9\x1b\xfc\xc9\xea\x56\x56\x28\x9e\x70\x33\x34\x7f\x3a\x79\xcd\xb3\x42\xf1\x3c\xc9\x7e\x44\x15\x4f\xd8\xfc\x6d\x8e\x3e\x17\x0b\x34\xe0\xaf\x05\x78\xbf\xc1\x1b\x94\x89\xc1\x45\xbe\xab\x59\x51\x07\xfc\x83\x81\xd7\x42\x0f\x6d\x05\xb9\x64\xf5\x6f\x30\x7f\x6b\xd2\x4e\xd4\x85\xb0\x41\xfa\xdc\x1a\x60\x8d\x79\x2f\x3a\xa9\x2e\x6e\xe6\x67\x12\x24\xe8\x9a\xe8\xc8\xb7\x13\x09\x51\xa2\x55\x67\x27\x62\x7c\x7f\xee\x92\xe7\x8d\xed\x95\x04\x79\xc2\xb3\x70\x38\xc0\xef\x24\xa3\x94\xc4\x78\xb2\xc2\xe3\x61\x2c\x66\x71\x2b\x87\x31\x9e\xa8\xe8\xf8\x73\xfd\x3c\xa9\xd0\xb5\x3a\xed\x44\xe0\xaf\xc3\x0b\x4e\xc4\xfd\xb6\x9f\x1e\x08\xbb\xe4\x49\xdc\x78\x41\x1f\xbc\x6b\x96\x7e\xc0\x0d\xf3\x7e\xbc\x6b\x56\xda\xd2\x17\x77\x62\x49\x18\xe7\xe2\x84\x62\xae\xe7\xbb\x76\x50\xe0\x46\xa0\x6f\x32\xc3\xe0\xd5\x51\xfc\xfc\x64\xe0\xaf\x75\x1e\x27\x72\x37\x67\x49\x08\xe7\x0b\xaa\x25\x6e\x7d\xbe\x80\xb5\xdb\x27\x40\x2b\xd6\x7b\x4e\x1c\x25\x5d\xb9\xcf\x49\xc2\x29\x4d\xd3\x39\x71\xba\xc5\x8a\x4f\x96\xa3\x48\x3e\xac\x54\xff\x8e\xbf\x2a\x16\x31\x4e\x72\x72\x31\xee\x93\x69\x54\xac\x41\x39\x59\xce\xd1\x1a\x94\x8b\x71\xc1\x56\x90\x5c\xc7\x22\x61\x59\x0f\x22\x37\xdf\x9f\x24\xce\xd1\x6f\x60\x23\xc4\xa9\x2f\x66\x6a\xf6\x95\xfc\x42\x05\x8a\xc3\x08\x75\x81\x97\x1f\xde\xed\x8b\xbc\xdc\x31\xa3\x17\x79\xb5\x43\x40\xaf\x40\x2c\x95\x8c\x71\x05\x1e\x0d\xb1\xdb\x8b\x37\x4e\x31\xf3\x2b\xac\x51\xdd\x27\x08\x55\xf7\x6f\x22\xa5\x84\x90\x8b\x55\x1c\x1d\x22\x78\xc1\x90\x7f\x58\xb5\x73\x05\x6c\xb8\xf8\xf3\xc5\xb2\x5e\x49\xa4\xeb\x8a\x20\x96\xe2\x18\x17\xef\xa1\x4e\xa0\x76\x41\x41\x3b\x1c\x1c\x79\x45\x96\xe4\x14\x51\xb8\x98\x43\xd9\x0c\xf9\xfa\x18\x72\x49\x3a\x6c\x57\xfa\x08\xb6\x95\x28\x17\xd8\xf1\xf1\x03\x2b\xfa\x96\x5a\x3b\x74\xa1\x62\x83\x63\x0a\xae\xc4\x72\x31\x9a\x03\x3d\x49\x1d\x99\x7a\xe1\x1e\x6a\x8f\xa6\x0b\x39\x8f\xed\x5c\x7c\x81\xfb\x3a\xb5\xc8\x05\x5b\xbe\x33\xf4\x5e\x1f\xf3\x4d\x0e\xb9\xbf\x72\xe7\x14\xfd\x60\x81\xc1\x23\xf0\xec\x15\x77\x39\xd1\xa5\x20\xf9\xf1\xd6\xe6\xdb\xdc\x85\x68\x5b\x95\x60\x1b\x57\x59\x50\x50\x07\x1f\xa7\x6c\xbe\x16\x5d\x60\x94\x76\xe9\xbf\x78\xa5\xb4\xfb\xec\x55\x16\x29\xd5\x10\x8c\x49\xb1\x2a\xe8\x82\xe9\x7c\x1c\x12\x63\xae\x4a\xa2\x24\x19\xe2\xaa\x8b\x54\x6a\xd4\xba\x56\xae\x75\x50\x8f\x6a\xdd\x0d\xaa\xfe\x67\x47\xe7\xa0\xaa\x7f\xb7\x3d\xf3\x6a\xeb\xbc\xf9\x01\x81\xed\xdf\x05\x1f\xa8\xc3\x46\x1e\x21\x0e\x8f\xaa\xfe\x5f\x0f\x9a\x25\x2b\x75\xda\x9d\x12\x45\xfa\xbf\x59\x0a\x23\x3a\x36\xd8\x28\x05\x53\xf6\x8f\x3e\x07\x45\xf9\xbf\x2e\x04\x6e\xe4\x9a\x3b\x7e\x70\xa8\x13\x0b\x25\x48\x5c\xb4\x60\xdb\x73\x0f\x75\xfc\xc3\x8f\x5a\xe7\x62\xa5\x6f\xbb\x1b\xad\xc2\xfd\x76\xb5\x41\xe1\xfe\x60\x2b\x39\x0a\xf7\xbb\xae\xf7\x60\xdd\xfe\xc3\x21\xa0\xd7\x00\xda\x18\xf1\x06\x32\x33\x34\x7f\x40\x4c\xf6\x6f\xf2\x1d\x09\x1f\xd7\xe0\x7e\x49\xb6\x40\xa5\xff\x6f\x08\xbf\x41\xbc\x31\xb0\x4e\x92\x26\x53\xc8\x93\x32\x79\xf2\x1b\xc0\x4d\xcf\xf2\x5c\xa0\xd1\x34\x3e\x21\x29\xa9\x18\xdb\xb8\x10\x9b\x61\x43\xee\x45\x23\xb7\x63\x36\x2f\xa4\x46\xf9\x01\xcc\xc9\x42\xcf\x9a\xe4\xb5\x00\xa3\x65\x5c\xe1\x83\x9c\x27\xcd\xf4\xbd\x8e\xe9\xbc\xe0\x26\x69\x99\xfe\x62\xc1\x50\xbb\x14\x5d\x90\x98\xc6\x11\xfb\xdf\xf0\xa6\x0b\x81\x1e\x16\x6c\xaf\x4f\x9c\x72\x81\xf5\x71\xd1\xa2\x6e\xd5\xd7\x05\x8b\xfa\x70\x68\xd2\x05\xf9\xea\xf8\x39\x6c\x90\xaf\x7c\xa9\xb8\xe8\x56\x69\xa7\xc2\x0b\x6a\xf3\x14\xfd\x7b\xed\x83\x90\xf6\xe6\xe9\xf4\xac\x18\xd9\xe1\xc3\x89\xc0\x8e\xf4\x33\xe4\xda\x6b\x77\x09\x32\x25\x81\xfe\xa2\xb9\xdc\x0a\xb9\x0b\x71\x1b\x3f\xa7\xf7\x41\x5e\x0d\xa3\xd3\xb3\xe6\xa4\x63\xf2\x10\xac\x5e\x05\x84\x27\xeb\xc8\xaf\x87\xd4\xda\xab\x40\xb4\x6d\xb6\xcc\x77\x21\xea\xe2\xe7\xbc\x43\x69\x90\x24\x3f\x5f\x2f\x90\xde\xc8\xf3\x72\x8e\x5a\x35\x64\xad\x1f\x75\xea\xf5\xae\x49\x6a\x0e\xf0\x86\xb4\x67\xe1\x05\xb5\xfc\x70\x28\xc0\x85\x5c\xc1\xc5\xca\xb5\xeb\xe5\x76\xfe\x3c\x98\x7c\xa0\x3e\x27\xb6\xd3\x5d\x40\x9a\xfa\xd9\x2c\xd8\xd6\x7f\x76\x77\x92\x1a\xfb\x54\x21\xc0\xd7\x1e\x67\xd7\x5c\xb3\xd6\xba\x27\x25\x13\x13\x63\x66\xa6\xb3\x2a\xf3\x62\x80\x6f\xf2\xb9\x61\x3c\xaf\xed\x07\xd7\x24\x16\x0a\xa9\xee\x4f\x84\xea\x4e\x90\x77\xa3\xbe\xd7\x61\x0f\xc6\x1b\x3e\x93\xf6\xb2\xbc\x21\x2f\xd9\x27\xe0\x86\x4b\x64\xd2\x59\xbf\xa1\xcc\xf7\xac\xef\x03\x38\x98\xdd\xdf\x02\xad\x3b\xb8\xf1\x41\xd7\x6f\xa4\x65\x6e\xfe\x80\xe4\x5e\xca\xb6\xfb\x93\xae\xb2\xd9\xf9\xcd\x02\xa7\xd6\x52\xde\x50\xff\x27\xc9\x8d\x37\x9c\x28\x0d\x95\x1b\xea\x7f\x6f\xee\x1d\x0a\x7e\x7b\x00\x52\x40\x4f\xf1\x93\xb5\x9a\x53\xd9\xde\xb0\x96\x1f\x8e\xd6\xbe\x03\x91\xda\x50\x5a\xca\x11\x29\x46\x6f\xd8\x00\x92\xd4\x29\x77\x24\xc1\x92\x1a\xea\x66\x49\x55\xab\xec\xef\x48\xc0\x6b\xd6\x10\xce\x52\x76\x8f\x14\xce\x9a\x5f\x20\xc2\x78\x2b\x58\xf4\xcb\x7a\xce\x3b\xf2\x4e\xe1\x85\x44\x22\x8c\x41\x05\x03\x7b\x09\x7e\xe1\xc5\xa0\x9e\x14\x22\x0f\xc5\xad\x6f\x58\xd0\x93\x64\xb5\x9b\x9e\x9b\x0e\x7c\xbd\x29\xee\x49\x91\x71\x2f\x71\x4f\xdc\xe5\x5e\xda\x17\x23\x08\x73\xf8\xd9\xd9\xf3\xa6\x51\x5d\xa2\xcf\x8d\xb0\x66\xb3\xa3\x3b\xb1\xc0\x84\x87\x20\xdb\x6d\x9e\x14\x16\x21\xf5\xcc\xcd\x48\xa2\x1f\x9c\x66\x54\xb3\x95\xa9\x37\xac\xee\x87\x19\xd4\x9d\x29\x2a\x79\xa1\x30\xc3\x27\x09\x7c\x77\x6e\xf8\xed\x1e\x10\x8b\x6d\x0c\x61\x5d\x57\xab\x5f\xef\x82\x90\x2a\x2f\xbb\x50\x50\xfa\x3b\x7f\xef\x9b\x46\x0a\xc7\x34\xdf\x85\x02\x8c\xa8\xe4\x5d\x10\x07\x70\xb8\x7f\x12\xe6\xe2\x17\x00\x46\xf1\xdc\x9b\x65\x30\x2c\x67\xdf\xac\xfc\xea\x74\x8c\x77\x21\x96\x4b\x3b\x73\x97\xb5\x28\x0f\x42\xaa\x28\x85\xcf\x0d\xf7\xce\xe4\x69\x56\x5e\xd0\x44\xac\xef\xba\x96\xed\x37\x16\xf5\xf6\x1b\x84\xac\xe6\xbd\x64\x52\xf1\xa4\x9b\xa5\x5e\x7f\x4e\x46\xe3\xd9\x92\x20\x76\xb3\x94\xab\xdd\x86\xee\xc6\xdd\xd3\x18\x6d\x1d\x1d\x3f\x00\x55\xf3\x4a\x99\xf0\xd8\x11\xb0\x37\x3d\x30\xed\xbb\x72\xbf\xa8\xef\x2e\xfa\x7e\x33\xf4\xcf\x11\xab\xf7\xcb\x75\x08\x34\x28\xc5\x64\xbd\xf4\x8d\xfb\x7c\x92\x7c\x79\xbf\xa0\x8b\x92\x83\x6f\x32\x18\x49\xbd\xf7\x5c\xab\x54\x87\x28\x5f\xed\xe4\x1e\xf7\xc4\x1d\x43\x3a\xc5\x7b\x22\x78\xca\xe4\x81\x09\x24\xac\x6b\xbf\x17\x3f\xd1\x49\x7b\x96\x6a\x5c\x47\xf1\x81\xad\x57\x35\x72\xc7\x43\x66\x20\xb8\x3e\x47\x43\x36\xc1\xa8\xdf\x00\xa3\x84\xe8\x87\xcc\xa1\xba\x9d\x38\x27\xa9\xec\x81\x16\xdc\x02\xc9\x43\xd3\xae\x03\x68\x1f\xd2\x76\x31\x83\x87\xb4\x5b\x2c\xf0\x09\x4c\x1b\xe9\xdf\x14\xcc\xa4\x55\x78\x70\x09\x76\xfe\xe5\x07\x59\xae\x1c\x9d\xf2\x44\x2e\x49\x4b\x86\xa9\x35\xeb\x12\xfd\xc0\x77\xdd\x25\x7f\x1e\x9a\x5e\x7f\xbe\xbf\xb1\x02\xf7\x4f\xf6\x25\x05\xc3\x93\x28\xcb\x4a\xbe\x79\x12\x37\x52\x64\xfa\x49\x14\xda\x75\x51\x7f\x12\x63\x9b\xdd\x05\x17\x25\x25\xf7\x93\x28\xd5\x27\x7f\x01\x92\xd7\xfc\x05\x57\x2d\x28\x20\xaf\x43\x12\xcb\x7c\xf2\xda\x69\x4d\x2a\x93\x1d\x49\xb6\x7c\x78\x49\xf6\x46\x64\x5e\xa1\x86\x1f\x00\x70\x5e\x05\xd3\x5c\x99\x24\x3e\xf0\x80\xb7\x95\xed\xc9\x3c\x53\xa2\xba\x0f\x2c\xb1\xce\x4d\xf9\xf0\xd2\xac\x23\xf6\x14\x2a\x73\x0c\x5b\x54\xf2\x49\xc6\x57\x50\x2c\xe7\xe7\x7b\x16\x39\x12\xd1\x7d\x2a\x60\x2f\x9a\xf7\x7c\xe4\x28\xb5\x9f\x76\x6e\x85\x08\xda\xb3\xc8\x53\xf1\x1b\x00\xc3\xcf\x0b\x0b\x0c\x9a\x43\xe5\x75\xb5\xf8\x8d\x93\x7b\xe3\x2e\x78\x77\xf0\x24\xee\xef\xdc\x1a\x0c\x15\x7b\xe5\xdd\x6f\x14\xd1\x04\x06\x44\x51\x26\x63\x74\xa3\x24\x69\x30\xc0\x5b\xdc\xa6\xc0\xa7\x51\x61\x25\x59\xf4\x69\x34\x3f\x17\x77\xf9\xf2\x81\xe6\xc4\xbc\x0c\x63\xfc\x55\x1a\x86\xa7\x93\x1b\x49\x7b\xf5\x30\x75\xbb\xad\x5b\x0f\x72\x22\xa4\x9f\x17\xb8\x73\x6e\xe7\x65\xda\x07\xbf\x53\x72\x15\xe7\x78\x58\xec\xc6\x2a\xef\x87\xa9\xa6\xc4\x40\x1f\x24\x92\x4a\x36\x5f\x3c\x83\xda\x0c\xf1\xe0\x87\x0e\xe1\x87\x74\x68\xcf\x20\xa0\xd4\x05\xd3\x1a\x1c\x06\xfd\x89\xdd\x96\x42\xec\x39\x31\x6d\x99\x2f\x9e\x55\x76\xe6\xf0\x03\x10\x71\x8f\xc0\x24\x04\xf6\x47\x78\x4e\x96\x56\x3a\xfc\x00\xbb\x2d\x2a\xfe\x2c\x83\xb8\xf8\xdd\x73\x61\xbb\x8d\x60\xb0\x7f\x1f\x3f\x1f\x90\xb9\x79\x15\x17\xce\xd9\xf0\x0b\x5c\xb6\x57\x71\x7d\xcb\x76\x36\xb9\x07\x49\x0a\x92\x21\x7b\xad\x49\x7b\x0a\x64\xfc\x5e\x37\xb3\x12\x38\xf6\xfa\xb9\x0f\x7e\xa2\x37\x6e\x9c\x5d\x23\xc0\x1d\x31\xa6\xe6\x70\xaf\x83\xe5\x17\x08\x6a\x8d\x89\xdb\x6f\xf6\x6e\xae\xdb\xaf\x58\xf2\x73\xaf\x65\x09\x30\xab\xcc\xf4\xe1\x2e\x27\xba\x10\x60\x9e\x84\xdf\xfa\xe0\xa1\xe8\x29\x96\xfc\x7c\xb7\xd9\xe6\xac\xdb\xcf\x83\x4a\x61\xde\xdd\x87\x14\xcb\x93\x7c\xb8\x9b\xd2\x43\x3c\x4c\x11\x6a\xae\xfd\x2c\xd3\x80\x01\xf1\xf2\xb4\x1a\xda\x2f\x25\x62\xdd\x1c\x9f\x97\x2b\xf7\x17\xcb\xdf\xc4\x5f\x50\x37\xac\x0b\xcb\xb3\xae\xab\x92\x0d\x1e\xb8\x82\xe7\xc3\x5f\xac\x79\xfa\x05\x82\x46\x2b\x67\xd9\x46\xeb\x1f\x9f\x89\x88\x2b\x13\x6b\xe4\x00\x3d\x7c\x01\x7e\xe8\x0b\xfe\xc3\xcb\x61\xa9\xcf\xd2\x3f\x3e\x90\x26\xec\x50\xf4\xc0\x18\xe0\x08\xa9\x67\x62\x8e\x06\xdd\x5c\x73\xdc\x70\x78\xe9\x69\xe6\x70\xf1\xf7\x58\x80\x18\x7a\x70\xf2\x8d\x43\x0f\x1e\x3e\x88\x7a\xb0\x3a\xdd\xa0\x7a\x99\xa4\xd3\x22\xc9\x8b\x82\xcf\xc9\xaa\xa5\x37\xc0\xfa\x23\xed\xd6\x4b\xbd\xba\x63\xa7\x5f\xa6\x68\xb0\xa4\xf6\x7e\x97\xbd\x96\x3d\x71\x24\xd1\xc9\x1e\xb3\xd1\xea\xa9\x1e\x11\xdd\xe3\x62\x68\x6f\x5b\x1c\xc2\x2f\x5c\x1c\xd2\x3d\x7c\xb2\xa0\x73\x2d\xbe\x8d\xb0\xf3\x07\xab\xec\xdf\xfe\xdd\x57\xea\x02\xbd\x80\xe0\x1e\xbb\xc1\xbf\x08\x38\x1f\x0e\x4c\x7e\xa1\xef\x4c\x56\x4f\xbd\x1d\xdb\x69\xb0\x40\x15\x99\x45\x4c\xdf\x81\x03\x2d\x5e\xfc\x0e\x44\x57\x4b\x14\x44\xd9\xff\x96\x45\xd0\x5f\xba\x2b\x1d\x3f\x0f\x18\xa8\xec\x0e\x3b\x5f\xf0\x83\x05\x05\x4f\x01\xab\x8e\x7f\x75\x43\x7a\x97\x5e\x53\x22\xd1\x3b\xa0\xa9\xf6\x36\x9e\x0b\x81\xb5\x0d\x27\x67\xec\xdf\x9f\xbc\x9c\xc4\x97\x5f\x96\xd5\xb0\xb4\xfb\x82\x1b\xe4\xe8\xdf\xa0\xab\x3a\xa7\xef\x49\x36\xeb\x6d\x39\xb9\x00\xc1\x78\x31\x03\x51\xcd\xf7\x64\x38\x84\x64\x85\x77\x29\x3e\x25\xb4\xbf\xf0\x86\x4a\xbe\x99\xbe\x50\x74\x3a\xaf\xd8\xfb\xb1\x83\xe6\x9c\x7c\x2f\xb8\x41\x8e\xfe\x0d\xe2\x91\xfd\x1b\xe5\x1a\x7d\xc8\x50\x1e\xb8\x79\x8e\x1f\x33\xc8\xed\x67\x02\x3c\x62\xc1\x0f\xe0\xa2\xda\x3c\xa1\x89\x62\xbf\x82\xf3\xcd\x20\x12\xef\xeb\x8d\x64\xbd\x3f\xbf\x17\x66\x08\x8e\xf7\xc2\x04\xcd\x11\x69\x04\x7f\xd2\x77\xbf\x48\x48\x63\x37\xd8\x17\x81\x40\x55\xb2\xc0\xfb\x50\x3d\xac\x0e\x50\xd2\xcc\xb7\xe5\x17\x6a\xcd\x9c\xfc\x9b\xb2\x83\x57\xfd\xf4\x7f\xfe\x94\x9a\xfd\xc2\x80\x53\xab\x7f\x53\xab\xa9\x35\x3c\x9c\x90\x96\x00\x57\x29\xa7\xd6\x78\x1f\x90\x88\xe4\x09\x4d\x42\x51\x33\xfe\xf8\x44\xcb\x52\x39\xbd\x2f\x35\x10\x22\x97\x2f\x52\xcb\x64\xef\xc3\x52\x6a\xea\xa2\xf2\x22\x83\x60\xfe\xf9\x80\x32\x5d\x75\x97\xa0\xf9\x06\xd2\x5c\xb8\xe5\x07\xa8\x66\x6a\x39\xf1\x9d\x54\x06\x4a\x51\xf2\xc2\x24\x9c\x7f\x7e\x13\x6e\xc9\x0f\xb8\x75\x62\x4d\x2f\xa2\xba\xb3\x58\xea\x3b\xd7\xc2\xf7\x17\x73\x51\x79\x51\xcb\xc9\xa8\x6d\x87\xef\xcf\x65\x80\xcd\x7e\xe3\x45\x9d\x92\xa8\xdf\x54\x6a\x6a\xb7\x66\xa0\x46\x40\x97\xb2\x19\xd6\xca\xfc\x06\xef\x3b\xba\x06\x4e\xf8\x43\x39\xad\xe1\x0c\x0b\xfe\x9a\x05\x2e\x9a\x59\x68\x3d\x17\xdf\x48\x7e\x81\x1b\xa2\x1b\xd2\x0c\xbc\x09\x34\x7f\x42\x01\xe5\x67\x10\x0a\xe6\xd9\x0f\x26\xdf\xd8\x9b\x3a\x11\x75\x63\x47\xc2\x09\x35\x62\x96\x9c\x3e\xe3\xda\x21\x7f\x40\x3d\x90\x2e\x72\xa8\xdb\xdf\xb2\x50\x1f\x45\xf9\xbf\x59\xa9\x8b\xc4\x95\xea\xc2\x82\x1a\xfb\xe1\xe7\x44\xa3\xa6\xfe\xf7\x40\x4b\x65\x51\x7d\x67\x64\x40\x51\xfd\x94\x7f\xbe\x40\x91\x23\x63\xef\x4c\x8b\x6a\x68\x9e\xb8\xa0\xe6\xe2\x2e\xb9\x72\x21\xe3\x5c\x4a\x3a\xf1\x3c\x54\xcd\xff\x1e\xa8\x0b\x78\x0f\x0f\xe7\x7d\x40\xdd\xfc\x98\x7e\xf0\x20\x83\x20\x17\x77\x71\xfd\xf3\xa7\xd8\xbf\x95\x65\xf1\x9d\x75\x77\x32\x12\xc6\xa0\x81\x03\x94\x2b\x04\xce\x42\xd4\xd4\xa5\x18\x55\xf2\x5b\x2e\x7f\x15\x23\xbb\x2a\xe8\x3b\x09\xc4\x2c\x44\x21\xe3\x58\x59\x90\xd7\x84\xa8\xb4\x73\xfe\x80\x59\x28\x2a\x18\x0d\xa9\x93\x73\xda\x84\x59\xc8\x53\x8c\x53\x15\x92\x9c\x5f\xa8\x90\x82\x25\xa1\xce\x4a\xb6\xd6\xfd\x60\xb0\x4b\x4d\x0b\x3e\x52\xd9\x48\x88\xbc\x3f\xb9\xba\x7d\xcd\xc1\x2f\xac\x39\x08\x70\x95\x27\xd4\x78\xcb\x0a\xb2\x4e\x6c\x30\x1b\xb7\x5b\x57\xf1\x89\x5b\x6e\x16\xf5\x9a\x8d\x8c\xcf\x88\xdd\x88\x0f\xe2\x7c\x13\x4a\xbd\xec\x43\x8f\xe4\x40\xb9\x7a\x08\x1e\xbf\xe2\x17\x1e\x3e\xd0\x98\x1d\xc9\x7f\xbc\xb0\x4e\xa4\xf4\xd1\x18\x24\x2c\xa2\xfb\x73\x50\x88\x90\xce\x62\x52\xec\x31\x5d\x59\x62\x8f\xcf\x1f\x2b\xac\xda\x3d\x79\x22\x08\xd9\xf6\x8e\xf9\x49\x39\xc5\xce\x5f\xf3\x13\x64\x3e\xd8\xa9\x07\x24\xe3\xcb\x26\x2b\x27\x89\x9b\xcf\x12\x83\x92\xad\x17\x99\x27\x61\xe7\x83\x70\xf2\xce\xe1\x4f\x10\x49\xf4\x93\x61\x61\xb2\x60\x96\x59\xec\x64\xa6\x3a\x0b\x2f\x13\x16\xce\x62\x9f\x33\x54\xf9\x0f\xd9\xd7\x6b\x96\xf5\xcf\xb6\x16\x4e\x44\xf1\x1c\x8a\x31\x3f\x1b\xee\xae\x45\xa9\x24\xce\x8b\x5a\x70\x25\x72\x98\x1d\x8a\xd7\x92\x37\x3a\xcf\x8e\x40\xf6\x92\xf7\x4c\x27\xa2\x47\x42\x52\xda\xf9\x39\x20\x9f\x27\x5d\xeb\x27\xa2\x37\xbe\x89\xe5\xfd\x20\xd2\xe1\x6b\xcb\x82\x73\x44\xfa\xce\xef\xab\xe1\x1c\xb0\x4a\x24\xdd\xf4\x27\xfd\xf1\x93\x0c\xbc\x73\x00\x83\x93\x4c\x23\x73\x20\xcb\x53\x96\x12\x64\xc2\x21\xbf\x29\xab\xe8\x1c\x08\x3f\xcf\xba\x0a\xce\x81\x7d\xca\xba\xc1\x4e\xf8\x9d\x37\xa5\x63\x9d\xf0\x12\x0f\xae\x26\x37\xe1\x92\x1d\x92\x14\x12\x73\x40\x49\xac\x7a\x20\x93\xbe\xcb\x49\x4e\x1f\x13\x6e\xc5\x5d\xb7\xac\x09\xb7\xe2\x2e\xb1\x7d\xc2\xad\xb8\xa9\xac\xc9\xa4\x57\x71\x96\x93\xd0\x84\x57\x71\xcf\xdd\x1f\xa4\xef\xb7\x16\x71\x7e\x8c\xb2\xe7\xad\x6d\x98\x67\x60\x00\xee\xe1\x17\xea\x3f\x7f\x7a\xd1\x7e\x9d\x1f\x9f\xec\x4a\x1f\x34\xcf\x8f\x09\xf6\xb2\x8f\xd4\x3c\xbf\xfb\x56\x2f\xdd\xdf\x3f\xdf\xef\x9f\x09\xbd\xf8\xed\x01\x91\x06\xc3\x2b\x8c\x48\x7e\xb9\x49\xe6\x84\xd3\x71\xaf\xc9\xed\x2c\xa0\x5a\xfd\x80\xd5\x4a\x35\x81\x88\x24\xd9\x49\x20\x61\x95\xd0\x7d\xdd\x9b\x70\x49\xee\xd5\x0b\x88\x28\x13\xe2\x09\x47\x7a\x07\x7a\x02\x0f\x84\xd1\xbd\xcb\x70\x59\x0e\x49\x84\x6b\xd2\x67\x39\x25\xcf\x08\x1a\xe1\x24\x35\xd2\x84\x13\xf3\xf7\xc0\x7d\x40\x86\x96\xd5\x74\xc2\xab\x39\x24\x71\xc7\x09\xaf\xe6\x56\xcb\xdf\x54\x85\x9d\xf0\x78\xfe\x66\xa0\x35\xc3\xe5\xd9\x81\x1b\xf3\x84\x0c\x90\x44\xe8\xe6\x09\x19\x20\x25\x2f\x1b\x66\xb8\x24\x25\xc4\x3c\xe9\xa7\xa5\xdc\x6a\xf3\x4c\x3c\x98\xd1\xa3\xbc\x7c\xe0\x49\x4f\xf6\xa1\x61\x33\x61\x55\x05\x89\x4c\x58\x19\x1f\x33\x61\x95\x34\xb1\x4c\x58\x15\x81\x37\x13\x56\x4d\xc0\xcb\x84\x55\xd4\xc4\xa0\xba\x56\xa1\xc9\x09\x6f\xeb\xaf\x4f\x77\x41\x70\x64\x7f\x41\x91\x68\x68\xe6\x10\x35\xda\xcf\x17\x84\x46\xf3\xc4\x79\x74\x7d\x0e\x32\xa1\x91\x3d\x2d\x42\x23\xf9\x01\xa1\x31\xb4\xd6\x42\x68\x14\x75\x5a\x08\x8d\xe2\x37\x08\x8d\xa8\x3e\x0a\xa1\x61\x6c\x2d\x84\x46\x16\x88\xcb\xc2\x1c\x3f\x20\xed\x2b\x9a\x69\x21\x38\x7c\xe4\xe8\xc6\xfd\x83\x2e\x85\xd8\xd1\xfc\x80\xd8\x51\xdc\x29\xac\xfa\xe1\xa7\x0f\x66\xa0\x33\x04\xcb\xda\x7b\xc1\x98\x85\xf3\xe5\x32\x31\xcf\xca\xd5\x9a\x58\xd5\xb5\x5a\xbf\xc1\xd5\x8a\x17\xc0\x1d\x3c\xf8\x12\x3f\xe1\x0f\xfe\x8d\x22\x74\x81\xcf\x5b\x91\x66\x72\x9e\x95\xab\x8d\xfe\x84\x9b\xdf\xfc\x09\x57\x6b\xc4\x86\x80\xa4\x22\xcf\x13\x4e\xe4\xc1\x0e\x50\xf3\x44\x74\x71\x8e\xc6\x5a\x88\x4c\x49\xc9\x7a\x26\x5c\x59\x87\x61\xfe\xa2\x1a\x9f\x7c\xc2\x27\xb4\x52\x4d\xb1\x5b\xf3\x85\xe1\x5d\xa2\xec\x7c\x13\x58\x87\xa8\xe4\x3c\xc2\x3f\x7f\x74\x21\x9e\xb8\x65\x75\xa9\x46\x27\x2e\x59\xd2\x71\xcd\xb9\x12\x63\xe9\x27\xb3\xb9\xe8\x27\xb3\x3a\xe8\x67\x43\x5f\xfe\x18\x91\xcf\x5d\x3f\x51\x5a\xcb\x7d\xdd\xff\xfc\x31\x31\x9d\x07\xea\xf2\x27\xfd\xfc\x24\xf0\xe4\xae\xe7\x3f\x7f\x54\xd1\x69\xce\xc0\xaa\x5c\xfa\x89\x6f\xf5\x72\x60\xed\x17\xfd\xfc\xbe\xdd\x37\x8e\x89\x9b\x93\xea\x6c\x4f\xdc\x50\x14\xd5\x3a\x71\x41\x31\x49\xc7\xf5\x44\x96\xd3\x89\xcb\x89\x4a\x29\x4e\xdc\x4d\x54\xe2\x6f\xce\x8f\x26\x49\x49\x3c\x67\xf9\x7a\x16\x82\xcd\x82\x9e\x35\xc9\x0f\xef\x95\x93\x7f\x42\x3a\x57\xfe\xa4\x39\xe1\xda\xa4\xd3\x3b\xdf\xf4\xf5\xac\x69\xbc\x19\x80\xf6\xdb\xd8\x16\xbf\x8d\x1c\xb9\x04\x56\x98\xa8\x1c\xde\x77\x66\xd9\x30\x23\x2e\xd6\xc7\xb6\xe6\x86\xc9\xe2\x88\x61\xdf\x04\xc2\x44\xfa\x9b\x10\x77\x28\x54\x3c\x0e\x98\x63\xd3\xce\xfa\x18\x8f\x03\x79\x26\x15\xd1\xf5\x3d\x80\x0c\xb3\x75\x72\xf1\x60\x29\xff\xb6\xad\xca\xdf\x03\xfa\x5a\xe6\xbf\x08\x43\x8a\x07\xeb\xf2\xe7\xed\x44\x19\x0f\x14\x50\xff\x24\xd3\xb6\x1e\xa0\x86\x73\x3c\x76\x76\xe2\x78\xa0\x1c\x6e\x48\x5d\x6f\xc4\x40\x53\x65\xd9\x7d\xa0\x68\x50\x90\xa7\x7b\x3c\x58\xa1\xa5\xed\xac\x0a\xf1\x48\x9d\x0f\xba\x3e\x99\x5c\xe8\xd8\xa3\xac\x3c\xf5\xdb\x79\x3a\x1e\xe5\x58\x6f\xec\x4f\x0a\x78\x55\xde\x79\x15\xe2\x81\x7c\xd2\x1f\x88\x36\x28\x0a\x23\x0f\x92\x80\x55\xb7\x70\xb5\x01\x5e\x69\x5c\xde\x69\x34\xe3\x51\x5f\x7a\x16\xf5\x0d\x70\x24\xf9\x0a\x6d\xc7\x65\xc5\xa3\xd1\xe9\x6f\xdf\x9c\xe2\xc1\x8c\x26\xf2\xf2\x8b\x47\x07\x67\x96\xe3\x60\x3c\x3a\x0c\x40\xf2\x90\x8b\xc7\xa0\x95\x7d\xa7\xa5\x88\xc7\x80\x41\x50\xde\x69\xf1\x18\x4c\xfe\x14\xb4\x2f\x08\x1e\x0d\xf2\x67\x8b\xc7\xa2\xac\xbb\x5e\x5b\x3c\x4e\xe6\x7c\xde\x54\x31\x1e\xf0\x3f\x0f\x72\x0d\x8b\xc7\x85\x6c\x4a\x69\x17\x93\x88\x07\x9c\x32\x43\xda\x81\x14\xf1\x80\x51\x39\xc8\x49\x22\x1e\xcf\xda\xfd\xb1\xfb\x78\x58\x8a\x63\x73\xab\x78\xbc\x98\x87\x4c\x8b\xdf\x03\x0e\xab\x6d\x78\x99\x4a\x6a\xb3\xe2\x78\xcc\x42\x98\x6e\x74\x08\x2c\xbf\x2a\x8d\x7d\x0c\x91\x92\xca\x8e\xd3\x8f\x21\x82\x49\x4a\x67\x1f\x43\x64\x0a\xaf\x2d\x48\x7f\x0f\x2e\xbe\xd1\xf6\x03\xb8\x46\x4a\xdb\x1b\x03\x6a\xbf\x05\xe9\x87\x63\x88\xf0\xce\x93\x1a\x32\x86\x04\xe7\x85\xda\x17\x5d\x8e\x81\xc5\xa7\xa4\x37\x8c\x01\xb5\xa4\x82\x14\x8b\x31\xa4\x9b\x0f\xf2\x1e\x85\x65\x02\x5a\x5e\x76\x99\xef\xc1\xcb\xe2\x6c\x7b\xa6\x65\x4d\xac\xed\x37\x6a\xe6\x83\x0d\xb1\x80\x1c\xa3\x9f\xe4\xb6\x47\x41\x5e\xc4\xd0\xf2\xd8\x9f\x20\x3d\xde\xf7\x60\x03\xa8\xe3\x7a\x58\x77\xfe\xe3\x18\x18\x43\xdb\x4a\xdc\x8b\x43\x00\x61\xeb\xfa\x7d\x33\x6b\x48\xd9\xc4\x26\x3c\x0c\x1d\x28\x9b\x1c\x85\x85\x0d\x25\xef\x4f\x68\x9e\x6f\x25\x6f\x70\x3c\xb0\xac\xb4\x9d\xa9\x33\x86\x67\xf0\x8d\xe2\x07\x37\x1f\xec\x99\xd3\xc6\xdb\x76\x9a\xe8\x18\x1e\x20\x61\xdb\xc1\xf4\x31\xd0\x64\xd7\x76\x6a\x8f\x18\x5e\x56\xe6\x28\x02\xe9\x9b\x08\x1f\x4d\x0c\xac\x28\xb4\xd2\xf4\xa0\x71\x71\x9b\x04\x85\x09\xd7\xcc\x56\x16\x35\x8e\x31\x10\x5f\xf6\x3d\x26\x46\xd4\xcf\x0d\x43\xb4\x20\x26\x76\x5a\xfd\x00\x19\x44\x5a\xdd\xf4\x24\x56\xa6\x9f\xdc\xfa\xd8\x18\x2b\x9c\x4a\x5b\xdd\xa7\x34\x22\x91\x4a\x68\xbb\xaa\x6f\x8c\x4c\x4b\xd2\x76\xd2\xfb\x18\x07\xcc\xe8\x6d\x17\xb2\x8c\x91\xa1\x64\x6d\xb3\xb0\x18\xaf\xcc\xe0\xe6\x8d\x1e\x91\x1e\xe2\x6d\x17\xf9\x88\x91\xee\x8f\x32\x42\xc4\x08\xdf\xc5\xef\xc1\xda\x86\xb8\x8e\xed\x76\xd8\x8e\xf1\x65\x4c\xc6\xd6\x5b\xc5\x38\x91\x70\xf4\xd8\xa9\x2f\x63\x62\xd1\xef\xb6\x0b\x8d\xc6\x14\x88\x51\xdb\x65\xee\x7b\xc0\x6d\xd8\x47\x3f\x85\xc9\x34\xca\x1b\x1e\x29\xc1\x13\xac\xed\x50\x8e\x98\x58\x7f\x28\xef\xbc\x8d\x31\x25\xa6\xae\xdf\x91\xd6\xdf\x83\xf5\xc9\x5f\x58\x99\xbe\xb7\x39\xa7\xaa\x11\x9f\x95\xc9\xd9\x03\x9c\x7c\x10\xf5\x60\xf2\xc1\x5e\x57\x22\x5d\xd8\x45\xef\x62\x4a\x93\x9a\x95\xb8\x3f\x59\xcc\xa8\x75\x3f\xb8\xf8\x60\xf7\xc1\xa2\x29\xad\xed\x2d\x49\x99\x6e\x74\x4d\xb0\xc9\x1c\x65\x17\x1c\x89\xa9\x30\xf4\x72\xdb\x34\x62\x42\x55\x88\xd0\x76\x22\xf9\x98\x0a\xe1\xbb\xa3\xb3\x63\x62\x96\xf7\xd6\x05\xdf\x8a\x5b\x61\xdb\x79\xa4\xbe\x07\x74\x28\x1d\x7a\x83\xb4\xa5\x6b\xd3\x1a\x82\xa5\x5a\x17\xc4\x90\x7f\x34\xb4\x9d\xcb\x30\xa6\x06\xc6\x5a\x87\x66\xca\x9c\x8f\x75\xc7\x11\x7f\x0f\x56\xfe\xc4\x3d\xd3\xb6\x0a\x81\xef\xf3\x97\x90\xda\xec\x13\x1e\x34\x2c\x13\x8d\x75\x41\xbd\x13\x45\x77\x96\xa3\x98\x90\x8a\xe9\x7b\xb0\xfb\x38\x07\x57\xbb\x45\x80\x74\x43\xf5\xd4\x76\x62\x92\x98\x6e\xa8\xc0\x72\xd4\x6a\x6f\xec\x5c\xda\x21\xf3\x31\x3d\xa8\xf4\xdd\x76\x74\xe8\xf7\x00\x31\xf3\x5b\xb1\x14\xd3\x93\xf9\x86\x00\xf4\x10\xa5\x76\xce\x9e\x98\x1e\xca\x26\x43\x07\xe1\x21\x2d\x19\xda\x86\x09\xf7\x9d\xb6\x9d\x11\x63\x3e\x32\x0f\xd3\xc6\xea\x7c\xd0\x17\x66\x7b\xcf\xc4\x1c\xa0\x28\xea\xdb\x1c\x1a\x73\x60\xc9\xd6\x1d\x01\x13\x73\xc0\x5a\xfa\x36\x8c\xc7\x8c\xc2\xa1\xdf\x25\x66\xcd\x34\x27\xe8\x08\xfb\xf6\x93\x8e\x99\xb5\xbb\xc4\x36\x72\x65\x7d\xc7\xad\xb3\x8d\x99\x19\xb6\xfb\xd6\x65\xc6\xcc\x14\x74\x2a\xf9\x1e\x73\x67\x9a\xc7\x5d\xdf\x22\x66\x5e\x93\xfb\xb6\x85\xc7\x7c\xb1\xd4\xf4\x36\x3e\xc4\x7c\xb1\xec\xcd\xb6\x03\xc4\x4c\xff\xed\x2e\xda\x92\x1f\x24\x50\x4b\xdb\x49\x2b\xe6\xf7\x58\x36\x8f\xae\x07\x58\x6c\xf0\x03\x08\xcb\x7d\xe7\x86\x8c\xf9\x65\x5a\xd0\xb0\x71\x2e\xbf\x2c\x8e\x17\x34\xf5\xb9\xac\x65\x9b\x91\x94\x83\x75\xb8\x77\x7a\xb0\x58\x0e\x26\xce\xda\x39\xd3\x62\x09\xf0\x02\xef\x3b\xff\x57\x2c\x01\x09\xc4\xfb\x4e\xd5\x18\x4b\xb8\xb9\xfc\xa1\x4f\x58\x31\x76\xa7\x4d\x8c\x05\x65\xd6\xbf\x07\xbb\x8f\xc8\xc0\xef\x9d\xbf\x20\x16\x16\xa7\xea\x12\xb2\x4b\x66\x41\x99\x7d\xb3\x88\x25\x33\x39\xc4\x76\xba\x8d\xa5\x1c\xeb\x8d\xfd\x09\xea\xb1\x84\xbe\x7d\x2f\x62\x61\x1e\xfc\x2c\xb9\xbc\x34\x0a\xd9\xc2\x97\xd2\xb8\x96\x9d\x42\x20\x96\x06\xb1\xa2\xef\xe0\xfd\x58\x98\x53\x6b\xd7\x81\x8d\x65\x50\x98\xd9\x37\x94\xef\x01\x15\xc6\x5b\xfa\x2d\x2b\xed\xc5\xbe\x17\xc7\x82\x60\xde\x90\x76\x4c\x7a\x2c\x27\xd3\x36\xed\x6c\xac\xdf\x03\x7e\xb2\x74\x13\xb1\x9c\x4c\x7b\xb8\xd3\xb1\xc6\xc2\xe0\xa1\xae\x63\x5c\x6e\x90\xd7\xbe\x23\x04\x63\xb9\x41\x70\xfa\x56\x18\xc7\xb2\xa4\x88\x6d\xf8\x8c\xe5\x25\x8c\x93\x56\xff\x12\x4d\x25\x96\x97\x17\xc2\x4b\x4f\x9a\xe9\xcb\x12\xe3\x5b\xd1\x10\xcb\x7b\xaf\x37\xf6\xd4\x5f\x66\x9a\xdc\xda\x9c\x58\xde\x77\x3d\xd8\x9d\x4e\xe6\x62\xde\xce\xf0\xb1\xe0\xfa\xf9\x3d\x88\x7f\xc1\xbe\xca\x24\x38\xb7\xbe\x24\x96\x09\xd9\xa7\x6f\xbd\x62\x2c\x93\x25\xe2\xb6\x96\x2a\xd6\xe3\xe0\x00\x9b\x1a\xd5\x03\x76\xcf\xbe\xf5\x6d\xb1\x1e\xcc\x54\xb3\x5d\xf7\x62\x3d\x50\x81\xb8\x6f\x4f\x8b\x58\x23\xd0\x3e\xed\xf4\xcb\xb1\xc6\xca\x6b\xe5\xbe\x8f\xd5\xd8\xd8\x47\xd7\x27\xac\xb2\xb4\xbd\x1e\x63\x4d\x79\xd5\x0c\xde\x7d\xb0\x32\x5d\xdf\x2a\xb9\x58\x51\xba\x21\xf4\xed\x25\x13\x6b\xe5\x65\x73\xbb\x0b\xc5\x8a\x54\xd7\xa1\xef\xcc\x8b\xb1\x76\xa6\x65\xcf\x5a\xdc\x4a\xd8\xb5\xed\xd7\xb1\x0e\x6a\xdc\xaa\x1f\x90\xfa\xe4\xb2\xfb\x80\xda\x3f\xe4\x9d\x0e\x3b\xd6\xb1\x3a\x15\x80\x4e\x9e\xd8\x2c\x00\x2d\x7d\xda\x2e\x97\x14\xeb\x89\x3a\x9b\x7d\xa7\x49\x8e\x75\x05\xfc\x6f\x9b\x5b\xac\x27\xf9\xd9\xa1\x37\x18\xdb\xd1\xf2\xc6\xea\x7a\xb3\x0a\xe9\x2e\x7a\x17\xeb\x4d\x43\x52\xf4\x03\x4e\x6c\x47\x7b\xc4\xfa\x92\x17\x1d\xda\x86\x85\xa2\x65\x5f\x59\x2a\xed\x5d\x5d\x32\x7a\x9d\x08\x4a\xea\xbb\x5c\x5b\x6c\xc7\x64\xfd\xbf\x7d\x54\x5a\x60\xbe\xcc\xad\xf0\x8f\x2d\x24\x56\x7e\xd8\xac\xb8\x51\x44\xea\xbb\xd6\xf2\xf7\xe0\xe2\x83\x63\x3f\x20\x2f\xaa\x9b\x3e\x35\x54\x04\x0c\xbd\xee\xb3\xf3\x5d\x80\xf8\x60\x77\x5a\x99\x34\xb3\x6e\x4c\x6e\x15\x9e\x5f\x7d\x2b\x9b\x62\x63\x95\x9b\x5e\xb7\x2c\xd8\x58\x96\x43\x85\x06\x62\xab\xa8\x9b\xd5\xb7\x1b\x48\x6c\x8d\x6c\x62\xeb\x82\x62\x5b\xb9\xd0\x77\x85\xf6\xd8\x90\x74\xfb\x7b\xb0\x80\xdc\x46\xe7\xb0\x5b\xfe\x6b\xc8\x5f\xf4\x09\xba\x1b\x40\x67\xe7\x4c\xb7\x30\xd7\x2e\xd6\x7c\xd8\x8a\xaf\xef\x01\x86\xdd\xf9\xbf\x62\x63\x28\xa0\x6c\x0c\xb1\xdd\x89\x71\xd8\x82\xc7\x0d\x29\x5e\x81\xb8\xb1\xc1\x4b\x38\x1e\xbb\xb0\x59\x6c\x0f\x52\x19\xcb\xd1\x2d\xb6\x37\xac\x07\xfb\x93\xc9\xeb\xf9\x56\x32\xc6\x4e\xed\x4f\xdf\x19\x41\x62\x3f\x50\x81\xb4\xb7\xbd\x96\x8f\xec\x02\x84\x1b\xa6\x3d\xb2\x18\xca\xae\xf5\x1f\x7b\x64\x86\xba\xb6\x6f\x24\x1d\x15\x40\x83\x52\x80\xc7\x9e\x49\x61\x76\xad\xf8\xd8\x59\xe1\xaf\xb7\x7d\x45\xe9\x85\x45\x7d\x25\x64\xf7\xfa\x10\x1e\x1b\x84\x1d\xc5\x03\xbe\x07\xfb\x93\x95\x6a\x6c\xa7\xb9\xff\x1e\xb0\x32\xdc\x46\xba\x3e\x56\xa5\xe0\xa0\x4f\x7a\x63\x32\xcf\xa4\x07\xac\xa4\xb5\x71\xac\xaf\x83\x2c\x79\xb8\x9f\xbb\xa0\xb5\xde\xc8\x2c\xdf\xb1\x79\x60\x3f\x57\xb1\x60\x2d\xff\x64\x1d\x94\x9d\x87\x3b\xf6\x93\x1c\x7f\xa7\xca\x8e\xfd\xe4\x31\x95\xc4\xdc\x17\x47\xeb\x5b\x36\xe9\x0c\x1d\xed\x12\x6e\x3b\xa3\x13\xbb\xe4\xe1\x8e\xa3\xde\xb6\x76\x34\xf6\x87\x7b\xbd\x73\x4f\xc6\xfe\xac\x79\x6d\xd1\xa4\x3f\xab\x36\xe8\xa6\xc0\xfd\x0d\x0b\x1c\x55\x0f\x38\x48\xd7\x03\x66\xe1\xdf\x4a\xe8\xd8\xdf\xce\xb5\x6d\xc6\xda\xdf\x97\x9d\x0e\x75\x8a\x84\xc1\xbb\xd2\x7b\xec\x73\x55\xc5\x1c\xed\x2f\xd8\x57\x5f\xc4\x67\xa7\xb0\x8a\x23\x12\xa7\x77\xb2\x9f\x38\xe2\xb5\xf2\xfa\x2f\xf8\x8f\x3c\xf8\xc6\xd6\xb9\x8c\x72\x33\x1b\xcb\xde\xb2\x55\xe0\x27\xed\x52\xd9\x91\x95\x2e\x42\xdf\x15\x7f\x22\x6b\x2c\x84\xbe\xa3\xc7\xe3\x68\x85\x6f\x6c\xea\xcc\x8c\x97\xa1\x4b\x20\x1f\xe7\x0a\x49\xda\x27\x78\x3c\xb4\x0f\x35\xcd\xf4\x79\x18\x0a\x13\x77\x1f\xf4\x54\x1d\xdb\xc1\x28\x8e\x97\x41\x1e\x69\x93\xeb\xf1\x66\x7a\x40\x6f\x12\x37\xde\xbe\xe2\x58\x77\xa7\x74\xb5\x1b\xdb\xc3\x24\xd2\x6f\x2d\x8c\xed\x88\x11\xc7\xbb\xd2\x8c\x6c\x75\xc8\x98\x37\x23\x5d\x9b\x1e\x3c\xed\xdf\x1e\x9c\x47\xe0\x28\x5b\xc2\x3a\x8f\x48\x6f\xf0\x8d\x6d\xe7\xd1\x57\x18\x45\xde\x0f\xe6\xf2\xbc\x5f\xf0\x38\xc3\x58\xfe\xe2\xbb\x8f\x78\x51\x78\xde\x64\xf2\x64\xa9\xe9\x21\x0d\xe4\x99\x19\x17\xb8\x4b\xe3\xc4\xb3\x40\x8e\x1b\xbb\x6c\x4b\x3c\xeb\x72\x25\xdb\xe2\xd2\x59\xe1\x70\x75\xec\x48\xf5\x78\xd6\x6b\xbd\xb1\x3b\x1d\x2f\x5d\x14\x36\x79\xba\x50\xc7\x21\xa8\x78\x45\xbc\x1a\x19\xfe\xce\x20\xfe\x3d\x20\x21\xdd\x37\xeb\xab\x2d\x9f\x9c\xe1\x37\xa8\xc4\xdd\x02\xf8\xd5\x10\x24\x72\xec\xbc\x67\xf1\x42\xc2\xff\x4f\xae\xcd\x7a\x40\x4d\xe8\x3e\x8f\x17\x12\xfa\xc7\x43\x6b\xb9\x5a\xa7\xc2\x64\x1f\xe1\x0b\x29\xf5\x43\xde\x55\x1b\xbf\x07\xbc\xf4\x6d\xc4\xbd\x5a\x67\xe1\x8e\xa8\x37\x06\x59\xcf\xa6\x68\x17\xb2\xcd\xc7\x63\x57\x96\xfc\x1e\xc0\x51\x27\x78\xf9\x17\xed\x76\x4d\x7d\xa0\xe8\xf3\xb1\x13\xe3\x7e\x0f\x26\xc5\x0a\x4d\x8c\xce\x96\x3b\x23\xe8\xf7\xa0\xb3\xd0\xa2\xde\xa0\xe7\xa1\x8c\x06\x17\x72\x6a\xc7\x43\xb4\xe5\x62\x42\xeb\x63\xe7\x79\xfa\x1e\x9c\x8c\x12\x5f\x50\x7f\x0a\xad\xba\x7d\x8b\x59\x6f\x6c\xd4\xa5\x6f\x92\xff\x16\x9a\xe9\x44\x37\x5f\xd4\xb8\x09\x79\xc7\x35\xc4\xc9\xec\xe1\x45\xba\xe3\xc9\xcc\xdd\xd2\x91\xcc\x4e\x67\x86\x6d\x54\xf9\x1e\x74\xbc\xd0\xf4\xfb\xa4\xa2\x58\x5f\x2c\xd1\xb6\xfb\x41\xa7\xd2\x5b\x9f\xc4\xfb\xdf\x54\xeb\xb3\xd3\xb8\xbf\x6d\x55\xdf\x03\x52\xa0\x7d\xd0\x27\x72\x3e\x7f\xd3\x88\xfb\x01\xcd\xbc\xd2\xbb\xcc\x4e\x4b\xa8\xee\xf7\xb3\x57\xee\x5b\xd4\x1b\x10\x07\x53\x4f\xea\x03\xee\x51\xcd\x33\xff\xc4\x90\xd6\x92\x7e\x33\x9f\xa4\x24\xcc\xd9\x07\xd7\x1a\x35\xc6\xb9\xa6\xa5\x4f\xe0\xf0\x9c\xb6\x3b\x4a\x9c\xfd\xe2\x3c\xab\x16\x7f\xf1\xbc\x45\xad\x15\x31\x19\xd2\x78\x4f\xe4\xf5\xfd\x51\xd0\x4d\x24\xf6\x6d\xdb\x50\x1a\x27\xf3\xf6\x66\xd9\x72\x66\x5f\xf1\x13\xd5\x6f\x60\x9e\xdb\x9c\xf7\x3d\x00\xf3\xf3\x0b\x48\x11\x98\x24\xa3\xcd\x41\xaf\x19\x29\x01\xe7\x58\x86\xb0\x8d\xd3\x73\x1c\x74\xff\x11\xf4\xc6\xda\x78\x4d\x9c\x19\x61\x7b\xfa\x77\x57\xc0\xf1\xbf\x60\x5b\x13\xf9\x60\xbf\xde\xf7\x04\xc7\x72\x48\xd8\x02\xce\x1c\x74\x40\x90\x4e\x6c\x0e\x1a\x90\x75\x2e\xe7\x80\x51\x23\xe9\xee\xbc\x7c\x85\xf2\xe1\x35\x3c\xf4\x1b\xab\x9a\x21\x13\x2d\xec\xc8\xa1\x38\xc7\x4a\xe7\x5f\xff\xf7\xee\x8b\xff\x3a\xff\xe3\xff\x7d\xf1\xfa\xf7\xc5\xf1\xcf\x9f\xf5\x2f\xd4\xca\xfb\x79\x79\xf4\xbc\xa1\xec\xdc\x6e\xf8\x2e\xc9\xfb\xdf\x0f\xc2\x87\x3e\xf9\xf0\x62\xff\x0b\x8f\xaf\xa6\x96\xdb\x2d\xcc\x88\xb8\x5b\x6e\x0f\x8f\xf4\x9b\xdb\x7a\x7b\x1c\x9f\x34\xbc\xfe\xa5\xc9\xed\xd8\x2d\xcf\x70\x0b\x65\xe8\xdd\xf2\xba\x37\xe6\xe6\x4a\x6a\x71\x6f\x93\x09\xea\x77\xcb\x74\x6f\xc8\xa3\xb0\xed\xe7\x47\xf8\x04\x91\xfd\xef\x60\xb2\xf4\x3d\xef\x58\xb5\xd6\xc8\x68\x42\xb9\x8d\x1f\xd1\xb3\x88\xc0\x6b\x3b\xa7\x7e\x04\xcc\x6d\xe8\x53\x75\x78\x8e\x74\x08\xb2\xe9\x60\xd1\x5a\xb5\x54\xb7\x80\xf2\x6c\x58\xa4\xa0\x39\x26\x7a\x26\x2b\xdb\xff\x91\xc2\xe3\xb6\x97\x6d\x51\x6d\x53\x6d\x4c\x18\xd5\xb5\xc3\x29\x9d\x6a\x83\xfb\x4f\x51\xae\xfc\x23\x7d\xf4\x64\xff\xbb\x2a\x0f\xb9\xcd\x73\x41\xe5\xc2\x43\x51\x13\x47\x1a\x5e\x1b\xb4\x2c\x8a\x5a\x3a\xd2\x87\x45\xfb\xdf\x6f\x09\x87\xbf\x3a\x6f\x37\x81\x21\xc9\x19\xff\x48\x97\x7b\x84\xa4\x2c\x3f\xf0\x23\xdd\xee\x11\xf1\x64\xf2\xf5\x3c\x60\x2a\xd8\xff\x82\x3d\xc9\x75\xfe\x80\xae\x61\xff\x7b\xb3\xad\xa9\xed\x75\x1b\x67\xb2\xbd\x3a\x0e\x5c\x5b\xf7\xbf\x05\xc3\x0d\x35\x69\xe3\x50\xe7\x3d\x28\x94\xe6\x40\x9d\xf7\xf5\x2f\xcc\xc1\xaa\xf9\x79\xa0\x38\xfa\xfe\x97\x13\xd9\x5e\x64\x07\xaa\x98\xef\x7f\x39\x91\xed\x05\x14\xde\xb4\xdb\xc2\xcb\x9a\xef\x8a\xf8\x88\x3e\xe7\xf1\x80\xbb\xf9\xf6\xea\x89\x47\x8a\x6a\x81\xbf\xc9\xf6\x54\x8c\x47\x1a\x6e\x39\xe1\x66\xb0\x5b\x72\x53\x0b\xbc\xa8\xaa\xea\x20\xc5\xa3\x65\xb5\xb5\xf1\xcf\x9f\x91\xdc\xd4\x3d\x89\x8e\xa6\xed\x79\x16\x43\xd9\x7b\x16\x43\xc9\xf8\xaa\xa8\xa9\xba\xe9\xfc\xe7\xcf\x68\xdd\x4d\x97\x9b\x5e\x7c\x15\x76\x53\xd5\x58\x01\xe9\x21\x8b\x3b\xac\xa7\x9b\xae\x7f\xfe\x74\x45\x72\xc6\xd0\xfc\xd5\x37\xf9\xae\x08\xcc\x18\x9a\xbf\x6a\xf8\x6a\x9f\xea\x08\xc1\x77\xff\xcb\x18\x6c\xb5\x78\xee\xf0\x11\x8e\xca\xa9\x1e\xc3\xe8\x6e\x1b\x6c\xd3\x60\xb7\x80\x18\x3e\xba\xd8\x95\xf7\x2a\xc6\xb8\x49\x48\x8c\x91\x6e\x4e\xdb\xa5\x30\xc6\xd8\xdc\x86\xc8\x11\xb7\x5c\x6e\x21\xf3\xdd\x2d\x55\x43\x45\x8a\xb4\xe9\xa7\xad\xba\x0d\x55\x59\x83\x5a\x4e\xb7\x5c\x5f\x7f\x69\xb7\x34\xe1\x53\x84\x78\x12\xe5\x1c\x1f\x63\x73\x7f\xcc\xce\x50\x0e\x8d\xd5\xfd\x1d\x52\x7d\x6d\x1f\xba\x18\xbb\x67\x08\xc5\x4b\x91\x63\x75\x84\x0a\x71\xff\x0b\xd7\x70\xcd\xa3\x7b\x86\xd0\xea\x97\xbc\x49\x63\x8c\x8f\xdb\x20\x9b\x94\x26\x14\x48\x87\xe0\x0b\xba\xfb\x7d\xb7\x37\x3a\x45\x9d\x88\x14\xcf\x7f\xfe\x28\x42\x2b\xa6\xf1\xa8\x05\x41\x6a\x51\x55\xe0\xa2\x29\x5c\x4c\x70\xa4\x89\x2a\x23\x16\xd3\xd9\xdc\xf6\x21\x5c\xf0\x60\xe7\xe5\xa6\x07\x4d\xea\xf1\x12\xc2\x81\x0e\x86\xaa\x1c\xbf\x31\x5d\xaf\xda\x60\x18\xad\xca\x61\x1b\xb3\x0f\x45\x46\x29\x0c\x95\x97\x8f\xd9\xc7\x36\x77\xf8\x82\xe9\x28\x65\x11\xf6\x88\x9b\x76\x57\xe6\xd4\x98\x45\xd7\x63\x1e\x0c\xc7\xda\xdc\x38\xe6\x71\xab\xed\xfa\x70\x58\x81\x51\x31\x5f\xda\xb5\x8c\xab\xfa\x21\xef\xbe\x98\x1f\xcf\x11\x2c\xd2\xe5\xdf\x63\x7e\x05\x92\x0c\x39\xe7\x50\x56\x9b\x98\x67\x71\x1b\x84\x0c\x05\x89\xc7\x72\xa8\xcf\x82\xdc\xf2\x79\xbb\x85\xc5\x52\xb5\x71\xa5\xbe\xdf\xb1\xde\x44\x3f\x96\xa6\xc5\x95\x0f\x5a\x5d\x19\x69\x63\xe9\x6e\xfa\xa0\xd3\x15\x92\x18\x61\x71\xdd\xff\x16\x74\xb8\xa7\x58\xbc\x34\x16\x53\xaf\xca\x36\x1e\x51\x86\x7c\xff\x8b\xc1\xb4\x35\xd5\xb3\xaf\x07\x9a\xb4\xe8\x2a\x06\x13\x2b\x54\x39\x55\x89\xba\x23\xaa\x90\xef\x7f\x1f\x90\xb9\x3d\xc7\x5a\xb5\xa3\x15\x17\xaa\xa8\xd0\xe5\x58\x7d\x7e\x51\x37\xf9\xc3\xad\x3d\xc9\xe6\xf3\xdb\x1a\x80\xb5\x13\x16\x44\xd4\x1a\xd8\xff\x42\x92\x53\x72\xd6\x38\xa6\x8e\x1b\x32\x7b\x7f\x6d\x1b\xc8\x97\x8f\xdb\x05\x1f\xc4\xaf\x89\x92\x2b\xe5\xd4\xff\x9d\xe8\x1a\x91\xfa\x70\xff\x5b\x58\x15\x78\xaf\xfd\x32\x31\x41\xde\xc0\x8f\xb6\xee\x05\xbe\x5d\x70\x79\x91\x90\x20\xa9\xc0\x77\x7c\x25\xdd\xc6\x97\x8e\xfc\xaa\xe2\x1b\x5f\x1f\xac\xf7\xa6\xd1\x61\xbb\x2d\x46\x44\x96\xed\x7f\xcb\x3f\x7f\xb2\x12\x4f\x46\x44\x77\xed\x7f\xe3\x3f\x7f\x72\xd9\xfe\xdd\x71\x5e\x53\x4d\x4c\xcc\xbb\x65\x80\x38\x1f\x7f\xf5\xc4\xdf\x80\xa7\x08\xfb\xce\xfe\xb7\xfc\x86\x99\xa4\x43\x98\x92\x8e\x4f\x9a\x91\xff\x7b\x3a\x04\xe6\x74\x7c\x60\xde\xae\x21\xdf\xcf\xae\x96\x10\x7e\x68\x5a\x3a\xb4\xa8\x74\x7c\x8b\xaa\x5b\x66\x48\x87\xd0\x2e\xd1\x52\x54\x05\x8a\x74\x84\x9f\xfe\x06\xe9\xff\xd8\x6d\x29\xa9\x0d\x48\x12\x15\x08\x9c\x8e\x1c\xd4\x36\x10\x8e\xa0\x79\x0c\xcf\xe3\xe3\xa7\x4d\xa5\xbe\xd3\x31\x86\x9b\x90\x4c\x53\x8e\xe8\xe9\x18\x97\xdb\xee\x7f\xfe\xd4\x2c\x60\x88\x58\xa7\xe3\x23\xd6\xdb\x71\xe6\x48\xbe\xdd\x24\xdc\x13\x94\x01\x3a\x1d\xb3\xb9\xe5\x04\x47\xd6\x47\xd3\xdd\x4d\x74\xb7\xf6\x3e\x59\x30\x48\x01\x7e\x72\x55\x99\x77\x53\x98\x6e\xc3\xf5\xa2\x2a\xaf\x7f\x0a\x3a\x30\x29\x4c\x7e\xb7\xa9\x52\x8a\x92\xe4\x52\x84\x66\xfa\x50\x50\x57\x8a\xf1\x74\xdb\xfc\x48\xee\x3e\xd6\x29\x26\xad\x2c\x22\x7d\x57\x0d\x6a\x92\xbc\x99\xe2\x27\x50\x75\x45\x61\xa6\x58\x6e\x37\x81\x50\x2b\xc7\x7e\x8a\xdd\x13\x81\xda\xea\x50\xbd\xcd\x64\xe6\x9b\x22\x7c\x91\x0e\x23\x29\xf4\xb9\xfb\x5f\x48\xee\xb9\x6b\x01\x67\x76\x5b\xc7\x2c\x37\xbc\xe2\xe5\x05\x5c\x6b\x2a\x5a\xc1\xe3\x2e\x41\xfb\x0f\x05\xee\x27\x5f\xab\x12\xaf\x55\x41\x57\xa4\x94\x24\xd6\xa7\x04\x87\xd3\xa0\xf2\x2c\x29\x85\xd3\x6d\xa8\x63\xa9\xf2\x15\xc9\xd7\xa7\x94\x70\xef\x0f\x2a\xa8\x90\x52\xec\x6e\x1b\x68\xdb\x7c\x2f\xa5\xe8\xf1\x10\x30\x12\x94\xb1\x3e\x25\x11\xd0\x94\x70\x36\x82\xf2\x91\xa7\x94\xfc\x5d\xe6\x77\xc2\x95\x94\x93\xdb\x2a\xdb\xb4\x86\x7c\xb9\xed\x46\x9b\xb6\x2f\x65\xaf\xa1\xb0\xcf\xac\x3e\x4b\x71\x1b\xfb\xdc\xdc\x28\xe1\xde\xb7\xff\x85\xa0\xb0\x6f\xc5\xc9\x37\xc0\x94\x3a\x84\x99\xa1\x95\x77\xaf\xe0\x43\x88\x56\x0d\x30\xc9\x09\x09\xa2\x53\xab\x87\x3a\x34\x3a\xa4\xf3\xe3\xa5\xca\x34\x90\xd2\xa3\xf3\x98\xa0\x8a\x0c\x2a\x9a\x98\x8a\x94\x17\xa9\x30\x83\xae\x92\xe1\x25\xd4\xa2\xdd\xff\xd2\xaf\x70\xdf\x37\xe9\x41\xb2\xff\x2d\xd4\x48\xd5\xdd\x16\x93\xda\xe0\x65\x34\x94\xf5\x22\xbf\x71\xaa\x0d\xdb\x9a\x95\x0a\x39\xc3\xfc\xba\xff\x0d\x6c\x8b\xbb\xad\x79\xbc\xf6\x89\xde\x41\xb9\x39\x32\x52\x1d\xac\x7f\xbf\x03\x23\xf7\xec\xef\xf7\xe5\x26\x86\xe3\x2c\xe2\x90\xa7\x36\x3c\x4f\xd8\xd2\x83\xf2\x9a\x64\x84\x4e\xee\x7f\x99\x75\x72\x5f\x2b\x33\xa2\x26\xf7\xbf\xf0\x08\x52\xfc\x45\x9e\x97\xfb\xbc\x90\xd2\x55\x82\x5c\x9e\xd2\xdf\xe4\x79\x07\xb6\x95\xdd\xf6\x6a\x75\x70\x72\xcf\x92\x7a\x8b\xf9\x54\x39\x0e\x02\x65\x2b\x3b\x8a\xef\xa3\x05\xec\x22\x06\xf1\x8f\x72\x94\xa0\x36\x14\x42\x0e\x2a\x50\x5d\x8e\x9e\xd4\xf6\x5d\x18\x62\x50\x5d\xe6\x72\x0c\xf7\x39\xe8\x58\xbe\xc5\xec\x72\x8c\xa9\xb6\x93\x4b\xc8\x6a\x3b\xdd\x86\xa4\x0d\x2e\xba\x55\x8e\xeb\x74\xdb\xf2\x4d\xd7\x5c\xee\xa1\xb6\xfb\xfc\x96\xee\xa6\xe7\x56\xd3\x43\x68\x6e\x56\x5c\x82\x48\x55\x09\x1f\xa9\xb2\x80\x51\xc2\x71\xbb\x09\xc6\x9c\xed\xb4\x74\x94\x10\xdc\x16\xd8\xe5\x56\x33\x94\xa0\x1b\x61\x09\x08\x90\x0c\xaa\xe6\x5a\x42\xf4\x77\x91\xdf\x6d\x99\xbf\x84\xa4\x95\x87\x0f\x83\xb3\xe4\xa7\x82\xeb\xf4\xfe\xf7\x5b\x9c\xc4\xd1\x12\x46\x51\xd3\xc7\xa9\xa5\x96\x3f\xe8\x04\xb5\xff\xbd\xbe\xa6\xa4\xb1\x2e\x2f\xfb\x8a\x68\x52\x87\x8f\x36\x35\x3c\x3c\x75\xfb\x84\x94\x68\x68\x31\x2c\x22\x2b\xb1\x54\x31\xb7\x2b\x91\x99\xd8\xa4\x25\x2c\x51\x67\x84\x5e\x55\x59\x62\x7d\x81\xb9\x61\xff\xcb\x80\xe9\x1d\x2c\x5a\xa2\xd7\x16\x51\xa5\x38\x88\xb9\x96\x28\x45\x55\x89\x27\x8a\xbd\x79\x96\xba\xea\x94\x88\xa2\xbe\x21\x1e\xe5\xaf\x04\xdc\x12\x8d\x61\x91\x18\xa6\xfc\x1a\x25\x4e\xcf\xf4\x93\x1e\xe4\xaf\x78\x94\x74\xe8\xb3\x04\x95\x77\x56\x60\x54\x49\x46\x07\x30\xa7\x18\xbc\x43\x49\x2a\x82\x92\x90\x01\x3e\x28\x29\x4f\x01\xa5\xdf\xff\x72\x15\x5b\xc7\x51\x92\x74\x15\x25\xb1\x4a\xa0\xf2\x3c\x16\x38\xde\xee\x7f\x71\x98\x75\x1b\x2a\xd9\xe8\x97\x3f\xf4\xcb\x4a\x17\x5a\xb2\x78\x61\xa1\xde\x6c\xe8\x2e\x57\xb2\x2e\x6c\x05\x5e\xf0\x31\x78\xff\xb2\xd4\xab\x25\xbf\x1f\xfe\x49\xf7\x54\x7c\x05\x2c\x85\x91\x01\x86\x4a\xf1\xe1\x2a\x30\x5a\x85\xb8\x03\xe7\x4a\x91\xf6\xa9\x14\x64\xdf\x54\xf8\x70\x81\xb3\xed\xfe\x17\xc9\xb0\x15\x0b\x56\x8a\xd8\x53\x29\x0f\x01\xb6\x25\x8b\x52\x25\x75\x94\x0a\x13\x44\x56\x4a\xad\x82\x68\x92\xfd\x2f\x10\x57\xb5\x5d\x4a\x15\xa7\x2f\x15\xb9\x4c\x83\xee\x0b\xa5\x56\x7f\x57\x01\x68\xb1\x99\x52\x9b\xdb\x60\xb2\xce\xca\x43\x55\xaa\x31\xb7\xc2\x13\x3d\xe7\xad\x99\x2d\xd5\xd0\xac\xa8\x64\x11\x74\x13\x2c\x75\x0a\x2c\x75\x32\xd2\x60\x33\x85\xd2\x7c\x30\x1b\x32\x0f\x07\x29\x89\x4b\x93\x54\x55\x1a\x02\x23\x86\x4a\xac\x97\x16\xb5\xeb\x2d\x82\x1d\x2a\x67\x64\x69\xba\x39\x94\x06\x47\xfd\xac\x70\xe7\xd2\x52\x73\x5b\xff\xe7\x4f\x56\xce\x8a\xd2\xd2\xe3\x26\x90\x4d\x95\xca\x28\x2d\x6b\x79\x34\x10\x3b\x31\x52\x41\x75\xf7\xfd\x2f\xa3\x44\xb6\x30\x56\xda\x70\x9f\xcc\x47\xa4\x80\xfa\xd2\x8c\xef\xa8\x41\x9d\xf3\x66\xbf\xa5\x4d\x0f\x07\x13\x44\x56\x71\xe0\xd2\x7d\xbc\x3a\x8f\x97\x72\xa8\x95\x2e\x51\xba\xf4\xce\x70\x94\x7d\x5d\x29\xbd\x8b\x4a\x77\x1a\xdf\x95\x7c\xa3\x74\x89\xd9\xa5\x9f\xdc\x05\x9d\x13\x54\x94\xdc\xff\x32\xd6\x44\x1c\xa3\xcf\xcb\x6d\x0f\xee\xab\x1b\x9a\x43\x97\xc8\x32\x56\xf0\xc8\x8e\x65\x2c\x28\xcf\xb8\xff\x25\x02\x6e\x89\xbf\x0c\x9f\xf4\x81\x93\xbe\x5d\xcd\x8e\x02\x5d\xc1\xfe\xb7\xf2\xb3\x8d\xd3\xa3\xb9\x8d\xa1\x17\x8a\x58\x2f\x43\x46\xa0\x82\x9a\x67\x59\xb1\xe7\x65\xbc\x5a\xdc\x78\x89\x2a\x12\x3c\x4e\x0f\x87\x58\xea\x5c\x84\x0e\x88\x28\xde\xff\x16\x66\x35\xdb\xfb\x73\x5a\x46\x38\x4f\x06\x92\xec\xd0\xd2\x72\xea\xae\x56\x50\xec\x24\x17\x1d\xe6\xcb\x04\x02\xa5\x1d\xb2\x0a\x91\x96\xab\x89\x06\x5c\x74\xba\x55\xee\x87\x72\xe9\xd6\x58\x50\x2b\x20\x7e\xe2\xd1\x6e\x3b\x45\xf7\x99\xa1\x3f\x28\xe1\x51\xb9\xcc\x47\xe1\xfd\xfa\xb5\x6d\x58\x5e\x86\xd7\xf5\x30\x67\xdb\x96\xf6\xcb\x7d\x08\xfb\x90\xf8\x3b\x2b\xe0\xb2\xdc\x49\xc3\x21\x63\x73\x56\x00\x65\x41\x0a\xdf\xfd\xef\x8a\xd8\xd1\x67\x12\x6c\xcb\x4d\xc1\x56\xea\x8b\x72\x4f\xcd\x12\xd9\x6e\x63\x30\x12\x21\xb7\xe7\xfa\x17\x59\x3d\x43\xde\x3a\x87\xf2\x34\xad\x00\xb9\x30\x63\x50\x15\x9c\x82\xec\x88\xfb\xdf\xef\xe2\xe1\xc5\xbd\x52\x62\x14\x3a\xdf\x64\xa5\x35\x28\xaf\x6c\x30\x05\xae\xe1\x59\x5a\xe0\xf2\x16\xed\xc1\x5b\xb8\x07\x3a\xc9\x6f\xd5\x09\x79\x69\xc2\x2d\xfb\x32\x53\x5e\x73\xa7\xb7\x32\x7e\x48\xe8\xf0\x1a\x9f\xdf\x0f\x9f\xb3\xec\x04\xc5\xba\xa5\x82\x54\x5b\x5f\x97\x1b\x28\xef\x2d\x80\xc1\x99\x38\x4b\xc7\x5d\xde\xc7\x8b\x63\x89\x24\x45\xc8\x97\x57\x3a\xee\x02\x07\xa1\xac\x90\x54\x7a\x1c\xef\x7f\x07\x9a\xf6\xba\xa7\x65\x49\x44\xe6\x86\x5c\x44\xf3\xa7\x05\x84\x49\x01\xa1\xec\x5b\x76\x99\x66\x93\x48\x78\x93\x9b\x36\x67\x1a\x19\x26\x91\xa1\x88\xac\x4f\x29\xb2\xcb\x44\xa4\x65\x28\x22\x8a\xf3\x71\xdb\xb3\xda\x34\x9c\xe9\x2c\xdd\x9d\xad\xce\x28\xf3\xe9\x6e\x1b\xc8\xc2\xaa\xa6\x57\x60\x9e\x2f\x43\xa4\xf6\x54\xea\xa1\x15\xd4\xa3\x34\x56\xae\x68\xbb\x6d\xb8\x0d\x19\xee\xb6\x33\xe0\x51\x2d\xea\x57\x88\xfa\x31\x94\x6d\x0a\xa9\xc7\xfd\xba\x6d\xb2\xad\xec\xb6\xe9\x2e\x27\xba\xdc\x4a\xf5\x0a\xe7\xda\xfd\xef\xfb\x35\x6d\xda\x56\x83\xa8\x6c\x0d\xf0\x85\xcd\x9e\x24\x82\x6a\xf7\xbf\x1f\x49\x54\x65\xdb\x1a\xa4\xaa\xa9\xa1\x13\x94\x5b\x0f\x55\x83\xee\x4d\x35\xf0\xde\xb4\xe3\xd9\x8e\x1a\x86\x87\xe3\xbd\x49\xe7\xbf\x86\xdb\x7d\xf2\xea\x57\x86\xa6\xe9\x85\x87\xb5\xf0\x91\xfe\x4a\xe8\xad\xe1\xbd\xf5\xe9\xcb\x02\x22\xfb\xbc\xd6\x28\x55\x65\x8d\xc7\x87\xb7\x2a\x6c\x56\xa3\x6e\x8d\x35\x7e\xa2\x42\x56\x85\xa9\x1a\xbb\xc0\x09\x5d\x54\x74\x99\xa1\x1a\xbd\xc0\x88\x5c\x87\xdb\xe9\xe7\xa8\x16\xdc\x6b\x44\x9d\x91\x20\x14\xab\x51\xc7\xb5\x42\x17\x15\x43\xdd\xd2\x48\x85\xcd\x7c\xff\x8b\x28\xa8\xba\xc5\x91\x9a\xb2\x86\x83\xda\xe6\x23\x8b\x7b\x05\xe9\x54\x9f\x30\x76\x87\xa1\x64\xae\x35\xe9\x9c\xd7\x15\x8b\x26\xb5\x74\x4d\xaf\xc7\x7b\x39\xde\xd6\xba\xd4\xa4\x5b\x42\x65\x30\xf4\x50\x4a\x84\x9a\x65\x7e\xac\x99\x39\x74\x95\x49\xb2\x66\xaf\x2f\x2f\x72\xb4\xcf\x50\xcd\xb7\xc6\xcb\xb0\x2f\x35\xd5\x4c\xab\x59\xae\x0f\x35\xbf\xe1\x9f\x3f\x45\x39\x0e\x2b\x6c\x39\xfb\x5f\x9c\x93\xba\xc9\x7e\x2d\xde\xd7\x72\xb0\x6d\xcb\x0e\xb5\xe8\x2a\x50\xcb\xc7\xbc\x8b\x32\xd5\xd7\x92\x6e\x37\x3d\xfc\x6c\x43\xa5\xc8\x00\x50\xcb\x87\xe0\xe5\xd8\xec\xb5\x16\x4f\xb2\x70\x92\x5a\x5b\x99\x1e\x0c\x31\xeb\x41\xc9\x1c\x6a\x99\xaf\xdb\xb8\xe7\x9b\xb2\x57\x4b\xed\x15\x52\x7b\x0c\x4a\x61\x50\xab\x44\x8e\x5a\x3f\x7e\x53\xa4\x91\xa9\x55\xe6\xeb\x5a\x11\xe2\x91\x77\x5c\xe8\x51\xab\xd8\x6b\x85\xb5\xa6\x28\xad\x67\xad\xf5\x76\xd3\xc3\xe0\x48\x75\xd9\xfc\x19\x94\x3c\x55\x1a\xcd\x5a\xbb\x87\xa3\x23\xa6\x72\x17\xd6\x3a\x4e\xb5\x8d\x9b\x85\x7d\x36\x54\xea\x2d\x58\xd6\x1b\xa2\x9d\x6a\x3b\xd6\x16\x75\x4a\xda\x77\xb7\x2c\x61\x5b\x37\x6a\x93\x7d\xa6\x22\xb6\xaf\x48\x77\x52\x9b\x1c\x82\x6a\xa3\x4a\x49\x35\x13\x6a\x4f\xda\x9e\x0e\x67\xfe\x5c\xb7\x6e\xa8\xf6\x3a\xd5\xd6\x40\x73\xda\xf6\xb5\xa8\xdd\xf8\x4c\xa7\xb6\xd6\x05\x4c\xd4\xf1\xdf\xff\x5e\x6c\xd3\x77\x52\xc8\x30\x52\x24\x86\xa6\x33\xd9\xa5\xc2\xaa\x2c\x14\xdf\x7a\x54\xdb\xf4\x3c\x27\xe7\x29\x64\x1f\x72\x23\xa8\x63\xcd\x53\xf4\x76\x34\xad\x61\x20\xa3\x6b\x56\x16\x8a\x3a\x1e\x41\x73\xc0\x43\x37\xd7\xcd\x99\xeb\x10\xef\xaa\x83\xbc\x4b\xb5\x6e\xea\x69\xea\xc7\xac\x42\xad\xeb\xbb\x53\x92\x4c\x65\x66\x99\xac\x14\x19\xf5\x94\xf5\xbc\x9e\xc8\x15\x1b\xba\xf0\xf6\xd4\x35\xa7\x42\xfc\x0d\x59\xd9\x91\xea\x79\x7a\xbc\xf3\x3b\x5d\x72\x4f\xa8\xe7\xe5\xe1\xc8\xd1\xbb\x48\xce\x69\xb2\xc2\xca\x94\xa1\x8b\x74\xa0\x8c\xe4\xfe\x97\xe4\xc8\xc3\x3d\x3a\x42\x27\x6b\x15\x79\xfb\x4e\x89\x93\xf5\x64\xa0\x74\xdf\x22\x63\xbd\xe4\x37\x55\x61\x5b\x8c\xa1\x8b\xf2\x5f\x87\xb6\xe1\x42\x06\x87\xb6\xfd\xe6\x8f\x7a\x49\x0d\x54\x51\xa8\xcc\xc5\x12\xea\x25\x45\x69\x85\x08\xff\x4d\x53\xc3\x79\x67\x51\xbd\xcc\x69\xf2\xeb\x35\xdc\x74\x42\xb0\xed\x51\x5d\x1a\x98\x17\x72\xba\x85\x2e\xb6\x76\x19\x71\x51\x6f\xcb\x79\xad\xeb\x75\x79\x92\x48\xff\x1a\xb6\xdb\xec\x51\x2f\x79\x40\xd5\x0b\xf5\x3b\x43\x4f\x9a\xa5\x1c\xeb\x2a\x4b\x4b\x35\x15\xee\xae\xd7\x6b\x80\x31\xfa\x56\x95\xa4\x2b\x0a\xee\xec\x7f\x33\xb2\xc3\xee\x63\x79\x9b\x08\xb0\x3c\x8d\x33\xb8\xd7\xdb\xec\x09\xc5\x2f\x42\x96\x13\x49\x7d\xfc\xdd\x13\x39\x9c\xa0\xf2\x58\x64\x79\x98\xd8\x43\x26\x8f\xfa\x66\x2d\x9d\xee\xf2\x6d\x08\x2c\xaf\xb4\x7b\xf5\x85\xc9\xa3\xa9\xa6\x5c\x7d\xe5\x64\x54\x5f\x64\x4c\x6a\xaa\xfc\x56\x91\xc6\x77\xff\x0b\xb5\x92\xc5\x27\x8b\xd9\x15\x62\x76\xc9\x42\x15\x4b\xd9\x75\xb9\xe1\x97\x43\x6d\xaf\xbb\x7c\xd9\xa5\xb8\xc9\x94\xdf\x47\x9d\x2c\xaf\xde\xb4\xbc\xe9\xa3\x30\xb9\x43\xaa\x44\xd0\xec\x97\xd9\x0e\x26\x5b\x12\xed\x6f\x87\x94\xa5\xed\x80\x50\x9c\xb7\x23\xf0\xf7\xa0\xb8\x0d\x0e\x90\x65\x3b\x3a\xb6\x90\xf7\x36\xb4\x90\x91\xc7\x6d\x13\xb2\x16\x24\x94\xb4\xc0\x0a\xb7\x4a\x74\xda\x82\xac\xd7\x0d\xb2\x60\xb4\xe1\xa9\x59\x52\x6b\x90\xd4\xa2\x0d\x4f\x2d\x4a\x40\x6a\xf1\xe3\xe0\x45\xa6\xa0\x16\xa5\x75\x6e\x31\x1f\x68\xda\x93\x8c\xd9\x4d\x30\x57\x8d\x12\xf5\x99\xcc\x55\x2d\xc2\x5c\x95\xe5\xde\xd6\x62\xd5\x0a\x22\xa3\xfa\x94\x2b\xb2\x21\xbd\xc7\xfe\x17\x4c\x4f\x66\xae\x16\x0d\xb0\x48\x9a\xa3\xea\x85\xcd\x1e\x9e\x0d\x1e\x9e\xa5\x6e\xb4\x6d\x49\x26\xa4\x96\x68\x42\x6a\x3d\xff\x95\xe4\xdb\xec\xcb\xd9\xe8\xcb\xd9\x55\x99\xa6\x25\xdd\x54\x5b\xfa\x6e\xaa\xf2\xbe\xfe\x7e\x9f\x6e\x22\x06\x26\xcd\x26\x6b\xf1\x30\xf7\x15\xd9\xc0\x5b\x32\x22\x25\x5e\xb5\x55\x46\xaf\x25\xc3\x2c\x2d\x98\x35\x75\x29\xf3\x5f\x4b\x9d\xb0\xde\xe2\x66\x4b\xc3\xdf\x41\x4d\x92\x9b\x10\x37\x4b\xf1\xd7\x32\x14\x7f\xb9\x6f\x9e\xd1\xb2\xec\x67\x2d\x93\xe5\x2b\x29\x73\xcb\x92\x83\x5a\x46\x91\xa0\xa0\x42\xd3\x2d\x7b\x2e\x99\x71\x5d\x7d\x6b\xac\x5b\x96\x32\xa4\x65\x96\x5e\x56\x11\x89\x96\xc5\xba\x5b\x9e\xd8\x3f\x75\x59\xa4\x30\x6c\x25\x31\x06\x7b\xeb\x04\x5a\x31\xba\x14\xa0\x4b\x54\x5e\xf3\x56\x9a\xbf\x63\x88\xaa\x2c\x53\xad\x88\xcb\xb6\xf2\x4d\xb3\x34\x61\x6e\xd1\xfd\xa3\x15\x5c\xb0\xf2\x8e\x2a\x3b\x5a\xf1\xf9\x2a\xf0\x37\xe9\x32\x68\xb5\xf2\xb8\xed\x5d\x6d\xfa\x6e\xba\xcf\x8f\x23\x16\xdd\xee\x9b\x65\xd8\x06\x19\xb6\xc8\x41\x90\x91\x94\xfb\xdf\xca\xda\x5c\x45\x6d\x97\xdb\x18\x87\xae\xb3\x50\xe5\x8e\xf0\xdd\xa5\xbf\x2e\xf7\x3d\xb6\x55\xf9\x8f\xb6\xca\xea\x37\xca\x42\xdd\xaa\x3c\x48\xbf\x2b\x25\x3e\xd3\x4c\xa4\xca\x6e\xb5\xa2\xc7\x6d\xaf\x6f\xf6\x5b\x6a\xb5\x9e\x68\xda\xe7\xbc\xca\xab\xa7\x55\x96\xe8\x54\xc2\xe5\x56\x87\x27\x32\xf0\xd9\x36\x96\xb4\x2a\xe6\xdb\x2a\x98\x6f\x54\x7e\xe3\x56\x65\x7d\x6e\xcc\x71\x90\x7b\x55\x97\xa7\xe7\x0f\xfa\x6d\xc7\xbd\x56\x2f\xcf\xf2\xe2\x70\xfb\xb0\x36\x69\xa3\x5a\x43\x18\x4a\x34\x35\x6a\x72\xec\x6c\x90\xaa\xcb\x8e\x48\x39\x9a\x35\xdc\x0d\x1a\xee\x22\x31\xb4\xb5\x2c\xc4\x6b\xc8\x35\x58\x55\x89\xbf\x35\xa9\x34\x5a\x83\x4a\x23\x2a\x5b\x6c\x6b\x52\xb5\xb5\x86\xd8\xee\x2c\x2f\xef\x66\xed\x77\x6b\x0d\xc5\x47\x0f\xed\x77\x33\x9c\x1b\xbc\xa7\x86\xae\xfd\xcd\x62\x7d\x83\x58\x5f\xba\x18\x49\x7b\x84\x79\x0d\x21\x0b\x5d\xc5\x98\x5b\x8f\x5a\x42\x47\xc4\x7d\xde\xd9\x5f\x8e\xd6\xe5\xb1\xd8\x3a\x6b\xdf\xaa\xb4\x50\xeb\x26\xc3\x2b\x80\x44\x8e\xf6\xad\xcb\xad\xbf\x75\x86\x8d\xca\xd0\xd5\x86\x8c\x60\x0d\x49\x63\xc3\x90\x97\x49\x1b\xba\x92\xb5\xc1\x2b\xd9\xd8\x8a\xb8\x36\x2e\xf5\x39\xb0\xaf\x63\xb3\xfa\x36\xe4\x57\xde\x06\x43\x3d\xe5\x27\xd3\x4e\xd3\xf5\xf3\xa3\xeb\x45\xfe\x20\xed\xd4\xe5\xb6\x41\x33\x1d\x63\xd8\xa6\x84\x76\xfa\x18\x20\x25\x62\x91\x3b\x48\x3b\x65\x91\x6f\xa8\xf8\x1e\xb2\xea\x9e\xb7\x53\x8a\xde\x76\x3e\x98\xa4\x10\xec\x7c\xdd\xe3\x8b\x1e\xb7\x21\xa1\x5d\x9e\xe3\xc5\x39\x56\x35\xc9\x67\xa5\x5d\x91\x3b\xb7\xb5\xf0\xed\x32\xbf\xbe\x32\xaa\x8c\xea\x8e\xd7\x2e\xdd\x81\xda\xf5\xdd\x81\x8a\x2a\xf1\xb5\x4b\x86\xcd\x76\xb1\x84\xbd\x22\x42\xda\xa5\x2b\x78\xbb\x58\x9b\x5c\x86\xee\x76\x79\x53\x2f\x56\x21\x97\x31\xbb\xdd\x26\x36\x37\x89\x4d\xd0\x78\xb7\x1c\x9c\x1a\x2b\xf2\x0d\xa9\xb1\xda\xed\x0d\x5f\xa5\xf0\x74\x1d\x6b\xb7\x54\x40\xed\x66\xac\xbe\x0c\xb0\xed\x96\x90\xd6\x6e\x08\x69\x59\x85\x87\xdb\x23\x85\x7a\x43\x71\xb4\xaf\x6d\x8f\xf7\x98\xc1\x3c\x64\x30\xaa\xed\xd8\x1e\x5d\xd0\xdb\xd3\xb9\xaf\x5a\xc3\x23\x91\xbe\xa1\x8a\x4e\xb4\x47\x63\x7b\x6e\xf7\x79\xa3\xa2\x92\xea\xa4\xb6\x47\x66\xa7\xf6\x30\xf2\x45\xba\x95\xf6\x16\xc1\xec\x2d\xe7\x3f\x7f\xea\x8e\x5f\x3f\xda\x6b\x9e\x85\x2a\x22\xa1\xcb\x21\xbf\xbd\x72\xf3\x69\x08\x06\xae\x3b\xd2\xf2\x68\x28\x18\xb2\xff\xcd\x5f\x93\x80\xf9\xca\x1d\xaf\xbd\x70\xc7\x53\x65\xe0\xf6\xea\xaa\xd9\xe0\xf6\x12\xa3\x2c\xcf\x0d\x6e\x2c\xfb\xdf\x17\x9f\xa9\x49\x37\xdb\x36\xbf\x9b\x6d\x0d\xda\x81\xe9\x1d\x67\x7e\xf7\x6c\xaa\x38\x4d\xf9\xe6\x47\x5d\xaa\x11\x6c\x4a\x65\xd1\xe6\xca\x0e\xd2\xdd\xd6\xdd\x86\x55\x0b\xf7\xec\x3d\xd3\xe8\x3d\xd3\x55\xe8\xab\xcd\xe6\xd1\x58\xc0\x45\xf5\xbe\xdb\xbc\xb5\x37\x48\xab\x5d\x83\x48\xa9\x35\xd5\x8d\x9a\xea\x72\x68\xbb\xe7\xf4\x70\xac\xbc\x20\x6d\x60\xb7\xf7\x65\x87\xf7\x65\x55\xed\xf0\x7e\xc8\x69\xad\x23\x1a\x24\x46\x39\x15\xf6\x43\xe6\xea\x7e\xc0\x9b\xaa\x28\xb7\x7c\x0f\x75\xcf\xb2\x87\xfa\xcd\x52\x6e\x43\x3d\x48\x38\xeb\x81\x36\xa0\xa3\xfc\x9d\xb4\xdb\xc3\xf3\xe8\x53\x44\x71\x0d\x25\x23\xed\x41\xd2\x4d\x0f\x1f\x8d\xaf\xca\x5c\xdd\xed\x35\xd9\x03\xac\x47\x51\x06\xdd\x6e\xaf\xc9\x1e\x26\x62\xd6\x36\x9b\xef\xf6\x15\xe9\xf0\x15\xa9\x72\xec\xea\x51\xf7\xda\x1e\xa1\x52\x1f\x12\xcf\xba\xa3\x1c\x3a\xa2\x1c\xaa\x0c\xd9\x4c\x8a\xb0\xff\xed\x5f\xd3\xd6\x00\x77\x3b\x46\x7e\xa4\x12\x73\x1c\xfa\x6c\xb8\xc7\x01\xd2\xa7\x84\xe5\x3d\x9e\x9e\x09\x13\x6e\xaa\xda\x65\x8f\xa7\x87\xa3\xbc\x21\x7b\x61\x4f\x22\x37\x9d\xe1\x61\x5d\xf7\xd3\x6e\x67\x90\x0e\x67\x90\x18\xa5\xaa\xe9\x29\xf8\xbb\x80\x25\x6c\xe9\xa0\x23\x60\x6c\xff\x3b\xf9\x99\xba\x94\xc4\xd1\x13\x0b\xa0\x7a\xe9\x49\xae\xba\x3d\x21\x98\xb1\xe7\x7d\x03\xe8\x49\xf2\x6c\x4f\x90\x67\x8b\xa4\x91\x9e\xe5\xd8\xd5\x33\x93\x6d\x14\x4d\x33\x8b\x4a\xf5\x8c\xf4\x66\xbd\x68\x2e\xf9\x74\x1b\xca\xb6\x45\xe9\x5c\x7a\x96\xa2\xa3\x67\xe4\xd7\x8c\x32\x8e\xf5\x2c\x03\x45\x67\x00\x42\xdf\x39\x0d\x8f\x5e\x14\x07\xd6\xcb\x91\xf8\xdd\x9e\x67\x31\xc8\x0a\x40\xa6\xd4\xf9\xbd\xc8\x7b\xe1\xeb\x0b\x5d\x26\x75\x29\x92\xd3\x0b\x2e\x5b\x51\x99\x99\x7b\x11\x9f\xef\x85\xd9\x84\xca\x16\xf3\x7b\xb9\x04\x6a\xdc\x06\x62\x54\xc4\x54\x2f\x32\x73\xf5\xc2\x4c\x4f\x3b\xdb\xe1\xd1\xab\x6e\xa1\xbd\xe2\x16\xda\x54\x4e\xab\x57\x59\x97\x3a\x1c\x51\x62\x54\xe6\xf9\x5e\x65\x42\xea\xb5\xa0\x6e\x68\xf6\x77\x92\xc4\x7a\xa5\x24\x26\x5b\x42\xb7\x66\xb9\x43\x0e\xaf\x0a\x49\xea\x55\xde\x9d\xbd\x0e\x26\x8d\xd9\xe2\x43\xb7\x10\xdd\x29\x44\x97\x63\x93\xdb\x5e\xbd\xb3\xf5\xdb\xd9\x9a\xdd\x74\x79\x75\x17\x44\x04\x79\xfb\xf6\x26\x9b\x40\x6f\x2c\x19\x2c\x2f\x8b\xde\x14\xe9\xd4\x1b\x73\xe0\x48\xbd\xd0\x9b\xac\x60\xbd\xb1\xce\xa1\x42\x0d\x7b\x1b\x9a\x66\x43\xfa\xb8\xd1\xb6\xda\xa8\xb7\xd3\xe3\xc1\x7f\xa6\x18\xd2\x4d\xfe\x33\xbd\x21\x25\x41\xaf\x51\x7d\xca\xfc\xd7\xdb\x84\x3f\xbe\x36\xaf\x4b\xbb\xd5\x7b\xe6\x26\x88\x0c\x74\x93\x8f\x8e\x24\x98\xa3\xe9\xa8\x77\x23\x4b\x67\x19\x07\xd5\x72\xe9\x5d\xd2\x43\xef\xf7\xc7\x97\xcb\x96\x94\x7b\x97\x3d\xa7\x77\x64\xe6\x8a\x8a\x77\xea\xdd\x38\xd6\x3f\x1c\xab\x72\xcd\xed\x56\x7f\x77\xaa\xbf\x8b\x0a\x9a\xf4\x21\x07\xa7\xce\x18\xeb\xa1\x34\xda\x7d\xe8\x9e\xd9\x47\x20\xa0\x85\xd2\xc3\xcc\x8b\xa1\xd8\x45\x97\xef\x3e\xe4\xda\xde\x47\xfc\x48\x71\xd5\xe2\x86\x24\x8b\x3e\x60\xbb\x88\xb2\xc7\xf7\x61\xa2\x33\x3e\xa2\x53\x95\x89\xb9\x0f\x29\xfe\x3b\xb2\x39\xd5\x2a\xf2\x70\xfa\xfc\x9c\x07\x30\x4c\x96\xee\x7e\xca\x0a\xde\x51\x14\xe0\x6b\xdb\x5d\x9e\x8a\x8f\xe9\x67\xc3\x85\xab\x44\xb7\x9d\x6e\x03\x25\x2e\x5b\xd6\xef\xe7\x29\xa0\x9c\xe7\xc7\x62\x95\x7a\xba\x9f\x52\xea\x75\xa8\xc1\x63\x2c\x5a\xc1\x25\x87\xb0\x7e\x21\x73\x42\x91\x24\xd6\x2f\x69\x16\xfa\xf5\x09\x65\xb5\xe9\x1c\x5c\x26\xd2\x17\x89\x74\x15\x37\xbc\x74\x55\xee\xd7\x87\x6b\x75\xa7\x01\x3a\xfa\x2d\xe1\xa8\x23\x75\x5a\x8c\x45\x44\xec\x96\x6b\x43\x47\x19\xe6\xaf\x6d\x77\x79\x4b\x94\xec\x77\x27\x50\xb6\x99\xae\xdf\xb2\xcd\xf6\xbb\xa3\x6e\xcf\xbe\x3f\xf4\x5b\xe1\xe4\xfd\xbe\xb0\x00\x89\x1d\xb7\x19\xfd\x0d\x46\x2f\x8b\x4d\x7f\xbc\x73\xcf\x81\x98\x95\x2d\xed\xf6\xe7\xd5\x57\xa8\xad\x58\xdb\x16\x09\xfb\x23\x23\x42\x7f\x58\x81\x59\xb6\x95\x6e\xa7\xf0\xfe\x12\x17\x64\x3e\xee\xaf\xd4\x9c\xfd\xfd\x04\xfd\xda\x85\x78\xaf\xa2\xaf\x3b\x4a\x09\xd6\x9d\x2c\xe2\xe8\xaf\x22\x82\xfa\xcb\x5c\x81\xde\x9b\x57\x37\xfd\xfe\xa6\xce\xd1\xf6\xd1\xb1\x2b\x79\xa7\x2b\xf9\xe8\xc2\xd8\xb7\x78\x38\x16\xf0\x96\x67\x43\x7f\x65\x0b\xed\x2f\x4b\xc0\x56\x1d\xab\xd7\x84\x01\x79\x65\x62\xdc\x79\x66\x8f\x3e\x65\x22\xe9\x28\xbe\x15\xa3\x1c\x83\xfa\x94\xda\xa7\x23\xc0\xe9\x6b\xdb\x4b\xb7\xf0\xdd\x21\x7c\xc7\xa8\x00\x9b\x3e\x3d\xcf\xb9\xe6\xb9\xd5\x4c\x7d\x56\x7f\xf7\x21\x58\xed\xc2\x93\x79\x7a\xb8\x93\x1b\x24\xba\x37\x2f\xe1\xde\x44\x26\x8a\xb2\x73\x31\x1e\x7d\xea\xc6\xd8\x91\xac\xb7\xba\x60\xe3\xa1\x38\x8d\x71\x44\x88\x0e\x32\x48\x0f\xc7\x29\x8d\x23\x11\x2a\x2a\xfe\x73\x48\x11\x3d\xe0\x83\x5e\x47\x38\xfe\x4a\xe4\x1d\x87\x1c\x65\x07\x93\x1d\x34\x5d\x81\xc6\xf1\x78\x36\x0f\x88\xbe\xf2\xcb\x8f\x43\x5a\xbb\x81\x14\x05\xa1\xbb\xfe\x37\x92\x4d\xee\x7f\x61\xfe\x92\x6a\x6e\x58\xaf\x3f\xa0\xd7\x0f\x5d\xd6\xbd\x11\x74\x51\x1b\x01\x09\x64\xa2\xcc\x32\x23\xc8\x14\x32\xa0\xff\x0f\x45\x81\x75\xc3\x5e\x1f\x03\x5e\x1f\x55\x8a\x82\x11\x6e\x77\x79\x33\x99\x95\x4a\x91\xda\x8f\x7b\xc0\x8f\xfb\x1b\x6e\xd7\x2d\x0a\x32\xb2\x0e\xe4\xc1\xec\xc2\xa4\x11\xe4\x34\x30\x02\x9c\x06\x62\x53\x89\xc2\xf0\x7a\x96\xdf\x65\xa9\xbb\x52\x60\xd0\x9d\x77\x84\x8f\xcf\xd6\xa1\xba\x4a\x51\xa7\x79\x44\x9e\x66\x95\x44\x18\x51\xce\x35\x03\x97\x82\xaf\xad\xab\xad\xba\x8d\xb0\xfc\xf9\xee\x76\x1b\x64\x8e\xa6\x72\x60\x31\x7a\x3c\x54\x71\x8b\xb2\x9d\x8f\x28\xcd\xca\x88\xa8\x1f\x1e\x9b\xca\x73\x45\x79\x0d\x8c\x98\xd6\x77\x1b\x98\x0e\xca\x1a\xb1\x70\x3c\xd5\xc0\xb3\xb9\x63\x20\xdd\xe2\xd7\xa6\x35\xe8\xca\x32\x70\x65\xf9\xc4\x3d\x35\xb9\xcb\xc6\xcc\x64\x2a\x46\xe9\x98\xac\x11\x4f\x82\x4c\x75\xc8\xa2\x34\x51\x23\x42\x13\x35\x86\xea\xa8\x45\xb1\xde\x11\xa9\xbf\x56\xd5\x98\x11\x6f\x7f\x07\x27\x92\xe2\x02\xb0\xf1\xf1\x5c\x1e\x2e\x4f\x35\xae\x92\x44\xb8\x91\x98\x0c\x59\x97\xf7\x91\x74\xed\x1a\x89\xd7\x2e\xc9\x46\xc3\x99\x24\x06\x62\xa9\xdb\xa1\x32\x77\xe9\x72\x97\x17\x21\xad\xd3\x65\xd7\xf6\x01\xd7\xf6\xaf\x6d\x83\x25\xc9\x56\x3f\x10\x8b\xd4\x0e\x6d\x7a\x96\x88\x3d\x32\x83\x35\x86\x36\xc1\x29\x21\x46\x5e\x88\xa4\x72\x68\x45\xba\xd5\x51\x3a\x77\x41\x05\xdc\x8a\xdc\x1b\x46\x41\x0d\x2a\xdd\x0d\x47\x91\xfa\x64\x14\xaa\x4f\xa4\x1e\x1e\x45\x71\xa4\xa3\x20\x09\xf6\x18\xda\xbc\x2a\x85\xf3\xa8\xc4\x4d\x19\xa5\x47\x35\x6e\xd6\x38\x91\x15\x62\xcf\xb2\x9a\x38\xd6\xc4\x73\xae\x12\xe0\x56\xf9\x8f\xa5\xf2\xef\x2a\x36\x56\xa5\x8d\x1e\x95\xda\x68\x19\xac\x47\x95\xb5\x66\x20\x9d\x57\x0b\x22\x1d\xd6\xa6\x8f\x7a\x0d\xd4\xca\xd8\x5f\x35\x31\xd2\xd1\x22\x17\x27\x6c\xb0\xe7\xf7\x80\xe7\x77\x93\x63\xca\x68\x3e\x07\xad\x81\xc7\x8a\x8f\x8e\x26\x8f\xea\xd1\x06\x8a\x8d\x88\x9c\x36\xcf\xb1\x31\xb9\xec\xd0\x8e\xb7\x2b\xb9\x0d\x65\x57\x54\x6f\xae\x89\x3d\x8d\x46\xf6\x24\xfd\xe9\x68\xc6\xaf\x46\xfc\xea\x2a\xf7\xdc\xa6\x67\x39\x39\x4b\x55\xc1\xeb\xf2\xf7\x18\x4c\x34\xd5\x65\x1c\x1f\x5d\xd7\xf3\xd1\x61\x10\xd0\xed\x61\xf4\xe2\xcf\x58\x93\x2d\x0a\xd5\x7b\x75\x1b\x32\xda\x8c\xa1\x52\x73\x76\xbb\x19\x70\xbb\x69\x41\xc5\xd4\xbb\x09\x40\x67\xe6\x68\x45\x11\x0e\x5f\x11\x06\xaf\x08\x5d\xde\x75\x63\xf8\x18\x0c\x1e\x03\x99\x57\xc7\x90\xa9\x70\x0c\x9a\x9b\xcc\x64\x86\xc4\xaa\x31\x50\x2a\x26\x8a\x21\x0c\x03\x65\x24\x16\x22\x17\x4b\x1b\xc9\x5d\xa6\xd5\x65\x57\x9b\xbb\x4c\xec\x72\xaf\x60\x48\x2d\x31\x06\xca\x46\xba\xee\xfc\xd0\xa5\x70\x8c\xef\x68\x2a\xed\xdd\x31\x86\xf9\xe7\x38\xd1\xa1\xea\x15\xdb\x84\x30\x60\x42\xf8\xe6\xa8\x79\xbc\x9e\x23\x2a\x86\xc4\xa1\x52\xcf\xc3\xcc\x0e\x7e\x40\x2d\x0a\x9b\xc7\xf4\x1c\x27\xe6\xa8\x72\xb2\x43\xba\xf4\x31\xa8\x4b\x57\x51\xbe\x31\xa6\x7b\x9c\xac\xc2\xaf\x42\xe2\xa7\x0c\x32\xe3\x8c\x2c\x38\x2b\x66\x77\x1a\x9d\x4f\xa2\xb3\xb4\x3f\xe3\xbc\xfc\xdd\xc5\x44\x55\xaa\xe7\xea\x7b\xcc\x38\x51\xa8\x57\x21\x36\xe3\x94\x6d\x68\x9c\xcf\x44\x93\x46\x53\x56\x84\x81\x1c\xd0\x4d\xd1\x22\xe3\x9c\x6e\x42\x1d\xf3\xe8\x42\xaf\x97\xb9\xfc\x45\x2e\x2f\xf7\x83\x71\x99\x38\x5f\xc7\x9a\xa4\xbe\xb3\x34\x75\x45\x0c\xa7\x4a\xe7\x97\x8c\x46\xe3\xfa\xc4\xc5\x16\x55\x38\xdf\x16\x92\x01\x0b\x49\x53\x66\x98\x71\x99\x56\x5e\x89\x79\xe9\xc4\xe2\x2f\xd3\xca\x8b\xb4\x52\xa6\x9a\x71\xf9\x10\x5f\xdf\x21\x6e\x49\x65\xc3\x2f\x93\xd1\x8b\x64\x54\x66\x9c\x71\xc9\x33\x7d\x5c\xf0\x4c\x1f\x87\x38\xc1\x55\xdd\x65\xe5\x86\x8b\xfd\x5f\xcd\x7d\x36\x66\x86\x54\x75\xd2\x6b\xb8\xed\xc3\x79\x94\xad\xf9\x37\x79\xb7\x8e\xff\xa5\xb8\x6b\x9f\xa7\x01\x9f\xa7\xa6\xe8\xa1\x71\x99\x2b\x5d\xc8\x6e\xe0\xc2\xd1\xb7\x74\x00\xe3\x5e\x39\x29\x85\xcf\x77\x16\xc4\xee\xcc\x36\x11\xee\xdb\x62\xf9\x5d\x98\x87\x52\x38\x7b\x57\x7f\x57\x99\x2b\x53\xc4\xe6\x36\x58\xee\xca\x2c\x99\x22\x36\x8f\xb4\x7d\xe3\x61\x21\x0f\x79\x91\x8e\xc7\x84\xe8\x61\x4d\x8f\x28\x61\xf1\xf1\xae\x3f\xbc\x3e\x0c\x71\xc8\xa7\xb8\xad\xb0\x6d\xa8\xcf\xe2\x3e\x0b\x76\x5d\xec\xff\xf1\x0e\x3d\x6b\x87\xba\x8a\xf2\xeb\xaa\x3f\x9e\xc1\x93\xb0\x6f\xb6\xe3\x31\x99\x7a\x56\x2d\x76\x1d\xc9\x47\x6e\x4d\xe3\x59\xb5\xb2\x5d\x96\x5d\x49\xad\xc6\x0b\x8f\xd6\x74\xb8\x4e\xb6\xe9\xf3\x1b\x90\x4d\x45\x94\xc3\x57\xcd\xf1\x76\xa6\xe3\x77\x79\x6c\x29\x09\x07\x52\x70\xb4\xfc\x53\x97\xfe\x75\x13\xcb\xb3\x0a\x6f\xdf\xdb\x6d\x0f\xeb\x69\xef\x05\xbc\xf2\x15\x1f\xf0\xb5\x8a\xe9\x70\x65\x78\x29\xd8\xc6\x3b\x91\x18\x48\x14\xe0\x9d\x9e\xc8\x44\x49\x6f\xd7\xd5\x95\x2a\x7d\xcc\x03\x09\x94\x5c\x58\x56\x0a\xa8\x81\x40\x88\x78\xfc\x14\x9d\x55\xb8\xe9\x40\xb2\xdb\x6f\x22\x2a\x98\x2a\x25\xcd\x98\x88\xda\x4b\x2e\xbd\x6d\x53\xd4\x98\x15\x45\xa0\xc5\xfe\xa7\x52\x2f\x8d\x59\x59\xf3\xd6\xe5\x68\x3d\xda\xe0\x68\x2e\x1d\x6c\xa1\x7b\xde\xcc\xbe\xaa\x72\x73\xb6\xa5\xaf\xd4\x92\x25\xbb\xd0\xa9\x70\x68\x8e\xc1\x82\xa5\xae\xc5\xb9\x4f\xe4\x44\xb9\x9f\x5e\x5c\xff\x50\x5a\x80\x79\x7e\xb2\x58\x57\x80\xd3\x3c\x05\xae\x09\x8d\x59\xaf\x3f\x55\x02\x2f\x35\x95\x55\x40\x71\xb7\x5d\x32\xd4\xcc\x8b\xd9\x1a\xa2\x5a\x92\x5b\x90\x21\x4c\x15\x13\x5f\xb9\x5f\x4f\x20\x6b\x93\xeb\xde\x7c\x75\x84\xe7\x8b\x23\x5c\x77\x9e\xfd\x63\xbe\xc9\x9f\x21\x25\x46\x57\x81\xbb\x57\xd7\xaf\x89\x20\x21\xfb\x48\x4e\x6b\x68\x26\x34\x34\x6d\xa8\x96\xdb\x2b\x8a\x3e\xdf\x8f\xa2\xb7\xb1\x05\x90\xf9\xca\xe9\x6d\xbe\x9f\x00\xd2\x46\xf0\x57\x8f\x9b\x5e\x7c\xe5\xb1\xa6\x9a\xf2\x81\x26\x2d\x2c\x7b\xf2\x1f\x5a\x35\x97\xd7\x7d\xb3\x27\x8f\xc0\xc6\x58\x55\x3b\xf1\xcd\x9e\x7d\xe6\xec\x5d\xb6\x4f\xfb\x8c\xea\xec\x55\xb5\x11\xa7\x88\xc1\x9c\x2c\x59\xe8\xfa\x7c\xa7\x5b\x60\x20\x53\x9d\x3b\xc9\xe6\x73\x2e\x58\xec\x16\xcf\x1c\x95\xaf\xbb\x2b\x16\xea\x38\x4c\x58\x66\x83\xdd\x21\xe6\xac\xfe\xea\x63\x2c\x2e\xf4\x39\x5f\xcf\xee\x85\x74\xaa\xea\x79\x7b\xde\x61\x06\xa6\x4a\x39\x8e\x5d\x27\x2f\x24\xb7\xc1\x87\xf4\xd8\x9b\x15\x66\x28\x6e\x43\x7a\xa4\xa3\x26\xb5\x35\xb7\x21\xeb\x49\xd8\xe3\xc5\x78\x6d\x1e\x14\xe3\x45\x1e\xb4\xd5\x46\xb1\xce\x4d\x8f\xbe\x7f\x1b\xcd\x35\x3b\xb3\x77\xd9\xbe\x04\xdf\xbf\x83\x59\xd0\x95\x9f\x7c\xfb\x4a\x7c\xff\x32\xd1\x76\xfa\x9f\x4c\xac\xdf\x8f\xff\x7a\xfe\xe7\xff\xf1\x7f\xfd\xdf\xe7\x7f\xfe\x3f\xe7\x7f\x7d\xff\xdc\xff\xe3\x5f\xff\x7a\xff\xe3\xbf\x3f\xff\xe5\xfe\xef\x7f\xfe\xcf\xef\xe9\x9f\xe7\x9d\xff\xe5\x3f\xde\x7f\xbd\xff\xdf\x7f\xfb\x1f\xff\xba\xdf\x3f\xff\xf9\xdf\xfe\xf3\xfb\x0a\x7f\xff\x7f\x00\x00\x00\xff\xff\x0e\xf7\x18\x67\xc1\xb5\x03\x00"); +func _ac ()(*asset ,error ){_ccg ,_gafg :=_ede ();if _gafg !=nil {return nil ,_gafg ;};_dg :=bindataFileInfo {_ee :"78-V",_ffd :892,_cd :_ff .FileMode (436),_ae :_c .Unix (1580490959,0)};_bbb :=&asset {_da :_ccg ,_dc :_dg };return _bbb ,nil ;};func _gf ()([]byte ,error ){return _gb (_cfb ,"90pv-RKSJ-H")}; +func _fgea ()(*asset ,error ){_fafe ,_ecgb :=_ddaa ();if _ecgb !=nil {return nil ,_ecgb ;};_bggf :=bindataFileInfo {_ee :"HKm471-B5-H",_ffd :14260,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492427,0)};_eabc :=&asset {_da :_fafe ,_dc :_bggf };return _eabc ,nil ; +};func _facf ()([]byte ,error ){return _gb (_efgg ,"GBTpc-EUC-V")};func _fac ()(*asset ,error ){_aea ,_efab :=_fgb ();if _efab !=nil {return nil ,_efab ;};_dffge :=bindataFileInfo {_ee :"Adobe-Japan1-4",_ffd :1625,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491326,0)}; +_bca :=&asset {_da :_aea ,_dc :_dffge };return _bca ,nil ;};func _cfbeg ()([]byte ,error ){return _gb (_bbef ,"GBKp-EUC-H")};func _adde ()(*asset ,error ){_faadb ,_fcgd :=_cefb ();if _fcgd !=nil {return nil ,_fcgd ;};_cefd :=bindataFileInfo {_ee :"UniJIS2004-UTF8-H",_ffd :214224,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492828,0)}; +_bbgc :=&asset {_da :_faadb ,_dc :_cefd };return _bbgc ,nil ;};func _fgf ()([]byte ,error ){return _gb (_gege ,"Adobe-Korea1-2")};func _cbgg ()([]byte ,error ){return _gb (_gbfg ,"UniCNS-UTF32-V")};func _fgbee ()([]byte ,error ){return _gb (_daeb ,"UniCNS-UCS2-H")}; +func _dab ()(*asset ,error ){_aaca ,_cab :=_aded ();if _cab !=nil {return nil ,_cab ;};_dfb :=bindataFileInfo {_ee :"Adobe-Japan1-3",_ffd :1147,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491320,0)};_dgfe :=&asset {_da :_aaca ,_dc :_dfb };return _dgfe ,nil ; +};func _ggcg ()(*asset ,error ){_dfag ,_dfegc :=_bfda ();if _dfegc !=nil {return nil ,_dfegc ;};_gebc :=bindataFileInfo {_ee :"GBT-EUC-V",_ffd :785,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492205,0)};_dcfc :=&asset {_da :_dfag ,_dc :_gebc };return _dcfc ,nil ; +};func _bfeea ()(*asset ,error ){_eeec ,_dgeb :=_efabf ();if _dgeb !=nil {return nil ,_dgeb ;};_dddge :=bindataFileInfo {_ee :"UniJIS2004-UTF16-V",_ffd :3434,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492812,0)};_fffg :=&asset {_da :_eeec ,_dc :_dddge }; +return _fffg ,nil ;};var _fcfb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x95\x4f\x8b\xe3\x46\x10\xc5\xef\xfd\x29\xfa\xb8\x39\x6c\xdc\x55\xd5\x2d\xb5\x40\x0c\x04\x0f\x0b\x0e\x6c\x12\x32\xf9\x07\x21\x07\x59\x6a\x19\x41\x2c\x09\x59\x3e\xcc\xb7\x0f\x55\xcf\x9e\xc0\x1e\x06\x8f\x7e\xea\x7e\xd2\xfc\xde\x74\xf9\x70\x3c\xbd\x9e\xe6\x69\xf7\x87\x5f\xb6\xa5\x7f\x2b\xbb\x1f\xa7\x79\xd8\xca\x6d\xb9\x6f\x7d\xf1\xe7\x72\x99\x66\xe7\x88\xfd\x30\xf5\xfb\xf3\xd2\x3e\xfa\x6b\xb7\x3a\xa7\xfb\xdf\xde\x6f\x7b\xb9\x9e\xe6\x71\xf1\x82\x75\xc3\x7d\x7d\xac\xf5\xfe\xf0\x6b\xb9\x4c\xb7\x7d\x7b\xf7\x9f\x7e\x18\x96\x73\xf9\xce\x0f\x65\x54\xfe\xf3\x36\x94\x6d\x9a\x2f\xfe\xd3\x8f\xdd\xda\xcd\xf4\x71\xe3\xed\xbe\xae\xff\x96\x6b\x99\x77\x1f\x8d\x95\x79\xb0\x4f\x77\x38\x7e\xed\xd6\x9f\xba\x6b\xf1\x07\xcb\xfa\x8c\x9d\x9f\xb1\xcc\xee\xfe\x51\xb6\xdb\xb4\xcc\x9e\xbe\x0f\x21\xfd\x8f\x7f\x7b\x5f\x8b\xa7\x47\xca\x5f\xbf\x9f\x5e\xfd\xdf\xe4\x29\x78\x4e\x49\xea\x7f\x1e\xfc\xcf\xaf\xcb\x50\x7c\x78\x3e\xeb\xf4\x7a\x5c\xee\xf3\xee\x29\xc5\x88\x27\x38\xc2\x9f\xd5\x2f\x43\xb9\xad\x5d\x5f\xb6\x6e\xbe\x14\xe7\x7d\x1b\x42\x08\x2f\xbe\x95\xe3\x97\x2f\x2f\xfa\xbe\xdf\xac\x70\xd5\x73\xe7\x34\x80\x3c\x77\x84\x30\x8e\x2f\x3e\xb8\x36\x10\xae\x49\xaf\x39\x55\xae\x0d\x0c\xc2\x4a\x12\xb1\x6b\x83\x80\x88\x92\xba\xca\xae\x0d\x11\x24\x2a\xa1\xc0\xd1\xb5\x21\x01\x25\x43\x9c\x35\xbb\x02\xaa\x0c\x25\xd1\xf0\x1a\xa8\x36\x54\x37\x9a\x9e\x81\xb2\xbd\x41\x88\x1a\xdf\x00\x35\x86\x24\x68\x7c\x07\xd4\x3d\xde\x53\xe3\xcf\x40\x67\x43\x99\x34\xbe\x07\xea\x15\x49\xa8\x35\x7e\x00\x1a\x0c\x09\x6b\x7c\x01\x2a\x86\x52\xd6\xf8\x11\x68\x34\x94\x63\x70\x2d\xc1\x14\x99\xa9\x18\x9a\xca\xb5\x04\x59\x64\xb2\xa2\x24\x76\x2d\xc1\x16\x99\xad\x58\x85\xec\x5a\x82\x2e\x32\x5d\x31\x57\xd1\xb5\x04\x5f\x14\x1f\x4e\x35\x1e\xbe\xc8\x7c\x25\xa9\x35\x1e\xbe\xc8\x7c\xa5\x4a\x34\x1e\xbe\xc8\x7c\xa5\x9c\x35\x1e\xbe\xc8\x7c\x55\x14\x35\x1e\xbe\xc8\x7c\x55\x31\x68\x3c\x7c\x91\xf9\xaa\x2a\x2d\x96\xe0\x8b\xcc\x57\xd5\x68\xb3\x04\x5f\x64\xbe\x6a\xd2\x6a\x09\xbe\xc8\x7c\xd5\x51\xab\x25\xf8\xa2\xf2\xe8\x5f\xe3\xe1\x8b\xcc\x57\xdd\x68\xb5\x0c\x5f\x6c\xbe\x32\x69\xb5\x0c\x5f\x6c\xbe\x72\xd4\x6a\x19\xbe\xd8\x7c\xe5\x5a\xab\x65\xf8\x62\xf3\x95\x1b\xad\x96\xe1\x8b\xcd\x57\xc3\x5a\x2d\xc3\x17\x9b\xaf\x26\x6a\xb5\x0c\x5f\x6c\xbe\x9a\x5a\xab\x65\xf8\x62\xf3\xd5\x34\x5a\x2d\xc3\x17\xe7\xe7\xff\xaa\xe6\x43\x18\x37\x60\x51\xcb\x65\x18\xe3\x0e\xac\xd6\x76\x19\xca\xd8\x94\x69\xfb\xfa\x08\x38\xe3\x1e\x8c\xb5\x5f\x86\x34\x1e\xc0\x92\x16\xcc\xb0\xc6\x05\xac\xd6\x86\x19\xda\x78\xc4\x21\x09\x5a\xb1\x3c\xce\x70\x00\x63\xed\x58\x20\x4e\x08\x2c\x69\xc9\x02\x73\xc2\xcf\x03\x16\x5c\x2b\x50\x27\xa6\x8e\x24\x68\xcd\x02\x77\x82\xb3\x29\xa2\x3d\x0b\xe4\x09\x0e\xa7\x24\x2d\x5a\x60\x4f\x70\x3a\x25\x6b\xd3\x02\x7d\x82\xe3\x19\x83\x56\x2d\xf0\x27\xf0\x17\x45\xbb\x16\xf8\x13\xf8\x8b\x49\xcb\x16\xf8\x13\xf8\x8b\x59\xdb\x16\xf8\x13\xf8\x4b\xa4\x75\x0b\xfc\x49\x9f\x04\x53\x21\xd8\xe4\x7a\x4e\x28\xfd\x5d\x67\xfc\xc7\xcc\xed\xef\xdb\x56\xe6\xdd\x26\xbc\x0d\x55\x9d\x89\xd3\x5c\x3e\xbe\x2d\xd6\x65\xd5\x5d\xf6\xf3\x5f\x00\x00\x00\xff\xff\x3e\x48\x0b\x81\x59\x06\x00\x00"); +func _ca ()([]byte ,error ){return _gb (_cge ,"90pv-RKSJ-V")};func Asset (name string )([]byte ,error ){_bbbe :=_f .Replace (name ,"\\","/",-1);if _decc ,_eafe :=_aaafd [_bbbe ];_eafe {_ddeea ,_gacb :=_decc ();if _gacb !=nil {return nil ,_e .Errorf ("Asset %s can't read by error: %v",name ,_gacb ); +};return _ddeea ._da ,nil ;};return nil ,_e .Errorf ("Asset %s not found",name );};func _cgefa ()([]byte ,error ){return _gb (_cafc ,"UniGB-UTF16-V")};func _aefb ()([]byte ,error ){return _gb (_cadf ,"KSC-Johab-V")};var _fcce =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd5\x4f\x6b\x63\x37\x14\x05\xf0\xbd\x3e\xc5\x5b\x4e\x17\xad\xa5\xfb\x4f\x12\x3c\x02\x25\x19\x68\x16\x93\x29\x4d\xa7\x2d\x94\x2e\x1c\x3f\x39\x18\x1a\xdb\xd8\xce\x22\xdf\xbe\xdc\x7b\x9c\x14\x66\x11\x9c\x1c\x9e\xce\x8b\x7f\x70\xd0\xea\xf6\xfe\xee\x7e\xbf\xbb\x4c\xab\x5f\x4f\x87\xcd\xe3\xb8\x4c\xdb\xdd\x7e\x39\x8d\xf3\xe1\xf5\xb4\x19\xd3\xd3\x78\xde\xed\x53\x2a\x34\x2d\xbb\xcd\xe5\xfd\xcf\xf8\xd8\xbc\xac\x8f\x29\xf9\xf9\xc7\xb7\xf3\x65\xbc\xdc\xef\xb7\x87\x89\xf1\xdc\xf2\x7a\xbc\x3e\x3b\x4d\xab\xdf\xc6\xf3\xee\x7c\x39\xbd\x4d\x9f\x7e\x5e\x0e\x4f\xe3\x87\x69\x19\x5b\xcf\xbf\x9e\x96\x71\xda\xed\x9f\xa7\x4f\xb7\x0f\x8f\xe5\x23\x7e\x7c\x3d\x1e\xff\x1d\x2f\x63\x7f\x99\x72\x64\x63\xbf\xc4\x67\x5a\xdd\x7e\x59\x1f\x1f\xd6\x2f\x63\x5a\xdd\x3e\x3c\xd2\x8f\xbf\x44\x1c\xe9\x1f\xe3\x74\xde\x1d\xf6\x53\xc9\x3f\xe5\x6c\xff\xe7\xbf\xbf\x1d\xc7\x54\xae\xc7\xbf\xdd\xdf\x7d\xdd\x6e\xcf\xe3\x32\xb5\x8c\xea\xd5\x5f\xdf\xee\xef\xa6\xbf\xcb\x54\xf2\x44\xca\xcd\xfe\xb9\x3e\xfa\xe7\x97\xc3\x32\xae\xef\x4f\x05\xdf\x65\x73\x58\xc6\xf9\xb8\xde\x8c\xd3\x7a\xff\x3c\xd2\x34\xcd\x54\xa8\xdc\x4c\x73\xfd\x5c\x3f\xdf\xf8\xbf\xf9\xdd\x13\xa9\xd1\xf5\xe4\x6e\x41\xf2\x7e\x82\x4a\x1d\x37\x93\xf6\x6e\x69\x26\x42\x44\x1e\x59\xee\x39\xcd\xc4\x88\x38\xa2\xd2\x24\xcd\x24\x88\x24\x22\xaa\x2d\xcd\xa4\x88\x34\x22\xae\x94\x66\x32\x44\x16\x91\x98\xd7\x57\x44\x35\x22\x35\xaf\x6f\x88\x5a\x44\xa6\x5e\xdf\x11\xf5\x88\xaa\x78\xfd\x1a\xd1\x3a\xa2\x26\x5e\xff\x84\xe8\x29\xa2\xce\x5e\xbf\x41\xb4\xf1\xa8\x66\xf6\xfa\x05\xd1\x12\x51\x21\xaf\x1f\x88\x46\x44\x54\xbc\x7e\x8b\x68\x1b\x11\x17\x4a\x33\xe7\x88\x38\x47\x24\xd9\xd2\xcc\xf0\xe2\xf0\xaa\x9a\x73\x9a\x19\x5e\x4c\x88\xba\xa4\x99\xe1\xc5\xe1\x55\xad\xb5\x34\x33\xbc\x38\xbc\x6a\x6d\x5e\x0f\x2f\x0e\xaf\xda\xaa\xd7\xc3\x8b\xc3\xab\xf6\xea\xf5\xf0\xe2\xf0\x6a\xd9\xbc\x1e\x5e\x1c\x5e\xad\xa8\xd7\xc3\x8b\xc3\xab\x91\x7a\x3d\xbc\x38\xbc\x1a\x8b\xd7\xc3\x8b\xc3\xab\x89\x78\x3d\xbc\x38\xbc\x9a\xb2\xd7\xc3\x8b\xc3\xab\x19\x79\x3d\xbc\x38\xbc\x5a\x25\xaf\x87\x17\x87\x57\x6b\xc5\xd2\x2c\xf0\x92\xf0\x6a\xbd\xe4\x34\x0b\xbc\x24\xbc\x7a\xce\x92\x66\x81\x97\x10\xa2\xde\xd2\x2c\xf0\x92\xf0\xea\xa5\x53\x9a\x05\x5e\x12\x5e\x9d\x9a\xd7\xc3\x4b\xc2\xab\x73\xf3\x7a\x78\x49\x78\x75\xa9\x5e\x0f\x2f\x09\xaf\xae\xe6\xf5\xf0\x92\xf0\xea\x66\x5e\x0f\x2f\x09\xaf\x5e\xd5\xeb\xe1\x25\xe1\xd5\x9b\x7a\x3d\xbc\x24\xbc\x7a\x17\xaf\x87\x97\x84\x57\xc9\x99\xbd\x1f\x60\xb2\x20\x2b\xec\x2f\x80\x98\x0c\x64\x44\xfe\x06\x90\xc9\x16\x19\x53\x4e\xb3\xc2\x4c\x33\x32\x29\x92\x66\x05\x9a\x16\x64\x9a\x5b\x9a\x15\x6a\x4a\xc8\x2c\x53\x9a\x15\x6c\xca\xd7\xcc\xd7\xab\x70\x53\x41\x56\x7d\xbe\x0a\x38\x55\x64\xcd\xf7\xab\x90\x53\x43\xd6\x7d\xc0\x0a\x3a\x0d\xba\x52\xb2\x2f\x58\x61\xa7\x0d\x59\xf1\x09\x2b\xf0\xb4\x23\x23\xdf\xb0\x42\x4f\xd7\xc8\xd8\x47\xac\xe0\xd3\x27\x64\xe2\x2b\x56\xf8\x29\xfc\x8a\xfa\x8c\x15\x7e\x0a\xbf\x62\xbe\x63\x85\x9f\xc2\xaf\x54\x1f\xb2\xc2\x4f\xe1\x57\x9a\x2f\xd9\xe0\x67\xf0\x2b\xdd\xa7\x6c\xf0\x33\xf8\x51\xf6\x2d\x1b\xfc\x0c\x7e\x54\x7c\xcc\x06\x3f\x83\x1f\x91\xaf\xd9\xe0\x67\x72\xcd\x7c\xce\x06\x3f\x83\x1f\xb1\xef\xd9\xe0\x67\xf0\x23\xf1\x41\x1b\xfc\x0c\x7e\xa4\xbe\x68\x83\x9f\xc1\x8f\xcc\x27\x6d\xf0\x33\xf8\x51\xf5\x4d\x1b\xfc\x0c\x7e\xd4\x7c\xd4\x06\x3f\x83\x1f\x75\x5f\xb5\xc1\xcf\xe0\xc7\xd9\x67\x6d\xf0\x33\xf8\x71\xf1\x5d\x1b\xfc\x0c\x7e\x4c\x3e\x6c\x83\x9f\xc1\x8f\xd9\x97\x5d\xe1\x57\xe1\xc7\xe2\xd3\xae\xd7\x6b\x04\x7e\xac\xbe\xed\x0a\xbf\x4a\x22\x9e\x59\xc9\x71\xc1\xbc\x5f\x24\xfe\xbb\xdf\xbf\x1f\x37\xe2\xe6\xf5\x74\x1a\xfb\x4b\xdc\xbe\x71\xf3\xf9\xd5\xb5\xdb\x8f\x8f\x9b\xfc\x78\x38\xfa\xa9\xf8\xf9\x2f\x00\x00\xff\xff\xb9\xb9\xd4\x19\xf5\x07\x00\x00"); +func _bbfc ()([]byte ,error ){return _gb (_fecc ,"ETHK-B5-H")};func _eggc ()(*asset ,error ){_dbb ,_dee :=_feccg ();if _dee !=nil {return nil ,_dee ;};_agg :=bindataFileInfo {_ee :"HKgccs-B5-H",_ffd :11477,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492364,0)}; +_fabcf :=&asset {_da :_dbb ,_dc :_agg };return _fabcf ,nil ;};var _cgfac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x6f\x1c\xb9\x11\xbd\xcf\xaf\xe8\xa3\x73\x70\x44\xb2\xc8\x6e\x12\x08\x04\x04\x36\x82\xc8\x80\x93\x20\xb2\x9d\x00\x41\x0e\x3d\xd3\xa4\x32\x40\x34\x1a\x8c\xa4\x83\xff\xfd\x82\xaf\x86\xaf\xb4\xda\x5d\x60\xe1\x7e\x55\xc5\xfa\x22\xeb\x43\x73\xf3\xe9\xee\xf3\xdd\xe9\xf8\x32\xdd\xfc\xe3\xf2\x74\xb8\xaf\x2f\x53\x3b\x9e\xb6\x4b\x7d\x7e\x7a\xbd\x1c\xea\xb4\xaf\x0f\xc7\xd3\x6e\xe7\xc3\xb4\x1d\x0f\x2f\x03\xe2\x9f\xc3\xe3\x7a\xde\xed\x6e\xbe\x9f\x8e\x5f\xee\xee\x83\x73\xf1\xe3\xf7\x6f\x7f\x91\xf0\xf1\xaf\xd3\xeb\x73\xbd\x32\x3f\xdd\x7d\xbe\xff\xf9\xfc\x52\x1f\xef\x4e\xed\x69\x12\x55\xb2\xbd\x9e\xaf\x8a\xa6\xe9\xe6\x9f\xf5\xe1\xf8\xfc\x72\xf9\x39\x7d\xf8\xf3\xf6\xb4\xaf\x7f\x98\xb6\xda\x3a\xfd\xef\x97\xad\x5e\x8e\xa7\x87\xe9\xc3\x97\xf5\xbc\x9e\x3c\x19\xf7\xaf\xe7\xf3\xff\xeb\x63\x3d\xbd\x4c\x0b\x68\xf5\xb4\xe1\xdf\xdd\xcd\xa7\xaf\xeb\xf9\x6f\xeb\x63\x9d\x7e\xeb\xd4\x0f\x88\x40\xe2\x47\xbd\x3c\x1f\x9f\x4e\x93\xff\xa3\x73\xb3\x91\xbf\xfd\x3c\xd7\xc9\x5f\x35\xfd\xfb\xfb\xdd\xe7\xe9\x3f\x7e\xf2\x6e\x0a\x69\xf6\xf9\xbf\x57\xfa\xbf\xbe\x3e\x6d\x94\xf2\xce\x69\x1c\x87\xe3\x76\xf8\xdf\x7a\xd9\xfd\xc9\xe1\xbf\xbd\xbb\x9d\x72\x98\x8b\xe2\xe0\xbc\xbb\x9d\x96\x5c\x84\x38\x01\x07\xe2\x19\x38\x0d\x1c\x94\x9f\x89\x95\xbf\x0c\x2c\xa1\xeb\x5f\xa8\x4f\xa4\xe3\x3c\xb0\x2f\xdd\x9e\x64\x42\xdf\xe1\x4c\x18\x3a\x2c\x84\xd2\xe1\xd0\xed\x0f\xf1\x76\xca\xe2\x3d\x71\x02\x76\xc4\x33\xf0\xf0\xdd\xd7\x8e\xdd\x1b\xbc\x00\x47\xe2\x0c\x4c\x7d\xb5\x00\x0f\x5f\xa5\xec\x6f\x27\x1f\x7c\xcc\x24\x1c\x40\x98\x8d\xb0\xa9\xc4\x42\x42\x05\x21\x39\x12\xda\xbb\x23\xab\xd3\x23\x85\x04\xaf\x47\x66\x12\xc2\xfb\x23\xa2\x12\x89\x84\xa8\x04\x93\x48\xef\x8f\xcc\x2a\x41\xc7\xd6\x1e\xfb\x5b\x81\x0c\x6c\xfc\x02\x6c\x4e\xac\xef\x35\xee\xbb\xc0\x12\x88\x0f\xc0\x9e\x78\x03\x1e\x81\x27\x77\xb8\x9d\x96\xc8\x87\x93\xdc\x06\xbc\x10\x57\xe0\x99\xb8\x01\x0f\x7b\x09\x0f\x33\x39\x21\xf6\xc0\xd4\xe7\x03\x70\x24\x16\x60\xea\xf3\x11\xfa\x3c\x71\x02\x36\x7d\x33\x70\x20\x5e\x80\x4d\x5f\x06\x2e\xc4\x05\xfa\x4d\xdf\x0a\xcc\x78\xfd\x1e\xd8\xf4\xf5\xf8\x53\x30\x7b\x1b\x30\xe3\xf7\x15\xd8\xe2\x69\xc0\xb4\x1f\x10\x7f\x60\x3c\x01\xf1\x07\xfa\x13\x10\x7f\x60\xbe\x50\x98\x49\xa8\x0f\x85\x99\x84\xf6\xc3\x02\x4c\xff\x42\x06\x36\x7b\x88\x8f\xc5\x96\x02\xe2\x13\xb3\x8f\xf8\xc4\xec\x21\x3e\x4f\x7b\x02\x7f\x3d\xe5\x25\x22\x1f\xd4\x27\xb0\xe7\x78\x3e\x42\x3e\x32\x9f\x11\xf1\x45\xe6\x33\x22\xbe\x48\x7f\x23\xee\x97\x95\x96\x22\xf4\xb3\x8c\x52\x44\xfc\x91\xf6\x23\xe2\x8f\x66\x0f\xf1\x27\xe6\x23\xc2\x9f\x34\xf4\xcf\xfd\xbe\x72\x08\x9e\xb8\xbf\xe7\xe0\x0b\x71\x05\xdf\xe4\x1b\xf0\xf0\x77\x71\x5a\xb5\xcb\x30\xb8\xf4\xba\xce\xc1\x5d\x15\x88\xc3\x83\xc8\xe3\x81\x89\xc3\x83\x28\xa3\xec\xc5\xe1\x01\x94\x51\xb1\xe2\x90\x90\xe2\x33\xb1\x00\x53\x1f\x02\x2e\xc3\x01\x71\x08\xb0\x8c\x00\xc4\xc5\x02\x1c\x06\x9e\x71\x7e\x3c\x48\x71\x59\x31\xfd\xc9\xaa\x2f\x11\xab\x3e\xfa\x97\x2b\xf0\xd2\x67\xda\x18\x2a\xbb\x1c\x7f\x67\xca\x88\xeb\x9d\x33\x87\x85\xb6\x0b\x92\xbb\xd0\x37\x34\xc1\x59\xc4\x08\x08\x36\x30\xd8\x55\x9d\x63\xb0\x2b\x9c\x13\x06\xbb\xc2\xb9\x37\xe7\x11\xac\xd0\xe0\x01\xe7\x85\xc1\x56\xc5\x0c\xb6\xaa\x3e\x06\x5b\x55\x1f\x83\xad\x08\x56\x78\x19\x4d\x2f\x6f\xd8\x0b\xad\xdd\x4e\x41\x5c\x1a\x0e\x8a\xeb\x73\x55\x46\xdf\x17\x71\x7d\xee\xc9\x28\x17\x11\xd7\x5b\xb6\x2f\xb3\x09\x60\x78\xd1\x43\x71\xb3\x0a\x78\x12\x16\x25\x24\x12\xb2\x12\xec\x48\x51\x82\x19\x59\x95\x30\x93\xb0\x07\x61\x31\xab\x07\x25\x04\x12\xf4\x15\x52\x00\x6d\xb3\x44\x7a\xe1\xe1\x66\x34\x3e\x66\xac\x18\x56\x2f\xb3\x11\x32\x04\x98\x18\xaf\x4e\x66\x5a\x44\x21\x49\x62\x14\xbd\x91\x65\xe1\x55\x4b\x40\xe6\x22\x83\x0a\x9a\x39\xe6\x5e\x7a\xa7\xeb\x04\xd3\x30\x23\x06\x13\xc0\x65\x46\x26\xae\xb7\xb2\x2c\xac\x34\x41\x2b\x2b\x6f\x3c\xd8\x54\x21\x5d\x10\x8f\x03\x74\x41\x50\xdb\xce\x51\xa3\xe8\xed\x46\x62\x78\x30\x9a\x93\x88\x2c\x38\xe0\x4d\x20\x2b\x81\x3e\x48\x41\x94\xf4\x41\x56\x15\x30\x15\x7b\x08\x98\x4f\x07\x15\x60\xa2\x65\x53\x02\xbd\x8c\x5e\x09\x3c\x12\x91\x59\xf3\xaa\x77\x88\x2c\xc9\xb0\x3a\x15\x8c\x80\x2a\xb2\xcb\x8e\x2b\x12\xc5\x28\x22\x1e\x8b\x39\x1d\x71\x95\xac\x12\x49\xa8\x62\xbb\xba\xa4\x79\xb3\x3c\x25\x51\x82\x49\x44\x25\x30\xb3\x09\x3e\x46\x9e\x58\xb0\x83\xb9\x37\x04\xcd\x83\x39\xb1\x68\x1e\x22\x1f\xd8\x52\x95\xc0\xf7\xb0\x34\xbc\xb0\xab\x8a\xd6\x1c\xba\xd1\x28\x9b\xd6\x1c\x5a\xfb\x42\xbe\xd7\xdd\x67\xcc\xfa\xd6\xb4\x55\x8f\xbb\x69\x4d\xf0\x80\xc6\x6e\xd2\x9a\x80\xef\xa8\x40\x1a\xba\x85\x1b\x38\xa9\x7c\x22\xd6\x6e\x32\x13\xeb\x79\xc3\xf5\xed\xa8\x68\x0d\xdd\x2b\xe7\xf2\xab\xd6\x2b\x0b\x5b\xef\x65\x3d\x3d\xd4\xeb\xdc\x91\xbe\xe1\x8f\x4f\x8f\x36\x9b\x6c\x29\x23\x2f\xb9\x7e\x57\x31\x73\xfe\xf6\xf9\x35\x3e\xbb\xb9\xb8\x70\xb4\xf6\xde\x35\x3e\xb1\x45\x65\xdb\xea\x66\x63\x61\x81\xe2\xa6\x9f\x7a\xbb\x1a\x9f\x05\x2c\x53\xb8\x1a\x6b\x0f\x96\xad\x1d\x42\x56\xc0\x84\x17\x3a\xdf\xcb\x74\x7c\x62\x59\xf2\xb6\x5c\x78\xb2\x04\x7b\x02\xe7\x72\x92\x64\x2c\xac\x00\x8e\x6e\xf4\x1a\x1c\x9f\xd8\x6e\xf8\xa7\x42\x12\xb3\x85\xcb\x4c\xd1\x16\x07\x3b\x85\xfa\x48\x6c\x9e\xce\x0d\x37\xc4\xf5\x74\x2e\x39\x73\x80\x30\x1b\xe2\xb0\xc9\x16\x47\x96\x8f\xc6\xc2\x58\x72\x1c\x6b\x7e\x36\xd6\x82\xbb\xb4\x91\xe8\xdf\x68\x2c\x78\xb0\x6c\xba\xae\x24\xf2\xca\x8c\xc7\xce\xc9\xd7\x8c\xd5\xd0\xb5\x58\x8c\xbe\x8d\xd7\x21\xbe\x15\x1d\xd0\x42\xde\x6a\xbc\x06\x9e\x95\xa4\x85\x2d\xd8\x82\x7c\xb1\xd6\xd9\x6b\x6b\x34\x7e\xd1\xd9\xc3\xca\xf5\xab\xf1\xb4\x05\x67\xea\xec\xdb\xd0\x68\xcf\x5e\x79\x36\x11\xb2\xf1\x74\xba\x14\xeb\xed\x66\x4f\x9c\x76\x6d\x36\x06\x89\xc6\x4b\xca\xb3\x16\x6f\xe7\xa2\x9e\x0b\xd6\x06\xc5\x78\xb3\xf2\xac\x05\xee\x8d\xa7\x9d\x29\x58\x43\xb6\x18\x92\xea\xb4\xb9\x99\x92\xf1\x54\xe7\xb8\xbd\xd6\xf8\x56\x5a\x43\xe5\xe4\x42\x56\x6a\x64\xcd\xd7\x3f\x24\xfd\xb5\x2b\x68\x13\x00\x78\x5c\xcf\x3b\xfe\xde\x70\x78\xbd\x5c\xea\xe9\x05\xbf\x6e\xe0\xc7\x84\x69\xab\xed\x78\xaa\xfc\x19\xe5\xfc\x74\xee\xa7\xf0\xff\x2f\x01\x00\x00\xff\xff\x7d\x93\x70\xb7\x72\x11\x00\x00"); +func _bcdbd ()([]byte ,error ){return _gb (_cfaef ,"WP-Symbol")};func _gead ()(*asset ,error ){_ggca ,_dcfb :=_cgff ();if _dcfb !=nil {return nil ,_dcfb ;};_afgb :=bindataFileInfo {_ee :"UniKS-UTF8-H",_ffd :143593,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493060,0)}; +_agee :=&asset {_da :_ggca ,_dc :_afgb };return _agee ,nil ;};var _gaaec =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xd6\x4b\x6f\x1b\xb7\x17\x05\xf0\x3d\x3f\x05\x97\xf9\x2f\xf2\x37\xdf\x0f\x80\x18\x20\xef\x7a\x91\xa6\x68\x9a\xb6\x40\xd1\xc5\x90\xbc\x34\x04\xd4\x92\x20\xcb\x0b\x7f\xfb\xe2\xde\xe3\xb8\x45\x17\x89\xac\xa3\xcb\xa3\x99\xdf\x10\x9a\xb9\x79\x77\xfb\xfe\xf6\x78\xb8\xea\x9b\x9f\x2e\xa7\xf1\x95\xae\x7a\x1d\x8e\xf3\x42\x0f\xa7\xc7\xcb\x20\xdd\xe9\xee\x70\x54\xca\x3a\x3d\x0f\xe3\xfa\xfd\xad\xbc\x8c\xfb\xfd\xac\x14\xaf\xff\xfa\xf4\x70\xa5\xfb\xdb\xe3\x3a\x69\x8f\xb9\xf9\x78\x7e\x9e\xd5\xfa\xe6\x67\xba\x3b\x3c\x5c\x2f\x4f\xfa\xd5\x9b\x79\xea\xf4\x3f\x3d\x69\x71\xfe\xe5\x32\xe9\x72\x38\xde\xe9\x57\x9f\xde\xda\x97\xf4\xeb\xe3\xf9\xfc\x17\xdd\xd3\xf1\xaa\x8d\x64\x74\x9c\xf2\xaa\x6e\xde\x7d\xde\xcf\x3f\xee\xf7\xa4\x6f\x3e\xbd\x7d\xfd\xe1\xdb\xbb\xd7\x3f\xc8\x07\x92\xff\x4a\x97\x87\xc3\xe9\xa8\xeb\xff\x8d\x49\xff\xc4\xbf\x3c\x9d\x49\xdb\xe7\xf5\xdf\x6e\xdf\x7f\x59\xeb\x81\xae\xda\x1a\x74\xdf\xfc\xfe\xed\xf6\xbd\xfe\xc3\x6a\x6b\xb4\x8b\x3e\x99\x3f\x9f\x47\x7f\xfb\x7c\x9a\xf4\x7c\x00\xca\xe1\x5c\xc6\x69\xd2\xc3\x79\x1f\x74\xd9\x8f\x77\xa4\xb4\x6e\xc6\x6c\x5a\xeb\x56\xcc\xc6\xef\xde\xd8\x37\x76\xd3\xed\xe3\x87\x8f\x1f\x36\x3e\xea\xff\xcc\x2b\x8b\x9a\xe3\xe9\x3a\x69\x21\x93\x86\x66\xd7\xa6\x73\xb6\x89\x17\xfd\xfb\x53\x55\xcd\xf3\x37\x1f\xe6\xf3\xbc\xe3\x79\xfe\x4f\xe6\x9b\xe3\x2f\xcc\xb4\xe9\x62\x83\x6a\xbb\xdd\xf9\xfd\x6e\x17\x6d\xba\x26\xd5\x76\xd7\x25\x70\xe4\x36\x6d\xab\xe1\x84\x22\x12\xda\xb4\x0b\x92\x2c\xcc\xac\xb1\x69\x17\x39\xf1\xa8\xf1\x5c\xe3\x92\x53\x6d\x0f\x48\xc2\xf2\x9b\xf6\x91\x9b\x23\x92\xb8\xd2\xa6\x83\xaf\xaa\xed\x09\x49\xea\x65\xd3\xd1\x45\x4e\x06\x92\x15\x37\x1d\x03\xcf\x64\xcc\x64\xfe\x20\x19\x6e\xce\x13\x09\x1f\x44\xf2\xbc\xaa\x60\xa6\x0c\xb3\xe9\x94\x0a\x27\x43\x8e\xb9\xd0\xbe\xe9\x6c\xf8\x08\xeb\x1e\x38\xa9\xc4\x72\x9e\x67\x76\xac\xda\xd7\x0b\x46\x47\xd2\xb9\xa7\x9a\xa2\x5a\x37\x92\x74\x23\x3c\x7c\xee\x1d\x60\x5d\xc0\xac\xf1\x41\xb5\xee\x10\x39\x89\xac\xe3\x75\xf0\xe8\xe2\x61\x9d\x73\xaa\x75\x80\xf4\x20\x91\xe7\x4b\xd1\x21\xd2\xa3\x44\xc1\x72\x3d\x48\x7a\x92\x28\x1a\xae\x87\x40\xcf\x88\x2a\xd7\xe3\x84\x7b\x91\x28\x55\xae\xaf\x88\xaa\x44\xb9\x70\x3d\x4e\xb0\xcb\x09\xda\x52\xb8\x1e\x67\xd8\xbb\x44\x35\x73\xfd\x40\x34\xe4\xd2\x19\xd6\xeb\x13\xd1\x94\xc8\xf2\xe5\xec\x84\x88\x24\x72\x7c\x3d\xfb\x42\xb4\x24\xf2\xbc\x0d\x06\xb8\x86\x70\xb9\x10\x82\x6a\x03\x5e\x43\xbc\x5c\x64\xf8\x01\xaf\xe1\xb0\x59\xbc\x53\x6d\xc0\x6b\x60\xff\x64\x97\x54\x1b\xf0\x1a\xe2\xe5\x8a\xe3\x7a\x78\x0d\xf1\x72\x95\x2f\xd9\x80\xd7\x10\x2f\x6f\xf8\x9a\x0d\x78\x0d\xf1\xf2\x96\xb7\xcc\x80\xd7\x28\x88\x78\x9f\x0f\x78\x0d\xf1\xf2\x8e\x37\xfa\x80\xd7\x10\x2f\xef\x0b\xd7\xc3\x6b\x88\x97\x0f\x99\xeb\xe1\x35\xc4\xcb\xc7\xcc\xf5\xf0\x1a\xe2\xe5\x53\xe2\x7a\x78\x0d\xf1\xf2\x39\x71\x3d\xbc\x86\x78\xf9\x12\x83\x6a\x13\x5e\x53\xbc\x7c\x0d\x45\xb5\x09\xaf\x29\x5e\xc1\x04\xa7\xda\x84\xd7\x14\xaf\x60\x7d\x52\x6d\xc2\x6b\x8a\x57\x70\xde\xa8\x36\xe1\x35\xc5\x2b\x78\xc7\xf5\xf0\x9a\xe2\x15\x82\xe5\x7a\x78\x4d\xf1\x0a\xd1\x72\x3d\xbc\x66\x5e\x75\xd3\x21\x19\xae\x87\xd7\x14\xaf\x90\x6a\x54\x6d\xc2\x6b\x8a\x57\xc8\xa5\xaa\x36\xe1\x35\xc5\x2b\x94\xe2\x55\x9b\xf0\x9a\xe2\x15\x6a\xce\xaa\x4d\x78\x4d\xf1\x8a\x26\x5b\xd5\x26\xbc\xa6\x78\x45\x9b\xb8\x1e\x5e\x53\xbc\xa2\x8b\x5c\x0f\xaf\x29\x5e\xd1\x47\xaf\x1a\xc1\x8b\xc4\x2b\x86\x90\x55\x23\x78\x91\x78\xc5\x18\xac\x6a\x04\x2f\x12\xaf\x28\xbf\x10\x04\x2f\x12\xaf\x98\x5d\x55\x8d\xe0\x45\xe2\x15\x8b\xe3\x7a\x78\x91\x78\xc5\x6a\xb9\x1e\x5e\x24\x5e\xc9\x58\xae\x87\x17\xc9\xfe\x4a\xd6\x70\x3d\xbc\xa8\x20\xaa\x5c\x0f\x2f\x12\xaf\xe4\x2a\xd7\xc3\x8b\xc4\x2b\xf9\xc2\xf5\xf0\x22\xf1\x4a\xa1\x70\x3d\xbc\x48\xbc\x52\xcc\x5c\x0f\x2f\x12\xaf\x94\x12\xd7\xc3\x8b\xc4\x2b\xe5\xc4\xf5\xf0\x22\xf1\x4a\x25\x66\xd5\x16\xbc\x96\x78\xa5\x1a\xad\x6a\x0b\x5e\x4b\xbc\xb2\x09\x51\xb5\x05\xaf\x25\x5e\xd9\xf2\x2f\xf3\x82\xd7\x12\xaf\xec\xbc\x57\x6d\xc1\x6b\x89\x57\xf6\x8e\xeb\xe1\xb5\xc4\x2b\x07\xc7\xf5\xf0\x5a\xe2\x95\xa3\xe5\x7a\x78\x2d\xf1\xca\xc9\x54\xb9\xd1\x7d\xbf\x3d\xf1\xdf\xfc\x54\xf0\x72\xa3\x1e\x8f\x97\x0b\x1d\xaf\xf2\x4c\x20\xf7\x63\xbe\xa1\x1e\x8e\xf4\xf2\x7c\x71\x3e\x9d\x79\x95\xfc\xfb\x3b\x00\x00\xff\xff\xf6\x6c\x4f\x32\x8b\x08\x00\x00"); +func _eadea ()(*asset ,error ){_fccf ,_eeccc :=_fbag ();if _eeccc !=nil {return nil ,_eeccc ;};_egaec :=bindataFileInfo {_ee :"UniKS-UTF8-V",_ffd :738,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493065,0)};_gfgcg :=&asset {_da :_fccf ,_dc :_egaec };return _gfgcg ,nil ; +};func AssetExists (name string )bool {_ ,_cbfbc :=_aaafd [_f .Replace (name ,"\\","/",-1)];return _cbfbc ;};var _dac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xd4\xcf\x6e\xe3\x46\x0c\x06\xf0\xbb\x9e\x62\x8e\xdb\xc3\xd6\x9a\x19\xcd\x3f\x60\x61\x60\x11\x1f\xea\x2d\xd2\x14\x71\x93\x16\x28\x7a\x90\x25\xca\x10\x50\xcb\x82\x2c\x1f\xf2\xf6\x05\xbf\xcf\x75\x0e\x01\x93\x9f\x86\x14\x49\x05\xb3\x79\xda\xef\xf6\xd3\xb8\x9a\xcd\xef\xcb\xa5\x3b\xc8\x6a\x86\x71\xea\x17\xb9\x5e\x6e\x4b\x27\xe6\x28\xa7\x71\xaa\x2a\xeb\x4c\x3f\x76\xeb\xff\x7f\x22\x74\xe7\x76\xae\xaa\xcd\xf7\xbe\xff\xfa\xfa\xeb\xe1\xc7\xd7\x5f\xcc\xed\x2a\x77\x7c\xda\xef\x0e\x1f\xd7\x55\xce\xfb\x69\xb8\x18\xcf\xe4\xfe\x36\xdf\x0b\x18\xb3\x79\x95\xd3\x78\x5d\x97\x0f\xf3\xe5\x7b\x7f\x39\xca\x4f\xa6\x97\x41\xfd\x65\xe9\x65\x19\xa7\x93\xf9\xf2\xa3\x9d\xdb\xc9\x3e\x1e\x1c\x6e\xf3\xfc\xaf\x9c\x65\x5a\x8d\x85\xc9\xd4\x23\x56\x9b\xa7\xe7\x76\xfe\xad\x3d\x8b\xf9\x6c\xe6\x1d\x8f\xf0\xe4\x5d\x96\xeb\x78\x99\x8c\xad\x7f\xae\xeb\xf8\xe9\x7f\x7c\xcc\x72\x2f\x55\x6d\xde\xf6\xbb\x97\x61\xb8\xca\x6a\x52\xae\x79\xe6\xaf\xb7\xfd\xce\xfc\x6d\x8d\xad\x8d\x0b\xde\xa5\x7f\xee\x47\xff\x7c\xbe\xf4\x8f\xc4\x90\x38\x52\x37\xf6\x4b\x3b\x9d\xa4\xfa\x96\x6d\x63\xb7\x46\x83\xdb\x9a\x94\x73\x02\x79\x92\xdf\x9a\xec\x62\x06\x35\xa4\x46\x29\x35\x4a\xa1\x06\x05\x8b\xc4\x02\x3a\x92\x7a\xa5\x62\x95\x22\x4f\xc5\x06\x84\xc4\x18\x48\x41\x6b\x65\x07\x8a\xa4\x88\xf2\x01\x94\x48\x09\xa7\x6a\x50\x26\x65\x9c\x42\xab\xb1\x80\x52\x8b\xf2\xda\x84\x2b\x83\x12\x42\x2a\x56\xbb\x77\x2d\x66\x44\x48\xc5\xe2\x54\xeb\x49\x5e\xc9\xd5\xa0\x40\x0a\x20\x0b\x4a\xa4\x04\xd2\x56\x5d\xc7\x5a\x1d\x6a\x39\xaf\x24\x24\x21\x35\x20\x96\x17\x96\x0f\x20\x96\x17\x96\x8f\xa0\x8e\xd4\x81\x74\x20\x37\x30\x71\xc0\xa2\xa3\xd6\xf2\x0d\x56\x88\x90\x8a\xcb\x20\x47\x72\xa0\x02\x6a\x48\xba\xe8\xe2\x6b\x50\x24\x45\x90\x05\x65\x52\x06\xe9\x40\x3e\xb2\x56\x44\x2d\xaf\x03\xf9\x8c\x26\x10\x52\xf1\x68\x22\x07\x12\xba\xf7\x01\x94\x48\x58\x8e\x8f\x20\x21\x09\x48\x07\xf2\x85\x89\x85\x4d\xe4\xea\x9b\x74\x49\x9b\x60\x48\xa5\xf1\xa0\x42\x2a\xa0\x1a\xd4\x92\xda\xad\xc9\x5e\x67\x94\x2e\x1d\x49\x47\x9c\xb2\xa0\x8e\xd4\xe9\x29\xcf\xc4\x9e\x24\x20\x24\xe6\x1a\x94\xb1\xc2\x26\x80\x2c\xc9\xe2\x14\xfa\xca\x8e\x84\x4d\x34\x09\xe4\x49\xd8\x44\xc0\x1b\x73\x43\xd2\x2f\xe4\x1b\x26\x06\x12\x96\x13\x30\x50\x8e\x24\x8c\x1d\xd0\x17\xf6\xc5\xa0\xdf\x09\xc4\x4d\x68\xc8\xfe\xfe\x46\x6e\x22\x63\x13\x81\xa7\xb8\x89\x8c\x4d\x70\x5f\x99\x9b\xc8\x18\xbb\xe1\x8c\x1c\x5b\x43\xf6\x81\x7d\x09\x09\x9b\x08\x2c\x3f\x90\x06\x10\x6a\x15\x2e\x47\x43\xf6\x21\x82\x38\x90\x86\xec\xf5\x3f\x5a\x86\x82\xe5\x20\x64\xef\xbd\x5e\x68\x8f\x6b\x44\x7f\xd7\xab\xf4\x71\xb5\x75\xb7\x65\x91\x69\xc5\x45\x8a\xeb\x4b\xef\x9f\x71\x92\xc7\x4d\x3d\x5f\x66\xcd\xc2\xcf\x7f\x01\x00\x00\xff\xff\x7e\x3d\x1d\x6d\xd5\x05\x00\x00"); +var _gebe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xbd\x4b\xaf\x6e\xcd\x91\xa0\x35\xf7\xaf\xd8\xc3\x66\xd0\xd4\xca\x7b\xa6\x64\x1d\x09\xca\x58\xb8\xa5\x06\x44\x75\x01\x12\x62\xf0\xae\x5b\x61\x89\xfa\x6c\xd9\xae\x41\xfd\x7b\x94\xcf\x13\xe7\x73\x0b\x21\xed\x33\x39\x6b\xed\x77\xe5\x2d\x32\x32\xee\x19\xf1\x0f\xff\xf8\x87\xdf\xfd\xe1\x97\x3f\xfe\xed\xeb\x1f\xfe\x97\xbf\xfc\xe9\xfa\xa7\xe7\x6f\x5f\xef\x1f\x7f\xb9\xff\xf2\xfc\xf5\x4f\xff\xf6\x97\xeb\xf9\x3a\x9f\x7f\xf9\xe3\x2f\xbf\xf9\x4d\xca\x5f\xf7\x1f\xaf\xbf\xfd\x7c\xe5\xbf\xeb\x5f\x3f\x7f\xfe\xcd\x6f\x76\xfb\x7f\xfa\xf7\xbf\xfe\xed\xf9\xd7\x3f\xfc\xf2\xfe\xe9\xab\xf8\xdd\xfd\x6f\x7f\x8e\x6f\xbf\xbe\xfe\xe1\x7f\x7d\xfe\xe5\x8f\x7f\xfd\xdb\x5f\xfe\xfd\xeb\x3f\xfc\x77\xf7\x9f\xce\xe7\xbf\xf9\xba\x9f\x77\xff\xfd\x7f\xfe\xcb\xfd\xfc\xe5\x8f\xbf\xfc\xcb\xd7\x7f\xf8\x4f\x9f\x3f\x7f\x7e\x49\xbf\xfe\xf0\x4f\xff\xf6\xe7\x3f\xff\x3f\xcf\xbf\x3e\xbf\xfc\xed\x6b\xf0\xb7\xe7\x97\x9b\xff\x7f\xf3\x0f\xff\xf8\x9f\x3f\x7f\xfe\x9f\x3e\xff\xfa\x7c\xfd\xc3\x3f\xff\xf2\xc7\xff\xf4\x87\x7f\xca\xc7\x51\xff\xe3\x3f\xff\x97\xdf\xa7\xfe\x1f\xff\x47\x3e\xe1\x8b\xff\xed\xf9\xcb\x5f\xff\xf8\xa7\x5f\xbe\xd2\x7f\x7b\xe4\xf4\xf7\x3f\xff\x97\x7f\xff\xf3\xf3\x95\xa2\xa7\xff\xe3\x9f\xff\xf0\xbb\xaf\xff\x33\x7d\xa5\xe3\x2b\xb7\x9e\xd6\xff\x15\x7f\xff\xdf\xff\xf3\x9f\xee\xe7\xeb\xf0\xad\xb8\x8a\xeb\x4f\xf7\xf3\xd7\x3f\x7f\xae\xe7\x2f\x9f\x5f\xfe\xe5\xf9\xcd\xd7\xd7\x6f\x8f\xe3\x38\x7e\x7c\xed\x7f\xbf\xfd\xdd\xf8\xfd\xef\x7f\xec\xbf\xfd\x6e\x1e\xc7\xef\xfe\x71\xff\xfd\xb7\xbf\xfb\xef\x7f\xff\xfb\xdf\xfd\x3e\xfe\xfe\x3f\xfc\xfd\xdb\xdf\xf3\xb7\xe7\x97\xfb\xff\xd3\xe3\x6f\x92\x03\xfd\xf2\xa7\xbf\xdd\xcf\xeb\xdf\x62\x8c\xdf\x1e\x47\x7a\x7f\x7c\xa5\xdd\xea\xbf\xfe\xf9\x37\xe9\x38\x62\x76\x7f\xbc\xaf\xff\xfb\xf3\x97\xdd\xa0\x5d\x3f\xbe\xd6\xd8\x4f\x63\x3f\x2d\x9e\xee\x1f\x5f\xab\xf2\xf4\xfc\xf8\x4a\xc7\xb1\x1f\x3f\xc7\xee\x72\x3f\xd4\xfd\x37\x9a\x7c\xda\x8f\xaf\xee\x1f\xfb\x8f\xaf\x55\x78\x1a\x3f\xbe\x46\xb6\xc9\xfc\xf1\xd5\xab\x5f\xae\x1f\x5f\xa9\x65\x1e\x3f\x3f\xbe\x52\xf5\x83\x73\x77\xc5\x98\x9f\x6b\x7f\x60\x0f\xf7\x7e\xb4\xdb\x3d\x7e\x63\x2a\x9f\xbd\xa4\xcc\xb7\xe7\xf1\xe3\x6b\x38\x83\x33\xfd\xf8\xea\xce\xf5\xac\x7b\xb4\xc6\x63\xdb\xcd\xfc\xb6\xff\xf8\x1a\x63\xf2\x38\x7e\x7c\xa5\x64\xb3\xf9\xe3\x2b\x15\x9b\xed\x99\x75\xa6\x73\x32\x33\xff\xba\x67\x96\x99\xce\xc9\xc0\x7d\x3f\x5e\x7d\x37\xa3\xdf\x7b\xec\x81\x19\xed\xde\x9d\x55\xd6\x76\xef\x6f\x1b\x9d\x3d\xfb\x5b\xa7\xf3\xf2\x2d\x3d\xbc\x7c\xbb\xa7\x93\xf6\x56\xad\xd2\x3b\xcf\x89\xe7\xc4\x73\xde\x7d\x8c\xe6\x0f\x85\x97\xbe\x78\xa9\xbc\x94\xc1\x0b\x6b\x1c\x8c\x90\x8e\x6e\x1b\x3b\x1e\xbc\x0c\x7b\x9b\xbc\xcc\xc2\xcb\xf2\xc5\xde\x3e\x3f\xbe\xf2\x51\x8a\xbf\x9c\xbc\xb0\x43\xe9\xb8\xec\xcd\xcf\x6e\x7b\xf3\x97\xc7\xe9\xd8\xf5\xeb\x2f\x1b\x60\x29\x1d\x74\x90\xf9\x2c\x25\x7f\x61\x6e\x29\xb3\x36\x3a\x4b\x85\x67\x5b\x74\xc7\xf7\x65\x38\x3e\x93\x49\xce\x99\x4d\x49\xc9\x39\x0f\x7f\xf9\xec\xf6\xcb\x7e\xcf\x8d\xa5\xa0\x41\x4a\xce\x78\xda\x97\x33\x5e\x36\x7f\x1c\xc5\x26\xaf\xa3\xf0\x92\x9d\xb1\xd0\xcc\xc9\x5f\x00\x7a\xce\xfe\xe2\x8b\x40\x9f\xb6\x11\xe8\x8b\xf5\x67\x17\x00\x96\xa4\x0c\xd0\x67\xb2\xcd\x64\x6a\x4c\x20\xaf\xfd\x9c\x80\x4b\x66\xfa\xdd\x11\x4f\x9e\xfd\x7b\x4c\x12\x18\xe5\x98\x24\x5f\x95\x98\x24\x1b\x5b\x36\x58\x2b\x23\x14\xa7\x98\x59\x70\x29\xbe\xf8\x51\xcc\xd7\xcf\x62\xbe\x8c\x52\x9c\x2f\x47\x2f\x95\x00\xb8\x6d\xa6\x1d\x30\x7e\x11\xe0\x31\xfe\x47\xe8\xdb\x46\x24\xa9\xf6\x76\xf1\xe2\x26\x15\x41\xee\x02\x8a\x48\x52\xed\xc0\xd5\x64\xc0\x57\x63\x35\xb4\xa9\xac\x06\x48\xd6\x8d\xf2\x7e\x5f\x03\xe1\x19\xa3\xba\x96\xc1\x5a\x6a\x73\xf4\x02\x35\x0c\x0a\xf6\xff\x47\xd3\x52\x75\xa1\x62\x69\xf5\x34\x74\x76\xa9\x8a\x59\xc3\xa1\x96\xb3\xf1\x33\x4f\x43\x76\x28\x50\xcb\xfd\xaf\x9b\x2c\x16\x01\x50\x6f\xf6\x8c\xb5\xb4\xc3\x7e\xd9\x81\x16\x08\x0f\x34\x1b\xab\x61\xbc\xb6\x57\x53\x81\x4a\x73\x2d\xe2\x5e\x73\x5f\xba\xdf\xc7\xbe\xd8\x93\xfb\xe2\xfa\x5b\x1c\x04\xdb\xc4\x41\xb0\x37\xf7\xc5\xbd\x6c\xa7\x2f\xf6\x16\x47\x81\x25\xb6\x38\x0a\x4e\x26\xf6\x85\xf5\x36\x0f\x2f\xb4\x2a\xf5\xbd\x2f\xe2\x71\xdf\x07\x21\xd3\xb8\x4b\x88\x44\xd7\xee\xbe\x4c\x1a\x77\xd7\x22\x22\x74\xd7\xd2\xfc\x25\xce\x84\x6d\x5c\x4b\xf1\x33\xcf\x04\x4b\xe9\x9e\x09\x3f\xf2\x4c\x30\xf7\xee\x99\x70\x22\xb1\x0e\x7f\x88\x75\x00\xa2\xfe\xd0\x93\xcf\x2f\x3d\xb1\x53\x23\x76\xc4\x17\x77\x64\xb2\xbe\xe1\x69\x91\x56\x0e\x4f\x8b\xa3\x8c\xea\x31\xf0\x33\x31\xcc\x2d\x1d\xae\xc4\x65\x8d\xd8\x15\x3b\xd8\xa7\xc5\x93\x37\xdc\x13\x37\x7b\xb8\x27\xd2\xd0\x11\x7b\xe2\x67\x41\x50\x7d\xb9\x77\x73\x7b\xda\xe7\xde\x53\xb7\x36\xb0\x85\xce\x02\xd4\x53\x54\xbc\xb2\x2f\x4c\xe3\x02\xff\x84\xc2\x25\x14\xfc\xe8\xe5\xef\x80\xea\x3e\x80\x08\x0b\xba\x13\xdf\xd0\xf6\xce\xfc\x9d\x99\xde\x85\xbf\xfb\x5c\xf9\x3b\x23\xdf\x71\xc4\x98\xd1\x2d\x4f\x91\x3f\xdc\x02\x40\xe2\x73\x8b\x96\x52\xee\xdb\x53\x24\xf2\xdd\x82\x40\x6a\x7b\x07\xb9\x60\x9b\x6f\x41\xe0\x99\x7a\x1d\x47\x78\xbc\x48\x1b\x2c\x30\x6f\xaa\xb4\x2a\xcd\xb3\x07\x6c\x82\x3d\xb9\xb1\x92\x34\x79\x16\x24\x74\x95\x5b\x00\xcb\xaf\x58\x0b\x88\x9c\x3d\x62\x13\x6c\xcf\x8d\xb5\xcc\xc3\xaf\x24\xd5\xf1\xd9\xf4\x65\xf1\x02\x5e\x66\x3b\xfe\xf0\xec\xdf\xa5\x07\xb6\xbe\x1c\xfd\xe0\xe5\xf1\xc5\x41\x5e\x07\xa1\x49\x77\xf6\xec\x73\xee\x49\xe6\xc0\x88\x1e\x9e\xe9\x22\x3d\x3c\x13\xfa\x9e\xbb\xb3\x4c\x76\xe0\x2c\x41\xa0\xdc\x63\x96\x83\x17\x80\x3c\x67\xfb\x8e\x10\xe6\x38\x43\xcb\xde\x6f\xa7\xe7\x8b\xb4\x60\x39\x94\x13\x67\xa7\xb3\xa7\x68\x26\xc6\x8d\x53\x04\xc3\xcd\x43\xb8\x83\x5a\x79\x08\xf7\xc3\x36\x2e\x09\x9e\x93\xf7\x29\x5a\x15\xb6\x9a\x87\x2b\x9a\xbe\xb8\x08\x4e\x74\xf6\xe4\xcc\xc3\xce\x5c\x51\xb5\xb3\xd3\x5f\x6c\x13\x93\x76\x36\x31\x69\x7e\x99\xce\x13\x59\x26\xcf\x00\x30\xf3\x9c\xce\xf3\xf0\x05\x54\x87\x52\xe5\xe9\x34\x39\xba\x79\x3a\x1b\x0e\x47\x9e\xce\x06\x0e\x9a\xa7\xb3\x29\x7e\xe6\x39\x46\x7a\xcb\xf3\x62\x69\x7e\xe5\xcc\x5c\xe7\x14\x0f\x92\xc3\x08\x4e\xe4\x8f\xbc\x9c\x26\xe7\x34\x2f\xa7\xe9\x6c\x16\x07\x52\xfc\x5c\xce\x4c\xfc\x5e\xe2\x04\xe4\x31\xaf\xd8\x79\x3b\x73\x9a\xcb\x36\x22\xe2\xb2\x33\x67\x93\xfc\x25\x26\x00\x38\x3f\x31\x26\x1d\x7c\xe2\xe8\x00\xb4\xd3\xa9\x41\x4e\xf2\xe9\x2f\xee\xf4\x29\xee\xb9\xe8\x2d\x0a\x8b\x41\xe7\x5e\x3e\x7f\xbb\xec\xd4\x9d\x40\x2a\x16\x74\x97\xcc\x16\x02\x92\x2f\xa7\x5e\x6d\xb1\x7e\x8a\xef\xf9\xda\xf0\x15\x95\xaf\xf3\xc7\x17\x44\x35\x5f\xae\x06\x62\x91\xa5\x61\xa2\xc3\x1d\xf3\xa7\xff\x9f\x94\xc7\x97\x90\x66\x01\x00\x94\x47\x0c\xbe\x83\xf4\x32\xee\xa6\x3b\x2e\xea\x96\x87\x34\xbf\x71\xc3\xe0\x6d\x65\x4b\xe2\xcc\xa2\x6c\x71\x7b\xf9\x54\x7f\xce\xb7\x6c\x49\x3b\x43\x14\xca\xf1\xeb\x28\x65\x4b\xcc\xa9\xf8\xed\x9e\x7b\xb1\xab\xfb\xef\x6b\x2e\x0a\xc8\x13\xe6\x52\x92\x58\x05\xfb\x2e\xca\xab\x13\x09\xa5\x28\x61\x4e\x58\x60\x51\xc2\x9c\xcd\x97\xf1\x53\x4d\x29\x19\x8d\x85\x6e\xb3\x58\xe0\x8c\x73\x74\xeb\x2f\x76\x8b\xe0\x5e\xb2\xa3\xc3\x0e\x4b\x71\xaf\x91\xc2\xcb\x16\x1e\x61\x72\x45\x61\x71\xa2\x2a\x94\x82\x76\xc3\xc0\x25\x86\x60\xe6\xc5\x5e\x87\x2f\x2e\xd0\xe6\x41\xd7\xe0\xab\x65\xc2\x30\x2b\x1b\x5b\x26\xd2\xa1\x24\xb3\xcc\xc7\x17\xe0\x36\x5f\x5f\x68\xb3\x10\x08\x3d\x04\xe5\xf3\xf1\x17\x5f\x4e\x5f\x18\xe7\x8c\xcf\x68\x03\x47\xec\x39\xe7\xef\xc8\x5f\xb9\xec\x10\xd4\x2f\x97\x1d\x42\x4f\xcb\xe5\x8c\xdc\xa6\x8d\x6d\x29\x1f\x9c\xd7\x02\xba\xe5\x63\xf9\x4b\xf3\x85\x36\xa0\x55\x3e\x40\x8f\xba\x15\xb6\x74\xb0\x05\x15\xe1\xef\xe0\x88\xbc\x30\xcd\x9c\x36\x4e\xa6\x87\xf3\x52\xf6\x21\x49\xcf\x09\x97\xdb\xbc\x21\xbd\x03\xf4\xde\x47\x3a\xbd\x43\xc6\xe6\xdf\xa1\x08\x7b\xc9\xe9\x1d\xd0\xad\x0d\xb2\x7c\x6c\x8d\x30\x6f\xb0\xe4\x63\x23\x68\xf7\xaf\x5b\xe3\xea\x5b\x4e\xcc\x07\xfa\x56\xe5\x69\x03\x27\x1e\xcb\xdf\x1f\x6b\xec\x6c\x3e\xd2\x56\xd9\x3b\x7d\x6d\x05\xac\x6f\xf4\xc8\xc7\xd6\xb8\x96\xbf\x2f\xcf\x78\x3e\x40\xd8\x3d\xc9\x7c\x80\xae\x87\xbf\xef\xfd\xcf\x8e\xfa\xb0\xd6\xfd\x98\x19\x76\xf1\xc8\x00\x3e\x32\x00\xcd\x36\xfe\xa1\x43\xe6\x63\x6b\x11\xc8\x0e\xf9\x00\xb3\x72\x4a\xf4\x51\x9e\x38\x66\xf9\x28\xa2\x6e\xa5\x97\xea\x7e\x4f\x1a\xa3\x11\x1c\x34\xae\xcb\xc6\xfc\x9d\x3d\xe8\x79\xd2\xd3\x66\xdd\x63\xba\x9e\x2d\x01\x0f\x08\x55\x3e\x80\x7b\x19\x3e\x33\xc4\x72\x51\x1f\x36\xaa\xd1\x2d\x64\xa2\xa3\x4c\xe5\x03\x32\x91\x8e\x8d\xac\x19\x85\x3d\xa5\xd9\x7c\x29\x3f\xbe\xc6\x66\x85\x59\x4d\x3c\x71\xea\x32\x2a\xf6\x2c\x87\xdf\x7c\x78\xae\x3c\xbf\x62\xcf\x9e\x2d\x6a\xf0\x3c\x32\x1f\xed\x5d\x18\xdd\x9e\xb6\x16\x3a\x0f\x07\x40\x09\x65\x16\x28\x9a\xab\xc4\x9f\xa1\xb0\x2d\xf9\xb2\x41\xb9\x0f\x6f\xfe\xa9\x42\xb2\x9d\xaa\x7d\xf9\x98\xcc\x68\xc3\x7b\x96\xcd\x4e\x33\x4a\xcb\x42\x33\xce\xe8\x2c\x0b\x06\x9c\x51\x59\x16\x4c\x2a\xff\xd4\x4d\x32\x0d\x36\x98\x66\xd9\x5c\x3e\xa7\xcd\x24\x17\x12\x75\x46\x5c\x45\x98\xcb\x88\xab\x68\x7e\x39\xc1\xc6\x72\x3e\x98\xd1\x66\x0b\xb3\x1c\xfc\x70\x9d\xfe\x40\x9f\x90\xfa\x9c\x1d\xcd\xc3\x97\x9d\xc6\x96\x51\x91\x9f\x33\x62\x29\xb4\x3a\xa7\x67\x77\x74\x24\x9f\x07\xcf\x7c\xf2\x4c\x9e\x01\xef\xb3\x78\x66\xe0\x2d\x5d\xce\xc2\x37\x79\xef\x19\x72\x77\xce\x07\x9d\x2f\x1e\xf7\x94\x81\x67\x66\xf3\x72\x9a\x7e\x12\x8a\xe3\xe0\x65\xec\x8d\x39\x78\x9c\x3f\xbe\xd0\x9b\x72\xd6\x84\x52\x37\xbd\xcd\xf9\xf0\x88\x2c\x7f\xd9\x9b\x51\x1d\x55\xa5\x17\xd4\xcf\xfb\x70\x8e\xce\x66\xe7\x7d\x3c\xfb\xe6\xcb\x39\x73\x3c\x73\x4a\xf3\x1b\x32\x96\x33\x16\x90\xc4\x9c\xf6\x99\x44\x1d\xcc\x79\x1f\xc4\xe1\x4c\xf7\x41\x1c\x87\xbd\xbe\x0c\xc6\x2a\x33\x6b\x67\xa2\x9b\x65\xa0\x1f\xe6\xbc\x19\x06\xba\x79\xce\xf9\xfe\xf1\x35\xd3\xa2\xbb\x8d\x3f\xa3\x67\xc0\xb0\xb9\xc2\x38\x7c\x6c\xfb\xcf\x34\xe4\xb0\xb2\x4f\xb9\x30\x36\x3d\x57\x97\x01\x9d\xc8\x15\xd4\x69\x6c\x73\x56\xd7\x6e\x9c\x30\x64\x76\x94\xfa\x8c\x64\xdc\x39\x9c\xc8\xc5\x18\x93\x72\x56\xd9\x6c\x1c\x1c\x25\xa0\x9c\x26\x1f\xad\x20\xa9\x0c\xb7\x86\x2f\x2c\x10\xd9\x28\xa7\xc9\x70\xeb\xf1\x40\xf3\x19\xc6\xca\x9c\x26\xbd\x7d\xf6\x1a\x1a\x1f\x9d\x80\xa7\x30\xd9\x4b\x64\x05\x2a\x05\x9b\xd9\x06\xf5\x7e\x49\x60\x0a\x7f\x0f\x53\x14\xe7\xb0\x2c\xb0\x18\xd5\x3e\x97\x25\xed\x62\x07\x0a\x12\xd7\xcf\x97\x18\x7c\x33\x97\x5c\x10\xbf\x32\xe6\xcc\x5c\x10\xbf\x7e\xfd\xac\xfd\xd7\x2f\x2e\x12\x4c\x85\x11\xfe\xfa\xcb\x66\x55\xa9\xe7\xb1\x07\xad\xb9\xf8\xb2\x01\x59\x9f\x4d\x5e\x50\x44\x73\x7d\x5f\xd4\x47\x90\xa0\xed\x53\x3e\x33\x43\xb6\xad\xa1\xcc\xcc\x99\x6a\x1b\xdc\x33\x33\x46\xeb\x34\xe6\x80\xb5\x2d\xff\xcf\xbc\xc5\x94\xdc\x06\x6d\xa1\xbc\x6d\x1f\xf8\x99\x2b\xdf\x4f\xbe\x67\xe9\x6d\xcb\xc4\x33\x83\xea\x6d\x33\xfa\x99\x39\x1b\x6d\x8b\xc4\x33\x57\xfa\x99\x8c\x5b\xec\x87\xfe\xe1\x3f\x6d\x03\x67\x80\x9f\x6d\x83\x46\xc8\xb6\x0d\x98\x79\x40\xd4\x9a\xab\x8f\xa6\x1f\x09\xc7\x16\xae\x72\x3b\x25\xf2\x50\xe3\x76\x42\x81\x18\xf7\x84\x02\x31\xec\x29\x1c\x97\x9f\x48\x2c\xfc\xe1\xda\xdf\x30\xfd\xcd\x8a\x47\x61\xf6\x97\x5b\xb5\x58\xe2\x05\xf5\x85\x60\xb5\x4d\xbc\x24\x81\xed\xc2\xa0\xdd\x79\x04\x20\x76\xa8\x70\x51\xa0\xbe\x6d\xd3\xb7\x91\xe9\x1d\xea\x76\xb4\xc3\xfe\xf7\xa9\xe2\xe8\xb7\xad\xa3\x0f\x36\xab\x3d\x15\x78\xb3\xf2\xa7\xf1\xcc\x48\x98\x8c\x73\x6c\xd0\xb3\xbf\x1f\x4c\xe6\x0d\x20\x30\x87\x57\xea\x09\x34\xfb\xa6\x5e\x03\x6e\xdc\x0f\x66\x9c\x78\x7c\x60\x23\xfb\xf3\x9e\xd8\x07\xf0\xba\x27\xf6\xc1\xcf\x2b\x36\x74\x3e\xd9\x0c\x76\x70\xf0\x7a\x67\xf7\x21\xa3\x1d\x6c\x39\xa0\x3b\xbd\xbb\x3f\xf4\xd2\x0b\xdf\x14\x9e\x2b\x7f\x67\x2e\x9d\x95\xa4\xef\xc4\xb2\xdc\xb7\x9a\x3b\x33\x74\xbb\x77\xb7\x88\x79\x6c\x94\xc4\x66\x9c\x7b\x3f\xd9\x69\xa8\x4d\xef\x9e\xb4\x78\xd9\x9b\x37\x6c\xcb\xc9\x48\xcb\x59\x01\x2e\x26\x15\xe7\x0f\x56\xdb\x03\x9b\x9a\xbf\x08\x48\x28\x7f\xdf\x68\xb0\xc5\x39\x16\x78\x3e\x52\x72\x5e\x82\x5b\x81\x2d\xe3\xf0\xcc\x42\xf0\x47\x8a\xf3\x77\xf0\x62\xd7\xe0\xfe\x40\x64\xc9\x18\x73\xf2\xa8\x32\x35\x70\x7b\xb4\xd8\x55\x7e\x19\x9e\x53\x16\x3f\x3e\x9c\x47\x36\x61\x9c\xaf\xb3\xd9\x4d\x16\x2e\x87\x9e\x39\xcd\x0b\x35\x2a\x67\x10\xf6\x64\xcc\x74\x80\x0a\x27\xba\x42\xf6\xb0\x9e\xd9\x61\xa0\xec\x27\x2a\x42\xf6\x48\x9f\xdd\xd9\x24\x5f\x92\x2f\xf4\x06\xd1\xcd\xee\xf7\xb9\xda\xaf\xb3\x39\x7f\x92\xd9\xdd\xe4\x61\x35\xad\xb1\x49\xcf\xc4\xa2\xa9\x80\xf3\xcc\x86\x5c\xd9\xfc\x65\x60\xcf\x8d\x5f\x16\x9f\xc5\x2f\x27\xbf\x30\x81\x67\x13\x86\x9a\x39\x65\x0f\x9a\x72\x95\x99\x3e\x5b\x17\xa8\xbd\xfa\x9c\x7f\x7c\x15\xf9\xc5\xb3\xe5\x8b\xaa\x80\xf1\x6c\x01\xa3\x7a\x2a\x1e\xd5\xe4\x02\xf3\x7d\x96\xde\x16\x88\xc0\xc3\xec\xcb\x6c\x36\xc7\xe3\xd2\xba\x9f\xad\x1f\x5f\xed\x68\xb6\x3f\xf7\xf3\xf4\x79\x6f\xff\x40\x63\xce\xcf\x26\xe6\xa5\x43\xf6\x9e\x8d\x4b\x45\xbc\x7a\x3e\x2c\x1d\xe5\x36\x3f\x78\xc1\x1a\x36\xb7\xfc\x40\xbd\x6b\x02\x95\x9e\x0f\x03\x2a\x27\x3d\xf8\xbd\x8a\x04\xef\x01\x17\xcb\x82\x38\x3d\xe0\x62\x5d\xcb\x5f\x36\x8a\xaf\xe4\xf4\xf1\x7f\xd5\x25\x20\xf1\x80\x95\xc5\xa1\x7d\x20\x80\xed\xe0\x24\x3c\x68\xec\x3f\x3b\x38\x99\x9b\x7c\xf1\x41\x7d\xaf\xc7\x60\x6e\xf8\xb7\xea\x11\x9f\xa9\xa9\x82\x24\xa8\x24\xa9\x04\xc4\xd1\xe8\x17\xf4\xf4\xd1\xe6\xa8\xee\xf0\x5c\x05\x60\x82\xf2\xcf\xe6\x99\xb9\x83\xa4\x8f\xce\xb0\x8e\x5c\xfe\xa0\xd3\x17\x65\xee\x47\x5d\x1e\xfb\x62\x7e\x2e\xbd\x79\xd3\xce\x90\xba\xb3\x1b\xbb\x55\xad\x72\x08\x9a\x9b\x21\x3d\x99\x8f\x96\xc7\x9f\x5f\x0d\x67\xe9\x2f\x73\x8f\xdf\xe9\x0b\x41\xbd\x4c\xd7\x82\xa0\x5e\xd4\x18\x1e\xbc\x70\x05\x93\x41\x7e\x36\xb1\x4d\xdd\xb5\x6c\x89\xb1\x14\x77\xe6\x61\x67\xa0\xd9\xcf\x73\xd2\x2d\x80\x78\x30\xcf\x56\xff\xbe\x31\x61\x21\x6f\x3d\x2f\x6a\x08\x2c\xea\x3d\xd4\x18\x0f\x9e\xf7\x21\x96\x0d\xbc\x9b\x56\x54\x34\xc4\xfc\x6e\x19\xb3\x6e\x82\xf2\x0d\x39\x7c\xb1\x34\xe0\x86\xcb\xef\xa6\xe7\x35\xc1\x3b\xde\x4d\xd0\x4b\x1e\x76\x36\xf6\xdf\x93\x03\x6e\x18\x34\xce\xc0\xbb\xa5\xd1\x9a\x11\xb1\xde\x2d\x8c\x96\x8c\x98\xf4\x6e\x59\xb4\x94\x65\x3f\xd7\xfe\x26\xf9\xfd\xbd\x9f\xe1\x6b\xef\xc1\x41\x8c\x71\xdf\xfd\xcc\xa2\xdf\xad\x57\x56\xc5\xa2\x77\xcb\xae\x25\x75\xff\xbe\xcf\xe4\xe2\xb8\xbd\x9b\x0e\xd6\x0c\xdb\x7c\xb7\x02\x53\xd5\x2f\x5e\xdc\x78\xc5\x39\x6f\xd1\xa9\x0c\xe7\xb6\x45\xd8\x5a\xa0\x20\xef\x26\x61\xb5\x64\xfb\x39\x79\xf6\x9b\x6b\x7f\x5f\xfd\x66\xef\xed\x42\x8b\x7c\x37\x07\xab\xb5\xf9\xbc\x37\x24\x41\x55\x5e\xfc\x77\x19\x31\xf5\xdd\x72\x51\x99\x20\xfc\x9b\x37\x8e\x62\x72\xcc\xef\xa6\x90\x59\x2d\xfa\xc5\x5d\x17\xb0\xda\x5a\x54\xed\x1c\xaa\x37\x83\x53\x60\xfe\xbb\xe9\x66\xae\xcd\x3e\x3f\xbf\xd2\xa3\x77\x2b\x5a\xb5\x0b\x93\xbc\xe1\xe9\x19\x78\xb7\x04\x9d\xd3\x70\xac\x3d\xcf\xe1\x1a\xb1\xbd\x2c\xf7\x08\xd3\xcb\x82\x47\xbe\x78\xf0\x30\x5f\xe5\xb7\x78\xca\xfc\xe6\xef\x34\xee\x2d\xd0\x38\xb8\xca\xbb\xc5\xef\xaa\x84\xfc\x96\xce\x33\x6b\x29\x83\x67\xfb\xd9\xf4\xa6\x73\x72\x5e\xec\x36\xb5\x09\xdc\xb2\x17\x80\xe7\x37\xbf\x5b\x09\xac\x38\x31\xf3\x8b\xe7\xae\xb9\xc8\x2d\xc9\xd7\x05\xdd\x79\xf1\xdb\xad\x68\xbb\xd9\x11\xde\xb0\xfc\xe2\xb5\xcb\x62\x7e\x4d\x10\x50\x06\xde\x72\x43\x69\x22\xd9\x56\x03\x8a\x92\xf1\x8b\x8e\x8e\x6b\x2a\xbf\x5b\x23\x28\xda\x1b\xde\xda\x21\xb8\xb6\x1d\x20\x2b\x73\xd8\x8a\x42\x4b\xc5\x7e\xf6\x02\xb0\x3b\xe5\xb7\x6e\x84\xc6\x10\x9d\xdf\xba\xa9\xe5\x6c\xf6\xbf\xe7\x9f\x9d\x67\xbd\x7f\x7c\x35\x1c\x16\xf9\xad\xcf\x7e\xee\x7e\xff\xf2\xcc\x58\x5b\x1c\x2e\x15\x5e\xf8\x6e\xa5\xb7\x4c\x91\xb5\xa1\x61\x43\x01\xde\x56\xf6\xf7\x22\x50\x83\xc8\x1d\xfe\x1d\x0e\xe7\x7c\x36\x23\x2f\x07\x54\xe2\x6d\x7b\xfe\xcd\x4d\x6a\x7b\xfe\x5d\x44\x6c\x8b\x67\xbf\xd9\xf3\xef\x6e\x7c\xdb\x02\xa2\x94\xe4\xc5\x83\xd0\xa5\x18\x38\xe8\xe6\xb4\x7f\xe0\x1f\xfd\xbc\x20\x0a\x30\x91\x7f\x43\x00\x5f\x2d\x6e\x7e\xa3\xca\x84\x68\xfc\x6e\xa1\x2c\xf7\xe6\xf7\x75\xaf\x11\x82\xff\x6e\xa1\xac\x60\x42\xcc\xef\x96\xbb\x4a\x15\x29\xf1\x2e\x54\x49\xe4\xdb\xf7\x02\x02\x51\xfa\xda\x94\x43\xc0\x6d\x81\xac\x54\x81\xbe\x25\xb2\x9c\xc6\xb7\xd2\xdd\xbb\xa5\xb5\x32\x3d\x06\x5b\x58\x2b\x23\x46\x7c\xf6\xdf\x8b\x7f\xdf\xd8\xd5\x61\xfb\x18\xc3\xb6\x52\xc8\x33\x76\xac\x85\x6c\x89\x35\x2c\x15\xf1\x1d\x6f\x83\x72\xc6\x3b\xf6\xf2\x96\xb3\xc2\x63\xb7\x04\xe5\xd8\xcb\x0b\xd0\xe3\xaf\x0b\x3a\xa7\xdb\x01\x76\xfe\x8e\xf5\xe3\xab\x07\x3d\x1b\x7b\x75\xeb\xb0\xad\x12\x9f\xdf\xef\xf3\x7d\x88\xb2\xfa\xea\xe2\xf9\xf9\xf1\xd5\x33\x5c\xf9\xdd\x62\x5c\x96\x41\xbd\x73\xeb\xb3\xd1\x76\x26\xd0\x9a\xef\xe7\x46\xaf\x26\x0d\xdb\x52\x53\xce\x8e\x3b\x2b\xce\x56\xdb\x22\xc1\xa1\xd0\xbc\xd8\x4f\xfb\xb2\x9f\x3d\x7f\x95\x8e\x77\x6e\xfa\x14\x28\x38\x71\xb6\x45\xff\x5b\x01\x09\x14\xdc\x12\x56\x2f\xd2\xb3\xad\x91\xf5\xd8\xe6\xad\x91\xe5\xe5\x91\xc3\x47\x31\x3d\xba\x1a\x61\xfd\x7e\x69\xd6\xe2\xfb\x95\x7e\x7c\xf5\xee\x7c\xf0\x48\x06\x1d\xc5\x25\x59\xa5\x31\x18\x79\x34\x9c\xbd\x0b\xf8\x7b\x14\xb7\x08\x56\xd2\xf2\xef\xe3\xc7\x57\xd7\x18\xf2\x6e\x01\xac\x0f\xd1\x17\x07\x46\x95\xe6\xad\x3d\x7f\xc5\x87\x77\xcb\x62\x79\x46\x9f\xfb\x78\xe3\x90\xcb\xef\xba\xe1\x75\xec\xdd\x96\xd1\x72\x71\x7f\xb7\x88\x96\x9b\x7c\x66\x8b\x68\x79\x49\x26\x74\x76\x24\x51\x79\x2b\x95\x65\xda\x78\xcb\x6e\x25\x18\xdc\x16\xdd\x4a\x95\xe9\x6c\x25\xbc\x2c\x8f\x01\x52\x9c\xc6\xa2\xf7\x33\x7e\x95\x4d\xde\x2d\xd0\x95\xe9\x06\x6f\x79\xae\x34\x69\xc9\x16\xe7\x46\x12\x59\xb7\x34\x37\x92\x34\xf2\xa3\x86\x66\xdb\xad\x12\x77\x25\x82\x2d\xca\x95\x2a\x12\x7c\x5e\xe8\x10\xfd\xe0\x87\xa9\x22\xd9\x96\xf0\x46\x12\xa1\xd1\x70\x13\xb2\xe7\x8b\x7c\x57\x64\x10\x67\x05\xd1\x99\xcf\xb9\xe7\xdf\xa2\x2d\xe7\x5b\xfa\xb7\x45\xc0\xdc\x5c\xef\x09\x02\xb9\xa9\xa7\xde\x5a\x9f\xf7\x01\x08\xc1\xe3\xc4\x3a\x2e\x42\x9f\x11\xd9\xc1\xf3\x8d\x1e\xec\x33\xca\x2c\x32\xf2\x8b\xb8\xa8\x54\xf5\x6a\x90\x97\xb7\x6c\x69\xb1\x1c\x32\xd3\x2d\x2c\x8e\x1a\xdf\xe8\x43\x61\xce\xe8\xd6\x35\xfb\xfd\x86\xb3\xe2\xf1\x8b\xa2\x53\x14\xc9\x5e\xfc\x45\x5d\x0c\x52\xd5\x16\xfb\xd0\xb4\xab\x5c\x79\xcb\x99\xa3\x4a\xfc\xb7\x98\x59\x42\x72\xc2\x64\xb2\x24\x8c\x5b\xe2\xcc\xda\xc9\xde\x1b\x46\x20\xd6\xdc\x05\xd1\xae\x7f\x43\xcf\x8a\x16\xf7\x3d\x76\x39\xb6\xa4\x36\xcb\xc6\xd2\x82\xa1\x1d\x3f\x77\xc1\xd0\x0e\xbb\x2b\x18\xca\x7b\xf7\xaf\xd8\xc8\xe2\x63\x2d\xe5\xc3\x6f\xb0\x41\x6d\x05\xa8\x1c\x5b\x86\x99\xb0\xd3\x82\x89\x7c\x2b\x63\xbe\x60\xf3\xdc\x0a\x45\xc1\x60\xbe\xf5\xdf\xce\xcb\xa5\xd2\x5b\x79\xb9\xed\x97\xbe\xc2\x06\xb5\x89\x43\x31\x5a\x4f\x6a\x55\x8e\x17\xea\x40\xbf\x2f\x13\x64\x1e\x98\x8c\x3a\xa6\x92\x92\xf7\xe0\x33\x6d\xe2\x53\xf2\x16\x46\x26\xbc\xbc\x60\x0a\x9c\x44\xe9\x14\x6c\x81\x93\xe0\xb5\x92\x99\x1f\x21\x3b\x05\xa7\xfd\x44\x10\x2b\x79\x0b\x23\x93\x60\xb8\x92\xb7\x30\x32\x7a\x3e\x78\xfe\xec\xbf\x37\xfb\x39\xf9\x66\xf1\x7c\xf1\x6c\x5b\xcc\x91\xc5\xbf\x3f\xfc\xbd\xf3\xfc\xf2\x4c\x3f\x95\x79\x36\x9f\x55\x9f\x99\xff\x96\x45\x26\xe1\x76\x05\x93\xe4\xc4\xdd\x51\x72\xf8\x0b\x16\x2f\x0d\x8b\xc6\x62\x12\x50\xbd\xa3\x0e\x5f\xf6\x0f\xa9\xfb\x4c\x4f\x80\x28\x2f\x7a\xea\xac\x66\x01\x89\xc6\x8c\x50\x3d\x8f\x2a\xe8\x16\xa0\xe8\x3e\x0f\x7f\xb0\x05\xb0\x60\x73\xf1\xdc\x4e\x64\x8d\x92\x37\xe1\x4b\x47\x9d\x2c\x14\x9b\xe2\x51\xa7\x5f\x5d\x36\x07\x1c\x9b\xf6\xcd\x92\xfc\x0a\x70\xc4\xcc\x5f\x67\xce\x0f\x58\x14\x8f\xea\x2f\x28\xa8\x47\x5d\xcc\x7d\x53\xaa\x89\x41\xb1\xe4\x8f\xd0\x67\xb7\x3e\x40\xbf\xd9\x1a\xe8\x77\x66\x05\xa5\x22\x02\xb3\xe4\x0f\xc3\x75\xdb\x02\x7d\x0e\x00\x1e\xe3\x49\x18\x67\xc9\x2f\x12\xa2\xb8\x8b\x07\x75\x1e\xd5\x67\x9c\x1b\xa0\x80\x5e\xd4\x84\x77\xb2\xe0\x47\x9d\xd0\xe6\x52\x08\x58\x4c\x73\x4b\xce\x45\xe3\x6b\x9a\x60\x6e\x21\x60\x31\xe1\x27\x2d\x05\x6b\x7b\x9a\x5b\x4e\x2c\x3a\x5f\xd3\x9c\xf6\x7c\xfa\x62\xcf\x97\x2f\x8e\x7f\x63\xe7\xdf\x13\x2e\x09\x2f\x82\x1f\xa5\xc6\xbc\x18\x24\x71\xbc\x40\xb5\x92\x1c\x7d\xf9\x11\x3e\x05\x70\xad\x68\x77\x47\xa7\x2d\x25\x69\x53\xa3\x75\xc6\x1a\x06\x82\x95\xec\x6a\x59\x14\x8e\xdc\xb4\x0e\x16\x85\x71\x26\x2d\xce\x79\xd9\xba\xc7\x68\x0e\xb1\x75\x8f\xd1\xd8\x24\xbc\xb7\xf3\x00\xa0\x05\x67\x4e\x73\xb4\xad\x57\xa4\xb4\x12\x8b\x28\xa0\x2d\xe7\x05\xd7\x6d\x52\x48\xdf\xa4\x7b\x63\x48\x66\xb8\xe2\x08\xf4\x54\x58\x11\x52\x7d\x29\xa8\x07\x69\x95\xef\x24\xb7\x82\xd3\x77\x1e\x9c\xb9\x42\xdc\x5f\x5a\x85\x75\x71\x60\x8f\xea\x38\x97\x13\xf0\x2b\xa7\x59\xd8\x1e\xe2\xf9\xd2\x82\x26\x16\xce\xe3\x51\x7d\xc6\xc6\xc7\x99\x2d\xd5\xd9\x08\xaf\x2d\xec\x8f\x36\xfd\xe8\xc3\xfc\x59\x64\x65\x07\xdd\xcd\x2d\xd4\x4f\x34\xc4\x52\xf6\xf9\x1d\x6d\xd1\xb6\x09\x08\x7b\x25\x08\x28\x2d\x90\xbd\x34\x77\xc1\xad\x6a\x8c\x0d\x7d\x29\x48\x97\x09\xa7\x7b\x29\x03\xaf\x18\x07\xb2\x6c\x89\x6f\xf4\x78\x86\x6c\x67\xe0\x38\xf4\x89\xf8\xfd\xcb\x22\xe8\x88\xd0\x8f\x84\x0f\xbc\xe0\xc2\x9e\x87\xab\x5e\xa2\x15\x80\x5a\x8c\x9c\xfd\x06\xac\x12\x66\x4b\xc4\xed\x36\xe0\x70\x89\x9f\x1f\x3a\x82\x5c\xe2\x35\x18\x5d\x44\xd2\x36\xee\x2c\x3e\x10\xa4\xe9\xdf\xa1\x3b\x42\xe9\x74\x12\xb4\x3d\x41\x97\x0c\x24\x4f\xdb\xfa\x8d\x4e\x47\xda\xc2\xb2\x15\xa8\x4b\x81\x4f\x23\x38\x97\x72\x41\xb3\x20\x40\x78\xcc\xe7\xe1\xe6\x5e\x50\x0a\x8f\xde\x05\x88\x12\x13\xba\x31\x00\x17\xda\xde\x9e\x4f\x00\x5f\x0f\xa5\x77\xd0\xb9\x1a\xab\x5c\x98\x77\xe5\xe8\x0f\xdc\x07\xa5\x1a\xe1\xb0\xd2\xc1\xcb\xe5\x2f\x9d\x97\x87\xa8\xea\xc4\x0b\xf1\x4f\x55\x14\xac\xc4\x3f\x8d\xbc\x25\xeb\x52\x67\x48\xf7\xf4\x86\xc8\x3a\xb0\x4b\x94\x4a\x10\x78\x27\xf6\xb1\x54\x0c\x5f\x03\x47\x66\xa9\x08\x2f\xb3\x40\x55\x2a\x21\x2b\x03\xfb\x45\xa9\x86\x8e\x20\x9b\x94\x96\x34\x23\xb1\x53\x0d\xe5\x58\x13\x4c\x69\x04\x43\x0e\x22\x36\x4b\xc3\x0c\x3d\x08\x80\x2b\x4d\x19\x92\x68\xe7\xd2\xb0\x04\x0e\x6c\x43\xa5\x6d\x09\x68\xbf\xec\x71\x1a\xa0\x1a\x85\x8d\x6f\x37\xae\xdb\xa3\xf3\xcb\x8b\xf2\x4c\x88\x73\xc1\xbc\xbf\x35\xe9\xbd\xb8\x8e\x13\x7f\xa5\x2d\x5b\x95\x5e\xe9\x80\xc0\x89\xd2\x09\x2b\x1a\x75\x4b\x8a\xa5\x63\x09\x1d\x95\x71\x3a\xf2\xf6\x40\xe4\x29\x1d\xe3\xdb\x90\xbb\x0c\x2c\xec\xa3\x71\xc0\x07\x16\xf6\xd1\xb6\x4e\x52\xc6\x68\xbe\xec\xb9\x8d\xa9\x91\x8d\x63\x36\x80\xdb\x68\xbe\x3c\x98\x1f\x89\x91\x2f\xe3\x61\xa5\x0d\x01\x67\xb8\x84\xc6\x74\xc6\x7b\xfb\xb2\x7b\x9b\xd8\xcd\x46\xdb\x6a\x76\x99\xd8\x48\xe2\x98\xcf\xa2\xec\x0d\x4f\x9c\xd5\xcf\x20\x91\xb3\x39\x37\x66\x3d\xbb\x33\x80\x90\xce\x0f\x31\xdb\x08\xcb\x65\x62\x34\x5d\x58\x11\xca\x7c\x3f\xbf\x1a\x80\xcb\x82\xbe\xeb\x80\x2d\x0b\xfb\xf9\xe8\xf9\x3b\xaf\x6b\x59\x04\xc5\x8d\x0e\xa5\x5a\x1f\xc2\x44\x89\x7b\x28\x0b\x79\xfa\x70\xe5\x9f\x76\xf9\xb2\xc1\xfd\x11\x15\x46\xe2\x17\x74\xd6\x81\x41\xa8\x7c\x26\x11\x8f\x0a\x46\x9f\xcb\xde\xa0\x19\x1f\xe3\x52\x08\xed\x29\x1f\x2c\x9f\x03\xb7\x56\xf9\x60\xf9\x1c\x38\x22\xcb\xe7\x61\xe2\x98\x85\xca\xe7\x2d\xa2\xe9\x86\xc9\x79\x38\x28\x8b\xd5\x3f\x30\xf0\xfa\x96\x93\xb0\x8d\x81\xeb\xb3\x9c\x84\x68\x34\x6c\x61\xe5\x24\x16\x70\x10\x56\x57\xce\xe1\x38\x08\x7f\x27\x56\xfc\x41\xf0\x69\x39\x39\x5c\x1a\x40\xcb\x39\x6d\x03\x31\x39\x31\x7f\x0f\x62\xe4\xca\x89\xd3\xad\x7b\x88\x4f\xec\xc5\x7d\x41\x1e\xce\xcb\x36\x9c\x8d\xf3\x65\x5b\x3d\x4f\xe7\x4b\x14\xae\x12\xe1\x45\x70\x44\x5f\xc8\x3a\x17\x8e\x8c\x81\xe2\x59\x2e\x7a\x1b\x0b\x20\x5e\x18\x89\x87\xcc\xef\x26\xe6\x65\xe0\xbe\x29\x37\x02\xf6\x58\x7d\x8f\x73\x17\xf1\x02\xb8\xdd\x15\x1a\x8e\xf8\x72\x13\x79\x39\x16\xa8\x74\x23\x85\xcd\x03\x01\xfd\xc6\x0f\x18\x14\xfa\xbe\xc2\x18\xbf\x21\x75\x6f\x02\x97\x26\x1a\x4d\x79\x38\x8f\xc1\xed\x9f\xe2\xa4\x19\xf3\x31\xb2\x5d\x09\xff\xe9\xf6\x86\x8c\xf5\x10\xd4\x39\xb1\x27\x94\x07\x3a\x36\xd1\xb3\x8a\xae\x94\x79\x40\x2b\x1e\x83\x0e\x89\x9e\x2a\xb8\x39\xd2\x3c\x38\xb6\x8f\x31\xb5\x84\x52\x15\xec\x4e\x69\x8a\x7b\x5a\x48\xfa\x82\x8e\x61\x0a\x49\x93\x30\xb4\x82\xfd\x23\x85\x2c\x8d\xde\x99\x42\xfc\x43\xc1\x4c\x55\xd9\x4e\x25\x6b\x26\x96\xf0\xde\xb6\xe1\xd8\xbe\x77\xc0\xa0\xfe\xe6\xb7\xf5\x28\x7e\xb6\x85\xcc\x7a\x10\x30\x3b\xd1\xf3\xeb\x61\xa8\x32\x91\xf2\x35\xee\xaa\xd4\x3d\x68\x35\x28\x66\x62\xda\xa8\x86\xdd\x4f\x7c\x53\x35\xd5\x97\x97\x4d\x45\xaa\x61\xe5\xfa\xa4\x6b\x3a\x59\x36\x84\xbd\xa6\xd3\xcf\x46\xde\x2f\x78\x46\x67\xde\xb2\x63\x4d\xcf\xe3\x0b\xbd\xbd\x76\xb0\x61\x50\x09\xd9\x48\x13\xfa\x5f\xf3\xe1\x67\x1b\xad\xab\x41\xb7\x15\x2f\x5e\xcd\x31\xeb\x2d\xe5\x55\xa3\x17\x27\xea\x71\xcd\xb7\x2f\x95\xcf\x70\x30\x4c\x62\xc3\x6b\x81\x9f\x4d\xac\x8b\x15\x51\x2d\x4d\x68\x79\x2d\x44\x40\xcc\xb2\x05\xd6\x5a\x9c\x1b\x21\xc8\xb5\x80\xf0\x93\x78\xe2\x5a\x91\x6b\x27\xdb\x58\xab\x37\x6c\xe2\x17\x08\xd4\x24\xee\xab\x56\xce\xec\x24\x3c\xae\x56\xce\xec\x24\x96\xb6\x56\xef\x12\xa0\xaf\xd5\x4a\xc8\xff\x38\xb6\x9a\x52\x2b\x51\xb6\xb3\xc6\xcb\xc7\x97\xbd\x59\x15\xce\x30\x6b\xa7\x03\x6c\x08\x13\xfa\x5f\xeb\xe9\x44\x17\xd3\x11\xc9\xeb\x66\x95\xb5\x39\xd1\xb6\x89\x4b\x6d\xc4\x33\xce\x96\x8f\x6f\xe8\x65\x6d\xc8\xbb\x15\xff\x61\x6d\xc2\xa4\x01\xe1\x36\x02\x81\xf7\xc4\x1b\x81\xaa\x83\x60\xb2\xda\x4e\x87\x62\x12\x8d\x19\xad\xe4\x67\x0f\xe8\x83\xf1\xb4\x36\x69\x1f\x96\x96\xda\xa1\x15\xb3\x03\xad\x9e\xb4\xad\x83\x7f\x1d\x01\x74\x62\xa5\xaf\xdd\xc0\x6a\x62\x75\x6b\xff\xf8\xcb\xa6\x3c\xb5\xc7\x9d\xb2\x4d\x49\x6b\xff\xd8\x1b\x28\x37\xd8\x95\xd9\x37\xdf\xa9\xc3\xbb\x42\xf8\x4d\xea\x00\x7d\xe6\x48\x7b\xa2\xc3\x9b\x5d\x04\x5e\x54\xf9\xdb\xc4\xb1\x5f\x67\x62\x23\x08\x6e\xab\xd3\x9b\x47\x44\xfa\xd7\xa9\x4d\x1c\x45\xba\xce\x0a\xec\x71\x75\xd4\x89\x98\x32\x31\x92\xd6\x85\x29\x68\xa0\x23\xd5\xf5\x80\x17\xe8\x1f\x75\xc1\xd2\xe6\xda\xa2\x40\xfd\xa0\x56\x4d\x14\x8d\xfa\xc1\xd7\x3b\xa1\xbe\xf5\x83\x9c\x33\x91\xc8\xeb\x89\xe8\x5f\xb8\xad\x54\x4f\xac\x08\x13\x07\x73\x3d\x47\xc0\x7a\x77\x70\x22\x0c\x4e\xdc\x92\xf5\xbc\x1c\x87\x53\x73\xde\xf1\xcb\x9e\xdb\xf9\x28\x69\x6d\x21\xb3\x5e\x32\x55\x94\xfe\x7a\x65\x76\x01\x2f\x7e\xbd\x18\x74\xa1\x7e\xd7\xeb\xd2\x56\xc8\xb1\xbb\x08\xad\x5c\x07\x2b\xbd\x9e\xe4\x67\xfb\xe5\xe6\xdc\x2e\x7c\x94\xf5\x86\x76\x2d\x6c\x69\xf5\xf9\xbb\xa7\xad\x3e\x07\xfe\xc2\x78\x56\xd2\x63\x9d\xcf\x81\x75\x75\xd8\x00\x83\x52\xf3\xef\x78\xca\x92\x0d\x16\xf6\x6b\xff\x8e\xe5\x74\x6b\x66\xf5\x31\x8c\xb7\xfa\x8d\x44\x2f\x5e\xee\x1f\x5f\xa5\x71\x42\x9f\x03\xdb\xf5\xd6\x4f\xeb\x03\xfe\x0d\x09\xdb\x83\xaf\x0c\x8b\x42\x7d\x60\x48\xf8\xd3\xea\x93\x62\x7a\xb4\x46\x70\xab\x50\xa8\x67\x2b\xa1\x95\x28\xc0\xfa\x70\x01\xae\x17\x9f\x07\x0e\x32\x3b\xc2\xa1\x03\x1a\x3f\x09\x7b\xe3\xb2\xed\xc3\x72\xfc\x06\xcf\x79\x06\x37\x9e\xbc\x01\xb3\x5c\x5b\xd6\x0a\x4e\xa7\x79\xfe\x74\x4d\xd6\x07\x2c\x19\x04\xd2\xd4\x07\xd7\xd6\xc1\x71\x7f\xa0\x65\x35\x03\xfb\x07\x09\x5c\x47\x76\x7d\xb2\xc6\x63\xa0\x81\x34\x3e\x88\x3a\xa9\xcf\x66\xb0\xf5\x70\x52\x28\xa4\x5c\x7c\xaa\x4f\xd9\x42\x4e\x3a\xdc\x08\xdc\x55\xf8\x42\xeb\x53\x94\xf2\x05\x20\x08\x82\xc9\xb2\x3e\x9b\xb3\xe4\x25\x90\xb9\x5d\x86\x46\x56\x9f\x82\x0d\x7e\xf9\xf7\x37\x1c\xa9\xbf\xad\x4f\xd5\xc1\xca\x68\xb8\x9c\x90\xdb\xeb\xc3\xf1\xaa\x84\x5a\xd6\x87\x28\xb4\x5e\x59\x50\x15\x4f\x8b\x2f\x53\x91\x95\x6e\x2b\x2e\x52\x91\x60\x2b\x9c\x85\x08\x8d\xfa\x54\x8f\x06\xd3\xab\x44\x02\x38\x6d\x22\x4c\x47\xae\xe9\x3b\x4a\xf8\xb4\xf6\xe3\xab\x57\xe1\xd6\x84\x02\x3d\x73\xb5\xab\x41\x43\x9e\xcd\x45\x6b\x12\x97\xb9\xd8\x55\x44\x1c\xee\x75\x19\x5e\x51\x1f\x64\xcb\xe4\xe9\x79\x5a\x08\xd2\x3c\x33\xc7\xe6\xdf\xb1\x24\x67\x46\xe8\x19\xd7\xa4\xcf\xc5\xc6\x34\xd8\x72\xc7\x7e\x01\x70\x5d\x54\xa8\x00\x6b\x80\x3b\x1c\xea\x67\x60\x24\x9f\x8c\xcd\xfd\x8c\x85\x15\xb0\x3e\x5e\xbc\x70\x52\x44\xb0\x54\xec\xf0\xf5\xe1\x12\x46\xf7\xa8\xce\xcc\x92\x00\xd6\xfc\xd5\x8f\x5d\x9f\xd9\xc1\x4e\xff\x8e\x29\x1d\x0a\x40\x88\x48\x1e\x62\xd1\x96\x7e\x6a\x72\xfb\xe6\x89\x03\xde\xe7\xeb\xa7\x0f\xbc\x3e\xc8\x9f\x35\x36\x9c\x28\x92\xe4\x33\x4c\x2e\x7b\x5e\xd0\x00\x97\xdb\xad\xa3\x42\x94\x5d\x5a\x63\xe8\xd4\x58\x11\xec\xb8\x95\x58\x91\x9c\x0e\xf7\x78\xeb\xe9\xf5\xe7\xf3\xe2\x19\xc0\xe0\x9e\x38\xa0\xca\x0f\x36\xba\x04\x55\x7f\x64\x66\xb8\xe6\xea\xb3\x99\x8c\xe1\x10\xf5\xf9\x00\x0b\x91\x08\x51\x59\xba\xfb\x7c\x9c\x86\xdf\x77\xfc\xdd\x4c\x09\x4d\xb1\x4f\x60\xba\x35\x99\x72\x0c\x06\xc6\x65\xb0\x86\x7d\xbe\xce\x94\x97\xcd\x28\x6a\x12\x97\x36\x5f\xaf\x72\xc7\x67\x8b\xe2\x95\xc8\x8d\x1a\x91\x1f\x81\xe2\xe7\xe7\x67\xd4\x40\x7d\xb8\xdc\x6c\xd8\x4e\x35\x24\x64\x28\x9b\x3d\x5b\x0e\xce\xc5\xf1\xb6\xb6\x97\x9b\x00\xb8\x5c\x0f\xad\x15\xc9\x03\xde\x9b\xc0\x57\x82\x53\x2b\x01\x21\x35\x25\xff\x3e\x70\x4a\xdb\x78\xda\xc0\xd6\xd8\xf2\xbb\x0d\x4e\x63\x5b\x78\xbe\x69\xcc\x94\x2e\x36\x57\xac\xda\x4a\x6b\x69\x62\x31\xb1\xc2\xb5\x48\xd0\xb7\xcc\x92\x93\x24\x82\x7b\x6b\x01\xd6\x2d\xc2\x65\x2e\x60\x54\x62\x47\x2a\xb1\xa9\x95\xd0\x91\xd2\xb2\x1d\x2d\x5c\x6d\x4c\x48\x55\x9c\x68\xc9\xfa\x70\x65\x2d\xc5\x4e\x6f\xf9\xaf\x0b\xa4\x9b\x19\x65\xbf\x79\x79\xe6\x93\x27\x66\xc4\x0f\x8f\x91\x20\x2c\x67\x6b\xc7\xbb\x23\x36\xe2\x29\x44\x24\x30\xbd\x67\x03\xec\x70\x4f\x10\x72\x52\x67\x84\xc7\x13\x1a\x1f\x9d\xce\x89\x89\x3f\x40\x26\xdb\x2d\x61\x2e\xd5\xe7\xc0\x07\x9a\xab\x5b\x21\x85\x3c\xaf\x94\xaa\xf1\xd5\x9b\x21\xe2\x4c\x10\x59\x79\x25\x51\xee\x6d\x7e\xc5\x3a\xde\xae\xb8\xc5\xb3\x40\xab\xdf\xd2\xb9\x77\x53\xd0\x8c\xb4\xf4\xbc\x17\x6b\xb7\x33\x0f\xaa\xc8\xf9\x3e\xce\x12\xb8\xbf\xd2\x0e\x50\x95\x20\x9a\x59\xe0\x5a\x04\xd1\x24\xfc\x79\x95\x20\x9a\xdd\x62\xf2\x82\x89\x33\x7e\x08\x10\x2d\x5e\x16\xb3\xf4\x07\x0c\x4f\xe0\x14\x91\x2f\x7b\x08\xbb\x0d\x86\xee\x57\x58\x08\x60\xee\xef\xcf\x7b\xec\x3c\x83\x61\x08\xf6\xc4\xbe\x14\x82\xba\x2a\xb1\x2f\xa9\x83\x17\xc4\xbe\xe4\xc4\x15\x91\xfa\xa6\xe6\x10\xf4\x9a\xb4\x66\x35\x9b\x4b\x4c\x96\x6d\x82\x82\x32\x48\x32\xf4\x8b\x85\x6f\x11\xbf\xe2\x61\xa8\x04\xba\x14\x6c\x3a\x95\x20\x93\xdd\x80\x75\x64\xd9\x10\xa7\x8c\x70\x92\xc2\x9d\xe0\x4a\x38\x49\xc5\xde\x50\x0d\x27\x59\xb8\x52\x2a\x31\x24\x7b\x70\xbf\xc2\xc7\x09\x89\x7b\x83\x2d\x3b\xb8\x6c\x99\x23\x44\x14\xc9\x9e\x3b\x33\xe4\x0e\x78\x73\x70\x2c\xc1\x45\xf0\x94\x0f\x67\xcb\xbf\x07\x70\x7d\x21\x0c\x43\xd8\x62\x08\xc6\x1e\x56\x0d\x23\x19\x84\xb4\x56\x63\x47\x92\xb2\x02\x01\x23\xfb\x85\x26\xb0\xef\x03\xf4\x23\x32\x24\x2f\x10\x86\xc8\x90\x1a\x10\x81\x61\x77\x65\x63\x43\x43\x6a\x81\xbe\x10\xf7\x91\x50\x5c\x2b\x71\x1f\xe5\x18\xb6\xc0\x2b\x01\x1e\x12\xf7\x91\x3d\x82\x11\xf7\xe1\x2e\xb5\x98\x06\x8d\x1b\x67\x53\xd0\x36\xa5\x08\xc8\x5c\x44\x7e\x54\x7b\xe2\x2a\x03\x44\x08\x0d\xbc\x12\xa9\x57\x89\xfc\xd8\x4b\xb5\xa7\x85\x90\xe8\x0f\xf0\x33\x04\x0d\x42\x3f\x2a\xf7\xe3\xea\x2b\x47\xaf\x8e\xe6\xb9\x76\xb0\x4d\x5f\x5a\x77\x30\xec\x0a\xc3\x8e\x7a\x10\x18\x7a\x0a\x96\x0e\xdd\x7a\x35\x66\x10\x31\x57\x89\xda\xa8\x8a\xf3\x44\x6d\xec\xf6\xc0\xa3\x1b\x6b\x02\xd3\x20\x04\x23\x27\xa5\x0e\x62\x30\xaa\xb2\x2e\x31\x18\x55\x91\x9d\x18\x8c\xfd\x11\xcd\xb1\x61\xa9\x0e\x63\x60\x28\xcd\xcd\x1b\x90\x7a\x44\x57\x62\x2a\x76\x03\x5f\x94\x5f\xb2\xdd\xb2\xf2\x62\x6b\x8e\x22\xa2\x89\xd1\x13\x5a\x10\x88\x98\xd8\xad\x59\xfa\x54\x6c\x76\x37\x30\x8f\x34\xe4\x0c\x62\x26\xd2\xc2\xef\x57\x0d\x9a\x18\x59\x68\x4d\x66\x82\x5e\x45\xa4\x44\xc5\x6e\x53\x8d\x94\x48\x8a\x14\x84\x4a\x84\x86\x4e\xa8\x44\xe5\xa6\x48\x25\x54\x62\x7f\xc4\x9a\xa6\x81\x7f\xdf\x79\x84\x2b\x81\x14\xbb\x95\x33\x03\x8c\xe8\x21\x44\x52\xec\x1f\xd8\x86\x2d\x95\x54\xf5\x1b\x42\x29\x26\xd1\x45\x95\x50\x8a\xfd\x91\x2f\x78\x94\xdd\xaa\xe5\x4a\x58\x3b\x7e\xc4\xaa\x30\x4c\x00\x45\x55\x2f\x26\x80\x62\xb7\xb6\x5b\x96\x25\xa2\xe0\x56\xe8\xd2\xc6\xe5\xe1\xf0\x59\x3a\x22\x19\x23\x6c\x22\x25\x4f\xbf\x2e\x62\x49\x1a\x0a\x72\xf1\x2c\x7f\x4e\x70\x91\x15\x21\x8b\x0c\x1b\x23\x8b\x34\xb8\x0a\xe1\x0b\x69\x49\xc2\xce\xd8\x34\x1a\x6f\x6d\x36\x37\x09\x12\xf1\x08\x4b\xb2\x7c\xaa\xd4\xd9\xfa\x74\x11\xee\x01\x6a\x7f\x25\x93\x45\x7d\x4f\x04\x6e\x9f\x55\x4b\x85\xf2\xc5\x29\x85\xff\x12\x56\x90\x62\xd5\x57\xa0\x82\x1f\x75\xbb\x65\xc0\x6b\xfa\x02\x98\x89\xdb\xd7\x76\x63\x30\x41\x91\x9e\x5d\xf2\x59\xa7\x78\x89\x0c\x9e\xfe\x0b\xe7\xab\xc7\x46\x71\xc4\x43\x70\xc9\xc1\xe4\x3b\x37\xc7\x46\xe8\xdc\x6c\xb7\x0b\xbf\x03\x22\x8c\x7d\x6b\x6c\x12\x29\x6e\xc4\x25\xe9\x24\x57\xea\xa7\x84\xee\x66\x8b\x25\xbe\x37\xb4\x43\x54\xbf\x39\x41\x32\x81\xdb\xf9\x79\xb4\xb6\x6c\x52\xba\xc4\x43\x81\xc4\xcd\xdb\x02\xc9\xe8\x6e\xcc\x83\x00\x67\x63\xe5\x11\x25\x98\x77\xcb\x23\x65\x44\x03\xf9\x97\xb0\x79\x08\xb1\x71\xe8\x87\x5e\x85\xec\x2b\x62\x23\x83\xbc\x88\x17\x65\x38\xf1\xd7\xa5\x22\xad\xbe\x2f\x1a\x99\x67\x61\x8b\x17\xa5\x2e\x9b\x83\xd9\xdd\x06\x93\xe0\x6a\x26\xa5\x99\x3e\xbe\x8f\xd5\x81\xf1\x21\x41\x48\x3f\x5f\xc0\x2f\x7a\xbd\x5c\x47\xdb\x42\x52\xf3\x56\xe4\x81\xe2\xda\x08\xcd\xd8\xf8\x55\x78\x41\xfb\x68\xfe\xe0\xd8\x93\xe7\xe1\x18\x95\x17\xd4\x8f\x2d\xad\xb5\x03\x83\x80\x42\x7d\x3b\x0e\xd9\xb0\x3f\x28\x40\x34\x5b\x6c\x98\x43\x0c\xdb\x81\x00\xd1\x89\x99\x6b\xc7\x96\x20\x1a\x8a\x7c\xe3\x56\xe6\x9e\x3a\x83\x27\x90\x62\xa3\x57\x23\x60\xa4\xc4\xa4\x92\x22\xf4\x66\x59\x8d\xcb\x99\x95\xc0\x82\xc6\x95\xcc\xb4\xba\x3d\xc5\x6c\xfd\x41\x4e\x38\x99\x88\x92\x45\xb7\xb5\xd8\xe2\xdf\x65\xcf\x9b\x37\x35\xef\x6c\x8e\xec\x02\xd3\x6d\x5f\xce\x04\x97\xea\xb4\x5f\xf8\x65\xfa\xce\xbc\xd7\x8e\xec\x52\xe8\x0d\xff\x77\x71\x2e\x44\xde\x92\xe4\xa9\x1d\x44\xde\xae\x06\x14\xb3\x7b\x00\xdc\xf1\x7e\xf7\xe1\xf7\x52\xb6\xc2\xe4\x33\x68\x1f\x0d\x60\x61\x1d\x80\x66\x17\x65\xa7\x27\x61\xc7\xfe\x5d\xc9\xc9\x8e\x36\xfb\x3c\x04\xa1\xbe\xc2\xe2\x0e\x94\x40\x56\x86\x56\xf6\x49\x0e\xf7\xd3\xc9\xc4\xb3\x81\xa6\xb6\x08\xb8\x01\x11\x22\x4c\x8a\x1b\x8b\x45\xb1\x0f\xf1\xad\xba\x6a\x36\xb0\xa2\x72\x75\x9f\x63\x08\xba\xaa\x48\x0a\x93\x99\x2b\xc9\x0c\x76\xa3\xb2\x52\x41\x50\xbd\xcf\xe7\xdf\xc5\xbc\xe2\x70\x81\x6d\x0e\xa7\x18\x35\xfc\x05\xba\x98\x98\x60\x83\xea\xf8\xf7\x16\x88\x44\xbf\x0d\x90\xbb\xe1\xd8\x1d\x30\x77\xb7\xa3\x05\xc8\x6d\x21\xed\x75\xad\x8a\x29\x83\xf1\xb6\x68\x52\x8e\x68\xfd\x3a\x11\x3e\xea\xc2\xb3\xb0\x26\x62\x4e\x57\x6c\x4d\x8f\xd1\x69\xdf\xb5\xd8\x32\x93\xae\x86\x5d\x7c\x11\x8f\x0b\x60\xef\xca\x07\xc5\x26\x6c\xe7\xb0\x2f\x31\xb4\x00\xd2\xe1\x1e\xd0\x22\xe4\x91\x0a\xb8\x86\x97\x62\xfd\x88\x38\xef\xcc\x84\x91\x4d\x0e\x61\x32\xf4\xa1\x31\x76\xd8\x12\xdd\xf2\xe1\x1e\xf8\xcc\x2d\x5f\x01\x3a\x05\x28\x9d\x86\x38\x52\xc1\x17\xad\x18\xd3\x67\x99\x4b\xa5\xdb\xa9\xdc\xe7\xcc\xa7\x5b\x58\x59\xd2\x84\x2e\x8b\x3d\x33\x58\xaf\x1d\xcb\x38\x84\x62\x08\x0a\x92\x12\x6d\xf4\x8d\x75\x28\x0f\x2c\xd6\xba\xe4\x6d\xd3\x97\x80\x28\x93\x5f\xf0\x36\xc1\xbe\x05\x82\x52\x25\x31\x8b\xed\x8c\x06\xa7\x43\xf8\xc3\x65\x6b\x66\x12\x12\x41\xe7\xb3\x8f\xfb\x29\x2d\xf9\xc4\x7e\x32\xad\x8f\x7a\xb1\xab\xff\x68\x89\xf2\xf9\x46\xce\x65\xf4\x53\x55\xd3\xf5\x9e\x18\x09\xe2\x99\x03\x22\x8d\x39\x21\x70\x93\x05\x9e\xea\x22\x8c\x4d\x8c\x62\x75\x52\x21\x12\x48\xbf\x4f\x71\x41\xa2\xa6\xa3\xe2\x60\x1d\x97\x70\xf3\x80\x68\x93\xf0\xa8\x5d\x6a\xb6\x1e\xe7\x4b\xc9\xd8\xc1\x2f\x2e\xb0\xc6\x0f\xea\x3b\xd1\x44\x98\xd4\xef\x49\x1f\xa1\x85\x39\x66\xe0\xa9\x74\x87\x88\x2d\x24\x40\xbd\x1d\xd8\x26\xfa\xb0\x6f\x2c\xdd\x7d\x01\xae\x5b\x79\xcf\xb3\x74\x3b\xb5\xc5\x74\xee\xc6\x05\x09\x5b\x70\x5e\xc5\xf8\x1b\xb3\x6d\x7c\xe3\x75\xe3\xc3\x1f\x88\x58\x16\xcb\xb5\x48\x78\x12\x6e\xc5\x3a\x11\xed\x71\x4b\x24\x98\xc1\xf6\xdd\xeb\x87\x3d\xb1\xdf\xa7\xfa\x03\x53\x7c\xc0\x73\xd7\xa4\x73\xa3\x78\x00\x1e\xc2\x90\x65\x9e\x8f\x76\x7d\x09\xf4\xa3\x2e\x56\xed\x0b\x45\xc6\xd5\x3e\x4c\x2b\x06\x17\xe5\x2b\x2f\x18\x28\x1a\x09\x10\xda\xf1\xaa\xb7\x4a\x2c\xbc\x58\x33\xdc\xae\x57\x14\x14\x10\xaf\xa7\x81\x8e\x5f\xe7\xc8\xce\xbf\x9e\x45\x37\xf5\x85\x6f\x2c\xbb\xf2\x28\x3a\x47\xcc\x13\x5d\xc8\xbd\x81\xf3\xbb\xb9\xf7\xf8\xfb\x16\x13\x9b\x3e\xcb\x4e\x46\xbc\x66\x7e\x3d\xe2\xa9\x9a\x19\xf5\x3a\xe9\xa7\x9a\x19\xf5\x16\xc2\x50\x33\xa3\x5e\x45\xd9\x6d\x49\x33\xc4\xf2\x07\xd9\x08\x84\x20\x85\x1c\xc0\x11\x27\x05\x5e\x96\xbf\x24\xd8\x3d\x57\xe4\x5b\xc2\x1b\x80\x77\xa3\x91\x07\xa0\x72\x99\xb1\xa5\xf0\xae\xd8\x6d\x52\x36\x2c\x3c\x7b\x4c\x5c\x07\xac\x3f\x6f\xbd\xab\xa5\x60\xfd\x1c\x77\x72\xde\xed\x17\xe6\x0e\x87\xc7\xd7\xd9\xc8\x2f\x50\xb9\x56\xd8\x52\x16\x2f\xd9\x5c\x12\xd3\x15\x32\x1b\x34\xf3\xcf\x25\x19\x0c\x29\xe7\xf6\x0b\x8b\x2d\x99\x2b\xa9\xb4\x28\x9e\x38\xb8\x18\x39\xe7\xf6\x57\xb4\x2f\x11\x77\xe3\x2f\x83\x11\xfd\x41\x0c\x82\x65\x93\x65\x6e\x37\x61\x89\xc5\x95\x38\xc8\xc9\x33\x0b\xc1\x0d\x80\x4b\xb1\x99\x2e\x8e\xeb\x3b\x2d\x69\x48\x90\x73\x98\x31\x8e\x0c\x0f\xcd\x84\x71\x64\x60\x6a\xe6\x8b\x2b\xce\xbc\x72\x75\x43\xa0\xe3\x12\xe8\x1c\x03\x1c\xd3\x79\xb8\x01\x55\xa9\x8a\x65\x57\x34\xab\xe5\xb3\x89\x43\x1c\xd8\xbb\x54\xf6\x83\x6e\xe4\x1e\x55\x6f\xe9\x55\x07\x0e\x00\xd2\x02\x23\x44\x76\x5f\x5a\xa6\x35\xa3\x35\xc1\x0f\xd7\x21\x37\x5c\xe5\x4e\x66\x33\xfd\x42\xc7\x69\xd7\xc8\x06\xb7\x5f\xfc\x45\x95\x66\xda\xfe\xc3\xcd\x2c\x9f\x2f\xaf\x4d\xf0\x1c\x87\x8e\x7e\xbb\x56\x41\x77\xac\x3b\x3a\x6b\xea\x9e\xac\xef\x6c\x7c\x8d\xe4\x6e\x5e\x2a\x6b\xe6\x76\x4b\xf2\x43\x72\xbb\x25\x02\xa8\xf7\x0b\x60\x84\x1a\x90\xc3\xcd\xab\x67\xcd\x1c\x6e\x8b\x63\x4e\x0a\xb7\x7a\x88\xb9\x9d\xab\x67\x9e\xc0\x21\xad\xe4\x1b\x43\x66\x8a\xfb\x31\x14\xe9\x91\x48\x52\x18\x1f\x18\x8d\xcc\x6c\xa4\xcc\x6a\xc9\xd8\x15\x04\x31\xf2\xb2\x15\xf4\xb7\x66\x62\xb6\x9f\xc7\x6c\xe8\xae\x77\x3b\x87\x4e\x5e\xe6\x31\xd4\xe4\x61\x4d\x09\x31\x80\xf0\xeb\x96\x66\xfe\x79\x67\xae\xa5\x19\x93\xa2\xab\x30\x44\x78\x38\x26\xc0\x69\xb6\x30\x09\x92\x1f\x71\x2b\x2f\xdb\x2b\x24\x09\x79\x29\x71\x0f\x76\x14\x4f\xec\x04\x95\xb2\x0d\x60\x78\xf1\xf7\x98\x93\x23\x70\x2f\x2f\xf3\xbc\xb8\x67\x82\xe4\x94\x30\x2e\xe0\x81\x6e\xa4\xe2\x28\x5c\x31\x68\xe4\xe2\xa8\xb8\x9c\x5b\x5a\xba\x9b\x6c\x6b\x24\x9a\x27\x0c\x1b\x42\x10\x17\x83\x8c\x6d\x8c\x41\xa0\x79\xf2\x30\x08\x54\x54\xc1\x96\xf0\x66\xe4\xe2\x73\x40\xc3\x16\xf5\xc7\xd7\x98\xee\x23\x37\x29\x14\x95\xd3\xa7\x33\x0d\xc0\xc7\xed\x09\x42\xcb\x5a\xda\x62\x44\x91\xe9\x24\x02\xb6\x46\xf1\x70\xe3\xce\xc0\x39\xd9\x12\xa2\x03\x9e\xdd\x46\x44\x48\x56\x7a\x4f\x27\xc4\xd2\x6d\xc7\xb4\x30\x9d\xd1\x16\x23\xea\xe1\xe1\x39\x83\xc4\xd8\xf8\xe3\x0b\x53\x3a\x65\xf7\xcd\xae\xb8\x06\x89\xe4\x91\x4e\xb4\x21\xa1\x71\x7a\x72\xd1\x6c\xc8\xbc\xb7\x5f\x68\x7e\xa9\xc5\x7b\x76\xbd\x05\x2b\x39\xbf\x98\x95\xe4\x15\x03\x44\x15\xc8\x57\xcc\xc4\x8f\x40\x08\x78\x6a\xba\x34\xcf\x89\xf0\xd7\x09\x5d\x62\xee\x5b\x20\x29\xcb\xd9\x7a\x9b\xa1\xfb\x77\x85\x71\x89\x9d\x3e\xf4\xa0\x2d\x77\xcc\x90\x31\xf4\x81\x28\x0f\x91\xbb\x4f\x23\x78\x33\x5b\xdf\x8a\x63\x8b\x41\x21\x7b\x52\x6f\x52\x37\xb8\xd8\x5b\x4f\x16\x83\x1b\x8f\x18\xa7\xf0\x76\x74\x8f\xc8\x73\xfc\xbc\x26\xda\xd2\x96\x33\xca\x10\x05\x1f\x59\xb8\x68\xf4\xc4\x44\x98\xe2\x03\x48\x3c\x54\x48\x13\x4b\x0a\xfe\x08\x11\x1b\x70\x71\x55\x52\xf6\xe0\x47\x90\x98\x23\x57\x64\x39\xe8\x23\x4b\x43\x3e\x4c\xaf\xd3\xe0\x23\x44\x09\x72\x29\xb5\xf4\x06\x3c\xd8\xd7\x37\x10\xd5\x17\x2d\xbb\xed\x7b\x82\xf7\xb6\x9f\xb7\x5f\x5b\x7a\x8d\x6b\x63\x92\xaf\x5a\x8c\x5c\x0d\x23\x46\x16\x01\x5e\xbc\xb7\xae\xea\xd5\xb6\x04\x4c\x5e\xac\x05\x42\x1d\x13\x06\x0e\xb0\x46\x46\x1a\xaf\xd4\x36\xf2\xd0\xe4\xc6\x37\xf9\x80\x07\x70\xe0\x4c\x4a\xb3\xa4\x01\x24\xa5\x29\xf8\xe1\x1a\x01\x4e\x19\x3f\x61\xcb\x66\xf6\x05\x77\x4c\x44\x43\x44\x43\x23\x0f\x4d\xc5\x9f\xd5\xb2\x77\x7c\x81\x1a\x79\x68\x12\x77\xac\x5a\x36\x3e\x01\x4f\x5a\x33\x13\x4d\x25\xe1\x6c\xcb\x8a\x27\x68\x23\x99\x88\x79\xbc\x21\x2d\xeb\xe7\xc0\xd3\xd5\x32\xd1\x0a\x84\x12\xb7\x9c\xe4\x4a\xcb\x1f\x6e\xb6\x9b\x79\x64\x77\x03\x4e\x90\xb3\xfe\x08\x7f\xe0\x4e\x68\xf2\xef\xdd\x95\x56\x5e\x10\x16\x9a\xcf\x81\xb5\x8d\x97\x85\x93\x9a\x89\x60\x1b\xc0\xec\xdd\x72\x78\x4c\x84\x47\x76\xad\x3c\x17\x80\xec\xd0\xdc\xad\xcd\xae\xae\x04\x60\x99\x47\x31\xfe\xc2\x1f\xd8\x5e\x48\x39\x77\x58\x12\x79\xd3\x1a\x77\x58\x6a\x8e\xbf\xeb\x09\xb1\xad\x42\x81\xcf\xaa\xed\xa0\x46\xd6\xad\x01\x01\xe2\xf2\x49\x15\xb1\x73\x58\x09\xe0\x41\xb9\x62\xfa\xcb\x3e\x47\xa6\x04\x86\xd0\x1c\x50\xfd\x61\xc3\x72\xb8\xe8\x0a\x1f\x40\xc0\xcf\x0a\x0b\x30\x55\x93\x5c\x0e\x1c\x6a\x8d\x24\x97\xa5\x0b\xca\x9f\x82\x03\x8b\x08\xc1\x61\xf9\x8b\x54\xd1\xfd\x6a\xa6\xe8\x64\x0c\x03\x6d\x25\x1a\x99\xb4\x59\x2a\xd1\x24\xb9\xac\x59\x8c\x6d\x52\x48\xce\x84\x39\x2e\x57\x80\xb9\x07\xc7\x60\x8e\x86\xf5\xa1\x95\x12\x7a\x97\x35\x63\x91\xee\xb2\x14\xbb\x0a\x23\x81\xe0\xc1\x81\x91\xa3\x01\x3b\xdc\x1d\x22\x26\xe5\x8b\x52\xbc\x30\xec\xba\xed\xf8\x81\x3b\xa4\xcd\x99\x0f\x58\xa3\x33\x1f\xe6\x15\xf6\x19\x34\x40\xdc\x25\x5f\x65\xcd\xee\x30\x57\x48\x95\x20\xb2\xd2\x04\xde\x96\x46\xea\xc9\x8a\x65\xb3\xe5\x01\xfc\xfd\x68\xaa\x84\x0a\xda\x19\x07\x89\x6e\xcd\x8d\x01\x71\x35\xd7\xe4\xc0\x55\xd6\xf2\x8c\xcd\xf7\xc5\x70\x3f\x9b\x4f\xc6\x60\x11\x13\x24\x17\x4f\x67\x6c\x92\x1f\x05\x7e\xf9\x8b\xb3\x62\xf7\x94\x02\x60\x31\x5c\x5b\xaa\x5a\x8b\x8c\x6f\xac\xa5\x7f\x17\xaa\xd2\xb8\xd4\x54\xb5\x11\xe6\x90\x11\x20\xa5\xdc\x51\xca\x49\xf9\x89\x3b\x4a\xde\xfc\x6f\x5c\x51\x9a\xc5\x43\xb0\xf4\x02\x30\x7b\x84\x07\xf5\x0f\xee\x21\x55\x6e\x1d\xb4\x6c\xa0\x30\x57\x53\x1b\x99\x98\x76\xaf\xbe\xf4\x1f\x5f\x93\x24\xd9\x2d\x7f\x86\x3f\x30\xfd\x0f\x97\xf0\x61\xfa\xdc\x5c\x2a\x5a\x02\xb2\x29\x01\xe1\xda\xde\x4a\x6a\x2e\x97\xec\x80\x49\xf5\x21\x9f\xc4\x26\x79\x20\x30\x3c\xc4\x21\x55\x7a\x80\x8d\xe5\x53\x49\x1f\xb8\x9d\x88\x61\x92\x60\xed\x0e\xea\x18\xf9\x8c\xfb\x07\xfb\xf9\x3a\x98\xaa\xcf\x00\x5d\xd2\xcc\x6d\xc7\x21\xba\x5c\xa2\xb9\x24\xee\xc2\x1e\x85\xd0\x93\x75\x4b\x28\xf6\x93\x20\xd3\xc8\x8b\x66\x7e\xcc\x8a\x5b\xb7\x91\x1f\xb3\x10\xa4\xde\x4c\x90\x39\x4a\xbc\xe8\xc1\x73\xf7\x89\x92\x90\x65\x67\xac\x0f\x49\x65\x24\x1b\x1a\x71\xd8\xf1\x6d\x96\x01\x8f\x1c\x39\xd5\x92\x7c\xc5\x98\x09\x15\x8d\x8c\xf9\x21\x16\x7b\xab\xed\x4a\xea\x89\x9a\xc8\x52\x5e\x13\x6e\x3a\xf7\x7b\x71\x9b\xdb\xbf\x9f\x40\xc4\x8e\x2e\x7b\x05\x24\x37\x1c\xa0\x3a\x29\x08\x87\xd4\xf9\xc6\x82\xe9\xe6\x29\x46\x48\x2f\x23\x0e\xd0\x91\x31\x57\x74\xc9\x11\xd6\x0a\x6d\x35\xf9\x11\x89\xe8\x48\xf1\x22\x7b\xd8\x1f\x04\xcd\x69\x83\x61\xd6\x12\x9e\xa7\x1f\x31\xd7\x47\x47\xbc\x38\xfb\x88\xd8\xee\xd9\x13\x33\x67\x90\x57\x8d\x5d\xe2\xa4\x85\x42\xd5\x3c\xeb\xe4\xf0\x30\xbe\x66\xbe\x60\x94\x37\xc0\xc9\xf0\x0a\x0e\xd2\xc2\x37\xb6\x9c\x11\x5f\x89\x8a\xc7\x41\x09\xc1\x49\x92\xd6\xa9\x0f\xe7\xa5\x85\x42\x02\xf8\x12\xd2\x45\xb7\xde\xac\x23\x95\x4a\x2b\x04\x40\x12\x80\xdf\x88\x47\x2e\x19\xf5\x91\x1b\x77\x7b\xb2\x89\x17\xb8\x6b\xf5\x07\xc0\x03\xb1\xe6\x92\xdd\x96\xea\xfc\x08\xba\xc3\x8a\xb8\x3c\x97\x53\xe6\xdc\x17\x13\x84\x2c\x87\x78\x49\xec\xc1\xdf\x4d\x0a\xc2\x54\x4b\x0a\xd8\x64\x5e\x8a\xad\xe9\x16\x7b\x46\x0c\x81\xc0\xa0\x1d\x89\x2b\x76\x85\x6c\x53\xad\x28\x2f\xa8\x1d\x15\xed\x19\xcd\x1f\xc8\x0b\x12\xbd\x9e\x7e\xc4\xb2\xf1\x64\xf4\x19\x13\x81\x2b\xba\x6e\x02\x22\x93\x6a\x50\x21\x22\x72\x6d\x12\xf2\x0d\xd1\x2b\x24\x0e\x91\x4c\x97\xac\xf6\x39\x78\x2e\x4c\x80\x31\xb7\xbc\x32\xc9\x56\xde\xb8\xc9\xb7\x87\xf1\x85\x9c\x08\xe0\xb1\xb7\xf4\x96\x84\x87\x74\xab\x46\x20\xb6\xa2\x0b\x82\x94\x9d\x8d\xeb\x7b\x46\xf4\x35\xaf\xef\xad\x1c\x2f\x8e\xc7\xe2\x8b\x8c\x1c\x95\x89\x2b\x7b\x06\xba\x35\x2e\xe5\x95\x8a\xbc\xef\xa5\x3c\x52\x12\x36\xee\xe4\x85\x38\xc1\x9d\xbc\x3d\x1c\x2b\x2a\x31\x29\xbb\x55\x6c\xee\xbe\x6c\xb4\x0a\x98\xd6\x83\x21\xe8\xb6\xa6\x9f\x49\x5b\x1a\xf7\xf6\xd2\xd0\x85\x44\x64\x7b\x1e\x6e\x67\x65\x6b\x93\x7f\x37\xe3\x0b\x73\x45\x94\x21\x55\x6f\xf3\x72\xdf\x72\xcb\xab\x19\x5f\x98\x12\x89\x3c\x6a\xb4\xd5\x50\xd5\x1d\x59\xa5\x0c\xac\xe7\xd6\x9f\xb1\x41\x8d\x9b\x7e\x45\xa3\x15\x37\xfd\x32\x89\x23\x5a\x31\x5a\x03\x41\xc6\x7b\x7e\x5d\x1c\x26\x1d\x87\xbc\xba\x20\xed\x2c\x84\xd3\xa2\xb7\x83\xa0\xdc\x56\x30\x99\xe0\x05\x6e\xa5\x89\x60\xc5\x97\xeb\x67\xa6\x9a\x56\x10\x76\x94\x37\x0a\x9e\x8f\x21\x46\x86\x78\x83\x08\x50\x10\x6f\xfa\x14\x32\x38\x3e\x96\x16\xab\x12\xb7\x3d\x18\xaf\x7b\xf0\x1d\xbc\xff\x9a\x01\xa7\x95\xee\xb2\x9d\x6e\x8f\xfd\x62\xf4\xee\xe8\x76\xc5\x7d\x6e\x77\x62\x44\x8a\x5a\x9e\xa3\xd6\x00\xcf\x19\x34\xa5\xd7\xa1\x8f\x9c\x15\x61\x3b\xe9\xee\x0a\xa6\x93\x25\x2e\x0e\xc2\x8c\x3d\xea\xc3\xeb\xf6\xac\xd4\x68\xcf\x9f\x03\xc8\x7e\x84\x0d\x31\x1c\x84\xc4\x34\xee\x46\xa6\x42\x16\xfc\x56\x46\x64\x8b\xb1\x2f\xee\xb4\xa3\xd8\x17\x6c\x27\x45\x82\x30\xa5\x0e\x6e\xde\x24\x2f\x09\xf2\x76\x31\x3f\x98\x94\xdb\xfc\xc0\x49\x7d\xbc\x70\xe7\xba\x0a\x4d\x23\x38\x65\x71\x5c\xae\xac\x0a\x12\x5c\xa8\x2c\x4b\x3c\x58\xce\x5d\x54\xe3\x56\xcf\x12\xbb\x08\x83\xe8\xd3\xfd\x43\x56\x99\x12\xb6\x0f\xc8\xef\x41\xe0\x12\x59\x52\x81\x2f\x21\xac\x08\x93\x0f\x18\xef\xa9\xff\x38\x36\xe3\x7d\x08\x94\x92\x64\x20\xaa\x1c\x8a\x63\xa6\x6d\x5c\xf2\xc1\x62\x7a\xaf\x12\xbf\x70\x4f\x7f\x3a\x06\x5b\x0c\x6f\x2e\x86\x51\xc8\xcb\xb8\xc3\x59\xb5\x3e\x7b\x6f\x53\xab\x7f\xf1\xda\x86\xa4\xf7\x8c\x09\xd2\x5a\x5f\xca\xf7\x11\xc9\xad\x9c\xfd\x67\x9a\xa5\x56\xce\xc0\x4a\x5f\x24\xc6\xd2\xc2\x33\xe6\xcf\x8a\x4f\x99\x93\x3f\x28\x17\x89\x4e\x5c\x95\x1a\xfa\x92\x8a\x59\xc3\xe4\xa6\x45\x83\xc9\xf0\x19\xda\x26\x39\xbb\xe6\xcf\xc4\x4e\xad\x5c\x02\x0c\x79\xab\x68\x0a\x41\xd7\xe4\xb2\x69\x99\x48\xbf\x5c\x36\xcd\xc3\xe3\x81\x25\xa4\x8a\x01\x64\x6d\xd6\xbe\x5e\x42\xfa\xc1\x0a\xcf\x2d\xd4\x6c\x58\x80\x39\x9b\x87\x5e\x87\x42\x30\x68\xec\x1b\xf1\x16\x3a\xe0\xca\xad\x88\xc9\xc8\xb7\x2e\x49\x97\x7a\x93\xa7\x47\x72\xbb\x45\x99\xa9\xce\x5a\x6e\x51\xb4\xda\xfa\xf5\x2e\x28\x93\x22\x04\x74\xc9\xeb\x0b\xd2\x8c\xfa\x76\x41\x98\x19\x22\xc0\x53\x7e\xe6\xb3\x6a\xe5\x89\x7b\x9c\x3c\x7b\xd7\xd2\xbf\xab\x0f\x0d\x7f\x50\x20\x96\x8d\x3f\xf0\x03\x37\xfd\x21\x62\x3e\x86\xfe\xf0\x0c\x9c\x08\x19\xed\x62\x09\x62\x4d\x15\x34\x18\x51\x62\xd5\x38\x67\x02\xbb\x71\xce\xe8\x22\xe0\x9e\x52\xe6\x2a\x7d\x2b\xaf\xf5\x3f\x7c\xc6\xdb\x2a\x95\xc3\x9c\x12\xac\x36\xee\xa8\xba\x11\xaf\xd1\x90\xc3\x5f\x58\x43\xf4\x84\xc0\xe1\xc1\x7a\x29\x99\x21\x07\x7f\xe1\xf3\xe0\x1f\x69\xb4\xc3\x2f\x59\x8d\xfb\xd4\x02\x52\xf5\xcb\x30\xd5\x8a\x5b\xc6\xe5\x70\x8b\x2a\x73\x89\xbf\x55\x92\x03\x70\x11\xa8\x55\x92\x9f\x11\x56\xdc\xea\x11\xe9\x1b\x79\x26\x80\xfc\x70\x00\x0c\xf6\x4c\xae\x12\xbf\x41\x50\x7a\xab\x04\x80\x2e\x27\x41\x00\xa8\xbe\xee\xaa\x9c\x03\x1a\xd6\x64\x8e\x13\x08\x7b\x4d\xca\x5b\xd9\x5f\x14\x28\xb1\xb7\x54\xdc\x30\xca\xea\x35\x01\x79\x20\x5c\x93\xfe\x01\x78\x4f\x4d\x5e\x7c\x65\x6d\x99\xfc\x82\x48\x0d\x35\x4b\x8a\x38\x0f\x35\x07\x8c\x99\x2d\x97\x3a\x14\xaa\x6b\x04\x50\x0c\x9b\xab\xb3\x81\x96\x95\x08\x8a\x9f\xcf\x9e\xe5\x6c\x13\x6e\x35\x77\xfb\x05\x07\xaa\xad\x3d\x43\xa0\x6b\x35\x96\x54\xb9\xac\xe2\xdd\x29\x8a\x1a\x95\x90\xd1\x98\x49\x24\x1b\xb3\xc5\x82\x10\x02\xb7\x2d\x8e\x14\x2d\x59\x15\xaf\x8d\xfe\xb1\x5a\x04\x82\xfd\x00\xf3\x6a\x5b\xd0\x4f\x65\xa2\x2a\x8c\xb8\x3c\x6f\x78\x40\x90\x6a\x8d\x6b\xd6\x8c\x50\x15\xb6\xbf\x37\xe1\x55\x9c\x3d\x5d\x3c\xaa\x9e\x23\x81\xbd\xe5\x93\xc2\x75\x8a\x56\xf5\xf6\xc4\x38\xe6\x97\xb1\xc1\x25\x18\x6c\x60\x1c\x52\xb4\x10\x72\x4e\x26\x20\xc7\x0f\x08\x2b\x01\x45\x0c\x32\xc6\xae\xb7\xda\x24\x1a\x10\xb5\xda\x90\x0f\xfd\xaa\x2b\x65\x39\x62\xd8\x47\x30\x00\xd5\x30\x8a\xc0\xdd\x6b\x8f\xc9\x33\x24\x3e\x96\xd8\x85\xae\x58\xe3\xf6\x74\x54\x0a\xcf\x53\x0f\xae\xe3\x8b\xb6\x13\x31\x93\x10\xcf\xe2\x84\x31\x91\x90\xee\xbc\x55\xee\x7c\x48\x81\xea\xd0\x4a\x3a\x7c\x81\xfd\x45\x63\x30\xc0\xe1\x14\x21\x04\xa8\xc2\x81\x33\x1f\x11\x6b\xcd\xb3\x27\x8d\x45\x70\x5f\xa4\x4f\x51\x7c\x3a\x0b\x06\x30\xd4\x42\xbb\x52\x0d\x41\xc1\x03\xb2\x05\x05\xcc\x17\xfb\x59\x26\x87\xcc\x51\xa7\xf3\xb0\x85\x57\x26\x0e\x7f\x08\x80\xb0\x3c\xa2\x3d\xa9\xb8\xd5\x2a\x97\x49\x8c\xda\xa8\x78\x5c\x8c\x70\xa9\x71\x99\x04\x96\x5c\xb9\x4c\x52\x3c\x77\xd3\x6d\xe2\xef\x64\x24\x55\x3f\xe7\x26\xe5\x1e\x81\x35\x61\x6c\xd1\x60\x5a\x0d\xd3\x88\xd6\x11\xa6\xe1\x39\xc0\x54\x22\xeb\xaa\x46\x5e\x6a\x7e\xaa\x1f\x59\xa8\xb8\x10\x9e\x16\x2c\x13\x15\x4f\x8b\x02\x56\xfd\x00\x05\xe8\x6a\x55\x16\x71\xf0\x48\x31\xe0\xf6\x7d\x86\xe8\xca\xc2\x3f\xf0\x09\x89\x1a\xe9\x5f\x28\xf7\xd3\x6a\x08\x26\xd9\xe6\xec\x99\x50\x20\xac\xe3\x30\x8e\xa5\x7e\x02\x24\x36\x31\xa9\x81\xdb\xbc\xc5\x94\xaa\xf9\xa3\x9e\x41\x26\x58\xc8\x09\xc9\x96\x5a\x9a\x81\x54\xaa\x1b\x32\x86\xd8\x76\x32\x2b\xb7\x26\xae\xa4\x60\xc0\xa8\xa7\x72\xa6\x60\x44\xde\x58\xfa\x8c\xc8\xd6\xf0\xf3\xd8\x9d\xe6\x38\x62\x43\x4e\x36\x4a\xa2\x71\xea\xe8\x84\xe9\x57\x84\x92\x64\xe3\x2d\x93\x14\xb2\xd5\xb6\x4a\x8c\x88\x2c\xb5\x7a\x6f\x25\xb0\xf5\x12\xc5\x6c\x10\x9b\x66\x0b\xd0\x5b\x3c\xbc\x84\x27\x43\x23\xb8\x24\xb1\xf8\x92\xe4\x47\xeb\x00\x1b\xab\x30\xf3\x94\x42\x7b\xbd\x6d\xce\x0f\x8f\x1a\xa1\x7d\x29\x25\x88\x18\x0f\x33\x74\xec\xcd\xe7\xc7\x90\xc7\x3c\x18\x5b\x64\x80\x8f\xfb\x57\xbe\x15\xf4\xea\xe3\x91\xf7\xa4\xca\xfa\x85\xb5\xac\xdf\xbd\x7d\xcc\x2d\xe8\xf9\xf2\xb2\x48\x20\xf9\x4b\x8c\xa2\x48\x13\xfe\x13\x0f\x5b\x18\x34\x44\x2d\x19\xb8\x80\x7f\x25\x97\xc5\xe6\x0e\xe8\xb3\xb4\x4f\x3c\x23\x6c\x93\x4c\x60\xad\x59\x58\x05\x72\xd5\xf4\x73\xa8\x9e\x35\x93\xef\x03\x89\x86\xb1\x82\x44\x13\xcd\xfb\xc8\x4b\x55\xad\xc1\xf3\x87\xd8\xd4\x0e\xb5\xdb\x69\x5f\x1c\x5c\x0e\x74\x93\x8b\xb3\x89\x0d\x87\x86\x27\xb2\xa5\x18\xaf\xf1\x42\x0a\x22\x4e\x4e\xcb\x1e\xa3\xe2\x4b\x80\x7b\xf0\x22\x45\xc5\x63\xd0\x64\x9e\x18\x7f\x1a\x77\x32\xc8\x48\xd9\x1a\x51\x12\x15\xce\xdb\x8a\x62\x0c\x48\xda\x54\xf1\x97\x3f\x28\x28\x61\xf6\x6a\x84\x22\xae\x00\x83\xfa\x3e\x9a\x6c\xc3\xe1\x20\x36\xb5\xa2\x92\x3a\xfc\x21\xb6\xd6\x5f\x94\xc8\x87\x2f\x1b\xd4\xa4\x5d\x69\x4d\x56\x2a\x44\x6a\x6c\xad\x2f\x44\xcb\x61\x0a\x6a\xea\xf2\xd8\x0e\x1a\x57\x2f\xc8\xa7\xd6\x9a\x97\x25\x45\xf8\x56\x25\xa9\xc3\xd6\xca\xc8\xae\x9c\x20\x88\x58\x47\x8d\x89\x00\x9e\xea\x55\x44\xc0\x4e\xf5\xae\x4e\xf8\x76\x6b\x4d\xa2\x81\x88\xd5\x88\x59\xa4\x8a\x54\x6b\x7a\x26\xd4\x8c\x5a\xb3\xdf\xcc\x33\xa8\x84\xba\x46\x0a\xfb\xd1\x45\x92\xb8\x0f\xe1\x47\xdd\xa2\x8d\xa8\x49\xe4\x64\xf9\xb9\x4f\xde\x8d\x90\xc8\xb5\x2e\xa8\x91\x41\x1a\x1c\x4b\x17\x6d\x23\xd1\xa3\xf2\x7d\x1b\x7a\xa3\x87\x3f\x90\x71\x16\xce\xd2\xbc\xab\xa0\xbd\xb7\xc1\xbe\x34\x59\x37\x4a\x4e\x75\x03\xd3\x5a\xb8\x01\xdc\xf4\xcd\xcb\xaa\xe6\x8e\x46\xb2\xc7\xe1\xc2\x27\x06\xef\xe4\x37\x83\x6f\x98\xe0\xd4\x0e\x8c\x36\x4b\xce\xfd\xb4\x9c\x39\xb7\x22\x35\xb2\x92\x73\xbf\x1c\x87\xd3\x10\xef\xdd\xcc\xa9\x0e\x89\xf4\xd4\xcc\x04\x23\xe5\x6c\xde\x85\x54\xb9\x6b\x5e\x3b\xd0\x74\xdc\x42\xaf\x46\x14\x6b\xde\x80\xd4\xde\xdb\xb8\x6b\xa0\x41\xa1\x71\x03\x52\x53\x7f\x43\xaf\x36\x98\xa0\xad\xa8\xcc\xc7\x33\xd4\xcf\x75\x2f\xc1\x06\x40\x96\x2c\x83\xef\x3f\x31\x34\x9d\x7e\x62\x68\xe6\x01\xf7\x9a\x22\x28\xcc\x4b\x86\xd5\x36\xf3\xaa\x72\x4e\xca\x01\xe4\x31\xbe\x35\xeb\x59\x2a\x40\xaf\x7c\x23\x05\xa3\x71\x3d\xed\x13\x66\x00\x47\x71\x8e\x3c\x9f\xc6\xca\x33\x93\x33\x60\xc5\x42\x2c\x22\xd0\xfc\x41\x62\x29\xfd\xb8\x14\x02\x3c\x9d\xc6\x1c\xea\x9f\x6e\xf0\x13\x2a\x1a\x36\x32\xfd\xd4\xd8\xe7\x2b\x90\xcf\x1f\xd8\x74\xf7\xf6\x92\x90\x4d\x5f\x3c\xe8\x1e\xdb\xcb\x83\x2e\xc6\x59\xfd\xc1\x88\xa6\x16\x76\x7d\xf7\xf0\x0e\x94\xa3\xcd\x1d\x73\xf1\x85\xb9\xa0\x9d\x90\x68\xa8\x06\xe5\xbd\x65\xb1\xd5\xbe\x40\xfe\x64\x03\x91\x5f\x0c\x08\x4d\xd7\xa3\xce\xd5\x02\xca\x2b\xb6\xf6\x38\xa0\x8b\xe7\x4a\xa3\x26\x60\xca\x19\x54\x9d\xbe\xed\x89\x65\xf9\x22\x73\x90\x8c\x3f\xb2\x46\xc9\x54\x98\xd7\x11\x9a\xda\x2b\x8c\x24\xa5\xdc\x3e\xac\xd9\x1f\xa4\xfc\x6e\x04\x71\x7e\xe4\x47\x69\x0d\x46\x43\x96\xa6\xd6\xf0\xad\x57\x89\xce\xeb\x61\x85\x3a\xf4\x60\x2e\x88\x30\x54\x47\xc8\x0b\xa9\xa5\x1f\x92\xb9\xf8\x2a\x0e\x5f\xe7\x05\x5f\x3e\x00\xea\xde\x09\x20\x97\x48\xeb\xde\x1d\x54\xde\x37\xe9\xc4\x90\x7e\x92\x95\xa9\xea\x26\xea\x84\xf0\x29\x02\xf5\xa4\x5d\x94\x01\x09\xde\x97\x9f\x74\x2d\xde\xda\xe4\x3b\xe9\xaf\xc9\x02\xd2\x3a\x49\x14\x9a\x90\xeb\xa1\xd7\x41\x63\x7b\x36\x87\x3c\x13\xc9\x01\x52\xbf\x62\x77\xec\xb7\xc4\xa4\xf8\x0a\x7e\x64\xcc\x4d\x27\x68\x6f\x3a\x41\xaf\x08\x6a\xf7\xef\xe4\x99\xd6\xcd\xd6\xf5\x8b\xab\x50\x74\xf4\xbd\x1a\xad\xd5\x36\x21\x02\x1d\x3e\x45\x9e\x92\xd6\x8b\x56\xb7\x6e\x73\x2f\x1f\x25\x9b\x6b\x8d\x5e\x4e\x4b\xd4\x8a\x11\x4d\xf7\xcf\xb1\xec\x35\x26\xcc\x67\xd5\x83\x05\xbd\xb7\x1e\x05\xa9\x3f\x5b\x87\x3d\x25\x5d\x0a\x3d\xf8\x53\x7c\xb5\xec\xcc\x5f\x4e\x5f\x6c\x73\x51\x6b\xca\x1f\xdc\xb8\xee\x0f\xa2\x8a\xcd\x63\x2e\x6c\x16\x21\xf5\xd4\x7a\x6c\x7d\xb3\xa7\x61\x18\x60\x6f\x12\xab\x78\x31\x61\x3f\x2b\x69\x8a\xc7\x82\xc5\x28\xbb\x58\x56\x17\xaa\x7c\xa5\x32\x27\xb7\xe9\x96\x70\x1c\xb6\x88\xb9\x83\x04\xb8\xbb\xf5\x28\x50\xf7\xa2\x92\x29\xa5\x51\xf6\xa2\x92\xc0\xa4\x75\xf3\x35\xed\xc5\x7e\x43\x05\xa9\x83\x91\x82\x82\x77\x52\x25\x37\x68\x4c\xc7\xcf\x9d\xf4\x43\x74\xeb\x32\x4a\x61\x3b\x71\x73\x92\xbe\x4e\x52\xe4\x98\xb1\xdc\x0e\xc6\xd2\xa7\x81\x58\x76\x3b\x03\x5b\xfc\x0a\x6c\x81\xbb\x76\x4b\x40\xc0\x56\xba\x31\xf2\x01\x60\x39\x99\x5b\xaa\x4a\xa6\x7b\xa3\xe3\xdb\x1e\x3f\x07\x04\x9f\x9d\x08\x9e\x69\x8d\x3e\x1d\x15\x2b\x38\x35\x29\xcd\x46\x6f\xfe\x60\xc1\x6e\xf1\x6e\x05\x8c\x6c\x2e\xdd\x74\x81\xfa\xa9\xd5\x21\xa9\x0e\x52\x63\x8e\x64\x08\xd6\x1b\xd7\x51\xb1\x14\x84\xfa\x47\x8a\xd4\x7d\x19\xce\x97\x8d\xf8\xc4\xaa\xfc\x65\x39\x08\xcb\xfa\xc4\xb2\x98\xa4\x6c\x06\xaa\xdf\xcd\xb8\x24\x67\xeb\x5e\x96\x93\x49\xf6\x53\x37\x42\xfc\xe2\x82\x69\x7e\x0a\x53\x46\xf4\xe6\x9c\x8a\x67\x47\x31\xaa\xd0\x50\x4a\x96\xe4\xa4\x4b\xa6\xa3\x00\x79\x7f\xbe\x75\x5c\xd4\x15\xe2\xda\xd1\x80\x48\x7e\xde\x3a\x46\x59\xf2\x79\xb7\x7e\x45\x6a\x39\xc6\x40\xd1\xa9\x52\xca\x4b\xdc\x84\x65\xf4\x8b\x92\x2c\xc3\xd6\x2e\x50\x68\x99\x23\x4b\x7d\xb6\x5f\x01\x79\xe6\x7e\x99\xae\xdf\x89\x04\xe0\xf9\xe1\x3e\x6c\xcf\xb4\x6e\xa7\xc8\xa2\x6e\xa7\x45\x57\xf8\x9e\xab\xe4\x0d\xfd\x49\x2b\x5b\xbf\x25\x37\xce\xe4\xc6\xe2\x21\x6e\x70\x63\xdf\xc0\x81\xae\x23\x5a\x17\x52\x87\xa9\x05\x1b\xee\x96\x87\x90\xe8\xde\xa6\xc1\x13\x6e\x8f\xb5\x62\x98\x93\xae\x68\x95\x9c\x0e\x83\x5b\xa2\xc3\xa3\x01\x52\xe0\x9a\xea\x2e\x8e\xce\x23\x4b\x1d\xb6\x97\xd6\xa0\x6d\x76\x14\xae\x2a\x41\xc5\xbe\x7a\x08\xab\xe0\x7c\x52\x73\x1c\xcb\x06\x44\x77\x12\xa2\x19\xe1\xda\xe5\x75\xd2\xd6\xd7\x50\x10\xa6\xfe\x52\xb2\xc6\xed\x7f\x39\x2c\x90\xa6\x71\x80\xd3\x10\xb9\x71\x70\x21\xab\xf8\x0c\x4e\x71\x4e\x87\x31\xec\xea\x25\x03\xff\x6f\x05\xbf\xc7\xe1\x60\xfe\x3d\x0e\xd4\xe0\x05\x62\xd4\x7d\x76\xbf\x87\x2d\x60\xbf\xac\x67\x44\x3a\xa6\xbd\x61\x23\x25\xe1\xef\x0b\xb5\x65\xa0\x3d\x94\xcd\xa9\x35\x3e\xf2\x30\x23\x79\x0c\x39\x26\x00\x18\xc4\xb9\x57\x76\x78\x70\x45\x9e\x84\x86\x6d\xa4\x00\xeb\xfa\x8e\xf6\x8d\xbf\x57\x87\x68\x23\x8b\x6d\x60\xcf\xc0\xcb\x5b\x16\x27\x62\x18\x97\xa6\x83\x6a\x64\x43\x76\x9c\x72\x76\x36\x80\x0b\x8d\xd0\x4b\x3d\x23\xab\xa5\x00\x08\xf3\xe8\x88\x0b\x23\x7f\xec\xca\x16\x82\x68\x3a\x22\x69\xa1\x92\x63\x28\xf9\x4c\x5f\xa4\xcf\xce\x0b\x3f\xb1\x21\x3f\x83\xb8\x77\x1d\xbd\x14\x13\xda\xfd\x32\x3a\x2a\x1d\xe9\x7e\xdb\xa8\x31\x77\x9e\x43\x5b\xe3\x99\x52\x03\xd3\xef\x2f\x47\x00\x78\xd5\xa3\xe9\x70\xf2\xbf\x61\x0b\xd0\xc7\xc9\x7a\x51\x1e\x4e\x3c\x54\xd5\x84\x7c\x8b\xd1\x58\x6b\xd3\xa0\xe4\xb3\xe7\x1a\x41\x74\x74\x8e\x72\x3c\x47\x0b\xba\xc2\xb0\x79\xb8\xeb\x14\x87\x0a\xbc\xea\xca\x62\xfe\x5d\xe2\x0a\x4f\x1e\xdd\xa3\x85\xf0\x37\x70\x98\x56\x81\xd6\xb5\xee\xfb\x77\x8f\x9c\x6b\x0d\xe7\x29\xaa\xc5\xf0\x7a\x7b\x89\x8e\x3d\xe5\x42\x01\xf7\x69\x08\x89\xc3\x0b\x65\xba\xb8\x07\x11\x5f\xdd\x3b\x3c\xc3\x9b\xec\xde\x4d\x1c\x43\x2b\x00\xe2\xee\x20\x82\x7c\x28\x7d\x8e\x61\x3c\x02\x47\x72\x18\x42\xee\xd5\x43\xaa\x3b\xd5\xea\xd4\x66\x0c\xc3\x04\xa8\x05\xd0\x91\x10\xc6\x54\x56\x47\xd8\x1f\x04\x80\xd5\xe9\x47\xae\x98\xb5\x10\x2a\x2e\x67\x18\x33\x36\x94\x6e\x89\xf0\xae\xce\x6a\xc9\x94\x11\xc8\xc6\x92\xbf\x23\x2f\x8c\xe5\x61\x47\x98\x1c\x2b\x96\x65\x7b\x13\x87\xba\xfa\x15\x3d\x33\xa4\x26\x4a\xdd\x4c\x43\x2e\xe9\x1c\x3f\xb1\x12\xc6\xf4\xc2\x98\x67\xc4\x82\x48\x8e\x88\xb5\x92\xd4\xd3\x6d\x04\xc7\x44\xa4\x19\xc1\x31\x85\xc3\xc7\xa9\x54\x3f\x43\x28\x40\xd1\x18\x1f\x6d\xa5\x76\xe5\x79\xb1\x2f\xbc\xa2\xa4\xa9\x6b\xe3\x74\xed\x74\x4b\xa4\x77\xe8\x03\x43\x07\xa5\x1e\x84\x71\x39\x75\x5a\xc8\xf1\x90\xd4\x07\xe9\x69\xc8\x7e\xd7\xc6\xd6\xc4\x66\x9c\x0a\x52\xde\x06\x05\xc0\x0b\x39\x04\x8e\x7a\x98\xa2\xdc\xb8\xcc\xbd\x05\x08\x2f\x2d\xda\x22\xb3\xca\x16\x9c\x65\xdc\xca\x45\xae\xe8\x76\x38\xba\x35\x93\xa7\x92\xf3\xd8\x5c\xaa\xc8\xb6\xc7\x1d\x13\x67\xb2\x30\xa9\xa1\x24\x38\xe0\x52\x06\x00\x8e\xcd\xa4\x4a\xfb\x36\x67\x69\x1b\x8f\x3b\x85\xdc\x31\x08\xa0\x6a\xe2\x9c\x45\x90\x0c\x29\x8a\xfc\x75\xca\xc1\xe3\x11\x53\x04\xf0\x13\xdb\x03\xbc\x1e\x19\xa8\xc7\xc9\xfc\x32\x8a\x79\x24\x78\xcd\xcd\x1d\xc5\xcb\xa7\x21\x6a\xbc\x6e\xb5\xab\x79\x29\x24\xe2\x54\x5e\x8b\x14\xdb\xd8\xa3\xe4\x18\xde\xfa\x76\xc5\x66\x8a\x55\xe4\x1b\x9a\x0f\x4b\xbc\x48\x33\x39\x63\xe4\x90\x2d\x83\xed\x9a\x06\x41\x01\xca\x49\x2c\xb5\x39\x0c\xda\x3c\x2c\x41\x13\x2f\x66\xd8\xf3\x2b\xee\x8e\xc0\x35\xa7\xf9\x64\x74\xa9\xcc\x43\xb1\xa7\xf8\x8b\x98\x39\x79\x26\x1d\x02\x6a\xc6\x34\x54\x4a\x9f\xde\x0c\x9d\x10\xe4\x9a\x9b\xab\x65\x2f\x71\x4e\x8a\x1d\x19\x98\x3d\x0d\x64\x52\xa5\x9c\x78\x04\xa9\xd1\xd8\xa6\x19\x4b\x95\x37\x67\xf2\xe8\x21\xa5\xcd\x2c\xb1\x02\x59\x26\x37\xb6\xc8\xbc\xd5\x26\x31\xd4\x24\xf4\x6a\xd3\xb8\x69\xb5\xd3\x99\x45\xaf\xea\x2f\x5a\x6a\xfc\x41\xf4\x42\x60\x20\xdf\xee\x90\xbb\x4d\x6b\x0d\x40\x76\x66\x21\x6f\x95\xdf\x10\x9f\x14\x0a\xc8\xe4\x56\x97\x86\xf4\x49\x1d\x50\xea\xb1\xb6\x59\x64\x81\x42\xc1\xa0\x68\x27\x8b\xb3\xcf\x08\xbc\x19\x2c\x4c\x88\x54\x10\x18\x06\x33\x2b\x01\x9a\xae\xa8\xda\x93\xeb\xae\xa6\xc8\x61\xb8\x2a\xd0\x6d\xe0\x39\x74\x82\xa1\xcf\x2d\x9b\xcb\x86\x6c\xd2\x64\xf8\x4e\x71\x73\xb1\x3c\x9c\x21\xb7\xae\x0c\x61\x9c\x5b\xa1\x2b\x5e\x9f\x9b\x4d\x82\x89\x26\x31\x09\x20\x12\x11\x67\xe3\x1e\x51\xb7\x57\xc2\xaf\x9c\x2d\xf1\x43\x86\x93\x4e\x5d\x7b\xf1\xf7\x98\x06\xb3\xa5\xa4\xe9\x70\xb2\xdc\xb8\x22\x83\x49\x9b\x3d\x4e\x20\xad\x8d\x0c\x52\x42\x9f\xe6\x66\xd3\xd5\x32\xbb\xb7\x09\x98\x13\x37\xa9\xc8\xf7\xd0\x66\x30\x3a\x51\x12\x5f\x1e\x85\x55\xdb\x1c\x8e\x41\x03\x54\x3c\xd5\xbd\x39\xa2\x57\x06\x1f\x60\x64\xf2\x07\x69\x7e\xf1\x07\x22\x2a\x96\x3f\xc4\x32\x98\xe1\x0c\x24\x64\x4d\xd3\xda\x70\x90\x92\xe9\x75\x28\xcf\x03\x17\xa4\xb5\x0a\xce\xa9\x32\xe4\x74\x4d\xac\xa2\xa3\x6f\x9a\x38\x58\xf5\x62\x2e\xf3\x05\xf0\xd5\xf2\x94\x22\xf9\xcf\xa5\xa6\xdf\xfd\x85\x00\xf9\x64\x8b\xe9\xe8\xdf\xea\xbe\x73\x71\x85\x1d\xf2\x33\x43\x1b\x74\x06\x94\x4f\x50\x16\x98\x58\x26\xa5\xe4\xf3\x13\x63\x02\xbd\x8f\xf5\xca\x68\xf0\x09\x6a\xc0\xcc\xbc\x09\xad\x2c\x3f\xcd\x8e\xe2\xa1\x40\xcb\xa3\xd8\x56\x9b\xde\x84\x56\x66\x9f\x86\xef\x20\x6e\xcc\xcd\xb4\x4a\xf3\xa8\xe1\x0a\x6b\x82\xe8\x74\x4f\xfc\xe6\xc3\x33\xc0\x3e\x1d\x80\x69\x70\x69\x69\x19\x13\x39\xd1\xf7\x0e\xc9\x18\x3e\xae\xee\x5c\x0d\xbb\xd1\x25\x32\x75\x72\xa9\x16\x4c\x43\x92\x75\x27\x4e\xac\x92\x0d\xd9\x6a\x5e\xdc\xc4\x91\x5e\x98\x28\x45\xbf\xc2\xb4\x8c\x9f\x98\x4c\x14\x4e\x4c\x2a\x34\x3c\x01\x85\x4d\x32\x2c\x16\xd3\xc0\x63\x19\xc3\x44\xab\x6b\xae\xfb\x36\x62\xc2\x01\x51\xf1\x9a\x1b\x70\x47\x38\x07\x90\xe2\xd6\x52\x6c\xd9\x1d\xbb\x01\xd0\x51\x04\x1b\x32\xcf\xbc\x05\x1b\x33\xb9\x01\x1b\x12\xcb\x34\x72\xa7\x46\xeb\x8b\x1f\x9c\x94\x74\xaf\xfb\xc2\x2e\x25\x7b\x65\xf3\x11\xf0\xe6\xa3\x87\xc2\x49\x05\xe7\x14\xba\x5a\x3a\x55\x89\x26\xd6\x4d\x0a\x4b\xb6\xf9\x08\x43\xba\xf2\x0a\xb4\x7c\x6c\x3e\xe7\xcf\x5a\x74\x6d\x12\x7d\x13\x1b\x4e\x42\x15\xaf\x51\xcc\xc7\xb1\x99\x2c\x1a\x61\xf7\x70\xbe\x5e\x6c\x65\x4e\x38\xe0\x82\x24\xbd\x94\x20\x72\x27\x51\x08\x9b\x54\x16\xf7\x9b\xdc\x77\x51\x70\xb0\x81\xa6\x2b\x92\xc5\x77\x5f\x84\x25\x9a\xd5\x3a\x88\x2d\x67\x27\xd7\x61\xeb\xc5\x33\x41\xdc\xc0\x78\x1d\x92\x05\x18\xee\x3a\xdc\x6e\xa0\xb1\xd0\xf0\xe4\x4d\x8b\x30\x60\xd2\xfa\xb6\x95\x3c\xbd\x0e\xb1\xf9\x9f\x05\xf8\xda\x4a\x91\x1f\x97\x67\x5c\x5b\xc9\xbf\x2f\xa2\xb4\x3a\xcf\x1f\xb2\xf4\x31\x25\xac\xa0\x14\xb2\x6a\x8b\x22\x80\x24\xc5\x69\xcb\xa4\x25\x1a\x3e\x97\xe1\xbd\x46\xe7\xae\x1c\xbb\xc5\xcc\x33\xb5\x42\xd1\x4c\x17\xea\xdc\x92\x7e\xae\x1c\x88\xe6\x57\x6c\x5d\xb5\xf9\xf8\x59\x21\xb0\x2d\x75\xbb\x12\xcd\x17\x14\x97\xd1\xb3\x33\x64\xe6\xe4\x20\x11\xb7\x16\xda\x9c\x66\x9e\x15\xca\x1c\x4c\x7c\x19\xf4\xab\xbf\x77\x15\xc3\xa8\x68\x5d\xd8\xa4\xf8\x48\x29\x25\x7e\x40\xc7\xc4\x78\xb0\xb0\xad\x36\x01\x62\x15\xbf\x94\xbe\xab\x1d\xd9\x56\x89\x8d\x62\xbd\x05\x44\x77\xc6\xc1\x7e\x51\x9f\x56\x75\x50\x18\xc3\xe2\x8a\xb4\xaa\xdb\xaa\x51\x2b\x80\xa9\xa1\x4f\xb6\x68\x81\x49\xb0\xf9\x77\xb0\xa7\xd9\x98\x21\xe2\x99\xca\x4a\xee\x01\x06\xd4\x06\xd7\x5b\x68\x90\x6a\x54\x2b\x34\x48\x0e\xc3\x6a\x44\x76\x72\x74\x17\x8c\x58\x1b\xed\x22\x6f\x89\xce\xde\x25\x1f\x86\x18\x2d\x72\xa4\x52\xa7\xb0\x2d\x72\xa4\x2e\xad\x97\x8b\xb4\x25\xad\xd9\xa9\x38\x6c\x03\x02\xf6\x38\x9e\x4b\x06\xad\xaf\x64\x59\x4d\x4f\x1d\x7a\x75\xe7\xca\x34\x8c\xea\x55\x72\x5a\xb2\x6b\xd8\xd4\xea\xce\xd5\x06\x64\x82\x43\x80\x58\x1d\xb2\xd4\xfc\x7e\x62\xe2\xf7\x1b\x0e\x68\xf3\xd9\xb0\x3c\xfb\x51\xfe\x9b\xbe\x40\xa2\x60\x77\xab\x2b\x5d\xbb\x5b\xd4\xc6\x6b\x22\x64\x8f\x9d\x63\x7e\x23\xe0\xc7\x2f\x04\xf8\x2a\xa1\x2e\x2c\xbb\x5e\x2b\x5e\xe4\x35\x69\xb0\xa7\x35\x02\x4e\xb6\x8e\xc1\x19\x63\x28\x46\xb9\x15\xb8\x3b\xbd\x6b\xba\x26\x44\x1b\xc6\xb5\x26\x02\xb5\xc3\x6d\x46\x5f\x24\xae\xcb\xd0\x5d\xa1\x3f\xb9\xae\xb9\xfc\x5e\xc3\xbf\x24\x24\x98\x3e\xfa\xd9\xe2\x9e\x52\x93\x82\x18\xdf\xab\x37\x63\xad\xe0\x0b\xcc\x90\x9b\x4a\x5d\xf2\x10\x0a\xac\x1d\x53\x4c\x2e\x8e\xa8\xca\xac\x06\xe3\xb5\xbc\x84\xe2\x47\x54\xe5\x84\x4c\xaf\xc5\x78\x98\x08\xd6\x72\xbb\xdd\x7b\x2e\x23\x79\x4f\x8c\x32\x0e\x53\xdd\x77\x7d\x94\xd8\x01\x47\x28\xac\xc8\x41\x0b\x39\xc0\x3b\x96\xcb\x0b\xcb\xd2\xbb\x8f\xe4\x68\xd9\x42\xf1\xdd\x7d\xfd\x04\x6d\x62\x19\xde\x46\xd2\x11\xb3\x48\x89\xd2\x60\xcd\xeb\x0c\xda\x04\x78\xce\x18\x91\xf6\xa7\xb1\x1e\xac\xe9\x24\x78\x29\x9e\xcd\x46\x6a\xeb\xd8\x3e\x5f\x1e\xca\x94\x32\x2d\x7d\x92\xca\xcd\xcb\xe2\x0b\xd3\xe3\x10\xec\x7f\xf9\xd2\x99\x89\xcf\xea\x69\x42\x97\xc0\x16\xaf\x0b\xac\x2b\x18\x2a\x53\xbc\xe4\x69\xcc\x30\xf8\xbf\x98\x04\xcb\x4f\x7e\x14\xf7\x91\x69\x7d\xab\x3c\x38\x2d\xd2\x9e\x78\xdf\x67\xc1\xf1\xbd\x33\xbf\x64\xd3\xdd\xbf\x7b\x06\x24\x1b\xa1\xfd\xce\x6f\xcd\x7c\xcb\x2b\xc9\x71\x20\x89\xa0\xd5\xc7\xbd\x50\x6c\x15\xed\x4c\x9e\x3e\x34\x48\xac\xc7\x13\xc2\xec\xb9\x6d\x3c\xdc\xc5\xcd\xb6\x8b\x16\x88\x85\xb3\xb2\x2c\xa1\xf5\x38\x99\xf8\xc5\x13\x89\xec\xbd\xde\xa8\x93\xcc\x2f\x5e\x38\xd6\x0d\xb4\xbc\x0d\xa4\x1b\x68\xe1\xd3\xd4\x50\xb7\xbc\x3a\xac\xa7\x6a\xe9\xd3\xd4\x0a\xbe\x2c\xec\x8e\xfc\xbc\xf0\x5d\x7a\x8b\xe0\x73\x1c\xb6\xc8\xbc\x50\xb6\x08\x12\xff\x21\x2c\x56\x4b\xe4\x27\xc2\x62\x9b\x3f\x40\x7f\x86\x3f\xc8\xca\x21\x64\x9f\x60\xe5\xcb\x97\xc7\x7e\xf7\x80\x1f\x92\x93\x91\x73\xb5\x7d\xcc\x6f\xaa\x1b\xe6\x93\x02\x89\x26\x2f\x01\xc7\xce\x0b\x22\xf2\xf4\x2b\x88\xf0\xf0\xa3\xd3\x70\xd1\xc4\x0b\x3b\x3c\x6c\x10\x03\x3a\x08\x02\x90\x0b\xc1\x3c\x2b\xc3\xf8\x84\x0d\x16\x8a\xfc\xc9\x01\x45\x5f\xe0\x0c\x20\xce\x27\x94\x5c\xf6\xe7\x23\xd7\xd6\x8d\x42\x02\xfc\x61\xc2\x8c\x8f\x16\x59\xdd\x1a\x9f\x1c\x6b\xf7\x05\xac\x41\xbe\xf9\x94\x80\xef\xe2\x85\x68\x69\xa7\x82\xad\x55\x27\xdd\x47\x45\x15\x6c\xfe\x10\x52\xaa\xc9\xf0\x53\x75\x72\x41\x7b\x3f\xd5\x89\xb0\x9d\x1f\xee\xbc\xc8\x41\x3f\xd5\x4c\x9f\xec\xed\x47\xdd\x54\x9f\xca\xc7\x10\x51\xb5\x9e\x4f\x23\xf4\x14\x72\xf6\x91\x65\xe9\xb1\xf8\xc8\x8c\x04\x75\x0f\x00\x31\xad\xae\x98\xb7\x7c\xe1\x6e\xb8\xf3\xea\x9a\x32\xb3\x3f\xb0\x3b\xd3\xae\xd8\x90\xe9\x47\x1e\x39\x98\xc5\x27\x8c\x9f\x36\xf7\xd6\x87\xf6\xa2\x8f\x9c\x43\x6b\xef\x67\x28\xef\xbb\xbb\x5b\x4b\x2c\xe6\xbd\xfb\x4c\x75\x5a\x88\xd5\xc7\xe4\x16\x1a\x4a\x3e\x2b\x16\x0c\x8c\x48\x50\xa1\xd1\xe4\x63\x18\x8a\x86\xbe\x8f\x2a\x9f\xa6\xb7\x8f\x56\x4a\x6d\x72\x9f\xe5\xf4\x19\x7e\x79\x48\x81\xf0\xb2\x18\x90\x07\x63\xc5\xbc\x78\xc1\x2e\x39\xb4\x94\x7c\x3e\x6e\x11\xb2\xf3\xe7\xe3\x71\x40\x77\xf9\xa8\xa6\xa9\x93\x7f\x0c\xfa\xd0\x5f\xf4\x31\x7e\x51\xa1\xff\x73\x1a\x97\x2f\x7e\x9d\x71\x64\xed\x20\xc0\xc4\x02\x24\xd0\x7a\xff\x29\xbd\x50\x65\xe2\x1f\x12\x4c\x34\x51\x92\xa0\x45\xca\x1c\xb5\x8f\xd1\x24\x5e\xd4\xff\x70\x79\x42\xe3\xcc\x07\x37\x1d\x15\x8f\x1a\xe5\x81\x36\x58\xbf\xab\xd8\xd6\x3e\x5e\x2d\x55\xd4\xfe\xa8\xc8\xa9\xe5\x7e\xa4\xea\x22\xf2\x85\x7c\x3d\x7d\xbe\x2c\x64\xc1\xf3\x6b\x03\xd6\x45\x2e\xcb\x2e\x65\xc0\x74\xa9\x2b\xea\xa3\x1e\xb6\xfc\xbb\x6b\x87\xf0\x7e\x6e\xb7\x02\x42\xf8\x31\x0f\xb6\x0e\xa5\x0f\xba\x94\x77\x28\x3e\x1a\x21\xdd\xbc\xb8\xec\xe0\x59\x79\x1c\x83\xb1\x49\x06\xd1\x24\x51\xc6\x3a\x7a\x01\xeb\x23\x19\x56\x49\xfe\x68\x82\xd4\xda\xf0\x79\xa3\x2f\x3e\x33\x80\xc4\xcb\x55\x1f\x7c\x64\x49\xad\xe6\x3c\x62\x5e\x83\x97\xe4\x2f\x9d\x17\x2b\x56\x25\x5f\xc8\xb2\x85\x7c\x7c\x62\xef\xd3\x54\x7f\x52\x3a\xdd\x08\xf7\x13\x57\x55\x07\xbd\x4f\x89\xa2\xba\xf1\x99\x54\x04\xe1\x2e\x27\x94\x70\x95\xf8\xe5\xf6\x85\x5f\x72\x30\x0e\x3a\xc3\x07\xd5\xe2\x07\xe9\x41\xf7\x07\x8a\x8e\x43\x87\xcf\x8c\x39\xa3\xfb\xec\xb9\x45\x9e\x3a\xb5\xde\x41\xdf\x4f\x94\x0b\xea\x3d\xb4\xb3\x58\x78\xcb\x6e\x8b\xf3\xf5\x23\x31\x38\xdb\xfa\xe1\x07\x16\x5e\xdd\x75\x86\xae\xca\xc2\xe0\xc6\x49\x82\x43\x0a\xd0\xb5\x93\x70\x41\x13\x69\x9d\x35\x30\xde\x1f\x02\x05\x68\x6e\xa2\x23\xbf\xda\x2a\x40\xed\xe0\xc9\xd9\x3c\x98\x8e\x6d\x40\x05\xbc\xe1\x44\xec\xa7\x8c\x5c\x3b\x49\xb0\xac\x81\xf7\xa4\x4c\x82\xa1\x4c\x27\xf1\x81\xb3\xda\x96\x7c\xd3\x6e\x58\x53\x7e\x65\x16\x41\x36\xb3\x0d\xac\xab\xcb\x47\xde\xd2\x13\x34\x3d\xf2\xf6\xf0\xec\xc0\xc0\xd5\x10\x8d\xee\x37\xa2\x04\xa7\xf9\x44\xa0\xa7\xb2\x41\x3b\x11\xe2\x67\xf5\xef\x31\x1a\x6b\xd6\xc9\xa4\x51\xe5\xc4\x2a\x67\x4a\xc1\x93\x08\x7b\xf5\xfb\x93\xc4\x03\x6a\xdf\xe7\x70\x68\xa6\x4a\x0c\x86\xd9\xe9\xdb\x89\x0c\xdf\x85\xe4\x00\x07\x9c\x46\x58\xeb\x86\x23\x18\xc9\x86\x19\xe0\x24\x3a\xa3\x3b\xf4\x94\xaa\x71\xf4\x4f\x62\x11\x4b\x00\x8d\x58\xc4\x1e\x3f\x88\x1e\xd9\xe6\x88\xbf\x9c\xf1\xd3\xdc\x86\xca\xc5\x16\x00\xf3\xfe\xc3\x69\xe9\xe9\x78\x26\x6b\x25\x5c\xeb\x9c\xca\x89\xc3\x1f\x4e\xf4\x40\xd6\x87\xab\x2a\x0e\x95\xf9\x94\x87\x43\x0b\x35\x38\xc5\x69\xc4\x22\xf4\xe1\x54\x01\x98\x18\x9c\x4f\xfd\x59\xb5\x7c\x7b\xc5\xe3\x5c\x94\x35\xf7\xc8\x59\xf0\x4e\x93\xd0\x89\xe1\x50\xaf\xc3\xb9\xbc\xbb\xee\x33\xd7\xa6\x3c\xe1\x0b\x3b\x6e\x8c\xcf\x35\x5a\x91\x6d\x45\x69\x5d\x9e\xc9\xe3\x88\x76\x70\xe2\x18\xd3\xc7\x78\xc2\x66\x3a\x52\xc4\xf9\xf1\x7a\x2c\xdf\x50\x20\x4e\xdf\xef\x49\x26\xa4\x29\xa4\xb8\x38\xd8\x05\xb9\x41\x89\xda\xb1\x4e\xb5\x09\x0d\xac\x27\xda\x84\x31\x2d\xa7\x65\x1e\x34\x3d\x9e\x2a\x13\x1e\xc3\x08\xb0\xe7\xa3\x53\x25\x1e\xa8\x71\x0d\x50\x5b\xb2\x95\xd8\x4a\x3c\xab\x36\x89\x47\x58\x1e\x4d\x2f\x70\x9e\x26\x2a\x77\x00\xe5\x25\x71\xfb\x54\x66\xa9\x36\x27\x33\x2c\xec\xec\x34\xff\x01\x9a\xe7\xa9\xbe\xa1\xdd\x8b\xd2\x41\x39\xe8\xca\x25\xaa\x01\x26\x58\x98\x36\xb0\x93\x5c\x08\x4a\xe8\xe7\x45\xcd\x0b\x78\xec\x49\x34\x64\x17\x1a\x24\x48\xea\x1e\x61\xf2\x20\x69\xa3\xa3\x7e\x5c\x8e\xbb\x5f\xa7\xb9\x17\x95\x76\xce\x60\x5e\x18\x77\x4e\x99\x97\x3f\xa0\x85\xc8\x9f\xcf\xdb\x12\x7c\x7e\x53\x19\x82\xdd\xb5\xcc\x5e\x8c\x71\x07\x9c\x98\x20\xb9\x17\xf5\x7f\x9c\x16\x83\xf4\xb0\x62\x51\xd4\xf0\x71\x62\x50\xf4\xde\xd9\x69\xea\x45\x24\xb3\xd3\x9b\x80\xde\x2b\x3d\x1f\x99\xbb\xcf\xd0\x68\xc1\x87\x39\xb1\x3b\x32\xe6\x44\x2f\xb9\x9d\xf0\x43\xc3\x36\xce\x87\xdb\xcc\x48\xba\x54\x5d\x6a\xc6\xaf\x9d\xb8\xe7\x5a\xf4\x09\x9b\xc2\x8a\x7f\x3e\x16\xec\x96\xd2\x3d\x96\x0c\xf1\x87\x00\x12\x4b\x78\x05\x12\xbd\x1a\xf5\xaf\x41\x91\x52\x7c\x55\x55\xed\x0c\x25\xa6\xfa\x42\x16\x0b\x99\xd1\xeb\xfc\xec\x69\xa2\xdb\xb1\x06\x12\x1a\xe4\xf8\xde\x12\x35\x2e\x08\x0f\x9e\xf9\x60\x4f\x6b\x05\x33\xc2\x45\x12\x03\x2d\x25\x17\x57\xfe\xbc\xfd\x76\xa1\xda\x8c\xc6\xfc\xae\x83\xe3\xb4\x7c\x06\x4a\x90\xb3\x0b\xb3\xa6\x11\x4c\x97\xb5\x81\xd9\xdc\xeb\xd0\x58\x97\x79\x3e\xb1\xbf\xda\xa9\x18\xdd\x6c\x7c\xd3\x91\x8d\x1f\x3c\x87\x89\x67\x32\x24\x72\xfa\x2e\x42\x58\x54\x9d\xae\xb8\xf3\x07\x8c\x2f\x42\x58\x3c\xf8\x97\x05\x9d\x48\x87\xdd\x2e\xaa\x38\x8d\xc3\x16\x6a\x7a\x88\x74\x17\x72\x41\x91\xb4\x5d\xd8\x3b\x55\x71\x2e\xf2\x2f\xef\x93\xff\x0d\x95\xbb\xc2\xe6\xc9\x91\xa7\xc8\x56\xed\xe0\xfb\x95\x41\x28\x2c\x8a\x57\x68\x4f\xc3\x17\xec\x34\x9c\x47\xea\x28\xee\xc9\x30\x4b\x32\x2d\x9b\xa6\xf9\x32\x84\x45\xab\xf1\xe5\x65\x07\x69\xfc\xe5\x65\x07\x23\x44\x2e\xe3\x59\x8c\xfe\xb8\x54\xa5\xe2\x59\x62\xee\x2e\x14\x25\x2c\xa8\xe9\x85\xd5\x53\x49\xff\xf2\x1e\x44\x80\xd5\x34\xcc\x01\x57\xef\x3e\x18\x24\x72\x15\x13\x62\x30\x49\xee\x3b\x68\x28\xbd\x8a\x95\x7f\x7c\xe6\xf0\x4d\x9f\x2d\xa2\xef\x10\x24\x34\x80\x90\x5d\x35\x52\x1d\xf2\x2c\xf7\x05\x0a\x16\x83\x82\x0b\x5d\xe4\x2d\xd0\xd3\x79\x91\xab\x80\xba\x08\xed\x22\x7a\xc6\xdb\x09\x17\x91\xa4\xc6\xa3\x5c\x5c\x6e\xf0\xf2\xe8\x85\xe5\x53\x2b\xe8\x45\xec\x4c\x77\x31\x58\x3e\x25\xdd\x17\xf5\x89\x3b\x42\xf0\xd5\xc0\x17\x61\xd4\xe0\x56\xa2\x4b\x18\x32\x1d\xa0\x49\x7d\x45\x8b\x76\x12\xa8\xeb\x73\xc0\x9e\xa1\x11\x70\x66\xb1\xb9\x12\x87\xa7\xa1\x1f\xf8\x1a\x19\x9b\xbb\x10\xba\xf1\xaf\x4e\x00\x2d\x32\xfb\x15\xba\x23\x9a\xc0\x45\x44\xce\x70\xaf\x48\xc5\xb4\xa2\x23\x45\xd8\xe9\xcb\xc5\xcc\xd9\x1d\xdd\x8e\x2a\xbe\x57\x17\x04\xb6\x06\xf4\x6e\xd5\x50\x30\xf7\x60\x19\x5d\x23\x06\x71\x6d\x90\x64\xf4\xed\xc2\x05\x69\x86\x80\x0b\x55\xb3\x4f\x01\x1e\xaa\xa6\x04\x21\xc4\x9d\xe9\x67\x12\x7f\xdb\x4f\x8f\x96\x1d\x18\x5b\xaa\xa9\xfb\x9a\x6a\x25\x90\xa0\x8b\x3b\x7e\xa6\xfb\xbd\xa6\x71\x1a\x2e\x91\x7a\xef\x41\x15\xc8\x9b\xd4\xd1\x0e\xaf\x25\x9a\xda\x82\xa0\x53\x6f\x04\x5c\x2b\x46\xf7\xab\xe8\x8a\xd1\xbd\xbe\x27\x1d\xbe\xac\x9c\xe0\x11\x0d\x1d\xd4\x0d\xf9\x28\xd9\x48\x93\xcc\x75\xe4\x89\xfb\xa8\x3c\x88\x3e\x1f\x33\x67\x32\x77\x9c\x8e\x5a\xa9\xae\x8f\x20\x12\xa6\x1f\xed\x9c\x00\x1b\x8b\xe4\x70\x8a\xa6\x50\xd4\x1a\x7d\x6d\xcd\x36\x9b\xb5\xec\x3a\x63\x51\x7c\xa5\xdc\xe0\x3a\xcc\xa7\xa8\x92\x7b\x85\x92\xeb\x86\x9e\xee\x95\xcf\x70\x66\x74\x8d\xeb\xb4\x5a\x9b\xad\xb5\x4d\x32\xd9\xd3\x39\x39\xb4\x40\xf7\xef\x20\x09\xf2\xea\x85\xcb\xb1\xa3\x50\x5c\x72\xfb\xef\xaf\x71\x5c\x5e\x8c\xd0\x9c\x7d\x5d\x12\x24\x8f\xa9\x29\x96\xa7\x34\x38\x8c\x8d\x88\x18\xd7\x1d\xc8\xc1\xe2\xf1\x10\x9a\x6d\xfe\xba\x03\x7f\x99\x02\x61\x34\x5e\x89\xb6\xfc\xa0\xa9\x3d\xae\x27\x04\x71\x5a\x10\xde\xa9\xdf\xe4\x7a\xec\x09\x60\x3d\x08\xe5\x9e\x10\x2e\xd6\x75\x8f\xd1\x23\x31\x14\x10\x0f\x49\x8e\xdc\xd9\xcd\x6e\x4b\x10\x06\xd3\x0f\x6a\x90\xbe\x5e\x42\xe1\xc4\xca\xcd\x55\x8b\x79\xe4\x2f\xfc\x7a\xdd\x93\xf3\x52\x0b\x0f\xc3\xd5\xf5\x3a\xda\x5e\xdb\x7d\xa8\x44\x42\x0b\x6e\x0b\x69\xbb\x37\xb7\x99\x01\x93\x5f\xb1\x37\xac\xe1\x3e\xd4\x19\xaa\x3f\x84\x53\x64\x3f\x7b\x8b\x81\x3a\x1f\x8d\x62\xba\xb5\x23\xec\xdd\x61\x0b\x64\xfb\x6f\xae\x37\xf4\x69\x0b\xb6\x93\xbd\xb8\xc3\xc7\xd7\x78\x66\x6b\xd9\x89\x1b\x7f\x9f\xc9\x75\x6f\xe2\x60\xcc\x82\x7d\x63\x2d\xa4\xd8\x48\xbb\x93\xd3\x63\x46\x49\x14\xee\xbe\x40\x57\x91\x6a\xef\x1c\xd3\x63\x4a\xf2\x3b\x2c\x18\xb7\x79\x8b\x55\x53\xef\x70\xf1\x45\x13\xe3\x9a\xec\x38\x13\xe1\x55\xfd\x4a\x0f\x96\x7f\xd7\x4c\xc5\x09\xa0\x52\xf0\x7e\x61\x79\xc5\x72\x71\x88\x69\x77\x09\x2c\x64\xc8\x12\x58\x04\xa8\xf4\xac\xa9\x91\xdd\xd4\x04\x50\x3c\xbd\xab\x94\x56\x20\xd6\x98\x0b\x3d\x9b\x71\x58\x6f\xe7\x1d\x16\x43\x38\xd2\xed\xbd\x3a\x43\xda\x6e\x82\x5e\x4c\x68\x73\x73\xc7\x4e\x12\x7e\xcb\x7a\x30\x8f\xdc\x9b\xdd\x94\xe5\xfe\x37\x25\xf1\xe1\x0f\x80\x08\x7b\xca\xad\xa3\xad\xfa\x91\x9c\x77\xf8\x83\xcc\xa7\xd8\x82\x21\xc0\xc9\x3b\xea\x6a\x0b\xd4\x1e\x08\xc0\xdc\xbd\x9d\x2e\xff\xb8\xb9\x77\xae\x2a\x7b\x5b\x85\xbd\x09\x07\x79\xc6\xf2\x07\xbc\x70\x08\x2a\x37\xce\xac\x43\x90\x04\x9b\x70\x26\x2a\xc5\x20\xf8\x2d\x9b\xc0\xca\x72\x9b\x55\xc6\x20\xc4\xdb\xbb\x77\x9e\xfe\x3b\xee\xdb\x41\xf3\x6f\x72\xcc\x78\x7c\x6f\xe3\x29\x0d\x4f\xbc\xb9\x3a\x6e\x74\xca\xcd\x1d\x3b\x2f\x81\xdd\xc1\x31\x86\x1f\xc9\x76\xc5\x58\x2e\xd6\x99\xc7\xfa\x96\x7b\xb8\x56\x2e\x7f\x9b\x14\xe8\x5e\x12\x1b\xd1\x37\x4c\x98\x02\x6e\x89\x80\x22\xb9\x1e\xac\xc0\xc6\x25\x99\x8f\xce\x64\xb0\xeb\x5b\x93\xde\x6d\xde\xfe\x40\x62\x9c\x5a\xca\xc7\xf7\x0a\x60\xb0\x82\x8f\x52\x97\xf8\xf1\x11\x18\x3e\x6b\x3b\x84\xa1\xdc\x1f\xf1\x0e\x41\xe8\xfe\x44\xc7\x2c\x68\x73\x91\xaa\xd0\x7a\x13\xc5\x62\x72\xae\xdb\xfa\xb3\xda\x8a\xef\xd3\x8a\xe1\x7e\x65\xe6\x19\x8d\xdb\xf7\x29\x64\x19\x84\xd8\x95\x03\x6b\xca\x0d\x23\x18\xc9\xd6\xce\x9d\xe9\x5e\x01\x32\x1a\x5c\xea\x5b\x52\x21\x14\xbf\x81\x1c\x7e\x5f\x3a\x13\x9b\x2f\x58\x12\xa4\x4e\x64\xbd\xa3\xf8\x6e\xbb\x2f\xe9\xad\x5b\x71\xa3\x97\x8a\x12\x5e\x8e\x53\xe7\xbc\x6f\x40\xe2\xa4\x88\x3d\xa1\x26\x7b\xbb\xb1\x6c\x0e\xac\x3a\xb7\x41\x99\x8a\x04\xf7\x6d\x38\xa9\xe7\xe7\xd6\x14\xed\xa6\x92\x31\xd7\x1c\x7f\x37\x5a\x60\x80\xea\x36\x19\x0d\x4b\x0a\xf3\xa7\x47\x14\xf3\xa7\xb6\xfe\x9b\x48\x12\x2b\xb7\xb5\x9b\x2b\x05\xa6\x9a\xbf\x9f\x00\x27\x5d\x61\x18\x5d\x62\xca\xe3\x2d\x68\x96\x64\x6c\xa6\x9b\xf1\x58\x00\xc6\x5e\x25\x4e\xa2\xc2\xe3\xfc\x7c\x26\x44\xc8\x11\x22\xc7\x3e\x1d\xbd\x82\xc3\x67\x12\x3e\x38\xa3\xcd\x97\x8a\x16\x82\x9b\xfc\x75\xc6\x55\xde\xef\xa0\x60\x8b\xcf\x01\x19\x66\xfa\x06\x01\xf1\x17\xf5\x63\x7b\xa2\x56\xac\xb3\x78\xbd\x1c\xe5\x68\xe6\xf9\x00\xae\x4f\x58\x63\x21\x13\x54\xf0\xcd\xc6\x6e\x52\xc0\xb7\x18\xd2\xf2\x90\xee\x56\xbf\xc9\x63\xc1\x1e\x6d\xff\x54\xea\xad\x23\xdb\x00\xec\xe0\xa0\x51\xa8\x77\x7f\x44\x0b\x18\xd9\xc8\x3e\xc7\xa9\x9d\xbc\x98\x01\x9e\x16\xdc\xc7\x8b\x98\x4e\x2a\xec\xd6\x81\x70\xfe\xc0\xa5\x8c\x4a\x78\x92\xc3\x31\xf1\x64\x49\xce\xc5\xb3\x12\x38\xc8\xf1\x78\xcb\x40\xb4\x79\xc8\x13\xa7\x85\xf8\x31\x7d\xad\x81\xce\x94\xd8\xcd\x2a\x9b\x16\xd5\x55\xb6\xb2\xa8\x6e\x44\x8a\x3e\x24\x63\x31\x65\xea\x83\x52\xa5\x01\xde\x02\xbb\xcb\xd8\xe6\xa7\x90\x5d\xf6\xf0\x87\xe6\x0f\xb4\xb6\x7a\x1f\xbb\xf7\x14\x6b\x90\xd8\x93\x36\x13\x21\x88\xb5\x57\x1d\x89\xea\xb9\x75\xa0\x86\x50\x3d\xb7\x0e\xf4\x31\x8a\xe7\x16\xd9\x2e\xc5\x73\xab\x69\x17\x1f\x43\x35\x75\x04\x3c\x61\x05\x06\xdf\x9f\x8a\x44\xea\xbe\xc0\xaa\x8c\x9f\x7e\xc8\x53\x3b\xbe\xf7\x62\x50\x2f\xb7\x78\x91\x81\x7a\xb9\x7b\x18\x7a\x6e\x8e\xcf\xca\x5b\xec\x19\xe3\x37\xad\xec\xd5\x17\x75\x7c\xb7\xb9\x79\xef\x0b\x3d\x8d\xd2\xb8\x75\x88\x56\x9b\xc3\x15\x43\x21\x2c\x93\x4b\x95\xee\x46\x99\xdc\xd2\x6c\xdc\x9d\x31\x63\xf7\xd8\x40\x3f\x52\x49\x86\xa7\x3d\x23\xf6\x1c\x30\x92\x61\x36\xe0\x3e\xec\xca\x67\x4e\x96\xb8\x60\x11\x1a\xe3\x8c\x1f\xb2\xae\x69\x88\xb4\xc6\xae\x96\xf1\x07\xa3\xaf\x17\xc5\x1f\x6e\x1b\xac\xc3\xbf\x13\x10\x35\x6d\x4b\xe5\x95\xe6\x37\x54\xb0\x8c\xbf\xb3\x4e\x31\x64\x6a\x84\x42\xd6\x78\xa6\x15\xb3\x7d\x86\x4d\x42\x1e\x1f\x6e\xf3\xe9\xc1\x7c\x36\x97\x2c\x9a\xf3\x28\xc3\x9b\xf5\x4c\x52\x86\x77\x77\xe4\x0b\x54\x57\xe7\xe0\x33\xb1\x97\x08\x3e\x0c\xb1\x54\xc9\x6d\xd4\xd5\x1d\xd6\x2a\xa0\xac\x6e\x49\x9e\x43\x99\xdf\x61\x63\x13\xb4\x4d\x1b\x6b\xe9\xe3\x99\x0b\x07\x96\x10\xa0\x7a\xee\x1e\x8d\x05\x61\x59\x8d\x3c\xd7\xd6\xcf\x1d\x7a\x67\x2c\xa0\x6b\x31\x98\x87\x08\x8e\xc3\x6d\xfc\x04\xaa\x00\x1b\x14\xa9\x08\x25\x7e\x3e\xe6\x8b\x06\x80\x5a\x63\xe3\xb8\x5a\x73\x17\xe6\xf6\xa0\x48\xa5\xc0\xb4\x08\xda\x80\xcc\x3f\x28\x4c\x1a\xfb\x28\xb4\x9b\xb5\xc6\x3e\x5a\x5a\xa5\x46\x27\x15\x8e\xa7\xdf\x2c\x87\x60\xea\xa7\x42\x24\xcc\x98\x1a\xba\x45\x39\x8c\xb2\xb9\xfb\x2b\xc6\xe3\x26\xde\x10\xd1\xe0\x8d\x87\xe8\x7f\xc1\x65\x9b\xcf\xd0\x5d\xc3\x69\x1e\xab\xd6\x19\x00\xfc\x5c\xb1\x4d\x36\x17\x2b\x58\xf8\x2d\x74\x81\x88\x21\x1b\xfa\x1d\x1f\xd5\x28\xbd\x78\xcf\x1d\x7e\x66\x9e\xe1\x94\xee\xfe\x1d\xeb\x60\x8c\x3b\x06\xb4\x2f\x38\xb3\x6b\xba\x63\x70\x07\x7c\x37\x2e\x88\x9e\xe4\x3e\x51\xc1\xa7\x46\x6e\xd5\x64\x41\x8d\xdc\x6a\x4c\x39\x25\x72\xab\x7a\xf0\x63\x86\x57\x4d\xb8\x94\xc2\xcd\x91\xda\xfc\x79\x90\x2f\xc4\x5b\xcc\x99\x66\xa8\xa2\xe2\x6d\xb5\xb0\x17\x45\x6e\xab\x09\x8d\x9e\x97\x03\x8d\xcd\xc0\x12\xb7\x5a\xf1\x1f\x43\x2b\x3d\x84\x2f\x10\xef\x3e\x1b\xc3\xec\x94\xac\xb8\x3f\xfc\x01\xab\x90\x66\x24\x6a\xdd\x16\xa3\x7d\xac\x75\x3b\xf4\xa6\x51\xeb\xb6\x8e\xfe\xad\x8e\x4b\x1d\xdc\x62\xf8\xfd\x6b\x35\x1a\x4a\x93\x36\xea\xe0\x16\x6d\xe2\xd4\xc1\xdd\x3f\x34\x5e\x58\x55\xf7\x23\xd2\x1a\x43\xe2\x5e\xe3\x3c\x75\xc9\xbe\x5c\xf1\x8b\x38\xef\x57\x07\xa7\x2e\x3c\xab\xe5\x6a\x77\xa7\x5a\x6e\xf1\x08\xbd\xf2\x54\xf4\x1f\x8a\xe5\x56\x4a\xdc\x36\x6a\xe5\x56\x23\x8f\xac\x95\x1b\x51\xde\x14\xcb\xcd\x5e\xfb\xb4\x58\xae\x57\x3f\x5e\xf9\x2e\xea\xd2\x6b\xfc\x88\xf3\x4e\xdc\x59\x38\xfc\x9e\x50\x1d\x04\x23\xca\xe6\x56\x2f\x96\x52\x35\xb7\xa8\x17\xbc\x49\xf2\xc8\xc0\x91\x1c\x16\xdc\x7c\xb9\x48\x41\x15\xed\xf6\x7a\x77\x42\xb7\xe5\xcb\xa5\xbf\x43\x58\xe6\x84\x3c\xc8\xdf\x73\x60\x36\x5d\x65\x8d\x31\xcd\x17\x29\x8a\x60\x22\x19\xbd\x46\xda\xd7\x4b\x15\x50\x84\x37\x32\xc2\x30\xc1\x2c\x41\x41\xba\x79\xc9\xb2\x66\x00\xda\x4b\x0d\x3a\x6b\x08\xbe\x5a\x45\xf5\x48\x53\xb0\xb7\x6a\x68\x7b\x0d\x36\x89\x89\x68\x21\x45\xc2\xa0\x46\xef\xd4\x36\x4d\x8d\xde\x72\xb8\x22\xec\xa3\x11\xb1\x1c\x35\x7a\x21\x0e\x94\xe8\xad\x63\xf8\x4c\xa4\xb6\x6c\x37\xea\xf2\xca\x86\xa8\xcb\x5b\x54\x42\xac\xcb\xdb\x4d\xab\x48\x61\xde\xbc\xaa\xdd\xea\xb7\x70\x49\xd8\x4e\x23\x2e\xfd\xc5\x78\x6a\xc8\xf2\x5b\x03\x52\x34\xa9\x54\x03\x70\xcb\xbc\x7b\xa8\x87\x97\x2a\xbd\x55\x2f\xcb\x8b\x42\xab\xc6\xf2\xa2\xc3\x1a\x98\x6b\xbd\xde\x65\x64\xf3\xab\x94\x20\xe2\xb4\x18\x1b\x88\x34\xc7\x66\x19\x5b\x89\x2d\x16\x06\xb0\x30\x6f\xd7\xa5\xf6\x86\x24\x80\xc4\x46\xd1\xdd\xaa\x19\xf7\x35\xa7\x6b\x40\x01\xed\x76\x74\xc7\x60\x9b\xb0\x31\xbc\x56\xb3\x8b\xb5\x72\x75\xd1\x60\x96\x97\x9c\x6c\x5e\x39\x78\x2d\x6c\xa7\x6f\xda\x42\xbb\x11\xbc\xfe\x1a\x0b\xba\x96\x7d\x21\xaa\x4e\xbf\xc2\xde\xd0\x7c\x36\x57\x14\xb3\xe5\xea\xa2\x22\xef\xcb\x85\x8e\x43\xa0\x75\x78\x9f\xf0\xa7\x34\x8e\x61\x55\xaf\xe1\x9f\x01\x0f\x44\x0d\x0d\xa0\xd4\xe5\x8d\x8c\x73\x2f\x52\xc7\xb0\x84\x02\x35\x7a\xab\x85\x57\x5e\x92\xb3\x49\x76\x5f\x6f\x80\xe8\xee\xa5\x48\x6f\xb1\x66\x0e\x35\x7a\xf7\x0f\xb6\x00\x5b\xaa\x1f\x05\xb6\x00\xc0\xe1\x21\xf3\xd8\x2b\x61\xc0\xd5\x5e\x24\x0c\x03\xe0\xac\xde\xdb\xbf\xaf\xa1\xf6\xaa\xb0\x23\x7e\x51\xd8\xb7\x9a\x1d\xce\xc2\xbe\xd3\xb3\xa1\x4b\x5a\xda\xa2\xee\x8e\xb4\x69\x59\x5f\xe3\xbb\x5e\xf3\xc6\xc6\xa2\xc8\x2a\x60\xa1\x29\xca\xfa\x96\x25\xfc\x4d\x98\x0f\x1f\xb3\xaa\x6f\xd2\x3b\x4c\xb1\xde\xbd\x26\x5a\x13\xa3\xa4\xab\xcf\x62\xbd\x8a\x2e\x14\xeb\x2d\xd4\xe1\x6d\x16\xeb\x35\x38\xfc\x35\x5a\x49\xf7\x2d\x05\x7a\x8b\xe9\x30\xa9\xcf\x9b\x8a\xfe\x14\x0a\xf4\x56\x2b\xa1\xbc\x5e\xaf\x0c\x40\xaf\x98\x88\x5f\x71\x02\x50\x1b\x5e\x25\x1f\x31\x04\x6b\xb2\xb7\xce\xdf\x4f\x6c\x32\xad\x3f\x81\x84\x7e\x25\x9d\x77\x4d\x1f\xa1\x43\xb7\x9f\x85\xf0\xee\xdf\x91\xe5\x0e\x5b\x7b\x32\x90\xfc\xdf\x8f\xbe\x05\xe9\xf3\x07\xd4\x5b\xfe\xa0\x6b\xc5\xe7\xd7\x21\xe8\x96\x2b\x2c\x86\x04\xbc\x27\x04\xdd\xdd\x47\x1e\x2a\x5e\xd8\xa0\xc2\xef\xd4\xdb\xf4\x9e\x71\x44\xe9\x0a\x77\x73\x12\xe6\x18\x08\xcc\xe4\xfd\x6e\x81\x68\xe8\x4e\xb0\xbe\xaf\x86\x73\xeb\xfb\xc6\x8d\x0b\x0a\xfc\x16\xad\x21\xef\x15\x44\xc7\x17\xb1\x1b\x4b\xd8\x6b\xce\x02\xfd\xb9\x51\xd4\x57\x2b\xd5\xab\x19\x41\x5c\xb3\x8e\x9f\x9b\x8c\x78\x63\x02\x67\x0b\xf1\x9a\x03\x80\x22\xbb\x91\xa3\x80\x1a\xbb\xd5\x58\x92\xf7\xc6\x67\x87\x60\x40\x8d\xdd\xac\x24\x4d\x8d\xdd\x14\xb7\x3a\x5e\xef\x8d\x18\xb9\xf1\xe2\xe8\x35\x61\xe8\xfb\xc4\x64\x81\xe0\x13\x93\xf5\x17\x35\x0b\x8f\x35\xd9\x04\x8c\x26\x7d\x4d\x4d\xdf\x8a\x3f\xdc\x36\x01\x3e\x08\x3e\x21\x2f\x20\xf8\x18\x97\xfd\x1a\x8c\xaa\x03\xf5\x35\x7b\x9b\x81\x07\xd6\xe2\xd5\x3d\xfc\x9a\xc9\x2d\x90\x15\xd9\xc7\xd4\x8c\xaf\xb5\xf3\xbc\x19\xf2\x6e\x79\xa7\xce\x68\x21\x16\x3b\x79\x33\x10\x48\x91\xc8\x40\x40\x5e\xa5\x7e\x98\x5d\x80\x5c\x7e\x3d\xca\xe9\xe2\xa4\xea\x47\x18\xa0\xbb\x2f\x1b\xef\xb9\x1b\xd0\xa9\x9a\x5b\xf1\x55\x76\xaa\xe6\x56\x12\x69\xf4\x9f\x85\x72\xe9\xd6\xec\xf2\xdc\x0d\xe9\x14\xca\xdd\x3d\xf9\xd2\x68\xc1\x78\xc9\x28\xc8\xc6\xb3\x67\x63\xc3\xad\x47\xd5\x5c\xaa\xbc\x76\xaa\xe6\x56\xae\xe4\x77\xaa\xe6\xee\xaf\x6c\xce\x62\x93\x2d\x10\x82\x92\x5d\xe1\xfe\xdb\x04\xb0\x5b\x27\x37\xb5\x4a\x4f\x68\xfd\xb3\x7f\x17\xa9\xdc\x2d\x9a\x4b\xf2\xa6\x4e\xd1\xdc\xbd\x23\x0c\x63\x76\x57\x04\xbd\x4e\xa9\xdc\x84\x79\xba\x53\x2a\xb7\x72\x4b\xb0\x53\x2a\x37\x77\xd7\x8e\x08\x42\x60\x7e\xb7\x52\xee\x74\x5e\xb8\x6f\x89\x39\xee\x54\xca\xad\xdc\xf1\xed\x87\x37\x3f\xf1\xc9\xf5\x83\xd0\x57\xac\x7d\xfd\x20\x1b\xfd\x74\x81\x64\x79\xf5\xfa\x50\x3f\x2c\xdb\xc7\xd5\xd8\x7e\x50\x90\x8f\xa4\x41\xfd\xb0\x84\x7f\xab\x6c\x1a\xd2\x01\x77\xa6\x3a\x05\x71\xeb\x2c\x3e\x17\x9e\x6d\xc0\x1a\x32\xbd\x86\xe9\xbb\xdb\xd8\x63\x50\x19\xdc\x04\xac\xc5\x7d\xae\x8e\xc7\xf2\x30\x83\x53\x3b\xa3\x5b\x11\x77\x10\xb5\xd1\x0f\x12\xc4\x4f\x9f\x11\x1b\xb0\xc4\xf5\x43\x3b\x38\x7e\xe3\x7e\x10\x6e\xb6\x04\x94\xd1\x66\xdc\x42\xec\x54\xc7\xcd\x55\xbc\x40\x6a\x98\xf1\xec\xd0\x0c\xe7\x05\x92\xc6\x64\x9b\xe8\xc9\x37\x5d\xf4\x04\xca\x3d\x4e\x3c\x9d\x76\x6b\x50\x77\x5f\x84\x81\x5f\x71\xfa\x5d\xc4\x96\x19\xf2\x72\x16\xdd\x73\xe2\x69\xe0\x02\x09\x09\x49\xfb\xe1\xc5\x4f\xa7\xd4\x9d\x12\xd3\x20\x23\xd0\x14\xb7\xb1\xb2\x13\xfe\xd5\x0f\x33\x02\x1d\xac\x13\x99\x81\x4b\x18\xfd\x30\xd5\xc1\xa0\x9f\x11\x80\x61\xe4\xc1\x2d\x68\x0f\x0c\x62\xc2\xcf\x06\xca\xad\x8d\x19\x0d\xc9\xbe\x27\x97\x8b\x21\xd3\x33\x32\x25\x2e\x8d\x0d\x86\x81\xcf\xf8\x88\x85\x7a\x2e\x26\x9e\xad\x46\xb7\xc6\x94\x11\x31\xd3\xa9\x97\xbb\x5f\x40\x15\x72\xb5\x92\x0d\xa3\x1f\xa6\x6a\x15\xf5\x29\xcc\x8f\x7d\xbf\x1f\x93\xd0\xc7\xc9\x4a\xb9\x49\x32\x45\xd2\xb0\x43\xb8\x43\xa6\x64\x6d\x8e\x47\x4a\xd6\x29\x0e\x68\xa1\x6f\x76\xab\x85\xfe\x60\x38\x73\xb5\x76\xb7\x68\xc5\xa4\x58\x1f\x01\xc7\xd3\xb3\xb6\x9c\x08\x93\x8d\x1c\xf2\xdd\x31\x62\x74\xa6\x62\x52\xa1\x4a\xeb\xcd\xc2\x4b\x90\xb8\x30\x5e\xb8\xdd\x38\x81\x9b\xe7\x28\x58\xb8\xa0\xb2\x12\x4e\x8b\x26\xa8\xa6\x83\x31\x3e\x6c\x4d\x74\xab\x0a\xe7\xa9\x82\xb7\x17\x49\x24\x46\x8d\xe4\xce\x9c\x0a\xd0\x4e\xd7\xf0\xe6\xee\x99\x3c\x33\xa2\x1d\xdd\x92\x3a\x61\x8a\x2e\x64\x1a\x9a\x6e\x06\x65\x71\xa6\x30\xb0\xa8\x9e\x58\xe1\xfd\x94\x26\xad\x25\x78\x6c\xb6\xef\xa4\xbc\x7e\x98\xc4\xb5\x44\x2b\xee\xce\x0c\x9f\xd9\x43\x77\xea\x54\xb0\x14\x8d\xbd\xbc\xda\xa4\xd0\x97\xe7\x35\x5e\xb8\xcc\x2c\x7b\xe0\xf2\xca\x74\x3f\xa9\xa0\x93\x05\xd0\x15\x00\xa2\x5f\x7d\xc5\x41\xa7\xb8\x89\xca\x5d\xf9\x4e\x05\xde\x3a\xc5\xc4\x3b\x78\x08\x5d\xdd\xe2\x2b\xdb\x79\xbb\x46\x9f\xb5\x77\x78\x18\x49\x36\x74\xb8\xa4\x3b\x86\x60\x3c\x0c\x21\xdd\xf5\xdd\x81\x26\x8e\xa7\xac\xe0\x33\x69\x1c\x3c\x8e\x8f\x8c\x9b\x06\xd8\x41\xa6\x27\xf3\x09\x18\xd0\x20\x9c\x04\x2c\x3b\x0c\x21\x9d\x49\x3d\x20\x86\x64\x47\x79\x62\xf8\xf7\x00\x27\xad\xcd\xe4\xee\xf1\x50\x36\x18\xf4\xf4\xe2\xa7\x14\xdb\x5e\x47\x60\x1a\x18\x48\x02\xbb\xdf\x38\x1c\xf4\xaa\xd5\x3f\x68\xea\xcb\xc5\x4d\x49\x24\x5e\xea\x80\x9f\x52\x82\xc4\xcf\x4c\x0e\x2d\x5e\xd4\xf6\xe0\x25\x94\xdb\xad\x72\x80\x44\x08\x36\xa6\xa7\x9e\xcc\xf7\xce\x15\xb1\x4e\x1d\xde\x2a\xfc\x28\xbd\x5b\x65\xf3\x49\x0f\x00\x8e\xc9\x4e\xe5\xdd\x81\x54\xd2\x29\xbc\x5b\x3c\x27\xe9\x50\x88\x8a\x21\x9c\xc8\xf0\x2b\xc1\xcf\x57\x3a\xbc\x89\x73\xeb\x29\x61\x29\x70\x0c\x45\x09\x80\x93\x2c\xc0\xcf\x95\xe9\x9e\x52\x0c\xce\x32\x92\x48\x51\xfd\x0c\x35\xd7\xa9\x13\xf2\x9d\x8a\xcf\xca\x4a\xcd\x17\x77\xa6\x3a\xc8\x0b\x25\x60\x56\x19\xb7\x15\x14\xc2\x92\xbc\x28\x3d\x3d\xe5\x80\x08\xeb\xa0\x18\xde\x04\x73\x12\xd1\x5b\x13\x02\x91\x22\x60\xab\xfb\x83\x2e\xb3\x68\x0e\x7b\x00\x75\x52\x61\x08\x37\xc0\x1a\xbe\xcd\xe6\x64\xfd\x9b\xec\x7e\x32\x2a\xab\x39\x46\x44\x65\xb9\x05\x05\x61\x9e\x83\x18\x95\x7a\x9b\x40\x8c\x12\x34\xd5\x5f\x18\x70\xb0\x0e\x72\x3f\xcc\xe9\xdf\x91\xf2\x5c\x46\x81\x8d\x82\xaa\x96\xf0\x1d\x04\xd1\xf5\xa4\xf4\x30\x99\x61\x75\x52\xfe\x3d\x26\x65\x0b\x6d\xa3\x1c\x38\x0a\xf7\xd6\xe9\x6e\x20\x4a\x64\xe1\x5c\x63\x82\xcc\x43\x49\xc2\xc9\xe2\xa6\xf0\x04\x24\xf3\xba\x4f\x7b\x95\x1a\xf9\x3d\x89\x5d\xa0\x4c\xd4\xe4\xad\x54\x12\xee\x94\xe1\x2d\xfd\xdb\xda\x1a\x3d\x61\x5c\x20\x90\xba\xa7\xa6\xf7\xda\xed\x50\x80\x58\xf4\x6c\x8a\x40\x22\xf6\x3a\x85\x78\xcb\x70\xc8\x2e\x83\x60\x4d\x3d\xc8\x1f\xf3\x22\x48\x7d\x2e\x7f\x20\x4d\x6a\xf2\xef\x1c\xcc\x6c\x47\x9c\xbf\xc5\xfa\xba\x68\xef\xee\x73\x9f\x74\x39\x8d\xee\x34\xd8\x18\x84\x03\xe9\x06\x75\x77\x2b\xa5\x74\x7a\xf2\x9a\x69\x13\x2b\xb0\x27\x50\xdf\xbd\x53\x83\xb7\xce\xe5\xdf\x9d\x91\x8d\x29\x73\x93\x7c\x66\x5b\x26\x33\x0a\x9b\x83\x68\xa0\x1b\xa3\x08\xff\x11\x27\xc3\xae\xa4\x0f\x9e\xea\xc1\x64\x93\xcf\x46\x3c\x7a\x78\xb9\x8c\x1a\x74\x00\x7b\x00\xa6\xb9\x4e\x49\xdd\xba\x10\x67\x93\xc9\x04\x51\xf0\x7a\x32\xa9\xbb\x32\x87\x75\x74\x95\xea\x29\x9d\x5b\x0f\xb8\xa2\xa5\x73\xd7\xe1\xdf\x2b\xcf\xfe\xbd\xf3\xcc\x64\xf5\xdd\x77\xd1\x6b\x11\x12\x2c\x71\x41\xbb\xa7\x16\x4b\x4f\xcb\x69\xf8\xf7\x80\x3e\x00\x59\xb1\x3a\xbb\x55\xa2\x82\xdb\x52\x61\x77\x7f\x46\xfb\x8f\xc9\x19\x69\x1f\x7e\x0d\xa1\xf3\x81\xc3\xc1\xe9\x53\xf8\x32\x9a\x5f\x6d\x12\xa4\xc6\x94\x3e\xea\x58\x6e\x3e\x01\x62\x0b\xee\x4e\x8d\xdd\xba\x24\x92\x06\x88\x75\x01\x82\x9f\x9f\xf2\xab\x3d\xe1\xda\x8f\xa3\x64\xcc\x38\x62\x75\xd4\xcf\x2d\x1e\xdd\x53\x6b\xb8\xfb\x87\x9b\x7f\x09\xce\xd3\x04\x58\x22\x2a\xec\x1c\x83\x4c\xa7\x64\x6e\xaa\x71\x9a\x88\x07\xa7\x20\x40\xa7\x32\x6e\xe5\x4a\x74\x4f\x24\x9f\x38\x1c\x1b\x77\x07\xb5\x50\xba\x45\x72\x03\x0f\x2e\x47\x63\x64\xae\x2f\xe1\x5a\xee\xd4\xc8\xad\x0b\x85\x8a\x1a\xb9\x75\x79\x2a\xa2\xfc\x1d\xfd\xdc\x01\x4b\x06\xbe\x35\x76\x48\xfb\xee\x00\x87\x2f\x0a\x73\x9e\xcf\x3b\x76\x89\xe5\x99\x0b\xa2\x79\xa4\x1f\xdd\xaf\xd2\x48\xbc\x14\x0b\x71\x2e\xe9\xb4\x2f\x52\x1a\xa2\xb7\x97\x3b\x63\xe9\x96\x26\x19\x79\x02\xa0\x40\xdd\xf4\x4a\xcd\x23\x64\x6c\x76\x17\xa5\xc9\xfb\x70\xb8\xe5\xf0\xe4\x25\x40\x83\x27\x3b\xaf\xd7\x41\xfc\x88\xf3\x10\x0d\xa8\x57\xea\x9e\xc1\x9e\x97\xf4\xe4\x05\x58\x28\x55\x54\xa3\xad\x4b\xb2\x81\x9b\x82\x5c\xb8\x3d\xa1\xc3\x2f\x64\x3e\x2a\xd3\xd6\x95\xbf\x55\x6b\xb3\x17\xa9\xf0\x6b\x75\x6b\xd8\x26\xdc\x57\x9d\x22\xb6\x7b\xb9\x8b\x17\x75\x1d\x48\x52\xd6\xeb\x50\x6d\xc2\xc4\x8a\x2d\x98\x58\xf1\xef\x84\x54\x00\xd1\x9c\xc8\x90\xe1\xf7\x14\x62\x21\x7d\x41\xb7\x72\x2d\x17\x55\x3b\x85\x6b\x27\xc1\x8c\xdd\xba\xb5\xab\xf8\xf7\xe6\x6e\xda\x11\x37\x71\x9b\x1f\x7d\x10\xd9\xec\x08\xb4\x2a\xfe\xfd\x72\x0d\xb6\xbe\x7f\x7c\xf5\x01\xc8\x73\x02\x54\xc5\x67\x32\x1d\x22\x71\x64\xfd\xfe\xdc\xae\xea\x19\x16\xbe\x8a\x3f\xe8\xb4\x81\xb2\xe5\xac\x11\x06\xa1\x92\x4a\xb7\x59\x85\x8d\x42\xb7\xbb\x39\xfd\x66\xed\x41\xf1\x15\xfb\x57\x7c\x3e\xfd\xca\x26\xce\x04\xc0\xa2\xcf\x77\xb0\x8d\x4a\xb7\x95\x30\xde\x9e\x2d\xe1\x42\xf0\x62\xcf\x64\x6f\x8a\x89\xc0\xdb\xcb\x10\x20\x5e\x06\xcb\xfe\xa0\x12\x2e\x68\xa9\xe1\x32\xe3\x07\x69\x18\xec\x39\x13\x44\x50\x70\x38\xf6\x4c\xd0\x75\xf7\x19\xd3\x40\x75\x22\x9b\xb9\x0f\x8a\x84\xf6\x6c\x9a\x42\xae\x8c\xf5\x6c\x5c\x9c\x0a\x51\xd6\xa3\x80\xeb\xa6\x67\x83\xe4\x54\x82\xac\x89\x3b\xa2\xc9\xfc\xf1\xd5\x03\x0a\xa4\x9f\x20\xc5\x46\xcf\x30\x74\x22\xd2\x7b\x36\xcd\xa1\x1a\x8a\xb5\x72\x53\xf4\x0a\xa4\x10\x32\xb2\x17\x6f\xf1\x53\xf4\xdc\xd4\xdc\x91\x6a\xb2\xd7\xd2\xba\xb3\xb2\xac\x9c\x38\xd2\x9c\x21\x74\x88\xfa\xba\x45\xc9\x89\xf2\xba\xbb\x39\x20\xf1\x62\x1a\x67\xdc\x8a\xba\x7d\x8a\x56\x0d\xb4\x12\x4b\x8c\x4c\xc0\x4c\xdf\xad\xa2\x8b\x51\xba\x53\x38\xb7\xe2\x89\xe9\xd6\xcd\x1d\x5d\x20\x60\x42\x58\x2e\xd6\x24\xf6\xdd\x05\x76\x08\x25\xfa\x42\x56\xf5\xef\x4e\x24\x52\x47\xd8\xad\x51\xca\x90\x56\xea\xe0\xa6\xe4\x44\xac\xab\x4f\x60\x73\xcf\x43\x6b\x19\x63\x0c\x81\xeb\x47\x0a\x96\xd3\x8f\x34\xa2\x0a\x2b\x12\xe5\x2f\xb8\x61\x36\x28\x1b\xb7\x40\xcf\x24\xca\x5f\xcd\x67\xa2\x02\x9c\x2d\x2e\x82\x2e\x26\x61\xf9\xc7\x30\xdf\x29\x90\x5b\x97\x98\x6e\x0c\x82\x03\x90\x50\xd8\x7b\x41\x9d\x3a\xb8\x95\x5c\x9d\x9d\x3a\xb8\x45\xcd\x23\x2f\x23\x1b\x5c\xea\xe6\xe2\x45\xfa\x67\x11\x5b\xed\x2b\xd9\x8b\x61\x6e\x85\x1c\xdd\x83\x6c\x0e\x89\xe9\x37\x5c\x5f\x11\x83\x97\x52\x7d\x6f\xdf\x12\x3d\xac\x02\x4b\xd8\x12\xb8\xa0\xd5\x2d\x63\x14\x50\x2c\x8a\x92\xb6\x88\xe6\xf9\x23\xe5\x9f\xbe\x70\x87\xd9\x0d\xdf\x0c\xba\x1d\x52\xb6\xd3\xdc\x6b\xfc\xfd\x94\x90\xc2\xe8\x28\x57\x5b\x0e\xd7\x6a\x7a\x08\x37\xc9\xfb\x5a\x71\xf6\x89\xc1\x5e\x82\xf0\xd4\x70\xcd\xf4\x48\x87\xb8\xdc\x48\x2e\x16\x2f\xc9\x40\x58\xd6\x45\x03\xf4\xeb\x85\xda\x92\x65\xcf\x82\x9f\x40\xed\x25\x04\x65\xcf\xa8\x04\x59\xf6\x3c\x6c\x0b\x95\x1a\xb6\x05\x39\x90\x05\x28\x4f\x6b\x7d\xc0\x9e\x8d\x45\xe0\xea\x61\xa7\x56\x6d\x5d\x62\xec\xcf\x52\xb5\x3c\x43\x3a\x45\x1a\x13\x46\x79\xd6\x6e\xeb\x3c\xd2\xe9\xed\xf6\x32\x89\xe0\xed\x42\xd8\xa2\xb5\x32\x3e\x8b\xd6\x2e\x4f\x91\x15\xef\xdd\x60\x62\xf9\x08\x86\xea\xf9\x0e\x0c\xf7\xe5\x04\xff\x9c\x92\x6b\x60\x1b\x6e\xd6\xe0\xf1\x30\x45\xd4\xf0\xd9\xeb\xb1\x3e\xc7\x2e\x30\x32\x89\x23\xaa\x5c\xeb\xe1\xa6\x8a\x4c\x85\x0c\xc0\x2b\x1a\xb3\x7e\x09\x33\x7a\xf9\xf2\x7b\x6d\xf6\x5d\xfe\x8b\xcd\x5e\x2d\x8f\xd2\xb2\x7b\xaa\x4c\x89\xd0\xbc\x25\x91\xd6\x7e\xef\x3a\xa3\xc2\x1a\x4b\x08\x2b\xbd\xb0\x8f\xa8\x04\x17\xc4\x45\xac\xe2\x79\x92\xdd\x83\x00\x54\x93\xcd\xe4\xe3\xef\x54\x93\xad\x44\x20\x76\xab\xc9\x0e\xc2\xf9\x7b\x39\xa4\x86\x90\x5c\x4b\xc8\xe2\xc0\xef\x56\x90\x25\x36\xb1\x17\x6f\x62\x75\x9f\xb5\xac\x77\x1b\xc8\xc1\x10\x41\x8a\x5c\x9f\xe5\x51\x66\x36\x99\x8e\xa4\x97\x50\xcc\x41\x27\x8a\xcb\x16\xea\x37\xf7\xa8\x2d\xcb\xb5\xc0\x5e\x42\x33\xe7\x08\x97\x88\xe0\xeb\xfe\x82\x9c\x3a\xec\x0b\x0b\x4d\x62\x07\x2c\x09\x2b\x4b\x29\x59\xb4\xf6\x79\xa2\xb1\xb3\xf2\xbc\x1c\x83\x6e\x43\xb7\x06\x73\x0a\xec\xf7\x58\xfe\x20\xd5\x2b\xfe\xf0\xa2\x32\xb2\xc2\x22\x1b\x81\x2c\x44\x11\x57\x82\x34\x7b\x09\x7d\x1a\x86\x58\xcc\xe8\xa4\x75\x84\x32\xae\xf9\x20\x14\xa5\x53\xae\x75\x0c\xe7\x85\xde\xec\xb9\xa5\x58\x6b\x1e\x3e\x87\xde\xec\x0a\xab\x6c\xc1\x16\x35\x06\xc9\xbc\x2c\xcc\xc0\x74\x6b\x21\x79\x4d\x87\xd6\x5c\x5d\x64\xae\xe9\xc5\xc4\x14\xdf\x3b\x2f\xac\xc7\x4a\x54\x53\x2f\x55\x53\x86\x08\x52\x45\x66\x66\xc3\xf5\x27\x7c\x61\xdd\x42\xad\x89\x3b\x8c\x9d\x4a\xad\x7b\x4c\x16\x10\x3c\xb5\xf8\x19\x9a\x75\x3c\x8f\xbd\xfa\xea\xf3\xf4\x23\x5b\x48\x97\x39\x31\x51\xac\x55\x33\x1f\xc5\x5a\x33\x1e\xff\x6e\xe9\xd5\xaa\xad\x87\xd2\xab\xd9\x02\x20\x9d\xda\xab\x45\xee\x5e\x30\xb3\x93\x3a\xb1\x5b\x86\x75\xb9\xa9\xa8\xcf\x2b\xfe\xae\xa3\x41\x78\xf7\xd8\x6d\x56\xc8\x85\x6f\xee\x59\x77\x4b\xaf\x2e\xb2\xf6\x74\x6a\xaf\x0e\x89\x83\xf5\x56\xcd\x54\xd2\x29\xb8\xba\xbf\xf2\x17\x48\xab\x1b\x34\xa8\x09\xd1\x6d\x1d\xab\x65\x74\xb2\xee\x67\x8f\xe5\xe6\xbc\x85\x3c\x67\xbd\x44\xa6\x61\xcf\xcc\xf0\xcc\x88\x5d\xa1\x28\x23\x80\x14\xae\x82\x4b\xef\xa8\xbe\xba\x7f\xa0\xdf\xa9\xa9\x8f\xbe\x66\x4c\x91\xbe\x4c\xd4\xaf\xe5\xa7\x78\xcb\xbb\xda\x5c\xf8\xf8\x51\x9c\x06\x80\x45\x72\x27\xb5\x60\xea\xb5\x56\x99\x69\x21\x67\xff\x72\x9b\x97\xa6\x68\xf1\xd4\xac\x1f\xc2\xd0\x44\x8f\x52\xe1\x62\x94\xbc\x76\x38\x8b\xba\x6a\x96\x29\x16\xa0\x77\xb6\xc1\x97\xc5\x3e\x8b\xd1\x6b\x7a\x2b\xdc\xd8\xae\x52\x0e\x33\x80\x68\x2b\xa2\xc2\x6b\x5d\x42\x1d\x83\xfc\x42\xa0\x8b\x0a\xaf\x88\x80\x05\xe3\xfc\xf2\x54\x90\x18\x6a\x79\x28\x0c\x32\xd4\x54\x47\xe1\xd7\xdc\x9d\x93\x19\x22\xd5\x43\x8a\xc5\xd6\x3c\xd1\x5c\xdc\x52\x05\xa2\x0a\xac\xd5\x5b\x7a\xb1\x5c\x4d\x73\x34\x11\xcc\xef\xd9\xca\x18\x59\xfc\x12\xed\x55\xc5\x91\x95\x8a\xce\x75\x49\x32\x96\xf9\xe5\x06\x93\x67\x64\x08\x8c\x53\xda\xee\x68\x5b\xf9\x6e\x44\x56\x76\x0a\xb3\xb6\xc3\x19\x79\x49\x5b\x4b\x1b\xb5\x58\x47\x10\xde\x2d\x02\xb4\x43\x92\x78\xb9\x11\xd5\x1f\x3a\x3f\x30\x25\x7d\xeb\x5a\xab\xa8\xd8\xda\x08\x9c\xee\x25\x78\x3a\xa2\x08\x15\x58\x0b\xe1\x7e\xbd\x6c\x9e\x5e\x0e\xf7\xf7\x56\xcc\x96\x56\x6c\xa6\xde\x08\x58\xee\xe5\x96\x9c\x23\x05\x51\x99\xb5\xe8\x99\xa5\x02\x6b\xd1\x8e\x55\xbc\x74\x0d\x43\x2c\xb7\x3c\x4d\x26\xf3\xc8\x25\x84\x26\xcc\x38\x79\x78\xb6\x52\xde\xb8\xa5\xdc\xad\xa7\xda\xb5\x9a\x52\x2a\xb5\x1d\x87\x0d\xc0\xe5\x7a\x7c\x17\x8d\xdc\x29\x98\x9a\x4a\x1c\x87\xc7\x28\x5b\xc6\xb1\x0a\x7c\x17\xd5\xdf\x58\x0b\x8b\x7c\xbd\x8d\xef\x33\x3e\x05\xd1\xf3\x15\xa6\x3e\x0f\x74\x58\x09\xc1\xeb\x82\xf7\xcc\xea\xc1\x47\xc9\x67\xd9\xc4\xf4\x45\xac\x07\x95\xa8\x5d\x9a\xf5\x49\x51\xaf\xb4\x1d\x18\xdf\xa8\x57\xba\x5b\x64\x5e\xb2\x8b\x6c\xbc\x00\x96\xe4\x0f\x95\x8a\x28\x95\x67\x27\xb5\x78\x1e\x7c\xd3\x79\xb6\x78\xf7\xe1\x0b\xbc\x7a\xfa\x2c\xed\x87\x26\x50\xaf\x74\x7f\x35\x78\xd1\xdc\xc3\x89\xb5\x60\xe9\x22\xf3\x52\xaf\x59\x4e\xc8\x61\xa4\x7a\x69\x93\xa5\x53\xb0\xb4\x1d\xc9\xe6\x9e\xf1\xe5\x4b\x6c\x10\xf3\x22\xf3\x09\x57\x28\x7a\xdd\xac\xb7\x90\x3c\xac\x57\x1d\xd9\x5c\x1b\xea\xd5\xb8\x3a\x6d\x66\xb5\x80\xd7\x1c\xf2\x6a\x60\x7c\x8d\x17\x07\xa7\x2b\x8c\xd7\xba\x7a\xab\x0a\x6e\x15\xee\x25\x6e\x34\xf3\xac\x5f\x4f\xc0\xa1\xc8\x72\xf1\xac\x57\x83\xde\x35\xa6\x51\x0c\xb4\x1d\x76\x65\x31\x50\xee\xfa\x76\x8a\x81\x0e\x85\xf5\xaa\x2f\xba\xba\xf2\x26\xc6\x60\x96\xaa\x4d\x62\x3c\x7d\x21\xdf\xf0\xe1\xb3\xf6\x75\x68\x6e\xb5\xe2\x8c\xca\x5d\x0d\x65\xb2\xf9\x72\xeb\x7f\x60\x89\x2d\x66\x4c\x07\x5d\xc3\x3f\x10\xea\x52\x01\x24\x95\xda\x63\x7c\x66\xd6\xdd\x78\x46\xe9\xa8\x17\xd9\x8f\xe4\x31\x6e\xbc\x97\xb7\x64\x4b\x55\x15\x92\x9b\x55\xdd\x42\xa1\x8b\x4c\x55\x9d\xe2\xa0\xed\xc8\xfe\x40\xf4\x33\x34\xa8\x8e\x30\x1f\x32\xe0\xa0\x90\x88\x90\x18\xb1\x2c\x7f\x88\x95\xd0\x84\x18\x75\x5d\xc0\x51\xf8\x53\xdd\xa8\xc2\xaf\x2c\x8d\xd8\xa9\xfc\xd9\x8e\xec\x0f\x01\x7b\x56\xa2\x86\x58\xc5\x67\x4b\xa1\x0d\xc1\xea\x2d\xdf\xe1\x57\x1c\x0c\x28\x0c\xc5\x3b\xdb\xe1\xc1\x20\x2d\x48\x89\xef\xdd\x6b\x44\xda\xba\x88\x0a\xe8\x36\x36\x6f\x00\xf3\x30\xcd\xa0\x71\x15\x55\x2e\xa3\xb6\x5e\xad\x78\xa6\xf6\x4c\x1d\xcf\x92\x84\xd5\xc7\xf1\x98\x60\xb0\x16\x34\x10\x4a\x77\xee\x17\x46\xff\x40\xb8\x90\x9a\x29\xd7\x59\x34\x1f\x57\x23\xb7\xaa\xdb\x46\xc8\x3a\xc9\x26\x3a\xd5\x3a\xb7\xea\xb8\x9f\xa9\x6a\x36\x84\x01\x1e\xe0\xe1\x41\x30\x92\xbd\xe6\x6f\xbd\xb8\x51\xa4\x53\x14\xde\x9c\xa7\x1d\xc8\x64\x54\xe5\x6c\x07\x92\x72\x35\xe3\x3e\xb9\x17\xbb\x15\x37\x25\x6d\x54\xdc\x6c\x07\x42\x58\x8d\x44\x56\xb0\xe7\x7a\xb1\xf4\xe2\x47\xa0\x1f\x22\x60\x14\xd6\x54\xa5\xab\xe6\x1f\xe6\xb2\x4b\xa7\xb2\x66\x1e\xe2\xe2\x85\x4f\x15\x15\xa1\xc6\x3d\x60\x77\xf3\x0e\xb8\x33\x5b\xb9\x0d\x4c\xb6\xaa\x36\xda\xad\x6a\xa3\x9a\x40\xbd\x03\x97\x6c\x0e\x2e\x21\x59\xd6\xcd\x86\xda\x81\x8c\x4f\x59\xce\x41\x3c\x7a\xaf\x32\x18\x69\xaf\xf7\xb6\x86\x64\xe3\x51\xfc\x5c\xb6\x70\x3b\x59\xdf\xe3\xfa\x18\x0e\xf5\x50\xf9\xb1\x5a\x21\xa6\x7a\x56\x1e\xc8\x38\x2c\xba\xbe\x62\xae\x5f\x6d\x05\xb1\x1d\x48\x4e\x54\xe4\x6c\x87\x27\xe2\x85\xc6\xb9\x2f\xaf\xa7\x43\x80\xc8\x67\x60\xd7\xf5\x55\xb2\x93\xb7\xbc\xac\xc8\x55\xbc\x9e\x3a\x77\x69\x2b\x88\x4d\x41\xc3\x4a\x9d\xc6\x28\x50\xa8\x73\x2f\x6f\x7f\xd4\x0e\x04\x0a\xf8\x4f\x0b\x93\x2f\x76\x04\x4b\x78\x9a\x14\xac\x53\xc3\xb3\x1d\x90\x35\x6a\x70\xee\xe6\xbc\x84\xf6\x86\xdc\xd1\x52\xc0\xcd\x17\x2d\x69\xcb\xcf\xd8\x01\xa8\x6a\x33\x95\x96\x36\xf9\x66\x2a\x2d\xf2\x99\xf5\x96\xc0\xbd\xe6\x33\x93\x8f\xae\x1e\xfb\x1d\xbc\x48\x08\x39\xce\x2d\x53\xf7\x0c\x5c\x68\x99\x1d\x84\x0e\xb6\x0c\x14\x21\xa3\xcd\x14\x19\xca\xf0\x2d\x4b\xaf\x90\x36\xa8\x01\xda\x0e\xc7\xce\x9c\x01\x08\x67\xcb\x1a\x6f\x6c\x6d\x3d\xeb\xec\x0b\x81\xf1\x4e\xaa\x04\xb0\x68\xa1\x86\xc8\xe5\xbb\xde\xe4\x46\x1c\xd4\x56\x40\x12\x48\x0c\x15\x40\x1b\x05\x4e\x7a\x53\x57\x84\x0f\x37\xb3\xeb\xab\xec\x51\x0e\x34\xa9\x4a\x50\xf3\xb3\xf4\x68\xfc\x62\x2a\x67\xae\xa6\xfa\x55\x6f\x6a\x35\x80\xbe\x78\xb1\x38\x05\xad\x6b\x20\x09\x63\x54\xc7\x06\x68\x3f\xab\x62\xfb\x03\x70\xe6\x64\xb5\xea\xf9\xb3\x5b\x04\x3f\xa1\x1c\x06\x56\xe4\x0f\xcb\x7c\xca\x61\x5a\x28\x83\xc8\x06\xad\x39\x11\xac\x56\xad\x81\x30\x1c\xcc\xd6\x84\x07\x50\x23\xf5\x2f\xd7\x42\x3b\x75\x41\x1b\x15\x93\x7a\x53\x15\xe4\xb8\x52\x16\xb4\x91\x03\xbd\x53\x16\xb4\x51\x5e\xa6\xb7\x26\x1b\x80\x9f\x5a\x23\x74\x91\xa3\xac\x37\xc2\xba\x5b\xee\xdf\x51\xbd\x26\x7f\x74\xf7\x09\xec\x26\x05\x59\x6f\x3d\x60\x65\x6f\xa7\x0b\x01\x0e\xe8\x8c\xc6\xc2\x35\x22\xb5\xbb\x9b\x3c\x38\xb3\xc2\x6a\x73\xca\xac\x1c\xde\x06\xb6\x49\x37\x76\x70\xe7\x81\x33\xde\x06\x8b\x45\x89\x6d\x66\x61\x1c\x6e\x53\xd8\x5a\xe1\xff\xd6\x1b\xad\x3a\x8f\xda\x0c\x80\x32\xf6\x0c\x32\x04\x24\xb8\xce\xe5\x29\xa7\xb0\x68\xd5\x56\x48\x5d\xd1\x2c\x95\x6d\x33\x06\x61\x56\xd3\x40\x74\xbb\xb5\xf6\x23\x0d\x36\x33\x2d\xdc\xa5\xe8\x94\x15\x2d\xb2\xfb\xa8\x2a\x4a\xba\xb5\xde\x96\xa2\x56\xf6\x2b\xee\x7c\x89\x87\x06\x57\x71\xc9\xbf\x53\x48\xb4\x68\xf1\x6a\x8b\xc3\xe4\x89\xc3\x6b\x4a\x59\x81\xde\x22\xd0\x4a\xc4\x5d\x90\x46\x1b\x7c\x02\xc3\x7c\xd1\xa8\x4d\xeb\x60\xb2\x08\xe7\x96\x15\x1d\x08\xed\x4d\xfd\x0d\x89\xb1\x05\x93\x45\x82\x6b\x5e\x12\xcb\xf1\xe2\x44\x6c\x8d\x6c\x25\xd0\x50\xce\xb4\xb4\xb7\xe0\xab\xcb\x6e\x3d\xe1\xcc\xe3\x34\x7d\xa9\xcf\x1e\x70\xc9\x40\x18\x71\x21\xbf\xed\x54\x4c\x82\xa3\x34\xb3\x6d\x28\x67\xb5\x93\xb3\x0f\x07\x6b\xf8\x5c\xc7\x10\x5d\xb1\xf5\x2a\x45\x34\x4d\xba\x87\xfd\x1a\x8b\xca\x6c\xcf\xa8\xa3\xef\x47\x92\x5c\xb7\xe3\x82\x73\x78\x18\xf5\xc5\x76\xa1\x7b\x41\x00\x45\x6e\x55\x40\x0f\x26\xe1\xd5\x1a\x6f\x9b\x1a\xa0\x1b\x70\xa9\x0c\x14\x7b\x5a\x0e\xe1\x57\xa8\xa2\x92\x94\x0b\x62\xe8\xa1\xbb\x62\x52\x76\x4b\x40\x22\x52\x43\xbb\x3d\x8d\xf1\xc2\xd1\x10\xa1\x6f\x71\x58\xe8\x98\xfb\xbf\xbb\x05\x70\x68\xd9\x6a\xbb\x45\x24\x79\xcd\x8d\x60\x24\x2a\xdc\xec\x9f\x08\x66\x46\x60\x62\xf9\xbb\x75\x4a\x65\x80\x94\x29\x4d\x45\xa9\xb5\x3d\x24\x22\x73\xba\x70\x6b\xdd\x8e\x8d\x6b\xd6\xb2\xd2\x46\x64\x55\x76\x79\xb8\x6b\x87\xa3\x11\x8e\x1d\x44\x19\x2e\x9e\xc4\x35\x18\xb7\x69\x21\x7b\x93\x71\x3b\xef\x37\xc0\xcf\x08\xaf\x10\x74\x38\xee\x95\x15\x79\xe4\xcb\x22\x64\x84\x58\x70\x07\xd7\x55\x7b\x3f\x10\xe3\xa1\x09\x9d\x8b\x60\x1a\x2a\xfa\xc1\x46\xc6\x73\x00\xb0\xf2\xc2\xbd\x71\x98\x2d\x05\x4e\x73\xed\xdf\xd2\x3c\x8b\x9f\x0e\x6e\xbc\x76\x8a\x9f\x4e\x12\x45\x74\x8a\x9f\xb6\x63\x39\xbc\x96\x9f\xc1\xb3\x14\x09\x52\xd3\xc9\xa1\xc5\x9d\x8e\xde\xb9\x17\x76\xd8\x98\xfb\x5f\x0a\xdb\x94\x47\xcd\x3d\xfe\x8e\x6a\xcc\xb9\xa4\x54\x6a\x36\x01\x4b\xef\x32\x77\x3b\x35\xe9\xbf\x92\x7e\x27\x7d\xf0\xa1\x4c\xde\x93\x6c\x8e\xb9\x66\x33\x60\x32\xa7\xac\xa0\x8f\xc8\xd9\xc3\xff\x0a\x76\x77\x53\x85\xa8\x02\xf4\xcc\x6d\xab\x61\x93\x46\x7a\x15\x06\xcc\x31\x13\xfb\x1d\x5c\x45\x66\x56\x91\x63\xd8\x6e\x97\x1f\xf9\x22\xf9\x2c\x76\x65\x04\xd6\x74\x8c\xcb\x4d\x77\xf4\x1b\xb8\x01\x9e\x2c\xfb\x74\x0c\xd6\x21\xcc\x8b\xa2\xec\xf4\x25\xfd\xf8\x9a\x06\x76\x51\xa9\x75\xff\xe0\x0b\x27\x16\xca\x4f\x41\xd6\x1c\x46\xed\x5e\x62\x5a\xcc\xa4\xe8\x86\xe4\xf4\x53\x91\x75\x90\xae\xa6\x5b\x90\x75\xc5\x18\x9b\xb2\x52\x28\xbf\x77\x03\xbb\xe5\xac\x54\x60\x6d\xc9\x99\xa3\xf5\x52\x9c\xb7\x77\xbc\xb7\xda\xf7\xfa\x96\x27\x5a\x02\xd7\x7b\x95\x9c\xc1\xae\xa3\x4a\xab\x8a\x46\xaf\x06\xdd\x73\x6e\xa8\xd2\xda\x92\xdb\xac\x4d\x5a\xd9\x99\x8a\xad\x59\xa7\x77\xaf\x01\x36\x07\x51\xa2\xab\xf6\xc5\x74\xa1\x61\xbd\xc5\x3e\x33\x5d\xc5\x0b\x71\xa9\x11\xac\x26\xbe\x69\x44\x56\x80\xed\x96\xac\x13\x08\x4d\xcd\xc2\xfd\x47\x8c\x48\x6e\x39\x62\x84\xda\x77\x6f\x0e\x47\x4f\x5e\x14\x53\x65\xed\x06\x7d\xeb\x8a\xef\x5b\xa4\x68\x1a\x14\xbb\xe9\xb5\xb4\x44\x51\xfb\xb5\xc9\xe0\xbb\x05\xef\x86\x7f\xef\xdc\x74\xb1\x01\x1e\x57\x0f\xb9\x29\x54\x86\x28\xdd\xb5\x6b\xba\xb1\x7a\x75\x5d\x2a\x5e\x5d\xa3\xc1\xfb\x16\x33\x5a\x12\x82\x83\xe8\x07\xb7\x3b\xc4\x0c\x46\xb6\xd0\xab\x42\x38\x85\x5e\xf3\xff\x4b\xd8\x99\x9c\x4d\xcf\xf2\x68\x34\x95\x3f\x84\x32\x93\x60\xf3\xe5\xe2\x31\xff\x10\xfa\xe2\x1c\xbd\xbd\x7d\x76\x76\x95\x99\x41\x13\x92\x6e\x75\xd7\x21\xbc\x9d\xaa\x21\x40\xaf\xc5\xfb\xb2\xe1\x65\x2f\xc1\xbe\x63\xc4\xed\x57\x0c\x35\x92\xaa\x5b\xe4\xf3\x1f\xba\xcb\x15\x6f\x6a\x48\xc3\xfc\xa3\x70\xb0\xb1\x75\xf8\x7e\xb8\x00\x93\x09\xb1\x41\x54\x78\xa2\x8e\x06\xd8\xb0\xfd\x70\x6a\x27\x3b\x24\x2b\x55\x08\x80\x76\x8f\xc9\xc2\x38\x8c\x65\x6b\x4e\x21\x7e\xdf\x2a\x51\x63\xc9\x7c\xbb\x2f\x10\xf5\xbf\xfd\x94\x07\xb7\xc1\xea\xcb\x63\xd9\x17\xfa\xbe\xdc\x30\xf4\x6b\xb1\x47\xe0\xb8\xc3\xdc\x2b\x8a\x7d\x00\xc8\xce\xe6\x81\x3f\xf5\xdb\xf1\x19\xad\x48\x5f\x03\x10\x64\x9b\x46\x86\x44\x86\x95\x66\xeb\x91\x45\xd0\xf3\x00\x25\xb6\x2a\xb8\x8b\x12\x6b\x32\xb7\x31\xc4\x0f\xf2\xc4\xa6\xde\xee\x5e\xc0\x40\xac\x74\x31\x2e\xd7\x19\x51\x71\x5c\x8c\xc2\xf6\x2e\x66\x14\x29\x6e\x5c\x92\x27\x29\x39\x0a\x3c\x41\xf9\x03\xf4\xd8\x7e\x64\xe1\x8f\xe6\x58\xa6\x5b\x76\xed\xf1\x43\x9e\x38\xe0\x86\x03\xb1\xe1\x70\x1b\x12\xb2\x5e\xbd\x7d\x18\x3a\x64\xdb\x71\xe4\x06\x93\xfa\x0e\x90\x64\xfb\xe1\xa4\x19\xa6\xae\x90\x34\x34\x23\x2b\x0a\x25\x46\x2c\x99\x9a\xc6\x78\x9a\xff\x50\xf1\x96\x09\xfa\xe1\x57\x5c\xe3\xaa\x1f\x03\xff\xda\x8f\xfc\x26\xc7\xc7\x98\x40\xd6\xfb\xf7\x8c\x79\x44\xc6\xf3\xe4\xf2\xb1\x96\x2f\x47\x28\x9f\x69\x01\x09\x44\x5c\xd7\xa1\x43\xe4\xc0\x74\xec\x0d\xe1\x30\x02\x5d\xf1\x67\x78\xd9\xab\x4b\xc7\x30\xf7\x97\x12\x0c\x20\xaf\xfd\x90\x75\x68\x2a\xce\xdf\x2b\xac\x8a\xf6\xbc\xd5\x45\xbd\x1d\x5b\x83\xef\x87\x84\x60\x2b\xed\xfd\x90\x91\x93\x5c\x53\xe5\x05\x1c\xd8\x92\x1c\xf6\x23\x54\x42\xaa\xba\xc5\x86\xa9\xa3\xe8\xc0\xcb\xab\x66\x3d\x58\x4c\x24\xdc\xa8\xf5\x79\x30\xc8\xbf\xa9\x83\x4a\x88\x2d\x00\xa1\x8f\x5f\x6e\xba\xc5\x4b\xfd\xef\x7f\x4d\x7f\xfd\x00\x4b\xa8\xe9\xe5\x11\xfa\x60\x93\x87\x63\x80\x1c\x7b\xe8\x2c\x1d\xfa\x60\x0f\x3f\xba\x10\x5c\x6d\xe2\x21\x0c\x71\xf2\x0c\xe7\x9b\x3e\x43\x5e\xe1\x7c\xc2\xc3\x46\x58\xd1\x61\x8a\x3a\xce\x51\x1c\x99\x71\x8a\x67\xdc\x20\xb2\x84\x8b\x35\x78\x0e\x42\xe0\x69\x59\xc7\xec\xb0\xe9\x83\x6e\x2c\x9f\xdd\x73\xd5\x17\x32\x3c\x1c\xd6\xc4\xde\xaf\xb6\x80\x5f\xb6\x05\xf4\xea\x52\x02\x4b\x98\x58\xa5\xab\x28\xea\x39\xcd\xcf\x30\x72\xda\xd9\x02\x9a\x84\xa3\x00\x25\x48\x2a\x0a\x18\x6c\xf5\x6c\xc6\xbf\xcb\x63\x9e\x69\x9a\xcd\x1e\x19\x0b\x4e\x37\x6a\xce\x00\xfd\xab\x80\xe3\x1c\x7e\x94\x2d\x53\x1a\xf3\xc1\x91\xcf\xec\x99\xf6\xa7\x90\x17\xd8\x16\x34\x6e\x47\x15\x88\x91\xf5\x36\x36\x9c\x8d\x19\x35\x77\xb2\x1f\xb1\x4c\x8e\x55\xb1\x00\xfd\x35\x9a\xc2\x34\x5b\x2a\x74\xd3\x56\xea\x8a\x66\xbf\x18\x49\x46\x7c\xb1\xc9\xa3\x25\x3d\xf0\x2b\x54\x50\xc8\x4f\x82\xd4\xea\xec\x92\x20\xb5\xba\xff\x00\x52\x5b\x97\x33\x04\xc0\xdf\xe1\xef\x5a\x1a\x38\xb7\x80\xd4\x96\x69\xaf\xc0\x6b\xf7\x76\x22\xd2\xce\x80\x08\x15\x3d\x67\xce\xaf\x86\xaa\x1f\x83\xea\x9c\x6e\x98\x49\x74\x11\x5e\xfc\x28\xfb\x41\xa7\x94\x0b\x5c\xcd\x6e\x80\x15\xbf\x0f\xce\x39\x7c\x0f\xe8\xdb\xa2\x53\x3f\xd0\xb7\xd5\xf8\xaa\x30\xb7\x66\xfe\x8e\x4f\x10\x4a\x01\x38\xb6\x1d\xd4\x9e\x11\x23\x77\xa7\x2f\x18\x06\xb1\xc7\x00\x63\x7b\x54\x4d\x38\xc0\xd8\x56\xf2\x2d\x8d\x90\xf9\x43\x68\x01\xb1\xad\x80\x82\x8c\xd0\xde\x00\x53\x88\x50\x3f\x60\x36\xc2\xd9\xf0\x44\x73\x29\xed\x05\x67\x98\x79\x5c\x6b\x05\x08\xb8\x95\xfc\xaf\x43\x98\x5b\xd3\x90\x0f\x60\x6e\x3b\x68\xca\x43\x94\x5b\xcd\xaf\x80\xdc\x56\x8d\xec\x31\x93\x5b\x50\x3a\x33\xb4\x39\x0a\x01\xe3\x95\x0f\x63\x42\xeb\x3c\xa1\xe6\x9b\xb1\x2a\x79\xbf\xc7\x78\x5e\x3c\xd3\xf4\xb4\x69\xcb\xe6\xd6\xf4\x8f\x64\x16\x34\x41\x00\xb7\xf6\xc5\x58\x06\x4e\xbb\x05\x53\x28\x40\x3a\x8c\xcc\x30\xbe\xfc\xc7\x54\x43\xd4\x65\x3c\xb7\x82\x26\x80\xb9\x55\xca\x1c\x2b\x39\x01\xcd\x0b\x4b\x11\x4e\x1c\x57\x04\x49\x1f\x56\x72\x1e\xeb\x42\x55\x77\xae\x08\xf4\x06\xb6\x7c\x08\xa3\xab\x91\x01\x18\xdd\xae\xd0\x01\x8a\x6e\xc9\x79\x3e\xb5\x12\xb8\xd3\x4e\x4e\x92\xf4\xe4\x74\x76\xe8\x93\x10\x43\x9e\x1d\x23\xbe\xb4\xeb\xc4\x95\x03\xa7\xaa\x4b\xa5\x13\x96\x0b\x5a\x6e\x3f\xdc\xcc\x17\xcc\xdb\x83\x74\x79\x2e\xdc\xfe\x99\x30\xdc\x8f\xa0\x28\xd2\x29\xe5\x89\x61\xad\xf4\xc3\x79\xbe\x80\xdb\x72\xaf\xa5\x1d\x42\x7a\x60\x8a\x70\x78\x6f\x70\xfb\x6c\xb8\x56\x18\xe0\x15\x1e\x30\xd1\x09\xc9\xfc\x30\xe2\x46\x96\xf9\x59\x5a\x6a\xe2\x3e\xc2\x10\x71\xe4\x47\x6a\xa8\xce\xe0\x9d\x6b\xf1\x37\xcd\xbb\xc9\xba\x10\xf6\x80\x83\x9c\xcf\x1c\x27\xe9\x03\x77\xd6\x1a\x16\x82\x3b\xeb\xee\x01\x7f\x72\xf7\x30\x76\xee\xac\x15\x79\x81\xfa\x2d\xba\x72\x8b\xe8\xdb\x92\x98\x3d\x93\x6b\x7b\x3f\x5a\xfe\xc1\x78\xbd\xd8\x1e\x3e\x2b\x64\xa3\x8d\x84\x49\x74\xbc\x26\x04\x04\xb8\xeb\xb3\x08\x06\x70\x4f\x26\xac\x1f\x7a\x32\x94\x17\xa5\xc3\x2d\xfd\xb2\x9a\x1e\xa1\x37\x77\x31\xbd\xe5\xde\xc1\xf8\x8e\x50\x84\x91\x09\xbf\x9c\x27\x87\xfd\xda\x02\x7d\xe2\x0a\xe2\xb0\x7f\x69\xc9\x90\x10\x7c\x40\x78\x20\x11\x86\x3e\x6a\xca\xde\x41\xf6\xb8\xa4\xbc\x9f\x49\xba\xfd\x3d\x53\x1f\xf2\x6c\x97\xdc\x17\x9f\xb7\x2d\x52\xb3\x2f\x27\x87\xa1\x6e\x81\x26\x34\x12\x01\x0a\x5c\x7e\x59\x15\x17\x26\x46\x62\x80\x03\x5c\xf3\xf4\x09\x03\xcc\xe1\x9d\x48\x2e\x4d\x2b\xb2\x30\xc0\x5e\x54\x00\x03\x5c\x0b\xb5\x8a\x02\x5c\xba\x05\x3a\x0a\xf1\x9e\xf0\xa9\xc3\x19\x99\x49\xc6\x3c\x5c\x61\x0a\x2b\x7a\x28\x40\x4d\x4c\x14\x7a\x2b\x4c\x01\x3f\x96\xbf\xbb\x25\x91\xce\xa7\x39\x6a\x94\xe7\xc1\xf7\xdd\x3d\x3f\x78\x61\x9e\xa7\xf5\x6a\xa4\x63\x3e\xa7\x40\x20\xd0\xa3\xe9\x0d\x3a\x94\x66\xea\x14\xae\x06\x30\xcd\x1f\xd7\xec\x49\x61\x29\xa7\xcf\xf8\xd7\x31\x53\x93\x8b\x89\x63\x5a\x5a\x86\x5a\x6c\x42\x46\xe6\x68\x8b\xd2\x2f\xdb\x13\x80\xdf\x7e\xd8\xf7\xea\x69\x44\x1a\x10\xec\x57\x99\x63\xd6\x4c\xf9\xc7\xf3\xc2\xb0\x43\xb5\xd5\x2d\x6c\xe3\x35\x53\x35\xf3\x8c\x84\x93\x85\xd5\xdf\x97\x2f\xd9\x36\xc5\x1b\xfc\x0b\xed\x0a\x14\xe0\xc3\x58\xc8\xd9\xf4\x80\xa1\x4f\x8d\xac\x2f\xe1\x33\x16\x9b\xe5\xb3\xe6\x06\x57\x40\x71\x63\x5a\x18\x5f\xbe\xe1\xef\x4a\x82\xcb\x16\xb4\x36\x40\xda\x12\x43\x98\x84\x1b\x03\x0c\xe1\x4e\x66\x99\x31\x9b\xab\x44\xff\x8c\x29\x87\xba\x4f\x8d\x0d\x7e\xdf\xd1\xc6\x6c\xba\x1b\xaf\xc5\xa8\xcd\x4a\x03\x03\x07\x4c\x78\x37\x40\x67\xbb\x7b\x7e\x59\xab\x16\x89\x6e\x11\x57\x92\x99\xf5\x76\x5f\xcf\xc3\xd9\x33\xdd\x03\xcf\x0f\x7b\xde\x67\x26\x70\xfe\x19\x86\x36\x07\xd4\xde\xa5\xc1\xf9\x2d\xf7\x48\xde\x58\xb8\xc5\x46\xae\x0d\x4d\x86\xcc\x02\x2d\x65\x6e\x59\xa1\x17\xec\x34\xc0\x08\x1f\x62\x14\x8c\x19\xaa\x7a\x3e\x43\x5e\x5c\xd9\x34\x26\x38\xf1\xdc\x5a\x88\x5e\x30\xa6\x09\xbd\x03\x3e\x22\xda\x70\x90\xf1\x63\x80\x36\xdc\x81\x88\x19\xa0\x0d\x77\x4d\xee\xe0\x0b\x57\x7d\x33\x27\xfe\x6b\x31\x3d\x43\xda\x12\xec\xae\xfe\x6b\xfa\x0d\x02\x3c\x5c\xab\x3b\x74\x0e\x8f\x8a\x7f\x38\xdb\x90\x34\x80\x87\x3b\x90\x6a\x63\x6e\x31\x22\x0c\xf9\x9f\xd3\xb6\xf9\x46\xcb\x82\x2e\x0b\x80\x13\x1f\x0a\x83\x80\x13\xf7\xc3\x35\x14\x62\x84\x64\x1e\x43\x6c\xe2\x1f\xd8\x4a\x63\x72\x9d\x71\x38\xbb\x2b\xc7\xea\x0b\x9b\xcc\x53\xbe\x6c\x8f\xd2\x5b\x22\xe8\x20\xc5\x8e\xa9\xcf\x80\x72\xef\x44\x24\xf0\x86\x6d\x9a\x3b\xdc\x20\xae\x79\xe6\x72\x58\x04\xd8\xa4\xe6\x1f\xb8\xa3\x79\x02\x01\x2d\x5c\xf9\x7b\x2e\x0d\x5d\x3f\xed\x87\x4d\x28\x4a\x21\x12\xcc\xd3\xbc\x59\x94\x56\xa2\xc0\xee\x05\x90\x71\xf1\xee\x65\xa6\x3c\x81\x5a\x30\x95\x27\xa4\x29\x66\x83\x35\x99\xc6\xdc\x02\x45\x2f\x4e\x0e\xf2\x44\x8e\x02\xb9\xa1\xb8\x92\xd7\xc9\xb3\x15\x5d\x16\xa6\xb3\x19\x25\x4e\x5f\x15\x0f\x8c\xd9\x9b\x42\x88\xb8\x48\x77\xf7\x0f\xda\x46\x3c\x28\xf6\x09\xec\x7e\x63\x56\xe7\x8d\x1f\x8b\x33\x7e\xd3\x9c\x44\xdd\x74\x79\xce\xbe\x98\xfe\x06\x2e\x02\x6a\xdc\x4b\x56\x8a\x09\xc4\xd5\xd6\x41\x5d\x47\xd2\xf9\xe4\x1a\x51\x62\x8b\x06\x55\x0f\xb0\xa9\x37\x1b\x29\xcf\x06\x98\xc6\xdd\xeb\x19\x20\x8d\xbb\xf2\x1f\x90\xc6\x47\x4b\x1a\xb1\x65\x86\x4e\xce\xa0\x01\xa4\x71\x37\xc6\x6f\x1a\x6e\x6e\x7c\x27\x98\xc6\x65\x65\xe9\x8f\xb9\xa1\x30\x66\x8b\x22\xe1\xd9\x82\x41\xf7\xae\x79\xe2\x9c\x50\x24\x9e\xb0\x7f\x2f\x2f\xe6\xab\xe6\x55\x2d\x20\x2d\x44\xc4\x00\xab\x78\x9f\x17\xfa\xf1\x3a\x21\xc5\x7f\x1e\xcb\x58\x81\x81\xb1\x3e\x7f\x34\xc2\x33\xe2\x80\x2e\x80\xf3\x4b\x51\x92\xd6\x93\xed\x23\xa2\x4c\xd9\xbe\x97\xa3\xa0\x17\xf7\x52\x2c\x82\x06\x9a\x55\xe5\x46\xf0\x23\x19\x98\x5b\x58\x10\xaf\x88\xbf\x90\x80\xb6\x98\xb0\x25\x6c\x08\xf8\xfa\x31\x2f\x6c\xe3\xa5\x17\xbb\x66\xd3\xf5\x63\x79\xe8\x8c\x30\xc9\xf2\xe5\x44\x49\x26\x75\xd9\x58\xbf\xec\xb2\x2f\xae\xcf\xc1\xb3\xe7\x29\x6c\xe3\xf4\x68\x5a\x17\x1a\x3f\x8c\x19\x00\xe5\x0e\x3c\xd5\x00\x3f\xb9\x18\x62\xb3\xb8\x25\xd1\x7b\x04\x28\xe5\x0e\xd6\xe6\x00\x4a\x79\xd7\x1a\xbc\x68\x5f\xf6\xab\xa3\xd0\x5b\x6a\x4d\xcb\x08\x24\x69\xe5\xa5\x09\x84\x72\x1d\x9e\xfe\x6e\x65\xaa\xd6\x7e\xc5\xde\xaf\x16\x87\xc7\x4c\xdb\x10\xfa\x8d\xe7\xc2\x4c\x41\x52\xc0\x4f\xee\xba\x34\x81\x9f\xdc\x4b\xf5\xd9\x7d\x4c\xfd\xb8\xf0\xe9\xf9\x0f\x62\x72\x2f\xb0\x0d\x40\x92\x7b\x81\x3b\x80\x7f\xdc\xbd\x34\x17\xfe\xf8\x50\x86\x06\xf3\x78\xf7\x94\x96\xb1\x6d\x94\xea\x57\x52\x36\xa4\xfe\x85\x6d\x83\xec\xfc\x63\xd5\x94\x7e\xfc\x8a\xdd\xe3\x0c\x98\xe8\x4e\x43\x37\xe0\xc7\xbd\xe4\x33\xd4\x0c\xbd\x69\x21\x4f\x0c\x43\x7c\x57\xda\x29\x5c\x6f\xc3\xc9\x4d\x21\x03\xae\xf1\xfe\x8c\x8a\x9b\x1e\x99\x3e\x4b\x26\x91\x2f\x00\x2d\xae\x86\xa8\x01\x5a\xdc\x4b\xf3\x77\xe1\x63\xe9\x61\x57\x19\xe0\x4c\x80\x54\xdc\x4b\x3e\xeb\x0c\xcc\x74\xf6\x3c\x76\xb4\xdd\xd9\x2c\xce\x02\x97\x11\xc6\x61\x80\x5a\xdc\x0d\x6b\x07\xa7\xb8\x16\x48\x29\x38\xc5\x1d\x94\x9d\x01\x4c\x71\x48\x90\xd6\xc8\xed\xe1\x4b\x73\x40\x34\x3d\x3c\x9a\x76\x5c\xd7\xf8\xdc\xa8\x83\x78\xe6\x65\x11\x49\x8f\x8b\x89\x75\xa2\xd8\xdb\x2d\x36\xf4\xd2\xfc\x5d\x1a\xe1\x2a\x1b\x7c\x56\x2c\x4d\x6f\xdd\xb4\xdc\x52\xd4\x6c\x2f\x45\x0b\xfb\x4b\x5a\xdc\xea\x98\x14\x33\x5c\x70\xc4\x0c\xad\x8a\x0b\xc9\xa2\x40\x26\x81\x33\xee\xa0\xb1\x0c\xe0\x8c\x7b\xf1\x20\xe9\x1a\x61\x4e\x9d\x84\x36\x56\x08\x07\xda\xb8\xe9\x82\x24\xb2\xb1\x7e\xea\x4b\x79\x03\x8a\x02\xca\x71\xf7\x4e\x0b\x94\x63\x31\xec\xc6\x9a\x82\x3f\xb8\xbd\xe6\x89\x92\x40\x73\x26\x8e\x8b\x7c\x79\xc9\xd0\x42\x9f\x16\x35\x0d\x9f\x95\x56\x3c\x30\x5b\x62\x48\xb6\x06\x98\x71\x2f\xe1\xb3\xbb\x0e\x8e\xb5\x88\x26\x27\x91\xee\x00\xbf\xb8\xe4\xde\x5a\xec\x88\xf8\x53\xd0\x5b\x0a\x10\x28\x7f\x2b\x05\x08\xcf\x37\x72\xc2\x30\xc0\x7b\x9d\x32\x1e\xc7\x7b\x32\xbb\xc3\xaf\x3c\x5a\x98\x21\x96\xf9\x70\x0d\xc2\x03\xdf\xf8\x10\xb2\x66\x80\x6f\xdc\x81\x18\x1c\x09\x6f\x6c\xa8\xd4\x32\x43\xbc\x82\xd4\xba\x98\x0a\x24\x69\xa0\x8e\xbb\xd7\x00\x0b\x73\x03\xd0\x6f\x03\xa4\xe3\x43\x84\x9c\xb1\xae\x4c\x5c\x42\x1f\xaf\x5c\x50\xfa\x85\xa3\x61\x41\x14\x4a\xac\x63\x53\xfe\x80\x75\xdc\x8b\x93\x74\x41\x3f\x25\x24\x77\x76\x84\x75\xb8\x5d\x5d\x0a\xe0\xeb\x50\x90\x7e\x56\xda\x15\xa6\x1f\xc5\x7f\xff\x0b\x2f\x61\x97\x2e\xee\xaa\x32\x4b\x69\xc1\xf1\xdd\x3a\x59\x59\xe0\xc6\x09\x90\x9e\xeb\x8c\x98\xdf\xdb\x25\xa6\x90\xeb\x8b\x61\x48\x3a\xc8\xc8\xbd\x48\x92\xcd\x47\x6f\x96\x24\xd0\x90\xbb\x9a\xe8\xc2\x5a\xa0\x7d\x74\x3d\x22\x3f\x5b\x00\x3a\xe0\xce\xc5\x0c\x50\x50\xd2\xd7\xd6\xfc\x27\xc9\x90\xc7\x7a\xe5\x6a\x76\xe9\xcd\x23\xee\x0b\x6b\xec\x09\x17\x33\xcc\x81\xbe\x52\x39\x77\xe5\xeb\x25\xa8\xf4\xef\x65\xc6\x5d\x8a\x97\xb6\xdd\xeb\x5f\xe6\x20\xa4\x38\xfe\x87\x26\x6b\x5a\x5f\x36\xce\xf4\x7f\x4a\x80\x1e\xf1\xcf\xad\x27\x0f\xf9\xf2\x44\xf9\xc2\x01\x96\xfa\x7e\xa4\xbf\x74\x4b\x7a\x53\xb1\xac\x17\xad\x64\x4a\x21\x3e\x96\x18\x16\x97\x30\xc8\x2a\x7d\xc2\x20\x8b\x4b\x34\xce\x1f\xdd\x82\x23\x9f\x06\xa0\xab\xf5\x9d\x78\x23\x92\x59\x77\x9c\x38\x31\xe8\xed\x73\x6e\x4e\x9d\xc6\x97\x53\x4e\xcd\x02\x9c\x78\x2c\x0a\x6a\x34\x40\x44\xde\x1d\x39\x78\xa1\x09\x16\x1c\x44\xe4\x5e\x6c\xe1\x60\x6f\x73\xe4\x4e\x03\xcd\xf5\x3e\x06\x29\xb9\x78\x53\x7e\x1e\xdc\xf2\x2e\x6b\x75\x9b\x33\x6e\x90\x92\x3b\x39\x73\xc7\x29\xf6\x89\x89\x98\x40\x4a\xee\x20\xfa\x0d\x80\x92\x8b\xce\x1f\x67\xde\x49\x58\x6d\xc1\xd1\x16\xd9\xe3\x84\x6d\xeb\x1d\x74\xca\xb6\x9d\x27\xb3\xdb\xaa\x89\x9e\x66\xae\xd5\x4f\x10\x9c\xe4\x43\x6f\x5c\x70\x92\x0f\x50\x56\xc7\x29\xea\x17\x04\xed\x2c\x6e\x6d\xbe\x21\x87\x0c\x89\xb7\xc7\x59\xd5\xbe\xd8\xf3\x27\x79\x63\x74\xe4\x38\x65\xdb\x48\xdd\x67\xfa\x26\x20\x45\x9f\x5c\x3b\xe8\xba\x71\x62\x44\xd0\xab\xf7\xe4\x0a\xc2\x0b\xa1\x13\x76\x3e\xd6\xf1\x67\xf4\xed\x69\x98\x5c\xb5\xd4\x6b\x5f\xec\xd8\xe7\x24\xd2\x01\x1c\x14\x8a\x73\xd5\x5c\x1b\x4e\x35\xf8\xcd\xb3\xdb\x99\xc6\x49\xe1\x84\x03\xdf\xdc\x0d\xb6\x3a\xb5\x1e\xc8\xd2\xcf\x66\x38\x02\x54\xe4\x24\x7e\x4e\x13\xd1\xa9\x7b\x82\x17\x60\xa7\x41\xe4\xa6\x28\x39\x31\x07\x74\x03\x07\xce\xbc\x7c\x80\xe6\x9e\x46\x8e\xeb\x7c\x77\x92\xbe\x56\xb9\xfc\x44\x56\x20\x4b\xfc\x38\xd3\x1c\x90\x25\xbc\x95\x62\x79\xc8\x5c\xaf\xbe\x03\x2a\x74\xd7\x63\xee\x34\x3e\xdc\x10\x1a\x80\xa0\x7b\x75\xad\xcc\x31\xa7\xe7\x09\x40\xd0\x7b\x4d\x7c\xb9\x98\x06\x86\x1b\x79\xcc\x99\x87\x70\xb3\xd3\x41\xfc\x0a\xba\x1b\x4b\x5e\x6c\xe1\xe4\xbf\x6e\xf6\xcd\x5a\x27\x49\xc0\xc7\x69\xd2\x38\x38\xd2\x39\xc9\x8d\xe9\x09\x9a\x72\x27\x67\x7a\x2a\xa9\xd8\x29\xfc\x02\x40\xc2\x1f\xa7\x19\x5d\x0d\x37\x4d\x10\x69\x2d\xa6\x27\xea\x3b\xb0\xff\xe3\x9c\xda\x9a\xf9\x68\xab\xec\xbd\xda\xf6\x92\x2a\xd8\xf8\x52\x00\x42\xa3\x3b\xb7\x9a\xde\xcd\x97\x76\xea\xce\xaf\x92\x0f\x86\x74\xd7\x3d\xe9\x3c\xad\x8a\x4e\x9d\x9e\x7e\x57\x29\x99\xe9\xe1\x3f\x9b\x90\xe8\x6a\x7f\x9e\xd9\x43\xff\xb8\x69\xc3\xaa\x34\x6e\xd0\x91\xe4\x98\xf6\x0a\xbd\xb9\x5a\x93\xf8\x5b\xd3\xc9\xc5\xc6\x5e\xed\x2d\xec\x4f\xa7\xb0\xd3\x08\x2f\xd3\xab\x9c\x72\x36\x08\x25\x20\xd1\x1d\x98\xe3\x71\xde\xd6\x4a\x45\x66\x90\x37\x51\xcb\xe9\x4d\xbb\x56\x08\x50\x9d\xf7\x3f\x0c\x7c\x73\xa4\x4e\xee\xe9\x71\x92\x13\x4d\xe7\xf3\x53\x47\x3c\x53\x45\x80\xf1\xdc\xc1\x33\x1b\xe7\x83\x13\x11\x8c\x40\xb8\x67\x61\xb5\xc6\x69\x22\x15\x13\x0d\x9c\xf0\x2a\x30\x40\xc7\xb9\x35\xd6\x6e\xbc\xfe\x99\x7c\x8b\xe1\xbd\x8d\x67\xfa\xf4\x2a\x10\xc0\x9e\xce\xcd\xaa\xaa\x11\xd9\x40\x3f\x77\x6f\xa2\xce\xbc\x67\x97\xc2\x93\xd5\xec\xd0\xda\x70\x72\x3f\xfe\x3b\x24\xa7\x9f\x45\x98\x29\x7c\xe9\x4c\x0e\x71\x9a\x8d\x4c\x59\xec\xfc\xb2\xb7\xfb\xab\xcb\xac\x63\xea\x9c\xd7\x4f\xcd\x24\x7c\x69\x40\x2b\xf9\xdc\xa9\x2b\x78\x5e\x96\x18\xbc\xc0\x53\xb2\x2a\xb7\x02\xcc\xf1\x82\x5d\x00\x94\x37\x80\x8a\xee\xda\xcc\x12\x2a\x5a\x47\x2e\xd1\xa1\x87\xda\xbd\xe8\xd0\x5b\xce\xfd\x83\xf6\x5d\x87\xf4\x0e\xa6\x71\x1d\xcc\xb0\xbd\xc4\x0b\x4e\xfe\x01\xbc\x74\x29\xf9\x0c\xa3\x86\xdc\x5e\x22\x64\xe9\x41\x7e\x91\xd4\xdc\x0d\x74\xe9\xde\xa6\x4d\xe5\x32\xd5\x88\x76\x11\x70\xa7\x77\x2f\x2d\x2f\x7d\x85\x5e\x03\x36\x5d\x65\xf3\x57\x2a\x6f\x4e\x45\x1d\x96\xf7\x85\x93\x07\xc1\xba\xe4\x02\x28\x9a\x17\x8a\x9c\x11\xa1\x97\xce\x6a\xc5\x9a\x94\x42\xc3\x8f\xc4\xec\x2f\x3c\x13\x7d\xe7\x9c\x66\x58\x16\xbb\x06\x74\xea\x6e\x88\xde\x65\x12\x11\x5d\xdd\xae\x66\xd3\x74\x03\xd7\x33\x99\xce\x65\x5a\x72\x60\x19\x86\xb0\xd5\x26\x1e\xbd\x4c\x1c\x62\x4e\xa5\x0b\xda\x5e\x4d\x53\x04\x9e\x75\xaf\x76\x44\x6f\x33\x83\x34\x2f\x4d\xc0\xae\x2e\x1a\x21\x20\x21\xe3\x4a\x2a\xef\x76\xe8\xc6\xb2\x22\x3e\x5c\x92\x79\x04\xa2\xab\xb3\x4b\x9b\x4d\x64\xe3\xb6\xc1\xc2\xa2\xcd\x5e\x43\x0b\x14\xd2\xdc\x85\xee\x07\xa0\xc7\xb8\xc8\x37\xaa\x92\x0c\xbc\x75\x51\xc7\x02\xde\xba\xe8\x47\x7f\x99\xa2\xdc\xc4\x13\xe0\x5b\x57\xd3\x47\x5d\xf0\x85\xe1\xb5\x34\xf8\xd6\x55\xa3\xe2\x45\xbe\x51\x9d\x37\xc5\xba\x4e\xaf\xf6\x2b\x35\xbf\x65\x7b\xaf\xff\xf8\x19\xce\xd0\x0e\x49\x40\x14\x0d\x27\x17\xaa\x5f\x55\x31\x03\xfa\xba\xe8\x0b\x76\x91\x4a\xcc\xd0\xa7\x4b\xd5\x4f\xaf\xa4\x0b\x78\x94\x6a\xc4\xf2\x95\x4c\x66\x59\x31\xb8\x39\xf6\x57\x17\x33\x35\x74\x21\xae\x85\x9c\x1b\x40\x5c\xf7\xea\xce\x97\xb1\x74\x4b\x74\xbb\x45\x8b\x13\xe0\x61\xf7\x37\xae\xf0\x06\x2a\x82\x64\x5d\x40\xe3\x1c\x02\x59\x1f\xd9\x02\xbc\xc7\x79\x43\x97\xf3\x72\x17\xb0\xe9\xa2\xdf\xbe\x58\xd3\x87\x6e\x01\x80\x4d\x77\xdd\xdb\x04\x95\x0e\x45\xfc\x6b\x41\x1e\x91\x4f\x40\x89\xee\xb9\xf3\x8c\xf8\x52\x9d\xbd\x4e\xa5\x74\x67\x5d\x6f\x74\x95\x4a\x70\xa2\xf7\x3f\xf4\xe4\x54\xf8\x80\x4f\x03\x14\xdd\xcd\xb5\x09\x4e\xf4\x3e\x1d\xd4\x8c\x56\x66\xf2\xc5\x0b\xad\xcc\x8c\x9a\x97\x8c\x08\xde\x2a\x80\xb4\xbc\x47\x00\x69\x13\xae\x00\x1a\xdd\xcd\xe0\x91\xd8\xd0\xf9\xbd\xd1\x43\x6c\x67\xdc\xc8\xbc\x44\xbd\x92\x57\xb9\x78\x97\x84\x6a\x5a\x02\xe3\xa5\xc3\xdb\xba\x5a\x03\xc3\x63\x00\x07\x4d\x76\xac\xbf\xc8\x1e\x76\x5e\x6d\xbb\xd7\xcd\xa9\x81\xe9\x82\x0f\xbd\xf5\x0b\x5f\xc0\x3a\xf2\x00\xde\xdc\x15\xba\xa5\x51\xcb\xc4\xfb\x19\x40\x42\x57\xad\x54\x40\x42\x77\x5d\xa7\x80\x84\xae\x39\xa8\x47\x09\xd1\xdf\xf3\xa0\x30\x0b\xa8\x6b\x5a\xb4\x2f\x12\x88\x84\x76\x79\xe0\xa1\xab\x29\x55\x2f\xf9\x1e\x0c\x58\xe4\x67\x61\x0c\xc7\xf5\x1a\x55\x82\xb8\x07\x66\x73\x37\xb9\x1d\x98\xcd\xdd\x0c\x78\x97\x29\x3c\xcd\x68\x07\x66\x73\xd7\x71\x4d\x98\x66\xa1\x12\x07\x30\xcd\xdd\xac\x72\xd7\xa7\x88\x27\xf1\x15\x94\x4b\x3f\x57\xa0\x96\x77\xdf\x77\x11\xf0\x95\x77\xc5\xbe\xe8\x67\x00\x7d\x02\x54\x79\x7f\x16\xbc\xb0\x77\xc3\xaf\xb2\xb2\xc2\x4b\x8e\xd7\xaf\x0c\x5e\xe3\xd0\x81\x9f\xbc\xff\x99\xbc\x40\x0c\xd8\xbc\xf7\x91\xa4\x8b\x22\x24\xf3\xd0\x22\x7c\x0b\x2b\xa9\xbe\x0e\x50\x72\x26\x42\xbb\xbd\x42\x55\x51\xbe\x0f\xa7\xc8\x8f\xbc\xfb\x82\x82\x03\x73\xdc\x4d\x6d\x05\xca\x71\x37\xaf\x58\xa2\x14\xeb\x8e\x99\xc8\xc4\x13\xea\x7a\xa7\x4b\x15\x5b\xe0\xe6\x7a\x53\xc7\xec\x3b\x39\x17\xcc\x40\x30\xe2\x50\x7f\xbf\xab\x17\x67\x3e\x93\x71\x1b\x39\x5f\x90\xe2\x5f\xcd\x8f\xa4\x90\x50\xea\x84\x23\xe6\x1c\x01\x47\x3c\x81\x62\x19\xc0\x11\xd7\x9f\x4d\x34\xfc\xbc\x1c\x93\xb6\xc9\xee\xb3\x3a\x06\x1b\xe5\x6e\x59\x2b\x35\xe9\x10\x65\x2e\x3c\x90\x87\x6b\x83\x74\xdd\x2d\xa7\x84\x17\x3c\xa2\x34\x74\xdc\x19\x6a\x3c\x7d\xc9\x95\xa6\x2e\xc2\xad\x4c\xe4\x75\x63\xa8\x24\x59\xfd\x10\x88\x58\x78\xce\x71\xeb\x1d\xed\x3e\x41\x11\x09\x2d\x06\x00\x11\xcf\x6e\x47\xb8\x97\xd4\x28\x01\x26\x71\x37\x6f\x18\x98\xc4\xc5\x24\x04\x40\x12\x17\x13\xfa\xdc\x2a\x2b\xae\xcc\xf0\x02\xbd\xfa\x11\xfb\x0d\xea\x7f\x63\x74\x34\xa9\xd3\x9d\xbc\x07\x96\x26\xf4\x70\x28\x6c\x00\x37\x3c\xbb\xcf\xb0\x9b\xfc\x88\x1c\x1c\x06\x79\xde\xb8\x3e\x99\xe4\xe4\x0e\x35\x01\xe8\xfa\x9d\xee\x4e\xb6\x67\xde\x0d\x8d\x0d\x80\x12\xef\x89\xf2\x33\xa2\xc3\x21\xf9\x77\x3a\x42\x65\x65\x0f\x9b\xd5\x06\x19\xb7\x93\x86\x49\xd1\x84\x34\xf7\x74\xac\x74\x64\x33\xa4\x6a\xe2\xc3\xdb\x40\xad\x7f\x2f\x6e\xbc\xf5\xe7\xad\xc6\x3d\xa1\x46\x2e\x81\xc8\xc7\x5a\x25\x40\x3e\xae\x86\xd7\xde\x68\x4e\xa1\xb8\x02\xf0\x71\xd5\x42\x7c\xcb\xbc\x5c\x7e\x95\x25\x58\x11\x58\xc7\xdd\x94\x2c\xf7\xd2\x98\xe3\xef\xd9\x49\x0b\x64\x27\xfd\xc7\xdc\x90\x3e\xbb\x84\x6e\x44\x7d\xa4\x16\x92\xf7\x8d\x8f\x94\x0e\x68\xf7\x72\x3d\xfd\x88\xc3\x8c\x0c\x74\x8b\x85\x61\x46\x80\x5b\x7f\x6a\x4d\x22\x20\x28\x57\xfd\xcd\x6f\xf3\x73\xb8\x95\x44\xee\xf2\x4e\x1c\x08\xe4\xaa\x97\xcb\x9d\x61\xd0\x4e\xfc\x99\xdb\xc4\x97\xbd\x3a\xa6\x81\xbc\x2f\xa5\x12\x8b\xc3\x12\xcd\x1a\x98\xe0\xc8\xb9\xd0\x78\x57\x9b\x21\xfe\xce\x70\x2d\xfb\x0b\x8e\x97\x09\x52\xee\xcb\x5c\xc3\x7e\x74\x52\x93\xbf\x23\x9f\xc0\xf3\xc1\x40\x2e\xca\xb0\xf7\xc5\xfc\xbb\x61\x2e\xbb\xe4\x37\x9b\x36\x6b\x52\xba\x6f\xe4\x19\x0f\xd6\x2d\x99\x2e\xfe\x01\x71\x73\x9e\x88\x99\x36\x77\xf9\x8d\x92\x37\xcc\x5d\x02\x48\x72\x31\xca\xe1\xc6\xd7\x49\x3e\x79\xdf\x24\x4e\x70\xab\xdc\x4a\x97\x76\xef\xce\x19\xa7\xda\xbc\xe0\xc4\x68\x73\x7b\xc1\xa9\x01\x45\x54\xe5\xa5\x7f\xd7\x2d\xab\x94\x48\x3f\xaa\x11\xf9\x42\x06\x1f\x04\x8c\x3b\x6f\x38\x1d\x2c\x37\x9c\xe6\x45\x03\x86\xb9\x7b\xa7\x7c\x6f\xbe\x39\xbb\x87\x80\xb8\x2d\x13\x48\xdc\x28\x95\xa1\x44\x0a\x56\x73\x6f\xf0\xd6\x5b\x40\x4d\xf3\x1b\x80\xd5\x5c\x0d\x8d\xbf\x5f\xb2\xca\xc8\xdd\x30\x86\x6a\x92\xba\x5f\x63\x2b\xe9\xd2\x9b\x07\x86\xbe\x12\xd0\x65\xb2\xa2\x5b\xdc\x4c\xa5\x2c\x00\x9d\xbb\x49\x22\x00\x74\xde\x7f\xd8\xc4\x6b\xdb\x7e\xf5\xd1\x29\xaa\x32\xb9\xb6\xdc\x8c\x50\x2f\x1d\xe0\xef\x2f\x37\x14\x43\xd5\xdd\xdb\x4e\x7d\x6a\xfb\xf2\x90\x4f\xdd\x0f\x0a\xf8\x00\xfa\x15\x72\x69\x41\x9d\xbb\x69\x22\x9e\x1f\x9a\x32\x67\x5a\x4c\xe7\x43\xf3\xd2\x63\x62\x2d\x83\x99\x40\x78\xae\xca\x81\x0f\xe6\x4c\xc3\x21\x9e\x5f\xf6\xdd\xe2\xae\x39\xc2\xdf\xe3\x0d\xa3\x11\x4c\x40\x3c\x77\xf3\x36\x3e\x86\x69\xeb\xc5\x0d\x94\x73\x31\x74\x04\xf8\xe6\x2e\x6b\x03\xbe\x79\x7f\xe4\x1f\x40\xed\xd8\xf7\xc3\x7c\x08\xfe\xce\x5c\xb1\xa5\x05\x66\x0e\xe5\x8b\x07\x8c\xad\xdf\xdf\xb9\x94\x9f\xd4\x49\x11\x3f\x41\x6d\x3e\x8a\xbd\x2f\x30\xe0\x9f\x55\xb3\x81\x6c\xb2\xe4\x78\x6d\xe6\x93\xc7\xf0\x15\xb9\x30\x87\x11\x7e\xcf\xd6\x5b\x8b\x2a\xc2\xb3\xc5\x82\x6e\x0e\x05\x21\x9f\xc3\xcc\x86\x4f\xe5\xb0\x41\xde\x1e\xac\x9a\xb9\x22\xa8\xb0\xfa\xbb\x0a\x0b\x3d\x34\x12\x3c\x5e\x46\x86\x05\xdc\xc9\xd9\x1c\x3b\xd9\x35\x44\x40\xd0\x92\x00\x74\xf4\x2e\x4d\xd7\x1b\x4e\x2f\x6c\xd2\x87\xac\x98\x46\x54\x3f\x5c\x58\x1a\x76\xf4\x78\xb1\x68\xb0\xd7\xa3\xe1\xd0\x8c\xa5\x20\x39\x77\xaf\xb0\x9e\xce\x4e\x2e\xfe\x2e\xf3\xb6\x83\xdd\xd0\x5e\x86\xda\x73\xa6\x7c\xc9\x9d\xc1\x98\xcc\x4d\x9d\xbd\x1a\x5a\x05\xe1\x95\x0f\x3e\x45\x06\x5d\x80\x03\xdd\x0d\xad\x7f\x4c\xbb\xa5\x41\xf4\x19\x80\x17\x34\xff\xc8\x0d\x4b\xb7\x40\xc1\x32\x1f\xd1\xa3\x86\xd9\x6d\x0f\x4e\xe0\x30\x8c\x73\x6a\x56\x24\x8f\xa7\x6c\x64\x9f\xf8\x08\x2c\x4d\xd9\xdc\x83\xb2\xe8\xa9\x7d\x60\xe5\x26\x00\x7d\xc2\xf9\xa0\x81\x90\x3f\xc0\xbc\x1f\x55\x45\x09\xed\x83\x1f\xb2\x81\xb3\xa0\x43\xcf\xee\xb2\xe2\x35\xa4\x6d\xe1\x99\x02\x71\xc0\x1e\x1e\x23\xa5\xcd\x44\x0a\x3a\x74\xcd\x49\x9b\x52\x0c\xa4\xd9\x87\x48\x25\x23\xa2\x9f\x95\x8e\x63\xf4\xd0\xb4\x23\x1a\x0b\xc1\x8d\xee\xa6\x33\x78\xd2\x52\x09\x1f\x07\x36\xba\x1b\x43\xfd\x2c\x19\xbf\x05\x72\x36\xfd\x63\x5a\x2f\x7d\x27\x0d\xb5\x59\x95\x00\x8c\xae\x3a\xc3\x3d\xe4\xa5\xf4\xca\xfe\x39\x75\x54\x40\x55\x7d\xb4\x5a\x9a\x58\x14\xf0\xe7\x99\xdb\x42\x8d\xd2\x7c\xa5\x8f\xa0\x4f\x8e\x03\xd7\x1f\x6f\x9f\x13\xfb\x59\x4f\xa3\xe7\x72\x0e\x99\x2b\x51\x22\x34\x3c\x3e\x98\x33\x9b\x53\x75\x29\x58\x21\x6a\x80\x0a\x5d\x4d\x2e\xf8\x98\x37\x64\x66\xbd\x1a\x8e\x61\x63\xcf\x4d\xca\x2e\x47\x9e\x0c\x11\x8e\xfb\x98\xb5\x32\x4f\x84\x1c\x11\x01\xff\x41\x41\xd4\x1f\x14\x50\xe9\x6e\x9c\xda\xa3\xcf\xb0\x46\xe8\xe7\x96\x6c\x4a\x2e\x6e\x28\x97\x64\x93\xe0\x65\x23\x3a\x00\x95\xde\x25\x7c\x61\x1f\x4a\x1c\xe1\x94\xff\x88\x0d\x9c\x52\xd1\x06\x80\xe9\x6e\x6c\xc1\xf3\xd8\x27\xfa\xf1\xa4\xff\x13\x1d\x44\x75\x3c\xe2\x4f\x0b\xdf\x23\xaf\x74\x11\x1e\xef\xe8\x96\x35\x24\xd3\xb0\x4d\x4d\x01\x0e\x18\xab\xab\x51\x53\xcf\x23\xe1\x93\xbe\xbd\xca\x3d\x68\x99\x62\x51\xe7\xd1\x16\x66\x42\xfe\x05\xfe\x74\xd7\x7b\xf3\x11\x66\xc2\x3c\x9a\xe0\x4f\xf7\xe6\xae\xe1\x1e\xd1\xd0\x13\x31\xa7\xc5\xc1\x1e\x8f\xbc\x53\xb2\xf9\x62\x24\xce\x02\xce\xa9\xbf\xd3\x41\x17\xc1\x5c\xd7\xe6\xb1\x7b\x32\xd7\x89\x03\xc4\xd1\xd8\x94\xbc\xa0\x54\x4f\xa3\x29\x40\xa9\x2e\x4a\x0f\x4f\xb2\x51\x64\x31\x60\xaa\xab\x89\xf6\x9e\x4f\xdd\xcd\xa3\x6a\x32\x4c\xa9\xf1\xc7\x25\xbb\x2c\x91\x1b\x48\x23\xd9\x1f\xcc\xc5\x46\x0f\x80\x5e\x5d\x8d\x67\x7b\x3e\x4e\x04\x47\xf3\xfd\xe5\xfc\x05\x2f\xd9\xf4\xe4\x85\xbc\x02\x8c\xfa\x15\x6a\x93\x3d\xfd\xfe\xe0\x5a\x87\xa5\xb1\x2d\xd1\xd5\x17\x5b\xb1\x81\xef\x80\x57\x17\x55\xd6\x17\x9f\x1e\xed\x52\xef\xe1\x69\xa2\xac\xd0\x55\xc6\xa5\xbc\x72\x5f\x84\x37\x60\xa9\x8b\x94\xe3\x35\x2b\x0a\x54\x15\x58\xea\xee\x2d\xc3\x7b\xe4\x16\xb6\x56\x38\x31\xdc\x1a\x88\xea\xcc\x20\xf2\x72\x7f\x68\x28\xd0\x5b\x92\x30\x32\x4e\xb4\x6b\x7d\x53\x5e\xb4\x6b\x6f\x8f\x80\xb4\x3e\x8e\xea\xef\x10\x7a\x8e\xd8\x5b\x20\x9e\x0e\xa1\x48\x30\xad\x07\xde\x0c\x49\x7e\xb7\x66\x5e\x84\x81\x02\xf5\xba\xeb\xcd\x0c\xea\x75\xd7\xfd\x4c\xd0\x6b\xb3\xce\x09\x74\x1d\x72\xc4\x17\xce\x5c\xb5\xa7\xbf\xa9\xa3\x3b\x19\xb2\x63\x08\xc8\xbb\xd9\xf1\x94\x6f\xbe\x95\xd9\x86\x3a\xbf\xa9\xa2\xbb\x3c\xd5\xc5\xa5\x7f\xd5\xb6\x69\xa2\x09\x6f\xcf\x51\x05\x0e\xbb\x7b\xe7\x0d\x1c\xf6\x31\x24\xe1\xaf\x69\x53\xf4\x0c\x7c\x9b\xd1\x5e\x54\x85\x17\xb1\x4e\x11\xc0\x5e\xf7\x96\xbf\x7b\x18\xfd\xc3\x94\xd3\xda\x1d\xdf\xb4\x22\xbb\x09\xb0\x16\x2b\x71\xbe\xfa\x0b\xab\xc6\x02\x74\x5d\x8c\x53\x07\xe7\xba\xc8\x05\x5f\x35\xf1\xe2\xb3\x54\x14\xa2\x9f\x90\xd7\x72\x06\x20\xaf\xbb\xae\x56\xc0\x5c\xef\xaf\x98\x75\x21\x2d\xcd\xe5\xfb\xe2\x20\xac\x98\x05\xd0\xf5\xfe\x8a\xfe\x0e\xd7\x8f\x1e\x0e\xe7\xca\xdf\x31\xe6\xd9\x73\xee\x0a\xf5\x3b\x03\xf2\x7a\xcf\x0e\xb5\x92\x08\xac\x8d\x3f\x53\xec\x25\xbe\xb5\xd7\xe3\xaf\x58\x10\x1a\x5d\x40\xb5\x6e\x26\x78\x00\xd5\xba\xe8\xd1\x00\xaa\x75\xd5\x8d\xfc\x45\xd5\xf6\x76\xfc\x85\x59\x2f\xdd\x69\x5e\xf8\xb3\xea\xed\x3b\x73\x86\x7c\x61\x52\x7c\x36\x47\x98\x3b\x6e\xe5\x9c\xd0\x34\x96\x5d\x25\x8b\x77\xb9\xc7\x2c\xa0\x79\x0a\x4d\x59\xc4\x6a\x53\x4d\xbf\xc4\xf9\x98\x77\xf0\x5d\xb6\x40\xbf\x4d\x58\xe2\x8d\x0f\x50\xd6\x09\x50\x04\x78\x75\xd7\xdc\x03\x5e\xf5\x11\xa6\x50\x06\xa3\xba\x7b\x0b\x25\x44\x75\xf5\x02\xee\xc5\xc4\x9b\x54\xe6\x52\xa0\x85\x61\xbd\x98\x75\x35\xe5\xbd\xa6\x1c\xf1\x6e\xe3\x4d\x56\xed\xf1\x10\xd0\xc9\xc5\xc1\xb0\x9b\x84\xe9\x22\x19\x9b\x74\xe6\xf2\xa8\x2c\x5f\x6e\xa7\xd3\xd2\x52\x17\x16\xe9\x92\x27\xf2\x7c\x3b\x3e\x74\xc4\xf7\xce\x5e\xd1\xf7\xdb\x5e\xd1\x86\xbe\xbc\xe6\x91\x7e\xd1\x69\x35\x50\xbe\xa4\x1c\xd1\x3d\xe1\xbd\xa5\xa2\x88\x22\xaf\x2e\x39\x5e\x0a\x80\x7d\xdd\x95\xc8\xde\x64\xe1\xc5\xe2\xea\xdc\x4c\x8f\x2c\xdc\x9d\x93\xda\xee\xb2\x23\x0a\xbb\xc5\x2e\xca\x7c\xdc\x17\x26\xa7\xb4\x27\xe8\xb7\x79\xd2\xf0\xc1\x4d\x29\x1f\x54\xeb\x92\x1d\x01\x26\x42\xde\xf8\x6e\xde\x78\xa4\x6e\x0e\x30\xf5\x1e\xa0\xff\xd8\x13\xda\x53\x65\x74\xd6\x71\x9f\x91\xd5\x01\x46\x5d\x8f\x9f\xbf\xef\xd5\xd0\xb5\x02\x00\xea\xae\xc4\x2d\x00\x75\xe6\xea\x14\x74\x3a\xcc\x20\x2d\xd0\x74\x33\xa2\x14\xa0\xe9\xae\x80\x0b\x96\x74\xf7\x1a\x1f\xf8\xe8\xcc\xb9\x04\x7c\x74\xf5\x64\x7c\xc9\xc6\xe8\x93\x90\xd1\x25\x3f\xca\x39\x9f\xbc\x20\xb0\x77\x3f\x52\xf0\x0d\x5f\x54\x6e\xc2\xaf\x72\xa2\x6d\xf0\x43\xae\xe7\x2b\x2c\xbf\xc3\xc4\xfb\xe0\x41\x77\x4d\x34\xe0\x41\x77\x37\x15\x78\xd0\x87\xd7\xd9\xe0\x41\x17\xbd\x7b\x3e\x5d\x5b\xb5\xfc\x08\x02\x1d\x4a\x8c\xdf\x91\xab\x4f\x7f\x0f\xaf\x68\xac\x6b\x73\xb6\x2a\xb4\x87\x68\xcf\x60\x6a\x0e\xc0\x9e\x43\xd4\xc5\xcf\x44\x94\xe6\xa9\x4e\x7c\x67\xdd\x40\xc0\x71\xde\x2f\x16\xcf\x46\xfc\x07\x5b\x93\x83\x22\x8e\x57\xd7\xc2\xcf\x38\x5e\x69\x07\x08\xcf\xbb\x04\xc5\x49\xe3\xb1\xfa\xef\xcf\xc0\x34\xf0\x9f\xbb\xdc\xe4\xab\x6e\x0e\x66\x55\x63\xb5\x21\xf1\x9f\x79\xa4\xcd\x35\xff\x25\xf3\xe3\xac\x83\x00\x5d\x0c\x59\xfc\x6a\xce\x05\xf3\x97\xfa\xe7\xf4\xe5\x65\xc2\xfd\xca\xdd\xc8\x00\x9a\x8b\x42\x83\xf0\x35\x33\x95\x7f\x5a\x95\xf5\x84\xfd\x4c\x60\xc9\xa6\xfb\xf4\x6f\x31\x23\xf5\x67\x02\x4b\x6f\x29\x44\x64\xd6\xb6\xf4\x25\xfb\x9a\xbe\xec\xdd\xac\xa9\x07\x70\xe6\xbd\x23\xfc\x23\xa7\x98\x69\xe5\x16\xd4\xdb\x96\xcf\x84\xce\x87\x0d\xe6\x14\xfb\x92\xa7\x98\xfe\x76\xe7\x9b\x29\x49\x8d\x15\x42\x03\x86\xf3\x6e\xc4\x17\x85\x1a\x74\x29\x80\x9b\x8b\xf6\x08\xa0\x9a\xbb\x7a\xd5\x37\xdc\x5e\x50\xeb\xcf\x30\x5c\xaf\x38\x00\x62\xee\x3d\x4b\xe0\xb7\x6d\xb7\x36\xfb\xeb\xba\x2f\x80\xc9\x5c\x4d\xe1\xf6\xe1\xce\x2a\xf4\x1e\x70\xcb\x3d\xb7\x53\x9c\x3c\x33\x09\x84\xd1\x6a\xba\x16\x60\xb9\x99\x18\x40\x80\xe5\xa1\xea\x05\xa8\x72\xd7\x59\x02\x50\xe5\xae\x6f\x0d\xb8\xc9\x5d\x43\x30\xb8\xc9\xbb\xab\x74\x83\xf8\x5a\x83\x87\xbe\xc9\xe0\xdc\x97\xa4\xd9\x58\xff\x6a\x52\x0e\xf6\x23\xad\x15\x28\xbf\x22\x24\x0f\x35\xba\x6f\x66\xaf\x6c\x84\xbd\x83\x50\xf4\xad\x9c\x67\xbe\xc2\xed\x55\x7d\x19\x88\xe4\x5d\x82\x16\x57\x76\x8b\x56\x44\x5b\xf4\x12\xee\x5b\xb9\x75\xfd\xc7\xbb\x07\xff\x00\x31\x59\xee\xfc\x2d\x37\x86\x5b\x51\xec\xa4\x9c\x6a\x13\x6c\x9a\x40\x19\x98\xe4\xdd\x65\x2a\x23\x96\x56\x01\xff\x3b\x21\x2f\x70\x07\x60\x92\xbb\x2a\xc4\x27\xa6\x92\xf9\xf2\x3e\xf3\x80\x89\x28\x04\x34\x72\x57\x94\x02\xf4\x78\x37\x68\xb5\xd9\x20\xe3\xd2\x80\xec\x25\xcc\x07\x50\x83\xd9\x1a\x80\x43\xee\xea\xcf\x40\x20\x4f\x5d\x14\xbe\x8c\x7d\x41\x59\x03\x0e\xf9\x58\xde\x06\x01\x81\xdc\xd5\x2f\x3e\xc1\x93\xb4\x39\x7d\x62\x21\x9a\xba\xfb\xc3\xa3\x55\x33\xf3\x47\x08\x6d\x9e\xb5\xdb\x3d\xc0\x8a\xde\x38\x53\xbb\x9b\x74\x6e\xf5\xa2\xe6\x43\x19\x56\x14\x16\x28\x79\xa8\x00\x7f\xb7\x76\x00\x64\xef\xef\x71\x7e\x68\x02\xb5\x55\xb9\xf8\x23\x1c\x25\x87\xf1\xe4\x7a\xf8\x11\x07\xd5\x71\x3f\x9e\x47\xa9\x0f\x37\x9e\x6a\x00\x02\x22\xff\xda\x9f\xd7\x1a\xa0\x25\x57\xfd\xf3\x3e\x35\x50\x9b\x14\xcf\xd0\xbb\x9e\x2f\xad\xb4\x32\xab\x17\x8d\xdd\x5d\x03\x93\x55\x08\xf9\xd0\x2e\xbd\xc9\xfa\xd0\x2e\x93\x27\x7c\xee\x12\xa4\x56\xd0\x91\xbb\x9e\x1a\x00\x22\xf7\x5c\x8e\xcf\x45\xf3\xf7\xf1\xdf\xff\xc2\xf8\xc6\x0f\xee\x9b\x97\x25\xe0\x21\x77\x63\x38\x84\x40\x0e\xbd\x82\x85\x40\x3e\xbc\xd2\xf9\xe0\xc4\x18\xb0\xe2\x87\x51\x77\x72\x11\x16\xbf\x9f\x6d\x4f\x9e\x6d\xaf\xf0\x3c\xf0\xde\xf7\x1b\xb4\xa8\x3d\xb9\xf1\xfb\xb1\x45\xf6\x40\x03\xfc\xe4\x5d\xd1\xc1\x8b\x2b\xd0\x79\xf6\x74\x1c\xfe\xc1\x0a\xec\x65\x8a\xdf\x61\x6b\xc1\x73\xc7\xd5\xd5\xe7\xb0\xaf\x94\x26\xd3\x26\xe0\x95\x01\x00\x72\x27\x8e\x2c\xc0\x3f\xee\x60\x2c\x07\x98\xc7\x1d\x0c\xcd\xf8\x6d\x95\x32\x62\xf8\x3b\x8d\x6d\x22\x1b\x3f\x73\x40\x43\x94\xe2\x87\xaf\xd1\xc4\xcc\x17\xa0\x17\x47\x58\x13\xe1\xac\xc8\x63\x01\x7a\xf1\xcc\xc1\xa1\x16\x0e\x07\x6d\x68\x2a\xa8\x62\xf1\x23\x7e\xa4\x37\xfa\x0d\x6b\x04\xb8\x36\x7e\x5c\xdd\x1e\xdc\x4e\xc5\xaf\xe6\x80\x98\x57\x33\x65\x86\xa3\xa8\x39\x69\x34\x62\x70\x2a\x31\x94\xf1\x93\x1d\x36\x8a\xb4\xec\x2e\x93\xd0\xb2\x66\x9a\x21\x6f\xc5\xc4\xa8\x16\x89\x54\xcc\x8d\x4c\x24\x52\x31\x24\x3c\x40\x2a\x2e\xbf\x9a\x9f\x5d\x96\xa1\x6b\x4d\x19\xd0\x22\xd2\xf6\x4e\x67\x3a\x8b\xd3\xf9\xc3\xc4\xcf\xe1\x22\x74\x0f\x70\x61\xbe\x36\xe3\x34\xf7\x44\x80\x24\xdc\xc1\xca\x0b\x90\x84\x77\x09\xba\x8f\xe5\x75\x92\xbd\x3b\x84\x0c\x9e\x24\xbd\x0e\x70\x82\x8f\xea\xbe\x1a\x39\x7a\xbf\x7a\xfd\xca\xca\xd4\xe3\x98\x30\x91\x82\xfd\xdd\xec\x10\x68\xd8\xfb\x30\x58\xc2\xaf\xa6\xd1\x8e\x54\xbc\x79\x99\x59\xbd\xe3\x67\x72\xca\x83\x11\x86\x94\xc1\x21\x9a\xa8\x32\xec\xfd\x74\xeb\x53\xef\xcc\x7a\x99\x47\x80\x06\x7e\xce\x03\x4e\x38\xc3\x95\x33\xd2\x62\xd1\x36\xf7\x95\xe4\x3e\x0e\x60\x7c\x8b\xf9\x4b\x43\x1c\xdf\x46\x9c\x76\xfc\xcc\xe3\xc0\xad\x4e\xfc\x96\xab\x68\xb7\x60\x33\xab\xe7\x0b\x07\x2c\x8b\x28\x3a\x15\xff\xf8\x2c\xc2\xa8\x4e\x75\xff\xee\x0b\xee\xb2\xd5\x67\x88\x4f\xfe\x4e\x8a\xc8\xfc\x9d\xcd\xd5\xff\xb2\xf1\xc5\x0f\x5d\xae\xbb\x23\xae\x3c\x41\x8c\x1e\xc5\x6e\xfe\xdc\xdf\xf2\x96\xce\x62\x5f\x39\x64\xbf\x52\x55\x72\x32\x30\xb5\x92\x7e\x32\x7e\xc2\xeb\x57\xa6\x9e\x88\x0a\x6c\xc1\x01\x16\xef\xc4\x93\x27\xc0\xc9\x6d\x64\x6e\x8e\xdf\xed\x39\x71\x6b\xe3\x57\xd3\x3d\xe2\xb8\xcc\x60\x3c\x0e\xe0\x73\xf7\x47\xfc\x01\x9c\x4e\x0b\xc7\x8e\xa9\x12\x10\xac\xf8\xe9\x13\x1a\xf6\x83\xeb\x3b\x2c\x79\xf1\x93\x39\xb8\x19\xdf\x9c\x51\x3e\xc2\xad\x73\xfe\x3c\x71\x92\x67\xf7\xdc\x67\xde\x4b\x9f\x4f\xc7\x4d\x7b\x9f\xd5\xee\x3f\x00\x89\xdd\xbd\x2a\xbc\x70\x51\x06\x81\x3d\x7e\x79\x90\x82\x17\xb7\x19\xfb\xe1\x48\x3b\x5d\xf7\xb3\xe9\x3f\x8d\x17\x07\xe2\x73\xee\x07\xbf\xb2\x8f\xc5\x26\x51\x7c\x21\xac\x47\xea\x2e\xd4\x7b\x58\xda\xdf\x4f\x20\xb8\x06\xcf\x6c\x93\xe1\x73\x12\x81\x3d\x58\x30\x5f\x77\x47\x7c\xd1\x2f\x86\xd2\xe4\x1f\x44\xc7\x8f\x84\x73\x5d\xf6\x36\xd5\x8d\xe2\x3f\xd6\xc5\x94\x1e\xc5\x1d\xeb\x70\x37\xd9\x14\x53\x35\x40\x7a\x3d\x9a\xdc\x05\x40\xd7\x22\x31\x3e\xaa\xf4\xac\xfa\x87\x57\xd5\x34\x82\x6f\xca\xc1\x9d\x59\x1c\xda\xba\x90\x92\x03\x54\xd5\x00\xf3\x3c\x00\x55\xdd\xf5\xfa\x55\xa6\x33\x63\x15\x20\x7a\x98\x63\x03\x28\x55\x13\x1d\xc7\xd1\xe5\x85\xce\xa8\x79\x81\x97\xc5\xb5\x82\x71\x43\x15\x20\xae\xee\xcf\x18\x23\x9e\x2a\x60\xe4\xc4\x41\x62\x60\xb0\x4e\xe2\xe8\xd2\xfc\xea\x0b\xb7\x82\xcb\x67\x37\x0a\xd4\xe5\xd0\x3e\x56\x2d\x2d\xcd\x73\xb8\x23\x11\xd1\x69\x10\x9f\x14\x00\x63\x02\xbc\xd5\x0a\x18\x71\x00\xb7\xda\x49\x59\x15\x87\xba\x42\xf8\x3b\xa9\x34\xa7\x15\x79\x01\x37\x2c\x4c\x84\x87\x1d\x1f\x4e\x02\xdd\xc0\x4b\x12\x97\xfe\x38\x42\xfe\xe4\x1e\xdb\xf4\x52\x7b\x48\x1c\xd3\xd9\x71\x0e\xf0\x59\xec\x2e\xc7\x94\x0e\xdb\xd7\xa9\x18\x67\x71\x52\xe6\x01\x96\x1c\xc7\x4c\x27\x49\x9e\xd5\x5f\x20\x46\x07\x86\x2e\x9c\x16\xe2\x48\x19\xdd\x93\xb3\xa9\x67\x45\xcd\x8f\x83\xeb\xa6\xee\x86\x5b\x9e\x15\xd7\x92\xec\x77\x84\xa0\xc4\xb1\x72\x6a\xd9\x62\x4b\x36\xe7\x02\xe0\xbb\x51\x3d\x05\x67\x8e\xe3\xaf\xf8\x8d\x38\xce\xe2\x97\x74\xed\x64\x2c\x4e\xaa\x74\x15\x92\x75\xa4\xc4\xed\x99\x46\xe2\x26\xd4\x21\x84\x2b\x5d\x88\xdc\x71\x5c\xfa\xdf\x2e\xba\xa6\x64\x3d\xe9\xcd\xa5\xa4\xeb\x88\xf1\xbb\x00\x60\x21\x8e\x2d\x4c\x4f\xd4\xb4\x38\x14\xa0\xe1\xff\x87\xf9\xe9\x97\xa7\xf5\xe6\xb2\xc6\x9a\x6e\x6b\xf5\x77\xf5\x26\x8f\xba\xce\xf5\xcb\x43\x75\xdb\x04\xbd\x25\x99\xcc\xb2\x4f\xdc\x0d\x75\xe7\xf1\x51\xaf\x77\x63\x29\x7d\x4f\x3f\xea\xec\x63\x3f\x52\x71\x70\xe7\xe3\x43\x01\xa0\x47\x1c\x8f\x1c\x1e\xf1\xf2\x78\x5c\x92\xe6\x3f\x12\x29\x3b\xb2\xc9\x6d\x6b\xee\x76\xe2\xc4\xbb\x7b\xe3\xd5\xc0\xc2\x90\xcc\x13\x63\xb5\xc4\x8a\x91\x21\x37\x0e\x85\xea\x65\x59\xc3\x96\xe9\x2b\xe8\x65\xd5\x25\x37\x6d\x1d\x2a\x56\x00\x49\xda\x49\x98\x16\x20\x8f\xee\x2e\xd1\x02\x17\x2d\xdd\x93\x89\x2f\x7e\x97\xc0\x7d\xb6\xe0\x37\x84\x8d\x48\xac\x30\x5c\x11\xe3\x12\x40\x8f\x1e\x0d\x40\xed\x28\x9b\x80\x57\xdc\x11\x43\x0c\xd1\x09\x5a\x5e\x80\x15\xda\xc9\x5a\x1e\xe0\x83\x76\xb2\x72\x47\xd1\x85\x01\x13\x40\x08\xfe\x39\x30\x74\x47\x31\x48\x1a\x45\x31\x44\xff\x14\xb2\x3f\x8a\x42\x2f\x27\x02\xc4\xcf\xdd\xba\x5f\x7d\x16\xa1\x45\x83\xa9\xd0\x93\xa3\x10\xf8\x8c\x1f\x58\x80\xd3\x59\x49\x3f\x13\xc5\xf8\x29\xa2\xeb\xa3\x90\x20\x9e\xac\x46\x51\xb8\xf5\x20\x03\x73\x94\x14\x75\x91\xc9\x00\xed\xec\xe4\x06\x8e\x82\xa8\x8b\x67\x62\x80\xd9\xb9\x47\xdb\x78\x21\x49\x2d\x32\x02\x00\x9e\x55\x11\x5d\xfc\xce\x86\x57\x65\x08\xe0\x39\x95\xa3\x4a\x02\x8b\x2d\x8b\x13\x61\xe7\x2c\x92\xde\x8d\xb8\xc4\x00\xa7\x73\x17\xe7\x23\x53\xaf\xfc\x9c\x39\x53\xbd\xa2\xa6\x46\x31\x6e\x1a\x35\x35\x00\xea\xec\xa4\x26\x0d\x70\x3a\x2b\xb9\xc3\x02\x9c\xce\x8a\x2f\x45\x80\xcd\xd9\x01\xf6\x0c\xb0\x39\x23\xe7\xd3\x68\x6a\x94\xd1\x00\x75\xb3\x2a\xea\x00\xba\xb9\x3b\x42\xd7\x7b\xae\xb3\xff\xec\x89\x26\x91\x66\x94\x4d\xef\xc3\x33\x2d\xd0\xe6\x42\xe9\x0c\x80\x36\x05\x24\x08\x80\x36\x77\x55\x74\xca\xf4\x29\x4e\x42\xcf\xc6\x99\xe9\xfe\xc1\x75\xf9\xc8\x1c\xf1\x68\xbf\x21\x04\x67\x85\x08\x96\xcd\x20\xda\xaf\xfb\x91\xdc\xc9\xd5\xe7\xce\x84\xbb\xea\x00\x8d\x73\x97\x9e\x7f\xd1\xbd\x02\x9b\xe8\xd9\xa6\x8c\x13\x11\x0e\x78\xce\xfd\x42\x37\xc1\xdf\x1e\x4e\x11\x36\x25\x32\x68\x46\x89\xdc\xbe\x4c\x6a\x28\xbd\x38\x16\x80\x3b\x8b\xdd\xc7\xaa\xc4\x65\x57\x80\xc8\xd9\x87\xbd\x0c\xc5\x04\xdb\x23\x30\x8b\x54\xac\x51\x30\x30\x91\x6d\x31\x80\xe7\xec\x24\x7a\x0c\x20\x39\x77\xff\x98\xf8\xcd\x7d\xfa\x70\xfb\xe1\x31\x7f\x28\xc3\x95\x34\x17\xd9\xde\x94\xd3\x3a\x8c\x65\x5d\xb4\x91\x56\x21\x27\x72\xb1\x7f\x5c\x76\xf3\xa6\x71\xe9\x12\x45\xa3\x0e\x02\x59\x39\x2d\x4d\x81\xd3\xc6\xfd\x46\x22\xd3\x7d\x81\xee\xc1\x3a\x8a\x01\xcb\x91\x2f\xd9\x11\x1a\x27\xb7\x09\xfe\x4d\x51\x2e\x79\x94\x7d\xbf\xe4\x04\x0c\x8a\x3b\x94\x21\x69\xb8\x54\xb2\xa6\x2f\xf8\xf8\x17\x3f\x5a\x7c\x64\x4d\x12\x2f\x5a\xc0\x56\x53\xf1\xf7\x8f\x72\x2b\x2d\x3b\x56\x7d\x17\x5c\x01\x82\xb4\x86\xa4\x84\x3b\x90\x1c\x2a\xc6\x9a\xe1\x41\xcb\x3b\x90\xe9\x47\xaa\x9a\x88\x63\x20\x6b\x1e\x93\xa4\x06\x01\x9c\x66\x1f\x76\xca\x94\xea\xf9\xec\x28\xe8\x94\xc8\x26\x88\x59\xc5\xbc\xe9\x0a\x2b\x82\x60\x86\x8b\x04\xee\xe5\x0f\x09\xa3\x98\x18\x55\x71\x03\xb0\xcb\x0e\xd8\x62\x00\x76\xb9\xb5\x3e\x5f\x6c\x82\x09\x34\xe6\x58\x5b\x46\x21\x41\x7a\x75\x77\xbe\xb8\x9e\xe4\xef\x38\xc7\xb8\xa7\x04\xb5\xcc\xf6\x92\x91\x54\x5f\x58\x63\x87\x0a\x23\x51\xb9\x2b\xf0\x91\xe1\x26\xfc\x54\x56\x10\x81\xca\x97\xfe\x56\x96\x36\xe6\x9f\xb6\x3f\x72\xbd\x7a\x30\x3e\x4f\x3c\x25\xaa\x99\xd3\x35\x3c\xd4\x64\x25\x90\x12\x60\x2a\xfb\xc8\x3f\x2e\xbf\xf2\x0f\xa5\x6e\xbf\x3a\x24\x8f\x90\xf9\x44\xa3\x5c\xf9\xc2\x0a\x56\x9f\x1d\x48\xe5\xd9\xa0\x80\xc9\x33\xac\xc0\x6a\xb1\xab\xe0\x25\x11\xf5\xd0\xe4\x98\x85\xf7\x56\xe5\x7e\x22\x6a\xc9\xee\xf2\x15\xf9\xca\x35\x87\x54\x52\x71\x90\xbc\x31\x00\xb2\x3c\x06\x37\x7c\x21\x92\x65\x23\x49\x41\x00\x65\xd9\x41\xc9\x0b\x90\x2c\x0b\x9e\x2e\x01\x90\x65\x25\xe0\x35\x6a\x71\x4f\x65\x69\xce\xcc\xf4\xf9\xa3\x83\x7c\x94\x6a\x04\x82\x0a\x08\x97\x7b\xd8\xbe\xb8\x9a\xf1\xd7\x1d\x6f\x54\x72\x96\x13\xe6\x1a\xe0\x62\xee\x2a\x7c\x11\xf8\xcd\xea\xd8\xfb\x44\x1e\x45\x4d\x56\x86\x0c\x00\x2c\xe6\x7e\x61\x52\x31\xe0\x90\x19\x26\xc0\xc5\x3c\x8a\x03\x13\x59\x9a\x6c\x02\x01\x2e\x66\xf1\xfc\x57\x98\x17\x99\x76\x02\x18\xcb\x4d\x67\xa9\xb6\x6b\x1e\x84\x55\x83\x57\xb9\xdb\xe0\xb3\xae\x15\x01\xb2\x04\x2c\x65\x27\xcb\x48\x00\x4b\xb9\xcb\x33\x4b\xc4\x5c\x55\x67\x6c\xe8\x90\x6b\x17\x8d\xb9\xd5\xa0\x06\xe0\x64\x27\x29\x47\x00\x38\x59\x8e\x65\x23\x38\xbb\x0f\xd7\x74\x28\x54\xc3\xa0\x6b\x5a\x6c\x10\xdb\x2a\x79\x3e\x09\xec\x0a\x11\x27\xe7\xcf\xfd\x61\x5a\x0d\xd8\x04\x20\x93\x7d\xe4\x33\x76\xc4\x2c\x40\xdb\xdd\xef\xb3\x6d\x76\x20\x77\x12\x64\x77\x08\x30\x26\x3b\xc9\x21\x42\x8c\xc9\x46\x66\x83\xa8\x72\x89\x65\xa7\x66\xb6\x4d\x1b\xc6\xef\x12\xb1\x1f\x62\x49\x72\x5f\x14\x40\x49\x56\x39\x6c\xd5\x23\xbd\xfa\xec\xd1\x9d\xbe\x60\x9d\x82\xb6\x57\x13\x7a\x72\xb5\x18\x40\x46\xee\x17\xfe\x49\x9e\x01\x67\x11\x33\x72\x82\x53\x11\x35\x0d\x3e\x30\xf5\xea\xb5\x02\x94\xad\xea\x23\x97\xe7\x67\xc9\x21\xa7\x5f\xb9\xd3\x11\xc3\xc1\x7d\xdc\x6b\xc5\x3f\xa7\x46\x34\x0f\x8d\x89\x32\x88\x8f\x0e\x40\x1d\x0f\x7d\xf4\x42\x54\x47\x2d\x0f\xa2\x3a\x1e\xcb\xa9\x38\xa5\x43\x1e\x28\xb1\x1c\x97\xc3\xbc\x10\x1e\x60\x80\x15\x4b\x0e\x70\x6d\x01\x96\xe3\xd1\xc8\x82\x16\x55\x4b\x0e\x19\xce\xa2\x5e\x6e\x7a\x8f\x1a\x0a\x8c\xf0\x69\x01\xe6\x63\x27\xdd\x41\x54\xee\x0c\xda\xbf\x3f\x9e\xbd\xda\xae\xf0\x25\x8b\xf7\x04\x00\x00\x49\x2a\x83\xa8\x70\x21\x82\xc3\x02\x9c\xc7\xfd\x11\xfd\xbd\xdd\xe7\x4e\xeb\xed\x66\x61\x56\x6e\x7c\x69\xdc\x50\xb7\xee\xbe\x7e\xe3\x3e\x75\x7f\xa4\xfe\xe3\x0c\x13\x7b\xf5\x93\x5a\xc9\x9e\x3c\x7d\x18\x92\x1a\x69\x0a\x02\x00\xc8\xa9\xd9\x2b\x01\x20\x97\x4b\x62\xc0\x95\xfb\xc6\xa4\x99\xd3\x0d\xf5\xe4\x8c\x52\x17\x6e\x6e\xc3\x71\x70\xcd\x80\x4b\x50\x08\x00\x39\x7f\x6e\xc7\x97\x88\x75\xb7\xf6\x9b\x51\xf8\xf4\xea\xf5\x90\x30\xf0\x37\x07\xee\x1f\xf2\x02\xb4\x98\xfa\x66\xeb\x74\x8b\x14\x19\x04\x0e\x07\x50\x90\x15\xcf\xea\x00\x09\xb2\x93\x48\x21\x2a\x86\xab\x31\xff\x0a\x61\x0b\x81\x21\xdb\xc4\x58\x2c\x32\xa4\x16\x44\xd0\x20\x77\x67\x58\x2b\x1c\x00\x86\x7c\xe5\x73\x3f\xa0\x2d\xd5\xe4\x7e\xa8\x48\xf5\x53\x7a\x74\x15\xf5\x06\x20\xf8\x2c\x2a\xf9\x33\x96\xdd\xff\xe4\xe8\xac\x56\xd3\x95\x8d\xfb\xb3\x68\xbf\x9c\xb1\xc1\x8b\xae\xf3\x95\xe7\xec\xe4\xe4\x85\x19\xcb\x3f\x06\x39\xe5\x7c\x86\xc4\xb0\x9b\x41\xa9\xac\x9a\xa2\x9a\x5e\xe9\x5c\xb6\x47\x3b\x94\x69\x99\xd5\xa6\x97\x1b\xd8\x26\xd1\x4a\xba\xb8\xd3\x46\x31\xc8\x83\xaf\x0c\x4f\x76\xbe\x9b\x6c\x8e\x13\x07\x68\xe4\xd4\xc4\xd9\xe4\x72\xc4\x6c\x07\xa8\x91\x93\xbc\x64\x01\x68\xe4\xd4\x5a\xda\xd2\x76\x16\x96\xf6\xc0\x1c\x36\xee\x86\x5a\x16\x47\x88\xb3\xf3\xaa\x5e\xb0\xa2\x56\x09\xda\x81\x0c\x34\xdd\xc2\x1d\xf8\xe6\x5d\x15\x6f\xa3\x00\x4b\xb2\x12\x2c\x1a\xcd\xbb\x87\xe9\x88\xf0\x3d\x23\xb7\x41\x80\x1f\xd9\x49\x48\x10\xad\x29\x7b\x5a\x2b\xb7\xef\xc0\x12\x45\xcb\x6b\x08\x48\x48\x6b\x39\x07\xbe\x24\x57\x61\x99\xc4\xe9\x22\x3a\x39\xc0\x9f\xdc\x2f\xac\x66\x73\x03\x20\x31\x35\xbd\xcc\x88\xd9\x0d\x41\x27\x27\x98\x19\xd1\xd2\xbe\x86\x9a\xdc\xba\xd3\x4b\x33\x3d\x6b\x66\x82\x70\x26\x1f\x8e\x31\x75\x2c\x4b\x5f\x78\xe0\x5b\x2d\xc2\x4c\xf8\xfd\x63\x13\xf4\x04\x15\x4b\x65\x02\x24\xca\xae\x4e\x06\x10\x65\xf3\x3a\xa6\x8d\x24\xbf\x74\x83\xcb\x8d\x91\xcf\x8d\x94\x3c\x3e\x0f\xbb\xc4\x02\x0e\xbb\xe4\x33\xb3\x0b\x8b\x68\x23\x27\x81\xe9\x19\x3a\xc4\xe6\x3f\xb2\x15\xf7\x37\x17\xf6\x84\x8c\x44\x93\x9d\x3a\xa1\x91\x33\x45\x83\xa1\xb8\xe5\x3a\x13\xaa\x2c\x41\x10\xd1\x92\xc8\xf6\x68\x2a\x54\xf0\x97\x86\xd9\xae\x4d\x37\x80\xdc\xf1\x70\x1b\x1b\xf2\x85\xde\x0e\x3c\xe5\xfe\x83\x6a\x27\xbb\x75\xf8\x11\x14\x1d\x1e\x92\xb8\x95\x1a\x8c\xc4\xad\x6c\x84\x02\x07\xb8\x95\xfb\x1f\x1a\x59\xb9\x98\xcc\x83\x77\x1b\xe0\x8b\x44\x5b\x9e\x09\xa4\xce\x06\x5a\xf2\xc4\xb7\x28\x5a\x9a\xee\xdc\x5b\x86\x5d\x91\x65\x37\x00\xaf\xec\x44\x95\x07\xe0\x95\x53\x3b\x7e\x3b\xb3\x7d\x5a\x39\x73\x5c\xb4\xaf\x4e\x66\xf7\x49\x4a\xd9\xc8\xfc\x14\x4d\x1e\x7a\xfc\xfe\xbc\xf7\x00\xe6\x72\x2f\x12\xdd\x51\xaf\x9b\xb6\x9a\x23\xa0\xd3\x19\x00\xed\x3c\x9f\xd2\xe0\xc3\x17\x57\xbc\xda\x1f\x0c\x19\x5e\xb1\x36\xb3\x6c\x68\x4d\x02\xf6\xf2\x50\xa6\x6e\xc9\x6e\x11\x66\x45\xb3\x9c\x24\xa7\x8d\x76\x65\xcd\x74\x80\x98\xe6\x79\x48\x7b\x04\xd8\x92\xde\xe8\x97\x4e\x44\x6a\x34\x21\x2d\x88\x42\x0d\xc0\x2a\x77\x37\x7d\x61\x5f\xc2\x0b\x1b\x8c\x51\x4f\xd6\x68\x37\xbb\x0f\x36\x07\x58\x65\x29\x79\x0e\x60\x80\xc5\xdb\x47\x00\x2a\x3b\xb1\xbd\xd1\xb0\x00\x4e\x6f\xd3\xc0\xa4\xdc\x2f\x7e\x25\x81\x45\xb0\x6c\xe8\x6e\xc5\xfb\xc6\x86\x09\x90\x5c\x6a\xd1\xbc\x9a\x9f\x6e\xe5\x27\xe7\x85\x7f\xd4\xea\x60\x34\x80\x5a\xd6\xee\xb1\x25\x6f\x24\x31\xb0\x21\xa8\xe5\x52\xb3\x6d\x3a\xb9\xd9\x5f\x0c\x85\x43\x66\x22\x32\xd6\xcf\x7d\x41\x72\xe9\x21\x63\x21\xb9\x64\xf1\x4e\xb2\xbd\x39\xa7\x56\xc5\x7e\xf3\x4c\xbd\xcc\xe9\x21\xe1\xc5\x2d\x6e\x48\x90\x53\x27\x44\x28\x06\xc9\xb2\xaa\x7a\x37\xf5\x43\x4f\x88\x2c\xd2\xb3\xfd\xe5\x1a\xd2\x91\x4f\xdd\xad\xf9\xe2\x22\xb8\xd4\x19\x08\xcd\x6e\x07\xbe\x72\x7a\xd9\xd3\x81\xd0\x22\x60\x2d\x40\xb2\xec\x44\xb5\x85\x40\x96\x84\x9c\x45\xd7\x47\xce\x2b\xd0\x4e\x80\x15\x18\x62\xd1\x31\x41\x12\x1b\x16\xfd\xf7\xf2\xcc\x37\x87\x0a\x33\x9b\xa1\x13\xea\x5c\xbc\xe8\x04\x06\xb3\x13\x91\x15\x1d\x8f\xb7\x1f\x99\xd8\x42\x14\xcc\xa5\xd8\xde\x0f\xb5\xba\x69\x11\xc4\xd0\xea\x57\x7b\x76\x35\x26\x03\x82\x59\x01\x44\x09\x80\x2f\x3b\xe1\x5c\xd1\x45\xc6\x42\x94\xea\xe6\x04\x01\xfd\x25\xba\xa9\xa6\x95\x15\x01\xc4\x3c\xaa\x82\x7e\x17\x1a\xcb\xee\xc2\x83\x27\x40\x2d\xd1\x71\x98\x23\xe9\x4e\x08\x8f\xf9\x2b\x76\x8a\xfb\xfc\xe2\xcd\x6a\x17\x02\xc3\x39\x04\x1b\xab\x00\xad\x11\xe0\x66\xee\xba\xec\x0b\x60\x1c\xd5\x3f\x9c\x44\x66\xba\x90\x6c\x15\x9a\xd4\xeb\x8f\xeb\x4b\x9f\x49\x6f\x05\x83\x02\x36\x33\x4f\x4a\xdf\xbc\xb9\x48\xab\x40\xd0\xdc\xad\x31\x70\xbc\x01\x34\xa8\x01\xa1\xd9\x48\x44\x15\x40\x68\xee\x8f\x7c\xc1\x54\xcb\x76\x11\x42\xb3\x3a\xec\x6a\x8f\x6c\xcd\x23\x83\xf4\xdb\x5b\x4e\x21\xa5\x9b\x47\xd6\xe2\xe4\x97\x22\xee\x29\x3a\x36\xd1\xf8\x33\x75\x55\x00\xb6\xb9\x6b\xa0\xa1\xe6\xd9\x2e\x56\xb7\xa8\x82\xee\xb7\x93\x67\xe6\x0d\x53\xaa\x26\x93\x2e\x50\x46\xfe\xce\xe6\x3b\xec\x64\x9e\x78\x86\x22\x4e\x86\x5b\xbd\x67\xef\x69\xae\x73\x89\xe2\x92\xa7\x60\x50\x7d\x21\xf5\x81\xcb\xd4\xed\xa0\x5b\xa6\x2b\xdc\xd1\x46\xb7\x4f\x4c\x35\x1e\x7b\xe1\xea\xe3\xb1\x87\xef\x72\x80\xc8\x59\x34\xa4\x80\xc8\xb9\x67\xd1\x5a\x3f\x6b\xa5\x26\x72\x59\x12\x36\x1d\x1d\xd0\x8c\xe2\x2d\x2e\xf0\x9c\x15\xc7\xe9\xe8\xc3\xd9\x65\x6a\x44\xd0\x40\x58\x06\x8d\xd3\x34\x1b\x01\x1a\x67\x0f\xe7\x72\x38\x7d\xfe\x4e\xc2\x7f\xbb\x81\x13\x7b\x38\x1c\x14\x6b\xc3\xfd\xa2\xe3\xde\x17\xd9\x23\xf9\x1f\xfb\x0b\x4f\x08\xd5\x9d\xae\xc2\x4d\xde\x8a\x00\xc9\x73\xbf\x50\x02\x09\x41\xe3\x33\xb0\x9e\x3d\xf2\xb9\x4b\xd9\xfc\x88\x5d\x51\xac\x0a\x60\x24\xb7\x33\x6a\x79\x38\x66\xaf\x05\xc9\x52\x10\x02\x7e\x4e\x3c\xcb\xa2\x63\xb1\xf5\xc2\x20\xf1\x3e\x49\x33\x10\x1d\x2b\x6d\xb8\xa6\xe4\x35\x29\xde\x4f\x03\xeb\xd9\xc3\xed\x34\x59\x2e\xe7\x69\xcb\x1a\xd5\x5b\x65\x10\x3e\x77\x13\xd6\x24\x2c\x90\xcf\x1f\xcf\x54\x94\x32\x08\x64\x18\xbc\xcf\x43\x63\x63\x27\x0f\x76\xb8\x6b\x56\x36\x4d\xe9\xa5\xad\xd2\xd3\x47\xd8\x77\x38\x51\x4b\x32\x6c\x47\xc8\x83\xad\x49\xa0\x9f\x39\x9d\xf4\x16\xb7\xbd\x70\xc5\x84\xc0\x50\x4b\x04\xbe\xb3\x87\x13\x02\xf3\x27\x8d\x66\x74\x0d\xb9\xe0\x2e\x46\x27\xa0\x5b\xcf\x1f\x00\x38\x6b\x73\xd7\x5d\xd6\x4a\x07\x35\xea\x4e\xa9\xdf\x65\xad\x34\x7d\x29\x48\xc1\xd2\x81\xdf\xec\x91\xb5\x2e\x08\x0d\xdd\xb8\x64\x6b\x4e\x2d\xd1\xdd\x3f\xf2\xd2\x07\x58\x9c\x1d\xff\xb8\x00\x8b\xb3\x24\xd9\xbf\x93\xda\xf2\x11\x4e\x7b\x21\xed\xbb\xed\x14\xf3\x71\xe7\x50\xe9\x21\xbe\xf0\x5d\xa2\x78\x2b\x02\x78\xa0\x6f\xaf\x9d\xe9\x20\x62\x46\xe4\xef\x3a\xe8\x77\xab\xa2\x1f\xf0\x7c\xe1\x37\x87\xaa\x35\xf0\x9b\xbb\x2a\x5e\x30\x10\x47\x3e\x57\xff\xa0\x71\xe0\x2c\xc8\x99\x19\xfd\x81\x31\xb9\x5d\x1e\x4d\x59\xf9\x87\xb7\xa2\x96\x66\xaf\xfd\x89\xbe\x11\x40\x73\x56\xef\x72\xfa\x93\x3d\xb6\x6a\x15\x87\xfc\x07\x0e\x06\xe7\xee\xaf\x53\x87\x74\x00\x80\x67\x5d\xf6\x18\x31\x25\x2c\xf0\xe6\x7a\x32\x2b\x6a\xf0\x87\x8b\x2b\x52\xe7\xb2\x84\x04\x13\x99\xb5\x13\xcb\x3d\x8f\x2c\x22\x91\xf7\xa0\x02\xd7\xa5\x3b\x0d\xb8\x9d\xfb\x2b\x8a\x10\x6d\xa6\xdd\x5c\xdc\xce\x36\xf3\x0f\xd6\xc1\x3d\xca\x9d\xa6\x2e\x4e\xc3\xbb\x4b\x12\x0d\xc4\xc0\xed\x4f\xc7\x24\x71\x3b\x87\x86\x8c\xa1\xef\xca\x91\x5f\xb9\x09\x86\x9f\xe5\x48\x3a\x2f\xfa\x18\x40\x10\x41\xe4\xec\xba\x8c\x8c\x54\xb4\x69\x7e\xe0\x13\xa8\xdf\x0d\xf0\x9c\xbb\x2e\x2b\x66\x4b\xb0\x74\x40\x72\xee\x7a\x69\x3e\x45\x12\x28\x88\x00\x9d\xf3\xb0\xe2\x43\x8e\x64\xc5\x47\x0e\x98\x9a\x0f\x2d\xa7\xc3\x7f\xe4\x37\x56\x8d\x37\xa0\x6e\x26\x82\x6c\x16\x7d\x2d\x00\xd9\xec\xfa\x1c\x00\xb2\x79\xcc\xc3\x8e\xe1\x7a\x2f\x36\x5b\x80\xb2\xd9\xbd\xa7\x00\x65\x73\x7f\x45\x23\x29\x4a\x54\xff\x51\xc5\xb5\x97\xdc\x98\x7a\x09\x3f\xaa\x7a\x9b\xad\x68\x91\x06\xdb\x24\x04\xca\x8c\x7c\x56\x09\xb0\x93\x26\x94\xee\xf9\x0f\xb3\x87\xb6\x0e\x36\xe6\x2e\x4e\x5d\x4d\x59\x1d\x9a\x34\x44\xa8\x00\x02\x27\x40\xc4\xac\x8a\xfd\x22\x62\xb6\x69\xf7\xb1\x3a\x17\x10\xca\x62\xa4\xff\x8c\xbd\x54\x3e\x08\xbf\x52\x07\xc9\x17\x35\x6c\xdb\x4f\xa5\xde\x9d\x00\xaf\xcf\x4e\xca\xdf\x73\xf6\xb8\x36\x95\x90\x8d\xee\xb4\x42\x13\x47\x1f\x5c\xc6\xfa\x07\x84\x2c\x2c\x90\x13\x49\x55\xa8\xee\x91\x05\xf2\x0c\x30\xaa\x4c\x18\x8d\x72\x30\x46\xce\x17\xe5\x65\xb3\xe1\x57\x14\x47\x33\x1b\xc3\x35\x71\xb5\xf4\x2c\x04\x4a\x26\x44\xa9\x6c\xd3\x89\x44\xe5\xf6\x36\x6d\xa4\xca\xed\xa8\x88\x1d\xf3\xae\x0b\xcc\xca\xfd\x07\xb3\x25\xdf\x84\x05\x0f\x79\x25\x34\x15\x98\x4a\x83\x61\x03\x98\xca\x2a\xf1\x02\xa5\xb2\x93\xbe\x24\x46\x70\xfd\xe3\x7c\x06\xc9\x72\x30\x3a\x01\x51\xd9\xbd\x1b\x11\xa1\x72\x68\x3d\x1b\x13\x9b\xa4\x3d\x22\x7b\x98\x57\x1d\xc0\x55\x56\x35\xdf\x91\x5c\xb6\xfa\x87\x29\x6d\xe9\x1d\xe9\x58\x7e\x7f\x86\x7a\x84\x20\x97\x5e\x4e\x0c\x54\xff\xc8\xd6\xa1\x7b\xc8\x64\x43\xf3\xb7\x53\x40\x7c\x38\xe1\x30\x31\x56\x2e\x32\xe3\xe3\xf6\x54\xcb\xfb\x58\xb8\x24\xba\x7c\x0b\x8f\xa7\x2c\xac\x29\x24\x6b\xd5\xc6\x45\xcb\x4b\x31\x0c\xfe\x36\xf4\xd7\x01\x51\x20\x46\x2a\xfa\x18\x46\xc0\xab\x9c\xba\x17\x8d\x8c\x1c\xb7\xc1\x53\x22\x90\xff\x30\xbb\xd2\xb0\x53\xf2\xe2\xbe\xb8\x98\x6a\x97\x89\xe4\xcf\x24\x81\x8d\x71\xa9\xfc\x3b\xa8\x8b\xfc\xcb\xd2\xc6\x2b\xab\xa5\x8d\x2b\xf1\x19\xf7\xf3\xad\x74\x08\x57\x1b\x30\x51\xcd\xe6\x43\xc7\x1d\xc7\x71\xbb\x57\xed\xd4\x4d\x6a\x37\x84\x15\xf1\x27\x8b\xdb\xf3\xf6\xd0\xb9\xd9\xf0\x7a\x2c\x1e\x0e\x43\xc8\xf4\xb2\x18\x66\x13\x9b\x76\x04\x8e\xaa\x65\x7e\x24\x47\x95\x62\x3d\x76\xc4\x67\x4f\x8d\x7b\x0c\x8c\x4a\x0d\xf3\xe3\x01\xff\x1c\x6b\x14\x78\x95\x7b\x7c\xfe\x71\xa1\x9f\x59\x9a\xbc\x5f\x1e\x4c\x38\xa0\x56\x6f\x30\x2a\x6b\xee\x90\x57\x3a\xe4\x4e\x07\xec\x41\xe3\xf4\x78\x75\x7d\xa2\x85\x17\x09\x5e\xc2\x83\x9d\x5b\x33\x33\x98\x96\xbb\x7b\xfe\x11\xfc\xc1\x7a\xbf\x52\x5a\xcf\x15\x11\xdc\xda\x7c\x87\x80\x10\x3a\xf1\x25\xc0\xe5\xb4\xe3\x9b\x7d\x56\x32\x5f\xc6\x30\x6c\x5b\x97\xbc\xf1\x79\x9c\x5c\xe4\x0f\xea\x84\x22\x05\xc2\x65\x4d\x0a\xfa\xa9\xaa\xc1\xbc\x85\xb5\xcc\x5d\xf1\xe5\xe4\xd0\x45\x5c\x85\xf4\x33\x1c\x5f\x36\x4e\x4f\xb8\xc9\x55\xf3\x01\xb4\x72\x97\x18\xbc\x80\xff\x3a\xfd\xa3\x51\xba\xf2\x9c\xed\x4d\x5e\x18\x79\x96\x9e\x3c\x1f\x3c\xe3\xb7\x17\x16\xc8\x8d\x1e\xbc\x5c\xba\x95\xf1\xac\x97\x41\xe7\x59\xa5\x86\x33\x13\xc9\x46\xd1\xd9\x01\xa1\xdc\x13\x4a\xa7\x0e\x2d\x43\x98\x12\xe2\x50\xa8\x9f\x96\x71\x80\x16\x51\x34\xe6\x0c\x08\x43\xe9\xec\x02\x43\x59\x64\x69\xc0\x50\x56\x1d\x74\x22\xaf\x84\xd9\x54\x51\x1c\xac\x1f\xc9\xd1\x20\xd1\xc1\xcd\xaf\xd6\x6e\xd0\x26\x77\xdb\x96\xd0\x5e\xc6\xd6\x8b\x22\xed\xe7\xc4\x86\x09\x9d\xa7\xad\x54\xc9\x0d\xbb\x0f\x90\xc9\xfd\x0f\xcd\x54\x97\x0a\x52\x1e\xa9\x49\xff\x69\xf3\x8b\x2a\x23\x63\xf8\xf8\x21\x15\x3d\x44\xc0\x99\xdc\xd5\x31\x7e\xd8\xad\x86\xc1\x10\x72\x1a\x0c\xb5\x88\xe4\xa3\x70\x83\x30\x75\x73\x58\x82\x45\x2d\x3e\xcb\x46\xd9\xce\x02\x45\x2e\xcd\x24\xd1\xb3\x2e\x26\xb6\xbb\xeb\x39\xad\x81\x42\xab\x9d\x3c\x50\x68\x35\x24\x47\xcf\x7d\xe7\x4b\xf6\x91\x17\x94\xd5\xc1\xe9\x03\xe1\x31\xa6\x1b\x61\x00\x33\x86\x72\x10\x43\x69\xce\xd5\xc6\x91\x54\x65\x15\xe8\xc7\xaa\x7e\x1f\x79\x41\xec\xb2\x70\x41\xac\xf1\x1d\x4c\xc8\xcd\xe8\x6d\xc2\x4e\xf9\xac\x60\xe7\xa2\x84\x24\xa1\xfb\x52\xec\xae\x2f\xac\x3d\xe2\x57\x98\x3d\xd3\xc0\x11\xf0\x1b\xf7\xc8\x19\x87\x91\x67\x3a\xce\x80\xe6\xd8\x41\xc1\x08\xd0\x1c\xbb\x26\x6d\xd1\x1c\xc3\x58\x8e\x48\x67\x20\x38\x8a\xe0\x8c\x1a\xa8\x01\x64\xec\xa0\x41\x04\xb0\x8b\x5d\x23\x74\x98\x45\x4c\x13\x68\x78\x61\xab\x6f\x01\x48\x8b\xbb\x2a\xff\xf1\x6c\x60\x3b\x8a\x65\x5d\x8c\x57\x3f\x7c\x32\x28\x07\xc0\x89\x5d\xb3\x75\xa8\x36\x16\x47\x85\xaa\x38\x8b\x7d\x3c\x09\x75\xb1\x8b\xa2\x21\xe9\x7f\x08\x74\xe2\x9e\x54\xc6\x7e\x66\xc6\x71\x8b\x08\xe4\x6f\x91\x07\xa9\xce\xdf\x3d\x29\xc3\xe2\x6e\x27\x68\x28\x70\x8b\x5d\xb3\x37\x68\x8b\xc5\x44\xab\x01\xc0\x62\x2d\x1e\xc7\x4b\x71\xc1\x06\x2f\x98\x02\xa2\x43\x64\x1c\x98\xab\x70\xb9\x56\x4c\x36\xf7\xbb\xda\x75\x13\x49\x51\x6f\xc6\x00\xe4\x40\xe3\x35\x80\x89\xbb\x5a\xfe\x20\xc7\x89\x36\xde\x48\x47\x21\xc9\x8d\x6c\x0b\x7e\x26\x92\xe1\xd2\x4b\x11\x28\xc3\x5d\x9c\xaf\x9e\xec\xa2\xff\x58\x17\x7d\x97\x57\x69\x76\x00\xb2\xb0\x6b\x75\x00\xb2\xb0\x2a\x05\x82\x58\xd8\x35\x0f\xc4\x9b\xfb\x84\x06\xd1\xd6\x72\x7a\xd0\xd6\xa6\x04\xf8\xcd\x85\xa2\x89\xd7\x14\xa3\x7e\x24\x7d\xf1\x74\xbf\xa0\x8f\x22\xa4\x87\x81\x5f\xc3\xdf\x4f\x4b\x5b\xe2\xf6\xc5\xc6\x0d\xbe\xf0\x99\xed\x23\x35\x46\xbb\xd3\x40\x95\x58\x86\x53\xda\x20\x9e\x81\x2e\x99\xe0\x17\x16\x2f\x83\x22\x6f\x67\x25\x1a\x9f\xe6\x6d\x44\x0a\xe0\x08\x77\x83\x0c\x04\x5d\x4f\xe1\x1b\xa4\xc1\xf2\x5b\xf5\x2f\x0a\x08\xdc\xe0\x31\x41\xa0\x8a\xf9\xcb\x11\x0f\x5e\x96\xff\x1c\xbc\x58\xb7\xcf\x8f\x7f\x14\x5e\xdc\x8e\x88\x25\xf3\x70\xd7\x41\x03\x27\xb9\xbb\x54\x49\xc1\x2b\x34\xc1\x43\x4c\x6c\xcb\xe0\x98\x07\xa8\x84\xbb\xaa\xca\x8b\x04\x18\x96\x37\x0b\x9b\x19\x62\x0c\x10\xe1\x94\xa1\x27\x10\x21\xa0\xfd\x31\x53\xa5\xcb\x7f\xc8\xac\x66\x7b\x18\x84\xb5\xbc\x4f\xfd\x90\x90\xc7\x04\x1f\x9c\xa4\x01\x8b\x59\x9d\x7c\x4e\x25\x78\x83\xd5\xbb\x6d\x20\x06\x05\x9f\x88\x99\xda\x19\x32\xe6\xc4\x0d\x68\xe9\x0f\x3b\x61\x32\xea\xc9\xc2\x07\xaa\x5a\x82\x0c\xb8\x37\x1d\x55\xa5\xda\x05\x8f\x02\x1b\xb0\x93\xda\x2e\xa6\x51\x5c\x1e\x4a\xb0\x01\x8b\xe0\x85\x01\x04\x60\x11\xd8\x2c\x80\xfd\x9b\x3d\x8b\x9b\x2a\x96\x93\x28\xee\x9f\xa9\xd1\x62\x26\x23\x81\xf9\x82\xd0\xb7\x3b\x49\xc7\xb0\x7a\x92\x0a\x35\x66\xcf\xa5\x62\x5c\xc3\xa9\x73\x49\x06\x2e\x5c\x36\x3f\xbc\x46\x5a\xfe\xe1\xee\x3e\xfc\x87\x10\xc7\xe1\x1f\xd8\x99\xd8\xe8\x09\xd6\xf7\xef\x05\xe2\x68\x83\x41\x0e\xbc\x7c\x46\x24\x40\x2b\x07\x85\x6f\x2a\xa8\x80\xbb\xd7\x55\x7e\xa7\x20\xfe\xc6\x57\x81\xb5\x97\xde\xb8\x20\xe7\x75\x15\xec\x89\x1b\x8f\x5e\x1e\x73\x66\xf7\xa8\x75\x5a\x13\xdd\xd3\xf5\xd3\x15\x94\x0d\x60\x29\x00\x50\x6f\x8f\x9a\x2e\x6d\x9e\x50\x9b\x5b\x8c\x0c\x1b\xe0\x4c\xc5\xd4\xa1\x07\x78\xb2\x98\x4b\xbc\x50\x9a\x5b\x80\x79\xc3\x19\xa7\x21\x5b\x32\xdc\x89\x51\x51\x45\x1b\x3c\xbd\x63\x92\xfa\x3a\xe6\xd2\x18\xb1\x6c\x4f\xbe\x81\x54\x00\xa4\xde\x2e\xcf\xcc\x62\x62\x54\xa3\x9d\xc9\x37\x5c\xd8\x53\x1f\x66\xea\x3a\xdd\x24\xd0\x0a\xa1\xf3\xbc\xb9\x9b\xa7\xad\xfb\xec\xe6\xc9\x3f\x70\x6f\x34\xee\x0e\x18\xbd\xae\x76\x2b\x8c\x5e\x78\x45\x36\xaf\xec\x09\x13\x74\xb9\x93\xa4\x00\x22\xfa\x8f\xfc\x8c\xcd\x0b\xdb\x01\x24\xef\x50\x41\x12\x24\x6f\x92\x54\x37\x00\xc9\xeb\xca\xe4\xd3\x8b\x4a\x3d\x86\x26\x51\x0e\x2a\x2f\xf3\xca\x45\xa0\x5a\xd5\x28\x97\x96\x9c\x59\x0a\xd5\x82\xe7\x91\x90\x2c\xe6\xad\xdd\x7f\xfa\x51\xee\x4f\x3a\x72\x27\x47\xf0\x1f\xe6\x41\x62\x40\xbc\xd8\x1c\x7f\x4a\x80\x33\xd5\x2a\x38\xe8\xbc\x73\xb9\x18\x3d\x91\x12\x64\xea\x0a\xc0\xf5\xba\x16\x80\x99\xbc\xca\x1d\xf8\x38\x45\x4e\x31\x17\xa5\x2a\x7b\x80\xeb\xed\x69\xa1\x37\x8f\x02\xbf\x44\x44\xc6\xe5\xee\xcf\x7b\x52\x0f\xdb\xe3\xbc\xb8\x59\xd2\x86\x08\xa7\x9d\xaf\x17\x0b\x88\x5b\x82\xe7\x29\x02\x02\x9e\x57\xb5\xa4\xcf\xbc\xde\x74\x62\x5e\x17\xc2\x02\x5c\xba\xc0\x68\x01\xc5\x3b\x1a\xe9\x2b\x62\x7e\xd2\x00\xc7\xfe\xd9\x79\xbf\xca\xfe\xd2\x06\x29\x9c\x1b\x61\xcb\x21\x12\x5e\xd3\x27\x06\xf0\xbb\x3e\xa5\x3a\xf8\xf6\x4c\x05\xcd\xf9\xe5\x48\x76\xbf\x96\x29\x24\xbd\xec\x5c\xa9\x12\x35\x9e\xb3\x95\xc9\x0b\xa3\x42\xec\x5b\x5a\x0a\x47\x96\xf0\x1e\x80\xaa\xc8\xdc\x31\x81\x74\x0b\xa0\xe8\xba\x3c\x45\x24\x3a\x85\x38\x20\xe6\xba\x14\x08\x88\xb9\xdd\xc4\xe2\xc5\x9d\x5a\xfd\xea\xb6\x57\x16\x87\x32\xea\x8a\xb2\x8c\xab\xd0\x35\x7d\x81\x6a\x53\xf4\x20\x59\x1a\x0a\xf5\x1d\x16\x69\x4e\x63\xea\xd2\x1c\xa8\x8b\x85\x50\x73\x64\x9c\x88\x45\x9a\x29\x19\xf7\xe2\x62\x51\x56\xbf\xf0\xf4\x29\xba\x5e\xac\x22\xfd\x84\x09\x2e\xb1\x6c\x98\xd3\xa5\x7b\xeb\xf2\x2b\x7d\x7d\xbc\xd6\x04\x90\x6e\x97\xf7\x85\x41\x42\x42\x13\x77\x4e\x1f\xab\x55\x71\x3d\x86\xd3\x82\x41\xb7\xff\x18\xbc\x18\xfb\x45\x77\x6b\x0e\x97\x12\x20\xdf\xca\xff\x57\x3b\x00\xd5\xa0\x27\x84\x5f\x2c\x3d\xe6\x97\x3c\x4d\x5f\x8f\x25\x7a\x0d\x69\x29\x22\x61\xeb\x7e\x59\x57\xec\xf2\x9c\xec\xc5\x6d\xa2\x92\x0d\x70\x76\xc5\xbd\x0c\x9a\xdd\x9e\x51\x46\x48\xbc\x5e\xd1\x6d\x64\x91\xea\xa3\xe8\x29\xb2\xfa\x3e\x8a\x1e\xac\x05\xa4\x7e\xd1\xf8\x05\xe8\x5d\x97\x57\x2d\x93\x49\xeb\xbc\x0f\xea\x5d\x97\x6b\x2f\x3c\x66\xb5\x35\x83\x80\xd7\x01\x89\x88\xa5\xc6\x25\xd1\x5f\x6a\x5c\xcb\x26\x1e\x9c\x67\xe9\x39\x4c\x53\x13\xdc\xc2\x6b\x68\xfa\xfb\x70\xa6\x68\x8c\xbb\x41\x5d\x7d\x81\xb3\x2b\xcd\x15\x1f\xf2\xf8\xea\x1f\xe4\xe9\x75\xce\x47\xee\x17\x6b\xba\xec\x37\x7d\x1a\x06\x2b\xf3\x87\x97\x7a\x80\xcd\x05\xc0\x73\x55\x15\x1e\xb0\xb9\x3d\xcd\xbe\xd8\x71\x66\x50\x1c\x02\xfd\x51\x56\xe4\x29\xfa\x93\x06\x02\x3f\x57\x84\x45\x8e\xa5\x9e\x05\x15\x59\x18\x26\x8d\x7a\x5f\xe2\x1a\x34\x7f\x07\x22\x01\x72\xb8\xb0\x3f\x7a\xb9\x03\x2c\x5d\x97\x96\x2e\xd3\x78\x2c\xfb\x42\xf0\x9f\x00\x0b\x01\x60\xdd\x41\xaa\xff\x00\xaf\xae\x4a\x18\xd7\x66\xce\x55\x93\x21\xd8\x75\xc5\x5c\x75\xb1\x70\xb7\xcd\x10\x6e\xc0\xeb\xa6\x8a\xf9\x5a\x79\x20\x99\x3a\x94\xb7\xb6\x1c\x85\x5e\x47\xcb\x06\xb5\x45\x7a\xf2\x56\xf6\x84\x3e\x72\xe7\x27\xb9\x5f\x5a\x19\x81\xf3\x0b\x51\xe9\xf4\x98\x11\x94\x4e\x42\xbc\xe4\xc1\x7a\x8d\xac\x53\xe1\x15\xd9\x60\xc9\x84\x25\x34\xa2\xd5\x19\x8c\x21\x40\x9d\x04\x17\x80\xba\x92\xb2\x2f\x00\x75\x61\x2c\x1d\xf8\x74\x91\x5b\x94\x9b\x41\xc9\x2d\xf8\x74\xbb\x09\x5f\x72\x4c\xcc\xc9\x95\xd3\x4b\x17\x05\x37\x40\x49\x02\x86\xee\x00\x54\x21\x80\xa1\xab\xc0\xa1\x06\x30\x74\x85\x6c\xa1\xb1\x64\xba\x98\x14\xd6\xed\x2e\x43\xaa\x5c\x5e\xfa\x19\x6b\x02\x0c\xdd\xfe\x87\xaa\xcc\x55\x99\xc4\x84\xb0\x43\xdd\xaa\x97\x49\xaf\xcc\xdc\x00\x28\x5d\x31\xd8\x04\xc0\xb9\x92\x42\xb8\x20\x73\xd9\xfa\xa3\x77\x0f\xbd\x7a\x92\xaa\xf9\xd2\xa9\x96\xd2\x3a\x1a\x01\x9a\x19\x22\xd1\x35\xab\x7d\xb2\x3d\xff\x90\x8e\x66\x71\xe9\xa8\xd3\xfe\x78\x65\xcc\x1f\x9a\x29\x75\x35\x59\x98\x29\x97\xe4\x83\x4c\x93\x45\x87\x12\x20\xeb\xfa\xb2\x5b\x9b\xfb\x86\x57\x14\xa0\xd7\xed\x8f\x98\x20\x9c\x73\x35\x18\x89\x64\x97\x14\x95\x8b\x3d\x7d\x3a\x05\xaf\x5b\x23\x0b\x5c\x76\xca\x26\x6e\x4a\x58\x5a\xe1\xcc\xaf\xc8\xd8\xdc\x3c\xdd\x9f\x5b\x1f\x81\x6a\xa9\xed\x91\xfd\x31\xc0\xa5\x3b\xb4\x8b\x2e\x5d\x88\x0e\xc8\x28\xf8\x73\x87\x12\xff\x69\x28\x89\x31\x3b\x40\xce\xed\xc9\x0a\x5e\xf0\x98\x51\x28\x38\x49\xd9\x5c\xf4\xd1\x39\xb1\x3b\x7a\x54\x4f\xd4\xbe\x66\xe2\x8a\xd3\x04\x1f\x60\x7e\x06\xd0\x74\x55\x59\xe5\x4c\x16\x4d\xbf\x4e\x2e\xf3\x3c\x78\x27\xec\x5a\x57\x55\x61\xea\x9a\x69\x2b\x80\xa3\xab\x6e\x77\xe1\xe8\x26\x20\x97\x01\x1c\x5d\x78\xd5\x02\x04\x5d\x31\xcc\xe7\x4c\x76\xdd\x7d\x21\x9f\xdd\xf4\x19\x29\xcd\x9c\x17\x40\xd0\x75\x77\x1f\x10\x74\xdd\x23\x71\x96\x9c\xc5\x3f\x7d\x9f\xcf\x92\x33\xc1\x80\x8b\x14\x94\x23\x73\x7a\xb1\x67\xda\x0b\x00\xe7\x0a\x58\x49\x71\x16\xb7\x36\x72\xc8\x69\x4e\x2d\x9d\x10\x4e\xd2\x66\xe5\x7c\x73\xfd\x07\x82\x76\x80\x38\xd7\xb3\xcb\x55\xbe\xd3\x2d\xe0\x74\xb3\x0d\x84\x9c\x5b\x06\x49\x81\x39\xd7\x73\x1d\xb0\x53\x82\x88\x12\xa7\x11\x27\x76\x97\x80\x93\x9c\x60\x75\x50\x36\xf6\x89\xc5\x52\xeb\xed\xc9\x95\xa0\x01\x2e\x27\xd9\x23\x73\x40\x2d\xcf\x3a\x7d\x4d\x36\xee\xae\x69\x9a\x03\x69\x2d\xf5\x54\x94\xd6\x53\x3d\x55\x1f\x10\x60\xe8\xfa\xbf\x12\xb7\xc5\x2d\x82\xa7\x4d\x58\x2f\x59\x32\xd0\x4d\xce\xd4\x5f\xe9\x08\xce\x3f\x7a\x7a\x00\x41\xb7\x6b\xa5\x70\xf7\xdc\x23\xef\x9d\xdd\x59\x63\x18\x5d\x6a\xdb\x2d\xae\x1e\xcf\xf1\x3e\x7b\x2e\x13\x8d\x74\x95\x2c\xa4\xa1\x13\x90\x87\x5f\x75\x63\x0f\xdd\x62\xa8\x78\x64\x93\x14\x49\x36\x8d\xfa\x76\x0e\x47\x45\xc7\x52\xfb\x85\x53\x9d\x3a\xf4\xba\x1b\x47\xb6\x48\x5d\xdc\x21\x9a\x92\xe1\x0c\xb3\x8d\x51\x3a\xdc\xe4\x6e\x66\x52\x95\xe8\xe7\x0b\x56\xdd\x2e\x6d\x09\xdb\x63\x20\x5a\x45\xc3\x02\x9c\x29\x77\x58\xf2\x67\x67\x6b\xf3\x67\x53\xae\x05\x20\x76\x7b\x09\xa9\x69\x0a\xbf\x47\x9f\xa6\x44\xdd\xf6\x48\xc7\xa5\x77\x23\x80\x76\xe5\xc0\x10\x75\x12\xc3\x1f\xe6\x9f\x38\x05\xa7\x1f\x76\x84\x1b\x41\x73\x2d\x9c\xa9\x63\xbb\x84\xd3\xe3\x61\x23\x4b\x69\x1c\xd9\xe8\x4c\x86\xed\xea\x92\x4e\x5a\xd7\xf0\x13\xe6\x0d\xda\x79\x88\x7b\xb7\x0c\x99\x3b\x09\xef\x37\xbd\xc2\xc9\xcd\xa1\xf9\x11\xc4\xc3\x33\x6b\xc3\xb9\xec\x08\xc3\x58\x39\x0b\xf4\xd0\x8c\x5b\x90\xc2\x53\xaf\xe0\x9c\x43\x9d\x7f\x73\xe2\x4e\x26\xd7\x79\x3b\x13\x59\x8b\x67\xb7\x8f\x54\x8a\x80\x4c\x9d\xf9\xc1\xc3\xab\x32\xeb\x13\x73\xaa\x31\xfe\x40\xe3\xed\x5a\x99\x11\xbc\x76\xd7\xc8\x17\x7b\x4e\xdb\x7a\xf0\x9a\x82\xe6\x44\x47\x56\x57\x10\x28\x6f\x8d\x7c\x51\x53\x0a\x8b\x43\xbe\x60\xbe\x20\xe5\x1d\xcd\x75\x22\x08\xd3\xf0\xfd\x13\xb5\x98\x2c\xaf\x21\x82\x5e\xcb\x19\xc1\xce\xaa\x33\xf7\x79\x9b\xfe\x06\xc1\xf3\xbc\x95\x2f\xdb\xef\x4f\xe2\x87\xce\xac\x0b\xcb\x69\xd2\x69\x77\xb8\x21\x9d\xde\x43\x9e\x98\x6d\x8d\x5a\x3f\xef\x64\xb2\x96\xb0\xf7\x4c\xe3\x83\x91\xce\xf6\x37\x87\x6f\x3a\x8c\x02\xe0\xd7\x57\x3e\x3b\x12\xa6\x54\xd5\x57\xdf\x26\x40\xfb\xaa\xb1\x8c\x60\xf6\x75\xe3\xb4\x80\xe9\x0b\x6f\x7e\xcf\x57\x1e\x49\x63\xaf\x59\x97\x29\x0b\xa2\x82\x26\xaa\x93\xa4\xd0\x66\x07\x02\xbe\x6f\x7a\x3b\x72\x7a\xa5\x08\x24\x4c\x9c\x6f\xce\x0e\x2d\xa0\x35\x27\x95\x7d\x95\x13\x7d\x96\xbf\x22\xfc\x9c\xaf\x5d\xb2\x2a\x92\x78\xb9\x2d\xf0\xcd\x31\xda\xf8\x4c\xb6\xed\x6a\x7c\xca\x6d\xb2\xda\x2f\x01\x31\x78\xc6\xf9\x53\xd2\xfa\x29\x33\x30\x08\x52\xc9\xe4\x9e\xf8\x72\x66\x2c\x9c\x62\x02\x6d\x1b\x40\x63\x04\xe7\x89\xdf\xb0\xe1\x82\x80\x05\x76\x63\x98\x81\x07\xec\x56\x7b\xfd\x98\x8f\xe1\xb3\x7a\x3c\x87\xec\xfa\xb9\x5d\x20\x4e\x62\x05\x1a\x27\x03\x56\x60\x97\xbc\x5c\x24\xee\x32\x9e\xf9\x3a\x54\xdc\x69\x81\x68\xd3\xd0\x6f\xee\xc2\xb4\xdb\x3c\x64\xe0\x06\x56\xf5\x1a\xd0\x00\xbb\x6b\x0a\x18\xe0\x1e\x12\x1f\x95\x44\x5e\xe2\x59\xd1\x9e\x2d\x74\x6d\xfd\xba\x98\xb1\xe1\x2a\x26\x12\xf0\x39\x7b\xee\x47\x90\x84\xe1\x73\xae\xa4\x55\x49\xa8\x30\x21\x80\x13\xb8\x67\xaa\xf1\x42\x82\x67\xfb\x5e\x72\x3e\x79\xa9\x0a\x86\x6c\xce\x2b\xb5\xed\xea\x3f\xec\x5a\x28\xff\x55\xd5\x77\x31\xac\x83\x26\xd8\x8d\xad\x05\x4c\xb0\x1b\x2d\x0a\x66\x60\xd1\x37\x4a\x9c\xc0\xd0\x87\xe9\x4a\x76\x8d\x61\xe5\xd2\x57\x07\xfc\xe2\xb8\x30\x07\x2b\x33\x02\x0e\x58\x73\x7a\x5b\x0e\xd7\x12\xe2\x4e\x5a\x80\x0c\x4a\x9c\x80\x4b\xa8\x57\x27\x94\xdc\x36\xc6\x0c\x82\x13\xd8\x8d\x1b\x15\x26\xb0\x49\x39\xae\x46\xa8\x39\x47\x46\xc8\x40\x43\x48\x2f\xf4\xe9\x2c\x80\xfb\x8e\xb7\xab\xa2\x07\xb6\xc3\x9d\x80\x17\xae\x57\xb5\x97\x7e\x3d\x25\x5f\x30\xb4\x3b\x35\xe0\xc3\xeb\x87\x90\xc0\x80\x12\x30\x40\xff\x8e\x09\x9e\x4c\x80\xfa\xd7\x8d\xb0\xb9\xd2\x61\x76\xf9\x15\xd4\xcc\x79\x1a\x4a\x45\x2e\x3f\xc8\xb0\x45\x4b\x3b\x48\x7f\xdd\xab\xb0\x2b\xd9\x70\xf3\x0f\xb6\xdb\xfc\xf3\xc6\x03\x44\xc0\x23\x34\xd6\x8b\x02\xd8\xa4\xa1\xa0\x00\xee\xee\x50\x79\x78\x8c\x18\x65\xa4\x3b\x3c\xb3\x6d\xae\x03\xbd\xc5\xaf\x90\xe4\x3b\x65\xa8\xe2\xba\x1b\x5f\xe6\x34\x90\x1e\x83\xf6\xb7\x47\x40\x2b\x53\x57\x28\xff\x00\x52\xd0\x33\x32\xdd\xcc\x6e\x21\xee\x31\xf5\x92\x11\xe2\x4f\x4f\xbb\x6b\xca\x04\x21\x45\x17\x59\x74\xf4\x59\xb9\x92\x19\xa3\x7b\x5f\x82\xcd\x4a\xd6\x2f\x92\x1d\xe8\x24\x73\x91\x5e\xa7\xba\xf0\x8b\xfc\xc6\x52\x00\x52\x93\x95\x03\x4a\xf6\x0f\x2e\xd0\xc2\x9c\xb6\x7c\x86\x9b\x62\x19\xb8\xb0\x78\xeb\xa5\x24\x8a\xe0\xd4\xfe\x71\x2d\xd7\x87\x69\x5b\x76\xdc\x02\x5c\x64\x64\x01\xfa\xed\x9e\x3e\x15\x61\x24\x1f\x67\x46\xdf\xf1\xac\x88\x26\x4d\x23\xac\x35\x4f\x84\xa8\x4a\x86\xa8\x83\x3a\x18\xb9\xf5\x45\x85\x90\x4f\x25\xd0\xa0\x62\xef\x65\x8a\x1e\x37\x8d\x16\x6e\x7d\x0a\x41\x17\xec\x46\x20\x81\x2e\xb8\x87\x61\x09\x27\x44\x9a\x78\x91\xf1\xce\x83\x7a\xc9\x18\xb3\x88\xea\xa7\x73\x88\x82\x2d\x99\xbf\x00\xc3\xd5\xeb\xe4\xba\x6d\x10\x59\xec\xba\x75\x67\xa7\xef\x86\xbb\x9a\x39\x08\x10\xc1\xf1\xcb\xe7\x60\x50\x34\x71\x2b\x72\xbb\x45\xe0\xeb\x79\x6e\x4d\x8f\x66\x02\x27\x61\x07\x75\xa5\x01\x76\xb0\xeb\x2b\x72\xc9\xa0\x1d\x12\xaa\xf6\x04\xe8\x3a\x2e\xd5\x6b\xd3\x0b\x09\x23\xd8\xe4\xe3\xd7\x93\x47\xcf\x32\xd9\x08\x03\x49\x8e\xed\x29\x78\x98\x78\x5b\x51\xbf\x76\xcd\xf1\xf6\xd1\x42\x7b\x6d\xce\x3c\xbc\x08\xbb\x5e\xc7\x47\x7b\xaf\x77\x27\x2e\xe7\xe6\xc6\xc3\xab\xfc\xeb\xcd\xe6\xac\xf5\xc1\xc8\x44\x4d\xdc\x93\x4e\xf0\x8f\xe3\xfa\xd4\x70\x25\x6b\x5f\xdd\xc5\xd1\x3d\xaf\x8f\x36\x3c\x59\x5f\xf0\x4c\xb5\x9f\xed\xb9\xaf\x3e\xb7\x8f\xa4\x25\x19\x2a\x14\xe4\xde\x5a\xf4\x50\x81\xba\x09\x42\x0d\x1d\x3c\x41\x27\x2c\x45\xaf\xc8\x5b\xff\x58\x20\xf6\x02\xa8\xc2\x92\x1e\x61\xb7\xf6\x6c\x29\xe6\xfd\xa3\xfd\xfc\xca\x5b\x0a\x88\xcc\xfd\xd3\x70\xd3\xfc\x47\x29\x23\xfc\xe7\xa1\xcb\x3e\x23\x24\xaa\xb9\xdc\x62\xbf\x1b\xeb\x08\x54\xe1\xd0\x79\x01\xa8\xc2\x66\xa0\xf1\x7d\x38\x11\x7f\x8a\x7c\xf7\x66\xd8\xc3\x3b\x71\xe0\x0d\x87\x96\x67\xe1\x0d\x8b\xae\x7c\xc0\x1b\xee\x97\xc1\x0b\xf9\xd2\x58\x2e\xb0\x0e\x87\xf6\x9a\x5b\x46\xee\x1d\xdd\x9d\x91\xb3\xcc\x44\xb1\x2f\x14\x2e\x9e\x63\x08\xfe\x5d\x14\x5f\xbb\x5f\xd9\xb8\x7f\xe4\x12\xd1\xf8\xe6\xe4\xc3\x48\x96\x7b\x33\xf2\xa1\xf9\x04\x08\xc5\x5d\x95\x7f\x68\xb7\xe6\xb4\xdf\xc9\xbb\x61\x11\xe2\x29\x86\xb9\xc2\xee\x64\xde\x1c\x26\x31\x14\x9b\xb9\x6c\xc0\x50\x1c\x5a\x8b\xc0\x50\xac\x60\x32\xc4\x5d\x59\x86\x62\xe9\x57\xc2\x4f\xb7\xb6\x82\x5d\xb3\x8b\x8d\xbd\xc2\x39\xbe\xd3\x38\xde\x7c\x61\xe8\x28\xc2\x77\xf3\x80\xb3\x39\xef\xe6\xee\x80\x08\x89\xa8\x38\x01\xfd\x8e\x7b\xb3\xef\xa1\x1a\x76\xa7\xee\xcc\x08\x1b\x53\x8d\xe4\x07\x84\xe2\x50\x6a\xb9\x7b\x0e\x96\x8e\x74\x56\xb3\xf8\xec\x54\x63\x25\xb9\x3b\x87\xc1\x49\x30\x69\x51\x75\x9d\xfb\xa4\x04\x13\x22\xb6\xa2\x92\x2d\xd8\x8a\x25\x63\xad\xee\x9e\x1b\xd0\x17\x7a\xe2\x3e\x1b\x9e\x12\x06\x4b\x3e\xa2\x69\xea\xa7\xdb\x1b\x65\xf9\xc6\x3d\xe8\x96\xc7\x67\x40\x06\x10\x5a\x85\x57\x6c\x8a\xcc\xb7\x79\x41\xab\xfb\x64\x30\x0b\x08\x6c\x09\xa9\xf8\xef\x45\x29\x06\x46\x70\x7b\xbd\x5c\xdd\x34\x91\xfb\x8f\xa1\x18\x24\xab\xf3\x22\x10\x8b\xd5\xcb\xd5\x3b\x6c\x9e\x6e\xa5\xe5\x3c\x5f\x38\x89\x5e\x98\xdd\xe1\xde\x9a\x56\xac\xbe\xe6\x3e\x09\xf7\x00\x84\xfd\xd6\x0a\x6e\xc7\x66\x31\xf7\x0c\x53\x3c\x59\x77\xd8\x18\xa0\x88\xbb\x2e\x7a\x6c\x9e\x6b\xf3\x2b\x80\x84\x58\x7b\xfe\x81\xb3\xa5\x7d\x9c\xa4\x82\xca\x9a\x52\x3e\xe1\x8f\xc5\x6c\xc3\xeb\x40\x45\xac\x1a\xc7\x12\x09\xf1\xdf\x1f\x9d\x3c\x64\x2c\x0f\xcc\x5b\x8f\x77\xb0\x0f\xab\xc4\x1b\x88\xc3\x62\x60\xd3\xbd\xa4\x7a\xae\x3a\x9a\xb4\x02\xc5\x7d\x7a\x55\x07\xd3\x04\xee\x70\x98\xd0\x0c\xb8\xc3\xa1\x6f\xee\x7d\xba\xb4\x7e\x43\x72\x76\x78\xd0\x7d\xca\x52\x3c\xaa\xa7\x71\x21\xac\xcc\xc9\x86\x93\xc6\x9e\x1c\xe7\xe6\x37\x1c\x34\xc9\xca\x56\xc2\x87\x1e\x98\x02\x22\x16\xc5\x50\x00\x11\x87\x1e\xa6\x00\x22\x0e\x53\x88\x81\x87\x38\x74\x8d\x05\xf6\x70\xfc\xda\x9f\x49\xae\xc0\x44\xdc\x03\xb7\x19\x49\x1c\x32\xd6\x6d\xe2\x0a\x75\x20\x60\x11\x87\xbe\x93\xc0\x22\x96\xdc\x09\x86\xdb\xaa\x4e\xdd\x37\x2b\x23\x4d\xbe\xe9\x98\x54\xed\x96\xcd\x7a\x6c\x6f\xf6\x9e\x04\xf2\xce\x8d\xc0\xc4\xc1\xbd\x57\x7e\xf4\x58\xc2\x3f\xb8\xee\x74\xbc\x69\x41\x77\xd1\x1e\xdb\xa0\x23\x79\xeb\xec\xc6\x37\x3c\xe6\x40\x0c\x04\xf1\x70\xaf\xa0\xff\x6c\x49\x33\x07\x98\x3c\x7e\x58\x9e\x15\xf1\xa8\x24\xbf\x97\xc4\x3d\x4e\x90\xd3\xf0\x70\x22\xdd\xb8\x8f\xa2\xb6\x14\xf2\x01\x0c\xcd\xf5\xd1\xce\x8e\x84\x71\x9b\x5e\x5b\x9e\xf7\xda\x5d\xbe\xf7\xfa\x5a\xdb\x29\xa0\x87\x55\xa1\xf0\x4e\x4d\xdc\xa3\xf5\xca\x18\xd1\xec\x80\x33\x1c\x26\xaa\x02\xb6\x70\xe8\x51\x08\x52\xe1\x50\x28\xb8\x3f\xc9\xab\x84\x45\xde\xef\xd2\x68\x34\x97\x38\x7f\xf0\x12\x14\xb9\x3b\xbd\xa5\xac\x48\xab\xcf\x6e\xe0\x49\xf3\x79\xe3\x99\xc6\x86\xcf\xb2\xfa\xea\x0b\x99\x29\x99\xd8\x87\x34\xae\xfa\x55\x3c\x3f\x1b\xae\x3c\xdb\x58\xf0\x4c\x82\x25\x56\xf8\xf9\xe1\xf8\x7f\x58\x4f\x2e\x2a\x2f\x07\x3e\x06\x8c\xff\xd1\x79\xea\x40\x88\x7b\x4c\xe8\xa4\xfb\x35\xc8\x87\x47\x53\xa5\x7f\x0e\xc1\x02\x2c\xc2\xf6\x1a\x7e\x24\xd1\x59\xbe\x04\x17\xbc\x7e\x84\xaa\x7f\x58\xd8\xbb\x57\x46\x8d\xef\xaf\x96\x7a\x91\x12\x75\xa1\x7c\x0e\x96\x7d\xd8\x0d\x97\x1d\xc2\x04\x84\xe2\xee\x13\x25\xb8\x18\x37\x34\xe6\x21\x4b\xac\x41\xcf\x0f\x39\x33\x8c\x63\x7a\x4a\xf6\x9b\x6e\x94\xec\x9f\xa5\x65\x35\x6c\x9b\x47\x9b\x3b\xcb\xf2\x08\x63\x61\xe3\x79\x49\xbe\xfc\x03\x02\x01\x8d\x03\x3f\xb1\xc9\x82\x1e\x54\x78\x6f\x70\x84\x52\x0c\xc9\x14\x50\x8a\x43\xbf\xb4\x27\xe3\x72\x69\xad\x32\x67\xf6\x09\xa5\xdd\x4c\xd8\x8f\x39\x09\xa7\xcf\xca\x88\x8e\xae\xb2\x15\x9d\x02\x23\x6e\x75\xc1\x7a\x4c\x50\xa8\xf2\xf1\x34\x91\x1b\x99\x03\xf3\x13\xfe\x7c\x6e\xcc\x93\x05\x5c\x2e\xba\xd1\xd8\x36\x59\x56\xf6\x0c\x85\x7c\x1a\x29\xc8\x39\xf3\x4f\x83\x5a\x22\xef\x3f\x98\xd8\x75\x9f\x7d\x4c\x15\x35\xfe\x44\x30\x8a\xa7\x39\x6d\x4c\x95\xf2\x04\x4e\x12\x8f\xc1\xb7\x10\xc2\xc7\x1b\x75\xfd\x59\x9f\x9e\x6b\xc6\x0a\x74\x6f\x8c\x90\x59\x1e\x05\x0a\x24\xc2\xc7\x48\x5c\x3d\x5d\x9f\x14\x22\xf2\x1f\x25\x9b\x66\xcd\xf4\x7f\x5a\x97\x0e\x17\xcd\x22\xb9\xaf\xfc\x0a\x06\x8b\x2c\x04\xac\x63\xd5\xb0\xfe\x90\x8c\x43\x87\x3e\x10\x1e\x87\xde\x6a\x8f\xc6\x7b\x3d\x6b\x45\x75\x34\x57\x88\xa8\x8e\xa5\xb8\xed\x07\x34\x2e\xfc\x23\x3b\xc5\xcc\x0f\xa6\xc4\x85\x8e\x5c\x4f\xbe\x0a\xa0\x13\x9c\xf9\x70\xf7\x50\x20\x68\xdb\x19\xc9\x18\x5a\x96\x2d\x06\x0a\x1f\xc3\x0e\x49\x8e\x34\x44\xa3\xc0\xf4\xd9\xeb\xca\xac\xc9\x9d\xfe\xb3\x2a\xb8\x0c\x02\xc7\xa3\xb5\xc0\x14\xbf\xcf\xcc\xf5\xa0\xe2\xa9\x58\x23\x7d\x99\x4a\xb6\x6e\xbf\xa9\x19\x5a\x52\x65\xe0\x8f\x3a\xe3\x63\x62\x0f\x60\x44\x03\x98\xc8\xa1\xd7\x98\x60\x90\x4b\x5b\xf7\x33\xdd\x0e\xb4\xb2\xf4\x01\x93\x92\x2c\xe7\x9a\xd2\x1a\x06\xf4\x68\x7d\xcc\xeb\xe1\x2d\xee\xb3\x52\x78\xe3\x79\x9f\x1d\xbd\xa3\x81\x79\x1c\x3a\x77\x01\xf3\x58\x0c\x8b\x79\xf4\x8b\xcb\x13\x92\x12\x88\xc4\x67\x4b\x20\x43\x17\x9b\xe7\xc4\xfd\x45\xe2\xa8\xd0\x21\xc1\x38\xe9\x93\x6b\x73\xea\x65\xe2\x71\x39\xb3\x4f\x7e\xe5\x3a\xc3\x36\x1e\x45\x0d\xc9\x29\x6e\x71\x79\x6c\xf1\x8a\x53\x4c\x7d\x14\x3b\x24\x00\x27\xf3\x21\x49\xda\x22\xc8\xd0\x9f\xe7\xc1\x95\x5a\x1d\x09\xb0\xc9\x6a\x0c\xc8\x93\xde\x71\x1e\xe7\x8b\x70\x12\x1b\xbe\x38\xe6\xcb\xc2\xb2\x3e\x98\x17\x28\x94\x53\xef\x72\x40\x28\x87\x1e\x47\x09\x42\x99\x9b\xf8\x82\x87\x4c\x9f\x81\x55\x93\x9e\x29\x94\x38\x33\x5c\x21\x68\x10\x03\x9b\xb2\xca\x80\x1f\x81\x39\xf4\x52\x4e\x6c\x4a\x45\x24\x60\x27\x87\xae\x65\x22\x4d\x1a\xaa\x2a\xd0\x64\x73\x51\x74\x85\xd3\xb6\x06\xb8\x64\x31\x75\x98\xe0\x92\xcb\x54\x41\x80\x4b\x56\x8d\x4e\x80\x4b\x16\x00\x5d\x03\x70\xc9\xa1\x39\xff\x31\x65\x96\x53\xff\xb8\x40\xd2\xd2\xc7\x51\xd3\x0d\x73\x06\xeb\x07\x02\x98\x64\x31\xec\xfc\x51\xee\xc8\xa6\x1f\x0a\x30\x86\x2d\x76\x8c\xe3\xef\x80\x36\x90\x25\x6b\x0e\xf6\x3d\x28\x44\x65\x5e\xf7\xeb\x73\xfb\x10\xa2\x54\xab\x4d\xbe\x8d\xaf\xfc\xc3\x73\x25\xe7\x48\xd1\xc5\xe3\x87\xb7\x9d\x6e\x1d\xc2\x4c\x9a\x92\xe7\xd1\xf3\xce\x2b\x88\x27\xc5\x18\x8f\x0f\xc9\x26\x73\x16\xf1\x07\xdf\xaa\x28\x2f\x26\x42\xa0\xc4\x27\x1f\xf1\x88\x22\xec\xe8\xdd\x04\x9e\x64\x53\xc6\x7f\x8c\xf0\xd5\x12\xf7\x7c\xd9\xa0\x5f\x5d\x94\xd8\x5f\x89\x09\x59\xbc\x5f\x78\xb1\x61\x98\x68\x02\x7c\xc8\x5a\xd8\xab\xc0\x43\x0e\x9d\x84\x80\x84\xdc\xd5\x0e\x5e\x16\x7f\x58\xe0\xe4\xf9\xe0\x99\x16\x68\xed\x3d\x72\x8b\xf1\x51\x5e\xf0\x4f\x5f\xe8\xb9\x4d\x1f\x5e\x27\x4f\x8b\xe4\x0e\xf0\xe5\x42\x57\xb1\xc4\x6d\x6f\x17\x2f\xd2\x87\xe1\x0b\x66\xce\x65\x5d\x90\x07\x26\xf7\x4d\x8b\x03\xa7\x03\x90\xc8\xa1\x8b\x10\x20\x91\x43\x3f\x10\x30\x22\x87\xbe\x46\x60\x41\x16\x2d\x7f\x60\x41\x1e\x53\x3d\xe9\x2d\xfa\xb3\xa0\x4c\xbc\xe6\xff\x70\x4c\xba\x88\x57\x96\xff\x55\x04\xd1\x19\xf7\xd5\x03\x60\xf9\xac\xf5\x01\xfe\xfd\x56\x3b\x42\x55\x88\x1d\xa6\xe4\x78\x11\x3b\x8a\xae\xc0\x2f\x72\x87\x5e\x1d\xe2\x44\x2e\xb3\x46\xbd\xd8\x21\x74\xc4\x00\x27\x72\xe8\xed\x01\x4e\xe4\xd0\x2d\x01\x9c\xc8\xa1\x0b\xca\xab\x7d\x62\xf9\x3d\xda\x09\x54\xff\xe5\xfe\xbf\xe8\x5e\xfc\x02\xda\x6c\x7e\x40\x20\x23\x87\x9e\x22\x6f\x5e\xfa\xc3\xab\xdf\xb4\x4f\x84\x25\x06\x5f\x31\xba\xbc\x81\x70\xa8\xf8\xee\x35\xad\x0a\x00\x4b\x96\xc8\x7a\x2f\xf5\x16\x9e\x71\x99\x83\x0a\x03\x32\xb9\xfb\xc1\x47\xdd\x1d\xe9\x90\x3a\xf1\xac\x76\xbd\x03\x25\x8d\x3c\xfd\x76\x7d\xc8\xfc\x86\x7e\xc0\x57\x84\x98\x4c\x5f\x41\xb0\x24\x87\x3e\x17\x40\x49\x0e\x73\x5f\xbc\x3d\xc7\x4d\xad\x03\xa7\x45\xf7\xbc\x18\x5b\x5a\xbe\xdf\x14\x1a\x5c\x98\xe1\x58\xfd\xc3\xe9\xa7\x1f\x83\xe9\xaf\x7e\xc3\xf4\x57\x6b\x05\x3a\xd6\x2d\x31\x50\xd5\x91\x4a\xde\x34\x4d\x2c\x5f\x72\x4b\x50\xfa\x1f\x2e\x34\xcf\x8a\x54\xf9\x92\x73\xee\x8b\x56\x2f\x84\x83\x37\x6c\x9c\xb1\x06\xeb\xed\xe4\xc4\xcd\xf3\x9f\xda\x2d\x00\x95\xc3\x6b\x4d\xf0\x29\x77\x33\x4c\x69\x70\x82\x9c\x5e\xdd\xea\x73\xcb\xcc\x84\x7d\xe6\x99\x5d\x02\xaf\x79\xe7\xf9\xdf\xff\x92\x69\x01\x56\x39\xbc\xa0\x7b\x75\xab\xf7\x0a\xe0\x9d\xac\x01\x4c\x08\xe0\xca\x9a\x5b\x0c\x93\x85\x77\x6a\x6f\x5e\x44\x2c\xff\xe0\x68\x20\x84\xbd\x2b\x97\xc3\x17\x96\xc3\x29\x4d\xc7\x3d\xf7\x88\x21\x58\x95\xf9\x11\x5f\xce\x24\x5a\xc0\xcb\x0d\x8d\x16\x9f\xe7\x84\xad\x07\xd4\xdc\x31\xcd\x7b\x2a\xd4\xdc\x04\xcb\x36\xbe\xaa\xe8\x93\x2f\xce\x0e\x64\xe1\xcb\x73\xc3\x8e\xfb\xcc\x77\x67\xcc\xc2\x67\xbe\x3b\x8d\xdc\xe0\xd0\x0d\xaf\x23\xbe\x26\x23\xf7\x77\x8d\x02\x30\x60\xd0\xe6\x86\xc6\xfa\xaf\x53\x00\xf1\x0c\xb0\xb9\xa1\xe5\x1c\x48\xb9\xdd\x13\xda\xeb\x92\x40\x76\x32\xa0\x72\xfb\x1f\x5e\xb0\xad\x75\x43\xe4\xbe\x21\x4f\xb2\x5b\x43\x99\xac\xfa\xc2\xf6\x0d\xbf\x22\xa1\x1a\x5b\xf9\x33\x6b\x6b\x7e\x23\x69\x9d\xfe\xf1\x72\x87\x40\xb7\xc2\x6c\x37\xfc\x1e\x6e\x8c\xe9\x1f\x32\x76\xfa\x1b\x58\x97\x9c\x1e\xbc\x50\x9b\x73\x1d\x8c\x09\xe2\xf1\xed\xbd\x9b\x3e\x63\x20\xc1\x0d\xad\xe0\x9f\x9b\x0a\x3a\xf7\x4d\x32\xe5\x40\xa2\x01\x82\x1b\x9a\xbd\x01\x82\x1b\xda\x87\xc1\x81\x1b\x5a\x9d\xbf\xbd\x09\xab\x7e\x90\x62\xc2\xad\x31\xfd\x88\x1d\xe9\xa6\x98\x12\xe8\x6a\x0b\x44\x7d\x67\xad\xb9\xaa\x54\xe5\xe5\x58\xe5\x9c\x82\x0f\xb7\x27\xd6\x17\x16\x8c\xd3\x20\x0a\xdc\x34\x86\x5f\x14\xb8\xd0\xf0\x04\xf2\xdb\xd0\x74\xfb\x99\xae\x15\x6c\xcd\x00\x05\x6e\x88\x63\xf3\x2d\xce\x83\x1b\xec\xc4\x19\xc2\x3d\x71\x2a\xc1\x4f\x5f\x98\x10\xd7\xd1\x48\x8f\x9f\x05\x72\x4d\x19\x20\x5e\xa6\x60\x3c\xc6\x67\xbe\xb9\xe2\xef\xb2\xfd\x6a\x4d\x2e\xaa\x9b\xf0\xb4\x6d\x9f\x39\xed\xae\x23\x16\x33\x65\xdd\x0f\x94\x9e\xa2\x83\x2b\x10\x70\x43\x0b\xe5\xa7\x28\xea\xee\xc0\x94\x26\x45\x00\x00\x6e\x53\x6e\x3a\x88\x0b\x8b\xe4\xf3\xc3\x0e\xd6\xbd\x83\x00\x0c\x6e\x7f\xc5\x1c\x90\x59\xa6\xba\xc6\xb7\x47\xc9\xdd\xe5\x35\x96\x5e\xa6\x20\xbd\x0d\xad\x3e\xdf\x8d\xe7\x07\xdc\xfd\xc3\xb7\xa4\x7b\x35\xf1\x99\x1b\xa6\xfd\xfe\xbc\xd0\xf8\x1e\x55\x6f\xc6\xf2\xb0\x9e\x2e\xa1\x12\x29\xc4\x0a\x78\xb8\xbd\x9c\xf4\xff\xc9\xfe\xf3\x15\x46\x2b\xa3\x5f\x3e\x85\x45\x97\x16\xf9\x70\x7a\x61\xfe\xbd\xda\x39\x7f\xfe\xc3\xdc\x39\xf1\x6f\x8e\x8b\xb1\x70\x95\xa5\x51\xe3\x13\x6d\xdc\x93\x42\x58\x60\xd7\x60\x01\xf0\x5b\x68\x7b\xfd\xb8\xc9\x9a\xcd\xad\xc8\x4d\x96\xd6\x0e\x00\xde\x86\x1a\x39\xf8\x6e\x47\xd7\xda\xf4\x01\x06\x2e\xff\x05\xec\xad\xe2\x6b\x38\x81\x74\xab\x84\x65\x4c\x10\xdd\x1a\xa6\xb0\xf9\xc3\x1b\xb4\x21\x4c\xcf\xdf\x8f\xd4\x91\x5b\x4e\x99\xbf\x2d\x10\x0e\x54\xe5\x09\xec\x5b\xe1\x62\x70\x02\xfb\x36\x4a\x56\xa4\xc5\x72\xf9\x32\xed\xab\x5f\x9d\xbe\x58\xfc\xa2\x88\x7f\xb0\x67\xb2\x6d\xc9\xd9\xf2\x23\xd7\xf6\xf0\x1f\x0f\x67\xa3\xc8\x96\x28\x0b\xe1\x4b\x13\x78\xb8\xfd\x15\x2d\x22\x50\xa2\x2c\xcf\xdf\xa1\x28\xd5\x7c\x69\x7e\x45\xc5\xa6\xaa\x3b\xac\x6a\xd8\x2d\xbf\x02\x3b\xda\x06\xb1\x69\x11\x26\x39\x7f\x86\x19\xe2\x59\x3c\x7f\xa6\x38\x1f\x8b\xe2\x08\x94\xe5\xc7\x5c\x95\x6c\xc3\x3f\x4c\x35\xe8\xcc\x6d\xc9\x71\x10\x30\x39\x7f\x0a\x8b\xed\x47\x5d\xc6\xb0\x97\x46\xf9\x2a\x46\xe2\x8f\xd5\x51\x10\x1c\x8c\xca\x0b\xa9\xd2\x29\x2f\x80\x2a\x99\x00\xe6\xcf\x84\xe3\x95\x51\xd5\x24\x3f\xd6\xa5\x7e\xb8\x68\xbe\xe6\x76\xa0\x49\xe4\xc2\xe2\x74\x19\xcb\xfe\x73\x3f\x10\xcc\x8e\xfb\xc5\xfc\x09\xaa\x81\x13\xef\xfc\x61\xcd\x2a\xce\x8a\x69\x64\x70\xc3\x9d\x09\x38\xd7\x9c\xa3\x96\x9d\xa4\x2f\x48\x86\xc5\x99\xd8\xf2\xdf\x28\xce\x7c\x67\x7d\x9c\x14\xfc\x40\xb8\xe4\x98\x00\xc4\x8d\x62\x07\xbb\xdf\xd3\xa7\x8e\xd9\xd8\xed\xd0\xed\x06\x8d\xe1\x2b\xd2\x7f\xf9\x72\x60\x32\xa0\x7f\xc3\x06\x98\x83\x91\x3d\xa2\x17\x23\xd7\xd9\x7f\x68\xae\x30\x9f\xc3\xb5\xb5\x1f\x03\x33\x61\xa5\xda\xcd\xe9\x06\x22\xe9\xfc\x45\x6e\x32\x4a\x63\xe8\x41\x68\x9e\x3f\x0c\x3d\x88\xeb\xf3\x17\x28\xf4\xd6\x1a\x9e\xfe\x7c\x61\x36\x0a\xfd\xd8\xec\xb0\xe0\x82\x35\x7f\x88\x6f\x88\xaa\xf3\xc7\xcd\xd2\x6c\xee\x11\xc4\x32\xc4\xd3\xf9\x13\x36\xdc\x8d\x80\x54\x06\x45\x9d\xbf\x34\xf9\x74\x3e\x9a\x1c\xcd\x3f\x31\x3b\x26\x98\x75\x83\xbb\xf6\x09\x66\xdd\xc0\x88\x3a\x7f\x84\x48\xd6\x49\x57\xa6\x22\xe6\xb2\x66\xc0\x38\x26\x03\xdc\x2c\xb5\x61\x8c\x9c\x3f\x01\xc9\xa7\x85\xf3\x44\xd0\x2f\x4c\x41\x48\x27\x53\xf8\x3a\xa0\xa3\x27\x80\x75\x95\x30\xae\xf9\xd3\x10\xd4\xdc\x52\x70\xca\xe2\x1e\xc6\x12\x84\x5c\x35\x7f\x72\xcd\xe6\x4e\xc5\x14\xd4\x3d\x80\x4b\xba\xe0\xa4\x1b\x14\x59\xe8\xd3\x89\xb2\xee\xe0\xe4\x94\xcd\x6d\x77\x92\xe8\xb8\xfb\x91\x07\xd3\xe5\xd3\x14\xd4\xdc\xa8\x06\x67\x4c\xda\xd8\x7c\xb3\xe6\x88\x88\xcd\xe8\x3f\x77\xc2\x09\x59\xa8\x7e\xc4\x32\x55\x0b\xe3\x4a\xed\x0e\x4e\xf3\x0f\x85\x81\x77\x3a\xac\x48\xd0\x3b\xcb\x5e\xd2\x46\x8f\xc2\x95\xf1\x4d\x7e\x45\x5a\xa0\x46\x6b\x30\x44\x98\xf4\xfc\xdd\xac\xb1\xe7\x53\x3f\x90\x66\x13\xa4\x3d\xc7\xf1\x69\xfe\x92\x69\x3a\x54\xad\x36\x3f\xe9\x06\x5c\xb3\xe6\x57\xb9\xe7\x59\xbd\x5b\x14\x70\x3a\x72\xab\x90\x2c\x8a\x1b\xb5\x88\x5f\xf4\xfc\x3d\x6a\x81\x72\x85\x27\x9b\xf7\x33\xb6\x91\xfd\x7d\xd8\xd1\xd5\x8f\x58\x57\x1b\x7c\x5c\x57\xba\x8b\x7d\xa6\x78\x02\xb8\x16\x1a\xee\xa8\x8c\xbc\x97\xe6\x98\x34\xcd\xbd\x49\x5c\x63\x12\x84\xd7\xfd\x6b\x01\x8f\xb4\x87\x92\xd8\x88\x45\x8a\xd3\xf9\x7b\x25\x5f\xf2\x14\xee\x85\x92\x0d\x98\xe8\x25\xa4\x15\x1f\xb4\xdb\x3d\xf5\xe5\x58\xe9\xed\xa7\xcd\x54\x22\x47\xd6\x97\x6c\xdd\xeb\xa3\xe6\xce\x33\xe2\x11\x7f\xc8\xf9\x23\xe2\x71\x85\x4c\x10\xe7\x91\x70\x69\x3f\x97\x76\xb0\x49\xe0\xcb\x2b\xe4\x81\x5e\x2d\x35\x37\xe2\xc7\xb6\x72\x03\x08\xf9\x91\xc5\x5f\x4b\xec\xe2\x87\x4e\x25\x9c\x0e\xf1\x02\x17\xb9\x57\x27\x18\x81\x07\xc9\x2c\x27\x10\x81\xc5\x29\x05\x21\xb0\x61\x7f\x9f\x00\x04\x56\x50\xa8\x26\xf8\x80\x43\x5e\x7a\xfc\x00\xa8\x9c\xfe\xae\xb1\x79\x58\xe9\x63\xff\xf8\xe7\xc8\x53\x43\x55\x47\x0e\xd6\x97\xe9\x3f\xc1\x0b\x17\x44\xcc\xf5\x71\xb0\xe6\xcd\xdf\x95\x0b\x87\x25\x5e\x2b\xe6\x2b\xa3\x25\xf1\xab\x9e\x07\x66\x18\xb9\xe1\x61\xe6\xd6\x66\xbd\xda\x61\x1a\xc7\xfc\x28\xf6\xde\x67\x92\x9e\xae\xe3\x2f\x1f\xbe\x79\x24\xdf\x2d\x56\xce\x9e\xe0\x60\x1c\x35\xf7\x04\x0d\x55\x5c\x1b\x9d\xc9\x2a\x1e\xb1\xcf\xb9\xf2\x4c\xd9\x66\xae\x55\xfa\x73\x24\x6f\xb5\x67\x35\x87\xe9\x8b\xf3\xe7\x72\x6d\x86\x3a\x64\x45\x87\x97\x40\x48\x99\xf3\x48\x38\x8f\x41\xb7\x64\x9b\xb0\xd0\xc3\xd4\xaa\xc5\x05\x6b\xd9\x8a\x5f\x31\xb1\x9c\x93\xc3\xb4\x6a\xf8\x59\x4c\x40\x0a\x0b\xb9\x5a\x26\x20\x85\x15\x63\xe3\x04\xa3\x70\xc8\x29\x84\x28\xd4\x6d\x78\x02\x51\x38\x64\x7d\x07\xc6\x15\x39\x2a\x68\x85\x0d\x83\xf2\x04\xa1\x70\x4f\x8f\x7f\x30\x6f\x5b\x81\x9b\x62\x0f\xc6\xcf\xde\x9a\xf8\xf4\xdf\x3f\x92\xf7\xea\x3f\x78\x11\x54\xff\xd0\x49\xc3\x9e\x0c\xa7\x84\x46\x34\x84\x90\xb0\x76\x1e\x61\x24\x0a\x0d\x46\x82\xf5\xd0\xc5\x70\xcf\xc3\x23\x8f\x80\x1c\x72\x60\x8f\xc8\xb9\xa2\xc1\xad\x64\x56\xe9\x3b\x28\x85\xb5\x3b\x87\xa1\x1d\xca\x9a\xbe\xff\xfe\x17\xe1\xa2\x4d\xf8\xbc\x5b\x73\xca\xe7\x5d\x33\xb4\xd2\xdc\x99\x68\xa5\x9e\x75\x40\x0d\xf7\x47\xb4\x30\xdd\x18\xd5\xe2\x92\x84\x60\x65\x51\x4c\x3d\xf8\xa0\x1a\x8e\x3c\x57\x2a\xa6\xa4\xba\x9d\x87\xce\x99\x39\xbe\x29\x0f\x61\x12\x96\xbb\x12\xee\x77\xc8\x53\x1d\xde\x82\x02\xba\x5f\xf2\xaa\xc5\x03\x2e\x42\x48\x83\x36\x82\x71\x58\xbb\x27\x7c\x65\x83\x16\xc7\xbc\x9c\x1f\x81\x01\x31\x6d\x42\x42\x03\x27\x04\xfb\x70\xe4\x36\x3e\x73\xc3\x30\x0d\xa7\x1d\xa1\xeb\x38\x75\xe4\xfe\x3c\x31\x73\x2f\x0b\x70\x3c\x9d\x83\x33\x87\xc7\x1f\xdc\x90\xe4\x50\x2f\xd5\x18\x38\x05\xa8\x87\x25\xa4\x1a\x57\x4e\x2e\x9d\xe5\x5a\x24\x87\x87\xca\xf9\xaf\x26\xa6\xd3\x8e\x5f\xaa\x69\x90\xce\x83\x1b\x0f\x1c\xa7\x27\x28\x89\x23\xfb\xcd\x8d\x07\x2e\x40\xf3\xc0\x0b\xa3\x48\xf0\x44\xb7\x6a\xcd\x17\xd6\x1b\x51\xe7\x50\x13\x6d\xcd\x17\xcf\xa8\xd5\x12\x4e\x51\x3d\x70\x37\x7d\x9a\xf4\xe9\x66\xd8\x93\x7e\xff\x63\xbc\xfe\x91\xd3\xcf\xf0\x6e\x3a\x88\x14\x04\xc6\x62\x29\xff\x7a\xa2\x82\x89\x30\x71\x3c\x1c\x58\xa4\x31\x50\x16\xcb\xb4\xeb\xf0\xdd\x95\x84\x5e\x7f\xcc\xd6\xfe\xba\xd1\x9d\x87\xd8\x59\x3f\x8f\xda\x63\x9f\xad\xcf\x3e\x5b\x9d\x73\xea\x37\xb2\x26\xa9\x87\xac\x38\xdc\x96\xaf\xd7\xe2\x3e\x4b\xa1\x5d\xb7\xd7\x7b\x5f\x9f\x63\x57\x85\x0e\x78\x70\x01\x82\xbb\xec\x3c\xbc\xf4\xf0\x10\xbd\xb2\x1a\x67\xdb\x24\x38\x4d\x5e\xf1\x6a\x17\xb6\x84\x74\x41\x1e\x64\xee\x01\x8f\x5d\x66\x32\xa5\xb9\xcf\xe5\xb1\x6d\x22\x27\x56\x48\x9c\xd3\xab\xc3\x01\x8a\x80\x8e\x23\xd7\x04\xb8\xf1\x28\xf9\x2c\xa1\x96\xa1\x7c\xec\x9a\xe5\x1f\xda\x13\xe0\x47\xc2\x38\x2e\xee\x9b\x66\x81\xfb\x76\x1c\xae\x66\xf9\x39\x0f\x10\xe4\xc2\x4d\x09\x1e\xc1\x13\x80\xc7\x81\xdf\xef\x2c\x3f\x65\x82\xe0\x79\xfd\xf7\xbf\x8e\xc3\xcd\x2c\x5c\x9a\xe0\xd0\x3b\x8b\x60\x5d\xa8\xea\xb3\xa0\x16\x2b\x81\x02\x0e\x39\xf0\xdb\x9d\xc5\xec\x39\x74\xb0\xa4\x52\xcc\x06\x04\x35\x72\x10\xa1\x3f\x0b\x5e\x9e\x5c\x4e\xcd\xb2\x59\xf7\xc0\xb1\x63\x82\x19\x59\x09\xa6\x9a\x45\xc6\x3d\x7c\x96\x62\x77\x3f\x52\x4a\x81\xd7\x83\x25\x59\xfe\x3d\x9b\x5f\xca\x16\x14\x21\xd9\x2f\xe5\x40\x4d\xeb\x36\x07\x86\xaa\xd5\x96\x24\xa7\x0c\xa2\x78\xe4\xe1\x81\xe0\x4d\x96\x82\x7f\xff\x2c\x30\x74\x8d\x09\x80\x4f\x9a\xaf\x7b\x02\x3e\x39\xaa\xa3\xc0\xcb\x43\xfe\x5b\x70\xec\xc0\x64\x34\x81\x98\xdc\x4d\x30\x05\x9b\x63\x0f\x7c\x81\xa7\x78\x93\xff\x66\x99\xe4\x07\xf8\x2e\x4c\xf1\x26\xb9\xac\x99\xc5\xec\x3c\x59\x60\x52\x98\x91\xe2\xe5\x41\x92\x8c\x59\x6a\x4e\x87\x2f\xee\x54\x38\x58\x69\xce\x38\x4d\x9b\x4b\x9d\xb8\x84\x59\xbc\x32\x91\xbf\x14\xaf\x4c\xd4\x3e\x40\x9b\x3c\x3a\xfe\x26\x53\xb8\x49\xee\x67\x67\x69\xb9\x02\xb4\xd2\xd4\x38\x9a\x95\x49\x26\x38\x4e\xa5\x49\x26\x90\xaa\x4b\x7a\x61\xa0\x1e\x97\x2e\x2f\xb0\x36\xbd\x37\xdb\xf0\x33\x6f\x63\xd0\xe7\xc0\x9c\x1c\xb8\x22\x4f\x30\x27\x07\x1e\xa5\x53\x98\xc9\xd9\x86\xc5\xd9\x6f\x70\x28\x90\x25\x07\x7e\xa0\xb3\x24\xcb\x47\xae\x06\x4d\x72\x28\xa6\x26\x9a\x64\x1b\xbe\x34\xfe\xa0\xa6\xa1\x05\x9e\x51\xa5\xaf\x85\x5b\x17\x15\x5c\xe1\xaa\x0c\x65\x77\xa4\x9b\x82\xb1\x19\x97\x93\x59\x86\x00\x72\x14\xd8\x92\xc0\xa8\x6e\x0c\x6c\xcd\xbd\x1d\x7f\x51\x3e\x00\x27\x77\x87\x19\x22\x01\x95\x79\x34\xcd\x53\xae\x5e\x56\xd2\xc7\xc2\x09\x12\x71\x92\x58\xa3\x09\xe4\xe4\xa8\x1e\x48\x1d\x2e\x1a\xb4\xaf\x4c\x07\x0c\xf7\x4b\x6c\xc9\xf0\x58\xcd\x1c\xa5\x9f\x2d\xff\x61\x34\x86\x45\x36\x77\x1e\x52\x40\x71\xb7\x4d\xa6\xdb\xbd\x3d\x55\x6e\x21\xbd\x45\x1f\x0b\x32\x8c\x4f\x10\x28\xcb\x2f\xf7\xc1\xca\xf6\x7d\x69\xea\xbd\xb4\xaf\x4c\x90\xc4\x62\x4d\x5f\xfc\x0c\x61\x08\x72\x5d\x16\xc7\xd7\xdd\x8a\x33\x45\x75\x7f\x9f\x3f\x0b\xf0\xd1\xa9\x73\x94\x7b\xe2\xd4\x8d\xc5\x3f\x06\xc0\xa5\x94\x3e\xf5\x8f\x1d\x16\xf7\xac\xc0\xbd\x0b\xde\x14\x55\xd2\x81\xda\x5c\x5d\x61\x52\xd3\x29\x11\x0a\x6d\xd9\xf1\x38\x98\x40\x5b\x16\xa5\x35\xa1\x2d\x17\x6e\xb3\x13\x68\xcb\xa3\x22\xa2\x95\x94\x1c\x10\x23\x0a\x69\xea\x86\x4b\x62\xe2\x83\x16\x7e\x15\xd6\xeb\x57\x29\x19\xf1\x4c\x77\xa1\xf5\xe5\xca\x05\xa1\xeb\x97\xbd\xf5\x0f\x0f\x43\xf8\x42\xee\x89\x69\xb5\xd9\x5d\x5f\xf4\xba\x75\xa7\xdc\x1a\x7c\x68\xe3\xce\x43\x4e\xbd\x4f\x0e\x84\x9e\x3c\xde\xaf\xd3\x5f\xbc\x33\xab\x53\xb5\x99\x7c\x53\xf8\x2e\x38\x67\x4e\x3b\x95\xbe\x99\x0e\x90\x1c\xac\x1d\xe9\x17\xd4\xcb\x51\x1d\x1e\x8e\x10\x25\x29\x17\xac\xbb\xba\x1a\x78\x45\x68\x49\x28\x78\x42\x54\x29\xca\xc3\x82\xbb\x00\x6f\x2e\x38\x05\x30\x66\x2b\xdb\x80\x8c\xb9\xe7\x80\xa6\x5f\x08\xab\xdb\xf8\xcd\xdd\x46\x67\x5f\x81\x7c\xfd\x48\xec\x3a\x56\xec\x05\xbd\xc2\xe3\x65\x24\x25\x40\xe3\xb3\xbc\xb9\x43\xe8\xec\x0b\x7a\xa3\x9d\xd2\xd7\x21\x29\x53\xf2\x7d\x19\x07\xce\x0e\xca\xe1\x40\x6e\x8e\xea\x64\xe2\xd8\x59\xdd\x21\xc9\xf6\x65\x03\x9f\xd4\x4f\x1a\xf2\x39\x53\x34\x8e\x67\x67\xb5\x6d\x7c\x20\xaa\xec\x21\x23\x26\xdd\x79\x5f\xae\xf1\xae\xaa\x66\x26\x22\xce\x6c\x05\x69\x85\x5c\x82\x13\xf8\xcd\x4a\x7e\xdb\x59\x7f\x76\xca\x02\x8d\xf9\xf7\x59\x97\x86\xc5\x33\x5c\x18\xba\x5d\x7f\x76\xc9\xb2\x6e\xb5\xe9\x8b\x97\x8c\x3c\xcb\xb6\xed\x85\x79\x0d\x48\xf6\x30\x81\xde\x3c\x8e\x3f\x71\xc9\x67\xd5\x3d\x82\xf0\xd7\x59\x4d\x6e\x20\x55\x16\x8c\x33\x70\x50\x9c\x15\xa5\x9b\x80\xb2\x09\xe6\x66\x10\xc3\x38\xab\xdc\x17\x4e\x57\x0d\xa3\x90\xd8\xd7\x8c\x87\x44\x1d\xa9\x5a\xb0\x25\xe4\x00\x6d\x0e\x72\x79\xcc\x9a\xd6\x6c\x64\x13\x50\x37\x47\x45\xdf\x06\x74\x73\xe0\x3f\x37\xab\x56\x6e\x05\x73\x60\x35\x07\x6e\x80\x13\x58\xcd\x51\x39\x67\xa0\x6a\x16\x1c\xff\x26\xa8\x9a\xbb\x80\xb5\x82\xac\xfa\xf3\x0f\xe6\x14\x93\x4d\xad\x8a\xdf\xa8\x20\x35\x39\xf6\xb4\x3d\x37\x19\xfb\xb5\xca\xbe\x11\xdb\xaa\x39\x5a\x65\x2f\x62\x6f\x76\x2d\xe9\x60\x6f\x1e\x13\x8f\xcf\x09\xf8\xe6\xc0\x9b\x6d\xd6\xcd\xca\x63\x38\x87\x4d\x09\x1b\xa2\x54\xc9\x56\x44\xde\xe4\x59\x33\x6a\xc3\xdf\x81\xf7\xb4\xbd\x6e\xdb\x4c\xa1\x79\xf9\x34\xd3\x01\xdc\x29\xb2\xc8\xac\xdd\xd9\xe1\xa0\xd6\x6e\x3f\x60\x86\xb5\x4b\x6d\xb2\xae\xdc\xfb\x74\x37\x39\xff\xf2\x9f\x49\x4f\x6c\x05\xaf\x42\xaf\x69\xea\xe6\xdd\x93\xe4\x4a\x13\xdc\xcf\xc3\x58\xb5\x59\xcd\xc5\x2a\xc7\xab\x18\xb7\x95\x94\xc0\xe4\x1c\xd5\xd1\x86\x21\x88\xb4\xa7\x3f\x02\x18\x13\x13\xec\xcd\x43\x8a\x0f\xf6\xe6\xf8\xf7\x51\xee\x18\xff\xf8\x68\x9b\x9a\x66\x36\xc7\x84\xce\x5c\x03\x3a\x62\xfc\x63\xd6\x35\x9d\x76\xea\x9a\x12\x57\x57\x9a\x8b\x60\xa9\x1d\x00\x9d\xa3\xba\xe8\xe8\xdb\x79\x0a\xf1\x40\xe8\xda\x29\x00\xe8\x1c\x72\x92\xba\x14\x1d\x5d\xcd\xe5\x19\xa6\x26\x9c\x0b\x48\x9d\x31\xc5\xdd\xec\x3f\xf7\xf4\x5a\x76\xca\xaf\x6c\x83\x81\x1b\xcf\xd8\x96\x7f\x78\x58\x60\x25\x55\x1f\xc6\xb6\x7c\x81\xb4\x78\xa6\xe5\xba\x1e\x35\xf4\xed\xea\x81\xc2\x85\x11\xef\xb1\x59\xbd\xe2\x95\x6d\xd6\x33\xf7\x18\x6d\x10\x20\x51\x5d\x33\xc1\x3c\xb5\xaa\x80\xe6\x39\x70\x9d\x9b\x80\x79\x56\x5c\x21\x66\x35\xcb\x9f\xb4\x5d\x60\xcf\x22\x19\xad\x97\xfe\xb3\x34\x78\xb9\xca\x7c\x84\x2e\xcd\x05\xf8\xac\x42\x81\xc8\x00\xea\xcd\x61\x96\x62\xa1\x1a\x0f\x97\xec\x0e\x16\x96\x8a\x4c\x50\x9e\xb4\x0f\x75\x78\xb8\x8d\xf1\x18\x0c\x8f\xd6\xcd\x62\x84\xcf\x32\x53\x3b\xfb\xe8\x6a\x2c\xa5\x7d\x94\x42\xfc\x8c\x30\x86\xbd\x25\xff\x22\x7e\x86\x2e\x76\xb7\xf8\xe3\x3d\x04\x1d\x40\xff\xc5\x8f\x63\xd6\x07\xc8\xcf\xe2\xf3\x63\x01\x5f\x70\x4e\x91\x14\xbd\x2c\x8e\x54\xf4\xb5\x2f\xb0\x32\x10\x38\x77\x09\x06\xec\xad\xae\xec\x1c\xd4\xcd\x3a\xa4\x5e\xaf\xa6\x3b\x37\xef\x0b\x4d\x75\x90\xf0\xb8\x9c\x6b\xed\xd2\x2e\xce\x87\x1f\x16\x86\x84\x8a\x6b\x5f\x95\x86\xca\xee\x3c\x43\x9b\xdd\xcd\x21\xf7\x21\x6c\x51\xcd\xbb\x7e\x79\x1a\x19\xb5\x78\x9b\x3d\xbf\xa2\xe5\xe5\x57\xb7\x5f\x31\xd4\x8f\x65\x66\x44\x2d\x43\x18\x61\x9c\x4d\xae\x96\xcf\x1a\xc1\x27\xcf\xfa\xd2\x32\x83\x60\x67\x0e\x85\x23\xf0\x32\x83\x84\xec\xb3\x71\xc1\x8b\x4f\xcc\x6c\x9b\xc5\x55\x5c\x41\x67\x53\x93\x85\x18\x37\xb8\x1d\x0e\x05\xb3\xfd\xd4\x6b\x38\x4d\x2d\xaf\x74\xd9\xc4\x60\x6d\x0e\xbc\xff\x66\x3b\x72\xc6\x3b\x2f\xe1\x8b\xff\x78\x32\x61\x9d\xad\xb0\x62\x90\x40\x00\x39\x07\x1e\x78\x13\x78\xcd\xea\xd9\x00\x5e\x73\xe0\x0a\x31\x41\xd4\x1c\x5e\x63\x36\xf3\xf4\x28\x23\xb4\x9a\x7e\x1f\x3c\xef\xa3\xe1\x95\x55\x53\x55\x44\xef\x12\x2c\x73\x76\x4b\x57\x88\xde\xf2\x99\x0c\xcc\x50\x81\xa6\x95\x57\xf2\x02\x0c\xe6\xf0\x9a\xb7\x69\xe5\x55\x76\x68\xf8\xf1\x0f\x47\x47\xe0\x3e\x79\xfc\x66\x4b\xeb\x2f\xb4\x02\x74\xcc\x5d\x82\x29\xdc\xba\x61\x25\x38\x71\x36\xd8\xcb\x24\x49\xd6\x56\x50\xf9\x0a\xb2\x0c\x20\x66\x59\xf6\xaa\xe7\x0e\xa1\xe2\xae\xc7\x01\xf5\xaa\x00\x76\x04\x04\xc0\x2e\xf7\x1a\xf3\xd5\x90\x48\xb3\x5d\x1a\xde\xf6\x40\xfc\x4c\xa0\x2f\x87\x57\x6c\x20\x5f\xd6\xc3\x29\xf1\xe2\x55\xc1\xb3\x0d\xd7\xec\xb0\xc4\xde\x3b\x78\xfc\xce\xa6\x3a\xa8\x18\x04\x26\xe6\xf0\x52\xbc\x19\xbc\xaf\x70\x0b\x28\xe6\xd0\xe6\xd0\x86\xbe\xe1\x16\x90\x3a\x59\xe0\xe5\x1b\x7f\xff\x78\x66\x12\xf4\xa8\xc3\x91\x7d\x02\x8f\x59\xd5\xfe\x00\xc4\xdc\x7f\xd0\x42\x64\x6f\xa9\x8a\x7b\xdb\xc3\x6d\x14\x72\x1a\x48\x71\xdb\x3c\x6f\xe0\xda\xb1\xf5\x02\x87\xc4\x0a\x72\x89\xeb\xbd\x6d\x03\xd1\xa3\xbb\x4e\x91\xf3\x69\x83\x2e\x1a\x04\x25\xd1\x35\x3b\x42\x48\xc3\xc8\xac\xfb\x41\xe3\x16\xb7\xb9\xdd\x32\xd3\x8e\x27\x8b\xb8\xbf\xf6\x67\x6a\xe6\x09\xda\x66\xc9\x1d\xbe\x64\xa7\x70\x9b\xb6\x34\x9d\x3b\xd9\xea\x8b\xc3\x67\x77\x26\x04\x39\x51\x38\x7b\xb1\xfc\xc2\x19\x82\xc1\x60\x35\xee\xae\xf4\x32\x9d\x0b\x04\x11\xa8\xcd\xd1\x5c\x5c\xa2\xff\xbc\xd6\x11\x19\x73\x76\x48\xab\x68\x98\x5d\x3d\xb2\x71\x69\xaa\x1b\x88\x28\x97\x9d\xd8\x9d\xd9\x4c\x2a\xab\x19\xb8\x5d\x3a\x62\xf2\xd5\x56\xec\xe6\x70\x6f\x6c\x55\xae\x74\x0f\xd5\xe5\xcc\x53\xeb\xa5\xc8\x27\x31\x41\x95\xf3\x5e\xb0\x5d\xee\x19\x2b\xd5\xce\xe0\x4a\x9b\x53\xa7\x17\x9b\x70\x18\x7c\x75\xeb\x5b\x80\x8c\xd0\x6e\xc7\xc4\x30\x6e\xe5\x05\xa4\x8d\x76\x63\x80\x84\x65\x37\x02\xf1\x9b\x35\xdd\x9e\x5b\x3a\x85\xd3\x92\x17\xd8\x0d\x2b\x70\x83\xc2\x27\xa0\xa6\x62\x64\xc3\x22\xec\x55\x2a\x80\x9a\xc3\xeb\xc5\x86\xd3\x3c\x48\x3e\xb3\x89\x6d\x45\x22\xaa\x09\x9e\xe6\xd0\x12\xd6\x1e\xa7\xc0\xdf\x69\x0d\x09\x16\xfc\x4c\x5d\xd0\x67\x7b\x73\x51\x99\x0e\xc3\xe5\xbb\xfd\x78\x6f\x52\xcc\x53\xd3\x8b\x9b\x81\x54\xe5\x95\x92\xc0\xed\xdb\x97\xd3\x41\x47\x44\x93\xea\xb0\xf2\xe6\x9d\xa9\xe2\x3e\x50\x97\xc3\x0b\x3a\xd0\x2d\x8b\x91\x4d\x33\x21\x2d\x3b\x8c\x31\x21\x2d\xc3\x73\xc0\x9d\x27\x28\x1f\xb3\x7d\x0a\x69\x88\x8b\xc0\x5b\x0e\x6f\xfe\xba\xee\xe9\xd3\x67\xe4\x32\xfa\xdb\x7f\xd9\xc6\xe2\xc5\x5b\x30\x58\x4c\xd7\x40\xaa\x60\xd6\x0f\x69\x17\x27\xa2\xeb\x7b\xae\x13\x10\xd8\x95\x95\xfc\x89\x9b\xe8\xd1\x13\x2a\x26\x40\xce\xbb\x2b\x00\x2a\x0f\xaf\xaa\xbb\x3a\x58\xcf\x8f\x5c\x41\x4e\x3a\x70\x95\x47\x10\x69\x32\xc1\xab\x1c\x8d\x09\x02\xa2\x72\xe0\x12\x39\x41\xa8\xdc\x25\xa8\x77\xab\x5c\xe1\xfd\x29\x40\x94\xd5\xeb\x8b\xc4\xa1\x54\xf2\xec\x06\xbc\xa9\x98\x01\x37\xb9\x5b\xf7\x33\x27\x8e\xf6\x50\xc6\xe4\xcc\x60\x4f\xee\x8e\xd0\x78\x55\xc7\x83\xf3\xf5\xd4\xb3\xd8\xd3\x3d\x2d\xa3\xc8\xf5\x5d\xcb\xa8\xe5\xc5\x9f\x54\x9c\xee\x9b\x7d\x05\xa0\x2d\xb3\xd7\x77\x73\x76\x27\x51\xdf\x57\x65\x6b\xe0\x24\x87\x97\x5f\xbd\x31\x5a\x27\x6b\x6b\x50\xb5\xd9\xdb\xa6\x7a\xd2\x2c\x30\x29\x40\xad\xcd\x50\x3a\x06\x8b\x93\xb8\x96\x4c\x20\x22\x47\x83\xdd\x08\x05\x19\xc7\x9f\x8e\x2d\x3d\xb9\x1f\x8c\xb4\xf7\x5c\x75\x9a\xe9\xee\x59\x98\x4e\xf7\xfa\x53\xa9\xab\x6f\xfd\x6a\xe2\xc7\x37\x3b\xae\xb7\xde\x78\xf4\x54\xa8\x9a\xc5\xb1\xba\xb8\x6e\xdd\xde\xdb\xc6\xa2\xb0\xcf\x0a\x13\x7e\xef\xd6\x70\x76\x75\xcf\x8d\x6e\x73\x1a\x16\xd0\xa1\x3a\xd1\x69\x39\x43\x43\x2b\xa5\xa3\x1f\x93\xbb\x57\x56\x7d\x90\xbd\xc7\x19\x02\x05\xb2\xbb\x4f\x36\x53\x9c\xa4\xb0\x9e\x00\x3f\x8e\x66\x0b\x23\x27\x81\x3f\xe4\x58\x1c\x42\x60\x19\x77\xa7\xa8\x35\x91\x34\xac\x56\xbf\x23\xad\x82\x5d\xdb\xa7\x6e\x36\x1d\xdb\xa7\x06\x69\xc1\x1b\xa7\x76\xdc\xce\x85\x69\x83\x95\xf4\xe4\x65\x2e\x2e\x18\x53\xea\x88\xdd\x50\x33\x60\xe4\x66\x9f\x72\x03\x27\x74\xda\x2f\x8b\x33\xa1\xb6\x37\xb3\x8f\xbe\x40\xcc\xb2\xda\xcb\x3f\x6c\xdc\x98\x40\x04\x59\x40\x1e\xf7\x8c\x32\x71\x38\x91\x6b\x66\x07\xe4\x71\x78\x9f\xd4\x35\x95\x76\x67\x08\xe7\x5d\xaf\x6a\x3a\xdc\x4e\xab\x69\x37\x37\x3b\x3e\xfa\x13\xf4\xc7\xaa\xf7\x48\xc7\x23\xa9\xe5\xef\x9c\x3b\xe8\x5d\x57\xaf\xeb\x59\x93\xd3\xe3\x57\x69\x42\x45\xc8\x17\x16\x32\x08\xbd\x98\x40\x41\x0e\xef\xcb\xba\xb9\x6a\x54\x7e\x3a\x7a\x9e\xd7\x05\xfd\x94\x06\x20\x90\xf7\xd3\xf9\xf1\xa3\xb5\x85\xb5\xe9\x47\x20\xe7\xba\xc7\x70\x4f\x22\x9a\x6b\xf6\xad\xe5\xd5\xe9\x19\x3c\x25\xa9\xce\x27\xe8\x56\x33\x9b\xe6\xf2\x1b\x51\x06\xe0\xc9\x49\xda\xec\xd9\xf5\xf6\x55\xe2\xef\x66\xb3\x51\x4f\xea\x69\x4d\x45\xb7\x06\x54\x72\xff\xc3\xa4\xcb\x83\xa5\x83\xdc\xca\x36\xe9\xae\x16\x54\xe5\x44\xc0\x23\x9b\x62\x58\x37\xb5\x8d\xea\x54\x37\x5d\x6c\x6e\x6a\x2e\x50\x9b\x04\xdd\x4c\x35\xdd\xc5\xbc\xbd\xe1\x5d\x7e\x85\x54\x0d\xd3\xe8\xe9\xfc\xeb\xae\xbe\x21\xbc\x2e\x9a\x7c\xd4\x33\x8b\x4b\xaf\xf7\x1a\x3d\x2d\xa5\xce\x21\xd6\xd1\x26\xb1\xc3\x27\xc9\xeb\x8b\xfe\xb8\x98\xd6\x94\xe6\x51\xc9\xe0\xeb\x66\x77\xb4\x64\xad\x39\xdc\x87\xaf\x6d\x30\x58\xbd\x92\x92\x60\xa4\x56\x28\x11\x46\x2b\x54\x3e\xea\x2f\x73\xd5\xfd\x48\xeb\x88\x2b\x98\x97\x9c\x32\x13\x51\x3c\xca\xef\x6f\xf2\xf7\x65\xab\x0c\xf3\x23\x3d\x2a\x32\x33\x30\x8f\xc3\xdb\x0c\x50\x1e\x47\xf3\xb4\x90\x31\x6e\xca\x82\x4c\x0c\xab\xaa\xdf\xb9\x00\xf5\x62\xa1\x7f\xc9\x50\xf6\xe8\xc5\x82\x14\x56\x76\x82\xff\x38\xbc\x1e\x1f\xb0\x65\x7c\xe8\x27\x80\x8f\x85\x0c\x51\x13\x58\xc7\xe1\x7d\x09\xa8\x8e\xc3\xab\x8f\x41\x3c\x58\x10\x2a\xb9\xb7\x9e\xb5\x0e\x5e\x94\xb0\x38\xe9\x20\x39\x0e\x6f\x58\xc6\x31\xfe\xfb\x5f\xd7\xa2\x32\xb6\xde\xd7\xbd\x90\x12\xe0\x31\x08\xf6\x9b\x23\x75\x40\x96\x64\x1c\x8e\xd5\x6a\x25\x20\xcb\x17\xe5\x3e\xd6\x7d\x94\x6c\x9d\x8a\x51\x15\xbd\x58\x18\x25\xb3\x72\xd2\x79\xbd\x8f\xbc\x98\x00\xc7\x71\xf7\xd1\x22\xee\x46\x2a\x2e\x64\xc1\x86\x28\x03\xe9\x38\xbc\x58\x18\xc9\x55\x97\x2f\xd9\x61\x1a\x49\xd5\x91\xb9\x1e\xa6\x64\x57\x77\x4c\xe8\x46\x60\xcb\xe6\x48\xa3\xa5\xab\x80\x33\xae\x37\x13\xa3\x65\x44\x36\x95\xe1\x55\x34\x00\x5e\x9a\xc3\xfc\x32\x40\x80\xce\x91\x0c\xb8\xfb\x0f\x3b\x1d\xb2\x23\x0e\x23\x19\x2a\xe7\x20\xba\x5b\x93\x05\x90\x8c\x7b\x88\x7c\xd4\x25\x9f\xce\xa4\x4e\x42\x3a\x77\x80\xd6\xd8\xf4\x22\x1b\xe6\x60\xed\x8e\x18\x1b\x64\x90\x95\x7d\x0e\xec\x8e\x23\xeb\xc2\x3e\xa8\x72\x0d\x74\x63\x5d\x4e\x2a\xe9\xd3\xf3\x6a\x79\xc0\x27\xc3\xbd\xc2\xed\xa3\x2e\x2a\x83\xe0\xac\x20\x6c\x71\x8e\xa1\x8d\x16\x32\x39\x54\x38\xd5\xa2\xc0\x77\x1c\xda\x4f\x86\x59\xd3\xd5\x2b\x07\x9e\x48\x04\x18\xce\x21\x76\xb2\x96\x0e\xf1\x1d\xbb\x16\x0d\x30\x1d\x87\xf6\xf8\x11\xfa\xd5\xb9\xa6\xc4\x6e\x17\xf5\xf6\x11\xb9\x25\xa8\x2c\xf4\x91\xb5\xb8\xba\xba\xcd\xc3\x5c\x49\x75\x37\x87\x28\x55\xfa\x44\x03\xb4\xb8\x8b\x53\xf1\x84\x48\x48\x18\xc6\x74\x4f\x38\x2e\x6e\x0c\x6b\x7e\x25\x39\xb7\x63\x19\x90\x82\x94\x00\xb8\xe2\x68\xf9\x0c\xf6\x08\xd4\x75\xac\xec\x30\x7d\x4c\x3b\x26\xfa\xe4\x20\xf8\xba\xa8\x25\x83\x95\x58\x8a\x1a\xec\x38\xad\x8b\xaf\x4e\x31\x6d\xfc\xdd\xba\x60\x14\x83\x8b\x3d\x4d\x9a\x43\x53\xa2\x4a\x0e\xb8\x89\x43\x3b\x1b\xb0\x89\xa3\x79\x18\x2f\x8f\x99\x93\x72\xb9\xa1\x1c\x08\x41\x25\x5a\xab\xc1\x50\xdc\x55\x59\xc4\x83\x62\xaf\xf4\x8f\xdd\x6a\xe6\x1f\x74\x50\xb8\xc5\xa2\x46\x34\x6e\xaf\xde\x60\xd8\xe3\xce\x3e\xf8\x92\x7d\x60\x9c\x38\xd6\xaa\x6b\x0e\x5d\x7d\x54\xc7\x86\x7a\x1d\x72\xd2\xb8\x4d\x8f\xe1\xef\xd0\x54\xc9\xc9\x6d\xbc\xb5\x85\x33\x1e\x95\x67\xe2\xfc\xe0\xc4\xe3\xc9\xa6\xe9\x94\x5e\xb5\x6a\xa7\xe0\x2d\x0e\xad\xa4\x43\xa7\xda\xee\xfe\x34\x04\x9a\x84\x29\x53\xc0\x45\x65\xc5\x21\x0b\x53\xcd\x03\x7c\x71\x68\xe0\x03\x7c\x71\xff\xc1\x54\x72\xdb\xa7\xe1\x0a\xf4\xc5\xa1\x95\x32\xd1\x17\xd5\x67\x45\x5c\x9c\xa4\xf0\x98\x09\xb9\xe8\x41\x31\x7d\xb9\x0a\xed\x48\x7e\xe6\x12\xbd\x2e\x91\x44\x86\xd8\x15\x2d\xac\x40\x2b\x0e\x8d\xa7\x63\xf3\xb3\xaa\x21\x49\x94\x45\x25\xe6\xf1\xda\x11\x16\xe0\x23\x3f\x1e\x5a\x16\x90\x89\xa3\xbb\xec\x19\xb9\xe2\xb8\xb1\x59\x76\xf7\x1c\x36\xcb\x38\xf2\xc5\xb3\x60\xcf\xb9\xaf\x53\xa0\x00\x4b\x71\x68\x02\x0b\x6e\xe8\xbc\x9f\x09\xc3\x58\xbc\xe1\x0f\x33\xb0\xa9\x97\x85\x60\x56\x86\x18\x80\xb2\x38\xb4\x28\x86\xd0\xc5\xe4\x15\x98\xa0\x2c\x0e\x6d\x7c\xa0\x2c\x0e\x6d\x21\xa0\x2c\x0e\x6d\x5b\x09\xb2\xa8\x1a\x18\xd8\x39\x9d\x03\x51\x16\x8d\x6d\x9f\xa1\xcb\x8e\xca\x6d\x18\x19\xdd\xed\x16\x59\xda\x3a\x07\x09\x2c\xc6\xd1\x7f\xfe\x2e\xa5\x5b\xfe\xa1\xab\x41\xf7\x1f\xee\xbf\x86\xcf\xb2\x25\xc7\x01\xf3\xd3\xb4\x01\x2c\x63\x8d\xfc\x48\x81\xc9\x31\x1d\xca\x39\xf0\xa5\x48\x46\xc8\x99\x4e\x60\x46\x00\x54\x66\x94\xdc\x25\xcc\x69\xe9\x54\xcc\x10\x8b\x14\xc5\x61\xe1\xc2\xa3\xb9\x07\x60\xc6\x5d\xdc\xba\x72\xbc\xbc\x60\x4f\xcd\x1b\xd4\xa8\x1e\x04\xec\x12\x40\x36\x0e\x2d\x6a\x41\x74\xb3\xe6\xb1\xc4\x68\x24\x29\xff\x04\xa3\xf1\xc8\x6b\xab\x20\x8e\xa5\x17\xab\xca\x71\x31\x48\x38\xa4\x76\xb7\x90\x43\x7a\xd9\x14\x86\xab\x78\x41\x11\x5a\x64\x55\xd4\x03\x4d\x54\xf7\xc5\x68\x06\x39\xf8\x11\xbb\xda\xb5\xd2\xee\xaa\x61\x20\xc8\x91\xa2\x19\x2a\x7a\x0e\x8a\x49\xc5\xa3\x56\x23\x41\x74\x10\xfc\xdc\x8c\x9d\x31\x61\x76\x49\xd8\x46\xed\xbc\x81\x3f\x8e\xd6\x91\x48\x6d\x71\xf8\x15\xc3\x80\x29\x04\x09\xd4\x7a\x69\x7f\x91\x3f\x21\x1d\x8b\x96\x0c\x70\x1c\x47\xaf\xd6\x80\xd7\xa2\x87\x01\xd7\x1b\xad\x3b\x20\x34\x8e\x0e\xc9\x0a\xcc\xa8\xda\x76\x62\xb8\x6c\x16\xce\xe8\x17\x77\x8a\x10\x23\x2a\xbe\x81\x13\xae\xa6\xa5\x08\x0c\x19\x6e\x3a\x02\x3d\xbb\x27\x2c\xb4\xf9\x20\x4f\x27\x70\xa3\xaa\x2b\xf8\x8c\xb5\xba\x4f\xb0\x83\x1a\x17\x13\x53\xf9\xc1\xa3\x30\x73\x9b\xf9\x15\xdc\x71\x78\xf8\x70\xa1\x99\xc3\x43\x36\xbd\xd3\x18\x96\x79\x00\x7f\xa1\xbf\x06\xa7\x28\x92\xc6\x92\xfe\xd9\x8c\x8a\x21\x69\x55\x67\x68\x07\x55\xa2\x8d\x95\x87\x89\x5e\xa6\x67\xac\x27\x08\x7b\xa7\x0a\x76\x88\x38\x3c\x3c\xfd\x5c\xdb\x69\x7e\x88\x53\x63\x2b\x22\xa6\xd8\x8d\x73\x38\x18\x38\xa7\x6a\x34\xa8\x8c\xfb\x2b\x8b\x50\xaf\xad\x0b\xc4\xa8\x2d\x02\x20\xc6\xa1\xe6\x0c\x10\xe3\xd1\x15\x9c\x83\x30\x91\xe5\xfe\xc7\xe0\xa9\xfa\x19\x5c\xdb\xf5\x2c\xfc\xda\xb6\xa5\xf5\xa9\x40\xa4\x0d\x9c\x60\xf5\x0f\x0e\x39\xe3\xf0\x54\xc3\x0c\xd5\xe7\x03\xfe\xa7\x8a\x0b\x40\xe3\x50\x89\x0e\x83\x4c\x5a\x96\xf6\x84\x86\xff\xc8\x9d\xd0\x33\xe3\x76\xb0\xf4\xea\xb6\x27\x12\x88\xc7\xc6\xf9\x08\x2f\x18\x55\xaa\x44\x71\xd4\x1c\x10\xb8\xb7\xf6\xc3\xd3\xfa\x28\x00\x38\x71\x66\x1c\x53\x40\x8c\x64\x7b\x76\x58\xd5\x6d\xb8\x07\xb9\xb7\xd3\x29\x31\x4c\xe3\xa1\x22\x1d\xf2\x3d\x2f\x2d\x43\x6f\x16\xed\x27\x89\xcc\x38\x3c\xd7\x64\xe5\xe8\xea\x16\xa1\xa9\xd4\xad\x82\xbe\xd6\x95\xe1\x43\xa6\x86\xa0\x1d\xe6\xf3\xd6\xba\x10\x5c\xdd\x75\x84\x6e\x91\x19\x8b\x56\x84\x20\x88\xa4\xcb\xa8\x13\x9a\xb1\x65\xf9\x44\xf6\xe4\xd9\x99\xcc\xf2\x17\x11\xbd\x74\x0b\xfd\x4c\xcd\x38\x04\xcd\xd2\x22\x31\xb9\xbc\xeb\x4a\xdd\x53\x86\xa7\x6f\xdf\x34\xf7\x98\x8e\x77\x02\x36\x76\xd2\x85\xcc\xf9\xe3\xca\x96\x13\x04\x78\xe3\xae\xcc\xf2\xa7\x47\xd0\x7f\x72\x26\x16\x2f\xec\x2f\x78\x03\x48\x8e\x43\x4d\x79\xfe\x9c\x08\x4a\xa7\x86\xc7\x74\x4d\xf9\x1a\xe7\x6f\x8a\x31\xac\x91\x66\x1e\xb9\x0e\x54\x6b\x80\xa6\xf2\x1e\x78\x8f\x43\x4d\x73\xe2\x07\xa3\x62\x3b\x0f\xad\x34\xf1\xa7\xcb\xf3\x3c\x72\x30\x74\xf3\xc8\xb9\xb4\x21\xc9\x51\xd8\x9f\xdb\x56\x19\x81\x19\x44\x34\x60\xcc\xcd\x1d\x03\xf0\xe5\x09\x98\xe4\x50\x63\x04\x4c\x72\xa8\xae\x82\x25\x39\xbc\xf4\x07\x32\x72\x68\x91\x99\xe2\xfe\xeb\x66\x3b\x8b\x44\x1d\x95\x69\x16\x8f\x01\xb4\x77\x9a\x4a\x5c\x93\xc5\xac\xb6\xc1\xc4\x54\x49\x2c\x94\x78\x8a\xdb\xa5\x89\x65\x56\x27\x83\x81\xe0\xf1\xa2\x52\x3a\xd3\x47\x15\x4d\x70\xca\x19\xc3\x02\xd2\x5b\xf8\xcb\x4c\x7d\x91\x36\x9a\x7b\xd5\x65\x69\x0c\xca\x2e\xea\xc8\xaa\xc1\x04\x2c\xca\xa1\x1a\x3a\x45\x2e\x0e\x14\xc1\x49\x6a\x52\xed\xdf\x53\x1f\x17\xb2\x5b\xcf\xd9\x72\x7a\x99\x14\x70\x29\x0d\xc5\x98\x64\x19\x57\x4f\x98\x2a\x9e\x81\xf6\x34\x7b\xf6\xc4\x17\x7b\x42\x55\xb8\xbf\xa8\xce\xcf\x9e\x8d\x33\xf2\xee\x16\xb6\x2e\x94\x4d\x8d\xe1\x33\x39\x2b\xec\x6c\xca\x59\xed\x6e\x77\x7e\xd0\xaa\x26\x5a\x68\xc9\xf6\x24\x1f\xce\xa8\xc8\x97\xd9\x20\x5b\xdb\x61\x70\x1b\xda\x0f\x37\x83\xb7\xa1\xda\x25\xe6\x30\x3c\xc5\x3f\xec\x3a\xd5\x0e\xe3\xf6\xa8\x75\xe4\xce\x66\x42\x13\xd2\xcb\x02\x32\xb3\xea\x57\x2e\x9a\xcf\x4e\x0f\xca\x69\xa2\x63\x92\x89\x78\xce\x30\xf2\x9c\x36\xc2\x79\x73\xcb\x11\x93\xaa\x3e\x33\x71\xd5\x51\xd9\x9a\x44\xc6\x2c\x3b\xa2\x11\x58\xd3\xce\xd4\xe7\x55\x63\xd0\x24\xde\x54\x8d\x0c\x44\xcd\xd1\x6d\x1b\xb3\xaf\xd6\xeb\x39\x73\xdc\x7c\x34\xd9\xad\x4e\xa7\x9c\x1b\xf9\x7b\x9a\x46\xec\xe7\x37\x58\x98\x9c\x0f\x3c\x5c\x15\xb2\xe7\xf2\x7b\xba\x84\x8a\x0a\x9a\xf0\x04\x2a\x73\xa8\xfe\x08\x95\xd9\x93\x80\x2c\x16\x12\xb9\x1a\x74\xcc\x01\x94\xd7\x9c\xc2\xff\x6b\xb0\x99\xc9\x8c\xe1\x36\x53\x66\xbc\x7c\x66\x0b\x23\xf2\x26\x1e\xa6\x56\x21\x30\x30\x77\x1b\xbe\x98\xd4\x8a\x4e\x91\x19\x41\xb5\x08\xd8\xcb\xa1\xe8\x0e\xea\xe5\x50\x5e\x9e\x38\x9b\x92\x74\x6e\x02\x73\x39\x54\x2c\x27\x96\xd2\x43\xb2\x73\x49\x76\xdc\x43\x1a\x44\x49\x1b\x3d\x81\xb3\x1c\x8a\xfd\xf3\xce\x8e\xd3\x41\x50\xb6\x0e\xf7\xd3\x5d\xb8\x91\xa3\x1b\xa8\xa5\xf3\xf7\x17\x32\xd1\x9c\x82\x7d\x18\xae\x08\xba\xe5\x1e\x21\xa3\xba\xa5\x43\x76\x53\x48\x8e\x1c\xfb\x8d\x97\x35\x5c\x77\xaa\xaa\x8e\x7c\xc1\x0e\x44\x82\x9f\x29\x6c\xe5\x24\x65\xf1\x04\xb6\x72\x28\xc7\x03\x5b\x59\xa7\xdb\xf0\x91\x53\x14\x5f\xf0\xfb\xf0\x30\x62\x60\x55\xf4\x9e\x8f\x74\xd6\xdd\x43\x32\x50\x25\xf7\xf9\xaa\xaf\xbb\x8b\x5f\xdc\x92\x6c\x2e\xd5\x4e\x37\xe5\x3b\xa9\x8a\x7d\x92\x7e\xa2\x6e\x3e\x38\xae\xa2\xa5\x38\x95\xaa\xe8\xc0\x54\x0e\xaf\x79\xe6\x66\xbe\x29\xf2\xcd\x2f\x6b\x65\x9b\x7c\xc4\xa9\xd8\x71\x14\x52\x05\xfa\xc9\x25\xa5\x97\xcf\x80\x57\x96\xe1\xe2\x82\xe0\x2f\x4b\x06\xa1\x72\x4f\xcd\xe2\xc5\x5e\x74\x9e\x69\x19\x9e\xb6\x92\xef\xa2\x3a\x03\x5d\x59\xe5\x16\x0b\x1d\x52\xf9\x10\x18\xcb\xa1\x39\x7e\xfd\x54\x38\x38\xc7\xc2\x58\xda\x55\x90\x2b\xeb\x08\x7f\xaf\x14\xf0\xd9\x4b\x5f\x5a\x3b\x98\x6f\x44\x1c\xa0\x2a\x87\x63\x4e\x70\x4a\x0d\x3c\x80\x53\x0e\xe5\x57\xb0\x29\x8f\x05\xde\xf8\x5c\x18\x3c\xfb\xe1\xe8\x0c\xd5\xd0\x8d\x14\xac\xc9\xfd\x0f\x43\xad\x52\x20\x8e\xec\xf2\xbe\x91\x94\x5f\x13\xb0\xc9\x5d\x1b\x03\x81\x69\x29\xfa\xad\xaa\x34\xdc\xfd\x83\x95\x64\xb7\x2f\x14\xbd\x70\xaf\x26\x3c\xa5\x3e\x9b\xe0\x53\x0e\xa5\xd3\xa5\xa2\x47\x46\xa7\x09\xf2\xe4\x11\x6e\x4f\xa0\x27\x87\x92\xae\xd0\x93\x93\xbc\xce\x73\x35\x67\x88\x69\x87\x9d\x8d\x2c\xd0\xfd\xc8\x3f\x34\x6f\x39\x7a\x43\x31\xcc\x4c\xb0\x50\x01\x87\xab\xb6\x59\xd8\xff\xb7\x27\xf1\x71\x84\xde\x2a\x6a\xf8\x02\x3b\x32\x8c\x81\x5d\x26\xbd\xd4\xb6\xb4\x92\x09\xe5\x57\xd2\x5f\xe8\xd2\x12\x7f\x39\xf2\x33\x96\x0b\xd2\xb2\xf4\xc3\x71\xb6\x50\x02\x01\xfa\x9a\x2b\xf5\x3c\xe8\x12\x58\x92\xbb\xbf\x94\x30\xa5\xb6\x3b\x7f\x0d\xc7\xcb\xa4\x0c\x57\x81\xe5\x41\xeb\x53\x0a\x49\x2c\x49\xbd\x00\xc0\x92\x1c\x0a\x2e\x6b\x78\x4c\x97\xd5\x7e\xfc\x41\xd7\xc3\x63\x6a\xe3\x84\x62\x78\xad\xbd\x22\xdb\xa6\x0d\x54\x43\x05\x8f\x15\xca\x30\xe8\x53\xc0\x52\x0e\x60\x56\x26\x48\x94\xa5\x68\xa8\x02\x8a\x72\x2f\x2e\xdd\x8a\x9c\x12\xc6\xa1\xfb\x4c\xff\xfd\xe9\xf6\x07\x2e\xe5\x50\x14\x01\x96\xb2\x90\x3c\x79\x02\x4b\x79\x88\x07\x3a\xc1\xa5\xac\xcb\x23\x4a\x60\xa7\x44\x6a\x01\xb3\xa1\xe0\xb4\x4c\x88\xe0\xba\x73\x4b\x09\x7a\xc4\x5c\xa9\x81\x66\xad\xce\xa3\xcf\x68\xa3\x9e\x92\x99\xfd\xb5\xa6\x8f\x54\xc1\xb4\x60\x56\x21\xb2\x30\x4f\x30\x2a\x87\xec\x7f\x99\x9c\x5b\xc2\xb9\xd4\x45\x95\x12\x56\xc6\x73\xf8\x4c\xa7\xdc\xe4\x8b\x4e\xa1\xc9\xae\x25\xb8\x32\x9d\xf5\x2e\x72\x48\x06\xbc\x8b\xd4\x90\x04\x5c\xe5\x50\x90\x58\x67\x1e\x50\xba\x7b\xb2\x35\x60\x4d\x40\x57\xd6\xe5\x58\x89\xe4\x94\xa5\xae\xbc\x71\xf4\x99\x33\x01\xc7\x02\x9f\x72\xe4\x6e\xbf\x1c\x1d\x02\xed\x22\x8f\x90\x8c\x04\x7c\xca\x43\x25\x76\x79\xcb\xa8\x91\x6d\x5d\xd9\x0d\x66\xd0\x2b\x47\xad\x6c\xeb\x92\x50\x20\x61\x2e\x6e\x16\x65\x3d\xeb\xca\x8d\x61\x65\xec\x57\x94\x3f\x30\x22\x0f\x75\x21\x31\x22\xfb\xe1\x7e\x35\x6a\x72\xba\xc9\x52\xad\x74\x3e\x9f\xb0\x45\xea\x7a\x14\x1e\xdd\xca\x38\xd3\x24\x99\x32\xed\xa3\x07\xc4\xac\x3e\x3a\x88\x25\xb2\xa3\xf3\x43\xcc\x63\x52\x13\x73\x54\x1b\xa9\x21\x9a\xe3\x24\xe7\xea\x5c\x06\x39\x68\xd2\x04\xb5\x71\xd7\x45\x8f\x3f\xd9\x2b\x8a\xc5\x92\x63\x39\x14\x6e\xf6\x42\x27\x55\xb0\x1d\x07\x99\x80\xe6\xfa\xb2\x15\xff\x78\x2c\xce\x14\x7d\xb9\x05\xf6\xb4\x08\xf4\x08\x78\xe5\x3c\x61\x54\x55\xeb\x21\xa8\x8f\x55\xf3\x1d\xa0\x8f\x43\x0a\x02\xcc\xe3\xee\x96\x1f\x99\x17\xd6\x3f\x4e\x03\x61\x7e\xbc\xb0\x07\xf2\xf9\xe5\x2a\xd4\x02\xca\xca\x96\x20\x24\xd1\xdd\x2e\xb2\xe3\xd4\x0d\xf4\x3c\xf0\x3f\x87\xf3\x9c\xa8\x81\xae\xe7\x29\xe8\x3f\x69\xf3\xa6\x90\x8f\x1d\x7c\xb8\x79\xa2\x06\x7a\xec\x80\x7f\x2c\xfa\x46\x9e\x87\x30\xc1\x36\x07\xa7\x18\x16\x7e\x84\x61\xb0\xc0\xeb\x54\x31\x56\x02\x14\x25\x6b\xa7\xec\x50\x03\xee\x59\xb2\x87\xd4\x5b\x94\x7d\x38\x9d\xe7\x3f\x1b\x28\xcf\xee\xdf\xc3\xf2\x70\xd0\x61\x09\xb7\x2f\x0c\xf0\x2c\xe4\x0f\x41\x58\x06\x13\xb2\x0c\x38\x45\xc2\x40\x6a\x41\x05\xf9\xf1\x30\xf5\xc2\x49\xb2\x81\xd9\xfc\xdd\x04\xd0\x14\x36\xf1\xc0\xae\xe9\x0f\xd2\x77\xca\x66\xb3\x94\x7a\x3d\x7d\xac\x9e\x5c\xfa\xb8\x79\x69\xe8\xac\x0f\x40\x64\x12\xeb\xd3\x2b\x46\xed\xb7\xa7\xa9\xee\x48\x35\x39\x85\x85\x2c\xda\x92\x4f\x99\xec\xf0\x8f\xea\x1f\xb4\x97\xcc\x14\xc1\x1a\x2c\xc8\x91\xbb\xcf\xc0\x88\x23\x8b\xb3\x7b\xd1\xb5\x80\x82\xdc\x87\x92\x01\x37\x77\x2f\x92\xb2\xf8\x8f\xfd\xb0\x93\x78\xf2\x68\xb0\x3e\x51\x14\x67\xf7\x77\xa8\x0b\xdb\xfd\xec\xd9\x13\xba\xc5\x0d\xa5\x9c\x06\x94\xc8\xea\xf5\xc8\xa9\x43\xac\x26\xc9\xd3\x9c\x06\x86\x68\x9c\xa9\x34\xa2\xa8\x9c\xdd\x2d\xe4\x57\xb7\x45\x6c\xe4\x71\x20\x56\xa6\x8b\x19\xcf\xc4\x44\x1a\x8f\x7f\x92\x80\x2f\x0e\x7b\x82\x3e\x98\xbb\x69\x64\x8e\x40\x9e\xa5\xee\xc5\x97\x74\xb9\xe2\x39\x7b\x65\x09\x2f\xb3\xad\x09\x93\xf4\xf4\x77\xce\x1d\x74\xf8\x94\x5b\x7b\x58\x06\x80\x2b\xc8\x26\xc0\x4b\x1e\x32\x96\x33\xf0\xbd\xb0\x17\x22\x57\x41\x14\x4f\x78\xb5\x8c\xf7\xcc\x6b\x4e\xe7\x26\xf0\x6b\x72\x17\x87\x8d\xf9\xd1\x6b\xef\x18\x74\x78\xca\xdd\xae\x6a\x86\xda\xb0\x81\x91\x1c\xb9\x77\xa6\x0b\xe3\x3c\xe1\xdc\x9a\x3b\x84\x78\x8e\x3c\x1d\xa2\x48\xea\xa1\x79\x8a\x7c\x61\x0f\xc9\x3c\x44\x22\xf1\x99\x20\x92\xda\xb2\xcf\x99\x1e\x56\x3c\x3f\x78\xf5\xda\xb4\x67\xcb\xc9\x4c\x4e\xeb\xe1\xc2\x1d\xc8\x3b\x68\x81\x26\x8b\x9e\x74\x22\x4d\x26\x15\x83\xeb\x02\xeb\x35\x01\x97\xdc\x9d\xb2\x2a\xb9\x84\xab\x47\x1a\xa3\xe9\xfc\x1b\x0e\xa2\x35\xf8\x24\x1c\x64\xd8\x5d\x4d\xc6\xdd\x67\x7b\xe5\x76\x86\x1f\x27\x41\x94\x1d\xbb\xed\xb8\x76\x1d\xae\x30\x99\x8b\xc0\xa5\x99\xe7\xe9\x39\xf6\x7b\x4e\x8f\x67\xe4\xb4\x65\xe7\xff\x94\x2e\x3b\xd4\xd3\xb0\x71\x46\x41\xa0\xa5\xa2\x83\x90\x95\x33\xe7\xe0\xcc\x3e\xd1\x41\xb0\x33\x96\x7b\x16\xb7\x5b\x03\x51\x00\xb0\xdc\x1f\xf9\x92\x13\x42\xeb\xc9\x9b\x51\xc7\x44\xb0\xac\x8a\xa2\xa7\x00\x19\xda\x95\x4f\x38\xb5\xd2\x27\x08\x96\x53\xc9\x1b\x00\xcb\xfa\xf3\x24\x91\x73\x61\xa0\x8e\x00\x66\xb9\x0b\x53\x13\x76\xe8\x31\xff\x26\x7b\xb7\x07\xbb\x59\x05\x9c\xa1\x5b\xf5\xf4\x0f\xba\x7c\x27\xb9\x61\xb6\xb5\x52\x6b\xe4\x06\xc2\xb2\x24\xd3\x20\x38\x45\x23\x37\x08\x96\x63\x4c\x3b\x43\x60\xaa\xbb\xec\x49\xad\x83\x6a\x51\x97\x97\x4e\x1f\x40\x58\xd6\xe5\x58\xb6\x98\xd1\x74\x48\x3d\x9f\x9c\x2e\x66\x5b\xc1\x62\x5a\x1a\x62\x23\x05\x46\x59\xfe\xb9\x0a\x84\xa2\x2c\x72\x86\xcf\x93\xab\x5c\xf3\x00\x80\x6d\x99\x86\x7a\xb0\x2d\x47\x2e\x34\x71\x9b\x3a\xfc\x9c\xa0\x68\x98\xf8\xed\x24\x47\x75\x72\x9e\x97\xeb\x19\x99\xb4\xc2\x0a\xda\x0e\x08\x96\x43\xb7\x32\x10\x2c\x77\xc3\x16\xe0\x12\xa5\xfb\x2c\xc1\xe3\xa3\xcf\xe3\xee\xee\x26\x87\x92\xe9\xfe\xce\xcf\x4d\xcc\x5c\x7c\x0a\x60\xee\xb0\x4f\x01\xec\xf0\x85\xd0\x15\x19\xc2\x67\x3f\xe8\x13\x96\x70\x1d\xa4\x81\xb6\x8c\x3c\x1a\x9f\x86\x13\xcf\x06\x5a\xf7\xf2\x58\x6a\xfc\xd6\xf4\x7e\x91\xcc\xd0\xec\x54\x97\x49\xac\xa1\x34\xa0\x5c\x1e\xe0\x99\x4c\x50\x2e\xab\x21\xdf\x97\xd7\xbe\x6e\x3c\x20\x2f\x77\xff\xac\x29\x98\x4b\x4b\x68\xd9\x64\x13\x5c\x26\x47\xd2\xa2\x7f\x29\xfe\x64\x7b\x72\xaf\x69\xc5\xd0\xe1\x61\xbd\x9f\xf5\x52\x02\x59\xc8\x44\x4e\x20\x63\xee\x3f\xa8\xf7\x70\x91\x68\x1c\x29\xc7\xfc\x50\xd7\x61\x47\xfc\xc6\xd4\x64\x93\xe7\x93\xdf\x0f\x9e\x2f\xa4\x1c\x2b\xcd\x89\xf2\x23\x92\x68\x64\x61\xa5\x9f\xee\x4b\x52\x6e\x9a\x28\xf6\x89\xce\x16\x95\x22\x9f\xed\x06\xa3\x23\x77\xa1\x79\x68\x80\xc8\x1c\xe6\xdf\x01\x21\x33\x34\x27\x89\x90\x39\x5d\xfa\x44\xc8\xf4\x26\x00\x50\xcc\x61\x6e\xa5\xab\x2a\x58\x42\x1c\x2e\xf5\x7d\x36\xd1\x65\xda\x24\xef\x14\x2e\x32\x25\x99\x1d\x07\xec\xcb\x61\xe2\x9a\xcb\x08\x4d\x2f\x3e\xae\x96\x3b\x8a\x36\x5a\x4a\xc8\xfe\xe3\xa9\x87\xc4\x82\x7e\x39\x4c\xba\x01\xe2\xe5\x30\xbf\xcd\xe5\x5d\xae\xb9\x2f\x80\xbc\x1c\x91\x55\x7d\x3c\x33\xa8\xbc\xd7\xe5\xf4\x00\x73\xb9\x1b\xa4\x2a\xfd\x86\x9d\xf5\x9e\x1b\xdd\x3f\x98\x37\x78\xe7\x65\x22\x6a\xe4\x82\xab\x6b\xdc\x28\xbe\xb0\x7e\x90\xc2\xab\x3b\xa1\xfe\x4e\x8c\x45\xfb\xd3\xc7\xe5\x12\x67\xcb\x43\x77\x71\x4d\x6c\x56\x92\x4b\xdd\xdf\xfb\x98\x04\xca\x84\x37\x89\x8d\x19\x9a\x4d\x2e\x2c\xcd\x26\x48\x01\x1a\x73\x98\x70\x44\x68\xcc\xa5\x2b\x38\x88\x97\x23\x1c\x62\x8a\x13\x14\x0e\xd3\x9d\xfa\x4c\x16\x06\x07\x85\xb6\x6f\x72\xa5\x8b\xb8\x99\x99\x3b\x5a\xe8\x4b\x0f\x8d\xb1\xa2\xd3\xe1\x6a\x8d\xf6\xe6\xef\x52\xdb\x9f\x4e\x0a\xd6\x68\x53\x8e\x5c\x29\x75\xd8\x5b\x14\xfa\x43\x37\xd4\x0b\x2f\x64\xb3\x72\x5c\x33\x97\xca\x3f\x2a\x2e\x50\x0c\xc3\x28\x52\x2f\x9f\x2e\x5d\x92\xa7\x73\xb5\x55\xf7\x74\x1d\xbd\xf2\x22\x79\xf9\xe2\x94\x58\x3c\xf7\x89\xf5\xb2\x4f\x1c\x6e\x8a\x1a\x48\xc2\x57\x06\xdd\xf0\x11\xa1\xa3\x26\x6c\x00\xd7\x72\x6f\x0d\xaa\x5a\xca\x8f\x18\x37\xae\x95\x22\x2e\x75\x2d\xa9\x04\x8b\x00\xc2\x5c\xd1\x0c\x09\xc2\xdc\x6e\xe4\xff\x18\xfb\x93\x24\x7f\x76\x5f\xbf\x12\x9c\xbf\x55\xdc\x1d\x94\x3b\x7b\x9a\x5d\xfb\x4f\x6a\x5c\xb5\x07\xef\x98\xa6\x81\xa4\x67\x2f\xa5\xfd\xa7\xe1\x1c\x46\x5c\x49\xd9\xfc\x72\x10\xe6\xe1\xf8\x92\xce\x1e\x04\x41\x00\x9f\xc6\x8b\x7a\x07\x36\x8b\x87\xf8\xd5\x86\x14\x78\x0c\x33\x26\xc3\x12\x7c\x2e\x79\x55\x05\xf8\x5c\xd3\x87\xfe\x71\x25\x21\x1a\x6d\x8c\x39\xb9\x0c\x18\x73\xf9\xf4\xb3\xc5\x05\xca\xfe\xf7\x20\xac\xeb\x50\xff\x94\x3d\x7f\x12\x2f\x1e\x6d\x28\xdc\xdb\x1e\x8d\x0e\x05\xa5\xd3\x0d\xf9\x71\x51\x15\xbf\xb4\x2c\x8f\x44\x38\x3e\xeb\xa0\xf8\x78\xf3\xe3\xa5\xd7\x83\x9d\xe1\x1c\x4c\xa1\x67\xaf\xaa\x6a\xb2\x4a\x16\x0a\xd7\xbd\x59\xae\xf8\xd4\xdd\x41\x94\x58\x9d\x4f\xdd\x64\x51\x47\xe3\xbb\x3d\x6a\xda\xbc\x28\x7b\x34\x34\x54\xf3\x0a\x16\x5d\xd2\x80\xe9\x41\x5a\xd7\x2d\xee\x51\x28\xf7\x16\xea\x69\x1a\xa2\x65\x7f\x99\x16\x4f\x3f\xe2\xa7\x66\x88\x89\x07\x11\xdd\xcb\x6a\x61\xe9\x74\xb5\x12\x96\x6e\xc8\x00\x81\x98\x8b\x56\x51\x45\x4c\x24\xf4\x76\x02\x63\x2e\x1d\x86\x14\x7d\x3a\x83\x8b\x3c\x23\xde\xdc\x04\x12\x6a\x80\x37\xd7\x34\xe3\x14\x61\x2e\x79\xdb\x04\xaa\x5c\xd3\xa9\xe6\x19\x76\x16\x5d\x82\x47\xb4\x8e\x17\x0f\xaa\x2a\xaf\x72\x9e\x2d\x4d\x23\xbf\x3d\x04\xf2\xdc\xd3\x47\xf3\x08\xaf\x57\xc0\x8e\x3b\x87\xdc\xfe\xd1\x56\xc2\x2d\x01\x24\xb9\xa6\x71\x29\x80\x71\x4d\x13\xbb\xc7\xb0\x9e\xf2\xee\x47\x97\x68\x99\xf7\xa3\x4b\xb4\x37\x4c\x0f\x4b\x41\x03\x38\x70\xe5\xb2\xcb\x50\x58\xb9\xdc\xca\x1f\x65\x3e\x40\xe7\xb2\x92\x1d\x98\x73\x49\xd6\x06\xe6\x5c\x52\x88\x02\x73\x2e\x3a\x9b\xf2\xd1\x6a\x79\xea\x06\x5b\xee\xd4\x15\xe2\xb9\x34\xc9\xa6\x7b\x2f\x7b\x88\xde\x32\xe4\xa7\xd3\x4f\x89\xda\xce\xc2\x79\x4d\xc3\x28\xf1\xe7\x34\x38\x79\x10\xa8\x8d\x72\x05\x16\x5d\xde\xcb\x99\x6b\x22\xef\x2a\x1e\x4c\x1d\xb5\x43\x79\x6e\x14\x79\xd6\x0d\x7b\xfa\xd1\xcd\xeb\x24\x66\x57\xdd\xd0\x73\x03\x16\x07\xf4\x5c\xf6\xae\x18\xe4\xb9\x7c\x6e\xba\x35\x32\x37\xb8\x2e\xce\xe7\x47\x85\x27\x25\xe3\xc4\xd6\x61\x56\x8f\xb7\x4a\xce\xae\x10\xb8\xb3\xa1\x93\xc0\xa0\x2b\x7b\x20\x9e\xcd\x28\xfd\xc1\xc5\x30\xcc\xa1\x73\x02\xa5\x11\xfc\x4c\x2d\xc5\xb3\xc5\xeb\xe4\x0f\x42\xfb\xd0\xb8\x67\x4f\x35\xea\x8a\x48\xed\xb5\xe6\x06\xad\x73\xd8\x04\xad\xf3\xea\xef\xc1\xef\xcd\xa0\x68\x00\xd8\x9d\x73\x98\xea\xcd\x8c\x21\xfd\xad\xad\xa4\x1b\xf5\x63\x20\x34\xb7\x76\xb1\xe9\xea\xe9\x2a\x41\xd8\xd6\xc2\xe6\x01\x8a\xd6\x2b\xd9\x67\x1b\x8d\xf8\x59\x39\xc2\xfe\x81\x08\x8a\x08\xd2\x40\xd3\x65\xbd\xdb\x9e\x4f\x55\xdd\x7e\x61\x61\x98\x81\xc0\x28\x5a\xfa\x3c\x48\xdb\x8a\x7e\xe0\xd7\x65\x4f\x18\x8f\x4e\x00\x5e\x28\x3e\xc6\x40\x73\x80\xb7\xb8\xcd\x9e\xf0\x7c\xf8\x5b\x55\x73\xdb\x21\x88\x1e\xcf\xc2\x45\xc3\x39\xaa\xff\x9d\x12\xcd\xa3\xff\x9d\xd7\x9c\xa0\xdc\x0d\x6f\x0d\x9e\x2d\x6f\xcb\xae\x8d\x4c\xba\x87\x63\x79\xaf\x6a\x29\xcb\xdb\x79\xff\x67\x68\xe4\xa4\x06\x40\xf1\x12\xf3\xd9\x52\x36\x9b\xf9\x7b\x28\xb7\x72\xa0\x17\xea\x6e\x1a\xdb\xe2\x55\x6a\xee\xfe\xcf\x84\x66\x7d\xbf\xc7\x66\x09\xbe\x30\x1c\xdd\xdc\xac\x30\x98\x32\x58\x77\x4d\x93\x81\x57\x63\x49\xc5\x23\x80\xef\x9a\x16\x07\xaf\xf2\x33\x0c\xef\x55\x7d\x98\xfc\x9f\x11\x60\xbe\x00\x74\xd7\x3a\xec\xeb\x55\x94\xe6\xd8\xf0\x9e\xbb\x0f\xfc\x90\xd7\x0c\xd5\xdc\x7b\x08\x28\x1b\x33\x72\xcf\x69\x1b\x31\xcc\x7b\xe3\xd7\x0d\x81\xe5\x0d\x62\x58\xeb\x43\xfa\x9e\x6c\xfe\x80\x87\x27\x5d\xfb\x6a\x5e\x0e\x16\xf4\x78\x9b\xd3\x9e\xbe\xf1\x6a\x5f\x4d\x10\x50\x62\x69\xfc\xd9\xbb\x03\x98\xb1\xe6\xbd\xa8\xd0\x62\xde\x78\xbe\x44\x9c\x56\xaf\x0e\xb4\xd8\x36\xa6\x79\x11\xba\xbc\x09\x05\x27\x2c\x1a\x42\xf1\xc3\x0f\x51\xfa\xd8\xd3\x87\xaf\x1a\xd3\xf2\x84\xbf\x00\x13\x96\x9d\x18\xef\xd8\x93\x97\xf2\xb0\x47\x37\xa4\xa2\xc0\x60\xf5\x84\xff\xbd\x7b\xe3\x40\x8c\xd8\xc8\x60\x8a\x9e\xef\x54\x89\x0b\xdb\x03\x00\xac\xe9\x53\x08\x9e\x57\x64\xf1\x45\x19\x88\x15\xf9\x7a\x69\xe1\xed\x32\x28\x5e\x3b\xac\x82\x28\x5e\x15\x7c\x8c\xf1\x72\x97\xaf\x46\x01\xdc\xae\xc8\x4e\xed\x8d\x74\xa1\x95\x28\x08\x5d\xb1\x7b\x93\xe5\x96\x9d\x20\x49\x80\xc5\x95\xe4\x58\xc0\x6f\x45\x16\x7f\xe8\xbe\x50\xa4\x0c\xd9\xbb\x60\x71\xb6\xbc\xbf\x13\x67\x2b\x79\xcf\xfb\xde\x3b\x84\xbd\x59\xd8\x17\x58\xbb\xef\xb3\x9b\x42\x57\xa2\xeb\xf0\x86\xf5\x7d\x76\x89\x74\xe5\xb3\xdb\xc5\xb7\x9e\x5d\x3c\x5d\xf9\x0c\x57\x83\x1f\x33\x7c\xa2\xc3\x8a\x71\x9d\x17\x27\xa0\x70\x35\xaf\xca\x5e\x7d\xa2\xc0\x0d\x19\x20\x72\x35\xaf\x15\x5f\xc3\x68\x78\xdb\xf0\x0a\x00\xea\xcd\xf4\xbb\xef\x47\x8a\xc9\x58\x36\xce\x16\xe3\x46\x7a\x13\xb0\xb1\xb7\x3c\x69\xbc\x32\x56\x17\xc7\x6b\x4d\x68\x09\x9a\x0b\xf7\xca\x17\xbb\x73\x15\xbc\x40\x6a\x25\xcf\xf0\xa0\x68\x35\x75\xaf\x80\x68\x45\x6d\xc9\xac\xd9\xb9\xb7\xdf\xef\xe7\x92\x45\x8a\x7a\x45\xff\x76\x12\x7c\x7b\x69\xd1\xf2\x8f\x78\xed\x08\x02\xaf\x7a\x09\x2f\xd2\xdf\xc5\xd6\x96\xfc\xa1\xf8\x29\x5f\xc0\x0d\x82\xe5\xbe\xdc\xed\xab\x6f\x7d\xbd\x40\xf1\x04\xf3\x2e\xab\x1e\xed\xfe\x36\xcf\x83\x95\x7f\x87\x5b\x4d\xf2\x17\xd1\x46\x3a\xff\xef\x19\x38\x79\x79\x4c\x95\x79\x21\x94\x08\xd3\x1c\x24\xac\xa6\xb6\xe8\x13\xbb\xd3\x3b\x90\xcf\x7b\x0f\x4f\x1d\xdf\xb9\x0b\x31\x19\x55\x61\xa0\x84\xb2\xaa\x27\x5c\x1a\xc8\xaa\x18\x1c\x8a\xf7\xf6\x5e\xdd\xf8\x06\xad\xf2\x10\xf2\x11\xe7\x42\x01\xfd\xc3\x2b\x49\x35\x07\x00\x54\x91\xe3\xe4\x45\xb0\x01\xb6\x95\x0f\x53\x6c\x95\x16\x22\x50\xa9\xb8\x11\x81\x6a\x78\xea\xf8\x3c\x8e\x78\xa0\x00\x5e\x2a\xaa\x42\xed\xb1\x25\x53\x85\x04\x74\x54\xd6\x6e\x18\x80\xa8\xe6\x89\x1d\x7c\xa8\xe6\x69\xef\xe3\x8c\x1e\x07\xeb\x3f\x30\x41\x70\xa4\x9a\x3a\x13\x71\xa4\xea\xd9\xfd\x02\xc3\x78\x5a\xba\x87\x58\xb6\xff\x8d\x2a\xd5\x76\x39\xb2\x18\xb6\x70\x20\xa6\x9a\x5b\xd4\x67\x60\x25\xcf\x49\xc0\x4a\x35\xe5\xed\x0f\x03\x32\x8f\x9e\x9f\x87\x88\xb6\x5f\xdc\x34\xaa\xa9\xb8\x65\x66\x3f\xf8\xb8\xa2\x57\xf4\x03\x56\x2a\x12\xf1\x59\xaf\xe8\x3d\x4d\x7d\xd8\x65\x7b\xd0\xf9\xb8\xa1\xf7\x48\x0a\x94\x54\xe4\x30\x91\xd3\x9c\x83\xca\xb7\x4f\x11\x70\x54\x41\xa3\x86\x67\x2b\x41\xa3\x2a\x90\x3a\xe3\xeb\xbb\x48\x92\x61\x11\xa6\x0c\xf7\x11\xe2\x42\x4f\x72\xd1\xa4\xa6\xb7\x78\x1f\xc8\x04\x4a\x98\x9f\x27\x75\xbd\xbc\x3f\x4f\xe7\xea\x38\x3e\x7d\x9a\xc0\xe7\x19\xe0\x4c\xc5\x60\x5b\x08\x5d\xef\x4c\x65\x6f\x51\x56\xfb\x50\xf6\x2b\x73\x7c\x9c\x48\x14\x46\x3e\x7c\x7f\x15\x78\x3e\x63\x23\x8e\xe6\x0f\x0c\xae\x73\x2b\x8e\x27\x4d\x21\xe3\xd3\x92\x1b\x8e\xfd\x19\x12\x79\xb0\x95\x00\x13\xd5\xdc\xb7\x3f\x03\x39\x81\x0d\x34\x3e\x6e\xd5\xdd\xea\xbf\x69\x35\xe8\x83\xb9\xdb\x6d\x22\xf9\x2a\x1b\xc6\xc7\xae\xe4\x76\x25\x7c\xd4\x14\x5a\xe4\x9b\x7b\xd0\x2d\xe4\xf5\xc5\x8f\x29\xa5\x58\x2f\x14\xf9\x6e\x3e\x9f\xd1\x92\xdd\x86\xbf\x6b\xf7\x28\x75\xb9\x76\x73\xf9\x18\x67\x0d\xb7\xbb\x2f\x36\xaf\xa4\xf1\xe5\xc7\xcd\xfa\x6e\xee\xe5\x54\x86\xd1\x7d\xc6\x49\x04\x16\x69\x7c\x6e\x6a\xd6\x11\x03\x35\x79\xf7\x77\x5b\x11\xe9\x9e\x35\x91\x9d\xbe\x5b\x71\x79\xa7\xc2\x44\xcc\xeb\xa4\xef\xde\x21\x79\xa9\xc9\xed\x91\x0d\x9e\xfb\xb1\x8d\x0d\x0e\x0a\xdf\x03\x00\x8d\x1d\xff\xc8\xb7\x1c\x43\xc0\xaa\xe5\xac\x1f\xd6\xe2\x32\xec\x6f\x6f\x62\x8e\x21\x07\x85\xcd\x40\xd9\xc3\x0c\x55\xf8\xb1\x85\x6d\x96\x89\xe6\xdd\xfd\xe8\xd3\x8d\xea\xb0\x00\x34\xde\x16\xf6\x2a\x84\x23\x7e\x7c\x1c\x0d\x06\x9b\xe9\xb7\x6f\xfb\x91\x0d\x3f\xb6\xa3\xcd\x09\x95\xf3\x35\x07\xf9\x88\xe9\x64\x84\xf2\x2f\x44\xf8\xac\xc6\xf0\x73\x3f\x92\x11\xba\xd1\x0c\x39\xec\xe7\x97\x68\x83\x17\xf7\xde\xa9\x7d\x6a\xc3\x35\x1a\xf9\x0c\xdd\xa4\x65\xc9\xb7\x76\xe7\x50\xc5\xb5\x3b\x81\x52\x34\xf4\xb6\x74\x23\x11\x03\x21\x35\xbe\xa5\xa5\xf5\x9f\xc3\x38\x7f\xcb\xfa\x30\x0a\x6e\x5d\xd5\xcf\x19\x62\xcc\x0a\x30\x6a\x30\xb9\xa5\xc3\xae\xe7\xff\x25\x76\x80\xf6\x22\x0b\xd1\x5d\xe3\xe8\x45\xc0\xe2\xb1\xff\x77\xc2\xc2\x74\xd6\xb1\xd7\xc8\xe4\x65\x62\x98\x58\xf8\x9f\xc9\x0b\xf7\x5b\xe8\xc1\x5d\x2e\x0b\xa7\x25\xb9\xcf\x42\x2a\x97\x97\xac\xd8\xdc\xb2\x7d\xb2\x4e\x4b\xa3\x4a\xc2\x4f\x6b\x77\xb2\x4e\x75\x4f\xc8\xf1\x4b\x3b\x6f\x6f\xd9\xd6\xc9\xf2\x6c\xfe\x40\x17\xb0\x86\xd7\x69\xd1\xa6\x41\xee\x38\x2d\x4e\xdb\xc6\xfd\x59\xb6\x4f\x66\xee\x4a\xee\x72\x4c\xe9\x95\x64\x07\xdd\x5f\x98\xba\xcd\x1f\x76\x1f\x50\x86\xb6\x6f\x5a\x9e\x2c\xc3\x47\x15\x7f\xb8\xc0\x93\xa6\x52\xc6\xe6\x50\xb7\xb2\x92\x7b\x03\x0b\x75\x19\x29\xf1\xdc\x59\x9c\x35\x0e\x47\x32\x4a\x32\x25\x66\xfb\x8a\x32\xf2\x0e\xcd\x43\x27\xe6\x5d\x47\x53\x29\x24\x22\x5b\x2d\xc3\x20\x36\x8b\xcc\x5c\x49\x32\x17\x56\xb6\xb3\xcc\x2e\x2f\xeb\x7e\xd8\x9e\xa3\x70\x54\xec\xbb\x77\xf3\xe2\x96\x95\x6e\xd0\x3e\x5c\x73\xb3\xa5\x81\x78\xdb\x2f\x0c\xad\xf3\x42\xa8\x6a\x0d\x7b\x37\xde\xdd\xce\xce\xd8\xb2\x10\x16\x36\x00\xbb\x17\xca\xee\x51\x2a\xe5\x76\x6f\xef\x6a\x38\xee\x25\xc0\x72\x17\x77\x3c\x62\x17\xcf\x5a\xa7\xae\x62\x65\xfd\x7f\x59\x27\x32\x54\x77\x3b\x67\x4c\xd5\x7e\x0a\xde\xb7\x34\x16\x1f\x76\x15\x9e\x57\xbb\x13\xbc\xea\x57\x73\x05\x8e\x5e\xdb\xcd\x60\x13\x57\x2b\x22\x8a\x9e\x07\xac\xe5\x29\x50\xc3\x98\x35\x65\xd4\x14\x41\x28\x08\x2f\xa7\xd7\xde\x19\x9c\xd4\x1e\x6b\x5c\x10\x38\x0b\xed\xbe\xe5\x86\x17\x80\xe7\xb1\x51\xdc\x54\x9a\xad\x6b\x57\xd6\x97\x3d\xc8\x7c\x37\xb6\x8f\x62\xc4\x7b\xf0\xdd\x8a\x27\x2f\x60\xdc\xda\x4f\x06\x50\xdc\x9c\xeb\x97\xc5\xd1\x08\x2f\x75\x11\xe2\x16\xfe\x44\x5e\xab\x82\xee\x96\x0d\x9f\xb9\xee\x5d\x0d\x33\xd0\x4d\xb6\xda\x08\x0f\x5e\x53\x2f\xfc\x8c\x14\x7c\x56\x6c\x10\xc3\x48\xac\x42\xbd\x19\xd3\x69\x19\x1e\xd0\x7b\x74\xa0\xde\xba\x62\xe2\x46\x7a\xf3\x76\x55\xa4\xb7\xa1\x86\x6d\xc5\x61\xa8\xb7\x3f\x42\x54\x8e\xf5\x94\x7f\xfd\xd5\xa7\xa3\xcc\xa9\x49\x55\xcd\x7a\x14\x47\xad\x24\xe7\xa4\xe2\x55\xf7\x32\x78\x44\xdf\x85\xba\x87\xcb\x26\xdc\x59\xfa\x7e\x11\x86\x84\x06\xbc\xbb\x9e\xe4\xf7\xa4\xe4\x24\xd1\x5b\x57\xab\x9a\xa5\x09\x74\xdf\xa9\xe0\x6a\x48\x6e\x6b\xab\xa3\x76\x2a\xd8\x23\x67\x6c\x90\xe2\x62\x3c\xe9\x62\x6e\x66\xdd\xb2\x80\x8a\x8b\xef\xd2\x4b\xfb\x14\x64\xe7\x13\x4b\x42\xed\x12\xb0\x71\x7d\x73\x9f\x4f\x3d\xf4\x7e\xc1\xe3\xdc\xa9\x41\x28\x89\xc1\x79\x13\x08\xb9\xec\xfd\xfd\xfa\x5c\x44\xa6\xdf\x3c\xd1\x0c\xcc\x13\x8e\xb1\x40\xcb\xed\xc8\x08\x6b\x2b\x97\xac\x13\x26\x68\x83\x13\xde\x5a\xbb\x79\xa6\xda\x53\x94\x4f\xc5\x16\x97\x3d\xd2\x2e\x6c\xd3\x26\x87\x9b\x25\xb6\x8d\x7a\xb1\x05\x9e\x8d\x7a\xf2\xb5\xf6\x4c\x69\xff\xf6\xf7\x04\x81\x2e\xb1\x80\x27\x08\x74\x89\xa3\xd1\x14\x81\xae\xa2\xab\x9b\x20\xd0\x65\x70\xed\x26\x08\x74\xb1\x56\xcc\x4d\x47\xc5\x49\x75\x02\x41\x77\xd2\x51\xf3\xd8\x91\xf6\x8b\xb9\x6f\x2a\x55\xf8\xdf\x63\x59\xf0\xc0\x09\xd2\x5c\x03\x2a\x72\x02\x34\xd7\x58\x2c\x13\x9c\xb9\x9c\xa4\x13\x3c\x0a\xb0\xfe\x09\xcc\x5c\x1b\x93\xbc\x84\x8e\x3a\xf6\xff\x5c\x2a\x5b\x98\x9b\xdb\xf4\xff\xc6\xf7\x33\xff\x13\x8f\xe3\xf4\x9b\xae\xad\x46\x55\x63\x6b\xeb\x3d\x18\xf1\x3c\xce\x8b\x5e\xf2\xa3\x9e\x26\x87\x89\x30\x1f\x6b\x26\xa2\xa6\x87\xff\x2f\xd4\xac\x74\x0c\x76\x6c\x1c\xa8\xa6\x90\x74\xd3\x0e\x4b\x89\x05\x4b\x7f\x25\x62\x4c\x17\xe9\x9d\x34\xf4\x5d\xf2\xa4\x31\xfd\xc1\x1d\xab\xfa\x02\x32\xd4\xa0\xde\xa2\x17\x33\xad\xe7\x81\xe1\x77\xb6\x0d\xb8\xf1\xe2\x66\x33\xc1\xa6\x6b\x9c\x88\x27\xd0\x74\x8d\xfb\xe4\x29\x34\xdd\x40\xbd\x38\x0f\x42\x60\x24\x7b\x86\xed\x0a\xe3\xc4\x09\x18\x5d\x47\x61\x37\xc1\x9f\x6b\xc0\xf0\xcc\xc3\x80\x53\x18\x52\xcd\xa3\xe8\x70\x63\xcf\x70\x25\xdc\x9c\x33\x3a\xf7\xe2\x14\x38\xc1\xa2\x8b\x26\xf9\x82\x5d\x8f\x95\xd5\x1c\xcd\xca\xb2\x13\xcd\x93\x3e\xe0\x4e\x6b\xec\x22\x70\x0f\x72\x44\x8b\xbb\xb9\x33\x91\x5d\x09\xcb\x85\x79\x60\xa4\x46\x48\xa2\x79\x54\x66\xe8\x49\x1a\xcc\xcf\xe6\x49\x1a\xb6\xa1\x5d\x09\x6e\x86\xe7\x1f\x4f\xb9\x53\x24\x3c\x60\x51\xe7\x11\x07\xd0\x5e\xac\xad\x10\xb0\xc3\x51\xaa\x74\x55\xf2\x07\x79\x9a\x93\xa8\xda\x6f\x54\x05\xc3\xb4\xec\x4c\x06\xe3\x18\xdd\xcd\x04\x22\x2f\xfa\x93\x69\xad\x61\x9a\x75\x6c\xa0\xad\x3a\x18\x6a\x3c\xb9\xe5\x9b\x47\xc3\x0a\x29\x9b\x81\xfa\x39\xd3\x0c\x4f\x75\xfa\xbf\xa2\xb6\x95\x05\x53\x6f\xec\x1f\x80\xc0\x76\x4e\x70\xab\xcc\xed\xe6\x3c\xb4\x22\xdf\x45\x73\x58\x9d\x89\x12\xba\x8b\x7c\x52\x59\x2c\xc7\x8b\x83\xc4\x61\x75\xda\x08\xfc\x9a\x88\x1f\x30\x8f\x0e\xf6\x69\x96\xee\x29\x6b\xfa\xc3\xc5\x00\xf8\x03\xd1\x46\x9c\x37\x5c\x30\x4f\xbb\x0f\x1f\xe4\xe2\xea\xe2\x4a\x99\x88\x9d\x13\x78\xbd\x86\x83\xcf\x3c\x86\xb5\xa3\x12\x23\xff\xeb\xaf\x4a\xbc\x87\x79\xa8\x34\xad\xe6\x95\x47\xda\x61\x1e\x73\xad\x84\xfe\xcb\xbb\x16\xdc\xc8\x4d\xd7\x2c\x47\x5e\x20\xce\xe6\x31\xf6\xe8\xd2\x01\x43\x3e\x65\x57\x0a\x10\xd4\x9c\x69\x83\xfe\xcb\x74\x99\x06\x6e\xdd\x1f\xe2\x34\x9c\x87\x43\xba\x35\xae\x96\x2e\x26\x2d\x17\xa9\xf3\x30\xc8\xd5\x66\x99\xfa\x38\x9f\x16\x39\xd5\xa7\xf8\xcb\xb5\x47\x86\xf2\x2f\x37\x85\x4e\xa7\x5c\x32\xe6\xfd\x0b\xd3\xbe\x52\xbe\xd1\xac\xda\x4e\xd5\xb8\x20\x36\x11\xd3\xc5\xb1\xb9\x3c\xfb\xd1\xe0\xcb\x96\x50\x47\xcd\xc6\xbb\xfb\x00\x67\xd8\xe9\x5c\xdb\xfa\xda\x49\x11\xb7\xfa\x2e\x7b\xfb\xde\x0b\xdc\x5f\xe0\x3a\x99\xba\xdf\x4a\x05\xf2\xac\x1b\x24\x28\xf9\xb1\xb1\x1f\x37\x03\xbf\xdd\x0e\x2b\xc5\x23\x96\x9c\xfe\x60\x5c\x10\x6e\x10\xe6\xf1\xec\xbe\xa3\x21\x5b\x13\x2b\x7b\xda\xd7\x5d\x7e\xf9\x11\xb1\x84\xaa\x3c\x7b\x15\xf8\x83\xc8\x8d\x34\x65\xcb\x11\xc3\x17\x7b\xcb\x06\xbf\x1e\x7c\x2c\x9f\xc3\xeb\xcc\x64\x7f\x9d\x06\x83\x76\xbd\x6a\xdb\x2d\xf1\xc5\x98\xce\x06\xeb\xf2\xdc\xdd\x12\x0d\x50\xe5\xf6\x80\xb4\x41\x68\xa2\x09\x82\x5e\xc3\xa8\x7f\x1e\x5b\xcb\x6a\x43\x40\xe7\xc1\xa6\x66\x1e\x1a\xaa\x77\x17\x24\x3e\xce\x65\xff\xa0\x0e\xdd\x91\xf6\xb8\xbb\xb7\x17\xc1\x68\xbb\xec\x51\x93\xaf\xbd\x53\x2f\x9d\xc2\xa8\xe2\xda\x63\xf2\x27\x59\x6f\x8a\xa2\xd7\x65\x5f\x48\x0d\x6e\x44\xe7\x3e\xc9\x4e\x5f\x68\x58\xf1\x7f\x45\x58\x26\xb1\x28\x78\xd3\x3d\xfd\xdc\x9a\x5a\x66\x34\xd8\x77\xd1\x66\x5f\x14\xd7\xe9\xb1\xd3\xf8\x90\xd8\x6e\xcd\xf3\xf4\xcb\xe4\x3f\x3d\x50\xd0\x03\xe7\x89\xd7\x58\x36\x91\xd6\x46\x21\x77\x4e\x91\xf0\xaa\xe2\x82\x48\x78\x03\x3d\xfc\x3c\x39\xb5\x02\xca\x38\x4f\xfd\x8f\xb1\xcc\x9a\xa7\x2e\xc7\xc4\x61\x9f\x1b\x0a\x0f\xe5\xf9\xdc\x50\x78\x58\x51\xcd\x33\xed\xc6\x90\x2c\xc9\x80\xc9\x9f\xd4\xcc\xd9\x17\x89\x4b\xc3\xe2\x0f\x72\x0a\xc6\xef\x34\x14\x24\xb7\x33\x13\x84\xbb\x86\x65\xeb\x3c\x0d\x69\xec\xf6\x7b\x66\x1b\xec\xff\x36\xb8\xf9\x22\xfb\x9f\x66\x77\xf7\x66\x86\x9e\x5b\xf1\xcb\x44\xdc\xe0\x77\xe0\xf8\xce\x0d\x7e\x87\xd9\xcf\x14\xfc\xae\x82\xc4\x3b\x4f\x4d\xc5\x9b\xa3\x54\x86\xbf\xd0\x4b\x44\x39\x4e\x56\x00\xfd\xee\x2c\xe6\x20\x30\xb1\x25\xe2\x44\x0c\xc0\xc0\x3c\xd9\x82\xf3\x4e\x83\x2d\xa0\xcd\xdd\x07\x43\x47\x1b\x6f\x2c\x42\x41\xcf\xb3\xee\xa2\xc9\xcd\xe6\x8c\x92\x69\x9e\x6e\xc8\x45\x3a\x0d\x74\xdd\x9c\x6e\xc0\x88\x92\x67\xd5\xec\xce\xce\xd2\x7d\x6b\xee\x97\xdb\x56\x90\xac\xed\x3e\xa5\xba\x6c\xaf\xd5\x9a\xa0\xe9\x9d\x0e\x4f\xdb\xcb\x83\x8e\x6b\xb0\xac\xe2\xff\xdd\xef\x52\x5f\xe2\x20\x4f\x67\x7d\x33\xc2\x83\x89\xe8\x84\xe6\xff\x4e\x60\x27\x8d\x3b\x27\x5c\x11\x7c\xbc\x36\xe1\xf5\xc0\xe3\x45\xd5\xf9\x6a\x37\x00\x00\xf5\x60\xe7\x24\x1a\xfe\x04\x2a\x2f\x29\xf9\x01\x95\x17\x19\xa8\x78\xdf\x6d\xf5\xc5\x23\x94\xa3\x21\xec\x6c\x73\xfc\xdd\x18\x2b\xa9\x86\xfc\x19\x76\xb7\x51\xf1\x86\x83\x2c\x2a\x1e\x26\x26\xf3\x04\x1e\xa7\x38\x9a\xee\x86\xd5\x1c\xbb\x44\x7f\x80\x0d\x5a\x47\x6c\xb0\x94\xc0\x4e\xc1\x71\x92\x23\xa8\x3a\xd8\xc2\xbd\x72\x54\xf2\x3c\xb1\xf0\x6e\x4e\xe4\xb9\x97\x11\x75\xd7\x7d\xca\xb9\x20\x32\x4e\x77\x34\x31\x4f\x21\x64\xe7\x14\x08\xaf\x02\x77\x3c\x4f\x63\x63\x75\x7b\xf1\xb2\xb5\x64\x8f\x23\xbc\x1e\x5a\xf3\xbc\x76\xfb\xa8\x89\xb1\x8e\xc1\x57\x9e\x27\x6a\xde\x29\xab\xb8\x6c\xd3\x1f\x25\xc0\xf3\x42\xb8\xb3\x29\x6e\x93\x32\xa1\x7b\x73\x5e\xbe\x76\x23\xd0\xb1\xf9\x8b\xa5\x57\x41\x55\x9e\xa7\xd1\xb5\x86\xd9\x6f\xf8\x7e\xa3\x29\xee\x92\x8d\xae\x73\x97\x1c\xf6\x8a\x21\x95\xb3\x3f\x50\x61\xb9\x06\xda\xe0\x39\xed\xec\x5b\xae\xe5\xb8\xb9\x97\x4e\xbb\xc8\x88\x5b\xdd\x81\x23\x44\xf2\x9c\xb6\x5e\x33\x12\x85\x61\x60\xf3\x72\x71\x0a\xa2\x1d\x3e\xad\x2f\x56\xda\x00\x80\x4c\x21\xf4\x00\x75\x9b\xa0\xe6\x35\x62\x1b\xcd\x53\xc0\x77\x97\x11\xd0\xb5\x04\x9f\x9c\x00\xe8\xe5\xe1\x42\xd7\x89\x59\x16\x4b\x7c\x11\x25\xfe\x73\x1f\xe6\x49\xc3\xdd\xe6\x6c\xa6\x81\xa5\xba\x8b\xbc\xb1\x0b\x9e\x32\x71\x23\x8d\x74\x7b\x39\x8e\xf2\x3a\xe8\xcf\xd3\xad\xd9\x39\xf2\x6a\x39\xe1\xc2\xc1\x80\xa4\x3a\x14\xee\xcc\xee\x20\xdc\x7f\x4e\x97\x2c\x06\xda\xc4\xba\x9b\x40\xe8\xe5\xc3\x5a\x60\x26\xd2\xed\x09\x6e\x3c\x95\x82\x36\x20\xde\xb0\xeb\xb4\x06\xe9\x76\xaa\xe1\x98\x93\x1d\xb6\xbc\xd3\xb5\xc7\x96\x7b\x11\x47\x87\x53\xe7\xb0\xee\x07\x96\xcc\x8a\x7d\x15\xe4\xbb\x36\xbb\x1f\x7b\x4d\x45\xef\x70\xe9\x39\x11\xdb\x36\xd8\x9d\x47\xe2\xa4\x7b\xf3\xd8\x2f\x98\x19\x14\x53\x59\x22\x87\x01\x40\xed\x22\x4b\xe5\x85\x8e\x63\xc4\x04\xb2\x4b\xd8\xac\x4c\x90\xec\x32\x88\xa3\x13\x24\xbb\x93\x88\x3b\x13\xf0\x3a\x9d\xcb\x67\xe2\xa8\x8d\xc6\x67\x26\x2c\x3a\xc0\x7e\x99\x89\xe3\xf5\x44\xb6\x4a\xe7\x56\xa7\x9b\x88\x53\x0f\xc2\x46\xe2\x5a\x74\x7a\x74\x4c\x86\xa8\x02\x9e\x7b\x82\x32\x27\x18\xf2\x04\x4d\xae\x4d\xc4\x55\x40\xe3\x22\x51\xe2\x05\x33\x28\x7a\x6a\x83\xc3\x31\xbd\x00\x87\x8b\x44\x99\x17\x5c\x64\x6c\x44\xb6\xa5\x66\x78\xa0\x53\x9a\x96\x98\x5c\x34\xcf\x84\x25\xa6\x93\x13\xd0\xb8\xd1\xac\x86\x8e\xca\x5c\x5d\xce\x54\x76\x3d\x28\x8f\x9b\xd3\x73\xff\x40\xbb\x99\xf2\x49\x47\x65\x0f\x3b\xa9\xec\xfe\xa7\x22\xdc\xa9\xe2\x7d\x30\x93\x47\xdb\xe1\x97\x2e\xcb\xa0\x86\x84\x56\x26\x1c\xc4\x4c\x1a\x41\x7b\x86\x02\x64\x6e\xa0\x58\x9d\x1b\x63\x0e\xf8\xf1\x99\xb8\x29\x9d\xcc\x74\xf0\xe6\xf4\x98\x9e\xc9\x80\x8f\xaa\x1c\x80\x9b\x6b\x13\xa9\x39\x69\x94\xd9\xed\x36\x83\x24\xd7\x3f\x05\xae\x9f\x42\xd1\x4d\x76\xcd\x64\x94\xc8\xc3\xaf\x31\xb4\x88\xf3\xa2\xcf\x55\xe0\xcf\x67\x6a\x4e\x4a\x87\xb6\xa1\xd5\x44\xf2\x10\x7d\x0e\xcc\xb8\x99\xc4\x1e\x18\x0e\x2d\x47\x5a\xbc\xc1\x66\xf2\x44\x0b\x2b\x07\x89\x2e\x12\x99\xdb\x75\x83\xa8\x97\x36\xf8\x2c\xbd\xa5\x0b\x73\x77\xb6\x62\xe1\x3c\xa7\x53\xda\xab\x52\xee\x02\xe7\x86\x92\xe3\xa6\x6d\x82\x1e\x97\xbb\x0d\x31\x82\xf2\xb0\xf2\x78\x23\x77\x8b\xc7\x5c\x39\x3b\x56\x18\xde\xec\xf5\x14\xe7\xc6\x41\x84\x95\x29\x8c\xdc\xe0\x32\x77\x02\x23\x17\x45\x98\xe3\xf5\x17\xea\x68\xa8\x2b\x95\x07\x60\xc7\x25\xd4\xb0\x53\xe8\x38\x11\x56\x27\xd0\x71\x6d\xda\x59\xd3\xa9\x45\xa5\x30\x5d\x9e\x88\x7c\x49\x20\x00\x95\x4b\x80\xc8\x65\xcf\x05\x49\x13\xcf\xe1\xb4\x06\x64\x56\xb1\x22\x11\x27\x79\x22\xe2\x25\x94\xe3\x73\x67\xb0\xdd\x4e\x58\x2d\x7b\xba\xdc\x43\xdf\x26\x4e\x15\xc9\xc0\x1c\xdd\x65\x74\xe9\x49\xed\xc4\x24\xbe\xe4\x9e\x4d\xdc\x7b\x4e\xd5\x1b\x1b\x07\x8e\x8b\xde\x09\x0e\xdc\x99\xf7\xfc\xd5\x8f\xb8\xbb\xc4\xd0\x6b\x83\x7d\x31\x93\x7a\xed\xee\x02\x25\x72\x31\x08\x65\x33\x79\x0b\xda\x77\x76\xd7\x05\xd2\x47\x7a\x14\x2c\x9c\x41\x02\x00\x24\x1b\xfc\xc8\x68\x9c\x36\x7b\xab\x73\xed\xaa\x99\xe6\x42\x79\x26\x6f\x42\xdd\x80\x12\x87\xc8\xa9\x26\x21\x3d\xbb\x1c\x5f\x38\x08\x70\x89\x37\x13\x66\x3b\x13\x39\x05\xf8\x38\x9d\x92\x27\x88\x71\x59\x55\x00\x88\x71\xfa\xfb\x4e\x50\xe2\x06\xba\xe4\x99\xdc\xd7\xd8\xf2\xd3\xbb\xdb\xeb\x87\x58\x8a\xce\xa7\xd7\x15\xee\x28\x7e\x96\x40\xa2\x4f\x79\x07\x89\x25\xa9\xa3\x26\x1c\xdd\x14\xf5\xad\xb8\x2e\x04\xbe\x19\xae\x85\xcf\x02\x4d\x64\x81\x96\xfe\xd9\xc1\x7e\x8a\x4b\x84\x5d\x9e\xfb\x81\x35\xe1\x9c\x09\x88\xf0\x4c\x5e\xab\x76\xdb\xaa\x35\x0f\x2a\xf5\x99\xe2\x9c\x99\xf1\x74\x9e\x20\xc0\xa5\x3d\x4d\x05\x7a\x1b\xce\x6b\x6c\x1b\x9b\x4c\x28\xb6\xbf\x41\x8c\xfa\x09\xe8\x5b\x3f\xd8\xdd\x01\x7d\xd3\x07\x79\x26\xcd\x1f\xad\xd3\xe2\x9a\x19\xfd\x5f\x3e\x76\xc9\x95\x17\x2c\x0d\xbb\xff\x03\xed\x46\x90\xda\x09\x9e\x5b\xf7\x14\x96\x8f\xdd\xec\xc6\x8b\x27\x9f\x6c\xaa\x45\xd9\xc7\x9f\xf8\x5f\xe6\x1c\xca\x05\xe6\xcc\x7a\x4a\x63\x05\x30\xb3\x01\x1f\x55\x56\x65\x3d\xa2\xb9\xe6\x98\x99\x2d\x10\x73\xa7\x99\x51\x24\x1f\xf0\xb6\x7c\xda\x5e\x33\xec\xbe\xee\xbc\xbc\xb4\xc5\x44\xf0\xfb\x6e\xe6\x3d\x1b\xf8\x81\x43\x28\xc1\x01\x27\x98\x71\x03\x7f\xdd\x09\x64\x5c\x3f\x90\x71\x41\x8c\xeb\x07\x22\x66\xd6\x1d\x5a\xa5\x7a\x4e\x4e\x44\xff\xe7\x9c\x9c\xcd\xec\x46\x95\xcd\x8d\xce\xc1\xa6\x26\xd9\x09\x0c\x21\x0b\x78\xd0\x77\x79\xc0\x86\x9f\x7e\xea\x41\x73\x6d\x8e\x8f\xb2\xe9\x01\x2e\x51\xd5\x08\x81\x2a\x57\x0e\xf3\xe6\xbd\x34\xa9\xa0\x37\xaa\xc4\xa7\x9b\xc0\xca\xf5\xe3\x30\x95\x4c\x9c\xd5\xbc\x71\xe5\x54\x1f\x83\x1f\xd7\x8f\xc3\x1f\xe2\x24\x7a\x20\x04\x03\x05\xd7\x0f\xc7\x7f\xef\xbd\xb0\x9f\x5c\xe4\xd5\x64\xde\xbe\x12\x4e\x06\x36\xdf\x0c\xa4\xcb\xcc\x05\xb4\x43\xe7\x95\x37\x9c\x70\xa2\x2c\x5a\x81\x1a\x5c\xc1\xe0\x06\x56\x11\x33\x1b\x88\x19\x57\xd7\x09\x00\x5c\x06\x47\x6a\x82\xff\x16\x59\xe8\x06\x02\x8e\x1c\x08\x5e\xc0\xbf\xe9\x48\x3d\x73\xdd\xdc\xc6\x1c\x8a\x01\x30\xc5\x5c\x0d\x5a\x6b\x8e\x87\xdc\xd6\xc4\x15\xe8\x14\x89\xed\xb6\x1f\xce\xaf\xb6\xbb\x87\x1c\x7b\x8f\x44\x52\xcc\x4d\x15\x80\xe3\xdc\xe4\xdc\x36\x0b\x0b\x26\x15\x30\xb9\xb9\x28\x60\x6f\x19\x57\xe5\xe3\xb4\x10\x65\x5b\x2b\xdc\xe1\x44\x7e\xb7\xdb\x0f\x0e\x6e\xf7\x50\x03\x4b\xce\x7d\x0f\x28\xc3\xb3\x4f\xb6\x3b\x8f\x8c\x1f\x09\x31\x1b\x5a\x44\x79\x1a\x30\xba\x0e\xf0\xc7\xcc\x06\x13\x51\x45\x98\xbb\x06\xdf\x54\xb2\xbb\xbd\xb0\xe9\x01\x46\x17\x2f\xa4\x32\xac\x15\x46\x12\x33\xef\x93\xaa\x0b\x7c\x47\xfd\xe0\x84\x96\x51\xdc\x16\x5b\x3c\x76\x29\xb4\x72\xb8\x09\x3a\x76\x7b\x33\x46\x42\xc9\x93\x29\x75\xfa\x83\x83\x8a\x08\x07\x06\x5d\x3a\xfc\x16\x0e\xc8\xc3\x21\xda\xe7\x56\xb6\x6c\x20\xe8\xba\xdb\xba\x10\x74\x35\xb9\x4a\xb4\x4f\xc2\x68\x62\xe6\x6b\x77\x25\x55\xb9\xf6\x31\x9d\x12\x2f\x8c\xc6\xed\xc9\x7d\x8a\x1d\xfe\x60\x50\x35\xfa\x6b\xef\xcd\xb2\x3a\xb1\xe6\xd4\xd8\x80\x2f\x17\xbf\x50\x24\x08\x03\x87\xf3\xe0\x76\xea\xd0\x90\x1b\xd6\x94\xfe\xcc\x02\x6f\x67\x92\x6c\x6f\x1f\x3e\xad\xc1\xa3\x7e\x05\x89\x27\x3f\x30\x1f\xf9\xe1\xc3\x61\xc4\xf1\x16\x4b\x60\xb8\xbc\x62\xa3\xed\x4a\x6e\x40\xd1\x45\x2d\xe9\xb1\x67\x17\x62\xaa\x5d\x7f\xda\x8f\x05\xd2\x54\xdc\xcf\x7b\x6f\x66\xf3\x02\x8d\xae\x2b\xe6\x00\x46\x97\x4f\x87\x02\x64\xf6\x34\x5c\xdc\xaf\x25\xf2\x5d\xcf\x90\x58\x30\xcd\xac\x1a\x77\xc8\x0f\xe2\xac\xd8\xd5\x15\x67\xcf\x8a\xce\xcf\x57\x75\x9d\x4c\x4a\x90\xb9\xe4\xff\x72\x00\x19\xe4\xc7\x64\x71\x7e\x7e\x70\x32\x04\x8e\xfc\xc9\xc9\x64\xaf\xdf\xee\x07\xca\xf8\xac\x15\xbd\xe8\xf5\x2e\xc6\x33\x33\x7b\xa5\x3b\x64\x59\x1a\x2a\xa9\xff\x02\x42\x4e\xdf\xee\x29\x82\xdc\x54\x89\x9c\xd7\xee\x3a\x3e\xbc\x76\xb4\x1b\x93\xed\xd5\x1d\x3d\x04\x86\x5c\x12\x74\x72\x96\x63\xaf\xa2\xce\x0b\x23\x47\x07\x03\x28\x17\x0d\x3e\x79\xe9\xfc\x50\xf9\x7f\x98\xdd\x54\x6e\x0f\xcd\x0f\xbb\x4d\xc1\x19\xcb\xc9\x98\x50\x31\x10\xe2\xfa\xc1\x54\x29\xa7\x5d\x94\xf8\xbf\xfa\x29\xbe\xcb\x6e\x49\x20\x9c\x09\x58\x5c\x56\x03\x5b\xdc\x2d\x59\xe6\x85\x1b\x55\x41\x11\x66\x89\xcd\xaf\x7b\x5d\x5a\x12\x9b\x00\xfa\xd7\x62\x74\xe3\xb9\x7f\xd8\x39\x68\x5f\x66\xbb\x44\x00\x29\x86\x70\xc4\xc6\x66\x96\xec\x9a\xdb\x2f\xea\x01\x61\xc4\xc5\xfd\x88\x45\x53\x32\x6c\xdc\xae\xda\xc8\xa6\x74\x82\xbb\x11\xeb\xba\xe4\xdd\xed\xb4\xd5\xa0\x1d\x6a\x71\x4a\xb6\x77\x60\xbd\xa5\x58\x77\xca\x2b\x7b\x96\x52\x86\x3b\x18\x0b\x09\x4c\x3a\xfd\xaa\xe7\x46\x9e\x1b\xd2\x35\x48\xb3\x0c\x2f\x40\xd5\x89\x17\x81\x4a\xe1\xc2\xa5\x22\x0f\x14\xff\xcf\x00\xff\x99\x46\x11\x05\xbe\x5d\xf4\xc9\xf3\x22\xb0\x54\xda\x81\xb8\x2b\xf0\x1c\x26\x01\xb3\x18\x66\x43\xf6\x56\x2a\x7b\x83\x33\xa9\xda\xb9\xec\x40\xc5\xdd\x88\x75\x50\x8c\x7e\xa5\x76\x04\x10\xba\x8e\x09\xf8\x2c\x6d\x77\x34\xed\x68\xce\xa4\xd3\x17\x3b\x91\x4e\x68\x72\x4a\xdb\xa1\x69\x2d\xf6\x45\xb3\x18\xf2\x0a\x1b\xe3\x59\xb4\xb3\xc5\x72\x68\x02\x25\xd7\x0f\x7b\xb7\xab\x75\x61\x33\x2c\xdd\x05\x0a\x73\x05\x3d\xae\x1f\xb6\xbd\x33\xa9\x2d\xc4\xed\xa7\xfe\xc9\xb5\x77\x82\x13\xd7\x8f\xfd\x31\xba\xa2\x5a\x3c\x72\x24\xfb\x07\xf0\x71\xfd\x60\xc7\x29\x46\xd8\xc0\x2d\x79\x16\x9d\x5d\x31\xb1\x9e\xa0\xff\x64\x39\x60\xed\x2a\x2f\xe8\xfa\xba\xf5\xbc\x30\xfd\xda\x77\x83\x79\x19\x3a\xae\x75\xfe\xa7\x57\xd9\x3f\x2a\x85\x60\xea\x3d\xeb\x4f\x19\x7c\x57\x58\x1f\x0c\xbb\x26\xb0\x3e\x42\xc3\x4f\x60\x7d\x62\xd6\x24\x5e\x00\xc3\x64\x2e\x03\xeb\x23\x1c\xfb\x04\xd6\xe7\x24\x52\xff\xac\xc3\x0b\xb9\x6e\x19\xe0\xe4\x32\xd4\x55\xa0\x03\x6b\x3e\x91\xc5\x87\xff\xa3\x2c\xa1\xa3\xaa\x7b\x28\xc7\x86\x3a\x59\x44\x4d\xfa\x66\xaa\x94\x70\x31\x80\xcd\xff\x3d\xd4\x31\x79\x45\xe8\xc1\x5b\x7d\xd6\x4b\xbb\x48\xda\x83\x86\x57\x4e\x02\x58\xcf\x16\xfc\xab\x26\x5a\x69\x67\xb0\xd1\x66\x80\xd7\xc2\xab\xea\xde\x26\xab\xc5\xdd\x1e\x34\x2c\xce\x38\xf6\x76\xff\xc5\x70\xc3\xf5\xeb\xc6\x38\x67\xc2\x54\x0e\xb7\xc9\x44\xf7\x66\x18\x14\x72\x7b\xfb\x64\x97\xbb\xb5\x76\x73\xe8\x57\xc6\x41\xb5\xde\x2c\xaf\xee\xff\xcc\x3d\x18\x6d\xbd\x65\xd4\x0e\xeb\xcd\xfc\x62\xad\x54\x63\x43\x7b\x45\x54\xdd\x61\xed\xb6\xc7\xad\x85\x95\x2a\x5c\x8f\x37\x44\xd5\xfb\x50\x0c\xda\x66\xf5\x3e\xd4\xdb\x14\xb0\x7b\x84\x42\x9e\x1b\xba\x07\xab\xce\x59\x1f\x6b\x42\xd5\x1f\x5b\x4e\x03\x77\x44\x0d\xb6\x9c\xfa\xba\x84\xe1\xa2\xf5\x65\x64\xf7\x0f\xac\x2d\xbf\xf4\x32\xca\x3b\xcd\x80\x99\x53\xf4\xde\x78\xd9\xef\x00\xfb\x89\xc6\x9a\x9b\xb2\x87\x3f\xc8\x37\xd9\x3b\xeb\xbb\x01\xc6\x7c\x91\xe3\xb0\x8b\x57\xa3\x51\x7a\x49\x03\xf4\x8f\x48\x92\xb3\x7e\xac\x0d\xc4\x34\x50\x80\xce\xe9\x85\x4d\x75\x4f\x76\x82\xee\x3d\x19\x8e\x01\x0c\xd0\x59\x5c\x1c\x8d\x80\xfc\x04\x19\x99\xed\xdc\x03\x92\x78\x71\x31\x22\xda\x34\xb7\x1f\xc4\xbc\x26\x76\x9c\x2b\x53\x64\x9a\xe9\x8d\x4f\x03\xaf\x1b\xd4\xc3\xd9\x38\x3e\xe1\xa7\x3c\x5b\x52\xe8\x30\xbb\xae\x1e\x5e\xa7\xb4\xd8\x98\xb2\xd7\x1e\xcd\x43\x8f\x5a\x1e\x91\x69\xa6\xb7\x31\x2d\xf6\x99\x7d\x04\xde\x58\x34\x1a\x6a\x80\x45\x13\xa9\xfc\x25\x66\x0d\x56\xd4\x13\x2c\x9a\xa4\x84\x2b\x14\x4d\x4d\x4c\x14\xa0\x68\x00\xc7\xfb\x03\xef\x6b\xa8\x3c\xf1\xb9\x9d\x8d\xfb\x3f\xc2\x3e\xcd\x56\x18\x3a\x0e\xfc\xa0\xd7\x24\xb7\xfa\x56\xe0\x89\xe8\xb1\x44\xaf\xf1\xaa\xa2\x19\x8c\x51\xf5\x11\x80\x35\x51\x5f\xfa\xb4\xca\x07\xe1\x0e\x60\xd1\x64\xfc\xb7\x66\xf3\x0c\x34\x4d\xc4\xcc\x44\x26\x6c\xee\x46\x48\x8e\x20\xd1\x08\x85\x34\xdb\x56\x3e\x5a\x27\x7c\x3b\x54\xae\x83\x4a\xa3\xa7\xe7\x14\x94\x06\xe8\x8b\xd9\x50\x44\x12\xe0\x62\xb6\x16\x93\xf7\x3c\x4c\x73\xe1\x63\x4a\xc1\x71\x5e\x12\x15\x69\xb6\xbd\x11\xc1\x73\x1b\x96\x32\x6a\x05\x5b\x6c\x37\xdd\xab\x8a\xd6\xb9\x48\x28\xd2\x77\x3b\x29\xa1\x63\xc8\x83\x24\x0f\x6a\x4d\xf6\xba\xb7\xb9\x25\x71\xa6\x68\x9d\x78\xa7\xce\x42\x6e\xfb\x34\x57\x11\xb2\x66\x7a\xe5\xd4\xba\x5b\x73\xf6\xab\x60\x1d\x1d\x7e\x75\xd7\xcf\x54\x32\x0f\xc7\x7e\x38\xd9\x60\x31\x6d\x6c\x4f\x59\x3a\x7c\x78\x2a\x77\x11\x68\x3a\xe3\x61\xb8\x89\x75\x0a\xc3\x69\xc4\x60\x9c\x0e\x11\xdb\x88\x07\x0f\x71\x71\xa6\x57\x53\xe0\xe2\x24\xac\x6f\x67\xe3\xae\x50\x79\x03\x8c\x9c\x7e\xda\x58\xb6\x14\x80\x5c\x66\x23\x5c\x03\xee\x79\x13\xe8\x9c\xa8\x3a\xb5\x25\xec\x62\xb1\xb2\x71\xfc\x12\x99\x69\x36\xe3\x3f\x4d\x67\x70\x1c\xbf\x44\x33\x9a\xc0\xe8\x88\x37\x35\xdb\xd4\x6b\xbf\x9b\xc8\xf3\xb5\x73\x08\x4b\x61\xc2\x80\xcd\xc6\xdd\x22\xe1\x0e\x67\x9b\x68\x60\x5c\xae\xc6\x85\x52\xe3\xd7\x2e\x87\x98\xae\xb9\xb0\xd3\x73\x88\xaf\xdd\x4d\x7c\xf5\x32\x4c\x17\xfc\x65\x03\xf2\xa8\x83\x6b\x97\x35\xe4\xbb\x5a\xdc\xc0\x02\xdb\xde\x86\xd8\xf5\xda\x75\x91\xc8\xff\x15\x62\xed\xe6\x0b\xe5\x97\xd3\x85\x93\x9b\xe7\x9b\x0d\xd4\xa3\x95\x4b\x8b\x5d\x48\x48\x86\x09\x68\x4f\x3f\xed\xce\xbb\x47\x6d\x9d\x9c\xb7\xf3\xc8\xa9\x7d\x1b\x57\xc9\xcc\x0f\xfb\x27\x45\xb3\x07\x0d\xad\x34\x40\xe8\xd1\xc1\x66\x0a\xd0\x43\x64\x86\x09\x24\x4f\x56\x28\x03\x92\xe7\xcc\x56\x0f\x67\x74\xd0\x1b\x27\x88\x3c\xa7\x87\x1e\x10\x79\x8c\x3d\x3b\x9b\x6e\x92\xaa\xcf\x80\xe7\xe9\x18\xc1\xce\xa6\x71\x8e\x3d\xc6\xfe\x73\xba\x68\x9f\x8f\xff\x29\xec\x25\x9a\x80\xfd\x6d\xf8\x63\x42\x08\x4e\xd0\x79\x8c\x63\x37\x1b\xf7\x88\x44\x9c\x9a\xcd\xa8\x91\x8a\xea\x00\xf5\x94\x9c\xff\xcc\xeb\xde\xdd\x53\x54\x1e\xcf\xf4\xe6\xe0\xb3\x4f\x9d\xfb\xff\xdd\x53\x96\xe3\xb5\xb4\x4d\xdf\xfb\x14\xdb\x75\xc3\x97\xc5\x6d\x0a\x48\x9f\xbc\x67\x24\x9b\x4e\x4a\xd2\x9d\x08\x76\x2e\x2e\xe8\xda\x4a\xb4\x6f\xdf\x57\xf0\xbf\xf2\x12\x1b\x5b\x5b\x84\x58\x90\xe9\x1b\xa8\x12\xe7\x95\xd9\xb0\xf9\xf1\xf8\xd2\x16\x51\xae\xac\x2d\xa6\xc0\xaa\xb6\x41\xf4\x31\x56\xde\x6c\x6b\x0f\x87\x3f\x04\xd3\xc5\x07\x75\x82\xd5\x23\x48\xf4\xec\x5a\xfc\x5a\xf1\x7e\x6c\x46\x61\x2a\xe6\x5d\xf2\x7f\x0f\x74\x74\x3c\x58\x3d\xc6\xac\x9b\x60\xf5\x18\x0c\x63\x02\xd5\x63\x78\xae\x09\x54\x4f\x7c\xb6\xf0\x82\xcb\x06\x02\x12\xf0\x3c\xc6\xd4\x9c\xc0\xf3\x18\x9b\x67\x82\xce\x63\x90\x96\x09\x1e\x8f\x31\x73\x26\x18\x3c\x46\x18\x9a\x42\xf0\x0c\x4d\x0a\xfa\x49\x2d\x90\x12\x81\xe0\x31\x50\xc8\xec\xe7\x6e\x35\xd5\xd0\x9c\xd7\xcb\x6c\xf0\x78\xf6\xa1\xa6\x9f\x4a\x22\xc5\x4f\x69\x52\xca\xff\x06\x9c\x94\xd9\xf6\x44\x17\x70\x6e\xee\x09\x83\x6b\xa4\x20\x01\x78\xa6\x37\xcc\x3d\xb1\xba\xed\xd9\xcc\x22\x66\xf3\xe8\x7b\xf3\x67\xde\x74\x95\xa4\x16\x97\xb9\x40\x98\xd2\x9b\x56\xa0\xb4\x3b\x04\x01\xc3\x2f\x4e\xe0\x77\xf4\x31\x9d\x00\xee\x18\x0e\x69\x76\x76\xf8\xe1\x3d\x7f\x67\x87\x3f\x1d\xc8\xe2\x57\xa5\x53\x6f\x3f\x54\xe8\xa7\x62\xe6\x6e\x66\x33\x30\x5c\xc5\x0c\x94\xc6\xac\xee\x65\xc7\x49\x30\x37\x7c\x73\x9a\x61\x0b\x6c\xd4\xa9\xc0\xba\xd8\x5f\xba\xb7\x93\x4c\xeb\x5e\x35\x01\x91\x5e\x15\xbf\x7d\x69\xf8\x13\xf2\xa5\xba\xeb\xe1\x0f\x9e\x16\x11\x3f\x00\xe5\xd1\x38\x7f\xf6\xaa\x18\xd9\x7d\xb9\xcd\xe2\x0b\x6b\xb5\xf8\x3f\x38\x57\xec\x17\xa0\xf5\xf4\xd3\x59\x8a\xe1\x6d\x71\x12\x71\x4b\xa9\xba\xa8\x0b\x5f\xa7\xde\xb2\x37\x3b\x8a\x16\x29\x1d\x38\x44\xdb\x32\x88\x55\x0b\x6a\xcf\xb6\x6a\xef\x78\x8a\x12\x0c\x64\x82\xe0\x13\x55\xf2\x4b\xb0\x3b\x1b\x81\x99\x90\x2b\x18\x68\x9f\x28\x8e\x22\xba\x27\x0d\x96\x67\xef\xbb\x22\x14\x88\x14\xa1\x02\xb2\xef\x3b\x4e\x16\x7d\xef\x8c\x0c\x12\x64\xef\xcc\xb4\xea\xa7\x6e\x7b\xed\x4f\x21\x5b\x26\xc0\x3f\x9d\x00\x1a\xb3\x77\x85\x48\x57\xfb\x96\x1e\x5c\xa3\x86\x92\x1c\x26\xe3\xa0\xab\xf9\x65\x0f\x79\xa1\x7b\x38\xea\x03\x56\x5c\xcd\x40\x77\x21\xad\x74\x01\x64\xc7\xce\x60\x4f\xd0\x5d\x5c\x92\x6a\x99\x04\xce\x4f\x4c\x1f\x72\xcc\x3d\xef\x49\x65\x98\x47\x95\xbc\x9d\x7d\xbe\xbb\xc6\xa7\xa2\x87\x33\x60\xee\xe9\x60\x16\x1a\x85\x4c\x22\x4c\xd0\xd0\x32\xba\xcf\xdd\x28\xaa\x72\x19\x3f\x8b\xba\x7b\xda\x4c\x2e\xe0\x0b\xae\xe2\x34\xbb\x68\x88\x75\xe4\x24\xe9\x39\x4b\xc4\xa0\x5d\x91\x4b\x65\x8c\xa3\x78\x19\xe0\xd6\xf1\xbd\xf6\xa2\xa0\x56\xf7\x9e\xca\xe4\xb9\x77\xe5\x7d\x51\xb5\xe3\xa2\x37\x68\x81\x22\xfb\x46\x0a\x52\x6c\xe8\x9a\xf4\xa8\x3d\x16\x1d\xa8\x6b\xc6\xde\x1f\x6b\xcc\xc7\x1e\x6b\x4c\x76\x6f\x39\x87\x55\x46\xf9\xaa\x2e\x53\x74\xa0\xae\xf5\xf3\x46\x07\x52\x03\xd9\xdd\x99\x9d\xdb\xe8\x5e\x87\xd7\xa7\xfd\xd9\xb3\xc3\x0f\x2b\x68\xda\x47\x7a\xe9\xa8\x4a\xed\x22\x15\xb8\xe1\xf4\x57\x75\x00\xf5\x7a\xe5\xcf\xee\x0c\xef\xae\x18\x5d\xb6\xf7\x6a\xf7\x06\x03\xc5\x24\x8e\x84\xfd\xf5\x9c\x2a\x87\x71\x0f\x76\xe2\xef\xb3\xa2\x2d\xde\x7b\x30\xa7\xc0\xbe\x8f\x87\x8e\xe4\xb7\x2b\x43\x32\x21\x85\x86\x3d\x43\x58\x17\x95\x69\x1d\x30\xbc\xe4\x20\x89\x5c\xa0\x65\x43\x5f\x3b\x3b\xbf\x2c\xd8\xa9\xb3\x8d\xa8\xd0\x39\x4b\x57\x16\x1c\xfe\xc0\x1a\x70\x54\x17\x03\xe1\xac\xd8\xbb\xad\x95\x47\x49\xab\x61\x4b\x17\xca\x95\xad\x1a\xa4\xa0\x4c\xec\x89\x39\x8c\x02\x0d\x83\xda\xa0\x41\x74\xef\xd0\xb2\x76\xee\x1f\x64\xa1\x85\xff\x1b\x06\x7c\x66\x96\x41\x21\x88\x0f\x34\xb7\x04\x4c\x99\xc2\x07\xd5\x34\xfc\x14\xfd\x39\xfc\x92\x32\x4d\xb6\x1e\xbb\x3f\xfd\x16\x5b\x2f\xa3\x0e\x7e\x50\x56\xb7\x00\x7c\xd0\x49\x58\xaf\x09\x7c\x50\x96\x9b\x82\x1e\x94\x95\xfb\xc7\xde\x92\xb3\x2f\x2e\x6a\xd6\xdb\x20\x54\x34\xc1\x73\x26\xe8\x41\x59\x53\x96\x8d\x0f\xa4\x22\x15\x7c\xa0\x53\x51\x7a\x78\x63\xaa\x29\xfd\x38\x77\x05\xa3\x9b\x47\xda\x48\xf4\x95\x17\x78\x13\x93\x07\x18\xa0\x48\x35\xff\xc4\x04\x87\x3b\xb9\xdd\x85\x81\xef\x98\xd9\x6f\xcb\x6c\xf7\xf7\xd4\x4f\x5a\xd1\x64\x78\x2e\x0b\xc5\x78\x0a\x51\x73\x6c\x35\xb4\x7d\xb4\xd5\xd0\xb0\x1b\x60\x85\xba\xf7\x6e\x03\x65\xb3\xc7\x87\x0d\x24\xa4\x3e\x73\x64\x4e\x0c\xe6\xce\xac\x57\x66\x22\xa0\x42\x67\x51\xd9\x04\x90\x50\x26\xf4\xf3\x04\x48\x28\xbb\x42\x07\xd0\xf0\x9e\x43\x86\x88\x0c\xb2\x21\xe0\x82\x92\x98\x2f\x73\xb8\xe5\x3b\x05\xf6\x96\xcf\x44\x1e\x7b\x6b\x77\xa8\x39\xe9\xcb\x8e\x85\x0b\xd2\xc5\x65\x70\xba\x77\x97\xdf\x08\x41\x3a\x8a\x0d\x43\xc3\x39\x70\xd5\x3e\xa4\x52\x55\xcd\xd8\x7e\xe1\x1a\x74\x9a\x9b\x53\xbf\x03\x5a\x5d\xf4\x3b\x11\xb7\x67\xce\x20\xb4\x01\x0a\x81\x40\xff\x14\xaf\x7f\x47\x43\x49\x3e\xfd\xdf\x89\x85\x40\x33\xdc\x9b\x91\xb1\x46\xb3\x41\xf6\xa0\x5b\x30\x8b\x7c\x18\xc4\x21\x39\x16\x1d\xde\x69\xd1\x9d\x89\x00\xbb\x01\x94\x26\x13\xb4\x71\x0e\xcf\x68\xa6\xd7\x0c\x46\xd5\xfb\xb8\x5c\x37\xc8\x49\x00\xd4\xa4\x7d\xfe\x1d\xa0\x79\xeb\x92\x31\xf4\xa4\x50\xb1\x09\x5c\x4d\xd7\x45\x62\xc3\xd5\x68\xe8\x33\x3c\xbe\xd9\x26\x43\xf9\xaa\xdf\x1b\xb7\xfa\x91\xfd\x2d\x97\xf0\xce\xef\xed\x82\x79\x1e\x5d\xef\x8b\x2f\xd1\x2a\x8d\xfe\xc7\x63\xab\x68\xfa\xb6\x88\x71\x60\xd9\x2a\xb4\x92\x1f\xcf\x2e\xd1\x54\xbb\x44\x5f\x6c\x70\xf5\x5b\xae\x43\x57\xc4\x6b\xf0\x33\xba\x0e\xd8\xee\xfd\x2d\xce\x41\xd5\xe6\x7e\x06\x3c\xb3\x56\x9b\x1f\x23\x08\x0d\xee\xd0\x34\x94\x18\x62\xbf\xa9\x3d\x1b\x06\xf3\xcf\x56\xfe\xf3\x40\xed\x92\xf8\xb6\x23\x02\xdd\x12\x87\xa7\xee\x75\xd1\x10\x21\x4e\x5d\xda\x88\xc3\x53\x57\xb7\x32\x82\xcf\x17\x79\xfb\x08\x3e\x5f\xb3\x2b\xfb\xc3\xbf\x48\x7e\xe7\xd1\x09\xe1\x71\xac\x5d\x11\xfa\x7a\x21\xdd\xc8\x5f\xd7\xae\x87\xa9\x36\xa8\x2b\xff\xe3\x7e\xe6\xda\xc2\x8d\x92\xc0\xda\x73\xee\x3b\x36\x8a\x9e\x87\xc3\xe1\x0f\xe0\x4f\x4e\xe9\xee\x83\xac\xc6\xa9\x67\xbf\xca\xa2\x79\xd8\xba\xca\xff\x58\x9c\xa3\x46\x03\x8a\xe6\xcc\x1a\x2a\x02\x3f\xd3\x3d\x44\x4c\x83\xd7\xca\x47\xc1\xa2\xe9\xe9\xf8\xe3\xcd\x06\x40\x35\x67\xde\x99\x0a\x99\x28\xfe\x74\x9e\xc0\x3f\x66\x70\xe8\xae\x1d\xfd\xdc\x97\x71\x4c\x59\x60\x6b\x7a\xe2\xc4\x30\x61\xbd\xda\xd1\xcf\xad\x19\x65\x96\x4d\xb8\xab\x96\xd7\x33\xed\x5e\x34\x55\x70\x03\xe2\xe2\xcd\xa9\x49\x68\x95\xae\xf4\x6a\xa5\x88\x67\x0b\x3c\xf3\x9c\x18\x99\x38\x50\x53\xcc\x52\xad\x89\xa7\xc6\x24\xea\x42\x37\xc8\x8d\xa6\x48\xe0\xd7\xc4\x2f\xbc\xe0\x48\x5f\x33\x33\x63\xee\xb3\x12\x92\x0e\xd0\x34\x5d\x1b\x5d\x10\x68\xba\x7a\x3d\x00\x68\x22\x91\xd9\x1d\xac\x69\x76\x4f\x79\xfb\x85\xc1\x42\x5e\x9d\x70\x4e\x77\x77\x50\x6a\xba\x86\xa0\xa0\xd4\x44\xe1\xb4\xa4\x28\xd7\xc1\x2e\x67\xa5\x17\x91\x01\xe6\x56\x8c\xc2\x8e\x66\xb5\x26\x4c\x8e\x60\x9d\x5d\x23\xe9\x59\x75\xa5\x9d\xfe\xb0\x5b\x68\x8e\xdd\x75\x94\x48\x3c\x9c\x9a\x9d\x43\xd5\x8d\x69\xff\xb2\xfc\x85\x0f\x34\xb9\x13\x9c\x58\x58\x93\xcc\x79\x75\xaa\x48\xdb\xff\xef\x0f\x93\x43\xcf\x7a\x1d\xc0\x66\x08\xd8\x46\x2d\x9d\x73\x2b\xcf\xe0\x47\xf3\x72\x29\xb1\x31\x03\x6c\xd2\xd5\x7a\x80\x6b\x12\x3f\xf0\x2d\x0c\xf3\x4b\xf6\xff\xd8\xcc\x08\x2a\x36\x01\x2d\x89\x4f\x91\x83\x4b\x98\xaa\xb7\x22\x08\x26\x29\xa9\xce\x02\xc2\x24\xed\x6e\x09\x6e\x9a\xd5\xaa\x4d\x43\x87\xa9\xce\x02\x9b\xa4\x6b\xfa\x35\xb7\x9e\xab\x9b\x6a\xf9\x42\xf6\x67\xfb\xb0\xfa\xb2\x2b\x4f\xf1\xc1\x40\xb7\xdc\x3d\x61\xa0\xaa\x2e\x26\xb7\x30\xda\x97\x4d\x58\xa6\x16\x5d\x13\xe9\xba\x66\x17\x2c\xd2\xf1\x9e\x27\x2f\x6b\x84\x73\xbb\xb8\x28\x1a\x68\x4d\x4d\x16\xf4\x2a\x9a\x5b\x50\x1e\xe6\x46\xcb\xe6\xc4\xc6\x96\x41\xd3\xa6\x69\xd8\x2f\xe5\xd4\x29\xf8\xb4\x2e\x30\xf3\x65\xfe\xc9\x83\x0c\xb4\xa2\x16\x6c\x62\xe4\xa0\xb1\xd7\x7c\x9d\x7f\xc3\x02\x17\x3f\x90\xfb\xdb\x5c\x84\x42\xb8\x51\xd1\xb2\x60\x8a\xf5\xa5\x6a\x6c\x2e\xa7\x0c\x4c\x19\xf0\x93\xae\xe9\x09\xe0\x27\xf1\x83\xa9\xa8\x09\x5c\x72\x1a\x2e\x5c\x3b\x68\x80\x50\x52\xa1\xba\x60\x9f\x74\x6d\x48\x2e\xd5\x4d\x19\x7d\x07\xd8\x27\xe7\xde\x28\x2f\xb1\xa1\xd5\x4d\x5c\x30\x50\x2f\x22\x05\x42\x29\x8a\x52\x22\xa1\x0c\xb7\xd3\xcb\xb8\xe0\xf3\xfc\xe3\x19\x18\xcc\x94\x68\xb3\xd9\x3e\x76\x25\x0b\xa2\x63\xd8\x84\xc1\x4c\x89\x44\x83\x17\x79\xc7\xf0\x25\xa1\x39\x22\xc7\xb9\xb7\x0f\xfe\x6f\xb6\x26\xf1\x32\xff\xf5\xd7\xd0\x3e\xee\x3a\x77\x35\x27\x2f\x9f\xd5\x24\x4b\xb2\x5f\xe1\x7c\x97\x4c\x54\x0d\xc2\xb5\xed\xe7\x59\x0e\x60\x9d\xc4\x97\xf9\x9a\x46\x7c\xea\x51\x2e\x02\xa3\x68\x3e\x72\x25\xbb\x9f\x1c\x21\x7c\x66\x77\x93\x6b\x73\x4e\xe6\xd4\x65\x88\x31\x4d\xa6\x2f\x45\x51\x0d\x95\xaf\xbc\xab\xef\x2f\xc1\x7d\xd4\x2e\x5e\xda\xdc\xe7\x9d\x0a\x96\x8c\x62\x00\x4c\x92\xee\xfd\xfd\xa5\x43\x38\x91\x58\xe6\x25\x77\x65\x73\x07\x9f\xa4\x7b\x2f\x7f\x15\x67\xfa\xf4\x07\x46\x15\xd1\xe0\x92\xd3\xaa\x00\xb8\x8a\x53\x67\xfa\x5d\x26\x31\x5b\x24\x88\x24\xc6\x2f\x9e\x82\x90\x1c\xaa\xe7\x41\x21\xe9\xc4\xa0\x9e\x02\x8f\x24\x2d\x85\x2f\x19\x2a\x9b\xfb\x25\x5a\x25\x38\xfa\x13\xe4\x91\xae\x78\xbd\x81\x47\x64\xc1\x17\x6a\x26\x42\xc6\x4d\x40\x48\x7a\xe2\x34\x7b\x19\xb0\x78\xee\x1f\x98\x27\xf0\x07\xe0\x45\xba\xb7\x9b\x17\x0a\x24\xef\xdb\x80\x17\xe9\xde\x28\x02\x22\xd2\xbd\xef\xba\xb0\x80\xd8\xf3\x17\x19\xd5\xcb\x17\x60\x25\x92\x57\xf2\x20\x49\x44\x61\x64\x30\x8e\xa2\x07\x6c\xa0\x24\xba\x2c\xef\x52\xfc\xf4\x80\x0d\x94\x44\x34\x82\x17\x6e\x0f\x54\x98\x5f\x9b\x7b\xda\x39\xf7\xee\x1c\x7f\x51\x02\x74\x86\xdf\xb2\x65\x4a\x54\x57\xb1\xc7\xd2\x00\x8b\x9e\x89\x2f\x19\x6b\xf3\x7f\x78\xbf\x27\xd3\x8b\xc8\x54\x6a\xc5\xaf\x1f\x4d\x05\xdf\x7d\xf6\xaa\x26\xcb\xa3\xe3\x1f\x2d\xf1\x46\x5b\x2b\xce\x8d\x11\xe1\x71\xf4\x12\x14\x51\x59\x16\xc8\x87\xae\xc2\x5c\xc8\x87\xb9\x17\x95\xac\x95\x8d\xfa\x32\x3e\xad\x76\xb7\x97\x61\x14\x35\x91\x05\xff\xe1\xdc\x22\xef\xa5\x12\xc2\xe3\xe9\x85\x51\xb6\x96\x4b\x17\x36\xd9\x7d\xe7\xb0\xbd\xd9\x42\x1e\x7e\x20\xd1\xb7\x4b\xf7\xc5\x8e\xb4\xbf\xbe\x5d\x22\x5d\x4c\xac\x10\xf5\x52\xd7\xe6\xa1\xb0\xe0\xeb\xdb\xbd\x4a\xb7\x60\x88\x9d\xe5\x40\x8a\xaf\x70\xf6\x4b\xa3\x6c\xcf\x33\x22\x3f\x80\xcf\x38\x41\x7e\xe8\x09\xfe\x7d\x7d\xf4\x89\xf4\x45\x37\xc0\x98\x01\x7b\xe8\x69\xfc\xd1\xcb\x03\x20\x88\x28\x85\x4a\x2e\x96\x02\x1c\xfc\x32\x22\x56\x76\x96\xab\xc3\xf0\x9c\x75\xc9\xdb\x61\xe7\x97\xee\x4a\x9e\x88\x36\xfc\x83\x27\xa2\x5b\x9b\x6d\x0f\x3e\xe0\x3f\xc4\x12\x2d\xbc\x24\x07\xc2\x64\xd9\x62\xfc\x85\x0e\x83\x87\xdf\xc6\x0c\x51\x94\xbf\x89\x75\x75\x38\x90\xa2\x3e\x1c\xf6\xfe\x2d\x03\xd7\x7e\xf8\x96\x51\x6b\x1a\x7c\x9f\xce\x04\x76\x14\x50\x1c\xe2\x85\x32\x95\x69\xe1\xe0\xc0\x38\xc4\xc7\xcc\xcf\x82\x1c\xfe\xef\xe0\xb3\xd5\x08\xe4\x30\xb5\x56\xbd\x37\x8e\x15\x23\x06\x78\x43\x57\x31\x70\x1b\x0c\x32\xb3\x3c\xef\xc4\xa2\x87\x73\xdd\x8a\xbe\x7a\xb0\x82\xd8\x10\xdf\xa2\xc5\x69\xbb\xad\x51\x17\x23\x7d\xc8\xaa\xef\x60\xd5\x35\x33\x41\xef\x1c\x8c\xc5\x43\xd1\x0d\xa3\x3e\x76\x1b\x35\x17\xf0\xe4\x76\x13\x4f\x4a\xeb\x24\xf0\x1b\xce\x66\x19\x1a\x08\x68\x8d\x0c\x7e\xc3\xe9\xbd\x9f\xf8\x0d\xda\x6c\xdc\xf0\x66\x3d\x7c\x6e\x6e\x09\x0c\x53\x01\xac\x43\xd6\x7d\x40\x20\x87\x63\xf7\x68\xd9\xcd\xf0\x4b\xce\xd5\x6a\xf6\x45\x76\x5a\x1e\xbc\xb9\x2b\x6c\x82\xcb\x90\x09\xa8\x39\xef\xba\x5b\x41\x86\xe0\xba\x5d\x09\x0f\x28\x86\x53\x8b\xa2\x5b\x89\x56\xcb\x06\x21\x16\xba\x56\x25\xb7\xe6\x66\x1e\xd5\xc0\x58\x88\x9a\xf0\xe1\xe6\x02\x64\xfb\x10\x70\x61\x1f\x6b\xee\xb6\x6b\x4f\xbd\xd4\x0f\x78\xde\x02\x59\xa1\x68\x38\x07\x82\xc2\x50\xb9\x7b\xf7\x3d\x37\x7d\xb1\x53\xfc\xbf\x92\x88\xcc\x5d\x7e\xc5\x0e\x00\x82\x42\xe4\xa0\x74\xc3\xfc\x7a\xbb\x0e\x36\x42\x94\xce\x88\x0c\x3a\xdb\x21\xe4\xda\x7d\x9f\xb0\xc0\x43\x88\x2c\x74\x0b\x4e\xba\xc7\x1e\xb7\xe1\x48\xb3\xa1\xdc\xaa\xd5\xbd\x2b\x06\x36\xe1\xdc\xa7\xaf\xdb\x38\xf2\x5e\xd4\x6d\xac\x04\x2f\xb9\xc0\x4a\x38\x55\xd1\x83\x95\x60\xe4\xf8\x29\x54\xc2\xa1\x65\xf0\x3d\x19\x2e\x07\x78\xe2\xe1\xd1\x4d\xe4\xec\xf0\x7f\xf9\x1d\x1b\xcf\x3d\xed\x47\xf6\x17\x00\x15\xe2\x53\xfe\xe2\x78\xd9\xc8\xcb\xe5\xe7\x2a\xbf\x94\x5a\xb2\xbf\x30\xf6\x96\x7e\xed\x66\x51\x4c\x6c\x7c\x99\x90\x9a\xf3\xd6\x5c\x4b\x36\x77\xab\x72\xd7\xae\xf7\x46\xe5\xbe\x5b\x75\x19\xbf\x9c\xd2\xef\xdd\x2a\xea\x15\x47\x08\xa2\xe6\xff\x81\x19\xde\x46\xb7\xd0\x18\xf8\xe6\x7a\x5d\x19\xe8\x36\x00\xb1\xa7\xed\x9b\xfd\x71\x6a\x7d\x7c\x63\xf0\xa5\x24\x71\x13\x8b\xcb\xa0\x42\xb7\xaa\x7c\x8f\x98\x37\xaa\xfc\xa9\xe9\xdf\xcd\x66\x79\xec\x19\xca\x66\xa9\x3c\x75\x7b\xdb\x9e\xd9\xf9\x6e\xf4\x33\x39\xf9\xff\xee\x30\x66\xc5\xe3\x34\xb6\x44\xad\xbc\x9c\xc5\x18\x79\xe5\xfd\xd9\xdd\xf9\x66\x67\x3d\x22\x05\xdd\xea\xeb\x3d\xd4\xde\xd8\x72\xed\xe9\x8d\xfd\x96\x16\x07\xf7\xbb\xcb\x63\xae\xbd\xb6\xd6\x5a\xb1\x23\xaa\x90\xb9\x85\x44\xd2\x1c\xef\xc6\x5a\xba\xb8\x39\xdf\x58\x66\xed\x45\xc0\x39\x22\x23\x98\xdc\x1f\xb3\xc8\x81\xfb\x2c\x9b\x9a\xb3\x69\x6e\x35\xc1\xfd\xed\xc2\x29\x83\x0b\x73\x2f\xaa\x6f\xf4\x3c\x53\x4b\xa3\x9b\xc8\x18\xd5\xc3\xea\xfd\xd9\xbd\xfb\x65\xf9\x42\xfe\x45\xf7\x9a\x85\xed\x71\x77\x22\x0a\xfd\xdd\xd3\x4b\xf6\xe1\x74\xc4\x08\xdb\x8b\xd3\x7b\xed\x9a\x50\xf7\xe5\x76\x24\xf7\xd0\x95\xd7\x23\xfc\xad\x11\x76\x76\xde\x69\x77\xad\xa2\xe9\x5e\x8e\x34\x83\xf8\xc4\x7e\x38\xf4\x18\x7e\x88\xfc\x78\x78\xf1\xfd\x70\x9d\xee\xa5\xfb\xc3\x06\xe8\xe5\xc2\xc3\xad\x79\x66\x01\x3c\x68\x84\xac\xc9\x73\x30\xce\xc5\xbc\xbb\x1b\xcc\xf0\x90\x68\xf0\x3f\xc1\x42\xba\x89\xe4\x43\x9c\x5b\x9f\xd8\x22\x8b\x3c\xff\x31\xde\xb1\xa7\xf4\x07\xb5\x51\x66\x23\x7f\xb8\x5b\xb7\x45\x0f\x9a\x21\x3b\xfa\x39\x2b\xff\xfb\x21\x97\xb4\x45\xc7\x66\xd9\x0d\x02\xf1\xa0\xae\x3f\xb4\x70\x7f\x4e\x27\x89\xad\xdb\xe7\x1d\x0e\xff\x0f\x3a\xa3\x8c\x6e\xf0\x49\xae\x3b\x4e\x82\x8f\x51\x94\x55\xfb\x3c\xc9\xce\xa1\x26\xec\xa8\xb9\x98\xdb\x1d\xb5\xfb\x83\x03\x65\x57\x19\x1f\xd2\x73\xfd\x93\x14\xb4\xac\x58\x72\xa0\x6c\x22\x8a\x7b\xe0\x27\xe7\x83\x6e\x29\xef\xd2\x17\x7a\x3f\x0a\x41\x6d\x9f\xd9\x5c\x1f\x2f\xed\x35\x6a\x7e\xdc\x8f\x39\xaf\x3c\x7b\x3f\x86\xb5\x3d\xfb\xe0\xe4\xe0\xe8\xac\xec\xdd\xbe\x60\x31\x85\x7d\x0d\xac\x98\x2e\xff\x7b\xb2\xa1\xad\xfc\x94\xfc\xba\x5b\x20\x95\xe2\x44\xf5\x68\xbd\xb7\xe7\x88\xd6\xe3\xea\x08\x1e\xd4\xfb\x87\xcc\x50\x14\x99\xa9\x49\x35\x28\x32\x3d\xb3\x23\x83\x22\xd3\x73\xfd\x23\x03\x04\x61\x66\x9f\x6c\x1e\x43\x35\xab\x66\x78\x3c\x56\x71\xa4\x10\x16\xa6\xee\xfe\x52\x69\xa5\x0d\xf9\x53\xdd\xb1\x92\xc9\x30\x43\x42\xa2\x78\xf4\x7b\x3a\xaa\x3f\xd0\xfc\x6a\x76\xa5\x08\x38\xd8\x63\x10\x67\xfd\xc1\x81\x85\x89\x17\x7a\xaf\xee\xba\xf8\x31\x57\x38\x27\xb6\x87\x9b\xfd\x6c\xf1\x42\xff\xcb\xbe\x9f\xb6\x6b\xe9\x2f\x9b\xc3\xf8\x8b\xbd\x41\x5d\xb6\x50\x00\x0f\x7c\x8c\xdc\xbc\x67\x58\x77\x4e\xb2\x93\x3e\x46\x68\xf6\x1e\xee\xe9\xf6\x2c\xdf\xea\x7b\xea\xf9\xc2\x8a\xb5\xc6\x86\xeb\xd0\xba\xf9\xf1\x4e\xde\xbb\xa4\xe7\x23\x94\x3f\xbc\xe7\xd1\x24\x55\x0b\xe5\xe7\xb3\x5e\x34\x8b\x68\x82\xaa\x49\x1e\x0e\x05\x80\x19\x4d\xf0\x29\x3a\x80\xe2\xf3\x91\xb9\x21\x5e\x00\x3c\x11\x1f\x22\x33\x91\xd6\xf5\xc1\x01\x84\x22\x13\x20\x7f\x3e\x0b\xc3\x43\x97\x89\x0e\x26\xaa\x71\x9e\xcd\xcf\x98\x9d\xef\xd6\xc4\x30\x6d\x41\x94\xe8\x84\xa9\x9e\xaf\xcc\x89\x3e\x00\x5c\x22\xab\xe9\x7c\x65\x54\x48\x26\x82\x4b\x14\xcf\x62\x02\x4a\x4c\x8d\xa9\x45\x91\x70\x17\x7a\xd5\x57\x6b\x0d\xfd\xca\x78\xe0\x4e\xaf\x0c\x06\xbe\x2a\x28\x84\x62\xe4\xeb\x15\xa0\x2a\xa4\x17\x91\xdb\xd0\x20\x2f\x7e\x8f\x5a\x9f\xbd\xc9\xfa\x51\x6f\x74\xca\x20\xca\xce\x17\x3b\x1c\x43\xe3\xbd\xea\x97\x77\x7a\xd4\xe9\xc9\xef\xc8\x23\x39\x7a\xbc\x59\xe1\x81\x0d\xec\xcd\xf6\x2c\xfc\xe4\x15\x05\x5d\x25\xcd\x9b\x35\x22\x37\x8b\x15\x44\xb1\xf2\x66\xe5\xa0\x6c\x2a\xd6\x71\x37\x95\x35\xa7\x15\x38\x84\x80\x79\x33\xdf\xb2\xbb\x9c\x02\x8b\xfc\x8f\x0d\xfe\x55\x14\xb7\xa3\x8a\xc2\xe1\xf4\x85\xc6\x5a\x2b\x1d\x1f\x73\x35\x07\xa3\xd1\xfd\x94\x93\x10\x56\xf1\xa2\x6a\xd6\xab\xfd\x55\x2c\x67\x3e\xbe\xd5\xe3\x98\xfd\x40\x7c\xbb\xec\x44\x60\x39\xea\x91\xfc\xee\x35\x07\x33\x78\x59\x73\xba\xa9\xbc\xb1\xe6\x72\xdf\x74\xbb\x8a\x55\xfa\xee\xf5\x57\xfd\x85\x66\xec\x1f\x76\x33\x28\x43\xb8\x0e\xd9\xd4\x2b\x7a\x93\x4b\x03\xec\x0e\x11\x64\x26\xd8\x1d\x59\xbf\xac\xb7\xd1\x87\x8e\x40\x77\x4f\xa5\x22\x98\xe1\x66\x67\x48\x77\x4b\xb7\x19\x18\xc7\xe4\x3f\x5b\x3b\xbf\xdd\x73\x25\x12\xc2\xdb\x55\xa0\x57\xbf\xfd\xf9\x42\x65\x74\xf0\x50\xbd\x22\x48\xc7\xd4\xdc\xfb\x1d\x1b\x93\x84\xb1\xc6\xf9\x22\xef\x1f\xec\x55\xe9\x8a\xeb\x2e\x04\x11\x3b\x64\x5f\xaf\x71\xe5\x54\xc2\xbc\xfa\x27\xb2\x91\x00\xd8\x91\xb2\x0a\xae\x77\x7a\xa6\x81\x47\xbf\xda\xc1\x1c\x88\x6d\xef\xb4\xa1\x64\xd1\x9f\xe2\xb0\x9b\x2e\x7a\x9f\xa3\xe8\x7b\x51\x15\x14\x5c\xef\x8e\xfe\x76\xf8\x02\x97\xf1\x4b\x7a\x44\x78\x79\xf1\x5e\x46\x0b\x3c\x7c\xa1\xf7\x61\x33\xef\xd6\xcc\xc3\x48\x01\xf2\xe8\xd9\x41\x45\x19\x7f\xec\x44\x72\x4e\x6b\x75\x33\x37\xa7\x3f\x58\x75\x6b\x75\x47\xd5\xf5\xc9\x05\xc6\xa3\x67\x7b\xe1\xde\x15\xb1\x08\x77\x04\xeb\xae\x7b\xc4\xe1\x82\x03\x59\xa9\x1b\xa7\xe3\x7d\x98\xdb\x0e\x02\x21\x6d\x65\xa3\xef\xb3\x27\xa4\x3f\xd8\x25\x7c\x17\x51\xbb\xd8\xbb\x5b\xd4\x86\x87\xbf\xcf\xae\x22\x8d\xda\x61\xd2\x0f\xb3\x2f\xb2\xd0\xa8\x37\xf3\x3f\x89\x84\x32\x97\x87\x83\xd5\xd1\x8d\xcb\x02\x54\x47\x2f\xf6\xf4\xeb\xaa\xb4\xf0\xd7\xde\xe5\x98\xf4\x1a\x04\x40\xf6\xfe\x6e\x25\x93\x0d\xf9\x9c\xd1\xf6\xca\xa7\xc8\x81\x58\xfb\x7e\xd6\xde\x54\xdd\x7e\x30\x95\x9a\x0d\xa4\xb5\x77\xcb\xcb\x6c\x16\x2f\x06\x30\xe5\x30\xd5\x2e\xdf\x1f\x6c\x16\xb5\x37\x0c\xad\x27\xf4\x77\x61\xa5\x28\x53\xc1\xdb\xff\x50\xda\x16\xc8\xa3\x1a\x13\xe3\xe5\x36\xa0\x70\x42\x7f\xd9\x52\xbc\x95\x7b\xd1\x1e\x69\x69\x08\xa8\x47\x2f\x36\x77\xed\xb2\xa3\x1d\x9f\x77\xa6\xda\xd1\x7f\xc7\x6e\xc8\xe4\xe5\xf2\x97\x83\x97\xd7\x97\xc4\xcb\xfe\x40\x34\xf1\xd3\x13\xdf\x7d\x08\xc0\x8e\xf8\x65\xf0\x82\x4e\x8f\x33\xe6\xa7\x26\x47\x83\xf4\x4f\x5f\x0f\xb7\xd6\x2f\xa4\xd3\x5e\xac\x0c\x5e\x63\xc5\xef\x76\x75\xc2\xe4\xc6\xe8\xce\xd8\x97\x40\x30\x44\x3f\xf8\xc3\xed\x67\xcd\xf1\x80\x95\xda\xf9\xdf\xf6\x9a\x68\x87\x4d\x8d\xff\xc7\x76\x8f\xe0\x07\xcc\xea\x34\xe0\xf9\x84\x44\xd4\x28\x1c\x70\x86\x68\x06\xfd\x30\xe8\x5e\x9b\xc4\x41\xbd\xc0\x04\xc0\x5a\xe8\x05\xfe\x0d\xd4\x42\x51\x4e\x01\x5e\xa1\x17\x18\xcd\xe7\xdd\x5e\x9c\x38\xfe\xc0\x05\xbf\xa9\xf5\xb8\x5f\x1e\xe6\xf2\x65\x37\xd1\xf2\x69\x16\x0b\xee\xdb\x27\x7d\xb6\xbb\x6f\xa2\x4b\xb1\x7b\xaf\x3d\x39\xe8\xae\xcb\xda\xf8\x7f\x08\x22\x19\x7e\xfe\x19\x9d\x4b\xb1\x02\x44\x86\x0e\xf8\xdb\x04\x90\xa1\x1b\x9e\x0a\x10\x86\x48\x44\xa7\x5c\x96\x4d\x9f\x6c\xe6\x64\x45\x04\x61\x70\xc7\xfa\xb6\x06\x00\x69\x07\xe8\x85\x24\x96\xef\xfc\x38\xd8\xeb\x14\x0a\x0c\x43\xd7\x11\xf9\x83\x3b\x95\xe4\xff\x2c\x9e\xe2\xff\x44\xa2\x75\x62\x82\xf9\xd6\x2d\x3b\x98\x53\xe9\xbb\x00\xa7\xe5\xe9\x0b\xc6\x06\xdd\xc2\x00\x80\x63\x1b\xf9\x1e\x4d\xc7\xec\xce\x87\xd0\x15\xfb\xff\x3d\x3a\xb4\xfb\xd9\x9d\x4e\xd9\xf8\x43\xef\x80\x2e\x20\x32\x74\x0d\x17\x44\x64\x68\xec\x0f\xa0\x30\x88\x40\x36\x01\x61\x48\x8a\xe3\x80\x30\xf4\x92\xfd\xdf\x3d\xc4\x9a\xc7\x99\xbe\xb6\xe2\x0f\x60\x7a\x3b\xa5\xf7\xf1\x9e\x3a\xbd\x16\x46\x95\xb8\x3e\xd4\x6f\xe6\x7b\x59\x26\xd9\xc2\x96\xad\xa6\x16\xc1\xaf\x7a\xe1\x3c\xf8\x7d\x1e\x4b\x58\xf2\x1f\x3e\x58\xc5\x7e\xda\xa7\x7b\x84\x34\xa0\x1d\x7a\xd9\x89\xdc\x62\x9b\xd9\xe1\x43\x36\x6e\xed\x71\xf4\x85\x28\xc7\x6e\xd1\xdf\xf2\x14\xcd\xa9\xe8\x43\xe1\x5d\xf6\xff\xb6\x35\xfb\x62\x77\xc2\x06\x81\x79\xe8\x05\x96\xfc\xad\x5d\xf9\x48\xb5\x36\xf7\x61\xc5\x8b\xc5\x30\x75\x3f\x58\x5b\xf5\x5c\xfc\xe5\x23\x2c\x59\xe2\x7f\x4f\xf7\xf4\xe2\x3a\x3d\x3a\x20\x58\xae\x73\xd7\xd2\x5f\x94\xed\x10\x57\xc1\x60\x38\xf5\xbd\x06\x83\x21\xf2\x53\x0a\x82\x6f\x61\x9a\xac\xcd\xbb\xb2\x3f\xd8\x61\x48\x80\xe0\x2e\xc4\x8b\xc9\xdc\x90\xf6\xc7\x94\x5d\x8a\x2f\xcb\x5f\xa2\x93\x17\x36\x72\x5e\x4e\x2f\xce\xdc\x05\x31\x66\xa5\xdd\x7b\x26\xf2\xe0\x86\x00\x0a\x5e\x42\x2f\x4c\x21\x40\x11\xa2\x44\xb2\x64\x6b\x8c\xb0\xb6\xf2\xae\x18\xc9\xf2\xae\x18\x55\x16\xe4\x40\x0f\x0f\x40\x0e\x72\xd9\xa9\x88\xe9\xe7\xac\x58\x79\xaf\x18\xca\x47\x48\x06\xa8\x6d\x02\x7f\x10\xa9\x28\x65\x9f\x7c\xe1\xa5\xa0\x19\xc4\x0b\x59\x30\xcf\x98\xfa\x8b\x80\x67\x90\xf2\x1e\x8b\x02\xe3\xa8\x66\xb9\xff\xf5\x57\xd5\x28\x41\xd8\x82\xde\xff\x68\x13\xb8\x34\x74\xb3\xcd\x1c\x7c\x8d\xba\xba\xc4\x43\x3d\x91\xcc\x81\x37\xe8\x3a\xa6\x6e\x74\x03\x7d\x44\x56\x75\xf8\x1c\xd7\xba\x7b\xc9\x64\xc3\x64\xb4\xac\xba\x7d\x38\xe4\x1e\x76\x75\xcf\x58\x55\x9e\xe6\x58\x36\x76\x5e\x7f\x68\x48\x1a\x48\x07\xab\xc9\x36\x87\x2f\xd3\xec\x14\xc9\xad\x62\x71\xc0\x71\x60\x2b\x4d\xfa\x2e\xc3\x1f\x76\x19\xb4\xab\x39\x93\x9d\x17\x06\x81\xd6\xb1\x62\x75\xbb\x1f\xf1\x7e\x21\x61\x17\x56\xe8\xea\x32\x54\x27\x4c\x77\x5c\xe0\xa8\x8b\xd3\x71\x71\x21\xe0\xdd\x56\x9a\x9f\x72\xba\x56\x7f\xd8\x58\xd8\x7c\x17\x40\x21\xb5\xd4\x6b\x38\xf8\x4e\xb1\xe9\xa2\x82\x1f\xad\xe9\x66\xc2\xf9\x65\xb9\xb5\xb9\xa6\xf6\xd6\xe6\x7c\x35\xb8\xb2\xf6\x1e\x20\x42\x74\x95\x60\x20\x42\x54\xaf\x3e\x05\x84\x38\x76\x0e\xbc\x90\x8b\x4b\xea\x72\xe1\x3a\x0f\xb5\x0b\xf7\x2c\xb4\xc4\xbc\x53\x4f\x01\x3e\x44\xe4\x27\x19\x76\x7c\xdb\x83\x63\x19\x93\x51\x16\xbd\x74\xed\x75\xa3\x02\x8f\x21\x7e\xa1\xfa\x8f\x79\x10\xb6\x45\x4d\x28\x5a\x70\x2f\x6c\xec\x0e\x2c\xec\xaf\x8e\xec\x5c\x71\x39\xb9\x6e\xb5\x2e\x38\x84\xbc\x23\x3f\xef\x8b\x42\x11\x07\x56\xde\x15\xa0\x0e\x0e\xf1\x12\x58\xa1\x27\x73\xe7\x1d\xf9\x7d\xe9\x8f\x33\x61\x70\xf1\x8e\x72\xbc\xaa\x0f\x33\x8e\x77\x12\x70\xe9\xd3\x1e\x64\x13\x2e\x2a\x17\x9b\xbe\x84\xcb\xd3\x62\x70\xf3\x4d\xf0\xfe\xa2\xfc\x66\xc1\xe2\xb1\x70\x1f\x21\x61\xed\xee\xea\x9b\xf0\x56\x95\x2e\xbd\xfe\x10\xf8\x68\x1e\xbf\x29\xbe\xd3\x33\x70\xfd\xf9\x86\x80\x2e\x5e\x7a\x4a\xd0\xe3\x1f\x23\x57\x09\x43\xc2\xf8\xcd\xb2\x6c\xcb\xb4\x94\xf3\x7d\x8c\xa2\xc0\xbd\x1d\x04\x95\x15\x1d\x53\x47\x09\x78\xcf\x16\x4c\x5f\x25\xdc\x6a\x94\xc6\xf1\x43\xf0\x12\x39\x1f\x3f\x29\xc0\x8c\x3b\x0b\xe6\xab\x12\xd4\x3c\xe0\xb4\x28\xe1\x53\x1f\x3a\xf2\x26\xc0\x5e\xce\x8e\x71\x88\x04\x55\xfa\x2c\xb9\x77\x94\xf4\x3e\x8a\xbf\xe8\xf2\x25\xc0\x52\xbd\x0e\x90\xc0\xe9\x49\xfd\x39\x84\xad\x5e\xc1\x32\x58\x02\x07\x58\x75\xdc\x12\x38\xaa\x96\xf3\xf8\xf9\xe8\x2b\xfe\x35\x1a\x71\x08\x20\x9f\x9d\x99\xf0\x67\x12\xf4\xfc\x46\x11\x0c\x41\x50\x1f\x95\xd2\x12\x04\x08\x26\xb4\x88\x04\x2c\x09\x32\xf7\xe4\xef\x28\xf9\x45\x6b\x71\xaa\xd6\x92\xb0\x47\x7f\x1e\x3f\x04\x83\xab\xb0\xab\x41\xb0\x1e\x9e\x9d\x37\xc1\x62\xc7\x4f\x16\x91\xc3\xd4\x72\x40\x00\x2d\xe6\xfc\x7f\x71\xca\x7f\x47\x29\xaf\x00\x82\xca\xf7\x12\xd8\x8c\x32\x36\xa4\x12\xe0\xe8\x4a\xfa\x12\xf4\xc3\x29\x7b\x04\x82\x70\x9b\xa2\xff\x10\x84\x66\x64\xb9\x4b\xf8\x76\x96\xf1\x43\xe0\x72\x40\x81\x0c\x02\xbb\xf6\x29\x02\x9f\x04\xf4\xc7\x4a\x57\x12\x8a\xdf\xc8\x3f\xdf\x90\x75\xf4\x52\x2c\xa5\xbe\xc2\x59\x77\xc2\xe5\x6f\xc2\x67\xd0\xb5\x73\x13\x36\x66\x24\x7c\x10\xc2\x27\xe4\x42\xd9\xdd\x59\xdf\x4f\x4c\xe4\xb1\x4b\xa9\xef\x3a\xac\xc7\xfc\xc9\x02\xda\x50\x10\xec\xa0\xf6\x02\x72\x7c\x8a\x27\x07\xc1\xe3\x75\xaf\xa9\x6e\xc2\xc7\x65\xfa\xd8\xef\xfd\x7d\xb4\x06\xaf\x9b\xd9\xf4\xf7\xf5\xba\xbb\x6e\x76\xd4\x7f\xa6\x0a\xb0\x38\x12\x50\x28\x75\x50\xa5\x25\x70\x16\xeb\xf8\x79\x4a\x98\xa6\xa8\xff\x10\x1e\x09\xe9\x87\x70\x19\x6d\xb6\x9e\x3f\x04\x66\x68\xaf\xf5\xb7\x1e\xdf\x0e\xfd\xf8\x93\xe2\x33\x38\x4c\x6d\xe9\x97\x60\xff\xfc\x56\x6c\x03\x5a\xd5\xfe\x4b\xe8\x36\x6e\xfc\x64\x59\x62\x88\x55\xb9\x71\x19\xef\xeb\x7c\xa9\x9b\xd9\x8c\xf7\x13\x51\xeb\x87\x51\x8c\x9f\x8f\xb6\x7f\x08\x58\x98\xf7\xb6\x99\xcd\x7c\x3f\x9d\x27\xcb\xe6\xb5\x71\x5e\xa7\xa6\x6d\x2f\xe1\xeb\x55\x9f\x2e\x3e\x8d\x84\x4b\xc2\x9e\xd9\xd7\xab\x62\xa9\xb7\xfa\x93\x82\x63\xcf\xd9\x89\x5b\x08\x41\xc9\xaa\xb7\x3d\x3d\xae\x57\x08\x24\x15\x7e\xef\x28\xf7\xeb\xad\x8e\x47\x28\x09\x58\xa5\x75\x02\xb8\x43\xd8\x6b\x1a\xa4\x72\x08\x9f\xb6\x06\xa7\x9b\x51\xb9\x5f\x70\x71\xd2\x81\x33\xe7\x3b\xca\xf3\xbe\xc6\xd1\xe8\x7b\x3a\x3c\x3f\x33\x8a\x28\x9e\x9b\xe0\x30\x6c\xbe\xf0\xbc\x20\x87\x46\x8a\xbc\x09\x88\x28\x67\xef\x7b\x28\x9f\x97\xfd\xf4\x2c\x67\xf9\x29\x65\x19\xd9\x02\xdb\xcb\x4d\xd8\x59\xca\x2f\xc1\x62\xdb\xef\x47\xdf\xed\x0b\xff\xcf\x37\x2e\x09\xe9\x97\xb0\x24\xfc\x7e\xc3\xa5\x4f\xdc\x3c\x09\x02\x38\x73\x18\x7f\x47\x79\x7f\x36\xa3\x3e\xfe\x21\xdc\x12\xca\x0f\xa1\xda\x85\xbb\xd7\xdf\x77\x5f\x62\xf4\xdd\xfc\xf7\x7d\x2c\x65\x9c\x3f\x59\x5e\x2d\xd6\xc6\xe6\x5a\xef\xfb\x4e\x53\xec\x6d\xe2\xfd\xe9\xc2\x79\xfc\xa4\xf8\xb0\xe8\xeb\xa3\xe4\x5f\xc2\x94\x70\xfe\x12\xbc\x36\x9b\xbf\x29\x64\x1f\xa3\xfc\x54\x1d\xc4\xb9\xb3\x8f\xf6\x93\x02\x1c\xb8\xb3\x13\xde\x4c\x02\x1b\xab\x78\x3e\x12\xd0\x0e\x0b\x27\xb3\x09\xdb\xcf\xf1\xa7\xa6\x6b\xc7\x5e\xee\x3f\x35\x05\x0b\x29\x44\xa3\xdf\x62\xf5\x9f\x1a\xbb\xd7\xbf\x9f\x59\x38\xf6\xc4\xfd\xde\x47\x14\xd4\xb1\x17\xe1\xf7\x0a\x32\xd9\xc7\x16\x01\xd6\xfb\xe0\xea\xd8\xe7\x9e\xa7\xeb\x7d\x90\xd3\x4a\xda\xad\x5d\xaf\xd0\xdb\x19\x3b\x5a\x08\xc8\x5d\x67\x9f\x9b\xb1\xad\xbd\xf5\x8e\x3c\x7f\x53\x14\x53\xec\x0e\x5a\xef\xeb\x94\x9a\xe5\x37\x8b\xb2\xc9\x2c\xbf\x59\x64\x17\xb3\xfc\xc9\x60\x8b\xd4\x0b\x7d\x74\x9f\x4e\x8d\x7a\x38\x79\xd2\x71\x3a\xab\x83\xa0\x96\x18\x5d\x32\x04\xa1\xc1\xb5\x42\x95\x60\x48\xd4\xc3\xb9\x12\x04\x1a\x3a\x50\x99\x41\xf0\x48\x5e\xb6\xcc\x55\x8f\x57\xe9\x76\x1c\x72\xf0\x20\x10\x86\x6d\x6f\x1b\x35\x64\x1f\x4c\x80\x0f\x37\xa7\x20\x10\x1f\x61\x1c\x4a\x14\xf5\x74\x10\x4f\xc3\x6e\xbf\xa3\xa6\x5d\xd1\x41\x68\x1b\x08\xc2\xc5\x8e\xd3\xfe\xae\xe9\x5d\x86\x35\x3e\xcf\x9f\x14\xcb\x28\x50\xa7\xd2\x51\xcd\xaf\x57\xd1\x63\xf3\x96\x9a\x5f\x40\xc7\xcf\x3c\x15\xfd\x6a\x7e\xbf\x63\x9f\x5c\xc7\x2f\x81\xc6\x9e\xff\x10\x44\x54\x38\xe5\xf9\x41\xd0\x89\xf7\x74\x42\x06\xc1\xb8\x82\xe7\xae\x7a\x7e\xd7\xd6\x3f\xb8\x91\xd4\xb2\xd7\xf4\xc0\x6d\x4b\x82\xce\x50\xe7\x1e\xa7\xf2\xbe\x5c\x74\x8f\xd3\x09\x19\x04\xc2\x41\x8c\x53\x61\x28\x08\xe2\xa1\x9d\xf3\x37\x8b\x91\x5d\x4f\xb7\xe2\x5a\xde\x4f\x80\x8a\x73\xfe\x7c\xe3\xd3\x48\xf6\x74\x52\xd7\xfa\x72\x9f\x7d\x8e\x2d\x81\x07\xc1\x58\x4e\x87\xab\x3e\x08\x9a\x90\xa7\xf3\x27\x8b\x73\xd8\x30\x9c\x12\x30\xd2\x19\x29\xfd\x10\x50\x5e\x9e\x65\x0b\xed\xb5\xfe\x48\xe0\x3f\xf3\xa5\xbe\xcb\xb6\x10\x73\x4e\x82\x68\x76\x69\x4f\x87\xf6\x3e\xd8\x50\xb5\xdd\x83\x6d\x73\xa3\xbe\x4f\x28\x10\x3c\xfe\x28\x1a\x07\x41\x83\xf8\xb4\x27\x76\xdb\x52\x56\x9e\xe9\x27\xc5\xa7\xfb\x50\xda\x13\xa8\x6d\xb1\x6b\xe0\xc7\x2d\x41\x57\x4e\xfc\xa9\x21\x2c\xe3\x14\xef\x35\x5e\xfb\xe6\xbd\x03\xeb\x37\x09\x70\xa3\x91\x8f\x9f\x14\x5b\x8a\x38\xf2\x0f\xe1\xb3\x8f\xf3\x6e\x7d\x7f\x3f\xa7\xe9\x96\xd9\x83\x20\xc0\x70\x4e\xe9\x97\x50\x25\x1c\x3f\x84\x67\xa7\xe8\x3f\x04\xbd\x61\xb3\xac\x25\x08\xdf\x26\xfc\x7c\x74\x19\x85\x20\xe7\x9f\x6f\x00\x99\x18\x84\x9f\x52\x96\x3d\x96\xf3\x6f\x16\xc4\x9b\x91\xf3\x4f\x4d\x37\x12\x5c\x96\x1b\xd5\xf1\x3e\xa2\xb0\x65\xb9\x51\x10\x50\x3a\x8d\x2c\xab\x0d\x82\x7e\x22\xb9\xfe\x66\x21\x48\xf0\x40\xb5\x0b\xe1\x63\x66\xe7\xe6\x79\x2c\x08\xcd\x93\xa3\xe7\xb1\x20\x74\xbf\x31\x7e\xb3\x18\xab\x2c\x2b\x34\xd4\xf1\x82\x37\x99\x8e\xec\x11\xb7\xce\x17\x3b\x99\xe0\xac\x63\x13\xbe\x2e\x40\xa0\xdb\x46\x10\x3c\x6c\x72\x37\x00\xc1\x13\xca\x28\xbb\x83\xae\xf7\x31\x64\x47\xd9\x8d\xbb\xde\x47\x7f\xb1\xa2\x0c\x59\xaf\x97\xcb\xd0\x33\xb7\x7f\x08\x32\x98\x52\x7f\xbe\xe1\x35\x5b\x21\xde\x83\x84\xfd\xd1\xdd\x41\xd7\xcf\xa2\x2c\xbb\x83\xae\xf7\xab\xdb\x72\x69\xfe\x10\x84\x90\x2a\x6e\x92\x41\xd0\xe6\x1a\xe5\x8c\x04\xf7\xb3\x63\xa7\x08\xa9\x6a\x2a\xb8\x8f\x1f\x82\x41\x57\xab\x87\xab\x20\xa8\xc9\x48\xff\x10\xac\x58\xdd\x5c\x3d\xe4\x2e\xf6\xa2\x63\x0f\xc3\xfd\x33\x0b\x6b\xfa\xf9\xa8\x8a\x95\xb1\xc5\xf0\x20\x60\xea\x34\xaa\x22\x63\x7d\x5e\x6c\x08\x4e\x83\xf8\x40\x78\x75\x19\x26\x30\x8c\x04\x21\x68\x6a\xff\x93\xc3\x05\xa9\x95\x9f\x46\x3b\xcf\x5f\xc2\x2d\xe1\xf8\x21\xb8\x17\xb5\xcd\x9f\xde\x17\xb3\xa5\x73\xb4\xbd\x76\x82\x73\x4c\x09\x65\x13\x36\x5e\x7b\xdb\xd3\x3c\x08\x55\xc2\xcf\x37\xc4\x57\x17\x60\x42\x82\xa6\x97\xe7\x6f\x29\xdc\x9e\x44\x8a\xba\x09\xcb\x6d\xa2\xd5\x9f\x2c\x7b\xfd\xb5\x3d\xf0\x21\x81\x26\x09\x8e\xc0\xf7\xbe\xe2\xac\x34\x85\xc3\x20\x60\x68\x7f\x9c\x9b\x75\x7c\xbb\x58\x43\x3b\x42\x58\x46\xf5\x69\x1e\x0d\x20\x88\x41\x74\x9c\x3f\x04\x3d\x34\xfb\x66\x50\xeb\x7d\xb2\x76\xc3\xbb\x3f\x42\x6e\x11\xe9\xc8\xb3\x42\x5d\x2f\x77\xe0\xe9\x20\x5e\xa0\x84\x4b\xc4\xa6\xbd\x76\xd6\xfb\x9d\x9b\xf0\x93\x65\x9f\xdd\x87\xcb\xad\xfd\x68\x7f\x46\x97\x41\x05\x61\xc3\x51\xdb\x96\x76\xbc\x22\x94\xf7\x2d\x5f\x07\xc1\xf8\x52\xdd\x2e\x0c\x82\x5e\x95\xbd\xfc\x7c\x43\xc4\x4f\x83\x71\xbc\xa3\x9d\x3f\xec\xa7\x2b\x2d\x06\xc1\x6d\xb3\x7b\x44\x69\xe7\xfb\x1a\xc4\x78\x4b\xe0\xed\xdc\xbb\xc0\xd8\xc2\x72\x10\x96\x35\x1d\x66\x49\xef\xab\xf7\xde\x70\x27\x81\x60\x90\x45\x27\x5d\x10\x76\x64\xe4\xf3\x37\xcb\xe8\x3a\x5a\xe7\x5f\xc2\x86\x21\x28\x9b\xb0\x57\xf9\x16\x96\x83\xf0\x13\x2c\xfb\x37\x85\x98\x87\xc3\x3d\x30\x08\x3b\x68\x72\xf9\x29\xe5\xdb\xe1\xfa\xe5\x14\x41\x70\xc7\x1f\xce\xa0\x20\xb8\x86\xb7\x38\x1d\x04\x77\xb4\xd1\x7e\xda\xb2\x61\x5b\xb7\xe4\x1b\x84\x6f\x07\xc6\xf4\xa3\x59\x3e\xd0\x9b\x42\x7c\x0b\x89\x88\xb1\x1e\xca\x72\x41\xd8\xf5\x52\x34\x09\xc2\x0e\x1f\x3b\x7e\x3e\xf1\x9d\xbb\x3b\xda\x2f\xc1\x42\xc6\x2f\xc1\x18\x35\x43\xe1\x25\x08\x1b\x14\x61\xfe\x7c\xf4\x13\xc0\x6c\xcc\xdf\x8f\x12\x18\xa1\xf5\x9f\x04\x6b\x07\x65\x55\x76\x09\xc2\xda\xc1\x9b\x4c\x51\xde\xcf\x69\x3b\xf7\x30\x95\x17\x48\xf5\x20\xd8\xc5\xf5\x7d\x84\xdd\x9b\xaa\x55\x5a\x30\x07\x1d\x60\xf6\xa8\xfc\xc8\x2e\x79\x28\x88\x04\x61\x3b\xb1\xd5\x1f\x82\x37\x2b\x63\xee\x2e\xae\xef\xaa\xa6\x90\x3b\xb7\xf6\x3e\xca\xcb\x5b\xe6\x6e\xed\xfd\xb6\x81\x98\x8b\xb4\xf5\xf7\x45\x8a\xc8\x7d\xd7\xb4\xbf\xef\xab\xfd\x53\x6a\x9b\x20\x4b\x9a\xdc\xec\x48\xd0\x52\x28\xcb\xae\x83\x50\x34\x39\x90\x8b\x05\x61\x6c\xab\xd7\x9f\x8f\x7a\x6f\x38\x8f\xf2\xfb\x8d\x5d\xca\x5e\x3e\x21\x34\xf8\x8d\xfa\x53\x31\x61\x75\xe7\xd1\x7f\x09\x6f\xff\x1f\x09\xb1\xe1\x5b\x8a\x42\x54\x10\xc4\x16\xdd\xd2\x5e\x10\xc6\xb6\xed\x29\x3f\x84\xb5\x4d\x4f\xf2\x26\xbc\x73\x1b\x61\xfc\x7c\xe3\xbb\x95\x8f\xe5\x84\x6d\xbc\x6b\xec\xbb\x77\x7b\x7d\xbe\xdb\x42\xf2\xdc\x6b\x72\xc6\xc9\xd1\xcb\x87\xbc\x09\x3f\x56\x01\x4a\x44\x41\xe0\xd6\xeb\xc8\x72\xb1\x20\xdc\x3b\x85\x1f\xbd\x5e\x0c\x22\xe2\xc8\x6f\x96\x77\xeb\x33\x8c\xd0\x24\xc1\x0d\x7f\xec\xb1\x0d\x82\xbc\xf2\x8f\x70\x78\x3b\xb5\x37\x37\xf3\x9f\xec\x6a\x78\xf7\x24\x8e\xc3\xac\x21\xd0\xcb\x2f\x81\x30\xe8\xc7\xe9\xf9\x17\x82\x6a\xd2\xbd\x1e\x83\xa0\xe4\x9b\x7e\x6b\x3d\x54\x98\xec\x25\x1c\x84\x69\xc4\xca\xdf\x6f\x0c\x0f\x7d\x7b\x56\x07\xc1\x70\x55\xe9\x37\xc5\x74\xeb\xd9\x1c\x2d\x4e\x99\x96\xd2\x7f\xab\x7e\x71\xf5\x73\xfe\xd3\x37\xe8\xf5\xca\xd9\x7f\xbf\x41\xac\xee\xe3\x9c\xff\x10\x96\x32\xc7\x6f\xc5\xbc\x72\x4e\xc7\x6f\x0a\xc4\xd8\xdc\xea\x6f\x0a\xef\x70\xf7\xa5\x41\xfb\x5e\xcc\x93\xd3\xf1\xc3\x5b\x3e\x25\xce\x74\xa4\xf6\x9b\x82\x19\x59\xb6\xd0\xde\xeb\x8b\x25\xdc\x29\xb4\xd4\x3b\x7a\xc8\x93\x2a\xda\x65\xf9\x7d\xbe\xda\x92\xe5\xcd\x37\xfb\x7c\xbf\xcf\x6f\xb8\xfe\x7a\x14\xbb\xef\x90\xc6\x2f\x61\xc5\x01\xd6\x61\x89\xf7\xd3\xab\x0a\xf5\x47\x10\x06\x09\xfa\xef\xfb\xa5\xa2\xf8\x37\xc7\x96\x7b\xc7\x3f\x84\xa1\x46\xfc\x37\x4b\x7a\xfe\x07\xbd\x7b\x10\x50\x2f\xe6\x7e\xfe\x43\x90\x3d\xc9\x05\x82\x50\xbc\x8e\x95\x1b\x05\xa1\x7a\x41\x52\x7e\xeb\xc5\xe1\x22\xef\xf3\x3d\x04\xc7\x2d\xfd\xa6\x40\x56\xcc\x23\xff\x7e\x83\xcb\xb8\xfe\x4f\xcd\x89\xdf\xd4\xf3\xef\xbb\x2e\xdf\x5b\xfc\x84\x60\x5b\xd3\x6f\x19\xd7\xae\xd6\x6f\x16\xcc\x32\x72\x57\x3c\x0a\xc2\x6d\x3d\xdb\x6f\xe3\x6f\x17\x63\xfa\x6d\x2b\xd6\x52\x5b\xe3\xcd\xfb\xfd\x3f\x28\xe8\x20\x60\x3c\x33\x7f\xfb\xe2\xdb\x17\x2c\xbf\x0d\xdb\xd6\x4f\xed\x9f\x14\xd4\xb3\xf5\xdf\x32\xb0\x6f\x6a\xff\x24\x58\x3b\x6e\xc2\x4f\xa1\x2a\x43\xf2\x56\x02\x42\xf0\x22\xec\x38\x7f\x09\x0c\xc9\xfc\xed\xbd\x77\x0f\xfc\x6f\xc5\xdf\xa4\xee\x63\xfe\xbe\xcb\x54\x7e\x87\x59\x6d\x76\xce\xb5\xff\x12\x14\xaf\x7e\x47\x00\xb3\xc6\x98\xc1\x3f\x6d\xc7\xd0\x2f\x5a\xf2\x4b\x40\x5b\x59\x8e\x7f\x2a\xfa\x7a\x75\xd9\x7e\xab\xa1\xe3\xc5\xd1\x7e\x8b\xdd\x31\x89\x82\xb0\x06\x56\xc8\xb5\x04\x23\x5a\x83\x5d\xb0\x96\x90\x4d\x16\x31\x26\xce\x0c\x18\xc8\x9a\x1c\x9a\x32\xa6\x83\x8b\x28\x0f\x67\x81\xd3\x2f\x62\x33\xa4\x83\x83\xf0\x9a\xc9\xa0\x00\x47\x8d\x17\x36\xff\x8c\xd6\x6b\x19\x54\x20\xe3\xed\xb2\x26\x07\xbd\xcc\x71\x72\x4d\x42\x8c\x16\x0c\x24\x17\x51\x05\x3a\x22\xd8\x9a\xcc\xae\x02\xd3\x5c\x93\x0b\xc0\x82\xa5\xdd\xc2\xff\xbe\x13\x43\x7d\xe1\x41\x7f\x0a\x10\xb8\x70\x69\x3f\x05\x95\x5a\x13\x4b\x68\xa6\xde\xd2\x5f\x3c\xe3\x0e\xb6\xf0\xe2\x1e\x58\x98\x2d\xbc\xb8\x07\x97\x36\x0b\x2f\xee\x0e\xd0\xd1\xba\x7e\x6e\xed\x48\x74\xa6\x48\x34\x4c\x94\xe3\x7f\x2a\x75\xc5\x89\x62\x94\x90\xca\xd7\x25\x63\xc0\x47\x6d\xe1\xdd\x3d\x2a\xfd\x78\x05\xe3\xe2\x24\xf4\xff\xbc\x73\xac\xeb\xbc\x23\x61\x6c\x97\xeb\x3a\x1f\xfe\xf7\x63\x6f\xfc\xbf\x6b\xf2\xf1\xbf\x25\x12\x47\xcf\x66\x60\xc3\x71\x12\x56\x7a\x5d\x42\xc0\x9c\xfe\x4f\xfc\xed\x94\xf8\x9f\x38\x7f\xd9\x0c\x82\xb0\x36\x5f\x84\x4a\x35\x03\xf0\x0c\x99\x4e\x10\xc2\x34\x56\xf3\xc2\x79\x7c\x34\xc6\xef\x4a\xc0\x12\x59\xbb\xa4\xd7\xab\x05\xbc\x98\x19\xc5\x18\xe1\x54\x7e\x66\xae\xfc\x97\x5e\xe5\x39\x5b\x1a\x12\x5d\xc6\x90\x74\x5d\xb2\x3a\xce\xfc\xeb\xe2\x16\x25\xa3\x88\x58\xf8\x9b\x9f\x19\x5b\x8e\x85\xbf\x79\x67\xbf\x58\xb8\x9b\xc7\xc7\xa8\x22\xda\x69\xc3\x42\xac\x8b\x43\x66\xc6\x02\x60\x5d\x68\xa5\x73\xb6\x96\x38\x51\x64\xac\x1b\xd7\xa5\xeb\x23\x11\x72\xd7\xe5\xc5\x1e\xfe\x47\x0b\x87\xf5\x78\xb1\xcc\x65\x1e\x3e\x5d\x76\x07\xd3\x9c\x62\x73\x9c\x10\xc5\xe6\x64\x0a\x2d\x36\xa7\x9a\xcc\xe6\x74\xda\xb6\x17\x7b\xa2\x50\x6c\xb3\x01\xd7\x5c\x97\x8b\x1e\xfd\xcc\xba\x8a\xcd\x29\xa6\xd2\x66\x66\x52\x1b\x6c\x56\xfa\x4e\x65\x6b\x3a\x3d\x58\x9c\xf3\x4e\xb6\x62\x6b\x8a\x45\xda\x9a\xec\x8b\xad\x99\xd4\xb9\x3a\x38\x95\x0f\x28\xec\x64\x3b\xd7\x7d\x04\x05\xd3\xba\xaa\xad\x71\xd0\xab\xad\x29\x74\x47\xdd\x83\xe3\x8b\x0b\xbd\x52\x83\x6a\x73\x9c\xa2\xea\x38\xf6\x50\x55\x47\xa7\xfb\xe2\xe8\x54\x3f\xe0\xd6\xb4\xf3\x18\x03\xd8\x56\xd7\x3d\x06\xf4\x87\xe0\xe8\x5c\x58\xaf\xab\x59\x6b\x57\x6b\xdb\xb5\xf6\x17\x6b\x0d\xe3\xba\xbc\xb1\xe6\x62\x78\xe1\x66\x1f\x5f\x63\xa8\x70\xfd\xac\x98\xfe\xae\xab\x59\xeb\x64\x32\x07\xa1\x9b\xcc\x5a\x3b\x59\xb0\x9c\xe1\x7e\x65\xe1\x8f\x7f\xea\x7f\xb8\x2e\x19\x75\x72\x46\xb0\xd3\x66\x76\xa8\x85\x97\xf3\xb4\x6f\x38\x4f\xab\xaa\x5c\x98\x9c\x7a\xcf\xb0\x3e\xdc\x88\x38\x55\x2f\xae\x16\x3b\x27\xa6\xb5\x8e\xf3\x5f\x7f\x61\xc1\xb7\x30\x3f\x1b\xd8\x16\x2f\xac\xcf\x38\xa5\xaf\xb5\x23\xad\xf2\xaf\x11\x16\xf9\xd7\xe0\x72\xfc\xdb\xc9\x67\x62\x02\x55\x0d\xfe\x05\xf9\xcd\x7c\xcf\xbf\xfe\x72\xbd\xaf\x03\x8c\xf5\xcc\xbf\x5f\x50\xfd\xc4\xfa\xd7\x5f\x80\x99\x2d\xae\x6d\xd0\x42\x2c\xd4\x68\x04\xeb\x5a\x5c\x4b\x3a\x99\x31\x2c\xe3\x50\xb9\x30\x2b\x0b\x11\xe6\x7f\x62\x7b\xf5\x7f\xe5\x7a\x98\x7f\x11\x20\x69\x61\xfd\x25\xb7\xc1\xf6\x8b\xfd\x7a\x61\xf9\x05\x2a\xe5\xe2\x92\x08\x55\xcb\x5a\xb1\x1e\x51\xc8\xad\x55\xe3\x0b\x0c\x30\x72\x36\xf7\x94\x0b\x83\x29\x10\x51\x16\xe6\x52\x6c\xf6\x6b\xe1\x6c\xc8\x4c\x5f\x5f\x8e\x2f\x50\x44\x1c\x9f\x07\xca\xef\xb5\xb0\x45\x3c\x4d\x41\x94\xfa\xff\xfb\x0b\x97\xff\xb8\xfe\xcb\xff\xf6\xfd\xdb\xdf\xc7\x11\x4d\xfd\xfb\x10\xee\x3f\xde\xa3\xec\xbf\x8f\xa3\x13\xe5\x3a\x08\xd7\x09\x81\xa0\x37\x07\x49\x42\x0e\x8a\x07\x36\x3b\x1d\xca\x23\xc5\x10\x23\x41\x79\xfc\x2c\x41\x65\xa2\x5b\x0e\xd0\xcd\xff\x3e\x0e\x6d\x4c\x8e\xa0\xbc\x53\x8a\xfa\xa0\xa0\x7c\xe6\x32\xce\x40\x86\x62\xae\x65\xbc\xba\xa0\x2c\x73\xe1\x7e\x18\x13\xe9\x38\xe3\x54\x1d\x8f\x69\xa0\xb6\x28\x1f\x84\xc6\x78\x50\x47\x14\x01\x47\xf2\xeb\x60\xce\x9d\x9a\xcd\x1d\x40\xcb\xc5\x83\xbc\x44\x63\x3d\xf2\x41\x8b\x81\x62\xc3\xa0\xec\x00\x7c\x2d\x1e\x2c\xae\xa8\x3b\x60\x68\xf1\x30\x5f\x2c\xb7\x03\xbc\xb3\x78\x7c\xd2\x12\xb4\x05\x4d\xe7\x79\x94\x1c\x07\x70\x5f\xf1\xb8\x4d\x47\x09\x21\xaf\xc6\x63\xc7\x8e\x95\x66\x19\x04\x1f\x3f\xb0\xb4\x38\xf2\xb4\x6e\x68\xec\xb1\x6b\x3f\x40\x58\x8a\x47\x54\xe5\x30\xd5\xf5\x48\xe2\x30\x83\x99\xeb\x91\x6f\x73\xa2\x5d\xc1\x7a\xf3\x00\xda\x28\x1e\xe4\xac\xd4\xed\x31\x27\x78\x44\x07\x46\xaa\x07\xa0\x3a\xf1\x78\xa4\x75\x68\x9f\x34\x4b\x08\x16\x71\x80\x91\x13\x8f\xca\xe7\x26\x24\x3a\x0e\xd8\x99\x13\xb9\xee\x00\x76\xe6\xef\xa3\xc0\xd3\x09\x6f\x7f\x80\xed\x12\x0f\x0b\x88\x9d\xf6\x00\x98\x25\x1e\x16\x10\x6c\xfc\xfc\x62\x39\xc5\x63\x19\xa1\x71\xfe\xdb\xdf\xc9\xf9\x9b\x0e\x8c\x3f\x83\x3d\xa7\x23\xf6\xe8\x78\x80\x2a\x31\xa0\x4c\x29\x17\x26\x63\x41\x89\x8d\x2b\x1e\x40\xf8\x71\x0e\x4b\x47\x2f\xd0\xfa\x0c\xa6\x27\x69\xf8\xf1\x01\x29\xb6\xe6\x04\xc0\x77\x3c\x0a\xa9\x2a\xa4\x26\xe9\xfa\xd7\x5f\x13\x98\xad\x04\x5c\x77\x3c\x3e\x52\x9d\x41\x6a\x7c\x0b\xc0\x6d\x6d\x2b\x12\x80\xdb\xf1\x08\xe1\x09\x7f\x94\x74\x76\x53\x75\xa2\xea\x04\x93\x4b\x60\x63\xc7\x83\x54\x31\x6b\x13\x50\xd4\xf1\xd0\xcb\x0a\x8a\x75\xc0\x42\x30\x71\x5a\x4d\x40\x4e\xc7\x63\x4a\xe3\x63\x0f\x8d\x04\x2a\x79\xe0\xa3\x9f\x52\x48\x50\xf1\x70\x4f\x09\xd1\x26\xa5\xd4\xa5\x61\xc3\x2c\xe5\x96\xe2\x01\x26\x28\x8d\x4f\x25\xd5\x01\x79\xd3\x9a\x34\x02\xff\x9f\x50\x2e\x29\x00\xac\xe7\xa0\x74\xc6\x27\x71\x84\x4b\x9c\xe9\x12\x00\xa7\xf1\xc0\xa0\xb4\x1e\x7c\x6b\x98\x8e\x70\x02\x21\x14\xa4\x34\x2c\x11\x25\x74\xc5\xe4\x27\xa5\x61\x4e\x1c\x92\x0a\xdf\x1f\x96\xc8\x8d\x66\x2d\xb1\x34\x53\x7a\xa5\x71\x1e\xab\x9d\xae\xce\x07\xed\x66\x6d\x47\xba\xe8\x58\xf0\x01\xe3\x71\x05\x03\x8e\xef\xe7\xf9\x42\xc1\x0d\x20\x11\x2b\x3a\xb9\xe2\x12\x68\x66\xa7\x78\x80\x09\x04\xb3\x78\xc4\xc0\x9d\x7e\xec\xba\x25\xbd\x90\xc8\x79\x33\x70\xac\xc5\xb3\x61\x24\x97\x72\x70\xcd\xbf\x93\x78\x60\x0d\x05\x6d\x2a\x4e\x96\x42\x08\x47\xd0\x68\x52\x71\x7a\x96\xc1\xa6\xc8\x94\x2a\x30\x88\x54\xa6\xb6\x92\xf1\xb1\x02\x7f\x48\x65\x6a\x28\x1f\x5c\x35\x95\xf9\x40\xbb\x63\xcc\xb9\x7d\x4c\xe5\xa6\xd7\x0a\xba\xc4\x03\x71\x23\x95\xd7\x32\x61\x85\xa2\xc7\xa4\xf2\xd1\x84\xc2\xb1\xeb\xe0\xe2\x25\x95\x55\xa5\xc1\xec\x71\xd5\x4a\xf5\x20\x6f\x25\x44\x5c\x89\xbd\x2f\xd5\x46\xc7\xd5\x16\x52\x3f\xca\xa2\x54\x3b\x95\xab\xd1\xaa\x41\x24\xa1\x54\x87\x24\xc0\x67\x71\xb2\x48\xc0\xeb\xc4\xa3\x92\x31\x8a\xac\x56\x4d\xac\x96\x46\x8c\xb2\x04\x2a\x4a\x3c\xf8\x18\x5d\xd4\xac\x45\x3b\x20\x51\xd9\x06\x03\x4a\x0d\x75\x6f\xc3\xf4\x33\x01\x88\x12\x8f\x97\x65\x17\x65\xb6\x46\x4f\x36\x04\xa6\x84\x23\x52\x6a\xce\x53\x60\x28\x62\xac\xa2\xd0\xee\x3c\xed\x9d\x46\x8d\x60\x37\x84\xe8\x8b\x07\x3b\x1d\x8a\xa3\x34\x17\xd3\x8d\x38\x61\x41\x8b\xc6\xdf\x4e\xb7\x1b\xa1\x26\x48\xee\xcc\xee\xc3\xff\x57\x5b\x73\x22\xf4\x47\x3c\xaa\x58\x0d\x51\xf7\xdb\x45\x41\x8c\x8d\x58\xd3\x51\x51\x2e\xdf\xe2\xf1\xaa\x13\x89\x74\x1f\xbb\x76\xfa\x3c\x7a\x12\xf9\x20\x7d\x4e\xb4\xef\xf1\x56\x31\xe4\x9f\x84\x9d\x7e\x3c\xea\xbf\xfe\x2a\x04\x45\x49\xd8\xd1\xc7\x23\xfd\xeb\xaf\x52\xe3\x3c\x93\xd6\xbd\x20\x19\xfc\x28\x78\x76\x5a\xaf\xa9\xde\xf4\x63\x8e\x9e\xb8\x9c\x8d\x47\xfd\x31\x4c\xce\x07\x23\x92\x8f\xd8\x41\x38\xa3\xe5\x83\x6e\xc8\x47\x74\x03\x66\x5a\xf9\x88\x5d\xf5\xef\x7c\x80\xc2\x3d\xc8\x45\xa5\xf2\x01\xfe\x76\xf0\xf4\x7c\x30\x8c\xf9\x70\x18\xa9\x7a\x3e\xce\x9d\x6f\xca\x47\x66\xd0\x82\xe9\xc7\x83\x2e\xc3\xb0\x37\x1f\x71\xe2\xf9\x3b\x1f\x93\xc3\x2f\xdf\x9f\x7e\x1f\xec\x26\x90\x47\xf2\x11\x4c\x32\x1e\x04\x68\xe1\x44\x95\x8f\x79\x4b\x0b\xc1\xac\x50\x79\x98\x41\x3e\x82\x19\x60\x74\x96\x95\x8e\x32\xf2\x09\x46\x33\xf9\x58\x5d\xca\x05\x87\x25\xd1\x32\xdb\x22\xdb\xf9\x6f\x7f\x67\x19\x78\x3e\x31\x30\x6d\xc4\x84\xce\x20\xad\xc7\x63\x3a\x55\x1b\xb4\x4b\x9a\xe9\x62\x15\xe5\xc4\x8e\x97\x81\x17\x3f\x0f\xcc\xe2\x73\x4a\x97\xb4\x38\x56\x73\xfc\xc8\x29\x53\xb3\x84\x37\x7f\x3b\x21\xb1\xcf\x66\xf0\xae\x07\x7e\x1e\x39\xc5\x9e\x1b\x0f\x18\x01\xc6\xd3\x19\xb4\xe8\x78\x50\x00\x51\xdf\xb3\x4c\x35\x27\xec\xeb\x0e\x07\x17\x74\xe5\x78\x20\x51\x94\x41\x45\xae\x22\x6d\x50\x6a\xb4\x2b\xdd\x56\xe4\xde\x45\x50\x93\xd7\xac\xf0\x90\x03\xb7\xb4\xac\xd8\x95\x15\xbb\x4e\x44\xaa\x9c\x11\x33\x72\xc6\x62\xfa\x24\xba\x66\x06\x6f\x36\x1e\x04\x59\x27\x5a\x62\x56\xcc\xca\x00\xc8\x06\x8d\xbc\x69\x48\x9b\xd0\x82\xef\x65\xd0\x5c\xff\xce\x99\x03\xfe\xc9\x2d\x4b\x06\xb0\x35\x1e\x04\xc7\x20\x16\x59\xce\xd9\x74\xc5\x74\x8c\x45\x2e\x59\x5a\x93\x46\x5d\xca\x2d\xed\x81\x46\xf7\xe5\x62\x5d\xaa\x79\x0b\x79\x6b\x95\x66\xde\xe0\x56\x19\x59\x2f\x1e\x30\xf4\x90\x5a\xb3\x12\x5f\xce\x83\x4d\x64\x52\xe3\x61\x4d\x06\x91\x1b\x6c\x18\xfc\x3c\xb3\x25\xf5\x76\x90\xd1\x6e\xcf\x57\xf0\x4c\x22\x6f\xe4\xfc\x32\x0f\xc1\x89\x3c\x4f\x82\x83\xe7\x8a\x70\x9f\xab\xd1\x86\x88\x15\x91\x41\x0c\x88\x87\xb6\xa6\x21\x3f\x16\x2c\x8a\xe2\x51\x55\x24\xb5\xa0\xa5\x0c\x4d\x38\x28\x34\xf7\xe5\x8b\xf9\xf6\x77\xe1\x0c\x78\x16\x42\x38\x15\xee\xe4\xe3\x71\x4a\x4b\x41\xeb\x7e\x0f\xf0\xd4\x13\x4f\xcb\x82\x63\xdd\xdf\x85\x1b\x30\x4d\xf0\xcb\xc7\x86\x59\xf4\x87\x43\x45\x53\x70\x71\x89\xc7\x43\x4e\x6a\xc2\xf5\x42\x3c\x0c\x5a\x12\xe2\x62\xc1\xe7\x22\x1e\x1c\xc0\x39\x4c\x97\x75\x9b\x17\x7c\xed\x93\x8d\xaf\xc0\xc2\xe2\x71\x4a\xab\x41\xfb\xa8\x1d\xa7\xa7\xc2\x6e\x5e\xe5\x5b\xf5\x38\x6c\x44\x1c\x02\xaa\x72\x65\x85\xc5\xa4\x13\x7e\x53\x8f\x7a\x42\x03\xfe\xe1\xc4\x84\xa2\x1e\xc1\x9b\xe3\x51\xa0\x15\xbe\x37\xcd\x3b\xb5\xfc\x0f\xf1\xa0\x1e\xb1\xf8\xff\xae\x70\x90\x48\x07\xed\x92\x86\x7b\xdf\x09\xae\x42\x3d\xee\x4b\xda\x76\x12\xa0\x8c\x10\xd9\xe3\x71\x45\x95\x25\xbd\x0f\xa4\xd7\xd6\x06\x6b\xad\x27\x4b\xaa\x9e\xb1\xa4\x64\xf8\xf5\x3c\x1e\x49\xdc\x9a\x61\x00\x56\xcf\x53\xda\x69\xd6\x10\xd3\xeb\x89\x04\x58\x4f\x54\xa4\x27\x51\xf7\xeb\x99\x4c\x97\x4c\x17\x32\x48\x3d\x33\x35\x3e\x63\xd4\x0b\xfb\x51\x45\xc4\x8d\x47\x54\x8e\x6d\xb8\x9e\xb1\x99\xc7\xa3\x05\x29\x51\xc0\x65\xaa\x18\xf3\x82\x57\x63\x3d\x6f\xab\x1b\xe7\xcb\x42\x3c\xcf\x7a\xbe\x74\xe6\xf9\x3a\xeb\x62\xe6\xd4\x64\xab\x12\x8c\xa2\x60\xb6\x53\xe5\x76\x35\x19\xcf\x80\xd3\x64\x4d\xcc\x9d\x9a\x62\xee\x14\xc4\x8d\x9a\x62\xce\xc4\x43\x97\xa2\x19\x1d\x97\xac\x1b\x10\xf4\xe9\x84\x79\xd6\xc4\x01\xaa\x02\x06\x5f\x92\xa5\x22\x32\x55\x31\xdd\xcf\x74\xd4\x3f\x6e\xe0\x35\x39\x72\xc9\x91\xc3\x1b\xb2\x82\x1a\x1e\x8f\x19\x5f\x8e\x33\x6e\xcd\x07\xc9\x32\x6a\xfa\x82\x86\xa7\x66\xbb\x1f\xe6\x95\x4e\x7b\x0c\x88\xea\x78\x3c\xd2\xa2\x56\x70\x8f\x78\x58\xab\x38\x0b\xd4\x8c\x8c\x5f\xb3\x11\xb1\x31\x83\xab\xf9\x65\x02\x0a\x21\x7b\x22\x55\xd5\xe2\x70\x96\x18\xce\x42\x54\x97\x0a\x58\x68\x3c\xcc\x4a\x8d\x41\xac\x8c\xc7\x47\x56\xfa\xb1\x70\x6c\xae\xe5\x8b\xf1\xe4\xac\x54\x15\x01\x6b\xd5\xfb\xc0\x56\x54\x27\x5b\xe5\x42\xec\x04\x6d\xa7\x56\x4e\x4b\xb5\x12\x40\x05\x05\x7b\xad\xf5\x92\x24\x8a\xd5\x88\x12\x2a\xec\xab\x82\xb6\x17\xb4\x68\x6c\x63\x37\xa8\x8d\xeb\x8b\x82\x13\x7c\x6d\x27\x03\xdf\x8c\x87\x47\xfc\xcc\xda\xe0\xd4\x15\x80\xb7\x10\x0c\xc8\xdb\x4c\x07\x60\xda\x09\x5b\xaa\xad\x4b\xe3\xae\xbb\xe0\x65\x5e\x9b\x23\xdf\xb0\x4e\x2f\x25\x4e\xd8\xb5\xd9\xda\x46\x94\xc3\x13\x49\xb0\x02\x45\x14\x0f\xbd\x0d\x82\xb9\xd4\xee\xc4\x04\x5c\x28\xd2\xc5\xf7\x00\xe6\x89\x07\xf7\xd8\x18\xf2\x55\x00\x76\xe2\x01\x3b\xc4\x86\xae\x02\x8f\x13\x0f\xfc\x58\x50\xea\xd7\x9e\xbb\xb4\xf1\xaf\xbf\x0a\x5e\x86\xb5\xe7\x57\x12\xcb\x17\xeb\xd5\xda\x0b\xd5\xeb\x5a\xb6\xe3\x42\x5d\x81\x59\x89\x87\x9e\x1e\xb1\xa9\xd5\x3e\xcd\xab\x47\x33\x6e\x5c\xb5\x3b\x2f\xc0\xb3\x28\x25\xd8\x6b\x05\xea\x21\x1e\x5c\x6e\x61\x6b\x56\x87\xd3\x6c\x38\xcd\xb8\xf5\xa9\x03\x91\xa0\x8e\xa1\xab\x48\x88\x43\x75\x0c\xb8\xc1\xf0\xb6\x1c\x97\xc7\x3a\x10\x13\xea\xb8\xec\x15\xe6\x0f\xd1\xc8\xe3\xa1\xbf\x07\x1c\x67\xac\x5b\xda\x8b\xdc\x19\xad\x25\xda\x77\x3c\x1c\xb4\x90\x3a\xea\x74\xd6\x4e\x66\x2d\x76\x5d\x15\xd9\x3b\x1e\xcd\x64\x31\xde\xb3\x4b\xd3\x75\x81\xfb\x8f\x4a\x6c\xe1\x78\x04\x63\xc2\xbe\xab\xce\x8f\x8a\xcc\xcf\x6e\x87\xf9\x5f\x7e\x0e\xbd\x7d\xc1\xe9\xa1\xa2\x0e\x8f\x47\xd5\xd7\x3f\xfa\xe4\x92\x7f\x5f\x97\x0e\x16\x47\xb4\x9f\x50\x92\xf1\x08\xa6\x56\x99\xa0\xb7\x93\x9b\x70\x7f\x85\xa0\xf0\xf5\xee\xcc\xe3\x5b\xa3\x53\xbc\xf3\x2a\x91\xea\xe2\xc1\x6e\x50\x32\xe9\x2e\x78\x85\x91\xe3\x4e\x3c\x6b\xea\x2d\x8f\x24\x98\x5b\xd0\xa2\xad\xb7\xed\xba\x5f\x23\x11\x84\xc4\x51\xf1\xb2\x8a\x47\xcc\x1d\xb4\x9a\xf5\xc9\x7c\x8e\x60\x4d\x05\xad\x64\x25\x5a\x50\x3c\xb6\xe7\x09\xc9\xd8\xac\xeb\xe3\x66\x8d\x68\x5f\x9f\x45\xa9\x04\xe2\x49\x27\x3e\x8f\x95\xa8\x29\x7f\x57\xe2\xa5\xa4\xb3\x84\x9c\x5e\xdf\x4e\x4d\x88\x4a\x92\x4e\x7c\x70\x2a\x71\x31\xe2\x11\x42\x8d\x95\xc3\x9c\x2d\x1e\xc8\x17\x5c\x42\x55\xec\x6d\xe2\x11\x7c\x81\x13\x7a\xfd\x2a\x7d\xf2\x55\xfb\x84\xd9\xf9\x35\x66\xc9\xa7\xd2\xba\x86\x40\x54\x3f\x39\xd4\xd7\xf4\x5b\xa1\xdb\x3f\xc7\xff\x8b\xf1\x2f\xe8\x48\xaa\xe7\x9f\x8a\xd3\x7a\x64\x8d\x46\x7c\x0f\x0d\xc3\x58\xb5\xa0\x3f\xa8\x38\x96\xc7\x43\x25\x24\x53\xe2\x43\x7f\x50\xb1\x46\x29\xe8\x60\x2b\xd6\xab\xf1\x98\x90\xa2\xbe\xcb\x7d\x54\x2b\xcd\x52\xe1\x13\x4b\xa6\xbd\x64\xda\x35\x24\xdd\xba\x64\x81\xb8\xcf\x16\x2c\x37\xea\xb2\xd3\x97\x9d\x5e\x61\x09\x0b\x65\x41\x5d\xb8\xe9\x9d\x95\x85\x88\x51\x7a\x3c\x36\x8d\xcf\xb9\x86\xb5\x8d\x55\xd4\xaf\x58\x29\xc4\x03\x2c\xdc\x01\xe9\xa3\xf9\x5a\x53\x75\xae\xd5\xda\x41\x4d\xda\x51\xbb\x81\x06\x7b\xd0\xa6\x34\x42\x25\x60\xfc\xd5\x14\x37\x1a\xe2\x46\x3a\x6b\xcb\xd0\x3e\x69\x4b\x5a\x0d\xda\x32\xeb\x22\x6b\x8b\x12\xce\xe0\xfd\xf1\xf8\x82\x14\x6b\xae\x9d\xac\xea\x76\x62\xd3\x58\x2c\xf4\xac\x03\x5a\x2c\x96\x42\x0c\xfe\x76\x72\x0c\x69\xe7\xb0\xa9\x71\x46\x6a\x27\xb2\x55\x3b\x95\xad\xf0\x3f\x6a\xe7\xf4\x73\xca\x56\xcc\xeb\x76\x3e\xe6\x55\xcc\x03\x93\xaa\x9d\x56\xf8\xdc\x15\x9e\x7c\xef\x7b\xa0\x7d\x06\x5a\x9c\xf3\x8f\x9b\x7a\x4b\x1c\x57\x5b\x3a\x62\xdc\x09\x0a\xdc\x90\x3a\xe2\x11\x4c\x94\x68\xb1\x2d\x0d\x9a\xcd\x79\x29\x19\xaa\xb4\x25\x2b\x9a\x88\x62\x81\x91\x45\x53\xa8\x68\x89\x08\x8c\x27\x43\xd7\x12\xd3\xb4\x71\x5e\x4a\x27\x30\x7d\x0d\x5d\x71\x3c\x70\x3d\x69\xb1\x15\xb4\x5c\xf8\x1c\xc7\x92\x58\xa6\x51\x13\x40\xf1\xe3\x81\x81\x13\x21\x67\x5a\x66\x3e\xb7\xac\xa3\x0f\xaa\x80\x96\x3f\xbf\xf7\xf9\xbd\x38\x69\x34\x80\xd8\xe3\x31\xcd\x1b\xfd\x53\x50\x21\xb6\x62\x24\x1e\xdc\x01\x5b\xb1\x7e\x65\x2f\xa3\x98\x5b\xad\x3c\x7c\xaf\xa0\xc3\xea\xf8\x47\xb6\x82\xba\xbd\x95\xef\xfc\xd7\x5f\x95\x48\x15\x0d\xdd\x52\x3c\x2e\x41\x0f\x23\x6b\xb5\x3f\xeb\x21\x2d\x78\x7c\xab\x88\x21\xad\x06\x23\xae\xf8\x35\xb4\x9a\x1f\x49\xaf\xc9\xa2\x15\x80\x46\xc7\x23\x47\xb2\x60\xa3\xad\x5a\x68\xb5\x50\xea\x56\x97\x1f\xc3\x51\xf7\xe4\x66\xab\xd5\xf5\x49\xb3\x8f\x83\x63\x34\x25\x89\x86\x24\x91\x4e\xee\x84\x5a\x63\x2b\x68\x2d\x78\x53\xe5\xf4\xd1\xc0\x71\x8d\xc7\x23\x92\x67\x7c\xae\xc1\x46\x1b\x5a\xa4\x4a\x70\x93\x06\xba\x6a\x3c\x5e\x9d\xb8\xc8\xda\x4d\xc6\xc1\xa5\x71\x9a\x6d\xc0\x89\xc6\x03\xeb\x31\x7c\x23\x1b\xd8\x9e\xf1\x80\x67\x70\xeb\xd5\xda\x43\x5b\xdb\xc3\x56\x48\xdc\xee\xd6\x13\xb3\x07\x8c\xbe\x7a\xe6\x48\x06\xce\x5b\x3c\x4a\x90\x82\x51\x35\x70\xb7\xe2\x41\xcf\xe1\x70\xd6\xc0\xec\x89\x07\xe7\x1b\xf0\x30\xdb\x68\x0b\x5a\x67\xcd\xf4\x1a\xb5\x1b\x8e\xff\x98\xba\x5e\xd1\x58\x30\x63\xe2\x71\x4b\x23\x1d\x87\x8f\x36\x3c\x7c\x60\xca\xda\x06\xc7\xaa\x26\xe8\x49\x1f\x09\xda\xb2\xdc\x65\xb9\x4c\x0a\x2c\x2a\xe2\x61\xb9\xac\xf3\xd9\xa9\xcb\x24\x8e\x4c\xe1\xda\xac\xcd\x97\xd6\x4e\xcc\xfb\x4a\x0b\x8e\xdb\x26\x3c\xad\x4d\x79\x1a\x2e\x8c\xed\x72\x35\x7a\x3b\xdf\x31\x45\x6d\x5c\x1a\xc7\xc3\x72\x43\x38\x6d\x17\x9a\xe3\x76\x11\x85\xe6\x04\x26\xaf\x5d\x88\x48\x8d\xad\xfd\x2c\x58\x0c\xb4\xeb\xf2\x7b\x57\xcc\x32\x54\xe6\x8d\xb8\xe3\xf1\x38\xcd\x9a\xa1\x7d\xd2\x96\xb4\x18\x70\xc2\x7d\xc7\xc3\xe5\xe3\xe7\x5e\xa6\x14\x01\xbb\x23\x5d\x74\x1f\xc1\xad\xe3\x61\x95\x63\x2b\x6d\x84\x8b\x8e\x87\xd5\x83\x83\xdc\x07\xdd\x72\x63\xe0\xd1\xb1\x77\x6d\x84\xe8\x8d\xc7\x8c\xea\xc1\xfd\x6e\x0e\xc3\x0d\x31\x23\x8a\xe5\x73\xf6\x28\x91\x7a\x0d\xa6\xd6\xee\x29\xe9\x62\x03\x1f\x89\xac\x36\xf6\x26\x22\xc0\x09\x52\x73\xbb\x1d\x70\xe2\xd4\x1a\xfd\xa9\x11\x25\x36\x1e\xd3\x64\x54\x8e\xdb\xa4\x76\x13\xfb\xfc\x04\x4a\xb8\x11\xdc\x35\x1e\xba\xdd\x4d\xf2\x7e\x36\x4c\x17\x38\x6c\x61\x1b\x31\x39\xe3\x51\x88\x2d\x13\xd3\xf1\x71\x72\x1b\xf1\xd2\x58\x61\xed\x91\x6d\x11\x27\xf0\x2c\x5c\x30\xb4\xd7\x74\x6f\xf2\x73\xb4\xe2\x75\xeb\x78\xf5\x9a\x47\x7d\xd3\xbe\x42\x95\xb5\x41\xed\x18\xc7\xb6\x8f\x13\x62\xd3\xc7\xa8\x13\xcb\xb8\x7d\x5c\xf0\xb4\x0f\x93\x81\x4e\x14\xe2\x46\x50\x9e\x78\x70\x04\x72\x7b\x52\x4c\x68\x88\x09\xb5\x30\x14\x4a\x09\x6d\xdb\xac\xd6\x03\xda\x67\xd6\xcf\xac\x70\x9f\xc5\x5d\x41\x5b\x22\x84\x00\x74\xdf\x96\x53\x65\xd9\x53\x38\x77\x75\xef\x62\xfb\xa1\x55\x01\x3c\xa4\x1f\x1c\x88\xfb\xc1\x66\x5f\x30\x78\xeb\x07\x53\xaa\x7b\xb5\x3a\xeb\x19\xe9\xce\x38\x0d\xc4\x03\x0b\x9e\x58\x68\xfd\x64\x73\xe8\xa7\x11\xf4\x31\xba\xed\x27\x9a\xdd\xce\x7e\x99\x54\x6a\x75\x77\xb8\xce\x0e\x97\x54\x6a\xf5\xc4\x06\xd4\x53\x70\xe1\x8a\x1a\xaa\x27\x4e\xfe\x3d\xc5\xc9\xbf\xb6\x98\xef\x3d\x15\x49\xa2\x63\xd7\x44\x32\x54\x5f\x3d\xa1\xfa\x2a\x5c\xd1\xf5\xd4\xa8\x49\xd2\x15\x85\xa8\x19\x3d\x75\x4b\xc0\x54\x54\x15\x59\x4f\x36\x2c\xb9\x56\x88\x42\xdd\x33\xba\xa9\x9e\xd5\x4d\x61\x24\xdf\xbd\x8d\xed\xde\xc6\x0e\xc2\x52\x76\x6f\x59\xbb\xb7\xac\xb3\xe6\xf1\xc7\xad\xbd\xe7\x42\xb5\x50\xe0\x55\x34\xbe\x3d\x3b\x04\x59\x21\x17\xcf\xbe\x9e\xad\x7d\xde\xb5\x8f\xd3\x6f\x57\x99\xd7\xf3\xb0\x95\xb1\xa1\x76\x14\x74\x7f\xf7\xcc\x01\xa1\x00\x90\xd6\x0b\xc7\xc1\x5e\x38\x0e\x96\x11\xdc\xa4\x17\xb4\x68\x71\x20\x93\x46\x3a\x76\x94\x5e\x88\xe0\x79\x02\xd9\xd0\x8b\x65\x14\x2d\xf9\x47\x9c\xff\x7b\xe1\x38\xd0\x8b\xe0\x07\x98\x6b\xf7\x02\x93\xed\x25\x98\x4a\x05\xab\xb4\xb3\x6d\xc6\x43\xef\xba\x90\xae\x7b\xb5\xc3\xab\x98\xdb\x84\xc1\xea\xb5\x9b\x4e\x4f\x24\xf4\x59\xbd\xc2\x27\x7b\x8d\x62\x2b\xe6\xb7\xbd\x22\xc9\xf4\x8a\xc8\x55\xf0\x07\xe8\xd5\x99\x54\xb9\x5d\x18\xa8\xbd\x3a\xf8\xf6\x7f\x77\x91\xed\xc7\x69\xba\x65\xde\xe0\x75\x15\xb9\xb9\xbb\x1b\x77\x76\xe3\xca\x75\x63\x6f\x27\x6d\xe5\xfa\xe6\x2c\x30\xf1\xde\xce\x5b\x9a\x1e\x81\xcc\x86\x86\x32\xbc\x83\x58\x5f\x7b\x48\x9c\xbd\x71\xdb\xdb\x9b\xd1\x2c\x89\xa6\xd4\x1b\xf7\xbd\x21\x1c\x92\x8c\x12\x50\x08\x74\xd0\xd4\x2b\xce\xcd\xdd\x5b\xa0\x0e\x48\x7a\x75\xa6\xb2\x2f\xc7\xe3\xf5\x63\xd1\x02\x70\xb8\xe3\x41\xb2\x90\x23\x7b\x83\x6d\x76\xa0\xb4\x53\x22\x06\x50\x07\x4b\x3b\x1e\x4c\x54\x10\x1d\x3b\xc0\xd9\xf1\xc0\xb6\x88\x6b\xc2\xde\x6e\x4b\xbd\xfd\x5c\xcc\x5d\x20\x7f\xe3\x41\x30\x49\xd7\x07\xda\x82\x78\x84\x28\x82\xcd\x6e\x57\x3f\xd0\x05\xd0\x65\x83\xed\x20\xd7\xc6\x83\xcb\x39\x50\x55\x3a\x18\xb4\xf1\xe8\x7e\x8d\xac\x1c\xde\x3a\xd0\xb1\x67\xc1\x06\xa1\xab\x33\xe8\x80\xb2\xa6\x84\x6f\x4d\xef\xb6\x5f\x44\xd3\x89\x20\xdd\x15\x28\x3a\x02\x45\x05\x4f\xbc\x83\x54\x19\x8f\xa5\x6f\x66\xf4\x09\xe8\x81\xf1\x80\x7b\xe1\xd7\xde\x07\xf7\x9a\x7d\x18\xe1\x9e\xc8\x23\x1d\x20\xb5\x78\x38\xfd\x27\xe9\x30\xf2\xe8\x43\xc7\x17\xd4\x5f\x1d\x54\xad\x78\x10\x59\x80\xbb\x85\x0e\x2c\x54\x3c\xd8\x10\x80\x48\xee\xf3\x26\xef\xa4\x3f\x41\x1e\xea\x13\xab\x86\x3e\x75\x46\xe1\x96\xa3\x5f\xf2\x0c\xf0\x6b\x2a\xb7\x03\x1d\x1b\xbe\x78\xd0\xed\xa0\x32\xf7\xcb\x69\x82\x95\x56\xe5\x72\xa0\x83\x14\x12\x0f\x0b\x65\x82\x81\xac\x11\x0f\x0a\x65\xc0\xae\xcf\x9c\x1f\x39\x6b\x54\xf7\xb6\xcc\xdb\x32\x1b\x24\x6e\x24\xfa\x9d\xec\xb9\x11\x65\xde\x72\xd6\x1b\xbb\xbd\x84\x14\xd7\x6f\xa4\xa4\x7e\x87\x94\x54\x09\x8f\xdc\x6f\xd4\x8b\xfd\x16\xb8\x04\xbb\x9b\x7e\x23\xec\xf6\x5b\xe0\x0b\xd4\xbb\xfd\xb6\x33\x6f\x61\x2e\x50\xe5\xf6\xc7\x45\xf2\xb8\x48\x30\xd2\xed\xd8\x61\xc7\x83\x40\x50\x1c\xa4\xfa\x63\x07\xef\x78\xc5\x08\x62\x1d\xb3\xe7\x78\xe8\x47\x09\xe3\x78\xd8\xbe\xfa\xc3\xf6\x55\xf0\x34\xe9\x84\xd1\x8d\xc7\xa6\xc5\xf7\x5e\x19\xd1\x2b\x23\x22\xd4\x4a\x7f\x11\x81\xfb\x3b\xec\x4f\xea\x42\x78\x84\x78\x10\x74\x14\xbd\x72\xc7\x7b\x38\x1e\x44\x12\x25\xa0\x7a\x27\x48\x42\x3c\xd8\xfa\x38\x3d\xf4\xaf\xd2\xb6\x2f\xce\x92\x0d\xcf\xb4\xfe\xc9\xc3\x88\x38\x78\x0e\xcc\x36\x3a\x11\x07\xe3\x31\x23\x59\x81\x34\x29\xf5\x9b\x25\x48\x34\x96\xc0\x80\xf1\x78\x20\x15\x48\xaf\x24\xeb\x01\x1f\xe6\x82\x22\x1e\x1f\xc9\x20\x21\x73\x76\xfc\x31\x1a\xae\xd7\x7d\xd9\xc3\x86\xda\x2a\xae\xce\xe5\x4a\x5c\xb1\x32\x9a\x03\x46\xfc\x80\x78\xe8\xec\x3a\xa4\x0d\x69\xd4\x96\x31\xf4\xce\xa3\x7b\xe7\x31\x08\x1a\xdb\x57\xf7\x6b\x06\x60\x04\x69\xa2\xaf\x87\x3e\x22\x14\x53\x03\x57\xb7\xab\x0b\xe8\xea\x02\x2a\x50\x2d\x7d\x2d\x3f\x67\xe4\x38\xce\x89\xc3\x3b\xd6\xc1\x1d\x6b\xc3\x11\x73\x1c\x5c\xb5\x8d\x43\x74\x52\xae\x24\xc7\x81\xb2\x76\x1c\xdc\x35\x55\x3c\x9e\xc7\xd9\xa2\xd4\x71\xb6\x28\x95\x4b\x9a\x71\xb2\xa9\x8d\x53\x6d\x13\x3e\x3d\xe3\x8c\x23\x43\x3c\x90\x55\x31\xfc\x1b\x27\xdb\xc6\x38\x83\x31\x34\xcc\x98\x87\x97\xa3\xe3\x44\x01\x95\xd2\x48\x7f\xdc\xcd\x87\x77\xa7\xe3\x5c\x58\xb2\x05\x9b\x1e\xde\x1c\x0c\x6e\x0e\x1a\xd7\x5a\x23\x21\x79\x8e\x84\x32\x62\xb2\xbd\x0d\x6d\x56\x06\x36\x2b\x0d\x35\xee\xc0\x32\x25\x1e\x23\x48\x71\x26\x1f\x5e\x93\xc6\x92\xa5\x4a\x93\x64\xd3\x9c\x82\xca\x61\x58\x3e\xd2\x65\x09\x86\x92\xc2\xb2\x7f\xa4\xcb\xcf\xb9\x0f\xa0\x01\x1c\x99\xe5\x32\x34\x32\x1b\x48\x94\xc3\xab\x81\x91\x85\xfc\xe2\xf0\x31\xf2\x69\xba\x93\xaa\x04\x37\x1f\x98\x9c\xc5\x63\x99\x8c\xac\xec\x04\x23\x1b\xe8\xdc\x2a\x67\x2e\xbe\x47\xc6\x12\x7f\x94\x90\x48\x46\x66\xdf\x1e\x99\x7d\xbb\xb2\x3b\x8c\xc2\xb5\xd6\x28\xba\x7f\x56\x8a\x2d\xac\xaa\x51\x30\x7e\x1d\x95\x32\xca\x25\x4d\x18\x27\x4e\x15\xa3\x20\xf2\x8f\x22\xd2\x11\xea\xb3\x51\x50\xbd\x0c\xcd\x4d\x06\x51\x74\x46\xc5\xaa\x6c\x54\x30\x80\x93\xed\xa8\x36\xad\xd2\x34\x62\x0d\x8d\x8a\xae\x3c\xf2\x90\x35\x93\x95\x25\x33\x2a\x42\x59\xc2\x90\x77\x54\xf8\xf4\xa8\xfa\xa5\xd7\x10\x3f\x46\xbd\xe9\x82\x2a\x80\x13\xf6\x5b\x83\x0b\x85\x78\xe8\xd3\x1b\x2b\x75\x34\x44\xca\xd1\x0e\xa1\xba\xe3\x24\x38\x1a\x7a\xab\xc1\x95\x43\x4a\x58\xe5\x8f\x86\x92\x6a\x34\x81\x09\x8b\xe9\xd8\xd1\x46\x73\x47\x43\x6b\x32\x3c\xd3\x0f\x64\x87\x86\x41\xd5\xe0\x2c\x1f\x0f\x7d\x8b\x83\xcd\x0f\x85\x81\xa1\x30\x50\x8f\x58\xe6\xa3\xd9\xa3\x2d\x7a\xb4\x15\x49\xb7\xb5\x13\xf8\x8f\xbb\xf2\xd1\xd1\x86\x8c\x6e\x4c\x7d\x74\xf4\x83\x33\x7f\x3c\x74\xd1\x65\xb1\x76\xf4\x65\xa3\x1b\xbb\x19\x43\xc0\x01\xee\x78\x3c\xd8\x47\x09\x0d\x33\x40\xfa\x8e\x07\x41\xdd\xec\x81\xce\xad\xc7\xe8\x78\x9c\x0d\x20\x8d\x07\x97\x02\xf1\xc0\x7a\x83\xce\x1b\x9c\xab\xc6\x28\x76\x0a\xd3\x7b\xb8\x0c\x06\xe1\x8a\x26\x7e\x60\x63\x38\x18\xc3\x50\x71\xb8\x25\x0f\xc0\x5c\xe3\x11\xfc\xb6\xc6\xce\x3f\x00\x65\x8d\x87\x40\xa4\x1d\x9a\x63\x36\x62\xcc\x1a\x17\xde\x43\x45\xc2\x50\x91\x50\x09\x3a\x38\x26\xd7\x43\x63\x72\x3d\x34\xb1\x74\x1e\xc0\x7d\xc6\xc3\x0e\x60\x0a\x4c\x99\xda\xc4\xe9\xa5\x22\x0c\x8f\x89\x01\xc5\x00\xa1\xb3\xe1\x99\x3d\x40\x86\x8c\x07\x35\x41\xd3\x3c\xa6\x8b\x65\xc6\x62\x69\x18\xe0\x0e\xfc\x36\xe2\xf1\x62\xa8\x1b\x15\xb9\x9c\x4f\xc0\xf9\xa5\x84\xce\x77\x00\x5a\x17\x0f\xbf\x76\x46\xd6\x0b\x6b\xa2\x71\x75\x04\xb3\x9a\xa4\x5d\xd2\x58\xf1\x35\x64\x90\x71\x5d\x34\xe2\xba\x82\x95\x62\x2d\x3c\x2e\x8e\x81\x03\x65\x42\x4a\x95\x9a\x80\x72\x14\x0f\x7c\x64\xd8\xd1\x06\x38\x37\xf1\xc8\xff\xfa\xab\x75\xe6\xc9\x2d\x13\xb8\x65\x02\x0d\x2e\x78\x23\xd2\x0e\x00\x6f\x1a\x0e\xd0\x03\x88\x81\x78\x20\x0d\x82\x7f\x3c\xb8\x13\x88\x47\x93\x16\x59\x1f\xb6\xd6\xf1\x08\xe1\x03\xa2\xce\x78\xd0\x7e\x0e\x22\x73\x34\xd4\xe5\x03\xe7\xa9\x78\x50\x11\xb6\x83\x47\x06\xfd\xc0\xa0\xd1\x19\x8d\xd7\x9e\x7b\x0f\x2c\x7f\x62\x37\x1f\xef\x47\x2a\x62\x3c\x37\xc0\x65\x07\x8e\x94\xf1\xe0\xce\x0f\xad\xcf\xd0\x64\x61\x7c\xf6\x39\x0a\xd7\xf1\x71\x90\x1d\x04\x96\x6a\x83\x01\x24\x28\x72\x3c\x3e\x48\x31\xce\x1f\xf6\x4e\xc3\x18\x0f\xc3\x3e\xe2\x16\x22\x1e\xc3\xaf\xc5\x54\xd2\xb0\x61\x68\xd8\x30\x07\x23\xfd\x55\x3f\x27\x82\x03\x3a\xf5\x81\x93\x78\x3c\xb2\x34\x6a\xe7\x44\xc7\xbd\x35\x25\x22\x5a\x0d\x6c\xd3\xff\x1e\x04\x57\x4d\x89\x2b\x9a\x81\xe1\x79\x3c\x4e\x69\x51\x65\x85\x86\xa1\x1b\x67\xc2\xec\x68\x2c\xcb\x5d\xbb\xdc\x38\x1e\x0d\x82\x69\xc6\x23\x16\x13\x60\xd7\x83\xf0\x8f\xf1\xb0\xa3\x58\x87\xeb\x66\x0c\x17\xbe\x6b\x95\xe8\x2d\x83\x68\x82\xf1\xc0\xec\x91\x60\xd0\x07\xd6\x33\xf3\x48\xb0\x76\x54\xb5\x53\xeb\xaa\x79\x08\x4a\x8b\x76\x6c\x1e\x1c\xf9\x27\x16\x10\x4d\x24\xdf\x83\xfb\xe7\xa9\xed\x77\x17\xbe\x08\xd1\x20\x1e\x70\x09\x6c\xdb\x27\xf6\x50\xf1\x60\x57\x88\x33\xf3\x9f\xf6\xf4\x79\xc6\x20\xc5\x43\xb0\x3d\x82\x85\xaa\xe9\x98\xa7\x90\xdf\xe8\xf1\x26\x97\x01\xf1\x28\x02\x22\x44\x71\x27\x4a\x9c\x89\x16\xe4\xac\x62\xdd\x78\x4f\x30\xb9\x27\x68\xc2\x4f\x9d\x8f\x59\x1f\xdd\xd2\x09\x17\xae\x15\xc2\xc4\x0a\x21\x3e\xd7\x83\x86\x7a\x73\x9e\x1f\xfe\x47\x04\xd0\x3d\x51\x6f\xcf\x13\xf5\x76\x22\x3c\xd8\xe4\x6a\x21\x1e\x1f\xc9\x52\x90\x90\x59\xe7\x19\xbc\xb4\x09\xb3\x93\x98\xbd\x33\x39\x7b\xf1\x84\x98\x89\x6b\x92\x89\x80\x12\xb4\x01\xad\x49\xb3\xad\x3b\xdd\x23\x8d\xbd\x40\xc4\xfd\x94\xfc\x9e\x40\x32\xa2\x3c\x26\x4e\x1a\x33\x81\xff\x90\x3a\xe1\x54\x13\xfa\xed\x99\xf2\x4e\x17\x8d\xd5\x24\x6c\x26\x81\x20\x3b\x71\x7e\x55\xd8\xcc\xd4\xcd\x4b\xec\x5d\x45\xa2\x89\x48\x14\x5b\x23\x24\xb3\x76\x7d\xfc\x09\x48\xad\x45\xd8\x4c\x97\x4d\x23\xee\x2b\x16\x11\xf1\x10\x9f\x94\x90\xb3\xdc\x77\xfc\x3d\x93\xfa\x03\x1c\x9c\x66\x7a\x4c\xf7\x08\x6b\x6e\xf5\x5e\xcb\x78\xad\x1e\x31\x4b\x33\x5b\xdf\xcc\xc6\x10\x43\x88\x9e\x19\xf1\x6c\x66\xc5\x33\xf6\xa0\xa9\x5d\xfc\xc4\x22\xb7\x8b\xe4\x95\x6f\xb3\xde\xf6\x00\x91\xfc\x35\xa0\x98\x18\x50\x04\x2d\x9a\x91\xd1\x3e\x4f\xac\xaa\xba\xa0\x47\x05\x11\x61\x16\x4d\x69\x04\xd6\xd7\xe0\x7d\x96\x3d\x40\x84\x93\xad\x9c\xa1\x67\x1d\xf6\x0a\x41\x6d\x2b\x8a\xf5\x59\xf1\x19\x14\x86\xa5\x72\xac\x98\xd5\x63\x05\xc7\xf9\x59\xb1\xb2\x9c\x55\xdc\x47\x21\xf6\x1a\x8a\x80\xd9\x36\xe2\x34\xa1\x6c\x9b\x63\xdb\xc0\xf7\x31\xf2\x6a\x73\xb1\xb6\xec\x3c\x06\xaa\x41\xd5\xc8\xdc\xaa\x91\x41\x20\xd7\x86\x76\x60\x36\xb5\x03\xa8\x72\x67\x43\xab\x34\x1b\xb0\x07\xf8\xf6\x4e\xb5\x14\xb3\x81\x08\x66\x24\xe9\x0e\xe3\x9c\x5d\x7c\x23\x21\xd3\xb4\x4f\x98\xd8\x27\x74\xae\x24\x66\x77\x9e\x74\xa1\xe4\xe0\x9b\xb3\x63\x27\x30\xfb\xc4\xcf\x86\x65\xdc\x2d\xb3\x1b\xbe\x68\xd2\xc3\xfd\xce\xd2\xf0\x14\x22\x86\x2e\x61\x63\xe3\x01\xfb\x12\x4c\xb2\x3b\x5e\xdd\xf1\x12\x24\x16\x11\x25\x1e\x96\x4a\xc4\xde\xc1\xcd\xc0\x1c\x59\x2c\x5b\xb1\xf4\x11\x93\xe7\x40\x61\x82\xf4\x12\xac\x1d\x92\x31\x69\x13\x53\x62\x34\x69\xa2\xf1\x89\x25\xe3\x85\xc9\xe4\xc2\xa4\x13\xe4\x6a\x0e\x27\xf6\x30\x96\x98\xf0\x8a\x8a\x2a\x53\x51\x65\x70\xef\x37\xa7\xd3\x64\x3a\x4d\x84\xd7\x43\x1e\x89\x87\x79\x61\x46\xf8\xae\xc6\x43\x7c\x70\x92\xd9\x88\x99\x05\x7c\x10\x07\x3a\x9b\x35\xef\xac\x40\x2f\x3b\x12\x53\x1c\xdb\x53\x44\x6d\xba\x78\x12\xf5\x59\x8c\x8d\x89\x30\x38\xe7\x04\x34\x92\x00\xc2\x53\x3e\x39\x2f\x32\x66\xc1\xa8\x99\x37\x53\x88\x7e\x61\x02\xe7\x67\x99\x1b\xc8\x53\xc4\x6d\x99\xdd\x14\xc3\x93\xd1\x9f\xcb\x32\x97\x88\xcb\x7c\x0d\x1d\xc5\x9c\x1b\x9c\x53\x60\xf5\x65\xce\xb5\x41\x83\xc5\xf9\x85\x76\x25\x83\xa7\x8b\xa6\x5a\x28\x15\x2f\xc2\x94\xe4\x1c\x97\x53\xe2\xba\x37\xee\x2d\x79\x6f\xf3\xde\x7a\x14\x0b\xbe\x2a\x17\xbf\x08\x1c\x8f\x31\xd2\xbc\xd0\x5b\xcd\x4b\xa0\xe8\x2e\x7c\x29\xfd\x7b\x01\xe7\x86\xbd\xce\xbc\x96\xa4\x25\x36\x8a\x58\x68\x72\xec\x5b\x8e\x8d\x92\x7c\xde\x32\x84\xfb\xd8\x85\x0a\x88\x49\xde\x1b\x28\x1f\xfc\xbc\xe7\x8d\x22\x6b\xde\x20\xf7\x10\x5b\x77\xaa\x05\x9a\x68\x81\xfa\xc6\xcb\x74\xfd\xde\x59\xaf\x7e\x31\xe6\x5c\xbf\xf7\x06\xea\x21\xda\xf4\xed\x04\xbe\x0b\x48\x3c\x62\x90\xba\xa4\x6f\x97\x34\xaa\xa7\x79\x63\x37\x31\xef\xb6\xf1\x05\xc9\xda\xcc\xda\xec\xf4\x2a\xfa\xa3\x79\xbb\x41\x34\xc4\xd5\x9b\xd2\x26\xa0\x2f\x02\xd9\x71\x77\x34\xb9\x3b\xea\x42\x34\xdf\xf2\xaa\xfb\x15\x13\x2f\xff\xcf\xbb\x79\x6b\xff\xa7\xcd\x9c\xf0\x03\xf1\x30\x3c\x87\xc8\x4d\x85\x16\x3e\x1b\xdb\x67\x03\x7c\x51\xd6\x53\x0d\xc1\x21\xaa\x59\x33\x5d\x33\x3c\x88\x90\x51\x36\xc7\x10\xb1\xf3\x10\xb2\x89\x13\xe5\x7c\x0d\x47\x7a\x6c\xec\xa5\x57\xda\x86\x11\x14\xfb\x88\xde\x7e\x15\x6d\xc4\xbf\x7e\xab\xb4\x0d\xb4\x2c\x96\x4b\x35\x6f\xa5\xb7\xc5\xec\xb1\xc7\xde\xdd\x63\x62\xf4\x20\x76\xcf\x77\x6e\x34\x1d\x11\x6c\xac\xca\x86\x9d\xd8\xf0\x2a\xcc\xa2\x77\xe3\x17\x88\x3e\x81\x1b\xd5\xfc\xb8\x87\xce\x02\x64\x7e\xf2\x86\x0f\x24\x3a\x8c\xd2\xa6\x62\xe6\x24\xde\x52\x3a\x0c\x94\x4f\x14\xbf\x78\x10\x1a\x7c\xe3\x6a\x7c\x92\x0c\x3d\xce\xb8\x7f\x8f\xb4\x57\x4c\x03\xf1\x0d\xd8\xa3\xb8\xad\x4a\x59\x70\x27\xc2\xd9\xc4\x03\xd7\x9a\x22\xc4\x80\x05\x88\x73\x62\x0c\x77\xd4\x16\x73\x81\x93\x55\x0c\x80\xce\x61\x6a\x62\xfa\x92\x8e\x1d\x14\x1d\x03\xcd\x49\x48\x9c\x28\xc0\xc0\xf6\x74\x30\x61\x80\x53\x16\xea\x40\x75\xd8\x5c\x8d\x60\xfe\xb0\xf2\x85\x53\xd1\x5c\xcd\x78\xeb\x86\x48\xf7\x6b\xd3\xaf\x19\x66\x5e\x01\x62\x3d\x06\x66\x31\xaa\x40\x7e\x8c\x0e\xb4\xff\xd5\x66\xfe\x30\x98\x47\x10\xf2\x3f\xbf\x71\x31\x78\xcc\xe3\x37\x04\x79\xfd\xe7\x37\xfc\x42\x8e\x96\x7f\x7f\xeb\xff\xfc\x86\x99\xfc\x09\x4e\xd3\x8e\x30\xbb\xf8\x2d\xfe\x75\xca\xb6\x1d\x4a\xec\x7e\x17\x5d\xba\xff\xed\x6a\x20\x7e\xa2\x3c\xbd\xa8\x50\xf7\xbf\xd3\x90\x50\xbf\xc1\x9a\x50\xf5\xee\x7f\x8d\x3a\x84\xcf\xb6\xfa\xf4\xc5\xee\x74\xd6\x62\x50\x02\xe6\xde\x9a\xd3\x40\x03\xba\xdb\xc7\xa7\x17\xf8\xec\xa3\xea\x7a\xcd\x18\x2d\x8e\xa5\x06\xe7\x5a\xc0\x80\xc7\x63\x3b\x65\x4f\x5c\x80\xa3\xa3\x97\xa8\xc6\xf8\xea\x82\x69\x1c\x0f\x1c\xe0\xf0\xc2\x26\x4c\x78\x3c\x62\xe5\x73\x3b\xba\x88\xaf\x14\x8f\xa1\x3f\x05\xc9\xb2\xc9\xf0\x48\x18\x38\xf0\x7e\xc8\x9f\x0b\xdb\x2f\xaf\x87\x97\x47\xaf\xc5\xd1\xab\x13\xca\x75\x11\xb5\x35\x1e\x17\xa4\x13\xd2\x2d\x29\x66\x3a\x18\xf3\x8b\x70\x43\xf1\xf8\x48\xe5\xb7\x16\x24\xf0\xdb\x27\x0e\xc8\x1c\xdf\xe2\x51\xc8\xc8\xb7\x8a\x95\xc0\x7e\x32\x35\x7c\xaf\x09\x03\x1b\x0f\x6b\xa1\x5b\x31\x9d\x08\x64\x46\xc3\xbf\x9a\xa3\x5b\x3c\x70\x87\xd6\x87\xf8\x92\x82\xe6\x10\xff\x5c\x84\xa4\xb5\x76\xdd\x71\xff\x95\x52\x63\x30\xf4\x84\x66\xce\x2f\x54\xc0\xa7\xf7\x0e\x8b\x05\xf0\xf7\x22\x04\xb9\x8e\xf7\x84\x3a\x8c\x07\xe2\xc6\xff\xc2\x5e\xe3\xe5\x3f\x5f\xff\xfe\x6f\xff\xdf\xff\xdf\xf5\xef\xff\xff\xeb\x3f\x7f\x7f\x3d\xff\xfd\x3f\xfe\xe3\xfb\x2f\xff\xed\xfd\x4f\xcf\x7f\xfb\xeb\xff\x13\xd4\xbf\xde\x6f\xfd\xa7\xff\xf2\xfd\xc7\xf7\xbf\xff\xd7\xff\xfe\x1f\xcf\xf7\xd7\xbf\xff\xd7\x7f\x8f\x5c\xfc\xfd\x1f\x01\x00\x00\xff\xff\x39\x4b\x37\xd8\x86\xd6\x02\x00"); +func _cg ()([]byte ,error ){return _gb (_bb ,"78-EUC-H")};func _eaebb ()(*asset ,error ){_cgca ,_cbge :=_facf ();if _cbge !=nil {return nil ,_cbge ;};_geea :=bindataFileInfo {_ee :"GBTpc-EUC-V",_ffd :789,_cd :_ff .FileMode (436),_ae :_c .Unix (1580492242,0)}; +_ggb :=&asset {_da :_cgca ,_dc :_geea };return _ggb ,nil ;};func _afeae ()([]byte ,error ){return _gb (_faec ,"UniJIS-UTF8-V")};func _cceaa ()(*asset ,error ){_cdde ,_faaa :=_gfgc ();if _faaa !=nil {return nil ,_faaa ;};_gbfe :=bindataFileInfo {_ee :"EUC-H",_ffd :2837,_cd :_ff .FileMode (436),_ae :_c .Unix (1580491850,0)}; +_gdgb :=&asset {_da :_cdde ,_dc :_gbfe };return _gdgb ,nil ;};func _gcgbb ()(*asset ,error ){_bcad ,_eeaf :=_gbedg ();if _eeaf !=nil {return nil ,_eeaf ;};_dfbg :=bindataFileInfo {_ee :"UniKS-UTF16-V",_ffd :689,_cd :_ff .FileMode (436),_ae :_c .Unix (1580493040,0)}; +_cgbfd :=&asset {_da :_bcad ,_dc :_dfbg };return _cgbfd ,nil ;}; \ No newline at end of file diff --git a/internal/cmap/cmap.go b/internal/cmap/cmap.go index dbb4514f4..8f44684e3 100644 --- a/internal/cmap/cmap.go +++ b/internal/cmap/cmap.go @@ -9,132 +9,131 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package cmap ;import (_ba "bufio";_bd "bytes";_c "encoding/hex";_d "errors";_e "fmt";_dc "github.com/unidoc/unipdf/v3/common";_ged "github.com/unidoc/unipdf/v3/core";_gg "github.com/unidoc/unipdf/v3/internal/cmap/bcmaps";_ge "io";_gf "sort";_a "strconv"; -_ca "strings";_b "unicode/utf16";);func (cmap *CMap )toBfData ()string {if len (cmap ._cdc )==0{return "";};_eefa :=make ([]CharCode ,0,len (cmap ._cdc ));for _fgf :=range cmap ._cdc {_eefa =append (_eefa ,_fgf );};_gf .Slice (_eefa ,func (_ccb ,_bdd int )bool {return _eefa [_ccb ]< _eefa [_bdd ]}); -var _ggb []charRange ;_fbgc :=charRange {_eefa [0],_eefa [0]};_cag :=cmap ._cdc [_eefa [0]];for _ ,_cdcf :=range _eefa [1:]{_ae :=cmap ._cdc [_cdcf ];if _cdcf ==_fbgc ._ef +1&&_ebf (_ae )==_ebf (_cag )+1{_fbgc ._ef =_cdcf ;}else {_ggb =append (_ggb ,_fbgc ); -_fbgc ._ea ,_fbgc ._ef =_cdcf ,_cdcf ;};_cag =_ae ;};_ggb =append (_ggb ,_fbgc );var _egf []CharCode ;var _fgg []fbRange ;for _ ,_aac :=range _ggb {if _aac ._ea ==_aac ._ef {_egf =append (_egf ,_aac ._ea );}else {_fgg =append (_fgg ,fbRange {_ab :_aac ._ea ,_bda :_aac ._ef ,_bf :cmap ._cdc [_aac ._ea ]}); -};};_dc .Log .Trace ("\u0063\u0068ar\u0052\u0061\u006eg\u0065\u0073\u003d\u0025d f\u0062Ch\u0061\u0072\u0073\u003d\u0025\u0064\u0020fb\u0052\u0061\u006e\u0067\u0065\u0073\u003d%\u0064",len (_ggb ),len (_egf ),len (_fgg ));var _bbf []string ;if len (_egf )> 0{_gcd :=(len (_egf )+_aed -1)/_aed ; -for _gcdd :=0;_gcdd < _gcd ;_gcdd ++{_acfb :=_abaf (len (_egf )-_gcdd *_aed ,_aed );_bbf =append (_bbf ,_e .Sprintf ("\u0025\u0064\u0020\u0062\u0065\u0067\u0069\u006e\u0062f\u0063\u0068\u0061\u0072",_acfb ));for _fadf :=0;_fadf < _acfb ;_fadf ++{_cacd :=_egf [_gcdd *_aed +_fadf ]; -_ede :=cmap ._cdc [_cacd ];_bbf =append (_bbf ,_e .Sprintf ("\u003c%\u0030\u0034\u0078\u003e\u0020\u0025s",_cacd ,_bdda (_ede )));};_bbf =append (_bbf ,"\u0065n\u0064\u0062\u0066\u0063\u0068\u0061r");};};if len (_fgg )> 0{_dcg :=(len (_fgg )+_aed -1)/_aed ; -for _acb :=0;_acb < _dcg ;_acb ++{_eagg :=_abaf (len (_fgg )-_acb *_aed ,_aed );_bbf =append (_bbf ,_e .Sprintf ("\u0025d\u0020b\u0065\u0067\u0069\u006e\u0062\u0066\u0072\u0061\u006e\u0067\u0065",_eagg ));for _dgdeb :=0;_dgdeb < _eagg ;_dgdeb ++{_caa :=_fgg [_acb *_aed +_dgdeb ]; -_bbf =append (_bbf ,_e .Sprintf ("\u003c%\u00304\u0078\u003e\u003c\u0025\u0030\u0034\u0078\u003e\u0020\u0025\u0073",_caa ._ab ,_caa ._bda ,_bdda (_caa ._bf )));};_bbf =append (_bbf ,"\u0065\u006e\u0064\u0062\u0066\u0072\u0061\u006e\u0067\u0065");};};return _ca .Join (_bbf ,"\u000a"); -};func (cmap *CMap )Type ()int {return cmap ._cf };func (cmap *CMap )CharcodeBytesToUnicode (data []byte )(string ,int ){_bce ,_bbc :=cmap .BytesToCharcodes (data );if !_bbc {_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0042\u0079\u0074\u0065s\u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u002e\u0020\u004e\u006f\u0074\u0020\u0069n\u0020\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u002e\u0020\u0064\u0061\u0074\u0061\u003d\u005b\u0025\u0020\u0030\u0032\u0078]\u0020\u0063\u006d\u0061\u0070=\u0025\u0073",data ,cmap ); -return "",0;};_gbb :=make ([]string ,len (_bce ));var _deb []CharCode ;for _ade ,_efa :=range _bce {_efc ,_cff :=cmap ._cdc [_efa ];if !_cff {_deb =append (_deb ,_efa );_efc =MissingCodeString ;};_gbb [_ade ]=_efc ;};_gbd :=_ca .Join (_gbb ,"");if len (_deb )> 0{_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020C\u0068\u0061\u0072c\u006f\u0064\u0065\u0042y\u0074\u0065\u0073\u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u002e\u0020\u004e\u006f\u0074\u0020\u0069\u006e\u0020\u006d\u0061\u0070\u002e\u000a"+"\u0009d\u0061t\u0061\u003d\u005b\u0025\u00200\u0032\u0078]\u003d\u0025\u0023\u0071\u000a"+"\u0009\u0063h\u0061\u0072\u0063o\u0064\u0065\u0073\u003d\u0025\u0030\u0032\u0078\u000a"+"\u0009\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u003d\u0025\u0064\u0020%\u0030\u0032\u0078\u000a"+"\u0009\u0075\u006e\u0069\u0063\u006f\u0064\u0065\u003d`\u0025\u0073\u0060\u000a"+"\u0009\u0063\u006d\u0061\u0070\u003d\u0025\u0073",data ,string (data ),_bce ,len (_deb ),_deb ,_gbd ,cmap ); -};return _gbd ,len (_deb );};func (cmap *CMap )String ()string {_abd :=cmap ._ff ;_ccc :=[]string {_e .Sprintf ("\u006e\u0062\u0069\u0074\u0073\u003a\u0025\u0064",cmap ._ga ),_e .Sprintf ("\u0074y\u0070\u0065\u003a\u0025\u0064",cmap ._cf )};if cmap ._db !=""{_ccc =append (_ccc ,_e .Sprintf ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u003a\u0025\u0073",cmap ._db )); -};if cmap ._cd !=""{_ccc =append (_ccc ,_e .Sprintf ("u\u0073\u0065\u0063\u006d\u0061\u0070\u003a\u0025\u0023\u0071",cmap ._cd ));};_ccc =append (_ccc ,_e .Sprintf ("\u0073\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f\u003a\u0025\u0073",_abd .String ())); -if len (cmap ._cb )> 0{_ccc =append (_ccc ,_e .Sprintf ("\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u003a\u0025\u0064",len (cmap ._cb )));};if len (cmap ._cdc )> 0{_ccc =append (_ccc ,_e .Sprintf ("\u0063\u006fd\u0065\u0054\u006fU\u006e\u0069\u0063\u006f\u0064\u0065\u003a\u0025\u0064",len (cmap ._cdc ))); -};return _e .Sprintf ("\u0043\u004d\u0041P\u007b\u0025\u0023\u0071\u0020\u0025\u0073\u007d",cmap ._ec ,_ca .Join (_ccc ,"\u0020"));};type cmapString struct{String string ;};const (_aed =100;_cgc ="\u000a\u002f\u0043\u0049\u0044\u0049\u006e\u0069\u0074\u0020\u002f\u0050\u0072\u006fc\u0053\u0065\u0074\u0020\u0066\u0069\u006e\u0064\u0072es\u006fu\u0072c\u0065 \u0062\u0065\u0067\u0069\u006e\u000a\u0031\u0032\u0020\u0064\u0069\u0063\u0074\u0020\u0062\u0065\u0067\u0069n\u000a\u0062\u0065\u0067\u0069\u006e\u0063\u006d\u0061\u0070\n\u002f\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065m\u0049\u006e\u0066\u006f\u0020\u003c\u003c\u0020\u002f\u0052\u0065\u0067\u0069\u0073t\u0072\u0079\u0020\u0028\u0041\u0064\u006f\u0062\u0065\u0029\u0020\u002f\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0028\u0055\u0043\u0053)\u0020\u002f\u0053\u0075\u0070p\u006c\u0065\u006d\u0065\u006et\u0020\u0030\u0020\u003e\u003e\u0020\u0064\u0065\u0066\u000a\u002f\u0043\u004d\u0061\u0070\u004e\u0061\u006d\u0065\u0020\u002f\u0041\u0064\u006f\u0062\u0065-\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0055\u0043\u0053\u0020\u0064\u0065\u0066\u000a\u002fC\u004d\u0061\u0070\u0054\u0079\u0070\u0065\u0020\u0032\u0020\u0064\u0065\u0066\u000a\u0031\u0020\u0062\u0065\u0067\u0069\u006e\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063e\u0072\u0061n\u0067\u0065\n\u003c\u0030\u0030\u0030\u0030\u003e\u0020<\u0046\u0046\u0046\u0046\u003e\u000a\u0065\u006e\u0064\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065r\u0061\u006e\u0067\u0065\u000a"; -_edc ="\u0065\u006e\u0064\u0063\u006d\u0061\u0070\u000a\u0043\u004d\u0061\u0070\u004e\u0061\u006d\u0065\u0020\u0063ur\u0072e\u006e\u0074\u0064\u0069\u0063\u0074\u0020\u002f\u0043\u004d\u0061\u0070 \u0064\u0065\u0066\u0069\u006e\u0065\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0070\u006fp\u000a\u0065\u006e\u0064\u000a\u0065\u006e\u0064\u000a"; -);type CMap struct{*cMapParser ;_ec string ;_ga int ;_cf int ;_db string ;_cd string ;_ff CIDSystemInfo ;_cb []Codespace ;_fa map[CharCode ]CharCode ;_cc map[CharCode ]CharCode ;_cdc map[CharCode ]string ;_ecc map[string ]CharCode ;_cgf []byte ;_fd *_ged .PdfObjectStream ; -_dgd integer ;};func (cmap *CMap )parseType ()error {_cdcd :=0;_ccfd :=false ;for _gfg :=0;_gfg < 3&&!_ccfd ;_gfg ++{_dfg ,_dee :=cmap .parseObject ();if _dee !=nil {return _dee ;};switch _gfa :=_dfg .(type ){case cmapOperand :switch _gfa .Operand {case "\u0064\u0065\u0066":_ccfd =true ; -default:_dc .Log .Error ("\u0070\u0061r\u0073\u0065\u0054\u0079\u0070\u0065\u003a\u0020\u0073\u0074\u0061\u0074\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020\u006f=%\u0023\u0076",_dfg );return ErrBadCMap ;};case cmapInt :_cdcd =int (_gfa ._gaff ); -};};cmap ._cf =_cdcd ;return nil ;};func (_fae *cMapParser )parseOperand ()(cmapOperand ,error ){_baff :=cmapOperand {};_eeff :=_bd .Buffer {};for {_ddgc ,_cddc :=_fae ._afae .Peek (1);if _cddc !=nil {if _cddc ==_ge .EOF {break ;};return _baff ,_cddc ; -};if _ged .IsDelimiter (_ddgc [0]){break ;};if _ged .IsWhiteSpace (_ddgc [0]){break ;};_bccd ,_ :=_fae ._afae .ReadByte ();_eeff .WriteByte (_bccd );};if _eeff .Len ()==0{return _baff ,_e .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u0020\u0028\u0065\u006d\u0070\u0074\u0079\u0029"); -};_baff .Operand =_eeff .String ();return _baff ,nil ;};func LoadPredefinedCMap (name string )(*CMap ,error ){cmap ,_bb :=_eag (name );if _bb !=nil {return nil ,_bb ;};if cmap ._cd ==""{cmap .computeInverseMappings ();return cmap ,nil ;};_ce ,_bb :=_eag (cmap ._cd ); -if _bb !=nil {return nil ,_bb ;};for _bc ,_ecd :=range _ce ._fa {if _ ,_ee :=cmap ._fa [_bc ];!_ee {cmap ._fa [_bc ]=_ecd ;};};cmap ._cb =append (cmap ._cb ,_ce ._cb ...);cmap .computeInverseMappings ();return cmap ,nil ;};func (cmap *CMap )parseCIDRange ()error {for {_gce ,_cdf :=cmap .parseObject (); -if _cdf !=nil {if _cdf ==_ge .EOF {break ;};return _cdf ;};_dab ,_dbd :=_gce .(cmapHexString );if !_dbd {if _ecda ,_fec :=_gce .(cmapOperand );_fec {if _ecda .Operand ==_feec {return nil ;};return _d .New ("\u0063\u0069\u0064\u0020\u0069\u006e\u0074\u0065\u0072\u0076\u0061\u006c\u0020s\u0074\u0061\u0072\u0074\u0020\u006du\u0073\u0074\u0020\u0062\u0065\u0020\u0061\u0020\u0068\u0065\u0078\u0020\u0073t\u0072\u0069\u006e\u0067"); -};};_ffa :=_adba (_dab );_gce ,_cdf =cmap .parseObject ();if _cdf !=nil {if _cdf ==_ge .EOF {break ;};return _cdf ;};_cef ,_dbd :=_gce .(cmapHexString );if !_dbd {return _d .New ("\u0063\u0069d\u0020\u0069\u006e\u0074e\u0072\u0076a\u006c\u0020\u0065\u006e\u0064\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0061\u0020\u0068\u0065\u0078\u0020\u0073t\u0072\u0069\u006e\u0067"); -};if len (_dab ._cae )!=len (_cef ._cae ){return _d .New ("\u0075\u006e\u0065\u0071\u0075\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0062\u0079\u0074\u0065\u0073\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065");};_eeaf :=_adba (_cef ); -if _ffa > _eeaf {_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0049\u0044\u0020\u0072\u0061\u006e\u0067\u0065\u002e\u0020\u0073t\u0061\u0072\u0074\u003d\u0030\u0078\u0025\u0030\u0032\u0078\u0020\u0065\u006e\u0064=\u0030x\u0025\u0030\u0032\u0078",_ffa ,_eeaf ); -return ErrBadCMap ;};_gce ,_cdf =cmap .parseObject ();if _cdf !=nil {if _cdf ==_ge .EOF {break ;};return _cdf ;};_ffc ,_dbd :=_gce .(cmapInt );if !_dbd {return _d .New ("\u0063\u0069\u0064\u0020\u0073t\u0061\u0072\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0064\u0065\u0063\u0069\u006d\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072"); -};if _ffc ._gaff < 0{return _d .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0063\u0069\u0064\u0020\u0073\u0074\u0061\u0072\u0074\u0020\u0076\u0061\u006c\u0075\u0065");};_fcg :=_ffc ._gaff ;for _cdfc :=_ffa ;_cdfc <=_eeaf ;_cdfc ++{cmap ._fa [_cdfc ]=CharCode (_fcg ); -_fcg ++;};_dc .Log .Trace ("C\u0049\u0044\u0020\u0072\u0061\u006eg\u0065\u003a\u0020\u003c\u0030\u0078\u0025\u0058\u003e \u003c\u0030\u0078%\u0058>\u0020\u0025\u0064",_ffa ,_eeaf ,_ffc ._gaff );};return nil ;};func _acd ()cmapDict {return cmapDict {Dict :map[string ]cmapObject {}}}; -func (cmap *CMap )WMode ()(int ,bool ){return cmap ._dgd ._fed ,cmap ._dgd ._ggd };func (_agc *cMapParser )parseHexString ()(cmapHexString ,error ){_agc ._afae .ReadByte ();_dge :=[]byte ("\u0030\u0031\u0032\u003345\u0036\u0037\u0038\u0039\u0061\u0062\u0063\u0064\u0065\u0066\u0041\u0042\u0043\u0044E\u0046"); -_fce :=_bd .Buffer {};for {_agc .skipSpaces ();_fag ,_acga :=_agc ._afae .Peek (1);if _acga !=nil {return cmapHexString {},_acga ;};if _fag [0]=='>'{_agc ._afae .ReadByte ();break ;};_abbc ,_ :=_agc ._afae .ReadByte ();if _bd .IndexByte (_dge ,_abbc )>=0{_fce .WriteByte (_abbc ); -};};if _fce .Len ()%2==1{_dc .Log .Debug ("\u0070\u0061rs\u0065\u0048\u0065x\u0053\u0074\u0072\u0069ng:\u0020ap\u0070\u0065\u006e\u0064\u0069\u006e\u0067 '\u0030\u0027\u0020\u0074\u006f\u0020\u0025#\u0071",_fce .String ());_fce .WriteByte ('0');};_beed :=_fce .Len ()/2; -_fab ,_ :=_c .DecodeString (_fce .String ());return cmapHexString {_gef :_beed ,_cae :_fab },nil ;};func (cmap *CMap )computeInverseMappings (){for _gbe ,_be :=range cmap ._fa {if _dd ,_dgde :=cmap ._cc [_be ];!_dgde ||(_dgde &&_dd > _gbe ){cmap ._cc [_be ]=_gbe ; -};};for _aba ,_dgg :=range cmap ._cdc {if _cba ,_aaa :=cmap ._ecc [_dgg ];!_aaa ||(_aaa &&_cba > _aba ){cmap ._ecc [_dgg ]=_aba ;};};_gf .Slice (cmap ._cb ,func (_bcf ,_cgd int )bool {return cmap ._cb [_bcf ].Low < cmap ._cb [_cgd ].Low });};func (cmap *CMap )matchCode (_dgda []byte )(_ebc CharCode ,_fg int ,_ecb bool ){for _egc :=0; -_egc < _f ;_egc ++{if _egc < len (_dgda ){_ebc =_ebc <<8|CharCode (_dgda [_egc ]);_fg ++;};_ecb =cmap .inCodespace (_ebc ,_egc +1);if _ecb {return _ebc ,_fg ,true ;};};_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063o\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0020m\u0061t\u0063\u0068\u0065\u0073\u0020\u0062\u0079\u0074\u0065\u0073\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d=\u0025\u0023\u0071\u0020\u0063\u006d\u0061\u0070\u003d\u0025\u0073",_dgda ,string (_dgda ),cmap ); -return 0,0,false ;};func (cmap *CMap )parseBfchar ()error {for {_egeb ,_gaf :=cmap .parseObject ();if _gaf !=nil {if _gaf ==_ge .EOF {break ;};return _gaf ;};var _dfdb CharCode ;switch _gcc :=_egeb .(type ){case cmapOperand :if _gcc .Operand ==_bbfd {return nil ; -};return _d .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065d\u0020\u006fp\u0065\u0072\u0061\u006e\u0064");case cmapHexString :_dfdb =_adba (_gcc );default:return _d .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0074\u0079\u0070\u0065"); -};_egeb ,_gaf =cmap .parseObject ();if _gaf !=nil {if _gaf ==_ge .EOF {break ;};return _gaf ;};var _cga []rune ;switch _bga :=_egeb .(type ){case cmapOperand :if _bga .Operand ==_bbfd {return nil ;};_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020o\u0070\u0065\u0072\u0061\u006e\u0064\u002e\u0020\u0025\u0023\u0076",_bga ); -return ErrBadCMap ;case cmapHexString :_cga =_gcb (_bga );case cmapName :_dc .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u006e\u0061\u006de\u002e \u0025\u0023\u0076",_bga );_cga =[]rune {MissingCodeRune }; -default:_dc .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u0074\u0079\u0070e\u002e \u0025\u0023\u0076",_egeb );return ErrBadCMap ;};cmap ._cdc [_dfdb ]=string (_cga );};return nil ;};func (cmap *CMap )parseBfrange ()error {for {var _dagg CharCode ; -_fcgc ,_gde :=cmap .parseObject ();if _gde !=nil {if _gde ==_ge .EOF {break ;};return _gde ;};switch _gfeb :=_fcgc .(type ){case cmapOperand :if _gfeb .Operand ==_dda {return nil ;};return _d .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065d\u0020\u006fp\u0065\u0072\u0061\u006e\u0064"); -case cmapHexString :_dagg =_adba (_gfeb );default:return _d .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0074\u0079\u0070\u0065");};var _cgdd CharCode ;_fcgc ,_gde =cmap .parseObject ();if _gde !=nil {if _gde ==_ge .EOF {break ;};return _gde ; -};switch _fccg :=_fcgc .(type ){case cmapOperand :_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0049\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065\u0020\u0062\u0066r\u0061\u006e\u0067\u0065\u0020\u0074\u0072i\u0070\u006c\u0065\u0074"); -return ErrBadCMap ;case cmapHexString :_cgdd =_adba (_fccg );if _cgdd > 0xffff{_cgdd =0xffff;};default:_dc .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0055\u006e\u0065\u0078\u0070e\u0063t\u0065d\u0020\u0074\u0079\u0070\u0065\u0020\u0025T",_fcgc );return ErrBadCMap ; -};_fcgc ,_gde =cmap .parseObject ();if _gde !=nil {if _gde ==_ge .EOF {break ;};return _gde ;};switch _egef :=_fcgc .(type ){case cmapArray :if len (_egef .Array )!=int (_cgdd -_dagg )+1{_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0069\u0074\u0065\u006d\u0073\u0020\u0069\u006e\u0020a\u0072\u0072\u0061\u0079"); -return ErrBadCMap ;};for _fge :=_dagg ;_fge <=_cgdd ;_fge ++{_dgge :=_egef .Array [_fge -_dagg ];_aaef ,_deg :=_dgge .(cmapHexString );if !_deg {return _d .New ("\u006e\u006f\u006e-h\u0065\u0078\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0069\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); -};_acfa :=_gcb (_aaef );cmap ._cdc [_fge ]=string (_acfa );};case cmapHexString :_bggc :=_gcb (_egef );_bddd :=len (_bggc );for _gbcb :=_dagg ;_gbcb <=_cgdd ;_gbcb ++{cmap ._cdc [_gbcb ]=string (_bggc );if _bddd > 0{_bggc [_bddd -1]++;}else {_dc .Log .Debug ("\u004e\u006f\u0020c\u006d\u0061\u0070\u0020\u0074\u0061\u0072\u0067\u0065\u0074\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0066\u006f\u0072\u0020\u0025\u0023\u0076",_gbcb ); -};if _gbcb ==1<<32-1{break ;};};default:_dc .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0055\u006e\u0065\u0078\u0070e\u0063t\u0065d\u0020\u0074\u0079\u0070\u0065\u0020\u0025T",_fcgc );return ErrBadCMap ;};};return nil ;};func (cmap *CMap )BytesToCharcodes (data []byte )([]CharCode ,bool ){var _df []CharCode ; -if cmap ._ga ==8{for _ ,_ded :=range data {_df =append (_df ,CharCode (_ded ));};return _df ,true ;};for _acf :=0;_acf < len (data );{_fad ,_ffb ,_ege :=cmap .matchCode (data [_acf :]);if !_ege {_dc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063\u006f\u0064\u0065\u0020\u006d\u0061\u0074\u0063\u0068\u0020\u0061\u0074\u0020\u0069\u003d\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0073\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d\u003d\u0025\u0023\u0071",_acf ,data ,string (data )); -return _df ,false ;};_df =append (_df ,_fad );_acf +=_ffb ;};return _df ,true ;};type cmapDict struct{Dict map[string ]cmapObject ;};type cMapParser struct{_afae *_ba .Reader };func (_fded *cMapParser )parseDict ()(cmapDict ,error ){_dc .Log .Trace ("\u0052\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020D\u0069\u0063\u0074\u0021"); -_bgae :=_acd ();_ggg ,_ :=_fded ._afae .ReadByte ();if _ggg !='<'{return _bgae ,ErrBadCMapDict ;};_ggg ,_ =_fded ._afae .ReadByte ();if _ggg !='<'{return _bgae ,ErrBadCMapDict ;};for {_fded .skipSpaces ();_gda ,_bead :=_fded ._afae .Peek (2);if _bead !=nil {return _bgae ,_bead ; -};if (_gda [0]=='>')&&(_gda [1]=='>'){_fded ._afae .ReadByte ();_fded ._afae .ReadByte ();break ;};_ecec ,_bead :=_fded .parseName ();_dc .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_ecec .Name );if _bead !=nil {_dc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006e\u0061\u006d\u0065\u002e\u0020\u0065\u0072r=\u0025\u0076",_bead ); -return _bgae ,_bead ;};_fded .skipSpaces ();_caf ,_bead :=_fded .parseObject ();if _bead !=nil {return _bgae ,_bead ;};_bgae .Dict [_ecec .Name ]=_caf ;_fded .skipSpaces ();_gda ,_bead =_fded ._afae .Peek (3);if _bead !=nil {return _bgae ,_bead ;};if string (_gda )=="\u0064\u0065\u0066"{_fded ._afae .Discard (3); -};};return _bgae ,nil ;};const (_abf ="\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f";_agd ="\u0062e\u0067\u0069\u006e\u0063\u006d\u0061p";_gaa ="\u0065n\u0064\u0063\u006d\u0061\u0070";_fgee ="\u0062\u0065\u0067\u0069nc\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0072\u0061\u006e\u0067\u0065"; -_gbefd ="\u0065\u006e\u0064\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065r\u0061\u006e\u0067\u0065";_geg ="b\u0065\u0067\u0069\u006e\u0062\u0066\u0063\u0068\u0061\u0072";_bbfd ="\u0065n\u0064\u0062\u0066\u0063\u0068\u0061r";_fda ="\u0062\u0065\u0067i\u006e\u0062\u0066\u0072\u0061\u006e\u0067\u0065"; -_dda ="\u0065\u006e\u0064\u0062\u0066\u0072\u0061\u006e\u0067\u0065";_bcb ="\u0062\u0065\u0067\u0069\u006e\u0063\u0069\u0064\u0072\u0061\u006e\u0067\u0065";_feec ="e\u006e\u0064\u0063\u0069\u0064\u0072\u0061\u006e\u0067\u0065";_fbfb ="\u0075s\u0065\u0063\u006d\u0061\u0070"; -_bde ="\u0057\u004d\u006fd\u0065";_dbe ="\u0043\u004d\u0061\u0070\u004e\u0061\u006d\u0065";_dfge ="\u0043\u004d\u0061\u0070\u0054\u0079\u0070\u0065";_cfg ="C\u004d\u0061\u0070\u0056\u0065\u0072\u0073\u0069\u006f\u006e";);func (cmap *CMap )Stream ()(*_ged .PdfObjectStream ,error ){if cmap ._fd !=nil {return cmap ._fd ,nil ; -};_eb ,_bba :=_ged .MakeStream (cmap .Bytes (),_ged .NewFlateEncoder ());if _bba !=nil {return nil ,_bba ;};cmap ._fd =_eb ;return cmap ._fd ,nil ;};func (_eaac *cMapParser )parseArray ()(cmapArray ,error ){_abbd :=cmapArray {};_abbd .Array =[]cmapObject {}; -_eaac ._afae .ReadByte ();for {_eaac .skipSpaces ();_fcfa ,_bdef :=_eaac ._afae .Peek (1);if _bdef !=nil {return _abbd ,_bdef ;};if _fcfa [0]==']'{_eaac ._afae .ReadByte ();break ;};_fgeb ,_bdef :=_eaac .parseObject ();if _bdef !=nil {return _abbd ,_bdef ; -};_abbd .Array =append (_abbd .Array ,_fgeb );};return _abbd ,nil ;};func (cmap *CMap )parse ()error {var _bcfc cmapObject ;for {_gee ,_aef :=cmap .parseObject ();if _aef !=nil {if _aef ==_ge .EOF {break ;};_dc .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0043\u004d\u0061\u0070\u003a\u0020\u0025\u0076",_aef ); -return _aef ;};switch _eec :=_gee .(type ){case cmapOperand :_gbeb :=_eec ;switch _gbeb .Operand {case _fgee :_abb :=cmap .parseCodespaceRange ();if _abb !=nil {return _abb ;};case _bcb :_egd :=cmap .parseCIDRange ();if _egd !=nil {return _egd ;};case _geg :_fbd :=cmap .parseBfchar (); -if _fbd !=nil {return _fbd ;};case _fda :_fbab :=cmap .parseBfrange ();if _fbab !=nil {return _fbab ;};case _fbfb :if _bcfc ==nil {_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u0073\u0065\u0063m\u0061\u0070\u0020\u0077\u0069\u0074\u0068\u0020\u006e\u006f \u0061\u0072\u0067"); -return ErrBadCMap ;};_feb ,_fde :=_bcfc .(cmapName );if !_fde {_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0075\u0073\u0065\u0063\u006d\u0061\u0070\u0020\u0061\u0072\u0067\u0020\u006eo\u0074\u0020\u0061\u0020\u006e\u0061\u006de\u0020\u0025\u0023\u0076",_bcfc ); -return ErrBadCMap ;};cmap ._cd =_feb .Name ;case _abf :_ebb :=cmap .parseSystemInfo ();if _ebb !=nil {return _ebb ;};};case cmapName :_agf :=_eec ;switch _agf .Name {case _abf :_ebe :=cmap .parseSystemInfo ();if _ebe !=nil {return _ebe ;};case _dbe :_cccg :=cmap .parseName (); -if _cccg !=nil {return _cccg ;};case _dfge :_cde :=cmap .parseType ();if _cde !=nil {return _cde ;};case _cfg :_ddd :=cmap .parseVersion ();if _ddd !=nil {return _ddd ;};case _bde :if _aef =cmap .parseWMode ();_aef !=nil {return _aef ;};};};_bcfc =_gee ; -};return nil ;};func (_fac *cMapParser )parseObject ()(cmapObject ,error ){_fac .skipSpaces ();for {_eead ,_gfgc :=_fac ._afae .Peek (2);if _gfgc !=nil {return nil ,_gfgc ;};if _eead [0]=='%'{_fac .parseComment ();_fac .skipSpaces ();continue ;}else if _eead [0]=='/'{_bcfcf ,_bedg :=_fac .parseName (); -return _bcfcf ,_bedg ;}else if _eead [0]=='('{_eceb ,_edbg :=_fac .parseString ();return _eceb ,_edbg ;}else if _eead [0]=='['{_efg ,_aab :=_fac .parseArray ();return _efg ,_aab ;}else if (_eead [0]=='<')&&(_eead [1]=='<'){_beb ,_cgca :=_fac .parseDict (); -return _beb ,_cgca ;}else if _eead [0]=='<'{_gab ,_bdfe :=_fac .parseHexString ();return _gab ,_bdfe ;}else if _ged .IsDecimalDigit (_eead [0])||(_eead [0]=='-'&&_ged .IsDecimalDigit (_eead [1])){_caab ,_gcg :=_fac .parseNumber ();if _gcg !=nil {return nil ,_gcg ; -};return _caab ,nil ;}else {_cfcd ,_gaae :=_fac .parseOperand ();if _gaae !=nil {return nil ,_gaae ;};return _cfcd ,nil ;};};};func LoadCmapFromDataCID (data []byte )(*CMap ,error ){return LoadCmapFromData (data ,false )};var (ErrBadCMap =_d .New ("\u0062\u0061\u0064\u0020\u0063\u006d\u0061\u0070"); -ErrBadCMapComment =_d .New ("c\u006f\u006d\u006d\u0065\u006e\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0073\u0074a\u0072\u0074\u0020w\u0069t\u0068\u0020\u0025");ErrBadCMapDict =_d .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"); -);func _eag (_adb string )(*CMap ,error ){_dcd ,_fbf :=_gg .Asset (_adb );if _fbf !=nil {return nil ,_fbf ;};return LoadCmapFromDataCID (_dcd );};func (_cdac *cMapParser )parseName ()(cmapName ,error ){_cdff :="";_adfc :=false ;for {_gbce ,_cbaf :=_cdac ._afae .Peek (1); -if _cbaf ==_ge .EOF {break ;};if _cbaf !=nil {return cmapName {_cdff },_cbaf ;};if !_adfc {if _gbce [0]=='/'{_adfc =true ;_cdac ._afae .ReadByte ();}else {_dc .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u004e\u0061\u006d\u0065\u0020\u0073\u0074a\u0072t\u0069n\u0067 \u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0028\u0025\u0020\u0078\u0029",_gbce ,_gbce ); -return cmapName {_cdff },_e .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_gbce [0]);};}else {if _ged .IsWhiteSpace (_gbce [0]){break ;}else if (_gbce [0]=='/')||(_gbce [0]=='[')||(_gbce [0]=='(')||(_gbce [0]==']')||(_gbce [0]=='<')||(_gbce [0]=='>'){break ; -}else if _gbce [0]=='#'{_gfd ,_dccd :=_cdac ._afae .Peek (3);if _dccd !=nil {return cmapName {_cdff },_dccd ;};_cdac ._afae .Discard (3);_gfb ,_dccd :=_c .DecodeString (string (_gfd [1:3]));if _dccd !=nil {return cmapName {_cdff },_dccd ;};_cdff +=string (_gfb ); -}else {_gcgb ,_ :=_cdac ._afae .ReadByte ();_cdff +=string (_gcgb );};};};return cmapName {_cdff },nil ;};func _ebf (_egb string )rune {_efaf :=[]rune (_egb );return _efaf [len (_efaf )-1]};func (_aa *CIDSystemInfo )String ()string {return _e .Sprintf ("\u0025\u0073\u002d\u0025\u0073\u002d\u0025\u0030\u0033\u0064",_aa .Registry ,_aa .Ordering ,_aa .Supplement ); -};func _gb (_fba bool )*CMap {_agg :=16;if _fba {_agg =8;};return &CMap {_ga :_agg ,_fa :make (map[CharCode ]CharCode ),_cc :make (map[CharCode ]CharCode ),_cdc :make (map[CharCode ]string ),_ecc :make (map[string ]CharCode )};};func IsPredefinedCMap (name string )bool {return _gg .AssetExists (name )}; -func _cge (_faba cmapHexString )rune {_becc :=_gcb (_faba );if _aadb :=len (_becc );_aadb ==0{_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0068\u0065\u0078\u0054o\u0052\u0075\u006e\u0065\u002e\u0020\u0045\u0078p\u0065c\u0074\u0065\u0064\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u006f\u006e\u0065\u0020\u0072u\u006e\u0065\u0020\u0073\u0068\u0065\u0078\u003d\u0025\u0023\u0076",_faba ); -return MissingCodeRune ;};if len (_becc )> 1{_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0068\u0065\u0078\u0054\u006f\u0052\u0075\u006e\u0065\u002e\u0020\u0045\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0065\u0078\u0061\u0063\u0074\u006c\u0079\u0020\u006f\u006e\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u0073\u0068\u0065\u0078\u003d\u0025\u0023v\u0020\u002d\u003e\u0020\u0025#\u0076",_faba ,_becc ); -};return _becc [0];};type CharCode uint32 ;func (cmap *CMap )parseSystemInfo ()error {_aga :=false ;_fbc :=false ;_ega :="";_afa :=false ;_bdf :=CIDSystemInfo {};for _bfg :=0;_bfg < 50&&!_afa ;_bfg ++{_adbc ,_fdb :=cmap .parseObject ();if _fdb !=nil {return _fdb ; -};switch _ddg :=_adbc .(type ){case cmapDict :_ceg :=_ddg .Dict ;_afd ,_befa :=_ceg ["\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079"];if !_befa {_dc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f"); -return ErrBadCMap ;};_dac ,_befa :=_afd .(cmapString );if !_befa {_dc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_bdf .Registry =_dac .String ; -_afd ,_befa =_ceg ["\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067"];if !_befa {_dc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_dac ,_befa =_afd .(cmapString ); -if !_befa {_dc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_bdf .Ordering =_dac .String ;_cfc ,_befa :=_ceg ["\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074"]; -if !_befa {_dc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_afc ,_befa :=_cfc .(cmapInt );if !_befa {_dc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f"); -return ErrBadCMap ;};_bdf .Supplement =int (_afc ._gaff );_afa =true ;case cmapOperand :switch _ddg .Operand {case "\u0062\u0065\u0067i\u006e":_aga =true ;case "\u0065\u006e\u0064":_afa =true ;case "\u0064\u0065\u0066":_fbc =false ;};case cmapName :if _aga {_ega =_ddg .Name ; -_fbc =true ;};case cmapString :if _fbc {switch _ega {case "\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079":_bdf .Registry =_ddg .String ;case "\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067":_bdf .Ordering =_ddg .String ;};};case cmapInt :if _fbc {switch _ega {case "\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074":_bdf .Supplement =int (_ddg ._gaff ); -};};};};if !_afa {_dc .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0050\u0061\u0072\u0073\u0065\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0020\u0069\u006ec\u006f\u0072\u0072\u0065\u0063\u0074\u006c\u0079"); -return ErrBadCMap ;};cmap ._ff =_bdf ;return nil ;};func LoadCmapFromData (data []byte ,isSimple bool )(*CMap ,error ){_dc .Log .Trace ("\u004c\u006fa\u0064\u0043\u006d\u0061\u0070\u0046\u0072\u006f\u006d\u0044\u0061\u0074\u0061\u003a\u0020\u0069\u0073\u0053\u0069\u006d\u0070\u006ce=\u0025\u0074",isSimple ); -cmap :=_gb (isSimple );cmap .cMapParser =_age (data );_ad :=cmap .parse ();if _ad !=nil {return nil ,_ad ;};if len (cmap ._cb )==0{if cmap ._cd !=""{return cmap ,nil ;};_dc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u002e\u0020\u0063\u006d\u0061p=\u0025\u0073",cmap ); -};cmap .computeInverseMappings ();return cmap ,nil ;};type cmapName struct{Name string ;};func (cmap *CMap )CIDSystemInfo ()CIDSystemInfo {return cmap ._ff };type CIDSystemInfo struct{Registry string ;Ordering string ;Supplement int ;};type cmapArray struct{Array []cmapObject ; -};func (cmap *CMap )CharcodeToUnicode (code CharCode )(string ,bool ){if _ace ,_gbbg :=cmap ._cdc [code ];_gbbg {return _ace ,true ;};return MissingCodeString ,false ;};func (_adfd *cMapParser )parseString ()(cmapString ,error ){_adfd ._afae .ReadByte (); -_eaf :=_bd .Buffer {};_cgcc :=1;for {_bbe ,_gca :=_adfd ._afae .Peek (1);if _gca !=nil {return cmapString {_eaf .String ()},_gca ;};if _bbe [0]=='\\'{_adfd ._afae .ReadByte ();_cfcdg ,_dbgc :=_adfd ._afae .ReadByte ();if _dbgc !=nil {return cmapString {_eaf .String ()},_dbgc ; -};if _ged .IsOctalDigit (_cfcdg ){_bcbf ,_bea :=_adfd ._afae .Peek (2);if _bea !=nil {return cmapString {_eaf .String ()},_bea ;};var _fdec []byte ;_fdec =append (_fdec ,_cfcdg );for _ ,_cfga :=range _bcbf {if _ged .IsOctalDigit (_cfga ){_fdec =append (_fdec ,_cfga ); -}else {break ;};};_adfd ._afae .Discard (len (_fdec )-1);_dc .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_fdec );_dcf ,_bea :=_a .ParseUint (string (_fdec ),8,32);if _bea !=nil {return cmapString {_eaf .String ()},_bea ; -};_eaf .WriteByte (byte (_dcf ));continue ;};switch _cfcdg {case 'n':_eaf .WriteByte ('\n');case 'r':_eaf .WriteByte ('\r');case 't':_eaf .WriteByte ('\t');case 'b':_eaf .WriteByte ('\b');case 'f':_eaf .WriteByte ('\f');case '(':_eaf .WriteByte ('(');case ')':_eaf .WriteByte (')'); -case '\\':_eaf .WriteByte ('\\');};continue ;}else if _bbe [0]=='('{_cgcc ++;}else if _bbe [0]==')'{_cgcc --;if _cgcc ==0{_adfd ._afae .ReadByte ();break ;};};_ffca ,_ :=_adfd ._afae .ReadByte ();_eaf .WriteByte (_ffca );};return cmapString {_eaf .String ()},nil ; -};func NewCIDSystemInfo (obj _ged .PdfObject )(_ag CIDSystemInfo ,_cg error ){_fb ,_bfe :=_ged .GetDict (obj );if !_bfe {return CIDSystemInfo {},_ged .ErrTypeError ;};_dg ,_bfe :=_ged .GetStringVal (_fb .Get ("\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079")); -if !_bfe {return CIDSystemInfo {},_ged .ErrTypeError ;};_ggc ,_bfe :=_ged .GetStringVal (_fb .Get ("\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067"));if !_bfe {return CIDSystemInfo {},_ged .ErrTypeError ;};_de ,_bfe :=_ged .GetIntVal (_fb .Get ("\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074")); -if !_bfe {return CIDSystemInfo {},_ged .ErrTypeError ;};return CIDSystemInfo {Registry :_dg ,Ordering :_ggc ,Supplement :_de },nil ;};func NewToUnicodeCMap (codeToRune map[CharCode ]rune )*CMap {_ac :=make (map[CharCode ]string ,len (codeToRune ));for _ece ,_bdae :=range codeToRune {_ac [_ece ]=string (_bdae ); -};cmap :=&CMap {_ec :"\u0041d\u006fb\u0065\u002d\u0049\u0064\u0065n\u0074\u0069t\u0079\u002d\u0055\u0043\u0053",_cf :2,_ga :16,_ff :CIDSystemInfo {Registry :"\u0041\u0064\u006fb\u0065",Ordering :"\u0055\u0043\u0053",Supplement :0},_cb :[]Codespace {{Low :0,High :0xffff}},_cdc :_ac ,_ecc :make (map[string ]CharCode ,len (codeToRune )),_fa :make (map[CharCode ]CharCode ,len (codeToRune )),_cc :make (map[CharCode ]CharCode ,len (codeToRune ))}; -cmap .computeInverseMappings ();return cmap ;};func (cmap *CMap )parseVersion ()error {_fbfc :="";_bccg :=false ;for _bfa :=0;_bfa < 3&&!_bccg ;_bfa ++{_bed ,_fcf :=cmap .parseObject ();if _fcf !=nil {return _fcf ;};switch _efe :=_bed .(type ){case cmapOperand :switch _efe .Operand {case "\u0064\u0065\u0066":_bccg =true ; -default:_dc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0070\u0061\u0072\u0073\u0065\u0056e\u0072\u0073\u0069\u006f\u006e\u003a \u0073\u0074\u0061\u0074\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020o\u003d\u0025\u0023\u0076",_bed ); -return ErrBadCMap ;};case cmapInt :_fbfc =_e .Sprintf ("\u0025\u0064",_efe ._gaff );case cmapFloat :_fbfc =_e .Sprintf ("\u0025\u0066",_efe ._beeb );case cmapString :_fbfc =_efe .String ;default:_dc .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020p\u0061\u0072\u0073\u0065Ver\u0073io\u006e\u003a\u0020\u0042\u0061\u0064\u0020ty\u0070\u0065\u002e\u0020\u006f\u003d\u0025#\u0076",_bed ); -};};cmap ._db =_fbfc ;return nil ;};func _adba (_bcec cmapHexString )CharCode {_bff :=CharCode (0);for _ ,_eab :=range _bcec ._cae {_bff <<=8;_bff |=CharCode (_eab );};return _bff ;};func (cmap *CMap )Name ()string {return cmap ._ec };const (_f =4;MissingCodeRune ='\ufffd'; -MissingCodeString =string (MissingCodeRune ););type cmapFloat struct{_beeb float64 };type cmapHexString struct{_gef int ;_cae []byte ;};func _abaf (_aaae ,_gcba int )int {if _aaae < _gcba {return _aaae ;};return _gcba ;};type integer struct{_ggd bool ; -_fed int ;};func (cmap *CMap )inCodespace (_bef CharCode ,_fc int )bool {for _ ,_dcc :=range cmap ._cb {if _dcc .Low <=_bef &&_bef <=_dcc .High &&_fc ==_dcc .NumBytes {return true ;};};return false ;};func (cmap *CMap )StringToCID (s string )(CharCode ,bool ){_fe ,_dcb :=cmap ._ecc [s ]; -return _fe ,_dcb };func (_fgc *cMapParser )parseNumber ()(cmapObject ,error ){_cbac ,_bbb :=_ged .ParseNumber (_fgc ._afae );if _bbb !=nil {return nil ,_bbb ;};switch _fbcg :=_cbac .(type ){case *_ged .PdfObjectFloat :return cmapFloat {float64 (*_fbcg )},nil ; -case *_ged .PdfObjectInteger :return cmapInt {int64 (*_fbcg )},nil ;};return nil ,_e .Errorf ("\u0075n\u0068\u0061\u006e\u0064\u006c\u0065\u0064\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0054",_cbac );};func (cmap *CMap )parseWMode ()error {var _edf int ; -_adff :=false ;for _dfd :=0;_dfd < 3&&!_adff ;_dfd ++{_geeb ,_gbc :=cmap .parseObject ();if _gbc !=nil {return _gbc ;};switch _gfe :=_geeb .(type ){case cmapOperand :switch _gfe .Operand {case "\u0064\u0065\u0066":_adff =true ;default:_dc .Log .Error ("\u0070\u0061\u0072\u0073\u0065\u0057\u004d\u006f\u0064\u0065:\u0020\u0073\u0074\u0061\u0074\u0065\u0020e\u0072\u0072\u006f\u0072\u002e\u0020\u006f\u003d\u0025\u0023\u0076",_geeb ); -return ErrBadCMap ;};case cmapInt :_edf =int (_gfe ._gaff );};};cmap ._dgd =integer {_ggd :true ,_fed :_edf };return nil ;};func (cmap *CMap )parseName ()error {_beef :="";_dcga :=false ;for _fgga :=0;_fgga < 20&&!_dcga ;_fgga ++{_gbef ,_dag :=cmap .parseObject (); -if _dag !=nil {return _dag ;};switch _gge :=_gbef .(type ){case cmapOperand :switch _gge .Operand {case "\u0064\u0065\u0066":_dcga =true ;default:_dc .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u004e\u0061\u006d\u0065\u003a\u0020\u0053\u0074\u0061\u0074\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020o\u003d\u0025\u0023\u0076\u0020n\u0061\u006de\u003d\u0025\u0023\u0071",_gbef ,_beef ); -if _beef !=""{_beef =_e .Sprintf ("\u0025\u0073\u0020%\u0073",_beef ,_gge .Operand );};_dc .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u004e\u0061\u006d\u0065\u003a \u0052\u0065\u0063\u006f\u0076\u0065\u0072e\u0064\u002e\u0020\u006e\u0061\u006d\u0065\u003d\u0025\u0023\u0071",_beef ); -};case cmapName :_beef =_gge .Name ;};};if !_dcga {_dc .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0070\u0061\u0072\u0073\u0065N\u0061m\u0065:\u0020\u004e\u006f\u0020\u0064\u0065\u0066 ");return ErrBadCMap ;};cmap ._ec =_beef ;return nil ;};type cmapOperand struct{Operand string ; -};type charRange struct{_ea CharCode ;_ef CharCode ;};func (cmap *CMap )CIDToCharcode (cid CharCode )(CharCode ,bool ){_ccf ,_eac :=cmap ._cc [cid ];return _ccf ,_eac ;};type cmapInt struct{_gaff int64 };func (cmap *CMap )NBits ()int {return cmap ._ga }; -func _age (_adbca []byte )*cMapParser {_aff :=cMapParser {};_cgcd :=_bd .NewBuffer (_adbca );_aff ._afae =_ba .NewReader (_cgcd );return &_aff ;};type Codespace struct{NumBytes int ;Low CharCode ;High CharCode ;};func (cmap *CMap )parseCodespaceRange ()error {for {_bgg ,_dedc :=cmap .parseObject (); -if _dedc !=nil {if _dedc ==_ge .EOF {break ;};return _dedc ;};_cdd ,_aec :=_bgg .(cmapHexString );if !_aec {if _baf ,_ebd :=_bgg .(cmapOperand );_ebd {if _baf .Operand ==_gbefd {return nil ;};return _d .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065d\u0020\u006fp\u0065\u0072\u0061\u006e\u0064"); -};};_bgg ,_dedc =cmap .parseObject ();if _dedc !=nil {if _dedc ==_ge .EOF {break ;};return _dedc ;};_fggf ,_aec :=_bgg .(cmapHexString );if !_aec {return _d .New ("\u006e\u006f\u006e-\u0068\u0065\u0078\u0020\u0068\u0069\u0067\u0068");};if len (_cdd ._cae )!=len (_fggf ._cae ){return _d .New ("\u0075\u006e\u0065\u0071\u0075\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0062\u0079\u0074\u0065\u0073\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065"); -};_bdg :=_adba (_cdd );_adfg :=_adba (_fggf );if _adfg < _bdg {_dc .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0042\u0061d\u0020\u0063\u006fd\u0065\u0073\u0070\u0061\u0063\u0065\u002e\u0020\u006cow\u003d\u0030\u0078%\u0030\u0032x\u0020\u0068\u0069\u0067\u0068\u003d0\u0078\u00250\u0032\u0078",_bdg ,_adfg ); -return ErrBadCMap ;};_dbc :=_fggf ._gef ;_dbg :=Codespace {NumBytes :_dbc ,Low :_bdg ,High :_adfg };cmap ._cb =append (cmap ._cb ,_dbg );_dc .Log .Trace ("\u0043\u006f\u0064e\u0073\u0070\u0061\u0063e\u0020\u006c\u006f\u0077\u003a\u0020\u0030x\u0025\u0058\u002c\u0020\u0068\u0069\u0067\u0068\u003a\u0020\u0030\u0078\u0025\u0058",_bdg ,_adfg ); -};if len (cmap ._cb )==0{_dc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u0020\u0069\u006e\u0020\u0063ma\u0070\u002e");return ErrBadCMap ;};return nil ;};func (_ggbb *cMapParser )parseComment ()(string ,error ){var _bdaf _bd .Buffer ; -_ ,_cad :=_ggbb .skipSpaces ();if _cad !=nil {return _bdaf .String (),_cad ;};_egbg :=true ;for {_bggd ,_adeb :=_ggbb ._afae .Peek (1);if _adeb !=nil {_dc .Log .Debug ("p\u0061r\u0073\u0065\u0043\u006f\u006d\u006d\u0065\u006et\u003a\u0020\u0065\u0072r=\u0025\u0076",_adeb ); -return _bdaf .String (),_adeb ;};if _egbg &&_bggd [0]!='%'{return _bdaf .String (),ErrBadCMapComment ;};_egbg =false ;if (_bggd [0]!='\r')&&(_bggd [0]!='\n'){_agdd ,_ :=_ggbb ._afae .ReadByte ();_bdaf .WriteByte (_agdd );}else {break ;};};return _bdaf .String (),nil ; -};func (cmap *CMap )CharcodeToCID (code CharCode )(CharCode ,bool ){_bcc ,_cfb :=cmap ._fa [code ];return _bcc ,_cfb ;};type cmapObject interface{};func _bdda (_adf string )string {_ced :=[]rune (_adf );_bfb :=make ([]string ,len (_ced ));for _fee ,_fcc :=range _ced {_bfb [_fee ]=_e .Sprintf ("\u0025\u0030\u0034\u0078",_fcc ); -};return _e .Sprintf ("\u003c\u0025\u0073\u003e",_ca .Join (_bfb ,""));};func (_dba *cMapParser )skipSpaces ()(int ,error ){_dbeg :=0;for {_dae ,_feg :=_dba ._afae .Peek (1);if _feg !=nil {return 0,_feg ;};if _ged .IsWhiteSpace (_dae [0]){_dba ._afae .ReadByte (); -_dbeg ++;}else {break ;};};return _dbeg ,nil ;};func (cmap *CMap )Bytes ()[]byte {_dc .Log .Trace ("\u0063\u006d\u0061\u0070.B\u0079\u0074\u0065\u0073\u003a\u0020\u0063\u006d\u0061\u0070\u003d\u0025\u0073",cmap .String ());if len (cmap ._cgf )> 0{return cmap ._cgf ; -};cmap ._cgf =[]byte (_ca .Join ([]string {_cgc ,cmap .toBfData (),_edc },"\u000a"));return cmap ._cgf ;};type fbRange struct{_ab CharCode ;_bda CharCode ;_bf string ;};func _gcb (_abda cmapHexString )[]rune {if len (_abda ._cae )==1{return []rune {rune (_abda ._cae [0])}; -};_dfb :=_abda ._cae ;if len (_dfb )%2!=0{_dfb =append (_dfb ,0);_dc .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0068\u0065\u0078\u0054\u006f\u0052\u0075\u006e\u0065\u0073\u002e\u0020\u0050\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0073\u0068\u0065\u0078\u003d\u0025#\u0076\u0020\u0074\u006f\u0020\u0025\u002b\u0076",_abda ,_dfb ); -};_ecfa :=len (_dfb )>>1;_gfc :=make ([]uint16 ,_ecfa );for _fbdd :=0;_fbdd < _ecfa ;_fbdd ++{_gfc [_fbdd ]=uint16 (_dfb [_fbdd <<1])<<8+uint16 (_dfb [_fbdd <<1+1]);};_ddgca :=_b .Decode (_gfc );return _ddgca ;}; \ No newline at end of file +package cmap ;import (_a "bufio";_ec "bytes";_df "encoding/hex";_be "errors";_g "fmt";_bc "github.com/unidoc/unipdf/v3/common";_ba "github.com/unidoc/unipdf/v3/core";_ga "github.com/unidoc/unipdf/v3/internal/cmap/bcmaps";_c "io";_ee "sort";_b "strconv"; +_ag "strings";_e "unicode/utf16";);func LoadCmapFromDataCID (data []byte )(*CMap ,error ){return LoadCmapFromData (data ,false )};func NewToUnicodeCMap (codeToRune map[CharCode ]rune )*CMap {_dg :=make (map[CharCode ]string ,len (codeToRune ));for _fae ,_geg :=range codeToRune {_dg [_fae ]=string (_geg ); +};cmap :=&CMap {_ded :"\u0041d\u006fb\u0065\u002d\u0049\u0064\u0065n\u0074\u0069t\u0079\u002d\u0055\u0043\u0053",_beb :2,_bf :16,_dd :CIDSystemInfo {Registry :"\u0041\u0064\u006fb\u0065",Ordering :"\u0055\u0043\u0053",Supplement :0},_dbb :[]Codespace {{Low :0,High :0xffff}},_cbg :_dg ,_gcf :make (map[string ]CharCode ,len (codeToRune )),_fa :make (map[CharCode ]CharCode ,len (codeToRune )),_bd :make (map[CharCode ]CharCode ,len (codeToRune ))}; +cmap .computeInverseMappings ();return cmap ;};const (_efa =100;_gfb ="\u000a\u002f\u0043\u0049\u0044\u0049\u006e\u0069\u0074\u0020\u002f\u0050\u0072\u006fc\u0053\u0065\u0074\u0020\u0066\u0069\u006e\u0064\u0072es\u006fu\u0072c\u0065 \u0062\u0065\u0067\u0069\u006e\u000a\u0031\u0032\u0020\u0064\u0069\u0063\u0074\u0020\u0062\u0065\u0067\u0069n\u000a\u0062\u0065\u0067\u0069\u006e\u0063\u006d\u0061\u0070\n\u002f\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065m\u0049\u006e\u0066\u006f\u0020\u003c\u003c\u0020\u002f\u0052\u0065\u0067\u0069\u0073t\u0072\u0079\u0020\u0028\u0041\u0064\u006f\u0062\u0065\u0029\u0020\u002f\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0028\u0055\u0043\u0053)\u0020\u002f\u0053\u0075\u0070p\u006c\u0065\u006d\u0065\u006et\u0020\u0030\u0020\u003e\u003e\u0020\u0064\u0065\u0066\u000a\u002f\u0043\u004d\u0061\u0070\u004e\u0061\u006d\u0065\u0020\u002f\u0041\u0064\u006f\u0062\u0065-\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0055\u0043\u0053\u0020\u0064\u0065\u0066\u000a\u002fC\u004d\u0061\u0070\u0054\u0079\u0070\u0065\u0020\u0032\u0020\u0064\u0065\u0066\u000a\u0031\u0020\u0062\u0065\u0067\u0069\u006e\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063e\u0072\u0061n\u0067\u0065\n\u003c\u0030\u0030\u0030\u0030\u003e\u0020<\u0046\u0046\u0046\u0046\u003e\u000a\u0065\u006e\u0064\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065r\u0061\u006e\u0067\u0065\u000a"; +_dag ="\u0065\u006e\u0064\u0063\u006d\u0061\u0070\u000a\u0043\u004d\u0061\u0070\u004e\u0061\u006d\u0065\u0020\u0063ur\u0072e\u006e\u0074\u0064\u0069\u0063\u0074\u0020\u002f\u0043\u004d\u0061\u0070 \u0064\u0065\u0066\u0069\u006e\u0065\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0070\u006fp\u000a\u0065\u006e\u0064\u000a\u0065\u006e\u0064\u000a"; +);type cmapInt struct{_dbae int64 };func (cmap *CMap )String ()string {_gf :=cmap ._dd ;_dc :=[]string {_g .Sprintf ("\u006e\u0062\u0069\u0074\u0073\u003a\u0025\u0064",cmap ._bf ),_g .Sprintf ("\u0074y\u0070\u0065\u003a\u0025\u0064",cmap ._beb )};if cmap ._gg !=""{_dc =append (_dc ,_g .Sprintf ("\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u003a\u0025\u0073",cmap ._gg )); +};if cmap ._db !=""{_dc =append (_dc ,_g .Sprintf ("u\u0073\u0065\u0063\u006d\u0061\u0070\u003a\u0025\u0023\u0071",cmap ._db ));};_dc =append (_dc ,_g .Sprintf ("\u0073\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f\u003a\u0025\u0073",_gf .String ())); +if len (cmap ._dbb )> 0{_dc =append (_dc ,_g .Sprintf ("\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u003a\u0025\u0064",len (cmap ._dbb )));};if len (cmap ._cbg )> 0{_dc =append (_dc ,_g .Sprintf ("\u0063\u006fd\u0065\u0054\u006fU\u006e\u0069\u0063\u006f\u0064\u0065\u003a\u0025\u0064",len (cmap ._cbg ))); +};return _g .Sprintf ("\u0043\u004d\u0041P\u007b\u0025\u0023\u0071\u0020\u0025\u0073\u007d",cmap ._ded ,_ag .Join (_dc ,"\u0020"));};func _gga (_dge string )(*CMap ,error ){_bed ,_da :=_ga .Asset (_dge );if _da !=nil {return nil ,_da ;};return LoadCmapFromDataCID (_bed ); +};func (cmap *CMap )WMode ()(int ,bool ){return cmap ._eb ._beee ,cmap ._eb ._efaa };type cMapParser struct{_cfg *_a .Reader };func _ebe (_efc string )string {_cg :=[]rune (_efc );_dcc :=make ([]string ,len (_cg ));for _abe ,_fbba :=range _cg {_dcc [_abe ]=_g .Sprintf ("\u0025\u0030\u0034\u0078",_fbba ); +};return _g .Sprintf ("\u003c\u0025\u0073\u003e",_ag .Join (_dcc ,""));};const (_bb =4;MissingCodeRune ='\ufffd';MissingCodeString =string (MissingCodeRune ););type CIDSystemInfo struct{Registry string ;Ordering string ;Supplement int ;};func (cmap *CMap )parseBfrange ()error {for {var _cfbd CharCode ; +_beag ,_bced :=cmap .parseObject ();if _bced !=nil {if _bced ==_c .EOF {break ;};return _bced ;};switch _cgc :=_beag .(type ){case cmapOperand :if _cgc .Operand ==_dgdd {return nil ;};return _be .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065d\u0020\u006fp\u0065\u0072\u0061\u006e\u0064"); +case cmapHexString :_cfbd =_ebba (_cgc );default:return _be .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0074\u0079\u0070\u0065");};var _dec CharCode ;_beag ,_bced =cmap .parseObject ();if _bced !=nil {if _bced ==_c .EOF {break ;};return _bced ; +};switch _ddg :=_beag .(type ){case cmapOperand :_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0049\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065\u0020\u0062\u0066r\u0061\u006e\u0067\u0065\u0020\u0074\u0072i\u0070\u006c\u0065\u0074"); +return ErrBadCMap ;case cmapHexString :_dec =_ebba (_ddg );if _dec > 0xffff{_dec =0xffff;};default:_bc .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0055\u006e\u0065\u0078\u0070e\u0063t\u0065d\u0020\u0074\u0079\u0070\u0065\u0020\u0025T",_beag );return ErrBadCMap ; +};_beag ,_bced =cmap .parseObject ();if _bced !=nil {if _bced ==_c .EOF {break ;};return _bced ;};switch _geef :=_beag .(type ){case cmapArray :if len (_geef .Array )!=int (_dec -_cfbd )+1{_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0069\u0074\u0065\u006d\u0073\u0020\u0069\u006e\u0020a\u0072\u0072\u0061\u0079"); +return ErrBadCMap ;};for _bcg :=_cfbd ;_bcg <=_dec ;_bcg ++{_baaa :=_geef .Array [_bcg -_cfbd ];_ebf ,_abed :=_baaa .(cmapHexString );if !_abed {return _be .New ("\u006e\u006f\u006e-h\u0065\u0078\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0069\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); +};_ggb :=_ggee (_ebf );cmap ._cbg [_bcg ]=string (_ggb );};case cmapHexString :_dba :=_ggee (_geef );_bbga :=len (_dba );for _bcf :=_cfbd ;_bcf <=_dec ;_bcf ++{cmap ._cbg [_bcf ]=string (_dba );if _bbga > 0{_dba [_bbga -1]++;}else {_bc .Log .Debug ("\u004e\u006f\u0020c\u006d\u0061\u0070\u0020\u0074\u0061\u0072\u0067\u0065\u0074\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0066\u006f\u0072\u0020\u0025\u0023\u0076",_bcf ); +};if _bcf ==1<<32-1{break ;};};default:_bc .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0055\u006e\u0065\u0078\u0070e\u0063t\u0065d\u0020\u0074\u0079\u0070\u0065\u0020\u0025T",_beag );return ErrBadCMap ;};};return nil ;};func (cmap *CMap )parseType ()error {_ggfb :=0; +_eag :=false ;for _cced :=0;_cced < 3&&!_eag ;_cced ++{_eab ,_fgg :=cmap .parseObject ();if _fgg !=nil {return _fgg ;};switch _adb :=_eab .(type ){case cmapOperand :switch _adb .Operand {case "\u0064\u0065\u0066":_eag =true ;default:_bc .Log .Error ("\u0070\u0061r\u0073\u0065\u0054\u0079\u0070\u0065\u003a\u0020\u0073\u0074\u0061\u0074\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020\u006f=%\u0023\u0076",_eab ); +return ErrBadCMap ;};case cmapInt :_ggfb =int (_adb ._dbae );};};cmap ._beb =_ggfb ;return nil ;};func _fea (_eefc string )rune {_eeda :=[]rune (_eefc );return _eeda [len (_eeda )-1]};func (cmap *CMap )parseVersion ()error {_aacb :="";_cdd :=false ;for _fdb :=0; +_fdb < 3&&!_cdd ;_fdb ++{_dcd ,_cgg :=cmap .parseObject ();if _cgg !=nil {return _cgg ;};switch _cbe :=_dcd .(type ){case cmapOperand :switch _cbe .Operand {case "\u0064\u0065\u0066":_cdd =true ;default:_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0070\u0061\u0072\u0073\u0065\u0056e\u0072\u0073\u0069\u006f\u006e\u003a \u0073\u0074\u0061\u0074\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020o\u003d\u0025\u0023\u0076",_dcd ); +return ErrBadCMap ;};case cmapInt :_aacb =_g .Sprintf ("\u0025\u0064",_cbe ._dbae );case cmapFloat :_aacb =_g .Sprintf ("\u0025\u0066",_cbe ._ege );case cmapString :_aacb =_cbe .String ;default:_bc .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020p\u0061\u0072\u0073\u0065Ver\u0073io\u006e\u003a\u0020\u0042\u0061\u0064\u0020ty\u0070\u0065\u002e\u0020\u006f\u003d\u0025#\u0076",_dcd ); +};};cmap ._gg =_aacb ;return nil ;};func (_gb *CIDSystemInfo )String ()string {return _g .Sprintf ("\u0025\u0073\u002d\u0025\u0073\u002d\u0025\u0030\u0033\u0064",_gb .Registry ,_gb .Ordering ,_gb .Supplement );};func (cmap *CMap )parseCIDRange ()error {for {_feef ,_eac :=cmap .parseObject (); +if _eac !=nil {if _eac ==_c .EOF {break ;};return _eac ;};_gbf ,_af :=_feef .(cmapHexString );if !_af {if _gfd ,_ggae :=_feef .(cmapOperand );_ggae {if _gfd .Operand ==_fbdf {return nil ;};return _be .New ("\u0063\u0069\u0064\u0020\u0069\u006e\u0074\u0065\u0072\u0076\u0061\u006c\u0020s\u0074\u0061\u0072\u0074\u0020\u006du\u0073\u0074\u0020\u0062\u0065\u0020\u0061\u0020\u0068\u0065\u0078\u0020\u0073t\u0072\u0069\u006e\u0067"); +};};_bbc :=_ebba (_gbf );_feef ,_eac =cmap .parseObject ();if _eac !=nil {if _eac ==_c .EOF {break ;};return _eac ;};_gac ,_af :=_feef .(cmapHexString );if !_af {return _be .New ("\u0063\u0069d\u0020\u0069\u006e\u0074e\u0072\u0076a\u006c\u0020\u0065\u006e\u0064\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0061\u0020\u0068\u0065\u0078\u0020\u0073t\u0072\u0069\u006e\u0067"); +};if len (_gbf ._adac )!=len (_gac ._adac ){return _be .New ("\u0075\u006e\u0065\u0071\u0075\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0062\u0079\u0074\u0065\u0073\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065");};_cddf :=_ebba (_gac ); +if _bbc > _cddf {_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0049\u0044\u0020\u0072\u0061\u006e\u0067\u0065\u002e\u0020\u0073t\u0061\u0072\u0074\u003d\u0030\u0078\u0025\u0030\u0032\u0078\u0020\u0065\u006e\u0064=\u0030x\u0025\u0030\u0032\u0078",_bbc ,_cddf ); +return ErrBadCMap ;};_feef ,_eac =cmap .parseObject ();if _eac !=nil {if _eac ==_c .EOF {break ;};return _eac ;};_adf ,_af :=_feef .(cmapInt );if !_af {return _be .New ("\u0063\u0069\u0064\u0020\u0073t\u0061\u0072\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0064\u0065\u0063\u0069\u006d\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072"); +};if _adf ._dbae < 0{return _be .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0063\u0069\u0064\u0020\u0073\u0074\u0061\u0072\u0074\u0020\u0076\u0061\u006c\u0075\u0065");};_gca :=_adf ._dbae ;for _fag :=_bbc ;_fag <=_cddf ;_fag ++{cmap ._fa [_fag ]=CharCode (_gca ); +_gca ++;};_bc .Log .Trace ("C\u0049\u0044\u0020\u0072\u0061\u006eg\u0065\u003a\u0020\u003c\u0030\u0078\u0025\u0058\u003e \u003c\u0030\u0078%\u0058>\u0020\u0025\u0064",_bbc ,_cddf ,_adf ._dbae );};return nil ;};func (_fbdc *cMapParser )parseHexString ()(cmapHexString ,error ){_fbdc ._cfg .ReadByte (); +_fec :=[]byte ("\u0030\u0031\u0032\u003345\u0036\u0037\u0038\u0039\u0061\u0062\u0063\u0064\u0065\u0066\u0041\u0042\u0043\u0044E\u0046");_gggd :=_ec .Buffer {};for {_fbdc .skipSpaces ();_eefb ,_abc :=_fbdc ._cfg .Peek (1);if _abc !=nil {return cmapHexString {},_abc ; +};if _eefb [0]=='>'{_fbdc ._cfg .ReadByte ();break ;};_dfcc ,_ :=_fbdc ._cfg .ReadByte ();if _ec .IndexByte (_fec ,_dfcc )>=0{_gggd .WriteByte (_dfcc );};};if _gggd .Len ()%2==1{_bc .Log .Debug ("\u0070\u0061rs\u0065\u0048\u0065x\u0053\u0074\u0072\u0069ng:\u0020ap\u0070\u0065\u006e\u0064\u0069\u006e\u0067 '\u0030\u0027\u0020\u0074\u006f\u0020\u0025#\u0071",_gggd .String ()); +_gggd .WriteByte ('0');};_fcad :=_gggd .Len ()/2;_adda ,_ :=_df .DecodeString (_gggd .String ());return cmapHexString {_gbce :_fcad ,_adac :_adda },nil ;};func (_bcb *cMapParser )parseDict ()(cmapDict ,error ){_bc .Log .Trace ("\u0052\u0065\u0061\u0064\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020D\u0069\u0063\u0074\u0021"); +_ffa :=_fggb ();_cffe ,_ :=_bcb ._cfg .ReadByte ();if _cffe !='<'{return _ffa ,ErrBadCMapDict ;};_cffe ,_ =_bcb ._cfg .ReadByte ();if _cffe !='<'{return _ffa ,ErrBadCMapDict ;};for {_bcb .skipSpaces ();_acg ,_caee :=_bcb ._cfg .Peek (2);if _caee !=nil {return _ffa ,_caee ; +};if (_acg [0]=='>')&&(_acg [1]=='>'){_bcb ._cfg .ReadByte ();_bcb ._cfg .ReadByte ();break ;};_eegf ,_caee :=_bcb .parseName ();_bc .Log .Trace ("\u004be\u0079\u003a\u0020\u0025\u0073",_eegf .Name );if _caee !=nil {_bc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0052\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u006e\u0061\u006d\u0065\u002e\u0020\u0065\u0072r=\u0025\u0076",_caee ); +return _ffa ,_caee ;};_bcb .skipSpaces ();_aggf ,_caee :=_bcb .parseObject ();if _caee !=nil {return _ffa ,_caee ;};_ffa .Dict [_eegf .Name ]=_aggf ;_bcb .skipSpaces ();_acg ,_caee =_bcb ._cfg .Peek (3);if _caee !=nil {return _ffa ,_caee ;};if string (_acg )=="\u0064\u0065\u0066"{_bcb ._cfg .Discard (3); +};};return _ffa ,nil ;};func (cmap *CMap )matchCode (_ebb []byte )(_cbgd CharCode ,_gbc int ,_dfcf bool ){for _aac :=0;_aac < _bb ;_aac ++{if _aac < len (_ebb ){_cbgd =_cbgd <<8|CharCode (_ebb [_aac ]);_gbc ++;};_dfcf =cmap .inCodespace (_cbgd ,_aac +1); +if _dfcf {return _cbgd ,_gbc ,true ;};};_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063o\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0020m\u0061t\u0063\u0068\u0065\u0073\u0020\u0062\u0079\u0074\u0065\u0073\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d=\u0025\u0023\u0071\u0020\u0063\u006d\u0061\u0070\u003d\u0025\u0073",_ebb ,string (_ebb ),cmap ); +return 0,0,false ;};func _ggee (_gcb cmapHexString )[]rune {if len (_gcb ._adac )==1{return []rune {rune (_gcb ._adac [0])};};_gdge :=_gcb ._adac ;if len (_gdge )%2!=0{_gdge =append (_gdge ,0);_bc .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0068\u0065\u0078\u0054\u006f\u0052\u0075\u006e\u0065\u0073\u002e\u0020\u0050\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0073\u0068\u0065\u0078\u003d\u0025#\u0076\u0020\u0074\u006f\u0020\u0025\u002b\u0076",_gcb ,_gdge ); +};_cdefc :=len (_gdge )>>1;_gcg :=make ([]uint16 ,_cdefc );for _ecd :=0;_ecd < _cdefc ;_ecd ++{_gcg [_ecd ]=uint16 (_gdge [_ecd <<1])<<8+uint16 (_gdge [_ecd <<1+1]);};_ccedc :=_e .Decode (_gcg );return _ccedc ;};func _fggb ()cmapDict {return cmapDict {Dict :map[string ]cmapObject {}}}; +const (_ecbe ="\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f";_cbc ="\u0062e\u0067\u0069\u006e\u0063\u006d\u0061p";_gbe ="\u0065n\u0064\u0063\u006d\u0061\u0070";_cff ="\u0062\u0065\u0067\u0069nc\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0072\u0061\u006e\u0067\u0065"; +_add ="\u0065\u006e\u0064\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065r\u0061\u006e\u0067\u0065";_egb ="b\u0065\u0067\u0069\u006e\u0062\u0066\u0063\u0068\u0061\u0072";_agg ="\u0065n\u0064\u0062\u0066\u0063\u0068\u0061r";_afe ="\u0062\u0065\u0067i\u006e\u0062\u0066\u0072\u0061\u006e\u0067\u0065"; +_dgdd ="\u0065\u006e\u0064\u0062\u0066\u0072\u0061\u006e\u0067\u0065";_acc ="\u0062\u0065\u0067\u0069\u006e\u0063\u0069\u0064\u0072\u0061\u006e\u0067\u0065";_fbdf ="e\u006e\u0064\u0063\u0069\u0064\u0072\u0061\u006e\u0067\u0065";_aaecb ="\u0075s\u0065\u0063\u006d\u0061\u0070"; +_acb ="\u0057\u004d\u006fd\u0065";_gfe ="\u0043\u004d\u0061\u0070\u004e\u0061\u006d\u0065";_aff ="\u0043\u004d\u0061\u0070\u0054\u0079\u0070\u0065";_ddgg ="C\u004d\u0061\u0070\u0056\u0065\u0072\u0073\u0069\u006f\u006e";);func (cmap *CMap )parse ()error {var _baag cmapObject ; +for {_fdc ,_cfc :=cmap .parseObject ();if _cfc !=nil {if _cfc ==_c .EOF {break ;};_bc .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0043\u004d\u0061\u0070\u003a\u0020\u0025\u0076",_cfc );return _cfc ;}; +switch _ggff :=_fdc .(type ){case cmapOperand :_aae :=_ggff ;switch _aae .Operand {case _cff :_dda :=cmap .parseCodespaceRange ();if _dda !=nil {return _dda ;};case _acc :_ecf :=cmap .parseCIDRange ();if _ecf !=nil {return _ecf ;};case _egb :_agd :=cmap .parseBfchar (); +if _agd !=nil {return _agd ;};case _afe :_gddd :=cmap .parseBfrange ();if _gddd !=nil {return _gddd ;};case _aaecb :if _baag ==nil {_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u0073\u0065\u0063m\u0061\u0070\u0020\u0077\u0069\u0074\u0068\u0020\u006e\u006f \u0061\u0072\u0067"); +return ErrBadCMap ;};_ddad ,_eda :=_baag .(cmapName );if !_eda {_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0075\u0073\u0065\u0063\u006d\u0061\u0070\u0020\u0061\u0072\u0067\u0020\u006eo\u0074\u0020\u0061\u0020\u006e\u0061\u006de\u0020\u0025\u0023\u0076",_baag ); +return ErrBadCMap ;};cmap ._db =_ddad .Name ;case _ecbe :_fee :=cmap .parseSystemInfo ();if _fee !=nil {return _fee ;};};case cmapName :_cad :=_ggff ;switch _cad .Name {case _ecbe :_aeb :=cmap .parseSystemInfo ();if _aeb !=nil {return _aeb ;};case _gfe :_ddb :=cmap .parseName (); +if _ddb !=nil {return _ddb ;};case _aff :_dbbe :=cmap .parseType ();if _dbbe !=nil {return _dbbe ;};case _ddgg :_egfc :=cmap .parseVersion ();if _egfc !=nil {return _egfc ;};case _acb :if _cfc =cmap .parseWMode ();_cfc !=nil {return _cfc ;};};};_baag =_fdc ; +};return nil ;};func (_agga *cMapParser )parseName ()(cmapName ,error ){_ffd :="";_agc :=false ;for {_gaa ,_bdd :=_agga ._cfg .Peek (1);if _bdd ==_c .EOF {break ;};if _bdd !=nil {return cmapName {_ffd },_bdd ;};if !_agc {if _gaa [0]=='/'{_agc =true ;_agga ._cfg .ReadByte (); +}else {_bc .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u004e\u0061\u006d\u0065\u0020\u0073\u0074a\u0072t\u0069n\u0067 \u0077\u0069\u0074\u0068\u0020\u0025\u0073\u0020\u0028\u0025\u0020\u0078\u0029",_gaa ,_gaa );return cmapName {_ffd },_g .Errorf ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u006ea\u006d\u0065:\u0020\u0028\u0025\u0063\u0029",_gaa [0]); +};}else {if _ba .IsWhiteSpace (_gaa [0]){break ;}else if (_gaa [0]=='/')||(_gaa [0]=='[')||(_gaa [0]=='(')||(_gaa [0]==']')||(_gaa [0]=='<')||(_gaa [0]=='>'){break ;}else if _gaa [0]=='#'{_afa ,_fbc :=_agga ._cfg .Peek (3);if _fbc !=nil {return cmapName {_ffd },_fbc ; +};_agga ._cfg .Discard (3);_dga ,_fbc :=_df .DecodeString (string (_afa [1:3]));if _fbc !=nil {return cmapName {_ffd },_fbc ;};_ffd +=string (_dga );}else {_efce ,_ :=_agga ._cfg .ReadByte ();_ffd +=string (_efce );};};};return cmapName {_ffd },nil ;}; +type fbRange struct{_ca CharCode ;_de CharCode ;_ge string ;};func (_fefg *cMapParser )parseString ()(cmapString ,error ){_fefg ._cfg .ReadByte ();_bbf :=_ec .Buffer {};_cdfc :=1;for {_eaef ,_ddbgf :=_fefg ._cfg .Peek (1);if _ddbgf !=nil {return cmapString {_bbf .String ()},_ddbgf ; +};if _eaef [0]=='\\'{_fefg ._cfg .ReadByte ();_bbd ,_eedf :=_fefg ._cfg .ReadByte ();if _eedf !=nil {return cmapString {_bbf .String ()},_eedf ;};if _ba .IsOctalDigit (_bbd ){_dbgg ,_bca :=_fefg ._cfg .Peek (2);if _bca !=nil {return cmapString {_bbf .String ()},_bca ; +};var _fgd []byte ;_fgd =append (_fgd ,_bbd );for _ ,_gfc :=range _dbgg {if _ba .IsOctalDigit (_gfc ){_fgd =append (_fgd ,_gfc );}else {break ;};};_fefg ._cfg .Discard (len (_fgd )-1);_bc .Log .Trace ("\u004e\u0075\u006d\u0065ri\u0063\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0022\u0025\u0073\u0022",_fgd ); +_cea ,_bca :=_b .ParseUint (string (_fgd ),8,32);if _bca !=nil {return cmapString {_bbf .String ()},_bca ;};_bbf .WriteByte (byte (_cea ));continue ;};switch _bbd {case 'n':_bbf .WriteByte ('\n');case 'r':_bbf .WriteByte ('\r');case 't':_bbf .WriteByte ('\t'); +case 'b':_bbf .WriteByte ('\b');case 'f':_bbf .WriteByte ('\f');case '(':_bbf .WriteByte ('(');case ')':_bbf .WriteByte (')');case '\\':_bbf .WriteByte ('\\');};continue ;}else if _eaef [0]=='('{_cdfc ++;}else if _eaef [0]==')'{_cdfc --;if _cdfc ==0{_fefg ._cfg .ReadByte (); +break ;};};_gge ,_ :=_fefg ._cfg .ReadByte ();_bbf .WriteByte (_gge );};return cmapString {_bbf .String ()},nil ;};func (cmap *CMap )NBits ()int {return cmap ._bf };var (ErrBadCMap =_be .New ("\u0062\u0061\u0064\u0020\u0063\u006d\u0061\u0070");ErrBadCMapComment =_be .New ("c\u006f\u006d\u006d\u0065\u006e\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0073\u0074a\u0072\u0074\u0020w\u0069t\u0068\u0020\u0025"); +ErrBadCMapDict =_be .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0069\u0063\u0074"););func (cmap *CMap )CharcodeToUnicode (code CharCode )(string ,bool ){if _ecb ,_bfgb :=cmap ._cbg [code ];_bfgb {return _ecb ,true ;};return MissingCodeString ,false ; +};func (_bgd *cMapParser )parseOperand ()(cmapOperand ,error ){_ebcc :=cmapOperand {};_dada :=_ec .Buffer {};for {_ada ,_ccea :=_bgd ._cfg .Peek (1);if _ccea !=nil {if _ccea ==_c .EOF {break ;};return _ebcc ,_ccea ;};if _ba .IsDelimiter (_ada [0]){break ; +};if _ba .IsWhiteSpace (_ada [0]){break ;};_gae ,_ :=_bgd ._cfg .ReadByte ();_dada .WriteByte (_gae );};if _dada .Len ()==0{return _ebcc ,_g .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u0020\u0028\u0065\u006d\u0070\u0074\u0079\u0029"); +};_ebcc .Operand =_dada .String ();return _ebcc ,nil ;};func _bec (_deda bool )*CMap {_dgf :=16;if _deda {_dgf =8;};return &CMap {_bf :_dgf ,_fa :make (map[CharCode ]CharCode ),_bd :make (map[CharCode ]CharCode ),_cbg :make (map[CharCode ]string ),_gcf :make (map[string ]CharCode )}; +};type cmapDict struct{Dict map[string ]cmapObject ;};func (_beab *cMapParser )parseObject ()(cmapObject ,error ){_beab .skipSpaces ();for {_age ,_gcd :=_beab ._cfg .Peek (2);if _gcd !=nil {return nil ,_gcd ;};if _age [0]=='%'{_beab .parseComment ();_beab .skipSpaces (); +continue ;}else if _age [0]=='/'{_badc ,_ggc :=_beab .parseName ();return _badc ,_ggc ;}else if _age [0]=='('{_dad ,_gddf :=_beab .parseString ();return _dad ,_gddf ;}else if _age [0]=='['{_bagd ,_fce :=_beab .parseArray ();return _bagd ,_fce ;}else if (_age [0]=='<')&&(_age [1]=='<'){_gdc ,_cdef :=_beab .parseDict (); +return _gdc ,_cdef ;}else if _age [0]=='<'{_aga ,_fceb :=_beab .parseHexString ();return _aga ,_fceb ;}else if _ba .IsDecimalDigit (_age [0])||(_age [0]=='-'&&_ba .IsDecimalDigit (_age [1])){_dbba ,_gegf :=_beab .parseNumber ();if _gegf !=nil {return nil ,_gegf ; +};return _dbba ,nil ;}else {_edeg ,_feae :=_beab .parseOperand ();if _feae !=nil {return nil ,_feae ;};return _edeg ,nil ;};};};type cmapFloat struct{_ege float64 };func (cmap *CMap )CIDSystemInfo ()CIDSystemInfo {return cmap ._dd };func (cmap *CMap )Stream ()(*_ba .PdfObjectStream ,error ){if cmap ._fg !=nil {return cmap ._fg ,nil ; +};_dac ,_dff :=_ba .MakeStream (cmap .Bytes (),_ba .NewFlateEncoder ());if _dff !=nil {return nil ,_dff ;};cmap ._fg =_dac ;return cmap ._fg ,nil ;};type Codespace struct{NumBytes int ;Low CharCode ;High CharCode ;};type charRange struct{_f CharCode ;_ef CharCode ; +};func _feg (_fbf []byte )*cMapParser {_ggffa :=cMapParser {};_ffb :=_ec .NewBuffer (_fbf );_ggffa ._cfg =_a .NewReader (_ffb );return &_ggffa ;};func (cmap *CMap )parseCodespaceRange ()error {for {_eae ,_bgg :=cmap .parseObject ();if _bgg !=nil {if _bgg ==_c .EOF {break ; +};return _bgg ;};_cef ,_ccb :=_eae .(cmapHexString );if !_ccb {if _bgc ,_egfd :=_eae .(cmapOperand );_egfd {if _bgc .Operand ==_add {return nil ;};return _be .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065d\u0020\u006fp\u0065\u0072\u0061\u006e\u0064"); +};};_eae ,_bgg =cmap .parseObject ();if _bgg !=nil {if _bgg ==_c .EOF {break ;};return _bgg ;};_dea ,_ccb :=_eae .(cmapHexString );if !_ccb {return _be .New ("\u006e\u006f\u006e-\u0068\u0065\u0078\u0020\u0068\u0069\u0067\u0068");};if len (_cef ._adac )!=len (_dea ._adac ){return _be .New ("\u0075\u006e\u0065\u0071\u0075\u0061\u006c\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0062\u0079\u0074\u0065\u0073\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065"); +};_acf :=_ebba (_cef );_fbd :=_ebba (_dea );if _fbd < _acf {_bc .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0042\u0061d\u0020\u0063\u006fd\u0065\u0073\u0070\u0061\u0063\u0065\u002e\u0020\u006cow\u003d\u0030\u0078%\u0030\u0032x\u0020\u0068\u0069\u0067\u0068\u003d0\u0078\u00250\u0032\u0078",_acf ,_fbd ); +return ErrBadCMap ;};_eaa :=_dea ._gbce ;_geb :=Codespace {NumBytes :_eaa ,Low :_acf ,High :_fbd };cmap ._dbb =append (cmap ._dbb ,_geb );_bc .Log .Trace ("\u0043\u006f\u0064e\u0073\u0070\u0061\u0063e\u0020\u006c\u006f\u0077\u003a\u0020\u0030x\u0025\u0058\u002c\u0020\u0068\u0069\u0067\u0068\u003a\u0020\u0030\u0078\u0025\u0058",_acf ,_fbd ); +};if len (cmap ._dbb )==0{_bc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u0020\u0069\u006e\u0020\u0063ma\u0070\u002e");return ErrBadCMap ;};return nil ;};func (cmap *CMap )parseSystemInfo ()error {_bab :=false ; +_aaec :=false ;_abea :="";_deg :=false ;_cgb :=CIDSystemInfo {};for _fca :=0;_fca < 50&&!_deg ;_fca ++{_cde ,_edb :=cmap .parseObject ();if _edb !=nil {return _edb ;};switch _ade :=_cde .(type ){case cmapDict :_bag :=_ade .Dict ;_fef ,_facc :=_bag ["\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079"]; +if !_facc {_bc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_ede ,_facc :=_fef .(cmapString );if !_facc {_bc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f"); +return ErrBadCMap ;};_cgb .Registry =_ede .String ;_fef ,_facc =_bag ["\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067"];if !_facc {_bc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f"); +return ErrBadCMap ;};_ede ,_facc =_fef .(cmapString );if !_facc {_bc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_cgb .Ordering =_ede .String ; +_dcde ,_facc :=_bag ["\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074"];if !_facc {_bc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ; +};_babg ,_facc :=_dcde .(cmapInt );if !_facc {_bc .Log .Debug ("\u0045\u0052\u0052\u004fR:\u0020\u0042\u0061\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006ef\u006f");return ErrBadCMap ;};_cgb .Supplement =int (_babg ._dbae );_deg =true ; +case cmapOperand :switch _ade .Operand {case "\u0062\u0065\u0067i\u006e":_bab =true ;case "\u0065\u006e\u0064":_deg =true ;case "\u0064\u0065\u0066":_aaec =false ;};case cmapName :if _bab {_abea =_ade .Name ;_aaec =true ;};case cmapString :if _aaec {switch _abea {case "\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079":_cgb .Registry =_ade .String ; +case "\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067":_cgb .Ordering =_ade .String ;};};case cmapInt :if _aaec {switch _abea {case "\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074":_cgb .Supplement =int (_ade ._dbae );};};};};if !_deg {_bc .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0050\u0061\u0072\u0073\u0065\u0064\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u0020\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0020\u0069\u006ec\u006f\u0072\u0072\u0065\u0063\u0074\u006c\u0079"); +return ErrBadCMap ;};cmap ._dd =_cgb ;return nil ;};func (_dbe *cMapParser )parseNumber ()(cmapObject ,error ){_fbg ,_cda :=_ba .ParseNumber (_dbe ._cfg );if _cda !=nil {return nil ,_cda ;};switch _eaba :=_fbg .(type ){case *_ba .PdfObjectFloat :return cmapFloat {float64 (*_eaba )},nil ; +case *_ba .PdfObjectInteger :return cmapInt {int64 (*_eaba )},nil ;};return nil ,_g .Errorf ("\u0075n\u0068\u0061\u006e\u0064\u006c\u0065\u0064\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0054",_fbg );};func (cmap *CMap )CharcodeBytesToUnicode (data []byte )(string ,int ){_cce ,_fgf :=cmap .BytesToCharcodes (data ); +if !_fgf {_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0042\u0079\u0074\u0065s\u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u002e\u0020\u004e\u006f\u0074\u0020\u0069n\u0020\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u002e\u0020\u0064\u0061\u0074\u0061\u003d\u005b\u0025\u0020\u0030\u0032\u0078]\u0020\u0063\u006d\u0061\u0070=\u0025\u0073",data ,cmap ); +return "",0;};_ega :=make ([]string ,len (_cce ));var _cd []CharCode ;for _gde ,_bg :=range _cce {_gbgc ,_cdf :=cmap ._cbg [_bg ];if !_cdf {_cd =append (_cd ,_bg );_gbgc =MissingCodeString ;};_ega [_gde ]=_gbgc ;};_baf :=_ag .Join (_ega ,"");if len (_cd )> 0{_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020C\u0068\u0061\u0072c\u006f\u0064\u0065\u0042y\u0074\u0065\u0073\u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u002e\u0020\u004e\u006f\u0074\u0020\u0069\u006e\u0020\u006d\u0061\u0070\u002e\u000a"+"\u0009d\u0061t\u0061\u003d\u005b\u0025\u00200\u0032\u0078]\u003d\u0025\u0023\u0071\u000a"+"\u0009\u0063h\u0061\u0072\u0063o\u0064\u0065\u0073\u003d\u0025\u0030\u0032\u0078\u000a"+"\u0009\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u003d\u0025\u0064\u0020%\u0030\u0032\u0078\u000a"+"\u0009\u0075\u006e\u0069\u0063\u006f\u0064\u0065\u003d`\u0025\u0073\u0060\u000a"+"\u0009\u0063\u006d\u0061\u0070\u003d\u0025\u0073",data ,string (data ),_cce ,len (_cd ),_cd ,_baf ,cmap ); +};return _baf ,len (_cd );};func (cmap *CMap )parseBfchar ()error {for {_eacb ,_gfbg :=cmap .parseObject ();if _gfbg !=nil {if _gfbg ==_c .EOF {break ;};return _gfbg ;};var _ddbb CharCode ;switch _dca :=_eacb .(type ){case cmapOperand :if _dca .Operand ==_agg {return nil ; +};return _be .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065d\u0020\u006fp\u0065\u0072\u0061\u006e\u0064");case cmapHexString :_ddbb =_ebba (_dca );default:return _be .New ("\u0075n\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0074\u0079\u0070\u0065"); +};_eacb ,_gfbg =cmap .parseObject ();if _gfbg !=nil {if _gfbg ==_c .EOF {break ;};return _gfbg ;};var _cbd []rune ;switch _eabc :=_eacb .(type ){case cmapOperand :if _eabc .Operand ==_agg {return nil ;};_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020o\u0070\u0065\u0072\u0061\u006e\u0064\u002e\u0020\u0025\u0023\u0076",_eabc ); +return ErrBadCMap ;case cmapHexString :_cbd =_ggee (_eabc );case cmapName :_bc .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u006e\u0061\u006de\u002e \u0025\u0023\u0076",_eabc );_cbd =[]rune {MissingCodeRune }; +default:_bc .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020U\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u0074\u0079\u0070e\u002e \u0025\u0023\u0076",_eacb );return ErrBadCMap ;};cmap ._cbg [_ddbb ]=string (_cbd );};return nil ;};type CharCode uint32 ; +func _ecca (_bdgf cmapHexString )rune {_edaf :=_ggee (_bdgf );if _gace :=len (_edaf );_gace ==0{_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0068\u0065\u0078\u0054o\u0052\u0075\u006e\u0065\u002e\u0020\u0045\u0078p\u0065c\u0074\u0065\u0064\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u006f\u006e\u0065\u0020\u0072u\u006e\u0065\u0020\u0073\u0068\u0065\u0078\u003d\u0025\u0023\u0076",_bdgf ); +return MissingCodeRune ;};if len (_edaf )> 1{_bc .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0068\u0065\u0078\u0054\u006f\u0052\u0075\u006e\u0065\u002e\u0020\u0045\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0065\u0078\u0061\u0063\u0074\u006c\u0079\u0020\u006f\u006e\u0065\u0020\u0072\u0075\u006e\u0065\u0020\u0073\u0068\u0065\u0078\u003d\u0025\u0023v\u0020\u002d\u003e\u0020\u0025#\u0076",_bdgf ,_edaf ); +};return _edaf [0];};func _caea (_bedc ,_ccbg int )int {if _bedc < _ccbg {return _bedc ;};return _ccbg ;};type cmapObject interface{};type CMap struct{*cMapParser ;_ded string ;_bf int ;_beb int ;_gg string ;_db string ;_dd CIDSystemInfo ;_dbb []Codespace ; +_fa map[CharCode ]CharCode ;_bd map[CharCode ]CharCode ;_cbg map[CharCode ]string ;_gcf map[string ]CharCode ;_gd []byte ;_fg *_ba .PdfObjectStream ;_eb integer ;};type cmapArray struct{Array []cmapObject ;};func (cmap *CMap )parseWMode ()error {var _bae int ; +_bbg :=false ;for _dce :=0;_dce < 3&&!_bbg ;_dce ++{_edcc ,_ddbg :=cmap .parseObject ();if _ddbg !=nil {return _ddbg ;};switch _fac :=_edcc .(type ){case cmapOperand :switch _fac .Operand {case "\u0064\u0065\u0066":_bbg =true ;default:_bc .Log .Error ("\u0070\u0061\u0072\u0073\u0065\u0057\u004d\u006f\u0064\u0065:\u0020\u0073\u0074\u0061\u0074\u0065\u0020e\u0072\u0072\u006f\u0072\u002e\u0020\u006f\u003d\u0025\u0023\u0076",_edcc ); +return ErrBadCMap ;};case cmapInt :_bae =int (_fac ._dbae );};};cmap ._eb =integer {_efaa :true ,_beee :_bae };return nil ;};type cmapName struct{Name string ;};type cmapOperand struct{Operand string ;};func (cmap *CMap )toBfData ()string {if len (cmap ._cbg )==0{return ""; +};_edc :=make ([]CharCode ,0,len (cmap ._cbg ));for _ea :=range cmap ._cbg {_edc =append (_edc ,_ea );};_ee .Slice (_edc ,func (_cfa ,_bee int )bool {return _edc [_cfa ]< _edc [_bee ]});var _abd []charRange ;_bcc :=charRange {_edc [0],_edc [0]};_ebc :=cmap ._cbg [_edc [0]]; +for _ ,_ceeg :=range _edc [1:]{_cbbb :=cmap ._cbg [_ceeg ];if _ceeg ==_bcc ._ef +1&&_fea (_cbbb )==_fea (_ebc )+1{_bcc ._ef =_ceeg ;}else {_abd =append (_abd ,_bcc );_bcc ._f ,_bcc ._ef =_ceeg ,_ceeg ;};_ebc =_cbbb ;};_abd =append (_abd ,_bcc );var _bdaa []CharCode ; +var _cdb []fbRange ;for _ ,_dgd :=range _abd {if _dgd ._f ==_dgd ._ef {_bdaa =append (_bdaa ,_dgd ._f );}else {_cdb =append (_cdb ,fbRange {_ca :_dgd ._f ,_de :_dgd ._ef ,_ge :cmap ._cbg [_dgd ._f ]});};};_bc .Log .Trace ("\u0063\u0068ar\u0052\u0061\u006eg\u0065\u0073\u003d\u0025d f\u0062Ch\u0061\u0072\u0073\u003d\u0025\u0064\u0020fb\u0052\u0061\u006e\u0067\u0065\u0073\u003d%\u0064",len (_abd ),len (_bdaa ),len (_cdb )); +var _eeb []string ;if len (_bdaa )> 0{_ggg :=(len (_bdaa )+_efa -1)/_efa ;for _ecc :=0;_ecc < _ggg ;_ecc ++{_abdb :=_caea (len (_bdaa )-_ecc *_efa ,_efa );_eeb =append (_eeb ,_g .Sprintf ("\u0025\u0064\u0020\u0062\u0065\u0067\u0069\u006e\u0062f\u0063\u0068\u0061\u0072",_abdb )); +for _gab :=0;_gab < _abdb ;_gab ++{_fdf :=_bdaa [_ecc *_efa +_gab ];_caa :=cmap ._cbg [_fdf ];_eeb =append (_eeb ,_g .Sprintf ("\u003c%\u0030\u0034\u0078\u003e\u0020\u0025s",_fdf ,_ebe (_caa )));};_eeb =append (_eeb ,"\u0065n\u0064\u0062\u0066\u0063\u0068\u0061r"); +};};if len (_cdb )> 0{_fgfd :=(len (_cdb )+_efa -1)/_efa ;for _gbd :=0;_gbd < _fgfd ;_gbd ++{_bcdc :=_caea (len (_cdb )-_gbd *_efa ,_efa );_eeb =append (_eeb ,_g .Sprintf ("\u0025d\u0020b\u0065\u0067\u0069\u006e\u0062\u0066\u0072\u0061\u006e\u0067\u0065",_bcdc )); +for _cab :=0;_cab < _bcdc ;_cab ++{_aaa :=_cdb [_gbd *_efa +_cab ];_eeb =append (_eeb ,_g .Sprintf ("\u003c%\u00304\u0078\u003e\u003c\u0025\u0030\u0034\u0078\u003e\u0020\u0025\u0073",_aaa ._ca ,_aaa ._de ,_ebe (_aaa ._ge )));};_eeb =append (_eeb ,"\u0065\u006e\u0064\u0062\u0066\u0072\u0061\u006e\u0067\u0065"); +};};return _ag .Join (_eeb ,"\u000a");};func LoadPredefinedCMap (name string )(*CMap ,error ){cmap ,_bda :=_gga (name );if _bda !=nil {return nil ,_bda ;};if cmap ._db ==""{cmap .computeInverseMappings ();return cmap ,nil ;};_bfg ,_bda :=_gga (cmap ._db ); +if _bda !=nil {return nil ,_bda ;};for _cbb ,_ceb :=range _bfg ._fa {if _ ,_eec :=cmap ._fa [_cbb ];!_eec {cmap ._fa [_cbb ]=_ceb ;};};cmap ._dbb =append (cmap ._dbb ,_bfg ._dbb ...);cmap .computeInverseMappings ();return cmap ,nil ;};func LoadCmapFromData (data []byte ,isSimple bool )(*CMap ,error ){_bc .Log .Trace ("\u004c\u006fa\u0064\u0043\u006d\u0061\u0070\u0046\u0072\u006f\u006d\u0044\u0061\u0074\u0061\u003a\u0020\u0069\u0073\u0053\u0069\u006d\u0070\u006ce=\u0025\u0074",isSimple ); +cmap :=_bec (isSimple );cmap .cMapParser =_feg (data );_agf :=cmap .parse ();if _agf !=nil {return nil ,_agf ;};if len (cmap ._dbb )==0{if cmap ._db !=""{return cmap ,nil ;};_bc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063\u006f\u0064\u0065\u0073\u0070\u0061\u0063\u0065\u0073\u002e\u0020\u0063\u006d\u0061p=\u0025\u0073",cmap ); +};cmap .computeInverseMappings ();return cmap ,nil ;};func (_fege *cMapParser )skipSpaces ()(int ,error ){_acfg :=0;for {_gfg ,_bcedb :=_fege ._cfg .Peek (1);if _bcedb !=nil {return 0,_bcedb ;};if _ba .IsWhiteSpace (_gfg [0]){_fege ._cfg .ReadByte ();_acfg ++; +}else {break ;};};return _acfg ,nil ;};func (cmap *CMap )Name ()string {return cmap ._ded };func (_dcg *cMapParser )parseComment ()(string ,error ){var _cabe _ec .Buffer ;_ ,_ccdb :=_dcg .skipSpaces ();if _ccdb !=nil {return _cabe .String (),_ccdb ;};_gacc :=true ; +for {_cgfe ,_addb :=_dcg ._cfg .Peek (1);if _addb !=nil {_bc .Log .Debug ("p\u0061r\u0073\u0065\u0043\u006f\u006d\u006d\u0065\u006et\u003a\u0020\u0065\u0072r=\u0025\u0076",_addb );return _cabe .String (),_addb ;};if _gacc &&_cgfe [0]!='%'{return _cabe .String (),ErrBadCMapComment ; +};_gacc =false ;if (_cgfe [0]!='\r')&&(_cgfe [0]!='\n'){_fdcb ,_ :=_dcg ._cfg .ReadByte ();_cabe .WriteByte (_fdcb );}else {break ;};};return _cabe .String (),nil ;};type cmapHexString struct{_gbce int ;_adac []byte ;};func (cmap *CMap )BytesToCharcodes (data []byte )([]CharCode ,bool ){var _dgc []CharCode ; +if cmap ._bf ==8{for _ ,_eeg :=range data {_dgc =append (_dgc ,CharCode (_eeg ));};return _dgc ,true ;};for _bdc :=0;_bdc < len (data );{_dab ,_bfe ,_ggf :=cmap .matchCode (data [_bdc :]);if !_ggf {_bc .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0063\u006f\u0064\u0065\u0020\u006d\u0061\u0074\u0063\u0068\u0020\u0061\u0074\u0020\u0069\u003d\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0073\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d\u003d\u0025\u0023\u0071",_bdc ,data ,string (data )); +return _dgc ,false ;};_dgc =append (_dgc ,_dab );_bdc +=_bfe ;};return _dgc ,true ;};func (cmap *CMap )inCodespace (_dfa CharCode ,_bad int )bool {for _ ,_ed :=range cmap ._dbb {if _ed .Low <=_dfa &&_dfa <=_ed .High &&_bad ==_ed .NumBytes {return true ; +};};return false ;};func (cmap *CMap )computeInverseMappings (){for _eca ,_fe :=range cmap ._fa {if _cc ,_eg :=cmap ._bd [_fe ];!_eg ||(_eg &&_cc > _eca ){cmap ._bd [_fe ]=_eca ;};};for _gbg ,_fcb :=range cmap ._cbg {if _gda ,_gdd :=cmap ._gcf [_fcb ]; +!_gdd ||(_gdd &&_gda > _gbg ){cmap ._gcf [_fcb ]=_gbg ;};};_ee .Slice (cmap ._dbb ,func (_bea ,_ab int )bool {return cmap ._dbb [_bea ].Low < cmap ._dbb [_ab ].Low });};func (cmap *CMap )StringToCID (s string )(CharCode ,bool ){_dbg ,_baa :=cmap ._gcf [s ]; +return _dbg ,_baa ;};type integer struct{_efaa bool ;_beee int ;};type cmapString struct{String string ;};func IsPredefinedCMap (name string )bool {return _ga .AssetExists (name )};func (cmap *CMap )CIDToCharcode (cid CharCode )(CharCode ,bool ){_gec ,_aa :=cmap ._bd [cid ]; +return _gec ,_aa ;};func (cmap *CMap )Type ()int {return cmap ._beb };func (cmap *CMap )parseName ()error {_cae :="";_dgb :=false ;for _ccee :=0;_ccee < 20&&!_dgb ;_ccee ++{_fge ,_ad :=cmap .parseObject ();if _ad !=nil {return _ad ;};switch _fcg :=_fge .(type ){case cmapOperand :switch _fcg .Operand {case "\u0064\u0065\u0066":_dgb =true ; +default:_bc .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u004e\u0061\u006d\u0065\u003a\u0020\u0053\u0074\u0061\u0074\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020o\u003d\u0025\u0023\u0076\u0020n\u0061\u006de\u003d\u0025\u0023\u0071",_fge ,_cae ); +if _cae !=""{_cae =_g .Sprintf ("\u0025\u0073\u0020%\u0073",_cae ,_fcg .Operand );};_bc .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u004e\u0061\u006d\u0065\u003a \u0052\u0065\u0063\u006f\u0076\u0065\u0072e\u0064\u002e\u0020\u006e\u0061\u006d\u0065\u003d\u0025\u0023\u0071",_cae ); +};case cmapName :_cae =_fcg .Name ;};};if !_dgb {_bc .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0070\u0061\u0072\u0073\u0065N\u0061m\u0065:\u0020\u004e\u006f\u0020\u0064\u0065\u0066 ");return ErrBadCMap ;};cmap ._ded =_cae ;return nil ;};func (cmap *CMap )CharcodeToCID (code CharCode )(CharCode ,bool ){_bebg ,_fcf :=cmap ._fa [code ]; +return _bebg ,_fcf ;};func (_edbd *cMapParser )parseArray ()(cmapArray ,error ){_gfcd :=cmapArray {};_gfcd .Array =[]cmapObject {};_edbd ._cfg .ReadByte ();for {_edbd .skipSpaces ();_feed ,_dfcd :=_edbd ._cfg .Peek (1);if _dfcd !=nil {return _gfcd ,_dfcd ; +};if _feed [0]==']'{_edbd ._cfg .ReadByte ();break ;};_gdg ,_dfcd :=_edbd .parseObject ();if _dfcd !=nil {return _gfcd ,_dfcd ;};_gfcd .Array =append (_gfcd .Array ,_gdg );};return _gfcd ,nil ;};func NewCIDSystemInfo (obj _ba .PdfObject )(_cb CIDSystemInfo ,_ce error ){_ac ,_gc :=_ba .GetDict (obj ); +if !_gc {return CIDSystemInfo {},_ba .ErrTypeError ;};_ff ,_gc :=_ba .GetStringVal (_ac .Get ("\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079"));if !_gc {return CIDSystemInfo {},_ba .ErrTypeError ;};_fb ,_gc :=_ba .GetStringVal (_ac .Get ("\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067")); +if !_gc {return CIDSystemInfo {},_ba .ErrTypeError ;};_cee ,_gc :=_ba .GetIntVal (_ac .Get ("\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074"));if !_gc {return CIDSystemInfo {},_ba .ErrTypeError ;};return CIDSystemInfo {Registry :_ff ,Ordering :_fb ,Supplement :_cee },nil ; +};func _ebba (_ced cmapHexString )CharCode {_cceb :=CharCode (0);for _ ,_cefa :=range _ced ._adac {_cceb <<=8;_cceb |=CharCode (_cefa );};return _cceb ;};func (cmap *CMap )Bytes ()[]byte {_bc .Log .Trace ("\u0063\u006d\u0061\u0070.B\u0079\u0074\u0065\u0073\u003a\u0020\u0063\u006d\u0061\u0070\u003d\u0025\u0073",cmap .String ()); +if len (cmap ._gd )> 0{return cmap ._gd ;};cmap ._gd =[]byte (_ag .Join ([]string {_gfb ,cmap .toBfData (),_dag },"\u000a"));return cmap ._gd ;}; \ No newline at end of file diff --git a/internal/endian/endian.go b/internal/endian/endian.go index 03af2a876..2160722e9 100644 --- a/internal/endian/endian.go +++ b/internal/endian/endian.go @@ -9,5 +9,5 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package endian ;import (_c "encoding/binary";_b "unsafe";);func IsBig ()bool {return _bc };func init (){const _f =int (_b .Sizeof (0));_fc :=1;_bca :=(*[_f ]byte )(_b .Pointer (&_fc ));if _bca [0]==0{_bc =true ;ByteOrder =_c .BigEndian ;}else {ByteOrder =_c .LittleEndian ; -};};var (ByteOrder _c .ByteOrder ;_bc bool ;);func IsLittle ()bool {return !_bc }; \ No newline at end of file +package endian ;import (_g "encoding/binary";_e "unsafe";);var (ByteOrder _g .ByteOrder ;_gf bool ;);func init (){const _b =int (_e .Sizeof (0));_ea :=1;_fc :=(*[_b ]byte )(_e .Pointer (&_ea ));if _fc [0]==0{_gf =true ;ByteOrder =_g .BigEndian ;}else {ByteOrder =_g .LittleEndian ; +};};func IsBig ()bool {return _gf };func IsLittle ()bool {return !_gf }; \ No newline at end of file diff --git a/internal/graphic2d/graphic2d.go b/internal/graphic2d/graphic2d.go index cda66a2ae..b0a4ddf73 100644 --- a/internal/graphic2d/graphic2d.go +++ b/internal/graphic2d/graphic2d.go @@ -9,40 +9,40 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package graphic2d ;import (_a "image/color";_ad "math";);func _gfd (_bec ,_bga ,_fc ,_fa ,_ff float64 ,_eeb ,_fd bool ,_fcg ,_bcb float64 )(float64 ,float64 ,float64 ,float64 ){if _gdaf (_bec ,_fcg )&&_gdaf (_bga ,_bcb ){return _bec ,_bga ,0.0,0.0;};_fce ,_aae :=_ad .Sincos (_ff ); -_ag :=_aae *(_bec -_fcg )/2.0+_fce *(_bga -_bcb )/2.0;_gb :=-_fce *(_bec -_fcg )/2.0+_aae *(_bga -_bcb )/2.0;_abe :=_ag *_ag /_fc /_fc +_gb *_gb /_fa /_fa ;if _abe > 1.0{_fc *=_ad .Sqrt (_abe );_fa *=_ad .Sqrt (_abe );};_becd :=(_fc *_fc *_fa *_fa -_fc *_fc *_gb *_gb -_fa *_fa *_ag *_ag )/(_fc *_fc *_gb *_gb +_fa *_fa *_ag *_ag ); -if _becd < 0.0{_becd =0.0;};_gda :=_ad .Sqrt (_becd );if _eeb ==_fd {_gda =-_gda ;};_fcf :=_gda *_fc *_gb /_fa ;_ga :=_gda *-_fa *_ag /_fc ;_ge :=_aae *_fcf -_fce *_ga +(_bec +_fcg )/2.0;_gaa :=_fce *_fcf +_aae *_ga +(_bga +_bcb )/2.0;_bgd :=(_ag -_fcf )/_fc ; -_ef :=(_gb -_ga )/_fa ;_afb :=-(_ag +_fcf )/_fc ;_bgdd :=-(_gb +_ga )/_fa ;_fad :=_ad .Acos (_bgd /_ad .Sqrt (_bgd *_bgd +_ef *_ef ));if _ef < 0.0{_fad =-_fad ;};_fad =_eea (_fad );_cf :=(_bgd *_afb +_ef *_bgdd )/_ad .Sqrt ((_bgd *_bgd +_ef *_ef )*(_afb *_afb +_bgdd *_bgdd )); -_cf =_ad .Min (1.0,_ad .Max (-1.0,_cf ));_ae :=_ad .Acos (_cf );if _bgd *_bgdd -_ef *_afb < 0.0{_ae =-_ae ;};if !_fd &&_ae > 0.0{_ae -=2.0*_ad .Pi ;}else if _fd &&_ae < 0.0{_ae +=2.0*_ad .Pi ;};return _ge ,_gaa ,_fad ,_fad +_ae ;};func EllipseToCubicBeziers (startX ,startY ,rx ,ry ,rot float64 ,large ,sweep bool ,endX ,endY float64 )[][4]Point {rx =_ad .Abs (rx ); -ry =_ad .Abs (ry );if rx < ry {rx ,ry =ry ,rx ;rot +=90.0;};_d :=_eea (rot *_ad .Pi /180.0);if _ad .Pi <=_d {_d -=_ad .Pi ;};_adg ,_aa ,_g ,_dd :=_gfd (startX ,startY ,rx ,ry ,_d ,large ,sweep ,endX ,endY );_bc :=_ad .Pi /2.0;_e :=int (_ad .Ceil (_ad .Abs (_dd -_g )/_bc )); -_bc =_ad .Abs (_dd -_g )/float64 (_e );_dc :=_ad .Sin (_bc )*(_ad .Sqrt (4.0+3.0*_ad .Pow (_ad .Tan (_bc /2.0),2.0))-1.0)/3.0;if !sweep {_bc =-_bc ;};_gf :=Point {X :startX ,Y :startY };_bg ,_ab :=_cd (rx ,ry ,_d ,sweep ,_g );_dg :=Point {X :_bg ,Y :_ab }; -_ec :=[][4]Point {};for _df :=1;_df < _e +1;_df ++{_c :=_g +float64 (_df )*_bc ;_af ,_ba :=_bb (rx ,ry ,_d ,_adg ,_aa ,_c );_cg :=Point {X :_af ,Y :_ba };_ecb ,_dfe :=_cd (rx ,ry ,_d ,sweep ,_c );_baa :=Point {X :_ecb ,Y :_dfe };_gg :=_gf .Add (_dg .Mul (_dc )); -_ee :=_cg .Sub (_baa .Mul (_dc ));_ec =append (_ec ,[4]Point {_gf ,_gg ,_ee ,_cg });_dg =_baa ;_gf =_cg ;};return _ec ;};func (_gdg Point )Sub (q Point )Point {return Point {_gdg .X -q .X ,_gdg .Y -q .Y }};func _cd (_geg ,_ffa ,_eb float64 ,_cb bool ,_cdc float64 )(float64 ,float64 ){_cff ,_bbe :=_ad .Sincos (_cdc ); -_db ,_agd :=_ad .Sincos (_eb );_cc :=-_geg *_cff *_agd -_ffa *_bbe *_db ;_caa :=-_geg *_cff *_db +_ffa *_bbe *_agd ;if !_cb {return -_cc ,-_caa ;};return _cc ,_caa ;};var (Aliceblue =_a .RGBA {0xf0,0xf8,0xff,0xff};Antiquewhite =_a .RGBA {0xfa,0xeb,0xd7,0xff}; -Aqua =_a .RGBA {0x00,0xff,0xff,0xff};Aquamarine =_a .RGBA {0x7f,0xff,0xd4,0xff};Azure =_a .RGBA {0xf0,0xff,0xff,0xff};Beige =_a .RGBA {0xf5,0xf5,0xdc,0xff};Bisque =_a .RGBA {0xff,0xe4,0xc4,0xff};Black =_a .RGBA {0x00,0x00,0x00,0xff};Blanchedalmond =_a .RGBA {0xff,0xeb,0xcd,0xff}; -Blue =_a .RGBA {0x00,0x00,0xff,0xff};Blueviolet =_a .RGBA {0x8a,0x2b,0xe2,0xff};Brown =_a .RGBA {0xa5,0x2a,0x2a,0xff};Burlywood =_a .RGBA {0xde,0xb8,0x87,0xff};Cadetblue =_a .RGBA {0x5f,0x9e,0xa0,0xff};Chartreuse =_a .RGBA {0x7f,0xff,0x00,0xff};Chocolate =_a .RGBA {0xd2,0x69,0x1e,0xff}; -Coral =_a .RGBA {0xff,0x7f,0x50,0xff};Cornflowerblue =_a .RGBA {0x64,0x95,0xed,0xff};Cornsilk =_a .RGBA {0xff,0xf8,0xdc,0xff};Crimson =_a .RGBA {0xdc,0x14,0x3c,0xff};Cyan =_a .RGBA {0x00,0xff,0xff,0xff};Darkblue =_a .RGBA {0x00,0x00,0x8b,0xff};Darkcyan =_a .RGBA {0x00,0x8b,0x8b,0xff}; -Darkgoldenrod =_a .RGBA {0xb8,0x86,0x0b,0xff};Darkgray =_a .RGBA {0xa9,0xa9,0xa9,0xff};Darkgreen =_a .RGBA {0x00,0x64,0x00,0xff};Darkgrey =_a .RGBA {0xa9,0xa9,0xa9,0xff};Darkkhaki =_a .RGBA {0xbd,0xb7,0x6b,0xff};Darkmagenta =_a .RGBA {0x8b,0x00,0x8b,0xff}; -Darkolivegreen =_a .RGBA {0x55,0x6b,0x2f,0xff};Darkorange =_a .RGBA {0xff,0x8c,0x00,0xff};Darkorchid =_a .RGBA {0x99,0x32,0xcc,0xff};Darkred =_a .RGBA {0x8b,0x00,0x00,0xff};Darksalmon =_a .RGBA {0xe9,0x96,0x7a,0xff};Darkseagreen =_a .RGBA {0x8f,0xbc,0x8f,0xff}; -Darkslateblue =_a .RGBA {0x48,0x3d,0x8b,0xff};Darkslategray =_a .RGBA {0x2f,0x4f,0x4f,0xff};Darkslategrey =_a .RGBA {0x2f,0x4f,0x4f,0xff};Darkturquoise =_a .RGBA {0x00,0xce,0xd1,0xff};Darkviolet =_a .RGBA {0x94,0x00,0xd3,0xff};Deeppink =_a .RGBA {0xff,0x14,0x93,0xff}; -Deepskyblue =_a .RGBA {0x00,0xbf,0xff,0xff};Dimgray =_a .RGBA {0x69,0x69,0x69,0xff};Dimgrey =_a .RGBA {0x69,0x69,0x69,0xff};Dodgerblue =_a .RGBA {0x1e,0x90,0xff,0xff};Firebrick =_a .RGBA {0xb2,0x22,0x22,0xff};Floralwhite =_a .RGBA {0xff,0xfa,0xf0,0xff}; -Forestgreen =_a .RGBA {0x22,0x8b,0x22,0xff};Fuchsia =_a .RGBA {0xff,0x00,0xff,0xff};Gainsboro =_a .RGBA {0xdc,0xdc,0xdc,0xff};Ghostwhite =_a .RGBA {0xf8,0xf8,0xff,0xff};Gold =_a .RGBA {0xff,0xd7,0x00,0xff};Goldenrod =_a .RGBA {0xda,0xa5,0x20,0xff};Gray =_a .RGBA {0x80,0x80,0x80,0xff}; -Green =_a .RGBA {0x00,0x80,0x00,0xff};Greenyellow =_a .RGBA {0xad,0xff,0x2f,0xff};Grey =_a .RGBA {0x80,0x80,0x80,0xff};Honeydew =_a .RGBA {0xf0,0xff,0xf0,0xff};Hotpink =_a .RGBA {0xff,0x69,0xb4,0xff};Indianred =_a .RGBA {0xcd,0x5c,0x5c,0xff};Indigo =_a .RGBA {0x4b,0x00,0x82,0xff}; -Ivory =_a .RGBA {0xff,0xff,0xf0,0xff};Khaki =_a .RGBA {0xf0,0xe6,0x8c,0xff};Lavender =_a .RGBA {0xe6,0xe6,0xfa,0xff};Lavenderblush =_a .RGBA {0xff,0xf0,0xf5,0xff};Lawngreen =_a .RGBA {0x7c,0xfc,0x00,0xff};Lemonchiffon =_a .RGBA {0xff,0xfa,0xcd,0xff};Lightblue =_a .RGBA {0xad,0xd8,0xe6,0xff}; -Lightcoral =_a .RGBA {0xf0,0x80,0x80,0xff};Lightcyan =_a .RGBA {0xe0,0xff,0xff,0xff};Lightgoldenrodyellow =_a .RGBA {0xfa,0xfa,0xd2,0xff};Lightgray =_a .RGBA {0xd3,0xd3,0xd3,0xff};Lightgreen =_a .RGBA {0x90,0xee,0x90,0xff};Lightgrey =_a .RGBA {0xd3,0xd3,0xd3,0xff}; -Lightpink =_a .RGBA {0xff,0xb6,0xc1,0xff};Lightsalmon =_a .RGBA {0xff,0xa0,0x7a,0xff};Lightseagreen =_a .RGBA {0x20,0xb2,0xaa,0xff};Lightskyblue =_a .RGBA {0x87,0xce,0xfa,0xff};Lightslategray =_a .RGBA {0x77,0x88,0x99,0xff};Lightslategrey =_a .RGBA {0x77,0x88,0x99,0xff}; -Lightsteelblue =_a .RGBA {0xb0,0xc4,0xde,0xff};Lightyellow =_a .RGBA {0xff,0xff,0xe0,0xff};Lime =_a .RGBA {0x00,0xff,0x00,0xff};Limegreen =_a .RGBA {0x32,0xcd,0x32,0xff};Linen =_a .RGBA {0xfa,0xf0,0xe6,0xff};Magenta =_a .RGBA {0xff,0x00,0xff,0xff};Maroon =_a .RGBA {0x80,0x00,0x00,0xff}; -Mediumaquamarine =_a .RGBA {0x66,0xcd,0xaa,0xff};Mediumblue =_a .RGBA {0x00,0x00,0xcd,0xff};Mediumorchid =_a .RGBA {0xba,0x55,0xd3,0xff};Mediumpurple =_a .RGBA {0x93,0x70,0xdb,0xff};Mediumseagreen =_a .RGBA {0x3c,0xb3,0x71,0xff};Mediumslateblue =_a .RGBA {0x7b,0x68,0xee,0xff}; -Mediumspringgreen =_a .RGBA {0x00,0xfa,0x9a,0xff};Mediumturquoise =_a .RGBA {0x48,0xd1,0xcc,0xff};Mediumvioletred =_a .RGBA {0xc7,0x15,0x85,0xff};Midnightblue =_a .RGBA {0x19,0x19,0x70,0xff};Mintcream =_a .RGBA {0xf5,0xff,0xfa,0xff};Mistyrose =_a .RGBA {0xff,0xe4,0xe1,0xff}; -Moccasin =_a .RGBA {0xff,0xe4,0xb5,0xff};Navajowhite =_a .RGBA {0xff,0xde,0xad,0xff};Navy =_a .RGBA {0x00,0x00,0x80,0xff};Oldlace =_a .RGBA {0xfd,0xf5,0xe6,0xff};Olive =_a .RGBA {0x80,0x80,0x00,0xff};Olivedrab =_a .RGBA {0x6b,0x8e,0x23,0xff};Orange =_a .RGBA {0xff,0xa5,0x00,0xff}; -Orangered =_a .RGBA {0xff,0x45,0x00,0xff};Orchid =_a .RGBA {0xda,0x70,0xd6,0xff};Palegoldenrod =_a .RGBA {0xee,0xe8,0xaa,0xff};Palegreen =_a .RGBA {0x98,0xfb,0x98,0xff};Paleturquoise =_a .RGBA {0xaf,0xee,0xee,0xff};Palevioletred =_a .RGBA {0xdb,0x70,0x93,0xff}; -Papayawhip =_a .RGBA {0xff,0xef,0xd5,0xff};Peachpuff =_a .RGBA {0xff,0xda,0xb9,0xff};Peru =_a .RGBA {0xcd,0x85,0x3f,0xff};Pink =_a .RGBA {0xff,0xc0,0xcb,0xff};Plum =_a .RGBA {0xdd,0xa0,0xdd,0xff};Powderblue =_a .RGBA {0xb0,0xe0,0xe6,0xff};Purple =_a .RGBA {0x80,0x00,0x80,0xff}; -Red =_a .RGBA {0xff,0x00,0x00,0xff};Rosybrown =_a .RGBA {0xbc,0x8f,0x8f,0xff};Royalblue =_a .RGBA {0x41,0x69,0xe1,0xff};Saddlebrown =_a .RGBA {0x8b,0x45,0x13,0xff};Salmon =_a .RGBA {0xfa,0x80,0x72,0xff};Sandybrown =_a .RGBA {0xf4,0xa4,0x60,0xff};Seagreen =_a .RGBA {0x2e,0x8b,0x57,0xff}; -Seashell =_a .RGBA {0xff,0xf5,0xee,0xff};Sienna =_a .RGBA {0xa0,0x52,0x2d,0xff};Silver =_a .RGBA {0xc0,0xc0,0xc0,0xff};Skyblue =_a .RGBA {0x87,0xce,0xeb,0xff};Slateblue =_a .RGBA {0x6a,0x5a,0xcd,0xff};Slategray =_a .RGBA {0x70,0x80,0x90,0xff};Slategrey =_a .RGBA {0x70,0x80,0x90,0xff}; -Snow =_a .RGBA {0xff,0xfa,0xfa,0xff};Springgreen =_a .RGBA {0x00,0xff,0x7f,0xff};Steelblue =_a .RGBA {0x46,0x82,0xb4,0xff};Tan =_a .RGBA {0xd2,0xb4,0x8c,0xff};Teal =_a .RGBA {0x00,0x80,0x80,0xff};Thistle =_a .RGBA {0xd8,0xbf,0xd8,0xff};Tomato =_a .RGBA {0xff,0x63,0x47,0xff}; -Turquoise =_a .RGBA {0x40,0xe0,0xd0,0xff};Violet =_a .RGBA {0xee,0x82,0xee,0xff};Wheat =_a .RGBA {0xf5,0xde,0xb3,0xff};White =_a .RGBA {0xff,0xff,0xff,0xff};Whitesmoke =_a .RGBA {0xf5,0xf5,0xf5,0xff};Yellow =_a .RGBA {0xff,0xff,0x00,0xff};Yellowgreen =_a .RGBA {0x9a,0xcd,0x32,0xff}; -);func _bb (_eee ,_bab ,_gd ,_de ,_be ,_ed float64 )(float64 ,float64 ){_dfb ,_gfg :=_ad .Sincos (_ed );_f ,_dfeb :=_ad .Sincos (_gd );_fb :=_de +_eee *_gfg *_dfeb -_bab *_dfb *_f ;_ca :=_be +_eee *_gfg *_f +_bab *_dfb *_dfeb ;return _fb ,_ca ;};var ColorMap =map[string ]_a .RGBA {"\u0061l\u0069\u0063\u0065\u0062\u006c\u0075e":_a .RGBA {0xf0,0xf8,0xff,0xff},"\u0061\u006e\u0074i\u0071\u0075\u0065\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xfa,0xeb,0xd7,0xff},"\u0061\u0071\u0075\u0061":_a .RGBA {0x00,0xff,0xff,0xff},"\u0061\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065":_a .RGBA {0x7f,0xff,0xd4,0xff},"\u0061\u007a\u0075r\u0065":_a .RGBA {0xf0,0xff,0xff,0xff},"\u0062\u0065\u0069g\u0065":_a .RGBA {0xf5,0xf5,0xdc,0xff},"\u0062\u0069\u0073\u0071\u0075\u0065":_a .RGBA {0xff,0xe4,0xc4,0xff},"\u0062\u006c\u0061c\u006b":_a .RGBA {0x00,0x00,0x00,0xff},"\u0062\u006c\u0061\u006e\u0063\u0068\u0065\u0064\u0061l\u006d\u006f\u006e\u0064":_a .RGBA {0xff,0xeb,0xcd,0xff},"\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0x00,0xff,0xff},"\u0062\u006c\u0075\u0065\u0076\u0069\u006f\u006c\u0065\u0074":_a .RGBA {0x8a,0x2b,0xe2,0xff},"\u0062\u0072\u006fw\u006e":_a .RGBA {0xa5,0x2a,0x2a,0xff},"\u0062u\u0072\u006c\u0079\u0077\u006f\u006fd":_a .RGBA {0xde,0xb8,0x87,0xff},"\u0063a\u0064\u0065\u0074\u0062\u006c\u0075e":_a .RGBA {0x5f,0x9e,0xa0,0xff},"\u0063\u0068\u0061\u0072\u0074\u0072\u0065\u0075\u0073\u0065":_a .RGBA {0x7f,0xff,0x00,0xff},"\u0063h\u006f\u0063\u006f\u006c\u0061\u0074e":_a .RGBA {0xd2,0x69,0x1e,0xff},"\u0063\u006f\u0072a\u006c":_a .RGBA {0xff,0x7f,0x50,0xff},"\u0063\u006f\u0072\u006e\u0066\u006c\u006f\u0077\u0065r\u0062\u006c\u0075\u0065":_a .RGBA {0x64,0x95,0xed,0xff},"\u0063\u006f\u0072\u006e\u0073\u0069\u006c\u006b":_a .RGBA {0xff,0xf8,0xdc,0xff},"\u0063r\u0069\u006d\u0073\u006f\u006e":_a .RGBA {0xdc,0x14,0x3c,0xff},"\u0063\u0079\u0061\u006e":_a .RGBA {0x00,0xff,0xff,0xff},"\u0064\u0061\u0072\u006b\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0x00,0x8b,0xff},"\u0064\u0061\u0072\u006b\u0063\u0079\u0061\u006e":_a .RGBA {0x00,0x8b,0x8b,0xff},"\u0064\u0061\u0072\u006b\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064":_a .RGBA {0xb8,0x86,0x0b,0xff},"\u0064\u0061\u0072\u006b\u0067\u0072\u0061\u0079":_a .RGBA {0xa9,0xa9,0xa9,0xff},"\u0064a\u0072\u006b\u0067\u0072\u0065\u0065n":_a .RGBA {0x00,0x64,0x00,0xff},"\u0064\u0061\u0072\u006b\u0067\u0072\u0065\u0079":_a .RGBA {0xa9,0xa9,0xa9,0xff},"\u0064a\u0072\u006b\u006b\u0068\u0061\u006bi":_a .RGBA {0xbd,0xb7,0x6b,0xff},"d\u0061\u0072\u006b\u006d\u0061\u0067\u0065\u006e\u0074\u0061":_a .RGBA {0x8b,0x00,0x8b,0xff},"\u0064\u0061\u0072\u006b\u006f\u006c\u0069\u0076\u0065g\u0072\u0065\u0065\u006e":_a .RGBA {0x55,0x6b,0x2f,0xff},"\u0064\u0061\u0072\u006b\u006f\u0072\u0061\u006e\u0067\u0065":_a .RGBA {0xff,0x8c,0x00,0xff},"\u0064\u0061\u0072\u006b\u006f\u0072\u0063\u0068\u0069\u0064":_a .RGBA {0x99,0x32,0xcc,0xff},"\u0064a\u0072\u006b\u0072\u0065\u0064":_a .RGBA {0x8b,0x00,0x00,0xff},"\u0064\u0061\u0072\u006b\u0073\u0061\u006c\u006d\u006f\u006e":_a .RGBA {0xe9,0x96,0x7a,0xff},"\u0064\u0061\u0072k\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x8f,0xbc,0x8f,0xff},"\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065":_a .RGBA {0x48,0x3d,0x8b,0xff},"\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0061\u0079":_a .RGBA {0x2f,0x4f,0x4f,0xff},"\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0065\u0079":_a .RGBA {0x2f,0x4f,0x4f,0xff},"\u0064\u0061\u0072\u006b\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065":_a .RGBA {0x00,0xce,0xd1,0xff},"\u0064\u0061\u0072\u006b\u0076\u0069\u006f\u006c\u0065\u0074":_a .RGBA {0x94,0x00,0xd3,0xff},"\u0064\u0065\u0065\u0070\u0070\u0069\u006e\u006b":_a .RGBA {0xff,0x14,0x93,0xff},"d\u0065\u0065\u0070\u0073\u006b\u0079\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0xbf,0xff,0xff},"\u0064i\u006d\u0067\u0072\u0061\u0079":_a .RGBA {0x69,0x69,0x69,0xff},"\u0064i\u006d\u0067\u0072\u0065\u0079":_a .RGBA {0x69,0x69,0x69,0xff},"\u0064\u006f\u0064\u0067\u0065\u0072\u0062\u006c\u0075\u0065":_a .RGBA {0x1e,0x90,0xff,0xff},"\u0066i\u0072\u0065\u0062\u0072\u0069\u0063k":_a .RGBA {0xb2,0x22,0x22,0xff},"f\u006c\u006f\u0072\u0061\u006c\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xff,0xfa,0xf0,0xff},"f\u006f\u0072\u0065\u0073\u0074\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x22,0x8b,0x22,0xff},"\u0066u\u0063\u0068\u0073\u0069\u0061":_a .RGBA {0xff,0x00,0xff,0xff},"\u0067a\u0069\u006e\u0073\u0062\u006f\u0072o":_a .RGBA {0xdc,0xdc,0xdc,0xff},"\u0067\u0068\u006f\u0073\u0074\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xf8,0xf8,0xff,0xff},"\u0067\u006f\u006c\u0064":_a .RGBA {0xff,0xd7,0x00,0xff},"\u0067o\u006c\u0064\u0065\u006e\u0072\u006fd":_a .RGBA {0xda,0xa5,0x20,0xff},"\u0067\u0072\u0061\u0079":_a .RGBA {0x80,0x80,0x80,0xff},"\u0067\u0072\u0065e\u006e":_a .RGBA {0x00,0x80,0x00,0xff},"g\u0072\u0065\u0065\u006e\u0079\u0065\u006c\u006c\u006f\u0077":_a .RGBA {0xad,0xff,0x2f,0xff},"\u0067\u0072\u0065\u0079":_a .RGBA {0x80,0x80,0x80,0xff},"\u0068\u006f\u006e\u0065\u0079\u0064\u0065\u0077":_a .RGBA {0xf0,0xff,0xf0,0xff},"\u0068o\u0074\u0070\u0069\u006e\u006b":_a .RGBA {0xff,0x69,0xb4,0xff},"\u0069n\u0064\u0069\u0061\u006e\u0072\u0065d":_a .RGBA {0xcd,0x5c,0x5c,0xff},"\u0069\u006e\u0064\u0069\u0067\u006f":_a .RGBA {0x4b,0x00,0x82,0xff},"\u0069\u0076\u006fr\u0079":_a .RGBA {0xff,0xff,0xf0,0xff},"\u006b\u0068\u0061k\u0069":_a .RGBA {0xf0,0xe6,0x8c,0xff},"\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072":_a .RGBA {0xe6,0xe6,0xfa,0xff},"\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072\u0062\u006c\u0075\u0073\u0068":_a .RGBA {0xff,0xf0,0xf5,0xff},"\u006ca\u0077\u006e\u0067\u0072\u0065\u0065n":_a .RGBA {0x7c,0xfc,0x00,0xff},"\u006c\u0065\u006do\u006e\u0063\u0068\u0069\u0066\u0066\u006f\u006e":_a .RGBA {0xff,0xfa,0xcd,0xff},"\u006ci\u0067\u0068\u0074\u0062\u006c\u0075e":_a .RGBA {0xad,0xd8,0xe6,0xff},"\u006c\u0069\u0067\u0068\u0074\u0063\u006f\u0072\u0061\u006c":_a .RGBA {0xf0,0x80,0x80,0xff},"\u006ci\u0067\u0068\u0074\u0063\u0079\u0061n":_a .RGBA {0xe0,0xff,0xff,0xff},"l\u0069g\u0068\u0074\u0067\u006f\u006c\u0064\u0065\u006er\u006f\u0064\u0079\u0065ll\u006f\u0077":_a .RGBA {0xfa,0xfa,0xd2,0xff},"\u006ci\u0067\u0068\u0074\u0067\u0072\u0061y":_a .RGBA {0xd3,0xd3,0xd3,0xff},"\u006c\u0069\u0067\u0068\u0074\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x90,0xee,0x90,0xff},"\u006ci\u0067\u0068\u0074\u0067\u0072\u0065y":_a .RGBA {0xd3,0xd3,0xd3,0xff},"\u006ci\u0067\u0068\u0074\u0070\u0069\u006ek":_a .RGBA {0xff,0xb6,0xc1,0xff},"l\u0069\u0067\u0068\u0074\u0073\u0061\u006c\u006d\u006f\u006e":_a .RGBA {0xff,0xa0,0x7a,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x20,0xb2,0xaa,0xff},"\u006c\u0069\u0067h\u0074\u0073\u006b\u0079\u0062\u006c\u0075\u0065":_a .RGBA {0x87,0xce,0xfa,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0061\u0079":_a .RGBA {0x77,0x88,0x99,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0065\u0079":_a .RGBA {0x77,0x88,0x99,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u0074\u0065\u0065l\u0062\u006c\u0075\u0065":_a .RGBA {0xb0,0xc4,0xde,0xff},"l\u0069\u0067\u0068\u0074\u0079\u0065\u006c\u006c\u006f\u0077":_a .RGBA {0xff,0xff,0xe0,0xff},"\u006c\u0069\u006d\u0065":_a .RGBA {0x00,0xff,0x00,0xff},"\u006ci\u006d\u0065\u0067\u0072\u0065\u0065n":_a .RGBA {0x32,0xcd,0x32,0xff},"\u006c\u0069\u006ee\u006e":_a .RGBA {0xfa,0xf0,0xe6,0xff},"\u006da\u0067\u0065\u006e\u0074\u0061":_a .RGBA {0xff,0x00,0xff,0xff},"\u006d\u0061\u0072\u006f\u006f\u006e":_a .RGBA {0x80,0x00,0x00,0xff},"\u006d\u0065d\u0069\u0075\u006da\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065":_a .RGBA {0x66,0xcd,0xaa,0xff},"\u006d\u0065\u0064\u0069\u0075\u006d\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0x00,0xcd,0xff},"\u006d\u0065\u0064i\u0075\u006d\u006f\u0072\u0063\u0068\u0069\u0064":_a .RGBA {0xba,0x55,0xd3,0xff},"\u006d\u0065\u0064i\u0075\u006d\u0070\u0075\u0072\u0070\u006c\u0065":_a .RGBA {0x93,0x70,0xdb,0xff},"\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0065\u0061g\u0072\u0065\u0065\u006e":_a .RGBA {0x3c,0xb3,0x71,0xff},"\u006de\u0064i\u0075\u006d\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065":_a .RGBA {0x7b,0x68,0xee,0xff},"\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0070\u0072\u0069\u006e\u0067g\u0072\u0065\u0065\u006e":_a .RGBA {0x00,0xfa,0x9a,0xff},"\u006de\u0064i\u0075\u006d\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065":_a .RGBA {0x48,0xd1,0xcc,0xff},"\u006de\u0064i\u0075\u006d\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064":_a .RGBA {0xc7,0x15,0x85,0xff},"\u006d\u0069\u0064n\u0069\u0067\u0068\u0074\u0062\u006c\u0075\u0065":_a .RGBA {0x19,0x19,0x70,0xff},"\u006di\u006e\u0074\u0063\u0072\u0065\u0061m":_a .RGBA {0xf5,0xff,0xfa,0xff},"\u006di\u0073\u0074\u0079\u0072\u006f\u0073e":_a .RGBA {0xff,0xe4,0xe1,0xff},"\u006d\u006f\u0063\u0063\u0061\u0073\u0069\u006e":_a .RGBA {0xff,0xe4,0xb5,0xff},"n\u0061\u0076\u0061\u006a\u006f\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xff,0xde,0xad,0xff},"\u006e\u0061\u0076\u0079":_a .RGBA {0x00,0x00,0x80,0xff},"\u006fl\u0064\u006c\u0061\u0063\u0065":_a .RGBA {0xfd,0xf5,0xe6,0xff},"\u006f\u006c\u0069v\u0065":_a .RGBA {0x80,0x80,0x00,0xff},"\u006fl\u0069\u0076\u0065\u0064\u0072\u0061b":_a .RGBA {0x6b,0x8e,0x23,0xff},"\u006f\u0072\u0061\u006e\u0067\u0065":_a .RGBA {0xff,0xa5,0x00,0xff},"\u006fr\u0061\u006e\u0067\u0065\u0072\u0065d":_a .RGBA {0xff,0x45,0x00,0xff},"\u006f\u0072\u0063\u0068\u0069\u0064":_a .RGBA {0xda,0x70,0xd6,0xff},"\u0070\u0061\u006c\u0065\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064":_a .RGBA {0xee,0xe8,0xaa,0xff},"\u0070a\u006c\u0065\u0067\u0072\u0065\u0065n":_a .RGBA {0x98,0xfb,0x98,0xff},"\u0070\u0061\u006c\u0065\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065":_a .RGBA {0xaf,0xee,0xee,0xff},"\u0070\u0061\u006c\u0065\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064":_a .RGBA {0xdb,0x70,0x93,0xff},"\u0070\u0061\u0070\u0061\u0079\u0061\u0077\u0068\u0069\u0070":_a .RGBA {0xff,0xef,0xd5,0xff},"\u0070e\u0061\u0063\u0068\u0070\u0075\u0066f":_a .RGBA {0xff,0xda,0xb9,0xff},"\u0070\u0065\u0072\u0075":_a .RGBA {0xcd,0x85,0x3f,0xff},"\u0070\u0069\u006e\u006b":_a .RGBA {0xff,0xc0,0xcb,0xff},"\u0070\u006c\u0075\u006d":_a .RGBA {0xdd,0xa0,0xdd,0xff},"\u0070\u006f\u0077\u0064\u0065\u0072\u0062\u006c\u0075\u0065":_a .RGBA {0xb0,0xe0,0xe6,0xff},"\u0070\u0075\u0072\u0070\u006c\u0065":_a .RGBA {0x80,0x00,0x80,0xff},"\u0072\u0065\u0064":_a .RGBA {0xff,0x00,0x00,0xff},"\u0072o\u0073\u0079\u0062\u0072\u006f\u0077n":_a .RGBA {0xbc,0x8f,0x8f,0xff},"\u0072o\u0079\u0061\u006c\u0062\u006c\u0075e":_a .RGBA {0x41,0x69,0xe1,0xff},"s\u0061\u0064\u0064\u006c\u0065\u0062\u0072\u006f\u0077\u006e":_a .RGBA {0x8b,0x45,0x13,0xff},"\u0073\u0061\u006c\u006d\u006f\u006e":_a .RGBA {0xfa,0x80,0x72,0xff},"\u0073\u0061\u006e\u0064\u0079\u0062\u0072\u006f\u0077\u006e":_a .RGBA {0xf4,0xa4,0x60,0xff},"\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x2e,0x8b,0x57,0xff},"\u0073\u0065\u0061\u0073\u0068\u0065\u006c\u006c":_a .RGBA {0xff,0xf5,0xee,0xff},"\u0073\u0069\u0065\u006e\u006e\u0061":_a .RGBA {0xa0,0x52,0x2d,0xff},"\u0073\u0069\u006c\u0076\u0065\u0072":_a .RGBA {0xc0,0xc0,0xc0,0xff},"\u0073k\u0079\u0062\u006c\u0075\u0065":_a .RGBA {0x87,0xce,0xeb,0xff},"\u0073l\u0061\u0074\u0065\u0062\u006c\u0075e":_a .RGBA {0x6a,0x5a,0xcd,0xff},"\u0073l\u0061\u0074\u0065\u0067\u0072\u0061y":_a .RGBA {0x70,0x80,0x90,0xff},"\u0073l\u0061\u0074\u0065\u0067\u0072\u0065y":_a .RGBA {0x70,0x80,0x90,0xff},"\u0073\u006e\u006f\u0077":_a .RGBA {0xff,0xfa,0xfa,0xff},"s\u0070\u0072\u0069\u006e\u0067\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x00,0xff,0x7f,0xff},"\u0073t\u0065\u0065\u006c\u0062\u006c\u0075e":_a .RGBA {0x46,0x82,0xb4,0xff},"\u0074\u0061\u006e":_a .RGBA {0xd2,0xb4,0x8c,0xff},"\u0074\u0065\u0061\u006c":_a .RGBA {0x00,0x80,0x80,0xff},"\u0074h\u0069\u0073\u0074\u006c\u0065":_a .RGBA {0xd8,0xbf,0xd8,0xff},"\u0074\u006f\u006d\u0061\u0074\u006f":_a .RGBA {0xff,0x63,0x47,0xff},"\u0074u\u0072\u0071\u0075\u006f\u0069\u0073e":_a .RGBA {0x40,0xe0,0xd0,0xff},"\u0076\u0069\u006f\u006c\u0065\u0074":_a .RGBA {0xee,0x82,0xee,0xff},"\u0077\u0068\u0065a\u0074":_a .RGBA {0xf5,0xde,0xb3,0xff},"\u0077\u0068\u0069t\u0065":_a .RGBA {0xff,0xff,0xff,0xff},"\u0077\u0068\u0069\u0074\u0065\u0073\u006d\u006f\u006b\u0065":_a .RGBA {0xf5,0xf5,0xf5,0xff},"\u0079\u0065\u006c\u006c\u006f\u0077":_a .RGBA {0xff,0xff,0x00,0xff},"y\u0065\u006c\u006c\u006f\u0077\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x9a,0xcd,0x32,0xff}}; -var Names =[]string {"\u0061l\u0069\u0063\u0065\u0062\u006c\u0075e","\u0061\u006e\u0074i\u0071\u0075\u0065\u0077\u0068\u0069\u0074\u0065","\u0061\u0071\u0075\u0061","\u0061\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065","\u0061\u007a\u0075r\u0065","\u0062\u0065\u0069g\u0065","\u0062\u0069\u0073\u0071\u0075\u0065","\u0062\u006c\u0061c\u006b","\u0062\u006c\u0061\u006e\u0063\u0068\u0065\u0064\u0061l\u006d\u006f\u006e\u0064","\u0062\u006c\u0075\u0065","\u0062\u006c\u0075\u0065\u0076\u0069\u006f\u006c\u0065\u0074","\u0062\u0072\u006fw\u006e","\u0062u\u0072\u006c\u0079\u0077\u006f\u006fd","\u0063a\u0064\u0065\u0074\u0062\u006c\u0075e","\u0063\u0068\u0061\u0072\u0074\u0072\u0065\u0075\u0073\u0065","\u0063h\u006f\u0063\u006f\u006c\u0061\u0074e","\u0063\u006f\u0072a\u006c","\u0063\u006f\u0072\u006e\u0066\u006c\u006f\u0077\u0065r\u0062\u006c\u0075\u0065","\u0063\u006f\u0072\u006e\u0073\u0069\u006c\u006b","\u0063r\u0069\u006d\u0073\u006f\u006e","\u0063\u0079\u0061\u006e","\u0064\u0061\u0072\u006b\u0062\u006c\u0075\u0065","\u0064\u0061\u0072\u006b\u0063\u0079\u0061\u006e","\u0064\u0061\u0072\u006b\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064","\u0064\u0061\u0072\u006b\u0067\u0072\u0061\u0079","\u0064a\u0072\u006b\u0067\u0072\u0065\u0065n","\u0064\u0061\u0072\u006b\u0067\u0072\u0065\u0079","\u0064a\u0072\u006b\u006b\u0068\u0061\u006bi","d\u0061\u0072\u006b\u006d\u0061\u0067\u0065\u006e\u0074\u0061","\u0064\u0061\u0072\u006b\u006f\u006c\u0069\u0076\u0065g\u0072\u0065\u0065\u006e","\u0064\u0061\u0072\u006b\u006f\u0072\u0061\u006e\u0067\u0065","\u0064\u0061\u0072\u006b\u006f\u0072\u0063\u0068\u0069\u0064","\u0064a\u0072\u006b\u0072\u0065\u0064","\u0064\u0061\u0072\u006b\u0073\u0061\u006c\u006d\u006f\u006e","\u0064\u0061\u0072k\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e","\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065","\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0061\u0079","\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0065\u0079","\u0064\u0061\u0072\u006b\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065","\u0064\u0061\u0072\u006b\u0076\u0069\u006f\u006c\u0065\u0074","\u0064\u0065\u0065\u0070\u0070\u0069\u006e\u006b","d\u0065\u0065\u0070\u0073\u006b\u0079\u0062\u006c\u0075\u0065","\u0064i\u006d\u0067\u0072\u0061\u0079","\u0064i\u006d\u0067\u0072\u0065\u0079","\u0064\u006f\u0064\u0067\u0065\u0072\u0062\u006c\u0075\u0065","\u0066i\u0072\u0065\u0062\u0072\u0069\u0063k","f\u006c\u006f\u0072\u0061\u006c\u0077\u0068\u0069\u0074\u0065","f\u006f\u0072\u0065\u0073\u0074\u0067\u0072\u0065\u0065\u006e","\u0066u\u0063\u0068\u0073\u0069\u0061","\u0067a\u0069\u006e\u0073\u0062\u006f\u0072o","\u0067\u0068\u006f\u0073\u0074\u0077\u0068\u0069\u0074\u0065","\u0067\u006f\u006c\u0064","\u0067o\u006c\u0064\u0065\u006e\u0072\u006fd","\u0067\u0072\u0061\u0079","\u0067\u0072\u0065e\u006e","g\u0072\u0065\u0065\u006e\u0079\u0065\u006c\u006c\u006f\u0077","\u0067\u0072\u0065\u0079","\u0068\u006f\u006e\u0065\u0079\u0064\u0065\u0077","\u0068o\u0074\u0070\u0069\u006e\u006b","\u0069n\u0064\u0069\u0061\u006e\u0072\u0065d","\u0069\u006e\u0064\u0069\u0067\u006f","\u0069\u0076\u006fr\u0079","\u006b\u0068\u0061k\u0069","\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072","\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072\u0062\u006c\u0075\u0073\u0068","\u006ca\u0077\u006e\u0067\u0072\u0065\u0065n","\u006c\u0065\u006do\u006e\u0063\u0068\u0069\u0066\u0066\u006f\u006e","\u006ci\u0067\u0068\u0074\u0062\u006c\u0075e","\u006c\u0069\u0067\u0068\u0074\u0063\u006f\u0072\u0061\u006c","\u006ci\u0067\u0068\u0074\u0063\u0079\u0061n","l\u0069g\u0068\u0074\u0067\u006f\u006c\u0064\u0065\u006er\u006f\u0064\u0079\u0065ll\u006f\u0077","\u006ci\u0067\u0068\u0074\u0067\u0072\u0061y","\u006c\u0069\u0067\u0068\u0074\u0067\u0072\u0065\u0065\u006e","\u006ci\u0067\u0068\u0074\u0067\u0072\u0065y","\u006ci\u0067\u0068\u0074\u0070\u0069\u006ek","l\u0069\u0067\u0068\u0074\u0073\u0061\u006c\u006d\u006f\u006e","\u006c\u0069\u0067\u0068\u0074\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e","\u006c\u0069\u0067h\u0074\u0073\u006b\u0079\u0062\u006c\u0075\u0065","\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0061\u0079","\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0065\u0079","\u006c\u0069\u0067\u0068\u0074\u0073\u0074\u0065\u0065l\u0062\u006c\u0075\u0065","l\u0069\u0067\u0068\u0074\u0079\u0065\u006c\u006c\u006f\u0077","\u006c\u0069\u006d\u0065","\u006ci\u006d\u0065\u0067\u0072\u0065\u0065n","\u006c\u0069\u006ee\u006e","\u006da\u0067\u0065\u006e\u0074\u0061","\u006d\u0061\u0072\u006f\u006f\u006e","\u006d\u0065d\u0069\u0075\u006da\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065","\u006d\u0065\u0064\u0069\u0075\u006d\u0062\u006c\u0075\u0065","\u006d\u0065\u0064i\u0075\u006d\u006f\u0072\u0063\u0068\u0069\u0064","\u006d\u0065\u0064i\u0075\u006d\u0070\u0075\u0072\u0070\u006c\u0065","\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0065\u0061g\u0072\u0065\u0065\u006e","\u006de\u0064i\u0075\u006d\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065","\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0070\u0072\u0069\u006e\u0067g\u0072\u0065\u0065\u006e","\u006de\u0064i\u0075\u006d\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065","\u006de\u0064i\u0075\u006d\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064","\u006d\u0069\u0064n\u0069\u0067\u0068\u0074\u0062\u006c\u0075\u0065","\u006di\u006e\u0074\u0063\u0072\u0065\u0061m","\u006di\u0073\u0074\u0079\u0072\u006f\u0073e","\u006d\u006f\u0063\u0063\u0061\u0073\u0069\u006e","n\u0061\u0076\u0061\u006a\u006f\u0077\u0068\u0069\u0074\u0065","\u006e\u0061\u0076\u0079","\u006fl\u0064\u006c\u0061\u0063\u0065","\u006f\u006c\u0069v\u0065","\u006fl\u0069\u0076\u0065\u0064\u0072\u0061b","\u006f\u0072\u0061\u006e\u0067\u0065","\u006fr\u0061\u006e\u0067\u0065\u0072\u0065d","\u006f\u0072\u0063\u0068\u0069\u0064","\u0070\u0061\u006c\u0065\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064","\u0070a\u006c\u0065\u0067\u0072\u0065\u0065n","\u0070\u0061\u006c\u0065\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065","\u0070\u0061\u006c\u0065\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064","\u0070\u0061\u0070\u0061\u0079\u0061\u0077\u0068\u0069\u0070","\u0070e\u0061\u0063\u0068\u0070\u0075\u0066f","\u0070\u0065\u0072\u0075","\u0070\u0069\u006e\u006b","\u0070\u006c\u0075\u006d","\u0070\u006f\u0077\u0064\u0065\u0072\u0062\u006c\u0075\u0065","\u0070\u0075\u0072\u0070\u006c\u0065","\u0072\u0065\u0064","\u0072o\u0073\u0079\u0062\u0072\u006f\u0077n","\u0072o\u0079\u0061\u006c\u0062\u006c\u0075e","s\u0061\u0064\u0064\u006c\u0065\u0062\u0072\u006f\u0077\u006e","\u0073\u0061\u006c\u006d\u006f\u006e","\u0073\u0061\u006e\u0064\u0079\u0062\u0072\u006f\u0077\u006e","\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e","\u0073\u0065\u0061\u0073\u0068\u0065\u006c\u006c","\u0073\u0069\u0065\u006e\u006e\u0061","\u0073\u0069\u006c\u0076\u0065\u0072","\u0073k\u0079\u0062\u006c\u0075\u0065","\u0073l\u0061\u0074\u0065\u0062\u006c\u0075e","\u0073l\u0061\u0074\u0065\u0067\u0072\u0061y","\u0073l\u0061\u0074\u0065\u0067\u0072\u0065y","\u0073\u006e\u006f\u0077","s\u0070\u0072\u0069\u006e\u0067\u0067\u0072\u0065\u0065\u006e","\u0073t\u0065\u0065\u006c\u0062\u006c\u0075e","\u0074\u0061\u006e","\u0074\u0065\u0061\u006c","\u0074h\u0069\u0073\u0074\u006c\u0065","\u0074\u006f\u006d\u0061\u0074\u006f","\u0074u\u0072\u0071\u0075\u006f\u0069\u0073e","\u0076\u0069\u006f\u006c\u0065\u0074","\u0077\u0068\u0065a\u0074","\u0077\u0068\u0069t\u0065","\u0077\u0068\u0069\u0074\u0065\u0073\u006d\u006f\u006b\u0065","\u0079\u0065\u006c\u006c\u006f\u0077","y\u0065\u006c\u006c\u006f\u0077\u0067\u0072\u0065\u0065\u006e"}; -func QuadraticToCubicBezier (startX ,startY ,x1 ,y1 ,x ,y float64 )(Point ,Point ){_ebg :=Point {X :startX ,Y :startY };_cffc :=Point {X :x1 ,Y :y1 };_ded :=Point {X :x ,Y :y };_gde :=_ebg .Interpolate (_cffc ,2.0/3.0);_fdb :=_ded .Interpolate (_cffc ,2.0/3.0); -return _gde ,_fdb ;};func (_bgaf Point )Mul (f float64 )Point {return Point {f *_bgaf .X ,f *_bgaf .Y }};const _ddf =1e-10;func (_dbc Point )Interpolate (q Point ,t float64 )Point {return Point {(1-t )*_dbc .X +t *q .X ,(1-t )*_dbc .Y +t *q .Y };};func _eea (_bd float64 )float64 {_bd =_ad .Mod (_bd ,2.0*_ad .Pi ); -if _bd < 0.0{_bd +=2.0*_ad .Pi ;};return _bd ;};type Point struct{X ,Y float64 ;};func _gdaf (_efd ,_abee float64 )bool {return _ad .Abs (_efd -_abee )<=_ddf };func (_cag Point )Add (q Point )Point {return Point {_cag .X +q .X ,_cag .Y +q .Y }}; \ No newline at end of file +package graphic2d ;import (_a "image/color";_g "math";);func QuadraticToCubicBezier (startX ,startY ,x1 ,y1 ,x ,y float64 )(Point ,Point ){_abdg :=Point {X :startX ,Y :startY };_ded :=Point {X :x1 ,Y :y1 };_ed :=Point {X :x ,Y :y };_fc :=_abdg .Interpolate (_ded ,2.0/3.0); +_aee :=_ed .Interpolate (_ded ,2.0/3.0);return _fc ,_aee ;};type Point struct{X ,Y float64 ;};var Names =[]string {"\u0061l\u0069\u0063\u0065\u0062\u006c\u0075e","\u0061\u006e\u0074i\u0071\u0075\u0065\u0077\u0068\u0069\u0074\u0065","\u0061\u0071\u0075\u0061","\u0061\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065","\u0061\u007a\u0075r\u0065","\u0062\u0065\u0069g\u0065","\u0062\u0069\u0073\u0071\u0075\u0065","\u0062\u006c\u0061c\u006b","\u0062\u006c\u0061\u006e\u0063\u0068\u0065\u0064\u0061l\u006d\u006f\u006e\u0064","\u0062\u006c\u0075\u0065","\u0062\u006c\u0075\u0065\u0076\u0069\u006f\u006c\u0065\u0074","\u0062\u0072\u006fw\u006e","\u0062u\u0072\u006c\u0079\u0077\u006f\u006fd","\u0063a\u0064\u0065\u0074\u0062\u006c\u0075e","\u0063\u0068\u0061\u0072\u0074\u0072\u0065\u0075\u0073\u0065","\u0063h\u006f\u0063\u006f\u006c\u0061\u0074e","\u0063\u006f\u0072a\u006c","\u0063\u006f\u0072\u006e\u0066\u006c\u006f\u0077\u0065r\u0062\u006c\u0075\u0065","\u0063\u006f\u0072\u006e\u0073\u0069\u006c\u006b","\u0063r\u0069\u006d\u0073\u006f\u006e","\u0063\u0079\u0061\u006e","\u0064\u0061\u0072\u006b\u0062\u006c\u0075\u0065","\u0064\u0061\u0072\u006b\u0063\u0079\u0061\u006e","\u0064\u0061\u0072\u006b\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064","\u0064\u0061\u0072\u006b\u0067\u0072\u0061\u0079","\u0064a\u0072\u006b\u0067\u0072\u0065\u0065n","\u0064\u0061\u0072\u006b\u0067\u0072\u0065\u0079","\u0064a\u0072\u006b\u006b\u0068\u0061\u006bi","d\u0061\u0072\u006b\u006d\u0061\u0067\u0065\u006e\u0074\u0061","\u0064\u0061\u0072\u006b\u006f\u006c\u0069\u0076\u0065g\u0072\u0065\u0065\u006e","\u0064\u0061\u0072\u006b\u006f\u0072\u0061\u006e\u0067\u0065","\u0064\u0061\u0072\u006b\u006f\u0072\u0063\u0068\u0069\u0064","\u0064a\u0072\u006b\u0072\u0065\u0064","\u0064\u0061\u0072\u006b\u0073\u0061\u006c\u006d\u006f\u006e","\u0064\u0061\u0072k\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e","\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065","\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0061\u0079","\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0065\u0079","\u0064\u0061\u0072\u006b\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065","\u0064\u0061\u0072\u006b\u0076\u0069\u006f\u006c\u0065\u0074","\u0064\u0065\u0065\u0070\u0070\u0069\u006e\u006b","d\u0065\u0065\u0070\u0073\u006b\u0079\u0062\u006c\u0075\u0065","\u0064i\u006d\u0067\u0072\u0061\u0079","\u0064i\u006d\u0067\u0072\u0065\u0079","\u0064\u006f\u0064\u0067\u0065\u0072\u0062\u006c\u0075\u0065","\u0066i\u0072\u0065\u0062\u0072\u0069\u0063k","f\u006c\u006f\u0072\u0061\u006c\u0077\u0068\u0069\u0074\u0065","f\u006f\u0072\u0065\u0073\u0074\u0067\u0072\u0065\u0065\u006e","\u0066u\u0063\u0068\u0073\u0069\u0061","\u0067a\u0069\u006e\u0073\u0062\u006f\u0072o","\u0067\u0068\u006f\u0073\u0074\u0077\u0068\u0069\u0074\u0065","\u0067\u006f\u006c\u0064","\u0067o\u006c\u0064\u0065\u006e\u0072\u006fd","\u0067\u0072\u0061\u0079","\u0067\u0072\u0065e\u006e","g\u0072\u0065\u0065\u006e\u0079\u0065\u006c\u006c\u006f\u0077","\u0067\u0072\u0065\u0079","\u0068\u006f\u006e\u0065\u0079\u0064\u0065\u0077","\u0068o\u0074\u0070\u0069\u006e\u006b","\u0069n\u0064\u0069\u0061\u006e\u0072\u0065d","\u0069\u006e\u0064\u0069\u0067\u006f","\u0069\u0076\u006fr\u0079","\u006b\u0068\u0061k\u0069","\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072","\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072\u0062\u006c\u0075\u0073\u0068","\u006ca\u0077\u006e\u0067\u0072\u0065\u0065n","\u006c\u0065\u006do\u006e\u0063\u0068\u0069\u0066\u0066\u006f\u006e","\u006ci\u0067\u0068\u0074\u0062\u006c\u0075e","\u006c\u0069\u0067\u0068\u0074\u0063\u006f\u0072\u0061\u006c","\u006ci\u0067\u0068\u0074\u0063\u0079\u0061n","l\u0069g\u0068\u0074\u0067\u006f\u006c\u0064\u0065\u006er\u006f\u0064\u0079\u0065ll\u006f\u0077","\u006ci\u0067\u0068\u0074\u0067\u0072\u0061y","\u006c\u0069\u0067\u0068\u0074\u0067\u0072\u0065\u0065\u006e","\u006ci\u0067\u0068\u0074\u0067\u0072\u0065y","\u006ci\u0067\u0068\u0074\u0070\u0069\u006ek","l\u0069\u0067\u0068\u0074\u0073\u0061\u006c\u006d\u006f\u006e","\u006c\u0069\u0067\u0068\u0074\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e","\u006c\u0069\u0067h\u0074\u0073\u006b\u0079\u0062\u006c\u0075\u0065","\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0061\u0079","\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0065\u0079","\u006c\u0069\u0067\u0068\u0074\u0073\u0074\u0065\u0065l\u0062\u006c\u0075\u0065","l\u0069\u0067\u0068\u0074\u0079\u0065\u006c\u006c\u006f\u0077","\u006c\u0069\u006d\u0065","\u006ci\u006d\u0065\u0067\u0072\u0065\u0065n","\u006c\u0069\u006ee\u006e","\u006da\u0067\u0065\u006e\u0074\u0061","\u006d\u0061\u0072\u006f\u006f\u006e","\u006d\u0065d\u0069\u0075\u006da\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065","\u006d\u0065\u0064\u0069\u0075\u006d\u0062\u006c\u0075\u0065","\u006d\u0065\u0064i\u0075\u006d\u006f\u0072\u0063\u0068\u0069\u0064","\u006d\u0065\u0064i\u0075\u006d\u0070\u0075\u0072\u0070\u006c\u0065","\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0065\u0061g\u0072\u0065\u0065\u006e","\u006de\u0064i\u0075\u006d\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065","\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0070\u0072\u0069\u006e\u0067g\u0072\u0065\u0065\u006e","\u006de\u0064i\u0075\u006d\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065","\u006de\u0064i\u0075\u006d\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064","\u006d\u0069\u0064n\u0069\u0067\u0068\u0074\u0062\u006c\u0075\u0065","\u006di\u006e\u0074\u0063\u0072\u0065\u0061m","\u006di\u0073\u0074\u0079\u0072\u006f\u0073e","\u006d\u006f\u0063\u0063\u0061\u0073\u0069\u006e","n\u0061\u0076\u0061\u006a\u006f\u0077\u0068\u0069\u0074\u0065","\u006e\u0061\u0076\u0079","\u006fl\u0064\u006c\u0061\u0063\u0065","\u006f\u006c\u0069v\u0065","\u006fl\u0069\u0076\u0065\u0064\u0072\u0061b","\u006f\u0072\u0061\u006e\u0067\u0065","\u006fr\u0061\u006e\u0067\u0065\u0072\u0065d","\u006f\u0072\u0063\u0068\u0069\u0064","\u0070\u0061\u006c\u0065\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064","\u0070a\u006c\u0065\u0067\u0072\u0065\u0065n","\u0070\u0061\u006c\u0065\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065","\u0070\u0061\u006c\u0065\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064","\u0070\u0061\u0070\u0061\u0079\u0061\u0077\u0068\u0069\u0070","\u0070e\u0061\u0063\u0068\u0070\u0075\u0066f","\u0070\u0065\u0072\u0075","\u0070\u0069\u006e\u006b","\u0070\u006c\u0075\u006d","\u0070\u006f\u0077\u0064\u0065\u0072\u0062\u006c\u0075\u0065","\u0070\u0075\u0072\u0070\u006c\u0065","\u0072\u0065\u0064","\u0072o\u0073\u0079\u0062\u0072\u006f\u0077n","\u0072o\u0079\u0061\u006c\u0062\u006c\u0075e","s\u0061\u0064\u0064\u006c\u0065\u0062\u0072\u006f\u0077\u006e","\u0073\u0061\u006c\u006d\u006f\u006e","\u0073\u0061\u006e\u0064\u0079\u0062\u0072\u006f\u0077\u006e","\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e","\u0073\u0065\u0061\u0073\u0068\u0065\u006c\u006c","\u0073\u0069\u0065\u006e\u006e\u0061","\u0073\u0069\u006c\u0076\u0065\u0072","\u0073k\u0079\u0062\u006c\u0075\u0065","\u0073l\u0061\u0074\u0065\u0062\u006c\u0075e","\u0073l\u0061\u0074\u0065\u0067\u0072\u0061y","\u0073l\u0061\u0074\u0065\u0067\u0072\u0065y","\u0073\u006e\u006f\u0077","s\u0070\u0072\u0069\u006e\u0067\u0067\u0072\u0065\u0065\u006e","\u0073t\u0065\u0065\u006c\u0062\u006c\u0075e","\u0074\u0061\u006e","\u0074\u0065\u0061\u006c","\u0074h\u0069\u0073\u0074\u006c\u0065","\u0074\u006f\u006d\u0061\u0074\u006f","\u0074u\u0072\u0071\u0075\u006f\u0069\u0073e","\u0076\u0069\u006f\u006c\u0065\u0074","\u0077\u0068\u0065a\u0074","\u0077\u0068\u0069t\u0065","\u0077\u0068\u0069\u0074\u0065\u0073\u006d\u006f\u006b\u0065","\u0079\u0065\u006c\u006c\u006f\u0077","y\u0065\u006c\u006c\u006f\u0077\u0067\u0072\u0065\u0065\u006e"}; +func (_df Point )Sub (q Point )Point {return Point {_df .X -q .X ,_df .Y -q .Y }};func _def (_dg ,_gd ,_bf ,_eca ,_fa ,_afc float64 )(float64 ,float64 ){_defe ,_cfa :=_g .Sincos (_afc );_dbg ,_dbe :=_g .Sincos (_bf );_be :=_eca +_dg *_cfa *_dbe -_gd *_defe *_dbg ; +_ca :=_fa +_dg *_cfa *_dbg +_gd *_defe *_dbe ;return _be ,_ca ;};func _abb (_abc float64 )float64 {_abc =_g .Mod (_abc ,2.0*_g .Pi );if _abc < 0.0{_abc +=2.0*_g .Pi ;};return _abc ;};func (_egd Point )Add (q Point )Point {return Point {_egd .X +q .X ,_egd .Y +q .Y }}; +var (Aliceblue =_a .RGBA {0xf0,0xf8,0xff,0xff};Antiquewhite =_a .RGBA {0xfa,0xeb,0xd7,0xff};Aqua =_a .RGBA {0x00,0xff,0xff,0xff};Aquamarine =_a .RGBA {0x7f,0xff,0xd4,0xff};Azure =_a .RGBA {0xf0,0xff,0xff,0xff};Beige =_a .RGBA {0xf5,0xf5,0xdc,0xff};Bisque =_a .RGBA {0xff,0xe4,0xc4,0xff}; +Black =_a .RGBA {0x00,0x00,0x00,0xff};Blanchedalmond =_a .RGBA {0xff,0xeb,0xcd,0xff};Blue =_a .RGBA {0x00,0x00,0xff,0xff};Blueviolet =_a .RGBA {0x8a,0x2b,0xe2,0xff};Brown =_a .RGBA {0xa5,0x2a,0x2a,0xff};Burlywood =_a .RGBA {0xde,0xb8,0x87,0xff};Cadetblue =_a .RGBA {0x5f,0x9e,0xa0,0xff}; +Chartreuse =_a .RGBA {0x7f,0xff,0x00,0xff};Chocolate =_a .RGBA {0xd2,0x69,0x1e,0xff};Coral =_a .RGBA {0xff,0x7f,0x50,0xff};Cornflowerblue =_a .RGBA {0x64,0x95,0xed,0xff};Cornsilk =_a .RGBA {0xff,0xf8,0xdc,0xff};Crimson =_a .RGBA {0xdc,0x14,0x3c,0xff};Cyan =_a .RGBA {0x00,0xff,0xff,0xff}; +Darkblue =_a .RGBA {0x00,0x00,0x8b,0xff};Darkcyan =_a .RGBA {0x00,0x8b,0x8b,0xff};Darkgoldenrod =_a .RGBA {0xb8,0x86,0x0b,0xff};Darkgray =_a .RGBA {0xa9,0xa9,0xa9,0xff};Darkgreen =_a .RGBA {0x00,0x64,0x00,0xff};Darkgrey =_a .RGBA {0xa9,0xa9,0xa9,0xff}; +Darkkhaki =_a .RGBA {0xbd,0xb7,0x6b,0xff};Darkmagenta =_a .RGBA {0x8b,0x00,0x8b,0xff};Darkolivegreen =_a .RGBA {0x55,0x6b,0x2f,0xff};Darkorange =_a .RGBA {0xff,0x8c,0x00,0xff};Darkorchid =_a .RGBA {0x99,0x32,0xcc,0xff};Darkred =_a .RGBA {0x8b,0x00,0x00,0xff}; +Darksalmon =_a .RGBA {0xe9,0x96,0x7a,0xff};Darkseagreen =_a .RGBA {0x8f,0xbc,0x8f,0xff};Darkslateblue =_a .RGBA {0x48,0x3d,0x8b,0xff};Darkslategray =_a .RGBA {0x2f,0x4f,0x4f,0xff};Darkslategrey =_a .RGBA {0x2f,0x4f,0x4f,0xff};Darkturquoise =_a .RGBA {0x00,0xce,0xd1,0xff}; +Darkviolet =_a .RGBA {0x94,0x00,0xd3,0xff};Deeppink =_a .RGBA {0xff,0x14,0x93,0xff};Deepskyblue =_a .RGBA {0x00,0xbf,0xff,0xff};Dimgray =_a .RGBA {0x69,0x69,0x69,0xff};Dimgrey =_a .RGBA {0x69,0x69,0x69,0xff};Dodgerblue =_a .RGBA {0x1e,0x90,0xff,0xff};Firebrick =_a .RGBA {0xb2,0x22,0x22,0xff}; +Floralwhite =_a .RGBA {0xff,0xfa,0xf0,0xff};Forestgreen =_a .RGBA {0x22,0x8b,0x22,0xff};Fuchsia =_a .RGBA {0xff,0x00,0xff,0xff};Gainsboro =_a .RGBA {0xdc,0xdc,0xdc,0xff};Ghostwhite =_a .RGBA {0xf8,0xf8,0xff,0xff};Gold =_a .RGBA {0xff,0xd7,0x00,0xff};Goldenrod =_a .RGBA {0xda,0xa5,0x20,0xff}; +Gray =_a .RGBA {0x80,0x80,0x80,0xff};Green =_a .RGBA {0x00,0x80,0x00,0xff};Greenyellow =_a .RGBA {0xad,0xff,0x2f,0xff};Grey =_a .RGBA {0x80,0x80,0x80,0xff};Honeydew =_a .RGBA {0xf0,0xff,0xf0,0xff};Hotpink =_a .RGBA {0xff,0x69,0xb4,0xff};Indianred =_a .RGBA {0xcd,0x5c,0x5c,0xff}; +Indigo =_a .RGBA {0x4b,0x00,0x82,0xff};Ivory =_a .RGBA {0xff,0xff,0xf0,0xff};Khaki =_a .RGBA {0xf0,0xe6,0x8c,0xff};Lavender =_a .RGBA {0xe6,0xe6,0xfa,0xff};Lavenderblush =_a .RGBA {0xff,0xf0,0xf5,0xff};Lawngreen =_a .RGBA {0x7c,0xfc,0x00,0xff};Lemonchiffon =_a .RGBA {0xff,0xfa,0xcd,0xff}; +Lightblue =_a .RGBA {0xad,0xd8,0xe6,0xff};Lightcoral =_a .RGBA {0xf0,0x80,0x80,0xff};Lightcyan =_a .RGBA {0xe0,0xff,0xff,0xff};Lightgoldenrodyellow =_a .RGBA {0xfa,0xfa,0xd2,0xff};Lightgray =_a .RGBA {0xd3,0xd3,0xd3,0xff};Lightgreen =_a .RGBA {0x90,0xee,0x90,0xff}; +Lightgrey =_a .RGBA {0xd3,0xd3,0xd3,0xff};Lightpink =_a .RGBA {0xff,0xb6,0xc1,0xff};Lightsalmon =_a .RGBA {0xff,0xa0,0x7a,0xff};Lightseagreen =_a .RGBA {0x20,0xb2,0xaa,0xff};Lightskyblue =_a .RGBA {0x87,0xce,0xfa,0xff};Lightslategray =_a .RGBA {0x77,0x88,0x99,0xff}; +Lightslategrey =_a .RGBA {0x77,0x88,0x99,0xff};Lightsteelblue =_a .RGBA {0xb0,0xc4,0xde,0xff};Lightyellow =_a .RGBA {0xff,0xff,0xe0,0xff};Lime =_a .RGBA {0x00,0xff,0x00,0xff};Limegreen =_a .RGBA {0x32,0xcd,0x32,0xff};Linen =_a .RGBA {0xfa,0xf0,0xe6,0xff}; +Magenta =_a .RGBA {0xff,0x00,0xff,0xff};Maroon =_a .RGBA {0x80,0x00,0x00,0xff};Mediumaquamarine =_a .RGBA {0x66,0xcd,0xaa,0xff};Mediumblue =_a .RGBA {0x00,0x00,0xcd,0xff};Mediumorchid =_a .RGBA {0xba,0x55,0xd3,0xff};Mediumpurple =_a .RGBA {0x93,0x70,0xdb,0xff}; +Mediumseagreen =_a .RGBA {0x3c,0xb3,0x71,0xff};Mediumslateblue =_a .RGBA {0x7b,0x68,0xee,0xff};Mediumspringgreen =_a .RGBA {0x00,0xfa,0x9a,0xff};Mediumturquoise =_a .RGBA {0x48,0xd1,0xcc,0xff};Mediumvioletred =_a .RGBA {0xc7,0x15,0x85,0xff};Midnightblue =_a .RGBA {0x19,0x19,0x70,0xff}; +Mintcream =_a .RGBA {0xf5,0xff,0xfa,0xff};Mistyrose =_a .RGBA {0xff,0xe4,0xe1,0xff};Moccasin =_a .RGBA {0xff,0xe4,0xb5,0xff};Navajowhite =_a .RGBA {0xff,0xde,0xad,0xff};Navy =_a .RGBA {0x00,0x00,0x80,0xff};Oldlace =_a .RGBA {0xfd,0xf5,0xe6,0xff};Olive =_a .RGBA {0x80,0x80,0x00,0xff}; +Olivedrab =_a .RGBA {0x6b,0x8e,0x23,0xff};Orange =_a .RGBA {0xff,0xa5,0x00,0xff};Orangered =_a .RGBA {0xff,0x45,0x00,0xff};Orchid =_a .RGBA {0xda,0x70,0xd6,0xff};Palegoldenrod =_a .RGBA {0xee,0xe8,0xaa,0xff};Palegreen =_a .RGBA {0x98,0xfb,0x98,0xff};Paleturquoise =_a .RGBA {0xaf,0xee,0xee,0xff}; +Palevioletred =_a .RGBA {0xdb,0x70,0x93,0xff};Papayawhip =_a .RGBA {0xff,0xef,0xd5,0xff};Peachpuff =_a .RGBA {0xff,0xda,0xb9,0xff};Peru =_a .RGBA {0xcd,0x85,0x3f,0xff};Pink =_a .RGBA {0xff,0xc0,0xcb,0xff};Plum =_a .RGBA {0xdd,0xa0,0xdd,0xff};Powderblue =_a .RGBA {0xb0,0xe0,0xe6,0xff}; +Purple =_a .RGBA {0x80,0x00,0x80,0xff};Red =_a .RGBA {0xff,0x00,0x00,0xff};Rosybrown =_a .RGBA {0xbc,0x8f,0x8f,0xff};Royalblue =_a .RGBA {0x41,0x69,0xe1,0xff};Saddlebrown =_a .RGBA {0x8b,0x45,0x13,0xff};Salmon =_a .RGBA {0xfa,0x80,0x72,0xff};Sandybrown =_a .RGBA {0xf4,0xa4,0x60,0xff}; +Seagreen =_a .RGBA {0x2e,0x8b,0x57,0xff};Seashell =_a .RGBA {0xff,0xf5,0xee,0xff};Sienna =_a .RGBA {0xa0,0x52,0x2d,0xff};Silver =_a .RGBA {0xc0,0xc0,0xc0,0xff};Skyblue =_a .RGBA {0x87,0xce,0xeb,0xff};Slateblue =_a .RGBA {0x6a,0x5a,0xcd,0xff};Slategray =_a .RGBA {0x70,0x80,0x90,0xff}; +Slategrey =_a .RGBA {0x70,0x80,0x90,0xff};Snow =_a .RGBA {0xff,0xfa,0xfa,0xff};Springgreen =_a .RGBA {0x00,0xff,0x7f,0xff};Steelblue =_a .RGBA {0x46,0x82,0xb4,0xff};Tan =_a .RGBA {0xd2,0xb4,0x8c,0xff};Teal =_a .RGBA {0x00,0x80,0x80,0xff};Thistle =_a .RGBA {0xd8,0xbf,0xd8,0xff}; +Tomato =_a .RGBA {0xff,0x63,0x47,0xff};Turquoise =_a .RGBA {0x40,0xe0,0xd0,0xff};Violet =_a .RGBA {0xee,0x82,0xee,0xff};Wheat =_a .RGBA {0xf5,0xde,0xb3,0xff};White =_a .RGBA {0xff,0xff,0xff,0xff};Whitesmoke =_a .RGBA {0xf5,0xf5,0xf5,0xff};Yellow =_a .RGBA {0xff,0xff,0x00,0xff}; +Yellowgreen =_a .RGBA {0x9a,0xcd,0x32,0xff};);func (_cea Point )Interpolate (q Point ,t float64 )Point {return Point {(1-t )*_cea .X +t *q .X ,(1-t )*_cea .Y +t *q .Y };};func EllipseToCubicBeziers (startX ,startY ,rx ,ry ,rot float64 ,large ,sweep bool ,endX ,endY float64 )[][4]Point {rx =_g .Abs (rx ); +ry =_g .Abs (ry );if rx < ry {rx ,ry =ry ,rx ;rot +=90.0;};_af :=_abb (rot *_g .Pi /180.0);if _g .Pi <=_af {_af -=_g .Pi ;};_ba ,_ab ,_d ,_f :=_bad (startX ,startY ,rx ,ry ,_af ,large ,sweep ,endX ,endY );_ag :=_g .Pi /2.0;_fe :=int (_g .Ceil (_g .Abs (_f -_d )/_ag )); +_ag =_g .Abs (_f -_d )/float64 (_fe );_e :=_g .Sin (_ag )*(_g .Sqrt (4.0+3.0*_g .Pow (_g .Tan (_ag /2.0),2.0))-1.0)/3.0;if !sweep {_ag =-_ag ;};_gg :=Point {X :startX ,Y :startY };_c ,_ec :=_acf (rx ,ry ,_af ,sweep ,_d );_cd :=Point {X :_c ,Y :_ec };_eg :=[][4]Point {}; +for _ff :=1;_ff < _fe +1;_ff ++{_cb :=_d +float64 (_ff )*_ag ;_cf ,_age :=_def (rx ,ry ,_af ,_ba ,_ab ,_cb );_ece :=Point {X :_cf ,Y :_age };_db ,_fed :=_acf (rx ,ry ,_af ,sweep ,_cb );_cdg :=Point {X :_db ,Y :_fed };_abd :=_gg .Add (_cd .Mul (_e ));_de :=_ece .Sub (_cdg .Mul (_e )); +_eg =append (_eg ,[4]Point {_gg ,_abd ,_de ,_ece });_cd =_cdg ;_gg =_ece ;};return _eg ;};func (_bcb Point )Mul (f float64 )Point {return Point {f *_bcb .X ,f *_bcb .Y }};func _acf (_cc ,_affb ,_agd float64 ,_dc bool ,_ceb float64 )(float64 ,float64 ){_ae ,_cfab :=_g .Sincos (_ceb ); +_gdd ,_afg :=_g .Sincos (_agd );_fae :=-_cc *_ae *_afg -_affb *_cfab *_gdd ;_egb :=-_cc *_ae *_gdd +_affb *_cfab *_afg ;if !_dc {return -_fae ,-_egb ;};return _fae ,_egb ;};func _bad (_aff ,_cda ,_da ,_ce ,_egg float64 ,_dd ,_bfc bool ,_bg ,_ffb float64 )(float64 ,float64 ,float64 ,float64 ){if _bd (_aff ,_bg )&&_bd (_cda ,_ffb ){return _aff ,_cda ,0.0,0.0; +};_bgb ,_ea :=_g .Sincos (_egg );_dgg :=_ea *(_aff -_bg )/2.0+_bgb *(_cda -_ffb )/2.0;_eae :=-_bgb *(_aff -_bg )/2.0+_ea *(_cda -_ffb )/2.0;_dgd :=_dgg *_dgg /_da /_da +_eae *_eae /_ce /_ce ;if _dgd > 1.0{_da *=_g .Sqrt (_dgd );_ce *=_g .Sqrt (_dgd );}; +_cba :=(_da *_da *_ce *_ce -_da *_da *_eae *_eae -_ce *_ce *_dgg *_dgg )/(_da *_da *_eae *_eae +_ce *_ce *_dgg *_dgg );if _cba < 0.0{_cba =0.0;};_fee :=_g .Sqrt (_cba );if _dd ==_bfc {_fee =-_fee ;};_ac :=_fee *_da *_eae /_ce ;_dee :=_fee *-_ce *_dgg /_da ; +_bc :=_ea *_ac -_bgb *_dee +(_aff +_bg )/2.0;_dec :=_bgb *_ac +_ea *_dee +(_cda +_ffb )/2.0;_dad :=(_dgg -_ac )/_da ;_dgf :=(_eae -_dee )/_ce ;_cbb :=-(_dgg +_ac )/_da ;_baf :=-(_eae +_dee )/_ce ;_acd :=_g .Acos (_dad /_g .Sqrt (_dad *_dad +_dgf *_dgf )); +if _dgf < 0.0{_acd =-_acd ;};_acd =_abb (_acd );_eaf :=(_dad *_cbb +_dgf *_baf )/_g .Sqrt ((_dad *_dad +_dgf *_dgf )*(_cbb *_cbb +_baf *_baf ));_eaf =_g .Min (1.0,_g .Max (-1.0,_eaf ));_ggf :=_g .Acos (_eaf );if _dad *_baf -_dgf *_cbb < 0.0{_ggf =-_ggf ; +};if !_bfc &&_ggf > 0.0{_ggf -=2.0*_g .Pi ;}else if _bfc &&_ggf < 0.0{_ggf +=2.0*_g .Pi ;};return _bc ,_dec ,_acd ,_acd +_ggf ;};const _gb =1e-10;func _bd (_ffc ,_gf float64 )bool {return _g .Abs (_ffc -_gf )<=_gb };var ColorMap =map[string ]_a .RGBA {"\u0061l\u0069\u0063\u0065\u0062\u006c\u0075e":_a .RGBA {0xf0,0xf8,0xff,0xff},"\u0061\u006e\u0074i\u0071\u0075\u0065\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xfa,0xeb,0xd7,0xff},"\u0061\u0071\u0075\u0061":_a .RGBA {0x00,0xff,0xff,0xff},"\u0061\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065":_a .RGBA {0x7f,0xff,0xd4,0xff},"\u0061\u007a\u0075r\u0065":_a .RGBA {0xf0,0xff,0xff,0xff},"\u0062\u0065\u0069g\u0065":_a .RGBA {0xf5,0xf5,0xdc,0xff},"\u0062\u0069\u0073\u0071\u0075\u0065":_a .RGBA {0xff,0xe4,0xc4,0xff},"\u0062\u006c\u0061c\u006b":_a .RGBA {0x00,0x00,0x00,0xff},"\u0062\u006c\u0061\u006e\u0063\u0068\u0065\u0064\u0061l\u006d\u006f\u006e\u0064":_a .RGBA {0xff,0xeb,0xcd,0xff},"\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0x00,0xff,0xff},"\u0062\u006c\u0075\u0065\u0076\u0069\u006f\u006c\u0065\u0074":_a .RGBA {0x8a,0x2b,0xe2,0xff},"\u0062\u0072\u006fw\u006e":_a .RGBA {0xa5,0x2a,0x2a,0xff},"\u0062u\u0072\u006c\u0079\u0077\u006f\u006fd":_a .RGBA {0xde,0xb8,0x87,0xff},"\u0063a\u0064\u0065\u0074\u0062\u006c\u0075e":_a .RGBA {0x5f,0x9e,0xa0,0xff},"\u0063\u0068\u0061\u0072\u0074\u0072\u0065\u0075\u0073\u0065":_a .RGBA {0x7f,0xff,0x00,0xff},"\u0063h\u006f\u0063\u006f\u006c\u0061\u0074e":_a .RGBA {0xd2,0x69,0x1e,0xff},"\u0063\u006f\u0072a\u006c":_a .RGBA {0xff,0x7f,0x50,0xff},"\u0063\u006f\u0072\u006e\u0066\u006c\u006f\u0077\u0065r\u0062\u006c\u0075\u0065":_a .RGBA {0x64,0x95,0xed,0xff},"\u0063\u006f\u0072\u006e\u0073\u0069\u006c\u006b":_a .RGBA {0xff,0xf8,0xdc,0xff},"\u0063r\u0069\u006d\u0073\u006f\u006e":_a .RGBA {0xdc,0x14,0x3c,0xff},"\u0063\u0079\u0061\u006e":_a .RGBA {0x00,0xff,0xff,0xff},"\u0064\u0061\u0072\u006b\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0x00,0x8b,0xff},"\u0064\u0061\u0072\u006b\u0063\u0079\u0061\u006e":_a .RGBA {0x00,0x8b,0x8b,0xff},"\u0064\u0061\u0072\u006b\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064":_a .RGBA {0xb8,0x86,0x0b,0xff},"\u0064\u0061\u0072\u006b\u0067\u0072\u0061\u0079":_a .RGBA {0xa9,0xa9,0xa9,0xff},"\u0064a\u0072\u006b\u0067\u0072\u0065\u0065n":_a .RGBA {0x00,0x64,0x00,0xff},"\u0064\u0061\u0072\u006b\u0067\u0072\u0065\u0079":_a .RGBA {0xa9,0xa9,0xa9,0xff},"\u0064a\u0072\u006b\u006b\u0068\u0061\u006bi":_a .RGBA {0xbd,0xb7,0x6b,0xff},"d\u0061\u0072\u006b\u006d\u0061\u0067\u0065\u006e\u0074\u0061":_a .RGBA {0x8b,0x00,0x8b,0xff},"\u0064\u0061\u0072\u006b\u006f\u006c\u0069\u0076\u0065g\u0072\u0065\u0065\u006e":_a .RGBA {0x55,0x6b,0x2f,0xff},"\u0064\u0061\u0072\u006b\u006f\u0072\u0061\u006e\u0067\u0065":_a .RGBA {0xff,0x8c,0x00,0xff},"\u0064\u0061\u0072\u006b\u006f\u0072\u0063\u0068\u0069\u0064":_a .RGBA {0x99,0x32,0xcc,0xff},"\u0064a\u0072\u006b\u0072\u0065\u0064":_a .RGBA {0x8b,0x00,0x00,0xff},"\u0064\u0061\u0072\u006b\u0073\u0061\u006c\u006d\u006f\u006e":_a .RGBA {0xe9,0x96,0x7a,0xff},"\u0064\u0061\u0072k\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x8f,0xbc,0x8f,0xff},"\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065":_a .RGBA {0x48,0x3d,0x8b,0xff},"\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0061\u0079":_a .RGBA {0x2f,0x4f,0x4f,0xff},"\u0064\u0061\u0072\u006b\u0073\u006c\u0061\u0074\u0065\u0067\u0072\u0065\u0079":_a .RGBA {0x2f,0x4f,0x4f,0xff},"\u0064\u0061\u0072\u006b\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065":_a .RGBA {0x00,0xce,0xd1,0xff},"\u0064\u0061\u0072\u006b\u0076\u0069\u006f\u006c\u0065\u0074":_a .RGBA {0x94,0x00,0xd3,0xff},"\u0064\u0065\u0065\u0070\u0070\u0069\u006e\u006b":_a .RGBA {0xff,0x14,0x93,0xff},"d\u0065\u0065\u0070\u0073\u006b\u0079\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0xbf,0xff,0xff},"\u0064i\u006d\u0067\u0072\u0061\u0079":_a .RGBA {0x69,0x69,0x69,0xff},"\u0064i\u006d\u0067\u0072\u0065\u0079":_a .RGBA {0x69,0x69,0x69,0xff},"\u0064\u006f\u0064\u0067\u0065\u0072\u0062\u006c\u0075\u0065":_a .RGBA {0x1e,0x90,0xff,0xff},"\u0066i\u0072\u0065\u0062\u0072\u0069\u0063k":_a .RGBA {0xb2,0x22,0x22,0xff},"f\u006c\u006f\u0072\u0061\u006c\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xff,0xfa,0xf0,0xff},"f\u006f\u0072\u0065\u0073\u0074\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x22,0x8b,0x22,0xff},"\u0066u\u0063\u0068\u0073\u0069\u0061":_a .RGBA {0xff,0x00,0xff,0xff},"\u0067a\u0069\u006e\u0073\u0062\u006f\u0072o":_a .RGBA {0xdc,0xdc,0xdc,0xff},"\u0067\u0068\u006f\u0073\u0074\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xf8,0xf8,0xff,0xff},"\u0067\u006f\u006c\u0064":_a .RGBA {0xff,0xd7,0x00,0xff},"\u0067o\u006c\u0064\u0065\u006e\u0072\u006fd":_a .RGBA {0xda,0xa5,0x20,0xff},"\u0067\u0072\u0061\u0079":_a .RGBA {0x80,0x80,0x80,0xff},"\u0067\u0072\u0065e\u006e":_a .RGBA {0x00,0x80,0x00,0xff},"g\u0072\u0065\u0065\u006e\u0079\u0065\u006c\u006c\u006f\u0077":_a .RGBA {0xad,0xff,0x2f,0xff},"\u0067\u0072\u0065\u0079":_a .RGBA {0x80,0x80,0x80,0xff},"\u0068\u006f\u006e\u0065\u0079\u0064\u0065\u0077":_a .RGBA {0xf0,0xff,0xf0,0xff},"\u0068o\u0074\u0070\u0069\u006e\u006b":_a .RGBA {0xff,0x69,0xb4,0xff},"\u0069n\u0064\u0069\u0061\u006e\u0072\u0065d":_a .RGBA {0xcd,0x5c,0x5c,0xff},"\u0069\u006e\u0064\u0069\u0067\u006f":_a .RGBA {0x4b,0x00,0x82,0xff},"\u0069\u0076\u006fr\u0079":_a .RGBA {0xff,0xff,0xf0,0xff},"\u006b\u0068\u0061k\u0069":_a .RGBA {0xf0,0xe6,0x8c,0xff},"\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072":_a .RGBA {0xe6,0xe6,0xfa,0xff},"\u006c\u0061\u0076\u0065\u006e\u0064\u0065\u0072\u0062\u006c\u0075\u0073\u0068":_a .RGBA {0xff,0xf0,0xf5,0xff},"\u006ca\u0077\u006e\u0067\u0072\u0065\u0065n":_a .RGBA {0x7c,0xfc,0x00,0xff},"\u006c\u0065\u006do\u006e\u0063\u0068\u0069\u0066\u0066\u006f\u006e":_a .RGBA {0xff,0xfa,0xcd,0xff},"\u006ci\u0067\u0068\u0074\u0062\u006c\u0075e":_a .RGBA {0xad,0xd8,0xe6,0xff},"\u006c\u0069\u0067\u0068\u0074\u0063\u006f\u0072\u0061\u006c":_a .RGBA {0xf0,0x80,0x80,0xff},"\u006ci\u0067\u0068\u0074\u0063\u0079\u0061n":_a .RGBA {0xe0,0xff,0xff,0xff},"l\u0069g\u0068\u0074\u0067\u006f\u006c\u0064\u0065\u006er\u006f\u0064\u0079\u0065ll\u006f\u0077":_a .RGBA {0xfa,0xfa,0xd2,0xff},"\u006ci\u0067\u0068\u0074\u0067\u0072\u0061y":_a .RGBA {0xd3,0xd3,0xd3,0xff},"\u006c\u0069\u0067\u0068\u0074\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x90,0xee,0x90,0xff},"\u006ci\u0067\u0068\u0074\u0067\u0072\u0065y":_a .RGBA {0xd3,0xd3,0xd3,0xff},"\u006ci\u0067\u0068\u0074\u0070\u0069\u006ek":_a .RGBA {0xff,0xb6,0xc1,0xff},"l\u0069\u0067\u0068\u0074\u0073\u0061\u006c\u006d\u006f\u006e":_a .RGBA {0xff,0xa0,0x7a,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x20,0xb2,0xaa,0xff},"\u006c\u0069\u0067h\u0074\u0073\u006b\u0079\u0062\u006c\u0075\u0065":_a .RGBA {0x87,0xce,0xfa,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0061\u0079":_a .RGBA {0x77,0x88,0x99,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u006c\u0061\u0074e\u0067\u0072\u0065\u0079":_a .RGBA {0x77,0x88,0x99,0xff},"\u006c\u0069\u0067\u0068\u0074\u0073\u0074\u0065\u0065l\u0062\u006c\u0075\u0065":_a .RGBA {0xb0,0xc4,0xde,0xff},"l\u0069\u0067\u0068\u0074\u0079\u0065\u006c\u006c\u006f\u0077":_a .RGBA {0xff,0xff,0xe0,0xff},"\u006c\u0069\u006d\u0065":_a .RGBA {0x00,0xff,0x00,0xff},"\u006ci\u006d\u0065\u0067\u0072\u0065\u0065n":_a .RGBA {0x32,0xcd,0x32,0xff},"\u006c\u0069\u006ee\u006e":_a .RGBA {0xfa,0xf0,0xe6,0xff},"\u006da\u0067\u0065\u006e\u0074\u0061":_a .RGBA {0xff,0x00,0xff,0xff},"\u006d\u0061\u0072\u006f\u006f\u006e":_a .RGBA {0x80,0x00,0x00,0xff},"\u006d\u0065d\u0069\u0075\u006da\u0071\u0075\u0061\u006d\u0061\u0072\u0069\u006e\u0065":_a .RGBA {0x66,0xcd,0xaa,0xff},"\u006d\u0065\u0064\u0069\u0075\u006d\u0062\u006c\u0075\u0065":_a .RGBA {0x00,0x00,0xcd,0xff},"\u006d\u0065\u0064i\u0075\u006d\u006f\u0072\u0063\u0068\u0069\u0064":_a .RGBA {0xba,0x55,0xd3,0xff},"\u006d\u0065\u0064i\u0075\u006d\u0070\u0075\u0072\u0070\u006c\u0065":_a .RGBA {0x93,0x70,0xdb,0xff},"\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0065\u0061g\u0072\u0065\u0065\u006e":_a .RGBA {0x3c,0xb3,0x71,0xff},"\u006de\u0064i\u0075\u006d\u0073\u006c\u0061\u0074\u0065\u0062\u006c\u0075\u0065":_a .RGBA {0x7b,0x68,0xee,0xff},"\u006d\u0065\u0064\u0069\u0075\u006d\u0073\u0070\u0072\u0069\u006e\u0067g\u0072\u0065\u0065\u006e":_a .RGBA {0x00,0xfa,0x9a,0xff},"\u006de\u0064i\u0075\u006d\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065":_a .RGBA {0x48,0xd1,0xcc,0xff},"\u006de\u0064i\u0075\u006d\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064":_a .RGBA {0xc7,0x15,0x85,0xff},"\u006d\u0069\u0064n\u0069\u0067\u0068\u0074\u0062\u006c\u0075\u0065":_a .RGBA {0x19,0x19,0x70,0xff},"\u006di\u006e\u0074\u0063\u0072\u0065\u0061m":_a .RGBA {0xf5,0xff,0xfa,0xff},"\u006di\u0073\u0074\u0079\u0072\u006f\u0073e":_a .RGBA {0xff,0xe4,0xe1,0xff},"\u006d\u006f\u0063\u0063\u0061\u0073\u0069\u006e":_a .RGBA {0xff,0xe4,0xb5,0xff},"n\u0061\u0076\u0061\u006a\u006f\u0077\u0068\u0069\u0074\u0065":_a .RGBA {0xff,0xde,0xad,0xff},"\u006e\u0061\u0076\u0079":_a .RGBA {0x00,0x00,0x80,0xff},"\u006fl\u0064\u006c\u0061\u0063\u0065":_a .RGBA {0xfd,0xf5,0xe6,0xff},"\u006f\u006c\u0069v\u0065":_a .RGBA {0x80,0x80,0x00,0xff},"\u006fl\u0069\u0076\u0065\u0064\u0072\u0061b":_a .RGBA {0x6b,0x8e,0x23,0xff},"\u006f\u0072\u0061\u006e\u0067\u0065":_a .RGBA {0xff,0xa5,0x00,0xff},"\u006fr\u0061\u006e\u0067\u0065\u0072\u0065d":_a .RGBA {0xff,0x45,0x00,0xff},"\u006f\u0072\u0063\u0068\u0069\u0064":_a .RGBA {0xda,0x70,0xd6,0xff},"\u0070\u0061\u006c\u0065\u0067\u006f\u006c\u0064\u0065\u006e\u0072\u006f\u0064":_a .RGBA {0xee,0xe8,0xaa,0xff},"\u0070a\u006c\u0065\u0067\u0072\u0065\u0065n":_a .RGBA {0x98,0xfb,0x98,0xff},"\u0070\u0061\u006c\u0065\u0074\u0075\u0072\u0071\u0075\u006f\u0069\u0073\u0065":_a .RGBA {0xaf,0xee,0xee,0xff},"\u0070\u0061\u006c\u0065\u0076\u0069\u006f\u006c\u0065\u0074\u0072\u0065\u0064":_a .RGBA {0xdb,0x70,0x93,0xff},"\u0070\u0061\u0070\u0061\u0079\u0061\u0077\u0068\u0069\u0070":_a .RGBA {0xff,0xef,0xd5,0xff},"\u0070e\u0061\u0063\u0068\u0070\u0075\u0066f":_a .RGBA {0xff,0xda,0xb9,0xff},"\u0070\u0065\u0072\u0075":_a .RGBA {0xcd,0x85,0x3f,0xff},"\u0070\u0069\u006e\u006b":_a .RGBA {0xff,0xc0,0xcb,0xff},"\u0070\u006c\u0075\u006d":_a .RGBA {0xdd,0xa0,0xdd,0xff},"\u0070\u006f\u0077\u0064\u0065\u0072\u0062\u006c\u0075\u0065":_a .RGBA {0xb0,0xe0,0xe6,0xff},"\u0070\u0075\u0072\u0070\u006c\u0065":_a .RGBA {0x80,0x00,0x80,0xff},"\u0072\u0065\u0064":_a .RGBA {0xff,0x00,0x00,0xff},"\u0072o\u0073\u0079\u0062\u0072\u006f\u0077n":_a .RGBA {0xbc,0x8f,0x8f,0xff},"\u0072o\u0079\u0061\u006c\u0062\u006c\u0075e":_a .RGBA {0x41,0x69,0xe1,0xff},"s\u0061\u0064\u0064\u006c\u0065\u0062\u0072\u006f\u0077\u006e":_a .RGBA {0x8b,0x45,0x13,0xff},"\u0073\u0061\u006c\u006d\u006f\u006e":_a .RGBA {0xfa,0x80,0x72,0xff},"\u0073\u0061\u006e\u0064\u0079\u0062\u0072\u006f\u0077\u006e":_a .RGBA {0xf4,0xa4,0x60,0xff},"\u0073\u0065\u0061\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x2e,0x8b,0x57,0xff},"\u0073\u0065\u0061\u0073\u0068\u0065\u006c\u006c":_a .RGBA {0xff,0xf5,0xee,0xff},"\u0073\u0069\u0065\u006e\u006e\u0061":_a .RGBA {0xa0,0x52,0x2d,0xff},"\u0073\u0069\u006c\u0076\u0065\u0072":_a .RGBA {0xc0,0xc0,0xc0,0xff},"\u0073k\u0079\u0062\u006c\u0075\u0065":_a .RGBA {0x87,0xce,0xeb,0xff},"\u0073l\u0061\u0074\u0065\u0062\u006c\u0075e":_a .RGBA {0x6a,0x5a,0xcd,0xff},"\u0073l\u0061\u0074\u0065\u0067\u0072\u0061y":_a .RGBA {0x70,0x80,0x90,0xff},"\u0073l\u0061\u0074\u0065\u0067\u0072\u0065y":_a .RGBA {0x70,0x80,0x90,0xff},"\u0073\u006e\u006f\u0077":_a .RGBA {0xff,0xfa,0xfa,0xff},"s\u0070\u0072\u0069\u006e\u0067\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x00,0xff,0x7f,0xff},"\u0073t\u0065\u0065\u006c\u0062\u006c\u0075e":_a .RGBA {0x46,0x82,0xb4,0xff},"\u0074\u0061\u006e":_a .RGBA {0xd2,0xb4,0x8c,0xff},"\u0074\u0065\u0061\u006c":_a .RGBA {0x00,0x80,0x80,0xff},"\u0074h\u0069\u0073\u0074\u006c\u0065":_a .RGBA {0xd8,0xbf,0xd8,0xff},"\u0074\u006f\u006d\u0061\u0074\u006f":_a .RGBA {0xff,0x63,0x47,0xff},"\u0074u\u0072\u0071\u0075\u006f\u0069\u0073e":_a .RGBA {0x40,0xe0,0xd0,0xff},"\u0076\u0069\u006f\u006c\u0065\u0074":_a .RGBA {0xee,0x82,0xee,0xff},"\u0077\u0068\u0065a\u0074":_a .RGBA {0xf5,0xde,0xb3,0xff},"\u0077\u0068\u0069t\u0065":_a .RGBA {0xff,0xff,0xff,0xff},"\u0077\u0068\u0069\u0074\u0065\u0073\u006d\u006f\u006b\u0065":_a .RGBA {0xf5,0xf5,0xf5,0xff},"\u0079\u0065\u006c\u006c\u006f\u0077":_a .RGBA {0xff,0xff,0x00,0xff},"y\u0065\u006c\u006c\u006f\u0077\u0067\u0072\u0065\u0065\u006e":_a .RGBA {0x9a,0xcd,0x32,0xff}}; diff --git a/internal/graphic2d/svg/svg.go b/internal/graphic2d/svg/svg.go index a53082a5f..11059dfea 100644 --- a/internal/graphic2d/svg/svg.go +++ b/internal/graphic2d/svg/svg.go @@ -9,103 +9,105 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package svg ;import (_e "encoding/xml";_g "fmt";_dg "github.com/unidoc/unipdf/v3/common";_cbf "github.com/unidoc/unipdf/v3/contentstream";_cb "github.com/unidoc/unipdf/v3/contentstream/draw";_cg "github.com/unidoc/unipdf/v3/internal/graphic2d";_ce "golang.org/x/net/html/charset"; -_ge "io";_gg "math";_fb "os";_f "strconv";_d "strings";_cc "unicode";);func (_gcd *GraphicSVG )toContentStream (_dda *_cbf .ContentCreator ){_bee ,_eeda :=_gbga (_gcd .Attributes ,_gcd ._gggf );if _eeda !=nil {_dg .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073e\u0020\u0073\u0074\u0079\u006c\u0065\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020%\u0076",_eeda ); -};_gcd .Style =_bee ;switch _gcd .Name {case "\u0070\u0061\u0074\u0068":_b (_gcd ,_dda );for _ ,_agb :=range _gcd .Children {_agb .toContentStream (_dda );};case "\u0072\u0065\u0063\u0074":_gea (_gcd ,_dda );for _ ,_gda :=range _gcd .Children {_gda .toContentStream (_dda ); -};case "\u0063\u0069\u0072\u0063\u006c\u0065":_aed (_gcd ,_dda );for _ ,_ded :=range _gcd .Children {_ded .toContentStream (_dda );};case "\u0065l\u006c\u0069\u0070\u0073\u0065":_edgg (_gcd ,_dda );for _ ,_ggag :=range _gcd .Children {_ggag .toContentStream (_dda ); -};case "\u0070\u006f\u006c\u0079\u006c\u0069\u006e\u0065":_bf (_gcd ,_dda );for _ ,_dac :=range _gcd .Children {_dac .toContentStream (_dda );};case "\u0070o\u006c\u0079\u0067\u006f\u006e":_gba (_gcd ,_dda );for _ ,_fga :=range _gcd .Children {_fga .toContentStream (_dda ); -};case "\u006c\u0069\u006e\u0065":_ggge (_gcd ,_dda );for _ ,_bgc :=range _gcd .Children {_bgc .toContentStream (_dda );};case "\u0067":_ggd ,_fbd :=_gcd .Attributes ["\u0066\u0069\u006c\u006c"];_gggb ,_cgcg :=_gcd .Attributes ["\u0073\u0074\u0072\u006f\u006b\u0065"]; -_ecb ,_aeb :=_gcd .Attributes ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"];for _ ,_cbd :=range _gcd .Children {if _ ,_geaf :=_cbd .Attributes ["\u0066\u0069\u006c\u006c"];!_geaf &&_fbd {_cbd .Attributes ["\u0066\u0069\u006c\u006c"]=_ggd ; -};if _ ,_ecd :=_cbd .Attributes ["\u0073\u0074\u0072\u006f\u006b\u0065"];!_ecd &&_cgcg {_cbd .Attributes ["\u0073\u0074\u0072\u006f\u006b\u0065"]=_gggb ;};if _ ,_dab :=_cbd .Attributes ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"]; -!_dab &&_aeb {_cbd .Attributes ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"]=_ecb ;};_cbd .toContentStream (_dda );};};};func (_fae *Command )isAbsolute ()bool {return _fae .Symbol ==_d .ToUpper (_fae .Symbol )};func (_fcdc pathParserError )Error ()string {return _fcdc ._aff }; -func _efa ()*GraphicSVGStyle {return &GraphicSVGStyle {FillColor :"\u00230\u0030\u0030\u0030\u0030\u0030",StrokeColor :"",StrokeWidth :0};};func _eea (_bcg string )([]float64 ,error ){_gede :=-1;var _fffg []float64 ;_begb :=' ';for _ccb ,_ggae :=range _bcg {if !_cc .IsNumber (_ggae )&&_ggae !='.'&&!(_ggae =='-'&&_begb =='e')&&_ggae !='e'{if _gede !=-1{_eedaa ,_dbed :=_fbb (_bcg [_gede :_ccb ]); -if _dbed !=nil {return _fffg ,_dbed ;};_fffg =append (_fffg ,_eedaa ...);};if _ggae =='-'{_gede =_ccb ;}else {_gede =-1;};}else if _gede ==-1{_gede =_ccb ;};_begb =_ggae ;};if _gede !=-1&&_gede !=len (_bcg ){_deg ,_gcc :=_fbb (_bcg [_gede :]);if _gcc !=nil {return _fffg ,_gcc ; -};_fffg =append (_fffg ,_deg ...);};return _fffg ,nil ;};type Command struct{Symbol string ;Params []float64 ;};func _adc (_gfc []token )([]*Command ,error ){var (_cbag []*Command ;_ggff []float64 ;);for _efe :=len (_gfc )-1;_efe >=0;_efe --{_ffc :=_gfc [_efe ]; -if _ffc ._dgbc {_dafb :=_edgf ._ecae [_d .ToLower (_ffc ._baeb )];_bdff :=len (_ggff );if _dafb ==0&&_bdff ==0{_ecbb :=&Command {Symbol :_ffc ._baeb };_cbag =append ([]*Command {_ecbb },_cbag ...);}else if _dafb !=0&&_bdff %_dafb ==0{_dcf :=_bdff /_dafb ; -for _gdc :=0;_gdc < _dcf ;_gdc ++{_fcad :=_ffc ._baeb ;if _fcad =="\u006d"&&_gdc < _dcf -1{_fcad ="\u006c";};if _fcad =="\u004d"&&_gdc < _dcf -1{_fcad ="\u004c";};_gca :=&Command {_fcad ,_ddff (_ggff [:_dafb ])};_cbag =append ([]*Command {_gca },_cbag ...); -_ggff =_ggff [_dafb :];};}else {_gfaa :=pathParserError {"I\u006e\u0063\u006f\u0072\u0072\u0065c\u0074\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006f\u0066\u0020\u0070\u0061r\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006fr\u0020"+_ffc ._baeb }; -return nil ,_gfaa ;};}else {_cgbg ,_eged :=_edf (_ffc ._baeb ,64);if _eged !=nil {return nil ,_eged ;};_ggff =append (_ggff ,_cgbg );};};return _cbag ,nil ;};func (_cgg *GraphicSVG )Decode (decoder *_e .Decoder )error {for {_bbad ,_dbc :=decoder .Token (); -if _bbad ==nil &&_dbc ==_ge .EOF {break ;};if _dbc !=nil {return _dbc ;};switch _gfa :=_bbad .(type ){case _e .StartElement :_bbadc :=_dea (_gfa );_gbg :=_bbadc .Decode (decoder );if _gbg !=nil {return _gbg ;};_cgg .Children =append (_cgg .Children ,_bbadc ); -case _e .CharData :_ggf :=_d .TrimSpace (string (_gfa ));if _ggf !=""{_cgg .Content =string (_gfa );};case _e .EndElement :if _gfa .Name .Local ==_cgg .Name {return nil ;};};};return nil ;};func (_dggb *GraphicSVG )SetScaling (xFactor ,yFactor float64 ){_gafc :=_dggb .Width /_dggb .ViewBox .W ; -_bc :=_dggb .Height /_dggb .ViewBox .H ;_dggb .setDefaultScaling (_gg .Max (_gafc ,_bc ));for _ ,_ecbe :=range _dggb .Children {_ecbe .SetScaling (xFactor ,yFactor );};};type pathParserError struct{_aff string };func _bef (_dgcc float64 )int {return int (_dgcc +_gg .Copysign (0.5,_dgcc ))}; -func ParseFromString (svgStr string )(*GraphicSVG ,error ){return ParseFromStream (_d .NewReader (svgStr ));};func (_afbg *Path )compare (_aaf *Path )bool {if len (_afbg .Subpaths )!=len (_aaf .Subpaths ){return false ;};for _ega ,_babe :=range _afbg .Subpaths {if !_babe .compare (_aaf .Subpaths [_ega ]){return false ; -};};return true ;};func _bf (_cda *GraphicSVG ,_bgf *_cbf .ContentCreator ){_bgf .Add_q ();_cda .Style .toContentStream (_bgf );_gfb ,_ad :=_eea (_cda .Attributes ["\u0070\u006f\u0069\u006e\u0074\u0073"]);if _ad !=nil {_dg .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0025\u0076",_ad ); -return ;};if len (_gfb )%2> 0{_dg .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0069n\u0076\u0061l\u0069\u0064\u0020\u0070\u006f\u0069\u006e\u0074s\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006ce\u006e\u0067\u0074\u0068");return ; -};for _ggb :=0;_ggb < len (_gfb );{if _ggb ==0{_bgf .Add_m (_gfb [_ggb ]*_cda ._gggf ,_gfb [_ggb +1]*_cda ._gggf );}else {_bgf .Add_l (_gfb [_ggb ]*_cda ._gggf ,_gfb [_ggb +1]*_cda ._gggf );};_ggb +=2;};if _cda .Style .FillColor !=""&&_cda .Style .StrokeColor !=""{_bgf .Add_B (); -}else if _cda .Style .FillColor !=""{_bgf .Add_f ();}else if _cda .Style .StrokeColor !=""{_bgf .Add_S ();};_bgf .Add_h ();_bgf .Add_Q ();};func _b (_gc *GraphicSVG ,_ea *_cbf .ContentCreator ){_ea .Add_q ();_gc .Style .toContentStream (_ea );_ac ,_be :=_bda (_gc .Attributes ["\u0064"]); -if _be !=nil {_dg .Log .Error ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025s",_be .Error ());};var (_dag ,_bb =0.0,0.0;_eg ,_gb =0.0,0.0;_ab *Command ;);for _ ,_abe :=range _ac .Subpaths {for _ ,_eb :=range _abe .Commands {switch _d .ToLower (_eb .Symbol ){case "\u006d":_eg ,_gb =_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ; -if !_eb .isAbsolute (){_eg ,_gb =_dag +_eg -_gc .ViewBox .X ,_bb +_gb -_gc .ViewBox .Y ;};_ea .Add_m (_fac (_eg ,3),_fac (_gb ,3));_dag ,_bb =_eg ,_gb ;case "\u0063":_acg ,_fg ,_dgd ,_dd ,_daf ,_cd :=_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ,_eb .Params [2]*_gc ._gggf ,_eb .Params [3]*_gc ._gggf ,_eb .Params [4]*_gc ._gggf ,_eb .Params [5]*_gc ._gggf ; -if !_eb .isAbsolute (){_acg ,_fg ,_dgd ,_dd ,_daf ,_cd =_dag +_acg ,_bb +_fg ,_dag +_dgd ,_bb +_dd ,_dag +_daf ,_bb +_cd ;};_ea .Add_c (_fac (_acg ,3),_fac (_fg ,3),_fac (_dgd ,3),_fac (_dd ,3),_fac (_daf ,3),_fac (_cd ,3));_dag ,_bb =_daf ,_cd ;case "\u0073":_egc ,_gbe ,_ff ,_df :=_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ,_eb .Params [2]*_gc ._gggf ,_eb .Params [3]*_gc ._gggf ; -if !_eb .isAbsolute (){_egc ,_gbe ,_ff ,_df =_dag +_egc ,_bb +_gbe ,_dag +_ff ,_bb +_df ;};_ea .Add_c (_fac (_dag ,3),_fac (_bb ,3),_fac (_egc ,3),_fac (_gbe ,3),_fac (_ff ,3),_fac (_df ,3));_dag ,_bb =_ff ,_df ;case "\u006c":_dbg ,_ec :=_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ; -if !_eb .isAbsolute (){_dbg ,_ec =_dag +_dbg ,_bb +_ec ;};_ea .Add_l (_fac (_dbg ,3),_fac (_ec ,3));_dag ,_bb =_dbg ,_ec ;case "\u0068":_acd :=_eb .Params [0]*_gc ._gggf ;if !_eb .isAbsolute (){_acd =_dag +_acd ;};_ea .Add_l (_fac (_acd ,3),_fac (_bb ,3)); -_dag =_acd ;case "\u0076":_dc :=_eb .Params [0]*_gc ._gggf ;if !_eb .isAbsolute (){_dc =_bb +_dc ;};_ea .Add_l (_fac (_dag ,3),_fac (_dc ,3));_bb =_dc ;case "\u0071":_ca ,_ebd ,_ebc ,_ag :=_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ,_eb .Params [2]*_gc ._gggf ,_eb .Params [3]*_gc ._gggf ; -if !_eb .isAbsolute (){_ca ,_ebd ,_ebc ,_ag =_dag +_ca ,_bb +_ebd ,_dag +_ebc ,_bb +_ag ;};_fe ,_fd :=_cg .QuadraticToCubicBezier (_dag ,_bb ,_ca ,_ebd ,_ebc ,_ag );_ea .Add_c (_fac (_fe .X ,3),_fac (_fe .Y ,3),_fac (_fd .X ,3),_fac (_fd .Y ,3),_fac (_ebc ,3),_fac (_ag ,3)); -_dag ,_bb =_ebc ,_ag ;case "\u0074":var _eed ,_fa _cg .Point ;_dgg ,_ga :=_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ;if !_eb .isAbsolute (){_dgg ,_ga =_dag +_dgg ,_bb +_ga ;};if _ab !=nil &&_d .ToLower (_ab .Symbol )=="\u0071"{_ed :=_cg .Point {X :_ab .Params [0]*_gc ._gggf ,Y :_ab .Params [1]*_gc ._gggf }; -_geb :=_cg .Point {X :_ab .Params [2]*_gc ._gggf ,Y :_ab .Params [3]*_gc ._gggf };_bd :=_geb .Mul (2.0).Sub (_ed );_eed ,_fa =_cg .QuadraticToCubicBezier (_dag ,_bb ,_bd .X ,_bd .Y ,_dgg ,_ga );};_ea .Add_c (_fac (_eed .X ,3),_fac (_eed .Y ,3),_fac (_fa .X ,3),_fac (_fa .Y ,3),_fac (_dgg ,3),_fac (_ga ,3)); -_dag ,_bb =_dgg ,_ga ;case "\u0061":_bg ,_dgdf :=_eb .Params [0]*_gc ._gggf ,_eb .Params [1]*_gc ._gggf ;_ba :=_eb .Params [2];_bgb :=_eb .Params [3]> 0;_ae :=_eb .Params [4]> 0;_gga ,_ged :=_eb .Params [5]*_gc ._gggf ,_eb .Params [6]*_gc ._gggf ;if !_eb .isAbsolute (){_gga ,_ged =_dag +_gga ,_bb +_ged ; -};_eda :=_cg .EllipseToCubicBeziers (_dag ,_bb ,_bg ,_dgdf ,_ba ,_bgb ,_ae ,_gga ,_ged );for _ ,_abd :=range _eda {_ea .Add_c (_fac (_abd [1].X ,3),_fac ((_abd [1].Y ),3),_fac ((_abd [2].X ),3),_fac ((_abd [2].Y ),3),_fac ((_abd [3].X ),3),_fac ((_abd [3].Y ),3)); -};_dag ,_bb =_gga ,_ged ;case "\u007a":_ea .Add_h ();};_ab =_eb ;};};if _gc .Style .FillColor !=""&&_gc .Style .StrokeColor !=""{_ea .Add_B ();}else if _gc .Style .FillColor !=""{_ea .Add_f ();}else if _gc .Style .StrokeColor !=""{_ea .Add_S ();};_ea .Add_h (); -_ea .Add_Q ();};type GraphicSVGStyle struct{FillColor string ;StrokeColor string ;StrokeWidth float64 ;};func _beg (_fdcf string )[]token {var (_aafb []token ;_afd string ;);for _ ,_ccc :=range _fdcf {_edb :=string (_ccc );switch {case _edgf .isCommand (_edb ):_aafb ,_afd =_abed (_aafb ,_afd ); -_aafb =append (_aafb ,token {_edb ,true });case _edb =="\u002e":if _afd ==""{_afd ="\u0030";};if _d .Contains (_afd ,_edb ){_aafb =append (_aafb ,token {_afd ,false });_afd ="\u0030";};fallthrough;case _edb >="\u0030"&&_edb <="\u0039"||_edb =="\u0065":_afd +=_edb ; -case _edb =="\u002d":if _d .HasSuffix (_afd ,"\u0065"){_afd +=_edb ;}else {_aafb ,_ =_abed (_aafb ,_afd );_afd =_edb ;};default:_aafb ,_afd =_abed (_aafb ,_afd );};};_aafb ,_ =_abed (_aafb ,_afd );return _aafb ;};func (_dff *Subpath )compare (_bcf *Subpath )bool {if len (_dff .Commands )!=len (_bcf .Commands ){return false ; -};for _fcb ,_fef :=range _dff .Commands {if !_fef .compare (_bcf .Commands [_fcb ]){return false ;};};return true ;};func _egd (_efc []*Command )*Path {_bgcf :=&Path {};var _fdbg []*Command ;for _fee ,_gefe :=range _efc {switch _d .ToLower (_gefe .Symbol ){case _edgf ._ddf :if len (_fdbg )> 0{_bgcf .Subpaths =append (_bgcf .Subpaths ,&Subpath {_fdbg }); -};_fdbg =[]*Command {_gefe };case _edgf ._aec :_fdbg =append (_fdbg ,_gefe );_bgcf .Subpaths =append (_bgcf .Subpaths ,&Subpath {_fdbg });_fdbg =[]*Command {};default:_fdbg =append (_fdbg ,_gefe );if len (_efc )==_fee +1{_bgcf .Subpaths =append (_bgcf .Subpaths ,&Subpath {_fdbg }); -};};};return _bgcf ;};func _aed (_fed *GraphicSVG ,_gaa *_cbf .ContentCreator ){_gaa .Add_q ();_fed .Style .toContentStream (_gaa );_fdg ,_gad :=_edf (_fed .Attributes ["\u0063\u0078"],64);if _gad !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_gad .Error ()); -};_gaf ,_gad :=_edf (_fed .Attributes ["\u0063\u0079"],64);if _gad !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_gad .Error ()); -};_fc ,_gad :=_edf (_fed .Attributes ["\u0072"],64);if _gad !=nil {_dg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020`\u0072\u0060\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_gad .Error ()); -};_baa :=_fc *_fed ._gggf ;_acf :=_fc *_fed ._gggf ;_ceg :=_baa *_db ;_dga :=_acf *_db ;_aa :=_cb .NewCubicBezierPath ();_aa =_aa .AppendCurve (_cb .NewCubicBezierCurve (-_baa ,0,-_baa ,_dga ,-_ceg ,_acf ,0,_acf ));_aa =_aa .AppendCurve (_cb .NewCubicBezierCurve (0,_acf ,_ceg ,_acf ,_baa ,_dga ,_baa ,0)); -_aa =_aa .AppendCurve (_cb .NewCubicBezierCurve (_baa ,0,_baa ,-_dga ,_ceg ,-_acf ,0,-_acf ));_aa =_aa .AppendCurve (_cb .NewCubicBezierCurve (0,-_acf ,-_ceg ,-_acf ,-_baa ,-_dga ,-_baa ,0));_aa =_aa .Offset (_fdg *_fed ._gggf ,_gaf *_fed ._gggf );if _fed .Style .StrokeWidth > 0{_aa =_aa .Offset (_fed .Style .StrokeWidth /2,_fed .Style .StrokeWidth /2); -};_cb .DrawBezierPathWithCreator (_aa ,_gaa );if _fed .Style .FillColor !=""&&_fed .Style .StrokeColor !=""{_gaa .Add_B ();}else if _fed .Style .FillColor !=""{_gaa .Add_f ();}else if _fed .Style .StrokeColor !=""{_gaa .Add_S ();};_gaa .Add_h ();_gaa .Add_Q (); -};func _gea (_fdb *GraphicSVG ,_gef *_cbf .ContentCreator ){_gef .Add_q ();_fdb .Style .toContentStream (_gef );_edg ,_dagd :=_edf (_fdb .Attributes ["\u0078"],64);if _dagd !=nil {_dg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020`\u0078\u0060\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_dagd .Error ()); -};_bba ,_dagd :=_edf (_fdb .Attributes ["\u0079"],64);if _dagd !=nil {_dg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020`\u0079\u0060\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_dagd .Error ()); -};_cba ,_dagd :=_edf (_fdb .Attributes ["\u0077\u0069\u0064t\u0068"],64);if _dagd !=nil {_dg .Log .Debug ("\u0045\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0073\u0074\u0072\u006f\u006b\u0065\u0020\u0077\u0069\u0064\u0074\u0068\u0020v\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_dagd .Error ()); -};_bbd ,_dagd :=_edf (_fdb .Attributes ["\u0068\u0065\u0069\u0067\u0068\u0074"],64);if _dagd !=nil {_dg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077h\u0069\u006c\u0065 \u0070\u0061\u0072\u0073i\u006e\u0067\u0020\u0073\u0074\u0072\u006f\u006b\u0065\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_dagd .Error ()); -};_gef .Add_re (_edg *_fdb ._gggf ,_bba *_fdb ._gggf ,_cba *_fdb ._gggf ,_bbd *_fdb ._gggf );if _fdb .Style .FillColor !=""&&_fdb .Style .StrokeColor !=""{_gef .Add_B ();}else if _fdb .Style .FillColor !=""{_gef .Add_f ();}else if _fdb .Style .StrokeColor !=""{_gef .Add_S (); -};_gef .Add_Q ();};var _edgf commands ;func (_bae *GraphicSVG )ToContentCreator (cc *_cbf .ContentCreator ,scaleX ,scaleY ,translateX ,translateY float64 )*_cbf .ContentCreator {if _bae .Name =="\u0073\u0076\u0067"{_bae .SetScaling (scaleX ,scaleY );cc .Add_cm (1,0,0,1,translateX ,translateY ); -_bae .setDefaultScaling (_bae ._gggf );cc .Add_q ();_faa :=_gg .Max (scaleX ,scaleY );cc .Add_re (_bae .ViewBox .X *_faa ,_bae .ViewBox .Y *_faa ,_bae .ViewBox .W *_faa ,_bae .ViewBox .H *_faa );cc .Add_W ();cc .Add_n ();for _ ,_bdf :=range _bae .Children {_bdf .ViewBox =_bae .ViewBox ; -_bdf .toContentStream (cc );};cc .Add_Q ();return cc ;};return nil ;};func _edgg (_abg *GraphicSVG ,_fbc *_cbf .ContentCreator ){_fbc .Add_q ();_abg .Style .toContentStream (_fbc );_fdc ,_bab :=_edf (_abg .Attributes ["\u0063\u0078"],64);if _bab !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_bab .Error ()); -};_fgc ,_bab :=_edf (_abg .Attributes ["\u0063\u0079"],64);if _bab !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_bab .Error ()); -};_cgc ,_bab :=_edf (_abg .Attributes ["\u0072\u0078"],64);if _bab !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_bab .Error ()); -};_ggg ,_bab :=_edf (_abg .Attributes ["\u0072\u0079"],64);if _bab !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_bab .Error ()); -};_fdbf :=_cgc *_abg ._gggf ;_cf :=_ggg *_abg ._gggf ;_acb :=_fdc *_abg ._gggf ;_cag :=_fgc *_abg ._gggf ;_gce :=_fdbf *_db ;_cea :=_cf *_db ;_ede :=_cb .NewCubicBezierPath ();_ede =_ede .AppendCurve (_cb .NewCubicBezierCurve (-_fdbf ,0,-_fdbf ,_cea ,-_gce ,_cf ,0,_cf )); -_ede =_ede .AppendCurve (_cb .NewCubicBezierCurve (0,_cf ,_gce ,_cf ,_fdbf ,_cea ,_fdbf ,0));_ede =_ede .AppendCurve (_cb .NewCubicBezierCurve (_fdbf ,0,_fdbf ,-_cea ,_gce ,-_cf ,0,-_cf ));_ede =_ede .AppendCurve (_cb .NewCubicBezierCurve (0,-_cf ,-_gce ,-_cf ,-_fdbf ,-_cea ,-_fdbf ,0)); -_ede =_ede .Offset (_acb ,_cag );if _abg .Style .StrokeWidth > 0{_ede =_ede .Offset (_abg .Style .StrokeWidth /2,_abg .Style .StrokeWidth /2);};_cb .DrawBezierPathWithCreator (_ede ,_fbc );if _abg .Style .FillColor !=""&&_abg .Style .StrokeColor !=""{_fbc .Add_B (); -}else if _abg .Style .FillColor !=""{_fbc .Add_f ();}else if _abg .Style .StrokeColor !=""{_fbc .Add_S ();};_fbc .Add_h ();_fbc .Add_Q ();};type GraphicSVG struct{ViewBox struct{X ,Y ,W ,H float64 ;};Name string ;Attributes map[string ]string ;Children []*GraphicSVG ; -Content string ;Style *GraphicSVGStyle ;Width float64 ;Height float64 ;_gggf float64 ;};func _bda (_cfc string )(*Path ,error ){_edgf =_gfab ();_dee ,_deba :=_adc (_beg (_cfc ));if _deba !=nil {return nil ,_deba ;};return _egd (_dee ),nil ;};func _gbga (_afb map[string ]string ,_dfb float64 )(*GraphicSVGStyle ,error ){_ggfa :=_efa (); -_gdd ,_adb :=_afb ["\u0066\u0069\u006c\u006c"];if _adb {_ggfa .FillColor =_gdd ;if _gdd =="\u006e\u006f\u006e\u0065"{_ggfa .FillColor ="";};};_gfe ,_ecdf :=_afb ["\u0073\u0074\u0072\u006f\u006b\u0065"];if _ecdf {_ggfa .StrokeColor =_gfe ;if _gfe =="\u006e\u006f\u006e\u0065"{_ggfa .StrokeColor =""; -};};_fgb ,_efg :=_afb ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"];if _efg {_fcef ,_feb :=_edf (_fgb ,64);if _feb !=nil {return nil ,_feb ;};_ggfa .StrokeWidth =_fcef *_dfb ;};return _ggfa ,nil ;};type Path struct{Subpaths []*Subpath ; -};func _bfc (_fcfg string )(_abb ,_dcd string ){if _fcfg ==""||(_fcfg [len (_fcfg )-1]>='0'&&_fcfg [len (_fcfg )-1]<='9'){return _fcfg ,"";};_abb =_fcfg ;for _ ,_dfda :=range _da {if _d .Contains (_abb ,_dfda ){_dcd =_dfda ;};_abb =_d .TrimSuffix (_abb ,_dfda ); -};return ;};func (_fgf *Command )compare (_cgb *Command )bool {if _fgf .Symbol !=_cgb .Symbol {return false ;};for _eege ,_fcf :=range _fgf .Params {if _fcf !=_cgb .Params [_eege ]{return false ;};};return true ;};func _ddff (_cddgd []float64 )[]float64 {for _acc ,_dedd :=0,len (_cddgd )-1; -_acc < _dedd ;_acc ,_dedd =_acc +1,_dedd -1{_cddgd [_acc ],_cddgd [_dedd ]=_cddgd [_dedd ],_cddgd [_acc ];};return _cddgd ;};func (_cdd *GraphicSVGStyle )toContentStream (_gag *_cbf .ContentCreator ){if _cdd ==nil {return ;};if _cdd .FillColor !=""{var _cddg ,_fca ,_dad float64 ; -if _gcbb ,_cee :=_cg .ColorMap [_cdd .FillColor ];_cee {_gebe ,_agbd ,_ead ,_ :=_gcbb .RGBA ();_cddg ,_fca ,_dad =float64 (_gebe ),float64 (_agbd ),float64 (_ead );}else {_cddg ,_fca ,_dad =_eag (_cdd .FillColor );};_gag .Add_rg (_cddg ,_fca ,_dad );}; -if _cdd .StrokeColor !=""{var _eae ,_add ,_deb float64 ;if _bce ,_gadg :=_cg .ColorMap [_cdd .StrokeColor ];_gadg {_bea ,_ffag ,_ada ,_ :=_bce .RGBA ();_eae ,_add ,_deb =float64 (_bea )/255.0,float64 (_ffag )/255.0,float64 (_ada )/255.0;}else {_eae ,_add ,_deb =_eag (_cdd .StrokeColor ); -};_gag .Add_RG (_eae ,_add ,_deb );};if _cdd .StrokeWidth > 0{_gag .Add_w (_cdd .StrokeWidth );};};func _gfab ()commands {var _cgd =map[string ]int {"\u006d":2,"\u007a":0,"\u006c":2,"\u0068":1,"\u0076":1,"\u0063":6,"\u0073":4,"\u0071":4,"\u0074":2,"\u0061":7}; -var _ebeb []string ;for _fceg :=range _cgd {_ebeb =append (_ebeb ,_fceg );};return commands {_ebeb ,_cgd ,"\u006d","\u007a"};};func _eag (_facg string )(_ebg ,_ebge ,_dbb float64 ){if (len (_facg )!=4&&len (_facg )!=7)||_facg [0]!='#'{_dg .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",_facg ); -return _ebg ,_ebge ,_dbb ;};var _gebg ,_adea ,_cdf int ;if len (_facg )==4{var _daa ,_acbe ,_gdf int ;_dabg ,_bbda :=_g .Sscanf (_facg ,"\u0023\u0025\u0031\u0078\u0025\u0031\u0078\u0025\u0031\u0078",&_daa ,&_acbe ,&_gdf );if _bbda !=nil {_dg .Log .Debug ("\u0049\u006e\u0076a\u006c\u0069\u0064\u0020h\u0065\u0078\u0020\u0063\u006f\u0064\u0065:\u0020\u0025\u0073\u002c\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_facg ,_bbda ); -return _ebg ,_ebge ,_dbb ;};if _dabg !=3{_dg .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",_facg );return _ebg ,_ebge ,_dbb ;};_gebg =_daa *16+_daa ;_adea =_acbe *16+_acbe ;_cdf =_gdf *16+_gdf ; -}else {_afgf ,_edc :=_g .Sscanf (_facg ,"\u0023\u0025\u0032\u0078\u0025\u0032\u0078\u0025\u0032\u0078",&_gebg ,&_adea ,&_cdf );if _edc !=nil {_dg .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",_facg ); -return _ebg ,_ebge ,_dbb ;};if _afgf !=3{_dg .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0068\u0065\u0078\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0073,\u0020\u006e\u0020\u0021\u003d\u0020\u0033 \u0028\u0025\u0064\u0029",_facg ,_afgf ); -return _ebg ,_ebge ,_dbb ;};};_geff :=float64 (_gebg )/255.0;_abbd :=float64 (_adea )/255.0;_egcf :=float64 (_cdf )/255.0;return _geff ,_abbd ,_egcf ;};func ParseFromStream (source _ge .Reader )(*GraphicSVG ,error ){_gcdb :=_e .NewDecoder (source );_gcdb .CharsetReader =_ce .NewReaderLabel ; -_bgfc ,_cae :=_bag (_gcdb );if _cae !=nil {return nil ,_cae ;};if _cfd :=_bgfc .Decode (_gcdb );_cfd !=nil &&_cfd !=_ge .EOF {return nil ,_cfd ;};return _bgfc ,nil ;};func (_dgb *commands )isCommand (_bafa string )bool {for _ ,_gdg :=range _dgb ._fgbe {if _d .ToLower (_bafa )==_gdg {return true ; -};};return false ;};type commands struct{_fgbe []string ;_ecae map[string ]int ;_ddf string ;_aec string ;};func _fbb (_dgcd string )(_cbe []float64 ,_aada error ){var _gfg float64 ;_aea :=0;_eec :=true ;for _fbg ,_dca :=range _dgcd {if _dca =='.'{if _eec {_eec =false ; -continue ;};_gfg ,_aada =_edf (_dgcd [_aea :_fbg ],64);if _aada !=nil {return ;};_cbe =append (_cbe ,_gfg );_aea =_fbg ;};};_gfg ,_aada =_edf (_dgcd [_aea :],64);if _aada !=nil {return ;};_cbe =append (_cbe ,_gfg );return ;};func ParseFromFile (path string )(*GraphicSVG ,error ){_cdg ,_fcd :=_fb .Open (path ); -if _fcd !=nil {return nil ,_fcd ;};defer _cdg .Close ();return ParseFromStream (_cdg );};func (_beb *GraphicSVG )setDefaultScaling (_baae float64 ){_beb ._gggf =_baae ;if _beb .Style !=nil &&_beb .Style .StrokeWidth > 0{_beb .Style .StrokeWidth =_beb .Style .StrokeWidth *_beb ._gggf ; -};for _ ,_gaff :=range _beb .Children {_gaff .setDefaultScaling (_baae );};};type token struct{_baeb string ;_dgbc bool ;};func _edf (_dgaf string ,_afg int )(float64 ,error ){_fdf ,_dba :=_bfc (_dgaf );_acgc ,_cab :=_f .ParseFloat (_fdf ,_afg );if _cab !=nil {return 0,_cab ; -};if _fcc ,_egb :=_cbc [_dba ];_egb {_acgc =_acgc *_fcc ;}else {_acgc =_acgc *_ee ;};return _acgc ,nil ;};func _abed (_caf []token ,_ddb string )([]token ,string ){if _ddb !=""{_caf =append (_caf ,token {_ddb ,false });_ddb ="";};return _caf ,_ddb ;};type Subpath struct{Commands []*Command ; -};func _ggge (_ef *GraphicSVG ,_cca *_cbf .ContentCreator ){_cca .Add_q ();_ef .Style .toContentStream (_cca );_gd ,_afa :=_edf (_ef .Attributes ["\u0078\u0031"],64);if _afa !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_afa .Error ()); -};_gedg ,_afa :=_edf (_ef .Attributes ["\u0079\u0031"],64);if _afa !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_afa .Error ()); -};_ege ,_afa :=_edf (_ef .Attributes ["\u0078\u0032"],64);if _afa !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_afa .Error ()); -};_dfd ,_afa :=_edf (_ef .Attributes ["\u0079\u0032"],64);if _afa !=nil {_dg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_afa .Error ()); -};_cca .Add_m (_gd *_ef ._gggf ,_gedg *_ef ._gggf );_cca .Add_l (_ege *_ef ._gggf ,_dfd *_ef ._gggf );if _ef .Style .FillColor !=""&&_ef .Style .StrokeColor !=""{_cca .Add_B ();}else if _ef .Style .FillColor !=""{_cca .Add_f ();}else if _ef .Style .StrokeColor !=""{_cca .Add_S (); -};_cca .Add_h ();_cca .Add_Q ();};func _fac (_fdbb float64 ,_efcf int )float64 {_fcca :=_gg .Pow (10,float64 (_efcf ));return float64 (_bef (_fdbb *_fcca ))/_fcca ;};func _gba (_dgc *GraphicSVG ,_eeg *_cbf .ContentCreator ){_eeg .Add_q ();_dgc .Style .toContentStream (_eeg ); -_eef ,_cac :=_eea (_dgc .Attributes ["\u0070\u006f\u0069\u006e\u0074\u0073"]);if _cac !=nil {_dg .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0025\u0076",_cac ); -return ;};if len (_eef )%2> 0{_dg .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0069n\u0076\u0061l\u0069\u0064\u0020\u0070\u006f\u0069\u006e\u0074s\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006ce\u006e\u0067\u0074\u0068");return ; -};for _bga :=0;_bga < len (_eef );{if _bga ==0{_eeg .Add_m (_eef [_bga ]*_dgc ._gggf ,_eef [_bga +1]*_dgc ._gggf );}else {_eeg .Add_l (_eef [_bga ]*_dgc ._gggf ,_eef [_bga +1]*_dgc ._gggf );};_bga +=2;};_eeg .Add_l (_eef [0]*_dgc ._gggf ,_eef [1]*_dgc ._gggf ); -if _dgc .Style .FillColor !=""&&_dgc .Style .StrokeColor !=""{_eeg .Add_B ();}else if _dgc .Style .FillColor !=""{_eeg .Add_f ();}else if _dgc .Style .StrokeColor !=""{_eeg .Add_S ();};_eeg .Add_h ();_eeg .Add_Q ();};func _bag (_ebe *_e .Decoder )(*GraphicSVG ,error ){for {_abf ,_ebec :=_ebe .Token (); -if _abf ==nil &&_ebec ==_ge .EOF {break ;};if _ebec !=nil {return nil ,_ebec ;};switch _bgfcg :=_abf .(type ){case _e .StartElement :return _dea (_bgfcg ),nil ;};};return &GraphicSVG {},nil ;};var (_da =[]string {"\u0063\u006d","\u006d\u006d","\u0070\u0078","\u0070\u0074"}; -_cbc =map[string ]float64 {"\u0063\u006d":_gf ,"\u006d\u006d":_a ,"\u0070\u0078":_ee ,"\u0070\u0074":1};);func _dea (_aae _e .StartElement )*GraphicSVG {_bde :=&GraphicSVG {};_dcc :=make (map[string ]string );for _ ,_fff :=range _aae .Attr {_dcc [_fff .Name .Local ]=_fff .Value ; -};_bde .Name =_aae .Name .Local ;_bde .Attributes =_dcc ;_bde ._gggf =1;if _bde .Name =="\u0073\u0076\u0067"{_fce ,_bbdd :=_eea (_dcc ["\u0076i\u0065\u0077\u0042\u006f\u0078"]);if _bbdd !=nil {_dg .Log .Debug ("\u0055\u006ea\u0062\u006c\u0065\u0020t\u006f\u0020p\u0061\u0072\u0073\u0065\u0020\u0076\u0069\u0065w\u0042\u006f\u0078\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074e\u003a\u0020\u0025\u0076",_bbdd ); -return nil ;};_bde .ViewBox .X =_fce [0];_bde .ViewBox .Y =_fce [1];_bde .ViewBox .W =_fce [2];_bde .ViewBox .H =_fce [3];_bde .Width =_bde .ViewBox .W ;_bde .Height =_bde .ViewBox .H ;if _aad ,_ade :=_dcc ["\u0077\u0069\u0064t\u0068"];_ade {_gee ,_deaa :=_edf (_aad ,64); -if _deaa !=nil {_dg .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073e\u0020\u0077\u0069\u0064\u0074\u0068\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020%\u0076",_deaa );return nil ;};_bde .Width =_gee ; -};if _bdd ,_eca :=_dcc ["\u0068\u0065\u0069\u0067\u0068\u0074"];_eca {_dfe ,_adeg :=_edf (_bdd ,64);if _adeg !=nil {_dg .Log .Debug ("\u0055\u006eab\u006c\u0065\u0020t\u006f\u0020\u0070\u0061rse\u0020he\u0069\u0067\u0068\u0074\u0020\u0061\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020%\u0076",_adeg ); -return nil ;};_bde .Height =_dfe ;};if _bde .Width > 0&&_bde .Height > 0{_bde ._gggf =_bde .Width /_bde .ViewBox .W ;};};return _bde ;};const (_ee =0.72;_gf =28.3464;_a =_gf /10;_db =0.551784;); \ No newline at end of file +package svg ;import (_gb "encoding/xml";_e "fmt";_ggd "github.com/unidoc/unipdf/v3/common";_be "github.com/unidoc/unipdf/v3/contentstream";_f "github.com/unidoc/unipdf/v3/contentstream/draw";_af "github.com/unidoc/unipdf/v3/internal/graphic2d";_d "golang.org/x/net/html/charset"; +_a "io";_eb "math";_ca "os";_gg "strconv";_g "strings";_c "unicode";);func (_ddb *GraphicSVG )SetScaling (xFactor ,yFactor float64 ){_defa :=_ddb .Width /_ddb .ViewBox .W ;_edef :=_ddb .Height /_ddb .ViewBox .H ;_ddb .setDefaultScaling (_eb .Max (_defa ,_edef )); +for _ ,_afd :=range _ddb .Children {_afd .SetScaling (xFactor ,yFactor );};};func (_fac *GraphicSVG )Decode (decoder *_gb .Decoder )error {for {_gaeb ,_aac :=decoder .Token ();if _gaeb ==nil &&_aac ==_a .EOF {break ;};if _aac !=nil {return _aac ;};switch _bbfg :=_gaeb .(type ){case _gb .StartElement :_efa :=_bc (_bbfg ); +_ffe :=_efa .Decode (decoder );if _ffe !=nil {return _ffe ;};_fac .Children =append (_fac .Children ,_efa );case _gb .CharData :_edd :=_g .TrimSpace (string (_bbfg ));if _edd !=""{_fac .Content =string (_bbfg );};case _gb .EndElement :if _bbfg .Name .Local ==_fac .Name {return nil ; +};};};return nil ;};func _cbf ()commands {var _cccb =map[string ]int {"\u006d":2,"\u007a":0,"\u006c":2,"\u0068":1,"\u0076":1,"\u0063":6,"\u0073":4,"\u0071":4,"\u0074":2,"\u0061":7};var _gfd []string ;for _fadc :=range _cccb {_gfd =append (_gfd ,_fadc ); +};return commands {_gfd ,_cccb ,"\u006d","\u007a"};};func _ebd (_aega map[string ]string ,_ecc float64 )(*GraphicSVGStyle ,error ){_ege :=_efaa ();_dgf ,_dfa :=_aega ["\u0066\u0069\u006c\u006c"];if _dfa {_ege .FillColor =_dgf ;if _dgf =="\u006e\u006f\u006e\u0065"{_ege .FillColor =""; +};};_dead ,_aae :=_aega ["\u0073\u0074\u0072\u006f\u006b\u0065"];if _aae {_ege .StrokeColor =_dead ;if _dead =="\u006e\u006f\u006e\u0065"{_ege .StrokeColor ="";};};_dab ,_cef :=_aega ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"]; +if _cef {_bcd ,_gebd :=_eccc (_dab ,64);if _gebd !=nil {return nil ,_gebd ;};_ege .StrokeWidth =_bcd *_ecc ;};return _ege ,nil ;};type Path struct{Subpaths []*Subpath ;};func (_cgbe *Path )compare (_adef *Path )bool {if len (_cgbe .Subpaths )!=len (_adef .Subpaths ){return false ; +};for _ggc ,_efg :=range _cgbe .Subpaths {if !_efg .compare (_adef .Subpaths [_ggc ]){return false ;};};return true ;};func (_efaf *Subpath )compare (_fcab *Subpath )bool {if len (_efaf .Commands )!=len (_fcab .Commands ){return false ;};for _aaa ,_fec :=range _efaf .Commands {if !_fec .compare (_fcab .Commands [_aaa ]){return false ; +};};return true ;};func _cc (_ag *GraphicSVG ,_fb *_be .ContentCreator ){_fb .Add_q ();_ag .Style .toContentStream (_fb );_eg ,_ac :=_ffeagg (_ag .Attributes ["\u0064"]);if _ac !=nil {_ggd .Log .Error ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025s",_ac .Error ()); +};var (_cd ,_agg =0.0,0.0;_df ,_gbb =0.0,0.0;_bb *Command ;);for _ ,_bba :=range _eg .Subpaths {for _ ,_dd :=range _bba .Commands {switch _g .ToLower (_dd .Symbol ){case "\u006d":_df ,_gbb =_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ;if !_dd .isAbsolute (){_df ,_gbb =_cd +_df -_ag .ViewBox .X ,_agg +_gbb -_ag .ViewBox .Y ; +};_fb .Add_m (_cfaa (_df ,3),_cfaa (_gbb ,3));_cd ,_agg =_df ,_gbb ;case "\u0063":_ad ,_ba ,_afg ,_da ,_dae ,_gba :=_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ,_dd .Params [2]*_ag ._edc ,_dd .Params [3]*_ag ._edc ,_dd .Params [4]*_ag ._edc ,_dd .Params [5]*_ag ._edc ; +if !_dd .isAbsolute (){_ad ,_ba ,_afg ,_da ,_dae ,_gba =_cd +_ad ,_agg +_ba ,_cd +_afg ,_agg +_da ,_cd +_dae ,_agg +_gba ;};_fb .Add_c (_cfaa (_ad ,3),_cfaa (_ba ,3),_cfaa (_afg ,3),_cfaa (_da ,3),_cfaa (_dae ,3),_cfaa (_gba ,3));_cd ,_agg =_dae ,_gba ; +case "\u0073":_gd ,_ebg ,_aa ,_eda :=_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ,_dd .Params [2]*_ag ._edc ,_dd .Params [3]*_ag ._edc ;if !_dd .isAbsolute (){_gd ,_ebg ,_aa ,_eda =_cd +_gd ,_agg +_ebg ,_cd +_aa ,_agg +_eda ;};_fb .Add_c (_cfaa (_cd ,3),_cfaa (_agg ,3),_cfaa (_gd ,3),_cfaa (_ebg ,3),_cfaa (_aa ,3),_cfaa (_eda ,3)); +_cd ,_agg =_aa ,_eda ;case "\u006c":_cf ,_cba :=_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ;if !_dd .isAbsolute (){_cf ,_cba =_cd +_cf ,_agg +_cba ;};_fb .Add_l (_cfaa (_cf ,3),_cfaa (_cba ,3));_cd ,_agg =_cf ,_cba ;case "\u0068":_fa :=_dd .Params [0]*_ag ._edc ; +if !_dd .isAbsolute (){_fa =_cd +_fa ;};_fb .Add_l (_cfaa (_fa ,3),_cfaa (_agg ,3));_cd =_fa ;case "\u0076":_bgc :=_dd .Params [0]*_ag ._edc ;if !_dd .isAbsolute (){_bgc =_agg +_bgc ;};_fb .Add_l (_cfaa (_cd ,3),_cfaa (_bgc ,3));_agg =_bgc ;case "\u0071":_fg ,_bga ,_ae ,_cfb :=_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ,_dd .Params [2]*_ag ._edc ,_dd .Params [3]*_ag ._edc ; +if !_dd .isAbsolute (){_fg ,_bga ,_ae ,_cfb =_cd +_fg ,_agg +_bga ,_cd +_ae ,_agg +_cfb ;};_afb ,_ga :=_af .QuadraticToCubicBezier (_cd ,_agg ,_fg ,_bga ,_ae ,_cfb );_fb .Add_c (_cfaa (_afb .X ,3),_cfaa (_afb .Y ,3),_cfaa (_ga .X ,3),_cfaa (_ga .Y ,3),_cfaa (_ae ,3),_cfaa (_cfb ,3)); +_cd ,_agg =_ae ,_cfb ;case "\u0074":var _baf ,_ee _af .Point ;_ff ,_eae :=_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ;if !_dd .isAbsolute (){_ff ,_eae =_cd +_ff ,_agg +_eae ;};if _bb !=nil &&_g .ToLower (_bb .Symbol )=="\u0071"{_ef :=_af .Point {X :_bb .Params [0]*_ag ._edc ,Y :_bb .Params [1]*_ag ._edc }; +_db :=_af .Point {X :_bb .Params [2]*_ag ._edc ,Y :_bb .Params [3]*_ag ._edc };_daf :=_db .Mul (2.0).Sub (_ef );_baf ,_ee =_af .QuadraticToCubicBezier (_cd ,_agg ,_daf .X ,_daf .Y ,_ff ,_eae );};_fb .Add_c (_cfaa (_baf .X ,3),_cfaa (_baf .Y ,3),_cfaa (_ee .X ,3),_cfaa (_ee .Y ,3),_cfaa (_ff ,3),_cfaa (_eae ,3)); +_cd ,_agg =_ff ,_eae ;case "\u0061":_dbb ,_agf :=_dd .Params [0]*_ag ._edc ,_dd .Params [1]*_ag ._edc ;_ede :=_dd .Params [2];_ada :=_dd .Params [3]> 0;_afgg :=_dd .Params [4]> 0;_gea ,_aee :=_dd .Params [5]*_ag ._edc ,_dd .Params [6]*_ag ._edc ;if !_dd .isAbsolute (){_gea ,_aee =_cd +_gea ,_agg +_aee ; +};_cdb :=_af .EllipseToCubicBeziers (_cd ,_agg ,_dbb ,_agf ,_ede ,_ada ,_afgg ,_gea ,_aee );for _ ,_fc :=range _cdb {_fb .Add_c (_cfaa (_fc [1].X ,3),_cfaa ((_fc [1].Y ),3),_cfaa ((_fc [2].X ),3),_cfaa ((_fc [2].Y ),3),_cfaa ((_fc [3].X ),3),_cfaa ((_fc [3].Y ),3)); +};_cd ,_agg =_gea ,_aee ;case "\u007a":_fb .Add_h ();};_bb =_dd ;};};if _ag .Style .FillColor !=""&&_ag .Style .StrokeColor !=""{_fb .Add_B ();}else if _ag .Style .FillColor !=""{_fb .Add_f ();}else if _ag .Style .StrokeColor !=""{_fb .Add_S ();};_fb .Add_h (); +_fb .Add_Q ();};func _aab (_dg *GraphicSVG ,_fe *_be .ContentCreator ){_fe .Add_q ();_dg .Style .toContentStream (_fe );_cgb ,_bf :=_eabd (_dg .Attributes ["\u0070\u006f\u0069\u006e\u0074\u0073"]);if _bf !=nil {_ggd .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0025\u0076",_bf ); +return ;};if len (_cgb )%2> 0{_ggd .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0069n\u0076\u0061l\u0069\u0064\u0020\u0070\u006f\u0069\u006e\u0074s\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006ce\u006e\u0067\u0074\u0068");return ; +};for _ffa :=0;_ffa < len (_cgb );{if _ffa ==0{_fe .Add_m (_cgb [_ffa ]*_dg ._edc ,_cgb [_ffa +1]*_dg ._edc );}else {_fe .Add_l (_cgb [_ffa ]*_dg ._edc ,_cgb [_ffa +1]*_dg ._edc );};_ffa +=2;};_fe .Add_l (_cgb [0]*_dg ._edc ,_cgb [1]*_dg ._edc );if _dg .Style .FillColor !=""&&_dg .Style .StrokeColor !=""{_fe .Add_B (); +}else if _dg .Style .FillColor !=""{_fe .Add_f ();}else if _dg .Style .StrokeColor !=""{_fe .Add_S ();};_fe .Add_h ();_fe .Add_Q ();};func _caab (_bbab []*Command )*Path {_agbb :=&Path {};var _eefa []*Command ;for _ccbc ,_ccgg :=range _bbab {switch _g .ToLower (_ccgg .Symbol ){case _eca ._bgcb :if len (_eefa )> 0{_agbb .Subpaths =append (_agbb .Subpaths ,&Subpath {_eefa }); +};_eefa =[]*Command {_ccgg };case _eca ._eeca :_eefa =append (_eefa ,_ccgg );_agbb .Subpaths =append (_agbb .Subpaths ,&Subpath {_eefa });_eefa =[]*Command {};default:_eefa =append (_eefa ,_ccgg );if len (_bbab )==_ccbc +1{_agbb .Subpaths =append (_agbb .Subpaths ,&Subpath {_eefa }); +};};};return _agbb ;};func _dcba (_faaa string )(_aeda ,_dfge string ){if _faaa ==""||(_faaa [len (_faaa )-1]>='0'&&_faaa [len (_faaa )-1]<='9'){return _faaa ,"";};_aeda =_faaa ;for _ ,_bab :=range _ea {if _g .Contains (_aeda ,_bab ){_dfge =_bab ;};_aeda =_g .TrimSuffix (_aeda ,_bab ); +};return ;};const (_ec =0.72;_ebe =28.3464;_ge =_ebe /10;_ed =0.551784;);func _eccc (_gbg string ,_eefg int )(float64 ,error ){_aedbf ,_bfcg :=_dcba (_gbg );_ccda ,_cdbg :=_gg .ParseFloat (_aedbf ,_eefg );if _cdbg !=nil {return 0,_cdbg ;};if _bdd ,_dbbb :=_de [_bfcg ]; +_dbbb {_ccda =_ccda *_bdd ;}else {_ccda =_ccda *_ec ;};return _ccda ,nil ;};func (_defag *Command )isAbsolute ()bool {return _defag .Symbol ==_g .ToUpper (_defag .Symbol )};func _eabd (_bfef string )([]float64 ,error ){_eeaa :=-1;var _aagd []float64 ;_abg :=' '; +for _beg ,_aff :=range _bfef {if !_c .IsNumber (_aff )&&_aff !='.'&&!(_aff =='-'&&_abg =='e')&&_aff !='e'{if _eeaa !=-1{_efe ,_feg :=_eecd (_bfef [_eeaa :_beg ]);if _feg !=nil {return _aagd ,_feg ;};_aagd =append (_aagd ,_efe ...);};if _aff =='-'{_eeaa =_beg ; +}else {_eeaa =-1;};}else if _eeaa ==-1{_eeaa =_beg ;};_abg =_aff ;};if _eeaa !=-1&&_eeaa !=len (_bfef ){_dabe ,_ecb :=_eecd (_bfef [_eeaa :]);if _ecb !=nil {return _aagd ,_ecb ;};_aagd =append (_aagd ,_dabe ...);};return _aagd ,nil ;};type GraphicSVGStyle struct{FillColor string ; +StrokeColor string ;StrokeWidth float64 ;};func (_bdg *GraphicSVGStyle )toContentStream (_gdg *_be .ContentCreator ){if _bdg ==nil {return ;};if _bdg .FillColor !=""{var _cec ,_ffb ,_fcfb float64 ;if _ebf ,_dcb :=_af .ColorMap [_bdg .FillColor ];_dcb {_cgg ,_aadd ,_cbbb ,_ :=_ebf .RGBA (); +_cec ,_ffb ,_fcfb =float64 (_cgg ),float64 (_aadd ),float64 (_cbbb );}else {_cec ,_ffb ,_fcfb =_gbbe (_bdg .FillColor );};_gdg .Add_rg (_cec ,_ffb ,_fcfb );};if _bdg .StrokeColor !=""{var _fcd ,_ddg ,_fcdb float64 ;if _fgf ,_acd :=_af .ColorMap [_bdg .StrokeColor ]; +_acd {_gcdc ,_gdf ,_efab ,_ :=_fgf .RGBA ();_fcd ,_ddg ,_fcdb =float64 (_gcdc )/255.0,float64 (_gdf )/255.0,float64 (_efab )/255.0;}else {_fcd ,_ddg ,_fcdb =_gbbe (_bdg .StrokeColor );};_gdg .Add_RG (_fcd ,_ddg ,_fcdb );};if _bdg .StrokeWidth > 0{_gdg .Add_w (_bdg .StrokeWidth ); +};};func _efaa ()*GraphicSVGStyle {return &GraphicSVGStyle {FillColor :"\u00230\u0030\u0030\u0030\u0030\u0030",StrokeColor :"",StrokeWidth :0};};func (_cad *GraphicSVG )setDefaultScaling (_dee float64 ){_cad ._edc =_dee ;if _cad .Style !=nil &&_cad .Style .StrokeWidth > 0{_cad .Style .StrokeWidth =_cad .Style .StrokeWidth *_cad ._edc ; +};for _ ,_eec :=range _cad .Children {_eec .setDefaultScaling (_dee );};};func _eea (_ceg *_gb .Decoder )(*GraphicSVG ,error ){for {_cdc ,_ead :=_ceg .Token ();if _cdc ==nil &&_ead ==_a .EOF {break ;};if _ead !=nil {return nil ,_ead ;};switch _ade :=_cdc .(type ){case _gb .StartElement :return _bc (_ade ),nil ; +};};return &GraphicSVG {},nil ;};type commands struct{_fff []string ;_cfe map[string ]int ;_bgcb string ;_eeca string ;};func (_gfc *Command )compare (_afbe *Command )bool {if _gfc .Symbol !=_afbe .Symbol {return false ;};for _dbd ,_eadb :=range _gfc .Params {if _eadb !=_afbe .Params [_dbd ]{return false ; +};};return true ;};func (_fbd *commands )isCommand (_adc string )bool {for _ ,_acf :=range _fbd ._fff {if _g .ToLower (_adc )==_acf {return true ;};};return false ;};type Subpath struct{Commands []*Command ;};func _ffeagg (_dff string )(*Path ,error ){_eca =_cbf (); +_dfgf ,_agfa :=_fcb (_fefa (_dff ));if _agfa !=nil {return nil ,_agfa ;};return _caab (_dfgf ),nil ;};type GraphicSVG struct{ViewBox struct{X ,Y ,W ,H float64 ;};Name string ;Attributes map[string ]string ;Children []*GraphicSVG ;Content string ;Style *GraphicSVGStyle ; +Width float64 ;Height float64 ;_edc float64 ;};func _gbbe (_aada string )(_aca ,_fba ,_efaff float64 ){if (len (_aada )!=4&&len (_aada )!=7)||_aada [0]!='#'{_ggd .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",_aada ); +return _aca ,_fba ,_efaff ;};var _eeb ,_add ,_ffeac int ;if len (_aada )==4{var _fbbb ,_bbbg ,_abe int ;_abd ,_bcc :=_e .Sscanf (_aada ,"\u0023\u0025\u0031\u0078\u0025\u0031\u0078\u0025\u0031\u0078",&_fbbb ,&_bbbg ,&_abe );if _bcc !=nil {_ggd .Log .Debug ("\u0049\u006e\u0076a\u006c\u0069\u0064\u0020h\u0065\u0078\u0020\u0063\u006f\u0064\u0065:\u0020\u0025\u0073\u002c\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_aada ,_bcc ); +return _aca ,_fba ,_efaff ;};if _abd !=3{_ggd .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",_aada );return _aca ,_fba ,_efaff ;};_eeb =_fbbb *16+_fbbb ;_add =_bbbg *16+_bbbg ;_ffeac =_abe *16+_abe ; +}else {_gdfe ,_afc :=_e .Sscanf (_aada ,"\u0023\u0025\u0032\u0078\u0025\u0032\u0078\u0025\u0032\u0078",&_eeb ,&_add ,&_ffeac );if _afc !=nil {_ggd .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0068\u0065\u0078 \u0063\u006f\u0064\u0065: \u0025\u0073",_aada ); +return _aca ,_fba ,_efaff ;};if _gdfe !=3{_ggd .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0068\u0065\u0078\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0073,\u0020\u006e\u0020\u0021\u003d\u0020\u0033 \u0028\u0025\u0064\u0029",_aada ,_gdfe ); +return _aca ,_fba ,_efaff ;};};_ecgb :=float64 (_eeb )/255.0;_acda :=float64 (_add )/255.0;_fegd :=float64 (_ffeac )/255.0;return _ecgb ,_acda ,_fegd ;};func _ccgd (_dfe []float64 )[]float64 {for _aaba ,_egc :=0,len (_dfe )-1;_aaba < _egc ;_aaba ,_egc =_aaba +1,_egc -1{_dfe [_aaba ],_dfe [_egc ]=_dfe [_egc ],_dfe [_aaba ]; +};return _dfe ;};func (_bfa pathParserError )Error ()string {return _bfa ._cea };var (_ea =[]string {"\u0063\u006d","\u006d\u006d","\u0070\u0078","\u0070\u0074"};_de =map[string ]float64 {"\u0063\u006d":_ebe ,"\u006d\u006d":_ge ,"\u0070\u0078":_ec ,"\u0070\u0074":1}; +);func _ged (_bfac float64 )int {return int (_bfac +_eb .Copysign (0.5,_bfac ))};func _fefa (_egcd string )[]token {var (_gcda []token ;_fge string ;);for _ ,_fbe :=range _egcd {_cabb :=string (_fbe );switch {case _eca .isCommand (_cabb ):_gcda ,_fge =_fef (_gcda ,_fge ); +_gcda =append (_gcda ,token {_cabb ,true });case _cabb =="\u002e":if _fge ==""{_fge ="\u0030";};if _g .Contains (_fge ,_cabb ){_gcda =append (_gcda ,token {_fge ,false });_fge ="\u0030";};fallthrough;case _cabb >="\u0030"&&_cabb <="\u0039"||_cabb =="\u0065":_fge +=_cabb ; +case _cabb =="\u002d":if _g .HasSuffix (_fge ,"\u0065"){_fge +=_cabb ;}else {_gcda ,_ =_fef (_gcda ,_fge );_fge =_cabb ;};default:_gcda ,_fge =_fef (_gcda ,_fge );};};_gcda ,_ =_fef (_gcda ,_fge );return _gcda ;};func (_dgd *GraphicSVG )ToContentCreator (cc *_be .ContentCreator ,scaleX ,scaleY ,translateX ,translateY float64 )*_be .ContentCreator {if _dgd .Name =="\u0073\u0076\u0067"{_dgd .SetScaling (scaleX ,scaleY ); +cc .Add_cm (1,0,0,1,translateX ,translateY );_dgd .setDefaultScaling (_dgd ._edc );cc .Add_q ();_dafc :=_eb .Max (scaleX ,scaleY );cc .Add_re (_dgd .ViewBox .X *_dafc ,_dgd .ViewBox .Y *_dafc ,_dgd .ViewBox .W *_dafc ,_dgd .ViewBox .H *_dafc );cc .Add_W (); +cc .Add_n ();for _ ,_aeg :=range _dgd .Children {_aeg .ViewBox =_dgd .ViewBox ;_aeg .toContentStream (cc );};cc .Add_Q ();return cc ;};return nil ;};func _cfaa (_dbbf float64 ,_bbac int )float64 {_dad :=_eb .Pow (10,float64 (_bbac ));return float64 (_ged (_dbbf *_dad ))/_dad ; +};func _geaf (_gdd *GraphicSVG ,_gef *_be .ContentCreator ){_gef .Add_q ();_gdd .Style .toContentStream (_gef );_cab ,_fd :=_eccc (_gdd .Attributes ["\u0063\u0078"],64);if _fd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fd .Error ()); +};_ggb ,_fd :=_eccc (_gdd .Attributes ["\u0063\u0079"],64);if _fd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fd .Error ()); +};_cbaa ,_fd :=_eccc (_gdd .Attributes ["\u0072"],64);if _fd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020`\u0072\u0060\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_fd .Error ()); +};_ddc :=_cbaa *_gdd ._edc ;_gc :=_cbaa *_gdd ._edc ;_fcf :=_ddc *_ed ;_caa :=_gc *_ed ;_ddd :=_f .NewCubicBezierPath ();_ddd =_ddd .AppendCurve (_f .NewCubicBezierCurve (-_ddc ,0,-_ddc ,_caa ,-_fcf ,_gc ,0,_gc ));_ddd =_ddd .AppendCurve (_f .NewCubicBezierCurve (0,_gc ,_fcf ,_gc ,_ddc ,_caa ,_ddc ,0)); +_ddd =_ddd .AppendCurve (_f .NewCubicBezierCurve (_ddc ,0,_ddc ,-_caa ,_fcf ,-_gc ,0,-_gc ));_ddd =_ddd .AppendCurve (_f .NewCubicBezierCurve (0,-_gc ,-_fcf ,-_gc ,-_ddc ,-_caa ,-_ddc ,0));_ddd =_ddd .Offset (_cab *_gdd ._edc ,_ggb *_gdd ._edc );if _gdd .Style .StrokeWidth > 0{_ddd =_ddd .Offset (_gdd .Style .StrokeWidth /2,_gdd .Style .StrokeWidth /2); +};_f .DrawBezierPathWithCreator (_ddd ,_gef );if _gdd .Style .FillColor !=""&&_gdd .Style .StrokeColor !=""{_gef .Add_B ();}else if _gdd .Style .FillColor !=""{_gef .Add_f ();}else if _gdd .Style .StrokeColor !=""{_gef .Add_S ();};_gef .Add_h ();_gef .Add_Q (); +};func (_ccc *GraphicSVG )toContentStream (_agb *_be .ContentCreator ){_def ,_aed :=_ebd (_ccc .Attributes ,_ccc ._edc );if _aed !=nil {_ggd .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073e\u0020\u0073\u0074\u0079\u006c\u0065\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020%\u0076",_aed ); +};_ccc .Style =_def ;switch _ccc .Name {case "\u0070\u0061\u0074\u0068":_cc (_ccc ,_agb );for _ ,_dea :=range _ccc .Children {_dea .toContentStream (_agb );};case "\u0072\u0065\u0063\u0074":_ce (_ccc ,_agb );for _ ,_abf :=range _ccc .Children {_abf .toContentStream (_agb ); +};case "\u0063\u0069\u0072\u0063\u006c\u0065":_geaf (_ccc ,_agb );for _ ,_gga :=range _ccc .Children {_gga .toContentStream (_agb );};case "\u0065l\u006c\u0069\u0070\u0073\u0065":_bd (_ccc ,_agb );for _ ,_eab :=range _ccc .Children {_eab .toContentStream (_agb ); +};case "\u0070\u006f\u006c\u0079\u006c\u0069\u006e\u0065":_gab (_ccc ,_agb );for _ ,_fgc :=range _ccc .Children {_fgc .toContentStream (_agb );};case "\u0070o\u006c\u0079\u0067\u006f\u006e":_aab (_ccc ,_agb );for _ ,_cff :=range _ccc .Children {_cff .toContentStream (_agb ); +};case "\u006c\u0069\u006e\u0065":_gf (_ccc ,_agb );for _ ,_dbeg :=range _ccc .Children {_dbeg .toContentStream (_agb );};case "\u0067":_fdb ,_bad :=_ccc .Attributes ["\u0066\u0069\u006c\u006c"];_bbb ,_cge :=_ccc .Attributes ["\u0073\u0074\u0072\u006f\u006b\u0065"]; +_aeb ,_fbg :=_ccc .Attributes ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"];for _ ,_bag :=range _ccc .Children {if _ ,_dde :=_bag .Attributes ["\u0066\u0069\u006c\u006c"];!_dde &&_bad {_bag .Attributes ["\u0066\u0069\u006c\u006c"]=_fdb ; +};if _ ,_cfc :=_bag .Attributes ["\u0073\u0074\u0072\u006f\u006b\u0065"];!_cfc &&_cge {_bag .Attributes ["\u0073\u0074\u0072\u006f\u006b\u0065"]=_bbb ;};if _ ,_dbg :=_bag .Attributes ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"]; +!_dbg &&_fbg {_bag .Attributes ["\u0073\u0074\u0072o\u006b\u0065\u002d\u0077\u0069\u0064\u0074\u0068"]=_aeb ;};_bag .toContentStream (_agb );};};};func _eecd (_aebf string )(_acfc []float64 ,_fdc error ){var _gagag float64 ;_bfee :=0;_dgfg :=true ;for _edec ,_afdb :=range _aebf {if _afdb =='.'{if _dgfg {_dgfg =false ; +continue ;};_gagag ,_fdc =_eccc (_aebf [_bfee :_edec ],64);if _fdc !=nil {return ;};_acfc =append (_acfc ,_gagag );_bfee =_edec ;};};_gagag ,_fdc =_eccc (_aebf [_bfee :],64);if _fdc !=nil {return ;};_acfc =append (_acfc ,_gagag );return ;};func _bd (_fcg *GraphicSVG ,_dba *_be .ContentCreator ){_dba .Add_q (); +_fcg .Style .toContentStream (_dba );_cbb ,_fdd :=_eccc (_fcg .Attributes ["\u0063\u0078"],64);if _fdd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fdd .Error ()); +};_dc ,_fdd :=_eccc (_fcg .Attributes ["\u0063\u0079"],64);if _fdd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fdd .Error ()); +};_ccg ,_fdd :=_eccc (_fcg .Attributes ["\u0072\u0078"],64);if _fdd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fdd .Error ()); +};_egb ,_fdd :=_eccc (_fcg .Attributes ["\u0072\u0079"],64);if _fdd !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_fdd .Error ()); +};_egf :=_ccg *_fcg ._edc ;_acb :=_egb *_fcg ._edc ;_gag :=_cbb *_fcg ._edc ;_bac :=_dc *_fcg ._edc ;_bgg :=_egf *_ed ;_gcd :=_acb *_ed ;_gae :=_f .NewCubicBezierPath ();_gae =_gae .AppendCurve (_f .NewCubicBezierCurve (-_egf ,0,-_egf ,_gcd ,-_bgg ,_acb ,0,_acb )); +_gae =_gae .AppendCurve (_f .NewCubicBezierCurve (0,_acb ,_bgg ,_acb ,_egf ,_gcd ,_egf ,0));_gae =_gae .AppendCurve (_f .NewCubicBezierCurve (_egf ,0,_egf ,-_gcd ,_bgg ,-_acb ,0,-_acb ));_gae =_gae .AppendCurve (_f .NewCubicBezierCurve (0,-_acb ,-_bgg ,-_acb ,-_egf ,-_gcd ,-_egf ,0)); +_gae =_gae .Offset (_gag ,_bac );if _fcg .Style .StrokeWidth > 0{_gae =_gae .Offset (_fcg .Style .StrokeWidth /2,_fcg .Style .StrokeWidth /2);};_f .DrawBezierPathWithCreator (_gae ,_dba );if _fcg .Style .FillColor !=""&&_fcg .Style .StrokeColor !=""{_dba .Add_B (); +}else if _fcg .Style .FillColor !=""{_dba .Add_f ();}else if _fcg .Style .StrokeColor !=""{_dba .Add_S ();};_dba .Add_h ();_dba .Add_Q ();};func ParseFromFile (path string )(*GraphicSVG ,error ){_cac ,_ccgf :=_ca .Open (path );if _ccgf !=nil {return nil ,_ccgf ; +};defer _cac .Close ();return ParseFromStream (_cac );};type token struct{_ffea string ;_dcf bool ;};func ParseFromStream (source _a .Reader )(*GraphicSVG ,error ){_afda :=_gb .NewDecoder (source );_afda .CharsetReader =_d .NewReaderLabel ;_ced ,_eee :=_eea (_afda ); +if _eee !=nil {return nil ,_eee ;};if _aaf :=_ced .Decode (_afda );_aaf !=nil &&_aaf !=_a .EOF {return nil ,_aaf ;};return _ced ,nil ;};type pathParserError struct{_cea string };var _eca commands ;func _gab (_aag *GraphicSVG ,_ccd *_be .ContentCreator ){_ccd .Add_q (); +_aag .Style .toContentStream (_ccd );_ded ,_cdd :=_eabd (_aag .Attributes ["\u0070\u006f\u0069\u006e\u0074\u0073"]);if _cdd !=nil {_ggd .Log .Debug ("\u0045\u0052\u0052O\u0052\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0070\u0061\u0072\u0073\u0065\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u003a\u0020\u0025\u0076",_cdd ); +return ;};if len (_ded )%2> 0{_ggd .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0069n\u0076\u0061l\u0069\u0064\u0020\u0070\u006f\u0069\u006e\u0074s\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006ce\u006e\u0067\u0074\u0068");return ; +};for _fga :=0;_fga < len (_ded );{if _fga ==0{_ccd .Add_m (_ded [_fga ]*_aag ._edc ,_ded [_fga +1]*_aag ._edc );}else {_ccd .Add_l (_ded [_fga ]*_aag ._edc ,_ded [_fga +1]*_aag ._edc );};_fga +=2;};if _aag .Style .FillColor !=""&&_aag .Style .StrokeColor !=""{_ccd .Add_B (); +}else if _aag .Style .FillColor !=""{_ccd .Add_f ();}else if _aag .Style .StrokeColor !=""{_ccd .Add_S ();};_ccd .Add_h ();_ccd .Add_Q ();};func _gf (_bbf *GraphicSVG ,_egg *_be .ContentCreator ){_egg .Add_q ();_bbf .Style .toContentStream (_egg );_eeg ,_geb :=_eccc (_bbf .Attributes ["\u0078\u0031"],64); +if _geb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_geb .Error ());};_ab ,_geb :=_eccc (_bbf .Attributes ["\u0079\u0031"],64); +if _geb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0063\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_geb .Error ());};_eag ,_geb :=_eccc (_bbf .Attributes ["\u0078\u0032"],64); +if _geb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0078\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_geb .Error ());};_aeee ,_geb :=_eccc (_bbf .Attributes ["\u0079\u0032"],64); +if _geb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061r\u0073i\u006eg\u0020`\u0072\u0079\u0060\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_geb .Error ());};_egg .Add_m (_eeg *_bbf ._edc ,_ab *_bbf ._edc ); +_egg .Add_l (_eag *_bbf ._edc ,_aeee *_bbf ._edc );if _bbf .Style .FillColor !=""&&_bbf .Style .StrokeColor !=""{_egg .Add_B ();}else if _bbf .Style .FillColor !=""{_egg .Add_f ();}else if _bbf .Style .StrokeColor !=""{_egg .Add_S ();};_egg .Add_h ();_egg .Add_Q (); +};type Command struct{Symbol string ;Params []float64 ;};func _fcb (_gcc []token )([]*Command ,error ){var (_eac []*Command ;_cbg []float64 ;);for _bdc :=len (_gcc )-1;_bdc >=0;_bdc --{_cae :=_gcc [_bdc ];if _cae ._dcf {_gaga :=_eca ._cfe [_g .ToLower (_cae ._ffea )]; +_aggb :=len (_cbg );if _gaga ==0&&_aggb ==0{_dcc :=&Command {Symbol :_cae ._ffea };_eac =append ([]*Command {_dcc },_eac ...);}else if _gaga !=0&&_aggb %_gaga ==0{_ffeag :=_aggb /_gaga ;for _bfg :=0;_bfg < _ffeag ;_bfg ++{_dfb :=_cae ._ffea ;if _dfb =="\u006d"&&_bfg < _ffeag -1{_dfb ="\u006c"; +};if _dfb =="\u004d"&&_bfg < _ffeag -1{_dfb ="\u004c";};_defd :=&Command {_dfb ,_ccgd (_cbg [:_gaga ])};_eac =append ([]*Command {_defd },_eac ...);_cbg =_cbg [_gaga :];};}else {_cbfb :=pathParserError {"I\u006e\u0063\u006f\u0072\u0072\u0065c\u0074\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006f\u0066\u0020\u0070\u0061r\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006fr\u0020"+_cae ._ffea }; +return nil ,_cbfb ;};}else {_ceb ,_cbe :=_eccc (_cae ._ffea ,64);if _cbe !=nil {return nil ,_cbe ;};_cbg =append (_cbg ,_ceb );};};return _eac ,nil ;};func _ce (_fca *GraphicSVG ,_cca *_be .ContentCreator ){_cca .Add_q ();_fca .Style .toContentStream (_cca ); +_dbe ,_ccb :=_eccc (_fca .Attributes ["\u0078"],64);if _ccb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020`\u0078\u0060\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_ccb .Error ()); +};_bbd ,_ccb :=_eccc (_fca .Attributes ["\u0079"],64);if _ccb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020`\u0079\u0060\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_ccb .Error ()); +};_cg ,_ccb :=_eccc (_fca .Attributes ["\u0077\u0069\u0064t\u0068"],64);if _ccb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0073\u0074\u0072\u006f\u006b\u0065\u0020\u0077\u0069\u0064\u0074\u0068\u0020v\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_ccb .Error ()); +};_cfg ,_ccb :=_eccc (_fca .Attributes ["\u0068\u0065\u0069\u0067\u0068\u0074"],64);if _ccb !=nil {_ggd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077h\u0069\u006c\u0065 \u0070\u0061\u0072\u0073i\u006e\u0067\u0020\u0073\u0074\u0072\u006f\u006b\u0065\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0025\u0076",_ccb .Error ()); +};_cca .Add_re (_dbe *_fca ._edc ,_bbd *_fca ._edc ,_cg *_fca ._edc ,_cfg *_fca ._edc );if _fca .Style .FillColor !=""&&_fca .Style .StrokeColor !=""{_cca .Add_B ();}else if _fca .Style .FillColor !=""{_cca .Add_f ();}else if _fca .Style .StrokeColor !=""{_cca .Add_S (); +};_cca .Add_Q ();};func _fef (_ddf []token ,_ccag string )([]token ,string ){if _ccag !=""{_ddf =append (_ddf ,token {_ccag ,false });_ccag ="";};return _ddf ,_ccag ;};func ParseFromString (svgStr string )(*GraphicSVG ,error ){return ParseFromStream (_g .NewReader (svgStr )); +};func _bc (_faa _gb .StartElement )*GraphicSVG {_bed :=&GraphicSVG {};_edf :=make (map[string ]string );for _ ,_cee :=range _faa .Attr {_edf [_cee .Name .Local ]=_cee .Value ;};_bed .Name =_faa .Name .Local ;_bed .Attributes =_edf ;_bed ._edc =1;if _bed .Name =="\u0073\u0076\u0067"{_bfe ,_fad :=_eabd (_edf ["\u0076i\u0065\u0077\u0042\u006f\u0078"]); +if _fad !=nil {_ggd .Log .Debug ("\u0055\u006ea\u0062\u006c\u0065\u0020t\u006f\u0020p\u0061\u0072\u0073\u0065\u0020\u0076\u0069\u0065w\u0042\u006f\u0078\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074e\u003a\u0020\u0025\u0076",_fad );return nil ; +};_bed .ViewBox .X =_bfe [0];_bed .ViewBox .Y =_bfe [1];_bed .ViewBox .W =_bfe [2];_bed .ViewBox .H =_bfe [3];_bed .Width =_bed .ViewBox .W ;_bed .Height =_bed .ViewBox .H ;if _dfg ,_aad :=_edf ["\u0077\u0069\u0064t\u0068"];_aad {_afge ,_gca :=_eccc (_dfg ,64); +if _gca !=nil {_ggd .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0070\u0061\u0072\u0073e\u0020\u0077\u0069\u0064\u0074\u0068\u0020a\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u003a\u0020%\u0076",_gca );return nil ;};_bed .Width =_afge ; +};if _aeeb ,_fde :=_edf ["\u0068\u0065\u0069\u0067\u0068\u0074"];_fde {_ecg ,_dbf :=_eccc (_aeeb ,64);if _dbf !=nil {_ggd .Log .Debug ("\u0055\u006eab\u006c\u0065\u0020t\u006f\u0020\u0070\u0061rse\u0020he\u0069\u0067\u0068\u0074\u0020\u0061\u0074tr\u0069\u0062\u0075\u0074\u0065\u003a\u0020%\u0076",_dbf ); +return nil ;};_bed .Height =_ecg ;};if _bed .Width > 0&&_bed .Height > 0{_bed ._edc =_bed .Width /_bed .ViewBox .W ;};};return _bed ;}; \ No newline at end of file diff --git a/internal/imageutil/imageutil.go b/internal/imageutil/imageutil.go index 13944be2a..ee8b2f692 100644 --- a/internal/imageutil/imageutil.go +++ b/internal/imageutil/imageutil.go @@ -9,399 +9,396 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package imageutil ;import (_ab "encoding/binary";_d "errors";_dcg "fmt";_c "github.com/unidoc/unipdf/v3/common";_g "github.com/unidoc/unipdf/v3/internal/bitwise";_dc "image";_de "image/color";_fe "image/draw";_a "math";);func (_egad *Gray8 )Base ()*ImageBase {return &_egad .ImageBase }; -func _cag (_bggc _de .NRGBA )_de .Gray {var _gcaf _de .NRGBA ;if _bggc ==_gcaf {return _de .Gray {Y :0xff};};_adda ,_eeg ,_fcb ,_ :=_bggc .RGBA ();_ddcg :=(19595*_adda +38470*_eeg +7471*_fcb +1<<15)>>24;return _de .Gray {Y :uint8 (_ddcg )};};type CMYK interface{CMYKAt (_befc ,_gbg int )_de .CMYK ; -SetCMYK (_dgdb ,_aab int ,_dae _de .CMYK );};var (_bffa =[]byte {0x00,0x80,0xC0,0xE0,0xF0,0xF8,0xFC,0xFE,0xFF};_febf =[]byte {0x00,0x01,0x03,0x07,0x0F,0x1F,0x3F,0x7F,0xFF};);func (_ddcb *RGBA32 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_ddcb .Width ,Y :_ddcb .Height }}; -};func (_aeg *Monochrome )getBit (_ddca ,_ggdg int )uint8 {return _aeg .Data [_ddca +(_ggdg >>3)]>>uint (7-(_ggdg &7))&1;};func _bacd (_gdcd *Monochrome ,_affcf ,_gggfa ,_baeb ,_eecf int ,_gead RasterOperator ,_bedd *Monochrome ,_acgd ,_abga int )error {if _gdcd ==nil {return _d .New ("\u006e\u0069\u006c\u0020\u0027\u0064\u0065\u0073\u0074\u0027\u0020\u0042i\u0074\u006d\u0061\u0070"); -};if _gead ==PixDst {return nil ;};switch _gead {case PixClr ,PixSet ,PixNotDst :_dddcc (_gdcd ,_affcf ,_gggfa ,_baeb ,_eecf ,_gead );return nil ;};if _bedd ==nil {_c .Log .Debug ("\u0052a\u0073\u0074e\u0072\u004f\u0070\u0065r\u0061\u0074\u0069o\u006e\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020bi\u0074\u006d\u0061p\u0020\u0069s\u0020\u006e\u006f\u0074\u0020\u0064e\u0066\u0069n\u0065\u0064"); -return _d .New ("\u006e\u0069l\u0020\u0027\u0073r\u0063\u0027\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _gad :=_egdd (_gdcd ,_affcf ,_gggfa ,_baeb ,_eecf ,_gead ,_bedd ,_acgd ,_abga );_gad !=nil {return _gad ;};return nil ;};func _ffbb (_dce ,_ddbb int )*Monochrome {return &Monochrome {ImageBase :NewImageBase (_dce ,_ddbb ,1,1,nil ,nil ,nil ),ModelThreshold :0x0f}; -};func (_aeef *ImageBase )getByte (_gfeg int )(byte ,error ){if _gfeg > len (_aeef .Data )-1||_gfeg < 0{return 0,_dcg .Errorf ("\u0069\u006e\u0064\u0065x:\u0020\u0025\u0064\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006eg\u0065",_gfeg ); -};return _aeef .Data [_gfeg ],nil ;};var _ Image =&Gray4 {};func MonochromeThresholdConverter (threshold uint8 )ColorConverter {return &monochromeThresholdConverter {Threshold :threshold };};func _aaff (_eb *Monochrome ,_fgg int ,_fgdf []byte )(_cdce *Monochrome ,_cgf error ){const _eea ="\u0072\u0065d\u0075\u0063\u0065R\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079"; -if _eb ==nil {return nil ,_d .New ("\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};if _fgg < 1||_fgg > 4{return nil ,_d .New ("\u006c\u0065\u0076\u0065\u006c\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020\u0073e\u0074\u0020\u007b\u0031\u002c\u0032\u002c\u0033\u002c\u0034\u007d"); -};if _eb .Height <=1{return nil ,_d .New ("\u0073\u006f\u0075rc\u0065\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020m\u0075s\u0074 \u0062e\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0027\u0032\u0027");};_cdce =_ffbb (_eb .Width /2,_eb .Height /2); -if _fgdf ==nil {_fgdf =_eba ();};_fabc :=_fbag (_eb .BytesPerLine ,2*_cdce .BytesPerLine );switch _fgg {case 1:_cgf =_fee (_eb ,_cdce ,_fgdf ,_fabc );case 2:_cgf =_eac (_eb ,_cdce ,_fgdf ,_fabc );case 3:_cgf =_abab (_eb ,_cdce ,_fgdf ,_fabc );case 4:_cgf =_aee (_eb ,_cdce ,_fgdf ,_fabc ); -};if _cgf !=nil {return nil ,_cgf ;};return _cdce ,nil ;};func (_dfee *Gray16 )SetGray (x ,y int ,g _de .Gray ){_addab :=(y *_dfee .BytesPerLine /2+x )*2;if _addab +1>=len (_dfee .Data ){return ;};_dfee .Data [_addab ]=g .Y ;_dfee .Data [_addab +1]=g .Y ; -};func (_efef *Monochrome )ScaleLow (width ,height int )(*Monochrome ,error ){if width < 0||height < 0{return nil ,_d .New ("\u0070\u0072\u006f\u0076\u0069\u0064e\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0077\u0069\u0064t\u0068\u0020\u0061\u006e\u0064\u0020\u0068e\u0069\u0067\u0068\u0074"); -};_cddc :=_ffbb (width ,height );_ebcag :=make ([]int ,height );_efec :=make ([]int ,width );_bbe :=float64 (_efef .Width )/float64 (width );_dcbb :=float64 (_efef .Height )/float64 (height );for _gffe :=0;_gffe < height ;_gffe ++{_ebcag [_gffe ]=int (_a .Min (_dcbb *float64 (_gffe )+0.5,float64 (_efef .Height -1))); -};for _eeag :=0;_eeag < width ;_eeag ++{_efec [_eeag ]=int (_a .Min (_bbe *float64 (_eeag )+0.5,float64 (_efef .Width -1)));};_cgg :=-1;_fga :=byte (0);for _baae :=0;_baae < height ;_baae ++{_acca :=_ebcag [_baae ]*_efef .BytesPerLine ;_dde :=_baae *_cddc .BytesPerLine ; -for _efce :=0;_efce < width ;_efce ++{_ecea :=_efec [_efce ];if _ecea !=_cgg {_fga =_efef .getBit (_acca ,_ecea );if _fga !=0{_cddc .setBit (_dde ,_efce );};_cgg =_ecea ;}else {if _fga !=0{_cddc .setBit (_dde ,_efce );};};};};return _cddc ,nil ;};func _cfa (_bc *Monochrome ,_gg int ,_ae []uint )(*Monochrome ,error ){_df :=_gg *_bc .Width ; -_fg :=_gg *_bc .Height ;_cfag :=_ffbb (_df ,_fg );for _bcf ,_bg :=range _ae {var _gb error ;switch _bg {case 2:_gb =_ba (_cfag ,_bc );case 4:_gb =_bf (_cfag ,_bc );case 8:_gb =_addc (_cfag ,_bc );};if _gb !=nil {return nil ,_gb ;};if _bcf !=len (_ae )-1{_bc =_cfag .copy (); -};};return _cfag ,nil ;};func ColorAtNRGBA64 (x ,y ,width int ,data ,alpha []byte ,decode []float64 )(_de .NRGBA64 ,error ){_edgb :=(y *width +x )*2;_gbfc :=_edgb *3;if _gbfc +5>=len (data ){return _de .NRGBA64 {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};const _eeed =0xffff;_cddbe :=uint16 (_eeed );if alpha !=nil &&len (alpha )> _edgb +1{_cddbe =uint16 (alpha [_edgb ])<<8|uint16 (alpha [_edgb +1]);};_ebage :=uint16 (data [_gbfc ])<<8|uint16 (data [_gbfc +1]);_cbbcc :=uint16 (data [_gbfc +2])<<8|uint16 (data [_gbfc +3]); -_defe :=uint16 (data [_gbfc +4])<<8|uint16 (data [_gbfc +5]);if len (decode )==6{_ebage =uint16 (uint64 (LinearInterpolate (float64 (_ebage ),0,65535,decode [0],decode [1]))&_eeed );_cbbcc =uint16 (uint64 (LinearInterpolate (float64 (_cbbcc ),0,65535,decode [2],decode [3]))&_eeed ); -_defe =uint16 (uint64 (LinearInterpolate (float64 (_defe ),0,65535,decode [4],decode [5]))&_eeed );};return _de .NRGBA64 {R :_ebage ,G :_cbbcc ,B :_defe ,A :_cddbe },nil ;};func (_dbbf *Monochrome )IsUnpadded ()bool {return (_dbbf .Width *_dbbf .Height )==len (_dbbf .Data )}; -func _fcef (_gcf _de .RGBA )_de .Gray {_ebbd :=(19595*uint32 (_gcf .R )+38470*uint32 (_gcf .G )+7471*uint32 (_gcf .B )+1<<7)>>16;return _de .Gray {Y :uint8 (_ebbd )};};func (_fcga *Monochrome )ReduceBinary (factor float64 )(*Monochrome ,error ){_ade :=_dfbd (uint (factor )); -if !IsPowerOf2 (uint (factor )){_ade ++;};_ceae :=make ([]int ,_ade );for _ebca :=range _ceae {_ceae [_ebca ]=4;};_ecd ,_edac :=_bbc (_fcga ,_ceae ...);if _edac !=nil {return nil ,_edac ;};return _ecd ,nil ;};func _ggaf (_agdd ,_fdcaf uint8 )uint8 {if _agdd < _fdcaf {return 255; -};return 0;};func ConverterFunc (converterFunc func (_ggab _dc .Image )(Image ,error ))ColorConverter {return colorConverter {_begg :converterFunc };};func (_caa *ImageBase )setEightPartlyBytes (_gdc ,_bced int ,_bdbf uint64 )(_aeda error ){var (_gcba byte ; -_fffg int ;);for _acf :=1;_acf <=_bced ;_acf ++{_fffg =64-_acf *8;_gcba =byte (_bdbf >>uint (_fffg )&0xff);if _aeda =_caa .setByte (_gdc +_acf -1,_gcba );_aeda !=nil {return _aeda ;};};_bbefa :=_caa .BytesPerLine *8-_caa .Width ;if _bbefa ==0{return nil ; -};_fffg -=8;_gcba =byte (_bdbf >>uint (_fffg )&0xff)<=_faag .Width ||y >=_faag .Height {return ;};g =_debcg (g ); -_faag .setGray (x ,y ,g );};type NRGBA16 struct{ImageBase };func _ggd (_dbd ,_gd int ,_ac []byte )*Monochrome {_dg :=_ffbb (_dbd ,_gd );_dg .Data =_ac ;return _dg };func (_fcbf *Gray2 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_fcbf .Width ,Y :_fcbf .Height }}; -};func (_ffgb *CMYK32 )Validate ()error {if len (_ffgb .Data )!=4*_ffgb .Width *_ffgb .Height {return _d .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); -};return nil ;};func _bdef (_bba _de .NRGBA64 )_de .NRGBA {return _de .NRGBA {R :uint8 (_bba .R >>8),G :uint8 (_bba .G >>8),B :uint8 (_bba .B >>8),A :uint8 (_bba .A >>8)};};var (_fab =_dcgb ();_ggfd =_aed ();_ffb =_fabd (););func (_bfcg *RGBA32 )Base ()*ImageBase {return &_bfcg .ImageBase }; -func (_dgea *Gray4 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_dgea .Width ,Y :_dgea .Height }};};func (_bdgc *RGBA32 )At (x ,y int )_de .Color {_eddg ,_ :=_bdgc .ColorAt (x ,y );return _eddg };func NextPowerOf2 (n uint )uint {if IsPowerOf2 (n ){return n ; -};return 1<<(_dfbd (n )+1);};func _aed ()(_dbe [256]uint32 ){for _beg :=0;_beg < 256;_beg ++{if _beg &0x01!=0{_dbe [_beg ]|=0xf;};if _beg &0x02!=0{_dbe [_beg ]|=0xf0;};if _beg &0x04!=0{_dbe [_beg ]|=0xf00;};if _beg &0x08!=0{_dbe [_beg ]|=0xf000;};if _beg &0x10!=0{_dbe [_beg ]|=0xf0000; -};if _beg &0x20!=0{_dbe [_beg ]|=0xf00000;};if _beg &0x40!=0{_dbe [_beg ]|=0xf000000;};if _beg &0x80!=0{_dbe [_beg ]|=0xf0000000;};};return _dbe ;};func (_cabe *NRGBA64 )setNRGBA64 (_ggfgb int ,_aebc _de .NRGBA64 ,_ffgd int ){_cabe .Data [_ggfgb ]=uint8 (_aebc .R >>8); -_cabe .Data [_ggfgb +1]=uint8 (_aebc .R &0xff);_cabe .Data [_ggfgb +2]=uint8 (_aebc .G >>8);_cabe .Data [_ggfgb +3]=uint8 (_aebc .G &0xff);_cabe .Data [_ggfgb +4]=uint8 (_aebc .B >>8);_cabe .Data [_ggfgb +5]=uint8 (_aebc .B &0xff);if _ffgd +1< len (_cabe .Alpha ){_cabe .Alpha [_ffgd ]=uint8 (_aebc .A >>8); -_cabe .Alpha [_ffgd +1]=uint8 (_aebc .A &0xff);};};func FromGoImage (i _dc .Image )(Image ,error ){switch _fgef :=i .(type ){case Image :return _fgef .Copy (),nil ;case Gray :return GrayConverter .Convert (i );case *_dc .Gray16 :return Gray16Converter .Convert (i ); -case CMYK :return CMYKConverter .Convert (i );case *_dc .NRGBA64 :return NRGBA64Converter .Convert (i );default:return NRGBAConverter .Convert (i );};};func _egdd (_accf *Monochrome ,_acgf ,_efg int ,_eedd ,_bafb int ,_ffadb RasterOperator ,_bceb *Monochrome ,_cbdf ,_efdd int )error {var _cfed ,_aedag ,_acfb ,_dadg int ; -if _acgf < 0{_cbdf -=_acgf ;_eedd +=_acgf ;_acgf =0;};if _cbdf < 0{_acgf -=_cbdf ;_eedd +=_cbdf ;_cbdf =0;};_cfed =_acgf +_eedd -_accf .Width ;if _cfed > 0{_eedd -=_cfed ;};_aedag =_cbdf +_eedd -_bceb .Width ;if _aedag > 0{_eedd -=_aedag ;};if _efg < 0{_efdd -=_efg ; -_bafb +=_efg ;_efg =0;};if _efdd < 0{_efg -=_efdd ;_bafb +=_efdd ;_efdd =0;};_acfb =_efg +_bafb -_accf .Height ;if _acfb > 0{_bafb -=_acfb ;};_dadg =_efdd +_bafb -_bceb .Height ;if _dadg > 0{_bafb -=_dadg ;};if _eedd <=0||_bafb <=0{return nil ;};var _gface error ; -switch {case _acgf &7==0&&_cbdf &7==0:_gface =_cbca (_accf ,_acgf ,_efg ,_eedd ,_bafb ,_ffadb ,_bceb ,_cbdf ,_efdd );case _acgf &7==_cbdf &7:_gface =_dbcb (_accf ,_acgf ,_efg ,_eedd ,_bafb ,_ffadb ,_bceb ,_cbdf ,_efdd );default:_gface =_acda (_accf ,_acgf ,_efg ,_eedd ,_bafb ,_ffadb ,_bceb ,_cbdf ,_efdd ); -};if _gface !=nil {return _gface ;};return nil ;};func (_dgc *ImageBase )HasAlpha ()bool {if _dgc .Alpha ==nil {return false ;};for _dgef :=range _dgc .Alpha {if _dgc .Alpha [_dgef ]!=0xff{return true ;};};return false ;};func (_bcbf *Gray2 )Base ()*ImageBase {return &_bcbf .ImageBase }; -type shift int ;func (_aabg *NRGBA32 )Validate ()error {if len (_aabg .Data )!=3*_aabg .Width *_aabg .Height {return _d .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); -};return nil ;};func InDelta (expected ,current ,delta float64 )bool {_ccbc :=expected -current ;if _ccbc <=-delta ||_ccbc >=delta {return false ;};return true ;};func (_cacc *RGBA32 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtRGBA32 (x ,y ,_cacc .Width ,_cacc .Data ,_cacc .Alpha ,_cacc .Decode ); -};func (_dggg *Monochrome )InverseData ()error {return _dggg .RasterOperation (0,0,_dggg .Width ,_dggg .Height ,PixNotDst ,nil ,0,0);};func ColorAtGray2BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_de .Gray ,error ){_gbbe :=y *bytesPerLine +x >>2; -if _gbbe >=len (data ){return _de .Gray {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_efeg :=data [_gbbe ]>>uint (6-(x &3)*2)&3;if len (decode )==2{_efeg =uint8 (uint32 (LinearInterpolate (float64 (_efeg ),0,3.0,decode [0],decode [1]))&3);};return _de .Gray {Y :_efeg *85},nil ;};var _ Gray =&Gray8 {};func (_bcd *Gray8 )Histogram ()(_gbdb [256]int ){for _fcaa :=0; -_fcaa < len (_bcd .Data );_fcaa ++{_gbdb [_bcd .Data [_fcaa ]]++;};return _gbdb ;};func (_cdgb *NRGBA16 )Set (x ,y int ,c _de .Color ){_ebf :=y *_cdgb .BytesPerLine +x *3/2;if _ebf +1>=len (_cdgb .Data ){return ;};_gefbd :=NRGBA16Model .Convert (c ).(_de .NRGBA ); -_cdgb .setNRGBA (x ,y ,_ebf ,_gefbd );};func _gea (_agaa _de .RGBA )_de .NRGBA {switch _agaa .A {case 0xff:return _de .NRGBA {R :_agaa .R ,G :_agaa .G ,B :_agaa .B ,A :0xff};case 0x00:return _de .NRGBA {};default:_cba ,_baf ,_cae ,_ddd :=_agaa .RGBA (); -_cba =(_cba *0xffff)/_ddd ;_baf =(_baf *0xffff)/_ddd ;_cae =(_cae *0xffff)/_ddd ;return _de .NRGBA {R :uint8 (_cba >>8),G :uint8 (_baf >>8),B :uint8 (_cae >>8),A :uint8 (_ddd >>8)};};};const (PixSrc RasterOperator =0xc;PixDst RasterOperator =0xa;PixNotSrc RasterOperator =0x3; -PixNotDst RasterOperator =0x5;PixClr RasterOperator =0x0;PixSet RasterOperator =0xf;PixSrcOrDst RasterOperator =0xe;PixSrcAndDst RasterOperator =0x8;PixSrcXorDst RasterOperator =0x6;PixNotSrcOrDst RasterOperator =0xb;PixNotSrcAndDst RasterOperator =0x2; -PixSrcOrNotDst RasterOperator =0xd;PixSrcAndNotDst RasterOperator =0x4;PixNotPixSrcOrDst RasterOperator =0x1;PixNotPixSrcAndDst RasterOperator =0x7;PixNotPixSrcXorDst RasterOperator =0x9;PixPaint =PixSrcOrDst ;PixSubtract =PixNotSrcAndDst ;PixMask =PixSrcAndDst ; -);func (_dgg colorConverter )Convert (src _dc .Image )(Image ,error ){return _dgg ._begg (src )};func (_bdbg *Monochrome )setGrayBit (_gfbbf ,_fdg int ){_bdbg .Data [_gfbbf ]|=0x80>>uint (_fdg &7)};func (_geg *Gray4 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtGray4BPC (x ,y ,_geg .BytesPerLine ,_geg .Data ,_geg .Decode ); -};func (_dead *NRGBA16 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_dead .Width ,Y :_dead .Height }};};func (_egda *Monochrome )Histogram ()(_adbd [256]int ){for _ ,_gfcd :=range _egda .Data {_adbd [0xff]+=int (_egge [_egda .Data [_gfcd ]]); -};return _adbd ;};func _aee (_ega ,_ddbgb *Monochrome ,_dcc []byte ,_cbc int )(_agf error ){var (_fcd ,_dbg ,_bge ,_fcdg ,_bdgg ,_ede ,_cead ,_debe int ;_fabg ,_bgga uint32 ;_aca ,_cgef byte ;_fggg uint16 ;);_aafb :=make ([]byte ,4);_ebe :=make ([]byte ,4); -for _bge =0;_bge < _ega .Height -1;_bge ,_fcdg =_bge +2,_fcdg +1{_fcd =_bge *_ega .BytesPerLine ;_dbg =_fcdg *_ddbgb .BytesPerLine ;for _bdgg ,_ede =0,0;_bdgg < _cbc ;_bdgg ,_ede =_bdgg +4,_ede +1{for _cead =0;_cead < 4;_cead ++{_debe =_fcd +_bdgg +_cead ; -if _debe <=len (_ega .Data )-1&&_debe < _fcd +_ega .BytesPerLine {_aafb [_cead ]=_ega .Data [_debe ];}else {_aafb [_cead ]=0x00;};_debe =_fcd +_ega .BytesPerLine +_bdgg +_cead ;if _debe <=len (_ega .Data )-1&&_debe < _fcd +(2*_ega .BytesPerLine ){_ebe [_cead ]=_ega .Data [_debe ]; -}else {_ebe [_cead ]=0x00;};};_fabg =_ab .BigEndian .Uint32 (_aafb );_bgga =_ab .BigEndian .Uint32 (_ebe );_bgga &=_fabg ;_bgga &=_bgga <<1;_bgga &=0xaaaaaaaa;_fabg =_bgga |(_bgga <<7);_aca =byte (_fabg >>24);_cgef =byte ((_fabg >>8)&0xff);_debe =_dbg +_ede ; -if _debe +1==len (_ddbgb .Data )-1||_debe +1>=_dbg +_ddbgb .BytesPerLine {_ddbgb .Data [_debe ]=_dcc [_aca ];if _agf =_ddbgb .setByte (_debe ,_dcc [_aca ]);_agf !=nil {return _dcg .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_debe );};}else {_fggg =(uint16 (_dcc [_aca ])<<8)|uint16 (_dcc [_cgef ]); -if _agf =_ddbgb .setTwoBytes (_debe ,_fggg );_agf !=nil {return _dcg .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_debe ); -};_ede ++;};};};return nil ;};func _ffag (_gae ,_deff NRGBA ,_efdfd _dc .Rectangle ){for _bdfa :=0;_bdfa < _efdfd .Max .X ;_bdfa ++{for _ggfge :=0;_ggfge < _efdfd .Max .Y ;_ggfge ++{_deff .SetNRGBA (_bdfa ,_ggfge ,_gae .NRGBAAt (_bdfa ,_ggfge ));};};}; -func _dbdg (){for _gddd :=0;_gddd < 256;_gddd ++{_egge [_gddd ]=uint8 (_gddd &0x1)+(uint8 (_gddd >>1)&0x1)+(uint8 (_gddd >>2)&0x1)+(uint8 (_gddd >>3)&0x1)+(uint8 (_gddd >>4)&0x1)+(uint8 (_gddd >>5)&0x1)+(uint8 (_gddd >>6)&0x1)+(uint8 (_gddd >>7)&0x1);}; -};var _ RGBA =&RGBA32 {};func (_afaf *Gray2 )ColorModel ()_de .Model {return Gray2Model };func (_abbc *RGBA32 )Validate ()error {if len (_abbc .Data )!=3*_abbc .Width *_abbc .Height {return _d .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); -};return nil ;};type Monochrome struct{ImageBase ;ModelThreshold uint8 ;};func (_bcfe *Monochrome )AddPadding ()(_gbe error ){if _fcg :=((_bcfe .Width *_bcfe .Height )+7)>>3;len (_bcfe .Data )< _fcg {return _dcg .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064a\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u002e\u0020\u0054\u0068\u0065\u0020\u0064\u0061t\u0061\u0020s\u0068\u006fu\u006c\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0074 l\u0065\u0061\u0073\u0074\u003a\u0020\u0027\u0025\u0064'\u0020\u0062\u0079\u0074\u0065\u0073",len (_bcfe .Data ),_fcg ); -};_gcga :=_bcfe .Width %8;if _gcga ==0{return nil ;};_edef :=_bcfe .Width /8;_bcc :=_g .NewReader (_bcfe .Data );_cbef :=make ([]byte ,_bcfe .Height *_bcfe .BytesPerLine );_bdca :=_g .NewWriterMSB (_cbef );_cddd :=make ([]byte ,_edef );var (_ebgb int ; -_cfda uint64 ;);for _ebgb =0;_ebgb < _bcfe .Height ;_ebgb ++{if _ ,_gbe =_bcc .Read (_cddd );_gbe !=nil {return _gbe ;};if _ ,_gbe =_bdca .Write (_cddd );_gbe !=nil {return _gbe ;};if _cfda ,_gbe =_bcc .ReadBits (byte (_gcga ));_gbe !=nil {return _gbe ; -};if _gbe =_bdca .WriteByte (byte (_cfda )<=_gcd .Width ||y >=_gcd .Height {return ;};_eadc :=Gray2Model .Convert (c ).(_de .Gray ); -_ebag :=y *_gcd .BytesPerLine ;_ced :=_ebag +(x >>2);_ecc :=_eadc .Y >>6;_gcd .Data [_ced ]=(_gcd .Data [_ced ]&(^(0xc0>>uint (2*((x )&3)))))|(_ecc <>4|(_adbc .R >>4)<<4; -_adbc .G =_adbc .G >>4|(_adbc .G >>4)<<4;_adbc .B =_adbc .B >>4|(_adbc .B >>4)<<4;return _adbc ;};func _becb (_agfde Gray ,_affc NRGBA ,_cbee _dc .Rectangle ){for _acg :=0;_acg < _cbee .Max .X ;_acg ++{for _bdf :=0;_bdf < _cbee .Max .Y ;_bdf ++{_ffaa :=_cag (_affc .NRGBAAt (_acg ,_bdf )); -_agfde .SetGray (_acg ,_bdf ,_ffaa );};};};func (_afcb *NRGBA16 )ColorModel ()_de .Model {return NRGBA16Model };func init (){_dbdg ()};var _ _dc .Image =&Gray16 {};func _cded (_eda _de .Gray )_de .RGBA {return _de .RGBA {R :_eda .Y ,G :_eda .Y ,B :_eda .Y ,A :0xff}}; -func _gcb (_abc _dc .Image )(Image ,error ){if _ded ,_bda :=_abc .(*CMYK32 );_bda {return _ded .Copy (),nil ;};_bce :=_abc .Bounds ();_ffgf ,_dcf :=NewImage (_bce .Max .X ,_bce .Max .Y ,8,4,nil ,nil ,nil );if _dcf !=nil {return nil ,_dcf ;};switch _gec :=_abc .(type ){case CMYK :_cce (_gec ,_ffgf .(CMYK ),_bce ); -case Gray :_fcde (_gec ,_ffgf .(CMYK ),_bce );case NRGBA :_cfe (_gec ,_ffgf .(CMYK ),_bce );case RGBA :_fec (_gec ,_ffgf .(CMYK ),_bce );default:_cdf (_abc ,_ffgf ,_bce );};return _ffgf ,nil ;};func _eecg (_bcfg _de .CMYK )_de .Gray {_aage ,_cefa ,_acd :=_de .CMYKToRGB (_bcfg .C ,_bcfg .M ,_bcfg .Y ,_bcfg .K ); -_bbcg :=(19595*uint32 (_aage )+38470*uint32 (_cefa )+7471*uint32 (_acd )+1<<7)>>16;return _de .Gray {Y :uint8 (_bbcg )};};type Gray interface{GrayAt (_bega ,_gfff int )_de .Gray ;SetGray (_fbd ,_edb int ,_fde _de .Gray );};func ColorAtNRGBA32 (x ,y ,width int ,data ,alpha []byte ,decode []float64 )(_de .NRGBA ,error ){_ggbd :=y *width +x ; -_gdeb :=3*_ggbd ;if _gdeb +2>=len (data ){return _de .NRGBA {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_bgf :=uint8 (0xff);if alpha !=nil &&len (alpha )> _ggbd {_bgf =alpha [_ggbd ];};_cdgd ,_fbgef ,_cacdc :=data [_gdeb ],data [_gdeb +1],data [_gdeb +2];if len (decode )==6{_cdgd =uint8 (uint32 (LinearInterpolate (float64 (_cdgd ),0,255,decode [0],decode [1]))&0xff); -_fbgef =uint8 (uint32 (LinearInterpolate (float64 (_fbgef ),0,255,decode [2],decode [3]))&0xff);_cacdc =uint8 (uint32 (LinearInterpolate (float64 (_cacdc ),0,255,decode [4],decode [5]))&0xff);};return _de .NRGBA {R :_cdgd ,G :_fbgef ,B :_cacdc ,A :_bgf },nil ; -};type RasterOperator int ;func (_cbd *Monochrome )SetGray (x ,y int ,g _de .Gray ){_fbfc :=y *_cbd .BytesPerLine +x >>3;if _fbfc > len (_cbd .Data )-1{return ;};g =_abb (g ,monochromeModel (_cbd .ModelThreshold ));_cbd .setGray (x ,g ,_fbfc );};func _bbc (_aaa *Monochrome ,_abg ...int )(_baea *Monochrome ,_cg error ){if _aaa ==nil {return nil ,_d .New ("\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); -};if len (_abg )==0{return nil ,_d .New ("\u0074h\u0065\u0072e\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0061\u0074 \u006c\u0065\u0061\u0073\u0074\u0020o\u006e\u0065\u0020\u006c\u0065\u0076\u0065\u006c\u0020\u006f\u0066 \u0072\u0065\u0064\u0075\u0063\u0074\u0069\u006f\u006e"); -};_fef :=_eba ();_baea =_aaa ;for _ ,_gca :=range _abg {if _gca <=0{break ;};_baea ,_cg =_aaff (_baea ,_gca ,_fef );if _cg !=nil {return nil ,_cg ;};};return _baea ,nil ;};func (_dcff *Gray4 )GrayAt (x ,y int )_de .Gray {_edba ,_ :=ColorAtGray4BPC (x ,y ,_dcff .BytesPerLine ,_dcff .Data ,_dcff .Decode ); -return _edba ;};func (_bage *NRGBA16 )setNRGBA (_bgae ,_ffed ,_bbfa int ,_ggeeg _de .NRGBA ){if _bgae *3%2==0{_bage .Data [_bbfa ]=(_ggeeg .R >>4)<<4|(_ggeeg .G >>4);_bage .Data [_bbfa +1]=(_ggeeg .B >>4)<<4|(_bage .Data [_bbfa +1]&0xf);}else {_bage .Data [_bbfa ]=(_bage .Data [_bbfa ]&0xf0)|(_ggeeg .R >>4); -_bage .Data [_bbfa +1]=(_ggeeg .G >>4)<<4|(_ggeeg .B >>4);};if _bage .Alpha !=nil {_afec :=_ffed *BytesPerLine (_bage .Width ,4,1);if _afec < len (_bage .Alpha ){if _bgae %2==0{_bage .Alpha [_afec ]=(_ggeeg .A >>uint (4))<>uint (4));};};};};func _dfbd (_cfbb uint )uint {var _gbf uint ;for _cfbb !=0{_cfbb >>=1;_gbf ++;};return _gbf -1;};func (_cdfd *Gray4 )Base ()*ImageBase {return &_cdfd .ImageBase }; -func (_fbfb *NRGBA64 )SetNRGBA64 (x ,y int ,c _de .NRGBA64 ){_cabg :=(y *_fbfb .Width +x )*2;_acfc :=_cabg *3;if _acfc +5>=len (_fbfb .Data ){return ;};_fbfb .setNRGBA64 (_acfc ,c ,_cabg );};func NewImageBase (width int ,height int ,bitsPerComponent int ,colorComponents int ,data []byte ,alpha []byte ,decode []float64 )ImageBase {_gcad :=ImageBase {Width :width ,Height :height ,BitsPerComponent :bitsPerComponent ,ColorComponents :colorComponents ,Data :data ,Alpha :alpha ,Decode :decode ,BytesPerLine :BytesPerLine (width ,bitsPerComponent ,colorComponents )}; -if data ==nil {_gcad .Data =make ([]byte ,height *_gcad .BytesPerLine );};return _gcad ;};func (_dag *Monochrome )Validate ()error {if len (_dag .Data )!=_dag .Height *_dag .BytesPerLine {return ErrInvalidImage ;};return nil ;};func NewImage (width ,height ,bitsPerComponent ,colorComponents int ,data ,alpha []byte ,decode []float64 )(Image ,error ){_ggfb :=NewImageBase (width ,height ,bitsPerComponent ,colorComponents ,data ,alpha ,decode ); -var _afda Image ;switch colorComponents {case 1:switch bitsPerComponent {case 1:_afda =&Monochrome {ImageBase :_ggfb ,ModelThreshold :0x0f};case 2:_afda =&Gray2 {ImageBase :_ggfb };case 4:_afda =&Gray4 {ImageBase :_ggfb };case 8:_afda =&Gray8 {ImageBase :_ggfb }; -case 16:_afda =&Gray16 {ImageBase :_ggfb };};case 3:switch bitsPerComponent {case 4:_afda =&NRGBA16 {ImageBase :_ggfb };case 8:_afda =&NRGBA32 {ImageBase :_ggfb };case 16:_afda =&NRGBA64 {ImageBase :_ggfb };};case 4:_afda =&CMYK32 {ImageBase :_ggfb };}; -if _afda ==nil {return nil ,ErrInvalidImage ;};return _afda ,nil ;};func _cec (_cdaa RGBA ,_fcf NRGBA ,_fddcf _dc .Rectangle ){for _aacg :=0;_aacg < _fddcf .Max .X ;_aacg ++{for _cffe :=0;_cffe < _fddcf .Max .Y ;_cffe ++{_gecf :=_cdaa .RGBAAt (_aacg ,_cffe ); -_fcf .SetNRGBA (_aacg ,_cffe ,_gea (_gecf ));};};};func (_dcbe *ImageBase )GetAlpha ()[]byte {return _dcbe .Alpha };func (_cedd *Gray8 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtGray8BPC (x ,y ,_cedd .BytesPerLine ,_cedd .Data ,_cedd .Decode ); -};type colorConverter struct{_begg func (_gcg _dc .Image )(Image ,error );};func (_cacd *Gray4 )ColorModel ()_de .Model {return Gray4Model };func _fb (_af *Monochrome ,_e int )(*Monochrome ,error ){if _af ==nil {return nil ,_d .New ("\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if _e ==1{return _af .copy (),nil ;};if !IsPowerOf2 (uint (_e )){return nil ,_dcg .Errorf ("\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006ci\u0064 \u0065x\u0070a\u006e\u0064\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",_e ); -};_eg :=_ddbg (_e );return _cfa (_af ,_e ,_eg );};func (_beee *Gray8 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_beee .Width ,Y :_beee .Height }};};func _gdee (_adcbd CMYK ,_abcb Gray ,_fbge _dc .Rectangle ){for _abgf :=0;_abgf < _fbge .Max .X ; -_abgf ++{for _cddda :=0;_cddda < _fbge .Max .Y ;_cddda ++{_ffbc :=_eecg (_adcbd .CMYKAt (_abgf ,_cddda ));_abcb .SetGray (_abgf ,_cddda ,_ffbc );};};};func (_agb *Gray8 )ColorModel ()_de .Model {return _de .GrayModel };func _bab (_ggee _de .NRGBA64 )_de .RGBA {_cceg ,_dcbc ,_agfd ,_bffgc :=_ggee .RGBA (); -return _de .RGBA {R :uint8 (_cceg >>8),G :uint8 (_dcbc >>8),B :uint8 (_agfd >>8),A :uint8 (_bffgc >>8)};};var _ _dc .Image =&Gray2 {};func (_afaa *CMYK32 )Copy ()Image {return &CMYK32 {ImageBase :_afaa .copy ()}};func (_eacd *CMYK32 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtCMYK (x ,y ,_eacd .Width ,_eacd .Data ,_eacd .Decode ); -};func (_gbc *CMYK32 )CMYKAt (x ,y int )_de .CMYK {_fbee ,_ :=ColorAtCMYK (x ,y ,_gbc .Width ,_gbc .Data ,_gbc .Decode );return _fbee ;};type monochromeModel uint8 ;func (_beff *RGBA32 )ColorModel ()_de .Model {return _de .NRGBAModel };func _dcgf (_eagf _dc .Image ,_fceff Image ,_edcg _dc .Rectangle ){if _dgbd ,_ecada :=_eagf .(SMasker ); -_ecada &&_dgbd .HasAlpha (){_fceff .(SMasker ).MakeAlpha ();};switch _aebd :=_eagf .(type ){case Gray :_ddac (_aebd ,_fceff .(NRGBA ),_edcg );case NRGBA :_ffag (_aebd ,_fceff .(NRGBA ),_edcg );case *_dc .NYCbCrA :_beeg (_aebd ,_fceff .(NRGBA ),_edcg ); -case CMYK :_baca (_aebd ,_fceff .(NRGBA ),_edcg );case RGBA :_cec (_aebd ,_fceff .(NRGBA ),_edcg );case nrgba64 :_ddcf (_aebd ,_fceff .(NRGBA ),_edcg );default:_cdf (_eagf ,_fceff ,_edcg );};};func _addc (_egd ,_abe *Monochrome )(_bef error ){_db :=_abe .BytesPerLine ; -_dfb :=_egd .BytesPerLine ;var _ggf ,_egf ,_ffe ,_eec ,_fgd int ;for _ffe =0;_ffe < _abe .Height ;_ffe ++{_ggf =_ffe *_db ;_egf =8*_ffe *_dfb ;for _eec =0;_eec < _db ;_eec ++{if _bef =_egd .setEightBytes (_egf +_eec *8,_ffb [_abe .Data [_ggf +_eec ]]); -_bef !=nil {return _bef ;};};for _fgd =1;_fgd < 8;_fgd ++{for _eec =0;_eec < _dfb ;_eec ++{if _bef =_egd .setByte (_egf +_fgd *_dfb +_eec ,_egd .Data [_egf +_eec ]);_bef !=nil {return _bef ;};};};};return nil ;};func (_bcgg *NRGBA16 )SetNRGBA (x ,y int ,c _de .NRGBA ){_abdabf :=y *_bcgg .BytesPerLine +x *3/2; -if _abdabf +1>=len (_bcgg .Data ){return ;};c =_eecb (c );_bcgg .setNRGBA (x ,y ,_abdabf ,c );};func (_cedb *Gray4 )Copy ()Image {return &Gray4 {ImageBase :_cedb .copy ()}};func (_cfbf *NRGBA16 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtNRGBA16 (x ,y ,_cfbf .Width ,_cfbf .BytesPerLine ,_cfbf .Data ,_cfbf .Alpha ,_cfbf .Decode ); -};type Image interface{_fe .Image ;Base ()*ImageBase ;Copy ()Image ;Pix ()[]byte ;ColorAt (_bfedgf ,_gdgb int )(_de .Color ,error );Validate ()error ;};func (_eggf *ImageBase )newAlpha (){_ggcf :=BytesPerLine (_eggf .Width ,_eggf .BitsPerComponent ,1); -_eggf .Alpha =make ([]byte ,_eggf .Height *_ggcf );};func (_faefe *Gray16 )Set (x ,y int ,c _de .Color ){_dbcf :=(y *_faefe .BytesPerLine /2+x )*2;if _dbcf +1>=len (_faefe .Data ){return ;};_adfd :=_de .Gray16Model .Convert (c ).(_de .Gray16 );_faefe .Data [_dbcf ],_faefe .Data [_dbcf +1]=uint8 (_adfd .Y >>8),uint8 (_adfd .Y &0xff); -};type Gray16 struct{ImageBase };func (_cdagc *NRGBA32 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_cdagc .Width ,Y :_cdagc .Height }};};func ColorAtGrayscale (x ,y ,bitsPerColor ,bytesPerLine int ,data []byte ,decode []float64 )(_de .Color ,error ){switch bitsPerColor {case 1:return ColorAtGray1BPC (x ,y ,bytesPerLine ,data ,decode ); +package imageutil ;import (_f "encoding/binary";_e "errors";_db "fmt";_a "github.com/unidoc/unipdf/v3/common";_eeg "github.com/unidoc/unipdf/v3/internal/bitwise";_ee "image";_d "image/color";_ed "image/draw";_g "math";);func (_dcge *NRGBA32 )Copy ()Image {return &NRGBA32 {ImageBase :_dcge .copy ()}}; +func (_daef *Gray16 )Base ()*ImageBase {return &_daef .ImageBase };func (_badb *monochromeThresholdConverter )Convert (img _ee .Image )(Image ,error ){if _acfd ,_bagf :=img .(*Monochrome );_bagf {return _acfd .Copy (),nil ;};_dec :=img .Bounds ();_efgd ,_beda :=NewImage (_dec .Max .X ,_dec .Max .Y ,1,1,nil ,nil ,nil ); +if _beda !=nil {return nil ,_beda ;};_efgd .(*Monochrome ).ModelThreshold =_badb .Threshold ;for _agf :=0;_agf < _dec .Max .X ;_agf ++{for _cfgef :=0;_cfgef < _dec .Max .Y ;_cfgef ++{_bccb :=img .At (_agf ,_cfgef );_efgd .Set (_agf ,_cfgef ,_bccb );};}; +return _efgd ,nil ;};func (_fadb *Monochrome )Validate ()error {if len (_fadb .Data )!=_fadb .Height *_fadb .BytesPerLine {return ErrInvalidImage ;};return nil ;};func (_aagb *Gray2 )GrayAt (x ,y int )_d .Gray {_acc ,_ :=ColorAtGray2BPC (x ,y ,_aagb .BytesPerLine ,_aagb .Data ,_aagb .Decode ); +return _acc ;};func (_cagb *ImageBase )HasAlpha ()bool {if _cagb .Alpha ==nil {return false ;};for _gbce :=range _cagb .Alpha {if _cagb .Alpha [_gbce ]!=0xff{return true ;};};return false ;};func (_fbfa *Monochrome )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_fbfa .Width ,Y :_fbfa .Height }}; +};var _ Image =&Gray2 {};func (_aecaf *Gray2 )Histogram ()(_aea [256]int ){for _gede :=0;_gede < _aecaf .Width ;_gede ++{for _gccf :=0;_gccf < _aecaf .Height ;_gccf ++{_aea [_aecaf .GrayAt (_gede ,_gccf ).Y ]++;};};return _aea ;};func _eeac (_gcecd int ,_fgag int )error {return _db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",_gcecd ,_fgag ); +};func _cdcc (_gfbe _d .NRGBA64 )_d .NRGBA {return _d .NRGBA {R :uint8 (_gfbe .R >>8),G :uint8 (_gfbe .G >>8),B :uint8 (_gfbe .B >>8),A :uint8 (_gfbe .A >>8)};};func _efaga (_cfbfd []byte ,_dace Image )error {_ebea :=true ;for _efda :=0;_efda < len (_cfbfd ); +_efda ++{if _cfbfd [_efda ]!=0xff{_ebea =false ;break ;};};if _ebea {switch _febe :=_dace .(type ){case *NRGBA32 :_febe .Alpha =nil ;case *NRGBA64 :_febe .Alpha =nil ;default:return _db .Errorf ("i\u006ete\u0072n\u0061l\u0020\u0065\u0072\u0072\u006fr\u0020\u002d\u0020i\u006d\u0061\u0067\u0065\u0020s\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u006f\u0066\u0020\u0074\u0079\u0070e\u0020\u002a\u004eRGB\u0041\u0033\u0032\u0020\u006f\u0072 \u002a\u004e\u0052\u0047\u0042\u0041\u0036\u0034\u0020\u0062\u0075\u0074 \u0069s\u003a\u0020\u0025\u0054",_dace ); +};};return nil ;};func (_gaa *CMYK32 )Set (x ,y int ,c _d .Color ){_gfcb :=4*(y *_gaa .Width +x );if _gfcb +3>=len (_gaa .Data ){return ;};_feab :=_d .CMYKModel .Convert (c ).(_d .CMYK );_gaa .Data [_gfcb ]=_feab .C ;_gaa .Data [_gfcb +1]=_feab .M ;_gaa .Data [_gfcb +2]=_feab .Y ; +_gaa .Data [_gfcb +3]=_feab .K ;};var _ _ee .Image =&Gray4 {};func _fafc (_fadf _d .CMYK )_d .Gray {_fbaf ,_bcf ,_cgb :=_d .CMYKToRGB (_fadf .C ,_fadf .M ,_fadf .Y ,_fadf .K );_gafb :=(19595*uint32 (_fbaf )+38470*uint32 (_bcf )+7471*uint32 (_cgb )+1<<7)>>16; +return _d .Gray {Y :uint8 (_gafb )};};func (_bebg *Gray8 )ColorModel ()_d .Model {return _d .GrayModel };func _efe ()(_gbg [256]uint64 ){for _ggf :=0;_ggf < 256;_ggf ++{if _ggf &0x01!=0{_gbg [_ggf ]|=0xff;};if _ggf &0x02!=0{_gbg [_ggf ]|=0xff00;};if _ggf &0x04!=0{_gbg [_ggf ]|=0xff0000; +};if _ggf &0x08!=0{_gbg [_ggf ]|=0xff000000;};if _ggf &0x10!=0{_gbg [_ggf ]|=0xff00000000;};if _ggf &0x20!=0{_gbg [_ggf ]|=0xff0000000000;};if _ggf &0x40!=0{_gbg [_ggf ]|=0xff000000000000;};if _ggf &0x80!=0{_gbg [_ggf ]|=0xff00000000000000;};};return _gbg ; +};func MonochromeThresholdConverter (threshold uint8 )ColorConverter {return &monochromeThresholdConverter {Threshold :threshold };};func (_ggfg *Monochrome )At (x ,y int )_d .Color {_dggb ,_ :=_ggfg .ColorAt (x ,y );return _dggb };func (_ebfbb *ImageBase )setEightBytes (_cgda int ,_gagd uint64 )error {_bfag :=_ebfbb .BytesPerLine -(_cgda %_ebfbb .BytesPerLine ); +if _ebfbb .BytesPerLine !=_ebfbb .Width >>3{_bfag --;};if _bfag >=8{return _ebfbb .setEightFullBytes (_cgda ,_gagd );};return _ebfbb .setEightPartlyBytes (_cgda ,_bfag ,_gagd );};func (_fab *Gray16 )Copy ()Image {return &Gray16 {ImageBase :_fab .copy ()}}; +func (_adce *Gray8 )Base ()*ImageBase {return &_adce .ImageBase };func (_egg *Gray4 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtGray4BPC (x ,y ,_egg .BytesPerLine ,_egg .Data ,_egg .Decode );};func _fbbg (_dbf Gray ,_fbc nrgba64 ,_afg _ee .Rectangle ){for _abed :=0; +_abed < _afg .Max .X ;_abed ++{for _cce :=0;_cce < _afg .Max .Y ;_cce ++{_geb :=_aggf (_fbc .NRGBA64At (_abed ,_cce ));_dbf .SetGray (_abed ,_cce ,_geb );};};};func (_dgc monochromeModel )Convert (c _d .Color )_d .Color {_aec :=_d .GrayModel .Convert (c ).(_d .Gray ); +return _beg (_aec ,_dgc );};func (_aae *NRGBA64 )SetNRGBA64 (x ,y int ,c _d .NRGBA64 ){_acdf :=(y *_aae .Width +x )*2;_fgbcd :=_acdf *3;if _fgbcd +5>=len (_aae .Data ){return ;};_aae .setNRGBA64 (_fgbcd ,c ,_acdf );};func (_cedf *NRGBA64 )Set (x ,y int ,c _d .Color ){_aade :=(y *_cedf .Width +x )*2; +_eggc :=_aade *3;if _eggc +5>=len (_cedf .Data ){return ;};_gbde :=_d .NRGBA64Model .Convert (c ).(_d .NRGBA64 );_cedf .setNRGBA64 (_eggc ,_gbde ,_aade );};var _bcdf [256]uint8 ;func (_egfa *NRGBA64 )setNRGBA64 (_beaa int ,_eacf _d .NRGBA64 ,_edffc int ){_egfa .Data [_beaa ]=uint8 (_eacf .R >>8); +_egfa .Data [_beaa +1]=uint8 (_eacf .R &0xff);_egfa .Data [_beaa +2]=uint8 (_eacf .G >>8);_egfa .Data [_beaa +3]=uint8 (_eacf .G &0xff);_egfa .Data [_beaa +4]=uint8 (_eacf .B >>8);_egfa .Data [_beaa +5]=uint8 (_eacf .B &0xff);if _edffc +1< len (_egfa .Alpha ){_egfa .Alpha [_edffc ]=uint8 (_eacf .A >>8); +_egfa .Alpha [_edffc +1]=uint8 (_eacf .A &0xff);};};func (_gfdf *Monochrome )Base ()*ImageBase {return &_gfdf .ImageBase };func _eea (_ce ,_cb *Monochrome )(_bag error ){_cag :=_cb .BytesPerLine ;_fe :=_ce .BytesPerLine ;_ff :=_cb .BytesPerLine *4-_ce .BytesPerLine ; +var (_cf ,_gd byte ;_fc uint32 ;_gg ,_caf ,_bd ,_acd ,_fd ,_fa ,_gaf int ;);for _bd =0;_bd < _cb .Height ;_bd ++{_gg =_bd *_cag ;_caf =4*_bd *_fe ;for _acd =0;_acd < _cag ;_acd ++{_cf =_cb .Data [_gg +_acd ];_fc =_acf [_cf ];_fa =_caf +_acd *4;if _ff !=0&&(_acd +1)*4> _ce .BytesPerLine {for _fd =_ff ; +_fd > 0;_fd --{_gd =byte ((_fc >>uint (_fd *8))&0xff);_gaf =_fa +(_ff -_fd );if _bag =_ce .setByte (_gaf ,_gd );_bag !=nil {return _bag ;};};}else if _bag =_ce .setFourBytes (_fa ,_fc );_bag !=nil {return _bag ;};if _bag =_ce .setFourBytes (_caf +_acd *4,_acf [_cb .Data [_gg +_acd ]]); +_bag !=nil {return _bag ;};};for _fd =1;_fd < 4;_fd ++{for _acd =0;_acd < _fe ;_acd ++{if _bag =_ce .setByte (_caf +_fd *_fe +_acd ,_ce .Data [_caf +_acd ]);_bag !=nil {return _bag ;};};};};return nil ;};func RasterOperation (dest *Monochrome ,dx ,dy ,dw ,dh int ,op RasterOperator ,src *Monochrome ,sx ,sy int )error {return _gbcc (dest ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy ); +};func (_acdd *Gray2 )Validate ()error {if len (_acdd .Data )!=_acdd .Height *_acdd .BytesPerLine {return ErrInvalidImage ;};return nil ;};var _ _ee .Image =&NRGBA64 {};func ColorAtNRGBA64 (x ,y ,width int ,data ,alpha []byte ,decode []float64 )(_d .NRGBA64 ,error ){_dbac :=(y *width +x )*2; +_ecgc :=_dbac *3;if _ecgc +5>=len (data ){return _d .NRGBA64 {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};const _gdfgg =0xffff;_bdge :=uint16 (_gdfgg );if alpha !=nil &&len (alpha )> _dbac +1{_bdge =uint16 (alpha [_dbac ])<<8|uint16 (alpha [_dbac +1]);};_egfd :=uint16 (data [_ecgc ])<<8|uint16 (data [_ecgc +1]);_dcea :=uint16 (data [_ecgc +2])<<8|uint16 (data [_ecgc +3]); +_daedd :=uint16 (data [_ecgc +4])<<8|uint16 (data [_ecgc +5]);if len (decode )==6{_egfd =uint16 (uint64 (LinearInterpolate (float64 (_egfd ),0,65535,decode [0],decode [1]))&_gdfgg );_dcea =uint16 (uint64 (LinearInterpolate (float64 (_dcea ),0,65535,decode [2],decode [3]))&_gdfgg ); +_daedd =uint16 (uint64 (LinearInterpolate (float64 (_daedd ),0,65535,decode [4],decode [5]))&_gdfgg );};return _d .NRGBA64 {R :_egfd ,G :_dcea ,B :_daedd ,A :_bdge },nil ;};func _gccd (_dcfeb RGBA ,_eebc Gray ,_cefc _ee .Rectangle ){for _cfea :=0;_cfea < _cefc .Max .X ; +_cfea ++{for _bdef :=0;_bdef < _cefc .Max .Y ;_bdef ++{_cacc :=_aced (_dcfeb .RGBAAt (_cfea ,_bdef ));_eebc .SetGray (_cfea ,_bdef ,_cacc );};};};func (_eade *Gray4 )Set (x ,y int ,c _d .Color ){if x >=_eade .Width ||y >=_eade .Height {return ;};_dcgg :=Gray4Model .Convert (c ).(_d .Gray ); +_eade .setGray (x ,y ,_dcgg );};func _badd (_gged _ee .Image )(Image ,error ){if _fede ,_cabg :=_gged .(*Gray2 );_cabg {return _fede .Copy (),nil ;};_dgfb :=_gged .Bounds ();_dgag ,_aaad :=NewImage (_dgfb .Max .X ,_dgfb .Max .Y ,2,1,nil ,nil ,nil );if _aaad !=nil {return nil ,_aaad ; +};_gbgd (_gged ,_dgag ,_dgfb );return _dgag ,nil ;};var _ Image =&Gray8 {};func (_fbcd *NRGBA32 )setRGBA (_afdac int ,_fce _d .NRGBA ){_dacf :=3*_afdac ;_fbcd .Data [_dacf ]=_fce .R ;_fbcd .Data [_dacf +1]=_fce .G ;_fbcd .Data [_dacf +2]=_fce .B ;if _afdac < len (_fbcd .Alpha ){_fbcd .Alpha [_afdac ]=_fce .A ; +};};func _gdea (_eggd CMYK ,_fcfg RGBA ,_cgdb _ee .Rectangle ){for _gbfcf :=0;_gbfcf < _cgdb .Max .X ;_gbfcf ++{for _fecf :=0;_fecf < _cgdb .Max .Y ;_fecf ++{_feae :=_eggd .CMYKAt (_gbfcf ,_fecf );_fcfg .SetRGBA (_gbfcf ,_fecf ,_adfe (_feae ));};};};func _fega (_bad _ee .Image ,_addaa Image ,_gcd _ee .Rectangle ){for _dfg :=0; +_dfg < _gcd .Max .X ;_dfg ++{for _efec :=0;_efec < _gcd .Max .Y ;_efec ++{_adcb :=_bad .At (_dfg ,_efec );_addaa .Set (_dfg ,_efec ,_adcb );};};};func (_gafd *Monochrome )ScaleLow (width ,height int )(*Monochrome ,error ){if width < 0||height < 0{return nil ,_e .New ("\u0070\u0072\u006f\u0076\u0069\u0064e\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0077\u0069\u0064t\u0068\u0020\u0061\u006e\u0064\u0020\u0068e\u0069\u0067\u0068\u0074"); +};_dgfe :=_bed (width ,height );_bdbg :=make ([]int ,height );_fgfb :=make ([]int ,width );_gfdg :=float64 (_gafd .Width )/float64 (width );_agaa :=float64 (_gafd .Height )/float64 (height );for _dfgd :=0;_dfgd < height ;_dfgd ++{_bdbg [_dfgd ]=int (_g .Min (_agaa *float64 (_dfgd )+0.5,float64 (_gafd .Height -1))); +};for _fbe :=0;_fbe < width ;_fbe ++{_fgfb [_fbe ]=int (_g .Min (_gfdg *float64 (_fbe )+0.5,float64 (_gafd .Width -1)));};_cdd :=-1;_bgg :=byte (0);for _ecga :=0;_ecga < height ;_ecga ++{_bgb :=_bdbg [_ecga ]*_gafd .BytesPerLine ;_dgb :=_ecga *_dgfe .BytesPerLine ; +for _gff :=0;_gff < width ;_gff ++{_daf :=_fgfb [_gff ];if _daf !=_cdd {_bgg =_gafd .getBit (_bgb ,_daf );if _bgg !=0{_dgfe .setBit (_dgb ,_gff );};_cdd =_daf ;}else {if _bgg !=0{_dgfe .setBit (_dgb ,_gff );};};};};return _dgfe ,nil ;};func _bdgc (_dee uint )uint {var _eec uint ; +for _dee !=0{_dee >>=1;_eec ++;};return _eec -1;};type Image interface{_ed .Image ;Base ()*ImageBase ;Copy ()Image ;Pix ()[]byte ;ColorAt (_ccbdg ,_aaag int )(_d .Color ,error );Validate ()error ;};func _gecf (_bfg _d .Gray )_d .NRGBA {return _d .NRGBA {R :_bfg .Y ,G :_bfg .Y ,B :_bfg .Y ,A :0xff}}; +func _dfeg (_eda _d .CMYK )_d .NRGBA {_aag ,_ccg ,_gce :=_d .CMYKToRGB (_eda .C ,_eda .M ,_eda .Y ,_eda .K );return _d .NRGBA {R :_aag ,G :_ccg ,B :_gce ,A :0xff};};func (_abge *ImageBase )setByte (_geeef int ,_ccdf byte )error {if _geeef > len (_abge .Data )-1{return _e .New ("\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};_abge .Data [_geeef ]=_ccdf ;return nil ;};func (_acea *Monochrome )setIndexedBit (_agce int ){_acea .Data [(_agce >>3)]|=0x80>>uint (_agce &7)};func (_gdc *Gray2 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_gdc .Width ,Y :_gdc .Height }}; +};var (Gray2Model =_d .ModelFunc (_efef );Gray4Model =_d .ModelFunc (_fdfa );NRGBA16Model =_d .ModelFunc (_fefe ););func (_egae *Monochrome )ColorModel ()_d .Model {return MonochromeModel (_egae .ModelThreshold )};func (_cfga *ImageBase )setEightPartlyBytes (_bfea ,_aecf int ,_bcegb uint64 )(_faba error ){var (_cacb byte ; +_babd int ;);for _gfga :=1;_gfga <=_aecf ;_gfga ++{_babd =64-_gfga *8;_cacb =byte (_bcegb >>uint (_babd )&0xff);if _faba =_cfga .setByte (_bfea +_gfga -1,_cacb );_faba !=nil {return _faba ;};};_cfbf :=_cfga .BytesPerLine *8-_cfga .Width ;if _cfbf ==0{return nil ; +};_babd -=8;_cacb =byte (_bcegb >>uint (_babd )&0xff)<>8),G :uint8 (_gca >>8),B :uint8 (_agae >>8),A :uint8 (_fgef >>8)}; +};};type ColorConverter interface{Convert (_gcg _ee .Image )(Image ,error );};func AddDataPadding (width ,height ,bitsPerComponent ,colorComponents int ,data []byte )([]byte ,error ){_gdba :=BytesPerLine (width ,bitsPerComponent ,colorComponents );if _gdba ==width *colorComponents *bitsPerComponent /8{return data ,nil ; +};_bcbe :=width *colorComponents *bitsPerComponent ;_febb :=_gdba *8;_dbgd :=8-(_febb -_bcbe );_dedd :=_eeg .NewReader (data );_efag :=_gdba -1;_gdff :=make ([]byte ,_efag );_ccbdge :=make ([]byte ,height *_gdba );_fcbg :=_eeg .NewWriterMSB (_ccbdge ); +var _gdaf uint64 ;var _cfdc error ;for _fgbg :=0;_fgbg < height ;_fgbg ++{_ ,_cfdc =_dedd .Read (_gdff );if _cfdc !=nil {return nil ,_cfdc ;};_ ,_cfdc =_fcbg .Write (_gdff );if _cfdc !=nil {return nil ,_cfdc ;};_gdaf ,_cfdc =_dedd .ReadBits (byte (_dbgd )); +if _cfdc !=nil {return nil ,_cfdc ;};_ ,_cfdc =_fcbg .WriteBits (_gdaf ,_dbgd );if _cfdc !=nil {return nil ,_cfdc ;};_fcbg .FinishByte ();};return _ccbdge ,nil ;};func _cadc (_gdad *Monochrome ,_eae ,_afbb ,_eadg ,_ceaf int ,_cbdc RasterOperator ,_adaf *Monochrome ,_gfda ,_bfac int )error {var (_dgbbf bool ; +_bebb bool ;_cdbb byte ;_eega int ;_ffef int ;_eba int ;_edce int ;_efdc bool ;_dfce int ;_fged int ;_ggg int ;_ccbc bool ;_caebc byte ;_febbg int ;_ecdf int ;_afcc int ;_ggefd byte ;_ccad int ;_cdea int ;_cbccg uint ;_egcd uint ;_eagfa byte ;_gdfgc shift ; +_bggd bool ;_ceeg bool ;_bfeb ,_gbfgg int ;);if _gfda &7!=0{_cdea =8-(_gfda &7);};if _eae &7!=0{_ffef =8-(_eae &7);};if _cdea ==0&&_ffef ==0{_eagfa =_afge [0];}else {if _ffef > _cdea {_cbccg =uint (_ffef -_cdea );}else {_cbccg =uint (8-(_cdea -_ffef )); +};_egcd =8-_cbccg ;_eagfa =_afge [_cbccg ];};if (_eae &7)!=0{_dgbbf =true ;_eega =8-(_eae &7);_cdbb =_afge [_eega ];_eba =_gdad .BytesPerLine *_afbb +(_eae >>3);_edce =_adaf .BytesPerLine *_bfac +(_gfda >>3);_ccad =8-(_gfda &7);if _eega > _ccad {_gdfgc =_egfe ; +if _eadg >=_cdea {_bggd =true ;};}else {_gdfgc =_cdfb ;};};if _eadg < _eega {_bebb =true ;_cdbb &=_gbdbe [8-_eega +_eadg ];};if !_bebb {_dfce =(_eadg -_eega )>>3;if _dfce !=0{_efdc =true ;_fged =_gdad .BytesPerLine *_afbb +((_eae +_ffef )>>3);_ggg =_adaf .BytesPerLine *_bfac +((_gfda +_ffef )>>3); +};};_febbg =(_eae +_eadg )&7;if !(_bebb ||_febbg ==0){_ccbc =true ;_caebc =_gbdbe [_febbg ];_ecdf =_gdad .BytesPerLine *_afbb +((_eae +_ffef )>>3)+_dfce ;_afcc =_adaf .BytesPerLine *_bfac +((_gfda +_ffef )>>3)+_dfce ;if _febbg > int (_egcd ){_ceeg =true ; +};};switch _cbdc {case PixSrc :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ; +};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],_ggefd ,_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa ); +_gdad .Data [_fged +_gbfgg ]=_ggefd ;};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa ); +};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],_ggefd ,_caebc );_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixNotSrc :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa ); +};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],^_ggefd ,_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa ); +_gdad .Data [_fged +_gbfgg ]=^_ggefd ;};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa ); +};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],^_ggefd ,_caebc );_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixSrcOrDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ; +if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],_ggefd |_gdad .Data [_eba ],_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ; +};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]|=_ggefd ;};_fged +=_gdad .BytesPerLine ; +_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],_ggefd |_gdad .Data [_ecdf ],_caebc ); +_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixSrcAndDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa ); +};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],_ggefd &_gdad .Data [_eba ],_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0; +_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]&=_ggefd ;};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ; +_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],_ggefd &_gdad .Data [_ecdf ],_caebc );_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ; +};};case PixSrcXorDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],_ggefd ^_gdad .Data [_eba ],_cdbb ); +_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]^=_ggefd ; +};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],_ggefd ^_gdad .Data [_ecdf ],_caebc ); +_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixNotSrcOrDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa ); +};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],^_ggefd |_gdad .Data [_eba ],_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0; +_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]|=^_ggefd ;};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ; +_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],^_ggefd |_gdad .Data [_ecdf ],_caebc );_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ; +};};case PixNotSrcAndDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;}; +_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],^_ggefd &_gdad .Data [_eba ],_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa ); +_gdad .Data [_fged +_gbfgg ]&=^_ggefd ;};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa ); +};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],^_ggefd &_gdad .Data [_ecdf ],_caebc );_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixSrcOrNotDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ; +if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],_ggefd |^_gdad .Data [_eba ],_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ; +};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]=_ggefd |^_gdad .Data [_fged +_gbfgg ]; +};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],_ggefd |^_gdad .Data [_ecdf ],_caebc ); +_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixSrcAndNotDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa ); +};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],_ggefd &^_gdad .Data [_eba ],_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0; +_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]=_ggefd &^_gdad .Data [_fged +_gbfgg ];};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;}; +};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],_ggefd &^_gdad .Data [_ecdf ],_caebc );_ecdf +=_gdad .BytesPerLine ; +_afcc +=_adaf .BytesPerLine ;};};case PixNotPixSrcOrDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ; +};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],^(_ggefd |_gdad .Data [_eba ]),_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa ); +_gdad .Data [_fged +_gbfgg ]=^(_ggefd |_gdad .Data [_fged +_gbfgg ]);};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa ); +};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],^(_ggefd |_gdad .Data [_ecdf ]),_caebc );_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixNotPixSrcAndDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ; +if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa );};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],^(_ggefd &_gdad .Data [_eba ]),_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ; +};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0;_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]=^(_ggefd &_gdad .Data [_fged +_gbfgg ]); +};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ;};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],^(_ggefd &_gdad .Data [_ecdf ]),_caebc ); +_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};case PixNotPixSrcXorDst :if _dgbbf {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{if _gdfgc ==_egfe {_ggefd =_adaf .Data [_edce ]<<_cbccg ;if _bggd {_ggefd =_ggdf (_ggefd ,_adaf .Data [_edce +1]>>_egcd ,_eagfa ); +};}else {_ggefd =_adaf .Data [_edce ]>>_egcd ;};_gdad .Data [_eba ]=_ggdf (_gdad .Data [_eba ],^(_ggefd ^_gdad .Data [_eba ]),_cdbb );_eba +=_gdad .BytesPerLine ;_edce +=_adaf .BytesPerLine ;};};if _efdc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{for _gbfgg =0; +_gbfgg < _dfce ;_gbfgg ++{_ggefd =_ggdf (_adaf .Data [_ggg +_gbfgg ]<<_cbccg ,_adaf .Data [_ggg +_gbfgg +1]>>_egcd ,_eagfa );_gdad .Data [_fged +_gbfgg ]=^(_ggefd ^_gdad .Data [_fged +_gbfgg ]);};_fged +=_gdad .BytesPerLine ;_ggg +=_adaf .BytesPerLine ; +};};if _ccbc {for _bfeb =0;_bfeb < _ceaf ;_bfeb ++{_ggefd =_adaf .Data [_afcc ]<<_cbccg ;if _ceeg {_ggefd =_ggdf (_ggefd ,_adaf .Data [_afcc +1]>>_egcd ,_eagfa );};_gdad .Data [_ecdf ]=_ggdf (_gdad .Data [_ecdf ],^(_ggefd ^_gdad .Data [_ecdf ]),_caebc ); +_ecdf +=_gdad .BytesPerLine ;_afcc +=_adaf .BytesPerLine ;};};default:_a .Log .Debug ("\u004f\u0070e\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0070\u0065\u0072\u006d\u0069tt\u0065\u0064",_cbdc ); +return _e .New ("\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065r\u0061\u0074\u0069\u006f\u006e\u0020\u006eo\u0074\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064");};return nil ;};func (_caeg *NRGBA32 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtNRGBA32 (x ,y ,_caeg .Width ,_caeg .Data ,_caeg .Alpha ,_caeg .Decode ); +};func (_gdbf *NRGBA64 )Validate ()error {if len (_gdbf .Data )!=3*2*_gdbf .Width *_gdbf .Height {return _e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); +};return nil ;};func (_ccfe *Monochrome )ReduceBinary (factor float64 )(*Monochrome ,error ){_gece :=_bdgc (uint (factor ));if !IsPowerOf2 (uint (factor )){_gece ++;};_dfd :=make ([]int ,_gece );for _acfcb :=range _dfd {_dfd [_acfcb ]=4;};_cedb ,_abef :=_dgf (_ccfe ,_dfd ...); +if _abef !=nil {return nil ,_abef ;};return _cedb ,nil ;};func _bgfe (_ddbb nrgba64 ,_fggd RGBA ,_eeec _ee .Rectangle ){for _cdcg :=0;_cdcg < _eeec .Max .X ;_cdcg ++{for _deda :=0;_deda < _eeec .Max .Y ;_deda ++{_cbaca :=_ddbb .NRGBA64At (_cdcg ,_deda ); +_fggd .SetRGBA (_cdcg ,_deda ,_ebb (_cbaca ));};};};func IsPowerOf2 (n uint )bool {return n > 0&&(n &(n -1))==0};func _cffb (_ebed CMYK ,_gcff NRGBA ,_ecfe _ee .Rectangle ){for _abeda :=0;_abeda < _ecfe .Max .X ;_abeda ++{for _egdbf :=0;_egdbf < _ecfe .Max .Y ; +_egdbf ++{_efaec :=_ebed .CMYKAt (_abeda ,_egdbf );_gcff .SetNRGBA (_abeda ,_egdbf ,_dfeg (_efaec ));};};};type Gray4 struct{ImageBase };var _ _ee .Image =&Monochrome {};func (_cec *CMYK32 )At (x ,y int )_d .Color {_bge ,_ :=_cec .ColorAt (x ,y );return _bge }; +func (_fbgb *NRGBA64 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtNRGBA64 (x ,y ,_fbgb .Width ,_fbgb .Data ,_fbgb .Alpha ,_fbgb .Decode );};func _bcbc (_gfab RGBA ,_fbbe NRGBA ,_egbdf _ee .Rectangle ){for _eaed :=0;_eaed < _egbdf .Max .X ;_eaed ++{for _adeg :=0; +_adeg < _egbdf .Max .Y ;_adeg ++{_edac :=_gfab .RGBAAt (_eaed ,_adeg );_fbbe .SetNRGBA (_eaed ,_adeg ,_egc (_edac ));};};};func _bed (_agc ,_cdc int )*Monochrome {return &Monochrome {ImageBase :NewImageBase (_agc ,_cdc ,1,1,nil ,nil ,nil ),ModelThreshold :0x0f}; +};func init (){_dbc ()};func _b (_fb *Monochrome ,_dge int )(*Monochrome ,error ){if _fb ==nil {return nil ,_e .New ("\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _dge ==1{return _fb .copy (),nil ;};if !IsPowerOf2 (uint (_dge )){return nil ,_db .Errorf ("\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006ci\u0064 \u0065x\u0070a\u006e\u0064\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",_dge ); +};_fbg :=_bc (_dge );return _edg (_fb ,_dge ,_fbg );};func (_fcda *Gray2 )SetGray (x ,y int ,gray _d .Gray ){_fgdg :=_gea (gray );_dccfbe :=y *_fcda .BytesPerLine ;_eead :=_dccfbe +(x >>2);if _eead >=len (_fcda .Data ){return ;};_ebbd :=_fgdg .Y >>6;_fcda .Data [_eead ]=(_fcda .Data [_eead ]&(^(0xc0>>uint (2*((x )&3)))))|(_ebbd <>24;return _d .Gray {Y :uint8 (_ffbe )};};var _ _ee .Image =&NRGBA16 {};func (_abefg *NRGBA16 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtNRGBA16 (x ,y ,_abefg .Width ,_abefg .BytesPerLine ,_abefg .Data ,_abefg .Alpha ,_abefg .Decode ); +};func ColorAtGray8BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_d .Gray ,error ){_dbff :=y *bytesPerLine +x ;if _dbff >=len (data ){return _d .Gray {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_fddb :=data [_dbff ];if len (decode )==2{_fddb =uint8 (uint32 (LinearInterpolate (float64 (_fddb ),0,255,decode [0],decode [1]))&0xff);};return _d .Gray {Y :_fddb },nil ;};func _dba (_dcd _d .Gray )_d .RGBA {return _d .RGBA {R :_dcd .Y ,G :_dcd .Y ,B :_dcd .Y ,A :0xff}}; +func _dbbb (_fgda RGBA ,_fegg CMYK ,_ecd _ee .Rectangle ){for _fbb :=0;_fbb < _ecd .Max .X ;_fbb ++{for _bfa :=0;_bfa < _ecd .Max .Y ;_bfa ++{_dccf :=_fgda .RGBAAt (_fbb ,_bfa );_fegg .SetCMYK (_fbb ,_bfa ,_fae (_dccf ));};};};func (_eed *Gray8 )SetGray (x ,y int ,g _d .Gray ){_edgf :=y *_eed .BytesPerLine +x ; +if _edgf > len (_eed .Data )-1{return ;};_eed .Data [_edgf ]=g .Y ;};func (_cgdc *Monochrome )copy ()*Monochrome {_daeg :=_bed (_cgdc .Width ,_cgdc .Height );_daeg .ModelThreshold =_cgdc .ModelThreshold ;_daeg .Data =make ([]byte ,len (_cgdc .Data ));copy (_daeg .Data ,_cgdc .Data ); +if len (_cgdc .Decode )!=0{_daeg .Decode =make ([]float64 ,len (_cgdc .Decode ));copy (_daeg .Decode ,_cgdc .Decode );};if len (_cgdc .Alpha )!=0{_daeg .Alpha =make ([]byte ,len (_cgdc .Alpha ));copy (_daeg .Alpha ,_cgdc .Alpha );};return _daeg ;};func _ec (_fcd ,_cee *Monochrome )(_cad error ){_cdg :=_cee .BytesPerLine ; +_eg :=_fcd .BytesPerLine ;var _bba ,_fad ,_de ,_feg ,_cg int ;for _de =0;_de < _cee .Height ;_de ++{_bba =_de *_cdg ;_fad =8*_de *_eg ;for _feg =0;_feg < _cdg ;_feg ++{if _cad =_fcd .setEightBytes (_fad +_feg *8,_bg [_cee .Data [_bba +_feg ]]);_cad !=nil {return _cad ; +};};for _cg =1;_cg < 8;_cg ++{for _feg =0;_feg < _eg ;_feg ++{if _cad =_fcd .setByte (_fad +_cg *_eg +_feg ,_fcd .Data [_fad +_feg ]);_cad !=nil {return _cad ;};};};};return nil ;};func ImgToGray (i _ee .Image )*_ee .Gray {if _bcgf ,_fcbc :=i .(*_ee .Gray ); +_fcbc {return _bcgf ;};_adegd :=i .Bounds ();_fbab :=_ee .NewGray (_adegd );for _bfcf :=0;_bfcf < _adegd .Max .X ;_bfcf ++{for _gdbd :=0;_gdbd < _adegd .Max .Y ;_gdbd ++{_afe :=i .At (_bfcf ,_gdbd );_fbab .Set (_bfcf ,_gdbd ,_afe );};};return _fbab ;}; +var _ Image =&NRGBA16 {};func (_cff *Monochrome )setBit (_cfgf ,_gfeg int ){_cff .Data [_cfgf +(_gfeg >>3)]|=0x80>>uint (_gfeg &7);};func (_gbed *NRGBA16 )SetNRGBA (x ,y int ,c _d .NRGBA ){_dbca :=y *_gbed .BytesPerLine +x *3/2;if _dbca +1>=len (_gbed .Data ){return ; +};c =_faef (c );_gbed .setNRGBA (x ,y ,_dbca ,c );};func _bc (_ebe int )[]uint {var _ggfd []uint ;_fcf :=_ebe ;_da :=_fcf /8;if _da !=0{for _dae :=0;_dae < _da ;_dae ++{_ggfd =append (_ggfd ,8);};_bbf :=_fcf %8;_fcf =0;if _bbf !=0{_fcf =_bbf ;};};_adc :=_fcf /4; +if _adc !=0{for _dca :=0;_dca < _adc ;_dca ++{_ggfd =append (_ggfd ,4);};_eag :=_fcf %4;_fcf =0;if _eag !=0{_fcf =_eag ;};};_acgf :=_fcf /2;if _acgf !=0{for _bac :=0;_bac < _acgf ;_bac ++{_ggfd =append (_ggfd ,2);};};return _ggfd ;};func (_bfcb *Gray4 )SetGray (x ,y int ,g _d .Gray ){if x >=_bfcb .Width ||y >=_bfcb .Height {return ; +};g =_gcca (g );_bfcb .setGray (x ,y ,g );};func ColorAt (x ,y ,width ,bitsPerColor ,colorComponents ,bytesPerLine int ,data ,alpha []byte ,decode []float64 )(_d .Color ,error ){switch colorComponents {case 1:return ColorAtGrayscale (x ,y ,bitsPerColor ,bytesPerLine ,data ,decode ); +case 3:return ColorAtNRGBA (x ,y ,width ,bytesPerLine ,bitsPerColor ,data ,alpha ,decode );case 4:return ColorAtCMYK (x ,y ,width ,data ,decode );default:return nil ,_db .Errorf ("\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063o\u006c\u006f\u0072\u0020\u0063\u006f\u006dp\u006f\u006e\u0065\u006e\u0074\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0064",colorComponents ); +};};func _cac ()(_eb [256]uint16 ){for _gge :=0;_gge < 256;_gge ++{if _gge &0x01!=0{_eb [_gge ]|=0x3;};if _gge &0x02!=0{_eb [_gge ]|=0xc;};if _gge &0x04!=0{_eb [_gge ]|=0x30;};if _gge &0x08!=0{_eb [_gge ]|=0xc0;};if _gge &0x10!=0{_eb [_gge ]|=0x300;};if _gge &0x20!=0{_eb [_gge ]|=0xc00; +};if _gge &0x40!=0{_eb [_gge ]|=0x3000;};if _gge &0x80!=0{_eb [_gge ]|=0xc000;};};return _eb ;};func _dbgb (_gabdg _ee .Image ,_bgec Image ,_cccb _ee .Rectangle ){if _acbc ,_ggdb :=_gabdg .(SMasker );_ggdb &&_acbc .HasAlpha (){_bgec .(SMasker ).MakeAlpha (); +};switch _afbe :=_gabdg .(type ){case Gray :_agbfc (_afbe ,_bgec .(RGBA ),_cccb );case NRGBA :_ageb (_afbe ,_bgec .(RGBA ),_cccb );case *_ee .NYCbCrA :_cccf (_afbe ,_bgec .(RGBA ),_cccb );case CMYK :_gdea (_afbe ,_bgec .(RGBA ),_cccb );case RGBA :_afdg (_afbe ,_bgec .(RGBA ),_cccb ); +case nrgba64 :_bgfe (_afbe ,_bgec .(RGBA ),_cccb );default:_fega (_gabdg ,_bgec ,_cccb );};};func (_eac *Gray4 )Histogram ()(_fac [256]int ){for _bead :=0;_bead < _eac .Width ;_bead ++{for _bdga :=0;_bdga < _eac .Height ;_bdga ++{_fac [_eac .GrayAt (_bead ,_bdga ).Y ]++; +};};return _fac ;};func (_eeae *Monochrome )Histogram ()(_afd [256]int ){for _ ,_aafe :=range _eeae .Data {_afd [0xff]+=int (_bcdf [_eeae .Data [_aafe ]]);};return _afd ;};type Gray2 struct{ImageBase };var _ Gray =&Gray16 {};func _efef (_fbed _d .Color )_d .Color {_eddc :=_d .GrayModel .Convert (_fbed ).(_d .Gray ); +return _gea (_eddc );};var _ Gray =&Gray2 {};var _ _ee .Image =&Gray16 {};func _bgca (_gfgf int ,_cafb int )int {if _gfgf < _cafb {return _gfgf ;};return _cafb ;};func (_ebfa *NRGBA32 )At (x ,y int )_d .Color {_bggdd ,_ :=_ebfa .ColorAt (x ,y );return _bggdd }; +func _ageb (_egbe NRGBA ,_fdga RGBA ,_abgd _ee .Rectangle ){for _dcbc :=0;_dcbc < _abgd .Max .X ;_dcbc ++{for _dgagg :=0;_dgagg < _abgd .Max .Y ;_dgagg ++{_fbce :=_egbe .NRGBAAt (_dcbc ,_dgagg );_fdga .SetRGBA (_dcbc ,_dgagg ,_eef (_fbce ));};};};func (_dcba *Gray16 )ColorModel ()_d .Model {return _d .Gray16Model }; +func _gfd (_egb ,_ffd int ,_bbc []byte )*Monochrome {_gbe :=_bed (_egb ,_ffd );_gbe .Data =_bbc ;return _gbe ;};func (_ebgf *RGBA32 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtRGBA32 (x ,y ,_ebgf .Width ,_ebgf .Data ,_ebgf .Alpha ,_ebgf .Decode ); +};func _dfe (_aaff ,_ced *Monochrome ,_cead []byte ,_ebdc int )(_dfb error ){var (_edea ,_cdce ,_dcf ,_aed ,_gdfg ,_adda ,_gdec ,_ddb int ;_dfc ,_bdf uint32 ;_egf ,_cdec byte ;_abe uint16 ;);_eagf :=make ([]byte ,4);_fba :=make ([]byte ,4);for _dcf =0; +_dcf < _aaff .Height -1;_dcf ,_aed =_dcf +2,_aed +1{_edea =_dcf *_aaff .BytesPerLine ;_cdce =_aed *_ced .BytesPerLine ;for _gdfg ,_adda =0,0;_gdfg < _ebdc ;_gdfg ,_adda =_gdfg +4,_adda +1{for _gdec =0;_gdec < 4;_gdec ++{_ddb =_edea +_gdfg +_gdec ;if _ddb <=len (_aaff .Data )-1&&_ddb < _edea +_aaff .BytesPerLine {_eagf [_gdec ]=_aaff .Data [_ddb ]; +}else {_eagf [_gdec ]=0x00;};_ddb =_edea +_aaff .BytesPerLine +_gdfg +_gdec ;if _ddb <=len (_aaff .Data )-1&&_ddb < _edea +(2*_aaff .BytesPerLine ){_fba [_gdec ]=_aaff .Data [_ddb ];}else {_fba [_gdec ]=0x00;};};_dfc =_f .BigEndian .Uint32 (_eagf );_bdf =_f .BigEndian .Uint32 (_fba ); +_bdf &=_dfc ;_bdf &=_bdf <<1;_bdf &=0xaaaaaaaa;_dfc =_bdf |(_bdf <<7);_egf =byte (_dfc >>24);_cdec =byte ((_dfc >>8)&0xff);_ddb =_cdce +_adda ;if _ddb +1==len (_ced .Data )-1||_ddb +1>=_cdce +_ced .BytesPerLine {_ced .Data [_ddb ]=_cead [_egf ];if _dfb =_ced .setByte (_ddb ,_cead [_egf ]); +_dfb !=nil {return _db .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_ddb );};}else {_abe =(uint16 (_cead [_egf ])<<8)|uint16 (_cead [_cdec ]);if _dfb =_ced .setTwoBytes (_ddb ,_abe );_dfb !=nil {return _db .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_ddb ); +};_adda ++;};};};return nil ;};var _ Image =&Monochrome {};type NRGBA interface{NRGBAAt (_aedb ,_baa int )_d .NRGBA ;SetNRGBA (_cfc ,_caad int ,_gedf _d .NRGBA );};func ColorAtGray2BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_d .Gray ,error ){_fegc :=y *bytesPerLine +x >>2; +if _fegc >=len (data ){return _d .Gray {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_dbab :=data [_fegc ]>>uint (6-(x &3)*2)&3;if len (decode )==2{_dbab =uint8 (uint32 (LinearInterpolate (float64 (_dbab ),0,3.0,decode [0],decode [1]))&3);};return _d .Gray {Y :_dbab *85},nil ;};func _ggaec (_dgce *_ee .Gray )bool {for _bfaee :=0;_bfaee < len (_dgce .Pix ); +_bfaee ++{if !_egag (_dgce .Pix [_bfaee ]){return false ;};};return true ;};type Histogramer interface{Histogram ()[256]int ;};func (_cefce *NRGBA16 )At (x ,y int )_d .Color {_bcdb ,_ :=_cefce .ColorAt (x ,y );return _bcdb };func _gbcc (_bfge *Monochrome ,_bfca ,_dfag ,_ceff ,_dcfc int ,_gbdad RasterOperator ,_bfda *Monochrome ,_dacae ,_fcddd int )error {if _bfge ==nil {return _e .New ("\u006e\u0069\u006c\u0020\u0027\u0064\u0065\u0073\u0074\u0027\u0020\u0042i\u0074\u006d\u0061\u0070"); +};if _gbdad ==PixDst {return nil ;};switch _gbdad {case PixClr ,PixSet ,PixNotDst :_bbef (_bfge ,_bfca ,_dfag ,_ceff ,_dcfc ,_gbdad );return nil ;};if _bfda ==nil {_a .Log .Debug ("\u0052a\u0073\u0074e\u0072\u004f\u0070\u0065r\u0061\u0074\u0069o\u006e\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020bi\u0074\u006d\u0061p\u0020\u0069s\u0020\u006e\u006f\u0074\u0020\u0064e\u0066\u0069n\u0065\u0064"); +return _e .New ("\u006e\u0069l\u0020\u0027\u0073r\u0063\u0027\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _fece :=_faee (_bfge ,_bfca ,_dfag ,_ceff ,_dcfc ,_gbdad ,_bfda ,_dacae ,_fcddd );_fece !=nil {return _fece ;};return nil ;};func _gea (_gcf _d .Gray )_d .Gray {_daea :=_gcf .Y >>6; +_daea |=_daea <<2;_gcf .Y =_daea |_daea <<4;return _gcf ;};func (_daege *Gray4 )GrayAt (x ,y int )_d .Gray {_ceeec ,_ :=ColorAtGray4BPC (x ,y ,_daege .BytesPerLine ,_daege .Data ,_daege .Decode );return _ceeec ;};func NewImage (width ,height ,bitsPerComponent ,colorComponents int ,data ,alpha []byte ,decode []float64 )(Image ,error ){_fga :=NewImageBase (width ,height ,bitsPerComponent ,colorComponents ,data ,alpha ,decode ); +var _efaa Image ;switch colorComponents {case 1:switch bitsPerComponent {case 1:_efaa =&Monochrome {ImageBase :_fga ,ModelThreshold :0x0f};case 2:_efaa =&Gray2 {ImageBase :_fga };case 4:_efaa =&Gray4 {ImageBase :_fga };case 8:_efaa =&Gray8 {ImageBase :_fga }; +case 16:_efaa =&Gray16 {ImageBase :_fga };};case 3:switch bitsPerComponent {case 4:_efaa =&NRGBA16 {ImageBase :_fga };case 8:_efaa =&NRGBA32 {ImageBase :_fga };case 16:_efaa =&NRGBA64 {ImageBase :_fga };};case 4:_efaa =&CMYK32 {ImageBase :_fga };};if _efaa ==nil {return nil ,ErrInvalidImage ; +};return _efaa ,nil ;};func (_ecgg *Gray4 )Validate ()error {if len (_ecgg .Data )!=_ecgg .Height *_ecgg .BytesPerLine {return ErrInvalidImage ;};return nil ;};func _adee (_fcfe _d .NRGBA )_d .Gray {var _bff _d .NRGBA ;if _fcfe ==_bff {return _d .Gray {Y :0xff}; +};_bfgb ,_edbe ,_dgg ,_ :=_fcfe .RGBA ();_aga :=(19595*_bfgb +38470*_edbe +7471*_dgg +1<<15)>>24;return _d .Gray {Y :uint8 (_aga )};};func _eef (_dged _d .NRGBA )_d .RGBA {_ceef ,_cfge ,_gef ,_ccc :=_dged .RGBA ();return _d .RGBA {R :uint8 (_ceef >>8),G :uint8 (_cfge >>8),B :uint8 (_gef >>8),A :uint8 (_ccc >>8)}; +};func (_cecb *Monochrome )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtGray1BPC (x ,y ,_cecb .BytesPerLine ,_cecb .Data ,_cecb .Decode );};type ImageBase struct{Width ,Height int ;BitsPerComponent ,ColorComponents int ;Data ,Alpha []byte ;Decode []float64 ; +BytesPerLine int ;};var _ Image =&NRGBA64 {};func (_adgd *ImageBase )copy ()ImageBase {_eafe :=*_adgd ;_eafe .Data =make ([]byte ,len (_adgd .Data ));copy (_eafe .Data ,_adgd .Data );return _eafe ;};func _edgec (_bgd CMYK ,_feabg Gray ,_beag _ee .Rectangle ){for _ebgc :=0; +_ebgc < _beag .Max .X ;_ebgc ++{for _ggdc :=0;_ggdc < _beag .Max .Y ;_ggdc ++{_aeab :=_fafc (_bgd .CMYKAt (_ebgc ,_ggdc ));_feabg .SetGray (_ebgc ,_ggdc ,_aeab );};};};func _bbbd (_dcged _ee .Image ,_ggaee int )(_ee .Rectangle ,bool ,[]byte ){_fddd :=_dcged .Bounds (); +var (_adcg bool ;_bca []byte ;);switch _faaf :=_dcged .(type ){case SMasker :_adcg =_faaf .HasAlpha ();case NRGBA ,RGBA ,*_ee .RGBA64 ,nrgba64 ,*_ee .NYCbCrA :_bca =make ([]byte ,_fddd .Max .X *_fddd .Max .Y *_ggaee );case *_ee .Paletted :var _dage bool ; +for _ ,_eecb :=range _faaf .Palette {_faefbd ,_afcb ,_gebe ,_gfef :=_eecb .RGBA ();if _faefbd ==0&&_afcb ==0&&_gebe ==0&&_gfef !=0{_dage =true ;break ;};};if _dage {_bca =make ([]byte ,_fddd .Max .X *_fddd .Max .Y *_ggaee );};};return _fddd ,_adcg ,_bca ; +};var (_gbdbe =[]byte {0x00,0x80,0xC0,0xE0,0xF0,0xF8,0xFC,0xFE,0xFF};_afge =[]byte {0x00,0x01,0x03,0x07,0x0F,0x1F,0x3F,0x7F,0xFF};);const (_egfe shift =iota ;_cdfb ;);func (_abgf *Gray16 )At (x ,y int )_d .Color {_ffe ,_ :=_abgf .ColorAt (x ,y );return _ffe }; +func _bea ()(_dc [256]uint32 ){for _cdf :=0;_cdf < 256;_cdf ++{if _cdf &0x01!=0{_dc [_cdf ]|=0xf;};if _cdf &0x02!=0{_dc [_cdf ]|=0xf0;};if _cdf &0x04!=0{_dc [_cdf ]|=0xf00;};if _cdf &0x08!=0{_dc [_cdf ]|=0xf000;};if _cdf &0x10!=0{_dc [_cdf ]|=0xf0000;}; +if _cdf &0x20!=0{_dc [_cdf ]|=0xf00000;};if _cdf &0x40!=0{_dc [_cdf ]|=0xf000000;};if _cdf &0x80!=0{_dc [_cdf ]|=0xf0000000;};};return _dc ;};func (_fefa *Gray4 )Base ()*ImageBase {return &_fefa .ImageBase };func (_acfc *CMYK32 )Validate ()error {if len (_acfc .Data )!=4*_acfc .Width *_acfc .Height {return _e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); +};return nil ;};func (_dffad *ImageBase )Pix ()[]byte {return _dffad .Data };func (_bbe *Gray4 )setGray (_egeef int ,_abf int ,_fgbc _d .Gray ){_ecf :=_abf *_bbe .BytesPerLine ;_gfge :=_ecf +(_egeef >>1);if _gfge >=len (_bbe .Data ){return ;};_fcaa :=_fgbc .Y >>4; +_bbe .Data [_gfge ]=(_bbe .Data [_gfge ]&(^(0xf0>>uint (4*(_egeef &1)))))|(_fcaa <>3;len (_cdfc .Data )< _bdb {return _db .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064a\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u002e\u0020\u0054\u0068\u0065\u0020\u0064\u0061t\u0061\u0020s\u0068\u006fu\u006c\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0074 l\u0065\u0061\u0073\u0074\u003a\u0020\u0027\u0025\u0064'\u0020\u0062\u0079\u0074\u0065\u0073",len (_cdfc .Data ),_bdb ); +};_bdbc :=_cdfc .Width %8;if _bdbc ==0{return nil ;};_gae :=_cdfc .Width /8;_bdgg :=_eeg .NewReader (_cdfc .Data );_gbda :=make ([]byte ,_cdfc .Height *_cdfc .BytesPerLine );_egec :=_eeg .NewWriterMSB (_gbda );_cfec :=make ([]byte ,_gae );var (_gdfe int ; +_geg uint64 ;);for _gdfe =0;_gdfe < _cdfc .Height ;_gdfe ++{if _ ,_gga =_bdgg .Read (_cfec );_gga !=nil {return _gga ;};if _ ,_gga =_egec .Write (_cfec );_gga !=nil {return _gga ;};if _geg ,_gga =_bdgg .ReadBits (byte (_bdbc ));_gga !=nil {return _gga ; +};if _gga =_egec .WriteByte (byte (_geg )<>8)}; +};func _edg (_be *Monochrome ,_ca int ,_ab []uint )(*Monochrome ,error ){_bb :=_ca *_be .Width ;_ag :=_ca *_be .Height ;_ccbd :=_bed (_bb ,_ag );for _ef ,_ac :=range _ab {var _cd error ;switch _ac {case 2:_cd =_ccd (_ccbd ,_be );case 4:_cd =_eea (_ccbd ,_be ); +case 8:_cd =_ec (_ccbd ,_be );};if _cd !=nil {return nil ,_cd ;};if _ef !=len (_ab )-1{_be =_ccbd .copy ();};};return _ccbd ,nil ;};func (_ggbe *ImageBase )GetAlpha ()[]byte {return _ggbe .Alpha };func (_cbeg *ImageBase )newAlpha (){_bdbe :=BytesPerLine (_cbeg .Width ,_cbeg .BitsPerComponent ,1); +_cbeg .Alpha =make ([]byte ,_cbeg .Height *_bdbe );};func _ceg (_faefb _ee .Image )(Image ,error ){if _cdffc ,_aeabb :=_faefb .(*NRGBA32 );_aeabb {return _cdffc .Copy (),nil ;};_gfgg ,_dbeg ,_eaaf :=_bbbd (_faefb ,1);_daab ,_cfdca :=NewImage (_gfgg .Max .X ,_gfgg .Max .Y ,8,3,nil ,_eaaf ,nil ); +if _cfdca !=nil {return nil ,_cfdca ;};_bgbgd (_faefb ,_daab ,_gfgg );if len (_eaaf )!=0&&!_dbeg {if _dbaeb :=_efaga (_eaaf ,_daab );_dbaeb !=nil {return nil ,_dbaeb ;};};return _daab ,nil ;};var _ _ee .Image =&Gray2 {};var _ NRGBA =&NRGBA32 {};func (_adec *NRGBA32 )SetNRGBA (x ,y int ,c _d .NRGBA ){_edebd :=y *_adec .Width +x ; +_fgcd :=3*_edebd ;if _fgcd +2>=len (_adec .Data ){return ;};_adec .setRGBA (_edebd ,c );};func (_ddac *Gray16 )SetGray (x ,y int ,g _d .Gray ){_aaga :=(y *_ddac .BytesPerLine /2+x )*2;if _aaga +1>=len (_ddac .Data ){return ;};_ddac .Data [_aaga ]=g .Y ; +_ddac .Data [_aaga +1]=g .Y ;};var _ _ee .Image =&Gray8 {};func (_gfa *Gray8 )Validate ()error {if len (_gfa .Data )!=_gfa .Height *_gfa .BytesPerLine {return ErrInvalidImage ;};return nil ;};type Monochrome struct{ImageBase ;ModelThreshold uint8 ;};var _ Gray =&Gray4 {}; +func ColorAtCMYK (x ,y ,width int ,data []byte ,decode []float64 )(_d .CMYK ,error ){_cfg :=4*(y *width +x );if _cfg +3>=len (data ){return _d .CMYK {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};C :=data [_cfg ]&0xff;M :=data [_cfg +1]&0xff;Y :=data [_cfg +2]&0xff;K :=data [_cfg +3]&0xff;if len (decode )==8{C =uint8 (uint32 (LinearInterpolate (float64 (C ),0,255,decode [0],decode [1]))&0xff);M =uint8 (uint32 (LinearInterpolate (float64 (M ),0,255,decode [2],decode [3]))&0xff); +Y =uint8 (uint32 (LinearInterpolate (float64 (Y ),0,255,decode [4],decode [5]))&0xff);K =uint8 (uint32 (LinearInterpolate (float64 (K ),0,255,decode [6],decode [7]))&0xff);};return _d .CMYK {C :C ,M :M ,Y :Y ,K :K },nil ;};func (_beb *CMYK32 )Copy ()Image {return &CMYK32 {ImageBase :_beb .copy ()}}; +func _abbf (_bfaa _ee .Image )(Image ,error ){if _daed ,_dcca :=_bfaa .(*NRGBA16 );_dcca {return _daed .Copy (),nil ;};_ccdff :=_bfaa .Bounds ();_gecb ,_cbed :=NewImage (_ccdff .Max .X ,_ccdff .Max .Y ,4,3,nil ,nil ,nil );if _cbed !=nil {return nil ,_cbed ; +};_bgbgd (_bfaa ,_gecb ,_ccdff );return _gecb ,nil ;};func _bgdb (_eabd *Monochrome ,_dabg ,_egefe int ,_abeg ,_bgee int ,_adae RasterOperator ){var (_cbge bool ;_aafa bool ;_fcdddf int ;_ffeb int ;_baeg int ;_ffad int ;_bfacc bool ;_babg byte ;);_defa :=8-(_dabg &7); +_afdc :=_afge [_defa ];_ababc :=_eabd .BytesPerLine *_egefe +(_dabg >>3);if _abeg < _defa {_cbge =true ;_afdc &=_gbdbe [8-_defa +_abeg ];};if !_cbge {_fcdddf =(_abeg -_defa )>>3;if _fcdddf !=0{_aafa =true ;_ffeb =_ababc +1;};};_baeg =(_dabg +_abeg )&7; +if !(_cbge ||_baeg ==0){_bfacc =true ;_babg =_gbdbe [_baeg ];_ffad =_ababc +1+_fcdddf ;};var _efgda ,_dgde int ;switch _adae {case PixClr :for _efgda =0;_efgda < _bgee ;_efgda ++{_eabd .Data [_ababc ]=_ggdf (_eabd .Data [_ababc ],0x0,_afdc );_ababc +=_eabd .BytesPerLine ; +};if _aafa {for _efgda =0;_efgda < _bgee ;_efgda ++{for _dgde =0;_dgde < _fcdddf ;_dgde ++{_eabd .Data [_ffeb +_dgde ]=0x0;};_ffeb +=_eabd .BytesPerLine ;};};if _bfacc {for _efgda =0;_efgda < _bgee ;_efgda ++{_eabd .Data [_ffad ]=_ggdf (_eabd .Data [_ffad ],0x0,_babg ); +_ffad +=_eabd .BytesPerLine ;};};case PixSet :for _efgda =0;_efgda < _bgee ;_efgda ++{_eabd .Data [_ababc ]=_ggdf (_eabd .Data [_ababc ],0xff,_afdc );_ababc +=_eabd .BytesPerLine ;};if _aafa {for _efgda =0;_efgda < _bgee ;_efgda ++{for _dgde =0;_dgde < _fcdddf ; +_dgde ++{_eabd .Data [_ffeb +_dgde ]=0xff;};_ffeb +=_eabd .BytesPerLine ;};};if _bfacc {for _efgda =0;_efgda < _bgee ;_efgda ++{_eabd .Data [_ffad ]=_ggdf (_eabd .Data [_ffad ],0xff,_babg );_ffad +=_eabd .BytesPerLine ;};};case PixNotDst :for _efgda =0; +_efgda < _bgee ;_efgda ++{_eabd .Data [_ababc ]=_ggdf (_eabd .Data [_ababc ],^_eabd .Data [_ababc ],_afdc );_ababc +=_eabd .BytesPerLine ;};if _aafa {for _efgda =0;_efgda < _bgee ;_efgda ++{for _dgde =0;_dgde < _fcdddf ;_dgde ++{_eabd .Data [_ffeb +_dgde ]=^(_eabd .Data [_ffeb +_dgde ]); +};_ffeb +=_eabd .BytesPerLine ;};};if _bfacc {for _efgda =0;_efgda < _bgee ;_efgda ++{_eabd .Data [_ffad ]=_ggdf (_eabd .Data [_ffad ],^_eabd .Data [_ffad ],_babg );_ffad +=_eabd .BytesPerLine ;};};};};type nrgba64 interface{NRGBA64At (_fegd ,_becfb int )_d .NRGBA64 ; +SetNRGBA64 (_afdae ,_bgbd int ,_ffdg _d .NRGBA64 );};func (_dcfg *Gray2 )Set (x ,y int ,c _d .Color ){if x >=_dcfg .Width ||y >=_dcfg .Height {return ;};_dffe :=Gray2Model .Convert (c ).(_d .Gray );_eaf :=y *_dcfg .BytesPerLine ;_abb :=_eaf +(x >>2);_bagg :=_dffe .Y >>6; +_dcfg .Data [_abb ]=(_dcfg .Data [_abb ]&(^(0xc0>>uint (2*((x )&3)))))|(_bagg < 0{_egaf -=_cagd ;};_edbd =_bfad +_egaf -_cfbc .Width ;if _edbd > 0{_egaf -=_edbd ;};if _aafea < 0{_dde -=_aafea ;_efdf +=_aafea ;_aafea =0;}; +if _dde < 0{_aafea -=_dde ;_efdf +=_dde ;_dde =0;};_aggd =_aafea +_efdf -_bbdd .Height ;if _aggd > 0{_efdf -=_aggd ;};_cgebb =_dde +_efdf -_cfbc .Height ;if _cgebb > 0{_efdf -=_cgebb ;};if _egaf <=0||_efdf <=0{return nil ;};var _gcec error ;switch {case _befb &7==0&&_bfad &7==0:_gcec =_gafe (_bbdd ,_befb ,_aafea ,_egaf ,_efdf ,_ccea ,_cfbc ,_bfad ,_dde ); +case _befb &7==_bfad &7:_gcec =_geff (_bbdd ,_befb ,_aafea ,_egaf ,_efdf ,_ccea ,_cfbc ,_bfad ,_dde );default:_gcec =_cadc (_bbdd ,_befb ,_aafea ,_egaf ,_efdf ,_ccea ,_cfbc ,_bfad ,_dde );};if _gcec !=nil {return _gcec ;};return nil ;};func NewImageBase (width int ,height int ,bitsPerComponent int ,colorComponents int ,data []byte ,alpha []byte ,decode []float64 )ImageBase {_edfa :=ImageBase {Width :width ,Height :height ,BitsPerComponent :bitsPerComponent ,ColorComponents :colorComponents ,Data :data ,Alpha :alpha ,Decode :decode ,BytesPerLine :BytesPerLine (width ,bitsPerComponent ,colorComponents )}; +if data ==nil {_edfa .Data =make ([]byte ,height *_edfa .BytesPerLine );};return _edfa ;};type SMasker interface{HasAlpha ()bool ;GetAlpha ()[]byte ;MakeAlpha ();};func (_dgbb *Gray8 )Copy ()Image {return &Gray8 {ImageBase :_dgbb .copy ()}};func ColorAtNRGBA (x ,y ,width ,bytesPerLine ,bitsPerColor int ,data ,alpha []byte ,decode []float64 )(_d .Color ,error ){switch bitsPerColor {case 4:return ColorAtNRGBA16 (x ,y ,width ,bytesPerLine ,data ,alpha ,decode ); +case 8:return ColorAtNRGBA32 (x ,y ,width ,data ,alpha ,decode );case 16:return ColorAtNRGBA64 (x ,y ,width ,data ,alpha ,decode );default:return nil ,_db .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u0072\u0067\u0062\u0020b\u0069\u0074\u0073\u0020\u0070\u0065\u0072\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0061\u006d\u006f\u0075\u006e\u0074\u003a\u0020\u0027\u0025\u0064\u0027",bitsPerColor ); +};};func GetConverter (bitsPerComponent ,colorComponents int )(ColorConverter ,error ){switch colorComponents {case 1:switch bitsPerComponent {case 1:return MonochromeConverter ,nil ;case 2:return Gray2Converter ,nil ;case 4:return Gray4Converter ,nil ; +case 8:return GrayConverter ,nil ;case 16:return Gray16Converter ,nil ;};case 3:switch bitsPerComponent {case 4:return NRGBA16Converter ,nil ;case 8:return NRGBAConverter ,nil ;case 16:return NRGBA64Converter ,nil ;};case 4:return CMYKConverter ,nil ;}; +return nil ,_db .Errorf ("\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0043o\u006e\u0076\u0065\u0072\u0074\u0065\u0072\u0020\u0070\u0061\u0072\u0061\u006d\u0065t\u0065\u0072\u0073\u002e\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u003a\u0020\u0025\u0064\u002c\u0020\u0043\u006f\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006et\u0073\u003a \u0025\u0064",bitsPerComponent ,colorComponents ); +};func _beddc (_aabc _ee .Image ,_cfgfd uint8 )*_ee .Gray {_fdgd :=_aabc .Bounds ();_bgeca :=_ee .NewGray (_fdgd );var (_faafc _d .Color ;_ceaa _d .Gray ;);for _bacg :=0;_bacg < _fdgd .Max .X ;_bacg ++{for _bbagf :=0;_bbagf < _fdgd .Max .Y ;_bbagf ++{_faafc =_aabc .At (_bacg ,_bbagf ); +_bgeca .Set (_bacg ,_bbagf ,_faafc );_ceaa =_bgeca .GrayAt (_bacg ,_bbagf );_bgeca .SetGray (_bacg ,_bbagf ,_d .Gray {Y :_cdbe (_ceaa .Y ,_cfgfd )});};};return _bgeca ;};func GrayHistogram (g Gray )(_gggbc [256]int ){switch _edfg :=g .(type ){case Histogramer :return _edfg .Histogram (); +case _ee .Image :_ddbg :=_edfg .Bounds ();for _fegf :=0;_fegf < _ddbg .Max .X ;_fegf ++{for _bgbda :=0;_bgbda < _ddbg .Max .Y ;_bgbda ++{_gggbc [g .GrayAt (_fegf ,_bgbda ).Y ]++;};};return _gggbc ;default:return [256]int {};};};func (_ged colorConverter )Convert (src _ee .Image )(Image ,error ){return _ged ._dfeb (src )}; +func (_ddd *ImageBase )getByte (_eaag int )(byte ,error ){if _eaag > len (_ddd .Data )-1||_eaag < 0{return 0,_db .Errorf ("\u0069\u006e\u0064\u0065x:\u0020\u0025\u0064\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006eg\u0065",_eaag );}; +return _ddd .Data [_eaag ],nil ;};func _gegf (_fgfd *_ee .Gray16 ,_bcaf uint8 )*_ee .Gray {_ccdb :=_fgfd .Bounds ();_cbfd :=_ee .NewGray (_ccdb );for _gecfc :=0;_gecfc < _ccdb .Dx ();_gecfc ++{for _gfeb :=0;_gfeb < _ccdb .Dy ();_gfeb ++{_ffbeg :=_fgfd .Gray16At (_gecfc ,_gfeb ); +_cbfd .SetGray (_gecfc ,_gfeb ,_d .Gray {Y :_cdbe (uint8 (_ffbeg .Y /256),_bcaf )});};};return _cbfd ;};func ColorAtGrayscale (x ,y ,bitsPerColor ,bytesPerLine int ,data []byte ,decode []float64 )(_d .Color ,error ){switch bitsPerColor {case 1:return ColorAtGray1BPC (x ,y ,bytesPerLine ,data ,decode ); case 2:return ColorAtGray2BPC (x ,y ,bytesPerLine ,data ,decode );case 4:return ColorAtGray4BPC (x ,y ,bytesPerLine ,data ,decode );case 8:return ColorAtGray8BPC (x ,y ,bytesPerLine ,data ,decode );case 16:return ColorAtGray16BPC (x ,y ,bytesPerLine ,data ,decode ); -default:return nil ,_dcg .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0067\u0072\u0061\u0079\u0020\u0073c\u0061\u006c\u0065\u0020\u0062\u0069\u0074s\u0020\u0070\u0065\u0072\u0020\u0063\u006f\u006c\u006f\u0072\u0020a\u006d\u006f\u0075\u006e\u0074\u003a\u0020\u0027\u0025\u0064\u0027",bitsPerColor ); -};};func LinearInterpolate (x ,xmin ,xmax ,ymin ,ymax float64 )float64 {if _a .Abs (xmax -xmin )< 0.000001{return ymin ;};_fcdb :=ymin +(x -xmin )*(ymax -ymin )/(xmax -xmin );return _fcdb ;};func (_gcaa *Monochrome )getBitAt (_cga ,_dff int )bool {_aedb :=_dff *_gcaa .BytesPerLine +(_cga >>3); -_bbcd :=_cga &0x07;_abaee :=uint (7-_bbcd );if _aedb > len (_gcaa .Data )-1{return false ;};if (_gcaa .Data [_aedb ]>>_abaee )&0x01>=1{return true ;};return false ;};var _ Image =&NRGBA64 {};func _abb (_gfcee _de .Gray ,_faec monochromeModel )_de .Gray {if _gfcee .Y > uint8 (_faec ){return _de .Gray {Y :_a .MaxUint8 }; -};return _de .Gray {};};var _ _dc .Image =&Gray4 {};func _abab (_faff ,_ggb *Monochrome ,_gfa []byte ,_geb int )(_deb error ){var (_feg ,_afa ,_bffg ,_fge ,_afe ,_afad ,_eab ,_aef int ;_fad ,_ecb ,_ggac ,_cb uint32 ;_gfb ,_cfagf byte ;_cfad uint16 ;);_gdd :=make ([]byte ,4); -_cea :=make ([]byte ,4);for _bffg =0;_bffg < _faff .Height -1;_bffg ,_fge =_bffg +2,_fge +1{_feg =_bffg *_faff .BytesPerLine ;_afa =_fge *_ggb .BytesPerLine ;for _afe ,_afad =0,0;_afe < _geb ;_afe ,_afad =_afe +4,_afad +1{for _eab =0;_eab < 4;_eab ++{_aef =_feg +_afe +_eab ; -if _aef <=len (_faff .Data )-1&&_aef < _feg +_faff .BytesPerLine {_gdd [_eab ]=_faff .Data [_aef ];}else {_gdd [_eab ]=0x00;};_aef =_feg +_faff .BytesPerLine +_afe +_eab ;if _aef <=len (_faff .Data )-1&&_aef < _feg +(2*_faff .BytesPerLine ){_cea [_eab ]=_faff .Data [_aef ]; -}else {_cea [_eab ]=0x00;};};_fad =_ab .BigEndian .Uint32 (_gdd );_ecb =_ab .BigEndian .Uint32 (_cea );_ggac =_fad &_ecb ;_ggac |=_ggac <<1;_cb =_fad |_ecb ;_cb &=_cb <<1;_ecb =_ggac &_cb ;_ecb &=0xaaaaaaaa;_fad =_ecb |(_ecb <<7);_gfb =byte (_fad >>24); -_cfagf =byte ((_fad >>8)&0xff);_aef =_afa +_afad ;if _aef +1==len (_ggb .Data )-1||_aef +1>=_afa +_ggb .BytesPerLine {if _deb =_ggb .setByte (_aef ,_gfa [_gfb ]);_deb !=nil {return _dcg .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_aef );};}else {_cfad =(uint16 (_gfa [_gfb ])<<8)|uint16 (_gfa [_cfagf ]); -if _deb =_ggb .setTwoBytes (_aef ,_cfad );_deb !=nil {return _dcg .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_aef ); -};_afad ++;};};};return nil ;};func _ebadd (_ceag []byte ,_egbec Image )error {_eaeg :=true ;for _fgce :=0;_fgce < len (_ceag );_fgce ++{if _ceag [_fgce ]!=0xff{_eaeg =false ;break ;};};if _eaeg {switch _fea :=_egbec .(type ){case *NRGBA32 :_fea .Alpha =nil ; -case *NRGBA64 :_fea .Alpha =nil ;default:return _dcg .Errorf ("i\u006ete\u0072n\u0061l\u0020\u0065\u0072\u0072\u006fr\u0020\u002d\u0020i\u006d\u0061\u0067\u0065\u0020s\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u006f\u0066\u0020\u0074\u0079\u0070e\u0020\u002a\u004eRGB\u0041\u0033\u0032\u0020\u006f\u0072 \u002a\u004e\u0052\u0047\u0042\u0041\u0036\u0034\u0020\u0062\u0075\u0074 \u0069s\u003a\u0020\u0025\u0054",_egbec ); -};};return nil ;};var _ _dc .Image =&NRGBA16 {};func ColorAtRGBA32 (x ,y ,width int ,data ,alpha []byte ,decode []float64 )(_de .RGBA ,error ){_geda :=y *width +x ;_bedca :=3*_geda ;if _bedca +2>=len (data ){return _de .RGBA {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_fcc :=uint8 (0xff);if alpha !=nil &&len (alpha )> _geda {_fcc =alpha [_geda ];};_bgde ,_debg ,_fbfbe :=data [_bedca ],data [_bedca +1],data [_bedca +2];if len (decode )==6{_bgde =uint8 (uint32 (LinearInterpolate (float64 (_bgde ),0,255,decode [0],decode [1]))&0xff); -_debg =uint8 (uint32 (LinearInterpolate (float64 (_debg ),0,255,decode [2],decode [3]))&0xff);_fbfbe =uint8 (uint32 (LinearInterpolate (float64 (_fbfbe ),0,255,decode [4],decode [5]))&0xff);};return _de .RGBA {R :_bgde ,G :_debg ,B :_fbfbe ,A :_fcc },nil ; -};func _afg (_ddaf _de .NRGBA )_de .Gray {_gdg ,_egde ,_bfedg ,_ :=_ddaf .RGBA ();_ebbg :=(19595*_gdg +38470*_egde +7471*_bfedg +1<<15)>>24;return _de .Gray {Y :uint8 (_ebbg )};};func (_caac *RGBA32 )Set (x ,y int ,c _de .Color ){_dbdc :=y *_caac .Width +x ; -_cbba :=3*_dbdc ;if _cbba +2>=len (_caac .Data ){return ;};_gebb :=_de .RGBAModel .Convert (c ).(_de .RGBA );_caac .setRGBA (_dbdc ,_gebb );};var _ Image =&CMYK32 {};func _eggfb (_ebdae _dc .Image )(Image ,error ){if _cggb ,_fecc :=_ebdae .(*NRGBA64 ); -_fecc {return _cggb .Copy (),nil ;};_ccbb ,_face ,_fbac :=_egafg (_ebdae ,2);_gded ,_ebea :=NewImage (_ccbb .Max .X ,_ccbb .Max .Y ,16,3,nil ,_fbac ,nil );if _ebea !=nil {return nil ,_ebea ;};_afdaa (_ebdae ,_gded ,_ccbb );if len (_fbac )!=0&&!_face {if _fgacf :=_ebadd (_fbac ,_gded ); -_fgacf !=nil {return nil ,_fgacf ;};};return _gded ,nil ;};func _cacf (_ggba _dc .Image )(Image ,error ){if _cgec ,_bdae :=_ggba .(*Gray2 );_bdae {return _cgec .Copy (),nil ;};_febd :=_ggba .Bounds ();_bfc ,_cff :=NewImage (_febd .Max .X ,_febd .Max .Y ,2,1,nil ,nil ,nil ); -if _cff !=nil {return nil ,_cff ;};_cfde (_ggba ,_bfc ,_febd );return _bfc ,nil ;};func _ba (_cd ,_ga *Monochrome )(_ee error ){_cde :=_ga .BytesPerLine ;_ca :=_cd .BytesPerLine ;var (_bd byte ;_be uint16 ;_ec ,_dec ,_fbe ,_baa ,_def int ;);for _fbe =0; -_fbe < _ga .Height ;_fbe ++{_ec =_fbe *_cde ;_dec =2*_fbe *_ca ;for _baa =0;_baa < _cde ;_baa ++{_bd =_ga .Data [_ec +_baa ];_be =_fab [_bd ];_def =_dec +_baa *2;if _cd .BytesPerLine !=_ga .BytesPerLine *2&&(_baa +1)*2> _cd .BytesPerLine {_ee =_cd .setByte (_def ,byte (_be >>8)); -}else {_ee =_cd .setTwoBytes (_def ,_be );};if _ee !=nil {return _ee ;};};for _baa =0;_baa < _ca ;_baa ++{_def =_dec +_ca +_baa ;_bd =_cd .Data [_dec +_baa ];if _ee =_cd .setByte (_def ,_bd );_ee !=nil {return _ee ;};};};return nil ;};func (_fdfb *NRGBA32 )SetNRGBA (x ,y int ,c _de .NRGBA ){_ebbdc :=y *_fdfb .Width +x ; -_ddda :=3*_ebbdc ;if _ddda +2>=len (_fdfb .Data ){return ;};_fdfb .setRGBA (_ebbdc ,c );};func _cca (_fedd RGBA ,_eead Gray ,_dcfa _dc .Rectangle ){for _gegc :=0;_gegc < _dcfa .Max .X ;_gegc ++{for _cdcd :=0;_cdcd < _dcfa .Max .Y ;_cdcd ++{_aaea :=_fcef (_fedd .RGBAAt (_gegc ,_cdcd )); -_eead .SetGray (_gegc ,_cdcd ,_aaea );};};};func _cdee (_adcbde _dc .Image ,_bgee uint8 )*_dc .Gray {_febe :=_adcbde .Bounds ();_fbcb :=_dc .NewGray (_febe );var (_gfec _de .Color ;_cfdfc _de .Gray ;);for _aefg :=0;_aefg < _febe .Max .X ;_aefg ++{for _gabf :=0; -_gabf < _febe .Max .Y ;_gabf ++{_gfec =_adcbde .At (_aefg ,_gabf );_fbcb .Set (_aefg ,_gabf ,_gfec );_cfdfc =_fbcb .GrayAt (_aefg ,_gabf );_fbcb .SetGray (_aefg ,_gabf ,_de .Gray {Y :_ggaf (_cfdfc .Y ,_bgee )});};};return _fbcb ;};func (_faeag *CMYK32 )ColorModel ()_de .Model {return _de .CMYKModel }; -type ImageBase struct{Width ,Height int ;BitsPerComponent ,ColorComponents int ;Data ,Alpha []byte ;Decode []float64 ;BytesPerLine int ;};func ColorAtNRGBA16 (x ,y ,width ,bytesPerLine int ,data ,alpha []byte ,decode []float64 )(_de .NRGBA ,error ){_bfaf :=y *bytesPerLine +x *3/2; -if _bfaf +1>=len (data ){return _de .NRGBA {},_dbeg (x ,y );};const (_eage =0xf;_egdde =uint8 (0xff););_gaba :=_egdde ;if alpha !=nil {_aeed :=y *BytesPerLine (width ,4,1);if _aeed < len (alpha ){if x %2==0{_gaba =(alpha [_aeed ]>>uint (4))&_eage ;}else {_gaba =alpha [_aeed ]&_eage ; -};_gaba |=_gaba <<4;};};var _aacdb ,_aaed ,_cbeef uint8 ;if x *3%2==0{_aacdb =(data [_bfaf ]>>uint (4))&_eage ;_aaed =data [_bfaf ]&_eage ;_cbeef =(data [_bfaf +1]>>uint (4))&_eage ;}else {_aacdb =data [_bfaf ]&_eage ;_aaed =(data [_bfaf +1]>>uint (4))&_eage ; -_cbeef =data [_bfaf +1]&_eage ;};if len (decode )==6{_aacdb =uint8 (uint32 (LinearInterpolate (float64 (_aacdb ),0,15,decode [0],decode [1]))&0xf);_aaed =uint8 (uint32 (LinearInterpolate (float64 (_aaed ),0,15,decode [2],decode [3]))&0xf);_cbeef =uint8 (uint32 (LinearInterpolate (float64 (_cbeef ),0,15,decode [4],decode [5]))&0xf); -};return _de .NRGBA {R :(_aacdb <<4)|(_aacdb &0xf),G :(_aaed <<4)|(_aaed &0xf),B :(_cbeef <<4)|(_cbeef &0xf),A :_gaba },nil ;};func _ddbg (_bdc int )[]uint {var _da []uint ;_bae :=_bdc ;_bbg :=_bae /8;if _bbg !=0{for _aaf :=0;_aaf < _bbg ;_aaf ++{_da =append (_da ,8); -};_bfe :=_bae %8;_bae =0;if _bfe !=0{_bae =_bfe ;};};_fae :=_bae /4;if _fae !=0{for _gfd :=0;_gfd < _fae ;_gfd ++{_da =append (_da ,4);};_fd :=_bae %4;_bae =0;if _fd !=0{_bae =_fd ;};};_egc :=_bae /2;if _egc !=0{for _decf :=0;_decf < _egc ;_decf ++{_da =append (_da ,2); -};};return _da ;};func (_afga *NRGBA32 )At (x ,y int )_de .Color {_dafa ,_ :=_afga .ColorAt (x ,y );return _dafa };func (_cee *Monochrome )At (x ,y int )_de .Color {_efed ,_ :=_cee .ColorAt (x ,y );return _efed };func (_begaa *NRGBA16 )Base ()*ImageBase {return &_begaa .ImageBase }; -func _gged (_dfcg _dc .Image )(Image ,error ){if _fgf ,_bbfb :=_dfcg .(*Gray16 );_bbfb {return _fgf .Copy (),nil ;};_gbee :=_dfcg .Bounds ();_gcdf ,_febg :=NewImage (_gbee .Max .X ,_gbee .Max .Y ,16,1,nil ,nil ,nil );if _febg !=nil {return nil ,_febg ; -};_cfde (_dfcg ,_gcdf ,_gbee );return _gcdf ,nil ;};func ColorAtGray4BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_de .Gray ,error ){_dgb :=y *bytesPerLine +x >>1;if _dgb >=len (data ){return _de .Gray {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_bacg :=data [_dgb ]>>uint (4-(x &1)*4)&0xf;if len (decode )==2{_bacg =uint8 (uint32 (LinearInterpolate (float64 (_bacg ),0,15,decode [0],decode [1]))&0xf);};return _de .Gray {Y :_bacg *17&0xff},nil ;};func (_bccb *Gray2 )Copy ()Image {return &Gray2 {ImageBase :_bccb .copy ()}}; -func _dbcb (_abdc *Monochrome ,_gfaf ,_bege ,_eaaf ,_gddb int ,_gefb RasterOperator ,_bgeb *Monochrome ,_bafa ,_abgd int )error {var (_bfdd bool ;_eecfa bool ;_gefg int ;_bcced int ;_cdff int ;_cgcdf bool ;_bdgbf byte ;_bbee int ;_aacd int ;_cdcda int ; -_egbe ,_ggbb int ;);_ebdc :=8-(_gfaf &7);_baff :=_febf [_ebdc ];_eggbf :=_abdc .BytesPerLine *_bege +(_gfaf >>3);_cggc :=_bgeb .BytesPerLine *_abgd +(_bafa >>3);if _eaaf < _ebdc {_bfdd =true ;_baff &=_bffa [8-_ebdc +_eaaf ];};if !_bfdd {_gefg =(_eaaf -_ebdc )>>3; -if _gefg > 0{_eecfa =true ;_bcced =_eggbf +1;_cdff =_cggc +1;};};_bbee =(_gfaf +_eaaf )&7;if !(_bfdd ||_bbee ==0){_cgcdf =true ;_bdgbf =_bffa [_bbee ];_aacd =_eggbf +1+_gefg ;_cdcda =_cggc +1+_gefg ;};switch _gefb {case PixSrc :for _egbe =0;_egbe < _gddb ; -_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],_bgeb .Data [_cggc ],_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]=_bgeb .Data [_cdff +_ggbb ]; -};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],_bgeb .Data [_cdcda ],_bdgbf );_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ; -};};case PixNotSrc :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],^_bgeb .Data [_cggc ],_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0; -_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]=^_bgeb .Data [_cdff +_ggbb ];};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],^_bgeb .Data [_cdcda ],_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixSrcOrDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],_bgeb .Data [_cggc ]|_abdc .Data [_eggbf ],_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ; -};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]|=_bgeb .Data [_cdff +_ggbb ];};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],_bgeb .Data [_cdcda ]|_abdc .Data [_aacd ],_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixSrcAndDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],_bgeb .Data [_cggc ]&_abdc .Data [_eggbf ],_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ; -};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]&=_bgeb .Data [_cdff +_ggbb ];};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],_bgeb .Data [_cdcda ]&_abdc .Data [_aacd ],_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixSrcXorDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],_bgeb .Data [_cggc ]^_abdc .Data [_eggbf ],_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ; -};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]^=_bgeb .Data [_cdff +_ggbb ];};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],_bgeb .Data [_cdcda ]^_abdc .Data [_aacd ],_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixNotSrcOrDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],^(_bgeb .Data [_cggc ])|_abdc .Data [_eggbf ],_baff );_eggbf +=_abdc .BytesPerLine ; -_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]|=^(_bgeb .Data [_cdff +_ggbb ]);};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0; -_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],^(_bgeb .Data [_cdcda ])|_abdc .Data [_aacd ],_bdgbf );_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixNotSrcAndDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],^(_bgeb .Data [_cggc ])&_abdc .Data [_eggbf ],_baff ); -_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]&=^_bgeb .Data [_cdff +_ggbb ];};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ; -};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],^(_bgeb .Data [_cdcda ])&_abdc .Data [_aacd ],_bdgbf );_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixSrcOrNotDst :for _egbe =0; -_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],_bgeb .Data [_cggc ]|^(_abdc .Data [_eggbf ]),_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ; -_ggbb ++{_abdc .Data [_bcced +_ggbb ]=_bgeb .Data [_cdff +_ggbb ]|^(_abdc .Data [_bcced +_ggbb ]);};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],_bgeb .Data [_cdcda ]|^(_abdc .Data [_aacd ]),_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixSrcAndNotDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],_bgeb .Data [_cggc ]&^(_abdc .Data [_eggbf ]),_baff );_eggbf +=_abdc .BytesPerLine ; -_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]=_bgeb .Data [_cdff +_ggbb ]&^(_abdc .Data [_bcced +_ggbb ]);};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ; -};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],_bgeb .Data [_cdcda ]&^(_abdc .Data [_aacd ]),_bdgbf );_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixNotPixSrcOrDst :for _egbe =0; -_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],^(_bgeb .Data [_cggc ]|_abdc .Data [_eggbf ]),_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ; -_ggbb ++{_abdc .Data [_bcced +_ggbb ]=^(_bgeb .Data [_cdff +_ggbb ]|_abdc .Data [_bcced +_ggbb ]);};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],^(_bgeb .Data [_cdcda ]|_abdc .Data [_aacd ]),_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixNotPixSrcAndDst :for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],^(_bgeb .Data [_cggc ]&_abdc .Data [_eggbf ]),_baff );_eggbf +=_abdc .BytesPerLine ; -_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ;_ggbb ++{_abdc .Data [_bcced +_ggbb ]=^(_bgeb .Data [_cdff +_ggbb ]&_abdc .Data [_bcced +_ggbb ]);};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ; -};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],^(_bgeb .Data [_cdcda ]&_abdc .Data [_aacd ]),_bdgbf );_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};case PixNotPixSrcXorDst :for _egbe =0; -_egbe < _gddb ;_egbe ++{_abdc .Data [_eggbf ]=_gafc (_abdc .Data [_eggbf ],^(_bgeb .Data [_cggc ]^_abdc .Data [_eggbf ]),_baff );_eggbf +=_abdc .BytesPerLine ;_cggc +=_bgeb .BytesPerLine ;};if _eecfa {for _egbe =0;_egbe < _gddb ;_egbe ++{for _ggbb =0;_ggbb < _gefg ; -_ggbb ++{_abdc .Data [_bcced +_ggbb ]=^(_bgeb .Data [_cdff +_ggbb ]^_abdc .Data [_bcced +_ggbb ]);};_bcced +=_abdc .BytesPerLine ;_cdff +=_bgeb .BytesPerLine ;};};if _cgcdf {for _egbe =0;_egbe < _gddb ;_egbe ++{_abdc .Data [_aacd ]=_gafc (_abdc .Data [_aacd ],^(_bgeb .Data [_cdcda ]^_abdc .Data [_aacd ]),_bdgbf ); -_aacd +=_abdc .BytesPerLine ;_cdcda +=_bgeb .BytesPerLine ;};};default:_c .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070e\u0072\u0061\u0074o\u0072:\u0020\u0025\u0064",_gefb );return _d .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072"); -};return nil ;};func _bf (_ad ,_cdc *Monochrome )(_fc error ){_bb :=_cdc .BytesPerLine ;_ge :=_ad .BytesPerLine ;_cad :=_cdc .BytesPerLine *4-_ad .BytesPerLine ;var (_bea ,_gba byte ;_bff uint32 ;_ff ,_dd ,_baaa ,_fgc ,_add ,_ddb ,_bgg int ;);for _baaa =0; -_baaa < _cdc .Height ;_baaa ++{_ff =_baaa *_bb ;_dd =4*_baaa *_ge ;for _fgc =0;_fgc < _bb ;_fgc ++{_bea =_cdc .Data [_ff +_fgc ];_bff =_ggfd [_bea ];_ddb =_dd +_fgc *4;if _cad !=0&&(_fgc +1)*4> _ad .BytesPerLine {for _add =_cad ;_add > 0;_add --{_gba =byte ((_bff >>uint (_add *8))&0xff); -_bgg =_ddb +(_cad -_add );if _fc =_ad .setByte (_bgg ,_gba );_fc !=nil {return _fc ;};};}else if _fc =_ad .setFourBytes (_ddb ,_bff );_fc !=nil {return _fc ;};if _fc =_ad .setFourBytes (_dd +_fgc *4,_ggfd [_cdc .Data [_ff +_fgc ]]);_fc !=nil {return _fc ; -};};for _add =1;_add < 4;_add ++{for _fgc =0;_fgc < _ge ;_fgc ++{if _fc =_ad .setByte (_dd +_add *_ge +_fgc ,_ad .Data [_dd +_fgc ]);_fc !=nil {return _fc ;};};};};return nil ;};func (_gdebd *RGBA32 )RGBAAt (x ,y int )_de .RGBA {_ecge ,_ :=ColorAtRGBA32 (x ,y ,_gdebd .Width ,_gdebd .Data ,_gdebd .Alpha ,_gdebd .Decode ); -return _ecge ;};type CMYK32 struct{ImageBase };func (_aaag *Monochrome )Copy ()Image {return &Monochrome {ImageBase :_aaag .ImageBase .copy (),ModelThreshold :_aaag .ModelThreshold };};var ErrInvalidImage =_d .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); -func (_faffa *NRGBA64 )ColorModel ()_de .Model {return _de .NRGBA64Model };func GetConverter (bitsPerComponent ,colorComponents int )(ColorConverter ,error ){switch colorComponents {case 1:switch bitsPerComponent {case 1:return MonochromeConverter ,nil ; -case 2:return Gray2Converter ,nil ;case 4:return Gray4Converter ,nil ;case 8:return GrayConverter ,nil ;case 16:return Gray16Converter ,nil ;};case 3:switch bitsPerComponent {case 4:return NRGBA16Converter ,nil ;case 8:return NRGBAConverter ,nil ;case 16:return NRGBA64Converter ,nil ; -};case 4:return CMYKConverter ,nil ;};return nil ,_dcg .Errorf ("\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0043o\u006e\u0076\u0065\u0072\u0074\u0065\u0072\u0020\u0070\u0061\u0072\u0061\u006d\u0065t\u0065\u0072\u0073\u002e\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u003a\u0020\u0025\u0064\u002c\u0020\u0043\u006f\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006et\u0073\u003a \u0025\u0064",bitsPerComponent ,colorComponents ); -};func _beeg (_cbgf *_dc .NYCbCrA ,_dgge NRGBA ,_cced _dc .Rectangle ){for _abca :=0;_abca < _cced .Max .X ;_abca ++{for _eaae :=0;_eaae < _cced .Max .Y ;_eaae ++{_bbec :=_cbgf .NYCbCrAAt (_abca ,_eaae );_dgge .SetNRGBA (_abca ,_eaae ,_gfbb (_bbec ));}; -};};func (_gceaa *NRGBA32 )setRGBA (_ceafc int ,_babe _de .NRGBA ){_ddbbb :=3*_ceafc ;_gceaa .Data [_ddbbb ]=_babe .R ;_gceaa .Data [_ddbbb +1]=_babe .G ;_gceaa .Data [_ddbbb +2]=_babe .B ;if _ceafc < len (_gceaa .Alpha ){_gceaa .Alpha [_ceafc ]=_babe .A ; -};};func (_dab *Gray8 )Validate ()error {if len (_dab .Data )!=_dab .Height *_dab .BytesPerLine {return ErrInvalidImage ;};return nil ;};func (_gbgfd *NRGBA16 )NRGBAAt (x ,y int )_de .NRGBA {_cgbb ,_ :=ColorAtNRGBA16 (x ,y ,_gbgfd .Width ,_gbgfd .BytesPerLine ,_gbgfd .Data ,_gbgfd .Alpha ,_gbgfd .Decode ); -return _cgbb ;};func (_dfgc *NRGBA64 )NRGBA64At (x ,y int )_de .NRGBA64 {_fbgd ,_ :=ColorAtNRGBA64 (x ,y ,_dfgc .Width ,_dfgc .Data ,_dfgc .Alpha ,_dfgc .Decode );return _fbgd ;};func IsPowerOf2 (n uint )bool {return n > 0&&(n &(n -1))==0};var _ _dc .Image =&Gray8 {}; -func _fbag (_gfcef int ,_fcba int )int {if _gfcef < _fcba {return _gfcef ;};return _fcba ;};func _fec (_ggdb RGBA ,_adb CMYK ,_cef _dc .Rectangle ){for _bbd :=0;_bbd < _cef .Max .X ;_bbd ++{for _bggg :=0;_bggg < _cef .Max .Y ;_bggg ++{_agg :=_ggdb .RGBAAt (_bbd ,_bggg ); -_adb .SetCMYK (_bbd ,_bggg ,_aec (_agg ));};};};func (_gbba *Gray4 )Set (x ,y int ,c _de .Color ){if x >=_gbba .Width ||y >=_gbba .Height {return ;};_gdfd :=Gray4Model .Convert (c ).(_de .Gray );_gbba .setGray (x ,y ,_gdfd );};func ScaleAlphaToMonochrome (data []byte ,width ,height int )([]byte ,error ){_fa :=BytesPerLine (width ,8,1); -if len (data )< _fa *height {return nil ,nil ;};_b :=&Gray8 {NewImageBase (width ,height ,8,1,data ,nil ,nil )};_aa ,_cf :=MonochromeConverter .Convert (_b );if _cf !=nil {return nil ,_cf ;};return _aa .Base ().Data ,nil ;};func _gdb (_bfb _de .NYCbCrA )_de .RGBA {_gebf ,_faeg ,_bedf ,_gfea :=_gfbb (_bfb ).RGBA (); -return _de .RGBA {R :uint8 (_gebf >>8),G :uint8 (_faeg >>8),B :uint8 (_bedf >>8),A :uint8 (_gfea >>8)};};type Histogramer interface{Histogram ()[256]int ;};func _ffcb (_fgge *_dc .Gray )bool {for _gdca :=0;_gdca < len (_fgge .Pix );_gdca ++{if !_eadbd (_fgge .Pix [_gdca ]){return false ; -};};return true ;};func (_bgb *Monochrome )setBit (_ceg ,_debc int ){_bgb .Data [_ceg +(_debc >>3)]|=0x80>>uint (_debc &7)};func _dcgb ()(_baad [256]uint16 ){for _fce :=0;_fce < 256;_fce ++{if _fce &0x01!=0{_baad [_fce ]|=0x3;};if _fce &0x02!=0{_baad [_fce ]|=0xc; -};if _fce &0x04!=0{_baad [_fce ]|=0x30;};if _fce &0x08!=0{_baad [_fce ]|=0xc0;};if _fce &0x10!=0{_baad [_fce ]|=0x300;};if _fce &0x20!=0{_baad [_fce ]|=0xc00;};if _fce &0x40!=0{_baad [_fce ]|=0x3000;};if _fce &0x80!=0{_baad [_fce ]|=0xc000;};};return _baad ; -};var _ Gray =&Gray4 {};func _debcg (_fcdeb _de .Gray )_de .Gray {_fcdeb .Y >>=4;_fcdeb .Y |=_fcdeb .Y <<4;return _fcdeb };func (_bbce *Gray16 )Copy ()Image {return &Gray16 {ImageBase :_bbce .copy ()}};func _dafdd (_ffbe *Monochrome ,_bga ,_bbgg int ,_acgc ,_abdf int ,_dga RasterOperator ){var (_becbc bool ; -_bafe bool ;_abdca int ;_abbd int ;_cagc int ;_cfgd int ;_bad bool ;_gbgfg byte ;);_bfca :=8-(_bga &7);_abdg :=_febf [_bfca ];_agdg :=_ffbe .BytesPerLine *_bbgg +(_bga >>3);if _acgc < _bfca {_becbc =true ;_abdg &=_bffa [8-_bfca +_acgc ];};if !_becbc {_abdca =(_acgc -_bfca )>>3; -if _abdca !=0{_bafe =true ;_abbd =_agdg +1;};};_cagc =(_bga +_acgc )&7;if !(_becbc ||_cagc ==0){_bad =true ;_gbgfg =_bffa [_cagc ];_cfgd =_agdg +1+_abdca ;};var _gbbg ,_cebg int ;switch _dga {case PixClr :for _gbbg =0;_gbbg < _abdf ;_gbbg ++{_ffbe .Data [_agdg ]=_gafc (_ffbe .Data [_agdg ],0x0,_abdg ); -_agdg +=_ffbe .BytesPerLine ;};if _bafe {for _gbbg =0;_gbbg < _abdf ;_gbbg ++{for _cebg =0;_cebg < _abdca ;_cebg ++{_ffbe .Data [_abbd +_cebg ]=0x0;};_abbd +=_ffbe .BytesPerLine ;};};if _bad {for _gbbg =0;_gbbg < _abdf ;_gbbg ++{_ffbe .Data [_cfgd ]=_gafc (_ffbe .Data [_cfgd ],0x0,_gbgfg ); -_cfgd +=_ffbe .BytesPerLine ;};};case PixSet :for _gbbg =0;_gbbg < _abdf ;_gbbg ++{_ffbe .Data [_agdg ]=_gafc (_ffbe .Data [_agdg ],0xff,_abdg );_agdg +=_ffbe .BytesPerLine ;};if _bafe {for _gbbg =0;_gbbg < _abdf ;_gbbg ++{for _cebg =0;_cebg < _abdca ; -_cebg ++{_ffbe .Data [_abbd +_cebg ]=0xff;};_abbd +=_ffbe .BytesPerLine ;};};if _bad {for _gbbg =0;_gbbg < _abdf ;_gbbg ++{_ffbe .Data [_cfgd ]=_gafc (_ffbe .Data [_cfgd ],0xff,_gbgfg );_cfgd +=_ffbe .BytesPerLine ;};};case PixNotDst :for _gbbg =0;_gbbg < _abdf ; -_gbbg ++{_ffbe .Data [_agdg ]=_gafc (_ffbe .Data [_agdg ],^_ffbe .Data [_agdg ],_abdg );_agdg +=_ffbe .BytesPerLine ;};if _bafe {for _gbbg =0;_gbbg < _abdf ;_gbbg ++{for _cebg =0;_cebg < _abdca ;_cebg ++{_ffbe .Data [_abbd +_cebg ]=^(_ffbe .Data [_abbd +_cebg ]); -};_abbd +=_ffbe .BytesPerLine ;};};if _bad {for _gbbg =0;_gbbg < _abdf ;_gbbg ++{_ffbe .Data [_cfgd ]=_gafc (_ffbe .Data [_cfgd ],^_ffbe .Data [_cfgd ],_gbgfg );_cfgd +=_ffbe .BytesPerLine ;};};};};var _ _dc .Image =&NRGBA64 {};func _afdaa (_faefa _dc .Image ,_gbcg Image ,_ebbge _dc .Rectangle ){if _cgcga ,_adcd :=_faefa .(SMasker ); -_adcd &&_cgcga .HasAlpha (){_gbcg .(SMasker ).MakeAlpha ();};_cdf (_faefa ,_gbcg ,_ebbge );};var _ Gray =&Gray2 {};func (_fdcb *Gray16 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_fdcb .Width ,Y :_fdcb .Height }};};func ColorAtGray1BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_de .Gray ,error ){_cbbg :=y *bytesPerLine +x >>3; -if _cbbg >=len (data ){return _de .Gray {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_bgc :=data [_cbbg ]>>uint (7-(x &7))&1;if len (decode )==2{_bgc =uint8 (LinearInterpolate (float64 (_bgc ),0.0,1.0,decode [0],decode [1]))&1;};return _de .Gray {Y :_bgc *255},nil ;};func ColorAtCMYK (x ,y ,width int ,data []byte ,decode []float64 )(_de .CMYK ,error ){_dac :=4*(y *width +x ); -if _dac +3>=len (data ){return _de .CMYK {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};C :=data [_dac ]&0xff;M :=data [_dac +1]&0xff;Y :=data [_dac +2]&0xff;K :=data [_dac +3]&0xff;if len (decode )==8{C =uint8 (uint32 (LinearInterpolate (float64 (C ),0,255,decode [0],decode [1]))&0xff);M =uint8 (uint32 (LinearInterpolate (float64 (M ),0,255,decode [2],decode [3]))&0xff); -Y =uint8 (uint32 (LinearInterpolate (float64 (Y ),0,255,decode [4],decode [5]))&0xff);K =uint8 (uint32 (LinearInterpolate (float64 (K ),0,255,decode [6],decode [7]))&0xff);};return _de .CMYK {C :C ,M :M ,Y :Y ,K :K },nil ;};func _cdf (_fbf _dc .Image ,_fda Image ,_cdd _dc .Rectangle ){for _ged :=0; -_ged < _cdd .Max .X ;_ged ++{for _cbf :=0;_cbf < _cdd .Max .Y ;_cbf ++{_bac :=_fbf .At (_ged ,_cbf );_fda .Set (_ged ,_cbf ,_bac );};};};var _ NRGBA =&NRGBA32 {};func _ddcf (_efaae nrgba64 ,_cbfd NRGBA ,_adg _dc .Rectangle ){for _fecg :=0;_fecg < _adg .Max .X ; -_fecg ++{for _feec :=0;_feec < _adg .Max .Y ;_feec ++{_addb :=_efaae .NRGBA64At (_fecg ,_feec );_cbfd .SetNRGBA (_fecg ,_feec ,_bdef (_addb ));};};};func (_dgcd *NRGBA32 )ColorModel ()_de .Model {return _de .NRGBAModel };type Gray4 struct{ImageBase };func _cfgc (_eedb _de .NRGBA )_de .CMYK {_gaa ,_bgd ,_faae ,_ :=_eedb .RGBA (); -_afb ,_edc ,_edd ,_gde :=_de .RGBToCMYK (uint8 (_gaa >>8),uint8 (_bgd >>8),uint8 (_faae >>8));return _de .CMYK {C :_afb ,M :_edc ,Y :_edd ,K :_gde };};func IsGrayImgBlackAndWhite (i *_dc .Gray )bool {return _ffcb (i )};func _ggfgd (_dfggc NRGBA ,_aafa RGBA ,_bdgce _dc .Rectangle ){for _geaaa :=0; -_geaaa < _bdgce .Max .X ;_geaaa ++{for _dgfc :=0;_dgfc < _bdgce .Max .Y ;_dgfc ++{_fbdd :=_dfggc .NRGBAAt (_geaaa ,_dgfc );_aafa .SetRGBA (_geaaa ,_dgfc ,_gfgb (_fbdd ));};};};var _ Image =&Monochrome {};func ColorAtGray8BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_de .Gray ,error ){_edgg :=y *bytesPerLine +x ; -if _edgg >=len (data ){return _de .Gray {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_eede :=data [_edgg ];if len (decode )==2{_eede =uint8 (uint32 (LinearInterpolate (float64 (_eede ),0,255,decode [0],decode [1]))&0xff);};return _de .Gray {Y :_eede },nil ;};func _afgf (_ddce _dc .Image )(Image ,error ){if _dea ,_fbfa :=_ddce .(*Monochrome ); -_fbfa {return _dea ,nil ;};_gdde :=_ddce .Bounds ();var _deag Gray ;switch _ccegb :=_ddce .(type ){case Gray :_deag =_ccegb ;case NRGBA :_deag =&Gray8 {ImageBase :NewImageBase (_gdde .Max .X ,_gdde .Max .Y ,8,1,nil ,nil ,nil )};_becb (_deag ,_ccegb ,_gdde ); -case nrgba64 :_deag =&Gray8 {ImageBase :NewImageBase (_gdde .Max .X ,_gdde .Max .Y ,8,1,nil ,nil ,nil )};_dgdd (_deag ,_ccegb ,_gdde );default:_gaf ,_cbaf :=GrayConverter .Convert (_ddce );if _cbaf !=nil {return nil ,_cbaf ;};_deag =_gaf .(Gray );};_fba ,_dge :=NewImage (_gdde .Max .X ,_gdde .Max .Y ,1,1,nil ,nil ,nil ); -if _dge !=nil {return nil ,_dge ;};_aecd :=_fba .(*Monochrome );_ggc :=AutoThresholdTriangle (GrayHistogram (_deag ));for _dgf :=0;_dgf < _gdde .Max .X ;_dgf ++{for _fbg :=0;_fbg < _gdde .Max .Y ;_fbg ++{_dddc :=_abb (_deag .GrayAt (_dgf ,_fbg ),monochromeModel (_ggc )); -_aecd .SetGray (_dgf ,_fbg ,_dddc );};};return _fba ,nil ;};func (_efcf *Gray8 )At (x ,y int )_de .Color {_fcbc ,_ :=_efcf .ColorAt (x ,y );return _fcbc };func _cab (_ababb _de .NRGBA64 )_de .Gray {var _dbb _de .NRGBA64 ;if _ababb ==_dbb {return _de .Gray {Y :0xff}; -};_daa ,_cfadg ,_ecba ,_ :=_ababb .RGBA ();_dee :=(19595*_daa +38470*_cfadg +7471*_ecba +1<<15)>>24;return _de .Gray {Y :uint8 (_dee )};};func _eggc (_baba *_dc .Gray ,_ceeag uint8 )*_dc .Gray {_bfcd :=_baba .Bounds ();_cgag :=_dc .NewGray (_bfcd );for _bdebe :=0; -_bdebe < _bfcd .Dx ();_bdebe ++{for _bede :=0;_bede < _bfcd .Dy ();_bede ++{_bgba :=_baba .GrayAt (_bdebe ,_bede );_cgag .SetGray (_bdebe ,_bede ,_de .Gray {Y :_ggaf (_bgba .Y ,_ceeag )});};};return _cgag ;};var _ Image =&NRGBA32 {};func (_becc *NRGBA64 )Set (x ,y int ,c _de .Color ){_cedde :=(y *_becc .Width +x )*2; -_geff :=_cedde *3;if _geff +5>=len (_becc .Data ){return ;};_cddf :=_de .NRGBA64Model .Convert (c ).(_de .NRGBA64 );_becc .setNRGBA64 (_geff ,_cddf ,_cedde );};func (_cbeea *Monochrome )ResolveDecode ()error {if len (_cbeea .Decode )!=2{return nil ;};if _cbeea .Decode [0]==1&&_cbeea .Decode [1]==0{if _becbd :=_cbeea .InverseData (); -_becbd !=nil {return _becbd ;};_cbeea .Decode =nil ;};return nil ;};var _ Image =&Gray16 {};func (_agaf *NRGBA16 )Copy ()Image {return &NRGBA16 {ImageBase :_agaf .copy ()}};func (_gcfb *monochromeThresholdConverter )Convert (img _dc .Image )(Image ,error ){if _deeg ,_ffdc :=img .(*Monochrome ); -_ffdc {return _deeg .Copy (),nil ;};_adba :=img .Bounds ();_fafg ,_bdeb :=NewImage (_adba .Max .X ,_adba .Max .Y ,1,1,nil ,nil ,nil );if _bdeb !=nil {return nil ,_bdeb ;};_fafg .(*Monochrome ).ModelThreshold =_gcfb .Threshold ;for _ddae :=0;_ddae < _adba .Max .X ; -_ddae ++{for _befe :=0;_befe < _adba .Max .Y ;_befe ++{_gfeb :=img .At (_ddae ,_befe );_fafg .Set (_ddae ,_befe ,_gfeb );};};return _fafg ,nil ;};func (_bbf *CMYK32 )Base ()*ImageBase {return &_bbf .ImageBase };func (_egg *Monochrome )GrayAt (x ,y int )_de .Gray {_cgca ,_ :=ColorAtGray1BPC (x ,y ,_egg .BytesPerLine ,_egg .Data ,_egg .Decode ); -return _cgca ;};func _dbgbg (_bcce ,_agcc Gray ,_dgbe _dc .Rectangle ){for _edec :=0;_edec < _dgbe .Max .X ;_edec ++{for _gafe :=0;_gafe < _dgbe .Max .Y ;_gafe ++{_agcc .SetGray (_edec ,_gafe ,_bcce .GrayAt (_edec ,_gafe ));};};};func (_ccfe *Gray16 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtGray16BPC (x ,y ,_ccfe .BytesPerLine ,_ccfe .Data ,_ccfe .Decode ); -};type ColorConverter interface{Convert (_abcc _dc .Image )(Image ,error );};func (_fdc *Monochrome )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_fdc .Width ,Y :_fdc .Height }};};func (_baaag *NRGBA64 )Copy ()Image {return &NRGBA64 {ImageBase :_baaag .copy ()}}; -type RGBA interface{RGBAAt (_agab ,_cbgd int )_de .RGBA ;SetRGBA (_eece ,_afc int ,_eedf _de .RGBA );};func _acda (_gddc *Monochrome ,_afab ,_eaf ,_fddf ,_ggcc int ,_cege RasterOperator ,_dgcc *Monochrome ,_cccc ,_bbeg int )error {var (_cbcb bool ;_cddb bool ; -_ccg byte ;_gee int ;_aeee int ;_gdfe int ;_dgdf int ;_ebcb bool ;_cffa int ;_ebcac int ;_bfa int ;_decfb bool ;_caea byte ;_ecda int ;_abaca int ;_ffdf int ;_edcb byte ;_bbfbc int ;_bdacd int ;_bfae uint ;_efb uint ;_fabf byte ;_aegc shift ;_edbf bool ; -_fgeg bool ;_ecad ,_gaab int ;);if _cccc &7!=0{_bdacd =8-(_cccc &7);};if _afab &7!=0{_aeee =8-(_afab &7);};if _bdacd ==0&&_aeee ==0{_fabf =_febf [0];}else {if _aeee > _bdacd {_bfae =uint (_aeee -_bdacd );}else {_bfae =uint (8-(_bdacd -_aeee ));};_efb =8-_bfae ; -_fabf =_febf [_bfae ];};if (_afab &7)!=0{_cbcb =true ;_gee =8-(_afab &7);_ccg =_febf [_gee ];_gdfe =_gddc .BytesPerLine *_eaf +(_afab >>3);_dgdf =_dgcc .BytesPerLine *_bbeg +(_cccc >>3);_bbfbc =8-(_cccc &7);if _gee > _bbfbc {_aegc =_eee ;if _fddf >=_bdacd {_edbf =true ; -};}else {_aegc =_befcf ;};};if _fddf < _gee {_cddb =true ;_ccg &=_bffa [8-_gee +_fddf ];};if !_cddb {_cffa =(_fddf -_gee )>>3;if _cffa !=0{_ebcb =true ;_ebcac =_gddc .BytesPerLine *_eaf +((_afab +_aeee )>>3);_bfa =_dgcc .BytesPerLine *_bbeg +((_cccc +_aeee )>>3); -};};_ecda =(_afab +_fddf )&7;if !(_cddb ||_ecda ==0){_decfb =true ;_caea =_bffa [_ecda ];_abaca =_gddc .BytesPerLine *_eaf +((_afab +_aeee )>>3)+_cffa ;_ffdf =_dgcc .BytesPerLine *_bbeg +((_cccc +_aeee )>>3)+_cffa ;if _ecda > int (_efb ){_fgeg =true ;}; -};switch _cege {case PixSrc :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],_edcb ,_ccg ); -_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]=_edcb ; -};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],_edcb ,_caea ); -_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixNotSrc :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ; -};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],^_edcb ,_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf ); -_gddc .Data [_ebcac +_gaab ]=^_edcb ;};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf ); -};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],^_edcb ,_caea );_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixSrcOrDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf ); -};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],_edcb |_gddc .Data [_gdfe ],_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0; -_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]|=_edcb ;};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ; -_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],_edcb |_gddc .Data [_abaca ],_caea );_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ; -};};case PixSrcAndDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],_edcb &_gddc .Data [_gdfe ],_ccg ); -_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]&=_edcb ; -};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],_edcb &_gddc .Data [_abaca ],_caea ); -_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixSrcXorDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );}; -}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],_edcb ^_gddc .Data [_gdfe ],_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ; -_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]^=_edcb ;};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ; -if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],_edcb ^_gddc .Data [_abaca ],_caea );_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixNotSrcOrDst :if _cbcb {for _ecad =0; -_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],^_edcb |_gddc .Data [_gdfe ],_ccg ); -_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]|=^_edcb ; -};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],^_edcb |_gddc .Data [_abaca ],_caea ); -_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixNotSrcAndDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf ); -};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],^_edcb &_gddc .Data [_gdfe ],_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0; -_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]&=^_edcb ;};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ; -_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],^_edcb &_gddc .Data [_abaca ],_caea );_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ; -};};case PixSrcOrNotDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],_edcb |^_gddc .Data [_gdfe ],_ccg ); -_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]=_edcb |^_gddc .Data [_ebcac +_gaab ]; -};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],_edcb |^_gddc .Data [_abaca ],_caea ); -_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixSrcAndNotDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf ); -};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],_edcb &^_gddc .Data [_gdfe ],_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0; -_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]=_edcb &^_gddc .Data [_ebcac +_gaab ];};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0; -_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],_edcb &^_gddc .Data [_abaca ],_caea );_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ; -};};case PixNotPixSrcOrDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],^(_edcb |_gddc .Data [_gdfe ]),_ccg ); -_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]=^(_edcb |_gddc .Data [_ebcac +_gaab ]); -};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],^(_edcb |_gddc .Data [_abaca ]),_caea ); -_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};case PixNotPixSrcAndDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf ); -};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ;};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],^(_edcb &_gddc .Data [_gdfe ]),_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0; -_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf );_gddc .Data [_ebcac +_gaab ]=^(_edcb &_gddc .Data [_ebcac +_gaab ]);};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0; -_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf );};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],^(_edcb &_gddc .Data [_abaca ]),_caea );_abaca +=_gddc .BytesPerLine ; -_ffdf +=_dgcc .BytesPerLine ;};};case PixNotPixSrcXorDst :if _cbcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{if _aegc ==_eee {_edcb =_dgcc .Data [_dgdf ]<<_bfae ;if _edbf {_edcb =_gafc (_edcb ,_dgcc .Data [_dgdf +1]>>_efb ,_fabf );};}else {_edcb =_dgcc .Data [_dgdf ]>>_efb ; -};_gddc .Data [_gdfe ]=_gafc (_gddc .Data [_gdfe ],^(_edcb ^_gddc .Data [_gdfe ]),_ccg );_gdfe +=_gddc .BytesPerLine ;_dgdf +=_dgcc .BytesPerLine ;};};if _ebcb {for _ecad =0;_ecad < _ggcc ;_ecad ++{for _gaab =0;_gaab < _cffa ;_gaab ++{_edcb =_gafc (_dgcc .Data [_bfa +_gaab ]<<_bfae ,_dgcc .Data [_bfa +_gaab +1]>>_efb ,_fabf ); -_gddc .Data [_ebcac +_gaab ]=^(_edcb ^_gddc .Data [_ebcac +_gaab ]);};_ebcac +=_gddc .BytesPerLine ;_bfa +=_dgcc .BytesPerLine ;};};if _decfb {for _ecad =0;_ecad < _ggcc ;_ecad ++{_edcb =_dgcc .Data [_ffdf ]<<_bfae ;if _fgeg {_edcb =_gafc (_edcb ,_dgcc .Data [_ffdf +1]>>_efb ,_fabf ); -};_gddc .Data [_abaca ]=_gafc (_gddc .Data [_abaca ],^(_edcb ^_gddc .Data [_abaca ]),_caea );_abaca +=_gddc .BytesPerLine ;_ffdf +=_dgcc .BytesPerLine ;};};default:_c .Log .Debug ("\u004f\u0070e\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0070\u0065\u0072\u006d\u0069tt\u0065\u0064",_cege ); -return _d .New ("\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065r\u0061\u0074\u0069\u006f\u006e\u0020\u006eo\u0074\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064");};return nil ;};func _gfbb (_ebc _de .NYCbCrA )_de .NRGBA {_eaca :=int32 (_ebc .Y )*0x10101; -_adc :=int32 (_ebc .Cb )-128;_gggf :=int32 (_ebc .Cr )-128;_faad :=_eaca +91881*_gggf ;if uint32 (_faad )&0xff000000==0{_faad >>=8;}else {_faad =^(_faad >>31)&0xffff;};_dcfb :=_eaca -22554*_adc -46802*_gggf ;if uint32 (_dcfb )&0xff000000==0{_dcfb >>=8; -}else {_dcfb =^(_dcfb >>31)&0xffff;};_cda :=_eaca +116130*_adc ;if uint32 (_cda )&0xff000000==0{_cda >>=8;}else {_cda =^(_cda >>31)&0xffff;};return _de .NRGBA {R :uint8 (_faad >>8),G :uint8 (_dcfb >>8),B :uint8 (_cda >>8),A :_ebc .A };};func (_gdda *Gray4 )setGray (_fbb int ,_dagg int ,_adcb _de .Gray ){_ceda :=_dagg *_gdda .BytesPerLine ; -_aafe :=_ceda +(_fbb >>1);if _aafe >=len (_gdda .Data ){return ;};_bfcb :=_adcb .Y >>4;_gdda .Data [_aafe ]=(_gdda .Data [_aafe ]&(^(0xf0>>uint (4*(_fbb &1)))))|(_bfcb < len (_bbbcc .Data )-1{return _d .New ("\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};_bbbcc .Data [_ddfb ]=byte ((_egfc &0xff00000000000000)>>56);_bbbcc .Data [_ddfb +1]=byte ((_egfc &0xff000000000000)>>48);_bbbcc .Data [_ddfb +2]=byte ((_egfc &0xff0000000000)>>40);_bbbcc .Data [_ddfb +3]=byte ((_egfc &0xff00000000)>>32);_bbbcc .Data [_ddfb +4]=byte ((_egfc &0xff000000)>>24); -_bbbcc .Data [_ddfb +5]=byte ((_egfc &0xff0000)>>16);_bbbcc .Data [_ddfb +6]=byte ((_egfc &0xff00)>>8);_bbbcc .Data [_ddfb +7]=byte (_egfc &0xff);return nil ;};func _gcc (_dcb _de .Gray )_de .NRGBA {return _de .NRGBA {R :_dcb .Y ,G :_dcb .Y ,B :_dcb .Y ,A :0xff}}; -func (_ggead *NRGBA32 )Base ()*ImageBase {return &_ggead .ImageBase };func (_bcbfe *NRGBA64 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtNRGBA64 (x ,y ,_bcbfe .Width ,_bcbfe .Data ,_bcbfe .Alpha ,_bcbfe .Decode );};func _gbb (_dbc _de .Gray )_de .Gray {_fegf :=_dbc .Y >>6; -_fegf |=_fegf <<2;_dbc .Y =_fegf |_fegf <<4;return _dbc ;};func (_acad *Monochrome )copy ()*Monochrome {_cdfe :=_ffbb (_acad .Width ,_acad .Height );_cdfe .ModelThreshold =_acad .ModelThreshold ;_cdfe .Data =make ([]byte ,len (_acad .Data ));copy (_cdfe .Data ,_acad .Data ); -if len (_acad .Decode )!=0{_cdfe .Decode =make ([]float64 ,len (_acad .Decode ));copy (_cdfe .Decode ,_acad .Decode );};if len (_acad .Alpha )!=0{_cdfe .Alpha =make ([]byte ,len (_acad .Alpha ));copy (_cdfe .Alpha ,_acad .Alpha );};return _cdfe ;};func MonochromeModel (threshold uint8 )_de .Model {return monochromeModel (threshold )}; -func (_efe *Monochrome )Scale (scale float64 )(*Monochrome ,error ){var _gcae bool ;_cdfa :=scale ;if scale < 1{_cdfa =1/scale ;_gcae =true ;};_ebcd :=NextPowerOf2 (uint (_cdfa ));if InDelta (float64 (_ebcd ),_cdfa ,0.001){if _gcae {return _efe .ReduceBinary (_cdfa ); -};return _efe .ExpandBinary (int (_ebcd ));};_bbb :=int (_a .RoundToEven (float64 (_efe .Width )*scale ));_bcfd :=int (_a .RoundToEven (float64 (_efe .Height )*scale ));return _efe .ScaleLow (_bbb ,_bcfd );};var (Gray2Model =_de .ModelFunc (_fcbd );Gray4Model =_de .ModelFunc (_bcga ); -NRGBA16Model =_de .ModelFunc (_fcbe ););func _fbec (_adgc nrgba64 ,_fgegf RGBA ,_ggec _dc .Rectangle ){for _gfad :=0;_gfad < _ggec .Max .X ;_gfad ++{for _fbgbe :=0;_fbgbe < _ggec .Max .Y ;_fbgbe ++{_acfcf :=_adgc .NRGBA64At (_gfad ,_fbgbe );_fgegf .SetRGBA (_gfad ,_fbgbe ,_bab (_acfcf )); -};};};func (_bedc *Monochrome )ExpandBinary (factor int )(*Monochrome ,error ){if !IsPowerOf2 (uint (factor )){return nil ,_dcg .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0065\u0078\u0070\u0061\u006e\u0064\u0020b\u0069n\u0061\u0072\u0079\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",factor ); -};return _fb (_bedc ,factor );};type NRGBA32 struct{ImageBase };func (_dfg *NRGBA32 )Copy ()Image {return &NRGBA32 {ImageBase :_dfg .copy ()}};func _ebda (_begag _dc .Image )(Image ,error ){if _fcee ,_ffadg :=_begag .(*Gray4 );_ffadg {return _fcee .Copy (),nil ; -};_fgda :=_begag .Bounds ();_gbce ,_bgdb :=NewImage (_fgda .Max .X ,_fgda .Max .Y ,4,1,nil ,nil ,nil );if _bgdb !=nil {return nil ,_bgdb ;};_cfde (_begag ,_gbce ,_fgda );return _gbce ,nil ;};var _ NRGBA =&NRGBA16 {};func (_efedd *Monochrome )RasterOperation (dx ,dy ,dw ,dh int ,op RasterOperator ,src *Monochrome ,sx ,sy int )error {return _bacd (_efedd ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy ); -};func ImgToBinary (i _dc .Image ,threshold uint8 )*_dc .Gray {switch _efac :=i .(type ){case *_dc .Gray :if _ffcb (_efac ){return _efac ;};return _eggc (_efac ,threshold );case *_dc .Gray16 :return _effb (_efac ,threshold );default:return _cdee (_efac ,threshold ); -};};func (_adfc *ImageBase )setTwoBytes (_bbgc int ,_gbdbc uint16 )error {if _bbgc +1> len (_adfc .Data )-1{return _d .New ("\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065");};_adfc .Data [_bbgc ]=byte ((_gbdbc &0xff00)>>8); -_adfc .Data [_bbgc +1]=byte (_gbdbc &0xff);return nil ;};func _fcge (_ggeegc _dc .Image )(Image ,error ){if _gbda ,_ccgb :=_ggeegc .(*RGBA32 );_ccgb {return _gbda .Copy (),nil ;};_ggce ,_ffcc ,_cdfeg :=_egafg (_ggeegc ,1);_acbg :=&RGBA32 {ImageBase :NewImageBase (_ggce .Max .X ,_ggce .Max .Y ,8,3,nil ,_cdfeg ,nil )}; -_cbae (_ggeegc ,_acbg ,_ggce );if len (_cdfeg )!=0&&!_ffcc {if _gbef :=_ebadd (_cdfeg ,_acbg );_gbef !=nil {return nil ,_gbef ;};};return _acbg ,nil ;};func (_ccbd *NRGBA64 )Base ()*ImageBase {return &_ccbd .ImageBase };func _dddcc (_fgcb *Monochrome ,_gdcdg ,_bfgd ,_abdcd ,_dafd int ,_deg RasterOperator ){if _gdcdg < 0{_abdcd +=_gdcdg ; -_gdcdg =0;};_dcd :=_gdcdg +_abdcd -_fgcb .Width ;if _dcd > 0{_abdcd -=_dcd ;};if _bfgd < 0{_dafd +=_bfgd ;_bfgd =0;};_aegg :=_bfgd +_dafd -_fgcb .Height ;if _aegg > 0{_dafd -=_aegg ;};if _abdcd <=0||_dafd <=0{return ;};if (_gdcdg &7)==0{_dcdb (_fgcb ,_gdcdg ,_bfgd ,_abdcd ,_dafd ,_deg ); -}else {_dafdd (_fgcb ,_gdcdg ,_bfgd ,_abdcd ,_dafd ,_deg );};};func _gdac (_adag ,_gbgfc RGBA ,_bbfae _dc .Rectangle ){for _fgae :=0;_fgae < _bbfae .Max .X ;_fgae ++{for _agae :=0;_agae < _bbfae .Max .Y ;_agae ++{_gbgfc .SetRGBA (_fgae ,_agae ,_adag .RGBAAt (_fgae ,_agae )); -};};};type RGBA32 struct{ImageBase };func (_bggcd *NRGBA16 )At (x ,y int )_de .Color {_bdec ,_ :=_bggcd .ColorAt (x ,y );return _bdec };func _cfe (_dda NRGBA ,_ffc CMYK ,_fadb _dc .Rectangle ){for _dfc :=0;_dfc < _fadb .Max .X ;_dfc ++{for _decb :=0;_decb < _fadb .Max .Y ; -_decb ++{_eed :=_dda .NRGBAAt (_dfc ,_decb );_ffc .SetCMYK (_dfc ,_decb ,_cfgc (_eed ));};};};type Gray2 struct{ImageBase };var _ _dc .Image =&Monochrome {};func _dcdb (_gbcf *Monochrome ,_gcfc ,_ecdad int ,_dbgc ,_ebded int ,_dbfa RasterOperator ){var (_ebcad int ; -_gegb byte ;_eega ,_ecdab int ;_gada int ;);_faca :=_dbgc >>3;_efceb :=_dbgc &7;if _efceb > 0{_gegb =_bffa [_efceb ];};_ebcad =_gbcf .BytesPerLine *_ecdad +(_gcfc >>3);switch _dbfa {case PixClr :for _eega =0;_eega < _ebded ;_eega ++{_gada =_ebcad +_eega *_gbcf .BytesPerLine ; -for _ecdab =0;_ecdab < _faca ;_ecdab ++{_gbcf .Data [_gada ]=0x0;_gada ++;};if _efceb > 0{_gbcf .Data [_gada ]=_gafc (_gbcf .Data [_gada ],0x0,_gegb );};};case PixSet :for _eega =0;_eega < _ebded ;_eega ++{_gada =_ebcad +_eega *_gbcf .BytesPerLine ;for _ecdab =0; -_ecdab < _faca ;_ecdab ++{_gbcf .Data [_gada ]=0xff;_gada ++;};if _efceb > 0{_gbcf .Data [_gada ]=_gafc (_gbcf .Data [_gada ],0xff,_gegb );};};case PixNotDst :for _eega =0;_eega < _ebded ;_eega ++{_gada =_ebcad +_eega *_gbcf .BytesPerLine ;for _ecdab =0; -_ecdab < _faca ;_ecdab ++{_gbcf .Data [_gada ]=^_gbcf .Data [_gada ];_gada ++;};if _efceb > 0{_gbcf .Data [_gada ]=_gafc (_gbcf .Data [_gada ],^_gbcf .Data [_gada ],_gegb );};};};};func AddDataPadding (width ,height ,bitsPerComponent ,colorComponents int ,data []byte )([]byte ,error ){_cbacg :=BytesPerLine (width ,bitsPerComponent ,colorComponents ); -if _cbacg ==width *colorComponents *bitsPerComponent /8{return data ,nil ;};_ceba :=width *colorComponents *bitsPerComponent ;_abdab :=_cbacg *8;_fgff :=8-(_abdab -_ceba );_gef :=_g .NewReader (data );_cdccf :=_cbacg -1;_dece :=make ([]byte ,_cdccf );_bcaa :=make ([]byte ,height *_cbacg ); -_ffgc :=_g .NewWriterMSB (_bcaa );var _gddde uint64 ;var _gcea error ;for _ggdbc :=0;_ggdbc < height ;_ggdbc ++{_ ,_gcea =_gef .Read (_dece );if _gcea !=nil {return nil ,_gcea ;};_ ,_gcea =_ffgc .Write (_dece );if _gcea !=nil {return nil ,_gcea ;};_gddde ,_gcea =_gef .ReadBits (byte (_fgff )); -if _gcea !=nil {return nil ,_gcea ;};_ ,_gcea =_ffgc .WriteBits (_gddde ,_fgff );if _gcea !=nil {return nil ,_gcea ;};_ffgc .FinishByte ();};return _bcaa ,nil ;};func (_cdfag *Gray2 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtGray2BPC (x ,y ,_cdfag .BytesPerLine ,_cdfag .Data ,_cdfag .Decode ); -};func _eadbd (_dcba uint8 )bool {if _dcba ==0||_dcba ==255{return true ;};return false ;};func (_fbeg *ImageBase )setByte (_cebc int ,_dbdf byte )error {if _cebc > len (_fbeg .Data )-1{return _d .New ("\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};_fbeg .Data [_cebc ]=_dbdf ;return nil ;};func (_gcfe *Gray2 )Validate ()error {if len (_gcfe .Data )!=_gcfe .Height *_gcfe .BytesPerLine {return ErrInvalidImage ;};return nil ;};var _ Image =&Gray2 {};var (MonochromeConverter =ConverterFunc (_afgf ); -Gray2Converter =ConverterFunc (_cacf );Gray4Converter =ConverterFunc (_ebda );GrayConverter =ConverterFunc (_ffaf );Gray16Converter =ConverterFunc (_gged );NRGBA16Converter =ConverterFunc (_cgcg );NRGBAConverter =ConverterFunc (_bgdfa );NRGBA64Converter =ConverterFunc (_eggfb ); -RGBAConverter =ConverterFunc (_fcge );CMYKConverter =ConverterFunc (_gcb ););func (_abea *CMYK32 )SetCMYK (x ,y int ,c _de .CMYK ){_efd :=4*(y *_abea .Width +x );if _efd +3>=len (_abea .Data ){return ;};_abea .Data [_efd ]=c .C ;_abea .Data [_efd +1]=c .M ; -_abea .Data [_efd +2]=c .Y ;_abea .Data [_efd +3]=c .K ;};func (_cefaa *NRGBA32 )NRGBAAt (x ,y int )_de .NRGBA {_fced ,_ :=ColorAtNRGBA32 (x ,y ,_cefaa .Width ,_cefaa .Data ,_cefaa .Alpha ,_cefaa .Decode );return _fced ;};func _ddac (_gdfdb Gray ,_cgd NRGBA ,_geee _dc .Rectangle ){for _aacc :=0; -_aacc < _geee .Max .X ;_aacc ++{for _bedfc :=0;_bedfc < _geee .Max .Y ;_bedfc ++{_ggge :=_gdfdb .GrayAt (_aacc ,_bedfc );_cgd .SetNRGBA (_aacc ,_bedfc ,_gcc (_ggge ));};};};func (_fbabb *NRGBA64 )Bounds ()_dc .Rectangle {return _dc .Rectangle {Max :_dc .Point {X :_fbabb .Width ,Y :_fbabb .Height }}; -};func (_egef *Gray16 )GrayAt (x ,y int )_de .Gray {_caga ,_ :=_egef .ColorAt (x ,y );return _de .Gray {Y :uint8 (_caga .(_de .Gray16 ).Y >>8)};};func (_bebb *Gray2 )GrayAt (x ,y int )_de .Gray {_efae ,_ :=ColorAtGray2BPC (x ,y ,_bebb .BytesPerLine ,_bebb .Data ,_bebb .Decode ); -return _efae ;};func (_bca *ImageBase )Pix ()[]byte {return _bca .Data };func (_bgcd *Gray2 )Histogram ()(_bdfd [256]int ){for _gaag :=0;_gaag < _bgcd .Width ;_gaag ++{for _eggb :=0;_eggb < _bgcd .Height ;_eggb ++{_bdfd [_bgcd .GrayAt (_gaag ,_eggb ).Y ]++; -};};return _bdfd ;};func (_ggfg *Gray8 )Copy ()Image {return &Gray8 {ImageBase :_ggfg .copy ()}};const (_eee shift =iota ;_befcf ;);func (_fdeb *NRGBA64 )Validate ()error {if len (_fdeb .Data )!=3*2*_fdeb .Width *_fdeb .Height {return _d .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); -};return nil ;};func _dbeg (_beab int ,_aeb int )error {return _dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",_beab ,_aeb ); -};func ColorAt (x ,y ,width ,bitsPerColor ,colorComponents ,bytesPerLine int ,data ,alpha []byte ,decode []float64 )(_de .Color ,error ){switch colorComponents {case 1:return ColorAtGrayscale (x ,y ,bitsPerColor ,bytesPerLine ,data ,decode );case 3:return ColorAtNRGBA (x ,y ,width ,bytesPerLine ,bitsPerColor ,data ,alpha ,decode ); -case 4:return ColorAtCMYK (x ,y ,width ,data ,decode );default:return nil ,_dcg .Errorf ("\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063o\u006c\u006f\u0072\u0020\u0063\u006f\u006dp\u006f\u006e\u0065\u006e\u0074\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0064",colorComponents ); -};};type Gray8 struct{ImageBase };func ColorAtGray16BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_de .Gray16 ,error ){_egaf :=(y *bytesPerLine /2+x )*2;if _egaf +1>=len (data ){return _de .Gray16 {},_dcg .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); -};_dgbb :=uint16 (data [_egaf ])<<8|uint16 (data [_egaf +1]);if len (decode )==2{_dgbb =uint16 (uint64 (LinearInterpolate (float64 (_dgbb ),0,65535,decode [0],decode [1])));};return _de .Gray16 {Y :_dgbb },nil ;};func (_bgaa *RGBA32 )Copy ()Image {return &RGBA32 {ImageBase :_bgaa .copy ()}}; -var _ _dc .Image =&RGBA32 {};func (_efaa *NRGBA32 )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtNRGBA32 (x ,y ,_efaa .Width ,_efaa .Data ,_efaa .Alpha ,_efaa .Decode );};func (_cfca *NRGBA32 )Set (x ,y int ,c _de .Color ){_bbbf :=y *_cfca .Width +x ; -_affd :=3*_bbbf ;if _affd +2>=len (_cfca .Data ){return ;};_gadd :=_de .NRGBAModel .Convert (c ).(_de .NRGBA );_cfca .setRGBA (_bbbf ,_gadd );};func _gfgb (_ffab _de .NRGBA )_de .RGBA {_acc ,_daf ,_eadb ,_efc :=_ffab .RGBA ();return _de .RGBA {R :uint8 (_acc >>8),G :uint8 (_daf >>8),B :uint8 (_eadb >>8),A :uint8 (_efc >>8)}; -};func _eba ()(_beb []byte ){_beb =make ([]byte ,256);for _faea :=0;_faea < 256;_faea ++{_agc :=byte (_faea );_beb [_agc ]=(_agc &0x01)|((_agc &0x04)>>1)|((_agc &0x10)>>2)|((_agc &0x40)>>3)|((_agc &0x02)<<3)|((_agc &0x08)<<2)|((_agc &0x20)<<1)|(_agc &0x80); -};return _beb ;};func _bdb (_ggg *Monochrome ,_eca ,_ag int )(*Monochrome ,error ){if _ggg ==nil {return nil ,_d .New ("\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _eca <=0||_ag <=0{return nil ,_d .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0063\u0061l\u0065\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020<\u003d\u0020\u0030"); -};if _eca ==_ag {if _eca ==1{return _ggg .copy (),nil ;};if _eca ==2||_eca ==4||_eca ==8{_cfd ,_gc :=_fb (_ggg ,_eca );if _gc !=nil {return nil ,_gc ;};return _cfd ,nil ;};};_decc :=_eca *_ggg .Width ;_bcg :=_ag *_ggg .Height ;_cc :=_ffbb (_decc ,_bcg ); -_ed :=_cc .BytesPerLine ;var (_fff ,_eef ,_ecg ,_aag ,_gf int ;_adf byte ;_aae error ;);for _eef =0;_eef < _ggg .Height ;_eef ++{_fff =_ag *_eef *_ed ;for _ecg =0;_ecg < _ggg .Width ;_ecg ++{if _aff :=_ggg .getBitAt (_ecg ,_eef );_aff {_gf =_eca *_ecg ; -for _aag =0;_aag < _eca ;_aag ++{_cc .setIndexedBit (_fff *8+_gf +_aag );};};};for _aag =1;_aag < _ag ;_aag ++{_ddc :=_fff +_aag *_ed ;for _bee :=0;_bee < _ed ;_bee ++{if _adf ,_aae =_cc .getByte (_fff +_bee );_aae !=nil {return nil ,_aae ;};if _aae =_cc .setByte (_ddc +_bee ,_adf ); -_aae !=nil {return nil ,_aae ;};};};};return _cc ,nil ;};func (_bbbc *Gray8 )Set (x ,y int ,c _de .Color ){_cgfe :=y *_bbbc .BytesPerLine +x ;if _cgfe > len (_bbbc .Data )-1{return ;};_cfc :=_de .GrayModel .Convert (c );_bbbc .Data [_cgfe ]=_cfc .(_de .Gray ).Y ; -};func (_abda *Gray4 )Histogram ()(_edg [256]int ){for _bdgb :=0;_bdgb < _abda .Width ;_bdgb ++{for _efdf :=0;_efdf < _abda .Height ;_efdf ++{_edg [_abda .GrayAt (_bdgb ,_efdf ).Y ]++;};};return _edg ;};func _egafg (_edae _dc .Image ,_cgac int )(_dc .Rectangle ,bool ,[]byte ){_ebddd :=_edae .Bounds (); -var (_acb bool ;_gcgg []byte ;);switch _fgca :=_edae .(type ){case SMasker :_acb =_fgca .HasAlpha ();case NRGBA ,RGBA ,*_dc .RGBA64 ,nrgba64 ,*_dc .NYCbCrA :_gcgg =make ([]byte ,_ebddd .Max .X *_ebddd .Max .Y *_cgac );case *_dc .Paletted :var _ebfd bool ; -for _ ,_adcg :=range _fgca .Palette {_ecdcc ,_defc ,_fceb ,_gfee :=_adcg .RGBA ();if _ecdcc ==0&&_defc ==0&&_fceb ==0&&_gfee !=0{_ebfd =true ;break ;};};if _ebfd {_gcgg =make ([]byte ,_ebddd .Max .X *_ebddd .Max .Y *_cgac );};};return _ebddd ,_acb ,_gcgg ; -};func _fcbd (_gbd _de .Color )_de .Color {_fed :=_de .GrayModel .Convert (_gbd ).(_de .Gray );return _gbb (_fed );};func _ffaf (_cefc _dc .Image )(Image ,error ){if _decg ,_gced :=_cefc .(*Gray8 );_gced {return _decg .Copy (),nil ;};_ceea :=_cefc .Bounds (); -_fdge ,_bcff :=NewImage (_ceea .Max .X ,_ceea .Max .Y ,8,1,nil ,nil ,nil );if _bcff !=nil {return nil ,_bcff ;};_cfde (_cefc ,_fdge ,_ceea );return _fdge ,nil ;};func _eac (_afd ,_bcb *Monochrome ,_cge []byte ,_dfa int )(_ffa error ){var (_ecf ,_aga ,_fca ,_dgd ,_bdg ,_caf ,_ccc ,_dbf int ; -_gfc ,_ead ,_bec ,_fddc uint32 ;_faa ,_faac byte ;_gda uint16 ;);_gga :=make ([]byte ,4);_gag :=make ([]byte ,4);for _fca =0;_fca < _afd .Height -1;_fca ,_dgd =_fca +2,_dgd +1{_ecf =_fca *_afd .BytesPerLine ;_aga =_dgd *_bcb .BytesPerLine ;for _bdg ,_caf =0,0; -_bdg < _dfa ;_bdg ,_caf =_bdg +4,_caf +1{for _ccc =0;_ccc < 4;_ccc ++{_dbf =_ecf +_bdg +_ccc ;if _dbf <=len (_afd .Data )-1&&_dbf < _ecf +_afd .BytesPerLine {_gga [_ccc ]=_afd .Data [_dbf ];}else {_gga [_ccc ]=0x00;};_dbf =_ecf +_afd .BytesPerLine +_bdg +_ccc ; -if _dbf <=len (_afd .Data )-1&&_dbf < _ecf +(2*_afd .BytesPerLine ){_gag [_ccc ]=_afd .Data [_dbf ];}else {_gag [_ccc ]=0x00;};};_gfc =_ab .BigEndian .Uint32 (_gga );_ead =_ab .BigEndian .Uint32 (_gag );_bec =_gfc &_ead ;_bec |=_bec <<1;_fddc =_gfc |_ead ; -_fddc &=_fddc <<1;_ead =_bec |_fddc ;_ead &=0xaaaaaaaa;_gfc =_ead |(_ead <<7);_faa =byte (_gfc >>24);_faac =byte ((_gfc >>8)&0xff);_dbf =_aga +_caf ;if _dbf +1==len (_bcb .Data )-1||_dbf +1>=_aga +_bcb .BytesPerLine {if _ffa =_bcb .setByte (_dbf ,_cge [_faa ]); -_ffa !=nil {return _dcg .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_dbf );};}else {_gda =(uint16 (_cge [_faa ])<<8)|uint16 (_cge [_faac ]);if _ffa =_bcb .setTwoBytes (_dbf ,_gda );_ffa !=nil {return _dcg .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_dbf ); -};_caf ++;};};};return nil ;};func (_ecdc *NRGBA16 )Validate ()error {if len (_ecdc .Data )!=3*_ecdc .Width *_ecdc .Height /2{return _d .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); -};return nil ;};func (_bcca *Monochrome )setGray (_acac int ,_dfe _de .Gray ,_eeb int ){if _dfe .Y ==0{_bcca .clearBit (_eeb ,_acac );}else {_bcca .setGrayBit (_eeb ,_acac );};};func (_bagc *Monochrome )setIndexedBit (_cbg int ){_bagc .Data [(_cbg >>3)]|=0x80>>uint (_cbg &7)}; -func (_dgcg *ImageBase )setFourBytes (_cedf int ,_abcg uint32 )error {if _cedf +3> len (_dgcg .Data )-1{return _dcg .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",_cedf ); -};_dgcg .Data [_cedf ]=byte ((_abcg &0xff000000)>>24);_dgcg .Data [_cedf +1]=byte ((_abcg &0xff0000)>>16);_dgcg .Data [_cedf +2]=byte ((_abcg &0xff00)>>8);_dgcg .Data [_cedf +3]=byte (_abcg &0xff);return nil ;};func (_bfd *ImageBase )setEightBytes (_cggg int ,_dedb uint64 )error {_bbcde :=_bfd .BytesPerLine -(_cggg %_bfd .BytesPerLine ); -if _bfd .BytesPerLine !=_bfd .Width >>3{_bbcde --;};if _bbcde >=8{return _bfd .setEightFullBytes (_cggg ,_dedb );};return _bfd .setEightPartlyBytes (_cggg ,_bbcde ,_dedb );};var _ _dc .Image =&NRGBA32 {};func _cgcg (_aea _dc .Image )(Image ,error ){if _fbgb ,_fbgbd :=_aea .(*NRGBA16 ); -_fbgbd {return _fbgb .Copy (),nil ;};_agba :=_aea .Bounds ();_fdfg ,_ccfd :=NewImage (_agba .Max .X ,_agba .Max .Y ,4,3,nil ,nil ,nil );if _ccfd !=nil {return nil ,_ccfd ;};_dcgf (_aea ,_fdfg ,_agba );return _fdfg ,nil ;};var _egge [256]uint8 ;func (_ggeec *Gray2 )SetGray (x ,y int ,gray _de .Gray ){_fffc :=_gbb (gray ); -_cfdf :=y *_ggeec .BytesPerLine ;_beca :=_cfdf +(x >>2);if _beca >=len (_ggeec .Data ){return ;};_cfadbf :=_fffc .Y >>6;_ggeec .Data [_beca ]=(_ggeec .Data [_beca ]&(^(0xc0>>uint (2*((x )&3)))))|(_cfadbf <>uint (_fgb &7))};func _cce (_bbcb ,_gac CMYK ,_gge _dc .Rectangle ){for _gfe :=0; -_gfe < _gge .Max .X ;_gfe ++{for _ebed :=0;_ebed < _gge .Max .Y ;_ebed ++{_gac .SetCMYK (_gfe ,_ebed ,_bbcb .CMYKAt (_gfe ,_ebed ));};};};func (_gggd *Gray4 )At (x ,y int )_de .Color {_gece ,_ :=_gggd .ColorAt (x ,y );return _gece };type nrgba64 interface{NRGBA64At (_bdgga ,_ffbca int )_de .NRGBA64 ; -SetNRGBA64 (_aaga ,_cfbcb int ,_ggedd _de .NRGBA64 );};func (_ecce *ImageBase )copy ()ImageBase {_ccb :=*_ecce ;_ccb .Data =make ([]byte ,len (_ecce .Data ));copy (_ccb .Data ,_ecce .Data );return _ccb ;};func _dacg (_abae _de .Gray )_de .CMYK {return _de .CMYK {K :0xff-_abae .Y }}; -var _ Image =&Gray8 {};var _ Image =&RGBA32 {};func (_ebaa *CMYK32 )At (x ,y int )_de .Color {_gfac ,_ :=_ebaa .ColorAt (x ,y );return _gfac };func _cgcea (_eceb Gray ,_fcea RGBA ,_cbaeg _dc .Rectangle ){for _edbb :=0;_edbb < _cbaeg .Max .X ;_edbb ++{for _afeg :=0; -_afeg < _cbaeg .Max .Y ;_afeg ++{_fgga :=_eceb .GrayAt (_edbb ,_afeg );_fcea .SetRGBA (_edbb ,_afeg ,_cded (_fgga ));};};};func (_fgac *Gray8 )SetGray (x ,y int ,g _de .Gray ){_fac :=y *_fgac .BytesPerLine +x ;if _fac > len (_fgac .Data )-1{return ;};_fgac .Data [_fac ]=g .Y ; -};func BytesPerLine (width ,bitsPerComponent ,colorComponents int )int {return ((width *bitsPerComponent )*colorComponents +7)>>3;};func _bbga (_fabgg _de .CMYK )_de .NRGBA {_cafg ,_cdfb ,_gfg :=_de .CMYKToRGB (_fabgg .C ,_fabgg .M ,_fabgg .Y ,_fabgg .K ); -return _de .NRGBA {R :_cafg ,G :_cdfb ,B :_gfg ,A :0xff};};func (_efa *Gray2 )At (x ,y int )_de .Color {_dad ,_ :=_efa .ColorAt (x ,y );return _dad };func (_cfbc *Gray16 )Histogram ()(_bgea [256]int ){for _fgcf :=0;_fgcf < _cfbc .Width ;_fgcf ++{for _eceg :=0; -_eceg < _cfbc .Height ;_eceg ++{_bgea [_cfbc .GrayAt (_fgcf ,_eceg ).Y ]++;};};return _bgea ;};type monochromeThresholdConverter struct{Threshold uint8 ;};func _cbca (_ebde *Monochrome ,_gecb ,_cfdac ,_faab ,_fdag int ,_effa RasterOperator ,_cbbc *Monochrome ,_edgd ,_fdcg int )error {var (_ebdd byte ; -_fddd int ;_ffca int ;_gegcd ,_gcgad int ;_ebad ,_dafc int ;);_fgffe :=_faab >>3;_ada :=_faab &7;if _ada > 0{_ebdd =_bffa [_ada ];};_fddd =_cbbc .BytesPerLine *_fdcg +(_edgd >>3);_ffca =_ebde .BytesPerLine *_cfdac +(_gecb >>3);switch _effa {case PixSrc :for _ebad =0; -_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=_cbbc .Data [_gegcd ];_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],_cbbc .Data [_gegcd ],_ebdd ); -};};case PixNotSrc :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=^(_cbbc .Data [_gegcd ]);_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],^_cbbc .Data [_gegcd ],_ebdd ); -};};case PixSrcOrDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]|=_cbbc .Data [_gegcd ];_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],_cbbc .Data [_gegcd ]|_ebde .Data [_gcgad ],_ebdd ); -};};case PixSrcAndDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]&=_cbbc .Data [_gegcd ];_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],_cbbc .Data [_gegcd ]&_ebde .Data [_gcgad ],_ebdd ); -};};case PixSrcXorDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]^=_cbbc .Data [_gegcd ];_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],_cbbc .Data [_gegcd ]^_ebde .Data [_gcgad ],_ebdd ); -};};case PixNotSrcOrDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]|=^(_cbbc .Data [_gegcd ]);_gcgad ++;_gegcd ++; -};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],^(_cbbc .Data [_gegcd ])|_ebde .Data [_gcgad ],_ebdd );};};case PixNotSrcAndDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ; -for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]&=^(_cbbc .Data [_gegcd ]);_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],^(_cbbc .Data [_gegcd ])&_ebde .Data [_gcgad ],_ebdd );};};case PixSrcOrNotDst :for _ebad =0; -_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=_cbbc .Data [_gegcd ]|^(_ebde .Data [_gcgad ]);_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],_cbbc .Data [_gegcd ]|^(_ebde .Data [_gcgad ]),_ebdd ); -};};case PixSrcAndNotDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=_cbbc .Data [_gegcd ]&^(_ebde .Data [_gcgad ]); -_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],_cbbc .Data [_gegcd ]&^(_ebde .Data [_gcgad ]),_ebdd );};};case PixNotPixSrcOrDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ; -for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=^(_cbbc .Data [_gegcd ]|_ebde .Data [_gcgad ]);_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],^(_cbbc .Data [_gegcd ]|_ebde .Data [_gcgad ]),_ebdd );};};case PixNotPixSrcAndDst :for _ebad =0; -_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=^(_cbbc .Data [_gegcd ]&_ebde .Data [_gcgad ]);_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],^(_cbbc .Data [_gegcd ]&_ebde .Data [_gcgad ]),_ebdd ); -};};case PixNotPixSrcXorDst :for _ebad =0;_ebad < _fdag ;_ebad ++{_gegcd =_fddd +_ebad *_cbbc .BytesPerLine ;_gcgad =_ffca +_ebad *_ebde .BytesPerLine ;for _dafc =0;_dafc < _fgffe ;_dafc ++{_ebde .Data [_gcgad ]=^(_cbbc .Data [_gegcd ]^_ebde .Data [_gcgad ]); -_gcgad ++;_gegcd ++;};if _ada > 0{_ebde .Data [_gcgad ]=_gafc (_ebde .Data [_gcgad ],^(_cbbc .Data [_gegcd ]^_ebde .Data [_gcgad ]),_ebdd );};};default:_c .Log .Debug ("\u0050\u0072ov\u0069\u0064\u0065d\u0020\u0069\u006e\u0076ali\u0064 r\u0061\u0073\u0074\u0065\u0072\u0020\u006fpe\u0072\u0061\u0074\u006f\u0072\u003a\u0020%\u0076",_effa ); -return _d .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072");};return nil ;};func (_fdac *Gray16 )At (x ,y int )_de .Color {_bfgg ,_ :=_fdac .ColorAt (x ,y );return _bfgg }; -func _fabd ()(_cdcc [256]uint64 ){for _ege :=0;_ege < 256;_ege ++{if _ege &0x01!=0{_cdcc [_ege ]|=0xff;};if _ege &0x02!=0{_cdcc [_ege ]|=0xff00;};if _ege &0x04!=0{_cdcc [_ege ]|=0xff0000;};if _ege &0x08!=0{_cdcc [_ege ]|=0xff000000;};if _ege &0x10!=0{_cdcc [_ege ]|=0xff00000000; -};if _ege &0x20!=0{_cdcc [_ege ]|=0xff0000000000;};if _ege &0x40!=0{_cdcc [_ege ]|=0xff000000000000;};if _ege &0x80!=0{_cdcc [_ege ]|=0xff00000000000000;};};return _cdcc ;};func (_egb *Gray16 )Validate ()error {if len (_egb .Data )!=_egb .Height *_egb .BytesPerLine {return ErrInvalidImage ; -};return nil ;};func AutoThresholdTriangle (histogram [256]int )uint8 {var _adbf ,_cedag ,_cadf ,_aeea int ;for _edga :=0;_edga < len (histogram );_edga ++{if histogram [_edga ]> 0{_adbf =_edga ;break ;};};if _adbf > 0{_adbf --;};for _cedbf :=255;_cedbf > 0; -_cedbf --{if histogram [_cedbf ]> 0{_aeea =_cedbf ;break ;};};if _aeea < 255{_aeea ++;};for _caed :=0;_caed < 256;_caed ++{if histogram [_caed ]> _cedag {_cadf =_caed ;_cedag =histogram [_caed ];};};var _agce bool ;if (_cadf -_adbf )< (_aeea -_cadf ){_agce =true ; -var _agbad int ;_ffce :=255;for _agbad < _ffce {_eadca :=histogram [_agbad ];histogram [_agbad ]=histogram [_ffce ];histogram [_ffce ]=_eadca ;_agbad ++;_ffce --;};_adbf =255-_aeea ;_cadf =255-_cadf ;};if _adbf ==_cadf {return uint8 (_adbf );};_ecdg :=float64 (histogram [_cadf ]); -_ggfga :=float64 (_adbf -_cadf );_abbda :=_a .Sqrt (_ecdg *_ecdg +_ggfga *_ggfga );_ecdg /=_abbda ;_ggfga /=_abbda ;_abbda =_ecdg *float64 (_adbf )+_ggfga *float64 (histogram [_adbf ]);_febgd :=_adbf ;var _gegca float64 ;for _ceff :=_adbf +1;_ceff <=_cadf ; -_ceff ++{_babd :=_ecdg *float64 (_ceff )+_ggfga *float64 (histogram [_ceff ])-_abbda ;if _babd > _gegca {_febgd =_ceff ;_gegca =_babd ;};};_febgd --;if _agce {var _fafc int ;_defg :=255;for _fafc < _defg {_cbeg :=histogram [_fafc ];histogram [_fafc ]=histogram [_defg ]; -histogram [_defg ]=_cbeg ;_fafc ++;_defg --;};return uint8 (255-_febgd );};return uint8 (_febgd );};func _bcga (_eag _de .Color )_de .Color {_aac :=_de .GrayModel .Convert (_eag ).(_de .Gray );return _debcg (_aac );};func (_fdcf monochromeModel )Convert (c _de .Color )_de .Color {_bag :=_de .GrayModel .Convert (c ).(_de .Gray ); -return _abb (_bag ,_fdcf );};func (_ebgg *ImageBase )MakeAlpha (){_ebgg .newAlpha ()};func _gafc (_afdg ,_ccaa ,_gdfeb byte )byte {return (_afdg &^(_gdfeb ))|(_ccaa &_gdfeb )};func (_dca *CMYK32 )Set (x ,y int ,c _de .Color ){_faef :=4*(y *_dca .Width +x ); -if _faef +3>=len (_dca .Data ){return ;};_fggf :=_de .CMYKModel .Convert (c ).(_de .CMYK );_dca .Data [_faef ]=_fggf .C ;_dca .Data [_faef +1]=_fggf .M ;_dca .Data [_faef +2]=_fggf .Y ;_dca .Data [_faef +3]=_fggf .K ;};func _cfde (_ddebf _dc .Image ,_afac Image ,_dddg _dc .Rectangle ){switch _dacf :=_ddebf .(type ){case Gray :_dbgbg (_dacf ,_afac .(Gray ),_dddg ); -case NRGBA :_ddfa (_dacf ,_afac .(Gray ),_dddg );case CMYK :_gdee (_dacf ,_afac .(Gray ),_dddg );case RGBA :_cca (_dacf ,_afac .(Gray ),_dddg );default:_cdf (_ddebf ,_afac ,_dddg );};};func (_bece *Monochrome )Set (x ,y int ,c _de .Color ){_gbgf :=y *_bece .BytesPerLine +x >>3; -if _gbgf > len (_bece .Data )-1{return ;};_cfeb :=_bece .ColorModel ().Convert (c ).(_de .Gray );_bece .setGray (x ,_cfeb ,_gbgf );};func (_cgc *Monochrome )ColorAt (x ,y int )(_de .Color ,error ){return ColorAtGray1BPC (x ,y ,_cgc .BytesPerLine ,_cgc .Data ,_cgc .Decode ); -};func (_bcgf *Monochrome )ColorModel ()_de .Model {return MonochromeModel (_bcgf .ModelThreshold )};func _ddfa (_cbac NRGBA ,_eacg Gray ,_ecgbf _dc .Rectangle ){for _fgaf :=0;_fgaf < _ecgbf .Max .X ;_fgaf ++{for _ddaee :=0;_ddaee < _ecgbf .Max .Y ;_ddaee ++{_gfgf :=_afg (_cbac .NRGBAAt (_fgaf ,_ddaee )); -_eacg .SetGray (_fgaf ,_ddaee ,_gfgf );};};};func _dgdd (_ggcb Gray ,_ffeg nrgba64 ,_gab _dc .Rectangle ){for _aedg :=0;_aedg < _gab .Max .X ;_aedg ++{for _eaa :=0;_eaa < _gab .Max .Y ;_eaa ++{_cdg :=_cab (_ffeg .NRGBA64At (_aedg ,_eaa ));_ggcb .SetGray (_aedg ,_eaa ,_cdg ); -};};};func (_aegd *RGBA32 )setRGBA (_badf int ,_bdea _de .RGBA ){_eaed :=3*_badf ;_aegd .Data [_eaed ]=_bdea .R ;_aegd .Data [_eaed +1]=_bdea .G ;_aegd .Data [_eaed +2]=_bdea .B ;if _badf < len (_aegd .Alpha ){_aegd .Alpha [_badf ]=_bdea .A ;};};func _effb (_daad *_dc .Gray16 ,_aega uint8 )*_dc .Gray {_dfbe :=_daad .Bounds (); -_dfaf :=_dc .NewGray (_dfbe );for _ddcd :=0;_ddcd < _dfbe .Dx ();_ddcd ++{for _efaf :=0;_efaf < _dfbe .Dy ();_efaf ++{_ecdgg :=_daad .Gray16At (_ddcd ,_efaf );_dfaf .SetGray (_ddcd ,_efaf ,_de .Gray {Y :_ggaf (uint8 (_ecdgg .Y /256),_aega )});};};return _dfaf ; -};func ColorAtNRGBA (x ,y ,width ,bytesPerLine ,bitsPerColor int ,data ,alpha []byte ,decode []float64 )(_de .Color ,error ){switch bitsPerColor {case 4:return ColorAtNRGBA16 (x ,y ,width ,bytesPerLine ,data ,alpha ,decode );case 8:return ColorAtNRGBA32 (x ,y ,width ,data ,alpha ,decode ); -case 16:return ColorAtNRGBA64 (x ,y ,width ,data ,alpha ,decode );default:return nil ,_dcg .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064 \u0072\u0067\u0062\u0020b\u0069\u0074\u0073\u0020\u0070\u0065\u0072\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0061\u006d\u006f\u0075\u006e\u0074\u003a\u0020\u0027\u0025\u0064\u0027",bitsPerColor ); -};};func _cbae (_aad _dc .Image ,_fgdb Image ,_cbdfd _dc .Rectangle ){if _gcgd ,_fadbc :=_aad .(SMasker );_fadbc &&_gcgd .HasAlpha (){_fgdb .(SMasker ).MakeAlpha ();};switch _cccce :=_aad .(type ){case Gray :_cgcea (_cccce ,_fgdb .(RGBA ),_cbdfd );case NRGBA :_ggfgd (_cccce ,_fgdb .(RGBA ),_cbdfd ); -case *_dc .NYCbCrA :_cegf (_cccce ,_fgdb .(RGBA ),_cbdfd );case CMYK :_gdcda (_cccce ,_fgdb .(RGBA ),_cbdfd );case RGBA :_gdac (_cccce ,_fgdb .(RGBA ),_cbdfd );case nrgba64 :_fbec (_cccce ,_fgdb .(RGBA ),_cbdfd );default:_cdf (_aad ,_fgdb ,_cbdfd );};}; -func (_ebbgd *RGBA32 )SetRGBA (x ,y int ,c _de .RGBA ){_fgafg :=y *_ebbgd .Width +x ;_cgab :=3*_fgafg ;if _cgab +2>=len (_ebbgd .Data ){return ;};_ebbgd .setRGBA (_fgafg ,c );};func _baca (_ggca CMYK ,_efge NRGBA ,_aege _dc .Rectangle ){for _cdcb :=0;_cdcb < _aege .Max .X ; -_cdcb ++{for _fbfcd :=0;_fbfcd < _aege .Max .Y ;_fbfcd ++{_ccac :=_ggca .CMYKAt (_cdcb ,_fbfcd );_efge .SetNRGBA (_cdcb ,_fbfcd ,_bbga (_ccac ));};};};func _bgdfa (_affg _dc .Image )(Image ,error ){if _fcab ,_fbegc :=_affg .(*NRGBA32 );_fbegc {return _fcab .Copy (),nil ; -};_gbcd ,_bgfa ,_debf :=_egafg (_affg ,1);_bdace ,_cdeb :=NewImage (_gbcd .Max .X ,_gbcd .Max .Y ,8,3,nil ,_debf ,nil );if _cdeb !=nil {return nil ,_cdeb ;};_dcgf (_affg ,_bdace ,_gbcd );if len (_debf )!=0&&!_bgfa {if _dfgg :=_ebadd (_debf ,_bdace );_dfgg !=nil {return nil ,_dfgg ; -};};return _bdace ,nil ;};var _ Image =&NRGBA16 {};func ImgToGray (i _dc .Image )*_dc .Gray {if _fag ,_fdca :=i .(*_dc .Gray );_fdca {return _fag ;};_cgeg :=i .Bounds ();_gfdec :=_dc .NewGray (_cgeg );for _gfcdf :=0;_gfcdf < _cgeg .Max .X ;_gfcdf ++{for _dddga :=0; -_dddga < _cgeg .Max .Y ;_dddga ++{_gdad :=i .At (_gfcdf ,_dddga );_gfdec .Set (_gfcdf ,_dddga ,_gdad );};};return _gfdec ;};func (_dcgc *Gray16 )ColorModel ()_de .Model {return _de .Gray16Model };func _fee (_ddbc ,_ffd *Monochrome ,_bde []byte ,_cac int )(_faf error ){var (_bed ,_aba ,_ebb ,_feb ,_ece ,_bfed ,_ea ,_ef int ; -_dfd ,_ffg uint32 ;_ce ,_ecgf byte ;_cfb uint16 ;);_dba :=make ([]byte ,4);_feee :=make ([]byte ,4);for _ebb =0;_ebb < _ddbc .Height -1;_ebb ,_feb =_ebb +2,_feb +1{_bed =_ebb *_ddbc .BytesPerLine ;_aba =_feb *_ffd .BytesPerLine ;for _ece ,_bfed =0,0;_ece < _cac ; -_ece ,_bfed =_ece +4,_bfed +1{for _ea =0;_ea < 4;_ea ++{_ef =_bed +_ece +_ea ;if _ef <=len (_ddbc .Data )-1&&_ef < _bed +_ddbc .BytesPerLine {_dba [_ea ]=_ddbc .Data [_ef ];}else {_dba [_ea ]=0x00;};_ef =_bed +_ddbc .BytesPerLine +_ece +_ea ;if _ef <=len (_ddbc .Data )-1&&_ef < _bed +(2*_ddbc .BytesPerLine ){_feee [_ea ]=_ddbc .Data [_ef ]; -}else {_feee [_ea ]=0x00;};};_dfd =_ab .BigEndian .Uint32 (_dba );_ffg =_ab .BigEndian .Uint32 (_feee );_ffg |=_dfd ;_ffg |=_ffg <<1;_ffg &=0xaaaaaaaa;_dfd =_ffg |(_ffg <<7);_ce =byte (_dfd >>24);_ecgf =byte ((_dfd >>8)&0xff);_ef =_aba +_bfed ;if _ef +1==len (_ffd .Data )-1||_ef +1>=_aba +_ffd .BytesPerLine {_ffd .Data [_ef ]=_bde [_ce ]; -}else {_cfb =(uint16 (_bde [_ce ])<<8)|uint16 (_bde [_ecgf ]);if _faf =_ffd .setTwoBytes (_ef ,_cfb );_faf !=nil {return _dcg .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_ef ); -};_bfed ++;};};};return nil ;};func (_bgdf *Monochrome )Base ()*ImageBase {return &_bgdf .ImageBase };func _dbef (_ebd _de .CMYK )_de .RGBA {_bcbg ,_fbc ,_gfce :=_de .CMYKToRGB (_ebd .C ,_ebd .M ,_ebd .Y ,_ebd .K );return _de .RGBA {R :_bcbg ,G :_fbc ,B :_gfce ,A :0xff}; -};func _fcbe (_dacgd _de .Color )_de .Color {_agafa :=_de .NRGBAModel .Convert (_dacgd ).(_de .NRGBA );return _eecb (_agafa );};func (_ceb *Gray8 )GrayAt (x ,y int )_de .Gray {_dadc ,_ :=ColorAtGray8BPC (x ,y ,_ceb .BytesPerLine ,_ceb .Data ,_ceb .Decode ); -return _dadc ;};func (_bbgb *NRGBA64 )At (x ,y int )_de .Color {_acdc ,_ :=_bbgb .ColorAt (x ,y );return _acdc };func _cegf (_abf *_dc .NYCbCrA ,_bedg RGBA ,_dfcf _dc .Rectangle ){for _dcga :=0;_dcga < _dfcf .Max .X ;_dcga ++{for _cdge :=0;_cdge < _dfcf .Max .Y ; -_cdge ++{_fdfbb :=_abf .NYCbCrAAt (_dcga ,_cdge );_bedg .SetRGBA (_dcga ,_cdge ,_gdb (_fdfbb ));};};};func _aec (_gdf _de .RGBA )_de .CMYK {_ebg ,_geaa ,_fdf ,_afba :=_de .RGBToCMYK (_gdf .R ,_gdf .G ,_gdf .B );return _de .CMYK {C :_ebg ,M :_geaa ,Y :_fdf ,K :_afba }; -};type NRGBA64 struct{ImageBase };type SMasker interface{HasAlpha ()bool ;GetAlpha ()[]byte ;MakeAlpha ();}; \ No newline at end of file +default:return nil ,_db .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0067\u0072\u0061\u0079\u0020\u0073c\u0061\u006c\u0065\u0020\u0062\u0069\u0074s\u0020\u0070\u0065\u0072\u0020\u0063\u006f\u006c\u006f\u0072\u0020a\u006d\u006f\u0075\u006e\u0074\u003a\u0020\u0027\u0025\u0064\u0027",bitsPerColor ); +};};func (_ccce *NRGBA16 )ColorModel ()_d .Model {return NRGBA16Model };type CMYK32 struct{ImageBase };func (_fcga *RGBA32 )At (x ,y int )_d .Color {_aaba ,_ :=_fcga .ColorAt (x ,y );return _aaba };var _ _ee .Image =&RGBA32 {};func ColorAtGray1BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_d .Gray ,error ){_aca :=y *bytesPerLine +x >>3; +if _aca >=len (data ){return _d .Gray {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_feb :=data [_aca ]>>uint (7-(x &7))&1;if len (decode )==2{_feb =uint8 (LinearInterpolate (float64 (_feb ),0.0,1.0,decode [0],decode [1]))&1;};return _d .Gray {Y :_feb *255},nil ;};func (_gcba *NRGBA64 )Copy ()Image {return &NRGBA64 {ImageBase :_gcba .copy ()}}; +func _ccd (_fg ,_ae *Monochrome )(_fbf error ){_ba :=_ae .BytesPerLine ;_edc :=_fg .BytesPerLine ;var (_dd byte ;_gf uint16 ;_ge ,_ace ,_ga ,_ea ,_aa int ;);for _ga =0;_ga < _ae .Height ;_ga ++{_ge =_ga *_ba ;_ace =2*_ga *_edc ;for _ea =0;_ea < _ba ;_ea ++{_dd =_ae .Data [_ge +_ea ]; +_gf =_cfb [_dd ];_aa =_ace +_ea *2;if _fg .BytesPerLine !=_ae .BytesPerLine *2&&(_ea +1)*2> _fg .BytesPerLine {_fbf =_fg .setByte (_aa ,byte (_gf >>8));}else {_fbf =_fg .setTwoBytes (_aa ,_gf );};if _fbf !=nil {return _fbf ;};};for _ea =0;_ea < _edc ;_ea ++{_aa =_ace +_edc +_ea ; +_dd =_fg .Data [_ace +_ea ];if _fbf =_fg .setByte (_aa ,_dd );_fbf !=nil {return _fbf ;};};};return nil ;};func _ggdf (_fbbb ,_bagfg ,_dgge byte )byte {return (_fbbb &^(_dgge ))|(_bagfg &_dgge )};func ColorAtNRGBA32 (x ,y ,width int ,data ,alpha []byte ,decode []float64 )(_d .NRGBA ,error ){_ebce :=y *width +x ; +_bdefe :=3*_ebce ;if _bdefe +2>=len (data ){return _d .NRGBA {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_fadc :=uint8 (0xff);if alpha !=nil &&len (alpha )> _ebce {_fadc =alpha [_ebce ];};_aafg ,_eabf ,_ggaad :=data [_bdefe ],data [_bdefe +1],data [_bdefe +2];if len (decode )==6{_aafg =uint8 (uint32 (LinearInterpolate (float64 (_aafg ),0,255,decode [0],decode [1]))&0xff); +_eabf =uint8 (uint32 (LinearInterpolate (float64 (_eabf ),0,255,decode [2],decode [3]))&0xff);_ggaad =uint8 (uint32 (LinearInterpolate (float64 (_ggaad ),0,255,decode [4],decode [5]))&0xff);};return _d .NRGBA {R :_aafg ,G :_eabf ,B :_ggaad ,A :_fadc },nil ; +};var _ _ee .Image =&NRGBA32 {};func (_bbgcf *NRGBA64 )Base ()*ImageBase {return &_bbgcf .ImageBase };func _gbgd (_cbae _ee .Image ,_bfae Image ,_cbe _ee .Rectangle ){switch _aad :=_cbae .(type ){case Gray :_babb (_aad ,_bfae .(Gray ),_cbe );case NRGBA :_ddcc (_aad ,_bfae .(Gray ),_cbe ); +case CMYK :_edgec (_aad ,_bfae .(Gray ),_cbe );case RGBA :_gccd (_aad ,_bfae .(Gray ),_cbe );default:_fega (_cbae ,_bfae ,_cbe );};};func _fgbcb (_abfe *_ee .NYCbCrA ,_beee NRGBA ,_bdc _ee .Rectangle ){for _fagg :=0;_fagg < _bdc .Max .X ;_fagg ++{for _fcef :=0; +_fcef < _bdc .Max .Y ;_fcef ++{_dgca :=_abfe .NYCbCrAAt (_fagg ,_fcef );_beee .SetNRGBA (_fagg ,_fcef ,_egee (_dgca ));};};};func _fdf (_bee Gray ,_ggef CMYK ,_fef _ee .Rectangle ){for _beca :=0;_beca < _fef .Max .X ;_beca ++{for _effe :=0;_effe < _fef .Max .Y ; +_effe ++{_edeaa :=_bee .GrayAt (_beca ,_effe );_ggef .SetCMYK (_beca ,_effe ,_aafb (_edeaa ));};};};var _ Gray =&Monochrome {};func (_aedf *RGBA32 )setRGBA (_faggg int ,_aabd _d .RGBA ){_gdaa :=3*_faggg ;_aedf .Data [_gdaa ]=_aabd .R ;_aedf .Data [_gdaa +1]=_aabd .G ; +_aedf .Data [_gdaa +2]=_aabd .B ;if _faggg < len (_aedf .Alpha ){_aedf .Alpha [_faggg ]=_aabd .A ;};};func (_gccb *Gray16 )Set (x ,y int ,c _d .Color ){_gdbe :=(y *_gccb .BytesPerLine /2+x )*2;if _gdbe +1>=len (_gccb .Data ){return ;};_egbd :=_d .Gray16Model .Convert (c ).(_d .Gray16 ); +_gccb .Data [_gdbe ],_gccb .Data [_gdbe +1]=uint8 (_egbd .Y >>8),uint8 (_egbd .Y &0xff);};func (_egea *Gray8 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtGray8BPC (x ,y ,_egea .BytesPerLine ,_egea .Data ,_egea .Decode );};func (_dcae *Monochrome )clearBit (_dcb ,_fbgd int ){_dcae .Data [_dcb ]&=^(0x80>>uint (_fbgd &7))}; +func (_cgdaa *NRGBA16 )Base ()*ImageBase {return &_cgdaa .ImageBase };func (_gcda *Gray2 )Base ()*ImageBase {return &_gcda .ImageBase };func ImgToBinary (i _ee .Image ,threshold uint8 )*_ee .Gray {switch _dccc :=i .(type ){case *_ee .Gray :if _ggaec (_dccc ){return _dccc ; +};return _ccaf (_dccc ,threshold );case *_ee .Gray16 :return _gegf (_dccc ,threshold );default:return _beddc (_dccc ,threshold );};};func _gafe (_agdf *Monochrome ,_gfag ,_eccf ,_febf ,_fcac int ,_fee RasterOperator ,_fgcc *Monochrome ,_baeb ,_agceg int )error {var (_aeaa byte ; +_bbaeb int ;_gbfg int ;_ecbg ,_eeaa int ;_fbfd ,_bcbg int ;);_ecfc :=_febf >>3;_dgd :=_febf &7;if _dgd > 0{_aeaa =_gbdbe [_dgd ];};_bbaeb =_fgcc .BytesPerLine *_agceg +(_baeb >>3);_gbfg =_agdf .BytesPerLine *_eccf +(_gfag >>3);switch _fee {case PixSrc :for _fbfd =0; +_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=_fgcc .Data [_ecbg ];_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],_fgcc .Data [_ecbg ],_aeaa ); +};};case PixNotSrc :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=^(_fgcc .Data [_ecbg ]);_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],^_fgcc .Data [_ecbg ],_aeaa ); +};};case PixSrcOrDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]|=_fgcc .Data [_ecbg ];_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],_fgcc .Data [_ecbg ]|_agdf .Data [_eeaa ],_aeaa ); +};};case PixSrcAndDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]&=_fgcc .Data [_ecbg ];_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],_fgcc .Data [_ecbg ]&_agdf .Data [_eeaa ],_aeaa ); +};};case PixSrcXorDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]^=_fgcc .Data [_ecbg ];_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],_fgcc .Data [_ecbg ]^_agdf .Data [_eeaa ],_aeaa ); +};};case PixNotSrcOrDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]|=^(_fgcc .Data [_ecbg ]);_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],^(_fgcc .Data [_ecbg ])|_agdf .Data [_eeaa ],_aeaa ); +};};case PixNotSrcAndDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]&=^(_fgcc .Data [_ecbg ]);_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],^(_fgcc .Data [_ecbg ])&_agdf .Data [_eeaa ],_aeaa ); +};};case PixSrcOrNotDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=_fgcc .Data [_ecbg ]|^(_agdf .Data [_eeaa ]);_eeaa ++; +_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],_fgcc .Data [_ecbg ]|^(_agdf .Data [_eeaa ]),_aeaa );};};case PixSrcAndNotDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ; +for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=_fgcc .Data [_ecbg ]&^(_agdf .Data [_eeaa ]);_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],_fgcc .Data [_ecbg ]&^(_agdf .Data [_eeaa ]),_aeaa );};};case PixNotPixSrcOrDst :for _fbfd =0; +_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=^(_fgcc .Data [_ecbg ]|_agdf .Data [_eeaa ]);_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],^(_fgcc .Data [_ecbg ]|_agdf .Data [_eeaa ]),_aeaa ); +};};case PixNotPixSrcAndDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ;for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=^(_fgcc .Data [_ecbg ]&_agdf .Data [_eeaa ]); +_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],^(_fgcc .Data [_ecbg ]&_agdf .Data [_eeaa ]),_aeaa );};};case PixNotPixSrcXorDst :for _fbfd =0;_fbfd < _fcac ;_fbfd ++{_ecbg =_bbaeb +_fbfd *_fgcc .BytesPerLine ;_eeaa =_gbfg +_fbfd *_agdf .BytesPerLine ; +for _bcbg =0;_bcbg < _ecfc ;_bcbg ++{_agdf .Data [_eeaa ]=^(_fgcc .Data [_ecbg ]^_agdf .Data [_eeaa ]);_eeaa ++;_ecbg ++;};if _dgd > 0{_agdf .Data [_eeaa ]=_ggdf (_agdf .Data [_eeaa ],^(_fgcc .Data [_ecbg ]^_agdf .Data [_eeaa ]),_aeaa );};};default:_a .Log .Debug ("\u0050\u0072ov\u0069\u0064\u0065d\u0020\u0069\u006e\u0076ali\u0064 r\u0061\u0073\u0074\u0065\u0072\u0020\u006fpe\u0072\u0061\u0074\u006f\u0072\u003a\u0020%\u0076",_fee ); +return _e .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072");};return nil ;};func (_bcee *Gray8 )Set (x ,y int ,c _d .Color ){_ecbe :=y *_bcee .BytesPerLine +x ;if _ecbe > len (_bcee .Data )-1{return ; +};_afda :=_d .GrayModel .Convert (c );_bcee .Data [_ecbe ]=_afda .(_d .Gray ).Y ;};func InDelta (expected ,current ,delta float64 )bool {_dggbe :=expected -current ;if _dggbe <=-delta ||_dggbe >=delta {return false ;};return true ;};func _ccaf (_gdcd *_ee .Gray ,_bbefd uint8 )*_ee .Gray {_gccg :=_gdcd .Bounds (); +_ecce :=_ee .NewGray (_gccg );for _eeca :=0;_eeca < _gccg .Dx ();_eeca ++{for _ecggb :=0;_ecggb < _gccg .Dy ();_ecggb ++{_adeae :=_gdcd .GrayAt (_eeca ,_ecggb );_ecce .SetGray (_eeca ,_ecggb ,_d .Gray {Y :_cdbe (_adeae .Y ,_bbefd )});};};return _ecce ; +};func (_bfe *Gray2 )At (x ,y int )_d .Color {_dfdf ,_ :=_bfe .ColorAt (x ,y );return _dfdf };func _aafb (_fcdde _d .Gray )_d .CMYK {return _d .CMYK {K :0xff-_fcdde .Y }};func _gc (_acg *Monochrome ,_fea ,_eff int )(*Monochrome ,error ){if _acg ==nil {return nil ,_e .New ("\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +};if _fea <=0||_eff <=0{return nil ,_e .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0063\u0061l\u0065\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020<\u003d\u0020\u0030");};if _fea ==_eff {if _fea ==1{return _acg .copy (),nil ;}; +if _fea ==2||_fea ==4||_fea ==8{_cdgc ,_bf :=_b (_acg ,_fea );if _bf !=nil {return nil ,_bf ;};return _cdgc ,nil ;};};_bbag :=_fea *_acg .Width ;_edb :=_eff *_acg .Height ;_bdg :=_bed (_bbag ,_edb );_af :=_bdg .BytesPerLine ;var (_gdf ,_ad ,_dga ,_add ,_ddg int ; +_ccdd byte ;_deb error ;);for _ad =0;_ad < _acg .Height ;_ad ++{_gdf =_eff *_ad *_af ;for _dga =0;_dga < _acg .Width ;_dga ++{if _eee :=_acg .getBitAt (_dga ,_ad );_eee {_ddg =_fea *_dga ;for _add =0;_add < _fea ;_add ++{_bdg .setIndexedBit (_gdf *8+_ddg +_add ); +};};};for _add =1;_add < _eff ;_add ++{_ead :=_gdf +_add *_af ;for _dbd :=0;_dbd < _af ;_dbd ++{if _ccdd ,_deb =_bdg .getByte (_gdf +_dbd );_deb !=nil {return nil ,_deb ;};if _deb =_bdg .setByte (_ead +_dbd ,_ccdd );_deb !=nil {return nil ,_deb ;};};}; +};return _bdg ,nil ;};var (_cfb =_cac ();_acf =_bea ();_bg =_efe (););type NRGBA32 struct{ImageBase };func MonochromeModel (threshold uint8 )_d .Model {return monochromeModel (threshold )};func (_ffa *Gray16 )Histogram ()(_bbce [256]int ){for _dafcd :=0; +_dafcd < _ffa .Width ;_dafcd ++{for _geee :=0;_geee < _ffa .Height ;_geee ++{_bbce [_ffa .GrayAt (_dafcd ,_geee ).Y ]++;};};return _bbce ;};func _aced (_fafcb _d .RGBA )_d .Gray {_adg :=(19595*uint32 (_fafcb .R )+38470*uint32 (_fafcb .G )+7471*uint32 (_fafcb .B )+1<<7)>>16; +return _d .Gray {Y :uint8 (_adg )};};func (_cfba *Monochrome )SetGray (x ,y int ,g _d .Gray ){_fddg :=y *_cfba .BytesPerLine +x >>3;if _fddg > len (_cfba .Data )-1{return ;};g =_beg (g ,monochromeModel (_cfba .ModelThreshold ));_cfba .setGray (x ,g ,_fddg ); +};func (_dcde *Monochrome )InverseData ()error {return _dcde .RasterOperation (0,0,_dcde .Width ,_dcde .Height ,PixNotDst ,nil ,0,0);};func ConverterFunc (converterFunc func (_ceae _ee .Image )(Image ,error ))ColorConverter {return colorConverter {_dfeb :converterFunc }; +};func _cge (_gdb ,_ffc *Monochrome ,_cea []byte ,_gad int )(_cacf error ){var (_cged ,_abg ,_cacg ,_ede ,_addc ,_acfb ,_agcc ,_cde int ;_bde ,_fgc uint32 ;_gbc ,_bdeg byte ;_fca uint16 ;);_cacfd :=make ([]byte ,4);_cagc :=make ([]byte ,4);for _cacg =0; +_cacg < _gdb .Height -1;_cacg ,_ede =_cacg +2,_ede +1{_cged =_cacg *_gdb .BytesPerLine ;_abg =_ede *_ffc .BytesPerLine ;for _addc ,_acfb =0,0;_addc < _gad ;_addc ,_acfb =_addc +4,_acfb +1{for _agcc =0;_agcc < 4;_agcc ++{_cde =_cged +_addc +_agcc ;if _cde <=len (_gdb .Data )-1&&_cde < _cged +_gdb .BytesPerLine {_cacfd [_agcc ]=_gdb .Data [_cde ]; +}else {_cacfd [_agcc ]=0x00;};_cde =_cged +_gdb .BytesPerLine +_addc +_agcc ;if _cde <=len (_gdb .Data )-1&&_cde < _cged +(2*_gdb .BytesPerLine ){_cagc [_agcc ]=_gdb .Data [_cde ];}else {_cagc [_agcc ]=0x00;};};_bde =_f .BigEndian .Uint32 (_cacfd );_fgc =_f .BigEndian .Uint32 (_cagc ); +_fgc |=_bde ;_fgc |=_fgc <<1;_fgc &=0xaaaaaaaa;_bde =_fgc |(_fgc <<7);_gbc =byte (_bde >>24);_bdeg =byte ((_bde >>8)&0xff);_cde =_abg +_acfb ;if _cde +1==len (_ffc .Data )-1||_cde +1>=_abg +_ffc .BytesPerLine {_ffc .Data [_cde ]=_cea [_gbc ];}else {_fca =(uint16 (_cea [_gbc ])<<8)|uint16 (_cea [_bdeg ]); +if _cacf =_ffc .setTwoBytes (_cde ,_fca );_cacf !=nil {return _db .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_cde ); +};_acfb ++;};};};return nil ;};func _beg (_dgfd _d .Gray ,_fdeb monochromeModel )_d .Gray {if _dgfd .Y > uint8 (_fdeb ){return _d .Gray {Y :_g .MaxUint8 };};return _d .Gray {};};func (_edef *RGBA32 )Copy ()Image {return &RGBA32 {ImageBase :_edef .copy ()}}; +func (_bceg *CMYK32 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_bceg .Width ,Y :_bceg .Height }};};func (_gfdc *NRGBA64 )ColorModel ()_d .Model {return _d .NRGBA64Model };func (_fbecd *NRGBA64 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_fbecd .Width ,Y :_fbecd .Height }}; +};const (PixSrc RasterOperator =0xc;PixDst RasterOperator =0xa;PixNotSrc RasterOperator =0x3;PixNotDst RasterOperator =0x5;PixClr RasterOperator =0x0;PixSet RasterOperator =0xf;PixSrcOrDst RasterOperator =0xe;PixSrcAndDst RasterOperator =0x8;PixSrcXorDst RasterOperator =0x6; +PixNotSrcOrDst RasterOperator =0xb;PixNotSrcAndDst RasterOperator =0x2;PixSrcOrNotDst RasterOperator =0xd;PixSrcAndNotDst RasterOperator =0x4;PixNotPixSrcOrDst RasterOperator =0x1;PixNotPixSrcAndDst RasterOperator =0x7;PixNotPixSrcXorDst RasterOperator =0x9; +PixPaint =PixSrcOrDst ;PixSubtract =PixNotSrcAndDst ;PixMask =PixSrcAndDst ;);type RasterOperator int ;func (_ffab *ImageBase )setTwoBytes (_facd int ,_gbfc uint16 )error {if _facd +1> len (_ffab .Data )-1{return _e .New ("\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};_ffab .Data [_facd ]=byte ((_gbfc &0xff00)>>8);_ffab .Data [_facd +1]=byte (_gbfc &0xff);return nil ;};func ColorAtNRGBA16 (x ,y ,width ,bytesPerLine int ,data ,alpha []byte ,decode []float64 )(_d .NRGBA ,error ){_beed :=y *bytesPerLine +x *3/2;if _beed +1>=len (data ){return _d .NRGBA {},_eeac (x ,y ); +};const (_ecae =0xf;_eegg =uint8 (0xff););_baag :=_eegg ;if alpha !=nil {_baebb :=y *BytesPerLine (width ,4,1);if _baebb < len (alpha ){if x %2==0{_baag =(alpha [_baebb ]>>uint (4))&_ecae ;}else {_baag =alpha [_baebb ]&_ecae ;};_baag |=_baag <<4;};};var _ddcca ,_ecdb ,_abc uint8 ; +if x *3%2==0{_ddcca =(data [_beed ]>>uint (4))&_ecae ;_ecdb =data [_beed ]&_ecae ;_abc =(data [_beed +1]>>uint (4))&_ecae ;}else {_ddcca =data [_beed ]&_ecae ;_ecdb =(data [_beed +1]>>uint (4))&_ecae ;_abc =data [_beed +1]&_ecae ;};if len (decode )==6{_ddcca =uint8 (uint32 (LinearInterpolate (float64 (_ddcca ),0,15,decode [0],decode [1]))&0xf); +_ecdb =uint8 (uint32 (LinearInterpolate (float64 (_ecdb ),0,15,decode [2],decode [3]))&0xf);_abc =uint8 (uint32 (LinearInterpolate (float64 (_abc ),0,15,decode [4],decode [5]))&0xf);};return _d .NRGBA {R :(_ddcca <<4)|(_ddcca &0xf),G :(_ecdb <<4)|(_ecdb &0xf),B :(_abc <<4)|(_abc &0xf),A :_baag },nil ; +};func _geff (_cgca *Monochrome ,_cgga ,_gdce ,_ceed ,_eagba int ,_cbcc RasterOperator ,_bggf *Monochrome ,_efae ,_ebde int )error {var (_eefc bool ;_aabb bool ;_acddb int ;_fgfcd int ;_geca int ;_fcgf bool ;_egeg byte ;_gbcd int ;_bgcgf int ;_gcfe int ; +_effa ,_fcacf int ;);_ebbb :=8-(_cgga &7);_egef :=_afge [_ebbb ];_dbce :=_cgca .BytesPerLine *_gdce +(_cgga >>3);_faadg :=_bggf .BytesPerLine *_ebde +(_efae >>3);if _ceed < _ebbb {_eefc =true ;_egef &=_gbdbe [8-_ebbb +_ceed ];};if !_eefc {_acddb =(_ceed -_ebbb )>>3; +if _acddb > 0{_aabb =true ;_fgfcd =_dbce +1;_geca =_faadg +1;};};_gbcd =(_cgga +_ceed )&7;if !(_eefc ||_gbcd ==0){_fcgf =true ;_egeg =_gbdbe [_gbcd ];_bgcgf =_dbce +1+_acddb ;_gcfe =_faadg +1+_acddb ;};switch _cbcc {case PixSrc :for _effa =0;_effa < _eagba ; +_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],_bggf .Data [_faadg ],_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=_bggf .Data [_geca +_fcacf ]; +};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],_bggf .Data [_gcfe ],_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ; +};};case PixNotSrc :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],^_bggf .Data [_faadg ],_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0; +_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=^_bggf .Data [_geca +_fcacf ];};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],^_bggf .Data [_gcfe ],_egeg ); +_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixSrcOrDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],_bggf .Data [_faadg ]|_cgca .Data [_dbce ],_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ; +};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]|=_bggf .Data [_geca +_fcacf ];};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ; +_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],_bggf .Data [_gcfe ]|_cgca .Data [_bgcgf ],_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixSrcAndDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],_bggf .Data [_faadg ]&_cgca .Data [_dbce ],_egef ); +_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]&=_bggf .Data [_geca +_fcacf ];};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ; +};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],_bggf .Data [_gcfe ]&_cgca .Data [_bgcgf ],_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixSrcXorDst :for _effa =0;_effa < _eagba ; +_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],_bggf .Data [_faadg ]^_cgca .Data [_dbce ],_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]^=_bggf .Data [_geca +_fcacf ]; +};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],_bggf .Data [_gcfe ]^_cgca .Data [_bgcgf ],_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ; +};};case PixNotSrcOrDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],^(_bggf .Data [_faadg ])|_cgca .Data [_dbce ],_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ; +_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]|=^(_bggf .Data [_geca +_fcacf ]);};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],^(_bggf .Data [_gcfe ])|_cgca .Data [_bgcgf ],_egeg ); +_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixNotSrcAndDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],^(_bggf .Data [_faadg ])&_cgca .Data [_dbce ],_egef );_dbce +=_cgca .BytesPerLine ; +_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]&=^_bggf .Data [_geca +_fcacf ];};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0; +_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],^(_bggf .Data [_gcfe ])&_cgca .Data [_bgcgf ],_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixSrcOrNotDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],_bggf .Data [_faadg ]|^(_cgca .Data [_dbce ]),_egef ); +_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=_bggf .Data [_geca +_fcacf ]|^(_cgca .Data [_fgfcd +_fcacf ]);};_fgfcd +=_cgca .BytesPerLine ; +_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],_bggf .Data [_gcfe ]|^(_cgca .Data [_bgcgf ]),_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixSrcAndNotDst :for _effa =0; +_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],_bggf .Data [_faadg ]&^(_cgca .Data [_dbce ]),_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ; +_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=_bggf .Data [_geca +_fcacf ]&^(_cgca .Data [_fgfcd +_fcacf ]);};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],_bggf .Data [_gcfe ]&^(_cgca .Data [_bgcgf ]),_egeg ); +_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixNotPixSrcOrDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],^(_bggf .Data [_faadg ]|_cgca .Data [_dbce ]),_egef );_dbce +=_cgca .BytesPerLine ; +_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=^(_bggf .Data [_geca +_fcacf ]|_cgca .Data [_fgfcd +_fcacf ]);};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ; +};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],^(_bggf .Data [_gcfe ]|_cgca .Data [_bgcgf ]),_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixNotPixSrcAndDst :for _effa =0; +_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],^(_bggf .Data [_faadg ]&_cgca .Data [_dbce ]),_egef );_dbce +=_cgca .BytesPerLine ;_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ; +_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=^(_bggf .Data [_geca +_fcacf ]&_cgca .Data [_fgfcd +_fcacf ]);};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ;};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],^(_bggf .Data [_gcfe ]&_cgca .Data [_bgcgf ]),_egeg ); +_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};case PixNotPixSrcXorDst :for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_dbce ]=_ggdf (_cgca .Data [_dbce ],^(_bggf .Data [_faadg ]^_cgca .Data [_dbce ]),_egef );_dbce +=_cgca .BytesPerLine ; +_faadg +=_bggf .BytesPerLine ;};if _aabb {for _effa =0;_effa < _eagba ;_effa ++{for _fcacf =0;_fcacf < _acddb ;_fcacf ++{_cgca .Data [_fgfcd +_fcacf ]=^(_bggf .Data [_geca +_fcacf ]^_cgca .Data [_fgfcd +_fcacf ]);};_fgfcd +=_cgca .BytesPerLine ;_geca +=_bggf .BytesPerLine ; +};};if _fcgf {for _effa =0;_effa < _eagba ;_effa ++{_cgca .Data [_bgcgf ]=_ggdf (_cgca .Data [_bgcgf ],^(_bggf .Data [_gcfe ]^_cgca .Data [_bgcgf ]),_egeg );_bgcgf +=_cgca .BytesPerLine ;_gcfe +=_bggf .BytesPerLine ;};};default:_a .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070e\u0072\u0061\u0074o\u0072:\u0020\u0025\u0064",_cbcc ); +return _e .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072");};return nil ;};func _gcca (_dfcf _d .Gray )_d .Gray {_dfcf .Y >>=4;_dfcf .Y |=_dfcf .Y <<4;return _dfcf }; +func (_faff *NRGBA16 )Set (x ,y int ,c _d .Color ){_dagc :=y *_faff .BytesPerLine +x *3/2;if _dagc +1>=len (_faff .Data ){return ;};_ceba :=NRGBA16Model .Convert (c ).(_d .NRGBA );_faff .setNRGBA (x ,y ,_dagc ,_ceba );};func (_dfgdg *Monochrome )ExpandBinary (factor int )(*Monochrome ,error ){if !IsPowerOf2 (uint (factor )){return nil ,_db .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0065\u0078\u0070\u0061\u006e\u0064\u0020b\u0069n\u0061\u0072\u0079\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020\u0025\u0064",factor ); +};return _b (_dfgdg ,factor );};type NRGBA64 struct{ImageBase };type Gray interface{GrayAt (_fcba ,_dbbg int )_d .Gray ;SetGray (_faad ,_gbef int ,_bae _d .Gray );};func _cecc (_daa _ee .Image )(Image ,error ){if _gadf ,_bda :=_daa .(*Gray16 );_bda {return _gadf .Copy (),nil ; +};_gfdd :=_daa .Bounds ();_gfba ,_bbg :=NewImage (_gfdd .Max .X ,_gfdd .Max .Y ,16,1,nil ,nil ,nil );if _bbg !=nil {return nil ,_bbg ;};_gbgd (_daa ,_gfba ,_gfdd );return _gfba ,nil ;};func (_gabb *RGBA32 )ColorModel ()_d .Model {return _d .NRGBAModel }; +func (_cefd *Gray4 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_cefd .Width ,Y :_cefd .Height }};};func (_efc *Monochrome )GrayAt (x ,y int )_d .Gray {_ggae ,_ :=ColorAtGray1BPC (x ,y ,_efc .BytesPerLine ,_efc .Data ,_efc .Decode ); +return _ggae ;};func ColorAtGray4BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_d .Gray ,error ){_bdba :=y *bytesPerLine +x >>1;if _bdba >=len (data ){return _d .Gray {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_cdb :=data [_bdba ]>>uint (4-(x &1)*4)&0xf;if len (decode )==2{_cdb =uint8 (uint32 (LinearInterpolate (float64 (_cdb ),0,15,decode [0],decode [1]))&0xf);};return _d .Gray {Y :_cdb *17&0xff},nil ;};func (_acb *ImageBase )MakeAlpha (){_acb .newAlpha ()}; +var _ RGBA =&RGBA32 {};func _cefb (_bfb *Monochrome ,_gbb ,_fbec int ,_bdegf ,_degg int ,_adea RasterOperator ){var (_edeb int ;_geac byte ;_aeee ,_gafeg int ;_gceb int ;);_adcf :=_bdegf >>3;_dcdg :=_bdegf &7;if _dcdg > 0{_geac =_gbdbe [_dcdg ];};_edeb =_bfb .BytesPerLine *_fbec +(_gbb >>3); +switch _adea {case PixClr :for _aeee =0;_aeee < _degg ;_aeee ++{_gceb =_edeb +_aeee *_bfb .BytesPerLine ;for _gafeg =0;_gafeg < _adcf ;_gafeg ++{_bfb .Data [_gceb ]=0x0;_gceb ++;};if _dcdg > 0{_bfb .Data [_gceb ]=_ggdf (_bfb .Data [_gceb ],0x0,_geac ); +};};case PixSet :for _aeee =0;_aeee < _degg ;_aeee ++{_gceb =_edeb +_aeee *_bfb .BytesPerLine ;for _gafeg =0;_gafeg < _adcf ;_gafeg ++{_bfb .Data [_gceb ]=0xff;_gceb ++;};if _dcdg > 0{_bfb .Data [_gceb ]=_ggdf (_bfb .Data [_gceb ],0xff,_geac );};};case PixNotDst :for _aeee =0; +_aeee < _degg ;_aeee ++{_gceb =_edeb +_aeee *_bfb .BytesPerLine ;for _gafeg =0;_gafeg < _adcf ;_gafeg ++{_bfb .Data [_gceb ]=^_bfb .Data [_gceb ];_gceb ++;};if _dcdg > 0{_bfb .Data [_gceb ]=_ggdf (_bfb .Data [_gceb ],^_bfb .Data [_gceb ],_geac );};};}; +};func _bgf (_caae _d .NYCbCrA )_d .RGBA {_eefg ,_ggee ,_afbda ,_fgb :=_egee (_caae ).RGBA ();return _d .RGBA {R :uint8 (_eefg >>8),G :uint8 (_ggee >>8),B :uint8 (_afbda >>8),A :uint8 (_fgb >>8)};};func (_cagdc *NRGBA16 )setNRGBA (_fbd ,_dfad ,_fdcf int ,_eddb _d .NRGBA ){if _fbd *3%2==0{_cagdc .Data [_fdcf ]=(_eddb .R >>4)<<4|(_eddb .G >>4); +_cagdc .Data [_fdcf +1]=(_eddb .B >>4)<<4|(_cagdc .Data [_fdcf +1]&0xf);}else {_cagdc .Data [_fdcf ]=(_cagdc .Data [_fdcf ]&0xf0)|(_eddb .R >>4);_cagdc .Data [_fdcf +1]=(_eddb .G >>4)<<4|(_eddb .B >>4);};if _cagdc .Alpha !=nil {_geaa :=_dfad *BytesPerLine (_cagdc .Width ,4,1); +if _geaa < len (_cagdc .Alpha ){if _fbd %2==0{_cagdc .Alpha [_geaa ]=(_eddb .A >>uint (4))<>uint (4));};};};};func (_ceee *Monochrome )setGrayBit (_dcfe ,_bef int ){_ceee .Data [_dcfe ]|=0x80>>uint (_bef &7)}; +type shift int ;func (_gdcea *NRGBA16 )NRGBAAt (x ,y int )_d .NRGBA {_bcea ,_ :=ColorAtNRGBA16 (x ,y ,_gdcea .Width ,_gdcea .BytesPerLine ,_gdcea .Data ,_gdcea .Alpha ,_gdcea .Decode );return _bcea ;};func _eegd (_afc _d .NRGBA )_d .CMYK {_fec ,_ecec ,_afbd ,_ :=_afc .RGBA (); +_edd ,_fdfg ,_ddf ,_gbd :=_d .RGBToCMYK (uint8 (_fec >>8),uint8 (_ecec >>8),uint8 (_afbd >>8));return _d .CMYK {C :_edd ,M :_fdfg ,Y :_ddf ,K :_gbd };};func (_fff *Gray4 )Copy ()Image {return &Gray4 {ImageBase :_fff .copy ()}};var _ Image =&RGBA32 {};func _adfe (_bfdf _d .CMYK )_d .RGBA {_effg ,_caea ,_cfa :=_d .CMYKToRGB (_bfdf .C ,_bfdf .M ,_bfdf .Y ,_bfdf .K ); +return _d .RGBA {R :_effg ,G :_caea ,B :_cfa ,A :0xff};};func (_ecb *CMYK32 )CMYKAt (x ,y int )_d .CMYK {_aceg ,_ :=ColorAtCMYK (x ,y ,_ecb .Width ,_ecb .Data ,_ecb .Decode );return _aceg ;};func (_egd *CMYK32 )Base ()*ImageBase {return &_egd .ImageBase }; +var _ NRGBA =&NRGBA16 {};func (_egbf *Gray8 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_egbf .Width ,Y :_egbf .Height }};};func (_eefgb *Gray8 )At (x ,y int )_d .Color {_cbff ,_ :=_eefgb .ColorAt (x ,y );return _cbff };func (_bgad *NRGBA64 )NRGBA64At (x ,y int )_d .NRGBA64 {_becgf ,_ :=ColorAtNRGBA64 (x ,y ,_bgad .Width ,_bgad .Data ,_bgad .Alpha ,_bgad .Decode ); +return _becgf ;};var ErrInvalidImage =_e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); +func (_eab *Monochrome )getBitAt (_bfcg ,_gfg int )bool {_ddab :=_gfg *_eab .BytesPerLine +(_bfcg >>3);_bfde :=_bfcg &0x07;_ebc :=uint (7-_bfde );if _ddab > len (_eab .Data )-1{return false ;};if (_eab .Data [_ddab ]>>_ebc )&0x01>=1{return true ;};return false ; +};func (_bgbg *Gray16 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_bgbg .Width ,Y :_bgbg .Height }};};func _gec (_cfe _ee .Image )(Image ,error ){if _ece ,_bdgb :=_cfe .(*CMYK32 );_bdgb {return _ece .Copy (),nil ;};_gda :=_cfe .Bounds (); +_gfec ,_bedc :=NewImage (_gda .Max .X ,_gda .Max .Y ,8,4,nil ,nil ,nil );if _bedc !=nil {return nil ,_bedc ;};switch _acge :=_cfe .(type ){case CMYK :_adfb (_acge ,_gfec .(CMYK ),_gda );case Gray :_fdf (_acge ,_gfec .(CMYK ),_gda );case NRGBA :_dfee (_acge ,_gfec .(CMYK ),_gda ); +case RGBA :_dbbb (_acge ,_gfec .(CMYK ),_gda );default:_fega (_cfe ,_gfec ,_gda );};return _gfec ,nil ;};func (_faac *Monochrome )IsUnpadded ()bool {return (_faac .Width *_faac .Height )==len (_faac .Data )};func (_bcce *Monochrome )getBit (_gcag ,_fag int )uint8 {return _bcce .Data [_gcag +(_fag >>3)]>>uint (7-(_fag &7))&1; +};func _df (_dff ,_gfe *Monochrome ,_bce []byte ,_agb int )(_cfbe error ){var (_fda ,_cab ,_bdd ,_bga ,_bbb ,_ebd ,_ffcf ,_fcab int ;_fgf ,_dda ,_ebf ,_dad uint32 ;_dab ,_dcc byte ;_fcb uint16 ;);_gde :=make ([]byte ,4);_debf :=make ([]byte ,4);for _bdd =0; +_bdd < _dff .Height -1;_bdd ,_bga =_bdd +2,_bga +1{_fda =_bdd *_dff .BytesPerLine ;_cab =_bga *_gfe .BytesPerLine ;for _bbb ,_ebd =0,0;_bbb < _agb ;_bbb ,_ebd =_bbb +4,_ebd +1{for _ffcf =0;_ffcf < 4;_ffcf ++{_fcab =_fda +_bbb +_ffcf ;if _fcab <=len (_dff .Data )-1&&_fcab < _fda +_dff .BytesPerLine {_gde [_ffcf ]=_dff .Data [_fcab ]; +}else {_gde [_ffcf ]=0x00;};_fcab =_fda +_dff .BytesPerLine +_bbb +_ffcf ;if _fcab <=len (_dff .Data )-1&&_fcab < _fda +(2*_dff .BytesPerLine ){_debf [_ffcf ]=_dff .Data [_fcab ];}else {_debf [_ffcf ]=0x00;};};_fgf =_f .BigEndian .Uint32 (_gde );_dda =_f .BigEndian .Uint32 (_debf ); +_ebf =_fgf &_dda ;_ebf |=_ebf <<1;_dad =_fgf |_dda ;_dad &=_dad <<1;_dda =_ebf |_dad ;_dda &=0xaaaaaaaa;_fgf =_dda |(_dda <<7);_dab =byte (_fgf >>24);_dcc =byte ((_fgf >>8)&0xff);_fcab =_cab +_ebd ;if _fcab +1==len (_gfe .Data )-1||_fcab +1>=_cab +_gfe .BytesPerLine {if _cfbe =_gfe .setByte (_fcab ,_bce [_dab ]); +_cfbe !=nil {return _db .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_fcab );};}else {_fcb =(uint16 (_bce [_dab ])<<8)|uint16 (_bce [_dcc ]);if _cfbe =_gfe .setTwoBytes (_fcab ,_fcb );_cfbe !=nil {return _db .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_fcab ); +};_ebd ++;};};};return nil ;};type Gray16 struct{ImageBase };func (_afba *NRGBA32 )Set (x ,y int ,c _d .Color ){_dfeed :=y *_afba .Width +x ;_bggb :=3*_dfeed ;if _bggb +2>=len (_afba .Data ){return ;};_gfde :=_d .NRGBAModel .Convert (c ).(_d .NRGBA );_afba .setRGBA (_dfeed ,_gfde ); +};func _egee (_aab _d .NYCbCrA )_d .NRGBA {_edff :=int32 (_aab .Y )*0x10101;_eagb :=int32 (_aab .Cb )-128;_eefd :=int32 (_aab .Cr )-128;_bage :=_edff +91881*_eefd ;if uint32 (_bage )&0xff000000==0{_bage >>=8;}else {_bage =^(_bage >>31)&0xffff;};_bfga :=_edff -22554*_eagb -46802*_eefd ; +if uint32 (_bfga )&0xff000000==0{_bfga >>=8;}else {_bfga =^(_bfga >>31)&0xffff;};_eeb :=_edff +116130*_eagb ;if uint32 (_eeb )&0xff000000==0{_eeb >>=8;}else {_eeb =^(_eeb >>31)&0xffff;};return _d .NRGBA {R :uint8 (_bage >>8),G :uint8 (_bfga >>8),B :uint8 (_eeb >>8),A :_aab .A }; +};func (_ddda *ImageBase )setEightFullBytes (_agbd int ,_fcc uint64 )error {if _agbd +7> len (_ddda .Data )-1{return _e .New ("\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065");};_ddda .Data [_agbd ]=byte ((_fcc &0xff00000000000000)>>56); +_ddda .Data [_agbd +1]=byte ((_fcc &0xff000000000000)>>48);_ddda .Data [_agbd +2]=byte ((_fcc &0xff0000000000)>>40);_ddda .Data [_agbd +3]=byte ((_fcc &0xff00000000)>>32);_ddda .Data [_agbd +4]=byte ((_fcc &0xff000000)>>24);_ddda .Data [_agbd +5]=byte ((_fcc &0xff0000)>>16); +_ddda .Data [_agbd +6]=byte ((_fcc &0xff00)>>8);_ddda .Data [_agbd +7]=byte (_fcc &0xff);return nil ;};func _egag (_cffc uint8 )bool {if _cffc ==0||_cffc ==255{return true ;};return false ;};func _afdg (_cegb ,_afbbb RGBA ,_cgec _ee .Rectangle ){for _dbfc :=0; +_dbfc < _cgec .Max .X ;_dbfc ++{for _bbac :=0;_bbac < _cgec .Max .Y ;_bbac ++{_afbbb .SetRGBA (_dbfc ,_bbac ,_cegb .RGBAAt (_dbfc ,_bbac ));};};};func (_agd *CMYK32 )SetCMYK (x ,y int ,c _d .CMYK ){_adef :=4*(y *_agd .Width +x );if _adef +3>=len (_agd .Data ){return ; +};_agd .Data [_adef ]=c .C ;_agd .Data [_adef +1]=c .M ;_agd .Data [_adef +2]=c .Y ;_agd .Data [_adef +3]=c .K ;};func _def ()(_gbf []byte ){_gbf =make ([]byte ,256);for _cgeb :=0;_cgeb < 256;_cgeb ++{_fde :=byte (_cgeb );_gbf [_fde ]=(_fde &0x01)|((_fde &0x04)>>1)|((_fde &0x10)>>2)|((_fde &0x40)>>3)|((_fde &0x02)<<3)|((_fde &0x08)<<2)|((_fde &0x20)<<1)|(_fde &0x80); +};return _gbf ;};func (_ddaf *Gray4 )At (x ,y int )_d .Color {_cafd ,_ :=_ddaf .ColorAt (x ,y );return _cafd };func _fae (_fbbc _d .RGBA )_d .CMYK {_fdd ,_cbd ,_bbba ,_fggf :=_d .RGBToCMYK (_fbbc .R ,_fbbc .G ,_fbbc .B );return _d .CMYK {C :_fdd ,M :_cbd ,Y :_bbba ,K :_fggf }; +};func _cccf (_egab *_ee .NYCbCrA ,_fdff RGBA ,_fbcb _ee .Rectangle ){for _gfae :=0;_gfae < _fbcb .Max .X ;_gfae ++{for _abbbb :=0;_abbbb < _fbcb .Max .Y ;_abbbb ++{_faeee :=_egab .NYCbCrAAt (_gfae ,_abbbb );_fdff .SetRGBA (_gfae ,_abbbb ,_bgf (_faeee )); +};};};func _ggfga (_bedf _ee .Image )(Image ,error ){if _dffa ,_cbdb :=_bedf .(*Gray4 );_cbdb {return _dffa .Copy (),nil ;};_dcab :=_bedf .Bounds ();_dbae ,_fdda :=NewImage (_dcab .Max .X ,_dcab .Max .Y ,4,1,nil ,nil ,nil );if _fdda !=nil {return nil ,_fdda ; +};_gbgd (_bedf ,_dbae ,_dcab );return _dbae ,nil ;};func AutoThresholdTriangle (histogram [256]int )uint8 {var _afde ,_gcbf ,_acbd ,_cgac int ;for _feag :=0;_feag < len (histogram );_feag ++{if histogram [_feag ]> 0{_afde =_feag ;break ;};};if _afde > 0{_afde --; +};for _cccc :=255;_cccc > 0;_cccc --{if histogram [_cccc ]> 0{_cgac =_cccc ;break ;};};if _cgac < 255{_cgac ++;};for _caag :=0;_caag < 256;_caag ++{if histogram [_caag ]> _gcbf {_acbd =_caag ;_gcbf =histogram [_caag ];};};var _bade bool ;if (_acbd -_afde )< (_cgac -_acbd ){_bade =true ; +var _gcagd int ;_begd :=255;for _gcagd < _begd {_ggaaf :=histogram [_gcagd ];histogram [_gcagd ]=histogram [_begd ];histogram [_begd ]=_ggaaf ;_gcagd ++;_begd --;};_afde =255-_cgac ;_acbd =255-_acbd ;};if _afde ==_acbd {return uint8 (_afde );};_bagb :=float64 (histogram [_acbd ]); +_gafc :=float64 (_afde -_acbd );_gcccd :=_g .Sqrt (_bagb *_bagb +_gafc *_gafc );_bagb /=_gcccd ;_gafc /=_gcccd ;_gcccd =_bagb *float64 (_afde )+_gafc *float64 (histogram [_afde ]);_facdc :=_afde ;var _dbef float64 ;for _badeb :=_afde +1;_badeb <=_acbd ; +_badeb ++{_aefb :=_bagb *float64 (_badeb )+_gafc *float64 (histogram [_badeb ])-_gcccd ;if _aefb > _dbef {_facdc =_badeb ;_dbef =_aefb ;};};_facdc --;if _bade {var _fabb int ;_bfaf :=255;for _fabb < _bfaf {_bced :=histogram [_fabb ];histogram [_fabb ]=histogram [_bfaf ]; +histogram [_bfaf ]=_bced ;_fabb ++;_bfaf --;};return uint8 (255-_facdc );};return uint8 (_facdc );};func (_abbb *Gray8 )Histogram ()(_abba [256]int ){for _becg :=0;_becg < len (_abbb .Data );_becg ++{_abba [_abbb .Data [_becg ]]++;};return _abba ;};func _bbef (_ceab *Monochrome ,_agfe ,_edeaac ,_cfgab ,_cbdcd int ,_dddd RasterOperator ){if _agfe < 0{_cfgab +=_agfe ; +_agfe =0;};_ababf :=_agfe +_cfgab -_ceab .Width ;if _ababf > 0{_cfgab -=_ababf ;};if _edeaac < 0{_cbdcd +=_edeaac ;_edeaac =0;};_cafg :=_edeaac +_cbdcd -_ceab .Height ;if _cafg > 0{_cbdcd -=_cafg ;};if _cfgab <=0||_cbdcd <=0{return ;};if (_agfe &7)==0{_cefb (_ceab ,_agfe ,_edeaac ,_cfgab ,_cbdcd ,_dddd ); +}else {_bgdb (_ceab ,_agfe ,_edeaac ,_cfgab ,_cbdcd ,_dddd );};};var _ Image =&Gray16 {};var (MonochromeConverter =ConverterFunc (_bfc );Gray2Converter =ConverterFunc (_badd );Gray4Converter =ConverterFunc (_ggfga );GrayConverter =ConverterFunc (_gbdb ); +Gray16Converter =ConverterFunc (_cecc );NRGBA16Converter =ConverterFunc (_abbf );NRGBAConverter =ConverterFunc (_ceg );NRGBA64Converter =ConverterFunc (_egafg );RGBAConverter =ConverterFunc (_ebbbe );CMYKConverter =ConverterFunc (_gec ););func (_aeea *NRGBA32 )Base ()*ImageBase {return &_aeea .ImageBase }; +func (_becf *Gray4 )ColorModel ()_d .Model {return Gray4Model };func (_edee *RGBA32 )SetRGBA (x ,y int ,c _d .RGBA ){_gggb :=y *_edee .Width +x ;_debe :=3*_gggb ;if _debe +2>=len (_edee .Data ){return ;};_edee .setRGBA (_gggb ,c );};func _edag (_bfba _ee .Image ,_ebca Image ,_gcgd _ee .Rectangle ){if _bedd ,_fgff :=_bfba .(SMasker ); +_fgff &&_bedd .HasAlpha (){_ebca .(SMasker ).MakeAlpha ();};_fega (_bfba ,_ebca ,_gcgd );};func LinearInterpolate (x ,xmin ,xmax ,ymin ,ymax float64 )float64 {if _g .Abs (xmax -xmin )< 0.000001{return ymin ;};_deff :=ymin +(x -xmin )*(ymax -ymin )/(xmax -xmin ); +return _deff ;};func (_fcbd *NRGBA16 )Copy ()Image {return &NRGBA16 {ImageBase :_fcbd .copy ()}};func (_aebe *Gray2 )Copy ()Image {return &Gray2 {ImageBase :_aebe .copy ()}};func _ddcc (_aebeb NRGBA ,_bgac Gray ,_ggaa _ee .Rectangle ){for _fdc :=0;_fdc < _ggaa .Max .X ; +_fdc ++{for _cfed :=0;_cfed < _ggaa .Max .Y ;_cfed ++{_becac :=_gcc (_aebeb .NRGBAAt (_fdc ,_cfed ));_bgac .SetGray (_fdc ,_cfed ,_becac );};};};var _ Image =&CMYK32 {};func _gbdb (_gcdd _ee .Image )(Image ,error ){if _egcc ,_adab :=_gcdd .(*Gray8 );_adab {return _egcc .Copy (),nil ; +};_ggd :=_gcdd .Bounds ();_ffcd ,_fade :=NewImage (_ggd .Max .X ,_ggd .Max .Y ,8,1,nil ,nil ,nil );if _fade !=nil {return nil ,_fade ;};_gbgd (_gcdd ,_ffcd ,_ggd );return _ffcd ,nil ;};func _fefe (_cagdb _d .Color )_d .Color {_aeag :=_d .NRGBAModel .Convert (_cagdb ).(_d .NRGBA ); +return _faef (_aeag );};func _afb (_edf ,_bec *Monochrome ,_ccf []byte ,_bcc int )(_gab error ){var (_dgeg ,_efg ,_gdde ,_gee ,_ddc ,_ecc ,_ebdb ,_ega int ;_fcg ,_fdg ,_cbg ,_agg uint32 ;_dceg ,_gfc byte ;_cba uint16 ;);_faa :=make ([]byte ,4);_adf :=make ([]byte ,4); +for _gdde =0;_gdde < _edf .Height -1;_gdde ,_gee =_gdde +2,_gee +1{_dgeg =_gdde *_edf .BytesPerLine ;_efg =_gee *_bec .BytesPerLine ;for _ddc ,_ecc =0,0;_ddc < _bcc ;_ddc ,_ecc =_ddc +4,_ecc +1{for _ebdb =0;_ebdb < 4;_ebdb ++{_ega =_dgeg +_ddc +_ebdb ; +if _ega <=len (_edf .Data )-1&&_ega < _dgeg +_edf .BytesPerLine {_faa [_ebdb ]=_edf .Data [_ega ];}else {_faa [_ebdb ]=0x00;};_ega =_dgeg +_edf .BytesPerLine +_ddc +_ebdb ;if _ega <=len (_edf .Data )-1&&_ega < _dgeg +(2*_edf .BytesPerLine ){_adf [_ebdb ]=_edf .Data [_ega ]; +}else {_adf [_ebdb ]=0x00;};};_fcg =_f .BigEndian .Uint32 (_faa );_fdg =_f .BigEndian .Uint32 (_adf );_cbg =_fcg &_fdg ;_cbg |=_cbg <<1;_agg =_fcg |_fdg ;_agg &=_agg <<1;_fdg =_cbg &_agg ;_fdg &=0xaaaaaaaa;_fcg =_fdg |(_fdg <<7);_dceg =byte (_fcg >>24); +_gfc =byte ((_fcg >>8)&0xff);_ega =_efg +_ecc ;if _ega +1==len (_bec .Data )-1||_ega +1>=_efg +_bec .BytesPerLine {if _gab =_bec .setByte (_ega ,_ccf [_dceg ]);_gab !=nil {return _db .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_ega );};}else {_cba =(uint16 (_ccf [_dceg ])<<8)|uint16 (_ccf [_gfc ]); +if _gab =_bec .setTwoBytes (_ega ,_cba );_gab !=nil {return _db .Errorf ("s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_ega ); +};_ecc ++;};};};return nil ;};func _faef (_gdee _d .NRGBA )_d .NRGBA {_gdee .R =_gdee .R >>4|(_gdee .R >>4)<<4;_gdee .G =_gdee .G >>4|(_gdee .G >>4)<<4;_gdee .B =_gdee .B >>4|(_gdee .B >>4)<<4;return _gdee ;};func _cdbe (_gebea ,_aabe uint8 )uint8 {if _gebea < _aabe {return 255; +};return 0;};func (_bcb *Gray16 )Validate ()error {if len (_bcb .Data )!=_bcb .Height *_bcb .BytesPerLine {return ErrInvalidImage ;};return nil ;};func (_abd *Gray2 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtGray2BPC (x ,y ,_abd .BytesPerLine ,_abd .Data ,_abd .Decode ); +};func (_fcad *ImageBase )setFourBytes (_faeg int ,_ceb uint32 )error {if _faeg +3> len (_fcad .Data )-1{return _db .Errorf ("\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",_faeg ); +};_fcad .Data [_faeg ]=byte ((_ceb &0xff000000)>>24);_fcad .Data [_faeg +1]=byte ((_ceb &0xff0000)>>16);_fcad .Data [_faeg +2]=byte ((_ceb &0xff00)>>8);_fcad .Data [_faeg +3]=byte (_ceb &0xff);return nil ;};func _dfee (_eca NRGBA ,_fafa CMYK ,_egde _ee .Rectangle ){for _aeg :=0; +_aeg < _egde .Max .X ;_aeg ++{for _ffg :=0;_ffg < _egde .Max .Y ;_ffg ++{_ecg :=_eca .NRGBAAt (_aeg ,_ffg );_fafa .SetCMYK (_aeg ,_ffg ,_eegd (_ecg ));};};};func _dgf (_fgd *Monochrome ,_efa ...int )(_gdd *Monochrome ,_cae error ){if _fgd ==nil {return nil ,_e .New ("\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); +};if len (_efa )==0{return nil ,_e .New ("\u0074h\u0065\u0072e\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0061\u0074 \u006c\u0065\u0061\u0073\u0074\u0020o\u006e\u0065\u0020\u006c\u0065\u0076\u0065\u006c\u0020\u006f\u0066 \u0072\u0065\u0064\u0075\u0063\u0074\u0069\u006f\u006e"); +};_dce :=_def ();_gdd =_fgd ;for _ ,_ade :=range _efa {if _ade <=0{break ;};_gdd ,_cae =_ege (_gdd ,_ade ,_dce );if _cae !=nil {return nil ,_cae ;};};return _gdd ,nil ;};func (_bab *Monochrome )ResolveDecode ()error {if len (_bab .Decode )!=2{return nil ; +};if _bab .Decode [0]==1&&_bab .Decode [1]==0{if _bbd :=_bab .InverseData ();_bbd !=nil {return _bbd ;};_bab .Decode =nil ;};return nil ;};type RGBA32 struct{ImageBase };func _fdfa (_bcfe _d .Color )_d .Color {_fdeef :=_d .GrayModel .Convert (_bcfe ).(_d .Gray ); +return _gcca (_fdeef );};func _adfb (_bfd ,_egfc CMYK ,_fgg _ee .Rectangle ){for _ffb :=0;_ffb < _fgg .Max .X ;_ffb ++{for _dcg :=0;_dcg < _fgg .Max .Y ;_dcg ++{_egfc .SetCMYK (_ffb ,_dcg ,_bfd .CMYKAt (_ffb ,_dcg ));};};};var _ Image =&Gray4 {};func _dbc (){for _eede :=0; +_eede < 256;_eede ++{_bcdf [_eede ]=uint8 (_eede &0x1)+(uint8 (_eede >>1)&0x1)+(uint8 (_eede >>2)&0x1)+(uint8 (_eede >>3)&0x1)+(uint8 (_eede >>4)&0x1)+(uint8 (_eede >>5)&0x1)+(uint8 (_eede >>6)&0x1)+(uint8 (_eede >>7)&0x1);};};func (_abag *NRGBA32 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_abag .Width ,Y :_abag .Height }}; +};func ColorAtGray16BPC (x ,y ,bytesPerLine int ,data []byte ,decode []float64 )(_d .Gray16 ,error ){_ecee :=(y *bytesPerLine /2+x )*2;if _ecee +1>=len (data ){return _d .Gray16 {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_bfgbf :=uint16 (data [_ecee ])<<8|uint16 (data [_ecee +1]);if len (decode )==2{_bfgbf =uint16 (uint64 (LinearInterpolate (float64 (_bfgbf ),0,65535,decode [0],decode [1])));};return _d .Gray16 {Y :_bfgbf },nil ;};func (_bafe *NRGBA32 )ColorModel ()_d .Model {return _d .NRGBAModel }; +func _bfc (_ddfd _ee .Image )(Image ,error ){if _bgc ,_becd :=_ddfd .(*Monochrome );_becd {return _bgc ,nil ;};_cdff :=_ddfd .Bounds ();var _bcd Gray ;switch _bdgf :=_ddfd .(type ){case Gray :_bcd =_bdgf ;case NRGBA :_bcd =&Gray8 {ImageBase :NewImageBase (_cdff .Max .X ,_cdff .Max .Y ,8,1,nil ,nil ,nil )}; +_bffc (_bcd ,_bdgf ,_cdff );case nrgba64 :_bcd =&Gray8 {ImageBase :NewImageBase (_cdff .Max .X ,_cdff .Max .Y ,8,1,nil ,nil ,nil )};_fbbg (_bcd ,_bdgf ,_cdff );default:_gabd ,_bbae :=GrayConverter .Convert (_ddfd );if _bbae !=nil {return nil ,_bbae ;}; +_bcd =_gabd .(Gray );};_eeeb ,_efd :=NewImage (_cdff .Max .X ,_cdff .Max .Y ,1,1,nil ,nil ,nil );if _efd !=nil {return nil ,_efd ;};_dbg :=_eeeb .(*Monochrome );_fadd :=AutoThresholdTriangle (GrayHistogram (_bcd ));for _adde :=0;_adde < _cdff .Max .X ; +_adde ++{for _fdea :=0;_fdea < _cdff .Max .Y ;_fdea ++{_efbg :=_beg (_bcd .GrayAt (_adde ,_fdea ),monochromeModel (_fadd ));_dbg .SetGray (_adde ,_fdea ,_efbg );};};return _eeeb ,nil ;};func (_cgc *Monochrome )Copy ()Image {return &Monochrome {ImageBase :_cgc .ImageBase .copy (),ModelThreshold :_cgc .ModelThreshold }; +};var _ Image =&NRGBA32 {};func (_agbe *RGBA32 )RGBAAt (x ,y int )_d .RGBA {_babc ,_ :=ColorAtRGBA32 (x ,y ,_agbe .Width ,_agbe .Data ,_agbe .Alpha ,_agbe .Decode );return _babc ;};func ColorAtRGBA32 (x ,y ,width int ,data ,alpha []byte ,decode []float64 )(_d .RGBA ,error ){_egga :=y *width +x ; +_bfbe :=3*_egga ;if _bfbe +2>=len (data ){return _d .RGBA {},_db .Errorf ("\u0069\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006ea\u0074\u0065\u0073\u0020\u006f\u0075t\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064,\u0020\u0025\u0064\u0029",x ,y ); +};_dfaa :=uint8 (0xff);if alpha !=nil &&len (alpha )> _egga {_dfaa =alpha [_egga ];};_aaaa ,_beaf ,_cadfae :=data [_bfbe ],data [_bfbe +1],data [_bfbe +2];if len (decode )==6{_aaaa =uint8 (uint32 (LinearInterpolate (float64 (_aaaa ),0,255,decode [0],decode [1]))&0xff); +_beaf =uint8 (uint32 (LinearInterpolate (float64 (_beaf ),0,255,decode [2],decode [3]))&0xff);_cadfae =uint8 (uint32 (LinearInterpolate (float64 (_cadfae ),0,255,decode [4],decode [5]))&0xff);};return _d .RGBA {R :_aaaa ,G :_beaf ,B :_cadfae ,A :_dfaa },nil ; +};func (_cbc *CMYK32 )ColorModel ()_d .Model {return _d .CMYKModel };func (_efgb *RGBA32 )Validate ()error {if len (_efgb .Data )!=3*_efgb .Width *_efgb .Height {return _e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); +};return nil ;};func BytesPerLine (width ,bitsPerComponent ,colorComponents int )int {return ((width *bitsPerComponent )*colorComponents +7)>>3;};func _egafg (_edgb _ee .Image )(Image ,error ){if _gbfd ,_bcgb :=_edgb .(*NRGBA64 );_bcgb {return _gbfd .Copy (),nil ; +};_fbga ,_caead ,_ccff :=_bbbd (_edgb ,2);_cadf ,_afdcg :=NewImage (_fbga .Max .X ,_fbga .Max .Y ,16,3,nil ,_ccff ,nil );if _afdcg !=nil {return nil ,_afdcg ;};_edag (_edgb ,_cadf ,_fbga );if len (_ccff )!=0&&!_caead {if _fceb :=_efaga (_ccff ,_cadf ); +_fceb !=nil {return nil ,_fceb ;};};return _cadf ,nil ;};func (_dafc *Gray16 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtGray16BPC (x ,y ,_dafc .BytesPerLine ,_dafc .Data ,_dafc .Decode );};func (_bgcg *Gray2 )ColorModel ()_d .Model {return Gray2Model }; +func (_bgcf *NRGBA32 )Validate ()error {if len (_bgcf .Data )!=3*_bgcf .Width *_bgcf .Height {return _e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); +};return nil ;};func _ebb (_ada _d .NRGBA64 )_d .RGBA {_caeb ,_cbac ,_bgae ,_bccc :=_ada .RGBA ();return _d .RGBA {R :uint8 (_caeb >>8),G :uint8 (_cbac >>8),B :uint8 (_bgae >>8),A :uint8 (_bccc >>8)};};func _ege (_caef *Monochrome ,_aaf int ,_aac []byte )(_caa *Monochrome ,_aef error ){const _dbb ="\u0072\u0065d\u0075\u0063\u0065R\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079"; +if _caef ==nil {return nil ,_e .New ("\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};if _aaf < 1||_aaf > 4{return nil ,_e .New ("\u006c\u0065\u0076\u0065\u006c\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020\u0073e\u0074\u0020\u007b\u0031\u002c\u0032\u002c\u0033\u002c\u0034\u007d"); +};if _caef .Height <=1{return nil ,_e .New ("\u0073\u006f\u0075rc\u0065\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020m\u0075s\u0074 \u0062e\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0027\u0032\u0027");};_caa =_bed (_caef .Width /2,_caef .Height /2); +if _aac ==nil {_aac =_def ();};_faf :=_bgca (_caef .BytesPerLine ,2*_caa .BytesPerLine );switch _aaf {case 1:_aef =_cge (_caef ,_caa ,_aac ,_faf );case 2:_aef =_df (_caef ,_caa ,_aac ,_faf );case 3:_aef =_afb (_caef ,_caa ,_aac ,_faf );case 4:_aef =_dfe (_caef ,_caa ,_aac ,_faf ); +};if _aef !=nil {return nil ,_aef ;};return _caa ,nil ;};func (_dede *NRGBA32 )NRGBAAt (x ,y int )_d .NRGBA {_age ,_ :=ColorAtNRGBA32 (x ,y ,_dede .Width ,_dede .Data ,_dede .Alpha ,_dede .Decode );return _age ;};func _babb (_bcg ,_egdb Gray ,_fdgb _ee .Rectangle ){for _fecb :=0; +_fecb < _fdgb .Max .X ;_fecb ++{for _ggfe :=0;_ggfe < _fdgb .Max .Y ;_ggfe ++{_egdb .SetGray (_fecb ,_ggfe ,_bcg .GrayAt (_fecb ,_ggfe ));};};};func (_fege *Monochrome )setGray (_aeb int ,_acee _d .Gray ,_fbac int ){if _acee .Y ==0{_fege .clearBit (_fbac ,_aeb ); +}else {_fege .setGrayBit (_fbac ,_aeb );};};func _agbfc (_bcbed Gray ,_fdcfb RGBA ,_cbbd _ee .Rectangle ){for _fegcc :=0;_fegcc < _cbbd .Max .X ;_fegcc ++{for _eadb :=0;_eadb < _cbbd .Max .Y ;_eadb ++{_ggbg :=_bcbed .GrayAt (_fegcc ,_eadb );_fdcfb .SetRGBA (_fegcc ,_eadb ,_dba (_ggbg )); +};};};type colorConverter struct{_dfeb func (_ebee _ee .Image )(Image ,error );};func (_cef *CMYK32 )ColorAt (x ,y int )(_d .Color ,error ){return ColorAtCMYK (x ,y ,_cef .Width ,_cef .Data ,_cef .Decode );};func IsGrayImgBlackAndWhite (i *_ee .Gray )bool {return _ggaec (i )}; +func _gcc (_dfa _d .NRGBA )_d .Gray {_cbf ,_aba ,_gcce ,_ :=_dfa .RGBA ();_ebfb :=(19595*_cbf +38470*_aba +7471*_gcce +1<<15)>>24;return _d .Gray {Y :uint8 (_ebfb )};};type Gray8 struct{ImageBase };func (_eceee *RGBA32 )Set (x ,y int ,c _d .Color ){_eecd :=y *_eceee .Width +x ; +_ggge :=3*_eecd ;if _ggge +2>=len (_eceee .Data ){return ;};_abec :=_d .RGBAModel .Convert (c ).(_d .RGBA );_eceee .setRGBA (_eecd ,_abec );};func _adcc (_edgd ,_fgccb NRGBA ,_gefb _ee .Rectangle ){for _cbcce :=0;_cbcce < _gefb .Max .X ;_cbcce ++{for _cefbc :=0; +_cefbc < _gefb .Max .Y ;_cefbc ++{_fgccb .SetNRGBA (_cbcce ,_cefbc ,_edgd .NRGBAAt (_cbcce ,_cefbc ));};};};func NextPowerOf2 (n uint )uint {if IsPowerOf2 (n ){return n ;};return 1<<(_bdgc (n )+1);};func FromGoImage (i _ee .Image )(Image ,error ){switch _daca :=i .(type ){case Image :return _daca .Copy (),nil ; +case Gray :return GrayConverter .Convert (i );case *_ee .Gray16 :return Gray16Converter .Convert (i );case CMYK :return CMYKConverter .Convert (i );case *_ee .NRGBA64 :return NRGBA64Converter .Convert (i );default:return NRGBAConverter .Convert (i );}; +};var _ Gray =&Gray8 {};type RGBA interface{RGBAAt (_caacc ,_cfeb int )_d .RGBA ;SetRGBA (_gggd ,_gcbe int ,_ffba _d .RGBA );};type NRGBA16 struct{ImageBase };type monochromeModel uint8 ;func _bffc (_gcb Gray ,_gcad NRGBA ,_bbad _ee .Rectangle ){for _fdee :=0; +_fdee < _bbad .Max .X ;_fdee ++{for _ggb :=0;_ggb < _bbad .Max .Y ;_ggb ++{_gbca :=_adee (_gcad .NRGBAAt (_fdee ,_ggb ));_gcb .SetGray (_fdee ,_ggb ,_gbca );};};};func _ebbbe (_daeda _ee .Image )(Image ,error ){if _acgd ,_efcb :=_daeda .(*RGBA32 );_efcb {return _acgd .Copy (),nil ; +};_cbfb ,_eabg ,_ddacf :=_bbbd (_daeda ,1);_bgaa :=&RGBA32 {ImageBase :NewImageBase (_cbfb .Max .X ,_cbfb .Max .Y ,8,3,nil ,_ddacf ,nil )};_dbgb (_daeda ,_bgaa ,_cbfb );if len (_ddacf )!=0&&!_eabg {if _abdd :=_efaga (_ddacf ,_bgaa );_abdd !=nil {return nil ,_abdd ; +};};return _bgaa ,nil ;};func (_dbdc *Gray8 )GrayAt (x ,y int )_d .Gray {_baf ,_ :=ColorAtGray8BPC (x ,y ,_dbdc .BytesPerLine ,_dbdc .Data ,_dbdc .Decode );return _baf ;};func (_ecaf *Monochrome )RasterOperation (dx ,dy ,dw ,dh int ,op RasterOperator ,src *Monochrome ,sx ,sy int )error {return _gbcc (_ecaf ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy ); +};func (_fbcc *RGBA32 )Bounds ()_ee .Rectangle {return _ee .Rectangle {Max :_ee .Point {X :_fbcc .Width ,Y :_fbcc .Height }};};func (_cbda *NRGBA64 )At (x ,y int )_d .Color {_ffdgf ,_ :=_cbda .ColorAt (x ,y );return _ffdgf };func _bgbgd (_gbbb _ee .Image ,_gffg Image ,_ebgcd _ee .Rectangle ){if _efgg ,_cdead :=_gbbb .(SMasker ); +_cdead &&_efgg .HasAlpha (){_gffg .(SMasker ).MakeAlpha ();};switch _efcf :=_gbbb .(type ){case Gray :_fbad (_efcf ,_gffg .(NRGBA ),_ebgcd );case NRGBA :_adcc (_efcf ,_gffg .(NRGBA ),_ebgcd );case *_ee .NYCbCrA :_fgbcb (_efcf ,_gffg .(NRGBA ),_ebgcd ); +case CMYK :_cffb (_efcf ,_gffg .(NRGBA ),_ebgcd );case RGBA :_bcbc (_efcf ,_gffg .(NRGBA ),_ebgcd );case nrgba64 :_becab (_efcf ,_gffg .(NRGBA ),_ebgcd );default:_fega (_gbbb ,_gffg ,_ebgcd );};};func (_debd *Monochrome )Set (x ,y int ,c _d .Color ){_cfd :=y *_debd .BytesPerLine +x >>3; +if _cfd > len (_debd .Data )-1{return ;};_ffcg :=_debd .ColorModel ().Convert (c ).(_d .Gray );_debd .setGray (x ,_ffcg ,_cfd );};func (_bgag *NRGBA16 )Validate ()error {if len (_bgag .Data )!=3*_bgag .Width *_bgag .Height /2{return _e .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006da\u0067\u0065\u0020\u0064\u0061\u0074\u0061 s\u0069\u007a\u0065\u0020f\u006f\u0072\u0020\u0070\u0072\u006f\u0076\u0069\u0064ed\u0020\u0064i\u006d\u0065\u006e\u0073\u0069\u006f\u006e\u0073"); +};return nil ;};type CMYK interface{CMYKAt (_gfb ,_ffdd int )_d .CMYK ;SetCMYK (_gded ,_fge int ,_aaa _d .CMYK );}; \ No newline at end of file diff --git a/internal/integrations/unichart/unichart.go b/internal/integrations/unichart/unichart.go index 42f7a2d5b..bd261a41f 100644 --- a/internal/integrations/unichart/unichart.go +++ b/internal/integrations/unichart/unichart.go @@ -9,31 +9,33 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package unichart ;import (_c "bytes";_e "fmt";_g "github.com/unidoc/unichart/render";_fa "github.com/unidoc/unipdf/v3/common";_fc "github.com/unidoc/unipdf/v3/contentstream";_ef "github.com/unidoc/unipdf/v3/contentstream/draw";_eb "github.com/unidoc/unipdf/v3/core"; -_d "github.com/unidoc/unipdf/v3/model";_f "image/color";_bc "io";_ea "math";);func (_cd *Renderer )wrapText (_gef string )[]string {var (_ee []string ;_agc []rune ;);for _ ,_dge :=range _gef {if _dge =='\n'{_ee =append (_ee ,string (_agc ));_agc =[]rune {}; -continue ;};_agc =append (_agc ,_dge );};if len (_agc )> 0{_ee =append (_ee ,string (_agc ));};return _ee ;};func (_ce *Renderer )SetDPI (dpi float64 ){_ce ._ge =dpi };func (_eab *Renderer )ClearTextRotation (){_eab ._geg =0};func _bdf (_gcg string ,_agd int ,_gcd func (_eb .PdfObjectName )bool )_eb .PdfObjectName {_cec :=_eb .PdfObjectName (_e .Sprintf ("\u0025\u0073\u0025\u0064",_gcg ,_agd )); -for _bggc :=_agd ;_gcd (_cec );{_bggc ++;_cec =_eb .PdfObjectName (_e .Sprintf ("\u0025\u0073\u0025\u0064",_gcg ,_bggc ));};return _cec ;};func (_ac *Renderer )SetStrokeWidth (width float64 ){_ac ._gg =width ;_ac ._cb .Add_w (width )};func (_dee *Renderer )SetTextRotation (radians float64 ){_dee ._geg =_gbbb (-radians )}; -func (_fba *Renderer )FillStroke (){_fba ._cb .Add_B ()};func NewRenderer (cc *_fc .ContentCreator ,res *_d .PdfPageResources )func (int ,int )(_g .Renderer ,error ){return func (_fcf ,_a int )(_g .Renderer ,error ){_ga :=&Renderer {_bd :_fcf ,_gb :_a ,_ge :72,_cb :cc ,_fd :res ,_fg :map[*_d .PdfFont ]_eb .PdfObjectName {}}; -_ga .ResetStyle ();return _ga ,nil ;};};func (_de *Renderer )SetClassName (name string ){};func _aea (_dfb _f .Color )(float64 ,float64 ,float64 ,float64 ){_ceab ,_efg ,_edgg ,_ffb :=_feb (_dfb );return float64 (_ceab )/255,float64 (_efg )/255,float64 (_edgg )/255,float64 (_ffb )/255; -};func (_ag *Renderer )SetStrokeColor (color _f .Color ){_ag ._gd =color ;_efc ,_df ,_gac ,_ :=_aea (color );_ag ._cb .Add_RG (_efc ,_df ,_gac );};func _agfd (_adb float64 )float64 {return _adb *_ea .Pi /180.0};func (_fee *Renderer )SetFontColor (color _f .Color ){_fee ._ggc =color }; -func (_ff *Renderer )GetDPI ()float64 {return _ff ._ge };func (_aca *Renderer )Stroke (){_aca ._cb .Add_S ()};func (_cfgg *Renderer )Close (){_cfgg ._cb .Add_h ()};func (_ec *Renderer )QuadCurveTo (cx ,cy ,x ,y int ){_ec ._cb .Add_v (float64 (x ),float64 (y ),float64 (cx ),float64 (cy )); -};func _feb (_feg _f .Color )(uint8 ,uint8 ,uint8 ,uint8 ){_ega ,_gc ,_cfb ,_cdg :=_feg .RGBA ();return uint8 (_ega >>8),uint8 (_gc >>8),uint8 (_cfb >>8),uint8 (_cdg >>8);};func (_ccf *Renderer )Circle (radius float64 ,x ,y int ){_fbb :=radius ;if _ceb :=_ccf ._gg ; -_ceb !=0{_fbb -=_ceb /2;};_ggcc :=_fbb *0.551784;_fbg :=_ef .CubicBezierPath {Curves :[]_ef .CubicBezierCurve {_ef .NewCubicBezierCurve (-_fbb ,0,-_fbb ,_ggcc ,-_ggcc ,_fbb ,0,_fbb ),_ef .NewCubicBezierCurve (0,_fbb ,_ggcc ,_fbb ,_fbb ,_ggcc ,_fbb ,0),_ef .NewCubicBezierCurve (_fbb ,0,_fbb ,-_ggcc ,_ggcc ,-_fbb ,0,-_fbb ),_ef .NewCubicBezierCurve (0,-_fbb ,-_ggcc ,-_fbb ,-_fbb ,-_ggcc ,-_fbb ,0)}}; -if _gaf :=_ccf ._gg ;_gaf !=0{_fbg =_fbg .Offset (_gaf /2,_gaf /2);};_fbg =_fbg .Offset (float64 (x ),float64 (y ));_ef .DrawBezierPathWithCreator (_fbg ,_ccf ._cb );};func _gbbb (_bbe float64 )float64 {return _bbe *180/_ea .Pi };func (_edg *Renderer )MeasureText (text string )_g .Box {_gfg :=_edg ._be ; -_dbc ,_cga :=_edg ._gbb .GetFontDescriptor ();if _cga !=nil {_fa .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0055n\u0061\u0062\u006c\u0065\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u0066\u006fn\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074o\u0072"); -}else {_acc ,_cba :=_dbc .GetCapHeight ();if _cba !=nil {_fa .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0067\u0065\u0074\u0020f\u006f\u006e\u0074\u0020\u0063\u0061\u0070\u0020\u0068\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_cba ); -}else {_gfg =_acc /1000.0*_edg ._be ;};};var (_baf =0.0;_ffe =_edg .wrapText (text ););for _ ,_cge :=range _ffe {if _cea :=_edg .getTextWidth (_cge );_cea > _baf {_baf =_cea ;};};_eg :=_g .NewBox (0,0,int (_baf ),int (_gfg ));if _fdb :=_edg ._geg ;_fdb !=0{_eg =_eg .Corners ().Rotate (_fdb ).Box (); -};return _eg ;};type Renderer struct{_bd int ;_gb int ;_ge float64 ;_cb *_fc .ContentCreator ;_fd *_d .PdfPageResources ;_cc _f .Color ;_gd _f .Color ;_gg float64 ;_gbb *_d .PdfFont ;_be float64 ;_ggc _f .Color ;_geg float64 ;_fg map[*_d .PdfFont ]_eb .PdfObjectName ; -};func (_fcc *Renderer )MoveTo (x ,y int ){_fcc ._cb .Add_m (float64 (x ),float64 (y ))};func (_ggcf *Renderer )LineTo (x ,y int ){_ggcf ._cb .Add_l (float64 (x ),float64 (y ))};func (_ceg *Renderer )ArcTo (cx ,cy int ,rx ,ry ,startAngle ,deltaAngle float64 ){startAngle =_gbbb (2.0*_ea .Pi -startAngle ); -deltaAngle =_gbbb (-deltaAngle );_cg ,_fb :=deltaAngle ,1;if _ea .Abs (deltaAngle )> 90.0{_fb =int (_ea .Ceil (_ea .Abs (deltaAngle )/90.0));_cg =deltaAngle /float64 (_fb );};var (_fca =_agfd (_cg /2);_gdg =_ea .Abs (4.0/3.0*(1.0-_ea .Cos (_fca ))/_ea .Sin (_fca )); -_cfg =float64 (cx );_agf =float64 (cy ););for _dag :=0;_dag < _fb ;_dag ++{_gfe :=_agfd (startAngle +float64 (_dag )*_cg );_af :=_agfd (startAngle +float64 (_dag +1)*_cg );_ca :=_ea .Cos (_gfe );_ba :=_ea .Cos (_af );_daf :=_ea .Sin (_gfe );_cgg :=_ea .Sin (_af ); -var _gbe []float64 ;if _cg > 0{_gbe =[]float64 {_cfg +rx *_ca ,_agf -ry *_daf ,_cfg +rx *(_ca -_gdg *_daf ),_agf -ry *(_daf +_gdg *_ca ),_cfg +rx *(_ba +_gdg *_cgg ),_agf -ry *(_cgg -_gdg *_ba ),_cfg +rx *_ba ,_agf -ry *_cgg };}else {_gbe =[]float64 {_cfg +rx *_ca ,_agf -ry *_daf ,_cfg +rx *(_ca +_gdg *_daf ),_agf -ry *(_daf -_gdg *_ca ),_cfg +rx *(_ba -_gdg *_cgg ),_agf -ry *(_cgg +_gdg *_ba ),_cfg +rx *_ba ,_agf -ry *_cgg }; -};if _dag ==0{_ceg ._cb .Add_l (_gbe [0],_gbe [1]);};_ceg ._cb .Add_c (_gbe [2],_gbe [3],_gbe [4],_gbe [5],_gbe [6],_gbe [7]);};};func (_da *Renderer )SetStrokeDashArray (dashArray []float64 ){_fe :=make ([]int64 ,len (dashArray ));for _fde ,_ace :=range dashArray {_fe [_fde ]=int64 (_ace ); -};_da ._cb .Add_d (_fe ,0);};func (_cf *Renderer )ResetStyle (){_cf .SetFillColor (_f .Black );_cf .SetStrokeColor (_f .Transparent );_cf .SetStrokeWidth (0);_cf .SetFont (_d .DefaultFont ());_cf .SetFontColor (_f .Black );_cf .SetFontSize (12);_cf .SetTextRotation (0); -};func (_geb *Renderer )Text (text string ,x ,y int ){_geb ._cb .Add_q ();_geb .SetFont (_geb ._gbb );_bf ,_cac ,_bg ,_ :=_aea (_geb ._ggc );_geb ._cb .Add_rg (_bf ,_cac ,_bg );_geb ._cb .Translate (float64 (x ),float64 (y )).Scale (1,-1);if _dbg :=_geb ._geg ; -_dbg !=0{_geb ._cb .RotateDeg (_dbg );};_geb ._cb .Add_BT ().Add_TL (_geb ._be );var (_bfg =_geb ._gbb .Encoder ();_fbbc =_geb .wrapText (text );_fdeg =len (_fbbc ););for _gaaa ,_acaf :=range _fbbc {_geb ._cb .Add_TJ (_eb .MakeStringFromBytes (_bfg .Encode (_acaf ))); -if _gaaa !=_fdeg -1{_geb ._cb .Add_Tstar ();};};_geb ._cb .Add_ET ();_geb ._cb .Add_Q ();};func (_gfc *Renderer )getTextWidth (_dgg string )float64 {var _fce float64 ;for _ ,_dgge :=range _dgg {_afg ,_bgd :=_gfc ._gbb .GetRuneMetrics (_dgge );if !_bgd {_fa .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074e\u0064 \u0072u\u006e\u0065\u0020\u0025\u0076\u0020\u0069\u006e\u0020\u0066\u006f\u006e\u0074",_dgge ); -};_fce +=_afg .Wx ;};return _gfc ._be *_fce /1000.0;};func (_gaa *Renderer )Fill (){_gaa ._cb .Add_f ()};func (_bga *Renderer )Save (w _bc .Writer )error {if w ==nil {return nil ;};_ ,_dec :=_bc .Copy (w ,_c .NewBuffer (_bga ._cb .Bytes ()));return _dec ; -};func (_db *Renderer )SetFontSize (size float64 ){_db ._be =size };func (_efb *Renderer )SetFont (font _g .Font ){_ae ,_dg :=font .(*_d .PdfFont );if !_dg {_fa .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0066\u006f\u006e\u0074\u0020\u0074\u0079\u0070\u0065"); -return ;};_bb ,_dg :=_efb ._fg [_ae ];if !_dg {_bb =_bdf ("\u0046\u006f\u006e\u0074",1,_efb ._fd .HasFontByName );if _cef :=_efb ._fd .SetFontByName (_bb ,_ae .ToPdfObject ());_cef !=nil {_fa .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0061\u0064d\u0020\u0066\u006f\u006e\u0074\u0020\u0025\u0076\u0020\u0074\u006f\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073",_ae ); -};_efb ._fg [_ae ]=_bb ;};_efb ._cb .Add_Tf (_bb ,_efb ._be );_efb ._gbb =_ae ;};func (_ad *Renderer )SetFillColor (color _f .Color ){_ad ._cc =color ;_deb ,_ebg ,_gea ,_ :=_aea (color );_ad ._cb .Add_rg (_deb ,_ebg ,_gea );}; \ No newline at end of file +package unichart ;import (_g "bytes";_b "fmt";_c "github.com/unidoc/unichart/render";_cd "github.com/unidoc/unipdf/v3/common";_cdc "github.com/unidoc/unipdf/v3/contentstream";_ef "github.com/unidoc/unipdf/v3/contentstream/draw";_aeb "github.com/unidoc/unipdf/v3/core"; +_ae "github.com/unidoc/unipdf/v3/model";_f "image/color";_a "io";_gc "math";);func (_fd *Renderer )SetFillColor (color _f .Color ){_fd ._gd =color ;_dc ,_cde ,_bc ,_ :=_gadc (color );_fd ._aeg .Add_rg (_dc ,_cde ,_bc );};func (_acc *Renderer )FillStroke (){_acc ._aeg .Add_B ()}; +func (_fgb *Renderer )SetStrokeWidth (width float64 ){_fgb ._gdc =width ;_fgb ._aeg .Add_w (width )};func (_ec *Renderer )wrapText (_cfe string )[]string {var (_db []string ;_ede []rune ;);for _ ,_dce :=range _cfe {if _dce =='\n'{_db =append (_db ,string (_ede )); +_ede =[]rune {};continue ;};_ede =append (_ede ,_dce );};if len (_ede )> 0{_db =append (_db ,string (_ede ));};return _db ;};func _aaa (_dfe string ,_ace int ,_aag func (_aeb .PdfObjectName )bool )_aeb .PdfObjectName {_efb :=_aeb .PdfObjectName (_b .Sprintf ("\u0025\u0073\u0025\u0064",_dfe ,_ace )); +for _bgcde :=_ace ;_aag (_efb );{_bgcde ++;_efb =_aeb .PdfObjectName (_b .Sprintf ("\u0025\u0073\u0025\u0064",_dfe ,_bgcde ));};return _efb ;};func _gadc (_eeg _f .Color )(float64 ,float64 ,float64 ,float64 ){_fab ,_fda ,_edd ,_ccdc :=_ggf (_eeg );return float64 (_fab )/255,float64 (_fda )/255,float64 (_edd )/255,float64 (_ccdc )/255; +};func (_gea *Renderer )MeasureText (text string )_c .Box {_daa :=_gea ._ga ;_fcf ,_fae :=_gea ._bg .GetFontDescriptor ();if _fae !=nil {_cd .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0055n\u0061\u0062\u006c\u0065\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u0066\u006fn\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074o\u0072"); +}else {_ccg ,_gcbc :=_fcf .GetCapHeight ();if _gcbc !=nil {_cd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0067\u0065\u0074\u0020f\u006f\u006e\u0074\u0020\u0063\u0061\u0070\u0020\u0068\u0065\u0069\u0067\u0068t\u003a\u0020\u0025\u0076",_gcbc ); +}else {_daa =_ccg /1000.0*_gea ._ga ;};};var (_bf =0.0;_dac =_gea .wrapText (text ););for _ ,_egde :=range _dac {if _gde :=_gea .getTextWidth (_egde );_gde > _bf {_bf =_gde ;};};_cca :=_c .NewBox (0,0,int (_bf ),int (_daa ));if _gae :=_gea ._gcf ;_gae !=0{_cca =_cca .Corners ().Rotate (_gae ).Box (); +};return _cca ;};func _dfc (_bba float64 )float64 {return _bba *180/_gc .Pi };func (_dd *Renderer )ArcTo (cx ,cy int ,rx ,ry ,startAngle ,deltaAngle float64 ){startAngle =_dfc (2.0*_gc .Pi -startAngle );deltaAngle =_dfc (-deltaAngle );_gb ,_ffb :=deltaAngle ,1; +if _gc .Abs (deltaAngle )> 90.0{_ffb =int (_gc .Ceil (_gc .Abs (deltaAngle )/90.0));_gb =deltaAngle /float64 (_ffb );};var (_cdd =_dgg (_gb /2);_df =_gc .Abs (4.0/3.0*(1.0-_gc .Cos (_cdd ))/_gc .Sin (_cdd ));_ed =float64 (cx );_fcb =float64 (cy ););for _fgd :=0; +_fgd < _ffb ;_fgd ++{_gdg :=_dgg (startAngle +float64 (_fgd )*_gb );_gdd :=_dgg (startAngle +float64 (_fgd +1)*_gb );_eb :=_gc .Cos (_gdg );_ffc :=_gc .Cos (_gdd );_gaca :=_gc .Sin (_gdg );_af :=_gc .Sin (_gdd );var _ddd []float64 ;if _gb > 0{_ddd =[]float64 {_ed +rx *_eb ,_fcb -ry *_gaca ,_ed +rx *(_eb -_df *_gaca ),_fcb -ry *(_gaca +_df *_eb ),_ed +rx *(_ffc +_df *_af ),_fcb -ry *(_af -_df *_ffc ),_ed +rx *_ffc ,_fcb -ry *_af }; +}else {_ddd =[]float64 {_ed +rx *_eb ,_fcb -ry *_gaca ,_ed +rx *(_eb +_df *_gaca ),_fcb -ry *(_gaca -_df *_eb ),_ed +rx *(_ffc -_df *_af ),_fcb -ry *(_af +_df *_ffc ),_ed +rx *_ffc ,_fcb -ry *_af };};if _fgd ==0{_dd ._aeg .Add_l (_ddd [0],_ddd [1]);};_dd ._aeg .Add_c (_ddd [2],_ddd [3],_ddd [4],_ddd [5],_ddd [6],_ddd [7]); +};};func (_fac *Renderer )SetClassName (name string ){};func _dgg (_gbeb float64 )float64 {return _gbeb *_gc .Pi /180.0};func (_gcb *Renderer )LineTo (x ,y int ){_gcb ._aeg .Add_l (float64 (x ),float64 (y ))};func (_gee *Renderer )SetFont (font _c .Font ){_gede ,_ba :=font .(*_ae .PdfFont ); +if !_ba {_cd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0066\u006f\u006e\u0074\u0020\u0074\u0079\u0070\u0065");return ;};_def ,_ba :=_gee ._de [_gede ];if !_ba {_def =_aaa ("\u0046\u006f\u006e\u0074",1,_gee ._fa .HasFontByName ); +if _gge :=_gee ._fa .SetFontByName (_def ,_gede .ToPdfObject ());_gge !=nil {_cd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0061\u0064d\u0020\u0066\u006f\u006e\u0074\u0020\u0025\u0076\u0020\u0074\u006f\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073",_gede ); +};_gee ._de [_gede ]=_def ;};_gee ._aeg .Add_Tf (_def ,_gee ._ga );_gee ._bg =_gede ;};func (_cg *Renderer )GetDPI ()float64 {return _cg ._d };func (_acf *Renderer )Stroke (){_acf ._aeg .Add_S ()};func (_acd *Renderer )getTextWidth (_bda string )float64 {var _bad float64 ; +for _ ,_bea :=range _bda {_gbe ,_egf :=_acd ._bg .GetRuneMetrics (_bea );if !_egf {_cd .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006fr\u0074e\u0064 \u0072u\u006e\u0065\u0020\u0025\u0076\u0020\u0069\u006e\u0020\u0066\u006f\u006e\u0074",_bea ); +};_bad +=_gbe .Wx ;};return _acd ._ga *_bad /1000.0;};type Renderer struct{_ge int ;_ea int ;_d float64 ;_aeg *_cdc .ContentCreator ;_fa *_ae .PdfPageResources ;_gd _f .Color ;_be _f .Color ;_gdc float64 ;_bg *_ae .PdfFont ;_ga float64 ;_bgc _f .Color ; +_gcf float64 ;_de map[*_ae .PdfFont ]_aeb .PdfObjectName ;};func _ggf (_cfb _f .Color )(uint8 ,uint8 ,uint8 ,uint8 ){_ege ,_ffd ,_ccdba ,_bgf :=_cfb .RGBA ();return uint8 (_ege >>8),uint8 (_ffd >>8),uint8 (_ccdba >>8),uint8 (_bgf >>8);};func (_bbb *Renderer )ClearTextRotation (){_bbb ._gcf =0}; +func (_ebd *Renderer )Save (w _a .Writer )error {if w ==nil {return nil ;};_ ,_gag :=_a .Copy (w ,_g .NewBuffer (_ebd ._aeg .Bytes ()));return _gag ;};func (_fdga *Renderer )SetFontColor (color _f .Color ){_fdga ._bgc =color };func (_gdb *Renderer )Fill (){_gdb ._aeg .Add_f ()}; +func NewRenderer (cc *_cdc .ContentCreator ,res *_ae .PdfPageResources )func (int ,int )(_c .Renderer ,error ){return func (_dg ,_cc int )(_c .Renderer ,error ){_gac :=&Renderer {_ge :_dg ,_ea :_cc ,_d :72,_aeg :cc ,_fa :res ,_de :map[*_ae .PdfFont ]_aeb .PdfObjectName {}}; +_gac .ResetStyle ();return _gac ,nil ;};};func (_ccdb *Renderer )MoveTo (x ,y int ){_ccdb ._aeg .Add_m (float64 (x ),float64 (y ))};func (_dcg *Renderer )SetTextRotation (radians float64 ){_dcg ._gcf =_dfc (-radians )};func (_fef *Renderer )Text (text string ,x ,y int ){_fef ._aeg .Add_q (); +_fef .SetFont (_fef ._bg );_bd ,_ebc ,_bdc ,_ :=_gadc (_fef ._bgc );_fef ._aeg .Add_rg (_bd ,_ebc ,_bdc );_fef ._aeg .Translate (float64 (x ),float64 (y )).Scale (1,-1);if _egd :=_fef ._gcf ;_egd !=0{_fef ._aeg .RotateDeg (_egd );};_fef ._aeg .Add_BT ().Add_TL (_fef ._ga ); +var (_cff =_fef ._bg .Encoder ();_bgcd =_fef .wrapText (text );_faf =len (_bgcd ););for _cb ,_eggc :=range _bgcd {_fef ._aeg .Add_TJ (_aeb .MakeStringFromBytes (_cff .Encode (_eggc )));if _cb !=_faf -1{_fef ._aeg .Add_Tstar ();};};_fef ._aeg .Add_ET (); +_fef ._aeg .Add_Q ();};func (_gg *Renderer )SetStrokeColor (color _f .Color ){_gg ._be =color ;_fg ,_ged ,_fc ,_ :=_gadc (color );_gg ._aeg .Add_RG (_fg ,_ged ,_fc );};func (_aa *Renderer )Circle (radius float64 ,x ,y int ){_fdg :=radius ;if _gef :=_aa ._gdc ; +_gef !=0{_fdg -=_gef /2;};_bb :=_fdg *0.551784;_ca :=_ef .CubicBezierPath {Curves :[]_ef .CubicBezierCurve {_ef .NewCubicBezierCurve (-_fdg ,0,-_fdg ,_bb ,-_bb ,_fdg ,0,_fdg ),_ef .NewCubicBezierCurve (0,_fdg ,_bb ,_fdg ,_fdg ,_bb ,_fdg ,0),_ef .NewCubicBezierCurve (_fdg ,0,_fdg ,-_bb ,_bb ,-_fdg ,0,-_fdg ),_ef .NewCubicBezierCurve (0,-_fdg ,-_bb ,-_fdg ,-_fdg ,-_bb ,-_fdg ,0)}}; +if _cgf :=_aa ._gdc ;_cgf !=0{_ca =_ca .Offset (_cgf /2,_cgf /2);};_ca =_ca .Offset (float64 (x ),float64 (y ));_ef .DrawBezierPathWithCreator (_ca ,_aa ._aeg );};func (_ac *Renderer )QuadCurveTo (cx ,cy ,x ,y int ){_ac ._aeg .Add_v (float64 (x ),float64 (y ),float64 (cx ),float64 (cy )); +};func (_da *Renderer )Close (){_da ._aeg .Add_h ()};func (_egg *Renderer )SetFontSize (size float64 ){_egg ._ga =size };func (_ee *Renderer )SetStrokeDashArray (dashArray []float64 ){_efa :=make ([]int64 ,len (dashArray ));for _cf ,_eg :=range dashArray {_efa [_cf ]=int64 (_eg ); +};_ee ._aeg .Add_d (_efa ,0);};func (_ccd *Renderer )SetDPI (dpi float64 ){_ccd ._d =dpi };func (_ab *Renderer )ResetStyle (){_ab .SetFillColor (_f .Black );_ab .SetStrokeColor (_f .Transparent );_ab .SetStrokeWidth (0);_ab .SetFont (_ae .DefaultFont ()); +_ab .SetFontColor (_f .Black );_ab .SetFontSize (12);_ab .SetTextRotation (0);}; \ No newline at end of file diff --git a/internal/jbig2/basic/basic.go b/internal/jbig2/basic/basic.go index 4905a3378..ab9cc7aaa 100644 --- a/internal/jbig2/basic/basic.go +++ b/internal/jbig2/basic/basic.go @@ -9,15 +9,15 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package basic ;import _c "github.com/unidoc/unipdf/v3/internal/jbig2/errors";func (_ed *IntSlice )Copy ()*IntSlice {_aa :=IntSlice (make ([]int ,len (*_ed )));copy (_aa ,*_ed );return &_aa ;};type IntsMap map[uint64 ][]int ;func (_b *IntSlice )Add (v int )error {if _b ==nil {return _c .Error ("\u0049\u006e\u0074S\u006c\u0069\u0063\u0065\u002e\u0041\u0064\u0064","\u0073\u006c\u0069\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); -};*_b =append (*_b ,v );return nil ;};func (_db NumSlice )GetIntSlice ()[]int {_fa :=make ([]int ,len (_db ));for _bg ,_cd :=range _db {_fa [_bg ]=int (_cd );};return _fa ;};func Max (x ,y int )int {if x > y {return x ;};return y ;};type Stack struct{Data []interface{}; -Aux *Stack ;};func (_fe *Stack )Pop ()(_bfa interface{},_eb bool ){_bfa ,_eb =_fe .peek ();if !_eb {return nil ,_eb ;};_fe .Data =_fe .Data [:_fe .top ()];return _bfa ,true ;};func NewIntSlice (i int )*IntSlice {_gd :=IntSlice (make ([]int ,i ));return &_gd }; -type IntSlice []int ;func (_f IntsMap )Get (key uint64 )(int ,bool ){_g ,_ce :=_f [key ];if !_ce {return 0,false ;};if len (_g )==0{return 0,false ;};return _g [0],true ;};func (_a IntsMap )Add (key uint64 ,value int ){_a [key ]=append (_a [key ],value )}; -func NewNumSlice (i int )*NumSlice {_dc :=NumSlice (make ([]float32 ,i ));return &_dc };func (_da IntSlice )Size ()int {return len (_da )};func Ceil (numerator ,denominator int )int {if numerator %denominator ==0{return numerator /denominator ;};return (numerator /denominator )+1; -};func (_ag *NumSlice )Add (v float32 ){*_ag =append (*_ag ,v )};func (_ca NumSlice )GetInt (i int )(int ,error ){const _cg ="\u0047\u0065\u0074\u0049\u006e\u0074";if i < 0||i > len (_ca )-1{return 0,_c .Errorf (_cg ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};_be :=_ca [i ];return int (_be +Sign (_be )*0.5),nil ;};func (_abc NumSlice )Get (i int )(float32 ,error ){if i < 0||i > len (_abc )-1{return 0,_c .Errorf ("\u004e\u0075\u006dS\u006c\u0069\u0063\u0065\u002e\u0047\u0065\u0074","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};return _abc [i ],nil ;};func Sign (v float32 )float32 {if v >=0.0{return 1.0;};return -1.0;};type NumSlice []float32 ;func (_fc *Stack )Push (v interface{}){_fc .Data =append (_fc .Data ,v )};func Abs (v int )int {if v > 0{return v ;};return -v ;};func Min (x ,y int )int {if x < y {return x ; -};return y ;};func (_d IntSlice )Get (index int )(int ,error ){if index > len (_d )-1{return 0,_c .Errorf ("\u0049\u006e\u0074S\u006c\u0069\u0063\u0065\u002e\u0047\u0065\u0074","\u0069\u006e\u0064\u0065x:\u0020\u0025\u0064\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006eg\u0065",index ); -};return _d [index ],nil ;};func (_cag *Stack )peek ()(interface{},bool ){_ee :=_cag .top ();if _ee ==-1{return nil ,false ;};return _cag .Data [_ee ],true ;};func (_gf *Stack )Len ()int {return len (_gf .Data )};func (_af IntsMap )Delete (key uint64 ){delete (_af ,key )}; -func (_fb *NumSlice )AddInt (v int ){*_fb =append (*_fb ,float32 (v ))};func (_ab IntsMap )GetSlice (key uint64 )([]int ,bool ){_ad ,_fd :=_ab [key ];if !_fd {return nil ,false ;};return _ad ,true ;};func (_aaa *Stack )top ()int {return len (_aaa .Data )-1}; -func (_bf *Stack )Peek ()(_dad interface{},_bc bool ){return _bf .peek ()}; \ No newline at end of file +package basic ;import _be "github.com/unidoc/unipdf/v3/internal/jbig2/errors";func (_dbe IntSlice )Size ()int {return len (_dbe )};func (_g NumSlice )GetIntSlice ()[]int {_aa :=make ([]int ,len (_g ));for _cc ,_fc :=range _g {_aa [_cc ]=int (_fc );};return _aa ; +};func (_cfc *NumSlice )AddInt (v int ){*_cfc =append (*_cfc ,float32 (v ))};func (_ab *IntSlice )Add (v int )error {if _ab ==nil {return _be .Error ("\u0049\u006e\u0074S\u006c\u0069\u0063\u0065\u002e\u0041\u0064\u0064","\u0073\u006c\u0069\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); +};*_ab =append (*_ab ,v );return nil ;};func Max (x ,y int )int {if x > y {return x ;};return y ;};type IntSlice []int ;func NewNumSlice (i int )*NumSlice {_ce :=NumSlice (make ([]float32 ,i ));return &_ce };func Min (x ,y int )int {if x < y {return x ; +};return y ;};func Sign (v float32 )float32 {if v >=0.0{return 1.0;};return -1.0;};func (_c IntsMap )Add (key uint64 ,value int ){_c [key ]=append (_c [key ],value )};func Ceil (numerator ,denominator int )int {if numerator %denominator ==0{return numerator /denominator ; +};return (numerator /denominator )+1;};func (_bf *Stack )top ()int {return len (_bf .Data )-1};func (_bgba *Stack )Peek ()(_ffe interface{},_df bool ){return _bgba .peek ()};func (_ge *Stack )Pop ()(_ee interface{},_cef bool ){_ee ,_cef =_ge .peek ();if !_cef {return nil ,_cef ; +};_ge .Data =_ge .Data [:_ge .top ()];return _ee ,true ;};func Abs (v int )int {if v > 0{return v ;};return -v ;};func (_e IntsMap )Get (key uint64 )(int ,bool ){_f ,_d :=_e [key ];if !_d {return 0,false ;};if len (_f )==0{return 0,false ;};return _f [0],true ; +};func (_dg *Stack )Push (v interface{}){_dg .Data =append (_dg .Data ,v )};func NewIntSlice (i int )*IntSlice {_cf :=IntSlice (make ([]int ,i ));return &_cf };func (_ff *Stack )Len ()int {return len (_ff .Data )};func (_ea NumSlice )GetInt (i int )(int ,error ){const _bed ="\u0047\u0065\u0074\u0049\u006e\u0074"; +if i < 0||i > len (_ea )-1{return 0,_be .Errorf (_bed ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};_bgb :=_ea [i ];return int (_bgb +Sign (_bgb )*0.5),nil ; +};func (_fd *IntSlice )Copy ()*IntSlice {_fb :=IntSlice (make ([]int ,len (*_fd )));copy (_fb ,*_fd );return &_fb ;};func (_db IntsMap )Delete (key uint64 ){delete (_db ,key )};func (_a IntsMap )GetSlice (key uint64 )([]int ,bool ){_ef ,_bb :=_a [key ]; +if !_bb {return nil ,false ;};return _ef ,true ;};func (_ed NumSlice )Get (i int )(float32 ,error ){if i < 0||i > len (_ed )-1{return 0,_be .Errorf ("\u004e\u0075\u006dS\u006c\u0069\u0063\u0065\u002e\u0047\u0065\u0074","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};return _ed [i ],nil ;};type Stack struct{Data []interface{};Aux *Stack ;};func (_cff IntSlice )Get (index int )(int ,error ){if index > len (_cff )-1{return 0,_be .Errorf ("\u0049\u006e\u0074S\u006c\u0069\u0063\u0065\u002e\u0047\u0065\u0074","\u0069\u006e\u0064\u0065x:\u0020\u0025\u0064\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006eg\u0065",index ); +};return _cff [index ],nil ;};func (_gf *Stack )peek ()(interface{},bool ){_dfd :=_gf .top ();if _dfd ==-1{return nil ,false ;};return _gf .Data [_dfd ],true ;};type NumSlice []float32 ;type IntsMap map[uint64 ][]int ;func (_bg *NumSlice )Add (v float32 ){*_bg =append (*_bg ,v )}; diff --git a/internal/jbig2/bitmap/bitmap.go b/internal/jbig2/bitmap/bitmap.go index 1d158a5c8..f4273883e 100644 --- a/internal/jbig2/bitmap/bitmap.go +++ b/internal/jbig2/bitmap/bitmap.go @@ -9,646 +9,646 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package bitmap ;import (_gg "encoding/binary";_g "github.com/stretchr/testify/require";_dc "github.com/unidoc/unipdf/v3/common";_e "github.com/unidoc/unipdf/v3/internal/bitwise";_ca "github.com/unidoc/unipdf/v3/internal/imageutil";_c "github.com/unidoc/unipdf/v3/internal/jbig2/basic"; -_a "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_fg "image";_cf "math";_d "sort";_ad "strings";_f "testing";);func RasterOperation (dest *Bitmap ,dx ,dy ,dw ,dh int ,op RasterOperator ,src *Bitmap ,sx ,sy int )error {return _bgcc (dest ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy ); -};type MorphProcess struct{Operation MorphOperation ;Arguments []int ;};func _gfgb (_edb int )int {if _edb < 0{return -_edb ;};return _edb ;};func (_dcdf *ClassedPoints )Swap (i ,j int ){_dcdf .IntSlice [i ],_dcdf .IntSlice [j ]=_dcdf .IntSlice [j ],_dcdf .IntSlice [i ]; -};const (AsymmetricMorphBC BoundaryCondition =iota ;SymmetricMorphBC ;);func _fgdc ()(_gage [256]uint32 ){for _deb :=0;_deb < 256;_deb ++{if _deb &0x01!=0{_gage [_deb ]|=0xf;};if _deb &0x02!=0{_gage [_deb ]|=0xf0;};if _deb &0x04!=0{_gage [_deb ]|=0xf00; -};if _deb &0x08!=0{_gage [_deb ]|=0xf000;};if _deb &0x10!=0{_gage [_deb ]|=0xf0000;};if _deb &0x20!=0{_gage [_deb ]|=0xf00000;};if _deb &0x40!=0{_gage [_deb ]|=0xf000000;};if _deb &0x80!=0{_gage [_deb ]|=0xf0000000;};};return _gage ;};func (_afgg *Bitmap )addBorderGeneral (_bcgb ,_fgbb ,_bad ,_fcc int ,_cbca int )(*Bitmap ,error ){const _effe ="\u0061\u0064d\u0042\u006f\u0072d\u0065\u0072\u0047\u0065\u006e\u0065\u0072\u0061\u006c"; -if _bcgb < 0||_fgbb < 0||_bad < 0||_fcc < 0{return nil ,_a .Error (_effe ,"n\u0065\u0067\u0061\u0074iv\u0065 \u0062\u006f\u0072\u0064\u0065r\u0020\u0061\u0064\u0064\u0065\u0064");};_abgfe ,_ggge :=_afgg .Width ,_afgg .Height ;_cgge :=_abgfe +_bcgb +_fgbb ; -_edaf :=_ggge +_bad +_fcc ;_gaa :=New (_cgge ,_edaf );_gaa .Color =_afgg .Color ;_edc :=PixClr ;if _cbca > 0{_edc =PixSet ;};_bdc :=_gaa .RasterOperation (0,0,_bcgb ,_edaf ,_edc ,nil ,0,0);if _bdc !=nil {return nil ,_a .Wrap (_bdc ,_effe ,"\u006c\u0065\u0066\u0074"); -};_bdc =_gaa .RasterOperation (_cgge -_fgbb ,0,_fgbb ,_edaf ,_edc ,nil ,0,0);if _bdc !=nil {return nil ,_a .Wrap (_bdc ,_effe ,"\u0072\u0069\u0067h\u0074");};_bdc =_gaa .RasterOperation (0,0,_cgge ,_bad ,_edc ,nil ,0,0);if _bdc !=nil {return nil ,_a .Wrap (_bdc ,_effe ,"\u0074\u006f\u0070"); -};_bdc =_gaa .RasterOperation (0,_edaf -_fcc ,_cgge ,_fcc ,_edc ,nil ,0,0);if _bdc !=nil {return nil ,_a .Wrap (_bdc ,_effe ,"\u0062\u006f\u0074\u0074\u006f\u006d");};_bdc =_gaa .RasterOperation (_bcgb ,_bad ,_abgfe ,_ggge ,PixSrc ,_afgg ,0,0);if _bdc !=nil {return nil ,_a .Wrap (_bdc ,_effe ,"\u0063\u006f\u0070\u0079"); -};return _gaa ,nil ;};func TstWordBitmapWithSpaces (t *_f .T ,scale ...int )*Bitmap {_ebbd :=1;if len (scale )> 0{_ebbd =scale [0];};_agbc :=3;_dfecg :=9+7+15+2*_agbc +2*_agbc ;_faaf :=5+_agbc +5+2*_agbc ;_ebfdg :=New (_dfecg *_ebbd ,_faaf *_ebbd );_dgaaf :=&Bitmaps {}; -var _aeae *int ;_agbc *=_ebbd ;_ebgga :=_agbc ;_aeae =&_ebgga ;_gege :=_agbc ;_eegf :=TstDSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd );_eegf =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,_agbc ); -_eegf =TstISymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd );_eegf =TstTSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,_agbc );_eegf =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd ); -_eegf =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd );_eegf =TstWSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,0);*_aeae =_agbc ;_gege =5*_ebbd +_agbc ;_eegf =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd ); -_eegf =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,_agbc );_eegf =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd );_eegf =TstESymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd ); -_eegf =TstVSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd );_eegf =TstESymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,1*_ebbd );_eegf =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_dgaaf ,_eegf ,_aeae ,_gege ,0); -TstWriteSymbols (t ,_dgaaf ,_ebfdg );return _ebfdg ;};func _bgfb (_fegc *Bitmap )(_fcg *Bitmap ,_cdag int ,_dafa error ){const _feeeg ="\u0042i\u0074\u006d\u0061\u0070.\u0077\u006f\u0072\u0064\u004da\u0073k\u0042y\u0044\u0069\u006c\u0061\u0074\u0069\u006fn"; -if _fegc ==nil {return nil ,0,_a .Errorf (_feeeg ,"\u0027\u0073\u0027\u0020bi\u0074\u006d\u0061\u0070\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};var _eedb ,_cgfg *Bitmap ;if _eedb ,_dafa =_agbb (nil ,_fegc );_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"\u0063\u006f\u0070\u0079\u0020\u0027\u0073\u0027"); -};var (_afff [13]int ;_ceccb ,_dcacg int ;);_afgf :=12;_acce :=_c .NewNumSlice (_afgf +1);_eggb :=_c .NewNumSlice (_afgf +1);var _gedf *Boxes ;for _fbfe :=0;_fbfe <=_afgf ;_fbfe ++{if _fbfe ==0{if _cgfg ,_dafa =_agbb (nil ,_eedb );_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"\u0066i\u0072\u0073\u0074\u0020\u0062\u006d2"); -};}else {if _cgfg ,_dafa =_eeaaf (_eedb ,MorphProcess {Operation :MopDilation ,Arguments :[]int {2,1}});_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"\u0064\u0069\u006ca\u0074\u0069\u006f\u006e\u0020\u0062\u006d\u0032");};};if _gedf ,_dafa =_cgfg .connComponentsBB (4); -_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"");};_afff [_fbfe ]=len (*_gedf );_acce .AddInt (_afff [_fbfe ]);switch _fbfe {case 0:_ceccb =_afff [0];default:_dcacg =_afff [_fbfe -1]-_afff [_fbfe ];_eggb .AddInt (_dcacg );};_eedb =_cgfg ;};_eegd :=true ; -_bdbf :=2;var _adfa ,_daaa int ;for _aeg :=1;_aeg < len (*_eggb );_aeg ++{if _adfa ,_dafa =_acce .GetInt (_aeg );_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"\u0043\u0068\u0065\u0063ki\u006e\u0067\u0020\u0062\u0065\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0069o\u006e"); -};if _eegd &&_adfa < int (0.3*float32 (_ceccb )){_bdbf =_aeg +1;_eegd =false ;};if _dcacg ,_dafa =_eggb .GetInt (_aeg );_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006ea\u0044\u0069\u0066\u0066"); -};if _dcacg > _daaa {_daaa =_dcacg ;};};_ddf :=_fegc .XResolution ;if _ddf ==0{_ddf =150;};if _ddf > 110{_bdbf ++;};if _bdbf < 2{_dc .Log .Trace ("J\u0042\u0049\u0047\u0032\u0020\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u0042\u0065\u0073\u0074 \u0074\u006f\u0020\u006d\u0069\u006e\u0069\u006d\u0075\u006d a\u006c\u006c\u006fw\u0061b\u006c\u0065"); -_bdbf =2;};_cdag =_bdbf +1;if _fcg ,_dafa =_ffag (nil ,_fegc ,_bdbf +1,1);_dafa !=nil {return nil ,0,_a .Wrap (_dafa ,_feeeg ,"\u0067\u0065\u0074\u0074in\u0067\u0020\u006d\u0061\u0073\u006b\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};return _fcg ,_cdag ,nil ; -};type MorphOperation int ;func _acb ()(_gae [256]uint16 ){for _aca :=0;_aca < 256;_aca ++{if _aca &0x01!=0{_gae [_aca ]|=0x3;};if _aca &0x02!=0{_gae [_aca ]|=0xc;};if _aca &0x04!=0{_gae [_aca ]|=0x30;};if _aca &0x08!=0{_gae [_aca ]|=0xc0;};if _aca &0x10!=0{_gae [_aca ]|=0x300; -};if _aca &0x20!=0{_gae [_aca ]|=0xc00;};if _aca &0x40!=0{_gae [_aca ]|=0x3000;};if _aca &0x80!=0{_gae [_aca ]|=0xc000;};};return _gae ;};func _geae (_eca ,_effeg ,_gaed *Bitmap ,_cebde int )(*Bitmap ,error ){const _geaae ="\u0073\u0065\u0065\u0064\u0046\u0069\u006c\u006c\u0042i\u006e\u0061\u0072\u0079"; -if _effeg ==nil {return nil ,_a .Error (_geaae ,"s\u006fu\u0072\u0063\u0065\u0020\u0062\u0069\u0074\u006da\u0070\u0020\u0069\u0073 n\u0069\u006c");};if _gaed ==nil {return nil ,_a .Error (_geaae ,"'\u006da\u0073\u006b\u0027\u0020\u0062\u0069\u0074\u006da\u0070\u0020\u0069\u0073 n\u0069\u006c"); -};if _cebde !=4&&_cebde !=8{return nil ,_a .Error (_geaae ,"\u0063\u006f\u006en\u0065\u0063\u0074\u0069v\u0069\u0074\u0079\u0020\u006e\u006f\u0074 \u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0034\u002c\u0038\u007d");};var _cbcac error ; -_eca ,_cbcac =_agbb (_eca ,_effeg );if _cbcac !=nil {return nil ,_a .Wrap (_cbcac ,_geaae ,"\u0063o\u0070y\u0020\u0073\u006f\u0075\u0072c\u0065\u0020t\u006f\u0020\u0027\u0064\u0027");};_fdce :=_effeg .createTemplate ();_gaed .setPadBits (0);for _acbg :=0; -_acbg < _faee ;_acbg ++{_fdce ,_cbcac =_agbb (_fdce ,_eca );if _cbcac !=nil {return nil ,_a .Wrapf (_cbcac ,_geaae ,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064",_acbg );};if _cbcac =_bgae (_eca ,_gaed ,_cebde );_cbcac !=nil {return nil ,_a .Wrapf (_cbcac ,_geaae ,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064",_acbg ); -};if _fdce .Equals (_eca ){break ;};};return _eca ,nil ;};func _egag (_gfb ,_fffa int )int {if _gfb < _fffa {return _gfb ;};return _fffa ;};func (_cgga Points )GetGeometry (i int )(_gaabg ,_ffcf float32 ,_cagd error ){if i > len (_cgga )-1{return 0,0,_a .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065\u0074","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};_aega :=_cgga [i ];return _aega .X ,_aega .Y ,nil ;};func (_babf *Bitmap )GetComponents (components Component ,maxWidth ,maxHeight int )(_fdcc *Bitmaps ,_ecdf *Boxes ,_gacf error ){const _bbb ="B\u0069t\u006d\u0061\u0070\u002e\u0047\u0065\u0074\u0043o\u006d\u0070\u006f\u006een\u0074\u0073"; -if _babf ==nil {return nil ,nil ,_a .Error (_bbb ,"\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0042\u0069\u0074\u006da\u0070\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069n\u0065\u0064\u002e");};switch components {case ComponentConn ,ComponentCharacters ,ComponentWords :default:return nil ,nil ,_a .Error (_bbb ,"\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065n\u0074s\u0020\u0070\u0061\u0072\u0061\u006d\u0065t\u0065\u0072"); -};if _babf .Zero (){_ecdf =&Boxes {};_fdcc =&Bitmaps {};return _fdcc ,_ecdf ,nil ;};switch components {case ComponentConn :_fdcc =&Bitmaps {};if _ecdf ,_gacf =_babf .ConnComponents (_fdcc ,8);_gacf !=nil {return nil ,nil ,_a .Wrap (_gacf ,_bbb ,"\u006e\u006f \u0070\u0072\u0065p\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067"); -};case ComponentCharacters :_fccc ,_feag :=MorphSequence (_babf ,MorphProcess {Operation :MopClosing ,Arguments :[]int {1,6}});if _feag !=nil {return nil ,nil ,_a .Wrap (_feag ,_bbb ,"\u0063h\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067"); -};if _dc .Log .IsLogLevel (_dc .LogLevelTrace ){_dc .Log .Trace ("\u0043o\u006d\u0070o\u006e\u0065\u006e\u0074C\u0068\u0061\u0072a\u0063\u0074\u0065\u0072\u0073\u0020\u0062\u0069\u0074ma\u0070\u0020\u0061f\u0074\u0065r\u0020\u0063\u006c\u006f\u0073\u0069n\u0067\u003a \u0025\u0073",_fccc .String ()); -};_geaa :=&Bitmaps {};_ecdf ,_feag =_fccc .ConnComponents (_geaa ,8);if _feag !=nil {return nil ,nil ,_a .Wrap (_feag ,_bbb ,"\u0063h\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067"); -};if _dc .Log .IsLogLevel (_dc .LogLevelTrace ){_dc .Log .Trace ("\u0043\u006f\u006d\u0070\u006f\u006ee\u006e\u0074\u0043\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0062\u0069\u0074\u006d\u0061\u0070\u0020a\u0066\u0074\u0065\u0072\u0020\u0063\u006f\u006e\u006e\u0065\u0063\u0074\u0069\u0076i\u0074y\u003a\u0020\u0025\u0073",_geaa .String ()); -};if _fdcc ,_feag =_geaa .ClipToBitmap (_babf );_feag !=nil {return nil ,nil ,_a .Wrap (_feag ,_bbb ,"\u0063h\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067");};case ComponentWords :_adbd :=1; -var _bca *Bitmap ;switch {case _babf .XResolution <=200:_bca =_babf ;case _babf .XResolution <=400:_adbd =2;_bca ,_gacf =_ddd (_babf ,1,0,0,0);if _gacf !=nil {return nil ,nil ,_a .Wrap (_gacf ,_bbb ,"w\u006f\u0072\u0064\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0020\u002d \u0078\u0072\u0065s\u003c=\u0034\u0030\u0030"); -};default:_adbd =4;_bca ,_gacf =_ddd (_babf ,1,1,0,0);if _gacf !=nil {return nil ,nil ,_a .Wrap (_gacf ,_bbb ,"\u0077\u006f\u0072\u0064 \u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073 \u002d \u0078\u0072\u0065\u0073\u0020\u003e\u00204\u0030\u0030"); -};};_egfbb ,_ ,_befee :=_bgfb (_bca );if _befee !=nil {return nil ,nil ,_a .Wrap (_befee ,_bbb ,"\u0077o\u0072d\u0020\u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073");};_edgd ,_befee :=_dcda (_egfbb ,_adbd );if _befee !=nil {return nil ,nil ,_a .Wrap (_befee ,_bbb ,"\u0077o\u0072d\u0020\u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073"); -};_bgg :=&Bitmaps {};if _ecdf ,_befee =_edgd .ConnComponents (_bgg ,4);_befee !=nil {return nil ,nil ,_a .Wrap (_befee ,_bbb ,"\u0077\u006f\u0072\u0064\u0020\u0070r\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u002c\u0020\u0063\u006f\u006en\u0065\u0063\u0074\u0020\u0065\u0078\u0070a\u006e\u0064\u0065\u0064"); -};if _fdcc ,_befee =_bgg .ClipToBitmap (_babf );_befee !=nil {return nil ,nil ,_a .Wrap (_befee ,_bbb ,"\u0077o\u0072d\u0020\u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073");};};_fdcc ,_gacf =_fdcc .SelectBySize (maxWidth ,maxHeight ,LocSelectIfBoth ,SizeSelectIfLTE ); -if _gacf !=nil {return nil ,nil ,_a .Wrap (_gacf ,_bbb ,"");};_ecdf ,_gacf =_ecdf .SelectBySize (maxWidth ,maxHeight ,LocSelectIfBoth ,SizeSelectIfLTE );if _gacf !=nil {return nil ,nil ,_a .Wrap (_gacf ,_bbb ,"");};return _fdcc ,_ecdf ,nil ;};func TstDSymbol (t *_f .T ,scale ...int )*Bitmap {_gcccbc ,_deba :=NewWithData (4,5,[]byte {0xf0,0x90,0x90,0x90,0xE0}); -_g .NoError (t ,_deba );return TstGetScaledSymbol (t ,_gcccbc ,scale ...);};func (_fabf *byHeight )Len ()int {return len (_fabf .Values )};func init (){for _gcfa :=0;_gcfa < 256;_gcfa ++{_eab [_gcfa ]=uint8 (_gcfa &0x1)+(uint8 (_gcfa >>1)&0x1)+(uint8 (_gcfa >>2)&0x1)+(uint8 (_gcfa >>3)&0x1)+(uint8 (_gcfa >>4)&0x1)+(uint8 (_gcfa >>5)&0x1)+(uint8 (_gcfa >>6)&0x1)+(uint8 (_gcfa >>7)&0x1); -};};func (_ggaf *Bitmap )thresholdPixelSum (_ffa int )bool {var (_edce int ;_febc uint8 ;_fgff byte ;_fagg int ;);_baec :=_ggaf .RowStride ;_bdac :=uint (_ggaf .Width &0x07);if _bdac !=0{_febc =uint8 ((0xff<<(8-_bdac ))&0xff);_baec --;};for _dcgf :=0;_dcgf < _ggaf .Height ; -_dcgf ++{for _fagg =0;_fagg < _baec ;_fagg ++{_fgff =_ggaf .Data [_dcgf *_ggaf .RowStride +_fagg ];_edce +=int (_eab [_fgff ]);};if _bdac !=0{_fgff =_ggaf .Data [_dcgf *_ggaf .RowStride +_fagg ]&_febc ;_edce +=int (_eab [_fgff ]);};if _edce > _ffa {return true ; -};};return false ;};func _cac (_gag *Bitmap ,_dca ,_cg int )(*Bitmap ,error ){const _cge ="e\u0078\u0070\u0061\u006edB\u0069n\u0061\u0072\u0079\u0052\u0065p\u006c\u0069\u0063\u0061\u0074\u0065";if _gag ==nil {return nil ,_a .Error (_cge ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if _dca <=0||_cg <=0{return nil ,_a .Error (_cge ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0063\u0061l\u0065\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020<\u003d\u0020\u0030");};if _dca ==_cg {if _dca ==1{_daef ,_efe :=_agbb (nil ,_gag ); -if _efe !=nil {return nil ,_a .Wrap (_efe ,_cge ,"\u0078\u0046\u0061\u0063\u0074\u0020\u003d\u003d\u0020y\u0046\u0061\u0063\u0074");};return _daef ,nil ;};if _dca ==2||_dca ==4||_dca ==8{_dag ,_acg :=_abf (_gag ,_dca );if _acg !=nil {return nil ,_a .Wrap (_acg ,_cge ,"\u0078\u0046a\u0063\u0074\u0020i\u006e\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d"); -};return _dag ,nil ;};};_bff :=_dca *_gag .Width ;_gac :=_cg *_gag .Height ;_fgd :=New (_bff ,_gac );_ded :=_fgd .RowStride ;var (_gfg ,_gdg ,_bfc ,_cef ,_abg int ;_afg byte ;_bbc error ;);for _gdg =0;_gdg < _gag .Height ;_gdg ++{_gfg =_cg *_gdg *_ded ; -for _bfc =0;_bfc < _gag .Width ;_bfc ++{if _db :=_gag .GetPixel (_bfc ,_gdg );_db {_abg =_dca *_bfc ;for _cef =0;_cef < _dca ;_cef ++{_fgd .setBit (_gfg *8+_abg +_cef );};};};for _cef =1;_cef < _cg ;_cef ++{_gcc :=_gfg +_cef *_ded ;for _afc :=0;_afc < _ded ; -_afc ++{if _afg ,_bbc =_fgd .GetByte (_gfg +_afc );_bbc !=nil {return nil ,_a .Wrapf (_bbc ,_cge ,"\u0072\u0065\u0070\u006cic\u0061\u0074\u0069\u006e\u0067\u0020\u006c\u0069\u006e\u0065\u003a\u0020\u0027\u0025d\u0027",_cef );};if _bbc =_fgd .SetByte (_gcc +_afc ,_afg ); -_bbc !=nil {return nil ,_a .Wrap (_bbc ,_cge ,"\u0053\u0065\u0074\u0074in\u0067\u0020\u0062\u0079\u0074\u0065\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};};};};return _fgd ,nil ;};func (_bgdf *Bitmap )CreateTemplate ()*Bitmap {return _bgdf .createTemplate ()}; -func Blit (src *Bitmap ,dst *Bitmap ,x ,y int ,op CombinationOperator )error {var _gcee ,_fdbg int ;_fcbb :=src .RowStride -1;if x < 0{_fdbg =-x ;x =0;}else if x +src .Width > dst .Width {_fcbb -=src .Width +x -dst .Width ;};if y < 0{_gcee =-y ;y =0;_fdbg +=src .RowStride ; -_fcbb +=src .RowStride ;}else if y +src .Height > dst .Height {_gcee =src .Height +y -dst .Height ;};var (_ddeb int ;_eba error ;);_bffa :=x &0x07;_deec :=8-_bffa ;_gfaf :=src .Width &0x07;_fcfg :=_deec -_gfaf ;_feafc :=_deec &0x07!=0;_bafc :=src .Width <=((_fcbb -_fdbg )<<3)+_deec ; -_bgf :=dst .GetByteIndex (x ,y );_dfg :=_gcee +dst .Height ;if src .Height > _dfg {_ddeb =_dfg ;}else {_ddeb =src .Height ;};switch {case !_feafc :_eba =_dda (src ,dst ,_gcee ,_ddeb ,_bgf ,_fdbg ,_fcbb ,op );case _bafc :_eba =_bdda (src ,dst ,_gcee ,_ddeb ,_bgf ,_fdbg ,_fcbb ,_fcfg ,_bffa ,_deec ,op ); -default:_eba =_dcgb (src ,dst ,_gcee ,_ddeb ,_bgf ,_fdbg ,_fcbb ,_fcfg ,_bffa ,_deec ,op ,_gfaf );};return _eba ;};func (_gdec *Bitmap )centroid (_ebda ,_fcba []int )(Point ,error ){_badbd :=Point {};_gdec .setPadBits (0);if len (_ebda )==0{_ebda =_feeb (); -};if len (_fcba )==0{_fcba =_acea ();};var _ageg ,_ggfa ,_ddebc ,_fcccf ,_dccad ,_edbc int ;var _ggcd byte ;for _dccad =0;_dccad < _gdec .Height ;_dccad ++{_dfeg :=_gdec .RowStride *_dccad ;_fcccf =0;for _edbc =0;_edbc < _gdec .RowStride ;_edbc ++{_ggcd =_gdec .Data [_dfeg +_edbc ]; -if _ggcd !=0{_fcccf +=_fcba [_ggcd ];_ageg +=_ebda [_ggcd ]+_edbc *8*_fcba [_ggcd ];};};_ddebc +=_fcccf ;_ggfa +=_fcccf *_dccad ;};if _ddebc !=0{_badbd .X =float32 (_ageg )/float32 (_ddebc );_badbd .Y =float32 (_ggfa )/float32 (_ddebc );};return _badbd ,nil ; -};func _gcaf (_cdga ,_accg *Bitmap ,_aceb *Selection )(*Bitmap ,error ){const _dded ="\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u004d\u006f\u0072\u0070\u0068A\u0072\u0067\u0073\u0032";var _afeg ,_ggeb int ;if _accg ==nil {return nil ,_a .Error (_dded ,"s\u006fu\u0072\u0063\u0065\u0020\u0062\u0069\u0074\u006da\u0070\u0020\u0069\u0073 n\u0069\u006c"); -};if _aceb ==nil {return nil ,_a .Error (_dded ,"\u0073e\u006c \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};_afeg =_aceb .Width ;_ggeb =_aceb .Height ;if _afeg ==0||_ggeb ==0{return nil ,_a .Error (_dded ,"\u0073\u0065\u006c\u0020\u006f\u0066\u0020\u0073\u0069\u007a\u0065\u0020\u0030"); -};if _cdga ==nil {return _accg .createTemplate (),nil ;};if _ecdfb :=_cdga .resizeImageData (_accg );_ecdfb !=nil {return nil ,_ecdfb ;};return _cdga ,nil ;};func _gbaa (_fefg ,_edff *Bitmap ,_cdff ,_bcaed int )(*Bitmap ,error ){const _cccdef ="\u0065\u0072\u006f\u0064\u0065\u0042\u0072\u0069\u0063\u006b"; -if _edff ==nil {return nil ,_a .Error (_cccdef ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _cdff < 1||_bcaed < 1{return nil ,_a .Error (_cccdef ,"\u0068\u0073\u0069\u007a\u0065\u0020\u0061\u006e\u0064\u0020\u0076\u0073\u0069\u007a\u0065\u0020\u0061\u0072e\u0020\u006e\u006f\u0074\u0020\u0067\u0072e\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006fr\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0031"); -};if _cdff ==1&&_bcaed ==1{_gaf ,_bdbc :=_agbb (_fefg ,_edff );if _bdbc !=nil {return nil ,_a .Wrap (_bdbc ,_cccdef ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u0026\u0026 \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};return _gaf ,nil ;};if _cdff ==1||_bcaed ==1{_dgaade :=SelCreateBrick (_bcaed ,_cdff ,_bcaed /2,_cdff /2,SelHit );_efcb ,_dafaa :=_bbbb (_fefg ,_edff ,_dgaade );if _dafaa !=nil {return nil ,_a .Wrap (_dafaa ,_cccdef ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};return _efcb ,nil ;};_gfge :=SelCreateBrick (1,_cdff ,0,_cdff /2,SelHit );_fade :=SelCreateBrick (_bcaed ,1,_bcaed /2,0,SelHit );_deea ,_cfab :=_bbbb (nil ,_edff ,_gfge );if _cfab !=nil {return nil ,_a .Wrap (_cfab ,_cccdef ,"\u0031s\u0074\u0020\u0065\u0072\u006f\u0064e"); -};_fefg ,_cfab =_bbbb (_fefg ,_deea ,_fade );if _cfab !=nil {return nil ,_a .Wrap (_cfab ,_cccdef ,"\u0032n\u0064\u0020\u0065\u0072\u006f\u0064e");};return _fefg ,nil ;};const (_ LocationFilter =iota ;LocSelectWidth ;LocSelectHeight ;LocSelectXVal ;LocSelectYVal ; -LocSelectIfEither ;LocSelectIfBoth ;);func TstISymbol (t *_f .T ,scale ...int )*Bitmap {_egacg ,_eeaea :=NewWithData (1,5,[]byte {0x80,0x80,0x80,0x80,0x80});_g .NoError (t ,_eeaea );return TstGetScaledSymbol (t ,_egacg ,scale ...);};type LocationFilter int ; -func (_fagcb *Bitmaps )SelectByIndexes (idx []int )(*Bitmaps ,error ){const _adbga ="B\u0069\u0074\u006d\u0061\u0070\u0073.\u0053\u006f\u0072\u0074\u0049\u006e\u0064\u0065\u0078e\u0073\u0042\u0079H\u0065i\u0067\u0068\u0074";_adaf ,_dbca :=_fagcb .selectByIndexes (idx ); -if _dbca !=nil {return nil ,_a .Wrap (_dbca ,_adbga ,"");};return _adaf ,nil ;};func Dilate (d *Bitmap ,s *Bitmap ,sel *Selection )(*Bitmap ,error ){return _bbea (d ,s ,sel )};func _dggg (_fgc *Bitmap ,_gdda ,_gefb int ,_deegc ,_dbed int ,_ddec RasterOperator ,_ebfa *Bitmap ,_afaab ,_gagf int )error {var _gcdg ,_fcda ,_fbddg ,_gefgbf int ; -if _gdda < 0{_afaab -=_gdda ;_deegc +=_gdda ;_gdda =0;};if _afaab < 0{_gdda -=_afaab ;_deegc +=_afaab ;_afaab =0;};_gcdg =_gdda +_deegc -_fgc .Width ;if _gcdg > 0{_deegc -=_gcdg ;};_fcda =_afaab +_deegc -_ebfa .Width ;if _fcda > 0{_deegc -=_fcda ;};if _gefb < 0{_gagf -=_gefb ; -_dbed +=_gefb ;_gefb =0;};if _gagf < 0{_gefb -=_gagf ;_dbed +=_gagf ;_gagf =0;};_fbddg =_gefb +_dbed -_fgc .Height ;if _fbddg > 0{_dbed -=_fbddg ;};_gefgbf =_gagf +_dbed -_ebfa .Height ;if _gefgbf > 0{_dbed -=_gefgbf ;};if _deegc <=0||_dbed <=0{return nil ; -};var _acfbd error ;switch {case _gdda &7==0&&_afaab &7==0:_acfbd =_gfbb (_fgc ,_gdda ,_gefb ,_deegc ,_dbed ,_ddec ,_ebfa ,_afaab ,_gagf );case _gdda &7==_afaab &7:_acfbd =_fcdf (_fgc ,_gdda ,_gefb ,_deegc ,_dbed ,_ddec ,_ebfa ,_afaab ,_gagf );default:_acfbd =_bcdab (_fgc ,_gdda ,_gefb ,_deegc ,_dbed ,_ddec ,_ebfa ,_afaab ,_gagf ); -};if _acfbd !=nil {return _a .Wrap (_acfbd ,"r\u0061\u0073\u0074\u0065\u0072\u004f\u0070\u004c\u006f\u0077","");};return nil ;};func (_deg *Bitmap )SizesEqual (s *Bitmap )bool {if _deg ==s {return true ;};if _deg .Width !=s .Width ||_deg .Height !=s .Height {return false ; -};return true ;};type RasterOperator int ;func (_fgabd *Bitmaps )WidthSorter ()func (_ebfg ,_bcdgg int )bool {return func (_fdbf ,_bgcb int )bool {return _fgabd .Values [_fdbf ].Width < _fgabd .Values [_bgcb ].Width };};func (_gaec *Bitmap )resizeImageData (_fdab *Bitmap )error {if _fdab ==nil {return _a .Error ("\u0072e\u0073i\u007a\u0065\u0049\u006d\u0061\u0067\u0065\u0044\u0061\u0074\u0061","\u0073r\u0063 \u0069\u0073\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if _gaec .SizesEqual (_fdab ){return nil ;};_gaec .Data =make ([]byte ,len (_fdab .Data ));_gaec .Width =_fdab .Width ;_gaec .Height =_fdab .Height ;_gaec .RowStride =_fdab .RowStride ;return nil ;};func (_cfcf *ClassedPoints )SortByY (){_cfcf ._effdc =_cfcf .ySortFunction (); -_d .Sort (_cfcf )};func (_ggcg *ClassedPoints )GroupByY ()([]*ClassedPoints ,error ){const _becd ="\u0043\u006c\u0061\u0073se\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0072\u006f\u0075\u0070\u0042y\u0059";if _aaac :=_ggcg .validateIntSlice (); -_aaac !=nil {return nil ,_a .Wrap (_aaac ,_becd ,"");};if _ggcg .IntSlice .Size ()==0{return nil ,_a .Error (_becd ,"\u004e\u006f\u0020\u0063la\u0073\u0073\u0065\u0073\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064");};_ggcg .SortByY ();var (_fcec []*ClassedPoints ; -_bdbgg int ;);_aggc :=-1;var _fcab *ClassedPoints ;for _dbcga :=0;_dbcga < len (_ggcg .IntSlice );_dbcga ++{_bdbgg =int (_ggcg .YAtIndex (_dbcga ));if _bdbgg !=_aggc {_fcab =&ClassedPoints {Points :_ggcg .Points };_aggc =_bdbgg ;_fcec =append (_fcec ,_fcab ); -};_fcab .IntSlice =append (_fcab .IntSlice ,_ggcg .IntSlice [_dbcga ]);};for _ ,_fbfad :=range _fcec {_fbfad .SortByX ();};return _fcec ,nil ;};func (_cggef *ClassedPoints )XAtIndex (i int )float32 {return (*_cggef .Points )[_cggef .IntSlice [i ]].X }; -func (_dcb *Bitmap )GetByte (index int )(byte ,error ){if index > len (_dcb .Data )-1||index < 0{return 0,_a .Errorf ("\u0047e\u0074\u0042\u0079\u0074\u0065","\u0069\u006e\u0064\u0065x:\u0020\u0025\u0064\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006eg\u0065",index ); -};return _dcb .Data [index ],nil ;};func (_dbfa *Bitmaps )GetBox (i int )(*_fg .Rectangle ,error ){const _fbbdc ="\u0047\u0065\u0074\u0042\u006f\u0078";if _dbfa ==nil {return nil ,_a .Error (_fbbdc ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0042\u0069\u0074\u006d\u0061\u0070s\u0027"); -};if i > len (_dbfa .Boxes )-1{return nil ,_a .Errorf (_fbbdc ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return _dbfa .Boxes [i ],nil ;};func _bbea (_ffae *Bitmap ,_cbg *Bitmap ,_gaba *Selection )(*Bitmap ,error ){var (_cffba *Bitmap ; -_eddeg error ;);_ffae ,_eddeg =_cefb (_ffae ,_cbg ,_gaba ,&_cffba );if _eddeg !=nil {return nil ,_eddeg ;};if _eddeg =_ffae .clearAll ();_eddeg !=nil {return nil ,_eddeg ;};var _bfdf SelectionValue ;for _fbde :=0;_fbde < _gaba .Height ;_fbde ++{for _gada :=0; -_gada < _gaba .Width ;_gada ++{_bfdf =_gaba .Data [_fbde ][_gada ];if _bfdf ==SelHit {if _eddeg =_ffae .RasterOperation (_gada -_gaba .Cx ,_fbde -_gaba .Cy ,_cbg .Width ,_cbg .Height ,PixSrcOrDst ,_cffba ,0,0);_eddeg !=nil {return nil ,_eddeg ;};};};}; -return _ffae ,nil ;};func (_baac *Bitmap )addPadBits ()(_cfa error ){const _adbc ="\u0062\u0069\u0074\u006d\u0061\u0070\u002e\u0061\u0064\u0064\u0050\u0061d\u0042\u0069\u0074\u0073";_dde :=_baac .Width %8;if _dde ==0{return nil ;};_ccc :=_baac .Width /8; -_beg :=_e .NewReader (_baac .Data );_afgb :=make ([]byte ,_baac .Height *_baac .RowStride );_gaga :=_e .NewWriterMSB (_afgb );_afae :=make ([]byte ,_ccc );var (_ccd int ;_gagg uint64 ;);for _ccd =0;_ccd < _baac .Height ;_ccd ++{if _ ,_cfa =_beg .Read (_afae ); -_cfa !=nil {return _a .Wrap (_cfa ,_adbc ,"\u0066u\u006c\u006c\u0020\u0062\u0079\u0074e");};if _ ,_cfa =_gaga .Write (_afae );_cfa !=nil {return _a .Wrap (_cfa ,_adbc ,"\u0066\u0075\u006c\u006c\u0020\u0062\u0079\u0074\u0065\u0073");};if _gagg ,_cfa =_beg .ReadBits (byte (_dde )); -_cfa !=nil {return _a .Wrap (_cfa ,_adbc ,"\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0062\u0069\u0074\u0073");};if _cfa =_gaga .WriteByte (byte (_gagg )< 0{_agec ++;_afd ++;};};for _bfa :=0;_bfa < _abgb ;_bfa ++{_efg :=_bcf *_bfa +_ddgc ;var _gffgf int ;if _bfa ==_abgb -1{_ddgc =0;_gffgf =_efbg .Height ;}else {_gffgf =_efg +_bcf ; -if (_efbg .Height -_ddgc )%_abgb > 0{_ddgc ++;_gffgf ++;};};var _bdg ,_cdf ,_aae ,_daad int ;_ggde :=(_gbad +_afd )/2;_fdc :=(_efg +_gffgf )/2;for _gbc :=_gbad ;_gbc < _afd ;_gbc ++{for _ddea :=_efg ;_ddea < _gffgf ;_ddea ++{if _ege .GetPixel (_gbc ,_ddea ){if _gbc < _ggde {_bdg ++; -}else {_cdf ++;};if _ddea < _fdc {_daad ++;}else {_aae ++;};};};};_ffg [_egcg ][_bfa ]=_bdg +_cdf ;_abe [_egcg *2][_bfa ]=_bdg ;_abe [_egcg *2+1][_bfa ]=_cdf ;_dcg [_egcg ][_bfa *2]=_daad ;_dcg [_egcg ][_bfa *2+1]=_aae ;};};for _cgfa :=0;_cgfa < _abgb *2-1; -_cgfa ++{for _ecd :=0;_ecd < (_abgb -1);_ecd ++{var _fdad int ;for _gggb :=0;_gggb < 2;_gggb ++{for _eaac :=0;_eaac < 2;_eaac ++{_fdad +=_abe [_cgfa +_gggb ][_ecd +_eaac ];};};if _fdad > _caba {return false ;};};};for _fgg :=0;_fgg < (_abgb -1);_fgg ++{for _bgdd :=0; -_bgdd < ((_abgb *2)-1);_bgdd ++{var _bace int ;for _bgddf :=0;_bgddf < 2;_bgddf ++{for _egbd :=0;_egbd < 2;_egbd ++{_bace +=_dcg [_fgg +_bgddf ][_bgdd +_egbd ];};};if _bace > _dbba {return false ;};};};for _gef :=0;_gef < (_abgb -2);_gef ++{for _feee :=0; -_feee < (_abgb -2);_feee ++{var _bddb ,_gee int ;for _dfb :=0;_dfb < 3;_dfb ++{for _aecc :=0;_aecc < 3;_aecc ++{if _dfb ==_aecc {_bddb +=_ffg [_gef +_dfb ][_feee +_aecc ];};if (2-_dfb )==_aecc {_gee +=_ffg [_gef +_dfb ][_feee +_aecc ];};};};if _bddb > _caba ||_gee > _caba {return false ; -};};};for _fdag :=0;_fdag < (_abgb -1);_fdag ++{for _gbcg :=0;_gbcg < (_abgb -1);_gbcg ++{var _ddgd int ;for _dfee :=0;_dfee < 2;_dfee ++{for _fead :=0;_fead < 2;_fead ++{_ddgd +=_ffg [_fdag +_dfee ][_gbcg +_fead ];};};if float64 (_ddgd )> _cecc {return false ; -};};};return true ;};func _bdca (_gdac ,_bbgd *Bitmap ,_cffc *Selection )(*Bitmap ,error ){const _eccbc ="\u006f\u0070\u0065\u006e";var _gdgc error ;_gdac ,_gdgc =_gcaf (_gdac ,_bbgd ,_cffc );if _gdgc !=nil {return nil ,_a .Wrap (_gdgc ,_eccbc ,"");};_adbb ,_gdgc :=_bbbb (nil ,_bbgd ,_cffc ); -if _gdgc !=nil {return nil ,_a .Wrap (_gdgc ,_eccbc ,"");};_ ,_gdgc =_bbea (_gdac ,_adbb ,_cffc );if _gdgc !=nil {return nil ,_a .Wrap (_gdgc ,_eccbc ,"");};return _gdac ,nil ;};func _bcdab (_fdbe *Bitmap ,_eecb ,_cbfg ,_ddba ,_effg int ,_fdbc RasterOperator ,_fbfb *Bitmap ,_fcfa ,_gdgf int )error {var (_dfdc bool ; -_becg bool ;_fbeee byte ;_gbba int ;_fgfeg int ;_fcdb int ;_dbga int ;_bcdaa bool ;_ecca int ;_eaeeg int ;_abfbge int ;_aede bool ;_befa byte ;_fggae int ;_deda int ;_bbag int ;_ecfbg byte ;_ebbf int ;_gfag int ;_efeg uint ;_acdae uint ;_cbddg byte ;_gcccb shift ; -_feac bool ;_aebf bool ;_degc ,_agegb int ;);if _fcfa &7!=0{_gfag =8-(_fcfa &7);};if _eecb &7!=0{_fgfeg =8-(_eecb &7);};if _gfag ==0&&_fgfeg ==0{_cbddg =_gafa [0];}else {if _fgfeg > _gfag {_efeg =uint (_fgfeg -_gfag );}else {_efeg =uint (8-(_gfag -_fgfeg )); -};_acdae =8-_efeg ;_cbddg =_gafa [_efeg ];};if (_eecb &7)!=0{_dfdc =true ;_gbba =8-(_eecb &7);_fbeee =_gafa [_gbba ];_fcdb =_fdbe .RowStride *_cbfg +(_eecb >>3);_dbga =_fbfb .RowStride *_gdgf +(_fcfa >>3);_ebbf =8-(_fcfa &7);if _gbba > _ebbf {_gcccb =_deaa ; -if _ddba >=_gfag {_feac =true ;};}else {_gcccb =_cgacd ;};};if _ddba < _gbba {_becg =true ;_fbeee &=_bbef [8-_gbba +_ddba ];};if !_becg {_ecca =(_ddba -_gbba )>>3;if _ecca !=0{_bcdaa =true ;_eaeeg =_fdbe .RowStride *_cbfg +((_eecb +_fgfeg )>>3);_abfbge =_fbfb .RowStride *_gdgf +((_fcfa +_fgfeg )>>3); -};};_fggae =(_eecb +_ddba )&7;if !(_becg ||_fggae ==0){_aede =true ;_befa =_bbef [_fggae ];_deda =_fdbe .RowStride *_cbfg +((_eecb +_fgfeg )>>3)+_ecca ;_bbag =_fbfb .RowStride *_gdgf +((_fcfa +_fgfeg )>>3)+_ecca ;if _fggae > int (_acdae ){_aebf =true ; -};};switch _fdbc {case PixSrc :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg );};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ; -};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],_ecfbg ,_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg ); -_fdbe .Data [_eaeeg +_agegb ]=_ecfbg ;};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg ); -};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],_ecfbg ,_befa );_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixNotSrc :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg ); -};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],^_ecfbg ,_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg ); -_fdbe .Data [_eaeeg +_agegb ]=^_ecfbg ;};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg ); -};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],^_ecfbg ,_befa );_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixSrcOrDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg ); -};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],_ecfbg |_fdbe .Data [_fcdb ],_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0; -_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]|=_ecfbg ;};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0; -_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],_ecfbg |_fdbe .Data [_deda ],_befa );_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ; -};};case PixSrcAndDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg );};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],_ecfbg &_fdbe .Data [_fcdb ],_fbeee ); -_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]&=_ecfbg ; -};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],_ecfbg &_fdbe .Data [_deda ],_befa ); -_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixSrcXorDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg ); -};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],_ecfbg ^_fdbe .Data [_fcdb ],_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0; -_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]^=_ecfbg ;};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0; -_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],_ecfbg ^_fdbe .Data [_deda ],_befa );_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ; -};};case PixNotSrcOrDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg );};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],^_ecfbg |_fdbe .Data [_fcdb ],_fbeee ); -_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]|=^_ecfbg ; -};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],^_ecfbg |_fdbe .Data [_deda ],_befa ); -_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixNotSrcAndDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg ); -};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],^_ecfbg &_fdbe .Data [_fcdb ],_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0; -_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]&=^_ecfbg ;};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0; -_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],^_ecfbg &_fdbe .Data [_deda ],_befa );_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ; -};};case PixSrcOrNotDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg );};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],_ecfbg |^_fdbe .Data [_fcdb ],_fbeee ); -_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]=_ecfbg |^_fdbe .Data [_eaeeg +_agegb ]; -};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],_ecfbg |^_fdbe .Data [_deda ],_befa ); -_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixSrcAndNotDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg ); -};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],_ecfbg &^_fdbe .Data [_fcdb ],_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0; -_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]=_ecfbg &^_fdbe .Data [_eaeeg +_agegb ];};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ; -};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],_ecfbg &^_fdbe .Data [_deda ],_befa );_deda +=_fdbe .RowStride ; -_bbag +=_fbfb .RowStride ;};};case PixNotPixSrcOrDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg );};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ; -};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],^(_ecfbg |_fdbe .Data [_fcdb ]),_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg ); -_fdbe .Data [_eaeeg +_agegb ]=^(_ecfbg |_fdbe .Data [_eaeeg +_agegb ]);};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg ); -};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],^(_ecfbg |_fdbe .Data [_deda ]),_befa );_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixNotPixSrcAndDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ; -if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg );};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],^(_ecfbg &_fdbe .Data [_fcdb ]),_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ; -};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0;_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]=^(_ecfbg &_fdbe .Data [_eaeeg +_agegb ]); -};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ;};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],^(_ecfbg &_fdbe .Data [_deda ]),_befa ); -_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};case PixNotPixSrcXorDst :if _dfdc {for _degc =0;_degc < _effg ;_degc ++{if _gcccb ==_deaa {_ecfbg =_fbfb .Data [_dbga ]<<_efeg ;if _feac {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_dbga +1]>>_acdae ,_cbddg ); -};}else {_ecfbg =_fbfb .Data [_dbga ]>>_acdae ;};_fdbe .Data [_fcdb ]=_efgd (_fdbe .Data [_fcdb ],^(_ecfbg ^_fdbe .Data [_fcdb ]),_fbeee );_fcdb +=_fdbe .RowStride ;_dbga +=_fbfb .RowStride ;};};if _bcdaa {for _degc =0;_degc < _effg ;_degc ++{for _agegb =0; -_agegb < _ecca ;_agegb ++{_ecfbg =_efgd (_fbfb .Data [_abfbge +_agegb ]<<_efeg ,_fbfb .Data [_abfbge +_agegb +1]>>_acdae ,_cbddg );_fdbe .Data [_eaeeg +_agegb ]=^(_ecfbg ^_fdbe .Data [_eaeeg +_agegb ]);};_eaeeg +=_fdbe .RowStride ;_abfbge +=_fbfb .RowStride ; -};};if _aede {for _degc =0;_degc < _effg ;_degc ++{_ecfbg =_fbfb .Data [_bbag ]<<_efeg ;if _aebf {_ecfbg =_efgd (_ecfbg ,_fbfb .Data [_bbag +1]>>_acdae ,_cbddg );};_fdbe .Data [_deda ]=_efgd (_fdbe .Data [_deda ],^(_ecfbg ^_fdbe .Data [_deda ]),_befa ); -_deda +=_fdbe .RowStride ;_bbag +=_fbfb .RowStride ;};};default:_dc .Log .Debug ("\u004f\u0070e\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0070\u0065\u0072\u006d\u0069tt\u0065\u0064",_fdbc );return _a .Error ("\u0072a\u0073t\u0065\u0072\u004f\u0070\u0047e\u006e\u0065r\u0061\u006c\u004c\u006f\u0077","\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065r\u0061\u0074\u0069\u006f\u006e\u0020\u006eo\u0074\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064"); -};return nil ;};func (_aeed *Bitmap )SetDefaultPixel (){for _ddcg :=range _aeed .Data {_aeed .Data [_ddcg ]=byte (0xff);};};func (_bcd *Bitmap )setEightPartlyBytes (_cfaa ,_debba int ,_bgddc uint64 )(_fed error ){var (_cfc byte ;_bbad int ;);const _dcbg ="\u0073\u0065\u0074\u0045ig\u0068\u0074\u0050\u0061\u0072\u0074\u006c\u0079\u0042\u0079\u0074\u0065\u0073"; -for _dgcg :=1;_dgcg <=_debba ;_dgcg ++{_bbad =64-_dgcg *8;_cfc =byte (_bgddc >>uint (_bbad )&0xff);_dc .Log .Trace ("\u0074\u0065\u006d\u0070\u003a\u0020\u0025\u0030\u0038\u0062\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a %\u0064,\u0020\u0069\u0064\u0078\u003a\u0020\u0025\u0064\u002c\u0020\u0066\u0075l\u006c\u0042\u0079\u0074\u0065\u0073\u004e\u0075\u006d\u0062\u0065\u0072\u003a\u0020\u0025\u0064\u002c \u0073\u0068\u0069\u0066\u0074\u003a\u0020\u0025\u0064",_cfc ,_cfaa ,_cfaa +_dgcg -1,_debba ,_bbad ); -if _fed =_bcd .SetByte (_cfaa +_dgcg -1,_cfc );_fed !=nil {return _a .Wrap (_fed ,_dcbg ,"\u0066\u0075\u006c\u006c\u0042\u0079\u0074\u0065");};};_ebec :=_bcd .RowStride *8-_bcd .Width ;if _ebec ==0{return nil ;};_bbad -=8;_cfc =byte (_bgddc >>uint (_bbad )&0xff)<>3;len (data )< _baf {return nil ,_a .Errorf (_gfff ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064a\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u002e\u0020\u0054\u0068\u0065\u0020\u0064\u0061t\u0061\u0020s\u0068\u006fu\u006c\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0074 l\u0065\u0061\u0073\u0074\u003a\u0020\u0027\u0025\u0064'\u0020\u0062\u0079\u0074\u0065\u0073",len (data ),_baf ); -};if _afe :=_dce .addPadBits ();_afe !=nil {return nil ,_a .Wrap (_afe ,_gfff ,"");};return _dce ,nil ;};func (_gddg *Bitmaps )ClipToBitmap (s *Bitmap )(*Bitmaps ,error ){const _effeb ="B\u0069t\u006d\u0061\u0070\u0073\u002e\u0043\u006c\u0069p\u0054\u006f\u0042\u0069tm\u0061\u0070"; -if _gddg ==nil {return nil ,_a .Error (_effeb ,"\u0042\u0069\u0074\u006dap\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};if s ==nil {return nil ,_a .Error (_effeb ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); -};_bfdb :=len (_gddg .Values );_bcadg :=&Bitmaps {Values :make ([]*Bitmap ,_bfdb ),Boxes :make ([]*_fg .Rectangle ,_bfdb )};var (_cggc ,_cdbc *Bitmap ;_dcdac *_fg .Rectangle ;_baacf error ;);for _cgdc :=0;_cgdc < _bfdb ;_cgdc ++{if _cggc ,_baacf =_gddg .GetBitmap (_cgdc ); -_baacf !=nil {return nil ,_a .Wrap (_baacf ,_effeb ,"");};if _dcdac ,_baacf =_gddg .GetBox (_cgdc );_baacf !=nil {return nil ,_a .Wrap (_baacf ,_effeb ,"");};if _cdbc ,_baacf =s .clipRectangle (_dcdac ,nil );_baacf !=nil {return nil ,_a .Wrap (_baacf ,_effeb ,""); -};if _cdbc ,_baacf =_cdbc .And (_cggc );_baacf !=nil {return nil ,_a .Wrap (_baacf ,_effeb ,"");};_bcadg .Values [_cgdc ]=_cdbc ;_bcadg .Boxes [_cgdc ]=_dcdac ;};return _bcadg ,nil ;};func (_cbcacc *Bitmaps )AddBox (box *_fg .Rectangle ){_cbcacc .Boxes =append (_cbcacc .Boxes ,box )}; -type Selection struct{Height ,Width int ;Cx ,Cy int ;Name string ;Data [][]SelectionValue ;};func _fcdf (_cbbcd *Bitmap ,_cgefga ,_ddef ,_badbe ,_adag int ,_affg RasterOperator ,_adg *Bitmap ,_acdaa ,_acbb int )error {var (_bgaf bool ;_cgfb bool ;_aefc int ; -_fcfgd int ;_bgef int ;_eacec bool ;_fdg byte ;_ceegd int ;_dea int ;_beecb int ;_ecbd ,_acag int ;);_dgca :=8-(_cgefga &7);_dccab :=_gafa [_dgca ];_cae :=_cbbcd .RowStride *_ddef +(_cgefga >>3);_adecd :=_adg .RowStride *_acbb +(_acdaa >>3);if _badbe < _dgca {_bgaf =true ; -_dccab &=_bbef [8-_dgca +_badbe ];};if !_bgaf {_aefc =(_badbe -_dgca )>>3;if _aefc > 0{_cgfb =true ;_fcfgd =_cae +1;_bgef =_adecd +1;};};_ceegd =(_cgefga +_badbe )&7;if !(_bgaf ||_ceegd ==0){_eacec =true ;_fdg =_bbef [_ceegd ];_dea =_cae +1+_aefc ;_beecb =_adecd +1+_aefc ; -};switch _affg {case PixSrc :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],_adg .Data [_adecd ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ;};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0; -_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]=_adg .Data [_bgef +_acag ];};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],_adg .Data [_beecb ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixNotSrc :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],^_adg .Data [_adecd ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ;};if _cgfb {for _ecbd =0; -_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]=^_adg .Data [_bgef +_acag ];};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],^_adg .Data [_beecb ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixSrcOrDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],_adg .Data [_adecd ]|_cbbcd .Data [_cae ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]|=_adg .Data [_bgef +_acag ];};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],_adg .Data [_beecb ]|_cbbcd .Data [_dea ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixSrcAndDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],_adg .Data [_adecd ]&_cbbcd .Data [_cae ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]&=_adg .Data [_bgef +_acag ];};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],_adg .Data [_beecb ]&_cbbcd .Data [_dea ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixSrcXorDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],_adg .Data [_adecd ]^_cbbcd .Data [_cae ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]^=_adg .Data [_bgef +_acag ];};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],_adg .Data [_beecb ]^_cbbcd .Data [_dea ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixNotSrcOrDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],^(_adg .Data [_adecd ])|_cbbcd .Data [_cae ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]|=^(_adg .Data [_bgef +_acag ]);};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],^(_adg .Data [_beecb ])|_cbbcd .Data [_dea ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixNotSrcAndDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],^(_adg .Data [_adecd ])&_cbbcd .Data [_cae ],_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]&=^_adg .Data [_bgef +_acag ];};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],^(_adg .Data [_beecb ])&_cbbcd .Data [_dea ],_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixSrcOrNotDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],_adg .Data [_adecd ]|^(_cbbcd .Data [_cae ]),_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]=_adg .Data [_bgef +_acag ]|^(_cbbcd .Data [_fcfgd +_acag ]);};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0; -_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],_adg .Data [_beecb ]|^(_cbbcd .Data [_dea ]),_fdg );_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixSrcAndNotDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],_adg .Data [_adecd ]&^(_cbbcd .Data [_cae ]),_dccab ); -_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ;};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]=_adg .Data [_bgef +_acag ]&^(_cbbcd .Data [_fcfgd +_acag ]);};_fcfgd +=_cbbcd .RowStride ; -_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],_adg .Data [_beecb ]&^(_cbbcd .Data [_dea ]),_fdg );_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixNotPixSrcOrDst :for _ecbd =0; -_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],^(_adg .Data [_adecd ]|_cbbcd .Data [_cae ]),_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ;};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ; -_acag ++{_cbbcd .Data [_fcfgd +_acag ]=^(_adg .Data [_bgef +_acag ]|_cbbcd .Data [_fcfgd +_acag ]);};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],^(_adg .Data [_beecb ]|_cbbcd .Data [_dea ]),_fdg ); -_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixNotPixSrcAndDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],^(_adg .Data [_adecd ]&_cbbcd .Data [_cae ]),_dccab );_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ; -};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]=^(_adg .Data [_bgef +_acag ]&_cbbcd .Data [_fcfgd +_acag ]);};_fcfgd +=_cbbcd .RowStride ;_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0; -_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],^(_adg .Data [_beecb ]&_cbbcd .Data [_dea ]),_fdg );_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};case PixNotPixSrcXorDst :for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_cae ]=_efgd (_cbbcd .Data [_cae ],^(_adg .Data [_adecd ]^_cbbcd .Data [_cae ]),_dccab ); -_cae +=_cbbcd .RowStride ;_adecd +=_adg .RowStride ;};if _cgfb {for _ecbd =0;_ecbd < _adag ;_ecbd ++{for _acag =0;_acag < _aefc ;_acag ++{_cbbcd .Data [_fcfgd +_acag ]=^(_adg .Data [_bgef +_acag ]^_cbbcd .Data [_fcfgd +_acag ]);};_fcfgd +=_cbbcd .RowStride ; -_bgef +=_adg .RowStride ;};};if _eacec {for _ecbd =0;_ecbd < _adag ;_ecbd ++{_cbbcd .Data [_dea ]=_efgd (_cbbcd .Data [_dea ],^(_adg .Data [_beecb ]^_cbbcd .Data [_dea ]),_fdg );_dea +=_cbbcd .RowStride ;_beecb +=_adg .RowStride ;};};default:_dc .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070e\u0072\u0061\u0074o\u0072:\u0020\u0025\u0064",_affg ); -return _a .Error ("\u0072\u0061\u0073\u0074er\u004f\u0070\u0056\u0041\u006c\u0069\u0067\u006e\u0065\u0064\u004c\u006f\u0077","\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072"); -};return nil ;};func Copy (d ,s *Bitmap )(*Bitmap ,error ){return _agbb (d ,s )};func _ddd (_ffb *Bitmap ,_gfga ...int )(_gge *Bitmap ,_fcd error ){const _dbc ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0043\u0061\u0073\u0063\u0061\u0064\u0065"; -if _ffb ==nil {return nil ,_a .Error (_dbc ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};if len (_gfga )==0||len (_gfga )> 4{return nil ,_a .Error (_dbc ,"t\u0068\u0065\u0072\u0065\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0061\u0074\u0020\u006cea\u0073\u0074\u0020\u006fn\u0065\u0020\u0061\u006e\u0064\u0020\u0061\u0074\u0020mo\u0073\u0074 \u0034\u0020\u006c\u0065\u0076\u0065\u006c\u0073"); -};if _gfga [0]<=0{_dc .Log .Debug ("\u006c\u0065\u0076\u0065\u006c\u0031\u0020\u003c\u003d\u0020\u0030 \u002d\u0020\u006e\u006f\u0020\u0072\u0065\u0064\u0075\u0063t\u0069\u006f\u006e");_gge ,_fcd =_agbb (nil ,_ffb );if _fcd !=nil {return nil ,_a .Wrap (_fcd ,_dbc ,"l\u0065\u0076\u0065\u006c\u0031\u0020\u003c\u003d\u0020\u0030"); -};return _gge ,nil ;};_cff :=_fbc ();_gge =_ffb ;for _gcg ,_fb :=range _gfga {if _fb <=0{break ;};_gge ,_fcd =_bda (_gge ,_fb ,_cff );if _fcd !=nil {return nil ,_a .Wrapf (_fcd ,_dbc ,"\u006c\u0065\u0076\u0065\u006c\u0025\u0064\u0020\u0072\u0065\u0064\u0075c\u0074\u0069\u006f\u006e",_gcg ); -};};return _gge ,nil ;};func TstVSymbol (t *_f .T ,scale ...int )*Bitmap {_ffeg ,_dcefe :=NewWithData (5,5,[]byte {0x88,0x88,0x88,0x50,0x20});_g .NoError (t ,_dcefe );return TstGetScaledSymbol (t ,_ffeg ,scale ...);};var _eab [256]uint8 ;func (_edgbf *Bitmap )Copy ()*Bitmap {_gce :=make ([]byte ,len (_edgbf .Data )); -copy (_gce ,_edgbf .Data );return &Bitmap {Width :_edgbf .Width ,Height :_edgbf .Height ,RowStride :_edgbf .RowStride ,Data :_gce ,Color :_edgbf .Color ,Text :_edgbf .Text ,BitmapNumber :_edgbf .BitmapNumber ,Special :_edgbf .Special };};func (_gagb *Boxes )SelectBySize (width ,height int ,tp LocationFilter ,relation SizeComparison )(_agece *Boxes ,_fgga error ){const _gcb ="\u0042o\u0078e\u0073\u002e\u0053\u0065\u006ce\u0063\u0074B\u0079\u0053\u0069\u007a\u0065"; -if _gagb ==nil {return nil ,_a .Error (_gcb ,"b\u006f\u0078\u0065\u0073 '\u0062'\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064");};if len (*_gagb )==0{return _gagb ,nil ;};switch tp {case LocSelectWidth ,LocSelectHeight ,LocSelectIfEither ,LocSelectIfBoth :default:return nil ,_a .Errorf (_gcb ,"\u0069\u006e\u0076al\u0069\u0064\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0064",tp ); -};switch relation {case SizeSelectIfLT ,SizeSelectIfGT ,SizeSelectIfLTE ,SizeSelectIfGTE :default:return nil ,_a .Errorf (_gcb ,"i\u006e\u0076\u0061\u006c\u0069\u0064 \u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0020t\u0079\u0070\u0065:\u0020'\u0025\u0064\u0027",tp ); -};_edafc :=_gagb .makeSizeIndicator (width ,height ,tp ,relation );_cde ,_fgga :=_gagb .selectWithIndicator (_edafc );if _fgga !=nil {return nil ,_a .Wrap (_fgga ,_gcb ,"");};return _cde ,nil ;};func _bebe (_agdc ,_agge *Bitmap ,_bce CombinationOperator )*Bitmap {_bfag :=New (_agdc .Width ,_agdc .Height ); -for _ddaf :=0;_ddaf < len (_bfag .Data );_ddaf ++{_bfag .Data [_ddaf ]=_agf (_agdc .Data [_ddaf ],_agge .Data [_ddaf ],_bce );};return _bfag ;};func ClipBoxToRectangle (box *_fg .Rectangle ,wi ,hi int )(_dcfd *_fg .Rectangle ,_eeaa error ){const _ebc ="\u0043l\u0069p\u0042\u006f\u0078\u0054\u006fR\u0065\u0063t\u0061\u006e\u0067\u006c\u0065"; -if box ==nil {return nil ,_a .Error (_ebc ,"\u0027\u0062\u006f\u0078\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064");};if box .Min .X >=wi ||box .Min .Y >=hi ||box .Max .X <=0||box .Max .Y <=0{return nil ,_a .Error (_ebc ,"\u0027\u0062\u006fx'\u0020\u006f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"); -};_faad :=*box ;_dcfd =&_faad ;if _dcfd .Min .X < 0{_dcfd .Max .X +=_dcfd .Min .X ;_dcfd .Min .X =0;};if _dcfd .Min .Y < 0{_dcfd .Max .Y +=_dcfd .Min .Y ;_dcfd .Min .Y =0;};if _dcfd .Max .X > wi {_dcfd .Max .X =wi ;};if _dcfd .Max .Y > hi {_dcfd .Max .Y =hi ; -};return _dcfd ,nil ;};func (_bbde *ClassedPoints )xSortFunction ()func (_gegb int ,_abgbb int )bool {return func (_aegad ,_fgaa int )bool {return _bbde .XAtIndex (_aegad )< _bbde .XAtIndex (_fgaa )};};func _gdca (_eaee ...MorphProcess )(_daae error ){const _cbef ="v\u0065r\u0069\u0066\u0079\u004d\u006f\u0072\u0070\u0068P\u0072\u006f\u0063\u0065ss\u0065\u0073"; -var _bdgc ,_geeg int ;for _fgac ,_cfcb :=range _eaee {if _daae =_cfcb .verify (_fgac ,&_bdgc ,&_geeg );_daae !=nil {return _a .Wrap (_daae ,_cbef ,"");};};if _geeg !=0&&_bdgc !=0{return _a .Error (_cbef ,"\u004d\u006f\u0072\u0070\u0068\u0020\u0073\u0065\u0071\u0075\u0065n\u0063\u0065\u0020\u002d\u0020\u0062\u006f\u0072d\u0065r\u0020\u0061\u0064\u0064\u0065\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u0065\u0074\u0020\u0072\u0065\u0064u\u0063\u0074\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020\u0030"); -};return nil ;};func _ggd (_eb ,_de *Bitmap )(_eg error ){const _fc ="\u0065\u0078\u0070\u0061nd\u0042\u0069\u006e\u0061\u0072\u0079\u0046\u0061\u0063\u0074\u006f\u0072\u0032";_af :=_de .RowStride ;_dd :=_eb .RowStride ;var (_afa byte ;_ac uint16 ;_ff ,_da ,_cd ,_ce ,_bf int ; -);for _cd =0;_cd < _de .Height ;_cd ++{_ff =_cd *_af ;_da =2*_cd *_dd ;for _ce =0;_ce < _af ;_ce ++{_afa =_de .Data [_ff +_ce ];_ac =_dfce [_afa ];_bf =_da +_ce *2;if _eb .RowStride !=_de .RowStride *2&&(_ce +1)*2> _eb .RowStride {_eg =_eb .SetByte (_bf ,byte (_ac >>8)); -}else {_eg =_eb .setTwoBytes (_bf ,_ac );};if _eg !=nil {return _a .Wrap (_eg ,_fc ,"");};};for _ce =0;_ce < _dd ;_ce ++{_bf =_da +_dd +_ce ;_afa =_eb .Data [_da +_ce ];if _eg =_eb .SetByte (_bf ,_afa );_eg !=nil {return _a .Wrapf (_eg ,_fc ,"c\u006f\u0070\u0079\u0020\u0064\u006fu\u0062\u006c\u0065\u0064\u0020\u006ci\u006e\u0065\u003a\u0020\u0027\u0025\u0064'\u002c\u0020\u0042\u0079\u0074\u0065\u003a\u0020\u0027\u0025d\u0027",_da +_ce ,_da +_dd +_ce ); -};};};return nil ;};func (_eccac *byWidth )Len ()int {return len (_eccac .Values )};func _cebd (_gcgg *Bitmap ,_dgfg ,_eced int ,_ffcaa ,_bddcg int ,_bgda RasterOperator ){var (_baad int ;_fgcc byte ;_bfeg ,_aedg int ;_dbcbc int ;);_edbg :=_ffcaa >>3;_bggb :=_ffcaa &7; -if _bggb > 0{_fgcc =_bbef [_bggb ];};_baad =_gcgg .RowStride *_eced +(_dgfg >>3);switch _bgda {case PixClr :for _bfeg =0;_bfeg < _bddcg ;_bfeg ++{_dbcbc =_baad +_bfeg *_gcgg .RowStride ;for _aedg =0;_aedg < _edbg ;_aedg ++{_gcgg .Data [_dbcbc ]=0x0;_dbcbc ++; -};if _bggb > 0{_gcgg .Data [_dbcbc ]=_efgd (_gcgg .Data [_dbcbc ],0x0,_fgcc );};};case PixSet :for _bfeg =0;_bfeg < _bddcg ;_bfeg ++{_dbcbc =_baad +_bfeg *_gcgg .RowStride ;for _aedg =0;_aedg < _edbg ;_aedg ++{_gcgg .Data [_dbcbc ]=0xff;_dbcbc ++;};if _bggb > 0{_gcgg .Data [_dbcbc ]=_efgd (_gcgg .Data [_dbcbc ],0xff,_fgcc ); -};};case PixNotDst :for _bfeg =0;_bfeg < _bddcg ;_bfeg ++{_dbcbc =_baad +_bfeg *_gcgg .RowStride ;for _aedg =0;_aedg < _edbg ;_aedg ++{_gcgg .Data [_dbcbc ]=^_gcgg .Data [_dbcbc ];_dbcbc ++;};if _bggb > 0{_gcgg .Data [_dbcbc ]=_efgd (_gcgg .Data [_dbcbc ],^_gcgg .Data [_dbcbc ],_fgcc ); -};};};};func New (width ,height int )*Bitmap {_fda :=_aac (width ,height );_fda .Data =make ([]byte ,height *_fda .RowStride );return _fda ;};const (MopDilation MorphOperation =iota ;MopErosion ;MopOpening ;MopClosing ;MopRankBinaryReduction ;MopReplicativeBinaryExpansion ; -MopAddBorder ;);func (_ecdb Points )Size ()int {return len (_ecdb )};type fillSegment struct{_aebdc int ;_bcag int ;_fegcf int ;_aggbd int ;};func TstASymbol (t *_f .T )*Bitmap {t .Helper ();_eaca :=New (6,6);_g .NoError (t ,_eaca .SetPixel (1,0,1));_g .NoError (t ,_eaca .SetPixel (2,0,1)); -_g .NoError (t ,_eaca .SetPixel (3,0,1));_g .NoError (t ,_eaca .SetPixel (4,0,1));_g .NoError (t ,_eaca .SetPixel (5,1,1));_g .NoError (t ,_eaca .SetPixel (1,2,1));_g .NoError (t ,_eaca .SetPixel (2,2,1));_g .NoError (t ,_eaca .SetPixel (3,2,1));_g .NoError (t ,_eaca .SetPixel (4,2,1)); -_g .NoError (t ,_eaca .SetPixel (5,2,1));_g .NoError (t ,_eaca .SetPixel (0,3,1));_g .NoError (t ,_eaca .SetPixel (5,3,1));_g .NoError (t ,_eaca .SetPixel (0,4,1));_g .NoError (t ,_eaca .SetPixel (5,4,1));_g .NoError (t ,_eaca .SetPixel (1,5,1));_g .NoError (t ,_eaca .SetPixel (2,5,1)); -_g .NoError (t ,_eaca .SetPixel (3,5,1));_g .NoError (t ,_eaca .SetPixel (4,5,1));_g .NoError (t ,_eaca .SetPixel (5,5,1));return _eaca ;};func _cefb (_acefb *Bitmap ,_faea *Bitmap ,_cefgd *Selection ,_eabeb **Bitmap )(*Bitmap ,error ){const _adcf ="\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u004d\u006f\u0072\u0070\u0068A\u0072\u0067\u0073\u0031"; -if _faea ==nil {return nil ,_a .Error (_adcf ,"\u004d\u006f\u0072\u0070\u0068\u0041\u0072\u0067\u0073\u0031\u0020'\u0073\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066i\u006e\u0065\u0064");};if _cefgd ==nil {return nil ,_a .Error (_adcf ,"\u004d\u006f\u0072\u0068p\u0041\u0072\u0067\u0073\u0031\u0020\u0027\u0073\u0065\u006c'\u0020n\u006f\u0074\u0020\u0064\u0065\u0066\u0069n\u0065\u0064"); -};_faege ,_fgffg :=_cefgd .Height ,_cefgd .Width ;if _faege ==0||_fgffg ==0{return nil ,_a .Error (_adcf ,"\u0073\u0065\u006c\u0065ct\u0069\u006f\u006e\u0020\u006f\u0066\u0020\u0073\u0069\u007a\u0065\u0020\u0030");};if _acefb ==nil {_acefb =_faea .createTemplate (); -*_eabeb =_faea ;return _acefb ,nil ;};_acefb .Width =_faea .Width ;_acefb .Height =_faea .Height ;_acefb .RowStride =_faea .RowStride ;_acefb .Color =_faea .Color ;_acefb .Data =make ([]byte ,_faea .RowStride *_faea .Height );if _acefb ==_faea {*_eabeb =_faea .Copy (); -}else {*_eabeb =_faea ;};return _acefb ,nil ;};func _gf (_gc ,_cb *Bitmap )(_ggb error ){const _fd ="\u0065\u0078\u0070\u0061nd\u0042\u0069\u006e\u0061\u0072\u0079\u0046\u0061\u0063\u0074\u006f\u0072\u0034";_ec :=_cb .RowStride ;_ab :=_gc .RowStride ;_ed :=_cb .RowStride *4-_gc .RowStride ; -var (_fe ,_fa byte ;_feb uint32 ;_ge ,_ga ,_bd ,_dec ,_gd ,_ae ,_bc int ;);for _bd =0;_bd < _cb .Height ;_bd ++{_ge =_bd *_ec ;_ga =4*_bd *_ab ;for _dec =0;_dec < _ec ;_dec ++{_fe =_cb .Data [_ge +_dec ];_feb =_cbff [_fe ];_ae =_ga +_dec *4;if _ed !=0&&(_dec +1)*4> _gc .RowStride {for _gd =_ed ; -_gd > 0;_gd --{_fa =byte ((_feb >>uint (_gd *8))&0xff);_bc =_ae +(_ed -_gd );if _ggb =_gc .SetByte (_bc ,_fa );_ggb !=nil {return _a .Wrapf (_ggb ,_fd ,"D\u0069\u0066\u0066\u0065\u0072\u0065n\u0074\u0020\u0072\u006f\u0077\u0073\u0074\u0072\u0069d\u0065\u0073\u002e \u004b:\u0020\u0025\u0064",_gd ); -};};}else if _ggb =_gc .setFourBytes (_ae ,_feb );_ggb !=nil {return _a .Wrap (_ggb ,_fd ,"");};if _ggb =_gc .setFourBytes (_ga +_dec *4,_cbff [_cb .Data [_ge +_dec ]]);_ggb !=nil {return _a .Wrap (_ggb ,_fd ,"");};};for _gd =1;_gd < 4;_gd ++{for _dec =0; -_dec < _ab ;_dec ++{if _ggb =_gc .SetByte (_ga +_gd *_ab +_dec ,_gc .Data [_ga +_dec ]);_ggb !=nil {return _a .Wrapf (_ggb ,_fd ,"\u0063\u006f\u0070\u0079\u0020\u0027\u0071\u0075\u0061\u0064\u0072\u0061\u0062l\u0065\u0027\u0020\u006c\u0069\u006ee\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0062\u0079\u0074\u0065\u003a \u0027\u0025\u0064\u0027",_gd ,_dec ); -};};};};return nil ;};func (_agbe *Bitmap )RasterOperation (dx ,dy ,dw ,dh int ,op RasterOperator ,src *Bitmap ,sx ,sy int )error {return _bgcc (_agbe ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy );};func _feeb ()[]int {_aggba :=make ([]int ,256);_aggba [0]=0;_aggba [1]=7; -var _baeg int ;for _baeg =2;_baeg < 4;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -2]+6;};for _baeg =4;_baeg < 8;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -4]+5;};for _baeg =8;_baeg < 16;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -8]+4;};for _baeg =16;_baeg < 32;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -16]+3; -};for _baeg =32;_baeg < 64;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -32]+2;};for _baeg =64;_baeg < 128;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -64]+1;};for _baeg =128;_baeg < 256;_baeg ++{_aggba [_baeg ]=_aggba [_baeg -128];};return _aggba ;};func (_dbgg Points )GetIntY (i int )(int ,error ){if i >=len (_dbgg ){return 0,_a .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065t\u0049\u006e\u0074\u0059","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};return int (_dbgg [i ].Y ),nil ;};func MakePixelSumTab8 ()[]int {return _acea ()};type Points []Point ;func (_geda *Bitmap )RemoveBorderGeneral (left ,right ,top ,bot int )(*Bitmap ,error ){return _geda .removeBorderGeneral (left ,right ,top ,bot );}; -func (_caa *Bitmap )CountPixels ()int {return _caa .countPixels ()};func (_faeg *Bitmap )RemoveBorder (borderSize int )(*Bitmap ,error ){if borderSize ==0{return _faeg .Copy (),nil ;};_dcag ,_ceb :=_faeg .removeBorderGeneral (borderSize ,borderSize ,borderSize ,borderSize ); -if _ceb !=nil {return nil ,_a .Wrap (_ceb ,"\u0052\u0065\u006do\u0076\u0065\u0042\u006f\u0072\u0064\u0065\u0072","");};return _dcag ,nil ;};func _efgd (_bgdb ,_geee ,_bgea byte )byte {return (_bgdb &^(_bgea ))|(_geee &_bgea )};func _abfb (_bag *Bitmap ,_efc *Bitmap ,_acf int )(_edf error ){const _bde ="e\u0078\u0070\u0061\u006edB\u0069n\u0061\u0072\u0079\u0050\u006fw\u0065\u0072\u0032\u004c\u006f\u0077"; -switch _acf {case 2:_edf =_ggd (_bag ,_efc );case 4:_edf =_gf (_bag ,_efc );case 8:_edf =_bb (_bag ,_efc );default:return _a .Error (_bde ,"\u0065\u0078p\u0061\u006e\u0073\u0069o\u006e\u0020f\u0061\u0063\u0074\u006f\u0072\u0020\u006e\u006ft\u0020\u0069\u006e\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d\u0020r\u0061\u006e\u0067\u0065"); -};if _edf !=nil {_edf =_a .Wrap (_edf ,_bde ,"");};return _edf ;};type Color int ;func DilateBrick (d ,s *Bitmap ,hSize ,vSize int )(*Bitmap ,error ){return _dgf (d ,s ,hSize ,vSize )};func _fgbbg (_gegag *Bitmap ,_gbdgc ,_bgce int ,_eebd ,_abgef int ,_egaa RasterOperator ){var (_dfafa bool ; -_edfd bool ;_bgbg int ;_fcbe int ;_fdabg int ;_bccf int ;_dcacef bool ;_eecbe byte ;);_afbe :=8-(_gbdgc &7);_aebd :=_gafa [_afbe ];_fdcd :=_gegag .RowStride *_bgce +(_gbdgc >>3);if _eebd < _afbe {_dfafa =true ;_aebd &=_bbef [8-_afbe +_eebd ];};if !_dfafa {_bgbg =(_eebd -_afbe )>>3; -if _bgbg !=0{_edfd =true ;_fcbe =_fdcd +1;};};_fdabg =(_gbdgc +_eebd )&7;if !(_dfafa ||_fdabg ==0){_dcacef =true ;_eecbe =_bbef [_fdabg ];_bccf =_fdcd +1+_bgbg ;};var _eaage ,_efge int ;switch _egaa {case PixClr :for _eaage =0;_eaage < _abgef ;_eaage ++{_gegag .Data [_fdcd ]=_efgd (_gegag .Data [_fdcd ],0x0,_aebd ); -_fdcd +=_gegag .RowStride ;};if _edfd {for _eaage =0;_eaage < _abgef ;_eaage ++{for _efge =0;_efge < _bgbg ;_efge ++{_gegag .Data [_fcbe +_efge ]=0x0;};_fcbe +=_gegag .RowStride ;};};if _dcacef {for _eaage =0;_eaage < _abgef ;_eaage ++{_gegag .Data [_bccf ]=_efgd (_gegag .Data [_bccf ],0x0,_eecbe ); -_bccf +=_gegag .RowStride ;};};case PixSet :for _eaage =0;_eaage < _abgef ;_eaage ++{_gegag .Data [_fdcd ]=_efgd (_gegag .Data [_fdcd ],0xff,_aebd );_fdcd +=_gegag .RowStride ;};if _edfd {for _eaage =0;_eaage < _abgef ;_eaage ++{for _efge =0;_efge < _bgbg ; -_efge ++{_gegag .Data [_fcbe +_efge ]=0xff;};_fcbe +=_gegag .RowStride ;};};if _dcacef {for _eaage =0;_eaage < _abgef ;_eaage ++{_gegag .Data [_bccf ]=_efgd (_gegag .Data [_bccf ],0xff,_eecbe );_bccf +=_gegag .RowStride ;};};case PixNotDst :for _eaage =0; -_eaage < _abgef ;_eaage ++{_gegag .Data [_fdcd ]=_efgd (_gegag .Data [_fdcd ],^_gegag .Data [_fdcd ],_aebd );_fdcd +=_gegag .RowStride ;};if _edfd {for _eaage =0;_eaage < _abgef ;_eaage ++{for _efge =0;_efge < _bgbg ;_efge ++{_gegag .Data [_fcbe +_efge ]=^(_gegag .Data [_fcbe +_efge ]); -};_fcbe +=_gegag .RowStride ;};};if _dcacef {for _eaage =0;_eaage < _abgef ;_eaage ++{_gegag .Data [_bccf ]=_efgd (_gegag .Data [_bccf ],^_gegag .Data [_bccf ],_eecbe );_bccf +=_gegag .RowStride ;};};};};func (_fced Points )Get (i int )(Point ,error ){if i > len (_fced )-1{return Point {},_a .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065\u0074","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};return _fced [i ],nil ;};func (_dafb *BitmapsArray )GetBitmaps (i int )(*Bitmaps ,error ){const _bgeb ="\u0042\u0069\u0074ma\u0070\u0073\u0041\u0072\u0072\u0061\u0079\u002e\u0047\u0065\u0074\u0042\u0069\u0074\u006d\u0061\u0070\u0073";if _dafb ==nil {return nil ,_a .Error (_bgeb ,"p\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u006e\u0069\u006c\u0020\u0027\u0042\u0069\u0074m\u0061\u0070\u0073A\u0072r\u0061\u0079\u0027"); -};if i > len (_dafb .Values )-1{return nil ,_a .Errorf (_bgeb ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return _dafb .Values [i ],nil ;};func Rect (x ,y ,w ,h int )(*_fg .Rectangle ,error ){const _gdbb ="b\u0069\u0074\u006d\u0061\u0070\u002e\u0052\u0065\u0063\u0074"; -if x < 0{w +=x ;x =0;if w <=0{return nil ,_a .Errorf (_gdbb ,"x\u003a\u0027\u0025\u0064\u0027\u0020<\u0020\u0030\u0020\u0061\u006e\u0064\u0020\u0077\u003a \u0027\u0025\u0064'\u0020<\u003d\u0020\u0030",x ,w );};};if y < 0{h +=y ;y =0;if h <=0{return nil ,_a .Error (_gdbb ,"\u0079\u0020\u003c 0\u0020\u0061\u006e\u0064\u0020\u0062\u006f\u0078\u0020\u006f\u0066\u0066\u0020\u002b\u0071\u0075\u0061\u0064"); -};};_baea :=_fg .Rect (x ,y ,x +w ,y +h );return &_baea ,nil ;};func (_fbb *Bitmap )ThresholdPixelSum (thresh int ,tab8 []int )(_gfgad bool ,_cbf error ){const _adda ="\u0042i\u0074\u006d\u0061\u0070\u002e\u0054\u0068\u0072\u0065\u0073\u0068o\u006c\u0064\u0050\u0069\u0078\u0065\u006c\u0053\u0075\u006d"; -if tab8 ==nil {tab8 =_acea ();};_cca :=_fbb .Width >>3;_aab :=_fbb .Width &7;_ead :=byte (0xff< thresh {return true ,nil ;};};return _gfgad ,nil ;};func (_ebe *Bitmap )setTwoBytes (_gcfe int ,_cbdf uint16 )error {if _gcfe +1> len (_ebe .Data )-1{return _a .Errorf ("s\u0065\u0074\u0054\u0077\u006f\u0042\u0079\u0074\u0065\u0073","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",_gcfe ); -};_ebe .Data [_gcfe ]=byte ((_cbdf &0xff00)>>8);_ebe .Data [_gcfe +1]=byte (_cbdf &0xff);return nil ;};func (_gdef *Bitmaps )HeightSorter ()func (_caga ,_deaf int )bool {return func (_cddeb ,_fgfbd int )bool {_fgdcde :=_gdef .Values [_cddeb ].Height < _gdef .Values [_fgfbd ].Height ; -_dc .Log .Debug ("H\u0065i\u0067\u0068\u0074\u003a\u0020\u0025\u0076\u0020<\u0020\u0025\u0076\u0020= \u0025\u0076",_gdef .Values [_cddeb ].Height ,_gdef .Values [_fgfbd ].Height ,_fgdcde );return _fgdcde ;};};func (_afaa *Bitmap )And (s *Bitmap )(_eabg *Bitmap ,_bbae error ){const _fecg ="\u0042\u0069\u0074\u006d\u0061\u0070\u002e\u0041\u006e\u0064"; -if _afaa ==nil {return nil ,_a .Error (_fecg ,"\u0027b\u0069t\u006d\u0061\u0070\u0020\u0027b\u0027\u0020i\u0073\u0020\u006e\u0069\u006c");};if s ==nil {return nil ,_a .Error (_fecg ,"\u0062\u0069\u0074\u006d\u0061\u0070\u0020\u0027\u0073\u0027\u0020\u0069s\u0020\u006e\u0069\u006c"); -};if !_afaa .SizesEqual (s ){_dc .Log .Debug ("\u0025\u0073\u0020-\u0020\u0042\u0069\u0074\u006d\u0061\u0070\u0020\u0027\u0073\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0073\u0069\u007a\u0065 \u0077\u0069\u0074\u0068\u0020\u0027\u0062\u0027",_fecg ); -};if _eabg ,_bbae =_agbb (_eabg ,_afaa );_bbae !=nil {return nil ,_a .Wrap (_bbae ,_fecg ,"\u0063\u0061\u006e't\u0020\u0063\u0072\u0065\u0061\u0074\u0065\u0020\u0027\u0064\u0027\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _bbae =_eabg .RasterOperation (0,0,_eabg .Width ,_eabg .Height ,PixSrcAndDst ,s ,0,0); -_bbae !=nil {return nil ,_a .Wrap (_bbae ,_fecg ,"");};return _eabg ,nil ;};func CorrelationScoreThresholded (bm1 ,bm2 *Bitmap ,area1 ,area2 int ,delX ,delY float32 ,maxDiffW ,maxDiffH int ,tab ,downcount []int ,scoreThreshold float32 )(bool ,error ){const _fadc ="C\u006f\u0072\u0072\u0065\u006c\u0061t\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0054h\u0072\u0065\u0073h\u006fl\u0064\u0065\u0064"; -if bm1 ==nil {return false ,_a .Error (_fadc ,"\u0063\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006cd\u0065\u0064\u0020\u0062\u006d1\u0020\u0069s\u0020\u006e\u0069\u006c"); -};if bm2 ==nil {return false ,_a .Error (_fadc ,"\u0063\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006cd\u0065\u0064\u0020\u0062\u006d2\u0020\u0069s\u0020\u006e\u0069\u006c"); -};if area1 <=0||area2 <=0{return false ,_a .Error (_fadc ,"c\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006fn\u0053\u0063\u006f\u0072\u0065\u0054\u0068re\u0073\u0068\u006f\u006cd\u0065\u0064\u0020\u002d\u0020\u0061\u0072\u0065\u0061s \u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u003e\u0020\u0030"); -};if downcount ==nil {return false ,_a .Error (_fadc ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u006f\u0020\u0027\u0064\u006f\u0077\u006e\u0063\u006f\u0075\u006e\u0074\u0027");};if tab ==nil {return false ,_a .Error (_fadc ,"p\u0072\u006f\u0076\u0069de\u0064 \u006e\u0069\u006c\u0020\u0027s\u0075\u006d\u0074\u0061\u0062\u0027"); -};_eedc ,_gbge :=bm1 .Width ,bm1 .Height ;_gbdc ,_abfbg :=bm2 .Width ,bm2 .Height ;if _c .Abs (_eedc -_gbdc )> maxDiffW {return false ,nil ;};if _c .Abs (_gbge -_abfbg )> maxDiffH {return false ,nil ;};_ace :=int (delX +_c .Sign (delX )*0.5);_dbcf :=int (delY +_c .Sign (delY )*0.5); -_baacc :=int (_cf .Ceil (_cf .Sqrt (float64 (scoreThreshold )*float64 (area1 )*float64 (area2 ))));_bddad :=bm2 .RowStride ;_dcgad :=_cgcc (_dbcf ,0);_bccc :=_egag (_abfbg +_dbcf ,_gbge );_agfg :=bm1 .RowStride *_dcgad ;_ccge :=bm2 .RowStride *(_dcgad -_dbcf ); -var _cgbf int ;if _bccc <=_gbge {_cgbf =downcount [_bccc -1];};_dfc :=_cgcc (_ace ,0);_addc :=_egag (_gbdc +_ace ,_eedc );var _fgbba ,_bgcf int ;if _ace >=8{_fgbba =_ace >>3;_agfg +=_fgbba ;_dfc -=_fgbba <<3;_addc -=_fgbba <<3;_ace &=7;}else if _ace <=-8{_bgcf =-((_ace +7)>>3); -_ccge +=_bgcf ;_bddad -=_bgcf ;_ace +=_bgcf <<3;};var (_ddde ,_ebbb ,_bdea int ;_ggbf ,_egae ,_dcbd byte ;);if _dfc >=_addc ||_dcgad >=_bccc {return false ,nil ;};_dgbb :=(_addc +7)>>3;switch {case _ace ==0:for _ebbb =_dcgad ;_ebbb < _bccc ;_ebbb ,_agfg ,_ccge =_ebbb +1,_agfg +bm1 .RowStride ,_ccge +bm2 .RowStride {for _bdea =0; -_bdea < _dgbb ;_bdea ++{_ggbf =bm1 .Data [_agfg +_bdea ]&bm2 .Data [_ccge +_bdea ];_ddde +=tab [_ggbf ];};if _ddde >=_baacc {return true ,nil ;};if _bdaf :=_ddde +downcount [_ebbb ]-_cgbf ;_bdaf < _baacc {return false ,nil ;};};case _ace > 0&&_bddad < _dgbb :for _ebbb =_dcgad ; -_ebbb < _bccc ;_ebbb ,_agfg ,_ccge =_ebbb +1,_agfg +bm1 .RowStride ,_ccge +bm2 .RowStride {_egae =bm1 .Data [_agfg ];_dcbd =bm2 .Data [_ccge ]>>uint (_ace );_ggbf =_egae &_dcbd ;_ddde +=tab [_ggbf ];for _bdea =1;_bdea < _bddad ;_bdea ++{_egae =bm1 .Data [_agfg +_bdea ]; -_dcbd =bm2 .Data [_ccge +_bdea ]>>uint (_ace )|bm2 .Data [_ccge +_bdea -1]<=_baacc {return true ,nil ;}else if _ddde +downcount [_ebbb ]-_cgbf < _baacc {return false ,nil ;};};case _ace > 0&&_bddad >=_dgbb :for _ebbb =_dcgad ;_ebbb < _bccc ;_ebbb ,_agfg ,_ccge =_ebbb +1,_agfg +bm1 .RowStride ,_ccge +bm2 .RowStride {_egae =bm1 .Data [_agfg ]; -_dcbd =bm2 .Data [_ccge ]>>uint (_ace );_ggbf =_egae &_dcbd ;_ddde +=tab [_ggbf ];for _bdea =1;_bdea < _dgbb ;_bdea ++{_egae =bm1 .Data [_agfg +_bdea ];_dcbd =bm2 .Data [_ccge +_bdea ]>>uint (_ace );_dcbd |=bm2 .Data [_ccge +_bdea -1]<=_baacc {return true ,nil ;}else if _ddde +downcount [_ebbb ]-_cgbf < _baacc {return false ,nil ;};};case _dgbb < _bddad :for _ebbb =_dcgad ;_ebbb < _bccc ;_ebbb ,_agfg ,_ccge =_ebbb +1,_agfg +bm1 .RowStride ,_ccge +bm2 .RowStride {for _bdea =0; -_bdea < _dgbb ;_bdea ++{_egae =bm1 .Data [_agfg +_bdea ];_dcbd =bm2 .Data [_ccge +_bdea ]<>uint (8+_ace );_ggbf =_egae &_dcbd ;_ddde +=tab [_ggbf ];};if _ddde >=_baacc {return true ,nil ;}else if _aeb :=_ddde +downcount [_ebbb ]-_cgbf ; -_aeb < _baacc {return false ,nil ;};};case _bddad >=_dgbb :for _ebbb =_dcgad ;_ebbb < _bccc ;_ebbb ,_agfg ,_ccge =_ebbb +1,_agfg +bm1 .RowStride ,_ccge +bm2 .RowStride {for _bdea =0;_bdea < _dgbb ;_bdea ++{_egae =bm1 .Data [_agfg +_bdea ];_dcbd =bm2 .Data [_ccge +_bdea ]<>uint (8+_ace );_ggbf =_egae &_dcbd ;_ddde +=tab [_ggbf ];};_egae =bm1 .Data [_agfg +_bdea ];_dcbd =bm2 .Data [_ccge +_bdea ]<=_baacc {return true ,nil ; -}else if _ddde +downcount [_ebbb ]-_cgbf < _baacc {return false ,nil ;};};};_edbb :=float32 (_ddde )*float32 (_ddde )/(float32 (area1 )*float32 (area2 ));if _edbb >=scoreThreshold {_dc .Log .Trace ("\u0063\u006f\u0075\u006e\u0074\u003a\u0020\u0025\u0064\u0020\u003c\u0020\u0074\u0068\u0072\u0065\u0073\u0068\u006f\u006cd\u0020\u0025\u0064\u0020\u0062\u0075\u0074\u0020\u0073c\u006f\u0072\u0065\u0020\u0025\u0066\u0020\u003e\u003d\u0020\u0073\u0063\u006fr\u0065\u0054\u0068\u0072\u0065\u0073h\u006f\u006c\u0064 \u0025\u0066",_ddde ,_baacc ,_edbb ,scoreThreshold ); -};return false ,nil ;};func _fbg (_gcda ,_ccgg *Bitmap ,_bddf ,_gbgc int )(*Bitmap ,error ){const _cbbca ="\u006fp\u0065\u006e\u0042\u0072\u0069\u0063k";if _ccgg ==nil {return nil ,_a .Error (_cbbca ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); -};if _bddf < 1&&_gbgc < 1{return nil ,_a .Error (_cbbca ,"\u0068\u0053\u0069\u007ae \u003c\u0020\u0031\u0020\u0026\u0026\u0020\u0076\u0053\u0069\u007a\u0065\u0020\u003c \u0031");};if _bddf ==1&&_gbgc ==1{return _ccgg .Copy (),nil ;};if _bddf ==1||_gbgc ==1{var _gead error ; -_feea :=SelCreateBrick (_gbgc ,_bddf ,_gbgc /2,_bddf /2,SelHit );_gcda ,_gead =_bdca (_gcda ,_ccgg ,_feea );if _gead !=nil {return nil ,_a .Wrap (_gead ,_cbbca ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};return _gcda ,nil ;};_egbb :=SelCreateBrick (1,_bddf ,0,_bddf /2,SelHit );_dbdd :=SelCreateBrick (_gbgc ,1,_gbgc /2,0,SelHit );_cbfe ,_cdagg :=_bbbb (nil ,_ccgg ,_egbb );if _cdagg !=nil {return nil ,_a .Wrap (_cdagg ,_cbbca ,"\u0031s\u0074\u0020\u0065\u0072\u006f\u0064e"); -};_gcda ,_cdagg =_bbbb (_gcda ,_cbfe ,_dbdd );if _cdagg !=nil {return nil ,_a .Wrap (_cdagg ,_cbbca ,"\u0032n\u0064\u0020\u0065\u0072\u006f\u0064e");};_ ,_cdagg =_bbea (_cbfe ,_gcda ,_egbb );if _cdagg !=nil {return nil ,_a .Wrap (_cdagg ,_cbbca ,"\u0031\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); -};_ ,_cdagg =_bbea (_gcda ,_cbfe ,_dbdd );if _cdagg !=nil {return nil ,_a .Wrap (_cdagg ,_cbbca ,"\u0032\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065");};return _gcda ,nil ;};type Component int ;func (_gdab *Bitmap )clipRectangle (_gfe ,_gebd *_fg .Rectangle )(_agg *Bitmap ,_fdba error ){const _edaa ="\u0063\u006c\u0069\u0070\u0052\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"; -if _gfe ==nil {return nil ,_a .Error (_edaa ,"\u0070r\u006fv\u0069\u0064\u0065\u0064\u0020n\u0069\u006c \u0027\u0062\u006f\u0078\u0027");};_cccc ,_fbfa :=_gdab .Width ,_gdab .Height ;_aggf ,_fdba :=ClipBoxToRectangle (_gfe ,_cccc ,_fbfa );if _fdba !=nil {_dc .Log .Warning ("\u0027\u0062ox\u0027\u0020\u0064o\u0065\u0073\u006e\u0027t o\u0076er\u006c\u0061\u0070\u0020\u0062\u0069\u0074ma\u0070\u0020\u0027\u0062\u0027\u003a\u0020%\u0076",_fdba ); -return nil ,nil ;};_ggcf ,_efece :=_aggf .Min .X ,_aggf .Min .Y ;_gbe ,_dggc :=_aggf .Max .X -_aggf .Min .X ,_aggf .Max .Y -_aggf .Min .Y ;_agg =New (_gbe ,_dggc );_agg .Text =_gdab .Text ;if _fdba =_agg .RasterOperation (0,0,_gbe ,_dggc ,PixSrc ,_gdab ,_ggcf ,_efece ); -_fdba !=nil {return nil ,_a .Wrap (_fdba ,_edaa ,"");};if _gebd !=nil {*_gebd =*_aggf ;};return _agg ,nil ;};func (_dcga *Bitmap )connComponentsBB (_fefcc int )(_dabd *Boxes ,_cdba error ){const _efac ="\u0042\u0069\u0074ma\u0070\u002e\u0063\u006f\u006e\u006e\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0042\u0042"; -if _fefcc !=4&&_fefcc !=8{return nil ,_a .Error (_efac ,"\u0063\u006f\u006e\u006e\u0065\u0063t\u0069\u0076\u0069\u0074\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u0061\u0020\u0027\u0034\u0027\u0020\u006fr\u0020\u0027\u0038\u0027");};if _dcga .Zero (){return &Boxes {},nil ; -};_dcga .setPadBits (0);_aggd ,_cdba :=_agbb (nil ,_dcga );if _cdba !=nil {return nil ,_a .Wrap (_cdba ,_efac ,"\u0062\u006d\u0031");};_gbaf :=&_c .Stack {};_gbaf .Aux =&_c .Stack {};_dabd =&Boxes {};var (_bbcbb ,_agca int ;_cfgb _fg .Point ;_cccd bool ; -_cbdg *_fg .Rectangle ;);for {if _cfgb ,_cccd ,_cdba =_aggd .nextOnPixel (_agca ,_bbcbb );_cdba !=nil {return nil ,_a .Wrap (_cdba ,_efac ,"");};if !_cccd {break ;};if _cbdg ,_cdba =_egfgg (_aggd ,_gbaf ,_cfgb .X ,_cfgb .Y ,_fefcc );_cdba !=nil {return nil ,_a .Wrap (_cdba ,_efac ,""); -};if _cdba =_dabd .Add (_cbdg );_cdba !=nil {return nil ,_a .Wrap (_cdba ,_efac ,"");};_agca =_cfgb .X ;_bbcbb =_cfgb .Y ;};return _dabd ,nil ;};func (_agad *Bitmaps )Size ()int {return len (_agad .Values )};func (_gceed *Bitmap )connComponentsBitmapsBB (_dbcde *Bitmaps ,_eafgc int )(_eebe *Boxes ,_gbg error ){const _aaag ="\u0063\u006f\u006enC\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0042\u0069\u0074\u006d\u0061\u0070\u0073\u0042\u0042"; -if _eafgc !=4&&_eafgc !=8{return nil ,_a .Error (_aaag ,"\u0063\u006f\u006e\u006e\u0065\u0063t\u0069\u0076\u0069\u0074\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u0061\u0020\u0027\u0034\u0027\u0020\u006fr\u0020\u0027\u0038\u0027");};if _dbcde ==nil {return nil ,_a .Error (_aaag ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0042\u0069\u0074ma\u0070\u0073"); -};if len (_dbcde .Values )> 0{return nil ,_a .Error (_aaag ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u006fn\u002d\u0065\u006d\u0070\u0074\u0079\u0020\u0042\u0069\u0074m\u0061\u0070\u0073");};if _gceed .Zero (){return &Boxes {},nil ; -};var (_cecf ,_fggb ,_gefg ,_fga *Bitmap ;);_gceed .setPadBits (0);if _cecf ,_gbg =_agbb (nil ,_gceed );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"\u0062\u006d\u0031");};if _fggb ,_gbg =_agbb (nil ,_gceed );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"\u0062\u006d\u0032"); -};_acbc :=&_c .Stack {};_acbc .Aux =&_c .Stack {};_eebe =&Boxes {};var (_fbce ,_cbdd int ;_ggbd _fg .Point ;_aed bool ;_afab *_fg .Rectangle ;);for {if _ggbd ,_aed ,_gbg =_cecf .nextOnPixel (_fbce ,_cbdd );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,""); -};if !_aed {break ;};if _afab ,_gbg =_egfgg (_cecf ,_acbc ,_ggbd .X ,_ggbd .Y ,_eafgc );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"");};if _gbg =_eebe .Add (_afab );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"");};if _gefg ,_gbg =_cecf .clipRectangle (_afab ,nil ); -_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"\u0062\u006d\u0033");};if _fga ,_gbg =_fggb .clipRectangle (_afab ,nil );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"\u0062\u006d\u0034");};if _ ,_gbg =_ede (_gefg ,_gefg ,_fga );_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"\u0062m\u0033\u0020\u005e\u0020\u0062\u006d4"); -};if _gbg =_fggb .RasterOperation (_afab .Min .X ,_afab .Min .Y ,_afab .Dx (),_afab .Dy (),PixSrcXorDst ,_gefg ,0,0);_gbg !=nil {return nil ,_a .Wrap (_gbg ,_aaag ,"\u0062\u006d\u0032\u0020\u002d\u0058\u004f\u0052\u002d>\u0020\u0062\u006d\u0033");};_dbcde .AddBitmap (_gefg ); -_fbce =_ggbd .X ;_cbdd =_ggbd .Y ;};_dbcde .Boxes =*_eebe ;return _eebe ,nil ;};func _cgbg (_cdaf ,_ece *Bitmap ,_ggacg ,_cffb ,_dceg uint ,_dcca ,_faef int ,_cfbd bool ,_dbcg ,_afgd int )error {for _cfe :=_dcca ;_cfe < _faef ;_cfe ++{if _dbcg +1< len (_cdaf .Data ){_daf :=_cfe +1==_faef ; -_dcad ,_ggba :=_cdaf .GetByte (_dbcg );if _ggba !=nil {return _ggba ;};_dbcg ++;_dcad <<=_ggacg ;_fgba ,_ggba :=_cdaf .GetByte (_dbcg );if _ggba !=nil {return _ggba ;};_fgba >>=_cffb ;_dagc :=_dcad |_fgba ;if _daf &&!_cfbd {_dagc =_bfe (_dceg ,_dagc ); -};_ggba =_ece .SetByte (_afgd ,_dagc );if _ggba !=nil {return _ggba ;};_afgd ++;if _daf &&_cfbd {_fbcf ,_geff :=_cdaf .GetByte (_dbcg );if _geff !=nil {return _geff ;};_fbcf <<=_ggacg ;_dagc =_bfe (_dceg ,_fbcf );if _geff =_ece .SetByte (_afgd ,_dagc ); -_geff !=nil {return _geff ;};};continue ;};_bcgga ,_eef :=_cdaf .GetByte (_dbcg );if _eef !=nil {_dc .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0068\u0065\u0020\u0076\u0061l\u0075\u0065\u0020\u0061\u0074\u003a\u0020%\u0064\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020%\u0073",_dbcg ,_eef ); -return _eef ;};_bcgga <<=_ggacg ;_dbcg ++;_eef =_ece .SetByte (_afgd ,_bcgga );if _eef !=nil {return _eef ;};_afgd ++;};return nil ;};func (_ggc *Bitmap )SetPadBits (value int ){_ggc .setPadBits (value )};var (_dfce =_acb ();_cbff =_fgdc ();_eeae =_gbf (); -);func _deffc (_fdaf ,_fce *Bitmap ,_bbac *Selection )(*Bitmap ,error ){const _adecb ="c\u006c\u006f\u0073\u0065\u0042\u0069\u0074\u006d\u0061\u0070";var _gfac error ;if _fdaf ,_gfac =_gcaf (_fdaf ,_fce ,_bbac );_gfac !=nil {return nil ,_gfac ;};_dgbbg ,_gfac :=_bbea (nil ,_fce ,_bbac ); -if _gfac !=nil {return nil ,_a .Wrap (_gfac ,_adecb ,"");};if _ ,_gfac =_bbbb (_fdaf ,_dgbbg ,_bbac );_gfac !=nil {return nil ,_a .Wrap (_gfac ,_adecb ,"");};return _fdaf ,nil ;};func (_gec *Bitmap )setEightBytes (_cddg int ,_cgfe uint64 )error {_ecdg :=_gec .RowStride -(_cddg %_gec .RowStride ); -if _gec .RowStride !=_gec .Width >>3{_ecdg --;};if _ecdg >=8{return _gec .setEightFullBytes (_cddg ,_cgfe );};return _gec .setEightPartlyBytes (_cddg ,_ecdg ,_cgfe );};type ClassedPoints struct{*Points ;_c .IntSlice ;_effdc func (_gabb ,_gaaf int )bool ; -};const (ComponentConn Component =iota ;ComponentCharacters ;ComponentWords ;);func (_gaeeg *Bitmap )nextOnPixelLow (_fabb ,_dfa ,_cgaa ,_ega ,_ebb int )(_ecb _fg .Point ,_eac bool ,_abga error ){const _egfb ="B\u0069\u0074\u006d\u0061p.\u006ee\u0078\u0074\u004f\u006e\u0050i\u0078\u0065\u006c\u004c\u006f\u0077"; -var (_dceb int ;_gcfg byte ;);_fcb :=_ebb *_cgaa ;_fag :=_fcb +(_ega /8);if _gcfg ,_abga =_gaeeg .GetByte (_fag );_abga !=nil {return _ecb ,false ,_a .Wrap (_abga ,_egfb ,"\u0078\u0053\u0074\u0061\u0072\u0074\u0020\u0061\u006e\u0064 \u0079\u0053\u0074\u0061\u0072\u0074\u0020o\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065"); -};if _gcfg !=0{_bagc :=_ega -(_ega %8)+7;for _dceb =_ega ;_dceb <=_bagc &&_dceb < _fabb ;_dceb ++{if _gaeeg .GetPixel (_dceb ,_ebb ){_ecb .X =_dceb ;_ecb .Y =_ebb ;return _ecb ,true ,nil ;};};};_caaf :=(_ega /8)+1;_dceb =8*_caaf ;var _cgag int ;for _fag =_fcb +_caaf ; -_dceb < _fabb ;_fag ,_dceb =_fag +1,_dceb +8{if _gcfg ,_abga =_gaeeg .GetByte (_fag );_abga !=nil {return _ecb ,false ,_a .Wrap (_abga ,_egfb ,"r\u0065\u0073\u0074\u0020of\u0020t\u0068\u0065\u0020\u006c\u0069n\u0065\u0020\u0062\u0079\u0074\u0065");};if _gcfg ==0{continue ; -};for _cgag =0;_cgag < 8&&_dceb < _fabb ;_cgag ,_dceb =_cgag +1,_dceb +1{if _gaeeg .GetPixel (_dceb ,_ebb ){_ecb .X =_dceb ;_ecb .Y =_ebb ;return _ecb ,true ,nil ;};};};for _bee :=_ebb +1;_bee < _dfa ;_bee ++{_fcb =_bee *_cgaa ;for _fag ,_dceb =_fcb ,0; -_dceb < _fabb ;_fag ,_dceb =_fag +1,_dceb +8{if _gcfg ,_abga =_gaeeg .GetByte (_fag );_abga !=nil {return _ecb ,false ,_a .Wrap (_abga ,_egfb ,"\u0066o\u006cl\u006f\u0077\u0069\u006e\u0067\u0020\u006c\u0069\u006e\u0065\u0073");};if _gcfg ==0{continue ; -};for _cgag =0;_cgag < 8&&_dceb < _fabb ;_cgag ,_dceb =_cgag +1,_dceb +1{if _gaeeg .GetPixel (_dceb ,_bee ){_ecb .X =_dceb ;_ecb .Y =_bee ;return _ecb ,true ,nil ;};};};};return _ecb ,false ,nil ;};func _adcc (_gcdb *_c .Stack ,_gdge ,_bded ,_acfe ,_bdgf ,_fcbab int ,_dcba *_fg .Rectangle )(_gfed error ){const _ebdbb ="\u0070\u0075\u0073\u0068\u0046\u0069\u006c\u006c\u0053\u0065\u0067m\u0065\u006e\u0074\u0042\u006f\u0075\u006e\u0064\u0069\u006eg\u0042\u006f\u0078"; -if _gcdb ==nil {return _a .Error (_ebdbb ,"\u006ei\u006c \u0073\u0074\u0061\u0063\u006b \u0070\u0072o\u0076\u0069\u0064\u0065\u0064");};if _dcba ==nil {return _a .Error (_ebdbb ,"\u0070\u0072\u006f\u0076i\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0069\u006da\u0067e\u002e\u0052\u0065\u0063\u0074\u0061\u006eg\u006c\u0065"); -};_dcba .Min .X =_c .Min (_dcba .Min .X ,_gdge );_dcba .Max .X =_c .Max (_dcba .Max .X ,_bded );_dcba .Min .Y =_c .Min (_dcba .Min .Y ,_acfe );_dcba .Max .Y =_c .Max (_dcba .Max .Y ,_acfe );if !(_acfe +_bdgf >=0&&_acfe +_bdgf <=_fcbab ){return nil ;};if _gcdb .Aux ==nil {return _a .Error (_ebdbb ,"a\u0075x\u0053\u0074\u0061\u0063\u006b\u0020\u006e\u006ft\u0020\u0064\u0065\u0066in\u0065\u0064"); -};var _edfc *fillSegment ;_adbg ,_bcff :=_gcdb .Aux .Pop ();if _bcff {if _edfc ,_bcff =_adbg .(*fillSegment );!_bcff {return _a .Error (_ebdbb ,"a\u0075\u0078\u0053\u0074\u0061\u0063k\u0020\u0064\u0061\u0074\u0061\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061 \u002a\u0066\u0069\u006c\u006c\u0053\u0065\u0067\u006d\u0065n\u0074"); -};}else {_edfc =&fillSegment {};};_edfc ._aebdc =_gdge ;_edfc ._bcag =_bded ;_edfc ._fegcf =_acfe ;_edfc ._aggbd =_bdgf ;_gcdb .Push (_edfc );return nil ;};func CorrelationScoreSimple (bm1 ,bm2 *Bitmap ,area1 ,area2 int ,delX ,delY float32 ,maxDiffW ,maxDiffH int ,tab []int )(_dfaf float64 ,_dgb error ){const _fcfe ="\u0043\u006f\u0072\u0072el\u0061\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0053\u0069\u006d\u0070l\u0065"; -if bm1 ==nil ||bm2 ==nil {return _dfaf ,_a .Error (_fcfe ,"n\u0069l\u0020\u0062\u0069\u0074\u006d\u0061\u0070\u0073 \u0070\u0072\u006f\u0076id\u0065\u0064");};if tab ==nil {return _dfaf ,_a .Error (_fcfe ,"\u0074\u0061\u0062\u0020\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};if area1 ==0||area2 ==0{return _dfaf ,_a .Error (_fcfe ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0061\u0072e\u0061\u0073\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u003e\u0020\u0030");};_bcdc ,_defa :=bm1 .Width ,bm1 .Height ;_efad ,_fgdde :=bm2 .Width ,bm2 .Height ; -if _gfgb (_bcdc -_efad )> maxDiffW {return 0,nil ;};if _gfgb (_defa -_fgdde )> maxDiffH {return 0,nil ;};var _dcfc ,_bfec int ;if delX >=0{_dcfc =int (delX +0.5);}else {_dcfc =int (delX -0.5);};if delY >=0{_bfec =int (delY +0.5);}else {_bfec =int (delY -0.5); -};_acfb :=bm1 .createTemplate ();if _dgb =_acfb .RasterOperation (_dcfc ,_bfec ,_efad ,_fgdde ,PixSrc ,bm2 ,0,0);_dgb !=nil {return _dfaf ,_a .Wrap (_dgb ,_fcfe ,"\u0062m\u0032 \u0074\u006f\u0020\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};if _dgb =_acfb .RasterOperation (0,0,_bcdc ,_defa ,PixSrcAndDst ,bm1 ,0,0); -_dgb !=nil {return _dfaf ,_a .Wrap (_dgb ,_fcfe ,"b\u006d\u0031\u0020\u0061\u006e\u0064\u0020\u0062\u006d\u0054");};_ggdf :=_acfb .countPixels ();_dfaf =float64 (_ggdf )*float64 (_ggdf )/(float64 (area1 )*float64 (area2 ));return _dfaf ,nil ;};func _fbc ()(_agdg []byte ){_agdg =make ([]byte ,256); -for _ebgf :=0;_ebgf < 256;_ebgf ++{_fdd :=byte (_ebgf );_agdg [_fdd ]=(_fdd &0x01)|((_fdd &0x04)>>1)|((_fdd &0x10)>>2)|((_fdd &0x40)>>3)|((_fdd &0x02)<<3)|((_fdd &0x08)<<2)|((_fdd &0x20)<<1)|(_fdd &0x80);};return _agdg ;};func (_eacg *Bitmap )ConnComponents (bms *Bitmaps ,connectivity int )(_bab *Boxes ,_bddbg error ){const _bbgc ="B\u0069\u0074\u006d\u0061p.\u0043o\u006e\u006e\u0043\u006f\u006dp\u006f\u006e\u0065\u006e\u0074\u0073"; -if _eacg ==nil {return nil ,_a .Error (_bbgc ,"\u0070r\u006f\u0076\u0069\u0064e\u0064\u0020\u0065\u006d\u0070t\u0079 \u0027b\u0027\u0020\u0062\u0069\u0074\u006d\u0061p");};if connectivity !=4&&connectivity !=8{return nil ,_a .Error (_bbgc ,"\u0063\u006f\u006ene\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u006e\u006f\u0074\u0020\u0034\u0020\u006f\u0072\u0020\u0038"); -};if bms ==nil {if _bab ,_bddbg =_eacg .connComponentsBB (connectivity );_bddbg !=nil {return nil ,_a .Wrap (_bddbg ,_bbgc ,"");};}else {if _bab ,_bddbg =_eacg .connComponentsBitmapsBB (bms ,connectivity );_bddbg !=nil {return nil ,_a .Wrap (_bddbg ,_bbgc ,""); -};};return _bab ,nil ;};type Bitmaps struct{Values []*Bitmap ;Boxes []*_fg .Rectangle ;};func TstOSymbol (t *_f .T ,scale ...int )*Bitmap {_cbgf ,_eabga :=NewWithData (4,5,[]byte {0xF0,0x90,0x90,0x90,0xF0});_g .NoError (t ,_eabga );return TstGetScaledSymbol (t ,_cbgf ,scale ...); -};func _dbd (_gdbe ,_cgd ,_fgge *Bitmap )(*Bitmap ,error ){const _bbed ="\u0073\u0075\u0062\u0074\u0072\u0061\u0063\u0074";if _cgd ==nil {return nil ,_a .Error (_bbed ,"'\u0073\u0031\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _fgge ==nil {return nil ,_a .Error (_bbed ,"'\u0073\u0032\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c"); -};var _cag error ;switch {case _gdbe ==_cgd :if _cag =_gdbe .RasterOperation (0,0,_cgd .Width ,_cgd .Height ,PixNotSrcAndDst ,_fgge ,0,0);_cag !=nil {return nil ,_a .Wrap (_cag ,_bbed ,"\u0064 \u003d\u003d\u0020\u0073\u0031");};case _gdbe ==_fgge :if _cag =_gdbe .RasterOperation (0,0,_cgd .Width ,_cgd .Height ,PixNotSrcAndDst ,_cgd ,0,0); -_cag !=nil {return nil ,_a .Wrap (_cag ,_bbed ,"\u0064 \u003d\u003d\u0020\u0073\u0032");};default:_gdbe ,_cag =_agbb (_gdbe ,_cgd );if _cag !=nil {return nil ,_a .Wrap (_cag ,_bbed ,"");};if _cag =_gdbe .RasterOperation (0,0,_cgd .Width ,_cgd .Height ,PixNotSrcAndDst ,_fgge ,0,0); -_cag !=nil {return nil ,_a .Wrap (_cag ,_bbed ,"\u0064e\u0066\u0061\u0075\u006c\u0074");};};return _gdbe ,nil ;};func (_cfbf *Bitmap )removeBorderGeneral (_cfg ,_dbcd ,_fafc ,_ceea int )(*Bitmap ,error ){const _eeg ="\u0072\u0065\u006d\u006fve\u0042\u006f\u0072\u0064\u0065\u0072\u0047\u0065\u006e\u0065\u0072\u0061\u006c"; -if _cfg < 0||_dbcd < 0||_fafc < 0||_ceea < 0{return nil ,_a .Error (_eeg ,"\u006e\u0065g\u0061\u0074\u0069\u0076\u0065\u0020\u0062\u0072\u006f\u0064\u0065\u0072\u0020\u0072\u0065\u006d\u006f\u0076\u0065\u0020\u0076\u0061lu\u0065\u0073");};_gacb ,_ceeg :=_cfbf .Width ,_cfbf .Height ; -_gaeea :=_gacb -_cfg -_dbcd ;_adec :=_ceeg -_fafc -_ceea ;if _gaeea <=0{return nil ,_a .Errorf (_eeg ,"w\u0069\u0064\u0074\u0068: \u0025d\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u003e\u0020\u0030",_gaeea );};if _adec <=0{return nil ,_a .Errorf (_eeg ,"\u0068\u0065\u0069\u0067ht\u003a\u0020\u0025\u0064\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u003e \u0030",_adec ); -};_agea :=New (_gaeea ,_adec );_agea .Color =_cfbf .Color ;_cdbf :=_agea .RasterOperation (0,0,_gaeea ,_adec ,PixSrc ,_cfbf ,_cfg ,_fafc );if _cdbf !=nil {return nil ,_a .Wrap (_cdbf ,_eeg ,"");};return _agea ,nil ;};func _ede (_cfaec ,_eaaf ,_bacd *Bitmap )(*Bitmap ,error ){const _cgcg ="\u0062\u0069\u0074\u006d\u0061\u0070\u002e\u0078\u006f\u0072"; -if _eaaf ==nil {return nil ,_a .Error (_cgcg ,"'\u0062\u0031\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _bacd ==nil {return nil ,_a .Error (_cgcg ,"'\u0062\u0032\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _cfaec ==_bacd {return nil ,_a .Error (_cgcg ,"'\u0064\u0027\u0020\u003d\u003d\u0020\u0027\u0062\u0032\u0027"); -};if !_eaaf .SizesEqual (_bacd ){_dc .Log .Debug ("\u0025s\u0020\u002d \u0042\u0069\u0074\u006da\u0070\u0020\u0027b\u0031\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074 e\u0071\u0075\u0061l\u0020\u0073i\u007a\u0065\u0020\u0077\u0069\u0074h\u0020\u0027b\u0032\u0027",_cgcg ); -};var _fggf error ;if _cfaec ,_fggf =_agbb (_cfaec ,_eaaf );_fggf !=nil {return nil ,_a .Wrap (_fggf ,_cgcg ,"\u0063\u0061n\u0027\u0074\u0020c\u0072\u0065\u0061\u0074\u0065\u0020\u0027\u0064\u0027");};if _fggf =_cfaec .RasterOperation (0,0,_cfaec .Width ,_cfaec .Height ,PixSrcXorDst ,_bacd ,0,0); -_fggf !=nil {return nil ,_a .Wrap (_fggf ,_cgcg ,"");};return _cfaec ,nil ;};func _acea ()[]int {_fagc :=make ([]int ,256);for _effbd :=0;_effbd <=0xff;_effbd ++{_fba :=byte (_effbd );_fagc [_fba ]=int (_fba &0x1)+(int (_fba >>1)&0x1)+(int (_fba >>2)&0x1)+(int (_fba >>3)&0x1)+(int (_fba >>4)&0x1)+(int (_fba >>5)&0x1)+(int (_fba >>6)&0x1)+(int (_fba >>7)&0x1); -};return _fagc ;};func _aac (_fde ,_dffe int )*Bitmap {return &Bitmap {Width :_fde ,Height :_dffe ,RowStride :(_fde +7)>>3};};func (_dcage *Boxes )Add (box *_fg .Rectangle )error {if _dcage ==nil {return _a .Error ("\u0042o\u0078\u0065\u0073\u002e\u0041\u0064d","\u0027\u0042\u006f\u0078es\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};*_dcage =append (*_dcage ,box );return nil ;};func _egfgg (_ffaea *Bitmap ,_edfa *_c .Stack ,_caae ,_dafg ,_aeeb int )(_ccf *_fg .Rectangle ,_gagge error ){const _fggbd ="\u0073e\u0065d\u0046\u0069\u006c\u006c\u0053\u0074\u0061\u0063\u006b\u0042\u0042"; -if _ffaea ==nil {return nil ,_a .Error (_fggbd ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0073\u0027\u0020\u0042\u0069\u0074\u006d\u0061\u0070");};if _edfa ==nil {return nil ,_a .Error (_fggbd ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0027\u0073\u0074ac\u006b\u0027"); -};switch _aeeb {case 4:if _ccf ,_gagge =_bfega (_ffaea ,_edfa ,_caae ,_dafg );_gagge !=nil {return nil ,_a .Wrap (_gagge ,_fggbd ,"");};return _ccf ,nil ;case 8:if _ccf ,_gagge =_acbf (_ffaea ,_edfa ,_caae ,_dafg );_gagge !=nil {return nil ,_a .Wrap (_gagge ,_fggbd ,""); -};return _ccf ,nil ;default:return nil ,_a .Errorf (_fggbd ,"\u0063\u006f\u006e\u006e\u0065\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u0069\u0073 \u006eo\u0074\u0020\u0034\u0020\u006f\u0072\u0020\u0038\u003a\u0020\u0027\u0025\u0064\u0027",_aeeb ); -};};func (_bedbe *Bitmaps )GetBitmap (i int )(*Bitmap ,error ){const _aabd ="\u0047e\u0074\u0042\u0069\u0074\u006d\u0061p";if _bedbe ==nil {return nil ,_a .Error (_aabd ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0042\u0069\u0074ma\u0070\u0073"); -};if i > len (_bedbe .Values )-1{return nil ,_a .Errorf (_aabd ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return _bedbe .Values [i ],nil ;};func TstRSymbol (t *_f .T ,scale ...int )*Bitmap {_eee ,_cgee :=NewWithData (4,5,[]byte {0xF0,0x90,0xF0,0xA0,0x90}); -_g .NoError (t ,_cgee );return TstGetScaledSymbol (t ,_eee ,scale ...);};func (_fggc *ClassedPoints )Len ()int {return _fggc .IntSlice .Size ()};func Extract (roi _fg .Rectangle ,src *Bitmap )(*Bitmap ,error ){_aea :=New (roi .Dx (),roi .Dy ());_egbdc :=roi .Min .X &0x07; -_afcb :=8-_egbdc ;_cfaed :=uint (8-_aea .Width &0x07);_deff :=src .GetByteIndex (roi .Min .X ,roi .Min .Y );_bga :=src .GetByteIndex (roi .Max .X -1,roi .Min .Y );_deeg :=_aea .RowStride ==_bga +1-_deff ;var _dagg int ;for _bcfe :=roi .Min .Y ;_bcfe < roi .Max .Y ; -_bcfe ++{_bgc :=_deff ;_cefgb :=_dagg ;switch {case _deff ==_bga :_beec ,_egfg :=src .GetByte (_bgc );if _egfg !=nil {return nil ,_egfg ;};_beec <<=uint (_egbdc );_egfg =_aea .SetByte (_cefgb ,_bfe (_cfaed ,_beec ));if _egfg !=nil {return nil ,_egfg ;}; -case _egbdc ==0:for _befc :=_deff ;_befc <=_bga ;_befc ++{_ddcf ,_eafg :=src .GetByte (_bgc );if _eafg !=nil {return nil ,_eafg ;};_bgc ++;if _befc ==_bga &&_deeg {_ddcf =_bfe (_cfaed ,_ddcf );};_eafg =_aea .SetByte (_cefgb ,_ddcf );if _eafg !=nil {return nil ,_eafg ; -};_cefgb ++;};default:_befe :=_cgbg (src ,_aea ,uint (_egbdc ),uint (_afcb ),_cfaed ,_deff ,_bga ,_deeg ,_bgc ,_cefgb );if _befe !=nil {return nil ,_befe ;};};_deff +=src .RowStride ;_bga +=src .RowStride ;_dagg +=_aea .RowStride ;};return _aea ,nil ;}; -func _gaeed (_eegdf ,_debbf int ,_gdgb string )*Selection {_ffbb :=&Selection {Height :_eegdf ,Width :_debbf ,Name :_gdgb };_ffbb .Data =make ([][]SelectionValue ,_eegdf );for _gebc :=0;_gebc < _eegdf ;_gebc ++{_ffbb .Data [_gebc ]=make ([]SelectionValue ,_debbf ); -};return _ffbb ;};func (_dega *Bitmap )createTemplate ()*Bitmap {return &Bitmap {Width :_dega .Width ,Height :_dega .Height ,RowStride :_dega .RowStride ,Color :_dega .Color ,Text :_dega .Text ,BitmapNumber :_dega .BitmapNumber ,Special :_dega .Special ,Data :make ([]byte ,len (_dega .Data ))}; -};func (_caad *Bitmap )Equivalent (s *Bitmap )bool {return _caad .equivalent (s )};func (_dffg *ClassedPoints )GetIntYByClass (i int )(int ,error ){const _bcda ="\u0043\u006c\u0061\u0073s\u0065\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047e\u0074I\u006e\u0074\u0059\u0042\u0079\u0043\u006ca\u0073\u0073"; -if i >=_dffg .IntSlice .Size (){return 0,_a .Errorf (_bcda ,"\u0069\u003a\u0020\u0027\u0025\u0064\u0027 \u0069\u0073\u0020o\u0075\u0074\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0049\u006e\u0074\u0053\u006c\u0069\u0063\u0065",i ); -};return int (_dffg .YAtIndex (i )),nil ;};func (_aegc *Bitmaps )GroupByHeight ()(*BitmapsArray ,error ){const _fbcc ="\u0047\u0072\u006f\u0075\u0070\u0042\u0079\u0048\u0065\u0069\u0067\u0068\u0074";if len (_aegc .Values )==0{return nil ,_a .Error (_fbcc ,"\u006eo\u0020v\u0061\u006c\u0075\u0065\u0073 \u0070\u0072o\u0076\u0069\u0064\u0065\u0064"); -};_fgbga :=&BitmapsArray {};_aegc .SortByHeight ();_caag :=-1;_bcafa :=-1;for _gfec :=0;_gfec < len (_aegc .Values );_gfec ++{_efca :=_aegc .Values [_gfec ].Height ;if _efca > _caag {_caag =_efca ;_bcafa ++;_fgbga .Values =append (_fgbga .Values ,&Bitmaps {}); -};_fgbga .Values [_bcafa ].AddBitmap (_aegc .Values [_gfec ]);};return _fgbga ,nil ;};func (_fgdd *Bitmap )Zero ()bool {_cgf :=_fgdd .Width /8;_decg :=_fgdd .Width &7;var _gfab byte ;if _decg !=0{_gfab =byte (0xff< 0{if _fgdd .Data [_febe ]&_gfab !=0{return false ;};};}; -return true ;};func (_bdfga *Bitmap )setFourBytes (_cfbc int ,_gbdg uint32 )error {if _cfbc +3> len (_bdfga .Data )-1{return _a .Errorf ("\u0073\u0065\u0074F\u006f\u0075\u0072\u0042\u0079\u0074\u0065\u0073","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",_cfbc ); -};_bdfga .Data [_cfbc ]=byte ((_gbdg &0xff000000)>>24);_bdfga .Data [_cfbc +1]=byte ((_gbdg &0xff0000)>>16);_bdfga .Data [_cfbc +2]=byte ((_gbdg &0xff00)>>8);_bdfga .Data [_cfbc +3]=byte (_gbdg &0xff);return nil ;};const (_deaa shift =iota ;_cgacd ;);func (_fgbg *ClassedPoints )validateIntSlice ()error {const _fege ="\u0076\u0061l\u0069\u0064\u0061t\u0065\u0049\u006e\u0074\u0053\u006c\u0069\u0063\u0065"; -for _ ,_abec :=range _fgbg .IntSlice {if _abec >=(_fgbg .Points .Size ()){return _a .Errorf (_fege ,"c\u006c\u0061\u0073\u0073\u0020\u0069\u0064\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0076\u0061\u006ci\u0064 \u0069\u006e\u0064\u0065x\u0020\u0069n\u0020\u0074\u0068\u0065\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u006f\u0066\u0020\u0073\u0069\u007a\u0065\u003a\u0020\u0025\u0064",_abec ,_fgbg .Points .Size ()); -};};return nil ;};func SelCreateBrick (h ,w int ,cy ,cx int ,tp SelectionValue )*Selection {_cbbg :=_gaeed (h ,w ,"");_cbbg .setOrigin (cy ,cx );var _cfbdf ,_gbab int ;for _cfbdf =0;_cfbdf < h ;_cfbdf ++{for _gbab =0;_gbab < w ;_gbab ++{_cbbg .Data [_cfbdf ][_gbab ]=tp ; -};};return _cbbg ;};func (_ccdf *Bitmap )setPadBits (_gffd int ){_bdcg :=8-_ccdf .Width %8;if _bdcg ==8{return ;};_afgba :=_ccdf .Width /8;_fac :=_gafa [_bdcg ];if _gffd ==0{_fac ^=_fac ;};var _cgca int ;for _cabg :=0;_cabg < _ccdf .Height ;_cabg ++{_cgca =_cabg *_ccdf .RowStride +_afgba ; -if _gffd ==0{_ccdf .Data [_cgca ]&=_fac ;}else {_ccdf .Data [_cgca ]|=_fac ;};};};func _dda (_gade ,_dge *Bitmap ,_edgba ,_ecfa ,_eag ,_dedb ,_baff int ,_aaed CombinationOperator )error {var _egcf int ;_cgefg :=func (){_egcf ++;_eag +=_dge .RowStride ; -_dedb +=_gade .RowStride ;_baff +=_gade .RowStride };for _egcf =_edgba ;_egcf < _ecfa ;_cgefg (){_dcec :=_eag ;for _feca :=_dedb ;_feca <=_baff ;_feca ++{_ebd ,_dgdb :=_dge .GetByte (_dcec );if _dgdb !=nil {return _dgdb ;};_ecc ,_dgdb :=_gade .GetByte (_feca ); -if _dgdb !=nil {return _dgdb ;};if _dgdb =_dge .SetByte (_dcec ,_agf (_ebd ,_ecc ,_aaed ));_dgdb !=nil {return _dgdb ;};_dcec ++;};};return nil ;};func TstGetScaledSymbol (t *_f .T ,sm *Bitmap ,scale ...int )*Bitmap {if len (scale )==0{return sm ;};if scale [0]==1{return sm ; -};_gdcb ,_fdgf :=MorphSequence (sm ,MorphProcess {Operation :MopReplicativeBinaryExpansion ,Arguments :scale });_g .NoError (t ,_fdgf );return _gdcb ;};const (PixSrc RasterOperator =0xc;PixDst RasterOperator =0xa;PixNotSrc RasterOperator =0x3;PixNotDst RasterOperator =0x5; -PixClr RasterOperator =0x0;PixSet RasterOperator =0xf;PixSrcOrDst RasterOperator =0xe;PixSrcAndDst RasterOperator =0x8;PixSrcXorDst RasterOperator =0x6;PixNotSrcOrDst RasterOperator =0xb;PixNotSrcAndDst RasterOperator =0x2;PixSrcOrNotDst RasterOperator =0xd; -PixSrcAndNotDst RasterOperator =0x4;PixNotPixSrcOrDst RasterOperator =0x1;PixNotPixSrcAndDst RasterOperator =0x7;PixNotPixSrcXorDst RasterOperator =0x9;PixPaint =PixSrcOrDst ;PixSubtract =PixNotSrcAndDst ;PixMask =PixSrcAndDst ;);func CorrelationScore (bm1 ,bm2 *Bitmap ,area1 ,area2 int ,delX ,delY float32 ,maxDiffW ,maxDiffH int ,tab []int )(_fbee float64 ,_baag error ){const _caf ="\u0063\u006fr\u0072\u0065\u006ca\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065"; -if bm1 ==nil ||bm2 ==nil {return 0,_a .Error (_caf ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0062\u0069\u0074ma\u0070\u0073");};if tab ==nil {return 0,_a .Error (_caf ,"\u0027\u0074\u0061\u0062\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); -};if area1 <=0||area2 <=0{return 0,_a .Error (_caf ,"\u0061\u0072\u0065\u0061s\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0067r\u0065a\u0074\u0065\u0072\u0020\u0074\u0068\u0061n\u0020\u0030");};_bgb ,_abed :=bm1 .Width ,bm1 .Height ;_afge ,_eegc :=bm2 .Width ,bm2 .Height ; -_egfgf :=_gfgb (_bgb -_afge );if _egfgf > maxDiffW {return 0,nil ;};_adac :=_gfgb (_abed -_eegc );if _adac > maxDiffH {return 0,nil ;};var _effb ,_cfd int ;if delX >=0{_effb =int (delX +0.5);}else {_effb =int (delX -0.5);};if delY >=0{_cfd =int (delY +0.5); -}else {_cfd =int (delY -0.5);};_gfde :=_cgcc (_cfd ,0);_dfac :=_egag (_eegc +_cfd ,_abed );_dcgbb :=bm1 .RowStride *_gfde ;_ccea :=bm2 .RowStride *(_gfde -_cfd );_eedg :=_cgcc (_effb ,0);_gbb :=_egag (_afge +_effb ,_bgb );_aeccc :=bm2 .RowStride ;var _fgab ,_dggd int ; -if _effb >=8{_fgab =_effb >>3;_dcgbb +=_fgab ;_eedg -=_fgab <<3;_gbb -=_fgab <<3;_effb &=7;}else if _effb <=-8{_dggd =-((_effb +7)>>3);_ccea +=_dggd ;_aeccc -=_dggd ;_effb +=_dggd <<3;};if _eedg >=_gbb ||_gfde >=_dfac {return 0,nil ;};_bcaf :=(_gbb +7)>>3; -var (_efbc ,_gdaba ,_ceg byte ;_ffac ,_feda ,_cfbcc int ;);switch {case _effb ==0:for _cfbcc =_gfde ;_cfbcc < _dfac ;_cfbcc ,_dcgbb ,_ccea =_cfbcc +1,_dcgbb +bm1 .RowStride ,_ccea +bm2 .RowStride {for _feda =0;_feda < _bcaf ;_feda ++{_ceg =bm1 .Data [_dcgbb +_feda ]&bm2 .Data [_ccea +_feda ]; -_ffac +=tab [_ceg ];};};case _effb > 0:if _aeccc < _bcaf {for _cfbcc =_gfde ;_cfbcc < _dfac ;_cfbcc ,_dcgbb ,_ccea =_cfbcc +1,_dcgbb +bm1 .RowStride ,_ccea +bm2 .RowStride {_efbc ,_gdaba =bm1 .Data [_dcgbb ],bm2 .Data [_ccea ]>>uint (_effb );_ceg =_efbc &_gdaba ; -_ffac +=tab [_ceg ];for _feda =1;_feda < _aeccc ;_feda ++{_efbc ,_gdaba =bm1 .Data [_dcgbb +_feda ],(bm2 .Data [_ccea +_feda ]>>uint (_effb ))|(bm2 .Data [_ccea +_feda -1]<>uint (_effb ); -_ceg =_efbc &_gdaba ;_ffac +=tab [_ceg ];for _feda =1;_feda < _bcaf ;_feda ++{_efbc =bm1 .Data [_dcgbb +_feda ];_gdaba =(bm2 .Data [_ccea +_feda ]>>uint (_effb ))|(bm2 .Data [_ccea +_feda -1]<>uint (8+_effb );_ceg =_efbc &_gdaba ;_ffac +=tab [_ceg ];};};}else {for _cfbcc =_gfde ;_cfbcc < _dfac ;_cfbcc ,_dcgbb ,_ccea =_cfbcc +1,_dcgbb +bm1 .RowStride ,_ccea +bm2 .RowStride {for _feda =0;_feda < _bcaf -1;_feda ++{_efbc =bm1 .Data [_dcgbb +_feda ]; -_gdaba =bm2 .Data [_ccea +_feda ]<>uint (8+_effb );_ceg =_efbc &_gdaba ;_ffac +=tab [_ceg ];};_efbc =bm1 .Data [_dcgbb +_feda ];_gdaba =bm2 .Data [_ccea +_feda ]< len (_ecfc .Data )-1{return _a .Error ("\u0073\u0065\u0074\u0045\u0069\u0067\u0068\u0074\u0042\u0079\u0074\u0065\u0073","\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};_ecfc .Data [_eace ]=byte ((_adae &0xff00000000000000)>>56);_ecfc .Data [_eace +1]=byte ((_adae &0xff000000000000)>>48);_ecfc .Data [_eace +2]=byte ((_adae &0xff0000000000)>>40);_ecfc .Data [_eace +3]=byte ((_adae &0xff00000000)>>32);_ecfc .Data [_eace +4]=byte ((_adae &0xff000000)>>24); -_ecfc .Data [_eace +5]=byte ((_adae &0xff0000)>>16);_ecfc .Data [_eace +6]=byte ((_adae &0xff00)>>8);_ecfc .Data [_eace +7]=byte (_adae &0xff);return nil ;};func (_ggdd MorphProcess )verify (_dddef int ,_aggb ,_cgdd *int )error {const _aaedb ="\u004d\u006f\u0072\u0070hP\u0072\u006f\u0063\u0065\u0073\u0073\u002e\u0076\u0065\u0072\u0069\u0066\u0079"; -switch _ggdd .Operation {case MopDilation ,MopErosion ,MopOpening ,MopClosing :if len (_ggdd .Arguments )!=2{return _a .Error (_aaedb ,"\u004f\u0070\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0064\u0027\u002c\u0020\u0027\u0065\u0027\u002c \u0027\u006f\u0027\u002c\u0020\u0027\u0063\u0027\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0032\u0020\u0061r\u0067\u0075\u006d\u0065\u006et\u0073"); -};_cbab ,_eefg :=_ggdd .getWidthHeight ();if _cbab <=0||_eefg <=0{return _a .Error (_aaedb ,"O\u0070er\u0061t\u0069o\u006e\u003a\u0020\u0027\u0064'\u002c\u0020\u0027e\u0027\u002c\u0020\u0027\u006f'\u002c\u0020\u0027c\u0027\u0020\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073 \u0062\u006f\u0074h w\u0069\u0064\u0074\u0068\u0020\u0061n\u0064\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u0074\u006f\u0020b\u0065 \u003e\u003d\u0020\u0030"); -};case MopRankBinaryReduction :_daaf :=len (_ggdd .Arguments );*_aggb +=_daaf ;if _daaf < 1||_daaf > 4{return _a .Error (_aaedb ,"\u004f\u0070\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0072\u0027\u0020\u0072\u0065\u0071\u0075\u0069r\u0065\u0073\u0020\u0061\u0074\u0020\u006c\u0065\u0061s\u0074\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0061\u0074\u0020\u006d\u006fs\u0074\u0020\u0034\u0020\u0061\u0072g\u0075\u006d\u0065n\u0074\u0073"); -};for _cccde :=0;_cccde < _daaf ;_cccde ++{if _ggdd .Arguments [_cccde ]< 1||_ggdd .Arguments [_cccde ]> 4{return _a .Error (_aaedb ,"\u0052\u0061\u006e\u006b\u0042\u0069n\u0061\u0072\u0079\u0052\u0065\u0064\u0075\u0063\u0074\u0069\u006f\u006e\u0020\u006c\u0065\u0076\u0065\u006c\u0020\u006du\u0073\u0074\u0020\u0062\u0065\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065 \u00280\u002c\u0020\u0034\u003e"); -};};case MopReplicativeBinaryExpansion :if len (_ggdd .Arguments )==0{return _a .Error (_aaedb ,"\u0052\u0065\u0070\u006c\u0069\u0063\u0061\u0074i\u0076\u0065\u0042in\u0061\u0072\u0079\u0045\u0078\u0070a\u006e\u0073\u0069\u006f\u006e\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020o\u006e\u0065\u0020\u0061\u0072\u0067\u0075\u006de\u006e\u0074"); -};_cbbe :=_ggdd .Arguments [0];if _cbbe !=2&&_cbbe !=4&&_cbbe !=8{return _a .Error (_aaedb ,"R\u0065\u0070\u006c\u0069\u0063\u0061\u0074\u0069\u0076\u0065\u0042\u0069\u006e\u0061\u0072\u0079\u0045\u0078\u0070\u0061\u006e\u0073\u0069\u006f\u006e\u0020m\u0075s\u0074\u0020\u0062\u0065 \u006f\u0066 \u0066\u0061\u0063\u0074\u006f\u0072\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d"); -};*_aggb -=_bdcf [_cbbe /4];case MopAddBorder :if len (_ggdd .Arguments )==0{return _a .Error (_aaedb ,"\u0041\u0064\u0064B\u006f\u0072\u0064\u0065r\u0020\u0072\u0065\u0071\u0075\u0069\u0072e\u0073\u0020\u006f\u006e\u0065\u0020\u0061\u0072\u0067\u0075\u006d\u0065\u006e\u0074"); -};_edde :=_ggdd .Arguments [0];if _dddef > 0{return _a .Error (_aaedb ,"\u0041\u0064\u0064\u0042\u006f\u0072\u0064\u0065\u0072\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u0020f\u0069\u0072\u0073\u0074\u0020\u006d\u006f\u0072\u0070\u0068\u0020\u0070\u0072o\u0063\u0065\u0073\u0073"); -};if _edde < 1{return _a .Error (_aaedb ,"\u0041\u0064\u0064\u0042o\u0072\u0064\u0065\u0072\u0020\u0076\u0061\u006c\u0075\u0065 \u006co\u0077\u0065\u0072\u0020\u0074\u0068\u0061n\u0020\u0030");};*_cgdd =_edde ;};return nil ;};func (_dcdb *byHeight )Swap (i ,j int ){_dcdb .Values [i ],_dcdb .Values [j ]=_dcdb .Values [j ],_dcdb .Values [i ]; -if _dcdb .Boxes !=nil {_dcdb .Boxes [i ],_dcdb .Boxes [j ]=_dcdb .Boxes [j ],_dcdb .Boxes [i ];};};func (_dafe MorphProcess )getWidthHeight ()(_gabc ,_cgac int ){return _dafe .Arguments [0],_dafe .Arguments [1];};func (_gaca *Bitmaps )SelectBySize (width ,height int ,tp LocationFilter ,relation SizeComparison )(_cdgg *Bitmaps ,_cdgde error ){const _gcfb ="B\u0069t\u006d\u0061\u0070\u0073\u002e\u0053\u0065\u006ce\u0063\u0074\u0042\u0079Si\u007a\u0065"; -if _gaca ==nil {return nil ,_a .Error (_gcfb ,"\u0027\u0062\u0027 B\u0069\u0074\u006d\u0061\u0070\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};switch tp {case LocSelectWidth ,LocSelectHeight ,LocSelectIfEither ,LocSelectIfBoth :default:return nil ,_a .Errorf (_gcfb ,"\u0070\u0072\u006f\u0076\u0069d\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u006fc\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0064",tp ); -};switch relation {case SizeSelectIfLT ,SizeSelectIfGT ,SizeSelectIfLTE ,SizeSelectIfGTE ,SizeSelectIfEQ :default:return nil ,_a .Errorf (_gcfb ,"\u0069\u006e\u0076\u0061li\u0064\u0020\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025d\u0027",relation ); -};_bafb ,_cdgde :=_gaca .makeSizeIndicator (width ,height ,tp ,relation );if _cdgde !=nil {return nil ,_a .Wrap (_cdgde ,_gcfb ,"");};_cdgg ,_cdgde =_gaca .selectByIndicator (_bafb );if _cdgde !=nil {return nil ,_a .Wrap (_cdgde ,_gcfb ,"");};return _cdgg ,nil ; -};type Getter interface{GetBitmap ()*Bitmap ;};func MakePixelCentroidTab8 ()[]int {return _feeb ()};func (_fbff Points )GetIntX (i int )(int ,error ){if i >=len (_fbff ){return 0,_a .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065t\u0049\u006e\u0074\u0058","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};return int (_fbff [i ].X ),nil ;};func TstWriteSymbols (t *_f .T ,bms *Bitmaps ,src *Bitmap ){for _eebde :=0;_eebde < bms .Size ();_eebde ++{_gggga :=bms .Values [_eebde ];_ggga :=bms .Boxes [_eebde ];_eccf :=src .RasterOperation (_ggga .Min .X ,_ggga .Min .Y ,_gggga .Width ,_gggga .Height ,PixSrc ,_gggga ,0,0); -_g .NoError (t ,_eccf );};};func (_dgaf *Selection )setOrigin (_bcdd ,_gaded int ){_dgaf .Cy ,_dgaf .Cx =_bcdd ,_gaded };func HausTest (p1 ,p2 ,p3 ,p4 *Bitmap ,delX ,delY float32 ,maxDiffW ,maxDiffH int )(bool ,error ){const _daag ="\u0048\u0061\u0075\u0073\u0054\u0065\u0073\u0074"; -_feeef ,_dgaad :=p1 .Width ,p1 .Height ;_cbb ,_ebcf :=p3 .Width ,p3 .Height ;if _c .Abs (_feeef -_cbb )> maxDiffW {return false ,nil ;};if _c .Abs (_dgaad -_ebcf )> maxDiffH {return false ,nil ;};_cbaf :=int (delX +_c .Sign (delX )*0.5);_egef :=int (delY +_c .Sign (delY )*0.5); -var _gfbc error ;_effd :=p1 .CreateTemplate ();if _gfbc =_effd .RasterOperation (0,0,_feeef ,_dgaad ,PixSrc ,p1 ,0,0);_gfbc !=nil {return false ,_a .Wrap (_gfbc ,_daag ,"p\u0031\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074");};if _gfbc =_effd .RasterOperation (_cbaf ,_egef ,_feeef ,_dgaad ,PixNotSrcAndDst ,p4 ,0,0); -_gfbc !=nil {return false ,_a .Wrap (_gfbc ,_daag ,"\u0021p\u0034\u0020\u0026\u0020\u0074");};if _effd .Zero (){return false ,nil ;};if _gfbc =_effd .RasterOperation (_cbaf ,_egef ,_cbb ,_ebcf ,PixSrc ,p3 ,0,0);_gfbc !=nil {return false ,_a .Wrap (_gfbc ,_daag ,"p\u0033\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074"); -};if _gfbc =_effd .RasterOperation (0,0,_cbb ,_ebcf ,PixNotSrcAndDst ,p2 ,0,0);_gfbc !=nil {return false ,_a .Wrap (_gfbc ,_daag ,"\u0021p\u0032\u0020\u0026\u0020\u0074");};return _effd .Zero (),nil ;};func Centroids (bms []*Bitmap )(*Points ,error ){_bfcd :=make ([]Point ,len (bms )); -_agde :=_feeb ();_acgb :=_acea ();var _gcgf error ;for _ebae ,_acef :=range bms {_bfcd [_ebae ],_gcgf =_acef .centroid (_agde ,_acgb );if _gcgf !=nil {return nil ,_gcgf ;};};_ffc :=Points (_bfcd );return &_ffc ,nil ;};func (_bcaec *BitmapsArray )AddBitmaps (bm *Bitmaps ){_bcaec .Values =append (_bcaec .Values ,bm )}; -func (_bfcgc *Points )Add (pt *Points )error {const _abce ="\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0041\u0064\u0064";if _bfcgc ==nil {return _a .Error (_abce ,"\u0070o\u0069n\u0074\u0073\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if pt ==nil {return _a .Error (_abce ,"a\u0072\u0067\u0075\u006d\u0065\u006et\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u006eo\u0074\u0020\u0064e\u0066i\u006e\u0065\u0064");};*_bfcgc =append (*_bfcgc ,*pt ...);return nil ;};func _gceab (_fdbcd ,_gfagc *Bitmap ,_fbec ,_ggbe int )(_abgd error ){const _aegfd ="\u0073e\u0065d\u0066\u0069\u006c\u006c\u0042i\u006e\u0061r\u0079\u004c\u006f\u0077\u0034"; -var (_cgbfd ,_gcce ,_bdcd ,_ddda int ;_fgae ,_bcdg ,_eega ,_cgaac ,_cfdg ,_beca ,_cggagg byte ;);for _cgbfd =0;_cgbfd < _fbec ;_cgbfd ++{_bdcd =_cgbfd *_fdbcd .RowStride ;_ddda =_cgbfd *_gfagc .RowStride ;for _gcce =0;_gcce < _ggbe ;_gcce ++{_fgae ,_abgd =_fdbcd .GetByte (_bdcd +_gcce ); -if _abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0066i\u0072\u0073\u0074\u0020\u0067\u0065t");};_bcdg ,_abgd =_gfagc .GetByte (_ddda +_gcce );if _abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0067\u0065\u0074"); -};if _cgbfd > 0{_eega ,_abgd =_fdbcd .GetByte (_bdcd -_fdbcd .RowStride +_gcce );if _abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0069\u0020\u003e \u0030");};_fgae |=_eega ;};if _gcce > 0{_cgaac ,_abgd =_fdbcd .GetByte (_bdcd +_gcce -1);if _abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u006a\u0020\u003e \u0030"); -};_fgae |=_cgaac <<7;};_fgae &=_bcdg ;if _fgae ==0||(^_fgae )==0{if _abgd =_fdbcd .SetByte (_bdcd +_gcce ,_fgae );_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"b\u0074\u0020\u003d\u003d 0\u0020|\u007c\u0020\u0028\u005e\u0062t\u0029\u0020\u003d\u003d\u0020\u0030"); -};continue ;};for {_cggagg =_fgae ;_fgae =(_fgae |(_fgae >>1)|(_fgae <<1))&_bcdg ;if (_fgae ^_cggagg )==0{if _abgd =_fdbcd .SetByte (_bdcd +_gcce ,_fgae );_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0070\u0072\u0065\u0076 \u0062\u0079\u0074\u0065"); -};break ;};};};};for _cgbfd =_fbec -1;_cgbfd >=0;_cgbfd --{_bdcd =_cgbfd *_fdbcd .RowStride ;_ddda =_cgbfd *_gfagc .RowStride ;for _gcce =_ggbe -1;_gcce >=0;_gcce --{if _fgae ,_abgd =_fdbcd .GetByte (_bdcd +_gcce );_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0020\u0066\u0069\u0072\u0073t\u0020\u0067\u0065\u0074"); -};if _bcdg ,_abgd =_gfagc .GetByte (_ddda +_gcce );_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"r\u0065\u0076\u0065\u0072se\u0020g\u0065\u0074\u0020\u006d\u0061s\u006b\u0020\u0062\u0079\u0074\u0065");};if _cgbfd < _fbec -1{if _cfdg ,_abgd =_fdbcd .GetByte (_bdcd +_fdbcd .RowStride +_gcce ); -_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0072\u0065v\u0065\u0072\u0073e\u0020\u0069\u0020\u003c\u0020\u0068\u0020\u002d\u0031");};_fgae |=_cfdg ;};if _gcce < _ggbe -1{if _beca ,_abgd =_fdbcd .GetByte (_bdcd +_gcce +1);_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0072\u0065\u0076\u0065rs\u0065\u0020\u006a\u0020\u003c\u0020\u0077\u0070\u006c\u0020\u002d\u0020\u0031"); -};_fgae |=_beca >>7;};_fgae &=_bcdg ;if _fgae ==0||(^_fgae )==0{if _abgd =_fdbcd .SetByte (_bdcd +_gcce ,_fgae );_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006d\u0061\u0073k\u0065\u0064\u0020\u0062\u0079\u0074\u0065\u0020\u0066\u0061i\u006c\u0065\u0064"); -};continue ;};for {_cggagg =_fgae ;_fgae =(_fgae |(_fgae >>1)|(_fgae <<1))&_bcdg ;if (_fgae ^_cggagg )==0{if _abgd =_fdbcd .SetByte (_bdcd +_gcce ,_fgae );_abgd !=nil {return _a .Wrap (_abgd ,_aegfd ,"\u0072e\u0076\u0065\u0072\u0073e\u0020\u0073\u0065\u0074\u0074i\u006eg\u0020p\u0072\u0065\u0076\u0020\u0062\u0079\u0074e"); -};break ;};};};};return nil ;};func (_fff *Bitmap )GetVanillaData ()[]byte {if _fff .Color ==Chocolate {_fff .inverseData ();};return _fff .Data ;};func _gfdee (_cgdg *Bitmap ,_cfaag ,_gfdb ,_fbbb ,_ecda int ,_ceddc RasterOperator ){if _cfaag < 0{_fbbb +=_cfaag ; -_cfaag =0;};_gega :=_cfaag +_fbbb -_cgdg .Width ;if _gega > 0{_fbbb -=_gega ;};if _gfdb < 0{_ecda +=_gfdb ;_gfdb =0;};_gbcb :=_gfdb +_ecda -_cgdg .Height ;if _gbcb > 0{_ecda -=_gbcb ;};if _fbbb <=0||_ecda <=0{return ;};if (_cfaag &7)==0{_cebd (_cgdg ,_cfaag ,_gfdb ,_fbbb ,_ecda ,_ceddc ); -}else {_fgbbg (_cgdg ,_cfaag ,_gfdb ,_fbbb ,_ecda ,_ceddc );};};func (_bcb *Bitmap )Equals (s *Bitmap )bool {if len (_bcb .Data )!=len (s .Data )||_bcb .Width !=s .Width ||_bcb .Height !=s .Height {return false ;};for _eaf :=0;_eaf < _bcb .Height ;_eaf ++{_gea :=_eaf *_bcb .RowStride ; -for _age :=0;_age < _bcb .RowStride ;_age ++{if _bcb .Data [_gea +_age ]!=s .Data [_gea +_age ]{return false ;};};};return true ;};var _bdcf =[5]int {1,2,3,0,4};const (Vanilla Color =iota ;Chocolate ;);type byWidth Bitmaps ;func Centroid (bm *Bitmap ,centTab ,sumTab []int )(Point ,error ){return bm .centroid (centTab ,sumTab )}; -const _faee =5000;func _acbf (_defc *Bitmap ,_efcg *_c .Stack ,_bggbf ,_fbbe int )(_fgfc *_fg .Rectangle ,_gccb error ){const _gabf ="\u0073e\u0065d\u0046\u0069\u006c\u006c\u0053\u0074\u0061\u0063\u006b\u0042\u0042";if _defc ==nil {return nil ,_a .Error (_gabf ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0073\u0027\u0020\u0042\u0069\u0074\u006d\u0061\u0070"); -};if _efcg ==nil {return nil ,_a .Error (_gabf ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0027\u0073\u0074ac\u006b\u0027");};_fgdcd ,_gbcc :=_defc .Width ,_defc .Height ;_ggcc :=_fgdcd -1;_efbe :=_gbcc -1;if _bggbf < 0||_bggbf > _ggcc ||_fbbe < 0||_fbbe > _efbe ||!_defc .GetPixel (_bggbf ,_fbbe ){return nil ,nil ; -};_cfde :=_fg .Rect (100000,100000,0,0);if _gccb =_adcc (_efcg ,_bggbf ,_bggbf ,_fbbe ,1,_efbe ,&_cfde );_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u0069\u006e\u0069t\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _gccb =_adcc (_efcg ,_bggbf ,_bggbf ,_fbbe +1,-1,_efbe ,&_cfde ); -_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u0032\u006ed\u0020\u0069\u006ei\u0074\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};_cfde .Min .X ,_cfde .Max .X =_bggbf ,_bggbf ;_cfde .Min .Y ,_cfde .Max .Y =_fbbe ,_fbbe ;var (_bcad *fillSegment ; -_ggbb int ;);for _efcg .Len ()> 0{if _bcad ,_gccb =_feae (_efcg );_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"");};_fbbe =_bcad ._fegcf ;for _bggbf =_bcad ._aebdc -1;_bggbf >=0&&_defc .GetPixel (_bggbf ,_fbbe );_bggbf --{if _gccb =_defc .SetPixel (_bggbf ,_fbbe ,0); -_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u0031s\u0074\u0020\u0073\u0065\u0074");};};if _bggbf >=_bcad ._aebdc -1{for {for _bggbf ++;_bggbf <=_bcad ._bcag +1&&_bggbf <=_ggcc &&!_defc .GetPixel (_bggbf ,_fbbe );_bggbf ++{};_ggbb =_bggbf ;if !(_bggbf <=_bcad ._bcag +1&&_bggbf <=_ggcc ){break ; -};for ;_bggbf <=_ggcc &&_defc .GetPixel (_bggbf ,_fbbe );_bggbf ++{if _gccb =_defc .SetPixel (_bggbf ,_fbbe ,0);_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u0032n\u0064\u0020\u0073\u0065\u0074");};};if _gccb =_adcc (_efcg ,_ggbb ,_bggbf -1,_bcad ._fegcf ,_bcad ._aggbd ,_efbe ,&_cfde ); -_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"n\u006f\u0072\u006d\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _bggbf > _bcad ._bcag {if _gccb =_adcc (_efcg ,_bcad ._bcag +1,_bggbf -1,_bcad ._fegcf ,-_bcad ._aggbd ,_efbe ,&_cfde );_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u006ce\u0061k\u0020\u006f\u006e\u0020\u0072i\u0067\u0068t\u0020\u0073\u0069\u0064\u0065"); -};};};continue ;};_ggbb =_bggbf +1;if _ggbb < _bcad ._aebdc {if _gccb =_adcc (_efcg ,_ggbb ,_bcad ._aebdc -1,_bcad ._fegcf ,-_bcad ._aggbd ,_efbe ,&_cfde );_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u006c\u0065\u0061\u006b\u0020\u006f\u006e\u0020\u006c\u0065\u0066\u0074 \u0073\u0069\u0064\u0065"); -};};_bggbf =_bcad ._aebdc ;for {for ;_bggbf <=_ggcc &&_defc .GetPixel (_bggbf ,_fbbe );_bggbf ++{if _gccb =_defc .SetPixel (_bggbf ,_fbbe ,0);_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u0032n\u0064\u0020\u0073\u0065\u0074");};};if _gccb =_adcc (_efcg ,_ggbb ,_bggbf -1,_bcad ._fegcf ,_bcad ._aggbd ,_efbe ,&_cfde ); -_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"n\u006f\u0072\u006d\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _bggbf > _bcad ._bcag {if _gccb =_adcc (_efcg ,_bcad ._bcag +1,_bggbf -1,_bcad ._fegcf ,-_bcad ._aggbd ,_efbe ,&_cfde );_gccb !=nil {return nil ,_a .Wrap (_gccb ,_gabf ,"\u006ce\u0061k\u0020\u006f\u006e\u0020\u0072i\u0067\u0068t\u0020\u0073\u0069\u0064\u0065"); -};};for _bggbf ++;_bggbf <=_bcad ._bcag +1&&_bggbf <=_ggcc &&!_defc .GetPixel (_bggbf ,_fbbe );_bggbf ++{};_ggbb =_bggbf ;if !(_bggbf <=_bcad ._bcag +1&&_bggbf <=_ggcc ){break ;};};};_cfde .Max .X ++;_cfde .Max .Y ++;return &_cfde ,nil ;};type Bitmap struct{Width ,Height int ; -BitmapNumber int ;RowStride int ;Data []byte ;Color Color ;Special int ;Text string ;XResolution ,YResolution int ;};func (_aec *Bitmap )ClipRectangle (box *_fg .Rectangle )(_ddggf *Bitmap ,_gadd *_fg .Rectangle ,_fdeb error ){const _dab ="\u0043\u006c\u0069\u0070\u0052\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"; -if box ==nil {return nil ,nil ,_a .Error (_dab ,"\u0062o\u0078 \u0069\u0073\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};_fgf ,_gba :=_aec .Width ,_aec .Height ;_cbc :=_fg .Rect (0,0,_fgf ,_gba );if !box .Overlaps (_cbc ){return nil ,nil ,_a .Error (_dab ,"b\u006f\u0078\u0020\u0064oe\u0073n\u0027\u0074\u0020\u006f\u0076e\u0072\u006c\u0061\u0070\u0020\u0062"); -};_abc :=box .Intersect (_cbc );_fbdd ,_abcc :=_abc .Min .X ,_abc .Min .Y ;_dcf ,_cab :=_abc .Dx (),_abc .Dy ();_ddggf =New (_dcf ,_cab );_ddggf .Text =_aec .Text ;if _fdeb =_ddggf .RasterOperation (0,0,_dcf ,_cab ,PixSrc ,_aec ,_fbdd ,_abcc );_fdeb !=nil {return nil ,nil ,_a .Wrap (_fdeb ,_dab ,"\u0050\u0069\u0078\u0053\u0072\u0063\u0020\u0074\u006f\u0020\u0063\u006ci\u0070\u0070\u0065\u0064"); -};_gadd =&_abc ;return _ddggf ,_gadd ,nil ;};func (_gccc *Bitmap )AddBorder (borderSize ,val int )(*Bitmap ,error ){if borderSize ==0{return _gccc .Copy (),nil ;};_egf ,_gbfa :=_gccc .addBorderGeneral (borderSize ,borderSize ,borderSize ,borderSize ,val ); -if _gbfa !=nil {return nil ,_a .Wrap (_gbfa ,"\u0041d\u0064\u0042\u006f\u0072\u0064\u0065r","");};return _egf ,nil ;};func (_edgc *Boxes )Get (i int )(*_fg .Rectangle ,error ){const _gfgc ="\u0042o\u0078\u0065\u0073\u002e\u0047\u0065t";if _edgc ==nil {return nil ,_a .Error (_gfgc ,"\u0027\u0042\u006f\u0078es\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};if i > len (*_edgc )-1{return nil ,_a .Errorf (_gfgc ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return (*_edgc )[i ],nil ;};func (_fbeg *Bitmaps )GroupByWidth ()(*BitmapsArray ,error ){const _dfec ="\u0047\u0072\u006fu\u0070\u0042\u0079\u0057\u0069\u0064\u0074\u0068"; -if len (_fbeg .Values )==0{return nil ,_a .Error (_dfec ,"\u006eo\u0020v\u0061\u006c\u0075\u0065\u0073 \u0070\u0072o\u0076\u0069\u0064\u0065\u0064");};_gbag :=&BitmapsArray {};_fbeg .SortByWidth ();_eaff :=-1;_feebg :=-1;for _bdaa :=0;_bdaa < len (_fbeg .Values ); -_bdaa ++{_deae :=_fbeg .Values [_bdaa ].Width ;if _deae > _eaff {_eaff =_deae ;_feebg ++;_gbag .Values =append (_gbag .Values ,&Bitmaps {});};_gbag .Values [_feebg ].AddBitmap (_fbeg .Values [_bdaa ]);};return _gbag ,nil ;};func (_egc *Bitmap )GetUnpaddedData ()([]byte ,error ){_bdfd :=uint (_egc .Width &0x07); -if _bdfd ==0{return _egc .Data ,nil ;};_dad :=_egc .Width *_egc .Height ;if _dad %8!=0{_dad >>=3;_dad ++;}else {_dad >>=3;};_dgag :=make ([]byte ,_dad );_gaee :=_e .NewWriterMSB (_dgag );const _cdc ="\u0047e\u0074U\u006e\u0070\u0061\u0064\u0064\u0065\u0064\u0044\u0061\u0074\u0061"; -for _fad :=0;_fad < _egc .Height ;_fad ++{for _fbfg :=0;_fbfg < _egc .RowStride ;_fbfg ++{_faa :=_egc .Data [_fad *_egc .RowStride +_fbfg ];if _fbfg !=_egc .RowStride -1{_ged :=_gaee .WriteByte (_faa );if _ged !=nil {return nil ,_a .Wrap (_ged ,_cdc ,""); -};continue ;};for _dcab :=uint (0);_dcab < _bdfd ;_dcab ++{_bfg :=_gaee .WriteBit (int (_faa >>(7-_dcab )&0x01));if _bfg !=nil {return nil ,_a .Wrap (_bfg ,_cdc ,"");};};};};return _dgag ,nil ;};type CombinationOperator int ;func _bb (_dae ,_ba *Bitmap )(_ebf error ){const _fec ="\u0065\u0078\u0070\u0061nd\u0042\u0069\u006e\u0061\u0072\u0079\u0046\u0061\u0063\u0074\u006f\u0072\u0038"; -_gfd :=_ba .RowStride ;_cbd :=_dae .RowStride ;var _gcd ,_bcg ,_gad ,_add ,_ddb int ;for _gad =0;_gad < _ba .Height ;_gad ++{_gcd =_gad *_gfd ;_bcg =8*_gad *_cbd ;for _add =0;_add < _gfd ;_add ++{if _ebf =_dae .setEightBytes (_bcg +_add *8,_eeae [_ba .Data [_gcd +_add ]]); -_ebf !=nil {return _a .Wrap (_ebf ,_fec ,"");};};for _ddb =1;_ddb < 8;_ddb ++{for _add =0;_add < _cbd ;_add ++{if _ebf =_dae .SetByte (_bcg +_ddb *_cbd +_add ,_dae .Data [_bcg +_add ]);_ebf !=nil {return _a .Wrap (_ebf ,_fec ,"");};};};};return nil ;}; -func _bbbb (_acdea ,_dddb *Bitmap ,_ebfc *Selection )(*Bitmap ,error ){const _aegf ="\u0065\u0072\u006fd\u0065";var (_daec error ;_cgagc *Bitmap ;);_acdea ,_daec =_cefb (_acdea ,_dddb ,_ebfc ,&_cgagc );if _daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,""); -};if _daec =_acdea .setAll ();_daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,"");};var _bfdg SelectionValue ;for _badd :=0;_badd < _ebfc .Height ;_badd ++{for _bed :=0;_bed < _ebfc .Width ;_bed ++{_bfdg =_ebfc .Data [_badd ][_bed ];if _bfdg ==SelHit {_daec =_bgcc (_acdea ,_ebfc .Cx -_bed ,_ebfc .Cy -_badd ,_dddb .Width ,_dddb .Height ,PixSrcAndDst ,_cgagc ,0,0); -if _daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,"");};};};};if MorphBC ==SymmetricMorphBC {return _acdea ,nil ;};_dbbe ,_ceeaf ,_aacc ,_bacee :=_ebfc .findMaxTranslations ();if _dbbe > 0{if _daec =_acdea .RasterOperation (0,0,_dbbe ,_dddb .Height ,PixClr ,nil ,0,0); -_daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,"\u0078\u0070\u0020\u003e\u0020\u0030");};};if _aacc > 0{if _daec =_acdea .RasterOperation (_dddb .Width -_aacc ,0,_aacc ,_dddb .Height ,PixClr ,nil ,0,0);_daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,"\u0078\u006e\u0020\u003e\u0020\u0030"); -};};if _ceeaf > 0{if _daec =_acdea .RasterOperation (0,0,_dddb .Width ,_ceeaf ,PixClr ,nil ,0,0);_daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,"\u0079\u0070\u0020\u003e\u0020\u0030");};};if _bacee > 0{if _daec =_acdea .RasterOperation (0,_dddb .Height -_bacee ,_dddb .Width ,_bacee ,PixClr ,nil ,0,0); -_daec !=nil {return nil ,_a .Wrap (_daec ,_aegf ,"\u0079\u006e\u0020\u003e\u0020\u0030");};};return _acdea ,nil ;};func (_ecga *Bitmap )ToImage ()_fg .Image {_cec ,_cedfd :=_ca .NewImage (_ecga .Width ,_ecga .Height ,1,1,_ecga .Data ,nil ,nil );if _cedfd !=nil {_dc .Log .Error ("\u0043\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020j\u0062\u0069\u0067\u0032\u002e\u0042\u0069\u0074m\u0061p\u0020\u0074\u006f\u0020\u0069\u006d\u0061\u0067\u0065\u0075\u0074\u0069\u006c\u002e\u0049\u006d\u0061\u0067e\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_cedfd ); -};return _cec ;};const (_ SizeSelection =iota ;SizeSelectByWidth ;SizeSelectByHeight ;SizeSelectByMaxDimension ;SizeSelectByArea ;SizeSelectByPerimeter ;);func _bfe (_addd uint ,_ecfb byte )byte {return _ecfb >>_addd <<_addd };type byHeight Bitmaps ;type BoundaryCondition int ; -func TstTSymbol (t *_f .T ,scale ...int )*Bitmap {_dcede ,_gcdaa :=NewWithData (5,5,[]byte {0xF8,0x20,0x20,0x20,0x20});_g .NoError (t ,_gcdaa );return TstGetScaledSymbol (t ,_dcede ,scale ...);};func CombineBytes (oldByte ,newByte byte ,op CombinationOperator )byte {return _agf (oldByte ,newByte ,op ); -};func _gfbb (_fbdc *Bitmap ,_fgfe ,_gcea ,_gegc ,_dac int ,_dcfa RasterOperator ,_dccc *Bitmap ,_eaae ,_ddgb int )error {var (_gbfgd byte ;_ffd int ;_eaea int ;_egca ,_bedb int ;_bddc ,_gafc int ;);_cgec :=_gegc >>3;_abdb :=_gegc &7;if _abdb > 0{_gbfgd =_bbef [_abdb ]; -};_ffd =_dccc .RowStride *_ddgb +(_eaae >>3);_eaea =_fbdc .RowStride *_gcea +(_fgfe >>3);switch _dcfa {case PixSrc :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ; -_gafc ++{_fbdc .Data [_bedb ]=_dccc .Data [_egca ];_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],_dccc .Data [_egca ],_gbfgd );};};case PixNotSrc :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ; -_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]=^(_dccc .Data [_egca ]);_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],^_dccc .Data [_egca ],_gbfgd );};};case PixSrcOrDst :for _bddc =0; -_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]|=_dccc .Data [_egca ];_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],_dccc .Data [_egca ]|_fbdc .Data [_bedb ],_gbfgd ); -};};case PixSrcAndDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]&=_dccc .Data [_egca ];_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],_dccc .Data [_egca ]&_fbdc .Data [_bedb ],_gbfgd ); -};};case PixSrcXorDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]^=_dccc .Data [_egca ];_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],_dccc .Data [_egca ]^_fbdc .Data [_bedb ],_gbfgd ); -};};case PixNotSrcOrDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]|=^(_dccc .Data [_egca ]);_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],^(_dccc .Data [_egca ])|_fbdc .Data [_bedb ],_gbfgd ); -};};case PixNotSrcAndDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]&=^(_dccc .Data [_egca ]);_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],^(_dccc .Data [_egca ])&_fbdc .Data [_bedb ],_gbfgd ); -};};case PixSrcOrNotDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]=_dccc .Data [_egca ]|^(_fbdc .Data [_bedb ]);_bedb ++;_egca ++; -};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],_dccc .Data [_egca ]|^(_fbdc .Data [_bedb ]),_gbfgd );};};case PixSrcAndNotDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ; -for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]=_dccc .Data [_egca ]&^(_fbdc .Data [_bedb ]);_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],_dccc .Data [_egca ]&^(_fbdc .Data [_bedb ]),_gbfgd );};};case PixNotPixSrcOrDst :for _bddc =0; -_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]=^(_dccc .Data [_egca ]|_fbdc .Data [_bedb ]);_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],^(_dccc .Data [_egca ]|_fbdc .Data [_bedb ]),_gbfgd ); -};};case PixNotPixSrcAndDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ;for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]=^(_dccc .Data [_egca ]&_fbdc .Data [_bedb ]);_bedb ++; -_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],^(_dccc .Data [_egca ]&_fbdc .Data [_bedb ]),_gbfgd );};};case PixNotPixSrcXorDst :for _bddc =0;_bddc < _dac ;_bddc ++{_egca =_ffd +_bddc *_dccc .RowStride ;_bedb =_eaea +_bddc *_fbdc .RowStride ; -for _gafc =0;_gafc < _cgec ;_gafc ++{_fbdc .Data [_bedb ]=^(_dccc .Data [_egca ]^_fbdc .Data [_bedb ]);_bedb ++;_egca ++;};if _abdb > 0{_fbdc .Data [_bedb ]=_efgd (_fbdc .Data [_bedb ],^(_dccc .Data [_egca ]^_fbdc .Data [_bedb ]),_gbfgd );};};default:_dc .Log .Debug ("\u0050\u0072ov\u0069\u0064\u0065d\u0020\u0069\u006e\u0076ali\u0064 r\u0061\u0073\u0074\u0065\u0072\u0020\u006fpe\u0072\u0061\u0074\u006f\u0072\u003a\u0020%\u0076",_dcfa ); -return _a .Error ("\u0072\u0061\u0073\u0074er\u004f\u0070\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e\u0065\u0064\u004co\u0077","\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072"); -};return nil ;};func _abf (_gdd *Bitmap ,_be int )(*Bitmap ,error ){const _ef ="\u0065x\u0070a\u006e\u0064\u0042\u0069\u006ea\u0072\u0079P\u006f\u0077\u0065\u0072\u0032";if _gdd ==nil {return nil ,_a .Error (_ef ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if _be ==1{return _agbb (nil ,_gdd );};if _be !=2&&_be !=4&&_be !=8{return nil ,_a .Error (_ef ,"\u0066\u0061\u0063t\u006f\u0072\u0020\u006du\u0073\u0074\u0020\u0062\u0065\u0020\u0069n\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d\u0020\u0072\u0061\u006e\u0067\u0065"); -};_ebg :=_be *_gdd .Width ;_bbg :=_be *_gdd .Height ;_fecd :=New (_ebg ,_bbg );var _gb error ;switch _be {case 2:_gb =_ggd (_fecd ,_gdd );case 4:_gb =_gf (_fecd ,_gdd );case 8:_gb =_bb (_fecd ,_gdd );};if _gb !=nil {return nil ,_a .Wrap (_gb ,_ef ,""); -};return _fecd ,nil ;};func (_dfe *Bitmap )String ()string {var _edd ="\u000a";for _acde :=0;_acde < _dfe .Height ;_acde ++{var _ddcc string ;for _fgdg :=0;_fgdg < _dfe .Width ;_fgdg ++{_fgb :=_dfe .GetPixel (_fgdg ,_acde );if _fgb {_ddcc +="\u0031";}else {_ddcc +="\u0030"; -};};_edd +=_ddcc +"\u000a";};return _edd ;};func _bgae (_gfaca *Bitmap ,_gacd *Bitmap ,_cggag int )(_ccad error ){const _abbg ="\u0073\u0065\u0065\u0064\u0066\u0069\u006c\u006c\u0042\u0069\u006e\u0061r\u0079\u004c\u006f\u0077";_ccga :=_egag (_gfaca .Height ,_gacd .Height ); -_dbec :=_egag (_gfaca .RowStride ,_gacd .RowStride );switch _cggag {case 4:_ccad =_gceab (_gfaca ,_gacd ,_ccga ,_dbec );case 8:_ccad =_bcde (_gfaca ,_gacd ,_ccga ,_dbec );default:return _a .Errorf (_abbg ,"\u0063\u006f\u006e\u006e\u0065\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0034\u0020\u006fr\u0020\u0038\u0020\u002d\u0020i\u0073\u003a \u0027\u0025\u0064\u0027",_cggag ); -};if _ccad !=nil {return _a .Wrap (_ccad ,_abbg ,"");};return nil ;};func (_abcf CombinationOperator )String ()string {var _edafa string ;switch _abcf {case CmbOpOr :_edafa ="\u004f\u0052";case CmbOpAnd :_edafa ="\u0041\u004e\u0044";case CmbOpXor :_edafa ="\u0058\u004f\u0052"; -case CmbOpXNor :_edafa ="\u0058\u004e\u004f\u0052";case CmbOpReplace :_edafa ="\u0052E\u0050\u004c\u0041\u0043\u0045";case CmbOpNot :_edafa ="\u004e\u004f\u0054";};return _edafa ;};func (_ebega *Selection )findMaxTranslations ()(_abfg ,_efagb ,_agbg ,_dfbd int ){for _fbffg :=0; -_fbffg < _ebega .Height ;_fbffg ++{for _efgc :=0;_efgc < _ebega .Width ;_efgc ++{if _ebega .Data [_fbffg ][_efgc ]==SelHit {_abfg =_cgcc (_abfg ,_ebega .Cx -_efgc );_efagb =_cgcc (_efagb ,_ebega .Cy -_fbffg );_agbg =_cgcc (_agbg ,_efgc -_ebega .Cx );_dfbd =_cgcc (_dfbd ,_fbffg -_ebega .Cy ); -};};};return _abfg ,_efagb ,_agbg ,_dfbd ;};func (_ddaa *byWidth )Less (i ,j int )bool {return _ddaa .Values [i ].Width < _ddaa .Values [j ].Width };func TstImageBitmapInverseData ()[]byte {_baba :=_cddd .Copy ();_baba .InverseData ();return _baba .Data ; -};func (_fddd *ClassedPoints )ySortFunction ()func (_cdca int ,_cggec int )bool {return func (_dbbd ,_ggcdd int )bool {return _fddd .YAtIndex (_dbbd )< _fddd .YAtIndex (_ggcdd )};};func TstPSymbol (t *_f .T )*Bitmap {t .Helper ();_bdef :=New (5,8);_g .NoError (t ,_bdef .SetPixel (0,0,1)); -_g .NoError (t ,_bdef .SetPixel (1,0,1));_g .NoError (t ,_bdef .SetPixel (2,0,1));_g .NoError (t ,_bdef .SetPixel (3,0,1));_g .NoError (t ,_bdef .SetPixel (4,1,1));_g .NoError (t ,_bdef .SetPixel (0,1,1));_g .NoError (t ,_bdef .SetPixel (4,2,1));_g .NoError (t ,_bdef .SetPixel (0,2,1)); -_g .NoError (t ,_bdef .SetPixel (4,3,1));_g .NoError (t ,_bdef .SetPixel (0,3,1));_g .NoError (t ,_bdef .SetPixel (0,4,1));_g .NoError (t ,_bdef .SetPixel (1,4,1));_g .NoError (t ,_bdef .SetPixel (2,4,1));_g .NoError (t ,_bdef .SetPixel (3,4,1));_g .NoError (t ,_bdef .SetPixel (0,5,1)); -_g .NoError (t ,_bdef .SetPixel (0,6,1));_g .NoError (t ,_bdef .SetPixel (0,7,1));return _bdef ;};func (_fdebb Points )YSorter ()func (_eggc ,_egge int )bool {return func (_ecgc ,_bea int )bool {return _fdebb [_ecgc ].Y < _fdebb [_bea ].Y };};type shift int ; -func _bgcc (_gcfag *Bitmap ,_bbaf ,_cfce ,_aeda ,_addg int ,_afee RasterOperator ,_gcac *Bitmap ,_agaa ,_ebegd int )error {const _dbe ="\u0072a\u0073t\u0065\u0072\u004f\u0070\u0065\u0072\u0061\u0074\u0069\u006f\u006e";if _gcfag ==nil {return _a .Error (_dbe ,"\u006e\u0069\u006c\u0020\u0027\u0064\u0065\u0073\u0074\u0027\u0020\u0042i\u0074\u006d\u0061\u0070"); -};if _afee ==PixDst {return nil ;};switch _afee {case PixClr ,PixSet ,PixNotDst :_gfdee (_gcfag ,_bbaf ,_cfce ,_aeda ,_addg ,_afee );return nil ;};if _gcac ==nil {_dc .Log .Debug ("\u0052a\u0073\u0074e\u0072\u004f\u0070\u0065r\u0061\u0074\u0069o\u006e\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020bi\u0074\u006d\u0061p\u0020\u0069s\u0020\u006e\u006f\u0074\u0020\u0064e\u0066\u0069n\u0065\u0064"); -return _a .Error (_dbe ,"\u006e\u0069l\u0020\u0027\u0073r\u0063\u0027\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _ebad :=_dggg (_gcfag ,_bbaf ,_cfce ,_aeda ,_addg ,_afee ,_gcac ,_agaa ,_ebegd );_ebad !=nil {return _a .Wrap (_ebad ,_dbe ,"");};return nil ; -};func (_dcef *Bitmap )countPixels ()int {var (_daa int ;_bbd uint8 ;_bbcb byte ;_eea int ;);_dadg :=_dcef .RowStride ;_cgb :=uint (_dcef .Width &0x07);if _cgb !=0{_bbd =uint8 ((0xff<<(8-_cgb ))&0xff);_dadg --;};for _cfae :=0;_cfae < _dcef .Height ;_cfae ++{for _eea =0; -_eea < _dadg ;_eea ++{_bbcb =_dcef .Data [_cfae *_dcef .RowStride +_eea ];_daa +=int (_eab [_bbcb ]);};if _cgb !=0{_daa +=int (_eab [_dcef .Data [_cfae *_dcef .RowStride +_eea ]&_bbd ]);};};return _daa ;};func (_cdce *Bitmap )SetPixel (x ,y int ,pixel byte )error {_abgf :=_cdce .GetByteIndex (x ,y ); -if _abgf > len (_cdce .Data )-1{return _a .Errorf ("\u0053\u0065\u0074\u0050\u0069\u0078\u0065\u006c","\u0069\u006e\u0064\u0065x \u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020%\u0064",_abgf );};_adff :=_cdce .GetBitOffset (x ); -_dcd :=uint (7-_adff );_fee :=_cdce .Data [_abgf ];var _ecf byte ;if pixel ==1{_ecf =_fee |(pixel &0x01<<_dcd );}else {_ecf =_fee &^(1<<_dcd );};_cdce .Data [_abgf ]=_ecf ;return nil ;};func TstNSymbol (t *_f .T ,scale ...int )*Bitmap {_fcag ,_baeaa :=NewWithData (4,5,[]byte {0x90,0xD0,0xB0,0x90,0x90}); -_g .NoError (t ,_baeaa );return TstGetScaledSymbol (t ,_fcag ,scale ...);};var (_cgde *Bitmap ;_cddd *Bitmap ;);var MorphBC BoundaryCondition ;func (_agfc *Bitmaps )selectByIndexes (_ecec []int )(*Bitmaps ,error ){_degce :=&Bitmaps {};for _ ,_ecbe :=range _ecec {_aefa ,_gcbf :=_agfc .GetBitmap (_ecbe ); -if _gcbf !=nil {return nil ,_a .Wrap (_gcbf ,"\u0073e\u006ce\u0063\u0074\u0042\u0079\u0049\u006e\u0064\u0065\u0078\u0065\u0073","");};_degce .AddBitmap (_aefa );};return _degce ,nil ;};func (_aga *Points )AddPoint (x ,y float32 ){*_aga =append (*_aga ,Point {x ,y })}; -func (_cgae *ClassedPoints )GetIntXByClass (i int )(int ,error ){const _dccf ="\u0043\u006c\u0061\u0073s\u0065\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047e\u0074I\u006e\u0074\u0059\u0042\u0079\u0043\u006ca\u0073\u0073";if i >=_cgae .IntSlice .Size (){return 0,_a .Errorf (_dccf ,"\u0069\u003a\u0020\u0027\u0025\u0064\u0027 \u0069\u0073\u0020o\u0075\u0074\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0049\u006e\u0074\u0053\u006c\u0069\u0063\u0065",i ); -};return int (_cgae .XAtIndex (i )),nil ;};func (_degg *Bitmaps )makeSizeIndicator (_dagba ,_bafd int ,_badc LocationFilter ,_bcdfa SizeComparison )(_cbec *_c .NumSlice ,_gcbd error ){const _dcacc ="\u0042i\u0074\u006d\u0061\u0070s\u002e\u006d\u0061\u006b\u0065S\u0069z\u0065I\u006e\u0064\u0069\u0063\u0061\u0074\u006fr"; -if _degg ==nil {return nil ,_a .Error (_dcacc ,"\u0062\u0069\u0074ma\u0070\u0073\u0020\u0027\u0062\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};switch _badc {case LocSelectWidth ,LocSelectHeight ,LocSelectIfEither ,LocSelectIfBoth :default:return nil ,_a .Errorf (_dcacc ,"\u0070\u0072\u006f\u0076\u0069d\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u006fc\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0064",_badc ); -};switch _bcdfa {case SizeSelectIfLT ,SizeSelectIfGT ,SizeSelectIfLTE ,SizeSelectIfGTE ,SizeSelectIfEQ :default:return nil ,_a .Errorf (_dcacc ,"\u0069\u006e\u0076\u0061li\u0064\u0020\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025d\u0027",_bcdfa ); -};_cbec =&_c .NumSlice {};var (_ffgb ,_gggg ,_bgag int ;_gfgg *Bitmap ;);for _ ,_gfgg =range _degg .Values {_ffgb =0;_gggg ,_bgag =_gfgg .Width ,_gfgg .Height ;switch _badc {case LocSelectWidth :if (_bcdfa ==SizeSelectIfLT &&_gggg < _dagba )||(_bcdfa ==SizeSelectIfGT &&_gggg > _dagba )||(_bcdfa ==SizeSelectIfLTE &&_gggg <=_dagba )||(_bcdfa ==SizeSelectIfGTE &&_gggg >=_dagba )||(_bcdfa ==SizeSelectIfEQ &&_gggg ==_dagba ){_ffgb =1; -};case LocSelectHeight :if (_bcdfa ==SizeSelectIfLT &&_bgag < _bafd )||(_bcdfa ==SizeSelectIfGT &&_bgag > _bafd )||(_bcdfa ==SizeSelectIfLTE &&_bgag <=_bafd )||(_bcdfa ==SizeSelectIfGTE &&_bgag >=_bafd )||(_bcdfa ==SizeSelectIfEQ &&_bgag ==_bafd ){_ffgb =1; -};case LocSelectIfEither :if (_bcdfa ==SizeSelectIfLT &&(_gggg < _dagba ||_bgag < _bafd ))||(_bcdfa ==SizeSelectIfGT &&(_gggg > _dagba ||_bgag > _bafd ))||(_bcdfa ==SizeSelectIfLTE &&(_gggg <=_dagba ||_bgag <=_bafd ))||(_bcdfa ==SizeSelectIfGTE &&(_gggg >=_dagba ||_bgag >=_bafd ))||(_bcdfa ==SizeSelectIfEQ &&(_gggg ==_dagba ||_bgag ==_bafd )){_ffgb =1; -};case LocSelectIfBoth :if (_bcdfa ==SizeSelectIfLT &&(_gggg < _dagba &&_bgag < _bafd ))||(_bcdfa ==SizeSelectIfGT &&(_gggg > _dagba &&_bgag > _bafd ))||(_bcdfa ==SizeSelectIfLTE &&(_gggg <=_dagba &&_bgag <=_bafd ))||(_bcdfa ==SizeSelectIfGTE &&(_gggg >=_dagba &&_bgag >=_bafd ))||(_bcdfa ==SizeSelectIfEQ &&(_gggg ==_dagba &&_bgag ==_bafd )){_ffgb =1; -};};_cbec .AddInt (_ffgb );};return _cbec ,nil ;};type BitmapsArray struct{Values []*Bitmaps ;Boxes []*_fg .Rectangle ;};func (_dee *Bitmap )clearAll ()error {return _dee .RasterOperation (0,0,_dee .Width ,_dee .Height ,PixClr ,nil ,0,0);};func (_agef Points )XSorter ()func (_dfedc ,_acca int )bool {return func (_cfgg ,_bgaa int )bool {return _agef [_cfgg ].X < _agef [_bgaa ].X }; -};func TstImageBitmapData ()[]byte {return _cddd .Data };func _bcde (_ffdb ,_deac *Bitmap ,_gbeg ,_fegb int )(_bcdf error ){const _dfgf ="\u0073e\u0065d\u0066\u0069\u006c\u006c\u0042i\u006e\u0061r\u0079\u004c\u006f\u0077\u0038";var (_cgea ,_accad ,_ffgf ,_ffacc int ; -_dced ,_dfadd ,_fagcd ,_bcced ,_aaad ,_dadc ,_afad ,_dcgaa byte ;);for _cgea =0;_cgea < _gbeg ;_cgea ++{_ffgf =_cgea *_ffdb .RowStride ;_ffacc =_cgea *_deac .RowStride ;for _accad =0;_accad < _fegb ;_accad ++{if _dced ,_bcdf =_ffdb .GetByte (_ffgf +_accad ); -_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0067e\u0074 \u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0062\u0079\u0074\u0065");};if _dfadd ,_bcdf =_deac .GetByte (_ffacc +_accad );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0067\u0065\u0074\u0020\u006d\u0061\u0073\u006b\u0020\u0062\u0079\u0074\u0065"); -};if _cgea > 0{if _fagcd ,_bcdf =_ffdb .GetByte (_ffgf -_ffdb .RowStride +_accad );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0069\u0020\u003e\u0020\u0030\u0020\u0062\u0079\u0074\u0065");};_dced |=_fagcd |(_fagcd <<1)|(_fagcd >>1);if _accad > 0{if _dcgaa ,_bcdf =_ffdb .GetByte (_ffgf -_ffdb .RowStride +_accad -1); -_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0069\u0020\u003e\u00200 \u0026\u0026\u0020\u006a\u0020\u003e\u0020\u0030\u0020\u0062\u0079\u0074\u0065");};_dced |=_dcgaa <<7;};if _accad < _fegb -1{if _dcgaa ,_bcdf =_ffdb .GetByte (_ffgf -_ffdb .RowStride +_accad +1); -_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u006a\u0020<\u0020\u0077\u0070l\u0020\u002d\u0020\u0031\u0020\u0062\u0079\u0074\u0065");};_dced |=_dcgaa >>7;};};if _accad > 0{if _bcced ,_bcdf =_ffdb .GetByte (_ffgf +_accad -1);_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u006a\u0020\u003e \u0030"); -};_dced |=_bcced <<7;};_dced &=_dfadd ;if _dced ==0||^_dced ==0{if _bcdf =_ffdb .SetByte (_ffgf +_accad ,_dced );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0073e\u0074t\u0069\u006e\u0067\u0020\u0065m\u0070\u0074y\u0020\u0062\u0079\u0074\u0065");};}; -for {_afad =_dced ;_dced =(_dced |(_dced >>1)|(_dced <<1))&_dfadd ;if (_dced ^_afad )==0{if _bcdf =_ffdb .SetByte (_ffgf +_accad ,_dced );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0070\u0072\u0065\u0076 \u0062\u0079\u0074\u0065"); -};break ;};};};};for _cgea =_gbeg -1;_cgea >=0;_cgea --{_ffgf =_cgea *_ffdb .RowStride ;_ffacc =_cgea *_deac .RowStride ;for _accad =_fegb -1;_accad >=0;_accad --{if _dced ,_bcdf =_ffdb .GetByte (_ffgf +_accad );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0072\u0065\u0076er\u0073\u0065\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0062\u0079\u0074\u0065"); -};if _dfadd ,_bcdf =_deac .GetByte (_ffacc +_accad );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"r\u0065\u0076\u0065\u0072se\u0020g\u0065\u0074\u0020\u006d\u0061s\u006b\u0020\u0062\u0079\u0074\u0065");};if _cgea < _gbeg -1{if _aaad ,_bcdf =_ffdb .GetByte (_ffgf +_ffdb .RowStride +_accad ); -_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0069\u0020\u003c\u0020h\u0020\u002d\u0020\u0031\u0020\u002d\u003e\u0020\u0067\u0065t\u0020s\u006f\u0075\u0072\u0063\u0065\u0020\u0062y\u0074\u0065");};_dced |=_aaad |(_aaad <<1)|_aaad >>1;if _accad > 0{if _dcgaa ,_bcdf =_ffdb .GetByte (_ffgf +_ffdb .RowStride +_accad -1); -_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0069\u0020\u003c h\u002d\u0031\u0020\u0026\u0020\u006a\u0020\u003e\u00200\u0020-\u003e \u0067e\u0074\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0062\u0079\u0074\u0065");};_dced |=_dcgaa <<7;};if _accad < _fegb -1{if _dcgaa ,_bcdf =_ffdb .GetByte (_ffgf +_ffdb .RowStride +_accad +1); -_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0069\u0020\u003c\u0020\u0068\u002d\u0031\u0020\u0026\u0026\u0020\u006a\u0020\u003c\u0077\u0070\u006c\u002d\u0031\u0020\u002d\u003e\u0020\u0067e\u0074\u0020\u0073\u006f\u0075r\u0063\u0065 \u0062\u0079\u0074\u0065"); -};_dced |=_dcgaa >>7;};};if _accad < _fegb -1{if _dadc ,_bcdf =_ffdb .GetByte (_ffgf +_accad +1);_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u006a\u0020<\u0020\u0077\u0070\u006c\u0020\u002d\u0031\u0020\u002d\u003e\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020by\u0074\u0065"); -};_dced |=_dadc >>7;};_dced &=_dfadd ;if _dced ==0||(^_dced )==0{if _bcdf =_ffdb .SetByte (_ffgf +_accad ,_dced );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"\u0073e\u0074 \u006d\u0061\u0073\u006b\u0065\u0064\u0020\u0062\u0079\u0074\u0065");};};for {_afad =_dced ; -_dced =(_dced |(_dced >>1)|(_dced <<1))&_dfadd ;if (_dced ^_afad )==0{if _bcdf =_ffdb .SetByte (_ffgf +_accad ,_dced );_bcdf !=nil {return _a .Wrap (_bcdf ,_dfgf ,"r\u0065\u0076\u0065\u0072se\u0020s\u0065\u0074\u0020\u0070\u0072e\u0076\u0020\u0062\u0079\u0074\u0065"); -};break ;};};};};return nil ;};func (_cbafa *Bitmaps )String ()string {_aegadc :=_ad .Builder {};for _ ,_fbbg :=range _cbafa .Values {_aegadc .WriteString (_fbbg .String ());_aegadc .WriteRune ('\n');};return _aegadc .String ();};func _dgf (_abfe ,_dfed *Bitmap ,_beecg ,_defe int )(*Bitmap ,error ){const _geed ="d\u0069\u006c\u0061\u0074\u0065\u0042\u0072\u0069\u0063\u006b"; -if _dfed ==nil {_dc .Log .Debug ("\u0064\u0069\u006c\u0061\u0074\u0065\u0042\u0072\u0069\u0063k\u0020\u0073\u006f\u0075\u0072\u0063\u0065 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");return nil ,_a .Error (_geed ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); -};if _beecg < 1||_defe < 1{return nil ,_a .Error (_geed ,"\u0068\u0053\u007a\u0069\u0065 \u0061\u006e\u0064\u0020\u0076\u0053\u0069\u007a\u0065\u0020\u0061\u0072\u0065 \u006e\u006f\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0031"); -};if _beecg ==1&&_defe ==1{_bdfb ,_eefd :=_agbb (_abfe ,_dfed );if _eefd !=nil {return nil ,_a .Wrap (_eefd ,_geed ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u0026\u0026 \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};return _bdfb ,nil ;};if _beecg ==1||_defe ==1{_bbgb :=SelCreateBrick (_defe ,_beecg ,_defe /2,_beecg /2,SelHit );_dgda ,_cfaeb :=_bbea (_abfe ,_dfed ,_bbgb );if _cfaeb !=nil {return nil ,_a .Wrap (_cfaeb ,_geed ,"\u0068s\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};return _dgda ,nil ;};_caade :=SelCreateBrick (1,_beecg ,0,_beecg /2,SelHit );_fbea :=SelCreateBrick (_defe ,1,_defe /2,0,SelHit );_daed ,_efag :=_bbea (nil ,_dfed ,_caade );if _efag !=nil {return nil ,_a .Wrap (_efag ,_geed ,"\u0031\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); -};_abfe ,_efag =_bbea (_abfe ,_daed ,_fbea );if _efag !=nil {return nil ,_a .Wrap (_efag ,_geed ,"\u0032\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065");};return _abfe ,nil ;};type SizeComparison int ;func _agbb (_fffc ,_cefg *Bitmap )(*Bitmap ,error ){if _cefg ==nil {return nil ,_a .Error ("\u0063\u006f\u0070\u0079\u0042\u0069\u0074\u006d\u0061\u0070","\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if _cefg ==_fffc {return _fffc ,nil ;};if _fffc ==nil {_fffc =_cefg .createTemplate ();copy (_fffc .Data ,_cefg .Data );return _fffc ,nil ;};_afb :=_fffc .resizeImageData (_cefg );if _afb !=nil {return nil ,_a .Wrap (_afb ,"\u0063\u006f\u0070\u0079\u0042\u0069\u0074\u006d\u0061\u0070",""); -};_fffc .Text =_cefg .Text ;copy (_fffc .Data ,_cefg .Data );return _fffc ,nil ;};func TstImageBitmap ()*Bitmap {return _cddd .Copy ()};type SelectionValue int ;func _agf (_ddcb ,_abdd byte ,_bdee CombinationOperator )byte {switch _bdee {case CmbOpOr :return _abdd |_ddcb ; -case CmbOpAnd :return _abdd &_ddcb ;case CmbOpXor :return _abdd ^_ddcb ;case CmbOpXNor :return ^(_abdd ^_ddcb );case CmbOpNot :return ^(_abdd );default:return _abdd ;};};func (_ebdc *ClassedPoints )YAtIndex (i int )float32 {return (*_ebdc .Points )[_ebdc .IntSlice [i ]].Y }; -func _gbf ()(_dg [256]uint64 ){for _adc :=0;_adc < 256;_adc ++{if _adc &0x01!=0{_dg [_adc ]|=0xff;};if _adc &0x02!=0{_dg [_adc ]|=0xff00;};if _adc &0x04!=0{_dg [_adc ]|=0xff0000;};if _adc &0x08!=0{_dg [_adc ]|=0xff000000;};if _adc &0x10!=0{_dg [_adc ]|=0xff00000000; -};if _adc &0x20!=0{_dg [_adc ]|=0xff0000000000;};if _adc &0x40!=0{_dg [_adc ]|=0xff000000000000;};if _adc &0x80!=0{_dg [_adc ]|=0xff00000000000000;};};return _dg ;};func TstESymbol (t *_f .T ,scale ...int )*Bitmap {_efd ,_dgcad :=NewWithData (4,5,[]byte {0xF0,0x80,0xE0,0x80,0xF0}); -_g .NoError (t ,_dgcad );return TstGetScaledSymbol (t ,_efd ,scale ...);};type SizeSelection int ;var _ccfd =[]byte {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0x78,0x27,0xC2,0x27,0x91,0x00,0x22,0x48,0x21,0x03,0x24,0x91,0x00,0x22,0x48,0x21,0x02,0xA4,0x95,0x00,0x22,0x48,0x21,0x02,0x64,0x9B,0x00,0x3C,0x78,0x21,0x02,0x27,0x91,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0xF8,0x00,0x00,0x00,0x00,0x00,0x7F,0xF8,0x00,0x00,0x00,0x00,0x00,0x63,0x18,0x00,0x00,0x00,0x00,0x00,0x63,0x18,0x00,0x00,0x00,0x00,0x00,0x63,0x18,0x00,0x00,0x00,0x00,0x00,0x7F,0xF8,0x00,0x00,0x00,0x00,0x00,0x15,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; -func (_dba *Bitmap )GetPixel (x ,y int )bool {_cedb :=_dba .GetByteIndex (x ,y );_eaa :=_dba .GetBitOffset (x );_abca :=uint (7-_eaa );if _cedb > len (_dba .Data )-1{_dc .Log .Debug ("\u0054\u0072\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0067\u0065\u0074\u0020\u0070\u0069\u0078\u0065\u006c\u0020o\u0075\u0074\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0064\u0061\u0074\u0061\u0020\u0072\u0061\u006e\u0067\u0065\u002e \u0078\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0079\u003a\u0027\u0025\u0064'\u002c\u0020\u0062m\u003a\u0020\u0027\u0025\u0073\u0027",x ,y ,_dba ); -return false ;};if (_dba .Data [_cedb ]>>_abca )&0x01>=1{return true ;};return false ;};type Point struct{X ,Y float32 ;};func (_gfda *Bitmaps )selectByIndicator (_caaed *_c .NumSlice )(_gfacg *Bitmaps ,_dfafb error ){const _febcc ="\u0042i\u0074\u006d\u0061\u0070s\u002e\u0073\u0065\u006c\u0065c\u0074B\u0079I\u006e\u0064\u0069\u0063\u0061\u0074\u006fr"; -if _gfda ==nil {return nil ,_a .Error (_febcc ,"\u0027\u0062\u0027 b\u0069\u0074\u006d\u0061\u0070\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};if _caaed ==nil {return nil ,_a .Error (_febcc ,"'\u006e\u0061\u0027\u0020\u0069\u006ed\u0069\u0063\u0061\u0074\u006f\u0072\u0073\u0020\u006eo\u0074\u0020\u0064e\u0066i\u006e\u0065\u0064"); -};if len (_gfda .Values )==0{return _gfda ,nil ;};if len (*_caaed )!=len (_gfda .Values ){return nil ,_a .Errorf (_febcc ,"\u006ea\u0020\u006ce\u006e\u0067\u0074\u0068:\u0020\u0025\u0064,\u0020\u0069\u0073\u0020\u0064\u0069\u0066\u0066\u0065re\u006e\u0074\u0020t\u0068\u0061n\u0020\u0062\u0069\u0074\u006d\u0061p\u0073\u003a \u0025\u0064",len (*_caaed ),len (_gfda .Values )); -};var _dfbdg ,_dbcgf ,_caea int ;for _dbcgf =0;_dbcgf < len (*_caaed );_dbcgf ++{if _dfbdg ,_dfafb =_caaed .GetInt (_dbcgf );_dfafb !=nil {return nil ,_a .Wrap (_dfafb ,_febcc ,"f\u0069\u0072\u0073\u0074\u0020\u0063\u0068\u0065\u0063\u006b");};if _dfbdg ==1{_caea ++; -};};if _caea ==len (_gfda .Values ){return _gfda ,nil ;};_gfacg =&Bitmaps {};_gaea :=len (_gfda .Values )==len (_gfda .Boxes );for _dbcgf =0;_dbcgf < len (*_caaed );_dbcgf ++{if _dfbdg =int ((*_caaed )[_dbcgf ]);_dfbdg ==0{continue ;};_gfacg .Values =append (_gfacg .Values ,_gfda .Values [_dbcgf ]); -if _gaea {_gfacg .Boxes =append (_gfacg .Boxes ,_gfda .Boxes [_dbcgf ]);};};return _gfacg ,nil ;};func _bdda (_gddd ,_gab *Bitmap ,_eagg ,_dcac ,_addad ,_gdff ,_ebfd ,_ebdg ,_beb ,_ccg int ,_cce CombinationOperator )error {var _bfcg int ;_bcce :=func (){_bfcg ++; -_addad +=_gab .RowStride ;_gdff +=_gddd .RowStride ;_ebfd +=_gddd .RowStride };for _bfcg =_eagg ;_bfcg < _dcac ;_bcce (){var _gdag uint16 ;_dfgb :=_addad ;for _feffd :=_gdff ;_feffd <=_ebfd ;_feffd ++{_badb ,_eaag :=_gab .GetByte (_dfgb );if _eaag !=nil {return _eaag ; -};_defb ,_eaag :=_gddd .GetByte (_feffd );if _eaag !=nil {return _eaag ;};_gdag =(_gdag |uint16 (_defb ))<>8);if _feffd ==_ebfd {_defb =_bfe (uint (_ebdg ),_defb );};if _eaag =_gab .SetByte (_dfgb ,_agf (_badb ,_defb ,_cce )); -_eaag !=nil {return _eaag ;};_dfgb ++;_gdag <<=uint (_beb );};};return nil ;};func (_ebba *Boxes )selectWithIndicator (_eabe *_c .NumSlice )(_bgddcd *Boxes ,_ddca error ){const _ddcd ="\u0042o\u0078\u0065\u0073\u002es\u0065\u006c\u0065\u0063\u0074W\u0069t\u0068I\u006e\u0064\u0069\u0063\u0061\u0074\u006fr"; -if _ebba ==nil {return nil ,_a .Error (_ddcd ,"b\u006f\u0078\u0065\u0073 '\u0062'\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064");};if _eabe ==nil {return nil ,_a .Error (_ddcd ,"\u0027\u006ea\u0027\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};if len (*_eabe )!=len (*_ebba ){return nil ,_a .Error (_ddcd ,"\u0062\u006f\u0078\u0065\u0073\u0020\u0027\u0062\u0027\u0020\u0068\u0061\u0073\u0020\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0074\u0020s\u0069\u007a\u0065\u0020\u0074h\u0061\u006e \u0027\u006e\u0061\u0027"); -};var _acdg ,_ceddd int ;for _ceag :=0;_ceag < len (*_eabe );_ceag ++{if _acdg ,_ddca =_eabe .GetInt (_ceag );_ddca !=nil {return nil ,_a .Wrap (_ddca ,_ddcd ,"\u0063\u0068\u0065\u0063\u006b\u0069\u006e\u0067\u0020c\u006f\u0075\u006e\u0074");};if _acdg ==1{_ceddd ++; -};};if _ceddd ==len (*_ebba ){return _ebba ,nil ;};_fdcf :=Boxes {};for _ebeg :=0;_ebeg < len (*_eabe );_ebeg ++{_acdg =int ((*_eabe )[_ebeg ]);if _acdg ==0{continue ;};_fdcf =append (_fdcf ,(*_ebba )[_ebeg ]);};_bgddcd =&_fdcf ;return _bgddcd ,nil ;}; -func _bef (_cfb ,_gdde *Bitmap ,_dff int ,_gdb []byte ,_cga int )(_cgg error ){const _ecg ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0034";var (_efa ,_agd ,_gdf ,_feg ,_cgc ,_eec ,_cedf ,_gdc int ; -_ggf ,_aaa uint32 ;_bdb ,_bdf byte ;_cea uint16 ;);_bbe :=make ([]byte ,4);_cbac :=make ([]byte ,4);for _gdf =0;_gdf < _cfb .Height -1;_gdf ,_feg =_gdf +2,_feg +1{_efa =_gdf *_cfb .RowStride ;_agd =_feg *_gdde .RowStride ;for _cgc ,_eec =0,0;_cgc < _cga ; -_cgc ,_eec =_cgc +4,_eec +1{for _cedf =0;_cedf < 4;_cedf ++{_gdc =_efa +_cgc +_cedf ;if _gdc <=len (_cfb .Data )-1&&_gdc < _efa +_cfb .RowStride {_bbe [_cedf ]=_cfb .Data [_gdc ];}else {_bbe [_cedf ]=0x00;};_gdc =_efa +_cfb .RowStride +_cgc +_cedf ;if _gdc <=len (_cfb .Data )-1&&_gdc < _efa +(2*_cfb .RowStride ){_cbac [_cedf ]=_cfb .Data [_gdc ]; -}else {_cbac [_cedf ]=0x00;};};_ggf =_gg .BigEndian .Uint32 (_bbe );_aaa =_gg .BigEndian .Uint32 (_cbac );_aaa &=_ggf ;_aaa &=_aaa <<1;_aaa &=0xaaaaaaaa;_ggf =_aaa |(_aaa <<7);_bdb =byte (_ggf >>24);_bdf =byte ((_ggf >>8)&0xff);_gdc =_agd +_eec ;if _gdc +1==len (_gdde .Data )-1||_gdc +1>=_agd +_gdde .RowStride {_gdde .Data [_gdc ]=_gdb [_bdb ]; -if _cgg =_gdde .SetByte (_gdc ,_gdb [_bdb ]);_cgg !=nil {return _a .Wrapf (_cgg ,_ecg ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_gdc );};}else {_cea =(uint16 (_gdb [_bdb ])<<8)|uint16 (_gdb [_bdf ]);if _cgg =_gdde .setTwoBytes (_gdc ,_cea );_cgg !=nil {return _a .Wrapf (_cgg ,_ecg ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_gdc ); -};_eec ++;};};};return nil ;};func TstWordBitmap (t *_f .T ,scale ...int )*Bitmap {_fbge :=1;if len (scale )> 0{_fbge =scale [0];};_feed :=3;_adgf :=9+7+15+2*_feed ;_aceff :=5+_feed +5;_afgc :=New (_adgf *_fbge ,_aceff *_fbge );_geaed :=&Bitmaps {};var _gbfd *int ; -_feed *=_fbge ;_ecgf :=0;_gbfd =&_ecgf ;_beeg :=0;_fgcg :=TstDSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,_feed );_fgcg =TstISymbol (t ,scale ...); -TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstTSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,_feed );_fgcg =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstOSymbol (t ,scale ...); -TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstWSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,0);*_gbfd =0;_beeg =5*_fbge +_feed ;_fgcg =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge ); -_fgcg =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,_feed );_fgcg =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstESymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge ); -_fgcg =TstVSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstESymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,1*_fbge );_fgcg =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_geaed ,_fgcg ,_gbfd ,_beeg ,0); -TstWriteSymbols (t ,_geaed ,_afgc );return _afgc ;};type Boxes []*_fg .Rectangle ;func TstCSymbol (t *_f .T )*Bitmap {t .Helper ();_ffdf :=New (6,6);_g .NoError (t ,_ffdf .SetPixel (1,0,1));_g .NoError (t ,_ffdf .SetPixel (2,0,1));_g .NoError (t ,_ffdf .SetPixel (3,0,1)); -_g .NoError (t ,_ffdf .SetPixel (4,0,1));_g .NoError (t ,_ffdf .SetPixel (0,1,1));_g .NoError (t ,_ffdf .SetPixel (5,1,1));_g .NoError (t ,_ffdf .SetPixel (0,2,1));_g .NoError (t ,_ffdf .SetPixel (0,3,1));_g .NoError (t ,_ffdf .SetPixel (0,4,1));_g .NoError (t ,_ffdf .SetPixel (5,4,1)); -_g .NoError (t ,_ffdf .SetPixel (1,5,1));_g .NoError (t ,_ffdf .SetPixel (2,5,1));_g .NoError (t ,_ffdf .SetPixel (3,5,1));_g .NoError (t ,_ffdf .SetPixel (4,5,1));return _ffdf ;};func _bfega (_fdea *Bitmap ,_cfac *_c .Stack ,_fgbd ,_adaa int )(_dbfg *_fg .Rectangle ,_fcgg error ){const _eaab ="\u0073e\u0065d\u0046\u0069\u006c\u006c\u0053\u0074\u0061\u0063\u006b\u0042\u0042"; -if _fdea ==nil {return nil ,_a .Error (_eaab ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0073\u0027\u0020\u0042\u0069\u0074\u006d\u0061\u0070");};if _cfac ==nil {return nil ,_a .Error (_eaab ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0027\u0073\u0074ac\u006b\u0027"); -};_fecab ,_abeg :=_fdea .Width ,_fdea .Height ;_gafd :=_fecab -1;_egac :=_abeg -1;if _fgbd < 0||_fgbd > _gafd ||_adaa < 0||_adaa > _egac ||!_fdea .GetPixel (_fgbd ,_adaa ){return nil ,nil ;};var _bfcc *_fg .Rectangle ;_bfcc ,_fcgg =Rect (100000,100000,0,0); -if _fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"");};if _fcgg =_adcc (_cfac ,_fgbd ,_fgbd ,_adaa ,1,_egac ,_bfcc );_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"\u0069\u006e\u0069t\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _fcgg =_adcc (_cfac ,_fgbd ,_fgbd ,_adaa +1,-1,_egac ,_bfcc ); -_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"\u0032\u006ed\u0020\u0069\u006ei\u0074\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};_bfcc .Min .X ,_bfcc .Max .X =_fgbd ,_fgbd ;_bfcc .Min .Y ,_bfcc .Max .Y =_adaa ,_adaa ;var (_ggeaa *fillSegment ; -_bbgbg int ;);for _cfac .Len ()> 0{if _ggeaa ,_fcgg =_feae (_cfac );_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"");};_adaa =_ggeaa ._fegcf ;for _fgbd =_ggeaa ._aebdc ;_fgbd >=0&&_fdea .GetPixel (_fgbd ,_adaa );_fgbd --{if _fcgg =_fdea .SetPixel (_fgbd ,_adaa ,0); -_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"");};};if _fgbd >=_ggeaa ._aebdc {for _fgbd ++;_fgbd <=_ggeaa ._bcag &&_fgbd <=_gafd &&!_fdea .GetPixel (_fgbd ,_adaa );_fgbd ++{};_bbgbg =_fgbd ;if !(_fgbd <=_ggeaa ._bcag &&_fgbd <=_gafd ){continue ;}; -}else {_bbgbg =_fgbd +1;if _bbgbg < _ggeaa ._aebdc -1{if _fcgg =_adcc (_cfac ,_bbgbg ,_ggeaa ._aebdc -1,_ggeaa ._fegcf ,-_ggeaa ._aggbd ,_egac ,_bfcc );_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"\u006c\u0065\u0061\u006b\u0020\u006f\u006e\u0020\u006c\u0065\u0066\u0074 \u0073\u0069\u0064\u0065"); -};};_fgbd =_ggeaa ._aebdc +1;};for {for ;_fgbd <=_gafd &&_fdea .GetPixel (_fgbd ,_adaa );_fgbd ++{if _fcgg =_fdea .SetPixel (_fgbd ,_adaa ,0);_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"\u0032n\u0064\u0020\u0073\u0065\u0074");};};if _fcgg =_adcc (_cfac ,_bbgbg ,_fgbd -1,_ggeaa ._fegcf ,_ggeaa ._aggbd ,_egac ,_bfcc ); -_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"n\u006f\u0072\u006d\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _fgbd > _ggeaa ._bcag +1{if _fcgg =_adcc (_cfac ,_ggeaa ._bcag +1,_fgbd -1,_ggeaa ._fegcf ,-_ggeaa ._aggbd ,_egac ,_bfcc );_fcgg !=nil {return nil ,_a .Wrap (_fcgg ,_eaab ,"\u006ce\u0061k\u0020\u006f\u006e\u0020\u0072i\u0067\u0068t\u0020\u0073\u0069\u0064\u0065"); -};};for _fgbd ++;_fgbd <=_ggeaa ._bcag &&_fgbd <=_gafd &&!_fdea .GetPixel (_fgbd ,_adaa );_fgbd ++{};_bbgbg =_fgbd ;if !(_fgbd <=_ggeaa ._bcag &&_fgbd <=_gafd ){break ;};};};_bfcc .Max .X ++;_bfcc .Max .Y ++;return _bfcc ,nil ;};func _dcda (_ffge *Bitmap ,_geab int )(*Bitmap ,error ){const _dcea ="\u0065x\u0070a\u006e\u0064\u0052\u0065\u0070\u006c\u0069\u0063\u0061\u0074\u0065"; -if _ffge ==nil {return nil ,_a .Error (_dcea ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _geab <=0{return nil ,_a .Error (_dcea ,"i\u006e\u0076\u0061\u006cid\u0020f\u0061\u0063\u0074\u006f\u0072 \u002d\u0020\u003c\u003d\u0020\u0030"); -};if _geab ==1{_bfdc ,_aeeg :=_agbb (nil ,_ffge );if _aeeg !=nil {return nil ,_a .Wrap (_aeeg ,_dcea ,"\u0066\u0061\u0063\u0074\u006f\u0072\u0020\u003d\u0020\u0031");};return _bfdc ,nil ;};_deead ,_fabg :=_cac (_ffge ,_geab ,_geab );if _fabg !=nil {return nil ,_a .Wrap (_fabg ,_dcea ,""); -};return _deead ,nil ;};func (_gfc *Bitmap )SetByte (index int ,v byte )error {if index > len (_gfc .Data )-1||index < 0{return _a .Errorf ("\u0053e\u0074\u0042\u0079\u0074\u0065","\u0069\u006e\u0064\u0065x \u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020%\u0064",index ); -};_gfc .Data [index ]=v ;return nil ;};func (_fegea *byWidth )Swap (i ,j int ){_fegea .Values [i ],_fegea .Values [j ]=_fegea .Values [j ],_fegea .Values [i ];if _fegea .Boxes !=nil {_fegea .Boxes [i ],_fegea .Boxes [j ]=_fegea .Boxes [j ],_fegea .Boxes [i ]; -};};func (_dgdc *ClassedPoints )Less (i ,j int )bool {return _dgdc ._effdc (i ,j )};func TstFrameBitmapData ()[]byte {return _cgde .Data };func (_cfcef *BitmapsArray )AddBox (box *_fg .Rectangle ){_cfcef .Boxes =append (_cfcef .Boxes ,box )};func _dbg (_bac ,_gda *Bitmap ,_fbd int ,_egg []byte ,_aa int )(_cffa error ){const _dfd ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0031"; -var (_dbb ,_feaf ,_fbfd ,_geb ,_fdb ,_baa ,_bbgf ,_ddc int ;_acd ,_dbgd uint32 ;_eda ,_cc byte ;_bg uint16 ;);_cffd :=make ([]byte ,4);_edg :=make ([]byte ,4);for _fbfd =0;_fbfd < _bac .Height -1;_fbfd ,_geb =_fbfd +2,_geb +1{_dbb =_fbfd *_bac .RowStride ; -_feaf =_geb *_gda .RowStride ;for _fdb ,_baa =0,0;_fdb < _aa ;_fdb ,_baa =_fdb +4,_baa +1{for _bbgf =0;_bbgf < 4;_bbgf ++{_ddc =_dbb +_fdb +_bbgf ;if _ddc <=len (_bac .Data )-1&&_ddc < _dbb +_bac .RowStride {_cffd [_bbgf ]=_bac .Data [_ddc ];}else {_cffd [_bbgf ]=0x00; -};_ddc =_dbb +_bac .RowStride +_fdb +_bbgf ;if _ddc <=len (_bac .Data )-1&&_ddc < _dbb +(2*_bac .RowStride ){_edg [_bbgf ]=_bac .Data [_ddc ];}else {_edg [_bbgf ]=0x00;};};_acd =_gg .BigEndian .Uint32 (_cffd );_dbgd =_gg .BigEndian .Uint32 (_edg );_dbgd |=_acd ; -_dbgd |=_dbgd <<1;_dbgd &=0xaaaaaaaa;_acd =_dbgd |(_dbgd <<7);_eda =byte (_acd >>24);_cc =byte ((_acd >>8)&0xff);_ddc =_feaf +_baa ;if _ddc +1==len (_gda .Data )-1||_ddc +1>=_feaf +_gda .RowStride {_gda .Data [_ddc ]=_egg [_eda ];}else {_bg =(uint16 (_egg [_eda ])<<8)|uint16 (_egg [_cc ]); -if _cffa =_gda .setTwoBytes (_ddc ,_bg );_cffa !=nil {return _a .Wrapf (_cffa ,_dfd ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_ddc ); -};_baa ++;};};};return nil ;};func TstAddSymbol (t *_f .T ,bms *Bitmaps ,sym *Bitmap ,x *int ,y int ,space int ){bms .AddBitmap (sym );_edceg :=_fg .Rect (*x ,y ,*x +sym .Width ,y +sym .Height );bms .AddBox (&_edceg );*x +=sym .Width +space ;};func (_fcf *Bitmap )nextOnPixel (_acdc ,_degb int )(_cda _fg .Point ,_faf bool ,_gbfaf error ){const _gbfg ="n\u0065\u0078\u0074\u004f\u006e\u0050\u0069\u0078\u0065\u006c"; -_cda ,_faf ,_gbfaf =_fcf .nextOnPixelLow (_fcf .Width ,_fcf .Height ,_fcf .RowStride ,_acdc ,_degb );if _gbfaf !=nil {return _cda ,false ,_a .Wrap (_gbfaf ,_gbfg ,"");};return _cda ,_faf ,nil ;};func (_eecg *Boxes )makeSizeIndicator (_cfgd ,_eccb int ,_cedd LocationFilter ,_gbac SizeComparison )*_c .NumSlice {_abb :=&_c .NumSlice {}; -var _ageb ,_afeb ,_agc int ;for _ ,_aaedc :=range *_eecg {_ageb =0;_afeb ,_agc =_aaedc .Dx (),_aaedc .Dy ();switch _cedd {case LocSelectWidth :if (_gbac ==SizeSelectIfLT &&_afeb < _cfgd )||(_gbac ==SizeSelectIfGT &&_afeb > _cfgd )||(_gbac ==SizeSelectIfLTE &&_afeb <=_cfgd )||(_gbac ==SizeSelectIfGTE &&_afeb >=_cfgd ){_ageb =1; -};case LocSelectHeight :if (_gbac ==SizeSelectIfLT &&_agc < _eccb )||(_gbac ==SizeSelectIfGT &&_agc > _eccb )||(_gbac ==SizeSelectIfLTE &&_agc <=_eccb )||(_gbac ==SizeSelectIfGTE &&_agc >=_eccb ){_ageb =1;};case LocSelectIfEither :if (_gbac ==SizeSelectIfLT &&(_agc < _eccb ||_afeb < _cfgd ))||(_gbac ==SizeSelectIfGT &&(_agc > _eccb ||_afeb > _cfgd ))||(_gbac ==SizeSelectIfLTE &&(_agc <=_eccb ||_afeb <=_cfgd ))||(_gbac ==SizeSelectIfGTE &&(_agc >=_eccb ||_afeb >=_cfgd )){_ageb =1; -};case LocSelectIfBoth :if (_gbac ==SizeSelectIfLT &&(_agc < _eccb &&_afeb < _cfgd ))||(_gbac ==SizeSelectIfGT &&(_agc > _eccb &&_afeb > _cfgd ))||(_gbac ==SizeSelectIfLTE &&(_agc <=_eccb &&_afeb <=_cfgd ))||(_gbac ==SizeSelectIfGTE &&(_agc >=_eccb &&_afeb >=_cfgd )){_ageb =1; -};};_abb .AddInt (_ageb );};return _abb ;};func _cgcc (_beeb ,_fdf int )int {if _beeb > _fdf {return _beeb ;};return _fdf ;};func (_bdab *BitmapsArray )GetBox (i int )(*_fg .Rectangle ,error ){const _cafg ="\u0042\u0069\u0074\u006dap\u0073\u0041\u0072\u0072\u0061\u0079\u002e\u0047\u0065\u0074\u0042\u006f\u0078"; -if _bdab ==nil {return nil ,_a .Error (_cafg ,"p\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u006e\u0069\u006c\u0020\u0027\u0042\u0069\u0074m\u0061\u0070\u0073A\u0072r\u0061\u0079\u0027");};if i > len (_bdab .Boxes )-1{return nil ,_a .Errorf (_cafg ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); -};return _bdab .Boxes [i ],nil ;};func TstWSymbol (t *_f .T ,scale ...int )*Bitmap {_eaec ,_fcdg :=NewWithData (5,5,[]byte {0x88,0x88,0xA8,0xD8,0x88});_g .NoError (t ,_fcdg );return TstGetScaledSymbol (t ,_eaec ,scale ...);};func NewWithData (width ,height int ,data []byte )(*Bitmap ,error ){const _bgee ="N\u0065\u0077\u0057\u0069\u0074\u0068\u0044\u0061\u0074\u0061"; -_bba :=_aac (width ,height );_bba .Data =data ;if len (data )< height *_bba .RowStride {return nil ,_a .Errorf (_bgee ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061\u0020l\u0065\u006e\u0067\u0074\u0068\u003a \u0025\u0064\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e\u003a\u0020\u0025\u0064",len (data ),height *_bba .RowStride ); -};return _bba ,nil ;};func _eeaaf (_abff *Bitmap ,_adcb ...MorphProcess )(_dgdaf *Bitmap ,_caadf error ){const _ggdea ="\u006d\u006f\u0072\u0070\u0068\u0053\u0065\u0071\u0075\u0065\u006e\u0063\u0065";if _abff ==nil {return nil ,_a .Error (_ggdea ,"\u006d\u006f\u0072\u0070\u0068\u0053\u0065\u0071\u0075\u0065\u006e\u0063\u0065 \u0073\u006f\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061\u0070\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); -};if len (_adcb )==0{return nil ,_a .Error (_ggdea ,"m\u006f\u0072\u0070\u0068\u0053\u0065q\u0075\u0065\u006e\u0063\u0065\u002c \u0073\u0065\u0071\u0075\u0065\u006e\u0063e\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};if _caadf =_gdca (_adcb ...); -_caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"");};var _dcace ,_gefgb ,_bfcb int ;_dgdaf =_abff .Copy ();for _ ,_eefge :=range _adcb {switch _eefge .Operation {case MopDilation :_dcace ,_gefgb =_eefge .getWidthHeight ();_dgdaf ,_caadf =DilateBrick (nil ,_dgdaf ,_dcace ,_gefgb ); -if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"");};case MopErosion :_dcace ,_gefgb =_eefge .getWidthHeight ();_dgdaf ,_caadf =_gbaa (nil ,_dgdaf ,_dcace ,_gefgb );if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"");};case MopOpening :_dcace ,_gefgb =_eefge .getWidthHeight (); -_dgdaf ,_caadf =_fbg (nil ,_dgdaf ,_dcace ,_gefgb );if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"");};case MopClosing :_dcace ,_gefgb =_eefge .getWidthHeight ();_dgdaf ,_caadf =_cddc (nil ,_dgdaf ,_dcace ,_gefgb );if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,""); -};case MopRankBinaryReduction :_dgdaf ,_caadf =_ddd (_dgdaf ,_eefge .Arguments ...);if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"");};case MopReplicativeBinaryExpansion :_dgdaf ,_caadf =_dcda (_dgdaf ,_eefge .Arguments [0]);if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,""); -};case MopAddBorder :_bfcb =_eefge .Arguments [0];_dgdaf ,_caadf =_dgdaf .AddBorder (_bfcb ,0);if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"");};default:return nil ,_a .Error (_ggdea ,"i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006d\u006fr\u0070\u0068\u004f\u0070\u0065\u0072\u0061ti\u006f\u006e\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0074\u006f t\u0068\u0065 \u0073\u0065\u0071\u0075\u0065\u006e\u0063\u0065"); -};};if _bfcb > 0{_dgdaf ,_caadf =_dgdaf .RemoveBorder (_bfcb );if _caadf !=nil {return nil ,_a .Wrap (_caadf ,_ggdea ,"\u0062\u006f\u0072\u0064\u0065\u0072\u0020\u003e\u0020\u0030");};};return _dgdaf ,nil ;};func (_dgd *Bitmap )AddBorderGeneral (left ,right ,top ,bot int ,val int )(*Bitmap ,error ){return _dgd .addBorderGeneral (left ,right ,top ,bot ,val ); -};func MorphSequence (src *Bitmap ,sequence ...MorphProcess )(*Bitmap ,error ){return _eeaaf (src ,sequence ...);};func (_befdc *Bitmaps )SortByHeight (){_bdgd :=(*byHeight )(_befdc );_d .Sort (_bdgd )};var _ _d .Interface =&ClassedPoints {};func _dcgb (_edge ,_abd *Bitmap ,_ceba ,_bade ,_eed ,_dbgb ,_ggac ,_edeb ,_daea ,_eae int ,_cbe CombinationOperator ,_gca int )error {var _adbf int ; -_bcc :=func (){_adbf ++;_eed +=_abd .RowStride ;_dbgb +=_edge .RowStride ;_ggac +=_edge .RowStride };for _adbf =_ceba ;_adbf < _bade ;_bcc (){var _egbe uint16 ;_geac :=_eed ;for _ggca :=_dbgb ;_ggca <=_ggac ;_ggca ++{_dbf ,_cebc :=_abd .GetByte (_geac ); -if _cebc !=nil {return _cebc ;};_ecgg ,_cebc :=_edge .GetByte (_ggca );if _cebc !=nil {return _cebc ;};_egbe =(_egbe |(uint16 (_ecgg )&0xff))<>8);if _cebc =_abd .SetByte (_geac ,_agf (_dbf ,_ecgg ,_cbe ));_cebc !=nil {return _cebc ; -};_geac ++;_egbe <<=uint (_daea );if _ggca ==_ggac {_ecgg =byte (_egbe >>(8-uint8 (_eae )));if _gca !=0{_ecgg =_bfe (uint (8+_edeb ),_ecgg );};_dbf ,_cebc =_abd .GetByte (_geac );if _cebc !=nil {return _cebc ;};if _cebc =_abd .SetByte (_geac ,_agf (_dbf ,_ecgg ,_cbe )); -_cebc !=nil {return _cebc ;};};};};return nil ;};func (_egfa *Bitmaps )CountPixels ()*_c .NumSlice {_edgdd :=&_c .NumSlice {};for _ ,_fadg :=range _egfa .Values {_edgdd .AddInt (_fadg .CountPixels ());};return _edgdd ;};func _cddc (_cbbc ,_gbfe *Bitmap ,_dfca ,_bfd int )(*Bitmap ,error ){const _gcbc ="\u0063\u006c\u006f\u0073\u0065\u0053\u0061\u0066\u0065B\u0072\u0069\u0063\u006b"; -if _gbfe ==nil {return nil ,_a .Error (_gcbc ,"\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _dfca < 1||_bfd < 1{return nil ,_a .Error (_gcbc ,"\u0068s\u0069\u007a\u0065\u0020\u0061\u006e\u0064\u0020\u0076\u0073\u0069z\u0065\u0020\u006e\u006f\u0074\u0020\u003e\u003d\u0020\u0031"); -};if _dfca ==1&&_bfd ==1{return _agbb (_cbbc ,_gbfe );};if MorphBC ==SymmetricMorphBC {_baed ,_dgbf :=_ffag (_cbbc ,_gbfe ,_dfca ,_bfd );if _dgbf !=nil {return nil ,_a .Wrap (_dgbf ,_gcbc ,"\u0053\u0079m\u006d\u0065\u0074r\u0069\u0063\u004d\u006f\u0072\u0070\u0068\u0042\u0043"); -};return _baed ,nil ;};_ebff :=_cgcc (_dfca /2,_bfd /2);_fcgc :=8*((_ebff +7)/8);_fbbd ,_dfad :=_gbfe .AddBorder (_fcgc ,0);if _dfad !=nil {return nil ,_a .Wrapf (_dfad ,_gcbc ,"\u0042\u006f\u0072\u0064\u0065\u0072\u0053\u0069\u007ae\u003a\u0020\u0025\u0064",_fcgc ); -};var _bcae ,_ebdb *Bitmap ;if _dfca ==1||_bfd ==1{_edfe :=SelCreateBrick (_bfd ,_dfca ,_bfd /2,_dfca /2,SelHit );_bcae ,_dfad =_deffc (nil ,_fbbd ,_edfe );if _dfad !=nil {return nil ,_a .Wrap (_dfad ,_gcbc ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};}else {_acbca :=SelCreateBrick (1,_dfca ,0,_dfca /2,SelHit );_agded ,_efga :=_bbea (nil ,_fbbd ,_acbca );if _efga !=nil {return nil ,_a .Wrap (_efga ,_gcbc ,"\u0072\u0065\u0067\u0075la\u0072\u0020\u002d\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0064\u0069\u006c\u0061t\u0065"); -};_aef :=SelCreateBrick (_bfd ,1,_bfd /2,0,SelHit );_bcae ,_efga =_bbea (nil ,_agded ,_aef );if _efga !=nil {return nil ,_a .Wrap (_efga ,_gcbc ,"\u0072\u0065\u0067ul\u0061\u0072\u0020\u002d\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); -};if _ ,_efga =_bbbb (_agded ,_bcae ,_acbca );_efga !=nil {return nil ,_a .Wrap (_efga ,_gcbc ,"r\u0065\u0067\u0075\u006car\u0020-\u0020\u0066\u0069\u0072\u0073t\u0020\u0065\u0072\u006f\u0064\u0065");};if _ ,_efga =_bbbb (_bcae ,_agded ,_aef );_efga !=nil {return nil ,_a .Wrap (_efga ,_gcbc ,"\u0072\u0065\u0067\u0075la\u0072\u0020\u002d\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0065\u0072\u006fd\u0065"); -};};if _ebdb ,_dfad =_bcae .RemoveBorder (_fcgc );_dfad !=nil {return nil ,_a .Wrap (_dfad ,_gcbc ,"\u0072e\u0067\u0075\u006c\u0061\u0072");};if _cbbc ==nil {return _ebdb ,nil ;};if _ ,_dfad =_agbb (_cbbc ,_ebdb );_dfad !=nil {return nil ,_dfad ;};return _cbbc ,nil ; -};func (_geg *Bitmap )GetBitOffset (x int )int {return x &0x07};func init (){const _dffc ="\u0062\u0069\u0074\u006dap\u0073\u002e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0069\u007a\u0061\u0074\u0069o\u006e";_cgde =New (50,40);var _cecfb error ;_cgde ,_cecfb =_cgde .AddBorder (2,1); -if _cecfb !=nil {panic (_a .Wrap (_cecfb ,_dffc ,"f\u0072\u0061\u006d\u0065\u0042\u0069\u0074\u006d\u0061\u0070"));};_cddd ,_cecfb =NewWithData (50,22,_ccfd );if _cecfb !=nil {panic (_a .Wrap (_cecfb ,_dffc ,"i\u006d\u0061\u0067\u0065\u0042\u0069\u0074\u006d\u0061\u0070")); -};};const (CmbOpOr CombinationOperator =iota ;CmbOpAnd ;CmbOpXor ;CmbOpXNor ;CmbOpReplace ;CmbOpNot ;);const (SelDontCare SelectionValue =iota ;SelHit ;SelMiss ;);func (_dgfc *ClassedPoints )SortByX (){_dgfc ._effdc =_dgfc .xSortFunction ();_d .Sort (_dgfc )}; -func (_gdgd *Bitmap )setBit (_bbeb int ){_gdgd .Data [(_bbeb >>3)]|=0x80>>uint (_bbeb &7)};func _agb (_bgd ,_ced *Bitmap ,_adca int ,_dga []byte ,_bdd int )(_aee error ){const _cdde ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0033"; -var (_def ,_efb ,_acc ,_dgaa ,_edfg ,_fge ,_fefa ,_acac int ;_ada ,_gfa ,_gff ,_gde uint32 ;_bge ,_bae byte ;_bec uint16 ;);_edgb :=make ([]byte ,4);_fae :=make ([]byte ,4);for _acc =0;_acc < _bgd .Height -1;_acc ,_dgaa =_acc +2,_dgaa +1{_def =_acc *_bgd .RowStride ; -_efb =_dgaa *_ced .RowStride ;for _edfg ,_fge =0,0;_edfg < _bdd ;_edfg ,_fge =_edfg +4,_fge +1{for _fefa =0;_fefa < 4;_fefa ++{_acac =_def +_edfg +_fefa ;if _acac <=len (_bgd .Data )-1&&_acac < _def +_bgd .RowStride {_edgb [_fefa ]=_bgd .Data [_acac ]; -}else {_edgb [_fefa ]=0x00;};_acac =_def +_bgd .RowStride +_edfg +_fefa ;if _acac <=len (_bgd .Data )-1&&_acac < _def +(2*_bgd .RowStride ){_fae [_fefa ]=_bgd .Data [_acac ];}else {_fae [_fefa ]=0x00;};};_ada =_gg .BigEndian .Uint32 (_edgb );_gfa =_gg .BigEndian .Uint32 (_fae ); -_gff =_ada &_gfa ;_gff |=_gff <<1;_gde =_ada |_gfa ;_gde &=_gde <<1;_gfa =_gff &_gde ;_gfa &=0xaaaaaaaa;_ada =_gfa |(_gfa <<7);_bge =byte (_ada >>24);_bae =byte ((_ada >>8)&0xff);_acac =_efb +_fge ;if _acac +1==len (_ced .Data )-1||_acac +1>=_efb +_ced .RowStride {if _aee =_ced .SetByte (_acac ,_dga [_bge ]); -_aee !=nil {return _a .Wrapf (_aee ,_cdde ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_acac );};}else {_bec =(uint16 (_dga [_bge ])<<8)|uint16 (_dga [_bae ]);if _aee =_ced .setTwoBytes (_acac ,_bec );_aee !=nil {return _a .Wrapf (_aee ,_cdde ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_acac ); -};_fge ++;};};};return nil ;};func RankHausTest (p1 ,p2 ,p3 ,p4 *Bitmap ,delX ,delY float32 ,maxDiffW ,maxDiffH ,area1 ,area3 int ,rank float32 ,tab8 []int )(_eacc bool ,_dcgc error ){const _adba ="\u0052\u0061\u006ek\u0048\u0061\u0075\u0073\u0054\u0065\u0073\u0074"; -_bbcf ,_fca :=p1 .Width ,p1 .Height ;_abfd ,_ggdc :=p3 .Width ,p3 .Height ;if _c .Abs (_bbcf -_abfd )> maxDiffW {return false ,nil ;};if _c .Abs (_fca -_ggdc )> maxDiffH {return false ,nil ;};_ffe :=int (float32 (area1 )*(1.0-rank )+0.5);_dfcf :=int (float32 (area3 )*(1.0-rank )+0.5); -var _gaab ,_decgf int ;if delX >=0{_gaab =int (delX +0.5);}else {_gaab =int (delX -0.5);};if delY >=0{_decgf =int (delY +0.5);}else {_decgf =int (delY -0.5);};_eddb :=p1 .CreateTemplate ();if _dcgc =_eddb .RasterOperation (0,0,_bbcf ,_fca ,PixSrc ,p1 ,0,0); -_dcgc !=nil {return false ,_a .Wrap (_dcgc ,_adba ,"p\u0031\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074");};if _dcgc =_eddb .RasterOperation (_gaab ,_decgf ,_bbcf ,_fca ,PixNotSrcAndDst ,p4 ,0,0);_dcgc !=nil {return false ,_a .Wrap (_dcgc ,_adba ,"\u0074 \u0026\u0020\u0021\u0070\u0034"); -};_eacc ,_dcgc =_eddb .ThresholdPixelSum (_ffe ,tab8 );if _dcgc !=nil {return false ,_a .Wrap (_dcgc ,_adba ,"\u0074\u002d\u003e\u0074\u0068\u0072\u0065\u0073\u0068\u0031");};if _eacc {return false ,nil ;};if _dcgc =_eddb .RasterOperation (_gaab ,_decgf ,_abfd ,_ggdc ,PixSrc ,p3 ,0,0); -_dcgc !=nil {return false ,_a .Wrap (_dcgc ,_adba ,"p\u0033\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074");};if _dcgc =_eddb .RasterOperation (0,0,_abfd ,_ggdc ,PixNotSrcAndDst ,p2 ,0,0);_dcgc !=nil {return false ,_a .Wrap (_dcgc ,_adba ,"\u0074 \u0026\u0020\u0021\u0070\u0032"); -};_eacc ,_dcgc =_eddb .ThresholdPixelSum (_dfcf ,tab8 );if _dcgc !=nil {return false ,_a .Wrap (_dcgc ,_adba ,"\u0074\u002d\u003e\u0074\u0068\u0072\u0065\u0073\u0068\u0033");};return !_eacc ,nil ;};func NewClassedPoints (points *Points ,classes _c .IntSlice )(*ClassedPoints ,error ){const _dabc ="\u004e\u0065w\u0043\u006c\u0061s\u0073\u0065\u0064\u0050\u006f\u0069\u006e\u0074\u0073"; -if points ==nil {return nil ,_a .Error (_dabc ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0070\u006f\u0069\u006e\u0074\u0073");};if classes ==nil {return nil ,_a .Error (_dabc ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0063\u006c\u0061ss\u0065\u0073"); -};_dfbe :=&ClassedPoints {Points :points ,IntSlice :classes };if _bfgb :=_dfbe .validateIntSlice ();_bfgb !=nil {return nil ,_a .Wrap (_bfgb ,_dabc ,"");};return _dfbe ,nil ;};func (_fefc *Bitmap )setAll ()error {_ceff :=_bgcc (_fefc ,0,0,_fefc .Width ,_fefc .Height ,PixSet ,nil ,0,0); -if _ceff !=nil {return _a .Wrap (_ceff ,"\u0073\u0065\u0074\u0041\u006c\u006c","");};return nil ;};func (_ggfe *Bitmap )GetByteIndex (x ,y int )int {return y *_ggfe .RowStride +(x >>3)};func (_egbf *Bitmap )GetChocolateData ()[]byte {if _egbf .Color ==Vanilla {_egbf .inverseData (); -};return _egbf .Data ;};func TstFrameBitmap ()*Bitmap {return _cgde .Copy ()};func _ag (_ee ,_ggdg *Bitmap ,_gcf int ,_cdg []byte ,_gga int )(_bcgg error ){const _cgef ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0032"; -var (_aff ,_cdd ,_adf ,_dgg ,_ea ,_dgc ,_egb ,_cdb int ;_ggg ,_adb ,_cefa ,_ade uint32 ;_cdgd ,_acda byte ;_ddgg uint16 ;);_cba :=make ([]byte ,4);_debb :=make ([]byte ,4);for _adf =0;_adf < _ee .Height -1;_adf ,_dgg =_adf +2,_dgg +1{_aff =_adf *_ee .RowStride ; -_cdd =_dgg *_ggdg .RowStride ;for _ea ,_dgc =0,0;_ea < _gga ;_ea ,_dgc =_ea +4,_dgc +1{for _egb =0;_egb < 4;_egb ++{_cdb =_aff +_ea +_egb ;if _cdb <=len (_ee .Data )-1&&_cdb < _aff +_ee .RowStride {_cba [_egb ]=_ee .Data [_cdb ];}else {_cba [_egb ]=0x00; -};_cdb =_aff +_ee .RowStride +_ea +_egb ;if _cdb <=len (_ee .Data )-1&&_cdb < _aff +(2*_ee .RowStride ){_debb [_egb ]=_ee .Data [_cdb ];}else {_debb [_egb ]=0x00;};};_ggg =_gg .BigEndian .Uint32 (_cba );_adb =_gg .BigEndian .Uint32 (_debb );_cefa =_ggg &_adb ; -_cefa |=_cefa <<1;_ade =_ggg |_adb ;_ade &=_ade <<1;_adb =_cefa |_ade ;_adb &=0xaaaaaaaa;_ggg =_adb |(_adb <<7);_cdgd =byte (_ggg >>24);_acda =byte ((_ggg >>8)&0xff);_cdb =_cdd +_dgc ;if _cdb +1==len (_ggdg .Data )-1||_cdb +1>=_cdd +_ggdg .RowStride {if _bcgg =_ggdg .SetByte (_cdb ,_cdg [_cdgd ]); -_bcgg !=nil {return _a .Wrapf (_bcgg ,_cgef ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_cdb );};}else {_ddgg =(uint16 (_cdg [_cdgd ])<<8)|uint16 (_cdg [_acda ]);if _bcgg =_ggdg .setTwoBytes (_cdb ,_ddgg );_bcgg !=nil {return _a .Wrapf (_bcgg ,_cgef ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_cdb ); -};_dgc ++;};};};return nil ;};func (_eff *Bitmap )InverseData (){_eff .inverseData ()};var (_bbef =[]byte {0x00,0x80,0xC0,0xE0,0xF0,0xF8,0xFC,0xFE,0xFF};_gafa =[]byte {0x00,0x01,0x03,0x07,0x0F,0x1F,0x3F,0x7F,0xFF};);func (_gggbd *Bitmap )inverseData (){if _bbdcd :=_gggbd .RasterOperation (0,0,_gggbd .Width ,_gggbd .Height ,PixNotDst ,nil ,0,0); -_bbdcd !=nil {_dc .Log .Debug ("\u0049n\u0076\u0065\u0072\u0073e\u0020\u0064\u0061\u0074\u0061 \u0066a\u0069l\u0065\u0064\u003a\u0020\u0027\u0025\u0076'",_bbdcd );};if _gggbd .Color ==Chocolate {_gggbd .Color =Vanilla ;}else {_gggbd .Color =Chocolate ; -};};func (_fegf *Bitmaps )SortByWidth (){_bafa :=(*byWidth )(_fegf );_d .Sort (_bafa )};func _ffag (_abccd ,_ffca *Bitmap ,_feaa ,_dffd int )(*Bitmap ,error ){const _egd ="\u0063\u006c\u006f\u0073\u0065\u0042\u0072\u0069\u0063\u006b";if _ffca ==nil {return nil ,_a .Error (_egd ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); -};if _feaa < 1||_dffd < 1{return nil ,_a .Error (_egd ,"\u0068S\u0069\u007a\u0065\u0020\u0061\u006e\u0064\u0020\u0076\u0053\u0069z\u0065\u0020\u006e\u006f\u0074\u0020\u003e\u003d\u0020\u0031");};if _feaa ==1&&_dffd ==1{return _ffca .Copy (),nil ;};if _feaa ==1||_dffd ==1{_dbda :=SelCreateBrick (_dffd ,_feaa ,_dffd /2,_feaa /2,SelHit ); -var _gfbf error ;_abccd ,_gfbf =_deffc (_abccd ,_ffca ,_dbda );if _gfbf !=nil {return nil ,_a .Wrap (_gfbf ,_egd ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); -};return _abccd ,nil ;};_fadb :=SelCreateBrick (1,_feaa ,0,_feaa /2,SelHit );_fafd :=SelCreateBrick (_dffd ,1,_dffd /2,0,SelHit );_eaed ,_bdgg :=_bbea (nil ,_ffca ,_fadb );if _bdgg !=nil {return nil ,_a .Wrap (_bdgg ,_egd ,"\u0031\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); -};if _abccd ,_bdgg =_bbea (_abccd ,_eaed ,_fafd );_bdgg !=nil {return nil ,_a .Wrap (_bdgg ,_egd ,"\u0032\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065");};if _ ,_bdgg =_bbbb (_eaed ,_abccd ,_fadb );_bdgg !=nil {return nil ,_a .Wrap (_bdgg ,_egd ,"\u0031s\u0074\u0020\u0065\u0072\u006f\u0064e"); -};if _ ,_bdgg =_bbbb (_abccd ,_eaed ,_fafd );_bdgg !=nil {return nil ,_a .Wrap (_bdgg ,_egd ,"\u0032n\u0064\u0020\u0065\u0072\u006f\u0064e");};return _abccd ,nil ;};func (_fggaed *byHeight )Less (i ,j int )bool {return _fggaed .Values [i ].Height < _fggaed .Values [j ].Height ; -};func _feae (_fgfb *_c .Stack )(_ebfaa *fillSegment ,_ecdbc error ){const _befd ="\u0070\u006f\u0070\u0046\u0069\u006c\u006c\u0053\u0065g\u006d\u0065\u006e\u0074";if _fgfb ==nil {return nil ,_a .Error (_befd ,"\u006ei\u006c \u0073\u0074\u0061\u0063\u006b \u0070\u0072o\u0076\u0069\u0064\u0065\u0064"); -};if _fgfb .Aux ==nil {return nil ,_a .Error (_befd ,"a\u0075x\u0053\u0074\u0061\u0063\u006b\u0020\u006e\u006ft\u0020\u0064\u0065\u0066in\u0065\u0064");};_dgeg ,_ebgg :=_fgfb .Pop ();if !_ebgg {return nil ,nil ;};_cbdc ,_ebgg :=_dgeg .(*fillSegment );if !_ebgg {return nil ,_a .Error (_befd ,"\u0073\u0074\u0061ck\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074\u0020c\u006fn\u0074a\u0069n\u0020\u002a\u0066\u0069\u006c\u006c\u0053\u0065\u0067\u006d\u0065\u006e\u0074"); -};_ebfaa =&fillSegment {_cbdc ._aebdc ,_cbdc ._bcag ,_cbdc ._fegcf +_cbdc ._aggbd ,_cbdc ._aggbd };_fgfb .Aux .Push (_cbdc );return _ebfaa ,nil ;};func _bda (_fbf *Bitmap ,_gbd int ,_fef []byte )(_feff *Bitmap ,_fea error ){const _ddg ="\u0072\u0065\u0064\u0075\u0063\u0065\u0052\u0061\u006e\u006b\u0042\u0069n\u0061\u0072\u0079\u0032"; -if _fbf ==nil {return nil ,_a .Error (_ddg ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};if _gbd < 1||_gbd > 4{return nil ,_a .Error (_ddg ,"\u006c\u0065\u0076\u0065\u006c\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020\u0073e\u0074\u0020\u007b\u0031\u002c\u0032\u002c\u0033\u002c\u0034\u007d"); -};if _fbf .Height <=1{return nil ,_a .Errorf (_ddg ,"\u0073o\u0075\u0072c\u0065\u0020\u0068e\u0069\u0067\u0068\u0074\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0061t\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0027\u0032\u0027\u0020-\u0020\u0069\u0073\u003a\u0020\u0027\u0025\u0064\u0027",_fbf .Height ); -};_feff =New (_fbf .Width /2,_fbf .Height /2);if _fef ==nil {_fef =_fbc ();};_df :=_egag (_fbf .RowStride ,2*_feff .RowStride );switch _gbd {case 1:_fea =_dbg (_fbf ,_feff ,_gbd ,_fef ,_df );case 2:_fea =_ag (_fbf ,_feff ,_gbd ,_fef ,_df );case 3:_fea =_agb (_fbf ,_feff ,_gbd ,_fef ,_df ); -case 4:_fea =_bef (_fbf ,_feff ,_gbd ,_fef ,_df );};if _fea !=nil {return nil ,_fea ;};return _feff ,nil ;};const (_ SizeComparison =iota ;SizeSelectIfLT ;SizeSelectIfGT ;SizeSelectIfLTE ;SizeSelectIfGTE ;SizeSelectIfEQ ;);func (_dgfa *Bitmaps )AddBitmap (bm *Bitmap ){_dgfa .Values =append (_dgfa .Values ,bm )}; +package bitmap ;import (_db "encoding/binary";_d "github.com/stretchr/testify/require";_ca "github.com/unidoc/unipdf/v3/common";_ce "github.com/unidoc/unipdf/v3/internal/bitwise";_g "github.com/unidoc/unipdf/v3/internal/imageutil";_ac "github.com/unidoc/unipdf/v3/internal/jbig2/basic"; +_e "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_aa "image";_ea "math";_ff "sort";_c "strings";_f "testing";);func _acbb (_bacfg *Bitmap ,_ddag ,_dbgb int ,_fbafd ,_gcdg int ,_efda RasterOperator ){var (_ceded int ;_dddae byte ;_dbafc ,_adef int ; +_gfegc int ;);_bbbg :=_fbafd >>3;_caaba :=_fbafd &7;if _caaba > 0{_dddae =_acbba [_caaba ];};_ceded =_bacfg .RowStride *_dbgb +(_ddag >>3);switch _efda {case PixClr :for _dbafc =0;_dbafc < _gcdg ;_dbafc ++{_gfegc =_ceded +_dbafc *_bacfg .RowStride ;for _adef =0; +_adef < _bbbg ;_adef ++{_bacfg .Data [_gfegc ]=0x0;_gfegc ++;};if _caaba > 0{_bacfg .Data [_gfegc ]=_bbgf (_bacfg .Data [_gfegc ],0x0,_dddae );};};case PixSet :for _dbafc =0;_dbafc < _gcdg ;_dbafc ++{_gfegc =_ceded +_dbafc *_bacfg .RowStride ;for _adef =0; +_adef < _bbbg ;_adef ++{_bacfg .Data [_gfegc ]=0xff;_gfegc ++;};if _caaba > 0{_bacfg .Data [_gfegc ]=_bbgf (_bacfg .Data [_gfegc ],0xff,_dddae );};};case PixNotDst :for _dbafc =0;_dbafc < _gcdg ;_dbafc ++{_gfegc =_ceded +_dbafc *_bacfg .RowStride ;for _adef =0; +_adef < _bbbg ;_adef ++{_bacfg .Data [_gfegc ]=^_bacfg .Data [_gfegc ];_gfegc ++;};if _caaba > 0{_bacfg .Data [_gfegc ]=_bbgf (_bacfg .Data [_gfegc ],^_bacfg .Data [_gfegc ],_dddae );};};};};type RasterOperator int ;func TstWordBitmap (t *_f .T ,scale ...int )*Bitmap {_ggab :=1; +if len (scale )> 0{_ggab =scale [0];};_cabf :=3;_aadgg :=9+7+15+2*_cabf ;_bfcca :=5+_cabf +5;_cffbd :=New (_aadgg *_ggab ,_bfcca *_ggab );_cagf :=&Bitmaps {};var _afgfa *int ;_cabf *=_ggab ;_bfaea :=0;_afgfa =&_bfaea ;_bbfg :=0;_ecac :=TstDSymbol (t ,scale ...); +TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,_cabf );_ecac =TstISymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstTSymbol (t ,scale ...); +TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,_cabf );_ecac =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstWSymbol (t ,scale ...); +TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,0);*_afgfa =0;_bbfg =5*_ggab +_cabf ;_ecac =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,_cabf ); +_ecac =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstESymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstVSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab ); +_ecac =TstESymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,1*_ggab );_ecac =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_cagf ,_ecac ,_afgfa ,_bbfg ,0);TstWriteSymbols (t ,_cagf ,_cffbd );return _cffbd ;};func TstTSymbol (t *_f .T ,scale ...int )*Bitmap {_ddde ,_fdbc :=NewWithData (5,5,[]byte {0xF8,0x20,0x20,0x20,0x20}); +_d .NoError (t ,_fdbc );return TstGetScaledSymbol (t ,_ddde ,scale ...);};func _cfaba (_ecgfb *Bitmap ,_ffgf ,_daec ,_gfeg ,_fgefd int ,_eafcf RasterOperator ,_gaebc *Bitmap ,_efdf ,_cgfd int )error {var (_efadf bool ;_bcaae bool ;_bafe int ;_afgca int ; +_gadbe int ;_cfgdg bool ;_facf byte ;_ceef int ;_ceaa int ;_eef int ;_cfgde ,_edfac int ;);_aacd :=8-(_ffgf &7);_gfff :=_fbdg [_aacd ];_ecdb :=_ecgfb .RowStride *_daec +(_ffgf >>3);_cgag :=_gaebc .RowStride *_cgfd +(_efdf >>3);if _gfeg < _aacd {_efadf =true ; +_gfff &=_acbba [8-_aacd +_gfeg ];};if !_efadf {_bafe =(_gfeg -_aacd )>>3;if _bafe > 0{_bcaae =true ;_afgca =_ecdb +1;_gadbe =_cgag +1;};};_ceef =(_ffgf +_gfeg )&7;if !(_efadf ||_ceef ==0){_cfgdg =true ;_facf =_acbba [_ceef ];_ceaa =_ecdb +1+_bafe ;_eef =_cgag +1+_bafe ; +};switch _eafcf {case PixSrc :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],_gaebc .Data [_cgag ],_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0; +_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=_gaebc .Data [_gadbe +_edfac ];};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],_gaebc .Data [_eef ],_facf ); +_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixNotSrc :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],^_gaebc .Data [_cgag ],_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;}; +if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=^_gaebc .Data [_gadbe +_edfac ];};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ; +_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],^_gaebc .Data [_eef ],_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixSrcOrDst :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],_gaebc .Data [_cgag ]|_ecgfb .Data [_ecdb ],_gfff ); +_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]|=_gaebc .Data [_gadbe +_edfac ];};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ; +};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],_gaebc .Data [_eef ]|_ecgfb .Data [_ceaa ],_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixSrcAndDst :for _cfgde =0;_cfgde < _fgefd ; +_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],_gaebc .Data [_cgag ]&_ecgfb .Data [_ecdb ],_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]&=_gaebc .Data [_gadbe +_edfac ]; +};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],_gaebc .Data [_eef ]&_ecgfb .Data [_ceaa ],_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ; +};};case PixSrcXorDst :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],_gaebc .Data [_cgag ]^_ecgfb .Data [_ecdb ],_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ; +_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]^=_gaebc .Data [_gadbe +_edfac ];};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],_gaebc .Data [_eef ]^_ecgfb .Data [_ceaa ],_facf ); +_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixNotSrcOrDst :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],^(_gaebc .Data [_cgag ])|_ecgfb .Data [_ecdb ],_gfff );_ecdb +=_ecgfb .RowStride ; +_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]|=^(_gaebc .Data [_gadbe +_edfac ]);};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0; +_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],^(_gaebc .Data [_eef ])|_ecgfb .Data [_ceaa ],_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixNotSrcAndDst :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],^(_gaebc .Data [_cgag ])&_ecgfb .Data [_ecdb ],_gfff ); +_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]&=^_gaebc .Data [_gadbe +_edfac ];};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ; +};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],^(_gaebc .Data [_eef ])&_ecgfb .Data [_ceaa ],_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixSrcOrNotDst :for _cfgde =0; +_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],_gaebc .Data [_cgag ]|^(_ecgfb .Data [_ecdb ]),_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0; +_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=_gaebc .Data [_gadbe +_edfac ]|^(_ecgfb .Data [_afgca +_edfac ]);};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],_gaebc .Data [_eef ]|^(_ecgfb .Data [_ceaa ]),_facf ); +_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixSrcAndNotDst :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],_gaebc .Data [_cgag ]&^(_ecgfb .Data [_ecdb ]),_gfff );_ecdb +=_ecgfb .RowStride ; +_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=_gaebc .Data [_gadbe +_edfac ]&^(_ecgfb .Data [_afgca +_edfac ]);};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ; +};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],_gaebc .Data [_eef ]&^(_ecgfb .Data [_ceaa ]),_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixNotPixSrcOrDst :for _cfgde =0; +_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],^(_gaebc .Data [_cgag ]|_ecgfb .Data [_ecdb ]),_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0; +_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=^(_gaebc .Data [_gadbe +_edfac ]|_ecgfb .Data [_afgca +_edfac ]);};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],^(_gaebc .Data [_eef ]|_ecgfb .Data [_ceaa ]),_facf ); +_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixNotPixSrcAndDst :for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],^(_gaebc .Data [_cgag ]&_ecgfb .Data [_ecdb ]),_gfff );_ecdb +=_ecgfb .RowStride ; +_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0;_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=^(_gaebc .Data [_gadbe +_edfac ]&_ecgfb .Data [_afgca +_edfac ]);};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ; +};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],^(_gaebc .Data [_eef ]&_ecgfb .Data [_ceaa ]),_facf );_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};case PixNotPixSrcXorDst :for _cfgde =0; +_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ecdb ]=_bbgf (_ecgfb .Data [_ecdb ],^(_gaebc .Data [_cgag ]^_ecgfb .Data [_ecdb ]),_gfff );_ecdb +=_ecgfb .RowStride ;_cgag +=_gaebc .RowStride ;};if _bcaae {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{for _edfac =0; +_edfac < _bafe ;_edfac ++{_ecgfb .Data [_afgca +_edfac ]=^(_gaebc .Data [_gadbe +_edfac ]^_ecgfb .Data [_afgca +_edfac ]);};_afgca +=_ecgfb .RowStride ;_gadbe +=_gaebc .RowStride ;};};if _cfgdg {for _cfgde =0;_cfgde < _fgefd ;_cfgde ++{_ecgfb .Data [_ceaa ]=_bbgf (_ecgfb .Data [_ceaa ],^(_gaebc .Data [_eef ]^_ecgfb .Data [_ceaa ]),_facf ); +_ceaa +=_ecgfb .RowStride ;_eef +=_gaebc .RowStride ;};};default:_ca .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070e\u0072\u0061\u0074o\u0072:\u0020\u0025\u0064",_eafcf );return _e .Error ("\u0072\u0061\u0073\u0074er\u004f\u0070\u0056\u0041\u006c\u0069\u0067\u006e\u0065\u0064\u004c\u006f\u0077","\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072"); +};return nil ;};func (_fcb *Bitmap )Copy ()*Bitmap {_ffcc :=make ([]byte ,len (_fcb .Data ));copy (_ffcc ,_fcb .Data );return &Bitmap {Width :_fcb .Width ,Height :_fcb .Height ,RowStride :_fcb .RowStride ,Data :_ffcc ,Color :_fcb .Color ,Text :_fcb .Text ,BitmapNumber :_fcb .BitmapNumber ,Special :_fcb .Special }; +};func _beaad (_cbdf *Bitmap ,_efga *_ac .Stack ,_aecg ,_bgdb ,_bgcc int )(_bebf *_aa .Rectangle ,_efea error ){const _dffd ="\u0073e\u0065d\u0046\u0069\u006c\u006c\u0053\u0074\u0061\u0063\u006b\u0042\u0042";if _cbdf ==nil {return nil ,_e .Error (_dffd ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0073\u0027\u0020\u0042\u0069\u0074\u006d\u0061\u0070"); +};if _efga ==nil {return nil ,_e .Error (_dffd ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0027\u0073\u0074ac\u006b\u0027");};switch _bgcc {case 4:if _bebf ,_efea =_ddgf (_cbdf ,_efga ,_aecg ,_bgdb );_efea !=nil {return nil ,_e .Wrap (_efea ,_dffd ,""); +};return _bebf ,nil ;case 8:if _bebf ,_efea =_egbea (_cbdf ,_efga ,_aecg ,_bgdb );_efea !=nil {return nil ,_e .Wrap (_efea ,_dffd ,"");};return _bebf ,nil ;default:return nil ,_e .Errorf (_dffd ,"\u0063\u006f\u006e\u006e\u0065\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u0069\u0073 \u006eo\u0074\u0020\u0034\u0020\u006f\u0072\u0020\u0038\u003a\u0020\u0027\u0025\u0064\u0027",_bgcc ); +};};func (_feac *Bitmap )Zero ()bool {_edbb :=_feac .Width /8;_fbgd :=_feac .Width &7;var _fabc byte ;if _fbgd !=0{_fabc =byte (0xff< 0{if _feac .Data [_ecf ]&_fabc !=0{return false ;};};};return true ;};func (_fbbc Points )Get (i int )(Point ,error ){if i > len (_fbbc )-1{return Point {},_e .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065\u0074","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};return _fbbc [i ],nil ;};func (_dgac CombinationOperator )String ()string {var _ffgbc string ;switch _dgac {case CmbOpOr :_ffgbc ="\u004f\u0052";case CmbOpAnd :_ffgbc ="\u0041\u004e\u0044";case CmbOpXor :_ffgbc ="\u0058\u004f\u0052";case CmbOpXNor :_ffgbc ="\u0058\u004e\u004f\u0052"; +case CmbOpReplace :_ffgbc ="\u0052E\u0050\u004c\u0041\u0043\u0045";case CmbOpNot :_ffgbc ="\u004e\u004f\u0054";};return _ffgbc ;};func (_ecbfc *byHeight )Len ()int {return len (_ecbfc .Values )};func (_bdaf MorphProcess )verify (_fafa int ,_bgab ,_ecgfe *int )error {const _dadb ="\u004d\u006f\u0072\u0070hP\u0072\u006f\u0063\u0065\u0073\u0073\u002e\u0076\u0065\u0072\u0069\u0066\u0079"; +switch _bdaf .Operation {case MopDilation ,MopErosion ,MopOpening ,MopClosing :if len (_bdaf .Arguments )!=2{return _e .Error (_dadb ,"\u004f\u0070\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0064\u0027\u002c\u0020\u0027\u0065\u0027\u002c \u0027\u006f\u0027\u002c\u0020\u0027\u0063\u0027\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0032\u0020\u0061r\u0067\u0075\u006d\u0065\u006et\u0073"); +};_bccb ,_cfega :=_bdaf .getWidthHeight ();if _bccb <=0||_cfega <=0{return _e .Error (_dadb ,"O\u0070er\u0061t\u0069o\u006e\u003a\u0020\u0027\u0064'\u002c\u0020\u0027e\u0027\u002c\u0020\u0027\u006f'\u002c\u0020\u0027c\u0027\u0020\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073 \u0062\u006f\u0074h w\u0069\u0064\u0074\u0068\u0020\u0061n\u0064\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u0074\u006f\u0020b\u0065 \u003e\u003d\u0020\u0030"); +};case MopRankBinaryReduction :_eged :=len (_bdaf .Arguments );*_bgab +=_eged ;if _eged < 1||_eged > 4{return _e .Error (_dadb ,"\u004f\u0070\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0072\u0027\u0020\u0072\u0065\u0071\u0075\u0069r\u0065\u0073\u0020\u0061\u0074\u0020\u006c\u0065\u0061s\u0074\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0061\u0074\u0020\u006d\u006fs\u0074\u0020\u0034\u0020\u0061\u0072g\u0075\u006d\u0065n\u0074\u0073"); +};for _egba :=0;_egba < _eged ;_egba ++{if _bdaf .Arguments [_egba ]< 1||_bdaf .Arguments [_egba ]> 4{return _e .Error (_dadb ,"\u0052\u0061\u006e\u006b\u0042\u0069n\u0061\u0072\u0079\u0052\u0065\u0064\u0075\u0063\u0074\u0069\u006f\u006e\u0020\u006c\u0065\u0076\u0065\u006c\u0020\u006du\u0073\u0074\u0020\u0062\u0065\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065 \u00280\u002c\u0020\u0034\u003e"); +};};case MopReplicativeBinaryExpansion :if len (_bdaf .Arguments )==0{return _e .Error (_dadb ,"\u0052\u0065\u0070\u006c\u0069\u0063\u0061\u0074i\u0076\u0065\u0042in\u0061\u0072\u0079\u0045\u0078\u0070a\u006e\u0073\u0069\u006f\u006e\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020o\u006e\u0065\u0020\u0061\u0072\u0067\u0075\u006de\u006e\u0074"); +};_efcf :=_bdaf .Arguments [0];if _efcf !=2&&_efcf !=4&&_efcf !=8{return _e .Error (_dadb ,"R\u0065\u0070\u006c\u0069\u0063\u0061\u0074\u0069\u0076\u0065\u0042\u0069\u006e\u0061\u0072\u0079\u0045\u0078\u0070\u0061\u006e\u0073\u0069\u006f\u006e\u0020m\u0075s\u0074\u0020\u0062\u0065 \u006f\u0066 \u0066\u0061\u0063\u0074\u006f\u0072\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d"); +};*_bgab -=_fdde [_efcf /4];case MopAddBorder :if len (_bdaf .Arguments )==0{return _e .Error (_dadb ,"\u0041\u0064\u0064B\u006f\u0072\u0064\u0065r\u0020\u0072\u0065\u0071\u0075\u0069\u0072e\u0073\u0020\u006f\u006e\u0065\u0020\u0061\u0072\u0067\u0075\u006d\u0065\u006e\u0074"); +};_gfbg :=_bdaf .Arguments [0];if _fafa > 0{return _e .Error (_dadb ,"\u0041\u0064\u0064\u0042\u006f\u0072\u0064\u0065\u0072\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u0020f\u0069\u0072\u0073\u0074\u0020\u006d\u006f\u0072\u0070\u0068\u0020\u0070\u0072o\u0063\u0065\u0073\u0073"); +};if _gfbg < 1{return _e .Error (_dadb ,"\u0041\u0064\u0064\u0042o\u0072\u0064\u0065\u0072\u0020\u0076\u0061\u006c\u0075\u0065 \u006co\u0077\u0065\u0072\u0020\u0074\u0068\u0061n\u0020\u0030");};*_ecgfe =_gfbg ;};return nil ;};func (_efd *Bitmap )SetPixel (x ,y int ,pixel byte )error {_bda :=_efd .GetByteIndex (x ,y ); +if _bda > len (_efd .Data )-1{return _e .Errorf ("\u0053\u0065\u0074\u0050\u0069\u0078\u0065\u006c","\u0069\u006e\u0064\u0065x \u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020%\u0064",_bda );};_cdcb :=_efd .GetBitOffset (x ); +_bfgd :=uint (7-_cdcb );_gfg :=_efd .Data [_bda ];var _abgf byte ;if pixel ==1{_abgf =_gfg |(pixel &0x01<<_bfgd );}else {_abgf =_gfg &^(1<<_bfgd );};_efd .Data [_bda ]=_abgf ;return nil ;};func DilateBrick (d ,s *Bitmap ,hSize ,vSize int )(*Bitmap ,error ){return _dgdg (d ,s ,hSize ,vSize )}; +func _bcc ()(_egb []byte ){_egb =make ([]byte ,256);for _adc :=0;_adc < 256;_adc ++{_gbc :=byte (_adc );_egb [_gbc ]=(_gbc &0x01)|((_gbc &0x04)>>1)|((_gbc &0x10)>>2)|((_gbc &0x40)>>3)|((_gbc &0x02)<<3)|((_gbc &0x08)<<2)|((_gbc &0x20)<<1)|(_gbc &0x80);}; +return _egb ;};func _cfgc (_eegg ,_feee *Bitmap ,_fdbg *Selection )(*Bitmap ,error ){const _acdg ="\u0065\u0072\u006fd\u0065";var (_gbcf error ;_bada *Bitmap ;);_eegg ,_gbcf =_begeb (_eegg ,_feee ,_fdbg ,&_bada );if _gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,""); +};if _gbcf =_eegg .setAll ();_gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,"");};var _aebg SelectionValue ;for _agd :=0;_agd < _fdbg .Height ;_agd ++{for _ffccd :=0;_ffccd < _fdbg .Width ;_ffccd ++{_aebg =_fdbg .Data [_agd ][_ffccd ];if _aebg ==SelHit {_gbcf =_gegg (_eegg ,_fdbg .Cx -_ffccd ,_fdbg .Cy -_agd ,_feee .Width ,_feee .Height ,PixSrcAndDst ,_bada ,0,0); +if _gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,"");};};};};if MorphBC ==SymmetricMorphBC {return _eegg ,nil ;};_dacba ,_afdd ,_eedaa ,_gbca :=_fdbg .findMaxTranslations ();if _dacba > 0{if _gbcf =_eegg .RasterOperation (0,0,_dacba ,_feee .Height ,PixClr ,nil ,0,0); +_gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,"\u0078\u0070\u0020\u003e\u0020\u0030");};};if _eedaa > 0{if _gbcf =_eegg .RasterOperation (_feee .Width -_eedaa ,0,_eedaa ,_feee .Height ,PixClr ,nil ,0,0);_gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,"\u0078\u006e\u0020\u003e\u0020\u0030"); +};};if _afdd > 0{if _gbcf =_eegg .RasterOperation (0,0,_feee .Width ,_afdd ,PixClr ,nil ,0,0);_gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,"\u0079\u0070\u0020\u003e\u0020\u0030");};};if _gbca > 0{if _gbcf =_eegg .RasterOperation (0,_feee .Height -_gbca ,_feee .Width ,_gbca ,PixClr ,nil ,0,0); +_gbcf !=nil {return nil ,_e .Wrap (_gbcf ,_acdg ,"\u0079\u006e\u0020\u003e\u0020\u0030");};};return _eegg ,nil ;};func (_bdfb *ClassedPoints )XAtIndex (i int )float32 {return (*_bdfb .Points )[_bdfb .IntSlice [i ]].X };func init (){for _edb :=0;_edb < 256; +_edb ++{_fde [_edb ]=uint8 (_edb &0x1)+(uint8 (_edb >>1)&0x1)+(uint8 (_edb >>2)&0x1)+(uint8 (_edb >>3)&0x1)+(uint8 (_edb >>4)&0x1)+(uint8 (_edb >>5)&0x1)+(uint8 (_edb >>6)&0x1)+(uint8 (_edb >>7)&0x1);};};func (_dfdeb *byWidth )Len ()int {return len (_dfdeb .Values )}; +func _gcg (_aaaa ,_acfac int )int {if _aaaa < _acfac {return _aaaa ;};return _acfac ;};func NewWithUnpaddedData (width ,height int ,data []byte )(*Bitmap ,error ){const _egf ="\u004e\u0065\u0077\u0057it\u0068\u0055\u006e\u0070\u0061\u0064\u0064\u0065\u0064\u0044\u0061\u0074\u0061"; +_dcf :=_eced (width ,height );_dcf .Data =data ;if _adeag :=((width *height )+7)>>3;len (data )< _adeag {return nil ,_e .Errorf (_egf ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064a\u0074\u0061\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u002e\u0020\u0054\u0068\u0065\u0020\u0064\u0061t\u0061\u0020s\u0068\u006fu\u006c\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0074 l\u0065\u0061\u0073\u0074\u003a\u0020\u0027\u0025\u0064'\u0020\u0062\u0079\u0074\u0065\u0073",len (data ),_adeag ); +};if _gac :=_dcf .addPadBits ();_gac !=nil {return nil ,_e .Wrap (_gac ,_egf ,"");};return _dcf ,nil ;};func CombineBytes (oldByte ,newByte byte ,op CombinationOperator )byte {return _eeabd (oldByte ,newByte ,op );};func _cdf ()(_gca [256]uint32 ){for _bf :=0; +_bf < 256;_bf ++{if _bf &0x01!=0{_gca [_bf ]|=0xf;};if _bf &0x02!=0{_gca [_bf ]|=0xf0;};if _bf &0x04!=0{_gca [_bf ]|=0xf00;};if _bf &0x08!=0{_gca [_bf ]|=0xf000;};if _bf &0x10!=0{_gca [_bf ]|=0xf0000;};if _bf &0x20!=0{_gca [_bf ]|=0xf00000;};if _bf &0x40!=0{_gca [_bf ]|=0xf000000; +};if _bf &0x80!=0{_gca [_bf ]|=0xf0000000;};};return _gca ;};func _fbc ()(_fbg [256]uint64 ){for _bee :=0;_bee < 256;_bee ++{if _bee &0x01!=0{_fbg [_bee ]|=0xff;};if _bee &0x02!=0{_fbg [_bee ]|=0xff00;};if _bee &0x04!=0{_fbg [_bee ]|=0xff0000;};if _bee &0x08!=0{_fbg [_bee ]|=0xff000000; +};if _bee &0x10!=0{_fbg [_bee ]|=0xff00000000;};if _bee &0x20!=0{_fbg [_bee ]|=0xff0000000000;};if _bee &0x40!=0{_fbg [_bee ]|=0xff000000000000;};if _bee &0x80!=0{_fbg [_bee ]|=0xff00000000000000;};};return _fbg ;};func (_ggfgb *Bitmap )setBit (_cabg int ){_ggfgb .Data [(_cabg >>3)]|=0x80>>uint (_cabg &7)}; +func (_gccba *ClassedPoints )GetIntYByClass (i int )(int ,error ){const _cbfd ="\u0043\u006c\u0061\u0073s\u0065\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047e\u0074I\u006e\u0074\u0059\u0042\u0079\u0043\u006ca\u0073\u0073";if i >=_gccba .IntSlice .Size (){return 0,_e .Errorf (_cbfd ,"\u0069\u003a\u0020\u0027\u0025\u0064\u0027 \u0069\u0073\u0020o\u0075\u0074\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0049\u006e\u0074\u0053\u006c\u0069\u0063\u0065",i ); +};return int (_gccba .YAtIndex (i )),nil ;};func (_bdfbc *Bitmap )RasterOperation (dx ,dy ,dw ,dh int ,op RasterOperator ,src *Bitmap ,sx ,sy int )error {return _gegg (_bdfbc ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy );};func _adac (_dfaad *Bitmap ,_edfc ,_bceda ,_cedg ,_fabdf int ,_fdbd RasterOperator ,_gafbc *Bitmap ,_dcgf ,_acabd int )error {var (_gdfga byte ; +_aaag int ;_bedf int ;_afea ,_adge int ;_dddc ,_cggd int ;);_agca :=_cedg >>3;_adfa :=_cedg &7;if _adfa > 0{_gdfga =_acbba [_adfa ];};_aaag =_gafbc .RowStride *_acabd +(_dcgf >>3);_bedf =_dfaad .RowStride *_bceda +(_edfc >>3);switch _fdbd {case PixSrc :for _dddc =0; +_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=_gafbc .Data [_afea ];_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],_gafbc .Data [_afea ],_gdfga ); +};};case PixNotSrc :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=^(_gafbc .Data [_afea ]);_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],^_gafbc .Data [_afea ],_gdfga ); +};};case PixSrcOrDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]|=_gafbc .Data [_afea ];_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],_gafbc .Data [_afea ]|_dfaad .Data [_adge ],_gdfga ); +};};case PixSrcAndDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]&=_gafbc .Data [_afea ];_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],_gafbc .Data [_afea ]&_dfaad .Data [_adge ],_gdfga ); +};};case PixSrcXorDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]^=_gafbc .Data [_afea ];_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],_gafbc .Data [_afea ]^_dfaad .Data [_adge ],_gdfga ); +};};case PixNotSrcOrDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]|=^(_gafbc .Data [_afea ]);_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],^(_gafbc .Data [_afea ])|_dfaad .Data [_adge ],_gdfga ); +};};case PixNotSrcAndDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]&=^(_gafbc .Data [_afea ]);_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],^(_gafbc .Data [_afea ])&_dfaad .Data [_adge ],_gdfga ); +};};case PixSrcOrNotDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=_gafbc .Data [_afea ]|^(_dfaad .Data [_adge ]);_adge ++; +_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],_gafbc .Data [_afea ]|^(_dfaad .Data [_adge ]),_gdfga );};};case PixSrcAndNotDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ; +for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=_gafbc .Data [_afea ]&^(_dfaad .Data [_adge ]);_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],_gafbc .Data [_afea ]&^(_dfaad .Data [_adge ]),_gdfga );};};case PixNotPixSrcOrDst :for _dddc =0; +_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=^(_gafbc .Data [_afea ]|_dfaad .Data [_adge ]);_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],^(_gafbc .Data [_afea ]|_dfaad .Data [_adge ]),_gdfga ); +};};case PixNotPixSrcAndDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ;for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=^(_gafbc .Data [_afea ]&_dfaad .Data [_adge ]); +_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],^(_gafbc .Data [_afea ]&_dfaad .Data [_adge ]),_gdfga );};};case PixNotPixSrcXorDst :for _dddc =0;_dddc < _fabdf ;_dddc ++{_afea =_aaag +_dddc *_gafbc .RowStride ;_adge =_bedf +_dddc *_dfaad .RowStride ; +for _cggd =0;_cggd < _agca ;_cggd ++{_dfaad .Data [_adge ]=^(_gafbc .Data [_afea ]^_dfaad .Data [_adge ]);_adge ++;_afea ++;};if _adfa > 0{_dfaad .Data [_adge ]=_bbgf (_dfaad .Data [_adge ],^(_gafbc .Data [_afea ]^_dfaad .Data [_adge ]),_gdfga );};};default:_ca .Log .Debug ("\u0050\u0072ov\u0069\u0064\u0065d\u0020\u0069\u006e\u0076ali\u0064 r\u0061\u0073\u0074\u0065\u0072\u0020\u006fpe\u0072\u0061\u0074\u006f\u0072\u003a\u0020%\u0076",_fdbd ); +return _e .Error ("\u0072\u0061\u0073\u0074er\u004f\u0070\u0042\u0079\u0074\u0065\u0041\u006c\u0069\u0067\u006e\u0065\u0064\u004co\u0077","\u0069\u006e\u0076al\u0069\u0064\u0020\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072"); +};return nil ;};func (_baae *Points )AddPoint (x ,y float32 ){*_baae =append (*_baae ,Point {x ,y })};func HausTest (p1 ,p2 ,p3 ,p4 *Bitmap ,delX ,delY float32 ,maxDiffW ,maxDiffH int )(bool ,error ){const _fgcf ="\u0048\u0061\u0075\u0073\u0054\u0065\u0073\u0074"; +_abdg ,_ege :=p1 .Width ,p1 .Height ;_fef ,_bcfeg :=p3 .Width ,p3 .Height ;if _ac .Abs (_abdg -_fef )> maxDiffW {return false ,nil ;};if _ac .Abs (_ege -_bcfeg )> maxDiffH {return false ,nil ;};_aee :=int (delX +_ac .Sign (delX )*0.5);_aafe :=int (delY +_ac .Sign (delY )*0.5); +var _afbda error ;_gbe :=p1 .CreateTemplate ();if _afbda =_gbe .RasterOperation (0,0,_abdg ,_ege ,PixSrc ,p1 ,0,0);_afbda !=nil {return false ,_e .Wrap (_afbda ,_fgcf ,"p\u0031\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074");};if _afbda =_gbe .RasterOperation (_aee ,_aafe ,_abdg ,_ege ,PixNotSrcAndDst ,p4 ,0,0); +_afbda !=nil {return false ,_e .Wrap (_afbda ,_fgcf ,"\u0021p\u0034\u0020\u0026\u0020\u0074");};if _gbe .Zero (){return false ,nil ;};if _afbda =_gbe .RasterOperation (_aee ,_aafe ,_fef ,_bcfeg ,PixSrc ,p3 ,0,0);_afbda !=nil {return false ,_e .Wrap (_afbda ,_fgcf ,"p\u0033\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074"); +};if _afbda =_gbe .RasterOperation (0,0,_fef ,_bcfeg ,PixNotSrcAndDst ,p2 ,0,0);_afbda !=nil {return false ,_e .Wrap (_afbda ,_fgcf ,"\u0021p\u0032\u0020\u0026\u0020\u0074");};return _gbe .Zero (),nil ;};func (_fadc *Bitmap )SetDefaultPixel (){for _bcf :=range _fadc .Data {_fadc .Data [_bcf ]=byte (0xff); +};};var MorphBC BoundaryCondition ;var (_acbba =[]byte {0x00,0x80,0xC0,0xE0,0xF0,0xF8,0xFC,0xFE,0xFF};_fbdg =[]byte {0x00,0x01,0x03,0x07,0x0F,0x1F,0x3F,0x7F,0xFF};);func (_aafga Points )GetIntY (i int )(int ,error ){if i >=len (_aafga ){return 0,_e .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065t\u0049\u006e\u0074\u0059","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};return int (_aafga [i ].Y ),nil ;};func (_edddc *Bitmap )ConnComponents (bms *Bitmaps ,connectivity int )(_efbd *Boxes ,_gadc error ){const _gbgbd ="B\u0069\u0074\u006d\u0061p.\u0043o\u006e\u006e\u0043\u006f\u006dp\u006f\u006e\u0065\u006e\u0074\u0073"; +if _edddc ==nil {return nil ,_e .Error (_gbgbd ,"\u0070r\u006f\u0076\u0069\u0064e\u0064\u0020\u0065\u006d\u0070t\u0079 \u0027b\u0027\u0020\u0062\u0069\u0074\u006d\u0061p");};if connectivity !=4&&connectivity !=8{return nil ,_e .Error (_gbgbd ,"\u0063\u006f\u006ene\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u006e\u006f\u0074\u0020\u0034\u0020\u006f\u0072\u0020\u0038"); +};if bms ==nil {if _efbd ,_gadc =_edddc .connComponentsBB (connectivity );_gadc !=nil {return nil ,_e .Wrap (_gadc ,_gbgbd ,"");};}else {if _efbd ,_gadc =_edddc .connComponentsBitmapsBB (bms ,connectivity );_gadc !=nil {return nil ,_e .Wrap (_gadc ,_gbgbd ,""); +};};return _efbd ,nil ;};func (_feeg *ClassedPoints )SortByX (){_feeg ._acab =_feeg .xSortFunction ();_ff .Sort (_feeg )};func (_abdfb Points )GetGeometry (i int )(_gbdc ,_becce float32 ,_gfcef error ){if i > len (_abdfb )-1{return 0,0,_e .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065\u0074","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};_bfe :=_abdfb [i ];return _bfe .X ,_bfe .Y ,nil ;};const _decfc =5000;func _caagg (_gccb *Bitmap ,_cfab *Bitmap ,_fcdf *Selection )(*Bitmap ,error ){var (_cefgd *Bitmap ;_aebdc error ;);_gccb ,_aebdc =_begeb (_gccb ,_cfab ,_fcdf ,&_cefgd );if _aebdc !=nil {return nil ,_aebdc ; +};if _aebdc =_gccb .clearAll ();_aebdc !=nil {return nil ,_aebdc ;};var _gba SelectionValue ;for _bedac :=0;_bedac < _fcdf .Height ;_bedac ++{for _acfe :=0;_acfe < _fcdf .Width ;_acfe ++{_gba =_fcdf .Data [_bedac ][_acfe ];if _gba ==SelHit {if _aebdc =_gccb .RasterOperation (_acfe -_fcdf .Cx ,_bedac -_fcdf .Cy ,_cfab .Width ,_cfab .Height ,PixSrcOrDst ,_cefgd ,0,0); +_aebdc !=nil {return nil ,_aebdc ;};};};};return _gccb ,nil ;};func (_gcee Points )YSorter ()func (_cfaa ,_gadd int )bool {return func (_adga ,_adcb int )bool {return _gcee [_adga ].Y < _gcee [_adcb ].Y };};func (_ebbbb *byWidth )Less (i ,j int )bool {return _ebbbb .Values [i ].Width < _ebbbb .Values [j ].Width }; +func (_babd *Bitmaps )ClipToBitmap (s *Bitmap )(*Bitmaps ,error ){const _cfbcf ="B\u0069t\u006d\u0061\u0070\u0073\u002e\u0043\u006c\u0069p\u0054\u006f\u0042\u0069tm\u0061\u0070";if _babd ==nil {return nil ,_e .Error (_cfbcf ,"\u0042\u0069\u0074\u006dap\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};if s ==nil {return nil ,_e .Error (_cfbcf ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};_fdccd :=len (_babd .Values );_cagg :=&Bitmaps {Values :make ([]*Bitmap ,_fdccd ),Boxes :make ([]*_aa .Rectangle ,_fdccd )}; +var (_fedda ,_dfgf *Bitmap ;_gfef *_aa .Rectangle ;_bbee error ;);for _bdafd :=0;_bdafd < _fdccd ;_bdafd ++{if _fedda ,_bbee =_babd .GetBitmap (_bdafd );_bbee !=nil {return nil ,_e .Wrap (_bbee ,_cfbcf ,"");};if _gfef ,_bbee =_babd .GetBox (_bdafd );_bbee !=nil {return nil ,_e .Wrap (_bbee ,_cfbcf ,""); +};if _dfgf ,_bbee =s .clipRectangle (_gfef ,nil );_bbee !=nil {return nil ,_e .Wrap (_bbee ,_cfbcf ,"");};if _dfgf ,_bbee =_dfgf .And (_fedda );_bbee !=nil {return nil ,_e .Wrap (_bbee ,_cfbcf ,"");};_cagg .Values [_bdafd ]=_dfgf ;_cagg .Boxes [_bdafd ]=_gfef ; +};return _cagg ,nil ;};func _gfgf (_fedd ,_faeb *Bitmap ,_ecef ,_fbcg int )(*Bitmap ,error ){const _bbfa ="\u006fp\u0065\u006e\u0042\u0072\u0069\u0063k";if _faeb ==nil {return nil ,_e .Error (_bbfa ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); +};if _ecef < 1&&_fbcg < 1{return nil ,_e .Error (_bbfa ,"\u0068\u0053\u0069\u007ae \u003c\u0020\u0031\u0020\u0026\u0026\u0020\u0076\u0053\u0069\u007a\u0065\u0020\u003c \u0031");};if _ecef ==1&&_fbcg ==1{return _faeb .Copy (),nil ;};if _ecef ==1||_fbcg ==1{var _eede error ; +_bdafc :=SelCreateBrick (_fbcg ,_ecef ,_fbcg /2,_ecef /2,SelHit );_fedd ,_eede =_cbdc (_fedd ,_faeb ,_bdafc );if _eede !=nil {return nil ,_e .Wrap (_eede ,_bbfa ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};return _fedd ,nil ;};_gfbe :=SelCreateBrick (1,_ecef ,0,_ecef /2,SelHit );_bfga :=SelCreateBrick (_fbcg ,1,_fbcg /2,0,SelHit );_dffg ,_caga :=_cfgc (nil ,_faeb ,_gfbe );if _caga !=nil {return nil ,_e .Wrap (_caga ,_bbfa ,"\u0031s\u0074\u0020\u0065\u0072\u006f\u0064e"); +};_fedd ,_caga =_cfgc (_fedd ,_dffg ,_bfga );if _caga !=nil {return nil ,_e .Wrap (_caga ,_bbfa ,"\u0032n\u0064\u0020\u0065\u0072\u006f\u0064e");};_ ,_caga =_caagg (_dffg ,_fedd ,_gfbe );if _caga !=nil {return nil ,_e .Wrap (_caga ,_bbfa ,"\u0031\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); +};_ ,_caga =_caagg (_fedd ,_dffg ,_bfga );if _caga !=nil {return nil ,_e .Wrap (_caga ,_bbfa ,"\u0032\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065");};return _fedd ,nil ;};func (_adba *ClassedPoints )Swap (i ,j int ){_adba .IntSlice [i ],_adba .IntSlice [j ]=_adba .IntSlice [j ],_adba .IntSlice [i ]; +};func (_dcc *Bitmap )setAll ()error {_egg :=_gegg (_dcc ,0,0,_dcc .Width ,_dcc .Height ,PixSet ,nil ,0,0);if _egg !=nil {return _e .Wrap (_egg ,"\u0073\u0065\u0074\u0041\u006c\u006c","");};return nil ;};func (_ebbf *Boxes )SelectBySize (width ,height int ,tp LocationFilter ,relation SizeComparison )(_bga *Boxes ,_afa error ){const _gcae ="\u0042o\u0078e\u0073\u002e\u0053\u0065\u006ce\u0063\u0074B\u0079\u0053\u0069\u007a\u0065"; +if _ebbf ==nil {return nil ,_e .Error (_gcae ,"b\u006f\u0078\u0065\u0073 '\u0062'\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064");};if len (*_ebbf )==0{return _ebbf ,nil ;};switch tp {case LocSelectWidth ,LocSelectHeight ,LocSelectIfEither ,LocSelectIfBoth :default:return nil ,_e .Errorf (_gcae ,"\u0069\u006e\u0076al\u0069\u0064\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0064",tp ); +};switch relation {case SizeSelectIfLT ,SizeSelectIfGT ,SizeSelectIfLTE ,SizeSelectIfGTE :default:return nil ,_e .Errorf (_gcae ,"i\u006e\u0076\u0061\u006c\u0069\u0064 \u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0020t\u0079\u0070\u0065:\u0020'\u0025\u0064\u0027",tp ); +};_cba :=_ebbf .makeSizeIndicator (width ,height ,tp ,relation );_gfb ,_afa :=_ebbf .selectWithIndicator (_cba );if _afa !=nil {return nil ,_e .Wrap (_afa ,_gcae ,"");};return _gfb ,nil ;};func (_agfc *Bitmaps )String ()string {_bfce :=_c .Builder {};for _ ,_bdaa :=range _agfc .Values {_bfce .WriteString (_bdaa .String ()); +_bfce .WriteRune ('\n');};return _bfce .String ();};func (_cge *Bitmap )SetByte (index int ,v byte )error {if index > len (_cge .Data )-1||index < 0{return _e .Errorf ("\u0053e\u0074\u0042\u0079\u0074\u0065","\u0069\u006e\u0064\u0065x \u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020%\u0064",index ); +};_cge .Data [index ]=v ;return nil ;};var (_cbff *Bitmap ;_gabd *Bitmap ;);func _aefd (_eac ,_fffc int )int {if _eac > _fffc {return _eac ;};return _fffc ;};func ClipBoxToRectangle (box *_aa .Rectangle ,wi ,hi int )(_eada *_aa .Rectangle ,_eabf error ){const _fee ="\u0043l\u0069p\u0042\u006f\u0078\u0054\u006fR\u0065\u0063t\u0061\u006e\u0067\u006c\u0065"; +if box ==nil {return nil ,_e .Error (_fee ,"\u0027\u0062\u006f\u0078\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064");};if box .Min .X >=wi ||box .Min .Y >=hi ||box .Max .X <=0||box .Max .Y <=0{return nil ,_e .Error (_fee ,"\u0027\u0062\u006fx'\u0020\u006f\u0075\u0074\u0073\u0069\u0064\u0065\u0020\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"); +};_aadc :=*box ;_eada =&_aadc ;if _eada .Min .X < 0{_eada .Max .X +=_eada .Min .X ;_eada .Min .X =0;};if _eada .Min .Y < 0{_eada .Max .Y +=_eada .Min .Y ;_eada .Min .Y =0;};if _eada .Max .X > wi {_eada .Max .X =wi ;};if _eada .Max .Y > hi {_eada .Max .Y =hi ; +};return _eada ,nil ;};const (ComponentConn Component =iota ;ComponentCharacters ;ComponentWords ;);func _gegg (_dadg *Bitmap ,_gagg ,_ebe ,_cgdb ,_eda int ,_fcdcd RasterOperator ,_aagca *Bitmap ,_abcb ,_cacd int )error {const _ggbfb ="\u0072a\u0073t\u0065\u0072\u004f\u0070\u0065\u0072\u0061\u0074\u0069\u006f\u006e"; +if _dadg ==nil {return _e .Error (_ggbfb ,"\u006e\u0069\u006c\u0020\u0027\u0064\u0065\u0073\u0074\u0027\u0020\u0042i\u0074\u006d\u0061\u0070");};if _fcdcd ==PixDst {return nil ;};switch _fcdcd {case PixClr ,PixSet ,PixNotDst :_edcf (_dadg ,_gagg ,_ebe ,_cgdb ,_eda ,_fcdcd ); +return nil ;};if _aagca ==nil {_ca .Log .Debug ("\u0052a\u0073\u0074e\u0072\u004f\u0070\u0065r\u0061\u0074\u0069o\u006e\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020bi\u0074\u006d\u0061p\u0020\u0069s\u0020\u006e\u006f\u0074\u0020\u0064e\u0066\u0069n\u0065\u0064"); +return _e .Error (_ggbfb ,"\u006e\u0069l\u0020\u0027\u0073r\u0063\u0027\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _gfcae :=_fgedg (_dadg ,_gagg ,_ebe ,_cgdb ,_eda ,_fcdcd ,_aagca ,_abcb ,_cacd );_gfcae !=nil {return _e .Wrap (_gfcae ,_ggbfb ,""); +};return nil ;};func (_bebe *Bitmap )String ()string {var _geac ="\u000a";for _feg :=0;_feg < _bebe .Height ;_feg ++{var _dfe string ;for _cae :=0;_cae < _bebe .Width ;_cae ++{_aec :=_bebe .GetPixel (_cae ,_feg );if _aec {_dfe +="\u0031";}else {_dfe +="\u0030"; +};};_geac +=_dfe +"\u000a";};return _geac ;};func (_dfbd *Bitmaps )GroupByWidth ()(*BitmapsArray ,error ){const _bfffa ="\u0047\u0072\u006fu\u0070\u0042\u0079\u0057\u0069\u0064\u0074\u0068";if len (_dfbd .Values )==0{return nil ,_e .Error (_bfffa ,"\u006eo\u0020v\u0061\u006c\u0075\u0065\u0073 \u0070\u0072o\u0076\u0069\u0064\u0065\u0064"); +};_fcdbc :=&BitmapsArray {};_dfbd .SortByWidth ();_aeec :=-1;_ddbc :=-1;for _gcagg :=0;_gcagg < len (_dfbd .Values );_gcagg ++{_bcbg :=_dfbd .Values [_gcagg ].Width ;if _bcbg > _aeec {_aeec =_bcbg ;_ddbc ++;_fcdbc .Values =append (_fcdbc .Values ,&Bitmaps {}); +};_fcdbc .Values [_ddbc ].AddBitmap (_dfbd .Values [_gcagg ]);};return _fcdbc ,nil ;};func (_bcaa *Bitmap )GetComponents (components Component ,maxWidth ,maxHeight int )(_gfdf *Bitmaps ,_cbfbg *Boxes ,_gfge error ){const _accb ="B\u0069t\u006d\u0061\u0070\u002e\u0047\u0065\u0074\u0043o\u006d\u0070\u006f\u006een\u0074\u0073"; +if _bcaa ==nil {return nil ,nil ,_e .Error (_accb ,"\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0042\u0069\u0074\u006da\u0070\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069n\u0065\u0064\u002e");};switch components {case ComponentConn ,ComponentCharacters ,ComponentWords :default:return nil ,nil ,_e .Error (_accb ,"\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065n\u0074s\u0020\u0070\u0061\u0072\u0061\u006d\u0065t\u0065\u0072"); +};if _bcaa .Zero (){_cbfbg =&Boxes {};_gfdf =&Bitmaps {};return _gfdf ,_cbfbg ,nil ;};switch components {case ComponentConn :_gfdf =&Bitmaps {};if _cbfbg ,_gfge =_bcaa .ConnComponents (_gfdf ,8);_gfge !=nil {return nil ,nil ,_e .Wrap (_gfge ,_accb ,"\u006e\u006f \u0070\u0072\u0065p\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067"); +};case ComponentCharacters :_fgaa ,_bgda :=MorphSequence (_bcaa ,MorphProcess {Operation :MopClosing ,Arguments :[]int {1,6}});if _bgda !=nil {return nil ,nil ,_e .Wrap (_bgda ,_accb ,"\u0063h\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067"); +};if _ca .Log .IsLogLevel (_ca .LogLevelTrace ){_ca .Log .Trace ("\u0043o\u006d\u0070o\u006e\u0065\u006e\u0074C\u0068\u0061\u0072a\u0063\u0074\u0065\u0072\u0073\u0020\u0062\u0069\u0074ma\u0070\u0020\u0061f\u0074\u0065r\u0020\u0063\u006c\u006f\u0073\u0069n\u0067\u003a \u0025\u0073",_fgaa .String ()); +};_dacd :=&Bitmaps {};_cbfbg ,_bgda =_fgaa .ConnComponents (_dacd ,8);if _bgda !=nil {return nil ,nil ,_e .Wrap (_bgda ,_accb ,"\u0063h\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067"); +};if _ca .Log .IsLogLevel (_ca .LogLevelTrace ){_ca .Log .Trace ("\u0043\u006f\u006d\u0070\u006f\u006ee\u006e\u0074\u0043\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0062\u0069\u0074\u006d\u0061\u0070\u0020a\u0066\u0074\u0065\u0072\u0020\u0063\u006f\u006e\u006e\u0065\u0063\u0074\u0069\u0076i\u0074y\u003a\u0020\u0025\u0073",_dacd .String ()); +};if _gfdf ,_bgda =_dacd .ClipToBitmap (_bcaa );_bgda !=nil {return nil ,nil ,_e .Wrap (_bgda ,_accb ,"\u0063h\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067");};case ComponentWords :_efgb :=1; +var _efbf *Bitmap ;switch {case _bcaa .XResolution <=200:_efbf =_bcaa ;case _bcaa .XResolution <=400:_efgb =2;_efbf ,_gfge =_fbb (_bcaa ,1,0,0,0);if _gfge !=nil {return nil ,nil ,_e .Wrap (_gfge ,_accb ,"w\u006f\u0072\u0064\u0020\u0070\u0072e\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0020\u002d \u0078\u0072\u0065s\u003c=\u0034\u0030\u0030"); +};default:_efgb =4;_efbf ,_gfge =_fbb (_bcaa ,1,1,0,0);if _gfge !=nil {return nil ,nil ,_e .Wrap (_gfge ,_accb ,"\u0077\u006f\u0072\u0064 \u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073 \u002d \u0078\u0072\u0065\u0073\u0020\u003e\u00204\u0030\u0030"); +};};_cea ,_ ,_bbc :=_afgc (_efbf );if _bbc !=nil {return nil ,nil ,_e .Wrap (_bbc ,_accb ,"\u0077o\u0072d\u0020\u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073");};_ddf ,_bbc :=_cbfg (_cea ,_efgb );if _bbc !=nil {return nil ,nil ,_e .Wrap (_bbc ,_accb ,"\u0077o\u0072d\u0020\u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073"); +};_gfca :=&Bitmaps {};if _cbfbg ,_bbc =_ddf .ConnComponents (_gfca ,4);_bbc !=nil {return nil ,nil ,_e .Wrap (_bbc ,_accb ,"\u0077\u006f\u0072\u0064\u0020\u0070r\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u002c\u0020\u0063\u006f\u006en\u0065\u0063\u0074\u0020\u0065\u0078\u0070a\u006e\u0064\u0065\u0064"); +};if _gfdf ,_bbc =_gfca .ClipToBitmap (_bcaa );_bbc !=nil {return nil ,nil ,_e .Wrap (_bbc ,_accb ,"\u0077o\u0072d\u0020\u0070\u0072\u0065\u0070\u0072\u006f\u0063\u0065\u0073\u0073");};};_gfdf ,_gfge =_gfdf .SelectBySize (maxWidth ,maxHeight ,LocSelectIfBoth ,SizeSelectIfLTE ); +if _gfge !=nil {return nil ,nil ,_e .Wrap (_gfge ,_accb ,"");};_cbfbg ,_gfge =_cbfbg .SelectBySize (maxWidth ,maxHeight ,LocSelectIfBoth ,SizeSelectIfLTE );if _gfge !=nil {return nil ,nil ,_e .Wrap (_gfge ,_accb ,"");};return _gfdf ,_cbfbg ,nil ;};func _bbfda (_fcfd *Bitmap ,_gfffa ,_aaab int ,_ddacd ,_gcfd int ,_fgag RasterOperator ){var (_bgbf bool ; +_dfbebe bool ;_cgfe int ;_eefb int ;_dbgd int ;_acgf int ;_ebabg bool ;_cbgg byte ;);_cfebe :=8-(_gfffa &7);_fbba :=_fbdg [_cfebe ];_gcaf :=_fcfd .RowStride *_aaab +(_gfffa >>3);if _ddacd < _cfebe {_bgbf =true ;_fbba &=_acbba [8-_cfebe +_ddacd ];};if !_bgbf {_cgfe =(_ddacd -_cfebe )>>3; +if _cgfe !=0{_dfbebe =true ;_eefb =_gcaf +1;};};_dbgd =(_gfffa +_ddacd )&7;if !(_bgbf ||_dbgd ==0){_ebabg =true ;_cbgg =_acbba [_dbgd ];_acgf =_gcaf +1+_cgfe ;};var _cdce ,_baff int ;switch _fgag {case PixClr :for _cdce =0;_cdce < _gcfd ;_cdce ++{_fcfd .Data [_gcaf ]=_bbgf (_fcfd .Data [_gcaf ],0x0,_fbba ); +_gcaf +=_fcfd .RowStride ;};if _dfbebe {for _cdce =0;_cdce < _gcfd ;_cdce ++{for _baff =0;_baff < _cgfe ;_baff ++{_fcfd .Data [_eefb +_baff ]=0x0;};_eefb +=_fcfd .RowStride ;};};if _ebabg {for _cdce =0;_cdce < _gcfd ;_cdce ++{_fcfd .Data [_acgf ]=_bbgf (_fcfd .Data [_acgf ],0x0,_cbgg ); +_acgf +=_fcfd .RowStride ;};};case PixSet :for _cdce =0;_cdce < _gcfd ;_cdce ++{_fcfd .Data [_gcaf ]=_bbgf (_fcfd .Data [_gcaf ],0xff,_fbba );_gcaf +=_fcfd .RowStride ;};if _dfbebe {for _cdce =0;_cdce < _gcfd ;_cdce ++{for _baff =0;_baff < _cgfe ;_baff ++{_fcfd .Data [_eefb +_baff ]=0xff; +};_eefb +=_fcfd .RowStride ;};};if _ebabg {for _cdce =0;_cdce < _gcfd ;_cdce ++{_fcfd .Data [_acgf ]=_bbgf (_fcfd .Data [_acgf ],0xff,_cbgg );_acgf +=_fcfd .RowStride ;};};case PixNotDst :for _cdce =0;_cdce < _gcfd ;_cdce ++{_fcfd .Data [_gcaf ]=_bbgf (_fcfd .Data [_gcaf ],^_fcfd .Data [_gcaf ],_fbba ); +_gcaf +=_fcfd .RowStride ;};if _dfbebe {for _cdce =0;_cdce < _gcfd ;_cdce ++{for _baff =0;_baff < _cgfe ;_baff ++{_fcfd .Data [_eefb +_baff ]=^(_fcfd .Data [_eefb +_baff ]);};_eefb +=_fcfd .RowStride ;};};if _ebabg {for _cdce =0;_cdce < _gcfd ;_cdce ++{_fcfd .Data [_acgf ]=_bbgf (_fcfd .Data [_acgf ],^_fcfd .Data [_acgf ],_cbgg ); +_acgf +=_fcfd .RowStride ;};};};};func _bac (_bdeb ,_bebb *Bitmap ,_fcgb ,_gdda ,_cfbd ,_facb ,_dac ,_gga ,_bba ,_bffc int ,_bbde CombinationOperator )error {var _dfeg int ;_cbfb :=func (){_dfeg ++;_cfbd +=_bebb .RowStride ;_facb +=_bdeb .RowStride ;_dac +=_bdeb .RowStride }; +for _dfeg =_fcgb ;_dfeg < _gdda ;_cbfb (){var _eeaf uint16 ;_gbgf :=_cfbd ;for _bgg :=_facb ;_bgg <=_dac ;_bgg ++{_debc ,_adab :=_bebb .GetByte (_gbgf );if _adab !=nil {return _adab ;};_afd ,_adab :=_bdeb .GetByte (_bgg );if _adab !=nil {return _adab ; +};_eeaf =(_eeaf |uint16 (_afd ))<>8);if _bgg ==_dac {_afd =_fcgbg (uint (_gga ),_afd );};if _adab =_bebb .SetByte (_gbgf ,_eeabd (_debc ,_afd ,_bbde ));_adab !=nil {return _adab ;};_gbgf ++;_eeaf <<=uint (_bba );};};return nil ; +};func _egdf ()[]int {_bcce :=make ([]int ,256);_bcce [0]=0;_bcce [1]=7;var _afad int ;for _afad =2;_afad < 4;_afad ++{_bcce [_afad ]=_bcce [_afad -2]+6;};for _afad =4;_afad < 8;_afad ++{_bcce [_afad ]=_bcce [_afad -4]+5;};for _afad =8;_afad < 16;_afad ++{_bcce [_afad ]=_bcce [_afad -8]+4; +};for _afad =16;_afad < 32;_afad ++{_bcce [_afad ]=_bcce [_afad -16]+3;};for _afad =32;_afad < 64;_afad ++{_bcce [_afad ]=_bcce [_afad -32]+2;};for _afad =64;_afad < 128;_afad ++{_bcce [_afad ]=_bcce [_afad -64]+1;};for _afad =128;_afad < 256;_afad ++{_bcce [_afad ]=_bcce [_afad -128]; +};return _bcce ;};func NewWithData (width ,height int ,data []byte )(*Bitmap ,error ){const _age ="N\u0065\u0077\u0057\u0069\u0074\u0068\u0044\u0061\u0074\u0061";_gdc :=_eced (width ,height );_gdc .Data =data ;if len (data )< height *_gdc .RowStride {return nil ,_e .Errorf (_age ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061\u0020l\u0065\u006e\u0067\u0074\u0068\u003a \u0025\u0064\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e\u003a\u0020\u0025\u0064",len (data ),height *_gdc .RowStride ); +};return _gdc ,nil ;};func _adgf (_dbf *Bitmap ,_gab ,_ge int )(*Bitmap ,error ){const _cg ="e\u0078\u0070\u0061\u006edB\u0069n\u0061\u0072\u0079\u0052\u0065p\u006c\u0069\u0063\u0061\u0074\u0065";if _dbf ==nil {return nil ,_e .Error (_cg ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +};if _gab <=0||_ge <=0{return nil ,_e .Error (_cg ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0063\u0061l\u0065\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u003a\u0020<\u003d\u0020\u0030");};if _gab ==_ge {if _gab ==1{_bef ,_dfa :=_cdcf (nil ,_dbf ); +if _dfa !=nil {return nil ,_e .Wrap (_dfa ,_cg ,"\u0078\u0046\u0061\u0063\u0074\u0020\u003d\u003d\u0020y\u0046\u0061\u0063\u0074");};return _bef ,nil ;};if _gab ==2||_gab ==4||_gab ==8{_ebb ,_bcb :=_eec (_dbf ,_gab );if _bcb !=nil {return nil ,_e .Wrap (_bcb ,_cg ,"\u0078\u0046a\u0063\u0074\u0020i\u006e\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d"); +};return _ebb ,nil ;};};_ed :=_gab *_dbf .Width ;_aaac :=_ge *_dbf .Height ;_cag :=New (_ed ,_aaac );_faa :=_cag .RowStride ;var (_ecg ,_cegg ,_cef ,_af ,_caag int ;_gb byte ;_fda error ;);for _cegg =0;_cegg < _dbf .Height ;_cegg ++{_ecg =_ge *_cegg *_faa ; +for _cef =0;_cef < _dbf .Width ;_cef ++{if _efa :=_dbf .GetPixel (_cef ,_cegg );_efa {_caag =_gab *_cef ;for _af =0;_af < _gab ;_af ++{_cag .setBit (_ecg *8+_caag +_af );};};};for _af =1;_af < _ge ;_af ++{_cd :=_ecg +_af *_faa ;for _gcd :=0;_gcd < _faa ; +_gcd ++{if _gb ,_fda =_cag .GetByte (_ecg +_gcd );_fda !=nil {return nil ,_e .Wrapf (_fda ,_cg ,"\u0072\u0065\u0070\u006cic\u0061\u0074\u0069\u006e\u0067\u0020\u006c\u0069\u006e\u0065\u003a\u0020\u0027\u0025d\u0027",_af );};if _fda =_cag .SetByte (_cd +_gcd ,_gb ); +_fda !=nil {return nil ,_e .Wrap (_fda ,_cg ,"\u0053\u0065\u0074\u0074in\u0067\u0020\u0062\u0079\u0074\u0065\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};};};};return _cag ,nil ;};func _fafg (_aeg ,_eeb *Bitmap ,_adbc ,_egce ,_bede uint ,_cdbg ,_eaaab int ,_gee bool ,_dfbe ,_aged int )error {for _gfcg :=_cdbg ; +_gfcg < _eaaab ;_gfcg ++{if _dfbe +1< len (_aeg .Data ){_aegb :=_gfcg +1==_eaaab ;_bfdc ,_ggbd :=_aeg .GetByte (_dfbe );if _ggbd !=nil {return _ggbd ;};_dfbe ++;_bfdc <<=_adbc ;_ffgb ,_ggbd :=_aeg .GetByte (_dfbe );if _ggbd !=nil {return _ggbd ;};_ffgb >>=_egce ; +_dcde :=_bfdc |_ffgb ;if _aegb &&!_gee {_dcde =_fcgbg (_bede ,_dcde );};_ggbd =_eeb .SetByte (_aged ,_dcde );if _ggbd !=nil {return _ggbd ;};_aged ++;if _aegb &&_gee {_fadb ,_fcc :=_aeg .GetByte (_dfbe );if _fcc !=nil {return _fcc ;};_fadb <<=_adbc ;_dcde =_fcgbg (_bede ,_fadb ); +if _fcc =_eeb .SetByte (_aged ,_dcde );_fcc !=nil {return _fcc ;};};continue ;};_bgdg ,_aefb :=_aeg .GetByte (_dfbe );if _aefb !=nil {_ca .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0068\u0065\u0020\u0076\u0061l\u0075\u0065\u0020\u0061\u0074\u003a\u0020%\u0064\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020%\u0073",_dfbe ,_aefb ); +return _aefb ;};_bgdg <<=_adbc ;_dfbe ++;_aefb =_eeb .SetByte (_aged ,_bgdg );if _aefb !=nil {return _aefb ;};_aged ++;};return nil ;};func _bbgf (_eadcg ,_defce ,_cgce byte )byte {return (_eadcg &^(_cgce ))|(_defce &_cgce )};func _fafaf (_dggge *Bitmap ,_bab *Bitmap ,_bcee int )(_gcce error ){const _ebgf ="\u0073\u0065\u0065\u0064\u0066\u0069\u006c\u006c\u0042\u0069\u006e\u0061r\u0079\u004c\u006f\u0077"; +_caaga :=_gcg (_dggge .Height ,_bab .Height );_fbdf :=_gcg (_dggge .RowStride ,_bab .RowStride );switch _bcee {case 4:_gcce =_bgge (_dggge ,_bab ,_caaga ,_fbdf );case 8:_gcce =_ggee (_dggge ,_bab ,_caaga ,_fbdf );default:return _e .Errorf (_ebgf ,"\u0063\u006f\u006e\u006e\u0065\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0034\u0020\u006fr\u0020\u0038\u0020\u002d\u0020i\u0073\u003a \u0027\u0025\u0064\u0027",_bcee ); +};if _gcce !=nil {return _e .Wrap (_gcce ,_ebgf ,"");};return nil ;};func (_fecbf *BitmapsArray )GetBitmaps (i int )(*Bitmaps ,error ){const _ebbfd ="\u0042\u0069\u0074ma\u0070\u0073\u0041\u0072\u0072\u0061\u0079\u002e\u0047\u0065\u0074\u0042\u0069\u0074\u006d\u0061\u0070\u0073"; +if _fecbf ==nil {return nil ,_e .Error (_ebbfd ,"p\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u006e\u0069\u006c\u0020\u0027\u0042\u0069\u0074m\u0061\u0070\u0073A\u0072r\u0061\u0079\u0027");};if i > len (_fecbf .Values )-1{return nil ,_e .Errorf (_ebbfd ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};return _fecbf .Values [i ],nil ;};func (_dfdg *BitmapsArray )AddBox (box *_aa .Rectangle ){_dfdg .Boxes =append (_dfdg .Boxes ,box )};func (_abgc *Bitmap )Equals (s *Bitmap )bool {if len (_abgc .Data )!=len (s .Data )||_abgc .Width !=s .Width ||_abgc .Height !=s .Height {return false ; +};for _efbg :=0;_efbg < _abgc .Height ;_efbg ++{_dfb :=_efbg *_abgc .RowStride ;for _agg :=0;_agg < _abgc .RowStride ;_agg ++{if _abgc .Data [_dfb +_agg ]!=s .Data [_dfb +_agg ]{return false ;};};};return true ;};func TstOSymbol (t *_f .T ,scale ...int )*Bitmap {_bgabb ,_ffgg :=NewWithData (4,5,[]byte {0xF0,0x90,0x90,0x90,0xF0}); +_d .NoError (t ,_ffgg );return TstGetScaledSymbol (t ,_bgabb ,scale ...);};func (_gdcee *ClassedPoints )SortByY (){_gdcee ._acab =_gdcee .ySortFunction ();_ff .Sort (_gdcee )};func (_begf *Bitmap )GetBitOffset (x int )int {return x &0x07};func (_caab Points )GetIntX (i int )(int ,error ){if i >=len (_caab ){return 0,_e .Errorf ("\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0065t\u0049\u006e\u0074\u0058","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};return int (_caab [i ].X ),nil ;};func (_ggfg *Bitmap )resizeImageData (_gfde *Bitmap )error {if _gfde ==nil {return _e .Error ("\u0072e\u0073i\u007a\u0065\u0049\u006d\u0061\u0067\u0065\u0044\u0061\u0074\u0061","\u0073r\u0063 \u0069\u0073\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +};if _ggfg .SizesEqual (_gfde ){return nil ;};_ggfg .Data =make ([]byte ,len (_gfde .Data ));_ggfg .Width =_gfde .Width ;_ggfg .Height =_gfde .Height ;_ggfg .RowStride =_gfde .RowStride ;return nil ;};func TstImageBitmapData ()[]byte {return _gabd .Data }; +func RankHausTest (p1 ,p2 ,p3 ,p4 *Bitmap ,delX ,delY float32 ,maxDiffW ,maxDiffH ,area1 ,area3 int ,rank float32 ,tab8 []int )(_dgdc bool ,_ecdg error ){const _bcea ="\u0052\u0061\u006ek\u0048\u0061\u0075\u0073\u0054\u0065\u0073\u0074";_aega ,_dfbf :=p1 .Width ,p1 .Height ; +_geff ,_cefg :=p3 .Width ,p3 .Height ;if _ac .Abs (_aega -_geff )> maxDiffW {return false ,nil ;};if _ac .Abs (_dfbf -_cefg )> maxDiffH {return false ,nil ;};_fegc :=int (float32 (area1 )*(1.0-rank )+0.5);_cafd :=int (float32 (area3 )*(1.0-rank )+0.5); +var _ddfc ,_ddce int ;if delX >=0{_ddfc =int (delX +0.5);}else {_ddfc =int (delX -0.5);};if delY >=0{_ddce =int (delY +0.5);}else {_ddce =int (delY -0.5);};_egaa :=p1 .CreateTemplate ();if _ecdg =_egaa .RasterOperation (0,0,_aega ,_dfbf ,PixSrc ,p1 ,0,0); +_ecdg !=nil {return false ,_e .Wrap (_ecdg ,_bcea ,"p\u0031\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074");};if _ecdg =_egaa .RasterOperation (_ddfc ,_ddce ,_aega ,_dfbf ,PixNotSrcAndDst ,p4 ,0,0);_ecdg !=nil {return false ,_e .Wrap (_ecdg ,_bcea ,"\u0074 \u0026\u0020\u0021\u0070\u0034"); +};_dgdc ,_ecdg =_egaa .ThresholdPixelSum (_fegc ,tab8 );if _ecdg !=nil {return false ,_e .Wrap (_ecdg ,_bcea ,"\u0074\u002d\u003e\u0074\u0068\u0072\u0065\u0073\u0068\u0031");};if _dgdc {return false ,nil ;};if _ecdg =_egaa .RasterOperation (_ddfc ,_ddce ,_geff ,_cefg ,PixSrc ,p3 ,0,0); +_ecdg !=nil {return false ,_e .Wrap (_ecdg ,_bcea ,"p\u0033\u0020\u002d\u0053\u0052\u0043\u002d\u003e\u0020\u0074");};if _ecdg =_egaa .RasterOperation (0,0,_geff ,_cefg ,PixNotSrcAndDst ,p2 ,0,0);_ecdg !=nil {return false ,_e .Wrap (_ecdg ,_bcea ,"\u0074 \u0026\u0020\u0021\u0070\u0032"); +};_dgdc ,_ecdg =_egaa .ThresholdPixelSum (_cafd ,tab8 );if _ecdg !=nil {return false ,_e .Wrap (_ecdg ,_bcea ,"\u0074\u002d\u003e\u0074\u0068\u0072\u0065\u0073\u0068\u0033");};return !_dgdc ,nil ;};func _fbb (_edc *Bitmap ,_dbb ...int )(_afc *Bitmap ,_fbce error ){const _ecgg ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0043\u0061\u0073\u0063\u0061\u0064\u0065"; +if _edc ==nil {return nil ,_e .Error (_ecgg ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};if len (_dbb )==0||len (_dbb )> 4{return nil ,_e .Error (_ecgg ,"t\u0068\u0065\u0072\u0065\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0061\u0074\u0020\u006cea\u0073\u0074\u0020\u006fn\u0065\u0020\u0061\u006e\u0064\u0020\u0061\u0074\u0020mo\u0073\u0074 \u0034\u0020\u006c\u0065\u0076\u0065\u006c\u0073"); +};if _dbb [0]<=0{_ca .Log .Debug ("\u006c\u0065\u0076\u0065\u006c\u0031\u0020\u003c\u003d\u0020\u0030 \u002d\u0020\u006e\u006f\u0020\u0072\u0065\u0064\u0075\u0063t\u0069\u006f\u006e");_afc ,_fbce =_cdcf (nil ,_edc );if _fbce !=nil {return nil ,_e .Wrap (_fbce ,_ecgg ,"l\u0065\u0076\u0065\u006c\u0031\u0020\u003c\u003d\u0020\u0030"); +};return _afc ,nil ;};_dd :=_bcc ();_afc =_edc ;for _cce ,_fff :=range _dbb {if _fff <=0{break ;};_afc ,_fbce =_dcdc (_afc ,_fff ,_dd );if _fbce !=nil {return nil ,_e .Wrapf (_fbce ,_ecgg ,"\u006c\u0065\u0076\u0065\u006c\u0025\u0064\u0020\u0072\u0065\u0064\u0075c\u0074\u0069\u006f\u006e",_cce ); +};};return _afc ,nil ;};type CombinationOperator int ;func _afgc (_cafb *Bitmap )(_eddda *Bitmap ,_bfaf int ,_daee error ){const _cecc ="\u0042i\u0074\u006d\u0061\u0070.\u0077\u006f\u0072\u0064\u004da\u0073k\u0042y\u0044\u0069\u006c\u0061\u0074\u0069\u006fn"; +if _cafb ==nil {return nil ,0,_e .Errorf (_cecc ,"\u0027\u0073\u0027\u0020bi\u0074\u006d\u0061\u0070\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};var _aea ,_abdf *Bitmap ;if _aea ,_daee =_cdcf (nil ,_cafb );_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"\u0063\u006f\u0070\u0079\u0020\u0027\u0073\u0027"); +};var (_gfce [13]int ;_fgfe ,_bffb int ;);_cbeec :=12;_ggbf :=_ac .NewNumSlice (_cbeec +1);_gbfd :=_ac .NewNumSlice (_cbeec +1);var _bfcd *Boxes ;for _gacc :=0;_gacc <=_cbeec ;_gacc ++{if _gacc ==0{if _abdf ,_daee =_cdcf (nil ,_aea );_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"\u0066i\u0072\u0073\u0074\u0020\u0062\u006d2"); +};}else {if _abdf ,_daee =_ecbgb (_aea ,MorphProcess {Operation :MopDilation ,Arguments :[]int {2,1}});_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"\u0064\u0069\u006ca\u0074\u0069\u006f\u006e\u0020\u0062\u006d\u0032");};};if _bfcd ,_daee =_abdf .connComponentsBB (4); +_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"");};_gfce [_gacc ]=len (*_bfcd );_ggbf .AddInt (_gfce [_gacc ]);switch _gacc {case 0:_fgfe =_gfce [0];default:_bffb =_gfce [_gacc -1]-_gfce [_gacc ];_gbfd .AddInt (_bffb );};_aea =_abdf ;};_fdb :=true ; +_egdg :=2;var _ebbc ,_dgda int ;for _aca :=1;_aca < len (*_gbfd );_aca ++{if _ebbc ,_daee =_ggbf .GetInt (_aca );_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"\u0043\u0068\u0065\u0063ki\u006e\u0067\u0020\u0062\u0065\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0069o\u006e"); +};if _fdb &&_ebbc < int (0.3*float32 (_fgfe )){_egdg =_aca +1;_fdb =false ;};if _bffb ,_daee =_gbfd .GetInt (_aca );_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006ea\u0044\u0069\u0066\u0066");}; +if _bffb > _dgda {_dgda =_bffb ;};};_aaacd :=_cafb .XResolution ;if _aaacd ==0{_aaacd =150;};if _aaacd > 110{_egdg ++;};if _egdg < 2{_ca .Log .Trace ("J\u0042\u0049\u0047\u0032\u0020\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u0042\u0065\u0073\u0074 \u0074\u006f\u0020\u006d\u0069\u006e\u0069\u006d\u0075\u006d a\u006c\u006c\u006fw\u0061b\u006c\u0065"); +_egdg =2;};_bfaf =_egdg +1;if _eddda ,_daee =_cdfd (nil ,_cafb ,_egdg +1,1);_daee !=nil {return nil ,0,_e .Wrap (_daee ,_cecc ,"\u0067\u0065\u0074\u0074in\u0067\u0020\u006d\u0061\u0073\u006b\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};return _eddda ,_bfaf ,nil ; +};func NewClassedPoints (points *Points ,classes _ac .IntSlice )(*ClassedPoints ,error ){const _cbeed ="\u004e\u0065w\u0043\u006c\u0061s\u0073\u0065\u0064\u0050\u006f\u0069\u006e\u0074\u0073";if points ==nil {return nil ,_e .Error (_cbeed ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0070\u006f\u0069\u006e\u0074\u0073"); +};if classes ==nil {return nil ,_e .Error (_cbeed ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0063\u006c\u0061ss\u0065\u0073");};_fece :=&ClassedPoints {Points :points ,IntSlice :classes };if _deecg :=_fece .validateIntSlice ();_deecg !=nil {return nil ,_e .Wrap (_deecg ,_cbeed ,""); +};return _fece ,nil ;};func _gedd (_daea ,_bedbd *Bitmap ,_gfbgg *Selection )(*Bitmap ,error ){const _egbe ="c\u006c\u006f\u0073\u0065\u0042\u0069\u0074\u006d\u0061\u0070";var _gddd error ;if _daea ,_gddd =_gebfg (_daea ,_bedbd ,_gfbgg );_gddd !=nil {return nil ,_gddd ; +};_cgaa ,_gddd :=_caagg (nil ,_bedbd ,_gfbgg );if _gddd !=nil {return nil ,_e .Wrap (_gddd ,_egbe ,"");};if _ ,_gddd =_cfgc (_daea ,_cgaa ,_gfbgg );_gddd !=nil {return nil ,_e .Wrap (_gddd ,_egbe ,"");};return _daea ,nil ;};func _dfbeb ()[]int {_gdab :=make ([]int ,256); +for _eebg :=0;_eebg <=0xff;_eebg ++{_bge :=byte (_eebg );_gdab [_bge ]=int (_bge &0x1)+(int (_bge >>1)&0x1)+(int (_bge >>2)&0x1)+(int (_bge >>3)&0x1)+(int (_bge >>4)&0x1)+(int (_bge >>5)&0x1)+(int (_bge >>6)&0x1)+(int (_bge >>7)&0x1);};return _gdab ;}; +func (_adgg *Bitmap )GetUnpaddedData ()([]byte ,error ){_dgg :=uint (_adgg .Width &0x07);if _dgg ==0{return _adgg .Data ,nil ;};_cde :=_adgg .Width *_adgg .Height ;if _cde %8!=0{_cde >>=3;_cde ++;}else {_cde >>=3;};_bdf :=make ([]byte ,_cde );_fbeb :=_ce .NewWriterMSB (_bdf ); +const _afe ="\u0047e\u0074U\u006e\u0070\u0061\u0064\u0064\u0065\u0064\u0044\u0061\u0074\u0061";for _dfd :=0;_dfd < _adgg .Height ;_dfd ++{for _ggdd :=0;_ggdd < _adgg .RowStride ;_ggdd ++{_egc :=_adgg .Data [_dfd *_adgg .RowStride +_ggdd ];if _ggdd !=_adgg .RowStride -1{_fgdg :=_fbeb .WriteByte (_egc ); +if _fgdg !=nil {return nil ,_e .Wrap (_fgdg ,_afe ,"");};continue ;};for _aed :=uint (0);_aed < _dgg ;_aed ++{_bce :=_fbeb .WriteBit (int (_egc >>(7-_aed )&0x01));if _bce !=nil {return nil ,_e .Wrap (_bce ,_afe ,"");};};};};return _bdf ,nil ;};type SizeComparison int ; +func _fcd (_cdc ,_gfd *Bitmap ,_fbd int ,_cfd []byte ,_aafg int )(_ebc error ){const _cgg ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0034";var (_fea ,_dgf ,_adea ,_cfg ,_fcf ,_cegb ,_gcc ,_badc int ; +_ggg ,_cgdc uint32 ;_bcbb ,_ecd byte ;_ddd uint16 ;);_bd :=make ([]byte ,4);_bcd :=make ([]byte ,4);for _adea =0;_adea < _cdc .Height -1;_adea ,_cfg =_adea +2,_cfg +1{_fea =_adea *_cdc .RowStride ;_dgf =_cfg *_gfd .RowStride ;for _fcf ,_cegb =0,0;_fcf < _aafg ; +_fcf ,_cegb =_fcf +4,_cegb +1{for _gcc =0;_gcc < 4;_gcc ++{_badc =_fea +_fcf +_gcc ;if _badc <=len (_cdc .Data )-1&&_badc < _fea +_cdc .RowStride {_bd [_gcc ]=_cdc .Data [_badc ];}else {_bd [_gcc ]=0x00;};_badc =_fea +_cdc .RowStride +_fcf +_gcc ;if _badc <=len (_cdc .Data )-1&&_badc < _fea +(2*_cdc .RowStride ){_bcd [_gcc ]=_cdc .Data [_badc ]; +}else {_bcd [_gcc ]=0x00;};};_ggg =_db .BigEndian .Uint32 (_bd );_cgdc =_db .BigEndian .Uint32 (_bcd );_cgdc &=_ggg ;_cgdc &=_cgdc <<1;_cgdc &=0xaaaaaaaa;_ggg =_cgdc |(_cgdc <<7);_bcbb =byte (_ggg >>24);_ecd =byte ((_ggg >>8)&0xff);_badc =_dgf +_cegb ; +if _badc +1==len (_gfd .Data )-1||_badc +1>=_dgf +_gfd .RowStride {_gfd .Data [_badc ]=_cfd [_bcbb ];if _ebc =_gfd .SetByte (_badc ,_cfd [_bcbb ]);_ebc !=nil {return _e .Wrapf (_ebc ,_cgg ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_badc );};}else {_ddd =(uint16 (_cfd [_bcbb ])<<8)|uint16 (_cfd [_ecd ]); +if _ebc =_gfd .setTwoBytes (_badc ,_ddd );_ebc !=nil {return _e .Wrapf (_ebc ,_cgg ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_badc ); +};_cegb ++;};};};return nil ;};func (_bbce *Bitmaps )AddBitmap (bm *Bitmap ){_bbce .Values =append (_bbce .Values ,bm )};type Points []Point ;func (_dcce *ClassedPoints )YAtIndex (i int )float32 {return (*_dcce .Points )[_dcce .IntSlice [i ]].Y };func (_dfgd *Bitmap )addBorderGeneral (_bafc ,_cdea ,_faf ,_bfc int ,_fbeg int )(*Bitmap ,error ){const _bcg ="\u0061\u0064d\u0042\u006f\u0072d\u0065\u0072\u0047\u0065\u006e\u0065\u0072\u0061\u006c"; +if _bafc < 0||_cdea < 0||_faf < 0||_bfc < 0{return nil ,_e .Error (_bcg ,"n\u0065\u0067\u0061\u0074iv\u0065 \u0062\u006f\u0072\u0064\u0065r\u0020\u0061\u0064\u0064\u0065\u0064");};_feb ,_gcb :=_dfgd .Width ,_dfgd .Height ;_agec :=_feb +_bafc +_cdea ;_cfe :=_gcb +_faf +_bfc ; +_bfbb :=New (_agec ,_cfe );_bfbb .Color =_dfgd .Color ;_dbd :=PixClr ;if _fbeg > 0{_dbd =PixSet ;};_cab :=_bfbb .RasterOperation (0,0,_bafc ,_cfe ,_dbd ,nil ,0,0);if _cab !=nil {return nil ,_e .Wrap (_cab ,_bcg ,"\u006c\u0065\u0066\u0074");};_cab =_bfbb .RasterOperation (_agec -_cdea ,0,_cdea ,_cfe ,_dbd ,nil ,0,0); +if _cab !=nil {return nil ,_e .Wrap (_cab ,_bcg ,"\u0072\u0069\u0067h\u0074");};_cab =_bfbb .RasterOperation (0,0,_agec ,_faf ,_dbd ,nil ,0,0);if _cab !=nil {return nil ,_e .Wrap (_cab ,_bcg ,"\u0074\u006f\u0070");};_cab =_bfbb .RasterOperation (0,_cfe -_bfc ,_agec ,_bfc ,_dbd ,nil ,0,0); +if _cab !=nil {return nil ,_e .Wrap (_cab ,_bcg ,"\u0062\u006f\u0074\u0074\u006f\u006d");};_cab =_bfbb .RasterOperation (_bafc ,_faf ,_feb ,_gcb ,PixSrc ,_dfgd ,0,0);if _cab !=nil {return nil ,_e .Wrap (_cab ,_bcg ,"\u0063\u006f\u0070\u0079");};return _bfbb ,nil ; +};func _gdbca (_fgdga *Bitmap ,_bdcc ,_dacc ,_egge ,_bbfc int ,_aeag RasterOperator ,_bdee *Bitmap ,_gacb ,_bcdb int )error {var (_agac bool ;_dcaec bool ;_fbfedd byte ;_deea int ;_fcggb int ;_fdad int ;_edaa int ;_ceede bool ;_ccd int ;_dcbe int ;_afece int ; +_bbbf bool ;_adedb byte ;_bbcg int ;_edba int ;_bbddd int ;_fgab byte ;_cafab int ;_bcfba int ;_deba uint ;_agbca uint ;_gcff byte ;_adfd shift ;_fafd bool ;_cdgf bool ;_fbde ,_fcbaf int ;);if _gacb &7!=0{_bcfba =8-(_gacb &7);};if _bdcc &7!=0{_fcggb =8-(_bdcc &7); +};if _bcfba ==0&&_fcggb ==0{_gcff =_fbdg [0];}else {if _fcggb > _bcfba {_deba =uint (_fcggb -_bcfba );}else {_deba =uint (8-(_bcfba -_fcggb ));};_agbca =8-_deba ;_gcff =_fbdg [_deba ];};if (_bdcc &7)!=0{_agac =true ;_deea =8-(_bdcc &7);_fbfedd =_fbdg [_deea ]; +_fdad =_fgdga .RowStride *_dacc +(_bdcc >>3);_edaa =_bdee .RowStride *_bcdb +(_gacb >>3);_cafab =8-(_gacb &7);if _deea > _cafab {_adfd =_dgfe ;if _egge >=_bcfba {_fafd =true ;};}else {_adfd =_ecde ;};};if _egge < _deea {_dcaec =true ;_fbfedd &=_acbba [8-_deea +_egge ]; +};if !_dcaec {_ccd =(_egge -_deea )>>3;if _ccd !=0{_ceede =true ;_dcbe =_fgdga .RowStride *_dacc +((_bdcc +_fcggb )>>3);_afece =_bdee .RowStride *_bcdb +((_gacb +_fcggb )>>3);};};_bbcg =(_bdcc +_egge )&7;if !(_dcaec ||_bbcg ==0){_bbbf =true ;_adedb =_acbba [_bbcg ]; +_edba =_fgdga .RowStride *_dacc +((_bdcc +_fcggb )>>3)+_ccd ;_bbddd =_bdee .RowStride *_bcdb +((_gacb +_fcggb )>>3)+_ccd ;if _bbcg > int (_agbca ){_cdgf =true ;};};switch _aeag {case PixSrc :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ; +if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],_fgab ,_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0; +_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]=_fgab ;};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ; +};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],_fgab ,_adedb );_edba +=_fgdga .RowStride ; +_bbddd +=_bdee .RowStride ;};};case PixNotSrc :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ; +};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],^_fgab ,_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff ); +_fgdga .Data [_dcbe +_fcbaf ]=^_fgab ;};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff ); +};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],^_fgab ,_adedb );_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixSrcOrDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff ); +};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],_fgab |_fgdga .Data [_fdad ],_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0; +_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]|=_fgab ;};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ; +_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],_fgab |_fgdga .Data [_edba ],_adedb );_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ; +};};case PixSrcAndDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],_fgab &_fgdga .Data [_fdad ],_fbfedd ); +_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]&=_fgab ; +};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],_fgab &_fgdga .Data [_edba ],_adedb ); +_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixSrcXorDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ; +};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],_fgab ^_fgdga .Data [_fdad ],_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff ); +_fgdga .Data [_dcbe +_fcbaf ]^=_fgab ;};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff ); +};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],_fgab ^_fgdga .Data [_edba ],_adedb );_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixNotSrcOrDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ; +if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],^_fgab |_fgdga .Data [_fdad ],_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ; +};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]|=^_fgab ;};_dcbe +=_fgdga .RowStride ; +_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],^_fgab |_fgdga .Data [_edba ],_adedb ); +_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixNotSrcAndDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff ); +};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],^_fgab &_fgdga .Data [_fdad ],_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0; +_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]&=^_fgab ;};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ; +_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],^_fgab &_fgdga .Data [_edba ],_adedb );_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ; +};};case PixSrcOrNotDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],_fgab |^_fgdga .Data [_fdad ],_fbfedd ); +_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]=_fgab |^_fgdga .Data [_dcbe +_fcbaf ]; +};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],_fgab |^_fgdga .Data [_edba ],_adedb ); +_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixSrcAndNotDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff ); +};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],_fgab &^_fgdga .Data [_fdad ],_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0; +_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]=_fgab &^_fgdga .Data [_dcbe +_fcbaf ];};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;}; +};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],_fgab &^_fgdga .Data [_edba ],_adedb );_edba +=_fgdga .RowStride ; +_bbddd +=_bdee .RowStride ;};};case PixNotPixSrcOrDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ; +};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],^(_fgab |_fgdga .Data [_fdad ]),_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff ); +_fgdga .Data [_dcbe +_fcbaf ]=^(_fgab |_fgdga .Data [_dcbe +_fcbaf ]);};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff ); +};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],^(_fgab |_fgdga .Data [_edba ]),_adedb );_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixNotPixSrcAndDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ; +if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff );};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],^(_fgab &_fgdga .Data [_fdad ]),_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ; +};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0;_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]=^(_fgab &_fgdga .Data [_dcbe +_fcbaf ]); +};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ;};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],^(_fgab &_fgdga .Data [_edba ]),_adedb ); +_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};case PixNotPixSrcXorDst :if _agac {for _fbde =0;_fbde < _bbfc ;_fbde ++{if _adfd ==_dgfe {_fgab =_bdee .Data [_edaa ]<<_deba ;if _fafd {_fgab =_bbgf (_fgab ,_bdee .Data [_edaa +1]>>_agbca ,_gcff ); +};}else {_fgab =_bdee .Data [_edaa ]>>_agbca ;};_fgdga .Data [_fdad ]=_bbgf (_fgdga .Data [_fdad ],^(_fgab ^_fgdga .Data [_fdad ]),_fbfedd );_fdad +=_fgdga .RowStride ;_edaa +=_bdee .RowStride ;};};if _ceede {for _fbde =0;_fbde < _bbfc ;_fbde ++{for _fcbaf =0; +_fcbaf < _ccd ;_fcbaf ++{_fgab =_bbgf (_bdee .Data [_afece +_fcbaf ]<<_deba ,_bdee .Data [_afece +_fcbaf +1]>>_agbca ,_gcff );_fgdga .Data [_dcbe +_fcbaf ]=^(_fgab ^_fgdga .Data [_dcbe +_fcbaf ]);};_dcbe +=_fgdga .RowStride ;_afece +=_bdee .RowStride ; +};};if _bbbf {for _fbde =0;_fbde < _bbfc ;_fbde ++{_fgab =_bdee .Data [_bbddd ]<<_deba ;if _cdgf {_fgab =_bbgf (_fgab ,_bdee .Data [_bbddd +1]>>_agbca ,_gcff );};_fgdga .Data [_edba ]=_bbgf (_fgdga .Data [_edba ],^(_fgab ^_fgdga .Data [_edba ]),_adedb ); +_edba +=_fgdga .RowStride ;_bbddd +=_bdee .RowStride ;};};default:_ca .Log .Debug ("\u004f\u0070e\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0070\u0065\u0072\u006d\u0069tt\u0065\u0064",_aeag ); +return _e .Error ("\u0072a\u0073t\u0065\u0072\u004f\u0070\u0047e\u006e\u0065r\u0061\u006c\u004c\u006f\u0077","\u0072\u0061\u0073\u0074\u0065\u0072\u0020\u006f\u0070\u0065r\u0061\u0074\u0069\u006f\u006e\u0020\u006eo\u0074\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064"); +};return nil ;};func (_bde *Bitmap )setEightBytes (_ffgcf int ,_agff uint64 )error {_gag :=_bde .RowStride -(_ffgcf %_bde .RowStride );if _bde .RowStride !=_bde .Width >>3{_gag --;};if _gag >=8{return _bde .setEightFullBytes (_ffgcf ,_agff );};return _bde .setEightPartlyBytes (_ffgcf ,_gag ,_agff ); +};func (_dbcg *Bitmap )setPadBits (_dccf int ){_cbee :=8-_dbcg .Width %8;if _cbee ==8{return ;};_faab :=_dbcg .Width /8;_cbeb :=_fbdg [_cbee ];if _dccf ==0{_cbeb ^=_cbeb ;};var _gdca int ;for _bced :=0;_bced < _dbcg .Height ;_bced ++{_gdca =_bced *_dbcg .RowStride +_faab ; +if _dccf ==0{_dbcg .Data [_gdca ]&=_cbeb ;}else {_dbcg .Data [_gdca ]|=_cbeb ;};};};func (_bgadb *Bitmap )centroid (_dge ,_addb []int )(Point ,error ){_aaggeb :=Point {};_bgadb .setPadBits (0);if len (_dge )==0{_dge =_egdf ();};if len (_addb )==0{_addb =_dfbeb (); +};var _bcca ,_gecb ,_fgdfc ,_aaec ,_ggec ,_fdg int ;var _fccg byte ;for _ggec =0;_ggec < _bgadb .Height ;_ggec ++{_cecg :=_bgadb .RowStride *_ggec ;_aaec =0;for _fdg =0;_fdg < _bgadb .RowStride ;_fdg ++{_fccg =_bgadb .Data [_cecg +_fdg ];if _fccg !=0{_aaec +=_addb [_fccg ]; +_bcca +=_dge [_fccg ]+_fdg *8*_addb [_fccg ];};};_fgdfc +=_aaec ;_gecb +=_aaec *_ggec ;};if _fgdfc !=0{_aaggeb .X =float32 (_bcca )/float32 (_fgdfc );_aaggeb .Y =float32 (_gecb )/float32 (_fgdfc );};return _aaggeb ,nil ;};func (_dgde *byHeight )Swap (i ,j int ){_dgde .Values [i ],_dgde .Values [j ]=_dgde .Values [j ],_dgde .Values [i ]; +if _dgde .Boxes !=nil {_dgde .Boxes [i ],_dgde .Boxes [j ]=_dgde .Boxes [j ],_dgde .Boxes [i ];};};func (_cafc *Bitmap )clearAll ()error {return _cafc .RasterOperation (0,0,_cafc .Width ,_cafc .Height ,PixClr ,nil ,0,0);};func (_gfab *ClassedPoints )xSortFunction ()func (_fgcd int ,_eegge int )bool {return func (_ebbcg ,_bcgc int )bool {return _gfab .XAtIndex (_ebbcg )< _gfab .XAtIndex (_bcgc )}; +};func (_bedcd *Bitmap )setFourBytes (_acfa int ,_ecbf uint32 )error {if _acfa +3> len (_bedcd .Data )-1{return _e .Errorf ("\u0073\u0065\u0074F\u006f\u0075\u0072\u0042\u0079\u0074\u0065\u0073","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",_acfa ); +};_bedcd .Data [_acfa ]=byte ((_ecbf &0xff000000)>>24);_bedcd .Data [_acfa +1]=byte ((_ecbf &0xff0000)>>16);_bedcd .Data [_acfa +2]=byte ((_ecbf &0xff00)>>8);_bedcd .Data [_acfa +3]=byte (_ecbf &0xff);return nil ;};func TstISymbol (t *_f .T ,scale ...int )*Bitmap {_aeef ,_gaab :=NewWithData (1,5,[]byte {0x80,0x80,0x80,0x80,0x80}); +_d .NoError (t ,_gaab );return TstGetScaledSymbol (t ,_aeef ,scale ...);};func (_dgdb MorphProcess )getWidthHeight ()(_fdag ,_gfe int ){return _dgdb .Arguments [0],_dgdb .Arguments [1];};const (MopDilation MorphOperation =iota ;MopErosion ;MopOpening ; +MopClosing ;MopRankBinaryReduction ;MopReplicativeBinaryExpansion ;MopAddBorder ;);func (_ged *Boxes )makeSizeIndicator (_ddge ,_bafb int ,_fada LocationFilter ,_gfdg SizeComparison )*_ac .NumSlice {_bgad :=&_ac .NumSlice {};var _fgef ,_agbb ,_ccca int ; +for _ ,_cdeb :=range *_ged {_fgef =0;_agbb ,_ccca =_cdeb .Dx (),_cdeb .Dy ();switch _fada {case LocSelectWidth :if (_gfdg ==SizeSelectIfLT &&_agbb < _ddge )||(_gfdg ==SizeSelectIfGT &&_agbb > _ddge )||(_gfdg ==SizeSelectIfLTE &&_agbb <=_ddge )||(_gfdg ==SizeSelectIfGTE &&_agbb >=_ddge ){_fgef =1; +};case LocSelectHeight :if (_gfdg ==SizeSelectIfLT &&_ccca < _bafb )||(_gfdg ==SizeSelectIfGT &&_ccca > _bafb )||(_gfdg ==SizeSelectIfLTE &&_ccca <=_bafb )||(_gfdg ==SizeSelectIfGTE &&_ccca >=_bafb ){_fgef =1;};case LocSelectIfEither :if (_gfdg ==SizeSelectIfLT &&(_ccca < _bafb ||_agbb < _ddge ))||(_gfdg ==SizeSelectIfGT &&(_ccca > _bafb ||_agbb > _ddge ))||(_gfdg ==SizeSelectIfLTE &&(_ccca <=_bafb ||_agbb <=_ddge ))||(_gfdg ==SizeSelectIfGTE &&(_ccca >=_bafb ||_agbb >=_ddge )){_fgef =1; +};case LocSelectIfBoth :if (_gfdg ==SizeSelectIfLT &&(_ccca < _bafb &&_agbb < _ddge ))||(_gfdg ==SizeSelectIfGT &&(_ccca > _bafb &&_agbb > _ddge ))||(_gfdg ==SizeSelectIfLTE &&(_ccca <=_bafb &&_agbb <=_ddge ))||(_gfdg ==SizeSelectIfGTE &&(_ccca >=_bafb &&_agbb >=_ddge )){_fgef =1; +};};_bgad .AddInt (_fgef );};return _bgad ;};func TstAddSymbol (t *_f .T ,bms *Bitmaps ,sym *Bitmap ,x *int ,y int ,space int ){bms .AddBitmap (sym );_aegg :=_aa .Rect (*x ,y ,*x +sym .Width ,y +sym .Height );bms .AddBox (&_aegg );*x +=sym .Width +space ; +};var _fdde =[5]int {1,2,3,0,4};func (_gaff *Boxes )Add (box *_aa .Rectangle )error {if _gaff ==nil {return _e .Error ("\u0042o\u0078\u0065\u0073\u002e\u0041\u0064d","\u0027\u0042\u006f\u0078es\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};*_gaff =append (*_gaff ,box );return nil ;};func (_gbgfb *Bitmaps )WidthSorter ()func (_gcbbd ,_eadb int )bool {return func (_agfb ,_cbad int )bool {return _gbgfb .Values [_agfb ].Width < _gbgfb .Values [_cbad ].Width };};func _dgdg (_fdcf ,_aeae *Bitmap ,_gdbb ,_agee int )(*Bitmap ,error ){const _eedb ="d\u0069\u006c\u0061\u0074\u0065\u0042\u0072\u0069\u0063\u006b"; +if _aeae ==nil {_ca .Log .Debug ("\u0064\u0069\u006c\u0061\u0074\u0065\u0042\u0072\u0069\u0063k\u0020\u0073\u006f\u0075\u0072\u0063\u0065 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");return nil ,_e .Error (_eedb ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d"); +};if _gdbb < 1||_agee < 1{return nil ,_e .Error (_eedb ,"\u0068\u0053\u007a\u0069\u0065 \u0061\u006e\u0064\u0020\u0076\u0053\u0069\u007a\u0065\u0020\u0061\u0072\u0065 \u006e\u006f\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0031"); +};if _gdbb ==1&&_agee ==1{_cdebf ,_ebbbf :=_cdcf (_fdcf ,_aeae );if _ebbbf !=nil {return nil ,_e .Wrap (_ebbbf ,_eedb ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u0026\u0026 \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};return _cdebf ,nil ;};if _gdbb ==1||_agee ==1{_cefgg :=SelCreateBrick (_agee ,_gdbb ,_agee /2,_gdbb /2,SelHit );_cfeb ,_bacc :=_caagg (_fdcf ,_aeae ,_cefgg );if _bacc !=nil {return nil ,_e .Wrap (_bacc ,_eedb ,"\u0068s\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};return _cfeb ,nil ;};_ecbg :=SelCreateBrick (1,_gdbb ,0,_gdbb /2,SelHit );_dbef :=SelCreateBrick (_agee ,1,_agee /2,0,SelHit );_gadb ,_bcaaf :=_caagg (nil ,_aeae ,_ecbg );if _bcaaf !=nil {return nil ,_e .Wrap (_bcaaf ,_eedb ,"\u0031\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); +};_fdcf ,_bcaaf =_caagg (_fdcf ,_gadb ,_dbef );if _bcaaf !=nil {return nil ,_e .Wrap (_bcaaf ,_eedb ,"\u0032\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065");};return _fdcf ,nil ;};func (_agebd *Selection )findMaxTranslations ()(_efbgc ,_edfad ,_dcbc ,_cdfb int ){for _gdee :=0; +_gdee < _agebd .Height ;_gdee ++{for _gddg :=0;_gddg < _agebd .Width ;_gddg ++{if _agebd .Data [_gdee ][_gddg ]==SelHit {_efbgc =_aefd (_efbgc ,_agebd .Cx -_gddg );_edfad =_aefd (_edfad ,_agebd .Cy -_gdee );_dcbc =_aefd (_dcbc ,_gddg -_agebd .Cx );_cdfb =_aefd (_cdfb ,_gdee -_agebd .Cy ); +};};};return _efbgc ,_edfad ,_dcbc ,_cdfb ;};func _ggdga (_fcdbe ,_feadd int ,_ggfc string )*Selection {_afbf :=&Selection {Height :_fcdbe ,Width :_feadd ,Name :_ggfc };_afbf .Data =make ([][]SelectionValue ,_fcdbe );for _aaecf :=0;_aaecf < _fcdbe ;_aaecf ++{_afbf .Data [_aaecf ]=make ([]SelectionValue ,_feadd ); +};return _afbf ;};type SizeSelection int ;func Extract (roi _aa .Rectangle ,src *Bitmap )(*Bitmap ,error ){_cadc :=New (roi .Dx (),roi .Dy ());_fege :=roi .Min .X &0x07;_abf :=8-_fege ;_dbce :=uint (8-_cadc .Width &0x07);_abdcf :=src .GetByteIndex (roi .Min .X ,roi .Min .Y ); +_ega :=src .GetByteIndex (roi .Max .X -1,roi .Min .Y );_cac :=_cadc .RowStride ==_ega +1-_abdcf ;var _dda int ;for _eeed :=roi .Min .Y ;_eeed < roi .Max .Y ;_eeed ++{_gacdc :=_abdcf ;_gfcb :=_dda ;switch {case _abdcf ==_ega :_afgf ,_dgabb :=src .GetByte (_gacdc ); +if _dgabb !=nil {return nil ,_dgabb ;};_afgf <<=uint (_fege );_dgabb =_cadc .SetByte (_gfcb ,_fcgbg (_dbce ,_afgf ));if _dgabb !=nil {return nil ,_dgabb ;};case _fege ==0:for _gdbc :=_abdcf ;_gdbc <=_ega ;_gdbc ++{_dbbc ,_fged :=src .GetByte (_gacdc ); +if _fged !=nil {return nil ,_fged ;};_gacdc ++;if _gdbc ==_ega &&_cac {_dbbc =_fcgbg (_dbce ,_dbbc );};_fged =_cadc .SetByte (_gfcb ,_dbbc );if _fged !=nil {return nil ,_fged ;};_gfcb ++;};default:_fbfed :=_fafg (src ,_cadc ,uint (_fege ),uint (_abf ),_dbce ,_abdcf ,_ega ,_cac ,_gacdc ,_gfcb ); +if _fbfed !=nil {return nil ,_fbfed ;};};_abdcf +=src .RowStride ;_ega +=src .RowStride ;_dda +=_cadc .RowStride ;};return _cadc ,nil ;};func (_beaa *Bitmap )setEightFullBytes (_dggc int ,_gfac uint64 )error {if _dggc +7> len (_beaa .Data )-1{return _e .Error ("\u0073\u0065\u0074\u0045\u0069\u0067\u0068\u0074\u0042\u0079\u0074\u0065\u0073","\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};_beaa .Data [_dggc ]=byte ((_gfac &0xff00000000000000)>>56);_beaa .Data [_dggc +1]=byte ((_gfac &0xff000000000000)>>48);_beaa .Data [_dggc +2]=byte ((_gfac &0xff0000000000)>>40);_beaa .Data [_dggc +3]=byte ((_gfac &0xff00000000)>>32);_beaa .Data [_dggc +4]=byte ((_gfac &0xff000000)>>24); +_beaa .Data [_dggc +5]=byte ((_gfac &0xff0000)>>16);_beaa .Data [_dggc +6]=byte ((_gfac &0xff00)>>8);_beaa .Data [_dggc +7]=byte (_gfac &0xff);return nil ;};func (_afce *Bitmap )clipRectangle (_fgb ,_dgb *_aa .Rectangle )(_bedg *Bitmap ,_cced error ){const _gafe ="\u0063\u006c\u0069\u0070\u0052\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"; +if _fgb ==nil {return nil ,_e .Error (_gafe ,"\u0070r\u006fv\u0069\u0064\u0065\u0064\u0020n\u0069\u006c \u0027\u0062\u006f\u0078\u0027");};_aaggd ,_dgbb :=_afce .Width ,_afce .Height ;_acfd ,_cced :=ClipBoxToRectangle (_fgb ,_aaggd ,_dgbb );if _cced !=nil {_ca .Log .Warning ("\u0027\u0062ox\u0027\u0020\u0064o\u0065\u0073\u006e\u0027t o\u0076er\u006c\u0061\u0070\u0020\u0062\u0069\u0074ma\u0070\u0020\u0027\u0062\u0027\u003a\u0020%\u0076",_cced ); +return nil ,nil ;};_bag ,_egca :=_acfd .Min .X ,_acfd .Min .Y ;_fcba ,_aagc :=_acfd .Max .X -_acfd .Min .X ,_acfd .Max .Y -_acfd .Min .Y ;_bedg =New (_fcba ,_aagc );_bedg .Text =_afce .Text ;if _cced =_bedg .RasterOperation (0,0,_fcba ,_aagc ,PixSrc ,_afce ,_bag ,_egca ); +_cced !=nil {return nil ,_e .Wrap (_cced ,_gafe ,"");};if _dgb !=nil {*_dgb =*_acfd ;};return _bedg ,nil ;};func (_fce *Bitmap )Equivalent (s *Bitmap )bool {return _fce .equivalent (s )};func _aaa (_dab ,_dc *Bitmap )(_adg error ){const _gaf ="\u0065\u0078\u0070\u0061nd\u0042\u0069\u006e\u0061\u0072\u0079\u0046\u0061\u0063\u0074\u006f\u0072\u0038"; +_dcd :=_dc .RowStride ;_fc :=_dab .RowStride ;var _be ,_eba ,_aef ,_ef ,_fag int ;for _aef =0;_aef < _dc .Height ;_aef ++{_be =_aef *_dcd ;_eba =8*_aef *_fc ;for _ef =0;_ef < _dcd ;_ef ++{if _adg =_dab .setEightBytes (_eba +_ef *8,_cede [_dc .Data [_be +_ef ]]); +_adg !=nil {return _e .Wrap (_adg ,_gaf ,"");};};for _fag =1;_fag < 8;_fag ++{for _ef =0;_ef < _fc ;_ef ++{if _adg =_dab .SetByte (_eba +_fag *_fc +_ef ,_dab .Data [_eba +_ef ]);_adg !=nil {return _e .Wrap (_adg ,_gaf ,"");};};};};return nil ;};func (_abgb Points )XSorter ()func (_egfc ,_fade int )bool {return func (_gcdb ,_cade int )bool {return _abgb [_gcdb ].X < _abgb [_cade ].X }; +};func _ad (_b ,_da *Bitmap )(_ceg error ){const _caa ="\u0065\u0078\u0070\u0061nd\u0042\u0069\u006e\u0061\u0072\u0079\u0046\u0061\u0063\u0074\u006f\u0072\u0032";_ade :=_da .RowStride ;_cb :=_b .RowStride ;var (_df byte ;_acf uint16 ;_bc ,_eb ,_cc ,_fb ,_cbf int ; +);for _cc =0;_cc < _da .Height ;_cc ++{_bc =_cc *_ade ;_eb =2*_cc *_cb ;for _fb =0;_fb < _ade ;_fb ++{_df =_da .Data [_bc +_fb ];_acf =_dfag [_df ];_cbf =_eb +_fb *2;if _b .RowStride !=_da .RowStride *2&&(_fb +1)*2> _b .RowStride {_ceg =_b .SetByte (_cbf ,byte (_acf >>8)); +}else {_ceg =_b .setTwoBytes (_cbf ,_acf );};if _ceg !=nil {return _e .Wrap (_ceg ,_caa ,"");};};for _fb =0;_fb < _cb ;_fb ++{_cbf =_eb +_cb +_fb ;_df =_b .Data [_eb +_fb ];if _ceg =_b .SetByte (_cbf ,_df );_ceg !=nil {return _e .Wrapf (_ceg ,_caa ,"c\u006f\u0070\u0079\u0020\u0064\u006fu\u0062\u006c\u0065\u0064\u0020\u006ci\u006e\u0065\u003a\u0020\u0027\u0025\u0064'\u002c\u0020\u0042\u0079\u0074\u0065\u003a\u0020\u0027\u0025d\u0027",_eb +_fb ,_eb +_cb +_fb ); +};};};return nil ;};func (_afcf *Bitmap )removeBorderGeneral (_dfdb ,_bca ,_gad ,_bgb int )(*Bitmap ,error ){const _ffgc ="\u0072\u0065\u006d\u006fve\u0042\u006f\u0072\u0064\u0065\u0072\u0047\u0065\u006e\u0065\u0072\u0061\u006c";if _dfdb < 0||_bca < 0||_gad < 0||_bgb < 0{return nil ,_e .Error (_ffgc ,"\u006e\u0065g\u0061\u0074\u0069\u0076\u0065\u0020\u0062\u0072\u006f\u0064\u0065\u0072\u0020\u0072\u0065\u006d\u006f\u0076\u0065\u0020\u0076\u0061lu\u0065\u0073"); +};_cdb ,_agge :=_afcf .Width ,_afcf .Height ;_adfc :=_cdb -_dfdb -_bca ;_febf :=_agge -_gad -_bgb ;if _adfc <=0{return nil ,_e .Errorf (_ffgc ,"w\u0069\u0064\u0074\u0068: \u0025d\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u003e\u0020\u0030",_adfc ); +};if _febf <=0{return nil ,_e .Errorf (_ffgc ,"\u0068\u0065\u0069\u0067ht\u003a\u0020\u0025\u0064\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u003e \u0030",_febf );};_ceed :=New (_adfc ,_febf );_ceed .Color =_afcf .Color ;_cffb :=_ceed .RasterOperation (0,0,_adfc ,_febf ,PixSrc ,_afcf ,_dfdb ,_gad ); +if _cffb !=nil {return nil ,_e .Wrap (_cffb ,_ffgc ,"");};return _ceed ,nil ;};func MakePixelSumTab8 ()[]int {return _dfbeb ()};func _ddgf (_bgade *Bitmap ,_gfdc *_ac .Stack ,_dbcf ,_gdcf int )(_gfed *_aa .Rectangle ,_dgdf error ){const _ddgd ="\u0073e\u0065d\u0046\u0069\u006c\u006c\u0053\u0074\u0061\u0063\u006b\u0042\u0042"; +if _bgade ==nil {return nil ,_e .Error (_ddgd ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0073\u0027\u0020\u0042\u0069\u0074\u006d\u0061\u0070");};if _gfdc ==nil {return nil ,_e .Error (_ddgd ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0027\u0073\u0074ac\u006b\u0027"); +};_aaeg ,_bbfcb :=_bgade .Width ,_bgade .Height ;_bfbe :=_aaeg -1;_ddfg :=_bbfcb -1;if _dbcf < 0||_dbcf > _bfbe ||_gdcf < 0||_gdcf > _ddfg ||!_bgade .GetPixel (_dbcf ,_gdcf ){return nil ,nil ;};var _cgcf *_aa .Rectangle ;_cgcf ,_dgdf =Rect (100000,100000,0,0); +if _dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"");};if _dgdf =_agadg (_gfdc ,_dbcf ,_dbcf ,_gdcf ,1,_ddfg ,_cgcf );_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"\u0069\u006e\u0069t\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _dgdf =_agadg (_gfdc ,_dbcf ,_dbcf ,_gdcf +1,-1,_ddfg ,_cgcf ); +_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"\u0032\u006ed\u0020\u0069\u006ei\u0074\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};_cgcf .Min .X ,_cgcf .Max .X =_dbcf ,_dbcf ;_cgcf .Min .Y ,_cgcf .Max .Y =_gdcf ,_gdcf ;var (_gcbd *fillSegment ; +_ebbe int ;);for _gfdc .Len ()> 0{if _gcbd ,_dgdf =_cfee (_gfdc );_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"");};_gdcf =_gcbd ._ffeg ;for _dbcf =_gcbd ._abbc ;_dbcf >=0&&_bgade .GetPixel (_dbcf ,_gdcf );_dbcf --{if _dgdf =_bgade .SetPixel (_dbcf ,_gdcf ,0); +_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"");};};if _dbcf >=_gcbd ._abbc {for _dbcf ++;_dbcf <=_gcbd ._bcaf &&_dbcf <=_bfbe &&!_bgade .GetPixel (_dbcf ,_gdcf );_dbcf ++{};_ebbe =_dbcf ;if !(_dbcf <=_gcbd ._bcaf &&_dbcf <=_bfbe ){continue ;};}else {_ebbe =_dbcf +1; +if _ebbe < _gcbd ._abbc -1{if _dgdf =_agadg (_gfdc ,_ebbe ,_gcbd ._abbc -1,_gcbd ._ffeg ,-_gcbd ._bedfb ,_ddfg ,_cgcf );_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"\u006c\u0065\u0061\u006b\u0020\u006f\u006e\u0020\u006c\u0065\u0066\u0074 \u0073\u0069\u0064\u0065"); +};};_dbcf =_gcbd ._abbc +1;};for {for ;_dbcf <=_bfbe &&_bgade .GetPixel (_dbcf ,_gdcf );_dbcf ++{if _dgdf =_bgade .SetPixel (_dbcf ,_gdcf ,0);_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"\u0032n\u0064\u0020\u0073\u0065\u0074");};};if _dgdf =_agadg (_gfdc ,_ebbe ,_dbcf -1,_gcbd ._ffeg ,_gcbd ._bedfb ,_ddfg ,_cgcf ); +_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"n\u006f\u0072\u006d\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _dbcf > _gcbd ._bcaf +1{if _dgdf =_agadg (_gfdc ,_gcbd ._bcaf +1,_dbcf -1,_gcbd ._ffeg ,-_gcbd ._bedfb ,_ddfg ,_cgcf );_dgdf !=nil {return nil ,_e .Wrap (_dgdf ,_ddgd ,"\u006ce\u0061k\u0020\u006f\u006e\u0020\u0072i\u0067\u0068t\u0020\u0073\u0069\u0064\u0065"); +};};for _dbcf ++;_dbcf <=_gcbd ._bcaf &&_dbcf <=_bfbe &&!_bgade .GetPixel (_dbcf ,_gdcf );_dbcf ++{};_ebbe =_dbcf ;if !(_dbcf <=_gcbd ._bcaf &&_dbcf <=_bfbe ){break ;};};};_cgcf .Max .X ++;_cgcf .Max .Y ++;return _cgcf ,nil ;};func (_gfee *ClassedPoints )Len ()int {return _gfee .IntSlice .Size ()}; +func (_agbe *Bitmap )equivalent (_ebae *Bitmap )bool {if _agbe ==_ebae {return true ;};if !_agbe .SizesEqual (_ebae ){return false ;};_cafa :=_ffb (_agbe ,_ebae ,CmbOpXor );_adf :=_agbe .countPixels ();_gdd :=int (0.25*float32 (_adf ));if _cafa .thresholdPixelSum (_gdd ){return false ; +};var (_bedb [9][9]int ;_cda [18][9]int ;_dec [9][18]int ;_gde int ;_eee int ;);_abc :=9;_dcgd :=_agbe .Height /_abc ;_cfb :=_agbe .Width /_abc ;_adb ,_fbfe :=_dcgd /2,_cfb /2;if _dcgd < _cfb {_adb =_cfb /2;_fbfe =_dcgd /2;};_edcg :=float64 (_adb )*float64 (_fbfe )*_ea .Pi ; +_becb :=int (float64 (_dcgd *_cfb /2)*0.9);_gfaf :=int (float64 (_cfb *_dcgd /2)*0.9);for _cbbag :=0;_cbbag < _abc ;_cbbag ++{_eeab :=_cfb *_cbbag +_gde ;var _gaee int ;if _cbbag ==_abc -1{_gde =0;_gaee =_agbe .Width ;}else {_gaee =_eeab +_cfb ;if ((_agbe .Width -_gde )%_abc )> 0{_gde ++; +_gaee ++;};};for _cfbf :=0;_cfbf < _abc ;_cfbf ++{_cfgg :=_dcgd *_cfbf +_eee ;var _efg int ;if _cfbf ==_abc -1{_eee =0;_efg =_agbe .Height ;}else {_efg =_cfgg +_dcgd ;if (_agbe .Height -_eee )%_abc > 0{_eee ++;_efg ++;};};var _gdec ,_ebg ,_gcf ,_cbg int ; +_ceb :=(_eeab +_gaee )/2;_aab :=(_cfgg +_efg )/2;for _dbgc :=_eeab ;_dbgc < _gaee ;_dbgc ++{for _dgbf :=_cfgg ;_dgbf < _efg ;_dgbf ++{if _cafa .GetPixel (_dbgc ,_dgbf ){if _dbgc < _ceb {_gdec ++;}else {_ebg ++;};if _dgbf < _aab {_cbg ++;}else {_gcf ++; +};};};};_bedb [_cbbag ][_cfbf ]=_gdec +_ebg ;_cda [_cbbag *2][_cfbf ]=_gdec ;_cda [_cbbag *2+1][_cfbf ]=_ebg ;_dec [_cbbag ][_cfbf *2]=_cbg ;_dec [_cbbag ][_cfbf *2+1]=_gcf ;};};for _dgd :=0;_dgd < _abc *2-1;_dgd ++{for _adaf :=0;_adaf < (_abc -1);_adaf ++{var _dggb int ; +for _cee :=0;_cee < 2;_cee ++{for _bbbc :=0;_bbbc < 2;_bbbc ++{_dggb +=_cda [_dgd +_cee ][_adaf +_bbbc ];};};if _dggb > _gfaf {return false ;};};};for _geae :=0;_geae < (_abc -1);_geae ++{for _cfbc :=0;_cfbc < ((_abc *2)-1);_cfbc ++{var _aafa int ;for _ead :=0; +_ead < 2;_ead ++{for _ffd :=0;_ffd < 2;_ffd ++{_aafa +=_dec [_geae +_ead ][_cfbc +_ffd ];};};if _aafa > _becb {return false ;};};};for _cdeg :=0;_cdeg < (_abc -2);_cdeg ++{for _bgd :=0;_bgd < (_abc -2);_bgd ++{var _deec ,_badb int ;for _ebd :=0;_ebd < 3; +_ebd ++{for _geb :=0;_geb < 3;_geb ++{if _ebd ==_geb {_deec +=_bedb [_cdeg +_ebd ][_bgd +_geb ];};if (2-_ebd )==_geb {_badb +=_bedb [_cdeg +_ebd ][_bgd +_geb ];};};};if _deec > _gfaf ||_badb > _gfaf {return false ;};};};for _cdee :=0;_cdee < (_abc -1); +_cdee ++{for _geg :=0;_geg < (_abc -1);_geg ++{var _daabe int ;for _cbcc :=0;_cbcc < 2;_cbcc ++{for _eeeg :=0;_eeeg < 2;_eeeg ++{_daabe +=_bedb [_cdee +_cbcc ][_geg +_eeeg ];};};if float64 (_daabe )> _edcg {return false ;};};};return true ;};type fillSegment struct{_abbc int ; +_bcaf int ;_ffeg int ;_bedfb int ;};type Bitmap struct{Width ,Height int ;BitmapNumber int ;RowStride int ;Data []byte ;Color Color ;Special int ;Text string ;XResolution ,YResolution int ;};func (_dcga *Bitmap )thresholdPixelSum (_beee int )bool {var (_fcge int ; +_gbcg uint8 ;_cccg byte ;_caba int ;);_dcgc :=_dcga .RowStride ;_gdfa :=uint (_dcga .Width &0x07);if _gdfa !=0{_gbcg =uint8 ((0xff<<(8-_gdfa ))&0xff);_dcgc --;};for _cgc :=0;_cgc < _dcga .Height ;_cgc ++{for _caba =0;_caba < _dcgc ;_caba ++{_cccg =_dcga .Data [_cgc *_dcga .RowStride +_caba ]; +_fcge +=int (_fde [_cccg ]);};if _gdfa !=0{_cccg =_dcga .Data [_cgc *_dcga .RowStride +_caba ]&_gbcg ;_fcge +=int (_fde [_cccg ]);};if _fcge > _beee {return true ;};};return false ;};type Component int ;func (_egd *Bitmap )connComponentsBB (_cec int )(_faec *Boxes ,_dcdge error ){const _cddd ="\u0042\u0069\u0074ma\u0070\u002e\u0063\u006f\u006e\u006e\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0042\u0042"; +if _cec !=4&&_cec !=8{return nil ,_e .Error (_cddd ,"\u0063\u006f\u006e\u006e\u0065\u0063t\u0069\u0076\u0069\u0074\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u0061\u0020\u0027\u0034\u0027\u0020\u006fr\u0020\u0027\u0038\u0027");};if _egd .Zero (){return &Boxes {},nil ; +};_egd .setPadBits (0);_cbd ,_dcdge :=_cdcf (nil ,_egd );if _dcdge !=nil {return nil ,_e .Wrap (_dcdge ,_cddd ,"\u0062\u006d\u0031");};_ggeg :=&_ac .Stack {};_ggeg .Aux =&_ac .Stack {};_faec =&Boxes {};var (_dfed ,_cga int ;_ffde _aa .Point ;_adcf bool ; +_afbd *_aa .Rectangle ;);for {if _ffde ,_adcf ,_dcdge =_cbd .nextOnPixel (_cga ,_dfed );_dcdge !=nil {return nil ,_e .Wrap (_dcdge ,_cddd ,"");};if !_adcf {break ;};if _afbd ,_dcdge =_beaad (_cbd ,_ggeg ,_ffde .X ,_ffde .Y ,_cec );_dcdge !=nil {return nil ,_e .Wrap (_dcdge ,_cddd ,""); +};if _dcdge =_faec .Add (_afbd );_dcdge !=nil {return nil ,_e .Wrap (_dcdge ,_cddd ,"");};_cga =_ffde .X ;_dfed =_ffde .Y ;};return _faec ,nil ;};func (_fcbg *byHeight )Less (i ,j int )bool {return _fcbg .Values [i ].Height < _fcbg .Values [j ].Height }; +func (_fac *Bitmap )ToImage ()_aa .Image {_fead ,_ccc :=_g .NewImage (_fac .Width ,_fac .Height ,1,1,_fac .Data ,nil ,nil );if _ccc !=nil {_ca .Log .Error ("\u0043\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020j\u0062\u0069\u0067\u0032\u002e\u0042\u0069\u0074m\u0061p\u0020\u0074\u006f\u0020\u0069\u006d\u0061\u0067\u0065\u0075\u0074\u0069\u006c\u002e\u0049\u006d\u0061\u0067e\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ccc ); +};return _fead ;};func (_caaf *Bitmap )inverseData (){if _bdfd :=_caaf .RasterOperation (0,0,_caaf .Width ,_caaf .Height ,PixNotDst ,nil ,0,0);_bdfd !=nil {_ca .Log .Debug ("\u0049n\u0076\u0065\u0072\u0073e\u0020\u0064\u0061\u0074\u0061 \u0066a\u0069l\u0065\u0064\u003a\u0020\u0027\u0025\u0076'",_bdfd ); +};if _caaf .Color ==Chocolate {_caaf .Color =Vanilla ;}else {_caaf .Color =Chocolate ;};};func (_dbga *Bitmap )GetVanillaData ()[]byte {if _dbga .Color ==Chocolate {_dbga .inverseData ();};return _dbga .Data ;};type BoundaryCondition int ;func _eec (_ggdf *Bitmap ,_beg int )(*Bitmap ,error ){const _eaf ="\u0065x\u0070a\u006e\u0064\u0042\u0069\u006ea\u0072\u0079P\u006f\u0077\u0065\u0072\u0032"; +if _ggdf ==nil {return nil ,_e .Error (_eaf ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _beg ==1{return _cdcf (nil ,_ggdf );};if _beg !=2&&_beg !=4&&_beg !=8{return nil ,_e .Error (_eaf ,"\u0066\u0061\u0063t\u006f\u0072\u0020\u006du\u0073\u0074\u0020\u0062\u0065\u0020\u0069n\u0020\u007b\u0032\u002c\u0034\u002c\u0038\u007d\u0020\u0072\u0061\u006e\u0067\u0065"); +};_fdf :=_beg *_ggdf .Width ;_acb :=_beg *_ggdf .Height ;_ag :=New (_fdf ,_acb );var _dee error ;switch _beg {case 2:_dee =_ad (_ag ,_ggdf );case 4:_dee =_gf (_ag ,_ggdf );case 8:_dee =_aaa (_ag ,_ggdf );};if _dee !=nil {return nil ,_e .Wrap (_dee ,_eaf ,""); +};return _ag ,nil ;};func (_ggcf *Bitmap )ThresholdPixelSum (thresh int ,tab8 []int )(_aac bool ,_fae error ){const _dbbg ="\u0042i\u0074\u006d\u0061\u0070\u002e\u0054\u0068\u0072\u0065\u0073\u0068o\u006c\u0064\u0050\u0069\u0078\u0065\u006c\u0053\u0075\u006d"; +if tab8 ==nil {tab8 =_dfbeb ();};_ebab :=_ggcf .Width >>3;_bfb :=_ggcf .Width &7;_dcdd :=byte (0xff< thresh {return true ,nil ;};};return _aac ,nil ;};func (_fbbg *Bitmap )And (s *Bitmap )(_bbdc *Bitmap ,_fbbgf error ){const _fgcg ="\u0042\u0069\u0074\u006d\u0061\u0070\u002e\u0041\u006e\u0064";if _fbbg ==nil {return nil ,_e .Error (_fgcg ,"\u0027b\u0069t\u006d\u0061\u0070\u0020\u0027b\u0027\u0020i\u0073\u0020\u006e\u0069\u006c"); +};if s ==nil {return nil ,_e .Error (_fgcg ,"\u0062\u0069\u0074\u006d\u0061\u0070\u0020\u0027\u0073\u0027\u0020\u0069s\u0020\u006e\u0069\u006c");};if !_fbbg .SizesEqual (s ){_ca .Log .Debug ("\u0025\u0073\u0020-\u0020\u0042\u0069\u0074\u006d\u0061\u0070\u0020\u0027\u0073\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0073\u0069\u007a\u0065 \u0077\u0069\u0074\u0068\u0020\u0027\u0062\u0027",_fgcg ); +};if _bbdc ,_fbbgf =_cdcf (_bbdc ,_fbbg );_fbbgf !=nil {return nil ,_e .Wrap (_fbbgf ,_fgcg ,"\u0063\u0061\u006e't\u0020\u0063\u0072\u0065\u0061\u0074\u0065\u0020\u0027\u0064\u0027\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _fbbgf =_bbdc .RasterOperation (0,0,_bbdc .Width ,_bbdc .Height ,PixSrcAndDst ,s ,0,0); +_fbbgf !=nil {return nil ,_e .Wrap (_fbbgf ,_fgcg ,"");};return _bbdc ,nil ;};func TstPSymbol (t *_f .T )*Bitmap {t .Helper ();_cgdd :=New (5,8);_d .NoError (t ,_cgdd .SetPixel (0,0,1));_d .NoError (t ,_cgdd .SetPixel (1,0,1));_d .NoError (t ,_cgdd .SetPixel (2,0,1)); +_d .NoError (t ,_cgdd .SetPixel (3,0,1));_d .NoError (t ,_cgdd .SetPixel (4,1,1));_d .NoError (t ,_cgdd .SetPixel (0,1,1));_d .NoError (t ,_cgdd .SetPixel (4,2,1));_d .NoError (t ,_cgdd .SetPixel (0,2,1));_d .NoError (t ,_cgdd .SetPixel (4,3,1));_d .NoError (t ,_cgdd .SetPixel (0,3,1)); +_d .NoError (t ,_cgdd .SetPixel (0,4,1));_d .NoError (t ,_cgdd .SetPixel (1,4,1));_d .NoError (t ,_cgdd .SetPixel (2,4,1));_d .NoError (t ,_cgdd .SetPixel (3,4,1));_d .NoError (t ,_cgdd .SetPixel (0,5,1));_d .NoError (t ,_cgdd .SetPixel (0,6,1));_d .NoError (t ,_cgdd .SetPixel (0,7,1)); +return _cgdd ;};func (_edfab *Bitmaps )HeightSorter ()func (_ccgde ,_cgfdb int )bool {return func (_ccfa ,_ebbfb int )bool {_cgfdg :=_edfab .Values [_ccfa ].Height < _edfab .Values [_ebbfb ].Height ;_ca .Log .Debug ("H\u0065i\u0067\u0068\u0074\u003a\u0020\u0025\u0076\u0020<\u0020\u0025\u0076\u0020= \u0025\u0076",_edfab .Values [_ccfa ].Height ,_edfab .Values [_ebbfb ].Height ,_cgfdg ); +return _cgfdg ;};};var _fde [256]uint8 ;type shift int ;func CorrelationScoreThresholded (bm1 ,bm2 *Bitmap ,area1 ,area2 int ,delX ,delY float32 ,maxDiffW ,maxDiffH int ,tab ,downcount []int ,scoreThreshold float32 )(bool ,error ){const _cfeg ="C\u006f\u0072\u0072\u0065\u006c\u0061t\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0054h\u0072\u0065\u0073h\u006fl\u0064\u0065\u0064"; +if bm1 ==nil {return false ,_e .Error (_cfeg ,"\u0063\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006cd\u0065\u0064\u0020\u0062\u006d1\u0020\u0069s\u0020\u006e\u0069\u006c"); +};if bm2 ==nil {return false ,_e .Error (_cfeg ,"\u0063\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006cd\u0065\u0064\u0020\u0062\u006d2\u0020\u0069s\u0020\u006e\u0069\u006c"); +};if area1 <=0||area2 <=0{return false ,_e .Error (_cfeg ,"c\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006fn\u0053\u0063\u006f\u0072\u0065\u0054\u0068re\u0073\u0068\u006f\u006cd\u0065\u0064\u0020\u002d\u0020\u0061\u0072\u0065\u0061s \u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u003e\u0020\u0030"); +};if downcount ==nil {return false ,_e .Error (_cfeg ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u006f\u0020\u0027\u0064\u006f\u0077\u006e\u0063\u006f\u0075\u006e\u0074\u0027");};if tab ==nil {return false ,_e .Error (_cfeg ,"p\u0072\u006f\u0076\u0069de\u0064 \u006e\u0069\u006c\u0020\u0027s\u0075\u006d\u0074\u0061\u0062\u0027"); +};_aded ,_cdge :=bm1 .Width ,bm1 .Height ;_ffcce ,_abfa :=bm2 .Width ,bm2 .Height ;if _ac .Abs (_aded -_ffcce )> maxDiffW {return false ,nil ;};if _ac .Abs (_cdge -_abfa )> maxDiffH {return false ,nil ;};_fdda :=int (delX +_ac .Sign (delX )*0.5);_bgf :=int (delY +_ac .Sign (delY )*0.5); +_aagcf :=int (_ea .Ceil (_ea .Sqrt (float64 (scoreThreshold )*float64 (area1 )*float64 (area2 ))));_ceae :=bm2 .RowStride ;_eagf :=_aefd (_bgf ,0);_ecfa :=_gcg (_abfa +_bgf ,_cdge );_edbd :=bm1 .RowStride *_eagf ;_fcgc :=bm2 .RowStride *(_eagf -_bgf ); +var _gbga int ;if _ecfa <=_cdge {_gbga =downcount [_ecfa -1];};_fggd :=_aefd (_fdda ,0);_bgba :=_gcg (_ffcce +_fdda ,_aded );var _baa ,_dfaa int ;if _fdda >=8{_baa =_fdda >>3;_edbd +=_baa ;_fggd -=_baa <<3;_bgba -=_baa <<3;_fdda &=7;}else if _fdda <=-8{_dfaa =-((_fdda +7)>>3); +_fcgc +=_dfaa ;_ceae -=_dfaa ;_fdda +=_dfaa <<3;};var (_abac ,_fdfb ,_eead int ;_fbfd ,_gdag ,_eebd byte ;);if _fggd >=_bgba ||_eagf >=_ecfa {return false ,nil ;};_geca :=(_bgba +7)>>3;switch {case _fdda ==0:for _fdfb =_eagf ;_fdfb < _ecfa ;_fdfb ,_edbd ,_fcgc =_fdfb +1,_edbd +bm1 .RowStride ,_fcgc +bm2 .RowStride {for _eead =0; +_eead < _geca ;_eead ++{_fbfd =bm1 .Data [_edbd +_eead ]&bm2 .Data [_fcgc +_eead ];_abac +=tab [_fbfd ];};if _abac >=_aagcf {return true ,nil ;};if _geefe :=_abac +downcount [_fdfb ]-_gbga ;_geefe < _aagcf {return false ,nil ;};};case _fdda > 0&&_ceae < _geca :for _fdfb =_eagf ; +_fdfb < _ecfa ;_fdfb ,_edbd ,_fcgc =_fdfb +1,_edbd +bm1 .RowStride ,_fcgc +bm2 .RowStride {_gdag =bm1 .Data [_edbd ];_eebd =bm2 .Data [_fcgc ]>>uint (_fdda );_fbfd =_gdag &_eebd ;_abac +=tab [_fbfd ];for _eead =1;_eead < _ceae ;_eead ++{_gdag =bm1 .Data [_edbd +_eead ]; +_eebd =bm2 .Data [_fcgc +_eead ]>>uint (_fdda )|bm2 .Data [_fcgc +_eead -1]<=_aagcf {return true ,nil ;}else if _abac +downcount [_fdfb ]-_gbga < _aagcf {return false ,nil ;};};case _fdda > 0&&_ceae >=_geca :for _fdfb =_eagf ;_fdfb < _ecfa ;_fdfb ,_edbd ,_fcgc =_fdfb +1,_edbd +bm1 .RowStride ,_fcgc +bm2 .RowStride {_gdag =bm1 .Data [_edbd ]; +_eebd =bm2 .Data [_fcgc ]>>uint (_fdda );_fbfd =_gdag &_eebd ;_abac +=tab [_fbfd ];for _eead =1;_eead < _geca ;_eead ++{_gdag =bm1 .Data [_edbd +_eead ];_eebd =bm2 .Data [_fcgc +_eead ]>>uint (_fdda );_eebd |=bm2 .Data [_fcgc +_eead -1]<=_aagcf {return true ,nil ;}else if _abac +downcount [_fdfb ]-_gbga < _aagcf {return false ,nil ;};};case _geca < _ceae :for _fdfb =_eagf ;_fdfb < _ecfa ;_fdfb ,_edbd ,_fcgc =_fdfb +1,_edbd +bm1 .RowStride ,_fcgc +bm2 .RowStride {for _eead =0; +_eead < _geca ;_eead ++{_gdag =bm1 .Data [_edbd +_eead ];_eebd =bm2 .Data [_fcgc +_eead ]<>uint (8+_fdda );_fbfd =_gdag &_eebd ;_abac +=tab [_fbfd ];};if _abac >=_aagcf {return true ,nil ;}else if _cfgf :=_abac +downcount [_fdfb ]-_gbga ; +_cfgf < _aagcf {return false ,nil ;};};case _ceae >=_geca :for _fdfb =_eagf ;_fdfb < _ecfa ;_fdfb ,_edbd ,_fcgc =_fdfb +1,_edbd +bm1 .RowStride ,_fcgc +bm2 .RowStride {for _eead =0;_eead < _geca ;_eead ++{_gdag =bm1 .Data [_edbd +_eead ];_eebd =bm2 .Data [_fcgc +_eead ]<>uint (8+_fdda );_fbfd =_gdag &_eebd ;_abac +=tab [_fbfd ];};_gdag =bm1 .Data [_edbd +_eead ];_eebd =bm2 .Data [_fcgc +_eead ]<=_aagcf {return true ,nil ; +}else if _abac +downcount [_fdfb ]-_gbga < _aagcf {return false ,nil ;};};};_ggdg :=float32 (_abac )*float32 (_abac )/(float32 (area1 )*float32 (area2 ));if _ggdg >=scoreThreshold {_ca .Log .Trace ("\u0063\u006f\u0075\u006e\u0074\u003a\u0020\u0025\u0064\u0020\u003c\u0020\u0074\u0068\u0072\u0065\u0073\u0068\u006f\u006cd\u0020\u0025\u0064\u0020\u0062\u0075\u0074\u0020\u0073c\u006f\u0072\u0065\u0020\u0025\u0066\u0020\u003e\u003d\u0020\u0073\u0063\u006fr\u0065\u0054\u0068\u0072\u0065\u0073h\u006f\u006c\u0064 \u0025\u0066",_abac ,_aagcf ,_ggdg ,scoreThreshold ); +};return false ,nil ;};func _ddcd (_daed ,_dgab *Bitmap ,_gffa ,_gebf ,_bfa ,_gacd ,_ffce ,_gdfe ,_bfae ,_dgbba int ,_bbe CombinationOperator ,_fcdb int )error {var _fadce int ;_fedg :=func (){_fadce ++;_bfa +=_dgab .RowStride ;_gacd +=_daed .RowStride ; +_ffce +=_daed .RowStride };for _fadce =_gffa ;_fadce < _gebf ;_fedg (){var _fcgg uint16 ;_eeda :=_bfa ;for _dcfd :=_gacd ;_dcfd <=_ffce ;_dcfd ++{_fffb ,_dea :=_dgab .GetByte (_eeda );if _dea !=nil {return _dea ;};_dgdd ,_dea :=_daed .GetByte (_dcfd ); +if _dea !=nil {return _dea ;};_fcgg =(_fcgg |(uint16 (_dgdd )&0xff))<>8);if _dea =_dgab .SetByte (_eeda ,_eeabd (_fffb ,_dgdd ,_bbe ));_dea !=nil {return _dea ;};_eeda ++;_fcgg <<=uint (_bfae );if _dcfd ==_ffce {_dgdd =byte (_fcgg >>(8-uint8 (_dgbba ))); +if _fcdb !=0{_dgdd =_fcgbg (uint (8+_gdfe ),_dgdd );};_fffb ,_dea =_dgab .GetByte (_eeda );if _dea !=nil {return _dea ;};if _dea =_dgab .SetByte (_eeda ,_eeabd (_fffb ,_dgdd ,_bbe ));_dea !=nil {return _dea ;};};};};return nil ;};func CorrelationScoreSimple (bm1 ,bm2 *Bitmap ,area1 ,area2 int ,delX ,delY float32 ,maxDiffW ,maxDiffH int ,tab []int )(_cbaf float64 ,_aff error ){const _fdbb ="\u0043\u006f\u0072\u0072el\u0061\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065\u0053\u0069\u006d\u0070l\u0065"; +if bm1 ==nil ||bm2 ==nil {return _cbaf ,_e .Error (_fdbb ,"n\u0069l\u0020\u0062\u0069\u0074\u006d\u0061\u0070\u0073 \u0070\u0072\u006f\u0076id\u0065\u0064");};if tab ==nil {return _cbaf ,_e .Error (_fdbb ,"\u0074\u0061\u0062\u0020\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};if area1 ==0||area2 ==0{return _cbaf ,_e .Error (_fdbb ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0061\u0072e\u0061\u0073\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u003e\u0020\u0030");};_fagb ,_cegf :=bm1 .Width ,bm1 .Height ;_fcda ,_dcae :=bm2 .Width ,bm2 .Height ; +if _ggce (_fagb -_fcda )> maxDiffW {return 0,nil ;};if _ggce (_cegf -_dcae )> maxDiffH {return 0,nil ;};var _ffceg ,_eaad int ;if delX >=0{_ffceg =int (delX +0.5);}else {_ffceg =int (delX -0.5);};if delY >=0{_eaad =int (delY +0.5);}else {_eaad =int (delY -0.5); +};_gdce :=bm1 .createTemplate ();if _aff =_gdce .RasterOperation (_ffceg ,_eaad ,_fcda ,_dcae ,PixSrc ,bm2 ,0,0);_aff !=nil {return _cbaf ,_e .Wrap (_aff ,_fdbb ,"\u0062m\u0032 \u0074\u006f\u0020\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};if _aff =_gdce .RasterOperation (0,0,_fagb ,_cegf ,PixSrcAndDst ,bm1 ,0,0); +_aff !=nil {return _cbaf ,_e .Wrap (_aff ,_fdbb ,"b\u006d\u0031\u0020\u0061\u006e\u0064\u0020\u0062\u006d\u0054");};_bbdb :=_gdce .countPixels ();_cbaf =float64 (_bbdb )*float64 (_bbdb )/(float64 (area1 )*float64 (area2 ));return _cbaf ,nil ;};func _fgedg (_eecd *Bitmap ,_cdba ,_bfgaf int ,_cgeg ,_gfad int ,_cccb RasterOperator ,_dceb *Bitmap ,_egab ,_bece int )error {var _adca ,_bbgc ,_abcg ,_adbe int ; +if _cdba < 0{_egab -=_cdba ;_cgeg +=_cdba ;_cdba =0;};if _egab < 0{_cdba -=_egab ;_cgeg +=_egab ;_egab =0;};_adca =_cdba +_cgeg -_eecd .Width ;if _adca > 0{_cgeg -=_adca ;};_bbgc =_egab +_cgeg -_dceb .Width ;if _bbgc > 0{_cgeg -=_bbgc ;};if _bfgaf < 0{_bece -=_bfgaf ; +_gfad +=_bfgaf ;_bfgaf =0;};if _bece < 0{_bfgaf -=_bece ;_gfad +=_bece ;_bece =0;};_abcg =_bfgaf +_gfad -_eecd .Height ;if _abcg > 0{_gfad -=_abcg ;};_adbe =_bece +_gfad -_dceb .Height ;if _adbe > 0{_gfad -=_adbe ;};if _cgeg <=0||_gfad <=0{return nil ; +};var _cfcd error ;switch {case _cdba &7==0&&_egab &7==0:_cfcd =_adac (_eecd ,_cdba ,_bfgaf ,_cgeg ,_gfad ,_cccb ,_dceb ,_egab ,_bece );case _cdba &7==_egab &7:_cfcd =_cfaba (_eecd ,_cdba ,_bfgaf ,_cgeg ,_gfad ,_cccb ,_dceb ,_egab ,_bece );default:_cfcd =_gdbca (_eecd ,_cdba ,_bfgaf ,_cgeg ,_gfad ,_cccb ,_dceb ,_egab ,_bece ); +};if _cfcd !=nil {return _e .Wrap (_cfcd ,"r\u0061\u0073\u0074\u0065\u0072\u004f\u0070\u004c\u006f\u0077","");};return nil ;};func Centroid (bm *Bitmap ,centTab ,sumTab []int )(Point ,error ){return bm .centroid (centTab ,sumTab )};func (_gdae *ClassedPoints )GroupByY ()([]*ClassedPoints ,error ){const _efff ="\u0043\u006c\u0061\u0073se\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0047\u0072\u006f\u0075\u0070\u0042y\u0059"; +if _fgeff :=_gdae .validateIntSlice ();_fgeff !=nil {return nil ,_e .Wrap (_fgeff ,_efff ,"");};if _gdae .IntSlice .Size ()==0{return nil ,_e .Error (_efff ,"\u004e\u006f\u0020\u0063la\u0073\u0073\u0065\u0073\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064"); +};_gdae .SortByY ();var (_cgec []*ClassedPoints ;_geeg int ;);_gcbb :=-1;var _gffab *ClassedPoints ;for _eeef :=0;_eeef < len (_gdae .IntSlice );_eeef ++{_geeg =int (_gdae .YAtIndex (_eeef ));if _geeg !=_gcbb {_gffab =&ClassedPoints {Points :_gdae .Points }; +_gcbb =_geeg ;_cgec =append (_cgec ,_gffab );};_gffab .IntSlice =append (_gffab .IntSlice ,_gdae .IntSlice [_eeef ]);};for _ ,_efe :=range _cgec {_efe .SortByX ();};return _cgec ,nil ;};func _fdeg (_cdd ,_cebf ,_acc *Bitmap )(*Bitmap ,error ){const _gdaa ="\u0062\u0069\u0074\u006d\u0061\u0070\u002e\u0078\u006f\u0072"; +if _cebf ==nil {return nil ,_e .Error (_gdaa ,"'\u0062\u0031\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _acc ==nil {return nil ,_e .Error (_gdaa ,"'\u0062\u0032\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _cdd ==_acc {return nil ,_e .Error (_gdaa ,"'\u0064\u0027\u0020\u003d\u003d\u0020\u0027\u0062\u0032\u0027"); +};if !_cebf .SizesEqual (_acc ){_ca .Log .Debug ("\u0025s\u0020\u002d \u0042\u0069\u0074\u006da\u0070\u0020\u0027b\u0031\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074 e\u0071\u0075\u0061l\u0020\u0073i\u007a\u0065\u0020\u0077\u0069\u0074h\u0020\u0027b\u0032\u0027",_gdaa ); +};var _ddg error ;if _cdd ,_ddg =_cdcf (_cdd ,_cebf );_ddg !=nil {return nil ,_e .Wrap (_ddg ,_gdaa ,"\u0063\u0061n\u0027\u0074\u0020c\u0072\u0065\u0061\u0074\u0065\u0020\u0027\u0064\u0027");};if _ddg =_cdd .RasterOperation (0,0,_cdd .Width ,_cdd .Height ,PixSrcXorDst ,_acc ,0,0); +_ddg !=nil {return nil ,_e .Wrap (_ddg ,_gdaa ,"");};return _cdd ,nil ;};func (_dcg *Bitmap )AddBorder (borderSize ,val int )(*Bitmap ,error ){if borderSize ==0{return _dcg .Copy (),nil ;};_cgf ,_fga :=_dcg .addBorderGeneral (borderSize ,borderSize ,borderSize ,borderSize ,val ); +if _fga !=nil {return nil ,_e .Wrap (_fga ,"\u0041d\u0064\u0042\u006f\u0072\u0064\u0065r","");};return _cgf ,nil ;};type byHeight Bitmaps ;func _dcdc (_ab *Bitmap ,_gbg int ,_agf []byte )(_ece *Bitmap ,_bad error ){const _aaf ="\u0072\u0065\u0064\u0075\u0063\u0065\u0052\u0061\u006e\u006b\u0042\u0069n\u0061\u0072\u0079\u0032"; +if _ab ==nil {return nil ,_e .Error (_aaf ,"\u0073o\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061p\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};if _gbg < 1||_gbg > 4{return nil ,_e .Error (_aaf ,"\u006c\u0065\u0076\u0065\u006c\u0020\u006d\u0075\u0073\u0074 \u0062\u0065\u0020\u0069\u006e\u0020\u0073e\u0074\u0020\u007b\u0031\u002c\u0032\u002c\u0033\u002c\u0034\u007d"); +};if _ab .Height <=1{return nil ,_e .Errorf (_aaf ,"\u0073o\u0075\u0072c\u0065\u0020\u0068e\u0069\u0067\u0068\u0074\u0020\u006d\u0075s\u0074\u0020\u0062\u0065\u0020\u0061t\u0020\u006c\u0065\u0061\u0073\u0074\u0020\u0027\u0032\u0027\u0020-\u0020\u0069\u0073\u003a\u0020\u0027\u0025\u0064\u0027",_ab .Height ); +};_ece =New (_ab .Width /2,_ab .Height /2);if _agf ==nil {_agf =_bcc ();};_gd :=_gcg (_ab .RowStride ,2*_ece .RowStride );switch _gbg {case 1:_bad =_aada (_ab ,_ece ,_gbg ,_agf ,_gd );case 2:_bad =_dba (_ab ,_ece ,_gbg ,_agf ,_gd );case 3:_bad =_fbac (_ab ,_ece ,_gbg ,_agf ,_gd ); +case 4:_bad =_fcd (_ab ,_ece ,_gbg ,_agf ,_gd );};if _bad !=nil {return nil ,_bad ;};return _ece ,nil ;};func (_dbeb *Bitmap )nextOnPixelLow (_caec ,_cedf ,_fbed ,_aedc ,_gce int )(_dga _aa .Point ,_gaef bool ,_agbc error ){const _bcdd ="B\u0069\u0074\u006d\u0061p.\u006ee\u0078\u0074\u004f\u006e\u0050i\u0078\u0065\u006c\u004c\u006f\u0077"; +var (_cdgc int ;_gcbg byte ;);_ggcd :=_gce *_fbed ;_dcbb :=_ggcd +(_aedc /8);if _gcbg ,_agbc =_dbeb .GetByte (_dcbb );_agbc !=nil {return _dga ,false ,_e .Wrap (_agbc ,_bcdd ,"\u0078\u0053\u0074\u0061\u0072\u0074\u0020\u0061\u006e\u0064 \u0079\u0053\u0074\u0061\u0072\u0074\u0020o\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065"); +};if _gcbg !=0{_cdgb :=_aedc -(_aedc %8)+7;for _cdgc =_aedc ;_cdgc <=_cdgb &&_cdgc < _caec ;_cdgc ++{if _dbeb .GetPixel (_cdgc ,_gce ){_dga .X =_cdgc ;_dga .Y =_gce ;return _dga ,true ,nil ;};};};_caecc :=(_aedc /8)+1;_cdgc =8*_caecc ;var _agae int ;for _dcbb =_ggcd +_caecc ; +_cdgc < _caec ;_dcbb ,_cdgc =_dcbb +1,_cdgc +8{if _gcbg ,_agbc =_dbeb .GetByte (_dcbb );_agbc !=nil {return _dga ,false ,_e .Wrap (_agbc ,_bcdd ,"r\u0065\u0073\u0074\u0020of\u0020t\u0068\u0065\u0020\u006c\u0069n\u0065\u0020\u0062\u0079\u0074\u0065");}; +if _gcbg ==0{continue ;};for _agae =0;_agae < 8&&_cdgc < _caec ;_agae ,_cdgc =_agae +1,_cdgc +1{if _dbeb .GetPixel (_cdgc ,_gce ){_dga .X =_cdgc ;_dga .Y =_gce ;return _dga ,true ,nil ;};};};for _bdff :=_gce +1;_bdff < _cedf ;_bdff ++{_ggcd =_bdff *_fbed ; +for _dcbb ,_cdgc =_ggcd ,0;_cdgc < _caec ;_dcbb ,_cdgc =_dcbb +1,_cdgc +8{if _gcbg ,_agbc =_dbeb .GetByte (_dcbb );_agbc !=nil {return _dga ,false ,_e .Wrap (_agbc ,_bcdd ,"\u0066o\u006cl\u006f\u0077\u0069\u006e\u0067\u0020\u006c\u0069\u006e\u0065\u0073"); +};if _gcbg ==0{continue ;};for _agae =0;_agae < 8&&_cdgc < _caec ;_agae ,_cdgc =_agae +1,_cdgc +1{if _dbeb .GetPixel (_cdgc ,_bdff ){_dga .X =_cdgc ;_dga .Y =_bdff ;return _dga ,true ,nil ;};};};};return _dga ,false ,nil ;};func (_bege *Bitmap )countPixels ()int {var (_cgga int ; +_ccg uint8 ;_cbfe byte ;_fbbb int ;);_dag :=_bege .RowStride ;_cbbc :=uint (_bege .Width &0x07);if _cbbc !=0{_ccg =uint8 ((0xff<<(8-_cbbc ))&0xff);_dag --;};for _gaed :=0;_gaed < _bege .Height ;_gaed ++{for _fbbb =0;_fbbb < _dag ;_fbbb ++{_cbfe =_bege .Data [_gaed *_bege .RowStride +_fbbb ]; +_cgga +=int (_fde [_cbfe ]);};if _cbbc !=0{_cgga +=int (_fde [_bege .Data [_gaed *_bege .RowStride +_fbbb ]&_ccg ]);};};return _cgga ;};func TstImageBitmap ()*Bitmap {return _gabd .Copy ()};func Rect (x ,y ,w ,h int )(*_aa .Rectangle ,error ){const _fbaf ="b\u0069\u0074\u006d\u0061\u0070\u002e\u0052\u0065\u0063\u0074"; +if x < 0{w +=x ;x =0;if w <=0{return nil ,_e .Errorf (_fbaf ,"x\u003a\u0027\u0025\u0064\u0027\u0020<\u0020\u0030\u0020\u0061\u006e\u0064\u0020\u0077\u003a \u0027\u0025\u0064'\u0020<\u003d\u0020\u0030",x ,w );};};if y < 0{h +=y ;y =0;if h <=0{return nil ,_e .Error (_fbaf ,"\u0079\u0020\u003c 0\u0020\u0061\u006e\u0064\u0020\u0062\u006f\u0078\u0020\u006f\u0066\u0066\u0020\u002b\u0071\u0075\u0061\u0064"); +};};_eaaa :=_aa .Rect (x ,y ,x +w ,y +h );return &_eaaa ,nil ;};const (_ SizeComparison =iota ;SizeSelectIfLT ;SizeSelectIfGT ;SizeSelectIfLTE ;SizeSelectIfGTE ;SizeSelectIfEQ ;);func TstFrameBitmap ()*Bitmap {return _cbff .Copy ()};type Boxes []*_aa .Rectangle ; +type ClassedPoints struct{*Points ;_ac .IntSlice ;_acab func (_abadf ,_cgfg int )bool ;};func RasterOperation (dest *Bitmap ,dx ,dy ,dw ,dh int ,op RasterOperator ,src *Bitmap ,sx ,sy int )error {return _gegg (dest ,dx ,dy ,dw ,dh ,op ,src ,sx ,sy );}; +func (_bedcg *Bitmap )connComponentsBitmapsBB (_cfda *Bitmaps ,_cfggd int )(_ccf *Boxes ,_egfd error ){const _gcba ="\u0063\u006f\u006enC\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0042\u0069\u0074\u006d\u0061\u0070\u0073\u0042\u0042";if _cfggd !=4&&_cfggd !=8{return nil ,_e .Error (_gcba ,"\u0063\u006f\u006e\u006e\u0065\u0063t\u0069\u0076\u0069\u0074\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u0061\u0020\u0027\u0034\u0027\u0020\u006fr\u0020\u0027\u0038\u0027"); +};if _cfda ==nil {return nil ,_e .Error (_gcba ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0042\u0069\u0074ma\u0070\u0073");};if len (_cfda .Values )> 0{return nil ,_e .Error (_gcba ,"\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u006fn\u002d\u0065\u006d\u0070\u0074\u0079\u0020\u0042\u0069\u0074m\u0061\u0070\u0073"); +};if _bedcg .Zero (){return &Boxes {},nil ;};var (_bbfd ,_geef ,_ddfe ,_eadd *Bitmap ;);_bedcg .setPadBits (0);if _bbfd ,_egfd =_cdcf (nil ,_bedcg );_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"\u0062\u006d\u0031");};if _geef ,_egfd =_cdcf (nil ,_bedcg ); +_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"\u0062\u006d\u0032");};_dca :=&_ac .Stack {};_dca .Aux =&_ac .Stack {};_ccf =&Boxes {};var (_cdbc ,_cgb int ;_gafb _aa .Point ;_daca bool ;_afec *_aa .Rectangle ;);for {if _gafb ,_daca ,_egfd =_bbfd .nextOnPixel (_cdbc ,_cgb ); +_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"");};if !_daca {break ;};if _afec ,_egfd =_beaad (_bbfd ,_dca ,_gafb .X ,_gafb .Y ,_cfggd );_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"");};if _egfd =_ccf .Add (_afec );_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,""); +};if _ddfe ,_egfd =_bbfd .clipRectangle (_afec ,nil );_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"\u0062\u006d\u0033");};if _eadd ,_egfd =_geef .clipRectangle (_afec ,nil );_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"\u0062\u006d\u0034");}; +if _ ,_egfd =_fdeg (_ddfe ,_ddfe ,_eadd );_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"\u0062m\u0033\u0020\u005e\u0020\u0062\u006d4");};if _egfd =_geef .RasterOperation (_afec .Min .X ,_afec .Min .Y ,_afec .Dx (),_afec .Dy (),PixSrcXorDst ,_ddfe ,0,0); +_egfd !=nil {return nil ,_e .Wrap (_egfd ,_gcba ,"\u0062\u006d\u0032\u0020\u002d\u0058\u004f\u0052\u002d>\u0020\u0062\u006d\u0033");};_cfda .AddBitmap (_ddfe );_cdbc =_gafb .X ;_cgb =_gafb .Y ;};_cfda .Boxes =*_ccf ;return _ccf ,nil ;};func (_agfg *Bitmap )ClipRectangle (box *_aa .Rectangle )(_fad *Bitmap ,_agb *_aa .Rectangle ,_adec error ){const _beda ="\u0043\u006c\u0069\u0070\u0052\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"; +if box ==nil {return nil ,nil ,_e .Error (_beda ,"\u0062o\u0078 \u0069\u0073\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};_ggbe ,_dbc :=_agfg .Width ,_agfg .Height ;_cad :=_aa .Rect (0,0,_ggbe ,_dbc );if !box .Overlaps (_cad ){return nil ,nil ,_e .Error (_beda ,"b\u006f\u0078\u0020\u0064oe\u0073n\u0027\u0074\u0020\u006f\u0076e\u0072\u006c\u0061\u0070\u0020\u0062"); +};_gfa :=box .Intersect (_cad );_dgfb ,_cbe :=_gfa .Min .X ,_gfa .Min .Y ;_defc ,_daab :=_gfa .Dx (),_gfa .Dy ();_fad =New (_defc ,_daab );_fad .Text =_agfg .Text ;if _adec =_fad .RasterOperation (0,0,_defc ,_daab ,PixSrc ,_agfg ,_dgfb ,_cbe );_adec !=nil {return nil ,nil ,_e .Wrap (_adec ,_beda ,"\u0050\u0069\u0078\u0053\u0072\u0063\u0020\u0074\u006f\u0020\u0063\u006ci\u0070\u0070\u0065\u0064"); +};_agb =&_gfa ;return _fad ,_agb ,nil ;};type MorphOperation int ;func (_cecga *Bitmaps )selectByIndexes (_caded []int )(*Bitmaps ,error ){_debg :=&Bitmaps {};for _ ,_gbge :=range _caded {_bdefb ,_aabf :=_cecga .GetBitmap (_gbge );if _aabf !=nil {return nil ,_e .Wrap (_aabf ,"\u0073e\u006ce\u0063\u0074\u0042\u0079\u0049\u006e\u0064\u0065\u0078\u0065\u0073",""); +};_debg .AddBitmap (_bdefb );};return _debg ,nil ;};func MorphSequence (src *Bitmap ,sequence ...MorphProcess )(*Bitmap ,error ){return _ecbgb (src ,sequence ...);};type BitmapsArray struct{Values []*Bitmaps ;Boxes []*_aa .Rectangle ;};func _egbea (_cccbf *Bitmap ,_facbd *_ac .Stack ,_eadce ,_fefc int )(_ebfd *_aa .Rectangle ,_dgbg error ){const _aaaf ="\u0073e\u0065d\u0046\u0069\u006c\u006c\u0053\u0074\u0061\u0063\u006b\u0042\u0042"; +if _cccbf ==nil {return nil ,_e .Error (_aaaf ,"\u0070\u0072\u006fvi\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0073\u0027\u0020\u0042\u0069\u0074\u006d\u0061\u0070");};if _facbd ==nil {return nil ,_e .Error (_aaaf ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0027\u0073\u0074ac\u006b\u0027"); +};_acca ,_ecff :=_cccbf .Width ,_cccbf .Height ;_caabg :=_acca -1;_gceb :=_ecff -1;if _eadce < 0||_eadce > _caabg ||_fefc < 0||_fefc > _gceb ||!_cccbf .GetPixel (_eadce ,_fefc ){return nil ,nil ;};_ddeg :=_aa .Rect (100000,100000,0,0);if _dgbg =_agadg (_facbd ,_eadce ,_eadce ,_fefc ,1,_gceb ,&_ddeg ); +_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u0069\u006e\u0069t\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _dgbg =_agadg (_facbd ,_eadce ,_eadce ,_fefc +1,-1,_gceb ,&_ddeg );_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u0032\u006ed\u0020\u0069\u006ei\u0074\u0069\u0061\u006c\u0020\u0070\u0075\u0073\u0068"); +};_ddeg .Min .X ,_ddeg .Max .X =_eadce ,_eadce ;_ddeg .Min .Y ,_ddeg .Max .Y =_fefc ,_fefc ;var (_fadd *fillSegment ;_aeab int ;);for _facbd .Len ()> 0{if _fadd ,_dgbg =_cfee (_facbd );_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"");};_fefc =_fadd ._ffeg ; +for _eadce =_fadd ._abbc -1;_eadce >=0&&_cccbf .GetPixel (_eadce ,_fefc );_eadce --{if _dgbg =_cccbf .SetPixel (_eadce ,_fefc ,0);_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u0031s\u0074\u0020\u0073\u0065\u0074");};};if _eadce >=_fadd ._abbc -1{for {for _eadce ++; +_eadce <=_fadd ._bcaf +1&&_eadce <=_caabg &&!_cccbf .GetPixel (_eadce ,_fefc );_eadce ++{};_aeab =_eadce ;if !(_eadce <=_fadd ._bcaf +1&&_eadce <=_caabg ){break ;};for ;_eadce <=_caabg &&_cccbf .GetPixel (_eadce ,_fefc );_eadce ++{if _dgbg =_cccbf .SetPixel (_eadce ,_fefc ,0); +_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u0032n\u0064\u0020\u0073\u0065\u0074");};};if _dgbg =_agadg (_facbd ,_aeab ,_eadce -1,_fadd ._ffeg ,_fadd ._bedfb ,_gceb ,&_ddeg );_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"n\u006f\u0072\u006d\u0061\u006c\u0020\u0070\u0075\u0073\u0068"); +};if _eadce > _fadd ._bcaf {if _dgbg =_agadg (_facbd ,_fadd ._bcaf +1,_eadce -1,_fadd ._ffeg ,-_fadd ._bedfb ,_gceb ,&_ddeg );_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u006ce\u0061k\u0020\u006f\u006e\u0020\u0072i\u0067\u0068t\u0020\u0073\u0069\u0064\u0065"); +};};};continue ;};_aeab =_eadce +1;if _aeab < _fadd ._abbc {if _dgbg =_agadg (_facbd ,_aeab ,_fadd ._abbc -1,_fadd ._ffeg ,-_fadd ._bedfb ,_gceb ,&_ddeg );_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u006c\u0065\u0061\u006b\u0020\u006f\u006e\u0020\u006c\u0065\u0066\u0074 \u0073\u0069\u0064\u0065"); +};};_eadce =_fadd ._abbc ;for {for ;_eadce <=_caabg &&_cccbf .GetPixel (_eadce ,_fefc );_eadce ++{if _dgbg =_cccbf .SetPixel (_eadce ,_fefc ,0);_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u0032n\u0064\u0020\u0073\u0065\u0074");};};if _dgbg =_agadg (_facbd ,_aeab ,_eadce -1,_fadd ._ffeg ,_fadd ._bedfb ,_gceb ,&_ddeg ); +_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"n\u006f\u0072\u006d\u0061\u006c\u0020\u0070\u0075\u0073\u0068");};if _eadce > _fadd ._bcaf {if _dgbg =_agadg (_facbd ,_fadd ._bcaf +1,_eadce -1,_fadd ._ffeg ,-_fadd ._bedfb ,_gceb ,&_ddeg );_dgbg !=nil {return nil ,_e .Wrap (_dgbg ,_aaaf ,"\u006ce\u0061k\u0020\u006f\u006e\u0020\u0072i\u0067\u0068t\u0020\u0073\u0069\u0064\u0065"); +};};for _eadce ++;_eadce <=_fadd ._bcaf +1&&_eadce <=_caabg &&!_cccbf .GetPixel (_eadce ,_fefc );_eadce ++{};_aeab =_eadce ;if !(_eadce <=_fadd ._bcaf +1&&_eadce <=_caabg ){break ;};};};_ddeg .Max .X ++;_ddeg .Max .Y ++;return &_ddeg ,nil ;};func (_gada Points )Size ()int {return len (_gada )}; +func _dba (_bfg ,_bec *Bitmap ,_fffd int ,_eafc []byte ,_gbgc int )(_cf error ){const _edd ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0032";var (_dfg ,_bb ,_bg ,_cff ,_abd ,_daa ,_dae ,_def int ; +_ggc ,_gea ,_cegd ,_beb uint32 ;_ggfe ,_gec byte ;_aba uint16 ;);_ffg :=make ([]byte ,4);_gbgd :=make ([]byte ,4);for _bg =0;_bg < _bfg .Height -1;_bg ,_cff =_bg +2,_cff +1{_dfg =_bg *_bfg .RowStride ;_bb =_cff *_bec .RowStride ;for _abd ,_daa =0,0;_abd < _gbgc ; +_abd ,_daa =_abd +4,_daa +1{for _dae =0;_dae < 4;_dae ++{_def =_dfg +_abd +_dae ;if _def <=len (_bfg .Data )-1&&_def < _dfg +_bfg .RowStride {_ffg [_dae ]=_bfg .Data [_def ];}else {_ffg [_dae ]=0x00;};_def =_dfg +_bfg .RowStride +_abd +_dae ;if _def <=len (_bfg .Data )-1&&_def < _dfg +(2*_bfg .RowStride ){_gbgd [_dae ]=_bfg .Data [_def ]; +}else {_gbgd [_dae ]=0x00;};};_ggc =_db .BigEndian .Uint32 (_ffg );_gea =_db .BigEndian .Uint32 (_gbgd );_cegd =_ggc &_gea ;_cegd |=_cegd <<1;_beb =_ggc |_gea ;_beb &=_beb <<1;_gea =_cegd |_beb ;_gea &=0xaaaaaaaa;_ggc =_gea |(_gea <<7);_ggfe =byte (_ggc >>24); +_gec =byte ((_ggc >>8)&0xff);_def =_bb +_daa ;if _def +1==len (_bec .Data )-1||_def +1>=_bb +_bec .RowStride {if _cf =_bec .SetByte (_def ,_eafc [_ggfe ]);_cf !=nil {return _e .Wrapf (_cf ,_edd ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_def );};}else {_aba =(uint16 (_eafc [_ggfe ])<<8)|uint16 (_eafc [_gec ]); +if _cf =_bec .setTwoBytes (_def ,_aba );_cf !=nil {return _e .Wrapf (_cf ,_edd ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_def ); +};_daa ++;};};};return nil ;};const (_dgfe shift =iota ;_ecde ;);func _agadg (_gfbd *_ac .Stack ,_babg ,_acdd ,_fgca ,_cgfde ,_cfegb int ,_febd *_aa .Rectangle )(_bgfb error ){const _eaade ="\u0070\u0075\u0073\u0068\u0046\u0069\u006c\u006c\u0053\u0065\u0067m\u0065\u006e\u0074\u0042\u006f\u0075\u006e\u0064\u0069\u006eg\u0042\u006f\u0078"; +if _gfbd ==nil {return _e .Error (_eaade ,"\u006ei\u006c \u0073\u0074\u0061\u0063\u006b \u0070\u0072o\u0076\u0069\u0064\u0065\u0064");};if _febd ==nil {return _e .Error (_eaade ,"\u0070\u0072\u006f\u0076i\u0064\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0069\u006da\u0067e\u002e\u0052\u0065\u0063\u0074\u0061\u006eg\u006c\u0065"); +};_febd .Min .X =_ac .Min (_febd .Min .X ,_babg );_febd .Max .X =_ac .Max (_febd .Max .X ,_acdd );_febd .Min .Y =_ac .Min (_febd .Min .Y ,_fgca );_febd .Max .Y =_ac .Max (_febd .Max .Y ,_fgca );if !(_fgca +_cgfde >=0&&_fgca +_cgfde <=_cfegb ){return nil ; +};if _gfbd .Aux ==nil {return _e .Error (_eaade ,"a\u0075x\u0053\u0074\u0061\u0063\u006b\u0020\u006e\u006ft\u0020\u0064\u0065\u0066in\u0065\u0064");};var _bbgg *fillSegment ;_bgdae ,_aeff :=_gfbd .Aux .Pop ();if _aeff {if _bbgg ,_aeff =_bgdae .(*fillSegment ); +!_aeff {return _e .Error (_eaade ,"a\u0075\u0078\u0053\u0074\u0061\u0063k\u0020\u0064\u0061\u0074\u0061\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061 \u002a\u0066\u0069\u006c\u006c\u0053\u0065\u0067\u006d\u0065n\u0074");};}else {_bbgg =&fillSegment {}; +};_bbgg ._abbc =_babg ;_bbgg ._bcaf =_acdd ;_bbgg ._ffeg =_fgca ;_bbgg ._bedfb =_cgfde ;_gfbd .Push (_bbgg );return nil ;};func (_fdgbg *Bitmaps )SelectBySize (width ,height int ,tp LocationFilter ,relation SizeComparison )(_eded *Bitmaps ,_eaed error ){const _gdbe ="B\u0069t\u006d\u0061\u0070\u0073\u002e\u0053\u0065\u006ce\u0063\u0074\u0042\u0079Si\u007a\u0065"; +if _fdgbg ==nil {return nil ,_e .Error (_gdbe ,"\u0027\u0062\u0027 B\u0069\u0074\u006d\u0061\u0070\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};switch tp {case LocSelectWidth ,LocSelectHeight ,LocSelectIfEither ,LocSelectIfBoth :default:return nil ,_e .Errorf (_gdbe ,"\u0070\u0072\u006f\u0076\u0069d\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u006fc\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0064",tp ); +};switch relation {case SizeSelectIfLT ,SizeSelectIfGT ,SizeSelectIfLTE ,SizeSelectIfGTE ,SizeSelectIfEQ :default:return nil ,_e .Errorf (_gdbe ,"\u0069\u006e\u0076\u0061li\u0064\u0020\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025d\u0027",relation ); +};_ccag ,_eaed :=_fdgbg .makeSizeIndicator (width ,height ,tp ,relation );if _eaed !=nil {return nil ,_e .Wrap (_eaed ,_gdbe ,"");};_eded ,_eaed =_fdgbg .selectByIndicator (_ccag );if _eaed !=nil {return nil ,_e .Wrap (_eaed ,_gdbe ,"");};return _eded ,nil ; +};func (_ecbc *Boxes )selectWithIndicator (_bcfe *_ac .NumSlice )(_agfe *Boxes ,_fbbfb error ){const _eddd ="\u0042o\u0078\u0065\u0073\u002es\u0065\u006c\u0065\u0063\u0074W\u0069t\u0068I\u006e\u0064\u0069\u0063\u0061\u0074\u006fr";if _ecbc ==nil {return nil ,_e .Error (_eddd ,"b\u006f\u0078\u0065\u0073 '\u0062'\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064"); +};if _bcfe ==nil {return nil ,_e .Error (_eddd ,"\u0027\u006ea\u0027\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};if len (*_bcfe )!=len (*_ecbc ){return nil ,_e .Error (_eddd ,"\u0062\u006f\u0078\u0065\u0073\u0020\u0027\u0062\u0027\u0020\u0068\u0061\u0073\u0020\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0074\u0020s\u0069\u007a\u0065\u0020\u0074h\u0061\u006e \u0027\u006e\u0061\u0027"); +};var _abcd ,_dcfc int ;for _bfgc :=0;_bfgc < len (*_bcfe );_bfgc ++{if _abcd ,_fbbfb =_bcfe .GetInt (_bfgc );_fbbfb !=nil {return nil ,_e .Wrap (_fbbfb ,_eddd ,"\u0063\u0068\u0065\u0063\u006b\u0069\u006e\u0067\u0020c\u006f\u0075\u006e\u0074");};if _abcd ==1{_dcfc ++; +};};if _dcfc ==len (*_ecbc ){return _ecbc ,nil ;};_dad :=Boxes {};for _deee :=0;_deee < len (*_bcfe );_deee ++{_abcd =int ((*_bcfe )[_deee ]);if _abcd ==0{continue ;};_dad =append (_dad ,(*_ecbc )[_deee ]);};_agfe =&_dad ;return _agfe ,nil ;};func (_gdg *Bitmap )GetPixel (x ,y int )bool {_fab :=_gdg .GetByteIndex (x ,y ); +_becc :=_gdg .GetBitOffset (x );_fbf :=uint (7-_becc );if _fab > len (_gdg .Data )-1{_ca .Log .Debug ("\u0054\u0072\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0067\u0065\u0074\u0020\u0070\u0069\u0078\u0065\u006c\u0020o\u0075\u0074\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0064\u0061\u0074\u0061\u0020\u0072\u0061\u006e\u0067\u0065\u002e \u0078\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0079\u003a\u0027\u0025\u0064'\u002c\u0020\u0062m\u003a\u0020\u0027\u0025\u0073\u0027",x ,y ,_gdg ); +return false ;};if (_gdg .Data [_fab ]>>_fbf )&0x01>=1{return true ;};return false ;};func (_aafgf *Bitmap )nextOnPixel (_fgg ,_fbgdb int )(_dfde _aa .Point ,_fddc bool ,_ddc error ){const _befg ="n\u0065\u0078\u0074\u004f\u006e\u0050\u0069\u0078\u0065\u006c"; +_dfde ,_fddc ,_ddc =_aafgf .nextOnPixelLow (_aafgf .Width ,_aafgf .Height ,_aafgf .RowStride ,_fgg ,_fbgdb );if _ddc !=nil {return _dfde ,false ,_e .Wrap (_ddc ,_befg ,"");};return _dfde ,_fddc ,nil ;};const (CmbOpOr CombinationOperator =iota ;CmbOpAnd ; +CmbOpXor ;CmbOpXNor ;CmbOpReplace ;CmbOpNot ;);var _ _ff .Interface =&ClassedPoints {};func _fcgbg (_dbaf uint ,_fabd byte )byte {return _fabd >>_dbaf <<_dbaf };func TstFrameBitmapData ()[]byte {return _cbff .Data };func (_eeac *Points )Add (pt *Points )error {const _dgeb ="\u0050\u006f\u0069\u006e\u0074\u0073\u002e\u0041\u0064\u0064"; +if _eeac ==nil {return _e .Error (_dgeb ,"\u0070o\u0069n\u0074\u0073\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if pt ==nil {return _e .Error (_dgeb ,"a\u0072\u0067\u0075\u006d\u0065\u006et\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u006eo\u0074\u0020\u0064e\u0066i\u006e\u0065\u0064"); +};*_eeac =append (*_eeac ,*pt ...);return nil ;};func (_afb *Bitmap )SetPadBits (value int ){_afb .setPadBits (value )};type Color int ;func _edcf (_ebfb *Bitmap ,_bfde ,_gaa ,_gcgf ,_afbed int ,_fccf RasterOperator ){if _bfde < 0{_gcgf +=_bfde ;_bfde =0; +};_dafb :=_bfde +_gcgf -_ebfb .Width ;if _dafb > 0{_gcgf -=_dafb ;};if _gaa < 0{_afbed +=_gaa ;_gaa =0;};_gfabb :=_gaa +_afbed -_ebfb .Height ;if _gfabb > 0{_afbed -=_gfabb ;};if _gcgf <=0||_afbed <=0{return ;};if (_bfde &7)==0{_acbb (_ebfb ,_bfde ,_gaa ,_gcgf ,_afbed ,_fccf ); +}else {_bbfda (_ebfb ,_bfde ,_gaa ,_gcgf ,_afbed ,_fccf );};};func Dilate (d *Bitmap ,s *Bitmap ,sel *Selection )(*Bitmap ,error ){return _caagg (d ,s ,sel )};func _eeege (_gbec ...MorphProcess )(_dfba error ){const _fcdc ="v\u0065r\u0069\u0066\u0079\u004d\u006f\u0072\u0070\u0068P\u0072\u006f\u0063\u0065ss\u0065\u0073"; +var _eegf ,_fdgb int ;for _cbeg ,_aaca :=range _gbec {if _dfba =_aaca .verify (_cbeg ,&_eegf ,&_fdgb );_dfba !=nil {return _e .Wrap (_dfba ,_fcdc ,"");};};if _fdgb !=0&&_eegf !=0{return _e .Error (_fcdc ,"\u004d\u006f\u0072\u0070\u0068\u0020\u0073\u0065\u0071\u0075\u0065n\u0063\u0065\u0020\u002d\u0020\u0062\u006f\u0072d\u0065r\u0020\u0061\u0064\u0064\u0065\u0064\u0020\u0062\u0075\u0074\u0020\u006e\u0065\u0074\u0020\u0072\u0065\u0064u\u0063\u0074\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020\u0030"); +};return nil ;};func _cbdc (_cbeba ,_acfg *Bitmap ,_caed *Selection )(*Bitmap ,error ){const _adggf ="\u006f\u0070\u0065\u006e";var _bdg error ;_cbeba ,_bdg =_gebfg (_cbeba ,_acfg ,_caed );if _bdg !=nil {return nil ,_e .Wrap (_bdg ,_adggf ,"");};_cfbg ,_bdg :=_cfgc (nil ,_acfg ,_caed ); +if _bdg !=nil {return nil ,_e .Wrap (_bdg ,_adggf ,"");};_ ,_bdg =_caagg (_cbeba ,_cfbg ,_caed );if _bdg !=nil {return nil ,_e .Wrap (_bdg ,_adggf ,"");};return _cbeba ,nil ;};type Point struct{X ,Y float32 ;};func (_geagb *Bitmaps )SortByHeight (){_ebbbd :=(*byHeight )(_geagb ); +_ff .Sort (_ebbbd )};func (_eff *Bitmap )AddBorderGeneral (left ,right ,top ,bot int ,val int )(*Bitmap ,error ){return _eff .addBorderGeneral (left ,right ,top ,bot ,val );};func (_ffea *Bitmaps )makeSizeIndicator (_fcag ,_ccfc int ,_bcbbec LocationFilter ,_ggaf SizeComparison )(_beedb *_ac .NumSlice ,_egeb error ){const _dgebc ="\u0042i\u0074\u006d\u0061\u0070s\u002e\u006d\u0061\u006b\u0065S\u0069z\u0065I\u006e\u0064\u0069\u0063\u0061\u0074\u006fr"; +if _ffea ==nil {return nil ,_e .Error (_dgebc ,"\u0062\u0069\u0074ma\u0070\u0073\u0020\u0027\u0062\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};switch _bcbbec {case LocSelectWidth ,LocSelectHeight ,LocSelectIfEither ,LocSelectIfBoth :default:return nil ,_e .Errorf (_dgebc ,"\u0070\u0072\u006f\u0076\u0069d\u0065\u0064\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u006fc\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0064",_bcbbec ); +};switch _ggaf {case SizeSelectIfLT ,SizeSelectIfGT ,SizeSelectIfLTE ,SizeSelectIfGTE ,SizeSelectIfEQ :default:return nil ,_e .Errorf (_dgebc ,"\u0069\u006e\u0076\u0061li\u0064\u0020\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0027\u0025d\u0027",_ggaf ); +};_beedb =&_ac .NumSlice {};var (_cccc ,_ggba ,_dddb int ;_gggc *Bitmap ;);for _ ,_gggc =range _ffea .Values {_cccc =0;_ggba ,_dddb =_gggc .Width ,_gggc .Height ;switch _bcbbec {case LocSelectWidth :if (_ggaf ==SizeSelectIfLT &&_ggba < _fcag )||(_ggaf ==SizeSelectIfGT &&_ggba > _fcag )||(_ggaf ==SizeSelectIfLTE &&_ggba <=_fcag )||(_ggaf ==SizeSelectIfGTE &&_ggba >=_fcag )||(_ggaf ==SizeSelectIfEQ &&_ggba ==_fcag ){_cccc =1; +};case LocSelectHeight :if (_ggaf ==SizeSelectIfLT &&_dddb < _ccfc )||(_ggaf ==SizeSelectIfGT &&_dddb > _ccfc )||(_ggaf ==SizeSelectIfLTE &&_dddb <=_ccfc )||(_ggaf ==SizeSelectIfGTE &&_dddb >=_ccfc )||(_ggaf ==SizeSelectIfEQ &&_dddb ==_ccfc ){_cccc =1; +};case LocSelectIfEither :if (_ggaf ==SizeSelectIfLT &&(_ggba < _fcag ||_dddb < _ccfc ))||(_ggaf ==SizeSelectIfGT &&(_ggba > _fcag ||_dddb > _ccfc ))||(_ggaf ==SizeSelectIfLTE &&(_ggba <=_fcag ||_dddb <=_ccfc ))||(_ggaf ==SizeSelectIfGTE &&(_ggba >=_fcag ||_dddb >=_ccfc ))||(_ggaf ==SizeSelectIfEQ &&(_ggba ==_fcag ||_dddb ==_ccfc )){_cccc =1; +};case LocSelectIfBoth :if (_ggaf ==SizeSelectIfLT &&(_ggba < _fcag &&_dddb < _ccfc ))||(_ggaf ==SizeSelectIfGT &&(_ggba > _fcag &&_dddb > _ccfc ))||(_ggaf ==SizeSelectIfLTE &&(_ggba <=_fcag &&_dddb <=_ccfc ))||(_ggaf ==SizeSelectIfGTE &&(_ggba >=_fcag &&_dddb >=_ccfc ))||(_ggaf ==SizeSelectIfEQ &&(_ggba ==_fcag &&_dddb ==_ccfc )){_cccc =1; +};};_beedb .AddInt (_cccc );};return _beedb ,nil ;};func TstRSymbol (t *_f .T ,scale ...int )*Bitmap {_baba ,_cceg :=NewWithData (4,5,[]byte {0xF0,0x90,0xF0,0xA0,0x90});_d .NoError (t ,_cceg );return TstGetScaledSymbol (t ,_baba ,scale ...);};func _eeabd (_bffa ,_gabe byte ,_afba CombinationOperator )byte {switch _afba {case CmbOpOr :return _gabe |_bffa ; +case CmbOpAnd :return _gabe &_bffa ;case CmbOpXor :return _gabe ^_bffa ;case CmbOpXNor :return ^(_gabe ^_bffa );case CmbOpNot :return ^(_gabe );default:return _gabe ;};};func (_cbafc *Bitmaps )CountPixels ()*_ac .NumSlice {_fbbef :=&_ac .NumSlice {};for _ ,_fggg :=range _cbafc .Values {_fbbef .AddInt (_fggg .CountPixels ()); +};return _fbbef ;};func Blit (src *Bitmap ,dst *Bitmap ,x ,y int ,op CombinationOperator )error {var _gdaf ,_eag int ;_gbd :=src .RowStride -1;if x < 0{_eag =-x ;x =0;}else if x +src .Width > dst .Width {_gbd -=src .Width +x -dst .Width ;};if y < 0{_gdaf =-y ; +y =0;_eag +=src .RowStride ;_gbd +=src .RowStride ;}else if y +src .Height > dst .Height {_gdaf =src .Height +y -dst .Height ;};var (_feca int ;_abb error ;);_cfbe :=x &0x07;_fffdf :=8-_cfbe ;_fffe :=src .Width &0x07;_ceba :=_fffdf -_fffe ;_decf :=_fffdf &0x07!=0; +_aedg :=src .Width <=((_gbd -_eag )<<3)+_fffdf ;_bbf :=dst .GetByteIndex (x ,y );_bfff :=_gdaf +dst .Height ;if src .Height > _bfff {_feca =_bfff ;}else {_feca =src .Height ;};switch {case !_decf :_abb =_ceec (src ,dst ,_gdaf ,_feca ,_bbf ,_eag ,_gbd ,op ); +case _aedg :_abb =_bac (src ,dst ,_gdaf ,_feca ,_bbf ,_eag ,_gbd ,_ceba ,_cfbe ,_fffdf ,op );default:_abb =_ddcd (src ,dst ,_gdaf ,_feca ,_bbf ,_eag ,_gbd ,_ceba ,_cfbe ,_fffdf ,op ,_fffe );};return _abb ;};func (_cdcc *Bitmap )RemoveBorderGeneral (left ,right ,top ,bot int )(*Bitmap ,error ){return _cdcc .removeBorderGeneral (left ,right ,top ,bot ); +};func (_ecgga *ClassedPoints )validateIntSlice ()error {const _cfbgb ="\u0076\u0061l\u0069\u0064\u0061t\u0065\u0049\u006e\u0074\u0053\u006c\u0069\u0063\u0065";for _ ,_ggdff :=range _ecgga .IntSlice {if _ggdff >=(_ecgga .Points .Size ()){return _e .Errorf (_cfbgb ,"c\u006c\u0061\u0073\u0073\u0020\u0069\u0064\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0076\u0061\u006ci\u0064 \u0069\u006e\u0064\u0065x\u0020\u0069n\u0020\u0074\u0068\u0065\u0020\u0070\u006f\u0069\u006e\u0074\u0073\u0020\u006f\u0066\u0020\u0073\u0069\u007a\u0065\u003a\u0020\u0025\u0064",_ggdff ,_ecgga .Points .Size ()); +};};return nil ;};func (_bbdf *Bitmap )GetByte (index int )(byte ,error ){if index > len (_bbdf .Data )-1||index < 0{return 0,_e .Errorf ("\u0047e\u0074\u0042\u0079\u0074\u0065","\u0069\u006e\u0064\u0065x:\u0020\u0025\u0064\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006eg\u0065",index ); +};return _bbdf .Data [index ],nil ;};type byWidth Bitmaps ;func _eced (_gff ,_eed int )*Bitmap {return &Bitmap {Width :_gff ,Height :_eed ,RowStride :(_gff +7)>>3};};const (SelDontCare SelectionValue =iota ;SelHit ;SelMiss ;);const (AsymmetricMorphBC BoundaryCondition =iota ; +SymmetricMorphBC ;);func (_gaaf *Bitmaps )SelectByIndexes (idx []int )(*Bitmaps ,error ){const _bcad ="B\u0069\u0074\u006d\u0061\u0070\u0073.\u0053\u006f\u0072\u0074\u0049\u006e\u0064\u0065\u0078e\u0073\u0042\u0079H\u0065i\u0067\u0068\u0074";_abdgb ,_dcdb :=_gaaf .selectByIndexes (idx ); +if _dcdb !=nil {return nil ,_e .Wrap (_dcdb ,_bcad ,"");};return _abdgb ,nil ;};func (_gcadd *Bitmaps )AddBox (box *_aa .Rectangle ){_gcadd .Boxes =append (_gcadd .Boxes ,box )};type Bitmaps struct{Values []*Bitmap ;Boxes []*_aa .Rectangle ;};func _gebfg (_ceece ,_dega *Bitmap ,_eedg *Selection )(*Bitmap ,error ){const _decfb ="\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u004d\u006f\u0072\u0070\u0068A\u0072\u0067\u0073\u0032"; +var _bfcc ,_geaa int ;if _dega ==nil {return nil ,_e .Error (_decfb ,"s\u006fu\u0072\u0063\u0065\u0020\u0062\u0069\u0074\u006da\u0070\u0020\u0069\u0073 n\u0069\u006c");};if _eedg ==nil {return nil ,_e .Error (_decfb ,"\u0073e\u006c \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};_bfcc =_eedg .Width ;_geaa =_eedg .Height ;if _bfcc ==0||_geaa ==0{return nil ,_e .Error (_decfb ,"\u0073\u0065\u006c\u0020\u006f\u0066\u0020\u0073\u0069\u007a\u0065\u0020\u0030");};if _ceece ==nil {return _dega .createTemplate (),nil ;};if _cbeea :=_ceece .resizeImageData (_dega ); +_cbeea !=nil {return nil ,_cbeea ;};return _ceece ,nil ;};func _ffb (_ageb ,_gefb *Bitmap ,_cefa CombinationOperator )*Bitmap {_afgfe :=New (_ageb .Width ,_ageb .Height );for _gedf :=0;_gedf < len (_afgfe .Data );_gedf ++{_afgfe .Data [_gedf ]=_eeabd (_ageb .Data [_gedf ],_gefb .Data [_gedf ],_cefa ); +};return _afgfe ;};func TstNSymbol (t *_f .T ,scale ...int )*Bitmap {_dgcg ,_cdbaa :=NewWithData (4,5,[]byte {0x90,0xD0,0xB0,0x90,0x90});_d .NoError (t ,_cdbaa );return TstGetScaledSymbol (t ,_dgcg ,scale ...);};func SelCreateBrick (h ,w int ,cy ,cx int ,tp SelectionValue )*Selection {_ffdb :=_ggdga (h ,w ,""); +_ffdb .setOrigin (cy ,cx );var _aaad ,_addbb int ;for _aaad =0;_aaad < h ;_aaad ++{for _addbb =0;_addbb < w ;_addbb ++{_ffdb .Data [_aaad ][_addbb ]=tp ;};};return _ffdb ;};func TstImageBitmapInverseData ()[]byte {_efab :=_gabd .Copy ();_efab .InverseData (); +return _efab .Data ;};func (_bbag *Bitmaps )GroupByHeight ()(*BitmapsArray ,error ){const _fcdcc ="\u0047\u0072\u006f\u0075\u0070\u0042\u0079\u0048\u0065\u0069\u0067\u0068\u0074";if len (_bbag .Values )==0{return nil ,_e .Error (_fcdcc ,"\u006eo\u0020v\u0061\u006c\u0075\u0065\u0073 \u0070\u0072o\u0076\u0069\u0064\u0065\u0064"); +};_bafg :=&BitmapsArray {};_bbag .SortByHeight ();_ebeg :=-1;_fecb :=-1;for _eegfb :=0;_eegfb < len (_bbag .Values );_eegfb ++{_cbdg :=_bbag .Values [_eegfb ].Height ;if _cbdg > _ebeg {_ebeg =_cbdg ;_fecb ++;_bafg .Values =append (_bafg .Values ,&Bitmaps {}); +};_bafg .Values [_fecb ].AddBitmap (_bbag .Values [_eegfb ]);};return _bafg ,nil ;};func (_gfc *Bitmap )addPadBits ()(_dbcd error ){const _fbge ="\u0062\u0069\u0074\u006d\u0061\u0070\u002e\u0061\u0064\u0064\u0050\u0061d\u0042\u0069\u0074\u0073";_effc :=_gfc .Width %8; +if _effc ==0{return nil ;};_bedc :=_gfc .Width /8;_fdac :=_ce .NewReader (_gfc .Data );_cfgd :=make ([]byte ,_gfc .Height *_gfc .RowStride );_cdccd :=_ce .NewWriterMSB (_cfgd );_abdc :=make ([]byte ,_bedc );var (_caf int ;_afbe uint64 ;);for _caf =0;_caf < _gfc .Height ; +_caf ++{if _ ,_dbcd =_fdac .Read (_abdc );_dbcd !=nil {return _e .Wrap (_dbcd ,_fbge ,"\u0066u\u006c\u006c\u0020\u0062\u0079\u0074e");};if _ ,_dbcd =_cdccd .Write (_abdc );_dbcd !=nil {return _e .Wrap (_dbcd ,_fbge ,"\u0066\u0075\u006c\u006c\u0020\u0062\u0079\u0074\u0065\u0073"); +};if _afbe ,_dbcd =_fdac .ReadBits (byte (_effc ));_dbcd !=nil {return _e .Wrap (_dbcd ,_fbge ,"\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0062\u0069\u0074\u0073");};if _dbcd =_cdccd .WriteByte (byte (_afbe )<=_baad .IntSlice .Size (){return 0,_e .Errorf (_bbef ,"\u0069\u003a\u0020\u0027\u0025\u0064\u0027 \u0069\u0073\u0020o\u0075\u0074\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0049\u006e\u0074\u0053\u006c\u0069\u0063\u0065",i ); +};return int (_baad .XAtIndex (i )),nil ;};func Copy (d ,s *Bitmap )(*Bitmap ,error ){return _cdcf (d ,s )};func _ceec (_fca ,_efc *Bitmap ,_eaba ,_fabb ,_dff ,_aagge ,_ffdd int ,_gdfg CombinationOperator )error {var _bdc int ;_agc :=func (){_bdc ++;_dff +=_efc .RowStride ; +_aagge +=_fca .RowStride ;_ffdd +=_fca .RowStride };for _bdc =_eaba ;_bdc < _fabb ;_agc (){_aedb :=_dff ;for _gfcc :=_aagge ;_gfcc <=_ffdd ;_gfcc ++{_eadc ,_bgbg :=_efc .GetByte (_aedb );if _bgbg !=nil {return _bgbg ;};_cfa ,_bgbg :=_fca .GetByte (_gfcc ); +if _bgbg !=nil {return _bgbg ;};if _bgbg =_efc .SetByte (_aedb ,_eeabd (_eadc ,_cfa ,_gdfg ));_bgbg !=nil {return _bgbg ;};_aedb ++;};};return nil ;};func TstGetScaledSymbol (t *_f .T ,sm *Bitmap ,scale ...int )*Bitmap {if len (scale )==0{return sm ;}; +if scale [0]==1{return sm ;};_befga ,_eagg :=MorphSequence (sm ,MorphProcess {Operation :MopReplicativeBinaryExpansion ,Arguments :scale });_d .NoError (t ,_eagg );return _befga ;};func (_gdde *Bitmaps )SortByWidth (){_affg :=(*byWidth )(_gdde );_ff .Sort (_affg )}; +type Getter interface{GetBitmap ()*Bitmap ;};func (_eadcf *Boxes )Get (i int )(*_aa .Rectangle ,error ){const _cddb ="\u0042o\u0078\u0065\u0073\u002e\u0047\u0065t";if _eadcf ==nil {return nil ,_e .Error (_cddb ,"\u0027\u0042\u006f\u0078es\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};if i > len (*_eadcf )-1{return nil ,_e .Errorf (_cddb ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return (*_eadcf )[i ],nil ;};func TstVSymbol (t *_f .T ,scale ...int )*Bitmap {_cbae ,_dgcb :=NewWithData (5,5,[]byte {0x88,0x88,0x88,0x50,0x20}); +_d .NoError (t ,_dgcb );return TstGetScaledSymbol (t ,_cbae ,scale ...);};type LocationFilter int ;func (_agcd *Bitmaps )GetBox (i int )(*_aa .Rectangle ,error ){const _ded ="\u0047\u0065\u0074\u0042\u006f\u0078";if _agcd ==nil {return nil ,_e .Error (_ded ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0027\u0042\u0069\u0074\u006d\u0061\u0070s\u0027"); +};if i > len (_agcd .Boxes )-1{return nil ,_e .Errorf (_ded ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return _agcd .Boxes [i ],nil ;};func _begeb (_dbafg *Bitmap ,_ebdea *Bitmap ,_dege *Selection ,_gfcad **Bitmap )(*Bitmap ,error ){const _aedgc ="\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u004d\u006f\u0072\u0070\u0068A\u0072\u0067\u0073\u0031"; +if _ebdea ==nil {return nil ,_e .Error (_aedgc ,"\u004d\u006f\u0072\u0070\u0068\u0041\u0072\u0067\u0073\u0031\u0020'\u0073\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066i\u006e\u0065\u0064");};if _dege ==nil {return nil ,_e .Error (_aedgc ,"\u004d\u006f\u0072\u0068p\u0041\u0072\u0067\u0073\u0031\u0020\u0027\u0073\u0065\u006c'\u0020n\u006f\u0074\u0020\u0064\u0065\u0066\u0069n\u0065\u0064"); +};_fbef ,_gdbd :=_dege .Height ,_dege .Width ;if _fbef ==0||_gdbd ==0{return nil ,_e .Error (_aedgc ,"\u0073\u0065\u006c\u0065ct\u0069\u006f\u006e\u0020\u006f\u0066\u0020\u0073\u0069\u007a\u0065\u0020\u0030");};if _dbafg ==nil {_dbafg =_ebdea .createTemplate (); +*_gfcad =_ebdea ;return _dbafg ,nil ;};_dbafg .Width =_ebdea .Width ;_dbafg .Height =_ebdea .Height ;_dbafg .RowStride =_ebdea .RowStride ;_dbafg .Color =_ebdea .Color ;_dbafg .Data =make ([]byte ,_ebdea .RowStride *_ebdea .Height );if _dbafg ==_ebdea {*_gfcad =_ebdea .Copy (); +}else {*_gfcad =_ebdea ;};return _dbafg ,nil ;};func (_eecf *Bitmaps )Size ()int {return len (_eecf .Values )};func (_aag *Bitmap )CreateTemplate ()*Bitmap {return _aag .createTemplate ()};var _bdgd =[]byte {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0x78,0x27,0xC2,0x27,0x91,0x00,0x22,0x48,0x21,0x03,0x24,0x91,0x00,0x22,0x48,0x21,0x02,0xA4,0x95,0x00,0x22,0x48,0x21,0x02,0x64,0x9B,0x00,0x3C,0x78,0x21,0x02,0x27,0x91,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0xF8,0x00,0x00,0x00,0x00,0x00,0x7F,0xF8,0x00,0x00,0x00,0x00,0x00,0x63,0x18,0x00,0x00,0x00,0x00,0x00,0x63,0x18,0x00,0x00,0x00,0x00,0x00,0x63,0x18,0x00,0x00,0x00,0x00,0x00,0x7F,0xF8,0x00,0x00,0x00,0x00,0x00,0x15,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; +func New (width ,height int )*Bitmap {_bfdd :=_eced (width ,height );_bfdd .Data =make ([]byte ,height *_bfdd .RowStride );return _bfdd ;};func (_ced *Bitmap )GetByteIndex (x ,y int )int {return y *_ced .RowStride +(x >>3)};func (_cffe *BitmapsArray )AddBitmaps (bm *Bitmaps ){_cffe .Values =append (_cffe .Values ,bm )}; +func _cfee (_debe *_ac .Stack )(_bdcd *fillSegment ,_dgcd error ){const _cabcg ="\u0070\u006f\u0070\u0046\u0069\u006c\u006c\u0053\u0065g\u006d\u0065\u006e\u0074";if _debe ==nil {return nil ,_e .Error (_cabcg ,"\u006ei\u006c \u0073\u0074\u0061\u0063\u006b \u0070\u0072o\u0076\u0069\u0064\u0065\u0064"); +};if _debe .Aux ==nil {return nil ,_e .Error (_cabcg ,"a\u0075x\u0053\u0074\u0061\u0063\u006b\u0020\u006e\u006ft\u0020\u0064\u0065\u0066in\u0065\u0064");};_fabe ,_fced :=_debe .Pop ();if !_fced {return nil ,nil ;};_aeac ,_fced :=_fabe .(*fillSegment ); +if !_fced {return nil ,_e .Error (_cabcg ,"\u0073\u0074\u0061ck\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074\u0020c\u006fn\u0074a\u0069n\u0020\u002a\u0066\u0069\u006c\u006c\u0053\u0065\u0067\u006d\u0065\u006e\u0074");};_bdcd =&fillSegment {_aeac ._abbc ,_aeac ._bcaf ,_aeac ._ffeg +_aeac ._bedfb ,_aeac ._bedfb }; +_debe .Aux .Push (_aeac );return _bdcd ,nil ;};func MakePixelCentroidTab8 ()[]int {return _egdf ()};func TstASymbol (t *_f .T )*Bitmap {t .Helper ();_ecc :=New (6,6);_d .NoError (t ,_ecc .SetPixel (1,0,1));_d .NoError (t ,_ecc .SetPixel (2,0,1));_d .NoError (t ,_ecc .SetPixel (3,0,1)); +_d .NoError (t ,_ecc .SetPixel (4,0,1));_d .NoError (t ,_ecc .SetPixel (5,1,1));_d .NoError (t ,_ecc .SetPixel (1,2,1));_d .NoError (t ,_ecc .SetPixel (2,2,1));_d .NoError (t ,_ecc .SetPixel (3,2,1));_d .NoError (t ,_ecc .SetPixel (4,2,1));_d .NoError (t ,_ecc .SetPixel (5,2,1)); +_d .NoError (t ,_ecc .SetPixel (0,3,1));_d .NoError (t ,_ecc .SetPixel (5,3,1));_d .NoError (t ,_ecc .SetPixel (0,4,1));_d .NoError (t ,_ecc .SetPixel (5,4,1));_d .NoError (t ,_ecc .SetPixel (1,5,1));_d .NoError (t ,_ecc .SetPixel (2,5,1));_d .NoError (t ,_ecc .SetPixel (3,5,1)); +_d .NoError (t ,_ecc .SetPixel (4,5,1));_d .NoError (t ,_ecc .SetPixel (5,5,1));return _ecc ;};func (_cefb *Bitmap )setEightPartlyBytes (_dcdg ,_bcgd int ,_fed uint64 )(_bffe error ){var (_gaga byte ;_dbgad int ;);const _agbeb ="\u0073\u0065\u0074\u0045ig\u0068\u0074\u0050\u0061\u0072\u0074\u006c\u0079\u0042\u0079\u0074\u0065\u0073"; +for _cabc :=1;_cabc <=_bcgd ;_cabc ++{_dbgad =64-_cabc *8;_gaga =byte (_fed >>uint (_dbgad )&0xff);_ca .Log .Trace ("\u0074\u0065\u006d\u0070\u003a\u0020\u0025\u0030\u0038\u0062\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a %\u0064,\u0020\u0069\u0064\u0078\u003a\u0020\u0025\u0064\u002c\u0020\u0066\u0075l\u006c\u0042\u0079\u0074\u0065\u0073\u004e\u0075\u006d\u0062\u0065\u0072\u003a\u0020\u0025\u0064\u002c \u0073\u0068\u0069\u0066\u0074\u003a\u0020\u0025\u0064",_gaga ,_dcdg ,_dcdg +_cabc -1,_bcgd ,_dbgad ); +if _bffe =_cefb .SetByte (_dcdg +_cabc -1,_gaga );_bffe !=nil {return _e .Wrap (_bffe ,_agbeb ,"\u0066\u0075\u006c\u006c\u0042\u0079\u0074\u0065");};};_eaa :=_cefb .RowStride *8-_cefb .Width ;if _eaa ==0{return nil ;};_dbgad -=8;_gaga =byte (_fed >>uint (_dbgad )&0xff)<>24);_gge =byte ((_fgf >>8)&0xff);_add =_ffc +_cfc ;if _add +1==len (_gef .Data )-1||_add +1>=_ffc +_gef .RowStride {if _cbba =_gef .SetByte (_add ,_bff [_acd ]); +_cbba !=nil {return _e .Wrapf (_cbba ,_afg ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0025d",_add );};}else {_cgd =(uint16 (_bff [_acd ])<<8)|uint16 (_bff [_gge ]);if _cbba =_gef .setTwoBytes (_add ,_cgd );_cbba !=nil {return _e .Wrapf (_cbba ,_afg ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_add ); +};_cfc ++;};};};return nil ;};type SelectionValue int ;func TstCSymbol (t *_f .T )*Bitmap {t .Helper ();_dcfdd :=New (6,6);_d .NoError (t ,_dcfdd .SetPixel (1,0,1));_d .NoError (t ,_dcfdd .SetPixel (2,0,1));_d .NoError (t ,_dcfdd .SetPixel (3,0,1));_d .NoError (t ,_dcfdd .SetPixel (4,0,1)); +_d .NoError (t ,_dcfdd .SetPixel (0,1,1));_d .NoError (t ,_dcfdd .SetPixel (5,1,1));_d .NoError (t ,_dcfdd .SetPixel (0,2,1));_d .NoError (t ,_dcfdd .SetPixel (0,3,1));_d .NoError (t ,_dcfdd .SetPixel (0,4,1));_d .NoError (t ,_dcfdd .SetPixel (5,4,1)); +_d .NoError (t ,_dcfdd .SetPixel (1,5,1));_d .NoError (t ,_dcfdd .SetPixel (2,5,1));_d .NoError (t ,_dcfdd .SetPixel (3,5,1));_d .NoError (t ,_dcfdd .SetPixel (4,5,1));return _dcfdd ;};func _gf (_cbc ,_ec *Bitmap )(_gc error ){const _fd ="\u0065\u0078\u0070\u0061nd\u0042\u0069\u006e\u0061\u0072\u0079\u0046\u0061\u0063\u0074\u006f\u0072\u0034"; +_ee :=_ec .RowStride ;_de :=_cbc .RowStride ;_gg :=_ec .RowStride *4-_cbc .RowStride ;var (_ga ,_ggf byte ;_fa uint32 ;_fba ,_ae ,_fe ,_deb ,_dbg ,_fec ,_ggd int ;);for _fe =0;_fe < _ec .Height ;_fe ++{_fba =_fe *_ee ;_ae =4*_fe *_de ;for _deb =0;_deb < _ee ; +_deb ++{_ga =_ec .Data [_fba +_deb ];_fa =_bffba [_ga ];_fec =_ae +_deb *4;if _gg !=0&&(_deb +1)*4> _cbc .RowStride {for _dbg =_gg ;_dbg > 0;_dbg --{_ggf =byte ((_fa >>uint (_dbg *8))&0xff);_ggd =_fec +(_gg -_dbg );if _gc =_cbc .SetByte (_ggd ,_ggf );_gc !=nil {return _e .Wrapf (_gc ,_fd ,"D\u0069\u0066\u0066\u0065\u0072\u0065n\u0074\u0020\u0072\u006f\u0077\u0073\u0074\u0072\u0069d\u0065\u0073\u002e \u004b:\u0020\u0025\u0064",_dbg ); +};};}else if _gc =_cbc .setFourBytes (_fec ,_fa );_gc !=nil {return _e .Wrap (_gc ,_fd ,"");};if _gc =_cbc .setFourBytes (_ae +_deb *4,_bffba [_ec .Data [_fba +_deb ]]);_gc !=nil {return _e .Wrap (_gc ,_fd ,"");};};for _dbg =1;_dbg < 4;_dbg ++{for _deb =0; +_deb < _de ;_deb ++{if _gc =_cbc .SetByte (_ae +_dbg *_de +_deb ,_cbc .Data [_ae +_deb ]);_gc !=nil {return _e .Wrapf (_gc ,_fd ,"\u0063\u006f\u0070\u0079\u0020\u0027\u0071\u0075\u0061\u0064\u0072\u0061\u0062l\u0065\u0027\u0020\u006c\u0069\u006ee\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0062\u0079\u0074\u0065\u003a \u0027\u0025\u0064\u0027",_dbg ,_deb ); +};};};};return nil ;};func (_bfffe *ClassedPoints )ySortFunction ()func (_affa int ,_cedc int )bool {return func (_afaf ,_gfbb int )bool {return _bfffe .YAtIndex (_afaf )< _bfffe .YAtIndex (_gfbb )};};func Centroids (bms []*Bitmap )(*Points ,error ){_gded :=make ([]Point ,len (bms )); +_gccg :=_egdf ();_caff :=_dfbeb ();var _dggg error ;for _gbcgd ,_daeb :=range bms {_gded [_gbcgd ],_dggg =_daeb .centroid (_gccg ,_caff );if _dggg !=nil {return nil ,_dggg ;};};_dcbf :=Points (_gded );return &_dcbf ,nil ;};func (_afcff *Bitmap )setTwoBytes (_cebc int ,_ddb uint16 )error {if _cebc +1> len (_afcff .Data )-1{return _e .Errorf ("s\u0065\u0074\u0054\u0077\u006f\u0042\u0079\u0074\u0065\u0073","\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",_cebc ); +};_afcff .Data [_cebc ]=byte ((_ddb &0xff00)>>8);_afcff .Data [_cebc +1]=byte (_ddb &0xff);return nil ;};type MorphProcess struct{Operation MorphOperation ;Arguments []int ;};const (_ LocationFilter =iota ;LocSelectWidth ;LocSelectHeight ;LocSelectXVal ; +LocSelectYVal ;LocSelectIfEither ;LocSelectIfBoth ;);func (_dcceg *BitmapsArray )GetBox (i int )(*_aa .Rectangle ,error ){const _gbcga ="\u0042\u0069\u0074\u006dap\u0073\u0041\u0072\u0072\u0061\u0079\u002e\u0047\u0065\u0074\u0042\u006f\u0078";if _dcceg ==nil {return nil ,_e .Error (_gbcga ,"p\u0072\u006f\u0076\u0069\u0064\u0065d\u0020\u006e\u0069\u006c\u0020\u0027\u0042\u0069\u0074m\u0061\u0070\u0073A\u0072r\u0061\u0079\u0027"); +};if i > len (_dcceg .Boxes )-1{return nil ,_e .Errorf (_gbcga ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i );};return _dcceg .Boxes [i ],nil ;};func _cbfg (_fagg *Bitmap ,_eddf int )(*Bitmap ,error ){const _eaabg ="\u0065x\u0070a\u006e\u0064\u0052\u0065\u0070\u006c\u0069\u0063\u0061\u0074\u0065"; +if _fagg ==nil {return nil ,_e .Error (_eaabg ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _eddf <=0{return nil ,_e .Error (_eaabg ,"i\u006e\u0076\u0061\u006cid\u0020f\u0061\u0063\u0074\u006f\u0072 \u002d\u0020\u003c\u003d\u0020\u0030"); +};if _eddf ==1{_afee ,_aefa :=_cdcf (nil ,_fagg );if _aefa !=nil {return nil ,_e .Wrap (_aefa ,_eaabg ,"\u0066\u0061\u0063\u0074\u006f\u0072\u0020\u003d\u0020\u0031");};return _afee ,nil ;};_fgeb ,_eeega :=_adgf (_fagg ,_eddf ,_eddf );if _eeega !=nil {return nil ,_e .Wrap (_eeega ,_eaabg ,""); +};return _fgeb ,nil ;};func _aada (_cca ,_ffe *Bitmap ,_abg int ,_cbb []byte ,_agad int )(_aadad error ){const _befc ="\u0072\u0065\u0064uc\u0065\u0052\u0061\u006e\u006b\u0042\u0069\u006e\u0061\u0072\u0079\u0032\u004c\u0065\u0076\u0065\u006c\u0031";var (_gda ,_gbb ,_dbe ,_aeb ,_fg ,_ggbc ,_bfd ,_fdd int ; +_bea ,_fbe uint32 ;_gbgb ,_fddb byte ;_deg uint16 ;);_edcd :=make ([]byte ,4);_dde :=make ([]byte ,4);for _dbe =0;_dbe < _cca .Height -1;_dbe ,_aeb =_dbe +2,_aeb +1{_gda =_dbe *_cca .RowStride ;_gbb =_aeb *_ffe .RowStride ;for _fg ,_ggbc =0,0;_fg < _agad ; +_fg ,_ggbc =_fg +4,_ggbc +1{for _bfd =0;_bfd < 4;_bfd ++{_fdd =_gda +_fg +_bfd ;if _fdd <=len (_cca .Data )-1&&_fdd < _gda +_cca .RowStride {_edcd [_bfd ]=_cca .Data [_fdd ];}else {_edcd [_bfd ]=0x00;};_fdd =_gda +_cca .RowStride +_fg +_bfd ;if _fdd <=len (_cca .Data )-1&&_fdd < _gda +(2*_cca .RowStride ){_dde [_bfd ]=_cca .Data [_fdd ]; +}else {_dde [_bfd ]=0x00;};};_bea =_db .BigEndian .Uint32 (_edcd );_fbe =_db .BigEndian .Uint32 (_dde );_fbe |=_bea ;_fbe |=_fbe <<1;_fbe &=0xaaaaaaaa;_bea =_fbe |(_fbe <<7);_gbgb =byte (_bea >>24);_fddb =byte ((_bea >>8)&0xff);_fdd =_gbb +_ggbc ;if _fdd +1==len (_ffe .Data )-1||_fdd +1>=_gbb +_ffe .RowStride {_ffe .Data [_fdd ]=_cbb [_gbgb ]; +}else {_deg =(uint16 (_cbb [_gbgb ])<<8)|uint16 (_cbb [_fddb ]);if _aadad =_ffe .setTwoBytes (_fdd ,_deg );_aadad !=nil {return _e .Wrapf (_aadad ,_befc ,"s\u0065\u0074\u0074\u0069\u006e\u0067 \u0074\u0077\u006f\u0020\u0062\u0079t\u0065\u0073\u0020\u0066\u0061\u0069\u006ce\u0064\u002c\u0020\u0069\u006e\u0064\u0065\u0078\u003a\u0020%\u0064",_fdd ); +};_ggbc ++;};};};return nil ;};func _ecbgb (_agea *Bitmap ,_dfc ...MorphProcess )(_acad *Bitmap ,_ddgb error ){const _ebf ="\u006d\u006f\u0072\u0070\u0068\u0053\u0065\u0071\u0075\u0065\u006e\u0063\u0065";if _agea ==nil {return nil ,_e .Error (_ebf ,"\u006d\u006f\u0072\u0070\u0068\u0053\u0065\u0071\u0075\u0065\u006e\u0063\u0065 \u0073\u006f\u0075\u0072\u0063\u0065 \u0062\u0069\u0074\u006d\u0061\u0070\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); +};if len (_dfc )==0{return nil ,_e .Error (_ebf ,"m\u006f\u0072\u0070\u0068\u0053\u0065q\u0075\u0065\u006e\u0063\u0065\u002c \u0073\u0065\u0071\u0075\u0065\u006e\u0063e\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};if _ddgb =_eeege (_dfc ...); +_ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"");};var _gfcgd ,_abe ,_ffbf int ;_acad =_agea .Copy ();for _ ,_agdg :=range _dfc {switch _agdg .Operation {case MopDilation :_gfcgd ,_abe =_agdg .getWidthHeight ();_acad ,_ddgb =DilateBrick (nil ,_acad ,_gfcgd ,_abe ); +if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"");};case MopErosion :_gfcgd ,_abe =_agdg .getWidthHeight ();_acad ,_ddgb =_geag (nil ,_acad ,_gfcgd ,_abe );if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"");};case MopOpening :_gfcgd ,_abe =_agdg .getWidthHeight (); +_acad ,_ddgb =_gfgf (nil ,_acad ,_gfcgd ,_abe );if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"");};case MopClosing :_gfcgd ,_abe =_agdg .getWidthHeight ();_acad ,_ddgb =_facd (nil ,_acad ,_gfcgd ,_abe );if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,""); +};case MopRankBinaryReduction :_acad ,_ddgb =_fbb (_acad ,_agdg .Arguments ...);if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"");};case MopReplicativeBinaryExpansion :_acad ,_ddgb =_cbfg (_acad ,_agdg .Arguments [0]);if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,""); +};case MopAddBorder :_ffbf =_agdg .Arguments [0];_acad ,_ddgb =_acad .AddBorder (_ffbf ,0);if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"");};default:return nil ,_e .Error (_ebf ,"i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006d\u006fr\u0070\u0068\u004f\u0070\u0065\u0072\u0061ti\u006f\u006e\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0074\u006f t\u0068\u0065 \u0073\u0065\u0071\u0075\u0065\u006e\u0063\u0065"); +};};if _ffbf > 0{_acad ,_ddgb =_acad .RemoveBorder (_ffbf );if _ddgb !=nil {return nil ,_e .Wrap (_ddgb ,_ebf ,"\u0062\u006f\u0072\u0064\u0065\u0072\u0020\u003e\u0020\u0030");};};return _acad ,nil ;};var (_dfag =_aga ();_bffba =_cdf ();_cede =_fbc ();); +func _aga ()(_dcb [256]uint16 ){for _fdfd :=0;_fdfd < 256;_fdfd ++{if _fdfd &0x01!=0{_dcb [_fdfd ]|=0x3;};if _fdfd &0x02!=0{_dcb [_fdfd ]|=0xc;};if _fdfd &0x04!=0{_dcb [_fdfd ]|=0x30;};if _fdfd &0x08!=0{_dcb [_fdfd ]|=0xc0;};if _fdfd &0x10!=0{_dcb [_fdfd ]|=0x300; +};if _fdfd &0x20!=0{_dcb [_fdfd ]|=0xc00;};if _fdfd &0x40!=0{_dcb [_fdfd ]|=0x3000;};if _fdfd &0x80!=0{_dcb [_fdfd ]|=0xc000;};};return _dcb ;};func (_bcgf *Bitmaps )GetBitmap (i int )(*Bitmap ,error ){const _gafgc ="\u0047e\u0074\u0042\u0069\u0074\u006d\u0061p"; +if _bcgf ==nil {return nil ,_e .Error (_gafgc ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0042\u0069\u0074ma\u0070\u0073");};if i > len (_bcgf .Values )-1{return nil ,_e .Errorf (_gafgc ,"\u0069n\u0064\u0065\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006fu\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067\u0065",i ); +};return _bcgf .Values [i ],nil ;};func _geag (_ddac ,_afgd *Bitmap ,_ccge ,_fdcc int )(*Bitmap ,error ){const _gdgd ="\u0065\u0072\u006f\u0064\u0065\u0042\u0072\u0069\u0063\u006b";if _afgd ==nil {return nil ,_e .Error (_gdgd ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +};if _ccge < 1||_fdcc < 1{return nil ,_e .Error (_gdgd ,"\u0068\u0073\u0069\u007a\u0065\u0020\u0061\u006e\u0064\u0020\u0076\u0073\u0069\u007a\u0065\u0020\u0061\u0072e\u0020\u006e\u006f\u0074\u0020\u0067\u0072e\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006fr\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0031"); +};if _ccge ==1&&_fdcc ==1{_accd ,_aegaa :=_cdcf (_ddac ,_afgd );if _aegaa !=nil {return nil ,_e .Wrap (_aegaa ,_gdgd ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u0026\u0026 \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};return _accd ,nil ;};if _ccge ==1||_fdcc ==1{_eaab :=SelCreateBrick (_fdcc ,_ccge ,_fdcc /2,_ccge /2,SelHit );_gggb ,_caee :=_cfgc (_ddac ,_afgd ,_eaab );if _caee !=nil {return nil ,_e .Wrap (_caee ,_gdgd ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};return _gggb ,nil ;};_bedgf :=SelCreateBrick (1,_ccge ,0,_ccge /2,SelHit );_daf :=SelCreateBrick (_fdcc ,1,_fdcc /2,0,SelHit );_adbcf ,_bbcda :=_cfgc (nil ,_afgd ,_bedgf );if _bbcda !=nil {return nil ,_e .Wrap (_bbcda ,_gdgd ,"\u0031s\u0074\u0020\u0065\u0072\u006f\u0064e"); +};_ddac ,_bbcda =_cfgc (_ddac ,_adbcf ,_daf );if _bbcda !=nil {return nil ,_e .Wrap (_bbcda ,_gdgd ,"\u0032n\u0064\u0020\u0065\u0072\u006f\u0064e");};return _ddac ,nil ;};const (_ SizeSelection =iota ;SizeSelectByWidth ;SizeSelectByHeight ;SizeSelectByMaxDimension ; +SizeSelectByArea ;SizeSelectByPerimeter ;);type Selection struct{Height ,Width int ;Cx ,Cy int ;Name string ;Data [][]SelectionValue ;};func (_fded *ClassedPoints )Less (i ,j int )bool {return _fded ._acab (i ,j )};func _cdfd (_afbc ,_eeg *Bitmap ,_cbca ,_dacb int )(*Bitmap ,error ){const _dbdg ="\u0063\u006c\u006f\u0073\u0065\u0042\u0072\u0069\u0063\u006b"; +if _eeg ==nil {return nil ,_e .Error (_dbdg ,"\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064");};if _cbca < 1||_dacb < 1{return nil ,_e .Error (_dbdg ,"\u0068S\u0069\u007a\u0065\u0020\u0061\u006e\u0064\u0020\u0076\u0053\u0069z\u0065\u0020\u006e\u006f\u0074\u0020\u003e\u003d\u0020\u0031"); +};if _cbca ==1&&_dacb ==1{return _eeg .Copy (),nil ;};if _cbca ==1||_dacb ==1{_beed :=SelCreateBrick (_dacb ,_cbca ,_dacb /2,_cbca /2,SelHit );var _bdd error ;_afbc ,_bdd =_gedd (_afbc ,_eeg ,_beed );if _bdd !=nil {return nil ,_e .Wrap (_bdd ,_dbdg ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};return _afbc ,nil ;};_dce :=SelCreateBrick (1,_cbca ,0,_cbca /2,SelHit );_efca :=SelCreateBrick (_dacb ,1,_dacb /2,0,SelHit );_cgee ,_ddab :=_caagg (nil ,_eeg ,_dce );if _ddab !=nil {return nil ,_e .Wrap (_ddab ,_dbdg ,"\u0031\u0073\u0074\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); +};if _afbc ,_ddab =_caagg (_afbc ,_cgee ,_efca );_ddab !=nil {return nil ,_e .Wrap (_ddab ,_dbdg ,"\u0032\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065");};if _ ,_ddab =_cfgc (_cgee ,_afbc ,_dce );_ddab !=nil {return nil ,_e .Wrap (_ddab ,_dbdg ,"\u0031s\u0074\u0020\u0065\u0072\u006f\u0064e"); +};if _ ,_ddab =_cfgc (_afbc ,_cgee ,_efca );_ddab !=nil {return nil ,_e .Wrap (_ddab ,_dbdg ,"\u0032n\u0064\u0020\u0065\u0072\u006f\u0064e");};return _afbc ,nil ;};func (_ecb *Bitmap )SizesEqual (s *Bitmap )bool {if _ecb ==s {return true ;};if _ecb .Width !=s .Width ||_ecb .Height !=s .Height {return false ; +};return true ;};func init (){const _aaaad ="\u0062\u0069\u0074\u006dap\u0073\u002e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0069\u007a\u0061\u0074\u0069o\u006e";_cbff =New (50,40);var _gdbcd error ;_cbff ,_gdbcd =_cbff .AddBorder (2,1);if _gdbcd !=nil {panic (_e .Wrap (_gdbcd ,_aaaad ,"f\u0072\u0061\u006d\u0065\u0042\u0069\u0074\u006d\u0061\u0070")); +};_gabd ,_gdbcd =NewWithData (50,22,_bdgd );if _gdbcd !=nil {panic (_e .Wrap (_gdbcd ,_aaaad ,"i\u006d\u0061\u0067\u0065\u0042\u0069\u0074\u006d\u0061\u0070"));};};func TstWordBitmapWithSpaces (t *_f .T ,scale ...int )*Bitmap {_cedgf :=1;if len (scale )> 0{_cedgf =scale [0]; +};_afaa :=3;_afbaf :=9+7+15+2*_afaa +2*_afaa ;_bgfg :=5+_afaa +5+2*_afaa ;_gfegd :=New (_afbaf *_cedgf ,_bgfg *_cedgf );_cbafg :=&Bitmaps {};var _ccbag *int ;_afaa *=_cedgf ;_cbag :=_afaa ;_ccbag =&_cbag ;_ccab :=_afaa ;_bade :=TstDSymbol (t ,scale ...); +TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,_afaa );_bade =TstISymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstTSymbol (t ,scale ...); +TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,_afaa );_bade =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstWSymbol (t ,scale ...); +TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,0);*_ccbag =_afaa ;_ccab =5*_cedgf +_afaa ;_bade =TstOSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,_afaa ); +_bade =TstNSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstESymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstVSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf ); +_bade =TstESymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,1*_cedgf );_bade =TstRSymbol (t ,scale ...);TstAddSymbol (t ,_cbafg ,_bade ,_ccbag ,_ccab ,0);TstWriteSymbols (t ,_cbafg ,_gfegd );return _gfegd ;};func (_fagc *Bitmap )RemoveBorder (borderSize int )(*Bitmap ,error ){if borderSize ==0{return _fagc .Copy (),nil ; +};_baf ,_aagg :=_fagc .removeBorderGeneral (borderSize ,borderSize ,borderSize ,borderSize );if _aagg !=nil {return nil ,_e .Wrap (_aagg ,"\u0052\u0065\u006do\u0076\u0065\u0042\u006f\u0072\u0064\u0065\u0072","");};return _baf ,nil ;};func _ggee (_bcbd ,_dcgfg *Bitmap ,_ecgac ,_ace int )(_gafg error ){const _dfbfe ="\u0073e\u0065d\u0066\u0069\u006c\u006c\u0042i\u006e\u0061r\u0079\u004c\u006f\u0077\u0038"; +var (_aagb ,_eca ,_agffg ,_gafed int ;_edbc ,_bgfe ,_cbde ,_bafbc ,_bdcb ,_ffa ,_egfa ,_cgaad byte ;);for _aagb =0;_aagb < _ecgac ;_aagb ++{_agffg =_aagb *_bcbd .RowStride ;_gafed =_aagb *_dcgfg .RowStride ;for _eca =0;_eca < _ace ;_eca ++{if _edbc ,_gafg =_bcbd .GetByte (_agffg +_eca ); +_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0067e\u0074 \u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0062\u0079\u0074\u0065");};if _bgfe ,_gafg =_dcgfg .GetByte (_gafed +_eca );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0067\u0065\u0074\u0020\u006d\u0061\u0073\u006b\u0020\u0062\u0079\u0074\u0065"); +};if _aagb > 0{if _cbde ,_gafg =_bcbd .GetByte (_agffg -_bcbd .RowStride +_eca );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0069\u0020\u003e\u0020\u0030\u0020\u0062\u0079\u0074\u0065");};_edbc |=_cbde |(_cbde <<1)|(_cbde >>1);if _eca > 0{if _cgaad ,_gafg =_bcbd .GetByte (_agffg -_bcbd .RowStride +_eca -1); +_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0069\u0020\u003e\u00200 \u0026\u0026\u0020\u006a\u0020\u003e\u0020\u0030\u0020\u0062\u0079\u0074\u0065");};_edbc |=_cgaad <<7;};if _eca < _ace -1{if _cgaad ,_gafg =_bcbd .GetByte (_agffg -_bcbd .RowStride +_eca +1); +_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u006a\u0020<\u0020\u0077\u0070l\u0020\u002d\u0020\u0031\u0020\u0062\u0079\u0074\u0065");};_edbc |=_cgaad >>7;};};if _eca > 0{if _bafbc ,_gafg =_bcbd .GetByte (_agffg +_eca -1);_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u006a\u0020\u003e \u0030"); +};_edbc |=_bafbc <<7;};_edbc &=_bgfe ;if _edbc ==0||^_edbc ==0{if _gafg =_bcbd .SetByte (_agffg +_eca ,_edbc );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0073e\u0074t\u0069\u006e\u0067\u0020\u0065m\u0070\u0074y\u0020\u0062\u0079\u0074\u0065");};}; +for {_egfa =_edbc ;_edbc =(_edbc |(_edbc >>1)|(_edbc <<1))&_bgfe ;if (_edbc ^_egfa )==0{if _gafg =_bcbd .SetByte (_agffg +_eca ,_edbc );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0070\u0072\u0065\u0076 \u0062\u0079\u0074\u0065"); +};break ;};};};};for _aagb =_ecgac -1;_aagb >=0;_aagb --{_agffg =_aagb *_bcbd .RowStride ;_gafed =_aagb *_dcgfg .RowStride ;for _eca =_ace -1;_eca >=0;_eca --{if _edbc ,_gafg =_bcbd .GetByte (_agffg +_eca );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0072\u0065\u0076er\u0073\u0065\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0062\u0079\u0074\u0065"); +};if _bgfe ,_gafg =_dcgfg .GetByte (_gafed +_eca );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"r\u0065\u0076\u0065\u0072se\u0020g\u0065\u0074\u0020\u006d\u0061s\u006b\u0020\u0062\u0079\u0074\u0065");};if _aagb < _ecgac -1{if _bdcb ,_gafg =_bcbd .GetByte (_agffg +_bcbd .RowStride +_eca ); +_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0069\u0020\u003c\u0020h\u0020\u002d\u0020\u0031\u0020\u002d\u003e\u0020\u0067\u0065t\u0020s\u006f\u0075\u0072\u0063\u0065\u0020\u0062y\u0074\u0065");};_edbc |=_bdcb |(_bdcb <<1)|_bdcb >>1;if _eca > 0{if _cgaad ,_gafg =_bcbd .GetByte (_agffg +_bcbd .RowStride +_eca -1); +_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0069\u0020\u003c h\u002d\u0031\u0020\u0026\u0020\u006a\u0020\u003e\u00200\u0020-\u003e \u0067e\u0074\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0062\u0079\u0074\u0065");};_edbc |=_cgaad <<7;};if _eca < _ace -1{if _cgaad ,_gafg =_bcbd .GetByte (_agffg +_bcbd .RowStride +_eca +1); +_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0069\u0020\u003c\u0020\u0068\u002d\u0031\u0020\u0026\u0026\u0020\u006a\u0020\u003c\u0077\u0070\u006c\u002d\u0031\u0020\u002d\u003e\u0020\u0067e\u0074\u0020\u0073\u006f\u0075r\u0063\u0065 \u0062\u0079\u0074\u0065"); +};_edbc |=_cgaad >>7;};};if _eca < _ace -1{if _ffa ,_gafg =_bcbd .GetByte (_agffg +_eca +1);_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u006a\u0020<\u0020\u0077\u0070\u006c\u0020\u002d\u0031\u0020\u002d\u003e\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0075\u0072\u0063\u0065\u0020by\u0074\u0065"); +};_edbc |=_ffa >>7;};_edbc &=_bgfe ;if _edbc ==0||(^_edbc )==0{if _gafg =_bcbd .SetByte (_agffg +_eca ,_edbc );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"\u0073e\u0074 \u006d\u0061\u0073\u006b\u0065\u0064\u0020\u0062\u0079\u0074\u0065");};};for {_egfa =_edbc ; +_edbc =(_edbc |(_edbc >>1)|(_edbc <<1))&_bgfe ;if (_edbc ^_egfa )==0{if _gafg =_bcbd .SetByte (_agffg +_eca ,_edbc );_gafg !=nil {return _e .Wrap (_gafg ,_dfbfe ,"r\u0065\u0076\u0065\u0072se\u0020s\u0065\u0074\u0020\u0070\u0072e\u0076\u0020\u0062\u0079\u0074\u0065"); +};break ;};};};};return nil ;};func _bgge (_dcba ,_fabf *Bitmap ,_bgce ,_bbda int )(_fadg error ){const _bae ="\u0073e\u0065d\u0066\u0069\u006c\u006c\u0042i\u006e\u0061r\u0079\u004c\u006f\u0077\u0034";var (_cfgfc ,_beac ,_fdgc ,_bcbbe int ;_dgbbc ,_decb ,_fcac ,_aefe ,_bceb ,_ageda ,_agag byte ; +);for _cfgfc =0;_cfgfc < _bgce ;_cfgfc ++{_fdgc =_cfgfc *_dcba .RowStride ;_bcbbe =_cfgfc *_fabf .RowStride ;for _beac =0;_beac < _bbda ;_beac ++{_dgbbc ,_fadg =_dcba .GetByte (_fdgc +_beac );if _fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0066i\u0072\u0073\u0074\u0020\u0067\u0065t"); +};_decb ,_fadg =_fabf .GetByte (_bcbbe +_beac );if _fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0067\u0065\u0074");};if _cfgfc > 0{_fcac ,_fadg =_dcba .GetByte (_fdgc -_dcba .RowStride +_beac );if _fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0069\u0020\u003e \u0030"); +};_dgbbc |=_fcac ;};if _beac > 0{_aefe ,_fadg =_dcba .GetByte (_fdgc +_beac -1);if _fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u006a\u0020\u003e \u0030");};_dgbbc |=_aefe <<7;};_dgbbc &=_decb ;if _dgbbc ==0||(^_dgbbc )==0{if _fadg =_dcba .SetByte (_fdgc +_beac ,_dgbbc ); +_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"b\u0074\u0020\u003d\u003d 0\u0020|\u007c\u0020\u0028\u005e\u0062t\u0029\u0020\u003d\u003d\u0020\u0030");};continue ;};for {_agag =_dgbbc ;_dgbbc =(_dgbbc |(_dgbbc >>1)|(_dgbbc <<1))&_decb ;if (_dgbbc ^_agag )==0{if _fadg =_dcba .SetByte (_fdgc +_beac ,_dgbbc ); +_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0070\u0072\u0065\u0076 \u0062\u0079\u0074\u0065");};break ;};};};};for _cfgfc =_bgce -1;_cfgfc >=0;_cfgfc --{_fdgc =_cfgfc *_dcba .RowStride ;_bcbbe =_cfgfc *_fabf .RowStride ; +for _beac =_bbda -1;_beac >=0;_beac --{if _dgbbc ,_fadg =_dcba .GetByte (_fdgc +_beac );_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0020\u0066\u0069\u0072\u0073t\u0020\u0067\u0065\u0074");};if _decb ,_fadg =_fabf .GetByte (_bcbbe +_beac ); +_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"r\u0065\u0076\u0065\u0072se\u0020g\u0065\u0074\u0020\u006d\u0061s\u006b\u0020\u0062\u0079\u0074\u0065");};if _cfgfc < _bgce -1{if _bceb ,_fadg =_dcba .GetByte (_fdgc +_dcba .RowStride +_beac );_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0072\u0065v\u0065\u0072\u0073e\u0020\u0069\u0020\u003c\u0020\u0068\u0020\u002d\u0031"); +};_dgbbc |=_bceb ;};if _beac < _bbda -1{if _ageda ,_fadg =_dcba .GetByte (_fdgc +_beac +1);_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0072\u0065\u0076\u0065rs\u0065\u0020\u006a\u0020\u003c\u0020\u0077\u0070\u006c\u0020\u002d\u0020\u0031");};_dgbbc |=_ageda >>7; +};_dgbbc &=_decb ;if _dgbbc ==0||(^_dgbbc )==0{if _fadg =_dcba .SetByte (_fdgc +_beac ,_dgbbc );_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006d\u0061\u0073k\u0065\u0064\u0020\u0062\u0079\u0074\u0065\u0020\u0066\u0061i\u006c\u0065\u0064"); +};continue ;};for {_agag =_dgbbc ;_dgbbc =(_dgbbc |(_dgbbc >>1)|(_dgbbc <<1))&_decb ;if (_dgbbc ^_agag )==0{if _fadg =_dcba .SetByte (_fdgc +_beac ,_dgbbc );_fadg !=nil {return _e .Wrap (_fadg ,_bae ,"\u0072e\u0076\u0065\u0072\u0073e\u0020\u0073\u0065\u0074\u0074i\u006eg\u0020p\u0072\u0065\u0076\u0020\u0062\u0079\u0074e"); +};break ;};};};};return nil ;};func TstWSymbol (t *_f .T ,scale ...int )*Bitmap {_dggd ,_bffd :=NewWithData (5,5,[]byte {0x88,0x88,0xA8,0xD8,0x88});_d .NoError (t ,_bffd );return TstGetScaledSymbol (t ,_dggd ,scale ...);};func (_fcg *Bitmap )createTemplate ()*Bitmap {return &Bitmap {Width :_fcg .Width ,Height :_fcg .Height ,RowStride :_fcg .RowStride ,Color :_fcg .Color ,Text :_fcg .Text ,BitmapNumber :_fcg .BitmapNumber ,Special :_fcg .Special ,Data :make ([]byte ,len (_fcg .Data ))}; +};func TstDSymbol (t *_f .T ,scale ...int )*Bitmap {_cggc ,_agacf :=NewWithData (4,5,[]byte {0xf0,0x90,0x90,0x90,0xE0});_d .NoError (t ,_agacf );return TstGetScaledSymbol (t ,_cggc ,scale ...);};func (_degf *Bitmap )GetChocolateData ()[]byte {if _degf .Color ==Vanilla {_degf .inverseData (); +};return _degf .Data ;};func TstESymbol (t *_f .T ,scale ...int )*Bitmap {_cfcg ,_caeg :=NewWithData (4,5,[]byte {0xF0,0x80,0xE0,0x80,0xF0});_d .NoError (t ,_caeg );return TstGetScaledSymbol (t ,_cfcg ,scale ...);};func TstWriteSymbols (t *_f .T ,bms *Bitmaps ,src *Bitmap ){for _adff :=0; +_adff < bms .Size ();_adff ++{_bedcf :=bms .Values [_adff ];_eebb :=bms .Boxes [_adff ];_fagce :=src .RasterOperation (_eebb .Min .X ,_eebb .Min .Y ,_bedcf .Width ,_bedcf .Height ,PixSrc ,_bedcf ,0,0);_d .NoError (t ,_fagce );};};func _facd (_gedfe ,_cefaa *Bitmap ,_cebaf ,_fbfb int )(*Bitmap ,error ){const _fdfe ="\u0063\u006c\u006f\u0073\u0065\u0053\u0061\u0066\u0065B\u0072\u0069\u0063\u006b"; +if _cefaa ==nil {return nil ,_e .Error (_fdfe ,"\u0073\u006f\u0075\u0072\u0063\u0065\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _cebaf < 1||_fbfb < 1{return nil ,_e .Error (_fdfe ,"\u0068s\u0069\u007a\u0065\u0020\u0061\u006e\u0064\u0020\u0076\u0073\u0069z\u0065\u0020\u006e\u006f\u0074\u0020\u003e\u003d\u0020\u0031"); +};if _cebaf ==1&&_fbfb ==1{return _cdcf (_gedfe ,_cefaa );};if MorphBC ==SymmetricMorphBC {_bfdg ,_cabb :=_cdfd (_gedfe ,_cefaa ,_cebaf ,_fbfb );if _cabb !=nil {return nil ,_e .Wrap (_cabb ,_fdfe ,"\u0053\u0079m\u006d\u0065\u0074r\u0069\u0063\u004d\u006f\u0072\u0070\u0068\u0042\u0043"); +};return _bfdg ,nil ;};_dfab :=_aefd (_cebaf /2,_fbfb /2);_dacda :=8*((_dfab +7)/8);_bacf ,_eacg :=_cefaa .AddBorder (_dacda ,0);if _eacg !=nil {return nil ,_e .Wrapf (_eacg ,_fdfe ,"\u0042\u006f\u0072\u0064\u0065\u0072\u0053\u0069\u007ae\u003a\u0020\u0025\u0064",_dacda ); +};var _fccb ,_abba *Bitmap ;if _cebaf ==1||_fbfb ==1{_gbbc :=SelCreateBrick (_fbfb ,_cebaf ,_fbfb /2,_cebaf /2,SelHit );_fccb ,_eacg =_gedd (nil ,_bacf ,_gbbc );if _eacg !=nil {return nil ,_e .Wrap (_eacg ,_fdfe ,"\u0068S\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031\u0020\u007c\u007c \u0076\u0053\u0069\u007a\u0065\u0020\u003d\u003d\u0020\u0031"); +};}else {_dagf :=SelCreateBrick (1,_cebaf ,0,_cebaf /2,SelHit );_aebb ,_acg :=_caagg (nil ,_bacf ,_dagf );if _acg !=nil {return nil ,_e .Wrap (_acg ,_fdfe ,"\u0072\u0065\u0067\u0075la\u0072\u0020\u002d\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0064\u0069\u006c\u0061t\u0065"); +};_bbg :=SelCreateBrick (_fbfb ,1,_fbfb /2,0,SelHit );_fccb ,_acg =_caagg (nil ,_aebb ,_bbg );if _acg !=nil {return nil ,_e .Wrap (_acg ,_fdfe ,"\u0072\u0065\u0067ul\u0061\u0072\u0020\u002d\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0064\u0069\u006c\u0061\u0074\u0065"); +};if _ ,_acg =_cfgc (_aebb ,_fccb ,_dagf );_acg !=nil {return nil ,_e .Wrap (_acg ,_fdfe ,"r\u0065\u0067\u0075\u006car\u0020-\u0020\u0066\u0069\u0072\u0073t\u0020\u0065\u0072\u006f\u0064\u0065");};if _ ,_acg =_cfgc (_fccb ,_aebb ,_bbg );_acg !=nil {return nil ,_e .Wrap (_acg ,_fdfe ,"\u0072\u0065\u0067\u0075la\u0072\u0020\u002d\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0065\u0072\u006fd\u0065"); +};};if _abba ,_eacg =_fccb .RemoveBorder (_dacda );_eacg !=nil {return nil ,_e .Wrap (_eacg ,_fdfe ,"\u0072e\u0067\u0075\u006c\u0061\u0072");};if _gedfe ==nil {return _abba ,nil ;};if _ ,_eacg =_cdcf (_gedfe ,_abba );_eacg !=nil {return nil ,_eacg ;};return _gedfe ,nil ; +};const (PixSrc RasterOperator =0xc;PixDst RasterOperator =0xa;PixNotSrc RasterOperator =0x3;PixNotDst RasterOperator =0x5;PixClr RasterOperator =0x0;PixSet RasterOperator =0xf;PixSrcOrDst RasterOperator =0xe;PixSrcAndDst RasterOperator =0x8;PixSrcXorDst RasterOperator =0x6; +PixNotSrcOrDst RasterOperator =0xb;PixNotSrcAndDst RasterOperator =0x2;PixSrcOrNotDst RasterOperator =0xd;PixSrcAndNotDst RasterOperator =0x4;PixNotPixSrcOrDst RasterOperator =0x1;PixNotPixSrcAndDst RasterOperator =0x7;PixNotPixSrcXorDst RasterOperator =0x9; +PixPaint =PixSrcOrDst ;PixSubtract =PixNotSrcAndDst ;PixMask =PixSrcAndDst ;);func _adcba (_acdc ,_bbcf ,_cbdcb *Bitmap ,_dbda int )(*Bitmap ,error ){const _bcda ="\u0073\u0065\u0065\u0064\u0046\u0069\u006c\u006c\u0042i\u006e\u0061\u0072\u0079";if _bbcf ==nil {return nil ,_e .Error (_bcda ,"s\u006fu\u0072\u0063\u0065\u0020\u0062\u0069\u0074\u006da\u0070\u0020\u0069\u0073 n\u0069\u006c"); +};if _cbdcb ==nil {return nil ,_e .Error (_bcda ,"'\u006da\u0073\u006b\u0027\u0020\u0062\u0069\u0074\u006da\u0070\u0020\u0069\u0073 n\u0069\u006c");};if _dbda !=4&&_dbda !=8{return nil ,_e .Error (_bcda ,"\u0063\u006f\u006en\u0065\u0063\u0074\u0069v\u0069\u0074\u0079\u0020\u006e\u006f\u0074 \u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0034\u002c\u0038\u007d"); +};var _edddcd error ;_acdc ,_edddcd =_cdcf (_acdc ,_bbcf );if _edddcd !=nil {return nil ,_e .Wrap (_edddcd ,_bcda ,"\u0063o\u0070y\u0020\u0073\u006f\u0075\u0072c\u0065\u0020t\u006f\u0020\u0027\u0064\u0027");};_aggb :=_bbcf .createTemplate ();_cbdcb .setPadBits (0); +for _bcdc :=0;_bcdc < _decfc ;_bcdc ++{_aggb ,_edddcd =_cdcf (_aggb ,_acdc );if _edddcd !=nil {return nil ,_e .Wrapf (_edddcd ,_bcda ,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064",_bcdc );};if _edddcd =_fafaf (_acdc ,_cbdcb ,_dbda ); +_edddcd !=nil {return nil ,_e .Wrapf (_edddcd ,_bcda ,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064",_bcdc );};if _aggb .Equals (_acdc ){break ;};};return _acdc ,nil ;};func _cdcf (_fdcd ,_ccgd *Bitmap )(*Bitmap ,error ){if _ccgd ==nil {return nil ,_e .Error ("\u0063\u006f\u0070\u0079\u0042\u0069\u0074\u006d\u0061\u0070","\u0073o\u0075r\u0063\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +};if _ccgd ==_fdcd {return _fdcd ,nil ;};if _fdcd ==nil {_fdcd =_ccgd .createTemplate ();copy (_fdcd .Data ,_ccgd .Data );return _fdcd ,nil ;};_feag :=_fdcd .resizeImageData (_ccgd );if _feag !=nil {return nil ,_e .Wrap (_feag ,"\u0063\u006f\u0070\u0079\u0042\u0069\u0074\u006d\u0061\u0070",""); +};_fdcd .Text =_ccgd .Text ;copy (_fdcd .Data ,_ccgd .Data );return _fdcd ,nil ;};func (_gbf *Bitmap )CountPixels ()int {return _gbf .countPixels ()};func _dabc (_aafbf ,_ebde ,_fbbe *Bitmap )(*Bitmap ,error ){const _ccb ="\u0073\u0075\u0062\u0074\u0072\u0061\u0063\u0074"; +if _ebde ==nil {return nil ,_e .Error (_ccb ,"'\u0073\u0031\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};if _fbbe ==nil {return nil ,_e .Error (_ccb ,"'\u0073\u0032\u0027\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};var _fgaf error ;switch {case _aafbf ==_ebde :if _fgaf =_aafbf .RasterOperation (0,0,_ebde .Width ,_ebde .Height ,PixNotSrcAndDst ,_fbbe ,0,0); +_fgaf !=nil {return nil ,_e .Wrap (_fgaf ,_ccb ,"\u0064 \u003d\u003d\u0020\u0073\u0031");};case _aafbf ==_fbbe :if _fgaf =_aafbf .RasterOperation (0,0,_ebde .Width ,_ebde .Height ,PixNotSrcAndDst ,_ebde ,0,0);_fgaf !=nil {return nil ,_e .Wrap (_fgaf ,_ccb ,"\u0064 \u003d\u003d\u0020\u0073\u0032"); +};default:_aafbf ,_fgaf =_cdcf (_aafbf ,_ebde );if _fgaf !=nil {return nil ,_e .Wrap (_fgaf ,_ccb ,"");};if _fgaf =_aafbf .RasterOperation (0,0,_ebde .Width ,_ebde .Height ,PixNotSrcAndDst ,_fbbe ,0,0);_fgaf !=nil {return nil ,_e .Wrap (_fgaf ,_ccb ,"\u0064e\u0066\u0061\u0075\u006c\u0074"); +};};return _aafbf ,nil ;};func (_ccda *Selection )setOrigin (_dbcfc ,_efadg int ){_ccda .Cy ,_ccda .Cx =_dbcfc ,_efadg };func CorrelationScore (bm1 ,bm2 *Bitmap ,area1 ,area2 int ,delX ,delY float32 ,maxDiffW ,maxDiffH int ,tab []int )(_adcd float64 ,_egag error ){const _bbec ="\u0063\u006fr\u0072\u0065\u006ca\u0074\u0069\u006f\u006e\u0053\u0063\u006f\u0072\u0065"; +if bm1 ==nil ||bm2 ==nil {return 0,_e .Error (_bbec ,"p\u0072o\u0076\u0069\u0064\u0065\u0064\u0020\u006e\u0069l\u0020\u0062\u0069\u0074ma\u0070\u0073");};if tab ==nil {return 0,_e .Error (_bbec ,"\u0027\u0074\u0061\u0062\u0027\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064"); +};if area1 <=0||area2 <=0{return 0,_e .Error (_bbec ,"\u0061\u0072\u0065\u0061s\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0067r\u0065a\u0074\u0065\u0072\u0020\u0074\u0068\u0061n\u0020\u0030");};_deae ,_febb :=bm1 .Width ,bm1 .Height ;_dbfe ,_fage :=bm2 .Width ,bm2 .Height ; +_eae :=_ggce (_deae -_dbfe );if _eae > maxDiffW {return 0,nil ;};_fgdf :=_ggce (_febb -_fage );if _fgdf > maxDiffH {return 0,nil ;};var _aegd ,_dbdf int ;if delX >=0{_aegd =int (delX +0.5);}else {_aegd =int (delX -0.5);};if delY >=0{_dbdf =int (delY +0.5); +}else {_dbdf =int (delY -0.5);};_ccba :=_aefd (_dbdf ,0);_cbbf :=_gcg (_fage +_dbdf ,_febb );_gdff :=bm1 .RowStride *_ccba ;_edfa :=bm2 .RowStride *(_ccba -_dbdf );_bgbc :=_aefd (_aegd ,0);_abad :=_gcg (_dbfe +_aegd ,_deae );_fdba :=bm2 .RowStride ;var _gcag ,_ddda int ; +if _aegd >=8{_gcag =_aegd >>3;_gdff +=_gcag ;_bgbc -=_gcag <<3;_abad -=_gcag <<3;_aegd &=7;}else if _aegd <=-8{_ddda =-((_aegd +7)>>3);_edfa +=_ddda ;_fdba -=_ddda ;_aegd +=_ddda <<3;};if _bgbc >=_abad ||_ccba >=_cbbf {return 0,nil ;};_bbcd :=(_abad +7)>>3; +var (_ede ,_bcfb ,_afcb byte ;_cgge ,_gcad ,_geea int ;);switch {case _aegd ==0:for _geea =_ccba ;_geea < _cbbf ;_geea ,_gdff ,_edfa =_geea +1,_gdff +bm1 .RowStride ,_edfa +bm2 .RowStride {for _gcad =0;_gcad < _bbcd ;_gcad ++{_afcb =bm1 .Data [_gdff +_gcad ]&bm2 .Data [_edfa +_gcad ]; +_cgge +=tab [_afcb ];};};case _aegd > 0:if _fdba < _bbcd {for _geea =_ccba ;_geea < _cbbf ;_geea ,_gdff ,_edfa =_geea +1,_gdff +bm1 .RowStride ,_edfa +bm2 .RowStride {_ede ,_bcfb =bm1 .Data [_gdff ],bm2 .Data [_edfa ]>>uint (_aegd );_afcb =_ede &_bcfb ; +_cgge +=tab [_afcb ];for _gcad =1;_gcad < _fdba ;_gcad ++{_ede ,_bcfb =bm1 .Data [_gdff +_gcad ],(bm2 .Data [_edfa +_gcad ]>>uint (_aegd ))|(bm2 .Data [_edfa +_gcad -1]<>uint (_aegd ); +_afcb =_ede &_bcfb ;_cgge +=tab [_afcb ];for _gcad =1;_gcad < _bbcd ;_gcad ++{_ede =bm1 .Data [_gdff +_gcad ];_bcfb =(bm2 .Data [_edfa +_gcad ]>>uint (_aegd ))|(bm2 .Data [_edfa +_gcad -1]<>uint (8+_aegd );_afcb =_ede &_bcfb ;_cgge +=tab [_afcb ];};};}else {for _geea =_ccba ;_geea < _cbbf ;_geea ,_gdff ,_edfa =_geea +1,_gdff +bm1 .RowStride ,_edfa +bm2 .RowStride {for _gcad =0;_gcad < _bbcd -1;_gcad ++{_ede =bm1 .Data [_gdff +_gcad ]; +_bcfb =bm2 .Data [_edfa +_gcad ]<>uint (8+_aegd );_afcb =_ede &_bcfb ;_cgge +=tab [_afcb ];};_ede =bm1 .Data [_gdff +_gcad ];_bcfb =bm2 .Data [_edfa +_gcad ]<>16)< uint64 (_fce ){_ba =_fd .lpsExchange (stats ,_gg ,_fce );if _da :=_fd .renormalize ();_da !=nil {return 0,_da ;};}else {_fd ._fc -=uint64 (_fce )<<16; -if (_fd ._c &0x8000)==0{_ba =_fd .mpsExchange (stats ,_gg );if _bc :=_fd .renormalize ();_bc !=nil {return 0,_bc ;};}else {_ba =int (stats .getMps ());};};return _ba ,nil ;};func (_ggc *DecoderStats )Reset (){for _aag :=0;_aag < len (_ggc ._ddf );_aag ++{_ggc ._ddf [_aag ]=0; -_ggc ._bd [_aag ]=0;};};type Decoder struct{ContextSize []uint32 ;ReferedToContextSize []uint32 ;_bef *_ad .Reader ;_aa uint8 ;_fc uint64 ;_c uint32 ;_af int64 ;_dc int32 ;_g int32 ;_fg int64 ;};func (_afe *DecoderStats )cx ()byte {return _afe ._ddf [_afe ._dff ]}; -func (_ebg *Decoder )DecodeIAID (codeLen uint64 ,stats *DecoderStats )(int64 ,error ){_ebg ._af =1;var _dca uint64 ;for _dca =0;_dca < codeLen ;_dca ++{stats .SetIndex (int32 (_ebg ._af ));_gd ,_bcf :=_ebg .DecodeBit (stats );if _bcf !=nil {return 0,_bcf ; -};_ebg ._af =(_ebg ._af <<1)|int64 (_gd );};_fgd :=_ebg ._af -(1< _bag ._fg {if _ ,_gb :=_bag ._bef .Seek (-1,_d .SeekCurrent );_gb !=nil {return _gb ;};};_ab ,_baa :=_bag ._bef .ReadByte ();if _baa !=nil {return _baa ; -};_bag ._aa =_ab ;if _bag ._aa ==0xFF{_cb ,_bcd :=_bag ._bef .ReadByte ();if _bcd !=nil {return _bcd ;};if _cb > 0x8F{_bag ._fc +=0xFF00;_bag ._dc =8;if _ ,_dfc :=_bag ._bef .Seek (-2,_d .SeekCurrent );_dfc !=nil {return _dfc ;};}else {_bag ._fc +=uint64 (_cb )<<9; -_bag ._dc =7;};}else {_ab ,_baa =_bag ._bef .ReadByte ();if _baa !=nil {return _baa ;};_bag ._aa =_ab ;_bag ._fc +=uint64 (_bag ._aa )<<8;_bag ._dc =8;};_bag ._fc &=0xFFFFFFFFFF;return nil ;};func (_eb *Decoder )DecodeInt (stats *DecoderStats )(int32 ,error ){var (_daf ,_fde int32 ; -_cd ,_ggb ,_ag int ;_dd error ;);if stats ==nil {stats =NewStats (512,1);};_eb ._af =1;_ggb ,_dd =_eb .decodeIntBit (stats );if _dd !=nil {return 0,_dd ;};_cd ,_dd =_eb .decodeIntBit (stats );if _dd !=nil {return 0,_dd ;};if _cd ==1{_cd ,_dd =_eb .decodeIntBit (stats ); -if _dd !=nil {return 0,_dd ;};if _cd ==1{_cd ,_dd =_eb .decodeIntBit (stats );if _dd !=nil {return 0,_dd ;};if _cd ==1{_cd ,_dd =_eb .decodeIntBit (stats );if _dd !=nil {return 0,_dd ;};if _cd ==1{_cd ,_dd =_eb .decodeIntBit (stats );if _dd !=nil {return 0,_dd ; -};if _cd ==1{_ag =32;_fde =4436;}else {_ag =12;_fde =340;};}else {_ag =8;_fde =84;};}else {_ag =6;_fde =20;};}else {_ag =4;_fde =4;};}else {_ag =2;_fde =0;};for _df :=0;_df < _ag ;_df ++{_cd ,_dd =_eb .decodeIntBit (stats );if _dd !=nil {return 0,_dd ; -};_daf =(_daf <<1)|int32 (_cd );};_daf +=_fde ;if _ggb ==0{return _daf ,nil ;}else if _ggb ==1&&_daf > 0{return -_daf ,nil ;};return 0,_f .ErrOOB ;};func (_fa *Decoder )mpsExchange (_ffd *DecoderStats ,_gdf int32 )int {_aae :=_ffd ._bd [_ffd ._dff ];if _fa ._c < _be [_gdf ][0]{if _be [_gdf ][3]==1{_ffd .toggleMps (); -};_ffd .setEntry (int (_be [_gdf ][2]));return int (1-_aae );};_ffd .setEntry (int (_be [_gdf ][1]));return int (_aae );};func (_ge *Decoder )renormalize ()error {for {if _ge ._dc ==0{if _gec :=_ge .readByte ();_gec !=nil {return _gec ;};};_ge ._c <<=1; -_ge ._fc <<=1;_ge ._dc --;if (_ge ._c &0x8000)!=0{break ;};};_ge ._fc &=0xffffffff;return nil ;};func (_bb *DecoderStats )String ()string {_dcd :=&_a .Builder {};_dcd .WriteString (_ec .Sprintf ("S\u0074\u0061\u0074\u0073\u003a\u0020\u0020\u0025\u0064\u000a",len (_bb ._ddf ))); -for _ffa ,_ebf :=range _bb ._ddf {if _ebf !=0{_dcd .WriteString (_ec .Sprintf ("N\u006f\u0074\u0020\u007aer\u006f \u0061\u0074\u003a\u0020\u0025d\u0020\u002d\u0020\u0025\u0064\u000a",_ffa ,_ebf ));};};return _dcd .String ();};func (_gdg *DecoderStats )SetIndex (index int32 ){_gdg ._dff =index }; -type DecoderStats struct{_dff int32 ;_fed int32 ;_ddf []byte ;_bd []byte ;};func (_bacg *DecoderStats )Copy ()*DecoderStats {_ggdb :=&DecoderStats {_fed :_bacg ._fed ,_ddf :make ([]byte ,_bacg ._fed )};copy (_ggdb ._ddf ,_bacg ._ddf );return _ggdb ;};func NewStats (contextSize int32 ,index int32 )*DecoderStats {return &DecoderStats {_dff :index ,_fed :contextSize ,_ddf :make ([]byte ,contextSize ),_bd :make ([]byte ,contextSize )}; -};var (_be =[][4]uint32 {{0x5601,1,1,1},{0x3401,2,6,0},{0x1801,3,9,0},{0x0AC1,4,12,0},{0x0521,5,29,0},{0x0221,38,33,0},{0x5601,7,6,1},{0x5401,8,14,0},{0x4801,9,14,0},{0x3801,10,14,0},{0x3001,11,17,0},{0x2401,12,18,0},{0x1C01,13,20,0},{0x1601,29,21,0},{0x5601,15,14,1},{0x5401,16,14,0},{0x5101,17,15,0},{0x4801,18,16,0},{0x3801,19,17,0},{0x3401,20,18,0},{0x3001,21,19,0},{0x2801,22,19,0},{0x2401,23,20,0},{0x2201,24,21,0},{0x1C01,25,22,0},{0x1801,26,23,0},{0x1601,27,24,0},{0x1401,28,25,0},{0x1201,29,26,0},{0x1101,30,27,0},{0x0AC1,31,28,0},{0x09C1,32,29,0},{0x08A1,33,30,0},{0x0521,34,31,0},{0x0441,35,32,0},{0x02A1,36,33,0},{0x0221,37,34,0},{0x0141,38,35,0},{0x0111,39,36,0},{0x0085,40,37,0},{0x0049,41,38,0},{0x0025,42,39,0},{0x0015,43,40,0},{0x0009,44,41,0},{0x0005,45,42,0},{0x0001,45,43,0},{0x5601,46,46,0}}; -); \ No newline at end of file +package arithmetic ;import (_fe "fmt";_e "github.com/unidoc/unipdf/v3/common";_a "github.com/unidoc/unipdf/v3/internal/bitwise";_ab "github.com/unidoc/unipdf/v3/internal/jbig2/internal";_f "io";_cg "strings";);func (_dd *Decoder )renormalize ()error {for {if _dd ._abb ==0{if _fb :=_dd .readByte (); +_fb !=nil {return _fb ;};};_dd ._ed <<=1;_dd ._cf <<=1;_dd ._abb --;if (_dd ._ed &0x8000)!=0{break ;};};_dd ._cf &=0xffffffff;return nil ;};func NewStats (contextSize int32 ,index int32 )*DecoderStats {return &DecoderStats {_aba :index ,_gd :contextSize ,_ea :make ([]byte ,contextSize ),_acb :make ([]byte ,contextSize )}; +};func (_aab *Decoder )decodeIntBit (_dc *DecoderStats )(int ,error ){_dc .SetIndex (int32 (_aab ._d ));_egd ,_dcg :=_aab .DecodeBit (_dc );if _dcg !=nil {_e .Log .Debug ("\u0041\u0072\u0069\u0074\u0068\u006d\u0065t\u0069\u0063\u0044e\u0063\u006f\u0064e\u0072\u0020'\u0064\u0065\u0063\u006f\u0064\u0065I\u006etB\u0069\u0074\u0027\u002d\u003e\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0042\u0069\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_dcg ); +return _egd ,_dcg ;};if _aab ._d < 256{_aab ._d =((_aab ._d < _dbd ._db {if _ ,_de :=_dbd ._ffa .Seek (-1,_f .SeekCurrent );_de !=nil {return _de ;};};_fc ,_ac :=_dbd ._ffa .ReadByte ();if _ac !=nil {return _ac ;};_dbd ._ef =_fc ;if _dbd ._ef ==0xFF{_aad ,_dbb :=_dbd ._ffa .ReadByte (); +if _dbb !=nil {return _dbb ;};if _aad > 0x8F{_dbd ._cf +=0xFF00;_dbd ._abb =8;if _ ,_dg :=_dbd ._ffa .Seek (-2,_f .SeekCurrent );_dg !=nil {return _dg ;};}else {_dbd ._cf +=uint64 (_aad )<<9;_dbd ._abb =7;};}else {_fc ,_ac =_dbd ._ffa .ReadByte ();if _ac !=nil {return _ac ; +};_dbd ._ef =_fc ;_dbd ._cf +=uint64 (_dbd ._ef )<<8;_dbd ._abb =8;};_dbd ._cf &=0xFFFFFFFFFF;return nil ;};type DecoderStats struct{_aba int32 ;_gd int32 ;_ea []byte ;_acb []byte ;};var (_ff =[][4]uint32 {{0x5601,1,1,1},{0x3401,2,6,0},{0x1801,3,9,0},{0x0AC1,4,12,0},{0x0521,5,29,0},{0x0221,38,33,0},{0x5601,7,6,1},{0x5401,8,14,0},{0x4801,9,14,0},{0x3801,10,14,0},{0x3001,11,17,0},{0x2401,12,18,0},{0x1C01,13,20,0},{0x1601,29,21,0},{0x5601,15,14,1},{0x5401,16,14,0},{0x5101,17,15,0},{0x4801,18,16,0},{0x3801,19,17,0},{0x3401,20,18,0},{0x3001,21,19,0},{0x2801,22,19,0},{0x2401,23,20,0},{0x2201,24,21,0},{0x1C01,25,22,0},{0x1801,26,23,0},{0x1601,27,24,0},{0x1401,28,25,0},{0x1201,29,26,0},{0x1101,30,27,0},{0x0AC1,31,28,0},{0x09C1,32,29,0},{0x08A1,33,30,0},{0x0521,34,31,0},{0x0441,35,32,0},{0x02A1,36,33,0},{0x0221,37,34,0},{0x0141,38,35,0},{0x0111,39,36,0},{0x0085,40,37,0},{0x0049,41,38,0},{0x0025,42,39,0},{0x0015,43,40,0},{0x0009,44,41,0},{0x0005,45,42,0},{0x0001,45,43,0},{0x5601,46,46,0}}; +);func (_aegf *Decoder )lpsExchange (_ee *DecoderStats ,_cb int32 ,_fca uint32 )int {_bd :=_ee .getMps ();if _aegf ._ed < _fca {_ee .setEntry (int (_ff [_cb ][1]));_aegf ._ed =_fca ;return int (_bd );};if _ff [_cb ][3]==1{_ee .toggleMps ();};_ee .setEntry (int (_ff [_cb ][2])); +_aegf ._ed =_fca ;return int (1-_bd );};func (_bf *Decoder )DecodeInt (stats *DecoderStats )(int32 ,error ){var (_aa ,_df int32 ;_eda ,_ce ,_eg int ;_dbf error ;);if stats ==nil {stats =NewStats (512,1);};_bf ._d =1;_ce ,_dbf =_bf .decodeIntBit (stats ); +if _dbf !=nil {return 0,_dbf ;};_eda ,_dbf =_bf .decodeIntBit (stats );if _dbf !=nil {return 0,_dbf ;};if _eda ==1{_eda ,_dbf =_bf .decodeIntBit (stats );if _dbf !=nil {return 0,_dbf ;};if _eda ==1{_eda ,_dbf =_bf .decodeIntBit (stats );if _dbf !=nil {return 0,_dbf ; +};if _eda ==1{_eda ,_dbf =_bf .decodeIntBit (stats );if _dbf !=nil {return 0,_dbf ;};if _eda ==1{_eda ,_dbf =_bf .decodeIntBit (stats );if _dbf !=nil {return 0,_dbf ;};if _eda ==1{_eg =32;_df =4436;}else {_eg =12;_df =340;};}else {_eg =8;_df =84;};}else {_eg =6; +_df =20;};}else {_eg =4;_df =4;};}else {_eg =2;_df =0;};for _fa :=0;_fa < _eg ;_fa ++{_eda ,_dbf =_bf .decodeIntBit (stats );if _dbf !=nil {return 0,_dbf ;};_aa =(_aa <<1)|int32 (_eda );};_aa +=_df ;if _ce ==0{return _aa ,nil ;}else if _ce ==1&&_aa > 0{return -_aa ,nil ; +};return 0,_ab .ErrOOB ;};func (_bb *DecoderStats )Copy ()*DecoderStats {_ebf :=&DecoderStats {_gd :_bb ._gd ,_ea :make ([]byte ,_bb ._gd )};copy (_ebf ._ea ,_bb ._ea );return _ebf ;};func (_edf *DecoderStats )setEntry (_bbf int ){_fgb :=byte (_bbf &0x7f); +_edf ._ea [_edf ._aba ]=_fgb };func (_cab *Decoder )DecodeIAID (codeLen uint64 ,stats *DecoderStats )(int64 ,error ){_cab ._d =1;var _dbe uint64 ;for _dbe =0;_dbe < codeLen ;_dbe ++{stats .SetIndex (int32 (_cab ._d ));_aef ,_aee :=_cab .DecodeBit (stats ); +if _aee !=nil {return 0,_aee ;};_cab ._d =(_cab ._d <<1)|int64 (_aef );};_fdd :=_cab ._d -(1<>16)< uint64 (_b ){_fg =_fd .lpsExchange (stats ,_bg ,_b );if _ca :=_fd .renormalize ();_ca !=nil {return 0,_ca ;};}else {_fd ._cf -=uint64 (_b )<<16;if (_fd ._ed &0x8000)==0{_fg =_fd .mpsExchange (stats ,_bg ); +if _ae :=_fd .renormalize ();_ae !=nil {return 0,_ae ;};}else {_fg =int (stats .getMps ());};};return _fg ,nil ;}; \ No newline at end of file diff --git a/internal/jbig2/decoder/decoder.go b/internal/jbig2/decoder/decoder.go index bf914f136..390e5fea7 100644 --- a/internal/jbig2/decoder/decoder.go +++ b/internal/jbig2/decoder/decoder.go @@ -9,14 +9,14 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package decoder ;import (_c "github.com/unidoc/unipdf/v3/internal/bitwise";_d "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_cc "github.com/unidoc/unipdf/v3/internal/jbig2/document";_aa "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_g "image"; -);type Decoder struct{_aac *_c .Reader ;_f *_cc .Document ;_fd int ;_ce Parameters ;};func (_gb *Decoder )DecodePageImage (pageNumber int )(_g .Image ,error ){const _gf ="\u0064\u0065\u0063od\u0065\u0072\u002e\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0067\u0065\u0049\u006d\u0061\u0067\u0065"; -_af ,_ac :=_gb .decodePageImage (pageNumber );if _ac !=nil {return nil ,_aa .Wrap (_ac ,_gf ,"");};return _af ,nil ;};func (_fc *Decoder )DecodeNextPage ()([]byte ,error ){_fc ._fd ++;_df :=_fc ._fd ;return _fc .decodePage (_df );};type Parameters struct{UnpaddedData bool ; -Color _d .Color ;};func (_bgf *Decoder )decodePageImage (_e int )(_g .Image ,error ){const _ag ="\u0064e\u0063o\u0064\u0065\u0050\u0061\u0067\u0065\u0049\u006d\u0061\u0067\u0065";if _e < 0{return nil ,_aa .Errorf (_ag ,"\u0069n\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0067\u0065 \u006eu\u006db\u0065\u0072\u003a\u0020\u0027\u0025\u0064'",_e ); -};if _e > int (_bgf ._f .NumberOfPages ){return nil ,_aa .Errorf (_ag ,"p\u0061\u0067\u0065\u003a\u0020\u0027%\u0064\u0027\u0020\u006e\u006f\u0074 \u0066\u006f\u0075\u006e\u0064\u0020\u0069n\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0063\u006f\u0064e\u0072",_e ); -};_de ,_gc :=_bgf ._f .GetPage (_e );if _gc !=nil {return nil ,_aa .Wrap (_gc ,_ag ,"");};_fdc ,_gc :=_de .GetBitmap ();if _gc !=nil {return nil ,_aa .Wrap (_gc ,_ag ,"");};_fdc .InverseData ();return _fdc .ToImage (),nil ;};func Decode (input []byte ,parameters Parameters ,globals *_cc .Globals )(*Decoder ,error ){_dec :=_c .NewReader (input ); -_bf ,_acc :=_cc .DecodeDocument (_dec ,globals );if _acc !=nil {return nil ,_acc ;};return &Decoder {_aac :_dec ,_f :_bf ,_ce :parameters },nil ;};func (_da *Decoder )DecodePage (pageNumber int )([]byte ,error ){return _da .decodePage (pageNumber )};func (_gfa *Decoder )decodePage (_ad int )([]byte ,error ){const _dc ="\u0064\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0067\u0065"; -if _ad < 0{return nil ,_aa .Errorf (_dc ,"\u0069n\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0067\u0065 \u006eu\u006db\u0065\u0072\u003a\u0020\u0027\u0025\u0064'",_ad );};if _ad > int (_gfa ._f .NumberOfPages ){return nil ,_aa .Errorf (_dc ,"p\u0061\u0067\u0065\u003a\u0020\u0027%\u0064\u0027\u0020\u006e\u006f\u0074 \u0066\u006f\u0075\u006e\u0064\u0020\u0069n\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0063\u006f\u0064e\u0072",_ad ); -};_cf ,_bg :=_gfa ._f .GetPage (_ad );if _bg !=nil {return nil ,_aa .Wrap (_bg ,_dc ,"");};_fcg ,_bg :=_cf .GetBitmap ();if _bg !=nil {return nil ,_aa .Wrap (_bg ,_dc ,"");};_fcg .InverseData ();if !_gfa ._ce .UnpaddedData {return _fcg .Data ,nil ;};return _fcg .GetUnpaddedData (); -};func (_b *Decoder )PageNumber ()(int ,error ){const _gg ="\u0044e\u0063o\u0064\u0065\u0072\u002e\u0050a\u0067\u0065N\u0075\u006d\u0062\u0065\u0072";if _b ._f ==nil {return 0,_aa .Error (_gg ,"d\u0065\u0063\u006f\u0064\u0065\u0072 \u006e\u006f\u0074\u0020\u0069\u006e\u0069\u0074\u0069a\u006c\u0069\u007ae\u0064 \u0079\u0065\u0074"); -};return int (_b ._f .NumberOfPages ),nil ;}; \ No newline at end of file +package decoder ;import (_f "github.com/unidoc/unipdf/v3/internal/bitwise";_b "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_fb "github.com/unidoc/unipdf/v3/internal/jbig2/document";_bg "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_c "image"; +);func (_bc *Decoder )DecodePage (pageNumber int )([]byte ,error ){return _bc .decodePage (pageNumber )};func (_fbe *Decoder )decodePageImage (_cf int )(_c .Image ,error ){const _af ="\u0064e\u0063o\u0064\u0065\u0050\u0061\u0067\u0065\u0049\u006d\u0061\u0067\u0065"; +if _cf < 0{return nil ,_bg .Errorf (_af ,"\u0069n\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0067\u0065 \u006eu\u006db\u0065\u0072\u003a\u0020\u0027\u0025\u0064'",_cf );};if _cf > int (_fbe ._eb .NumberOfPages ){return nil ,_bg .Errorf (_af ,"p\u0061\u0067\u0065\u003a\u0020\u0027%\u0064\u0027\u0020\u006e\u006f\u0074 \u0066\u006f\u0075\u006e\u0064\u0020\u0069n\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0063\u006f\u0064e\u0072",_cf ); +};_baa ,_ee :=_fbe ._eb .GetPage (_cf );if _ee !=nil {return nil ,_bg .Wrap (_ee ,_af ,"");};_gc ,_ee :=_baa .GetBitmap ();if _ee !=nil {return nil ,_bg .Wrap (_ee ,_af ,"");};_gc .InverseData ();return _gc .ToImage (),nil ;};func (_d *Decoder )DecodePageImage (pageNumber int )(_c .Image ,error ){const _ba ="\u0064\u0065\u0063od\u0065\u0072\u002e\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0067\u0065\u0049\u006d\u0061\u0067\u0065"; +_cb ,_ff :=_d .decodePageImage (pageNumber );if _ff !=nil {return nil ,_bg .Wrap (_ff ,_ba ,"");};return _cb ,nil ;};func (_bca *Decoder )PageNumber ()(int ,error ){const _dd ="\u0044e\u0063o\u0064\u0065\u0072\u002e\u0050a\u0067\u0065N\u0075\u006d\u0062\u0065\u0072"; +if _bca ._eb ==nil {return 0,_bg .Error (_dd ,"d\u0065\u0063\u006f\u0064\u0065\u0072 \u006e\u006f\u0074\u0020\u0069\u006e\u0069\u0074\u0069a\u006c\u0069\u007ae\u0064 \u0079\u0065\u0074");};return int (_bca ._eb .NumberOfPages ),nil ;};func (_gd *Decoder )DecodeNextPage ()([]byte ,error ){_gd ._ga ++; +_db :=_gd ._ga ;return _gd .decodePage (_db );};func (_dg *Decoder )decodePage (_a int )([]byte ,error ){const _bd ="\u0064\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0067\u0065";if _a < 0{return nil ,_bg .Errorf (_bd ,"\u0069n\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0067\u0065 \u006eu\u006db\u0065\u0072\u003a\u0020\u0027\u0025\u0064'",_a ); +};if _a > int (_dg ._eb .NumberOfPages ){return nil ,_bg .Errorf (_bd ,"p\u0061\u0067\u0065\u003a\u0020\u0027%\u0064\u0027\u0020\u006e\u006f\u0074 \u0066\u006f\u0075\u006e\u0064\u0020\u0069n\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0063\u006f\u0064e\u0072",_a ); +};_fa ,_ac :=_dg ._eb .GetPage (_a );if _ac !=nil {return nil ,_bg .Wrap (_ac ,_bd ,"");};_bf ,_ac :=_fa .GetBitmap ();if _ac !=nil {return nil ,_bg .Wrap (_ac ,_bd ,"");};_bf .InverseData ();if !_dg ._fd .UnpaddedData {return _bf .Data ,nil ;};return _bf .GetUnpaddedData (); +};func Decode (input []byte ,parameters Parameters ,globals *_fb .Globals )(*Decoder ,error ){_aff :=_f .NewReader (input );_ae ,_cc :=_fb .DecodeDocument (_aff ,globals );if _cc !=nil {return nil ,_cc ;};return &Decoder {_g :_aff ,_eb :_ae ,_fd :parameters },nil ; +};type Parameters struct{UnpaddedData bool ;Color _b .Color ;};type Decoder struct{_g *_f .Reader ;_eb *_fb .Document ;_ga int ;_fd Parameters ;}; \ No newline at end of file diff --git a/internal/jbig2/decoder/huffman/huffman.go b/internal/jbig2/decoder/huffman/huffman.go index 9042708b5..169fe7b44 100644 --- a/internal/jbig2/decoder/huffman/huffman.go +++ b/internal/jbig2/decoder/huffman/huffman.go @@ -9,35 +9,35 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package huffman ;import (_df "errors";_db "fmt";_d "github.com/unidoc/unipdf/v3/internal/bitwise";_g "github.com/unidoc/unipdf/v3/internal/jbig2/internal";_fd "math";_f "strings";);func _fg (_bb *Code )*OutOfBandNode {return &OutOfBandNode {}};var _ Node =&ValueNode {}; -func (_cb *EncodedTable )RootNode ()*InternalNode {return _cb ._e };func GetStandardTable (number int )(Tabler ,error ){if number <=0||number > len (_gbd ){return nil ,_df .New ("\u0049n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};_dgg :=_gbd [number -1];if _dgg ==nil {var _ebb error ;_dgg ,_ebb =_eccb (_bde [number -1]);if _ebb !=nil {return nil ,_ebb ;};_gbd [number -1]=_dgg ;};return _dgg ,nil ;};func NewCode (prefixLength ,rangeLength ,rangeLow int32 ,isLowerRange bool )*Code {return &Code {_fcc :prefixLength ,_dbf :rangeLength ,_acg :rangeLow ,_bfc :isLowerRange ,_fdb :-1}; -};type Tabler interface{Decode (_cgd *_d .Reader )(int64 ,error );InitTree (_gfb []*Code )error ;String ()string ;RootNode ()*InternalNode ;};func NewEncodedTable (table BasicTabler )(*EncodedTable ,error ){_eb :=&EncodedTable {_e :&InternalNode {},BasicTabler :table }; -if _c :=_eb .parseTable ();_c !=nil {return nil ,_c ;};return _eb ,nil ;};func (_gc *FixedSizeTable )String ()string {return _gc ._ebd .String ()+"\u000a"};func (_ecc *StandardTable )InitTree (codeTable []*Code )error {_cae (codeTable );for _ ,_cca :=range codeTable {if _gcdc :=_ecc ._bg .append (_cca ); -_gcdc !=nil {return _gcdc ;};};return nil ;};type InternalNode struct{_ag int32 ;_bcf Node ;_ab Node ;};func (_ba *OutOfBandNode )Decode (r *_d .Reader )(int64 ,error ){return 0,_g .ErrOOB };var _bde =[][][]int32 {{{1,4,0},{2,8,16},{3,16,272},{3,32,65808}},{{1,0,0},{2,0,1},{3,0,2},{4,3,3},{5,6,11},{6,32,75},{6,-1,0}},{{8,8,-256},{1,0,0},{2,0,1},{3,0,2},{4,3,3},{5,6,11},{8,32,-257,999},{7,32,75},{6,-1,0}},{{1,0,1},{2,0,2},{3,0,3},{4,3,4},{5,6,12},{5,32,76}},{{7,8,-255},{1,0,1},{2,0,2},{3,0,3},{4,3,4},{5,6,12},{7,32,-256,999},{6,32,76}},{{5,10,-2048},{4,9,-1024},{4,8,-512},{4,7,-256},{5,6,-128},{5,5,-64},{4,5,-32},{2,7,0},{3,7,128},{3,8,256},{4,9,512},{4,10,1024},{6,32,-2049,999},{6,32,2048}},{{4,9,-1024},{3,8,-512},{4,7,-256},{5,6,-128},{5,5,-64},{4,5,-32},{4,5,0},{5,5,32},{5,6,64},{4,7,128},{3,8,256},{3,9,512},{3,10,1024},{5,32,-1025,999},{5,32,2048}},{{8,3,-15},{9,1,-7},{8,1,-5},{9,0,-3},{7,0,-2},{4,0,-1},{2,1,0},{5,0,2},{6,0,3},{3,4,4},{6,1,20},{4,4,22},{4,5,38},{5,6,70},{5,7,134},{6,7,262},{7,8,390},{6,10,646},{9,32,-16,999},{9,32,1670},{2,-1,0}},{{8,4,-31},{9,2,-15},{8,2,-11},{9,1,-7},{7,1,-5},{4,1,-3},{3,1,-1},{3,1,1},{5,1,3},{6,1,5},{3,5,7},{6,2,39},{4,5,43},{4,6,75},{5,7,139},{5,8,267},{6,8,523},{7,9,779},{6,11,1291},{9,32,-32,999},{9,32,3339},{2,-1,0}},{{7,4,-21},{8,0,-5},{7,0,-4},{5,0,-3},{2,2,-2},{5,0,2},{6,0,3},{7,0,4},{8,0,5},{2,6,6},{5,5,70},{6,5,102},{6,6,134},{6,7,198},{6,8,326},{6,9,582},{6,10,1094},{7,11,2118},{8,32,-22,999},{8,32,4166},{2,-1,0}},{{1,0,1},{2,1,2},{4,0,4},{4,1,5},{5,1,7},{5,2,9},{6,2,13},{7,2,17},{7,3,21},{7,4,29},{7,5,45},{7,6,77},{7,32,141}},{{1,0,1},{2,0,2},{3,1,3},{5,0,5},{5,1,6},{6,1,8},{7,0,10},{7,1,11},{7,2,13},{7,3,17},{7,4,25},{8,5,41},{8,32,73}},{{1,0,1},{3,0,2},{4,0,3},{5,0,4},{4,1,5},{3,3,7},{6,1,15},{6,2,17},{6,3,21},{6,4,29},{6,5,45},{7,6,77},{7,32,141}},{{3,0,-2},{3,0,-1},{1,0,0},{3,0,1},{3,0,2}},{{7,4,-24},{6,2,-8},{5,1,-4},{4,0,-2},{3,0,-1},{1,0,0},{3,0,1},{4,0,2},{5,1,3},{6,2,5},{7,4,9},{7,32,-25,999},{7,32,25}}}; -func (_ccg *InternalNode )pad (_aef *_f .Builder ){for _gb :=int32 (0);_gb < _ccg ._ag ;_gb ++{_aef .WriteString ("\u0020\u0020\u0020");};};func (_ef *EncodedTable )parseTable ()error {var (_gad []*Code ;_fdc ,_cd ,_cf int32 ;_ff uint64 ;_dg error ;);_aa :=_ef .StreamReader (); -_de :=_ef .HtLow ();for _de < _ef .HtHigh (){_ff ,_dg =_aa .ReadBits (byte (_ef .HtPS ()));if _dg !=nil {return _dg ;};_fdc =int32 (_ff );_ff ,_dg =_aa .ReadBits (byte (_ef .HtRS ()));if _dg !=nil {return _dg ;};_cd =int32 (_ff );_gad =append (_gad ,NewCode (_fdc ,_cd ,_cf ,false )); -_de +=1<>uint (_gba -_ebg )&1; -if _af !=0{_bdc [_ebg -1]='1';}else {_bdc [_ebg -1]='0';};};return string (_bdc );};func (_ec *InternalNode )String ()string {_ecf :=&_f .Builder {};_ecf .WriteString ("\u000a");_ec .pad (_ecf );_ecf .WriteString ("\u0030\u003a\u0020");_ecf .WriteString (_ec ._bcf .String ()+"\u000a"); -_ec .pad (_ecf );_ecf .WriteString ("\u0031\u003a\u0020");_ecf .WriteString (_ec ._ab .String ()+"\u000a");return _ecf .String ();};type FixedSizeTable struct{_ebd *InternalNode };func (_ga *EncodedTable )Decode (r *_d .Reader )(int64 ,error ){return _ga ._e .Decode (r )}; -func _ege (_bgf ,_ece int32 )int32 {if _bgf > _ece {return _bgf ;};return _ece ;};func _cae (_dgge []*Code ){var _edf int32 ;for _ ,_cdg :=range _dgge {_edf =_ege (_edf ,_cdg ._fcc );};_bbg :=make ([]int32 ,_edf +1);for _ ,_ddc :=range _dgge {_bbg [_ddc ._fcc ]++; -};var _edd int32 ;_dc :=make ([]int32 ,len (_bbg )+1);_bbg [0]=0;for _ded :=int32 (1);_ded <=int32 (len (_bbg ));_ded ++{_dc [_ded ]=(_dc [_ded -1]+(_bbg [_ded -1]))<<1;_edd =_dc [_ded ];for _ ,_gd :=range _dgge {if _gd ._fcc ==_ded {_gd ._fdb =_edd ;_edd ++; -};};};};func _fc (_fga *Code )*ValueNode {return &ValueNode {_ae :_fga ._dbf ,_cbc :_fga ._acg ,_ac :_fga ._bfc }};var _ Node =&OutOfBandNode {};func (_cdf *ValueNode )Decode (r *_d .Reader )(int64 ,error ){_bda ,_eg :=r .ReadBits (byte (_cdf ._ae ));if _eg !=nil {return 0,_eg ; -};if _cdf ._ac {_bda =-_bda ;};return int64 (_cdf ._cbc )+int64 (_bda ),nil ;};type OutOfBandNode struct{};func (_ad *EncodedTable )InitTree (codeTable []*Code )error {_cae (codeTable );for _ ,_da :=range codeTable {if _dae :=_ad ._e .append (_da );_dae !=nil {return _dae ; -};};return nil ;};func (_fdcc *FixedSizeTable )InitTree (codeTable []*Code )error {_cae (codeTable );for _ ,_aag :=range codeTable {_ca :=_fdcc ._ebd .append (_aag );if _ca !=nil {return _ca ;};};return nil ;};func NewFixedSizeTable (codeTable []*Code )(*FixedSizeTable ,error ){_cg :=&FixedSizeTable {_ebd :&InternalNode {}}; -if _cc :=_cg .InitTree (codeTable );_cc !=nil {return nil ,_cc ;};return _cg ,nil ;};func _ffe (_egd int32 )*InternalNode {return &InternalNode {_ag :_egd }};type Code struct{_fcc int32 ;_dbf int32 ;_acg int32 ;_bfc bool ;_fdb int32 ;};type Node interface{Decode (_dbb *_d .Reader )(int64 ,error ); -String ()string ;};type StandardTable struct{_bg *InternalNode };type BasicTabler interface{HtHigh ()int32 ;HtLow ()int32 ;StreamReader ()*_d .Reader ;HtPS ()int32 ;HtRS ()int32 ;HtOOB ()int32 ;};func (_dd *InternalNode )append (_fb *Code )(_aea error ){if _fb ._fcc ==0{return nil ; -};_fa :=_fb ._fcc -1-_dd ._ag ;if _fa < 0{return _df .New ("\u004e\u0065\u0067\u0061\u0074\u0069\u0076\u0065\u0020\u0073\u0068\u0069\u0066\u0074\u0069n\u0067 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006c\u006c\u006f\u0077\u0065\u0064");};_egg :=(_fb ._fdb >>uint (_fa ))&0x1; -if _fa ==0{if _fb ._dbf ==-1{if _egg ==1{if _dd ._ab !=nil {return _db .Errorf ("O\u004f\u0042\u0020\u0061\u006c\u0072e\u0061\u0064\u0079\u0020\u0073\u0065\u0074\u0020\u0066o\u0072\u0020\u0063o\u0064e\u0020\u0025\u0073",_fb );};_dd ._ab =_fg (_fb );}else {if _dd ._bcf !=nil {return _db .Errorf ("O\u004f\u0042\u0020\u0061\u006c\u0072e\u0061\u0064\u0079\u0020\u0073\u0065\u0074\u0020\u0066o\u0072\u0020\u0063o\u0064e\u0020\u0025\u0073",_fb ); -};_dd ._bcf =_fg (_fb );};}else {if _egg ==1{if _dd ._ab !=nil {return _db .Errorf ("\u0056\u0061\u006cue\u0020\u004e\u006f\u0064\u0065\u0020\u0061\u006c\u0072e\u0061d\u0079 \u0073e\u0074\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0025\u0073",_fb ); -};_dd ._ab =_fc (_fb );}else {if _dd ._bcf !=nil {return _db .Errorf ("\u0056\u0061\u006cue\u0020\u004e\u006f\u0064\u0065\u0020\u0061\u006c\u0072e\u0061d\u0079 \u0073e\u0074\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0025\u0073",_fb ); -};_dd ._bcf =_fc (_fb );};};}else {if _egg ==1{if _dd ._ab ==nil {_dd ._ab =_ffe (_dd ._ag +1);};if _aea =_dd ._ab .(*InternalNode ).append (_fb );_aea !=nil {return _aea ;};}else {if _dd ._bcf ==nil {_dd ._bcf =_ffe (_dd ._ag +1);};if _aea =_dd ._bcf .(*InternalNode ).append (_fb ); -_aea !=nil {return _aea ;};};};return nil ;};func (_def *StandardTable )String ()string {return _def ._bg .String ()+"\u000a"};var _gbd =make ([]Tabler ,len (_bde ));func (_caa *OutOfBandNode )String ()string {return _db .Sprintf ("\u0025\u0030\u00364\u0062",int64 (_fd .MaxInt64 )); -};func (_be *FixedSizeTable )Decode (r *_d .Reader )(int64 ,error ){return _be ._ebd .Decode (r )};func (_bdg *StandardTable )RootNode ()*InternalNode {return _bdg ._bg };var _ Node =&InternalNode {};type EncodedTable struct{BasicTabler ;_e *InternalNode ; -};func (_bc *ValueNode )String ()string {return _db .Sprintf ("\u0025\u0064\u002f%\u0064",_bc ._ae ,_bc ._cbc );};func _eccb (_cgb [][]int32 )(*StandardTable ,error ){var _cad []*Code ;for _eba :=0;_eba < len (_cgb );_eba ++{_fcg :=_cgb [_eba ][0];_ed :=_cgb [_eba ][1]; -_dfd :=_cgb [_eba ][2];var _adg bool ;if len (_cgb [_eba ])> 3{_adg =true ;};_cad =append (_cad ,NewCode (_fcg ,_ed ,_dfd ,_adg ));};_bfg :=&StandardTable {_bg :_ffe (0)};if _bfb :=_bfg .InitTree (_cad );_bfb !=nil {return nil ,_bfb ;};return _bfg ,nil ; -};type ValueNode struct{_ae int32 ;_cbc int32 ;_ac bool ;};func (_dda *Code )String ()string {var _cfe string ;if _dda ._fdb !=-1{_cfe =_gg (_dda ._fdb ,_dda ._fcc );}else {_cfe ="\u003f";};return _db .Sprintf ("%\u0073\u002f\u0025\u0064\u002f\u0025\u0064\u002f\u0025\u0064",_cfe ,_dda ._fcc ,_dda ._dbf ,_dda ._acg ); -};func (_fgf *StandardTable )Decode (r *_d .Reader )(int64 ,error ){return _fgf ._bg .Decode (r )};var _ Tabler =&EncodedTable {}; \ No newline at end of file +package huffman ;import (_ed "errors";_ba "fmt";_a "github.com/unidoc/unipdf/v3/internal/bitwise";_ab "github.com/unidoc/unipdf/v3/internal/jbig2/internal";_b "math";_c "strings";);func NewFixedSizeTable (codeTable []*Code )(*FixedSizeTable ,error ){_egc :=&FixedSizeTable {_ecf :&InternalNode {}}; +if _bede :=_egc .InitTree (codeTable );_bede !=nil {return nil ,_bede ;};return _egc ,nil ;};type BasicTabler interface{HtHigh ()int32 ;HtLow ()int32 ;StreamReader ()*_a .Reader ;HtPS ()int32 ;HtRS ()int32 ;HtOOB ()int32 ;};func GetStandardTable (number int )(Tabler ,error ){if number <=0||number > len (_cec ){return nil ,_ed .New ("\u0049n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};_eaa :=_cec [number -1];if _eaa ==nil {var _dgb error ;_eaa ,_dgb =_bge (_ade [number -1]);if _dgb !=nil {return nil ,_dgb ;};_cec [number -1]=_eaa ;};return _eaa ,nil ;};var _ Tabler =&EncodedTable {};type Tabler interface{Decode (_fcd *_a .Reader )(int64 ,error ); +InitTree (_gdb []*Code )error ;String ()string ;RootNode ()*InternalNode ;};func (_ga *FixedSizeTable )Decode (r *_a .Reader )(int64 ,error ){return _ga ._ecf .Decode (r )};func (_ce *StandardTable )String ()string {return _ce ._dcb .String ()+"\u000a"}; +var _ Node =&OutOfBandNode {};type EncodedTable struct{BasicTabler ;_g *InternalNode ;};type OutOfBandNode struct{};func _dc (_faa *Code )*OutOfBandNode {return &OutOfBandNode {}};func _ebce (_fbe ,_bdc int32 )int32 {if _fbe > _bdc {return _fbe ;};return _bdc ; +};func (_ec *EncodedTable )Decode (r *_a .Reader )(int64 ,error ){return _ec ._g .Decode (r )};var _cec =make ([]Tabler ,len (_ade ));func (_acd *ValueNode )String ()string {return _ba .Sprintf ("\u0025\u0064\u002f%\u0064",_acd ._aa ,_acd ._eed );};func (_bd *OutOfBandNode )Decode (r *_a .Reader )(int64 ,error ){return 0,_ab .ErrOOB }; +func (_bae *InternalNode )pad (_dad *_c .Builder ){for _gadd :=int32 (0);_gadd < _bae ._gc ;_gadd ++{_dad .WriteString ("\u0020\u0020\u0020");};};func (_gad *InternalNode )String ()string {_ecg :=&_c .Builder {};_ecg .WriteString ("\u000a");_gad .pad (_ecg ); +_ecg .WriteString ("\u0030\u003a\u0020");_ecg .WriteString (_gad ._fdb .String ()+"\u000a");_gad .pad (_ecg );_ecg .WriteString ("\u0031\u003a\u0020");_ecg .WriteString (_gad ._dgf .String ()+"\u000a");return _ecg .String ();};func (_acc *FixedSizeTable )InitTree (codeTable []*Code )error {_adef (codeTable ); +for _ ,_bb :=range codeTable {_acg :=_acc ._ecf .append (_bb );if _acg !=nil {return _acg ;};};return nil ;};type FixedSizeTable struct{_ecf *InternalNode };func (_bg *ValueNode )Decode (r *_a .Reader )(int64 ,error ){_gd ,_da :=r .ReadBits (byte (_bg ._aa )); +if _da !=nil {return 0,_da ;};if _bg ._aae {_gd =-_gd ;};return int64 (_bg ._eed )+int64 (_gd ),nil ;};var _ Node =&ValueNode {};func _beg (_fdf *Code )*ValueNode {return &ValueNode {_aa :_fdf ._eac ,_eed :_fdf ._ge ,_aae :_fdf ._fg }};func _adef (_cbb []*Code ){var _cf int32 ; +for _ ,_dcg :=range _cbb {_cf =_ebce (_cf ,_dcg ._cba );};_cfa :=make ([]int32 ,_cf +1);for _ ,_ebc :=range _cbb {_cfa [_ebc ._cba ]++;};var _bac int32 ;_bgb :=make ([]int32 ,len (_cfa )+1);_cfa [0]=0;for _bab :=int32 (1);_bab <=int32 (len (_cfa ));_bab ++{_bgb [_bab ]=(_bgb [_bab -1]+(_cfa [_bab -1]))<<1; +_bac =_bgb [_bab ];for _ ,_fgcc :=range _cbb {if _fgcc ._cba ==_bab {_fgcc ._de =_bac ;_bac ++;};};};};var _ade =[][][]int32 {{{1,4,0},{2,8,16},{3,16,272},{3,32,65808}},{{1,0,0},{2,0,1},{3,0,2},{4,3,3},{5,6,11},{6,32,75},{6,-1,0}},{{8,8,-256},{1,0,0},{2,0,1},{3,0,2},{4,3,3},{5,6,11},{8,32,-257,999},{7,32,75},{6,-1,0}},{{1,0,1},{2,0,2},{3,0,3},{4,3,4},{5,6,12},{5,32,76}},{{7,8,-255},{1,0,1},{2,0,2},{3,0,3},{4,3,4},{5,6,12},{7,32,-256,999},{6,32,76}},{{5,10,-2048},{4,9,-1024},{4,8,-512},{4,7,-256},{5,6,-128},{5,5,-64},{4,5,-32},{2,7,0},{3,7,128},{3,8,256},{4,9,512},{4,10,1024},{6,32,-2049,999},{6,32,2048}},{{4,9,-1024},{3,8,-512},{4,7,-256},{5,6,-128},{5,5,-64},{4,5,-32},{4,5,0},{5,5,32},{5,6,64},{4,7,128},{3,8,256},{3,9,512},{3,10,1024},{5,32,-1025,999},{5,32,2048}},{{8,3,-15},{9,1,-7},{8,1,-5},{9,0,-3},{7,0,-2},{4,0,-1},{2,1,0},{5,0,2},{6,0,3},{3,4,4},{6,1,20},{4,4,22},{4,5,38},{5,6,70},{5,7,134},{6,7,262},{7,8,390},{6,10,646},{9,32,-16,999},{9,32,1670},{2,-1,0}},{{8,4,-31},{9,2,-15},{8,2,-11},{9,1,-7},{7,1,-5},{4,1,-3},{3,1,-1},{3,1,1},{5,1,3},{6,1,5},{3,5,7},{6,2,39},{4,5,43},{4,6,75},{5,7,139},{5,8,267},{6,8,523},{7,9,779},{6,11,1291},{9,32,-32,999},{9,32,3339},{2,-1,0}},{{7,4,-21},{8,0,-5},{7,0,-4},{5,0,-3},{2,2,-2},{5,0,2},{6,0,3},{7,0,4},{8,0,5},{2,6,6},{5,5,70},{6,5,102},{6,6,134},{6,7,198},{6,8,326},{6,9,582},{6,10,1094},{7,11,2118},{8,32,-22,999},{8,32,4166},{2,-1,0}},{{1,0,1},{2,1,2},{4,0,4},{4,1,5},{5,1,7},{5,2,9},{6,2,13},{7,2,17},{7,3,21},{7,4,29},{7,5,45},{7,6,77},{7,32,141}},{{1,0,1},{2,0,2},{3,1,3},{5,0,5},{5,1,6},{6,1,8},{7,0,10},{7,1,11},{7,2,13},{7,3,17},{7,4,25},{8,5,41},{8,32,73}},{{1,0,1},{3,0,2},{4,0,3},{5,0,4},{4,1,5},{3,3,7},{6,1,15},{6,2,17},{6,3,21},{6,4,29},{6,5,45},{7,6,77},{7,32,141}},{{3,0,-2},{3,0,-1},{1,0,0},{3,0,1},{3,0,2}},{{7,4,-24},{6,2,-8},{5,1,-4},{4,0,-2},{3,0,-1},{1,0,0},{3,0,1},{4,0,2},{5,1,3},{6,2,5},{7,4,9},{7,32,-25,999},{7,32,25}}}; +type StandardTable struct{_dcb *InternalNode };func (_ef *InternalNode )Decode (r *_a .Reader )(int64 ,error ){_cg ,_ca :=r .ReadBit ();if _ca !=nil {return 0,_ca ;};if _cg ==0{return _ef ._fdb .Decode (r );};return _ef ._dgf .Decode (r );};func NewEncodedTable (table BasicTabler )(*EncodedTable ,error ){_ea :=&EncodedTable {_g :&InternalNode {},BasicTabler :table }; +if _f :=_ea .parseTable ();_f !=nil {return nil ,_f ;};return _ea ,nil ;};func (_dd *Code )String ()string {var _df string ;if _dd ._de !=-1{_df =_cbe (_dd ._de ,_dd ._cba );}else {_df ="\u003f";};return _ba .Sprintf ("%\u0073\u002f\u0025\u0064\u002f\u0025\u0064\u002f\u0025\u0064",_df ,_dd ._cba ,_dd ._eac ,_dd ._ge ); +};func (_ceb *StandardTable )RootNode ()*InternalNode {return _ceb ._dcb };func (_gb *FixedSizeTable )String ()string {return _gb ._ecf .String ()+"\u000a"};func (_bgg *InternalNode )append (_ae *Code )(_fdg error ){if _ae ._cba ==0{return nil ;};_gcd :=_ae ._cba -1-_bgg ._gc ; +if _gcd < 0{return _ed .New ("\u004e\u0065\u0067\u0061\u0074\u0069\u0076\u0065\u0020\u0073\u0068\u0069\u0066\u0074\u0069n\u0067 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006c\u006c\u006f\u0077\u0065\u0064");};_dac :=(_ae ._de >>uint (_gcd ))&0x1; +if _gcd ==0{if _ae ._eac ==-1{if _dac ==1{if _bgg ._dgf !=nil {return _ba .Errorf ("O\u004f\u0042\u0020\u0061\u006c\u0072e\u0061\u0064\u0079\u0020\u0073\u0065\u0074\u0020\u0066o\u0072\u0020\u0063o\u0064e\u0020\u0025\u0073",_ae );};_bgg ._dgf =_dc (_ae ); +}else {if _bgg ._fdb !=nil {return _ba .Errorf ("O\u004f\u0042\u0020\u0061\u006c\u0072e\u0061\u0064\u0079\u0020\u0073\u0065\u0074\u0020\u0066o\u0072\u0020\u0063o\u0064e\u0020\u0025\u0073",_ae );};_bgg ._fdb =_dc (_ae );};}else {if _dac ==1{if _bgg ._dgf !=nil {return _ba .Errorf ("\u0056\u0061\u006cue\u0020\u004e\u006f\u0064\u0065\u0020\u0061\u006c\u0072e\u0061d\u0079 \u0073e\u0074\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0025\u0073",_ae ); +};_bgg ._dgf =_beg (_ae );}else {if _bgg ._fdb !=nil {return _ba .Errorf ("\u0056\u0061\u006cue\u0020\u004e\u006f\u0064\u0065\u0020\u0061\u006c\u0072e\u0061d\u0079 \u0073e\u0074\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0025\u0073",_ae ); +};_bgg ._fdb =_beg (_ae );};};}else {if _dac ==1{if _bgg ._dgf ==nil {_bgg ._dgf =_cb (_bgg ._gc +1);};if _fdg =_bgg ._dgf .(*InternalNode ).append (_ae );_fdg !=nil {return _fdg ;};}else {if _bgg ._fdb ==nil {_bgg ._fdb =_cb (_bgg ._gc +1);};if _fdg =_bgg ._fdb .(*InternalNode ).append (_ae ); +_fdg !=nil {return _fdg ;};};};return nil ;};func _cbe (_aaea ,_ddd int32 )string {var _ddf int32 ;_bga :=make ([]rune ,_ddd );for _cbag :=int32 (1);_cbag <=_ddd ;_cbag ++{_ddf =_aaea >>uint (_ddd -_cbag )&1;if _ddf !=0{_bga [_cbag -1]='1';}else {_bga [_cbag -1]='0'; +};};return string (_bga );};func _cb (_ggf int32 )*InternalNode {return &InternalNode {_gc :_ggf }};func (_bed *EncodedTable )parseTable ()error {var (_bad []*Code ;_abe ,_fc ,_ad int32 ;_abd uint64 ;_ac error ;);_d :=_bed .StreamReader ();_dg :=_bed .HtLow (); +for _dg < _bed .HtHigh (){_abd ,_ac =_d .ReadBits (byte (_bed .HtPS ()));if _ac !=nil {return _ac ;};_abe =int32 (_abd );_abd ,_ac =_d .ReadBits (byte (_bed .HtRS ()));if _ac !=nil {return _ac ;};_fc =int32 (_abd );_bad =append (_bad ,NewCode (_abe ,_fc ,_ad ,false )); +_dg +=1< 3{_eae =true ;};_eag =append (_eag ,NewCode (_abb ,_afd ,_acf ,_eae )); +};_gfa :=&StandardTable {_dcb :_cb (0)};if _gaa :=_gfa .InitTree (_eag );_gaa !=nil {return nil ,_gaa ;};return _gfa ,nil ;};type InternalNode struct{_gc int32 ;_fdb Node ;_dgf Node ;};func (_egf *StandardTable )InitTree (codeTable []*Code )error {_adef (codeTable ); +for _ ,_fca :=range codeTable {if _aca :=_egf ._dcb .append (_fca );_aca !=nil {return _aca ;};};return nil ;}; \ No newline at end of file diff --git a/internal/jbig2/decoder/mmr/mmr.go b/internal/jbig2/decoder/mmr/mmr.go index 0e44fba01..646ec9aad 100644 --- a/internal/jbig2/decoder/mmr/mmr.go +++ b/internal/jbig2/decoder/mmr/mmr.go @@ -9,43 +9,42 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package mmr ;import (_fg "errors";_f "fmt";_ec "github.com/unidoc/unipdf/v3/common";_e "github.com/unidoc/unipdf/v3/internal/bitwise";_a "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_b "io";);const (_cf mmrCode =iota ;_ab ;_gc ;_fc ;_gec ;_ag ;_ce ; -_ff ;_fe ;_fd ;_eg ;);func (_cfe *Decoder )UncompressMMR ()(_dg *_a .Bitmap ,_gb error ){_dg =_a .New (_cfe ._fb ,_cfe ._fge );_eb :=make ([]int ,_dg .Width +5);_gae :=make ([]int ,_dg .Width +5);_gae [0]=_dg .Width ;_abcf :=1;var _bff int ;for _fad :=0; -_fad < _dg .Height ;_fad ++{_bff ,_gb =_cfe .uncompress2d (_cfe ._fdg ,_gae ,_abcf ,_eb ,_dg .Width );if _gb !=nil {return nil ,_gb ;};if _bff ==EOF {break ;};if _bff > 0{_gb =_cfe .fillBitmap (_dg ,_fad ,_eb ,_bff );if _gb !=nil {return nil ,_gb ;};}; -_gae ,_eb =_eb ,_gae ;_abcf =_bff ;};if _gb =_cfe .detectAndSkipEOL ();_gb !=nil {return nil ,_gb ;};_cfe ._fdg .align ();return _dg ,nil ;};func _ge (_ca ,_ga int )int {if _ca > _ga {return _ga ;};return _ca ;};const (EOF =-3;_fgf =-2;EOL =-1;_egc =8; -_bf =(1<<_egc )-1;_af =5;_cea =(1<<_af )-1;);const (_gdg int =1024<<7;_gbb int =3;_cacd uint =24;);func (_abe *Decoder )createLittleEndianTable (_ee [][3]int )([]*code ,error ){_cac :=make ([]*code ,_bf +1);for _gef :=0;_gef < len (_ee );_gef ++{_cfb :=_fa (_ee [_gef ]); -if _cfb ._ed <=_egc {_dag :=_egc -_cfb ._ed ;_bde :=_cfb ._bg <=0;_aae --{_gg :=_bde |_aae ;_cac [_gg ]=_cfb ;};}else {_cb :=_cfb ._bg >>uint (_cfb ._ed -_egc );if _cac [_cb ]==nil {var _fgc =_fa ([3]int {}); -_fgc ._c =make ([]*code ,_cea +1);_cac [_cb ]=_fgc ;};if _cfb ._ed <=_egc +_af {_ecc :=_egc +_af -_cfb ._ed ;_gfc :=(_cfb ._bg <=0;_db --{_cac [_cb ]._c [_gfc |_db ]=_cfb ;}; -}else {return nil ,_fg .New ("\u0043\u006f\u0064\u0065\u0020\u0074a\u0062\u006c\u0065\u0020\u006f\u0076\u0065\u0072\u0066\u006c\u006f\u0077\u0020i\u006e\u0020\u004d\u004d\u0052\u0044\u0065c\u006f\u0064\u0065\u0072");};};};return _cac ,nil ;};type Decoder struct{_fb ,_fge int ; -_fdg *runData ;_cdd []*code ;_fae []*code ;_aa []*code ;};func (_gde *runData )uncompressGetNextCodeLittleEndian ()(int ,error ){_ggdc :=_gde ._cdac -_gde ._gab ;if _ggdc < 0||_ggdc > 24{_gfe :=(_gde ._cdac >>3)-_gde ._dgdg ;if _gfe >=_gde ._dafe {_gfe +=_gde ._dgdg ; -if _ade :=_gde .fillBuffer (_gfe );_ade !=nil {return 0,_ade ;};_gfe -=_gde ._dgdg ;};_adc :=(uint32 (_gde ._be [_gfe ]&0xFF)<<16)|(uint32 (_gde ._be [_gfe +1]&0xFF)<<8)|(uint32 (_gde ._be [_gfe +2]&0xFF));_bbe :=uint32 (_gde ._cdac &7);_adc <<=_bbe ;_gde ._ead =int (_adc ); -}else {_abb :=_gde ._gab &7;_fgcd :=7-_abb ;if _ggdc <=_fgcd {_gde ._ead <<=uint (_ggdc );}else {_dc :=(_gde ._gab >>3)+3-_gde ._dgdg ;if _dc >=_gde ._dafe {_dc +=_gde ._dgdg ;if _gbgea :=_gde .fillBuffer (_dc );_gbgea !=nil {return 0,_gbgea ;};_dc -=_gde ._dgdg ; -};_abb =8-_abb ;for {_gde ._ead <<=uint (_abb );_gde ._ead |=int (uint (_gde ._be [_dc ])&0xFF);_ggdc -=_abb ;_dc ++;_abb =8;if !(_ggdc >=8){break ;};};_gde ._ead <<=uint (_ggdc );};};_gde ._gab =_gde ._cdac ;return _gde ._ead ,nil ;};type code struct{_ed int ; -_bg int ;_d int ;_c []*code ;_cg bool ;};func (_ad *runData )uncompressGetCode (_bcb []*code )(*code ,error ){return _ad .uncompressGetCodeLittleEndian (_bcb );};func _fa (_cc [3]int )*code {return &code {_ed :_cc [0],_bg :_cc [1],_d :_cc [2]}};func New (r *_e .Reader ,width ,height int ,dataOffset ,dataLength int64 )(*Decoder ,error ){_bd :=&Decoder {_fb :width ,_fge :height }; -_gf ,_ac :=r .NewPartialReader (int (dataOffset ),int (dataLength ),false );if _ac !=nil {return nil ,_ac ;};_ccb ,_ac :=_dff (_gf );if _ac !=nil {return nil ,_ac ;};_ ,_ac =r .Seek (_gf .RelativePosition (),_b .SeekCurrent );if _ac !=nil {return nil ,_ac ; -};_bd ._fdg =_ccb ;if _fcf :=_bd .initTables ();_fcf !=nil {return nil ,_fcf ;};return _bd ,nil ;};type runData struct{_fcc *_e .Reader ;_cdac int ;_gab int ;_ead int ;_be []byte ;_dgdg int ;_dafe int ;};type mmrCode int ;func (_cdf *runData )fillBuffer (_dbgd int )error {_cdf ._dgdg =_dbgd ; -_ ,_ef :=_cdf ._fcc .Seek (int64 (_dbgd ),_b .SeekStart );if _ef !=nil {if _ef ==_b .EOF {_ec .Log .Debug ("\u0053\u0065\u0061\u006b\u0020\u0045\u004f\u0046");_cdf ._dafe =-1;}else {return _ef ;};};if _ef ==nil {_cdf ._dafe ,_ef =_cdf ._fcc .Read (_cdf ._be ); -if _ef !=nil {if _ef ==_b .EOF {_ec .Log .Trace ("\u0052\u0065\u0061\u0064\u0020\u0045\u004f\u0046");_cdf ._dafe =-1;}else {return _ef ;};};};if _cdf ._dafe > -1&&_cdf ._dafe < 3{for _cdf ._dafe < 3{_cbb ,_edd :=_cdf ._fcc .ReadByte ();if _edd !=nil {if _edd ==_b .EOF {_cdf ._be [_cdf ._dafe ]=0; -}else {return _edd ;};}else {_cdf ._be [_cdf ._dafe ]=_cbb &0xFF;};_cdf ._dafe ++;};};_cdf ._dafe -=3;if _cdf ._dafe < 0{_cdf ._be =make ([]byte ,len (_cdf ._be ));_cdf ._dafe =len (_cdf ._be )-3;};return nil ;};func (_cgc *code )String ()string {return _f .Sprintf ("\u0025\u0064\u002f\u0025\u0064\u002f\u0025\u0064",_cgc ._ed ,_cgc ._bg ,_cgc ._d ); -};func _bb (_cgb ,_cge int )int {if _cgb < _cge {return _cge ;};return _cgb ;};func _dff (_bee *_e .Reader )(*runData ,error ){_eec :=&runData {_fcc :_bee ,_cdac :0,_gab :1};_gfcf :=_ge (_bb (_gbb ,int (_bee .Length ())),_gdg );_eec ._be =make ([]byte ,_gfcf ); -if _acd :=_eec .fillBuffer (0);_acd !=nil {if _acd ==_b .EOF {_eec ._be =make ([]byte ,10);_ec .Log .Debug ("F\u0069\u006c\u006c\u0042uf\u0066e\u0072\u0020\u0066\u0061\u0069l\u0065\u0064\u003a\u0020\u0025\u0076",_acd );}else {return nil ,_acd ;};};return _eec ,nil ; -};func (_gd *Decoder )initTables ()(_cee error ){if _gd ._cdd ==nil {_gd ._cdd ,_cee =_gd .createLittleEndianTable (_abc );if _cee !=nil {return ;};_gd ._fae ,_cee =_gd .createLittleEndianTable (_da );if _cee !=nil {return ;};_gd ._aa ,_cee =_gd .createLittleEndianTable (_cd ); -if _cee !=nil {return ;};};return nil ;};var (_cd =[][3]int {{4,0x1,int (_cf )},{3,0x1,int (_ab )},{1,0x1,int (_gc )},{3,0x3,int (_fc )},{6,0x3,int (_gec )},{7,0x3,int (_ag )},{3,0x2,int (_ce )},{6,0x2,int (_ff )},{7,0x2,int (_fe )},{10,0xf,int (_fd )},{12,0xf,int (_eg )},{12,0x1,int (EOL )}}; -_abc =[][3]int {{4,0x07,2},{4,0x08,3},{4,0x0B,4},{4,0x0C,5},{4,0x0E,6},{4,0x0F,7},{5,0x12,128},{5,0x13,8},{5,0x14,9},{5,0x1B,64},{5,0x07,10},{5,0x08,11},{6,0x17,192},{6,0x18,1664},{6,0x2A,16},{6,0x2B,17},{6,0x03,13},{6,0x34,14},{6,0x35,15},{6,0x07,1},{6,0x08,12},{7,0x13,26},{7,0x17,21},{7,0x18,28},{7,0x24,27},{7,0x27,18},{7,0x28,24},{7,0x2B,25},{7,0x03,22},{7,0x37,256},{7,0x04,23},{7,0x08,20},{7,0xC,19},{8,0x12,33},{8,0x13,34},{8,0x14,35},{8,0x15,36},{8,0x16,37},{8,0x17,38},{8,0x1A,31},{8,0x1B,32},{8,0x02,29},{8,0x24,53},{8,0x25,54},{8,0x28,39},{8,0x29,40},{8,0x2A,41},{8,0x2B,42},{8,0x2C,43},{8,0x2D,44},{8,0x03,30},{8,0x32,61},{8,0x33,62},{8,0x34,63},{8,0x35,0},{8,0x36,320},{8,0x37,384},{8,0x04,45},{8,0x4A,59},{8,0x4B,60},{8,0x5,46},{8,0x52,49},{8,0x53,50},{8,0x54,51},{8,0x55,52},{8,0x58,55},{8,0x59,56},{8,0x5A,57},{8,0x5B,58},{8,0x64,448},{8,0x65,512},{8,0x67,640},{8,0x68,576},{8,0x0A,47},{8,0x0B,48},{9,0x01,_fgf },{9,0x98,1472},{9,0x99,1536},{9,0x9A,1600},{9,0x9B,1728},{9,0xCC,704},{9,0xCD,768},{9,0xD2,832},{9,0xD3,896},{9,0xD4,960},{9,0xD5,1024},{9,0xD6,1088},{9,0xD7,1152},{9,0xD8,1216},{9,0xD9,1280},{9,0xDA,1344},{9,0xDB,1408},{10,0x01,_fgf },{11,0x01,_fgf },{11,0x08,1792},{11,0x0C,1856},{11,0x0D,1920},{12,0x00,EOF },{12,0x01,EOL },{12,0x12,1984},{12,0x13,2048},{12,0x14,2112},{12,0x15,2176},{12,0x16,2240},{12,0x17,2304},{12,0x1C,2368},{12,0x1D,2432},{12,0x1E,2496},{12,0x1F,2560}}; -_da =[][3]int {{2,0x02,3},{2,0x03,2},{3,0x02,1},{3,0x03,4},{4,0x02,6},{4,0x03,5},{5,0x03,7},{6,0x04,9},{6,0x05,8},{7,0x04,10},{7,0x05,11},{7,0x07,12},{8,0x04,13},{8,0x07,14},{9,0x01,_fgf },{9,0x18,15},{10,0x01,_fgf },{10,0x17,16},{10,0x18,17},{10,0x37,0},{10,0x08,18},{10,0x0F,64},{11,0x01,_fgf },{11,0x17,24},{11,0x18,25},{11,0x28,23},{11,0x37,22},{11,0x67,19},{11,0x68,20},{11,0x6C,21},{11,0x08,1792},{11,0x0C,1856},{11,0x0D,1920},{12,0x00,EOF },{12,0x01,EOL },{12,0x12,1984},{12,0x13,2048},{12,0x14,2112},{12,0x15,2176},{12,0x16,2240},{12,0x17,2304},{12,0x1C,2368},{12,0x1D,2432},{12,0x1E,2496},{12,0x1F,2560},{12,0x24,52},{12,0x27,55},{12,0x28,56},{12,0x2B,59},{12,0x2C,60},{12,0x33,320},{12,0x34,384},{12,0x35,448},{12,0x37,53},{12,0x38,54},{12,0x52,50},{12,0x53,51},{12,0x54,44},{12,0x55,45},{12,0x56,46},{12,0x57,47},{12,0x58,57},{12,0x59,58},{12,0x5A,61},{12,0x5B,256},{12,0x64,48},{12,0x65,49},{12,0x66,62},{12,0x67,63},{12,0x68,30},{12,0x69,31},{12,0x6A,32},{12,0x6B,33},{12,0x6C,40},{12,0x6D,41},{12,0xC8,128},{12,0xC9,192},{12,0xCA,26},{12,0xCB,27},{12,0xCC,28},{12,0xCD,29},{12,0xD2,34},{12,0xD3,35},{12,0xD4,36},{12,0xD5,37},{12,0xD6,38},{12,0xD7,39},{12,0xDA,42},{12,0xDB,43},{13,0x4A,640},{13,0x4B,704},{13,0x4C,768},{13,0x4D,832},{13,0x52,1280},{13,0x53,1344},{13,0x54,1408},{13,0x55,1472},{13,0x5A,1536},{13,0x5B,1600},{13,0x64,1664},{13,0x65,1728},{13,0x6C,512},{13,0x6D,576},{13,0x72,896},{13,0x73,960},{13,0x74,1024},{13,0x75,1088},{13,0x76,1152},{13,0x77,1216}}; -);func (_cbf *runData )uncompressGetCodeLittleEndian (_cbg []*code )(*code ,error ){_aad ,_dea :=_cbf .uncompressGetNextCodeLittleEndian ();if _dea !=nil {_ec .Log .Debug ("\u0055n\u0063\u006fm\u0070\u0072\u0065\u0073s\u0047\u0065\u0074N\u0065\u0078\u0074\u0043\u006f\u0064\u0065\u004c\u0069tt\u006c\u0065\u0045n\u0064\u0069a\u006e\u0020\u0066\u0061\u0069\u006ce\u0064\u003a \u0025\u0076",_dea ); -return nil ,_dea ;};_aad &=0xffffff;_gac :=_aad >>(_cacd -_egc );_gfb :=_cbg [_gac ];if _gfb !=nil &&_gfb ._cg {_gac =(_aad >>(_cacd -_egc -_af ))&_cea ;_gfb =_gfb ._c [_gac ];};return _gfb ,nil ;};func (_ggd *runData )align (){_ggd ._cdac =((_ggd ._cdac +7)>>3)<<3}; -func (_dac *Decoder )uncompress2d (_bga *runData ,_cce []int ,_ace int ,_acf []int ,_ae int )(int ,error ){var (_egcf int ;_fbf int ;_cda int ;_edb =true ;_ded error ;_gbge *code ;);_cce [_ace ]=_ae ;_cce [_ace +1]=_ae ;_cce [_ace +2]=_ae +1;_cce [_ace +3]=_ae +1; -_dde :for _cda < _ae {_gbge ,_ded =_bga .uncompressGetCode (_dac ._aa );if _ded !=nil {return EOL ,nil ;};if _gbge ==nil {_bga ._cdac ++;break _dde ;};_bga ._cdac +=_gbge ._ed ;switch mmrCode (_gbge ._d ){case _gc :_cda =_cce [_egcf ];case _fc :_cda =_cce [_egcf ]+1; -case _ce :_cda =_cce [_egcf ]-1;case _ab :for {var _daf []*code ;if _edb {_daf =_dac ._cdd ;}else {_daf =_dac ._fae ;};_gbge ,_ded =_bga .uncompressGetCode (_daf );if _ded !=nil {return 0,_ded ;};if _gbge ==nil {break _dde ;};_bga ._cdac +=_gbge ._ed ; -if _gbge ._d < 64{if _gbge ._d < 0{_acf [_fbf ]=_cda ;_fbf ++;_gbge =nil ;break _dde ;};_cda +=_gbge ._d ;_acf [_fbf ]=_cda ;_fbf ++;break ;};_cda +=_gbge ._d ;};_afa :=_cda ;_gcf :for {var _aaa []*code ;if !_edb {_aaa =_dac ._cdd ;}else {_aaa =_dac ._fae ; -};_gbge ,_ded =_bga .uncompressGetCode (_aaa );if _ded !=nil {return 0,_ded ;};if _gbge ==nil {break _dde ;};_bga ._cdac +=_gbge ._ed ;if _gbge ._d < 64{if _gbge ._d < 0{_acf [_fbf ]=_cda ;_fbf ++;break _dde ;};_cda +=_gbge ._d ;if _cda < _ae ||_cda !=_afa {_acf [_fbf ]=_cda ; -_fbf ++;};break _gcf ;};_cda +=_gbge ._d ;};for _cda < _ae &&_cce [_egcf ]<=_cda {_egcf +=2;};continue _dde ;case _cf :_egcf ++;_cda =_cce [_egcf ];_egcf ++;continue _dde ;case _gec :_cda =_cce [_egcf ]+2;case _ff :_cda =_cce [_egcf ]-2;case _ag :_cda =_cce [_egcf ]+3; -case _fe :_cda =_cce [_egcf ]-3;default:if _bga ._cdac ==12&&_gbge ._d ==EOL {_bga ._cdac =0;if _ ,_ded =_dac .uncompress1d (_bga ,_cce ,_ae );_ded !=nil {return 0,_ded ;};_bga ._cdac ++;if _ ,_ded =_dac .uncompress1d (_bga ,_acf ,_ae );_ded !=nil {return 0,_ded ; -};_bba ,_afe :=_dac .uncompress1d (_bga ,_cce ,_ae );if _afe !=nil {return EOF ,_afe ;};_bga ._cdac ++;return _bba ,nil ;};_cda =_ae ;continue _dde ;};if _cda <=_ae {_edb =!_edb ;_acf [_fbf ]=_cda ;_fbf ++;if _egcf > 0{_egcf --;}else {_egcf ++;};for _cda < _ae &&_cce [_egcf ]<=_cda {_egcf +=2; -};};};if _acf [_fbf ]!=_ae {_acf [_fbf ]=_ae ;};if _gbge ==nil {return EOL ,nil ;};return _fbf ,nil ;};func (_egd *Decoder )uncompress1d (_ccbg *runData ,_bbb []int ,_bad int )(int ,error ){var (_dgd =true ;_bda int ;_dge *code ;_fcga int ;_aag error ; -);_ege :for _bda < _bad {_eca :for {if _dgd {_dge ,_aag =_ccbg .uncompressGetCode (_egd ._cdd );if _aag !=nil {return 0,_aag ;};}else {_dge ,_aag =_ccbg .uncompressGetCode (_egd ._fae );if _aag !=nil {return 0,_aag ;};};_ccbg ._cdac +=_dge ._ed ;if _dge ._d < 0{break _ege ; -};_bda +=_dge ._d ;if _dge ._d < 64{_dgd =!_dgd ;_bbb [_fcga ]=_bda ;_fcga ++;break _eca ;};};};if _bbb [_fcga ]!=_bad {_bbb [_fcga ]=_bad ;};_bc :=EOL ;if _dge !=nil &&_dge ._d !=EOL {_bc =_fcga ;};return _bc ,nil ;};func (_gbg *Decoder )fillBitmap (_fgd *_a .Bitmap ,_dd int ,_cgcd []int ,_de int )error {var _dbg byte ; -_ea :=0;_bdg :=_fgd .GetByteIndex (_ea ,_dd );for _ba :=0;_ba < _de ;_ba ++{_abce :=byte (1);_ggc :=_cgcd [_ba ];if (_ba &1)==0{_abce =0;};for _ea < _ggc {_dbg =(_dbg <<1)|_abce ;_ea ++;if (_ea &7)==0{if _egf :=_fgd .SetByte (_bdg ,_dbg );_egf !=nil {return _egf ; -};_bdg ++;_dbg =0;};};};if (_ea &7)!=0{_dbg <<=uint (8-(_ea &7));if _baa :=_fgd .SetByte (_bdg ,_dbg );_baa !=nil {return _baa ;};};return nil ;};func (_bfa *Decoder )detectAndSkipEOL ()error {for {_bfb ,_df :=_bfa ._fdg .uncompressGetCode (_bfa ._aa ); -if _df !=nil {return _df ;};if _bfb !=nil &&_bfb ._d ==EOL {_bfa ._fdg ._cdac +=_bfb ._ed ;}else {return nil ;};};}; \ No newline at end of file +package mmr ;import (_fc "errors";_f "fmt";_ed "github.com/unidoc/unipdf/v3/common";_g "github.com/unidoc/unipdf/v3/internal/bitwise";_d "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_fd "io";);func (_gf *code )String ()string {return _f .Sprintf ("\u0025\u0064\u002f\u0025\u0064\u002f\u0025\u0064",_gf ._dd ,_gf ._eg ,_gf ._ee ); +};type runData struct{_bfe *_g .Reader ;_daa int ;_bagdd int ;_ffa int ;_dgd []byte ;_fdd int ;_baf int ;};func (_agc *runData )uncompressGetNextCodeLittleEndian ()(int ,error ){_cfd :=_agc ._daa -_agc ._bagdd ;if _cfd < 0||_cfd > 24{_dbag :=(_agc ._daa >>3)-_agc ._fdd ; +if _dbag >=_agc ._baf {_dbag +=_agc ._fdd ;if _fbd :=_agc .fillBuffer (_dbag );_fbd !=nil {return 0,_fbd ;};_dbag -=_agc ._fdd ;};_efba :=(uint32 (_agc ._dgd [_dbag ]&0xFF)<<16)|(uint32 (_agc ._dgd [_dbag +1]&0xFF)<<8)|(uint32 (_agc ._dgd [_dbag +2]&0xFF)); +_eefd :=uint32 (_agc ._daa &7);_efba <<=_eefd ;_agc ._ffa =int (_efba );}else {_ddgb :=_agc ._bagdd &7;_gec :=7-_ddgb ;if _cfd <=_gec {_agc ._ffa <<=uint (_cfd );}else {_efe :=(_agc ._bagdd >>3)+3-_agc ._fdd ;if _efe >=_agc ._baf {_efe +=_agc ._fdd ;if _aee :=_agc .fillBuffer (_efe ); +_aee !=nil {return 0,_aee ;};_efe -=_agc ._fdd ;};_ddgb =8-_ddgb ;for {_agc ._ffa <<=uint (_ddgb );_agc ._ffa |=int (uint (_agc ._dgd [_efe ])&0xFF);_cfd -=_ddgb ;_efe ++;_ddgb =8;if !(_cfd >=8){break ;};};_agc ._ffa <<=uint (_cfd );};};_agc ._bagdd =_agc ._daa ; +return _agc ._ffa ,nil ;};func (_ebf *runData )align (){_ebf ._daa =((_ebf ._daa +7)>>3)<<3};func _ebd (_acc *_g .Reader )(*runData ,error ){_beec :=&runData {_bfe :_acc ,_daa :0,_bagdd :1};_fad :=_cc (_ede (_cdf ,int (_acc .Length ())),_bga );_beec ._dgd =make ([]byte ,_fad ); +if _gag :=_beec .fillBuffer (0);_gag !=nil {if _gag ==_fd .EOF {_beec ._dgd =make ([]byte ,10);_ed .Log .Debug ("F\u0069\u006c\u006c\u0042uf\u0066e\u0072\u0020\u0066\u0061\u0069l\u0065\u0064\u003a\u0020\u0025\u0076",_gag );}else {return nil ,_gag ;};}; +return _beec ,nil ;};const (_ea mmrCode =iota ;_de ;_ef ;_gb ;_cg ;_dea ;_fda ;_db ;_ce ;_aa ;_def ;);const (EOF =-3;_cee =-2;EOL =-1;_be =8;_df =(1<<_be )-1;_gg =5;_fe =(1<<_gg )-1;);type mmrCode int ;func New (r *_g .Reader ,width ,height int ,dataOffset ,dataLength int64 )(*Decoder ,error ){_dge :=&Decoder {_cca :width ,_aec :height }; +_eea ,_ec :=r .NewPartialReader (int (dataOffset ),int (dataLength ),false );if _ec !=nil {return nil ,_ec ;};_eef ,_ec :=_ebd (_eea );if _ec !=nil {return nil ,_ec ;};_ ,_ec =r .Seek (_eea .RelativePosition (),_fd .SeekCurrent );if _ec !=nil {return nil ,_ec ; +};_dge ._efg =_eef ;if _cea :=_dge .initTables ();_cea !=nil {return nil ,_cea ;};return _dge ,nil ;};func _cc (_ae ,_bd int )int {if _ae > _bd {return _bd ;};return _ae ;};func (_ebg *Decoder )uncompress1d (_cbd *runData ,_dcg []int ,_dca int )(int ,error ){var (_gba =true ; +_gdf int ;_bb *code ;_deg int ;_fdf error ;);_cdad :for _gdf < _dca {_eab :for {if _gba {_bb ,_fdf =_cbd .uncompressGetCode (_ebg ._cd );if _fdf !=nil {return 0,_fdf ;};}else {_bb ,_fdf =_cbd .uncompressGetCode (_ebg ._bg );if _fdf !=nil {return 0,_fdf ; +};};_cbd ._daa +=_bb ._dd ;if _bb ._ee < 0{break _cdad ;};_gdf +=_bb ._ee ;if _bb ._ee < 64{_gba =!_gba ;_dcg [_deg ]=_gdf ;_deg ++;break _eab ;};};};if _dcg [_deg ]!=_dca {_dcg [_deg ]=_dca ;};_eeb :=EOL ;if _bb !=nil &&_bb ._ee !=EOL {_eeb =_deg ;};return _eeb ,nil ; +};func _b (_cb [3]int )*code {return &code {_dd :_cb [0],_eg :_cb [1],_ee :_cb [2]}};func (_eed *Decoder )UncompressMMR ()(_eaa *_d .Bitmap ,_ff error ){_eaa =_d .New (_eed ._cca ,_eed ._aec );_bgb :=make ([]int ,_eaa .Width +5);_da :=make ([]int ,_eaa .Width +5); +_da [0]=_eaa .Width ;_efb :=1;var _eb int ;for _dfd :=0;_dfd < _eaa .Height ;_dfd ++{_eb ,_ff =_eed .uncompress2d (_eed ._efg ,_da ,_efb ,_bgb ,_eaa .Width );if _ff !=nil {return nil ,_ff ;};if _eb ==EOF {break ;};if _eb > 0{_ff =_eed .fillBitmap (_eaa ,_dfd ,_bgb ,_eb ); +if _ff !=nil {return nil ,_ff ;};};_da ,_bgb =_bgb ,_da ;_efb =_eb ;};if _ff =_eed .detectAndSkipEOL ();_ff !=nil {return nil ,_ff ;};_eed ._efg .align ();return _eaa ,nil ;};func (_afb *Decoder )initTables ()(_bag error ){if _afb ._cd ==nil {_afb ._cd ,_bag =_afb .createLittleEndianTable (_ggg ); +if _bag !=nil {return ;};_afb ._bg ,_bag =_afb .createLittleEndianTable (_eac );if _bag !=nil {return ;};_afb ._dg ,_bag =_afb .createLittleEndianTable (_dc );if _bag !=nil {return ;};};return nil ;};type Decoder struct{_cca ,_aec int ;_efg *runData ;_cd []*code ; +_bg []*code ;_dg []*code ;};func (_deac *runData )uncompressGetCodeLittleEndian (_ebc []*code )(*code ,error ){_agad ,_cdb :=_deac .uncompressGetNextCodeLittleEndian ();if _cdb !=nil {_ed .Log .Debug ("\u0055n\u0063\u006fm\u0070\u0072\u0065\u0073s\u0047\u0065\u0074N\u0065\u0078\u0074\u0043\u006f\u0064\u0065\u004c\u0069tt\u006c\u0065\u0045n\u0064\u0069a\u006e\u0020\u0066\u0061\u0069\u006ce\u0064\u003a \u0025\u0076",_cdb ); +return nil ,_cdb ;};_agad &=0xffffff;_aca :=_agad >>(_bdc -_be );_cfa :=_ebc [_aca ];if _cfa !=nil &&_cfa ._c {_aca =(_agad >>(_bdc -_be -_gg ))&_fe ;_cfa =_cfa ._a [_aca ];};return _cfa ,nil ;};func _ede (_ag ,_cf int )int {if _ag < _cf {return _cf ;}; +return _ag ;};func (_cgd *Decoder )uncompress2d (_ac *runData ,_bbg []int ,_bee int ,_bage []int ,_agf int )(int ,error ){var (_ecb int ;_ffe int ;_dec int ;_ecd =true ;_ffb error ;_cbdb *code ;);_bbg [_bee ]=_agf ;_bbg [_bee +1]=_agf ;_bbg [_bee +2]=_agf +1; +_bbg [_bee +3]=_agf +1;_eaf :for _dec < _agf {_cbdb ,_ffb =_ac .uncompressGetCode (_cgd ._dg );if _ffb !=nil {return EOL ,nil ;};if _cbdb ==nil {_ac ._daa ++;break _eaf ;};_ac ._daa +=_cbdb ._dd ;switch mmrCode (_cbdb ._ee ){case _ef :_dec =_bbg [_ecb ]; +case _gb :_dec =_bbg [_ecb ]+1;case _fda :_dec =_bbg [_ecb ]-1;case _de :for {var _gbg []*code ;if _ecd {_gbg =_cgd ._cd ;}else {_gbg =_cgd ._bg ;};_cbdb ,_ffb =_ac .uncompressGetCode (_gbg );if _ffb !=nil {return 0,_ffb ;};if _cbdb ==nil {break _eaf ; +};_ac ._daa +=_cbdb ._dd ;if _cbdb ._ee < 64{if _cbdb ._ee < 0{_bage [_ffe ]=_dec ;_ffe ++;_cbdb =nil ;break _eaf ;};_dec +=_cbdb ._ee ;_bage [_ffe ]=_dec ;_ffe ++;break ;};_dec +=_cbdb ._ee ;};_ead :=_dec ;_fb :for {var _bcf []*code ;if !_ecd {_bcf =_cgd ._cd ; +}else {_bcf =_cgd ._bg ;};_cbdb ,_ffb =_ac .uncompressGetCode (_bcf );if _ffb !=nil {return 0,_ffb ;};if _cbdb ==nil {break _eaf ;};_ac ._daa +=_cbdb ._dd ;if _cbdb ._ee < 64{if _cbdb ._ee < 0{_bage [_ffe ]=_dec ;_ffe ++;break _eaf ;};_dec +=_cbdb ._ee ; +if _dec < _agf ||_dec !=_ead {_bage [_ffe ]=_dec ;_ffe ++;};break _fb ;};_dec +=_cbdb ._ee ;};for _dec < _agf &&_bbg [_ecb ]<=_dec {_ecb +=2;};continue _eaf ;case _ea :_ecb ++;_dec =_bbg [_ecb ];_ecb ++;continue _eaf ;case _cg :_dec =_bbg [_ecb ]+2;case _db :_dec =_bbg [_ecb ]-2; +case _dea :_dec =_bbg [_ecb ]+3;case _ce :_dec =_bbg [_ecb ]-3;default:if _ac ._daa ==12&&_cbdb ._ee ==EOL {_ac ._daa =0;if _ ,_ffb =_cgd .uncompress1d (_ac ,_bbg ,_agf );_ffb !=nil {return 0,_ffb ;};_ac ._daa ++;if _ ,_ffb =_cgd .uncompress1d (_ac ,_bage ,_agf ); +_ffb !=nil {return 0,_ffb ;};_cbe ,_ecc :=_cgd .uncompress1d (_ac ,_bbg ,_agf );if _ecc !=nil {return EOF ,_ecc ;};_ac ._daa ++;return _cbe ,nil ;};_dec =_agf ;continue _eaf ;};if _dec <=_agf {_ecd =!_ecd ;_bage [_ffe ]=_dec ;_ffe ++;if _ecb > 0{_ecb --; +}else {_ecb ++;};for _dec < _agf &&_bbg [_ecb ]<=_dec {_ecb +=2;};};};if _bage [_ffe ]!=_agf {_bage [_ffe ]=_agf ;};if _cbdb ==nil {return EOL ,nil ;};return _ffe ,nil ;};func (_ddg *Decoder )detectAndSkipEOL ()error {for {_ab ,_ba :=_ddg ._efg .uncompressGetCode (_ddg ._dg ); +if _ba !=nil {return _ba ;};if _ab !=nil &&_ab ._ee ==EOL {_ddg ._efg ._daa +=_ab ._dd ;}else {return nil ;};};};var (_dc =[][3]int {{4,0x1,int (_ea )},{3,0x1,int (_de )},{1,0x1,int (_ef )},{3,0x3,int (_gb )},{6,0x3,int (_cg )},{7,0x3,int (_dea )},{3,0x2,int (_fda )},{6,0x2,int (_db )},{7,0x2,int (_ce )},{10,0xf,int (_aa )},{12,0xf,int (_def )},{12,0x1,int (EOL )}}; +_ggg =[][3]int {{4,0x07,2},{4,0x08,3},{4,0x0B,4},{4,0x0C,5},{4,0x0E,6},{4,0x0F,7},{5,0x12,128},{5,0x13,8},{5,0x14,9},{5,0x1B,64},{5,0x07,10},{5,0x08,11},{6,0x17,192},{6,0x18,1664},{6,0x2A,16},{6,0x2B,17},{6,0x03,13},{6,0x34,14},{6,0x35,15},{6,0x07,1},{6,0x08,12},{7,0x13,26},{7,0x17,21},{7,0x18,28},{7,0x24,27},{7,0x27,18},{7,0x28,24},{7,0x2B,25},{7,0x03,22},{7,0x37,256},{7,0x04,23},{7,0x08,20},{7,0xC,19},{8,0x12,33},{8,0x13,34},{8,0x14,35},{8,0x15,36},{8,0x16,37},{8,0x17,38},{8,0x1A,31},{8,0x1B,32},{8,0x02,29},{8,0x24,53},{8,0x25,54},{8,0x28,39},{8,0x29,40},{8,0x2A,41},{8,0x2B,42},{8,0x2C,43},{8,0x2D,44},{8,0x03,30},{8,0x32,61},{8,0x33,62},{8,0x34,63},{8,0x35,0},{8,0x36,320},{8,0x37,384},{8,0x04,45},{8,0x4A,59},{8,0x4B,60},{8,0x5,46},{8,0x52,49},{8,0x53,50},{8,0x54,51},{8,0x55,52},{8,0x58,55},{8,0x59,56},{8,0x5A,57},{8,0x5B,58},{8,0x64,448},{8,0x65,512},{8,0x67,640},{8,0x68,576},{8,0x0A,47},{8,0x0B,48},{9,0x01,_cee },{9,0x98,1472},{9,0x99,1536},{9,0x9A,1600},{9,0x9B,1728},{9,0xCC,704},{9,0xCD,768},{9,0xD2,832},{9,0xD3,896},{9,0xD4,960},{9,0xD5,1024},{9,0xD6,1088},{9,0xD7,1152},{9,0xD8,1216},{9,0xD9,1280},{9,0xDA,1344},{9,0xDB,1408},{10,0x01,_cee },{11,0x01,_cee },{11,0x08,1792},{11,0x0C,1856},{11,0x0D,1920},{12,0x00,EOF },{12,0x01,EOL },{12,0x12,1984},{12,0x13,2048},{12,0x14,2112},{12,0x15,2176},{12,0x16,2240},{12,0x17,2304},{12,0x1C,2368},{12,0x1D,2432},{12,0x1E,2496},{12,0x1F,2560}}; +_eac =[][3]int {{2,0x02,3},{2,0x03,2},{3,0x02,1},{3,0x03,4},{4,0x02,6},{4,0x03,5},{5,0x03,7},{6,0x04,9},{6,0x05,8},{7,0x04,10},{7,0x05,11},{7,0x07,12},{8,0x04,13},{8,0x07,14},{9,0x01,_cee },{9,0x18,15},{10,0x01,_cee },{10,0x17,16},{10,0x18,17},{10,0x37,0},{10,0x08,18},{10,0x0F,64},{11,0x01,_cee },{11,0x17,24},{11,0x18,25},{11,0x28,23},{11,0x37,22},{11,0x67,19},{11,0x68,20},{11,0x6C,21},{11,0x08,1792},{11,0x0C,1856},{11,0x0D,1920},{12,0x00,EOF },{12,0x01,EOL },{12,0x12,1984},{12,0x13,2048},{12,0x14,2112},{12,0x15,2176},{12,0x16,2240},{12,0x17,2304},{12,0x1C,2368},{12,0x1D,2432},{12,0x1E,2496},{12,0x1F,2560},{12,0x24,52},{12,0x27,55},{12,0x28,56},{12,0x2B,59},{12,0x2C,60},{12,0x33,320},{12,0x34,384},{12,0x35,448},{12,0x37,53},{12,0x38,54},{12,0x52,50},{12,0x53,51},{12,0x54,44},{12,0x55,45},{12,0x56,46},{12,0x57,47},{12,0x58,57},{12,0x59,58},{12,0x5A,61},{12,0x5B,256},{12,0x64,48},{12,0x65,49},{12,0x66,62},{12,0x67,63},{12,0x68,30},{12,0x69,31},{12,0x6A,32},{12,0x6B,33},{12,0x6C,40},{12,0x6D,41},{12,0xC8,128},{12,0xC9,192},{12,0xCA,26},{12,0xCB,27},{12,0xCC,28},{12,0xCD,29},{12,0xD2,34},{12,0xD3,35},{12,0xD4,36},{12,0xD5,37},{12,0xD6,38},{12,0xD7,39},{12,0xDA,42},{12,0xDB,43},{13,0x4A,640},{13,0x4B,704},{13,0x4C,768},{13,0x4D,832},{13,0x52,1280},{13,0x53,1344},{13,0x54,1408},{13,0x55,1472},{13,0x5A,1536},{13,0x5B,1600},{13,0x64,1664},{13,0x65,1728},{13,0x6C,512},{13,0x6D,576},{13,0x72,896},{13,0x73,960},{13,0x74,1024},{13,0x75,1088},{13,0x76,1152},{13,0x77,1216}}; +);func (_gc *Decoder )fillBitmap (_fa *_d .Bitmap ,_bea int ,_agg []int ,_bc int )error {var _afe byte ;_ccb :=0;_gcf :=_fa .GetByteIndex (_ccb ,_bea );for _deb :=0;_deb < _bc ;_deb ++{_aga :=byte (1);_cda :=_agg [_deb ];if (_deb &1)==0{_aga =0;};for _ccb < _cda {_afe =(_afe <<1)|_aga ; +_ccb ++;if (_ccb &7)==0{if _dgf :=_fa .SetByte (_gcf ,_afe );_dgf !=nil {return _dgf ;};_gcf ++;_afe =0;};};};if (_ccb &7)!=0{_afe <<=uint (8-(_ccb &7));if _bac :=_fa .SetByte (_gcf ,_afe );_bac !=nil {return _bac ;};};return nil ;};func (_fga *runData )fillBuffer (_eeg int )error {_fga ._fdd =_eeg ; +_ ,_ggf :=_fga ._bfe .Seek (int64 (_eeg ),_fd .SeekStart );if _ggf !=nil {if _ggf ==_fd .EOF {_ed .Log .Debug ("\u0053\u0065\u0061\u006b\u0020\u0045\u004f\u0046");_fga ._baf =-1;}else {return _ggf ;};};if _ggf ==nil {_fga ._baf ,_ggf =_fga ._bfe .Read (_fga ._dgd ); +if _ggf !=nil {if _ggf ==_fd .EOF {_ed .Log .Trace ("\u0052\u0065\u0061\u0064\u0020\u0045\u004f\u0046");_fga ._baf =-1;}else {return _ggf ;};};};if _fga ._baf > -1&&_fga ._baf < 3{for _fga ._baf < 3{_gfe ,_ggb :=_fga ._bfe .ReadByte ();if _ggb !=nil {if _ggb ==_fd .EOF {_fga ._dgd [_fga ._baf ]=0; +}else {return _ggb ;};}else {_fga ._dgd [_fga ._baf ]=_gfe &0xFF;};_fga ._baf ++;};};_fga ._baf -=3;if _fga ._baf < 0{_fga ._dgd =make ([]byte ,len (_fga ._dgd ));_fga ._baf =len (_fga ._dgd )-3;};return nil ;};type code struct{_dd int ;_eg int ;_ee int ; +_a []*code ;_c bool ;};const (_bga int =1024<<7;_cdf int =3;_bdc uint =24;);func (_fdfe *runData )uncompressGetCode (_gggb []*code )(*code ,error ){return _fdfe .uncompressGetCodeLittleEndian (_gggb );};func (_ga *Decoder )createLittleEndianTable (_eba [][3]int )([]*code ,error ){_dba :=make ([]*code ,_df +1); +for _dbc :=0;_dbc < len (_eba );_dbc ++{_dfb :=_b (_eba [_dbc ]);if _dfb ._dd <=_be {_cef :=_be -_dfb ._dd ;_agb :=_dfb ._eg <=0;_af --{_gd :=_agb |_af ;_dba [_gd ]=_dfb ;};}else {_bf :=_dfb ._eg >>uint (_dfb ._dd -_be ); +if _dba [_bf ]==nil {var _fg =_b ([3]int {});_fg ._a =make ([]*code ,_fe +1);_dba [_bf ]=_fg ;};if _dfb ._dd <=_be +_gg {_gaf :=_be +_gg -_dfb ._dd ;_ega :=(_dfb ._eg <=0;_ge --{_dba [_bf ]._a [_ega |_ge ]=_dfb ; +};}else {return nil ,_fc .New ("\u0043\u006f\u0064\u0065\u0020\u0074a\u0062\u006c\u0065\u0020\u006f\u0076\u0065\u0072\u0066\u006c\u006f\u0077\u0020i\u006e\u0020\u004d\u004d\u0052\u0044\u0065c\u006f\u0064\u0065\u0072");};};};return _dba ,nil ;}; \ No newline at end of file diff --git a/internal/jbig2/document/document.go b/internal/jbig2/document/document.go index 306060321..bf4c06806 100644 --- a/internal/jbig2/document/document.go +++ b/internal/jbig2/document/document.go @@ -9,124 +9,127 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package document ;import (_f "encoding/binary";_e "fmt";_b "github.com/unidoc/unipdf/v3/common";_gd "github.com/unidoc/unipdf/v3/internal/bitwise";_ffd "github.com/unidoc/unipdf/v3/internal/jbig2/basic";_db "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap"; -_eg "github.com/unidoc/unipdf/v3/internal/jbig2/document/segments";_bd "github.com/unidoc/unipdf/v3/internal/jbig2/encoder/classer";_c "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_fe "io";_ff "math";_g "runtime/debug";);func (_bbg *Document )mapData ()error {const _ceb ="\u006da\u0070\u0044\u0061\u0074\u0061"; -var (_ddf []*_eg .Header ;_ggg int64 ;_bacb _eg .Type ;);_gcee ,_gebc :=_bbg .isFileHeaderPresent ();if _gebc !=nil {return _c .Wrap (_gebc ,_ceb ,"");};if _gcee {if _gebc =_bbg .parseFileHeader ();_gebc !=nil {return _c .Wrap (_gebc ,_ceb ,"");};_ggg +=int64 (_bbg ._dba ); -_bbg .FullHeaders =true ;};var (_cca *Page ;_cec bool ;);for _bacb !=51&&!_cec {_eba ,_gbb :=_eg .NewHeader (_bbg ,_bbg .InputStream ,_ggg ,_bbg .OrganizationType );if _gbb !=nil {return _c .Wrap (_gbb ,_ceb ,"");};_b .Log .Trace ("\u0044\u0065c\u006f\u0064\u0069\u006eg\u0020\u0073e\u0067\u006d\u0065\u006e\u0074\u0020\u006e\u0075m\u0062\u0065\u0072\u003a\u0020\u0025\u0064\u002c\u0020\u0054\u0079\u0070e\u003a\u0020\u0025\u0073",_eba .SegmentNumber ,_eba .Type ); -_bacb =_eba .Type ;if _bacb !=_eg .TEndOfFile {if _eba .PageAssociation !=0{_cca =_bbg .Pages [_eba .PageAssociation ];if _cca ==nil {_cca =_dce (_bbg ,_eba .PageAssociation );_bbg .Pages [_eba .PageAssociation ]=_cca ;if _bbg .NumberOfPagesUnknown {_bbg .NumberOfPages ++; -};};_cca .Segments =append (_cca .Segments ,_eba );}else {_bbg .GlobalSegments .AddSegment (_eba );};};_ddf =append (_ddf ,_eba );_ggg =_bbg .InputStream .AbsolutePosition ();if _bbg .OrganizationType ==_eg .OSequential {_ggg +=int64 (_eba .SegmentDataLength ); -};_cec ,_gbb =_bbg .reachedEOF (_ggg );if _gbb !=nil {_b .Log .Debug ("\u006a\u0062\u0069\u0067\u0032 \u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0072\u0065\u0061\u0063h\u0065\u0064\u0020\u0045\u004f\u0046\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_gbb ); -return _c .Wrap (_gbb ,_ceb ,"");};};_bbg .determineRandomDataOffsets (_ddf ,uint64 (_ggg ));return nil ;};func DecodeDocument (input *_gd .Reader ,globals *Globals )(*Document ,error ){return _cag (input ,globals );};func (_bac *Document )completeSymbols ()(_bbb error ){const _bfd ="\u0063o\u006dp\u006c\u0065\u0074\u0065\u0053\u0079\u006d\u0062\u006f\u006c\u0073"; -if _bac .Classer ==nil {return nil ;};if _bac .Classer .UndilatedTemplates ==nil {return _c .Error (_bfd ,"\u006e\u006f t\u0065\u006d\u0070l\u0061\u0074\u0065\u0073 de\u0066in\u0065\u0064\u0020\u0066\u006f\u0072\u0020th\u0065\u0020\u0063\u006c\u0061\u0073\u0073e\u0072"); -};_cea :=len (_bac .Pages )==1;_afa :=make ([]int ,_bac .Classer .UndilatedTemplates .Size ());var _dec int ;for _gbea :=0;_gbea < _bac .Classer .ClassIDs .Size ();_gbea ++{_dec ,_bbb =_bac .Classer .ClassIDs .Get (_gbea );if _bbb !=nil {return _c .Wrap (_bbb ,_bfd ,"\u0063\u006c\u0061\u0073\u0073\u0020\u0049\u0044\u0027\u0073"); -};_afa [_dec ]++;};var _fa []int ;for _fd :=0;_fd < _bac .Classer .UndilatedTemplates .Size ();_fd ++{if _afa [_fd ]==0{return _c .Error (_bfd ,"\u006eo\u0020\u0073y\u006d\u0062\u006f\u006cs\u0020\u0069\u006es\u0074\u0061\u006e\u0063\u0065\u0073\u0020\u0066\u006fun\u0064\u0020\u0066o\u0072\u0020g\u0069\u0076\u0065\u006e\u0020\u0063l\u0061\u0073s\u003f\u0020"); -};if _afa [_fd ]> 1||_cea {_fa =append (_fa ,_fd );};};_bac ._fef =len (_fa );var _gbc ,_ffc int ;for _ca :=0;_ca < _bac .Classer .ComponentPageNumbers .Size ();_ca ++{_gbc ,_bbb =_bac .Classer .ComponentPageNumbers .Get (_ca );if _bbb !=nil {return _c .Wrapf (_bbb ,_bfd ,"p\u0061\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027 \u006e\u006f\u0074\u0020\u0066\u006f\u0075nd\u0020\u0069\u006e\u0020t\u0068\u0065\u0020\u0063\u006c\u0061\u0073\u0073\u0065r \u0070\u0061g\u0065\u006e\u0075\u006d\u0062\u0065\u0072\u0073",_ca ); -};_ffc ,_bbb =_bac .Classer .ClassIDs .Get (_ca );if _bbb !=nil {return _c .Wrapf (_bbb ,_bfd ,"\u0063\u0061\u006e\u0027\u0074\u0020\u0067e\u0074\u0020\u0073y\u006d\u0062\u006f\u006c \u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0027\u0025\u0064\u0027\u0020\u0066\u0072\u006f\u006d\u0020\u0063\u006c\u0061\u0073\u0073\u0065\u0072",_gbc ); -};if _afa [_ffc ]==1&&!_cea {_bac ._fec [_gbc ]=append (_bac ._fec [_gbc ],_ffc );};};if _bbb =_bac .Classer .ComputeLLCorners ();_bbb !=nil {return _c .Wrap (_bbb ,_bfd ,"");};return nil ;};type Document struct{Pages map[int ]*Page ;NumberOfPagesUnknown bool ; -NumberOfPages uint32 ;GBUseExtTemplate bool ;InputStream *_gd .Reader ;GlobalSegments *Globals ;OrganizationType _eg .OrganizationType ;Classer *_bd .Classer ;XRes ,YRes int ;FullHeaders bool ;CurrentSegmentNumber uint32 ;AverageTemplates *_db .Bitmaps ; -BaseIndexes []int ;Refinement bool ;RefineLevel int ;_dba uint8 ;_bg *_gd .BufferedWriter ;EncodeGlobals bool ;_fef int ;_fec map[int ][]int ;_gg map[int ][]int ;_a []int ;_ac map[int ]int ;};type EncodingMethod int ;func (_dab *Page )lastSegmentNumber ()(_gdcf uint32 ,_acfd error ){const _ada ="\u006c\u0061\u0073\u0074\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u004eu\u006d\u0062\u0065\u0072"; -if len (_dab .Segments )==0{return _gdcf ,_c .Errorf (_ada ,"\u006e\u006f\u0020se\u0067\u006d\u0065\u006e\u0074\u0073\u0020\u0066\u006fu\u006ed\u0020i\u006e \u0074\u0068\u0065\u0020\u0070\u0061\u0067\u0065\u0020\u0027\u0025\u0064\u0027",_dab .PageNumber ); -};return _dab .Segments [len (_dab .Segments )-1].SegmentNumber ,nil ;};func (_feda *Document )determineRandomDataOffsets (_bef []*_eg .Header ,_ffe uint64 ){if _feda .OrganizationType !=_eg .ORandom {return ;};for _ ,_egd :=range _bef {_egd .SegmentDataStartOffset =_ffe ; -_ffe +=_egd .SegmentDataLength ;};};func (_cba *Document )reachedEOF (_def int64 )(bool ,error ){const _fgf ="\u0072\u0065\u0061\u0063\u0068\u0065\u0064\u0045\u004f\u0046";_ ,_bbcc :=_cba .InputStream .Seek (_def ,_fe .SeekStart );if _bbcc !=nil {_b .Log .Debug ("\u0072\u0065\u0061c\u0068\u0065\u0064\u0045\u004f\u0046\u0020\u002d\u0020\u0064\u002e\u0049\u006e\u0070\u0075\u0074\u0053\u0074\u0072\u0065\u0061\u006d\u002e\u0053\u0065\u0065\u006b\u0020\u0066a\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_bbcc ); -return false ,_c .Wrap (_bbcc ,_fgf ,"\u0069n\u0070\u0075\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020s\u0065\u0065\u006b\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};_ ,_bbcc =_cba .InputStream .ReadBits (32);if _bbcc ==_fe .EOF {return true ,nil ; -}else if _bbcc !=nil {return false ,_c .Wrap (_bbcc ,_fgf ,"");};return false ,nil ;};func (_bgae *Page )Encode (w _gd .BinaryWriter )(_dbfe int ,_fdbe error ){const _abb ="P\u0061\u0067\u0065\u002e\u0045\u006e\u0063\u006f\u0064\u0065";var _aca int ;for _ ,_eebb :=range _bgae .Segments {if _aca ,_fdbe =_eebb .Encode (w ); -_fdbe !=nil {return _dbfe ,_c .Wrap (_fdbe ,_abb ,"");};_dbfe +=_aca ;};return _dbfe ,nil ;};func (_fedg *Document )nextSegmentNumber ()uint32 {_gdc :=_fedg .CurrentSegmentNumber ;_fedg .CurrentSegmentNumber ++;return _gdc ;};func (_gfa *Page )fitsPage (_cgb *_eg .PageInformationSegment ,_ecc *_db .Bitmap )bool {return _gfa .countRegions ()==1&&_cgb .DefaultPixelValue ==0&&_cgb .PageBMWidth ==_ecc .Width &&_cgb .PageBMHeight ==_ecc .Height ; -};func (_dedd *Page )GetBitmap ()(_dbd *_db .Bitmap ,_beb error ){_b .Log .Trace (_e .Sprintf ("\u005b\u0050\u0041G\u0045\u005d\u005b\u0023%\u0064\u005d\u0020\u0047\u0065\u0074\u0042i\u0074\u006d\u0061\u0070\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e",_dedd .PageNumber )); -defer func (){if _beb !=nil {_b .Log .Trace (_e .Sprintf ("\u005b\u0050\u0041\u0047\u0045\u005d\u005b\u0023\u0025\u0064\u005d\u0020\u0047\u0065\u0074B\u0069t\u006d\u0061\u0070\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_dedd .PageNumber ,_beb )); -}else {_b .Log .Trace (_e .Sprintf ("\u005b\u0050\u0041\u0047\u0045\u005d\u005b\u0023\u0025\u0064]\u0020\u0047\u0065\u0074\u0042\u0069\u0074m\u0061\u0070\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064",_dedd .PageNumber ));};}();if _dedd .Bitmap !=nil {return _dedd .Bitmap ,nil ; -};_beb =_dedd .composePageBitmap ();if _beb !=nil {return nil ,_beb ;};return _dedd .Bitmap ,nil ;};func (_adg *Document )GetNumberOfPages ()(uint32 ,error ){if _adg .NumberOfPagesUnknown ||_adg .NumberOfPages ==0{if len (_adg .Pages )==0{if _bab :=_adg .mapData (); -_bab !=nil {return 0,_c .Wrap (_bab ,"\u0044o\u0063\u0075\u006d\u0065n\u0074\u002e\u0047\u0065\u0074N\u0075m\u0062e\u0072\u004f\u0066\u0050\u0061\u0067\u0065s","");};};return uint32 (len (_adg .Pages )),nil ;};return _adg .NumberOfPages ,nil ;};func (_ef *Document )nextPageNumber ()uint32 {_ef .NumberOfPages ++; -return _ef .NumberOfPages };func (_bed *Page )getHeight ()(int ,error ){const _gbf ="\u0067e\u0074\u0048\u0065\u0069\u0067\u0068t";if _bed .FinalHeight !=0{return _bed .FinalHeight ,nil ;};_abe :=_bed .getPageInformationSegment ();if _abe ==nil {return 0,_c .Error (_gbf ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e"); -};_dgbd ,_aab :=_abe .GetSegmentData ();if _aab !=nil {return 0,_c .Wrap (_aab ,_gbf ,"");};_bgac ,_bbf :=_dgbd .(*_eg .PageInformationSegment );if !_bbf {return 0,_c .Errorf (_gbf ,"\u0070\u0061\u0067\u0065\u0020\u0069n\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073 \u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070e\u003a \u0027\u0025\u0054\u0027",_dgbd ); -};if _bgac .PageBMHeight ==_ff .MaxInt32 {_ ,_aab =_bed .GetBitmap ();if _aab !=nil {return 0,_c .Wrap (_aab ,_gbf ,"");};}else {_bed .FinalHeight =_bgac .PageBMHeight ;};return _bed .FinalHeight ,nil ;};type Globals struct{Segments []*_eg .Header ;};const (GenericEM EncodingMethod =iota ; -CorrelationEM ;RankHausEM ;);func (_gcg *Page )getResolutionX ()(int ,error ){const _acf ="\u0067\u0065\u0074\u0052\u0065\u0073\u006f\u006c\u0075t\u0069\u006f\u006e\u0058";if _gcg .ResolutionX !=0{return _gcg .ResolutionX ,nil ;};_cfc :=_gcg .getPageInformationSegment (); -if _cfc ==nil {return 0,_c .Error (_acf ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e");};_gba ,_egbe :=_cfc .GetSegmentData ();if _egbe !=nil {return 0,_c .Wrap (_egbe ,_acf ,"");};_aagc ,_geaf :=_gba .(*_eg .PageInformationSegment ); -if !_geaf {return 0,_c .Errorf (_acf ,"\u0070\u0061\u0067\u0065\u0020\u0069n\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073 \u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070e\u003a \u0027\u0025\u0054\u0027",_gba ); -};_gcg .ResolutionX =_aagc .ResolutionX ;return _gcg .ResolutionX ,nil ;};type Page struct{Segments []*_eg .Header ;PageNumber int ;Bitmap *_db .Bitmap ;FinalHeight int ;FinalWidth int ;ResolutionX int ;ResolutionY int ;IsLossless bool ;Document *Document ; -FirstSegmentNumber int ;EncodingMethod EncodingMethod ;BlackIsOne bool ;};func (_bc *Document )isFileHeaderPresent ()(bool ,error ){_bc .InputStream .Mark ();for _ ,_cg :=range _feg {_baf ,_caa :=_bc .InputStream .ReadByte ();if _caa !=nil {return false ,_caa ; -};if _cg !=_baf {_bc .InputStream .Reset ();return false ,nil ;};};_bc .InputStream .Reset ();return true ,nil ;};func (_eged *Page )createStripedPage (_gbg *_eg .PageInformationSegment )error {const _fcgf ="\u0063\u0072\u0065\u0061\u0074\u0065\u0053\u0074\u0072\u0069\u0070\u0065d\u0050\u0061\u0067\u0065"; -_gaa ,_baeb :=_eged .collectPageStripes ();if _baeb !=nil {return _c .Wrap (_baeb ,_fcgf ,"");};var _dca int ;for _ ,_ged :=range _gaa {if _cce ,_ebc :=_ged .(*_eg .EndOfStripe );_ebc {_dca =_cce .LineNumber ()+1;}else {_bdb :=_ged .(_eg .Regioner );_bdf :=_bdb .GetRegionInfo (); -_ega :=_eged .getCombinationOperator (_gbg ,_bdf .CombinaionOperator );_bccc ,_dcb :=_bdb .GetRegionBitmap ();if _dcb !=nil {return _c .Wrap (_dcb ,_fcgf ,"");};_dcb =_db .Blit (_bccc ,_eged .Bitmap ,int (_bdf .XLocation ),_dca ,_ega );if _dcb !=nil {return _c .Wrap (_dcb ,_fcgf ,""); -};};};return nil ;};func (_gcf *Page )GetWidth ()(int ,error ){return _gcf .getWidth ()};func (_cgc *Globals )GetSegment (segmentNumber int )(*_eg .Header ,error ){const _ecb ="\u0047l\u006fb\u0061\u006c\u0073\u002e\u0047e\u0074\u0053e\u0067\u006d\u0065\u006e\u0074"; -if _cgc ==nil {return nil ,_c .Error (_ecb ,"\u0067\u006c\u006f\u0062al\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};if len (_cgc .Segments )==0{return nil ,_c .Error (_ecb ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0073\u0020\u0061\u0072\u0065\u0020e\u006d\u0070\u0074\u0079"); -};var _ffdc *_eg .Header ;for _ ,_ffdc =range _cgc .Segments {if _ffdc .SegmentNumber ==uint32 (segmentNumber ){break ;};};if _ffdc ==nil {return nil ,_c .Error (_ecb ,"\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); -};return _ffdc ,nil ;};func (_ggc *Page )collectPageStripes ()(_eag []_eg .Segmenter ,_aeff error ){const _aba ="\u0063o\u006cl\u0065\u0063\u0074\u0050\u0061g\u0065\u0053t\u0072\u0069\u0070\u0065\u0073";var _dfa _eg .Segmenter ;for _ ,_adf :=range _ggc .Segments {switch _adf .Type {case 6,7,22,23,38,39,42,43:_dfa ,_aeff =_adf .GetSegmentData (); -if _aeff !=nil {return nil ,_c .Wrap (_aeff ,_aba ,"");};_eag =append (_eag ,_dfa );case 50:_dfa ,_aeff =_adf .GetSegmentData ();if _aeff !=nil {return nil ,_aeff ;};_ddb ,_dbba :=_dfa .(*_eg .EndOfStripe );if !_dbba {return nil ,_c .Errorf (_aba ,"\u0045\u006e\u0064\u004f\u0066\u0053\u0074\u0072\u0069\u0070\u0065\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u006f\u0066\u0020\u0076\u0061l\u0069\u0064\u0020\u0074\u0079p\u0065\u003a \u0027\u0025\u0054\u0027",_dfa ); -};_eag =append (_eag ,_ddb );_ggc .FinalHeight =_ddb .LineNumber ();};};return _eag ,nil ;};func (_cff *Page )addTextRegionSegment (_aebb []*_eg .Header ,_dbf ,_fag map[int ]int ,_fcc []int ,_gcc *_db .Points ,_decf *_db .Bitmaps ,_dge *_ffd .IntSlice ,_dac *_db .Boxes ,_eac ,_fae int ){_fba :=&_eg .TextRegion {NumberOfSymbols :uint32 (_fae )}; -_fba .InitEncode (_dbf ,_fag ,_fcc ,_gcc ,_decf ,_dge ,_dac ,_cff .FinalWidth ,_cff .FinalHeight ,_eac );_dga :=&_eg .Header {RTSegments :_aebb ,SegmentData :_fba ,PageAssociation :_cff .PageNumber ,Type :_eg .TImmediateTextRegion };_babf :=_eg .TPageInformation ; -if _fag !=nil {_babf =_eg .TSymbolDictionary ;};var _dfc int ;for ;_dfc < len (_cff .Segments );_dfc ++{if _cff .Segments [_dfc ].Type ==_babf {_dfc ++;break ;};};_cff .Segments =append (_cff .Segments ,nil );copy (_cff .Segments [_dfc +1:],_cff .Segments [_dfc :]); -_cff .Segments [_dfc ]=_dga ;};func (_cagb *Page )AddPageInformationSegment (){_gge :=&_eg .PageInformationSegment {PageBMWidth :_cagb .FinalWidth ,PageBMHeight :_cagb .FinalHeight ,ResolutionX :_cagb .ResolutionX ,ResolutionY :_cagb .ResolutionY ,IsLossless :_cagb .IsLossless }; -if _cagb .BlackIsOne {_gge .DefaultPixelValue =uint8 (0x1);};_gefe :=&_eg .Header {PageAssociation :_cagb .PageNumber ,SegmentDataLength :uint64 (_gge .Size ()),SegmentData :_gge ,Type :_eg .TPageInformation };_cagb .Segments =append (_cagb .Segments ,_gefe ); -};func (_gfe *Page )AddEndOfPageSegment (){_bbgc :=&_eg .Header {Type :_eg .TEndOfPage ,PageAssociation :_gfe .PageNumber };_gfe .Segments =append (_gfe .Segments ,_bbgc );};func (_fgb *Page )GetHeight ()(int ,error ){return _fgb .getHeight ()};func (_defb *Page )nextSegmentNumber ()uint32 {return _defb .Document .nextSegmentNumber ()}; -func (_gfb *Globals )GetSymbolDictionary ()(*_eg .Header ,error ){const _ded ="G\u006c\u006f\u0062\u0061\u006c\u0073.\u0047\u0065\u0074\u0053\u0079\u006d\u0062\u006f\u006cD\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079";if _gfb ==nil {return nil ,_c .Error (_ded ,"\u0067\u006c\u006f\u0062al\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};if len (_gfb .Segments )==0{return nil ,_c .Error (_ded ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0073\u0020\u0061\u0072\u0065\u0020e\u006d\u0070\u0074\u0079");};for _ ,_baee :=range _gfb .Segments {if _baee .Type ==_eg .TSymbolDictionary {return _baee ,nil ; -};};return nil ,_c .Error (_ded ,"\u0067\u006c\u006fba\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0020d\u0069c\u0074i\u006fn\u0061\u0072\u0079\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};func (_fgfg *Page )getPageInformationSegment ()*_eg .Header {for _ ,_fde :=range _fgfg .Segments {if _fde .Type ==_eg .TPageInformation {return _fde ; -};};_b .Log .Debug ("\u0050\u0061\u0067\u0065\u0020\u0069\u006e\u0066o\u0072\u006d\u0061ti\u006f\u006e\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0066o\u0072\u0020\u0070\u0061\u0067\u0065\u003a\u0020%\u0073\u002e",_fgfg ); -return nil ;};func _dce (_cgd *Document ,_caea int )*Page {return &Page {Document :_cgd ,PageNumber :_caea ,Segments :[]*_eg .Header {}};};func (_aeed *Page )getResolutionY ()(int ,error ){const _eeg ="\u0067\u0065\u0074\u0052\u0065\u0073\u006f\u006c\u0075t\u0069\u006f\u006e\u0059"; -if _aeed .ResolutionY !=0{return _aeed .ResolutionY ,nil ;};_ffb :=_aeed .getPageInformationSegment ();if _ffb ==nil {return 0,_c .Error (_eeg ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e");};_fbeb ,_caeb :=_ffb .GetSegmentData (); -if _caeb !=nil {return 0,_c .Wrap (_caeb ,_eeg ,"");};_dcad ,_ccae :=_fbeb .(*_eg .PageInformationSegment );if !_ccae {return 0,_c .Errorf (_eeg ,"\u0070\u0061\u0067\u0065\u0020\u0069\u006e\u0066o\u0072\u006d\u0061ti\u006f\u006e\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0074\u0079\u0070\u0065\u003a\u0027%\u0054\u0027",_fbeb ); -};_aeed .ResolutionY =_dcad .ResolutionY ;return _aeed .ResolutionY ,nil ;};func (_fee *Page )GetSegment (number int )(*_eg .Header ,error ){const _bcf ="\u0050a\u0067e\u002e\u0047\u0065\u0074\u0053\u0065\u0067\u006d\u0065\u006e\u0074";for _ ,_bfc :=range _fee .Segments {if _bfc .SegmentNumber ==uint32 (number ){return _bfc ,nil ; -};};_aac :=make ([]uint32 ,len (_fee .Segments ));for _eae ,_ccb :=range _fee .Segments {_aac [_eae ]=_ccb .SegmentNumber ;};return nil ,_c .Errorf (_bcf ,"\u0073e\u0067\u006d\u0065n\u0074\u0020\u0077i\u0074h \u006e\u0075\u006d\u0062\u0065\u0072\u003a \u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0070\u0061\u0067\u0065\u003a\u0020'%\u0064'\u002e\u0020\u004b\u006e\u006f\u0077n\u0020\u0073\u0065\u0067\u006de\u006e\u0074\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u003a \u0025\u0076",number ,_fee .PageNumber ,_aac ); -};func _cag (_egcf *_gd .Reader ,_bggb *Globals )(*Document ,error ){_eafb :=&Document {Pages :make (map[int ]*Page ),InputStream :_egcf ,OrganizationType :_eg .OSequential ,NumberOfPagesUnknown :true ,GlobalSegments :_bggb ,_dba :9};if _eafb .GlobalSegments ==nil {_eafb .GlobalSegments =&Globals {}; -};if _fedd :=_eafb .mapData ();_fedd !=nil {return nil ,_fedd ;};return _eafb ,nil ;};func (_baa *Page )getWidth ()(int ,error ){const _eed ="\u0067\u0065\u0074\u0057\u0069\u0064\u0074\u0068";if _baa .FinalWidth !=0{return _baa .FinalWidth ,nil ;};_bfda :=_baa .getPageInformationSegment (); -if _bfda ==nil {return 0,_c .Error (_eed ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e");};_caaf ,_daa :=_bfda .GetSegmentData ();if _daa !=nil {return 0,_c .Wrap (_daa ,_eed ,"");};_cgg ,_edf :=_caaf .(*_eg .PageInformationSegment ); -if !_edf {return 0,_c .Errorf (_eed ,"\u0070\u0061\u0067\u0065\u0020\u0069n\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073 \u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070e\u003a \u0027\u0025\u0054\u0027",_caaf ); -};_baa .FinalWidth =_cgg .PageBMWidth ;return _baa .FinalWidth ,nil ;};func (_fcbf *Page )AddGenericRegion (bm *_db .Bitmap ,xloc ,yloc ,template int ,tp _eg .Type ,duplicateLineRemoval bool )error {const _egcg ="P\u0061\u0067\u0065\u002eAd\u0064G\u0065\u006e\u0065\u0072\u0069c\u0052\u0065\u0067\u0069\u006f\u006e"; -_dag :=&_eg .GenericRegion {};if _egdg :=_dag .InitEncode (bm ,xloc ,yloc ,template ,duplicateLineRemoval );_egdg !=nil {return _c .Wrap (_egdg ,_egcg ,"");};_ecbg :=&_eg .Header {Type :_eg .TImmediateGenericRegion ,PageAssociation :_fcbf .PageNumber ,SegmentData :_dag }; -_fcbf .Segments =append (_fcbf .Segments ,_ecbg );return nil ;};func (_ebae *Page )countRegions ()int {var _ede int ;for _ ,_gfd :=range _ebae .Segments {switch _gfd .Type {case 6,7,22,23,38,39,42,43:_ede ++;};};return _ede ;};func (_ffea *Page )String ()string {return _e .Sprintf ("\u0050\u0061\u0067\u0065\u0020\u0023\u0025\u0064",_ffea .PageNumber ); -};func (_agb *Document )addSymbolDictionary (_ec int ,_afd *_db .Bitmaps ,_dc []int ,_cb map[int ]int ,_cbg bool )(*_eg .Header ,error ){const _gcb ="\u0061\u0064\u0064\u0053ym\u0062\u006f\u006c\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"; -_deb :=&_eg .SymbolDictionary {};if _gea :=_deb .InitEncode (_afd ,_dc ,_cb ,_cbg );_gea !=nil {return nil ,_gea ;};_fed :=&_eg .Header {Type :_eg .TSymbolDictionary ,PageAssociation :_ec ,SegmentData :_deb };if _ec ==0{if _agb .GlobalSegments ==nil {_agb .GlobalSegments =&Globals {}; -};_agb .GlobalSegments .AddSegment (_fed );return _fed ,nil ;};_aed ,_fc :=_agb .Pages [_ec ];if !_fc {return nil ,_c .Errorf (_gcb ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_ec );};var (_dfg int ; -_agg *_eg .Header ;);for _dfg ,_agg =range _aed .Segments {if _agg .Type ==_eg .TPageInformation {break ;};};_dfg ++;_aed .Segments =append (_aed .Segments ,nil );copy (_aed .Segments [_dfg +1:],_aed .Segments [_dfg :]);_aed .Segments [_dfg ]=_fed ;return _fed ,nil ; -};func (_fgc *Page )GetResolutionY ()(int ,error ){return _fgc .getResolutionY ()};func (_ed *Document )AddClassifiedPage (bm *_db .Bitmap ,method _bd .Method )(_ce error ){const _bf ="\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u002e\u0041\u0064d\u0043\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064P\u0061\u0067\u0065"; -if !_ed .FullHeaders &&_ed .NumberOfPages !=0{return _c .Error (_bf ,"\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0061\u006c\u0072\u0065a\u0064\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0070\u0061\u0067\u0065\u002e\u0020\u0046\u0069\u006c\u0065\u004d\u006f\u0064\u0065\u0020\u0064\u0069\u0073\u0061\u006c\u006c\u006f\u0077\u0073\u0020\u0061\u0064\u0064i\u006e\u0067\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e \u006f\u006e\u0065\u0020\u0070\u0061g\u0065"); -};if _ed .Classer ==nil {if _ed .Classer ,_ce =_bd .Init (_bd .DefaultSettings ());_ce !=nil {return _c .Wrap (_ce ,_bf ,"");};};_ba :=int (_ed .nextPageNumber ());_gc :=&Page {Segments :[]*_eg .Header {},Bitmap :bm ,Document :_ed ,FinalHeight :bm .Height ,FinalWidth :bm .Width ,PageNumber :_ba }; -_ed .Pages [_ba ]=_gc ;switch method {case _bd .RankHaus :_gc .EncodingMethod =RankHausEM ;case _bd .Correlation :_gc .EncodingMethod =CorrelationEM ;};_gc .AddPageInformationSegment ();if _ce =_ed .Classer .AddPage (bm ,_ba ,method );_ce !=nil {return _c .Wrap (_ce ,_bf ,""); -};if _ed .FullHeaders {_gc .AddEndOfPageSegment ();};return nil ;};func (_gccf *Page )clearSegmentData (){for _ecga :=range _gccf .Segments {_gccf .Segments [_ecga ].CleanSegmentData ();};};func (_egcc *Page )composePageBitmap ()error {const _dbag ="\u0063\u006f\u006d\u0070\u006f\u0073\u0065\u0050\u0061\u0067\u0065\u0042i\u0074\u006d\u0061\u0070"; -if _egcc .PageNumber ==0{return nil ;};_fgee :=_egcc .getPageInformationSegment ();if _fgee ==nil {return _c .Error (_dbag ,"\u0070\u0061\u0067e \u0069\u006e\u0066\u006f\u0072\u006d\u0061\u0074\u0069o\u006e \u0073e\u0067m\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -};_egcd ,_ga :=_fgee .GetSegmentData ();if _ga !=nil {return _ga ;};_bbgf ,_dddg :=_egcd .(*_eg .PageInformationSegment );if !_dddg {return _c .Error (_dbag ,"\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006da\u0074\u0069\u006f\u006e \u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065"); -};if _ga =_egcc .createPage (_bbgf );_ga !=nil {return _c .Wrap (_ga ,_dbag ,"");};_egcc .clearSegmentData ();return nil ;};func (_gdb *Page )createPage (_bdeb *_eg .PageInformationSegment )error {var _feddd error ;if !_bdeb .IsStripe ||_bdeb .PageBMHeight !=-1{_feddd =_gdb .createNormalPage (_bdeb ); -}else {_feddd =_gdb .createStripedPage (_bdeb );};return _feddd ;};func (_dgb *Document )GetPage (pageNumber int )(_eg .Pager ,error ){const _bbc ="\u0044\u006fc\u0075\u006d\u0065n\u0074\u002e\u0047\u0065\u0074\u0050\u0061\u0067\u0065";if pageNumber < 0{_b .Log .Debug ("\u004a\u0042\u0049\u00472\u0020\u0050\u0061\u0067\u0065\u0020\u002d\u0020\u0047e\u0074\u0050\u0061\u0067\u0065\u003a\u0020\u0025\u0064\u002e\u0020\u0050\u0061\u0067\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062e\u0020\u006c\u006f\u0077\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0030\u002e\u0020\u0025\u0073",pageNumber ,_g .Stack ()); -return nil ,_c .Errorf (_bbc ,"\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006a\u0062\u0069\u0067\u0032\u0020d\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u002d\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064 \u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u003a\u0020\u0025\u0064",pageNumber ); -};if pageNumber > len (_dgb .Pages ){_b .Log .Debug ("\u0050\u0061\u0067\u0065 n\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u003a\u0020\u0025\u0064\u002e\u0020%\u0073",pageNumber ,_g .Stack ());return nil ,_c .Error (_bbc ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006a\u0062\u0069\u0067\u0032 \u0064\u006f\u0063\u0075\u006d\u0065n\u0074\u0020\u002d\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); -};_eca ,_fcf :=_dgb .Pages [pageNumber ];if !_fcf {_b .Log .Debug ("\u0050\u0061\u0067\u0065 n\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u003a\u0020\u0025\u0064\u002e\u0020%\u0073",pageNumber ,_g .Stack ());return nil ,_c .Errorf (_bbc ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006a\u0062\u0069\u0067\u0032 \u0064\u006f\u0063\u0075\u006d\u0065n\u0074\u0020\u002d\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); -};return _eca ,nil ;};func (_bcc *Globals )AddSegment (segment *_eg .Header ){_bcc .Segments =append (_bcc .Segments ,segment )};func (_ea *Document )GetGlobalSegment (i int )(*_eg .Header ,error ){_eeb ,_fg :=_ea .GlobalSegments .GetSegment (i );if _fg !=nil {return nil ,_c .Wrap (_fg ,"\u0047\u0065t\u0047\u006c\u006fb\u0061\u006c\u0053\u0065\u0067\u006d\u0065\u006e\u0074",""); -};return _eeb ,nil ;};func (_dacb *Page )GetResolutionX ()(int ,error ){return _dacb .getResolutionX ()};func (_ab *Document )completeClassifiedPages ()(_ae error ){const _da ="\u0063\u006f\u006dpl\u0065\u0074\u0065\u0043\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064\u0050\u0061\u0067\u0065\u0073"; -if _ab .Classer ==nil {return nil ;};_ab ._a =make ([]int ,_ab .Classer .UndilatedTemplates .Size ());for _dd :=0;_dd < _ab .Classer .ClassIDs .Size ();_dd ++{_acd ,_bff :=_ab .Classer .ClassIDs .Get (_dd );if _bff !=nil {return _c .Wrapf (_bff ,_da ,"\u0063\u006c\u0061\u0073s \u0077\u0069\u0074\u0068\u0020\u0069\u0064\u003a\u0020\u0027\u0025\u0064\u0027",_dd ); -};_ab ._a [_acd ]++;};var _gca []int ;for _gb :=0;_gb < _ab .Classer .UndilatedTemplates .Size ();_gb ++{if _ab .NumberOfPages ==1||_ab ._a [_gb ]> 1{_gca =append (_gca ,_gb );};};var (_de *Page ;_gf bool ;);for _ag ,_acdd :=range *_ab .Classer .ComponentPageNumbers {if _de ,_gf =_ab .Pages [_acdd ]; -!_gf {return _c .Errorf (_da ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_ag );};if _de .EncodingMethod ==GenericEM {_b .Log .Error ("\u0047\u0065\u006e\u0065\u0072\u0069c\u0020\u0070\u0061g\u0065\u0020\u0077i\u0074\u0068\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u003a \u0027\u0025\u0064\u0027\u0020ma\u0070\u0070\u0065\u0064\u0020\u0061\u0073\u0020\u0063\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064\u0020\u0070\u0061\u0067\u0065",_ag ); -continue ;};_ab ._gg [_acdd ]=append (_ab ._gg [_acdd ],_ag );_cf ,_bfe :=_ab .Classer .ClassIDs .Get (_ag );if _bfe !=nil {return _c .Wrapf (_bfe ,_da ,"\u006e\u006f\u0020\u0073uc\u0068\u0020\u0063\u006c\u0061\u0073\u0073\u0049\u0044\u003a\u0020\u0025\u0064",_ag ); -};if _ab ._a [_cf ]==1&&_ab .NumberOfPages !=1{_aeg :=append (_ab ._fec [_acdd ],_cf );_ab ._fec [_acdd ]=_aeg ;};};if _ae =_ab .Classer .ComputeLLCorners ();_ae !=nil {return _c .Wrap (_ae ,_da ,"");};if _ ,_ae =_ab .addSymbolDictionary (0,_ab .Classer .UndilatedTemplates ,_gca ,_ab ._ac ,false ); -_ae !=nil {return _c .Wrap (_ae ,_da ,"");};return nil ;};func _edgg (_bde int )int {_bb :=0;_egf :=(_bde &(_bde -1))==0;_bde >>=1;for ;_bde !=0;_bde >>=1{_bb ++;};if _egf {return _bb ;};return _bb +1;};func (_gbe *Document )produceClassifiedPages ()(_edg error ){const _ge ="\u0070\u0072\u006f\u0064uc\u0065\u0043\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064\u0050\u0061\u0067e\u0073"; -if _gbe .Classer ==nil {return nil ;};var (_ee *Page ;_df bool ;_cc *_eg .Header ;);for _bgg :=1;_bgg <=int (_gbe .NumberOfPages );_bgg ++{if _ee ,_df =_gbe .Pages [_bgg ];!_df {return _c .Errorf (_ge ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_bgg ); -};if _ee .EncodingMethod ==GenericEM {continue ;};if _cc ==nil {if _cc ,_edg =_gbe .GlobalSegments .GetSymbolDictionary ();_edg !=nil {return _c .Wrap (_edg ,_ge ,"");};};if _edg =_gbe .produceClassifiedPage (_ee ,_cc );_edg !=nil {return _c .Wrapf (_edg ,_ge ,"\u0070\u0061\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_bgg ); -};};return nil ;};func (_fdd *Globals )GetSegmentByIndex (index int )(*_eg .Header ,error ){const _dgg ="\u0047l\u006f\u0062\u0061\u006cs\u002e\u0047\u0065\u0074\u0053e\u0067m\u0065n\u0074\u0042\u0079\u0049\u006e\u0064\u0065x";if _fdd ==nil {return nil ,_c .Error (_dgg ,"\u0067\u006c\u006f\u0062al\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};if len (_fdd .Segments )==0{return nil ,_c .Error (_dgg ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0073\u0020\u0061\u0072\u0065\u0020e\u006d\u0070\u0074\u0079");};if index > len (_fdd .Segments )-1{return nil ,_c .Error (_dgg ,"\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); -};return _fdd .Segments [index ],nil ;};func (_eaf *Document )parseFileHeader ()error {const _agc ="\u0070a\u0072s\u0065\u0046\u0069\u006c\u0065\u0048\u0065\u0061\u0064\u0065\u0072";_ ,_aef :=_eaf .InputStream .Seek (8,_fe .SeekStart );if _aef !=nil {return _c .Wrap (_aef ,_agc ,"\u0069\u0064"); -};_ ,_aef =_eaf .InputStream .ReadBits (5);if _aef !=nil {return _c .Wrap (_aef ,_agc ,"\u0072\u0065\u0073\u0065\u0072\u0076\u0065\u0064\u0020\u0062\u0069\u0074\u0073");};_bfee ,_aef :=_eaf .InputStream .ReadBit ();if _aef !=nil {return _c .Wrap (_aef ,_agc ,"\u0065x\u0074e\u006e\u0064\u0065\u0064\u0020t\u0065\u006dp\u006c\u0061\u0074\u0065\u0073"); -};if _bfee ==1{_eaf .GBUseExtTemplate =true ;};_bfee ,_aef =_eaf .InputStream .ReadBit ();if _aef !=nil {return _c .Wrap (_aef ,_agc ,"\u0075\u006e\u006b\u006eow\u006e\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072");};if _bfee !=1{_eaf .NumberOfPagesUnknown =false ; -};_bfee ,_aef =_eaf .InputStream .ReadBit ();if _aef !=nil {return _c .Wrap (_aef ,_agc ,"\u006f\u0072\u0067\u0061\u006e\u0069\u007a\u0061\u0074\u0069\u006f\u006e \u0074\u0079\u0070\u0065");};_eaf .OrganizationType =_eg .OrganizationType (_bfee );if !_eaf .NumberOfPagesUnknown {_eaf .NumberOfPages ,_aef =_eaf .InputStream .ReadUint32 (); -if _aef !=nil {return _c .Wrap (_aef ,_agc ,"\u006eu\u006db\u0065\u0072\u0020\u006f\u0066\u0020\u0070\u0061\u0067\u0065\u0073");};_eaf ._dba =13;};return nil ;};func (_efe *Page )getCombinationOperator (_ecd *_eg .PageInformationSegment ,_fbe _db .CombinationOperator )_db .CombinationOperator {if _ecd .CombinationOperatorOverrideAllowed (){return _fbe ; -};return _ecd .CombinationOperator ();};func (_dceg *Page )createNormalPage (_gaf *_eg .PageInformationSegment )error {const _dagd ="\u0063\u0072e\u0061\u0074\u0065N\u006f\u0072\u006d\u0061\u006c\u0050\u0061\u0067\u0065";_dceg .Bitmap =_db .New (_gaf .PageBMWidth ,_gaf .PageBMHeight ); -if _gaf .DefaultPixelValue !=0{_dceg .Bitmap .SetDefaultPixel ();};for _ ,_abd :=range _dceg .Segments {switch _abd .Type {case 6,7,22,23,38,39,42,43:_b .Log .Trace ("\u0047\u0065\u0074\u0074in\u0067\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u003a\u0020\u0025\u0064",_abd .SegmentNumber ); -_dfcd ,_ffdcf :=_abd .GetSegmentData ();if _ffdcf !=nil {return _ffdcf ;};_fbaa ,_fegg :=_dfcd .(_eg .Regioner );if !_fegg {_b .Log .Debug ("\u0053\u0065g\u006d\u0065\u006e\u0074\u003a\u0020\u0025\u0054\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0052\u0065\u0067\u0069on\u0065\u0072",_dfcd ); -return _c .Errorf (_dagd ,"i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006a\u0062i\u0067\u0032\u0020\u0073\u0065\u0067\u006den\u0074\u0020\u0074\u0079p\u0065\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061 R\u0065\u0067i\u006f\u006e\u0065\u0072\u003a\u0020\u0025\u0054",_dfcd ); -};_acb ,_ffdcf :=_fbaa .GetRegionBitmap ();if _ffdcf !=nil {return _c .Wrap (_ffdcf ,_dagd ,"");};if _dceg .fitsPage (_gaf ,_acb ){_dceg .Bitmap =_acb ;}else {_aeef :=_fbaa .GetRegionInfo ();_fefd :=_dceg .getCombinationOperator (_gaf ,_aeef .CombinaionOperator ); -_ffdcf =_db .Blit (_acb ,_dceg .Bitmap ,int (_aeef .XLocation ),int (_aeef .YLocation ),_fefd );if _ffdcf !=nil {return _c .Wrap (_ffdcf ,_dagd ,"");};};};};return nil ;};func (_fge *Document )encodeFileHeader (_fbb _gd .BinaryWriter )(_ffdb int ,_dff error ){const _dbb ="\u0065\u006ec\u006f\u0064\u0065F\u0069\u006c\u0065\u0048\u0065\u0061\u0064\u0065\u0072"; -_ffdb ,_dff =_fbb .Write (_feg );if _dff !=nil {return _ffdb ,_c .Wrap (_dff ,_dbb ,"\u0069\u0064");};if _dff =_fbb .WriteByte (0x01);_dff !=nil {return _ffdb ,_c .Wrap (_dff ,_dbb ,"\u0066\u006c\u0061g\u0073");};_ffdb ++;_fcb :=make ([]byte ,4);_f .BigEndian .PutUint32 (_fcb ,_fge .NumberOfPages ); -_ecaf ,_dff :=_fbb .Write (_fcb );if _dff !=nil {return _ecaf ,_c .Wrap (_dff ,_dbb ,"p\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072");};_ffdb +=_ecaf ;return _ffdb ,nil ;};func (_dg *Document )encodeSegment (_bae *_eg .Header ,_aag *int )error {const _fcg ="\u0065\u006e\u0063\u006f\u0064\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074"; -_bae .SegmentNumber =_dg .nextSegmentNumber ();_afde ,_gef :=_bae .Encode (_dg ._bg );if _gef !=nil {return _c .Wrapf (_gef ,_fcg ,"\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u003a\u0020\u0027\u0025\u0064\u0027",_bae .SegmentNumber );};*_aag +=_afde ;return nil ; -};func InitEncodeDocument (fullHeaders bool )*Document {return &Document {FullHeaders :fullHeaders ,_bg :_gd .BufferedMSB (),Pages :map[int ]*Page {},_fec :map[int ][]int {},_ac :map[int ]int {},_gg :map[int ][]int {}};};func (_egb *Document )produceClassifiedPage (_bfa *Page ,_be *_eg .Header )(_bga error ){const _ege ="p\u0072\u006f\u0064\u0075ce\u0043l\u0061\u0073\u0073\u0069\u0066i\u0065\u0064\u0050\u0061\u0067\u0065"; -var _cd map[int ]int ;_edc :=_egb ._fef ;_ad :=[]*_eg .Header {_be };if len (_egb ._fec [_bfa .PageNumber ])> 0{_cd =map[int ]int {};_ddd ,_af :=_egb .addSymbolDictionary (_bfa .PageNumber ,_egb .Classer .UndilatedTemplates ,_egb ._fec [_bfa .PageNumber ],_cd ,false ); -if _af !=nil {return _c .Wrap (_af ,_ege ,"");};_ad =append (_ad ,_ddd );_edc +=len (_egb ._fec [_bfa .PageNumber ]);};_eea :=_egb ._gg [_bfa .PageNumber ];_b .Log .Debug ("P\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020c\u006f\u006d\u0070\u0073: \u0025\u0076",_bfa .PageNumber ,_eea ); -_bfa .addTextRegionSegment (_ad ,_egb ._ac ,_cd ,_egb ._gg [_bfa .PageNumber ],_egb .Classer .PtaLL ,_egb .Classer .UndilatedTemplates ,_egb .Classer .ClassIDs ,nil ,_edgg (_edc ),len (_egb ._gg [_bfa .PageNumber ]));return nil ;};func (_gbcc *Document )encodeEOFHeader (_agf _gd .BinaryWriter )(_aaf int ,_aga error ){_aeb :=&_eg .Header {SegmentNumber :_gbcc .nextSegmentNumber (),Type :_eg .TEndOfFile }; -if _aaf ,_aga =_aeb .Encode (_agf );_aga !=nil {return 0,_c .Wrap (_aga ,"\u0065n\u0063o\u0064\u0065\u0045\u004f\u0046\u0048\u0065\u0061\u0064\u0065\u0072","");};return _aaf ,nil ;};func (_aa *Document )AddGenericPage (bm *_db .Bitmap ,duplicateLineRemoval bool )(_aad error ){const _eb ="\u0044\u006f\u0063um\u0065\u006e\u0074\u002e\u0041\u0064\u0064\u0047\u0065\u006e\u0065\u0072\u0069\u0063\u0050\u0061\u0067\u0065"; -if !_aa .FullHeaders &&_aa .NumberOfPages !=0{return _c .Error (_eb ,"\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0061\u006c\u0072\u0065a\u0064\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0070\u0061\u0067\u0065\u002e\u0020\u0046\u0069\u006c\u0065\u004d\u006f\u0064\u0065\u0020\u0064\u0069\u0073\u0061\u006c\u006c\u006f\u0077\u0073\u0020\u0061\u0064\u0064i\u006e\u0067\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e \u006f\u006e\u0065\u0020\u0070\u0061g\u0065"); -};_aaa :=&Page {Segments :[]*_eg .Header {},Bitmap :bm ,Document :_aa ,FinalHeight :bm .Height ,FinalWidth :bm .Width ,IsLossless :true ,BlackIsOne :bm .Color ==_db .Chocolate };_aaa .PageNumber =int (_aa .nextPageNumber ());_aa .Pages [_aaa .PageNumber ]=_aaa ; -bm .InverseData ();_aaa .AddPageInformationSegment ();if _aad =_aaa .AddGenericRegion (bm ,0,0,0,_eg .TImmediateGenericRegion ,duplicateLineRemoval );_aad !=nil {return _c .Wrap (_aad ,_eb ,"");};if _aa .FullHeaders {_aaa .AddEndOfPageSegment ();};return nil ; -};func (_bdea *Document )Encode ()(_adc []byte ,_egc error ){const _aee ="\u0044o\u0063u\u006d\u0065\u006e\u0074\u002e\u0045\u006e\u0063\u006f\u0064\u0065";var _age ,_cae int ;if _bdea .FullHeaders {if _age ,_egc =_bdea .encodeFileHeader (_bdea ._bg ); -_egc !=nil {return nil ,_c .Wrap (_egc ,_aee ,"");};};var (_fdf bool ;_bbe *_eg .Header ;_gee *Page ;);if _egc =_bdea .completeClassifiedPages ();_egc !=nil {return nil ,_c .Wrap (_egc ,_aee ,"");};if _egc =_bdea .produceClassifiedPages ();_egc !=nil {return nil ,_c .Wrap (_egc ,_aee ,""); -};if _bdea .GlobalSegments !=nil {for _ ,_bbe =range _bdea .GlobalSegments .Segments {if _egc =_bdea .encodeSegment (_bbe ,&_age );_egc !=nil {return nil ,_c .Wrap (_egc ,_aee ,"");};};};for _afc :=1;_afc <=int (_bdea .NumberOfPages );_afc ++{if _gee ,_fdf =_bdea .Pages [_afc ]; -!_fdf {return nil ,_c .Errorf (_aee ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_afc );};for _ ,_bbe =range _gee .Segments {if _egc =_bdea .encodeSegment (_bbe ,&_age );_egc !=nil {return nil ,_c .Wrap (_egc ,_aee ,""); -};};};if _bdea .FullHeaders {if _cae ,_egc =_bdea .encodeEOFHeader (_bdea ._bg );_egc !=nil {return nil ,_c .Wrap (_egc ,_aee ,"");};_age +=_cae ;};_adc =_bdea ._bg .Data ();if len (_adc )!=_age {_b .Log .Debug ("\u0042\u0079\u0074\u0065\u0073 \u0077\u0072\u0069\u0074\u0074\u0065\u006e \u0028\u006e\u0029\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u0064\u0061\u0074\u0061\u0020\u0065\u006e\u0063\u006fd\u0065\u0064\u003a\u0020\u0027\u0025d\u0027",_age ,len (_adc )); -};return _adc ,nil ;};var _feg =[]byte {0x97,0x4A,0x42,0x32,0x0D,0x0A,0x1A,0x0A}; \ No newline at end of file +package document ;import (_d "encoding/binary";_cb "fmt";_a "github.com/unidoc/unipdf/v3/common";_ac "github.com/unidoc/unipdf/v3/internal/bitwise";_gf "github.com/unidoc/unipdf/v3/internal/jbig2/basic";_ag "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap"; +_ae "github.com/unidoc/unipdf/v3/internal/jbig2/document/segments";_b "github.com/unidoc/unipdf/v3/internal/jbig2/encoder/classer";_df "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_g "io";_ca "math";_f "runtime/debug";);func (_cfg *Document )encodeEOFHeader (_cdc _ac .BinaryWriter )(_fdd int ,_ge error ){_abdb :=&_ae .Header {SegmentNumber :_cfg .nextSegmentNumber (),Type :_ae .TEndOfFile }; +if _fdd ,_ge =_abdb .Encode (_cdc );_ge !=nil {return 0,_df .Wrap (_ge ,"\u0065n\u0063o\u0064\u0065\u0045\u004f\u0046\u0048\u0065\u0061\u0064\u0065\u0072","");};return _fdd ,nil ;};func (_ccf *Page )GetResolutionX ()(int ,error ){return _ccf .getResolutionX ()}; +func (_fgca *Page )String ()string {return _cb .Sprintf ("\u0050\u0061\u0067\u0065\u0020\u0023\u0025\u0064",_fgca .PageNumber );};func (_gd *Document )completeSymbols ()(_eda error ){const _eg ="\u0063o\u006dp\u006c\u0065\u0074\u0065\u0053\u0079\u006d\u0062\u006f\u006c\u0073"; +if _gd .Classer ==nil {return nil ;};if _gd .Classer .UndilatedTemplates ==nil {return _df .Error (_eg ,"\u006e\u006f t\u0065\u006d\u0070l\u0061\u0074\u0065\u0073 de\u0066in\u0065\u0064\u0020\u0066\u006f\u0072\u0020th\u0065\u0020\u0063\u006c\u0061\u0073\u0073e\u0072"); +};_aga :=len (_gd .Pages )==1;_cf :=make ([]int ,_gd .Classer .UndilatedTemplates .Size ());var _bac int ;for _cdf :=0;_cdf < _gd .Classer .ClassIDs .Size ();_cdf ++{_bac ,_eda =_gd .Classer .ClassIDs .Get (_cdf );if _eda !=nil {return _df .Wrap (_eda ,_eg ,"\u0063\u006c\u0061\u0073\u0073\u0020\u0049\u0044\u0027\u0073"); +};_cf [_bac ]++;};var _bae []int ;for _db :=0;_db < _gd .Classer .UndilatedTemplates .Size ();_db ++{if _cf [_db ]==0{return _df .Error (_eg ,"\u006eo\u0020\u0073y\u006d\u0062\u006f\u006cs\u0020\u0069\u006es\u0074\u0061\u006e\u0063\u0065\u0073\u0020\u0066\u006fun\u0064\u0020\u0066o\u0072\u0020g\u0069\u0076\u0065\u006e\u0020\u0063l\u0061\u0073s\u003f\u0020"); +};if _cf [_db ]> 1||_aga {_bae =append (_bae ,_db );};};_gd ._cbc =len (_bae );var _acc ,_agd int ;for _cc :=0;_cc < _gd .Classer .ComponentPageNumbers .Size ();_cc ++{_acc ,_eda =_gd .Classer .ComponentPageNumbers .Get (_cc );if _eda !=nil {return _df .Wrapf (_eda ,_eg ,"p\u0061\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027 \u006e\u006f\u0074\u0020\u0066\u006f\u0075nd\u0020\u0069\u006e\u0020t\u0068\u0065\u0020\u0063\u006c\u0061\u0073\u0073\u0065r \u0070\u0061g\u0065\u006e\u0075\u006d\u0062\u0065\u0072\u0073",_cc ); +};_agd ,_eda =_gd .Classer .ClassIDs .Get (_cc );if _eda !=nil {return _df .Wrapf (_eda ,_eg ,"\u0063\u0061\u006e\u0027\u0074\u0020\u0067e\u0074\u0020\u0073y\u006d\u0062\u006f\u006c \u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0027\u0025\u0064\u0027\u0020\u0066\u0072\u006f\u006d\u0020\u0063\u006c\u0061\u0073\u0073\u0065\u0072",_acc ); +};if _cf [_agd ]==1&&!_aga {_gd ._gb [_acc ]=append (_gd ._gb [_acc ],_agd );};};if _eda =_gd .Classer .ComputeLLCorners ();_eda !=nil {return _df .Wrap (_eda ,_eg ,"");};return nil ;};func (_gbf *Page )getWidth ()(int ,error ){const _fed ="\u0067\u0065\u0074\u0057\u0069\u0064\u0074\u0068"; +if _gbf .FinalWidth !=0{return _gbf .FinalWidth ,nil ;};_afb :=_gbf .getPageInformationSegment ();if _afb ==nil {return 0,_df .Error (_fed ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e");};_dcb ,_gaga :=_afb .GetSegmentData (); +if _gaga !=nil {return 0,_df .Wrap (_gaga ,_fed ,"");};_aaedc ,_fee :=_dcb .(*_ae .PageInformationSegment );if !_fee {return 0,_df .Errorf (_fed ,"\u0070\u0061\u0067\u0065\u0020\u0069n\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073 \u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070e\u003a \u0027\u0025\u0054\u0027",_dcb ); +};_gbf .FinalWidth =_aaedc .PageBMWidth ;return _gbf .FinalWidth ,nil ;};func (_geg *Page )AddEndOfPageSegment (){_cfc :=&_ae .Header {Type :_ae .TEndOfPage ,PageAssociation :_geg .PageNumber };_geg .Segments =append (_geg .Segments ,_cfc );};func (_bdg *Page )GetHeight ()(int ,error ){return _bdg .getHeight ()}; +func (_ce *Document )completeClassifiedPages ()(_fg error ){const _eb ="\u0063\u006f\u006dpl\u0065\u0074\u0065\u0043\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064\u0050\u0061\u0067\u0065\u0073";if _ce .Classer ==nil {return nil ;};_ce ._ab =make ([]int ,_ce .Classer .UndilatedTemplates .Size ()); +for _gbg :=0;_gbg < _ce .Classer .ClassIDs .Size ();_gbg ++{_cba ,_bd :=_ce .Classer .ClassIDs .Get (_gbg );if _bd !=nil {return _df .Wrapf (_bd ,_eb ,"\u0063\u006c\u0061\u0073s \u0077\u0069\u0074\u0068\u0020\u0069\u0064\u003a\u0020\u0027\u0025\u0064\u0027",_gbg ); +};_ce ._ab [_cba ]++;};var _fa []int ;for _dfg :=0;_dfg < _ce .Classer .UndilatedTemplates .Size ();_dfg ++{if _ce .NumberOfPages ==1||_ce ._ab [_dfg ]> 1{_fa =append (_fa ,_dfg );};};var (_fad *Page ;_acg bool ;);for _feb ,_ee :=range *_ce .Classer .ComponentPageNumbers {if _fad ,_acg =_ce .Pages [_ee ]; +!_acg {return _df .Errorf (_eb ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_feb );};if _fad .EncodingMethod ==GenericEM {_a .Log .Error ("\u0047\u0065\u006e\u0065\u0072\u0069c\u0020\u0070\u0061g\u0065\u0020\u0077i\u0074\u0068\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u003a \u0027\u0025\u0064\u0027\u0020ma\u0070\u0070\u0065\u0064\u0020\u0061\u0073\u0020\u0063\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064\u0020\u0070\u0061\u0067\u0065",_feb ); +continue ;};_ce ._da [_ee ]=append (_ce ._da [_ee ],_feb );_gga ,_gbb :=_ce .Classer .ClassIDs .Get (_feb );if _gbb !=nil {return _df .Wrapf (_gbb ,_eb ,"\u006e\u006f\u0020\u0073uc\u0068\u0020\u0063\u006c\u0061\u0073\u0073\u0049\u0044\u003a\u0020\u0025\u0064",_feb ); +};if _ce ._ab [_gga ]==1&&_ce .NumberOfPages !=1{_bg :=append (_ce ._gb [_ee ],_gga );_ce ._gb [_ee ]=_bg ;};};if _fg =_ce .Classer .ComputeLLCorners ();_fg !=nil {return _df .Wrap (_fg ,_eb ,"");};if _ ,_fg =_ce .addSymbolDictionary (0,_ce .Classer .UndilatedTemplates ,_fa ,_ce ._ea ,false ); +_fg !=nil {return _df .Wrap (_fg ,_eb ,"");};return nil ;};func (_ggc *Page )addTextRegionSegment (_eef []*_ae .Header ,_aaa ,_dcd map[int ]int ,_ecc []int ,_cge *_ag .Points ,_fga *_ag .Bitmaps ,_abed *_gf .IntSlice ,_abee *_ag .Boxes ,_aff ,_ddd int ){_gbeag :=&_ae .TextRegion {NumberOfSymbols :uint32 (_ddd )}; +_gbeag .InitEncode (_aaa ,_dcd ,_ecc ,_cge ,_fga ,_abed ,_abee ,_ggc .FinalWidth ,_ggc .FinalHeight ,_aff );_eefb :=&_ae .Header {RTSegments :_eef ,SegmentData :_gbeag ,PageAssociation :_ggc .PageNumber ,Type :_ae .TImmediateTextRegion };_cec :=_ae .TPageInformation ; +if _dcd !=nil {_cec =_ae .TSymbolDictionary ;};var _bdd int ;for ;_bdd < len (_ggc .Segments );_bdd ++{if _ggc .Segments [_bdd ].Type ==_cec {_bdd ++;break ;};};_ggc .Segments =append (_ggc .Segments ,nil );copy (_ggc .Segments [_bdd +1:],_ggc .Segments [_bdd :]); +_ggc .Segments [_bdd ]=_eefb ;};func (_acgf *Page )fitsPage (_fcg *_ae .PageInformationSegment ,_aaed *_ag .Bitmap )bool {return _acgf .countRegions ()==1&&_fcg .DefaultPixelValue ==0&&_fcg .PageBMWidth ==_aaed .Width &&_fcg .PageBMHeight ==_aaed .Height ; +};func (_def *Document )determineRandomDataOffsets (_dbf []*_ae .Header ,_fdab uint64 ){if _def .OrganizationType !=_ae .ORandom {return ;};for _ ,_bce :=range _dbf {_bce .SegmentDataStartOffset =_fdab ;_fdab +=_bce .SegmentDataLength ;};};func (_cbd *Page )getHeight ()(int ,error ){const _bfee ="\u0067e\u0074\u0048\u0065\u0069\u0067\u0068t"; +if _cbd .FinalHeight !=0{return _cbd .FinalHeight ,nil ;};_dcdc :=_cbd .getPageInformationSegment ();if _dcdc ==nil {return 0,_df .Error (_bfee ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e");};_gagf ,_aeec :=_dcdc .GetSegmentData (); +if _aeec !=nil {return 0,_df .Wrap (_aeec ,_bfee ,"");};_ged ,_fbf :=_gagf .(*_ae .PageInformationSegment );if !_fbf {return 0,_df .Errorf (_bfee ,"\u0070\u0061\u0067\u0065\u0020\u0069n\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073 \u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070e\u003a \u0027\u0025\u0054\u0027",_gagf ); +};if _ged .PageBMHeight ==_ca .MaxInt32 {_ ,_aeec =_cbd .GetBitmap ();if _aeec !=nil {return 0,_df .Wrap (_aeec ,_bfee ,"");};}else {_cbd .FinalHeight =_ged .PageBMHeight ;};return _cbd .FinalHeight ,nil ;};func _gegb (_fafb *Document ,_ced int )*Page {return &Page {Document :_fafb ,PageNumber :_ced ,Segments :[]*_ae .Header {}}; +};func (_bab *Page )Encode (w _ac .BinaryWriter )(_dddb int ,_fadd error ){const _ggg ="P\u0061\u0067\u0065\u002e\u0045\u006e\u0063\u006f\u0064\u0065";var _gaf int ;for _ ,_feg :=range _bab .Segments {if _gaf ,_fadd =_feg .Encode (w );_fadd !=nil {return _dddb ,_df .Wrap (_fadd ,_ggg ,""); +};_dddb +=_gaf ;};return _dddb ,nil ;};func (_faf *Document )GetGlobalSegment (i int )(*_ae .Header ,error ){_fdea ,_bcg :=_faf .GlobalSegments .GetSegment (i );if _bcg !=nil {return nil ,_df .Wrap (_bcg ,"\u0047\u0065t\u0047\u006c\u006fb\u0061\u006c\u0053\u0065\u0067\u006d\u0065\u006e\u0074",""); +};return _fdea ,nil ;};func (_dcf *Page )GetWidth ()(int ,error ){return _dcf .getWidth ()};func (_gfc *Page )composePageBitmap ()error {const _egb ="\u0063\u006f\u006d\u0070\u006f\u0073\u0065\u0050\u0061\u0067\u0065\u0042i\u0074\u006d\u0061\u0070";if _gfc .PageNumber ==0{return nil ; +};_fded :=_gfc .getPageInformationSegment ();if _fded ==nil {return _df .Error (_egb ,"\u0070\u0061\u0067e \u0069\u006e\u0066\u006f\u0072\u006d\u0061\u0074\u0069o\u006e \u0073e\u0067m\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +};_fecg ,_cbbg :=_fded .GetSegmentData ();if _cbbg !=nil {return _cbbg ;};_fdfg ,_cae :=_fecg .(*_ae .PageInformationSegment );if !_cae {return _df .Error (_egb ,"\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006da\u0074\u0069\u006f\u006e \u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065"); +};if _cbbg =_gfc .createPage (_fdfg );_cbbg !=nil {return _df .Wrap (_cbbg ,_egb ,"");};_gfc .clearSegmentData ();return nil ;};func (_fgg *Page )getCombinationOperator (_debb *_ae .PageInformationSegment ,_ecf _ag .CombinationOperator )_ag .CombinationOperator {if _debb .CombinationOperatorOverrideAllowed (){return _ecf ; +};return _debb .CombinationOperator ();};func (_dcbg *Page )nextSegmentNumber ()uint32 {return _dcbg .Document .nextSegmentNumber ()};func _dbg (_cdfd *_ac .Reader ,_fcf *Globals )(*Document ,error ){_aad :=&Document {Pages :make (map[int ]*Page ),InputStream :_cdfd ,OrganizationType :_ae .OSequential ,NumberOfPagesUnknown :true ,GlobalSegments :_fcf ,_e :9}; +if _aad .GlobalSegments ==nil {_aad .GlobalSegments =&Globals {};};if _accg :=_aad .mapData ();_accg !=nil {return nil ,_accg ;};return _aad ,nil ;};func (_abg *Globals )GetSymbolDictionary ()(*_ae .Header ,error ){const _gbeg ="G\u006c\u006f\u0062\u0061\u006c\u0073.\u0047\u0065\u0074\u0053\u0079\u006d\u0062\u006f\u006cD\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079"; +if _abg ==nil {return nil ,_df .Error (_gbeg ,"\u0067\u006c\u006f\u0062al\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};if len (_abg .Segments )==0{return nil ,_df .Error (_gbeg ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0073\u0020\u0061\u0072\u0065\u0020e\u006d\u0070\u0074\u0079"); +};for _ ,_ddf :=range _abg .Segments {if _ddf .Type ==_ae .TSymbolDictionary {return _ddf ,nil ;};};return nil ,_df .Error (_gbeg ,"\u0067\u006c\u006fba\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0020d\u0069c\u0074i\u006fn\u0061\u0072\u0079\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +};func (_bfa *Page )GetBitmap ()(_gcf *_ag .Bitmap ,_edg error ){_a .Log .Trace (_cb .Sprintf ("\u005b\u0050\u0041G\u0045\u005d\u005b\u0023%\u0064\u005d\u0020\u0047\u0065\u0074\u0042i\u0074\u006d\u0061\u0070\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e",_bfa .PageNumber )); +defer func (){if _edg !=nil {_a .Log .Trace (_cb .Sprintf ("\u005b\u0050\u0041\u0047\u0045\u005d\u005b\u0023\u0025\u0064\u005d\u0020\u0047\u0065\u0074B\u0069t\u006d\u0061\u0070\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_bfa .PageNumber ,_edg )); +}else {_a .Log .Trace (_cb .Sprintf ("\u005b\u0050\u0041\u0047\u0045\u005d\u005b\u0023\u0025\u0064]\u0020\u0047\u0065\u0074\u0042\u0069\u0074m\u0061\u0070\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064",_bfa .PageNumber ));};}();if _bfa .Bitmap !=nil {return _bfa .Bitmap ,nil ; +};_edg =_bfa .composePageBitmap ();if _edg !=nil {return nil ,_edg ;};return _bfa .Bitmap ,nil ;};func (_efa *Document )produceClassifiedPage (_ba *Page ,_ggb *_ae .Header )(_bgg error ){const _fd ="p\u0072\u006f\u0064\u0075ce\u0043l\u0061\u0073\u0073\u0069\u0066i\u0065\u0064\u0050\u0061\u0067\u0065"; +var _ebb map[int ]int ;_bgf :=_efa ._cbc ;_bad :=[]*_ae .Header {_ggb };if len (_efa ._gb [_ba .PageNumber ])> 0{_ebb =map[int ]int {};_fdf ,_efd :=_efa .addSymbolDictionary (_ba .PageNumber ,_efa .Classer .UndilatedTemplates ,_efa ._gb [_ba .PageNumber ],_ebb ,false ); +if _efd !=nil {return _df .Wrap (_efd ,_fd ,"");};_bad =append (_bad ,_fdf );_bgf +=len (_efa ._gb [_ba .PageNumber ]);};_cga :=_efa ._da [_ba .PageNumber ];_a .Log .Debug ("P\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020c\u006f\u006d\u0070\u0073: \u0025\u0076",_ba .PageNumber ,_cga ); +_ba .addTextRegionSegment (_bad ,_efa ._ea ,_ebb ,_efa ._da [_ba .PageNumber ],_efa .Classer .PtaLL ,_efa .Classer .UndilatedTemplates ,_efa .Classer .ClassIDs ,nil ,_dc (_bgf ),len (_efa ._da [_ba .PageNumber ]));return nil ;};type Page struct{Segments []*_ae .Header ; +PageNumber int ;Bitmap *_ag .Bitmap ;FinalHeight int ;FinalWidth int ;ResolutionX int ;ResolutionY int ;IsLossless bool ;Document *Document ;FirstSegmentNumber int ;EncodingMethod EncodingMethod ;BlackIsOne bool ;};func (_ebf *Page )getResolutionY ()(int ,error ){const _aadd ="\u0067\u0065\u0074\u0052\u0065\u0073\u006f\u006c\u0075t\u0069\u006f\u006e\u0059"; +if _ebf .ResolutionY !=0{return _ebf .ResolutionY ,nil ;};_bfae :=_ebf .getPageInformationSegment ();if _bfae ==nil {return 0,_df .Error (_aadd ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e");};_cdga ,_bee :=_bfae .GetSegmentData (); +if _bee !=nil {return 0,_df .Wrap (_bee ,_aadd ,"");};_ecfg ,_ebg :=_cdga .(*_ae .PageInformationSegment );if !_ebg {return 0,_df .Errorf (_aadd ,"\u0070\u0061\u0067\u0065\u0020\u0069\u006e\u0066o\u0072\u006d\u0061ti\u006f\u006e\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0074\u0079\u0070\u0065\u003a\u0027%\u0054\u0027",_cdga ); +};_ebf .ResolutionY =_ecfg .ResolutionY ;return _ebf .ResolutionY ,nil ;};func (_gcb *Page )createStripedPage (_efc *_ae .PageInformationSegment )error {const _dfgc ="\u0063\u0072\u0065\u0061\u0074\u0065\u0053\u0074\u0072\u0069\u0070\u0065d\u0050\u0061\u0067\u0065"; +_ade ,_ggce :=_gcb .collectPageStripes ();if _ggce !=nil {return _df .Wrap (_ggce ,_dfgc ,"");};var _bbe int ;for _ ,_aadf :=range _ade {if _add ,_aee :=_aadf .(*_ae .EndOfStripe );_aee {_bbe =_add .LineNumber ()+1;}else {_edga :=_aadf .(_ae .Regioner ); +_eec :=_edga .GetRegionInfo ();_abdbg :=_gcb .getCombinationOperator (_efc ,_eec .CombinaionOperator );_gcad ,_bdcc :=_edga .GetRegionBitmap ();if _bdcc !=nil {return _df .Wrap (_bdcc ,_dfgc ,"");};_bdcc =_ag .Blit (_gcad ,_gcb .Bitmap ,int (_eec .XLocation ),_bbe ,_abdbg ); +if _bdcc !=nil {return _df .Wrap (_bdcc ,_dfgc ,"");};};};return nil ;};func (_gaa *Document )parseFileHeader ()error {const _gfe ="\u0070a\u0072s\u0065\u0046\u0069\u006c\u0065\u0048\u0065\u0061\u0064\u0065\u0072";_ ,_ceb :=_gaa .InputStream .Seek (8,_g .SeekStart ); +if _ceb !=nil {return _df .Wrap (_ceb ,_gfe ,"\u0069\u0064");};_ ,_ceb =_gaa .InputStream .ReadBits (5);if _ceb !=nil {return _df .Wrap (_ceb ,_gfe ,"\u0072\u0065\u0073\u0065\u0072\u0076\u0065\u0064\u0020\u0062\u0069\u0074\u0073");};_fecd ,_ceb :=_gaa .InputStream .ReadBit (); +if _ceb !=nil {return _df .Wrap (_ceb ,_gfe ,"\u0065x\u0074e\u006e\u0064\u0065\u0064\u0020t\u0065\u006dp\u006c\u0061\u0074\u0065\u0073");};if _fecd ==1{_gaa .GBUseExtTemplate =true ;};_fecd ,_ceb =_gaa .InputStream .ReadBit ();if _ceb !=nil {return _df .Wrap (_ceb ,_gfe ,"\u0075\u006e\u006b\u006eow\u006e\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072"); +};if _fecd !=1{_gaa .NumberOfPagesUnknown =false ;};_fecd ,_ceb =_gaa .InputStream .ReadBit ();if _ceb !=nil {return _df .Wrap (_ceb ,_gfe ,"\u006f\u0072\u0067\u0061\u006e\u0069\u007a\u0061\u0074\u0069\u006f\u006e \u0074\u0079\u0070\u0065");};_gaa .OrganizationType =_ae .OrganizationType (_fecd ); +if !_gaa .NumberOfPagesUnknown {_gaa .NumberOfPages ,_ceb =_gaa .InputStream .ReadUint32 ();if _ceb !=nil {return _df .Wrap (_ceb ,_gfe ,"\u006eu\u006db\u0065\u0072\u0020\u006f\u0066\u0020\u0070\u0061\u0067\u0065\u0073");};_gaa ._e =13;};return nil ;}; +func (_fcd *Page )createNormalPage (_deb *_ae .PageInformationSegment )error {const _gbbd ="\u0063\u0072e\u0061\u0074\u0065N\u006f\u0072\u006d\u0061\u006c\u0050\u0061\u0067\u0065";_fcd .Bitmap =_ag .New (_deb .PageBMWidth ,_deb .PageBMHeight );if _deb .DefaultPixelValue !=0{_fcd .Bitmap .SetDefaultPixel (); +};for _ ,_gca :=range _fcd .Segments {switch _gca .Type {case 6,7,22,23,38,39,42,43:_a .Log .Trace ("\u0047\u0065\u0074\u0074in\u0067\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u003a\u0020\u0025\u0064",_gca .SegmentNumber );_gad ,_caa :=_gca .GetSegmentData (); +if _caa !=nil {return _caa ;};_afdc ,_bcf :=_gad .(_ae .Regioner );if !_bcf {_a .Log .Debug ("\u0053\u0065g\u006d\u0065\u006e\u0074\u003a\u0020\u0025\u0054\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0052\u0065\u0067\u0069on\u0065\u0072",_gad ); +return _df .Errorf (_gbbd ,"i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006a\u0062i\u0067\u0032\u0020\u0073\u0065\u0067\u006den\u0074\u0020\u0074\u0079p\u0065\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061 R\u0065\u0067i\u006f\u006e\u0065\u0072\u003a\u0020\u0025\u0054",_gad ); +};_ece ,_caa :=_afdc .GetRegionBitmap ();if _caa !=nil {return _df .Wrap (_caa ,_gbbd ,"");};if _fcd .fitsPage (_deb ,_ece ){_fcd .Bitmap =_ece ;}else {_fafd :=_afdc .GetRegionInfo ();_gagg :=_fcd .getCombinationOperator (_deb ,_fafd .CombinaionOperator ); +_caa =_ag .Blit (_ece ,_fcd .Bitmap ,int (_fafd .XLocation ),int (_fafd .YLocation ),_gagg );if _caa !=nil {return _df .Wrap (_caa ,_gbbd ,"");};};};};return nil ;};func (_gfec *Globals )AddSegment (segment *_ae .Header ){_gfec .Segments =append (_gfec .Segments ,segment ); +};func (_eab *Globals )GetSegmentByIndex (index int )(*_ae .Header ,error ){const _bed ="\u0047l\u006f\u0062\u0061\u006cs\u002e\u0047\u0065\u0074\u0053e\u0067m\u0065n\u0074\u0042\u0079\u0049\u006e\u0064\u0065x";if _eab ==nil {return nil ,_df .Error (_bed ,"\u0067\u006c\u006f\u0062al\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};if len (_eab .Segments )==0{return nil ,_df .Error (_bed ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0073\u0020\u0061\u0072\u0065\u0020e\u006d\u0070\u0074\u0079");};if index > len (_eab .Segments )-1{return nil ,_df .Error (_bed ,"\u0069n\u0064e\u0078\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +};return _eab .Segments [index ],nil ;};func (_cg *Document )produceClassifiedPages ()(_dd error ){const _abd ="\u0070\u0072\u006f\u0064uc\u0065\u0043\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064\u0050\u0061\u0067e\u0073";if _cg .Classer ==nil {return nil ; +};var (_bdc *Page ;_bgd bool ;_bf *_ae .Header ;);for _bda :=1;_bda <=int (_cg .NumberOfPages );_bda ++{if _bdc ,_bgd =_cg .Pages [_bda ];!_bgd {return _df .Errorf (_abd ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_bda ); +};if _bdc .EncodingMethod ==GenericEM {continue ;};if _bf ==nil {if _bf ,_dd =_cg .GlobalSegments .GetSymbolDictionary ();_dd !=nil {return _df .Wrap (_dd ,_abd ,"");};};if _dd =_cg .produceClassifiedPage (_bdc ,_bf );_dd !=nil {return _df .Wrapf (_dd ,_abd ,"\u0070\u0061\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027",_bda ); +};};return nil ;};func (_dea *Page )AddPageInformationSegment (){_gff :=&_ae .PageInformationSegment {PageBMWidth :_dea .FinalWidth ,PageBMHeight :_dea .FinalHeight ,ResolutionX :_dea .ResolutionX ,ResolutionY :_dea .ResolutionY ,IsLossless :_dea .IsLossless }; +if _dea .BlackIsOne {_gff .DefaultPixelValue =uint8 (0x1);};_cdbc :=&_ae .Header {PageAssociation :_dea .PageNumber ,SegmentDataLength :uint64 (_gff .Size ()),SegmentData :_gff ,Type :_ae .TPageInformation };_dea .Segments =append (_dea .Segments ,_cdbc ); +};func (_gggc *Page )GetSegment (number int )(*_ae .Header ,error ){const _ebd ="\u0050a\u0067e\u002e\u0047\u0065\u0074\u0053\u0065\u0067\u006d\u0065\u006e\u0074";for _ ,_ede :=range _gggc .Segments {if _ede .SegmentNumber ==uint32 (number ){return _ede ,nil ; +};};_cce :=make ([]uint32 ,len (_gggc .Segments ));for _afe ,_cfgd :=range _gggc .Segments {_cce [_afe ]=_cfgd .SegmentNumber ;};return nil ,_df .Errorf (_ebd ,"\u0073e\u0067\u006d\u0065n\u0074\u0020\u0077i\u0074h \u006e\u0075\u006d\u0062\u0065\u0072\u003a \u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0070\u0061\u0067\u0065\u003a\u0020'%\u0064'\u002e\u0020\u004b\u006e\u006f\u0077n\u0020\u0073\u0065\u0067\u006de\u006e\u0074\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u003a \u0025\u0076",number ,_gggc .PageNumber ,_cce ); +};func (_fda *Document )GetNumberOfPages ()(uint32 ,error ){if _fda .NumberOfPagesUnknown ||_fda .NumberOfPages ==0{if len (_fda .Pages )==0{if _cag :=_fda .mapData ();_cag !=nil {return 0,_df .Wrap (_cag ,"\u0044o\u0063\u0075\u006d\u0065n\u0074\u002e\u0047\u0065\u0074N\u0075m\u0062e\u0072\u004f\u0066\u0050\u0061\u0067\u0065s",""); +};};return uint32 (len (_fda .Pages )),nil ;};return _fda .NumberOfPages ,nil ;};func (_cdb *Globals )GetSegment (segmentNumber int )(*_ae .Header ,error ){const _fbc ="\u0047l\u006fb\u0061\u006c\u0073\u002e\u0047e\u0074\u0053e\u0067\u006d\u0065\u006e\u0074"; +if _cdb ==nil {return nil ,_df .Error (_fbc ,"\u0067\u006c\u006f\u0062al\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};if len (_cdb .Segments )==0{return nil ,_df .Error (_fbc ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0073\u0020\u0061\u0072\u0065\u0020e\u006d\u0070\u0074\u0079"); +};var _aae *_ae .Header ;for _ ,_aae =range _cdb .Segments {if _aae .SegmentNumber ==uint32 (segmentNumber ){break ;};};if _aae ==nil {return nil ,_df .Error (_fbc ,"\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};return _aae ,nil ;};func (_bdf *Page )getPageInformationSegment ()*_ae .Header {for _ ,_adg :=range _bdf .Segments {if _adg .Type ==_ae .TPageInformation {return _adg ;};};_a .Log .Debug ("\u0050\u0061\u0067\u0065\u0020\u0069\u006e\u0066o\u0072\u006d\u0061ti\u006f\u006e\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0066o\u0072\u0020\u0070\u0061\u0067\u0065\u003a\u0020%\u0073\u002e",_bdf ); +return nil ;};func (_dgf *Document )Encode ()(_agf []byte ,_cbb error ){const _bbg ="\u0044o\u0063u\u006d\u0065\u006e\u0074\u002e\u0045\u006e\u0063\u006f\u0064\u0065";var _aed ,_agc int ;if _dgf .FullHeaders {if _aed ,_cbb =_dgf .encodeFileHeader (_dgf ._dfa ); +_cbb !=nil {return nil ,_df .Wrap (_cbb ,_bbg ,"");};};var (_aeff bool ;_efb *_ae .Header ;_gbea *Page ;);if _cbb =_dgf .completeClassifiedPages ();_cbb !=nil {return nil ,_df .Wrap (_cbb ,_bbg ,"");};if _cbb =_dgf .produceClassifiedPages ();_cbb !=nil {return nil ,_df .Wrap (_cbb ,_bbg ,""); +};if _dgf .GlobalSegments !=nil {for _ ,_efb =range _dgf .GlobalSegments .Segments {if _cbb =_dgf .encodeSegment (_efb ,&_aed );_cbb !=nil {return nil ,_df .Wrap (_cbb ,_bbg ,"");};};};for _gba :=1;_gba <=int (_dgf .NumberOfPages );_gba ++{if _gbea ,_aeff =_dgf .Pages [_gba ]; +!_aeff {return nil ,_df .Errorf (_bbg ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_gba );};for _ ,_efb =range _gbea .Segments {if _cbb =_dgf .encodeSegment (_efb ,&_aed );_cbb !=nil {return nil ,_df .Wrap (_cbb ,_bbg ,""); +};};};if _dgf .FullHeaders {if _agc ,_cbb =_dgf .encodeEOFHeader (_dgf ._dfa );_cbb !=nil {return nil ,_df .Wrap (_cbb ,_bbg ,"");};_aed +=_agc ;};_agf =_dgf ._dfa .Data ();if len (_agf )!=_aed {_a .Log .Debug ("\u0042\u0079\u0074\u0065\u0073 \u0077\u0072\u0069\u0074\u0074\u0065\u006e \u0028\u006e\u0029\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u0064\u0061\u0074\u0061\u0020\u0065\u006e\u0063\u006fd\u0065\u0064\u003a\u0020\u0027\u0025d\u0027",_aed ,len (_agf )); +};return _agf ,nil ;};func (_ec *Document )reachedEOF (_aa int64 )(bool ,error ){const _dbfa ="\u0072\u0065\u0061\u0063\u0068\u0065\u0064\u0045\u004f\u0046";_ ,_dfbd :=_ec .InputStream .Seek (_aa ,_g .SeekStart );if _dfbd !=nil {_a .Log .Debug ("\u0072\u0065\u0061c\u0068\u0065\u0064\u0045\u004f\u0046\u0020\u002d\u0020\u0064\u002e\u0049\u006e\u0070\u0075\u0074\u0053\u0074\u0072\u0065\u0061\u006d\u002e\u0053\u0065\u0065\u006b\u0020\u0066a\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_dfbd ); +return false ,_df .Wrap (_dfbd ,_dbfa ,"\u0069n\u0070\u0075\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020s\u0065\u0065\u006b\u0020\u0066\u0061\u0069\u006c\u0065\u0064");};_ ,_dfbd =_ec .InputStream .ReadBits (32);if _dfbd ==_g .EOF {return true ,nil ; +}else if _dfbd !=nil {return false ,_df .Wrap (_dfbd ,_dbfa ,"");};return false ,nil ;};type Globals struct{Segments []*_ae .Header ;};func InitEncodeDocument (fullHeaders bool )*Document {return &Document {FullHeaders :fullHeaders ,_dfa :_ac .BufferedMSB (),Pages :map[int ]*Page {},_gb :map[int ][]int {},_ea :map[int ]int {},_da :map[int ][]int {}}; +};func (_bdgd *Page )getResolutionX ()(int ,error ){const _bgdc ="\u0067\u0065\u0074\u0052\u0065\u0073\u006f\u006c\u0075t\u0069\u006f\u006e\u0058";if _bdgd .ResolutionX !=0{return _bdgd .ResolutionX ,nil ;};_ggcd :=_bdgd .getPageInformationSegment ();if _ggcd ==nil {return 0,_df .Error (_bgdc ,"n\u0069l\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006ef\u006f\u0072\u006d\u0061ti\u006f\u006e"); +};_baa ,_cagg :=_ggcd .GetSegmentData ();if _cagg !=nil {return 0,_df .Wrap (_cagg ,_bgdc ,"");};_dca ,_bedg :=_baa .(*_ae .PageInformationSegment );if !_bedg {return 0,_df .Errorf (_bgdc ,"\u0070\u0061\u0067\u0065\u0020\u0069n\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0069\u0073 \u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0079\u0070e\u003a \u0027\u0025\u0054\u0027",_baa ); +};_bdgd .ResolutionX =_dca .ResolutionX ;return _bdgd .ResolutionX ,nil ;};func (_ccd *Document )mapData ()error {const _fgc ="\u006da\u0070\u0044\u0061\u0074\u0061";var (_abdc []*_ae .Header ;_cfb int64 ;_bbfg _ae .Type ;);_dde ,_fb :=_ccd .isFileHeaderPresent (); +if _fb !=nil {return _df .Wrap (_fb ,_fgc ,"");};if _dde {if _fb =_ccd .parseFileHeader ();_fb !=nil {return _df .Wrap (_fb ,_fgc ,"");};_cfb +=int64 (_ccd ._e );_ccd .FullHeaders =true ;};var (_be *Page ;_defd bool ;);for _bbfg !=51&&!_defd {_efbb ,_bcb :=_ae .NewHeader (_ccd ,_ccd .InputStream ,_cfb ,_ccd .OrganizationType ); +if _bcb !=nil {return _df .Wrap (_bcb ,_fgc ,"");};_a .Log .Trace ("\u0044\u0065c\u006f\u0064\u0069\u006eg\u0020\u0073e\u0067\u006d\u0065\u006e\u0074\u0020\u006e\u0075m\u0062\u0065\u0072\u003a\u0020\u0025\u0064\u002c\u0020\u0054\u0079\u0070e\u003a\u0020\u0025\u0073",_efbb .SegmentNumber ,_efbb .Type ); +_bbfg =_efbb .Type ;if _bbfg !=_ae .TEndOfFile {if _efbb .PageAssociation !=0{_be =_ccd .Pages [_efbb .PageAssociation ];if _be ==nil {_be =_gegb (_ccd ,_efbb .PageAssociation );_ccd .Pages [_efbb .PageAssociation ]=_be ;if _ccd .NumberOfPagesUnknown {_ccd .NumberOfPages ++; +};};_be .Segments =append (_be .Segments ,_efbb );}else {_ccd .GlobalSegments .AddSegment (_efbb );};};_abdc =append (_abdc ,_efbb );_cfb =_ccd .InputStream .AbsolutePosition ();if _ccd .OrganizationType ==_ae .OSequential {_cfb +=int64 (_efbb .SegmentDataLength ); +};_defd ,_bcb =_ccd .reachedEOF (_cfb );if _bcb !=nil {_a .Log .Debug ("\u006a\u0062\u0069\u0067\u0032 \u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0072\u0065\u0061\u0063h\u0065\u0064\u0020\u0045\u004f\u0046\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_bcb ); +return _df .Wrap (_bcb ,_fgc ,"");};};_ccd .determineRandomDataOffsets (_abdc ,uint64 (_cfb ));return nil ;};type EncodingMethod int ;func (_bcd *Page )collectPageStripes ()(_cdba []_ae .Segmenter ,_cecg error ){const _dfe ="\u0063o\u006cl\u0065\u0063\u0074\u0050\u0061g\u0065\u0053t\u0072\u0069\u0070\u0065\u0073"; +var _dgc _ae .Segmenter ;for _ ,_eabd :=range _bcd .Segments {switch _eabd .Type {case 6,7,22,23,38,39,42,43:_dgc ,_cecg =_eabd .GetSegmentData ();if _cecg !=nil {return nil ,_df .Wrap (_cecg ,_dfe ,"");};_cdba =append (_cdba ,_dgc );case 50:_dgc ,_cecg =_eabd .GetSegmentData (); +if _cecg !=nil {return nil ,_cecg ;};_bbd ,_fgf :=_dgc .(*_ae .EndOfStripe );if !_fgf {return nil ,_df .Errorf (_dfe ,"\u0045\u006e\u0064\u004f\u0066\u0053\u0074\u0072\u0069\u0070\u0065\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u006f\u0066\u0020\u0076\u0061l\u0069\u0064\u0020\u0074\u0079p\u0065\u003a \u0027\u0025\u0054\u0027",_dgc ); +};_cdba =append (_cdba ,_bbd );_bcd .FinalHeight =_bbd .LineNumber ();};};return _cdba ,nil ;};func (_fdeg *Document )nextPageNumber ()uint32 {_fdeg .NumberOfPages ++;return _fdeg .NumberOfPages };func (_cd *Document )AddClassifiedPage (bm *_ag .Bitmap ,method _b .Method )(_bb error ){const _ef ="\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u002e\u0041\u0064d\u0043\u006c\u0061\u0073\u0073\u0069\u0066\u0069\u0065\u0064P\u0061\u0067\u0065"; +if !_cd .FullHeaders &&_cd .NumberOfPages !=0{return _df .Error (_ef ,"\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0061\u006c\u0072\u0065a\u0064\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0070\u0061\u0067\u0065\u002e\u0020\u0046\u0069\u006c\u0065\u004d\u006f\u0064\u0065\u0020\u0064\u0069\u0073\u0061\u006c\u006c\u006f\u0077\u0073\u0020\u0061\u0064\u0064i\u006e\u0067\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e \u006f\u006e\u0065\u0020\u0070\u0061g\u0065"); +};if _cd .Classer ==nil {if _cd .Classer ,_bb =_b .Init (_b .DefaultSettings ());_bb !=nil {return _df .Wrap (_bb ,_ef ,"");};};_aec :=int (_cd .nextPageNumber ());_fe :=&Page {Segments :[]*_ae .Header {},Bitmap :bm ,Document :_cd ,FinalHeight :bm .Height ,FinalWidth :bm .Width ,PageNumber :_aec }; +_cd .Pages [_aec ]=_fe ;switch method {case _b .RankHaus :_fe .EncodingMethod =RankHausEM ;case _b .Correlation :_fe .EncodingMethod =CorrelationEM ;};_fe .AddPageInformationSegment ();if _bb =_cd .Classer .AddPage (bm ,_aec ,method );_bb !=nil {return _df .Wrap (_bb ,_ef ,""); +};if _cd .FullHeaders {_fe .AddEndOfPageSegment ();};return nil ;};func (_ed *Document )addSymbolDictionary (_agb int ,_fgb *_ag .Bitmaps ,_bfb []int ,_ga map[int ]int ,_bc bool )(*_ae .Header ,error ){const _dfb ="\u0061\u0064\u0064\u0053ym\u0062\u006f\u006c\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"; +_fc :=&_ae .SymbolDictionary {};if _caf :=_fc .InitEncode (_fgb ,_bfb ,_ga ,_bc );_caf !=nil {return nil ,_caf ;};_gbe :=&_ae .Header {Type :_ae .TSymbolDictionary ,PageAssociation :_agb ,SegmentData :_fc };if _agb ==0{if _ed .GlobalSegments ==nil {_ed .GlobalSegments =&Globals {}; +};_ed .GlobalSegments .AddSegment (_gbe );return _gbe ,nil ;};_gae ,_cdg :=_ed .Pages [_agb ];if !_cdg {return nil ,_df .Errorf (_dfb ,"p\u0061g\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020n\u006f\u0074\u0020\u0066ou\u006e\u0064",_agb );};var (_dff int ; +_bfd *_ae .Header ;);for _dff ,_bfd =range _gae .Segments {if _bfd .Type ==_ae .TPageInformation {break ;};};_dff ++;_gae .Segments =append (_gae .Segments ,nil );copy (_gae .Segments [_dff +1:],_gae .Segments [_dff :]);_gae .Segments [_dff ]=_gbe ;return _gbe ,nil ; +};func (_bfe *Page )GetResolutionY ()(int ,error ){return _bfe .getResolutionY ()};func (_dbea *Page )createPage (_ggd *_ae .PageInformationSegment )error {var _aag error ;if !_ggd .IsStripe ||_ggd .PageBMHeight !=-1{_aag =_dbea .createNormalPage (_ggd ); +}else {_aag =_dbea .createStripedPage (_ggd );};return _aag ;};func (_defb *Page )lastSegmentNumber ()(_ccde uint32 ,_egf error ){const _fce ="\u006c\u0061\u0073\u0074\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u004eu\u006d\u0062\u0065\u0072";if len (_defb .Segments )==0{return _ccde ,_df .Errorf (_fce ,"\u006e\u006f\u0020se\u0067\u006d\u0065\u006e\u0074\u0073\u0020\u0066\u006fu\u006ed\u0020i\u006e \u0074\u0068\u0065\u0020\u0070\u0061\u0067\u0065\u0020\u0027\u0025\u0064\u0027",_defb .PageNumber ); +};return _defb .Segments [len (_defb .Segments )-1].SegmentNumber ,nil ;};func (_ceg *Document )encodeSegment (_bde *_ae .Header ,_cee *int )error {const _ead ="\u0065\u006e\u0063\u006f\u0064\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074";_bde .SegmentNumber =_ceg .nextSegmentNumber (); +_ad ,_ebe :=_bde .Encode (_ceg ._dfa );if _ebe !=nil {return _df .Wrapf (_ebe ,_ead ,"\u0073\u0065\u0067\u006d\u0065\u006e\u0074\u003a\u0020\u0027\u0025\u0064\u0027",_bde .SegmentNumber );};*_cee +=_ad ;return nil ;};type Document struct{Pages map[int ]*Page ; +NumberOfPagesUnknown bool ;NumberOfPages uint32 ;GBUseExtTemplate bool ;InputStream *_ac .Reader ;GlobalSegments *Globals ;OrganizationType _ae .OrganizationType ;Classer *_b .Classer ;XRes ,YRes int ;FullHeaders bool ;CurrentSegmentNumber uint32 ;AverageTemplates *_ag .Bitmaps ; +BaseIndexes []int ;Refinement bool ;RefineLevel int ;_e uint8 ;_dfa *_ac .BufferedWriter ;EncodeGlobals bool ;_cbc int ;_gb map[int ][]int ;_da map[int ][]int ;_ab []int ;_ea map[int ]int ;};const (GenericEM EncodingMethod =iota ;CorrelationEM ;RankHausEM ; +);func (_cdcf *Page )countRegions ()int {var _bdac int ;for _ ,_efae :=range _cdcf .Segments {switch _efae .Type {case 6,7,22,23,38,39,42,43:_bdac ++;};};return _bdac ;};func (_gag *Document )nextSegmentNumber ()uint32 {_dba :=_gag .CurrentSegmentNumber ; +_gag .CurrentSegmentNumber ++;return _dba ;};func (_dbe *Page )AddGenericRegion (bm *_ag .Bitmap ,xloc ,yloc ,template int ,tp _ae .Type ,duplicateLineRemoval bool )error {const _acgb ="P\u0061\u0067\u0065\u002eAd\u0064G\u0065\u006e\u0065\u0072\u0069c\u0052\u0065\u0067\u0069\u006f\u006e"; +_cegb :=&_ae .GenericRegion {};if _aede :=_cegb .InitEncode (bm ,xloc ,yloc ,template ,duplicateLineRemoval );_aede !=nil {return _df .Wrap (_aede ,_acgb ,"");};_cgd :=&_ae .Header {Type :_ae .TImmediateGenericRegion ,PageAssociation :_dbe .PageNumber ,SegmentData :_cegb }; +_dbe .Segments =append (_dbe .Segments ,_cgd );return nil ;};func DecodeDocument (input *_ac .Reader ,globals *Globals )(*Document ,error ){return _dbg (input ,globals );};var _gg =[]byte {0x97,0x4A,0x42,0x32,0x0D,0x0A,0x1A,0x0A};func (_dg *Document )AddGenericPage (bm *_ag .Bitmap ,duplicateLineRemoval bool )(_aef error ){const _gc ="\u0044\u006f\u0063um\u0065\u006e\u0074\u002e\u0041\u0064\u0064\u0047\u0065\u006e\u0065\u0072\u0069\u0063\u0050\u0061\u0067\u0065"; +if !_dg .FullHeaders &&_dg .NumberOfPages !=0{return _df .Error (_gc ,"\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0061\u006c\u0072\u0065a\u0064\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0070\u0061\u0067\u0065\u002e\u0020\u0046\u0069\u006c\u0065\u004d\u006f\u0064\u0065\u0020\u0064\u0069\u0073\u0061\u006c\u006c\u006f\u0077\u0073\u0020\u0061\u0064\u0064i\u006e\u0067\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068\u0061\u006e \u006f\u006e\u0065\u0020\u0070\u0061g\u0065"); +};_abe :=&Page {Segments :[]*_ae .Header {},Bitmap :bm ,Document :_dg ,FinalHeight :bm .Height ,FinalWidth :bm .Width ,IsLossless :true ,BlackIsOne :bm .Color ==_ag .Chocolate };_abe .PageNumber =int (_dg .nextPageNumber ());_dg .Pages [_abe .PageNumber ]=_abe ; +bm .InverseData ();_abe .AddPageInformationSegment ();if _aef =_abe .AddGenericRegion (bm ,0,0,0,_ae .TImmediateGenericRegion ,duplicateLineRemoval );_aef !=nil {return _df .Wrap (_aef ,_gc ,"");};if _dg .FullHeaders {_abe .AddEndOfPageSegment ();};return nil ; +};func (_af *Document )GetPage (pageNumber int )(_ae .Pager ,error ){const _cfd ="\u0044\u006fc\u0075\u006d\u0065n\u0074\u002e\u0047\u0065\u0074\u0050\u0061\u0067\u0065";if pageNumber < 0{_a .Log .Debug ("\u004a\u0042\u0049\u00472\u0020\u0050\u0061\u0067\u0065\u0020\u002d\u0020\u0047e\u0074\u0050\u0061\u0067\u0065\u003a\u0020\u0025\u0064\u002e\u0020\u0050\u0061\u0067\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062e\u0020\u006c\u006f\u0077\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0030\u002e\u0020\u0025\u0073",pageNumber ,_f .Stack ()); +return nil ,_df .Errorf (_cfd ,"\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006a\u0062\u0069\u0067\u0032\u0020d\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u002d\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064 \u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u003a\u0020\u0025\u0064",pageNumber ); +};if pageNumber > len (_af .Pages ){_a .Log .Debug ("\u0050\u0061\u0067\u0065 n\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u003a\u0020\u0025\u0064\u002e\u0020%\u0073",pageNumber ,_f .Stack ());return nil ,_df .Error (_cfd ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006a\u0062\u0069\u0067\u0032 \u0064\u006f\u0063\u0075\u006d\u0065n\u0074\u0020\u002d\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};_gfb ,_caff :=_af .Pages [pageNumber ];if !_caff {_a .Log .Debug ("\u0050\u0061\u0067\u0065 n\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u003a\u0020\u0025\u0064\u002e\u0020%\u0073",pageNumber ,_f .Stack ());return nil ,_df .Errorf (_cfd ,"\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006a\u0062\u0069\u0067\u0032 \u0064\u006f\u0063\u0075\u006d\u0065n\u0074\u0020\u002d\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};return _gfb ,nil ;};func (_bfg *Document )encodeFileHeader (_efac _ac .BinaryWriter )(_dbb int ,_ada error ){const _aba ="\u0065\u006ec\u006f\u0064\u0065F\u0069\u006c\u0065\u0048\u0065\u0061\u0064\u0065\u0072";_dbb ,_ada =_efac .Write (_gg );if _ada !=nil {return _dbb ,_df .Wrap (_ada ,_aba ,"\u0069\u0064"); +};if _ada =_efac .WriteByte (0x01);_ada !=nil {return _dbb ,_df .Wrap (_ada ,_aba ,"\u0066\u006c\u0061g\u0073");};_dbb ++;_dgd :=make ([]byte ,4);_d .BigEndian .PutUint32 (_dgd ,_bfg .NumberOfPages );_ebbg ,_ada :=_efac .Write (_dgd );if _ada !=nil {return _ebbg ,_df .Wrap (_ada ,_aba ,"p\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072"); +};_dbb +=_ebbg ;return _dbb ,nil ;};func (_bbf *Document )isFileHeaderPresent ()(bool ,error ){_bbf .InputStream .Mark ();for _ ,_ebbgc :=range _gg {_bfdc ,_eeg :=_bbf .InputStream .ReadByte ();if _eeg !=nil {return false ,_eeg ;};if _ebbgc !=_bfdc {_bbf .InputStream .Reset (); +return false ,nil ;};};_bbf .InputStream .Reset ();return true ,nil ;};func (_aaf *Page )clearSegmentData (){for _ggcg :=range _aaf .Segments {_aaf .Segments [_ggcg ].CleanSegmentData ();};};func _dc (_fde int )int {_dac :=0;_de :=(_fde &(_fde -1))==0; +_fde >>=1;for ;_fde !=0;_fde >>=1{_dac ++;};if _de {return _dac ;};return _dac +1;}; \ No newline at end of file diff --git a/internal/jbig2/document/segments/segments.go b/internal/jbig2/document/segments/segments.go index e49b063db..457604c52 100644 --- a/internal/jbig2/document/segments/segments.go +++ b/internal/jbig2/document/segments/segments.go @@ -9,78 +9,98 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package segments ;import (_f "encoding/binary";_ca "errors";_gg "fmt";_gd "github.com/unidoc/unipdf/v3/common";_d "github.com/unidoc/unipdf/v3/internal/bitwise";_bf "github.com/unidoc/unipdf/v3/internal/jbig2/basic";_gc "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap"; -_ge "github.com/unidoc/unipdf/v3/internal/jbig2/decoder/arithmetic";_fc "github.com/unidoc/unipdf/v3/internal/jbig2/decoder/huffman";_dd "github.com/unidoc/unipdf/v3/internal/jbig2/decoder/mmr";_cad "github.com/unidoc/unipdf/v3/internal/jbig2/encoder/arithmetic"; -_bde "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_bb "github.com/unidoc/unipdf/v3/internal/jbig2/internal";_e "golang.org/x/xerrors";_be "image";_gf "io";_b "math";_bd "strings";_c "time";);func (_dgb *GenericRegion )copyLineAbove (_fdgd int )error {_bcg :=_fdgd *_dgb .Bitmap .RowStride ; -_dcb :=_bcg -_dgb .Bitmap .RowStride ;for _bcbe :=0;_bcbe < _dgb .Bitmap .RowStride ;_bcbe ++{_cagd ,_gegd :=_dgb .Bitmap .GetByte (_dcb );if _gegd !=nil {return _gegd ;};_dcb ++;if _gegd =_dgb .Bitmap .SetByte (_bcg ,_cagd );_gegd !=nil {return _gegd ; -};_bcg ++;};return nil ;};func (_gce *EndOfStripe )parseHeader ()error {_ff ,_fe :=_gce ._ggb .ReadBits (32);if _fe !=nil {return _fe ;};_gce ._dda =int (_ff &_b .MaxInt32 );return nil ;};func (_ggde *GenericRefinementRegion )readAtPixels ()error {_ggde .GrAtX =make ([]int8 ,2); -_ggde .GrAtY =make ([]int8 ,2);_acf ,_ffac :=_ggde ._cgb .ReadByte ();if _ffac !=nil {return _ffac ;};_ggde .GrAtX [0]=int8 (_acf );_acf ,_ffac =_ggde ._cgb .ReadByte ();if _ffac !=nil {return _ffac ;};_ggde .GrAtY [0]=int8 (_acf );_acf ,_ffac =_ggde ._cgb .ReadByte (); -if _ffac !=nil {return _ffac ;};_ggde .GrAtX [1]=int8 (_acf );_acf ,_ffac =_ggde ._cgb .ReadByte ();if _ffac !=nil {return _ffac ;};_ggde .GrAtY [1]=int8 (_acf );return nil ;};func (_abfc *SymbolDictionary )readNumberOfNewSymbols ()error {_eddc ,_dcgd :=_abfc ._cgad .ReadBits (32); -if _dcgd !=nil {return _dcgd ;};_abfc .NumberOfNewSymbols =uint32 (_eddc &_b .MaxUint32 );return nil ;};func (_bdge *GenericRegion )Size ()int {return _bdge .RegionSegment .Size ()+1+2*len (_bdge .GBAtX )};func (_fdbd *PageInformationSegment )readRequiresAuxiliaryBuffer ()error {_faaac ,_aacd :=_fdbd ._acea .ReadBit (); -if _aacd !=nil {return _aacd ;};if _faaac ==1{_fdbd ._dec =true ;};return nil ;};func (_gbeea *HalftoneRegion )GetRegionBitmap ()(*_gc .Bitmap ,error ){if _gbeea .HalftoneRegionBitmap !=nil {return _gbeea .HalftoneRegionBitmap ,nil ;};var _bee error ;_gbeea .HalftoneRegionBitmap =_gc .New (int (_gbeea .RegionSegment .BitmapWidth ),int (_gbeea .RegionSegment .BitmapHeight )); -if _gbeea .Patterns ==nil ||len (_gbeea .Patterns )==0{_gbeea .Patterns ,_bee =_gbeea .GetPatterns ();if _bee !=nil {return nil ,_bee ;};};if _gbeea .HDefaultPixel ==1{_gbeea .HalftoneRegionBitmap .SetDefaultPixel ();};_geag :=_b .Ceil (_b .Log (float64 (len (_gbeea .Patterns )))/_b .Log (2)); -_aggb :=int (_geag );var _gegdd [][]int ;_gegdd ,_bee =_gbeea .grayScaleDecoding (_aggb );if _bee !=nil {return nil ,_bee ;};if _bee =_gbeea .renderPattern (_gegdd );_bee !=nil {return nil ,_bee ;};return _gbeea .HalftoneRegionBitmap ,nil ;};func (_dbdaf *TextRegion )readHuffmanFlags ()error {var (_afeg int ; -_ddbe uint64 ;_bbff error ;);_ ,_bbff =_dbdaf ._dcbba .ReadBit ();if _bbff !=nil {return _bbff ;};_afeg ,_bbff =_dbdaf ._dcbba .ReadBit ();if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffRSize =int8 (_afeg );_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2);if _bbff !=nil {return _bbff ; -};_dbdaf .SbHuffRDY =int8 (_ddbe )&0xf;_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2);if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffRDX =int8 (_ddbe )&0xf;_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2);if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffRDHeight =int8 (_ddbe )&0xf; -_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2);if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffRDWidth =int8 (_ddbe )&0xf;_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2);if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffDT =int8 (_ddbe )&0xf;_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2); -if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffDS =int8 (_ddbe )&0xf;_ddbe ,_bbff =_dbdaf ._dcbba .ReadBits (2);if _bbff !=nil {return _bbff ;};_dbdaf .SbHuffFS =int8 (_ddbe )&0xf;return nil ;};func (_aafb *RegionSegment )String ()string {_cafcf :=&_bd .Builder {}; -_cafcf .WriteString ("\u0009[\u0052E\u0047\u0049\u004f\u004e\u0020S\u0045\u0047M\u0045\u004e\u0054\u005d\u000a");_cafcf .WriteString (_gg .Sprintf ("\t\u0009\u002d\u0020\u0042\u0069\u0074m\u0061\u0070\u0020\u0028\u0077\u0069d\u0074\u0068\u002c\u0020\u0068\u0065\u0069g\u0068\u0074\u0029\u0020\u005b\u0025\u0064\u0078\u0025\u0064]\u000a",_aafb .BitmapWidth ,_aafb .BitmapHeight )); -_cafcf .WriteString (_gg .Sprintf ("\u0009\u0009\u002d\u0020L\u006f\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0028\u0078,\u0079)\u003a\u0020\u005b\u0025\u0064\u002c\u0025d\u005d\u000a",_aafb .XLocation ,_aafb .YLocation ));_cafcf .WriteString (_gg .Sprintf ("\t\u0009\u002d\u0020\u0043\u006f\u006db\u0069\u006e\u0061\u0074\u0069\u006f\u006e\u004f\u0070e\u0072\u0061\u0074o\u0072:\u0020\u0025\u0073",_aafb .CombinaionOperator )); -return _cafcf .String ();};func _eefe (_ceeb *_d .Reader ,_bbec *Header )*GenericRefinementRegion {return &GenericRefinementRegion {_cgb :_ceeb ,RegionInfo :NewRegionSegment (_ceeb ),_cbc :_bbec ,_cg :&template0 {},_cb :&template1 {}};};func (_caef *TextRegion )getUserTable (_fbfee int )(_fc .Tabler ,error ){const _eagce ="\u0067\u0065\u0074U\u0073\u0065\u0072\u0054\u0061\u0062\u006c\u0065"; -var _cdcf int ;for _ ,_afeb :=range _caef .Header .RTSegments {if _afeb .Type ==53{if _cdcf ==_fbfee {_cgedb ,_ebbe :=_afeb .GetSegmentData ();if _ebbe !=nil {return nil ,_ebbe ;};_bagg ,_dbbeg :=_cgedb .(*TableSegment );if !_dbbeg {_gd .Log .Debug (_gg .Sprintf ("\u0073\u0065\u0067\u006d\u0065\u006e\u0074 \u0077\u0069\u0074h\u0020\u0054\u0079p\u0065\u00205\u0033\u0020\u002d\u0020\u0061\u006ed\u0020in\u0064\u0065\u0078\u003a\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0054\u0061\u0062\u006c\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074",_afeb .SegmentNumber )); -return nil ,_bde .Error (_eagce ,"\u0073\u0065\u0067\u006d\u0065\u006e\u0074 \u0077\u0069\u0074h\u0020\u0054\u0079\u0070e\u0020\u0035\u0033\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u002a\u0054\u0061\u0062\u006c\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074"); -};return _fc .NewEncodedTable (_bagg );};_cdcf ++;};};return nil ,nil ;};func (_egfa *SymbolDictionary )getUserTable (_dccb int )(_fc .Tabler ,error ){var _add int ;for _ ,_cfae :=range _egfa .Header .RTSegments {if _cfae .Type ==53{if _add ==_dccb {_aeagg ,_bdfa :=_cfae .GetSegmentData (); -if _bdfa !=nil {return nil ,_bdfa ;};_fecg :=_aeagg .(_fc .BasicTabler );return _fc .NewEncodedTable (_fecg );};_add ++;};};return nil ,nil ;};func (_beef *PageInformationSegment )encodeFlags (_gbde _d .BinaryWriter )(_eafb error ){const _afa ="e\u006e\u0063\u006f\u0064\u0065\u0046\u006c\u0061\u0067\u0073"; -if _eafb =_gbde .SkipBits (1);_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0072\u0065\u0073e\u0072\u0076\u0065\u0064\u0020\u0062\u0069\u0074");};var _bffd int ;if _beef .CombinationOperatorOverrideAllowed (){_bffd =1;};if _eafb =_gbde .WriteBit (_bffd ); -_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0063\u006f\u006db\u0069\u006e\u0061\u0074i\u006f\u006e\u0020\u006f\u0070\u0065\u0072a\u0074\u006f\u0072\u0020\u006f\u0076\u0065\u0072\u0072\u0069\u0064\u0064\u0065\u006e");};_bffd =0;if _beef ._dec {_bffd =1; -};if _eafb =_gbde .WriteBit (_bffd );_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0072e\u0071\u0075\u0069\u0072e\u0073\u0020\u0061\u0075\u0078i\u006ci\u0061r\u0079\u0020\u0062\u0075\u0066\u0066\u0065r");};if _eafb =_gbde .WriteBit ((int (_beef ._fgad )>>1)&0x01); -_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0063\u006f\u006d\u0062\u0069\u006e\u0061\u0074\u0069\u006fn\u0020\u006f\u0070\u0065\u0072\u0061\u0074o\u0072\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0062\u0069\u0074");};if _eafb =_gbde .WriteBit (int (_beef ._fgad )&0x01); -_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0063\u006f\u006db\u0069\u006e\u0061\u0074i\u006f\u006e\u0020\u006f\u0070\u0065\u0072a\u0074\u006f\u0072\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0062\u0069\u0074");};_bffd =int (_beef .DefaultPixelValue ); -if _eafb =_gbde .WriteBit (_bffd );_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0064e\u0066\u0061\u0075\u006c\u0074\u0020\u0070\u0061\u0067\u0065\u0020p\u0069\u0078\u0065\u006c\u0020\u0076\u0061\u006c\u0075\u0065");};_bffd =0;if _beef ._caab {_bffd =1; -};if _eafb =_gbde .WriteBit (_bffd );_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"\u0063\u006f\u006e\u0074ai\u006e\u0073\u0020\u0072\u0065\u0066\u0069\u006e\u0065\u006d\u0065\u006e\u0074");};_bffd =0;if _beef .IsLossless {_bffd =1;};if _eafb =_gbde .WriteBit (_bffd ); -_eafb !=nil {return _bde .Wrap (_eafb ,_afa ,"p\u0061\u0067\u0065\u0020\u0069\u0073 \u0065\u0076\u0065\u006e\u0074\u0075\u0061\u006c\u006cy\u0020\u006c\u006fs\u0073l\u0065\u0073\u0073");};return nil ;};func (_cabb *GenericRegion )overrideAtTemplate1 (_bcae ,_fcfc ,_abbc ,_gee ,_fbae int )int {_bcae &=0x1FF7; -if _cabb .GBAtY [0]==0&&_cabb .GBAtX [0]>=-int8 (_fbae ){_bcae |=(_gee >>uint (7-(int8 (_fbae )+_cabb .GBAtX [0]))&0x1)<<3;}else {_bcae |=int (_cabb .getPixel (_fcfc +int (_cabb .GBAtX [0]),_abbc +int (_cabb .GBAtY [0])))<<3;};return _bcae ;};func (_feaf *GenericRegion )String ()string {_fcbe :=&_bd .Builder {}; -_fcbe .WriteString ("\u000a[\u0047E\u004e\u0045\u0052\u0049\u0043 \u0052\u0045G\u0049\u004f\u004e\u005d\u000a");_fcbe .WriteString (_feaf .RegionSegment .String ()+"\u000a");_fcbe .WriteString (_gg .Sprintf ("\u0009\u002d\u0020Us\u0065\u0045\u0078\u0074\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073\u003a\u0020\u0025\u0076\u000a",_feaf .UseExtTemplates )); -_fcbe .WriteString (_gg .Sprintf ("\u0009\u002d \u0049\u0073\u0054P\u0047\u0044\u006f\u006e\u003a\u0020\u0025\u0076\u000a",_feaf .IsTPGDon ));_fcbe .WriteString (_gg .Sprintf ("\u0009-\u0020G\u0042\u0054\u0065\u006d\u0070l\u0061\u0074e\u003a\u0020\u0025\u0064\u000a",_feaf .GBTemplate )); -_fcbe .WriteString (_gg .Sprintf ("\t\u002d \u0049\u0073\u004d\u004d\u0052\u0045\u006e\u0063o\u0064\u0065\u0064\u003a %\u0076\u000a",_feaf .IsMMREncoded ));_fcbe .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0047\u0042\u0041\u0074\u0058\u003a\u0020\u0025\u0076\u000a",_feaf .GBAtX )); -_fcbe .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0047\u0042\u0041\u0074\u0059\u003a\u0020\u0025\u0076\u000a",_feaf .GBAtY ));_fcbe .WriteString (_gg .Sprintf ("\t\u002d \u0047\u0042\u0041\u0074\u004f\u0076\u0065\u0072r\u0069\u0064\u0065\u003a %\u0076\u000a",_feaf .GBAtOverride )); -return _fcbe .String ();};func (_gefe *SymbolDictionary )huffDecodeBmSize ()(int64 ,error ){if _gefe ._babb ==nil {var (_dfad int ;_ebba error ;);if _gefe .SdHuffDecodeHeightSelection ==3{_dfad ++;};if _gefe .SdHuffDecodeWidthSelection ==3{_dfad ++;};_gefe ._babb ,_ebba =_gefe .getUserTable (_dfad ); -if _ebba !=nil {return 0,_ebba ;};};return _gefe ._babb .Decode (_gefe ._cgad );};func (_efag *TextRegion )decodeStripT ()(_adaee int64 ,_dacc error ){if _efag .IsHuffmanEncoded {if _efag .SbHuffDT ==3{if _efag ._aafc ==nil {var _dbcd int ;if _efag .SbHuffFS ==3{_dbcd ++; -};if _efag .SbHuffDS ==3{_dbcd ++;};_efag ._aafc ,_dacc =_efag .getUserTable (_dbcd );if _dacc !=nil {return 0,_dacc ;};};_adaee ,_dacc =_efag ._aafc .Decode (_efag ._dcbba );if _dacc !=nil {return 0,_dacc ;};}else {var _bageg _fc .Tabler ;_bageg ,_dacc =_fc .GetStandardTable (11+int (_efag .SbHuffDT )); -if _dacc !=nil {return 0,_dacc ;};_adaee ,_dacc =_bageg .Decode (_efag ._dcbba );if _dacc !=nil {return 0,_dacc ;};};}else {var _abgb int32 ;_abgb ,_dacc =_efag ._daa .DecodeInt (_efag ._ccfg );if _dacc !=nil {return 0,_dacc ;};_adaee =int64 (_abgb );}; -_adaee *=int64 (-_efag .SbStrips );return _adaee ,nil ;};func (_dfee *SymbolDictionary )decodeHeightClassDeltaHeightWithHuffman ()(int64 ,error ){switch _dfee .SdHuffDecodeHeightSelection {case 0:_adeg ,_ecdd :=_fc .GetStandardTable (4);if _ecdd !=nil {return 0,_ecdd ; -};return _adeg .Decode (_dfee ._cgad );case 1:_cbfb ,_gcefc :=_fc .GetStandardTable (5);if _gcefc !=nil {return 0,_gcefc ;};return _cbfb .Decode (_dfee ._cgad );case 3:if _dfee ._dbfe ==nil {_bfg ,_efdb :=_fc .GetStandardTable (0);if _efdb !=nil {return 0,_efdb ; -};_dfee ._dbfe =_bfg ;};return _dfee ._dbfe .Decode (_dfee ._cgad );};return 0,nil ;};func (_cgfbe *TextRegion )computeSymbolCodeLength ()error {if _cgfbe .IsHuffmanEncoded {return _cgfbe .symbolIDCodeLengths ();};_cgfbe ._ffaeb =int8 (_b .Ceil (_b .Log (float64 (_cgfbe .NumberOfSymbols ))/_b .Log (2))); -return nil ;};func (_debc *Header )writeSegmentDataLength (_fagbe _d .BinaryWriter )(_ffgb int ,_edcgf error ){_aebe :=make ([]byte ,4);_f .BigEndian .PutUint32 (_aebe ,uint32 (_debc .SegmentDataLength ));if _ffgb ,_edcgf =_fagbe .Write (_aebe );_edcgf !=nil {return 0,_bde .Wrap (_edcgf ,"\u0048\u0065a\u0064\u0065\u0072\u002e\u0077\u0072\u0069\u0074\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0044\u0061\u0074\u0061\u004c\u0065ng\u0074\u0068",""); -};return _ffgb ,nil ;};func (_ggcd *TextRegion )parseHeader ()error {var _accg error ;_gd .Log .Trace ("\u005b\u0054E\u0058\u0054\u0020\u0052E\u0047\u0049O\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045-\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0062\u0065\u0067\u0069n\u0073\u002e\u002e\u002e"); -defer func (){if _accg !=nil {_gd .Log .Trace ("\u005b\u0054\u0045\u0058\u0054\u0020\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002d\u0048\u0045\u0041\u0044E\u0052\u005d\u0020\u0066\u0061i\u006c\u0065d\u002e\u0020\u0025\u0076",_accg ); -}else {_gd .Log .Trace ("\u005b\u0054E\u0058\u0054\u0020\u0052E\u0047\u0049O\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045-\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0066\u0069\u006e\u0069s\u0068\u0065\u0064\u002e");};}();if _accg =_ggcd .RegionInfo .parseHeader (); -_accg !=nil {return _accg ;};if _accg =_ggcd .readRegionFlags ();_accg !=nil {return _accg ;};if _ggcd .IsHuffmanEncoded {if _accg =_ggcd .readHuffmanFlags ();_accg !=nil {return _accg ;};};if _accg =_ggcd .readUseRefinement ();_accg !=nil {return _accg ; -};if _accg =_ggcd .readAmountOfSymbolInstances ();_accg !=nil {return _accg ;};if _accg =_ggcd .getSymbols ();_accg !=nil {return _accg ;};if _accg =_ggcd .computeSymbolCodeLength ();_accg !=nil {return _accg ;};if _accg =_ggcd .checkInput ();_accg !=nil {return _accg ; -};_gd .Log .Trace ("\u0025\u0073",_ggcd .String ());return nil ;};var (_cgcd Segmenter ;_bcbb =map[Type ]func ()Segmenter {TSymbolDictionary :func ()Segmenter {return &SymbolDictionary {}},TIntermediateTextRegion :func ()Segmenter {return &TextRegion {}},TImmediateTextRegion :func ()Segmenter {return &TextRegion {}},TImmediateLosslessTextRegion :func ()Segmenter {return &TextRegion {}},TPatternDictionary :func ()Segmenter {return &PatternDictionary {}},TIntermediateHalftoneRegion :func ()Segmenter {return &HalftoneRegion {}},TImmediateHalftoneRegion :func ()Segmenter {return &HalftoneRegion {}},TImmediateLosslessHalftoneRegion :func ()Segmenter {return &HalftoneRegion {}},TIntermediateGenericRegion :func ()Segmenter {return &GenericRegion {}},TImmediateGenericRegion :func ()Segmenter {return &GenericRegion {}},TImmediateLosslessGenericRegion :func ()Segmenter {return &GenericRegion {}},TIntermediateGenericRefinementRegion :func ()Segmenter {return &GenericRefinementRegion {}},TImmediateGenericRefinementRegion :func ()Segmenter {return &GenericRefinementRegion {}},TImmediateLosslessGenericRefinementRegion :func ()Segmenter {return &GenericRefinementRegion {}},TPageInformation :func ()Segmenter {return &PageInformationSegment {}},TEndOfPage :func ()Segmenter {return _cgcd },TEndOfStrip :func ()Segmenter {return &EndOfStripe {}},TEndOfFile :func ()Segmenter {return _cgcd },TProfiles :func ()Segmenter {return _cgcd },TTables :func ()Segmenter {return &TableSegment {}},TExtension :func ()Segmenter {return _cgcd },TBitmap :func ()Segmenter {return _cgcd }}; -);func (_cddg *PatternDictionary )Init (h *Header ,r *_d .Reader )error {_cddg ._abegf =r ;return _cddg .parseHeader ();};func (_bfb *GenericRefinementRegion )decodeSLTP ()(int ,error ){_bfb .Template .setIndex (_bfb ._a );return _bfb ._bea .DecodeBit (_bfb ._a ); -};func (_begf *PatternDictionary )parseHeader ()error {_gd .Log .Trace ("\u005b\u0050\u0041\u0054\u0054\u0045\u0052\u004e\u002d\u0044\u0049\u0043\u0054I\u004f\u004e\u0041\u0052\u0059\u005d[\u0070\u0061\u0072\u0073\u0065\u0048\u0065\u0061\u0064\u0065\u0072\u005d\u0020b\u0065\u0067\u0069\u006e"); -defer func (){_gd .Log .Trace ("\u005b\u0050\u0041T\u0054\u0045\u0052\u004e\u002d\u0044\u0049\u0043\u0054\u0049\u004f\u004e\u0041\u0052\u0059\u005d\u005b\u0070\u0061\u0072\u0073\u0065\u0048\u0065\u0061\u0064\u0065\u0072\u005d \u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); -}();_ ,_facg :=_begf ._abegf .ReadBits (5);if _facg !=nil {return _facg ;};if _facg =_begf .readTemplate ();_facg !=nil {return _facg ;};if _facg =_begf .readIsMMREncoded ();_facg !=nil {return _facg ;};if _facg =_begf .readPatternWidthAndHeight ();_facg !=nil {return _facg ; -};if _facg =_begf .readGrayMax ();_facg !=nil {return _facg ;};if _facg =_begf .computeSegmentDataStructure ();_facg !=nil {return _facg ;};return _begf .checkInput ();};func (_bffa *Header )readHeaderLength (_cded *_d .Reader ,_bef int64 ){_bffa .HeaderLength =_cded .AbsolutePosition ()-_bef ; -};type SymbolDictionary struct{_cgad *_d .Reader ;SdrTemplate int8 ;SdTemplate int8 ;_acdbd bool ;_cdcb bool ;SdHuffAggInstanceSelection bool ;SdHuffBMSizeSelection int8 ;SdHuffDecodeWidthSelection int8 ;SdHuffDecodeHeightSelection int8 ;UseRefinementAggregation bool ; -IsHuffmanEncoded bool ;SdATX []int8 ;SdATY []int8 ;SdrATX []int8 ;SdrATY []int8 ;NumberOfExportedSymbols uint32 ;NumberOfNewSymbols uint32 ;Header *Header ;_bcgg uint32 ;_dcfaf []*_gc .Bitmap ;_bdbb uint32 ;_bae []*_gc .Bitmap ;_dbfe _fc .Tabler ;_cgee _fc .Tabler ; -_babb _fc .Tabler ;_agce _fc .Tabler ;_cgef []*_gc .Bitmap ;_ceea []*_gc .Bitmap ;_efcac *_ge .Decoder ;_ffag *TextRegion ;_ceec *GenericRegion ;_gaea *GenericRefinementRegion ;_dcbd *_ge .DecoderStats ;_acbe *_ge .DecoderStats ;_geffcb *_ge .DecoderStats ; -_agad *_ge .DecoderStats ;_fbgb *_ge .DecoderStats ;_gcgc *_ge .DecoderStats ;_fgbe *_ge .DecoderStats ;_fdcg *_ge .DecoderStats ;_ecfb *_ge .DecoderStats ;_dffe int8 ;_cdgf *_gc .Bitmaps ;_gecb []int ;_cgab map[int ]int ;_gfef bool ;};func (_gdaa *TableSegment )parseHeader ()error {var (_adae int ; -_cdaa uint64 ;_gadff error ;);_adae ,_gadff =_gdaa ._aagb .ReadBit ();if _gadff !=nil {return _gadff ;};if _adae ==1{return _gg .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0061\u0062\u006c\u0065 \u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0064e\u0066\u0069\u006e\u0069\u0074\u0069\u006f\u006e\u002e\u0020\u0042\u002e\u0032\u002e1\u0020\u0043\u006f\u0064\u0065\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u0066\u006c\u0061\u0067\u0073\u003a\u0020\u0042\u0069\u0074\u0020\u0037\u0020\u006d\u0075\u0073\u0074\u0020b\u0065\u0020\u007a\u0065\u0072\u006f\u002e\u0020\u0057a\u0073\u003a \u0025\u0064",_adae ); -};if _cdaa ,_gadff =_gdaa ._aagb .ReadBits (3);_gadff !=nil {return _gadff ;};_gdaa ._gfedg =(int32 (_cdaa )+1)&0xf;if _cdaa ,_gadff =_gdaa ._aagb .ReadBits (3);_gadff !=nil {return _gadff ;};_gdaa ._fcbd =(int32 (_cdaa )+1)&0xf;if _cdaa ,_gadff =_gdaa ._aagb .ReadBits (32); -_gadff !=nil {return _gadff ;};_gdaa ._accc =int32 (_cdaa &_b .MaxInt32 );if _cdaa ,_gadff =_gdaa ._aagb .ReadBits (32);_gadff !=nil {return _gadff ;};_gdaa ._dgef =int32 (_cdaa &_b .MaxInt32 );return nil ;};func (_edde *Header )readSegmentDataLength (_dbdf *_d .Reader )(_ddfa error ){_edde .SegmentDataLength ,_ddfa =_dbdf .ReadBits (32); -if _ddfa !=nil {return _ddfa ;};_edde .SegmentDataLength &=_b .MaxInt32 ;return nil ;};func (_babf *Header )writeSegmentPageAssociation (_ggabc _d .BinaryWriter )(_ddada int ,_egfe error ){const _aade ="w\u0072\u0069\u0074\u0065\u0053\u0065g\u006d\u0065\u006e\u0074\u0050\u0061\u0067\u0065\u0041s\u0073\u006f\u0063i\u0061t\u0069\u006f\u006e"; -if _babf .pageSize ()!=4{if _egfe =_ggabc .WriteByte (byte (_babf .PageAssociation ));_egfe !=nil {return 0,_bde .Wrap (_egfe ,_aade ,"\u0070\u0061\u0067\u0065\u0053\u0069\u007a\u0065\u0020\u0021\u003d\u0020\u0034");};return 1,nil ;};_cdbb :=make ([]byte ,4); -_f .BigEndian .PutUint32 (_cdbb ,uint32 (_babf .PageAssociation ));if _ddada ,_egfe =_ggabc .Write (_cdbb );_egfe !=nil {return 0,_bde .Wrap (_egfe ,_aade ,"\u0034 \u0062y\u0074\u0065\u0020\u0070\u0061g\u0065\u0020n\u0075\u006d\u0062\u0065\u0072");};return _ddada ,nil ; -};func (_faeed *SymbolDictionary )Init (h *Header ,r *_d .Reader )error {_faeed .Header =h ;_faeed ._cgad =r ;return _faeed .parseHeader ();};func (_dffa *Header )readSegmentPageAssociation (_beab Documenter ,_dbca *_d .Reader ,_agc uint64 ,_acdf ...int )(_ggc error ){const _cbcfb ="\u0072\u0065\u0061\u0064\u0053\u0065\u0067\u006d\u0065\u006e\u0074P\u0061\u0067\u0065\u0041\u0073\u0073\u006f\u0063\u0069\u0061t\u0069\u006f\u006e"; -if !_dffa .PageAssociationFieldSize {_bbcg ,_bffb :=_dbca .ReadBits (8);if _bffb !=nil {return _bde .Wrap (_bffb ,_cbcfb ,"\u0073\u0068\u006fr\u0074\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_dffa .PageAssociation =int (_bbcg &0xFF);}else {_cbd ,_bafd :=_dbca .ReadBits (32); -if _bafd !=nil {return _bde .Wrap (_bafd ,_cbcfb ,"l\u006f\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_dffa .PageAssociation =int (_cbd &_b .MaxInt32 );};if _agc ==0{return nil ;};if _dffa .PageAssociation !=0{_cca ,_cfbf :=_beab .GetPage (_dffa .PageAssociation ); -if _cfbf !=nil {return _bde .Wrap (_cfbf ,_cbcfb ,"\u0061s\u0073\u006f\u0063\u0069a\u0074\u0065\u0064\u0020\u0070a\u0067e\u0020n\u006f\u0074\u0020\u0066\u006f\u0075\u006ed");};var _bffe int ;for _egbg :=uint64 (0);_egbg < _agc ;_egbg ++{_bffe =_acdf [_egbg ]; -_dffa .RTSegments [_egbg ],_cfbf =_cca .GetSegment (_bffe );if _cfbf !=nil {var _ebea error ;_dffa .RTSegments [_egbg ],_ebea =_beab .GetGlobalSegment (_bffe );if _ebea !=nil {return _bde .Wrapf (_cfbf ,_cbcfb ,"\u0072\u0065\u0066\u0065\u0072\u0065n\u0063\u0065\u0020s\u0065\u0067\u006de\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064\u0020\u0061\u0074\u0020pa\u0067\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0072\u0020\u0069\u006e\u0020\u0067\u006c\u006f\u0062\u0061\u006c\u0073",_dffa .PageAssociation ); -};};};return nil ;};for _cegf :=uint64 (0);_cegf < _agc ;_cegf ++{_dffa .RTSegments [_cegf ],_ggc =_beab .GetGlobalSegment (_acdf [_cegf ]);if _ggc !=nil {return _bde .Wrapf (_ggc ,_cbcfb ,"\u0067\u006c\u006f\u0062\u0061\u006c\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u003a\u0020\u0027\u0025d\u0027\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",_acdf [_cegf ]); -};};return nil ;};func (_cddc *GenericRegion )setParametersMMR (_fdf bool ,_fefb ,_cgbd int64 ,_gbee ,_fbge uint32 ,_efgg byte ,_cgbc ,_feacf bool ,_dff ,_effg []int8 ){_cddc .DataOffset =_fefb ;_cddc .DataLength =_cgbd ;_cddc .RegionSegment =&RegionSegment {}; -_cddc .RegionSegment .BitmapHeight =_gbee ;_cddc .RegionSegment .BitmapWidth =_fbge ;_cddc .GBTemplate =_efgg ;_cddc .IsMMREncoded =_fdf ;_cddc .IsTPGDon =_cgbc ;_cddc .GBAtX =_dff ;_cddc .GBAtY =_effg ;};func (_aac Type )String ()string {switch _aac {case TSymbolDictionary :return "\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0044\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"; +package segments ;import (_ag "encoding/binary";_b "errors";_af "fmt";_aae "github.com/unidoc/unipdf/v3/common";_g "github.com/unidoc/unipdf/v3/internal/bitwise";_bg "github.com/unidoc/unipdf/v3/internal/jbig2/basic";_gf "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap"; +_df "github.com/unidoc/unipdf/v3/internal/jbig2/decoder/arithmetic";_fa "github.com/unidoc/unipdf/v3/internal/jbig2/decoder/huffman";_eb "github.com/unidoc/unipdf/v3/internal/jbig2/decoder/mmr";_afe "github.com/unidoc/unipdf/v3/internal/jbig2/encoder/arithmetic"; +_edb "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_f "github.com/unidoc/unipdf/v3/internal/jbig2/internal";_aa "golang.org/x/xerrors";_a "image";_ed "io";_e "math";_d "strings";_cf "time";);func (_gdgc *TextRegion )decodeStripT ()(_gace int64 ,_cfdf error ){if _gdgc .IsHuffmanEncoded {if _gdgc .SbHuffDT ==3{if _gdgc ._bbfg ==nil {var _abgcc int ; +if _gdgc .SbHuffFS ==3{_abgcc ++;};if _gdgc .SbHuffDS ==3{_abgcc ++;};_gdgc ._bbfg ,_cfdf =_gdgc .getUserTable (_abgcc );if _cfdf !=nil {return 0,_cfdf ;};};_gace ,_cfdf =_gdgc ._bbfg .Decode (_gdgc ._ecc );if _cfdf !=nil {return 0,_cfdf ;};}else {var _eefe _fa .Tabler ; +_eefe ,_cfdf =_fa .GetStandardTable (11+int (_gdgc .SbHuffDT ));if _cfdf !=nil {return 0,_cfdf ;};_gace ,_cfdf =_eefe .Decode (_gdgc ._ecc );if _cfdf !=nil {return 0,_cfdf ;};};}else {var _cegf int32 ;_cegf ,_cfdf =_gdgc ._egdc .DecodeInt (_gdgc ._gede ); +if _cfdf !=nil {return 0,_cfdf ;};_gace =int64 (_cegf );};_gace *=int64 (-_gdgc .SbStrips );return _gace ,nil ;};func (_eeac *SymbolDictionary )setRefinementAtPixels ()error {if !_eeac .UseRefinementAggregation ||_eeac .SdrTemplate !=0{return nil ;};if _aeac :=_eeac .readRefinementAtPixels (2); +_aeac !=nil {return _aeac ;};return nil ;};func (_aede *SymbolDictionary )retrieveImportSymbols ()error {for _ ,_beacd :=range _aede .Header .RTSegments {if _beacd .Type ==0{_defbf ,_cbabg :=_beacd .GetSegmentData ();if _cbabg !=nil {return _cbabg ;};_gcg ,_cee :=_defbf .(*SymbolDictionary ); +if !_cee {return _af .Errorf ("\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0044\u0061\u0074a\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0053\u0079\u006d\u0062\u006f\u006c\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0053\u0065\u0067m\u0065\u006e\u0074\u003a\u0020%\u0054",_defbf ); +};_dafgc ,_cbabg :=_gcg .GetDictionary ();if _cbabg !=nil {return _af .Errorf ("\u0072\u0065\u006c\u0061\u0074\u0065\u0064 \u0073\u0065\u0067m\u0065\u006e\u0074 \u0077\u0069t\u0068\u0020\u0069\u006e\u0064\u0065x\u003a %\u0064\u0020\u0067\u0065\u0074\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0073",_beacd .SegmentNumber ,_cbabg .Error ()); +};_aede ._bgbd =append (_aede ._bgbd ,_dafgc ...);_aede ._gfg +=_gcg .NumberOfExportedSymbols ;};};return nil ;};func NewRegionSegment (r *_g .Reader )*RegionSegment {return &RegionSegment {_ebecg :r }};type template0 struct{};func (_aace *Header )writeReferredToCount (_fbab _g .BinaryWriter )(_aeae int ,_ggdd error ){const _dea ="w\u0072i\u0074\u0065\u0052\u0065\u0066\u0065\u0072\u0072e\u0064\u0054\u006f\u0043ou\u006e\u0074"; +_aace .RTSNumbers =make ([]int ,len (_aace .RTSegments ));for _dfca ,_bffc :=range _aace .RTSegments {_aace .RTSNumbers [_dfca ]=int (_bffc .SegmentNumber );};if len (_aace .RTSNumbers )<=4{var _abge byte ;if len (_aace .RetainBits )>=1{_abge =_aace .RetainBits [0]; +};_abge |=byte (len (_aace .RTSNumbers ))<<5;if _ggdd =_fbab .WriteByte (_abge );_ggdd !=nil {return 0,_edb .Wrap (_ggdd ,_dea ,"\u0073\u0068\u006fr\u0074\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};return 1,nil ;};_gfee :=uint32 (len (_aace .RTSNumbers )); +_cega :=make ([]byte ,4+_bg .Ceil (len (_aace .RTSNumbers )+1,8));_gfee |=0x7<<29;_ag .BigEndian .PutUint32 (_cega ,_gfee );copy (_cega [1:],_aace .RetainBits );_aeae ,_ggdd =_fbab .Write (_cega );if _ggdd !=nil {return 0,_edb .Wrap (_ggdd ,_dea ,"l\u006f\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0061\u0074"); +};return _aeae ,nil ;};func (_eedg *SymbolDictionary )huffDecodeRefAggNInst ()(int64 ,error ){if !_eedg .SdHuffAggInstanceSelection {_cbgb ,_efcg :=_fa .GetStandardTable (1);if _efcg !=nil {return 0,_efcg ;};return _cbgb .Decode (_eedg ._caba );};if _eedg ._ecef ==nil {var (_becdd int ; +_affe error ;);if _eedg .SdHuffDecodeHeightSelection ==3{_becdd ++;};if _eedg .SdHuffDecodeWidthSelection ==3{_becdd ++;};if _eedg .SdHuffBMSizeSelection ==3{_becdd ++;};_eedg ._ecef ,_affe =_eedg .getUserTable (_becdd );if _affe !=nil {return 0,_affe ; +};};return _eedg ._ecef .Decode (_eedg ._caba );};func (_age *GenericRegion )overrideAtTemplate0b (_aed ,_dedg ,_acf ,_egd ,_ebegb ,_aaed int )int {if _age .GBAtOverride [0]{_aed &=0xFFFD;if _age .GBAtY [0]==0&&_age .GBAtX [0]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [0]&0x1))<<1; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [0]),_acf +int (_age .GBAtY [0])))<<1;};};if _age .GBAtOverride [1]{_aed &=0xDFFF;if _age .GBAtY [1]==0&&_age .GBAtX [1]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [1]&0x1))<<13; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [1]),_acf +int (_age .GBAtY [1])))<<13;};};if _age .GBAtOverride [2]{_aed &=0xFDFF;if _age .GBAtY [2]==0&&_age .GBAtX [2]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [2]&0x1))<<9; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [2]),_acf +int (_age .GBAtY [2])))<<9;};};if _age .GBAtOverride [3]{_aed &=0xBFFF;if _age .GBAtY [3]==0&&_age .GBAtX [3]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [3]&0x1))<<14; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [3]),_acf +int (_age .GBAtY [3])))<<14;};};if _age .GBAtOverride [4]{_aed &=0xEFFF;if _age .GBAtY [4]==0&&_age .GBAtX [4]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [4]&0x1))<<12; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [4]),_acf +int (_age .GBAtY [4])))<<12;};};if _age .GBAtOverride [5]{_aed &=0xFFDF;if _age .GBAtY [5]==0&&_age .GBAtX [5]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [5]&0x1))<<5; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [5]),_acf +int (_age .GBAtY [5])))<<5;};};if _age .GBAtOverride [6]{_aed &=0xFFFB;if _age .GBAtY [6]==0&&_age .GBAtX [6]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [6]&0x1))<<2; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [6]),_acf +int (_age .GBAtY [6])))<<2;};};if _age .GBAtOverride [7]{_aed &=0xFFF7;if _age .GBAtY [7]==0&&_age .GBAtX [7]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [7]&0x1))<<3; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [7]),_acf +int (_age .GBAtY [7])))<<3;};};if _age .GBAtOverride [8]{_aed &=0xF7FF;if _age .GBAtY [8]==0&&_age .GBAtX [8]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [8]&0x1))<<11; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [8]),_acf +int (_age .GBAtY [8])))<<11;};};if _age .GBAtOverride [9]{_aed &=0xFFEF;if _age .GBAtY [9]==0&&_age .GBAtX [9]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [9]&0x1))<<4; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [9]),_acf +int (_age .GBAtY [9])))<<4;};};if _age .GBAtOverride [10]{_aed &=0x7FFF;if _age .GBAtY [10]==0&&_age .GBAtX [10]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [10]&0x1))<<15; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [10]),_acf +int (_age .GBAtY [10])))<<15;};};if _age .GBAtOverride [11]{_aed &=0xFDFF;if _age .GBAtY [11]==0&&_age .GBAtX [11]>=-int8 (_ebegb ){_aed |=(_egd >>uint (int8 (_aaed )-_age .GBAtX [11]&0x1))<<10; +}else {_aed |=int (_age .getPixel (_dedg +int (_age .GBAtX [11]),_acf +int (_age .GBAtY [11])))<<10;};};return _aed ;};func (_fgbf *HalftoneRegion )combineGrayscalePlanes (_aec []*_gf .Bitmap ,_ebdd int )error {_dbe :=0;for _bacd :=0;_bacd < _aec [_ebdd ].Height ; +_bacd ++{for _faece :=0;_faece < _aec [_ebdd ].Width ;_faece +=8{_bbab ,_aeeg :=_aec [_ebdd +1].GetByte (_dbe );if _aeeg !=nil {return _aeeg ;};_dcf ,_aeeg :=_aec [_ebdd ].GetByte (_dbe );if _aeeg !=nil {return _aeeg ;};_aeeg =_aec [_ebdd ].SetByte (_dbe ,_gf .CombineBytes (_dcf ,_bbab ,_gf .CmbOpXor )); +if _aeeg !=nil {return _aeeg ;};_dbe ++;};};return nil ;};func (_dfdae *PatternDictionary )extractPatterns (_defa *_gf .Bitmap )error {var _eefg int ;_effd :=make ([]*_gf .Bitmap ,_dfdae .GrayMax +1);for _eefg <=int (_dfdae .GrayMax ){_ggff :=int (_dfdae .HdpWidth )*_eefg ; +_dfdag :=_a .Rect (_ggff ,0,_ggff +int (_dfdae .HdpWidth ),int (_dfdae .HdpHeight ));_aaae ,_gfda :=_gf .Extract (_dfdag ,_defa );if _gfda !=nil {return _gfda ;};_effd [_eefg ]=_aaae ;_eefg ++;};_dfdae .Patterns =_effd ;return nil ;};func (_ebae *HalftoneRegion )Init (hd *Header ,r *_g .Reader )error {_ebae ._fagd =r ; +_ebae ._ceag =hd ;_ebae .RegionSegment =NewRegionSegment (r );return _ebae .parseHeader ();};type GenericRefinementRegion struct{_fea templater ;_ad templater ;_dd *_g .Reader ;_cb *Header ;RegionInfo *RegionSegment ;IsTPGROn bool ;TemplateID int8 ;Template templater ; +GrAtX []int8 ;GrAtY []int8 ;RegionBitmap *_gf .Bitmap ;ReferenceBitmap *_gf .Bitmap ;ReferenceDX int32 ;ReferenceDY int32 ;_dc *_df .Decoder ;_cd *_df .DecoderStats ;_fb bool ;_ce []bool ;};func (_gffg *TextRegion )encodeFlags (_cbdg _g .BinaryWriter )(_cbed int ,_bbbg error ){const _gbccg ="e\u006e\u0063\u006f\u0064\u0065\u0046\u006c\u0061\u0067\u0073"; +if _bbbg =_cbdg .WriteBit (int (_gffg .SbrTemplate ));_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"s\u0062\u0072\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};if _ ,_bbbg =_cbdg .WriteBits (uint64 (_gffg .SbDsOffset ),5);_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"\u0073\u0062\u0044\u0073\u004f\u0066\u0066\u0073\u0065\u0074"); +};if _bbbg =_cbdg .WriteBit (int (_gffg .DefaultPixel ));_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"\u0044\u0065\u0066a\u0075\u006c\u0074\u0050\u0069\u0078\u0065\u006c");};if _ ,_bbbg =_cbdg .WriteBits (uint64 (_gffg .CombinationOperator ),2); +_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"\u0043\u006f\u006d\u0062in\u0061\u0074\u0069\u006f\u006e\u004f\u0070\u0065\u0072\u0061\u0074\u006f\u0072");};if _bbbg =_cbdg .WriteBit (int (_gffg .IsTransposed ));_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"\u0069\u0073\u0020\u0074\u0072\u0061\u006e\u0073\u0070\u006f\u0073\u0065\u0064"); +};if _ ,_bbbg =_cbdg .WriteBits (uint64 (_gffg .ReferenceCorner ),2);_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"\u0072\u0065f\u0065\u0072\u0065n\u0063\u0065\u0020\u0063\u006f\u0072\u006e\u0065\u0072");};if _ ,_bbbg =_cbdg .WriteBits (uint64 (_gffg .LogSBStrips ),2); +_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"L\u006f\u0067\u0053\u0042\u0053\u0074\u0072\u0069\u0070\u0073");};var _bddbe int ;if _gffg .UseRefinement {_bddbe =1;};if _bbbg =_cbdg .WriteBit (_bddbe );_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"\u0075\u0073\u0065\u0020\u0072\u0065\u0066\u0069\u006ee\u006d\u0065\u006e\u0074"); +};_bddbe =0;if _gffg .IsHuffmanEncoded {_bddbe =1;};if _bbbg =_cbdg .WriteBit (_bddbe );_bbbg !=nil {return _cbed ,_edb .Wrap (_bbbg ,_gbccg ,"u\u0073\u0065\u0020\u0068\u0075\u0066\u0066\u006d\u0061\u006e");};_cbed =2;return _cbed ,nil ;};func (_bee *PageInformationSegment )readMaxStripeSize ()error {_becd ,_egfe :=_bee ._faef .ReadBits (15); +if _egfe !=nil {return _egfe ;};_bee .MaxStripeSize =uint16 (_becd &_e .MaxUint16 );return nil ;};func (_bfbg *RegionSegment )Encode (w _g .BinaryWriter )(_dbfb int ,_ebg error ){const _aedc ="R\u0065g\u0069\u006f\u006e\u0053\u0065\u0067\u006d\u0065n\u0074\u002e\u0045\u006eco\u0064\u0065"; +_abbg :=make ([]byte ,4);_ag .BigEndian .PutUint32 (_abbg ,_bfbg .BitmapWidth );_dbfb ,_ebg =w .Write (_abbg );if _ebg !=nil {return 0,_edb .Wrap (_ebg ,_aedc ,"\u0057\u0069\u0064t\u0068");};_ag .BigEndian .PutUint32 (_abbg ,_bfbg .BitmapHeight );var _ffbd int ; +_ffbd ,_ebg =w .Write (_abbg );if _ebg !=nil {return 0,_edb .Wrap (_ebg ,_aedc ,"\u0048\u0065\u0069\u0067\u0068\u0074");};_dbfb +=_ffbd ;_ag .BigEndian .PutUint32 (_abbg ,_bfbg .XLocation );_ffbd ,_ebg =w .Write (_abbg );if _ebg !=nil {return 0,_edb .Wrap (_ebg ,_aedc ,"\u0058L\u006f\u0063\u0061\u0074\u0069\u006fn"); +};_dbfb +=_ffbd ;_ag .BigEndian .PutUint32 (_abbg ,_bfbg .YLocation );_ffbd ,_ebg =w .Write (_abbg );if _ebg !=nil {return 0,_edb .Wrap (_ebg ,_aedc ,"\u0059L\u006f\u0063\u0061\u0074\u0069\u006fn");};_dbfb +=_ffbd ;if _ebg =w .WriteByte (byte (_bfbg .CombinaionOperator )&0x07); +_ebg !=nil {return 0,_edb .Wrap (_ebg ,_aedc ,"c\u006fm\u0062\u0069\u006e\u0061\u0074\u0069\u006f\u006e \u006f\u0070\u0065\u0072at\u006f\u0072");};_dbfb ++;return _dbfb ,nil ;};var (_ebba Segmenter ;_ggdf =map[Type ]func ()Segmenter {TSymbolDictionary :func ()Segmenter {return &SymbolDictionary {}},TIntermediateTextRegion :func ()Segmenter {return &TextRegion {}},TImmediateTextRegion :func ()Segmenter {return &TextRegion {}},TImmediateLosslessTextRegion :func ()Segmenter {return &TextRegion {}},TPatternDictionary :func ()Segmenter {return &PatternDictionary {}},TIntermediateHalftoneRegion :func ()Segmenter {return &HalftoneRegion {}},TImmediateHalftoneRegion :func ()Segmenter {return &HalftoneRegion {}},TImmediateLosslessHalftoneRegion :func ()Segmenter {return &HalftoneRegion {}},TIntermediateGenericRegion :func ()Segmenter {return &GenericRegion {}},TImmediateGenericRegion :func ()Segmenter {return &GenericRegion {}},TImmediateLosslessGenericRegion :func ()Segmenter {return &GenericRegion {}},TIntermediateGenericRefinementRegion :func ()Segmenter {return &GenericRefinementRegion {}},TImmediateGenericRefinementRegion :func ()Segmenter {return &GenericRefinementRegion {}},TImmediateLosslessGenericRefinementRegion :func ()Segmenter {return &GenericRefinementRegion {}},TPageInformation :func ()Segmenter {return &PageInformationSegment {}},TEndOfPage :func ()Segmenter {return _ebba },TEndOfStrip :func ()Segmenter {return &EndOfStripe {}},TEndOfFile :func ()Segmenter {return _ebba },TProfiles :func ()Segmenter {return _ebba },TTables :func ()Segmenter {return &TableSegment {}},TExtension :func ()Segmenter {return _ebba },TBitmap :func ()Segmenter {return _ebba }}; +);type PageInformationSegment struct{_faef *_g .Reader ;PageBMHeight int ;PageBMWidth int ;ResolutionX int ;ResolutionY int ;_fbbge bool ;_dbcd _gf .CombinationOperator ;_cbdc bool ;DefaultPixelValue uint8 ;_ccdd bool ;IsLossless bool ;IsStripe bool ;MaxStripeSize uint16 ; +};func (_fbaf *PageInformationSegment )readResolution ()error {_aaff ,_cdge :=_fbaf ._faef .ReadBits (32);if _cdge !=nil {return _cdge ;};_fbaf .ResolutionX =int (_aaff &_e .MaxInt32 );_aaff ,_cdge =_fbaf ._faef .ReadBits (32);if _cdge !=nil {return _cdge ; +};_fbaf .ResolutionY =int (_aaff &_e .MaxInt32 );return nil ;};func (_egb *SymbolDictionary )Encode (w _g .BinaryWriter )(_edda int ,_cgda error ){const _aeca ="\u0053\u0079\u006dbo\u006c\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0045\u006e\u0063\u006f\u0064\u0065"; +if _egb ==nil {return 0,_edb .Error (_aeca ,"\u0073\u0079m\u0062\u006f\u006c\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066in\u0065\u0064");};if _edda ,_cgda =_egb .encodeFlags (w );_cgda !=nil {return _edda ,_edb .Wrap (_cgda ,_aeca ,""); +};_fega ,_cgda :=_egb .encodeATFlags (w );if _cgda !=nil {return _edda ,_edb .Wrap (_cgda ,_aeca ,"");};_edda +=_fega ;if _fega ,_cgda =_egb .encodeRefinementATFlags (w );_cgda !=nil {return _edda ,_edb .Wrap (_cgda ,_aeca ,"");};_edda +=_fega ;if _fega ,_cgda =_egb .encodeNumSyms (w ); +_cgda !=nil {return _edda ,_edb .Wrap (_cgda ,_aeca ,"");};_edda +=_fega ;if _fega ,_cgda =_egb .encodeSymbols (w );_cgda !=nil {return _edda ,_edb .Wrap (_cgda ,_aeca ,"");};_edda +=_fega ;return _edda ,nil ;};func (_cfc *GenericRegion )computeSegmentDataStructure ()error {_cfc .DataOffset =_cfc ._efeg .AbsolutePosition (); +_cfc .DataHeaderLength =_cfc .DataOffset -_cfc .DataHeaderOffset ;_cfc .DataLength =int64 (_cfc ._efeg .AbsoluteLength ())-_cfc .DataHeaderLength ;return nil ;};func (_fbbg *Header )readDataStartOffset (_acdb *_g .Reader ,_fbfb OrganizationType ){if _fbfb ==OSequential {_fbbg .SegmentDataStartOffset =uint64 (_acdb .AbsolutePosition ()); +};};func (_gec *HalftoneRegion )grayScaleDecoding (_baff int )([][]int ,error ){var (_dfbd []int8 ;_ged []int8 ;);if !_gec .IsMMREncoded {_dfbd =make ([]int8 ,4);_ged =make ([]int8 ,4);if _gec .HTemplate <=1{_dfbd [0]=3;}else if _gec .HTemplate >=2{_dfbd [0]=2; +};_ged [0]=-1;_dfbd [1]=-3;_ged [1]=-1;_dfbd [2]=2;_ged [2]=-2;_dfbd [3]=-2;_ged [3]=-2;};_ceca :=make ([]*_gf .Bitmap ,_baff );_dggc :=NewGenericRegion (_gec ._fagd );_dggc .setParametersMMR (_gec .IsMMREncoded ,_gec .DataOffset ,_gec .DataLength ,_gec .HGridHeight ,_gec .HGridWidth ,_gec .HTemplate ,false ,_gec .HSkipEnabled ,_dfbd ,_ged ); +_adca :=_baff -1;var _ddb error ;_ceca [_adca ],_ddb =_dggc .GetRegionBitmap ();if _ddb !=nil {return nil ,_ddb ;};for _adca > 0{_adca --;_dggc .Bitmap =nil ;_ceca [_adca ],_ddb =_dggc .GetRegionBitmap ();if _ddb !=nil {return nil ,_ddb ;};if _ddb =_gec .combineGrayscalePlanes (_ceca ,_adca ); +_ddb !=nil {return nil ,_ddb ;};};return _gec .computeGrayScalePlanes (_ceca ,_baff );};func (_cba *GenericRegion )setParameters (_cffg bool ,_ebb ,_agd int64 ,_debf ,_aacf uint32 ){_cba .IsMMREncoded =_cffg ;_cba .DataOffset =_ebb ;_cba .DataLength =_agd ; +_cba .RegionSegment .BitmapHeight =_debf ;_cba .RegionSegment .BitmapWidth =_aacf ;_cba ._gdf =nil ;_cba .Bitmap =nil ;};func (_fgd *GenericRefinementRegion )getPixel (_fcd *_gf .Bitmap ,_bfaa ,_ded int )int {if _bfaa < 0||_bfaa >=_fcd .Width {return 0; +};if _ded < 0||_ded >=_fcd .Height {return 0;};if _fcd .GetPixel (_bfaa ,_ded ){return 1;};return 0;};func (_ggfg *Header )writeSegmentPageAssociation (_adaa _g .BinaryWriter )(_ddea int ,_gad error ){const _dbaa ="w\u0072\u0069\u0074\u0065\u0053\u0065g\u006d\u0065\u006e\u0074\u0050\u0061\u0067\u0065\u0041s\u0073\u006f\u0063i\u0061t\u0069\u006f\u006e"; +if _ggfg .pageSize ()!=4{if _gad =_adaa .WriteByte (byte (_ggfg .PageAssociation ));_gad !=nil {return 0,_edb .Wrap (_gad ,_dbaa ,"\u0070\u0061\u0067\u0065\u0053\u0069\u007a\u0065\u0020\u0021\u003d\u0020\u0034");};return 1,nil ;};_ebbe :=make ([]byte ,4); +_ag .BigEndian .PutUint32 (_ebbe ,uint32 (_ggfg .PageAssociation ));if _ddea ,_gad =_adaa .Write (_ebbe );_gad !=nil {return 0,_edb .Wrap (_gad ,_dbaa ,"\u0034 \u0062y\u0074\u0065\u0020\u0070\u0061g\u0065\u0020n\u0075\u006d\u0062\u0065\u0072");};return _ddea ,nil ; +};func (_edgb *PatternDictionary )readPatternWidthAndHeight ()error {_fgcb ,_cgeg :=_edgb ._dbec .ReadByte ();if _cgeg !=nil {return _cgeg ;};_edgb .HdpWidth =_fgcb ;_fgcb ,_cgeg =_edgb ._dbec .ReadByte ();if _cgeg !=nil {return _cgeg ;};_edgb .HdpHeight =_fgcb ; +return nil ;};func (_acde *PageInformationSegment )CombinationOperator ()_gf .CombinationOperator {return _acde ._dbcd ;};func (_ccd *HalftoneRegion )GetRegionBitmap ()(*_gf .Bitmap ,error ){if _ccd .HalftoneRegionBitmap !=nil {return _ccd .HalftoneRegionBitmap ,nil ; +};var _agec error ;_ccd .HalftoneRegionBitmap =_gf .New (int (_ccd .RegionSegment .BitmapWidth ),int (_ccd .RegionSegment .BitmapHeight ));if _ccd .Patterns ==nil ||len (_ccd .Patterns )==0{_ccd .Patterns ,_agec =_ccd .GetPatterns ();if _agec !=nil {return nil ,_agec ; +};};if _ccd .HDefaultPixel ==1{_ccd .HalftoneRegionBitmap .SetDefaultPixel ();};_bdf :=_e .Ceil (_e .Log (float64 (len (_ccd .Patterns )))/_e .Log (2));_aade :=int (_bdf );var _edcb [][]int ;_edcb ,_agec =_ccd .grayScaleDecoding (_aade );if _agec !=nil {return nil ,_agec ; +};if _agec =_ccd .renderPattern (_edcb );_agec !=nil {return nil ,_agec ;};return _ccd .HalftoneRegionBitmap ,nil ;};func (_dagf *PatternDictionary )readTemplate ()error {_gcda ,_aaac :=_dagf ._dbec .ReadBits (2);if _aaac !=nil {return _aaac ;};_dagf .HDTemplate =byte (_gcda ); +return nil ;};func (_cdeg *TextRegion )readUseRefinement ()error {if !_cdeg .UseRefinement ||_cdeg .SbrTemplate !=0{return nil ;};var (_aeag byte ;_bcfb error ;);_cdeg .SbrATX =make ([]int8 ,2);_cdeg .SbrATY =make ([]int8 ,2);_aeag ,_bcfb =_cdeg ._ecc .ReadByte (); +if _bcfb !=nil {return _bcfb ;};_cdeg .SbrATX [0]=int8 (_aeag );_aeag ,_bcfb =_cdeg ._ecc .ReadByte ();if _bcfb !=nil {return _bcfb ;};_cdeg .SbrATY [0]=int8 (_aeag );_aeag ,_bcfb =_cdeg ._ecc .ReadByte ();if _bcfb !=nil {return _bcfb ;};_cdeg .SbrATX [1]=int8 (_aeag ); +_aeag ,_bcfb =_cdeg ._ecc .ReadByte ();if _bcfb !=nil {return _bcfb ;};_cdeg .SbrATY [1]=int8 (_aeag );return nil ;};func (_aea *HalftoneRegion )shiftAndFill (_bffg int )int {_bffg >>=8;if _bffg < 0{_abbc :=int (_e .Log (float64 (_ffbc (_bffg )))/_e .Log (2)); +_agff :=31-_abbc ;for _dfgaf :=1;_dfgaf < _agff ;_dfgaf ++{_bffg |=1<>1;_ece |=_ece >>2;_ece |=_ece >>4;_ece |=_ece >>8;_ece |=_ece >>16;return (_ece +1)>>1;};func (_bcge *GenericRegion )setParametersWithAt (_aae bool ,_egdg byte ,_ccba ,_dcfe bool ,_ecda ,_dcfa []int8 ,_efdea ,_deba uint32 ,_cbbe *_ge .DecoderStats ,_gege *_ge .Decoder ){_bcge .IsMMREncoded =_aae ; -_bcge .GBTemplate =_egdg ;_bcge .IsTPGDon =_ccba ;_bcge .GBAtX =_ecda ;_bcge .GBAtY =_dcfa ;_bcge .RegionSegment .BitmapHeight =_deba ;_bcge .RegionSegment .BitmapWidth =_efdea ;_bcge ._gfed =nil ;_bcge .Bitmap =nil ;if _cbbe !=nil {_bcge ._ead =_cbbe ; -};if _gege !=nil {_bcge ._ace =_gege ;};_gd .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0047\u0049O\u004e\u005d\u0020\u0073\u0065\u0074P\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0053\u0044\u0041t\u003a\u0020\u0025\u0073",_bcge ); -};func (_dba *GenericRegion )readGBAtPixels (_bcdd int )error {const _abgg ="\u0072\u0065\u0061\u0064\u0047\u0042\u0041\u0074\u0050i\u0078\u0065\u006c\u0073";_dba .GBAtX =make ([]int8 ,_bcdd );_dba .GBAtY =make ([]int8 ,_bcdd );for _ffb :=0;_ffb < _bcdd ; -_ffb ++{_aef ,_dcfg :=_dba ._cbce .ReadByte ();if _dcfg !=nil {return _bde .Wrapf (_dcfg ,_abgg ,"\u0058\u0020\u0061t\u0020\u0069\u003a\u0020\u0027\u0025\u0064\u0027",_ffb );};_dba .GBAtX [_ffb ]=int8 (_aef );_aef ,_dcfg =_dba ._cbce .ReadByte ();if _dcfg !=nil {return _bde .Wrapf (_dcfg ,_abgg ,"\u0059\u0020\u0061t\u0020\u0069\u003a\u0020\u0027\u0025\u0064\u0027",_ffb ); -};_dba .GBAtY [_ffb ]=int8 (_aef );};return nil ;};func (_fcbc *Header )readHeaderFlags ()error {const _faaa ="\u0072e\u0061d\u0048\u0065\u0061\u0064\u0065\u0072\u0046\u006c\u0061\u0067\u0073";_aecf ,_cbcfc :=_fcbc .Reader .ReadBit ();if _cbcfc !=nil {return _bde .Wrap (_cbcfc ,_faaa ,"r\u0065\u0074\u0061\u0069\u006e\u0020\u0066\u006c\u0061\u0067"); -};if _aecf !=0{_fcbc .RetainFlag =true ;};_aecf ,_cbcfc =_fcbc .Reader .ReadBit ();if _cbcfc !=nil {return _bde .Wrap (_cbcfc ,_faaa ,"\u0070\u0061g\u0065\u0020\u0061s\u0073\u006f\u0063\u0069\u0061\u0074\u0069\u006f\u006e");};if _aecf !=0{_fcbc .PageAssociationFieldSize =true ; -};_gffb ,_cbcfc :=_fcbc .Reader .ReadBits (6);if _cbcfc !=nil {return _bde .Wrap (_cbcfc ,_faaa ,"\u0073\u0065\u0067m\u0065\u006e\u0074\u0020\u0074\u0079\u0070\u0065");};_fcbc .Type =Type (int (_gffb ));return nil ;};func (_dfba *HalftoneRegion )grayScaleDecoding (_dbac int )([][]int ,error ){var (_ggge []int8 ; -_bdf []int8 ;);if !_dfba .IsMMREncoded {_ggge =make ([]int8 ,4);_bdf =make ([]int8 ,4);if _dfba .HTemplate <=1{_ggge [0]=3;}else if _dfba .HTemplate >=2{_ggge [0]=2;};_bdf [0]=-1;_ggge [1]=-3;_bdf [1]=-1;_ggge [2]=2;_bdf [2]=-2;_ggge [3]=-2;_bdf [3]=-2; -};_ega :=make ([]*_gc .Bitmap ,_dbac );_fbb :=NewGenericRegion (_dfba ._faa );_fbb .setParametersMMR (_dfba .IsMMREncoded ,_dfba .DataOffset ,_dfba .DataLength ,_dfba .HGridHeight ,_dfba .HGridWidth ,_dfba .HTemplate ,false ,_dfba .HSkipEnabled ,_ggge ,_bdf ); -_cffb :=_dbac -1;var _efa error ;_ega [_cffb ],_efa =_fbb .GetRegionBitmap ();if _efa !=nil {return nil ,_efa ;};for _cffb > 0{_cffb --;_fbb .Bitmap =nil ;_ega [_cffb ],_efa =_fbb .GetRegionBitmap ();if _efa !=nil {return nil ,_efa ;};if _efa =_dfba .combineGrayscalePlanes (_ega ,_cffb ); -_efa !=nil {return nil ,_efa ;};};return _dfba .computeGrayScalePlanes (_ega ,_dbac );};func (_aegb *SymbolDictionary )GetDictionary ()([]*_gc .Bitmap ,error ){_gd .Log .Trace ("\u005b\u0053\u0059\u004d\u0042\u004f\u004c-\u0044\u0049\u0043T\u0049\u004f\u004e\u0041R\u0059\u005d\u0020\u0047\u0065\u0074\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e"); -defer func (){_gd .Log .Trace ("\u005b\u0053\u0059M\u0042\u004f\u004c\u002d\u0044\u0049\u0043\u0054\u0049\u004f\u004e\u0041\u0052\u0059\u005d\u0020\u0047\u0065\u0074\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); -_gd .Log .Trace ("\u005b\u0053Y\u004d\u0042\u004f\u004c\u002dD\u0049\u0043\u0054\u0049\u004fN\u0041\u0052\u0059\u005d\u0020\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0020\u000a\u0045\u0078\u003a\u0020\u0027\u0025\u0073\u0027\u002c\u0020\u000a\u006e\u0065\u0077\u003a\u0027\u0025\u0073\u0027",_aegb ._cgef ,_aegb ._bae ); -}();if _aegb ._cgef ==nil {var _cfbff error ;if _aegb .UseRefinementAggregation {_aegb ._dffe =_aegb .getSbSymCodeLen ();};if !_aegb .IsHuffmanEncoded {if _cfbff =_aegb .setCodingStatistics ();_cfbff !=nil {return nil ,_cfbff ;};};_aegb ._bae =make ([]*_gc .Bitmap ,_aegb .NumberOfNewSymbols ); -var _caaa []int ;if _aegb .IsHuffmanEncoded &&!_aegb .UseRefinementAggregation {_caaa =make ([]int ,_aegb .NumberOfNewSymbols );};if _cfbff =_aegb .setSymbolsArray ();_cfbff !=nil {return nil ,_cfbff ;};var _bgbe ,_fbeg int64 ;_aegb ._bdbb =0;for _aegb ._bdbb < _aegb .NumberOfNewSymbols {_fbeg ,_cfbff =_aegb .decodeHeightClassDeltaHeight (); -if _cfbff !=nil {return nil ,_cfbff ;};_bgbe +=_fbeg ;var _ccgb ,_ggcf uint32 ;_edfbe :=int64 (_aegb ._bdbb );for {var _bdbg int64 ;_bdbg ,_cfbff =_aegb .decodeDifferenceWidth ();if _e .Is (_cfbff ,_bb .ErrOOB ){break ;};if _cfbff !=nil {return nil ,_cfbff ; -};if _aegb ._bdbb >=_aegb .NumberOfNewSymbols {break ;};_ccgb +=uint32 (_bdbg );_ggcf +=_ccgb ;if !_aegb .IsHuffmanEncoded ||_aegb .UseRefinementAggregation {if !_aegb .UseRefinementAggregation {_cfbff =_aegb .decodeDirectlyThroughGenericRegion (_ccgb ,uint32 (_bgbe )); -if _cfbff !=nil {return nil ,_cfbff ;};}else {_cfbff =_aegb .decodeAggregate (_ccgb ,uint32 (_bgbe ));if _cfbff !=nil {return nil ,_cfbff ;};};}else if _aegb .IsHuffmanEncoded &&!_aegb .UseRefinementAggregation {_caaa [_aegb ._bdbb ]=int (_ccgb );};_aegb ._bdbb ++; -};if _aegb .IsHuffmanEncoded &&!_aegb .UseRefinementAggregation {var _fede int64 ;if _aegb .SdHuffBMSizeSelection ==0{var _adag _fc .Tabler ;_adag ,_cfbff =_fc .GetStandardTable (1);if _cfbff !=nil {return nil ,_cfbff ;};_fede ,_cfbff =_adag .Decode (_aegb ._cgad ); -if _cfbff !=nil {return nil ,_cfbff ;};}else {_fede ,_cfbff =_aegb .huffDecodeBmSize ();if _cfbff !=nil {return nil ,_cfbff ;};};_aegb ._cgad .Align ();var _eeae *_gc .Bitmap ;_eeae ,_cfbff =_aegb .decodeHeightClassCollectiveBitmap (_fede ,uint32 (_bgbe ),_ggcf ); -if _cfbff !=nil {return nil ,_cfbff ;};_cfbff =_aegb .decodeHeightClassBitmap (_eeae ,_edfbe ,int (_bgbe ),_caaa );if _cfbff !=nil {return nil ,_cfbff ;};};};_fdcac ,_cfbff :=_aegb .getToExportFlags ();if _cfbff !=nil {return nil ,_cfbff ;};_aegb .setExportedSymbols (_fdcac ); -};return _aegb ._cgef ,nil ;};type Segmenter interface{Init (_dbbd *Header ,_edbf *_d .Reader )error ;};func (_edbgd *TextRegion )decodeRdw ()(int64 ,error ){const _agaf ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064w";if _edbgd .IsHuffmanEncoded {if _edbgd .SbHuffRDWidth ==3{if _edbgd ._fadd ==nil {var (_aacf int ; -_eecfb error ;);if _edbgd .SbHuffFS ==3{_aacf ++;};if _edbgd .SbHuffDS ==3{_aacf ++;};if _edbgd .SbHuffDT ==3{_aacf ++;};_edbgd ._fadd ,_eecfb =_edbgd .getUserTable (_aacf );if _eecfb !=nil {return 0,_bde .Wrap (_eecfb ,_agaf ,"");};};return _edbgd ._fadd .Decode (_edbgd ._dcbba ); -};_debfe ,_afff :=_fc .GetStandardTable (14+int (_edbgd .SbHuffRDWidth ));if _afff !=nil {return 0,_bde .Wrap (_afff ,_agaf ,"");};return _debfe .Decode (_edbgd ._dcbba );};_bcfd ,_eebca :=_edbgd ._daa .DecodeInt (_edbgd ._ceba );if _eebca !=nil {return 0,_bde .Wrap (_eebca ,_agaf ,""); -};return int64 (_bcfd ),nil ;};func (_bfbfa *RegionSegment )readCombinationOperator ()error {_fdce ,_aebc :=_bfbfa ._fggf .ReadBits (3);if _aebc !=nil {return _aebc ;};_bfbfa .CombinaionOperator =_gc .CombinationOperator (_fdce &0xF);return nil ;};type Pager interface{GetSegment (int )(*Header ,error ); -GetBitmap ()(*_gc .Bitmap ,error );};func (_bbde *HalftoneRegion )computeSegmentDataStructure ()error {_bbde .DataOffset =_bbde ._faa .AbsolutePosition ();_bbde .DataHeaderLength =_bbde .DataOffset -_bbde .DataHeaderOffset ;_bbde .DataLength =int64 (_bbde ._faa .AbsoluteLength ())-_bbde .DataHeaderLength ; -return nil ;};func (_cdgb *PatternDictionary )readIsMMREncoded ()error {_gbacb ,_cggf :=_cdgb ._abegf .ReadBit ();if _cggf !=nil {return _cggf ;};if _gbacb !=0{_cdgb .IsMMREncoded =true ;};return nil ;};func (_fbea *Header )String ()string {_gfc :=&_bd .Builder {}; -_gfc .WriteString ("\u000a[\u0053E\u0047\u004d\u0045\u004e\u0054-\u0048\u0045A\u0044\u0045\u0052\u005d\u000a");_gfc .WriteString (_gg .Sprintf ("\t\u002d\u0020\u0053\u0065gm\u0065n\u0074\u004e\u0075\u006d\u0062e\u0072\u003a\u0020\u0025\u0076\u000a",_fbea .SegmentNumber )); -_gfc .WriteString (_gg .Sprintf ("\u0009\u002d\u0020T\u0079\u0070\u0065\u003a\u0020\u0025\u0076\u000a",_fbea .Type ));_gfc .WriteString (_gg .Sprintf ("\u0009-\u0020R\u0065\u0074\u0061\u0069\u006eF\u006c\u0061g\u003a\u0020\u0025\u0076\u000a",_fbea .RetainFlag )); -_gfc .WriteString (_gg .Sprintf ("\u0009\u002d\u0020Pa\u0067\u0065\u0041\u0073\u0073\u006f\u0063\u0069\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076\u000a",_fbea .PageAssociation ));_gfc .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0050\u0061\u0067\u0065\u0041\u0073\u0073\u006f\u0063\u0069\u0061\u0074i\u006fn\u0046\u0069\u0065\u006c\u0064\u0053\u0069\u007a\u0065\u003a\u0020\u0025\u0076\u000a",_fbea .PageAssociationFieldSize )); -_gfc .WriteString ("\u0009-\u0020R\u0054\u0053\u0045\u0047\u004d\u0045\u004e\u0054\u0053\u003a\u000a");for _ ,_dcd :=range _fbea .RTSNumbers {_gfc .WriteString (_gg .Sprintf ("\u0009\t\u002d\u0020\u0025\u0064\u000a",_dcd ));};_gfc .WriteString (_gg .Sprintf ("\t\u002d \u0048\u0065\u0061\u0064\u0065\u0072\u004c\u0065n\u0067\u0074\u0068\u003a %\u0076\u000a",_fbea .HeaderLength )); -_gfc .WriteString (_gg .Sprintf ("\u0009-\u0020\u0053\u0065\u0067m\u0065\u006e\u0074\u0044\u0061t\u0061L\u0065n\u0067\u0074\u0068\u003a\u0020\u0025\u0076\n",_fbea .SegmentDataLength ));_gfc .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074D\u0061\u0074\u0061\u0053\u0074\u0061\u0072t\u004f\u0066\u0066\u0073\u0065\u0074\u003a\u0020\u0025\u0076\u000a",_fbea .SegmentDataStartOffset )); -return _gfc .String ();};type PatternDictionary struct{_abegf *_d .Reader ;DataHeaderOffset int64 ;DataHeaderLength int64 ;DataOffset int64 ;DataLength int64 ;GBAtX []int8 ;GBAtY []int8 ;IsMMREncoded bool ;HDTemplate byte ;HdpWidth byte ;HdpHeight byte ; -Patterns []*_gc .Bitmap ;GrayMax uint32 ;};func (_eeff *Header )readDataStartOffset (_ddb *_d .Reader ,_cgbf OrganizationType ){if _cgbf ==OSequential {_eeff .SegmentDataStartOffset =uint64 (_ddb .AbsolutePosition ());};};func (_bffae *PageInformationSegment )checkInput ()error {if _bffae .PageBMHeight ==_b .MaxInt32 {if !_bffae .IsStripe {_gd .Log .Debug ("P\u0061\u0067\u0065\u0049\u006e\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0053\u0065\u0067me\u006e\u0074\u002e\u0049s\u0053\u0074\u0072\u0069\u0070\u0065\u0020\u0073\u0068ou\u006c\u0064 \u0062\u0065\u0020\u0074\u0072\u0075\u0065\u002e"); -};};return nil ;};func (_bbad *SymbolDictionary )decodeRefinedSymbol (_cbad ,_cgce uint32 )error {var (_bbcgb int ;_ecfd ,_ffadf int32 ;);if _bbad .IsHuffmanEncoded {_fdfbd ,_bedg :=_bbad ._cgad .ReadBits (byte (_bbad ._dffe ));if _bedg !=nil {return _bedg ; -};_bbcgb =int (_fdfbd );_fabed ,_bedg :=_fc .GetStandardTable (15);if _bedg !=nil {return _bedg ;};_decb ,_bedg :=_fabed .Decode (_bbad ._cgad );if _bedg !=nil {return _bedg ;};_ecfd =int32 (_decb );_decb ,_bedg =_fabed .Decode (_bbad ._cgad );if _bedg !=nil {return _bedg ; -};_ffadf =int32 (_decb );_fabed ,_bedg =_fc .GetStandardTable (1);if _bedg !=nil {return _bedg ;};if _ ,_bedg =_fabed .Decode (_bbad ._cgad );_bedg !=nil {return _bedg ;};_bbad ._cgad .Align ();}else {_dbgdd ,_ebdf :=_bbad ._efcac .DecodeIAID (uint64 (_bbad ._dffe ),_bbad ._ecfb ); -if _ebdf !=nil {return _ebdf ;};_bbcgb =int (_dbgdd );_ecfd ,_ebdf =_bbad ._efcac .DecodeInt (_bbad ._gcgc );if _ebdf !=nil {return _ebdf ;};_ffadf ,_ebdf =_bbad ._efcac .DecodeInt (_bbad ._fgbe );if _ebdf !=nil {return _ebdf ;};};if _fbfa :=_bbad .setSymbolsArray (); -_fbfa !=nil {return _fbfa ;};_aaed :=_bbad ._ceea [_bbcgb ];if _dgbc :=_bbad .decodeNewSymbols (_cbad ,_cgce ,_aaed ,_ecfd ,_ffadf );_dgbc !=nil {return _dgbc ;};if _bbad .IsHuffmanEncoded {_bbad ._cgad .Align ();};return nil ;};func (_fbac *SymbolDictionary )readNumberOfExportedSymbols ()error {_fgda ,_bbae :=_fbac ._cgad .ReadBits (32); -if _bbae !=nil {return _bbae ;};_fbac .NumberOfExportedSymbols =uint32 (_fgda &_b .MaxUint32 );return nil ;};type PageInformationSegment struct{_acea *_d .Reader ;PageBMHeight int ;PageBMWidth int ;ResolutionX int ;ResolutionY int ;_faee bool ;_fgad _gc .CombinationOperator ; -_dec bool ;DefaultPixelValue uint8 ;_caab bool ;IsLossless bool ;IsStripe bool ;MaxStripeSize uint16 ;};func (_gdg *GenericRefinementRegion )decodeTypicalPredictedLineTemplate1 (_dea ,_fd ,_fcb ,_dga ,_ced ,_efc ,_bg ,_dgaa ,_ecb int )(_gbb error ){var (_gceed ,_gfeb int ; -_fdb ,_fag int ;_dcff ,_ade int ;_afg byte ;);if _dea > 0{_afg ,_gbb =_gdg .RegionBitmap .GetByte (_bg -_fcb );if _gbb !=nil {return ;};_fdb =int (_afg );};if _dgaa > 0&&_dgaa <=_gdg .ReferenceBitmap .Height {_afg ,_gbb =_gdg .ReferenceBitmap .GetByte (_ecb -_dga +_efc ); -if _gbb !=nil {return ;};_fag =int (_afg )<<2;};if _dgaa >=0&&_dgaa < _gdg .ReferenceBitmap .Height {_afg ,_gbb =_gdg .ReferenceBitmap .GetByte (_ecb +_efc );if _gbb !=nil {return ;};_dcff =int (_afg );};if _dgaa > -2&&_dgaa < _gdg .ReferenceBitmap .Height -1{_afg ,_gbb =_gdg .ReferenceBitmap .GetByte (_ecb +_dga +_efc ); -if _gbb !=nil {return ;};_ade =int (_afg );};_gceed =((_fdb >>5)&0x6)|((_ade >>2)&0x30)|(_dcff &0xc0)|(_fag &0x200);_gfeb =((_ade >>2)&0x70)|(_dcff &0xc0)|(_fag &0x700);var _gcg int ;for _dbd :=0;_dbd < _ced ;_dbd =_gcg {var (_ebg int ;_egc int ;);_gcg =_dbd +8; -if _ebg =_fd -_dbd ;_ebg > 8{_ebg =8;};_edb :=_gcg < _fd ;_fed :=_gcg < _gdg .ReferenceBitmap .Width ;_acb :=_efc +1;if _dea > 0{_afg =0;if _edb {_afg ,_gbb =_gdg .RegionBitmap .GetByte (_bg -_fcb +1);if _gbb !=nil {return ;};};_fdb =(_fdb <<8)|int (_afg ); -};if _dgaa > 0&&_dgaa <=_gdg .ReferenceBitmap .Height {var _fgg int ;if _fed {_afg ,_gbb =_gdg .ReferenceBitmap .GetByte (_ecb -_dga +_acb );if _gbb !=nil {return ;};_fgg =int (_afg )<<2;};_fag =(_fag <<8)|_fgg ;};if _dgaa >=0&&_dgaa < _gdg .ReferenceBitmap .Height {_afg =0; -if _fed {_afg ,_gbb =_gdg .ReferenceBitmap .GetByte (_ecb +_acb );if _gbb !=nil {return ;};};_dcff =(_dcff <<8)|int (_afg );};if _dgaa > -2&&_dgaa < (_gdg .ReferenceBitmap .Height -1){_afg =0;if _fed {_afg ,_gbb =_gdg .ReferenceBitmap .GetByte (_ecb +_dga +_acb ); -if _gbb !=nil {return ;};};_ade =(_ade <<8)|int (_afg );};for _eef :=0;_eef < _ebg ;_eef ++{var _adc int ;_fdg :=(_gfeb >>4)&0x1ff;switch _fdg {case 0x1ff:_adc =1;case 0x00:_adc =0;default:_gdg ._a .SetIndex (int32 (_gceed ));_adc ,_gbb =_gdg ._bea .DecodeBit (_gdg ._a ); -if _gbb !=nil {return ;};};_edf :=uint (7-_eef );_egc |=_adc <<_edf ;_gceed =((_gceed &0x0d6)<<1)|_adc |(_fdb >>_edf +5)&0x002|((_ade >>_edf +2)&0x010)|((_dcff >>_edf )&0x040)|((_fag >>_edf )&0x200);_gfeb =((_gfeb &0xdb)<<1)|((_ade >>_edf +2)&0x010)|((_dcff >>_edf )&0x080)|((_fag >>_edf )&0x400); -};_gbb =_gdg .RegionBitmap .SetByte (_bg ,byte (_egc ));if _gbb !=nil {return ;};_bg ++;_ecb ++;};return nil ;};func (_bbd *GenericRegion )InitEncode (bm *_gc .Bitmap ,xLoc ,yLoc ,template int ,duplicateLineRemoval bool )error {const _ccd ="\u0047e\u006e\u0065\u0072\u0069\u0063\u0052\u0065\u0067\u0069\u006f\u006e.\u0049\u006e\u0069\u0074\u0045\u006e\u0063\u006f\u0064\u0065"; -if bm ==nil {return _bde .Error (_ccd ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if xLoc < 0||yLoc < 0{return _bde .Error (_ccd ,"\u0078\u0020\u0061\u006e\u0064\u0020\u0079\u0020\u006c\u006f\u0063\u0061\u0074i\u006f\u006e\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074h\u0061\u006e\u0020\u0030"); -};_bbd .Bitmap =bm ;_bbd .GBTemplate =byte (template );switch _bbd .GBTemplate {case 0:_bbd .GBAtX =[]int8 {3,-3,2,-2};_bbd .GBAtY =[]int8 {-1,-1,-2,-2};case 1:_bbd .GBAtX =[]int8 {3};_bbd .GBAtY =[]int8 {-1};case 2,3:_bbd .GBAtX =[]int8 {2};_bbd .GBAtY =[]int8 {-1}; -default:return _bde .Errorf (_ccd ,"\u0070\u0072o\u0076\u0069\u0064\u0065\u0064 \u0074\u0065\u006d\u0070\u006ca\u0074\u0065\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u007b\u0030\u002c\u0031\u002c\u0032\u002c\u0033\u007d",template ); -};_bbd .RegionSegment =&RegionSegment {BitmapHeight :uint32 (bm .Height ),BitmapWidth :uint32 (bm .Width ),XLocation :uint32 (xLoc ),YLocation :uint32 (yLoc )};_bbd .IsTPGDon =duplicateLineRemoval ;return nil ;};func (_ffeb *HalftoneRegion )shiftAndFill (_effd int )int {_effd >>=8; -if _effd < 0{_eaad :=int (_b .Log (float64 (_cedg (_effd )))/_b .Log (2));_caae :=31-_eaad ;for _dde :=1;_dde < _caae ;_dde ++{_effd |=1< 0{if _gfdef =_gbc .copyLineAbove (_cdg );_gfdef !=nil {return nil ,_gfdef ; -};};}else {if _gfdef =_gbc .decodeLine (_cdg ,_gbc .Bitmap .Width ,_fdc );_gfdef !=nil {return nil ,_gfdef ;};};};return _gbc .Bitmap ,nil ;};type SegmentEncoder interface{Encode (_bgg _d .BinaryWriter )(_fec int ,_cefd error );};func (_aadb *SymbolDictionary )getSymbol (_ccfe int )(*_gc .Bitmap ,error ){const _fcab ="\u0067e\u0074\u0053\u0079\u006d\u0062\u006fl"; -_eceb ,_dbdd :=_aadb ._cdgf .GetBitmap (_aadb ._gecb [_ccfe ]);if _dbdd !=nil {return nil ,_bde .Wrap (_dbdd ,_fcab ,"\u0063\u0061n\u0027\u0074\u0020g\u0065\u0074\u0020\u0073\u0079\u006d\u0062\u006f\u006c");};return _eceb ,nil ;};func (_edba *SymbolDictionary )decodeDirectlyThroughGenericRegion (_fddc ,_cbgb uint32 )error {if _edba ._ceec ==nil {_edba ._ceec =NewGenericRegion (_edba ._cgad ); -};_edba ._ceec .setParametersWithAt (false ,byte (_edba .SdTemplate ),false ,false ,_edba .SdATX ,_edba .SdATY ,_fddc ,_cbgb ,_edba ._dcbd ,_edba ._efcac );return _edba .addSymbol (_edba ._ceec );};func (_dgd *TextRegion )decodeRdy ()(int64 ,error ){const _gffc ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064y"; -if _dgd .IsHuffmanEncoded {if _dgd .SbHuffRDY ==3{if _dgd ._gebf ==nil {var (_fgec int ;_bdaa error ;);if _dgd .SbHuffFS ==3{_fgec ++;};if _dgd .SbHuffDS ==3{_fgec ++;};if _dgd .SbHuffDT ==3{_fgec ++;};if _dgd .SbHuffRDWidth ==3{_fgec ++;};if _dgd .SbHuffRDHeight ==3{_fgec ++; -};if _dgd .SbHuffRDX ==3{_fgec ++;};_dgd ._gebf ,_bdaa =_dgd .getUserTable (_fgec );if _bdaa !=nil {return 0,_bde .Wrap (_bdaa ,_gffc ,"");};};return _dgd ._gebf .Decode (_dgd ._dcbba );};_cacb ,_acba :=_fc .GetStandardTable (14+int (_dgd .SbHuffRDY )); -if _acba !=nil {return 0,_acba ;};return _cacb .Decode (_dgd ._dcbba );};_edee ,_dddd :=_dgd ._daa .DecodeInt (_dgd ._bcedg );if _dddd !=nil {return 0,_bde .Wrap (_dddd ,_gffc ,"");};return int64 (_edee ),nil ;};func (_da *GenericRefinementRegion )decodeOptimized (_gea ,_eaf ,_fcc ,_dfd ,_cade ,_eac ,_fgb int )error {var (_dce error ; -_dg int ;_dgc int ;);_bac :=_gea -int (_da .ReferenceDY );if _bc :=int (-_da .ReferenceDX );_bc > 0{_dg =_bc ;};_dfe :=_da .ReferenceBitmap .GetByteIndex (_dg ,_bac );if _da .ReferenceDX > 0{_dgc =int (_da .ReferenceDX );};_dfeb :=_da .RegionBitmap .GetByteIndex (_dgc ,_gea ); -switch _da .TemplateID {case 0:_dce =_da .decodeTemplate (_gea ,_eaf ,_fcc ,_dfd ,_cade ,_eac ,_fgb ,_dfeb ,_bac ,_dfe ,_da ._cg );case 1:_dce =_da .decodeTemplate (_gea ,_eaf ,_fcc ,_dfd ,_cade ,_eac ,_fgb ,_dfeb ,_bac ,_dfe ,_da ._cb );};return _dce ; -};func (_bgbd *PatternDictionary )readPatternWidthAndHeight ()error {_dede ,_edab :=_bgbd ._abegf .ReadByte ();if _edab !=nil {return _edab ;};_bgbd .HdpWidth =_dede ;_dede ,_edab =_bgbd ._abegf .ReadByte ();if _edab !=nil {return _edab ;};_bgbd .HdpHeight =_dede ; -return nil ;};func (_gbg *HalftoneRegion )GetRegionInfo ()*RegionSegment {return _gbg .RegionSegment };type template0 struct{};func (_eafdd *TextRegion )Encode (w _d .BinaryWriter )(_fdgce int ,_eced error ){const _cfaf ="\u0054\u0065\u0078\u0074\u0052\u0065\u0067\u0069\u006f\u006e\u002e\u0045n\u0063\u006f\u0064\u0065"; -if _fdgce ,_eced =_eafdd .RegionInfo .Encode (w );_eced !=nil {return _fdgce ,_bde .Wrap (_eced ,_cfaf ,"");};var _bbac int ;if _bbac ,_eced =_eafdd .encodeFlags (w );_eced !=nil {return _fdgce ,_bde .Wrap (_eced ,_cfaf ,"");};_fdgce +=_bbac ;if _bbac ,_eced =_eafdd .encodeSymbols (w ); -_eced !=nil {return _fdgce ,_bde .Wrap (_eced ,_cfaf ,"");};_fdgce +=_bbac ;return _fdgce ,nil ;};func (_afef *SymbolDictionary )decodeHeightClassDeltaHeight ()(int64 ,error ){if _afef .IsHuffmanEncoded {return _afef .decodeHeightClassDeltaHeightWithHuffman (); -};_ggbb ,_deac :=_afef ._efcac .DecodeInt (_afef ._acbe );if _deac !=nil {return 0,_deac ;};return int64 (_ggbb ),nil ;};func NewRegionSegment (r *_d .Reader )*RegionSegment {return &RegionSegment {_fggf :r }};func (_fgggd *TextRegion )symbolIDCodeLengths ()error {var (_fecb []*_fc .Code ; -_agcg uint64 ;_cafbe _fc .Tabler ;_gdbf error ;);for _cddag :=0;_cddag < 35;_cddag ++{_agcg ,_gdbf =_fgggd ._dcbba .ReadBits (4);if _gdbf !=nil {return _gdbf ;};_cgdf :=int (_agcg &0xf);if _cgdf > 0{_fecb =append (_fecb ,_fc .NewCode (int32 (_cgdf ),0,int32 (_cddag ),false )); -};};_cafbe ,_gdbf =_fc .NewFixedSizeTable (_fecb );if _gdbf !=nil {return _gdbf ;};var (_bcgf int64 ;_cdge uint32 ;_cfde []*_fc .Code ;_cgdce int64 ;);for _cdge < _fgggd .NumberOfSymbols {_cgdce ,_gdbf =_cafbe .Decode (_fgggd ._dcbba );if _gdbf !=nil {return _gdbf ; -};if _cgdce < 32{if _cgdce > 0{_cfde =append (_cfde ,_fc .NewCode (int32 (_cgdce ),0,int32 (_cdge ),false ));};_bcgf =_cgdce ;_cdge ++;}else {var _daba ,_dgcg int64 ;switch _cgdce {case 32:_agcg ,_gdbf =_fgggd ._dcbba .ReadBits (2);if _gdbf !=nil {return _gdbf ; -};_daba =3+int64 (_agcg );if _cdge > 0{_dgcg =_bcgf ;};case 33:_agcg ,_gdbf =_fgggd ._dcbba .ReadBits (3);if _gdbf !=nil {return _gdbf ;};_daba =3+int64 (_agcg );case 34:_agcg ,_gdbf =_fgggd ._dcbba .ReadBits (7);if _gdbf !=nil {return _gdbf ;};_daba =11+int64 (_agcg ); -};for _degg :=0;_degg < int (_daba );_degg ++{if _dgcg > 0{_cfde =append (_cfde ,_fc .NewCode (int32 (_dgcg ),0,int32 (_cdge ),false ));};_cdge ++;};};};_fgggd ._dcbba .Align ();_fgggd ._ebdg ,_gdbf =_fc .NewFixedSizeTable (_cfde );return _gdbf ;};var _ templater =&template1 {}; -func (_edcg *Header )readNumberOfReferredToSegments (_gggf *_d .Reader )(uint64 ,error ){const _cgg ="\u0072\u0065\u0061\u0064\u004e\u0075\u006d\u0062\u0065\u0072O\u0066\u0052\u0065\u0066\u0065\u0072\u0072e\u0064\u0054\u006f\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0073"; -_gcec ,_fbee :=_gggf .ReadBits (3);if _fbee !=nil {return 0,_bde .Wrap (_fbee ,_cgg ,"\u0063\u006f\u0075n\u0074\u0020\u006f\u0066\u0020\u0072\u0074\u0073");};_gcec &=0xf;var _agaa []byte ;if _gcec <=4{_agaa =make ([]byte ,5);for _ebf :=0;_ebf <=4;_ebf ++{_dade ,_dcad :=_gggf .ReadBit (); -if _dcad !=nil {return 0,_bde .Wrap (_dcad ,_cgg ,"\u0073\u0068\u006fr\u0074\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_agaa [_ebf ]=byte (_dade );};}else {_gcec ,_fbee =_gggf .ReadBits (29);if _fbee !=nil {return 0,_fbee ;};_gcec &=_b .MaxInt32 ;_cbcd :=(_gcec +8)>>3; -_cbcd <<=3;_agaa =make ([]byte ,_cbcd );var _affg uint64 ;for _affg =0;_affg < _cbcd ;_affg ++{_cgdc ,_dffc :=_gggf .ReadBit ();if _dffc !=nil {return 0,_bde .Wrap (_dffc ,_cgg ,"l\u006f\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_agaa [_affg ]=byte (_cgdc ); -};};return _gcec ,nil ;};func (_dgffg *TableSegment )HtLow ()int32 {return _dgffg ._accc };func (_gab *GenericRefinementRegion )setParameters (_gdae *_ge .DecoderStats ,_fda *_ge .Decoder ,_fea int8 ,_acdb ,_cea uint32 ,_ae *_gc .Bitmap ,_gaed ,_acg int32 ,_fdd bool ,_bfd []int8 ,_edcb []int8 ){_gd .Log .Trace ("\u005b\u0047\u0045NE\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052E\u0047I\u004fN\u005d \u0073\u0065\u0074\u0050\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073"); -if _gdae !=nil {_gab ._a =_gdae ;};if _fda !=nil {_gab ._bea =_fda ;};_gab .TemplateID =_fea ;_gab .RegionInfo .BitmapWidth =_acdb ;_gab .RegionInfo .BitmapHeight =_cea ;_gab .ReferenceBitmap =_ae ;_gab .ReferenceDX =_gaed ;_gab .ReferenceDY =_acg ;_gab .IsTPGROn =_fdd ; -_gab .GrAtX =_bfd ;_gab .GrAtY =_edcb ;_gab .RegionBitmap =nil ;_gd .Log .Trace ("[\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052E\u0046\u002d\u0052\u0045\u0047\u0049\u004fN]\u0020\u0073\u0065\u0074P\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073 f\u0069\u006ei\u0073\u0068\u0065\u0064\u002e\u0020\u0025\u0073",_gab ); -};func (_ccbde *SymbolDictionary )decodeThroughTextRegion (_cfgb ,_affbg ,_bdd uint32 )error {if _ccbde ._ffag ==nil {_ccbde ._ffag =_dadffa (_ccbde ._cgad ,nil );_ccbde ._ffag .setContexts (_ccbde ._dcbd ,_ge .NewStats (512,1),_ge .NewStats (512,1),_ge .NewStats (512,1),_ge .NewStats (512,1),_ccbde ._ecfb ,_ge .NewStats (512,1),_ge .NewStats (512,1),_ge .NewStats (512,1),_ge .NewStats (512,1)); -};if _faab :=_ccbde .setSymbolsArray ();_faab !=nil {return _faab ;};_ccbde ._ffag .setParameters (_ccbde ._efcac ,_ccbde .IsHuffmanEncoded ,true ,_cfgb ,_affbg ,_bdd ,1,_ccbde ._bcgg +_ccbde ._bdbb ,0,0,0,1,0,0,0,0,0,0,0,0,0,_ccbde .SdrTemplate ,_ccbde .SdrATX ,_ccbde .SdrATY ,_ccbde ._ceea ,_ccbde ._dffe ); -return _ccbde .addSymbol (_ccbde ._ffag );};func (_fbfe *PageInformationSegment )readCombinationOperatorOverrideAllowed ()error {_bgfe ,_aggf :=_fbfe ._acea .ReadBit ();if _aggf !=nil {return _aggf ;};if _bgfe ==1{_fbfe ._faee =true ;};return nil ;};func (_bbaf *PageInformationSegment )Encode (w _d .BinaryWriter )(_acac int ,_abeb error ){const _cgfe ="\u0050\u0061g\u0065\u0049\u006e\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u002e\u0045\u006eco\u0064\u0065"; -_fgc :=make ([]byte ,4);_f .BigEndian .PutUint32 (_fgc ,uint32 (_bbaf .PageBMWidth ));_acac ,_abeb =w .Write (_fgc );if _abeb !=nil {return _acac ,_bde .Wrap (_abeb ,_cgfe ,"\u0077\u0069\u0064t\u0068");};_f .BigEndian .PutUint32 (_fgc ,uint32 (_bbaf .PageBMHeight )); -var _dccd int ;_dccd ,_abeb =w .Write (_fgc );if _abeb !=nil {return _dccd +_acac ,_bde .Wrap (_abeb ,_cgfe ,"\u0068\u0065\u0069\u0067\u0068\u0074");};_acac +=_dccd ;_f .BigEndian .PutUint32 (_fgc ,uint32 (_bbaf .ResolutionX ));_dccd ,_abeb =w .Write (_fgc ); -if _abeb !=nil {return _dccd +_acac ,_bde .Wrap (_abeb ,_cgfe ,"\u0078\u0020\u0072e\u0073\u006f\u006c\u0075\u0074\u0069\u006f\u006e");};_acac +=_dccd ;_f .BigEndian .PutUint32 (_fgc ,uint32 (_bbaf .ResolutionY ));if _dccd ,_abeb =w .Write (_fgc );_abeb !=nil {return _dccd +_acac ,_bde .Wrap (_abeb ,_cgfe ,"\u0079\u0020\u0072e\u0073\u006f\u006c\u0075\u0074\u0069\u006f\u006e"); -};_acac +=_dccd ;if _abeb =_bbaf .encodeFlags (w );_abeb !=nil {return _acac ,_bde .Wrap (_abeb ,_cgfe ,"");};_acac ++;if _dccd ,_abeb =_bbaf .encodeStripingInformation (w );_abeb !=nil {return _acac ,_bde .Wrap (_abeb ,_cgfe ,"");};_acac +=_dccd ;return _acac ,nil ; -};func (_eagc *TableSegment )HtRS ()int32 {return _eagc ._gfedg };func (_bebc *TextRegion )decodeRdx ()(int64 ,error ){const _ddaf ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064x";if _bebc .IsHuffmanEncoded {if _bebc .SbHuffRDX ==3{if _bebc ._fadb ==nil {var (_agbf int ; -_dbaad error ;);if _bebc .SbHuffFS ==3{_agbf ++;};if _bebc .SbHuffDS ==3{_agbf ++;};if _bebc .SbHuffDT ==3{_agbf ++;};if _bebc .SbHuffRDWidth ==3{_agbf ++;};if _bebc .SbHuffRDHeight ==3{_agbf ++;};_bebc ._fadb ,_dbaad =_bebc .getUserTable (_agbf );if _dbaad !=nil {return 0,_bde .Wrap (_dbaad ,_ddaf ,""); -};};return _bebc ._fadb .Decode (_bebc ._dcbba );};_dacd ,_eebce :=_fc .GetStandardTable (14+int (_bebc .SbHuffRDX ));if _eebce !=nil {return 0,_bde .Wrap (_eebce ,_ddaf ,"");};return _dacd .Decode (_bebc ._dcbba );};_bfaec ,_afbf :=_bebc ._daa .DecodeInt (_bebc ._efgc ); -if _afbf !=nil {return 0,_bde .Wrap (_afbf ,_ddaf ,"");};return int64 (_bfaec ),nil ;};func (_gdgf *SymbolDictionary )parseHeader ()(_cged error ){_gd .Log .Trace ("\u005b\u0053\u0059\u004d\u0042\u004f\u004c \u0044\u0049\u0043T\u0049\u004f\u004e\u0041R\u0059\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e"); -defer func (){if _cged !=nil {_gd .Log .Trace ("\u005bS\u0059\u004dB\u004f\u004c\u0020\u0044I\u0043\u0054\u0049O\u004e\u0041\u0052\u0059\u005d\u005b\u0050\u0041\u0052SE\u002d\u0048\u0045A\u0044\u0045R\u005d\u0020\u0066\u0061\u0069\u006ce\u0064\u002e \u0025\u0076",_cged ); -}else {_gd .Log .Trace ("\u005b\u0053\u0059\u004d\u0042\u004f\u004c \u0044\u0049\u0043T\u0049\u004f\u004e\u0041R\u0059\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); -};}();if _cged =_gdgf .readRegionFlags ();_cged !=nil {return _cged ;};if _cged =_gdgf .setAtPixels ();_cged !=nil {return _cged ;};if _cged =_gdgf .setRefinementAtPixels ();_cged !=nil {return _cged ;};if _cged =_gdgf .readNumberOfExportedSymbols ();_cged !=nil {return _cged ; -};if _cged =_gdgf .readNumberOfNewSymbols ();_cged !=nil {return _cged ;};if _cged =_gdgf .setInSyms ();_cged !=nil {return _cged ;};if _gdgf ._cdcb {_dbfd :=_gdgf .Header .RTSegments ;for _egbe :=len (_dbfd )-1;_egbe >=0;_egbe --{if _dbfd [_egbe ].Type ==0{_agfde ,_fccb :=_dbfd [_egbe ].SegmentData .(*SymbolDictionary ); -if !_fccb {_cged =_gg .Errorf ("\u0072\u0065\u006c\u0061\u0074\u0065\u0064\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074:\u0020\u0025\u0076\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020S\u0079\u006d\u0062\u006f\u006c\u0020\u0044\u0069\u0063\u0074\u0069\u006fna\u0072\u0079\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074",_dbfd [_egbe ]); -return _cged ;};if _agfde ._cdcb {_gdgf .setRetainedCodingContexts (_agfde );};break ;};};};if _cged =_gdgf .checkInput ();_cged !=nil {return _cged ;};return nil ;};func (_bfaf *TableSegment )Init (h *Header ,r *_d .Reader )error {_bfaf ._aagb =r ;return _bfaf .parseHeader (); -};func (_cfd *SymbolDictionary )encodeATFlags (_dbgc _d .BinaryWriter )(_beb int ,_efbcd error ){const _fggg ="\u0065\u006e\u0063\u006f\u0064\u0065\u0041\u0054\u0046\u006c\u0061\u0067\u0073";if _cfd .IsHuffmanEncoded ||_cfd .SdTemplate !=0{return 0,nil ; -};_acda :=4;if _cfd .SdTemplate !=0{_acda =1;};for _fdbe :=0;_fdbe < _acda ;_fdbe ++{if _efbcd =_dbgc .WriteByte (byte (_cfd .SdATX [_fdbe ]));_efbcd !=nil {return _beb ,_bde .Wrapf (_efbcd ,_fggg ,"\u0053d\u0041\u0054\u0058\u005b\u0025\u0064]",_fdbe ); -};_beb ++;if _efbcd =_dbgc .WriteByte (byte (_cfd .SdATY [_fdbe ]));_efbcd !=nil {return _beb ,_bde .Wrapf (_efbcd ,_fggg ,"\u0053d\u0041\u0054\u0059\u005b\u0025\u0064]",_fdbe );};_beb ++;};return _beb ,nil ;};var (_ Regioner =&TextRegion {};_ Segmenter =&TextRegion {}; -);func (_cabf *TextRegion )readAmountOfSymbolInstances ()error {_bcgd ,_gbaff :=_cabf ._dcbba .ReadBits (32);if _gbaff !=nil {return _gbaff ;};_cabf .NumberOfSymbolInstances =uint32 (_bcgd &_b .MaxUint32 );_gdfb :=_cabf .RegionInfo .BitmapWidth *_cabf .RegionInfo .BitmapHeight ; -if _gdfb < _cabf .NumberOfSymbolInstances {_gd .Log .Debug ("\u004c\u0069\u006d\u0069t\u0069\u006e\u0067\u0020t\u0068\u0065\u0020n\u0075\u006d\u0062\u0065\u0072\u0020o\u0066\u0020d\u0065\u0063\u006f\u0064e\u0064\u0020\u0073\u0079m\u0062\u006f\u006c\u0020\u0069n\u0073\u0074\u0061\u006e\u0063\u0065\u0073 \u0074\u006f\u0020\u006f\u006ee\u0020\u0070\u0065\u0072\u0020\u0070\u0069\u0078\u0065l\u0020\u0028\u0020\u0025\u0064\u0020\u0069\u006e\u0073\u0074\u0065\u0061\u0064\u0020\u006f\u0066\u0020\u0025\u0064\u0029",_gdfb ,_cabf .NumberOfSymbolInstances ); -_cabf .NumberOfSymbolInstances =_gdfb ;};return nil ;};const (TSymbolDictionary Type =0;TIntermediateTextRegion Type =4;TImmediateTextRegion Type =6;TImmediateLosslessTextRegion Type =7;TPatternDictionary Type =16;TIntermediateHalftoneRegion Type =20;TImmediateHalftoneRegion Type =22; -TImmediateLosslessHalftoneRegion Type =23;TIntermediateGenericRegion Type =36;TImmediateGenericRegion Type =38;TImmediateLosslessGenericRegion Type =39;TIntermediateGenericRefinementRegion Type =40;TImmediateGenericRefinementRegion Type =42;TImmediateLosslessGenericRefinementRegion Type =43; -TPageInformation Type =48;TEndOfPage Type =49;TEndOfStrip Type =50;TEndOfFile Type =51;TProfiles Type =52;TTables Type =53;TExtension Type =62;TBitmap Type =70;);type Header struct{SegmentNumber uint32 ;Type Type ;RetainFlag bool ;PageAssociation int ; -PageAssociationFieldSize bool ;RTSegments []*Header ;HeaderLength int64 ;SegmentDataLength uint64 ;SegmentDataStartOffset uint64 ;Reader *_d .Reader ;SegmentData Segmenter ;RTSNumbers []int ;RetainBits []uint8 ;};func (_ddbg *TextRegion )setContexts (_fee *_ge .DecoderStats ,_fceg *_ge .DecoderStats ,_ddbb *_ge .DecoderStats ,_edea *_ge .DecoderStats ,_addb *_ge .DecoderStats ,_fgafd *_ge .DecoderStats ,_abbf *_ge .DecoderStats ,_fgba *_ge .DecoderStats ,_ecdcf *_ge .DecoderStats ,_afffa *_ge .DecoderStats ){_ddbg ._ccfg =_fceg ; -_ddbg ._effc =_ddbb ;_ddbg ._ccgbe =_edea ;_ddbg ._bgcd =_addb ;_ddbg ._ceba =_abbf ;_ddbg ._gfcd =_fgba ;_ddbg ._aacg =_fgafd ;_ddbg ._efgc =_ecdcf ;_ddbg ._bcedg =_afffa ;_ddbg ._afac =_fee ;};func (_fbbg *PatternDictionary )extractPatterns (_ggage *_gc .Bitmap )error {var _abfd int ; -_ecec :=make ([]*_gc .Bitmap ,_fbbg .GrayMax +1);for _abfd <=int (_fbbg .GrayMax ){_fcgc :=int (_fbbg .HdpWidth )*_abfd ;_cgbdd :=_be .Rect (_fcgc ,0,_fcgc +int (_fbbg .HdpWidth ),int (_fbbg .HdpHeight ));_dbf ,_fgaf :=_gc .Extract (_cgbdd ,_ggage );if _fgaf !=nil {return _fgaf ; -};_ecec [_abfd ]=_dbf ;_abfd ++;};_fbbg .Patterns =_ecec ;return nil ;};func (_fba *template1 )form (_fad ,_ccf ,_bcc ,_bag ,_gdc int16 )int16 {return ((_fad &0x02)<<8)|(_ccf <<6)|((_bcc &0x03)<<4)|(_bag <<1)|_gdc ;};func (_fadc *Header )subInputReader ()(*_d .Reader ,error ){_afde :=int (_fadc .SegmentDataLength ); -if _fadc .SegmentDataLength ==_b .MaxInt32 {_afde =-1;};return _fadc .Reader .NewPartialReader (int (_fadc .SegmentDataStartOffset ),_afde ,false );};func (_gdee *GenericRegion )setParameters (_ddff bool ,_eccb ,_efge int64 ,_aee ,_geb uint32 ){_gdee .IsMMREncoded =_ddff ; -_gdee .DataOffset =_eccb ;_gdee .DataLength =_efge ;_gdee .RegionSegment .BitmapHeight =_aee ;_gdee .RegionSegment .BitmapWidth =_geb ;_gdee ._gfed =nil ;_gdee .Bitmap =nil ;};func (_eefg *HalftoneRegion )GetPatterns ()([]*_gc .Bitmap ,error ){var (_egcaf []*_gc .Bitmap ; -_gbbf error ;);for _ ,_fage :=range _eefg ._aab .RTSegments {var _effge Segmenter ;_effge ,_gbbf =_fage .GetSegmentData ();if _gbbf !=nil {_gd .Log .Debug ("\u0047e\u0074\u0053\u0065\u0067m\u0065\u006e\u0074\u0044\u0061t\u0061 \u0066a\u0069\u006c\u0065\u0064\u003a\u0020\u0025v",_gbbf ); -return nil ,_gbbf ;};_caa ,_cfa :=_effge .(*PatternDictionary );if !_cfa {_gbbf =_gg .Errorf ("\u0072e\u006c\u0061t\u0065\u0064\u0020\u0073e\u0067\u006d\u0065n\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0070at\u0074\u0065\u0072n\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u003a \u0025\u0054",_effge ); -return nil ,_gbbf ;};var _dfc []*_gc .Bitmap ;_dfc ,_gbbf =_caa .GetDictionary ();if _gbbf !=nil {_gd .Log .Debug ("\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0047\u0065\u0074\u0044\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_gbbf ); -return nil ,_gbbf ;};_egcaf =append (_egcaf ,_dfc ...);};return _egcaf ,nil ;};func (_cac *PageInformationSegment )readCombinationOperator ()error {_fcde ,_acdfa :=_cac ._acea .ReadBits (2);if _acdfa !=nil {return _acdfa ;};_cac ._fgad =_gc .CombinationOperator (int (_fcde )); -return nil ;};type Regioner interface{GetRegionBitmap ()(*_gc .Bitmap ,error );GetRegionInfo ()*RegionSegment ;};func (_edbb *GenericRegion )decodeTemplate3 (_cbeg ,_gba ,_bcbee int ,_dggb ,_dcaa int )(_adcb error ){const _efe ="\u0064e\u0063o\u0064\u0065\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0033"; -var (_bfc ,_fcbg int ;_adcg int ;_gca byte ;_fbed ,_fcf int ;);if _cbeg >=1{_gca ,_adcb =_edbb .Bitmap .GetByte (_dcaa );if _adcb !=nil {return _bde .Wrap (_adcb ,_efe ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_adcg =int (_gca );};_bfc =(_adcg >>1)&0x70; -for _gdb :=0;_gdb < _bcbee ;_gdb =_fbed {var (_ggff byte ;_eccg int ;);_fbed =_gdb +8;if _cga :=_gba -_gdb ;_cga > 8{_eccg =8;}else {_eccg =_cga ;};if _cbeg >=1{_adcg <<=8;if _fbed < _gba {_gca ,_adcb =_edbb .Bitmap .GetByte (_dcaa +1);if _adcb !=nil {return _bde .Wrap (_adcb ,_efe ,"\u0069\u006e\u006e\u0065\u0072\u0020\u002d\u0020\u006c\u0069\u006e\u0065 \u003e\u003d\u0020\u0031"); -};_adcg |=int (_gca );};};for _bdbf :=0;_bdbf < _eccg ;_bdbf ++{if _edbb ._ddge {_fcbg =_edbb .overrideAtTemplate3 (_bfc ,_gdb +_bdbf ,_cbeg ,int (_ggff ),_bdbf );_edbb ._ead .SetIndex (int32 (_fcbg ));}else {_edbb ._ead .SetIndex (int32 (_bfc ));};_fcf ,_adcb =_edbb ._ace .DecodeBit (_edbb ._ead ); -if _adcb !=nil {return _bde .Wrap (_adcb ,_efe ,"");};_ggff |=byte (_fcf )<>uint (8-_bdbf ))&0x010);};if _dgbg :=_edbb .Bitmap .SetByte (_dggb ,_ggff );_dgbg !=nil {return _bde .Wrap (_dgbg ,_efe ,""); -};_dggb ++;_dcaa ++;};return nil ;};func (_bcged *PageInformationSegment )Size ()int {return 19};func (_cegae *SymbolDictionary )InitEncode (symbols *_gc .Bitmaps ,symbolList []int ,symbolMap map[int ]int ,unborderSymbols bool )error {const _bafdd ="S\u0079\u006d\u0062\u006f\u006c\u0044i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002eI\u006e\u0069\u0074E\u006ec\u006f\u0064\u0065"; -_cegae .SdATX =[]int8 {3,-3,2,-2};_cegae .SdATY =[]int8 {-1,-1,-2,-2};_cegae ._cdgf =symbols ;_cegae ._gecb =make ([]int ,len (symbolList ));copy (_cegae ._gecb ,symbolList );if len (_cegae ._gecb )!=_cegae ._cdgf .Size (){return _bde .Error (_bafdd ,"s\u0079\u006d\u0062\u006f\u006c\u0073\u0020\u0061\u006e\u0064\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u004ci\u0073\u0074\u0020\u006f\u0066\u0020\u0064\u0069\u0066\u0066er\u0065\u006e\u0074 \u0073i\u007a\u0065"); -};_cegae .NumberOfNewSymbols =uint32 (symbols .Size ());_cegae .NumberOfExportedSymbols =uint32 (symbols .Size ());_cegae ._cgab =symbolMap ;_cegae ._gfef =unborderSymbols ;return nil ;};func (_eafa *template0 )setIndex (_ffee *_ge .DecoderStats ){_ffee .SetIndex (0x100)}; -func (_edgc *TextRegion )decodeIb (_gded ,_eeefa int64 )(*_gc .Bitmap ,error ){const _efagf ="\u0064\u0065\u0063\u006f\u0064\u0065\u0049\u0062";var (_gagfa error ;_cgaf *_gc .Bitmap ;);if _gded ==0{if int (_eeefa )> len (_edgc .Symbols )-1{return nil ,_bde .Error (_efagf ,"\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0049\u0042\u0020\u0062\u0069\u0074\u006d\u0061\u0070\u002e\u0020\u0069\u006e\u0064\u0065x\u0020\u006f\u0075\u0074\u0020o\u0066\u0020r\u0061\u006e\u0067\u0065"); -};return _edgc .Symbols [int (_eeefa )],nil ;};var _egeb ,_bebb ,_gfbb ,_dcfee int64 ;_egeb ,_gagfa =_edgc .decodeRdw ();if _gagfa !=nil {return nil ,_bde .Wrap (_gagfa ,_efagf ,"");};_bebb ,_gagfa =_edgc .decodeRdh ();if _gagfa !=nil {return nil ,_bde .Wrap (_gagfa ,_efagf ,""); -};_gfbb ,_gagfa =_edgc .decodeRdx ();if _gagfa !=nil {return nil ,_bde .Wrap (_gagfa ,_efagf ,"");};_dcfee ,_gagfa =_edgc .decodeRdy ();if _gagfa !=nil {return nil ,_bde .Wrap (_gagfa ,_efagf ,"");};if _edgc .IsHuffmanEncoded {if _ ,_gagfa =_edgc .decodeSymInRefSize (); -_gagfa !=nil {return nil ,_bde .Wrap (_gagfa ,_efagf ,"");};_edgc ._dcbba .Align ();};_edeb :=_edgc .Symbols [_eeefa ];_afad :=uint32 (_edeb .Width );_bgba :=uint32 (_edeb .Height );_dcda :=int32 (uint32 (_egeb )>>1)+int32 (_gfbb );_aadg :=int32 (uint32 (_bebb )>>1)+int32 (_dcfee ); -if _edgc ._gegc ==nil {_edgc ._gegc =_eefe (_edgc ._dcbba ,nil );};_edgc ._gegc .setParameters (_edgc ._afac ,_edgc ._daa ,_edgc .SbrTemplate ,_afad +uint32 (_egeb ),_bgba +uint32 (_bebb ),_edeb ,_dcda ,_aadg ,false ,_edgc .SbrATX ,_edgc .SbrATY );_cgaf ,_gagfa =_edgc ._gegc .GetRegionBitmap (); -if _gagfa !=nil {return nil ,_bde .Wrap (_gagfa ,_efagf ,"\u0067\u0072\u0066");};if _edgc .IsHuffmanEncoded {_edgc ._dcbba .Align ();};return _cgaf ,nil ;};func (_gdgbc *SymbolDictionary )setSymbolsArray ()error {if _gdgbc ._dcfaf ==nil {if _agde :=_gdgbc .retrieveImportSymbols (); -_agde !=nil {return _agde ;};};if _gdgbc ._ceea ==nil {_gdgbc ._ceea =append (_gdgbc ._ceea ,_gdgbc ._dcfaf ...);};return nil ;};func (_fbc *GenericRefinementRegion )updateOverride ()error {if _fbc .GrAtX ==nil ||_fbc .GrAtY ==nil {return _ca .New ("\u0041\u0054\u0020\u0070\u0069\u0078\u0065\u006c\u0073\u0020\u006e\u006ft\u0020\u0073\u0065\u0074"); -};if len (_fbc .GrAtX )!=len (_fbc .GrAtY ){return _ca .New ("A\u0054\u0020\u0070\u0069xe\u006c \u0069\u006e\u0063\u006f\u006es\u0069\u0073\u0074\u0065\u006e\u0074");};_fbc ._gfde =make ([]bool ,len (_fbc .GrAtX ));switch _fbc .TemplateID {case 0:if _fbc .GrAtX [0]!=-1&&_fbc .GrAtY [0]!=-1{_fbc ._gfde [0]=true ; -_fbc ._df =true ;};if _fbc .GrAtX [1]!=-1&&_fbc .GrAtY [1]!=-1{_fbc ._gfde [1]=true ;_fbc ._df =true ;};case 1:_fbc ._df =false ;};return nil ;};func (_bggb *PageInformationSegment )readContainsRefinement ()error {_eag ,_dgfaa :=_bggb ._acea .ReadBit (); -if _dgfaa !=nil {return _dgfaa ;};if _eag ==1{_bggb ._caab =true ;};return nil ;};func (_dedb *TextRegion )readRegionFlags ()error {var (_cafbf int ;_fbgbb uint64 ;_abdb error ;);_cafbf ,_abdb =_dedb ._dcbba .ReadBit ();if _abdb !=nil {return _abdb ;}; -_dedb .SbrTemplate =int8 (_cafbf );_fbgbb ,_abdb =_dedb ._dcbba .ReadBits (5);if _abdb !=nil {return _abdb ;};_dedb .SbDsOffset =int8 (_fbgbb );if _dedb .SbDsOffset > 0x0f{_dedb .SbDsOffset -=0x20;};_cafbf ,_abdb =_dedb ._dcbba .ReadBit ();if _abdb !=nil {return _abdb ; -};_dedb .DefaultPixel =int8 (_cafbf );_fbgbb ,_abdb =_dedb ._dcbba .ReadBits (2);if _abdb !=nil {return _abdb ;};_dedb .CombinationOperator =_gc .CombinationOperator (int (_fbgbb )&0x3);_cafbf ,_abdb =_dedb ._dcbba .ReadBit ();if _abdb !=nil {return _abdb ; -};_dedb .IsTransposed =int8 (_cafbf );_fbgbb ,_abdb =_dedb ._dcbba .ReadBits (2);if _abdb !=nil {return _abdb ;};_dedb .ReferenceCorner =int16 (_fbgbb )&0x3;_fbgbb ,_abdb =_dedb ._dcbba .ReadBits (2);if _abdb !=nil {return _abdb ;};_dedb .LogSBStrips =int16 (_fbgbb )&0x3; -_dedb .SbStrips =1< 0{_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"s\u0064\u0072\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065"); -};_aeff =0;if _eea .SdTemplate > 1{_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};_aeff =0;if _eea .SdTemplate ==1||_eea .SdTemplate ==3{_aeff =1; -};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};_aeff =0;if _eea ._acdbd {_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0063\u006f\u0064in\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0072\u0065\u0074\u0061\u0069\u006e\u0065\u0064"); -};_aeff =0;if _eea ._cdcb {_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0063\u006f\u0064\u0069ng\u0020\u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0075\u0073\u0065\u0064");};_aeff =0;if _eea .SdHuffAggInstanceSelection {_aeff =1; -};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0048\u0075\u0066\u0066\u0041\u0067\u0067\u0049\u006e\u0073\u0074");};_aeff =int (_eea .SdHuffBMSizeSelection );if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0048u\u0066\u0066\u0042\u006d\u0053\u0069\u007a\u0065"); -};_aeff =0;if _eea .SdHuffDecodeWidthSelection > 1{_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"s\u0064\u0048\u0075\u0066\u0066\u0057\u0069\u0064\u0074\u0068");};_aeff =0;switch _eea .SdHuffDecodeWidthSelection {case 1,3:_aeff =1; -};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"s\u0064\u0048\u0075\u0066\u0066\u0057\u0069\u0064\u0074\u0068");};_aeff =0;if _eea .SdHuffDecodeHeightSelection > 1{_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0048u\u0066\u0066\u0048\u0065\u0069\u0067\u0068\u0074"); -};_aeff =0;switch _eea .SdHuffDecodeHeightSelection {case 1,3:_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0048u\u0066\u0066\u0048\u0065\u0069\u0067\u0068\u0074");};_aeff =0;if _eea .UseRefinementAggregation {_aeff =1; -};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0052\u0065\u0066\u0041\u0067\u0067");};_aeff =0;if _eea .IsHuffmanEncoded {_aeff =1;};if _fde =_gbce .WriteBit (_aeff );_fde !=nil {return _fgab ,_bde .Wrap (_fde ,_fbd ,"\u0073\u0064\u0048\u0075\u0066\u0066"); -};return 2,nil ;};func (_abbd *Header )writeReferredToCount (_bdcg _d .BinaryWriter )(_edcc int ,_gfga error ){const _gfdb ="w\u0072i\u0074\u0065\u0052\u0065\u0066\u0065\u0072\u0072e\u0064\u0054\u006f\u0043ou\u006e\u0074";_abbd .RTSNumbers =make ([]int ,len (_abbd .RTSegments )); -for _gafb ,_gdac :=range _abbd .RTSegments {_abbd .RTSNumbers [_gafb ]=int (_gdac .SegmentNumber );};if len (_abbd .RTSNumbers )<=4{var _ede byte ;if len (_abbd .RetainBits )>=1{_ede =_abbd .RetainBits [0];};_ede |=byte (len (_abbd .RTSNumbers ))<<5;if _gfga =_bdcg .WriteByte (_ede ); -_gfga !=nil {return 0,_bde .Wrap (_gfga ,_gfdb ,"\u0073\u0068\u006fr\u0074\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};return 1,nil ;};_cdcc :=uint32 (len (_abbd .RTSNumbers ));_gggee :=make ([]byte ,4+_bf .Ceil (len (_abbd .RTSNumbers )+1,8));_cdcc |=0x7<<29; -_f .BigEndian .PutUint32 (_gggee ,_cdcc );copy (_gggee [1:],_abbd .RetainBits );_edcc ,_gfga =_bdcg .Write (_gggee );if _gfga !=nil {return 0,_bde .Wrap (_gfga ,_gfdb ,"l\u006f\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};return _edcc ,nil ; -};func (_gafafg *SymbolDictionary )setRetainedCodingContexts (_dgff *SymbolDictionary ){_gafafg ._efcac =_dgff ._efcac ;_gafafg .IsHuffmanEncoded =_dgff .IsHuffmanEncoded ;_gafafg .UseRefinementAggregation =_dgff .UseRefinementAggregation ;_gafafg .SdTemplate =_dgff .SdTemplate ; -_gafafg .SdrTemplate =_dgff .SdrTemplate ;_gafafg .SdATX =_dgff .SdATX ;_gafafg .SdATY =_dgff .SdATY ;_gafafg .SdrATX =_dgff .SdrATX ;_gafafg .SdrATY =_dgff .SdrATY ;_gafafg ._dcbd =_dgff ._dcbd ;};type templater interface{form (_cbbd ,_fcg ,_abc ,_ecdf ,_ecc int16 )int16 ; -setIndex (_dfg *_ge .DecoderStats );};type TextRegion struct{_dcbba *_d .Reader ;RegionInfo *RegionSegment ;SbrTemplate int8 ;SbDsOffset int8 ;DefaultPixel int8 ;CombinationOperator _gc .CombinationOperator ;IsTransposed int8 ;ReferenceCorner int16 ;LogSBStrips int16 ; -UseRefinement bool ;IsHuffmanEncoded bool ;SbHuffRSize int8 ;SbHuffRDY int8 ;SbHuffRDX int8 ;SbHuffRDHeight int8 ;SbHuffRDWidth int8 ;SbHuffDT int8 ;SbHuffDS int8 ;SbHuffFS int8 ;SbrATX []int8 ;SbrATY []int8 ;NumberOfSymbolInstances uint32 ;_adad int64 ; -SbStrips int8 ;NumberOfSymbols uint32 ;RegionBitmap *_gc .Bitmap ;Symbols []*_gc .Bitmap ;_daa *_ge .Decoder ;_gegc *GenericRefinementRegion ;_ccfg *_ge .DecoderStats ;_effc *_ge .DecoderStats ;_ccgbe *_ge .DecoderStats ;_bgcd *_ge .DecoderStats ;_ceb *_ge .DecoderStats ; -_ceba *_ge .DecoderStats ;_gfcd *_ge .DecoderStats ;_aacg *_ge .DecoderStats ;_efgc *_ge .DecoderStats ;_bcedg *_ge .DecoderStats ;_afac *_ge .DecoderStats ;_ffaeb int8 ;_ebdg *_fc .FixedSizeTable ;Header *Header ;_adaca _fc .Tabler ;_efeb _fc .Tabler ; -_aafc _fc .Tabler ;_fadd _fc .Tabler ;_gaeff _fc .Tabler ;_fadb _fc .Tabler ;_gebf _fc .Tabler ;_egfg _fc .Tabler ;_bgd ,_ddef map[int ]int ;_bfdf []int ;_eacc *_gc .Points ;_fcbcg *_gc .Bitmaps ;_adgg *_bf .IntSlice ;_dbbab ,_aedg int ;_gcab *_gc .Boxes ; -};func (_eda *GenericRegion )overrideAtTemplate0b (_egb ,_cff ,_dcbb ,_gcb ,_feac ,_cab int )int {if _eda .GBAtOverride [0]{_egb &=0xFFFD;if _eda .GBAtY [0]==0&&_eda .GBAtX [0]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [0]&0x1))<<1; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [0]),_dcbb +int (_eda .GBAtY [0])))<<1;};};if _eda .GBAtOverride [1]{_egb &=0xDFFF;if _eda .GBAtY [1]==0&&_eda .GBAtX [1]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [1]&0x1))<<13; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [1]),_dcbb +int (_eda .GBAtY [1])))<<13;};};if _eda .GBAtOverride [2]{_egb &=0xFDFF;if _eda .GBAtY [2]==0&&_eda .GBAtX [2]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [2]&0x1))<<9; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [2]),_dcbb +int (_eda .GBAtY [2])))<<9;};};if _eda .GBAtOverride [3]{_egb &=0xBFFF;if _eda .GBAtY [3]==0&&_eda .GBAtX [3]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [3]&0x1))<<14; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [3]),_dcbb +int (_eda .GBAtY [3])))<<14;};};if _eda .GBAtOverride [4]{_egb &=0xEFFF;if _eda .GBAtY [4]==0&&_eda .GBAtX [4]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [4]&0x1))<<12; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [4]),_dcbb +int (_eda .GBAtY [4])))<<12;};};if _eda .GBAtOverride [5]{_egb &=0xFFDF;if _eda .GBAtY [5]==0&&_eda .GBAtX [5]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [5]&0x1))<<5; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [5]),_dcbb +int (_eda .GBAtY [5])))<<5;};};if _eda .GBAtOverride [6]{_egb &=0xFFFB;if _eda .GBAtY [6]==0&&_eda .GBAtX [6]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [6]&0x1))<<2; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [6]),_dcbb +int (_eda .GBAtY [6])))<<2;};};if _eda .GBAtOverride [7]{_egb &=0xFFF7;if _eda .GBAtY [7]==0&&_eda .GBAtX [7]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [7]&0x1))<<3; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [7]),_dcbb +int (_eda .GBAtY [7])))<<3;};};if _eda .GBAtOverride [8]{_egb &=0xF7FF;if _eda .GBAtY [8]==0&&_eda .GBAtX [8]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [8]&0x1))<<11; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [8]),_dcbb +int (_eda .GBAtY [8])))<<11;};};if _eda .GBAtOverride [9]{_egb &=0xFFEF;if _eda .GBAtY [9]==0&&_eda .GBAtX [9]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [9]&0x1))<<4; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [9]),_dcbb +int (_eda .GBAtY [9])))<<4;};};if _eda .GBAtOverride [10]{_egb &=0x7FFF;if _eda .GBAtY [10]==0&&_eda .GBAtX [10]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [10]&0x1))<<15; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [10]),_dcbb +int (_eda .GBAtY [10])))<<15;};};if _eda .GBAtOverride [11]{_egb &=0xFDFF;if _eda .GBAtY [11]==0&&_eda .GBAtX [11]>=-int8 (_feac ){_egb |=(_gcb >>uint (int8 (_cab )-_eda .GBAtX [11]&0x1))<<10; -}else {_egb |=int (_eda .getPixel (_cff +int (_eda .GBAtX [11]),_dcbb +int (_eda .GBAtY [11])))<<10;};};return _egb ;};func (_edge *GenericRegion )writeGBAtPixels (_aeeg _d .BinaryWriter )(_aaf int ,_ddfb error ){const _fagb ="\u0077r\u0069t\u0065\u0047\u0042\u0041\u0074\u0050\u0069\u0078\u0065\u006c\u0073"; -if _edge .UseMMR {return 0,nil ;};_aeac :=1;if _edge .GBTemplate ==0{_aeac =4;}else if _edge .UseExtTemplates {_aeac =12;};if len (_edge .GBAtX )!=_aeac {return 0,_bde .Errorf (_fagb ,"\u0067\u0062\u0020\u0061\u0074\u0020\u0070\u0061\u0069\u0072\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020d\u006f\u0065\u0073\u006e\u0027\u0074\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0047\u0042\u0041t\u0058\u0020\u0073\u006c\u0069\u0063\u0065\u0020\u006c\u0065\u006e"); -};if len (_edge .GBAtY )!=_aeac {return 0,_bde .Errorf (_fagb ,"\u0067\u0062\u0020\u0061\u0074\u0020\u0070\u0061\u0069\u0072\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020d\u006f\u0065\u0073\u006e\u0027\u0074\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0047\u0042\u0041t\u0059\u0020\u0073\u006c\u0069\u0063\u0065\u0020\u006c\u0065\u006e"); -};for _bfaee :=0;_bfaee < _aeac ;_bfaee ++{if _ddfb =_aeeg .WriteByte (byte (_edge .GBAtX [_bfaee ]));_ddfb !=nil {return _aaf ,_bde .Wrap (_ddfb ,_fagb ,"w\u0072\u0069\u0074\u0065\u0020\u0047\u0042\u0041\u0074\u0058");};_aaf ++;if _ddfb =_aeeg .WriteByte (byte (_edge .GBAtY [_bfaee ])); -_ddfb !=nil {return _aaf ,_bde .Wrap (_ddfb ,_fagb ,"w\u0072\u0069\u0074\u0065\u0020\u0047\u0042\u0041\u0074\u0059");};_aaf ++;};return _aaf ,nil ;};func (_cedd *SymbolDictionary )setRefinementAtPixels ()error {if !_cedd .UseRefinementAggregation ||_cedd .SdrTemplate !=0{return nil ; -};if _efgf :=_cedd .readRefinementAtPixels (2);_efgf !=nil {return _efgf ;};return nil ;};func (_egae *HalftoneRegion )parseHeader ()error {if _aggd :=_egae .RegionSegment .parseHeader ();_aggd !=nil {return _aggd ;};_ccdb ,_ggbf :=_egae ._faa .ReadBit (); -if _ggbf !=nil {return _ggbf ;};_egae .HDefaultPixel =int8 (_ccdb );_eeec ,_ggbf :=_egae ._faa .ReadBits (3);if _ggbf !=nil {return _ggbf ;};_egae .CombinationOperator =_gc .CombinationOperator (_eeec &0xf);_ccdb ,_ggbf =_egae ._faa .ReadBit ();if _ggbf !=nil {return _ggbf ; -};if _ccdb ==1{_egae .HSkipEnabled =true ;};_eeec ,_ggbf =_egae ._faa .ReadBits (2);if _ggbf !=nil {return _ggbf ;};_egae .HTemplate =byte (_eeec &0xf);_ccdb ,_ggbf =_egae ._faa .ReadBit ();if _ggbf !=nil {return _ggbf ;};if _ccdb ==1{_egae .IsMMREncoded =true ; -};_eeec ,_ggbf =_egae ._faa .ReadBits (32);if _ggbf !=nil {return _ggbf ;};_egae .HGridWidth =uint32 (_eeec &_b .MaxUint32 );_eeec ,_ggbf =_egae ._faa .ReadBits (32);if _ggbf !=nil {return _ggbf ;};_egae .HGridHeight =uint32 (_eeec &_b .MaxUint32 );_eeec ,_ggbf =_egae ._faa .ReadBits (32); -if _ggbf !=nil {return _ggbf ;};_egae .HGridX =int32 (_eeec &_b .MaxInt32 );_eeec ,_ggbf =_egae ._faa .ReadBits (32);if _ggbf !=nil {return _ggbf ;};_egae .HGridY =int32 (_eeec &_b .MaxInt32 );_eeec ,_ggbf =_egae ._faa .ReadBits (16);if _ggbf !=nil {return _ggbf ; -};_egae .HRegionX =uint16 (_eeec &_b .MaxUint16 );_eeec ,_ggbf =_egae ._faa .ReadBits (16);if _ggbf !=nil {return _ggbf ;};_egae .HRegionY =uint16 (_eeec &_b .MaxUint16 );if _ggbf =_egae .computeSegmentDataStructure ();_ggbf !=nil {return _ggbf ;};return _egae .checkInput (); -};func (_bff *Header )Encode (w _d .BinaryWriter )(_gdeg int ,_ddd error ){const _dcae ="\u0048\u0065\u0061d\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065";var _eeb _d .BinaryWriter ;_gd .Log .Trace ("\u005b\u0053\u0045G\u004d\u0045\u004e\u0054-\u0048\u0045\u0041\u0044\u0045\u0052\u005d[\u0045\u004e\u0043\u004f\u0044\u0045\u005d\u0020\u0042\u0065\u0067\u0069\u006e\u0073"); -defer func (){if _ddd !=nil {_gd .Log .Trace ("[\u0053\u0045\u0047\u004d\u0045\u004eT\u002d\u0048\u0045\u0041\u0044\u0045R\u005d\u005b\u0045\u004e\u0043\u004f\u0044E\u005d\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u002e\u0020%\u0076",_ddd );}else {_gd .Log .Trace ("\u005b\u0053\u0045\u0047ME\u004e\u0054\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0025\u0076",_bff ); -_gd .Log .Trace ("\u005b\u0053\u0045\u0047\u004d\u0045N\u0054\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u005b\u0045\u004e\u0043O\u0044\u0045\u005d\u0020\u0046\u0069\u006ei\u0073\u0068\u0065\u0064");};}();w .FinishByte ();if _bff .SegmentData !=nil {_bab ,_cbf :=_bff .SegmentData .(SegmentEncoder ); -if !_cbf {return 0,_bde .Errorf (_dcae ,"\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u003a\u0020\u0025\u0054\u0020\u0064\u006f\u0065s\u006e\u0027\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074 \u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0045\u006e\u0063\u006f\u0064er\u0020\u0069\u006e\u0074\u0065\u0072\u0066\u0061\u0063\u0065",_bff .SegmentData ); -};_eeb =_d .BufferedMSB ();_gdeg ,_ddd =_bab .Encode (_eeb );if _ddd !=nil {return 0,_bde .Wrap (_ddd ,_dcae ,"");};_bff .SegmentDataLength =uint64 (_gdeg );};if _bff .pageSize ()==4{_bff .PageAssociationFieldSize =true ;};var _fcgd int ;_fcgd ,_ddd =_bff .writeSegmentNumber (w ); -if _ddd !=nil {return 0,_bde .Wrap (_ddd ,_dcae ,"");};_gdeg +=_fcgd ;if _ddd =_bff .writeFlags (w );_ddd !=nil {return _gdeg ,_bde .Wrap (_ddd ,_dcae ,"");};_gdeg ++;_fcgd ,_ddd =_bff .writeReferredToCount (w );if _ddd !=nil {return 0,_bde .Wrap (_ddd ,_dcae ,""); -};_gdeg +=_fcgd ;_fcgd ,_ddd =_bff .writeReferredToSegments (w );if _ddd !=nil {return 0,_bde .Wrap (_ddd ,_dcae ,"");};_gdeg +=_fcgd ;_fcgd ,_ddd =_bff .writeSegmentPageAssociation (w );if _ddd !=nil {return 0,_bde .Wrap (_ddd ,_dcae ,"");};_gdeg +=_fcgd ; -_fcgd ,_ddd =_bff .writeSegmentDataLength (w );if _ddd !=nil {return 0,_bde .Wrap (_ddd ,_dcae ,"");};_gdeg +=_fcgd ;_bff .HeaderLength =int64 (_gdeg )-int64 (_bff .SegmentDataLength );if _eeb !=nil {if _ ,_ddd =w .Write (_eeb .Data ());_ddd !=nil {return _gdeg ,_bde .Wrap (_ddd ,_dcae ,"\u0077r\u0069t\u0065\u0020\u0073\u0065\u0067m\u0065\u006et\u0020\u0064\u0061\u0074\u0061"); -};};return _gdeg ,nil ;};func _dadffa (_gbcf *_d .Reader ,_aeega *Header )*TextRegion {_gdff :=&TextRegion {_dcbba :_gbcf ,Header :_aeega ,RegionInfo :NewRegionSegment (_gbcf )};return _gdff ;};func (_gdcb *PageInformationSegment )CombinationOperatorOverrideAllowed ()bool {return _gdcb ._faee }; -func (_fgag *PatternDictionary )checkInput ()error {if _fgag .HdpHeight < 1||_fgag .HdpWidth < 1{return _ca .New ("in\u0076\u0061l\u0069\u0064\u0020\u0048\u0065\u0061\u0064\u0065\u0072 \u0056\u0061\u006c\u0075\u0065\u003a\u0020\u0057\u0069\u0064\u0074\u0068\u002f\u0048\u0065\u0069\u0067\u0068\u0074\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020g\u0072e\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061n\u0020z\u0065\u0072o"); -};if _fgag .IsMMREncoded {if _fgag .HDTemplate !=0{_gd .Log .Debug ("\u0076\u0061\u0072\u0069\u0061\u0062\u006c\u0065\u0020\u0048\u0044\u0054\u0065\u006d\u0070\u006c\u0061\u0074e\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0030"); -};};return nil ;};func (_bafe *TextRegion )String ()string {_efgce :=&_bd .Builder {};_efgce .WriteString ("\u000a[\u0054E\u0058\u0054\u0020\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u000a");_efgce .WriteString (_bafe .RegionInfo .String ()+"\u000a");_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053br\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u003a\u0020\u0025\u0076\u000a",_bafe .SbrTemplate )); -_efgce .WriteString (_gg .Sprintf ("\u0009-\u0020S\u0062\u0044\u0073\u004f\u0066f\u0073\u0065t\u003a\u0020\u0025\u0076\u000a",_bafe .SbDsOffset ));_efgce .WriteString (_gg .Sprintf ("\t\u002d \u0044\u0065\u0066\u0061\u0075\u006c\u0074\u0050i\u0078\u0065\u006c\u003a %\u0076\u000a",_bafe .DefaultPixel )); -_efgce .WriteString (_gg .Sprintf ("\t\u002d\u0020\u0043\u006f\u006d\u0062i\u006e\u0061\u0074\u0069\u006f\u006e\u004f\u0070\u0065r\u0061\u0074\u006fr\u003a \u0025\u0076\u000a",_bafe .CombinationOperator ));_efgce .WriteString (_gg .Sprintf ("\t\u002d \u0049\u0073\u0054\u0072\u0061\u006e\u0073\u0070o\u0073\u0065\u0064\u003a %\u0076\u000a",_bafe .IsTransposed )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020Re\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0043\u006f\u0072\u006e\u0065\u0072\u003a\u0020\u0025\u0076\u000a",_bafe .ReferenceCorner ));_efgce .WriteString (_gg .Sprintf ("\t\u002d\u0020\u0055\u0073eR\u0065f\u0069\u006e\u0065\u006d\u0065n\u0074\u003a\u0020\u0025\u0076\u000a",_bafe .UseRefinement )); -_efgce .WriteString (_gg .Sprintf ("\u0009-\u0020\u0049\u0073\u0048\u0075\u0066\u0066\u006d\u0061\u006e\u0045n\u0063\u006f\u0064\u0065\u0064\u003a\u0020\u0025\u0076\u000a",_bafe .IsHuffmanEncoded ));if _bafe .IsHuffmanEncoded {_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053bH\u0075\u0066\u0066\u0052\u0053\u0069\u007a\u0065\u003a\u0020\u0025\u0076\u000a",_bafe .SbHuffRSize )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0048\u0075\u0066\u0066\u0052\u0044\u0059:\u0020\u0025\u0076\u000a",_bafe .SbHuffRDY ));_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0048\u0075\u0066\u0066\u0052\u0044\u0058:\u0020\u0025\u0076\u000a",_bafe .SbHuffRDX )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053bH\u0075\u0066\u0066\u0052\u0044\u0048\u0065\u0069\u0067\u0068\u0074\u003a\u0020\u0025v\u000a",_bafe .SbHuffRDHeight ));_efgce .WriteString (_gg .Sprintf ("\t\u002d\u0020\u0053\u0062Hu\u0066f\u0052\u0044\u0057\u0069\u0064t\u0068\u003a\u0020\u0025\u0076\u000a",_bafe .SbHuffRDWidth )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d \u0053\u0062\u0048u\u0066\u0066\u0044\u0054\u003a\u0020\u0025\u0076\u000a",_bafe .SbHuffDT ));_efgce .WriteString (_gg .Sprintf ("\u0009\u002d \u0053\u0062\u0048u\u0066\u0066\u0044\u0053\u003a\u0020\u0025\u0076\u000a",_bafe .SbHuffDS )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d \u0053\u0062\u0048u\u0066\u0066\u0046\u0053\u003a\u0020\u0025\u0076\u000a",_bafe .SbHuffFS ));};_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0072\u0041\u0054\u0058:\u0020\u0025\u0076\u000a",_bafe .SbrATX )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0072\u0041\u0054\u0059:\u0020\u0025\u0076\u000a",_bafe .SbrATY ));_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020N\u0075\u006d\u0062\u0065r\u004f\u0066\u0053\u0079\u006d\u0062\u006fl\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0073\u003a\u0020\u0025\u0076\u000a",_bafe .NumberOfSymbolInstances )); -_efgce .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0072\u0041\u0054\u0058:\u0020\u0025\u0076\u000a",_bafe .SbrATX ));return _efgce .String ();};func (_acd *GenericRefinementRegion )getPixel (_ffa *_gc .Bitmap ,_egd ,_dag int )int {if _egd < 0||_egd >=_ffa .Width {return 0; -};if _dag < 0||_dag >=_ffa .Height {return 0;};if _ffa .GetPixel (_egd ,_dag ){return 1;};return 0;};func (_fgeb *SymbolDictionary )decodeAggregate (_edbd ,_gefb uint32 )error {var (_edfd int64 ;_bbee error ;);if _fgeb .IsHuffmanEncoded {_edfd ,_bbee =_fgeb .huffDecodeRefAggNInst (); -if _bbee !=nil {return _bbee ;};}else {_edade ,_fabe :=_fgeb ._efcac .DecodeInt (_fgeb ._agad );if _fabe !=nil {return _fabe ;};_edfd =int64 (_edade );};if _edfd > 1{return _fgeb .decodeThroughTextRegion (_edbd ,_gefb ,uint32 (_edfd ));}else if _edfd ==1{return _fgeb .decodeRefinedSymbol (_edbd ,_gefb ); -};return nil ;};func (_dbgd *PageInformationSegment )Init (h *Header ,r *_d .Reader )(_ceggd error ){_dbgd ._acea =r ;if _ceggd =_dbgd .parseHeader ();_ceggd !=nil {return _bde .Wrap (_ceggd ,"P\u0061\u0067\u0065\u0049\u006e\u0066o\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0053\u0065g\u006d\u0065\u006et\u002eI\u006e\u0069\u0074",""); -};return nil ;};var _ SegmentEncoder =&RegionSegment {};func (_fdcad *PageInformationSegment )readIsStriped ()error {_fgcc ,_cece :=_fdcad ._acea .ReadBit ();if _cece !=nil {return _cece ;};if _fgcc ==1{_fdcad .IsStripe =true ;};return nil ;};func (_fdacg *SymbolDictionary )setInSyms ()error {if _fdacg .Header .RTSegments !=nil {return _fdacg .retrieveImportSymbols (); -};_fdacg ._dcfaf =make ([]*_gc .Bitmap ,0);return nil ;};func (_abgd *PageInformationSegment )readIsLossless ()error {_ecgg ,_bfcc :=_abgd ._acea .ReadBit ();if _bfcc !=nil {return _bfcc ;};if _ecgg ==1{_abgd .IsLossless =true ;};return nil ;};func (_bcba *GenericRegion )decodeTemplate1 (_eeef ,_abeg ,_gfb int ,_aca ,_bda int )(_efdf error ){const _baad ="\u0064e\u0063o\u0064\u0065\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0031"; -var (_eba ,_abg int ;_dfbe ,_dca int ;_aa byte ;_adg ,_fbgc int ;);if _eeef >=1{_aa ,_efdf =_bcba .Bitmap .GetByte (_bda );if _efdf !=nil {return _bde .Wrap (_efdf ,_baad ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_dfbe =int (_aa );};if _eeef >=2{_aa ,_efdf =_bcba .Bitmap .GetByte (_bda -_bcba .Bitmap .RowStride ); -if _efdf !=nil {return _bde .Wrap (_efdf ,_baad ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00202");};_dca =int (_aa )<<5;};_eba =((_dfbe >>1)&0x1f8)|((_dca >>1)&0x1e00);for _bcfa :=0;_bcfa < _gfb ;_bcfa =_adg {var (_aeb byte ;_ffd int ;);_adg =_bcfa +8;if _ggdb :=_abeg -_bcfa ; -_ggdb > 8{_ffd =8;}else {_ffd =_ggdb ;};if _eeef > 0{_dfbe <<=8;if _adg < _abeg {_aa ,_efdf =_bcba .Bitmap .GetByte (_bda +1);if _efdf !=nil {return _bde .Wrap (_efdf ,_baad ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0030");};_dfbe |=int (_aa );};}; -if _eeef > 1{_dca <<=8;if _adg < _abeg {_aa ,_efdf =_bcba .Bitmap .GetByte (_bda -_bcba .Bitmap .RowStride +1);if _efdf !=nil {return _bde .Wrap (_efdf ,_baad ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0031");};_dca |=int (_aa )<<5;};};for _geff :=0; -_geff < _ffd ;_geff ++{if _bcba ._ddge {_abg =_bcba .overrideAtTemplate1 (_eba ,_bcfa +_geff ,_eeef ,int (_aeb ),_geff );_bcba ._ead .SetIndex (int32 (_abg ));}else {_bcba ._ead .SetIndex (int32 (_eba ));};_fbgc ,_efdf =_bcba ._ace .DecodeBit (_bcba ._ead ); -if _efdf !=nil {return _bde .Wrap (_efdf ,_baad ,"");};_aeb |=byte (_fbgc )<>_gdcc )&0x8)|((_dca >>_gdcc )&0x200);};if _cdf :=_bcba .Bitmap .SetByte (_aca ,_aeb );_cdf !=nil {return _bde .Wrap (_cdf ,_baad ,""); -};_aca ++;_bda ++;};return nil ;};func (_bfbff *PatternDictionary )computeSegmentDataStructure ()error {_bfbff .DataOffset =_bfbff ._abegf .AbsolutePosition ();_bfbff .DataHeaderLength =_bfbff .DataOffset -_bfbff .DataHeaderOffset ;_bfbff .DataLength =int64 (_bfbff ._abegf .AbsoluteLength ())-_bfbff .DataHeaderLength ; -return nil ;};func (_edgd *HalftoneRegion )computeX (_bbf ,_dgaaa int )int {return _edgd .shiftAndFill (int (_edgd .HGridX )+_bbf *int (_edgd .HRegionY )+_dgaaa *int (_edgd .HRegionX ));};func (_ccbb *TextRegion )decodeRI ()(int64 ,error ){if !_ccbb .UseRefinement {return 0,nil ; -};if _ccbb .IsHuffmanEncoded {_agdd ,_fcaa :=_ccbb ._dcbba .ReadBit ();return int64 (_agdd ),_fcaa ;};_babfc ,_aebce :=_ccbb ._daa .DecodeInt (_ccbb ._ceb );return int64 (_babfc ),_aebce ;};func (_fbg *GenericRegion )decodeSLTP ()(int ,error ){switch _fbg .GBTemplate {case 0:_fbg ._ead .SetIndex (0x9B25); -case 1:_fbg ._ead .SetIndex (0x795);case 2:_fbg ._ead .SetIndex (0xE5);case 3:_fbg ._ead .SetIndex (0x195);};return _fbg ._ace .DecodeBit (_fbg ._ead );};func (_gga *GenericRegion )Encode (w _d .BinaryWriter )(_bagf int ,_begd error ){const _gbd ="G\u0065n\u0065\u0072\u0069\u0063\u0052\u0065\u0067\u0069o\u006e\u002e\u0045\u006eco\u0064\u0065"; -if _gga .Bitmap ==nil {return 0,_bde .Error (_gbd ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};_gdf ,_begd :=_gga .RegionSegment .Encode (w );if _begd !=nil {return 0,_bde .Wrap (_begd ,_gbd ,"\u0052\u0065\u0067\u0069\u006f\u006e\u0053\u0065\u0067\u006d\u0065\u006e\u0074"); -};_bagf +=_gdf ;if _begd =w .SkipBits (4);_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"\u0073k\u0069p\u0020\u0072\u0065\u0073\u0065r\u0076\u0065d\u0020\u0062\u0069\u0074\u0073");};var _efde int ;if _gga .IsTPGDon {_efde =1;};if _begd =w .WriteBit (_efde ); -_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"\u0074\u0070\u0067\u0064\u006f\u006e");};_efde =0;if _begd =w .WriteBit (int (_gga .GBTemplate >>1)&0x01);_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"f\u0069r\u0073\u0074\u0020\u0067\u0062\u0074\u0065\u006dp\u006c\u0061\u0074\u0065 b\u0069\u0074"); -};if _begd =w .WriteBit (int (_gga .GBTemplate )&0x01);_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"s\u0065\u0063\u006f\u006ed \u0067b\u0074\u0065\u006d\u0070\u006ca\u0074\u0065\u0020\u0062\u0069\u0074");};if _gga .UseMMR {_efde =1;};if _begd =w .WriteBit (_efde ); -_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"u\u0073\u0065\u0020\u004d\u004d\u0052\u0020\u0062\u0069\u0074");};_bagf ++;if _gdf ,_begd =_gga .writeGBAtPixels (w );_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"");};_bagf +=_gdf ;_cde :=_cad .New (); -if _begd =_cde .EncodeBitmap (_gga .Bitmap ,_gga .IsTPGDon );_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"");};_cde .Final ();var _cadd int64 ;if _cadd ,_begd =_cde .WriteTo (w );_begd !=nil {return _bagf ,_bde .Wrap (_begd ,_gbd ,"");};_bagf +=int (_cadd ); -return _bagf ,nil ;};func (_egcb *TextRegion )encodeSymbols (_agaff _d .BinaryWriter )(_fgdf int ,_gfebf error ){const _ebdb ="\u0065\u006e\u0063\u006f\u0064\u0065\u0053\u0079\u006d\u0062\u006f\u006c\u0073";_cafb :=make ([]byte ,4);_f .BigEndian .PutUint32 (_cafb ,_egcb .NumberOfSymbols ); -if _fgdf ,_gfebf =_agaff .Write (_cafb );_gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,"\u004e\u0075\u006dbe\u0072\u004f\u0066\u0053\u0079\u006d\u0062\u006f\u006c\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0073");};_bbacd ,_gfebf :=_gc .NewClassedPoints (_egcb ._eacc ,_egcb ._bfdf ); -if _gfebf !=nil {return 0,_bde .Wrap (_gfebf ,_ebdb ,"");};var _cgcf ,_dcgg int ;_caca :=_cad .New ();_caca .Init ();if _gfebf =_caca .EncodeInteger (_cad .IADT ,0);_gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,"\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0020\u0044\u0054"); -};_cacg ,_gfebf :=_bbacd .GroupByY ();if _gfebf !=nil {return 0,_bde .Wrap (_gfebf ,_ebdb ,"");};for _ ,_ggaf :=range _cacg {_badg :=int (_ggaf .YAtIndex (0));_eaab :=_badg -_cgcf ;if _gfebf =_caca .EncodeInteger (_cad .IADT ,_eaab );_gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,""); -};var _dfce int ;for _gacb ,_dbbe :=range _ggaf .IntSlice {switch _gacb {case 0:_aba :=int (_ggaf .XAtIndex (_gacb ))-_dcgg ;if _gfebf =_caca .EncodeInteger (_cad .IAFS ,_aba );_gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,"");};_dcgg +=_aba ; -_dfce =_dcgg ;default:_gcfg :=int (_ggaf .XAtIndex (_gacb ))-_dfce ;if _gfebf =_caca .EncodeInteger (_cad .IADS ,_gcfg );_gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,"");};_dfce +=_gcfg ;};_bfafe ,_fdab :=_egcb ._adgg .Get (_dbbe );if _fdab !=nil {return _fgdf ,_bde .Wrap (_fdab ,_ebdb ,""); -};_faabd ,_eegd :=_egcb ._bgd [_bfafe ];if !_eegd {_faabd ,_eegd =_egcb ._ddef [_bfafe ];if !_eegd {return _fgdf ,_bde .Errorf (_ebdb ,"\u0053\u0079\u006d\u0062\u006f\u006c:\u0020\u0027\u0025d\u0027\u0020\u0069s\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064 \u0069\u006e\u0020\u0067\u006cob\u0061\u006c\u0020\u0061\u006e\u0064\u0020\u006c\u006f\u0063\u0061\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0020\u006d\u0061\u0070",_bfafe ); -};};if _fdab =_caca .EncodeIAID (_egcb ._aedg ,_faabd );_fdab !=nil {return _fgdf ,_bde .Wrap (_fdab ,_ebdb ,"");};};if _gfebf =_caca .EncodeOOB (_cad .IADS );_gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,"");};};_caca .Final ();_dgbb ,_gfebf :=_caca .WriteTo (_agaff ); -if _gfebf !=nil {return _fgdf ,_bde .Wrap (_gfebf ,_ebdb ,"");};_fgdf +=int (_dgbb );return _fgdf ,nil ;};type GenericRefinementRegion struct{_cg templater ;_cb templater ;_cgb *_d .Reader ;_cbc *Header ;RegionInfo *RegionSegment ;IsTPGROn bool ;TemplateID int8 ; -Template templater ;GrAtX []int8 ;GrAtY []int8 ;RegionBitmap *_gc .Bitmap ;ReferenceBitmap *_gc .Bitmap ;ReferenceDX int32 ;ReferenceDY int32 ;_bea *_ge .Decoder ;_a *_ge .DecoderStats ;_df bool ;_gfde []bool ;};func (_bdcde *RegionSegment )parseHeader ()error {const _acec ="p\u0061\u0072\u0073\u0065\u0048\u0065\u0061\u0064\u0065\u0072"; -_gd .Log .Trace ("\u005b\u0052\u0045\u0047I\u004f\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002dH\u0045A\u0044\u0045\u0052\u005d\u0020\u0042\u0065g\u0069\u006e");defer func (){_gd .Log .Trace ("\u005b\u0052\u0045G\u0049\u004f\u004e\u005d[\u0050\u0041\u0052\u0053\u0045\u002d\u0048E\u0041\u0044\u0045\u0052\u005d\u0020\u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); -}();_dadd ,_def :=_bdcde ._fggf .ReadBits (32);if _def !=nil {return _bde .Wrap (_def ,_acec ,"\u0077\u0069\u0064t\u0068");};_bdcde .BitmapWidth =uint32 (_dadd &_b .MaxUint32 );_dadd ,_def =_bdcde ._fggf .ReadBits (32);if _def !=nil {return _bde .Wrap (_def ,_acec ,"\u0068\u0065\u0069\u0067\u0068\u0074"); -};_bdcde .BitmapHeight =uint32 (_dadd &_b .MaxUint32 );_dadd ,_def =_bdcde ._fggf .ReadBits (32);if _def !=nil {return _bde .Wrap (_def ,_acec ,"\u0078\u0020\u006c\u006f\u0063\u0061\u0074\u0069\u006f\u006e");};_bdcde .XLocation =uint32 (_dadd &_b .MaxUint32 ); -_dadd ,_def =_bdcde ._fggf .ReadBits (32);if _def !=nil {return _bde .Wrap (_def ,_acec ,"\u0079\u0020\u006c\u006f\u0063\u0061\u0074\u0069\u006f\u006e");};_bdcde .YLocation =uint32 (_dadd &_b .MaxUint32 );if _ ,_def =_bdcde ._fggf .ReadBits (5);_def !=nil {return _bde .Wrap (_def ,_acec ,"\u0064i\u0072\u0079\u0020\u0072\u0065\u0061d"); -};if _def =_bdcde .readCombinationOperator ();_def !=nil {return _bde .Wrap (_def ,_acec ,"c\u006fm\u0062\u0069\u006e\u0061\u0074\u0069\u006f\u006e \u006f\u0070\u0065\u0072at\u006f\u0072");};return nil ;};func (_aga *GenericRefinementRegion )decodeTemplate (_afgc ,_bdg ,_fbe ,_bcd ,_gec ,_afc ,_fef ,_ffe ,_eaa ,_dgf int ,_bcad templater )(_baf error ){var (_eafd ,_dgaf ,_gda ,_age ,_bdb int16 ; -_dgfa ,_cf ,_cgf ,_efca int ;_bbg byte ;);if _eaa >=1&&(_eaa -1)< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf -_bcd );if _baf !=nil {return ;};_dgfa =int (_bbg );};if _eaa >=0&&(_eaa )< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf ); -if _baf !=nil {return ;};_cf =int (_bbg );};if _eaa >=-1&&(_eaa +1)< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf +_bcd );if _baf !=nil {return ;};_cgf =int (_bbg );};_dgf ++;if _afgc >=1{_bbg ,_baf =_aga .RegionBitmap .GetByte (_ffe -_fbe ); -if _baf !=nil {return ;};_efca =int (_bbg );};_ffe ++;_efdc :=_aga .ReferenceDX %8;_gafa :=6+_efdc ;_dgcb :=_dgf %_bcd ;if _gafa >=0{if _gafa < 8{_eafd =int16 (_dgfa >>uint (_gafa ))&0x07;};if _gafa < 8{_dgaf =int16 (_cf >>uint (_gafa ))&0x07;};if _gafa < 8{_gda =int16 (_cgf >>uint (_gafa ))&0x07; -};if _gafa ==6&&_dgcb > 1{if _eaa >=1&&(_eaa -1)< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf -_bcd -2);if _baf !=nil {return _baf ;};_eafd |=int16 (_bbg <<2)&0x04;};if _eaa >=0&&_eaa < _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf -2); -if _baf !=nil {return _baf ;};_dgaf |=int16 (_bbg <<2)&0x04;};if _eaa >=-1&&_eaa +1< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf +_bcd -2);if _baf !=nil {return _baf ;};_gda |=int16 (_bbg <<2)&0x04;};};if _gafa ==0{_dgfa =0; -_cf =0;_cgf =0;if _dgcb < _bcd -1{if _eaa >=1&&_eaa -1< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf -_bcd );if _baf !=nil {return _baf ;};_dgfa =int (_bbg );};if _eaa >=0&&_eaa < _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf ); -if _baf !=nil {return _baf ;};_cf =int (_bbg );};if _eaa >=-1&&_eaa +1< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf +_bcd );if _baf !=nil {return _baf ;};_cgf =int (_bbg );};};_dgf ++;};}else {_eafd =int16 (_dgfa <<1)&0x07; -_dgaf =int16 (_cf <<1)&0x07;_gda =int16 (_cgf <<1)&0x07;_dgfa =0;_cf =0;_cgf =0;if _dgcb < _bcd -1{if _eaa >=1&&_eaa -1< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf -_bcd );if _baf !=nil {return _baf ;};_dgfa =int (_bbg ); -};if _eaa >=0&&_eaa < _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf );if _baf !=nil {return _baf ;};_cf =int (_bbg );};if _eaa >=-1&&_eaa +1< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf +_bcd ); -if _baf !=nil {return _baf ;};_cgf =int (_bbg );};_dgf ++;};_eafd |=int16 ((_dgfa >>7)&0x07);_dgaf |=int16 ((_cf >>7)&0x07);_gda |=int16 ((_cgf >>7)&0x07);};_age =int16 (_efca >>6);_bdb =0;_bgc :=(2-_efdc )%8;_dgfa <<=uint (_bgc );_cf <<=uint (_bgc );_cgf <<=uint (_bgc ); -_efca <<=2;var _gfdg int ;for _edc :=0;_edc < _bdg ;_edc ++{_cbcf :=_edc &0x07;_ab :=_bcad .form (_eafd ,_dgaf ,_gda ,_age ,_bdb );if _aga ._df {_bbg ,_baf =_aga .RegionBitmap .GetByte (_aga .RegionBitmap .GetByteIndex (_edc ,_afgc ));if _baf !=nil {return _baf ; -};_aga ._a .SetIndex (int32 (_aga .overrideAtTemplate0 (int (_ab ),_edc ,_afgc ,int (_bbg ),_cbcf )));}else {_aga ._a .SetIndex (int32 (_ab ));};_gfdg ,_baf =_aga ._bea .DecodeBit (_aga ._a );if _baf !=nil {return _baf ;};if _baf =_aga .RegionBitmap .SetPixel (_edc ,_afgc ,byte (_gfdg )); -_baf !=nil {return _baf ;};_eafd =((_eafd <<1)|0x01&int16 (_dgfa >>7))&0x07;_dgaf =((_dgaf <<1)|0x01&int16 (_cf >>7))&0x07;_gda =((_gda <<1)|0x01&int16 (_cgf >>7))&0x07;_age =((_age <<1)|0x01&int16 (_efca >>7))&0x07;_bdb =int16 (_gfdg );if (_edc -int (_aga .ReferenceDX ))%8==5{_dgfa =0; -_cf =0;_cgf =0;if ((_edc -int (_aga .ReferenceDX ))/8)+1< _aga .ReferenceBitmap .RowStride {if _eaa >=1&&(_eaa -1)< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf -_bcd );if _baf !=nil {return _baf ;};_dgfa =int (_bbg ); -};if _eaa >=0&&_eaa < _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf );if _baf !=nil {return _baf ;};_cf =int (_bbg );};if _eaa >=-1&&(_eaa +1)< _aga .ReferenceBitmap .Height {_bbg ,_baf =_aga .ReferenceBitmap .GetByte (_dgf +_bcd ); -if _baf !=nil {return _baf ;};_cgf =int (_bbg );};};_dgf ++;}else {_dgfa <<=1;_cf <<=1;_cgf <<=1;};if _cbcf ==5&&_afgc >=1{if ((_edc >>3)+1)>=_aga .RegionBitmap .RowStride {_efca =0;}else {_bbg ,_baf =_aga .RegionBitmap .GetByte (_ffe -_fbe );if _baf !=nil {return _baf ; -};_efca =int (_bbg );};_ffe ++;}else {_efca <<=1;};};return nil ;};func (_dbab *TextRegion )getSymbols ()error {if _dbab .Header .RTSegments !=nil {return _dbab .initSymbols ();};return nil ;};func NewGenericRegion (r *_d .Reader )*GenericRegion {return &GenericRegion {RegionSegment :NewRegionSegment (r ),_cbce :r }; -};func (_cdac *Header )writeReferredToSegments (_abcc _d .BinaryWriter )(_ceeg int ,_fedc error ){const _bffec ="\u0077\u0072\u0069te\u0052\u0065\u0066\u0065\u0072\u0072\u0065\u0064\u0054\u006f\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0073";var (_dbg uint16 ; -_bfbf uint32 ;);_agb :=_cdac .referenceSize ();_cfbe :=1;_cadc :=make ([]byte ,_agb );for _ ,_cgfa :=range _cdac .RTSNumbers {switch _agb {case 4:_bfbf =uint32 (_cgfa );_f .BigEndian .PutUint32 (_cadc ,_bfbf );_cfbe ,_fedc =_abcc .Write (_cadc );if _fedc !=nil {return 0,_bde .Wrap (_fedc ,_bffec ,"u\u0069\u006e\u0074\u0033\u0032\u0020\u0073\u0069\u007a\u0065"); -};case 2:_dbg =uint16 (_cgfa );_f .BigEndian .PutUint16 (_cadc ,_dbg );_cfbe ,_fedc =_abcc .Write (_cadc );if _fedc !=nil {return 0,_bde .Wrap (_fedc ,_bffec ,"\u0075\u0069\u006e\u0074\u0031\u0036");};default:if _fedc =_abcc .WriteByte (byte (_cgfa )); -_fedc !=nil {return 0,_bde .Wrap (_fedc ,_bffec ,"\u0075\u0069\u006et\u0038");};};_ceeg +=_cfbe ;};return _ceeg ,nil ;};func (_bfgb *TextRegion )decodeDfs ()(int64 ,error ){if _bfgb .IsHuffmanEncoded {if _bfgb .SbHuffFS ==3{if _bfgb ._adaca ==nil {var _cddcd error ; -_bfgb ._adaca ,_cddcd =_bfgb .getUserTable (0);if _cddcd !=nil {return 0,_cddcd ;};};return _bfgb ._adaca .Decode (_bfgb ._dcbba );};_bcade ,_gcca :=_fc .GetStandardTable (6+int (_bfgb .SbHuffFS ));if _gcca !=nil {return 0,_gcca ;};return _bcade .Decode (_bfgb ._dcbba ); -};_bec ,_aeegf :=_bfgb ._daa .DecodeInt (_bfgb ._effc );if _aeegf !=nil {return 0,_aeegf ;};return int64 (_bec ),nil ;};func (_ffg *Header )pageSize ()uint {if _ffg .PageAssociation <=255{return 1;};return 4;};var _ templater =&template0 {};func (_gbae *TextRegion )readUseRefinement ()error {if !_gbae .UseRefinement ||_gbae .SbrTemplate !=0{return nil ; -};var (_cbbdc byte ;_afaf error ;);_gbae .SbrATX =make ([]int8 ,2);_gbae .SbrATY =make ([]int8 ,2);_cbbdc ,_afaf =_gbae ._dcbba .ReadByte ();if _afaf !=nil {return _afaf ;};_gbae .SbrATX [0]=int8 (_cbbdc );_cbbdc ,_afaf =_gbae ._dcbba .ReadByte ();if _afaf !=nil {return _afaf ; -};_gbae .SbrATY [0]=int8 (_cbbdc );_cbbdc ,_afaf =_gbae ._dcbba .ReadByte ();if _afaf !=nil {return _afaf ;};_gbae .SbrATX [1]=int8 (_cbbdc );_cbbdc ,_afaf =_gbae ._dcbba .ReadByte ();if _afaf !=nil {return _afaf ;};_gbae .SbrATY [1]=int8 (_cbbdc );return nil ; -};func (_cffc *PageInformationSegment )parseHeader ()(_egad error ){_gd .Log .Trace ("\u005b\u0050\u0061\u0067\u0065I\u006e\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0053\u0065\u0067m\u0065\u006e\u0074\u005d\u0020\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0048\u0065\u0061\u0064\u0065\u0072\u002e\u002e\u002e"); -defer func (){var _fgbg ="[\u0050\u0061\u0067\u0065\u0049\u006e\u0066\u006f\u0072m\u0061\u0074\u0069\u006f\u006e\u0053\u0065gm\u0065\u006e\u0074\u005d \u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0048\u0065ad\u0065\u0072 \u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064"; -if _egad !=nil {_fgbg +="\u0020\u0077\u0069t\u0068\u0020\u0065\u0072\u0072\u006f\u0072\u0020"+_egad .Error ();}else {_fgbg +="\u0020\u0073\u0075\u0063\u0063\u0065\u0073\u0073\u0066\u0075\u006c\u006c\u0079";};_gd .Log .Trace (_fgbg );}();if _egad =_cffc .readWidthAndHeight (); -_egad !=nil {return _egad ;};if _egad =_cffc .readResolution ();_egad !=nil {return _egad ;};_ ,_egad =_cffc ._acea .ReadBit ();if _egad !=nil {return _egad ;};if _egad =_cffc .readCombinationOperatorOverrideAllowed ();_egad !=nil {return _egad ;};if _egad =_cffc .readRequiresAuxiliaryBuffer (); -_egad !=nil {return _egad ;};if _egad =_cffc .readCombinationOperator ();_egad !=nil {return _egad ;};if _egad =_cffc .readDefaultPixelValue ();_egad !=nil {return _egad ;};if _egad =_cffc .readContainsRefinement ();_egad !=nil {return _egad ;};if _egad =_cffc .readIsLossless (); -_egad !=nil {return _egad ;};if _egad =_cffc .readIsStriped ();_egad !=nil {return _egad ;};if _egad =_cffc .readMaxStripeSize ();_egad !=nil {return _egad ;};if _egad =_cffc .checkInput ();_egad !=nil {return _egad ;};_gd .Log .Trace ("\u0025\u0073",_cffc ); -return nil ;};func (_acbed *TableSegment )HtOOB ()int32 {return _acbed ._cbade };func (_gcag *RegionSegment )Size ()int {return 17};func (_bgcf *TextRegion )GetRegionBitmap ()(*_gc .Bitmap ,error ){if _bgcf .RegionBitmap !=nil {return _bgcf .RegionBitmap ,nil ; -};if !_bgcf .IsHuffmanEncoded {if _ccab :=_bgcf .setCodingStatistics ();_ccab !=nil {return nil ,_ccab ;};};if _geadd :=_bgcf .createRegionBitmap ();_geadd !=nil {return nil ,_geadd ;};if _fbgad :=_bgcf .decodeSymbolInstances ();_fbgad !=nil {return nil ,_fbgad ; -};return _bgcf .RegionBitmap ,nil ;};func (_caf *GenericRegion )Init (h *Header ,r *_d .Reader )error {_caf .RegionSegment =NewRegionSegment (r );_caf ._cbce =r ;return _caf .parseHeader ();};func (_gge *GenericRegion )getPixel (_dbe ,_aegg int )int8 {if _dbe < 0||_dbe >=_gge .Bitmap .Width {return 0; -};if _aegg < 0||_aegg >=_gge .Bitmap .Height {return 0;};if _gge .Bitmap .GetPixel (_dbe ,_aegg ){return 1;};return 0;};func (_cc *GenericRefinementRegion )decodeTypicalPredictedLine (_eg ,_dcg ,_af ,_cd ,_ef ,_gad int )error {_ac :=_eg -int (_cc .ReferenceDY ); -_ed :=_cc .ReferenceBitmap .GetByteIndex (0,_ac );_deb :=_cc .RegionBitmap .GetByteIndex (0,_eg );var _beg error ;switch _cc .TemplateID {case 0:_beg =_cc .decodeTypicalPredictedLineTemplate0 (_eg ,_dcg ,_af ,_cd ,_ef ,_gad ,_deb ,_ac ,_ed );case 1:_beg =_cc .decodeTypicalPredictedLineTemplate1 (_eg ,_dcg ,_af ,_cd ,_ef ,_gad ,_deb ,_ac ,_ed ); -};return _beg ;};func (_fga *GenericRefinementRegion )parseHeader ()(_fbf error ){_gd .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0070\u0061\u0072s\u0069\u006e\u0067\u0020\u0048e\u0061\u0064e\u0072\u002e\u002e\u002e"); -_efb :=_c .Now ();defer func (){if _fbf ==nil {_gd .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045G\u0049\u004f\u004e\u005d\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066\u0069\u006e\u0069\u0073\u0068id\u0020\u0069\u006e\u003a\u0020\u0025\u0064\u0020\u006e\u0073",_c .Since (_efb ).Nanoseconds ()); -}else {_gd .Log .Trace ("\u005b\u0047E\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0073",_fbf ); -};}();if _fbf =_fga .RegionInfo .parseHeader ();_fbf !=nil {return _fbf ;};_ ,_fbf =_fga ._cgb .ReadBits (6);if _fbf !=nil {return _fbf ;};_fga .IsTPGROn ,_fbf =_fga ._cgb .ReadBool ();if _fbf !=nil {return _fbf ;};var _bga int ;_bga ,_fbf =_fga ._cgb .ReadBit (); -if _fbf !=nil {return _fbf ;};_fga .TemplateID =int8 (_bga );switch _fga .TemplateID {case 0:_fga .Template =_fga ._cg ;if _fbf =_fga .readAtPixels ();_fbf !=nil {return ;};case 1:_fga .Template =_fga ._cb ;};return nil ;};type Type int ;func (_acfc *TextRegion )setParameters (_gbfg *_ge .Decoder ,_cafa ,_bebbd bool ,_adgc ,_bagc uint32 ,_cecf uint32 ,_debb int8 ,_gfca uint32 ,_edfdd int8 ,_egdb _gc .CombinationOperator ,_dffd int8 ,_cafg int16 ,_cdeg ,_ddbf ,_gdda ,_bdfg ,_eecb ,_dabd ,_fegg ,_aefg ,_daeb ,_cgacd int8 ,_adcc ,_dcedd []int8 ,_cfffa []*_gc .Bitmap ,_ddfd int8 ){_acfc ._daa =_gbfg ; -_acfc .IsHuffmanEncoded =_cafa ;_acfc .UseRefinement =_bebbd ;_acfc .RegionInfo .BitmapWidth =_adgc ;_acfc .RegionInfo .BitmapHeight =_bagc ;_acfc .NumberOfSymbolInstances =_cecf ;_acfc .SbStrips =_debb ;_acfc .NumberOfSymbols =_gfca ;_acfc .DefaultPixel =_edfdd ; -_acfc .CombinationOperator =_egdb ;_acfc .IsTransposed =_dffd ;_acfc .ReferenceCorner =_cafg ;_acfc .SbDsOffset =_cdeg ;_acfc .SbHuffFS =_ddbf ;_acfc .SbHuffDS =_gdda ;_acfc .SbHuffDT =_bdfg ;_acfc .SbHuffRDWidth =_eecb ;_acfc .SbHuffRDHeight =_dabd ;_acfc .SbHuffRSize =_daeb ; -_acfc .SbHuffRDX =_fegg ;_acfc .SbHuffRDY =_aefg ;_acfc .SbrTemplate =_cgacd ;_acfc .SbrATX =_adcc ;_acfc .SbrATY =_dcedd ;_acfc .Symbols =_cfffa ;_acfc ._ffaeb =_ddfd ;};func (_gfebe *SymbolDictionary )Encode (w _d .BinaryWriter )(_fbad int ,_agfe error ){const _acbc ="\u0053\u0079\u006dbo\u006c\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0045\u006e\u0063\u006f\u0064\u0065"; -if _gfebe ==nil {return 0,_bde .Error (_acbc ,"\u0073\u0079m\u0062\u006f\u006c\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066in\u0065\u0064");};if _fbad ,_agfe =_gfebe .encodeFlags (w ); -_agfe !=nil {return _fbad ,_bde .Wrap (_agfe ,_acbc ,"");};_bbbc ,_agfe :=_gfebe .encodeATFlags (w );if _agfe !=nil {return _fbad ,_bde .Wrap (_agfe ,_acbc ,"");};_fbad +=_bbbc ;if _bbbc ,_agfe =_gfebe .encodeRefinementATFlags (w );_agfe !=nil {return _fbad ,_bde .Wrap (_agfe ,_acbc ,""); -};_fbad +=_bbbc ;if _bbbc ,_agfe =_gfebe .encodeNumSyms (w );_agfe !=nil {return _fbad ,_bde .Wrap (_agfe ,_acbc ,"");};_fbad +=_bbbc ;if _bbbc ,_agfe =_gfebe .encodeSymbols (w );_agfe !=nil {return _fbad ,_bde .Wrap (_agfe ,_acbc ,"");};_fbad +=_bbbc ; -return _fbad ,nil ;};func (_gfda *PageInformationSegment )String ()string {_gbcb :=&_bd .Builder {};_gbcb .WriteString ("\u000a\u005b\u0050\u0041G\u0045\u002d\u0049\u004e\u0046\u004f\u0052\u004d\u0041\u0054I\u004fN\u002d\u0053\u0045\u0047\u004d\u0045\u004eT\u005d\u000a"); -_gbcb .WriteString (_gg .Sprintf ("\u0009\u002d \u0042\u004d\u0048e\u0069\u0067\u0068\u0074\u003a\u0020\u0025\u0064\u000a",_gfda .PageBMHeight ));_gbcb .WriteString (_gg .Sprintf ("\u0009-\u0020B\u004d\u0057\u0069\u0064\u0074\u0068\u003a\u0020\u0025\u0064\u000a",_gfda .PageBMWidth )); -_gbcb .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0052es\u006f\u006c\u0075\u0074\u0069\u006f\u006e\u0058\u003a\u0020\u0025\u0064\u000a",_gfda .ResolutionX ));_gbcb .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0052es\u006f\u006c\u0075\u0074\u0069\u006f\u006e\u0059\u003a\u0020\u0025\u0064\u000a",_gfda .ResolutionY )); -_gbcb .WriteString (_gg .Sprintf ("\t\u002d\u0020\u0043\u006f\u006d\u0062i\u006e\u0061\u0074\u0069\u006f\u006e\u004f\u0070\u0065r\u0061\u0074\u006fr\u003a \u0025\u0073\u000a",_gfda ._fgad ));_gbcb .WriteString (_gg .Sprintf ("\t\u002d\u0020\u0043\u006f\u006d\u0062i\u006e\u0061\u0074\u0069\u006f\u006eO\u0070\u0065\u0072\u0061\u0074\u006f\u0072O\u0076\u0065\u0072\u0072\u0069\u0064\u0065\u003a\u0020\u0025v\u000a",_gfda ._faee )); -_gbcb .WriteString (_gg .Sprintf ("\u0009-\u0020I\u0073\u004c\u006f\u0073\u0073l\u0065\u0073s\u003a\u0020\u0025\u0076\u000a",_gfda .IsLossless ));_gbcb .WriteString (_gg .Sprintf ("\u0009\u002d\u0020R\u0065\u0071\u0075\u0069r\u0065\u0073\u0041\u0075\u0078\u0069\u006ci\u0061\u0072\u0079\u0042\u0075\u0066\u0066\u0065\u0072\u003a\u0020\u0025\u0076\u000a",_gfda ._dec )); -_gbcb .WriteString (_gg .Sprintf ("\u0009\u002d\u0020M\u0069\u0067\u0068\u0074C\u006f\u006e\u0074\u0061\u0069\u006e\u0052e\u0066\u0069\u006e\u0065\u006d\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0076\u000a",_gfda ._caab ));_gbcb .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0049\u0073\u0053\u0074\u0072\u0069\u0070\u0065\u0064:\u0020\u0025\u0076\u000a",_gfda .IsStripe )); -_gbcb .WriteString (_gg .Sprintf ("\t\u002d\u0020\u004d\u0061xS\u0074r\u0069\u0070\u0065\u0053\u0069z\u0065\u003a\u0020\u0025\u0076\u000a",_gfda .MaxStripeSize ));return _gbcb .String ();};func (_feba *TextRegion )checkInput ()error {const _gbbe ="\u0063\u0068\u0065\u0063\u006b\u0049\u006e\u0070\u0075\u0074"; -if !_feba .UseRefinement {if _feba .SbrTemplate !=0{_gd .Log .Debug ("\u0053\u0062\u0072Te\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030");_feba .SbrTemplate =0;};};if _feba .SbHuffFS ==2||_feba .SbHuffRDWidth ==2||_feba .SbHuffRDHeight ==2||_feba .SbHuffRDX ==2||_feba .SbHuffRDY ==2{return _bde .Error (_gbbe ,"h\u0075\u0066\u0066\u006d\u0061\u006e \u0066\u006c\u0061\u0067\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064"); -};if !_feba .UseRefinement {if _feba .SbHuffRSize !=0{_gd .Log .Debug ("\u0053\u0062\u0048uf\u0066\u0052\u0053\u0069\u007a\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030");_feba .SbHuffRSize =0;};if _feba .SbHuffRDY !=0{_gd .Log .Debug ("S\u0062\u0048\u0075\u0066fR\u0044Y\u0020\u0073\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u0030"); -_feba .SbHuffRDY =0;};if _feba .SbHuffRDX !=0{_gd .Log .Debug ("S\u0062\u0048\u0075\u0066fR\u0044X\u0020\u0073\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u0030");_feba .SbHuffRDX =0;};if _feba .SbHuffRDWidth !=0{_gd .Log .Debug ("\u0053b\u0048\u0075\u0066\u0066R\u0044\u0057\u0069\u0064\u0074h\u0020s\u0068o\u0075\u006c\u0064\u0020\u0062\u0065\u00200"); -_feba .SbHuffRDWidth =0;};if _feba .SbHuffRDHeight !=0{_gd .Log .Debug ("\u0053\u0062\u0048\u0075\u0066\u0066\u0052\u0044\u0048\u0065\u0069g\u0068\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020b\u0065\u0020\u0030");_feba .SbHuffRDHeight =0;};};return nil ; -};func (_eebc *TextRegion )blit (_faec *_gc .Bitmap ,_cfaee int64 )error {if _eebc .IsTransposed ==0&&(_eebc .ReferenceCorner ==2||_eebc .ReferenceCorner ==3){_eebc ._adad +=int64 (_faec .Width -1);}else if _eebc .IsTransposed ==1&&(_eebc .ReferenceCorner ==0||_eebc .ReferenceCorner ==2){_eebc ._adad +=int64 (_faec .Height -1); -};_abed :=_eebc ._adad ;if _eebc .IsTransposed ==1{_abed ,_cfaee =_cfaee ,_abed ;};switch _eebc .ReferenceCorner {case 0:_cfaee -=int64 (_faec .Height -1);case 2:_cfaee -=int64 (_faec .Height -1);_abed -=int64 (_faec .Width -1);case 3:_abed -=int64 (_faec .Width -1); -};_gadb :=_gc .Blit (_faec ,_eebc .RegionBitmap ,int (_abed ),int (_cfaee ),_eebc .CombinationOperator );if _gadb !=nil {return _gadb ;};if _eebc .IsTransposed ==0&&(_eebc .ReferenceCorner ==0||_eebc .ReferenceCorner ==1){_eebc ._adad +=int64 (_faec .Width -1); -};if _eebc .IsTransposed ==1&&(_eebc .ReferenceCorner ==1||_eebc .ReferenceCorner ==3){_eebc ._adad +=int64 (_faec .Height -1);};return nil ;};func (_ggeg *SymbolDictionary )encodeNumSyms (_ffba _d .BinaryWriter )(_dgee int ,_eefd error ){const _bgbc ="\u0065\u006e\u0063\u006f\u0064\u0065\u004e\u0075\u006d\u0053\u0079\u006d\u0073"; -_dgae :=make ([]byte ,4);_f .BigEndian .PutUint32 (_dgae ,_ggeg .NumberOfExportedSymbols );if _dgee ,_eefd =_ffba .Write (_dgae );_eefd !=nil {return _dgee ,_bde .Wrap (_eefd ,_bgbc ,"\u0065\u0078p\u006f\u0072\u0074e\u0064\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0073"); -};_f .BigEndian .PutUint32 (_dgae ,_ggeg .NumberOfNewSymbols );_ddfab ,_eefd :=_ffba .Write (_dgae );if _eefd !=nil {return _dgee ,_bde .Wrap (_eefd ,_bgbc ,"n\u0065\u0077\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0073");};return _dgee +_ddfab ,nil ;}; -func (_gcbe *TextRegion )decodeIds ()(int64 ,error ){const _eecg ="\u0064e\u0063\u006f\u0064\u0065\u0049\u0064s";if _gcbe .IsHuffmanEncoded {if _gcbe .SbHuffDS ==3{if _gcbe ._efeb ==nil {_ggbbg :=0;if _gcbe .SbHuffFS ==3{_ggbbg ++;};var _bad error ;_gcbe ._efeb ,_bad =_gcbe .getUserTable (_ggbbg ); -if _bad !=nil {return 0,_bde .Wrap (_bad ,_eecg ,"");};};return _gcbe ._efeb .Decode (_gcbe ._dcbba );};_gbed ,_bbed :=_fc .GetStandardTable (8+int (_gcbe .SbHuffDS ));if _bbed !=nil {return 0,_bde .Wrap (_bbed ,_eecg ,"");};return _gbed .Decode (_gcbe ._dcbba ); -};_dbga ,_fadf :=_gcbe ._daa .DecodeInt (_gcbe ._ccgbe );if _fadf !=nil {return 0,_bde .Wrap (_fadf ,_eecg ,"\u0063\u0078\u0049\u0041\u0044\u0053");};return int64 (_dbga ),nil ;};func (_ggfg *SymbolDictionary )checkInput ()error {if _ggfg .SdHuffDecodeHeightSelection ==2{_gd .Log .Debug ("\u0053\u0079\u006d\u0062\u006fl\u0020\u0044\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0048\u0065\u0069\u0067\u0068\u0074\u0020\u0053e\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006e\u006f\u0074\u0020\u0070\u0065r\u006d\u0069\u0074\u0074\u0065\u0064",_ggfg .SdHuffDecodeHeightSelection ); -};if _ggfg .SdHuffDecodeWidthSelection ==2{_gd .Log .Debug ("\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0057\u0069\u0064t\u0068\u0020\u0053\u0065\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064\u0020\u0076\u0061l\u0075\u0065\u0020\u006e\u006f\u0074 \u0070\u0065r\u006d\u0069t\u0074e\u0064",_ggfg .SdHuffDecodeWidthSelection ); -};if _ggfg .IsHuffmanEncoded {if _ggfg .SdTemplate !=0{_gd .Log .Debug ("\u0053\u0044T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u003d\u0020\u0025\u0064\u0020\u0028\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e \u0030\u0029",_ggfg .SdTemplate ); -};if !_ggfg .UseRefinementAggregation {if !_ggfg .UseRefinementAggregation {if _ggfg ._acdbd {_gd .Log .Debug ("\u0049\u0073\u0043\u006f\u0064\u0069\u006e\u0067C\u006f\u006e\u0074ex\u0074\u0052\u0065\u0074\u0061\u0069n\u0065\u0064\u0020\u003d\u0020\u0074\u0072\u0075\u0065\u0020\u0028\u0073\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u0066\u0061\u006cs\u0065\u0029"); -_ggfg ._acdbd =false ;};if _ggfg ._cdcb {_gd .Log .Debug ("\u0069s\u0043\u006fd\u0069\u006e\u0067\u0043o\u006e\u0074\u0065x\u0074\u0055\u0073\u0065\u0064\u0020\u003d\u0020\u0074ru\u0065\u0020\u0028s\u0068\u006fu\u006c\u0064\u0020\u0062\u0065\u0020f\u0061\u006cs\u0065\u0029"); -_ggfg ._cdcb =false ;};};};}else {if _ggfg .SdHuffBMSizeSelection !=0{_gd .Log .Debug ("\u0053\u0064\u0048\u0075\u0066\u0066B\u004d\u0053\u0069\u007a\u0065\u0053\u0065\u006c\u0065\u0063\u0074\u0069\u006fn\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u0030"); -_ggfg .SdHuffBMSizeSelection =0;};if _ggfg .SdHuffDecodeWidthSelection !=0{_gd .Log .Debug ("\u0053\u0064\u0048\u0075\u0066\u0066\u0044\u0065\u0063\u006f\u0064\u0065\u0057\u0069\u0064\u0074\u0068\u0053\u0065\u006c\u0065\u0063\u0074\u0069o\u006e\u0020\u0073\u0068\u006fu\u006c\u0064 \u0062\u0065\u0020\u0030"); -_ggfg .SdHuffDecodeWidthSelection =0;};if _ggfg .SdHuffDecodeHeightSelection !=0{_gd .Log .Debug ("\u0053\u0064\u0048\u0075\u0066\u0066\u0044\u0065\u0063\u006f\u0064\u0065\u0048e\u0069\u0067\u0068\u0074\u0053\u0065l\u0065\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u0030"); -_ggfg .SdHuffDecodeHeightSelection =0;};};if !_ggfg .UseRefinementAggregation {if _ggfg .SdrTemplate !=0{_gd .Log .Debug ("\u0053\u0044\u0052\u0054\u0065\u006d\u0070\u006c\u0061\u0074e\u0020\u003d\u0020\u0025\u0064\u0020\u0028s\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030\u0029",_ggfg .SdrTemplate ); -_ggfg .SdrTemplate =0;};};if !_ggfg .IsHuffmanEncoded ||!_ggfg .UseRefinementAggregation {if _ggfg .SdHuffAggInstanceSelection {_gd .Log .Debug ("\u0053d\u0048\u0075f\u0066\u0041\u0067g\u0049\u006e\u0073\u0074\u0061\u006e\u0063e\u0053\u0065\u006c\u0065\u0063\u0074i\u006f\u006e\u0020\u003d\u0020\u0025\u0064\u0020\u0028\u0073\u0068o\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030\u0029",_ggfg .SdHuffAggInstanceSelection ); -};};return nil ;};func (_dbgb *SymbolDictionary )setAtPixels ()error {if _dbgb .IsHuffmanEncoded {return nil ;};_agba :=1;if _dbgb .SdTemplate ==0{_agba =4;};if _gbgg :=_dbgb .readAtPixels (_agba );_gbgg !=nil {return _gbgg ;};return nil ;};func (_dfgd *TextRegion )decodeDT ()(_ecfc int64 ,_bcgc error ){if _dfgd .IsHuffmanEncoded {if _dfgd .SbHuffDT ==3{_ecfc ,_bcgc =_dfgd ._aafc .Decode (_dfgd ._dcbba ); -if _bcgc !=nil {return 0,_bcgc ;};}else {var _fgafa _fc .Tabler ;_fgafa ,_bcgc =_fc .GetStandardTable (11+int (_dfgd .SbHuffDT ));if _bcgc !=nil {return 0,_bcgc ;};_ecfc ,_bcgc =_fgafa .Decode (_dfgd ._dcbba );if _bcgc !=nil {return 0,_bcgc ;};};}else {var _gbf int32 ; -_gbf ,_bcgc =_dfgd ._daa .DecodeInt (_dfgd ._ccfg );if _bcgc !=nil {return ;};_ecfc =int64 (_gbf );};_ecfc *=int64 (_dfgd .SbStrips );return _ecfc ,nil ;};func (_gafaa *Header )writeFlags (_cbbgf _d .BinaryWriter )(_cegfg error ){const _gfcf ="\u0048\u0065\u0061\u0064\u0065\u0072\u002e\u0077\u0072\u0069\u0074\u0065F\u006c\u0061\u0067\u0073"; -_ddgc :=byte (_gafaa .Type );if _cegfg =_cbbgf .WriteByte (_ddgc );_cegfg !=nil {return _bde .Wrap (_cegfg ,_gfcf ,"\u0077\u0072\u0069ti\u006e\u0067\u0020\u0073\u0065\u0067\u006d\u0065\u006et\u0020t\u0079p\u0065 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); -};if !_gafaa .RetainFlag &&!_gafaa .PageAssociationFieldSize {return nil ;};if _cegfg =_cbbgf .SkipBits (-8);_cegfg !=nil {return _bde .Wrap (_cegfg ,_gfcf ,"\u0073\u006bi\u0070\u0070\u0069\u006e\u0067\u0020\u0062\u0061\u0063\u006b\u0020\u0074\u0068\u0065\u0020\u0062\u0069\u0074\u0073\u0020\u0066\u0061il\u0065\u0064"); -};var _bage int ;if _gafaa .RetainFlag {_bage =1;};if _cegfg =_cbbgf .WriteBit (_bage );_cegfg !=nil {return _bde .Wrap (_cegfg ,_gfcf ,"\u0072\u0065\u0074\u0061in\u0020\u0072\u0065\u0074\u0061\u0069\u006e\u0020\u0066\u006c\u0061\u0067\u0073");};_bage =0; -if _gafaa .PageAssociationFieldSize {_bage =1;};if _cegfg =_cbbgf .WriteBit (_bage );_cegfg !=nil {return _bde .Wrap (_cegfg ,_gfcf ,"p\u0061\u0067\u0065\u0020as\u0073o\u0063\u0069\u0061\u0074\u0069o\u006e\u0020\u0066\u006c\u0061\u0067");};_cbbgf .FinishByte (); -return nil ;};func (_caag *SymbolDictionary )decodeHeightClassCollectiveBitmap (_ecfa int64 ,_eecf ,_bdaf uint32 )(*_gc .Bitmap ,error ){if _ecfa ==0{_bcedb :=_gc .New (int (_bdaf ),int (_eecf ));var (_dbgg byte ;_abec error ;);for _eged :=0;_eged < len (_bcedb .Data ); -_eged ++{_dbgg ,_abec =_caag ._cgad .ReadByte ();if _abec !=nil {return nil ,_abec ;};if _abec =_bcedb .SetByte (_eged ,_dbgg );_abec !=nil {return nil ,_abec ;};};return _bcedb ,nil ;};if _caag ._ceec ==nil {_caag ._ceec =NewGenericRegion (_caag ._cgad ); -};_caag ._ceec .setParameters (true ,_caag ._cgad .AbsolutePosition (),_ecfa ,_eecf ,_bdaf );_caga ,_cdcbb :=_caag ._ceec .GetRegionBitmap ();if _cdcbb !=nil {return nil ,_cdcbb ;};return _caga ,nil ;};func NewHeader (d Documenter ,r *_d .Reader ,offset int64 ,organizationType OrganizationType )(*Header ,error ){_ecf :=&Header {Reader :r }; -if _dgcf :=_ecf .parse (d ,r ,offset ,organizationType );_dgcf !=nil {return nil ,_bde .Wrap (_dgcf ,"\u004ee\u0077\u0048\u0065\u0061\u0064\u0065r","");};return _ecf ,nil ;};func (_bdag *TableSegment )HtPS ()int32 {return _bdag ._fcbd };func (_gefd *SymbolDictionary )decodeDifferenceWidth ()(int64 ,error ){if _gefd .IsHuffmanEncoded {switch _gefd .SdHuffDecodeWidthSelection {case 0:_debaf ,_fcba :=_fc .GetStandardTable (2); -if _fcba !=nil {return 0,_fcba ;};return _debaf .Decode (_gefd ._cgad );case 1:_bfeb ,_ebgga :=_fc .GetStandardTable (3);if _ebgga !=nil {return 0,_ebgga ;};return _bfeb .Decode (_gefd ._cgad );case 3:if _gefd ._cgee ==nil {var _abga int ;if _gefd .SdHuffDecodeHeightSelection ==3{_abga ++; -};_gaa ,_dfag :=_gefd .getUserTable (_abga );if _dfag !=nil {return 0,_dfag ;};_gefd ._cgee =_gaa ;};return _gefd ._cgee .Decode (_gefd ._cgad );};}else {_acfd ,_fbde :=_gefd ._efcac .DecodeInt (_gefd ._geffcb );if _fbde !=nil {return 0,_fbde ;};return int64 (_acfd ),nil ; -};return 0,nil ;};func (_fac *GenericRegion )decodeTemplate0b (_cfg ,_dbbc ,_bfae int ,_bgcb ,_cgd int )(_efg error ){const _gbca ="\u0064\u0065c\u006f\u0064\u0065T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0030\u0062";var (_ege ,_deag int ;_cega ,_ddf int ; -_edfb byte ;_bdba int ;);if _cfg >=1{_edfb ,_efg =_fac .Bitmap .GetByte (_cgd );if _efg !=nil {return _bde .Wrap (_efg ,_gbca ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_cega =int (_edfb );};if _cfg >=2{_edfb ,_efg =_fac .Bitmap .GetByte (_cgd -_fac .Bitmap .RowStride ); -if _efg !=nil {return _bde .Wrap (_efg ,_gbca ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00202");};_ddf =int (_edfb )<<6;};_ege =(_cega &0xf0)|(_ddf &0x3800);for _ecae :=0;_ecae < _bfae ;_ecae =_bdba {var (_bdc byte ;_baae int ;);_bdba =_ecae +8;if _abf :=_dbbc -_ecae ; -_abf > 8{_baae =8;}else {_baae =_abf ;};if _cfg > 0{_cega <<=8;if _bdba < _dbbc {_edfb ,_efg =_fac .Bitmap .GetByte (_cgd +1);if _efg !=nil {return _bde .Wrap (_efg ,_gbca ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0030");};_cega |=int (_edfb );};}; -if _cfg > 1{_ddf <<=8;if _bdba < _dbbc {_edfb ,_efg =_fac .Bitmap .GetByte (_cgd -_fac .Bitmap .RowStride +1);if _efg !=nil {return _bde .Wrap (_efg ,_gbca ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0031");};_ddf |=int (_edfb )<<6;};};for _bbc :=0;_bbc < _baae ; -_bbc ++{_cdb :=uint (7-_bbc );if _fac ._ddge {_deag =_fac .overrideAtTemplate0b (_ege ,_ecae +_bbc ,_cfg ,int (_bdc ),_bbc ,int (_cdb ));_fac ._ead .SetIndex (int32 (_deag ));}else {_fac ._ead .SetIndex (int32 (_ege ));};var _abd int ;_abd ,_efg =_fac ._ace .DecodeBit (_fac ._ead ); -if _efg !=nil {return _bde .Wrap (_efg ,_gbca ,"");};_bdc |=byte (_abd <<_cdb );_ege =((_ege &0x7bf7)<<1)|_abd |((_cega >>_cdb )&0x10)|((_ddf >>_cdb )&0x800);};if _ccdf :=_fac .Bitmap .SetByte (_bgcb ,_bdc );_ccdf !=nil {return _bde .Wrap (_ccdf ,_gbca ,""); -};_bgcb ++;_cgd ++;};return nil ;};func (_fgf *SymbolDictionary )decodeNewSymbols (_agd ,_cbaf uint32 ,_bede *_gc .Bitmap ,_bced ,_aded int32 )error {if _fgf ._gaea ==nil {_fgf ._gaea =_eefe (_fgf ._cgad ,nil );if _fgf ._efcac ==nil {var _fgde error ;_fgf ._efcac ,_fgde =_ge .New (_fgf ._cgad ); -if _fgde !=nil {return _fgde ;};};if _fgf ._dcbd ==nil {_fgf ._dcbd =_ge .NewStats (65536,1);};};_fgf ._gaea .setParameters (_fgf ._dcbd ,_fgf ._efcac ,_fgf .SdrTemplate ,_agd ,_cbaf ,_bede ,_bced ,_aded ,false ,_fgf .SdrATX ,_fgf .SdrATY );return _fgf .addSymbol (_fgf ._gaea ); -};func (_eeaea *TableSegment )HtHigh ()int32 {return _eeaea ._dgef };func (_eefff *SymbolDictionary )setCodingStatistics ()error {if _eefff ._fdcg ==nil {_eefff ._fdcg =_ge .NewStats (512,1);};if _eefff ._acbe ==nil {_eefff ._acbe =_ge .NewStats (512,1); -};if _eefff ._geffcb ==nil {_eefff ._geffcb =_ge .NewStats (512,1);};if _eefff ._agad ==nil {_eefff ._agad =_ge .NewStats (512,1);};if _eefff ._fbgb ==nil {_eefff ._fbgb =_ge .NewStats (512,1);};if _eefff .UseRefinementAggregation &&_eefff ._ecfb ==nil {_eefff ._ecfb =_ge .NewStats (1< 8{_gbad =8;}else {_gbad =_ccg ;};_gff :=_gbac [0].GetByteIndex (_baca ,_cdea ); -for _gedg :=0;_gedg < _gbad ;_gedg ++{_gcc :=_gedg +_baca ;_cege [_cdea ][_gcc ]=0;for _baaed :=0;_baaed < _fdfd ;_baaed ++{_afd ,_dada :=_gbac [_baaed ].GetByte (_gff );if _dada !=nil {return nil ,_dada ;};_gdd :=_afd >>uint (7-_gcc &7);_gbaf :=_gdd &1; -_cfcb :=1<=-int8 (_bbcf ){_acab |=(_dceb >>uint (7-(int8 (_bbcf )+_dfeg .GBAtX [0]))&0x1)<<4; -}else {_acab |=int (_dfeg .getPixel (_cfce +int (_dfeg .GBAtX [0]),_ebb +int (_dfeg .GBAtY [0])))<<4;};return _acab ;};func (_fbga *HalftoneRegion )renderPattern (_adac [][]int )(_dbbb error ){var _dbc ,_aec int ;for _cgfb :=0;_cgfb < int (_fbga .HGridHeight ); -_cgfb ++{for _edbc :=0;_edbc < int (_fbga .HGridWidth );_edbc ++{_dbc =_fbga .computeX (_cgfb ,_edbc );_aec =_fbga .computeY (_cgfb ,_edbc );_dfega :=_fbga .Patterns [_adac [_cgfb ][_edbc ]];if _dbbb =_gc .Blit (_dfega ,_fbga .HalftoneRegionBitmap ,_dbc +int (_fbga .HGridX ),_aec +int (_fbga .HGridY ),_fbga .CombinationOperator ); -_dbbb !=nil {return _dbbb ;};};};return nil ;};func (_efad *SymbolDictionary )retrieveImportSymbols ()error {for _ ,_bffbe :=range _efad .Header .RTSegments {if _bffbe .Type ==0{_caagf ,_fbeag :=_bffbe .GetSegmentData ();if _fbeag !=nil {return _fbeag ; -};_eed ,_fbdg :=_caagf .(*SymbolDictionary );if !_fbdg {return _gg .Errorf ("\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0044\u0061\u0074a\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0053\u0079\u006d\u0062\u006f\u006c\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0053\u0065\u0067m\u0065\u006e\u0074\u003a\u0020%\u0054",_caagf ); -};_fadca ,_fbeag :=_eed .GetDictionary ();if _fbeag !=nil {return _gg .Errorf ("\u0072\u0065\u006c\u0061\u0074\u0065\u0064 \u0073\u0065\u0067m\u0065\u006e\u0074 \u0077\u0069t\u0068\u0020\u0069\u006e\u0064\u0065x\u003a %\u0064\u0020\u0067\u0065\u0074\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0073",_bffbe .SegmentNumber ,_fbeag .Error ()); -};_efad ._dcfaf =append (_efad ._dcfaf ,_fadca ...);_efad ._bcgg +=_eed .NumberOfExportedSymbols ;};};return nil ;};func (_gdag *TextRegion )decodeSymbolInstances ()error {_agbd ,_gbcea :=_gdag .decodeStripT ();if _gbcea !=nil {return _gbcea ;};var (_beee int64 ; -_cebd uint32 ;);for _cebd < _gdag .NumberOfSymbolInstances {_acbg ,_dcdg :=_gdag .decodeDT ();if _dcdg !=nil {return _dcdg ;};_agbd +=_acbg ;var _cdcg int64 ;_bgca :=true ;_gdag ._adad =0;for {if _bgca {_cdcg ,_dcdg =_gdag .decodeDfs ();if _dcdg !=nil {return _dcdg ; -};_beee +=_cdcg ;_gdag ._adad =_beee ;_bgca =false ;}else {_cagf ,_gcad :=_gdag .decodeIds ();if _e .Is (_gcad ,_bb .ErrOOB ){break ;};if _gcad !=nil {return _gcad ;};if _cebd >=_gdag .NumberOfSymbolInstances {break ;};_gdag ._adad +=_cagf +int64 (_gdag .SbDsOffset ); -};_geab ,_adgeb :=_gdag .decodeCurrentT ();if _adgeb !=nil {return _adgeb ;};_ggae :=_agbd +_geab ;_cdedf ,_adgeb :=_gdag .decodeID ();if _adgeb !=nil {return _adgeb ;};_cegga ,_adgeb :=_gdag .decodeRI ();if _adgeb !=nil {return _adgeb ;};_agef ,_adgeb :=_gdag .decodeIb (_cegga ,_cdedf ); -if _adgeb !=nil {return _adgeb ;};if _adgeb =_gdag .blit (_agef ,_ggae );_adgeb !=nil {return _adgeb ;};_cebd ++;};};return nil ;};func (_feg *SymbolDictionary )readRefinementAtPixels (_fdddg int )error {_feg .SdrATX =make ([]int8 ,_fdddg );_feg .SdrATY =make ([]int8 ,_fdddg ); -var (_dfagd byte ;_bfbfd error ;);for _fgcb :=0;_fgcb < _fdddg ;_fgcb ++{_dfagd ,_bfbfd =_feg ._cgad .ReadByte ();if _bfbfd !=nil {return _bfbfd ;};_feg .SdrATX [_fgcb ]=int8 (_dfagd );_dfagd ,_bfbfd =_feg ._cgad .ReadByte ();if _bfbfd !=nil {return _bfbfd ; -};_feg .SdrATY [_fgcb ]=int8 (_dfagd );};return nil ;};func (_fae *GenericRefinementRegion )decodeTypicalPredictedLineTemplate0 (_gb ,_eb ,_gbe ,_ad ,_dfebb ,_dge ,_ggd ,_ecd ,_ag int )error {var (_fb ,_dad ,_bca ,_ce ,_dadf ,_efd int ;_ggg byte ;_gae error ; -);if _gb > 0{_ggg ,_gae =_fae .RegionBitmap .GetByte (_ggd -_gbe );if _gae !=nil {return _gae ;};_bca =int (_ggg );};if _ecd > 0&&_ecd <=_fae .ReferenceBitmap .Height {_ggg ,_gae =_fae .ReferenceBitmap .GetByte (_ag -_ad +_dge );if _gae !=nil {return _gae ; -};_ce =int (_ggg )<<4;};if _ecd >=0&&_ecd < _fae .ReferenceBitmap .Height {_ggg ,_gae =_fae .ReferenceBitmap .GetByte (_ag +_dge );if _gae !=nil {return _gae ;};_dadf =int (_ggg )<<1;};if _ecd > -2&&_ecd < _fae .ReferenceBitmap .Height -1{_ggg ,_gae =_fae .ReferenceBitmap .GetByte (_ag +_ad +_dge ); -if _gae !=nil {return _gae ;};_efd =int (_ggg );};_fb =((_bca >>5)&0x6)|((_efd >>2)&0x30)|(_dadf &0x180)|(_ce &0xc00);var _gcee int ;for _db :=0;_db < _dfebb ;_db =_gcee {var _fce int ;_gcee =_db +8;var _bbe int ;if _bbe =_eb -_db ;_bbe > 8{_bbe =8;};_dadff :=_gcee < _eb ; -_dfaf :=_gcee < _fae .ReferenceBitmap .Width ;_dbb :=_dge +1;if _gb > 0{_ggg =0;if _dadff {_ggg ,_gae =_fae .RegionBitmap .GetByte (_ggd -_gbe +1);if _gae !=nil {return _gae ;};};_bca =(_bca <<8)|int (_ggg );};if _ecd > 0&&_ecd <=_fae .ReferenceBitmap .Height {var _eca int ; -if _dfaf {_ggg ,_gae =_fae .ReferenceBitmap .GetByte (_ag -_ad +_dbb );if _gae !=nil {return _gae ;};_eca =int (_ggg )<<4;};_ce =(_ce <<8)|_eca ;};if _ecd >=0&&_ecd < _fae .ReferenceBitmap .Height {var _fcd int ;if _dfaf {_ggg ,_gae =_fae .ReferenceBitmap .GetByte (_ag +_dbb ); -if _gae !=nil {return _gae ;};_fcd =int (_ggg )<<1;};_dadf =(_dadf <<8)|_fcd ;};if _ecd > -2&&_ecd < (_fae .ReferenceBitmap .Height -1){_ggg =0;if _dfaf {_ggg ,_gae =_fae .ReferenceBitmap .GetByte (_ag +_ad +_dbb );if _gae !=nil {return _gae ;};};_efd =(_efd <<8)|int (_ggg ); -};for _gaf :=0;_gaf < _bbe ;_gaf ++{var _dcf int ;_gfe :=false ;_cee :=(_fb >>4)&0x1ff;if _cee ==0x1ff{_gfe =true ;_dcf =1;}else if _cee ==0x00{_gfe =true ;};if !_gfe {if _fae ._df {_dad =_fae .overrideAtTemplate0 (_fb ,_db +_gaf ,_gb ,_fce ,_gaf );_fae ._a .SetIndex (int32 (_dad )); -}else {_fae ._a .SetIndex (int32 (_fb ));};_dcf ,_gae =_fae ._bea .DecodeBit (_fae ._a );if _gae !=nil {return _gae ;};};_feb :=uint (7-_gaf );_fce |=_dcf <<_feb ;_fb =((_fb &0xdb6)<<1)|_dcf |(_bca >>_feb +5)&0x002|((_efd >>_feb +2)&0x010)|((_dadf >>_feb )&0x080)|((_ce >>_feb )&0x400); -};_gae =_fae .RegionBitmap .SetByte (_ggd ,byte (_fce ));if _gae !=nil {return _gae ;};_ggd ++;_ag ++;};return nil ;};func (_fbfc *TextRegion )encodeFlags (_acgg _d .BinaryWriter )(_eegf int ,_gffbg error ){const _debab ="e\u006e\u0063\u006f\u0064\u0065\u0046\u006c\u0061\u0067\u0073"; -if _gffbg =_acgg .WriteBit (int (_fbfc .SbrTemplate ));_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"s\u0062\u0072\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};if _ ,_gffbg =_acgg .WriteBits (uint64 (_fbfc .SbDsOffset ),5);_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"\u0073\u0062\u0044\u0073\u004f\u0066\u0066\u0073\u0065\u0074"); -};if _gffbg =_acgg .WriteBit (int (_fbfc .DefaultPixel ));_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"\u0044\u0065\u0066a\u0075\u006c\u0074\u0050\u0069\u0078\u0065\u006c");};if _ ,_gffbg =_acgg .WriteBits (uint64 (_fbfc .CombinationOperator ),2); -_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"\u0043\u006f\u006d\u0062in\u0061\u0074\u0069\u006f\u006e\u004f\u0070\u0065\u0072\u0061\u0074\u006f\u0072");};if _gffbg =_acgg .WriteBit (int (_fbfc .IsTransposed ));_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"\u0069\u0073\u0020\u0074\u0072\u0061\u006e\u0073\u0070\u006f\u0073\u0065\u0064"); -};if _ ,_gffbg =_acgg .WriteBits (uint64 (_fbfc .ReferenceCorner ),2);_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"\u0072\u0065f\u0065\u0072\u0065n\u0063\u0065\u0020\u0063\u006f\u0072\u006e\u0065\u0072");};if _ ,_gffbg =_acgg .WriteBits (uint64 (_fbfc .LogSBStrips ),2); -_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"L\u006f\u0067\u0053\u0042\u0053\u0074\u0072\u0069\u0070\u0073");};var _bdga int ;if _fbfc .UseRefinement {_bdga =1;};if _gffbg =_acgg .WriteBit (_bdga );_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"\u0075\u0073\u0065\u0020\u0072\u0065\u0066\u0069\u006ee\u006d\u0065\u006e\u0074"); -};_bdga =0;if _fbfc .IsHuffmanEncoded {_bdga =1;};if _gffbg =_acgg .WriteBit (_bdga );_gffbg !=nil {return _eegf ,_bde .Wrap (_gffbg ,_debab ,"u\u0073\u0065\u0020\u0068\u0075\u0066\u0066\u006d\u0061\u006e");};_eegf =2;return _eegf ,nil ;};func (_gbge *SymbolDictionary )readRegionFlags ()error {var (_gebe uint64 ; -_dbaa int ;);_ ,_eeg :=_gbge ._cgad .ReadBits (3);if _eeg !=nil {return _eeg ;};_dbaa ,_eeg =_gbge ._cgad .ReadBit ();if _eeg !=nil {return _eeg ;};_gbge .SdrTemplate =int8 (_dbaa );_gebe ,_eeg =_gbge ._cgad .ReadBits (2);if _eeg !=nil {return _eeg ;}; -_gbge .SdTemplate =int8 (_gebe &0xf);_dbaa ,_eeg =_gbge ._cgad .ReadBit ();if _eeg !=nil {return _eeg ;};if _dbaa ==1{_gbge ._acdbd =true ;};_dbaa ,_eeg =_gbge ._cgad .ReadBit ();if _eeg !=nil {return _eeg ;};if _dbaa ==1{_gbge ._cdcb =true ;};_dbaa ,_eeg =_gbge ._cgad .ReadBit (); -if _eeg !=nil {return _eeg ;};if _dbaa ==1{_gbge .SdHuffAggInstanceSelection =true ;};_dbaa ,_eeg =_gbge ._cgad .ReadBit ();if _eeg !=nil {return _eeg ;};_gbge .SdHuffBMSizeSelection =int8 (_dbaa );_gebe ,_eeg =_gbge ._cgad .ReadBits (2);if _eeg !=nil {return _eeg ; -};_gbge .SdHuffDecodeWidthSelection =int8 (_gebe &0xf);_gebe ,_eeg =_gbge ._cgad .ReadBits (2);if _eeg !=nil {return _eeg ;};_gbge .SdHuffDecodeHeightSelection =int8 (_gebe &0xf);_dbaa ,_eeg =_gbge ._cgad .ReadBit ();if _eeg !=nil {return _eeg ;};if _dbaa ==1{_gbge .UseRefinementAggregation =true ; -};_dbaa ,_eeg =_gbge ._cgad .ReadBit ();if _eeg !=nil {return _eeg ;};if _dbaa ==1{_gbge .IsHuffmanEncoded =true ;};return nil ;};func (_fcef *PageInformationSegment )encodeStripingInformation (_fbfd _d .BinaryWriter )(_bfec int ,_cdcd error ){const _ccbd ="\u0065n\u0063\u006f\u0064\u0065S\u0074\u0072\u0069\u0070\u0069n\u0067I\u006ef\u006f\u0072\u006d\u0061\u0074\u0069\u006fn"; -if !_fcef .IsStripe {if _bfec ,_cdcd =_fbfd .Write ([]byte {0x00,0x00});_cdcd !=nil {return 0,_bde .Wrap (_cdcd ,_ccbd ,"n\u006f\u0020\u0073\u0074\u0072\u0069\u0070\u0069\u006e\u0067");};return _bfec ,nil ;};_cbg :=make ([]byte ,2);_f .BigEndian .PutUint16 (_cbg ,_fcef .MaxStripeSize |1<<15); -if _bfec ,_cdcd =_fbfd .Write (_cbg );_cdcd !=nil {return 0,_bde .Wrapf (_cdcd ,_ccbd ,"\u0073\u0074\u0072i\u0070\u0069\u006e\u0067\u003a\u0020\u0025\u0064",_fcef .MaxStripeSize );};return _bfec ,nil ;};func (_cbca *TextRegion )decodeCurrentT ()(int64 ,error ){if _cbca .SbStrips !=1{if _cbca .IsHuffmanEncoded {_ecag ,_gedc :=_cbca ._dcbba .ReadBits (byte (_cbca .LogSBStrips )); -return int64 (_ecag ),_gedc ;};_eege ,_ddfae :=_cbca ._daa .DecodeInt (_cbca ._bgcd );if _ddfae !=nil {return 0,_ddfae ;};return int64 (_eege ),nil ;};return 0,nil ;};func (_bfcce *SymbolDictionary )getToExportFlags ()([]int ,error ){var (_cgfeg int ;_efae int32 ; -_ffed error ;_gfad =int32 (_bfcce ._bcgg +_bfcce .NumberOfNewSymbols );_fdcf =make ([]int ,_gfad ););for _daec :=int32 (0);_daec < _gfad ;_daec +=_efae {if _bfcce .IsHuffmanEncoded {_ecdda ,_ebgf :=_fc .GetStandardTable (1);if _ebgf !=nil {return nil ,_ebgf ; -};_bgce ,_ebgf :=_ecdda .Decode (_bfcce ._cgad );if _ebgf !=nil {return nil ,_ebgf ;};_efae =int32 (_bgce );}else {_efae ,_ffed =_bfcce ._efcac .DecodeInt (_bfcce ._fbgb );if _ffed !=nil {return nil ,_ffed ;};};if _efae !=0{if _daec +_efae > _gfad {return nil ,_bde .Error ("\u0053\u0079\u006d\u0062\u006f\u006cD\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0067\u0065\u0074T\u006f\u0045\u0078\u0070\u006f\u0072\u0074F\u006c\u0061\u0067\u0073","\u006d\u0061\u006c\u0066\u006f\u0072m\u0065\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0064\u0061\u0074\u0061\u0020\u0070\u0072\u006f\u0076\u0069\u0064e\u0064\u002e\u0020\u0069\u006e\u0064\u0065\u0078\u0020\u006f\u0075\u0074\u0020\u006ff\u0020r\u0061\u006e\u0067\u0065"); -};for _dgfaad :=_daec ;_dgfaad < _daec +_efae ;_dgfaad ++{_fdcf [_dgfaad ]=_cgfeg ;};};if _cgfeg ==0{_cgfeg =1;}else {_cgfeg =0;};};return _fdcf ,nil ;};var _ SegmentEncoder =&GenericRegion {};func (_bfed *HalftoneRegion )checkInput ()error {if _bfed .IsMMREncoded {if _bfed .HTemplate !=0{_gd .Log .Debug ("\u0048\u0054\u0065\u006d\u0070l\u0061\u0074\u0065\u0020\u003d\u0020\u0025\u0064\u0020\u0073\u0068\u006f\u0075l\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0030",_bfed .HTemplate ); -};if _bfed .HSkipEnabled {_gd .Log .Debug ("\u0048\u0053\u006b\u0069\u0070\u0045\u006e\u0061\u0062\u006c\u0065\u0064\u0020\u0030\u0020\u0025\u0076\u0020(\u0073\u0068\u006f\u0075\u006c\u0064\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u0029",_bfed .HSkipEnabled ); -};};return nil ;};func (_dced *SymbolDictionary )getSbSymCodeLen ()int8 {_eccd :=int8 (_b .Ceil (_b .Log (float64 (_dced ._bcgg +_dced .NumberOfNewSymbols ))/_b .Log (2)));if _dced .IsHuffmanEncoded &&_eccd < 1{return 1;};return _eccd ;};func (_ddgb *PageInformationSegment )CombinationOperator ()_gc .CombinationOperator {return _ddgb ._fgad ; -};type OrganizationType uint8 ;func (_bdcd *GenericRegion )overrideAtTemplate0a (_fdca ,_bcff ,_bgb ,_faf ,_ebgg ,_cegg int )int {if _bdcd .GBAtOverride [0]{_fdca &=0xFFEF;if _bdcd .GBAtY [0]==0&&_bdcd .GBAtX [0]>=-int8 (_ebgg ){_fdca |=(_faf >>uint (int8 (_cegg )-_bdcd .GBAtX [0]&0x1))<<4; -}else {_fdca |=int (_bdcd .getPixel (_bcff +int (_bdcd .GBAtX [0]),_bgb +int (_bdcd .GBAtY [0])))<<4;};};if _bdcd .GBAtOverride [1]{_fdca &=0xFBFF;if _bdcd .GBAtY [1]==0&&_bdcd .GBAtX [1]>=-int8 (_ebgg ){_fdca |=(_faf >>uint (int8 (_cegg )-_bdcd .GBAtX [1]&0x1))<<10; -}else {_fdca |=int (_bdcd .getPixel (_bcff +int (_bdcd .GBAtX [1]),_bgb +int (_bdcd .GBAtY [1])))<<10;};};if _bdcd .GBAtOverride [2]{_fdca &=0xF7FF;if _bdcd .GBAtY [2]==0&&_bdcd .GBAtX [2]>=-int8 (_ebgg ){_fdca |=(_faf >>uint (int8 (_cegg )-_bdcd .GBAtX [2]&0x1))<<11; -}else {_fdca |=int (_bdcd .getPixel (_bcff +int (_bdcd .GBAtX [2]),_bgb +int (_bdcd .GBAtY [2])))<<11;};};if _bdcd .GBAtOverride [3]{_fdca &=0x7FFF;if _bdcd .GBAtY [3]==0&&_bdcd .GBAtX [3]>=-int8 (_ebgg ){_fdca |=(_faf >>uint (int8 (_cegg )-_bdcd .GBAtX [3]&0x1))<<15; -}else {_fdca |=int (_bdcd .getPixel (_bcff +int (_bdcd .GBAtX [3]),_bgb +int (_bdcd .GBAtY [3])))<<15;};};return _fdca ;};var _ _fc .BasicTabler =&TableSegment {};func (_faeg *GenericRegion )computeSegmentDataStructure ()error {_faeg .DataOffset =_faeg ._cbce .AbsolutePosition (); -_faeg .DataHeaderLength =_faeg .DataOffset -_faeg .DataHeaderOffset ;_faeg .DataLength =int64 (_faeg ._cbce .AbsoluteLength ())-_faeg .DataHeaderLength ;return nil ;};func (_ggeb *Header )CleanSegmentData (){if _ggeb .SegmentData !=nil {_ggeb .SegmentData =nil ; -};};func (_gdccf *SymbolDictionary )encodeSymbols (_cbed _d .BinaryWriter )(_affe int ,_fdcab error ){const _dgfc ="\u0065\u006e\u0063o\u0064\u0065\u0053\u0079\u006d\u0062\u006f\u006c";_egfef :=_cad .New ();_egfef .Init ();_cba ,_fdcab :=_gdccf ._cdgf .SelectByIndexes (_gdccf ._gecb ); -if _fdcab !=nil {return 0,_bde .Wrap (_fdcab ,_dgfc ,"\u0069n\u0069\u0074\u0069\u0061\u006c");};_gagf :=map[*_gc .Bitmap ]int {};for _bed ,_dbag :=range _cba .Values {_gagf [_dbag ]=_bed ;};_cba .SortByHeight ();var _ebggb ,_agfb int ;_gebd ,_fdcab :=_cba .GroupByHeight (); -if _fdcab !=nil {return 0,_bde .Wrap (_fdcab ,_dgfc ,"");};for _ ,_gafaf :=range _gebd .Values {_cgefg :=_gafaf .Values [0].Height ;_fccd :=_cgefg -_ebggb ;if _fdcab =_egfef .EncodeInteger (_cad .IADH ,_fccd );_fdcab !=nil {return 0,_bde .Wrapf (_fdcab ,_dgfc ,"\u0049\u0041\u0044\u0048\u0020\u0066\u006f\u0072\u0020\u0064\u0068\u003a \u0027\u0025\u0064\u0027",_fccd ); -};_ebggb =_cgefg ;_fbbe ,_bdfc :=_gafaf .GroupByWidth ();if _bdfc !=nil {return 0,_bde .Wrapf (_bdfc ,_dgfc ,"\u0068\u0065\u0069g\u0068\u0074\u003a\u0020\u0027\u0025\u0064\u0027",_cgefg );};var _aafa int ;for _ ,_edce :=range _fbbe .Values {for _ ,_cfge :=range _edce .Values {_egeg :=_cfge .Width ; -_fgada :=_egeg -_aafa ;if _bdfc =_egfef .EncodeInteger (_cad .IADW ,_fgada );_bdfc !=nil {return 0,_bde .Wrapf (_bdfc ,_dgfc ,"\u0049\u0041\u0044\u0057\u0020\u0066\u006f\u0072\u0020\u0064\u0077\u003a \u0027\u0025\u0064\u0027",_fgada );};_aafa +=_fgada ; -if _bdfc =_egfef .EncodeBitmap (_cfge ,false );_bdfc !=nil {return 0,_bde .Wrapf (_bdfc ,_dgfc ,"H\u0065i\u0067\u0068\u0074\u003a\u0020\u0025\u0064\u0020W\u0069\u0064\u0074\u0068: \u0025\u0064",_cgefg ,_egeg );};_ccgc :=_gagf [_cfge ];_gdccf ._cgab [_ccgc ]=_agfb ; -_agfb ++;};};if _bdfc =_egfef .EncodeOOB (_cad .IADW );_bdfc !=nil {return 0,_bde .Wrap (_bdfc ,_dgfc ,"\u0049\u0041\u0044\u0057");};};if _fdcab =_egfef .EncodeInteger (_cad .IAEX ,0);_fdcab !=nil {return 0,_bde .Wrap (_fdcab ,_dgfc ,"\u0065\u0078p\u006f\u0072\u0074e\u0064\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0073"); -};if _fdcab =_egfef .EncodeInteger (_cad .IAEX ,len (_gdccf ._gecb ));_fdcab !=nil {return 0,_bde .Wrap (_fdcab ,_dgfc ,"\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0073\u0079m\u0062\u006f\u006c\u0073");};_egfef .Final ();_gbdc ,_fdcab :=_egfef .WriteTo (_cbed ); -if _fdcab !=nil {return 0,_bde .Wrap (_fdcab ,_dgfc ,"\u0077\u0072i\u0074\u0069\u006e\u0067 \u0065\u006ec\u006f\u0064\u0065\u0072\u0020\u0063\u006f\u006et\u0065\u0078\u0074\u0020\u0074\u006f\u0020\u0027\u0077\u0027\u0020\u0077r\u0069\u0074\u0065\u0072"); -};return int (_gbdc ),nil ;};func (_bfa *template1 )setIndex (_fdac *_ge .DecoderStats ){_fdac .SetIndex (0x080)};func (_bcee *TextRegion )decodeID ()(int64 ,error ){if _bcee .IsHuffmanEncoded {if _bcee ._ebdg ==nil {_bdde ,_gebb :=_bcee ._dcbba .ReadBits (byte (_bcee ._ffaeb )); -return int64 (_bdde ),_gebb ;};return _bcee ._ebdg .Decode (_bcee ._dcbba );};return _bcee ._daa .DecodeIAID (uint64 (_bcee ._ffaeb ),_bcee ._aacg );};type RegionSegment struct{_fggf *_d .Reader ;BitmapWidth uint32 ;BitmapHeight uint32 ;XLocation uint32 ; -YLocation uint32 ;CombinaionOperator _gc .CombinationOperator ;};func (_bbfg *TextRegion )InitEncode (globalSymbolsMap ,localSymbolsMap map[int ]int ,comps []int ,inLL *_gc .Points ,symbols *_gc .Bitmaps ,classIDs *_bf .IntSlice ,boxes *_gc .Boxes ,width ,height ,symBits int ){_bbfg .RegionInfo =&RegionSegment {BitmapWidth :uint32 (width ),BitmapHeight :uint32 (height )}; -_bbfg ._bgd =globalSymbolsMap ;_bbfg ._ddef =localSymbolsMap ;_bbfg ._bfdf =comps ;_bbfg ._eacc =inLL ;_bbfg ._fcbcg =symbols ;_bbfg ._adgg =classIDs ;_bbfg ._gcab =boxes ;_bbfg ._aedg =symBits ;};func (_fgac *SymbolDictionary )readAtPixels (_cfcf int )error {_fgac .SdATX =make ([]int8 ,_cfcf ); -_fgac .SdATY =make ([]int8 ,_cfcf );var (_efaf byte ;_bddg error ;);for _eeac :=0;_eeac < _cfcf ;_eeac ++{_efaf ,_bddg =_fgac ._cgad .ReadByte ();if _bddg !=nil {return _bddg ;};_fgac .SdATX [_eeac ]=int8 (_efaf );_efaf ,_bddg =_fgac ._cgad .ReadByte (); -if _bddg !=nil {return _bddg ;};_fgac .SdATY [_eeac ]=int8 (_efaf );};return nil ;};func (_deae *GenericRegion )decodeTemplate0a (_cge ,_ceg ,_gbcd int ,_gbdb ,_bfef int )(_cdd error ){const _agf ="\u0064\u0065c\u006f\u0064\u0065T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0030\u0061"; -var (_eab ,_ecg int ;_bbag ,_ecdc int ;_debf byte ;_dee int ;);if _cge >=1{_debf ,_cdd =_deae .Bitmap .GetByte (_bfef );if _cdd !=nil {return _bde .Wrap (_cdd ,_agf ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_bbag =int (_debf );};if _cge >=2{_debf ,_cdd =_deae .Bitmap .GetByte (_bfef -_deae .Bitmap .RowStride ); -if _cdd !=nil {return _bde .Wrap (_cdd ,_agf ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00202");};_ecdc =int (_debf )<<6;};_eab =(_bbag &0xf0)|(_ecdc &0x3800);for _ggag :=0;_ggag < _gbcd ;_ggag =_dee {var (_cfe byte ;_ggab int ;);_dee =_ggag +8;if _ggf :=_ceg -_ggag ; -_ggf > 8{_ggab =8;}else {_ggab =_ggf ;};if _cge > 0{_bbag <<=8;if _dee < _ceg {_debf ,_cdd =_deae .Bitmap .GetByte (_bfef +1);if _cdd !=nil {return _bde .Wrap (_cdd ,_agf ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0030");};_bbag |=int (_debf );};};if _cge > 1{_ebd :=_bfef -_deae .Bitmap .RowStride +1; -_ecdc <<=8;if _dee < _ceg {_debf ,_cdd =_deae .Bitmap .GetByte (_ebd );if _cdd !=nil {return _bde .Wrap (_cdd ,_agf ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0031");};_ecdc |=int (_debf )<<6;}else {_ecdc |=0;};};for _cbe :=0;_cbe < _ggab ;_cbe ++{_aeg :=uint (7-_cbe ); -if _deae ._ddge {_ecg =_deae .overrideAtTemplate0a (_eab ,_ggag +_cbe ,_cge ,int (_cfe ),_cbe ,int (_aeg ));_deae ._ead .SetIndex (int32 (_ecg ));}else {_deae ._ead .SetIndex (int32 (_eab ));};var _eff int ;_eff ,_cdd =_deae ._ace .DecodeBit (_deae ._ead ); -if _cdd !=nil {return _bde .Wrap (_cdd ,_agf ,"");};_cfe |=byte (_eff )<<_aeg ;_eab =((_eab &0x7bf7)<<1)|_eff |((_bbag >>_aeg )&0x10)|((_ecdc >>_aeg )&0x800);};if _baa :=_deae .Bitmap .SetByte (_gbdb ,_cfe );_baa !=nil {return _bde .Wrap (_baa ,_agf ,""); -};_gbdb ++;_bfef ++;};return nil ;};func (_fcbfb *GenericRegion )overrideAtTemplate2 (_dadg ,_agfd ,_eccgf ,_egca ,_cfgg int )int {_dadg &=0x3FB;if _fcbfb .GBAtY [0]==0&&_fcbfb .GBAtX [0]>=-int8 (_cfgg ){_dadg |=(_egca >>uint (7-(int8 (_cfgg )+_fcbfb .GBAtX [0]))&0x1)<<2; -}else {_dadg |=int (_fcbfb .getPixel (_agfd +int (_fcbfb .GBAtX [0]),_eccgf +int (_fcbfb .GBAtY [0])))<<2;};return _dadg ;};func (_gfbbe *TextRegion )setCodingStatistics ()error {if _gfbbe ._ccfg ==nil {_gfbbe ._ccfg =_ge .NewStats (512,1);};if _gfbbe ._effc ==nil {_gfbbe ._effc =_ge .NewStats (512,1); -};if _gfbbe ._ccgbe ==nil {_gfbbe ._ccgbe =_ge .NewStats (512,1);};if _gfbbe ._bgcd ==nil {_gfbbe ._bgcd =_ge .NewStats (512,1);};if _gfbbe ._ceb ==nil {_gfbbe ._ceb =_ge .NewStats (512,1);};if _gfbbe ._ceba ==nil {_gfbbe ._ceba =_ge .NewStats (512,1); -};if _gfbbe ._gfcd ==nil {_gfbbe ._gfcd =_ge .NewStats (512,1);};if _gfbbe ._aacg ==nil {_gfbbe ._aacg =_ge .NewStats (1<=1{_cdfb ,_aged =_gdaf .Bitmap .GetByte (_agg );if _aged !=nil {return _bde .Wrap (_aged ,_aff ,"\u006ci\u006ee\u004e\u0075\u006d\u0062\u0065\u0072\u0020\u003e\u003d\u0020\u0031");};_edg =int (_cdfb );};if _dfed >=2{_cdfb ,_aged =_gdaf .Bitmap .GetByte (_agg -_gdaf .Bitmap .RowStride ); -if _aged !=nil {return _bde .Wrap (_aged ,_aff ,"\u006ci\u006ee\u004e\u0075\u006d\u0062\u0065\u0072\u0020\u003e\u003d\u0020\u0032");};_fge =int (_cdfb )<<4;};_egf =(_edg >>3&0x7c)|(_fge >>3&0x380);for _cede :=0;_cede < _dgg ;_cede =_gfea {var (_abb byte ; -_fdgc int ;);_gfea =_cede +8;if _fefd :=_bcaf -_cede ;_fefd > 8{_fdgc =8;}else {_fdgc =_fefd ;};if _dfed > 0{_edg <<=8;if _gfea < _bcaf {_cdfb ,_aged =_gdaf .Bitmap .GetByte (_agg +1);if _aged !=nil {return _bde .Wrap (_aged ,_aff ,"\u006c\u0069\u006e\u0065\u004e\u0075\u006d\u0062\u0065r\u0020\u003e\u0020\u0030"); -};_edg |=int (_cdfb );};};if _dfed > 1{_fge <<=8;if _gfea < _bcaf {_cdfb ,_aged =_gdaf .Bitmap .GetByte (_agg -_gdaf .Bitmap .RowStride +1);if _aged !=nil {return _bde .Wrap (_aged ,_aff ,"\u006c\u0069\u006e\u0065\u004e\u0075\u006d\u0062\u0065r\u0020\u003e\u0020\u0031"); -};_fge |=int (_cdfb )<<4;};};for _afe :=0;_afe < _fdgc ;_afe ++{_fccc :=uint (10-_afe );if _gdaf ._ddge {_abcb =_gdaf .overrideAtTemplate2 (_egf ,_cede +_afe ,_dfed ,int (_abb ),_afe );_gdaf ._ead .SetIndex (int32 (_abcb ));}else {_gdaf ._ead .SetIndex (int32 (_egf )); -};_dfdg ,_aged =_gdaf ._ace .DecodeBit (_gdaf ._ead );if _aged !=nil {return _bde .Wrap (_aged ,_aff ,"");};_abb |=byte (_dfdg <>_fccc )&0x4)|((_fge >>_fccc )&0x80);};if _eadb :=_gdaf .Bitmap .SetByte (_fddd ,_abb ); -_eadb !=nil {return _bde .Wrap (_eadb ,_aff ,"");};_fddd ++;_agg ++;};return nil ;};const (ORandom OrganizationType =iota ;OSequential ;);func (_gcga *PageInformationSegment )readResolution ()error {_fcccg ,_fafe :=_gcga ._acea .ReadBits (32);if _fafe !=nil {return _fafe ; -};_gcga .ResolutionX =int (_fcccg &_b .MaxInt32 );_fcccg ,_fafe =_gcga ._acea .ReadBits (32);if _fafe !=nil {return _fafe ;};_gcga .ResolutionY =int (_fcccg &_b .MaxInt32 );return nil ;};func (_abfe *SymbolDictionary )huffDecodeRefAggNInst ()(int64 ,error ){if !_abfe .SdHuffAggInstanceSelection {_dffae ,_dcag :=_fc .GetStandardTable (1); -if _dcag !=nil {return 0,_dcag ;};return _dffae .Decode (_abfe ._cgad );};if _abfe ._agce ==nil {var (_adacb int ;_ggfb error ;);if _abfe .SdHuffDecodeHeightSelection ==3{_adacb ++;};if _abfe .SdHuffDecodeWidthSelection ==3{_adacb ++;};if _abfe .SdHuffBMSizeSelection ==3{_adacb ++; -};_abfe ._agce ,_ggfb =_abfe .getUserTable (_adacb );if _ggfb !=nil {return 0,_ggfb ;};};return _abfe ._agce .Decode (_abfe ._cgad );};func (_aag *SymbolDictionary )String ()string {_beaa :=&_bd .Builder {};_beaa .WriteString ("\n\u005b\u0053\u0059\u004dBO\u004c-\u0044\u0049\u0043\u0054\u0049O\u004e\u0041\u0052\u0059\u005d\u000a"); -_beaa .WriteString (_gg .Sprintf ("\u0009-\u0020S\u0064\u0072\u0054\u0065\u006dp\u006c\u0061t\u0065\u0020\u0025\u0076\u000a",_aag .SdrTemplate ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0064\u0054\u0065\u006d\u0070\u006c\u0061\u0074e\u0020\u0025\u0076\u000a",_aag .SdTemplate )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0069\u0073\u0043\u006f\u0064\u0069\u006eg\u0043\u006f\u006e\u0074\u0065\u0078\u0074R\u0065\u0074\u0061\u0069\u006e\u0065\u0064\u0020\u0025\u0076\u000a",_aag ._acdbd ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0069\u0073\u0043\u006f\u0064\u0069\u006e\u0067C\u006f\u006e\u0074\u0065\u0078\u0074\u0055\u0073\u0065\u0064 \u0025\u0076\u000a",_aag ._cdcb )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0064\u0048u\u0066\u0066\u0041\u0067\u0067\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065S\u0065\u006c\u0065\u0063\u0074\u0069\u006fn\u0020\u0025\u0076\u000a",_aag .SdHuffAggInstanceSelection )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053d\u0048\u0075\u0066\u0066\u0042\u004d\u0053\u0069\u007a\u0065S\u0065l\u0065\u0063\u0074\u0069\u006f\u006e\u0020%\u0076\u000a",_aag .SdHuffBMSizeSelection ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0064\u0048u\u0066\u0066\u0044\u0065\u0063\u006f\u0064\u0065\u0057\u0069\u0064\u0074\u0068S\u0065\u006c\u0065\u0063\u0074\u0069\u006fn\u0020\u0025\u0076\u000a",_aag .SdHuffDecodeWidthSelection )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020Sd\u0048\u0075\u0066\u0066\u0044\u0065\u0063\u006f\u0064e\u0048e\u0069g\u0068t\u0053\u0065\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u0020\u0025\u0076\u000a",_aag .SdHuffDecodeHeightSelection ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020U\u0073\u0065\u0052\u0065f\u0069\u006e\u0065\u006d\u0065\u006e\u0074A\u0067\u0067\u0072\u0065\u0067\u0061\u0074\u0069\u006f\u006e\u0020\u0025\u0076\u000a",_aag .UseRefinementAggregation )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020is\u0048\u0075\u0066\u0066\u006d\u0061\u006e\u0045\u006e\u0063\u006f\u0064\u0065\u0064\u0020\u0025\u0076\u000a",_aag .IsHuffmanEncoded ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020S\u0064\u0041\u0054\u0058\u0020\u0025\u0076\u000a",_aag .SdATX )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020S\u0064\u0041\u0054\u0059\u0020\u0025\u0076\u000a",_aag .SdATY ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0064\u0072\u0041\u0054\u0058\u0020\u0025\u0076\u000a",_aag .SdrATX ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0053\u0064\u0072\u0041\u0054\u0059\u0020\u0025\u0076\u000a",_aag .SdrATY )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u004e\u0075\u006d\u0062\u0065\u0072\u004ff\u0045\u0078\u0070\u006f\u0072\u0074\u0065d\u0053\u0079\u006d\u0062\u006f\u006c\u0073\u0020\u0025\u0076\u000a",_aag .NumberOfExportedSymbols ));_beaa .WriteString (_gg .Sprintf ("\u0009-\u0020\u004e\u0075\u006db\u0065\u0072\u004f\u0066\u004ee\u0077S\u0079m\u0062\u006f\u006c\u0073\u0020\u0025\u0076\n",_aag .NumberOfNewSymbols )); -_beaa .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u004ff\u0049\u006d\u0070\u006f\u0072\u0074\u0065d\u0053\u0079\u006d\u0062\u006f\u006c\u0073\u0020\u0025\u0076\u000a",_aag ._bcgg ));_beaa .WriteString (_gg .Sprintf ("\u0009\u002d \u006e\u0075\u006d\u0062\u0065\u0072\u004f\u0066\u0044\u0065\u0063\u006f\u0064\u0065\u0064\u0053\u0079\u006d\u0062\u006f\u006c\u0073 %\u0076\u000a",_aag ._bdbb )); -return _beaa .String ();};func (_aed *Header )readSegmentNumber (_cfb *_d .Reader )error {const _bfab ="\u0072\u0065\u0061\u0064\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u004eu\u006d\u0062\u0065\u0072";_bagd :=make ([]byte ,4);_ ,_gbafc :=_cfb .Read (_bagd ); -if _gbafc !=nil {return _bde .Wrap (_gbafc ,_bfab ,"");};_aed .SegmentNumber =_f .BigEndian .Uint32 (_bagd );return nil ;};func (_ee *GenericRefinementRegion )Init (header *Header ,r *_d .Reader )error {_ee ._cbc =header ;_ee ._cgb =r ;_ee .RegionInfo =NewRegionSegment (r ); -return _ee .parseHeader ();};func (_aaa *TextRegion )GetRegionInfo ()*RegionSegment {return _aaa .RegionInfo };func (_efef *Header )referenceSize ()uint {switch {case _efef .SegmentNumber <=255:return 1;case _efef .SegmentNumber <=65535:return 2;default:return 4; -};};func (_edad *SymbolDictionary )encodeRefinementATFlags (_bccc _d .BinaryWriter )(_edaa int ,_agge error ){const _fca ="\u0065\u006e\u0063od\u0065\u0052\u0065\u0066\u0069\u006e\u0065\u006d\u0065\u006e\u0074\u0041\u0054\u0046\u006c\u0061\u0067\u0073"; -if !_edad .UseRefinementAggregation ||_edad .SdrTemplate !=0{return 0,nil ;};for _ffgc :=0;_ffgc < 2;_ffgc ++{if _agge =_bccc .WriteByte (byte (_edad .SdrATX [_ffgc ]));_agge !=nil {return _edaa ,_bde .Wrapf (_agge ,_fca ,"\u0053\u0064\u0072\u0041\u0054\u0058\u005b\u0025\u0064\u005d",_ffgc ); -};_edaa ++;if _agge =_bccc .WriteByte (byte (_edad .SdrATY [_ffgc ]));_agge !=nil {return _edaa ,_bde .Wrapf (_agge ,_fca ,"\u0053\u0064\u0072\u0041\u0054\u0059\u005b\u0025\u0064\u005d",_ffgc );};_edaa ++;};return _edaa ,nil ;};type GenericRegion struct{_cbce *_d .Reader ; -DataHeaderOffset int64 ;DataHeaderLength int64 ;DataOffset int64 ;DataLength int64 ;RegionSegment *RegionSegment ;UseExtTemplates bool ;IsTPGDon bool ;GBTemplate byte ;IsMMREncoded bool ;UseMMR bool ;GBAtX []int8 ;GBAtY []int8 ;GBAtOverride []bool ;_ddge bool ; -Bitmap *_gc .Bitmap ;_ace *_ge .Decoder ;_ead *_ge .DecoderStats ;_gfed *_dd .Decoder ;};func (_geg *template0 )form (_edd ,_ddg ,_afb ,_ged ,_cef int16 )int16 {return (_edd <<10)|(_ddg <<7)|(_afb <<4)|(_ged <<1)|_cef ;};func (_gbbd *TextRegion )initSymbols ()error {const _bfdfc ="i\u006e\u0069\u0074\u0053\u0079\u006d\u0062\u006f\u006c\u0073"; -for _ ,_eeba :=range _gbbd .Header .RTSegments {if _eeba ==nil {return _bde .Error (_bfdfc ,"\u006e\u0069\u006c\u0020\u0073\u0065\u0067\u006de\u006e\u0074\u0020pr\u006f\u0076\u0069\u0064\u0065\u0064 \u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0074\u0065\u0078\u0074\u0020\u0072\u0065g\u0069\u006f\u006e\u0020\u0053\u0079\u006d\u0062o\u006c\u0073"); -};if _eeba .Type ==0{_efdfd ,_eafbf :=_eeba .GetSegmentData ();if _eafbf !=nil {return _bde .Wrap (_eafbf ,_bfdfc ,"");};_cefg ,_fbeaf :=_efdfd .(*SymbolDictionary );if !_fbeaf {return _bde .Error (_bfdfc ,"\u0072e\u0066\u0065r\u0072\u0065\u0064 \u0054\u006f\u0020\u0053\u0065\u0067\u006de\u006e\u0074\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0053\u0079\u006d\u0062\u006f\u006cD\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_cefg ._ecfb =_gbbd ._aacg ;_debg ,_eafbf :=_cefg .GetDictionary ();if _eafbf !=nil {return _bde .Wrap (_eafbf ,_bfdfc ,"");};_gbbd .Symbols =append (_gbbd .Symbols ,_debg ...);};};_gbbd .NumberOfSymbols =uint32 (len (_gbbd .Symbols ));return nil ;}; -func (_ffae *HalftoneRegion )Init (hd *Header ,r *_d .Reader )error {_ffae ._faa =r ;_ffae ._aab =hd ;_ffae .RegionSegment =NewRegionSegment (r );return _ffae .parseHeader ();};func (_dc *GenericRefinementRegion )GetRegionBitmap ()(*_gc .Bitmap ,error ){var _gfg error ; -_gd .Log .Trace ("\u005b\u0047E\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0047\u0065\u0074\u0052\u0065\u0067\u0069\u006f\u006e\u0042\u0069\u0074\u006d\u0061\u0070\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e"); -defer func (){if _gfg !=nil {_gd .Log .Trace ("[\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052E\u0046\u002d\u0052\u0045\u0047\u0049\u004fN]\u0020\u0047\u0065\u0074R\u0065\u0067\u0069\u006f\u006e\u0042\u0069\u0074\u006dap\u0020\u0066a\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_gfg ); -}else {_gd .Log .Trace ("\u005b\u0047E\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0047\u0065\u0074\u0052\u0065\u0067\u0069\u006f\u006e\u0042\u0069\u0074\u006d\u0061\u0070\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); -};}();if _dc .RegionBitmap !=nil {return _dc .RegionBitmap ,nil ;};_cgba :=0;if _dc .ReferenceBitmap ==nil {_dc .ReferenceBitmap ,_gfg =_dc .getGrReference ();if _gfg !=nil {return nil ,_gfg ;};};if _dc ._bea ==nil {_dc ._bea ,_gfg =_ge .New (_dc ._cgb ); -if _gfg !=nil {return nil ,_gfg ;};};if _dc ._a ==nil {_dc ._a =_ge .NewStats (8192,1);};_dc .RegionBitmap =_gc .New (int (_dc .RegionInfo .BitmapWidth ),int (_dc .RegionInfo .BitmapHeight ));if _dc .TemplateID ==0{if _gfg =_dc .updateOverride ();_gfg !=nil {return nil ,_gfg ; -};};_ddad :=(_dc .RegionBitmap .Width +7)&-8;var _fa int ;if _dc .IsTPGROn {_fa =int (-_dc .ReferenceDY )*_dc .ReferenceBitmap .RowStride ;};_de :=_fa +1;for _ga :=0;_ga < _dc .RegionBitmap .Height ;_ga ++{if _dc .IsTPGROn {_dfb ,_bfe :=_dc .decodeSLTP (); -if _bfe !=nil {return nil ,_bfe ;};_cgba ^=_dfb ;};if _cgba ==0{_gfg =_dc .decodeOptimized (_ga ,_dc .RegionBitmap .Width ,_dc .RegionBitmap .RowStride ,_dc .ReferenceBitmap .RowStride ,_ddad ,_fa ,_de );if _gfg !=nil {return nil ,_gfg ;};}else {_gfg =_dc .decodeTypicalPredictedLine (_ga ,_dc .RegionBitmap .Width ,_dc .RegionBitmap .RowStride ,_dc .ReferenceBitmap .RowStride ,_ddad ,_fa ); -if _gfg !=nil {return nil ,_gfg ;};};};return _dc .RegionBitmap ,nil ;};func (_gfd *EndOfStripe )Init (h *Header ,r *_d .Reader )error {_gfd ._ggb =r ;return _gfd .parseHeader ();};func (_afgb *PageInformationSegment )readMaxStripeSize ()error {_dbba ,_ffc :=_afgb ._acea .ReadBits (15); -if _ffc !=nil {return _ffc ;};_afgb .MaxStripeSize =uint16 (_dbba &_b .MaxUint16 );return nil ;};func (_fdfb *HalftoneRegion )computeY (_dabe ,_aaeg int )int {return _fdfb .shiftAndFill (int (_fdfb .HGridY )+_dabe *int (_fdfb .HRegionX )-_aaeg *int (_fdfb .HRegionY )); -};func (_abdd *Header )parse (_bcab Documenter ,_gdegc *_d .Reader ,_feda int64 ,_cfff OrganizationType )(_cec error ){const _dgab ="\u0070\u0061\u0072s\u0065";_gd .Log .Trace ("\u005b\u0053\u0045\u0047\u004d\u0045\u004e\u0054\u002d\u0048E\u0041\u0044\u0045\u0052\u005d\u005b\u0050A\u0052\u0053\u0045\u005d\u0020\u0042\u0065\u0067\u0069\u006e\u0073"); -defer func (){if _cec !=nil {_gd .Log .Trace ("\u005b\u0053\u0045GM\u0045\u004e\u0054\u002d\u0048\u0045\u0041\u0044\u0045R\u005d[\u0050A\u0052S\u0045\u005d\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_cec );}else {_gd .Log .Trace ("\u005b\u0053\u0045\u0047\u004d\u0045\u004e\u0054\u002d\u0048\u0045\u0041\u0044\u0045\u0052]\u005bP\u0041\u0052\u0053\u0045\u005d\u0020\u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); -};}();_ ,_cec =_gdegc .Seek (_feda ,_gf .SeekStart );if _cec !=nil {return _bde .Wrap (_cec ,_dgab ,"\u0073\u0065\u0065\u006b\u0020\u0073\u0074\u0061\u0072\u0074");};if _cec =_abdd .readSegmentNumber (_gdegc );_cec !=nil {return _bde .Wrap (_cec ,_dgab ,""); -};if _cec =_abdd .readHeaderFlags ();_cec !=nil {return _bde .Wrap (_cec ,_dgab ,"");};var _bafc uint64 ;_bafc ,_cec =_abdd .readNumberOfReferredToSegments (_gdegc );if _cec !=nil {return _bde .Wrap (_cec ,_dgab ,"");};_abdd .RTSNumbers ,_cec =_abdd .readReferredToSegmentNumbers (_gdegc ,int (_bafc )); -if _cec !=nil {return _bde .Wrap (_cec ,_dgab ,"");};_cec =_abdd .readSegmentPageAssociation (_bcab ,_gdegc ,_bafc ,_abdd .RTSNumbers ...);if _cec !=nil {return _bde .Wrap (_cec ,_dgab ,"");};if _abdd .Type !=TEndOfFile {if _cec =_abdd .readSegmentDataLength (_gdegc ); -_cec !=nil {return _bde .Wrap (_cec ,_dgab ,"");};};_abdd .readDataStartOffset (_gdegc ,_cfff );_abdd .readHeaderLength (_gdegc ,_feda );_gd .Log .Trace ("\u0025\u0073",_abdd );return nil ;};type TableSegment struct{_aagb *_d .Reader ;_cbade int32 ;_fcbd int32 ; -_gfedg int32 ;_accc int32 ;_dgef int32 ;};func (_bcda *TextRegion )Init (header *Header ,r *_d .Reader )error {_bcda .Header =header ;_bcda ._dcbba =r ;_bcda .RegionInfo =NewRegionSegment (_bcda ._dcbba );return _bcda .parseHeader ();};func (_afbg *TextRegion )createRegionBitmap ()error {_afbg .RegionBitmap =_gc .New (int (_afbg .RegionInfo .BitmapWidth ),int (_afbg .RegionInfo .BitmapHeight )); -if _afbg .DefaultPixel !=0{_afbg .RegionBitmap .SetDefaultPixel ();};return nil ;};func (_cbb *GenericRefinementRegion )overrideAtTemplate0 (_cgc ,_ffea ,_eee ,_fcbf ,_ebc int )int {if _cbb ._gfde [0]{_cgc &=0xfff7;if _cbb .GrAtY [0]==0&&int (_cbb .GrAtX [0])>=-_ebc {_cgc |=(_fcbf >>uint (7-(_ebc +int (_cbb .GrAtX [0])))&0x1)<<3; -}else {_cgc |=_cbb .getPixel (_cbb .RegionBitmap ,_ffea +int (_cbb .GrAtX [0]),_eee +int (_cbb .GrAtY [0]))<<3;};};if _cbb ._gfde [1]{_cgc &=0xefff;if _cbb .GrAtY [1]==0&&int (_cbb .GrAtX [1])>=-_ebc {_cgc |=(_fcbf >>uint (7-(_ebc +int (_cbb .GrAtX [1])))&0x1)<<12; -}else {_cgc |=_cbb .getPixel (_cbb .ReferenceBitmap ,_ffea +int (_cbb .GrAtX [1]),_eee +int (_cbb .GrAtY [1]));};};return _cgc ;};func (_edbg *GenericRegion )decodeLine (_adcd ,_fgge ,_bcf int )error {const _dcbg ="\u0064\u0065\u0063\u006f\u0064\u0065\u004c\u0069\u006e\u0065"; -_fcda :=_edbg .Bitmap .GetByteIndex (0,_adcd );_ggdg :=_fcda -_edbg .Bitmap .RowStride ;switch _edbg .GBTemplate {case 0:if !_edbg .UseExtTemplates {return _edbg .decodeTemplate0a (_adcd ,_fgge ,_bcf ,_fcda ,_ggdg );};return _edbg .decodeTemplate0b (_adcd ,_fgge ,_bcf ,_fcda ,_ggdg ); -case 1:return _edbg .decodeTemplate1 (_adcd ,_fgge ,_bcf ,_fcda ,_ggdg );case 2:return _edbg .decodeTemplate2 (_adcd ,_fgge ,_bcf ,_fcda ,_ggdg );case 3:return _edbg .decodeTemplate3 (_adcd ,_fgge ,_bcf ,_fcda ,_ggdg );};return _bde .Errorf (_dcbg ,"\u0069\u006e\u0076a\u006c\u0069\u0064\u0020G\u0042\u0054\u0065\u006d\u0070\u006c\u0061t\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u003a\u0020\u0025\u0064",_edbg .GBTemplate ); -};func (_gcfe *PatternDictionary )readTemplate ()error {_cae ,_gdbe :=_gcfe ._abegf .ReadBits (2);if _gdbe !=nil {return _gdbe ;};_gcfe .HDTemplate =byte (_cae );return nil ;};func (_egg *PageInformationSegment )readDefaultPixelValue ()error {_fcge ,_eae :=_egg ._acea .ReadBit (); -if _eae !=nil {return _eae ;};_egg .DefaultPixelValue =uint8 (_fcge &0xf);return nil ;};func (_bba *EndOfStripe )LineNumber ()int {return _bba ._dda };func (_gcd *TableSegment )StreamReader ()*_d .Reader {return _gcd ._aagb };type template1 struct{};func (_deab *TextRegion )decodeSymInRefSize ()(int64 ,error ){const _acbd ="\u0064e\u0063o\u0064\u0065\u0053\u0079\u006dI\u006e\u0052e\u0066\u0053\u0069\u007a\u0065"; -if _deab .SbHuffRSize ==0{_gcfb ,_cgeg :=_fc .GetStandardTable (1);if _cgeg !=nil {return 0,_bde .Wrap (_cgeg ,_acbd ,"");};return _gcfb .Decode (_deab ._dcbba );};if _deab ._egfg ==nil {var (_fgcbb int ;_baeb error ;);if _deab .SbHuffFS ==3{_fgcbb ++; -};if _deab .SbHuffDS ==3{_fgcbb ++;};if _deab .SbHuffDT ==3{_fgcbb ++;};if _deab .SbHuffRDWidth ==3{_fgcbb ++;};if _deab .SbHuffRDHeight ==3{_fgcbb ++;};if _deab .SbHuffRDX ==3{_fgcbb ++;};if _deab .SbHuffRDY ==3{_fgcbb ++;};_deab ._egfg ,_baeb =_deab .getUserTable (_fgcbb ); -if _baeb !=nil {return 0,_bde .Wrap (_baeb ,_acbd ,"");};};_feaa ,_cddca :=_deab ._egfg .Decode (_deab ._dcbba );if _cddca !=nil {return 0,_bde .Wrap (_cddca ,_acbd ,"");};return _feaa ,nil ;};func (_fg *GenericRefinementRegion )getGrReference ()(*_gc .Bitmap ,error ){segments :=_fg ._cbc .RTSegments ; -if len (segments )==0{return nil ,_ca .New ("\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0065\u0078is\u0074\u0073");};_ea ,_gag :=segments [0].GetSegmentData (); -if _gag !=nil {return nil ,_gag ;};_dfa ,_gef :=_ea .(Regioner );if !_gef {return nil ,_gg .Errorf ("\u0072\u0065\u0066\u0065\u0072r\u0065\u0064\u0020\u0074\u006f\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0052\u0065\u0067\u0069\u006f\u006e\u0065\u0072\u003a\u0020\u0025\u0054",_ea ); -};return _dfa .GetRegionBitmap ();};func (_gbgc *Header )readReferredToSegmentNumbers (_affb *_d .Reader ,_aad int )([]int ,error ){const _efbcc ="\u0072\u0065\u0061\u0064R\u0065\u0066\u0065\u0072\u0072\u0065\u0064\u0054\u006f\u0053e\u0067m\u0065\u006e\u0074\u004e\u0075\u006d\u0062e\u0072\u0073"; -_aebb :=make ([]int ,_aad );if _aad > 0{_gbgc .RTSegments =make ([]*Header ,_aad );var (_dac uint64 ;_dbda error ;);for _afbd :=0;_afbd < _aad ;_afbd ++{_dac ,_dbda =_affb .ReadBits (byte (_gbgc .referenceSize ())<<3);if _dbda !=nil {return nil ,_bde .Wrapf (_dbda ,_efbcc ,"\u0027\u0025\u0064\u0027 \u0072\u0065\u0066\u0065\u0072\u0072\u0065\u0064\u0020\u0073e\u0067m\u0065\u006e\u0074\u0020\u006e\u0075\u006db\u0065\u0072",_afbd ); -};_aebb [_afbd ]=int (_dac &_b .MaxInt32 );};};return _aebb ,nil ;};func (_ec *GenericRefinementRegion )GetRegionInfo ()*RegionSegment {return _ec .RegionInfo };func (_cdef *PageInformationSegment )readWidthAndHeight ()error {_cgac ,_aedf :=_cdef ._acea .ReadBits (32); -if _aedf !=nil {return _aedf ;};_cdef .PageBMWidth =int (_cgac &_b .MaxInt32 );_cgac ,_aedf =_cdef ._acea .ReadBits (32);if _aedf !=nil {return _aedf ;};_cdef .PageBMHeight =int (_cgac &_b .MaxInt32 );return nil ;};func (_edfe *GenericRegion )setOverrideFlag (_abdf int ){_edfe .GBAtOverride [_abdf ]=true ; -_edfe ._ddge =true ;};func (_deagc *HalftoneRegion )combineGrayscalePlanes (_bgfa []*_gc .Bitmap ,_gdgb int )error {_cda :=0;for _adcf :=0;_adcf < _bgfa [_gdgb ].Height ;_adcf ++{for _cbbg :=0;_cbbg < _bgfa [_gdgb ].Width ;_cbbg +=8{_abbe ,_ecbb :=_bgfa [_gdgb +1].GetByte (_cda ); -if _ecbb !=nil {return _ecbb ;};_acca ,_ecbb :=_bgfa [_gdgb ].GetByte (_cda );if _ecbb !=nil {return _ecbb ;};_ecbb =_bgfa [_gdgb ].SetByte (_cda ,_gc .CombineBytes (_acca ,_abbe ,_gc .CmbOpXor ));if _ecbb !=nil {return _ecbb ;};_cda ++;};};return nil ; -};func (_ded *Header )writeSegmentNumber (_bcbd _d .BinaryWriter )(_dgge int ,_efce error ){_dae :=make ([]byte ,4);_f .BigEndian .PutUint32 (_dae ,_ded .SegmentNumber );if _dgge ,_efce =_bcbd .Write (_dae );_efce !=nil {return 0,_bde .Wrap (_efce ,"\u0048e\u0061\u0064\u0065\u0072.\u0077\u0072\u0069\u0074\u0065S\u0065g\u006de\u006e\u0074\u004e\u0075\u006d\u0062\u0065r",""); -};return _dgge ,nil ;};type EndOfStripe struct{_ggb *_d .Reader ;_dda int ;};func (_beae *TextRegion )decodeRdh ()(int64 ,error ){const _ggdea ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064h";if _beae .IsHuffmanEncoded {if _beae .SbHuffRDHeight ==3{if _beae ._gaeff ==nil {var (_bfabb int ; -_deg error ;);if _beae .SbHuffFS ==3{_bfabb ++;};if _beae .SbHuffDS ==3{_bfabb ++;};if _beae .SbHuffDT ==3{_bfabb ++;};if _beae .SbHuffRDWidth ==3{_bfabb ++;};_beae ._gaeff ,_deg =_beae .getUserTable (_bfabb );if _deg !=nil {return 0,_bde .Wrap (_deg ,_ggdea ,""); -};};return _beae ._gaeff .Decode (_beae ._dcbba );};_cagg ,_dgcd :=_fc .GetStandardTable (14+int (_beae .SbHuffRDHeight ));if _dgcd !=nil {return 0,_bde .Wrap (_dgcd ,_ggdea ,"");};return _cagg .Decode (_beae ._dcbba );};_ebcf ,_gebba :=_beae ._daa .DecodeInt (_beae ._gfcd ); -if _gebba !=nil {return 0,_bde .Wrap (_gebba ,_ggdea ,"");};return int64 (_ebcf ),nil ;};type HalftoneRegion struct{_faa *_d .Reader ;_aab *Header ;DataHeaderOffset int64 ;DataHeaderLength int64 ;DataOffset int64 ;DataLength int64 ;RegionSegment *RegionSegment ; -HDefaultPixel int8 ;CombinationOperator _gc .CombinationOperator ;HSkipEnabled bool ;HTemplate byte ;IsMMREncoded bool ;HGridWidth uint32 ;HGridHeight uint32 ;HGridX int32 ;HGridY int32 ;HRegionX uint16 ;HRegionY uint16 ;HalftoneRegionBitmap *_gc .Bitmap ; -Patterns []*_gc .Bitmap ;};func (_fedb *GenericRefinementRegion )String ()string {_bgf :=&_bd .Builder {};_bgf .WriteString ("\u000a[\u0047E\u004e\u0045\u0052\u0049\u0043 \u0052\u0045G\u0049\u004f\u004e\u005d\u000a");_bgf .WriteString (_fedb .RegionInfo .String ()+"\u000a"); -_bgf .WriteString (_gg .Sprintf ("\u0009\u002d \u0049\u0073\u0054P\u0047\u0052\u006f\u006e\u003a\u0020\u0025\u0076\u000a",_fedb .IsTPGROn ));_bgf .WriteString (_gg .Sprintf ("\u0009-\u0020T\u0065\u006d\u0070\u006c\u0061t\u0065\u0049D\u003a\u0020\u0025\u0076\u000a",_fedb .TemplateID )); -_bgf .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0047\u0072\u0041\u0074\u0058\u003a\u0020\u0025\u0076\u000a",_fedb .GrAtX ));_bgf .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0047\u0072\u0041\u0074\u0059\u003a\u0020\u0025\u0076\u000a",_fedb .GrAtY )); -_bgf .WriteString (_gg .Sprintf ("\u0009-\u0020R\u0065\u0066\u0065\u0072\u0065n\u0063\u0065D\u0058\u0020\u0025\u0076\u000a",_fedb .ReferenceDX ));_bgf .WriteString (_gg .Sprintf ("\u0009\u002d\u0020\u0052ef\u0065\u0072\u0065\u006e\u0063\u0044\u0065\u0059\u003a\u0020\u0025\u0076\u000a",_fedb .ReferenceDY )); -return _bgf .String ();};func (_cfab *SymbolDictionary )setExportedSymbols (_gac []int ){for _ebae :=uint32 (0);_ebae < _cfab ._bcgg +_cfab .NumberOfNewSymbols ;_ebae ++{if _gac [_ebae ]==1{var _fbcd *_gc .Bitmap ;if _ebae < _cfab ._bcgg {_fbcd =_cfab ._dcfaf [_ebae ]; -}else {_fbcd =_cfab ._bae [_ebae -_cfab ._bcgg ];};_gd .Log .Trace ("\u005bS\u0059\u004dB\u004f\u004c\u002d\u0044I\u0043\u0054\u0049O\u004e\u0041\u0052\u0059\u005d\u0020\u0041\u0064\u0064 E\u0078\u0070\u006fr\u0074\u0065d\u0053\u0079\u006d\u0062\u006f\u006c:\u0020\u0027%\u0073\u0027",_fbcd ); -_cfab ._cgef =append (_cfab ._cgef ,_fbcd );};};};type EncodeInitializer interface{InitEncode ();};func (_efcf *SymbolDictionary )decodeHeightClassBitmap (_ddgbg *_gc .Bitmap ,_bggf int64 ,_ccc int ,_cffcg []int )error {for _aceb :=_bggf ;_aceb < int64 (_efcf ._bdbb ); -_aceb ++{var _aefc int ;for _gead :=_bggf ;_gead <=_aceb -1;_gead ++{_aefc +=_cffcg [_gead ];};_gfa :=_be .Rect (_aefc ,0,_aefc +_cffcg [_aceb ],_ccc );_faag ,_cfcea :=_gc .Extract (_gfa ,_ddgbg );if _cfcea !=nil {return _cfcea ;};_efcf ._bae [_aceb ]=_faag ; -_efcf ._ceea =append (_efcf ._ceea ,_faag );};return nil ;}; \ No newline at end of file +case TBitmap :return "\u0042\u0069\u0074\u006d\u0061\u0070";};return "I\u006ev\u0061\u006c\u0069\u0064\u0020\u0053\u0065\u0067m\u0065\u006e\u0074\u0020Ki\u006e\u0064";};func (_dbgd *GenericRegion )overrideAtTemplate1 (_bbg ,_gag ,_aac ,_ddcc ,_cfcb int )int {_bbg &=0x1FF7; +if _dbgd .GBAtY [0]==0&&_dbgd .GBAtX [0]>=-int8 (_cfcb ){_bbg |=(_ddcc >>uint (7-(int8 (_cfcb )+_dbgd .GBAtX [0]))&0x1)<<3;}else {_bbg |=int (_dbgd .getPixel (_gag +int (_dbgd .GBAtX [0]),_aac +int (_dbgd .GBAtY [0])))<<3;};return _bbg ;};func (_bffb *SymbolDictionary )readNumberOfExportedSymbols ()error {_fagf ,_cbag :=_bffb ._caba .ReadBits (32); +if _cbag !=nil {return _cbag ;};_bffb .NumberOfExportedSymbols =uint32 (_fagf &_e .MaxUint32 );return nil ;};func (_bddb *GenericRegion )decodeTemplate2 (_efc ,_aeg ,_gef int ,_ddfg ,_fde int )(_aadg error ){const _efge ="\u0064e\u0063o\u0064\u0065\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0032"; +var (_bfdf ,_gbbc int ;_fbdg ,_fab int ;_caaec byte ;_agfg ,_bcd int ;);if _efc >=1{_caaec ,_aadg =_bddb .Bitmap .GetByte (_fde );if _aadg !=nil {return _edb .Wrap (_aadg ,_efge ,"\u006ci\u006ee\u004e\u0075\u006d\u0062\u0065\u0072\u0020\u003e\u003d\u0020\u0031"); +};_fbdg =int (_caaec );};if _efc >=2{_caaec ,_aadg =_bddb .Bitmap .GetByte (_fde -_bddb .Bitmap .RowStride );if _aadg !=nil {return _edb .Wrap (_aadg ,_efge ,"\u006ci\u006ee\u004e\u0075\u006d\u0062\u0065\u0072\u0020\u003e\u003d\u0020\u0032");};_fab =int (_caaec )<<4; +};_bfdf =(_fbdg >>3&0x7c)|(_fab >>3&0x380);for _efgg :=0;_efgg < _gef ;_efgg =_agfg {var (_fafe byte ;_fgga int ;);_agfg =_efgg +8;if _aegb :=_aeg -_efgg ;_aegb > 8{_fgga =8;}else {_fgga =_aegb ;};if _efc > 0{_fbdg <<=8;if _agfg < _aeg {_caaec ,_aadg =_bddb .Bitmap .GetByte (_fde +1); +if _aadg !=nil {return _edb .Wrap (_aadg ,_efge ,"\u006c\u0069\u006e\u0065\u004e\u0075\u006d\u0062\u0065r\u0020\u003e\u0020\u0030");};_fbdg |=int (_caaec );};};if _efc > 1{_fab <<=8;if _agfg < _aeg {_caaec ,_aadg =_bddb .Bitmap .GetByte (_fde -_bddb .Bitmap .RowStride +1); +if _aadg !=nil {return _edb .Wrap (_aadg ,_efge ,"\u006c\u0069\u006e\u0065\u004e\u0075\u006d\u0062\u0065r\u0020\u003e\u0020\u0031");};_fab |=int (_caaec )<<4;};};for _afad :=0;_afad < _fgga ;_afad ++{_bgag :=uint (10-_afad );if _bddb ._cab {_gbbc =_bddb .overrideAtTemplate2 (_bfdf ,_efgg +_afad ,_efc ,int (_fafe ),_afad ); +_bddb ._fac .SetIndex (int32 (_gbbc ));}else {_bddb ._fac .SetIndex (int32 (_bfdf ));};_bcd ,_aadg =_bddb ._ddga .DecodeBit (_bddb ._fac );if _aadg !=nil {return _edb .Wrap (_aadg ,_efge ,"");};_fafe |=byte (_bcd <>_bgag )&0x4)|((_fab >>_bgag )&0x80); +};if _aaee :=_bddb .Bitmap .SetByte (_ddfg ,_fafe );_aaee !=nil {return _edb .Wrap (_aaee ,_efge ,"");};_ddfg ++;_fde ++;};return nil ;};type template1 struct{};func (_bbabb *HalftoneRegion )parseHeader ()error {if _ggag :=_bbabb .RegionSegment .parseHeader (); +_ggag !=nil {return _ggag ;};_gecg ,_eaeg :=_bbabb ._fagd .ReadBit ();if _eaeg !=nil {return _eaeg ;};_bbabb .HDefaultPixel =int8 (_gecg );_degd ,_eaeg :=_bbabb ._fagd .ReadBits (3);if _eaeg !=nil {return _eaeg ;};_bbabb .CombinationOperator =_gf .CombinationOperator (_degd &0xf); +_gecg ,_eaeg =_bbabb ._fagd .ReadBit ();if _eaeg !=nil {return _eaeg ;};if _gecg ==1{_bbabb .HSkipEnabled =true ;};_degd ,_eaeg =_bbabb ._fagd .ReadBits (2);if _eaeg !=nil {return _eaeg ;};_bbabb .HTemplate =byte (_degd &0xf);_gecg ,_eaeg =_bbabb ._fagd .ReadBit (); +if _eaeg !=nil {return _eaeg ;};if _gecg ==1{_bbabb .IsMMREncoded =true ;};_degd ,_eaeg =_bbabb ._fagd .ReadBits (32);if _eaeg !=nil {return _eaeg ;};_bbabb .HGridWidth =uint32 (_degd &_e .MaxUint32 );_degd ,_eaeg =_bbabb ._fagd .ReadBits (32);if _eaeg !=nil {return _eaeg ; +};_bbabb .HGridHeight =uint32 (_degd &_e .MaxUint32 );_degd ,_eaeg =_bbabb ._fagd .ReadBits (32);if _eaeg !=nil {return _eaeg ;};_bbabb .HGridX =int32 (_degd &_e .MaxInt32 );_degd ,_eaeg =_bbabb ._fagd .ReadBits (32);if _eaeg !=nil {return _eaeg ;};_bbabb .HGridY =int32 (_degd &_e .MaxInt32 ); +_degd ,_eaeg =_bbabb ._fagd .ReadBits (16);if _eaeg !=nil {return _eaeg ;};_bbabb .HRegionX =uint16 (_degd &_e .MaxUint16 );_degd ,_eaeg =_bbabb ._fagd .ReadBits (16);if _eaeg !=nil {return _eaeg ;};_bbabb .HRegionY =uint16 (_degd &_e .MaxUint16 );if _eaeg =_bbabb .computeSegmentDataStructure (); +_eaeg !=nil {return _eaeg ;};return _bbabb .checkInput ();};func (_bcgd *Header )CleanSegmentData (){if _bcgd .SegmentData !=nil {_bcgd .SegmentData =nil ;};};func (_dabbc *SymbolDictionary )decodeDirectlyThroughGenericRegion (_eec ,_bfdad uint32 )error {if _dabbc ._ddcgf ==nil {_dabbc ._ddcgf =NewGenericRegion (_dabbc ._caba ); +};_dabbc ._ddcgf .setParametersWithAt (false ,byte (_dabbc .SdTemplate ),false ,false ,_dabbc .SdATX ,_dabbc .SdATY ,_eec ,_bfdad ,_dabbc ._afbd ,_dabbc ._dgcb );return _dabbc .addSymbol (_dabbc ._ddcgf );};func (_ddd *template1 )form (_cced ,_acd ,_bgfg ,_dcc ,_agc int16 )int16 {return ((_cced &0x02)<<8)|(_acd <<6)|((_bgfg &0x03)<<4)|(_dcc <<1)|_agc ; +};func (_caad *PageInformationSegment )Init (h *Header ,r *_g .Reader )(_fdcd error ){_caad ._faef =r ;if _fdcd =_caad .parseHeader ();_fdcd !=nil {return _edb .Wrap (_fdcd ,"P\u0061\u0067\u0065\u0049\u006e\u0066o\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0053\u0065g\u006d\u0065\u006et\u002eI\u006e\u0069\u0074",""); +};return nil ;};func (_egeb *PatternDictionary )readIsMMREncoded ()error {_gbeb ,_afga :=_egeb ._dbec .ReadBit ();if _afga !=nil {return _afga ;};if _gbeb !=0{_egeb .IsMMREncoded =true ;};return nil ;};func (_defb *SymbolDictionary )encodeATFlags (_cgddc _g .BinaryWriter )(_dfad int ,_egc error ){const _gfeeb ="\u0065\u006e\u0063\u006f\u0064\u0065\u0041\u0054\u0046\u006c\u0061\u0067\u0073"; +if _defb .IsHuffmanEncoded ||_defb .SdTemplate !=0{return 0,nil ;};_ccga :=4;if _defb .SdTemplate !=0{_ccga =1;};for _ffaa :=0;_ffaa < _ccga ;_ffaa ++{if _egc =_cgddc .WriteByte (byte (_defb .SdATX [_ffaa ]));_egc !=nil {return _dfad ,_edb .Wrapf (_egc ,_gfeeb ,"\u0053d\u0041\u0054\u0058\u005b\u0025\u0064]",_ffaa ); +};_dfad ++;if _egc =_cgddc .WriteByte (byte (_defb .SdATY [_ffaa ]));_egc !=nil {return _dfad ,_edb .Wrapf (_egc ,_gfeeb ,"\u0053d\u0041\u0054\u0059\u005b\u0025\u0064]",_ffaa );};_dfad ++;};return _dfad ,nil ;};type Header struct{SegmentNumber uint32 ; +Type Type ;RetainFlag bool ;PageAssociation int ;PageAssociationFieldSize bool ;RTSegments []*Header ;HeaderLength int64 ;SegmentDataLength uint64 ;SegmentDataStartOffset uint64 ;Reader *_g .Reader ;SegmentData Segmenter ;RTSNumbers []int ;RetainBits []uint8 ; +};func (_gaef *SymbolDictionary )getSbSymCodeLen ()int8 {_fabe :=int8 (_e .Ceil (_e .Log (float64 (_gaef ._gfg +_gaef .NumberOfNewSymbols ))/_e .Log (2)));if _gaef .IsHuffmanEncoded &&_fabe < 1{return 1;};return _fabe ;};func (_bacf *SymbolDictionary )encodeNumSyms (_aegg _g .BinaryWriter )(_fgcbc int ,_gefe error ){const _fdffe ="\u0065\u006e\u0063\u006f\u0064\u0065\u004e\u0075\u006d\u0053\u0079\u006d\u0073"; +_gfdbg :=make ([]byte ,4);_ag .BigEndian .PutUint32 (_gfdbg ,_bacf .NumberOfExportedSymbols );if _fgcbc ,_gefe =_aegg .Write (_gfdbg );_gefe !=nil {return _fgcbc ,_edb .Wrap (_gefe ,_fdffe ,"\u0065\u0078p\u006f\u0072\u0074e\u0064\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0073"); +};_ag .BigEndian .PutUint32 (_gfdbg ,_bacf .NumberOfNewSymbols );_ggdg ,_gefe :=_aegg .Write (_gfdbg );if _gefe !=nil {return _fgcbc ,_edb .Wrap (_gefe ,_fdffe ,"n\u0065\u0077\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0073");};return _fgcbc +_ggdg ,nil ; +};func (_caf *HalftoneRegion )GetRegionInfo ()*RegionSegment {return _caf .RegionSegment };func (_daba *PageInformationSegment )readCombinationOperator ()error {_fdg ,_acbf :=_daba ._faef .ReadBits (2);if _acbf !=nil {return _acbf ;};_daba ._dbcd =_gf .CombinationOperator (int (_fdg )); +return nil ;};func (_eff *template1 )setIndex (_bgb *_df .DecoderStats ){_bgb .SetIndex (0x080)};func (_dgda *TextRegion )Encode (w _g .BinaryWriter )(_fffb int ,_bcgda error ){const _affb ="\u0054\u0065\u0078\u0074\u0052\u0065\u0067\u0069\u006f\u006e\u002e\u0045n\u0063\u006f\u0064\u0065"; +if _fffb ,_bcgda =_dgda .RegionInfo .Encode (w );_bcgda !=nil {return _fffb ,_edb .Wrap (_bcgda ,_affb ,"");};var _eccd int ;if _eccd ,_bcgda =_dgda .encodeFlags (w );_bcgda !=nil {return _fffb ,_edb .Wrap (_bcgda ,_affb ,"");};_fffb +=_eccd ;if _eccd ,_bcgda =_dgda .encodeSymbols (w ); +_bcgda !=nil {return _fffb ,_edb .Wrap (_bcgda ,_affb ,"");};_fffb +=_eccd ;return _fffb ,nil ;};func (_gae *GenericRegion )writeGBAtPixels (_ccaf _g .BinaryWriter )(_cdf int ,_acbe error ){const _cagg ="\u0077r\u0069t\u0065\u0047\u0042\u0041\u0074\u0050\u0069\u0078\u0065\u006c\u0073"; +if _gae .UseMMR {return 0,nil ;};_caac :=1;if _gae .GBTemplate ==0{_caac =4;}else if _gae .UseExtTemplates {_caac =12;};if len (_gae .GBAtX )!=_caac {return 0,_edb .Errorf (_cagg ,"\u0067\u0062\u0020\u0061\u0074\u0020\u0070\u0061\u0069\u0072\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020d\u006f\u0065\u0073\u006e\u0027\u0074\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0047\u0042\u0041t\u0058\u0020\u0073\u006c\u0069\u0063\u0065\u0020\u006c\u0065\u006e"); +};if len (_gae .GBAtY )!=_caac {return 0,_edb .Errorf (_cagg ,"\u0067\u0062\u0020\u0061\u0074\u0020\u0070\u0061\u0069\u0072\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020d\u006f\u0065\u0073\u006e\u0027\u0074\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0047\u0042\u0041t\u0059\u0020\u0073\u006c\u0069\u0063\u0065\u0020\u006c\u0065\u006e"); +};for _eed :=0;_eed < _caac ;_eed ++{if _acbe =_ccaf .WriteByte (byte (_gae .GBAtX [_eed ]));_acbe !=nil {return _cdf ,_edb .Wrap (_acbe ,_cagg ,"w\u0072\u0069\u0074\u0065\u0020\u0047\u0042\u0041\u0074\u0058");};_cdf ++;if _acbe =_ccaf .WriteByte (byte (_gae .GBAtY [_eed ])); +_acbe !=nil {return _cdf ,_edb .Wrap (_acbe ,_cagg ,"w\u0072\u0069\u0074\u0065\u0020\u0047\u0042\u0041\u0074\u0059");};_cdf ++;};return _cdf ,nil ;};func (_fec *GenericRegion )Size ()int {return _fec .RegionSegment .Size ()+1+2*len (_fec .GBAtX )};func (_aacb *HalftoneRegion )checkInput ()error {if _aacb .IsMMREncoded {if _aacb .HTemplate !=0{_aae .Log .Debug ("\u0048\u0054\u0065\u006d\u0070l\u0061\u0074\u0065\u0020\u003d\u0020\u0025\u0064\u0020\u0073\u0068\u006f\u0075l\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0030",_aacb .HTemplate ); +};if _aacb .HSkipEnabled {_aae .Log .Debug ("\u0048\u0053\u006b\u0069\u0070\u0045\u006e\u0061\u0062\u006c\u0065\u0064\u0020\u0030\u0020\u0025\u0076\u0020(\u0073\u0068\u006f\u0075\u006c\u0064\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u0029",_aacb .HSkipEnabled ); +};};return nil ;};func (_adgd *TextRegion )decodeSymInRefSize ()(int64 ,error ){const _dacac ="\u0064e\u0063o\u0064\u0065\u0053\u0079\u006dI\u006e\u0052e\u0066\u0053\u0069\u007a\u0065";if _adgd .SbHuffRSize ==0{_aedbd ,_bfga :=_fa .GetStandardTable (1); +if _bfga !=nil {return 0,_edb .Wrap (_bfga ,_dacac ,"");};return _aedbd .Decode (_adgd ._ecc );};if _adgd ._efgefe ==nil {var (_ccdf int ;_efba error ;);if _adgd .SbHuffFS ==3{_ccdf ++;};if _adgd .SbHuffDS ==3{_ccdf ++;};if _adgd .SbHuffDT ==3{_ccdf ++; +};if _adgd .SbHuffRDWidth ==3{_ccdf ++;};if _adgd .SbHuffRDHeight ==3{_ccdf ++;};if _adgd .SbHuffRDX ==3{_ccdf ++;};if _adgd .SbHuffRDY ==3{_ccdf ++;};_adgd ._efgefe ,_efba =_adgd .getUserTable (_ccdf );if _efba !=nil {return 0,_edb .Wrap (_efba ,_dacac ,""); +};};_dddbb ,_gbce :=_adgd ._efgefe .Decode (_adgd ._ecc );if _gbce !=nil {return 0,_edb .Wrap (_gbce ,_dacac ,"");};return _dddbb ,nil ;};func (_bae *SymbolDictionary )huffDecodeBmSize ()(int64 ,error ){if _bae ._ccbc ==nil {var (_faca int ;_abag error ; +);if _bae .SdHuffDecodeHeightSelection ==3{_faca ++;};if _bae .SdHuffDecodeWidthSelection ==3{_faca ++;};_bae ._ccbc ,_abag =_bae .getUserTable (_faca );if _abag !=nil {return 0,_abag ;};};return _bae ._ccbc .Decode (_bae ._caba );};func (_ggf *GenericRegion )updateOverrideFlags ()error {const _ege ="\u0075\u0070\u0064\u0061te\u004f\u0076\u0065\u0072\u0072\u0069\u0064\u0065\u0046\u006c\u0061\u0067\u0073"; +if _ggf .GBAtX ==nil ||_ggf .GBAtY ==nil {return nil ;};if len (_ggf .GBAtX )!=len (_ggf .GBAtY ){return _edb .Errorf (_ege ,"i\u006eco\u0073i\u0073t\u0065\u006e\u0074\u0020\u0041T\u0020\u0070\u0069x\u0065\u006c\u002e\u0020\u0041m\u006f\u0075\u006et\u0020\u006f\u0066\u0020\u0027\u0078\u0027\u0020\u0070\u0069\u0078e\u006c\u0073\u003a %d\u002c\u0020\u0041\u006d\u006f\u0075n\u0074\u0020\u006f\u0066\u0020\u0027\u0079\u0027\u0020\u0070\u0069\u0078e\u006cs\u003a\u0020\u0025\u0064",len (_ggf .GBAtX ),len (_ggf .GBAtY )); +};_ggf .GBAtOverride =make ([]bool ,len (_ggf .GBAtX ));switch _ggf .GBTemplate {case 0:if !_ggf .UseExtTemplates {if _ggf .GBAtX [0]!=3||_ggf .GBAtY [0]!=-1{_ggf .setOverrideFlag (0);};if _ggf .GBAtX [1]!=-3||_ggf .GBAtY [1]!=-1{_ggf .setOverrideFlag (1); +};if _ggf .GBAtX [2]!=2||_ggf .GBAtY [2]!=-2{_ggf .setOverrideFlag (2);};if _ggf .GBAtX [3]!=-2||_ggf .GBAtY [3]!=-2{_ggf .setOverrideFlag (3);};}else {if _ggf .GBAtX [0]!=-2||_ggf .GBAtY [0]!=0{_ggf .setOverrideFlag (0);};if _ggf .GBAtX [1]!=0||_ggf .GBAtY [1]!=-2{_ggf .setOverrideFlag (1); +};if _ggf .GBAtX [2]!=-2||_ggf .GBAtY [2]!=-1{_ggf .setOverrideFlag (2);};if _ggf .GBAtX [3]!=-1||_ggf .GBAtY [3]!=-2{_ggf .setOverrideFlag (3);};if _ggf .GBAtX [4]!=1||_ggf .GBAtY [4]!=-2{_ggf .setOverrideFlag (4);};if _ggf .GBAtX [5]!=2||_ggf .GBAtY [5]!=-1{_ggf .setOverrideFlag (5); +};if _ggf .GBAtX [6]!=-3||_ggf .GBAtY [6]!=0{_ggf .setOverrideFlag (6);};if _ggf .GBAtX [7]!=-4||_ggf .GBAtY [7]!=0{_ggf .setOverrideFlag (7);};if _ggf .GBAtX [8]!=2||_ggf .GBAtY [8]!=-2{_ggf .setOverrideFlag (8);};if _ggf .GBAtX [9]!=3||_ggf .GBAtY [9]!=-1{_ggf .setOverrideFlag (9); +};if _ggf .GBAtX [10]!=-2||_ggf .GBAtY [10]!=-2{_ggf .setOverrideFlag (10);};if _ggf .GBAtX [11]!=-3||_ggf .GBAtY [11]!=-1{_ggf .setOverrideFlag (11);};};case 1:if _ggf .GBAtX [0]!=3||_ggf .GBAtY [0]!=-1{_ggf .setOverrideFlag (0);};case 2:if _ggf .GBAtX [0]!=2||_ggf .GBAtY [0]!=-1{_ggf .setOverrideFlag (0); +};case 3:if _ggf .GBAtX [0]!=2||_ggf .GBAtY [0]!=-1{_ggf .setOverrideFlag (0);};};return nil ;};func (_cgce *PageInformationSegment )readRequiresAuxiliaryBuffer ()error {_gcc ,_bfbd :=_cgce ._faef .ReadBit ();if _bfbd !=nil {return _bfbd ;};if _gcc ==1{_cgce ._cbdc =true ; +};return nil ;};var _ _fa .BasicTabler =&TableSegment {};func (_fdbg *TableSegment )parseHeader ()error {var (_bcbg int ;_fgbb uint64 ;_gbac error ;);_bcbg ,_gbac =_fdbg ._dgdg .ReadBit ();if _gbac !=nil {return _gbac ;};if _bcbg ==1{return _af .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0061\u0062\u006c\u0065 \u0073\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u0064e\u0066\u0069\u006e\u0069\u0074\u0069\u006f\u006e\u002e\u0020\u0042\u002e\u0032\u002e1\u0020\u0043\u006f\u0064\u0065\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u0066\u006c\u0061\u0067\u0073\u003a\u0020\u0042\u0069\u0074\u0020\u0037\u0020\u006d\u0075\u0073\u0074\u0020b\u0065\u0020\u007a\u0065\u0072\u006f\u002e\u0020\u0057a\u0073\u003a \u0025\u0064",_bcbg ); +};if _fgbb ,_gbac =_fdbg ._dgdg .ReadBits (3);_gbac !=nil {return _gbac ;};_fdbg ._efee =(int32 (_fgbb )+1)&0xf;if _fgbb ,_gbac =_fdbg ._dgdg .ReadBits (3);_gbac !=nil {return _gbac ;};_fdbg ._facaf =(int32 (_fgbb )+1)&0xf;if _fgbb ,_gbac =_fdbg ._dgdg .ReadBits (32); +_gbac !=nil {return _gbac ;};_fdbg ._effba =int32 (_fgbb &_e .MaxInt32 );if _fgbb ,_gbac =_fdbg ._dgdg .ReadBits (32);_gbac !=nil {return _gbac ;};_fdbg ._dgaf =int32 (_fgbb &_e .MaxInt32 );return nil ;};func (_effg *SymbolDictionary )getUserTable (_aeff int )(_fa .Tabler ,error ){var _effc int ; +for _ ,_bbf :=range _effg .Header .RTSegments {if _bbf .Type ==53{if _effc ==_aeff {_dcfb ,_eddad :=_bbf .GetSegmentData ();if _eddad !=nil {return nil ,_eddad ;};_eecb :=_dcfb .(_fa .BasicTabler );return _fa .NewEncodedTable (_eecb );};_effc ++;};};return nil ,nil ; +};func (_bcab *TextRegion )getSymbols ()error {if _bcab .Header .RTSegments !=nil {return _bcab .initSymbols ();};return nil ;};func (_edga *Header )GetSegmentData ()(Segmenter ,error ){var _edfe Segmenter ;if _edga .SegmentData !=nil {_edfe =_edga .SegmentData ; +};if _edfe ==nil {_acff ,_dfcc :=_ggdf [_edga .Type ];if !_dfcc {return nil ,_af .Errorf ("\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0073\u002f\u0020\u0025\u0064\u0020\u0063\u0072e\u0061t\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e\u0020",_edga .Type ,_edga .Type ); +};_edfe =_acff ();_aae .Log .Trace ("\u005b\u0053E\u0047\u004d\u0045\u004e\u0054-\u0048\u0045\u0041\u0044\u0045R\u005d\u005b\u0023\u0025\u0064\u005d\u0020\u0047\u0065\u0074\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0044\u0061\u0074\u0061\u0020\u0061\u0074\u0020\u004f\u0066\u0066\u0073\u0065\u0074\u003a\u0020\u0025\u0030\u0034\u0058",_edga .SegmentNumber ,_edga .SegmentDataStartOffset ); +_gbd ,_cgec :=_edga .subInputReader ();if _cgec !=nil {return nil ,_cgec ;};if _cbde :=_edfe .Init (_edga ,_gbd );_cbde !=nil {_aae .Log .Debug ("\u0049\u006e\u0069\u0074 \u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076 \u0066o\u0072\u0020\u0074\u0079\u0070\u0065\u003a \u0025\u0054",_cbde ,_edfe ); +return nil ,_cbde ;};_edga .SegmentData =_edfe ;};return _edfe ,nil ;};func (_acgg *SymbolDictionary )encodeFlags (_cadb _g .BinaryWriter )(_bfacd int ,_aadgc error ){const _faff ="e\u006e\u0063\u006f\u0064\u0065\u0046\u006c\u0061\u0067\u0073";if _aadgc =_cadb .SkipBits (3); +_aadgc !=nil {return 0,_edb .Wrap (_aadgc ,_faff ,"\u0065\u006d\u0070\u0074\u0079\u0020\u0062\u0069\u0074\u0073");};var _afd int ;if _acgg .SdrTemplate > 0{_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"s\u0064\u0072\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065"); +};_afd =0;if _acgg .SdTemplate > 1{_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};_afd =0;if _acgg .SdTemplate ==1||_acgg .SdTemplate ==3{_afd =1; +};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065");};_afd =0;if _acgg ._dedee {_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0063\u006f\u0064in\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0072\u0065\u0074\u0061\u0069\u006e\u0065\u0064"); +};_afd =0;if _acgg ._bddf {_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0063\u006f\u0064\u0069ng\u0020\u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0075\u0073\u0065\u0064");};_afd =0;if _acgg .SdHuffAggInstanceSelection {_afd =1; +};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0048\u0075\u0066\u0066\u0041\u0067\u0067\u0049\u006e\u0073\u0074");};_afd =int (_acgg .SdHuffBMSizeSelection );if _aadgc =_cadb .WriteBit (_afd ); +_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0048u\u0066\u0066\u0042\u006d\u0053\u0069\u007a\u0065");};_afd =0;if _acgg .SdHuffDecodeWidthSelection > 1{_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"s\u0064\u0048\u0075\u0066\u0066\u0057\u0069\u0064\u0074\u0068"); +};_afd =0;switch _acgg .SdHuffDecodeWidthSelection {case 1,3:_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"s\u0064\u0048\u0075\u0066\u0066\u0057\u0069\u0064\u0074\u0068");};_afd =0;if _acgg .SdHuffDecodeHeightSelection > 1{_afd =1; +};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0048u\u0066\u0066\u0048\u0065\u0069\u0067\u0068\u0074");};_afd =0;switch _acgg .SdHuffDecodeHeightSelection {case 1,3:_afd =1;};if _aadgc =_cadb .WriteBit (_afd ); +_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0048u\u0066\u0066\u0048\u0065\u0069\u0067\u0068\u0074");};_afd =0;if _acgg .UseRefinementAggregation {_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0052\u0065\u0066\u0041\u0067\u0067"); +};_afd =0;if _acgg .IsHuffmanEncoded {_afd =1;};if _aadgc =_cadb .WriteBit (_afd );_aadgc !=nil {return _bfacd ,_edb .Wrap (_aadgc ,_faff ,"\u0073\u0064\u0048\u0075\u0066\u0066");};return 2,nil ;};func (_fcfa *TextRegion )readHuffmanFlags ()error {var (_eggd int ; +_ffgd uint64 ;_aggfc error ;);_ ,_aggfc =_fcfa ._ecc .ReadBit ();if _aggfc !=nil {return _aggfc ;};_eggd ,_aggfc =_fcfa ._ecc .ReadBit ();if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffRSize =int8 (_eggd );_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2);if _aggfc !=nil {return _aggfc ; +};_fcfa .SbHuffRDY =int8 (_ffgd )&0xf;_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2);if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffRDX =int8 (_ffgd )&0xf;_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2);if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffRDHeight =int8 (_ffgd )&0xf; +_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2);if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffRDWidth =int8 (_ffgd )&0xf;_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2);if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffDT =int8 (_ffgd )&0xf;_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2); +if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffDS =int8 (_ffgd )&0xf;_ffgd ,_aggfc =_fcfa ._ecc .ReadBits (2);if _aggfc !=nil {return _aggfc ;};_fcfa .SbHuffFS =int8 (_ffgd )&0xf;return nil ;};func (_gaae *Header )String ()string {_aaab :=&_d .Builder {}; +_aaab .WriteString ("\u000a[\u0053E\u0047\u004d\u0045\u004e\u0054-\u0048\u0045A\u0044\u0045\u0052\u005d\u000a");_aaab .WriteString (_af .Sprintf ("\t\u002d\u0020\u0053\u0065gm\u0065n\u0074\u004e\u0075\u006d\u0062e\u0072\u003a\u0020\u0025\u0076\u000a",_gaae .SegmentNumber )); +_aaab .WriteString (_af .Sprintf ("\u0009\u002d\u0020T\u0079\u0070\u0065\u003a\u0020\u0025\u0076\u000a",_gaae .Type ));_aaab .WriteString (_af .Sprintf ("\u0009-\u0020R\u0065\u0074\u0061\u0069\u006eF\u006c\u0061g\u003a\u0020\u0025\u0076\u000a",_gaae .RetainFlag )); +_aaab .WriteString (_af .Sprintf ("\u0009\u002d\u0020Pa\u0067\u0065\u0041\u0073\u0073\u006f\u0063\u0069\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076\u000a",_gaae .PageAssociation ));_aaab .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0050\u0061\u0067\u0065\u0041\u0073\u0073\u006f\u0063\u0069\u0061\u0074i\u006fn\u0046\u0069\u0065\u006c\u0064\u0053\u0069\u007a\u0065\u003a\u0020\u0025\u0076\u000a",_gaae .PageAssociationFieldSize )); +_aaab .WriteString ("\u0009-\u0020R\u0054\u0053\u0045\u0047\u004d\u0045\u004e\u0054\u0053\u003a\u000a");for _ ,_acag :=range _gaae .RTSNumbers {_aaab .WriteString (_af .Sprintf ("\u0009\t\u002d\u0020\u0025\u0064\u000a",_acag ));};_aaab .WriteString (_af .Sprintf ("\t\u002d \u0048\u0065\u0061\u0064\u0065\u0072\u004c\u0065n\u0067\u0074\u0068\u003a %\u0076\u000a",_gaae .HeaderLength )); +_aaab .WriteString (_af .Sprintf ("\u0009-\u0020\u0053\u0065\u0067m\u0065\u006e\u0074\u0044\u0061t\u0061L\u0065n\u0067\u0074\u0068\u003a\u0020\u0025\u0076\n",_gaae .SegmentDataLength ));_aaab .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074D\u0061\u0074\u0061\u0053\u0074\u0061\u0072t\u004f\u0066\u0066\u0073\u0065\u0074\u003a\u0020\u0025\u0076\u000a",_gaae .SegmentDataStartOffset )); +return _aaab .String ();};type Pager interface{GetSegment (int )(*Header ,error );GetBitmap ()(*_gf .Bitmap ,error );};func (_eef *GenericRegion )parseHeader ()(_fca error ){_aae .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052I\u0043\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0050\u0061\u0072s\u0069\u006e\u0067\u0048\u0065\u0061\u0064e\u0072\u002e\u002e\u002e"); +defer func (){if _fca !=nil {_aae .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0047\u0049\u004f\u004e]\u0020\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0048\u0065\u0061\u0064\u0065r\u0020\u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u0020\u0077\u0069th\u0020\u0065\u0072\u0072\u006f\u0072\u002e\u0020\u0025\u0076",_fca ); +}else {_aae .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049C\u002d\u0052\u0045G\u0049\u004f\u004e]\u0020\u0050a\u0072\u0073\u0069\u006e\u0067\u0048e\u0061de\u0072\u0020\u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u0020\u0053\u0075\u0063\u0063\u0065\u0073\u0073\u0066\u0075\u006c\u006c\u0079\u002e\u002e\u002e"); +};}();var (_bgac int ;_gba uint64 ;);if _fca =_eef .RegionSegment .parseHeader ();_fca !=nil {return _fca ;};if _ ,_fca =_eef ._efeg .ReadBits (3);_fca !=nil {return _fca ;};_bgac ,_fca =_eef ._efeg .ReadBit ();if _fca !=nil {return _fca ;};if _bgac ==1{_eef .UseExtTemplates =true ; +};_bgac ,_fca =_eef ._efeg .ReadBit ();if _fca !=nil {return _fca ;};if _bgac ==1{_eef .IsTPGDon =true ;};_gba ,_fca =_eef ._efeg .ReadBits (2);if _fca !=nil {return _fca ;};_eef .GBTemplate =byte (_gba &0xf);_bgac ,_fca =_eef ._efeg .ReadBit ();if _fca !=nil {return _fca ; +};if _bgac ==1{_eef .IsMMREncoded =true ;};if !_eef .IsMMREncoded {_dee :=1;if _eef .GBTemplate ==0{_dee =4;if _eef .UseExtTemplates {_dee =12;};};if _fca =_eef .readGBAtPixels (_dee );_fca !=nil {return _fca ;};};if _fca =_eef .computeSegmentDataStructure (); +_fca !=nil {return _fca ;};_aae .Log .Trace ("\u0025\u0073",_eef );return nil ;};func (_bfe *PatternDictionary )Init (h *Header ,r *_g .Reader )error {_bfe ._dbec =r ;return _bfe .parseHeader ();};func (_fbdce *SymbolDictionary )decodeHeightClassCollectiveBitmap (_cbfc int64 ,_dbgcf ,_dcde uint32 )(*_gf .Bitmap ,error ){if _cbfc ==0{_fgcc :=_gf .New (int (_dcde ),int (_dbgcf )); +var (_dbfgc byte ;_ddbg error ;);for _baaa :=0;_baaa < len (_fgcc .Data );_baaa ++{_dbfgc ,_ddbg =_fbdce ._caba .ReadByte ();if _ddbg !=nil {return nil ,_ddbg ;};if _ddbg =_fgcc .SetByte (_baaa ,_dbfgc );_ddbg !=nil {return nil ,_ddbg ;};};return _fgcc ,nil ; +};if _fbdce ._ddcgf ==nil {_fbdce ._ddcgf =NewGenericRegion (_fbdce ._caba );};_fbdce ._ddcgf .setParameters (true ,_fbdce ._caba .AbsolutePosition (),_cbfc ,_dbgcf ,_dcde );_eggf ,_dedga :=_fbdce ._ddcgf .GetRegionBitmap ();if _dedga !=nil {return nil ,_dedga ; +};return _eggf ,nil ;};type SegmentEncoder interface{Encode (_dbce _g .BinaryWriter )(_afadd int ,_aege error );};func (_eea *PageInformationSegment )readIsStriped ()error {_ddbc ,_agdg :=_eea ._faef .ReadBit ();if _agdg !=nil {return _agdg ;};if _ddbc ==1{_eea .IsStripe =true ; +};return nil ;};func (_dccg *Header )readHeaderLength (_dba *_g .Reader ,_cageb int64 ){_dccg .HeaderLength =_dba .AbsolutePosition ()-_cageb ;};func (_fcaf *TextRegion )decodeDfs ()(int64 ,error ){if _fcaf .IsHuffmanEncoded {if _fcaf .SbHuffFS ==3{if _fcaf ._ddba ==nil {var _acggc error ; +_fcaf ._ddba ,_acggc =_fcaf .getUserTable (0);if _acggc !=nil {return 0,_acggc ;};};return _fcaf ._ddba .Decode (_fcaf ._ecc );};_cbgd ,_ccgab :=_fa .GetStandardTable (6+int (_fcaf .SbHuffFS ));if _ccgab !=nil {return 0,_ccgab ;};return _cbgd .Decode (_fcaf ._ecc ); +};_ggde ,_aaedc :=_fcaf ._egdc .DecodeInt (_fcaf ._cgdb );if _aaedc !=nil {return 0,_aaedc ;};return int64 (_ggde ),nil ;};func (_cacde *SymbolDictionary )GetDictionary ()([]*_gf .Bitmap ,error ){_aae .Log .Trace ("\u005b\u0053\u0059\u004d\u0042\u004f\u004c-\u0044\u0049\u0043T\u0049\u004f\u004e\u0041R\u0059\u005d\u0020\u0047\u0065\u0074\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e"); +defer func (){_aae .Log .Trace ("\u005b\u0053\u0059M\u0042\u004f\u004c\u002d\u0044\u0049\u0043\u0054\u0049\u004f\u004e\u0041\u0052\u0059\u005d\u0020\u0047\u0065\u0074\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); +_aae .Log .Trace ("\u005b\u0053Y\u004d\u0042\u004f\u004c\u002dD\u0049\u0043\u0054\u0049\u004fN\u0041\u0052\u0059\u005d\u0020\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0020\u000a\u0045\u0078\u003a\u0020\u0027\u0025\u0073\u0027\u002c\u0020\u000a\u006e\u0065\u0077\u003a\u0027\u0025\u0073\u0027",_cacde ._aebc ,_cacde ._gedb ); +}();if _cacde ._aebc ==nil {var _egda error ;if _cacde .UseRefinementAggregation {_cacde ._abcgg =_cacde .getSbSymCodeLen ();};if !_cacde .IsHuffmanEncoded {if _egda =_cacde .setCodingStatistics ();_egda !=nil {return nil ,_egda ;};};_cacde ._gedb =make ([]*_gf .Bitmap ,_cacde .NumberOfNewSymbols ); +var _feggf []int ;if _cacde .IsHuffmanEncoded &&!_cacde .UseRefinementAggregation {_feggf =make ([]int ,_cacde .NumberOfNewSymbols );};if _egda =_cacde .setSymbolsArray ();_egda !=nil {return nil ,_egda ;};var _ccgf ,_ebaa int64 ;_cacde ._acga =0;for _cacde ._acga < _cacde .NumberOfNewSymbols {_ebaa ,_egda =_cacde .decodeHeightClassDeltaHeight (); +if _egda !=nil {return nil ,_egda ;};_ccgf +=_ebaa ;var _ebgb ,_ffega uint32 ;_gegfc :=int64 (_cacde ._acga );for {var _gfc int64 ;_gfc ,_egda =_cacde .decodeDifferenceWidth ();if _aa .Is (_egda ,_f .ErrOOB ){break ;};if _egda !=nil {return nil ,_egda ; +};if _cacde ._acga >=_cacde .NumberOfNewSymbols {break ;};_ebgb +=uint32 (_gfc );_ffega +=_ebgb ;if !_cacde .IsHuffmanEncoded ||_cacde .UseRefinementAggregation {if !_cacde .UseRefinementAggregation {_egda =_cacde .decodeDirectlyThroughGenericRegion (_ebgb ,uint32 (_ccgf )); +if _egda !=nil {return nil ,_egda ;};}else {_egda =_cacde .decodeAggregate (_ebgb ,uint32 (_ccgf ));if _egda !=nil {return nil ,_egda ;};};}else if _cacde .IsHuffmanEncoded &&!_cacde .UseRefinementAggregation {_feggf [_cacde ._acga ]=int (_ebgb );};_cacde ._acga ++; +};if _cacde .IsHuffmanEncoded &&!_cacde .UseRefinementAggregation {var _fbfc int64 ;if _cacde .SdHuffBMSizeSelection ==0{var _bcbd _fa .Tabler ;_bcbd ,_egda =_fa .GetStandardTable (1);if _egda !=nil {return nil ,_egda ;};_fbfc ,_egda =_bcbd .Decode (_cacde ._caba ); +if _egda !=nil {return nil ,_egda ;};}else {_fbfc ,_egda =_cacde .huffDecodeBmSize ();if _egda !=nil {return nil ,_egda ;};};_cacde ._caba .Align ();var _abaf *_gf .Bitmap ;_abaf ,_egda =_cacde .decodeHeightClassCollectiveBitmap (_fbfc ,uint32 (_ccgf ),_ffega ); +if _egda !=nil {return nil ,_egda ;};_egda =_cacde .decodeHeightClassBitmap (_abaf ,_gegfc ,int (_ccgf ),_feggf );if _egda !=nil {return nil ,_egda ;};};};_cbffa ,_egda :=_cacde .getToExportFlags ();if _egda !=nil {return nil ,_egda ;};_cacde .setExportedSymbols (_cbffa ); +};return _cacde ._aebc ,nil ;};func (_dbdfa *TableSegment )HtLow ()int32 {return _dbdfa ._effba };func (_fdac *TextRegion )InitEncode (globalSymbolsMap ,localSymbolsMap map[int ]int ,comps []int ,inLL *_gf .Points ,symbols *_gf .Bitmaps ,classIDs *_bg .IntSlice ,boxes *_gf .Boxes ,width ,height ,symBits int ){_fdac .RegionInfo =&RegionSegment {BitmapWidth :uint32 (width ),BitmapHeight :uint32 (height )}; +_fdac ._geef =globalSymbolsMap ;_fdac ._afdaa =localSymbolsMap ;_fdac ._bcfg =comps ;_fdac ._bdeea =inLL ;_fdac ._debb =symbols ;_fdac ._cegd =classIDs ;_fdac ._bfea =boxes ;_fdac ._geff =symBits ;};type TextRegion struct{_ecc *_g .Reader ;RegionInfo *RegionSegment ; +SbrTemplate int8 ;SbDsOffset int8 ;DefaultPixel int8 ;CombinationOperator _gf .CombinationOperator ;IsTransposed int8 ;ReferenceCorner int16 ;LogSBStrips int16 ;UseRefinement bool ;IsHuffmanEncoded bool ;SbHuffRSize int8 ;SbHuffRDY int8 ;SbHuffRDX int8 ; +SbHuffRDHeight int8 ;SbHuffRDWidth int8 ;SbHuffDT int8 ;SbHuffDS int8 ;SbHuffFS int8 ;SbrATX []int8 ;SbrATY []int8 ;NumberOfSymbolInstances uint32 ;_abca int64 ;SbStrips int8 ;NumberOfSymbols uint32 ;RegionBitmap *_gf .Bitmap ;Symbols []*_gf .Bitmap ;_egdc *_df .Decoder ; +_dagd *GenericRefinementRegion ;_gede *_df .DecoderStats ;_cgdb *_df .DecoderStats ;_dacg *_df .DecoderStats ;_fff *_df .DecoderStats ;_feeg *_df .DecoderStats ;_gbcc *_df .DecoderStats ;_acecd *_df .DecoderStats ;_bbae *_df .DecoderStats ;_ffab *_df .DecoderStats ; +_fbeg *_df .DecoderStats ;_bada *_df .DecoderStats ;_efeb int8 ;_dbcbe *_fa .FixedSizeTable ;Header *Header ;_ddba _fa .Tabler ;_gadb _fa .Tabler ;_bbfg _fa .Tabler ;_beed _fa .Tabler ;_cceff _fa .Tabler ;_adgga _fa .Tabler ;_bfde _fa .Tabler ;_efgefe _fa .Tabler ; +_geef ,_afdaa map[int ]int ;_bcfg []int ;_bdeea *_gf .Points ;_debb *_gf .Bitmaps ;_cegd *_bg .IntSlice ;_ddfa ,_geff int ;_bfea *_gf .Boxes ;};func (_bcba *SymbolDictionary )checkInput ()error {if _bcba .SdHuffDecodeHeightSelection ==2{_aae .Log .Debug ("\u0053\u0079\u006d\u0062\u006fl\u0020\u0044\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079\u0020\u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0048\u0065\u0069\u0067\u0068\u0074\u0020\u0053e\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006e\u006f\u0074\u0020\u0070\u0065r\u006d\u0069\u0074\u0074\u0065\u0064",_bcba .SdHuffDecodeHeightSelection ); +};if _bcba .SdHuffDecodeWidthSelection ==2{_aae .Log .Debug ("\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0044\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0044\u0065\u0063\u006f\u0064\u0065\u0020\u0057\u0069\u0064t\u0068\u0020\u0053\u0065\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0064\u0020\u0076\u0061l\u0075\u0065\u0020\u006e\u006f\u0074 \u0070\u0065r\u006d\u0069t\u0074e\u0064",_bcba .SdHuffDecodeWidthSelection ); +};if _bcba .IsHuffmanEncoded {if _bcba .SdTemplate !=0{_aae .Log .Debug ("\u0053\u0044T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u003d\u0020\u0025\u0064\u0020\u0028\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e \u0030\u0029",_bcba .SdTemplate ); +};if !_bcba .UseRefinementAggregation {if !_bcba .UseRefinementAggregation {if _bcba ._dedee {_aae .Log .Debug ("\u0049\u0073\u0043\u006f\u0064\u0069\u006e\u0067C\u006f\u006e\u0074ex\u0074\u0052\u0065\u0074\u0061\u0069n\u0065\u0064\u0020\u003d\u0020\u0074\u0072\u0075\u0065\u0020\u0028\u0073\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u0066\u0061\u006cs\u0065\u0029"); +_bcba ._dedee =false ;};if _bcba ._bddf {_aae .Log .Debug ("\u0069s\u0043\u006fd\u0069\u006e\u0067\u0043o\u006e\u0074\u0065x\u0074\u0055\u0073\u0065\u0064\u0020\u003d\u0020\u0074ru\u0065\u0020\u0028s\u0068\u006fu\u006c\u0064\u0020\u0062\u0065\u0020f\u0061\u006cs\u0065\u0029"); +_bcba ._bddf =false ;};};};}else {if _bcba .SdHuffBMSizeSelection !=0{_aae .Log .Debug ("\u0053\u0064\u0048\u0075\u0066\u0066B\u004d\u0053\u0069\u007a\u0065\u0053\u0065\u006c\u0065\u0063\u0074\u0069\u006fn\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u0030"); +_bcba .SdHuffBMSizeSelection =0;};if _bcba .SdHuffDecodeWidthSelection !=0{_aae .Log .Debug ("\u0053\u0064\u0048\u0075\u0066\u0066\u0044\u0065\u0063\u006f\u0064\u0065\u0057\u0069\u0064\u0074\u0068\u0053\u0065\u006c\u0065\u0063\u0074\u0069o\u006e\u0020\u0073\u0068\u006fu\u006c\u0064 \u0062\u0065\u0020\u0030"); +_bcba .SdHuffDecodeWidthSelection =0;};if _bcba .SdHuffDecodeHeightSelection !=0{_aae .Log .Debug ("\u0053\u0064\u0048\u0075\u0066\u0066\u0044\u0065\u0063\u006f\u0064\u0065\u0048e\u0069\u0067\u0068\u0074\u0053\u0065l\u0065\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u0030"); +_bcba .SdHuffDecodeHeightSelection =0;};};if !_bcba .UseRefinementAggregation {if _bcba .SdrTemplate !=0{_aae .Log .Debug ("\u0053\u0044\u0052\u0054\u0065\u006d\u0070\u006c\u0061\u0074e\u0020\u003d\u0020\u0025\u0064\u0020\u0028s\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030\u0029",_bcba .SdrTemplate ); +_bcba .SdrTemplate =0;};};if !_bcba .IsHuffmanEncoded ||!_bcba .UseRefinementAggregation {if _bcba .SdHuffAggInstanceSelection {_aae .Log .Debug ("\u0053d\u0048\u0075f\u0066\u0041\u0067g\u0049\u006e\u0073\u0074\u0061\u006e\u0063e\u0053\u0065\u006c\u0065\u0063\u0074i\u006f\u006e\u0020\u003d\u0020\u0025\u0064\u0020\u0028\u0073\u0068o\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030\u0029",_bcba .SdHuffAggInstanceSelection ); +};};return nil ;};func (_dgge *TextRegion )decodeRI ()(int64 ,error ){if !_dgge .UseRefinement {return 0,nil ;};if _dgge .IsHuffmanEncoded {_dged ,_aaaed :=_dgge ._ecc .ReadBit ();return int64 (_dged ),_aaaed ;};_bacce ,_gadca :=_dgge ._egdc .DecodeInt (_dgge ._feeg ); +return int64 (_bacce ),_gadca ;};func (_fcf *SymbolDictionary )setRetainedCodingContexts (_bcf *SymbolDictionary ){_fcf ._dgcb =_bcf ._dgcb ;_fcf .IsHuffmanEncoded =_bcf .IsHuffmanEncoded ;_fcf .UseRefinementAggregation =_bcf .UseRefinementAggregation ; +_fcf .SdTemplate =_bcf .SdTemplate ;_fcf .SdrTemplate =_bcf .SdrTemplate ;_fcf .SdATX =_bcf .SdATX ;_fcf .SdATY =_bcf .SdATY ;_fcf .SdrATX =_bcf .SdrATX ;_fcf .SdrATY =_bcf .SdrATY ;_fcf ._afbd =_bcf ._afbd ;};type PatternDictionary struct{_dbec *_g .Reader ; +DataHeaderOffset int64 ;DataHeaderLength int64 ;DataOffset int64 ;DataLength int64 ;GBAtX []int8 ;GBAtY []int8 ;IsMMREncoded bool ;HDTemplate byte ;HdpWidth byte ;HdpHeight byte ;Patterns []*_gf .Bitmap ;GrayMax uint32 ;};func (_afcf *TextRegion )computeSymbolCodeLength ()error {if _afcf .IsHuffmanEncoded {return _afcf .symbolIDCodeLengths (); +};_afcf ._efeb =int8 (_e .Ceil (_e .Log (float64 (_afcf .NumberOfSymbols ))/_e .Log (2)));return nil ;};func (_dgdb *SymbolDictionary )decodeHeightClassBitmap (_aadgg *_gf .Bitmap ,_dff int64 ,_cfee int ,_effa []int )error {for _dfe :=_dff ;_dfe < int64 (_dgdb ._acga ); +_dfe ++{var _edgd int ;for _edea :=_dff ;_edea <=_dfe -1;_edea ++{_edgd +=_effa [_edea ];};_cbcd :=_a .Rect (_edgd ,0,_edgd +_effa [_dfe ],_cfee );_gbcb ,_cgga :=_gf .Extract (_cbcd ,_aadgg );if _cgga !=nil {return _cgga ;};_dgdb ._gedb [_dfe ]=_gbcb ; +_dgdb ._ebfb =append (_dgdb ._ebfb ,_gbcb );};return nil ;};func (_dca *PageInformationSegment )readDefaultPixelValue ()error {_gegf ,_dcda :=_dca ._faef .ReadBit ();if _dcda !=nil {return _dcda ;};_dca .DefaultPixelValue =uint8 (_gegf &0xf);return nil ; +};func (_dbfg *GenericRefinementRegion )decodeTypicalPredictedLineTemplate1 (_aef ,_def ,_caa ,_ebe ,_cddc ,_fbg ,_bf ,_eabc ,_fed int )(_bdd error ){var (_efe ,_aaa int ;_cdg ,_fdc int ;_eda ,_dgd int ;_dge byte ;);if _aef > 0{_dge ,_bdd =_dbfg .RegionBitmap .GetByte (_bf -_caa ); +if _bdd !=nil {return ;};_cdg =int (_dge );};if _eabc > 0&&_eabc <=_dbfg .ReferenceBitmap .Height {_dge ,_bdd =_dbfg .ReferenceBitmap .GetByte (_fed -_ebe +_fbg );if _bdd !=nil {return ;};_fdc =int (_dge )<<2;};if _eabc >=0&&_eabc < _dbfg .ReferenceBitmap .Height {_dge ,_bdd =_dbfg .ReferenceBitmap .GetByte (_fed +_fbg ); +if _bdd !=nil {return ;};_eda =int (_dge );};if _eabc > -2&&_eabc < _dbfg .ReferenceBitmap .Height -1{_dge ,_bdd =_dbfg .ReferenceBitmap .GetByte (_fed +_ebe +_fbg );if _bdd !=nil {return ;};_dgd =int (_dge );};_efe =((_cdg >>5)&0x6)|((_dgd >>2)&0x30)|(_eda &0xc0)|(_fdc &0x200); +_aaa =((_dgd >>2)&0x70)|(_eda &0xc0)|(_fdc &0x700);var _cce int ;for _agg :=0;_agg < _cddc ;_agg =_cce {var (_dac int ;_gge int ;);_cce =_agg +8;if _dac =_def -_agg ;_dac > 8{_dac =8;};_acb :=_cce < _def ;_fee :=_cce < _dbfg .ReferenceBitmap .Width ;_afa :=_fbg +1; +if _aef > 0{_dge =0;if _acb {_dge ,_bdd =_dbfg .RegionBitmap .GetByte (_bf -_caa +1);if _bdd !=nil {return ;};};_cdg =(_cdg <<8)|int (_dge );};if _eabc > 0&&_eabc <=_dbfg .ReferenceBitmap .Height {var _ebc int ;if _fee {_dge ,_bdd =_dbfg .ReferenceBitmap .GetByte (_fed -_ebe +_afa ); +if _bdd !=nil {return ;};_ebc =int (_dge )<<2;};_fdc =(_fdc <<8)|_ebc ;};if _eabc >=0&&_eabc < _dbfg .ReferenceBitmap .Height {_dge =0;if _fee {_dge ,_bdd =_dbfg .ReferenceBitmap .GetByte (_fed +_afa );if _bdd !=nil {return ;};};_eda =(_eda <<8)|int (_dge ); +};if _eabc > -2&&_eabc < (_dbfg .ReferenceBitmap .Height -1){_dge =0;if _fee {_dge ,_bdd =_dbfg .ReferenceBitmap .GetByte (_fed +_ebe +_afa );if _bdd !=nil {return ;};};_dgd =(_dgd <<8)|int (_dge );};for _bbad :=0;_bbad < _dac ;_bbad ++{var _cgd int ;_cfa :=(_aaa >>4)&0x1ff; +switch _cfa {case 0x1ff:_cgd =1;case 0x00:_cgd =0;default:_dbfg ._cd .SetIndex (int32 (_efe ));_cgd ,_bdd =_dbfg ._dc .DecodeBit (_dbfg ._cd );if _bdd !=nil {return ;};};_baf :=uint (7-_bbad );_gge |=_cgd <<_baf ;_efe =((_efe &0x0d6)<<1)|_cgd |(_cdg >>_baf +5)&0x002|((_dgd >>_baf +2)&0x010)|((_eda >>_baf )&0x040)|((_fdc >>_baf )&0x200); +_aaa =((_aaa &0xdb)<<1)|((_dgd >>_baf +2)&0x010)|((_eda >>_baf )&0x080)|((_fdc >>_baf )&0x400);};_bdd =_dbfg .RegionBitmap .SetByte (_bf ,byte (_gge ));if _bdd !=nil {return ;};_bf ++;_fed ++;};return nil ;};func (_fbaa *RegionSegment )String ()string {_gacb :=&_d .Builder {}; +_gacb .WriteString ("\u0009[\u0052E\u0047\u0049\u004f\u004e\u0020S\u0045\u0047M\u0045\u004e\u0054\u005d\u000a");_gacb .WriteString (_af .Sprintf ("\t\u0009\u002d\u0020\u0042\u0069\u0074m\u0061\u0070\u0020\u0028\u0077\u0069d\u0074\u0068\u002c\u0020\u0068\u0065\u0069g\u0068\u0074\u0029\u0020\u005b\u0025\u0064\u0078\u0025\u0064]\u000a",_fbaa .BitmapWidth ,_fbaa .BitmapHeight )); +_gacb .WriteString (_af .Sprintf ("\u0009\u0009\u002d\u0020L\u006f\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0028\u0078,\u0079)\u003a\u0020\u005b\u0025\u0064\u002c\u0025d\u005d\u000a",_fbaa .XLocation ,_fbaa .YLocation ));_gacb .WriteString (_af .Sprintf ("\t\u0009\u002d\u0020\u0043\u006f\u006db\u0069\u006e\u0061\u0074\u0069\u006f\u006e\u004f\u0070e\u0072\u0061\u0074o\u0072:\u0020\u0025\u0073",_fbaa .CombinaionOperator )); +return _gacb .String ();};type EncodeInitializer interface{InitEncode ();};func (_efb *PatternDictionary )readGrayMax ()error {_abcg ,_cebb :=_efb ._dbec .ReadBits (32);if _cebb !=nil {return _cebb ;};_efb .GrayMax =uint32 (_abcg &_e .MaxUint32 );return nil ; +};type Type int ;func (_daad *TextRegion )encodeSymbols (_fbga _g .BinaryWriter )(_efgc int ,_daff error ){const _gebc ="\u0065\u006e\u0063\u006f\u0064\u0065\u0053\u0079\u006d\u0062\u006f\u006c\u0073";_fecdb :=make ([]byte ,4);_ag .BigEndian .PutUint32 (_fecdb ,_daad .NumberOfSymbols ); +if _efgc ,_daff =_fbga .Write (_fecdb );_daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,"\u004e\u0075\u006dbe\u0072\u004f\u0066\u0053\u0079\u006d\u0062\u006f\u006c\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0073");};_cgdabg ,_daff :=_gf .NewClassedPoints (_daad ._bdeea ,_daad ._bcfg ); +if _daff !=nil {return 0,_edb .Wrap (_daff ,_gebc ,"");};var _cdbf ,_eaab int ;_dcba :=_afe .New ();_dcba .Init ();if _daff =_dcba .EncodeInteger (_afe .IADT ,0);_daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,"\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0020\u0044\u0054"); +};_fdd ,_daff :=_cgdabg .GroupByY ();if _daff !=nil {return 0,_edb .Wrap (_daff ,_gebc ,"");};for _ ,_dfcd :=range _fdd {_dbcbg :=int (_dfcd .YAtIndex (0));_fbdb :=_dbcbg -_cdbf ;if _daff =_dcba .EncodeInteger (_afe .IADT ,_fbdb );_daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,""); +};var _gagg int ;for _egbd ,_bdgf :=range _dfcd .IntSlice {switch _egbd {case 0:_aecf :=int (_dfcd .XAtIndex (_egbd ))-_eaab ;if _daff =_dcba .EncodeInteger (_afe .IAFS ,_aecf );_daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,"");};_eaab +=_aecf ; +_gagg =_eaab ;default:_ccbe :=int (_dfcd .XAtIndex (_egbd ))-_gagg ;if _daff =_dcba .EncodeInteger (_afe .IADS ,_ccbe );_daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,"");};_gagg +=_ccbe ;};_afdg ,_cdda :=_daad ._cegd .Get (_bdgf );if _cdda !=nil {return _efgc ,_edb .Wrap (_cdda ,_gebc ,""); +};_gbag ,_daac :=_daad ._geef [_afdg ];if !_daac {_gbag ,_daac =_daad ._afdaa [_afdg ];if !_daac {return _efgc ,_edb .Errorf (_gebc ,"\u0053\u0079\u006d\u0062\u006f\u006c:\u0020\u0027\u0025d\u0027\u0020\u0069s\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064 \u0069\u006e\u0020\u0067\u006cob\u0061\u006c\u0020\u0061\u006e\u0064\u0020\u006c\u006f\u0063\u0061\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0020\u006d\u0061\u0070",_afdg ); +};};if _cdda =_dcba .EncodeIAID (_daad ._geff ,_gbag );_cdda !=nil {return _efgc ,_edb .Wrap (_cdda ,_gebc ,"");};};if _daff =_dcba .EncodeOOB (_afe .IADS );_daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,"");};};_dcba .Final ();_gecf ,_daff :=_dcba .WriteTo (_fbga ); +if _daff !=nil {return _efgc ,_edb .Wrap (_daff ,_gebc ,"");};_efgc +=int (_gecf );return _efgc ,nil ;};func (_ccaa *TextRegion )initSymbols ()error {const _geae ="i\u006e\u0069\u0074\u0053\u0079\u006d\u0062\u006f\u006c\u0073";for _ ,_aaggd :=range _ccaa .Header .RTSegments {if _aaggd ==nil {return _edb .Error (_geae ,"\u006e\u0069\u006c\u0020\u0073\u0065\u0067\u006de\u006e\u0074\u0020pr\u006f\u0076\u0069\u0064\u0065\u0064 \u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0074\u0065\u0078\u0074\u0020\u0072\u0065g\u0069\u006f\u006e\u0020\u0053\u0079\u006d\u0062o\u006c\u0073"); +};if _aaggd .Type ==0{_daaa ,_fbad :=_aaggd .GetSegmentData ();if _fbad !=nil {return _edb .Wrap (_fbad ,_geae ,"");};_bbdce ,_aefe :=_daaa .(*SymbolDictionary );if !_aefe {return _edb .Error (_geae ,"\u0072e\u0066\u0065r\u0072\u0065\u0064 \u0054\u006f\u0020\u0053\u0065\u0067\u006de\u006e\u0074\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0061\u0020\u0053\u0079\u006d\u0062\u006f\u006cD\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_bbdce ._ggc =_ccaa ._bbae ;_aafe ,_fbad :=_bbdce .GetDictionary ();if _fbad !=nil {return _edb .Wrap (_fbad ,_geae ,"");};_ccaa .Symbols =append (_ccaa .Symbols ,_aafe ...);};};_ccaa .NumberOfSymbols =uint32 (len (_ccaa .Symbols ));return nil ;};type Regioner interface{GetRegionBitmap ()(*_gf .Bitmap ,error ); +GetRegionInfo ()*RegionSegment ;};func (_aaf *Header )writeSegmentDataLength (_acdf _g .BinaryWriter )(_bgd int ,_ada error ){_gbef :=make ([]byte ,4);_ag .BigEndian .PutUint32 (_gbef ,uint32 (_aaf .SegmentDataLength ));if _bgd ,_ada =_acdf .Write (_gbef ); +_ada !=nil {return 0,_edb .Wrap (_ada ,"\u0048\u0065a\u0064\u0065\u0072\u002e\u0077\u0072\u0069\u0074\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0044\u0061\u0074\u0061\u004c\u0065ng\u0074\u0068","");};return _bgd ,nil ;};func (_abgdb *SymbolDictionary )readRefinementAtPixels (_bbgab int )error {_abgdb .SdrATX =make ([]int8 ,_bbgab ); +_abgdb .SdrATY =make ([]int8 ,_bbgab );var (_gfce byte ;_fgab error ;);for _acaf :=0;_acaf < _bbgab ;_acaf ++{_gfce ,_fgab =_abgdb ._caba .ReadByte ();if _fgab !=nil {return _fgab ;};_abgdb .SdrATX [_acaf ]=int8 (_gfce );_gfce ,_fgab =_abgdb ._caba .ReadByte (); +if _fgab !=nil {return _fgab ;};_abgdb .SdrATY [_acaf ]=int8 (_gfce );};return nil ;};func (_de *GenericRefinementRegion )decodeTypicalPredictedLine (_abb ,_cc ,_eab ,_edgg ,_ac ,_afc int )error {_fad :=_abb -int (_de .ReferenceDY );_cbf :=_de .ReferenceBitmap .GetByteIndex (0,_fad ); +_ec :=_de .RegionBitmap .GetByteIndex (0,_abb );var _eg error ;switch _de .TemplateID {case 0:_eg =_de .decodeTypicalPredictedLineTemplate0 (_abb ,_cc ,_eab ,_edgg ,_ac ,_afc ,_ec ,_fad ,_cbf );case 1:_eg =_de .decodeTypicalPredictedLineTemplate1 (_abb ,_cc ,_eab ,_edgg ,_ac ,_afc ,_ec ,_fad ,_cbf ); +};return _eg ;};func (_aded *Header )referenceSize ()uint {switch {case _aded .SegmentNumber <=255:return 1;case _aded .SegmentNumber <=65535:return 2;default:return 4;};};func (_gecc *Header )readReferredToSegmentNumbers (_acbae *_g .Reader ,_eagc int )([]int ,error ){const _cad ="\u0072\u0065\u0061\u0064R\u0065\u0066\u0065\u0072\u0072\u0065\u0064\u0054\u006f\u0053e\u0067m\u0065\u006e\u0074\u004e\u0075\u006d\u0062e\u0072\u0073"; +_bbgd :=make ([]int ,_eagc );if _eagc > 0{_gecc .RTSegments =make ([]*Header ,_eagc );var (_efea uint64 ;_begg error ;);for _dgga :=0;_dgga < _eagc ;_dgga ++{_efea ,_begg =_acbae .ReadBits (byte (_gecc .referenceSize ())<<3);if _begg !=nil {return nil ,_edb .Wrapf (_begg ,_cad ,"\u0027\u0025\u0064\u0027 \u0072\u0065\u0066\u0065\u0072\u0072\u0065\u0064\u0020\u0073e\u0067m\u0065\u006e\u0074\u0020\u006e\u0075\u006db\u0065\u0072",_dgga ); +};_bbgd [_dgga ]=int (_efea &_e .MaxInt32 );};};return _bbgd ,nil ;};func (_bgab *PageInformationSegment )readContainsRefinement ()error {_gfba ,_aegeb :=_bgab ._faef .ReadBit ();if _aegeb !=nil {return _aegeb ;};if _gfba ==1{_bgab ._ccdd =true ;};return nil ; +};func (_aefcd *PatternDictionary )computeSegmentDataStructure ()error {_aefcd .DataOffset =_aefcd ._dbec .AbsolutePosition ();_aefcd .DataHeaderLength =_aefcd .DataOffset -_aefcd .DataHeaderOffset ;_aefcd .DataLength =int64 (_aefcd ._dbec .AbsoluteLength ())-_aefcd .DataHeaderLength ; +return nil ;};type OrganizationType uint8 ;func (_edeb *GenericRegion )setParametersWithAt (_eae bool ,_eegb byte ,_cge ,_eaf bool ,_bcebe ,_aeda []int8 ,_acdd ,_bfca uint32 ,_fccg *_df .DecoderStats ,_cfe *_df .Decoder ){_edeb .IsMMREncoded =_eae ;_edeb .GBTemplate =_eegb ; +_edeb .IsTPGDon =_cge ;_edeb .GBAtX =_bcebe ;_edeb .GBAtY =_aeda ;_edeb .RegionSegment .BitmapHeight =_bfca ;_edeb .RegionSegment .BitmapWidth =_acdd ;_edeb ._gdf =nil ;_edeb .Bitmap =nil ;if _fccg !=nil {_edeb ._fac =_fccg ;};if _cfe !=nil {_edeb ._ddga =_cfe ; +};_aae .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0047\u0049O\u004e\u005d\u0020\u0073\u0065\u0074P\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0053\u0044\u0041t\u003a\u0020\u0025\u0073",_edeb );}; +func (_fbcf *Header )Encode (w _g .BinaryWriter )(_ggedc int ,_afea error ){const _dafg ="\u0048\u0065\u0061d\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065";var _agbe _g .BinaryWriter ;_aae .Log .Trace ("\u005b\u0053\u0045G\u004d\u0045\u004e\u0054-\u0048\u0045\u0041\u0044\u0045\u0052\u005d[\u0045\u004e\u0043\u004f\u0044\u0045\u005d\u0020\u0042\u0065\u0067\u0069\u006e\u0073"); +defer func (){if _afea !=nil {_aae .Log .Trace ("[\u0053\u0045\u0047\u004d\u0045\u004eT\u002d\u0048\u0045\u0041\u0044\u0045R\u005d\u005b\u0045\u004e\u0043\u004f\u0044E\u005d\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u002e\u0020%\u0076",_afea );}else {_aae .Log .Trace ("\u005b\u0053\u0045\u0047ME\u004e\u0054\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0025\u0076",_fbcf ); +_aae .Log .Trace ("\u005b\u0053\u0045\u0047\u004d\u0045N\u0054\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u005b\u0045\u004e\u0043O\u0044\u0045\u005d\u0020\u0046\u0069\u006ei\u0073\u0068\u0065\u0064");};}();w .FinishByte ();if _fbcf .SegmentData !=nil {_fbbc ,_fecg :=_fbcf .SegmentData .(SegmentEncoder ); +if !_fecg {return 0,_edb .Errorf (_dafg ,"\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u003a\u0020\u0025\u0054\u0020\u0064\u006f\u0065s\u006e\u0027\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074 \u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0045\u006e\u0063\u006f\u0064er\u0020\u0069\u006e\u0074\u0065\u0072\u0066\u0061\u0063\u0065",_fbcf .SegmentData ); +};_agbe =_g .BufferedMSB ();_ggedc ,_afea =_fbbc .Encode (_agbe );if _afea !=nil {return 0,_edb .Wrap (_afea ,_dafg ,"");};_fbcf .SegmentDataLength =uint64 (_ggedc );};if _fbcf .pageSize ()==4{_fbcf .PageAssociationFieldSize =true ;};var _fecc int ;_fecc ,_afea =_fbcf .writeSegmentNumber (w ); +if _afea !=nil {return 0,_edb .Wrap (_afea ,_dafg ,"");};_ggedc +=_fecc ;if _afea =_fbcf .writeFlags (w );_afea !=nil {return _ggedc ,_edb .Wrap (_afea ,_dafg ,"");};_ggedc ++;_fecc ,_afea =_fbcf .writeReferredToCount (w );if _afea !=nil {return 0,_edb .Wrap (_afea ,_dafg ,""); +};_ggedc +=_fecc ;_fecc ,_afea =_fbcf .writeReferredToSegments (w );if _afea !=nil {return 0,_edb .Wrap (_afea ,_dafg ,"");};_ggedc +=_fecc ;_fecc ,_afea =_fbcf .writeSegmentPageAssociation (w );if _afea !=nil {return 0,_edb .Wrap (_afea ,_dafg ,"");}; +_ggedc +=_fecc ;_fecc ,_afea =_fbcf .writeSegmentDataLength (w );if _afea !=nil {return 0,_edb .Wrap (_afea ,_dafg ,"");};_ggedc +=_fecc ;_fbcf .HeaderLength =int64 (_ggedc )-int64 (_fbcf .SegmentDataLength );if _agbe !=nil {if _ ,_afea =w .Write (_agbe .Data ()); +_afea !=nil {return _ggedc ,_edb .Wrap (_afea ,_dafg ,"\u0077r\u0069t\u0065\u0020\u0073\u0065\u0067m\u0065\u006et\u0020\u0064\u0061\u0074\u0061");};};return _ggedc ,nil ;};func (_bdff *SymbolDictionary )readAtPixels (_afgg int )error {_bdff .SdATX =make ([]int8 ,_afgg ); +_bdff .SdATY =make ([]int8 ,_afgg );var (_dfee byte ;_effb error ;);for _cddf :=0;_cddf < _afgg ;_cddf ++{_dfee ,_effb =_bdff ._caba .ReadByte ();if _effb !=nil {return _effb ;};_bdff .SdATX [_cddf ]=int8 (_dfee );_dfee ,_effb =_bdff ._caba .ReadByte (); +if _effb !=nil {return _effb ;};_bdff .SdATY [_cddf ]=int8 (_dfee );};return nil ;};func (_fe *EndOfStripe )LineNumber ()int {return _fe ._bc };func (_ffefg *TextRegion )decodeIb (_cfaac ,_agba int64 )(*_gf .Bitmap ,error ){const _ddecd ="\u0064\u0065\u0063\u006f\u0064\u0065\u0049\u0062"; +var (_bfge error ;_ebgbc *_gf .Bitmap ;);if _cfaac ==0{if int (_agba )> len (_ffefg .Symbols )-1{return nil ,_edb .Error (_ddecd ,"\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0049\u0042\u0020\u0062\u0069\u0074\u006d\u0061\u0070\u002e\u0020\u0069\u006e\u0064\u0065x\u0020\u006f\u0075\u0074\u0020o\u0066\u0020r\u0061\u006e\u0067\u0065"); +};return _ffefg .Symbols [int (_agba )],nil ;};var _bfeg ,_gab ,_gffae ,_eee int64 ;_bfeg ,_bfge =_ffefg .decodeRdw ();if _bfge !=nil {return nil ,_edb .Wrap (_bfge ,_ddecd ,"");};_gab ,_bfge =_ffefg .decodeRdh ();if _bfge !=nil {return nil ,_edb .Wrap (_bfge ,_ddecd ,""); +};_gffae ,_bfge =_ffefg .decodeRdx ();if _bfge !=nil {return nil ,_edb .Wrap (_bfge ,_ddecd ,"");};_eee ,_bfge =_ffefg .decodeRdy ();if _bfge !=nil {return nil ,_edb .Wrap (_bfge ,_ddecd ,"");};if _ffefg .IsHuffmanEncoded {if _ ,_bfge =_ffefg .decodeSymInRefSize (); +_bfge !=nil {return nil ,_edb .Wrap (_bfge ,_ddecd ,"");};_ffefg ._ecc .Align ();};_abd :=_ffefg .Symbols [_agba ];_cedgc :=uint32 (_abd .Width );_bedae :=uint32 (_abd .Height );_aefb :=int32 (uint32 (_bfeg )>>1)+int32 (_gffae );_adga :=int32 (uint32 (_gab )>>1)+int32 (_eee ); +if _ffefg ._dagd ==nil {_ffefg ._dagd =_agf (_ffefg ._ecc ,nil );};_ffefg ._dagd .setParameters (_ffefg ._bada ,_ffefg ._egdc ,_ffefg .SbrTemplate ,_cedgc +uint32 (_bfeg ),_bedae +uint32 (_gab ),_abd ,_aefb ,_adga ,false ,_ffefg .SbrATX ,_ffefg .SbrATY ); +_ebgbc ,_bfge =_ffefg ._dagd .GetRegionBitmap ();if _bfge !=nil {return nil ,_edb .Wrap (_bfge ,_ddecd ,"\u0067\u0072\u0066");};if _ffefg .IsHuffmanEncoded {_ffefg ._ecc .Align ();};return _ebgbc ,nil ;};func (_eegf *RegionSegment )parseHeader ()error {const _caea ="p\u0061\u0072\u0073\u0065\u0048\u0065\u0061\u0064\u0065\u0072"; +_aae .Log .Trace ("\u005b\u0052\u0045\u0047I\u004f\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002dH\u0045A\u0044\u0045\u0052\u005d\u0020\u0042\u0065g\u0069\u006e");defer func (){_aae .Log .Trace ("\u005b\u0052\u0045G\u0049\u004f\u004e\u005d[\u0050\u0041\u0052\u0053\u0045\u002d\u0048E\u0041\u0044\u0045\u0052\u005d\u0020\u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); +}();_bgc ,_gefb :=_eegf ._ebecg .ReadBits (32);if _gefb !=nil {return _edb .Wrap (_gefb ,_caea ,"\u0077\u0069\u0064t\u0068");};_eegf .BitmapWidth =uint32 (_bgc &_e .MaxUint32 );_bgc ,_gefb =_eegf ._ebecg .ReadBits (32);if _gefb !=nil {return _edb .Wrap (_gefb ,_caea ,"\u0068\u0065\u0069\u0067\u0068\u0074"); +};_eegf .BitmapHeight =uint32 (_bgc &_e .MaxUint32 );_bgc ,_gefb =_eegf ._ebecg .ReadBits (32);if _gefb !=nil {return _edb .Wrap (_gefb ,_caea ,"\u0078\u0020\u006c\u006f\u0063\u0061\u0074\u0069\u006f\u006e");};_eegf .XLocation =uint32 (_bgc &_e .MaxUint32 ); +_bgc ,_gefb =_eegf ._ebecg .ReadBits (32);if _gefb !=nil {return _edb .Wrap (_gefb ,_caea ,"\u0079\u0020\u006c\u006f\u0063\u0061\u0074\u0069\u006f\u006e");};_eegf .YLocation =uint32 (_bgc &_e .MaxUint32 );if _ ,_gefb =_eegf ._ebecg .ReadBits (5);_gefb !=nil {return _edb .Wrap (_gefb ,_caea ,"\u0064i\u0072\u0079\u0020\u0072\u0065\u0061d"); +};if _gefb =_eegf .readCombinationOperator ();_gefb !=nil {return _edb .Wrap (_gefb ,_caea ,"c\u006fm\u0062\u0069\u006e\u0061\u0074\u0069\u006f\u006e \u006f\u0070\u0065\u0072at\u006f\u0072");};return nil ;};func (_bgff *Header )parse (_agga Documenter ,_bgagd *_g .Reader ,_ceac int64 ,_cbbd OrganizationType )(_aggf error ){const _gffa ="\u0070\u0061\u0072s\u0065"; +_aae .Log .Trace ("\u005b\u0053\u0045\u0047\u004d\u0045\u004e\u0054\u002d\u0048E\u0041\u0044\u0045\u0052\u005d\u005b\u0050A\u0052\u0053\u0045\u005d\u0020\u0042\u0065\u0067\u0069\u006e\u0073");defer func (){if _aggf !=nil {_aae .Log .Trace ("\u005b\u0053\u0045GM\u0045\u004e\u0054\u002d\u0048\u0045\u0041\u0044\u0045R\u005d[\u0050A\u0052S\u0045\u005d\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_aggf ); +}else {_aae .Log .Trace ("\u005b\u0053\u0045\u0047\u004d\u0045\u004e\u0054\u002d\u0048\u0045\u0041\u0044\u0045\u0052]\u005bP\u0041\u0052\u0053\u0045\u005d\u0020\u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064");};}();_ ,_aggf =_bgagd .Seek (_ceac ,_ed .SeekStart ); +if _aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,"\u0073\u0065\u0065\u006b\u0020\u0073\u0074\u0061\u0072\u0074");};if _aggf =_bgff .readSegmentNumber (_bgagd );_aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,"");};if _aggf =_bgff .readHeaderFlags ();_aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,""); +};var _acddg uint64 ;_acddg ,_aggf =_bgff .readNumberOfReferredToSegments (_bgagd );if _aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,"");};_bgff .RTSNumbers ,_aggf =_bgff .readReferredToSegmentNumbers (_bgagd ,int (_acddg ));if _aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,""); +};_aggf =_bgff .readSegmentPageAssociation (_agga ,_bgagd ,_acddg ,_bgff .RTSNumbers ...);if _aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,"");};if _bgff .Type !=TEndOfFile {if _aggf =_bgff .readSegmentDataLength (_bgagd );_aggf !=nil {return _edb .Wrap (_aggf ,_gffa ,""); +};};_bgff .readDataStartOffset (_bgagd ,_cbbd );_bgff .readHeaderLength (_bgagd ,_ceac );_aae .Log .Trace ("\u0025\u0073",_bgff );return nil ;};func (_fcce *PageInformationSegment )CombinationOperatorOverrideAllowed ()bool {return _fcce ._fbbge };func (_fdga *TextRegion )readRegionFlags ()error {var (_gedg int ; +_bdaf uint64 ;_cebg error ;);_gedg ,_cebg =_fdga ._ecc .ReadBit ();if _cebg !=nil {return _cebg ;};_fdga .SbrTemplate =int8 (_gedg );_bdaf ,_cebg =_fdga ._ecc .ReadBits (5);if _cebg !=nil {return _cebg ;};_fdga .SbDsOffset =int8 (_bdaf );if _fdga .SbDsOffset > 0x0f{_fdga .SbDsOffset -=0x20; +};_gedg ,_cebg =_fdga ._ecc .ReadBit ();if _cebg !=nil {return _cebg ;};_fdga .DefaultPixel =int8 (_gedg );_bdaf ,_cebg =_fdga ._ecc .ReadBits (2);if _cebg !=nil {return _cebg ;};_fdga .CombinationOperator =_gf .CombinationOperator (int (_bdaf )&0x3);_gedg ,_cebg =_fdga ._ecc .ReadBit (); +if _cebg !=nil {return _cebg ;};_fdga .IsTransposed =int8 (_gedg );_bdaf ,_cebg =_fdga ._ecc .ReadBits (2);if _cebg !=nil {return _cebg ;};_fdga .ReferenceCorner =int16 (_bdaf )&0x3;_bdaf ,_cebg =_fdga ._ecc .ReadBits (2);if _cebg !=nil {return _cebg ; +};_fdga .LogSBStrips =int16 (_bdaf )&0x3;_fdga .SbStrips =1< 0{_dgc ,_bga =_efg .RegionBitmap .GetByte (_ddc -_gg ); +if _bga !=nil {return _bga ;};_fcea =int (_dgc );};if _fce > 0&&_fce <=_efg .ReferenceBitmap .Height {_dgc ,_bga =_efg .ReferenceBitmap .GetByte (_gbg -_ede +_dgf );if _bga !=nil {return _bga ;};_ceg =int (_dgc )<<4;};if _fce >=0&&_fce < _efg .ReferenceBitmap .Height {_dgc ,_bga =_efg .ReferenceBitmap .GetByte (_gbg +_dgf ); +if _bga !=nil {return _bga ;};_aga =int (_dgc )<<1;};if _fce > -2&&_fce < _efg .ReferenceBitmap .Height -1{_dgc ,_bga =_efg .ReferenceBitmap .GetByte (_gbg +_ede +_dgf );if _bga !=nil {return _bga ;};_dbf =int (_dgc );};_aag =((_fcea >>5)&0x6)|((_dbf >>2)&0x30)|(_aga &0x180)|(_ceg &0xc00); +var _bcc int ;for _cag :=0;_cag < _bd ;_cag =_bcc {var _cdd int ;_bcc =_cag +8;var _ae int ;if _ae =_dec -_cag ;_ae > 8{_ae =8;};_faf :=_bcc < _dec ;_faea :=_bcc < _efg .ReferenceBitmap .Width ;_eag :=_dgf +1;if _bce > 0{_dgc =0;if _faf {_dgc ,_bga =_efg .RegionBitmap .GetByte (_ddc -_gg +1); +if _bga !=nil {return _bga ;};};_fcea =(_fcea <<8)|int (_dgc );};if _fce > 0&&_fce <=_efg .ReferenceBitmap .Height {var _bba int ;if _faea {_dgc ,_bga =_efg .ReferenceBitmap .GetByte (_gbg -_ede +_eag );if _bga !=nil {return _bga ;};_bba =int (_dgc )<<4; +};_ceg =(_ceg <<8)|_bba ;};if _fce >=0&&_fce < _efg .ReferenceBitmap .Height {var _ade int ;if _faea {_dgc ,_bga =_efg .ReferenceBitmap .GetByte (_gbg +_eag );if _bga !=nil {return _bga ;};_ade =int (_dgc )<<1;};_aga =(_aga <<8)|_ade ;};if _fce > -2&&_fce < (_efg .ReferenceBitmap .Height -1){_dgc =0; +if _faea {_dgc ,_bga =_efg .ReferenceBitmap .GetByte (_gbg +_ede +_eag );if _bga !=nil {return _bga ;};};_dbf =(_dbf <<8)|int (_dgc );};for _ccf :=0;_ccf < _ae ;_ccf ++{var _edc int ;_ace :=false ;_dcg :=(_aag >>4)&0x1ff;if _dcg ==0x1ff{_ace =true ;_edc =1; +}else if _dcg ==0x00{_ace =true ;};if !_ace {if _efg ._fb {_bad =_efg .overrideAtTemplate0 (_aag ,_cag +_ccf ,_bce ,_cdd ,_ccf );_efg ._cd .SetIndex (int32 (_bad ));}else {_efg ._cd .SetIndex (int32 (_aag ));};_edc ,_bga =_efg ._dc .DecodeBit (_efg ._cd ); +if _bga !=nil {return _bga ;};};_acc :=uint (7-_ccf );_cdd |=_edc <<_acc ;_aag =((_aag &0xdb6)<<1)|_edc |(_fcea >>_acc +5)&0x002|((_dbf >>_acc +2)&0x010)|((_aga >>_acc )&0x080)|((_ceg >>_acc )&0x400);};_bga =_efg .RegionBitmap .SetByte (_ddc ,byte (_cdd )); +if _bga !=nil {return _bga ;};_ddc ++;_gbg ++;};return nil ;};func (_agcc *TextRegion )checkInput ()error {const _gaee ="\u0063\u0068\u0065\u0063\u006b\u0049\u006e\u0070\u0075\u0074";if !_agcc .UseRefinement {if _agcc .SbrTemplate !=0{_aae .Log .Debug ("\u0053\u0062\u0072Te\u006d\u0070\u006c\u0061\u0074\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030"); +_agcc .SbrTemplate =0;};};if _agcc .SbHuffFS ==2||_agcc .SbHuffRDWidth ==2||_agcc .SbHuffRDHeight ==2||_agcc .SbHuffRDX ==2||_agcc .SbHuffRDY ==2{return _edb .Error (_gaee ,"h\u0075\u0066\u0066\u006d\u0061\u006e \u0066\u006c\u0061\u0067\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064"); +};if !_agcc .UseRefinement {if _agcc .SbHuffRSize !=0{_aae .Log .Debug ("\u0053\u0062\u0048uf\u0066\u0052\u0053\u0069\u007a\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030");_agcc .SbHuffRSize =0;};if _agcc .SbHuffRDY !=0{_aae .Log .Debug ("S\u0062\u0048\u0075\u0066fR\u0044Y\u0020\u0073\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u0030"); +_agcc .SbHuffRDY =0;};if _agcc .SbHuffRDX !=0{_aae .Log .Debug ("S\u0062\u0048\u0075\u0066fR\u0044X\u0020\u0073\u0068\u006f\u0075l\u0064\u0020\u0062\u0065\u0020\u0030");_agcc .SbHuffRDX =0;};if _agcc .SbHuffRDWidth !=0{_aae .Log .Debug ("\u0053b\u0048\u0075\u0066\u0066R\u0044\u0057\u0069\u0064\u0074h\u0020s\u0068o\u0075\u006c\u0064\u0020\u0062\u0065\u00200"); +_agcc .SbHuffRDWidth =0;};if _agcc .SbHuffRDHeight !=0{_aae .Log .Debug ("\u0053\u0062\u0048\u0075\u0066\u0066\u0052\u0044\u0048\u0065\u0069g\u0068\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020b\u0065\u0020\u0030");_agcc .SbHuffRDHeight =0;};}; +return nil ;};func (_abfa *HalftoneRegion )renderPattern (_dcb [][]int )(_agbda error ){var _afge ,_bccd int ;for _gagbb :=0;_gagbb < int (_abfa .HGridHeight );_gagbb ++{for _gee :=0;_gee < int (_abfa .HGridWidth );_gee ++{_afge =_abfa .computeX (_gagbb ,_gee ); +_bccd =_abfa .computeY (_gagbb ,_gee );_fgdb :=_abfa .Patterns [_dcb [_gagbb ][_gee ]];if _agbda =_gf .Blit (_fgdb ,_abfa .HalftoneRegionBitmap ,_afge +int (_abfa .HGridX ),_bccd +int (_abfa .HGridY ),_abfa .CombinationOperator );_agbda !=nil {return _agbda ; +};};};return nil ;};const (ORandom OrganizationType =iota ;OSequential ;);func (_fedf *GenericRefinementRegion )decodeTemplate (_cca ,_bfc ,_ccg ,_gbgg ,_dfg ,_fgg ,_fbc ,_dcd ,_afg ,_ecb int ,_faec templater )(_bac error ){var (_bfa ,_feg ,_dce ,_cec ,_fafd int16 ; +_daf ,_bbd ,_gged ,_dbb int ;_ega byte ;);if _afg >=1&&(_afg -1)< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb -_gbgg );if _bac !=nil {return ;};_daf =int (_ega );};if _afg >=0&&(_afg )< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb ); +if _bac !=nil {return ;};_bbd =int (_ega );};if _afg >=-1&&(_afg +1)< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb +_gbgg );if _bac !=nil {return ;};_gged =int (_ega );};_ecb ++;if _cca >=1{_ega ,_bac =_fedf .RegionBitmap .GetByte (_dcd -_ccg ); +if _bac !=nil {return ;};_dbb =int (_ega );};_dcd ++;_gda :=_fedf .ReferenceDX %8;_fafb :=6+_gda ;_gfd :=_ecb %_gbgg ;if _fafb >=0{if _fafb < 8{_bfa =int16 (_daf >>uint (_fafb ))&0x07;};if _fafb < 8{_feg =int16 (_bbd >>uint (_fafb ))&0x07;};if _fafb < 8{_dce =int16 (_gged >>uint (_fafb ))&0x07; +};if _fafb ==6&&_gfd > 1{if _afg >=1&&(_afg -1)< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb -_gbgg -2);if _bac !=nil {return _bac ;};_bfa |=int16 (_ega <<2)&0x04;};if _afg >=0&&_afg < _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb -2); +if _bac !=nil {return _bac ;};_feg |=int16 (_ega <<2)&0x04;};if _afg >=-1&&_afg +1< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb +_gbgg -2);if _bac !=nil {return _bac ;};_dce |=int16 (_ega <<2)&0x04;};};if _fafb ==0{_daf =0; +_bbd =0;_gged =0;if _gfd < _gbgg -1{if _afg >=1&&_afg -1< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb -_gbgg );if _bac !=nil {return _bac ;};_daf =int (_ega );};if _afg >=0&&_afg < _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb ); +if _bac !=nil {return _bac ;};_bbd =int (_ega );};if _afg >=-1&&_afg +1< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb +_gbgg );if _bac !=nil {return _bac ;};_gged =int (_ega );};};_ecb ++;};}else {_bfa =int16 (_daf <<1)&0x07; +_feg =int16 (_bbd <<1)&0x07;_dce =int16 (_gged <<1)&0x07;_daf =0;_bbd =0;_gged =0;if _gfd < _gbgg -1{if _afg >=1&&_afg -1< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb -_gbgg );if _bac !=nil {return _bac ;};_daf =int (_ega ); +};if _afg >=0&&_afg < _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb );if _bac !=nil {return _bac ;};_bbd =int (_ega );};if _afg >=-1&&_afg +1< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb +_gbgg ); +if _bac !=nil {return _bac ;};_gged =int (_ega );};_ecb ++;};_bfa |=int16 ((_daf >>7)&0x07);_feg |=int16 ((_bbd >>7)&0x07);_dce |=int16 ((_gged >>7)&0x07);};_cec =int16 (_dbb >>6);_fafd =0;_ddf :=(2-_gda )%8;_daf <<=uint (_ddf );_bbd <<=uint (_ddf );_gged <<=uint (_ddf ); +_dbb <<=2;var _dfgg int ;for _cfde :=0;_cfde < _bfc ;_cfde ++{_cac :=_cfde &0x07;_bdb :=_faec .form (_bfa ,_feg ,_dce ,_cec ,_fafd );if _fedf ._fb {_ega ,_bac =_fedf .RegionBitmap .GetByte (_fedf .RegionBitmap .GetByteIndex (_cfde ,_cca ));if _bac !=nil {return _bac ; +};_fedf ._cd .SetIndex (int32 (_fedf .overrideAtTemplate0 (int (_bdb ),_cfde ,_cca ,int (_ega ),_cac )));}else {_fedf ._cd .SetIndex (int32 (_bdb ));};_dfgg ,_bac =_fedf ._dc .DecodeBit (_fedf ._cd );if _bac !=nil {return _bac ;};if _bac =_fedf .RegionBitmap .SetPixel (_cfde ,_cca ,byte (_dfgg )); +_bac !=nil {return _bac ;};_bfa =((_bfa <<1)|0x01&int16 (_daf >>7))&0x07;_feg =((_feg <<1)|0x01&int16 (_bbd >>7))&0x07;_dce =((_dce <<1)|0x01&int16 (_gged >>7))&0x07;_cec =((_cec <<1)|0x01&int16 (_dbb >>7))&0x07;_fafd =int16 (_dfgg );if (_cfde -int (_fedf .ReferenceDX ))%8==5{_daf =0; +_bbd =0;_gged =0;if ((_cfde -int (_fedf .ReferenceDX ))/8)+1< _fedf .ReferenceBitmap .RowStride {if _afg >=1&&(_afg -1)< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb -_gbgg );if _bac !=nil {return _bac ;};_daf =int (_ega ); +};if _afg >=0&&_afg < _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb );if _bac !=nil {return _bac ;};_bbd =int (_ega );};if _afg >=-1&&(_afg +1)< _fedf .ReferenceBitmap .Height {_ega ,_bac =_fedf .ReferenceBitmap .GetByte (_ecb +_gbgg ); +if _bac !=nil {return _bac ;};_gged =int (_ega );};};_ecb ++;}else {_daf <<=1;_bbd <<=1;_gged <<=1;};if _cac ==5&&_cca >=1{if ((_cfde >>3)+1)>=_fedf .RegionBitmap .RowStride {_dbb =0;}else {_ega ,_bac =_fedf .RegionBitmap .GetByte (_dcd -_ccg );if _bac !=nil {return _bac ; +};_dbb =int (_ega );};_dcd ++;}else {_dbb <<=1;};};return nil ;};func (_ddfb *SymbolDictionary )setExportedSymbols (_daag []int ){for _begd :=uint32 (0);_begd < _ddfb ._gfg +_ddfb .NumberOfNewSymbols ;_begd ++{if _daag [_begd ]==1{var _fbaac *_gf .Bitmap ; +if _begd < _ddfb ._gfg {_fbaac =_ddfb ._bgbd [_begd ];}else {_fbaac =_ddfb ._gedb [_begd -_ddfb ._gfg ];};_aae .Log .Trace ("\u005bS\u0059\u004dB\u004f\u004c\u002d\u0044I\u0043\u0054\u0049O\u004e\u0041\u0052\u0059\u005d\u0020\u0041\u0064\u0064 E\u0078\u0070\u006fr\u0074\u0065d\u0053\u0079\u006d\u0062\u006f\u006c:\u0020\u0027%\u0073\u0027",_fbaac ); +_ddfb ._aebc =append (_ddfb ._aebc ,_fbaac );};};};func (_fbbcf *TextRegion )blit (_addd *_gf .Bitmap ,_dcbe int64 )error {if _fbbcf .IsTransposed ==0&&(_fbbcf .ReferenceCorner ==2||_fbbcf .ReferenceCorner ==3){_fbbcf ._abca +=int64 (_addd .Width -1);}else if _fbbcf .IsTransposed ==1&&(_fbbcf .ReferenceCorner ==0||_fbbcf .ReferenceCorner ==2){_fbbcf ._abca +=int64 (_addd .Height -1); +};_cggc :=_fbbcf ._abca ;if _fbbcf .IsTransposed ==1{_cggc ,_dcbe =_dcbe ,_cggc ;};switch _fbbcf .ReferenceCorner {case 0:_dcbe -=int64 (_addd .Height -1);case 2:_dcbe -=int64 (_addd .Height -1);_cggc -=int64 (_addd .Width -1);case 3:_cggc -=int64 (_addd .Width -1); +};_eegea :=_gf .Blit (_addd ,_fbbcf .RegionBitmap ,int (_cggc ),int (_dcbe ),_fbbcf .CombinationOperator );if _eegea !=nil {return _eegea ;};if _fbbcf .IsTransposed ==0&&(_fbbcf .ReferenceCorner ==0||_fbbcf .ReferenceCorner ==1){_fbbcf ._abca +=int64 (_addd .Width -1); +};if _fbbcf .IsTransposed ==1&&(_fbbcf .ReferenceCorner ==1||_fbbcf .ReferenceCorner ==3){_fbbcf ._abca +=int64 (_addd .Height -1);};return nil ;};func (_ffa *GenericRegion )getPixel (_bceb ,_decc int )int8 {if _bceb < 0||_bceb >=_ffa .Bitmap .Width {return 0; +};if _decc < 0||_decc >=_ffa .Bitmap .Height {return 0;};if _ffa .Bitmap .GetPixel (_bceb ,_decc ){return 1;};return 0;};func (_cda *PageInformationSegment )String ()string {_beced :=&_d .Builder {};_beced .WriteString ("\u000a\u005b\u0050\u0041G\u0045\u002d\u0049\u004e\u0046\u004f\u0052\u004d\u0041\u0054I\u004fN\u002d\u0053\u0045\u0047\u004d\u0045\u004eT\u005d\u000a"); +_beced .WriteString (_af .Sprintf ("\u0009\u002d \u0042\u004d\u0048e\u0069\u0067\u0068\u0074\u003a\u0020\u0025\u0064\u000a",_cda .PageBMHeight ));_beced .WriteString (_af .Sprintf ("\u0009-\u0020B\u004d\u0057\u0069\u0064\u0074\u0068\u003a\u0020\u0025\u0064\u000a",_cda .PageBMWidth )); +_beced .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0052es\u006f\u006c\u0075\u0074\u0069\u006f\u006e\u0058\u003a\u0020\u0025\u0064\u000a",_cda .ResolutionX ));_beced .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0052es\u006f\u006c\u0075\u0074\u0069\u006f\u006e\u0059\u003a\u0020\u0025\u0064\u000a",_cda .ResolutionY )); +_beced .WriteString (_af .Sprintf ("\t\u002d\u0020\u0043\u006f\u006d\u0062i\u006e\u0061\u0074\u0069\u006f\u006e\u004f\u0070\u0065r\u0061\u0074\u006fr\u003a \u0025\u0073\u000a",_cda ._dbcd ));_beced .WriteString (_af .Sprintf ("\t\u002d\u0020\u0043\u006f\u006d\u0062i\u006e\u0061\u0074\u0069\u006f\u006eO\u0070\u0065\u0072\u0061\u0074\u006f\u0072O\u0076\u0065\u0072\u0072\u0069\u0064\u0065\u003a\u0020\u0025v\u000a",_cda ._fbbge )); +_beced .WriteString (_af .Sprintf ("\u0009-\u0020I\u0073\u004c\u006f\u0073\u0073l\u0065\u0073s\u003a\u0020\u0025\u0076\u000a",_cda .IsLossless ));_beced .WriteString (_af .Sprintf ("\u0009\u002d\u0020R\u0065\u0071\u0075\u0069r\u0065\u0073\u0041\u0075\u0078\u0069\u006ci\u0061\u0072\u0079\u0042\u0075\u0066\u0066\u0065\u0072\u003a\u0020\u0025\u0076\u000a",_cda ._cbdc )); +_beced .WriteString (_af .Sprintf ("\u0009\u002d\u0020M\u0069\u0067\u0068\u0074C\u006f\u006e\u0074\u0061\u0069\u006e\u0052e\u0066\u0069\u006e\u0065\u006d\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0076\u000a",_cda ._ccdd ));_beced .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0049\u0073\u0053\u0074\u0072\u0069\u0070\u0065\u0064:\u0020\u0025\u0076\u000a",_cda .IsStripe )); +_beced .WriteString (_af .Sprintf ("\t\u002d\u0020\u004d\u0061xS\u0074r\u0069\u0070\u0065\u0053\u0069z\u0065\u003a\u0020\u0025\u0076\u000a",_cda .MaxStripeSize ));return _beced .String ();};func (_dcbb *PatternDictionary )setGbAtPixels (){if _dcbb .HDTemplate ==0{_dcbb .GBAtX =make ([]int8 ,4); +_dcbb .GBAtY =make ([]int8 ,4);_dcbb .GBAtX [0]=-int8 (_dcbb .HdpWidth );_dcbb .GBAtY [0]=0;_dcbb .GBAtX [1]=-3;_dcbb .GBAtY [1]=-1;_dcbb .GBAtX [2]=2;_dcbb .GBAtY [2]=-2;_dcbb .GBAtX [3]=-2;_dcbb .GBAtY [3]=-2;}else {_dcbb .GBAtX =[]int8 {-int8 (_dcbb .HdpWidth )}; +_dcbb .GBAtY =[]int8 {0};};};func (_gbe *GenericRefinementRegion )updateOverride ()error {if _gbe .GrAtX ==nil ||_gbe .GrAtY ==nil {return _b .New ("\u0041\u0054\u0020\u0070\u0069\u0078\u0065\u006c\u0073\u0020\u006e\u006ft\u0020\u0073\u0065\u0074");};if len (_gbe .GrAtX )!=len (_gbe .GrAtY ){return _b .New ("A\u0054\u0020\u0070\u0069xe\u006c \u0069\u006e\u0063\u006f\u006es\u0069\u0073\u0074\u0065\u006e\u0074"); +};_gbe ._ce =make ([]bool ,len (_gbe .GrAtX ));switch _gbe .TemplateID {case 0:if _gbe .GrAtX [0]!=-1&&_gbe .GrAtY [0]!=-1{_gbe ._ce [0]=true ;_gbe ._fb =true ;};if _gbe .GrAtX [1]!=-1&&_gbe .GrAtY [1]!=-1{_gbe ._ce [1]=true ;_gbe ._fb =true ;};case 1:_gbe ._fb =false ; +};return nil ;};func (_da *EndOfStripe )parseHeader ()error {_cfd ,_dg :=_da ._gb .ReadBits (32);if _dg !=nil {return _dg ;};_da ._bc =int (_cfd &_e .MaxInt32 );return nil ;};type EndOfStripe struct{_gb *_g .Reader ;_bc int ;};func (_aedb *PageInformationSegment )parseHeader ()(_fegge error ){_aae .Log .Trace ("\u005b\u0050\u0061\u0067\u0065I\u006e\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0053\u0065\u0067m\u0065\u006e\u0074\u005d\u0020\u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0048\u0065\u0061\u0064\u0065\u0072\u002e\u002e\u002e"); +defer func (){var _fbdc ="[\u0050\u0061\u0067\u0065\u0049\u006e\u0066\u006f\u0072m\u0061\u0074\u0069\u006f\u006e\u0053\u0065gm\u0065\u006e\u0074\u005d \u0050\u0061\u0072\u0073\u0069\u006e\u0067\u0048\u0065ad\u0065\u0072 \u0046\u0069\u006e\u0069\u0073\u0068\u0065\u0064"; +if _fegge !=nil {_fbdc +="\u0020\u0077\u0069t\u0068\u0020\u0065\u0072\u0072\u006f\u0072\u0020"+_fegge .Error ();}else {_fbdc +="\u0020\u0073\u0075\u0063\u0063\u0065\u0073\u0073\u0066\u0075\u006c\u006c\u0079";};_aae .Log .Trace (_fbdc );}();if _fegge =_aedb .readWidthAndHeight (); +_fegge !=nil {return _fegge ;};if _fegge =_aedb .readResolution ();_fegge !=nil {return _fegge ;};_ ,_fegge =_aedb ._faef .ReadBit ();if _fegge !=nil {return _fegge ;};if _fegge =_aedb .readCombinationOperatorOverrideAllowed ();_fegge !=nil {return _fegge ; +};if _fegge =_aedb .readRequiresAuxiliaryBuffer ();_fegge !=nil {return _fegge ;};if _fegge =_aedb .readCombinationOperator ();_fegge !=nil {return _fegge ;};if _fegge =_aedb .readDefaultPixelValue ();_fegge !=nil {return _fegge ;};if _fegge =_aedb .readContainsRefinement (); +_fegge !=nil {return _fegge ;};if _fegge =_aedb .readIsLossless ();_fegge !=nil {return _fegge ;};if _fegge =_aedb .readIsStriped ();_fegge !=nil {return _fegge ;};if _fegge =_aedb .readMaxStripeSize ();_fegge !=nil {return _fegge ;};if _fegge =_aedb .checkInput (); +_fegge !=nil {return _fegge ;};_aae .Log .Trace ("\u0025\u0073",_aedb );return nil ;};func (_dbbdg *SymbolDictionary )setSymbolsArray ()error {if _dbbdg ._bgbd ==nil {if _afdb :=_dbbdg .retrieveImportSymbols ();_afdb !=nil {return _afdb ;};};if _dbbdg ._ebfb ==nil {_dbbdg ._ebfb =append (_dbbdg ._ebfb ,_dbbdg ._bgbd ...); +};return nil ;};func (_fef *SymbolDictionary )readNumberOfNewSymbols ()error {_gfefc ,_cdad :=_fef ._caba .ReadBits (32);if _cdad !=nil {return _cdad ;};_fef .NumberOfNewSymbols =uint32 (_gfefc &_e .MaxUint32 );return nil ;};func (_bda *SymbolDictionary )parseHeader ()(_ebeb error ){_aae .Log .Trace ("\u005b\u0053\u0059\u004d\u0042\u004f\u004c \u0044\u0049\u0043T\u0049\u004f\u004e\u0041R\u0059\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e"); +defer func (){if _ebeb !=nil {_aae .Log .Trace ("\u005bS\u0059\u004dB\u004f\u004c\u0020\u0044I\u0043\u0054\u0049O\u004e\u0041\u0052\u0059\u005d\u005b\u0050\u0041\u0052SE\u002d\u0048\u0045A\u0044\u0045R\u005d\u0020\u0066\u0061\u0069\u006ce\u0064\u002e \u0025\u0076",_ebeb ); +}else {_aae .Log .Trace ("\u005b\u0053\u0059\u004d\u0042\u004f\u004c \u0044\u0049\u0043T\u0049\u004f\u004e\u0041R\u0059\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002d\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); +};}();if _ebeb =_bda .readRegionFlags ();_ebeb !=nil {return _ebeb ;};if _ebeb =_bda .setAtPixels ();_ebeb !=nil {return _ebeb ;};if _ebeb =_bda .setRefinementAtPixels ();_ebeb !=nil {return _ebeb ;};if _ebeb =_bda .readNumberOfExportedSymbols ();_ebeb !=nil {return _ebeb ; +};if _ebeb =_bda .readNumberOfNewSymbols ();_ebeb !=nil {return _ebeb ;};if _ebeb =_bda .setInSyms ();_ebeb !=nil {return _ebeb ;};if _bda ._bddf {_eafg :=_bda .Header .RTSegments ;for _cecd :=len (_eafg )-1;_cecd >=0;_cecd --{if _eafg [_cecd ].Type ==0{_deba ,_ccae :=_eafg [_cecd ].SegmentData .(*SymbolDictionary ); +if !_ccae {_ebeb =_af .Errorf ("\u0072\u0065\u006c\u0061\u0074\u0065\u0064\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074:\u0020\u0025\u0076\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020S\u0079\u006d\u0062\u006f\u006c\u0020\u0044\u0069\u0063\u0074\u0069\u006fna\u0072\u0079\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074",_eafg [_cecd ]); +return _ebeb ;};if _deba ._bddf {_bda .setRetainedCodingContexts (_deba );};break ;};};};if _ebeb =_bda .checkInput ();_ebeb !=nil {return _ebeb ;};return nil ;};func (_eac *GenericRefinementRegion )overrideAtTemplate0 (_cde ,_abc ,_fbb ,_feaab ,_aagc int )int {if _eac ._ce [0]{_cde &=0xfff7; +if _eac .GrAtY [0]==0&&int (_eac .GrAtX [0])>=-_aagc {_cde |=(_feaab >>uint (7-(_aagc +int (_eac .GrAtX [0])))&0x1)<<3;}else {_cde |=_eac .getPixel (_eac .RegionBitmap ,_abc +int (_eac .GrAtX [0]),_fbb +int (_eac .GrAtY [0]))<<3;};};if _eac ._ce [1]{_cde &=0xefff; +if _eac .GrAtY [1]==0&&int (_eac .GrAtX [1])>=-_aagc {_cde |=(_feaab >>uint (7-(_aagc +int (_eac .GrAtX [1])))&0x1)<<12;}else {_cde |=_eac .getPixel (_eac .ReferenceBitmap ,_abc +int (_eac .GrAtX [1]),_fbb +int (_eac .GrAtY [1]));};};return _cde ;};var _ SegmentEncoder =&RegionSegment {}; +func (_abg *GenericRefinementRegion )readAtPixels ()error {_abg .GrAtX =make ([]int8 ,2);_abg .GrAtY =make ([]int8 ,2);_cage ,_bec :=_abg ._dd .ReadByte ();if _bec !=nil {return _bec ;};_abg .GrAtX [0]=int8 (_cage );_cage ,_bec =_abg ._dd .ReadByte (); +if _bec !=nil {return _bec ;};_abg .GrAtY [0]=int8 (_cage );_cage ,_bec =_abg ._dd .ReadByte ();if _bec !=nil {return _bec ;};_abg .GrAtX [1]=int8 (_cage );_cage ,_bec =_abg ._dd .ReadByte ();if _bec !=nil {return _bec ;};_abg .GrAtY [1]=int8 (_cage ); +return nil ;};func (_abafe *SymbolDictionary )decodeThroughTextRegion (_cfba ,_cceba ,_beda uint32 )error {if _abafe ._cged ==nil {_abafe ._cged =_adda (_abafe ._caba ,nil );_abafe ._cged .setContexts (_abafe ._afbd ,_df .NewStats (512,1),_df .NewStats (512,1),_df .NewStats (512,1),_df .NewStats (512,1),_abafe ._ggc ,_df .NewStats (512,1),_df .NewStats (512,1),_df .NewStats (512,1),_df .NewStats (512,1)); +};if _afda :=_abafe .setSymbolsArray ();_afda !=nil {return _afda ;};_abafe ._cged .setParameters (_abafe ._dgcb ,_abafe .IsHuffmanEncoded ,true ,_cfba ,_cceba ,_beda ,1,_abafe ._gfg +_abafe ._acga ,0,0,0,1,0,0,0,0,0,0,0,0,0,_abafe .SdrTemplate ,_abafe .SdrATX ,_abafe .SdrATY ,_abafe ._ebfb ,_abafe ._abcgg ); +return _abafe .addSymbol (_abafe ._cged );};func (_ecfc *GenericRegion )decodeTemplate3 (_bag ,_debe ,_gfb int ,_fegg ,_beg int )(_acg error ){const _fcba ="\u0064e\u0063o\u0064\u0065\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0033";var (_dfc ,_dabb int ; +_cdgf int ;_gefg byte ;_ga ,_gfdc int ;);if _bag >=1{_gefg ,_acg =_ecfc .Bitmap .GetByte (_beg );if _acg !=nil {return _edb .Wrap (_acg ,_fcba ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_cdgf =int (_gefg );};_dfc =(_cdgf >>1)&0x70;for _edd :=0; +_edd < _gfb ;_edd =_ga {var (_fafee byte ;_dfaa int ;);_ga =_edd +8;if _dfae :=_debe -_edd ;_dfae > 8{_dfaa =8;}else {_dfaa =_dfae ;};if _bag >=1{_cdgf <<=8;if _ga < _debe {_gefg ,_acg =_ecfc .Bitmap .GetByte (_beg +1);if _acg !=nil {return _edb .Wrap (_acg ,_fcba ,"\u0069\u006e\u006e\u0065\u0072\u0020\u002d\u0020\u006c\u0069\u006e\u0065 \u003e\u003d\u0020\u0031"); +};_cdgf |=int (_gefg );};};for _gfa :=0;_gfa < _dfaa ;_gfa ++{if _ecfc ._cab {_dabb =_ecfc .overrideAtTemplate3 (_dfc ,_edd +_gfa ,_bag ,int (_fafee ),_gfa );_ecfc ._fac .SetIndex (int32 (_dabb ));}else {_ecfc ._fac .SetIndex (int32 (_dfc ));};_gfdc ,_acg =_ecfc ._ddga .DecodeBit (_ecfc ._fac ); +if _acg !=nil {return _edb .Wrap (_acg ,_fcba ,"");};_fafee |=byte (_gfdc )<>uint (8-_gfa ))&0x010);};if _egag :=_ecfc .Bitmap .SetByte (_fegg ,_fafee );_egag !=nil {return _edb .Wrap (_egag ,_fcba ,""); +};_fegg ++;_beg ++;};return nil ;};var _ templater =&template0 {};func (_adec *GenericRefinementRegion )String ()string {_ced :=&_d .Builder {};_ced .WriteString ("\u000a[\u0047E\u004e\u0045\u0052\u0049\u0043 \u0052\u0045G\u0049\u004f\u004e\u005d\u000a"); +_ced .WriteString (_adec .RegionInfo .String ()+"\u000a");_ced .WriteString (_af .Sprintf ("\u0009\u002d \u0049\u0073\u0054P\u0047\u0052\u006f\u006e\u003a\u0020\u0025\u0076\u000a",_adec .IsTPGROn ));_ced .WriteString (_af .Sprintf ("\u0009-\u0020T\u0065\u006d\u0070\u006c\u0061t\u0065\u0049D\u003a\u0020\u0025\u0076\u000a",_adec .TemplateID )); +_ced .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0047\u0072\u0041\u0074\u0058\u003a\u0020\u0025\u0076\u000a",_adec .GrAtX ));_ced .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0047\u0072\u0041\u0074\u0059\u003a\u0020\u0025\u0076\u000a",_adec .GrAtY )); +_ced .WriteString (_af .Sprintf ("\u0009-\u0020R\u0065\u0066\u0065\u0072\u0065n\u0063\u0065D\u0058\u0020\u0025\u0076\u000a",_adec .ReferenceDX ));_ced .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0052ef\u0065\u0072\u0065\u006e\u0063\u0044\u0065\u0059\u003a\u0020\u0025\u0076\u000a",_adec .ReferenceDY )); +return _ced .String ();};type RegionSegment struct{_ebecg *_g .Reader ;BitmapWidth uint32 ;BitmapHeight uint32 ;XLocation uint32 ;YLocation uint32 ;CombinaionOperator _gf .CombinationOperator ;};type SymbolDictionary struct{_caba *_g .Reader ;SdrTemplate int8 ; +SdTemplate int8 ;_dedee bool ;_bddf bool ;SdHuffAggInstanceSelection bool ;SdHuffBMSizeSelection int8 ;SdHuffDecodeWidthSelection int8 ;SdHuffDecodeHeightSelection int8 ;UseRefinementAggregation bool ;IsHuffmanEncoded bool ;SdATX []int8 ;SdATY []int8 ; +SdrATX []int8 ;SdrATY []int8 ;NumberOfExportedSymbols uint32 ;NumberOfNewSymbols uint32 ;Header *Header ;_gfg uint32 ;_bgbd []*_gf .Bitmap ;_acga uint32 ;_gedb []*_gf .Bitmap ;_cfgd _fa .Tabler ;_accg _fa .Tabler ;_ccbc _fa .Tabler ;_ecef _fa .Tabler ; +_aebc []*_gf .Bitmap ;_ebfb []*_gf .Bitmap ;_dgcb *_df .Decoder ;_cged *TextRegion ;_ddcgf *GenericRegion ;_ebca *GenericRefinementRegion ;_afbd *_df .DecoderStats ;_ggae *_df .DecoderStats ;_bcbb *_df .DecoderStats ;_aagg *_df .DecoderStats ;_fdfd *_df .DecoderStats ; +_fagc *_df .DecoderStats ;_fccf *_df .DecoderStats ;_adba *_df .DecoderStats ;_ggc *_df .DecoderStats ;_abcgg int8 ;_cfcf *_gf .Bitmaps ;_bcgg []int ;_efgef map[int ]int ;_gdc bool ;};type HalftoneRegion struct{_fagd *_g .Reader ;_ceag *Header ;DataHeaderOffset int64 ; +DataHeaderLength int64 ;DataOffset int64 ;DataLength int64 ;RegionSegment *RegionSegment ;HDefaultPixel int8 ;CombinationOperator _gf .CombinationOperator ;HSkipEnabled bool ;HTemplate byte ;IsMMREncoded bool ;HGridWidth uint32 ;HGridHeight uint32 ;HGridX int32 ; +HGridY int32 ;HRegionX uint16 ;HRegionY uint16 ;HalftoneRegionBitmap *_gf .Bitmap ;Patterns []*_gf .Bitmap ;};func (_bead *Header )writeFlags (_aadd _g .BinaryWriter )(_afbc error ){const _fgf ="\u0048\u0065\u0061\u0064\u0065\u0072\u002e\u0077\u0072\u0069\u0074\u0065F\u006c\u0061\u0067\u0073"; +_aada :=byte (_bead .Type );if _afbc =_aadd .WriteByte (_aada );_afbc !=nil {return _edb .Wrap (_afbc ,_fgf ,"\u0077\u0072\u0069ti\u006e\u0067\u0020\u0073\u0065\u0067\u006d\u0065\u006et\u0020t\u0079p\u0065 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); +};if !_bead .RetainFlag &&!_bead .PageAssociationFieldSize {return nil ;};if _afbc =_aadd .SkipBits (-8);_afbc !=nil {return _edb .Wrap (_afbc ,_fgf ,"\u0073\u006bi\u0070\u0070\u0069\u006e\u0067\u0020\u0062\u0061\u0063\u006b\u0020\u0074\u0068\u0065\u0020\u0062\u0069\u0074\u0073\u0020\u0066\u0061il\u0065\u0064"); +};var _dad int ;if _bead .RetainFlag {_dad =1;};if _afbc =_aadd .WriteBit (_dad );_afbc !=nil {return _edb .Wrap (_afbc ,_fgf ,"\u0072\u0065\u0074\u0061in\u0020\u0072\u0065\u0074\u0061\u0069\u006e\u0020\u0066\u006c\u0061\u0067\u0073");};_dad =0;if _bead .PageAssociationFieldSize {_dad =1; +};if _afbc =_aadd .WriteBit (_dad );_afbc !=nil {return _edb .Wrap (_afbc ,_fgf ,"p\u0061\u0067\u0065\u0020as\u0073o\u0063\u0069\u0061\u0074\u0069o\u006e\u0020\u0066\u006c\u0061\u0067");};_aadd .FinishByte ();return nil ;};type templater interface{form (_aba ,_dfa ,_agae ,_fgb ,_aefd int16 )int16 ; +setIndex (_dgfc *_df .DecoderStats );};func (_abe *TextRegion )setContexts (_dcfc *_df .DecoderStats ,_eeeg *_df .DecoderStats ,_cfgg *_df .DecoderStats ,_fagfg *_df .DecoderStats ,_babbg *_df .DecoderStats ,_aaedg *_df .DecoderStats ,_gfbg *_df .DecoderStats ,_ebgd *_df .DecoderStats ,_aaaa *_df .DecoderStats ,_ggeee *_df .DecoderStats ){_abe ._gede =_eeeg ; +_abe ._cgdb =_cfgg ;_abe ._dacg =_fagfg ;_abe ._fff =_babbg ;_abe ._gbcc =_gfbg ;_abe ._acecd =_ebgd ;_abe ._bbae =_aaedg ;_abe ._ffab =_aaaa ;_abe ._fbeg =_ggeee ;_abe ._bada =_dcfc ;};func (_beag *GenericRegion )overrideAtTemplate3 (_eage ,_cae ,_gac ,_cbc ,_cbfg int )int {_eage &=0x3EF; +if _beag .GBAtY [0]==0&&_beag .GBAtX [0]>=-int8 (_cbfg ){_eage |=(_cbc >>uint (7-(int8 (_cbfg )+_beag .GBAtX [0]))&0x1)<<4;}else {_eage |=int (_beag .getPixel (_cae +int (_beag .GBAtX [0]),_gac +int (_beag .GBAtY [0])))<<4;};return _eage ;};func (_gbcd *TextRegion )symbolIDCodeLengths ()error {var (_fcfe []*_fa .Code ; +_agdd uint64 ;_cedf _fa .Tabler ;_dcea error ;);for _abec :=0;_abec < 35;_abec ++{_agdd ,_dcea =_gbcd ._ecc .ReadBits (4);if _dcea !=nil {return _dcea ;};_gaab :=int (_agdd &0xf);if _gaab > 0{_fcfe =append (_fcfe ,_fa .NewCode (int32 (_gaab ),0,int32 (_abec ),false )); +};};_cedf ,_dcea =_fa .NewFixedSizeTable (_fcfe );if _dcea !=nil {return _dcea ;};var (_daefg int64 ;_dbbgb uint32 ;_gaag []*_fa .Code ;_beggf int64 ;);for _dbbgb < _gbcd .NumberOfSymbols {_beggf ,_dcea =_cedf .Decode (_gbcd ._ecc );if _dcea !=nil {return _dcea ; +};if _beggf < 32{if _beggf > 0{_gaag =append (_gaag ,_fa .NewCode (int32 (_beggf ),0,int32 (_dbbgb ),false ));};_daefg =_beggf ;_dbbgb ++;}else {var _cdefg ,_ggcd int64 ;switch _beggf {case 32:_agdd ,_dcea =_gbcd ._ecc .ReadBits (2);if _dcea !=nil {return _dcea ; +};_cdefg =3+int64 (_agdd );if _dbbgb > 0{_ggcd =_daefg ;};case 33:_agdd ,_dcea =_gbcd ._ecc .ReadBits (3);if _dcea !=nil {return _dcea ;};_cdefg =3+int64 (_agdd );case 34:_agdd ,_dcea =_gbcd ._ecc .ReadBits (7);if _dcea !=nil {return _dcea ;};_cdefg =11+int64 (_agdd ); +};for _dead :=0;_dead < int (_cdefg );_dead ++{if _ggcd > 0{_gaag =append (_gaag ,_fa .NewCode (int32 (_ggcd ),0,int32 (_dbbgb ),false ));};_dbbgb ++;};};};_gbcd ._ecc .Align ();_gbcd ._dbcbe ,_dcea =_fa .NewFixedSizeTable (_gaag );return _dcea ;};func (_feb *TextRegion )decodeRdw ()(int64 ,error ){const _gdgcg ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064w"; +if _feb .IsHuffmanEncoded {if _feb .SbHuffRDWidth ==3{if _feb ._beed ==nil {var (_bgbdd int ;_efeab error ;);if _feb .SbHuffFS ==3{_bgbdd ++;};if _feb .SbHuffDS ==3{_bgbdd ++;};if _feb .SbHuffDT ==3{_bgbdd ++;};_feb ._beed ,_efeab =_feb .getUserTable (_bgbdd ); +if _efeab !=nil {return 0,_edb .Wrap (_efeab ,_gdgcg ,"");};};return _feb ._beed .Decode (_feb ._ecc );};_efcb ,_bgdf :=_fa .GetStandardTable (14+int (_feb .SbHuffRDWidth ));if _bgdf !=nil {return 0,_edb .Wrap (_bgdf ,_gdgcg ,"");};return _efcb .Decode (_feb ._ecc ); +};_ebea ,_ecde :=_feb ._egdc .DecodeInt (_feb ._gbcc );if _ecde !=nil {return 0,_edb .Wrap (_ecde ,_gdgcg ,"");};return int64 (_ebea ),nil ;};func (_bbe *Header )subInputReader ()(*_g .Reader ,error ){_gfab :=int (_bbe .SegmentDataLength );if _bbe .SegmentDataLength ==_e .MaxInt32 {_gfab =-1; +};return _bbe .Reader .NewPartialReader (int (_bbe .SegmentDataStartOffset ),_gfab ,false );};func (_gccb *SymbolDictionary )addSymbol (_eafc Regioner )error {_gbee ,_cfge :=_eafc .GetRegionBitmap ();if _cfge !=nil {return _cfge ;};_gccb ._gedb [_gccb ._acga ]=_gbee ; +_gccb ._ebfb =append (_gccb ._ebfb ,_gbee );_aae .Log .Trace ("\u005b\u0053YM\u0042\u004f\u004c \u0044\u0049\u0043\u0054ION\u0041RY\u005d\u0020\u0041\u0064\u0064\u0065\u0064 s\u0079\u006d\u0062\u006f\u006c\u003a\u0020%\u0073",_gbee );return nil ;};func (_dcdf *GenericRegion )decodeTemplate1 (_bacc ,_ebad ,_cfb int ,_dabe ,_fecd int )(_dcga error ){const _eeg ="\u0064e\u0063o\u0064\u0065\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0031"; +var (_ggee ,_fbf int ;_gea ,_gdbd int ;_ccgc byte ;_aggg ,_abcf int ;);if _bacc >=1{_ccgc ,_dcga =_dcdf .Bitmap .GetByte (_fecd );if _dcga !=nil {return _edb .Wrap (_dcga ,_eeg ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_gea =int (_ccgc );};if _bacc >=2{_ccgc ,_dcga =_dcdf .Bitmap .GetByte (_fecd -_dcdf .Bitmap .RowStride ); +if _dcga !=nil {return _edb .Wrap (_dcga ,_eeg ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00202");};_gdbd =int (_ccgc )<<5;};_ggee =((_gea >>1)&0x1f8)|((_gdbd >>1)&0x1e00);for _cbb :=0;_cbb < _cfb ;_cbb =_aggg {var (_cddee byte ;_agge int ;);_aggg =_cbb +8; +if _geac :=_ebad -_cbb ;_geac > 8{_agge =8;}else {_agge =_geac ;};if _bacc > 0{_gea <<=8;if _aggg < _ebad {_ccgc ,_dcga =_dcdf .Bitmap .GetByte (_fecd +1);if _dcga !=nil {return _edb .Wrap (_dcga ,_eeg ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0030"); +};_gea |=int (_ccgc );};};if _bacc > 1{_gdbd <<=8;if _aggg < _ebad {_ccgc ,_dcga =_dcdf .Bitmap .GetByte (_fecd -_dcdf .Bitmap .RowStride +1);if _dcga !=nil {return _edb .Wrap (_dcga ,_eeg ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0031");};_gdbd |=int (_ccgc )<<5; +};};for _bdee :=0;_bdee < _agge ;_bdee ++{if _dcdf ._cab {_fbf =_dcdf .overrideAtTemplate1 (_ggee ,_cbb +_bdee ,_bacc ,int (_cddee ),_bdee );_dcdf ._fac .SetIndex (int32 (_fbf ));}else {_dcdf ._fac .SetIndex (int32 (_ggee ));};_abcf ,_dcga =_dcdf ._ddga .DecodeBit (_dcdf ._fac ); +if _dcga !=nil {return _edb .Wrap (_dcga ,_eeg ,"");};_cddee |=byte (_abcf )<>_ccgcg )&0x8)|((_gdbd >>_ccgcg )&0x200);};if _acba :=_dcdf .Bitmap .SetByte (_dabe ,_cddee ); +_acba !=nil {return _edb .Wrap (_acba ,_eeg ,"");};_dabe ++;_fecd ++;};return nil ;};type GenericRegion struct{_efeg *_g .Reader ;DataHeaderOffset int64 ;DataHeaderLength int64 ;DataOffset int64 ;DataLength int64 ;RegionSegment *RegionSegment ;UseExtTemplates bool ; +IsTPGDon bool ;GBTemplate byte ;IsMMREncoded bool ;UseMMR bool ;GBAtX []int8 ;GBAtY []int8 ;GBAtOverride []bool ;_cab bool ;Bitmap *_gf .Bitmap ;_ddga *_df .Decoder ;_fac *_df .DecoderStats ;_gdf *_eb .Decoder ;};func (_abbb *TextRegion )decodeRdh ()(int64 ,error ){const _bdae ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064h"; +if _abbb .IsHuffmanEncoded {if _abbb .SbHuffRDHeight ==3{if _abbb ._cceff ==nil {var (_dbdfb int ;_gefa error ;);if _abbb .SbHuffFS ==3{_dbdfb ++;};if _abbb .SbHuffDS ==3{_dbdfb ++;};if _abbb .SbHuffDT ==3{_dbdfb ++;};if _abbb .SbHuffRDWidth ==3{_dbdfb ++; +};_abbb ._cceff ,_gefa =_abbb .getUserTable (_dbdfb );if _gefa !=nil {return 0,_edb .Wrap (_gefa ,_bdae ,"");};};return _abbb ._cceff .Decode (_abbb ._ecc );};_baab ,_bdbac :=_fa .GetStandardTable (14+int (_abbb .SbHuffRDHeight ));if _bdbac !=nil {return 0,_edb .Wrap (_bdbac ,_bdae ,""); +};return _baab .Decode (_abbb ._ecc );};_ffec ,_afaf :=_abbb ._egdc .DecodeInt (_abbb ._acecd );if _afaf !=nil {return 0,_edb .Wrap (_afaf ,_bdae ,"");};return int64 (_ffec ),nil ;};func (_eafb *SymbolDictionary )decodeRefinedSymbol (_dace ,_dfcg uint32 )error {var (_fbecd int ; +_cfdef ,_aggad int32 ;);if _eafb .IsHuffmanEncoded {_adeda ,_cdfa :=_eafb ._caba .ReadBits (byte (_eafb ._abcgg ));if _cdfa !=nil {return _cdfa ;};_fbecd =int (_adeda );_befa ,_cdfa :=_fa .GetStandardTable (15);if _cdfa !=nil {return _cdfa ;};_bbga ,_cdfa :=_befa .Decode (_eafb ._caba ); +if _cdfa !=nil {return _cdfa ;};_cfdef =int32 (_bbga );_bbga ,_cdfa =_befa .Decode (_eafb ._caba );if _cdfa !=nil {return _cdfa ;};_aggad =int32 (_bbga );_befa ,_cdfa =_fa .GetStandardTable (1);if _cdfa !=nil {return _cdfa ;};if _ ,_cdfa =_befa .Decode (_eafb ._caba ); +_cdfa !=nil {return _cdfa ;};_eafb ._caba .Align ();}else {_gbea ,_gfef :=_eafb ._dgcb .DecodeIAID (uint64 (_eafb ._abcgg ),_eafb ._ggc );if _gfef !=nil {return _gfef ;};_fbecd =int (_gbea );_cfdef ,_gfef =_eafb ._dgcb .DecodeInt (_eafb ._fagc );if _gfef !=nil {return _gfef ; +};_aggad ,_gfef =_eafb ._dgcb .DecodeInt (_eafb ._fccf );if _gfef !=nil {return _gfef ;};};if _acagg :=_eafb .setSymbolsArray ();_acagg !=nil {return _acagg ;};_dfccb :=_eafb ._ebfb [_fbecd ];if _fdfc :=_eafb .decodeNewSymbols (_dace ,_dfcg ,_dfccb ,_cfdef ,_aggad ); +_fdfc !=nil {return _fdfc ;};if _eafb .IsHuffmanEncoded {_eafb ._caba .Align ();};return nil ;};func (_fege *TextRegion )decodeSymbolInstances ()error {_ebbb ,_aeaf :=_fege .decodeStripT ();if _aeaf !=nil {return _aeaf ;};var (_dbbg int64 ;_fece uint32 ; +);for _fece < _fege .NumberOfSymbolInstances {_bcef ,_cgedc :=_fege .decodeDT ();if _cgedc !=nil {return _cgedc ;};_ebbb +=_bcef ;var _cfca int64 ;_bfbgd :=true ;_fege ._abca =0;for {if _bfbgd {_cfca ,_cgedc =_fege .decodeDfs ();if _cgedc !=nil {return _cgedc ; +};_dbbg +=_cfca ;_fege ._abca =_dbbg ;_bfbgd =false ;}else {_ddbgc ,_cbdd :=_fege .decodeIds ();if _aa .Is (_cbdd ,_f .ErrOOB ){break ;};if _cbdd !=nil {return _cbdd ;};if _fece >=_fege .NumberOfSymbolInstances {break ;};_fege ._abca +=_ddbgc +int64 (_fege .SbDsOffset ); +};_ccca ,_cagf :=_fege .decodeCurrentT ();if _cagf !=nil {return _cagf ;};_bbb :=_ebbb +_ccca ;_dfff ,_cagf :=_fege .decodeID ();if _cagf !=nil {return _cagf ;};_eefd ,_cagf :=_fege .decodeRI ();if _cagf !=nil {return _cagf ;};_eede ,_cagf :=_fege .decodeIb (_eefd ,_dfff ); +if _cagf !=nil {return _cagf ;};if _cagf =_fege .blit (_eede ,_bbb );_cagf !=nil {return _cagf ;};_fece ++;};};return nil ;};func (_cafd *PageInformationSegment )Size ()int {return 19};func (_agef *HalftoneRegion )computeGrayScalePlanes (_bab []*_gf .Bitmap ,_bef int )([][]int ,error ){_fda :=make ([][]int ,_agef .HGridHeight ); +for _gdbb :=0;_gdbb < len (_fda );_gdbb ++{_fda [_gdbb ]=make ([]int ,_agef .HGridWidth );};for _dfag :=0;_dfag < int (_agef .HGridHeight );_dfag ++{for _gce :=0;_gce < int (_agef .HGridWidth );_gce +=8{var _eaaa int ;if _cbd :=int (_agef .HGridWidth )-_gce ; +_cbd > 8{_eaaa =8;}else {_eaaa =_cbd ;};_cacd :=_bab [0].GetByteIndex (_gce ,_dfag );for _gagb :=0;_gagb < _eaaa ;_gagb ++{_gfe :=_gagb +_gce ;_fda [_dfag ][_gfe ]=0;for _ecgbb :=0;_ecgbb < _bef ;_ecgbb ++{_ffb ,_babb :=_bab [_ecgbb ].GetByte (_cacd ); +if _babb !=nil {return nil ,_babb ;};_efd :=_ffb >>uint (7-_gfe &7);_afed :=_efd &1;_ggd :=1<=1{_fcb ,_fga =_gga .Bitmap .GetByte (_bafa );if _fga !=nil {return _edb .Wrap (_fga ,_dede ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_bbce =int (_fcb );};if _ddec >=2{_fcb ,_fga =_gga .Bitmap .GetByte (_bafa -_gga .Bitmap .RowStride ); +if _fga !=nil {return _edb .Wrap (_fga ,_dede ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00202");};_ebd =int (_fcb )<<6;};_ebeg =(_bbce &0xf0)|(_ebd &0x3800);for _fgdd :=0;_fgdd < _dedd ;_fgdd =_dae {var (_edf byte ;_bed int ;);_dae =_fgdd +8;if _cbg :=_ecgb -_fgdd ; +_cbg > 8{_bed =8;}else {_bed =_cbg ;};if _ddec > 0{_bbce <<=8;if _dae < _ecgb {_fcb ,_fga =_gga .Bitmap .GetByte (_bafa +1);if _fga !=nil {return _edb .Wrap (_fga ,_dede ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0030");};_bbce |=int (_fcb );};};if _ddec > 1{_ebd <<=8; +if _dae < _ecgb {_fcb ,_fga =_gga .Bitmap .GetByte (_bafa -_gga .Bitmap .RowStride +1);if _fga !=nil {return _edb .Wrap (_fga ,_dede ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0031");};_ebd |=int (_fcb )<<6;};};for _aebd :=0;_aebd < _bed ;_aebd ++{_eba :=uint (7-_aebd ); +if _gga ._cab {_fbed =_gga .overrideAtTemplate0b (_ebeg ,_fgdd +_aebd ,_ddec ,int (_edf ),_aebd ,int (_eba ));_gga ._fac .SetIndex (int32 (_fbed ));}else {_gga ._fac .SetIndex (int32 (_ebeg ));};var _beac int ;_beac ,_fga =_gga ._ddga .DecodeBit (_gga ._fac ); +if _fga !=nil {return _edb .Wrap (_fga ,_dede ,"");};_edf |=byte (_beac <<_eba );_ebeg =((_ebeg &0x7bf7)<<1)|_beac |((_bbce >>_eba )&0x10)|((_ebd >>_eba )&0x800);};if _dbcb :=_gga .Bitmap .SetByte (_bdg ,_edf );_dbcb !=nil {return _edb .Wrap (_dbcb ,_dede ,""); +};_bdg ++;_bafa ++;};return nil ;};func (_ffg *HalftoneRegion )computeX (_dbgc ,_egab int )int {return _ffg .shiftAndFill (int (_ffg .HGridX )+_dbgc *int (_ffg .HRegionY )+_egab *int (_ffg .HRegionX ));};func (_faacd *SymbolDictionary )setCodingStatistics ()error {if _faacd ._adba ==nil {_faacd ._adba =_df .NewStats (512,1); +};if _faacd ._ggae ==nil {_faacd ._ggae =_df .NewStats (512,1);};if _faacd ._bcbb ==nil {_faacd ._bcbb =_df .NewStats (512,1);};if _faacd ._aagg ==nil {_faacd ._aagg =_df .NewStats (512,1);};if _faacd ._fdfd ==nil {_faacd ._fdfd =_df .NewStats (512,1); +};if _faacd .UseRefinementAggregation &&_faacd ._ggc ==nil {_faacd ._ggc =_df .NewStats (1<=-int8 (_cceg ){_efcd |=(_aee >>uint (7-(int8 (_cceg )+_egfa .GBAtX [0]))&0x1)<<2;}else {_efcd |=int (_egfa .getPixel (_dbdb +int (_egfa .GBAtX [0]),_faeg +int (_egfa .GBAtY [0])))<<2;};return _efcd ;};func (_bcg *GenericRefinementRegion )Init (header *Header ,r *_g .Reader )error {_bcg ._cb =header ; +_bcg ._dd =r ;_bcg .RegionInfo =NewRegionSegment (r );return _bcg .parseHeader ();};var _ SegmentEncoder =&GenericRegion {};func (_bcfd *TableSegment )StreamReader ()*_g .Reader {return _bcfd ._dgdg };func (_fdb *RegionSegment )Size ()int {return 17};type Documenter interface{GetPage (int )(Pager ,error ); +GetGlobalSegment (int )(*Header ,error );};func (_aabc *TextRegion )String ()string {_edded :=&_d .Builder {};_edded .WriteString ("\u000a[\u0054E\u0058\u0054\u0020\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u000a");_edded .WriteString (_aabc .RegionInfo .String ()+"\u000a"); +_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053br\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u003a\u0020\u0025\u0076\u000a",_aabc .SbrTemplate ));_edded .WriteString (_af .Sprintf ("\u0009-\u0020S\u0062\u0044\u0073\u004f\u0066f\u0073\u0065t\u003a\u0020\u0025\u0076\u000a",_aabc .SbDsOffset )); +_edded .WriteString (_af .Sprintf ("\t\u002d \u0044\u0065\u0066\u0061\u0075\u006c\u0074\u0050i\u0078\u0065\u006c\u003a %\u0076\u000a",_aabc .DefaultPixel ));_edded .WriteString (_af .Sprintf ("\t\u002d\u0020\u0043\u006f\u006d\u0062i\u006e\u0061\u0074\u0069\u006f\u006e\u004f\u0070\u0065r\u0061\u0074\u006fr\u003a \u0025\u0076\u000a",_aabc .CombinationOperator )); +_edded .WriteString (_af .Sprintf ("\t\u002d \u0049\u0073\u0054\u0072\u0061\u006e\u0073\u0070o\u0073\u0065\u0064\u003a %\u0076\u000a",_aabc .IsTransposed ));_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020Re\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0043\u006f\u0072\u006e\u0065\u0072\u003a\u0020\u0025\u0076\u000a",_aabc .ReferenceCorner )); +_edded .WriteString (_af .Sprintf ("\t\u002d\u0020\u0055\u0073eR\u0065f\u0069\u006e\u0065\u006d\u0065n\u0074\u003a\u0020\u0025\u0076\u000a",_aabc .UseRefinement ));_edded .WriteString (_af .Sprintf ("\u0009-\u0020\u0049\u0073\u0048\u0075\u0066\u0066\u006d\u0061\u006e\u0045n\u0063\u006f\u0064\u0065\u0064\u003a\u0020\u0025\u0076\u000a",_aabc .IsHuffmanEncoded )); +if _aabc .IsHuffmanEncoded {_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053bH\u0075\u0066\u0066\u0052\u0053\u0069\u007a\u0065\u003a\u0020\u0025\u0076\u000a",_aabc .SbHuffRSize ));_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0048\u0075\u0066\u0066\u0052\u0044\u0059:\u0020\u0025\u0076\u000a",_aabc .SbHuffRDY )); +_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0048\u0075\u0066\u0066\u0052\u0044\u0058:\u0020\u0025\u0076\u000a",_aabc .SbHuffRDX ));_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053bH\u0075\u0066\u0066\u0052\u0044\u0048\u0065\u0069\u0067\u0068\u0074\u003a\u0020\u0025v\u000a",_aabc .SbHuffRDHeight )); +_edded .WriteString (_af .Sprintf ("\t\u002d\u0020\u0053\u0062Hu\u0066f\u0052\u0044\u0057\u0069\u0064t\u0068\u003a\u0020\u0025\u0076\u000a",_aabc .SbHuffRDWidth ));_edded .WriteString (_af .Sprintf ("\u0009\u002d \u0053\u0062\u0048u\u0066\u0066\u0044\u0054\u003a\u0020\u0025\u0076\u000a",_aabc .SbHuffDT )); +_edded .WriteString (_af .Sprintf ("\u0009\u002d \u0053\u0062\u0048u\u0066\u0066\u0044\u0053\u003a\u0020\u0025\u0076\u000a",_aabc .SbHuffDS ));_edded .WriteString (_af .Sprintf ("\u0009\u002d \u0053\u0062\u0048u\u0066\u0066\u0046\u0053\u003a\u0020\u0025\u0076\u000a",_aabc .SbHuffFS )); +};_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0072\u0041\u0054\u0058:\u0020\u0025\u0076\u000a",_aabc .SbrATX ));_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0072\u0041\u0054\u0059:\u0020\u0025\u0076\u000a",_aabc .SbrATY )); +_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020N\u0075\u006d\u0062\u0065r\u004f\u0066\u0053\u0079\u006d\u0062\u006fl\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0073\u003a\u0020\u0025\u0076\u000a",_aabc .NumberOfSymbolInstances ));_edded .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0053\u0062\u0072\u0041\u0054\u0058:\u0020\u0025\u0076\u000a",_aabc .SbrATX )); +return _edded .String ();};func (_ece *GenericRegion )GetRegionBitmap ()(_ddge *_gf .Bitmap ,_gfdb error ){if _ece .Bitmap !=nil {return _ece .Bitmap ,nil ;};if _ece .IsMMREncoded {if _ece ._gdf ==nil {_ece ._gdf ,_gfdb =_eb .New (_ece ._efeg ,int (_ece .RegionSegment .BitmapWidth ),int (_ece .RegionSegment .BitmapHeight ),_ece .DataOffset ,_ece .DataLength ); +if _gfdb !=nil {return nil ,_gfdb ;};};_ece .Bitmap ,_gfdb =_ece ._gdf .UncompressMMR ();return _ece .Bitmap ,_gfdb ;};if _gfdb =_ece .updateOverrideFlags ();_gfdb !=nil {return nil ,_gfdb ;};var _bdeg int ;if _ece ._ddga ==nil {_ece ._ddga ,_gfdb =_df .New (_ece ._efeg ); +if _gfdb !=nil {return nil ,_gfdb ;};};if _ece ._fac ==nil {_ece ._fac =_df .NewStats (65536,1);};_ece .Bitmap =_gf .New (int (_ece .RegionSegment .BitmapWidth ),int (_ece .RegionSegment .BitmapHeight ));_dedf :=int (uint32 (_ece .Bitmap .Width +7)&(^uint32 (7))); +for _cbff :=0;_cbff < _ece .Bitmap .Height ;_cbff ++{if _ece .IsTPGDon {var _fead int ;_fead ,_gfdb =_ece .decodeSLTP ();if _gfdb !=nil {return nil ,_gfdb ;};_bdeg ^=_fead ;};if _bdeg ==1{if _cbff > 0{if _gfdb =_ece .copyLineAbove (_cbff );_gfdb !=nil {return nil ,_gfdb ; +};};}else {if _gfdb =_ece .decodeLine (_cbff ,_ece .Bitmap .Width ,_dedf );_gfdb !=nil {return nil ,_gfdb ;};};};return _ece .Bitmap ,nil ;};func (_dagb *SymbolDictionary )encodeSymbols (_ddef _g .BinaryWriter )(_cdfd int ,_fgbe error ){const _gbab ="\u0065\u006e\u0063o\u0064\u0065\u0053\u0079\u006d\u0062\u006f\u006c"; +_agaa :=_afe .New ();_agaa .Init ();_dbbd ,_fgbe :=_dagb ._cfcf .SelectByIndexes (_dagb ._bcgg );if _fgbe !=nil {return 0,_edb .Wrap (_fgbe ,_gbab ,"\u0069n\u0069\u0074\u0069\u0061\u006c");};_fbec :=map[*_gf .Bitmap ]int {};for _fgff ,_fdec :=range _dbbd .Values {_fbec [_fdec ]=_fgff ; +};_dbbd .SortByHeight ();var _bbeb ,_eaca int ;_befb ,_fgbe :=_dbbd .GroupByHeight ();if _fgbe !=nil {return 0,_edb .Wrap (_fgbe ,_gbab ,"");};for _ ,_babf :=range _befb .Values {_cfdc :=_babf .Values [0].Height ;_cbe :=_cfdc -_bbeb ;if _fgbe =_agaa .EncodeInteger (_afe .IADH ,_cbe ); +_fgbe !=nil {return 0,_edb .Wrapf (_fgbe ,_gbab ,"\u0049\u0041\u0044\u0048\u0020\u0066\u006f\u0072\u0020\u0064\u0068\u003a \u0027\u0025\u0064\u0027",_cbe );};_bbeb =_cfdc ;_dcff ,_fdfe :=_babf .GroupByWidth ();if _fdfe !=nil {return 0,_edb .Wrapf (_fdfe ,_gbab ,"\u0068\u0065\u0069g\u0068\u0074\u003a\u0020\u0027\u0025\u0064\u0027",_cfdc ); +};var _geaf int ;for _ ,_aceca :=range _dcff .Values {for _ ,_gdbdc :=range _aceca .Values {_cbab :=_gdbdc .Width ;_gcfe :=_cbab -_geaf ;if _fdfe =_agaa .EncodeInteger (_afe .IADW ,_gcfe );_fdfe !=nil {return 0,_edb .Wrapf (_fdfe ,_gbab ,"\u0049\u0041\u0044\u0057\u0020\u0066\u006f\u0072\u0020\u0064\u0077\u003a \u0027\u0025\u0064\u0027",_gcfe ); +};_geaf +=_gcfe ;if _fdfe =_agaa .EncodeBitmap (_gdbdc ,false );_fdfe !=nil {return 0,_edb .Wrapf (_fdfe ,_gbab ,"H\u0065i\u0067\u0068\u0074\u003a\u0020\u0025\u0064\u0020W\u0069\u0064\u0074\u0068: \u0025\u0064",_cfdc ,_cbab );};_dgce :=_fbec [_gdbdc ]; +_dagb ._efgef [_dgce ]=_eaca ;_eaca ++;};};if _fdfe =_agaa .EncodeOOB (_afe .IADW );_fdfe !=nil {return 0,_edb .Wrap (_fdfe ,_gbab ,"\u0049\u0041\u0044\u0057");};};if _fgbe =_agaa .EncodeInteger (_afe .IAEX ,0);_fgbe !=nil {return 0,_edb .Wrap (_fgbe ,_gbab ,"\u0065\u0078p\u006f\u0072\u0074e\u0064\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0073"); +};if _fgbe =_agaa .EncodeInteger (_afe .IAEX ,len (_dagb ._bcgg ));_fgbe !=nil {return 0,_edb .Wrap (_fgbe ,_gbab ,"\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0073\u0079m\u0062\u006f\u006c\u0073");};_agaa .Final ();_abcef ,_fgbe :=_agaa .WriteTo (_ddef ); +if _fgbe !=nil {return 0,_edb .Wrap (_fgbe ,_gbab ,"\u0077\u0072i\u0074\u0069\u006e\u0067 \u0065\u006ec\u006f\u0064\u0065\u0072\u0020\u0063\u006f\u006et\u0065\u0078\u0074\u0020\u0074\u006f\u0020\u0027\u0077\u0027\u0020\u0077r\u0069\u0074\u0065\u0072"); +};return int (_abcef ),nil ;};func (_fgc *HalftoneRegion )GetPatterns ()([]*_gf .Bitmap ,error ){var (_cafa []*_gf .Bitmap ;_acec error ;);for _ ,_eaea :=range _fgc ._ceag .RTSegments {var _gdfa Segmenter ;_gdfa ,_acec =_eaea .GetSegmentData ();if _acec !=nil {_aae .Log .Debug ("\u0047e\u0074\u0053\u0065\u0067m\u0065\u006e\u0074\u0044\u0061t\u0061 \u0066a\u0069\u006c\u0065\u0064\u003a\u0020\u0025v",_acec ); +return nil ,_acec ;};_gcd ,_feea :=_gdfa .(*PatternDictionary );if !_feea {_acec =_af .Errorf ("\u0072e\u006c\u0061t\u0065\u0064\u0020\u0073e\u0067\u006d\u0065n\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0070at\u0074\u0065\u0072n\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u003a \u0025\u0054",_gdfa ); +return nil ,_acec ;};var _acbc []*_gf .Bitmap ;_acbc ,_acec =_gcd .GetDictionary ();if _acec !=nil {_aae .Log .Debug ("\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0047\u0065\u0074\u0044\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_acec ); +return nil ,_acec ;};_cafa =append (_cafa ,_acbc ...);};return _cafa ,nil ;};func (_eddg *Header )readHeaderFlags ()error {const _gdfaf ="\u0072e\u0061d\u0048\u0065\u0061\u0064\u0065\u0072\u0046\u006c\u0061\u0067\u0073";_bgec ,_dggg :=_eddg .Reader .ReadBit (); +if _dggg !=nil {return _edb .Wrap (_dggg ,_gdfaf ,"r\u0065\u0074\u0061\u0069\u006e\u0020\u0066\u006c\u0061\u0067");};if _bgec !=0{_eddg .RetainFlag =true ;};_bgec ,_dggg =_eddg .Reader .ReadBit ();if _dggg !=nil {return _edb .Wrap (_dggg ,_gdfaf ,"\u0070\u0061g\u0065\u0020\u0061s\u0073\u006f\u0063\u0069\u0061\u0074\u0069\u006f\u006e"); +};if _bgec !=0{_eddg .PageAssociationFieldSize =true ;};_daa ,_dggg :=_eddg .Reader .ReadBits (6);if _dggg !=nil {return _edb .Wrap (_dggg ,_gdfaf ,"\u0073\u0065\u0067m\u0065\u006e\u0074\u0020\u0074\u0079\u0070\u0065");};_eddg .Type =Type (int (_daa )); +return nil ;};func (_bff *GenericRegion )String ()string {_faac :=&_d .Builder {};_faac .WriteString ("\u000a[\u0047E\u004e\u0045\u0052\u0049\u0043 \u0052\u0045G\u0049\u004f\u004e\u005d\u000a");_faac .WriteString (_bff .RegionSegment .String ()+"\u000a"); +_faac .WriteString (_af .Sprintf ("\u0009\u002d\u0020Us\u0065\u0045\u0078\u0074\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073\u003a\u0020\u0025\u0076\u000a",_bff .UseExtTemplates ));_faac .WriteString (_af .Sprintf ("\u0009\u002d \u0049\u0073\u0054P\u0047\u0044\u006f\u006e\u003a\u0020\u0025\u0076\u000a",_bff .IsTPGDon )); +_faac .WriteString (_af .Sprintf ("\u0009-\u0020G\u0042\u0054\u0065\u006d\u0070l\u0061\u0074e\u003a\u0020\u0025\u0064\u000a",_bff .GBTemplate ));_faac .WriteString (_af .Sprintf ("\t\u002d \u0049\u0073\u004d\u004d\u0052\u0045\u006e\u0063o\u0064\u0065\u0064\u003a %\u0076\u000a",_bff .IsMMREncoded )); +_faac .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0047\u0042\u0041\u0074\u0058\u003a\u0020\u0025\u0076\u000a",_bff .GBAtX ));_faac .WriteString (_af .Sprintf ("\u0009\u002d\u0020\u0047\u0042\u0041\u0074\u0059\u003a\u0020\u0025\u0076\u000a",_bff .GBAtY )); +_faac .WriteString (_af .Sprintf ("\t\u002d \u0047\u0042\u0041\u0074\u004f\u0076\u0065\u0072r\u0069\u0064\u0065\u003a %\u0076\u000a",_bff .GBAtOverride ));return _faac .String ();};func (_ffe *GenericRefinementRegion )decodeOptimized (_ab ,_ba ,_cg ,_bb ,_fc ,_ge ,_fae int )error {var (_feag error ; +_fdf int ;_gd int ;);_ca :=_ab -int (_ffe .ReferenceDY );if _dbg :=int (-_ffe .ReferenceDX );_dbg > 0{_fdf =_dbg ;};_cgg :=_ffe .ReferenceBitmap .GetByteIndex (_fdf ,_ca );if _ffe .ReferenceDX > 0{_gd =int (_ffe .ReferenceDX );};_bge :=_ffe .RegionBitmap .GetByteIndex (_gd ,_ab ); +switch _ffe .TemplateID {case 0:_feag =_ffe .decodeTemplate (_ab ,_ba ,_cg ,_bb ,_fc ,_ge ,_fae ,_bge ,_ca ,_cgg ,_ffe ._fea );case 1:_feag =_ffe .decodeTemplate (_ab ,_ba ,_cg ,_bb ,_fc ,_ge ,_fae ,_bge ,_ca ,_cgg ,_ffe ._ad );};return _feag ;};func (_gacc *HalftoneRegion )computeSegmentDataStructure ()error {_gacc .DataOffset =_gacc ._fagd .AbsolutePosition (); +_gacc .DataHeaderLength =_gacc .DataOffset -_gacc .DataHeaderOffset ;_gacc .DataLength =int64 (_gacc ._fagd .AbsoluteLength ())-_gacc .DataHeaderLength ;return nil ;};func (_bgagg *TextRegion )readAmountOfSymbolInstances ()error {_cbfge ,_gdfe :=_bgagg ._ecc .ReadBits (32); +if _gdfe !=nil {return _gdfe ;};_bgagg .NumberOfSymbolInstances =uint32 (_cbfge &_e .MaxUint32 );_gdcfc :=_bgagg .RegionInfo .BitmapWidth *_bgagg .RegionInfo .BitmapHeight ;if _gdcfc < _bgagg .NumberOfSymbolInstances {_aae .Log .Debug ("\u004c\u0069\u006d\u0069t\u0069\u006e\u0067\u0020t\u0068\u0065\u0020n\u0075\u006d\u0062\u0065\u0072\u0020o\u0066\u0020d\u0065\u0063\u006f\u0064e\u0064\u0020\u0073\u0079m\u0062\u006f\u006c\u0020\u0069n\u0073\u0074\u0061\u006e\u0063\u0065\u0073 \u0074\u006f\u0020\u006f\u006ee\u0020\u0070\u0065\u0072\u0020\u0070\u0069\u0078\u0065l\u0020\u0028\u0020\u0025\u0064\u0020\u0069\u006e\u0073\u0074\u0065\u0061\u0064\u0020\u006f\u0066\u0020\u0025\u0064\u0029",_gdcfc ,_bgagg .NumberOfSymbolInstances ); +_bgagg .NumberOfSymbolInstances =_gdcfc ;};return nil ;};func NewHeader (d Documenter ,r *_g .Reader ,offset int64 ,organizationType OrganizationType )(*Header ,error ){_dag :=&Header {Reader :r };if _accad :=_dag .parse (d ,r ,offset ,organizationType ); +_accad !=nil {return nil ,_edb .Wrap (_accad ,"\u004ee\u0077\u0048\u0065\u0061\u0064\u0065r","");};return _dag ,nil ;};func (_dfgc *SymbolDictionary )Init (h *Header ,r *_g .Reader )error {_dfgc .Header =h ;_dfgc ._caba =r ;return _dfgc .parseHeader (); +};func (_fgda *Header )readNumberOfReferredToSegments (_abce *_g .Reader )(uint64 ,error ){const _cccg ="\u0072\u0065\u0061\u0064\u004e\u0075\u006d\u0062\u0065\u0072O\u0066\u0052\u0065\u0066\u0065\u0072\u0072e\u0064\u0054\u006f\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0073"; +_eaff ,_eagb :=_abce .ReadBits (3);if _eagb !=nil {return 0,_edb .Wrap (_eagb ,_cccg ,"\u0063\u006f\u0075n\u0074\u0020\u006f\u0066\u0020\u0072\u0074\u0073");};_eaff &=0xf;var _bbde []byte ;if _eaff <=4{_bbde =make ([]byte ,5);for _afce :=0;_afce <=4;_afce ++{_cfdg ,_dafga :=_abce .ReadBit (); +if _dafga !=nil {return 0,_edb .Wrap (_dafga ,_cccg ,"\u0073\u0068\u006fr\u0074\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_bbde [_afce ]=byte (_cfdg );};}else {_eaff ,_eagb =_abce .ReadBits (29);if _eagb !=nil {return 0,_eagb ;};_eaff &=_e .MaxInt32 ; +_eaae :=(_eaff +8)>>3;_eaae <<=3;_bbde =make ([]byte ,_eaae );var _cdeb uint64 ;for _cdeb =0;_cdeb < _eaae ;_cdeb ++{_edad ,_gceb :=_abce .ReadBit ();if _gceb !=nil {return 0,_edb .Wrap (_gceb ,_cccg ,"l\u006f\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0061\u0074"); +};_bbde [_cdeb ]=byte (_edad );};};return _eaff ,nil ;};func (_dbdf *GenericRegion )GetRegionInfo ()*RegionSegment {return _dbdf .RegionSegment };func (_efgee *TextRegion )GetRegionBitmap ()(*_gf .Bitmap ,error ){if _efgee .RegionBitmap !=nil {return _efgee .RegionBitmap ,nil ; +};if !_efgee .IsHuffmanEncoded {if _gfca :=_efgee .setCodingStatistics ();_gfca !=nil {return nil ,_gfca ;};};if _gadc :=_efgee .createRegionBitmap ();_gadc !=nil {return nil ,_gadc ;};if _bbdc :=_efgee .decodeSymbolInstances ();_bbdc !=nil {return nil ,_bbdc ; +};return _efgee .RegionBitmap ,nil ;};func (_ggdae *TextRegion )setCodingStatistics ()error {if _ggdae ._gede ==nil {_ggdae ._gede =_df .NewStats (512,1);};if _ggdae ._cgdb ==nil {_ggdae ._cgdb =_df .NewStats (512,1);};if _ggdae ._dacg ==nil {_ggdae ._dacg =_df .NewStats (512,1); +};if _ggdae ._fff ==nil {_ggdae ._fff =_df .NewStats (512,1);};if _ggdae ._feeg ==nil {_ggdae ._feeg =_df .NewStats (512,1);};if _ggdae ._gbcc ==nil {_ggdae ._gbcc =_df .NewStats (512,1);};if _ggdae ._acecd ==nil {_ggdae ._acecd =_df .NewStats (512,1); +};if _ggdae ._bbae ==nil {_ggdae ._bbae =_df .NewStats (1<>1)&0x01); +_bca !=nil {return _edb .Wrap (_bca ,_dga ,"\u0063\u006f\u006d\u0062\u0069\u006e\u0061\u0074\u0069\u006fn\u0020\u006f\u0070\u0065\u0072\u0061\u0074o\u0072\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0062\u0069\u0074");};if _bca =_gecb .WriteBit (int (_cfg ._dbcd )&0x01); +_bca !=nil {return _edb .Wrap (_bca ,_dga ,"\u0063\u006f\u006db\u0069\u006e\u0061\u0074i\u006f\u006e\u0020\u006f\u0070\u0065\u0072a\u0074\u006f\u0072\u0020\u0073\u0065\u0063\u006f\u006e\u0064\u0020\u0062\u0069\u0074");};_dfdc =int (_cfg .DefaultPixelValue ); +if _bca =_gecb .WriteBit (_dfdc );_bca !=nil {return _edb .Wrap (_bca ,_dga ,"\u0064e\u0066\u0061\u0075\u006c\u0074\u0020\u0070\u0061\u0067\u0065\u0020p\u0069\u0078\u0065\u006c\u0020\u0076\u0061\u006c\u0075\u0065");};_dfdc =0;if _cfg ._ccdd {_dfdc =1;}; +if _bca =_gecb .WriteBit (_dfdc );_bca !=nil {return _edb .Wrap (_bca ,_dga ,"\u0063\u006f\u006e\u0074ai\u006e\u0073\u0020\u0072\u0065\u0066\u0069\u006e\u0065\u006d\u0065\u006e\u0074");};_dfdc =0;if _cfg .IsLossless {_dfdc =1;};if _bca =_gecb .WriteBit (_dfdc ); +_bca !=nil {return _edb .Wrap (_bca ,_dga ,"p\u0061\u0067\u0065\u0020\u0069\u0073 \u0065\u0076\u0065\u006e\u0074\u0075\u0061\u006c\u006cy\u0020\u006c\u006fs\u0073l\u0065\u0073\u0073");};return nil ;};func (_ddcg *RegionSegment )readCombinationOperator ()error {_ecd ,_fge :=_ddcg ._ebecg .ReadBits (3); +if _fge !=nil {return _fge ;};_ddcg .CombinaionOperator =_gf .CombinationOperator (_ecd &0xF);return nil ;};func (_edg *GenericRefinementRegion )decodeSLTP ()(int ,error ){_edg .Template .setIndex (_edg ._cd );return _edg ._dc .DecodeBit (_edg ._cd );}; +func (_acbac *PageInformationSegment )Encode (w _g .BinaryWriter )(_agbbf int ,_agefe error ){const _ddagf ="\u0050\u0061g\u0065\u0049\u006e\u0066\u006f\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u002e\u0045\u006eco\u0064\u0065"; +_bedc :=make ([]byte ,4);_ag .BigEndian .PutUint32 (_bedc ,uint32 (_acbac .PageBMWidth ));_agbbf ,_agefe =w .Write (_bedc );if _agefe !=nil {return _agbbf ,_edb .Wrap (_agefe ,_ddagf ,"\u0077\u0069\u0064t\u0068");};_ag .BigEndian .PutUint32 (_bedc ,uint32 (_acbac .PageBMHeight )); +var _accac int ;_accac ,_agefe =w .Write (_bedc );if _agefe !=nil {return _accac +_agbbf ,_edb .Wrap (_agefe ,_ddagf ,"\u0068\u0065\u0069\u0067\u0068\u0074");};_agbbf +=_accac ;_ag .BigEndian .PutUint32 (_bedc ,uint32 (_acbac .ResolutionX ));_accac ,_agefe =w .Write (_bedc ); +if _agefe !=nil {return _accac +_agbbf ,_edb .Wrap (_agefe ,_ddagf ,"\u0078\u0020\u0072e\u0073\u006f\u006c\u0075\u0074\u0069\u006f\u006e");};_agbbf +=_accac ;_ag .BigEndian .PutUint32 (_bedc ,uint32 (_acbac .ResolutionY ));if _accac ,_agefe =w .Write (_bedc ); +_agefe !=nil {return _accac +_agbbf ,_edb .Wrap (_agefe ,_ddagf ,"\u0079\u0020\u0072e\u0073\u006f\u006c\u0075\u0074\u0069\u006f\u006e");};_agbbf +=_accac ;if _agefe =_acbac .encodeFlags (w );_agefe !=nil {return _agbbf ,_edb .Wrap (_agefe ,_ddagf ,""); +};_agbbf ++;if _accac ,_agefe =_acbac .encodeStripingInformation (w );_agefe !=nil {return _agbbf ,_edb .Wrap (_agefe ,_ddagf ,"");};_agbbf +=_accac ;return _agbbf ,nil ;};func (_edaee *PageInformationSegment )checkInput ()error {if _edaee .PageBMHeight ==_e .MaxInt32 {if !_edaee .IsStripe {_aae .Log .Debug ("P\u0061\u0067\u0065\u0049\u006e\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0053\u0065\u0067me\u006e\u0074\u002e\u0049s\u0053\u0074\u0072\u0069\u0070\u0065\u0020\u0073\u0068ou\u006c\u0064 \u0062\u0065\u0020\u0074\u0072\u0075\u0065\u002e"); +};};return nil ;};func _adda (_caedd *_g .Reader ,_fbafe *Header )*TextRegion {_fdacb :=&TextRegion {_ecc :_caedd ,Header :_fbafe ,RegionInfo :NewRegionSegment (_caedd )};return _fdacb ;};func (_fbgg *SymbolDictionary )decodeHeightClassDeltaHeight ()(int64 ,error ){if _fbgg .IsHuffmanEncoded {return _fbgg .decodeHeightClassDeltaHeightWithHuffman (); +};_caee ,_bdde :=_fbgg ._dgcb .DecodeInt (_fbgg ._ggae );if _bdde !=nil {return 0,_bdde ;};return int64 (_caee ),nil ;};func (_bgbdb *TextRegion )GetRegionInfo ()*RegionSegment {return _bgbdb .RegionInfo };func (_fbba *TableSegment )HtHigh ()int32 {return _fbba ._dgaf }; +func (_fcg *GenericRegion )setParametersMMR (_fbbe bool ,_bede ,_abgd int64 ,_gebd ,_adg uint32 ,_aca byte ,_gaa ,_acad bool ,_aegf ,_ggbg []int8 ){_fcg .DataOffset =_bede ;_fcg .DataLength =_abgd ;_fcg .RegionSegment =&RegionSegment {};_fcg .RegionSegment .BitmapHeight =_gebd ; +_fcg .RegionSegment .BitmapWidth =_adg ;_fcg .GBTemplate =_aca ;_fcg .IsMMREncoded =_fbbe ;_fcg .IsTPGDon =_gaa ;_fcg .GBAtX =_aegf ;_fcg .GBAtY =_ggbg ;};func (_bafb *GenericRegion )Encode (w _g .BinaryWriter )(_aab int ,_ggb error ){const _egf ="G\u0065n\u0065\u0072\u0069\u0063\u0052\u0065\u0067\u0069o\u006e\u002e\u0045\u006eco\u0064\u0065"; +if _bafb .Bitmap ==nil {return 0,_edb .Error (_egf ,"\u0070\u0072\u006f\u0076id\u0065\u0064\u0020\u006e\u0069\u006c\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};_ggeg ,_ggb :=_bafb .RegionSegment .Encode (w );if _ggb !=nil {return 0,_edb .Wrap (_ggb ,_egf ,"\u0052\u0065\u0067\u0069\u006f\u006e\u0053\u0065\u0067\u006d\u0065\u006e\u0074"); +};_aab +=_ggeg ;if _ggb =w .SkipBits (4);_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"\u0073k\u0069p\u0020\u0072\u0065\u0073\u0065r\u0076\u0065d\u0020\u0062\u0069\u0074\u0073");};var _bde int ;if _bafb .IsTPGDon {_bde =1;};if _ggb =w .WriteBit (_bde ); +_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"\u0074\u0070\u0067\u0064\u006f\u006e");};_bde =0;if _ggb =w .WriteBit (int (_bafb .GBTemplate >>1)&0x01);_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"f\u0069r\u0073\u0074\u0020\u0067\u0062\u0074\u0065\u006dp\u006c\u0061\u0074\u0065 b\u0069\u0074"); +};if _ggb =w .WriteBit (int (_bafb .GBTemplate )&0x01);_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"s\u0065\u0063\u006f\u006ed \u0067b\u0074\u0065\u006d\u0070\u006ca\u0074\u0065\u0020\u0062\u0069\u0074");};if _bafb .UseMMR {_bde =1;};if _ggb =w .WriteBit (_bde ); +_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"u\u0073\u0065\u0020\u004d\u004d\u0052\u0020\u0062\u0069\u0074");};_aab ++;if _ggeg ,_ggb =_bafb .writeGBAtPixels (w );_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"");};_aab +=_ggeg ;_abgc :=_afe .New (); +if _ggb =_abgc .EncodeBitmap (_bafb .Bitmap ,_bafb .IsTPGDon );_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"");};_abgc .Final ();var _becg int64 ;if _becg ,_ggb =_abgc .WriteTo (w );_ggb !=nil {return _aab ,_edb .Wrap (_ggb ,_egf ,"");};_aab +=int (_becg ); +return _aab ,nil ;};func (_gdbbg *TextRegion )decodeDT ()(_fbbb int64 ,_acdeg error ){if _gdbbg .IsHuffmanEncoded {if _gdbbg .SbHuffDT ==3{_fbbb ,_acdeg =_gdbbg ._bbfg .Decode (_gdbbg ._ecc );if _acdeg !=nil {return 0,_acdeg ;};}else {var _gbeeb _fa .Tabler ; +_gbeeb ,_acdeg =_fa .GetStandardTable (11+int (_gdbbg .SbHuffDT ));if _acdeg !=nil {return 0,_acdeg ;};_fbbb ,_acdeg =_gbeeb .Decode (_gdbbg ._ecc );if _acdeg !=nil {return 0,_acdeg ;};};}else {var _bfdb int32 ;_bfdb ,_acdeg =_gdbbg ._egdc .DecodeInt (_gdbbg ._gede ); +if _acdeg !=nil {return ;};_fbbb =int64 (_bfdb );};_fbbb *=int64 (_gdbbg .SbStrips );return _fbbb ,nil ;};func (_dfb *EndOfStripe )Init (h *Header ,r *_g .Reader )error {_dfb ._gb =r ;return _dfb .parseHeader ()};func (_bcga *TextRegion )decodeID ()(int64 ,error ){if _bcga .IsHuffmanEncoded {if _bcga ._dbcbe ==nil {_gfbd ,_ccec :=_bcga ._ecc .ReadBits (byte (_bcga ._efeb )); +return int64 (_gfbd ),_ccec ;};return _bcga ._dbcbe .Decode (_bcga ._ecc );};return _bcga ._egdc .DecodeIAID (uint64 (_bcga ._efeb ),_bcga ._bbae );};func (_daeb *PageInformationSegment )readCombinationOperatorOverrideAllowed ()error {_dfda ,_dddb :=_daeb ._faef .ReadBit (); +if _dddb !=nil {return _dddb ;};if _dfda ==1{_daeb ._fbbge =true ;};return nil ;};func _agf (_ccc *_g .Reader ,_aaef *Header )*GenericRefinementRegion {return &GenericRefinementRegion {_dd :_ccc ,RegionInfo :NewRegionSegment (_ccc ),_cb :_aaef ,_fea :&template0 {},_ad :&template1 {}}; +};func (_cabb *TableSegment )HtPS ()int32 {return _cabb ._facaf };func (_eabgd *SymbolDictionary )getSymbol (_fbge int )(*_gf .Bitmap ,error ){const _fbfa ="\u0067e\u0074\u0053\u0079\u006d\u0062\u006fl";_geab ,_dgdc :=_eabgd ._cfcf .GetBitmap (_eabgd ._bcgg [_fbge ]); +if _dgdc !=nil {return nil ,_edb .Wrap (_dgdc ,_fbfa ,"\u0063\u0061n\u0027\u0074\u0020g\u0065\u0074\u0020\u0073\u0079\u006d\u0062\u006f\u006c");};return _geab ,nil ;};func (_gbde *TextRegion )decodeRdx ()(int64 ,error ){const _feda ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064x"; +if _gbde .IsHuffmanEncoded {if _gbde .SbHuffRDX ==3{if _gbde ._adgga ==nil {var (_aaeb int ;_eeeb error ;);if _gbde .SbHuffFS ==3{_aaeb ++;};if _gbde .SbHuffDS ==3{_aaeb ++;};if _gbde .SbHuffDT ==3{_aaeb ++;};if _gbde .SbHuffRDWidth ==3{_aaeb ++;};if _gbde .SbHuffRDHeight ==3{_aaeb ++; +};_gbde ._adgga ,_eeeb =_gbde .getUserTable (_aaeb );if _eeeb !=nil {return 0,_edb .Wrap (_eeeb ,_feda ,"");};};return _gbde ._adgga .Decode (_gbde ._ecc );};_egebe ,_cbga :=_fa .GetStandardTable (14+int (_gbde .SbHuffRDX ));if _cbga !=nil {return 0,_edb .Wrap (_cbga ,_feda ,""); +};return _egebe .Decode (_gbde ._ecc );};_cdadc ,_ebac :=_gbde ._egdc .DecodeInt (_gbde ._ffab );if _ebac !=nil {return 0,_edb .Wrap (_ebac ,_feda ,"");};return int64 (_cdadc ),nil ;};func _ffbc (_ddeca int )int {if _ddeca ==0{return 0;};_ddeca |=_ddeca >>1; +_ddeca |=_ddeca >>2;_ddeca |=_ddeca >>4;_ddeca |=_ddeca >>8;_ddeca |=_ddeca >>16;return (_ddeca +1)>>1;};func (_bcb *HalftoneRegion )computeY (_acbca ,_edeg int )int {return _bcb .shiftAndFill (int (_bcb .HGridY )+_acbca *int (_bcb .HRegionX )-_edeg *int (_bcb .HRegionY )); +};func (_abbf *PageInformationSegment )readIsLossless ()error {_add ,_aced :=_abbf ._faef .ReadBit ();if _aced !=nil {return _aced ;};if _add ==1{_abbf .IsLossless =true ;};return nil ;};func (_gc *GenericRefinementRegion )GetRegionBitmap ()(*_gf .Bitmap ,error ){var _ea error ; +_aae .Log .Trace ("\u005b\u0047E\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0047\u0065\u0074\u0052\u0065\u0067\u0069\u006f\u006e\u0042\u0069\u0074\u006d\u0061\u0070\u0020\u0062\u0065\u0067\u0069\u006e\u0073\u002e\u002e\u002e"); +defer func (){if _ea !=nil {_aae .Log .Trace ("[\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052E\u0046\u002d\u0052\u0045\u0047\u0049\u004fN]\u0020\u0047\u0065\u0074R\u0065\u0067\u0069\u006f\u006e\u0042\u0069\u0074\u006dap\u0020\u0066a\u0069\u006c\u0065\u0064\u002e\u0020\u0025\u0076",_ea ); +}else {_aae .Log .Trace ("\u005b\u0047E\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0047\u0065\u0074\u0052\u0065\u0067\u0069\u006f\u006e\u0042\u0069\u0074\u006d\u0061\u0070\u0020\u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064\u002e"); +};}();if _gc .RegionBitmap !=nil {return _gc .RegionBitmap ,nil ;};_ef :=0;if _gc .ReferenceBitmap ==nil {_gc .ReferenceBitmap ,_ea =_gc .getGrReference ();if _ea !=nil {return nil ,_ea ;};};if _gc ._dc ==nil {_gc ._dc ,_ea =_df .New (_gc ._dd );if _ea !=nil {return nil ,_ea ; +};};if _gc ._cd ==nil {_gc ._cd =_df .NewStats (8192,1);};_gc .RegionBitmap =_gf .New (int (_gc .RegionInfo .BitmapWidth ),int (_gc .RegionInfo .BitmapHeight ));if _gc .TemplateID ==0{if _ea =_gc .updateOverride ();_ea !=nil {return nil ,_ea ;};};_ebf :=(_gc .RegionBitmap .Width +7)&-8; +var _dde int ;if _gc .IsTPGROn {_dde =int (-_gc .ReferenceDY )*_gc .ReferenceBitmap .RowStride ;};_fd :=_dde +1;for _fg :=0;_fg < _gc .RegionBitmap .Height ;_fg ++{if _gc .IsTPGROn {_db ,_aad :=_gc .decodeSLTP ();if _aad !=nil {return nil ,_aad ;};_ef ^=_db ; +};if _ef ==0{_ea =_gc .decodeOptimized (_fg ,_gc .RegionBitmap .Width ,_gc .RegionBitmap .RowStride ,_gc .ReferenceBitmap .RowStride ,_ebf ,_dde ,_fd );if _ea !=nil {return nil ,_ea ;};}else {_ea =_gc .decodeTypicalPredictedLine (_fg ,_gc .RegionBitmap .Width ,_gc .RegionBitmap .RowStride ,_gc .ReferenceBitmap .RowStride ,_ebf ,_dde ); +if _ea !=nil {return nil ,_ea ;};};};return _gc .RegionBitmap ,nil ;};func (_gfefd *TextRegion )decodeRdy ()(int64 ,error ){const _dagc ="\u0064e\u0063\u006f\u0064\u0065\u0052\u0064y";if _gfefd .IsHuffmanEncoded {if _gfefd .SbHuffRDY ==3{if _gfefd ._bfde ==nil {var (_cggd int ; +_aeffa error ;);if _gfefd .SbHuffFS ==3{_cggd ++;};if _gfefd .SbHuffDS ==3{_cggd ++;};if _gfefd .SbHuffDT ==3{_cggd ++;};if _gfefd .SbHuffRDWidth ==3{_cggd ++;};if _gfefd .SbHuffRDHeight ==3{_cggd ++;};if _gfefd .SbHuffRDX ==3{_cggd ++;};_gfefd ._bfde ,_aeffa =_gfefd .getUserTable (_cggd ); +if _aeffa !=nil {return 0,_edb .Wrap (_aeffa ,_dagc ,"");};};return _gfefd ._bfde .Decode (_gfefd ._ecc );};_dabc ,_ffdg :=_fa .GetStandardTable (14+int (_gfefd .SbHuffRDY ));if _ffdg !=nil {return 0,_ffdg ;};return _dabc .Decode (_gfefd ._ecc );};_fdad ,_dbac :=_gfefd ._egdc .DecodeInt (_gfefd ._fbeg ); +if _dbac !=nil {return 0,_edb .Wrap (_dbac ,_dagc ,"");};return int64 (_fdad ),nil ;};func (_egfd *Header )readSegmentDataLength (_ffeg *_g .Reader )(_cfbd error ){_egfd .SegmentDataLength ,_cfbd =_ffeg .ReadBits (32);if _cfbd !=nil {return _cfbd ;};_egfd .SegmentDataLength &=_e .MaxInt32 ; +return nil ;};func (_fbd *GenericRefinementRegion )parseHeader ()(_cgb error ){_aae .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0070\u0061\u0072s\u0069\u006e\u0067\u0020\u0048e\u0061\u0064e\u0072\u002e\u002e\u002e"); +_dda :=_cf .Now ();defer func (){if _cgb ==nil {_aae .Log .Trace ("\u005b\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045G\u0049\u004f\u004e\u005d\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066\u0069\u006e\u0069\u0073\u0068id\u0020\u0069\u006e\u003a\u0020\u0025\u0064\u0020\u006e\u0073",_cf .Since (_dda ).Nanoseconds ()); +}else {_aae .Log .Trace ("\u005b\u0047E\u004e\u0045\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0073",_cgb ); +};}();if _cgb =_fbd .RegionInfo .parseHeader ();_cgb !=nil {return _cgb ;};_ ,_cgb =_fbd ._dd .ReadBits (6);if _cgb !=nil {return _cgb ;};_fbd .IsTPGROn ,_cgb =_fbd ._dd .ReadBool ();if _cgb !=nil {return _cgb ;};var _gbc int ;_gbc ,_cgb =_fbd ._dd .ReadBit (); +if _cgb !=nil {return _cgb ;};_fbd .TemplateID =int8 (_gbc );switch _fbd .TemplateID {case 0:_fbd .Template =_fbd ._fea ;if _cgb =_fbd .readAtPixels ();_cgb !=nil {return ;};case 1:_fbd .Template =_fbd ._ad ;};return nil ;};func (_adbab *TextRegion )parseHeader ()error {var _cgbf error ; +_aae .Log .Trace ("\u005b\u0054E\u0058\u0054\u0020\u0052E\u0047\u0049O\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045-\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0062\u0065\u0067\u0069n\u0073\u002e\u002e\u002e");defer func (){if _cgbf !=nil {_aae .Log .Trace ("\u005b\u0054\u0045\u0058\u0054\u0020\u0052\u0045\u0047\u0049\u004f\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045\u002d\u0048\u0045\u0041\u0044E\u0052\u005d\u0020\u0066\u0061i\u006c\u0065d\u002e\u0020\u0025\u0076",_cgbf ); +}else {_aae .Log .Trace ("\u005b\u0054E\u0058\u0054\u0020\u0052E\u0047\u0049O\u004e\u005d\u005b\u0050\u0041\u0052\u0053\u0045-\u0048\u0045\u0041\u0044\u0045\u0052\u005d\u0020\u0066\u0069\u006e\u0069s\u0068\u0065\u0064\u002e");};}();if _cgbf =_adbab .RegionInfo .parseHeader (); +_cgbf !=nil {return _cgbf ;};if _cgbf =_adbab .readRegionFlags ();_cgbf !=nil {return _cgbf ;};if _adbab .IsHuffmanEncoded {if _cgbf =_adbab .readHuffmanFlags ();_cgbf !=nil {return _cgbf ;};};if _cgbf =_adbab .readUseRefinement ();_cgbf !=nil {return _cgbf ; +};if _cgbf =_adbab .readAmountOfSymbolInstances ();_cgbf !=nil {return _cgbf ;};if _cgbf =_adbab .getSymbols ();_cgbf !=nil {return _cgbf ;};if _cgbf =_adbab .computeSymbolCodeLength ();_cgbf !=nil {return _cgbf ;};if _cgbf =_adbab .checkInput ();_cgbf !=nil {return _cgbf ; +};_aae .Log .Trace ("\u0025\u0073",_adbab .String ());return nil ;};func NewGenericRegion (r *_g .Reader )*GenericRegion {return &GenericRegion {RegionSegment :NewRegionSegment (r ),_efeg :r };};func (_gcf *PatternDictionary )parseHeader ()error {_aae .Log .Trace ("\u005b\u0050\u0041\u0054\u0054\u0045\u0052\u004e\u002d\u0044\u0049\u0043\u0054I\u004f\u004e\u0041\u0052\u0059\u005d[\u0070\u0061\u0072\u0073\u0065\u0048\u0065\u0061\u0064\u0065\u0072\u005d\u0020b\u0065\u0067\u0069\u006e"); +defer func (){_aae .Log .Trace ("\u005b\u0050\u0041T\u0054\u0045\u0052\u004e\u002d\u0044\u0049\u0043\u0054\u0049\u004f\u004e\u0041\u0052\u0059\u005d\u005b\u0070\u0061\u0072\u0073\u0065\u0048\u0065\u0061\u0064\u0065\u0072\u005d \u0066\u0069\u006e\u0069\u0073\u0068\u0065\u0064"); +}();_ ,_fccb :=_gcf ._dbec .ReadBits (5);if _fccb !=nil {return _fccb ;};if _fccb =_gcf .readTemplate ();_fccb !=nil {return _fccb ;};if _fccb =_gcf .readIsMMREncoded ();_fccb !=nil {return _fccb ;};if _fccb =_gcf .readPatternWidthAndHeight ();_fccb !=nil {return _fccb ; +};if _fccb =_gcf .readGrayMax ();_fccb !=nil {return _fccb ;};if _fccb =_gcf .computeSegmentDataStructure ();_fccb !=nil {return _fccb ;};return _gcf .checkInput ();};func (_aff *Header )pageSize ()uint {if _aff .PageAssociation <=255{return 1;};return 4; +};const (TSymbolDictionary Type =0;TIntermediateTextRegion Type =4;TImmediateTextRegion Type =6;TImmediateLosslessTextRegion Type =7;TPatternDictionary Type =16;TIntermediateHalftoneRegion Type =20;TImmediateHalftoneRegion Type =22;TImmediateLosslessHalftoneRegion Type =23; +TIntermediateGenericRegion Type =36;TImmediateGenericRegion Type =38;TImmediateLosslessGenericRegion Type =39;TIntermediateGenericRefinementRegion Type =40;TImmediateGenericRefinementRegion Type =42;TImmediateLosslessGenericRefinementRegion Type =43;TPageInformation Type =48; +TEndOfPage Type =49;TEndOfStrip Type =50;TEndOfFile Type =51;TProfiles Type =52;TTables Type =53;TExtension Type =62;TBitmap Type =70;);func (_aefg *Header )writeSegmentNumber (_bece _g .BinaryWriter )(_becc int ,_adgg error ){_fafgd :=make ([]byte ,4); +_ag .BigEndian .PutUint32 (_fafgd ,_aefg .SegmentNumber );if _becc ,_adgg =_bece .Write (_fafgd );_adgg !=nil {return 0,_edb .Wrap (_adgg ,"\u0048e\u0061\u0064\u0065\u0072.\u0077\u0072\u0069\u0074\u0065S\u0065g\u006de\u006e\u0074\u004e\u0075\u006d\u0062\u0065r",""); +};return _becc ,nil ;};func (_dacb *GenericRegion )Init (h *Header ,r *_g .Reader )error {_dacb .RegionSegment =NewRegionSegment (r );_dacb ._efeg =r ;return _dacb .parseHeader ();};var (_ Regioner =&TextRegion {};_ Segmenter =&TextRegion {};);func (_ffce *Header )readSegmentNumber (_bfac *_g .Reader )error {const _eeb ="\u0072\u0065\u0061\u0064\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u004eu\u006d\u0062\u0065\u0072"; +_efda :=make ([]byte ,4);_ ,_gagf :=_bfac .Read (_efda );if _gagf !=nil {return _edb .Wrap (_gagf ,_eeb ,"");};_ffce .SegmentNumber =_ag .BigEndian .Uint32 (_efda );return nil ;};func (_faa *template0 )form (_cddg ,_bgf ,_bfb ,_dab ,_dbd int16 )int16 {return (_cddg <<10)|(_bgf <<7)|(_bfb <<4)|(_dab <<1)|_dbd ; +};func (_gagd *SymbolDictionary )InitEncode (symbols *_gf .Bitmaps ,symbolList []int ,symbolMap map[int ]int ,unborderSymbols bool )error {const _efec ="S\u0079\u006d\u0062\u006f\u006c\u0044i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002eI\u006e\u0069\u0074E\u006ec\u006f\u0064\u0065"; +_gagd .SdATX =[]int8 {3,-3,2,-2};_gagd .SdATY =[]int8 {-1,-1,-2,-2};_gagd ._cfcf =symbols ;_gagd ._bcgg =make ([]int ,len (symbolList ));copy (_gagd ._bcgg ,symbolList );if len (_gagd ._bcgg )!=_gagd ._cfcf .Size (){return _edb .Error (_efec ,"s\u0079\u006d\u0062\u006f\u006c\u0073\u0020\u0061\u006e\u0064\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u004ci\u0073\u0074\u0020\u006f\u0066\u0020\u0064\u0069\u0066\u0066er\u0065\u006e\u0074 \u0073i\u007a\u0065"); +};_gagd .NumberOfNewSymbols =uint32 (symbols .Size ());_gagd .NumberOfExportedSymbols =uint32 (symbols .Size ());_gagd ._efgef =symbolMap ;_gagd ._gdc =unborderSymbols ;return nil ;};func (_ead *TextRegion )getUserTable (_agfb int )(_fa .Tabler ,error ){const _edab ="\u0067\u0065\u0074U\u0073\u0065\u0072\u0054\u0061\u0062\u006c\u0065"; +var _ddbb int ;for _ ,_cef :=range _ead .Header .RTSegments {if _cef .Type ==53{if _ddbb ==_agfb {_eafd ,_caed :=_cef .GetSegmentData ();if _caed !=nil {return nil ,_caed ;};_cebfb ,_agggb :=_eafd .(*TableSegment );if !_agggb {_aae .Log .Debug (_af .Sprintf ("\u0073\u0065\u0067\u006d\u0065\u006e\u0074 \u0077\u0069\u0074h\u0020\u0054\u0079p\u0065\u00205\u0033\u0020\u002d\u0020\u0061\u006ed\u0020in\u0064\u0065\u0078\u003a\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0054\u0061\u0062\u006c\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074",_cef .SegmentNumber )); +return nil ,_edb .Error (_edab ,"\u0073\u0065\u0067\u006d\u0065\u006e\u0074 \u0077\u0069\u0074h\u0020\u0054\u0079\u0070e\u0020\u0035\u0033\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u002a\u0054\u0061\u0062\u006c\u0065\u0053\u0065\u0067\u006d\u0065\u006e\u0074"); +};return _fa .NewEncodedTable (_cebfb );};_ddbb ++;};};return nil ,nil ;};func (_agbb *GenericRegion )decodeTemplate0a (_cfaa ,_dafb ,_bfbf int ,_adc ,_cecc int )(_gbb error ){const _caae ="\u0064\u0065c\u006f\u0064\u0065T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0030\u0061"; +var (_acca ,_cdef int ;_ceb ,_fba int ;_gdg byte ;_fbgc int ;);if _cfaa >=1{_gdg ,_gbb =_agbb .Bitmap .GetByte (_cecc );if _gbb !=nil {return _edb .Wrap (_gbb ,_caae ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00201");};_ceb =int (_gdg );};if _cfaa >=2{_gdg ,_gbb =_agbb .Bitmap .GetByte (_cecc -_agbb .Bitmap .RowStride ); +if _gbb !=nil {return _edb .Wrap (_gbb ,_caae ,"\u006ci\u006e\u0065\u0020\u003e\u003d\u00202");};_fba =int (_gdg )<<6;};_acca =(_ceb &0xf0)|(_fba &0x3800);for _efff :=0;_efff < _bfbf ;_efff =_fbgc {var (_bfda byte ;_abcd int ;);_fbgc =_efff +8;if _bcgb :=_dafb -_efff ; +_bcgb > 8{_abcd =8;}else {_abcd =_bcgb ;};if _cfaa > 0{_ceb <<=8;if _fbgc < _dafb {_gdg ,_gbb =_agbb .Bitmap .GetByte (_cecc +1);if _gbb !=nil {return _edb .Wrap (_gbb ,_caae ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0030");};_ceb |=int (_gdg );};}; +if _cfaa > 1{_deb :=_cecc -_agbb .Bitmap .RowStride +1;_fba <<=8;if _fbgc < _dafb {_gdg ,_gbb =_agbb .Bitmap .GetByte (_deb );if _gbb !=nil {return _edb .Wrap (_gbb ,_caae ,"\u006c\u0069\u006e\u0065\u0020\u003e\u0020\u0031");};_fba |=int (_gdg )<<6;}else {_fba |=0; +};};for _cdde :=0;_cdde < _abcd ;_cdde ++{_cgba :=uint (7-_cdde );if _agbb ._cab {_cdef =_agbb .overrideAtTemplate0a (_acca ,_efff +_cdde ,_cfaa ,int (_bfda ),_cdde ,int (_cgba ));_agbb ._fac .SetIndex (int32 (_cdef ));}else {_agbb ._fac .SetIndex (int32 (_acca )); +};var _eaa int ;_eaa ,_gbb =_agbb ._ddga .DecodeBit (_agbb ._fac );if _gbb !=nil {return _edb .Wrap (_gbb ,_caae ,"");};_bfda |=byte (_eaa )<<_cgba ;_acca =((_acca &0x7bf7)<<1)|_eaa |((_ceb >>_cgba )&0x10)|((_fba >>_cgba )&0x800);};if _geb :=_agbb .Bitmap .SetByte (_adc ,_bfda ); +_geb !=nil {return _edb .Wrap (_geb ,_caae ,"");};_adc ++;_cecc ++;};return nil ;};func (_gdga *Header )writeReferredToSegments (_ebfc _g .BinaryWriter )(_cedg int ,_fegd error ){const _gbca ="\u0077\u0072\u0069te\u0052\u0065\u0066\u0065\u0072\u0072\u0065\u0064\u0054\u006f\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0073"; +var (_dfd uint16 ;_feae uint32 ;);_fggg :=_gdga .referenceSize ();_afaa :=1;_gedd :=make ([]byte ,_fggg );for _ ,_bdba :=range _gdga .RTSNumbers {switch _fggg {case 4:_feae =uint32 (_bdba );_ag .BigEndian .PutUint32 (_gedd ,_feae );_afaa ,_fegd =_ebfc .Write (_gedd ); +if _fegd !=nil {return 0,_edb .Wrap (_fegd ,_gbca ,"u\u0069\u006e\u0074\u0033\u0032\u0020\u0073\u0069\u007a\u0065");};case 2:_dfd =uint16 (_bdba );_ag .BigEndian .PutUint16 (_gedd ,_dfd );_afaa ,_fegd =_ebfc .Write (_gedd );if _fegd !=nil {return 0,_edb .Wrap (_fegd ,_gbca ,"\u0075\u0069\u006e\u0074\u0031\u0036"); +};default:if _fegd =_ebfc .WriteByte (byte (_bdba ));_fegd !=nil {return 0,_edb .Wrap (_fegd ,_gbca ,"\u0075\u0069\u006et\u0038");};};_cedg +=_afaa ;};return _cedg ,nil ;};func (_gece *SymbolDictionary )getToExportFlags ()([]int ,error ){var (_fabb int ; +_beb int32 ;_eecf error ;_cgdf =int32 (_gece ._gfg +_gece .NumberOfNewSymbols );_ffd =make ([]int ,_cgdf ););for _gaea :=int32 (0);_gaea < _cgdf ;_gaea +=_beb {if _gece .IsHuffmanEncoded {_gca ,_facc :=_fa .GetStandardTable (1);if _facc !=nil {return nil ,_facc ; +};_ceaf ,_facc :=_gca .Decode (_gece ._caba );if _facc !=nil {return nil ,_facc ;};_beb =int32 (_ceaf );}else {_beb ,_eecf =_gece ._dgcb .DecodeInt (_gece ._fdfd );if _eecf !=nil {return nil ,_eecf ;};};if _beb !=0{if _gaea +_beb > _cgdf {return nil ,_edb .Error ("\u0053\u0079\u006d\u0062\u006f\u006cD\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0067\u0065\u0074T\u006f\u0045\u0078\u0070\u006f\u0072\u0074F\u006c\u0061\u0067\u0073","\u006d\u0061\u006c\u0066\u006f\u0072m\u0065\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0064\u0061\u0074\u0061\u0020\u0070\u0072\u006f\u0076\u0069\u0064e\u0064\u002e\u0020\u0069\u006e\u0064\u0065\u0078\u0020\u006f\u0075\u0074\u0020\u006ff\u0020r\u0061\u006e\u0067\u0065"); +};for _dddd :=_gaea ;_dddd < _gaea +_beb ;_dddd ++{_ffd [_dddd ]=_fabb ;};};if _fabb ==0{_fabb =1;}else {_fabb =0;};};return _ffd ,nil ;};func (_cff *GenericRefinementRegion )setParameters (_agb *_df .DecoderStats ,_abf *_df .Decoder ,_fbe int8 ,_ecf ,_ddg uint32 ,_fdcc *_gf .Bitmap ,_ecg ,_edae int32 ,_ebec bool ,_bfd []int8 ,_bced []int8 ){_aae .Log .Trace ("\u005b\u0047\u0045NE\u0052\u0049\u0043\u002d\u0052\u0045\u0046\u002d\u0052E\u0047I\u004fN\u005d \u0073\u0065\u0074\u0050\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073"); +if _agb !=nil {_cff ._cd =_agb ;};if _abf !=nil {_cff ._dc =_abf ;};_cff .TemplateID =_fbe ;_cff .RegionInfo .BitmapWidth =_ecf ;_cff .RegionInfo .BitmapHeight =_ddg ;_cff .ReferenceBitmap =_fdcc ;_cff .ReferenceDX =_ecg ;_cff .ReferenceDY =_edae ;_cff .IsTPGROn =_ebec ; +_cff .GrAtX =_bfd ;_cff .GrAtY =_bced ;_cff .RegionBitmap =nil ;_aae .Log .Trace ("[\u0047\u0045\u004e\u0045\u0052\u0049\u0043\u002d\u0052E\u0046\u002d\u0052\u0045\u0047\u0049\u004fN]\u0020\u0073\u0065\u0074P\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073 f\u0069\u006ei\u0073\u0068\u0065\u0064\u002e\u0020\u0025\u0073",_cff ); +};func (_feade *GenericRegion )overrideAtTemplate0a (_eabg ,_adb ,_afcb ,_cead ,_gdbf ,_deg int )int {if _feade .GBAtOverride [0]{_eabg &=0xFFEF;if _feade .GBAtY [0]==0&&_feade .GBAtX [0]>=-int8 (_gdbf ){_eabg |=(_cead >>uint (int8 (_deg )-_feade .GBAtX [0]&0x1))<<4; +}else {_eabg |=int (_feade .getPixel (_adb +int (_feade .GBAtX [0]),_afcb +int (_feade .GBAtY [0])))<<4;};};if _feade .GBAtOverride [1]{_eabg &=0xFBFF;if _feade .GBAtY [1]==0&&_feade .GBAtX [1]>=-int8 (_gdbf ){_eabg |=(_cead >>uint (int8 (_deg )-_feade .GBAtX [1]&0x1))<<10; +}else {_eabg |=int (_feade .getPixel (_adb +int (_feade .GBAtX [1]),_afcb +int (_feade .GBAtY [1])))<<10;};};if _feade .GBAtOverride [2]{_eabg &=0xF7FF;if _feade .GBAtY [2]==0&&_feade .GBAtX [2]>=-int8 (_gdbf ){_eabg |=(_cead >>uint (int8 (_deg )-_feade .GBAtX [2]&0x1))<<11; +}else {_eabg |=int (_feade .getPixel (_adb +int (_feade .GBAtX [2]),_afcb +int (_feade .GBAtY [2])))<<11;};};if _feade .GBAtOverride [3]{_eabg &=0x7FFF;if _feade .GBAtY [3]==0&&_feade .GBAtX [3]>=-int8 (_gdbf ){_eabg |=(_cead >>uint (int8 (_deg )-_feade .GBAtX [3]&0x1))<<15; +}else {_eabg |=int (_feade .getPixel (_adb +int (_feade .GBAtX [3]),_afcb +int (_feade .GBAtY [3])))<<15;};};return _eabg ;};func (_bgde *TextRegion )decodeIds ()(int64 ,error ){const _gfcg ="\u0064e\u0063\u006f\u0064\u0065\u0049\u0064s";if _bgde .IsHuffmanEncoded {if _bgde .SbHuffDS ==3{if _bgde ._gadb ==nil {_adgge :=0; +if _bgde .SbHuffFS ==3{_adgge ++;};var _caca error ;_bgde ._gadb ,_caca =_bgde .getUserTable (_adgge );if _caca !=nil {return 0,_edb .Wrap (_caca ,_gfcg ,"");};};return _bgde ._gadb .Decode (_bgde ._ecc );};_badb ,_cggb :=_fa .GetStandardTable (8+int (_bgde .SbHuffDS )); +if _cggb !=nil {return 0,_edb .Wrap (_cggb ,_gfcg ,"");};return _badb .Decode (_bgde ._ecc );};_gabc ,_cbce :=_bgde ._egdc .DecodeInt (_bgde ._dacg );if _cbce !=nil {return 0,_edb .Wrap (_cbce ,_gfcg ,"\u0063\u0078\u0049\u0041\u0044\u0053");};return int64 (_gabc ),nil ; +};type Segmenter interface{Init (_fabg *Header ,_bedd *_g .Reader )error ;};var _ templater =&template1 {};func (_ff *GenericRefinementRegion )getGrReference ()(*_gf .Bitmap ,error ){segments :=_ff ._cb .RTSegments ;if len (segments )==0{return nil ,_b .New ("\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0065\u0078is\u0074\u0073"); +};_cea ,_fag :=segments [0].GetSegmentData ();if _fag !=nil {return nil ,_fag ;};_feaa ,_dbc :=_cea .(Regioner );if !_dbc {return nil ,_af .Errorf ("\u0072\u0065\u0066\u0065\u0072r\u0065\u0064\u0020\u0074\u006f\u0020\u0053\u0065\u0067\u006d\u0065\u006e\u0074 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0052\u0065\u0067\u0069\u006f\u006e\u0065\u0072\u003a\u0020\u0025\u0054",_cea ); +};return _feaa .GetRegionBitmap ();};func (_fcc *GenericRegion )readGBAtPixels (_ggac int )error {const _aefc ="\u0072\u0065\u0061\u0064\u0047\u0042\u0041\u0074\u0050i\u0078\u0065\u006c\u0073";_fcc .GBAtX =make ([]int8 ,_ggac );_fcc .GBAtY =make ([]int8 ,_ggac ); +for _agac :=0;_agac < _ggac ;_agac ++{_fafg ,_cebf :=_fcc ._efeg .ReadByte ();if _cebf !=nil {return _edb .Wrapf (_cebf ,_aefc ,"\u0058\u0020\u0061t\u0020\u0069\u003a\u0020\u0027\u0025\u0064\u0027",_agac );};_fcc .GBAtX [_agac ]=int8 (_fafg );_fafg ,_cebf =_fcc ._efeg .ReadByte (); +if _cebf !=nil {return _edb .Wrapf (_cebf ,_aefc ,"\u0059\u0020\u0061t\u0020\u0069\u003a\u0020\u0027\u0025\u0064\u0027",_agac );};_fcc .GBAtY [_agac ]=int8 (_fafg );};return nil ;};func (_aafff *PatternDictionary )GetDictionary ()([]*_gf .Bitmap ,error ){if _aafff .Patterns !=nil {return _aafff .Patterns ,nil ; +};if !_aafff .IsMMREncoded {_aafff .setGbAtPixels ();};_egg :=NewGenericRegion (_aafff ._dbec );_egg .setParametersMMR (_aafff .IsMMREncoded ,_aafff .DataOffset ,_aafff .DataLength ,uint32 (_aafff .HdpHeight ),(_aafff .GrayMax +1)*uint32 (_aafff .HdpWidth ),_aafff .HDTemplate ,false ,false ,_aafff .GBAtX ,_aafff .GBAtY ); +_bfg ,_gcdd :=_egg .GetRegionBitmap ();if _gcdd !=nil {return nil ,_gcdd ;};if _gcdd =_aafff .extractPatterns (_bfg );_gcdd !=nil {return nil ,_gcdd ;};return _aafff .Patterns ,nil ;};func (_ccag *SymbolDictionary )decodeAggregate (_faegc ,_dcaf uint32 )error {var (_gegd int64 ; +_adaad error ;);if _ccag .IsHuffmanEncoded {_gegd ,_adaad =_ccag .huffDecodeRefAggNInst ();if _adaad !=nil {return _adaad ;};}else {_dffe ,_gdcf :=_ccag ._dgcb .DecodeInt (_ccag ._aagg );if _gdcf !=nil {return _gdcf ;};_gegd =int64 (_dffe );};if _gegd > 1{return _ccag .decodeThroughTextRegion (_faegc ,_dcaf ,uint32 (_gegd )); +}else if _gegd ==1{return _ccag .decodeRefinedSymbol (_faegc ,_dcaf );};return nil ;};func (_agee *SymbolDictionary )readRegionFlags ()error {var (_gdbff uint64 ;_badd int ;);_ ,_ggg :=_agee ._caba .ReadBits (3);if _ggg !=nil {return _ggg ;};_badd ,_ggg =_agee ._caba .ReadBit (); +if _ggg !=nil {return _ggg ;};_agee .SdrTemplate =int8 (_badd );_gdbff ,_ggg =_agee ._caba .ReadBits (2);if _ggg !=nil {return _ggg ;};_agee .SdTemplate =int8 (_gdbff &0xf);_badd ,_ggg =_agee ._caba .ReadBit ();if _ggg !=nil {return _ggg ;};if _badd ==1{_agee ._dedee =true ; +};_badd ,_ggg =_agee ._caba .ReadBit ();if _ggg !=nil {return _ggg ;};if _badd ==1{_agee ._bddf =true ;};_badd ,_ggg =_agee ._caba .ReadBit ();if _ggg !=nil {return _ggg ;};if _badd ==1{_agee .SdHuffAggInstanceSelection =true ;};_badd ,_ggg =_agee ._caba .ReadBit (); +if _ggg !=nil {return _ggg ;};_agee .SdHuffBMSizeSelection =int8 (_badd );_gdbff ,_ggg =_agee ._caba .ReadBits (2);if _ggg !=nil {return _ggg ;};_agee .SdHuffDecodeWidthSelection =int8 (_gdbff &0xf);_gdbff ,_ggg =_agee ._caba .ReadBits (2);if _ggg !=nil {return _ggg ; +};_agee .SdHuffDecodeHeightSelection =int8 (_gdbff &0xf);_badd ,_ggg =_agee ._caba .ReadBit ();if _ggg !=nil {return _ggg ;};if _badd ==1{_agee .UseRefinementAggregation =true ;};_badd ,_ggg =_agee ._caba .ReadBit ();if _ggg !=nil {return _ggg ;};if _badd ==1{_agee .IsHuffmanEncoded =true ; +};return nil ;};func (_aeacc *TableSegment )Init (h *Header ,r *_g .Reader )error {_aeacc ._dgdg =r ;return _aeacc .parseHeader ();};func (_aggef *PageInformationSegment )readWidthAndHeight ()error {_babba ,_geaa :=_aggef ._faef .ReadBits (32);if _geaa !=nil {return _geaa ; +};_aggef .PageBMWidth =int (_babba &_e .MaxInt32 );_babba ,_geaa =_aggef ._faef .ReadBits (32);if _geaa !=nil {return _geaa ;};_aggef .PageBMHeight =int (_babba &_e .MaxInt32 );return nil ;};func (_ggeb *TextRegion )createRegionBitmap ()error {_ggeb .RegionBitmap =_gf .New (int (_ggeb .RegionInfo .BitmapWidth ),int (_ggeb .RegionInfo .BitmapHeight )); +if _ggeb .DefaultPixel !=0{_ggeb .RegionBitmap .SetDefaultPixel ();};return nil ;};func (_cbcg *TableSegment )HtRS ()int32 {return _cbcg ._efee };func (_ffbde *SymbolDictionary )decodeHeightClassDeltaHeightWithHuffman ()(int64 ,error ){switch _ffbde .SdHuffDecodeHeightSelection {case 0:_cgdab ,_gbgb :=_fa .GetStandardTable (4); +if _gbgb !=nil {return 0,_gbgb ;};return _cgdab .Decode (_ffbde ._caba );case 1:_aggcb ,_dade :=_fa .GetStandardTable (5);if _dade !=nil {return 0,_dade ;};return _aggcb .Decode (_ffbde ._caba );case 3:if _ffbde ._cfgd ==nil {_accab ,_cga :=_fa .GetStandardTable (0); +if _cga !=nil {return 0,_cga ;};_ffbde ._cfgd =_accab ;};return _ffbde ._cfgd .Decode (_ffbde ._caba );};return 0,nil ;}; \ No newline at end of file diff --git a/internal/jbig2/encoder/arithmetic/arithmetic.go b/internal/jbig2/encoder/arithmetic/arithmetic.go index c9a4973a4..19aa3aa85 100644 --- a/internal/jbig2/encoder/arithmetic/arithmetic.go +++ b/internal/jbig2/encoder/arithmetic/arithmetic.go @@ -9,49 +9,51 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package arithmetic ;import (_ad "bytes";_ac "github.com/unidoc/unipdf/v3/common";_da "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_e "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_d "io";);func (_ecf *Encoder )emit (){if _ecf ._bb ==_ced {_ecf ._eag =append (_ecf ._eag ,_ecf ._fa ); -_ecf ._fa =make ([]byte ,_ced );_ecf ._bb =0;};_ecf ._fa [_ecf ._bb ]=_ecf ._bcb ;_ecf ._bb ++;};func (_dd *codingContext )mps (_acf uint32 )int {return int (_dd ._ag [_acf ])};const (IAAI Class =iota ;IADH ;IADS ;IADT ;IADW ;IAEX ;IAFS ;IAIT ;IARDH ;IARDW ; -IARDX ;IARDY ;IARI ;);type codingContext struct{_fc []byte ;_ag []byte ;};func (_eg *Encoder )Refine (iTemp ,iTarget *_da .Bitmap ,ox ,oy int )error {for _fad :=0;_fad < iTarget .Height ;_fad ++{var _bf int ;_bgb :=_fad +oy ;var (_bgf ,_cfg ,_ggb ,_fdb ,_fada uint16 ; -_cgc ,_dde ,_cdc ,_dfa ,_gc byte ;);if _bgb >=1&&(_bgb -1)< iTemp .Height {_cgc =iTemp .Data [(_bgb -1)*iTemp .RowStride ];};if _bgb >=0&&_bgb < iTemp .Height {_dde =iTemp .Data [_bgb *iTemp .RowStride ];};if _bgb >=-1&&_bgb +1< iTemp .Height {_cdc =iTemp .Data [(_bgb +1)*iTemp .RowStride ]; -};if _fad >=1{_dfa =iTarget .Data [(_fad -1)*iTarget .RowStride ];};_gc =iTarget .Data [_fad *iTarget .RowStride ];_bff :=uint (6+ox );_bgf =uint16 (_cgc >>_bff );_cfg =uint16 (_dde >>_bff );_ggb =uint16 (_cdc >>_bff );_fdb =uint16 (_dfa >>6);_ae :=uint (2-ox ); -_cgc <<=_ae ;_dde <<=_ae ;_cdc <<=_ae ;_dfa <<=2;for _bf =0;_bf < iTarget .Width ;_bf ++{_gcb :=(_bgf <<10)|(_cfg <<7)|(_ggb <<4)|(_fdb <<1)|_fada ;_gbe :=_gc >>7;_fb :=_eg .encodeBit (_eg ._df ,uint32 (_gcb ),_gbe );if _fb !=nil {return _fb ;};_bgf <<=1; -_cfg <<=1;_ggb <<=1;_fdb <<=1;_bgf |=uint16 (_cgc >>7);_cfg |=uint16 (_dde >>7);_ggb |=uint16 (_cdc >>7);_fdb |=uint16 (_dfa >>7);_fada =uint16 (_gbe );_efe :=_bf %8;_bga :=_bf /8+1;if _efe ==5+ox {_cgc ,_dde ,_cdc =0,0,0;if _bga < iTemp .RowStride &&_bgb >=1&&(_bgb -1)< iTemp .Height {_cgc =iTemp .Data [(_bgb -1)*iTemp .RowStride +_bga ]; -};if _bga < iTemp .RowStride &&_bgb >=0&&_bgb < iTemp .Height {_dde =iTemp .Data [_bgb *iTemp .RowStride +_bga ];};if _bga < iTemp .RowStride &&_bgb >=-1&&(_bgb +1)< iTemp .Height {_cdc =iTemp .Data [(_bgb +1)*iTemp .RowStride +_bga ];};}else {_cgc <<=1; -_dde <<=1;_cdc <<=1;};if _efe ==5&&_fad >=1{_dfa =0;if _bga < iTarget .RowStride {_dfa =iTarget .Data [(_fad -1)*iTarget .RowStride +_bga ];};}else {_dfa <<=1;};if _efe ==7{_gc =0;if _bga < iTarget .RowStride {_gc =iTarget .Data [_fad *iTarget .RowStride +_bga ]; -};}else {_gc <<=1;};_bgf &=7;_cfg &=7;_ggb &=7;_fdb &=7;};};return nil ;};func (_cga *Encoder )EncodeIAID (symbolCodeLength ,value int )(_gdc error ){_ac .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0020\u0049A\u0049\u0044\u002e S\u0079\u006d\u0062\u006f\u006c\u0043o\u0064\u0065\u004c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u002c \u0056\u0061\u006c\u0075\u0065\u003a\u0020\u0027%\u0064\u0027",symbolCodeLength ,value ); -if _gdc =_cga .encodeIAID (symbolCodeLength ,value );_gdc !=nil {return _e .Wrap (_gdc ,"\u0045\u006e\u0063\u006f\u0064\u0065\u0049\u0041\u0049\u0044","");};return nil ;};func (_bdd *Encoder )byteOut (){if _bdd ._bcb ==0xff{_bdd .rBlock ();return ;};if _bdd ._cc < 0x8000000{_bdd .lBlock (); -return ;};_bdd ._bcb ++;if _bdd ._bcb !=0xff{_bdd .lBlock ();return ;};_bdd ._cc &=0x7ffffff;_bdd .rBlock ();};func (_bae *Encoder )EncodeInteger (proc Class ,value int )(_dbf error ){_ac .Log .Trace ("\u0045\u006eco\u0064\u0065\u0020I\u006e\u0074\u0065\u0067er:\u0027%d\u0027\u0020\u0077\u0069\u0074\u0068\u0020Cl\u0061\u0073\u0073\u003a\u0020\u0027\u0025s\u0027",value ,proc ); -if _dbf =_bae .encodeInteger (proc ,value );_dbf !=nil {return _e .Wrap (_dbf ,"\u0045\u006e\u0063\u006f\u0064\u0065\u0049\u006e\u0074\u0065\u0067\u0065\u0072","");};return nil ;};const _agf =0x9b25;func (_eb *codingContext )flipMps (_b uint32 ){_eb ._ag [_b ]=1-_eb ._ag [_b ]}; -func (_cdf *Encoder )Flush (){_cdf ._bb =0;_cdf ._eag =nil ;_cdf ._gb =-1};type Class int ;var _cda =[]state {{0x5601,1,1,1},{0x3401,2,6,0},{0x1801,3,9,0},{0x0AC1,4,12,0},{0x0521,5,29,0},{0x0221,38,33,0},{0x5601,7,6,1},{0x5401,8,14,0},{0x4801,9,14,0},{0x3801,10,14,0},{0x3001,11,17,0},{0x2401,12,18,0},{0x1C01,13,20,0},{0x1601,29,21,0},{0x5601,15,14,1},{0x5401,16,14,0},{0x5101,17,15,0},{0x4801,18,16,0},{0x3801,19,17,0},{0x3401,20,18,0},{0x3001,21,19,0},{0x2801,22,19,0},{0x2401,23,20,0},{0x2201,24,21,0},{0x1C01,25,22,0},{0x1801,26,23,0},{0x1601,27,24,0},{0x1401,28,25,0},{0x1201,29,26,0},{0x1101,30,27,0},{0x0AC1,31,28,0},{0x09C1,32,29,0},{0x08A1,33,30,0},{0x0521,34,31,0},{0x0441,35,32,0},{0x02A1,36,33,0},{0x0221,37,34,0},{0x0141,38,35,0},{0x0111,39,36,0},{0x0085,40,37,0},{0x0049,41,38,0},{0x0025,42,39,0},{0x0015,43,40,0},{0x0009,44,41,0},{0x0005,45,42,0},{0x0001,45,43,0},{0x5601,46,46,0}}; -func New ()*Encoder {_ef :=&Encoder {};_ef .Init ();return _ef };func (_fea *Encoder )encodeInteger (_adb Class ,_bgfa int )error {const _afd ="E\u006e\u0063\u006f\u0064er\u002ee\u006e\u0063\u006f\u0064\u0065I\u006e\u0074\u0065\u0067\u0065\u0072";if _bgfa > 2000000000||_bgfa < -2000000000{return _e .Errorf (_afd ,"\u0061\u0072\u0069\u0074\u0068\u006d\u0065\u0074i\u0063\u0020\u0065nc\u006f\u0064\u0065\u0072\u0020\u002d \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072 \u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0027%\u0064\u0027",_bgfa ); -};_cbc :=_fea ._ge [_adb ];_dab :=uint32 (1);var _gff int ;for ;;_gff ++{if _gg [_gff ]._ec <=_bgfa &&_gg [_gff ]._cd >=_bgfa {break ;};};if _bgfa < 0{_bgfa =-_bgfa ;};_bgfa -=int (_gg [_gff ]._aa );_dbe :=_gg [_gff ]._db ;for _fadg :=uint8 (0);_fadg < _gg [_gff ]._f ; -_fadg ++{_fdd :=_dbe &1;if _gcbd :=_fea .encodeBit (_cbc ,_dab ,_fdd );_gcbd !=nil {return _e .Wrap (_gcbd ,_afd ,"");};_dbe >>=1;if _dab &0x100> 0{_dab =(((_dab <<1)|uint32 (_fdd ))&0x1ff)|0x100;}else {_dab =(_dab <<1)|uint32 (_fdd );};};_bgfa <<=32-_gg [_gff ]._g ; -for _dff :=uint8 (0);_dff < _gg [_gff ]._g ;_dff ++{_beb :=uint8 ((uint32 (_bgfa )&0x80000000)>>31);if _ffa :=_fea .encodeBit (_cbc ,_dab ,_beb );_ffa !=nil {return _e .Wrap (_ffa ,_afd ,"\u006d\u006f\u0076\u0065 \u0064\u0061\u0074\u0061\u0020\u0074\u006f\u0020\u0074\u0068e\u0020t\u006f\u0070\u0020\u006f\u0066\u0020\u0077o\u0072\u0064"); -};_bgfa <<=1;if _dab &0x100!=0{_dab =(((_dab <<1)|uint32 (_beb ))&0x1ff)|0x100;}else {_dab =(_dab <<1)|uint32 (_beb );};};return nil ;};func (_ed *Encoder )Reset (){_ed ._ee =0x8000;_ed ._cc =0;_ed ._bd =12;_ed ._gb =-1;_ed ._bcb =0;_ed ._fg =nil ;_ed ._df =_gd (_cfb ); -};func (_dc *Encoder )encodeBit (_ecd *codingContext ,_edd uint32 ,_cbb uint8 )error {const _ab ="\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u002e\u0065\u006e\u0063\u006fd\u0065\u0042\u0069\u0074";_dc ._ea ++;if _edd >=uint32 (len (_ecd ._fc )){return _e .Errorf (_ab ,"\u0061r\u0069\u0074h\u006d\u0065\u0074i\u0063\u0020\u0065\u006e\u0063\u006f\u0064e\u0072\u0020\u002d\u0020\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u0063\u0074\u0078\u0020\u006e\u0075m\u0062\u0065\u0072\u003a\u0020\u0027\u0025\u0064\u0027",_edd ); -};_ebg :=_ecd ._fc [_edd ];_dfb :=_ecd .mps (_edd );_aff :=_cda [_ebg ]._feg ;_ac .Log .Trace ("\u0045\u0043\u003a\u0020\u0025d\u0009\u0020D\u003a\u0020\u0025d\u0009\u0020\u0049\u003a\u0020\u0025d\u0009\u0020\u004dPS\u003a \u0025\u0064\u0009\u0020\u0051\u0045\u003a \u0025\u0030\u0034\u0058\u0009\u0020\u0020\u0041\u003a\u0020\u0025\u0030\u0034\u0058\u0009\u0020\u0043\u003a %\u0030\u0038\u0058\u0009\u0020\u0043\u0054\u003a\u0020\u0025\u0064\u0009\u0020\u0042\u003a\u0020\u0025\u0030\u0032\u0058\u0009\u0020\u0042\u0050\u003a\u0020\u0025\u0064",_dc ._ea ,_cbb ,_ebg ,_dfb ,_aff ,_dc ._ee ,_dc ._cc ,_dc ._bd ,_dc ._bcb ,_dc ._gb ); -if _cbb ==0{_dc .code0 (_ecd ,_edd ,_aff ,_ebg );}else {_dc .code1 (_ecd ,_edd ,_aff ,_ebg );};return nil ;};func (_gfb *Encoder )dataSize ()int {return _ced *len (_gfb ._eag )+_gfb ._bb };func (_eae *Encoder )EncodeOOB (proc Class )(_aca error ){_ac .Log .Trace ("E\u006e\u0063\u006f\u0064\u0065\u0020O\u004f\u0042\u0020\u0077\u0069\u0074\u0068\u0020\u0043l\u0061\u0073\u0073:\u0020'\u0025\u0073\u0027",proc ); -if _aca =_eae .encodeOOB (proc );_aca !=nil {return _e .Wrap (_aca ,"\u0045n\u0063\u006f\u0064\u0065\u004f\u004fB","");};return nil ;};func (_dbc *Encoder )renormalize (){for {_dbc ._ee <<=1;_dbc ._cc <<=1;_dbc ._bd --;if _dbc ._bd ==0{_dbc .byteOut (); -};if (_dbc ._ee &0x8000)!=0{break ;};};};type Encoder struct{_cc uint32 ;_ee uint16 ;_bd ,_bcb uint8 ;_gb int ;_ea int ;_eag [][]byte ;_fa []byte ;_bb int ;_df *codingContext ;_ge [13]*codingContext ;_fg *codingContext ;};func (_bda *Encoder )encodeOOB (_fge Class )error {_dgcb :=_bda ._ge [_fge ]; -_dbef :=_bda .encodeBit (_dgcb ,1,1);if _dbef !=nil {return _dbef ;};_dbef =_bda .encodeBit (_dgcb ,3,0);if _dbef !=nil {return _dbef ;};_dbef =_bda .encodeBit (_dgcb ,6,0);if _dbef !=nil {return _dbef ;};_dbef =_bda .encodeBit (_dgcb ,12,0);if _dbef !=nil {return _dbef ; -};return nil ;};func (_gf *Encoder )WriteTo (w _d .Writer )(int64 ,error ){const _efd ="\u0045n\u0063o\u0064\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065\u0054\u006f";var _ebbf int64 ;for _aaf ,_cgg :=range _gf ._eag {_ded ,_cgb :=w .Write (_cgg );if _cgb !=nil {return 0,_e .Wrapf (_cgb ,_efd ,"\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0061\u0074\u0020\u0069'\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0063h\u0075\u006e\u006b",_aaf ); -};_ebbf +=int64 (_ded );};_gf ._fa =_gf ._fa [:_gf ._bb ];_dae ,_dgc :=w .Write (_gf ._fa );if _dgc !=nil {return 0,_e .Wrap (_dgc ,_efd ,"\u0062u\u0066f\u0065\u0072\u0065\u0064\u0020\u0063\u0068\u0075\u006e\u006b\u0073");};_ebbf +=int64 (_dae );return _ebbf ,nil ; -};func (_aeg *Encoder )codeMPS (_ccd *codingContext ,_dfef uint32 ,_edb uint16 ,_bge byte ){_aeg ._ee -=_edb ;if _aeg ._ee &0x8000!=0{_aeg ._cc +=uint32 (_edb );return ;};if _aeg ._ee < _edb {_aeg ._ee =_edb ;}else {_aeg ._cc +=uint32 (_edb );};_ccd ._fc [_dfef ]=_cda [_bge ]._afb ; -_aeg .renormalize ();};func (_c Class )String ()string {switch _c {case IAAI :return "\u0049\u0041\u0041\u0049";case IADH :return "\u0049\u0041\u0044\u0048";case IADS :return "\u0049\u0041\u0044\u0053";case IADT :return "\u0049\u0041\u0044\u0054";case IADW :return "\u0049\u0041\u0044\u0057"; -case IAEX :return "\u0049\u0041\u0045\u0058";case IAFS :return "\u0049\u0041\u0046\u0053";case IAIT :return "\u0049\u0041\u0049\u0054";case IARDH :return "\u0049\u0041\u0052D\u0048";case IARDW :return "\u0049\u0041\u0052D\u0057";case IARDX :return "\u0049\u0041\u0052D\u0058"; -case IARDY :return "\u0049\u0041\u0052D\u0059";case IARI :return "\u0049\u0041\u0052\u0049";default:return "\u0055N\u004b\u004e\u004f\u0057\u004e";};};func (_baa *Encoder )flush (){_baa .setBits ();_baa ._cc <<=_baa ._bd ;_baa .byteOut ();_baa ._cc <<=_baa ._bd ; -_baa .byteOut ();_baa .emit ();if _baa ._bcb !=0xff{_baa ._gb ++;_baa ._bcb =0xff;_baa .emit ();};_baa ._gb ++;_baa ._bcb =0xac;_baa ._gb ++;_baa .emit ();};var _ _d .WriterTo =&Encoder {};func (_gbd *Encoder )EncodeBitmap (bm *_da .Bitmap ,duplicateLineRemoval bool )error {_ac .Log .Trace ("\u0045n\u0063\u006f\u0064\u0065 \u0042\u0069\u0074\u006d\u0061p\u0020[\u0025d\u0078\u0025\u0064\u005d\u002c\u0020\u0025s",bm .Width ,bm .Height ,bm ); -var (_fd ,_de uint8 ;_ada ,_cb ,_ece uint16 ;_ebc ,_fac ,_be byte ;_bg ,_dfe ,_ca int ;_ba ,_efg []byte ;);for _ebb :=0;_ebb < bm .Height ;_ebb ++{_ebc ,_fac =0,0;if _ebb >=2{_ebc =bm .Data [(_ebb -2)*bm .RowStride ];};if _ebb >=1{_fac =bm .Data [(_ebb -1)*bm .RowStride ]; -if duplicateLineRemoval {_dfe =_ebb *bm .RowStride ;_ba =bm .Data [_dfe :_dfe +bm .RowStride ];_ca =(_ebb -1)*bm .RowStride ;_efg =bm .Data [_ca :_ca +bm .RowStride ];if _ad .Equal (_ba ,_efg ){_de =_fd ^1;_fd =1;}else {_de =_fd ;_fd =0;};};};if duplicateLineRemoval {if _eec :=_gbd .encodeBit (_gbd ._df ,_agf ,_de ); -_eec !=nil {return _eec ;};if _fd !=0{continue ;};};_be =bm .Data [_ebb *bm .RowStride ];_ada =uint16 (_ebc >>5);_cb =uint16 (_fac >>4);_ebc <<=3;_fac <<=4;_ece =0;for _bg =0;_bg < bm .Width ;_bg ++{_cdd :=uint32 (_ada <<11|_cb <<4|_ece );_cg :=(_be &0x80)>>7; -_dfc :=_gbd .encodeBit (_gbd ._df ,_cdd ,_cg );if _dfc !=nil {return _dfc ;};_ada <<=1;_cb <<=1;_ece <<=1;_ada |=uint16 ((_ebc &0x80)>>7);_cb |=uint16 ((_fac &0x80)>>7);_ece |=uint16 (_cg );_eecf :=_bg %8;_fe :=_bg /8+1;if _eecf ==4&&_ebb >=2{_ebc =0;if _fe < bm .RowStride {_ebc =bm .Data [(_ebb -2)*bm .RowStride +_fe ]; -};}else {_ebc <<=1;};if _eecf ==3&&_ebb >=1{_fac =0;if _fe < bm .RowStride {_fac =bm .Data [(_ebb -1)*bm .RowStride +_fe ];};}else {_fac <<=1;};if _eecf ==7{_be =0;if _fe < bm .RowStride {_be =bm .Data [_ebb *bm .RowStride +_fe ];};}else {_be <<=1;};_ada &=31; -_cb &=127;_ece &=15;};};return nil ;};func _gd (_bc int )*codingContext {return &codingContext {_fc :make ([]byte ,_bc ),_ag :make ([]byte ,_bc )};};func (_dg *Encoder )Final (){_dg .flush ()};func (_acd *Encoder )setBits (){_cea :=_acd ._cc +uint32 (_acd ._ee ); -_acd ._cc |=0xffff;if _acd ._cc >=_cea {_acd ._cc -=0x8000;};};var _gg =[]intEncRangeS {{0,3,0,2,0,2},{-1,-1,9,4,0,0},{-3,-2,5,3,2,1},{4,19,2,3,4,4},{-19,-4,3,3,4,4},{20,83,6,4,20,6},{-83,-20,7,4,20,6},{84,339,14,5,84,8},{-339,-84,15,5,84,8},{340,4435,30,6,340,12},{-4435,-340,31,6,340,12},{4436,2000000000,62,6,4436,32},{-2000000000,-4436,63,6,4436,32}}; -func (_fgf *Encoder )encodeIAID (_fddf ,_cbe int )error {if _fgf ._fg ==nil {_fgf ._fg =_gd (1<>31); -if _gca :=_fgf .encodeBit (_fgf ._fg ,_eca ,_ffc );_gca !=nil {return _gca ;};_fbd =(_fbd <<1)|uint32 (_ffc );_cbe <<=1;};return nil ;};func (_cf *Encoder )DataSize ()int {return _cf .dataSize ()};func (_ce *Encoder )code1 (_dbfe *codingContext ,_agbc uint32 ,_fbb uint16 ,_efga byte ){if _dbfe .mps (_agbc )==1{_ce .codeMPS (_dbfe ,_agbc ,_fbb ,_efga ); -}else {_ce .codeLPS (_dbfe ,_agbc ,_fbb ,_efga );};};func (_fag *Encoder )lBlock (){if _fag ._gb >=0{_fag .emit ();};_fag ._gb ++;_fag ._bcb =uint8 (_fag ._cc >>19);_fag ._cc &=0x7ffff;_fag ._bd =8;};func (_fbf *Encoder )codeLPS (_bfg *codingContext ,_bac uint32 ,_acb uint16 ,_eaed byte ){_fbf ._ee -=_acb ; -if _fbf ._ee < _acb {_fbf ._cc +=uint32 (_acb );}else {_fbf ._ee =_acb ;};if _cda [_eaed ]._abe ==1{_bfg .flipMps (_bac );};_bfg ._fc [_bac ]=_cda [_eaed ]._ddg ;_fbf .renormalize ();};func (_deeb *Encoder )code0 (_dgg *codingContext ,_ff uint32 ,_gfc uint16 ,_deb byte ){if _dgg .mps (_ff )==0{_deeb .codeMPS (_dgg ,_ff ,_gfc ,_deb ); -}else {_deeb .codeLPS (_dgg ,_ff ,_gfc ,_deb );};};const (_cfb =65536;_ced =20*1024;);type intEncRangeS struct{_ec ,_cd int ;_db ,_f uint8 ;_aa uint16 ;_g uint8 ;};func (_fbbg *Encoder )rBlock (){if _fbbg ._gb >=0{_fbbg .emit ();};_fbbg ._gb ++;_fbbg ._bcb =uint8 (_fbbg ._cc >>20); -_fbbg ._cc &=0xfffff;_fbbg ._bd =7;};type state struct{_feg uint16 ;_afb ,_ddg uint8 ;_abe uint8 ;};func (_af *Encoder )Init (){_af ._df =_gd (_cfb );_af ._ee =0x8000;_af ._cc =0;_af ._bd =12;_af ._gb =-1;_af ._bcb =0;_af ._bb =0;_af ._fa =make ([]byte ,_ced ); -for _agb :=0;_agb < len (_af ._ge );_agb ++{_af ._ge [_agb ]=_gd (512);};_af ._fg =nil ;}; \ No newline at end of file +package arithmetic ;import (_f "bytes";_da "github.com/unidoc/unipdf/v3/common";_e "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_b "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_fa "io";);type intEncRangeS struct{_ba ,_db int ;_bb ,_eb uint8 ; +_fc uint16 ;_fb uint8 ;};func (_fcf *Encoder )encodeBit (_dbf *codingContext ,_cfee uint32 ,_aa uint8 )error {const _gaf ="\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u002e\u0065\u006e\u0063\u006fd\u0065\u0042\u0069\u0074";_fcf ._dfa ++;if _cfee >=uint32 (len (_dbf ._fce )){return _b .Errorf (_gaf ,"\u0061r\u0069\u0074h\u006d\u0065\u0074i\u0063\u0020\u0065\u006e\u0063\u006f\u0064e\u0072\u0020\u002d\u0020\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u0063\u0074\u0078\u0020\u006e\u0075m\u0062\u0065\u0072\u003a\u0020\u0027\u0025\u0064\u0027",_cfee ); +};_aef :=_dbf ._fce [_cfee ];_cddb :=_dbf .mps (_cfee );_fbdf :=_dee [_aef ]._bda ;_da .Log .Trace ("\u0045\u0043\u003a\u0020\u0025d\u0009\u0020D\u003a\u0020\u0025d\u0009\u0020\u0049\u003a\u0020\u0025d\u0009\u0020\u004dPS\u003a \u0025\u0064\u0009\u0020\u0051\u0045\u003a \u0025\u0030\u0034\u0058\u0009\u0020\u0020\u0041\u003a\u0020\u0025\u0030\u0034\u0058\u0009\u0020\u0043\u003a %\u0030\u0038\u0058\u0009\u0020\u0043\u0054\u003a\u0020\u0025\u0064\u0009\u0020\u0042\u003a\u0020\u0025\u0030\u0032\u0058\u0009\u0020\u0042\u0050\u003a\u0020\u0025\u0064",_fcf ._dfa ,_aa ,_aef ,_cddb ,_fbdf ,_fcf ._dd ,_fcf ._cb ,_fcf ._eae ,_fcf ._fd ,_fcf ._cc ); +if _aa ==0{_fcf .code0 (_dbf ,_cfee ,_fbdf ,_aef );}else {_fcf .code1 (_dbf ,_cfee ,_fbdf ,_aef );};return nil ;};func _a (_gg int )*codingContext {return &codingContext {_fce :make ([]byte ,_gg ),_dac :make ([]byte ,_gg )};};const (IAAI Class =iota ;IADH ; +IADS ;IADT ;IADW ;IAEX ;IAFS ;IAIT ;IARDH ;IARDW ;IARDX ;IARDY ;IARI ;);func (_eg *Encoder )codeLPS (_bbd *codingContext ,_dgd uint32 ,_bbdf uint16 ,_cdc byte ){_eg ._dd -=_bbdf ;if _eg ._dd < _bbdf {_eg ._cb +=uint32 (_bbdf );}else {_eg ._dd =_bbdf ;}; +if _dee [_cdc ]._agca ==1{_bbd .flipMps (_dgd );};_bbd ._fce [_dgd ]=_dee [_cdc ]._gba ;_eg .renormalize ();};func (_ebc *Encoder )EncodeBitmap (bm *_e .Bitmap ,duplicateLineRemoval bool )error {_da .Log .Trace ("\u0045n\u0063\u006f\u0064\u0065 \u0042\u0069\u0074\u006d\u0061p\u0020[\u0025d\u0078\u0025\u0064\u005d\u002c\u0020\u0025s",bm .Width ,bm .Height ,bm ); +var (_gc ,_fbd uint8 ;_dcb ,_bad ,_de uint16 ;_ecf ,_ga ,_af byte ;_gd ,_ad ,_ab int ;_ae ,_gf []byte ;);for _cdg :=0;_cdg < bm .Height ;_cdg ++{_ecf ,_ga =0,0;if _cdg >=2{_ecf =bm .Data [(_cdg -2)*bm .RowStride ];};if _cdg >=1{_ga =bm .Data [(_cdg -1)*bm .RowStride ]; +if duplicateLineRemoval {_ad =_cdg *bm .RowStride ;_ae =bm .Data [_ad :_ad +bm .RowStride ];_ab =(_cdg -1)*bm .RowStride ;_gf =bm .Data [_ab :_ab +bm .RowStride ];if _f .Equal (_ae ,_gf ){_fbd =_gc ^1;_gc =1;}else {_fbd =_gc ;_gc =0;};};};if duplicateLineRemoval {if _gcd :=_ebc .encodeBit (_ebc ._dag ,_cg ,_fbd ); +_gcd !=nil {return _gcd ;};if _gc !=0{continue ;};};_af =bm .Data [_cdg *bm .RowStride ];_dcb =uint16 (_ecf >>5);_bad =uint16 (_ga >>4);_ecf <<=3;_ga <<=4;_de =0;for _gd =0;_gd < bm .Width ;_gd ++{_gfd :=uint32 (_dcb <<11|_bad <<4|_de );_afc :=(_af &0x80)>>7; +_cdd :=_ebc .encodeBit (_ebc ._dag ,_gfd ,_afc );if _cdd !=nil {return _cdd ;};_dcb <<=1;_bad <<=1;_de <<=1;_dcb |=uint16 ((_ecf &0x80)>>7);_bad |=uint16 ((_ga &0x80)>>7);_de |=uint16 (_afc );_ag :=_gd %8;_afd :=_gd /8+1;if _ag ==4&&_cdg >=2{_ecf =0;if _afd < bm .RowStride {_ecf =bm .Data [(_cdg -2)*bm .RowStride +_afd ]; +};}else {_ecf <<=1;};if _ag ==3&&_cdg >=1{_ga =0;if _afd < bm .RowStride {_ga =bm .Data [(_cdg -1)*bm .RowStride +_afd ];};}else {_ga <<=1;};if _ag ==7{_af =0;if _afd < bm .RowStride {_af =bm .Data [_cdg *bm .RowStride +_afd ];};}else {_af <<=1;};_dcb &=31; +_bad &=127;_de &=15;};};return nil ;};func (_dgf *Encoder )code1 (_adc *codingContext ,_bgc uint32 ,_cfg uint16 ,_adf byte ){if _adc .mps (_bgc )==1{_dgf .codeMPS (_adc ,_bgc ,_cfg ,_adf );}else {_dgf .codeLPS (_adc ,_bgc ,_cfg ,_adf );};};const (_ffc =65536; +_cgg =20*1024;);var _ _fa .WriterTo =&Encoder {};func (_dg *Encoder )Flush (){_dg ._gb =0;_dg ._dda =nil ;_dg ._cc =-1};func (_fgd *Encoder )setBits (){_abcc :=_fgd ._cb +uint32 (_fgd ._dd );_fgd ._cb |=0xffff;if _fgd ._cb >=_abcc {_fgd ._cb -=0x8000;}; +};func (_efa *Encoder )dataSize ()int {return _cgg *len (_efa ._dda )+_efa ._gb };func (_dba *Encoder )lBlock (){if _dba ._cc >=0{_dba .emit ();};_dba ._cc ++;_dba ._fd =uint8 (_dba ._cb >>19);_dba ._cb &=0x7ffff;_dba ._eae =8;};func (_ebg *Encoder )Init (){_ebg ._dag =_a (_ffc ); +_ebg ._dd =0x8000;_ebg ._cb =0;_ebg ._eae =12;_ebg ._cc =-1;_ebg ._fd =0;_ebg ._gb =0;_ebg ._ec =make ([]byte ,_cgg );for _ef :=0;_ef < len (_ebg ._be );_ef ++{_ebg ._be [_ef ]=_a (512);};_ebg ._cd =nil ;};func (_cffc *Encoder )encodeOOB (_abgf Class )error {_ffd :=_cffc ._be [_abgf ]; +_eegf :=_cffc .encodeBit (_ffd ,1,1);if _eegf !=nil {return _eegf ;};_eegf =_cffc .encodeBit (_ffd ,3,0);if _eegf !=nil {return _eegf ;};_eegf =_cffc .encodeBit (_ffd ,6,0);if _eegf !=nil {return _eegf ;};_eegf =_cffc .encodeBit (_ffd ,12,0);if _eegf !=nil {return _eegf ; +};return nil ;};func (_bag *Encoder )EncodeOOB (proc Class )(_cf error ){_da .Log .Trace ("E\u006e\u0063\u006f\u0064\u0065\u0020O\u004f\u0042\u0020\u0077\u0069\u0074\u0068\u0020\u0043l\u0061\u0073\u0073:\u0020'\u0025\u0073\u0027",proc );if _cf =_bag .encodeOOB (proc ); +_cf !=nil {return _b .Wrap (_cf ,"\u0045n\u0063\u006f\u0064\u0065\u004f\u004fB","");};return nil ;};func (_df *codingContext )flipMps (_ea uint32 ){_df ._dac [_ea ]=1-_df ._dac [_ea ]};type codingContext struct{_fce []byte ;_dac []byte ;};func (_bbf *Encoder )renormalize (){for {_bbf ._dd <<=1; +_bbf ._cb <<=1;_bbf ._eae --;if _bbf ._eae ==0{_bbf .byteOut ();};if (_bbf ._dd &0x8000)!=0{break ;};};};func (_ff *Encoder )Final (){_ff .flush ()};func (_cda *Encoder )WriteTo (w _fa .Writer )(int64 ,error ){const _dfd ="\u0045n\u0063o\u0064\u0065\u0072\u002e\u0057\u0072\u0069\u0074\u0065\u0054\u006f"; +var _aga int64 ;for _gde ,_dae :=range _cda ._dda {_abc ,_eeg :=w .Write (_dae );if _eeg !=nil {return 0,_b .Wrapf (_eeg ,_dfd ,"\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0061\u0074\u0020\u0069'\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u0020\u0063h\u0075\u006e\u006b",_gde ); +};_aga +=int64 (_abc );};_cda ._ec =_cda ._ec [:_cda ._gb ];_cfe ,_ggd :=w .Write (_cda ._ec );if _ggd !=nil {return 0,_b .Wrap (_ggd ,_dfd ,"\u0062u\u0066f\u0065\u0072\u0065\u0064\u0020\u0063\u0068\u0075\u006e\u006b\u0073");};_aga +=int64 (_cfe );return _aga ,nil ; +};func (_fg *Encoder )EncodeIAID (symbolCodeLength ,value int )(_ccf error ){_da .Log .Trace ("\u0045\u006e\u0063\u006f\u0064\u0065\u0020\u0049A\u0049\u0044\u002e S\u0079\u006d\u0062\u006f\u006c\u0043o\u0064\u0065\u004c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0027\u0025\u0064\u0027\u002c \u0056\u0061\u006c\u0075\u0065\u003a\u0020\u0027%\u0064\u0027",symbolCodeLength ,value ); +if _ccf =_fg .encodeIAID (symbolCodeLength ,value );_ccf !=nil {return _b .Wrap (_ccf ,"\u0045\u006e\u0063\u006f\u0064\u0065\u0049\u0041\u0049\u0044","");};return nil ;};func (_bga *Encoder )emit (){if _bga ._gb ==_cgg {_bga ._dda =append (_bga ._dda ,_bga ._ec ); +_bga ._ec =make ([]byte ,_cgg );_bga ._gb =0;};_bga ._ec [_bga ._gb ]=_bga ._fd ;_bga ._gb ++;};func (_efc *Encoder )code0 (_eba *codingContext ,_dcd uint32 ,_bcd uint16 ,_ceg byte ){if _eba .mps (_dcd )==0{_efc .codeMPS (_eba ,_dcd ,_bcd ,_ceg );}else {_efc .codeLPS (_eba ,_dcd ,_bcd ,_ceg ); +};};var _dee =[]state {{0x5601,1,1,1},{0x3401,2,6,0},{0x1801,3,9,0},{0x0AC1,4,12,0},{0x0521,5,29,0},{0x0221,38,33,0},{0x5601,7,6,1},{0x5401,8,14,0},{0x4801,9,14,0},{0x3801,10,14,0},{0x3001,11,17,0},{0x2401,12,18,0},{0x1C01,13,20,0},{0x1601,29,21,0},{0x5601,15,14,1},{0x5401,16,14,0},{0x5101,17,15,0},{0x4801,18,16,0},{0x3801,19,17,0},{0x3401,20,18,0},{0x3001,21,19,0},{0x2801,22,19,0},{0x2401,23,20,0},{0x2201,24,21,0},{0x1C01,25,22,0},{0x1801,26,23,0},{0x1601,27,24,0},{0x1401,28,25,0},{0x1201,29,26,0},{0x1101,30,27,0},{0x0AC1,31,28,0},{0x09C1,32,29,0},{0x08A1,33,30,0},{0x0521,34,31,0},{0x0441,35,32,0},{0x02A1,36,33,0},{0x0221,37,34,0},{0x0141,38,35,0},{0x0111,39,36,0},{0x0085,40,37,0},{0x0049,41,38,0},{0x0025,42,39,0},{0x0015,43,40,0},{0x0009,44,41,0},{0x0005,45,42,0},{0x0001,45,43,0},{0x5601,46,46,0}}; +func New ()*Encoder {_ge :=&Encoder {};_ge .Init ();return _ge };type Encoder struct{_cb uint32 ;_dd uint16 ;_eae ,_fd uint8 ;_cc int ;_dfa int ;_dda [][]byte ;_ec []byte ;_gb int ;_dag *codingContext ;_be [13]*codingContext ;_cd *codingContext ;};func (_daa *Encoder )encodeIAID (_cag ,_fbe int )error {if _daa ._cd ==nil {_daa ._cd =_a (1<>31);if _dcdf :=_daa .encodeBit (_daa ._cd ,_bf ,_aaa );_dcdf !=nil {return _dcdf ; +};_cbc =(_cbc <<1)|uint32 (_aaa );_fbe <<=1;};return nil ;};func (_agg *Encoder )Refine (iTemp ,iTarget *_e .Bitmap ,ox ,oy int )error {for _bed :=0;_bed < iTarget .Height ;_bed ++{var _gcda int ;_cff :=_bed +oy ;var (_ebe ,_ee ,_aea ,_gdb ,_dge uint16 ; +_eca ,_dgg ,_ce ,_ac ,_agc byte ;);if _cff >=1&&(_cff -1)< iTemp .Height {_eca =iTemp .Data [(_cff -1)*iTemp .RowStride ];};if _cff >=0&&_cff < iTemp .Height {_dgg =iTemp .Data [_cff *iTemp .RowStride ];};if _cff >=-1&&_cff +1< iTemp .Height {_ce =iTemp .Data [(_cff +1)*iTemp .RowStride ]; +};if _bed >=1{_ac =iTarget .Data [(_bed -1)*iTarget .RowStride ];};_agc =iTarget .Data [_bed *iTarget .RowStride ];_dgc :=uint (6+ox );_ebe =uint16 (_eca >>_dgc );_ee =uint16 (_dgg >>_dgc );_aea =uint16 (_ce >>_dgc );_gdb =uint16 (_ac >>6);_ddf :=uint (2-ox ); +_eca <<=_ddf ;_dgg <<=_ddf ;_ce <<=_ddf ;_ac <<=2;for _gcda =0;_gcda < iTarget .Width ;_gcda ++{_eac :=(_ebe <<10)|(_ee <<7)|(_aea <<4)|(_gdb <<1)|_dge ;_fbb :=_agc >>7;_aeaf :=_agg .encodeBit (_agg ._dag ,uint32 (_eac ),_fbb );if _aeaf !=nil {return _aeaf ; +};_ebe <<=1;_ee <<=1;_aea <<=1;_gdb <<=1;_ebe |=uint16 (_eca >>7);_ee |=uint16 (_dgg >>7);_aea |=uint16 (_ce >>7);_gdb |=uint16 (_ac >>7);_dge =uint16 (_fbb );_ebgd :=_gcda %8;_ca :=_gcda /8+1;if _ebgd ==5+ox {_eca ,_dgg ,_ce =0,0,0;if _ca < iTemp .RowStride &&_cff >=1&&(_cff -1)< iTemp .Height {_eca =iTemp .Data [(_cff -1)*iTemp .RowStride +_ca ]; +};if _ca < iTemp .RowStride &&_cff >=0&&_cff < iTemp .Height {_dgg =iTemp .Data [_cff *iTemp .RowStride +_ca ];};if _ca < iTemp .RowStride &&_cff >=-1&&(_cff +1)< iTemp .Height {_ce =iTemp .Data [(_cff +1)*iTemp .RowStride +_ca ];};}else {_eca <<=1;_dgg <<=1; +_ce <<=1;};if _ebgd ==5&&_bed >=1{_ac =0;if _ca < iTarget .RowStride {_ac =iTarget .Data [(_bed -1)*iTarget .RowStride +_ca ];};}else {_ac <<=1;};if _ebgd ==7{_agc =0;if _ca < iTarget .RowStride {_agc =iTarget .Data [_bed *iTarget .RowStride +_ca ];};}else {_agc <<=1; +};_ebe &=7;_ee &=7;_aea &=7;_gdb &=7;};};return nil ;};type Class int ;func (_aaae *Encoder )rBlock (){if _aaae ._cc >=0{_aaae .emit ();};_aaae ._cc ++;_aaae ._fd =uint8 (_aaae ._cb >>20);_aaae ._cb &=0xfffff;_aaae ._eae =7;};type state struct{_bda uint16 ; +_gdg ,_gba uint8 ;_agca uint8 ;};func (_cec *Encoder )encodeInteger (_fdb Class ,_aefe int )error {const _dfe ="E\u006e\u0063\u006f\u0064er\u002ee\u006e\u0063\u006f\u0064\u0065I\u006e\u0074\u0065\u0067\u0065\u0072";if _aefe > 2000000000||_aefe < -2000000000{return _b .Errorf (_dfe ,"\u0061\u0072\u0069\u0074\u0068\u006d\u0065\u0074i\u0063\u0020\u0065nc\u006f\u0064\u0065\u0072\u0020\u002d \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072 \u0076\u0061\u006c\u0075\u0065\u003a\u0020\u0027%\u0064\u0027",_aefe ); +};_fde :=_cec ._be [_fdb ];_aec :=uint32 (1);var _fda int ;for ;;_fda ++{if _bg [_fda ]._ba <=_aefe &&_bg [_fda ]._db >=_aefe {break ;};};if _aefe < 0{_aefe =-_aefe ;};_aefe -=int (_bg [_fda ]._fc );_bac :=_bg [_fda ]._bb ;for _fae :=uint8 (0);_fae < _bg [_fda ]._eb ; +_fae ++{_aca :=_bac &1;if _eab :=_cec .encodeBit (_fde ,_aec ,_aca );_eab !=nil {return _b .Wrap (_eab ,_dfe ,"");};_bac >>=1;if _aec &0x100> 0{_aec =(((_aec <<1)|uint32 (_aca ))&0x1ff)|0x100;}else {_aec =(_aec <<1)|uint32 (_aca );};};_aefe <<=32-_bg [_fda ]._fb ; +for _abg :=uint8 (0);_abg < _bg [_fda ]._fb ;_abg ++{_gad :=uint8 ((uint32 (_aefe )&0x80000000)>>31);if _fdba :=_cec .encodeBit (_fde ,_aec ,_gad );_fdba !=nil {return _b .Wrap (_fdba ,_dfe ,"\u006d\u006f\u0076\u0065 \u0064\u0061\u0074\u0061\u0020\u0074\u006f\u0020\u0074\u0068e\u0020t\u006f\u0070\u0020\u006f\u0066\u0020\u0077o\u0072\u0064"); +};_aefe <<=1;if _aec &0x100!=0{_aec =(((_aec <<1)|uint32 (_gad ))&0x1ff)|0x100;}else {_aec =(_aec <<1)|uint32 (_gad );};};return nil ;};func (_dc *Encoder )DataSize ()int {return _dc .dataSize ()};func (_cac *Encoder )codeMPS (_bd *codingContext ,_cba uint32 ,_ffa uint16 ,_fgb byte ){_cac ._dd -=_ffa ; +if _cac ._dd &0x8000!=0{_cac ._cb +=uint32 (_ffa );return ;};if _cac ._dd < _ffa {_cac ._dd =_ffa ;}else {_cac ._cb +=uint32 (_ffa );};_bd ._fce [_cba ]=_dee [_fgb ]._gdg ;_cac .renormalize ();};func (_ebda *Encoder )flush (){_ebda .setBits ();_ebda ._cb <<=_ebda ._eae ; +_ebda .byteOut ();_ebda ._cb <<=_ebda ._eae ;_ebda .byteOut ();_ebda .emit ();if _ebda ._fd !=0xff{_ebda ._cc ++;_ebda ._fd =0xff;_ebda .emit ();};_ebda ._cc ++;_ebda ._fd =0xac;_ebda ._cc ++;_ebda .emit ();};var _bg =[]intEncRangeS {{0,3,0,2,0,2},{-1,-1,9,4,0,0},{-3,-2,5,3,2,1},{4,19,2,3,4,4},{-19,-4,3,3,4,4},{20,83,6,4,20,6},{-83,-20,7,4,20,6},{84,339,14,5,84,8},{-339,-84,15,5,84,8},{340,4435,30,6,340,12},{-4435,-340,31,6,340,12},{4436,2000000000,62,6,4436,32},{-2000000000,-4436,63,6,4436,32}}; +func (_c *codingContext )mps (_g uint32 )int {return int (_c ._dac [_g ])};func (_ecab *Encoder )Reset (){_ecab ._dd =0x8000;_ecab ._cb =0;_ecab ._eae =12;_ecab ._cc =-1;_ecab ._fd =0;_ecab ._cd =nil ;_ecab ._dag =_a (_ffc );};func (_ebd *Encoder )EncodeInteger (proc Class ,value int )(_faa error ){_da .Log .Trace ("\u0045\u006eco\u0064\u0065\u0020I\u006e\u0074\u0065\u0067er:\u0027%d\u0027\u0020\u0077\u0069\u0074\u0068\u0020Cl\u0061\u0073\u0073\u003a\u0020\u0027\u0025s\u0027",value ,proc ); +if _faa =_ebd .encodeInteger (proc ,value );_faa !=nil {return _b .Wrap (_faa ,"\u0045\u006e\u0063\u006f\u0064\u0065\u0049\u006e\u0074\u0065\u0067\u0065\u0072","");};return nil ;};func (_bc Class )String ()string {switch _bc {case IAAI :return "\u0049\u0041\u0041\u0049"; +case IADH :return "\u0049\u0041\u0044\u0048";case IADS :return "\u0049\u0041\u0044\u0053";case IADT :return "\u0049\u0041\u0044\u0054";case IADW :return "\u0049\u0041\u0044\u0057";case IAEX :return "\u0049\u0041\u0045\u0058";case IAFS :return "\u0049\u0041\u0046\u0053"; +case IAIT :return "\u0049\u0041\u0049\u0054";case IARDH :return "\u0049\u0041\u0052D\u0048";case IARDW :return "\u0049\u0041\u0052D\u0057";case IARDX :return "\u0049\u0041\u0052D\u0058";case IARDY :return "\u0049\u0041\u0052D\u0059";case IARI :return "\u0049\u0041\u0052\u0049"; +default:return "\u0055N\u004b\u004e\u004f\u0057\u004e";};};const _cg =0x9b25;func (_efd *Encoder )byteOut (){if _efd ._fd ==0xff{_efd .rBlock ();return ;};if _efd ._cb < 0x8000000{_efd .lBlock ();return ;};_efd ._fd ++;if _efd ._fd !=0xff{_efd .lBlock (); +return ;};_efd ._cb &=0x7ffffff;_efd .rBlock ();}; \ No newline at end of file diff --git a/internal/jbig2/encoder/classer/classer.go b/internal/jbig2/encoder/classer/classer.go index f81ea4c4d..1a07b6ec5 100644 --- a/internal/jbig2/encoder/classer/classer.go +++ b/internal/jbig2/encoder/classer/classer.go @@ -9,102 +9,103 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package classer ;import (_b "github.com/unidoc/unipdf/v3/common";_gf "github.com/unidoc/unipdf/v3/internal/jbig2/basic";_fb "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_cb "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_g "image";_c "math"; -);func (_ccg Settings )Validate ()error {const _bba ="\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0073\u002e\u0056\u0061\u006ci\u0064\u0061\u0074\u0065";if _ccg .Thresh < 0.4||_ccg .Thresh > 0.98{return _cb .Error (_bba ,"\u006a\u0062i\u0067\u0032\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0074\u0068\u0072\u0065\u0073\u0068\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u005b\u0030\u002e\u0034\u0020\u002d\u0020\u0030\u002e\u0039\u0038\u005d"); -};if _ccg .WeightFactor < 0.0||_ccg .WeightFactor > 1.0{return _cb .Error (_bba ,"\u006a\u0062i\u0067\u0032\u0020\u0065\u006ec\u006f\u0064\u0065\u0072\u0020w\u0065\u0069\u0067\u0068\u0074\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u005b\u0030\u002e\u0030\u0020\u002d\u0020\u0031\u002e\u0030\u005d"); -};if _ccg .RankHaus < 0.5||_ccg .RankHaus > 1.0{return _cb .Error (_bba ,"\u006a\u0062\u0069\u0067\u0032\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0072a\u006e\u006b\u0020\u0068\u0061\u0075\u0073\u0020\u0076\u0061\u006c\u0075\u0065 \u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065 [\u0030\u002e\u0035\u0020\u002d\u0020\u0031\u002e\u0030\u005d"); -};if _ccg .SizeHaus < 1||_ccg .SizeHaus > 10{return _cb .Error (_bba ,"\u006a\u0062\u0069\u0067\u0032 \u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0073\u0069\u007a\u0065\u0020h\u0061\u0075\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u005b\u0031\u0020\u002d\u0020\u0031\u0030]"); -};switch _ccg .Components {case _fb .ComponentConn ,_fb .ComponentCharacters ,_fb .ComponentWords :default:return _cb .Error (_bba ,"\u0069n\u0076\u0061\u006c\u0069d\u0020\u0063\u006c\u0061\u0073s\u0065r\u0020c\u006f\u006d\u0070\u006f\u006e\u0065\u006et"); -};return nil ;};type Settings struct{MaxCompWidth int ;MaxCompHeight int ;SizeHaus int ;RankHaus float64 ;Thresh float64 ;WeightFactor float64 ;KeepClassInstances bool ;Components _fb .Component ;Method Method ;};func (_cbc *Classer )ComputeLLCorners ()(_bf error ){const _de ="\u0043l\u0061\u0073\u0073\u0065\u0072\u002e\u0043\u006f\u006d\u0070\u0075t\u0065\u004c\u004c\u0043\u006f\u0072\u006e\u0065\u0072\u0073"; -if _cbc .PtaUL ==nil {return _cb .Error (_de ,"\u0055\u004c\u0020\u0043or\u006e\u0065\u0072\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};_bd :=len (*_cbc .PtaUL );_cbc .PtaLL =&_fb .Points {};var (_ab ,_gb float32 ;_e ,_dd int ; -_gc *_fb .Bitmap ;);for _fa :=0;_fa < _bd ;_fa ++{_ab ,_gb ,_bf =_cbc .PtaUL .GetGeometry (_fa );if _bf !=nil {_b .Log .Debug ("\u0047e\u0074\u0074\u0069\u006e\u0067\u0020\u0050\u0074\u0061\u0055\u004c \u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_bf ); -return _cb .Wrap (_bf ,_de ,"\u0050\u0074\u0061\u0055\u004c\u0020\u0047\u0065\u006fm\u0065\u0074\u0072\u0079");};_e ,_bf =_cbc .ClassIDs .Get (_fa );if _bf !=nil {_b .Log .Debug ("\u0047\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0043\u006c\u0061s\u0073\u0049\u0044\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_bf ); -return _cb .Wrap (_bf ,_de ,"\u0043l\u0061\u0073\u0073\u0049\u0044");};_gc ,_bf =_cbc .UndilatedTemplates .GetBitmap (_e );if _bf !=nil {_b .Log .Debug ("\u0047\u0065t\u0074\u0069\u006e\u0067 \u0055\u006ed\u0069\u006c\u0061\u0074\u0065\u0064\u0054\u0065m\u0070\u006c\u0061\u0074\u0065\u0073\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_bf ); -return _cb .Wrap (_bf ,_de ,"\u0055\u006e\u0064\u0069la\u0074\u0065\u0064\u0020\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073");};_dd =_gc .Height ;_cbc .PtaLL .AddPoint (_ab ,_gb +float32 (_dd ));};return nil ;};func (_bga *similarTemplatesFinder )Next ()int {var (_gaf ,_fga ,_fdc ,_efb int ; -_bbb bool ;_ege *_fb .Bitmap ;_efc error ;);for {if _bga .Index >=25{return -1;};_fga =_bga .Width +TwoByTwoWalk [2*_bga .Index ];_gaf =_bga .Height +TwoByTwoWalk [2*_bga .Index +1];if _gaf < 1||_fga < 1{_bga .Index ++;continue ;};if len (_bga .CurrentNumbers )==0{_bga .CurrentNumbers ,_bbb =_bga .Classer .TemplatesSize .GetSlice (uint64 (_fga )*uint64 (_gaf )); -if !_bbb {_bga .Index ++;continue ;};_bga .N =0;};_fdc =len (_bga .CurrentNumbers );for ;_bga .N < _fdc ;_bga .N ++{_efb =_bga .CurrentNumbers [_bga .N ];_ege ,_efc =_bga .Classer .DilatedTemplates .GetBitmap (_efb );if _efc !=nil {_b .Log .Debug ("\u0046\u0069\u006e\u0064\u004e\u0065\u0078\u0074\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u003a\u0020\u0074\u0065\u006d\u0070\u006c\u0061t\u0065\u0020\u006e\u006f\u0074 \u0066\u006fu\u006e\u0064\u003a\u0020"); -return 0;};if _ege .Width -2*JbAddedPixels ==_fga &&_ege .Height -2*JbAddedPixels ==_gaf {return _efb ;};};_bga .Index ++;_bga .CurrentNumbers =nil ;};};func (_agf *Classer )AddPage (inputPage *_fb .Bitmap ,pageNumber int ,method Method )(_cg error ){const _fbe ="\u0043l\u0061s\u0073\u0065\u0072\u002e\u0041\u0064\u0064\u0050\u0061\u0067\u0065"; -_agf .Widths [pageNumber ]=inputPage .Width ;_agf .Heights [pageNumber ]=inputPage .Height ;if _cg =_agf .verifyMethod (method );_cg !=nil {return _cb .Wrap (_cg ,_fbe ,"");};_bc ,_d ,_cg :=inputPage .GetComponents (_agf .Settings .Components ,_agf .Settings .MaxCompWidth ,_agf .Settings .MaxCompHeight ); -if _cg !=nil {return _cb .Wrap (_cg ,_fbe ,"");};_b .Log .Debug ("\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074s\u003a\u0020\u0025\u0076",_bc );if _cg =_agf .addPageComponents (inputPage ,_d ,_bc ,pageNumber ,method );_cg !=nil {return _cb .Wrap (_cg ,_fbe ,""); -};return nil ;};func DefaultSettings ()Settings {_gefg :=&Settings {};_gefg .SetDefault ();return *_gefg };func Init (settings Settings )(*Classer ,error ){const _a ="\u0063\u006c\u0061s\u0073\u0065\u0072\u002e\u0049\u006e\u0069\u0074";_fe :=&Classer {Settings :settings ,Widths :map[int ]int {},Heights :map[int ]int {},TemplatesSize :_gf .IntsMap {},TemplateAreas :&_gf .IntSlice {},ComponentPageNumbers :&_gf .IntSlice {},ClassIDs :&_gf .IntSlice {},ComponentsNumber :&_gf .IntSlice {},CentroidPoints :&_fb .Points {},CentroidPointsTemplates :&_fb .Points {},UndilatedTemplates :&_fb .Bitmaps {},DilatedTemplates :&_fb .Bitmaps {},ClassInstances :&_fb .BitmapsArray {},FgTemplates :&_gf .NumSlice {}}; -if _ag :=_fe .Settings .Validate ();_ag !=nil {return nil ,_cb .Wrap (_ag ,_a ,"");};return _fe ,nil ;};type Classer struct{BaseIndex int ;Settings Settings ;ComponentsNumber *_gf .IntSlice ;TemplateAreas *_gf .IntSlice ;Widths map[int ]int ;Heights map[int ]int ; -NumberOfClasses int ;ClassInstances *_fb .BitmapsArray ;UndilatedTemplates *_fb .Bitmaps ;DilatedTemplates *_fb .Bitmaps ;TemplatesSize _gf .IntsMap ;FgTemplates *_gf .NumSlice ;CentroidPoints *_fb .Points ;CentroidPointsTemplates *_fb .Points ;ClassIDs *_gf .IntSlice ; -ComponentPageNumbers *_gf .IntSlice ;PtaUL *_fb .Points ;PtaLL *_fb .Points ;};func (_dfg *Classer )classifyRankHouseNonOne (_ebc *_fb .Boxes ,_fcd ,_edg ,_ade *_fb .Bitmaps ,_egbd *_fb .Points ,_eff *_gf .NumSlice ,_bff int )(_fgbe error ){const _cae ="\u0043\u006c\u0061\u0073s\u0065\u0072\u002e\u0063\u006c\u0061\u0073\u0073\u0069\u0066y\u0052a\u006e\u006b\u0048\u006f\u0075\u0073\u0065O\u006e\u0065"; -var (_gage ,_fca ,_aaa ,_gfg float32 ;_aaf ,_ced ,_eac int ;_bgd ,_dege ,_abe ,_abec ,_dde *_fb .Bitmap ;_bec ,_bgc bool ;);_ffe :=_fb .MakePixelSumTab8 ();for _ede :=0;_ede < len (_fcd .Values );_ede ++{if _dege ,_fgbe =_edg .GetBitmap (_ede );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"b\u006d\u0073\u0031\u002e\u0047\u0065\u0074\u0028\u0069\u0029"); -};if _aaf ,_fgbe =_eff .GetInt (_ede );_fgbe !=nil {_b .Log .Trace ("\u0047\u0065t\u0074\u0069\u006e\u0067 \u0046\u0047T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073 \u0061\u0074\u003a\u0020\u0025\u0064\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_ede ,_fgbe ); -};if _abe ,_fgbe =_ade .GetBitmap (_ede );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"b\u006d\u0073\u0032\u002e\u0047\u0065\u0074\u0028\u0069\u0029");};if _gage ,_fca ,_fgbe =_egbd .GetGeometry (_ede );_fgbe !=nil {return _cb .Wrapf (_fgbe ,_cae ,"\u0070t\u0061[\u0069\u005d\u002e\u0047\u0065\u006f\u006d\u0065\u0074\u0072\u0079"); -};_eab :=len (_dfg .UndilatedTemplates .Values );_bec =false ;_bdcd :=_cafg (_dfg ,_dege );for _eac =_bdcd .Next ();_eac > -1;{if _abec ,_fgbe =_dfg .UndilatedTemplates .GetBitmap (_eac );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"\u0070\u0069\u0078\u0061\u0074\u002e\u005b\u0069\u0043l\u0061\u0073\u0073\u005d"); -};if _ced ,_fgbe =_dfg .FgTemplates .GetInt (_eac );_fgbe !=nil {_b .Log .Trace ("\u0047\u0065\u0074\u0074\u0069\u006eg\u0020\u0046\u0047\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u005b\u0025d\u005d\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_eac ,_fgbe ); -};if _dde ,_fgbe =_dfg .DilatedTemplates .GetBitmap (_eac );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"\u0070\u0069\u0078\u0061\u0074\u0064\u005b\u0069\u0043l\u0061\u0073\u0073\u005d");};if _aaa ,_gfg ,_fgbe =_dfg .CentroidPointsTemplates .GetGeometry (_eac ); -_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"\u0043\u0065\u006et\u0072\u006f\u0069\u0064P\u006f\u0069\u006e\u0074\u0073\u0054\u0065m\u0070\u006c\u0061\u0074\u0065\u0073\u005b\u0069\u0043\u006c\u0061\u0073\u0073\u005d");};_bgc ,_fgbe =_fb .RankHausTest (_dege ,_abe ,_abec ,_dde ,_gage -_aaa ,_fca -_gfg ,MaxDiffWidth ,MaxDiffHeight ,_aaf ,_ced ,float32 (_dfg .Settings .RankHaus ),_ffe ); -if _fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"");};if _bgc {_bec =true ;if _fgbe =_dfg .ClassIDs .Add (_eac );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"");};if _fgbe =_dfg .ComponentPageNumbers .Add (_bff );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,""); -};if _dfg .Settings .KeepClassInstances {_acf ,_cba :=_dfg .ClassInstances .GetBitmaps (_eac );if _cba !=nil {return _cb .Wrap (_cba ,_cae ,"\u0063\u002e\u0050\u0069\u0078\u0061\u0061\u002e\u0047\u0065\u0074B\u0069\u0074\u006d\u0061\u0070\u0073\u0028\u0069\u0043\u006ca\u0073\u0073\u0029"); -};if _bgd ,_cba =_fcd .GetBitmap (_ede );_cba !=nil {return _cb .Wrap (_cba ,_cae ,"\u0070i\u0078\u0061\u005b\u0069\u005d");};_acf .Values =append (_acf .Values ,_bgd );_da ,_cba :=_ebc .Get (_ede );if _cba !=nil {return _cb .Wrap (_cba ,_cae ,"b\u006f\u0078\u0061\u002e\u0047\u0065\u0074\u0028\u0069\u0029"); -};_acf .Boxes =append (_acf .Boxes ,_da );};break ;};};if !_bec {if _fgbe =_dfg .ClassIDs .Add (_eab );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"\u0021\u0066\u006f\u0075\u006e\u0064");};if _fgbe =_dfg .ComponentPageNumbers .Add (_bff );_fgbe !=nil {return _cb .Wrap (_fgbe ,_cae ,"\u0021\u0066\u006f\u0075\u006e\u0064"); -};_fdfa :=&_fb .Bitmaps {};_bgd =_fcd .Values [_ede ];_fdfa .AddBitmap (_bgd );_cad ,_aaac :=_bgd .Width ,_bgd .Height ;_dfg .TemplatesSize .Add (uint64 (_cad )*uint64 (_aaac ),_eab );_aag ,_gcc :=_ebc .Get (_ede );if _gcc !=nil {return _cb .Wrap (_gcc ,_cae ,"\u0021\u0066\u006f\u0075\u006e\u0064"); -};_fdfa .AddBox (_aag );_dfg .ClassInstances .AddBitmaps (_fdfa );_dfg .CentroidPointsTemplates .AddPoint (_gage ,_fca );_dfg .UndilatedTemplates .AddBitmap (_dege );_dfg .DilatedTemplates .AddBitmap (_abe );_dfg .FgTemplates .AddInt (_aaf );};};_dfg .NumberOfClasses =len (_dfg .UndilatedTemplates .Values ); -return nil ;};var TwoByTwoWalk =[]int {0,0,0,1,-1,0,0,-1,1,0,-1,1,1,1,-1,-1,1,-1,0,-2,2,0,0,2,-2,0,-1,-2,1,-2,2,-1,2,1,1,2,-1,2,-2,1,-2,-1,-2,-2,2,-2,2,2,-2,2};func _cafg (_cgce *Classer ,_bdca *_fb .Bitmap )*similarTemplatesFinder {return &similarTemplatesFinder {Width :_bdca .Width ,Height :_bdca .Height ,Classer :_cgce }; -};func (_ffcg *Classer )classifyRankHouseOne (_bccg *_fb .Boxes ,_gdb ,_fbfa ,_dcb *_fb .Bitmaps ,_dda *_fb .Points ,_aac int )(_cf error ){const _gdba ="\u0043\u006c\u0061\u0073s\u0065\u0072\u002e\u0063\u006c\u0061\u0073\u0073\u0069\u0066y\u0052a\u006e\u006b\u0048\u006f\u0075\u0073\u0065O\u006e\u0065"; -var (_dea ,_dfa ,_dfaf ,_dcdc float32 ;_caf int ;_fbdd ,_aaba ,_agg ,_ccd ,_ggg *_fb .Bitmap ;_bfdgd ,_fadc bool ;);for _ea :=0;_ea < len (_gdb .Values );_ea ++{_aaba =_fbfa .Values [_ea ];_agg =_dcb .Values [_ea ];_dea ,_dfa ,_cf =_dda .GetGeometry (_ea ); -if _cf !=nil {return _cb .Wrapf (_cf ,_gdba ,"\u0066\u0069\u0072\u0073\u0074\u0020\u0067\u0065\u006fm\u0065\u0074\u0072\u0079");};_fea :=len (_ffcg .UndilatedTemplates .Values );_bfdgd =false ;_fdg :=_cafg (_ffcg ,_aaba );for _caf =_fdg .Next ();_caf > -1; -{_ccd ,_cf =_ffcg .UndilatedTemplates .GetBitmap (_caf );if _cf !=nil {return _cb .Wrap (_cf ,_gdba ,"\u0062\u006d\u0033");};_ggg ,_cf =_ffcg .DilatedTemplates .GetBitmap (_caf );if _cf !=nil {return _cb .Wrap (_cf ,_gdba ,"\u0062\u006d\u0034");};_dfaf ,_dcdc ,_cf =_ffcg .CentroidPointsTemplates .GetGeometry (_caf ); -if _cf !=nil {return _cb .Wrap (_cf ,_gdba ,"\u0043\u0065\u006e\u0074\u0072\u006f\u0069\u0064\u0054\u0065\u006d\u0070l\u0061\u0074\u0065\u0073");};_fadc ,_cf =_fb .HausTest (_aaba ,_agg ,_ccd ,_ggg ,_dea -_dfaf ,_dfa -_dcdc ,MaxDiffWidth ,MaxDiffHeight ); -if _cf !=nil {return _cb .Wrap (_cf ,_gdba ,"");};if _fadc {_bfdgd =true ;if _cf =_ffcg .ClassIDs .Add (_caf );_cf !=nil {return _cb .Wrap (_cf ,_gdba ,"");};if _cf =_ffcg .ComponentPageNumbers .Add (_aac );_cf !=nil {return _cb .Wrap (_cf ,_gdba ,""); -};if _ffcg .Settings .KeepClassInstances {_bfa ,_ecf :=_ffcg .ClassInstances .GetBitmaps (_caf );if _ecf !=nil {return _cb .Wrap (_ecf ,_gdba ,"\u004be\u0065\u0070\u0050\u0069\u0078\u0061a");};_fbdd ,_ecf =_gdb .GetBitmap (_ea );if _ecf !=nil {return _cb .Wrap (_ecf ,_gdba ,"\u004be\u0065\u0070\u0050\u0069\u0078\u0061a"); -};_bfa .AddBitmap (_fbdd );_dge ,_ecf :=_bccg .Get (_ea );if _ecf !=nil {return _cb .Wrap (_ecf ,_gdba ,"\u004be\u0065\u0070\u0050\u0069\u0078\u0061a");};_bfa .AddBox (_dge );};break ;};};if !_bfdgd {if _cf =_ffcg .ClassIDs .Add (_fea );_cf !=nil {return _cb .Wrap (_cf ,_gdba ,""); -};if _cf =_ffcg .ComponentPageNumbers .Add (_aac );_cf !=nil {return _cb .Wrap (_cf ,_gdba ,"");};_eaf :=&_fb .Bitmaps {};_fbdd ,_cf =_gdb .GetBitmap (_ea );if _cf !=nil {return _cb .Wrap (_cf ,_gdba ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_eaf .Values =append (_eaf .Values ,_fbdd ); -_geed ,_bdag :=_fbdd .Width ,_fbdd .Height ;_ffcg .TemplatesSize .Add (uint64 (_bdag )*uint64 (_geed ),_fea );_baga ,_feab :=_bccg .Get (_ea );if _feab !=nil {return _cb .Wrap (_feab ,_gdba ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_eaf .AddBox (_baga ); -_ffcg .ClassInstances .AddBitmaps (_eaf );_ffcg .CentroidPointsTemplates .AddPoint (_dea ,_dfa );_ffcg .UndilatedTemplates .AddBitmap (_aaba );_ffcg .DilatedTemplates .AddBitmap (_agg );};};return nil ;};func (_fc *Classer )getULCorners (_ef *_fb .Bitmap ,_fac *_fb .Boxes )error {const _aa ="\u0067\u0065\u0074U\u004c\u0043\u006f\u0072\u006e\u0065\u0072\u0073"; -if _ef ==nil {return _cb .Error (_aa ,"\u006e\u0069l\u0020\u0069\u006da\u0067\u0065\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _fac ==nil {return _cb .Error (_aa ,"\u006e\u0069\u006c\u0020\u0062\u006f\u0075\u006e\u0064\u0073");};if _fc .PtaUL ==nil {_fc .PtaUL =&_fb .Points {}; -};_dc :=len (*_fac );var (_ac ,_gce ,_ad ,_agfb int ;_ff ,_bb ,_fg ,_bda float32 ;_acd error ;_af *_g .Rectangle ;_ca *_fb .Bitmap ;_ged _g .Point ;);for _ga :=0;_ga < _dc ;_ga ++{_ac =_fc .BaseIndex +_ga ;if _ff ,_bb ,_acd =_fc .CentroidPoints .GetGeometry (_ac ); -_acd !=nil {return _cb .Wrap (_acd ,_aa ,"\u0043\u0065\u006e\u0074\u0072\u006f\u0069\u0064\u0050o\u0069\u006e\u0074\u0073");};if _gce ,_acd =_fc .ClassIDs .Get (_ac );_acd !=nil {return _cb .Wrap (_acd ,_aa ,"\u0043\u006c\u0061s\u0073\u0049\u0044\u0073\u002e\u0047\u0065\u0074"); -};if _fg ,_bda ,_acd =_fc .CentroidPointsTemplates .GetGeometry (_gce );_acd !=nil {return _cb .Wrap (_acd ,_aa ,"\u0043\u0065\u006etr\u006f\u0069\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073");};_ec :=_fg -_ff ; -_cde :=_bda -_bb ;if _ec >=0{_ad =int (_ec +0.5);}else {_ad =int (_ec -0.5);};if _cde >=0{_agfb =int (_cde +0.5);}else {_agfb =int (_cde -0.5);};if _af ,_acd =_fac .Get (_ga );_acd !=nil {return _cb .Wrap (_acd ,_aa ,"");};_cc ,_ffd :=_af .Min .X ,_af .Min .Y ; -_ca ,_acd =_fc .UndilatedTemplates .GetBitmap (_gce );if _acd !=nil {return _cb .Wrap (_acd ,_aa ,"\u0055\u006e\u0064\u0069\u006c\u0061\u0074\u0065\u0064\u0054e\u006d\u0070\u006c\u0061\u0074\u0065\u0073.\u0047\u0065\u0074\u0028\u0069\u0043\u006c\u0061\u0073\u0073\u0029"); -};_ged ,_acd =_fad (_ef ,_cc ,_ffd ,_ad ,_agfb ,_ca );if _acd !=nil {return _cb .Wrap (_acd ,_aa ,"");};_fc .PtaUL .AddPoint (float32 (_cc -_ad +_ged .X ),float32 (_ffd -_agfb +_ged .Y ));};return nil ;};const (MaxDiffWidth =2;MaxDiffHeight =2;);func (_gbb *Classer )verifyMethod (_cce Method )error {if _cce !=RankHaus &&_cce !=Correlation {return _cb .Error ("\u0076\u0065\u0072i\u0066\u0079\u004d\u0065\u0074\u0068\u006f\u0064","\u0069\u006e\u0076\u0061li\u0064\u0020\u0063\u006c\u0061\u0073\u0073\u0065\u0072\u0020\u006d\u0065\u0074\u0068o\u0064"); -};return nil ;};func (_bfdc *Classer )classifyRankHaus (_cbg *_fb .Boxes ,_dgb *_fb .Bitmaps ,_bfe int )error {const _fge ="\u0063\u006ca\u0073\u0073\u0069f\u0079\u0052\u0061\u006e\u006b\u0048\u0061\u0075\u0073";if _cbg ==nil {return _cb .Error (_fge ,"\u0062\u006fx\u0061\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};if _dgb ==nil {return _cb .Error (_fge ,"\u0070\u0069x\u0061\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};_gef :=len (_dgb .Values );if _gef ==0{return _cb .Error (_fge ,"e\u006dp\u0074\u0079\u0020\u006e\u0065\u0077\u0020\u0063o\u006d\u0070\u006f\u006een\u0074\u0073"); -};_faga :=_dgb .CountPixels ();_bag :=_bfdc .Settings .SizeHaus ;_eeb :=_fb .SelCreateBrick (_bag ,_bag ,_bag /2,_bag /2,_fb .SelHit );_egb :=&_fb .Bitmaps {Values :make ([]*_fb .Bitmap ,_gef )};_gee :=&_fb .Bitmaps {Values :make ([]*_fb .Bitmap ,_gef )}; -var (_gd ,_fbd ,_dfc *_fb .Bitmap ;_fbf error ;);for _fec :=0;_fec < _gef ;_fec ++{_gd ,_fbf =_dgb .GetBitmap (_fec );if _fbf !=nil {return _cb .Wrap (_fbf ,_fge ,"");};_fbd ,_fbf =_gd .AddBorderGeneral (JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,0); -if _fbf !=nil {return _cb .Wrap (_fbf ,_fge ,"");};_dfc ,_fbf =_fb .Dilate (nil ,_fbd ,_eeb );if _fbf !=nil {return _cb .Wrap (_fbf ,_fge ,"");};_egb .Values [_gef ]=_fbd ;_gee .Values [_gef ]=_dfc ;};_baa ,_fbf :=_fb .Centroids (_egb .Values );if _fbf !=nil {return _cb .Wrap (_fbf ,_fge ,""); -};if _fbf =_baa .Add (_bfdc .CentroidPoints );_fbf !=nil {_b .Log .Trace ("\u004e\u006f\u0020\u0063en\u0074\u0072\u006f\u0069\u0064\u0073\u0020\u0074\u006f\u0020\u0061\u0064\u0064");};if _bfdc .Settings .RankHaus ==1.0{_fbf =_bfdc .classifyRankHouseOne (_cbg ,_dgb ,_egb ,_gee ,_baa ,_bfe ); -}else {_fbf =_bfdc .classifyRankHouseNonOne (_cbg ,_dgb ,_egb ,_gee ,_baa ,_faga ,_bfe );};if _fbf !=nil {return _cb .Wrap (_fbf ,_fge ,"");};return nil ;};func _fad (_eef *_fb .Bitmap ,_gag ,_ffc ,_ffdg ,_bcdf int ,_age *_fb .Bitmap )(_ed _g .Point ,_gcee error ){const _eg ="\u0066i\u006e\u0061\u006c\u0041l\u0069\u0067\u006e\u006d\u0065n\u0074P\u006fs\u0069\u0074\u0069\u006f\u006e\u0069\u006eg"; -if _eef ==nil {return _ed ,_cb .Error (_eg ,"\u0073\u006f\u0075\u0072ce\u0020\u006e\u006f\u0074\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064");};if _age ==nil {return _ed ,_cb .Error (_eg ,"t\u0065\u006d\u0070\u006cat\u0065 \u006e\u006f\u0074\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0064"); -};_gba ,_ccf :=_age .Width ,_age .Height ;_ba ,_bcc :=_gag -_ffdg -JbAddedPixels ,_ffc -_bcdf -JbAddedPixels ;_b .Log .Trace ("\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0079\u003a\u0020\u0027\u0025\u0064'\u002c\u0020\u0077\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0068\u003a \u0027\u0025\u0064\u0027\u002c\u0020\u0062\u0078\u003a\u0020\u0027\u0025d'\u002c\u0020\u0062\u0079\u003a\u0020\u0027\u0025\u0064\u0027",_gag ,_ffc ,_gba ,_ccf ,_ba ,_bcc ); -_cac ,_gcee :=_fb .Rect (_ba ,_bcc ,_gba ,_ccf );if _gcee !=nil {return _ed ,_cb .Wrap (_gcee ,_eg ,"");};_gac ,_ ,_gcee :=_eef .ClipRectangle (_cac );if _gcee !=nil {_b .Log .Error ("\u0043a\u006e\u0027\u0074\u0020\u0063\u006c\u0069\u0070\u0020\u0072\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u003a\u0020\u0025\u0076",_cac ); -return _ed ,_cb .Wrap (_gcee ,_eg ,"");};_egd :=_fb .New (_gac .Width ,_gac .Height );_geb :=_c .MaxInt32 ;var _fbg ,_df ,_ded ,_db ,_eee int ;for _fbg =-1;_fbg <=1;_fbg ++{for _df =-1;_df <=1;_df ++{if _ ,_gcee =_fb .Copy (_egd ,_gac );_gcee !=nil {return _ed ,_cb .Wrap (_gcee ,_eg ,""); -};if _gcee =_egd .RasterOperation (_df ,_fbg ,_gba ,_ccf ,_fb .PixSrcXorDst ,_age ,0,0);_gcee !=nil {return _ed ,_cb .Wrap (_gcee ,_eg ,"");};_ded =_egd .CountPixels ();if _ded < _geb {_db =_df ;_eee =_fbg ;_geb =_ded ;};};};_ed .X =_db ;_ed .Y =_eee ; -return _ed ,nil ;};var _fbc bool ;const JbAddedPixels =6;func (_bge *Settings )SetDefault (){if _bge .MaxCompWidth ==0{switch _bge .Components {case _fb .ComponentConn :_bge .MaxCompWidth =MaxConnCompWidth ;case _fb .ComponentCharacters :_bge .MaxCompWidth =MaxCharCompWidth ; -case _fb .ComponentWords :_bge .MaxCompWidth =MaxWordCompWidth ;};};if _bge .MaxCompHeight ==0{_bge .MaxCompHeight =MaxCompHeight ;};if _bge .Thresh ==0.0{_bge .Thresh =0.9;};if _bge .WeightFactor ==0.0{_bge .WeightFactor =0.75;};if _bge .RankHaus ==0.0{_bge .RankHaus =0.97; -};if _bge .SizeHaus ==0{_bge .SizeHaus =2;};};const (MaxConnCompWidth =350;MaxCharCompWidth =350;MaxWordCompWidth =1000;MaxCompHeight =120;);type similarTemplatesFinder struct{Classer *Classer ;Width int ;Height int ;Index int ;CurrentNumbers []int ;N int ; -};type Method int ;const (RankHaus Method =iota ;Correlation ;);func (_cbce *Classer )classifyCorrelation (_deg *_fb .Boxes ,_fbce *_fb .Bitmaps ,_gagf int )error {const _dg ="\u0063\u006c\u0061\u0073si\u0066\u0079\u0043\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e"; -if _deg ==nil {return _cb .Error (_dg ,"\u006e\u0065\u0077\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062o\u0078\u0065\u0073\u0020\u006eo\u0074\u0020f\u006f\u0075\u006e\u0064"); -};if _fbce ==nil {return _cb .Error (_dg ,"\u006e\u0065wC\u006f\u006d\u0070o\u006e\u0065\u006e\u0074s b\u0069tm\u0061\u0070\u0020\u0061\u0072\u0072\u0061y \u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064");};_eea :=len (_fbce .Values );if _eea ==0{_b .Log .Debug ("\u0063l\u0061\u0073s\u0069\u0066\u0079C\u006f\u0072\u0072\u0065\u006c\u0061\u0074i\u006f\u006e\u0020\u002d\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0070\u0069\u0078\u0061s\u0020\u0069\u0073\u0020\u0065\u006d\u0070\u0074\u0079"); -return nil ;};var (_fgb ,_gca *_fb .Bitmap ;_gg error ;);_ggf :=&_fb .Bitmaps {Values :make ([]*_fb .Bitmap ,_eea )};for _agc ,_gfc :=range _fbce .Values {_gca ,_gg =_gfc .AddBorderGeneral (JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,0); -if _gg !=nil {return _cb .Wrap (_gg ,_dg ,"");};_ggf .Values [_agc ]=_gca ;};_eeg :=_cbce .FgTemplates ;_geba :=_fb .MakePixelSumTab8 ();_gaa :=_fb .MakePixelCentroidTab8 ();_gcb :=make ([]int ,_eea );_gcg :=make ([][]int ,_eea );_fag :=_fb .Points (make ([]_fb .Point ,_eea )); -_dee :=&_fag ;var (_eb ,_agff int ;_bdc ,_fcc ,_ddf int ;_cga ,_bg int ;_acda byte ;);for _feg ,_adc :=range _ggf .Values {_gcg [_feg ]=make ([]int ,_adc .Height );_eb =0;_agff =0;_fcc =(_adc .Height -1)*_adc .RowStride ;_bdc =0;for _bg =_adc .Height -1; -_bg >=0;_bg ,_fcc =_bg -1,_fcc -_adc .RowStride {_gcg [_feg ][_bg ]=_bdc ;_ddf =0;for _cga =0;_cga < _adc .RowStride ;_cga ++{_acda =_adc .Data [_fcc +_cga ];_ddf +=_geba [_acda ];_eb +=_gaa [_acda ]+_cga *8*_geba [_acda ];};_bdc +=_ddf ;_agff +=_ddf *_bg ; -};_gcb [_feg ]=_bdc ;if _bdc > 0{(*_dee )[_feg ]=_fb .Point {X :float32 (_eb )/float32 (_bdc ),Y :float32 (_agff )/float32 (_bdc )};}else {(*_dee )[_feg ]=_fb .Point {X :float32 (_adc .Width )/float32 (2),Y :float32 (_adc .Height )/float32 (2)};};};if _gg =_cbce .CentroidPoints .Add (_dee ); -_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0063\u0065\u006et\u0072\u006f\u0069\u0064\u0020\u0061\u0064\u0064");};var (_bfdg ,_ecg ,_aba int ;_ebd float64 ;_ega ,_gfa ,_be ,_ddc float32 ;_aga ,_ce _fb .Point ;_aab bool ;_cace *similarTemplatesFinder ;_gec int ; -_fdb *_fb .Bitmap ;_cdeg *_g .Rectangle ;_cbbf *_fb .Bitmaps ;);for _gec ,_gca =range _ggf .Values {_ecg =_gcb [_gec ];if _ega ,_gfa ,_gg =_dee .GetGeometry (_gec );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0070t\u0061\u0020\u002d\u0020\u0069");};_aab =false ; -_eca :=len (_cbce .UndilatedTemplates .Values );_cace =_cafg (_cbce ,_gca );for _cgac :=_cace .Next ();_cgac > -1;{if _fdb ,_gg =_cbce .UndilatedTemplates .GetBitmap (_cgac );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0075\u006e\u0069dl\u0061\u0074\u0065\u0064\u005b\u0069\u0063\u006c\u0061\u0073\u0073\u005d\u0020\u003d\u0020\u0062\u006d\u0032"); -};if _aba ,_gg =_eeg .GetInt (_cgac );_gg !=nil {_b .Log .Trace ("\u0046\u0047\u0020T\u0065\u006d\u0070\u006ca\u0074\u0065\u0020\u005b\u0069\u0063\u006ca\u0073\u0073\u005d\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_gg );};if _be ,_ddc ,_gg =_cbce .CentroidPointsTemplates .GetGeometry (_cgac ); -_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0043\u0065\u006e\u0074\u0072\u006f\u0069\u0064\u0050\u006f\u0069\u006e\u0074T\u0065\u006d\u0070\u006c\u0061\u0074e\u0073\u005b\u0069\u0063\u006c\u0061\u0073\u0073\u005d\u0020\u003d\u0020\u00782\u002c\u0079\u0032\u0020"); -};if _cbce .Settings .WeightFactor > 0.0{if _bfdg ,_gg =_cbce .TemplateAreas .Get (_cgac );_gg !=nil {_b .Log .Trace ("\u0054\u0065\u006dp\u006c\u0061\u0074\u0065A\u0072\u0065\u0061\u0073\u005b\u0069\u0063l\u0061\u0073\u0073\u005d\u0020\u003d\u0020\u0061\u0072\u0065\u0061\u0020\u0025\u0076",_gg ); -};_ebd =_cbce .Settings .Thresh +(1.0-_cbce .Settings .Thresh )*_cbce .Settings .WeightFactor *float64 (_aba )/float64 (_bfdg );}else {_ebd =_cbce .Settings .Thresh ;};_eba ,_eeeg :=_fb .CorrelationScoreThresholded (_gca ,_fdb ,_ecg ,_aba ,_aga .X -_ce .X ,_aga .Y -_ce .Y ,MaxDiffWidth ,MaxDiffHeight ,_geba ,_gcg [_gec ],float32 (_ebd )); -if _eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"");};if _fbc {var (_cgg ,_ddb float64 ;_bee ,_cbbc int ;);_cgg ,_eeeg =_fb .CorrelationScore (_gca ,_fdb ,_ecg ,_aba ,_ega -_be ,_gfa -_ddc ,MaxDiffWidth ,MaxDiffHeight ,_geba );if _eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"d\u0065\u0062\u0075\u0067Co\u0072r\u0065\u006c\u0061\u0074\u0069o\u006e\u0053\u0063\u006f\u0072\u0065"); -};_ddb ,_eeeg =_fb .CorrelationScoreSimple (_gca ,_fdb ,_ecg ,_aba ,_ega -_be ,_gfa -_ddc ,MaxDiffWidth ,MaxDiffHeight ,_geba );if _eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"d\u0065\u0062\u0075\u0067Co\u0072r\u0065\u006c\u0061\u0074\u0069o\u006e\u0053\u0063\u006f\u0072\u0065"); -};_bee =int (_c .Sqrt (_cgg *float64 (_ecg )*float64 (_aba )));_cbbc =int (_c .Sqrt (_ddb *float64 (_ecg )*float64 (_aba )));if (_cgg >=_ebd )!=(_ddb >=_ebd ){return _cb .Errorf (_dg ,"\u0064\u0065\u0062\u0075\u0067\u0020\u0043\u006f\u0072r\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0063\u006f\u0072\u0065\u0020\u006d\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0020-\u0020\u0025d\u0028\u00250\u002e\u0034\u0066\u002c\u0020\u0025\u0076\u0029\u0020\u0076\u0073\u0020\u0025d(\u0025\u0030\u002e\u0034\u0066\u002c\u0020\u0025\u0076)\u0020\u0025\u0030\u002e\u0034\u0066",_bee ,_cgg ,_cgg >=_ebd ,_cbbc ,_ddb ,_ddb >=_ebd ,_cgg -_ddb ); -};if _cgg >=_ebd !=_eba {return _cb .Errorf (_dg ,"\u0064\u0065\u0062\u0075\u0067\u0020\u0043o\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e \u0073\u0063\u006f\u0072\u0065 \u004d\u0069\u0073\u006d\u0061t\u0063\u0068 \u0062\u0065\u0074w\u0065\u0065\u006e\u0020\u0063\u006frr\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0020/\u0020\u0074\u0068\u0072\u0065s\u0068\u006f\u006c\u0064\u002e\u0020\u0043\u006f\u006dpa\u0072\u0069\u0073\u006f\u006e:\u0020\u0025\u0030\u002e\u0034\u0066\u0028\u0025\u0030\u002e\u0034\u0066\u002c\u0020\u0025\u0064\u0029\u0020\u003e\u003d\u0020\u00250\u002e\u0034\u0066\u0028\u0025\u0030\u002e\u0034\u0066\u0029\u0020\u0076\u0073\u0020\u0025\u0076",_cgg ,_cgg *float64 (_ecg )*float64 (_aba ),_bee ,_ebd ,float32 (_ebd )*float32 (_ecg )*float32 (_aba ),_eba ); -};};if _eba {_aab =true ;if _eeeg =_cbce .ClassIDs .Add (_cgac );_eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"\u006f\u0076\u0065\u0072\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006c\u0064");};if _eeeg =_cbce .ComponentPageNumbers .Add (_gagf );_eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"\u006f\u0076\u0065\u0072\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006c\u0064"); -};if _cbce .Settings .KeepClassInstances {if _fgb ,_eeeg =_fbce .GetBitmap (_gec );_eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"\u004b\u0065\u0065\u0070Cl\u0061\u0073\u0073\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0073\u0020\u002d \u0069");};if _cbbf ,_eeeg =_cbce .ClassInstances .GetBitmaps (_cgac ); -_eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"K\u0065\u0065\u0070\u0043\u006c\u0061s\u0073\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065s\u0020\u002d\u0020i\u0043l\u0061\u0073\u0073");};_cbbf .AddBitmap (_fgb );if _cdeg ,_eeeg =_deg .Get (_gec );_eeeg !=nil {return _cb .Wrap (_eeeg ,_dg ,"\u004be\u0065p\u0043\u006c\u0061\u0073\u0073I\u006e\u0073t\u0061\u006e\u0063\u0065\u0073"); -};_cbbf .AddBox (_cdeg );};break ;};};if !_aab {if _gg =_cbce .ClassIDs .Add (_eca );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};if _gg =_cbce .ComponentPageNumbers .Add (_gagf );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0021\u0066\u006f\u0075\u006e\u0064"); -};_cbbf =&_fb .Bitmaps {};if _fgb ,_gg =_fbce .GetBitmap (_gec );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_cbbf .AddBitmap (_fgb );_bac ,_fde :=_fgb .Width ,_fgb .Height ;_egdf :=uint64 (_fde )*uint64 (_bac );_cbce .TemplatesSize .Add (_egdf ,_eca ); -if _cdeg ,_gg =_deg .Get (_gec );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_cbbf .AddBox (_cdeg );_cbce .ClassInstances .AddBitmaps (_cbbf );_cbce .CentroidPointsTemplates .AddPoint (_ega ,_gfa );_cbce .FgTemplates .AddInt (_ecg ); -_cbce .UndilatedTemplates .AddBitmap (_fgb );_bfdg =(_gca .Width -2*JbAddedPixels )*(_gca .Height -2*JbAddedPixels );if _gg =_cbce .TemplateAreas .Add (_bfdg );_gg !=nil {return _cb .Wrap (_gg ,_dg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};};};_cbce .NumberOfClasses =len (_cbce .UndilatedTemplates .Values ); -return nil ;};func (_fd *Classer )addPageComponents (_bfd *_fb .Bitmap ,_gbg *_fb .Boxes ,_bcd *_fb .Bitmaps ,_ge int ,_cd Method )error {const _ee ="\u0043l\u0061\u0073\u0073\u0065r\u002e\u0041\u0064\u0064\u0050a\u0067e\u0043o\u006d\u0070\u006f\u006e\u0065\u006e\u0074s"; -if _bfd ==nil {return _cb .Error (_ee ,"\u006e\u0069\u006c\u0020\u0069\u006e\u0070\u0075\u0074 \u0070\u0061\u0067\u0065");};if _gbg ==nil ||_bcd ==nil ||len (*_gbg )==0{_b .Log .Trace ("\u0041\u0064\u0064P\u0061\u0067\u0065\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0073\u002e\u0020\u004e\u006f\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065n\u0074\u0073\u0020\u0066\u006f\u0075\u006e\u0064",_bfd ); -return nil ;};var _cgc error ;switch _cd {case RankHaus :_cgc =_fd .classifyRankHaus (_gbg ,_bcd ,_ge );case Correlation :_cgc =_fd .classifyCorrelation (_gbg ,_bcd ,_ge );default:_b .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077\u006e\u0020\u0063\u006c\u0061\u0073\u0073\u0069\u0066\u0079\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u003a\u0020'%\u0076\u0027",_cd ); -return _cb .Error (_ee ,"\u0075\u006e\u006bno\u0077\u006e\u0020\u0063\u006c\u0061\u0073\u0073\u0069\u0066\u0079\u0020\u006d\u0065\u0074\u0068\u006f\u0064");};if _cgc !=nil {return _cb .Wrap (_cgc ,_ee ,"");};if _cgc =_fd .getULCorners (_bfd ,_gbg );_cgc !=nil {return _cb .Wrap (_cgc ,_ee ,""); -};_cbb :=len (*_gbg );_fd .BaseIndex +=_cbb ;if _cgc =_fd .ComponentsNumber .Add (_cbb );_cgc !=nil {return _cb .Wrap (_cgc ,_ee ,"");};return nil ;}; \ No newline at end of file +package classer ;import (_b "github.com/unidoc/unipdf/v3/common";_f "github.com/unidoc/unipdf/v3/internal/jbig2/basic";_cf "github.com/unidoc/unipdf/v3/internal/jbig2/bitmap";_e "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_d "image";_ca "math"; +);func (_ggdd *Classer )classifyRankHaus (_dgg *_cf .Boxes ,_eeb *_cf .Bitmaps ,_egc int )error {const _afa ="\u0063\u006ca\u0073\u0073\u0069f\u0079\u0052\u0061\u006e\u006b\u0048\u0061\u0075\u0073";if _dgg ==nil {return _e .Error (_afa ,"\u0062\u006fx\u0061\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};if _eeb ==nil {return _e .Error (_afa ,"\u0070\u0069x\u0061\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064");};_gbd :=len (_eeb .Values );if _gbd ==0{return _e .Error (_afa ,"e\u006dp\u0074\u0079\u0020\u006e\u0065\u0077\u0020\u0063o\u006d\u0070\u006f\u006een\u0074\u0073"); +};_ggf :=_eeb .CountPixels ();_eee :=_ggdd .Settings .SizeHaus ;_ade :=_cf .SelCreateBrick (_eee ,_eee ,_eee /2,_eee /2,_cf .SelHit );_fcgfa :=&_cf .Bitmaps {Values :make ([]*_cf .Bitmap ,_gbd )};_ead :=&_cf .Bitmaps {Values :make ([]*_cf .Bitmap ,_gbd )}; +var (_cbe ,_dgde ,_gef *_cf .Bitmap ;_ace error ;);for _dfc :=0;_dfc < _gbd ;_dfc ++{_cbe ,_ace =_eeb .GetBitmap (_dfc );if _ace !=nil {return _e .Wrap (_ace ,_afa ,"");};_dgde ,_ace =_cbe .AddBorderGeneral (JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,0); +if _ace !=nil {return _e .Wrap (_ace ,_afa ,"");};_gef ,_ace =_cf .Dilate (nil ,_dgde ,_ade );if _ace !=nil {return _e .Wrap (_ace ,_afa ,"");};_fcgfa .Values [_gbd ]=_dgde ;_ead .Values [_gbd ]=_gef ;};_agd ,_ace :=_cf .Centroids (_fcgfa .Values );if _ace !=nil {return _e .Wrap (_ace ,_afa ,""); +};if _ace =_agd .Add (_ggdd .CentroidPoints );_ace !=nil {_b .Log .Trace ("\u004e\u006f\u0020\u0063en\u0074\u0072\u006f\u0069\u0064\u0073\u0020\u0074\u006f\u0020\u0061\u0064\u0064");};if _ggdd .Settings .RankHaus ==1.0{_ace =_ggdd .classifyRankHouseOne (_dgg ,_eeb ,_fcgfa ,_ead ,_agd ,_egc ); +}else {_ace =_ggdd .classifyRankHouseNonOne (_dgg ,_eeb ,_fcgfa ,_ead ,_agd ,_ggf ,_egc );};if _ace !=nil {return _e .Wrap (_ace ,_afa ,"");};return nil ;};const (MaxDiffWidth =2;MaxDiffHeight =2;);func (_fe *Classer )classifyCorrelation (_adc *_cf .Boxes ,_ffad *_cf .Bitmaps ,_fed int )error {const _ffg ="\u0063\u006c\u0061\u0073si\u0066\u0079\u0043\u006f\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e"; +if _adc ==nil {return _e .Error (_ffg ,"\u006e\u0065\u0077\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062o\u0078\u0065\u0073\u0020\u006eo\u0074\u0020f\u006f\u0075\u006e\u0064"); +};if _ffad ==nil {return _e .Error (_ffg ,"\u006e\u0065wC\u006f\u006d\u0070o\u006e\u0065\u006e\u0074s b\u0069tm\u0061\u0070\u0020\u0061\u0072\u0072\u0061y \u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064");};_gbb :=len (_ffad .Values );if _gbb ==0{_b .Log .Debug ("\u0063l\u0061\u0073s\u0069\u0066\u0079C\u006f\u0072\u0072\u0065\u006c\u0061\u0074i\u006f\u006e\u0020\u002d\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0070\u0069\u0078\u0061s\u0020\u0069\u0073\u0020\u0065\u006d\u0070\u0074\u0079"); +return nil ;};var (_dfa ,_gab *_cf .Bitmap ;_efd error ;);_acad :=&_cf .Bitmaps {Values :make ([]*_cf .Bitmap ,_gbb )};for _fga ,_bfg :=range _ffad .Values {_gab ,_efd =_bfg .AddBorderGeneral (JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,JbAddedPixels ,0); +if _efd !=nil {return _e .Wrap (_efd ,_ffg ,"");};_acad .Values [_fga ]=_gab ;};_fcd :=_fe .FgTemplates ;_cba :=_cf .MakePixelSumTab8 ();_fcb :=_cf .MakePixelCentroidTab8 ();_fcg :=make ([]int ,_gbb );_ccg :=make ([][]int ,_gbb );_ece :=_cf .Points (make ([]_cf .Point ,_gbb )); +_babc :=&_ece ;var (_ae ,_degf int ;_dca ,_fee ,_ag int ;_defc ,_efb int ;_ffd byte ;);for _cga ,_cfa :=range _acad .Values {_ccg [_cga ]=make ([]int ,_cfa .Height );_ae =0;_degf =0;_fee =(_cfa .Height -1)*_cfa .RowStride ;_dca =0;for _efb =_cfa .Height -1; +_efb >=0;_efb ,_fee =_efb -1,_fee -_cfa .RowStride {_ccg [_cga ][_efb ]=_dca ;_ag =0;for _defc =0;_defc < _cfa .RowStride ;_defc ++{_ffd =_cfa .Data [_fee +_defc ];_ag +=_cba [_ffd ];_ae +=_fcb [_ffd ]+_defc *8*_cba [_ffd ];};_dca +=_ag ;_degf +=_ag *_efb ; +};_fcg [_cga ]=_dca ;if _dca > 0{(*_babc )[_cga ]=_cf .Point {X :float32 (_ae )/float32 (_dca ),Y :float32 (_degf )/float32 (_dca )};}else {(*_babc )[_cga ]=_cf .Point {X :float32 (_cfa .Width )/float32 (2),Y :float32 (_cfa .Height )/float32 (2)};};};if _efd =_fe .CentroidPoints .Add (_babc ); +_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0063\u0065\u006et\u0072\u006f\u0069\u0064\u0020\u0061\u0064\u0064");};var (_db ,_fcgf ,_bdge int ;_gba float64 ;_bdbd ,_gga ,_gd ,_gdc float32 ;_fd ,_bcc _cf .Point ;_fcc bool ;_dgdf *similarTemplatesFinder ; +_daa int ;_dega *_cf .Bitmap ;_dgb *_d .Rectangle ;_fgc *_cf .Bitmaps ;);for _daa ,_gab =range _acad .Values {_fcgf =_fcg [_daa ];if _bdbd ,_gga ,_efd =_babc .GetGeometry (_daa );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0070t\u0061\u0020\u002d\u0020\u0069"); +};_fcc =false ;_ecc :=len (_fe .UndilatedTemplates .Values );_dgdf =_caeg (_fe ,_gab );for _dcg :=_dgdf .Next ();_dcg > -1;{if _dega ,_efd =_fe .UndilatedTemplates .GetBitmap (_dcg );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0075\u006e\u0069dl\u0061\u0074\u0065\u0064\u005b\u0069\u0063\u006c\u0061\u0073\u0073\u005d\u0020\u003d\u0020\u0062\u006d\u0032"); +};if _bdge ,_efd =_fcd .GetInt (_dcg );_efd !=nil {_b .Log .Trace ("\u0046\u0047\u0020T\u0065\u006d\u0070\u006ca\u0074\u0065\u0020\u005b\u0069\u0063\u006ca\u0073\u0073\u005d\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_efd );};if _gd ,_gdc ,_efd =_fe .CentroidPointsTemplates .GetGeometry (_dcg ); +_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0043\u0065\u006e\u0074\u0072\u006f\u0069\u0064\u0050\u006f\u0069\u006e\u0074T\u0065\u006d\u0070\u006c\u0061\u0074e\u0073\u005b\u0069\u0063\u006c\u0061\u0073\u0073\u005d\u0020\u003d\u0020\u00782\u002c\u0079\u0032\u0020"); +};if _fe .Settings .WeightFactor > 0.0{if _db ,_efd =_fe .TemplateAreas .Get (_dcg );_efd !=nil {_b .Log .Trace ("\u0054\u0065\u006dp\u006c\u0061\u0074\u0065A\u0072\u0065\u0061\u0073\u005b\u0069\u0063l\u0061\u0073\u0073\u005d\u0020\u003d\u0020\u0061\u0072\u0065\u0061\u0020\u0025\u0076",_efd ); +};_gba =_fe .Settings .Thresh +(1.0-_fe .Settings .Thresh )*_fe .Settings .WeightFactor *float64 (_bdge )/float64 (_db );}else {_gba =_fe .Settings .Thresh ;};_fdc ,_ceag :=_cf .CorrelationScoreThresholded (_gab ,_dega ,_fcgf ,_bdge ,_fd .X -_bcc .X ,_fd .Y -_bcc .Y ,MaxDiffWidth ,MaxDiffHeight ,_cba ,_ccg [_daa ],float32 (_gba )); +if _ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"");};if _gc {var (_eef ,_fcgd float64 ;_deb ,_daf int ;);_eef ,_ceag =_cf .CorrelationScore (_gab ,_dega ,_fcgf ,_bdge ,_bdbd -_gd ,_gga -_gdc ,MaxDiffWidth ,MaxDiffHeight ,_cba );if _ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"d\u0065\u0062\u0075\u0067Co\u0072r\u0065\u006c\u0061\u0074\u0069o\u006e\u0053\u0063\u006f\u0072\u0065"); +};_fcgd ,_ceag =_cf .CorrelationScoreSimple (_gab ,_dega ,_fcgf ,_bdge ,_bdbd -_gd ,_gga -_gdc ,MaxDiffWidth ,MaxDiffHeight ,_cba );if _ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"d\u0065\u0062\u0075\u0067Co\u0072r\u0065\u006c\u0061\u0074\u0069o\u006e\u0053\u0063\u006f\u0072\u0065"); +};_deb =int (_ca .Sqrt (_eef *float64 (_fcgf )*float64 (_bdge )));_daf =int (_ca .Sqrt (_fcgd *float64 (_fcgf )*float64 (_bdge )));if (_eef >=_gba )!=(_fcgd >=_gba ){return _e .Errorf (_ffg ,"\u0064\u0065\u0062\u0075\u0067\u0020\u0043\u006f\u0072r\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0063\u006f\u0072\u0065\u0020\u006d\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0020-\u0020\u0025d\u0028\u00250\u002e\u0034\u0066\u002c\u0020\u0025\u0076\u0029\u0020\u0076\u0073\u0020\u0025d(\u0025\u0030\u002e\u0034\u0066\u002c\u0020\u0025\u0076)\u0020\u0025\u0030\u002e\u0034\u0066",_deb ,_eef ,_eef >=_gba ,_daf ,_fcgd ,_fcgd >=_gba ,_eef -_fcgd ); +};if _eef >=_gba !=_fdc {return _e .Errorf (_ffg ,"\u0064\u0065\u0062\u0075\u0067\u0020\u0043o\u0072\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e \u0073\u0063\u006f\u0072\u0065 \u004d\u0069\u0073\u006d\u0061t\u0063\u0068 \u0062\u0065\u0074w\u0065\u0065\u006e\u0020\u0063\u006frr\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0020/\u0020\u0074\u0068\u0072\u0065s\u0068\u006f\u006c\u0064\u002e\u0020\u0043\u006f\u006dpa\u0072\u0069\u0073\u006f\u006e:\u0020\u0025\u0030\u002e\u0034\u0066\u0028\u0025\u0030\u002e\u0034\u0066\u002c\u0020\u0025\u0064\u0029\u0020\u003e\u003d\u0020\u00250\u002e\u0034\u0066\u0028\u0025\u0030\u002e\u0034\u0066\u0029\u0020\u0076\u0073\u0020\u0025\u0076",_eef ,_eef *float64 (_fcgf )*float64 (_bdge ),_deb ,_gba ,float32 (_gba )*float32 (_fcgf )*float32 (_bdge ),_fdc ); +};};if _fdc {_fcc =true ;if _ceag =_fe .ClassIDs .Add (_dcg );_ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"\u006f\u0076\u0065\u0072\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006c\u0064");};if _ceag =_fe .ComponentPageNumbers .Add (_fed );_ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"\u006f\u0076\u0065\u0072\u0054\u0068\u0072\u0065\u0073\u0068\u006f\u006c\u0064"); +};if _fe .Settings .KeepClassInstances {if _dfa ,_ceag =_ffad .GetBitmap (_daa );_ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"\u004b\u0065\u0065\u0070Cl\u0061\u0073\u0073\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0073\u0020\u002d \u0069");};if _fgc ,_ceag =_fe .ClassInstances .GetBitmaps (_dcg ); +_ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"K\u0065\u0065\u0070\u0043\u006c\u0061s\u0073\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065s\u0020\u002d\u0020i\u0043l\u0061\u0073\u0073");};_fgc .AddBitmap (_dfa );if _dgb ,_ceag =_adc .Get (_daa );_ceag !=nil {return _e .Wrap (_ceag ,_ffg ,"\u004be\u0065p\u0043\u006c\u0061\u0073\u0073I\u006e\u0073t\u0061\u006e\u0063\u0065\u0073"); +};_fgc .AddBox (_dgb );};break ;};};if !_fcc {if _efd =_fe .ClassIDs .Add (_ecc );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};if _efd =_fe .ComponentPageNumbers .Add (_fed );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0021\u0066\u006f\u0075\u006e\u0064"); +};_fgc =&_cf .Bitmaps {};if _dfa ,_efd =_ffad .GetBitmap (_daa );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_fgc .AddBitmap (_dfa );_aadd ,_dege :=_dfa .Width ,_dfa .Height ;_be :=uint64 (_dege )*uint64 (_aadd ); +_fe .TemplatesSize .Add (_be ,_ecc );if _dgb ,_efd =_adc .Get (_daa );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_fgc .AddBox (_dgb );_fe .ClassInstances .AddBitmaps (_fgc );_fe .CentroidPointsTemplates .AddPoint (_bdbd ,_gga ); +_fe .FgTemplates .AddInt (_fcgf );_fe .UndilatedTemplates .AddBitmap (_dfa );_db =(_gab .Width -2*JbAddedPixels )*(_gab .Height -2*JbAddedPixels );if _efd =_fe .TemplateAreas .Add (_db );_efd !=nil {return _e .Wrap (_efd ,_ffg ,"\u0021\u0066\u006f\u0075\u006e\u0064"); +};};};_fe .NumberOfClasses =len (_fe .UndilatedTemplates .Values );return nil ;};func _gec (_bc *_cf .Bitmap ,_cb ,_eab ,_ged ,_cdbe int ,_ffc *_cf .Bitmap )(_ecg _d .Point ,_gb error ){const _ebg ="\u0066i\u006e\u0061\u006c\u0041l\u0069\u0067\u006e\u006d\u0065n\u0074P\u006fs\u0069\u0074\u0069\u006f\u006e\u0069\u006eg"; +if _bc ==nil {return _ecg ,_e .Error (_ebg ,"\u0073\u006f\u0075\u0072ce\u0020\u006e\u006f\u0074\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064");};if _ffc ==nil {return _ecg ,_e .Error (_ebg ,"t\u0065\u006d\u0070\u006cat\u0065 \u006e\u006f\u0074\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0064"); +};_ce ,_eea :=_ffc .Width ,_ffc .Height ;_dc ,_ebb :=_cb -_ged -JbAddedPixels ,_eab -_cdbe -JbAddedPixels ;_b .Log .Trace ("\u0078\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0079\u003a\u0020\u0027\u0025\u0064'\u002c\u0020\u0077\u003a\u0020\u0027\u0025\u0064\u0027\u002c\u0020\u0068\u003a \u0027\u0025\u0064\u0027\u002c\u0020\u0062\u0078\u003a\u0020\u0027\u0025d'\u002c\u0020\u0062\u0079\u003a\u0020\u0027\u0025\u0064\u0027",_cb ,_eab ,_ce ,_eea ,_dc ,_ebb ); +_acg ,_gb :=_cf .Rect (_dc ,_ebb ,_ce ,_eea );if _gb !=nil {return _ecg ,_e .Wrap (_gb ,_ebg ,"");};_faa ,_ ,_gb :=_bc .ClipRectangle (_acg );if _gb !=nil {_b .Log .Error ("\u0043a\u006e\u0027\u0074\u0020\u0063\u006c\u0069\u0070\u0020\u0072\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u003a\u0020\u0025\u0076",_acg ); +return _ecg ,_e .Wrap (_gb ,_ebg ,"");};_dd :=_cf .New (_faa .Width ,_faa .Height );_cfd :=_ca .MaxInt32 ;var _ffb ,_ggd ,_bbf ,_cea ,_cgf int ;for _ffb =-1;_ffb <=1;_ffb ++{for _ggd =-1;_ggd <=1;_ggd ++{if _ ,_gb =_cf .Copy (_dd ,_faa );_gb !=nil {return _ecg ,_e .Wrap (_gb ,_ebg ,""); +};if _gb =_dd .RasterOperation (_ggd ,_ffb ,_ce ,_eea ,_cf .PixSrcXorDst ,_ffc ,0,0);_gb !=nil {return _ecg ,_e .Wrap (_gb ,_ebg ,"");};_bbf =_dd .CountPixels ();if _bbf < _cfd {_cea =_ggd ;_cgf =_ffb ;_cfd =_bbf ;};};};_ecg .X =_cea ;_ecg .Y =_cgf ;return _ecg ,nil ; +};const (MaxConnCompWidth =350;MaxCharCompWidth =350;MaxWordCompWidth =1000;MaxCompHeight =120;);func DefaultSettings ()Settings {_baa :=&Settings {};_baa .SetDefault ();return *_baa };func (_ffa *Classer )getULCorners (_aca *_cf .Bitmap ,_ec *_cf .Boxes )error {const _ea ="\u0067\u0065\u0074U\u004c\u0043\u006f\u0072\u006e\u0065\u0072\u0073"; +if _aca ==nil {return _e .Error (_ea ,"\u006e\u0069l\u0020\u0069\u006da\u0067\u0065\u0020\u0062\u0069\u0074\u006d\u0061\u0070");};if _ec ==nil {return _e .Error (_ea ,"\u006e\u0069\u006c\u0020\u0062\u006f\u0075\u006e\u0064\u0073");};if _ffa .PtaUL ==nil {_ffa .PtaUL =&_cf .Points {}; +};_ef :=len (*_ec );var (_cdb ,_cc ,_cag ,_eaf int ;_bdb ,_bdg ,_fc ,_ga float32 ;_eg error ;_def *_d .Rectangle ;_ccd *_cf .Bitmap ;_af _d .Point ;);for _ad :=0;_ad < _ef ;_ad ++{_cdb =_ffa .BaseIndex +_ad ;if _bdb ,_bdg ,_eg =_ffa .CentroidPoints .GetGeometry (_cdb ); +_eg !=nil {return _e .Wrap (_eg ,_ea ,"\u0043\u0065\u006e\u0074\u0072\u006f\u0069\u0064\u0050o\u0069\u006e\u0074\u0073");};if _cc ,_eg =_ffa .ClassIDs .Get (_cdb );_eg !=nil {return _e .Wrap (_eg ,_ea ,"\u0043\u006c\u0061s\u0073\u0049\u0044\u0073\u002e\u0047\u0065\u0074"); +};if _fc ,_ga ,_eg =_ffa .CentroidPointsTemplates .GetGeometry (_cc );_eg !=nil {return _e .Wrap (_eg ,_ea ,"\u0043\u0065\u006etr\u006f\u0069\u0064\u0050\u006f\u0069\u006e\u0074\u0073\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073");};_ge :=_fc -_bdb ; +_cg :=_ga -_bdg ;if _ge >=0{_cag =int (_ge +0.5);}else {_cag =int (_ge -0.5);};if _cg >=0{_eaf =int (_cg +0.5);}else {_eaf =int (_cg -0.5);};if _def ,_eg =_ec .Get (_ad );_eg !=nil {return _e .Wrap (_eg ,_ea ,"");};_fab ,_cge :=_def .Min .X ,_def .Min .Y ; +_ccd ,_eg =_ffa .UndilatedTemplates .GetBitmap (_cc );if _eg !=nil {return _e .Wrap (_eg ,_ea ,"\u0055\u006e\u0064\u0069\u006c\u0061\u0074\u0065\u0064\u0054e\u006d\u0070\u006c\u0061\u0074\u0065\u0073.\u0047\u0065\u0074\u0028\u0069\u0043\u006c\u0061\u0073\u0073\u0029"); +};_af ,_eg =_gec (_aca ,_fab ,_cge ,_cag ,_eaf ,_ccd );if _eg !=nil {return _e .Wrap (_eg ,_ea ,"");};_ffa .PtaUL .AddPoint (float32 (_fab -_cag +_af .X ),float32 (_cge -_eaf +_af .Y ));};return nil ;};type Method int ;func (_ac *Classer )ComputeLLCorners ()(_g error ){const _bf ="\u0043l\u0061\u0073\u0073\u0065\u0072\u002e\u0043\u006f\u006d\u0070\u0075t\u0065\u004c\u004c\u0043\u006f\u0072\u006e\u0065\u0072\u0073"; +if _ac .PtaUL ==nil {return _e .Error (_bf ,"\u0055\u004c\u0020\u0043or\u006e\u0065\u0072\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006ee\u0064");};_ffe :=len (*_ac .PtaUL );_ac .PtaLL =&_cf .Points {};var (_eb ,_bfb float32 ;_deg ,_cd int ; +_dg *_cf .Bitmap ;);for _fb :=0;_fb < _ffe ;_fb ++{_eb ,_bfb ,_g =_ac .PtaUL .GetGeometry (_fb );if _g !=nil {_b .Log .Debug ("\u0047e\u0074\u0074\u0069\u006e\u0067\u0020\u0050\u0074\u0061\u0055\u004c \u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_g ); +return _e .Wrap (_g ,_bf ,"\u0050\u0074\u0061\u0055\u004c\u0020\u0047\u0065\u006fm\u0065\u0074\u0072\u0079");};_deg ,_g =_ac .ClassIDs .Get (_fb );if _g !=nil {_b .Log .Debug ("\u0047\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0043\u006c\u0061s\u0073\u0049\u0044\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_g ); +return _e .Wrap (_g ,_bf ,"\u0043l\u0061\u0073\u0073\u0049\u0044");};_dg ,_g =_ac .UndilatedTemplates .GetBitmap (_deg );if _g !=nil {_b .Log .Debug ("\u0047\u0065t\u0074\u0069\u006e\u0067 \u0055\u006ed\u0069\u006c\u0061\u0074\u0065\u0064\u0054\u0065m\u0070\u006c\u0061\u0074\u0065\u0073\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_g ); +return _e .Wrap (_g ,_bf ,"\u0055\u006e\u0064\u0069la\u0074\u0065\u0064\u0020\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073");};_cd =_dg .Height ;_ac .PtaLL .AddPoint (_eb ,_bfb +float32 (_cd ));};return nil ;};func (_df *Classer )AddPage (inputPage *_cf .Bitmap ,pageNumber int ,method Method )(_a error ){const _cac ="\u0043l\u0061s\u0073\u0065\u0072\u002e\u0041\u0064\u0064\u0050\u0061\u0067\u0065"; +_df .Widths [pageNumber ]=inputPage .Width ;_df .Heights [pageNumber ]=inputPage .Height ;if _a =_df .verifyMethod (method );_a !=nil {return _e .Wrap (_a ,_cac ,"");};_de ,_ff ,_a :=inputPage .GetComponents (_df .Settings .Components ,_df .Settings .MaxCompWidth ,_df .Settings .MaxCompHeight ); +if _a !=nil {return _e .Wrap (_a ,_cac ,"");};_b .Log .Debug ("\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074s\u003a\u0020\u0025\u0076",_de );if _a =_df .addPageComponents (inputPage ,_ff ,_de ,pageNumber ,method );_a !=nil {return _e .Wrap (_a ,_cac ,""); +};return nil ;};func (_degc *Settings )SetDefault (){if _degc .MaxCompWidth ==0{switch _degc .Components {case _cf .ComponentConn :_degc .MaxCompWidth =MaxConnCompWidth ;case _cf .ComponentCharacters :_degc .MaxCompWidth =MaxCharCompWidth ;case _cf .ComponentWords :_degc .MaxCompWidth =MaxWordCompWidth ; +};};if _degc .MaxCompHeight ==0{_degc .MaxCompHeight =MaxCompHeight ;};if _degc .Thresh ==0.0{_degc .Thresh =0.9;};if _degc .WeightFactor ==0.0{_degc .WeightFactor =0.75;};if _degc .RankHaus ==0.0{_degc .RankHaus =0.97;};if _degc .SizeHaus ==0{_degc .SizeHaus =2; +};};func (_cde *Classer )classifyRankHouseOne (_ced *_cf .Boxes ,_eccc ,_ed ,_bbb *_cf .Bitmaps ,_gecc *_cf .Points ,_aadg int )(_dgbe error ){const _gcg ="\u0043\u006c\u0061\u0073s\u0065\u0072\u002e\u0063\u006c\u0061\u0073\u0073\u0069\u0066y\u0052a\u006e\u006b\u0048\u006f\u0075\u0073\u0065O\u006e\u0065"; +var (_ega ,_dbf ,_adb ,_bg float32 ;_adcg int ;_ecf ,_bgd ,_gge ,_fedb ,_cda *_cf .Bitmap ;_eag ,_bdgg bool ;);for _gf :=0;_gf < len (_eccc .Values );_gf ++{_bgd =_ed .Values [_gf ];_gge =_bbb .Values [_gf ];_ega ,_dbf ,_dgbe =_gecc .GetGeometry (_gf ); +if _dgbe !=nil {return _e .Wrapf (_dgbe ,_gcg ,"\u0066\u0069\u0072\u0073\u0074\u0020\u0067\u0065\u006fm\u0065\u0074\u0072\u0079");};_gcd :=len (_cde .UndilatedTemplates .Values );_eag =false ;_ebgd :=_caeg (_cde ,_bgd );for _adcg =_ebgd .Next ();_adcg > -1; +{_fedb ,_dgbe =_cde .UndilatedTemplates .GetBitmap (_adcg );if _dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"\u0062\u006d\u0033");};_cda ,_dgbe =_cde .DilatedTemplates .GetBitmap (_adcg );if _dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"\u0062\u006d\u0034"); +};_adb ,_bg ,_dgbe =_cde .CentroidPointsTemplates .GetGeometry (_adcg );if _dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"\u0043\u0065\u006e\u0074\u0072\u006f\u0069\u0064\u0054\u0065\u006d\u0070l\u0061\u0074\u0065\u0073");};_bdgg ,_dgbe =_cf .HausTest (_bgd ,_gge ,_fedb ,_cda ,_ega -_adb ,_dbf -_bg ,MaxDiffWidth ,MaxDiffHeight ); +if _dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"");};if _bdgg {_eag =true ;if _dgbe =_cde .ClassIDs .Add (_adcg );_dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"");};if _dgbe =_cde .ComponentPageNumbers .Add (_aadg );_dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,""); +};if _cde .Settings .KeepClassInstances {_ab ,_gac :=_cde .ClassInstances .GetBitmaps (_adcg );if _gac !=nil {return _e .Wrap (_gac ,_gcg ,"\u004be\u0065\u0070\u0050\u0069\u0078\u0061a");};_ecf ,_gac =_eccc .GetBitmap (_gf );if _gac !=nil {return _e .Wrap (_gac ,_gcg ,"\u004be\u0065\u0070\u0050\u0069\u0078\u0061a"); +};_ab .AddBitmap (_ecf );_eca ,_gac :=_ced .Get (_gf );if _gac !=nil {return _e .Wrap (_gac ,_gcg ,"\u004be\u0065\u0070\u0050\u0069\u0078\u0061a");};_ab .AddBox (_eca );};break ;};};if !_eag {if _dgbe =_cde .ClassIDs .Add (_gcd );_dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,""); +};if _dgbe =_cde .ComponentPageNumbers .Add (_aadg );_dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"");};_gaf :=&_cf .Bitmaps {};_ecf ,_dgbe =_eccc .GetBitmap (_gf );if _dgbe !=nil {return _e .Wrap (_dgbe ,_gcg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_gaf .Values =append (_gaf .Values ,_ecf ); +_caca ,_cbb :=_ecf .Width ,_ecf .Height ;_cde .TemplatesSize .Add (uint64 (_cbb )*uint64 (_caca ),_gcd );_eadc ,_cef :=_ced .Get (_gf );if _cef !=nil {return _e .Wrap (_cef ,_gcg ,"\u0021\u0066\u006f\u0075\u006e\u0064");};_gaf .AddBox (_eadc );_cde .ClassInstances .AddBitmaps (_gaf ); +_cde .CentroidPointsTemplates .AddPoint (_ega ,_dbf );_cde .UndilatedTemplates .AddBitmap (_bgd );_cde .DilatedTemplates .AddBitmap (_gge );};};return nil ;};var _gc bool ;func (_bb *Classer )verifyMethod (_ba Method )error {if _ba !=RankHaus &&_ba !=Correlation {return _e .Error ("\u0076\u0065\u0072i\u0066\u0079\u004d\u0065\u0074\u0068\u006f\u0064","\u0069\u006e\u0076\u0061li\u0064\u0020\u0063\u006c\u0061\u0073\u0073\u0065\u0072\u0020\u006d\u0065\u0074\u0068o\u0064"); +};return nil ;};func (_gg *Classer )addPageComponents (_fge *_cf .Bitmap ,_aa *_cf .Boxes ,_fa *_cf .Bitmaps ,_da int ,_ee Method )error {const _aaf ="\u0043l\u0061\u0073\u0073\u0065r\u002e\u0041\u0064\u0064\u0050a\u0067e\u0043o\u006d\u0070\u006f\u006e\u0065\u006e\u0074s"; +if _fge ==nil {return _e .Error (_aaf ,"\u006e\u0069\u006c\u0020\u0069\u006e\u0070\u0075\u0074 \u0070\u0061\u0067\u0065");};if _aa ==nil ||_fa ==nil ||len (*_aa )==0{_b .Log .Trace ("\u0041\u0064\u0064P\u0061\u0067\u0065\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0073\u002e\u0020\u004e\u006f\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065n\u0074\u0073\u0020\u0066\u006f\u0075\u006e\u0064",_fge ); +return nil ;};var _aad error ;switch _ee {case RankHaus :_aad =_gg .classifyRankHaus (_aa ,_fa ,_da );case Correlation :_aad =_gg .classifyCorrelation (_aa ,_fa ,_da );default:_b .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077\u006e\u0020\u0063\u006c\u0061\u0073\u0073\u0069\u0066\u0079\u0020\u006d\u0065\u0074\u0068\u006f\u0064\u003a\u0020'%\u0076\u0027",_ee ); +return _e .Error (_aaf ,"\u0075\u006e\u006bno\u0077\u006e\u0020\u0063\u006c\u0061\u0073\u0073\u0069\u0066\u0079\u0020\u006d\u0065\u0074\u0068\u006f\u0064");};if _aad !=nil {return _e .Wrap (_aad ,_aaf ,"");};if _aad =_gg .getULCorners (_fge ,_aa );_aad !=nil {return _e .Wrap (_aad ,_aaf ,""); +};_dfb :=len (*_aa );_gg .BaseIndex +=_dfb ;if _aad =_gg .ComponentsNumber .Add (_dfb );_aad !=nil {return _e .Wrap (_aad ,_aaf ,"");};return nil ;};func (_eefg Settings )Validate ()error {const _edf ="\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0073\u002e\u0056\u0061\u006ci\u0064\u0061\u0074\u0065"; +if _eefg .Thresh < 0.4||_eefg .Thresh > 0.98{return _e .Error (_edf ,"\u006a\u0062i\u0067\u0032\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0074\u0068\u0072\u0065\u0073\u0068\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u005b\u0030\u002e\u0034\u0020\u002d\u0020\u0030\u002e\u0039\u0038\u005d"); +};if _eefg .WeightFactor < 0.0||_eefg .WeightFactor > 1.0{return _e .Error (_edf ,"\u006a\u0062i\u0067\u0032\u0020\u0065\u006ec\u006f\u0064\u0065\u0072\u0020w\u0065\u0069\u0067\u0068\u0074\u0020\u0066\u0061\u0063\u0074\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u005b\u0030\u002e\u0030\u0020\u002d\u0020\u0031\u002e\u0030\u005d"); +};if _eefg .RankHaus < 0.5||_eefg .RankHaus > 1.0{return _e .Error (_edf ,"\u006a\u0062\u0069\u0067\u0032\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0072a\u006e\u006b\u0020\u0068\u0061\u0075\u0073\u0020\u0076\u0061\u006c\u0075\u0065 \u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065 [\u0030\u002e\u0035\u0020\u002d\u0020\u0031\u002e\u0030\u005d"); +};if _eefg .SizeHaus < 1||_eefg .SizeHaus > 10{return _e .Error (_edf ,"\u006a\u0062\u0069\u0067\u0032 \u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0073\u0069\u007a\u0065\u0020h\u0061\u0075\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u005b\u0031\u0020\u002d\u0020\u0031\u0030]"); +};switch _eefg .Components {case _cf .ComponentConn ,_cf .ComponentCharacters ,_cf .ComponentWords :default:return _e .Error (_edf ,"\u0069n\u0076\u0061\u006c\u0069d\u0020\u0063\u006c\u0061\u0073s\u0065r\u0020c\u006f\u006d\u0070\u006f\u006e\u0065\u006et"); +};return nil ;};type Classer struct{BaseIndex int ;Settings Settings ;ComponentsNumber *_f .IntSlice ;TemplateAreas *_f .IntSlice ;Widths map[int ]int ;Heights map[int ]int ;NumberOfClasses int ;ClassInstances *_cf .BitmapsArray ;UndilatedTemplates *_cf .Bitmaps ; +DilatedTemplates *_cf .Bitmaps ;TemplatesSize _f .IntsMap ;FgTemplates *_f .NumSlice ;CentroidPoints *_cf .Points ;CentroidPointsTemplates *_cf .Points ;ClassIDs *_f .IntSlice ;ComponentPageNumbers *_f .IntSlice ;PtaUL *_cf .Points ;PtaLL *_cf .Points ; +};func (_aae *Classer )classifyRankHouseNonOne (_ggc *_cf .Boxes ,_dee ,_gdf ,_eagd *_cf .Bitmaps ,_faaa *_cf .Points ,_bfd *_f .NumSlice ,_aafc int )(_gbab error ){const _gff ="\u0043\u006c\u0061\u0073s\u0065\u0072\u002e\u0063\u006c\u0061\u0073\u0073\u0069\u0066y\u0052a\u006e\u006b\u0048\u006f\u0075\u0073\u0065O\u006e\u0065"; +var (_aaa ,_cacag ,_gcc ,_gbba float32 ;_agf ,_cae ,_acf int ;_cgd ,_afd ,_gfd ,_egce ,_fbe *_cf .Bitmap ;_fbc ,_fabb bool ;);_dggd :=_cf .MakePixelSumTab8 ();for _dga :=0;_dga < len (_dee .Values );_dga ++{if _afd ,_gbab =_gdf .GetBitmap (_dga );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"b\u006d\u0073\u0031\u002e\u0047\u0065\u0074\u0028\u0069\u0029"); +};if _agf ,_gbab =_bfd .GetInt (_dga );_gbab !=nil {_b .Log .Trace ("\u0047\u0065t\u0074\u0069\u006e\u0067 \u0046\u0047T\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u0073 \u0061\u0074\u003a\u0020\u0025\u0064\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_dga ,_gbab ); +};if _gfd ,_gbab =_eagd .GetBitmap (_dga );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"b\u006d\u0073\u0032\u002e\u0047\u0065\u0074\u0028\u0069\u0029");};if _aaa ,_cacag ,_gbab =_faaa .GetGeometry (_dga );_gbab !=nil {return _e .Wrapf (_gbab ,_gff ,"\u0070t\u0061[\u0069\u005d\u002e\u0047\u0065\u006f\u006d\u0065\u0074\u0072\u0079"); +};_aab :=len (_aae .UndilatedTemplates .Values );_fbc =false ;_dggf :=_caeg (_aae ,_afd );for _acf =_dggf .Next ();_acf > -1;{if _egce ,_gbab =_aae .UndilatedTemplates .GetBitmap (_acf );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"\u0070\u0069\u0078\u0061\u0074\u002e\u005b\u0069\u0043l\u0061\u0073\u0073\u005d"); +};if _cae ,_gbab =_aae .FgTemplates .GetInt (_acf );_gbab !=nil {_b .Log .Trace ("\u0047\u0065\u0074\u0074\u0069\u006eg\u0020\u0046\u0047\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u005b\u0025d\u005d\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_acf ,_gbab ); +};if _fbe ,_gbab =_aae .DilatedTemplates .GetBitmap (_acf );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"\u0070\u0069\u0078\u0061\u0074\u0064\u005b\u0069\u0043l\u0061\u0073\u0073\u005d");};if _gcc ,_gbba ,_gbab =_aae .CentroidPointsTemplates .GetGeometry (_acf ); +_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"\u0043\u0065\u006et\u0072\u006f\u0069\u0064P\u006f\u0069\u006e\u0074\u0073\u0054\u0065m\u0070\u006c\u0061\u0074\u0065\u0073\u005b\u0069\u0043\u006c\u0061\u0073\u0073\u005d");};_fabb ,_gbab =_cf .RankHausTest (_afd ,_gfd ,_egce ,_fbe ,_aaa -_gcc ,_cacag -_gbba ,MaxDiffWidth ,MaxDiffHeight ,_agf ,_cae ,float32 (_aae .Settings .RankHaus ),_dggd ); +if _gbab !=nil {return _e .Wrap (_gbab ,_gff ,"");};if _fabb {_fbc =true ;if _gbab =_aae .ClassIDs .Add (_acf );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"");};if _gbab =_aae .ComponentPageNumbers .Add (_aafc );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,""); +};if _aae .Settings .KeepClassInstances {_bca ,_egceg :=_aae .ClassInstances .GetBitmaps (_acf );if _egceg !=nil {return _e .Wrap (_egceg ,_gff ,"\u0063\u002e\u0050\u0069\u0078\u0061\u0061\u002e\u0047\u0065\u0074B\u0069\u0074\u006d\u0061\u0070\u0073\u0028\u0069\u0043\u006ca\u0073\u0073\u0029"); +};if _cgd ,_egceg =_dee .GetBitmap (_dga );_egceg !=nil {return _e .Wrap (_egceg ,_gff ,"\u0070i\u0078\u0061\u005b\u0069\u005d");};_bca .Values =append (_bca .Values ,_cgd );_cdee ,_egceg :=_ggc .Get (_dga );if _egceg !=nil {return _e .Wrap (_egceg ,_gff ,"b\u006f\u0078\u0061\u002e\u0047\u0065\u0074\u0028\u0069\u0029"); +};_bca .Boxes =append (_bca .Boxes ,_cdee );};break ;};};if !_fbc {if _gbab =_aae .ClassIDs .Add (_aab );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"\u0021\u0066\u006f\u0075\u006e\u0064");};if _gbab =_aae .ComponentPageNumbers .Add (_aafc );_gbab !=nil {return _e .Wrap (_gbab ,_gff ,"\u0021\u0066\u006f\u0075\u006e\u0064"); +};_cgc :=&_cf .Bitmaps {};_cgd =_dee .Values [_dga ];_cgc .AddBitmap (_cgd );_eabf ,_fca :=_cgd .Width ,_cgd .Height ;_aae .TemplatesSize .Add (uint64 (_eabf )*uint64 (_fca ),_aab );_babg ,_fgeb :=_ggc .Get (_dga );if _fgeb !=nil {return _e .Wrap (_fgeb ,_gff ,"\u0021\u0066\u006f\u0075\u006e\u0064"); +};_cgc .AddBox (_babg );_aae .ClassInstances .AddBitmaps (_cgc );_aae .CentroidPointsTemplates .AddPoint (_aaa ,_cacag );_aae .UndilatedTemplates .AddBitmap (_afd );_aae .DilatedTemplates .AddBitmap (_gfd );_aae .FgTemplates .AddInt (_agf );};};_aae .NumberOfClasses =len (_aae .UndilatedTemplates .Values ); +return nil ;};func Init (settings Settings )(*Classer ,error ){const _cad ="\u0063\u006c\u0061s\u0073\u0065\u0072\u002e\u0049\u006e\u0069\u0074";_bd :=&Classer {Settings :settings ,Widths :map[int ]int {},Heights :map[int ]int {},TemplatesSize :_f .IntsMap {},TemplateAreas :&_f .IntSlice {},ComponentPageNumbers :&_f .IntSlice {},ClassIDs :&_f .IntSlice {},ComponentsNumber :&_f .IntSlice {},CentroidPoints :&_cf .Points {},CentroidPointsTemplates :&_cf .Points {},UndilatedTemplates :&_cf .Bitmaps {},DilatedTemplates :&_cf .Bitmaps {},ClassInstances :&_cf .BitmapsArray {},FgTemplates :&_f .NumSlice {}}; +if _fg :=_bd .Settings .Validate ();_fg !=nil {return nil ,_e .Wrap (_fg ,_cad ,"");};return _bd ,nil ;};func _caeg (_dea *Classer ,_fedc *_cf .Bitmap )*similarTemplatesFinder {return &similarTemplatesFinder {Width :_fedc .Width ,Height :_fedc .Height ,Classer :_dea }; +};const (RankHaus Method =iota ;Correlation ;);type similarTemplatesFinder struct{Classer *Classer ;Width int ;Height int ;Index int ;CurrentNumbers []int ;N int ;};const JbAddedPixels =6;var TwoByTwoWalk =[]int {0,0,0,1,-1,0,0,-1,1,0,-1,1,1,1,-1,-1,1,-1,0,-2,2,0,0,2,-2,0,-1,-2,1,-2,2,-1,2,1,1,2,-1,2,-2,1,-2,-1,-2,-2,2,-2,2,2,-2,2}; +type Settings struct{MaxCompWidth int ;MaxCompHeight int ;SizeHaus int ;RankHaus float64 ;Thresh float64 ;WeightFactor float64 ;KeepClassInstances bool ;Components _cf .Component ;Method Method ;};func (_eeab *similarTemplatesFinder )Next ()int {var (_bccf ,_eba ,_ffbg ,_dec int ; +_dfcd bool ;_acd *_cf .Bitmap ;_degce error ;);for {if _eeab .Index >=25{return -1;};_eba =_eeab .Width +TwoByTwoWalk [2*_eeab .Index ];_bccf =_eeab .Height +TwoByTwoWalk [2*_eeab .Index +1];if _bccf < 1||_eba < 1{_eeab .Index ++;continue ;};if len (_eeab .CurrentNumbers )==0{_eeab .CurrentNumbers ,_dfcd =_eeab .Classer .TemplatesSize .GetSlice (uint64 (_eba )*uint64 (_bccf )); +if !_dfcd {_eeab .Index ++;continue ;};_eeab .N =0;};_ffbg =len (_eeab .CurrentNumbers );for ;_eeab .N < _ffbg ;_eeab .N ++{_dec =_eeab .CurrentNumbers [_eeab .N ];_acd ,_degce =_eeab .Classer .DilatedTemplates .GetBitmap (_dec );if _degce !=nil {_b .Log .Debug ("\u0046\u0069\u006e\u0064\u004e\u0065\u0078\u0074\u0054\u0065\u006d\u0070\u006c\u0061\u0074\u0065\u003a\u0020\u0074\u0065\u006d\u0070\u006c\u0061t\u0065\u0020\u006e\u006f\u0074 \u0066\u006fu\u006e\u0064\u003a\u0020"); +return 0;};if _acd .Width -2*JbAddedPixels ==_eba &&_acd .Height -2*JbAddedPixels ==_bccf {return _dec ;};};_eeab .Index ++;_eeab .CurrentNumbers =nil ;};}; \ No newline at end of file diff --git a/internal/jbig2/errors/errors.go b/internal/jbig2/errors/errors.go index 71811c147..8d0463be3 100644 --- a/internal/jbig2/errors/errors.go +++ b/internal/jbig2/errors/errors.go @@ -9,8 +9,8 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package errors ;import (_g "fmt";_d "golang.org/x/xerrors";);func Error (processName ,message string )error {return _dc (message ,processName )};func (_fg *processError )Unwrap ()error {return _fg ._aa };func Errorf (processName ,message string ,arguments ...interface{})error {return _dc (_g .Sprintf (message ,arguments ...),processName ); -};func (_bf *processError )Error ()string {var _dd string ;if _bf ._f !=""{_dd =_bf ._f ;};_dd +="\u0050r\u006f\u0063\u0065\u0073\u0073\u003a "+_bf ._a ;if _bf ._bg !=""{_dd +="\u0020\u004d\u0065\u0073\u0073\u0061\u0067\u0065\u003a\u0020"+_bf ._bg ;};if _bf ._aa !=nil {_dd +="\u002e\u0020"+_bf ._aa .Error (); -};return _dd ;};var _ _d .Wrapper =(*processError )(nil );func _dc (_ad ,_bd string )*processError {return &processError {_f :"\u005b\u0055\u006e\u0069\u0050\u0044\u0046\u005d",_bg :_ad ,_a :_bd };};type processError struct{_f string ;_a string ;_bg string ; -_aa error ;};func Wrap (err error ,processName ,message string )error {if _fd ,_ge :=err .(*processError );_ge {_fd ._f ="";};_bfb :=_dc (message ,processName );_bfb ._aa =err ;return _bfb ;};func Wrapf (err error ,processName ,message string ,arguments ...interface{})error {if _dg ,_e :=err .(*processError ); -_e {_dg ._f ="";};_ea :=_dc (_g .Sprintf (message ,arguments ...),processName );_ea ._aa =err ;return _ea ;}; \ No newline at end of file +package errors ;import (_c "fmt";_fd "golang.org/x/xerrors";);func _db (_ed ,_be string )*processError {return &processError {_b :"\u005b\u0055\u006e\u0069\u0050\u0044\u0046\u005d",_eg :_ed ,_ee :_be };};func Error (processName ,message string )error {return _db (message ,processName )}; +func Wrap (err error ,processName ,message string )error {if _fa ,_a :=err .(*processError );_a {_fa ._b ="";};_da :=_db (message ,processName );_da ._d =err ;return _da ;};func (_cc *processError )Error ()string {var _g string ;if _cc ._b !=""{_g =_cc ._b ; +};_g +="\u0050r\u006f\u0063\u0065\u0073\u0073\u003a "+_cc ._ee ;if _cc ._eg !=""{_g +="\u0020\u004d\u0065\u0073\u0073\u0061\u0067\u0065\u003a\u0020"+_cc ._eg ;};if _cc ._d !=nil {_g +="\u002e\u0020"+_cc ._d .Error ();};return _g ;};var _ _fd .Wrapper =(*processError )(nil ); +func Errorf (processName ,message string ,arguments ...interface{})error {return _db (_c .Sprintf (message ,arguments ...),processName );};type processError struct{_b string ;_ee string ;_eg string ;_d error ;};func Wrapf (err error ,processName ,message string ,arguments ...interface{})error {if _ae ,_de :=err .(*processError ); +_de {_ae ._b ="";};_ec :=_db (_c .Sprintf (message ,arguments ...),processName );_ec ._d =err ;return _ec ;};func (_dc *processError )Unwrap ()error {return _dc ._d }; \ No newline at end of file diff --git a/internal/jbig2/internal/internal.go b/internal/jbig2/internal/internal.go index 26a98575e..07cbf9d36 100644 --- a/internal/jbig2/internal/internal.go +++ b/internal/jbig2/internal/internal.go @@ -9,4 +9,4 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package internal ;import _f "errors";var ErrOOB =_f .New ("o\u0075\u0074\u0020\u006f\u0066\u0020\u0062\u0061\u006e\u0064"); \ No newline at end of file +package internal ;import _e "errors";var ErrOOB =_e .New ("o\u0075\u0074\u0020\u006f\u0066\u0020\u0062\u0061\u006e\u0064"); \ No newline at end of file diff --git a/internal/jbig2/jbig2.go b/internal/jbig2/jbig2.go index d5a3b23df..ae07a370f 100644 --- a/internal/jbig2/jbig2.go +++ b/internal/jbig2/jbig2.go @@ -9,9 +9,9 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package jbig2 ;import (_e "github.com/unidoc/unipdf/v3/internal/bitwise";_ef "github.com/unidoc/unipdf/v3/internal/jbig2/decoder";_ac "github.com/unidoc/unipdf/v3/internal/jbig2/document";_gb "github.com/unidoc/unipdf/v3/internal/jbig2/document/segments"; -_gc "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_a "sort";);func DecodeGlobals (encoded []byte )(Globals ,error ){const _ed ="\u0044\u0065\u0063\u006f\u0064\u0065\u0047\u006c\u006f\u0062\u0061\u006c\u0073";_gd :=_e .NewReader (encoded );_ga ,_aa :=_ac .DecodeDocument (_gd ,nil ); -if _aa !=nil {return nil ,_gc .Wrap (_aa ,_ed ,"");};if _ga .GlobalSegments ==nil ||(_ga .GlobalSegments .Segments ==nil ){return nil ,_gc .Error (_ed ,"\u006eo\u0020\u0067\u006c\u006f\u0062\u0061\u006c\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u0073\u0020\u0066\u006f\u0075\u006e\u0064"); -};_ggc :=Globals {};for _ ,_ae :=range _ga .GlobalSegments .Segments {_ggc [int (_ae .SegmentNumber )]=_ae ;};return _ggc ,nil ;};type Globals map[int ]*_gb .Header ;func (_gaaf Globals )ToDocumentGlobals ()*_ac .Globals {if _gaaf ==nil {return nil ;}; -_ee :=[]*_gb .Header {};for _ ,_f :=range _gaaf {_ee =append (_ee ,_f );};_a .Slice (_ee ,func (_dc ,_gcg int )bool {return _ee [_dc ].SegmentNumber < _ee [_gcg ].SegmentNumber });return &_ac .Globals {Segments :_ee };};func DecodeBytes (encoded []byte ,parameters _ef .Parameters ,globals ...Globals )([]byte ,error ){var _b Globals ; -if len (globals )> 0{_b =globals [0];};_gg ,_d :=_ef .Decode (encoded ,parameters ,_b .ToDocumentGlobals ());if _d !=nil {return nil ,_d ;};return _gg .DecodeNextPage ();}; \ No newline at end of file +package jbig2 ;import (_c "github.com/unidoc/unipdf/v3/internal/bitwise";_b "github.com/unidoc/unipdf/v3/internal/jbig2/decoder";_fa "github.com/unidoc/unipdf/v3/internal/jbig2/document";_aa "github.com/unidoc/unipdf/v3/internal/jbig2/document/segments"; +_g "github.com/unidoc/unipdf/v3/internal/jbig2/errors";_a "sort";);type Globals map[int ]*_aa .Header ;func DecodeBytes (encoded []byte ,parameters _b .Parameters ,globals ...Globals )([]byte ,error ){var _fb Globals ;if len (globals )> 0{_fb =globals [0]; +};_gf ,_ba :=_b .Decode (encoded ,parameters ,_fb .ToDocumentGlobals ());if _ba !=nil {return nil ,_ba ;};return _gf .DecodeNextPage ();};func (_gc Globals )ToDocumentGlobals ()*_fa .Globals {if _gc ==nil {return nil ;};_d :=[]*_aa .Header {};for _ ,_ab :=range _gc {_d =append (_d ,_ab ); +};_a .Slice (_d ,func (_cf ,_bc int )bool {return _d [_cf ].SegmentNumber < _d [_bc ].SegmentNumber });return &_fa .Globals {Segments :_d };};func DecodeGlobals (encoded []byte )(Globals ,error ){const _fg ="\u0044\u0065\u0063\u006f\u0064\u0065\u0047\u006c\u006f\u0062\u0061\u006c\u0073"; +_e :=_c .NewReader (encoded );_bb ,_fe :=_fa .DecodeDocument (_e ,nil );if _fe !=nil {return nil ,_g .Wrap (_fe ,_fg ,"");};if _bb .GlobalSegments ==nil ||(_bb .GlobalSegments .Segments ==nil ){return nil ,_g .Error (_fg ,"\u006eo\u0020\u0067\u006c\u006f\u0062\u0061\u006c\u0020\u0073\u0065\u0067m\u0065\u006e\u0074\u0073\u0020\u0066\u006f\u0075\u006e\u0064"); +};_ca :=Globals {};for _ ,_ga :=range _bb .GlobalSegments .Segments {_ca [int (_ga .SegmentNumber )]=_ga ;};return _ca ,nil ;}; \ No newline at end of file diff --git a/internal/license/license.go b/internal/license/license.go index 689a0ba5a..77f5cb1c7 100644 --- a/internal/license/license.go +++ b/internal/license/license.go @@ -9,108 +9,108 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package license ;import (_dd "bytes";_a "compress/gzip";_g "crypto";_cf "crypto/aes";_cb "crypto/cipher";_dc "crypto/hmac";_ce "crypto/rand";_fa "crypto/rsa";_df "crypto/sha256";_dca "crypto/sha512";_cff "crypto/x509";_gfe "encoding/base64";_ba "encoding/hex"; -_ea "encoding/json";_aa "encoding/pem";_ad "errors";_fd "fmt";_adb "github.com/unidoc/unipdf/v3/common";_gd "io";_b "io/ioutil";_ca "net";_gf "net/http";_f "os";_e "path/filepath";_gb "sort";_eg "strings";_c "sync";_ac "time";);const _cdb ="\u000a\u002d\u002d\u002d\u002d\u002d\u0042\u0045\u0047\u0049\u004e \u0050\u0055\u0042\u004c\u0049\u0043\u0020\u004b\u0045Y\u002d\u002d\u002d\u002d\u002d\u000a\u004d\u0049I\u0042\u0049\u006a\u0041NB\u0067\u006b\u0071\u0068\u006b\u0069G\u0039\u0077\u0030\u0042\u0041\u0051\u0045\u0046A\u0041\u004f\u0043\u0041\u0051\u0038\u0041\u004d\u0049\u0049\u0042\u0043\u0067\u004b\u0043\u0041\u0051\u0045A\u006dF\u0055\u0069\u0079\u0064\u0037\u0062\u0035\u0058\u006a\u0070\u006b\u0050\u0035\u0052\u0061\u0070\u0034\u0077\u000a\u0044\u0063\u0031d\u0079\u007a\u0049\u0051\u0034\u004c\u0065\u006b\u0078\u0072\u0076\u0079\u0074\u006e\u0045\u004d\u0070\u004e\u0055\u0062\u006f\u0036i\u0041\u0037\u0034\u0056\u0038\u0072\u0075\u005a\u004f\u0076\u0072\u0053\u0063\u0073\u0066\u0032\u0051\u0065\u004e9\u002f\u0071r\u0055\u0047\u0038\u0071\u0045\u0062\u0055\u0057\u0064\u006f\u0045\u0059\u0071+\u000a\u006f\u0074\u0046\u004e\u0041\u0046N\u0078\u006c\u0047\u0062\u0078\u0062\u0044\u0048\u0063\u0064\u0047\u0056\u0061\u004d\u0030\u004f\u0058\u0064\u0058g\u0044y\u004c5\u0061\u0049\u0045\u0061\u0067\u004c\u0030\u0063\u0035\u0070\u0077\u006a\u0049\u0064\u0050G\u0049\u006e\u0034\u0036\u0066\u0037\u0038\u0065\u004d\u004a\u002b\u004a\u006b\u0064\u0063\u0070\u0044\n\u0044\u004a\u0061\u0071\u0059\u0058d\u0072\u007a5\u004b\u0065\u0073\u0068\u006aS\u0069\u0049\u0061\u0061\u0037\u006d\u0065\u006e\u0042\u0049\u0041\u0058\u0053\u0034\u0055\u0046\u0078N\u0066H\u0068\u004e\u0030\u0048\u0043\u0059\u005a\u0059\u0071\u0051\u0047\u0037\u0062K+\u0073\u0035\u0072R\u0048\u006f\u006e\u0079\u0064\u004eW\u0045\u0047\u000a\u0048\u0038M\u0079\u0076\u00722\u0070\u0079\u0061\u0032K\u0072\u004d\u0075m\u0066\u006d\u0041\u0078\u0055\u0042\u0036\u0066\u0065\u006e\u0043\u002f4\u004f\u0030\u0057\u00728\u0067\u0066\u0050\u004f\u0055\u0038R\u0069\u0074\u006d\u0062\u0044\u0076\u0051\u0050\u0049\u0052\u0058\u004fL\u0034\u0076\u0054B\u0072\u0042\u0064\u0062a\u0041\u000a9\u006e\u0077\u004e\u0050\u002b\u0069\u002f\u002f\u0032\u0030\u004d\u00542\u0062\u0078\u006d\u0065\u0057\u0042\u002b\u0067\u0070\u0063\u0045\u0068G\u0070\u0058\u005a7\u0033\u0033\u0061\u007a\u0051\u0078\u0072\u0043\u0033\u004a\u0034\u0076\u0033C\u005a\u006d\u0045\u004eS\u0074\u0044\u004b\u002f\u004b\u0044\u0053\u0050\u004b\u0055\u0047\u0066\u00756\u000a\u0066\u0077I\u0044\u0041\u0051\u0041\u0042\u000a\u002d\u002d\u002d\u002d\u002dE\u004e\u0044\u0020\u0050\u0055\u0042\u004c\u0049\u0043 \u004b\u0045Y\u002d\u002d\u002d\u002d\u002d\n"; -type meteredUsageCheckinResp struct{Instance string `json:"inst"`;Next string `json:"next"`;Success bool `json:"success"`;Message string `json:"message"`;RemainingDocs int `json:"rd"`;LimitDocs bool `json:"ld"`;};var _ae =_ac .Date (2020,1,1,0,0,0,0,_ac .UTC ); -var _acfg =_ac .Date (2019,6,6,0,0,0,0,_ac .UTC );func (_addf *LicenseKey )Validate ()error {if _addf ._egg {return nil ;};if len (_addf .LicenseId )< 10{return _fd .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020L\u0069\u0063\u0065n\u0073e\u0020\u0049\u0064"); -};if len (_addf .CustomerId )< 10{return _fd .Errorf ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065:\u0020C\u0075\u0073\u0074\u006f\u006d\u0065\u0072 \u0049\u0064");};if len (_addf .CustomerName )< 1{return _fd .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069c\u0065\u006e\u0073\u0065\u003a\u0020\u0043u\u0073\u0074\u006f\u006d\u0065\u0072\u0020\u004e\u0061\u006d\u0065"); -};if _cfc .After (_addf .CreatedAt ){return _fd .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0043\u0072\u0065\u0061\u0074\u0065\u0064 \u0041\u0074\u0020\u0069\u0073 \u0069\u006ev\u0061\u006c\u0069\u0064"); -};if _addf .ExpiresAt ==nil {_da :=_addf .CreatedAt .AddDate (1,0,0);if _ae .After (_da ){_da =_ae ;};_addf .ExpiresAt =&_da ;};if _addf .CreatedAt .After (*_addf .ExpiresAt ){return _fd .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0043\u0072\u0065\u0061\u0074\u0065\u0064\u0020\u0041\u0074 \u0063a\u006e\u006e\u006f\u0074 \u0062\u0065 \u0047\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0045\u0078\u0070\u0069\u0072\u0065\u0073\u0020\u0041\u0074"); -};if _addf .isExpired (){_fdcd :="\u0054\u0068\u0065\u0020\u006c\u0069c\u0065\u006e\u0073\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u006c\u0072\u0065a\u0064\u0079\u0020\u0065\u0078\u0070\u0069r\u0065\u0064\u002e\u000a"+"\u0059o\u0075\u0020\u006d\u0061y\u0020n\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0075\u0070d\u0061\u0074\u0065\u0020\u0074\u0068\u0065\u0020l\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u006b\u0065\u0079\u0020t\u006f\u0020\u0074\u0068\u0065\u0020\u006e\u0065\u0077\u0065s\u0074\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u006b\u0065\u0079\u0020\u0066\u006f\u0072\u0020\u0079o\u0075\u0072\u0020\u006f\u0072\u0067\u0061\u006e\u0069\u007a\u0061\u0074i\u006fn\u002e\u000a"+"\u0054o\u0020\u0066\u0069\u006ed y\u006f\u0075\u0072\u0020n\u0065\u0077\u0065\u0073\u0074\u0020\u006c\u0069\u0063\u0065n\u0073\u0065\u0020\u006b\u0065\u0079\u002c\u0020\u0067\u006f\u0020\u0074\u006f\u0020\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0063l\u006f\u0075\u0064\u002e\u0075\u006e\u0069\u0064oc\u002e\u0069\u006f \u0061\u006e\u0064\u0020\u0067o\u0020t\u006f\u0020\u0074\u0068\u0065\u0020\u006c\u0069\u0063e\u006e\u0073\u0065\u0020\u006d\u0065\u006e\u0075\u002e"; -return _fd .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0025\u0073",_fdcd );};if len (_addf .CreatorName )< 1{return _fd .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0043\u0072\u0065\u0061\u0074\u006f\u0072\u0020na\u006d\u0065"); -};if len (_addf .CreatorEmail )< 1{return _fd .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069c\u0065\u006e\u0073\u0065\u003a\u0020\u0043r\u0065\u0061\u0074\u006f\u0072\u0020\u0065\u006d\u0061\u0069\u006c");};if _addf .CreatedAt .After (_acfg ){if !_addf .UniPDF {return _fd .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065:\u0020\u0054\u0068\u0069\u0073\u0020\u0055\u006e\u0069\u0044\u006f\u0063\u0020k\u0065\u0079\u0020\u0069\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069d \u0066\u006f\u0072\u0020\u0055\u006e\u0069\u0050\u0044\u0046"); -};};return nil ;};func (_ge *LicenseKey )TypeToString ()string {if _ge ._egg {return "M\u0065t\u0065\u0072\u0065\u0064\u0020\u0073\u0075\u0062s\u0063\u0072\u0069\u0070ti\u006f\u006e";};if _ge .Tier ==LicenseTierUnlicensed {return "\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064"; -};if _ge .Tier ==LicenseTierCommunity {return "\u0041\u0047PL\u0076\u0033\u0020O\u0070\u0065\u006e\u0020Sou\u0072ce\u0020\u0043\u006f\u006d\u006d\u0075\u006eit\u0079\u0020\u004c\u0069\u0063\u0065\u006es\u0065";};if _ge .Tier ==LicenseTierIndividual ||_ge .Tier =="\u0069\u006e\u0064i\u0065"{return "\u0043\u006f\u006dm\u0065\u0072\u0063\u0069a\u006c\u0020\u004c\u0069\u0063\u0065\u006es\u0065\u0020\u002d\u0020\u0049\u006e\u0064\u0069\u0076\u0069\u0064\u0075\u0061\u006c"; -};return "\u0043\u006fm\u006d\u0065\u0072\u0063\u0069\u0061\u006c\u0020\u004c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u002d\u0020\u0042\u0075\u0073\u0069ne\u0073\u0073";};func _cbbf ()*meteredClient {_acgc :=meteredClient {_dbc :"h\u0074\u0074\u0070\u0073\u003a\u002f/\u0063\u006c\u006f\u0075\u0064\u002e\u0075\u006e\u0069d\u006f\u0063\u002ei\u006f/\u0061\u0070\u0069",_eggd :&_gf .Client {Timeout :30*_ac .Second }}; -if _dbca :=_f .Getenv ("\u0055N\u0049\u0044\u004f\u0043_\u004c\u0049\u0043\u0045\u004eS\u0045_\u0053E\u0052\u0056\u0045\u0052\u005f\u0055\u0052L");_eg .HasPrefix (_dbca ,"\u0068\u0074\u0074\u0070"){_acgc ._dbc =_dbca ;};return &_acgc ;};func (_gcb *meteredClient )checkinUsage (_dbg meteredUsageCheckinForm )(meteredUsageCheckinResp ,error ){_dbg .Package ="\u0075\u006e\u0069\u0070\u0064\u0066"; -_dbg .PackageVersion =_adb .Version ;var _cg meteredUsageCheckinResp ;_gda :=_gcb ._dbc +"\u002f\u006d\u0065\u0074er\u0065\u0064\u002f\u0075\u0073\u0061\u0067\u0065\u005f\u0063\u0068\u0065\u0063\u006bi\u006e";_cbeg ,_daf :=_ea .Marshal (_dbg );if _daf !=nil {return _cg ,_daf ; -};_ged ,_daf :=_adg (_cbeg );if _daf !=nil {return _cg ,_daf ;};_eca ,_daf :=_gf .NewRequest ("\u0050\u004f\u0053\u0054",_gda ,_ged );if _daf !=nil {return _cg ,_daf ;};_eca .Header .Add ("\u0043\u006f\u006et\u0065\u006e\u0074\u002d\u0054\u0079\u0070\u0065","\u0061\u0070p\u006c\u0069\u0063a\u0074\u0069\u006f\u006e\u002f\u006a\u0073\u006f\u006e"); -_eca .Header .Add ("\u0043\u006fn\u0074\u0065\u006et\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070");_eca .Header .Add ("\u0041c\u0063e\u0070\u0074\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070"); -_eca .Header .Add ("\u0058-\u0041\u0050\u0049\u002d\u004b\u0045Y",_gcb ._gba );_aac ,_daf :=_gcb ._eggd .Do (_eca );if _daf !=nil {return _cg ,_daf ;};defer _aac .Body .Close ();if _aac .StatusCode !=200{_aba ,_egb :=_afa (_aac );if _egb !=nil {return _cg ,_egb ; -};_egb =_ea .Unmarshal (_aba ,&_cg );if _egb !=nil {return _cg ,_egb ;};return _cg ,_fd .Errorf ("\u0066\u0061i\u006c\u0065\u0064\u0020t\u006f\u0020c\u0068\u0065\u0063\u006b\u0069\u006e\u002c\u0020s\u0074\u0061\u0074\u0075\u0073\u0020\u0063\u006f\u0064\u0065\u0020\u0069s\u003a\u0020\u0025\u0064",_aac .StatusCode ); -};_egd :=_aac .Header .Get ("\u0058\u002d\u0055\u0043\u002d\u0053\u0069\u0067\u006ea\u0074\u0075\u0072\u0065");_edb :=_dga (_dbg .MacAddress ,string (_cbeg ));if _edb !=_egd {_adb .Log .Error ("I\u006e\u0076\u0061l\u0069\u0064\u0020\u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u002c\u0020\u0073\u0065t\u0020\u0074\u0068e\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u0073\u0065\u0072\u0076e\u0072\u0020\u0074\u006f \u0068\u0074\u0074\u0070s\u003a\u002f\u002f\u0063\u006c\u006f\u0075\u0064\u002e\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069o\u002f\u0061\u0070\u0069"); -return _cg ,_ad .New ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0074\u006f\u0020\u0063\u0068\u0065\u0063\u006b\u0069\u006e\u002c\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0065\u0072\u0076\u0065\u0072 \u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065"); -};_ag ,_daf :=_afa (_aac );if _daf !=nil {return _cg ,_daf ;};_daf =_ea .Unmarshal (_ag ,&_cg );if _daf !=nil {return _cg ,_daf ;};return _cg ,nil ;};func _dga (_feb ,_agf string )string {_gee :=[]byte (_feb );_ffa :=_dc .New (_df .New ,_gee );_ffa .Write ([]byte (_agf )); -return _gfe .StdEncoding .EncodeToString (_ffa .Sum (nil ));};var _afg map[string ]struct{};func SetMeteredKey (apiKey string )error {if len (apiKey )==0{_adb .Log .Error ("\u004d\u0065\u0074\u0065\u0072e\u0064\u0020\u004c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u0041\u0050\u0049 \u004b\u0065\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006d\u0070\u0074\u0079"); -_adb .Log .Error ("\u002d\u0020\u0047\u0072\u0061\u0062\u0020\u006f\u006e\u0065\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0046\u0072\u0065\u0065\u0020\u0054\u0069\u0065\u0072\u0020\u0061t\u0020\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0063\u006c\u006fud\u002e\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"); -return _fd .Errorf ("\u006de\u0074\u0065\u0072e\u0064\u0020\u006ci\u0063en\u0073\u0065\u0020\u0061\u0070\u0069\u0020k\u0065\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006d\u0070\u0074\u0079\u003a\u0020\u0063\u0072\u0065\u0061\u0074\u0065 o\u006ee\u0020\u0061\u0074\u0020\u0068\u0074t\u0070\u0073\u003a\u002f\u002fc\u006c\u006f\u0075\u0064\u002e\u0075\u006e\u0069\u0064\u006f\u0063.\u0069\u006f"); -};if _gfef !=nil &&(_gfef ._egg ||_gfef .Tier !=LicenseTierUnlicensed ){_adb .Log .Error ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0043\u0061\u006e\u006eo\u0074 \u0073\u0065\u0074\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u006b\u0065\u0079\u0020\u0074\u0077\u0069c\u0065\u0020\u002d\u0020\u0053\u0068\u006f\u0075\u006c\u0064\u0020\u006a\u0075\u0073\u0074\u0020\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0069z\u0065\u0020\u006f\u006e\u0063\u0065"); -return _ad .New ("\u006c\u0069\u0063en\u0073\u0065\u0020\u006b\u0065\u0079\u0020\u0061\u006c\u0072\u0065\u0061\u0064\u0079\u0020\u0073\u0065\u0074");};_edc :=_cbbf ();_edc ._gba =apiKey ;_ebb ,_addg :=_edc .getStatus ();if _addg !=nil {return _addg ;}; -if !_ebb .Valid {return _ad .New ("\u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0076\u0061\u006c\u0069\u0064");};_aed :=&LicenseKey {_egg :true ,_cbb :apiKey ,_cab :true };_gfef =_aed ;return nil ;};const (_gg ="\u002d\u002d\u002d--\u0042\u0045\u0047\u0049\u004e\u0020\u0055\u004e\u0049D\u004fC\u0020L\u0049C\u0045\u004e\u0053\u0045\u0020\u004b\u0045\u0059\u002d\u002d\u002d\u002d\u002d"; -_eaf ="\u002d\u002d\u002d\u002d\u002d\u0045\u004e\u0044\u0020\u0055\u004e\u0049\u0044\u004f\u0043 \u004cI\u0043\u0045\u004e\u0053\u0045\u0020\u004b\u0045\u0059\u002d\u002d\u002d\u002d\u002d";);const _cagd ="U\u004eI\u0050\u0044\u0046\u005f\u0043\u0055\u0053\u0054O\u004d\u0045\u0052\u005fNA\u004d\u0045"; -func GetLicenseKey ()*LicenseKey {if _gfef ==nil {return nil ;};_ffd :=*_gfef ;return &_ffd ;};func SetMeteredKeyPersistentCache (val bool ){_gfef ._cab =val };type meteredStatusForm struct{};func _dg ()(string ,error ){_dab :=_eg .TrimSpace (_f .Getenv (_gcf )); -if _dab ==""{_adb .Log .Debug ("\u0024\u0025\u0073\u0020e\u006e\u0076\u0069\u0072\u006f\u006e\u006d\u0065\u006e\u0074\u0020\u0076\u0061\u0072\u0069\u0061\u0062l\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e\u0020\u0057\u0069\u006c\u006c\u0020\u0075\u0073\u0065\u0020\u0068\u006f\u006d\u0065\u0020\u0064\u0069\u0072\u0065\u0063\u0074\u006f\u0072\u0079\u0020\u0074\u006f\u0020s\u0074\u006f\u0072\u0065\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020in\u0066o\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u002e",_gcf ); -_egbb :=_fgab ();if len (_egbb )==0{return "",_fd .Errorf ("r\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0024\u0025\u0073\u0020\u0065\u006e\u0076\u0069\u0072\u006f\u006e\u006d\u0065\u006e\u0074\u0020\u0076\u0061r\u0069a\u0062\u006c\u0065\u0020o\u0072\u0020h\u006f\u006d\u0065\u0020\u0064\u0069\u0072\u0065\u0063\u0074\u006f\u0072\u0079\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",_gcf ); -};_dab =_e .Join (_egbb ,"\u002eu\u006e\u0069\u0064\u006f\u0063");};_decd :=_f .MkdirAll (_dab ,0777);if _decd !=nil {return "",_decd ;};return _dab ,nil ;};type defaultStateHolder struct{};func (_aec *LicenseKey )ToString ()string {if _aec ._egg {return "M\u0065t\u0065\u0072\u0065\u0064\u0020\u0073\u0075\u0062s\u0063\u0072\u0069\u0070ti\u006f\u006e"; -};_fbe :=_fd .Sprintf ("\u004ci\u0063e\u006e\u0073\u0065\u0020\u0049\u0064\u003a\u0020\u0025\u0073\u000a",_aec .LicenseId );_fbe +=_fd .Sprintf ("\u0043\u0075s\u0074\u006f\u006de\u0072\u0020\u0049\u0064\u003a\u0020\u0025\u0073\u000a",_aec .CustomerId ); -_fbe +=_fd .Sprintf ("\u0043u\u0073t\u006f\u006d\u0065\u0072\u0020N\u0061\u006de\u003a\u0020\u0025\u0073\u000a",_aec .CustomerName );_fbe +=_fd .Sprintf ("\u0054i\u0065\u0072\u003a\u0020\u0025\u0073\n",_aec .Tier );_fbe +=_fd .Sprintf ("\u0043r\u0065a\u0074\u0065\u0064\u0020\u0041\u0074\u003a\u0020\u0025\u0073\u000a",_adb .UtcTimeFormat (_aec .CreatedAt )); -if _aec .ExpiresAt ==nil {_fbe +="\u0045x\u0070i\u0072\u0065\u0073\u0020\u0041t\u003a\u0020N\u0065\u0076\u0065\u0072\u000a";}else {_fbe +=_fd .Sprintf ("\u0045x\u0070i\u0072\u0065\u0073\u0020\u0041\u0074\u003a\u0020\u0025\u0073\u000a",_adb .UtcTimeFormat (*_aec .ExpiresAt )); -};_fbe +=_fd .Sprintf ("\u0043\u0072\u0065\u0061\u0074\u006f\u0072\u003a\u0020\u0025\u0073\u0020<\u0025\u0073\u003e\u000a",_aec .CreatorName ,_aec .CreatorEmail );return _fbe ;};const _bbe ="\u0055\u004e\u0049\u0050DF\u005f\u004c\u0049\u0043\u0045\u004e\u0053\u0045\u005f\u0050\u0041\u0054\u0048"; -type stateLoader interface{loadState (_fee string )(reportState ,error );updateState (_dbfb ,_dce ,_eaa string ,_fg int ,_dec bool ,_gfc int ,_fga int ,_eec _ac .Time ,_abf map[string ]int )error ;};type meteredUsageCheckinForm struct{Instance string `json:"inst"`; +package license ;import (_bc "bytes";_f "compress/gzip";_e "crypto";_cf "crypto/aes";_fe "crypto/cipher";_cag "crypto/hmac";_ad "crypto/rand";_eff "crypto/rsa";_bb "crypto/sha256";_cg "crypto/sha512";_bbe "crypto/x509";_fg "encoding/base64";_dd "encoding/hex"; +_ee "encoding/json";_db "encoding/pem";_ce "errors";_df "fmt";_dbb "github.com/unidoc/unipdf/v3/common";_eg "io";_dc "io/ioutil";_de "net";_cd "net/http";_d "os";_ef "path/filepath";_b "sort";_a "strings";_ca "sync";_g "time";);func _bce (_ccf string ,_ba string )([]byte ,error ){var (_ag int ; +_ac string ;);for _ ,_ac =range []string {"\u000a\u002b\u000a","\u000d\u000a\u002b\r\u000a","\u0020\u002b\u0020"}{if _ag =_a .Index (_ba ,_ac );_ag !=-1{break ;};};if _ag ==-1{return nil ,_df .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u002c \u0073i\u0067n\u0061t\u0075\u0072\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072"); +};_acb :=_ba [:_ag ];_aea :=_ag +len (_ac );_dg :=_ba [_aea :];if _acb ==""||_dg ==""{return nil ,_df .Errorf ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0069n\u0070\u0075\u0074,\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020or\u0069\u0067\u0069n\u0061\u006c \u006f\u0072\u0020\u0073\u0069\u0067n\u0061\u0074u\u0072\u0065"); +};_fga ,_bf :=_fg .StdEncoding .DecodeString (_acb );if _bf !=nil {return nil ,_df .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u006f\u0072\u0069\u0067\u0069\u006ea\u006c");};_gag ,_bf :=_fg .StdEncoding .DecodeString (_dg ); +if _bf !=nil {return nil ,_df .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065");};_gac ,_ :=_db .Decode ([]byte (_ccf ));if _gac ==nil {return nil ,_df .Errorf ("\u0050\u0075\u0062\u004b\u0065\u0079\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); +};_cb ,_bf :=_bbe .ParsePKIXPublicKey (_gac .Bytes );if _bf !=nil {return nil ,_bf ;};_ab :=_cb .(*_eff .PublicKey );if _ab ==nil {return nil ,_df .Errorf ("\u0050u\u0062\u004b\u0065\u0079\u0020\u0063\u006f\u006e\u0076\u0065\u0072s\u0069\u006f\u006e\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); +};_bd :=_cg .New ();_bd .Write (_fga );_gfd :=_bd .Sum (nil );_bf =_eff .VerifyPKCS1v15 (_ab ,_e .SHA512 ,_gfd ,_gag );if _bf !=nil {return nil ,_bf ;};return _fga ,nil ;};func (_faf *LicenseKey )ToString ()string {if _faf ._gea {return "M\u0065t\u0065\u0072\u0065\u0064\u0020\u0073\u0075\u0062s\u0063\u0072\u0069\u0070ti\u006f\u006e"; +};_age :=_df .Sprintf ("\u004ci\u0063e\u006e\u0073\u0065\u0020\u0049\u0064\u003a\u0020\u0025\u0073\u000a",_faf .LicenseId );_age +=_df .Sprintf ("\u0043\u0075s\u0074\u006f\u006de\u0072\u0020\u0049\u0064\u003a\u0020\u0025\u0073\u000a",_faf .CustomerId ); +_age +=_df .Sprintf ("\u0043u\u0073t\u006f\u006d\u0065\u0072\u0020N\u0061\u006de\u003a\u0020\u0025\u0073\u000a",_faf .CustomerName );_age +=_df .Sprintf ("\u0054i\u0065\u0072\u003a\u0020\u0025\u0073\n",_faf .Tier );_age +=_df .Sprintf ("\u0043r\u0065a\u0074\u0065\u0064\u0020\u0041\u0074\u003a\u0020\u0025\u0073\u000a",_dbb .UtcTimeFormat (_faf .CreatedAt )); +if _faf .ExpiresAt ==nil {_age +="\u0045x\u0070i\u0072\u0065\u0073\u0020\u0041t\u003a\u0020N\u0065\u0076\u0065\u0072\u000a";}else {_age +=_df .Sprintf ("\u0045x\u0070i\u0072\u0065\u0073\u0020\u0041\u0074\u003a\u0020\u0025\u0073\u000a",_dbb .UtcTimeFormat (*_faf .ExpiresAt )); +};_age +=_df .Sprintf ("\u0043\u0072\u0065\u0061\u0074\u006f\u0072\u003a\u0020\u0025\u0073\u0020<\u0025\u0073\u003e\u000a",_faf .CreatorName ,_faf .CreatorEmail );return _age ;};func GetLicenseKey ()*LicenseKey {if _dfd ==nil {return nil ;};_fdag :=*_dfd ; +return &_fdag ;};type meteredStatusResp struct{Valid bool `json:"valid"`;OrgCredits int64 `json:"org_credits"`;OrgUsed int64 `json:"org_used"`;OrgRemaining int64 `json:"org_remaining"`;};func (_cdb *meteredClient )checkinUsage (_ced meteredUsageCheckinForm )(meteredUsageCheckinResp ,error ){_ced .Package ="\u0075\u006e\u0069\u0070\u0064\u0066"; +_ced .PackageVersion =_dbb .Version ;var _gfa meteredUsageCheckinResp ;_cbb :=_cdb ._cbc +"\u002f\u006d\u0065\u0074er\u0065\u0064\u002f\u0075\u0073\u0061\u0067\u0065\u005f\u0063\u0068\u0065\u0063\u006bi\u006e";_gee ,_caa :=_ee .Marshal (_ced );if _caa !=nil {return _gfa ,_caa ; +};_dge ,_caa :=_dgc (_gee );if _caa !=nil {return _gfa ,_caa ;};_cbd ,_caa :=_cd .NewRequest ("\u0050\u004f\u0053\u0054",_cbb ,_dge );if _caa !=nil {return _gfa ,_caa ;};_cbd .Header .Add ("\u0043\u006f\u006et\u0065\u006e\u0074\u002d\u0054\u0079\u0070\u0065","\u0061\u0070p\u006c\u0069\u0063a\u0074\u0069\u006f\u006e\u002f\u006a\u0073\u006f\u006e"); +_cbd .Header .Add ("\u0043\u006fn\u0074\u0065\u006et\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070");_cbd .Header .Add ("\u0041c\u0063e\u0070\u0074\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070"); +_cbd .Header .Add ("\u0058-\u0041\u0050\u0049\u002d\u004b\u0045Y",_cdb ._bca );_cgfd ,_caa :=_cdb ._ccd .Do (_cbd );if _caa !=nil {return _gfa ,_caa ;};defer _cgfd .Body .Close ();if _cgfd .StatusCode !=200{_cef ,_gbc :=_bdb (_cgfd );if _gbc !=nil {return _gfa ,_gbc ; +};_gbc =_ee .Unmarshal (_cef ,&_gfa );if _gbc !=nil {return _gfa ,_gbc ;};return _gfa ,_df .Errorf ("\u0066\u0061i\u006c\u0065\u0064\u0020t\u006f\u0020c\u0068\u0065\u0063\u006b\u0069\u006e\u002c\u0020s\u0074\u0061\u0074\u0075\u0073\u0020\u0063\u006f\u0064\u0065\u0020\u0069s\u003a\u0020\u0025\u0064",_cgfd .StatusCode ); +};_aa :=_cgfd .Header .Get ("\u0058\u002d\u0055\u0043\u002d\u0053\u0069\u0067\u006ea\u0074\u0075\u0072\u0065");_cceb :=_agef (_ced .MacAddress ,string (_gee ));if _cceb !=_aa {_dbb .Log .Error ("I\u006e\u0076\u0061l\u0069\u0064\u0020\u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u002c\u0020\u0073\u0065t\u0020\u0074\u0068e\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u0073\u0065\u0072\u0076e\u0072\u0020\u0074\u006f \u0068\u0074\u0074\u0070s\u003a\u002f\u002f\u0063\u006c\u006f\u0075\u0064\u002e\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069o\u002f\u0061\u0070\u0069"); +return _gfa ,_ce .New ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0074\u006f\u0020\u0063\u0068\u0065\u0063\u006b\u0069\u006e\u002c\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0065\u0072\u0076\u0065\u0072 \u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065"); +};_cfb ,_caa :=_bdb (_cgfd );if _caa !=nil {return _gfa ,_caa ;};_caa =_ee .Unmarshal (_cfb ,&_gfa );if _caa !=nil {return _gfa ,_caa ;};return _gfa ,nil ;};func (_bcd *LicenseKey )Validate ()error {if _bcd ._gea {return nil ;};if len (_bcd .LicenseId )< 10{return _df .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020L\u0069\u0063\u0065n\u0073e\u0020\u0049\u0064"); +};if len (_bcd .CustomerId )< 10{return _df .Errorf ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065:\u0020C\u0075\u0073\u0074\u006f\u006d\u0065\u0072 \u0049\u0064");};if len (_bcd .CustomerName )< 1{return _df .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069c\u0065\u006e\u0073\u0065\u003a\u0020\u0043u\u0073\u0074\u006f\u006d\u0065\u0072\u0020\u004e\u0061\u006d\u0065"); +};if _effg .After (_bcd .CreatedAt ){return _df .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0043\u0072\u0065\u0061\u0074\u0065\u0064 \u0041\u0074\u0020\u0069\u0073 \u0069\u006ev\u0061\u006c\u0069\u0064"); +};if _bcd .ExpiresAt ==nil {_bag :=_bcd .CreatedAt .AddDate (1,0,0);if _ec .After (_bag ){_bag =_ec ;};_bcd .ExpiresAt =&_bag ;};if _bcd .CreatedAt .After (*_bcd .ExpiresAt ){return _df .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0043\u0072\u0065\u0061\u0074\u0065\u0064\u0020\u0041\u0074 \u0063a\u006e\u006e\u006f\u0074 \u0062\u0065 \u0047\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0045\u0078\u0070\u0069\u0072\u0065\u0073\u0020\u0041\u0074"); +};if _bcd .isExpired (){_gdc :="\u0054\u0068\u0065\u0020\u006c\u0069c\u0065\u006e\u0073\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u006c\u0072\u0065a\u0064\u0079\u0020\u0065\u0078\u0070\u0069r\u0065\u0064\u002e\u000a"+"\u0059o\u0075\u0020\u006d\u0061y\u0020n\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0075\u0070d\u0061\u0074\u0065\u0020\u0074\u0068\u0065\u0020l\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u006b\u0065\u0079\u0020t\u006f\u0020\u0074\u0068\u0065\u0020\u006e\u0065\u0077\u0065s\u0074\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u006b\u0065\u0079\u0020\u0066\u006f\u0072\u0020\u0079o\u0075\u0072\u0020\u006f\u0072\u0067\u0061\u006e\u0069\u007a\u0061\u0074i\u006fn\u002e\u000a"+"\u0054o\u0020\u0066\u0069\u006ed y\u006f\u0075\u0072\u0020n\u0065\u0077\u0065\u0073\u0074\u0020\u006c\u0069\u0063\u0065n\u0073\u0065\u0020\u006b\u0065\u0079\u002c\u0020\u0067\u006f\u0020\u0074\u006f\u0020\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0063l\u006f\u0075\u0064\u002e\u0075\u006e\u0069\u0064oc\u002e\u0069\u006f \u0061\u006e\u0064\u0020\u0067o\u0020t\u006f\u0020\u0074\u0068\u0065\u0020\u006c\u0069\u0063e\u006e\u0073\u0065\u0020\u006d\u0065\u006e\u0075\u002e"; +return _df .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0025\u0073",_gdc );};if len (_bcd .CreatorName )< 1{return _df .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u003a\u0020\u0043\u0072\u0065\u0061\u0074\u006f\u0072\u0020na\u006d\u0065"); +};if len (_bcd .CreatorEmail )< 1{return _df .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069c\u0065\u006e\u0073\u0065\u003a\u0020\u0043r\u0065\u0061\u0074\u006f\u0072\u0020\u0065\u006d\u0061\u0069\u006c");};if _bcd .CreatedAt .After (_ea ){if !_bcd .UniPDF {return _df .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065:\u0020\u0054\u0068\u0069\u0073\u0020\u0055\u006e\u0069\u0044\u006f\u0063\u0020k\u0065\u0079\u0020\u0069\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069d \u0066\u006f\u0072\u0020\u0055\u006e\u0069\u0050\u0044\u0046"); +};};return nil ;};var _dfd =MakeUnlicensedKey ();type stateLoader interface{loadState (_gdb string )(reportState ,error );updateState (_gab ,_deg ,_daa string ,_cgg int ,_cbcd bool ,_aaf int ,_be int ,_eee _g .Time ,_bcef map[string ]int )error ;};func (_bdf *LicenseKey )isExpired ()bool {return _bdf .getExpiryDateToCompare ().After (*_bdf .ExpiresAt )}; +func SetMeteredKey (apiKey string )error {if len (apiKey )==0{_dbb .Log .Error ("\u004d\u0065\u0074\u0065\u0072e\u0064\u0020\u004c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u0041\u0050\u0049 \u004b\u0065\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006d\u0070\u0074\u0079"); +_dbb .Log .Error ("\u002d\u0020\u0047\u0072\u0061\u0062\u0020\u006f\u006e\u0065\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0046\u0072\u0065\u0065\u0020\u0054\u0069\u0065\u0072\u0020\u0061t\u0020\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0063\u006c\u006fud\u002e\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"); +return _df .Errorf ("\u006de\u0074\u0065\u0072e\u0064\u0020\u006ci\u0063en\u0073\u0065\u0020\u0061\u0070\u0069\u0020k\u0065\u0079\u0020\u006d\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006d\u0070\u0074\u0079\u003a\u0020\u0063\u0072\u0065\u0061\u0074\u0065 o\u006ee\u0020\u0061\u0074\u0020\u0068\u0074t\u0070\u0073\u003a\u002f\u002fc\u006c\u006f\u0075\u0064\u002e\u0075\u006e\u0069\u0064\u006f\u0063.\u0069\u006f"); +};if _dfd !=nil &&(_dfd ._gea ||_dfd .Tier !=LicenseTierUnlicensed ){_dbb .Log .Error ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0043\u0061\u006e\u006eo\u0074 \u0073\u0065\u0074\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u006b\u0065\u0079\u0020\u0074\u0077\u0069c\u0065\u0020\u002d\u0020\u0053\u0068\u006f\u0075\u006c\u0064\u0020\u006a\u0075\u0073\u0074\u0020\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0069z\u0065\u0020\u006f\u006e\u0063\u0065"); +return _ce .New ("\u006c\u0069\u0063en\u0073\u0065\u0020\u006b\u0065\u0079\u0020\u0061\u006c\u0072\u0065\u0061\u0064\u0079\u0020\u0073\u0065\u0074");};_bdc :=_gda ();_bdc ._bca =apiKey ;_fab ,_cab :=_bdc .getStatus ();if _cab !=nil {return _cab ;};if !_fab .Valid {return _ce .New ("\u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0076\u0061\u006c\u0069\u0064"); +};_ecf :=&LicenseKey {_gea :true ,_dda :apiKey ,_cgf :true };_dfd =_ecf ;return nil ;};func (_cae *LicenseKey )TypeToString ()string {if _cae ._gea {return "M\u0065t\u0065\u0072\u0065\u0064\u0020\u0073\u0075\u0062s\u0063\u0072\u0069\u0070ti\u006f\u006e"; +};if _cae .Tier ==LicenseTierUnlicensed {return "\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064";};if _cae .Tier ==LicenseTierCommunity {return "\u0041\u0047PL\u0076\u0033\u0020O\u0070\u0065\u006e\u0020Sou\u0072ce\u0020\u0043\u006f\u006d\u006d\u0075\u006eit\u0079\u0020\u004c\u0069\u0063\u0065\u006es\u0065"; +};if _cae .Tier ==LicenseTierIndividual ||_cae .Tier =="\u0069\u006e\u0064i\u0065"{return "\u0043\u006f\u006dm\u0065\u0072\u0063\u0069a\u006c\u0020\u004c\u0069\u0063\u0065\u006es\u0065\u0020\u002d\u0020\u0049\u006e\u0064\u0069\u0076\u0069\u0064\u0075\u0061\u006c"; +};return "\u0043\u006fm\u006d\u0065\u0072\u0063\u0069\u0061\u006c\u0020\u004c\u0069\u0063\u0065\u006e\u0073\u0065\u0020\u002d\u0020\u0042\u0075\u0073\u0069ne\u0073\u0073";};func _gda ()*meteredClient {_fdg :=meteredClient {_cbc :"h\u0074\u0074\u0070\u0073\u003a\u002f/\u0063\u006c\u006f\u0075\u0064\u002e\u0075\u006e\u0069d\u006f\u0063\u002ei\u006f/\u0061\u0070\u0069",_ccd :&_cd .Client {Timeout :30*_g .Second }}; +if _da :=_d .Getenv ("\u0055N\u0049\u0044\u004f\u0043_\u004c\u0049\u0043\u0045\u004eS\u0045_\u0053E\u0052\u0056\u0045\u0052\u005f\u0055\u0052L");_a .HasPrefix (_da ,"\u0068\u0074\u0074\u0070"){_fdg ._cbc =_da ;};return &_fdg ;};func _cga ()([]string ,[]string ,error ){_aab ,_bab :=_de .Interfaces (); +if _bab !=nil {return nil ,nil ,_bab ;};var _gace []string ;var _caf []string ;for _ ,_fed :=range _aab {if _fed .Flags &_de .FlagUp ==0||_bc .Equal (_fed .HardwareAddr ,nil ){continue ;};_begd ,_abdf :=_fed .Addrs ();if _abdf !=nil {return nil ,nil ,_abdf ; +};_bcg :=0;for _ ,_agf :=range _begd {var _fda _de .IP ;switch _agd :=_agf .(type ){case *_de .IPNet :_fda =_agd .IP ;case *_de .IPAddr :_fda =_agd .IP ;};if _fda .IsLoopback (){continue ;};if _fda .To4 ()==nil {continue ;};_caf =append (_caf ,_fda .String ()); +_bcg ++;};_dgge :=_fed .HardwareAddr .String ();if _dgge !=""&&_bcg > 0{_gace =append (_gace ,_dgge );};};return _gace ,_caf ,nil ;};func _geed ()(_de .IP ,error ){_bcbf ,_cdf :=_de .Dial ("\u0075\u0064\u0070","\u0038\u002e\u0038\u002e\u0038\u002e\u0038\u003a\u0038\u0030"); +if _cdf !=nil {return nil ,_cdf ;};defer _bcbf .Close ();_eccb :=_bcbf .LocalAddr ().(*_de .UDPAddr );return _eccb .IP ,nil ;};const _eec ="\u000a\u002d\u002d\u002d\u002d\u002d\u0042\u0045\u0047\u0049\u004e \u0050\u0055\u0042\u004c\u0049\u0043\u0020\u004b\u0045Y\u002d\u002d\u002d\u002d\u002d\u000a\u004d\u0049I\u0042\u0049\u006a\u0041NB\u0067\u006b\u0071\u0068\u006b\u0069G\u0039\u0077\u0030\u0042\u0041\u0051\u0045\u0046A\u0041\u004f\u0043\u0041\u0051\u0038\u0041\u004d\u0049\u0049\u0042\u0043\u0067\u004b\u0043\u0041\u0051\u0045A\u006dF\u0055\u0069\u0079\u0064\u0037\u0062\u0035\u0058\u006a\u0070\u006b\u0050\u0035\u0052\u0061\u0070\u0034\u0077\u000a\u0044\u0063\u0031d\u0079\u007a\u0049\u0051\u0034\u004c\u0065\u006b\u0078\u0072\u0076\u0079\u0074\u006e\u0045\u004d\u0070\u004e\u0055\u0062\u006f\u0036i\u0041\u0037\u0034\u0056\u0038\u0072\u0075\u005a\u004f\u0076\u0072\u0053\u0063\u0073\u0066\u0032\u0051\u0065\u004e9\u002f\u0071r\u0055\u0047\u0038\u0071\u0045\u0062\u0055\u0057\u0064\u006f\u0045\u0059\u0071+\u000a\u006f\u0074\u0046\u004e\u0041\u0046N\u0078\u006c\u0047\u0062\u0078\u0062\u0044\u0048\u0063\u0064\u0047\u0056\u0061\u004d\u0030\u004f\u0058\u0064\u0058g\u0044y\u004c5\u0061\u0049\u0045\u0061\u0067\u004c\u0030\u0063\u0035\u0070\u0077\u006a\u0049\u0064\u0050G\u0049\u006e\u0034\u0036\u0066\u0037\u0038\u0065\u004d\u004a\u002b\u004a\u006b\u0064\u0063\u0070\u0044\n\u0044\u004a\u0061\u0071\u0059\u0058d\u0072\u007a5\u004b\u0065\u0073\u0068\u006aS\u0069\u0049\u0061\u0061\u0037\u006d\u0065\u006e\u0042\u0049\u0041\u0058\u0053\u0034\u0055\u0046\u0078N\u0066H\u0068\u004e\u0030\u0048\u0043\u0059\u005a\u0059\u0071\u0051\u0047\u0037\u0062K+\u0073\u0035\u0072R\u0048\u006f\u006e\u0079\u0064\u004eW\u0045\u0047\u000a\u0048\u0038M\u0079\u0076\u00722\u0070\u0079\u0061\u0032K\u0072\u004d\u0075m\u0066\u006d\u0041\u0078\u0055\u0042\u0036\u0066\u0065\u006e\u0043\u002f4\u004f\u0030\u0057\u00728\u0067\u0066\u0050\u004f\u0055\u0038R\u0069\u0074\u006d\u0062\u0044\u0076\u0051\u0050\u0049\u0052\u0058\u004fL\u0034\u0076\u0054B\u0072\u0042\u0064\u0062a\u0041\u000a9\u006e\u0077\u004e\u0050\u002b\u0069\u002f\u002f\u0032\u0030\u004d\u00542\u0062\u0078\u006d\u0065\u0057\u0042\u002b\u0067\u0070\u0063\u0045\u0068G\u0070\u0058\u005a7\u0033\u0033\u0061\u007a\u0051\u0078\u0072\u0043\u0033\u004a\u0034\u0076\u0033C\u005a\u006d\u0045\u004eS\u0074\u0044\u004b\u002f\u004b\u0044\u0053\u0050\u004b\u0055\u0047\u0066\u00756\u000a\u0066\u0077I\u0044\u0041\u0051\u0041\u0042\u000a\u002d\u002d\u002d\u002d\u002dE\u004e\u0044\u0020\u0050\u0055\u0042\u004c\u0049\u0043 \u004b\u0045Y\u002d\u002d\u002d\u002d\u002d\n"; +func (_aad defaultStateHolder )updateState (_ade ,_beb ,_abc string ,_bac int ,_cec bool ,_fdb int ,_acd int ,_cfd _g .Time ,_agec map[string ]int )error {_bea ,_abe :=_egdf ();if _abe !=nil {return _abe ;};if len (_ade )< 20{return _ce .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006b\u0065\u0079"); +};_ggb :=[]byte (_ade );_eef :=_cg .Sum512_256 (_ggb [:20]);_dcb :=_dd .EncodeToString (_eef [:]);_gagg :=_ef .Join (_bea ,_dcb );var _beag reportState ;_beag .Docs =int64 (_bac );_beag .NumErrors =int64 (_acd );_beag .LimitDocs =_cec ;_beag .RemainingDocs =int64 (_fdb ); +_beag .LastWritten =_g .Now ().UTC ();_beag .LastReported =_cfd ;_beag .Instance =_beb ;_beag .Next =_abc ;_beag .Usage =_agec ;_aba ,_abe :=_ee .Marshal (_beag );if _abe !=nil {return _abe ;};const _bcf ="\u0068\u00619\u004e\u004b\u0038]\u0052\u0062\u004c\u002a\u006d\u0034\u004c\u004b\u0057"; +_aba ,_abe =_cadg ([]byte (_bcf ),_aba );if _abe !=nil {return _abe ;};_abe =_dc .WriteFile (_gagg ,_aba ,0600);if _abe !=nil {return _abe ;};return nil ;};func _abg (_gg string )(LicenseKey ,error ){var _gge LicenseKey ;_bceb ,_fdd :=_egb (_fd ,_ge ,_gg ); +if _fdd !=nil {return _gge ,_fdd ;};_cde ,_fdd :=_bce (_eec ,_bceb );if _fdd !=nil {return _gge ,_fdd ;};_fdd =_ee .Unmarshal (_cde ,&_gge );if _fdd !=nil {return _gge ,_fdd ;};_gge .CreatedAt =_g .Unix (_gge .CreatedAtInt ,0);if _gge .ExpiresAtInt > 0{_cfa :=_g .Unix (_gge .ExpiresAtInt ,0); +_gge .ExpiresAt =&_cfa ;};return _gge ,nil ;};var _ea =_g .Date (2019,6,6,0,0,0,0,_g .UTC );const (_fd ="\u002d\u002d\u002d--\u0042\u0045\u0047\u0049\u004e\u0020\u0055\u004e\u0049D\u004fC\u0020L\u0049C\u0045\u004e\u0053\u0045\u0020\u004b\u0045\u0059\u002d\u002d\u002d\u002d\u002d"; +_ge ="\u002d\u002d\u002d\u002d\u002d\u0045\u004e\u0044\u0020\u0055\u004e\u0049\u0044\u004f\u0043 \u004cI\u0043\u0045\u004e\u0053\u0045\u0020\u004b\u0045\u0059\u002d\u002d\u002d\u002d\u002d";);type meteredStatusForm struct{};type defaultStateHolder struct{}; +func (_af defaultStateHolder )loadState (_ccef string )(reportState ,error ){_cbe ,_gaf :=_egdf ();if _gaf !=nil {return reportState {},_gaf ;};_gaf =_d .MkdirAll (_cbe ,0777);if _gaf !=nil {return reportState {},_gaf ;};if len (_ccef )< 20{return reportState {},_ce .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006b\u0065\u0079"); +};_aeb :=[]byte (_ccef );_efb :=_cg .Sum512_256 (_aeb [:20]);_baca :=_dd .EncodeToString (_efb [:]);_faac :=_ef .Join (_cbe ,_baca );_aga ,_gaf :=_dc .ReadFile (_faac );if _gaf !=nil {if _d .IsNotExist (_gaf ){return reportState {},nil ;};_dbb .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gaf ); +return reportState {},_ce .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061");};const _adb ="\u0068\u00619\u004e\u004b\u0038]\u0052\u0062\u004c\u002a\u006d\u0034\u004c\u004b\u0057";_aga ,_gaf =_cdae ([]byte (_adb ),_aga );if _gaf !=nil {return reportState {},_gaf ; +};var _fec reportState ;_gaf =_ee .Unmarshal (_aga ,&_fec );if _gaf !=nil {_dbb .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061\u003a\u0020\u0025\u0076",_gaf );return reportState {},_ce .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061"); +};return _fec ,nil ;};func SetLicenseKey (content string ,customerName string )error {_gef ,_gcg :=_abg (content );if _gcg !=nil {_dbb .Log .Error ("\u004c\u0069c\u0065\u006e\u0073\u0065\u0020\u0063\u006f\u0064\u0065\u0020\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0065\u0072\u0072\u006f\u0072: \u0025\u0076",_gcg ); +return _gcg ;};if !_a .EqualFold (_gef .CustomerName ,customerName ){_dbb .Log .Error ("L\u0069ce\u006es\u0065 \u0063\u006f\u0064\u0065\u0020i\u0073\u0073\u0075e\u0020\u002d\u0020\u0043\u0075s\u0074\u006f\u006de\u0072\u0020\u006e\u0061\u006d\u0065\u0020\u006d\u0069\u0073\u006da\u0074\u0063\u0068, e\u0078\u0070\u0065\u0063\u0074\u0065d\u0020\u0027\u0025\u0073\u0027\u002c\u0020\u0062\u0075\u0074\u0020\u0067o\u0074 \u0027\u0025\u0073\u0027",_gef .CustomerName ,customerName ); +return _df .Errorf ("\u0063\u0075\u0073\u0074\u006fm\u0065\u0072\u0020\u006e\u0061\u006d\u0065\u0020\u006d\u0069\u0073\u006d\u0061t\u0063\u0068\u002c\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0027\u0025\u0073\u0027\u002c\u0020\u0062\u0075\u0074\u0020\u0067\u006f\u0074\u0020\u0027\u0025\u0073'",_gef .CustomerName ,customerName ); +};_gcg =_gef .Validate ();if _gcg !=nil {_dbb .Log .Error ("\u004c\u0069\u0063\u0065\u006e\u0073e\u0020\u0063\u006f\u0064\u0065\u0020\u0076\u0061\u006c\u0069\u0064\u0061\u0074i\u006f\u006e\u0020\u0065\u0072\u0072\u006fr\u003a\u0020\u0025\u0076",_gcg ); +return _gcg ;};_dfd =&_gef ;return nil ;};func Track (docKey string ,useKey string )error {return _bdfb (docKey ,useKey ,!_dfd ._cgf )};type meteredClient struct{_cbc string ;_bca string ;_ccd *_cd .Client ;};func SetMeteredKeyPersistentCache (val bool ){_dfd ._cgf =val }; +func (_bdg *LicenseKey )IsLicensed ()bool {return _bdg .Tier !=LicenseTierUnlicensed ||_bdg ._gea };var _ddf stateLoader =defaultStateHolder {};var _eac =&_ca .Mutex {};var _deea map[string ]int ;func MakeUnlicensedKey ()*LicenseKey {_fbg :=LicenseKey {}; +_fbg .CustomerName ="\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064";_fbg .Tier =LicenseTierUnlicensed ;_fbg .CreatedAt =_g .Now ().UTC ();_fbg .CreatedAtInt =_fbg .CreatedAt .Unix ();return &_fbg ;};const _gcb ="\u0055\u004e\u0049\u0050DF\u005f\u004c\u0049\u0043\u0045\u004e\u0053\u0045\u005f\u0050\u0041\u0054\u0048"; +const (LicenseTierUnlicensed ="\u0075\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064";LicenseTierCommunity ="\u0063o\u006d\u006d\u0075\u006e\u0069\u0074y";LicenseTierIndividual ="\u0069\u006e\u0064\u0069\u0076\u0069\u0064\u0075\u0061\u006c";LicenseTierBusiness ="\u0062\u0075\u0073\u0069\u006e\u0065\u0073\u0073"; +);type reportState struct{Instance string `json:"inst"`;Next string `json:"n"`;Docs int64 `json:"d"`;NumErrors int64 `json:"e"`;LimitDocs bool `json:"ld"`;RemainingDocs int64 `json:"rd"`;LastReported _g .Time `json:"lr"`;LastWritten _g .Time `json:"lw"`; +Usage map[string ]int `json:"u"`;};func _cc (_ege string ,_ga []byte )(string ,error ){_ae ,_ :=_db .Decode ([]byte (_ege ));if _ae ==nil {return "",_df .Errorf ("\u0050\u0072\u0069\u0076\u004b\u0065\u0079\u0020\u0066a\u0069\u006c\u0065\u0064");};_bbd ,_gf :=_bbe .ParsePKCS1PrivateKey (_ae .Bytes ); +if _gf !=nil {return "",_gf ;};_fb :=_cg .New ();_fb .Write (_ga );_ccb :=_fb .Sum (nil );_cgb ,_gf :=_eff .SignPKCS1v15 (_ad .Reader ,_bbd ,_e .SHA512 ,_ccb );if _gf !=nil {return "",_gf ;};_effe :=_fg .StdEncoding .EncodeToString (_ga );_effe +="\u000a\u002b\u000a"; +_effe +=_fg .StdEncoding .EncodeToString (_cgb );return _effe ,nil ;};var _beg map[string ]struct{};func _dgc (_eaf []byte )(_eg .Reader ,error ){_acg :=new (_bc .Buffer );_adbaf :=_f .NewWriter (_acg );_adbaf .Write (_eaf );_aaa :=_adbaf .Close ();if _aaa !=nil {return nil ,_aaa ; +};return _acg ,nil ;};type MeteredStatus struct{OK bool ;Credits int64 ;Used int64 ;};const _cbg ="U\u004eI\u0050\u0044\u0046\u005f\u0043\u0055\u0053\u0054O\u004d\u0045\u0052\u005fNA\u004d\u0045";type meteredUsageCheckinForm struct{Instance string `json:"inst"`; Next string `json:"next"`;UsageNumber int `json:"usage_number"`;NumFailed int64 `json:"num_failed"`;Hostname string `json:"hostname"`;LocalIP string `json:"local_ip"`;MacAddress string `json:"mac_address"`;Package string `json:"package"`;PackageVersion string `json:"package_version"`; -Usage map[string ]int `json:"u"`;IsPersistentCache bool `json:"is_persistent_cache"`;Timestamp int64 `json:"timestamp"`;};func (_fdc *LicenseKey )isExpired ()bool {return _fdc .getExpiryDateToCompare ().After (*_fdc .ExpiresAt )};func (_bac defaultStateHolder )updateState (_beg ,_dcd ,_eafgg string ,_ddg int ,_bf bool ,_dag int ,_dfgd int ,_aef _ac .Time ,_fad map[string ]int )error {_abb ,_fdg :=_dg (); -if _fdg !=nil {return _fdg ;};if len (_beg )< 20{return _ad .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006b\u0065\u0079");};_aedf :=[]byte (_beg );_agb :=_dca .Sum512_256 (_aedf [:20]);_gdf :=_ba .EncodeToString (_agb [:]);_ebca :=_e .Join (_abb ,_gdf ); -var _gfg reportState ;_gfg .Docs =int64 (_ddg );_gfg .NumErrors =int64 (_dfgd );_gfg .LimitDocs =_bf ;_gfg .RemainingDocs =int64 (_dag );_gfg .LastWritten =_ac .Now ().UTC ();_gfg .LastReported =_aef ;_gfg .Instance =_dcd ;_gfg .Next =_eafgg ;_gfg .Usage =_fad ; -_gea ,_fdg :=_ea .Marshal (_gfg );if _fdg !=nil {return _fdg ;};const _cgg ="\u0068\u00619\u004e\u004b\u0038]\u0052\u0062\u004c\u002a\u006d\u0034\u004c\u004b\u0057";_gea ,_fdg =_gdc ([]byte (_cgg ),_gea );if _fdg !=nil {return _fdg ;};_fdg =_b .WriteFile (_ebca ,_gea ,0600); -if _fdg !=nil {return _fdg ;};return nil ;};func (_dfg *LicenseKey )IsLicensed ()bool {return _dfg .Tier !=LicenseTierUnlicensed ||_dfg ._egg };var _cae =&_c .Mutex {};func _adg (_gff []byte )(_gd .Reader ,error ){_fbd :=new (_dd .Buffer );_geg :=_a .NewWriter (_fbd ); -_geg .Write (_gff );_fbec :=_geg .Close ();if _fbec !=nil {return nil ,_fbec ;};return _fbd ,nil ;};func (_db *LicenseKey )getExpiryDateToCompare ()_ac .Time {if _db .Trial {return _ac .Now ().UTC ();};return _adb .ReleasedAt ;};func _bcf (_gab *_gf .Response )(_gd .ReadCloser ,error ){var _daab error ; -var _cgf _gd .ReadCloser ;switch _eg .ToLower (_gab .Header .Get ("\u0043\u006fn\u0074\u0065\u006et\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")){case "\u0067\u007a\u0069\u0070":_cgf ,_daab =_a .NewReader (_gab .Body );if _daab !=nil {return _cgf ,_daab ; -};defer _cgf .Close ();default:_cgf =_gab .Body ;};return _cgf ,nil ;};func TrackUse (useKey string ){if _gfef ==nil {return ;};if !_gfef ._egg ||len (_gfef ._cbb )==0{return ;};if len (useKey )==0{return ;};_cae .Lock ();defer _cae .Unlock ();if _gad ==nil {_gad =map[string ]int {}; -};_gad [useKey ]++;};func GetMeteredState ()(MeteredStatus ,error ){if _gfef ==nil {return MeteredStatus {},_ad .New ("\u006c\u0069\u0063\u0065ns\u0065\u0020\u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0073\u0065\u0074");};if !_gfef ._egg ||len (_gfef ._cbb )==0{return MeteredStatus {},_ad .New ("\u0061p\u0069 \u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0073\u0065\u0074"); -};_dbf ,_bef :=_bed .loadState (_gfef ._cbb );if _bef !=nil {_adb .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_bef );return MeteredStatus {},_bef ;};if _dbf .Docs > 0{_af :=_abg ("","",true );if _af !=nil {return MeteredStatus {},_af ;}; -};_cae .Lock ();defer _cae .Unlock ();_ff :=_cbbf ();_ff ._gba =_gfef ._cbb ;_dbff ,_bef :=_ff .getStatus ();if _bef !=nil {return MeteredStatus {},_bef ;};if !_dbff .Valid {return MeteredStatus {},_ad .New ("\u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0076\u0061\u006c\u0069\u0064"); -};_ffb :=MeteredStatus {OK :true ,Credits :_dbff .OrgCredits ,Used :_dbff .OrgUsed };return _ffb ,nil ;};func _ega (_fc string ,_dfe []byte )(string ,error ){_cag ,_ :=_aa .Decode ([]byte (_fc ));if _cag ==nil {return "",_fd .Errorf ("\u0050\u0072\u0069\u0076\u004b\u0065\u0079\u0020\u0066a\u0069\u006c\u0065\u0064"); -};_gc ,_dfeb :=_cff .ParsePKCS1PrivateKey (_cag .Bytes );if _dfeb !=nil {return "",_dfeb ;};_gdd :=_dca .New ();_gdd .Write (_dfe );_add :=_gdd .Sum (nil );_bc ,_dfeb :=_fa .SignPKCS1v15 (_ce .Reader ,_gc ,_g .SHA512 ,_add );if _dfeb !=nil {return "",_dfeb ; -};_ga :=_gfe .StdEncoding .EncodeToString (_dfe );_ga +="\u000a\u002b\u000a";_ga +=_gfe .StdEncoding .EncodeToString (_bc );return _ga ,nil ;};const _gcf ="\u0055N\u0049D\u004f\u0043\u005f\u004c\u0049C\u0045\u004eS\u0045\u005f\u0044\u0049\u0052";type reportState struct{Instance string `json:"inst"`; -Next string `json:"n"`;Docs int64 `json:"d"`;NumErrors int64 `json:"e"`;LimitDocs bool `json:"ld"`;RemainingDocs int64 `json:"rd"`;LastReported _ac .Time `json:"lr"`;LastWritten _ac .Time `json:"lw"`;Usage map[string ]int `json:"u"`;};func _fgab ()string {_dfd :=_f .Getenv ("\u0048\u004f\u004d\u0045"); -if len (_dfd )==0{_dfd ,_ =_f .UserHomeDir ();};return _dfd ;};var _gad map[string ]int ;func MakeUnlicensedKey ()*LicenseKey {_ceb :=LicenseKey {};_ceb .CustomerName ="\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064";_ceb .Tier =LicenseTierUnlicensed ; -_ceb .CreatedAt =_ac .Now ().UTC ();_ceb .CreatedAtInt =_ceb .CreatedAt .Unix ();return &_ceb ;};func _eb (_fdb string ,_cd string )([]byte ,error ){var (_ec int ;_eafg string ;);for _ ,_eafg =range []string {"\u000a\u002b\u000a","\u000d\u000a\u002b\r\u000a","\u0020\u002b\u0020"}{if _ec =_eg .Index (_cd ,_eafg ); -_ec !=-1{break ;};};if _ec ==-1{return nil ,_fd .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u002c \u0073i\u0067n\u0061t\u0075\u0072\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072");};_de :=_cd [:_ec ]; -_cfa :=_ec +len (_eafg );_cba :=_cd [_cfa :];if _de ==""||_cba ==""{return nil ,_fd .Errorf ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u0069n\u0070\u0075\u0074,\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020or\u0069\u0067\u0069n\u0061\u006c \u006f\u0072\u0020\u0073\u0069\u0067n\u0061\u0074u\u0072\u0065"); -};_aad ,_fab :=_gfe .StdEncoding .DecodeString (_de );if _fab !=nil {return nil ,_fd .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u006f\u0072\u0069\u0067\u0069\u006ea\u006c");};_ed ,_fab :=_gfe .StdEncoding .DecodeString (_cba ); -if _fab !=nil {return nil ,_fd .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065");};_cbf ,_ :=_aa .Decode ([]byte (_fdb ));if _cbf ==nil {return nil ,_fd .Errorf ("\u0050\u0075\u0062\u004b\u0065\u0079\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); -};_fda ,_fab :=_cff .ParsePKIXPublicKey (_cbf .Bytes );if _fab !=nil {return nil ,_fab ;};_fcf :=_fda .(*_fa .PublicKey );if _fcf ==nil {return nil ,_fd .Errorf ("\u0050u\u0062\u004b\u0065\u0079\u0020\u0063\u006f\u006e\u0076\u0065\u0072s\u0069\u006f\u006e\u0020\u0066\u0061\u0069\u006c\u0065\u0064"); -};_dfb :=_dca .New ();_dfb .Write (_aad );_bca :=_dfb .Sum (nil );_fab =_fa .VerifyPKCS1v15 (_fcf ,_g .SHA512 ,_bca ,_ed );if _fab !=nil {return nil ,_fab ;};return _aad ,nil ;};func _abg (_fed string ,_fag string ,_baf bool )error {if _gfef ==nil {return _ad .New ("\u006e\u006f\u0020\u006c\u0069\u0063\u0065\u006e\u0073e\u0020\u006b\u0065\u0079"); -};if !_gfef ._egg ||len (_gfef ._cbb )==0{return nil ;};if len (_fed )==0&&!_baf {return _ad .New ("\u0064\u006f\u0063\u004b\u0065\u0079\u0020\u006e\u006ft\u0020\u0073\u0065\u0074");};_cae .Lock ();defer _cae .Unlock ();if _afg ==nil {_afg =map[string ]struct{}{}; -};if _gad ==nil {_gad =map[string ]int {};};_ffc :=0;if len (_fed )> 0{_ ,_fbea :=_afg [_fed ];if !_fbea {_afg [_fed ]=struct{}{};_ffc ++;};};if _ffc ==0&&!_baf {return nil ;};_gad [_fag ]++;_dac :=_ac .Now ();_ceg ,_egad :=_bed .loadState (_gfef ._cbb ); -if _egad !=nil {_adb .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_egad );return _egad ;};if _ceg .Usage ==nil {_ceg .Usage =map[string ]int {};};for _bcdf ,_dfa :=range _gad {if _bcdf !=""{_ceg .Usage [_bcdf ]+=_dfa ;};};_gad =nil ;const _fgc =24*_ac .Hour ; -const _bb =3*24*_ac .Hour ;if len (_ceg .Instance )==0||_dac .Sub (_ceg .LastReported )> _fgc ||(_ceg .LimitDocs &&_ceg .RemainingDocs <=_ceg .Docs +int64 (_ffc ))||_baf {_addc ,_eea :=_f .Hostname ();if _eea !=nil {return _eea ;};_eecg :=_ceg .Docs ;_bgd ,_dda ,_eea :=_fcc (); -if _eea !=nil {_adb .Log .Debug ("\u0055\u006e\u0061b\u006c\u0065\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u006c\u006fc\u0061\u006c\u0020\u0061\u0064\u0064\u0072\u0065\u0073\u0073\u003a\u0020\u0025\u0073",_eea .Error ());_bgd =append (_bgd ,"\u0069n\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0020n\u006ft\u0020a\u0076\u0061\u0069\u006c\u0061\u0062\u006ce"); -_dda =append (_dda ,"\u0069n\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0020n\u006ft\u0020a\u0076\u0061\u0069\u006c\u0061\u0062\u006ce");}else {_gb .Strings (_dda );_gb .Strings (_bgd );_bafa ,_acb :=_aga ();if _acb !=nil {return _acb ;};_abd :=false ; -for _ ,_cdd :=range _dda {if _cdd ==_bafa .String (){_abd =true ;};};if !_abd {_dda =append (_dda ,_bafa .String ());};};_bgf :=_cbbf ();_bgf ._gba =_gfef ._cbb ;_eecg +=int64 (_ffc );_aecd :=meteredUsageCheckinForm {Instance :_ceg .Instance ,Next :_ceg .Next ,UsageNumber :int (_eecg ),NumFailed :_ceg .NumErrors ,Hostname :_addc ,LocalIP :_eg .Join (_dda ,"\u002c\u0020"),MacAddress :_eg .Join (_bgd ,"\u002c\u0020"),Package :"\u0075\u006e\u0069\u0070\u0064\u0066",PackageVersion :_adb .Version ,Usage :_ceg .Usage ,IsPersistentCache :_gfef ._cab ,Timestamp :_dac .Unix ()}; -if len (_bgd )==0{_aecd .MacAddress ="\u006e\u006f\u006e\u0065";};_fge :=int64 (0);_agd :=_ceg .NumErrors ;_aaf :=_dac ;_fdgd :=0;_dfbe :=_ceg .LimitDocs ;_ef ,_eea :=_bgf .checkinUsage (_aecd );if _eea !=nil {if _dac .Sub (_ceg .LastReported )> _bb {if !_ef .Success {return _ad .New (_ef .Message ); -};return _ad .New ("\u0074\u006f\u006f\u0020\u006c\u006f\u006e\u0067\u0020\u0073\u0069\u006e\u0063\u0065\u0020\u006c\u0061\u0073\u0074\u0020\u0073\u0075\u0063\u0063e\u0073\u0073\u0066\u0075\u006c \u0063\u0068e\u0063\u006b\u0069\u006e");};_fge =_eecg ;_agd ++; -_aaf =_ceg .LastReported ;}else {_dfbe =_ef .LimitDocs ;_fdgd =_ef .RemainingDocs ;_agd =0;};if len (_ef .Instance )==0{_ef .Instance =_aecd .Instance ;};if len (_ef .Next )==0{_ef .Next =_aecd .Next ;};_eea =_bed .updateState (_bgf ._gba ,_ef .Instance ,_ef .Next ,int (_fge ),_dfbe ,_fdgd ,int (_agd ),_aaf ,nil ); -if _eea !=nil {return _eea ;};if !_ef .Success {return _fd .Errorf ("\u0065r\u0072\u006f\u0072\u003a\u0020\u0025s",_ef .Message );};}else {_egad =_bed .updateState (_gfef ._cbb ,_ceg .Instance ,_ceg .Next ,int (_ceg .Docs )+_ffc ,_ceg .LimitDocs ,int (_ceg .RemainingDocs ),int (_ceg .NumErrors ),_ceg .LastReported ,_ceg .Usage ); -if _egad !=nil {return _egad ;};};return nil ;};func _acg (_acc string ,_bab string ,_fb string )(string ,error ){_aae :=_eg .Index (_fb ,_acc );if _aae ==-1{return "",_fd .Errorf ("\u0068\u0065a\u0064\u0065\u0072 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -};_cfb :=_eg .Index (_fb ,_bab );if _cfb ==-1{return "",_fd .Errorf ("\u0066\u006fo\u0074\u0065\u0072 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_dee :=_aae +len (_acc )+1;return _fb [_dee :_cfb -1],nil ;};var _gfef =MakeUnlicensedKey (); -func _cbg (_be string )(LicenseKey ,error ){var _ddca LicenseKey ;_gbb ,_gaf :=_acg (_gg ,_eaf ,_be );if _gaf !=nil {return _ddca ,_gaf ;};_aag ,_gaf :=_eb (_cdb ,_gbb );if _gaf !=nil {return _ddca ,_gaf ;};_gaf =_ea .Unmarshal (_aag ,&_ddca );if _gaf !=nil {return _ddca ,_gaf ; -};_ddca .CreatedAt =_ac .Unix (_ddca .CreatedAtInt ,0);if _ddca .ExpiresAtInt > 0{_ebd :=_ac .Unix (_ddca .ExpiresAtInt ,0);_ddca .ExpiresAt =&_ebd ;};return _ddca ,nil ;};type MeteredStatus struct{OK bool ;Credits int64 ;Used int64 ;};const (LicenseTierUnlicensed ="\u0075\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064"; -LicenseTierCommunity ="\u0063o\u006d\u006d\u0075\u006e\u0069\u0074y";LicenseTierIndividual ="\u0069\u006e\u0064\u0069\u0076\u0069\u0064\u0075\u0061\u006c";LicenseTierBusiness ="\u0062\u0075\u0073\u0069\u006e\u0065\u0073\u0073";);func _gdc (_fba ,_bdg []byte )([]byte ,error ){_caeg ,_agde :=_cf .NewCipher (_fba ); -if _agde !=nil {return nil ,_agde ;};_aca :=make ([]byte ,_cf .BlockSize +len (_bdg ));_bba :=_aca [:_cf .BlockSize ];if _ ,_dad :=_gd .ReadFull (_ce .Reader ,_bba );_dad !=nil {return nil ,_dad ;};_gdg :=_cb .NewCFBEncrypter (_caeg ,_bba );_gdg .XORKeyStream (_aca [_cf .BlockSize :],_bdg ); -_babb :=make ([]byte ,_gfe .URLEncoding .EncodedLen (len (_aca )));_gfe .URLEncoding .Encode (_babb ,_aca );return _babb ,nil ;};func _bacgd (_afab ,_abda []byte )([]byte ,error ){_fedg :=make ([]byte ,_gfe .URLEncoding .DecodedLen (len (_abda )));_agba ,_bee :=_gfe .URLEncoding .Decode (_fedg ,_abda ); -if _bee !=nil {return nil ,_bee ;};_fedg =_fedg [:_agba ];_def ,_bee :=_cf .NewCipher (_afab );if _bee !=nil {return nil ,_bee ;};if len (_fedg )< _cf .BlockSize {return nil ,_ad .New ("c\u0069p\u0068\u0065\u0072\u0074\u0065\u0078\u0074\u0020t\u006f\u006f\u0020\u0073ho\u0072\u0074"); -};_bcb :=_fedg [:_cf .BlockSize ];_fedg =_fedg [_cf .BlockSize :];_dde :=_cb .NewCFBDecrypter (_def ,_bcb );_dde .XORKeyStream (_fedg ,_fedg );return _fedg ,nil ;};var _bed stateLoader =defaultStateHolder {};func (_gfcf defaultStateHolder )loadState (_fbb string )(reportState ,error ){_daa ,_bcd :=_dg (); -if _bcd !=nil {return reportState {},_bcd ;};_bcd =_f .MkdirAll (_daa ,0777);if _bcd !=nil {return reportState {},_bcd ;};if len (_fbb )< 20{return reportState {},_ad .New ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006b\u0065\u0079");};_deb :=[]byte (_fbb ); -_fdgf :=_dca .Sum512_256 (_deb [:20]);_bacg :=_ba .EncodeToString (_fdgf [:]);_aeb :=_e .Join (_daa ,_bacg );_cef ,_bcd :=_b .ReadFile (_aeb );if _bcd !=nil {if _f .IsNotExist (_bcd ){return reportState {},nil ;};_adb .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_bcd ); -return reportState {},_ad .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061");};const _fgd ="\u0068\u00619\u004e\u004b\u0038]\u0052\u0062\u004c\u002a\u006d\u0034\u004c\u004b\u0057";_cef ,_bcd =_bacgd ([]byte (_fgd ),_cef );if _bcd !=nil {return reportState {},_bcd ; -};var _eeb reportState ;_bcd =_ea .Unmarshal (_cef ,&_eeb );if _bcd !=nil {_adb .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061\u003a\u0020\u0025\u0076",_bcd );return reportState {},_ad .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0061"); -};return _eeb ,nil ;};func (_bg *meteredClient )getStatus ()(meteredStatusResp ,error ){var _cbe meteredStatusResp ;_caf :=_bg ._dbc +"\u002fm\u0065t\u0065\u0072\u0065\u0064\u002f\u0073\u0074\u0061\u0074\u0075\u0073";var _ab meteredStatusForm ;_ebc ,_cee :=_ea .Marshal (_ab ); -if _cee !=nil {return _cbe ,_cee ;};_fdd ,_cee :=_adg (_ebc );if _cee !=nil {return _cbe ,_cee ;};_fe ,_cee :=_gf .NewRequest ("\u0050\u004f\u0053\u0054",_caf ,_fdd );if _cee !=nil {return _cbe ,_cee ;};_fe .Header .Add ("\u0043\u006f\u006et\u0065\u006e\u0074\u002d\u0054\u0079\u0070\u0065","\u0061\u0070p\u006c\u0069\u0063a\u0074\u0069\u006f\u006e\u002f\u006a\u0073\u006f\u006e"); -_fe .Header .Add ("\u0043\u006fn\u0074\u0065\u006et\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070");_fe .Header .Add ("\u0041c\u0063e\u0070\u0074\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070"); -_fe .Header .Add ("\u0058-\u0041\u0050\u0049\u002d\u004b\u0045Y",_bg ._gba );_gac ,_cee :=_bg ._eggd .Do (_fe );if _cee !=nil {return _cbe ,_cee ;};defer _gac .Body .Close ();if _gac .StatusCode !=200{return _cbe ,_fd .Errorf ("\u0066\u0061i\u006c\u0065\u0064\u0020t\u006f\u0020c\u0068\u0065\u0063\u006b\u0069\u006e\u002c\u0020s\u0074\u0061\u0074\u0075\u0073\u0020\u0063\u006f\u0064\u0065\u0020\u0069s\u003a\u0020\u0025\u0064",_gac .StatusCode ); -};_fabb ,_cee :=_afa (_gac );if _cee !=nil {return _cbe ,_cee ;};_cee =_ea .Unmarshal (_fabb ,&_cbe );if _cee !=nil {return _cbe ,_cee ;};return _cbe ,nil ;};func init (){_bgdf :=_f .Getenv (_bbe );_agc :=_f .Getenv (_cagd );if len (_bgdf )==0||len (_agc )==0{return ; -};_bd ,_cefd :=_b .ReadFile (_bgdf );if _cefd !=nil {_adb .Log .Error ("\u0055\u006eab\u006c\u0065\u0020t\u006f\u0020\u0072\u0065ad \u006cic\u0065\u006e\u0073\u0065\u0020\u0063\u006fde\u0020\u0066\u0069\u006c\u0065\u003a\u0020%\u0076",_cefd );return ;}; -_cefd =SetLicenseKey (string (_bd ),_agc );if _cefd !=nil {_adb .Log .Error ("\u0055\u006e\u0061b\u006c\u0065\u0020\u0074o\u0020\u006c\u006f\u0061\u0064\u0020\u006ci\u0063\u0065\u006e\u0073\u0065\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0076",_cefd ); -return ;};};var _cfc =_ac .Date (2010,1,1,0,0,0,0,_ac .UTC );type meteredClient struct{_dbc string ;_gba string ;_eggd *_gf .Client ;};func _aga ()(_ca .IP ,error ){_bfb ,_fgcd :=_ca .Dial ("\u0075\u0064\u0070","\u0038\u002e\u0038\u002e\u0038\u002e\u0038\u003a\u0038\u0030"); -if _fgcd !=nil {return nil ,_fgcd ;};defer _bfb .Close ();_aaa :=_bfb .LocalAddr ().(*_ca .UDPAddr );return _aaa .IP ,nil ;};func Track (docKey string ,useKey string )error {return _abg (docKey ,useKey ,!_gfef ._cab )};func _afa (_abdg *_gf .Response )([]byte ,error ){var _dff []byte ; -_ecb ,_ece :=_bcf (_abdg );if _ece !=nil {return _dff ,_ece ;};return _b .ReadAll (_ecb );};func SetLicenseKey (content string ,customerName string )error {_dbd ,_edfe :=_cbg (content );if _edfe !=nil {_adb .Log .Error ("\u004c\u0069c\u0065\u006e\u0073\u0065\u0020\u0063\u006f\u0064\u0065\u0020\u0064\u0065\u0063\u006f\u0064\u0065\u0020\u0065\u0072\u0072\u006f\u0072: \u0025\u0076",_edfe ); -return _edfe ;};if !_eg .EqualFold (_dbd .CustomerName ,customerName ){_adb .Log .Error ("L\u0069ce\u006es\u0065 \u0063\u006f\u0064\u0065\u0020i\u0073\u0073\u0075e\u0020\u002d\u0020\u0043\u0075s\u0074\u006f\u006de\u0072\u0020\u006e\u0061\u006d\u0065\u0020\u006d\u0069\u0073\u006da\u0074\u0063\u0068, e\u0078\u0070\u0065\u0063\u0074\u0065d\u0020\u0027\u0025\u0073\u0027\u002c\u0020\u0062\u0075\u0074\u0020\u0067o\u0074 \u0027\u0025\u0073\u0027",_dbd .CustomerName ,customerName ); -return _fd .Errorf ("\u0063\u0075\u0073\u0074\u006fm\u0065\u0072\u0020\u006e\u0061\u006d\u0065\u0020\u006d\u0069\u0073\u006d\u0061t\u0063\u0068\u002c\u0020\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0027\u0025\u0073\u0027\u002c\u0020\u0062\u0075\u0074\u0020\u0067\u006f\u0074\u0020\u0027\u0025\u0073'",_dbd .CustomerName ,customerName ); -};_edfe =_dbd .Validate ();if _edfe !=nil {_adb .Log .Error ("\u004c\u0069\u0063\u0065\u006e\u0073e\u0020\u0063\u006f\u0064\u0065\u0020\u0076\u0061\u006c\u0069\u0064\u0061\u0074i\u006f\u006e\u0020\u0065\u0072\u0072\u006fr\u003a\u0020\u0025\u0076",_edfe ); -return _edfe ;};_gfef =&_dbd ;return nil ;};func _fcc ()([]string ,[]string ,error ){_cc ,_dcc :=_ca .Interfaces ();if _dcc !=nil {return nil ,nil ,_dcc ;};var _fgde []string ;var _ddce []string ;for _ ,_cagc :=range _cc {if _cagc .Flags &_ca .FlagUp ==0||_dd .Equal (_cagc .HardwareAddr ,nil ){continue ; -};_edf ,_acfe :=_cagc .Addrs ();if _acfe !=nil {return nil ,nil ,_acfe ;};_edbc :=0;for _ ,_fddc :=range _edf {var _fged _ca .IP ;switch _bce :=_fddc .(type ){case *_ca .IPNet :_fged =_bce .IP ;case *_ca .IPAddr :_fged =_bce .IP ;};if _fged .IsLoopback (){continue ; -};if _fged .To4 ()==nil {continue ;};_ddce =append (_ddce ,_fged .String ());_edbc ++;};_ebg :=_cagc .HardwareAddr .String ();if _ebg !=""&&_edbc > 0{_fgde =append (_fgde ,_ebg );};};return _fgde ,_ddce ,nil ;};type LicenseKey struct{LicenseId string `json:"license_id"`; -CustomerId string `json:"customer_id"`;CustomerName string `json:"customer_name"`;Tier string `json:"tier"`;CreatedAt _ac .Time `json:"-"`;CreatedAtInt int64 `json:"created_at"`;ExpiresAt *_ac .Time `json:"-"`;ExpiresAtInt int64 `json:"expires_at"`;CreatedBy string `json:"created_by"`; -CreatorName string `json:"creator_name"`;CreatorEmail string `json:"creator_email"`;UniPDF bool `json:"unipdf"`;UniOffice bool `json:"unioffice"`;UniHTML bool `json:"unihtml"`;Trial bool `json:"trial"`;_egg bool ;_cbb string ;_cab bool ;};type meteredStatusResp struct{Valid bool `json:"valid"`; -OrgCredits int64 `json:"org_credits"`;OrgUsed int64 `json:"org_used"`;OrgRemaining int64 `json:"org_remaining"`;}; \ No newline at end of file +Usage map[string ]int `json:"u"`;IsPersistentCache bool `json:"is_persistent_cache"`;Timestamp int64 `json:"timestamp"`;};func _cdae (_edg ,_baa []byte )([]byte ,error ){_geeb :=make ([]byte ,_fg .URLEncoding .DecodedLen (len (_baa )));_bfg ,_faaa :=_fg .URLEncoding .Decode (_geeb ,_baa ); +if _faaa !=nil {return nil ,_faaa ;};_geeb =_geeb [:_bfg ];_ded ,_faaa :=_cf .NewCipher (_edg );if _faaa !=nil {return nil ,_faaa ;};if len (_geeb )< _cf .BlockSize {return nil ,_ce .New ("c\u0069p\u0068\u0065\u0072\u0074\u0065\u0078\u0074\u0020t\u006f\u006f\u0020\u0073ho\u0072\u0074"); +};_bee :=_geeb [:_cf .BlockSize ];_geeb =_geeb [_cf .BlockSize :];_cbbb :=_fe .NewCFBDecrypter (_ded ,_bee );_cbbb .XORKeyStream (_geeb ,_geeb );return _geeb ,nil ;};func _egdf ()(string ,error ){_cgbf :=_a .TrimSpace (_d .Getenv (_cdd ));if _cgbf ==""{_dbb .Log .Debug ("\u0024\u0025\u0073\u0020e\u006e\u0076\u0069\u0072\u006f\u006e\u006d\u0065\u006e\u0074\u0020\u0076\u0061\u0072\u0069\u0061\u0062l\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e\u0020\u0057\u0069\u006c\u006c\u0020\u0075\u0073\u0065\u0020\u0068\u006f\u006d\u0065\u0020\u0064\u0069\u0072\u0065\u0063\u0074\u006f\u0072\u0079\u0020\u0074\u006f\u0020s\u0074\u006f\u0072\u0065\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020in\u0066o\u0072\u006d\u0061\u0074\u0069\u006f\u006e\u002e",_cdd ); +_gdg :=_fafg ();if len (_gdg )==0{return "",_df .Errorf ("r\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0024\u0025\u0073\u0020\u0065\u006e\u0076\u0069\u0072\u006f\u006e\u006d\u0065\u006e\u0074\u0020\u0076\u0061r\u0069a\u0062\u006c\u0065\u0020o\u0072\u0020h\u006f\u006d\u0065\u0020\u0064\u0069\u0072\u0065\u0063\u0074\u006f\u0072\u0079\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",_cdd ); +};_cgbf =_ef .Join (_gdg ,"\u002eu\u006e\u0069\u0064\u006f\u0063");};_cafe :=_d .MkdirAll (_cgbf ,0777);if _cafe !=nil {return "",_cafe ;};return _cgbf ,nil ;};var _ec =_g .Date (2020,1,1,0,0,0,0,_g .UTC );func _egb (_ada string ,_ed string ,_dee string )(string ,error ){_egd :=_a .Index (_dee ,_ada ); +if _egd ==-1{return "",_df .Errorf ("\u0068\u0065a\u0064\u0065\u0072 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_fa :=_a .Index (_dee ,_ed );if _fa ==-1{return "",_df .Errorf ("\u0066\u006fo\u0074\u0065\u0072 \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +};_abd :=_egd +len (_ada )+1;return _dee [_abd :_fa -1],nil ;};func (_ccc *LicenseKey )getExpiryDateToCompare ()_g .Time {if _ccc .Trial {return _g .Now ().UTC ();};return _dbb .ReleasedAt ;};var _effg =_g .Date (2010,1,1,0,0,0,0,_g .UTC );func _bdb (_dagb *_cd .Response )([]byte ,error ){var _baf []byte ; +_bbb ,_gbe :=_cac (_dagb );if _gbe !=nil {return _baf ,_gbe ;};return _dc .ReadAll (_bbb );};func TrackUse (useKey string ){if _dfd ==nil {return ;};if !_dfd ._gea ||len (_dfd ._dda )==0{return ;};if len (useKey )==0{return ;};_eac .Lock ();defer _eac .Unlock (); +if _deea ==nil {_deea =map[string ]int {};};_deea [useKey ]++;};func _agef (_gba ,_eba string )string {_fc :=[]byte (_gba );_ggf :=_cag .New (_bb .New ,_fc );_ggf .Write ([]byte (_eba ));return _fg .StdEncoding .EncodeToString (_ggf .Sum (nil ));};func init (){_ace :=_d .Getenv (_gcb ); +_edd :=_d .Getenv (_cbg );if len (_ace )==0||len (_edd )==0{return ;};_gdd ,_gae :=_dc .ReadFile (_ace );if _gae !=nil {_dbb .Log .Error ("\u0055\u006eab\u006c\u0065\u0020t\u006f\u0020\u0072\u0065ad \u006cic\u0065\u006e\u0073\u0065\u0020\u0063\u006fde\u0020\u0066\u0069\u006c\u0065\u003a\u0020%\u0076",_gae ); +return ;};_gae =SetLicenseKey (string (_gdd ),_edd );if _gae !=nil {_dbb .Log .Error ("\u0055\u006e\u0061b\u006c\u0065\u0020\u0074o\u0020\u006c\u006f\u0061\u0064\u0020\u006ci\u0063\u0065\u006e\u0073\u0065\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0076",_gae ); +return ;};};func (_bae *meteredClient )getStatus ()(meteredStatusResp ,error ){var _faa meteredStatusResp ;_efa :=_bae ._cbc +"\u002fm\u0065t\u0065\u0072\u0065\u0064\u002f\u0073\u0074\u0061\u0074\u0075\u0073";var _eab meteredStatusForm ;_gb ,_cda :=_ee .Marshal (_eab ); +if _cda !=nil {return _faa ,_cda ;};_cfag ,_cda :=_dgc (_gb );if _cda !=nil {return _faa ,_cda ;};_eb ,_cda :=_cd .NewRequest ("\u0050\u004f\u0053\u0054",_efa ,_cfag );if _cda !=nil {return _faa ,_cda ;};_eb .Header .Add ("\u0043\u006f\u006et\u0065\u006e\u0074\u002d\u0054\u0079\u0070\u0065","\u0061\u0070p\u006c\u0069\u0063a\u0074\u0069\u006f\u006e\u002f\u006a\u0073\u006f\u006e"); +_eb .Header .Add ("\u0043\u006fn\u0074\u0065\u006et\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070");_eb .Header .Add ("\u0041c\u0063e\u0070\u0074\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0067\u007a\u0069\u0070"); +_eb .Header .Add ("\u0058-\u0041\u0050\u0049\u002d\u004b\u0045Y",_bae ._bca );_fbc ,_cda :=_bae ._ccd .Do (_eb );if _cda !=nil {return _faa ,_cda ;};defer _fbc .Body .Close ();if _fbc .StatusCode !=200{return _faa ,_df .Errorf ("\u0066\u0061i\u006c\u0065\u0064\u0020t\u006f\u0020c\u0068\u0065\u0063\u006b\u0069\u006e\u002c\u0020s\u0074\u0061\u0074\u0075\u0073\u0020\u0063\u006f\u0064\u0065\u0020\u0069s\u003a\u0020\u0025\u0064",_fbc .StatusCode ); +};_cce ,_cda :=_bdb (_fbc );if _cda !=nil {return _faa ,_cda ;};_cda =_ee .Unmarshal (_cce ,&_faa );if _cda !=nil {return _faa ,_cda ;};return _faa ,nil ;};func _fafg ()string {_egbf :=_d .Getenv ("\u0048\u004f\u004d\u0045");if len (_egbf )==0{_egbf ,_ =_d .UserHomeDir (); +};return _egbf ;};func _bdfb (_afd string ,_baeg string ,_bbc bool )error {if _dfd ==nil {return _ce .New ("\u006e\u006f\u0020\u006c\u0069\u0063\u0065\u006e\u0073e\u0020\u006b\u0065\u0079");};if !_dfd ._gea ||len (_dfd ._dda )==0{return nil ;};if len (_afd )==0&&!_bbc {return _ce .New ("\u0064\u006f\u0063\u004b\u0065\u0079\u0020\u006e\u006ft\u0020\u0073\u0065\u0074"); +};_eac .Lock ();defer _eac .Unlock ();if _beg ==nil {_beg =map[string ]struct{}{};};if _deea ==nil {_deea =map[string ]int {};};_ff :=0;if len (_afd )> 0{_ ,_cea :=_beg [_afd ];if !_cea {_beg [_afd ]=struct{}{};_ff ++;};};if _ff ==0&&!_bbc {return nil ; +};_deea [_baeg ]++;_gc :=_g .Now ();_bg ,_ecc :=_ddf .loadState (_dfd ._dda );if _ecc !=nil {_dbb .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ecc );return _ecc ;};if _bg .Usage ==nil {_bg .Usage =map[string ]int {};};for _dgg ,_bde :=range _deea {if _dgg !=""{_bg .Usage [_dgg ]+=_bde ; +};};_deea =nil ;const _acf =24*_g .Hour ;const _eace =3*24*_g .Hour ;if len (_bg .Instance )==0||_gc .Sub (_bg .LastReported )> _acf ||(_bg .LimitDocs &&_bg .RemainingDocs <=_bg .Docs +int64 (_ff ))||_bbc {_dfb ,_ebga :=_d .Hostname ();if _ebga !=nil {return _ebga ; +};_ddc :=_bg .Docs ;_gga ,_bgf ,_ebga :=_cga ();if _ebga !=nil {_dbb .Log .Debug ("\u0055\u006e\u0061b\u006c\u0065\u0020\u0074o\u0020\u0067\u0065\u0074\u0020\u006c\u006fc\u0061\u006c\u0020\u0061\u0064\u0064\u0072\u0065\u0073\u0073\u003a\u0020\u0025\u0073",_ebga .Error ()); +_gga =append (_gga ,"\u0069n\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0020n\u006ft\u0020a\u0076\u0061\u0069\u006c\u0061\u0062\u006ce");_bgf =append (_bgf ,"\u0069n\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0020n\u006ft\u0020a\u0076\u0061\u0069\u006c\u0061\u0062\u006ce"); +}else {_b .Strings (_bgf );_b .Strings (_gga );_caaf ,_dag :=_geed ();if _dag !=nil {return _dag ;};_bbg :=false ;for _ ,_adba :=range _bgf {if _adba ==_caaf .String (){_bbg =true ;};};if !_bbg {_bgf =append (_bgf ,_caaf .String ());};};_afa :=_gda (); +_afa ._bca =_dfd ._dda ;_ddc +=int64 (_ff );_dgef :=meteredUsageCheckinForm {Instance :_bg .Instance ,Next :_bg .Next ,UsageNumber :int (_ddc ),NumFailed :_bg .NumErrors ,Hostname :_dfb ,LocalIP :_a .Join (_bgf ,"\u002c\u0020"),MacAddress :_a .Join (_gga ,"\u002c\u0020"),Package :"\u0075\u006e\u0069\u0070\u0064\u0066",PackageVersion :_dbb .Version ,Usage :_bg .Usage ,IsPersistentCache :_dfd ._cgf ,Timestamp :_gc .Unix ()}; +if len (_gga )==0{_dgef .MacAddress ="\u006e\u006f\u006e\u0065";};_dgf :=int64 (0);_ggg :=_bg .NumErrors ;_gdaf :=_gc ;_fde :=0;_dfe :=_bg .LimitDocs ;_gaa ,_ebga :=_afa .checkinUsage (_dgef );if _ebga !=nil {if _gc .Sub (_bg .LastReported )> _eace {if !_gaa .Success {return _ce .New (_gaa .Message ); +};return _ce .New ("\u0074\u006f\u006f\u0020\u006c\u006f\u006e\u0067\u0020\u0073\u0069\u006e\u0063\u0065\u0020\u006c\u0061\u0073\u0074\u0020\u0073\u0075\u0063\u0063e\u0073\u0073\u0066\u0075\u006c \u0063\u0068e\u0063\u006b\u0069\u006e");};_dgf =_ddc ;_ggg ++; +_gdaf =_bg .LastReported ;}else {_dfe =_gaa .LimitDocs ;_fde =_gaa .RemainingDocs ;_ggg =0;};if len (_gaa .Instance )==0{_gaa .Instance =_dgef .Instance ;};if len (_gaa .Next )==0{_gaa .Next =_dgef .Next ;};_ebga =_ddf .updateState (_afa ._bca ,_gaa .Instance ,_gaa .Next ,int (_dgf ),_dfe ,_fde ,int (_ggg ),_gdaf ,nil ); +if _ebga !=nil {return _ebga ;};if !_gaa .Success {return _df .Errorf ("\u0065r\u0072\u006f\u0072\u003a\u0020\u0025s",_gaa .Message );};}else {_ecc =_ddf .updateState (_dfd ._dda ,_bg .Instance ,_bg .Next ,int (_bg .Docs )+_ff ,_bg .LimitDocs ,int (_bg .RemainingDocs ),int (_bg .NumErrors ),_bg .LastReported ,_bg .Usage ); +if _ecc !=nil {return _ecc ;};};return nil ;};func _cadg (_abb ,_aff []byte )([]byte ,error ){_aabg ,_dged :=_cf .NewCipher (_abb );if _dged !=nil {return nil ,_dged ;};_caae :=make ([]byte ,_cf .BlockSize +len (_aff ));_cefe :=_caae [:_cf .BlockSize ]; +if _ ,_ccdb :=_eg .ReadFull (_ad .Reader ,_cefe );_ccdb !=nil {return nil ,_ccdb ;};_ecg :=_fe .NewCFBEncrypter (_aabg ,_cefe );_ecg .XORKeyStream (_caae [_cf .BlockSize :],_aff );_cge :=make ([]byte ,_fg .URLEncoding .EncodedLen (len (_caae )));_fg .URLEncoding .Encode (_cge ,_caae ); +return _cge ,nil ;};type meteredUsageCheckinResp struct{Instance string `json:"inst"`;Next string `json:"next"`;Success bool `json:"success"`;Message string `json:"message"`;RemainingDocs int `json:"rd"`;LimitDocs bool `json:"ld"`;};type LicenseKey struct{LicenseId string `json:"license_id"`; +CustomerId string `json:"customer_id"`;CustomerName string `json:"customer_name"`;Tier string `json:"tier"`;CreatedAt _g .Time `json:"-"`;CreatedAtInt int64 `json:"created_at"`;ExpiresAt *_g .Time `json:"-"`;ExpiresAtInt int64 `json:"expires_at"`;CreatedBy string `json:"created_by"`; +CreatorName string `json:"creator_name"`;CreatorEmail string `json:"creator_email"`;UniPDF bool `json:"unipdf"`;UniOffice bool `json:"unioffice"`;UniHTML bool `json:"unihtml"`;Trial bool `json:"trial"`;_gea bool ;_dda string ;_cgf bool ;};func _cac (_gabe *_cd .Response )(_eg .ReadCloser ,error ){var _aed error ; +var _bafe _eg .ReadCloser ;switch _a .ToLower (_gabe .Header .Get ("\u0043\u006fn\u0074\u0065\u006et\u002d\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")){case "\u0067\u007a\u0069\u0070":_bafe ,_aed =_f .NewReader (_gabe .Body );if _aed !=nil {return _bafe ,_aed ; +};defer _bafe .Close ();default:_bafe =_gabe .Body ;};return _bafe ,nil ;};const _cdd ="\u0055N\u0049D\u004f\u0043\u005f\u004c\u0049C\u0045\u004eS\u0045\u005f\u0044\u0049\u0052";func GetMeteredState ()(MeteredStatus ,error ){if _dfd ==nil {return MeteredStatus {},_ce .New ("\u006c\u0069\u0063\u0065ns\u0065\u0020\u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0073\u0065\u0074"); +};if !_dfd ._gea ||len (_dfd ._dda )==0{return MeteredStatus {},_ce .New ("\u0061p\u0069 \u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0073\u0065\u0074");};_edb ,_ebg :=_ddf .loadState (_dfd ._dda );if _ebg !=nil {_dbb .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ebg ); +return MeteredStatus {},_ebg ;};if _edb .Docs > 0{_cad :=_bdfb ("","",true );if _cad !=nil {return MeteredStatus {},_cad ;};};_eac .Lock ();defer _eac .Unlock ();_dff :=_gda ();_dff ._bca =_dfd ._dda ;_dbbf ,_ebg :=_dff .getStatus ();if _ebg !=nil {return MeteredStatus {},_ebg ; +};if !_dbbf .Valid {return MeteredStatus {},_ce .New ("\u006b\u0065\u0079\u0020\u006e\u006f\u0074\u0020\u0076\u0061\u006c\u0069\u0064");};_dcg :=MeteredStatus {OK :true ,Credits :_dbbf .OrgCredits ,Used :_dbbf .OrgUsed };return _dcg ,nil ;}; \ No newline at end of file diff --git a/internal/sampling/sampling.go b/internal/sampling/sampling.go index 1d625fbeb..16f2b1b25 100644 --- a/internal/sampling/sampling.go +++ b/internal/sampling/sampling.go @@ -9,19 +9,19 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package sampling ;import (_g "github.com/unidoc/unipdf/v3/internal/bitwise";_f "github.com/unidoc/unipdf/v3/internal/imageutil";_c "io";);func (_bgf *Writer )WriteSamples (samples []uint32 )error {for _dcg :=0;_dcg < len (samples );_dcg ++{if _ag :=_bgf .WriteSample (samples [_dcg ]); -_ag !=nil {return _ag ;};};return nil ;};type SampleWriter interface{WriteSample (_ba uint32 )error ;WriteSamples (_bf []uint32 )error ;};type Writer struct{_af _f .ImageBase ;_gb *_g .Writer ;_cga ,_dfd int ;_add bool ;};func ResampleUint32 (data []uint32 ,bitsPerInputSample int ,bitsPerOutputSample int )[]uint32 {var _eea []uint32 ; -_cg :=bitsPerOutputSample ;var _gee uint32 ;var _ac uint32 ;_cbfb :=0;_ad :=0;_dc :=0;for _dc < len (data ){if _cbfb > 0{_beb :=_cbfb ;if _cg < _beb {_beb =_cg ;};_gee =(_gee <>uint (bitsPerInputSample -_beb ));_cbfb -=_beb ;if _cbfb > 0{_ac =_ac <>uint (_cbfb )); -if _ca < bitsPerInputSample {_ac =_ff <=bitsPerOutputSample {_db :=_cbfb ;if _cg < _db {_db =_cg ;};_gee =(_gee <>uint (bitsPerInputSample -_db )); -_cbfb -=_db ;if _cbfb > 0{_ac =_ac < 0&&_cg < bitsPerOutputSample {_gee <<=uint (_cg );_eea =append (_eea ,_gee );};return _eea ; -};func NewWriter (img _f .ImageBase )*Writer {return &Writer {_gb :_g .NewWriterMSB (img .Data ),_af :img ,_dfd :img .ColorComponents ,_add :img .BytesPerLine *8!=img .ColorComponents *img .BitsPerComponent *img .Width };};type Reader struct{_cb _f .ImageBase ; -_cc *_g .Reader ;_e ,_d ,_geg int ;_da bool ;};type SampleReader interface{ReadSample ()(uint32 ,error );ReadSamples (_ge []uint32 )error ;};func (_dab *Writer )WriteSample (sample uint32 )error {if _ ,_eeb :=_dab ._gb .WriteBits (uint64 (sample ),_dab ._af .BitsPerComponent ); -_eeb !=nil {return _eeb ;};_dab ._dfd --;if _dab ._dfd ==0{_dab ._dfd =_dab ._af .ColorComponents ;_dab ._cga ++;};if _dab ._cga ==_dab ._af .Width {if _dab ._add {_dab ._gb .FinishByte ();};_dab ._cga =0;};return nil ;};func (_ded *Reader )ReadSamples (samples []uint32 )(_a error ){for _ce :=0; -_ce < len (samples );_ce ++{samples [_ce ],_a =_ded .ReadSample ();if _a !=nil {return _a ;};};return nil ;};func ResampleBytes (data []byte ,bitsPerSample int )[]uint32 {var _fc []uint32 ;_ee :=bitsPerSample ;var _cbf uint32 ;var _gf byte ;_df :=0;_cf :=0; -_cfd :=0;for _cfd < len (data ){if _df > 0{_bc :=_df ;if _ee < _bc {_bc =_ee ;};_cbf =(_cbf <>uint (8-_bc ));_df -=_bc ;if _df > 0{_gf =_gf <>uint (_df ));if _daa < 8{_gf =_cbb <=bitsPerSample {_aa :=_df ;if _ee < _aa {_aa =_ee ;};_cbf =(_cbf <>uint (8-_aa ));_df -=_aa ;if _df > 0{_gf =_gf < 0{_cgd :=_ag ;if _af < _cgd {_cgd =_af ;};_bed =(_bed <>uint (bitsPerInputSample -_cgd ));_ag -=_cgd ;if _ag > 0{_gf =_gf <>uint (_ag )); +if _gbe < bitsPerInputSample {_gf =_gd <=bitsPerOutputSample {_ef :=_ag ;if _af < _ef {_ef =_af ;};_bed =(_bed <>uint (bitsPerInputSample -_ef )); +_ag -=_ef ;if _ag > 0{_gf =_gf < 0&&_af < bitsPerOutputSample {_bed <<=uint (_af );_eee =append (_eee ,_bed );};return _eee ; +};func (_debb *Writer )WriteSamples (samples []uint32 )error {for _dab :=0;_dab < len (samples );_dab ++{if _gea :=_debb .WriteSample (samples [_dab ]);_gea !=nil {return _gea ;};};return nil ;};func NewWriter (img _a .ImageBase )*Writer {return &Writer {_ge :_f .NewWriterMSB (img .Data ),_def :img ,_fbc :img .ColorComponents ,_fa :img .BytesPerLine *8!=img .ColorComponents *img .BitsPerComponent *img .Width }; +};type SampleReader interface{ReadSample ()(uint32 ,error );ReadSamples (_ee []uint32 )error ;};func ResampleBytes (data []byte ,bitsPerSample int )[]uint32 {var _da []uint32 ;_dad :=bitsPerSample ;var _dc uint32 ;var _aa byte ;_de :=0;_cg :=0;_gc :=0; +for _gc < len (data ){if _de > 0{_fg :=_de ;if _dad < _fg {_fg =_dad ;};_dc =(_dc <>uint (8-_fg ));_de -=_fg ;if _de > 0{_aa =_aa <>uint (_de ));if _eed < 8{_aa =_fb <=bitsPerSample {_dg :=_de ;if _dad < _dg {_dg =_dad ;};_dc =(_dc <>uint (8-_dg ));_de -=_dg ;if _de > 0{_aa =_aa <>1;_cg :=make ([]uint16 ,_ed );for _be :=0;_be < _ed ;_be ++{_cg [_be ]=uint16 (b [_be <<1])<<8+uint16 (b [_be <<1+1]);};_fa :=_c .Decode (_cg );return _fa ;};func StringToPDFDocEncoding (s string )[]byte {var _eb _b .Buffer ;for _ ,_fd :=range s {_fdf ,_db :=_a [_fd ]; -if !_db {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0044\u0046\u0044\u006f\u0063\u0045\u006e\u0063\u006f\u0064\u0069\u006eg\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0061\u0070\u0070\u0069\u006e\u0067\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0025\u0063\u002f\u0025\u0058\u0020\u002d\u0020s\u006b\u0069\u0070\u0070\u0069n\u0067",_fd ,_fd ); -continue ;};_eb .WriteByte (_fdf );};return _eb .Bytes ();};func StringToUTF16 (s string )string {_ag :=_c .Encode ([]rune (s ));var _ff _b .Buffer ;for _ ,_da :=range _ag {_ff .WriteByte (byte ((_da >>8)&0xff));_ff .WriteByte (byte (_da &0xff));};return _ff .String (); -};func PDFDocEncodingToRunes (b []byte )[]rune {var _ce []rune ;for _ ,_g :=range b {_cgf ,_gb :=_ffc [_g ];if !_gb {_f .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020P\u0044\u0046\u0044o\u0063\u0045\u006ec\u006f\u0064i\u006e\u0067\u0020\u0069\u006e\u0070u\u0074 m\u0061\u0070\u0070\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006f\u0072\u0020\u0025\u0064\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067",_g ); -continue ;};_ce =append (_ce ,_cgf );};return _ce ;};var _a map[rune ]byte ;var _ffc =map[byte ]rune {0x01:'\u0001',0x02:'\u0002',0x03:'\u0003',0x04:'\u0004',0x05:'\u0005',0x06:'\u0006',0x07:'\u0007',0x08:'\u0008',0x09:'\u0009',0x0a:'\u000a',0x0b:'\u000b',0x0c:'\u000c',0x0d:'\u000d',0x0e:'\u000e',0x0f:'\u000f',0x10:'\u0010',0x11:'\u0011',0x12:'\u0012',0x13:'\u0013',0x14:'\u0014',0x15:'\u0015',0x16:'\u0017',0x17:'\u0017',0x18:'\u02d8',0x19:'\u02c7',0x1a:'\u02c6',0x1b:'\u02d9',0x1c:'\u02dd',0x1d:'\u02db',0x1e:'\u02da',0x1f:'\u02dc',0x20:'\u0020',0x21:'\u0021',0x22:'\u0022',0x23:'\u0023',0x24:'\u0024',0x25:'\u0025',0x26:'\u0026',0x27:'\u0027',0x28:'\u0028',0x29:'\u0029',0x2a:'\u002a',0x2b:'\u002b',0x2c:'\u002c',0x2d:'\u002d',0x2e:'\u002e',0x2f:'\u002f',0x30:'\u0030',0x31:'\u0031',0x32:'\u0032',0x33:'\u0033',0x34:'\u0034',0x35:'\u0035',0x36:'\u0036',0x37:'\u0037',0x38:'\u0038',0x39:'\u0039',0x3a:'\u003a',0x3b:'\u003b',0x3c:'\u003c',0x3d:'\u003d',0x3e:'\u003e',0x3f:'\u003f',0x40:'\u0040',0x41:'\u0041',0x42:'\u0042',0x43:'\u0043',0x44:'\u0044',0x45:'\u0045',0x46:'\u0046',0x47:'\u0047',0x48:'\u0048',0x49:'\u0049',0x4a:'\u004a',0x4b:'\u004b',0x4c:'\u004c',0x4d:'\u004d',0x4e:'\u004e',0x4f:'\u004f',0x50:'\u0050',0x51:'\u0051',0x52:'\u0052',0x53:'\u0053',0x54:'\u0054',0x55:'\u0055',0x56:'\u0056',0x57:'\u0057',0x58:'\u0058',0x59:'\u0059',0x5a:'\u005a',0x5b:'\u005b',0x5c:'\u005c',0x5d:'\u005d',0x5e:'\u005e',0x5f:'\u005f',0x60:'\u0060',0x61:'\u0061',0x62:'\u0062',0x63:'\u0063',0x64:'\u0064',0x65:'\u0065',0x66:'\u0066',0x67:'\u0067',0x68:'\u0068',0x69:'\u0069',0x6a:'\u006a',0x6b:'\u006b',0x6c:'\u006c',0x6d:'\u006d',0x6e:'\u006e',0x6f:'\u006f',0x70:'\u0070',0x71:'\u0071',0x72:'\u0072',0x73:'\u0073',0x74:'\u0074',0x75:'\u0075',0x76:'\u0076',0x77:'\u0077',0x78:'\u0078',0x79:'\u0079',0x7a:'\u007a',0x7b:'\u007b',0x7c:'\u007c',0x7d:'\u007d',0x7e:'\u007e',0x80:'\u2022',0x81:'\u2020',0x82:'\u2021',0x83:'\u2026',0x84:'\u2014',0x85:'\u2013',0x86:'\u0192',0x87:'\u2044',0x88:'\u2039',0x89:'\u203a',0x8a:'\u2212',0x8b:'\u2030',0x8c:'\u201e',0x8d:'\u201c',0x8e:'\u201d',0x8f:'\u2018',0x90:'\u2019',0x91:'\u201a',0x92:'\u2122',0x93:'\ufb01',0x94:'\ufb02',0x95:'\u0141',0x96:'\u0152',0x97:'\u0160',0x98:'\u0178',0x99:'\u017d',0x9a:'\u0131',0x9b:'\u0142',0x9c:'\u0153',0x9d:'\u0161',0x9e:'\u017e',0xa0:'\u20ac',0xa1:'\u00a1',0xa2:'\u00a2',0xa3:'\u00a3',0xa4:'\u00a4',0xa5:'\u00a5',0xa6:'\u00a6',0xa7:'\u00a7',0xa8:'\u00a8',0xa9:'\u00a9',0xaa:'\u00aa',0xab:'\u00ab',0xac:'\u00ac',0xae:'\u00ae',0xaf:'\u00af',0xb0:'\u00b0',0xb1:'\u00b1',0xb2:'\u00b2',0xb3:'\u00b3',0xb4:'\u00b4',0xb5:'\u00b5',0xb6:'\u00b6',0xb7:'\u00b7',0xb8:'\u00b8',0xb9:'\u00b9',0xba:'\u00ba',0xbb:'\u00bb',0xbc:'\u00bc',0xbd:'\u00bd',0xbe:'\u00be',0xbf:'\u00bf',0xc0:'\u00c0',0xc1:'\u00c1',0xc2:'\u00c2',0xc3:'\u00c3',0xc4:'\u00c4',0xc5:'\u00c5',0xc6:'\u00c6',0xc7:'\u00c7',0xc8:'\u00c8',0xc9:'\u00c9',0xca:'\u00ca',0xcb:'\u00cb',0xcc:'\u00cc',0xcd:'\u00cd',0xce:'\u00ce',0xcf:'\u00cf',0xd0:'\u00d0',0xd1:'\u00d1',0xd2:'\u00d2',0xd3:'\u00d3',0xd4:'\u00d4',0xd5:'\u00d5',0xd6:'\u00d6',0xd7:'\u00d7',0xd8:'\u00d8',0xd9:'\u00d9',0xda:'\u00da',0xdb:'\u00db',0xdc:'\u00dc',0xdd:'\u00dd',0xde:'\u00de',0xdf:'\u00df',0xe0:'\u00e0',0xe1:'\u00e1',0xe2:'\u00e2',0xe3:'\u00e3',0xe4:'\u00e4',0xe5:'\u00e5',0xe6:'\u00e6',0xe7:'\u00e7',0xe8:'\u00e8',0xe9:'\u00e9',0xea:'\u00ea',0xeb:'\u00eb',0xec:'\u00ec',0xed:'\u00ed',0xee:'\u00ee',0xef:'\u00ef',0xf0:'\u00f0',0xf1:'\u00f1',0xf2:'\u00f2',0xf3:'\u00f3',0xf4:'\u00f4',0xf5:'\u00f5',0xf6:'\u00f6',0xf7:'\u00f7',0xf8:'\u00f8',0xf9:'\u00f9',0xfa:'\u00fa',0xfb:'\u00fb',0xfc:'\u00fc',0xfd:'\u00fd',0xfe:'\u00fe',0xff:'\u00ff'}; +package strutils ;import (_a "bytes";_g "github.com/unidoc/unipdf/v3/common";_d "unicode/utf16";);func UTF16ToString (b []byte )string {return string (UTF16ToRunes (b ))};func init (){_c =map[rune ]byte {};for _bb ,_be :=range _ege {_c [_be ]=_bb ;};}; +var _ege =map[byte ]rune {0x01:'\u0001',0x02:'\u0002',0x03:'\u0003',0x04:'\u0004',0x05:'\u0005',0x06:'\u0006',0x07:'\u0007',0x08:'\u0008',0x09:'\u0009',0x0a:'\u000a',0x0b:'\u000b',0x0c:'\u000c',0x0d:'\u000d',0x0e:'\u000e',0x0f:'\u000f',0x10:'\u0010',0x11:'\u0011',0x12:'\u0012',0x13:'\u0013',0x14:'\u0014',0x15:'\u0015',0x16:'\u0017',0x17:'\u0017',0x18:'\u02d8',0x19:'\u02c7',0x1a:'\u02c6',0x1b:'\u02d9',0x1c:'\u02dd',0x1d:'\u02db',0x1e:'\u02da',0x1f:'\u02dc',0x20:'\u0020',0x21:'\u0021',0x22:'\u0022',0x23:'\u0023',0x24:'\u0024',0x25:'\u0025',0x26:'\u0026',0x27:'\u0027',0x28:'\u0028',0x29:'\u0029',0x2a:'\u002a',0x2b:'\u002b',0x2c:'\u002c',0x2d:'\u002d',0x2e:'\u002e',0x2f:'\u002f',0x30:'\u0030',0x31:'\u0031',0x32:'\u0032',0x33:'\u0033',0x34:'\u0034',0x35:'\u0035',0x36:'\u0036',0x37:'\u0037',0x38:'\u0038',0x39:'\u0039',0x3a:'\u003a',0x3b:'\u003b',0x3c:'\u003c',0x3d:'\u003d',0x3e:'\u003e',0x3f:'\u003f',0x40:'\u0040',0x41:'\u0041',0x42:'\u0042',0x43:'\u0043',0x44:'\u0044',0x45:'\u0045',0x46:'\u0046',0x47:'\u0047',0x48:'\u0048',0x49:'\u0049',0x4a:'\u004a',0x4b:'\u004b',0x4c:'\u004c',0x4d:'\u004d',0x4e:'\u004e',0x4f:'\u004f',0x50:'\u0050',0x51:'\u0051',0x52:'\u0052',0x53:'\u0053',0x54:'\u0054',0x55:'\u0055',0x56:'\u0056',0x57:'\u0057',0x58:'\u0058',0x59:'\u0059',0x5a:'\u005a',0x5b:'\u005b',0x5c:'\u005c',0x5d:'\u005d',0x5e:'\u005e',0x5f:'\u005f',0x60:'\u0060',0x61:'\u0061',0x62:'\u0062',0x63:'\u0063',0x64:'\u0064',0x65:'\u0065',0x66:'\u0066',0x67:'\u0067',0x68:'\u0068',0x69:'\u0069',0x6a:'\u006a',0x6b:'\u006b',0x6c:'\u006c',0x6d:'\u006d',0x6e:'\u006e',0x6f:'\u006f',0x70:'\u0070',0x71:'\u0071',0x72:'\u0072',0x73:'\u0073',0x74:'\u0074',0x75:'\u0075',0x76:'\u0076',0x77:'\u0077',0x78:'\u0078',0x79:'\u0079',0x7a:'\u007a',0x7b:'\u007b',0x7c:'\u007c',0x7d:'\u007d',0x7e:'\u007e',0x80:'\u2022',0x81:'\u2020',0x82:'\u2021',0x83:'\u2026',0x84:'\u2014',0x85:'\u2013',0x86:'\u0192',0x87:'\u2044',0x88:'\u2039',0x89:'\u203a',0x8a:'\u2212',0x8b:'\u2030',0x8c:'\u201e',0x8d:'\u201c',0x8e:'\u201d',0x8f:'\u2018',0x90:'\u2019',0x91:'\u201a',0x92:'\u2122',0x93:'\ufb01',0x94:'\ufb02',0x95:'\u0141',0x96:'\u0152',0x97:'\u0160',0x98:'\u0178',0x99:'\u017d',0x9a:'\u0131',0x9b:'\u0142',0x9c:'\u0153',0x9d:'\u0161',0x9e:'\u017e',0xa0:'\u20ac',0xa1:'\u00a1',0xa2:'\u00a2',0xa3:'\u00a3',0xa4:'\u00a4',0xa5:'\u00a5',0xa6:'\u00a6',0xa7:'\u00a7',0xa8:'\u00a8',0xa9:'\u00a9',0xaa:'\u00aa',0xab:'\u00ab',0xac:'\u00ac',0xae:'\u00ae',0xaf:'\u00af',0xb0:'\u00b0',0xb1:'\u00b1',0xb2:'\u00b2',0xb3:'\u00b3',0xb4:'\u00b4',0xb5:'\u00b5',0xb6:'\u00b6',0xb7:'\u00b7',0xb8:'\u00b8',0xb9:'\u00b9',0xba:'\u00ba',0xbb:'\u00bb',0xbc:'\u00bc',0xbd:'\u00bd',0xbe:'\u00be',0xbf:'\u00bf',0xc0:'\u00c0',0xc1:'\u00c1',0xc2:'\u00c2',0xc3:'\u00c3',0xc4:'\u00c4',0xc5:'\u00c5',0xc6:'\u00c6',0xc7:'\u00c7',0xc8:'\u00c8',0xc9:'\u00c9',0xca:'\u00ca',0xcb:'\u00cb',0xcc:'\u00cc',0xcd:'\u00cd',0xce:'\u00ce',0xcf:'\u00cf',0xd0:'\u00d0',0xd1:'\u00d1',0xd2:'\u00d2',0xd3:'\u00d3',0xd4:'\u00d4',0xd5:'\u00d5',0xd6:'\u00d6',0xd7:'\u00d7',0xd8:'\u00d8',0xd9:'\u00d9',0xda:'\u00da',0xdb:'\u00db',0xdc:'\u00dc',0xdd:'\u00dd',0xde:'\u00de',0xdf:'\u00df',0xe0:'\u00e0',0xe1:'\u00e1',0xe2:'\u00e2',0xe3:'\u00e3',0xe4:'\u00e4',0xe5:'\u00e5',0xe6:'\u00e6',0xe7:'\u00e7',0xe8:'\u00e8',0xe9:'\u00e9',0xea:'\u00ea',0xeb:'\u00eb',0xec:'\u00ec',0xed:'\u00ed',0xee:'\u00ee',0xef:'\u00ef',0xf0:'\u00f0',0xf1:'\u00f1',0xf2:'\u00f2',0xf3:'\u00f3',0xf4:'\u00f4',0xf5:'\u00f5',0xf6:'\u00f6',0xf7:'\u00f7',0xf8:'\u00f8',0xf9:'\u00f9',0xfa:'\u00fa',0xfb:'\u00fb',0xfc:'\u00fc',0xfd:'\u00fd',0xfe:'\u00fe',0xff:'\u00ff'}; +func UTF16ToRunes (b []byte )[]rune {if len (b )==1{return []rune {rune (b [0])};};if len (b )%2!=0{b =append (b ,0);_g .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u0054\u0046\u0031\u0036\u0054\u006f\u0052\u0075\u006e\u0065\u0073.\u0020\u0050\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0077it\u0068\u0020\u007ae\u0072o\u0073\u002e"); +};_df :=len (b )>>1;_de :=make ([]uint16 ,_df );for _ad :=0;_ad < _df ;_ad ++{_de [_ad ]=uint16 (b [_ad <<1])<<8+uint16 (b [_ad <<1+1]);};_gc :=_d .Decode (_de );return _gc ;};func PDFDocEncodingToString (b []byte )string {return string (PDFDocEncodingToRunes (b ))}; +func StringToUTF16 (s string )string {_gf :=_d .Encode ([]rune (s ));var _gb _a .Buffer ;for _ ,_gg :=range _gf {_gb .WriteByte (byte ((_gg >>8)&0xff));_gb .WriteByte (byte (_gg &0xff));};return _gb .String ();};func PDFDocEncodingToRunes (b []byte )[]rune {var _e []rune ; +for _ ,_bd :=range b {_dfe ,_ed :=_ege [_bd ];if !_ed {_g .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020P\u0044\u0046\u0044o\u0063\u0045\u006ec\u006f\u0064i\u006e\u0067\u0020\u0069\u006e\u0070u\u0074 m\u0061\u0070\u0070\u0069\u006e\u0067\u0020\u0065\u0072\u0072\u006f\u0072\u0020\u0025\u0064\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067",_bd ); +continue ;};_e =append (_e ,_dfe );};return _e ;};func StringToPDFDocEncoding (s string )[]byte {var _fg _a .Buffer ;for _ ,_dg :=range s {_eg ,_gbd :=_c [_dg ];if !_gbd {_g .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0044\u0046\u0044\u006f\u0063\u0045\u006e\u0063\u006f\u0064\u0069\u006eg\u0020\u0072\u0075\u006e\u0065\u0020\u006d\u0061\u0070\u0070\u0069\u006e\u0067\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0025\u0063\u002f\u0025\u0058\u0020\u002d\u0020s\u006b\u0069\u0070\u0070\u0069n\u0067",_dg ,_dg ); +continue ;};_fg .WriteByte (_eg );};return _fg .Bytes ();};var _c map[rune ]byte ; \ No newline at end of file diff --git a/internal/testutils/testutils.go b/internal/testutils/testutils.go index 76d9233a7..c3d033e8d 100644 --- a/internal/testutils/testutils.go +++ b/internal/testutils/testutils.go @@ -9,31 +9,31 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package testutils ;import (_b "crypto/md5";_eb "encoding/hex";_f "errors";_bb "fmt";_a "github.com/unidoc/unipdf/v3/common";_ee "github.com/unidoc/unipdf/v3/core";_gb "image";_e "image/png";_dc "io";_gfe "os";_gg "os/exec";_d "path/filepath";_gf "strings"; -_g "testing";);func CompareImages (img1 ,img2 _gb .Image )(bool ,error ){_fe :=img1 .Bounds ();_gbb :=0;for _ec :=0;_ec < _fe .Size ().X ;_ec ++{for _ffg :=0;_ffg < _fe .Size ().Y ;_ffg ++{_dcf ,_fc ,_bbb ,_ :=img1 .At (_ec ,_ffg ).RGBA ();_dg ,_ab ,_be ,_ :=img2 .At (_ec ,_ffg ).RGBA (); -if _dcf !=_dg ||_fc !=_ab ||_bbb !=_be {_gbb ++;};};};_cgb :=float64 (_gbb )/float64 (_fe .Dx ()*_fe .Dy ());if _cgb > 0.0001{_bb .Printf ("\u0064\u0069\u0066f \u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076\u0020\u0028\u0025\u0064\u0029\u000a",_cgb ,_gbb ); -return false ,nil ;};return true ,nil ;};func CompareDictionariesDeep (d1 ,d2 *_ee .PdfObjectDictionary )bool {if len (d1 .Keys ())!=len (d2 .Keys ()){_a .Log .Debug ("\u0044\u0069\u0063\u0074\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u006d\u0069s\u006da\u0074\u0063\u0068\u0020\u0028\u0025\u0064\u0020\u0021\u003d\u0020\u0025\u0064\u0029",len (d1 .Keys ()),len (d2 .Keys ())); -_a .Log .Debug ("\u0057\u0061s\u0020\u0027\u0025s\u0027\u0020\u0076\u0073\u0020\u0027\u0025\u0073\u0027",d1 .WriteString (),d2 .WriteString ());return false ;};for _ ,_ae :=range d1 .Keys (){if _ae =="\u0050\u0061\u0072\u0065\u006e\u0074"{continue ;};_beb :=_ee .TraceToDirectObject (d1 .Get (_ae )); -_fg :=_ee .TraceToDirectObject (d2 .Get (_ae ));if _beb ==nil {_a .Log .Debug ("\u00761\u0020\u0069\u0073\u0020\u006e\u0069l");return false ;};if _fg ==nil {_a .Log .Debug ("\u00762\u0020\u0069\u0073\u0020\u006e\u0069l");return false ;};switch _dfe :=_beb .(type ){case *_ee .PdfObjectDictionary :_ac ,_eeb :=_fg .(*_ee .PdfObjectDictionary ); -if !_eeb {_a .Log .Debug ("\u0054\u0079\u0070\u0065 m\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0020\u0025\u0054\u0020\u0076\u0073\u0020%\u0054",_beb ,_fg );return false ;};if !CompareDictionariesDeep (_dfe ,_ac ){return false ;};continue ;case *_ee .PdfObjectArray :_cfe ,_gd :=_fg .(*_ee .PdfObjectArray ); -if !_gd {_a .Log .Debug ("\u00762\u0020n\u006f\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079");return false ;};if _dfe .Len ()!=_cfe .Len (){_a .Log .Debug ("\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006d\u0069s\u006da\u0074\u0063\u0068\u0020\u0028\u0025\u0064\u0020\u0021\u003d\u0020\u0025\u0064\u0029",_dfe .Len (),_cfe .Len ()); -return false ;};for _gbf :=0;_gbf < _dfe .Len ();_gbf ++{_ace :=_ee .TraceToDirectObject (_dfe .Get (_gbf ));_fcb :=_ee .TraceToDirectObject (_cfe .Get (_gbf ));if _fef ,_fcc :=_ace .(*_ee .PdfObjectDictionary );_fcc {_ggd ,_fbdc :=_fcb .(*_ee .PdfObjectDictionary ); -if !_fbdc {return false ;};if !CompareDictionariesDeep (_fef ,_ggd ){return false ;};}else {if _ace .WriteString ()!=_fcb .WriteString (){_a .Log .Debug ("M\u0069\u0073\u006d\u0061tc\u0068 \u0027\u0025\u0073\u0027\u0020!\u003d\u0020\u0027\u0025\u0073\u0027",_ace .WriteString (),_fcb .WriteString ()); -return false ;};};};continue ;};if _beb .String ()!=_fg .String (){_a .Log .Debug ("\u006b\u0065y\u003d\u0025\u0073\u0020\u004d\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0021\u0020\u0027\u0025\u0073\u0027\u0020\u0021\u003d\u0020'%\u0073\u0027",_ae ,_beb .String (),_fg .String ()); -_a .Log .Debug ("\u0046o\u0072 \u0027\u0025\u0054\u0027\u0020\u002d\u0020\u0027\u0025\u0054\u0027",_beb ,_fg );_a .Log .Debug ("\u0046\u006f\u0072\u0020\u0027\u0025\u002b\u0076\u0027\u0020\u002d\u0020'\u0025\u002b\u0076\u0027",_beb ,_fg );return false ; -};};return true ;};func RunRenderTest (t *_g .T ,pdfPath ,outputDir ,baselineRenderPath string ,saveBaseline bool ){_dfd :=_gf .TrimSuffix (_d .Base (pdfPath ),_d .Ext (pdfPath ));t .Run ("\u0072\u0065\u006e\u0064\u0065\u0072",func (_gbg *_g .T ){_ge :=_d .Join (outputDir ,_dfd ); -_bec :=_ge +"\u002d%\u0064\u002e\u0070\u006e\u0067";if _eg :=RenderPDFToPNGs (pdfPath ,0,_bec );_eg !=nil {_gbg .Skip (_eg );};for _gbbe :=1;true ;_gbbe ++{_fd :=_bb .Sprintf ("\u0025s\u002d\u0025\u0064\u002e\u0070\u006eg",_ge ,_gbbe );_geg :=_d .Join (baselineRenderPath ,_bb .Sprintf ("\u0025\u0073\u002d\u0025\u0064\u005f\u0065\u0078\u0070\u002e\u0070\u006e\u0067",_dfd ,_gbbe )); -if _ ,_abe :=_gfe .Stat (_fd );_abe !=nil {break ;};_gbg .Logf ("\u0025\u0073",_geg );if saveBaseline {_gbg .Logf ("\u0043\u006fp\u0079\u0069\u006eg\u0020\u0025\u0073\u0020\u002d\u003e\u0020\u0025\u0073",_fd ,_geg );_bbf :=CopyFile (_fd ,_geg );if _bbf !=nil {_gbg .Fatalf ("\u0045\u0052\u0052OR\u0020\u0063\u006f\u0070\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0025\u0073\u003a\u0020\u0025\u0076",_geg ,_bbf ); -};continue ;};_gbg .Run (_bb .Sprintf ("\u0070\u0061\u0067\u0065\u0025\u0064",_gbbe ),func (_gbe *_g .T ){_gbe .Logf ("\u0043o\u006dp\u0061\u0072\u0069\u006e\u0067 \u0025\u0073 \u0076\u0073\u0020\u0025\u0073",_fd ,_geg );_ddg ,_dfc :=ComparePNGFiles (_fd ,_geg ); -if _gfe .IsNotExist (_dfc ){_gbe .Fatal ("\u0069m\u0061g\u0065\u0020\u0066\u0069\u006ce\u0020\u006di\u0073\u0073\u0069\u006e\u0067");}else if !_ddg {_gbe .Fatal ("\u0077\u0072\u006f\u006eg \u0070\u0061\u0067\u0065\u0020\u0072\u0065\u006e\u0064\u0065\u0072\u0065\u0064"); -};});};});};func ComparePNGFiles (file1 ,file2 string )(bool ,error ){_ga ,_gfg :=HashFile (file1 );if _gfg !=nil {return false ,_gfg ;};_ce ,_gfg :=HashFile (file2 );if _gfg !=nil {return false ,_gfg ;};if _ga ==_ce {return true ,nil ;};_ad ,_gfg :=ReadPNG (file1 ); -if _gfg !=nil {return false ,_gfg ;};_gac ,_gfg :=ReadPNG (file2 );if _gfg !=nil {return false ,_gfg ;};if _ad .Bounds ()!=_gac .Bounds (){return false ,nil ;};return CompareImages (_ad ,_gac );};func ReadPNG (file string )(_gb .Image ,error ){_ff ,_ddf :=_gfe .Open (file ); -if _ddf !=nil {return nil ,_ddf ;};defer _ff .Close ();return _e .Decode (_ff );};func RenderPDFToPNGs (pdfPath string ,dpi int ,outpathTpl string )error {if dpi <=0{dpi =100;};if _ ,_fbd :=_gg .LookPath ("\u0067\u0073");_fbd !=nil {return ErrRenderNotSupported ; -};return _gg .Command ("\u0067\u0073","\u002d\u0073\u0044\u0045\u0056\u0049\u0043\u0045\u003d\u0070\u006e\u0067a\u006c\u0070\u0068\u0061","\u002d\u006f",outpathTpl ,_bb .Sprintf ("\u002d\u0072\u0025\u0064",dpi ),pdfPath ).Run ();};func _ca (_ecc _ee .PdfObject ,_bed map[int64 ]_ee .PdfObject )error {switch _eaf :=_ecc .(type ){case *_ee .PdfIndirectObject :_gaa :=_eaf ; -_ca (_gaa .PdfObject ,_bed );case *_ee .PdfObjectDictionary :_cad :=_eaf ;for _ ,_bfb :=range _cad .Keys (){_bbbc :=_cad .Get (_bfb );if _dge ,_cbe :=_bbbc .(*_ee .PdfObjectReference );_cbe {_cc ,_ega :=_bed [_dge .ObjectNumber ];if !_ega {return _f .New ("r\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0020\u0074\u006f\u0020\u006f\u0075\u0074\u0073i\u0064\u0065\u0020o\u0062j\u0065\u0063\u0074"); -};_cad .Set (_bfb ,_cc );}else {_ca (_bbbc ,_bed );};};case *_ee .PdfObjectArray :_gef :=_eaf ;for _ade ,_dbd :=range _gef .Elements (){if _bc ,_dff :=_dbd .(*_ee .PdfObjectReference );_dff {_fde ,_dec :=_bed [_bc .ObjectNumber ];if !_dec {return _f .New ("r\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0020\u0074\u006f\u0020\u006f\u0075\u0074\u0073i\u0064\u0065\u0020o\u0062j\u0065\u0063\u0074"); -};_gef .Set (_ade ,_fde );}else {_ca (_dbd ,_bed );};};};return nil ;};var (ErrRenderNotSupported =_f .New ("\u0072\u0065\u006e\u0064\u0065r\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006c\u0065\u0073 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u006f\u006e\u0020\u0074\u0068\u0069\u0073\u0020\u0073\u0079\u0073\u0074\u0065m"); -);func CopyFile (src ,dst string )error {_cg ,_dd :=_gfe .Open (src );if _dd !=nil {return _dd ;};defer _cg .Close ();_fb ,_dd :=_gfe .Create (dst );if _dd !=nil {return _dd ;};defer _fb .Close ();_ ,_dd =_dc .Copy (_fb ,_cg );return _dd ;};func ParseIndirectObjects (rawpdf string )(map[int64 ]_ee .PdfObject ,error ){_bd :=_ee .NewParserFromString (rawpdf ); -_eba :=map[int64 ]_ee .PdfObject {};for {_db ,_ebg :=_bd .ParseIndirectObject ();if _ebg !=nil {if _ebg ==_dc .EOF {break ;};return nil ,_ebg ;};switch _ebb :=_db .(type ){case *_ee .PdfIndirectObject :_eba [_ebb .ObjectNumber ]=_db ;case *_ee .PdfObjectStream :_eba [_ebb .ObjectNumber ]=_db ; -};};for _ ,_cf :=range _eba {_ca (_cf ,_eba );};return _eba ,nil ;};func HashFile (file string )(string ,error ){_ebf ,_cb :=_gfe .Open (file );if _cb !=nil {return "",_cb ;};defer _ebf .Close ();_df :=_b .New ();if _ ,_cb =_dc .Copy (_df ,_ebf );_cb !=nil {return "",_cb ; -};return _eb .EncodeToString (_df .Sum (nil )),nil ;}; \ No newline at end of file +package testutils ;import (_a "crypto/md5";_fbf "encoding/hex";_fe "errors";_ce "fmt";_ba "github.com/unidoc/unipdf/v3/common";_fed "github.com/unidoc/unipdf/v3/core";_ge "image";_g "image/png";_fb "io";_c "os";_e "os/exec";_b "path/filepath";_df "strings"; +_f "testing";);func CompareDictionariesDeep (d1 ,d2 *_fed .PdfObjectDictionary )bool {if len (d1 .Keys ())!=len (d2 .Keys ()){_ba .Log .Debug ("\u0044\u0069\u0063\u0074\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u006d\u0069s\u006da\u0074\u0063\u0068\u0020\u0028\u0025\u0064\u0020\u0021\u003d\u0020\u0025\u0064\u0029",len (d1 .Keys ()),len (d2 .Keys ())); +_ba .Log .Debug ("\u0057\u0061s\u0020\u0027\u0025s\u0027\u0020\u0076\u0073\u0020\u0027\u0025\u0073\u0027",d1 .WriteString (),d2 .WriteString ());return false ;};for _ ,_ged :=range d1 .Keys (){if _ged =="\u0050\u0061\u0072\u0065\u006e\u0074"{continue ; +};_bba :=_fed .TraceToDirectObject (d1 .Get (_ged ));_fff :=_fed .TraceToDirectObject (d2 .Get (_ged ));if _bba ==nil {_ba .Log .Debug ("\u00761\u0020\u0069\u0073\u0020\u006e\u0069l");return false ;};if _fff ==nil {_ba .Log .Debug ("\u00762\u0020\u0069\u0073\u0020\u006e\u0069l"); +return false ;};switch _adg :=_bba .(type ){case *_fed .PdfObjectDictionary :_gfa ,_bbac :=_fff .(*_fed .PdfObjectDictionary );if !_bbac {_ba .Log .Debug ("\u0054\u0079\u0070\u0065 m\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0020\u0025\u0054\u0020\u0076\u0073\u0020%\u0054",_bba ,_fff ); +return false ;};if !CompareDictionariesDeep (_adg ,_gfa ){return false ;};continue ;case *_fed .PdfObjectArray :_ecf ,_baec :=_fff .(*_fed .PdfObjectArray );if !_baec {_ba .Log .Debug ("\u00762\u0020n\u006f\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); +return false ;};if _adg .Len ()!=_ecf .Len (){_ba .Log .Debug ("\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006d\u0069s\u006da\u0074\u0063\u0068\u0020\u0028\u0025\u0064\u0020\u0021\u003d\u0020\u0025\u0064\u0029",_adg .Len (),_ecf .Len ()); +return false ;};for _bbf :=0;_bbf < _adg .Len ();_bbf ++{_abg :=_fed .TraceToDirectObject (_adg .Get (_bbf ));_dd :=_fed .TraceToDirectObject (_ecf .Get (_bbf ));if _egdd ,_ebc :=_abg .(*_fed .PdfObjectDictionary );_ebc {_dbg ,_fbe :=_dd .(*_fed .PdfObjectDictionary ); +if !_fbe {return false ;};if !CompareDictionariesDeep (_egdd ,_dbg ){return false ;};}else {if _abg .WriteString ()!=_dd .WriteString (){_ba .Log .Debug ("M\u0069\u0073\u006d\u0061tc\u0068 \u0027\u0025\u0073\u0027\u0020!\u003d\u0020\u0027\u0025\u0073\u0027",_abg .WriteString (),_dd .WriteString ()); +return false ;};};};continue ;};if _bba .String ()!=_fff .String (){_ba .Log .Debug ("\u006b\u0065y\u003d\u0025\u0073\u0020\u004d\u0069\u0073\u006d\u0061\u0074\u0063\u0068\u0021\u0020\u0027\u0025\u0073\u0027\u0020\u0021\u003d\u0020'%\u0073\u0027",_ged ,_bba .String (),_fff .String ()); +_ba .Log .Debug ("\u0046o\u0072 \u0027\u0025\u0054\u0027\u0020\u002d\u0020\u0027\u0025\u0054\u0027",_bba ,_fff );_ba .Log .Debug ("\u0046\u006f\u0072\u0020\u0027\u0025\u002b\u0076\u0027\u0020\u002d\u0020'\u0025\u002b\u0076\u0027",_bba ,_fff );return false ; +};};return true ;};func ComparePNGFiles (file1 ,file2 string )(bool ,error ){_ec ,_bg :=HashFile (file1 );if _bg !=nil {return false ,_bg ;};_adf ,_bg :=HashFile (file2 );if _bg !=nil {return false ,_bg ;};if _ec ==_adf {return true ,nil ;};_fcf ,_bg :=ReadPNG (file1 ); +if _bg !=nil {return false ,_bg ;};_cge ,_bg :=ReadPNG (file2 );if _bg !=nil {return false ,_bg ;};if _fcf .Bounds ()!=_cge .Bounds (){return false ,nil ;};return CompareImages (_fcf ,_cge );};func CompareImages (img1 ,img2 _ge .Image )(bool ,error ){_gd :=img1 .Bounds (); +_cc :=0;for _ff :=0;_ff < _gd .Size ().X ;_ff ++{for _fc :=0;_fc < _gd .Size ().Y ;_fc ++{_bb ,_aff ,_ea ,_ :=img1 .At (_ff ,_fc ).RGBA ();_eb ,_ab ,_fbc ,_ :=img2 .At (_ff ,_fc ).RGBA ();if _bb !=_eb ||_aff !=_ab ||_ea !=_fbc {_cc ++;};};};_ggeg :=float64 (_cc )/float64 (_gd .Dx ()*_gd .Dy ()); +if _ggeg > 0.0001{_ce .Printf ("\u0064\u0069\u0066f \u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0076\u0020\u0028\u0025\u0064\u0029\u000a",_ggeg ,_cc );return false ,nil ;};return true ,nil ;};var (ErrRenderNotSupported =_fe .New ("\u0072\u0065\u006e\u0064\u0065r\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006c\u0065\u0073 \u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u006f\u006e\u0020\u0074\u0068\u0069\u0073\u0020\u0073\u0079\u0073\u0074\u0065m"); +);func HashFile (file string )(string ,error ){_ee ,_cg :=_c .Open (file );if _cg !=nil {return "",_cg ;};defer _ee .Close ();_ggb :=_a .New ();if _ ,_cg =_fb .Copy (_ggb ,_ee );_cg !=nil {return "",_cg ;};return _fbf .EncodeToString (_ggb .Sum (nil )),nil ; +};func ReadPNG (file string )(_ge .Image ,error ){_ef ,_fa :=_c .Open (file );if _fa !=nil {return nil ,_fa ;};defer _ef .Close ();return _g .Decode (_ef );};func ParseIndirectObjects (rawpdf string )(map[int64 ]_fed .PdfObject ,error ){_fca :=_fed .NewParserFromString (rawpdf ); +_adfd :=map[int64 ]_fed .PdfObject {};for {_egb ,_db :=_fca .ParseIndirectObject ();if _db !=nil {if _db ==_fb .EOF {break ;};return nil ,_db ;};switch _de :=_egb .(type ){case *_fed .PdfIndirectObject :_adfd [_de .ObjectNumber ]=_egb ;case *_fed .PdfObjectStream :_adfd [_de .ObjectNumber ]=_egb ; +};};for _ ,_ca :=range _adfd {_ade (_ca ,_adfd );};return _adfd ,nil ;};func RenderPDFToPNGs (pdfPath string ,dpi int ,outpathTpl string )error {if dpi <=0{dpi =100;};if _ ,_fd :=_e .LookPath ("\u0067\u0073");_fd !=nil {return ErrRenderNotSupported ;}; +return _e .Command ("\u0067\u0073","\u002d\u0073\u0044\u0045\u0056\u0049\u0043\u0045\u003d\u0070\u006e\u0067a\u006c\u0070\u0068\u0061","\u002d\u006f",outpathTpl ,_ce .Sprintf ("\u002d\u0072\u0025\u0064",dpi ),pdfPath ).Run ();};func _ade (_dg _fed .PdfObject ,_gda map[int64 ]_fed .PdfObject )error {switch _cgb :=_dg .(type ){case *_fed .PdfIndirectObject :_be :=_cgb ; +_ade (_be .PdfObject ,_gda );case *_fed .PdfObjectDictionary :_gbc :=_cgb ;for _ ,_egd :=range _gbc .Keys (){_eaf :=_gbc .Get (_egd );if _eab ,_gba :=_eaf .(*_fed .PdfObjectReference );_gba {_dc ,_bab :=_gda [_eab .ObjectNumber ];if !_bab {return _fe .New ("r\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0020\u0074\u006f\u0020\u006f\u0075\u0074\u0073i\u0064\u0065\u0020o\u0062j\u0065\u0063\u0074"); +};_gbc .Set (_egd ,_dc );}else {_ade (_eaf ,_gda );};};case *_fed .PdfObjectArray :_ffc :=_cgb ;for _gbf ,_ega :=range _ffc .Elements (){if _aae ,_cgd :=_ega .(*_fed .PdfObjectReference );_cgd {_bde ,_ag :=_gda [_aae .ObjectNumber ];if !_ag {return _fe .New ("r\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0020\u0074\u006f\u0020\u006f\u0075\u0074\u0073i\u0064\u0065\u0020o\u0062j\u0065\u0063\u0074"); +};_ffc .Set (_gbf ,_bde );}else {_ade (_ega ,_gda );};};};return nil ;};func RunRenderTest (t *_f .T ,pdfPath ,outputDir ,baselineRenderPath string ,saveBaseline bool ){_cd :=_df .TrimSuffix (_b .Base (pdfPath ),_b .Ext (pdfPath ));t .Run ("\u0072\u0065\u006e\u0064\u0065\u0072",func (_bc *_f .T ){_geg :=_b .Join (outputDir ,_cd ); +_aa :=_geg +"\u002d%\u0064\u002e\u0070\u006e\u0067";if _bcg :=RenderPDFToPNGs (pdfPath ,0,_aa );_bcg !=nil {_bc .Skip (_bcg );};for _dfd :=1;true ;_dfd ++{_gb :=_ce .Sprintf ("\u0025s\u002d\u0025\u0064\u002e\u0070\u006eg",_geg ,_dfd );_cdg :=_b .Join (baselineRenderPath ,_ce .Sprintf ("\u0025\u0073\u002d\u0025\u0064\u005f\u0065\u0078\u0070\u002e\u0070\u006e\u0067",_cd ,_dfd )); +if _ ,_fcb :=_c .Stat (_gb );_fcb !=nil {break ;};_bc .Logf ("\u0025\u0073",_cdg );if saveBaseline {_bc .Logf ("\u0043\u006fp\u0079\u0069\u006eg\u0020\u0025\u0073\u0020\u002d\u003e\u0020\u0025\u0073",_gb ,_cdg );_bd :=CopyFile (_gb ,_cdg );if _bd !=nil {_bc .Fatalf ("\u0045\u0052\u0052OR\u0020\u0063\u006f\u0070\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0025\u0073\u003a\u0020\u0025\u0076",_cdg ,_bd ); +};continue ;};_bc .Run (_ce .Sprintf ("\u0070\u0061\u0067\u0065\u0025\u0064",_dfd ),func (_gf *_f .T ){_gf .Logf ("\u0043o\u006dp\u0061\u0072\u0069\u006e\u0067 \u0025\u0073 \u0076\u0073\u0020\u0025\u0073",_gb ,_cdg );_ga ,_dff :=ComparePNGFiles (_gb ,_cdg ); +if _c .IsNotExist (_dff ){_gf .Fatal ("\u0069m\u0061g\u0065\u0020\u0066\u0069\u006ce\u0020\u006di\u0073\u0073\u0069\u006e\u0067");}else if !_ga {_gf .Fatal ("\u0077\u0072\u006f\u006eg \u0070\u0061\u0067\u0065\u0020\u0072\u0065\u006e\u0064\u0065\u0072\u0065\u0064"); +};});};});};func CopyFile (src ,dst string )error {_eg ,_af :=_c .Open (src );if _af !=nil {return _af ;};defer _eg .Close ();_gg ,_af :=_c .Create (dst );if _af !=nil {return _af ;};defer _gg .Close ();_ ,_af =_fb .Copy (_gg ,_eg );return _af ;}; \ No newline at end of file diff --git a/internal/textencoding/internal/syncmap/syncmap.go b/internal/textencoding/internal/syncmap/syncmap.go index e39dd9d81..c39d392b6 100644 --- a/internal/textencoding/internal/syncmap/syncmap.go +++ b/internal/textencoding/internal/syncmap/syncmap.go @@ -9,24 +9,24 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package syncmap ;import _f "sync";func (_bfb *RuneStringMap )Range (f func (_de rune ,_ec string )(_abc bool )){_bfb ._gd .RLock ();defer _bfb ._gd .RUnlock ();for _gfaf ,_gfc :=range _bfb ._gg {if f (_gfaf ,_gfc ){break ;};};};func (_b *ByteRuneMap )Read (b byte )(rune ,bool ){_b ._ea .RLock (); -defer _b ._ea .RUnlock ();_c ,_d :=_b ._a [b ];return _c ,_d ;};type RuneStringMap struct{_gg map[rune ]string ;_gd _f .RWMutex ;};func (_dg *RuneUint16Map )Range (f func (_bbe rune ,_acbd uint16 )(_bec bool )){_dg ._ecb .RLock ();defer _dg ._ecb .RUnlock (); -for _ge ,_cef :=range _dg ._bee {if f (_ge ,_cef ){break ;};};};func (_cda *StringRuneMap )Read (g string )(rune ,bool ){_cda ._fb .RLock ();defer _cda ._fb .RUnlock ();_bda ,_gdf :=_cda ._ee [g ];return _bda ,_gdf ;};func MakeRuneUint16Map (length int )*RuneUint16Map {return &RuneUint16Map {_bee :make (map[rune ]uint16 ,length )}; -};func (_be *RuneByteMap )Length ()int {_be ._fg .RLock ();defer _be ._fg .RUnlock ();return len (_be ._bg )};type StringsMap struct{_bgc map[string ]string ;_bfd _f .RWMutex ;};func (_ac *RuneByteMap )Range (f func (_fc rune ,_dbg byte )(_bb bool )){_ac ._fg .RLock (); -defer _ac ._fg .RUnlock ();for _dce ,_bf :=range _ac ._bg {if f (_dce ,_bf ){break ;};};};func NewStringsMap (tuples []StringsTuple )*StringsMap {_ef :=map[string ]string {};for _ ,_dba :=range tuples {_ef [_dba .Key ]=_dba .Value ;};return &StringsMap {_bgc :_ef }; -};func MakeRuneSet (length int )*RuneSet {return &RuneSet {_gfa :make (map[rune ]struct{},length )}};func (_ca *RuneByteMap )Read (r rune )(byte ,bool ){_ca ._fg .RLock ();defer _ca ._fg .RUnlock ();_bc ,_egc :=_ca ._bg [r ];return _bc ,_egc ;};func (_eda *RuneStringMap )Length ()int {_eda ._gd .RLock (); -defer _eda ._gd .RUnlock ();return len (_eda ._gg );};func (_ace *RuneSet )Length ()int {_ace ._acb .RLock ();defer _ace ._acb .RUnlock ();return len (_ace ._gfa );};func (_gb *RuneSet )Range (f func (_cf rune )(_gbc bool )){_gb ._acb .RLock ();defer _gb ._acb .RUnlock (); -for _aa :=range _gb ._gfa {if f (_aa ){break ;};};};func (_af *StringRuneMap )Range (f func (_ecg string ,_dcad rune )(_gfcb bool )){_af ._fb .RLock ();defer _af ._fb .RUnlock ();for _bcg ,_fe :=range _af ._ee {if f (_bcg ,_fe ){break ;};};};func (_ba *StringsMap )Range (f func (_gc ,_fgg string )(_bae bool )){_ba ._bfd .RLock (); -defer _ba ._bfd .RUnlock ();for _aca ,_gbf :=range _ba ._bgc {if f (_aca ,_gbf ){break ;};};};func (_agf *StringsMap )Copy ()*StringsMap {_agf ._bfd .RLock ();defer _agf ._bfd .RUnlock ();_agb :=map[string ]string {};for _gdd ,_dea :=range _agf ._bgc {_agb [_gdd ]=_dea ; -};return &StringsMap {_bgc :_agb };};func (_egcf *RuneStringMap )Write (r rune ,s string ){_egcf ._gd .Lock ();defer _egcf ._gd .Unlock ();_egcf ._gg [r ]=s ;};func (_ecf *RuneUint16Map )Delete (r rune ){_ecf ._ecb .Lock ();defer _ecf ._ecb .Unlock (); -delete (_ecf ._bee ,r );};func NewByteRuneMap (m map[byte ]rune )*ByteRuneMap {return &ByteRuneMap {_a :m }};type StringsTuple struct{Key ,Value string ;};func (_eab *StringsMap )Write (g1 ,g2 string ){_eab ._bfd .Lock ();defer _eab ._bfd .Unlock ();_eab ._bgc [g1 ]=g2 ; -};func (_g *ByteRuneMap )Range (f func (_ae byte ,_ag rune )(_dd bool )){_g ._ea .RLock ();defer _g ._ea .RUnlock ();for _dc ,_bd :=range _g ._a {if f (_dc ,_bd ){break ;};};};type StringRuneMap struct{_ee map[string ]rune ;_fb _f .RWMutex ;};func (_fa *ByteRuneMap )Length ()int {_fa ._ea .RLock (); -defer _fa ._ea .RUnlock ();return len (_fa ._a )};func (_cee *RuneStringMap )Read (r rune )(string ,bool ){_cee ._gd .RLock ();defer _cee ._gd .RUnlock ();_dca ,_fgd :=_cee ._gg [r ];return _dca ,_fgd ;};func (_dbb *StringRuneMap )Write (g string ,r rune ){_dbb ._fb .Lock (); -defer _dbb ._fb .Unlock ();_dbb ._ee [g ]=r ;};func MakeRuneByteMap (length int )*RuneByteMap {_db :=make (map[rune ]byte ,length );return &RuneByteMap {_bg :_db };};func (_agd *RuneSet )Write (r rune ){_agd ._acb .Lock ();defer _agd ._acb .Unlock ();_agd ._gfa [r ]=struct{}{}; -};type RuneSet struct{_gfa map[rune ]struct{};_acb _f .RWMutex ;};func (_cd *RuneUint16Map )RangeDelete (f func (_cab rune ,_cg uint16 )(_gbe bool ,_cge bool )){_cd ._ecb .Lock ();defer _cd ._ecb .Unlock ();for _ggd ,_ecc :=range _cd ._bee {_dee ,_ff :=f (_ggd ,_ecc ); -if _dee {delete (_cd ._bee ,_ggd );};if _ff {break ;};};};func (_dbd *StringsMap )Read (g string )(string ,bool ){_dbd ._bfd .RLock ();defer _dbd ._bfd .RUnlock ();_geb ,_ggc :=_dbd ._bgc [g ];return _geb ,_ggc ;};func (_gf *RuneByteMap )Write (r rune ,b byte ){_gf ._fg .Lock (); -defer _gf ._fg .Unlock ();_gf ._bg [r ]=b };func (_cc *RuneUint16Map )Length ()int {_cc ._ecb .RLock ();defer _cc ._ecb .RUnlock ();return len (_cc ._bee );};type RuneByteMap struct{_bg map[rune ]byte ;_fg _f .RWMutex ;};func (_ed *RuneSet )Exists (r rune )bool {_ed ._acb .RLock (); -defer _ed ._acb .RUnlock ();_ ,_ab :=_ed ._gfa [r ];return _ab ;};type ByteRuneMap struct{_a map[byte ]rune ;_ea _f .RWMutex ;};func MakeByteRuneMap (length int )*ByteRuneMap {return &ByteRuneMap {_a :make (map[byte ]rune ,length )}};type RuneUint16Map struct{_bee map[rune ]uint16 ; -_ecb _f .RWMutex ;};func NewStringRuneMap (m map[string ]rune )*StringRuneMap {return &StringRuneMap {_ee :m }};func NewRuneStringMap (m map[rune ]string )*RuneStringMap {return &RuneStringMap {_gg :m }};func (_df *RuneUint16Map )Write (r rune ,g uint16 ){_df ._ecb .Lock (); -defer _df ._ecb .Unlock ();_df ._bee [r ]=g ;};func (_cb *RuneUint16Map )Read (r rune )(uint16 ,bool ){_cb ._ecb .RLock ();defer _cb ._ecb .RUnlock ();_eb ,_bfe :=_cb ._bee [r ];return _eb ,_bfe ;};func (_eg *ByteRuneMap )Write (b byte ,r rune ){_eg ._ea .Lock (); -defer _eg ._ea .Unlock ();_eg ._a [b ]=r };func (_faa *StringRuneMap )Length ()int {_faa ._fb .RLock ();defer _faa ._fb .RUnlock ();return len (_faa ._ee );}; \ No newline at end of file +package syncmap ;import _ee "sync";func NewRuneStringMap (m map[rune ]string )*RuneStringMap {return &RuneStringMap {_ff :m }};func (_fd *RuneByteMap )Length ()int {_fd ._fg .RLock ();defer _fd ._fg .RUnlock ();return len (_fd ._fcf )};func (_ggd *StringsMap )Copy ()*StringsMap {_ggd ._gfa .RLock (); +defer _ggd ._gfa .RUnlock ();_gfg :=map[string ]string {};for _cddd ,_cac :=range _ggd ._fdd {_gfg [_cddd ]=_cac ;};return &StringsMap {_fdd :_gfg };};type RuneSet struct{_faf map[rune ]struct{};_gbd _ee .RWMutex ;};func (_fbdc *RuneSet )Length ()int {_fbdc ._gbd .RLock (); +defer _fbdc ._gbd .RUnlock ();return len (_fbdc ._faf );};func NewStringsMap (tuples []StringsTuple )*StringsMap {_ffc :=map[string ]string {};for _ ,_bbb :=range tuples {_ffc [_bbb .Key ]=_bbb .Value ;};return &StringsMap {_fdd :_ffc };};func (_b *ByteRuneMap )Range (f func (_fc byte ,_g rune )(_c bool )){_b ._d .RLock (); +defer _b ._d .RUnlock ();for _de ,_dd :=range _b ._a {if f (_de ,_dd ){break ;};};};func (_ca *RuneByteMap )Read (r rune )(byte ,bool ){_ca ._fg .RLock ();defer _ca ._fg .RUnlock ();_ed ,_ag :=_ca ._fcf [r ];return _ed ,_ag ;};func (_decf *RuneUint16Map )Range (f func (_fag rune ,_ecb uint16 )(_gba bool )){_decf ._ba .RLock (); +defer _decf ._ba .RUnlock ();for _ffe ,_eag :=range _decf ._gc {if f (_ffe ,_eag ){break ;};};};type RuneStringMap struct{_ff map[rune ]string ;_ea _ee .RWMutex ;};func NewByteRuneMap (m map[byte ]rune )*ByteRuneMap {return &ByteRuneMap {_a :m }};func (_fce *StringsMap )Write (g1 ,g2 string ){_fce ._gfa .Lock (); +defer _fce ._gfa .Unlock ();_fce ._fdd [g1 ]=g2 ;};func (_eg *ByteRuneMap )Write (b byte ,r rune ){_eg ._d .Lock ();defer _eg ._d .Unlock ();_eg ._a [b ]=r };func (_eed *RuneStringMap )Length ()int {_eed ._ea .RLock ();defer _eed ._ea .RUnlock ();return len (_eed ._ff ); +};func (_dfa *StringsMap )Read (g string )(string ,bool ){_dfa ._gfa .RLock ();defer _dfa ._gfa .RUnlock ();_efb ,_ae :=_dfa ._fdd [g ];return _efb ,_ae ;};func (_abg *StringRuneMap )Range (f func (_gcbe string ,_dgb rune )(_bbg bool )){_abg ._fgf .RLock (); +defer _abg ._fgf .RUnlock ();for _ggc ,_ede :=range _abg ._egb {if f (_ggc ,_ede ){break ;};};};func (_cg *RuneUint16Map )Read (r rune )(uint16 ,bool ){_cg ._ba .RLock ();defer _cg ._ba .RUnlock ();_adb ,_cdd :=_cg ._gc [r ];return _adb ,_cdd ;};type ByteRuneMap struct{_a map[byte ]rune ; +_d _ee .RWMutex ;};func (_f *ByteRuneMap )Read (b byte )(rune ,bool ){_f ._d .RLock ();defer _f ._d .RUnlock ();_ef ,_aa :=_f ._a [b ];return _ef ,_aa ;};func (_gfd *StringRuneMap )Length ()int {_gfd ._fgf .RLock ();defer _gfd ._fgf .RUnlock ();return len (_gfd ._egb ); +};func (_gcb *StringRuneMap )Read (g string )(rune ,bool ){_gcb ._fgf .RLock ();defer _gcb ._fgf .RUnlock ();_fbg ,_bcf :=_gcb ._egb [g ];return _fbg ,_bcf ;};func (_bbba *StringsMap )Range (f func (_cee ,_fea string )(_ecd bool )){_bbba ._gfa .RLock (); +defer _bbba ._gfa .RUnlock ();for _aab ,_efda :=range _bbba ._fdd {if f (_aab ,_efda ){break ;};};};func (_ab *RuneUint16Map )RangeDelete (f func (_dg rune ,_bc uint16 )(_aga bool ,_fbc bool )){_ab ._ba .Lock ();defer _ab ._ba .Unlock ();for _cfe ,_fge :=range _ab ._gc {_dgd ,_cfbe :=f (_cfe ,_fge ); +if _dgd {delete (_ab ._gc ,_cfe );};if _cfbe {break ;};};};func NewStringRuneMap (m map[string ]rune )*StringRuneMap {return &StringRuneMap {_egb :m }};func (_fe *RuneUint16Map )Delete (r rune ){_fe ._ba .Lock ();defer _fe ._ba .Unlock ();delete (_fe ._gc ,r )}; +func (_ge *RuneUint16Map )Write (r rune ,g uint16 ){_ge ._ba .Lock ();defer _ge ._ba .Unlock ();_ge ._gc [r ]=g ;};func (_ac *RuneSet )Write (r rune ){_ac ._gbd .Lock ();defer _ac ._gbd .Unlock ();_ac ._faf [r ]=struct{}{}};type StringsTuple struct{Key ,Value string ; +};func MakeRuneByteMap (length int )*RuneByteMap {_ddf :=make (map[rune ]byte ,length );return &RuneByteMap {_fcf :_ddf };};func MakeByteRuneMap (length int )*ByteRuneMap {return &ByteRuneMap {_a :make (map[byte ]rune ,length )}};func (_fa *ByteRuneMap )Length ()int {_fa ._d .RLock (); +defer _fa ._d .RUnlock ();return len (_fa ._a )};func (_da *RuneUint16Map )Length ()int {_da ._ba .RLock ();defer _da ._ba .RUnlock ();return len (_da ._gc )};func (_dec *RuneStringMap )Range (f func (_dc rune ,_eeb string )(_gbe bool )){_dec ._ea .RLock (); +defer _dec ._ea .RUnlock ();for _ec ,_cfb :=range _dec ._ff {if f (_ec ,_cfb ){break ;};};};type RuneUint16Map struct{_gc map[rune ]uint16 ;_ba _ee .RWMutex ;};func (_af *RuneStringMap )Read (r rune )(string ,bool ){_af ._ea .RLock ();defer _af ._ea .RUnlock (); +_cf ,_bb :=_af ._ff [r ];return _cf ,_bb ;};func (_fcfe *RuneStringMap )Write (r rune ,s string ){_fcfe ._ea .Lock ();defer _fcfe ._ea .Unlock ();_fcfe ._ff [r ]=s ;};func MakeRuneSet (length int )*RuneSet {return &RuneSet {_faf :make (map[rune ]struct{},length )}}; +func (_fb *RuneSet )Exists (r rune )bool {_fb ._gbd .RLock ();defer _fb ._gbd .RUnlock ();_ ,_fbd :=_fb ._faf [r ];return _fbd ;};func (_df *RuneByteMap )Write (r rune ,b byte ){_df ._fg .Lock ();defer _df ._fg .Unlock ();_df ._fcf [r ]=b ;};type StringRuneMap struct{_egb map[string ]rune ; +_fgf _ee .RWMutex ;};func (_ddfa *RuneByteMap )Range (f func (_eea rune ,_gb byte )(_gf bool )){_ddfa ._fg .RLock ();defer _ddfa ._fg .RUnlock ();for _ad ,_efd :=range _ddfa ._fcf {if f (_ad ,_efd ){break ;};};};func (_fbe *StringRuneMap )Write (g string ,r rune ){_fbe ._fgf .Lock (); +defer _fbe ._fgf .Unlock ();_fbe ._egb [g ]=r ;};func (_ce *RuneSet )Range (f func (_cd rune )(_gg bool )){_ce ._gbd .RLock ();defer _ce ._gbd .RUnlock ();for _agf :=range _ce ._faf {if f (_agf ){break ;};};};type StringsMap struct{_fdd map[string ]string ; +_gfa _ee .RWMutex ;};func MakeRuneUint16Map (length int )*RuneUint16Map {return &RuneUint16Map {_gc :make (map[rune ]uint16 ,length )};};type RuneByteMap struct{_fcf map[rune ]byte ;_fg _ee .RWMutex ;}; \ No newline at end of file diff --git a/internal/textencoding/textencoding.go b/internal/textencoding/textencoding.go index 5905464c2..0a223ae8a 100644 --- a/internal/textencoding/textencoding.go +++ b/internal/textencoding/textencoding.go @@ -9,98 +9,101 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package textencoding ;import (_ce "bytes";_c "encoding/binary";_df "errors";_cf "fmt";_aa "github.com/unidoc/unipdf/v3/common";_fg "github.com/unidoc/unipdf/v3/core";_ffd "github.com/unidoc/unipdf/v3/internal/cmap";_bc "github.com/unidoc/unipdf/v3/internal/strutils"; -_cfc "github.com/unidoc/unipdf/v3/internal/textencoding/internal/syncmap";_b "golang.org/x/text/encoding";_cc "golang.org/x/text/transform";_ff "regexp";_ae "sort";_fd "strconv";_f "strings";_g "sync";_dc "unicode";_a "unicode/utf8";);func (_eda *TrueTypeFontEncoder )Encode (str string )[]byte {return _cfbb (_eda ,str )}; -func NewSimpleTextEncoder (baseName string ,differences map[CharCode ]GlyphName )(SimpleEncoder ,error ){_dfeb ,_abc :=_bdd .Read (baseName );if !_abc {_aa .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004ee\u0077\u0053\u0069mp\u006c\u0065\u0054\u0065\u0078\u0074E\u006e\u0063\u006f\u0064\u0065\u0072\u002e\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0071",baseName ); -return nil ,nil ;};_bfdc :=_dfeb ();if len (differences )!=0{_bfdc =ApplyDifferences (_bfdc ,differences );};return _bfdc ,nil ;};func (_aae CMapEncoder )String ()string {return _aae ._ga };func (_ffa CMapEncoder )RuneToCharcode (r rune )(CharCode ,bool ){if _ffa ._dfe ==nil {return 0,false ; -};_ffg ,_fdf :=_ffa ._dfe .StringToCID (string (r ));if !_fdf {return 0,false ;};if _ffa ._bge !=nil {_ada ,_deb :=_ffa ._bge .CIDToCharcode (_ffg );if !_deb {return 0,false ;};return CharCode (_ada ),true ;};return CharCode (_ffg ),true ;};type differencesEncoding struct{_dbab SimpleEncoder ; -_gaa *charCodeGlyphNameMap ;_fab *_cfc .ByteRuneMap ;_ggf *_cfc .RuneByteMap ;};type IdentityEncoder struct{_bgff string ;_fcc *_cfc .RuneSet ;};type simpleMapping struct{_bbf string ;_fgd _g .Once ;_dfdb *_cfc .ByteRuneMap ;_ebbd *_cfc .RuneByteMap ;}; -var _dgee =_cfc .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'!',0x22:'∀',0x23:'#',0x24:'∃',0x25:'%',0x26:'&',0x27:'∋',0x28:'(',0x29:')',0x2a:'∗',0x2b:'+',0x2c:',',0x2d:'−',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'≅',0x41:'Α',0x42:'Β',0x43:'Χ',0x44:'∆',0x45:'Ε',0x46:'Φ',0x47:'Γ',0x48:'Η',0x49:'Ι',0x4a:'ϑ',0x4b:'Κ',0x4c:'Λ',0x4d:'Μ',0x4e:'Ν',0x4f:'Ο',0x50:'Π',0x51:'Θ',0x52:'Ρ',0x53:'Σ',0x54:'Τ',0x55:'Υ',0x56:'ς',0x57:'Ω',0x58:'Ξ',0x59:'Ψ',0x5a:'Ζ',0x5b:'[',0x5c:'∴',0x5d:']',0x5e:'⊥',0x5f:'_',0x60:'\uf8e5',0x61:'α',0x62:'β',0x63:'χ',0x64:'δ',0x65:'ε',0x66:'φ',0x67:'γ',0x68:'η',0x69:'ι',0x6a:'ϕ',0x6b:'κ',0x6c:'λ',0x6d:'µ',0x6e:'ν',0x6f:'ο',0x70:'π',0x71:'θ',0x72:'ρ',0x73:'σ',0x74:'τ',0x75:'υ',0x76:'ϖ',0x77:'ω',0x78:'ξ',0x79:'ψ',0x7a:'ζ',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'∼',0xa0:'€',0xa1:'ϒ',0xa2:'′',0xa3:'≤',0xa4:'⁄',0xa5:'∞',0xa6:'ƒ',0xa7:'♣',0xa8:'♦',0xa9:'♥',0xaa:'♠',0xab:'↔',0xac:'←',0xad:'↑',0xae:'→',0xaf:'↓',0xb0:'°',0xb1:'±',0xb2:'″',0xb3:'≥',0xb4:'×',0xb5:'∝',0xb6:'∂',0xb7:'•',0xb8:'÷',0xb9:'≠',0xba:'≡',0xbb:'≈',0xbc:'…',0xbd:'\uf8e6',0xbe:'\uf8e7',0xbf:'↵',0xc0:'ℵ',0xc1:'ℑ',0xc2:'ℜ',0xc3:'℘',0xc4:'⊗',0xc5:'⊕',0xc6:'∅',0xc7:'∩',0xc8:'∪',0xc9:'⊃',0xca:'⊇',0xcb:'⊄',0xcc:'⊂',0xcd:'⊆',0xce:'∈',0xcf:'∉',0xd0:'∠',0xd1:'∇',0xd2:'\uf6da',0xd3:'\uf6d9',0xd4:'\uf6db',0xd5:'∏',0xd6:'√',0xd7:'⋅',0xd8:'¬',0xd9:'∧',0xda:'∨',0xdb:'⇔',0xdc:'⇐',0xdd:'⇑',0xde:'⇒',0xdf:'⇓',0xe0:'◊',0xe1:'〈',0xe2:'\uf8e8',0xe3:'\uf8e9',0xe4:'\uf8ea',0xe5:'∑',0xe6:'\uf8eb',0xe7:'\uf8ec',0xe8:'\uf8ed',0xe9:'\uf8ee',0xea:'\uf8ef',0xeb:'\uf8f0',0xec:'\uf8f1',0xed:'\uf8f2',0xee:'\uf8f3',0xef:'\uf8f4',0xf1:'〉',0xf2:'∫',0xf3:'⌠',0xf4:'\uf8f5',0xf5:'⌡',0xf6:'\uf8f6',0xf7:'\uf8f7',0xf8:'\uf8f8',0xf9:'\uf8f9',0xfa:'\uf8fa',0xfb:'\uf8fb',0xfc:'\uf8fc',0xfd:'\uf8fd',0xfe:'\uf8fe'}); -var _fgb =_cfc .NewStringRuneMap (map[string ]rune {"\u002en\u006f\u0074\u0064\u0065\u0066":0xfffd,"\u0032\u0035\u0030\u0061":0x250a,"\u0032\u0035\u0030\u0062":0x250b,"\u0032\u0035\u0030\u0064":0x250d,"\u0032\u0035\u0030\u0065":0x250e,"\u0032\u0035\u0030\u0066":0x250f,"\u0032\u0035\u0031\u0061":0x251a,"\u0032\u0035\u0031\u0062":0x251b,"\u0032\u0035\u0031\u0064":0x251d,"\u0032\u0035\u0031\u0065":0x251e,"\u0032\u0035\u0031\u0066":0x251f,"\u0032\u0035\u0032\u0061":0x252a,"\u0032\u0035\u0032\u0062":0x252b,"\u0032\u0035\u0032\u0064":0x252d,"\u0032\u0035\u0032\u0065":0x252e,"\u0032\u0035\u0032\u0066":0x252f,"\u0032\u0035\u0033\u0061":0x253a,"\u0032\u0035\u0033\u0062":0x253b,"\u0032\u0035\u0033\u0064":0x253d,"\u0032\u0035\u0033\u0065":0x253e,"\u0032\u0035\u0033\u0066":0x253f,"\u0032\u0035\u0034\u0061":0x254a,"\u0032\u0035\u0034\u0062":0x254b,"\u0032\u0035\u0034\u0063":0x254c,"\u0032\u0035\u0034\u0064":0x254d,"\u0032\u0035\u0034\u0065":0x254e,"\u0032\u0035\u0034\u0066":0x254f,"\u0032\u0035\u0036\u0064":0x256d,"\u0032\u0035\u0036\u0065":0x256e,"\u0032\u0035\u0036\u0066":0x256f,"\u0032\u0035\u0037\u0061":0x257a,"\u0032\u0035\u0037\u0062":0x257b,"\u0032\u0035\u0037\u0063":0x257c,"\u0032\u0035\u0037\u0064":0x257d,"\u0032\u0035\u0037\u0065":0x257e,"\u0032\u0035\u0037\u0066":0x257f,"\u0041":0x0041,"\u0041\u0045":0x00c6,"\u0041E\u0061\u0063\u0075\u0074\u0065":0x01fc,"\u0041\u0045\u006d\u0061\u0063\u0072\u006f\u006e":0x01e2,"\u0041E\u0073\u006d\u0061\u006c\u006c":0xf7e6,"\u0041\u0050\u004c\u0062\u006f\u0078\u0071\u0075\u0065s\u0074\u0069\u006f\u006e":0x2370,"\u0041\u0050\u004c\u0062\u006f\u0078\u0075\u0070\u0063\u0061\u0072\u0065\u0074":0x2353,"\u0041P\u004cn\u006f\u0074\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068":0x2340,"A\u0050\u004c\u006e\u006f\u0074\u0073\u006c\u0061\u0073\u0068":0x233f,"\u0041\u0061\u0063\u0075\u0074\u0065":0x00c1,"A\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e1,"\u0041\u0062\u0072\u0065\u0076\u0065":0x0102,"A\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065":0x1eae,"\u0041\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d0,"\u0041\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077":0x1eb6,"A\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065":0x1eb0,"\u0041b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1eb2,"A\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065":0x1eb4,"\u0041\u0063\u0061\u0072\u006f\u006e":0x01cd,"\u0041c\u0069\u0072\u0063\u006c\u0065":0x24b6,"A\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00c2,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ea4,"\u0041\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1eac,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ea6,"A\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ea8,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7e2,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1eaa,"\u0041\u0063\u0075t\u0065":0xf6c9,"\u0041\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7b4,"\u0041d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0200,"\u0041d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00c4,"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d2,"\u0041d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01de,"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7e4,"\u0041d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ea0,"\u0041\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e":0x01e0,"\u0041\u0067\u0072\u0061\u0076\u0065":0x00c0,"A\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e0,"\u0041\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ea2,"A\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d4,"\u0041\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0202,"\u0041\u006c\u0070h\u0061":0x0391,"\u0041\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073":0x0386,"\u0041m\u0061\u0063\u0072\u006f\u006e":0x0100,"\u0041\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff21,"\u0041o\u0067\u006f\u006e\u0065\u006b":0x0104,"\u0041\u0072\u0069n\u0067":0x00c5,"\u0041\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065":0x01fa,"\u0041\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077":0x1e00,"\u0041\u0072\u0069\u006e\u0067\u0073\u006d\u0061\u006c\u006c":0xf7e5,"\u0041\u0073\u006d\u0061\u006c\u006c":0xf761,"\u0041\u0074\u0069\u006c\u0064\u0065":0x00c3,"A\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e3,"A\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0531,"\u0042":0x0042,"\u0042\u0061\u0072\u0076":0x2ae7,"\u0042\u0062\u0062\u0041":0x1d538,"\u0042\u0062\u0062\u0042":0x1d539,"\u0042\u0062\u0062\u0043":0x2102,"\u0042\u0062\u0062\u0044":0x1d53b,"\u0042\u0062\u0062\u0045":0x1d53c,"\u0042\u0062\u0062\u0046":0x1d53d,"\u0042\u0062\u0062\u0047":0x1d53e,"\u0042\u0062\u0062\u0047\u0061\u006d\u006d\u0061":0x213e,"\u0042\u0062\u0062\u0048":0x210d,"\u0042\u0062\u0062\u0049":0x1d540,"\u0042\u0062\u0062\u004a":0x1d541,"\u0042\u0062\u0062\u004b":0x1d542,"\u0042\u0062\u0062\u004c":0x1d543,"\u0042\u0062\u0062\u004d":0x1d544,"\u0042\u0062\u0062\u004e":0x2115,"\u0042\u0062\u0062\u004f":0x1d546,"\u0042\u0062\u0062\u0050":0x2119,"\u0042\u0062\u0062P\u0069":0x213f,"\u0042\u0062\u0062\u0051":0x211a,"\u0042\u0062\u0062\u0052":0x211d,"\u0042\u0062\u0062\u0053":0x1d54a,"\u0042\u0062\u0062\u0054":0x1d54b,"\u0042\u0062\u0062\u0055":0x1d54c,"\u0042\u0062\u0062\u0056":0x1d54d,"\u0042\u0062\u0062\u0057":0x1d54e,"\u0042\u0062\u0062\u0058":0x1d54f,"\u0042\u0062\u0062\u0059":0x1d550,"\u0042\u0062\u0062\u005a":0x2124,"\u0042\u0062\u0062\u0061":0x1d552,"\u0042\u0062\u0062\u0062":0x1d553,"\u0042\u0062\u0062\u0063":0x1d554,"\u0042\u0062\u0062\u0064":0x1d555,"\u0042\u0062\u0062\u0065":0x1d556,"\u0042\u0062\u0062\u0065\u0069\u0067\u0068\u0074":0x1d7e0,"\u0042\u0062\u0062\u0066":0x1d557,"\u0042b\u0062\u0066\u0069\u0076\u0065":0x1d7dd,"\u0042b\u0062\u0066\u006f\u0075\u0072":0x1d7dc,"\u0042\u0062\u0062\u0067":0x1d558,"\u0042\u0062\u0062\u0067\u0061\u006d\u006d\u0061":0x213d,"\u0042\u0062\u0062\u0068":0x1d559,"\u0042\u0062\u0062\u0069":0x1d55a,"\u0042\u0062\u0062\u006a":0x1d55b,"\u0042\u0062\u0062\u006b":0x1d55c,"\u0042\u0062\u0062\u006c":0x1d55d,"\u0042\u0062\u0062\u006d":0x1d55e,"\u0042\u0062\u0062\u006e":0x1d55f,"\u0042b\u0062\u006e\u0069\u006e\u0065":0x1d7e1,"\u0042\u0062\u0062\u006f":0x1d560,"\u0042\u0062\u0062\u006f\u006e\u0065":0x1d7d9,"\u0042\u0062\u0062\u0070":0x1d561,"\u0042\u0062\u0062p\u0069":0x213c,"\u0042\u0062\u0062\u0071":0x1d562,"\u0042\u0062\u0062\u0072":0x1d563,"\u0042\u0062\u0062\u0073":0x1d564,"\u0042\u0062\u0062\u0073\u0065\u0076\u0065\u006e":0x1d7df,"\u0042\u0062\u0062\u0073\u0069\u0078":0x1d7de,"\u0042\u0062\u0062\u0073\u0075\u006d":0x2140,"\u0042\u0062\u0062\u0074":0x1d565,"\u0042\u0062\u0062\u0074\u0068\u0072\u0065\u0065":0x1d7db,"\u0042\u0062\u0062\u0074\u0077\u006f":0x1d7da,"\u0042\u0062\u0062\u0075":0x1d566,"\u0042\u0062\u0062\u0076":0x1d567,"\u0042\u0062\u0062\u0077":0x1d568,"\u0042\u0062\u0062\u0078":0x1d569,"\u0042\u0062\u0062\u0079":0x1d56a,"\u0042\u0062\u0062\u007a":0x1d56b,"\u0042b\u0062\u007a\u0065\u0072\u006f":0x1d7d8,"\u0042c\u0069\u0072\u0063\u006c\u0065":0x24b7,"\u0042\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e02,"\u0042d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e04,"B\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0532,"\u0042\u0065\u0074\u0061":0x0392,"\u0042\u0068\u006fo\u006b":0x0181,"\u0042\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e06,"\u0042\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff22,"\u0042\u0072\u0065\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf6f4,"\u0042\u0073\u006d\u0061\u006c\u006c":0xf762,"\u0042s\u006d\u0061\u006c\u006c\u0063\u0061p":0x0229,"\u0042t\u006f\u0070\u0062\u0061\u0072":0x0182,"\u0043":0x0043,"\u0043\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053e,"\u0043\u0061\u0063\u0075\u0074\u0065":0x0106,"\u0043\u0061\u0072o\u006e":0xf6ca,"\u0043\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf6f5,"\u0043\u0063\u0061\u0072\u006f\u006e":0x010c,"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x00c7,"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065":0x1e08,"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c":0xf7e7,"\u0043c\u0069\u0072\u0063\u006c\u0065":0x24b8,"C\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0108,"\u0043\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x010a,"\u0043\u0065\u0064i\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c":0xf7b8,"C\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0549,"C\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04bc,"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0427,"\u0043\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04be,"C\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04b6,"\u0043\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04f4,"\u0043\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0543,"C\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04cb,"\u0043h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x04b8,"\u0043\u0068\u0069":0x03a7,"\u0043\u0068\u006fo\u006b":0x0187,"\u0043i\u0072c\u0075\u006d\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf6f6,"\u0043\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff23,"\u0043\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0551,"\u0043o\u006c\u006f\u006e\u0065\u0071":0x2a74,"\u0043\u0073\u006d\u0061\u006c\u006c":0xf763,"\u0044":0x0044,"\u0044\u0044\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x27f1,"\u0044\u005a":0x01f1,"\u0044Z\u0063\u0061\u0072\u006f\u006e":0x01c4,"\u0044\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0534,"\u0044\u0061\u0066\u0072\u0069\u0063\u0061\u006e":0x0189,"\u0044\u0061\u0073h\u0056":0x2ae5,"\u0044a\u0073\u0068\u0056\u0044\u0061\u0073h":0x27da,"\u0044\u0061\u0073h\u0076":0x2ae4,"\u0044\u0063\u0061\u0072\u006f\u006e":0x010e,"\u0044c\u0061\u0072\u006f\u006e\u0031":0xf810,"\u0044\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e10,"\u0044c\u0069\u0072\u0063\u006c\u0065":0x24b9,"\u0044\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e12,"\u0044\u0063\u0072\u006f\u0061\u0074":0x0110,"\u0044\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e0a,"\u0044d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e0c,"\u0044\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x290b,"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0414,"\u0044e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03ee,"\u0044\u0065\u006ct\u0061":0x2206,"\u0044\u0065\u006c\u0074\u0061\u0067\u0072\u0065\u0065\u006b":0x0394,"\u0044\u0068\u006fo\u006b":0x018a,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0xf6cb,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0041\u0063\u0075\u0074\u0065":0xf6cc,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0047\u0072\u0061\u0076\u0065":0xf6cd,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0073\u006d\u0061\u006c\u006c":0xf7a8,"\u0044i\u0067\u0061\u006d\u006d\u0061":0x1d7cb,"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b":0x03dc,"\u0044\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e0e,"\u0044\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff24,"\u0044\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074s\u006d\u0061\u006c\u006c":0xf6f7,"\u0044\u0073\u006d\u0061\u006c\u006c":0xf764,"\u0044t\u006f\u0070\u0062\u0061\u0072":0x018b,"\u0044\u007a":0x01f2,"\u0044z\u0063\u0061\u0072\u006f\u006e":0x01c5,"D\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04e0,"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x040f,"\u0045":0x0045,"\u0045\u0061\u0063\u0075\u0074\u0065":0x00c9,"E\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e9,"\u0045\u0062\u0072\u0065\u0076\u0065":0x0114,"\u0045\u0063\u0061\u0072\u006f\u006e":0x011a,"\u0045\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065":0x1e1c,"E\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0535,"\u0045c\u0069\u0072\u0063\u006c\u0065":0x24ba,"E\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ca,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ebe,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e18,"\u0045\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ec6,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ec0,"E\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ec2,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7ea,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ec4,"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c":0x0404,"\u0045d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0204,"\u0045d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00cb,"\u0045\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7eb,"\u0045\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0116,"\u0045d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1eb8,"\u0045\u0067\u0072\u0061\u0076\u0065":0x00c8,"E\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e8,"\u0045\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0537,"\u0045\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1eba,"\u0045\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e":0x2167,"\u0045\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0206,"\u0045\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0464,"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x041b,"E\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x216a,"\u0045m\u0061\u0063\u0072\u006f\u006e":0x0112,"\u0045\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e16,"\u0045\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e14,"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x041c,"\u0045\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff25,"\u0045\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a2,"\u0045\u006e\u0067":0x014a,"\u0045\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a4,"\u0045\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c7,"\u0045o\u0067\u006f\u006e\u0065\u006b":0x0118,"\u0045\u006f\u0070e\u006e":0x0190,"\u0045p\u0073\u0069\u006c\u006f\u006e":0x0395,"\u0045\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x0388,"\u0045\u0071\u0075i\u0076":0x2263,"\u0045r\u0065\u0076\u0065\u0072\u0073\u0065d":0x018e,"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x042d,"\u0045\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04aa,"\u0045\u0073\u0068":0x01a9,"\u0045\u0073\u006d\u0061\u006c\u006c":0xf765,"\u0045\u0074\u0061":0x0397,"\u0045\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0538,"\u0045\u0074\u0061\u0074\u006f\u006e\u006f\u0073":0x0389,"\u0045\u0074\u0068":0x00d0,"\u0045\u0074\u0068\u0073\u006d\u0061\u006c\u006c":0xf7f0,"\u0045\u0074\u0069\u006c\u0064\u0065":0x1ebc,"E\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e1a,"\u0045\u0075\u006c\u0065\u0072\u0063\u006f\u006e\u0073\u0074":0x2107,"\u0045\u0075\u0072\u006f":0x20ac,"\u0045\u007a\u0068":0x01b7,"\u0045\u007a\u0068\u0063\u0061\u0072\u006f\u006e":0x01ee,"E\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x01b8,"\u0046":0x0046,"\u0046c\u0069\u0072\u0063\u006c\u0065":0x24bb,"\u0046\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e1e,"F\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0556,"\u0046e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03e4,"\u0046\u0068\u006fo\u006b":0x0191,"\u0046\u0069\u006e\u0076":0x2132,"\u0046i\u0076\u0065\u0072\u006f\u006d\u0061n":0x2164,"\u0046\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff26,"\u0046o\u0075\u0072\u0072\u006f\u006d\u0061n":0x2163,"\u0046\u0073\u006d\u0061\u006c\u006c":0xf766,"\u0047":0x0047,"\u0047\u0042\u0073\u0071\u0075\u0061\u0072\u0065":0x3387,"\u0047\u0061\u0063\u0075\u0074\u0065":0x01f4,"\u0047\u0061\u006dm\u0061":0x0393,"\u0047\u0061\u006dm\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e":0x0194,"\u0047\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03ea,"\u0047\u0062\u0072\u0065\u0076\u0065":0x011e,"\u0047\u0063\u0061\u0072\u006f\u006e":0x01e6,"\u0047c\u0069\u0072\u0063\u006c\u0065":0x24bc,"G\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x011c,"\u0047\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0122,"\u0047\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0120,"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0413,"\u0047\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0542,"G\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x0494,"\u0047\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0492,"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0490,"\u0047\u0068\u006fo\u006b":0x0193,"G\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0533,"\u0047m\u0061\u0063\u0072\u006f\u006e":0x1e20,"\u0047\u006d\u0069\u0072":0x2141,"\u0047\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff27,"\u0047\u0072\u0061v\u0065":0xf6ce,"\u0047\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf760,"\u0047\u0073\u006d\u0061\u006c\u006c":0xf767,"\u0047\u0073\u006d\u0061\u006c\u006c\u0063\u0061\u0070\u0068\u006f\u006f\u006b":0x022b,"\u0047\u0073\u006d\u0061\u006c\u006c\u0068\u006f\u006f\u006b":0x029b,"\u0047s\u0074\u0072\u006f\u006b\u0065":0x01e4,"\u0047\u0074":0x2aa2,"\u0048":0x0048,"\u0048\u0032\u0032\u0030\u0037\u0033":0x25a1,"\u0048\u0050\u0073\u0071\u0075\u0061\u0072\u0065":0x33cb,"\u0048\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a8,"\u0048\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b2,"\u0048\u0062\u0061\u0072":0x0126,"H\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2a,"\u0048\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e28,"\u0048c\u0069\u0072\u0063\u006c\u0065":0x24bd,"H\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0124,"\u0048d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e26,"\u0048\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e22,"\u0048d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e24,"\u0048\u0065\u0072\u006d\u0061\u0070\u0068\u0072\u006f\u0064\u0069\u0074\u0065":0x26a5,"\u0048\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff28,"\u0048\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0540,"\u0048\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e8,"\u0048\u0073\u006d\u0061\u006c\u006c":0xf768,"\u0048s\u006d\u0061\u006c\u006c\u0063\u0061p":0x022c,"\u0048\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0xf6cf,"\u0048\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074s\u006d\u0061\u006c\u006c":0xf6f8,"\u0048\u007a\u0073\u0071\u0075\u0061\u0072\u0065":0x3390,"\u0049":0x0049,"\u0049\u004a":0x0132,"\u0049\u0061\u0063\u0075\u0074\u0065":0x00cd,"I\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7ed,"\u0049\u0062\u0072\u0065\u0076\u0065":0x012c,"\u0049\u0063\u0061\u0072\u006f\u006e":0x01cf,"\u0049c\u0069\u0072\u0063\u006c\u0065":0x24be,"I\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ce,"\u0049\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7ee,"\u0049c\u0079\u0072\u0069\u006c\u0031":0x03fc,"\u0049d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0208,"\u0049d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00cf,"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x1e2e,"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e4,"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7ef,"\u0049\u0064\u006f\u0074":0x0130,"\u0049d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1eca,"\u0049e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d6,"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0415,"\u0049\u0065\u0068\u006f\u006f\u006b":0x03f8,"\u0049\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b":0x03fa,"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072":0x2111,"\u0049\u0067\u0072\u0061\u0076\u0065":0x00cc,"I\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7ec,"\u0049\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ec8,"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0418,"\u0049\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020a,"\u0049m\u0061\u0063\u0072\u006f\u006e":0x012a,"\u0049m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e2,"\u0049\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff29,"I\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053b,"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0401,"\u0049o\u0067\u006f\u006e\u0065\u006b":0x012e,"\u0049\u006f\u0074\u0061":0x0399,"I\u006f\u0074\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e":0x0196,"\u0049\u006f\u0074\u0061\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073":0x02f3,"\u0049\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03aa,"\u0049o\u0074\u0061\u0074\u006f\u006e\u006fs":0x038a,"\u0049\u0073\u006d\u0061\u006c\u006c":0xf769,"\u0049s\u0074\u0072\u006f\u006b\u0065":0x0197,"\u0049\u0074\u0069\u006c\u0064\u0065":0x0128,"I\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2c,"\u0049\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0476,"\u004a":0x004a,"\u004a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0541,"\u004ac\u0069\u0072\u0063\u006c\u0065":0x24bf,"J\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0134,"\u004a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054b,"\u004a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2a,"\u004a\u006f\u0069\u006e":0x2a1d,"\u004a\u0073\u006d\u0061\u006c\u006c":0xf76a,"\u004b":0x004b,"\u004b\u0042\u0073\u0071\u0075\u0061\u0072\u0065":0x3385,"\u004b\u004b\u0073\u0071\u0075\u0061\u0072\u0065":0x33cd,"\u004b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04a0,"\u004b\u0061\u0063\u0075\u0074\u0065":0x1e30,"\u004b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049a,"\u004b\u0061\u0068\u006f\u006f\u006b":0x03ff,"\u004b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c3,"\u004b\u0061\u0070p\u0061":0x039a,"\u004b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049e,"\u004ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049c,"\u004b\u0063\u0061\u0072\u006f\u006e":0x01e8,"\u004b\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0136,"\u004bc\u0069\u0072\u0063\u006c\u0065":0x24c0,"\u004bd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e32,"K\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0554,"K\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053f,"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0425,"\u004b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e6,"\u004b\u0068\u006fo\u006b":0x0198,"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x040c,"\u004b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e34,"\u004b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2b,"\u004b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0480,"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b":0x03de,"K\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x046e,"\u004b\u0073\u006d\u0061\u006c\u006c":0xf76b,"\u004c":0x004c,"\u004c\u004a":0x01c7,"\u004c\u004c":0xf6bf,"\u004c\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2b45,"\u004c\u0061\u0063\u0075\u0074\u0065":0x0139,"\u004c\u0061\u006d\u0062\u0064\u0061":0x039b,"\u004cb\u0072\u0062\u0072\u0061\u006b":0x27ec,"\u004c\u0063\u0061\u0072\u006f\u006e":0x013d,"\u004cc\u0061\u0072\u006f\u006e\u0031":0xf812,"\u004c\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x013b,"\u004cc\u0065\u0064\u0069\u006c\u006c\u00611":0xf81a,"\u004cc\u0069\u0072\u0063\u006c\u0065":0x24c1,"\u004c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e3c,"\u004c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x013f,"\u004cd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e36,"\u004cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e38,"\u004c\u0064\u0073\u0068":0x21b2,"\u004c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053c,"\u004c\u006a":0x01c8,"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0409,"\u004c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e3a,"\u004c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2c,"\u004c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x27f8,"\u004co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x27fa,"\u004c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x27fd,"\u004c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f":0x27fe,"\u004c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077":0x27f9,"\u004cp\u0061\u0072\u0065\u006e\u0067\u0074r":0x2995,"\u004c\u0073\u006c\u0061\u0073\u0068":0x0141,"L\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c":0xf6f9,"\u004c\u0073\u006d\u0061\u006c\u006c":0xf76c,"\u004cs\u006d\u0061\u006c\u006c\u0063\u0061p":0x022f,"\u004c\u0074":0x2aa1,"\u004c\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29da,"\u004d":0x004d,"\u004d\u0042\u0073\u0071\u0075\u0061\u0072\u0065":0x3386,"\u004d\u0061\u0063\u0072\u006f\u006e":0xf6d0,"M\u0061\u0063\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf7af,"\u004d\u0061\u0063\u0075\u0074\u0065":0x1e3e,"\u004d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x2906,"\u004d\u0061\u0070\u0073\u0074\u006f":0x2907,"\u004dc\u0069\u0072\u0063\u006c\u0065":0x24c2,"\u004d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e40,"\u004dd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e42,"M\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0544,"\u004d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2d,"\u004d\u0073\u006d\u0061\u006c\u006c":0xf76d,"\u004dt\u0075\u0072\u006e\u0065\u0064":0x019c,"\u004d\u0075":0x039c,"\u004e":0x004e,"\u004e\u004a":0x01ca,"\u004e\u0061\u0063\u0075\u0074\u0065":0x0143,"\u004e\u0063\u0061\u0072\u006f\u006e":0x0147,"\u004ec\u0065\u0064\u0069\u006c\u006c\u00611":0xf81c,"\u004ec\u0069\u0072\u0063\u006c\u0065":0x24c3,"\u004e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e4a,"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0145,"\u004e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e44,"\u004ed\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e46,"\u004ee\u0061\u0072\u0072\u006f\u0077":0x21d7,"\u004eh\u006f\u006f\u006b\u006c\u0065\u0066t":0x019d,"\u004ei\u006e\u0065\u0072\u006f\u006d\u0061n":0x2168,"\u004e\u006a":0x01cb,"\u004e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e48,"\u004e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2e,"\u004e\u006f\u0074":0x2aec,"N\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0546,"\u004e\u0073\u006d\u0061\u006c\u006c":0xf76e,"\u004e\u0074\u0069\u006c\u0064\u0065":0x00d1,"N\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f1,"\u004e\u0075":0x039d,"\u004ew\u0061\u0072\u0072\u006f\u0077":0x21d6,"\u004f":0x004f,"\u004f\u0045":0x0152,"\u004fE\u0073\u006d\u0061\u006c\u006c":0xf6fa,"\u004f\u0061\u0063\u0075\u0074\u0065":0x00d3,"O\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f3,"\u004fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e8,"\u004f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ea,"\u004f\u0062\u0072\u0065\u0076\u0065":0x014e,"\u004f\u0063\u0061\u0072\u006f\u006e":0x01d1,"\u004f\u0063\u0065\u006e\u0074\u0065\u0072\u0065\u0064t\u0069\u006c\u0064\u0065":0x019f,"\u004fc\u0069\u0072\u0063\u006c\u0065":0x24c4,"O\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00d4,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ed0,"\u004f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ed8,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ed2,"O\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ed4,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7f4,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ed6,"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c":0x041e,"\u004fd\u0062\u006c\u0061\u0063\u0075\u0074e":0x0150,"\u004fd\u0062\u006c\u0067\u0072\u0061\u0076e":0x020c,"\u004fd\u0069\u0065\u0072\u0065\u0073\u0069s":0x00d6,"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e6,"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7f6,"\u004fd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ecc,"O\u0067\u006f\u006e\u0065\u006b\u0073\u006d\u0061\u006c\u006c":0xf6fb,"\u004f\u0067\u0072\u0061\u0076\u0065":0x00d2,"O\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f2,"\u004f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0555,"\u004f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ece,"\u004f\u0068\u006fr\u006e":0x01a0,"\u004f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1eda,"\u004f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ee2,"\u004f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1edc,"\u004f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1ede,"\u004f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1ee0,"\u004f\u0069":0x01a2,"\u004f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020e,"\u004fm\u0061\u0063\u0072\u006f\u006e":0x014c,"\u004f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e52,"\u004f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e50,"\u004f\u006d\u0065g\u0061":0x2126,"\u004f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0460,"\u004f\u006d\u0065\u0067\u0061\u0067\u0072\u0065\u0065\u006b":0x03a9,"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076":0x2127,"\u004fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047a,"\u004fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047c,"\u004f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073":0x038f,"\u004fm\u0069\u0063\u0072\u006f\u006e":0x039f,"\u004f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x038c,"\u004f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2f,"\u004f\u006e\u0065\u0072\u006f\u006d\u0061\u006e":0x2160,"\u004fo\u0067\u006f\u006e\u0065\u006b":0x01ea,"\u004f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e":0x01ec,"\u004f\u006f\u0070e\u006e":0x0186,"\u004f\u0073\u006c\u0061\u0073\u0068":0x00d8,"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065":0x01fe,"O\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c":0xf7f8,"\u004f\u0073\u006d\u0061\u006c\u006c":0xf76f,"\u004f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x047e,"\u004f\u0074\u0069\u006c\u0064\u0065":0x00d5,"O\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e4c,"\u004f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073":0x1e4e,"O\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f5,"\u004f\u0074\u0069\u006d\u0065\u0073":0x2a37,"\u0050":0x0050,"\u0050\u0061\u0063\u0075\u0074\u0065":0x1e54,"\u0050c\u0069\u0072\u0063\u006c\u0065":0x24c5,"\u0050\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e56,"P\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054a,"P\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04a6,"\u0050\u0068\u0069":0x03a6,"\u0050\u0068\u006fo\u006b":0x01a4,"\u0050\u0069":0x03a0,"\u0050\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0553,"P\u006c\u0061\u006e\u0063\u006b\u0063\u006f\u006e\u0073\u0074":0x210e,"\u0050\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff30,"\u0050\u0072\u0065\u0063":0x2abb,"\u0050\u0072\u006fp\u0065\u0072\u0074\u0079\u004c\u0069\u006e\u0065":0x214a,"\u0050\u0073\u0069":0x03a8,"P\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0470,"\u0050\u0073\u006d\u0061\u006c\u006c":0xf770,"\u0051":0x0051,"\u0051\u0045\u0044":0x220e,"\u0051c\u0069\u0072\u0063\u006c\u0065":0x24c6,"\u0051\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff31,"\u0051\u0073\u006d\u0061\u006c\u006c":0xf771,"\u0051\u0075\u0065\u0073\u0074\u0069\u006f\u006e":0x2047,"\u0052":0x0052,"R\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2b46,"\u0052\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054c,"\u0052\u0061\u0063\u0075\u0074\u0065":0x0154,"\u0052b\u0072\u0062\u0072\u0061\u006b":0x27ed,"\u0052\u0063\u0061\u0072\u006f\u006e":0x0158,"\u0052\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0156,"\u0052c\u0065\u0064\u0069\u006c\u006c\u00611":0xf81e,"\u0052c\u0069\u0072\u0063\u006c\u0065":0x24c7,"R\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0xf831,"\u0052d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0210,"\u0052\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e58,"\u0052d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e5a,"\u0052d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e5c,"\u0052\u0064\u0073\u0068":0x21b3,"R\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0550,"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072":0x211c,"\u0052\u0068\u006f":0x03a1,"\u0052i\u006e\u0067\u0073\u006d\u0061\u006cl":0xf6fc,"\u0052\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0212,"\u0052\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e5e,"\u0052\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff32,"\u0052\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073":0x2996,"\u0052\u0073\u006d\u0061\u006c\u006c":0xf772,"\u0052\u0073\u006d\u0061\u006c\u006c\u0069\u006e\u0076e\u0072\u0074\u0065\u0064":0x0281,"\u0052\u0073\u006d\u0061ll\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069o\u0072":0x02b6,"\u0052\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072":0x023f,"\u0052\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29db,"\u0053":0x0053,"\u0053\u0044\u0031\u0035\u0030\u0031\u0030\u0030":0x024f,"\u0053\u0046\u0030\u0031\u0030\u0030\u0030\u0030":0x250c,"\u0053\u0046\u0030\u0032\u0030\u0030\u0030\u0030":0x2514,"\u0053\u0046\u0030\u0033\u0030\u0030\u0030\u0030":0x2510,"\u0053\u0046\u0030\u0034\u0030\u0030\u0030\u0030":0x2518,"\u0053\u0046\u0030\u0035\u0030\u0030\u0030\u0030":0x253c,"\u0053\u0046\u0030\u0036\u0030\u0030\u0030\u0030":0x252c,"\u0053\u0046\u0030\u0037\u0030\u0030\u0030\u0030":0x2534,"\u0053\u0046\u0030\u0038\u0030\u0030\u0030\u0030":0x251c,"\u0053\u0046\u0030\u0039\u0030\u0030\u0030\u0030":0x2524,"\u0053\u0046\u0031\u0030\u0030\u0030\u0030\u0030":0x2500,"\u0053\u0046\u0031\u0031\u0030\u0030\u0030\u0030":0x2502,"\u0053\u0046\u0031\u0039\u0030\u0030\u0030\u0030":0x2561,"\u0053\u0046\u0032\u0030\u0030\u0030\u0030\u0030":0x2562,"\u0053\u0046\u0032\u0031\u0030\u0030\u0030\u0030":0x2556,"\u0053\u0046\u0032\u0032\u0030\u0030\u0030\u0030":0x2555,"\u0053\u0046\u0032\u0033\u0030\u0030\u0030\u0030":0x2563,"\u0053\u0046\u0032\u0034\u0030\u0030\u0030\u0030":0x2551,"\u0053\u0046\u0032\u0035\u0030\u0030\u0030\u0030":0x2557,"\u0053\u0046\u0032\u0036\u0030\u0030\u0030\u0030":0x255d,"\u0053\u0046\u0032\u0037\u0030\u0030\u0030\u0030":0x255c,"\u0053\u0046\u0032\u0038\u0030\u0030\u0030\u0030":0x255b,"\u0053\u0046\u0033\u0036\u0030\u0030\u0030\u0030":0x255e,"\u0053\u0046\u0033\u0037\u0030\u0030\u0030\u0030":0x255f,"\u0053\u0046\u0033\u0038\u0030\u0030\u0030\u0030":0x255a,"\u0053\u0046\u0033\u0039\u0030\u0030\u0030\u0030":0x2554,"\u0053\u0046\u0034\u0030\u0030\u0030\u0030\u0030":0x2569,"\u0053\u0046\u0034\u0031\u0030\u0030\u0030\u0030":0x2566,"\u0053\u0046\u0034\u0032\u0030\u0030\u0030\u0030":0x2560,"\u0053\u0046\u0034\u0033\u0030\u0030\u0030\u0030":0x2550,"\u0053\u0046\u0034\u0034\u0030\u0030\u0030\u0030":0x256c,"\u0053\u0046\u0034\u0035\u0030\u0030\u0030\u0030":0x2567,"\u0053\u0046\u0034\u0036\u0030\u0030\u0030\u0030":0x2568,"\u0053\u0046\u0034\u0037\u0030\u0030\u0030\u0030":0x2564,"\u0053\u0046\u0034\u0038\u0030\u0030\u0030\u0030":0x2565,"\u0053\u0046\u0034\u0039\u0030\u0030\u0030\u0030":0x2559,"\u0053\u0046\u0035\u0030\u0030\u0030\u0030\u0030":0x2558,"\u0053\u0046\u0035\u0031\u0030\u0030\u0030\u0030":0x2552,"\u0053\u0046\u0035\u0032\u0030\u0030\u0030\u0030":0x2553,"\u0053\u0046\u0035\u0033\u0030\u0030\u0030\u0030":0x256b,"\u0053\u0046\u0035\u0034\u0030\u0030\u0030\u0030":0x256a,"\u0053\u0061\u0063\u0075\u0074\u0065":0x015a,"\u0053a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e64,"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b":0x03e0,"\u0053\u0063\u0061\u0072\u006f\u006e":0x0160,"\u0053c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e66,"S\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf6fd,"\u0053\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x015e,"\u0053c\u0065\u0064\u0069\u006c\u006c\u00611":0xf816,"\u0053\u0063\u0068w\u0061":0x018f,"\u0053\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d8,"S\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04da,"\u0053c\u0069\u0072\u0063\u006c\u0065":0x24c8,"S\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x015c,"\u0053\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0218,"\u0053\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e60,"\u0053d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e62,"\u0053d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074":0x1e68,"\u0053e\u0061\u0072\u0072\u006f\u0077":0x21d8,"S\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054d,"\u0053\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2166,"S\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0547,"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0428,"\u0053\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e2,"\u0053\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ba,"S\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03ec,"\u0053\u0069\u0067m\u0061":0x03a3,"\u0053\u0069\u0078\u0072\u006f\u006d\u0061\u006e":0x2165,"\u0053\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff33,"\u0053\u0071\u0063a\u0070":0x2a4e,"\u0053\u0071\u0063u\u0070":0x2a4f,"\u0053\u0073\u006d\u0061\u006c\u006c":0xf773,"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b":0x03da,"\u0053\u0075\u0063\u0063":0x2abc,"\u0053w\u0061\u0072\u0072\u006f\u0077":0x21d9,"\u0054":0x0054,"\u0054\u0061\u0075":0x03a4,"\u0054\u0062\u0061\u0072":0x0166,"\u0054\u0063\u0061\u0072\u006f\u006e":0x0164,"\u0054c\u0061\u0072\u006f\u006e\u0031":0xf814,"\u0054c\u0065\u0064\u0069\u006c\u006c\u00611":0xf818,"\u0054c\u0069\u0072\u0063\u006c\u0065":0x24c9,"\u0054\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e70,"\u0054\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0162,"\u0054\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e6a,"\u0054d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e6c,"\u0054\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ac,"\u0054\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2169,"\u0054\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b4,"\u0054\u0068\u0065t\u0061":0x0398,"\u0054\u0068\u006fo\u006b":0x01ac,"\u0054\u0068\u006fr\u006e":0x00de,"\u0054\u0068\u006f\u0072\u006e\u0073\u006d\u0061\u006c\u006c":0xf7fe,"\u0054\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e":0x2162,"\u0054\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf6fe,"\u0054\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054f,"\u0054\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e6e,"\u0054\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff34,"\u0054\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0539,"\u0054\u006f\u006e\u0065\u0066\u0069\u0076\u0065":0x01bc,"\u0054o\u006e\u0065\u0073\u0069\u0078":0x0184,"\u0054o\u006e\u0065\u0074\u0077\u006f":0x01a7,"\u0054\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b":0x01ae,"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0426,"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x040b,"\u0054\u0073\u006d\u0061\u006c\u006c":0xf774,"T\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e":0x216b,"\u0054\u0077\u006f\u0072\u006f\u006d\u0061\u006e":0x2161,"\u0055":0x0055,"\u0055\u0055\u0070\u0061\u0072\u0072\u006f\u0077":0x27f0,"\u0055\u0061\u0063\u0075\u0074\u0065":0x00da,"U\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7fa,"\u0055\u0062\u0072\u0065\u0076\u0065":0x016c,"\u0055\u0063\u0061\u0072\u006f\u006e":0x01d3,"\u0055\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0xf833,"\u0055c\u0069\u0072\u0063\u006c\u0065":0x24ca,"U\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00db,"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e76,"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7fb,"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c":0x0423,"\u0055d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0214,"\u0055d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00dc,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x01d7,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077":0x1e72,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e":0x01d9,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04f0,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065":0x01db,"\u0055d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01d5,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7fc,"\u0055d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ee4,"\u0055\u0067\u0072\u0061\u0076\u0065":0x00d9,"U\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f9,"\u0055\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ee6,"\u0055\u0068\u006fr\u006e":0x01af,"\u0055\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1ee8,"\u0055\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ef0,"\u0055\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1eea,"\u0055\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1eec,"\u0055\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1eee,"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0x0170,"U\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04f2,"\u0055\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0216,"\u0055\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0478,"\u0055m\u0061\u0063\u0072\u006f\u006e":0x016a,"\u0055m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ee,"\u0055m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x1e7a,"\u0055\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff35,"\u0055o\u0067\u006f\u006e\u0065\u006b":0x0172,"\u0055p\u0073\u0069\u006c\u006f\u006e":0x03a5,"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031":0x03d2,"U\u0070\u0073\u0069\u006c\u006f\u006ea\u0063\u0075\u0074\u0065\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006fl\u0067r\u0065\u0065\u006b":0x03d3,"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0061\u0066r\u0069\u0063\u0061\u006e":0x01b1,"\u0055\u0070s\u0069\u006c\u006fn\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073":0x02f4,"\u0055p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03ab,"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u0068\u006f\u006fk\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b":0x03d4,"\u0055\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x038e,"\u0055\u0072\u0069n\u0067":0x016e,"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x040e,"\u0055\u0073\u006d\u0061\u006c\u006c":0xf775,"\u0055\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04ae,"\u0055\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b0,"\u0055\u0074\u0069\u006c\u0064\u0065":0x0168,"U\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e78,"U\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e74,"\u0055\u0075\u0070\u0061\u0072\u0072\u006f\u0077":0x290a,"\u0056":0x0056,"\u0056\u0044\u0061s\u0068":0x22ab,"\u0056\u0062\u0061\u0072":0x2aeb,"\u0056c\u0069\u0072\u0063\u006c\u0065":0x24cb,"\u0056d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e7e,"\u0056\u0065\u0065":0x2a54,"V\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054e,"\u0056\u0068\u006fo\u006b":0x01b2,"\u0056\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff36,"\u0056\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0548,"\u0056\u0073\u006d\u0061\u006c\u006c":0xf776,"\u0056\u0074\u0069\u006c\u0064\u0065":0x1e7c,"\u0056\u0076\u0065r\u0074":0x2980,"\u0057":0x0057,"\u0057\u0061\u0063\u0075\u0074\u0065":0x1e82,"\u0057c\u0069\u0072\u0063\u006c\u0065":0x24cc,"W\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0174,"\u0057d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e84,"\u0057\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e86,"\u0057d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e88,"\u0057\u0065\u0064g\u0065":0x2a53,"\u0057\u0067\u0072\u0061\u0076\u0065":0x1e80,"\u0057\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff37,"\u0057\u0073\u006d\u0061\u006c\u006c":0xf777,"\u0058":0x0058,"\u0058c\u0069\u0072\u0063\u006c\u0065":0x24cd,"\u0058d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e8c,"\u0058\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8a,"X\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053d,"\u0058\u0069":0x039e,"\u0058\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff38,"\u0058\u0073\u006d\u0061\u006c\u006c":0xf778,"\u0059":0x0059,"\u0059\u0061\u0063\u0075\u0074\u0065":0x00dd,"Y\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7fd,"\u0059c\u0069\u0072\u0063\u006c\u0065":0x24ce,"Y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0176,"\u0059d\u0069\u0065\u0072\u0065\u0073\u0069s":0x0178,"\u0059\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7ff,"\u0059\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8e,"\u0059d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ef4,"Y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04f8,"\u0059\u0067\u0072\u0061\u0076\u0065":0x1ef2,"\u0059\u0068\u006fo\u006b":0x01b3,"\u0059\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ef6,"\u0059\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0545,"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0407,"\u0059\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0552,"\u0059\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff39,"\u0059\u0073\u006d\u0061\u006c\u006c":0xf779,"\u0059s\u006d\u0061\u006c\u006c\u0063\u0061p":0x021f,"\u0059\u0074\u0069\u006c\u0064\u0065":0x1ef8,"\u0059\u0075\u0070":0x2144,"\u0059\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x046a,"\u0059\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063":0x046c,"\u0059\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0466,"\u0059u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x0468,"\u005a":0x005a,"\u005a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0536,"\u005a\u0061\u0063\u0075\u0074\u0065":0x0179,"\u005a\u0063\u0061\u0072\u006f\u006e":0x017d,"Z\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf6ff,"\u005ac\u0069\u0072\u0063\u006c\u0065":0x24cf,"Z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x1e90,"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x017b,"\u005ad\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e92,"\u005a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0498,"\u005ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x04de,"\u005a\u0065\u0074\u0061":0x0396,"Z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053a,"\u005a\u0068\u0065\u0062\u0072\u0065\u0076\u0065":0x03fd,"\u005a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04c1,"Z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x0496,"\u005a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04dc,"\u005a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e94,"\u005a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff3a,"\u005a\u0073\u006d\u0061\u006c\u006c":0xf77a,"\u005as\u0074\u0072\u006f\u006b\u0065":0x01b5,"\u0061":0x0061,"\u0061\u0031":0x2701,"\u0061\u0032":0x2702,"\u0061\u0033":0x2704,"\u0061\u0034":0x260e,"\u0061\u0035":0x2706,"\u0061\u0036":0x271d,"\u0061\u0037":0x271e,"\u0061\u0038":0x271f,"\u0061\u0039":0x2720,"\u0061\u0031\u0030":0x2721,"\u0061\u0031\u0031":0x261b,"\u0061\u0031\u0032":0x261e,"\u0061\u0031\u0033":0x270c,"\u0061\u0031\u0034":0x270d,"\u0061\u0031\u0035":0x270e,"\u0061\u0031\u0036":0x270f,"\u0061\u0031\u0037":0x2711,"\u0061\u0031\u0038":0x2712,"\u0061\u0031\u0039":0x2713,"\u0061\u0032\u0030":0x2714,"\u0061\u0032\u0031":0x2715,"\u0061\u0032\u0032":0x2716,"\u0061\u0032\u0033":0x2717,"\u0061\u0032\u0034":0x2718,"\u0061\u0032\u0035":0x2719,"\u0061\u0032\u0036":0x271a,"\u0061\u0032\u0037":0x271b,"\u0061\u0032\u0038":0x271c,"\u0061\u0032\u0039":0x2722,"\u0061\u0033\u0030":0x2723,"\u0061\u0033\u0031":0x2724,"\u0061\u0033\u0032":0x2725,"\u0061\u0033\u0033":0x2726,"\u0061\u0033\u0034":0x2727,"\u0061\u0033\u0035":0x2605,"\u0061\u0033\u0036":0x2729,"\u0061\u0033\u0037":0x272a,"\u0061\u0033\u0038":0x272b,"\u0061\u0033\u0039":0x272c,"\u0061\u0034\u0030":0x272d,"\u0061\u0034\u0031":0x272e,"\u0061\u0034\u0032":0x272f,"\u0061\u0034\u0033":0x2730,"\u0061\u0034\u0034":0x2731,"\u0061\u0034\u0035":0x2732,"\u0061\u0034\u0036":0x2733,"\u0061\u0034\u0037":0x2734,"\u0061\u0034\u0038":0x2735,"\u0061\u0034\u0039":0x2736,"\u0061\u0035\u0030":0x2737,"\u0061\u0035\u0031":0x2738,"\u0061\u0035\u0032":0x2739,"\u0061\u0035\u0033":0x273a,"\u0061\u0035\u0034":0x273b,"\u0061\u0035\u0035":0x273c,"\u0061\u0035\u0036":0x273d,"\u0061\u0035\u0037":0x273e,"\u0061\u0035\u0038":0x273f,"\u0061\u0035\u0039":0x2740,"\u0061\u0036\u0030":0x2741,"\u0061\u0036\u0031":0x2742,"\u0061\u0036\u0032":0x2743,"\u0061\u0036\u0033":0x2744,"\u0061\u0036\u0034":0x2745,"\u0061\u0036\u0035":0x2746,"\u0061\u0036\u0036":0x2747,"\u0061\u0036\u0037":0x2748,"\u0061\u0036\u0038":0x2749,"\u0061\u0036\u0039":0x274a,"\u0061\u0037\u0030":0x274b,"\u0061\u0037\u0031":0x25cf,"\u0061\u0037\u0032":0x274d,"\u0061\u0037\u0033":0x25a0,"\u0061\u0037\u0034":0x274f,"\u0061\u0037\u0035":0x2751,"\u0061\u0037\u0036":0x25b2,"\u0061\u0037\u0037":0x25bc,"\u0061\u0037\u0038":0x25c6,"\u0061\u0037\u0039":0x2756,"\u0061\u0038\u0031":0x25d7,"\u0061\u0038\u0032":0x2758,"\u0061\u0038\u0033":0x2759,"\u0061\u0038\u0034":0x275a,"\u0061\u0038\u0035":0xf8de,"\u0061\u0038\u0036":0xf8e0,"\u0061\u0038\u0037":0xf8e1,"\u0061\u0038\u0038":0xf8e2,"\u0061\u0038\u0039":0xf8d7,"\u0061\u0039\u0030":0xf8d8,"\u0061\u0039\u0031":0xf8db,"\u0061\u0039\u0032":0xf8dc,"\u0061\u0039\u0033":0xf8d9,"\u0061\u0039\u0034":0xf8da,"\u0061\u0039\u0035":0xf8e3,"\u0061\u0039\u0036":0xf8e4,"\u0061\u0039\u0037":0x275b,"\u0061\u0039\u0038":0x275c,"\u0061\u0039\u0039":0x275d,"\u0061\u0031\u0030\u0030":0x275e,"\u0061\u0031\u0030\u0031":0x2761,"\u0061\u0031\u0030\u0032":0x2762,"\u0061\u0031\u0030\u0033":0x2763,"\u0061\u0031\u0030\u0034":0x2764,"\u0061\u0031\u0030\u0035":0x2710,"\u0061\u0031\u0030\u0036":0x2765,"\u0061\u0031\u0030\u0037":0x2766,"\u0061\u0031\u0030\u0038":0x2767,"\u0061\u0031\u0031\u0037":0x2709,"\u0061\u0031\u0031\u0038":0x2708,"\u0061\u0031\u0031\u0039":0x2707,"\u0061\u0031\u0032\u0030":0x2460,"\u0061\u0031\u0032\u0031":0x2461,"\u0061\u0031\u0032\u0032":0x2462,"\u0061\u0031\u0032\u0033":0x2463,"\u0061\u0031\u0032\u0034":0x2464,"\u0061\u0031\u0032\u0035":0x2465,"\u0061\u0031\u0032\u0036":0x2466,"\u0061\u0031\u0032\u0037":0x2467,"\u0061\u0031\u0032\u0038":0x2468,"\u0061\u0031\u0032\u0039":0x2469,"\u0061\u0031\u0033\u0030":0x2776,"\u0061\u0031\u0033\u0031":0x2777,"\u0061\u0031\u0033\u0032":0x2778,"\u0061\u0031\u0033\u0033":0x2779,"\u0061\u0031\u0033\u0034":0x277a,"\u0061\u0031\u0033\u0035":0x277b,"\u0061\u0031\u0033\u0036":0x277c,"\u0061\u0031\u0033\u0037":0x277d,"\u0061\u0031\u0033\u0038":0x277e,"\u0061\u0031\u0033\u0039":0x277f,"\u0061\u0031\u0034\u0030":0x2780,"\u0061\u0031\u0034\u0031":0x2781,"\u0061\u0031\u0034\u0032":0x2782,"\u0061\u0031\u0034\u0033":0x2783,"\u0061\u0031\u0034\u0034":0x2784,"\u0061\u0031\u0034\u0035":0x2785,"\u0061\u0031\u0034\u0036":0x2786,"\u0061\u0031\u0034\u0037":0x2787,"\u0061\u0031\u0034\u0038":0x2788,"\u0061\u0031\u0034\u0039":0x2789,"\u0061\u0031\u0035\u0030":0x278a,"\u0061\u0031\u0035\u0031":0x278b,"\u0061\u0031\u0035\u0032":0x278c,"\u0061\u0031\u0035\u0033":0x278d,"\u0061\u0031\u0035\u0034":0x278e,"\u0061\u0031\u0035\u0035":0x278f,"\u0061\u0031\u0035\u0036":0x2790,"\u0061\u0031\u0035\u0037":0x2791,"\u0061\u0031\u0035\u0038":0x2792,"\u0061\u0031\u0035\u0039":0x2793,"\u0061\u0031\u0036\u0030":0x2794,"\u0061\u0031\u0036\u0032":0x27a3,"\u0061\u0031\u0036\u0034":0x2195,"\u0061\u0031\u0036\u0035":0x2799,"\u0061\u0031\u0036\u0036":0x279b,"\u0061\u0031\u0036\u0037":0x279c,"\u0061\u0031\u0036\u0038":0x279d,"\u0061\u0031\u0036\u0039":0x279e,"\u0061\u0031\u0037\u0030":0x279f,"\u0061\u0031\u0037\u0031":0x27a0,"\u0061\u0031\u0037\u0032":0x27a1,"\u0061\u0031\u0037\u0033":0x27a2,"\u0061\u0031\u0037\u0034":0x27a4,"\u0061\u0031\u0037\u0035":0x27a5,"\u0061\u0031\u0037\u0036":0x27a6,"\u0061\u0031\u0037\u0037":0x27a7,"\u0061\u0031\u0037\u0038":0x27a8,"\u0061\u0031\u0037\u0039":0x27a9,"\u0061\u0031\u0038\u0030":0x27ab,"\u0061\u0031\u0038\u0031":0x27ad,"\u0061\u0031\u0038\u0032":0x27af,"\u0061\u0031\u0038\u0033":0x27b2,"\u0061\u0031\u0038\u0034":0x27b3,"\u0061\u0031\u0038\u0035":0x27b5,"\u0061\u0031\u0038\u0036":0x27b8,"\u0061\u0031\u0038\u0037":0x27ba,"\u0061\u0031\u0038\u0038":0x27bb,"\u0061\u0031\u0038\u0039":0x27bc,"\u0061\u0031\u0039\u0030":0x27bd,"\u0061\u0031\u0039\u0031":0x27be,"\u0061\u0031\u0039\u0032":0x279a,"\u0061\u0031\u0039\u0033":0x27aa,"\u0061\u0031\u0039\u0034":0x27b6,"\u0061\u0031\u0039\u0035":0x27b9,"\u0061\u0031\u0039\u0036":0x2798,"\u0061\u0031\u0039\u0037":0x27b4,"\u0061\u0031\u0039\u0038":0x27b7,"\u0061\u0031\u0039\u0039":0x27ac,"\u0061\u0032\u0030\u0030":0x27ae,"\u0061\u0032\u0030\u0031":0x27b1,"\u0061\u0032\u0030\u0032":0x2703,"\u0061\u0032\u0030\u0033":0x2750,"\u0061\u0032\u0030\u0034":0x2752,"\u0061\u0032\u0030\u0035":0xf8dd,"\u0061\u0032\u0030\u0036":0xf8df,"\u0061a\u0062\u0065\u006e\u0067\u0061\u006ci":0x0986,"\u0061\u0061\u0063\u0075\u0074\u0065":0x00e1,"\u0061\u0061\u0064\u0065\u0076\u0061":0x0906,"\u0061\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a86,"\u0061\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a06,"\u0061a\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a3e,"\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3303,"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09be,"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x093e,"\u0061\u0061\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0abe,"\u0061b\u0062\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006f\u006e\u006da\u0072\u006b\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x055f,"a\u0062b\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006fn\u0073\u0069\u0067\u006ede\u0076\u0061":0x0970,"\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0985,"\u0061b\u006f\u0070\u006f\u006d\u006f\u0066o":0x311a,"\u0061\u0062\u0072\u0065\u0076\u0065":0x0103,"a\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065":0x1eaf,"\u0061\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d1,"\u0061\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077":0x1eb7,"a\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065":0x1eb1,"\u0061b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1eb3,"a\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065":0x1eb5,"\u0061\u0063\u0061\u0072\u006f\u006e":0x01ce,"\u0061c\u0063\u006f\u0075\u006e\u0074\u006ff":0x2100,"\u0061c\u0063\u0075\u0072\u0072\u0065\u006et":0x23e6,"\u0061\u0063\u0069\u0064\u0066\u0072\u0065\u0065":0x267e,"\u0061c\u0069\u0072\u0063\u006c\u0065":0x24d0,"a\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00e2,"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ea5,"\u0061\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ead,"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ea7,"a\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ea9,"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1eab,"\u0061\u0063\u0075t\u0065":0x00b4,"\u0061\u0063\u0075\u0074\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0317,"\u0061c\u0075\u0074\u0065\u0063\u006f\u006db":0x0301,"\u0061c\u0075\u0074\u0065\u0064\u0065\u0076a":0x0954,"a\u0063\u0075\u0074\u0065\u006c\u006f\u0077\u006d\u006f\u0064":0x02cf,"\u0061c\u0075\u0074\u0065\u006e\u006f\u0073p":0x0274,"\u0061\u0063\u0075t\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062":0x0341,"\u0061\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077":0x2940,"\u0061c\u0077l\u0065\u0066\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x2939,"\u0061c\u0077o\u0070\u0065\u006e\u0063\u0069r\u0063\u006ce\u0061\u0072\u0072\u006f\u0077":0x21ba,"\u0061c\u0077o\u0076\u0065\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x293a,"\u0061\u0063w\u0075\u006e\u0064e\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x293b,"\u0061d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0201,"\u0061\u0064\u0064\u0061\u006b\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a71,"\u0061\u0064\u0064\u0072\u0065\u0073\u0073\u0073\u0075b\u006a\u0065\u0063\u0074":0x2101,"\u0061\u0064\u0065v\u0061":0x0905,"\u0061d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00e4,"\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d3,"\u0061d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01df,"\u0061d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ea1,"\u0061\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e":0x01e1,"\u0061\u0064\u006ft\u0073":0x22f0,"\u0061\u0065":0x00e6,"\u0061e\u0061\u0063\u0075\u0074\u0065":0x01fd,"\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3150,"\u0061\u0065\u006d\u0061\u0063\u0072\u006f\u006e":0x01e3,"\u0061f\u0069\u0069\u0032\u0039\u0039":0x200e,"\u0061f\u0069\u0069\u0033\u0030\u0030":0x200f,"\u0061f\u0069\u0069\u0033\u0030\u0031":0x200d,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317":0x0410,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318":0x0411,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319":0x0412,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324":0x0416,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325":0x0417,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327":0x0419,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328":0x041a,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331":0x041d,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333":0x041f,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334":0x0420,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335":0x0421,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336":0x0422,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338":0x0424,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343":0x0429,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344":0x042a,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345":0x042b,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346":0x042c,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348":0x042e,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349":0x042f,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351":0x0402,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352":0x0403,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354":0x0405,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355":0x0406,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357":0x0408,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359":0x040a,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00363":0xf6c4,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00364":0xf6c5,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365":0x0430,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367":0x0432,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368":0x0433,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369":0x0434,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371":0x0451,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373":0x0437,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375":0x0439,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379":0x043d,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384":0x0442,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385":0x0443,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386":0x0444,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387":0x0445,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390":0x0448,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391":0x0449,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396":0x044e,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397":0x044f,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302":0x0455,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303":0x0456,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305":0x0458,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307":0x045a,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309":0x045c,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310":0x045e,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00346":0x0462,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00347":0x0472,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00348":0x0474,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00392":0xf6c6,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00395":0x0473,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396":0x0475,"\u0061f\u0069\u0069\u0031\u0030\u0038\u00331":0xf6c7,"\u0061f\u0069\u0069\u0031\u0030\u0038\u00332":0xf6c8,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388":0x060c,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395":0x0663,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398":0x0666,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399":0x0667,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303":0x061b,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307":0x061f,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310":0x0622,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311":0x0623,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312":0x0624,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318":0x062a,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321":0x062d,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322":0x062e,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323":0x062f,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327":0x0633,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328":0x0634,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329":0x0635,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330":0x0636,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333":0x0639,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341":0x0641,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342":0x0642,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343":0x0643,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344":0x0644,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345":0x0645,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351":0x064b,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352":0x064c,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356":0x0650,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308":0x0698,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00311":0x0679,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00312":0x0688,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00314":0x06ba,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00334":0x06d5,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336":0x20aa,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345":0x05be,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366":0x05d2,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368":0x05d4,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370":0x05d6,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371":0x05d7,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373":0x05d9,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374":0x05da,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379":0x05df,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384":0x05e4,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386":0x05e6,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395":0xfb2b,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316":0x05f0,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317":0x05f1,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397":0x05b8,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399":0x05b0,"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303":0x05c2,"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341":0x05bf,"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342":0x05c0,"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389":0x2113,"\u0061f\u0069\u0069\u0036\u0031\u0035\u00373":0x202c,"\u0061f\u0069\u0069\u0036\u0031\u0035\u00374":0x202d,"\u0061f\u0069\u0069\u0036\u0031\u0035\u00375":0x202e,"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364":0x200c,"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367":0x066d,"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337":0x02bd,"\u0061\u0067\u0072\u0061\u0076\u0065":0x00e0,"\u0061g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a85,"\u0061g\u0075\u0072\u006d\u0075\u006b\u0068i":0x0a05,"\u0061h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3042,"\u0061\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ea3,"\u0061i\u0062\u0065\u006e\u0067\u0061\u006ci":0x0990,"\u0061\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x311e,"\u0061\u0069\u0064\u0065\u0076\u0061":0x0910,"a\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d5,"\u0061\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a90,"\u0061\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a10,"\u0061i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a48,"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeca,"\u0061\u0069n\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfecb,"a\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfec9,"\u0061i\u006em\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfecc,"\u0061\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0203,"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09c8,"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0948,"\u0061\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac8,"\u0061k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a2,"\u0061k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff71,"\u0061k\u006f\u0072\u0065\u0061\u006e":0x314f,"\u0061\u006c\u0065\u0066":0x05d0,"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063":0x0627,"\u0061\u006ce\u0066\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb30,"\u0061l\u0065f\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe8e,"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe84,"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063":0x0625,"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0062\u0065\u006co\u0077f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe88,"\u0061\u006c\u0065f\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe8d,"\u0061l\u0065f\u006c\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4f,"\u0061l\u0065\u0066\u006d\u0061d\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe82,"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063":0x0649,"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062i\u0063":0xfef0,"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeef,"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfef4,"\u0061l\u0065f\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb2e,"\u0061\u006ce\u0066\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077":0xfb2f,"\u0061l\u0065\u0066\u0077\u0061\u0073\u006ca":0x0671,"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061f\u0069\u006e\u0061\u006c":0xfb51,"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064":0xfb50,"a\u006c\u0065\u0066\u0077it\u0068f\u0061\u0074\u0068\u0061\u0074a\u006e\u0066\u0069\u006e\u0061\u006c":0xfd3c,"\u0061l\u0065\u0066\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061t\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfd3d,"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfe83,"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0062\u0065\u006c\u006f\u0077\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfe87,"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u006d\u0061\u0064d\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfe81,"\u0061\u006c\u0065p\u0068":0x2135,"\u0061\u006c\u006c\u0065\u0071\u0075\u0061\u006c":0x224c,"\u0061\u006c\u0070h\u0061":0x03b1,"\u0061\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073":0x03ac,"a\u006c\u0074\u0073\u0065\u006c\u0065\u0063\u0074\u006f\u0072":0xd802,"\u0061m\u0061\u0063\u0072\u006f\u006e":0x0101,"\u0061\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff41,"\u0061m\u0070\u0065\u0072\u0073\u0061\u006ed":0x0026,"\u0061m\u0070e\u0072\u0073\u0061\u006e\u0064m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff06,"\u0061\u006d\u0070\u0065\u0072\u0073\u0061\u006e\u0064s\u006d\u0061\u006c\u006c":0xf726,"\u0061\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33c2,"\u0061\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3122,"a\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3124,"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074":0x27e8,"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x27e9,"\u0061\u006e\u0067\u0064\u006e\u0072":0x299f,"\u0061\u006e\u0067\u006b\u0068\u0061\u006e\u006b\u0068u\u0074\u0068\u0061\u0069":0x0e5a,"\u0061\u006e\u0067l\u0065":0x2220,"\u0061\u006eg\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x3008,"\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006ce\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe3f,"\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074":0x3009,"\u0061n\u0067\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l":0xfe40,"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t":0x2329,"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x232a,"\u0061\u006e\u0067\u006c\u0065\u0073":0x299e,"\u0061n\u0067\u006c\u0065\u0075\u0062\u0061r":0x29a4,"\u0061\u006e\u0067\u0073\u0074\u0072\u006f\u006d":0x212b,"\u0061n\u006e\u0075\u0069\u0074\u0079":0x20e7,"\u0061n\u006f\u0074\u0065\u006c\u0065\u0069a":0x0387,"\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x27f2,"\u0061\u006e\u0075d\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061":0x0952,"\u0061n\u0075s\u0076\u0061\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0982,"\u0061\u006e\u0075s\u0076\u0061\u0072\u0061\u0064\u0065\u0076\u0061":0x0902,"\u0061\u006eu\u0073\u0076\u0061r\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a82,"\u0061o\u0067\u006f\u006e\u0065\u006b":0x0105,"\u0061\u0070\u0061a\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3300,"\u0061\u0070\u0061\u0072\u0065\u006e":0x249c,"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065":0x0245,"\u0061p\u006fs\u0074\u0072\u006f\u0070\u0068e\u0061\u0072m\u0065\u006e\u0069\u0061\u006e":0x055a,"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u006d\u006f\u0064":0x02bc,"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u0072\u0065\u0076":0x0246,"\u0061\u0070\u0070l\u0065":0xf8ff,"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073":0x2250,"\u0061p\u0070\u0072\u006f\u0078\u0065\u0071q":0x2a70,"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c":0x2248,"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065":0x2252,"a\u0070\u0070\u0072\u006f\u0078\u0069\u0064\u0065\u006e\u0074":0x224b,"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c":0x224a,"\u0061\u0072\u0061e\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x318e,"a\u0072\u0061\u0065\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x318d,"\u0061\u0072\u0063":0x2312,"\u0061\u0072\u0063e\u0071":0x2258,"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e":0x21b6,"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e":0x21b7,"\u0061\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u006cf\u0072\u0069\u006e\u0067":0x1e9a,"\u0061\u0072\u0069n\u0067":0x00e5,"\u0061\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065":0x01fb,"\u0061\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077":0x1e01,"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u0064\u006f\u0077\u006e":0x0590,"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u006c\u0065\u0066\u0074":0x058d,"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074":0x058f,"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0075\u0070":0x058e,"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h":0x2194,"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0064\u006f\u0077\u006e":0x21e3,"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u006c\u0065\u0066\u0074":0x21e0,"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068r\u0069\u0067\u0068\u0074":0x21e2,"a\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0075\u0070":0x21e1,"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068":0x21d4,"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076":0x21d5,"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0064\u006f\u0077\u006e":0x21d3,"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074":0x21d0,"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074":0x21d2,"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0075\u0070":0x21d1,"\u0061r\u0072\u006f\u0077\u0064\u006f\u0077n":0x2193,"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074":0x2199,"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006er\u0069\u0067\u0068\u0074":0x2198,"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065":0x21e9,"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u0064\u006f\u0077\u006e\u006d\u006f\u0064":0x02c5,"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u006c\u0065\u0066\u0074\u006d\u006f\u0064":0x02c2,"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064\u0072\u0069\u0067h\u0074\u006d\u006f\u0064":0x02c3,"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064u\u0070\u006d\u006f\u0064":0x02c4,"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074":0x21aa,"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006br\u0069\u0067\u0068\u0074":0x21a9,"\u0061\u0072\u0072o\u0077\u0068\u006f\u0072\u0069\u007a\u0065\u0078":0xf8e7,"\u0061r\u0072\u006f\u0077\u006c\u0065\u0066t":0x2190,"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0062\u006f\u0074\u0068\u0061\u006c\u0066":0x21bd,"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065":0x21cd,"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074":0x21c6,"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065":0x21e6,"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074":0x2192,"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0062\u006ft\u0068\u0061\u006c\u0066":0x21c1,"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065":0x21cf,"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074":0x21c4,"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065":0x21e8,"\u0061\u0072\u0072o\u0077\u0074\u0061\u0062\u006c\u0065\u0066\u0074":0x21e4,"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0062\u0072\u0069\u0067\u0068\u0074":0x21e5,"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c\u006c\u0065\u0066\u0074":0x21a2,"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006cr\u0069\u0067\u0068\u0074":0x21a3,"\u0061r\u0072o\u0077\u0074\u0072\u0069\u0070\u006c\u0065\u006c\u0065\u0066\u0074":0x21da,"\u0061\u0072r\u006f\u0077\u0074r\u0069\u0070\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x21db,"\u0061r\u0072\u006f\u0077\u0075\u0070":0x2191,"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065":0x21a8,"a\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074":0x2196,"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e":0x21c5,"\u0061\u0072\u0072o\u0077\u0075\u0070\u0072\u0069\u0067\u0068\u0074":0x2197,"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065":0x21e7,"a\u0072\u0072\u006f\u0077\u0076\u0065\u0072\u0074\u0065\u0078":0xf8e6,"a\u0073c\u0065\u006e\u0064\u0065\u0072\u0063\u006f\u006dp\u0077\u006f\u0072\u0064ma\u0072\u006b":0xd80a,"a\u0073\u0063\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006d":0x005e,"a\u0073c\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006dm\u006f\u006e\u006f\u0073pa\u0063\u0065":0xff3e,"\u0061\u0073\u0063\u0069\u0069\u0074\u0069\u006c\u0064\u0065":0x007e,"\u0061\u0073\u0063\u0069it\u0069\u006c\u0064\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5e,"\u0061s\u0063\u0072\u0069\u0070\u0074":0x0251,"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064":0x0252,"\u0061\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3041,"\u0061\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a1,"\u0061\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff67,"\u0061\u0073\u0073\u0065\u0072\u0074":0x22a6,"\u0061\u0073\u0074e\u0071":0x2a6e,"a\u0073\u0074\u0065\u0072\u0061\u0063\u0063\u0065\u006e\u0074":0x20f0,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b":0x002a,"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068":0x2217,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff0a,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u0073\u006d\u0061\u006c\u006c":0xfe61,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006d":0x2042,"\u0061\u0073\u0074\u0072\u006f\u0073\u0075\u006e":0x2609,"\u0061s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6e9,"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c":0x2243,"\u0061\u0074":0x0040,"\u0061\u0074\u0069\u006c\u0064\u0065":0x00e3,"a\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff20,"\u0061t\u0073\u006d\u0061\u006c\u006c":0xfe6b,"\u0061t\u0075\u0072\u006e\u0065\u0064":0x0250,"\u0061u\u0062\u0065\u006e\u0067\u0061\u006ci":0x0994,"\u0061\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3120,"\u0061\u0075\u0064\u0065\u0076\u0061":0x0914,"\u0061\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a94,"\u0061\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a14,"\u0061\u0075\u006c\u0065ng\u0074\u0068\u006d\u0061\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09d7,"\u0061u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a4c,"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09cc,"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x094c,"\u0061\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0acc,"\u0061\u0076\u0061g\u0072\u0061\u0068\u0061\u0064\u0065\u0076\u0061":0x093d,"\u0061\u0077\u0069n\u0074":0x2a11,"a\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0561,"\u0061\u0079i\u006e\u0061\u006ct\u006f\u006e\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb20,"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077":0x05e2,"\u0062":0x0062,"\u0062\u004e\u006f\u0074":0x2aed,"\u0062a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09ac,"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065":0x2036,"\u0062\u0061\u0063\u006b\u0065\u0064":0x024c,"\u0062a\u0063\u006b\u0073\u006c\u0061\u0073h":0x005c,"\u0062a\u0063k\u0073\u006c\u0061\u0073\u0068m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff3c,"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065":0x2037,"\u0062\u0061\u0064\u0065\u0076\u0061":0x092c,"\u0062a\u0067\u006d\u0065\u006d\u0062\u0065r":0x22ff,"\u0062\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aac,"\u0062\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2c,"\u0062\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3070,"\u0062\u0061\u0068\u0074\u0074\u0068\u0061\u0069":0x0e3f,"\u0062\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d0,"\u0062\u0061\u0072":0x007c,"\u0062\u0061\u0072\u0056":0x2aea,"\u0062\u0061\u0072\u0063\u0061\u0070":0x2a43,"\u0062\u0061\u0072\u0063\u0075\u0070":0x2a42,"\u0062a\u0072d\u006f\u0077\u006e\u0068\u0061r\u0070\u006fo\u006e\u006c\u0065\u0066\u0074":0x2961,"\u0062\u0061\u0072\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074":0x295d,"\u0062a\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061":0x21b9,"\u0062a\u0072l\u0065\u0066\u0074\u0068\u0061r\u0070\u006fo\u006e\u0064\u006f\u0077\u006e":0x2956,"\u0062\u0061r\u006c\u0065\u0066t\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070":0x2952,"\u0062\u0061\u0072\u006d\u0069\u0064\u006c\u006f\u006eg\u006e\u006f\u0073\u0070":0x02a9,"\u0062\u0061\u0072m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5c,"b\u0061\u0072\u006f\u0076er\u006eo\u0072\u0074\u0068\u0077\u0065s\u0074\u0061\u0072\u0072\u006f\u0077":0x21b8,"b\u0061r\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u0064\u0069\u0061mo\u006e\u0064":0x2920,"\u0062\u0061\u0072\u0072ig\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e":0x295f,"\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0075\u0070":0x295b,"\u0062\u0061\u0072\u0075\u0070\u0061\u0072\u0072\u006f\u0077":0x2912,"\u0062\u0061r\u0075\u0070\u0068a\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074":0x2958,"\u0062\u0061\u0072\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006er\u0069\u0067\u0068\u0074":0x2954,"\u0062\u0061\u0072\u0076\u0065\u0065":0x22bd,"\u0062b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3105,"\u0062\u0062\u0072\u006b\u0074\u0062\u0072\u006b":0x23b6,"\u0062c\u0069\u0072\u0063\u006c\u0065":0x24d1,"\u0062\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e03,"\u0062d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e05,"\u0062\u0064\u0074\u0072\u0069\u0070\u006c\u0065\u0076\u0064\u0061\u0073\u0068":0x2506,"b\u0065a\u006d\u0065\u0064\u0073\u0069\u0078\u0074\u0065e\u006e\u0074\u0068\u006eot\u0065\u0073":0x266c,"\u0062e\u0063\u0061\u0075\u0073\u0065":0x2235,"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0431,"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c":0x0628,"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe90,"\u0062\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe91,"\u0062\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3079,"b\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe8f,"\u0062e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe92,"b\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfc9f,"b\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc08,"\u0062e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfc6d,"\u0062\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc6e,"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc09,"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xfc9d,"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xe812,"\u0062e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfc9c,"\u0062e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfc9e,"\u0062e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc6a,"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc6f,"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc0a,"\u0062\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d9,"b\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0562,"\u0062e\u006e\u007a\u0065\u006e\u0072":0x23e3,"\u0062\u0065\u0074\u0061":0x03b2,"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b":0x03d0,"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb31,"\u0062\u0065\u0074\u0068":0x2136,"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w":0x05d1,"\u0062\u0065\u0074\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4c,"\u0062e\u0074\u0077\u0065\u0065\u006e":0x226c,"\u0062\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ad,"\u0062h\u0061\u0064\u0065\u0076\u0061":0x092d,"b\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aad,"b\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2d,"\u0062\u0068\u006fo\u006b":0x0253,"\u0062\u0069\u0067\u0062\u006f\u0074":0x27d8,"\u0062i\u0067\u0063\u0075\u0070\u0064\u006ft":0x2a03,"\u0062\u0069\u0067\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065":0x2afc,"\u0062i\u0067\u006f\u0064\u006f\u0074":0x2a00,"\u0062\u0069\u0067\u006f\u0070\u006c\u0075\u0073":0x2a01,"\u0062i\u0067\u006f\u0074\u0069\u006d\u0065s":0x2a02,"\u0062\u0069\u0067s\u006c\u006f\u0070\u0065\u0064\u0076\u0065\u0065":0x2a57,"\u0062\u0069\u0067\u0073\u006c\u006f\u0070\u0065\u0064w\u0065\u0064\u0067\u0065":0x2a58,"\u0062\u0069\u0067\u0073\u0071\u0063\u0061\u0070":0x2a05,"\u0062\u0069\u0067\u0073\u0071\u0063\u0075\u0070":0x2a06,"\u0062\u0069\u0067\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067":0x2aff,"\u0062\u0069\u0067\u0074\u0069\u006d\u0065\u0073":0x2a09,"\u0062\u0069\u0067\u0074\u006f\u0070":0x27d9,"\u0062i\u0067t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074":0x2a1e,"\u0062\u0069\u0067\u0075\u0070\u006c\u0075\u0073":0x2a04,"\u0062\u0069\u0067\u0076\u0065\u0065":0x22c1,"\u0062\u0069\u0067\u0077\u0065\u0064\u0067\u0065":0x22c0,"\u0062\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3073,"\u0062\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d3,"\u0062\u0069\u006c\u0061\u0062\u0069\u0061\u006c\u0063\u006c\u0069\u0063\u006b":0x0298,"\u0062\u0069\u006e\u0064\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a02,"\u0062\u0069\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3331,"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u006f\u0077\u006e\u0061rr\u006f\u0077":0x29ed,"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u0072\u0069\u0067\u0068td\u006f\u0074":0x2688,"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077\u006f\u0064\u006f\u0074\u0073":0x2689,"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064\u0077\u0068\u0069t\u0065":0x25d5,"b\u006c\u0061\u0063\u006bdi\u0061m\u006f\u006e\u0064\u0064\u006fw\u006e\u0061\u0072\u0072\u006f\u0077":0x29ea,"\u0062\u006c\u0061\u0063\u006b\u0068\u006f\u0075\u0072g\u006c\u0061\u0073\u0073":0x29d7,"\u0062\u006c\u0061\u0063kl\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065":0x25d6,"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072":0x25c4,"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce":0x25c0,"\u0062\u006c\u0061\u0063\u006b\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074":0x3010,"\u0062\u006c\u0061ck\u006c\u0065\u006e\u0074\u0069\u0063\u0075\u006c\u0061r\u0062r\u0061c\u006be\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe3b,"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074":0x3011,"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061r\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063a\u006c":0xfe3c,"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065":0x25e3,"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25e2,"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065":0x25ac,"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r":0x25ba,"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065":0x25b6,"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x25aa,"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065":0x263b,"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u0064\u006f\u0077\u006e":0x25be,"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065":0x25e4,"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25e5,"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065":0x25b4,"\u0062\u006c\u0061n\u006b":0x2423,"\u0062\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e07,"b\u006c\u006b\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c":0x2b2c,"b\u006c\u006b\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c":0x2b2e,"\u0062\u006c\u006fc\u006b":0x2588,"\u0062\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff42,"\u0062\u006f\u0062a\u0069\u006d\u0061\u0069\u0074\u0068\u0061\u0069":0x0e1a,"\u0062\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307c,"\u0062\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30dc,"\u0062\u006f\u0074\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065":0x25e1,"\u0062\u006f\u0077\u0074\u0069\u0065":0x22c8,"\u0062\u006f\u0078\u0061\u0073\u0074":0x29c6,"\u0062\u006f\u0078\u0062\u0061\u0072":0x25eb,"\u0062\u006f\u0078\u0062\u006f\u0078":0x29c8,"\u0062o\u0078\u0062\u0073\u006c\u0061\u0073h":0x29c5,"\u0062o\u0078\u0063\u0069\u0072\u0063\u006ce":0x29c7,"\u0062o\u0078\u0064\u0069\u0061\u0067":0x29c4,"\u0062\u006f\u0078\u006f\u006e\u0062\u006f\u0078":0x29c9,"\u0062\u0070\u0061\u0072\u0065\u006e":0x249d,"\u0062\u0071\u0073\u0071\u0075\u0061\u0072\u0065":0x33c3,"\u0062r\u0061\u0063\u0065\u0065\u0078":0xf8f4,"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t":0x007b,"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0062\u0074":0xf8f3,"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u006d\u0069\u0064":0xf8f2,"\u0062r\u0061c\u0065\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff5b,"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c":0xfe5b,"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0074\u0070":0xf8f1,"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe37,"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074":0x007d,"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0074":0xf8fe,"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u006d\u0069\u0064":0xf8fd,"\u0062\u0072\u0061\u0063er\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5d,"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c":0xfe5c,"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0074\u0070":0xf8fc,"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c":0xfe38,"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x005b,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0062\u0074":0xf8f0,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0065\u0078":0xf8ef,"b\u0072a\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074m\u006f\u006e\u006f\u0073pa\u0063\u0065":0xff3b,"\u0062\u0072a\u0063\u006b\u0065t\u006c\u0065\u0066\u0074\u0071\u0075\u0069\u006c\u006c":0x2045,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0074\u0070":0xf8ee,"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x005d,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0062\u0074":0xf8fb,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0065\u0078":0xf8fa,"b\u0072\u0061\u0063\u006bet\u0072i\u0067\u0068\u0074\u006d\u006fn\u006f\u0073\u0070\u0061\u0063\u0065":0xff3d,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074q\u0075\u0069\u006c\u006c":0x2046,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0074\u0070":0xf8f9,"\u0062\u0072\u0065v\u0065":0x02d8,"\u0062\u0072\u0065\u0076\u0065\u0031":0xf006,"\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x032e,"\u0062\u0072\u0065\u0076\u0065\u0063\u006d\u0062":0x0306,"b\u0072\u0065\u0076\u0065in\u0076e\u0072\u0074\u0065\u0064\u0062e\u006c\u006f\u0077\u0063\u006d\u0062":0x032f,"\u0062\u0072e\u0076\u0065\u0069n\u0076\u0065\u0072\u0074\u0065\u0064\u0063\u006d\u0062":0x0311,"\u0062\u0072\u0065\u0076ei\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0064\u006f\u0075\u0062\u006c\u0065\u0063m\u0062":0x0361,"\u0062\u0072\u0069\u0064\u0067\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x032a,"\u0062\u0072\u0069\u0064ge\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063m\u0062":0x033a,"\u0062\u0072i\u0064\u0067\u0065i\u006e\u0076\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x02ad,"\u0062r\u006f\u006b\u0065\u006e\u0062\u0061r":0x00a6,"\u0062\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x2b41,"\u0062s\u0069m\u0069\u006c\u0061\u0072\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x2b47,"\u0062\u0073\u006f\u006c\u0068\u0073\u0075\u0062":0x27c8,"\u0062s\u0074\u0072\u006f\u006b\u0065":0x0180,"\u0062s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ea,"\u0062\u0074\u0069\u006d\u0065\u0073":0x2a32,"\u0062t\u006f\u0070\u0062\u0061\u0072":0x0183,"\u0062\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3076,"\u0062\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d6,"\u0062\u0075\u006c\u006c\u0065\u0074":0x2022,"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072":0x2219,"\u0062\u0075\u006c\u006c\u0073\u0065\u0079\u0065":0x25ce,"\u0062u\u006d\u0070\u0065\u0071\u0071":0x2aae,"\u0063":0x0063,"\u0063\u0031\u0032\u0038":0x0080,"\u0063\u0031\u0032\u0039":0x0081,"\u0063\u0031\u0034\u0031":0x008d,"\u0063\u0031\u0034\u0032":0x008e,"\u0063\u0031\u0034\u0033":0x008f,"\u0063\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056e,"\u0063a\u0062\u0065\u006e\u0067\u0061\u006ci":0x099a,"\u0063\u0061\u0063\u0075\u0074\u0065":0x0107,"\u0063a\u0064\u0061\u0075\u006e\u0061":0x2106,"\u0063\u0061\u0064\u0065\u0076\u0061":0x091a,"\u0063\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9a,"\u0063\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1a,"\u0063a\u006c\u0073\u0071\u0075\u0061\u0072e":0x3388,"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006ed\u0075\u0062e\u006e\u0067\u0061\u006c\u0069":0x0981,"\u0063\u0061\u006e\u0064\u0072\u0061\u0062\u0069\u006ed\u0075\u0063\u006d\u0062":0x0310,"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006e\u0064\u0075\u0064\u0065\u0076\u0061":0x0901,"\u0063\u0061\u006e\u0064ra\u0062\u0069\u006e\u0064\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a81,"\u0063a\u0070\u0062\u0061\u0072\u0063\u0075p":0x2a49,"\u0063\u0061\u0070\u0064\u006f\u0074":0x2a40,"\u0063\u0061\u0070\u0069ta\u006c\u0063\u006f\u006d\u0070\u0077\u006f\u0072\u0064\u006d\u0061\u0072\u006b":0xd809,"\u0063\u0061\u0070\u006f\u0076\u0065\u0072\u0063\u0075\u0070":0x2a47,"\u0063\u0061\u0070\u0073\u006c\u006f\u0063\u006b":0x21ea,"\u0063\u0061\u0070\u0077\u0065\u0064\u0067\u0065":0x2a44,"\u0063\u0061\u0072\u0065\u006f\u0066":0x2105,"c\u0061\u0072\u0065\u0074\u0069\u006e\u0073\u0065\u0072\u0074":0x2038,"\u0063\u0061\u0072o\u006e":0x02c7,"\u0063\u0061\u0072\u006f\u006e\u0031":0xf00a,"\u0063\u0061\u0072\u006f\u006e\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x032c,"\u0063\u0061\u0072\u006f\u006e\u0063\u006d\u0062":0x030c,"\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e":0x21b5,"\u0063b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3118,"\u0063\u0063\u0061\u0072\u006f\u006e":0x010d,"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x00e7,"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065":0x1e09,"\u0063c\u0069\u0072\u0063\u006c\u0065":0x24d2,"c\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0109,"\u0063\u0063\u0075r\u006c":0x0255,"\u0063c\u0077u\u006e\u0064\u0065\u0072\u0063u\u0072\u0076e\u0061\u0072\u0072\u006f\u0077":0x293f,"\u0063\u0064\u006f\u0074":0x010b,"\u0063\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33c5,"\u0063e\u0064\u0069\u006c\u006c\u0061":0x00b8,"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0031":0xf008,"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0032":0xf00d,"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0063\u006d\u0062":0x0327,"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074":0x2308,"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074":0x2309,"\u0063\u0065\u006e\u0074":0x00a2,"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065":0x2103,"\u0063\u0065\u006et\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0xf6df,"\u0063\u0065\u006e\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe0,"\u0063\u0065\u006et\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf7a2,"\u0063\u0065\u006e\u0074\u0072\u0065\u006c\u0069\u006e\u0065":0x2104,"\u0063\u0065\u006et\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0xf6e0,"c\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0579,"\u0063\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099b,"\u0063h\u0061\u0064\u0065\u0076\u0061":0x091b,"c\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9b,"c\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1b,"\u0063\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3114,"c\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04bd,"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0447,"\u0063\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04bf,"c\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04b7,"\u0063\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04f5,"\u0063\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0573,"c\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04cc,"\u0063h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x04b9,"\u0063\u0068\u0069":0x03c7,"c\u0068i\u0065\u0075\u0063\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x3277,"\u0063\u0068\u0069\u0065uc\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3217,"\u0063\u0068\u0069\u0065uc\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3269,"\u0063\u0068\u0069\u0065\u0075\u0063\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314a,"\u0063h\u0069e\u0075\u0063\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x3209,"\u0063\u0068\u006fc\u0068\u0061\u006e\u0067\u0074\u0068\u0061\u0069":0x0e0a,"c\u0068\u006f\u0063\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e08,"\u0063\u0068\u006fc\u0068\u0069\u006e\u0067\u0074\u0068\u0061\u0069":0x0e09,"c\u0068\u006f\u0063\u0068\u006f\u0065\u0074\u0068\u0061\u0069":0x0e0c,"\u0063\u0068\u006fo\u006b":0x0188,"\u0063i\u0065u\u0063\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3276,"\u0063\u0069\u0065\u0075\u0063\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3216,"\u0063\u0069\u0065\u0075\u0063\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3268,"c\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3148,"\u0063\u0069e\u0075\u0063\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3208,"\u0063\u0069\u0065\u0075\u0063\u0075\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x321c,"\u0063\u0069\u0072\u0045":0x29c3,"\u0063\u0069\u0072\u0062\u006f\u0074":0x27df,"\u0063\u0069\u0072\u0063\u0065\u0071":0x2257,"\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0073\u0074e\u0072\u0069\u0073\u006b":0x229b,"c\u0069\u0072\u0063\u006ceb\u006ft\u0074\u006f\u006d\u0068\u0061l\u0066\u0062\u006c\u0061\u0063\u006b":0x25d2,"\u0063\u0069\u0072c\u006c\u0065\u0063\u006f\u0070\u0079\u0072\u0074":0x20dd,"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0062\u0075\u006c\u006c\u0065\u0074":0x29bf,"c\u0069\u0072\u0063\u006c\u0065\u0064\u0064\u0061\u0073\u0068":0x229d,"\u0063\u0069\u0072c\u006c\u0065\u0064\u0069\u0076\u0069\u0064\u0065":0x2298,"\u0063i\u0072c\u006c\u0065\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x29ec,"\u0063i\u0072c\u006c\u0065\u0064\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x29b7,"\u0063i\u0072c\u006c\u0065\u0064\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074":0x2686,"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077o\u0064\u006f\u0074\u0073":0x2687,"c\u0069\u0072\u0063\u006c\u0065\u0064\u0076\u0065\u0072\u0074":0x29b6,"\u0063i\u0072c\u006c\u0065\u0064\u0077\u0068i\u0074\u0065b\u0075\u006c\u006c\u0065\u0074":0x29be,"c\u0069\u0072\u0063\u006c\u0065\u0065\u0071\u0075\u0061\u006c":0x229c,"\u0063\u0069\u0072\u0063\u006c\u0065\u0068\u0062\u0061\u0072":0x29b5,"\u0063\u0069\u0072c\u006c\u0065\u006c\u006c\u0071\u0075\u0061\u0064":0x25f5,"\u0063\u0069\u0072c\u006c\u0065\u006c\u0072\u0071\u0075\u0061\u0064":0x25f6,"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079":0x2297,"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u006e\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x2b30,"\u0063i\u0072c\u006c\u0065\u006f\u006e\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x21f4,"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074":0x2299,"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073":0x2295,"\u0063\u0069r\u0063\u006c\u0065p\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b":0x3036,"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u006e\u0067":0x229a,"\u0063i\u0072c\u006c\u0065\u0074\u006f\u0070h\u0061\u006cf\u0062\u006c\u0061\u0063\u006b":0x25d3,"\u0063\u0069\u0072c\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064":0x25f4,"\u0063\u0069\u0072c\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064":0x25f7,"\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064b\u006c\u0061\u0063\u006b":0x25d4,"\u0063\u0069\u0072\u0063\u006c\u0065\u0076\u0065\u0072t\u0066\u0069\u006c\u006c":0x25cd,"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b":0x25d0,"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b":0x25d1,"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x02c6,"c\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0031":0xf003,"\u0063i\u0072c\u0075\u006d\u0066\u006c\u0065x\u0062\u0065l\u006f\u0077\u0063\u006d\u0062":0x032d,"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062":0x0302,"\u0063\u0069\u0072\u0066\u006e\u0069\u006e\u0074":0x2a10,"\u0063\u0069\u0072\u006d\u0069\u0064":0x2aef,"\u0063i\u0072\u0073\u0063\u0069\u0072":0x29c2,"\u0063\u006c\u0065a\u0072":0x2327,"\u0063\u006c\u0069\u0063\u006b\u0061\u006c\u0076\u0065\u006f\u006c\u0061\u0072":0x01c2,"c\u006c\u0069\u0063\u006b\u0064\u0065\u006e\u0074\u0061\u006c":0x01c0,"\u0063\u006c\u0069c\u006b\u006c\u0061\u0074\u0065\u0072\u0061\u006c":0x01c1,"\u0063\u006c\u0069\u0063\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078":0x01c3,"\u0063l\u006f\u0063\u006b\u0077\u0069\u0073e":0x27f3,"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0061\u0070":0x2a4d,"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0075\u0070":0x2a4c,"c\u006c\u006f\u0073\u0065dv\u0061r\u0063\u0075\u0070\u0073\u006da\u0073\u0068\u0070\u0072\u006f\u0064":0x2a50,"\u0063l\u006f\u0073\u0075\u0072\u0065":0x2050,"\u0063\u006c\u0075\u0062":0x2663,"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065":0x2667,"\u0063\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a4,"\u0063\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff43,"\u0063m\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a0,"\u0063\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0581,"\u0063\u006f\u006co\u006e":0x003a,"\u0063o\u006c\u006f\u006e\u0065\u0071":0x2254,"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079":0x20a1,"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff1a,"\u0063\u006f\u006c\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xfe55,"\u0063\u006f\u006c\u006fnt\u0072\u0069\u0061\u006e\u0067\u0075\u006c\u0061\u0072\u0068\u0061\u006c\u0066\u006do\u0064":0x02d1,"\u0063o\u006co\u006e\u0074\u0072\u0069\u0061n\u0067\u0075l\u0061\u0072\u006d\u006f\u0064":0x02d0,"\u0063\u006f\u006dm\u0061":0x002c,"\u0063\u006f\u006d\u006d\u0061\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062":0x0313,"\u0063o\u006dm\u0061\u0061\u0062\u006f\u0076e\u0072\u0069g\u0068\u0074\u0063\u006d\u0062":0x0315,"c\u006f\u006d\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0xf6c3,"\u0063\u006f\u006d\u006d\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x055d,"\u0063\u006f\u006d\u006d\u0061\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0xf6e1,"\u0063\u006f\u006d\u006d\u0061\u006d\u0069\u006e\u0075\u0073":0x2a29,"\u0063\u006f\u006d\u006d\u0061\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff0c,"c\u006f\u006d\u006d\u0061re\u0076e\u0072\u0073\u0065\u0064\u0061b\u006f\u0076\u0065\u0063\u006d\u0062":0x0314,"\u0063\u006f\u006d\u006d\u0061\u0073\u006d\u0061\u006c\u006c":0xfe50,"\u0063\u006f\u006dm\u0061\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x0299,"\u0063\u006f\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0xf6e2,"\u0063\u006f\u006d\u006dat\u0075\u0072\u006e\u0065\u0064\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062":0x0312,"\u0063\u006f\u006d\u006d\u0061\u0074\u0075\u0072\u006ee\u0064\u006d\u006f\u0064":0x02bb,"\u0063\u006f\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074":0x2201,"\u0063\u006f\u006e\u0063\u0061\u0076\u0065\u0064\u0069a\u006d\u006f\u006e\u0064":0x27e1,"\u0063\u006f\u006e\u0063av\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u006c\u0065f\u0074":0x27e2,"\u0063\u006f\u006eca\u0076\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u0072\u0069\u0067\u0068\u0074":0x27e3,"\u0063o\u006e\u0067\u0064\u006f\u0074":0x2a6d,"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et":0x2245,"\u0063\u006f\u006e\u0069\u0063\u0074\u0061\u0070\u0065\u0072":0x2332,"\u0063o\u006e\u006a\u0071\u0075\u0061\u006et":0x2a07,"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c":0x222e,"\u0063o\u006e\u0074\u0072\u006f\u006c":0x2303,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0041\u0043\u004b":0x0006,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0042\u0045\u004c":0x0007,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0042S":0x0008,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0043\u0041\u004e":0x0018,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R":0x000d,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031":0x0011,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0032":0x0012,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033":0x0013,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0034":0x0014,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0045\u004c":0x007f,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045":0x0010,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0045M":0x0019,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004e\u0051":0x0005,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004f\u0054":0x0004,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0053\u0043":0x001b,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0042":0x0017,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0058":0x0003,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046F":0x000c,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S":0x001c,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S":0x001d,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0048T":0x0009,"\u0063o\u006e\u0074\u0072\u006f\u006c\u004cF":0x000a,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0041\u004b":0x0015,"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c":0x0000,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S":0x001e,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053I":0x000f,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053O":0x000e,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u004f\u0054":0x0002,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0054\u0058":0x0001,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042":0x001a,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0059\u004e":0x0016,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S":0x001f,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0056T":0x000b,"\u0063o\u0070\u0072\u006f\u0064\u0075\u0063t":0x2a3f,"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079":0x2210,"\u0063o\u0070\u0079\u0072\u0069\u0067\u0068t":0x00a9,"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074\u0073\u0061\u006e\u0073":0xf8e9,"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074s\u0065\u0072\u0069\u0066":0xf6d9,"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074":0x300c,"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068":0xff62,"\u0063o\u0072\u006e\u0065\u0072b\u0072\u0061\u0063\u006b\u0065t\u006ce\u0066t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l":0xfe41,"\u0063o\u0072n\u0065\u0072\u0062\u0072\u0061c\u006b\u0065t\u0072\u0069\u0067\u0068\u0074":0x300d,"c\u006f\u0072\u006e\u0065\u0072\u0062r\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068t\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068":0xff63,"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074i\u0063\u0061\u006c":0xfe42,"\u0063\u006f\u0072\u0070\u006f\u0072\u0061\u0074\u0069\u006f\u006e\u0073q\u0075\u0061\u0072\u0065":0x337f,"\u0063\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x33c7,"\u0063\u006f\u0076\u0065\u0072\u006b\u0067\u0073\u0071\u0075\u0061\u0072\u0065":0x33c6,"\u0063\u0070\u0061\u0072\u0065\u006e":0x249e,"\u0063\u0072\u0075\u007a\u0065\u0069\u0072\u006f":0x20a2,"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068":0x0227,"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068\u0065\u0064":0x0297,"\u0063\u0073\u0075\u0062":0x2acf,"\u0063\u0073\u0075b\u0065":0x2ad1,"\u0063\u0073\u0075\u0070":0x2ad0,"\u0063\u0073\u0075p\u0065":0x2ad2,"\u0063\u0075\u0062\u0065\u0072\u006f\u006f\u0074":0x221b,"\u0063u\u0070\u0062\u0061\u0072\u0063\u0061p":0x2a48,"\u0063\u0075\u0070\u0064\u006f\u0074":0x228d,"\u0063\u0075\u0070l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x228c,"\u0063\u0075\u0070\u006f\u0076\u0065\u0072\u0063\u0061\u0070":0x2a46,"\u0063\u0075\u0070\u0076\u0065\u0065":0x2a45,"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064":0x22cf,"\u0063u\u0072\u006c\u0079\u006c\u0065\u0066t":0x21ab,"\u0063u\u0072\u006c\u0079\u006f\u0072":0x22ce,"\u0063\u0075\u0072\u006c\u0079\u0072\u0069\u0067\u0068\u0074":0x21ac,"\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079":0x00a4,"\u0063u\u0072v\u0065\u0061\u0072\u0072\u006fw\u006c\u0065f\u0074\u0070\u006c\u0075\u0073":0x293d,"c\u0075r\u0076\u0065\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u006din\u0075\u0073":0x293c,"\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0072\u0072\u006f\u0077":0x2941,"\u0063\u0077\u006f\u0070\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077":0x21bb,"\u0063w\u0072i\u0067\u0068\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x2938,"\u0063\u0077\u0075\u006e\u0064\u0065\u0072\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077":0x293e,"\u0063\u0079\u0072\u0042\u0072\u0065\u0076\u0065":0xf6d1,"\u0063y\u0072\u0046\u006c\u0065\u0078":0xf6d2,"\u0063\u0079\u0072\u0062\u0072\u0065\u0076\u0065":0xf6d4,"\u0063y\u0072\u0066\u006c\u0065\u0078":0xf6d5,"\u0064":0x0064,"\u0064\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0564,"\u0064a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09a6,"\u0064\u0061\u0064\u0065\u0076\u0061":0x0926,"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfebe,"\u0064\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfebf,"d\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfebd,"\u0064a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec0,"\u0064\u0061\u0067\u0065\u0073\u0068":0x05bc,"\u0064\u0061\u0067\u0067\u0065\u0072":0x2020,"\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l":0x2021,"\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa6,"\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a26,"\u0064\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3060,"\u0064\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c0,"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068":0xfb33,"\u0064\u0061\u006c\u0065\u0074\u0068":0x2138,"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077":0x05d3,"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeaa,"d\u0061\u006c\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfea9,"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x064f,"\u0064\u0061\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe78,"\u0064\u0061\u006d\u006d\u0061\u006c\u006f\u0077":0xe821,"d\u0061\u006d\u006d\u0061\u006d\u0065\u0064\u0069\u0061\u006c":0xfe79,"\u0064\u0061\u006dm\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe835,"\u0064\u0061m\u006d\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe72,"d\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u006c\u006f\u0077":0xe824,"\u0064a\u006dm\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe836,"\u0064\u0061\u006ed\u0061":0x0964,"\u0064\u0061\u006e\u0067\u0065\u0072":0x2621,"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05a7,"\u0064\u0061\u0073h\u0056":0x2ae3,"\u0064a\u0073\u0068\u0056\u0064\u0061\u0073h":0x27db,"\u0064a\u0073\u0068\u0063\u006f\u006c\u006fn":0x2239,"\u0064\u0061\u0073\u0068le\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e":0x296b,"d\u0061s\u0068\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e":0x296d,"\u0064a\u0073\u0069\u0061\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062":0x0485,"\u0064b\u006b\u0061\u0072\u006f\u0077":0x290f,"\u0064\u0062\u006c\u0047\u0072\u0061\u0076\u0065":0xf6d3,"\u0064\u0062\u006c\u0061ng\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x300a,"d\u0062\u006c\u0061\u006e\u0067\u006ce\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0076\u0065r\u0074i\u0063\u0061\u006c":0xfe3d,"d\u0062l\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061c\u006b\u0065\u0074\u0072ig\u0068\u0074":0x300b,"\u0064\u0062\u006c\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068\u0074\u0076\u0065\u0072\u0074\u0069c\u0061\u006c":0xfe3e,"\u0064\u0062\u006car\u0063\u0068\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x032b,"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e":0x21ca,"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u0064\u006f\u0077\u006e":0x058a,"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074":0x219e,"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064r\u0069\u0067\u0068\u0074":0x21a0,"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068e\u0061\u0064\u0075\u0070":0x0588,"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075\u0070":0x21c8,"\u0064\u0062\u006c\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074":0x27e6,"\u0064b\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x27e7,"\u0064\u0062\u006c\u0064\u0061\u006e\u0064\u0061":0x0965,"\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065":0xf6d6,"d\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062":0x030f,"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c":0x222c,"\u0064\u0062\u006c\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062":0x0333,"\u0064\u0062\u006c\u006f\u0076\u0065\u0072\u006c\u0069n\u0065\u0063\u006d\u0062":0x033f,"d\u0062\u006c\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064":0x02ba,"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072":0x2016,"\u0064\u0062\u006cve\u0072\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062":0x030e,"\u0064b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3109,"\u0064\u0062\u0073\u0071\u0075\u0061\u0072\u0065":0x33c8,"\u0064\u0063\u0061\u0072\u006f\u006e":0x010f,"\u0064c\u0061\u0072\u006f\u006e\u0031":0xf811,"\u0064\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e11,"\u0064c\u0069\u0072\u0063\u006c\u0065":0x24d3,"\u0064\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e13,"\u0064\u0064\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a1,"\u0064d\u0061\u0064\u0065\u0076\u0061":0x0921,"d\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa1,"d\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a21,"\u0064d\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb89,"\u0064\u0064\u0064\u0064\u006f\u0074":0x20dc,"\u0064d\u0064\u0068\u0061\u0064\u0065\u0076a":0x095c,"\u0064\u0064\u0064o\u0074":0x20db,"d\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a2,"\u0064\u0064\u0068\u0061\u0064\u0065\u0076\u0061":0x0922,"\u0064\u0064\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa2,"\u0064\u0064\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a22,"\u0064\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e0b,"\u0064d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e0d,"\u0064\u0064\u006ft\u0073":0x22f1,"\u0064d\u006f\u0074\u0073\u0065\u0071":0x2a77,"\u0064\u0065\u0063im\u0061\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x066b,"\u0064e\u0066\u0069\u006e\u0065\u0073":0x225c,"\u0064\u0065\u0067\u0072\u0065\u0065":0x00b0,"\u0064\u0065\u0067r\u0065\u0065\u006b\u0065\u006c\u0076\u0069\u006e":0x212a,"\u0064\u0065\u0068\u0069\u0068\u0065\u0062\u0072\u0065\u0077":0x05ad,"\u0064\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3067,"\u0064e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03ef,"\u0064\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c7,"\u0064\u0065\u006c\u0065\u0074\u0065":0x05ba,"\u0064\u0065\u006c\u0065\u0074\u0065\u006c\u0065\u0066\u0074":0x232b,"d\u0065\u006c\u0065\u0074\u0065\u0072\u0069\u0067\u0068\u0074":0x2326,"\u0064\u0065\u006ct\u0061":0x03b4,"d\u0065\u006c\u0074\u0061\u0074\u0075\u0072\u006e\u0065\u0064":0x018d,"d\u0065\u006e\u006f\u006d\u0069\u006ea\u0074\u006f\u0072\u006d\u0069\u006eu\u0073\u006f\u006e\u0065\u006e\u0075\u006de\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061l\u0069":0x09f8,"\u0064\u0065\u007a\u0068":0x02a4,"\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a7,"\u0064h\u0061\u0064\u0065\u0076\u0061":0x0927,"d\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa7,"d\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a27,"\u0064\u0068\u006fo\u006b":0x0257,"\u0064i\u0061\u0065\u0072\u0065\u0073\u0069s":0x0088,"\u0064\u0069\u0061\u006c\u0079\u0074\u0069\u006b\u0061\u0074\u006f\u006eo\u0073\u0063\u006d\u0062":0x0344,"\u0064\u0069\u0061\u006d\u0065\u0074\u0065\u0072":0x2300,"\u0064i\u0061\u006d\u006f\u006e\u0064":0x2666,"\u0064i\u0061m\u006f\u006e\u0064\u0062\u006f\u0074\u0062\u006c\u0061\u0063\u006b":0x2b19,"d\u0069\u0061\u006d\u006f\u006e\u0064\u0063\u0064\u006f\u0074":0x27d0,"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x291d,"\u0064\u0069\u0061\u006don\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072":0x291f,"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b":0x2b16,"d\u0069\u0061\u006d\u006f\u006e\u0064\u006d\u0061\u0074\u0068":0x22c4,"\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0072\u0069\u0067\u0068\u0074b\u006c\u0061\u0063\u006b":0x2b17,"\u0064\u0069a\u006d\u006f\u006ed\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065":0x2662,"\u0064i\u0061m\u006f\u006e\u0064\u0074\u006f\u0070\u0062\u006c\u0061\u0063\u006b":0x2b18,"\u0064\u0069\u0063e\u0069":0x2680,"\u0064\u0069\u0063\u0065\u0069\u0069":0x2681,"\u0064i\u0063\u0065\u0069\u0069\u0069":0x2682,"\u0064\u0069\u0063\u0065\u0069\u0076":0x2683,"\u0064\u0069\u0063e\u0076":0x2684,"\u0064\u0069\u0063\u0065\u0076\u0069":0x2685,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x00a8,"\u0064i\u0065\u0072\u0065\u0073\u0069\u00731":0xf005,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0061\u0063\u0075\u0074\u0065":0xf6d7,"\u0064\u0069e\u0072\u0065\u0073i\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0324,"d\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u006d\u0062":0x0308,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0067\u0072\u0061\u0076\u0065":0xf6d8,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0074\u006f\u006e\u006f\u0073":0x0385,"\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065":0x224f,"\u0064\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3062,"\u0064\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c2,"\u0064\u0069\u0073i\u006e":0x22f2,"\u0064i\u0073\u006a\u0071\u0075\u0061\u006et":0x2a08,"\u0064i\u0074\u0074\u006f\u006d\u0061\u0072k":0x3003,"\u0064\u0069\u0076\u0069\u0064\u0065":0x00f7,"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079":0x22c7,"\u0064i\u0076\u0069\u0064\u0065\u0073":0x2223,"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068":0x2215,"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0452,"\u0064k\u0073\u0068\u0061\u0064\u0065":0x2593,"\u0064\u006b\u0073\u0068\u0061\u0064\u0065\u0031":0xf823,"\u0064\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e0f,"\u0064\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3397,"\u0064m\u0061\u0063\u0072\u006f\u006e":0x0111,"\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff44,"\u0064n\u0062\u006c\u006f\u0063\u006b":0x2584,"\u0064\u006e\u0065i\u0067\u0068\u0074\u0062\u006c\u006f\u0063\u006b":0x2581,"\u0064\u006e\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b":0x2585,"\u0064\u006e\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b":0x2582,"\u0064n\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x2587,"\u0064n\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x2583,"\u0064\u006e\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b":0x2586,"d\u006f\u0063\u0068\u0061\u0064\u0061\u0074\u0068\u0061\u0069":0x0e0e,"\u0064o\u0064\u0065\u006b\u0074\u0068\u0061i":0x0e14,"\u0064\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3069,"\u0064\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c9,"\u0064\u006f\u006c\u006c\u0061\u0072":0x0024,"\u0064\u006f\u006c\u006c\u0061\u0072\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0xf6e3,"\u0064o\u006cl\u0061\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff04,"\u0064\u006f\u006c\u006c\u0061\u0072\u006f\u006c\u0064s\u0074\u0079\u006c\u0065":0xf724,"d\u006f\u006c\u006c\u0061\u0072\u0073\u006d\u0061\u006c\u006c":0xfe69,"\u0064\u006f\u006c\u006c\u0061\u0072\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0xf6e4,"\u0064\u006f\u006e\u0067":0x20ab,"\u0064\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3326,"\u0064o\u0074\u0061\u0063\u0063\u0065\u006et":0x02d9,"\u0064\u006f\u0074a\u0063\u0063\u0065\u006e\u0074\u0063\u006d\u0062":0x0307,"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062":0x0323,"\u0064\u006f\u0074\u0063\u0069\u0072\u0063\u006c\u0065\u0031":0xf820,"\u0064\u006f\u0074\u0065\u0071\u0075\u0069\u0076":0x2a67,"d\u006f\u0074\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30fb,"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0069":0x0131,"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u006a":0xf6be,"\u0064o\u0074l\u0065\u0073\u0073\u006a\u0073t\u0072\u006fk\u0065\u0068\u006f\u006f\u006b":0x0284,"\u0064o\u0074\u006d\u0061\u0074\u0068":0x22c5,"\u0064\u006f\u0074\u006d\u0069\u006e\u0075\u0073":0x2238,"\u0064o\u0074\u0070\u006c\u0075\u0073":0x2214,"\u0064\u006f\u0074\u0073\u0069\u006d":0x2a6a,"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073":0x223a,"\u0064\u006f\u0074t\u0065\u0064\u0063\u0069\u0072\u0063\u006c\u0065":0x25cc,"\u0064\u006f\u0074t\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1a,"\u0064\u006f\u0074\u0074\u0069\u006d\u0065\u0073":0x2a30,"\u0064\u006f\u0075b\u006c\u0065\u0062\u0061\u0072\u0076\u0065\u0065":0x2a62,"\u0064\u006f\u0075\u0062\u006c\u0065\u0070\u006c\u0075\u0073":0x29fa,"\u0064\u006f\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072":0x2913,"\u0064o\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064":0x2908,"\u0064\u006f\u0077n\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297f,"\u0064o\u0077n\u0068\u0061\u0072\u0070\u006fo\u006e\u006ce\u0066\u0074\u0062\u0061\u0072":0x2959,"\u0064\u006f\u0077\u006eha\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0061\u0072":0x2955,"d\u006f\u0077\u006e\u0068ar\u0070o\u006f\u006e\u0073\u006c\u0065f\u0074\u0072\u0069\u0067\u0068\u0074":0x2965,"d\u006fw\u006e\u0072\u0069\u0067\u0068\u0074\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077":0x2935,"\u0064o\u0077\u006e\u0073\u006c\u006f\u0070e":0x29f9,"\u0064\u006fw\u006e\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x031e,"d\u006f\u0077\u006e\u0074\u0061\u0063\u006b\u006d\u006f\u0064":0x02d5,"d\u006f\u0077\u006e\u0074ri\u0061n\u0067\u006c\u0065\u006c\u0065f\u0074\u0062\u006c\u0061\u0063\u006b":0x29e8,"\u0064\u006f\u0077\u006etr\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u006c\u0061c\u006b":0x29e9,"\u0064\u006f\u0077n\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0073":0x21f5,"\u0064\u006f\u0077nu\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x296f,"\u0064o\u0077n\u007a\u0069\u0067\u007a\u0061\u0067\u0061\u0072\u0072\u006f\u0077":0x21af,"\u0064\u0070\u0061\u0072\u0065\u006e":0x249f,"\u0064\u0072\u0062\u006b\u0061\u0072\u006f\u0077":0x2910,"\u0064\u0073\u006f\u006c":0x29f6,"\u0064\u0073\u0075\u0062":0x2a64,"\u0064s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6eb,"\u0064\u0074\u0061i\u006c":0x0256,"\u0064t\u006f\u0070\u0062\u0061\u0072":0x018c,"\u0064u\u0061\u006c\u006d\u0061\u0070":0x29df,"\u0064\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3065,"\u0064\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c5,"\u0064\u0079\u006fg\u0068":0x0234,"\u0064\u007a":0x01f3,"\u0064\u007a\u0061\u006c\u0074\u006f\u006e\u0065":0x02a3,"\u0064z\u0063\u0061\u0072\u006f\u006e":0x01c6,"\u0064\u007a\u0063\u0075\u0072\u006c":0x02a5,"d\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04e1,"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x045f,"\u0065":0x0065,"\u0065\u0061\u0063\u0075\u0074\u0065":0x00e9,"\u0065\u0061\u0072t\u0068":0x2641,"\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x098f,"\u0065b\u006f\u0070\u006f\u006d\u006f\u0066o":0x311c,"\u0065\u0062\u0072\u0065\u0076\u0065":0x0115,"e\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061":0x090d,"\u0065c\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a8d,"e\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061":0x0945,"\u0065c\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac5,"\u0065\u0063\u0061\u0072\u006f\u006e":0x011b,"\u0065\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065":0x1e1d,"e\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0565,"\u0065c\u0068y\u0069\u0077\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0587,"\u0065c\u0069\u0072\u0063\u006c\u0065":0x24d4,"e\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ea,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ebf,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e19,"\u0065\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ec7,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ec1,"e\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ec3,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ec5,"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c":0x0454,"\u0065d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0205,"\u0065\u0064\u0065v\u0061":0x090f,"\u0065d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00eb,"\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0117,"\u0065d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1eb9,"\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a0f,"\u0065e\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a47,"\u0065\u0067\u0072\u0061\u0076\u0065":0x00e8,"\u0065\u0067\u0073\u0064\u006f\u0074":0x2a98,"\u0065g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a8f,"\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0567,"\u0065\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x311d,"\u0065h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3048,"\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ebb,"\u0065\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x311f,"\u0065\u0069\u0067h\u0074":0x0038,"\u0065\u0069\u0067h\u0074\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ee,"\u0065i\u0067\u0068\u0074\u0064\u0065\u0076a":0x096e,"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x2471,"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2485,"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x2499,"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aee,"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6e,"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063":0x0668,"\u0065\u0069\u0067\u0068\u0074\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3028,"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064":0x266b,"e\u0069\u0067\u0068\u0074id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e":0x3227,"\u0065\u0069\u0067\u0068\u0074\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2088,"\u0065\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff18,"\u0065\u0069\u0067\u0068\u0074\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf738,"\u0065\u0069\u0067\u0068\u0074\u0070\u0061\u0072\u0065\u006e":0x247b,"e\u0069\u0067\u0068\u0074\u0070\u0065\u0072\u0069\u006f\u0064":0x248f,"\u0065\u0069\u0067h\u0074\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f8,"\u0065\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e":0x2177,"\u0065\u0069\u0067\u0068\u0074\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2078,"\u0065i\u0067\u0068\u0074\u0074\u0068\u0061i":0x0e58,"\u0065\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0207,"\u0065\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0465,"\u0065k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a8,"\u0065k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff74,"\u0065k\u006fn\u006b\u0061\u0072\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a74,"\u0065k\u006f\u0072\u0065\u0061\u006e":0x3154,"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043b,"\u0065l\u0065\u006d\u0065\u006e\u0074":0x2208,"\u0065\u006c\u0065v\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x246a,"e\u006c\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x247e,"\u0065\u006c\u0065v\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2492,"e\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x217a,"\u0065\u006c\u0069\u006e\u0074\u0065\u0072\u0073":0x23e7,"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073":0x2026,"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0x22ee,"\u0065\u006c\u0073\u0064\u006f\u0074":0x2a97,"\u0065m\u0061\u0063\u0072\u006f\u006e":0x0113,"\u0065\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e17,"\u0065\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e15,"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043c,"\u0065\u006d\u0064\u0061\u0073\u0068":0x2014,"\u0065\u006d\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe31,"\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff45,"e\u006dp\u0068\u0061\u0073\u0069\u0073\u006d\u0061\u0072k\u0061\u0072\u006d\u0065ni\u0061\u006e":0x055b,"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074":0x2205,"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072":0x29b3,"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072\u006c":0x29b4,"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0062\u0061\u0072":0x29b1,"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0063\u0069\u0072\u0063":0x29b2,"\u0065m\u0070\u0074\u0079\u0073\u006c\u006ft":0xd801,"\u0065\u006d\u0071\u0075\u0061\u0064":0x2001,"\u0065m\u0073\u0070\u0061\u0063\u0065":0x2003,"\u0065\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3123,"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064\u0069a\u006d\u006f\u006e\u0064":0x20df,"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0073\u0071\u0075\u0061\u0072\u0065":0x20de,"\u0065n\u0063l\u006f\u0073\u0065\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x20e4,"\u0065\u006e\u0064\u0061\u0073\u0068":0x2013,"\u0065\u006e\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe32,"\u0065\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a3,"\u0065\u006e\u0067":0x014b,"e\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3125,"\u0065\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a5,"\u0065\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c8,"\u0065\u006e\u0071\u0075\u0061\u0064":0x2000,"\u0065n\u0073\u0070\u0061\u0063\u0065":0x2002,"\u0065o\u0067\u006f\u006e\u0065\u006b":0x0119,"\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e":0x3153,"\u0065\u006f\u0070e\u006e":0x025b,"e\u006f\u0070\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064":0x029a,"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x025c,"\u0065\u006f\u0070\u0065nr\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u006c\u006f\u0073\u0065\u0064":0x025e,"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065d\u0068\u006f\u006f\u006b":0x025d,"\u0065\u0070\u0061\u0072\u0065\u006e":0x24a0,"\u0065\u0070\u0061\u0072\u0073\u006c":0x29e3,"\u0065p\u0073\u0069\u006c\u006f\u006e":0x03b5,"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031":0x03f5,"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0063\u006c\u006f\u0073\u0065\u0064":0x022a,"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076":0x03f6,"\u0065\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x03ad,"\u0065q\u0063\u006f\u006c\u006f\u006e":0x2255,"\u0065\u0071\u0064e\u0066":0x225d,"\u0065\u0071\u0064o\u0074":0x2a66,"\u0065\u0071\u0065\u0071":0x2a75,"\u0065\u0071\u0065\u0071\u0065\u0071":0x2a76,"\u0065\u0071\u0067t\u0072":0x22dd,"\u0065\u0071\u006c\u0065\u0073\u0073":0x22dc,"\u0065\u0071\u0071\u0067\u0074\u0072":0x2a9a,"\u0065q\u0071\u006c\u0065\u0073\u0073":0x2a99,"\u0065q\u0071\u0070\u006c\u0075\u0073":0x2a71,"\u0065\u0071\u0071\u0073\u0069\u006d":0x2a73,"e\u0071\u0071\u0073\u006c\u0061\u006e\u0074\u0067\u0074\u0072":0x2a9c,"\u0065\u0071\u0071s\u006c\u0061\u006e\u0074\u006c\u0065\u0073\u0073":0x2a9b,"\u0065\u0071\u0075a\u006c":0x003d,"\u0065\u0071\u0075\u0061\u006c\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x2b40,"\u0065\u0071\u0075\u0061\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff1d,"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073":0x22df,"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0067\u0072e\u0061\u0074\u0065\u0072":0x2a96,"e\u0071\u0075\u0061\u006c\u006f\u0072\u006c\u0065\u0073\u0073":0x2a95,"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073":0x22de,"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072":0x2242,"\u0065\u0071\u0075\u0061\u006c\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x22d5,"\u0065q\u0075a\u006c\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2971,"\u0065\u0071\u0075\u0061\u006c\u0073\u006d\u0061\u006c\u006c":0xfe66,"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0062":0x208c,"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x207c,"\u0065q\u0075\u0069\u0076\u0044\u0044":0x2a78,"\u0065q\u0075\u0069\u0076\u0056\u0065\u0072t":0x2a68,"\u0065\u0071\u0075\u0069\u0076\u0056\u0076\u0065\u0072\u0074":0x2a69,"e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0063\u0065":0x2261,"\u0065q\u0075i\u0076\u0061\u0073\u0079\u006d\u0070\u0074\u006f\u0074\u0069\u0063":0x224d,"\u0065\u0071\u0076\u0070\u0061\u0072\u0073\u006c":0x29e5,"\u0065\u0072\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3126,"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0440,"\u0065r\u0065\u0076\u0065\u0072\u0073\u0065d":0x0258,"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x044d,"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0063i\u0072\u0063\u006c\u0065":0x29f3,"\u0065r\u0072b\u0061\u0072\u0062\u006c\u0061c\u006b\u0064i\u0061\u006d\u006f\u006e\u0064":0x29f1,"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0073q\u0075\u0061\u0072\u0065":0x29ef,"\u0065\u0072\u0072b\u0061\u0072\u0063\u0069\u0072\u0063\u006c\u0065":0x29f2,"\u0065\u0072\u0072\u0062\u0061\u0072\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x29f0,"\u0065\u0072\u0072b\u0061\u0072\u0073\u0071\u0075\u0061\u0072\u0065":0x29ee,"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0441,"\u0065\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ab,"\u0065\u0073\u0068":0x0283,"\u0065s\u0068\u0063\u0075\u0072\u006c":0x0286,"\u0065\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061":0x090e,"\u0065\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0946,"\u0065s\u0068r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006c\u006f\u006f\u0070":0x01aa,"\u0065\u0073h\u0073\u0071\u0075a\u0074\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x0285,"\u0065\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3047,"\u0065\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a7,"\u0065\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6a,"\u0065s\u0074\u0069\u006d\u0061\u0074\u0065d":0x212e,"\u0065s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ec,"\u0065\u0074\u0061":0x03b7,"\u0065\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0568,"\u0065\u0074\u0061\u0074\u006f\u006e\u006f\u0073":0x03ae,"\u0065\u0074\u0068":0x00f0,"\u0065\u0074\u0069\u006c\u0064\u0065":0x1ebd,"e\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e1b,"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077":0x0591,"\u0065t\u0075\u0072\u006e\u0065\u0064":0x01dd,"\u0065\u0075\u006b\u006f\u0072\u0065\u0061\u006e":0x3161,"\u0065\u0075\u0072o\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079":0x20a0,"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09c7,"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x0947,"\u0065v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0ac7,"\u0065\u0078\u0063\u006c\u0061\u006d":0x0021,"\u0065\u0078\u0063\u006c\u0061\u006d\u0061\u0072\u006de\u006e\u0069\u0061\u006e":0x055c,"\u0065x\u0063\u006c\u0061\u006d\u0064\u0062l":0x203c,"\u0065\u0078\u0063\u006c\u0061\u006d\u0064\u006f\u0077\u006e":0x00a1,"\u0065x\u0063l\u0061\u006d\u0064\u006f\u0077\u006e\u0073\u006d\u0061\u006c\u006c":0xf7a1,"\u0065x\u0063l\u0061\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff01,"e\u0078\u0063\u006c\u0061\u006d\u0073\u006d\u0061\u006c\u006c":0xf721,"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c":0x2203,"\u0065\u007a\u0068":0x0292,"\u0065\u007a\u0068\u0063\u0061\u0072\u006f\u006e":0x01ef,"\u0065z\u0068\u0063\u0075\u0072\u006c":0x0293,"e\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x01b9,"\u0065z\u0068\u0074\u0061\u0069\u006c":0x01ba,"\u0066":0x0066,"\u0066\u0037\u0030\u0065":0xf70e,"\u0066\u0037\u0030\u0061":0xf70a,"\u0066\u0037\u0030\u0063":0xf70c,"\u0066\u0037\u0030\u0064":0xf70d,"\u0066\u0037\u0030\u0062":0xf70b,"\u0066\u0037\u0030\u0066":0xf70f,"\u0066\u0037\u0031\u0063":0xf71c,"\u0066\u0037\u0031\u0061":0xf71a,"\u0066\u0037\u0031\u0064":0xf71d,"\u0066\u0037\u0030\u0030":0xf700,"\u0066\u0037\u0030\u0031":0xf701,"\u0066\u0037\u0030\u0032":0xf702,"\u0066\u0037\u0030\u0033":0xf703,"\u0066\u0037\u0030\u0034":0xf704,"\u0066\u0037\u0030\u0035":0xf705,"\u0066\u0037\u0030\u0036":0xf706,"\u0066\u0037\u0030\u0037":0xf707,"\u0066\u0037\u0030\u0038":0xf708,"\u0066\u0037\u0030\u0039":0xf709,"\u0066\u0037\u0031\u0030":0xf710,"\u0066\u0037\u0031\u0031":0xf711,"\u0066\u0037\u0031\u0032":0xf712,"\u0066\u0037\u0031\u0033":0xf713,"\u0066\u0037\u0031\u0034":0xf714,"\u0066\u0037\u0031\u0035":0xf715,"\u0066\u0037\u0031\u0036":0xf716,"\u0066\u0037\u0031\u0037":0xf717,"\u0066\u0037\u0031\u0038":0xf718,"\u0066\u0037\u0031\u0039":0xf719,"\u0066\u0061\u0064\u0065\u0076\u0061":0x095e,"\u0066\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5e,"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074":0x2109,"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068":0x06cc,"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfbfd,"\u0066\u0061r\u0073\u0069\u0079e\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfbfc,"\u0066a\u0074h\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c":0xfe77,"\u0066\u0061\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe76,"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077":0xe820,"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063":0x064e,"\u0066\u0061\u0074h\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe832,"\u0066\u0061t\u0068\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe70,"f\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u006c\u006f\u0077":0xe823,"\u0066a\u0074h\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe833,"\u0066b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3108,"\u0066b\u006f\u0077\u0074\u0069\u0065":0x29d3,"\u0066c\u0069\u0072\u0063\u006c\u0065":0x24d5,"\u0066\u0063\u006d\u0070":0x2a3e,"\u0066\u0064\u0069\u0061\u0067\u006f\u0076\u006e\u0065a\u0072\u0072\u006f\u0077":0x292f,"\u0066\u0064\u0069a\u0067\u006f\u0076\u0072\u0064\u0069\u0061\u0067":0x292c,"\u0066\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e1f,"f\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0586,"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfed2,"\u0066\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed3,"f\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfed1,"\u0066e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed4,"\u0066\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc31,"\u0066e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc32,"\u0066e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03e5,"\u0066\u0065\u006d\u0061\u006c\u0065":0x2640,"\u0066\u0066":0xfb00,"\u0066\u0066\u0069":0xfb03,"\u0066\u0066\u006c":0xfb04,"\u0066\u0069":0xfb01,"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x246e,"\u0066\u0069\u0066t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2482,"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2496,"\u0066\u0069\u0067\u0075\u0072\u0065\u0064\u0061\u0073\u0068":0x2012,"f\u0069\u0067\u0075\u0072\u0065\u0073\u0070\u0061\u0063\u0065":0x2007,"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077":0xfb3a,"\u0066i\u006ea\u006c\u006b\u0061\u0066\u0077i\u0074\u0068q\u0061\u006d\u0061\u0074\u0073":0xe803,"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0077\u0069\u0074\u0068s\u0068\u0065\u0076\u0061":0xe802,"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077":0x05dd,"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0x05e3,"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069":0x05e5,"\u0066\u0069\u006e\u0074":0x2a0f,"\u0066\u0069r\u0073\u0074\u0074o\u006e\u0065\u0063\u0068\u0069\u006e\u0065\u0073\u0065":0x02c9,"\u0066i\u0073\u0068\u0065\u0079\u0065":0x25c9,"\u0066\u0069\u0076\u0065":0x0035,"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063":0x0665,"f\u0069\u0076\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09eb,"\u0066\u0069\u0076\u0065\u0064\u0065\u0076\u0061":0x096b,"f\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073":0x215d,"\u0066\u0069\u0076e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aeb,"\u0066\u0069\u0076e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6b,"\u0066\u0069\u0076e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3025,"f\u0069v\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e":0x3224,"\u0066\u0069\u0076e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2085,"\u0066\u0069\u0076\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff15,"\u0066\u0069\u0076e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf735,"\u0066i\u0076\u0065\u0070\u0061\u0072\u0065n":0x2478,"\u0066\u0069\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x248c,"f\u0069\u0076\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f5,"\u0066i\u0076\u0065\u0072\u006f\u006d\u0061n":0x2174,"\u0066i\u0076\u0065\u0073\u0069\u0078\u0074h":0x215a,"\u0066\u0069\u0076e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2075,"\u0066\u0069\u0076\u0065\u0074\u0068\u0061\u0069":0x0e55,"\u0066\u006c":0xfb02,"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t":0x230a,"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074":0x230b,"\u0066\u006c\u006f\u0072\u0069\u006e":0x0192,"\u0066\u006c\u0074n\u0073":0x23e5,"\u0066\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff46,"\u0066\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x3399,"\u0066o\u0066\u0061\u006e\u0074\u0068\u0061i":0x0e1f,"\u0066\u006f\u0066\u0061\u0074\u0068\u0061\u0069":0x0e1d,"\u0066o\u006cl\u006f\u0077\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076":0x2aba,"\u0066\u006fl\u006c\u006f\u0077n\u006f\u0074\u0073\u006c\u006e\u0074\u0065\u0071\u006c":0x2ab6,"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074":0x22e9,"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c":0x2ab0,"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079":0x227d,"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c":0x227f,"f\u006f\u006e\u0067\u006d\u0061\u006e\u0074\u0068\u0061\u0069":0x0e4f,"\u0066\u006f\u0072\u0063\u0065\u0073":0x22a9,"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r":0x22aa,"\u0066\u006f\u0072\u006b":0x22d4,"\u0066\u006f\u0072k\u0073":0x2adc,"\u0066\u006f\u0072\u006b\u0073\u006e\u006f\u0074":0x2add,"\u0066\u006f\u0072k\u0076":0x2ad9,"\u0066\u006f\u0075\u0072":0x0034,"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063":0x0664,"f\u006f\u0075\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ea,"\u0066\u006f\u0075\u0072\u0064\u0065\u0076\u0061":0x096a,"\u0066\u006f\u0075\u0072\u0066\u0069\u0066\u0074\u0068\u0073":0x2158,"\u0066\u006f\u0075r\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aea,"\u0066\u006f\u0075r\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6a,"\u0066\u006f\u0075r\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3024,"f\u006fu\u0072\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e":0x3223,"\u0066\u006f\u0075r\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2084,"\u0066\u006f\u0075\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff14,"f\u006fu\u0072\u006e\u0075\u006d\u0065\u0072\u0061\u0074o\u0072\u0062\u0065\u006ega\u006c\u0069":0x09f7,"\u0066\u006f\u0075r\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf734,"\u0066o\u0075\u0072\u0070\u0061\u0072\u0065n":0x2477,"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0065\u006ds\u0070\u0061\u0063\u0065":0x2005,"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0069\u006f\u0064":0x248b,"f\u006f\u0075\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f4,"\u0066o\u0075\u0072\u0072\u006f\u006d\u0061n":0x2173,"\u0066\u006f\u0075r\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2074,"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x246d,"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2481,"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x2495,"\u0066\u006f\u0075\u0072\u0074\u0068\u0061\u0069":0x0e54,"\u0066\u006f\u0075\u0072\u0074\u0068\u0072\u006f\u006f\u0074":0x221c,"\u0066\u006f\u0075\u0072\u0074\u0068\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065":0x02cb,"\u0066o\u0075\u0072\u0076\u0064\u006f\u0074s":0x2999,"\u0066\u0070\u0061\u0072\u0065\u006e":0x24a1,"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e":0x2044,"\u0066\u0072\u0061n\u0063":0x20a3,"\u0066r\u006f\u006e\u0074\u0065\u0064":0x024b,"\u0066\u0075\u006c\u006c\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e":0x27d7,"\u0067":0x0067,"\u0067a\u0062\u0065\u006e\u0067\u0061\u006ci":0x0997,"\u0067\u0061\u0063\u0075\u0074\u0065":0x01f5,"\u0067\u0061\u0064\u0065\u0076\u0061":0x0917,"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c":0x06af,"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb93,"\u0067\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb94,"g\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb92,"\u0067a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb95,"\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a97,"\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a17,"\u0067\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304c,"\u0067\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ac,"\u0067\u0061\u006dm\u0061":0x03b3,"\u0067a\u006dm\u0061\u006c\u0061\u0074\u0069\u006e\u0073\u006d\u0061\u006c\u006c":0x0263,"\u0067\u0061\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02e0,"\u0067\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03eb,"\u0067b\u006f\u0070\u006f\u006d\u006f\u0066o":0x310d,"\u0067\u0062\u0072\u0065\u0076\u0065":0x011f,"\u0067\u0063\u0061\u0072\u006f\u006e":0x01e7,"\u0067\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0123,"\u0067c\u0069\u0072\u0063\u006c\u0065":0x24d6,"g\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x011d,"\u0067\u0064\u006f\u0074":0x0121,"\u0067\u0065\u0062a\u0072":0x03cf,"\u0067\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3052,"\u0067\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b2,"\u0067\u0065\u006f\u006d\u0065\u0071\u0075\u0069\u0076a\u006c\u0065\u006e\u0074":0x224e,"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c":0x2251,"\u0067e\u0071\u0071\u0073\u006c\u0061\u006et":0x2afa,"\u0067e\u0072e\u0073\u0068\u0061\u0063\u0063e\u006e\u0074h\u0065\u0062\u0072\u0065\u0077":0x059c,"\u0067\u0065\u0072e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0x05f3,"\u0067e\u0072e\u0073\u0068\u006d\u0075\u0071d\u0061\u006dh\u0065\u0062\u0072\u0065\u0077":0x059d,"\u0067\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073":0x00df,"g\u0065\u0072\u0073\u0068ay\u0069m\u0061\u0063\u0063\u0065\u006et\u0068\u0065\u0062\u0072\u0065\u0077":0x059e,"\u0067e\u0072s\u0068\u0061\u0079\u0069\u006d\u0068\u0065\u0062\u0072\u0065\u0077":0x05f4,"\u0067\u0065\u0073c\u0063":0x2aa9,"\u0067\u0065\u0073\u0064\u006f\u0074":0x2a80,"\u0067e\u0073\u0064\u006f\u0074\u006f":0x2a82,"\u0067\u0065\u0073\u0064\u006f\u0074\u006f\u006c":0x2a84,"\u0067\u0065\u0073\u006c\u0065\u0073":0x2a94,"\u0067\u0065\u0074\u0061\u006d\u0061\u0072\u006b":0x3013,"\u0067\u0067\u0067":0x22d9,"\u0067g\u0067\u006e\u0065\u0073\u0074":0x2af8,"\u0067\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0998,"\u0067\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0572,"\u0067h\u0061\u0064\u0065\u0076\u0061":0x0918,"g\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a98,"g\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a18,"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x063a,"\u0067\u0068a\u0069\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfece,"\u0067h\u0061i\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfecf,"\u0067\u0068\u0061\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfecd,"\u0067\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfed0,"g\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x0495,"\u0067\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0493,"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0491,"\u0067\u0068\u0068\u0061\u0064\u0065\u0076\u0061":0x095a,"\u0067\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5a,"\u0067\u0068\u006fo\u006b":0x0260,"\u0067h\u007a\u0073\u0071\u0075\u0061\u0072e":0x3393,"\u0067\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304e,"\u0067\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ae,"g\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0563,"\u0067\u0069\u006de\u006c":0x2137,"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb32,"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0453,"\u0067\u006c\u0045":0x2a92,"\u0067\u006c\u0061":0x2aa5,"g\u006c\u0065\u0069\u0063\u0068\u0073\u0074\u0061\u0072\u006b":0x29e6,"\u0067\u006c\u006a":0x2aa4,"\u0067l\u006f\u0074\u0074\u0061\u006c":0x0249,"g\u006c\u006f\u0074\u0074al\u0069n\u0076\u0065\u0072\u0074\u0065d\u0073\u0074\u0072\u006f\u006b\u0065":0x01be,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0072\u0065\u0076":0x024a,"g\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070":0x0294,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0062\u0061\u0072":0x0231,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0062a\u0072\u0072\u0065\u0076":0x0232,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0069\u006e\u0076":0x0226,"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064":0x0296,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u006d\u006f\u0064":0x02c0,"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x0295,"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006do\u0064":0x02c1,"g\u006c\u006f\u0074\u0074\u0061\u006cs\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073e\u0064\u0073\u0075p\u0065r\u0069\u006f\u0072":0x02e4,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0072e\u0076\u0069\u006e\u0076":0x0225,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0073t\u0072\u006f\u006b\u0065":0x02a1,"\u0067l\u006f\u0074\u0074\u0061l\u0073\u0074\u006f\u0070\u0073t\u0072o\u006be\u0072\u0065\u0076\u0065\u0072\u0073\u0065d":0x02a2,"\u0067m\u0061\u0063\u0072\u006f\u006e":0x1e21,"\u0067\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff47,"\u0067\u006e\u0073i\u006d":0x22e7,"\u0067\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3054,"\u0067\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b4,"\u0067\u0070\u0061\u0072\u0065\u006e":0x24a2,"\u0067p\u0061\u0073\u0071\u0075\u0061\u0072e":0x33ac,"\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074":0x2207,"\u0067\u0072\u0061v\u0065":0x0060,"\u0067\u0072\u0061\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0316,"\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062":0x0300,"\u0067r\u0061\u0076\u0065\u0064\u0065\u0076a":0x0953,"\u0067\u0072\u0061\u0076\u0065\u006c\u0065\u0066\u0074\u006e\u006f\u0073\u0070":0x02b3,"g\u0072\u0061\u0076\u0065\u006c\u006f\u0077\u006d\u006f\u0064":0x02ce,"\u0067\u0072\u0061\u0076\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff40,"\u0067\u0072\u0061v\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062":0x0340,"\u0067r\u0065\u0061\u0074\u0065\u0072":0x003e,"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071l\u006c\u0065\u0073\u0073":0x2a8c,"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u006f\u0074":0x22d7,"\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c":0x2265,"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073":0x22db,"\u0067\u0072e\u0061\u0074\u0065r\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff1e,"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0064\u0062l\u0065\u0071\u0075\u0061\u006c":0x2a8a,"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x2a88,"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072a\u0070\u0070r\u006f\u0078\u0065\u0071\u006c":0x2a86,"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074":0x2273,"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006c\u0065\u0073\u0073":0x2277,"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c":0x2269,"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c":0x2267,"\u0067\u0072\u0065a\u0074\u0065\u0072\u0073\u006d\u0061\u006c\u006c":0xfe65,"\u0067s\u0063\u0072\u0069\u0070\u0074":0x0261,"\u0067\u0073\u0069m\u0065":0x2a8e,"\u0067\u0073\u0069m\u006c":0x2a90,"\u0067s\u0074\u0072\u006f\u006b\u0065":0x01e5,"\u0067\u0074\u0063\u0063":0x2aa7,"\u0067\u0074\u0063i\u0072":0x2a7a,"\u0067\u0074\u006c\u0070\u0061\u0072":0x29a0,"\u0067t\u0071\u0075\u0065\u0073\u0074":0x2a7c,"\u0067\u0074\u0072\u0061\u0072\u0072":0x2978,"\u0067\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3050,"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074\u006c\u0065\u0066\u0074":0x00ab,"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074r\u0069\u0067\u0068\u0074":0x00bb,"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006c\u006c\u0065\u0066\u0074":0x2039,"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006cr\u0069\u0067\u0068\u0074":0x203a,"\u0067\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b0,"\u0067\u0075\u0072a\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3318,"\u0067\u0079\u0073\u0071\u0075\u0061\u0072\u0065":0x33c9,"\u0068":0x0068,"\u0068\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a9,"\u0068\u0061\u0061\u006c\u0074\u006f\u006e\u0065\u0061r\u0061\u0062\u0069\u0063":0x06c1,"\u0068a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b9,"\u0068\u0061\u0063e\u006b\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x029f,"\u0068\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b3,"\u0068\u0061\u0064\u0065\u0076\u0061":0x0939,"\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab9,"\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a39,"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfea2,"\u0068\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea3,"\u0068\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306f,"h\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfea1,"\u0068a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea4,"\u0068a\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcaa,"\u0068a\u0069\u0072\u0073\u0070\u0061\u0063e":0x200a,"h\u0061\u0069\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x332a,"\u0068\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cf,"\u0068\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8a,"\u0068\u0061\u006c\u0061\u006e\u0074\u0067\u0075\u0072m\u0075\u006b\u0068\u0069":0x0a4d,"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x0621,"\u0068\u0061\u006d\u007a\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe80,"\u0068\u0061\u006eg\u0075\u006c\u0066\u0069\u006c\u006c\u0065\u0072":0x3164,"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x044a,"\u0068a\u0072p\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074":0x21c3,"\u0068\u0061r\u0070\u006f\u006fn\u0064\u006f\u0077\u006e\u0072\u0069\u0067\u0068\u0074":0x21c2,"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070":0x21bc,"\u0068\u0061r\u0070\u006f\u006fn\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x21cc,"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070":0x21c0,"\u0068\u0061r\u0070\u006f\u006fn\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074":0x21cb,"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u006c\u0065\u0066\u0074":0x21bf,"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070r\u0069\u0067\u0068\u0074":0x21be,"\u0068\u0061\u0072\u0072\u006f\u0077\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23af,"\u0068\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33ca,"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036":0x05b2,"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038":0x05b3,"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077":0x05b1,"\u0068a\u0074\u0061\u0070\u0070\u0072\u006fx":0x2a6f,"\u0068\u0062\u0061\u0072":0x0127,"\u0068b\u006f\u0070\u006f\u006d\u006f\u0066o":0x310f,"h\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2b,"\u0068\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e29,"\u0068c\u0069\u0072\u0063\u006c\u0065":0x24d7,"h\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0125,"\u0068\u0063\u0079\u0072\u0069\u006c":0x03f7,"\u0068d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e27,"\u0068\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e23,"\u0068d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e25,"\u0068\u0065\u0061r\u0074":0x2665,"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065":0x2661,"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb34,"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c":0x0647,"h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063":0xfba7,"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeea,"\u0068e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfba5,"h\u0065\u0068\u0068\u0061\u006d\u007aa\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064a\u0072a\u0062\u0069\u0063":0xfba4,"\u0068\u0065\u0068\u0069ni\u0074\u0069\u0061\u006c\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063":0xfba8,"\u0068\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeeb,"\u0068\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3078,"h\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfee9,"h\u0065\u0068\u006d\u0065di\u0061l\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063":0xfba9,"\u0068e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeec,"\u0068e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcd8,"\u0068e\u0069s\u0065\u0069\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x337b,"\u0068\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d8,"\u0068\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8d,"\u0068e\u006bu\u0074\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3336,"\u0068\u0065\u006e\u0067\u0068\u006f\u006f\u006b":0x0267,"\u0068\u0065\u0072m\u0069\u0074\u006d\u0061\u0074\u0072\u0069\u0078":0x22b9,"\u0068\u0065\u0072u\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3339,"\u0068e\u0078\u0061\u0067\u006f\u006e":0x2394,"\u0068\u0065\u0078a\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b":0x2b23,"\u0068\u0068\u006fo\u006b":0x0266,"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072":0x023a,"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02b1,"\u0068i\u0065u\u0068\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x327b,"\u0068\u0069\u0065\u0075\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x321b,"\u0068\u0069\u0065\u0075\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x326d,"h\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314e,"\u0068\u0069e\u0075\u0068\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x320d,"\u0068i\u0067\u0068\u0068\u0061\u006d\u007aa":0x0674,"\u0068\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3072,"\u0068\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d2,"\u0068\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8b,"\u0068i\u0072\u0069\u0071\u0031\u0034":0x05b4,"\u0068k\u006e\u0065\u0061\u0072\u0072\u006fw":0x2924,"\u0068k\u006e\u0077\u0061\u0072\u0072\u006fw":0x2923,"\u0068\u006b\u0073\u0065\u0061\u0072\u006f\u0077":0x2925,"\u0068\u006b\u0073\u0077\u0061\u0072\u006f\u0077":0x2926,"\u0068\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e96,"\u0068\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff48,"\u0068\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0570,"\u0068o\u0068\u0069\u0070\u0074\u0068\u0061i":0x0e2b,"\u0068\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307b,"\u0068\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30db,"\u0068\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8e,"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077":0x05b9,"\u0068\u006f\u006eo\u006b\u0068\u0075\u006b\u0074\u0068\u0061\u0069":0x0e2e,"\u0068o\u006f\u006b\u0063\u006d\u0062":0x0309,"\u0068\u006f\u006fkp\u0061\u006c\u0061\u0074\u0061\u006c\u0069\u007a\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0321,"h\u006f\u006f\u006b\u0072et\u0072o\u0066\u006c\u0065\u0078\u0062e\u006c\u006f\u0077\u0063\u006d\u0062":0x0322,"\u0068\u006f\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065":0x3342,"\u0068\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e9,"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072":0x2015,"\u0068\u006f\u0072\u0069\u007a\u0074\u0061\u0062":0x05a2,"\u0068o\u0072\u006e\u0063\u006d\u0062":0x031b,"\u0068\u006f\u0074\u0073\u0070\u0072\u0069\u006e\u0067\u0073":0x2668,"\u0068o\u0075\u0072\u0067\u006c\u0061\u0073s":0x29d6,"\u0068\u006f\u0075s\u0065":0x2302,"\u0068\u0070\u0061\u0072\u0065\u006e":0x24a3,"\u0068\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065":0x25ad,"\u0068\u0073\u0075\u0070\u0065\u0072":0x0239,"\u0068s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b0,"\u0068t\u0075\u0072\u006e\u0065\u0064":0x0265,"\u0068\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3075,"\u0068\u0075\u0069i\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3333,"\u0068\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d5,"\u0068\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8c,"\u0068\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0x02dd,"\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0031":0xf009,"\u0068u\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0063\u006d\u0062":0x030b,"\u0068\u0076":0x0195,"\u0068\u0079\u0070\u0068\u0065\u006e":0x002d,"\u0068\u0079\u0070h\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074":0x2043,"\u0068y\u0070\u0068\u0065\u006e\u0064\u006ft":0x2027,"\u0068\u0079\u0070\u0068\u0065\u006e\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0xf6e5,"\u0068y\u0070h\u0065\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff0d,"h\u0079\u0070\u0068\u0065\u006e\u0073\u006d\u0061\u006c\u006c":0xfe63,"\u0068\u0079\u0070\u0068\u0065\u006e\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0xf6e6,"\u0068y\u0070\u0068\u0065\u006e\u0074\u0077o":0x2010,"\u0068z\u0069\u0067\u007a\u0061\u0067":0x3030,"\u0069":0x0069,"\u0069\u0061\u0063\u0075\u0074\u0065":0x00ed,"\u0069\u0062\u0061\u0072":0x01f8,"\u0069\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0987,"\u0069b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3127,"\u0069\u0062\u0072\u0065\u0076\u0065":0x012d,"\u0069\u0063\u0061\u0072\u006f\u006e":0x01d0,"\u0069c\u0069\u0072\u0063\u006c\u0065":0x24d8,"i\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ee,"\u0069d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0209,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0065\u0061r\u0074\u0068\u0063\u0069rc\u006c\u0065":0x328f,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0066\u0069\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x328b,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0061\u006cl\u0069\u0061\u006e\u0063\u0065\u0070\u0061\u0072\u0065\u006e":0x323f,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u0061\u006c\u006c\u0070ar\u0065\u006e":0x323a,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u0065\u006e\u0074\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x32a5,"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006c\u006f\u0073\u0065":0x3006,"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006f\u006d\u006d\u0061":0x3001,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u006f\u006d\u006d\u0061le\u0066\u0074":0xff64,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069c\u0063\u006f\u006e\u0067\u0072\u0061\u0074u\u006c\u0061\u0074\u0069\u006f\u006e\u0070\u0061\u0072\u0065\u006e":0x3237,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u006fr\u0072\u0065\u0063\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x32a3,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0065\u0061\u0072t\u0068\u0070\u0061\u0072\u0065\u006e":0x322f,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u006e\u0074\u0065\u0072\u0070\u0072\u0069\u0073\u0065\u0070a\u0072\u0065\u006e":0x323d,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u0078\u0063\u0065\u006c\u006c\u0065\u006e\u0074\u0063\u0069r\u0063\u006c\u0065":0x329d,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0066\u0065s\u0074\u0069\u0076\u0061\u006c\u0070\u0061\u0072\u0065\u006e":0x3240,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u006e\u0061\u006e\u0063\u0069\u0061\u006c\u0063\u0069r\u0063\u006c\u0065":0x3296,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0066i\u006ea\u006ec\u0069\u0061\u006c\u0070\u0061\u0072\u0065n":0x3236,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u0072\u0065\u0070ar\u0065\u006e":0x322b,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063h\u0061\u0076\u0065\u0070ar\u0065\u006e":0x3232,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0068\u0069\u0067h\u0063\u0069\u0072\u0063\u006c\u0065":0x32a4,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0069\u0074e\u0072\u0061\u0074\u0069\u006f\u006e\u006d\u0061\u0072\u006b":0x3005,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u006c\u0061\u0062\u006f\u0072\u0063\u0069\u0072\u0063l\u0065":0x3298,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0061\u0062o\u0072\u0070\u0061\u0072\u0065\u006e":0x3238,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0065\u0066t\u0063\u0069\u0072\u0063\u006c\u0065":0x32a7,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063l\u006f\u0077\u0063\u0069rc\u006c\u0065":0x32a6,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u006de\u0064i\u0063i\u006e\u0065\u0063\u0069\u0072\u0063\u006ce":0x32a9,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006d\u0065\u0074a\u006c\u0070\u0061\u0072\u0065\u006e":0x322e,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063m\u006f\u006f\u006e\u0070ar\u0065\u006e":0x322a,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063n\u0061\u006d\u0065\u0070ar\u0065\u006e":0x3234,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070e\u0072\u0069\u006f\u0064":0x3002,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0070\u0072\u0069\u006e\u0074\u0063\u0069\u0072\u0063l\u0065":0x329e,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0072\u0065\u0061c\u0068\u0070\u0061\u0072\u0065\u006e":0x3243,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0072e\u0070r\u0065s\u0065\u006e\u0074\u0070\u0061\u0072\u0065n":0x3239,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0072\u0065s\u006f\u0075\u0072\u0063\u0065\u0070\u0061\u0072\u0065\u006e":0x323e,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0072\u0069\u0067\u0068\u0074\u0063\u0069\u0072\u0063l\u0065":0x32a8,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0065\u0063\u0072\u0065\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x3299,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063s\u0065\u006c\u0066\u0070ar\u0065\u006e":0x3242,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u006f\u0063\u0069\u0065\u0074\u0079\u0070\u0061\u0072\u0065\u006e":0x3233,"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073\u0070\u0061\u0063\u0065":0x3000,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0070\u0065\u0063\u0069\u0061\u006c\u0070\u0061\u0072\u0065\u006e":0x3235,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u006fc\u006b\u0070\u0061\u0072\u0065\u006e":0x3231,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u0075d\u0079\u0070\u0061\u0072\u0065\u006e":0x323b,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0073\u0075\u006e\u0070\u0061\u0072\u0065\u006e":0x3230,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073u\u0070e\u0072v\u0069\u0073\u0065\u0070\u0061\u0072\u0065n":0x323c,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0077\u0061\u0074e\u0072\u0070\u0061\u0072\u0065\u006e":0x322c,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063w\u006f\u006f\u0064\u0070ar\u0065\u006e":0x322d,"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u007a\u0065\u0072\u006f":0x3007,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u006d\u0065t\u0061\u006c\u0063\u0069rc\u006c\u0065":0x328e,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006d\u006f\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x328a,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006e\u0061\u006d\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x3294,"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068s\u0075\u006ec\u0069\u0072\u0063\u006c\u0065":0x3290,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0077\u0061t\u0065\u0072\u0063\u0069rc\u006c\u0065":0x328c,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0077\u006f\u006f\u0064\u0063\u0069\u0072\u0063\u006c\u0065":0x328d,"\u0069\u0064\u0065v\u0061":0x0907,"\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00ef,"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x1e2f,"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e5,"\u0069d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ecb,"\u0069e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d7,"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0435,"\u0069\u0065\u0068\u006f\u006f\u006b":0x03f9,"\u0069\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b":0x03fb,"\u0069e\u0075n\u0067\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3275,"\u0069\u0065\u0075\u006e\u0067\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3215,"\u0069\u0065\u0075\u006e\u0067\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3267,"i\u0065\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e":0x3147,"\u0069\u0065u\u006e\u0067\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3207,"\u0069\u0067\u0072\u0061\u0076\u0065":0x00ec,"\u0069g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a87,"\u0069g\u0075\u0072\u006d\u0075\u006b\u0068i":0x0a07,"\u0069h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3044,"\u0069\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ec9,"\u0069i\u0062\u0065\u006e\u0067\u0061\u006ci":0x0988,"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0438,"\u0069\u0069\u0064\u0065\u0076\u0061":0x0908,"\u0069\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a88,"\u0069\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a08,"\u0069\u0069\u0069\u0069\u006e\u0074":0x2a0c,"\u0069\u0069\u0069n\u0074":0x222d,"\u0069i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a40,"\u0069\u0069\u006e\u0066\u0069\u006e":0x29dc,"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020b,"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09c0,"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0940,"\u0069\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac0,"\u0069\u006a":0x0133,"\u0069k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a4,"\u0069k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff72,"\u0069k\u006f\u0072\u0065\u0061\u006e":0x3163,"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077":0x05ac,"\u0069m\u0061\u0063\u0072\u006f\u006e":0x012b,"\u0069m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e3,"\u0069m\u0061\u0067\u0065\u006f\u0066":0x22b7,"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l":0x2253,"\u0069\u006d\u0061t\u0068":0x1d6a4,"\u0069\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069":0x0a3f,"\u0069\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff49,"\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079":0x221e,"i\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056b,"\u0069\u006e\u0074\u0042\u0061\u0072":0x2a0e,"\u0069\u006e\u0074\u0062\u0061\u0072":0x2a0d,"\u0069\u006e\u0074\u0063\u0061\u0070":0x2a19,"\u0069\u006e\u0074c\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x2231,"\u0069\u006e\u0074\u0063\u0075\u0070":0x2a1a,"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065":0x2216,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c":0x222b,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074":0x2321,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0065\u0078":0xf8f5,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070":0x2320,"\u0069\u006e\u0074\u0065\u0072\u0063\u0061\u006c":0x22ba,"\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065":0x2af4,"i\u006e\u0074\u0065\u0072\u0072\u006f\u0062\u0061\u006e\u0067":0x203d,"\u0069n\u0074e\u0072\u0072\u006f\u0062\u0061\u006e\u0067\u0064\u006f\u0077\u006e":0x2e18,"\u0069\u006e\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e":0x2229,"\u0069n\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0062\u006c":0x22d2,"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079":0x22c2,"\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074i\u006f\u006e\u0073\u0071":0x2293,"i\u006e\u0074\u0065\u0078\u0074\u0065\u006e\u0064\u0065\u0072":0x23ae,"\u0069\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x3305,"\u0069\u006e\u0074\u006c\u0061\u0072\u0068\u006b":0x2a17,"\u0069n\u0074\u0070\u0072\u006f\u0064":0x2a3c,"\u0069\u006e\u0074\u0070\u0072\u006f\u0064\u0072":0x2a3d,"\u0069\u006e\u0074\u0078":0x2a18,"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t":0x25d8,"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce":0x25d9,"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073":0x223e,"\u0069\u006e\u0076wh\u0069\u0074\u0065\u006c\u006f\u0077\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065":0x25db,"\u0069\u006e\u0076wh\u0069\u0074\u0065\u0075\u0070\u0070\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065":0x25da,"\u0069o\u0067\u006f\u006e\u0065\u006b":0x012f,"\u0069\u006f\u0074\u0061":0x03b9,"\u0069\u006f\u0074a\u0031":0x01f9,"\u0069\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03ca,"\u0069\u006f\u0074\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073t\u006f\u006e\u006f\u0073":0x0390,"\u0069o\u0074\u0061\u006c\u0061\u0074\u0069n":0x0269,"\u0069o\u0074\u0061\u0074\u006f\u006e\u006fs":0x03af,"\u0069\u0070\u0061\u0072\u0065\u006e":0x24a4,"i\u0072\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a72,"\u0069\u0073\u0069n\u0045":0x22f9,"\u0069s\u0069\u006e\u0064\u006f\u0074":0x22f5,"\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072":0x22f7,"\u0069\u0073\u0069n\u0073":0x22f4,"\u0069\u0073\u0069\u006e\u0076\u0062":0x22f8,"\u0069\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3043,"\u0069\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a3,"\u0069\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff68,"\u0069\u0073\u0073\u0068\u0061\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09fa,"\u0069s\u0074\u0072\u006f\u006b\u0065":0x0268,"\u0069s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ed,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x309d,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30fd,"\u0069\u0074\u0069\u006c\u0064\u0065":0x0129,"i\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2d,"\u0069\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3129,"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09bf,"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x093f,"\u0069v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0abf,"\u0069\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0477,"\u006a":0x006a,"\u006a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0571,"\u006aa\u0062\u0065\u006e\u0067\u0061\u006ci":0x099c,"\u006a\u0061\u0064\u0065\u0076\u0061":0x091c,"\u006a\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9c,"\u006a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1c,"\u006ab\u006f\u0070\u006f\u006d\u006f\u0066o":0x3110,"\u006a\u0063\u0061\u0072\u006f\u006e":0x01f0,"\u006ac\u0069\u0072\u0063\u006c\u0065":0x24d9,"j\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0135,"\u006a\u0063\u0072o\u0073\u0073\u0065\u0064\u0074\u0061\u0069\u006c":0x029d,"\u006a\u0063\u0072\u006f\u0073\u0073\u0074\u0061\u0069\u006c":0x022d,"\u006a\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0073t\u0072\u006f\u006b\u0065":0x025f,"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063":0x062c,"\u006ae\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe9e,"\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe9f,"\u006a\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe9d,"\u006a\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea0,"\u006a\u0065\u0065\u006dwi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfca8,"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb8b,"j\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb8a,"\u006a\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099d,"\u006ah\u0061\u0064\u0065\u0076\u0061":0x091d,"j\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9d,"j\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1d,"\u006a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057b,"\u006a\u0069\u0073":0x3004,"\u006a\u006d\u0061t\u0068":0x1d6a5,"\u006a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4a,"\u006a\u0070\u0061\u0072\u0065\u006e":0x24a5,"\u006a\u0073\u0075\u0070\u0065\u0072":0x023b,"\u006as\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b2,"\u006b":0x006b,"\u006b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04a1,"\u006ba\u0062\u0065\u006e\u0067\u0061\u006ci":0x0995,"\u006b\u0061\u0063\u0075\u0074\u0065":0x1e31,"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043a,"\u006b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049b,"\u006b\u0061\u0064\u0065\u0076\u0061":0x0915,"\u006b\u0061\u0066":0x05db,"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h":0xfb3b,"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeda,"\u006b\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfedb,"k\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfed9,"\u006ba\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfedc,"\u006b\u0061\u0066\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4d,"\u006b\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a95,"\u006b\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a15,"\u006b\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304b,"\u006b\u0061\u0068\u006f\u006f\u006b":0x0400,"\u006b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c4,"\u006b\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ab,"\u006b\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff76,"\u006b\u0061\u0070p\u0061":0x03ba,"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b":0x03f0,"\u006b\u0061\u0070\u0079eo\u0075\u006e\u006d\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e":0x3171,"k\u0061\u0070\u0079\u0065ou\u006ep\u0068\u0069\u0065\u0075\u0070h\u006b\u006f\u0072\u0065\u0061\u006e":0x3184,"\u006b\u0061\u0070\u0079eo\u0075\u006e\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3178,"\u006ba\u0070\u0079\u0065\u006f\u0075\u006e\u0073\u0073\u0061\u006e\u0067p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3179,"\u006b\u0061\u0072\u006f\u0072\u0069\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x330d,"\u006ba\u0072\u0074\u0064\u0065\u0073":0x03d7,"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063":0x0640,"\u006ba\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f5,"\u006b\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x3384,"\u006b\u0061\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe7a,"\u006b\u0061\u0073\u0072\u0061\u006c\u006f\u0077":0xe826,"k\u0061\u0073\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c":0xfe7b,"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063":0x064d,"\u006b\u0061s\u0072\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe74,"k\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u006c\u006f\u0077":0xe827,"\u006b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049f,"\u006b\u0061\u0074\u0061h\u0069\u0072\u0061\u0070\u0072\u006f\u006c\u006f\u006e\u0067m\u0061r\u006b\u0068\u0061\u006c\u0066\u0077\u0069d\u0074\u0068":0xff70,"\u006ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049d,"\u006bb\u006f\u0070\u006f\u006d\u006f\u0066o":0x310e,"\u006b\u0063\u0061\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3389,"\u006b\u0063\u0061\u0072\u006f\u006e":0x01e9,"\u006bc\u0069\u0072\u0063\u006c\u0065":0x24da,"\u006b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0137,"\u006bd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e33,"k\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0584,"\u006b\u0065\u0068e\u0068":0x06a9,"\u006b\u0065\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfb8f,"\u006b\u0065\u0068e\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfb90,"\u006b\u0065\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb8e,"k\u0065\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c":0xfb91,"\u006b\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3051,"\u006b\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b1,"\u006b\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff79,"k\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056f,"\u006b\u0065\u0072\u006e\u0065\u006c\u0063\u006f\u006e\u0074\u0072\u0061c\u0074\u0069\u006f\u006e":0x223b,"\u006be\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f6,"\u006b\u0067\u0072e\u0065\u006e\u006c\u0061\u006e\u0064\u0069\u0063":0x0138,"\u006b\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0996,"\u006bh\u0061\u0064\u0065\u0076\u0061":0x0916,"k\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a96,"k\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a16,"\u006bh\u0061h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea6,"\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfea7,"\u006b\u0068\u0061h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfea5,"\u006b\u0068a\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea8,"\u006b\u0068\u0061\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcac,"\u006b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e7,"\u006b\u0068\u0068\u0061\u0064\u0065\u0076\u0061":0x0959,"\u006b\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a59,"k\u0068i\u0065\u0075\u006b\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x3278,"\u006b\u0068\u0069\u0065uk\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3218,"\u006b\u0068\u0069\u0065uk\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326a,"\u006b\u0068\u0069\u0065\u0075\u006b\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314b,"\u006bh\u0069e\u0075\u006b\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320a,"k\u0068\u006f\u006b\u0068\u0061\u0069\u0074\u0068\u0061\u0069":0x0e02,"k\u0068\u006f\u006b\u0068\u006f\u006e\u0074\u0068\u0061\u0069":0x0e05,"\u006b\u0068\u006fk\u0068\u0075\u0061\u0074\u0074\u0068\u0061\u0069":0x0e03,"\u006b\u0068\u006fk\u0068\u0077\u0061\u0069\u0074\u0068\u0061\u0069":0x0e04,"\u006b\u0068\u006f\u006d\u0075\u0074\u0074\u0068\u0061\u0069":0x0e5b,"\u006b\u0068\u006fo\u006b":0x0199,"\u006b\u0068\u006f\u0072\u0061\u006b\u0068\u0061\u006eg\u0074\u0068\u0061\u0069":0x0e06,"\u006bh\u007a\u0073\u0071\u0075\u0061\u0072e":0x3391,"\u006b\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304d,"\u006b\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ad,"\u006b\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff77,"\u006b\u0069r\u006f\u0067\u0075r\u0061\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3315,"\u006b\u0069\u0072\u006f\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073q\u0075\u0061\u0072\u0065":0x3316,"\u006b\u0069\u0072\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3314,"\u006b\u0069\u0079\u0065ok\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326e,"\u006bi\u0079e\u006f\u006b\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320e,"\u006bi\u0079e\u006f\u006b\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3260,"\u006b\u0069\u0079e\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e":0x3131,"\u006b\u0069\u0079\u0065\u006f\u006b\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3200,"\u006b\u0069y\u0065\u006f\u006bs\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3133,"\u006b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e35,"\u006b\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3398,"\u006b\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a6,"\u006b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4b,"\u006bm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a2,"\u006b\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3053,"\u006b\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33c0,"\u006bo\u006b\u0061\u0069\u0074\u0068\u0061i":0x0e01,"\u006b\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b3,"\u006b\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7a,"k\u006f\u006f\u0070\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x331e,"\u006b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0481,"k\u006fr\u0065\u0061\u006e\u0073\u0074\u0061\u006e\u0064a\u0072\u0064\u0073\u0079mb\u006f\u006c":0x327f,"\u006b\u006f\u0072\u006f\u006e\u0069\u0073\u0063\u006d\u0062":0x0343,"\u006b\u0070\u0061\u0072\u0065\u006e":0x24a6,"\u006bp\u0061\u0073\u0071\u0075\u0061\u0072e":0x33aa,"k\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x046f,"\u006b\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x33cf,"\u006b\u0074\u0075r\u006e":0x022e,"\u006bt\u0075\u0072\u006e\u0065\u0064":0x029e,"\u006b\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304f,"\u006b\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30af,"\u006b\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff78,"\u006b\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b8,"\u006b\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33be,"\u006c":0x006c,"\u006c\u0041\u006e\u0067\u006c\u0065":0x27ea,"\u006c\u0042\u0072\u0061\u0063\u0065":0x2983,"\u006c\u0050\u0061\u0072\u0065\u006e":0x2985,"\u006ca\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b2,"\u006c\u0061\u0063\u0075\u0074\u0065":0x013a,"\u006c\u0061\u0064\u0065\u0076\u0061":0x0932,"\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab2,"\u006c\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a32,"\u006ca\u006bk\u0068\u0061\u006e\u0067\u0079\u0061\u006f\u0074\u0068\u0061\u0069":0x0e45,"\u006ca\u006da\u006c\u0065\u0066\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfefc,"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063":0xfef8,"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfef7,"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006co\u0077f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063":0xfefa,"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0062\u0065\u006c\u006fw\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfef9,"l\u0061\u006d\u0061\u006cef\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfefb,"\u006c\u0061\u006d\u0061l\u0065\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063":0xfef6,"\u006c\u0061\u006da\u006c\u0065\u0066\u006da\u0064\u0064\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfef5,"\u006c\u0061\u006d\u0062\u0064\u0061":0x03bb,"\u006c\u0061\u006db\u0064\u0061\u0073\u0074\u0072\u006f\u006b\u0065":0x019b,"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068":0xfb3c,"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077":0x05dc,"\u006c\u0061\u006ded\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068\u0061\u006e\u0064\u0068\u006f\u006c\u0061\u006d":0xe805,"\u006c\u0061\u006d\u0065\u0064\u0077\u0069\u0074\u0068h\u006f\u006c\u0061\u006d":0xe804,"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfede,"\u006c\u0061\u006d\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfcca,"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfedf,"l\u0061\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfedd,"l\u0061m\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfcc9,"l\u0061m\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfccb,"\u006c\u0061\u006dla\u006d\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfdf2,"\u006ca\u006dm\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee0,"\u006c\u0061\u006dme\u0065\u006d\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfd88,"l\u0061m\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfccc,"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc43,"\u006ca\u006dw\u0069\u0074\u0068\u0068\u0061h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc40,"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xfccd,"\u006c\u0061\u006d\u0077it\u0068\u006a\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc3f,"\u006c\u0061\u006d\u0077it\u0068\u006b\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc41,"\u006c\u0061\u006d\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc42,"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u006d\u0065\u0065\u006dw\u0069\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069t\u0069\u0061\u006c":0xe811,"\u006ca\u006dw\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc44,"\u006ca\u006e\u0067\u006c\u0065\u0064\u006ft":0x2991,"\u006c\u0061\u0070\u006c\u0061\u0063":0x29e0,"l\u0061\u0072\u0067\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x25ef,"\u006c\u0061\u0074":0x2aab,"\u006c\u0061\u0074\u0065":0x2aad,"\u006c\u0062\u0061\u0067":0x27c5,"\u006c\u0062\u0061\u0072":0x019a,"\u006c\u0062\u0062a\u0072":0x2114,"\u006c\u0062\u0065l\u0074":0x026c,"\u006c\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b":0x2997,"\u006cb\u006f\u0070\u006f\u006d\u006f\u0066o":0x310c,"\u006c\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064":0x23a9,"\u006cb\u0072\u0061\u0063\u0065\u006d\u0069d":0x23a8,"\u006c\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064":0x23a7,"\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23a2,"\u006c\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064":0x23a3,"\u006c\u0062\u0072a\u0063\u006b\u006c\u006c\u0074\u0069\u0063\u006b":0x298f,"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072":0x298b,"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064":0x23a1,"\u006c\u0062\u0072a\u0063\u006b\u0075\u006c\u0074\u0069\u0063\u006b":0x298d,"\u006cb\u0072\u0062\u0072\u0061\u006b":0x2772,"\u006c\u0063\u0061\u0072\u006f\u006e":0x013e,"\u006cc\u0061\u0072\u006f\u006e\u0031":0xf813,"\u006cc\u0069\u0072\u0063\u006c\u0065":0x24db,"\u006c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e3d,"\u006c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x013c,"l\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065":0x29fc,"\u006c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0140,"\u006cd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e37,"\u006cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e39,"\u006c\u0065\u0066\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0062\u006fv\u0065\u0063\u006d\u0062":0x031a,"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078":0x2b4a,"\u006c\u0065\u0066\u0074ar\u0072\u006f\u0077\u0062\u0061\u0063\u006b\u0061\u0070\u0070\u0072\u006f\u0078":0x2b42,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0073\u0069m\u0069\u006c\u0061\u0072":0x2b4b,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0073\u0073":0x2977,"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u006f\u006e\u006f\u0070\u006c\u0075\u0073":0x2b32,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0070\u006c\u0075\u0073":0x2946,"\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006f\u0072t\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2943,"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u0073\u0069\u006d\u0069\u006c\u0061\u0072":0x2973,"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0073\u0075\u0062\u0073\u0065\u0074":0x297a,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069a\u006e\u0067\u006c\u0065":0x21fd,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0078":0x2b3e,"l\u0065\u0066\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x290c,"\u006ce\u0066t\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077":0x2b3f,"\u006c\u0065\u0066t\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x290e,"l\u0065\u0066\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c":0x291b,"\u006c\u0065\u0066t\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077":0x2b38,"\u006c\u0065\u0066\u0074do\u0077\u006e\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077":0x2936,"\u006c\u0065\u0066t\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297c,"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0061c\u0063\u0065\u006e\u0074":0x20d0,"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0064o\u0077\u006e\u0062\u0061\u0072":0x295e,"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073u\u0070\u0064\u006f\u0077\u006e":0x2962,"\u006c\u0065f\u0074\u0068\u0061r\u0070\u006f\u006f\u006e\u0075\u0070\u0062\u0061\u0072":0x295a,"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075p\u0064\u0061\u0073\u0068":0x296a,"\u006c\u0065\u0066\u0074\u006c\u0065\u0066\u0074\u0061r\u0072\u006f\u0077\u0073":0x21c7,"\u006c\u0065\u0066\u0074\u006d\u006f\u006f\u006e":0x263e,"\u006c\u0065\u0066\u0074\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e":0x27d5,"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065":0x2948,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069\u0061\u006e\u0067l\u0065":0x21ff,"\u006ce\u0066\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e\u0064\u006f\u0077\u006e":0x2950,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006eu\u0070":0x294b,"l\u0065\u0066\u0074\u0072ig\u0068t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e":0x2967,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070":0x2966,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u0064\u006fw\u006e":0x294a,"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006eup\u0075\u0070":0x294e,"\u006c\u0065\u0066\u0074\u0073\u0071\u0075\u0069\u0067a\u0072\u0072\u006f\u0077":0x21dc,"\u006c\u0065f\u0074\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0318,"\u006c\u0065\u0066\u0074\u0074\u0061\u0069\u006c":0x2919,"\u006ce\u0066t\u0074\u0068\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073":0x2b31,"\u006c\u0065\u0066\u0074\u0077\u0061\u0076\u0065\u0061\u0072\u0072\u006f\u0077":0x219c,"\u006ce\u0071\u0071\u0073\u006c\u0061\u006et":0x2af9,"\u006c\u0065\u0073c\u0063":0x2aa8,"\u006c\u0065\u0073\u0064\u006f\u0074":0x2a7f,"\u006ce\u0073\u0064\u006f\u0074\u006f":0x2a81,"\u006c\u0065\u0073\u0064\u006f\u0074\u006f\u0072":0x2a83,"\u006c\u0065\u0073\u0067\u0065\u0073":0x2a93,"\u006c\u0065\u0073\u0073":0x003c,"\u006c\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u006c\u0067\u0072e\u0061\u0074\u0065\u0072":0x2a8b,"\u006ce\u0073\u0073\u0064\u006f\u0074":0x22d6,"\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l":0x2264,"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072":0x22da,"\u006c\u0065\u0073\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff1c,"\u006ce\u0073s\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c":0x2a89,"\u006c\u0065\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x2a87,"\u006ce\u0073s\u006f\u0072\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u006c":0x2a85,"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074":0x2a7d,"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074":0x2272,"\u006c\u0065\u0073\u0073\u006f\u0072\u0067\u0072\u0065\u0061\u0074\u0065\u0072":0x2276,"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c":0x2268,"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c":0x2266,"\u006ce\u0073\u0073\u0073\u006d\u0061\u006cl":0xfe64,"\u006c\u0065\u007a\u0068":0x026e,"\u006cf\u0062\u006c\u006f\u0063\u006b":0x258c,"\u006c\u0066\u0062\u006f\u0077\u0074\u0069\u0065":0x29d1,"\u006c\u0066\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b":0x258f,"\u006c\u0066\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b":0x258b,"\u006c\u0066\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b":0x258e,"\u006cf\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x2589,"\u006cf\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x258d,"\u006c\u0066\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b":0x258a,"\u006cf\u0074\u0069\u006d\u0065\u0073":0x29d4,"\u006c\u0067\u0045":0x2a91,"l\u0067\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065":0x2b24,"l\u0067\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1b,"l\u0067\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1c,"\u006c\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078":0x026d,"\u006c\u0069\u006e\u0065\u0066\u0065\u0065\u0064":0x21b4,"\u006c\u0069\u006e\u0065\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072":0x2028,"\u006c\u0069\u006ee\u0076\u0065\u0072\u0074\u006e\u006f\u0073\u0070":0x0280,"\u006ci\u006ee\u0076\u0065\u0072\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x029c,"\u006c\u0069\u0072\u0061":0x20a4,"\u006c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056c,"\u006c\u006a":0x01c9,"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0459,"\u006c\u006c":0xf6c0,"\u006cl\u0061\u0064\u0065\u0076\u0061":0x0933,"l\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab3,"\u006cl\u0061\u006e\u0067\u006c\u0065":0x2989,"\u006c\u006c\u0061r\u0063":0x25df,"\u006c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e3b,"\u006c\u006c\u006c":0x22d8,"\u006c\u006c\u006c\u0061\u0064\u0065\u0076\u0061":0x0934,"\u006cl\u006c\u006e\u0065\u0073\u0074":0x2af7,"\u006c\u006c\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073":0x2987,"\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25fa,"\u006c\u006cv\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e1,"\u006c\u006c\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x0961,"\u006cl\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci":0x09e3,"\u006c\u006c\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061":0x0963,"\u006c\u006d\u0069d\u0064\u006c\u0065\u0074\u0069\u006c\u0064\u0065":0x026b,"\u006c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4c,"\u006c\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065":0x23b0,"\u006c\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33d0,"\u006c\u006e\u0073i\u006d":0x22e6,"l\u006f\u0063\u0068\u0075\u006c\u0061\u0074\u0068\u0061\u0069":0x0e2c,"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064":0x2227,"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074":0x00ac,"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr":0x2228,"\u006co\u0067\u006f\u006e\u0065\u006b":0xf830,"\u006c\u006f\u006c\u0069\u006e\u0067\u0074\u0068\u0061\u0069":0x0e25,"\u006co\u006e\u0067\u0064\u0061\u0073\u0068v":0x27de,"\u006c\u006f\u006eg\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":0x27cc,"\u006c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x27f5,"\u006co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x27f7,"\u006co\u006eg\u006c\u0065\u0066\u0074\u0073q\u0075\u0069g\u0061\u0072\u0072\u006f\u0077":0x2b33,"\u006c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x27fb,"\u006c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f":0x27fc,"\u006c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077":0x27f6,"\u006c\u006f\u006e\u0067ri\u0067\u0068\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077":0x27ff,"\u006c\u006f\u006eg\u0073":0x017f,"\u006c\u006f\u006e\u0067\u0073\u0074":0xfb05,"\u006co\u0077\u0065\u0072\u0065\u0064":0x024e,"\u006c\u006f\u0077\u0069\u006e\u0074":0x2a1c,"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u0065\u006e\u0074\u0065r\u006c\u0069\u006e\u0065":0xfe4e,"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062":0x0332,"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0064\u0061\u0073\u0068\u0065\u0064":0xfe4d,"\u006co\u007a\u0065\u006e\u0067\u0065":0x25ca,"\u006c\u006f\u007ae\u006e\u0067\u0065\u006d\u0069\u006e\u0075\u0073":0x27e0,"\u006c\u0070\u0061\u0072\u0065\u006e":0x24a7,"\u006c\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x239c,"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064":0x239d,"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073":0x2993,"\u006c\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064":0x239b,"\u006c\u0072\u0061r\u0063":0x25de,"\u006c\u0072\u0065":0x202a,"\u006c\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25ff,"\u006c\u0072\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0065\u0071":0x29e1,"\u006c\u0073\u0069m\u0065":0x2a8d,"\u006c\u0073\u0069m\u0067":0x2a8f,"\u006c\u0073\u006c\u0061\u0073\u0068":0x0142,"\u006cs\u0071\u0068\u006f\u006f\u006b":0x2acd,"\u006c\u0073\u0075\u0070\u0065\u0072":0x026a,"\u006cs\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ee,"\u006c\u0074\u0063\u0063":0x2aa6,"\u006c\u0074\u0063i\u0072":0x2a79,"\u006c\u0074\u006c\u0061\u0072\u0072":0x2976,"\u006ct\u0071\u0075\u0065\u0073\u0074":0x2a7b,"\u006c\u0074\u0072\u0069\u0076\u0062":0x29cf,"\u006c\u0074\u0073\u0068\u0061\u0064\u0065\u0031":0xf821,"\u006c\u0075\u0074\u0068\u0061\u0069":0x0e26,"\u006cv\u0062\u006f\u0078\u006c\u0069\u006ee":0x23b8,"\u006cv\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x098c,"\u006c\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x090c,"\u006cv\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e2,"l\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061":0x0962,"\u006c\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29d8,"\u006c\u0078\u0073\u0071\u0075\u0061\u0072\u0065":0x33d3,"\u006d":0x006d,"\u006da\u0062\u0065\u006e\u0067\u0061\u006ci":0x09ae,"\u006d\u0061\u0063\u0072\u006f\u006e":0x00af,"\u006d\u0061\u0063\u0072\u006f\u006e\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x0331,"\u006da\u0063\u0072\u006f\u006e\u0063\u006db":0x0304,"\u006d\u0061\u0063r\u006f\u006e\u006c\u006f\u0077\u006d\u006f\u0064":0x02cd,"\u006da\u0063r\u006f\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe3,"\u006d\u0061\u0063\u0075\u0074\u0065":0x1e3f,"\u006d\u0061\u0064\u0065\u0076\u0061":0x092e,"\u006d\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aae,"\u006d\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2e,"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077":0x05a4,"\u006d\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307e,"\u006d\u0061\u0069\u0063ha\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069":0xf895,"\u006d\u0061\u0069ch\u0061\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069":0xf894,"\u006da\u0069c\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0074\u0068\u0061\u0069":0x0e4b,"\u006da\u0069\u0063\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf893,"\u006d\u0061i\u0065\u006b\u006co\u0077\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf88c,"\u006d\u0061\u0069\u0065\u006b\u006c\u006f\u0077\u0072\u0069\u0067\u0068t\u0074\u0068\u0061\u0069":0xf88b,"\u006da\u0069\u0065\u006b\u0074\u0068\u0061i":0x0e48,"\u006da\u0069e\u006b\u0075\u0070\u0070\u0065r\u006c\u0065f\u0074\u0074\u0068\u0061\u0069":0xf88a,"\u006da\u0069h\u0061\u006e\u0061\u006b\u0061t\u006c\u0065f\u0074\u0074\u0068\u0061\u0069":0xf884,"\u006d\u0061\u0069\u0068\u0061\u006e\u0061\u006b\u0061t\u0074\u0068\u0061\u0069":0x0e31,"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf889,"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u0074\u0068\u0061\u0069":0x0e47,"\u006d\u0061\u0069\u0074\u0068\u006f\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf88f,"\u006da\u0069t\u0068\u006f\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069":0xf88e,"\u006d\u0061\u0069\u0074\u0068\u006f\u0074\u0068\u0061\u0069":0x0e49,"\u006d\u0061\u0069\u0074ho\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf88d,"\u006d\u0061\u0069\u0074\u0072\u0069\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf892,"\u006da\u0069t\u0072\u0069\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069":0xf891,"\u006d\u0061\u0069\u0074\u0072\u0069\u0074\u0068\u0061\u0069":0x0e4a,"\u006d\u0061\u0069\u0074ri\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf890,"\u006d\u0061\u0069y\u0061\u006d\u006f\u006b\u0074\u0068\u0061\u0069":0x0e46,"\u006d\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30de,"\u006d\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8f,"\u006d\u0061\u006e\u0073\u0079\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065":0x3347,"\u006d\u0061\u0070\u0073\u0064\u006f\u0077\u006e":0x21a7,"\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x21a4,"\u006d\u0061\u0070\u0073\u0074\u006f":0x21a6,"\u006d\u0061\u0070\u0073\u0075\u0070":0x21a5,"\u006d\u0061\u0072\u0073":0x2642,"\u006da\u0073o\u0072\u0061\u0063\u0069\u0072c\u006c\u0065h\u0065\u0062\u0072\u0065\u0077":0x05af,"\u006d\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x3383,"\u006d\u0062\u0066\u0041":0x1d400,"\u006d\u0062\u0066\u0041\u006c\u0070\u0068\u0061":0x1d6a8,"\u006d\u0062\u0066\u0042":0x1d401,"\u006db\u0066\u0042\u0065\u0074\u0061":0x1d6a9,"\u006d\u0062\u0066\u0043":0x1d402,"\u006d\u0062\u0066\u0043\u0068\u0069":0x1d6be,"\u006d\u0062\u0066\u0044":0x1d403,"\u006d\u0062\u0066\u0044\u0065\u006c\u0074\u0061":0x1d6ab,"\u006d\u0062\u0066\u0044\u0069\u0067\u0061\u006d\u006d\u0061":0x1d7ca,"\u006d\u0062\u0066\u0045":0x1d404,"\u006d\u0062\u0066\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6ac,"\u006d\u0062\u0066\u0045\u0074\u0061":0x1d6ae,"\u006d\u0062\u0066\u0046":0x1d405,"\u006d\u0062\u0066\u0047":0x1d406,"\u006d\u0062\u0066\u0047\u0061\u006d\u006d\u0061":0x1d6aa,"\u006d\u0062\u0066\u0048":0x1d407,"\u006d\u0062\u0066\u0049":0x1d408,"\u006db\u0066\u0049\u006f\u0074\u0061":0x1d6b0,"\u006d\u0062\u0066\u004a":0x1d409,"\u006d\u0062\u0066\u004b":0x1d40a,"\u006d\u0062\u0066\u004b\u0061\u0070\u0070\u0061":0x1d6b1,"\u006d\u0062\u0066\u004c":0x1d40b,"\u006db\u0066\u004c\u0061\u006d\u0062\u0064a":0x1d6b2,"\u006d\u0062\u0066\u004d":0x1d40c,"\u006d\u0062\u0066M\u0075":0x1d6b3,"\u006d\u0062\u0066\u004e":0x1d40d,"\u006d\u0062\u0066N\u0075":0x1d6b4,"\u006d\u0062\u0066\u004f":0x1d40e,"\u006d\u0062\u0066\u004f\u006d\u0065\u0067\u0061":0x1d6c0,"\u006d\u0062\u0066\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d6b6,"\u006d\u0062\u0066\u0050":0x1d40f,"\u006d\u0062\u0066\u0050\u0068\u0069":0x1d6bd,"\u006d\u0062\u0066P\u0069":0x1d6b7,"\u006d\u0062\u0066\u0050\u0073\u0069":0x1d6bf,"\u006d\u0062\u0066\u0051":0x1d410,"\u006d\u0062\u0066\u0052":0x1d411,"\u006d\u0062\u0066\u0052\u0068\u006f":0x1d6b8,"\u006d\u0062\u0066\u0053":0x1d412,"\u006d\u0062\u0066\u0053\u0069\u0067\u006d\u0061":0x1d6ba,"\u006d\u0062\u0066\u0054":0x1d413,"\u006d\u0062\u0066\u0054\u0061\u0075":0x1d6bb,"\u006d\u0062\u0066\u0054\u0068\u0065\u0074\u0061":0x1d6af,"\u006d\u0062\u0066\u0055":0x1d414,"\u006d\u0062\u0066\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6bc,"\u006d\u0062\u0066\u0056":0x1d415,"\u006d\u0062\u0066\u0057":0x1d416,"\u006d\u0062\u0066\u0058":0x1d417,"\u006d\u0062\u0066X\u0069":0x1d6b5,"\u006d\u0062\u0066\u0059":0x1d418,"\u006d\u0062\u0066\u005a":0x1d419,"\u006db\u0066\u005a\u0065\u0074\u0061":0x1d6ad,"\u006d\u0062\u0066\u0061":0x1d41a,"\u006d\u0062\u0066\u0061\u006c\u0070\u0068\u0061":0x1d6c2,"\u006d\u0062\u0066\u0062":0x1d41b,"\u006db\u0066\u0062\u0065\u0074\u0061":0x1d6c3,"\u006d\u0062\u0066\u0063":0x1d41c,"\u006d\u0062\u0066\u0063\u0068\u0069":0x1d6d8,"\u006d\u0062\u0066\u0064":0x1d41d,"\u006d\u0062\u0066\u0064\u0065\u006c\u0074\u0061":0x1d6c5,"\u006d\u0062\u0066\u0065":0x1d41e,"\u006d\u0062\u0066\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6c6,"\u006d\u0062\u0066\u0065\u0074\u0061":0x1d6c8,"\u006d\u0062\u0066\u0066":0x1d41f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0041":0x1d56c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0042":0x1d56d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0043":0x1d56e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0044":0x1d56f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0045":0x1d570,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0046":0x1d571,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0047":0x1d572,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0048":0x1d573,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0049":0x1d574,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004a":0x1d575,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004b":0x1d576,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004c":0x1d577,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004d":0x1d578,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004e":0x1d579,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004f":0x1d57a,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0050":0x1d57b,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0051":0x1d57c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0052":0x1d57d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0053":0x1d57e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0054":0x1d57f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0055":0x1d580,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0056":0x1d581,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0057":0x1d582,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0058":0x1d583,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0059":0x1d584,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u005a":0x1d585,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0061":0x1d586,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0062":0x1d587,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0063":0x1d588,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0064":0x1d589,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0065":0x1d58a,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0066":0x1d58b,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0067":0x1d58c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0068":0x1d58d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0069":0x1d58e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006a":0x1d58f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006b":0x1d590,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006c":0x1d591,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006d":0x1d592,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006e":0x1d593,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006f":0x1d594,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0070":0x1d595,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0071":0x1d596,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0072":0x1d597,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0073":0x1d598,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0074":0x1d599,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0075":0x1d59a,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0076":0x1d59b,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0077":0x1d59c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0078":0x1d59d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0079":0x1d59e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u007a":0x1d59f,"\u006d\u0062\u0066\u0067":0x1d420,"\u006d\u0062\u0066\u0067\u0061\u006d\u006d\u0061":0x1d6c4,"\u006d\u0062\u0066\u0068":0x1d421,"\u006d\u0062\u0066\u0069":0x1d422,"\u006db\u0066\u0069\u006f\u0074\u0061":0x1d6ca,"\u006d\u0062\u0066\u0069\u0074\u0041":0x1d468,"\u006d\u0062\u0066\u0069\u0074\u0041\u006c\u0070\u0068\u0061":0x1d71c,"\u006d\u0062\u0066\u0069\u0074\u0042":0x1d469,"\u006db\u0066\u0069\u0074\u0042\u0065\u0074a":0x1d71d,"\u006d\u0062\u0066\u0069\u0074\u0043":0x1d46a,"\u006d\u0062\u0066\u0069\u0074\u0043\u0068\u0069":0x1d732,"\u006d\u0062\u0066\u0069\u0074\u0044":0x1d46b,"\u006d\u0062\u0066\u0069\u0074\u0044\u0065\u006c\u0074\u0061":0x1d71f,"\u006d\u0062\u0066\u0069\u0074\u0045":0x1d46c,"\u006d\u0062\u0066i\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d720,"\u006d\u0062\u0066\u0069\u0074\u0045\u0074\u0061":0x1d722,"\u006d\u0062\u0066\u0069\u0074\u0046":0x1d46d,"\u006d\u0062\u0066\u0069\u0074\u0047":0x1d46e,"\u006d\u0062\u0066\u0069\u0074\u0047\u0061\u006d\u006d\u0061":0x1d71e,"\u006d\u0062\u0066\u0069\u0074\u0048":0x1d46f,"\u006d\u0062\u0066\u0069\u0074\u0049":0x1d470,"\u006db\u0066\u0069\u0074\u0049\u006f\u0074a":0x1d724,"\u006d\u0062\u0066\u0069\u0074\u004a":0x1d471,"\u006d\u0062\u0066\u0069\u0074\u004b":0x1d472,"\u006d\u0062\u0066\u0069\u0074\u004b\u0061\u0070\u0070\u0061":0x1d725,"\u006d\u0062\u0066\u0069\u0074\u004c":0x1d473,"m\u0062\u0066\u0069\u0074\u004c\u0061\u006d\u0062\u0064\u0061":0x1d726,"\u006d\u0062\u0066\u0069\u0074\u004d":0x1d474,"\u006db\u0066\u0069\u0074\u004d\u0075":0x1d727,"\u006d\u0062\u0066\u0069\u0074\u004e":0x1d475,"\u006db\u0066\u0069\u0074\u004e\u0075":0x1d728,"\u006d\u0062\u0066\u0069\u0074\u004f":0x1d476,"\u006d\u0062\u0066\u0069\u0074\u004f\u006d\u0065\u0067\u0061":0x1d734,"\u006d\u0062\u0066i\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d72a,"\u006d\u0062\u0066\u0069\u0074\u0050":0x1d477,"\u006d\u0062\u0066\u0069\u0074\u0050\u0068\u0069":0x1d731,"\u006db\u0066\u0069\u0074\u0050\u0069":0x1d72b,"\u006d\u0062\u0066\u0069\u0074\u0050\u0073\u0069":0x1d733,"\u006d\u0062\u0066\u0069\u0074\u0051":0x1d478,"\u006d\u0062\u0066\u0069\u0074\u0052":0x1d479,"\u006d\u0062\u0066\u0069\u0074\u0052\u0068\u006f":0x1d72c,"\u006d\u0062\u0066\u0069\u0074\u0053":0x1d47a,"\u006d\u0062\u0066\u0069\u0074\u0053\u0069\u0067\u006d\u0061":0x1d72e,"\u006d\u0062\u0066\u0069\u0074\u0054":0x1d47b,"\u006d\u0062\u0066\u0069\u0074\u0054\u0061\u0075":0x1d72f,"\u006d\u0062\u0066\u0069\u0074\u0054\u0068\u0065\u0074\u0061":0x1d723,"\u006d\u0062\u0066\u0069\u0074\u0055":0x1d47c,"\u006d\u0062\u0066i\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d730,"\u006d\u0062\u0066\u0069\u0074\u0056":0x1d47d,"\u006d\u0062\u0066\u0069\u0074\u0057":0x1d47e,"\u006d\u0062\u0066\u0069\u0074\u0058":0x1d47f,"\u006db\u0066\u0069\u0074\u0058\u0069":0x1d729,"\u006d\u0062\u0066\u0069\u0074\u0059":0x1d480,"\u006d\u0062\u0066\u0069\u0074\u005a":0x1d481,"\u006db\u0066\u0069\u0074\u005a\u0065\u0074a":0x1d721,"\u006d\u0062\u0066\u0069\u0074\u0061":0x1d482,"\u006d\u0062\u0066\u0069\u0074\u0061\u006c\u0070\u0068\u0061":0x1d736,"\u006d\u0062\u0066\u0069\u0074\u0062":0x1d483,"\u006db\u0066\u0069\u0074\u0062\u0065\u0074a":0x1d737,"\u006d\u0062\u0066\u0069\u0074\u0063":0x1d484,"\u006d\u0062\u0066\u0069\u0074\u0063\u0068\u0069":0x1d74c,"\u006d\u0062\u0066\u0069\u0074\u0064":0x1d485,"\u006d\u0062\u0066\u0069\u0074\u0064\u0065\u006c\u0074\u0061":0x1d739,"\u006d\u0062\u0066\u0069\u0074\u0065":0x1d486,"\u006d\u0062\u0066i\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d73a,"\u006d\u0062\u0066\u0069\u0074\u0065\u0074\u0061":0x1d73c,"\u006d\u0062\u0066\u0069\u0074\u0066":0x1d487,"\u006d\u0062\u0066\u0069\u0074\u0067":0x1d488,"\u006d\u0062\u0066\u0069\u0074\u0067\u0061\u006d\u006d\u0061":0x1d738,"\u006d\u0062\u0066\u0069\u0074\u0068":0x1d489,"\u006d\u0062\u0066\u0069\u0074\u0069":0x1d48a,"\u006db\u0066\u0069\u0074\u0069\u006f\u0074a":0x1d73e,"\u006d\u0062\u0066\u0069\u0074\u006a":0x1d48b,"\u006d\u0062\u0066\u0069\u0074\u006b":0x1d48c,"\u006d\u0062\u0066\u0069\u0074\u006b\u0061\u0070\u0070\u0061":0x1d73f,"\u006d\u0062\u0066\u0069\u0074\u006c":0x1d48d,"m\u0062\u0066\u0069\u0074\u006c\u0061\u006d\u0062\u0064\u0061":0x1d740,"\u006d\u0062\u0066\u0069\u0074\u006d":0x1d48e,"\u006db\u0066\u0069\u0074\u006d\u0075":0x1d741,"\u006d\u0062\u0066\u0069\u0074\u006e":0x1d48f,"\u006d\u0062\u0066\u0069\u0074\u006e\u0061\u0062\u006c\u0061":0x1d735,"\u006db\u0066\u0069\u0074\u006e\u0075":0x1d742,"\u006d\u0062\u0066\u0069\u0074\u006f":0x1d490,"\u006d\u0062\u0066\u0069\u0074\u006f\u006d\u0065\u0067\u0061":0x1d74e,"\u006d\u0062\u0066i\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d744,"\u006d\u0062\u0066\u0069\u0074\u0070":0x1d491,"\u006d\u0062\u0066i\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d74f,"\u006d\u0062\u0066\u0069\u0074\u0070\u0068\u0069":0x1d74b,"\u006db\u0066\u0069\u0074\u0070\u0069":0x1d745,"\u006d\u0062\u0066\u0069\u0074\u0070\u0073\u0069":0x1d74d,"\u006d\u0062\u0066\u0069\u0074\u0071":0x1d492,"\u006d\u0062\u0066\u0069\u0074\u0072":0x1d493,"\u006d\u0062\u0066\u0069\u0074\u0072\u0068\u006f":0x1d746,"\u006d\u0062\u0066\u0069\u0074\u0073":0x1d494,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0041":0x1d63c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073A\u006c\u0070\u0068\u0061":0x1d790,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042":0x1d63d,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061":0x1d791,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0043":0x1d63e,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0043\u0068\u0069":0x1d7a6,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0044":0x1d63f,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073D\u0065\u006c\u0074\u0061":0x1d793,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0045":0x1d640,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d794,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0045\u0074\u0061":0x1d796,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0046":0x1d641,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0047":0x1d642,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073G\u0061\u006d\u006d\u0061":0x1d792,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0048":0x1d643,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049":0x1d644,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061":0x1d798,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004a":0x1d645,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004b":0x1d646,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073K\u0061\u0070\u0070\u0061":0x1d799,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004c":0x1d647,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061":0x1d79a,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d":0x1d648,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d\u0075":0x1d79b,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e":0x1d649,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e\u0075":0x1d79c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004f":0x1d64a,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073O\u006d\u0065\u0067\u0061":0x1d7a8,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d79e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050":0x1d64b,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0068\u0069":0x1d7a5,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050\u0069":0x1d79f,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0073\u0069":0x1d7a7,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0051":0x1d64c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0052":0x1d64d,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0052\u0068\u006f":0x1d7a0,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0053":0x1d64e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073S\u0069\u0067\u006d\u0061":0x1d7a2,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0054":0x1d64f,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0054\u0061\u0075":0x1d7a3,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073T\u0068\u0065\u0074\u0061":0x1d797,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0055":0x1d650,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7a4,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0056":0x1d651,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0057":0x1d652,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058":0x1d653,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058\u0069":0x1d79d,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0059":0x1d654,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a":0x1d655,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061":0x1d795,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0061":0x1d656,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073a\u006c\u0070\u0068\u0061":0x1d7aa,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062":0x1d657,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061":0x1d7ab,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0063":0x1d658,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0063\u0068\u0069":0x1d7c0,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0064":0x1d659,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073d\u0065\u006c\u0074\u0061":0x1d7ad,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0065":0x1d65a,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7ae,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0065\u0074\u0061":0x1d7b0,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0066":0x1d65b,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0067":0x1d65c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073g\u0061\u006d\u006d\u0061":0x1d7ac,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0068":0x1d65d,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069":0x1d65e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061":0x1d7b2,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006a":0x1d65f,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006b":0x1d660,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073k\u0061\u0070\u0070\u0061":0x1d7b3,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006c":0x1d661,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061":0x1d7b4,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d":0x1d662,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d\u0075":0x1d7b5,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e":0x1d663,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073n\u0061\u0062\u006c\u0061":0x1d7a9,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e\u0075":0x1d7b6,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006f":0x1d664,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073o\u006d\u0065\u0067\u0061":0x1d7c2,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d7b8,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070":0x1d665,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d7c3,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0068\u0069":0x1d7bf,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070\u0069":0x1d7b9,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0073\u0069":0x1d7c1,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0071":0x1d666,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0072":0x1d667,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0072\u0068\u006f":0x1d7ba,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0073":0x1d668,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073s\u0069\u0067\u006d\u0061":0x1d7bc,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0074":0x1d669,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0074\u0061\u0075":0x1d7bd,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073t\u0068\u0065\u0074\u0061":0x1d7b1,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0075":0x1d66a,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7be,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076":0x1d66b,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072T\u0068\u0065\u0074\u0061":0x1d7a1,"\u006d\u0062\u0066\u0069ts\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7c4,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072k\u0061\u0070\u0070\u0061":0x1d7c6,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069":0x1d7c7,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073v\u0061\u0072\u0070\u0069":0x1d7c9,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f":0x1d7c8,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072s\u0069\u0067\u006d\u0061":0x1d7bb,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072t\u0068\u0065\u0074\u0061":0x1d7c5,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0077":0x1d66c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078":0x1d66d,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078\u0069":0x1d7b7,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0079":0x1d66e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a":0x1d66f,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061":0x1d7af,"\u006d\u0062\u0066\u0069\u0074\u0073\u0069\u0067\u006d\u0061":0x1d748,"\u006d\u0062\u0066\u0069\u0074\u0074":0x1d495,"\u006d\u0062\u0066\u0069\u0074\u0074\u0061\u0075":0x1d749,"\u006d\u0062\u0066\u0069\u0074\u0074\u0068\u0065\u0074\u0061":0x1d73d,"\u006d\u0062\u0066\u0069\u0074\u0075":0x1d496,"\u006d\u0062\u0066i\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d74a,"\u006d\u0062\u0066\u0069\u0074\u0076":0x1d497,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d72d,"\u006db\u0066i\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d750,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d752,"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0068\u0069":0x1d753,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0069":0x1d755,"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0072\u0068\u006f":0x1d754,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d747,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d751,"\u006d\u0062\u0066\u0069\u0074\u0077":0x1d498,"\u006d\u0062\u0066\u0069\u0074\u0078":0x1d499,"\u006db\u0066\u0069\u0074\u0078\u0069":0x1d743,"\u006d\u0062\u0066\u0069\u0074\u0079":0x1d49a,"\u006d\u0062\u0066\u0069\u0074\u007a":0x1d49b,"\u006db\u0066\u0069\u0074\u007a\u0065\u0074a":0x1d73b,"\u006d\u0062\u0066\u006a":0x1d423,"\u006d\u0062\u0066\u006b":0x1d424,"\u006d\u0062\u0066\u006b\u0061\u0070\u0070\u0061":0x1d6cb,"\u006d\u0062\u0066\u006c":0x1d425,"\u006db\u0066\u006c\u0061\u006d\u0062\u0064a":0x1d6cc,"\u006d\u0062\u0066\u006d":0x1d426,"\u006d\u0062\u0066m\u0075":0x1d6cd,"\u006d\u0062\u0066\u006e":0x1d427,"\u006d\u0062\u0066\u006e\u0061\u0062\u006c\u0061":0x1d6c1,"\u006d\u0062\u0066n\u0075":0x1d6ce,"\u006d\u0062\u0066\u006f":0x1d428,"\u006d\u0062\u0066\u006f\u006d\u0065\u0067\u0061":0x1d6da,"\u006d\u0062\u0066\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d6d0,"\u006d\u0062\u0066\u0070":0x1d429,"\u006d\u0062\u0066\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d6db,"\u006d\u0062\u0066\u0070\u0068\u0069":0x1d6df,"\u006d\u0062\u0066p\u0069":0x1d6d1,"\u006d\u0062\u0066\u0070\u0073\u0069":0x1d6d9,"\u006d\u0062\u0066\u0071":0x1d42a,"\u006d\u0062\u0066\u0072":0x1d42b,"\u006d\u0062\u0066\u0072\u0068\u006f":0x1d6d2,"\u006d\u0062\u0066\u0073":0x1d42c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0041":0x1d5d4,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0041\u006c\u0070\u0068\u0061":0x1d756,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0042":0x1d5d5,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061":0x1d757,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043":0x1d5d6,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043\u0068\u0069":0x1d76c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0044":0x1d5d7,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0044\u0065\u006c\u0074\u0061":0x1d759,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045":0x1d5d8,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0070s\u0069\u006c\u006f\u006e":0x1d75a,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0074\u0061":0x1d75c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0046":0x1d5d9,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0047":0x1d5da,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0047\u0061\u006d\u006d\u0061":0x1d758,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0048":0x1d5db,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0049":0x1d5dc,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061":0x1d75e,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004a":0x1d5dd,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004b":0x1d5de,"\u006d\u0062\u0066s\u0061\u006e\u0073\u004b\u0061\u0070\u0070\u0061":0x1d75f,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c":0x1d5df,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061":0x1d760,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004d":0x1d5e0,"\u006db\u0066\u0073\u0061\u006e\u0073\u004du":0x1d761,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004e":0x1d5e1,"\u006db\u0066\u0073\u0061\u006e\u0073\u004eu":0x1d762,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f":0x1d5e2,"\u006d\u0062\u0066s\u0061\u006e\u0073\u004f\u006d\u0065\u0067\u0061":0x1d76e,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f\u006di\u0063\u0072\u006f\u006e":0x1d764,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050":0x1d5e3,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0068\u0069":0x1d76b,"\u006db\u0066\u0073\u0061\u006e\u0073\u0050i":0x1d765,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0073\u0069":0x1d76d,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0051":0x1d5e4,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052":0x1d5e5,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052\u0068\u006f":0x1d766,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0053":0x1d5e6,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0053\u0069\u0067\u006d\u0061":0x1d768,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054":0x1d5e7,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054\u0061\u0075":0x1d769,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0054\u0068\u0065\u0074\u0061":0x1d75d,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055":0x1d5e8,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055\u0070s\u0069\u006c\u006f\u006e":0x1d76a,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0056":0x1d5e9,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0057":0x1d5ea,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0058":0x1d5eb,"\u006db\u0066\u0073\u0061\u006e\u0073\u0058i":0x1d763,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0059":0x1d5ec,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u005a":0x1d5ed,"m\u0062\u0066\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061":0x1d75b,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0061":0x1d5ee,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0061\u006c\u0070\u0068\u0061":0x1d770,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0062":0x1d5ef,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061":0x1d771,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063":0x1d5f0,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063\u0068\u0069":0x1d786,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0064":0x1d5f1,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0064\u0065\u006c\u0074\u0061":0x1d773,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065":0x1d5f2,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074":0x1d7f4,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0070s\u0069\u006c\u006f\u006e":0x1d774,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0074\u0061":0x1d776,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0066":0x1d5f3,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u0069\u0076\u0065":0x1d7f1,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u006f\u0075\u0072":0x1d7f0,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0067":0x1d5f4,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0067\u0061\u006d\u006d\u0061":0x1d772,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0068":0x1d5f5,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0069":0x1d5f6,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061":0x1d778,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006a":0x1d5f7,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006b":0x1d5f8,"\u006d\u0062\u0066s\u0061\u006e\u0073\u006b\u0061\u0070\u0070\u0061":0x1d779,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c":0x1d5f9,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061":0x1d77a,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006d":0x1d5fa,"\u006db\u0066\u0073\u0061\u006e\u0073\u006du":0x1d77b,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006e":0x1d5fb,"\u006d\u0062\u0066s\u0061\u006e\u0073\u006e\u0061\u0062\u006c\u0061":0x1d76f,"m\u0062\u0066\u0073\u0061\u006e\u0073\u006e\u0069\u006e\u0065":0x1d7f5,"\u006db\u0066\u0073\u0061\u006e\u0073\u006eu":0x1d77c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f":0x1d5fc,"\u006d\u0062\u0066s\u0061\u006e\u0073\u006f\u006d\u0065\u0067\u0061":0x1d788,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006di\u0063\u0072\u006f\u006e":0x1d77e,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006e\u0065":0x1d7ed,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070":0x1d5fd,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0061r\u0074\u0069\u0061\u006c":0x1d789,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0068\u0069":0x1d785,"\u006db\u0066\u0073\u0061\u006e\u0073\u0070i":0x1d77f,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0073\u0069":0x1d787,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0071":0x1d5fe,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072":0x1d5ff,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072\u0068\u006f":0x1d780,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073":0x1d600,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e":0x1d7f3,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0069\u0067\u006d\u0061":0x1d782,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073\u0069\u0078":0x1d7f2,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074":0x1d601,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0061\u0075":0x1d783,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0065\u0074\u0061":0x1d777,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065":0x1d7ef,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0077\u006f":0x1d7ee,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075":0x1d602,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075\u0070s\u0069\u006c\u006f\u006e":0x1d784,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076":0x1d603,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d767,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070s\u0069\u006c\u006f\u006e":0x1d78a,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d78c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069":0x1d78d,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0069":0x1d78f,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f":0x1d78e,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d781,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d78b,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0077":0x1d604,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0078":0x1d605,"\u006db\u0066\u0073\u0061\u006e\u0073\u0078i":0x1d77d,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0079":0x1d606,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u007a":0x1d607,"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0072\u006f":0x1d7ec,"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061":0x1d775,"\u006db\u0066\u0073\u0063\u0072\u0041":0x1d4d0,"\u006db\u0066\u0073\u0063\u0072\u0042":0x1d4d1,"\u006db\u0066\u0073\u0063\u0072\u0043":0x1d4d2,"\u006db\u0066\u0073\u0063\u0072\u0044":0x1d4d3,"\u006db\u0066\u0073\u0063\u0072\u0045":0x1d4d4,"\u006db\u0066\u0073\u0063\u0072\u0046":0x1d4d5,"\u006db\u0066\u0073\u0063\u0072\u0047":0x1d4d6,"\u006db\u0066\u0073\u0063\u0072\u0048":0x1d4d7,"\u006db\u0066\u0073\u0063\u0072\u0049":0x1d4d8,"\u006db\u0066\u0073\u0063\u0072\u004a":0x1d4d9,"\u006db\u0066\u0073\u0063\u0072\u004b":0x1d4da,"\u006db\u0066\u0073\u0063\u0072\u004c":0x1d4db,"\u006db\u0066\u0073\u0063\u0072\u004d":0x1d4dc,"\u006db\u0066\u0073\u0063\u0072\u004e":0x1d4dd,"\u006db\u0066\u0073\u0063\u0072\u004f":0x1d4de,"\u006db\u0066\u0073\u0063\u0072\u0050":0x1d4df,"\u006db\u0066\u0073\u0063\u0072\u0051":0x1d4e0,"\u006db\u0066\u0073\u0063\u0072\u0052":0x1d4e1,"\u006db\u0066\u0073\u0063\u0072\u0053":0x1d4e2,"\u006db\u0066\u0073\u0063\u0072\u0054":0x1d4e3,"\u006db\u0066\u0073\u0063\u0072\u0055":0x1d4e4,"\u006db\u0066\u0073\u0063\u0072\u0056":0x1d4e5,"\u006db\u0066\u0073\u0063\u0072\u0057":0x1d4e6,"\u006db\u0066\u0073\u0063\u0072\u0058":0x1d4e7,"\u006db\u0066\u0073\u0063\u0072\u0059":0x1d4e8,"\u006db\u0066\u0073\u0063\u0072\u005a":0x1d4e9,"\u006db\u0066\u0073\u0063\u0072\u0061":0x1d4ea,"\u006db\u0066\u0073\u0063\u0072\u0062":0x1d4eb,"\u006db\u0066\u0073\u0063\u0072\u0063":0x1d4ec,"\u006db\u0066\u0073\u0063\u0072\u0064":0x1d4ed,"\u006db\u0066\u0073\u0063\u0072\u0065":0x1d4ee,"\u006db\u0066\u0073\u0063\u0072\u0066":0x1d4ef,"\u006db\u0066\u0073\u0063\u0072\u0067":0x1d4f0,"\u006db\u0066\u0073\u0063\u0072\u0068":0x1d4f1,"\u006db\u0066\u0073\u0063\u0072\u0069":0x1d4f2,"\u006db\u0066\u0073\u0063\u0072\u006a":0x1d4f3,"\u006db\u0066\u0073\u0063\u0072\u006b":0x1d4f4,"\u006db\u0066\u0073\u0063\u0072\u006c":0x1d4f5,"\u006db\u0066\u0073\u0063\u0072\u006d":0x1d4f6,"\u006db\u0066\u0073\u0063\u0072\u006e":0x1d4f7,"\u006db\u0066\u0073\u0063\u0072\u006f":0x1d4f8,"\u006db\u0066\u0073\u0063\u0072\u0070":0x1d4f9,"\u006db\u0066\u0073\u0063\u0072\u0071":0x1d4fa,"\u006db\u0066\u0073\u0063\u0072\u0072":0x1d4fb,"\u006db\u0066\u0073\u0063\u0072\u0073":0x1d4fc,"\u006db\u0066\u0073\u0063\u0072\u0074":0x1d4fd,"\u006db\u0066\u0073\u0063\u0072\u0075":0x1d4fe,"\u006db\u0066\u0073\u0063\u0072\u0076":0x1d4ff,"\u006db\u0066\u0073\u0063\u0072\u0077":0x1d500,"\u006db\u0066\u0073\u0063\u0072\u0078":0x1d501,"\u006db\u0066\u0073\u0063\u0072\u0079":0x1d502,"\u006db\u0066\u0073\u0063\u0072\u007a":0x1d503,"\u006d\u0062\u0066\u0073\u0069\u0067\u006d\u0061":0x1d6d4,"\u006d\u0062\u0066\u0074":0x1d42d,"\u006d\u0062\u0066\u0074\u0061\u0075":0x1d6d5,"\u006d\u0062\u0066\u0074\u0068\u0065\u0074\u0061":0x1d6c9,"\u006d\u0062\u0066\u0075":0x1d42e,"\u006d\u0062\u0066\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6d6,"\u006d\u0062\u0066\u0076":0x1d42f,"m\u0062\u0066\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d6b9,"\u006d\u0062\u0066\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6dc,"m\u0062\u0066\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d6de,"\u006db\u0066\u0076\u0061\u0072\u0070\u0068i":0x1d6d7,"\u006d\u0062\u0066\u0076\u0061\u0072\u0070\u0069":0x1d6e1,"\u006db\u0066\u0076\u0061\u0072\u0072\u0068o":0x1d6e0,"m\u0062\u0066\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d6d3,"m\u0062\u0066\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d6dd,"\u006d\u0062\u0066\u0077":0x1d430,"\u006d\u0062\u0066\u0078":0x1d431,"\u006d\u0062\u0066x\u0069":0x1d6cf,"\u006d\u0062\u0066\u0079":0x1d432,"\u006d\u0062\u0066\u007a":0x1d433,"\u006db\u0066\u007a\u0065\u0074\u0061":0x1d6c7,"\u006db\u006f\u0070\u006f\u006d\u006f\u0066o":0x3107,"\u006d\u0062\u0073\u0071\u0075\u0061\u0072\u0065":0x33d4,"\u006dc\u0069\u0072\u0063\u006c\u0065":0x24dc,"\u006d\u0063\u0075b\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a5,"m\u0064\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065":0x26ab,"\u006d\u0064\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x2b25,"\u006d\u0064\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b27,"m\u0064\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x25fc,"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u006c\u006fz\u0065\u006e\u0067\u0065":0x29eb,"\u006d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e41,"\u006dd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e43,"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065":0x2981,"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x25fe,"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x26ac,"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x25fd,"m\u0064\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x26aa,"\u006d\u0064\u0077h\u0074\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x2b26,"\u006d\u0064\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b28,"m\u0064\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x25fb,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u006c\u0074\u006f\u0073\u0077":0x29af,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u0072\u0074\u006f\u0073\u0065":0x29ae,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0064\u0074\u006f\u0073\u0077":0x29ab,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0075\u0074\u006f\u006e\u0077":0x29a9,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0064\u0074\u006f\u0073\u0065":0x29aa,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0075\u0074\u006f\u006e\u0065":0x29a8,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u006c\u0074\u006f\u006e\u0077":0x29ad,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u0072\u0074\u006f\u006e\u0065":0x29ac,"\u006d\u0065\u0061\u0073\u0065\u0071":0x225e,"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006c\u0065":0x2221,"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074":0x299b,"\u006de\u0061s\u0075\u0072\u0065\u0064\u0072i\u0067\u0068t\u0061\u006e\u0067\u006c\u0065":0x22be,"\u006d\u0065\u0064b\u006c\u0061\u0063\u006b\u0073\u0074\u0061\u0072":0x2b51,"\u006d\u0065\u0064w\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072":0x2b50,"\u006de\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee2,"\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfee3,"\u006d\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfee1,"\u006d\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee4,"m\u0065\u0065\u006d\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfcd1,"\u006d\u0065\u0065\u006dme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063":0xfc48,"\u006de\u0065m\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfccf,"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcce,"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcd0,"\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x334d,"\u006d\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3081,"\u006d\u0065\u0069\u007a\u0069\u0065\u0072\u0061\u0073q\u0075\u0061\u0072\u0065":0x337e,"\u006d\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e1,"\u006d\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff92,"\u006d\u0065\u006d":0x05de,"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb3e,"m\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0574,"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a5,"\u006de\u0072k\u0068\u0061\u006b\u0065\u0066u\u006c\u0061h\u0065\u0062\u0072\u0065\u0077":0x05a6,"\u006d\u0066\u0072\u0061\u006b\u0041":0x1d504,"\u006d\u0066\u0072\u0061\u006b\u0042":0x1d505,"\u006d\u0066\u0072\u0061\u006b\u0043":0x212d,"\u006d\u0066\u0072\u0061\u006b\u0044":0x1d507,"\u006d\u0066\u0072\u0061\u006b\u0045":0x1d508,"\u006d\u0066\u0072\u0061\u006b\u0046":0x1d509,"\u006d\u0066\u0072\u0061\u006b\u0047":0x1d50a,"\u006d\u0066\u0072\u0061\u006b\u0048":0x210c,"\u006d\u0066\u0072\u0061\u006b\u004a":0x1d50d,"\u006d\u0066\u0072\u0061\u006b\u004b":0x1d50e,"\u006d\u0066\u0072\u0061\u006b\u004c":0x1d50f,"\u006d\u0066\u0072\u0061\u006b\u004d":0x1d510,"\u006d\u0066\u0072\u0061\u006b\u004e":0x1d511,"\u006d\u0066\u0072\u0061\u006b\u004f":0x1d512,"\u006d\u0066\u0072\u0061\u006b\u0050":0x1d513,"\u006d\u0066\u0072\u0061\u006b\u0051":0x1d514,"\u006d\u0066\u0072\u0061\u006b\u0053":0x1d516,"\u006d\u0066\u0072\u0061\u006b\u0054":0x1d517,"\u006d\u0066\u0072\u0061\u006b\u0055":0x1d518,"\u006d\u0066\u0072\u0061\u006b\u0056":0x1d519,"\u006d\u0066\u0072\u0061\u006b\u0057":0x1d51a,"\u006d\u0066\u0072\u0061\u006b\u0058":0x1d51b,"\u006d\u0066\u0072\u0061\u006b\u0059":0x1d51c,"\u006d\u0066\u0072\u0061\u006b\u005a":0x2128,"\u006d\u0066\u0072\u0061\u006b\u0061":0x1d51e,"\u006d\u0066\u0072\u0061\u006b\u0062":0x1d51f,"\u006d\u0066\u0072\u0061\u006b\u0063":0x1d520,"\u006d\u0066\u0072\u0061\u006b\u0064":0x1d521,"\u006d\u0066\u0072\u0061\u006b\u0065":0x1d522,"\u006d\u0066\u0072\u0061\u006b\u0066":0x1d523,"\u006d\u0066\u0072\u0061\u006b\u0067":0x1d524,"\u006d\u0066\u0072\u0061\u006b\u0068":0x1d525,"\u006d\u0066\u0072\u0061\u006b\u0069":0x1d526,"\u006d\u0066\u0072\u0061\u006b\u006a":0x1d527,"\u006d\u0066\u0072\u0061\u006b\u006b":0x1d528,"\u006d\u0066\u0072\u0061\u006b\u006c":0x1d529,"\u006d\u0066\u0072\u0061\u006b\u006d":0x1d52a,"\u006d\u0066\u0072\u0061\u006b\u006e":0x1d52b,"\u006d\u0066\u0072\u0061\u006b\u006f":0x1d52c,"\u006d\u0066\u0072\u0061\u006b\u0070":0x1d52d,"\u006d\u0066\u0072\u0061\u006b\u0071":0x1d52e,"\u006d\u0066\u0072\u0061\u006b\u0072":0x1d52f,"\u006d\u0066\u0072\u0061\u006b\u0073":0x1d530,"\u006d\u0066\u0072\u0061\u006b\u0074":0x1d531,"\u006d\u0066\u0072\u0061\u006b\u0075":0x1d532,"\u006d\u0066\u0072\u0061\u006b\u0076":0x1d533,"\u006d\u0066\u0072\u0061\u006b\u0077":0x1d534,"\u006d\u0066\u0072\u0061\u006b\u0078":0x1d535,"\u006d\u0066\u0072\u0061\u006b\u0079":0x1d536,"\u006d\u0066\u0072\u0061\u006b\u007a":0x1d537,"\u006d\u0068\u006fo\u006b":0x0271,"\u006dh\u007a\u0073\u0071\u0075\u0061\u0072e":0x3392,"\u006d\u0069\u0063r\u006f":0x0095,"\u006di\u0064\u0062\u0061\u0072\u0076\u0065e":0x2a5d,"m\u0069\u0064\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065":0x2a5c,"\u006d\u0069\u0064\u0063\u0069\u0072":0x2af0,"\u006d\u0069\u0064\u0064\u006c\u0065\u0064\u006f\u0074\u006b\u0061t\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068":0xff65,"\u006di\u0065u\u006d\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3272,"\u006d\u0069\u0065\u0075\u006d\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3212,"\u006d\u0069\u0065\u0075\u006d\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3264,"m\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e":0x3141,"\u006di\u0065u\u006d\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x3170,"\u006d\u0069e\u0075\u006d\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3204,"\u006d\u0069e\u0075\u006d\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x316e,"\u006di\u0065u\u006d\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x316f,"\u006d\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307f,"\u006d\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30df,"\u006d\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff90,"\u006d\u0069\u006c\u006c":0x20a5,"\u006d\u0069\u006eu\u0073":0x2212,"\u006d\u0069\u006e\u0075\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0320,"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065":0x2296,"\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074":0x2a2a,"\u006d\u0069\u006e\u0075\u0073\u0066\u0064\u006f\u0074\u0073":0x2a2b,"\u006d\u0069\u006e\u0075\u0073\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x208b,"\u006d\u0069\u006e\u0075\u0073\u006d\u006f\u0064":0x02d7,"\u006di\u006e\u0075\u0073\u0070\u006c\u0075s":0x2213,"\u006d\u0069\u006e\u0075\u0073\u0072\u0064\u006f\u0074\u0073":0x2a2c,"\u006d\u0069\u006e\u0075\u0073\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x207b,"\u006d\u0069\u006e\u0075\u0074\u0065":0x2032,"\u006di\u0072i\u0062\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x334a,"\u006d\u0069\u0072\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x3349,"\u006d\u0069\u0074\u0041":0x1d434,"\u006d\u0069\u0074\u0041\u006c\u0070\u0068\u0061":0x1d6e2,"\u006d\u0069\u0074\u0042":0x1d435,"\u006di\u0074\u0042\u0062\u0062\u0044":0x2145,"\u006di\u0074\u0042\u0062\u0062\u0064":0x2146,"\u006di\u0074\u0042\u0062\u0062\u0065":0x2147,"\u006di\u0074\u0042\u0062\u0062\u0069":0x2148,"\u006di\u0074\u0042\u0062\u0062\u006a":0x2149,"\u006di\u0074\u0042\u0065\u0074\u0061":0x1d6e3,"\u006d\u0069\u0074\u0043":0x1d436,"\u006d\u0069\u0074\u0043\u0068\u0069":0x1d6f8,"\u006d\u0069\u0074\u0044":0x1d437,"\u006d\u0069\u0074\u0044\u0065\u006c\u0074\u0061":0x1d6e5,"\u006d\u0069\u0074\u0045":0x1d438,"\u006d\u0069\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6e6,"\u006d\u0069\u0074\u0045\u0074\u0061":0x1d6e8,"\u006d\u0069\u0074\u0046":0x1d439,"\u006d\u0069\u0074\u0047":0x1d43a,"\u006d\u0069\u0074\u0047\u0061\u006d\u006d\u0061":0x1d6e4,"\u006d\u0069\u0074\u0048":0x1d43b,"\u006d\u0069\u0074\u0049":0x1d43c,"\u006di\u0074\u0049\u006f\u0074\u0061":0x1d6ea,"\u006d\u0069\u0074\u004a":0x1d43d,"\u006d\u0069\u0074\u004b":0x1d43e,"\u006d\u0069\u0074\u004b\u0061\u0070\u0070\u0061":0x1d6eb,"\u006d\u0069\u0074\u004c":0x1d43f,"\u006di\u0074\u004c\u0061\u006d\u0062\u0064a":0x1d6ec,"\u006d\u0069\u0074\u004d":0x1d440,"\u006d\u0069\u0074M\u0075":0x1d6ed,"\u006d\u0069\u0074\u004e":0x1d441,"\u006d\u0069\u0074N\u0075":0x1d6ee,"\u006d\u0069\u0074\u004f":0x1d442,"\u006d\u0069\u0074\u004f\u006d\u0065\u0067\u0061":0x1d6fa,"\u006d\u0069\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d6f0,"\u006d\u0069\u0074\u0050":0x1d443,"\u006d\u0069\u0074\u0050\u0068\u0069":0x1d6f7,"\u006d\u0069\u0074P\u0069":0x1d6f1,"\u006d\u0069\u0074\u0050\u0073\u0069":0x1d6f9,"\u006d\u0069\u0074\u0051":0x1d444,"\u006d\u0069\u0074\u0052":0x1d445,"\u006d\u0069\u0074\u0052\u0068\u006f":0x1d6f2,"\u006d\u0069\u0074\u0053":0x1d446,"\u006d\u0069\u0074\u0053\u0069\u0067\u006d\u0061":0x1d6f4,"\u006d\u0069\u0074\u0054":0x1d447,"\u006d\u0069\u0074\u0054\u0061\u0075":0x1d6f5,"\u006d\u0069\u0074\u0054\u0068\u0065\u0074\u0061":0x1d6e9,"\u006d\u0069\u0074\u0055":0x1d448,"\u006d\u0069\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6f6,"\u006d\u0069\u0074\u0056":0x1d449,"\u006d\u0069\u0074\u0057":0x1d44a,"\u006d\u0069\u0074\u0058":0x1d44b,"\u006d\u0069\u0074X\u0069":0x1d6ef,"\u006d\u0069\u0074\u0059":0x1d44c,"\u006d\u0069\u0074\u005a":0x1d44d,"\u006di\u0074\u005a\u0065\u0074\u0061":0x1d6e7,"\u006d\u0069\u0074\u0061":0x1d44e,"\u006d\u0069\u0074\u0061\u006c\u0070\u0068\u0061":0x1d6fc,"\u006d\u0069\u0074\u0062":0x1d44f,"\u006di\u0074\u0062\u0065\u0074\u0061":0x1d6fd,"\u006d\u0069\u0074\u0063":0x1d450,"\u006d\u0069\u0074\u0063\u0068\u0069":0x1d712,"\u006d\u0069\u0074\u0064":0x1d451,"\u006d\u0069\u0074\u0064\u0065\u006c\u0074\u0061":0x1d6ff,"\u006d\u0069\u0074\u0065":0x1d452,"\u006d\u0069\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d700,"\u006d\u0069\u0074\u0065\u0074\u0061":0x1d702,"\u006d\u0069\u0074\u0066":0x1d453,"\u006d\u0069\u0074\u0067":0x1d454,"\u006d\u0069\u0074\u0067\u0061\u006d\u006d\u0061":0x1d6fe,"\u006d\u0069\u0074\u0069":0x1d456,"\u006di\u0074\u0069\u006f\u0074\u0061":0x1d704,"\u006d\u0069\u0074\u006a":0x1d457,"\u006d\u0069\u0074\u006b":0x1d458,"\u006d\u0069\u0074\u006b\u0061\u0070\u0070\u0061":0x1d705,"\u006d\u0069\u0074\u006c":0x1d459,"\u006di\u0074\u006c\u0061\u006d\u0062\u0064a":0x1d706,"\u006d\u0069\u0074\u006d":0x1d45a,"\u006d\u0069\u0074m\u0075":0x1d707,"\u006d\u0069\u0074\u006e":0x1d45b,"\u006d\u0069\u0074\u006e\u0061\u0062\u006c\u0061":0x1d6fb,"\u006d\u0069\u0074n\u0075":0x1d708,"\u006d\u0069\u0074\u006f":0x1d45c,"\u006d\u0069\u0074\u006f\u006d\u0065\u0067\u0061":0x1d714,"\u006d\u0069\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d70a,"\u006d\u0069\u0074\u0070":0x1d45d,"\u006d\u0069\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d715,"\u006d\u0069\u0074\u0070\u0068\u0069":0x1d711,"\u006d\u0069\u0074p\u0069":0x1d70b,"\u006d\u0069\u0074\u0070\u0073\u0069":0x1d713,"\u006d\u0069\u0074\u0071":0x1d45e,"\u006d\u0069\u0074\u0072":0x1d45f,"\u006d\u0069\u0074\u0072\u0068\u006f":0x1d70c,"\u006d\u0069\u0074\u0073":0x1d460,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0041":0x1d608,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0042":0x1d609,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0043":0x1d60a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0044":0x1d60b,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0045":0x1d60c,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0046":0x1d60d,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0047":0x1d60e,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0048":0x1d60f,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0049":0x1d610,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004a":0x1d611,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004b":0x1d612,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004c":0x1d613,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004d":0x1d614,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004e":0x1d615,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004f":0x1d616,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0050":0x1d617,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0051":0x1d618,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0052":0x1d619,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0053":0x1d61a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0054":0x1d61b,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0055":0x1d61c,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0056":0x1d61d,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0057":0x1d61e,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0058":0x1d61f,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0059":0x1d620,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u005a":0x1d621,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0061":0x1d622,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0062":0x1d623,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0063":0x1d624,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0064":0x1d625,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0065":0x1d626,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0066":0x1d627,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0067":0x1d628,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0068":0x1d629,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0069":0x1d62a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006a":0x1d62b,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006b":0x1d62c,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006c":0x1d62d,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006d":0x1d62e,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006e":0x1d62f,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006f":0x1d630,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0070":0x1d631,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0071":0x1d632,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0072":0x1d633,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0073":0x1d634,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0074":0x1d635,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0075":0x1d636,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0076":0x1d637,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0077":0x1d638,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0078":0x1d639,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0079":0x1d63a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u007a":0x1d63b,"\u006d\u0069\u0074\u0073\u0069\u0067\u006d\u0061":0x1d70e,"\u006d\u0069\u0074\u0074":0x1d461,"\u006d\u0069\u0074\u0074\u0061\u0075":0x1d70f,"\u006d\u0069\u0074\u0074\u0068\u0065\u0074\u0061":0x1d703,"\u006d\u0069\u0074\u0075":0x1d462,"\u006d\u0069\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d710,"\u006d\u0069\u0074\u0076":0x1d463,"m\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d6f3,"\u006d\u0069\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d716,"m\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d718,"\u006di\u0074\u0076\u0061\u0072\u0070\u0068i":0x1d719,"\u006d\u0069\u0074\u0076\u0061\u0072\u0070\u0069":0x1d71b,"\u006di\u0074\u0076\u0061\u0072\u0072\u0068o":0x1d71a,"m\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d70d,"m\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d717,"\u006d\u0069\u0074\u0077":0x1d464,"\u006d\u0069\u0074\u0078":0x1d465,"\u006d\u0069\u0074x\u0069":0x1d709,"\u006d\u0069\u0074\u0079":0x1d466,"\u006d\u0069\u0074\u007a":0x1d467,"\u006di\u0074\u007a\u0065\u0074\u0061":0x1d701,"\u006d\u006c\u0063\u0070":0x2adb,"\u006d\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064":0x0270,"\u006d\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3396,"\u006d\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a3,"\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4d,"\u006dm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x339f,"\u006d\u006f\u0064\u0065\u006c\u0073":0x22a7,"\u006do\u0064\u0074\u0077\u006f\u0073\u0075m":0x2a0a,"\u006d\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3082,"\u006d\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33c1,"\u006d\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e2,"\u006d\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff93,"\u006do\u006c\u0073\u0071\u0075\u0061\u0072e":0x33d6,"\u006d\u006f\u006d\u0061\u0074\u0068\u0061\u0069":0x0e21,"\u006d\u006f\u0076e\u0072\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33a7,"\u006d\u006f\u0076\u0065rs\u0073\u0071\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a8,"\u006d\u0070\u0061\u0072\u0065\u006e":0x24a8,"\u006dp\u0061\u0073\u0071\u0075\u0061\u0072e":0x33ab,"\u006d\u0073\u0061\u006e\u0073\u0041":0x1d5a0,"\u006d\u0073\u0061\u006e\u0073\u0042":0x1d5a1,"\u006d\u0073\u0061\u006e\u0073\u0043":0x1d5a2,"\u006d\u0073\u0061\u006e\u0073\u0044":0x1d5a3,"\u006d\u0073\u0061\u006e\u0073\u0045":0x1d5a4,"\u006d\u0073\u0061\u006e\u0073\u0046":0x1d5a5,"\u006d\u0073\u0061\u006e\u0073\u0047":0x1d5a6,"\u006d\u0073\u0061\u006e\u0073\u0048":0x1d5a7,"\u006d\u0073\u0061\u006e\u0073\u0049":0x1d5a8,"\u006d\u0073\u0061\u006e\u0073\u004a":0x1d5a9,"\u006d\u0073\u0061\u006e\u0073\u004b":0x1d5aa,"\u006d\u0073\u0061\u006e\u0073\u004c":0x1d5ab,"\u006d\u0073\u0061\u006e\u0073\u004d":0x1d5ac,"\u006d\u0073\u0061\u006e\u0073\u004e":0x1d5ad,"\u006d\u0073\u0061\u006e\u0073\u004f":0x1d5ae,"\u006d\u0073\u0061\u006e\u0073\u0050":0x1d5af,"\u006d\u0073\u0061\u006e\u0073\u0051":0x1d5b0,"\u006d\u0073\u0061\u006e\u0073\u0052":0x1d5b1,"\u006d\u0073\u0061\u006e\u0073\u0053":0x1d5b2,"\u006d\u0073\u0061\u006e\u0073\u0054":0x1d5b3,"\u006d\u0073\u0061\u006e\u0073\u0055":0x1d5b4,"\u006d\u0073\u0061\u006e\u0073\u0056":0x1d5b5,"\u006d\u0073\u0061\u006e\u0073\u0057":0x1d5b6,"\u006d\u0073\u0061\u006e\u0073\u0058":0x1d5b7,"\u006d\u0073\u0061\u006e\u0073\u0059":0x1d5b8,"\u006d\u0073\u0061\u006e\u0073\u005a":0x1d5b9,"\u006d\u0073\u0061\u006e\u0073\u0061":0x1d5ba,"\u006d\u0073\u0061\u006e\u0073\u0062":0x1d5bb,"\u006d\u0073\u0061\u006e\u0073\u0063":0x1d5bc,"\u006d\u0073\u0061\u006e\u0073\u0064":0x1d5bd,"\u006d\u0073\u0061\u006e\u0073\u0065":0x1d5be,"\u006d\u0073\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074":0x1d7ea,"\u006d\u0073\u0061\u006e\u0073\u0066":0x1d5bf,"\u006ds\u0061\u006e\u0073\u0066\u0069\u0076e":0x1d7e7,"\u006ds\u0061\u006e\u0073\u0066\u006f\u0075r":0x1d7e6,"\u006d\u0073\u0061\u006e\u0073\u0067":0x1d5c0,"\u006d\u0073\u0061\u006e\u0073\u0068":0x1d5c1,"\u006d\u0073\u0061\u006e\u0073\u0069":0x1d5c2,"\u006d\u0073\u0061\u006e\u0073\u006a":0x1d5c3,"\u006d\u0073\u0061\u006e\u0073\u006b":0x1d5c4,"\u006d\u0073\u0061\u006e\u0073\u006c":0x1d5c5,"\u006d\u0073\u0061\u006e\u0073\u006d":0x1d5c6,"\u006d\u0073\u0061\u006e\u0073\u006e":0x1d5c7,"\u006ds\u0061\u006e\u0073\u006e\u0069\u006ee":0x1d7eb,"\u006d\u0073\u0061\u006e\u0073\u006f":0x1d5c8,"\u006d\u0073\u0061\u006e\u0073\u006f\u006e\u0065":0x1d7e3,"\u006d\u0073\u0061\u006e\u0073\u0070":0x1d5c9,"\u006d\u0073\u0061\u006e\u0073\u0071":0x1d5ca,"\u006d\u0073\u0061\u006e\u0073\u0072":0x1d5cb,"\u006d\u0073\u0061\u006e\u0073\u0073":0x1d5cc,"\u006d\u0073\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e":0x1d7e9,"\u006d\u0073\u0061\u006e\u0073\u0073\u0069\u0078":0x1d7e8,"\u006d\u0073\u0061\u006e\u0073\u0074":0x1d5cd,"\u006d\u0073\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065":0x1d7e5,"\u006d\u0073\u0061\u006e\u0073\u0074\u0077\u006f":0x1d7e4,"\u006d\u0073\u0061\u006e\u0073\u0075":0x1d5ce,"\u006d\u0073\u0061\u006e\u0073\u0076":0x1d5cf,"\u006d\u0073\u0061\u006e\u0073\u0077":0x1d5d0,"\u006d\u0073\u0061\u006e\u0073\u0078":0x1d5d1,"\u006d\u0073\u0061\u006e\u0073\u0079":0x1d5d2,"\u006d\u0073\u0061\u006e\u0073\u007a":0x1d5d3,"\u006ds\u0061\u006e\u0073\u007a\u0065\u0072o":0x1d7e2,"\u006d\u0073\u0063r\u0041":0x1d49c,"\u006d\u0073\u0063r\u0042":0x212c,"\u006d\u0073\u0063r\u0043":0x1d49e,"\u006d\u0073\u0063r\u0044":0x1d49f,"\u006d\u0073\u0063r\u0045":0x2130,"\u006d\u0073\u0063r\u0046":0x2131,"\u006d\u0073\u0063r\u0047":0x1d4a2,"\u006d\u0073\u0063r\u0048":0x210b,"\u006d\u0073\u0063r\u0049":0x2110,"\u006d\u0073\u0063r\u004a":0x1d4a5,"\u006d\u0073\u0063r\u004b":0x1d4a6,"\u006d\u0073\u0063r\u004c":0x2112,"\u006d\u0073\u0063r\u004d":0x2133,"\u006d\u0073\u0063r\u004e":0x1d4a9,"\u006d\u0073\u0063r\u004f":0x1d4aa,"\u006d\u0073\u0063r\u0050":0x1d4ab,"\u006d\u0073\u0063r\u0051":0x1d4ac,"\u006d\u0073\u0063r\u0052":0x211b,"\u006d\u0073\u0063r\u0053":0x1d4ae,"\u006d\u0073\u0063r\u0054":0x1d4af,"\u006d\u0073\u0063r\u0055":0x1d4b0,"\u006d\u0073\u0063r\u0056":0x1d4b1,"\u006d\u0073\u0063r\u0057":0x1d4b2,"\u006d\u0073\u0063r\u0058":0x1d4b3,"\u006d\u0073\u0063r\u0059":0x1d4b4,"\u006d\u0073\u0063r\u005a":0x1d4b5,"\u006d\u0073\u0063r\u0061":0x1d4b6,"\u006d\u0073\u0063r\u0062":0x1d4b7,"\u006d\u0073\u0063r\u0063":0x1d4b8,"\u006d\u0073\u0063r\u0064":0x1d4b9,"\u006d\u0073\u0063r\u0065":0x212f,"\u006d\u0073\u0063r\u0066":0x1d4bb,"\u006d\u0073\u0063r\u0067":0x210a,"\u006d\u0073\u0063r\u0068":0x1d4bd,"\u006d\u0073\u0063r\u0069":0x1d4be,"\u006d\u0073\u0063r\u006a":0x1d4bf,"\u006d\u0073\u0063r\u006b":0x1d4c0,"\u006d\u0073\u0063r\u006c":0x1d4c1,"\u006d\u0073\u0063r\u006d":0x1d4c2,"\u006d\u0073\u0063r\u006e":0x1d4c3,"\u006d\u0073\u0063r\u006f":0x2134,"\u006d\u0073\u0063r\u0070":0x1d4c5,"\u006d\u0073\u0063r\u0071":0x1d4c6,"\u006d\u0073\u0063r\u0072":0x1d4c7,"\u006d\u0073\u0063r\u0073":0x1d4c8,"\u006d\u0073\u0063r\u0074":0x1d4c9,"\u006d\u0073\u0063r\u0075":0x1d4ca,"\u006d\u0073\u0063r\u0076":0x1d4cb,"\u006d\u0073\u0063r\u0077":0x1d4cc,"\u006d\u0073\u0063r\u0078":0x1d4cd,"\u006d\u0073\u0063r\u0079":0x1d4ce,"\u006d\u0073\u0063r\u007a":0x1d4cf,"\u006d\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33b3,"\u006ds\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ef,"\u006d\u0074\u0074\u0041":0x1d670,"\u006d\u0074\u0074\u0042":0x1d671,"\u006d\u0074\u0074\u0043":0x1d672,"\u006d\u0074\u0074\u0044":0x1d673,"\u006d\u0074\u0074\u0045":0x1d674,"\u006d\u0074\u0074\u0046":0x1d675,"\u006d\u0074\u0074\u0047":0x1d676,"\u006d\u0074\u0074\u0048":0x1d677,"\u006d\u0074\u0074\u0049":0x1d678,"\u006d\u0074\u0074\u004a":0x1d679,"\u006d\u0074\u0074\u004b":0x1d67a,"\u006d\u0074\u0074\u004c":0x1d67b,"\u006d\u0074\u0074\u004d":0x1d67c,"\u006d\u0074\u0074\u004e":0x1d67d,"\u006d\u0074\u0074\u004f":0x1d67e,"\u006d\u0074\u0074\u0050":0x1d67f,"\u006d\u0074\u0074\u0051":0x1d680,"\u006d\u0074\u0074\u0052":0x1d681,"\u006d\u0074\u0074\u0053":0x1d682,"\u006d\u0074\u0074\u0054":0x1d683,"\u006d\u0074\u0074\u0055":0x1d684,"\u006d\u0074\u0074\u0056":0x1d685,"\u006d\u0074\u0074\u0057":0x1d686,"\u006d\u0074\u0074\u0058":0x1d687,"\u006d\u0074\u0074\u0059":0x1d688,"\u006d\u0074\u0074\u005a":0x1d689,"\u006d\u0074\u0074\u0061":0x1d68a,"\u006d\u0074\u0074\u0062":0x1d68b,"\u006d\u0074\u0074\u0063":0x1d68c,"\u006d\u0074\u0074\u0064":0x1d68d,"\u006d\u0074\u0074\u0065":0x1d68e,"\u006d\u0074\u0074\u0065\u0069\u0067\u0068\u0074":0x1d7fe,"\u006d\u0074\u0074\u0066":0x1d68f,"\u006dt\u0074\u0066\u0069\u0076\u0065":0x1d7fb,"\u006dt\u0074\u0066\u006f\u0075\u0072":0x1d7fa,"\u006d\u0074\u0074\u0067":0x1d690,"\u006d\u0074\u0074\u0068":0x1d691,"\u006d\u0074\u0074\u0069":0x1d692,"\u006d\u0074\u0074\u006a":0x1d693,"\u006d\u0074\u0074\u006b":0x1d694,"\u006d\u0074\u0074\u006c":0x1d695,"\u006d\u0074\u0074\u006d":0x1d696,"\u006d\u0074\u0074\u006e":0x1d697,"\u006dt\u0074\u006e\u0069\u006e\u0065":0x1d7ff,"\u006d\u0074\u0074\u006f":0x1d698,"\u006d\u0074\u0074\u006f\u006e\u0065":0x1d7f7,"\u006d\u0074\u0074\u0070":0x1d699,"\u006d\u0074\u0074\u0071":0x1d69a,"\u006d\u0074\u0074\u0072":0x1d69b,"\u006d\u0074\u0074\u0073":0x1d69c,"\u006d\u0074\u0074\u0073\u0065\u0076\u0065\u006e":0x1d7fd,"\u006d\u0074\u0074\u0073\u0069\u0078":0x1d7fc,"\u006d\u0074\u0074\u0074":0x1d69d,"\u006d\u0074\u0074\u0074\u0068\u0072\u0065\u0065":0x1d7f9,"\u006d\u0074\u0074\u0074\u0077\u006f":0x1d7f8,"\u006d\u0074\u0074\u0075":0x1d69e,"\u006d\u0074\u0074\u0076":0x1d69f,"\u006d\u0074\u0074\u0077":0x1d6a0,"\u006d\u0074\u0074\u0078":0x1d6a1,"\u006d\u0074\u0074\u0079":0x1d6a2,"\u006d\u0074\u0074\u007a":0x1d6a3,"\u006dt\u0074\u007a\u0065\u0072\u006f":0x1d7f6,"\u006dt\u0075\u0072\u006e\u0065\u0064":0x026f,"\u006d\u0075":0x00b5,"\u006du\u0061\u0073\u0071\u0075\u0061\u0072e":0x3382,"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072":0x226b,"\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073":0x226a,"\u006du\u0066\u0073\u0071\u0075\u0061\u0072e":0x338c,"\u006du\u0067\u0072\u0065\u0065\u006b":0x03bc,"\u006du\u0067\u0073\u0071\u0075\u0061\u0072e":0x338d,"\u006d\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3080,"\u006d\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e0,"\u006d\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff91,"\u006du\u006c\u0073\u0071\u0075\u0061\u0072e":0x3395,"\u006d\u0075\u006c\u0074\u0069\u0063\u006c\u006f\u0073e\u006c\u0065\u0066\u0074":0x22c9,"\u006du\u006ct\u0069\u0063\u006c\u006f\u0073\u0065\u0072\u0069\u0067\u0068\u0074":0x22ca,"\u006d\u0075\u006c\u0074\u0069\u006d\u0061\u0070":0x22b8,"m\u0075\u006c\u0074\u0069\u006d\u0061\u0070\u0069\u006e\u0076":0x27dc,"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074":0x22cb,"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074":0x22cc,"\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079":0x00d7,"\u006du\u006d\u0073\u0071\u0075\u0061\u0072e":0x339b,"\u006du\u006ea\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05a3,"m\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006f\u0074\u0065":0x266a,"\u006d\u0075\u0073\u0069\u0063\u0066\u006c\u0061\u0074\u0073\u0069\u0067\u006e":0x266d,"\u006d\u0075\u0073\u0069\u0063\u0073\u0068\u0061\u0072p\u0073\u0069\u0067\u006e":0x266f,"\u006du\u0073\u0073\u0071\u0075\u0061\u0072e":0x33b2,"\u006du\u0076\u0073\u0071\u0075\u0061\u0072e":0x33b6,"\u006du\u0077\u0073\u0071\u0075\u0061\u0072e":0x33bc,"\u006d\u0076\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33b9,"\u006d\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b7,"\u006d\u0077\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33bf,"\u006d\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33bd,"\u006e":0x006e,"n\u0056\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x21fa,"\u006eV\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2b3a,"\u006e\u0056l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21fc,"\u006e\u0056\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21fb,"\u006e\u0056r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2915,"\u006eV\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077":0x2b35,"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c":0x2b3d,"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2901,"\u006e\u0056\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2918,"\u006ea\u0062\u0065\u006e\u0067\u0061\u006ci":0x09a8,"\u006e\u0061\u0063\u0075\u0074\u0065":0x0144,"\u006e\u0061\u0064\u0065\u0076\u0061":0x0928,"\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa8,"\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a28,"\u006e\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306a,"\u006e\u0061\u0069r\u0061":0x20a6,"\u006e\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ca,"\u006e\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff85,"\u006e\u0061\u006e\u0064":0x22bc,"\u006ea\u0070\u0070\u0072\u006f\u0078":0x2249,"\u006e\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x3381,"\u006e\u0061\u0073\u0079\u006d\u0070":0x226d,"\u006ea\u0074\u0075\u0072\u0061\u006c":0x266e,"\u006e\u0062\u0068\u0079\u0070\u0068\u0065\u006e":0x2011,"\u006eb\u006f\u0070\u006f\u006d\u006f\u0066o":0x310b,"\u006e\u0063\u0061\u0072\u006f\u006e":0x0148,"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0146,"\u006ec\u0065\u0064\u0069\u006c\u006c\u00611":0xf81d,"\u006ec\u0069\u0072\u0063\u006c\u0065":0x24dd,"\u006e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e4b,"\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e45,"\u006ed\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e47,"\u006e\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306d,"\u006e\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cd,"\u006e\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff88,"n\u0065\u006f\u0076\u006e\u0077\u0061\u0072\u0072\u006f\u0077":0x2931,"n\u0065\u006f\u0076\u0073\u0065\u0061\u0072\u0072\u006f\u0077":0x292e,"\u006ee\u0073\u0077\u0061\u0072\u0072\u006fw":0x2922,"\u006e\u0065\u0075\u0074\u0065\u0072":0x26b2,"\u006e\u0066\u0073\u0071\u0075\u0061\u0072\u0065":0x338b,"\u006e\u0067\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0999,"\u006eg\u0061\u0064\u0065\u0076\u0061":0x0919,"n\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a99,"n\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a19,"\u006e\u0067\u006f\u006e\u0067\u0075\u0074\u0068\u0061\u0069":0x0e07,"\u006eg\u0074\u0072\u0073\u0069\u006d":0x2275,"\u006eh\u0056\u0076\u0065\u0072\u0074":0x2af5,"\u006eh\u0069\u0072\u0061\u0067\u0061\u006ea":0x3093,"\u006eh\u006f\u006f\u006b\u006c\u0065\u0066t":0x0272,"\u006e\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078":0x0273,"\u006e\u0068\u0070a\u0072":0x2af2,"\u006ei\u0065u\u006e\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x326f,"\u006e\u0069\u0065\u0075\u006e\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x320f,"\u006e\u0069e\u0075\u006e\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3135,"\u006e\u0069\u0065\u0075\u006e\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3261,"\u006e\u0069e\u0075\u006e\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x3136,"n\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3134,"\u006ei\u0065u\u006e\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x3168,"\u006e\u0069e\u0075\u006e\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3201,"\u006ei\u0065u\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3167,"\u006e\u0069\u0065\u0075\u006e\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x3166,"\u006e\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306b,"\u006e\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cb,"\u006e\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff86,"\u006e\u0069k\u0068\u0061\u0068i\u0074\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf899,"\u006e\u0069\u006bh\u0061\u0068\u0069\u0074\u0074\u0068\u0061\u0069":0x0e4d,"\u006e\u0069\u006e\u0065":0x0039,"n\u0069\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ef,"\u006e\u0069\u006e\u0065\u0064\u0065\u0076\u0061":0x096f,"\u006e\u0069\u006ee\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aef,"\u006e\u0069\u006ee\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6f,"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063":0x0669,"\u006e\u0069\u006ee\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3029,"n\u0069n\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e":0x3228,"\u006e\u0069\u006ee\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2089,"\u006e\u0069\u006e\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff19,"\u006e\u0069\u006ee\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf739,"\u006ei\u006e\u0065\u0070\u0061\u0072\u0065n":0x247c,"\u006e\u0069\u006e\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x2490,"n\u0069\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f9,"\u006ei\u006e\u0065\u0072\u006f\u006d\u0061n":0x2178,"\u006e\u0069\u006ee\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2079,"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x2472,"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2486,"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x249a,"\u006e\u0069\u006e\u0065\u0074\u0068\u0061\u0069":0x0e59,"\u006e\u0069\u006f\u0062\u0061\u0072":0x22fe,"\u006e\u0069\u0073":0x22fc,"\u006e\u0069\u0073\u0064":0x22fa,"\u006e\u006a":0x01cc,"\u006ek\u0061\u0074\u0061\u006b\u0061\u006ea":0x30f3,"\u006ek\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff9d,"\u006e\u006c\u0065\u0067\u0072\u0069\u0067\u0068\u0074\u006c\u006f\u006e\u0067":0x019e,"\u006e\u006c\u0065\u0073\u0073\u0067\u0074\u0072":0x2278,"\u006e\u006c\u0065\u0073\u0073\u0073\u0069\u006d":0x2274,"\u006e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e49,"\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4e,"\u006e\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x339a,"\u006e\u006e\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a3,"\u006en\u0061\u0064\u0065\u0076\u0061":0x0923,"n\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa3,"n\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a23,"\u006e\u006e\u006e\u0061\u0064\u0065\u0076\u0061":0x0929,"\u006e\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306e,"\u006e\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ce,"\u006e\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff89,"\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065":0x00a0,"\u006eo\u006e\u0065\u006e\u0074\u0068\u0061i":0x0e13,"\u006e\u006f\u006e\u0075\u0074\u0068\u0061\u0069":0x0e19,"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x0646,"\u006eo\u006fn\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee6,"n\u006f\u006f\u006e\u0067hu\u006en\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfb9f,"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfee7,"\u006e\u006f\u006fn\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfee5,"n\u006f\u006f\u006e\u006aee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfcd2,"\u006e\u006f\u006f\u006eje\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063":0xfc4b,"\u006e\u006fo\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee8,"n\u006f\u006f\u006e\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfcd5,"\u006e\u006f\u006f\u006eme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063":0xfc4e,"\u006e\u006f\u006f\u006eno\u006f\u006e\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfc8d,"\u006eo\u006f\u006e\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066\u006da\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc8e,"n\u006f\u006f\u006e\u0077\u0069\u0074h\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075r\u0061\u0069\u0073o\u006ca\u0074\u0065\u0064":0xfc4f,"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcd3,"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068e\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xe815,"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcd4,"\u006e\u006fo\u006e\u0077\u0069t\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc8f,"\u006e\u006f\u006f\u006ewi\u0074\u0068\u0079\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc50,"\u006e\u006f\u006f\u006e\u0077\u0069\u0074\u0068\u007a\u0061\u0069\u006ef\u0069\u006e\u0061\u006c":0xfc70,"\u006e\u006f\u0074\u0061\u0070\u0070\u0072\u006f\u0078e\u0071\u0075\u0061\u006c":0x2247,"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068":0x21ae,"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074":0x219a,"\u006e\u006f\u0074\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074":0x219b,"\u006e\u006f\u0074\u0062\u0061\u0072":0x2224,"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073":0x220c,"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068":0x21ce,"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074":0x2209,"\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x2260,"\u006e\u006f\u0074\u0065\u0078\u0069\u0073\u0074\u0065n\u0074\u0069\u0061\u006c":0x2204,"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s":0x22ae,"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061":0x22af,"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072":0x226f,"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c":0x2271,"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073":0x2279,"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c":0x2a7e,"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c":0x2262,"\u006eo\u0074\u006c\u0065\u0073\u0073":0x226e,"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c":0x2270,"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x2226,"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073":0x2280,"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073":0x22ad,"\u006e\u006f\u0074\u0073\u0069\u006d\u0069\u006c\u0061\u0072":0x2241,"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t":0x2284,"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c":0x2288,"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073":0x2281,"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074":0x2285,"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c":0x2289,"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074":0x22ec,"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074":0x22ed,"\u006eo\u0074t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074":0x22ea,"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x22eb,"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065":0x22ac,"n\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0576,"\u006e\u0070\u0061\u0072\u0065\u006e":0x24a9,"\u006ep\u006f\u006c\u0069\u006e\u0074":0x2a14,"\u006e\u0070\u0072e\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071":0x22e0,"\u006e\u0073\u0069m\u0065":0x2244,"n\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071":0x22e2,"n\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071":0x22e3,"\u006e\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33b1,"\u006e\u0073\u0075c\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071":0x22e1,"\u006es\u0075\u0070\u0065\u0072\u0069\u006fr":0x207f,"\u006e\u0074\u0069\u006c\u0064\u0065":0x00f1,"\u006e\u0075":0x03bd,"\u006e\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306c,"\u006e\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cc,"\u006e\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff87,"\u006e\u0075\u006bt\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09bc,"\u006eu\u006b\u0074\u0061\u0064\u0065\u0076a":0x093c,"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0abc,"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a3c,"\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e":0x0023,"\u006e\u0075\u006d\u0062er\u0073\u0069\u0067\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff03,"\u006eu\u006db\u0065\u0072\u0073\u0069\u0067\u006e\u0073\u006d\u0061\u006c\u006c":0xfe5f,"\u006e\u0075m\u0065\u0072\u0061l\u0073\u0069\u0067\u006e\u0067\u0072\u0065\u0065\u006b":0x0374,"n\u0075\u006d\u0065\u0072al\u0073i\u0067\u006e\u006c\u006f\u0077e\u0072\u0067\u0072\u0065\u0065\u006b":0x0375,"\u006e\u0075\u006d\u0065\u0072\u006f":0x2116,"\u006e\u0075\u006e":0x05e0,"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h":0xfb40,"n\u0076\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2902,"\u006e\u0076L\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2904,"\u006e\u0076\u0052i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2903,"\u006ev\u0069\u006e\u0066\u0074\u0079":0x29de,"n\u0076\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x21f7,"\u006ev\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2b39,"\u006e\u0076l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21f9,"\u006e\u0076\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21f8,"\u006e\u0076r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2914,"\u006e\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b5,"\u006ev\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077":0x2b34,"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c":0x2b3c,"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2900,"\u006e\u0076\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2917,"n\u0077\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077":0x2932,"\u006ew\u0073\u0065\u0061\u0072\u0072\u006fw":0x2921,"\u006e\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33bb,"\u006e\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099e,"\u006ey\u0061\u0064\u0065\u0076\u0061":0x091e,"n\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9e,"n\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1e,"\u006f":0x006f,"\u006f\u0061\u0063\u0075\u0074\u0065":0x00f3,"\u006f\u0061\u006e\u0067\u0074\u0068\u0061\u0069":0x0e2d,"\u006f\u0062\u0061\u0072":0x233d,"\u006fb\u0061\u0072\u0072\u0065\u0064":0x0275,"\u006fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e9,"\u006f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04eb,"\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0993,"\u006fb\u006f\u0070\u006f\u006d\u006f\u0066o":0x311b,"\u006f\u0062\u006f\u0074":0x29ba,"\u006fb\u0072\u0062\u0072\u0061\u006b":0x23e0,"\u006f\u0062\u0072\u0065\u0076\u0065":0x014f,"\u006fb\u0073\u006c\u0061\u0073\u0068":0x29b8,"o\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061":0x0911,"\u006fc\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a91,"o\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061":0x0949,"\u006fc\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac9,"\u006f\u0063\u0061\u0072\u006f\u006e":0x01d2,"\u006fc\u0069\u0072\u0063\u006c\u0065":0x24de,"o\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00f4,"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ed1,"\u006f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ed9,"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ed3,"o\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ed5,"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ed7,"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c":0x043e,"\u006fd\u0062\u006c\u0067\u0072\u0061\u0076e":0x020d,"\u006f\u0064\u0065v\u0061":0x0913,"\u006fd\u0069\u0065\u0072\u0065\u0073\u0069s":0x00f6,"\u006f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e7,"\u006f\u0064\u0069\u0076":0x2a38,"\u006fd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ecd,"\u006f\u0064\u006ft\u0073\u006c\u0061\u0073\u0068\u0064\u006f\u0074":0x29bc,"\u006f\u0065":0x0153,"\u006f\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x315a,"\u006f\u0067\u006f\u006e\u0065\u006b":0x02db,"\u006fg\u006f\u006e\u0065\u006b\u0063\u006db":0x0328,"\u006f\u0067\u0072\u0061\u0076\u0065":0x00f2,"\u006f\u0067\u0072e\u0061\u0074\u0065\u0072\u0074\u0068\u0061\u006e":0x29c1,"\u006fg\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a93,"\u006f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0585,"\u006fh\u0069\u0072\u0061\u0067\u0061\u006ea":0x304a,"\u006f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ecf,"\u006f\u0068\u006fr\u006e":0x01a1,"\u006f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1edb,"\u006f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ee3,"\u006f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1edd,"\u006f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1edf,"\u006f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1ee1,"\u006f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0x0151,"\u006f\u0069":0x01a3,"\u006f\u0069\u0069\u0069\u006e\u0074":0x2230,"\u006f\u0069\u0069n\u0074":0x222f,"\u006f\u0069n\u0074\u0063\u0074r\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x2233,"\u006f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020f,"\u006fk\u0061\u0074\u0061\u006b\u0061\u006ea":0x30aa,"\u006fk\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff75,"\u006fk\u006f\u0072\u0065\u0061\u006e":0x3157,"\u006fl\u0063\u0072\u006f\u0073\u0073":0x29bb,"\u006fl\u0065\u0068\u0065\u0062\u0072\u0065w":0x05ab,"\u006fl\u0065\u0073\u0073\u0074\u0068\u0061n":0x29c0,"\u006fm\u0061\u0063\u0072\u006f\u006e":0x014d,"\u006f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e53,"\u006f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e51,"\u006f\u006d\u0064\u0065\u0076\u0061":0x0950,"\u006f\u006d\u0065g\u0061":0x03c9,"\u006f\u006d\u0065\u0067\u0061\u0031":0x03d6,"\u006f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0461,"\u006f\u006de\u0067\u0061\u006ca\u0074\u0069\u006e\u0063\u006c\u006f\u0073\u0065\u0064":0x0277,"\u006fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047b,"\u006fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047d,"\u006f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073":0x03ce,"\u006f\u006d\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ad0,"\u006fm\u0069\u0063\u0072\u006f\u006e":0x03bf,"\u006f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x03cc,"\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4f,"\u006f\u006e\u0065":0x0031,"\u006f\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e7,"\u006fn\u0065\u0064\u0065\u0076\u0061":0x0967,"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072":0x2024,"\u006fn\u0065\u0065\u0069\u0067\u0068\u0074h":0x215b,"\u006f\u006e\u0065\u0066\u0069\u0066\u0074\u0068":0x2155,"\u006fn\u0065\u0066\u0069\u0074\u0074\u0065d":0xf6dc,"o\u006e\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae7,"o\u006e\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a67,"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063":0x0661,"\u006fn\u0065\u0068\u0061\u006c\u0066":0x00bd,"o\u006e\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3021,"\u006f\u006e\u0065\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3220,"o\u006e\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2081,"\u006f\u006e\u0065m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff11,"\u006f\u006e\u0065\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f4,"o\u006e\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf731,"\u006f\u006e\u0065\u0070\u0061\u0072\u0065\u006e":0x2474,"\u006fn\u0065\u0070\u0065\u0072\u0069\u006fd":0x2488,"\u006f\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f1,"\u006f\u006e\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072":0x00bc,"\u006f\u006e\u0065\u0072\u006f\u006d\u0061\u006e":0x2170,"\u006f\u006e\u0065\u0073\u0069\u0078\u0074\u0068":0x2159,"o\u006e\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x00b9,"\u006fn\u0065\u0074\u0068\u0061\u0069":0x0e51,"\u006f\u006e\u0065\u0074\u0068\u0069\u0072\u0064":0x2153,"\u006fo\u0067\u006f\u006e\u0065\u006b":0x01eb,"\u006f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e":0x01ed,"\u006f\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a13,"\u006fo\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a4b,"\u006f\u006f\u0070e\u006e":0x0254,"\u006f\u0070\u0061\u0072\u0065\u006e":0x24aa,"\u006f\u0070\u0065r\u0070":0x29b9,"\u006f\u0070\u006c\u0075\u0073\u006c\u0068\u0072\u0069\u006d":0x2a2d,"\u006f\u0070\u006c\u0075\u0073\u0072\u0068\u0072\u0069\u006d":0x2a2e,"\u006f\u0070\u0074\u0069\u006f\u006e":0x2325,"o\u0072\u0064\u0066\u0065\u006d\u0069\u006e\u0069\u006e\u0065":0x00aa,"\u006f\u0072\u0064m\u0061\u0073\u0063\u0075\u006c\u0069\u006e\u0065":0x00ba,"\u006f\u0072\u0069\u0067\u006f\u0066":0x22b6,"\u006f\u0072\u0074\u0068\u006f\u0067\u006f\u006e\u0061\u006c":0x221f,"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065":0x22bb,"\u006f\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061":0x0912,"\u006f\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x094a,"\u006f\u0073\u006c\u0061\u0073\u0068":0x00f8,"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065":0x01ff,"\u006f\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3049,"\u006f\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a9,"\u006f\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6b,"\u006fs\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f0,"\u006f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x047f,"\u006f\u0074\u0069\u006c\u0064\u0065":0x00f5,"o\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e4d,"\u006f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073":0x1e4f,"\u006ft\u0069\u006d\u0065\u0073\u0068\u0061t":0x2a36,"o\u0074\u0069\u006d\u0065\u0073\u006c\u0068\u0072\u0069\u006d":0x2a34,"o\u0074\u0069\u006d\u0065\u0073\u0072\u0068\u0072\u0069\u006d":0x2a35,"\u006f\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3121,"\u006f\u0075\u006ec\u0065":0x2125,"\u006fv\u0065\u0072\u0062\u0072\u0061\u0063e":0x23de,"o\u0076\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074":0x23b4,"\u006f\u0076\u0065\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x20d6,"\u006fv\u0065r\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x20e1,"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065":0x203e,"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0063e\u006e\u0074e\u0072\u006c\u0069\u006e\u0065":0xfe4a,"o\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0063\u006d\u0062":0x0305,"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0064a\u0073\u0068\u0065\u0064":0xfe49,"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0064\u0062\u006c\u0077\u0061\u0076\u0079":0xfe4c,"\u006f\u0076\u0065r\u006c\u0069\u006e\u0065\u0077\u0061\u0076\u0079":0xfe4b,"\u006fv\u0065\u0072\u0070\u0061\u0072\u0065n":0x23dc,"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09cb,"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x094b,"\u006fv\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0acb,"\u0070":0x0070,"\u0070\u0061\u0061m\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x3380,"\u0070\u0061\u0061\u0073\u0065\u006e\u0074\u006f\u0073q\u0075\u0061\u0072\u0065":0x332b,"\u0070a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09aa,"\u0070\u0061\u0063\u0075\u0074\u0065":0x1e55,"\u0070\u0061\u0064\u0065\u0076\u0061":0x092a,"\u0070\u0061\u0067\u0065\u0064\u006f\u0077\u006e":0x21df,"\u0070\u0061\u0067\u0065\u0075\u0070":0x21de,"\u0070\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aaa,"\u0070\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2a,"\u0070\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3071,"\u0070\u0061\u0069\u0079\u0061\u006e\u006e\u006f\u0069\u0074\u0068\u0061\u0069":0x0e2f,"\u0070\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d1,"\u0070a\u006c\u0061\u0074\u0061l\u0069\u007a\u0061\u0074\u0069o\u006ec\u0079r\u0069\u006c\u006c\u0069\u0063\u0063\u006db":0x0484,"\u0070\u0061l\u006f\u0063\u0068k\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04c0,"\u0070\u0061\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x317f,"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h":0x00b6,"\u0070a\u0072a\u0067\u0072\u0061\u0070\u0068s\u0065\u0070a\u0072\u0061\u0074\u006f\u0072":0x2029,"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x2225,"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c\u006f\u0067\u0072\u0061\u006d":0x25b1,"\u0070a\u0072a\u006c\u006c\u0065\u006c\u006fg\u0072\u0061m\u0062\u006c\u0061\u0063\u006b":0x25b0,"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t":0x0028,"p\u0061\u0072\u0065\u006ele\u0066t\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063":0xfd3e,"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0062\u0074":0xf8ed,"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0065\u0078":0xf8ec,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0x208d,"\u0070a\u0072e\u006e\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff08,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c":0xfe59,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0x207d,"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0074\u0070":0xf8eb,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe35,"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074":0x0029,"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063":0xfd3f,"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0074":0xf8f8,"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0065\u0078":0xf8f7,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0069\u006ef\u0065\u0072\u0069\u006f\u0072":0x208e,"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff09,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c":0xfe5a,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0073\u0075p\u0065\u0072\u0069\u006f\u0072":0x207e,"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0074\u0070":0xf8f6,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c":0xfe36,"\u0070\u0061\u0072\u0073\u0069\u006d":0x2af3,"p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066":0x2202,"\u0070\u0061\u0072\u0074ia\u006c\u006d\u0065\u0065\u0074\u0063\u006f\u006e\u0074\u0072\u0061\u0063\u0074\u0069o\u006e":0x2aa3,"\u0070\u0061\u0073h\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0599,"\u0070\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33a9,"\u0070a\u0074\u0061\u0068\u0031\u0031":0x05b7,"p\u0061\u007a\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077":0x05a1,"\u0070b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3106,"\u0070c\u0069\u0072\u0063\u006c\u0065":0x24df,"\u0070\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e57,"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043f,"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068":0xfb44,"p\u0065\u0065\u007a\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x333b,"\u0070\u0065\u0066\u0069na\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb43,"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c":0x067e,"p\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057a,"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb57,"\u0070\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb58,"\u0070\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307a,"p\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb56,"\u0070e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb59,"\u0070\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xe813,"\u0070\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30da,"p\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04a7,"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e":0x2b20,"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b":0x2b1f,"\u0070\u0065\u0072a\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4e,"\u0070e\u0072\u0063\u0065\u006e\u0074":0x0025,"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063":0x066a,"\u0070\u0065r\u0063\u0065\u006et\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff05,"\u0070\u0065\u0072c\u0065\u006e\u0074\u0073\u006d\u0061\u006c\u006c":0xfe6a,"\u0070\u0065\u0072\u0069\u006f\u0064":0x002e,"\u0070\u0065\u0072\u0069\u006f\u0064\u0061\u0072\u006de\u006e\u0069\u0061\u006e":0x0589,"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064":0x00b7,"\u0070\u0065r\u0069\u006f\u0064c\u0065\u006e\u0074\u0065\u0072\u0065\u0064\u002e\u0030":0x0097,"\u0070e\u0072i\u006f\u0064\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff61,"\u0070\u0065\u0072\u0069\u006f\u0064\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0xf6e7,"\u0070e\u0072i\u006f\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff0e,"p\u0065\u0072\u0069\u006f\u0064\u0073\u006d\u0061\u006c\u006c":0xfe52,"\u0070\u0065\u0072\u0069\u006f\u0064\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0xf6e8,"\u0070\u0065\u0072\u0069sp\u006f\u006d\u0065\u006e\u0069\u0067\u0072\u0065\u0065\u006b\u0063\u006d\u0062":0x0342,"\u0070\u0065\u0072\u0070":0x27c2,"\u0070\u0065\u0072\u0070\u0063\u006f\u0072\u0072\u0065s\u0070\u006f\u006e\u0064":0x2a5e,"\u0070\u0065\u0072\u0070\u0065\u006e\u0064\u0069\u0063\u0075\u006c\u0061\u0072":0x22a5,"\u0070\u0065\u0072p\u0073":0x2ae1,"\u0070\u0065\u0072\u0074\u0065\u006e\u0074\u0068\u006fu\u0073\u0061\u006e\u0064":0x2031,"p\u0065\u0072\u0074\u0068\u006f\u0075\u0073\u0061\u006e\u0064":0x2030,"\u0070\u0065\u0073\u0065\u0074\u0061":0x20a7,"\u0070\u0065\u0073o\u0031":0xf81b,"\u0070\u0066\u0073\u0071\u0075\u0061\u0072\u0065":0x338a,"\u0070\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ab,"\u0070h\u0061\u0064\u0065\u0076\u0061":0x092b,"p\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aab,"p\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2b,"\u0070\u0068\u0069":0x03c6,"\u0070\u0068\u0069\u0031":0x03d5,"p\u0068i\u0065\u0075\u0070\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x327a,"\u0070\u0068\u0069\u0065up\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x321a,"\u0070\u0068\u0069\u0065up\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326c,"\u0070\u0068\u0069\u0065\u0075\u0070\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314d,"\u0070h\u0069e\u0075\u0070\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320c,"\u0070\u0068\u0069\u006c\u0061\u0074\u0069\u006e":0x0278,"p\u0068\u0069\u006e\u0074\u0068\u0075\u0074\u0068\u0061\u0069":0x0e3a,"\u0070\u0068\u006fo\u006b":0x01a5,"p\u0068\u006f\u0070\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e1e,"\u0070\u0068\u006fp\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069":0x0e1c,"\u0070\u0068\u006f\u0073\u0061\u006d\u0070\u0068\u0061o\u0074\u0068\u0061\u0069":0x0e20,"\u0070\u0069":0x03c0,"\u0070i\u0065u\u0070\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3273,"\u0070\u0069\u0065\u0075\u0070\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3213,"\u0070\u0069e\u0075\u0070\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3176,"\u0070\u0069\u0065\u0075\u0070\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3265,"\u0070\u0069\u0065\u0075\u0070\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e":0x3172,"p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3142,"\u0070\u0069e\u0075\u0070\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3205,"p\u0069\u0065\u0075\u0070si\u006fs\u006b\u0069\u0079\u0065\u006fk\u006b\u006f\u0072\u0065\u0061\u006e":0x3174,"\u0070i\u0065u\u0070\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3144,"p\u0069\u0065\u0075\u0070si\u006fs\u0074\u0069\u006b\u0065\u0075t\u006b\u006f\u0072\u0065\u0061\u006e":0x3175,"\u0070i\u0065u\u0070\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e":0x3177,"\u0070\u0069\u0065\u0075\u0070\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x3173,"\u0070\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3074,"\u0070\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d4,"\u0070\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0583,"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069":0x210f,"\u0070\u006c\u0075\u0073":0x002b,"\u0070\u006c\u0075s\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x031f,"\u0070l\u0075\u0073\u0064\u006f\u0074":0x2a25,"\u0070l\u0075\u0073\u0065\u0071\u0071":0x2a72,"\u0070l\u0075\u0073\u0068\u0061\u0074":0x2a23,"\u0070\u006c\u0075s\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x208a,"\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s":0x00b1,"\u0070l\u0075\u0073\u006d\u006f\u0064":0x02d6,"\u0070\u006c\u0075\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff0b,"\u0070l\u0075\u0073\u0073\u0069\u006d":0x2a26,"\u0070l\u0075\u0073\u0073\u006d\u0061\u006cl":0xfe62,"\u0070\u006c\u0075\u0073\u0073\u0075\u0062\u0074\u0077\u006f":0x2a27,"\u0070\u006c\u0075s\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x207a,"\u0070\u006c\u0075\u0073\u0074\u0072\u0069\u0066":0x2a28,"\u0070\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff50,"\u0070\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33d8,"\u0070\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307d,"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u0064\u006f\u0077\u006e\u0077\u0068\u0069t\u0065":0x261f,"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u006c\u0065\u0066\u0074\u0077\u0068\u0069t\u0065":0x261c,"p\u006fi\u006e\u0074\u0069\u006e\u0067\u0069\u006e\u0064e\u0078\u0075\u0070\u0077hi\u0074\u0065":0x261d,"\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0074":0x2a15,"\u0070\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30dd,"\u0070o\u0070\u006c\u0061\u0074\u0068\u0061i":0x0e1b,"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b":0x3012,"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072k\u0066\u0061\u0063\u0065":0x3020,"\u0070\u0070\u0061\u0072\u0065\u006e":0x24ab,"\u0070\u0072\u0065\u0063\u0061\u0070\u0070\u0072\u006f\u0078":0x2ab7,"\u0070\u0072e\u0063\u0065\u0064e\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076":0x2ab9,"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u006e\u006f\u0074\u0073\u006cn\u0074\u0065\u0071\u006c":0x2ab5,"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074":0x22e8,"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073":0x227a,"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c":0x2aaf,"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079":0x227c,"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c":0x227e,"\u0070r\u0065\u0063\u0065\u0071\u0071":0x2ab3,"\u0070r\u0065\u0063\u006e\u0065\u0071":0x2ab1,"\u0070\u0072\u0065s\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e":0x211e,"p\u0072\u0069\u006d\u0065\u0064\u0062\u006c\u006d\u006f\u0064":0x0243,"\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064":0x02b9,"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x2035,"\u0070r\u006f\u0064\u0075\u0063\u0074":0x220f,"\u0070\u0072\u006f\u0066\u0073\u0075\u0072\u0066":0x2313,"\u0070\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u0076\u0065":0x2305,"\u0070\u0072\u006f\u006c\u006f\u006e\u0067\u0065\u0064\u006b\u0061\u006e\u0061":0x30fc,"\u0070r\u006f\u0070\u0065\u006c\u006c\u006fr":0x2318,"\u0070\u0072\u006fp\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074":0x2282,"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074":0x2283,"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006f\u006e":0x2237,"\u0070\u0072\u006fp\u006f\u0072\u0074\u0069\u006f\u006e\u0061\u006c":0x221d,"\u0070\u0072\u0075\u0072\u0065\u006c":0x22b0,"\u0070\u0073\u0069":0x03c8,"p\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0471,"\u0070s\u0069\u006c\u0069\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062":0x0486,"\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33b0,"\u0070\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3077,"\u0070\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d7,"\u0070\u0075\u006c\u006c\u0062\u0061\u0063\u006b":0x27d3,"\u0070\u0075n\u0063\u0074\u0075a\u0074\u0069\u006f\u006e\u0073\u0070\u0061\u0063\u0065":0x2008,"\u0070u\u0073\u0068\u006f\u0075\u0074":0x27d4,"\u0070\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b4,"\u0070\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33ba,"\u0071":0x0071,"\u0071\u0061\u0064\u0065\u0076\u0061":0x0958,"q\u0061\u0064\u006d\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a8,"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfed6,"\u0071\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed7,"q\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfed5,"\u0071a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed8,"\u0071\u0061r\u006e\u0065\u0079p\u0061\u0072\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x059f,"\u0071b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3111,"\u0071c\u0069\u0072\u0063\u006c\u0065":0x24e0,"\u0071\u0068\u006fo\u006b":0x02a0,"\u0071\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff51,"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h":0xfb47,"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077":0x05e7,"\u0071\u0070\u0061\u0072\u0065\u006e":0x24ac,"\u0071\u0070\u0072\u0069\u006d\u0065":0x2057,"q\u0075\u0061\u0072\u0074\u0065\u0072\u006e\u006f\u0074\u0065":0x2669,"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0x05bb,"\u0071u\u0065\u0073\u0074\u0065\u0071":0x225f,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e":0x003f,"\u0071\u0075e\u0073\u0074\u0069o\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x055e,"\u0071\u0075\u0065s\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006e":0x00bf,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006es\u006d\u0061\u006c\u006c":0xf7bf,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0067\u0072\u0065\u0065\u006b":0x037e,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff1f,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf73f,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c":0x0022,"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u0062\u0061\u0073\u0065":0x201e,"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u006c\u0065\u0066\u0074":0x201c,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff02,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0070\u0072\u0069\u006d\u0065":0x301e,"q\u0075\u006f\u0074\u0065db\u006cp\u0072\u0069\u006d\u0065\u0072e\u0076\u0065\u0072\u0073\u0065\u0064":0x301d,"q\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0065\u0076":0x201f,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074":0x201d,"\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t":0x2018,"\u0071\u0075\u006ft\u0065\u006c\u0065\u0066\u0074\u006d\u006f\u0064":0x0244,"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x201b,"\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074":0x2019,"q\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u006e":0x0149,"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u0062\u0061\u0073\u0065":0x201a,"q\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065":0x0027,"q\u0075o\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065m\u006f\u006e\u006f\u0073pa\u0063\u0065":0xff07,"\u0072":0x0072,"\u0072\u0041\u006e\u0067\u006c\u0065":0x27eb,"\u0072\u0042\u0072\u0061\u0063\u0065":0x2984,"\u0072\u0050\u0061\u0072\u0065\u006e":0x2986,"\u0072\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057c,"\u0072a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b0,"\u0072\u0061\u0063\u0075\u0074\u0065":0x0155,"\u0072\u0061\u0064\u0065\u0076\u0061":0x0930,"\u0072a\u0064\u0069\u0063\u0061\u006c":0x221a,"\u0072a\u0064\u0069\u0063\u0061\u006c\u0065x":0xf8e5,"\u0072\u0061\u0064\u006f\u0076\u0065\u0072\u0073\u0073q\u0075\u0061\u0072\u0065":0x33ae,"r\u0061\u0064\u006f\u0076er\u0073s\u0071\u0075\u0061\u0072\u0065d\u0073\u0071\u0075\u0061\u0072\u0065":0x33af,"\u0072a\u0064\u0073\u0071\u0075\u0061\u0072e":0x33ad,"\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab0,"\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a30,"\u0072\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3089,"\u0072\u0061\u0069\u0073\u0065\u0064":0x024d,"\u0072\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e9,"\u0072\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff97,"\u0072\u0061\u006c\u006fwe\u0072\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061l\u0069":0x09f1,"\u0072\u0061\u006did\u0064\u006c\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f0,"\u0072\u0061\u006d\u0073\u0068\u006f\u0072\u006e":0x0264,"\u0072a\u006e\u0067\u006c\u0065\u0064\u006ft":0x2992,"r\u0061\u006e\u0067\u006ced\u006fw\u006e\u007a\u0069\u0067\u007aa\u0067\u0061\u0072\u0072\u006f\u0077":0x237c,"\u0072\u0061\u0074i\u006f":0x2236,"\u0072\u0061\u0079\u0061\u006c\u0065\u0066\u006c\u0061\u006d":0xe816,"\u0072\u0062\u0061\u0067":0x27c6,"\u0072\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b":0x2998,"\u0072b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3116,"\u0072\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064":0x23ad,"\u0072b\u0072\u0061\u0063\u0065\u006d\u0069d":0x23ac,"\u0072\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064":0x23ab,"\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23a5,"\u0072\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064":0x23a6,"\u0072\u0062\u0072a\u0063\u006b\u006c\u0072\u0074\u0069\u0063\u006b":0x298e,"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072":0x298c,"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064":0x23a4,"\u0072\u0062\u0072a\u0063\u006b\u0075\u0072\u0074\u0069\u0063\u006b":0x2990,"\u0072b\u0072\u0062\u0072\u0061\u006b":0x2773,"\u0072\u0063\u0061\u0072\u006f\u006e":0x0159,"\u0072\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0157,"\u0072c\u0065\u0064\u0069\u006c\u006c\u00611":0xf81f,"\u0072c\u0069\u0072\u0063\u006c\u0065":0x24e1,"r\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0xf832,"r\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065":0x29fd,"\u0072d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0211,"\u0072\u0064\u0069a\u0067\u006f\u0076\u0066\u0064\u0069\u0061\u0067":0x292b,"\u0072\u0064\u0069\u0061\u0067\u006f\u0076\u0073\u0065a\u0072\u0072\u006f\u0077":0x2930,"\u0072\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e59,"\u0072d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e5b,"\u0072d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e5d,"r\u0065\u0063\u006f\u0072\u0064\u0072\u0069\u0067\u0068\u0074":0x2117,"\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u006d\u0061\u0072\u006b":0x203b,"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074":0x2286,"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074":0x2287,"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064":0x00ae,"\u0072\u0065\u0067i\u0073\u0074\u0065\u0072\u0073\u0061\u006e\u0073":0xf8e8,"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0073\u0065\u0072\u0069\u0066":0xf6da,"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c":0x0631,"r\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0580,"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeae,"\u0072\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308c,"r\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfead,"\u0072\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ec,"\u0072\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9a,"\u0072\u0065s\u0068\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb48,"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q":0x05e8,"\u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065":0x211f,"\u0072\u0065\u0076\u0061\u006e\u0067\u006c\u0065":0x29a3,"\u0072\u0065\u0076a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072":0x29a5,"\u0072\u0065\u0076\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c":0x22cd,"r\u0065\u0076\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074":0x29b0,"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065":0x223d,"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077":0x0597,"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074":0x2310,"\u0072e\u0076\u006e\u006d\u0069\u0064":0x2aee,"\u0072\u0066\u0062\u006f\u0077\u0074\u0069\u0065":0x29d2,"\u0072f\u0069\u0073\u0068\u0068\u006f\u006fk":0x027e,"\u0072\u0066\u0069\u0073\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076e\u0072\u0073\u0065\u0064":0x027f,"\u0072f\u0074\u0069\u006d\u0065\u0073":0x29d5,"\u0072\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09dd,"\u0072h\u0061\u0064\u0065\u0076\u0061":0x095d,"\u0072\u0068\u006f":0x03c1,"\u0072\u0068\u006fo\u006b":0x027d,"r\u0068\u006f\u006f\u006b\u0074\u0075\u0072\u006e\u0065\u0064":0x027b,"\u0072\u0068\u006f\u006fkt\u0075\u0072\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02b5,"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b":0x03f1,"\u0072\u0068\u006f\u0074\u0069\u0063\u0068\u006f\u006f\u006b\u006d\u006f\u0064":0x02de,"\u0072i\u0065u\u006c\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3271,"\u0072\u0069\u0065\u0075\u006c\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3211,"\u0072\u0069\u0065\u0075\u006c\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3263,"\u0072\u0069e\u0075\u006c\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x3140,"\u0072\u0069\u0065\u0075\u006c\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e":0x313a,"r\u0069\u0065\u0075\u006cki\u0079e\u006f\u006b\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e":0x3169,"r\u0069\u0065\u0075\u006c\u006b\u006f\u0072\u0065\u0061\u006e":0x3139,"\u0072\u0069e\u0075\u006c\u006di\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e":0x313b,"\u0072i\u0065u\u006c\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x316c,"\u0072\u0069e\u0075\u006c\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3203,"\u0072i\u0065u\u006c\u0070\u0068\u0069\u0065u\u0070\u0068k\u006f\u0072\u0065\u0061\u006e":0x313f,"\u0072\u0069e\u0075\u006c\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x313c,"r\u0069e\u0075\u006c\u0070\u0069\u0065\u0075\u0070\u0073i\u006f\u0073\u006b\u006fre\u0061\u006e":0x316b,"\u0072i\u0065u\u006c\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x313d,"\u0072i\u0065u\u006c\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e":0x313e,"\u0072\u0069\u0065\u0075\u006c\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x316a,"\u0072\u0069\u0065\u0075ly\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065a\u006e":0x316d,"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006ce\u006d\u0064\u006f\u0074":0x299d,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0065":0x231d,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0077":0x231c,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0065":0x231f,"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0071\u0072":0x299c,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0077":0x231e,"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078":0x2975,"r\u0069g\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062a\u0063\u006b\u0061\u0070pr\u006f\u0078":0x2b48,"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0062\u0073i\u006d\u0069\u006c\u0061\u0072":0x2b4c,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0064\u0069a\u006d\u006f\u006e\u0064":0x291e,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0067\u0074\u0072":0x2b43,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u006f\u006eo\u0070\u006c\u0075\u0073":0x27f4,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006fw\u0070\u006c\u0075\u0073":0x2945,"\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006fr\u0074\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2942,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0069m\u0069\u006c\u0061\u0072":0x2974,"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0073\u0075\u0070\u0073\u0065\u0074":0x2b44,"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0074\u0072i\u0061\u006e\u0067\u006c\u0065":0x21fe,"r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0078":0x2947,"\u0072\u0069\u0067h\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x290d,"\u0072\u0069g\u0068\u0074\u0063u\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077":0x2933,"\u0072\u0069\u0067h\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c":0x291c,"\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077":0x2911,"r\u0069g\u0068\u0074\u0064\u006f\u0077\u006e\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077":0x2937,"\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297d,"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006ea\u0063\u0063\u0065\u006e\u0074":0x20d1,"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u0062\u0061\u0072":0x2957,"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070\u0064\u006f\u0077\u006e":0x2964,"\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006eu\u0070\u0062\u0061\u0072":0x2953,"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006eu\u0070\u0064\u0061\u0073\u0068":0x296c,"\u0072\u0069\u0067\u0068\u0074\u0069\u006d\u0070\u006c\u0079":0x2970,"r\u0069\u0067\u0068\u0074le\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e":0x2969,"\u0072\u0069\u0067\u0068tl\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070":0x2968,"\u0072i\u0067\u0068\u0074\u006d\u006f\u006fn":0x263d,"\u0072\u0069\u0067\u0068\u0074\u006f\u0075\u0074\u0065r\u006a\u006f\u0069\u006e":0x27d6,"\u0072\u0069\u0067\u0068\u0074\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e":0x2b54,"\u0072i\u0067h\u0074\u0070\u0065\u006e\u0074a\u0067\u006fn\u0062\u006c\u0061\u0063\u006b":0x2b53,"\u0072\u0069g\u0068\u0074\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073":0x21c9,"\u0072\u0069\u0067\u0068\u0074\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x0319,"\u0072i\u0067\u0068\u0074\u0074\u0061\u0069l":0x291a,"\u0072\u0069g\u0068\u0074\u0074h\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073":0x21f6,"\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x22bf,"\u0072\u0069\u0067\u0068\u0074\u0077\u0061\u0076\u0065a\u0072\u0072\u006f\u0077":0x219d,"\u0072\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308a,"\u0072\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ea,"\u0072\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff98,"\u0072\u0069\u006e\u0067":0x02da,"\u0072\u0069\u006eg\u0031":0xf007,"\u0072\u0069\u006eg\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0325,"\u0072i\u006e\u0067\u0063\u006d\u0062":0x030a,"\u0072\u0069\u006e\u0067\u0066\u0069\u0074\u0074\u0065\u0064":0xd80d,"\u0072\u0069\u006eg\u0068\u0061\u006c\u0066\u006c\u0065\u0066\u0074":0x02bf,"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0061\u0072\u006d\u0065ni\u0061\u006e":0x0559,"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0062\u0065\u006c\u006fwc\u006d\u0062":0x031c,"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0063\u0065\u006e\u0074er\u0065\u0064":0x02d3,"\u0072\u0069\u006e\u0067\u0068\u0061\u006c\u0066\u0072\u0069\u0067\u0068\u0074":0x02be,"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0062e\u006c\u006f\u0077\u0063\u006d\u0062":0x0339,"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0063e\u006e\u0074\u0065\u0072\u0065\u0064":0x02d2,"r\u0069\u006e\u0067\u0069\u006e\u0065\u0071\u0075\u0061\u006c":0x2256,"\u0072\u0069\u006e\u0067le\u0066\u0074\u0068\u0061\u006c\u0066\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x028f,"\u0072\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066s\u0075\u0070\u0065\u0072":0x0248,"\u0072\u0069\u006e\u0067\u0070\u006c\u0075\u0073":0x2a22,"r\u0069n\u0067\u0072\u0069\u0067\u0068\u0074\u0068\u0061l\u0066\u0073\u0075\u0062no\u0073\u0070":0x02ac,"\u0072i\u006eg\u0072\u0069\u0067\u0068\u0074h\u0061\u006cf\u0073\u0075\u0070\u0065\u0072":0x0247,"\u0072\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0213,"\u0072\u0069\u0074\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3351,"\u0072\u006c\u0065":0x202b,"\u0072\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e5f,"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067":0x027c,"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064":0x027a,"\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff52,"\u0072\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065":0x23b1,"\u0072\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308d,"\u0072\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ed,"\u0072\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9b,"\u0072o\u0072\u0075\u0061\u0074\u0068\u0061i":0x0e23,"\u0072\u0070\u0061\u0072\u0065\u006e":0x24ad,"\u0072\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x239f,"\u0072p\u0061\u0072\u0065\u006e\u0067\u0074r":0x2994,"\u0072\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064":0x23a0,"\u0072\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064":0x239e,"\u0072\u0070\u0070\u006f\u006c\u0069\u006e\u0074":0x2a12,"\u0072\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09dc,"\u0072r\u0061\u0064\u0065\u0076\u0061":0x0931,"r\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5c,"\u0072r\u0061\u006e\u0067\u006c\u0065":0x298a,"\u0072\u0072\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063":0x0691,"\u0072r\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb8d,"\u0072\u0072\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073":0x2988,"\u0072\u0072v\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e0,"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x0960,"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0067\u0075\u006aa\u0072\u0061\u0074\u0069":0x0ae0,"\u0072r\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci":0x09c4,"\u0072\u0072\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061":0x0944,"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006fw\u0065\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061r\u0061\u0074\u0069":0x0ac4,"\u0072s\u006f\u006c\u0062\u0061\u0072":0x29f7,"\u0072s\u0071\u0068\u006f\u006f\u006b":0x2ace,"\u0072\u0073\u0075\u0062":0x2a65,"\u0072\u0073\u0075\u0070\u0065\u0072":0x023c,"\u0072s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f1,"\u0072t\u0062\u006c\u006f\u0063\u006b":0x2590,"\u0072\u0074\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b":0x2595,"\u0072\u0074\u0072\u0069\u006c\u0074\u0072\u0069":0x29ce,"\u0072t\u0075\u0072\u006e\u0065\u0064":0x0279,"\u0072t\u0075r\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02b4,"\u0072\u0074u\u0072\u006e\u0072t\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072":0x023e,"\u0072\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072":0x023d,"\u0072\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308b,"\u0072\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30eb,"\u0072\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff99,"r\u0075\u006c\u0065\u0064\u0065\u006c\u0061\u0079\u0065\u0064":0x29f4,"\u0072\u0075\u0070e\u0065":0x20a8,"\u0072\u0075p\u0065\u0065\u006da\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f2,"\u0072\u0075p\u0065\u0065\u0073i\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f3,"\u0072\u0075\u0070\u0069\u0061\u0068":0xf6dd,"\u0072\u0075\u0074\u0068\u0061\u0069":0x0e24,"\u0072v\u0062\u006f\u0078\u006c\u0069\u006ee":0x23b9,"\u0072v\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x098b,"\u0072\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x090b,"\u0072\u0076o\u0063\u0061\u006ci\u0063\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a8b,"\u0072v\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09c3,"r\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061":0x0943,"\u0072v\u006f\u0063\u0061\u006ci\u0063\u0076\u006f\u0077\u0065l\u0073i\u0067n\u0067\u0075\u006a\u0061\u0072\u0061\u0074i":0x0ac3,"\u0072\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29d9,"\u0073":0x0073,"\u0073a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b8,"\u0073\u0061\u0063\u0075\u0074\u0065":0x015b,"\u0073a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e65,"\u0073\u0061\u0064\u0065\u0076\u0061":0x0938,"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeba,"\u0073\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfebb,"s\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeb9,"\u0073a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfebc,"\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab8,"\u0073\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a38,"\u0073\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3055,"\u0073\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b5,"\u0073\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7b,"\u0073\u0061\u006cl\u0061\u006c\u006c\u0061h\u006f\u0075\u0061\u006c\u0061\u0079\u0068e\u0077\u0061\u0073\u0061\u006c\u006c\u0061\u006d\u0061\u0072\u0061\u0062\u0069\u0063":0xfdfa,"\u0073\u0061\u006d\u0065\u006b\u0068":0x05e1,"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077":0xfb41,"\u0073\u0061\u006e\u0073\u004c\u006d\u0069\u0072\u0072\u006f\u0072\u0065\u0064":0x2143,"s\u0061\u006e\u0073\u004c\u0074\u0075\u0072\u006e\u0065\u0064":0x2142,"\u0073\u0061\u0072\u0061\u0061\u0061\u0074\u0068\u0061\u0069":0x0e32,"\u0073\u0061\u0072\u0061\u0061\u0065\u0074\u0068\u0061\u0069":0x0e41,"\u0073a\u0072a\u0061\u0069\u006d\u0061\u0069m\u0061\u006ca\u0069\u0074\u0068\u0061\u0069":0x0e44,"\u0073\u0061\u0072\u0061\u0061\u0069\u006d\u0061\u0069\u006d\u0075\u0061n\u0074\u0068\u0061\u0069":0x0e43,"\u0073\u0061\u0072\u0061\u0061\u006d\u0074\u0068\u0061\u0069":0x0e33,"\u0073a\u0072\u0061\u0061\u0074\u0068\u0061i":0x0e30,"\u0073a\u0072\u0061\u0065\u0074\u0068\u0061i":0x0e40,"\u0073\u0061\u0072\u0061\u0069\u0069\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf886,"\u0073\u0061\u0072\u0061\u0069\u0069\u0074\u0068\u0061\u0069":0x0e35,"\u0073\u0061\u0072\u0061\u0069\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf885,"\u0073a\u0072\u0061\u0069\u0074\u0068\u0061i":0x0e34,"\u0073a\u0072\u0061\u006f\u0074\u0068\u0061i":0x0e42,"\u0073a\u0072a\u0075\u0065\u0065\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf888,"s\u0061\u0072\u0061\u0075\u0065\u0065\u0074\u0068\u0061\u0069":0x0e37,"\u0073\u0061\u0072\u0061\u0075\u0065\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf887,"\u0073\u0061\u0072\u0061\u0075\u0065\u0074\u0068\u0061\u0069":0x0e36,"\u0073a\u0072\u0061\u0075\u0074\u0068\u0061i":0x0e38,"\u0073\u0061\u0072\u0061\u0075\u0075\u0074\u0068\u0061\u0069":0x0e39,"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s":0x22a8,"\u0073b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3119,"\u0073\u0063\u0061\u0072\u006f\u006e":0x0161,"\u0073c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e67,"\u0073\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x015f,"\u0073c\u0065\u0064\u0069\u006c\u006c\u00611":0xf817,"\u0073\u0063\u0068w\u0061":0x0259,"\u0073\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d9,"s\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04db,"\u0073c\u0068\u0077\u0061\u0068\u006f\u006fk":0x025a,"\u0073c\u0069\u0072\u0063\u006c\u0065":0x24e2,"s\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x015d,"\u0073\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0219,"\u0073\u0063\u0070\u006f\u006c\u0069\u006e\u0074":0x2a13,"\u0073c\u0072\u0075\u0070\u006c\u0065":0x2108,"\u0073\u0063\u0075\u0072\u0065\u006c":0x22b1,"\u0073\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e61,"\u0073d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e63,"\u0073d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074":0x1e69,"\u0073e\u0061g\u0075\u006c\u006c\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x033c,"\u0073\u0065\u0061\u0067\u0075\u006c\u006c\u0073\u0075b\u006e\u006f\u0073\u0070":0x02af,"\u0073\u0065\u0063\u006f\u006e\u0064":0x2033,"\u0073\u0065\u0063\u006f\u006e\u0064\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065":0x02ca,"\u0073e\u0063\u0074\u0069\u006f\u006e":0x00a7,"\u0073e\u0065n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb2,"\u0073\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeb3,"\u0073\u0065\u0065n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeb1,"\u0073\u0065e\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb4,"\u0073\u0065\u0065\u006ewi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcb0,"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077":0x05b6,"\u0073\u0065\u0067\u006f\u006c\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0592,"s\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057d,"\u0073\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305b,"\u0073\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bb,"\u0073\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7e,"\u0073e\u006d\u0069\u0063\u006f\u006c\u006fn":0x003b,"\u0073e\u006di\u0063\u006f\u006c\u006f\u006em\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff1b,"\u0073\u0065\u006d\u0069\u0063\u006f\u006c\u006f\u006es\u006d\u0061\u006c\u006c":0xfe54,"\u0073e\u006di\u0076\u006f\u0069\u0063\u0065d\u006d\u0061r\u006b\u006b\u0061\u006e\u0061":0x309c,"s\u0065\u006d\u0069\u0076\u006f\u0069c\u0065\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006ea\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068":0xff9f,"s\u0065\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x3322,"s\u0065\u006e\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3323,"s\u0065\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077":0x292d,"s\u0065\u0072\u0076\u0069\u0063\u0065\u006d\u0061\u0072\u006b":0x2120,"\u0073\u0065\u0074\u006d\u0069\u006e\u0075\u0073":0x29f5,"\u0073\u0065\u0076e\u006e":0x0037,"\u0073\u0065\u0076e\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ed,"\u0073e\u0076\u0065\u006e\u0064\u0065\u0076a":0x096d,"\u0073\u0065\u0076e\u006e\u0065\u0069\u0067\u0068\u0074\u0068\u0073":0x215e,"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aed,"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6d,"\u0073\u0065\u0076\u0065\u006e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3027,"s\u0065\u0076\u0065\u006eid\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e":0x3226,"\u0073\u0065\u0076\u0065\u006e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2087,"\u0073\u0065\u0076\u0065\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff17,"\u0073\u0065\u0076\u0065\u006e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf737,"\u0073\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x247a,"s\u0065\u0076\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x248e,"\u0073\u0065\u0076e\u006e\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f7,"\u0073\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2176,"\u0073\u0065\u0076\u0065\u006e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2077,"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x2470,"\u0073\u0065\u0076\u0065\u006e\u0074\u0065\u0065\u006ep\u0061\u0072\u0065\u006e":0x2484,"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2498,"\u0073e\u0076\u0065\u006e\u0074\u0068\u0061i":0x0e57,"s\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0577,"\u0073\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09b6,"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x0651,"\u0073\u0068\u0061\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061\u0061r\u0061\u0062\u0069\u0063":0xfc61,"s\u0068a\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063":0xfc5e,"\u0073\u0068\u0061\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061\u0061r\u0061\u0062\u0069\u0063":0xfc60,"\u0073\u0068a\u0064\u0064\u0061h\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c":0xfe7d,"\u0073\u0068\u0061\u0064\u0064\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064":0xfe7c,"\u0073\u0068\u0061\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061\u0061r\u0061\u0062\u0069\u0063":0xfc62,"s\u0068a\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063":0xfc5f,"\u0073h\u0061\u0064\u0064\u0061\u006c\u006fw":0xe825,"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077":0xe829,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0064\u0061\u006d\u006da\u006d\u0065\u0064\u0069\u0061\u006c":0xfcf3,"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077":0xe82b,"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0066\u0061t\u0068\u0061\u006c\u006f\u0077":0xe828,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u006d\u0065\u0064\u0069\u0061\u006c":0xfcf2,"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066a\u0074\u0068\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xe818,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u0074\u0061\u006e\u006c\u006f\u0077":0xe82a,"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077":0xe82c,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u006b\u0061\u0073\u0072a\u006d\u0065\u0064\u0069\u0061\u006c":0xfcf4,"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077":0xe82d,"\u0073\u0068\u0061d\u0065":0x2592,"\u0073\u0068\u0061\u0064\u0065\u0031":0xf822,"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074":0x2591,"\u0073h\u0061\u0064\u0065\u0076\u0061":0x0936,"s\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab6,"s\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a36,"\u0073\u0068a\u006c\u0073\u0068e\u006c\u0065\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x0593,"\u0073\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3115,"\u0073\u0068e\u0065\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb6,"\u0073h\u0065e\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfeb7,"\u0073\u0068\u0065\u0065\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeb5,"\u0073\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeb8,"s\u0068e\u0065\u006e\u0077\u0069\u0074\u0068\u006d\u0065e\u006d\u0069\u006e\u0069ti\u0061\u006c":0xfd30,"\u0073\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e3,"\u0073\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04bb,"\u0073h\u0069\u0066\u0074\u006c\u0065\u0066t":0x21b0,"\u0073\u0068\u0069\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x21b1,"s\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03ed,"\u0073\u0068\u0069\u006e":0x05e9,"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068":0xfb49,"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074":0xfb2c,"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077":0xfb2d,"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05c1,"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074":0xfb2a,"\u0073\u0068\u006fo\u006b":0x0282,"\u0073\u0068\u006f\u0072\u0074\u0064\u006f\u0077\u006e\u0074\u0061\u0063\u006b":0x2adf,"\u0073\u0068\u006f\u0072\u0074\u006c\u0065\u0066\u0074\u0074\u0061\u0063\u006b":0x2ade,"\u0073h\u006f\u0072\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2944,"s\u0068\u006f\u0072\u0074\u0075\u0070\u0074\u0061\u0063\u006b":0x2ae0,"\u0073h\u0075\u0066\u0066\u006c\u0065":0x29e2,"\u0073\u0069\u0067m\u0061":0x03c3,"\u0073\u0069\u0067\u006d\u0061\u0031":0x03c2,"\u0073\u0069\u0067\u006dal\u0075\u006e\u0061\u0074\u0065\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065e\u006b":0x03f2,"\u0073\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3057,"\u0073\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b7,"\u0073\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7c,"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05bd,"\u0073\u0069\u006dg\u0045":0x2aa0,"\u0073\u0069\u006d\u0067\u0074\u0072":0x2a9e,"\u0073i\u006d\u0069\u006c\u0061\u0072":0x223c,"\u0073\u0069m\u0069\u006c\u0061r\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2b49,"\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077":0x2972,"\u0073\u0069\u006dl\u0045":0x2a9f,"\u0073i\u006d\u006c\u0065\u0073\u0073":0x2a9d,"s\u0069\u006d\u006d\u0069\u006e\u0075\u0073\u0073\u0069\u006d":0x2a6c,"\u0073i\u006d\u006e\u0065\u0071\u0071":0x2246,"\u0073i\u006d\u0070\u006c\u0075\u0073":0x2a24,"\u0073\u0069\u006d\u0072\u0064\u006f\u0074\u0073":0x2a6b,"\u0073\u0069\u006e\u0065\u0077\u0061\u0076\u0065":0x223f,"\u0073\u0069\u006f\u0073\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3274,"\u0073\u0069o\u0073\u0061\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3214,"\u0073i\u006fs\u0063\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x317e,"\u0073\u0069o\u0073\u0063\u0069r\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3266,"\u0073\u0069o\u0073\u006b\u0069y\u0065\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e":0x317a,"\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3145,"\u0073i\u006fs\u006e\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x317b,"\u0073i\u006fs\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3206,"\u0073i\u006fs\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x317d,"\u0073\u0069o\u0073\u0074\u0069k\u0065\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e":0x317c,"\u0073\u0069\u0078":0x0036,"\u0073\u0069\u0078\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ec,"\u0073i\u0078\u0064\u0065\u0076\u0061":0x096c,"s\u0069\u0078\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aec,"s\u0069\u0078\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6c,"s\u0069\u0078\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3026,"\u0073\u0069\u0078\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3225,"s\u0069\u0078\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2086,"\u0073\u0069\u0078m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff16,"s\u0069\u0078\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf736,"\u0073\u0069\u0078\u0070\u0061\u0072\u0065\u006e":0x2479,"\u0073\u0069\u0078\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065":0x2006,"\u0073i\u0078\u0070\u0065\u0072\u0069\u006fd":0x248d,"\u0073\u0069\u0078\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f6,"\u0073\u0069\u0078\u0072\u006f\u006d\u0061\u006e":0x2175,"s\u0069\u0078\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2076,"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x246f,"\u0073\u0069\u0078\u0074\u0065\u0065n\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079\u0064\u0065\u006e\u006f\u006di\u006e\u0061\u0074\u006f\u0072\u0062\u0065n\u0067\u0061\u006c\u0069":0x09f9,"\u0073\u0069\u0078t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2483,"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2497,"\u0073i\u0078\u0074\u0068\u0061\u0069":0x0e56,"\u0073\u006c\u0061s\u0068":0x002f,"\u0073\u006c\u0061\u0073\u0068\u006c\u006f\u006e\u0067\u006e\u006f\u0073\u0070":0x02ab,"\u0073\u006c\u0061\u0073\u0068\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff0f,"\u0073\u006c\u0061\u0073\u0068\u0073\u0068\u006f\u0072t\u006e\u006f\u0073\u0070":0x02aa,"\u0073\u006c\u006f\u006e\u0067\u0064\u006f\u0074\u0061c\u0063\u0065\u006e\u0074":0x1e9b,"\u0073l\u0075\u0072\u0061\u0062\u006f\u0076e":0x2322,"\u0073\u006d\u0061\u006clb\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065f\u0074":0x25c2,"\u0073\u006d\u0061ll\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x25b8,"\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0067\u0068m\u0061\u0064\u0064\u0061":0x06e4,"\u0073m\u0061\u006c\u006c\u0069\u006e":0x220a,"\u0073m\u0061\u006c\u006c\u006e\u0069":0x220d,"\u0073\u006d\u0061\u0073\u0068\u0074\u0069\u006d\u0065\u0073":0x2a33,"\u0073\u006d\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x2b29,"\u0073\u006d\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b2a,"\u0073\u006d\u0065\u0070\u0061\u0072\u0073\u006c":0x29e4,"\u0073\u006d\u0069l\u0065":0x2323,"\u0073m\u0069\u006c\u0065\u0066\u0061\u0063e":0x263a,"\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff53,"\u0073\u006d\u0074":0x2aaa,"\u0073\u006d\u0074\u0065":0x2aac,"s\u006d\u0077\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072":0x2b52,"\u0073\u006d\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b2b,"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077":0x05c3,"\u0073\u006f\u0066\u0074\u0068\u0079\u0070\u0068\u0065\u006e":0x00ad,"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x044c,"\u0073\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305d,"\u0073\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bd,"\u0073\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7f,"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062":0x0338,"\u0073\u006f\u006c\u0069du\u0073\u0073\u0068\u006f\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063m\u0062":0x0337,"\u0073\u006f\u0072\u0075\u0073\u0069\u0074\u0068\u0061\u0069":0x0e29,"\u0073\u006f\u0073\u0061\u006c\u0061\u0074\u0068\u0061\u0069":0x0e28,"\u0073\u006f\u0073\u006f\u0074\u0068\u0061\u0069":0x0e0b,"\u0073o\u0073\u0075\u0061\u0074\u0068\u0061i":0x0e2a,"\u0073\u0070\u0061c\u0065":0x0020,"\u0073\u0070\u0061d\u0065":0x2660,"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065":0x2664,"\u0073\u0070\u0061\u0072\u0065\u006e":0x24ae,"\u0073\u0070\u0068\u0065\u0072\u0069\u0063\u0061\u006ca\u006e\u0067\u006c\u0065":0x2222,"\u0073\u0070h\u0065\u0072\u0069c\u0061\u006c\u0061\u006e\u0067\u006c\u0065\u0075\u0070":0x29a1,"\u0073\u0071\u0069n\u0074":0x2a16,"\u0073q\u006c\u006f\u007a\u0065\u006e\u0067e":0x2311,"\u0073\u0071\u0072\u0074\u0062\u006f\u0074\u0074\u006f\u006d":0x23b7,"s\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071":0x22e4,"s\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071":0x22e5,"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x033b,"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u006f\u0074b\u006c\u0061\u0063\u006b":0x2b13,"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u0063":0x33c4,"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u006d":0x339d,"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c":0x25a9,"\u0073q\u0075\u0061\u0072\u0065\u0064\u006ft":0x22a1,"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c":0x25a4,"s\u0071\u0075\u0061\u0072\u0065\u0069\u006d\u0061\u0067\u0065":0x228f,"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u0067":0x338f,"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u006d":0x339e,"\u0073q\u0075a\u0072\u0065\u006b\u006d\u0063\u0061\u0070\u0069\u0074\u0061\u006c":0x33ce,"\u0073q\u0075a\u0072\u0065\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b":0x25e7,"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006c\u0062\u006c\u0061\u0063\u006b":0x2b15,"\u0073\u0071\u0075a\u0072\u0065\u006c\u006c\u0071\u0075\u0061\u0064":0x25f1,"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006e":0x33d1,"\u0073q\u0075\u0061\u0072\u0065\u006c\u006fg":0x33d2,"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0072\u0062\u006c\u0061\u0063\u006b":0x25ea,"\u0073\u0071\u0075a\u0072\u0065\u006c\u0072\u0071\u0075\u0061\u0064":0x25f2,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0067":0x338e,"\u0073q\u0075\u0061\u0072\u0065\u006d\u0069l":0x33d5,"s\u0071\u0075\u0061\u0072\u0065\u006d\u0069\u006e\u0075\u0073":0x229f,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u006d":0x339c,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0073\u0071u\u0061\u0072\u0065\u0064":0x33a1,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079":0x22a0,"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0069g\u0069\u006e\u0061\u006c":0x2290,"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c":0x25a6,"\u0073\u0071\u0075\u0061\u0072\u0065\u0070\u006c\u0075\u0073":0x229e,"\u0073\u0071u\u0061\u0072\u0065r\u0069\u0067\u0068\u0074\u0062\u006c\u0061\u0063\u006b":0x25e8,"\u0073\u0071\u0075\u0061\u0072\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x02ae,"\u0073\u0071\u0075\u0061\u0072\u0065\u0074\u006f\u0070b\u006c\u0061\u0063\u006b":0x2b12,"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u006c\u0062\u006c\u0061\u0063\u006b":0x25e9,"\u0073\u0071\u0075a\u0072\u0065\u0075\u006c\u0071\u0075\u0061\u0064":0x25f0,"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c":0x25a7,"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c":0x25a8,"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u0072\u0062\u006c\u0061\u0063\u006b":0x2b14,"\u0073\u0071\u0075a\u0072\u0065\u0075\u0072\u0071\u0075\u0061\u0064":0x25f3,"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c":0x25a5,"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k":0x25a3,"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074":0x21ad,"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x21dd,"\u0073q\u0075\u006f\u0076\u0061\u006c":0x25a2,"\u0073\u0072\u0073\u0071\u0075\u0061\u0072\u0065":0x33db,"\u0073\u0073\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09b7,"\u0073s\u0061\u0064\u0065\u0076\u0061":0x0937,"s\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab7,"\u0073\u0073a\u006e\u0067\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3149,"\u0073\u0073a\u006e\u0067\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x3185,"\u0073\u0073a\u006e\u0067\u0069e\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e":0x3180,"\u0073\u0073\u0061\u006e\u0067\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e":0x3132,"\u0073\u0073a\u006e\u0067\u006ei\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3165,"\u0073\u0073a\u006e\u0067\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3143,"\u0073s\u0061n\u0067\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3146,"\u0073\u0073\u0061\u006e\u0067\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x3138,"\u0073\u0073\u006c\u0061\u0073\u0068":0x2afd,"\u0073s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f2,"\u0073\u0074":0xfb06,"\u0073\u0074\u0061\u0072":0x22c6,"\u0073\u0074\u0061\u0072\u0065\u0071":0x225b,"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067":0x00a3,"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xffe1,"\u0073\u0074\u0072n\u0073":0x23e4,"s\u0074r\u006f\u006b\u0065\u006c\u006f\u006e\u0067\u006fv\u0065\u0072\u006c\u0061yc\u006d\u0062":0x0336,"s\u0074\u0072\u006f\u006bes\u0068o\u0072\u0074\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062":0x0335,"\u0073u\u0062\u0065\u0064\u006f\u0074":0x2ac3,"\u0073u\u0062\u006d\u0075\u006c\u0074":0x2ac1,"\u0073u\u0062\u0072\u0061\u0072\u0072":0x2979,"\u0073\u0075\u0062s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078":0x2ac9,"\u0073\u0075\u0062\u0073\u0065\u0074\u0063\u0069\u0072\u0063":0x27c3,"\u0073u\u0062\u0073\u0065\u0074\u0064\u0062l":0x22d0,"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c":0x2ac5,"\u0073u\u0062\u0073\u0065\u0074\u0064\u006ft":0x2abd,"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c":0x228a,"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064b\u006c\u0065\u0071\u006c":0x2acb,"\u0073\u0075\u0062\u0073\u0065\u0074\u0070\u006c\u0075\u0073":0x2abf,"\u0073\u0075\u0062\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c":0x2291,"\u0073\u0075\u0062\u0073\u0069\u006d":0x2ac7,"\u0073\u0075\u0062\u0073\u0075\u0062":0x2ad5,"\u0073\u0075\u0062\u0073\u0075\u0070":0x2ad3,"\u0073\u0075\u0063\u0063\u0061\u0070\u0070\u0072\u006f\u0078":0x2ab8,"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073":0x227b,"\u0073u\u0063\u0063\u0065\u0071\u0071":0x2ab4,"\u0073u\u0063\u0063\u006e\u0065\u0071":0x2ab2,"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074":0x220b,"\u0073\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3059,"\u0073\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b9,"\u0073\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7d,"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x0652,"\u0073\u0075\u006b\u0075\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe7e,"\u0073\u0075\u006b\u0075\u006e\u006c\u006f\u0077":0xe822,"s\u0075\u006b\u0075\u006e\u006d\u0065\u0064\u0069\u0061\u006c":0xfe7f,"\u0073\u0075\u006bu\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe834,"\u0073u\u006d\u0062\u006f\u0074\u0074\u006fm":0x23b3,"\u0073\u0075\u006d\u0069\u006e\u0074":0x2a0b,"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn":0x2211,"\u0073\u0075\u006d\u0074\u006f\u0070":0x23b2,"\u0073\u0075\u006e":0x263c,"\u0073u\u0070\u0064\u0073\u0075\u0062":0x2ad8,"\u0073u\u0070\u0065\u0064\u006f\u0074":0x2ac4,"\u0073u\u0070e\u0072\u0073\u0063\u0072\u0069\u0070\u0074\u0061\u006c\u0065\u0066":0x0670,"s\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u0064\u0062\u006c":0x22d1,"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c":0x2ac6,"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x228b,"\u0073\u0075\u0070\u0065rs\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c":0x2acc,"\u0073u\u0070e\u0072\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c":0x2292,"\u0073u\u0070\u0068\u0073\u006f\u006c":0x27c9,"\u0073u\u0070\u0068\u0073\u0075\u0062":0x2ad7,"\u0073u\u0070\u006c\u0061\u0072\u0072":0x297b,"\u0073u\u0070\u006d\u0075\u006c\u0074":0x2ac2,"\u0073\u0075\u0070s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078":0x2aca,"\u0073\u0075\u0070\u0073\u0065\u0074\u0063\u0069\u0072\u0063":0x27c4,"\u0073u\u0070\u0073\u0065\u0074\u0064\u006ft":0x2abe,"\u0073\u0075\u0070\u0073\u0065\u0074\u0070\u006c\u0075\u0073":0x2ac0,"\u0073\u0075\u0070\u0073\u0069\u006d":0x2ac8,"\u0073\u0075\u0070\u0073\u0075\u0062":0x2ad4,"\u0073\u0075\u0070\u0073\u0075\u0070":0x2ad6,"\u0073\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33dc,"\u0073y\u006fu\u0077\u0061\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x337c,"\u0074":0x0074,"\u0074a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09a4,"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e":0x22a4,"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074":0x22a3,"\u0074\u0061\u0064\u0065\u0076\u0061":0x0924,"\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa4,"\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a24,"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c":0x0637,"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfec2,"\u0074\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec3,"\u0074\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305f,"t\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfec1,"\u0074a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec4,"\u0074\u0061i\u0073\u0079\u006fu\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x337d,"\u0074\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bf,"\u0074\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff80,"\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067":0x2afe,"\u0074a\u0074\u0077\u0065\u0065\u006c\u0077\u0069\u0074\u0068\u0066\u0061t\u0068\u0061\u0074\u0061\u006e\u0061\u0062\u006f\u0076\u0065":0xfe71,"\u0074\u0061\u0075":0x03c4,"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h":0xfb4a,"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w":0x05ea,"\u0074\u0062\u0061\u0072":0x0167,"\u0074b\u006f\u0070\u006f\u006d\u006f\u0066o":0x310a,"\u0074\u0063\u0061\u0072\u006f\u006e":0x0165,"\u0074c\u0061\u0072\u006f\u006e\u0031":0xf815,"\u0074\u0063\u0063\u0075\u0072\u006c":0x02a8,"\u0074\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0163,"\u0074c\u0065\u0064\u0069\u006c\u006c\u00611":0xf819,"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063":0x0686,"\u0074\u0063h\u0065\u0068\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb7b,"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfb7c,"\u0074\u0063\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb7a,"\u0074\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb7d,"\u0074c\u0069\u0072\u0063\u006c\u0065":0x24e3,"\u0074\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e71,"\u0074d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e97,"\u0074\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e6b,"\u0074d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e6d,"\u0074\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ad,"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe96,"\u0074\u0065\u0068\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfca2,"t\u0065h\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061t\u0065\u0064\u0061\u0072ab\u0069\u0063":0xfc0c,"\u0074\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe97,"\u0074\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3066,"t\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe95,"t\u0065h\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfca1,"t\u0065\u0068\u006a\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc0b,"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x0629,"t\u0065\u0068\u006d\u0061rb\u0075t\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfe94,"\u0074e\u0068m\u0061\u0072\u0062\u0075\u0074a\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfe93,"\u0074e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe98,"t\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfca4,"t\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc0e,"\u0074e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfc73,"\u0074\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc74,"\u0074\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xe814,"\u0074e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfca3,"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc75,"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc10,"\u0074\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c6,"\u0074\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff83,"\u0074e\u006c\u0065\u0070\u0068\u006f\u006ee":0x2121,"\u0074\u0065\u006c\u0069sh\u0061\u0067\u0065\u0064\u006f\u006c\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a0,"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a9,"\u0074\u0065\u006e\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3229,"\u0074\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x247d,"\u0074e\u006e\u0070\u0065\u0072\u0069\u006fd":0x2491,"\u0074\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2179,"\u0074\u0065\u0073\u0068":0x02a7,"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h":0xfb38,"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w":0x05d8,"\u0074\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b5,"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077":0x059b,"\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a5,"\u0074h\u0061\u0064\u0065\u0076\u0061":0x0925,"t\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa5,"t\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a25,"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0x0630,"\u0074h\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeac,"\u0074\u0068\u0061l\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeab,"\u0074\u0068\u0061\u006eth\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069":0xf898,"\u0074\u0068\u0061nt\u0068\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069":0xf897,"\u0074h\u0061n\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0074\u0068\u0061\u0069":0x0e4c,"\u0074h\u0061\u006e\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf896,"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063":0x062b,"\u0074h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe9a,"\u0074\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe9b,"\u0074\u0068\u0065h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe99,"\u0074\u0068e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe9c,"\u0074\u0068\u0065\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfca6,"t\u0068e\u0068\u0077\u0069\u0074\u0068\u006d\u0065\u0065m\u0069\u0073\u006f\u006cat\u0065\u0064":0xfc12,"\u0074h\u0065\u0072\u0065\u0066\u006f\u0072e":0x2234,"\u0074h\u0065\u0072\u006d\u006f\u0064":0x29e7,"\u0074\u0068\u0065t\u0061":0x03b8,"\u0074\u0068\u0065\u0074\u0061\u0031":0x03d1,"t\u0068i\u0065\u0075\u0074\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x3279,"\u0074\u0068\u0069\u0065ut\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3219,"\u0074\u0068\u0069\u0065ut\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326b,"\u0074\u0068\u0069\u0065\u0075\u0074\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314c,"\u0074h\u0069e\u0075\u0074\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320b,"\u0074h\u0069\u006e\u0073\u0070\u0061\u0063e":0x2009,"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x246c,"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2480,"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x2494,"\u0074\u0068\u006f\u006e\u0061\u006e\u0067\u006d\u006f\u006e\u0074\u0068o\u0074\u0068\u0061\u0069":0x0e11,"\u0074\u0068\u006fo\u006b":0x01ad,"\u0074\u0068\u006f\u0070\u0068\u0075\u0074\u0068\u0061o\u0074\u0068\u0061\u0069":0x0e12,"\u0074\u0068\u006fr\u006e":0x00fe,"\u0074\u0068\u006f\u0074\u0068\u0061\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e17,"t\u0068\u006f\u0074\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e10,"\u0074\u0068\u006ft\u0068\u006f\u006e\u0067\u0074\u0068\u0061\u0069":0x0e18,"\u0074\u0068\u006ft\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069":0x0e16,"\u0074\u0068o\u0075\u0073\u0061n\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0482,"\u0074h\u006f\u0075\u0073\u0061\u006e\u0064\u0073\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062\u0069\u0063":0x066c,"\u0074\u0068\u0072e\u0065":0x0033,"\u0074\u0068\u0072e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e9,"t\u0068\u0072\u0065\u0065\u0064\u0061\u006e\u0067\u006c\u0065":0x27c0,"\u0074h\u0072\u0065\u0065\u0064\u0065\u0076a":0x0969,"\u0074\u0068\u0072\u0065\u0065\u0064\u006f\u0074\u0063\u006f\u006c\u006f\u006e":0x2af6,"\u0074\u0068\u0072e\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073":0x215c,"t\u0068\u0072\u0065\u0065\u0066\u0069\u0066\u0074\u0068\u0073":0x2157,"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae9,"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a69,"\u0074\u0068\u0072\u0065\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3023,"t\u0068\u0072\u0065\u0065id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e":0x3222,"\u0074\u0068\u0072\u0065\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2083,"\u0074\u0068\u0072\u0065\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff13,"t\u0068\u0072\u0065\u0065nu\u006de\u0072\u0061\u0074\u006f\u0072b\u0065\u006e\u0067\u0061\u006c\u0069":0x09f6,"\u0074\u0068\u0072\u0065\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf733,"\u0074\u0068\u0072\u0065\u0065\u0070\u0061\u0072\u0065\u006e":0x2476,"\u0074h\u0072e\u0065\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065":0x2004,"t\u0068\u0072\u0065\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x248a,"\u0074\u0068\u0072e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f3,"\u0074\u0068\u0072\u0065\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0073":0x00be,"\u0074\u0068\u0072\u0065eq\u0075\u0061\u0072\u0074\u0065\u0072\u0073\u0065\u006d\u0064\u0061\u0073\u0068":0xf6de,"\u0074\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e":0x2172,"\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x00b3,"\u0074h\u0072\u0065\u0065\u0074\u0068\u0061i":0x0e53,"\u0074\u0068\u0072\u0065\u0065\u0075\u006e\u0064\u0065\u0072\u0064\u006f\u0074":0x20e8,"\u0074h\u007a\u0073\u0071\u0075\u0061\u0072e":0x3394,"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t":0x2040,"\u0074\u0069\u0065\u0069\u006e\u0066\u0074\u0079":0x29dd,"\u0074\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3061,"\u0074\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c1,"\u0074\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff81,"\u0074\u0069\u006b\u0065ut\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3270,"\u0074i\u006be\u0075\u0074\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x3210,"\u0074i\u006be\u0075\u0074\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3262,"\u0074\u0069\u006be\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e":0x3137,"\u0074\u0069\u006b\u0065\u0075\u0074\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3202,"\u0074\u0069\u006cd\u0065":0x02dc,"\u0074\u0069\u006c\u0064\u0065\u0031":0xf004,"\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0330,"\u0074\u0069\u006c\u0064\u0065\u0063\u006d\u0062":0x0303,"\u0074\u0069\u006c\u0064\u0065\u0064\u006f\u0075\u0062l\u0065\u0063\u006d\u0062":0x0360,"\u0074i\u006c\u0064\u0065\u006e\u006f\u0073p":0x0276,"\u0074i\u006cd\u0065\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063\u006d\u0062":0x0334,"\u0074\u0069l\u0064\u0065\u0076e\u0072\u0074\u0069\u0063\u0061\u006c\u0063\u006d\u0062":0x033e,"\u0074\u0069\u006d\u0065\u0073\u0062\u0061\u0072":0x2a31,"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0596,"\u0074\u0069\u0070\u0070\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a70,"\u0074\u0069t\u006c\u006f\u0063y\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062":0x0483,"\u0074\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057f,"\u0074\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e6f,"\u0074\u006d\u0069\u006e\u0075\u0073":0x29ff,"\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff54,"\u0074\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0569,"\u0074\u006f\u0065\u0061":0x2928,"\u0074\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3068,"\u0074\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c8,"\u0074\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff84,"\u0074\u006f\u006e\u0061":0x2927,"\u0074\u006f\u006e\u0065ba\u0072\u0065\u0078\u0074\u0072\u0061\u0068\u0069\u0067\u0068\u006d\u006f\u0064":0x02e5,"\u0074o\u006ee\u0062\u0061\u0072\u0065\u0078t\u0072\u0061l\u006f\u0077\u006d\u006f\u0064":0x02e9,"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u0068\u0069g\u0068\u006d\u006f\u0064":0x02e6,"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006c\u006f\u0077\u006d\u006f\u0064":0x02e8,"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006d\u0069\u0064\u006d\u006f\u0064":0x02e7,"\u0074\u006f\u006e\u0065\u0066\u0069\u0076\u0065":0x01bd,"\u0074o\u006e\u0065\u0073\u0069\u0078":0x0185,"\u0074o\u006e\u0065\u0074\u0077\u006f":0x01a8,"\u0074\u006f\u006eo\u0073":0x0384,"\u0074o\u006e\u0073\u0071\u0075\u0061\u0072e":0x3327,"t\u006f\u0070\u0061\u0074\u0061\u006b\u0074\u0068\u0061\u0069":0x0e0f,"\u0074\u006f\u0070\u0062\u006f\u0074":0x2336,"\u0074\u006f\u0070\u0063\u0069\u0072":0x2af1,"\u0074o\u0070\u0066\u006f\u0072\u006b":0x2ada,"\u0074\u006f\u0070\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065":0x25e0,"\u0074o\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x3014,"\u0074\u006fr\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0073ma\u006c\u006c":0xfe5d,"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072a\u0063k\u0065\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe39,"\u0074o\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006cl\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068t":0x3015,"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068e\u006c\u006c\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c":0xfe5e,"\u0074\u006f\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe3a,"\u0074\u006f\u0073\u0061":0x2929,"\u0074o\u0074\u0061\u006f\u0074\u0068\u0061i":0x0e15,"\u0074\u006f\u0077\u0061":0x292a,"\u0074\u0070\u0061l\u0061\u0074\u0061\u006c\u0068\u006f\u006f\u006b":0x01ab,"\u0074\u0070\u0061\u0072\u0065\u006e":0x24af,"\u0074\u0070\u006cu\u0073":0x29fe,"\u0074r\u0061\u0064\u0065\u006d\u0061\u0072k":0x2122,"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006b\u0073\u0061\u006e\u0073":0xf8ea,"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006bs\u0065\u0072\u0069\u0066":0xf6db,"\u0074r\u0061\u0070\u0065\u007a\u0069\u0075m":0x23e2,"\u0074\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b":0x0288,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0062u\u006c\u006c\u0065\u0074":0x2023,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0063\u0064\u006f\u0074":0x25ec,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074b\u006c\u0061\u0063\u006b":0x25ed,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c":0x22b4,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006d\u0069\u006e\u0075\u0073":0x2a3a,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u006f\u0064\u006f\u0074":0x29ca,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0070\u006c\u0075\u0073":0x2a39,"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0062\u006c\u0061\u0063\u006b":0x25ee,"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c":0x22b5,"\u0074r\u0069\u0061\u006e\u0067\u006c\u0065s":0x29cc,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073e\u0072\u0069\u0066\u0073":0x29cd,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0074\u0069\u006d\u0065\u0073":0x2a3b,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072":0x29cb,"\u0074\u0072\u0069\u0070\u006c\u0065\u0070\u006c\u0075\u0073":0x29fb,"\u0074r\u0070\u0072\u0069\u006d\u0065":0x2034,"\u0074r\u0073\u006c\u0061\u0073\u0068":0x2afb,"\u0074\u0073":0x02a6,"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068":0xfb46,"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0446,"\u0074s\u0065\u0072\u0065\u0031\u0032":0x05b5,"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x045b,"\u0074s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f3,"\u0074\u0074\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099f,"\u0074t\u0061\u0064\u0065\u0076\u0061":0x091f,"t\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9f,"t\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1f,"\u0074t\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb67,"\u0074\u0074\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb68,"\u0074\u0074e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb69,"t\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a0,"\u0074\u0074\u0068\u0061\u0064\u0065\u0076\u0061":0x0920,"\u0074\u0074\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa0,"\u0074\u0074\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a20,"\u0074t\u0075\u0072\u006e\u0065\u0064":0x0287,"\u0074\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3064,"\u0074\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c4,"\u0074\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff82,"\u0074u\u0072\u006e\u0061\u006e\u0067\u006ce":0x29a2,"\u0074\u0075\u0072\u006e\u0065\u0064\u0069\u006f\u0074\u0061":0x2129,"\u0074u\u0072\u006e\u0065\u0064\u006e\u006ft":0x2319,"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074":0x22a2,"\u0074u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3063,"\u0074u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c3,"\u0074u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6f,"\u0074\u0077\u0065l\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x246b,"t\u0077\u0065\u006c\u0076\u0065\u0070\u0061\u0072\u0065\u006e":0x247f,"\u0074\u0077\u0065l\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x2493,"t\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e":0x217b,"t\u0077\u0065\u006c\u0076\u0065\u0075\u0064\u0061\u0073\u0068":0xd80c,"\u0074\u0077\u0065n\u0074\u0079\u0063\u0069\u0072\u0063\u006c\u0065":0x2473,"\u0074\u0077\u0065\u006e\u0074\u0079\u0068\u0061\u006eg\u007a\u0068\u006f\u0075":0x5344,"t\u0077\u0065\u006e\u0074\u0079\u0070\u0061\u0072\u0065\u006e":0x2487,"\u0074\u0077\u0065n\u0074\u0079\u0070\u0065\u0072\u0069\u006f\u0064":0x249b,"\u0074\u0077\u006f":0x0032,"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c":0x0662,"\u0074\u0077\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e8,"\u0074w\u006f\u0063\u0061\u0070\u0073":0x2a4b,"\u0074w\u006f\u0063\u0075\u0070\u0073":0x2a4a,"\u0074w\u006f\u0064\u0065\u0076\u0061":0x0968,"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072":0x2025,"t\u0077o\u0064\u006f\u0074\u006c\u0065\u0061\u0064\u0065r\u0076\u0065\u0072\u0074ic\u0061\u006c":0xfe30,"\u0074w\u006f\u0066\u0069\u0066\u0074\u0068s":0x2156,"t\u0077\u006f\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae8,"t\u0077\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a68,"t\u0077\u006f\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3022,"\u0074\u0077o\u0068\u0065\u0061d\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x21a1,"t\u0077o\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077ta\u0069\u006c":0x2b3b,"\u0074\u0077\u006f\u0068ea\u0064\u006c\u0065\u0066\u0074\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x2b37,"\u0074w\u006fh\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x2b36,"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0074\u006f":0x2905,"t\u0077\u006f\u0068\u0065ad\u0072i\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0074\u0061\u0069\u006c":0x2916,"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u0075\u0070a\u0072\u0072\u006f\u0077":0x219f,"t\u0077o\u0068\u0065\u0061\u0064\u0075\u0070\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065":0x2949,"\u0074\u0077\u006f\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3221,"t\u0077\u006f\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2082,"\u0074\u0077\u006fm\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff12,"\u0074\u0077\u006f\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f5,"t\u0077\u006f\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf732,"\u0074\u0077\u006f\u0070\u0061\u0072\u0065\u006e":0x2475,"\u0074w\u006f\u0070\u0065\u0072\u0069\u006fd":0x2489,"\u0074\u0077\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f2,"\u0074\u0077\u006f\u0072\u006f\u006d\u0061\u006e":0x2171,"\u0074w\u006f\u0073\u0074\u0072\u006f\u006be":0x01bb,"t\u0077\u006f\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x00b2,"\u0074w\u006f\u0074\u0068\u0061\u0069":0x0e52,"\u0074w\u006f\u0074\u0068\u0069\u0072\u0064s":0x2154,"\u0074y\u0070\u0065\u0063\u006f\u006c\u006fn":0x2982,"\u0075":0x0075,"\u0075\u0032\u00364\u0033":0x2643,"\u0075\u0061\u0063\u0075\u0074\u0065":0x00fa,"\u0075\u0062\u0061\u0072":0x0289,"\u0075\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0989,"\u0075b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3128,"\u0075b\u0072\u0062\u0072\u0061\u006b":0x23e1,"\u0075\u0062\u0072\u0065\u0076\u0065":0x016d,"\u0075\u0063\u0061\u0072\u006f\u006e":0x01d4,"\u0075\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0xf834,"\u0075c\u0069\u0072\u0063\u006c\u0065":0x24e4,"u\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00fb,"\u0075\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e77,"\u0075\u0064\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061":0x0951,"\u0075d\u0062\u006c\u0061\u0063\u0075\u0074e":0x0171,"\u0075d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0215,"\u0075\u0064\u0065v\u0061":0x0909,"\u0075d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00fc,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x01d8,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077":0x1e73,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e":0x01da,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04f1,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065":0x01dc,"\u0075d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01d6,"\u0075d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ee5,"\u0075\u0067\u0072\u0061\u0076\u0065":0x00f9,"\u0075g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a89,"\u0075g\u0075\u0072\u006d\u0075\u006b\u0068i":0x0a09,"\u0075h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3046,"\u0075\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ee7,"\u0075\u0068\u006fr\u006e":0x01b0,"\u0075\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1ee9,"\u0075\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ef1,"\u0075\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1eeb,"\u0075\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1eed,"\u0075\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1eef,"u\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04f3,"\u0075\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0217,"\u0075k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a6,"\u0075k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff73,"\u0075\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0479,"\u0075k\u006f\u0072\u0065\u0061\u006e":0x315c,"\u0075\u006c\u0061r\u0063":0x25dc,"\u0075\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25f8,"\u0075m\u0061\u0063\u0072\u006f\u006e":0x016b,"\u0075m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ef,"\u0075m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x1e7b,"\u0075\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069":0x0a41,"\u0075\u006d\u0069\u006e\u0075\u0073":0x2a41,"\u0075\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff55,"\u0075\u006e\u0064\u0065\u0072\u0062\u0072\u0061\u0063\u0065":0x23df,"\u0075\u006e\u0064e\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074":0x23b5,"\u0075\u006e\u0064\u0065\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x20ee,"u\u006ed\u0065\u0072\u006c\u0065\u0066\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e":0x20ed,"\u0075\u006e\u0064\u0065\u0072\u0070\u0061\u0072\u0065\u006e":0x23dd,"\u0075n\u0064e\u0072\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x20ef,"u\u006e\u0064\u0065\u0072ri\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e":0x20ec,"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065":0x005f,"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c":0x2017,"\u0075\u006e\u0064\u0065rs\u0063\u006f\u0072\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff3f,"\u0075n\u0064e\u0072\u0073\u0063\u006f\u0072e\u0076\u0065r\u0074\u0069\u0063\u0061\u006c":0xfe33,"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072e\u0077\u0061\u0076\u0079":0xfe4f,"\u0075\u006e\u0064\u0065\u0072\u0074\u0069\u0065":0x203f,"\u0075\u006e\u0069c\u006f\u0064\u0065\u0063\u0064\u006f\u0074\u0073":0x22ef,"\u0075\u006e\u0069o\u006e":0x222a,"\u0075\u006e\u0069\u006f\u006e\u0064\u0062\u006c":0x22d3,"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069":0x228e,"\u0075n\u0069\u006f\u006e\u0073\u0071":0x2294,"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t":0x22c3,"\u0075n\u0069\u0076\u0065\u0072\u0073\u0061l":0x2200,"\u0075o\u0067\u006f\u006e\u0065\u006b":0x0173,"\u0075\u0070\u0061n\u0064":0x214b,"\u0075\u0070\u0061\u0072\u0065\u006e":0x24b0,"\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064":0x2909,"\u0075p\u0061r\u0072\u006f\u0077\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x29bd,"\u0075p\u0062\u006c\u006f\u0063\u006b":0x2580,"\u0075p\u0064\u0069\u0067\u0061\u006d\u006da":0x03dd,"u\u0070\u0064\u006f\u0077nh\u0061r\u0070\u006f\u006f\u006e\u006ce\u0066\u0074\u006c\u0065\u0066\u0074":0x2951,"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0072\u0069\u0067h\u0074":0x294d,"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u006c\u0065f\u0074":0x294c,"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0072\u0069\u0067\u0068\u0074":0x294f,"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x296e,"\u0075\u0070\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b":0x2594,"\u0075\u0070\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297e,"\u0075\u0070h\u0061\u0072\u0070o\u006f\u006e\u006c\u0065\u0066\u0074\u0062\u0061\u0072":0x2960,"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067h\u0074\u0062\u0061\u0072":0x295c,"\u0075\u0070\u0068\u0061rp\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x2963,"\u0075\u0070\u0069\u006e":0x27d2,"\u0075\u0070\u0069n\u0074":0x2a1b,"\u0075p\u006b\u006f\u0070\u0070\u0061":0x03df,"\u0075\u0070\u006f\u006c\u0064\u004b\u006f\u0070\u0070\u0061":0x03d8,"\u0075\u0070\u006f\u006c\u0064\u006b\u006f\u0070\u0070\u0061":0x03d9,"\u0075\u0070\u0070\u0065\u0072\u0064\u006f\u0074\u0068e\u0062\u0072\u0065\u0077":0x05c4,"\u0075\u0070\u0072\u0069\u0067\u0068\u0074\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077":0x2934,"\u0075p\u0073\u0061\u006d\u0070\u0069":0x03e1,"\u0075p\u0073\u0069\u006c\u006f\u006e":0x03c5,"u\u0070\u0073\u0069\u006con\u0064i\u0061\u0065\u0072\u0065\u0073i\u0073\u0074\u006f\u006e\u006f\u0073":0x02f9,"\u0075p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03cb,"u\u0070s\u0069\u006c\u006f\u006e\u0064\u0069\u0065\u0072e\u0073\u0069\u0073\u0074on\u006f\u0073":0x03b0,"\u0075\u0070\u0073i\u006c\u006f\u006e\u006c\u0061\u0074\u0069\u006e":0x028a,"\u0075\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x03cd,"\u0075p\u0073\u006c\u006f\u0070\u0065":0x29f8,"\u0075\u0070\u0073\u0074\u0069\u0067\u006d\u0061":0x03db,"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x031d,"\u0075p\u0074\u0061\u0063\u006b\u006d\u006fd":0x02d4,"\u0075\u0070\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x03f4,"u\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a73,"\u0075\u0072\u0061r\u0063":0x25dd,"\u0075\u0072\u0069n\u0067":0x016f,"\u0075\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25f9,"\u0075\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3045,"\u0075\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a5,"\u0075\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff69,"\u0075\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04af,"\u0075\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b1,"\u0075\u0074\u0069\u006c\u0064\u0065":0x0169,"u\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e79,"u\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e75,"\u0075u\u0062\u0065\u006e\u0067\u0061\u006ci":0x098a,"\u0075\u0075\u0064\u0065\u0076\u0061":0x090a,"\u0075\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a8a,"\u0075\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a0a,"\u0075u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a42,"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09c2,"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0942,"\u0075\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac2,"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09c1,"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x0941,"\u0075v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0ac1,"\u0076":0x0076,"\u0076\u0042\u0061\u0072":0x2ae8,"\u0076\u0042\u0061r\u0076":0x2ae9,"\u0076\u0044\u0064\u0061\u0073\u0068":0x2ae2,"\u0076\u0061\u0064\u0065\u0076\u0061":0x0935,"\u0076\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab5,"\u0076\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a35,"\u0076\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f7,"\u0076\u0061\u0072\u0056\u0064\u0061\u0073\u0068":0x2ae6,"\u0076\u0061\u0072\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e":0x23ce,"\u0076\u0061\u0072\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065":0x2306,"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e":0x2b21,"\u0076a\u0072h\u0065\u0078\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b":0x2b22,"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e\u006c\u0072b\u006f\u006e\u0064\u0073":0x232c,"\u0076\u0061\u0072\u0069\u006b\u0061":0xfb1e,"v\u0061\u0072\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072":0x22f6,"\u0076\u0061\u0072\u0069\u0073\u0069\u006e\u0073":0x22f3,"\u0076a\u0072\u006e\u0069\u006f\u0062\u0061r":0x22fd,"\u0076\u0061\u0072\u006e\u0069\u0073":0x22fb,"\u0076\u0061r\u006f\u0069\u006et\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x2232,"\u0076a\u0072t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074":0x22b2,"\u0076\u0061r\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x22b3,"\u0076a\u0072\u0076\u0065\u0065\u0062\u0061r":0x2a61,"\u0076\u0061\u0076":0x05d5,"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb35,"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d":0xfb4b,"\u0076\u0062\u0072\u0061\u0063\u0065\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23aa,"\u0076\u0062\u0072\u0074\u0072\u0069":0x29d0,"\u0076c\u0069\u0072\u0063\u006c\u0065":0x24e5,"\u0076d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e7f,"\u0076\u0065\u0063\u0074\u0069\u006d\u0065\u0073":0x2a2f,"\u0076\u0065\u0063\u0074\u006f\u0072":0x20d7,"\u0076\u0065\u0065\u0064\u006f\u0074":0x27c7,"\u0076\u0065\u0065d\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072":0x2a63,"\u0076\u0065\u0065e\u0071":0x225a,"\u0076\u0065\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074":0x2a5b,"\u0076e\u0065\u006f\u0064\u006f\u0074":0x2a52,"\u0076\u0065\u0065\u006f\u006e\u0076\u0065\u0065":0x2a56,"\u0076\u0065\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065":0x2a59,"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c":0x06a4,"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb6b,"\u0076\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb6c,"v\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb6a,"\u0076e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb6d,"\u0076\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f9,"\u0076\u0065\u0072\u0073\u0069\u0063\u006c\u0065":0x2123,"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0061\u0062\u006f\u0076ec\u006d\u0062":0x030d,"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0062\u0065\u006c\u006fwc\u006d\u0062":0x0329,"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006ci\u006e\u0065l\u006f\u0077\u006d\u006f\u0064":0x02cc,"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u006d\u006f\u0064":0x02c8,"v\u0065\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079":0x20d2,"v\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057e,"\u0076\u0068\u006fo\u006b":0x028b,"\u0076\u0069\u0065\u0077\u0064\u0061\u0074\u0061":0x2317,"\u0076\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f8,"\u0076\u0069\u0072\u0061\u006d\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09cd,"\u0076\u0069\u0072\u0061\u006d\u0061\u0064\u0065\u0076\u0061":0x094d,"\u0076\u0069\u0072\u0061\u006d\u0061\u0067\u0075\u006aa\u0072\u0061\u0074\u0069":0x0acd,"\u0076\u0069\u0073\u0061\u0072\u0067\u0061\u0062\u0065n\u0067\u0061\u006c\u0069":0x0983,"v\u0069\u0073\u0061\u0072\u0067\u0061\u0064\u0065\u0076\u0061":0x0903,"\u0076i\u0073a\u0072\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a83,"\u0076l\u006f\u006e\u0067\u0064\u0061\u0073h":0x27dd,"\u0076\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff56,"\u0076\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0578,"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x309e,"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30fe,"\u0076\u006f\u0069\u0063\u0065\u0064\u006d\u0061\u0072k\u006b\u0061\u006e\u0061":0x309b,"\u0076\u006f\u0069ce\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9e,"\u0076\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30fa,"\u0076\u0070\u0061\u0072\u0065\u006e":0x24b1,"\u0076\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065":0x25af,"\u0076r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b":0x25ae,"\u0076s\u0063\u0072\u0069\u0070\u0074":0x021b,"\u0076\u0074\u0069\u006c\u0064\u0065":0x1e7d,"\u0076\u0074\u0075r\u006e":0x021c,"\u0076t\u0075\u0072\u006e\u0065\u0064":0x028c,"\u0076\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3094,"\u0076\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f4,"\u0076\u0079\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1d,"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x2218,"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1e,"\u0076z\u0069\u0067\u007a\u0061\u0067":0x299a,"\u0077":0x0077,"\u0077\u0061\u0063\u0075\u0074\u0065":0x1e83,"\u0077a\u0065\u006b\u006f\u0072\u0065\u0061n":0x3159,"\u0077\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308f,"\u0077\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ef,"\u0077\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9c,"\u0077\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x3158,"\u0077a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308e,"\u0077a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ee,"w\u0061\u0074\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3357,"\u0077\u0061\u0076\u0065\u0064\u0061\u0073\u0068":0x301c,"\u0077\u0061\u0076\u0079un\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0076\u0065\u0072\u0074\u0069\u0063a\u006c":0xfe34,"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c":0x0648,"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeee,"\u0077a\u0077\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe86,"w\u0061\u0077\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeed,"\u0077a\u0077\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d":0xfe85,"\u0077\u0062\u0073\u0071\u0075\u0061\u0072\u0065":0x33dd,"\u0077c\u0069\u0072\u0063\u006c\u0065":0x24e6,"w\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0175,"\u0077d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e85,"\u0077\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e87,"\u0077d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e89,"\u0077\u0065\u0064\u0067\u0065\u0062\u0061\u0072":0x2a5f,"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0074":0x27d1,"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0075\u0062l\u0065\u0062\u0061\u0072":0x2a60,"\u0077\u0065\u0064g\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074":0x2a5a,"\u0077e\u0064\u0067\u0065\u006f\u0064\u006ft":0x2a51,"\u0077\u0065\u0064g\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065":0x2a55,"\u0077\u0065\u0064\u0067\u0065\u0071":0x2259,"\u0077\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3091,"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073":0x2118,"\u0077\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f1,"\u0077\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x315e,"\u0077e\u006f\u006b\u006f\u0072\u0065\u0061n":0x315d,"\u0077\u0067\u0072\u0061\u0076\u0065":0x1e81,"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074":0x25e6,"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x25cb,"\u0077\u0068\u0069\u0074ec\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074":0x300e,"\u0077\u0068\u0069\u0074\u0065\u0063\u006f\u0072\u006e\u0065r\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe43,"\u0077\u0068\u0069te\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x300f,"\u0077\u0068\u0069t\u0065\u0063\u006f\u0072n\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe44,"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x25c7,"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064":0x25c8,"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25bf,"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce":0x25bd,"w\u0068i\u0074\u0065\u0069\u006e\u0077\u0068\u0069\u0074e\u0074\u0072\u0069\u0061ng\u006c\u0065":0x27c1,"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u0066\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25c3,"\u0077h\u0069\u0074\u0065\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce":0x25c1,"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074":0x3016,"w\u0068\u0069\u0074\u0065\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074":0x3017,"\u0077\u0068i\u0074\u0065\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074":0x25c5,"\u0077\u0068\u0069\u0074\u0065\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074":0x25bb,"\u0077\u0068\u0069t\u0065\u0072\u0069\u0067h\u0074\u0070\u006f\u0069\u006e\u0074\u0069n\u0067\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25b9,"\u0077\u0068\u0069\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065":0x25b7,"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x25ab,"\u0077\u0068\u0069\u0074es\u0071\u0075\u0061\u0072\u0065\u0074\u0069\u0063\u006b\u006c\u0065\u0066\u0074":0x27e4,"w\u0068i\u0074\u0065\u0073\u0071\u0075\u0061\u0072\u0065t\u0069\u0063\u006b\u0072ig\u0068\u0074":0x27e5,"\u0077h\u0069\u0074\u0065\u0073\u0074\u0061r":0x2606,"\u0077\u0068\u0069\u0074\u0065\u0074\u0065\u006c\u0065p\u0068\u006f\u006e\u0065":0x260f,"\u0077\u0068i\u0074\u0065\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074le\u0066\u0074":0x3018,"\u0077\u0068\u0069\u0074\u0065\u0074\u006f\u0072\u0074\u006fi\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x3019,"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065":0x25b5,"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25b3,"w\u0068\u0074\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c":0x2b2d,"w\u0068\u0074\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c":0x2b2f,"\u0077\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e":0x29a6,"w\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0075\u0070":0x29a7,"\u0077i\u0064e\u0062\u0072\u0069\u0064\u0067\u0065\u0061\u0062\u006f\u0076\u0065":0x20e9,"\u0077\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3090,"\u0077\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f0,"\u0077\u0069\u006b\u006f\u0072\u0065\u0061\u006e":0x315f,"\u0077\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff57,"\u0077\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3092,"\u0077\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f2,"\u0077\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff66,"\u0077\u006f\u006e":0x20a9,"\u0077\u006f\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe6,"\u0077\u006f\u0077\u0061\u0065\u006e\u0074\u0068\u0061\u0069":0x0e27,"\u0077\u0070\u0061\u0072\u0065\u006e":0x24b2,"\u0077\u0072\u0065\u0061\u0074\u0068\u0070\u0072\u006f\u0064\u0075\u0063\u0074":0x2240,"\u0077\u0072\u0069n\u0067":0x1e98,"\u0077\u0073\u0075\u0070\u0065\u0072":0x0240,"\u0077s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b7,"\u0077\u0074\u0075r\u006e":0x021d,"\u0077t\u0075\u0072\u006e\u0065\u0064":0x028d,"\u0077\u0079\u006e\u006e":0x01bf,"\u0078":0x0078,"\u0078a\u0062\u006f\u0076\u0065\u0063\u006db":0x033d,"\u0078b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3112,"\u0078c\u0069\u0072\u0063\u006c\u0065":0x24e7,"\u0078d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e8d,"\u0078\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8b,"x\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056d,"\u0078\u0069":0x03be,"\u0078\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff58,"\u0078\u0070\u0061\u0072\u0065\u006e":0x24b3,"\u0078s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02e3,"\u0079":0x0079,"y\u0061\u0061\u0064\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x334e,"\u0079a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09af,"\u0079\u0061\u0063\u0075\u0074\u0065":0x00fd,"\u0079\u0061\u0064\u0065\u0076\u0061":0x092f,"\u0079a\u0065\u006b\u006f\u0072\u0065\u0061n":0x3152,"\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aaf,"\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2f,"\u0079\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3084,"\u0079\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e4,"\u0079\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff94,"\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x3151,"\u0079\u0061\u006da\u006b\u006b\u0061\u006e\u0074\u0068\u0061\u0069":0x0e4e,"\u0079a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3083,"\u0079a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e3,"\u0079a\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6c,"y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0463,"\u0079c\u0069\u0072\u0063\u006c\u0065":0x24e8,"y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0177,"\u0079d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00ff,"\u0079\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8f,"\u0079d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ef5,"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c":0x064a,"\u0079e\u0068b\u0061\u0072\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063":0x06d2,"y\u0065h\u0062\u0061\u0072\u0072\u0065\u0065\u0066\u0069n\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfbaf,"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfef2,"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063":0x0626,"\u0079e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe8a,"\u0079\u0065\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072a\u0062\u0069\u0063":0xfe8b,"\u0079e\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076e\u006de\u0064i\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe8c,"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfef3,"y\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfef1,"y\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfcdd,"y\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc58,"\u0079e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfc94,"\u0079\u0065\u0068th\u0072\u0065\u0065\u0064\u006f\u0074\u0073\u0062\u0065\u006c\u006f\u0077\u0061\u0072\u0061\u0062\u0069\u0063":0x06d1,"\u0079\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc95,"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc59,"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xfcdb,"\u0079e\u0068\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d":0xfe89,"\u0079e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcda,"\u0079e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcdc,"\u0079e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc91,"\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3156,"\u0079\u0065\u006e":0x00a5,"\u0079\u0065\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe5,"\u0079e\u006f\u006b\u006f\u0072\u0065\u0061n":0x3155,"\u0079\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006bo\u0072\u0065\u0061\u006e":0x3186,"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077":0x05aa,"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x044b,"y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04f9,"\u0079\u0065\u0073\u0069\u0065\u0075\u006e\u0067\u006bo\u0072\u0065\u0061\u006e":0x3181,"y\u0065\u0073\u0069\u0065un\u0067p\u0061\u006e\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e":0x3183,"\u0079e\u0073i\u0065\u0075\u006e\u0067\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x3182,"y\u0065\u0074\u0069\u0076\u0068\u0065\u0062\u0072\u0065\u0077":0x059a,"\u0079\u0067\u0072\u0061\u0076\u0065":0x1ef3,"\u0079\u0068\u006fo\u006b":0x01b4,"\u0079\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ef7,"\u0079\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0575,"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0457,"\u0079\u0069\u006b\u006f\u0072\u0065\u0061\u006e":0x3162,"\u0079i\u006e\u0079\u0061\u006e\u0067":0x262f,"\u0079\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0582,"\u0079\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff59,"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb39,"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077":0x05f2,"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb1f,"\u0079\u006f\u0067\u0068":0x0222,"\u0079\u006f\u0067\u0068\u0063\u0075\u0072\u006c":0x0223,"\u0079\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3088,"\u0079o\u0069\u006b\u006f\u0072\u0065\u0061n":0x3189,"\u0079\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e8,"\u0079\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff96,"\u0079\u006f\u006b\u006f\u0072\u0065\u0061\u006e":0x315b,"\u0079o\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3087,"\u0079o\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e7,"\u0079o\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6e,"\u0079\u006f\u0074\u0067\u0072\u0065\u0065\u006b":0x03f3,"y\u006f\u0079\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3188,"\u0079\u006f\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x3187,"\u0079o\u0079\u0061\u006b\u0074\u0068\u0061i":0x0e22,"\u0079\u006f\u0079\u0069\u006e\u0067\u0074\u0068\u0061\u0069":0x0e0d,"\u0079\u0070\u0061\u0072\u0065\u006e":0x24b4,"\u0079\u0070\u006f\u0067\u0065\u0067\u0072\u0061\u006d\u006d\u0065\u006e\u0069":0x037a,"y\u0070\u006f\u0067\u0065gr\u0061m\u006d\u0065\u006e\u0069\u0067r\u0065\u0065\u006b\u0063\u006d\u0062":0x0345,"\u0079\u0072":0x01a6,"\u0079\u0072\u0069n\u0067":0x1e99,"\u0079\u0073\u0075\u0070\u0065\u0072":0x0241,"\u0079s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b8,"\u0079\u0074\u0069\u006c\u0064\u0065":0x1ef9,"\u0079\u0074\u0075r\u006e":0x021e,"\u0079t\u0075\u0072\u006e\u0065\u0064":0x028e,"\u0079\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3086,"\u0079u\u0069\u006b\u006f\u0072\u0065\u0061n":0x318c,"\u0079\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e6,"\u0079\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff95,"\u0079\u0075\u006b\u006f\u0072\u0065\u0061\u006e":0x3160,"\u0079\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x046b,"\u0079\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063":0x046d,"\u0079\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0467,"\u0079u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x0469,"\u0079u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3085,"\u0079u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e5,"\u0079u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6d,"\u0079\u0075\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x318b,"y\u0075\u0079\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e":0x318a,"\u0079\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09df,"\u0079y\u0061\u0064\u0065\u0076\u0061":0x095f,"\u007a":0x007a,"\u007a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0566,"\u007a\u0061\u0063\u0075\u0074\u0065":0x017a,"\u007a\u0061\u0064\u0065\u0076\u0061":0x095b,"\u007a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5b,"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c":0x0638,"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfec6,"\u007a\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec7,"\u007a\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3056,"z\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfec5,"\u007aa\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec8,"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x0632,"\u007aa\u0069n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb0,"\u007a\u0061\u0069n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeaf,"\u007a\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b6,"\u007a\u0061q\u0065\u0066\u0067a\u0064\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077":0x0595,"\u007a\u0061q\u0065\u0066\u0071a\u0074\u0061\u006e\u0068\u0065\u0062\u0072\u0065\u0077":0x0594,"z\u0061\u0072\u0071\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0598,"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb36,"\u007ab\u006f\u0070\u006f\u006d\u006f\u0066o":0x3117,"\u007a\u0063\u0061\u0072\u006f\u006e":0x017e,"\u007ac\u0069\u0072\u0063\u006c\u0065":0x24e9,"z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x1e91,"\u007a\u0063\u006d\u0070":0x2a1f,"\u007a\u0063\u0075r\u006c":0x0291,"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x017c,"\u007ad\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e93,"\u007a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0499,"\u007ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x04df,"\u007a\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305c,"\u007a\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bc,"\u007a\u0065\u0072\u006f":0x0030,"z\u0065\u0072\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e6,"\u007a\u0065\u0072\u006f\u0064\u0065\u0076\u0061":0x0966,"\u007a\u0065\u0072o\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae6,"\u007a\u0065\u0072o\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a66,"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063":0x0660,"\u007a\u0065\u0072o\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2080,"\u007a\u0065\u0072\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff10,"\u007a\u0065\u0072o\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf730,"z\u0065\u0072\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f0,"\u007a\u0065\u0072o\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2070,"\u007a\u0065\u0072\u006f\u0074\u0068\u0061\u0069":0x0e50,"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072":0xfeff,"\u007a\u0065\u0072\u006f\u0077\u0069\u0064\u0074\u0068s\u0070\u0061\u0063\u0065":0x200b,"\u007a\u0065\u0074\u0061":0x03b6,"\u007a\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3113,"z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056a,"\u007a\u0068\u0065\u0062\u0072\u0065\u0076\u0065":0x03fe,"\u007a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04c2,"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0436,"z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x0497,"\u007a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04dd,"\u007a\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3058,"\u007a\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b8,"z\u0069\u006e\u006f\u0072\u0068\u0065\u0062\u0072\u0065\u0077":0x05ae,"\u007a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e95,"\u007a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5a,"\u007a\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305e,"\u007a\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30be,"\u007a\u0070\u0061\u0072\u0065\u006e":0x24b5,"\u007a\u0070\u0069p\u0065":0x2a20,"\u007a\u0070\u0072\u006f\u006a\u0065\u0063\u0074":0x2a21,"\u007a\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b":0x0290,"\u007ar\u0074\u0068\u006f\u006f\u006b":0x0220,"\u007as\u0074\u0072\u006f\u006b\u0065":0x01b6,"\u007a\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305a,"\u007a\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ba}); -func (_dec *differencesEncoding )Encode (str string )[]byte {_bgfb :=[]rune (str );_baf :=_ce .NewBuffer (nil );_baf .Grow (len (_bgfb ));for _ ,_dabb :=range _bgfb {_ebf ,_ :=_dec .RuneToCharcode (_dabb );_baf .WriteByte (byte (_ebf ));};return _baf .Bytes (); -};func NewZapfDingbatsEncoder ()SimpleEncoder {return _aea .NewEncoder ()};type simpleEncoder struct{_defd *_cfc .RuneByteMap };func (_fae *simpleEncoding )ToPdfObject ()_fg .PdfObject {return _fg .MakeName (_fae ._dbbd )};func (_ebc *simpleEncoding )Charcodes ()[]CharCode {_fge :=make ([]CharCode ,0,_ebc ._cec .Length ()); -_ebc ._cec .Range (func (_adab byte ,_ rune )(_gaaa bool ){_fge =append (_fge ,CharCode (_adab ));return false });_ae .Slice (_fge ,func (_bafc ,_dedf int )bool {return _fge [_bafc ]< _fge [_dedf ]});return _fge ;};func (_ffc *IdentityEncoder )ToPdfObject ()_fg .PdfObject {if _ffc ._bgff !=""{return _fg .MakeName (_ffc ._bgff ); -};return _fg .MakeNull ();};func NewTrueTypeFontEncoder (runeToGIDMap map[rune ]GID )*TrueTypeFontEncoder {_gbcg :=_cfc .MakeRuneUint16Map (len (runeToGIDMap ));for _gaea ,_gdbb :=range runeToGIDMap {_gbcg .Write (_gaea ,uint16 (_gdbb ));};return &TrueTypeFontEncoder {_egb :_gbcg ,_afa :_cfc .MakeRuneSet (0)}; -};func (_aaab *simpleEncoding )NewEncoder ()*_b .Encoder {return &_b .Encoder {Transformer :&simpleEncoder {_defd :_aaab ._eaf }};};var _ggc =[...]_cfc .StringsTuple {{Key :"\u0066\u005f\u0066",Value :"\u0066\u0066"},{Key :"\u0066\u005f\u0066_\u0069",Value :"\u0066\u0066\u0069"},{Key :"\u0066\u005f\u0066_\u006c",Value :"\u0066\u0066\u006c"},{Key :"\u0066\u005f\u0069",Value :"\u0066\u0069"},{Key :"\u0066\u005f\u006c",Value :"\u0066\u006c"},{Key :"a\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e",Value :"\u0041\u0045\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u006d\u0074\u0075r\u006e\u0064\u0065\u0073\u0063\u0065\u006e\u0064",Value :"\u0041d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0061\u0074\u0075r\u006e",Value :"\u0041\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"n\u006c\u0066\u0074\u006c\u0066\u0074\u0068\u006f\u006f\u006b",Value :"\u0041\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0075p\u0041\u006c\u0070\u0068\u0061",Value :"\u0041\u006c\u0070h\u0061"},{Key :"\u0049s\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0041\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0043\u0062\u0062",Value :"\u0042\u0062\u0062\u0043"},{Key :"\u0043\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0043"},{Key :"\u0048\u0062\u0062",Value :"\u0042\u0062\u0062\u0048"},{Key :"\u0048\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0048"},{Key :"\u004e\u0062\u0062",Value :"\u0042\u0062\u0062\u004e"},{Key :"\u004e\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u004e"},{Key :"\u0050\u0062\u0062",Value :"\u0042\u0062\u0062\u0050"},{Key :"\u0050\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0050"},{Key :"\u0051\u0062\u0062",Value :"\u0042\u0062\u0062\u0051"},{Key :"\u0051\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0051"},{Key :"\u0052\u0062\u0062",Value :"\u0042\u0062\u0062\u0052"},{Key :"\u0052\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0052"},{Key :"\u005a\u0062\u0062",Value :"\u0042\u0062\u0062\u005a"},{Key :"\u005a\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u005a"},{Key :"\u0075\u0070\u0042\u0065\u0074\u0061",Value :"\u0042\u0065\u0074\u0061"},{Key :"\u004f\u0049",Value :"\u0042t\u006f\u0070\u0062\u0061\u0072"},{Key :"\u0048m\u0061\u0063\u0072\u006f\u006e",Value :"\u0043\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0043\u0064\u006f\u0074",Value :"\u0043\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0043\u0068\u0065",Value :"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00341",Value :"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"l\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",Value :"C\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063"},{Key :"\u0075\u0070\u0043h\u0069",Value :"\u0043\u0068\u0069"},{Key :"\u0079\u0075\u0073\u0062\u0069\u0067",Value :"\u0043\u0068\u0069"},{Key :"\u0067\u0063\u0075\u0072\u0073\u0069\u0076\u0065",Value :"\u0044\u005a"},{Key :"\u0047\u0062\u0061\u0072",Value :"\u0044Z\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0044\u0073\u006c\u0061\u0073\u0068",Value :"\u0044\u0063\u0072\u006f\u0061\u0074"},{Key :"\u0044\u0065",Value :"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00321",Value :"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u004b\u0068\u0061\u0072\u0074\u0064\u0065\u0073",Value :"\u0044e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0069n\u0063\u0072\u0065\u006d\u0065\u006et",Value :"\u0044\u0065\u006ct\u0061"},{Key :"\u0075p\u0044\u0065\u006c\u0074\u0061",Value :"\u0044\u0065\u006c\u0074\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0065\u0073\u0068\u006c\u006f\u006f\u0070\u0072\u0065\u0076",Value :"\u0044\u0068\u006fo\u006b"},{Key :"\u006d\u0062\u0066\u0064\u0069\u0067\u0061\u006d\u006d\u0061",Value :"\u0044i\u0067\u0061\u006d\u006d\u0061"},{Key :"\u0047e\u004b\u0061\u0072\u0065\u0076",Value :"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u0044\u0069\u0067\u0061\u006d\u006da",Value :"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0047s\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0044\u007a"},{Key :"\u0067\u0062\u0061\u0072",Value :"\u0044z\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0044\u007a\u0068\u0065",Value :"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00345",Value :"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045\u0063\u0079\u0072\u0069\u006c",Value :"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00353",Value :"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u004es\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0045d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0045\u0064\u006f\u0074",Value :"\u0045\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u004f\u0045\u0073\u006d\u0061\u006c\u006c\u0063\u0061\u0070",Value :"\u0045\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0045\u006c",Value :"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00329",Value :"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045\u006d",Value :"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00330",Value :"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u004e\u0067",Value :"\u0045\u006e\u0067"},{Key :"\u006b\u0072\u0061",Value :"\u0045o\u0067\u006f\u006e\u0065\u006b"},{Key :"\u0075p\u0045\u0070\u0073\u0069\u006c\u006fn",Value :"\u0045p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0073\u0074\u0072\u0069\u0063\u0074\u0065\u0071\u0075\u0069\u0076\u0061l\u0065\u006e\u0063\u0065",Value :"\u0045\u0071\u0075i\u0076"},{Key :"\u0054r\u0074\u0068\u006f\u006f\u006b",Value :"\u0045r\u0065\u0076\u0065\u0072\u0073\u0065d"},{Key :"\u0045c\u0079\u0072\u0069\u006c\u0072\u0065v",Value :"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00347",Value :"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u0045t\u0061",Value :"\u0045\u0074\u0061"},{Key :"\u0045\u0075\u006ce\u0072",Value :"\u0045\u0075\u006c\u0065\u0072\u0063\u006f\u006e\u0073\u0074"},{Key :"\u0065\u0075\u0072\u006f",Value :"\u0045\u0075\u0072\u006f"},{Key :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0072\u0065\u0076\u0063l\u006f\u0073\u0065\u0064",Value :"\u0045\u007a\u0068\u0063\u0061\u0072\u006f\u006e"},{Key :"\u004f\u0068\u006fo\u006b",Value :"\u0046e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0032",Value :"\u0046\u0068\u006fo\u006b"},{Key :"\u0046\u0074\u0075r\u006e",Value :"\u0046\u0069\u006e\u0076"},{Key :"\u0046\u0046\u0049\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046\u0046\u004c\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046F\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046I\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046L\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0062a\u0062\u0079\u0067\u0061\u006d\u006da",Value :"\u0047\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0075p\u0047\u0061\u006d\u006d\u0061",Value :"\u0047\u0061\u006dm\u0061"},{Key :"\u0055\u0073\u0074r\u0074",Value :"\u0047\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0064r\u0074\u0068\u006f\u006f\u006b",Value :"\u0047\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0047\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u0047\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0047\u0064\u006f\u0074",Value :"\u0047\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0047\u0065",Value :"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00320",Value :"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0047\u0065\u0075\u0070\u0074\u0075\u0072\u006e",Value :"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00350",Value :"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0047\u0061\u006d\u0065",Value :"\u0047\u006d\u0069\u0072"},{Key :"\u006f\u0067\u006f\u006e\u0065\u006b\u006e\u006f\u0073\u0070",Value :"\u0047\u0073\u006d\u0061\u006c\u006c\u0068\u006f\u006f\u006b"},{Key :"\u0063\u0074\u0075r\u006e",Value :"\u0047s\u0074\u0072\u006f\u006b\u0065"},{Key :"w\u0068\u0069\u0074\u0065\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u0062\u006f\u0078",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u0054e\u0072\u0074\u0064\u0065\u0073",Value :"\u0048\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0049\u006e\u006f\u0064\u006f\u0074",Value :"\u0049"},{Key :"\u0079o\u0067\u0068\u0068\u0061\u0063\u0065k",Value :"\u0049\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0049\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0049\u0064\u006f\u0074"},{Key :"\u0049\u0065",Value :"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00322",Value :"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0049\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0049\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0049\u006d",Value :"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0049\u0069",Value :"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00326",Value :"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"r\u0074\u0075\u0072\u006e\u0061\u0073\u0063\u0065\u006e\u0064",Value :"\u0049\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0049\u006f",Value :"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00323",Value :"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u0049\u006f\u0074\u0061",Value :"\u0049\u006f\u0074\u0061"},{Key :"\u007a\u0062\u0061\u0072",Value :"I\u006f\u0074\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e"},{Key :"\u0059\u006f\u0067\u0068",Value :"\u0049s\u0074\u0072\u006f\u006b\u0065"},{Key :"\u0075p\u004b\u0061\u0070\u0070\u0061",Value :"\u004b\u0061\u0070p\u0061"},{Key :"\u0065\u0072\u0065\u0076",Value :"\u004b\u0063\u0061\u0072\u006f\u006e"},{Key :"\u004b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u004b\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u004b\u0068\u0061",Value :"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00339",Value :"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045s\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u004b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0059o\u0067\u0068\u0072\u0065\u0076",Value :"\u004b\u0068\u006fo\u006b"},{Key :"\u004b\u006a\u0065",Value :"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00361",Value :"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045n\u0072\u0074\u0064\u0065\u0073",Value :"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u004b\u006f\u0070\u0070\u0061",Value :"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0067\u0068\u0061\u0063\u0065\u006b",Value :"\u004c\u004a"},{Key :"\u0075\u0070\u004c\u0061\u006d\u0062\u0064\u0061",Value :"\u004c\u0061\u006d\u0062\u0064\u0061"},{Key :"\u004c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u004c\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0067c\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u004cc\u0065\u0064\u0069\u006c\u006c\u00611"},{Key :"\u004c\u0064\u006f\u0074",Value :"\u004c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u004b\u0068\u0061\u0063\u0065\u006b",Value :"\u004c\u006a"},{Key :"\u004c\u006a\u0065",Value :"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00358",Value :"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u004d\u0075",Value :"\u004d\u0075"},{Key :"\u0074m\u0061\u0063\u0072\u006f\u006e",Value :"\u004e\u0063\u0061\u0072\u006f\u006e"},{Key :"\u004e\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"t\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074",Value :"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u006e\u0065",Value :"\u004ee\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0075\u0070\u004e\u0075",Value :"\u004e\u0075"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u006e\u0077",Value :"\u004ew\u0061\u0072\u0072\u006f\u0077"},{Key :"\u004f\u0063\u0079\u0072\u0069\u006c",Value :"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00332",Value :"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u004f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",Value :"\u004fd\u0062\u006c\u0061\u0063\u0075\u0074e"},{Key :"\u0072\u0064\u0065\u0073\u0063\u0065\u006e\u0064",Value :"\u004fd\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0070\u0069\u0070\u0065",Value :"\u004f\u0068\u006fr\u006e"},{Key :"\u0070\u0069\u0070\u0065\u0064\u0062\u006c\u0062\u0061\u0072",Value :"\u004f\u0069"},{Key :"\u004f\u0068\u006d",Value :"\u004f\u006d\u0065g\u0061"},{Key :"\u006f\u0068\u006d",Value :"\u004f\u006d\u0065g\u0061"},{Key :"\u0075p\u004f\u006d\u0065\u0067\u0061",Value :"\u004f\u006d\u0065\u0067\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u006d\u0068\u006f",Value :"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076"},{Key :"o\u0068\u006d\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064",Value :"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076"},{Key :"\u0075p\u004f\u006d\u0069\u0063\u0072\u006fn",Value :"\u004fm\u0069\u0063\u0072\u006f\u006e"},{Key :"\u0079\u0061\u0074",Value :"\u004fm\u0069\u0063\u0072\u006f\u006e"},{Key :"e\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0072\u0065\u0076",Value :"\u004f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0059\u0052",Value :"\u004f\u006f\u0070e\u006e"},{Key :"\u004f\u0073\u0074r\u006f\u006b\u0065\u0061\u0063\u0075\u0074\u0065",Value :"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u006c\u0079\u006fg\u0068",Value :"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0059\u0075\u0073\u0062\u0069\u0067",Value :"\u0050\u0068\u0069"},{Key :"\u0075\u0070\u0050h\u0069",Value :"\u0050\u0068\u0069"},{Key :"\u0044Z\u0068\u0061\u0063\u0065\u006b",Value :"\u0050\u0068\u006fo\u006b"},{Key :"\u0075\u0070\u0050\u0069",Value :"\u0050\u0069"},{Key :"\u0070\u006c\u0061\u006e\u0063\u006b",Value :"P\u006c\u0061\u006e\u0063\u006b\u0063\u006f\u006e\u0073\u0074"},{Key :"\u0075\u0070\u0050s\u0069",Value :"\u0050\u0073\u0069"},{Key :"\u0065\u006e\u0064\u006f\u0066\u0070\u0072\u006f\u006f\u0066",Value :"\u0051\u0045\u0044"},{Key :"\u0065\u006f\u0070",Value :"\u0051\u0045\u0044"},{Key :"\u0052\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0052\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0052s\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0052d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0052\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0052\u0065",Value :"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0052\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0075\u0070\u0052h\u006f",Value :"\u0052\u0068\u006f"},{Key :"\u0073r\u0074\u0068\u006f\u006f\u006b",Value :"\u0052\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u006ci\u006ee\u0076\u0065\u0072\u0074\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u0052\u0073\u006d\u0061\u006c\u006c\u0069\u006e\u0076e\u0072\u0074\u0065\u0064"},{Key :"\u0047\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073",Value :"\u0053"},{Key :"\u0053\u0053",Value :"\u0053"},{Key :"\u0032\u0035\u0030\u0063",Value :"\u0053\u0046\u0030\u0031\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0033\u0063",Value :"\u0053\u0046\u0030\u0035\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0032\u0063",Value :"\u0053\u0046\u0030\u0036\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0031\u0063",Value :"\u0053\u0046\u0030\u0038\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0064",Value :"\u0053\u0046\u0032\u0036\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0063",Value :"\u0053\u0046\u0032\u0037\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0062",Value :"\u0053\u0046\u0032\u0038\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0065",Value :"\u0053\u0046\u0033\u0036\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0066",Value :"\u0053\u0046\u0033\u0037\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0061",Value :"\u0053\u0046\u0033\u0038\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0036\u0063",Value :"\u0053\u0046\u0034\u0034\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0036\u0062",Value :"\u0053\u0046\u0035\u0033\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0036\u0061",Value :"\u0053\u0046\u0035\u0034\u0030\u0030\u0030\u0030"},{Key :"\u0045\u006e\u0047\u0065",Value :"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u0053\u0061\u006d\u0070\u0069",Value :"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0062\u0062\u0061\u0072",Value :"\u0053\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0063i\u0072\u0063\u006c\u0065\u0053",Value :"\u0053c\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0074r\u0074\u0068\u006f\u006f\u006b",Value :"\u0053\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0073\u0065",Value :"\u0053e\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0053\u0068\u0061",Value :"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00342",Value :"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0050\u0065\u0068\u006f\u006f\u006b",Value :"\u0053\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0055\u0073\u0074\u0072\u0074\u0062\u0061\u0072",Value :"S\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0075p\u0053\u0069\u0067\u006d\u0061",Value :"\u0053\u0069\u0067m\u0061"},{Key :"\u0047e\u0072m\u0061\u006e\u0064\u0062\u006c\u0073\u0073\u006d\u0061\u006c\u006c",Value :"\u0053\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0053S\u0073\u006d\u0061\u006c\u006c",Value :"\u0053\u0073\u006d\u0061\u006c\u006c"},{Key :"\u004b\u0061\u0062a\u0072",Value :"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0070\u0053\u0074\u0069\u0067\u006d\u0061",Value :"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0073\u0077",Value :"\u0053w\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0075\u0070\u0054a\u0075",Value :"\u0054\u0061\u0075"},{Key :"\u004bc\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u0054c\u0065\u0064\u0069\u006c\u006c\u00611"},{Key :"\u0054\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u0054\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0075p\u0054\u0068\u0065\u0074\u0061",Value :"\u0054\u0068\u0065t\u0061"},{Key :"\u0061\u0068\u0061\u0063\u0065\u006b",Value :"\u0054\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b"},{Key :"\u0054\u0073\u0065",Value :"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00340",Value :"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0054\u0073\u0068\u0065",Value :"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00360",Value :"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0055\u0063\u0079\u0072\u0069\u006c",Value :"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00337",Value :"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"j\u0068\u006f\u006f\u006b\u0064\u0062\u006c\u0062\u0061\u0072",Value :"\u0055d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0061\u0061\u0063\u0075\u0074\u0065\u0072\u0069\u006e\u0067",Value :"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065"},{Key :"\u0049\u0068\u0061\u0063\u0065\u006b",Value :"\u0055\u0068\u006fr\u006e"},{Key :"\u0045\u0070\u0073\u0069\u006c\u006f\u006e\u0031",Value :"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074"},{Key :"\u0055d\u0062\u006c\u0061\u0063\u0075\u0074e",Value :"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074"},{Key :"\u0066s\u0063\u0072\u0069\u0070\u0074",Value :"\u0055o\u0067\u006f\u006e\u0065\u006b"},{Key :"\u0075p\u0055\u0070\u0073\u0069\u006c\u006fn",Value :"\u0055p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006f\u006c",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u005a\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u007a\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"U\u0070\u0073\u0069\u006c\u006f\u006ea\u0063\u0075\u0074\u0065\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006fl\u0067r\u0065\u0065\u006b"},{Key :"\u004f\u0068\u0061\u0063\u0065\u006b",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0061\u0066r\u0069\u0063\u0061\u006e"},{Key :"\u005ae\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u0068\u006f\u006fk\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0045\u0074\u0075r\u006e",Value :"\u0055\u0072\u0069n\u0067"},{Key :"U\u0063\u0079\u0072\u0069\u006c\u0062\u0072\u0065\u0076\u0065",Value :"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00362",Value :"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0066o\u0072\u0063\u0065\u0065\u0078\u0074r",Value :"\u0056\u0044\u0061s\u0068"},{Key :"\u006f\u0068\u0061\u0063\u0065\u006b",Value :"\u0056\u0068\u006fo\u006b"},{Key :"\u0047\u0061\u006d\u006d\u0061\u0031",Value :"W\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078"},{Key :"\u0059\u0061\u0074",Value :"\u0058\u0069"},{Key :"\u0075\u0070\u0058\u0069",Value :"\u0058\u0069"},{Key :"\u0049\u006f\u0074a\u0031",Value :"Y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078"},{Key :"\u0055\u0068\u0061\u0063\u0065\u006b",Value :"\u0059\u0068\u006fo\u006b"},{Key :"\u0059\u0069",Value :"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00356",Value :"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u004e\u0068\u006fo\u006b",Value :"\u005a\u0063\u0061\u0072\u006f\u006e"},{Key :"\u005a\u0064\u006f\u0074",Value :"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u006ca\u006d\u0062\u0064\u0061\u0062\u0061r",Value :"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0075\u0070\u005a\u0065\u0074\u0061",Value :"\u005a\u0065\u0074\u0061"},{Key :"\u0074\u0065\u006c\u0065\u0070\u0068\u006f\u006e\u0065b\u006c\u0061\u0063\u006b",Value :"\u0061\u0034"},{Key :"\u006da\u006c\u0074\u0065\u0073\u0065",Value :"\u0061\u0039"},{Key :"\u006d\u0061\u006ct\u0065\u0073\u0065\u0063\u0072\u006f\u0073\u0073",Value :"\u0061\u0039"},{Key :"\u0070\u006f\u0069nt\u0069\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065",Value :"\u0061\u0031\u0032"},{Key :"\u0063h\u0065\u0063\u006b\u006d\u0061\u0072k",Value :"\u0061\u0031\u0039"},{Key :"\u0062i\u0067\u0073\u0074\u0061\u0072",Value :"\u0061\u0033\u0035"},{Key :"\u0062l\u0061\u0063\u006b\u0073\u0074\u0061r",Value :"\u0061\u0033\u0035"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u0064\u0073\u0074\u0061\u0072",Value :"\u0061\u0033\u0037"},{Key :"\u0076a\u0072\u0073\u0074\u0061\u0072",Value :"\u0061\u0034\u0039"},{Key :"\u0064\u0069\u006eg\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b",Value :"\u0061\u0035\u0036"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u0073\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0031"},{Key :"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0037\u0031"},{Key :"\u0062\u0075\u006cl\u0065\u0074\u0061\u006c\u0074\u006f\u006e\u0065",Value :"\u0061\u0037\u0031"},{Key :"b\u006c\u0061\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0037\u0031"},{Key :"\u0048\u0031\u0038\u0035\u0033\u0033",Value :"\u0061\u0037\u0031"},{Key :"\u0066i\u006c\u006c\u0065\u0064\u0062\u006fx",Value :"\u0061\u0037\u0033"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0073\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0033"},{Key :"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0061\u0037\u0033"},{Key :"b\u006c\u0061\u0063\u006b\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0061\u0037\u0033"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0036"},{Key :"\u0062\u006c\u0061ck\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0061\u0037\u0036"},{Key :"\u0062i\u0067b\u006c\u0061\u0063\u006b\u0074r\u0069\u0061n\u0067\u006c\u0065\u0075\u0070",Value :"\u0061\u0037\u0036"},{Key :"\u0074r\u0069\u0061\u0067\u0075\u0070",Value :"\u0061\u0037\u0036"},{Key :"\u0062l\u0061\u0063\u006b\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",Value :"\u0061\u0037\u0037"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e\u0073\u006c\u0064",Value :"\u0061\u0037\u0037"},{Key :"\u0074r\u0069\u0061\u0067\u0064\u006e",Value :"\u0061\u0037\u0037"},{Key :"b\u0069g\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069a\u006e\u0067\u006c\u0065do\u0077\u006e",Value :"\u0061\u0037\u0037"},{Key :"\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0072\u0068\u006f\u006d\u0062s\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0038"},{Key :"\u0062\u006c\u0061c\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064",Value :"\u0061\u0037\u0038"},{Key :"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u0064\u0069a\u006d\u006f\u006e\u0064",Value :"\u0061\u0037\u0038"},{Key :"\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u006c\u0065r\u0074\u0073\u006c\u0064",Value :"\u0061\u0038\u0031"},{Key :"b\u006ca\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0068a\u006c\u0066\u0063\u0069rc\u006c\u0065",Value :"\u0061\u0038\u0031"},{Key :"\u006fn\u0065\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0030"},{Key :"\u0074w\u006f\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0031"},{Key :"t\u0068\u0072\u0065\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0032"},{Key :"\u0066\u006f\u0075\u0072\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0033"},{Key :"\u0066\u0069\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0034"},{Key :"\u0073i\u0078\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0035"},{Key :"s\u0065\u0076\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0036"},{Key :"e\u0069\u0067\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0037"},{Key :"\u006e\u0069\u006e\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0038"},{Key :"\u0074e\u006e\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0039"},{Key :"\u006fn\u0065\u0063\u0069\u0072c\u006c\u0065\u0069\u006e\u0076e\u0072s\u0065s\u0061\u006e\u0073\u0073\u0065\u0072\u0069f",Value :"\u0061\u0031\u0035\u0030"},{Key :"\u0074w\u006f\u0063\u0069\u0072c\u006c\u0065\u0069\u006e\u0076e\u0072s\u0065s\u0061\u006e\u0073\u0073\u0065\u0072\u0069f",Value :"\u0061\u0031\u0035\u0031"},{Key :"t\u0068\u0072\u0065\u0065\u0063\u0069r\u0063\u006c\u0065\u0069\u006e\u0076\u0065\u0072\u0073e\u0073\u0061\u006es\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0032"},{Key :"\u0066\u006f\u0075\u0072\u0063\u0069\u0072\u0063\u006c\u0065\u0069n\u0076\u0065\u0072\u0073\u0065\u0073\u0061\u006e\u0073\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0033"},{Key :"\u0066\u0069\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065\u0069n\u0076\u0065\u0072\u0073\u0065\u0073\u0061\u006e\u0073\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0034"},{Key :"\u0073i\u0078\u0063\u0069\u0072c\u006c\u0065\u0069\u006e\u0076e\u0072s\u0065s\u0061\u006e\u0073\u0073\u0065\u0072\u0069f",Value :"\u0061\u0031\u0035\u0035"},{Key :"s\u0065\u0076\u0065\u006e\u0063\u0069r\u0063\u006c\u0065\u0069\u006e\u0076\u0065\u0072\u0073e\u0073\u0061\u006es\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0036"},{Key :"e\u0069\u0067\u0068\u0074\u0063\u0069r\u0063\u006c\u0065\u0069\u006e\u0076\u0065\u0072\u0073e\u0073\u0061\u006es\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0037"},{Key :"\u006e\u0069\u006e\u0065\u0063\u0069\u0072\u0063\u006c\u0065\u0069n\u0076\u0065\u0072\u0073\u0065\u0073\u0061\u006e\u0073\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0038"},{Key :"u\u0070\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0031\u0036\u0034"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068\u0076",Value :"\u0061\u0031\u0036\u0034"},{Key :"\u0061r\u0072\u006f\u0077\u0075\u0070\u0064n",Value :"\u0061\u0031\u0036\u0034"},{Key :"\u0064\u0072\u0061\u0066\u0074\u0069\u006e\u0067\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0031\u0036\u0036"},{Key :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0068\u0065\u0061\u0076\u0079",Value :"\u0061\u0031\u0036\u0039"},{Key :"\u0059o\u0067\u0068\u0068\u0061\u0063\u0065k",Value :"\u0061\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0063\u006d\u0062",Value :"\u0061c\u0075\u0074\u0065\u0063\u006f\u006db"},{Key :"\u0061r\u0072o\u0077\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077",Value :"\u0061c\u0077o\u0070\u0065\u006e\u0063\u0069r\u0063\u006ce\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0075p\u0073l\u006f\u0070\u0065\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0061\u0064\u006ft\u0073"},{Key :"\u006cr\u0074\u0068\u006f\u006f\u006b",Value :"\u0061e\u0061\u0063\u0075\u0074\u0065"},{Key :"l\u0065\u0066\u0074\u0074\u006f\u0072\u0069\u0067\u0068\u0074",Value :"\u0061f\u0069\u0069\u0032\u0039\u0039"},{Key :"r\u0069\u0067\u0068\u0074\u0074\u006f\u006c\u0065\u0066\u0074",Value :"\u0061f\u0069\u0069\u0033\u0030\u0030"},{Key :"\u007a\u0065\u0072\u006f\u006a\u006f\u0069\u006e",Value :"\u0061f\u0069\u0069\u0033\u0030\u0031"},{Key :"\u0041\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317"},{Key :"\u0041c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317"},{Key :"\u0042\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318"},{Key :"\u0042\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318"},{Key :"\u0056\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319"},{Key :"\u0056\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319"},{Key :"\u005a\u0068\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324"},{Key :"Z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324"},{Key :"\u005a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325"},{Key :"\u005a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325"},{Key :"\u0049i\u0062\u0072\u0065\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327"},{Key :"\u0049i\u0073h\u006f\u0072\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327"},{Key :"\u004b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328"},{Key :"\u004b\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328"},{Key :"\u0045\u006e",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331"},{Key :"\u0045\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331"},{Key :"\u0050e\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333"},{Key :"\u0050\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333"},{Key :"\u0045\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334"},{Key :"\u0045\u0072",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334"},{Key :"\u0045\u0073",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335"},{Key :"\u0045\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335"},{Key :"\u0054\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336"},{Key :"\u0054\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336"},{Key :"\u0045\u0066\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338"},{Key :"\u0045\u0066",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338"},{Key :"\u0053\u0068\u0063\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343"},{Key :"\u0053\u0068\u0063h\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343"},{Key :"\u0048\u0061\u0072\u0064",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344"},{Key :"\u0048\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344"},{Key :"\u0059\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345"},{Key :"\u0059\u0065\u0072\u0069",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345"},{Key :"\u0053\u006f\u0066\u0074",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346"},{Key :"\u0053\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346"},{Key :"\u0049\u0075",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348"},{Key :"\u0049\u0055\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348"},{Key :"\u0049\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349"},{Key :"\u0049\u0041\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349"},{Key :"\u0044\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351"},{Key :"D\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351"},{Key :"\u0047\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352"},{Key :"G\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352"},{Key :"\u0044\u007a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354"},{Key :"D\u007a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354"},{Key :"\u0049\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355"},{Key :"\u0049c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355"},{Key :"\u004a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357"},{Key :"\u004a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357"},{Key :"\u004e\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359"},{Key :"N\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359"},{Key :"\u0061c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365"},{Key :"\u0061\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365"},{Key :"\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367"},{Key :"\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367"},{Key :"\u0067\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368"},{Key :"\u0067\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368"},{Key :"\u0064\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369"},{Key :"\u0064\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369"},{Key :"\u0069\u006f",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371"},{Key :"\u0069\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371"},{Key :"\u007a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373"},{Key :"\u007a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373"},{Key :"\u0069i\u0062\u0072\u0065\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375"},{Key :"\u0069i\u0073h\u006f\u0072\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375"},{Key :"\u0065\u006e",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379"},{Key :"\u0065\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379"},{Key :"\u0074\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384"},{Key :"\u0074\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384"},{Key :"\u0075c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385"},{Key :"\u0075\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385"},{Key :"\u0065\u0066\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386"},{Key :"\u0065\u0066",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386"},{Key :"\u006b\u0068\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387"},{Key :"k\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387"},{Key :"s\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390"},{Key :"\u0073\u0068\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390"},{Key :"\u0073\u0068\u0063\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391"},{Key :"\u0073\u0068\u0063h\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391"},{Key :"\u0069\u0075",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396"},{Key :"\u0069\u0075\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396"},{Key :"\u0069\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397"},{Key :"\u0069\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397"},{Key :"d\u007a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302"},{Key :"\u0064\u007a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302"},{Key :"\u0069c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303"},{Key :"\u0069\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303"},{Key :"\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305"},{Key :"\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305"},{Key :"n\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307"},{Key :"\u006e\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307"},{Key :"k\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309"},{Key :"\u006b\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309"},{Key :"\u0075\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310"},{Key :"u\u0063\u0079\u0072\u0069\u006c\u0062\u0072\u0065\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310"},{Key :"Y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00346"},{Key :"\u0046\u0069\u0074a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00347"},{Key :"\u0049z\u0068i\u0074\u0073\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00348"},{Key :"\u0066\u0069\u0074a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00395"},{Key :"\u0069z\u0068i\u0074\u0073\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00390",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396"},{Key :"a\u0072\u0061\u0062\u0069\u0063\u0063\u006f\u006d\u006d\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388"},{Key :"c\u006f\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388"},{Key :"t\u0068\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395"},{Key :"\u0074h\u0072e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395"},{Key :"a\u0072\u0061\u0062\u0069ci\u006ed\u0069\u0063\u0064\u0069\u0067i\u0074\u0074\u0068\u0072\u0065\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395"},{Key :"\u0073\u0069\u0078\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398"},{Key :"\u0061\u0072\u0061\u0062ic\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0073\u0069\u0078",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398"},{Key :"\u0073i\u0078\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398"},{Key :"\u0073e\u0076e\u006e\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399"},{Key :"a\u0072\u0061\u0062\u0069ci\u006ed\u0069\u0063\u0064\u0069\u0067i\u0074\u0073\u0065\u0076\u0065\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399"},{Key :"s\u0065\u0076\u0065\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399"},{Key :"\u0061r\u0061b\u0069\u0063\u0073\u0065\u006d\u0069\u0063\u006f\u006c\u006f\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303"},{Key :"\u0073e\u006di\u0063\u006f\u006c\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303"},{Key :"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307"},{Key :"\u0061r\u0061b\u0069\u0063\u0071\u0075\u0065s\u0074\u0069o\u006e\u006d\u0061\u0072\u006b",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307"},{Key :"a\u006ce\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062o\u0076\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310"},{Key :"\u0061l\u0065f\u0077\u0069\u0074\u0068\u006da\u0064\u0064a\u0061\u0062\u006f\u0076\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310"},{Key :"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062o\u0076\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311"},{Key :"\u0061l\u0065f\u0077\u0069\u0074\u0068\u0068a\u006d\u007aa\u0061\u0062\u006f\u0076\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311"},{Key :"\u0077\u0061\u0077\u0077\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061a\u0062\u006f\u0076\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312"},{Key :"\u0077\u0061\u0077\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312"},{Key :"\u0074\u0065\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318"},{Key :"\u0074e\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318"},{Key :"\u0068\u0061\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321"},{Key :"\u0068a\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321"},{Key :"\u006b\u0068\u0061\u0068\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322"},{Key :"\u006b\u0068\u0061\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322"},{Key :"\u0064a\u006c\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323"},{Key :"\u0064\u0061\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323"},{Key :"\u0073\u0065\u0065\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327"},{Key :"\u0073\u0065\u0065\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327"},{Key :"s\u0068\u0065\u0065\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328"},{Key :"\u0073\u0068\u0065e\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328"},{Key :"\u0073a\u0064\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329"},{Key :"\u0073\u0061\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329"},{Key :"\u0064\u0061\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330"},{Key :"\u0064a\u0064\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330"},{Key :"\u0061i\u006e\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333"},{Key :"\u0061\u0069\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333"},{Key :"\u0066e\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341"},{Key :"\u0066\u0065\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341"},{Key :"\u0071\u0061\u0066",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342"},{Key :"\u0071a\u0066\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342"},{Key :"\u0061r\u0061\u0062\u0069\u0063\u006b\u0061f",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343"},{Key :"\u006ba\u0066\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343"},{Key :"\u006c\u0061\u006d",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344"},{Key :"\u006ca\u006d\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344"},{Key :"\u006d\u0065\u0065\u006d",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345"},{Key :"\u006d\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345"},{Key :"\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351"},{Key :"\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351"},{Key :"\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352"},{Key :"\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352"},{Key :"d\u0061m\u006d\u0061\u0074\u0061\u006e\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352"},{Key :"k\u0061\u0073\u0072\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356"},{Key :"\u006b\u0061\u0073r\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356"},{Key :"\u006a\u0065\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308"},{Key :"\u006ae\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308"},{Key :"\u0074\u0074\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00311"},{Key :"\u0064\u0064\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00312"},{Key :"\u006e\u006fo\u006e\u0067\u0068u\u006e\u006e\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00314"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u0061\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00334"},{Key :"\u0073\u0068\u0065\u0071\u0065\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u0073\u0068\u0065q\u0065\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u006e\u0065\u0077\u0073\u0068\u0065\u0071\u0065\u006c\u0073\u0069\u0067\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u006ee\u0077\u0073\u0068\u0065\u0071\u0065l",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u006d\u0061\u0071a\u0066",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345"},{Key :"m\u0061\u0071\u0061\u0066\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345"},{Key :"g\u0069\u006d\u0065\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366"},{Key :"\u0067\u0069\u006de\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366"},{Key :"\u0068\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368"},{Key :"\u0068\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368"},{Key :"\u007a\u0061\u0079i\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370"},{Key :"z\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370"},{Key :"\u0068e\u0074\u0068\u0065\u0062\u0072\u0065w",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371"},{Key :"\u0068\u0065\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371"},{Key :"\u0079o\u0064\u0068\u0065\u0062\u0072\u0065w",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373"},{Key :"\u0079\u006f\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373"},{Key :"\u0066\u0069\u006e\u0061lk\u0061\u0066\u0073\u0068\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0073\u0068\u0065\u0076\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0071\u0061\u006da\u0074\u0073\u0068\u0065br\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0071a\u006d\u0061\u0074\u0073",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006e\u0075\u006e\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379"},{Key :"\u006e\u0075\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006e\u0075\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379"},{Key :"\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384"},{Key :"\u0070\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384"},{Key :"\u0074\u0073\u0061d\u0069",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386"},{Key :"t\u0073\u0061\u0064\u0069\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386"},{Key :"\u0073\u0068\u0069\u006e\u0077\u0069\u0074\u0068\u0073i\u006e\u0064\u006f\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395"},{Key :"\u0073\u0068i\u006e\u0073\u0069n\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395"},{Key :"\u0073\u0068\u0069\u006e\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395"},{Key :"\u0076\u0061\u0076v\u0061\u0076\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316"},{Key :"\u0076\u0061\u0076\u0064\u0062\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316"},{Key :"\u0076\u0061\u0076y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317"},{Key :"\u0076\u0061\u0076\u0079\u006f\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317"},{Key :"\u0071\u0061\u006d\u0061ts\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071a\u006d\u0061\u0074\u0073\u0071\u0061\u0074\u0061\u006e\u0071\u0075a\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006da\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006dat\u0073\u0071\u0061\u0074\u0061\u006e\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0075\u006e\u0069\u0074\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061m\u0061\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0037",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0071\u0061\u0074\u0061\u006e\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"q\u0061\u006d\u0061\u0074sq\u0061t\u0061\u006e\u0077\u0069\u0064e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0064\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0039",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071a\u006da\u0074\u0073\u006e\u0061\u0072r\u006f\u0077h\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0030",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0033\u0033",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0073h\u0065\u0076\u0061\u0032\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065v\u0061\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065\u0076\u0061\u0031\u0035",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0068\u0065\u0076\u0061\u0031\u0031\u0035",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"s\u0068\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0068\u0065v\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0065\u006e\u0064\u0074\u0072\u0061\u006e\u0073\u0062\u006c\u006f\u0063\u006b",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065\u0076\u0061\u0032\u0032",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065v\u0061\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0068\u0065\u0076\u0061\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0069\u006ed\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303"},{Key :"\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303"},{Key :"\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341"},{Key :"\u0072\u0061\u0066\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341"},{Key :"\u0070\u0061\u0073e\u0071",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342"},{Key :"p\u0061\u0073\u0065\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342"},{Key :"\u006cs\u0063\u0072\u0069\u0070\u0074",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u006cs\u0071\u0075\u0061\u0072\u0065",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u006c\u0069\u0074e\u0072",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u0065\u006c\u006c",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u0070\u0064\u0066",Value :"\u0061f\u0069\u0069\u0036\u0031\u0035\u00373"},{Key :"\u006c\u0072\u006f",Value :"\u0061f\u0069\u0069\u0036\u0031\u0035\u00374"},{Key :"\u0072\u006c\u006f",Value :"\u0061f\u0069\u0069\u0036\u0031\u0035\u00375"},{Key :"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068n\u006f\u006ej\u006f\u0069\u006e\u0065\u0072",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"\u0063\u0077\u006d",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"\u007a\u0065\u0072\u006f\u006e\u006f\u006a\u006f\u0069\u006e",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"\u0063\u006f\u006dp\u0077\u006f\u0072\u0064\u006d\u0061\u0072\u006b",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"a\u0072\u0061\u0062\u0069cf\u0069v\u0065\u0070\u006f\u0069\u006et\u0065\u0064\u0073\u0074\u0061\u0072",Value :"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367"},{Key :"a\u0073t\u0065\u0072\u0069\u0073\u006b\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367"},{Key :"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367"},{Key :"\u0063\u006fm\u006d\u0061\u0072e\u0076\u0065\u0072\u0073\u0065\u0064\u006d\u006f\u0064",Value :"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337"},{Key :"\u006e\u0075\u006de\u0072\u0061\u006c\u0067\u0072\u0065\u0065\u006b",Value :"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337"},{Key :"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0069\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0061\u0069n\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061i\u006e\u006d\u0065\u0064\u0069\u0061l",Value :"\u0061i\u006em\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006er\u0074\u0068\u006f\u006f\u006b",Value :"\u0061\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00364",Value :"\u0061\u006c\u0065\u0066"},{Key :"\u0061\u006c\u0065\u0066\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061\u006c\u0065\u0066"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00315",Value :"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u0061\u006c\u0065\u0066",Value :"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u006d\u0061\u0070\u0069\u0071",Value :"\u0061\u006ce\u0066\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061l\u0065\u0066\u0066\u0069\u006e\u0061l",Value :"\u0061l\u0065f\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006c\u0065fw\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006e\u0061\u006c",Value :"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00313",Value :"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063"},{Key :"\u0061l\u0065f\u0077\u0069\u0074\u0068\u0068a\u006d\u007aa\u0062\u0065\u006c\u006f\u0077",Value :"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063"},{Key :"\u0061\u006c\u0065fw\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006c\u006f\u0077\u0066\u0069\u006e\u0061\u006c",Value :"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0062\u0065\u006co\u0077f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061l\u0065\u0066\u006c\u0061\u006d\u0065d",Value :"\u0061l\u0065f\u006c\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u006c\u0065fw\u0069\u0074\u0068\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006e\u0061\u006c",Value :"\u0061l\u0065\u0066\u006d\u0061d\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00349",Value :"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"a\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061",Value :"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006ce\u0066\u006d\u0061k\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",Value :"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062i\u0063"},{Key :"\u0079e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0070\u0061\u0074\u0061\u0068",Value :"\u0061l\u0065f\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0071a\u006d\u0061\u0074\u0073",Value :"\u0061\u006ce\u0066\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061l\u0065\u0070\u0068\u006d\u0061\u0074h",Value :"\u0061\u006c\u0065p\u0068"},{Key :"\u0062\u0061\u0063\u006b\u0063\u006f\u006e\u0067",Value :"\u0061\u006c\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0075p\u0061\u006c\u0070\u0068\u0061",Value :"\u0061\u006c\u0070h\u0061"},{Key :"\u0063\u0031\u0035\u0038",Value :"\u0061m\u0061\u0063\u0072\u006f\u006e"},{Key :"\u006c\u0061\u006e\u0067\u006c\u0065",Value :"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0061\u006e\u0067\u006c\u0065",Value :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00370",Value :"\u0061\u006e\u0067\u006b\u0068\u0061\u006e\u006b\u0068u\u0074\u0068\u0061\u0069"},{Key :"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0042\u0069\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u006c\u0065f\u0074\u0042\u0069\u0067\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0062\u0069\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u006c\u0065f\u0074\u0062\u0069\u0067\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u0072\u0069g\u0068\u0074\u0042\u0069\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u006e\u0067\u0062ra\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u0072\u0069g\u0068\u0074\u0062\u0069\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u006e\u0067\u0062ra\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0041\u006e\u0067\u0073\u0074\u0072\u006f\u006d",Value :"\u0061\u006e\u0067\u0073\u0074\u0072\u006f\u006d"},{Key :"\u0061\u0063\u0077\u0067\u0061\u0070\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077",Value :"\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0039\u00329",Value :"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u006d\u006f\u0064"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u006c\u0069\u006d\u0069\u0074",Value :"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073"},{Key :"\u0064\u006f\u0074e\u0071",Value :"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073"},{Key :"a\u006c\u006d\u006f\u0073\u0074\u0065\u0071\u0075\u0061\u006c",Value :"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078",Value :"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0064\u006f\u0074\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074",Value :"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065"},{Key :"\u0066\u0061\u006c\u006c\u0069\u006e\u0067\u0064\u006f\u0074\u0073\u0065\u0071",Value :"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065"},{Key :"\u0074i\u006c\u0064\u0065\u0074\u0072\u0070l",Value :"a\u0070\u0070\u0072\u006f\u0078\u0069\u0064\u0065\u006e\u0074"},{Key :"\u0061\u006c\u006d\u006f\u0073\u0074\u006f\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071",Value :"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070\u0072\u006f\u0066\u006c\u0069\u006e\u0065",Value :"\u0061\u0072\u0063"},{Key :"c\u006f\u0072\u0072\u0065\u0073\u0070\u006f\u006e\u0064\u0073",Value :"\u0061\u0072\u0063e\u0071"},{Key :"\u0061r\u0072o\u0077\u0073\u0065\u006d\u0061n\u0074\u0069c\u006c\u006f\u0063\u006b\u0077",Value :"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e"},{Key :"\u0063\u0075\u0072\u0076\u0065\u0061\u0072\u0072\u006fw\u006c\u0065\u0066\u0074",Value :"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u0065\u006d\u0063l\u006f\u0063\u006b\u0077",Value :"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e"},{Key :"\u0063u\u0072v\u0065\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",Value :"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e"},{Key :"\u006cm\u0069\u0064\u0074\u0069\u006c\u0064e",Value :"\u0061\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0061\u0031\u0036\u0033",Value :"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h"},{Key :"\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h"},{Key :"\u0064\u006f\u0077\u006e\u0064\u0061\u0073\u0068\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0064\u006f\u0077\u006e"},{Key :"\u006c\u0065\u0066\u0074\u0064\u0061\u0073\u0068\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0064\u0061\u0073\u0068a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068r\u0069\u0067\u0068\u0074"},{Key :"u\u0070\u0064\u0061\u0073\u0068\u0061\u0072\u0072\u006f\u0077",Value :"a\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0075\u0070"},{Key :"\u004c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068"},{Key :"\u0061\u0072r\u006f\u0077\u0064b\u006c\u006c\u006f\u006e\u0067\u0062\u006f\u0074\u0068",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068"},{Key :"\u0064\u0062\u006ca\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068"},{Key :"U\u0070\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u006c\u006f\u006e\u0067b\u006f\u0074\u0068\u0076",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076"},{Key :"\u0044o\u0077\u006e\u0061\u0072\u0072\u006fw",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0064\u006f\u0077\u006e"},{Key :"\u004ce\u0066\u0074\u0061\u0072\u0072\u006fw",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074"},{Key :"\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u0064\u0062\u006c",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074"},{Key :"\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0055p\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0075\u0070"},{Key :"\u0064o\u0077\u006e\u0061\u0072\u0072\u006fw",Value :"\u0061r\u0072\u006f\u0077\u0064\u006f\u0077n"},{Key :"\u0073w\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074"},{Key :"\u0073e\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006er\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006e\u0064\u006f\u0077\u006e",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065"},{Key :"\u0064\u006f\u0077\u006e\u0077\u0068\u0069\u0074\u0065a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065"},{Key :"\u0069o\u0074\u0061\u0073\u0075\u0062",Value :"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064\u0072\u0069\u0067h\u0074\u006d\u006f\u0064"},{Key :"\u0068\u006f\u006f\u006b\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074"},{Key :"\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006br\u0069\u0067\u0068\u0074"},{Key :"\u006ce\u0066\u0074\u0061\u0072\u0072\u006fw",Value :"\u0061r\u0072\u006f\u0077\u006c\u0065\u0066t"},{Key :"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",Value :"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0062\u006f\u0074\u0068\u0061\u006c\u0066"},{Key :"\u0061r\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074\u006e\u006f\u0074",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006e\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065"},{Key :"\u0061r\u0072o\u0077\u0070\u0061\u0072\u0072l\u0065\u0066t\u0072\u0069\u0067\u0068\u0074",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006ce\u0066t\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074",Value :"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u006c\u0065\u0066\u0074\u0077\u0068\u0069\u0074\u0065a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u0061\u0031\u0036\u0031",Value :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0069g\u0068\u0074\u0068a\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",Value :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0062\u006ft\u0068\u0061\u006c\u0066"},{Key :"\u0061\u0072r\u006f\u0077\u0064b\u006c\u0072\u0069\u0067\u0068\u0074\u006e\u006f\u0074",Value :"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"n\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006e\u006ft\u0064\u0062\u006ca\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",Value :"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"\u0061r\u0072o\u0077\u0070\u0061\u0072\u0072r\u0069\u0067h\u0074\u006c\u0065\u0066\u0074",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074"},{Key :"\u0072i\u0067h\u0074\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0072i\u0067h\u0074\u0077\u0068\u0069\u0074\u0065\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0062\u0061\u0072l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0074\u0061\u0062\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072",Value :"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0062\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",Value :"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006fw\u0074\u0061\u0069\u006c",Value :"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006cr\u0069\u0067\u0068\u0074"},{Key :"\u004c\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072o\u0077\u0074\u0072\u0069\u0070\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"R\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072r\u006f\u0077\u0074r\u0069\u0070\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0075p\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072\u006f\u0077\u0075\u0070"},{Key :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0064\u006e\u0062\u0073\u0065",Value :"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065"},{Key :"\u0075\u0070\u0064\u006f\u0077\u006e\u0061\u0072\u0072o\u0077\u0062\u0061\u0072",Value :"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065"},{Key :"\u006ew\u0061\u0072\u0072\u006f\u0077",Value :"a\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074"},{Key :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075p\u0064\u006f\u0077\u006e",Value :"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e"},{Key :"\u0075\u0070\u0064o\u0077\u006e\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e"},{Key :"\u006ee\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0072\u0069\u0067\u0068\u0074"},{Key :"a\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006e\u0075\u0070",Value :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0075\u0070\u0077h\u0069\u0074\u0065\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065"},{Key :"\u006c\u0069\u006e\u0065\u0076\u0065\u0072\u0074",Value :"\u0061s\u0063\u0072\u0069\u0070\u0074"},{Key :"\u006da\u0063\u0072\u006f\u006e\u0031",Value :"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064"},{Key :"\u006f\u0076\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0031",Value :"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061s\u0073\u0065\u0072\u0074\u0069\u006fn",Value :"\u0061\u0073\u0073\u0065\u0072\u0074"},{Key :"\u0061\u0073\u0074",Value :"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068"},{Key :"\u0061\u0073t\u0065\u0072\u0069s\u006b\u0063\u0065\u006e\u0074\u0065\u0072\u0065\u0064",Value :"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075a\u006c\u0061\u006c\u0074",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"a\u0073\u0079\u006d\u0070\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0069\u006de\u0071",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0069\u006di\u006c\u0061\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0061\u0074\u0073\u0069\u0067\u006e",Value :"\u0061\u0074"},{Key :"\u0061l\u0074e\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0061\u0079\u0069\u006e",Value :"\u0061\u0079i\u006e\u0061\u006ct\u006f\u006e\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00382",Value :"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0079\u0069\u006e",Value :"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"p\u0072\u0069\u006d\u0065\u0064\u0062\u006c\u0072\u0065\u0076",Value :"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0070\u0072\u0069m\u0065\u0064\u0062\u006c\u0072\u0065\u0076\u0031",Value :"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0073e\u0063\u006f\u006e\u0064\u0072\u0065v",Value :"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0074\u0072\u0069\u0070l\u0065\u0072\u0065\u0076",Value :"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0070r\u0069m\u0065\u0074\u0072\u0069\u0070\u006c\u0065\u0072\u0065\u0076\u0031",Value :"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00343",Value :"\u0062\u0061\u0068\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0076\u0065\u0072\u0074",Value :"\u0062\u0061\u0072"},{Key :"v\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0062\u0061\u0072",Value :"\u0062\u0061\u0072"},{Key :"\u0074\u0061\u0062l\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",Value :"\u0062a\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061"},{Key :"\u0068\u006f\u006d\u0065",Value :"b\u0061\u0072\u006f\u0076er\u006eo\u0072\u0074\u0068\u0077\u0065s\u0074\u0061\u0072\u0072\u006f\u0077"},{Key :"\u006e\u006f\u0072",Value :"\u0062\u0061\u0072\u0076\u0065\u0065"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00366",Value :"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0062\u0065",Value :"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00316",Value :"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0062\u0065\u0068",Value :"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0062\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0062\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0062e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"b\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0062\u0065\u0068\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"b\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062\u0065h\u0077\u0069\u0074h\u006e\u006f\u006f\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0062e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075\u0070\u0062\u0065\u0074\u0061",Value :"\u0062\u0065\u0074\u0061"},{Key :"\u0047\u0065\u0068\u006f\u006f\u006b",Value :"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u0076\u0061\u0072\u0062\u0065\u0074a",Value :"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0062e\u0074\u0064\u0061\u0067\u0065\u0073h",Value :"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0062\u0065\u0074\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0062\u0065\u0074\u0068\u006d\u0061\u0074\u0068",Value :"\u0062\u0065\u0074\u0068"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00365",Value :"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0062\u0065\u0074",Value :"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"b\u0065\u0074\u0077\u0069\u0074\u0068\u0072\u0061\u0066\u0065",Value :"\u0062\u0065\u0074\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0031",Value :"\u0062\u0068\u006fo\u006b"},{Key :"\u006e\u0061\u0072\u0079\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006f\u0072",Value :"\u0062\u0069\u0067\u0076\u0065\u0065"},{Key :"\u006e\u0061\u0072\u0079\u006c\u006f\u0067\u0069\u0063a\u006c\u0061\u006e\u0064",Value :"\u0062\u0069\u0067\u0077\u0065\u0064\u0067\u0065"},{Key :"r\u0069\u006e\u0067\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0062\u0069\u006c\u0061\u0062\u0069\u0061\u006c\u0063\u006c\u0069\u0063\u006b"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u006e\u0077\u006f\u0070\u0065\u006e",Value :"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064\u0077\u0068\u0069t\u0065"},{Key :"\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u006c\u0065f\u0074\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063kl\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0062\u006ca\u0063\u006b\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074",Value :"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072"},{Key :"\u0074r\u0069\u0061\u0067\u006c\u0066",Value :"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072"},{Key :"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074",Value :"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"\u0074\u0072i\u0061\u006e\u0067l\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064\u0031",Value :"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"\u006cl\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u0077\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u006cr\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u0065\u0073\u006c\u0064",Value :"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0066\u0069\u006c\u006c\u0065\u0064\u0072\u0065\u0063\u0074",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065"},{Key :"\u0068r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065"},{Key :"\u0062\u006c\u0061\u0063\u006b\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074",Value :"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r"},{Key :"\u0074r\u0069\u0061\u0067\u0072\u0074",Value :"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r"},{Key :"\u0062l\u0061c\u006b\u0074\u0072\u0069\u0061n\u0067\u006ce\u0072\u0069\u0067\u0068\u0074",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068t\u0073\u006c\u0064\u0031",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065"},{Key :"\u0048\u0031\u0038\u0035\u0034\u0033",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0062\u006f\u0078\u0066i\u006c\u006c\u0065\u0064",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"s\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"b\u006c\u0061\u0063\u006b\u0073\u006d\u0069\u006c\u0065\u0079",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065"},{Key :"\u0069\u006e\u0076s\u006d\u0069\u006c\u0065\u0066\u0061\u0063\u0065",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065"},{Key :"\u0073\u006d\u0061\u006clt\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0069\u006e\u0076\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u0064\u006f\u0077\u006e"},{Key :"\u0074\u0072\u0061n\u0067\u006c\u0065\u006e\u0077\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u0075l\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006e\u0065\u0073\u006c\u0064",Value :"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0075r\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"\u0073\u006da\u006c\u006c\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"\u0076\u0069\u0073i\u0062\u006c\u0065\u0073\u0070\u0061\u0063\u0065",Value :"\u0062\u006c\u0061n\u006b"},{Key :"v\u0069\u0073\u0075\u0061\u006c\u0073\u0070\u0061\u0063\u0065",Value :"\u0062\u006c\u0061n\u006b"},{Key :"\u0062l\u006f\u0063\u006b\u0066\u0075\u006cl",Value :"\u0062\u006c\u006fc\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00306",Value :"\u0062\u006f\u0062a\u0069\u006d\u0061\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0062o\u0074\u0074\u006f\u006d\u0061\u0072c",Value :"\u0062\u006f\u0074\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0073\u0071u\u0061\u0072\u0065v\u0065\u0072\u0074\u0062\u0069\u0073\u0065\u0063\u0074",Value :"\u0062\u006f\u0078\u0062\u0061\u0072"},{Key :"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u0042\u0069\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u0062\u0069\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u006c\u0062\u0072\u0061\u0063\u0065",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0068\u0074\u0069\u0070\u0064\u006f\u0077n\u006c\u0065\u0066\u0074",Value :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c"},{Key :"\u0062r\u0061c\u0065\u0068\u0074\u0069\u0070d\u006f\u0077n\u0072\u0069\u0067\u0068\u0074",Value :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068t\u0042\u0069\u0067\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068t\u0062\u0069\u0067\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0062\u0072\u0061\u0063\u0065",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061p\u0070\u006c\u0065\u006f\u0070\u0065n",Value :"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0074"},{Key :"\u0065\u006e\u0074e\u0072",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u006d\u0069\u0064"},{Key :"\u0063a\u0072r\u0069\u0061\u0067\u0065\u0072e\u0074\u0075r\u006e\u006c\u0065\u0066\u0074",Value :"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0074\u0070"},{Key :"\u0062r\u0061c\u0065\u0068\u0074\u0069\u0070\u0075\u0070\u006c\u0065\u0066\u0074",Value :"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0062\u0072a\u0063\u0065\u0068t\u0069\u0070\u0075\u0070\u0072\u0069\u0067\u0068\u0074",Value :"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0042\u0069\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0062\u0069\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u006c\u0062\u0072\u0061\u0063\u006b",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072a\u0063\u006b\u0065t\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072a\u0063\u006b\u0065t\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0062\u0072\u0061\u0063\u006b",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"c\u006f\u006e\u0074\u0065\u0078\u0074\u006d\u0065\u006e\u0075",Value :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0062\u0074"},{Key :"\u0070\u006f\u0077e\u0072",Value :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0074\u0070"},{Key :"\u0072\u0068\u006f\u0031",Value :"\u0062\u0072\u0069\u0064ge\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063m\u0062"},{Key :"s\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0062\u0075\u006c\u006c\u0065\u0074"},{Key :"\u0062\u0075\u006c\u006c\u0065\u0074\u006d\u0061\u0074\u0068",Value :"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072"},{Key :"\u0070\u0072\u006f\u0064\u0075\u0063\u0074\u0064\u006f\u0074",Value :"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072"},{Key :"\u0076\u0079\u0073\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072"},{Key :"\u0062u\u006c\u006c\u0073\u0065\u0079\u00651",Value :"\u0062\u0075\u006c\u006c\u0073\u0065\u0079\u0065"},{Key :"\u0063\u0074",Value :"\u0063"},{Key :"\u006fv\u0065\u0072\u0073\u0074\u006f\u0072e",Value :"\u0063\u0031\u0034\u0033"},{Key :"\u0068m\u0061\u0063\u0072\u006f\u006e",Value :"\u0063\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0063\u0061\u006e\u0064\u0072\u0061",Value :"\u0063\u0061\u006e\u0064\u0072\u0061\u0062\u0069\u006ed\u0075\u0063\u006d\u0062"},{Key :"\u0077\u0068\u0069\u0074ea\u0072\u0072\u006f\u0077\u0075\u0070\u0066\u0072\u006f\u006d\u0062\u0061\u0072",Value :"\u0063\u0061\u0070\u0073\u006c\u006f\u0063\u006b"},{Key :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00348",Value :"\u0063\u0061\u0072\u0065\u006f\u0066"},{Key :"\u0063\u0061\u0072e\u0074",Value :"c\u0061\u0072\u0065\u0074\u0069\u006e\u0073\u0065\u0072\u0074"},{Key :"\u0063\u0068\u0065c\u006b",Value :"\u0063\u0061\u0072\u006f\u006e\u0063\u006d\u0062"},{Key :"\u0063a\u0072r\u0069\u0061\u0067\u0065\u0072\u0072\u0065\u0074\u0075\u0072\u006e",Value :"\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e"},{Key :"l\u0069\u006e\u0065\u0076\u0065\u0072\u0074\u0073\u0075\u0062",Value :"\u0063\u0063\u0075r\u006c"},{Key :"\u0063\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0063\u0064\u006f\u0074"},{Key :"\u004b\u006f\u0070p\u0061",Value :"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0063\u006d\u0062"},{Key :"\u0063\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065f\u0074\u0042\u0069\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065f\u0074\u0062\u0069\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u006c\u0063\u0065i\u006c",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063\u0065i\u006c\u0069\u006eg\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063\u0065i\u006c\u0069\u006eg\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0063\u0065i\u006c",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063e\u006c\u0073\u0069\u0075\u0073",Value :"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065"},{Key :"\u0064\u0065g\u0072\u0065\u0065c\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065",Value :"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065"},{Key :"\u0043\u004c",Value :"\u0063\u0065\u006e\u0074\u0072\u0065\u006c\u0069\u006e\u0065"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00389",Value :"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0063\u0068\u0065",Value :"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u0063h\u0069",Value :"\u0063\u0068\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00390",Value :"\u0063\u0068\u006fc\u0068\u0061\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00388",Value :"c\u0068\u006f\u0063\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00389",Value :"\u0063\u0068\u006fc\u0068\u0069\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00392",Value :"c\u0068\u006f\u0063\u0068\u006f\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0072i\u006e\u0067\u0065\u0071\u0075\u0061l",Value :"\u0063\u0069\u0072\u0063\u0065\u0071"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0061\u0073\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0073\u0074e\u0072\u0069\u0073\u006b"},{Key :"\u0063i\u0072c\u006c\u0065\u0062\u006f\u0074\u0074\u006f\u006d\u0073\u006c\u0064",Value :"c\u0069\u0072\u0063\u006ceb\u006ft\u0074\u006f\u006d\u0068\u0061l\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0063\u0069\u0072c\u006c\u0065\u0063\u006f\u0070\u0079\u0072\u0074"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u006d\u0069\u006e\u0075\u0073\u0031",Value :"c\u0069\u0072\u0063\u006c\u0065\u0064\u0064\u0061\u0073\u0068"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u0064\u0065\u0071\u0075\u0061\u006c",Value :"c\u0069\u0072\u0063\u006c\u0065\u0065\u0071\u0075\u0061\u006c"},{Key :"c\u0069\u0072\u0063\u006cem\u0075l\u0074\u0069\u0070\u006c\u0079d\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0063i\u0072c\u006c\u0065\u006d\u0075\u006ct\u0069\u0070l\u0079\u0074\u0065\u0078\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u006f\u0074\u0069\u006d\u0065\u0073",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"t\u0069\u006d\u0065\u0073\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0063i\u0072\u0063\u006c\u0065\u0064\u006ft",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u0063\u0069r\u0063\u006c\u0065d\u006f\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u006f\u0074\u0074\u0065\u0078\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u006f\u0064\u006f\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075s\u0074\u0065\u0078\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"\u006f\u0070\u006cu\u0073",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"\u0070\u006c\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u0064\u0063\u0069\u0072\u0063",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u006e\u0067"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u0074\u006f\u0070\u0073\u006c\u0064",Value :"\u0063i\u0072c\u006c\u0065\u0074\u006f\u0070h\u0061\u006cf\u0062\u006c\u0061\u0063\u006b"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u006e\u0065\u0073\u006c\u0064",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064b\u006c\u0061\u0063\u006b"},{Key :"\u0063i\u0072c\u006c\u0065\u0076\u0065\u0072\u0074\u0068\u0061\u0074\u0063\u0068",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0076\u0065\u0072t\u0066\u0069\u006c\u006c"},{Key :"\u0063\u0069\u0072\u0063le\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b",Value :"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064",Value :"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"c\u0069r\u0063\u006c\u0065\u0072\u0069\u0067\u0068\u0074h\u0061\u006c\u0066\u0062la\u0063\u006b",Value :"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u0067h\u0074\u0073\u006c\u0064",Value :"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0068\u0061\u0074",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0068a\u0074\u0077\u0069\u0064\u0065",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0068\u0061\u0074\u0077\u0069\u0064\u0065\u0072",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0068a\u0074\u0077\u0069\u0064\u0065\u0073t",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0063\u0077g\u0061\u0070\u0063i\u0072\u0063\u006c\u0065\u0061\u0072\u0072\u006f\u0077",Value :"\u0063l\u006f\u0063\u006b\u0077\u0069\u0073e"},{Key :"\u0061\u0031\u0031\u0032",Value :"\u0063\u006c\u0075\u0062"},{Key :"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074",Value :"\u0063\u006c\u0075\u0062"},{Key :"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0062\u006c\u0061\u0063\u006b",Value :"\u0063\u006c\u0075\u0062"},{Key :"v\u0061\u0072\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074",Value :"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u006f\u0075\u0074h\u0065\u0061\u0073\u0074",Value :"\u0063\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u006da\u0074\u0068\u0063\u006f\u006c\u006fn",Value :"\u0063\u006f\u006co\u006e"},{Key :"\u0063\u006f\u006c\u006f\u006e\u0065\u0071\u0075\u0061\u006c",Value :"\u0063o\u006c\u006f\u006e\u0065\u0071"},{Key :"\u0043\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0063\u006f\u006c\u006f\u006e\u0063\u0075\u0072",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0063\u006f\u006c\u006f\u006e\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0063o\u006c\u006f\u006e\u0073\u0069\u0067n",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0069\u006f\u0074\u0061\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",Value :"\u0063\u006f\u006d\u006d\u0061\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062"},{Key :"\u006f\u0063\u006f\u006d\u006d\u0061\u0074\u006f\u0070r\u0069\u0067\u0068\u0074",Value :"\u0063o\u006dm\u0061\u0061\u0062\u006f\u0076e\u0072\u0069g\u0068\u0074\u0063\u006d\u0062"},{Key :"\u0075\u0070s\u0069\u006c\u006fn\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",Value :"c\u006f\u006d\u006d\u0061re\u0076e\u0072\u0073\u0065\u0064\u0061b\u006f\u0076\u0065\u0063\u006d\u0062"},{Key :"\u006f\u0074\u0075r\u006e\u0065\u0064\u0063\u006f\u006d\u006d\u0061",Value :"\u0063\u006f\u006d\u006dat\u0075\u0072\u006e\u0065\u0064\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062"},{Key :"\u0061p\u0070r\u006f\u0078\u0069\u006d\u0061t\u0065\u006cy\u0065\u0071\u0075\u0061\u006c",Value :"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et"},{Key :"\u0063\u006f\u006e\u0067",Value :"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et"},{Key :"\u0063\u006f\u006et\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0063\u006f\u006e\u0074in\u0074\u0065\u0067\u0072\u0061\u006c\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0063\u006fn\u0074\u0069\u006et\u0065\u0067\u0072\u0061\u006c\u0074\u0065\u0078\u0074",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u006f\u0069\u006e\u0074",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0041\u0043\u004b",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0041\u0043\u004b"},{Key :"\u0042\u0045\u004c",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0042\u0045\u004c"},{Key :"\u0042\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0042S"},{Key :"\u0043\u0041\u004e",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0043\u0041\u004e"},{Key :"\u0043\u0052",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R"},{Key :"\u006e\u006fn\u006d\u0061\u0072k\u0069\u006e\u0067\u0072\u0065\u0074\u0075\u0072\u006e",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R"},{Key :"\u0058\u004f\u004e",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031"},{Key :"\u0044\u0043\u0031",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031"},{Key :"\u0044\u0043\u0032",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0032"},{Key :"\u0058\u004f\u0046",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033"},{Key :"\u0044\u0043\u0033",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033"},{Key :"\u0044\u0043\u0034",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0034"},{Key :"\u0044\u0045\u004c",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0045\u004c"},{Key :"\u0044\u0043\u0030",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045"},{Key :"\u0044\u004c\u0045",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045"},{Key :"\u0045\u004d",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0045M"},{Key :"\u0045\u004e\u0051",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004e\u0051"},{Key :"\u0045\u004f\u0054",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004f\u0054"},{Key :"\u0045\u0053\u0043",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0053\u0043"},{Key :"\u0045\u0054\u0042",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0042"},{Key :"\u0045\u0054\u0058",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0058"},{Key :"\u0046\u0046",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046F"},{Key :"\u0046\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S"},{Key :"\u0049\u0046\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S"},{Key :"\u0047\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S"},{Key :"\u0049\u0047\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S"},{Key :"\u0048\u0054",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0048T"},{Key :"\u004c\u0046",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u004cF"},{Key :"\u004e\u0041\u004b",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0041\u004b"},{Key :"\u002e\u006e\u0075l\u006c",Value :"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c"},{Key :"\u004e\u0055\u004c",Value :"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c"},{Key :"\u0049\u0052\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S"},{Key :"\u0052\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S"},{Key :"\u0053\u0049",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053I"},{Key :"\u0053\u004f",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053O"},{Key :"\u0053\u0054\u0058",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u004f\u0054"},{Key :"\u0053\u004f\u0048",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0054\u0058"},{Key :"\u0045\u004f\u0046",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042"},{Key :"\u0053\u0055\u0042",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042"},{Key :"\u0053\u0059\u004e",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0059\u004e"},{Key :"\u0049\u0055\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S"},{Key :"\u0055\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S"},{Key :"\u0056\u0054",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0056T"},{Key :"\u0061\u006d\u0061l\u0067",Value :"\u0063o\u0070\u0072\u006f\u0064\u0075\u0063t"},{Key :"\u0063\u006f\u0070\u0072\u006f\u0064",Value :"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0063\u006f\u0070\u0072\u006f\u0064\u0075\u0063\u0074\u0074\u0065\u0078\u0074",Value :"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0064\u006f\u0074\u0064\u0062\u006c\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068\u0065\u0064"},{Key :"\u006d\u0075l\u0074\u0069\u0070l\u0079\u006d\u0075\u006c\u0074\u0069\u0073\u0065\u0074",Value :"\u0063\u0075\u0070\u0064\u006f\u0074"},{Key :"\u006d\u0075\u006c\u0074\u0069\u0073\u0065\u0074",Value :"\u0063\u0075\u0070l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0063u\u0072\u006c\u0061\u006e\u0064",Value :"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064"},{Key :"\u0063\u0075\u0072\u006c\u0079\u0077\u0065\u0064\u0067\u0065",Value :"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064"},{Key :"\u0075\u0070\u0072\u0069\u0073\u0065",Value :"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064"},{Key :"\u006c\u006f\u006f\u0070\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",Value :"\u0063u\u0072\u006c\u0079\u006c\u0065\u0066t"},{Key :"\u0063\u0075\u0072\u006c\u006f\u0072",Value :"\u0063u\u0072\u006c\u0079\u006f\u0072"},{Key :"\u0063\u0075\u0072\u006c\u0079\u0076\u0065\u0065",Value :"\u0063u\u0072\u006c\u0079\u006f\u0072"},{Key :"\u0064\u006f\u0077\u006e\u0066\u0061\u006c\u006c",Value :"\u0063u\u0072\u006c\u0079\u006f\u0072"},{Key :"\u006c\u006f\u006f\u0070\u0061\u0072\u0072\u006f\u0077r\u0069\u0067\u0068\u0074",Value :"\u0063\u0075\u0072\u006c\u0079\u0072\u0069\u0067\u0068\u0074"},{Key :"a\u0072\u0072\u006f\u0077\u0063\u006c\u006f\u0063\u006b\u0077",Value :"\u0063\u0077\u006f\u0070\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077"},{Key :"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c",Value :"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0064\u0061\u0064\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0064\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064a\u0064\u006d\u0065\u0064\u0069\u0061l",Value :"\u0064a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00307",Value :"\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064\u0061\u0067e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0073\u0070\u0061c\u0065\u006f\u0070\u0065\u006e\u0062\u006f\u0078",Value :"\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064d\u0061\u0067\u0067\u0065\u0072",Value :"\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064a\u006ce\u0074\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0068\u006d\u0061\u0074\u0068",Value :"\u0064\u0061\u006c\u0065\u0074\u0068"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00367",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006ce\u0074",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064a\u006ce\u0074\u0068\u0061\u0074\u0061\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074ha\u0074a\u0066\u0070\u0061\u0074\u0061h\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064a\u006ce\u0074\u0068\u0061\u0074\u0061\u0066\u0073\u0065\u0067\u006f\u006c",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074ha\u0074a\u0066\u0073\u0065\u0067\u006fl\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0068\u0069\u0072\u0069\u0071",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0068i\u0072\u0069\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0068\u006f\u006c\u0061\u006d",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0070\u0061\u0074\u0061\u0068",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0070a\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074\u0071\u0075\u0062\u0075\u0074\u0073",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0071\u0075\u0062\u0075\u0074\u0073\u0068e\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0073\u0065\u0067\u006f\u006c",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0073e\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0073\u0068\u0065\u0076\u0061",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0073h\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0074\u0073\u0065\u0072\u0065",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0074s\u0065\u0072\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c",Value :"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00355",Value :"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064\u0061\u006dm\u0061",Value :"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064\u0061\u006d\u006d\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063",Value :"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064a\u006dm\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",Value :"d\u0061\u006d\u006d\u0061\u006d\u0065\u0064\u0069\u0061\u006c"},{Key :"d\u0061\u0072\u0067\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0068\u0069\u0066\u0074\u006f\u0075\u0074",Value :"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0078\u0063\u0065\u0073\u0073",Value :"\u0064a\u0073\u0068\u0063\u006f\u006c\u006fn"},{Key :"\u0064\u0062\u006ca\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e",Value :"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e"},{Key :"\u0064\u006f\u0077\u006e\u0064\u006f\u0077\u006e\u0061r\u0072\u006f\u0077\u0073",Value :"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e"},{Key :"\u0074\u0077o\u0068\u0065\u0061d\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074"},{Key :"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064r\u0069\u0067\u0068\u0074"},{Key :"\u0075\u0070\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075\u0070"},{Key :"\u006c\u0042\u0072\u0061\u0063\u006b",Value :"\u0064\u0062\u006c\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0042\u0072\u0061\u0063\u006b",Value :"\u0064b\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0064\u006f\u0075\u0062\u006c\u0065\u0069\u006e\u0074e\u0067\u0072\u0061\u006c",Value :"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069\u0069\u006e\u0074",Value :"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"i\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0064\u0062\u006c",Value :"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0056\u0065\u0072\u0074",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"\u0062\u0061\u0072\u0064\u0062\u006c",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0062a\u0072\u0064\u0062\u006c",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"v\u0065\u0072\u0074\u006c\u0069\u006e\u0065\u0064\u0062\u006c",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"\u0064\u006f\u0077\u006e\u0073\u006c\u006f\u0070\u0065\u0065\u006c\u006ci\u0070\u0073\u0069\u0073",Value :"\u0064\u0064\u006ft\u0073"},{Key :"\u0064\u0065\u0063\u0069ma\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062i\u0063",Value :"\u0064\u0065\u0063im\u0061\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0064\u0065\u006c\u0074\u0061\u0065\u0071\u0075\u0061\u006c",Value :"\u0064e\u0066\u0069\u006e\u0065\u0073"},{Key :"\u0074r\u0069\u0061\u006e\u0067\u006c\u0065q",Value :"\u0064e\u0066\u0069\u006e\u0065\u0073"},{Key :"\u006b\u0065\u006c\u0076\u0069\u006e",Value :"\u0064\u0065\u0067r\u0065\u0065\u006b\u0065\u006c\u0076\u0069\u006e"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0034",Value :"\u0064\u0065\u0068\u0069\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006b\u0068\u0061\u0072\u0074\u0064\u0065\u0073",Value :"\u0064e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0075p\u0064\u0065\u006c\u0074\u0061",Value :"\u0064\u0065\u006ct\u0061"},{Key :"\u006d\u0061\u0063\u0072\u006f\u006e\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0064\u0065\u007a\u0068"},{Key :"\u0067\u0072\u0061\u0076\u0065\u0073\u0075\u0062",Value :"\u0064\u0068\u006fo\u006b"},{Key :"\u0061\u0031\u0031\u0031",Value :"\u0064i\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0064\u0069\u0061m\u006f\u006e\u0064\u0073\u006f\u006c\u0069\u0064",Value :"\u0064i\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0076\u0061\u0072\u0064\u0069\u0061\u006d\u006f\u006ed\u0073\u0075\u0069\u0074",Value :"\u0064i\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0073\u006d\u0077h\u0074\u0064\u0069\u0061\u006d\u006f\u006e\u0064",Value :"d\u0069\u0061\u006d\u006f\u006e\u0064\u006d\u0061\u0074\u0068"},{Key :"d\u0069\u0061\u006d\u006f\u006e\u0064\u0073\u0075\u0069\u0074",Value :"\u0064\u0069a\u006d\u006f\u006ed\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0064\u0064\u006f\u0074",Value :"d\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u006d\u0062"},{Key :"\u0064\u0069\u0061\u006c\u0079\u0074\u0069\u006b\u0061t\u006f\u006e\u006f\u0073",Value :"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0074\u006f\u006e\u006f\u0073"},{Key :"\u0062\u0075\u006d\u0070\u0065\u0071",Value :"\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065"},{Key :"\u0063\u0031\u0034\u0034",Value :"\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0064\u0069\u0076",Value :"\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0064\u0069v\u0069\u0064\u0065o\u006e\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079",Value :"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0064\u0069\u0076\u0069\u0064\u0065\u006f\u006e\u0074\u0069\u006d\u0065\u0073",Value :"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0062\u0061\u0072\u0031",Value :"\u0064i\u0076\u0069\u0064\u0065\u0073"},{Key :"\u006d\u0069\u0064",Value :"\u0064i\u0076\u0069\u0064\u0065\u0073"},{Key :"\u0076\u0065\u0078\u0074\u0065\u006e\u0064\u0073\u0069\u006e\u0067\u006c\u0065",Value :"\u0064i\u0076\u0069\u0064\u0065\u0073"},{Key :"\u0064\u0069\u0076\u0073\u006c\u0061\u0073\u0068",Value :"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068"},{Key :"\u0073l\u0061\u0073\u0068\u006d\u0061\u0074h",Value :"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00399",Value :"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064\u006a\u0065",Value :"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0062\u006c\u006f\u0063kt\u0068\u0072\u0065\u0065\u0071\u0074\u0072\u0073\u0068\u0061\u0064\u0065\u0064",Value :"\u0064k\u0073\u0068\u0061\u0064\u0065"},{Key :"\u0073h\u0061\u0064\u0065\u0064\u0061\u0072k",Value :"\u0064k\u0073\u0068\u0061\u0064\u0065"},{Key :"\u0064\u0063\u0072\u006f\u0061\u0074",Value :"\u0064m\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0064\u0073\u006c\u0061\u0073\u0068",Value :"\u0064m\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0062\u006c\u006fc\u006b\u006c\u006f\u0077\u0068\u0061\u006c\u0066",Value :"\u0064n\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00394",Value :"d\u006f\u0063\u0068\u0061\u0064\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00300",Value :"\u0064o\u0064\u0065\u006b\u0074\u0068\u0061i"},{Key :"\u0065\u0073\u0063\u0075\u0064\u006f",Value :"\u0064\u006f\u006c\u006c\u0061\u0072"},{Key :"\u006d\u0061\u0074\u0068\u0064\u006f\u006c\u006c\u0061\u0072",Value :"\u0064\u006f\u006c\u006c\u0061\u0072"},{Key :"\u006di\u006c\u0072\u0065\u0069\u0073",Value :"\u0064\u006f\u006c\u006c\u0061\u0072"},{Key :"\u0069o\u0074a\u0064\u0069\u0061\u0065\u0072e\u0073\u0069s\u0074\u006f\u006e\u006f\u0073",Value :"\u0064o\u0074\u0061\u0063\u0063\u0065\u006et"},{Key :"\u0064\u006f\u0074",Value :"\u0064\u006f\u0074a\u0063\u0063\u0065\u006e\u0074\u0063\u006d\u0062"},{Key :"\u0053\u0074\u0069\u0067\u006d\u0061",Value :"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062"},{Key :"d\u006f\u0074\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",Value :"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062"},{Key :"\u0062\u0072\u0065v\u0065\u0069\u006e\u0076\u006e\u006f\u0073\u0070",Value :"\u0064o\u0074l\u0065\u0073\u0073\u006a\u0073t\u0072\u006fk\u0065\u0068\u006f\u006f\u006b"},{Key :"\u0067\u0065\u006f\u006d\u0070\u0072\u006f\u0070\u006fr\u0074\u0069\u006f\u006e",Value :"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073"},{Key :"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006fn\u0067\u0065\u006f\u006d",Value :"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0061\u0073\u0068",Value :"\u0064\u006f\u0074t\u0065\u0064\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0078\u0062\u0073o\u006c",Value :"\u0064o\u0077\u006e\u0073\u006c\u006f\u0070e"},{Key :"\u006da\u0063\u0072\u006f\u006e\u0073\u0075b",Value :"\u0064\u0074\u0061i\u006c"},{Key :"\u0067\u0061\u006d\u006d\u0061\u0031",Value :"\u0064\u007a"},{Key :"\u0074\u0069\u006cd\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0064\u007a\u0061\u006c\u0074\u006f\u006e\u0065"},{Key :"\u0047\u0068\u0061\u0063\u0065\u006b",Value :"\u0064z\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072e\u006e\u006f\u0073\u0070",Value :"\u0064\u007a\u0063\u0075\u0072\u006c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00393",Value :"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064\u007a\u0068\u0065",Value :"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00301",Value :"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0065\u0063\u0079\u0072\u0069\u006c",Value :"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0065\u0064\u006f\u0074",Value :"\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00300",Value :"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0072\u0061\u0062\u0069ci\u006ed\u0069\u0063\u0064\u0069\u0067i\u0074\u0065\u0069\u0067\u0068\u0074",Value :"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"e\u0069\u0067\u0068\u0074\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006d\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006ft\u0065\u0064\u0062\u006c",Value :"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064"},{Key :"\u0074\u0077\u006f\u006e\u006f\u0074\u0065\u0073",Value :"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064"},{Key :"\u0065\u0069\u0067\u0068\u0074\u0073\u0075\u0062",Value :"\u0065\u0069\u0067\u0068\u0074\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0065ig\u0068\u0074",Value :"\u0065\u0069\u0067h\u0074\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00368",Value :"\u0065i\u0067\u0068\u0074\u0074\u0068\u0061i"},{Key :"o\u006d\u0065\u0067\u0061\u0063\u006c\u006f\u0073\u0065\u0064",Value :"\u0065\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00377",Value :"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u006c",Value :"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u006e",Value :"\u0065l\u0065\u006d\u0065\u006e\u0074"},{Key :"\u0065l\u0069\u0070\u0073\u0069\u0073",Value :"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073"},{Key :"\u0075n\u0069c\u006f\u0064\u0065\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073"},{Key :"\u0076\u0064\u006ft\u0073",Value :"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0076\u0065\u0072t\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00378",Value :"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u006d",Value :"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0070u\u006e\u0063\u0074\u0064\u0061\u0073h",Value :"\u0065\u006d\u0064\u0061\u0073\u0068"},{Key :"\u0076\u0061\u0072\u006e\u006f\u0074\u0068\u0069\u006e\u0067",Value :"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074"},{Key :"\u0072a\u006e\u0067\u0065\u0064\u0061\u0073h",Value :"\u0065\u006e\u0064\u0061\u0073\u0068"},{Key :"\u006e\u0067",Value :"\u0065\u006e\u0067"},{Key :"\u0072\u0069\u006e\u0067ri\u0067\u0068\u0074\u0068\u0061\u006c\u0066\u0063\u0065\u006e\u0074\u0065\u0072",Value :"\u0065\u006f\u0070e\u006e"},{Key :"c\u0065\u0064\u0069\u006c\u006c\u0061\u006e\u006f\u0073\u0070",Value :"e\u006f\u0070\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064"},{Key :"\u0072i\u006eg\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0073\u0075\u0070",Value :"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"t\u0061\u0063\u006b\u0064\u006f\u0077\u006e\u006d\u0069\u0064",Value :"\u0065\u006f\u0070\u0065nr\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u006c\u006f\u0073\u0065\u0064"},{Key :"\u0074a\u0063\u006b\u0075\u0070\u006d\u0069d",Value :"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065d\u0068\u006f\u006f\u006b"},{Key :"\u0075p\u0065\u0070\u0073\u0069\u006c\u006fn",Value :"\u0065p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0075\u0070\u0076a\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u0063\u0068\u0065\u0076\u0065\u0072\u0074\u0062\u0061\u0072",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u0048\u0063\u0079\u0072\u0069\u006c",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076"},{Key :"\u0075\u0070\u0062\u0061\u0063\u006b\u0065\u0070\u0073\u0069\u006c\u006f\u006e",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0063\u006f\u006c\u006f\u006e",Value :"\u0065q\u0063\u006f\u006c\u006f\u006e"},{Key :"\u0064\u0065\u0066\u0069\u006e\u0065\u0071\u0075\u0061\u006c",Value :"\u0065\u0071\u0064e\u0066"},{Key :"\u0065\u0071\u0075a\u006c\u0067\u0072\u0065\u0061\u0074\u0065\u0072",Value :"\u0065\u0071\u0067t\u0072"},{Key :"\u0065q\u0075\u0061\u006c\u006c\u0065\u0073s",Value :"\u0065\u0071\u006c\u0065\u0073\u0073"},{Key :"c\u0075\u0072\u006c\u0079\u0065\u0071\u0073\u0075\u0063\u0063",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u0031",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073"},{Key :"\u0065\u0071\u0073\u006c\u0061\u006e\u0074\u0067\u0074\u0072",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0067\u0072e\u0061\u0074\u0065\u0072"},{Key :"e\u0071\u0073\u006c\u0061\u006e\u0074\u006c\u0065\u0073\u0073",Value :"e\u0071\u0075\u0061\u006c\u006f\u0072\u006c\u0065\u0073\u0073"},{Key :"c\u0075\u0072\u006c\u0079\u0065\u0071\u0070\u0072\u0065\u0063",Value :"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0070\u0072\u0065\u0063e\u0064\u0065\u0073\u0031",Value :"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u0065\u0071\u0073i\u006d",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072"},{Key :"\u006d\u0069\u006e\u0075\u0073\u0074\u0069\u006c\u0064\u0065",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",Value :"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0062"},{Key :"\u0065\u0071\u0075i\u0076",Value :"e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0063\u0065"},{Key :"\u0061\u0073\u0079m\u0070",Value :"\u0065q\u0075i\u0076\u0061\u0073\u0079\u006d\u0070\u0074\u006f\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00382",Value :"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u0072",Value :"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0073\u0075\u0062",Value :"\u0065r\u0065\u0076\u0065\u0072\u0073\u0065d"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00395",Value :"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0065c\u0079\u0072\u0069\u006c\u0072\u0065v",Value :"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00383",Value :"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u0073",Value :"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006e\u0064\u0075\u006e\u006f\u0073\u0070",Value :"\u0065\u0073\u0068"},{Key :"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u0073\u0075p\u006e\u006f\u0073\u0070",Value :"\u0065s\u0068\u0063\u0075\u0072\u006c"},{Key :"\u0063\u006fm\u006d\u0061\u0074u\u0072\u006e\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0065\u0073h\u0073\u0071\u0075a\u0074\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0075\u0070\u0065t\u0061",Value :"\u0065\u0074\u0061"},{Key :"\u0044\u0062\u0061\u0072",Value :"\u0065\u0074\u0068"},{Key :"\u0044m\u0061\u0063\u0072\u006f\u006e",Value :"\u0065\u0074\u0068"},{Key :"\u006da\u0074\u0068\u0065\u0074\u0068",Value :"\u0065\u0074\u0068"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068v\u0062\u0061\u0073\u0065",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0065t\u006ea\u0068\u0074\u0061\u0066\u006fu\u006b\u0068h\u0065\u0062\u0072\u0065\u0077",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0074\u006e\u0061ht\u0061\u0066\u006f\u0075\u006b\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072e\u0077",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0045\u0078\u0063\u006c\u0061\u006d",Value :"\u0065x\u0063\u006c\u0061\u006d\u0064\u0062l"},{Key :"\u0065\u0078\u0069\u0073\u0074\u0073",Value :"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c"},{Key :"t\u0068\u0065\u0072\u0065\u0065\u0078\u0069\u0073\u0074\u0073",Value :"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c"},{Key :"p\u006c\u0075\u0073\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0065\u007a\u0068"},{Key :"j\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0062\u0061\u0072",Value :"\u0065\u007a\u0068\u0063\u0061\u0072\u006f\u006e"},{Key :"\u006d\u0069\u006eu\u0073\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0065z\u0068\u0063\u0075\u0072\u006c"},{Key :"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073h\u0061\u0063\u0065\u006b",Value :"e\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073h\u0061\u0063\u0065\u006b",Value :"\u0065z\u0068\u0074\u0061\u0069\u006c"},{Key :"\u0064\u0065g\u0072\u0065\u0065f\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074",Value :"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074"},{Key :"\u0064e\u0067r\u0065\u0065\u0066\u0061\u0072\u0065\u006e\u0068\u0065\u0069\u0074",Value :"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074"},{Key :"\u0066a\u0072\u0065\u006e\u0068\u0065\u0069t",Value :"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074"},{Key :"f\u0061\u0074\u0068\u0061\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0066a\u0074h\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00354",Value :"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0061\u0074h\u0061",Value :"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063"},{Key :"f\u0061\u0074\u0068\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0077\u0061\u0076\u0065r\u0069\u0067\u0068\u0074",Value :"f\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0066\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0066e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006f\u0068\u006fo\u006b",Value :"\u0066e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0076\u0065\u006eu\u0073",Value :"\u0066\u0065\u006d\u0061\u006c\u0065"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0064a\u0067\u0065\u0073\u0068",Value :"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077"},{Key :"\u0066i\u006ea\u006c\u006b\u0061\u0066\u0077i\u0074\u0068d\u0061\u0067\u0065\u0073\u0068",Value :"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00377",Value :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d",Value :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u006d\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00383",Value :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0066i\u006e\u0061\u006c\u0070\u0065",Value :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0070e\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00385",Value :"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069"},{Key :"\u0066\u0069n\u0061\u006c\u0074s\u0061\u0064\u0069\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069"},{Key :"\u0074\u0073\u0061\u0064\u0069\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00397",Value :"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074fi\u0076\u0065",Value :"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0069\u0076\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",Value :"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066i\u0076\u0065\u0073\u0075\u0062",Value :"\u0066\u0069\u0076e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u0066i\u0076\u0065",Value :"f\u0069\u0076\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00365",Value :"\u0066\u0069\u0076\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0066\u006c\u006fo\u0072\u006c\u0065\u0066\u0074\u0042\u0069\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006f\u006f\u0072\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006fo\u0072\u006c\u0065\u0066\u0074\u0062\u0069\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006f\u006f\u0072\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u006c\u0066\u006c\u006f\u006f\u0072",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068t\u0042\u0069\u0067\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068t\u0062\u0069\u0067\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0066\u006c\u006f\u006f\u0072",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0056\u0063\u0075\u0072\u0073\u0069\u0076\u0065",Value :"\u0066\u006c\u006f\u0072\u0069\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00311",Value :"\u0066o\u0066\u0061\u006e\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00309",Value :"\u0066\u006f\u0066\u0061\u0074\u0068\u0061\u0069"},{Key :"s\u0075\u0063\u0063\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u0066o\u006cl\u006f\u0077\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076"},{Key :"\u0073\u0075\u0063\u0063\u006e\u0065\u0071\u0071",Value :"\u0066\u006fl\u006c\u006f\u0077n\u006f\u0074\u0073\u006c\u006e\u0074\u0065\u0071\u006c"},{Key :"\u0066o\u006cl\u006f\u0077\u0073\u006e\u006ft\u0065\u0071u\u0069\u0076\u006c\u006e\u0074",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074"},{Key :"\u0073\u0075\u0063\u0063\u006e\u0073\u0069\u006d",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074"},{Key :"\u006eo\u0074f\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072\u0065\u0071\u006c",Value :"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0063\u0063\u0065\u0071",Value :"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c\u0031",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079"},{Key :"s\u0075\u0063\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079"},{Key :"\u0066o\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0063\u0063\u0073\u0069\u006d",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00359",Value :"f\u006f\u006e\u0067\u006d\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0056\u0064\u0061s\u0068",Value :"\u0066\u006f\u0072\u0063\u0065\u0073"},{Key :"\u0066\u006f\u0072c\u0065",Value :"\u0066\u006f\u0072\u0063\u0065\u0073"},{Key :"\u0056\u0076\u0064\u0061\u0073\u0068",Value :"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r"},{Key :"\u0074\u0061\u0063\u006b\u0074\u0072\u0070\u006c",Value :"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r"},{Key :"\u0070i\u0074\u0063\u0068\u0066\u006f\u0072k",Value :"\u0066\u006f\u0072\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00396",Value :"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074fo\u0075\u0072",Value :"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066\u006f\u0075\u0072\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",Value :"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066o\u0075\u0072\u0073\u0075\u0062",Value :"\u0066\u006f\u0075r\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u0066o\u0075\u0072",Value :"f\u006f\u0075\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00364",Value :"\u0066\u006f\u0075\u0072\u0074\u0068\u0061\u0069"},{Key :"\u0066r\u0061\u0063\u0073\u006c\u0061\u0073h",Value :"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e"},{Key :"\u0066r\u0061\u0063\u0074\u0069\u006f\u006e1",Value :"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e"},{Key :"\u0068\u0074\u0075r\u006e",Value :"\u0067\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00309",Value :"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0067\u0061\u0066",Value :"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0061\u0066\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0067\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067a\u0066\u006d\u0065\u0064\u0069\u0061l",Value :"\u0067a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075p\u0067\u0061\u006d\u006d\u0061",Value :"\u0067\u0061\u006dm\u0061"},{Key :"\u0075\u0073\u0074r\u0074",Value :"\u0067\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0067\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0067\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0067\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0067\u0064\u006f\u0074"},{Key :"\u0042\u0075\u006d\u0070\u0065\u0071",Value :"\u0067\u0065\u006f\u006d\u0065\u0071\u0075\u0069\u0076a\u006c\u0065\u006e\u0074"},{Key :"\u0044\u006f\u0074e\u0071",Value :"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0073\u0064\u006f\u0074\u0073",Value :"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067e\u006f\u006d\u0065\u0071\u0075\u0061l",Value :"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0065n\u0064\u0074\u0065\u0078\u0074",Value :"\u0067e\u0072e\u0073\u0068\u0061\u0063\u0063e\u006e\u0074h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0067\u0065\u0072\u0065\u0073\u0068",Value :"\u0067\u0065\u0072e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065\u006e\u0064\u0074\u0072\u0061\u006e\u0073",Value :"\u0067e\u0072e\u0073\u0068\u006d\u0075\u0071d\u0061\u006dh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065n\u0071\u0075\u0069\u0072\u0079",Value :"g\u0065\u0072\u0073\u0068ay\u0069m\u0061\u0063\u0063\u0065\u006et\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0067e\u0072\u0073\u0068\u0061\u0079\u0069m",Value :"\u0067e\u0072s\u0068\u0061\u0079\u0069\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0076e\u0072y\u006d\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072",Value :"\u0067\u0067\u0067"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00334",Value :"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0068\u0061i\u006e",Value :"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0068\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0067\u0068a\u0069\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0068\u0061i\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0067h\u0061i\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"g\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0067\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00398",Value :"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0067\u0065\u0075\u0070\u0074\u0075\u0072\u006e",Value :"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0067i\u006d\u0065\u006c\u006d\u0061\u0074h",Value :"\u0067\u0069\u006de\u006c"},{Key :"g\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0067i\u006de\u006c\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00300",Value :"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0067\u006a\u0065",Value :"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0068\u006fo\u006b\u0073\u0075b\u0070\u0061\u006c\u0061\u0074\u006e\u006f\u0073\u0070",Value :"g\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070"},{Key :"\u0064\u006f\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064"},{Key :"\u0068\u006fo\u006b\u0073\u0075b\u0072\u0065\u0074\u0072\u006f\u006e\u006f\u0073\u0070",Value :"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0062\u0072\u0065v\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0073t\u0072\u006f\u006b\u0065"},{Key :"\u0062r\u0065v\u0065\u0069\u006e\u0076\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0067l\u006f\u0074\u0074\u0061l\u0073\u0074\u006f\u0070\u0073t\u0072o\u006be\u0072\u0065\u0076\u0065\u0072\u0073\u0065d"},{Key :"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0065\u0071u\u0069\u0076\u006c\u006e\u0074",Value :"\u0067\u006e\u0073i\u006d"},{Key :"\u006e\u0061\u0062l\u0061",Value :"\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074"},{Key :"\u0067r\u0061\u0076\u0065\u0063\u006f\u006db",Value :"\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062"},{Key :"\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073t\u006f\u006e\u006f\u0073",Value :"g\u0072\u0061\u0076\u0065\u006c\u006f\u0077\u006d\u006f\u0064"},{Key :"\u0067\u0074\u0072\u0065\u0071\u0071\u006c\u0065\u0073\u0073",Value :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071l\u006c\u0065\u0073\u0073"},{Key :"\u0067\u0074\u0072\u0064\u006f\u0074",Value :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u006f\u0074"},{Key :"\u0067\u0065\u0071",Value :"\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067\u0072e\u0061\u0074\u0065r\u0065\u0071\u0075\u0061\u006c\u006c\u0065\u0073\u0073",Value :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067\u0072e\u0061\u0074\u0065r\u006c\u0065\u0073\u0073\u0065\u0071\u0075\u0061\u006c",Value :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067t\u0072\u0065\u0071\u006c\u0065\u0073s",Value :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0064\u0062l\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067\u006e\u0065\u0071",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067t\u0072\u0061\u0070\u0070\u0072\u006fx",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072a\u0070\u0070r\u006f\u0078\u0065\u0071\u006c"},{Key :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0072\u0073\u0069\u006d\u0069\u006c\u0061\u0072",Value :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u0067\u0074\u0072\u0073\u0069\u006d",Value :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u0067t\u0072\u006c\u0065\u0073\u0073",Value :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067\u006e\u0065q\u0071",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c"},{Key :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c"},{Key :"\u0067\u0065\u0071\u0071",Value :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067r\u0065a\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",Value :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u0064\u0062l\u0065\u0071\u0075\u0061\u006c",Value :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0068e\u0068a\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061\u0061\u006c\u0074\u006f\u006e\u0065\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0068\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068a\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0068a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00309",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006dz\u0061",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"h\u0061\u006d\u007a\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aad\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061m\u007a\u0061\u0066a\u0074\u0068\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aaf\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007a\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aal\u006f\u0077\u006b\u0061\u0073\u0072\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aal\u006f\u0077\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061\u0072\u0061\u0062i\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061m\u007a\u0061\u0073u\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00392",Value :"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0068\u0061\u0072\u0064",Value :"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064o\u0077n\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074",Value :"\u0068a\u0072p\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074"},{Key :"\u0064\u006fw\u006e\u0068\u0061r\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074",Value :"\u0068\u0061r\u0070\u006f\u006fn\u0064\u006f\u0077\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0074\u006f\u0070\u0068\u0061\u006c\u0066",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070"},{Key :"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070"},{Key :"\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074\u0068\u0061\u0072p\u006f\u006f\u006e\u0073",Value :"\u0068\u0061r\u0070\u006f\u006fn\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u006fp\u0068\u0061\u006c\u0066",Value :"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0075\u0070",Value :"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070"},{Key :"\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072p\u006f\u006f\u006e\u0073",Value :"\u0068\u0061r\u0070\u006f\u006fn\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u006c\u0065\u0066\u0074"},{Key :"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006er\u0069\u0067\u0068\u0074",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070r\u0069\u0067\u0068\u0074"},{Key :"h\u0061t\u0061\u0066\u0070\u0061\u0074\u0061\u0068\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074af\u0070\u0061\u0074\u0061\u0068\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061t\u0061\u0066\u0070a\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074\u0061fp\u0061\u0074\u0061\u0068\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072e\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0032\u0066",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00300",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0065n\u0064\u006d\u0065\u0064\u0069\u0075m",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0032\u0033",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00302",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0073\u0075\u0062\u0073\u0074\u0069\u0074\u0075\u0074\u0065",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0033\u0034",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"h\u0061\u0074\u0061\u0066qa\u006da\u0074\u0073\u0077\u0069\u0064e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068\u0061\u0074af\u0071\u0061\u006d\u0061\u0074\u0073\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068a\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0071\u0075a\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0062",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"h\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0065n\u0064\u006f\u0066\u0066\u0069\u006ce",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00301",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0063\u0061\u006e\u0063\u0065\u006c",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0073\u0065\u0067\u006f\u006c",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074a\u0066\u0073\u0065\u0067\u006f\u006c\u0031\u0037",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074a\u0066\u0073\u0065\u0067\u006f\u006c\u0032\u0034",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074a\u0066\u0073\u0065\u0067\u006f\u006c\u0033\u0030",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061t\u0061\u0066\u0073e\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074\u0061fs\u0065\u0067\u006f\u006c\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072e\u0077",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074af\u0073\u0065\u0067\u006f\u006c\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0061\u0031\u0031\u0030",Value :"\u0068\u0065\u0061r\u0074"},{Key :"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074b\u006c\u0061\u0063\u006b",Value :"\u0068\u0065\u0061r\u0074"},{Key :"\u0076\u0061\u0072h\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074",Value :"\u0068\u0065\u0061r\u0074"},{Key :"\u0068e\u0061\u0072\u0074\u0073\u0075\u0069t",Value :"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"h\u0065\u0077\u0069\u0074\u0068\u006d\u0061\u0070\u0069\u0071",Value :"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00370",Value :"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0068\u0065\u0068",Value :"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u006c\u0074t\u0077\u006f\u0061\u0072ab\u0069\u0063",Value :"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0068\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0068e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0072\u0068\u006f\u0074\u0069\u0063\u0068\u006f\u006f\u006b",Value :"\u0068\u0065\u006e\u0067\u0068\u006f\u006f\u006b"},{Key :"\u0068\u0065r\u006d\u0069\u0074c\u006f\u006e\u006a\u006d\u0061\u0074\u0072\u0069\u0078",Value :"\u0068\u0065\u0072m\u0069\u0074\u006d\u0061\u0074\u0072\u0069\u0078"},{Key :"\u0074\u0069l\u0064\u0065\u0076e\u0072\u0074\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0068\u0069\u0072i\u0071",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072\u0069\u0071\u0032\u0064",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00393",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"h\u0069\u0072\u0069\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0065\u0073\u0063\u0061\u0070\u0065",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068\u0069\u0072\u0069\u0071\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072i\u0071\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072\u0069\u0071\u0032\u0031",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072i\u0071\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00323",Value :"\u0068o\u0068\u0069\u0070\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00306",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068\u006f\u006ca\u006d",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006c\u0061\u006d\u0031\u0039",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006c\u0061\u006d\u0032\u0036",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006c\u0061\u006d\u0033\u0032",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"h\u006f\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068\u006f\u006c\u0061\u006d\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006ca\u006d\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0070\u0061c\u0065\u006c\u0069\u0074\u0065\u0072\u0061\u006c",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00326",Value :"\u0068\u006f\u006eo\u006b\u0068\u0075\u006b\u0074\u0068\u0061\u0069"},{Key :"\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065\u0063\u006f\u006d\u0062",Value :"\u0068o\u006f\u006b\u0063\u006d\u0062"},{Key :"\u006f\u0076\u0068\u006f\u006f\u006b",Value :"\u0068o\u006f\u006b\u0063\u006d\u0062"},{Key :"\u0074e\u0072\u0074\u0064\u0065\u0073",Value :"\u0068\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0030\u0030\u0032\u00308",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u0068\u006f\u0072\u0069\u007a\u0062\u0061\u0072",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u006c\u006f\u006e\u0067\u0064\u0061\u0073\u0068",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u0071u\u006f\u0074\u0065\u0064\u0061\u0073h",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u0072e\u0063\u0074\u0061\u006e\u0067\u006ce",Value :"\u0068\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0078\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0068s\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0053\u0044\u0031\u0039\u0030\u0031\u0030\u0030",Value :"\u0068t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u005a\u0062\u0061\u0072",Value :"\u0068\u0076"},{Key :"\u0068\u0079\u0070h\u0065\u006e\u002d\u002c\u0069\u006e\u0075\u0073",Value :"\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0068\u0079\u0070\u0068\u0065\u006e\u0063\u0068\u0061\u0072",Value :"\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"h\u0079\u0070\u0068\u0065\u006e\u006d\u0069\u006e\u0075\u0073",Value :"\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0068y\u0070\u0068\u0065\u006e\u0031",Value :"\u0068y\u0070\u0068\u0065\u006e\u0074\u0077o"},{Key :"\u006a\u0068\u0061\u0063\u0065\u006b",Value :"\u0069\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0072\u0074\u0075r\u006e",Value :"\u0069d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"d\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074",Value :"\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00370",Value :"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u0065",Value :"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00374",Value :"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u0069",Value :"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u006e\u0074e\u0067\u0072\u0061\u006c\u0074\u0072\u0070\u006c",Value :"\u0069\u0069\u0069n\u0074"},{Key :"\u0074\u0072\u0069\u0070\u006c\u0065\u0069\u006e\u0074e\u0067\u0072\u0061\u006c",Value :"\u0069\u0069\u0069n\u0074"},{Key :"\u0072t\u0075\u0072\u006e\u0068\u006f\u006fk",Value :"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"r\u0074\u0075\u0072\u006e\u0072\u0074\u0068\u006f\u006f\u006b",Value :"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0061\u0075\u0078i\u006c\u0069\u0061\u0072\u0079\u006f\u0066\u0066",Value :"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0033",Value :"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0069\u006d\u0061g\u0065",Value :"\u0069m\u0061\u0067\u0065\u006f\u0066"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0064\u006f\u0074\u0072\u0069\u0067\u0068t\u006c\u0065\u0066\u0074",Value :"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l"},{Key :"\u0069m\u0061g\u0065\u006f\u0072\u0061\u0070p\u0072\u006fx\u0065\u0071\u0075\u0061\u006c",Value :"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l"},{Key :"\u0072\u0069\u0073i\u006e\u0067\u0064\u006f\u0074\u0073\u0065\u0071",Value :"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l"},{Key :"\u0069\u006e\u0066t\u0079",Value :"\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079"},{Key :"c\u006c\u0077\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u0069\u006e\u0074c\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0062\u0061\u0063k\u0073\u006c\u0061\u0073\u0068\u0042\u0069\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068\u0042\u0069\u0067\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063k\u0073\u006c\u0061\u0073\u0068\u0062\u0069\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068\u0062\u0069\u0067\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068\u006d\u0061\u0074\u0068",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0073\u0065\u0074\u006d\u0069\u006e\u0075\u0073",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0069\u006e\u0074",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069n\u0074e\u0067\u0072\u0061\u006c\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069\u006e\u0074e\u0067\u0072\u0061\u006c\u0074\u0065\u0078\u0074",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069n\u0074\u0062\u006f\u0074\u0074\u006fm",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074"},{Key :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062o\u0074\u0074\u006f\u006d",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074"},{Key :"i\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u006f\u0070",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070"},{Key :"\u0069\u006e\u0074\u0074\u006f\u0070",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070"},{Key :"\u0063\u0061\u0070",Value :"\u0069\u006e\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e"},{Key :"\u0043\u0061\u0070",Value :"\u0069n\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0062\u006c"},{Key :"\u0062\u0069\u0067\u0063\u0061\u0070",Value :"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0069\u006et\u0065\u0072\u0073e\u0063\u0074\u0069\u006f\u006e\u0074\u0065\u0078\u0074",Value :"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u006e\u0061r\u0079\u0069\u006et\u0065\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e",Value :"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0073\u0071\u0063a\u0070",Value :"\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074i\u006f\u006e\u0073\u0071"},{Key :"\u0062\u0075\u006c\u006c\u0065\u0074\u0069\u006e\u0076\u0065\u0072\u0073\u0065",Value :"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t"},{Key :"\u0069\u006e\u0076\u0065\u0072\u0073\u0065\u0062\u0075\u006c\u006c\u0065\u0074",Value :"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t"},{Key :"\u0069n\u0076e\u0072\u0073\u0065\u0077\u0068i\u0074\u0065c\u0069\u0072\u0063\u006c\u0065",Value :"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce"},{Key :"\u0077h\u0069t\u0065\u0063\u0069\u0072\u0063l\u0065\u0069n\u0076\u0065\u0072\u0073\u0065",Value :"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce"},{Key :"\u0053\u0069\u006e\u0076\u006c\u0061\u007a\u0079",Value :"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073"},{Key :"\u006c\u0061\u007a\u0079\u0073\u0069\u006e\u0076",Value :"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073"},{Key :"\u0069n\u0076s\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u006e",Value :"\u0069\u006e\u0076wh\u0069\u0074\u0065\u006c\u006f\u0077\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0069n\u0076s\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0070",Value :"\u0069\u006e\u0076wh\u0069\u0074\u0065\u0075\u0070\u0070\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0075\u0070\u0069\u006f\u0074\u0061",Value :"\u0069\u006f\u0074\u0061"},{Key :"\u0067\u0061\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072",Value :"\u0069o\u0074\u0061\u006c\u0061\u0074\u0069n"},{Key :"\u0068\u0069\u0067\u0068\u0063\u006f\u006d\u006d\u0061\u006e",Value :"\u0069\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0062\u0072\u0069\u0064\u0067\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u006a\u0063\u0072o\u0073\u0073\u0065\u0064\u0074\u0061\u0069\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00320",Value :"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006a\u0065\u0065\u006d",Value :"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ae\u0065\u006d\u0066\u0069\u006e\u0061l",Value :"\u006ae\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"j\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006a\u0065\u0065\u006d\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006a\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006f\u0076e\u0072\u0073\u0063o\u0072\u0065\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u006as\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00376",Value :"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u006b\u0061",Value :"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00375",Value :"\u006b\u0061\u0066"},{Key :"\u006ba\u0066\u0068\u0065\u0062\u0072\u0065w",Value :"\u006b\u0061\u0066"},{Key :"\u006ba\u0066d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u006b\u0061\u0066\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u006b\u0061\u0066f\u0069\u006e\u0061\u006c",Value :"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0061\u0066\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006b\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ba\u0066\u006d\u0065\u0064\u0069\u0061l",Value :"\u006ba\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"k\u0061\u0066\u0077\u0069\u0074\u0068\u0072\u0061\u0066\u0065",Value :"\u006b\u0061\u0066\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0075p\u006b\u0061\u0070\u0070\u0061",Value :"\u006b\u0061\u0070p\u0061"},{Key :"\u0054\u0065\u0054s\u0065",Value :"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0070\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",Value :"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00340",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074\u006f\u0061r\u0061\u0062\u0069\u0063",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074a\u0074\u0077\u0065\u0065\u006c",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0061\u0074\u0077\u0065\u0065\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ba\u0073r\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",Value :"k\u0061\u0073\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00353",Value :"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e",Value :"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u006b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u006e\u006f\u0074",Value :"k\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0068\u006f\u006d\u006f\u0074\u0068\u0065\u0074\u0069\u0063",Value :"\u006b\u0065\u0072\u006e\u0065\u006c\u0063\u006f\u006e\u0074\u0072\u0061c\u0074\u0069\u006f\u006e"},{Key :"\u006bh\u0061\u0068\u0066\u0069\u006e\u0061l",Value :"\u006bh\u0061h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"k\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0068\u0061\u0068\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006b\u0068a\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0065s\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u006b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00382",Value :"k\u0068\u006f\u006b\u0068\u0061\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00385",Value :"k\u0068\u006f\u006b\u0068\u006f\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00383",Value :"\u006b\u0068\u006fk\u0068\u0075\u0061\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00384",Value :"\u006b\u0068\u006fk\u0068\u0077\u0061\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00371",Value :"\u006b\u0068\u006f\u006d\u0075\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0079o\u0067\u0068\u0072\u0065\u0076",Value :"\u006b\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00386",Value :"\u006b\u0068\u006f\u0072\u0061\u006b\u0068\u0061\u006eg\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00381",Value :"\u006bo\u006b\u0061\u0069\u0074\u0068\u0061i"},{Key :"\u0061\u0072\u0063\u0068\u0064\u0062\u006c\u0073\u0075b\u006e\u006f\u0073\u0070",Value :"\u006bt\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00349",Value :"\u006ca\u006bk\u0068\u0061\u006e\u0067\u0079\u0061\u006f\u0074\u0068\u0061\u0069"},{Key :"\u006c\u0061m\u0077\u0069\u0074h\u0061\u006c\u0065\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u006ca\u006da\u006c\u0065\u0066\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066h\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066i\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065f\u0068\u0061\u006d\u007a\u0061\u0061\u0062o\u0076\u0065\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0064",Value :"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066h\u0061\u006d\u007a\u0061\u0062\u0065\u006c\u006f\u0077\u0066i\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006co\u0077f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063"},{Key :"\u006c\u0061m\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006c\u006f\u0077\u0069\u0073\u006f\u006cat\u0065\u0064",Value :"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0062\u0065\u006c\u006fw\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077it\u0068\u0061\u006c\u0065\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"l\u0061\u006d\u0061\u006cef\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u0064\u0064\u0061\u0061\u0062\u006f\u0076\u0065\u0066i\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0061l\u0065\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065f\u006d\u0061\u0064\u0064\u0061\u0061\u0062o\u0076\u0065\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0064",Value :"\u006c\u0061\u006da\u006c\u0065\u0066\u006da\u0064\u0064\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075\u0070\u006c\u0061\u006d\u0062\u0064\u0061",Value :"\u006c\u0061\u006d\u0062\u0064\u0061"},{Key :"\u0032\u0062\u0061\u0072",Value :"\u006c\u0061\u006db\u0064\u0061\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006c\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u006ca\u006de\u0064\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00376",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006de\u0064",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"l\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006d\u0065\u0064\u0068\u006f\u006c\u0061\u006d",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006d\u0065dh\u006f\u006c\u0061\u006d\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072e\u0077",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",Value :"\u006c\u0061\u006d\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u006d\u0065\u0065\u006d\u006a\u0065\u0065\u006d\u0069\u006ei\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u006d\u0065\u0065\u006d\u006b\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006dw\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"l\u0061m\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u006ca\u006dw\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"l\u0061m\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0061\u006c\u006c\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u006c\u0061\u006dla\u006d\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u006d\u0065\u0064\u0069\u0061l",Value :"\u006ca\u006dm\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u0077\u0069\u0074h\u006d\u0065\u0065\u006d\u0077i\u0074h\u0068a\u0068\u0069\u006e\u0069\u0074\u0069\u0061l",Value :"\u006c\u0061\u006dme\u0065\u006d\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006dw\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"l\u0061m\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"l\u0067\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"l\u0061\u0072\u0067\u0065\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0079\u006f\u0067\u0068\u0074\u0061\u0069\u006c",Value :"\u006c\u0062\u0061\u0072"},{Key :"\u0078\u0073\u0075\u0070\u0065\u0072",Value :"\u006c\u0062\u0065l\u0074"},{Key :"\u006c\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u006c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u006c\u0064\u006f\u0074",Value :"\u006c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0064\u0072\u006f\u0061\u006e\u0067",Value :"\u006c\u0065\u0066\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0062\u006fv\u0065\u0063\u006d\u0062"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u0071\u0075\u0069\u0067\u0067\u006ce\u006c\u0065\u0066\u0074",Value :"\u006c\u0065\u0066\u0074\u0073\u0071\u0075\u0069\u0067a\u0072\u0072\u006f\u0077"},{Key :"\u006c\u0065\u0073\u0073\u0065\u0071\u0071\u0067\u0074\u0072",Value :"\u006c\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u006c\u0067\u0072e\u0061\u0074\u0065\u0072"},{Key :"\u006c\u0065\u0071",Value :"\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l"},{Key :"\u006ce\u0073\u0073\u0065\u0071\u0067\u0074r",Value :"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006c\u0065s\u0073\u0065\u0071u\u0061\u006c\u0067\u0072\u0065\u0061\u0074\u0065\u0072",Value :"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006c\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u006ce\u0073s\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u006e\u0065\u0071",Value :"\u006c\u0065\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0065\u0073\u0073\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u006ce\u0073s\u006f\u0072\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u006c"},{Key :"\u006c\u0065\u0071\u0073\u006c\u0061\u006e\u0074",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074"},{Key :"\u006e\u006ft\u006c\u0065\u0073s\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074"},{Key :"\u006c\u0065\u0073s\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u006c\u0065\u0073\u0073\u006f\u0072\u0073\u0069\u006d\u0069\u006c\u0061\u0072",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u006ce\u0073\u0073\u0073\u0069\u006d",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u006ce\u0073\u0073\u0067\u0074\u0072",Value :"\u006c\u0065\u0073\u0073\u006f\u0072\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006ce\u0073s\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c",Value :"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u006c\u006e\u0065q\u0071",Value :"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0065\u0071\u0071",Value :"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0065\u0073s\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",Value :"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074l\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",Value :"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0074\u006f\u006e\u0065\u0065\u0078\u0074\u0072\u0061\u0068\u0069\u0067\u0068",Value :"\u006c\u0065\u007a\u0068"},{Key :"\u0062\u006c\u006f\u0063\u006b\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066",Value :"\u006cf\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0067l\u006ft\u0074\u0061\u006c\u0072\u0065\u0076\u0073\u0075\u0070\u0065\u0072",Value :"\u006c\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068t\u0064\u006f\u0077\u006e",Value :"\u006c\u0069\u006e\u0065\u0066\u0065\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0030\u0038\u0039\u00341",Value :"\u006c\u0069\u0072\u0061"},{Key :"\u006b\u0068\u0061\u0063\u0065\u006b",Value :"\u006c\u006a"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00306",Value :"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u006c\u006a\u0065",Value :"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0073w\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u006c\u006c\u0061r\u0063"},{Key :"\u0076\u0065\u0072y\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073",Value :"\u006c\u006c\u006c"},{Key :"\u0073\u0073\u0075\u0070\u0065\u0072",Value :"\u006c\u006d\u0069d\u0064\u006c\u0065\u0074\u0069\u006c\u0064\u0065"},{Key :"\u006ce\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u006c\u006e\u0073i\u006d"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00324",Value :"l\u006f\u0063\u0068\u0075\u006c\u0061\u0074\u0068\u0061\u0069"},{Key :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064"},{Key :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006ed\u0074\u0065\u0078\u0074",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064"},{Key :"\u0077\u0065\u0064g\u0065",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064"},{Key :"\u006e\u0065\u0067",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074"},{Key :"\u006c\u006fg\u0069\u0063\u0061l\u006f\u0072\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr"},{Key :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006f\u0072\u0074\u0065\u0078\u0074",Value :"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr"},{Key :"\u0076\u0065\u0065",Value :"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00317",Value :"\u006c\u006f\u006c\u0069\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u004f\u0062\u0061\u0072",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0064\u0062\u006c\u0073",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0073\u0068",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0073\u0069",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0073\u006c",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u0073\u006c\u006fn\u0067",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u0073\u006c\u006f\u006e\u0067\u0074",Value :"\u006c\u006f\u006e\u0067\u0073\u0074"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u006c\u006fz\u0065\u006e\u0067\u0065",Value :"\u006co\u007a\u0065\u006e\u0067\u0065"},{Key :"\u0073e\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u006c\u0072\u0061r\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00318",Value :"\u006c\u0075\u0074\u0068\u0061\u0069"},{Key :"\u006fv\u0065\u0072\u0073\u0063\u006f\u0072e",Value :"\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0075\u006e\u0064\u0065\u0072\u0062\u0061\u0072",Value :"\u006d\u0061\u0063\u0072\u006f\u006e\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u006da\u0068a\u0070\u0061\u006b\u0068\u006ce\u0066\u0074h\u0065\u0062\u0072\u0065\u0077",Value :"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0076e\u0072\u0074\u0074\u0061\u0062",Value :"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00355",Value :"\u006da\u0069c\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00352",Value :"\u006da\u0069\u0065\u006b\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00328",Value :"\u006d\u0061\u0069\u0068\u0061\u006e\u0061\u006b\u0061t\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00351",Value :"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00353",Value :"\u006d\u0061\u0069\u0074\u0068\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00354",Value :"\u006d\u0061\u0069\u0074\u0072\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00350",Value :"\u006d\u0061\u0069y\u0061\u006d\u006f\u006b\u0074\u0068\u0061\u0069"},{Key :"\u006d\u0061\u006c\u0065",Value :"\u006d\u0061\u0072\u0073"},{Key :"\u0073\u0079\u006ec\u0068",Value :"\u006da\u0073o\u0072\u0061\u0063\u0069\u0072c\u006c\u0065h\u0065\u0062\u0072\u0065\u0077"},{Key :"m\u0065\u0061\u0073\u0075\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u006d\u0065\u0061\u0073\u0065\u0071"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0072\u0063",Value :"\u006de\u0061s\u0075\u0072\u0065\u0064\u0072i\u0067\u0068t\u0061\u006e\u0067\u006c\u0065"},{Key :"\u006de\u0065\u006d\u0066\u0069\u006e\u0061l",Value :"\u006de\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"m\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006d\u0065\u0065\u006d\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006d\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"m\u0065\u0065\u006d\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00378",Value :"\u006d\u0065\u006d"},{Key :"\u006de\u006d\u0068\u0065\u0062\u0072\u0065w",Value :"\u006d\u0065\u006d"},{Key :"\u006de\u006d\u0064\u0061\u0067\u0065\u0073h",Value :"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u006d\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0066\u006f\u0072\u006d\u0066\u0065\u0065\u0064",Value :"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065r\u006b\u0068\u0061l\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u0072\u006bha\u006b\u0065\u0066\u0075\u006c\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072e\u0077",Value :"\u006de\u0072k\u0068\u0061\u006b\u0065\u0066u\u006c\u0061h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0043\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0043"},{Key :"\u0043\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0043"},{Key :"\u0043\u0066\u0072\u0061\u006b\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0043"},{Key :"\u0048\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0048"},{Key :"\u0048\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0048"},{Key :"\u0048\u0066\u0072\u0061\u006b\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0048"},{Key :"\u005a\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u005a"},{Key :"\u005a\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u005a"},{Key :"\u005a\u0066\u0072\u0061\u006b\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u005a"},{Key :"\u0074o\u006e\u0065\u006c\u006f\u0077",Value :"\u006d\u0068\u006fo\u006b"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u006d\u0069\u006e\u0075\u0073",Value :"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u006f\u006d\u0069\u006e\u0075\u0073",Value :"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u006d\u0069\u006e\u0075\u0073\u0073\u0075\u0062",Value :"\u006d\u0069\u006e\u0075\u0073\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u006d\u0070",Value :"\u006di\u006e\u0075\u0073\u0070\u006c\u0075s"},{Key :"\u0070\u0072\u0069m\u0065",Value :"\u006d\u0069\u006e\u0075\u0074\u0065"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0031",Value :"\u006d\u0069\u006e\u0075\u0074\u0065"},{Key :"\u0074o\u006e\u0065\u006d\u0069\u0064",Value :"\u006d\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064"},{Key :"\u0074r\u0075\u0065\u0073\u0074\u0061\u0074e",Value :"\u006d\u006f\u0064\u0065\u006c\u0073"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00313",Value :"\u006d\u006f\u006d\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0042s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0042"},{Key :"\u0045s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0045"},{Key :"\u0046s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0046"},{Key :"\u0048s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0048"},{Key :"\u0049s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0049"},{Key :"\u004cs\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u004c"},{Key :"\u004ds\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u004d"},{Key :"\u0052s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0052"},{Key :"\u0065s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0065"},{Key :"g\u0073\u0063\u0072\u0069\u0070\u0074\u006d\u0061\u0074\u0068",Value :"\u006d\u0073\u0063r\u0067"},{Key :"\u0030s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u006f"},{Key :"\u006fs\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u006f"},{Key :"\u0074\u006f\u006e\u0065\u0068\u0069\u0067\u0068",Value :"\u006dt\u0075\u0072\u006e\u0065\u0064"},{Key :"\u006d\u0075\u0031",Value :"\u006d\u0075"},{Key :"\u0067\u0067",Value :"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"g\u0072\u0065\u0061\u0074\u0065\u0072\u006d\u0075\u0063\u0068",Value :"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006c\u0065\u0073\u0073\u006d\u0075\u0063\u0068",Value :"\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073"},{Key :"\u0075\u0070\u006d\u0075",Value :"\u006du\u0067\u0072\u0065\u0065\u006b"},{Key :"\u006c\u0074\u0069\u006d\u0065\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u0063\u006c\u006f\u0073e\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0074\u0069\u006d\u0065\u0073",Value :"\u006du\u006ct\u0069\u0063\u006c\u006f\u0073\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006c\u0065\u0066\u0074\u0074\u0068\u0072\u0065\u0065t\u0069\u006d\u0065\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074"},{Key :"\u0072i\u0067h\u0074\u0074\u0068\u0072\u0065\u0065\u0074\u0069\u006d\u0065\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074"},{Key :"\u0074\u0069\u006de\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079"},{Key :"m\u0075\u006e\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006du\u006ea\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0069\u0067\u0068\u0074\u0068\u006e\u006f\u0074\u0065",Value :"m\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006f\u0074\u0065"},{Key :"\u0066\u006c\u0061\u0074",Value :"\u006d\u0075\u0073\u0069\u0063\u0066\u006c\u0061\u0074\u0073\u0069\u0067\u006e"},{Key :"\u0073\u0068\u0061r\u0070",Value :"\u006d\u0075\u0073\u0069\u0063\u0073\u0068\u0061\u0072p\u0073\u0069\u0067\u006e"},{Key :"\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065",Value :"\u006e\u0061\u006e\u0064"},{Key :"\u006e\u006f\u0074\u0061\u006c\u006d\u006f\u0073\u0074e\u0071\u0075\u0061\u006c",Value :"\u006ea\u0070\u0070\u0072\u006f\u0078"},{Key :"\u006eo\u0074e\u0071\u0075\u0069\u0076\u0061s\u0079\u006dp\u0074\u006f\u0074\u0069\u0063",Value :"\u006e\u0061\u0073\u0079\u006d\u0070"},{Key :"\u0068\u0079\u0070\u0068\u0065\u006e\u006e\u006f\u0062\u0072\u0065\u0061\u006b",Value :"\u006e\u0062\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0054m\u0061\u0063\u0072\u006f\u006e",Value :"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u006e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00387",Value :"\u006e\u0067\u006f\u006e\u0067\u0075\u0074\u0068\u0061\u0069"},{Key :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u0065\u0071u\u0069\u0076\u006c\u006e\u0074",Value :"\u006eg\u0074\u0072\u0073\u0069\u006d"},{Key :"\u0074\u006f\u006ee\u0065\u0078\u0074\u0072\u0061\u006c\u006f\u0077",Value :"\u006eh\u006f\u006f\u006b\u006c\u0065\u0066t"},{Key :"\u0067r\u0061\u0076\u0065\u006e\u006f\u0073p",Value :"\u006e\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00357",Value :"\u006e\u0069\u006bh\u0061\u0068\u0069\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00301",Value :"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074ni\u006e\u0065",Value :"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006e\u0069\u006e\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006ei\u006e\u0065\u0073\u0075\u0062",Value :"\u006e\u0069\u006ee\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u006ei\u006e\u0065",Value :"n\u0069\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00369",Value :"\u006e\u0069\u006e\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0062a\u0072\u0069\u006e\u0076",Value :"\u006e\u006c\u0065\u0067\u0072\u0069\u0067\u0068\u0074\u006c\u006f\u006e\u0067"},{Key :"\u006e\u006f\u0074\u006c\u0065\u0073\u0073\u0067\u0072e\u0061\u0074\u0065\u0072",Value :"\u006e\u006c\u0065\u0073\u0073\u0067\u0074\u0072"},{Key :"\u006eo\u0074l\u0065\u0073\u0073\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u006e\u006c\u0065\u0073\u0073\u0073\u0069\u006d"},{Key :"\u006eb\u0073\u0070\u0061\u0063\u0065",Value :"\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00399",Value :"\u006eo\u006e\u0065\u006e\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00305",Value :"\u006e\u006f\u006e\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00346",Value :"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006e",Value :"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006eo\u006f\u006e\u0066\u0069\u006e\u0061l",Value :"\u006eo\u006fn\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"n\u006f\u006f\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",Value :"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"n\u006f\u006f\u006e\u006aee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006e\u006fo\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"n\u006f\u006f\u006e\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"n\u006fo\u006e\u0077\u0069\u0074\u0068\u006d\u0065\u0065m\u0069\u0073\u006f\u006cat\u0065\u0064",Value :"\u006e\u006f\u006f\u006eme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063"},{Key :"\u006e\u0063\u006fn\u0067",Value :"\u006e\u006f\u0074\u0061\u0070\u0070\u0072\u006f\u0078e\u0071\u0075\u0061\u006c"},{Key :"\u006el\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068"},{Key :"\u006e\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074"},{Key :"n\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006e\u006f\u0074\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006e\u006d\u0069\u0064",Value :"\u006e\u006f\u0074\u0062\u0061\u0072"},{Key :"\u006e\u006f\u0074\u0064\u0069\u0076\u0069\u0064\u0065\u0073",Value :"\u006e\u006f\u0074\u0062\u0061\u0072"},{Key :"\u006e\u006e\u0069",Value :"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073"},{Key :"\u006e\u006f\u0074\u006f\u0077\u006e\u0065\u0072",Value :"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073"},{Key :"n\u006f\u0074\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074",Value :"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073"},{Key :"\u0061\u0072\u0072\u006fwd\u0062\u006c\u006c\u006f\u006e\u0067\u0062\u006f\u0074\u0068\u006e\u006f\u0074",Value :"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068"},{Key :"\u006eL\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068"},{Key :"\u006e\u006f\u0074e\u006c\u0065\u006d\u0065\u006e\u0074\u006f\u0066",Value :"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074"},{Key :"\u006e\u006f\u0074i\u006e",Value :"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074"},{Key :"\u006e\u0065",Value :"\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006ee\u0078\u0069\u0073\u0074\u0073",Value :"\u006e\u006f\u0074\u0065\u0078\u0069\u0073\u0074\u0065n\u0074\u0069\u0061\u006c"},{Key :"\u006e\u0056\u0064\u0061\u0073\u0068",Value :"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s"},{Key :"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065",Value :"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s"},{Key :"\u006e\u0056\u0044\u0061\u0073\u0068",Value :"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061"},{Key :"\u006e\u006f\u0074f\u006f\u0072\u0063\u0065\u0065\u0078\u0074\u0072",Value :"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061"},{Key :"\u006e\u0067\u0074\u0072",Value :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006e\u0067\u0065\u0071",Value :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006ft\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c\u0031",Value :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u0067\u0074\u0072\u006c\u0065\u0073\u0073",Value :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073"},{Key :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065r\u006c\u0065\u0073\u0073",Value :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073"},{Key :"\u0067\u0065\u0071\u0073\u006c\u0061\u006e\u0074",Value :"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c"},{Key :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074",Value :"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c"},{Key :"\u006e\u0065\u0071\u0075\u0069\u0076",Value :"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c"},{Key :"\u006e\u006f\u0074\u0065\u0071\u0075\u0069\u0076\u0061l\u0065\u006e\u0063\u0065",Value :"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c"},{Key :"\u006e\u006c\u0065s\u0073",Value :"\u006eo\u0074\u006c\u0065\u0073\u0073"},{Key :"\u006e\u006c\u0065\u0071",Value :"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006f\u0074l\u0065\u0073\u0073\u0065\u0071\u0075\u0061\u006c",Value :"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006f\u0074\u006c\u0065\u0073\u0073\u0065\u0071\u0075\u0061\u006c\u0031",Value :"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074\u0062\u0061\u0072\u0064\u0062l",Value :"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"\u006ep\u0061\u0072\u0061\u006c\u006c\u0065l",Value :"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0065\u0064\u0073",Value :"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u006e\u0070\u0072e\u0063",Value :"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u006e\u006f\u0074\u0073\u0061\u0074\u0069\u0073\u0066\u0079",Value :"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073"},{Key :"\u006e\u0076\u0044\u0061\u0073\u0068",Value :"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073"},{Key :"\u006e\u0073\u0069\u006d",Value :"\u006e\u006f\u0074\u0073\u0069\u006d\u0069\u006c\u0061\u0072"},{Key :"\u006eo\u0074p\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074",Value :"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t"},{Key :"\u006es\u0075\u0062\u0073\u0065\u0074",Value :"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t"},{Key :"\u006eo\u0074r\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074",Value :"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c"},{Key :"\u006es\u0075\u0062\u0073\u0065\u0074\u0065q",Value :"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c"},{Key :"\u006e\u006f\u0074\u0066\u006f\u006c\u006c\u006f\u0077\u0073",Value :"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u006e\u0073\u0075c\u0063",Value :"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u006e\u006f\u0074\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",Value :"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074"},{Key :"\u006es\u0075\u0070\u0073\u0065\u0074",Value :"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074"},{Key :"\u006e\u006f\u0074\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",Value :"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c"},{Key :"\u006es\u0075\u0070\u0073\u0065\u0074\u0065q",Value :"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c"},{Key :"n\u006ft\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065l\u0065\u0066\u0074\u0065qu\u0061\u006c",Value :"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074"},{Key :"\u006et\u0072i\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074\u0065\u0071",Value :"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074"},{Key :"n\u006f\u0074\u0074\u0072ia\u006eg\u006c\u0065\u0072\u0069\u0067h\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074"},{Key :"\u006e\u0074r\u0069\u0061\u006eg\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0065\u0071",Value :"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074"},{Key :"\u006e\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",Value :"\u006eo\u0074t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"\u006e\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065r\u0069\u0067\u0068\u0074",Value :"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006e\u006ft\u0074\u0075\u0072n\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074",Value :"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065"},{Key :"\u006e\u0076\u0064\u0061\u0073\u0068",Value :"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065"},{Key :"\u0070\u0072e\u0063\u0065\u0065d\u0073\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u006e\u0070\u0072e\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071"},{Key :"\u006e\u006f\u0074\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c",Value :"\u006e\u0073\u0069m\u0065"},{Key :"\u006e\u006ft\u0073\u0075\u0062s\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c",Value :"n\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071"},{Key :"\u006eo\u0074s\u0075\u0070\u0065\u0072\u0073e\u0074\u0073q\u0065\u0071\u0075\u0061\u006c",Value :"n\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071"},{Key :"\u0066o\u006cl\u006f\u0077\u0073\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u006e\u0073\u0075c\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071"},{Key :"\u0064\u0062\u0061\u0072",Value :"\u006e\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0075\u0070\u006e\u0075",Value :"\u006e\u0075"},{Key :"\u006f\u0063\u0074\u006f\u0074\u0068\u006f\u0072\u0070\u0065",Value :"\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e"},{Key :"\u0061f\u0069\u0069\u0036\u0031\u0033\u00352",Value :"\u006e\u0075\u006d\u0065\u0072\u006f"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00380",Value :"\u006e\u0075\u006e"},{Key :"\u006eu\u006e\u0068\u0065\u0062\u0072\u0065w",Value :"\u006e\u0075\u006e"},{Key :"\u006eu\u006ed\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u006e\u0075\u006e\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00325",Value :"\u006f\u0061\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065x\u006e\u006f\u0073\u0070",Value :"\u006fb\u0061\u0072\u0072\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00380",Value :"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u006f\u0063\u0079\u0072\u0069\u006c",Value :"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0072r\u0074\u0068\u006f\u006f\u006b",Value :"\u006fd\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0077\u0061\u0076\u0065\u006c\u0065\u0066\u0074",Value :"\u006f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0070i\u0070\u0065\u0064\u0062\u006c",Value :"\u006f\u0068\u006fr\u006e"},{Key :"\u006fd\u0062\u006c\u0061\u0063\u0075\u0074e",Value :"\u006f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074"},{Key :"\u0065x\u0063\u006c\u0061\u006d\u0031",Value :"\u006f\u0069"},{Key :"v\u006f\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069\u0069\u006e\u0074"},{Key :"\u0076\u006f\u006c\u0075\u006d\u0065\u0069\u006e\u0074e\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069\u0069\u006e\u0074"},{Key :"\u0073u\u0072f\u0061\u0063\u0065\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069n\u0074"},{Key :"\u0073\u0075\u0072f\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069n\u0074"},{Key :"\u0063\u0063l\u0077\u0063\u006fn\u0074\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069n\u0074\u0063\u0074r\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0072\u0066\u0069s\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076",Value :"\u006f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0032",Value :"\u006fl\u0065\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0075p\u006f\u006d\u0065\u0067\u0061",Value :"\u006f\u006d\u0065g\u0061"},{Key :"\u0075p\u0076\u0061\u0072\u0070\u0069",Value :"\u006f\u006d\u0065\u0067\u0061\u0031"},{Key :"\u0070\u0069\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",Value :"\u006f\u006d\u0065\u0067\u0061\u0031"},{Key :"\u004ba\u0072\u0074\u0064\u0065\u0073",Value :"\u006f\u006d\u0065\u0067\u0061\u0031"},{Key :"\u006d\u0061\u0063\u0072\u006f\u006e\u006e\u006f\u0073\u0070",Value :"\u006f\u006de\u0067\u0061\u006ca\u0074\u0069\u006e\u0063\u006c\u006f\u0073\u0065\u0064"},{Key :"\u0047\u0065\u0062a\u0072",Value :"\u006f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073"},{Key :"\u0075p\u006f\u006d\u0069\u0063\u0072\u006fn",Value :"\u006fm\u0069\u0063\u0072\u006f\u006e"},{Key :"\u006f\u006e\u0065\u0064\u006f\u0074\u006c\u0065\u0061\u0064",Value :"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072"},{Key :"\u006f\u006e\u0065d\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072",Value :"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00393",Value :"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0061\u0062ic\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u006f\u006e\u0065",Value :"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006fn\u0065\u0061\u0072\u0061\u0062\u0069c",Value :"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006f\u006e\u0065\u0073\u0075\u0062",Value :"o\u006e\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"e\u0078\u0074\u0065\u006e\u0064\u0065d\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064i\u0063\u0064\u0069g\u0069t\u006f\u006e\u0065",Value :"\u006f\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00361",Value :"\u006fn\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0065p\u0073i\u006c\u006f\u006e\u0031\u0072\u0065\u0076\u0068\u006f\u006f\u006b",Value :"\u006f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0067\u0072\u0061\u0076\u0065\u0031",Value :"\u006f\u006f\u0070e\u006e"},{Key :"\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c",Value :"\u006f\u0072\u0069\u0067\u006f\u0066"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065",Value :"\u006f\u0072\u0074\u0068\u006f\u0067\u006f\u006e\u0061\u006c"},{Key :"\u0076\u0065\u0065\u0062\u0061\u0072",Value :"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065"},{Key :"\u0078\u006f\u0072",Value :"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065"},{Key :"\u006d\u0074\u0075r\u006e",Value :"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u006f\u0073\u0074r\u006f\u006b\u0065\u0061\u0063\u0075\u0074\u0065",Value :"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u006fv\u0065\u0072\u0062\u0061\u0072",Value :"o\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0063\u006d\u0062"},{Key :"n\u0048\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",Value :"\u0070\u0061\u0067\u0065\u0064\u006f\u0077\u006e"},{Key :"\u006eH\u0075\u0070\u0061\u0072\u0072\u006fw",Value :"\u0070\u0061\u0067\u0065\u0075\u0070"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00327",Value :"\u0070\u0061\u0069\u0079\u0061\u006e\u006e\u006f\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0062a\u0072\u0064\u0062\u006c\u0032",Value :"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"\u0076\u0065\u0078\u0074\u0065\u006e\u0064\u0064\u006f\u0075\u0062\u006c\u0065",Value :"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"\u0066\u0069\u006c\u006ced\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c\u006f\u0067\u0072\u0061\u006d",Value :"\u0070a\u0072a\u006c\u006c\u0065\u006c\u006fg\u0072\u0061m\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0070\u0061\u0072e\u006e\u006c\u0065\u0066\u0074\u0042\u0069\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"\u0070\u0061\u0072e\u006e\u006c\u0065\u0066\u0074\u0062\u0069\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"o\u0072\u006e\u0061\u0074el\u0065f\u0074\u0070\u0061\u0072\u0065n\u0074\u0068\u0065\u0073\u0069\u0073",Value :"p\u0061\u0072\u0065\u006ele\u0066t\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0061\u0072e\u006e\u006c\u0065\u0066\u0074\u0073\u0075\u0062",Value :"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0069\u006e\u0066e\u0072\u0069\u006f\u0072"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068t\u0042\u0069\u0067\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068t\u0062\u0069\u0067\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006f\u0072\u006e\u0061te\u0072\u0069\u0067\u0068\u0074\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073i\u0073",Value :"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074\u0073\u0075\u0062",Value :"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0069\u006ef\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0068\u0065\u006c\u0070",Value :"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0074\u0070"},{Key :"\u0070a\u0072\u0074\u0069\u0061\u006c",Value :"p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066"},{Key :"\u006e\u0075\u006c\u006c",Value :"\u0070\u0061\u0073h\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0070a\u0074a\u0068\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00398",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070a\u0074\u0061\u0068\u0032\u0061",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070a\u0074a\u0068\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"p\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070a\u0074\u0061\u0068\u0031\u0064",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070\u0061\u0074a\u0068",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0072e\u0063o\u0072\u0064\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070\u0061\u0074\u0061\u0068\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0062a\u0063\u006b\u0073\u0070\u0061\u0063e",Value :"p\u0061\u007a\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00381",Value :"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0070e\u0063\u0079\u0072\u0069\u006c",Value :"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0070\u0065\u0077i\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0077\u0069\u0074\u0068\u0064a\u0067\u0065\u0073\u0068",Value :"\u0070\u0065\u0066\u0069na\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00306",Value :"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0070\u0065\u0068",Value :"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0070\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0070e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0070e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0065\u0077\u0069\u0074\u0068\u0072\u0061\u0066\u0065",Value :"\u0070\u0065\u0072a\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00381",Value :"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u0070\u0065\u0072\u0063\u0065\u006et\u0073\u0069\u0067\u006e",Value :"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0063\u0064\u006ft\u0070",Value :"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064"},{Key :"\u006d\u0069\u0064\u0064\u006f\u0074",Value :"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064"},{Key :"\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065",Value :"\u0070\u0065\u0072\u0070\u0063\u006f\u0072\u0072\u0065s\u0070\u006f\u006e\u0064"},{Key :"\u0062\u006f\u0074",Value :"\u0070\u0065\u0072\u0070\u0065\u006e\u0064\u0069\u0063\u0075\u006c\u0061\u0072"},{Key :"\u0050\u0074\u0073",Value :"\u0070\u0065\u0073\u0065\u0074\u0061"},{Key :"\u0070e\u0073\u0065\u0074\u0061\u0073",Value :"\u0070\u0065\u0073\u0065\u0074\u0061"},{Key :"\u006cc\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u0070\u0065\u0073o\u0031"},{Key :"\u0070\u0065\u0073\u006f\u0070\u0068",Value :"\u0070\u0065\u0073o\u0031"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0070\u0068\u0069",Value :"\u0070\u0068\u0069"},{Key :"\u0070\u0068\u0069\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b",Value :"\u0070\u0068\u0069\u0031"},{Key :"\u0075\u0070\u0070h\u0069",Value :"\u0070\u0068\u0069\u0031"},{Key :"\u007ae\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u0070\u0068\u0069\u0031"},{Key :"\u006f\u0076\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u006e\u006f\u0073\u0070",Value :"\u0070\u0068\u0069\u006c\u0061\u0074\u0069\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00338",Value :"p\u0068\u0069\u006e\u0074\u0068\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0044z\u0068\u0061\u0063\u0065\u006b",Value :"\u0070\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00310",Value :"p\u0068\u006f\u0070\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00308",Value :"\u0070\u0068\u006fp\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00312",Value :"\u0070\u0068\u006f\u0073\u0061\u006d\u0070\u0068\u0061o\u0074\u0068\u0061\u0069"},{Key :"\u0075\u0070\u0070\u0069",Value :"\u0070\u0069"},{Key :"\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u006e\u006f\u0074",Value :"\u0070\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065r\u0032\u0070\u0069\u0031",Value :"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069"},{Key :"\u0068\u0073\u006c\u0061\u0073\u0068",Value :"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069"},{Key :"\u0070\u0069\u0031",Value :"\u0070\u006c\u0075s\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062"},{Key :"\u0070l\u0075\u0073\u0073\u0075\u0062",Value :"\u0070\u006c\u0075s\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0070\u006d",Value :"\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00307",Value :"\u0070o\u0070\u006c\u0061\u0074\u0068\u0061i"},{Key :"p\u0072\u0065\u0063\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u0070\u0072e\u0063\u0065\u0064e\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076"},{Key :"\u0070\u0072\u0065\u0063\u006e\u0065\u0071\u0071",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u006e\u006f\u0074\u0073\u006cn\u0074\u0065\u0071\u006c"},{Key :"\u0070r\u0065c\u0065\u0065\u0064\u0073\u006eo\u0074\u0073i\u006d\u0069\u006c\u0061\u0072",Value :"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074"},{Key :"\u0070\u0072\u0065\u0063\u006e\u0073\u0069\u006d",Value :"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074"},{Key :"\u0070\u0072\u0065\u0063",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u006e\u006ft\u0070\u0072\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u006c",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070\u0072\u0065\u0063\u0065\u0071",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"p\u0072\u0065\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079"},{Key :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065q\u0075\u0061\u006c\u0031",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079"},{Key :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0071\u0075i\u0076\u006c\u006e\u0074",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070r\u0065\u0063\u0073\u0069\u006d",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0052\u0078",Value :"\u0070\u0072\u0065s\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e"},{Key :"\u0062a\u0063\u006b\u0070\u0072\u0069\u006de",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u006di\u006e\u0075\u0074\u0065\u0072\u0065v",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070r\u0069\u006d\u0065\u0072\u0065\u00761",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070\u0072\u0069m\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070\u0072\u006f\u0064",Value :"\u0070r\u006f\u0064\u0075\u0063\u0074"},{Key :"\u0070\u0072\u006f\u0064\u0075\u0063\u0074\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0070r\u006f\u0064\u0075\u0063\u0074"},{Key :"p\u0072\u006f\u0064\u0075\u0063\u0074\u0074\u0065\u0078\u0074",Value :"\u0070r\u006f\u0064\u0075\u0063\u0074"},{Key :"v\u0061\u0072\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065",Value :"\u0070\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u0076\u0065"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074",Value :"\u0070\u0072\u006fp\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074",Value :"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0070\u0073\u0065\u0074",Value :"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0043\u006f\u006co\u006e",Value :"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006f\u006e"},{Key :"\u0070\u0072\u006f\u0070\u0074\u006f",Value :"\u0070\u0072\u006fp\u006f\u0072\u0074\u0069\u006f\u006e\u0061\u006c"},{Key :"\u006co\u0077\u0065\u0072\u0072\u0061\u006ek",Value :"\u0070\u0072\u0075\u0072\u0065\u006c"},{Key :"\u0075\u0070\u0070s\u0069",Value :"\u0070\u0073\u0069"},{Key :"\u0073h\u0069\u0066\u0074\u0069\u006e",Value :"q\u0061\u0064\u006d\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0071\u0061\u0066\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0071\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0071a\u0066\u006d\u0065\u0064\u0069\u0061l",Value :"\u0071a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0063\u006b\u006e\u006f\u0077\u006c\u0065\u0064\u0067\u0065",Value :"\u0071\u0061r\u006e\u0065\u0079p\u0061\u0072\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0073\u0075b\u006e\u006f\u0073\u0070",Value :"\u0071\u0068\u006fo\u006b"},{Key :"\u0071o\u0066d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0071\u006f\u0066\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00387",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0061\u0074\u0061\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068at\u0061\u0066\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0061\u0074\u0061\u0066\u0073\u0065\u0067\u006f\u006c",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068at\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066\u0068\u0065\u0062\u0072\u0065w",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0069\u0072\u0069\u0071",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0069\u0072\u0069\u0071\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u006f\u006c\u0061\u006d",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u006f\u006c\u0061\u006d\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066\u0071\u0061\u006d\u0061\u0074s",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066q\u0061\u006d\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066\u0071\u0075\u0062\u0075\u0074s",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0065\u0067\u006f\u006c",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0065\u0067\u006f\u006c\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0068\u0065\u0076\u0061",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0068\u0065\u0076\u0061\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0074\u0073\u0065\u0072\u0065",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0074\u0073\u0065\u0072\u0065\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00396",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0062\u006c\u0061\u006e\u006b\u0062",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0069\u0062\u0075\u0074\u0073",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073\u0031\u0038",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073\u0032\u0035",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073\u0033\u0031",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062u\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071u\u0062u\u0074\u0073\u006e\u0061\u0072r\u006f\u0077h\u0065\u0062\u0072\u0065\u0077",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075ts\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0065\u0071\u0075\u0061\u006c",Value :"\u0071u\u0065\u0073\u0074\u0065\u0071"},{Key :"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u006c\u0065\u0066\u0074",Value :"\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t"},{Key :"\u0071\u0075\u006f\u0074\u0065\u006c\u0065\u0066\u0074\u0072\u0065\u0076e\u0072\u0073\u0065\u0064",Value :"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0072\u0065\u0076",Value :"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0071u\u006ft\u0065\u0073\u0069\u006e\u0067\u006c\u0072\u0069\u0067\u0068\u0074",Value :"\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"n\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065",Value :"q\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u006e"},{Key :"\u0072\u0061\u0064\u0069\u0063\u0061\u006c\u0042\u0069\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"r\u0061\u0064\u0069\u0063\u0061\u006c\u0042\u0069\u0067\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072\u0061\u0064\u0069\u0063\u0061\u006c\u0062\u0069\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"r\u0061\u0064\u0069\u0063\u0061\u006c\u0062\u0069\u0067\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072a\u0064\u0069\u0063\u0061\u006c\u0062t",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072a\u0064\u0069\u0063\u0061\u006c\u0074p",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072\u0061\u0064\u0069\u0063\u0061\u006c\u0076\u0065\u0072\u0074\u0065\u0078",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0073\u0071\u0072\u0074",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u0072\u006f\u006f\u0074",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u006da\u0074\u0068\u0072\u0061\u0074\u0069o",Value :"\u0072\u0061\u0074i\u006f"},{Key :"\u0072\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0072\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0052\u0073\u006da\u006c\u006c\u0063\u0061\u0070\u0069\u006e\u0076",Value :"\u0072d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0073\u006f\u0075\u006e\u0064\u0063\u006f\u0070\u0079r\u0069\u0067\u0068\u0074",Value :"r\u0065\u0063\u006f\u0072\u0064\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072e\u0066\u006d\u0061\u0072\u006b",Value :"\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u006d\u0061\u0072\u006b"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071",Value :"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074"},{Key :"\u0073u\u0070e\u0072\u0073\u0065\u0074\u006f\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071",Value :"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0063i\u0072\u0063\u006c\u0065\u0052",Value :"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00325",Value :"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0072\u0065\u0068",Value :"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0072\u0065\u0068\u0079eh\u0061\u006c\u0065\u0066\u006c\u0061\u006d\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006e\u006f\u0072\u0074h\u0065\u0061\u0073\u0074",Value :"r\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0072\u0065\u0073\u0068\u0077\u0069\u0074\u0068\u0064a\u0067\u0065\u0073\u0068",Value :"\u0072\u0065s\u0068\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00388",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0068\u0061\u0074\u0061\u0066p\u0061\u0074\u0061\u0068",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"r\u0065s\u0068\u0068\u0061\u0074\u0061\u0066\u0070\u0061t\u0061\u0068\u0068\u0065br\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0068\u0061\u0074\u0061\u0066s\u0065\u0067\u006f\u006c",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"r\u0065s\u0068\u0068\u0061\u0074\u0061\u0066\u0073\u0065g\u006f\u006c\u0068\u0065br\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0068\u0069\u0072\u0069\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0068\u006f\u006c\u0061m",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0068\u006f\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0070\u0061\u0074\u0061h",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065s\u0068\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0071\u0075\u0062\u0075\u0074\u0073",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065s\u0068\u0071\u0075b\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0073\u0065\u0067\u006fl",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0073\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0073\u0068\u0065\u0076a",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0073\u0068\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0074\u0073\u0065\u0072e",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0074\u0073\u0065\u0072\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0062a\u0063\u006b\u0073\u0069\u006d\u0065q",Value :"\u0072\u0065\u0076\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0062a\u0063\u006b\u0073\u0069\u006d",Value :"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0072\u0065\u0076\u0073\u0069\u006d\u0069\u006c\u0061\u0072",Value :"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0074\u0069\u006c\u0064\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",Value :"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0061\u0072r\u006f\u0077\u006co\u006e\u0067\u0062\u006f\u0074\u0068\u006e\u006f\u0074",Value :"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"r\u0065\u0076\u0069\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0069\u006e\u0076\u006e\u006f\u0074",Value :"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074"},{Key :"\u006co\u0067i\u0063\u0061\u006c\u006e\u006ft\u0072\u0065v\u0065\u0072\u0073\u0065\u0064",Value :"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074"},{Key :"\u0061\u0063\u0075t\u0065\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u0072f\u0069\u0073\u0068\u0068\u006f\u006fk"},{Key :"\u0068a\u0063\u0065\u006b\u006e\u006f\u0073p",Value :"\u0072\u0066\u0069\u0073\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076e\u0072\u0073\u0065\u0064"},{Key :"\u0075\u0070\u0072h\u006f",Value :"\u0072\u0068\u006f"},{Key :"\u0072\u0069\u006e\u0067\u006e\u006f\u0073\u0070",Value :"\u0072\u0068\u006fo\u006b"},{Key :"\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u006e\u006f\u0073\u0070",Value :"r\u0068\u006f\u006f\u006b\u0074\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0074\u0065\u0074s\u0065",Value :"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0072\u0068\u006f",Value :"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0072\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0065"},{Key :"\u0075\u006c\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0077"},{Key :"\u006c\u0072\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0065"},{Key :"\u006c\u006c\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0077"},{Key :"\u0062\u0065\u0074a\u0031",Value :"\u0072\u0069\u0067\u0068\u0074\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0076\u0061\u0072\u006c\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u006f\u0063\u0069r\u0063",Value :"\u0072i\u006e\u0067\u0063\u006d\u0062"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0074\u006f\u006e\u006f\u0073",Value :"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0062\u0065\u006c\u006fwc\u006d\u0062"},{Key :"\u006eu\u006de\u0072\u0061\u006c\u0067\u0072\u0065\u0065\u006b\u0073\u0075\u0062",Value :"\u0072\u0069\u006e\u0067\u0068\u0061\u006c\u0066\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006b\u0061\u0070\u0070\u0061\u0031",Value :"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0062e\u006c\u006f\u0077\u0063\u006d\u0062"},{Key :"\u0065\u0071\u0063\u0069\u0072\u0063",Value :"r\u0069\u006e\u0067\u0069\u006e\u0065\u0071\u0075\u0061\u006c"},{Key :"h\u006f\u006f\u006b\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067"},{Key :"\u0064o\u0074\u006e\u006f\u0073\u0070",Value :"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00315",Value :"\u0072o\u0072\u0075\u0061\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00313",Value :"\u0072\u0072\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062\u006c\u006f\u0063\u006b\u0072\u0069\u0067\u0068t\u0068\u0061\u006c\u0066",Value :"\u0072t\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0062r\u0065\u0076\u0065\u006e\u006f\u0073p",Value :"\u0072t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0072\u0069\u0067\u0068t\u006e\u006f\u0073\u0070",Value :"\u0072t\u0075r\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0072\u0074\u0075\u0072\u006e\u0068\u006f\u006f\u006bs\u0075\u0070\u0065\u0072",Value :"\u0072\u0074u\u0072\u006e\u0072t\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072"},{Key :"\u0072\u0075\u0070\u0065\u0065\u0073",Value :"\u0072\u0075\u0070e\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00316",Value :"\u0072\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c",Value :"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0061\u0064\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0073\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073a\u0064\u006d\u0065\u0064\u0069\u0061l",Value :"\u0073a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00381",Value :"\u0073\u0061\u006d\u0065\u006b\u0068"},{Key :"\u0073\u0061\u006de\u006b\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0061\u006d\u0065\u006b\u0068"},{Key :"\u0073\u0061\u006de\u006b\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0061m\u0065\u006b\u0068w\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00330",Value :"\u0073\u0061\u0072\u0061\u0061\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00345",Value :"\u0073\u0061\u0072\u0061\u0061\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00348",Value :"\u0073a\u0072a\u0061\u0069\u006d\u0061\u0069m\u0061\u006ca\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00347",Value :"\u0073\u0061\u0072\u0061\u0061\u0069\u006d\u0061\u0069\u006d\u0075\u0061n\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00331",Value :"\u0073\u0061\u0072\u0061\u0061\u006d\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00329",Value :"\u0073a\u0072\u0061\u0061\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00344",Value :"\u0073a\u0072\u0061\u0065\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00333",Value :"\u0073\u0061\u0072\u0061\u0069\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00332",Value :"\u0073a\u0072\u0061\u0069\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00346",Value :"\u0073a\u0072\u0061\u006f\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00335",Value :"s\u0061\u0072\u0061\u0075\u0065\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00334",Value :"\u0073\u0061\u0072\u0061\u0075\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00336",Value :"\u0073a\u0072\u0061\u0075\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00337",Value :"\u0073\u0061\u0072\u0061\u0075\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0073a\u0074\u0069\u0073\u0066\u0079",Value :"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s"},{Key :"\u0076\u0044\u0061s\u0068",Value :"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s"},{Key :"\u006c\u0065\u006e\u0067\u0074\u0068",Value :"\u0073\u0063\u0068w\u0061"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0038\u00346",Value :"\u0073\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0068\u0061\u006c\u0066\u006c\u0065\u006e\u0067\u0074\u0068",Value :"\u0073c\u0068\u0077\u0061\u0068\u006f\u006fk"},{Key :"\u0068\u0069\u0067\u0068\u0065\u0072\u0072\u0061\u006e\u006b",Value :"\u0073\u0063\u0075\u0072\u0065\u006c"},{Key :"\u0064\u0070\u0072\u0069\u006d\u0065",Value :"\u0073\u0065\u0063\u006f\u006e\u0064"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0064\u0062\u006c",Value :"\u0073\u0065\u0063\u006f\u006e\u0064"},{Key :"\u0070r\u0069\u006d\u0065\u0064\u0062\u006c1",Value :"\u0073\u0065\u0063\u006f\u006e\u0064"},{Key :"\u0073e\u0065\u006e\u0066\u0069\u006e\u0061l",Value :"\u0073e\u0065n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"s\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0073\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0073\u0065e\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00395",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0067\u0072\u006f\u0075\u0070\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0065\u0067o\u006c",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067\u006f\u006c\u0031\u0066",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067\u006f\u006c\u0032\u0063",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067\u006f\u006c\u0031\u0033",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0065\u0067\u006f\u006c\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067o\u006c\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067o\u006c\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006e\u0067\u0062\u006f\u0074\u0068",Value :"s\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0073\u0065\u0076\u0065\u006e\u0073\u0075\u0062",Value :"\u0073\u0065\u0076\u0065\u006e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0073ev\u0065\u006e",Value :"\u0073\u0065\u0076e\u006e\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00367",Value :"\u0073e\u0076\u0065\u006e\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00357",Value :"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061",Value :"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"s\u0068a\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063",Value :"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061dd\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",Value :"s\u0068a\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063"},{Key :"\u0073\u0068\u0061dd\u0061\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061d\u0064\u0061\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0073\u0068a\u0064\u0064\u0061h\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c"},{Key :"\u0073\u0068\u0061dd\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",Value :"s\u0068a\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063"},{Key :"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0064\u0061m\u006d\u0061\u006c\u006f\u0077",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077"},{Key :"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0064\u0061\u006d\u006da\u0074\u0061\u006e\u006c\u006f\u0077",Value :"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066a\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077",Value :"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0066\u0061t\u0068\u0061\u006c\u006f\u0077"},{Key :"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077",Value :"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u0074\u0061\u006e\u006c\u006f\u0077"},{Key :"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u006b\u0061s\u0072\u0061\u006c\u006f\u0077",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077"},{Key :"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u006b\u0061\u0073\u0072a\u0074\u0061\u006e\u006c\u006f\u0077",Value :"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077"},{Key :"\u0062l\u006fc\u006b\u0068\u0061\u006c\u0066\u0073\u0068\u0061\u0064\u0065\u0064",Value :"\u0073\u0068\u0061d\u0065"},{Key :"s\u0068\u0061\u0064\u0065\u006d\u0065\u0064\u0069\u0075\u006d",Value :"\u0073\u0068\u0061d\u0065"},{Key :"\u0062\u006c\u006f\u0063\u006b\u0071\u0074\u0072\u0073h\u0061\u0064\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074"},{Key :"\u006ct\u0073\u0068\u0061\u0064\u0065",Value :"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074"},{Key :"\u0073\u0068\u0065\u0065\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0073\u0068e\u0065\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0065e\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0073h\u0065e\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"s\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0073\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0065\u0068\u006f\u006f\u006b",Value :"\u0073\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u004c\u0073\u0068",Value :"\u0073h\u0069\u0066\u0074\u006c\u0065\u0066t"},{Key :"\u0052\u0073\u0068",Value :"\u0073\u0068\u0069\u0066\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0075\u0073\u0074\u0072\u0074\u0062\u0061\u0072",Value :"s\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00389",Value :"\u0073\u0068\u0069\u006e"},{Key :"\u0073\u0068\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0068\u0069\u006e"},{Key :"\u0073\u0068i\u006e\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0073\u0068\u0069\u006e\u0077\u0069\u0074\u0068\u0064a\u0067\u0065\u0073\u0068",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0073\u0068\u0069nd\u0061\u0067\u0065\u0073\u0068\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074"},{Key :"\u0073h\u0069\u006e\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073h\u0061\u006e\u0064\u0073\u0068\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074"},{Key :"\u0073\u0068i\u006e\u0064\u0061g\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077"},{Key :"\u0073\u0068\u0069nw\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068\u0061\u006e\u0064\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00304",Value :"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073h\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00394",Value :"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074"},{Key :"\u0073\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068e\u0062\u0072\u0065\u0077",Value :"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074"},{Key :"\u0073h\u0069n\u0077\u0069\u0074\u0068\u0073\u0068\u0069\u006e\u0064\u006f\u0074",Value :"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074"},{Key :"\u0067\u0072\u0061v\u0065\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u0073\u0068\u006fo\u006b"},{Key :"\u0075p\u0073\u0069\u0067\u006d\u0061",Value :"\u0073\u0069\u0067m\u0061"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",Value :"\u0073\u0069\u0067\u006d\u0061\u0031"},{Key :"\u0073\u0069\u0067\u006d\u0061\u0066\u0069\u006e\u0061\u006c",Value :"\u0073\u0069\u0067\u006d\u0061\u0031"},{Key :"\u0043\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"\u0073\u0069\u0067\u006dal\u0075\u006e\u0061\u0074\u0065\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065e\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00339",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u0074e\u0067",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006ee\u0077\u006c\u0069\u006e\u0065",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"s\u0069\u006c\u0075\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0069\u006d",Value :"\u0073i\u006d\u0069\u006c\u0061\u0072"},{Key :"\u0074i\u006c\u0064\u0065\u006d\u0061\u0074h",Value :"\u0073i\u006d\u0069\u006c\u0061\u0072"},{Key :"\u0074\u0069\u006c\u0064\u0065\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072",Value :"\u0073i\u006d\u0069\u006c\u0061\u0072"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",Value :"\u0073i\u006d\u006e\u0065\u0071\u0071"},{Key :"\u0073\u0069\u006e\u0065",Value :"\u0073\u0069\u006e\u0065\u0077\u0061\u0076\u0065"},{Key :"\u0073\u0069\u0078\u0073\u0075\u0062",Value :"s\u0069\u0078\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"e\u0078\u0074\u0065\u006e\u0064\u0065d\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064i\u0063\u0064\u0069g\u0069t\u0073\u0069\u0078",Value :"\u0073\u0069\u0078\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00366",Value :"\u0073i\u0078\u0074\u0068\u0061\u0069"},{Key :"\u006da\u0074\u0068\u0073\u006c\u0061\u0073h",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073\u006c\u0061\u0073\u0068\u0042\u0069\u0067",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073l\u0061\u0073\u0068\u0042\u0069\u0067g",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073\u006c\u0061\u0073\u0068\u0062\u0069\u0067",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073l\u0061\u0073\u0068\u0062\u0069\u0067g",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0066\u0072\u006fw\u006e",Value :"\u0073l\u0075\u0072\u0061\u0062\u006f\u0076e"},{Key :"s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067l\u0065\u006c\u0065\u0066ts\u006c\u0064",Value :"\u0073\u006d\u0061\u006clb\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065f\u0074"},{Key :"s\u006d\u0061\u006c\u006ctr\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068\u0074\u0073\u006c\u0064",Value :"\u0073\u006d\u0061ll\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0065\u006c\u0065m\u0065\u006e\u0074\u0073\u006d\u0061\u006c\u006c",Value :"\u0073m\u0061\u006c\u006c\u0069\u006e"},{Key :"\u0073\u006d\u0061l\u006c\u0065\u006c\u0065\u006d\u0065\u006e\u0074",Value :"\u0073m\u0061\u006c\u006c\u0069\u006e"},{Key :"\u006f\u0077\u006e\u0065\u0072\u0073\u006d\u0061\u006c\u006c",Value :"\u0073m\u0061\u006c\u006c\u006e\u0069"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073",Value :"\u0073m\u0061\u006c\u006c\u006e\u0069"},{Key :"\u0073l\u0075\u0072\u0062\u0065\u006c\u006fw",Value :"\u0073\u006d\u0069l\u0065"},{Key :"\u0077\u0068i\u0074\u0065\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065",Value :"\u0073m\u0069\u006c\u0065\u0066\u0061\u0063e"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00358",Value :"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071",Value :"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0073f\u0074\u0068\u0079\u0070\u0068\u0065n",Value :"\u0073\u006f\u0066\u0074\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00394",Value :"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0073\u006f\u0066\u0074",Value :"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064\u0065\u0069",Value :"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062"},{Key :"\u006e\u0065\u0067\u0061\u0074\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068",Value :"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062"},{Key :"\u006e\u006f\u0074",Value :"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062"},{Key :"\u0044\u0065\u0069",Value :"\u0073\u006f\u006c\u0069du\u0073\u0073\u0068\u006f\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063m\u0062"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00321",Value :"\u0073\u006f\u0072\u0075\u0073\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00320",Value :"\u0073\u006f\u0073\u0061\u006c\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00391",Value :"\u0073\u006f\u0073\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00322",Value :"\u0073o\u0073\u0075\u0061\u0074\u0068\u0061i"},{Key :"\u0073p\u0061c\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0073\u0070\u0061c\u0065"},{Key :"\u0061\u0031\u0030\u0039",Value :"\u0073\u0070\u0061d\u0065"},{Key :"\u0073p\u0061\u0064\u0065\u0073\u0075\u0069t",Value :"\u0073\u0070\u0061d\u0065"},{Key :"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074b\u006c\u0061\u0063\u006b",Value :"\u0073\u0070\u0061d\u0065"},{Key :"\u0076\u0061\u0072s\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074",Value :"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u0073\u0071\u0069\u006d\u0061\u0067\u0065\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",Value :"s\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071"},{Key :"\u0073q\u006fr\u0069\u0067\u0069\u006e\u006fr\u006e\u006ft\u0065\u0071\u0075\u0061\u006c",Value :"s\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071"},{Key :"s\u0069\u0067\u006d\u0061\u006c\u0075\u006e\u0061\u0074\u0065",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0062\u006f\u0078\u0063\u0072\u006f\u0073\u0073\u0064\u0069\u0061\u0067h\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c"},{Key :"\u0073q\u0075a\u0072\u0065\u0063\u0072\u006f\u0073\u0073\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c"},{Key :"\u0062\u006f\u0078\u0064\u006f\u0074",Value :"\u0073q\u0075\u0061\u0072\u0065\u0064\u006ft"},{Key :"\u0062\u006f\u0078\u0068\u006f\u0072\u0069\u007a\u0068\u0061\u0074\u0063\u0068",Value :"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0068\u0066\u0069\u006c\u006c",Value :"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c"},{Key :"\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074",Value :"s\u0071\u0075\u0061\u0072\u0065\u0069\u006d\u0061\u0067\u0065"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064",Value :"\u0073q\u0075a\u0072\u0065\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0073\u0065\u0073\u006c\u0064",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0072\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0062\u006f\u0078\u006d\u0069\u006e\u0075\u0073",Value :"s\u0071\u0075\u0061\u0072\u0065\u006d\u0069\u006e\u0075\u0073"},{Key :"\u0062\u006f\u0078\u0074\u0069\u006d\u0065\u0073",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0069g\u0069\u006e\u0061\u006c"},{Key :"\u0062\u006f\u0078\u0063\u0072\u006f\u0073\u0073\u0068\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c"},{Key :"\u0073\u0071\u0075a\u0072\u0065\u0068\u0076\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c"},{Key :"\u0062o\u0078\u0070\u006c\u0075\u0073",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u0070\u006c\u0075\u0073"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u0072\u0069\u0067h\u0074\u0073\u006c\u0064",Value :"\u0073\u0071u\u0061\u0072\u0065r\u0069\u0067\u0068\u0074\u0062\u006c\u0061\u0063\u006b"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u006e\u0077\u0073\u006c\u0064",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u006c\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0062\u006fx\u006c\u0065\u0066t\u0064\u0069\u0061\u0067\u0068\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u006e\u0077\u0073e\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0062\u006f\u0078\u0072\u0074\u0064\u0069\u0061\u0067h\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u006e\u0065\u0073w\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0062\u006f\u0078v\u0065\u0072\u0074\u0068\u0061\u0074\u0063\u0068",Value :"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0076\u0066\u0069\u006c\u006c",Value :"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c"},{Key :"\u0062l\u0061c\u006b\u0069\u006e\u0077\u0068i\u0074\u0065s\u0071\u0075\u0061\u0072\u0065",Value :"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k"},{Key :"\u0062o\u0078\u006e\u0065\u0073\u0074\u0065d",Value :"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k"},{Key :"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077",Value :"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074"},{Key :"\u0061r\u0072o\u0077\u0073\u0071\u0075\u0069g\u0067\u006ce\u0072\u0069\u0067\u0068\u0074",Value :"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072i\u0067h\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077",Value :"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u006f\u0078\u0072\u006f\u0075\u006e\u0064\u0065\u0064",Value :"\u0073q\u0075\u006f\u0076\u0061\u006c"},{Key :"\u0073t\u0061\u0072\u0065\u0071\u0075\u0061l",Value :"\u0073\u0074\u0061\u0072\u0065\u0071"},{Key :"\u0053\u0075\u0062\u0073\u0065\u0074",Value :"\u0073u\u0062\u0073\u0065\u0074\u0064\u0062l"},{Key :"\u006e\u006f\u0074\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u0064b\u006c\u0065\u0071\u006c",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0062\u0073\u0065\u0074\u0065\u0071q",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006f\u0074\u0073\u0075\u0062\u0073\u0065\u0074o\u0072\u0065\u0071\u006c",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0062\u0073\u0065\u0074\u006e\u0065q",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0062s\u0065\u0074\u006e\u006f\u0074\u0065\u0071\u006c",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071\u0071",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064b\u006c\u0065\u0071\u006c"},{Key :"\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0066o\u006c\u006c\u006f\u0077\u0073",Value :"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u0073\u0075\u0063\u0063",Value :"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073",Value :"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074"},{Key :"\u006e\u0069",Value :"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074"},{Key :"\u006f\u0077\u006ee\u0072",Value :"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00358",Value :"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0075\u006bu\u006e",Value :"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0075\u006b\u0075\u006e\u006f\u006e\u0074\u0061t\u0077\u0065\u0065\u006c",Value :"s\u0075\u006b\u0075\u006e\u006d\u0065\u0064\u0069\u0061\u006c"},{Key :"\u0073\u0075\u006d",Value :"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn"},{Key :"\u0073\u0075m\u006d\u0061\u0074i\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn"},{Key :"\u0073\u0075\u006d\u006d\u0061\u0074\u0069\u006f\u006e\u0074\u0065\u0078\u0074",Value :"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn"},{Key :"\u0063o\u006d\u0070\u0061\u0073\u0073",Value :"\u0073\u0075\u006e"},{Key :"\u0053\u0075\u0070\u0073\u0065\u0074",Value :"s\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u0064\u0062\u006c"},{Key :"\u006e\u006f\u0074\u0073up\u0065\u0072\u0073\u0065\u0074\u006f\u0072\u0064\u0062\u006c\u0065\u0071\u006c",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0070\u0073\u0065\u0074\u0065\u0071q",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006ft\u0073\u0075\u0070e\u0072\u0073\u0065\u0074\u006f\u0072\u0065\u0071\u006c",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u006eo\u0074\u0065\u0071\u006c",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0070\u0073\u0065\u0074\u006e\u0065q",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071\u0071",Value :"\u0073\u0075\u0070\u0065rs\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c"},{Key :"\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071",Value :"\u0073u\u0070e\u0072\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0061\u0074\u0074\u0069\u0063\u0065\u0074\u006f\u0070",Value :"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e"},{Key :"\u0074\u006f\u0070",Value :"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e"},{Key :"\u0064\u0061\u0073h\u0076",Value :"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074"},{Key :"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065r\u0069\u0067\u0068\u0074",Value :"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00331",Value :"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0074\u0061\u0068",Value :"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074a\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0074a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u006f\u006e\u0074\u0061t\u0077\u0065\u0065\u006c",Value :"\u0074a\u0074\u0077\u0065\u0065\u006c\u0077\u0069\u0074\u0068\u0066\u0061t\u0068\u0061\u0074\u0061\u006e\u0061\u0062\u006f\u0076\u0065"},{Key :"\u0075\u0070\u0074a\u0075",Value :"\u0074\u0061\u0075"},{Key :"\u0074\u0061\u0076\u0064\u0061\u0067\u0065\u0073",Value :"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0074a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0074\u0061\u0076\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00390",Value :"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0074\u0061\u0076",Value :"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0074\u0063\u0061r\u006f\u006e\u0061\u006c\u0074\u006f\u006e\u0065",Value :"\u0074c\u0061\u0072\u006f\u006e\u0031"},{Key :"\u0062a\u0072m\u0069\u0064\u0073\u0068\u006f\u0072\u0074\u006e\u006f\u0073\u0070",Value :"\u0074\u0063\u0063\u0075\u0072\u006c"},{Key :"\u0074\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0074\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u006bc\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u0074c\u0065\u0064\u0069\u006c\u006c\u00611"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00307",Value :"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068e\u0068",Value :"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0074\u0063h\u0065\u0068\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068e\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068\u0065hm\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062i\u0063",Value :"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"t\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0074\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",Value :"\u0074\u0065\u0068\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"t\u0065h\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00317",Value :"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u006d\u0061\u0072\u0062\u0075\u0074\u0061",Value :"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068m\u0061\u0072\u0062\u0075\u0074\u0061\u0066\u0069\u006e\u0061\u006c",Value :"t\u0065\u0068\u006d\u0061rb\u0075t\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0074e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"t\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"t\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065h\u0077\u0069\u0074h\u006e\u006f\u006f\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0074e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u006c",Value :"\u0074e\u006c\u0065\u0070\u0068\u006f\u006ee"},{Key :"\u0062\u0065\u006c\u006c",Value :"\u0074\u0065\u006c\u0069sh\u0061\u0067\u0065\u0064\u006f\u006c\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u0074\u0061\u006c\u0069\u006e\u006b\u0065s\u0063\u0061\u0070\u0065",Value :"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0030",Value :"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074\u0069\u006cd\u0065\u006d\u0069\u0064\u006e\u006f\u0073\u0070",Value :"\u0074\u0065\u0073\u0068"},{Key :"\u0074e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0074\u0065\u0074\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00372",Value :"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0074\u0065\u0074",Value :"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"L\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",Value :"\u0074\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0073t\u0061\u0072\u0074\u0074\u0065\u0078t",Value :"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074e\u0076i\u0072\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00324",Value :"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0061\u006c",Value :"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074h\u0061\u006c\u0066\u0069\u006e\u0061l",Value :"\u0074h\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00356",Value :"\u0074h\u0061n\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00319",Value :"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0065\u0068",Value :"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074h\u0065\u0068\u0066\u0069\u006e\u0061l",Value :"\u0074h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"t\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0074\u0068e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075p\u0074\u0068\u0065\u0074\u0061",Value :"\u0074\u0068\u0065t\u0061"},{Key :"\u0067\u0065\u0068\u006f\u006f\u006b",Value :"\u0074\u0068\u0065\u0074\u0061\u0031"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",Value :"\u0074\u0068\u0065\u0074\u0061\u0031"},{Key :"\u0074\u0068e\u0074\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",Value :"\u0074\u0068\u0065\u0074\u0061\u0031"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00397",Value :"\u0074\u0068\u006f\u006e\u0061\u006e\u0067\u006d\u006f\u006e\u0074\u0068o\u0074\u0068\u0061\u0069"},{Key :"\u0041\u0068\u0061\u0063\u0065\u006b",Value :"\u0074\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00398",Value :"\u0074\u0068\u006f\u0070\u0068\u0075\u0074\u0068\u0061o\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00303",Value :"\u0074\u0068\u006f\u0074\u0068\u0061\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00396",Value :"t\u0068\u006f\u0074\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00304",Value :"\u0074\u0068\u006ft\u0068\u006f\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00302",Value :"\u0074\u0068\u006ft\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0074h\u006f\u0075\u0073\u0061n\u0064\u0073\u0073\u0065\u0070a\u0072a\u0074o\u0072\u0070\u0065\u0072\u0073\u0069\u0061n",Value :"\u0074h\u006f\u0075\u0073\u0061\u006e\u0064\u0073\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0062",Value :"\u0074\u0068\u0072\u0065\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0074hr\u0065\u0065",Value :"\u0074\u0068\u0072e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00363",Value :"\u0074h\u0072\u0065\u0065\u0074\u0068\u0061i"},{Key :"\u0074\u0069\u0065",Value :"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t"},{Key :"\u0074\u0069\u0065\u0031",Value :"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t"},{Key :"\u0069\u006c\u0064\u0065",Value :"\u0074\u0069\u006cd\u0065"},{Key :"\u0074i\u006c\u0064\u0065\u0077\u0069\u0064e",Value :"\u0074\u0069\u006cd\u0065"},{Key :"\u0074\u0069\u006c\u0064\u0065\u0077\u0069\u0064\u0065\u0072",Value :"\u0074\u0069\u006cd\u0065"},{Key :"t\u0069\u006c\u0064\u0065\u0077\u0069\u0064\u0065\u0073\u0074",Value :"\u0074\u0069\u006cd\u0065"},{Key :"\u0077\u0069\u0064\u0065\u0075\u0074\u0069\u006c\u0064\u0065",Value :"\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062"},{Key :"\u0074i\u006c\u0064\u0065\u0063\u006f\u006db",Value :"\u0074\u0069\u006c\u0064\u0065\u0063\u006d\u0062"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0077\u0061\u0076\u0065\u0062\u006f\u0074\u0068",Value :"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074\u0069p\u0065\u0068\u0061l\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006e\u006f\u0072\u0074h\u0077\u0065\u0073\u0074",Value :"\u0074\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0065\u0074\u0075r\u006e",Value :"\u0074\u006f\u006e\u0065\u0066\u0069\u0076\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00395",Value :"t\u006f\u0070\u0061\u0074\u0061\u006b\u0074\u0068\u0061\u0069"},{Key :"\u0074\u006f\u0070\u0061\u0072\u0063",Value :"\u0074\u006f\u0070\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00301",Value :"\u0074o\u0074\u0061\u006f\u0074\u0068\u0061i"},{Key :"\u0063\u006f\u006d\u006d\u0061\u0073\u0075\u0070\u0072\u0069\u0067\u0068t\u006e\u006f\u0073\u0070",Value :"\u0074\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b"},{Key :"t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0074",Value :"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0063\u0064\u006f\u0074"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064",Value :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074b\u006c\u0061\u0063\u006b"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0066\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006ce\u0066\u0074\u0065\u0071",Value :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0074\u0072i\u0061\u006e\u0067l\u0065\u0072\u0069\u0067\u0068\u0074\u0073\u006c\u0064",Value :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0065\u0071",Value :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0074\u0072i\u0061\u006e\u0067r\u0069\u0067\u0068\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0074\u0072\u0069\u0070\u006c",Value :"\u0074r\u0070\u0072\u0069\u006d\u0065"},{Key :"p\u0072\u0069\u006d\u0065\u0074\u0072\u0069\u0070\u006c\u0031",Value :"\u0074r\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062l\u006e\u006f\u0073\u0070",Value :"\u0074\u0073"},{Key :"\u0074\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0074s\u0061d\u0069\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00388",Value :"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0074\u0073\u0065",Value :"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00394",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074\u0073\u0065\u0072\u0065\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"t\u0073\u0065\u0072\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065\u0072\u0065\u0031\u0065",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074\u0073\u0065r\u0065",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065r\u0065\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0066\u0069\u006c\u0065\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065\u0072\u0065\u0032\u0062",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065r\u0065\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00308",Value :"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0074\u0073\u0068\u0065",Value :"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0063o\u006dm\u0061\u0073\u0075\u0070\u0072\u0065\u0076\u006e\u006f\u0073\u0070",Value :"\u0074t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0069\u006f\u0074\u0061\u0074\u0075\u0072\u006e",Value :"\u0074\u0075\u0072\u006e\u0065\u0064\u0069\u006f\u0074\u0061"},{Key :"\u0076\u0064\u0061s\u0068",Value :"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00394",Value :"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061\u0072\u0061\u0062ic\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0074\u0077\u006f",Value :"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0074\u0077\u006f\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0065n\u006ce\u0061\u0064\u0065\u0072\u0074\u0077\u006f\u0064\u006f\u0074\u0073",Value :"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072"},{Key :"\u0074\u0077\u006f\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072",Value :"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072"},{Key :"\u0074\u0077\u006f\u0064\u006f\u0074\u006c\u0065\u0061\u0064",Value :"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072"},{Key :"\u0074\u0077\u006f\u0073\u0075\u0062",Value :"t\u0077\u006f\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"e\u0078\u0074\u0065\u006e\u0064\u0065d\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064i\u0063\u0064\u0069g\u0069t\u0074\u0077\u006f",Value :"\u0074\u0077\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00362",Value :"\u0074w\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0067\u0072\u0061v\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0075\u0062\u0061\u0072"},{Key :"\u0064e\u006c\u0074\u0061\u0074\u0075\u0072n",Value :"\u0075\u0062\u0072\u0065\u0076\u0065"},{Key :"\u0075\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",Value :"\u0075d\u0062\u006c\u0061\u0063\u0075\u0074e"},{Key :"e\u0073\u0068\u0073\u0068\u006f\u0072\u0074\u0072\u0065\u0076",Value :"\u0075d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0041\u0061\u0063\u0075\u0074\u0065\u0072\u0069\u006e\u0067",Value :"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e"},{Key :"\u0069\u0068\u0061\u0063\u0065\u006b",Value :"\u0075\u0068\u006fr\u006e"},{Key :"\u0074\u0074\u0075r\u006e",Value :"\u0075\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u006ew\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u0075\u006c\u0061r\u0063"},{Key :"\u0064\u0062\u006c\u006c\u006f\u0077\u006c\u0069\u006e\u0065",Value :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c"},{Key :"\u0074\u0077\u006f\u006c\u006f\u0077\u006c\u0069\u006e\u0065",Value :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c"},{Key :"\u006d\u0069d\u0068\u006f\u0072i\u007a\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0075\u006e\u0069c\u006f\u0064\u0065\u0063\u0064\u006f\u0074\u0073"},{Key :"\u0063\u0075\u0070",Value :"\u0075\u006e\u0069o\u006e"},{Key :"\u0043\u0075\u0070",Value :"\u0075\u006e\u0069\u006f\u006e\u0064\u0062\u006c"},{Key :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069"},{Key :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074i\u0074\u0065\u0078\u0074",Value :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069"},{Key :"\u0075\u0070\u006cu\u0073",Value :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069"},{Key :"\u0073\u0071\u0063u\u0070",Value :"\u0075n\u0069\u006f\u006e\u0073\u0071"},{Key :"\u0075\u006e\u0069\u006f\u006e\u0073\u0071\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0075n\u0069\u006f\u006e\u0073\u0071"},{Key :"u\u006e\u0069\u006f\u006e\u0073\u0071\u0074\u0065\u0078\u0074",Value :"\u0075n\u0069\u006f\u006e\u0073\u0071"},{Key :"\u0062\u0069\u0067\u0063\u0075\u0070",Value :"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t"},{Key :"\u006ea\u0072\u0079\u0075\u006e\u0069\u006fn",Value :"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t"},{Key :"\u0075\u006e\u0069o\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t"},{Key :"\u0066\u006f\u0072\u0061\u006c\u006c",Value :"\u0075n\u0069\u0076\u0065\u0072\u0073\u0061l"},{Key :"b\u006c\u006f\u0063\u006b\u0075\u0070\u0068\u0061\u006c\u0066",Value :"\u0075p\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0067e\u006b\u0061\u0072\u0065\u0076",Value :"\u0075p\u0064\u0069\u0067\u0061\u006d\u006da"},{Key :"\u0065n\u0072\u0074\u0064\u0065\u0073",Value :"\u0075p\u006b\u006f\u0070\u0070\u0061"},{Key :"\u004ba\u0076\u0065\u0072\u0074\u0062\u0061r",Value :"\u0075\u0070\u006f\u006c\u0064\u004b\u006f\u0070\u0070\u0061"},{Key :"\u006ba\u0076\u0065\u0072\u0074\u0062\u0061r",Value :"\u0075\u0070\u006f\u006c\u0064\u006b\u006f\u0070\u0070\u0061"},{Key :"\u0065\u006e\u0067\u0065",Value :"\u0075p\u0073\u0061\u006d\u0070\u0069"},{Key :"\u0075p\u0075\u0070\u0073\u0069\u006c\u006fn",Value :"\u0075p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0061\u0063\u0075t\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0075\u0070\u0073i\u006c\u006f\u006e\u006c\u0061\u0074\u0069\u006e"},{Key :"\u0078\u0073\u006f\u006c",Value :"\u0075p\u0073\u006c\u006f\u0070\u0065"},{Key :"\u006b\u0061\u0062a\u0072",Value :"\u0075\u0070\u0073\u0074\u0069\u0067\u006d\u0061"},{Key :"\u0055\u0070s\u0069\u006c\u006fn\u0031\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",Value :"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0064\u0069\u0061\u0065r\u0065\u0073\u0069\u0073",Value :"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0043\u0068\u0065\u0076\u0065\u0072\u0074\u0062\u0061\u0072",Value :"\u0075\u0070\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061"},{Key :"\u006ee\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u0075\u0072\u0061r\u0063"},{Key :"\u0044\u0062\u0061r\u0031",Value :"\u0075\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0070e\u0072s\u0070\u0063\u006f\u0072\u0072\u0065\u0073\u0070\u006f\u006e\u0064",Value :"\u0076\u0061\u0072\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065"},{Key :"\u0063l\u0077c\u006f\u006e\u0074\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u0076\u0061r\u006f\u0069\u006et\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",Value :"\u0076a\u0072t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",Value :"\u0076\u0061r\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00369",Value :"\u0076\u0061\u0076"},{Key :"\u0076a\u0076\u0068\u0065\u0062\u0072\u0065w",Value :"\u0076\u0061\u0076"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00323",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0076a\u0076\u0064\u0061\u0067\u0065\u0073h",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"v\u0061\u0076\u0064\u0061\u0067\u0065\u0073\u0068\u0036\u0035",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0076\u0061\u0076\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00300",Value :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d"},{Key :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d\u0068e\u0062\u0072\u0065\u0077",Value :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d"},{Key :"\u0076\u0061\u0076w\u0069\u0074\u0068\u0068\u006f\u006c\u0061\u006d",Value :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d"},{Key :"\u0076\u0065\u0063",Value :"\u0076\u0065\u0063\u0074\u006f\u0072"},{Key :"e\u0071\u0075\u0069\u0061\u006e\u0067\u0075\u006c\u0061\u0072",Value :"\u0076\u0065\u0065e\u0071"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00305",Value :"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0076\u0065\u0068",Value :"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0076\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0076\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0076e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0076e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0053\u0061\u006dp\u0069",Value :"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0062\u0065\u006c\u006fwc\u006d\u0062"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006e\u0067b\u006f\u0074\u0068\u0076",Value :"v\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0074a\u0063k\u006c\u0065\u0066\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0076\u0068\u006fo\u006b"},{Key :"\u0076\u0065\u0072\u0074\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065",Value :"\u0076\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0066\u0069\u006c\u006c\u0065\u0064\u0076\u0065\u0072t\u0072\u0065\u0063\u0074",Value :"\u0076r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0074\u0061c\u006b\u0072\u0069g\u0068\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0076t\u0075\u0072\u006e\u0065\u0064"},{Key :"o\u0070\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074\u0031",Value :"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0072\u0069\u006e\u0067\u006d\u0061\u0074\u0068",Value :"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00348",Value :"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0077\u0061\u0077",Value :"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c",Value :"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0077\u0061\u0077\u0077it\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006ea\u006c",Value :"\u0077a\u0077\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0065s\u0074\u0069\u006d\u0061\u0074\u0065s",Value :"\u0077\u0065\u0064\u0067\u0065\u0071"},{Key :"\u0050s\u0063\u0072\u0069\u0070\u0074",Value :"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073"},{Key :"\u0077\u0070",Value :"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073"},{Key :"\u006f\u0070\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074",Value :"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074"},{Key :"s\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065",Value :"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0064\u0069\u0061m\u006f\u006e\u0064\u0072\u0068\u006f\u006d\u0062",Value :"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u0064\u0069a\u006d\u006f\u006e\u0064",Value :"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0062\u006c\u0061\u0063ki\u006e\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064"},{Key :"\u0064i\u0061m\u006f\u006e\u0064\u0072\u0068o\u006d\u0062n\u0065\u0073\u0074\u0065\u0064",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064"},{Key :"\u0073\u006da\u006c\u006c\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0069\u006e\u0076",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0062i\u0067t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e",Value :"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0069\u006e\u0076",Value :"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074",Value :"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u0066\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074\u0031",Value :"\u0077h\u0069\u0074\u0065\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"t\u0072\u0069\u0061\u0067\u006c\u0066\u006f\u0070\u0065\u006e",Value :"\u0077\u0068i\u0074\u0065\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074"},{Key :"t\u0072\u0069\u0061\u0067\u0072\u0074\u006f\u0070\u0065\u006e",Value :"\u0077\u0068\u0069\u0074\u0065\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074"},{Key :"\u0073m\u0061l\u006c\u0074\u0072\u0069\u0061n\u0067\u006ce\u0072\u0069\u0067\u0068\u0074",Value :"\u0077\u0068\u0069t\u0065\u0072\u0069\u0067h\u0074\u0070\u006f\u0069\u006e\u0074\u0069n\u0067\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072i\u0067\u0068\u0074\u0031",Value :"\u0077\u0068\u0069\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065"},{Key :"\u0048\u0031\u0038\u0035\u0035\u0031",Value :"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0062\u006f\u0078",Value :"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"s\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"\u0062\u0069\u0067w\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072",Value :"\u0077h\u0069\u0074\u0065\u0073\u0074\u0061r"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"v\u0061\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"\u0062\u0069\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0075\u0070",Value :"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00319",Value :"\u0077\u006f\u0077\u0061\u0065\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0077\u0072",Value :"\u0077\u0072\u0065\u0061\u0074\u0068\u0070\u0072\u006f\u0064\u0075\u0063\u0074"},{Key :"\u0064i\u0061e\u0072\u0065\u0073\u0069\u0073t\u006f\u006eo\u0073\u006e\u006f\u0073\u0070",Value :"\u0077s\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0061\u006e\u0067l\u0065\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0077t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0075\u0070\u0078\u0069",Value :"\u0078\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00358",Value :"\u0079\u0061\u006da\u006b\u006b\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00394",Value :"y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0049\u0062\u0061\u0072",Value :"y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00350",Value :"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0079\u0065\u0068",Value :"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00319",Value :"\u0079e\u0068b\u0061\u0072\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00314",Value :"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061a\u0062\u006f\u0076\u0065",Value :"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0077it\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006ea\u006c",Value :"\u0079e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079e\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0061b\u006f\u0076\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0079\u0065\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072a\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068wi\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0079e\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076e\u006de\u0064i\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061l\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u006ei\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"y\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"y\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065h\u0077\u0069\u0074h\u006e\u006f\u006f\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0079e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0059\u0065\u006e",Value :"\u0079\u0065\u006e"},{Key :"a\u0075\u0078\u0069\u006c\u0069\u0061\u0072\u0079\u006f\u006e",Value :"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0031",Value :"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0079\u0065\u0072\u0061hb\u0065\u006e\u0079\u006f\u006d\u006f\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072e\u0077",Value :"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00393",Value :"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0079\u0065\u0072\u0069",Value :"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"s\u0074\u0061\u0072\u0074\u006f\u0066\u0068\u0065\u0061\u0064",Value :"y\u0065\u0074\u0069\u0076\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0075\u0068\u0061\u0063\u0065\u006b",Value :"\u0079\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00304",Value :"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0079\u0069",Value :"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u006f\u0075\u0074h\u0077\u0065\u0073\u0074",Value :"\u0079\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0079o\u0064\u0064\u0061\u0067\u0065\u0073h",Value :"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0079\u006f\u0064\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00318",Value :"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0079\u006f\u0064\u0064\u0062\u006c",Value :"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00305",Value :"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u006f\u0075\u0062\u006c\u0065\u0079\u006f\u0064p\u0061\u0074\u0061\u0068",Value :"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u006fu\u0062\u006c\u0065\u0079\u006f\u0064\u0070\u0061t\u0061\u0068\u0068\u0065br\u0065\u0077",Value :"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0063\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"\u0079\u006f\u0074\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00314",Value :"\u0079o\u0079\u0061\u006b\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00393",Value :"\u0079\u006f\u0079\u0069\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0064z\u0068\u0061\u0063\u0065\u006b",Value :"\u0079\u0072"},{Key :"i\u006f\u0074\u0061\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0079s\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0068\u006f\u0072\u006e\u006e\u006f\u0073\u0070",Value :"\u0079t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00332",Value :"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u007a\u0061\u0068",Value :"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u007a\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u007a\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u007aa\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u007aa\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00326",Value :"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u007a\u0061\u0069\u006e",Value :"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u007aa\u0069\u006e\u0066\u0069\u006e\u0061l",Value :"\u007aa\u0069n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006f\u0070r\u0069\u0067\u0068\u0074",Value :"\u007a\u0061q\u0065\u0066\u0067a\u0064\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006f\u0070\u006c\u0065\u0066\u0074",Value :"\u007a\u0061q\u0065\u0066\u0071a\u0074\u0061\u006e\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"a\u0072\u0072\u006f\u0077\u007a\u0069\u0067\u007a\u0061\u0067",Value :"z\u0061\u0072\u0071\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"z\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u007aa\u0079i\u006e\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u006e\u006c\u0065\u0067",Value :"\u007a\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0074a\u0063k\u0064\u006f\u0077\u006e\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u007a\u0063\u0075r\u006c"},{Key :"\u006d\u0063\u0061\u0070\u0074\u0075\u0072\u006e",Value :"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u007a\u0064\u006f\u0074",Value :"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u007ae\u0072\u006f\u0064\u006f\u0074",Value :"\u007a\u0065\u0072\u006f"},{Key :"\u007ae\u0072\u006f\u0073\u006c\u0061\u0073h",Value :"\u007a\u0065\u0072\u006f"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00392",Value :"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074ze\u0072\u006f",Value :"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u007a\u0065\u0072\u006f\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u007ae\u0072\u006f\u0073\u0075\u0062",Value :"\u007a\u0065\u0072o\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u007ae\u0072\u006f",Value :"z\u0065\u0072\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00360",Value :"\u007a\u0065\u0072\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0062\u006f\u006d",Value :"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072"},{Key :"z\u0065\u0072\u006f\u0077id\u0074h\u006e\u006f\u0062\u0072\u0065a\u006b\u0073\u0070\u0061\u0063\u0065",Value :"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072"},{Key :"\u007ae\u0072\u006f\u0073\u0070\u0061\u0063e",Value :"\u007a\u0065\u0072\u006f\u0077\u0069\u0064\u0074\u0068s\u0070\u0061\u0063\u0065"},{Key :"\u0075\u0070\u007a\u0065\u0074\u0061",Value :"\u007a\u0065\u0074\u0061"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00372",Value :"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u007a\u0068\u0065",Value :"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u006e\u0065\u0067\u0061\u0063\u006b\u006e\u006f\u0077l\u0065\u0064\u0067\u0065",Value :"z\u0069\u006e\u006f\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074\u0061\u0063\u006b\u0075\u0070\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u007a\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b"}}; -func (_bgabe *simpleEncodersMap )Read (s string )(func ()SimpleEncoder ,bool ){_bgabe ._fbag .RLock ();defer _bgabe ._fbag .RUnlock ();_afb ,_gcc :=_bgabe ._bef [s ];return _afb ,_gcc ;};var (_afc =_ced (_abga ,_dgee );_aea =_ced (_egd ,_ggfc ););func NewPdfDocEncoder ()SimpleEncoder {return _gef .NewEncoder ()}; -type CharCode uint16 ;func _cea (_deba string ,_cbgc *_cfc .ByteRuneMap )SimpleEncoder {_febe :=&simpleEncoding {_dbbd :_deba ,_cec :_cbgc ,_eaf :_cfc .MakeRuneByteMap (_cbgc .Length ())};_febe ._cec .Range (func (_gee byte ,_geb rune )(_ggfg bool ){if _gca ,_cabd :=_febe ._eaf .Read (_geb ); -!_cabd ||_gee < _gca {_febe ._eaf .Write (_geb ,_gee );};return false ;});return _febe ;};type simpleDecoder struct{_gfbb *_cfc .ByteRuneMap };func NewCMapEncoder (baseName string ,codeToCID ,cidToUnicode *_ffd .CMap )CMapEncoder {return CMapEncoder {_ga :baseName ,_bge :codeToCID ,_dfe :cidToUnicode }; -};func _dcc (_ebe TextEncoder ,_cca string )[]byte {_ggff :=make ([]byte ,0,len (_cca ));for _ ,_gff :=range _cca {_gbc ,_gbe :=_ebe .RuneToCharcode (_gff );if !_gbe ||_gbc > 0xff{_aa .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u006d\u0061\u0070\u0020\u0072\u0075\u006e\u0065\u0020\u0074\u006f\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0020\u0066\u006f\u0072\u0020\u0072\u0075\u006e\u0065\u0020\u0030\u0078\u0025\u0030\u0034\u0078",_gff ); -continue ;};_ggff =append (_ggff ,byte (_gbc ));};return _ggff ;};var _ggfc =_cfc .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'✁',0x22:'✂',0x23:'✃',0x24:'✄',0x25:'☎',0x26:'✆',0x27:'✇',0x28:'✈',0x29:'✉',0x2a:'☛',0x2b:'☞',0x2c:'✌',0x2d:'✍',0x2e:'✎',0x2f:'✏',0x30:'✐',0x31:'✑',0x32:'✒',0x33:'✓',0x34:'✔',0x35:'✕',0x36:'✖',0x37:'✗',0x38:'✘',0x39:'✙',0x3a:'✚',0x3b:'✛',0x3c:'✜',0x3d:'✝',0x3e:'✞',0x3f:'✟',0x40:'✠',0x41:'✡',0x42:'✢',0x43:'✣',0x44:'✤',0x45:'✥',0x46:'✦',0x47:'✧',0x48:'★',0x49:'✩',0x4a:'✪',0x4b:'✫',0x4c:'✬',0x4d:'✭',0x4e:'✮',0x4f:'✯',0x50:'✰',0x51:'✱',0x52:'✲',0x53:'✳',0x54:'✴',0x55:'✵',0x56:'✶',0x57:'✷',0x58:'✸',0x59:'✹',0x5a:'✺',0x5b:'✻',0x5c:'✼',0x5d:'✽',0x5e:'✾',0x5f:'✿',0x60:'❀',0x61:'❁',0x62:'❂',0x63:'❃',0x64:'❄',0x65:'❅',0x66:'❆',0x67:'❇',0x68:'❈',0x69:'❉',0x6a:'❊',0x6b:'❋',0x6c:'●',0x6d:'❍',0x6e:'■',0x6f:'❏',0x70:'❐',0x71:'❑',0x72:'❒',0x73:'▲',0x74:'▼',0x75:'◆',0x76:'❖',0x77:'◗',0x78:'❘',0x79:'❙',0x7a:'❚',0x7b:'❛',0x7c:'❜',0x7d:'❝',0x7e:'❞',0x80:'\uf8d7',0x81:'\uf8d8',0x82:'\uf8d9',0x83:'\uf8da',0x84:'\uf8db',0x85:'\uf8dc',0x86:'\uf8dd',0x87:'\uf8de',0x88:'\uf8df',0x89:'\uf8e0',0x8a:'\uf8e1',0x8b:'\uf8e2',0x8c:'\uf8e3',0x8d:'\uf8e4',0xa1:'❡',0xa2:'❢',0xa3:'❣',0xa4:'❤',0xa5:'❥',0xa6:'❦',0xa7:'❧',0xa8:'♣',0xa9:'♦',0xaa:'♥',0xab:'♠',0xac:'①',0xad:'②',0xae:'③',0xaf:'④',0xb0:'⑤',0xb1:'⑥',0xb2:'⑦',0xb3:'⑧',0xb4:'⑨',0xb5:'⑩',0xb6:'❶',0xb7:'❷',0xb8:'❸',0xb9:'❹',0xba:'❺',0xbb:'❻',0xbc:'❼',0xbd:'❽',0xbe:'❾',0xbf:'❿',0xc0:'➀',0xc1:'➁',0xc2:'➂',0xc3:'➃',0xc4:'➄',0xc5:'➅',0xc6:'➆',0xc7:'➇',0xc8:'➈',0xc9:'➉',0xca:'➊',0xcb:'➋',0xcc:'➌',0xcd:'➍',0xce:'➎',0xcf:'➏',0xd0:'➐',0xd1:'➑',0xd2:'➒',0xd3:'➓',0xd4:'➔',0xd5:'→',0xd6:'↔',0xd7:'↕',0xd8:'➘',0xd9:'➙',0xda:'➚',0xdb:'➛',0xdc:'➜',0xdd:'➝',0xde:'➞',0xdf:'➟',0xe0:'➠',0xe1:'➡',0xe2:'➢',0xe3:'➣',0xe4:'➤',0xe5:'➥',0xe6:'➦',0xe7:'➧',0xe8:'➨',0xe9:'➩',0xea:'➪',0xeb:'➫',0xec:'➬',0xed:'➭',0xee:'➮',0xef:'➯',0xf1:'➱',0xf2:'➲',0xf3:'➳',0xf4:'➴',0xf5:'➵',0xf6:'➶',0xf7:'➷',0xf8:'➸',0xf9:'➹',0xfa:'➺',0xfb:'➻',0xfc:'➼',0xfd:'➽',0xfe:'➾'}); -func NewMacRomanEncoder ()SimpleEncoder {return _ega .NewEncoder ()};var _cd =_cfc .NewRuneStringMap (map[rune ]string {'Ꜳ':"\u0041\u0041",'ꜳ':"\u0061\u0061",'Ꜵ':"\u0061\u0061",'ꜵ':"\u0061\u006f",'Ꜷ':"\u0041\u0055",'ꜷ':"\u0061\u0075",'Ꜽ':"\u0041\u0059",'ꜽ':"\u0061\u0079",'\U0001f670':"\u0065\u0074",'ff':"\u0066\u0066",'ffi':"\u0066\u0066\u0069",'ffl':"\u0066\u0066\u006c",'fi':"\u0066\u0069",'fl':"\u0066\u006c",'Œ':"\u004f\u0045",'œ':"\u006f\u0065",'Ꝏ':"\u004f\u004f",'ꝏ':"\u006f\u006f",'st':"\u0073\u0074",'ſt':"\u017f\u0074",'Ꜩ':"\u0054\u005a",'ꜩ':"\u0074\u007a",'ᵫ':"\u0075\u0065",'Ꝡ':"\u0056\u0059",'ꝡ':"\u0076\u0079",0xe000:"\u0066\u0074",0xe001:"\u0066\u006a",0xe002:"\u0066\u0062",0xe003:"\u0066\u0068",0xe004:"\u0066\u006b",0xe005:"\u0074\u0074",0xe006:"\u0074\u0066",0xe007:"\u0066\u0066\u006a",0xe008:"\u0066\u0066\u0062",0xe009:"\u0066\u0066\u0068",0xe00a:"\u0066\u0066\u006b",0xe00b:"\u0054\u005f\u0068"}); -const (_abga ="\u0053\u0079\u006d\u0062\u006f\u006c\u0045\u006e\u0063o\u0064\u0069\u006e\u0067";_egd ="Z\u0061p\u0066\u0044\u0069\u006e\u0067\u0062\u0061\u0074s\u0045\u006e\u0063\u006fdi\u006e\u0067";);func (_acc UTF16Encoder )RuneToCharcode (r rune )(CharCode ,bool ){return CharCode (r ),true }; -var (_ SimpleEncoder =(*simpleEncoding )(nil );_ _b .Encoding =(*simpleEncoding )(nil ););type UTF16Encoder struct{_cce string };func NewCustomSimpleTextEncoder (encoding ,differences map[CharCode ]GlyphName )(SimpleEncoder ,error ){if len (encoding )==0{return nil ,_df .New ("e\u006d\u0070\u0074\u0079 c\u0075s\u0074\u006f\u006d\u0020\u0065n\u0063\u006f\u0064\u0069\u006e\u0067"); -};const _bdeg ="\u0063\u0075\u0073\u0074\u006f\u006d";_cdb :=_cfc .MakeByteRuneMap (len (encoding ));for _gfe ,_aad :=range encoding {_gfd ,_gcb :=GlyphToRune (_aad );if !_gcb {_aa .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077n\u0020\u0067\u006c\u0079\u0070\u0068\u002e\u0020\u0025\u0071",_aad ); -continue ;};_cdb .Write (byte (_gfe ),_gfd );};_bdcg :=_cea (_bdeg ,_cdb );if len (differences )!=0{_bdcg =ApplyDifferences (_bdcg ,differences );};return _bdcg ,nil ;};func (_dff UTF16Encoder )ToPdfObject ()_fg .PdfObject {if _dff ._cce !=""{return _fg .MakeName (_dff ._cce ); -};return _fg .MakeNull ();};func (_ccga CMapEncoder )CharcodeToRune (code CharCode )(rune ,bool ){_ea ,_bfe :=_ccga .charcodeToString (code );if len (_ea )< 1{return MissingCodeRune ,false ;};return ([]rune (_ea ))[0],_bfe ;};func (_fe *charCodeGlyphNameMap )Read (key CharCode )(GlyphName ,bool ){_fe ._fdb .RLock (); -defer _fe ._fdb .RUnlock ();_db ,_fc :=_fe ._aeg [key ];return _db ,_fc ;};func (_gdb *differencesEncoding )Decode (raw []byte )string {_fca :=make ([]rune ,0,len (raw ));for _ ,_fac :=range raw {_def ,_ :=_gdb .CharcodeToRune (CharCode (_fac ));_fca =append (_fca ,_def ); -};return string (_fca );};func (_bcgb *IdentityEncoder )CharcodeToRune (code CharCode )(rune ,bool ){_bcgb ._fcc .Write (rune (code ));return rune (code ),true ;};var _eceb =_cfc .NewStringsMap (_ggc [:]);var (_bdd =&simpleEncodersMap {_bef :map[string ]func ()SimpleEncoder {}}; -);func (_dab *charCodeGlyphNameMap )Length ()int {_dab ._fdb .RLock ();defer _dab ._fdb .RUnlock ();return len (_dab ._aeg );};var _aaeg =_cfc .NewRuneStringMap (map[rune ]string {0xfffd:"\u002en\u006f\u0074\u0064\u0065\u0066",0x250a:"\u0032\u0035\u0030\u0061",0x250b:"\u0032\u0035\u0030\u0062",0x250d:"\u0032\u0035\u0030\u0064",0x250e:"\u0032\u0035\u0030\u0065",0x250f:"\u0032\u0035\u0030\u0066",0x251a:"\u0032\u0035\u0031\u0061",0x251b:"\u0032\u0035\u0031\u0062",0x251d:"\u0032\u0035\u0031\u0064",0x251e:"\u0032\u0035\u0031\u0065",0x251f:"\u0032\u0035\u0031\u0066",0x252a:"\u0032\u0035\u0032\u0061",0x252b:"\u0032\u0035\u0032\u0062",0x252d:"\u0032\u0035\u0032\u0064",0x252e:"\u0032\u0035\u0032\u0065",0x252f:"\u0032\u0035\u0032\u0066",0x253a:"\u0032\u0035\u0033\u0061",0x253b:"\u0032\u0035\u0033\u0062",0x253d:"\u0032\u0035\u0033\u0064",0x253e:"\u0032\u0035\u0033\u0065",0x253f:"\u0032\u0035\u0033\u0066",0x254a:"\u0032\u0035\u0034\u0061",0x254b:"\u0032\u0035\u0034\u0062",0x254c:"\u0032\u0035\u0034\u0063",0x254d:"\u0032\u0035\u0034\u0064",0x254e:"\u0032\u0035\u0034\u0065",0x254f:"\u0032\u0035\u0034\u0066",0x256d:"\u0032\u0035\u0036\u0064",0x256e:"\u0032\u0035\u0036\u0065",0x256f:"\u0032\u0035\u0036\u0066",0x257a:"\u0032\u0035\u0037\u0061",0x257b:"\u0032\u0035\u0037\u0062",0x257c:"\u0032\u0035\u0037\u0063",0x257d:"\u0032\u0035\u0037\u0064",0x257e:"\u0032\u0035\u0037\u0065",0x257f:"\u0032\u0035\u0037\u0066",0x0041:"\u0041",0x00c6:"\u0041\u0045",0x01fc:"\u0041E\u0061\u0063\u0075\u0074\u0065",0x01e2:"\u0041\u0045\u006d\u0061\u0063\u0072\u006f\u006e",0xf7e6:"\u0041E\u0073\u006d\u0061\u006c\u006c",0x2370:"\u0041\u0050\u004c\u0062\u006f\u0078\u0071\u0075\u0065s\u0074\u0069\u006f\u006e",0x2353:"\u0041\u0050\u004c\u0062\u006f\u0078\u0075\u0070\u0063\u0061\u0072\u0065\u0074",0x2340:"\u0041P\u004cn\u006f\u0074\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068",0x233f:"A\u0050\u004c\u006e\u006f\u0074\u0073\u006c\u0061\u0073\u0068",0x00c1:"\u0041\u0061\u0063\u0075\u0074\u0065",0xf7e1:"A\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x0102:"\u0041\u0062\u0072\u0065\u0076\u0065",0x1eae:"A\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065",0x04d0:"\u0041\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1eb6:"\u0041\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077",0x1eb0:"A\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065",0x1eb2:"\u0041b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x1eb4:"A\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065",0x01cd:"\u0041\u0063\u0061\u0072\u006f\u006e",0x24b6:"\u0041c\u0069\u0072\u0063\u006c\u0065",0x00c2:"A\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ea4:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1eac:"\u0041\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ea6:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ea8:"A\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0xf7e2:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x1eaa:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0xf6c9:"\u0041\u0063\u0075t\u0065",0xf7b4:"\u0041\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x0200:"\u0041d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00c4:"\u0041d\u0069\u0065\u0072\u0065\u0073\u0069s",0x04d2:"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01de:"\u0041d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0xf7e4:"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1ea0:"\u0041d\u006f\u0074\u0062\u0065\u006c\u006fw",0x01e0:"\u0041\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e",0x00c0:"\u0041\u0067\u0072\u0061\u0076\u0065",0xf7e0:"A\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x1ea2:"\u0041\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x04d4:"A\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0202:"\u0041\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0391:"\u0041\u006c\u0070h\u0061",0x0386:"\u0041\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073",0x0100:"\u0041m\u0061\u0063\u0072\u006f\u006e",0xff21:"\u0041\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0104:"\u0041o\u0067\u006f\u006e\u0065\u006b",0x00c5:"\u0041\u0072\u0069n\u0067",0x01fa:"\u0041\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065",0x1e00:"\u0041\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077",0xf7e5:"\u0041\u0072\u0069\u006e\u0067\u0073\u006d\u0061\u006c\u006c",0xf761:"\u0041\u0073\u006d\u0061\u006c\u006c",0x00c3:"\u0041\u0074\u0069\u006c\u0064\u0065",0xf7e3:"A\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x0531:"A\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0042:"\u0042",0x2ae7:"\u0042\u0061\u0072\u0076",0x1d538:"\u0042\u0062\u0062\u0041",0x1d539:"\u0042\u0062\u0062\u0042",0x2102:"\u0042\u0062\u0062\u0043",0x1d53b:"\u0042\u0062\u0062\u0044",0x1d53c:"\u0042\u0062\u0062\u0045",0x1d53d:"\u0042\u0062\u0062\u0046",0x1d53e:"\u0042\u0062\u0062\u0047",0x213e:"\u0042\u0062\u0062\u0047\u0061\u006d\u006d\u0061",0x210d:"\u0042\u0062\u0062\u0048",0x1d540:"\u0042\u0062\u0062\u0049",0x1d541:"\u0042\u0062\u0062\u004a",0x1d542:"\u0042\u0062\u0062\u004b",0x1d543:"\u0042\u0062\u0062\u004c",0x1d544:"\u0042\u0062\u0062\u004d",0x2115:"\u0042\u0062\u0062\u004e",0x1d546:"\u0042\u0062\u0062\u004f",0x2119:"\u0042\u0062\u0062\u0050",0x213f:"\u0042\u0062\u0062P\u0069",0x211a:"\u0042\u0062\u0062\u0051",0x211d:"\u0042\u0062\u0062\u0052",0x1d54a:"\u0042\u0062\u0062\u0053",0x1d54b:"\u0042\u0062\u0062\u0054",0x1d54c:"\u0042\u0062\u0062\u0055",0x1d54d:"\u0042\u0062\u0062\u0056",0x1d54e:"\u0042\u0062\u0062\u0057",0x1d54f:"\u0042\u0062\u0062\u0058",0x1d550:"\u0042\u0062\u0062\u0059",0x2124:"\u0042\u0062\u0062\u005a",0x1d552:"\u0042\u0062\u0062\u0061",0x1d553:"\u0042\u0062\u0062\u0062",0x1d554:"\u0042\u0062\u0062\u0063",0x1d555:"\u0042\u0062\u0062\u0064",0x1d556:"\u0042\u0062\u0062\u0065",0x1d7e0:"\u0042\u0062\u0062\u0065\u0069\u0067\u0068\u0074",0x1d557:"\u0042\u0062\u0062\u0066",0x1d7dd:"\u0042b\u0062\u0066\u0069\u0076\u0065",0x1d7dc:"\u0042b\u0062\u0066\u006f\u0075\u0072",0x1d558:"\u0042\u0062\u0062\u0067",0x213d:"\u0042\u0062\u0062\u0067\u0061\u006d\u006d\u0061",0x1d559:"\u0042\u0062\u0062\u0068",0x1d55a:"\u0042\u0062\u0062\u0069",0x1d55b:"\u0042\u0062\u0062\u006a",0x1d55c:"\u0042\u0062\u0062\u006b",0x1d55d:"\u0042\u0062\u0062\u006c",0x1d55e:"\u0042\u0062\u0062\u006d",0x1d55f:"\u0042\u0062\u0062\u006e",0x1d7e1:"\u0042b\u0062\u006e\u0069\u006e\u0065",0x1d560:"\u0042\u0062\u0062\u006f",0x1d7d9:"\u0042\u0062\u0062\u006f\u006e\u0065",0x1d561:"\u0042\u0062\u0062\u0070",0x213c:"\u0042\u0062\u0062p\u0069",0x1d562:"\u0042\u0062\u0062\u0071",0x1d563:"\u0042\u0062\u0062\u0072",0x1d564:"\u0042\u0062\u0062\u0073",0x1d7df:"\u0042\u0062\u0062\u0073\u0065\u0076\u0065\u006e",0x1d7de:"\u0042\u0062\u0062\u0073\u0069\u0078",0x2140:"\u0042\u0062\u0062\u0073\u0075\u006d",0x1d565:"\u0042\u0062\u0062\u0074",0x1d7db:"\u0042\u0062\u0062\u0074\u0068\u0072\u0065\u0065",0x1d7da:"\u0042\u0062\u0062\u0074\u0077\u006f",0x1d566:"\u0042\u0062\u0062\u0075",0x1d567:"\u0042\u0062\u0062\u0076",0x1d568:"\u0042\u0062\u0062\u0077",0x1d569:"\u0042\u0062\u0062\u0078",0x1d56a:"\u0042\u0062\u0062\u0079",0x1d56b:"\u0042\u0062\u0062\u007a",0x1d7d8:"\u0042b\u0062\u007a\u0065\u0072\u006f",0x24b7:"\u0042c\u0069\u0072\u0063\u006c\u0065",0x1e02:"\u0042\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e04:"\u0042d\u006f\u0074\u0062\u0065\u006c\u006fw",0x0532:"B\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0392:"\u0042\u0065\u0074\u0061",0x0181:"\u0042\u0068\u006fo\u006b",0x1e06:"\u0042\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff22:"\u0042\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf6f4:"\u0042\u0072\u0065\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0xf762:"\u0042\u0073\u006d\u0061\u006c\u006c",0x0229:"\u0042s\u006d\u0061\u006c\u006c\u0063\u0061p",0x0182:"\u0042t\u006f\u0070\u0062\u0061\u0072",0x0043:"\u0043",0x053e:"\u0043\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0106:"\u0043\u0061\u0063\u0075\u0074\u0065",0xf6ca:"\u0043\u0061\u0072o\u006e",0xf6f5:"\u0043\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x010c:"\u0043\u0063\u0061\u0072\u006f\u006e",0x00c7:"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x1e08:"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065",0xf7e7:"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c",0x24b8:"\u0043c\u0069\u0072\u0063\u006c\u0065",0x0108:"C\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x010a:"\u0043\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0xf7b8:"\u0043\u0065\u0064i\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c",0x0549:"C\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04bc:"C\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x0427:"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04be:"\u0043\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04b6:"C\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04f4:"\u0043\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0543:"\u0043\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04cb:"C\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x04b8:"\u0043h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x03a7:"\u0043\u0068\u0069",0x0187:"\u0043\u0068\u006fo\u006b",0xf6f6:"\u0043i\u0072c\u0075\u006d\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0xff23:"\u0043\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0551:"\u0043\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2a74:"\u0043o\u006c\u006f\u006e\u0065\u0071",0xf763:"\u0043\u0073\u006d\u0061\u006c\u006c",0x0044:"\u0044",0x27f1:"\u0044\u0044\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x01f1:"\u0044\u005a",0x01c4:"\u0044Z\u0063\u0061\u0072\u006f\u006e",0x0534:"\u0044\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0189:"\u0044\u0061\u0066\u0072\u0069\u0063\u0061\u006e",0x2ae5:"\u0044\u0061\u0073h\u0056",0x27da:"\u0044a\u0073\u0068\u0056\u0044\u0061\u0073h",0x2ae4:"\u0044\u0061\u0073h\u0076",0x010e:"\u0044\u0063\u0061\u0072\u006f\u006e",0xf810:"\u0044c\u0061\u0072\u006f\u006e\u0031",0x1e10:"\u0044\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24b9:"\u0044c\u0069\u0072\u0063\u006c\u0065",0x1e12:"\u0044\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0110:"\u0044\u0063\u0072\u006f\u0061\u0074",0x1e0a:"\u0044\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e0c:"\u0044d\u006f\u0074\u0062\u0065\u006c\u006fw",0x290b:"\u0044\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x0414:"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03ee:"\u0044e\u0069\u0063\u006f\u0070\u0074\u0069c",0x2206:"\u0044\u0065\u006ct\u0061",0x0394:"\u0044\u0065\u006c\u0074\u0061\u0067\u0072\u0065\u0065\u006b",0x018a:"\u0044\u0068\u006fo\u006b",0xf6cb:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0xf6cc:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0041\u0063\u0075\u0074\u0065",0xf6cd:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0047\u0072\u0061\u0076\u0065",0xf7a8:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0073\u006d\u0061\u006c\u006c",0x1d7cb:"\u0044i\u0067\u0061\u006d\u006d\u0061",0x03dc:"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b",0x1e0e:"\u0044\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff24:"\u0044\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf6f7:"\u0044\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074s\u006d\u0061\u006c\u006c",0xf764:"\u0044\u0073\u006d\u0061\u006c\u006c",0x018b:"\u0044t\u006f\u0070\u0062\u0061\u0072",0x01f2:"\u0044\u007a",0x01c5:"\u0044z\u0063\u0061\u0072\u006f\u006e",0x04e0:"D\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x040f:"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0045:"\u0045",0x00c9:"\u0045\u0061\u0063\u0075\u0074\u0065",0xf7e9:"E\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x0114:"\u0045\u0062\u0072\u0065\u0076\u0065",0x011a:"\u0045\u0063\u0061\u0072\u006f\u006e",0x1e1c:"\u0045\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065",0x0535:"E\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24ba:"\u0045c\u0069\u0072\u0063\u006c\u0065",0x00ca:"E\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ebe:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1e18:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1ec6:"\u0045\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ec0:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ec2:"E\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0xf7ea:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x1ec4:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x0404:"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c",0x0204:"\u0045d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00cb:"\u0045d\u0069\u0065\u0072\u0065\u0073\u0069s",0xf7eb:"\u0045\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x0116:"\u0045\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1eb8:"\u0045d\u006f\u0074\u0062\u0065\u006c\u006fw",0x00c8:"\u0045\u0067\u0072\u0061\u0076\u0065",0xf7e8:"E\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x0537:"\u0045\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1eba:"\u0045\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x2167:"\u0045\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e",0x0206:"\u0045\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0464:"\u0045\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x041b:"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x216a:"E\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x0112:"\u0045m\u0061\u0063\u0072\u006f\u006e",0x1e16:"\u0045\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e14:"\u0045\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x041c:"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xff25:"\u0045\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x04a2:"\u0045\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x014a:"\u0045\u006e\u0067",0x04a4:"\u0045\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04c7:"\u0045\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0118:"\u0045o\u0067\u006f\u006e\u0065\u006b",0x0190:"\u0045\u006f\u0070e\u006e",0x0395:"\u0045p\u0073\u0069\u006c\u006f\u006e",0x0388:"\u0045\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x2263:"\u0045\u0071\u0075i\u0076",0x018e:"\u0045r\u0065\u0076\u0065\u0072\u0073\u0065d",0x042d:"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x04aa:"\u0045\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x01a9:"\u0045\u0073\u0068",0xf765:"\u0045\u0073\u006d\u0061\u006c\u006c",0x0397:"\u0045\u0074\u0061",0x0538:"\u0045\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0389:"\u0045\u0074\u0061\u0074\u006f\u006e\u006f\u0073",0x00d0:"\u0045\u0074\u0068",0xf7f0:"\u0045\u0074\u0068\u0073\u006d\u0061\u006c\u006c",0x1ebc:"\u0045\u0074\u0069\u006c\u0064\u0065",0x1e1a:"E\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x2107:"\u0045\u0075\u006c\u0065\u0072\u0063\u006f\u006e\u0073\u0074",0x20ac:"\u0045\u0075\u0072\u006f",0x01b7:"\u0045\u007a\u0068",0x01ee:"\u0045\u007a\u0068\u0063\u0061\u0072\u006f\u006e",0x01b8:"E\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x0046:"\u0046",0x24bb:"\u0046c\u0069\u0072\u0063\u006c\u0065",0x1e1e:"\u0046\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0556:"F\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03e4:"\u0046e\u0069\u0063\u006f\u0070\u0074\u0069c",0x0191:"\u0046\u0068\u006fo\u006b",0x2132:"\u0046\u0069\u006e\u0076",0x2164:"\u0046i\u0076\u0065\u0072\u006f\u006d\u0061n",0xff26:"\u0046\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2163:"\u0046o\u0075\u0072\u0072\u006f\u006d\u0061n",0xf766:"\u0046\u0073\u006d\u0061\u006c\u006c",0x0047:"\u0047",0x3387:"\u0047\u0042\u0073\u0071\u0075\u0061\u0072\u0065",0x01f4:"\u0047\u0061\u0063\u0075\u0074\u0065",0x0393:"\u0047\u0061\u006dm\u0061",0x0194:"\u0047\u0061\u006dm\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e",0x03ea:"\u0047\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x011e:"\u0047\u0062\u0072\u0065\u0076\u0065",0x01e6:"\u0047\u0063\u0061\u0072\u006f\u006e",0x24bc:"\u0047c\u0069\u0072\u0063\u006c\u0065",0x011c:"G\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0122:"\u0047\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x0120:"\u0047\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0413:"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0542:"\u0047\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0494:"G\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0492:"\u0047\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0490:"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0193:"\u0047\u0068\u006fo\u006b",0x0533:"G\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1e20:"\u0047m\u0061\u0063\u0072\u006f\u006e",0x2141:"\u0047\u006d\u0069\u0072",0xff27:"\u0047\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf6ce:"\u0047\u0072\u0061v\u0065",0xf760:"\u0047\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0xf767:"\u0047\u0073\u006d\u0061\u006c\u006c",0x022b:"\u0047\u0073\u006d\u0061\u006c\u006c\u0063\u0061\u0070\u0068\u006f\u006f\u006b",0x029b:"\u0047\u0073\u006d\u0061\u006c\u006c\u0068\u006f\u006f\u006b",0x01e4:"\u0047s\u0074\u0072\u006f\u006b\u0065",0x2aa2:"\u0047\u0074",0x0048:"\u0048",0x25a1:"\u0048\u0032\u0032\u0030\u0037\u0033",0x33cb:"\u0048\u0050\u0073\u0071\u0075\u0061\u0072\u0065",0x04a8:"\u0048\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04b2:"\u0048\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0126:"\u0048\u0062\u0061\u0072",0x1e2a:"H\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077",0x1e28:"\u0048\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24bd:"\u0048c\u0069\u0072\u0063\u006c\u0065",0x0124:"H\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e26:"\u0048d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e22:"\u0048\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e24:"\u0048d\u006f\u0074\u0062\u0065\u006c\u006fw",0x26a5:"\u0048\u0065\u0072\u006d\u0061\u0070\u0068\u0072\u006f\u0064\u0069\u0074\u0065",0xff28:"\u0048\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0540:"\u0048\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03e8:"\u0048\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0xf768:"\u0048\u0073\u006d\u0061\u006c\u006c",0x022c:"\u0048s\u006d\u0061\u006c\u006c\u0063\u0061p",0xf6cf:"\u0048\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0xf6f8:"\u0048\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074s\u006d\u0061\u006c\u006c",0x3390:"\u0048\u007a\u0073\u0071\u0075\u0061\u0072\u0065",0x0049:"\u0049",0x0132:"\u0049\u004a",0x00cd:"\u0049\u0061\u0063\u0075\u0074\u0065",0xf7ed:"I\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x012c:"\u0049\u0062\u0072\u0065\u0076\u0065",0x01cf:"\u0049\u0063\u0061\u0072\u006f\u006e",0x24be:"\u0049c\u0069\u0072\u0063\u006c\u0065",0x00ce:"I\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0xf7ee:"\u0049\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x03fc:"\u0049c\u0079\u0072\u0069\u006c\u0031",0x0208:"\u0049d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00cf:"\u0049d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e2e:"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x04e4:"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0xf7ef:"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x0130:"\u0049\u0064\u006f\u0074",0x1eca:"\u0049d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04d6:"\u0049e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0415:"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03f8:"\u0049\u0065\u0068\u006f\u006f\u006b",0x03fa:"\u0049\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b",0x2111:"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072",0x00cc:"\u0049\u0067\u0072\u0061\u0076\u0065",0xf7ec:"I\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x1ec8:"\u0049\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0418:"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x020a:"\u0049\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x012a:"\u0049m\u0061\u0063\u0072\u006f\u006e",0x04e2:"\u0049m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xff29:"\u0049\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x053b:"I\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0401:"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x012e:"\u0049o\u0067\u006f\u006e\u0065\u006b",0x0399:"\u0049\u006f\u0074\u0061",0x0196:"I\u006f\u0074\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e",0x02f3:"\u0049\u006f\u0074\u0061\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",0x03aa:"\u0049\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x038a:"\u0049o\u0074\u0061\u0074\u006f\u006e\u006fs",0xf769:"\u0049\u0073\u006d\u0061\u006c\u006c",0x0197:"\u0049s\u0074\u0072\u006f\u006b\u0065",0x0128:"\u0049\u0074\u0069\u006c\u0064\u0065",0x1e2c:"I\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x0476:"\u0049\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x004a:"\u004a",0x0541:"\u004a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24bf:"\u004ac\u0069\u0072\u0063\u006c\u0065",0x0134:"J\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x054b:"\u004a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff2a:"\u004a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a1d:"\u004a\u006f\u0069\u006e",0xf76a:"\u004a\u0073\u006d\u0061\u006c\u006c",0x004b:"\u004b",0x3385:"\u004b\u0042\u0073\u0071\u0075\u0061\u0072\u0065",0x33cd:"\u004b\u004b\u0073\u0071\u0075\u0061\u0072\u0065",0x04a0:"\u004b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1e30:"\u004b\u0061\u0063\u0075\u0074\u0065",0x049a:"\u004b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03ff:"\u004b\u0061\u0068\u006f\u006f\u006b",0x04c3:"\u004b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x039a:"\u004b\u0061\u0070p\u0061",0x049e:"\u004b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x049c:"\u004ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x01e8:"\u004b\u0063\u0061\u0072\u006f\u006e",0x0136:"\u004b\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24c0:"\u004bc\u0069\u0072\u0063\u006c\u0065",0x1e32:"\u004bd\u006f\u0074\u0062\u0065\u006c\u006fw",0x0554:"K\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x053f:"K\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0425:"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03e6:"\u004b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x0198:"\u004b\u0068\u006fo\u006b",0x040c:"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e34:"\u004b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff2b:"\u004b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0480:"\u004b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03de:"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b",0x046e:"K\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf76b:"\u004b\u0073\u006d\u0061\u006c\u006c",0x004c:"\u004c",0x01c7:"\u004c\u004a",0xf6bf:"\u004c\u004c",0x2b45:"\u004c\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x0139:"\u004c\u0061\u0063\u0075\u0074\u0065",0x039b:"\u004c\u0061\u006d\u0062\u0064\u0061",0x27ec:"\u004cb\u0072\u0062\u0072\u0061\u006b",0x013d:"\u004c\u0063\u0061\u0072\u006f\u006e",0xf812:"\u004cc\u0061\u0072\u006f\u006e\u0031",0x013b:"\u004c\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81a:"\u004cc\u0065\u0064\u0069\u006c\u006c\u00611",0x24c1:"\u004cc\u0069\u0072\u0063\u006c\u0065",0x1e3c:"\u004c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x013f:"\u004c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e36:"\u004cd\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e38:"\u004cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x21b2:"\u004c\u0064\u0073\u0068",0x053c:"\u004c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01c8:"\u004c\u006a",0x0409:"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e3a:"\u004c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff2c:"\u004c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x27f8:"\u004c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x27fa:"\u004co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x27fd:"\u004c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x27fe:"\u004c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f",0x27f9:"\u004c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",0x2995:"\u004cp\u0061\u0072\u0065\u006e\u0067\u0074r",0x0141:"\u004c\u0073\u006c\u0061\u0073\u0068",0xf6f9:"L\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c",0xf76c:"\u004c\u0073\u006d\u0061\u006c\u006c",0x022f:"\u004cs\u006d\u0061\u006c\u006c\u0063\u0061p",0x2aa1:"\u004c\u0074",0x29da:"\u004c\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x004d:"\u004d",0x3386:"\u004d\u0042\u0073\u0071\u0075\u0061\u0072\u0065",0xf6d0:"\u004d\u0061\u0063\u0072\u006f\u006e",0xf7af:"M\u0061\u0063\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x1e3e:"\u004d\u0061\u0063\u0075\u0074\u0065",0x2906:"\u004d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x2907:"\u004d\u0061\u0070\u0073\u0074\u006f",0x24c2:"\u004dc\u0069\u0072\u0063\u006c\u0065",0x1e40:"\u004d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e42:"\u004dd\u006f\u0074\u0062\u0065\u006c\u006fw",0x0544:"M\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff2d:"\u004d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf76d:"\u004d\u0073\u006d\u0061\u006c\u006c",0x019c:"\u004dt\u0075\u0072\u006e\u0065\u0064",0x039c:"\u004d\u0075",0x004e:"\u004e",0x01ca:"\u004e\u004a",0x0143:"\u004e\u0061\u0063\u0075\u0074\u0065",0x0147:"\u004e\u0063\u0061\u0072\u006f\u006e",0xf81c:"\u004ec\u0065\u0064\u0069\u006c\u006c\u00611",0x24c3:"\u004ec\u0069\u0072\u0063\u006c\u0065",0x1e4a:"\u004e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0145:"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e44:"\u004e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e46:"\u004ed\u006f\u0074\u0062\u0065\u006c\u006fw",0x21d7:"\u004ee\u0061\u0072\u0072\u006f\u0077",0x019d:"\u004eh\u006f\u006f\u006b\u006c\u0065\u0066t",0x2168:"\u004ei\u006e\u0065\u0072\u006f\u006d\u0061n",0x01cb:"\u004e\u006a",0x1e48:"\u004e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff2e:"\u004e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2aec:"\u004e\u006f\u0074",0x0546:"N\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xf76e:"\u004e\u0073\u006d\u0061\u006c\u006c",0x00d1:"\u004e\u0074\u0069\u006c\u0064\u0065",0xf7f1:"N\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x039d:"\u004e\u0075",0x21d6:"\u004ew\u0061\u0072\u0072\u006f\u0077",0x004f:"\u004f",0x0152:"\u004f\u0045",0xf6fa:"\u004fE\u0073\u006d\u0061\u006c\u006c",0x00d3:"\u004f\u0061\u0063\u0075\u0074\u0065",0xf7f3:"O\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x04e8:"\u004fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04ea:"\u004f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x014e:"\u004f\u0062\u0072\u0065\u0076\u0065",0x01d1:"\u004f\u0063\u0061\u0072\u006f\u006e",0x019f:"\u004f\u0063\u0065\u006e\u0074\u0065\u0072\u0065\u0064t\u0069\u006c\u0064\u0065",0x24c4:"\u004fc\u0069\u0072\u0063\u006c\u0065",0x00d4:"O\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ed0:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1ed8:"\u004f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ed2:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ed4:"O\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0xf7f4:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x1ed6:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x041e:"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c",0x0150:"\u004fd\u0062\u006c\u0061\u0063\u0075\u0074e",0x020c:"\u004fd\u0062\u006c\u0067\u0072\u0061\u0076e",0x00d6:"\u004fd\u0069\u0065\u0072\u0065\u0073\u0069s",0x04e6:"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0xf7f6:"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1ecc:"\u004fd\u006f\u0074\u0062\u0065\u006c\u006fw",0xf6fb:"O\u0067\u006f\u006e\u0065\u006b\u0073\u006d\u0061\u006c\u006c",0x00d2:"\u004f\u0067\u0072\u0061\u0076\u0065",0xf7f2:"O\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x0555:"\u004f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1ece:"\u004f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01a0:"\u004f\u0068\u006fr\u006e",0x1eda:"\u004f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ee2:"\u004f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1edc:"\u004f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1ede:"\u004f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1ee0:"\u004f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x01a2:"\u004f\u0069",0x020e:"\u004f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x014c:"\u004fm\u0061\u0063\u0072\u006f\u006e",0x1e52:"\u004f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e50:"\u004f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x2126:"\u004f\u006d\u0065g\u0061",0x0460:"\u004f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03a9:"\u004f\u006d\u0065\u0067\u0061\u0067\u0072\u0065\u0065\u006b",0x2127:"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076",0x047a:"\u004fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x047c:"\u004fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x038f:"\u004f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073",0x039f:"\u004fm\u0069\u0063\u0072\u006f\u006e",0x038c:"\u004f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0xff2f:"\u004f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2160:"\u004f\u006e\u0065\u0072\u006f\u006d\u0061\u006e",0x01ea:"\u004fo\u0067\u006f\u006e\u0065\u006b",0x01ec:"\u004f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e",0x0186:"\u004f\u006f\u0070e\u006e",0x00d8:"\u004f\u0073\u006c\u0061\u0073\u0068",0x01fe:"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065",0xf7f8:"O\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c",0xf76f:"\u004f\u0073\u006d\u0061\u006c\u006c",0x047e:"\u004f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x00d5:"\u004f\u0074\u0069\u006c\u0064\u0065",0x1e4c:"O\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e4e:"\u004f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073",0xf7f5:"O\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x2a37:"\u004f\u0074\u0069\u006d\u0065\u0073",0x0050:"\u0050",0x1e54:"\u0050\u0061\u0063\u0075\u0074\u0065",0x24c5:"\u0050c\u0069\u0072\u0063\u006c\u0065",0x1e56:"\u0050\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x054a:"P\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04a6:"P\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063",0x03a6:"\u0050\u0068\u0069",0x01a4:"\u0050\u0068\u006fo\u006b",0x03a0:"\u0050\u0069",0x0553:"\u0050\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x210e:"P\u006c\u0061\u006e\u0063\u006b\u0063\u006f\u006e\u0073\u0074",0xff30:"\u0050\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2abb:"\u0050\u0072\u0065\u0063",0x214a:"\u0050\u0072\u006fp\u0065\u0072\u0074\u0079\u004c\u0069\u006e\u0065",0x03a8:"\u0050\u0073\u0069",0x0470:"P\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf770:"\u0050\u0073\u006d\u0061\u006c\u006c",0x0051:"\u0051",0x220e:"\u0051\u0045\u0044",0x24c6:"\u0051c\u0069\u0072\u0063\u006c\u0065",0xff31:"\u0051\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf771:"\u0051\u0073\u006d\u0061\u006c\u006c",0x2047:"\u0051\u0075\u0065\u0073\u0074\u0069\u006f\u006e",0x0052:"\u0052",0x2b46:"R\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x054c:"\u0052\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0154:"\u0052\u0061\u0063\u0075\u0074\u0065",0x27ed:"\u0052b\u0072\u0062\u0072\u0061\u006b",0x0158:"\u0052\u0063\u0061\u0072\u006f\u006e",0x0156:"\u0052\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81e:"\u0052c\u0065\u0064\u0069\u006c\u006c\u00611",0x24c7:"\u0052c\u0069\u0072\u0063\u006c\u0065",0xf831:"R\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0210:"\u0052d\u0062\u006c\u0067\u0072\u0061\u0076e",0x1e58:"\u0052\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e5a:"\u0052d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e5c:"\u0052d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x21b3:"\u0052\u0064\u0073\u0068",0x0550:"R\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x211c:"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072",0x03a1:"\u0052\u0068\u006f",0xf6fc:"\u0052i\u006e\u0067\u0073\u006d\u0061\u006cl",0x0212:"\u0052\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x1e5e:"\u0052\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff32:"\u0052\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2996:"\u0052\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073",0xf772:"\u0052\u0073\u006d\u0061\u006c\u006c",0x0281:"\u0052\u0073\u006d\u0061\u006c\u006c\u0069\u006e\u0076e\u0072\u0074\u0065\u0064",0x02b6:"\u0052\u0073\u006d\u0061ll\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069o\u0072",0x023f:"\u0052\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072",0x29db:"\u0052\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x0053:"\u0053",0x024f:"\u0053\u0044\u0031\u0035\u0030\u0031\u0030\u0030",0x250c:"\u0053\u0046\u0030\u0031\u0030\u0030\u0030\u0030",0x2514:"\u0053\u0046\u0030\u0032\u0030\u0030\u0030\u0030",0x2510:"\u0053\u0046\u0030\u0033\u0030\u0030\u0030\u0030",0x2518:"\u0053\u0046\u0030\u0034\u0030\u0030\u0030\u0030",0x253c:"\u0053\u0046\u0030\u0035\u0030\u0030\u0030\u0030",0x252c:"\u0053\u0046\u0030\u0036\u0030\u0030\u0030\u0030",0x2534:"\u0053\u0046\u0030\u0037\u0030\u0030\u0030\u0030",0x251c:"\u0053\u0046\u0030\u0038\u0030\u0030\u0030\u0030",0x2524:"\u0053\u0046\u0030\u0039\u0030\u0030\u0030\u0030",0x2500:"\u0053\u0046\u0031\u0030\u0030\u0030\u0030\u0030",0x2502:"\u0053\u0046\u0031\u0031\u0030\u0030\u0030\u0030",0x2561:"\u0053\u0046\u0031\u0039\u0030\u0030\u0030\u0030",0x2562:"\u0053\u0046\u0032\u0030\u0030\u0030\u0030\u0030",0x2556:"\u0053\u0046\u0032\u0031\u0030\u0030\u0030\u0030",0x2555:"\u0053\u0046\u0032\u0032\u0030\u0030\u0030\u0030",0x2563:"\u0053\u0046\u0032\u0033\u0030\u0030\u0030\u0030",0x2551:"\u0053\u0046\u0032\u0034\u0030\u0030\u0030\u0030",0x2557:"\u0053\u0046\u0032\u0035\u0030\u0030\u0030\u0030",0x255d:"\u0053\u0046\u0032\u0036\u0030\u0030\u0030\u0030",0x255c:"\u0053\u0046\u0032\u0037\u0030\u0030\u0030\u0030",0x255b:"\u0053\u0046\u0032\u0038\u0030\u0030\u0030\u0030",0x255e:"\u0053\u0046\u0033\u0036\u0030\u0030\u0030\u0030",0x255f:"\u0053\u0046\u0033\u0037\u0030\u0030\u0030\u0030",0x255a:"\u0053\u0046\u0033\u0038\u0030\u0030\u0030\u0030",0x2554:"\u0053\u0046\u0033\u0039\u0030\u0030\u0030\u0030",0x2569:"\u0053\u0046\u0034\u0030\u0030\u0030\u0030\u0030",0x2566:"\u0053\u0046\u0034\u0031\u0030\u0030\u0030\u0030",0x2560:"\u0053\u0046\u0034\u0032\u0030\u0030\u0030\u0030",0x2550:"\u0053\u0046\u0034\u0033\u0030\u0030\u0030\u0030",0x256c:"\u0053\u0046\u0034\u0034\u0030\u0030\u0030\u0030",0x2567:"\u0053\u0046\u0034\u0035\u0030\u0030\u0030\u0030",0x2568:"\u0053\u0046\u0034\u0036\u0030\u0030\u0030\u0030",0x2564:"\u0053\u0046\u0034\u0037\u0030\u0030\u0030\u0030",0x2565:"\u0053\u0046\u0034\u0038\u0030\u0030\u0030\u0030",0x2559:"\u0053\u0046\u0034\u0039\u0030\u0030\u0030\u0030",0x2558:"\u0053\u0046\u0035\u0030\u0030\u0030\u0030\u0030",0x2552:"\u0053\u0046\u0035\u0031\u0030\u0030\u0030\u0030",0x2553:"\u0053\u0046\u0035\u0032\u0030\u0030\u0030\u0030",0x256b:"\u0053\u0046\u0035\u0033\u0030\u0030\u0030\u0030",0x256a:"\u0053\u0046\u0035\u0034\u0030\u0030\u0030\u0030",0x015a:"\u0053\u0061\u0063\u0075\u0074\u0065",0x1e64:"\u0053a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x03e0:"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b",0x0160:"\u0053\u0063\u0061\u0072\u006f\u006e",0x1e66:"\u0053c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0xf6fd:"S\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x015e:"\u0053\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf816:"\u0053c\u0065\u0064\u0069\u006c\u006c\u00611",0x018f:"\u0053\u0063\u0068w\u0061",0x04d8:"\u0053\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04da:"S\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x24c8:"\u0053c\u0069\u0072\u0063\u006c\u0065",0x015c:"S\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0218:"\u0053\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e60:"\u0053\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e62:"\u0053d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e68:"\u0053d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074",0x21d8:"\u0053e\u0061\u0072\u0072\u006f\u0077",0x054d:"S\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2166:"\u0053\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x0547:"S\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0428:"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03e2:"\u0053\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x04ba:"\u0053\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03ec:"S\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x03a3:"\u0053\u0069\u0067m\u0061",0x2165:"\u0053\u0069\u0078\u0072\u006f\u006d\u0061\u006e",0xff33:"\u0053\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a4e:"\u0053\u0071\u0063a\u0070",0x2a4f:"\u0053\u0071\u0063u\u0070",0xf773:"\u0053\u0073\u006d\u0061\u006c\u006c",0x03da:"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b",0x2abc:"\u0053\u0075\u0063\u0063",0x21d9:"\u0053w\u0061\u0072\u0072\u006f\u0077",0x0054:"\u0054",0x03a4:"\u0054\u0061\u0075",0x0166:"\u0054\u0062\u0061\u0072",0x0164:"\u0054\u0063\u0061\u0072\u006f\u006e",0xf814:"\u0054c\u0061\u0072\u006f\u006e\u0031",0xf818:"\u0054c\u0065\u0064\u0069\u006c\u006c\u00611",0x24c9:"\u0054c\u0069\u0072\u0063\u006c\u0065",0x1e70:"\u0054\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0162:"\u0054\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e6a:"\u0054\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e6c:"\u0054d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04ac:"\u0054\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2169:"\u0054\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x04b4:"\u0054\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0398:"\u0054\u0068\u0065t\u0061",0x01ac:"\u0054\u0068\u006fo\u006b",0x00de:"\u0054\u0068\u006fr\u006e",0xf7fe:"\u0054\u0068\u006f\u0072\u006e\u0073\u006d\u0061\u006c\u006c",0x2162:"\u0054\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e",0xf6fe:"\u0054\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x054f:"\u0054\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1e6e:"\u0054\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff34:"\u0054\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0539:"\u0054\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01bc:"\u0054\u006f\u006e\u0065\u0066\u0069\u0076\u0065",0x0184:"\u0054o\u006e\u0065\u0073\u0069\u0078",0x01a7:"\u0054o\u006e\u0065\u0074\u0077\u006f",0x01ae:"\u0054\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b",0x0426:"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x040b:"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf774:"\u0054\u0073\u006d\u0061\u006c\u006c",0x216b:"T\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e",0x2161:"\u0054\u0077\u006f\u0072\u006f\u006d\u0061\u006e",0x0055:"\u0055",0x27f0:"\u0055\u0055\u0070\u0061\u0072\u0072\u006f\u0077",0x00da:"\u0055\u0061\u0063\u0075\u0074\u0065",0xf7fa:"U\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x016c:"\u0055\u0062\u0072\u0065\u0076\u0065",0x01d3:"\u0055\u0063\u0061\u0072\u006f\u006e",0xf833:"\u0055\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24ca:"\u0055c\u0069\u0072\u0063\u006c\u0065",0x00db:"U\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e76:"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0xf7fb:"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x0423:"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c",0x0214:"\u0055d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00dc:"\u0055d\u0069\u0065\u0072\u0065\u0073\u0069s",0x01d7:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x1e72:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077",0x01d9:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e",0x04f0:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01db:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065",0x01d5:"\u0055d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0xf7fc:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1ee4:"\u0055d\u006f\u0074\u0062\u0065\u006c\u006fw",0x00d9:"\u0055\u0067\u0072\u0061\u0076\u0065",0xf7f9:"U\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x1ee6:"\u0055\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01af:"\u0055\u0068\u006fr\u006e",0x1ee8:"\u0055\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ef0:"\u0055\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1eea:"\u0055\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1eec:"\u0055\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1eee:"\u0055\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x0170:"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0x04f2:"U\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0216:"\u0055\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0478:"\u0055\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x016a:"\u0055m\u0061\u0063\u0072\u006f\u006e",0x04ee:"\u0055m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e7a:"\u0055m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0xff35:"\u0055\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0172:"\u0055o\u0067\u006f\u006e\u0065\u006b",0x03a5:"\u0055p\u0073\u0069\u006c\u006f\u006e",0x03d2:"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031",0x03d3:"U\u0070\u0073\u0069\u006c\u006f\u006ea\u0063\u0075\u0074\u0065\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006fl\u0067r\u0065\u0065\u006b",0x01b1:"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0061\u0066r\u0069\u0063\u0061\u006e",0x02f4:"\u0055\u0070s\u0069\u006c\u006fn\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",0x03ab:"\u0055p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x03d4:"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u0068\u006f\u006fk\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",0x038e:"\u0055\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x016e:"\u0055\u0072\u0069n\u0067",0x040e:"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0xf775:"\u0055\u0073\u006d\u0061\u006c\u006c",0x04ae:"\u0055\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x04b0:"\u0055\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0168:"\u0055\u0074\u0069\u006c\u0064\u0065",0x1e78:"U\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e74:"U\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x290a:"\u0055\u0075\u0070\u0061\u0072\u0072\u006f\u0077",0x0056:"\u0056",0x22ab:"\u0056\u0044\u0061s\u0068",0x2aeb:"\u0056\u0062\u0061\u0072",0x24cb:"\u0056c\u0069\u0072\u0063\u006c\u0065",0x1e7e:"\u0056d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a54:"\u0056\u0065\u0065",0x054e:"V\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01b2:"\u0056\u0068\u006fo\u006b",0xff36:"\u0056\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0548:"\u0056\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xf776:"\u0056\u0073\u006d\u0061\u006c\u006c",0x1e7c:"\u0056\u0074\u0069\u006c\u0064\u0065",0x2980:"\u0056\u0076\u0065r\u0074",0x0057:"\u0057",0x1e82:"\u0057\u0061\u0063\u0075\u0074\u0065",0x24cc:"\u0057c\u0069\u0072\u0063\u006c\u0065",0x0174:"W\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e84:"\u0057d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e86:"\u0057\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e88:"\u0057d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a53:"\u0057\u0065\u0064g\u0065",0x1e80:"\u0057\u0067\u0072\u0061\u0076\u0065",0xff37:"\u0057\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf777:"\u0057\u0073\u006d\u0061\u006c\u006c",0x0058:"\u0058",0x24cd:"\u0058c\u0069\u0072\u0063\u006c\u0065",0x1e8c:"\u0058d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e8a:"\u0058\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x053d:"X\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x039e:"\u0058\u0069",0xff38:"\u0058\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf778:"\u0058\u0073\u006d\u0061\u006c\u006c",0x0059:"\u0059",0x00dd:"\u0059\u0061\u0063\u0075\u0074\u0065",0xf7fd:"Y\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x24ce:"\u0059c\u0069\u0072\u0063\u006c\u0065",0x0176:"Y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0178:"\u0059d\u0069\u0065\u0072\u0065\u0073\u0069s",0xf7ff:"\u0059\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1e8e:"\u0059\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1ef4:"\u0059d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04f8:"Y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063",0x1ef2:"\u0059\u0067\u0072\u0061\u0076\u0065",0x01b3:"\u0059\u0068\u006fo\u006b",0x1ef6:"\u0059\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0545:"\u0059\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0407:"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0552:"\u0059\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff39:"\u0059\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf779:"\u0059\u0073\u006d\u0061\u006c\u006c",0x021f:"\u0059s\u006d\u0061\u006c\u006c\u0063\u0061p",0x1ef8:"\u0059\u0074\u0069\u006c\u0064\u0065",0x2144:"\u0059\u0075\u0070",0x046a:"\u0059\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x046c:"\u0059\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063",0x0466:"\u0059\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0468:"\u0059u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x005a:"\u005a",0x0536:"\u005a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0179:"\u005a\u0061\u0063\u0075\u0074\u0065",0x017d:"\u005a\u0063\u0061\u0072\u006f\u006e",0xf6ff:"Z\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x24cf:"\u005ac\u0069\u0072\u0063\u006c\u0065",0x1e90:"Z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x017b:"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e92:"\u005ad\u006f\u0074\u0062\u0065\u006c\u006fw",0x0498:"\u005a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04de:"\u005ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x0396:"\u005a\u0065\u0074\u0061",0x053a:"Z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03fd:"\u005a\u0068\u0065\u0062\u0072\u0065\u0076\u0065",0x04c1:"\u005a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0496:"Z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04dc:"\u005a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e94:"\u005a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff3a:"\u005a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf77a:"\u005a\u0073\u006d\u0061\u006c\u006c",0x01b5:"\u005as\u0074\u0072\u006f\u006b\u0065",0x0061:"\u0061",0x2701:"\u0061\u0031",0x2702:"\u0061\u0032",0x2704:"\u0061\u0033",0x260e:"\u0061\u0034",0x2706:"\u0061\u0035",0x271d:"\u0061\u0036",0x271e:"\u0061\u0037",0x271f:"\u0061\u0038",0x2720:"\u0061\u0039",0x2721:"\u0061\u0031\u0030",0x261b:"\u0061\u0031\u0031",0x261e:"\u0061\u0031\u0032",0x270c:"\u0061\u0031\u0033",0x270d:"\u0061\u0031\u0034",0x270e:"\u0061\u0031\u0035",0x270f:"\u0061\u0031\u0036",0x2711:"\u0061\u0031\u0037",0x2712:"\u0061\u0031\u0038",0x2713:"\u0061\u0031\u0039",0x2714:"\u0061\u0032\u0030",0x2715:"\u0061\u0032\u0031",0x2716:"\u0061\u0032\u0032",0x2717:"\u0061\u0032\u0033",0x2718:"\u0061\u0032\u0034",0x2719:"\u0061\u0032\u0035",0x271a:"\u0061\u0032\u0036",0x271b:"\u0061\u0032\u0037",0x271c:"\u0061\u0032\u0038",0x2722:"\u0061\u0032\u0039",0x2723:"\u0061\u0033\u0030",0x2724:"\u0061\u0033\u0031",0x2725:"\u0061\u0033\u0032",0x2726:"\u0061\u0033\u0033",0x2727:"\u0061\u0033\u0034",0x2605:"\u0061\u0033\u0035",0x2729:"\u0061\u0033\u0036",0x272a:"\u0061\u0033\u0037",0x272b:"\u0061\u0033\u0038",0x272c:"\u0061\u0033\u0039",0x272d:"\u0061\u0034\u0030",0x272e:"\u0061\u0034\u0031",0x272f:"\u0061\u0034\u0032",0x2730:"\u0061\u0034\u0033",0x2731:"\u0061\u0034\u0034",0x2732:"\u0061\u0034\u0035",0x2733:"\u0061\u0034\u0036",0x2734:"\u0061\u0034\u0037",0x2735:"\u0061\u0034\u0038",0x2736:"\u0061\u0034\u0039",0x2737:"\u0061\u0035\u0030",0x2738:"\u0061\u0035\u0031",0x2739:"\u0061\u0035\u0032",0x273a:"\u0061\u0035\u0033",0x273b:"\u0061\u0035\u0034",0x273c:"\u0061\u0035\u0035",0x273d:"\u0061\u0035\u0036",0x273e:"\u0061\u0035\u0037",0x273f:"\u0061\u0035\u0038",0x2740:"\u0061\u0035\u0039",0x2741:"\u0061\u0036\u0030",0x2742:"\u0061\u0036\u0031",0x2743:"\u0061\u0036\u0032",0x2744:"\u0061\u0036\u0033",0x2745:"\u0061\u0036\u0034",0x2746:"\u0061\u0036\u0035",0x2747:"\u0061\u0036\u0036",0x2748:"\u0061\u0036\u0037",0x2749:"\u0061\u0036\u0038",0x274a:"\u0061\u0036\u0039",0x274b:"\u0061\u0037\u0030",0x25cf:"\u0061\u0037\u0031",0x274d:"\u0061\u0037\u0032",0x25a0:"\u0061\u0037\u0033",0x274f:"\u0061\u0037\u0034",0x2751:"\u0061\u0037\u0035",0x25b2:"\u0061\u0037\u0036",0x25bc:"\u0061\u0037\u0037",0x25c6:"\u0061\u0037\u0038",0x2756:"\u0061\u0037\u0039",0x25d7:"\u0061\u0038\u0031",0x2758:"\u0061\u0038\u0032",0x2759:"\u0061\u0038\u0033",0x275a:"\u0061\u0038\u0034",0xf8de:"\u0061\u0038\u0035",0xf8e0:"\u0061\u0038\u0036",0xf8e1:"\u0061\u0038\u0037",0xf8e2:"\u0061\u0038\u0038",0xf8d7:"\u0061\u0038\u0039",0xf8d8:"\u0061\u0039\u0030",0xf8db:"\u0061\u0039\u0031",0xf8dc:"\u0061\u0039\u0032",0xf8d9:"\u0061\u0039\u0033",0xf8da:"\u0061\u0039\u0034",0xf8e3:"\u0061\u0039\u0035",0xf8e4:"\u0061\u0039\u0036",0x275b:"\u0061\u0039\u0037",0x275c:"\u0061\u0039\u0038",0x275d:"\u0061\u0039\u0039",0x275e:"\u0061\u0031\u0030\u0030",0x2761:"\u0061\u0031\u0030\u0031",0x2762:"\u0061\u0031\u0030\u0032",0x2763:"\u0061\u0031\u0030\u0033",0x2764:"\u0061\u0031\u0030\u0034",0x2710:"\u0061\u0031\u0030\u0035",0x2765:"\u0061\u0031\u0030\u0036",0x2766:"\u0061\u0031\u0030\u0037",0x2767:"\u0061\u0031\u0030\u0038",0x2709:"\u0061\u0031\u0031\u0037",0x2708:"\u0061\u0031\u0031\u0038",0x2707:"\u0061\u0031\u0031\u0039",0x2460:"\u0061\u0031\u0032\u0030",0x2461:"\u0061\u0031\u0032\u0031",0x2462:"\u0061\u0031\u0032\u0032",0x2463:"\u0061\u0031\u0032\u0033",0x2464:"\u0061\u0031\u0032\u0034",0x2465:"\u0061\u0031\u0032\u0035",0x2466:"\u0061\u0031\u0032\u0036",0x2467:"\u0061\u0031\u0032\u0037",0x2468:"\u0061\u0031\u0032\u0038",0x2469:"\u0061\u0031\u0032\u0039",0x2776:"\u0061\u0031\u0033\u0030",0x2777:"\u0061\u0031\u0033\u0031",0x2778:"\u0061\u0031\u0033\u0032",0x2779:"\u0061\u0031\u0033\u0033",0x277a:"\u0061\u0031\u0033\u0034",0x277b:"\u0061\u0031\u0033\u0035",0x277c:"\u0061\u0031\u0033\u0036",0x277d:"\u0061\u0031\u0033\u0037",0x277e:"\u0061\u0031\u0033\u0038",0x277f:"\u0061\u0031\u0033\u0039",0x2780:"\u0061\u0031\u0034\u0030",0x2781:"\u0061\u0031\u0034\u0031",0x2782:"\u0061\u0031\u0034\u0032",0x2783:"\u0061\u0031\u0034\u0033",0x2784:"\u0061\u0031\u0034\u0034",0x2785:"\u0061\u0031\u0034\u0035",0x2786:"\u0061\u0031\u0034\u0036",0x2787:"\u0061\u0031\u0034\u0037",0x2788:"\u0061\u0031\u0034\u0038",0x2789:"\u0061\u0031\u0034\u0039",0x278a:"\u0061\u0031\u0035\u0030",0x278b:"\u0061\u0031\u0035\u0031",0x278c:"\u0061\u0031\u0035\u0032",0x278d:"\u0061\u0031\u0035\u0033",0x278e:"\u0061\u0031\u0035\u0034",0x278f:"\u0061\u0031\u0035\u0035",0x2790:"\u0061\u0031\u0035\u0036",0x2791:"\u0061\u0031\u0035\u0037",0x2792:"\u0061\u0031\u0035\u0038",0x2793:"\u0061\u0031\u0035\u0039",0x2794:"\u0061\u0031\u0036\u0030",0x27a3:"\u0061\u0031\u0036\u0032",0x2195:"\u0061\u0031\u0036\u0034",0x2799:"\u0061\u0031\u0036\u0035",0x279b:"\u0061\u0031\u0036\u0036",0x279c:"\u0061\u0031\u0036\u0037",0x279d:"\u0061\u0031\u0036\u0038",0x279e:"\u0061\u0031\u0036\u0039",0x279f:"\u0061\u0031\u0037\u0030",0x27a0:"\u0061\u0031\u0037\u0031",0x27a1:"\u0061\u0031\u0037\u0032",0x27a2:"\u0061\u0031\u0037\u0033",0x27a4:"\u0061\u0031\u0037\u0034",0x27a5:"\u0061\u0031\u0037\u0035",0x27a6:"\u0061\u0031\u0037\u0036",0x27a7:"\u0061\u0031\u0037\u0037",0x27a8:"\u0061\u0031\u0037\u0038",0x27a9:"\u0061\u0031\u0037\u0039",0x27ab:"\u0061\u0031\u0038\u0030",0x27ad:"\u0061\u0031\u0038\u0031",0x27af:"\u0061\u0031\u0038\u0032",0x27b2:"\u0061\u0031\u0038\u0033",0x27b3:"\u0061\u0031\u0038\u0034",0x27b5:"\u0061\u0031\u0038\u0035",0x27b8:"\u0061\u0031\u0038\u0036",0x27ba:"\u0061\u0031\u0038\u0037",0x27bb:"\u0061\u0031\u0038\u0038",0x27bc:"\u0061\u0031\u0038\u0039",0x27bd:"\u0061\u0031\u0039\u0030",0x27be:"\u0061\u0031\u0039\u0031",0x279a:"\u0061\u0031\u0039\u0032",0x27aa:"\u0061\u0031\u0039\u0033",0x27b6:"\u0061\u0031\u0039\u0034",0x27b9:"\u0061\u0031\u0039\u0035",0x2798:"\u0061\u0031\u0039\u0036",0x27b4:"\u0061\u0031\u0039\u0037",0x27b7:"\u0061\u0031\u0039\u0038",0x27ac:"\u0061\u0031\u0039\u0039",0x27ae:"\u0061\u0032\u0030\u0030",0x27b1:"\u0061\u0032\u0030\u0031",0x2703:"\u0061\u0032\u0030\u0032",0x2750:"\u0061\u0032\u0030\u0033",0x2752:"\u0061\u0032\u0030\u0034",0xf8dd:"\u0061\u0032\u0030\u0035",0xf8df:"\u0061\u0032\u0030\u0036",0x0986:"\u0061a\u0062\u0065\u006e\u0067\u0061\u006ci",0x00e1:"\u0061\u0061\u0063\u0075\u0074\u0065",0x0906:"\u0061\u0061\u0064\u0065\u0076\u0061",0x0a86:"\u0061\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a06:"\u0061\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a3e:"\u0061a\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3303:"\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x09be:"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x093e:"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0abe:"\u0061\u0061\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x055f:"\u0061b\u0062\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006f\u006e\u006da\u0072\u006b\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0970:"a\u0062b\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006fn\u0073\u0069\u0067\u006ede\u0076\u0061",0x0985:"\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x311a:"\u0061b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0103:"\u0061\u0062\u0072\u0065\u0076\u0065",0x1eaf:"a\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065",0x04d1:"\u0061\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1eb7:"\u0061\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077",0x1eb1:"a\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065",0x1eb3:"\u0061b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x1eb5:"a\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065",0x01ce:"\u0061\u0063\u0061\u0072\u006f\u006e",0x2100:"\u0061c\u0063\u006f\u0075\u006e\u0074\u006ff",0x23e6:"\u0061c\u0063\u0075\u0072\u0072\u0065\u006et",0x267e:"\u0061\u0063\u0069\u0064\u0066\u0072\u0065\u0065",0x24d0:"\u0061c\u0069\u0072\u0063\u006c\u0065",0x00e2:"a\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ea5:"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1ead:"\u0061\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ea7:"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ea9:"a\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0x1eab:"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x00b4:"\u0061\u0063\u0075t\u0065",0x0317:"\u0061\u0063\u0075\u0074\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0301:"\u0061c\u0075\u0074\u0065\u0063\u006f\u006db",0x0954:"\u0061c\u0075\u0074\u0065\u0064\u0065\u0076a",0x02cf:"a\u0063\u0075\u0074\u0065\u006c\u006f\u0077\u006d\u006f\u0064",0x0274:"\u0061c\u0075\u0074\u0065\u006e\u006f\u0073p",0x0341:"\u0061\u0063\u0075t\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062",0x2940:"\u0061\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077",0x2939:"\u0061c\u0077l\u0065\u0066\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x21ba:"\u0061c\u0077o\u0070\u0065\u006e\u0063\u0069r\u0063\u006ce\u0061\u0072\u0072\u006f\u0077",0x293a:"\u0061c\u0077o\u0076\u0065\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x293b:"\u0061\u0063w\u0075\u006e\u0064e\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x0201:"\u0061d\u0062\u006c\u0067\u0072\u0061\u0076e",0x0a71:"\u0061\u0064\u0064\u0061\u006b\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x2101:"\u0061\u0064\u0064\u0072\u0065\u0073\u0073\u0073\u0075b\u006a\u0065\u0063\u0074",0x0905:"\u0061\u0064\u0065v\u0061",0x00e4:"\u0061d\u0069\u0065\u0072\u0065\u0073\u0069s",0x04d3:"\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01df:"\u0061d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0x1ea1:"\u0061d\u006f\u0074\u0062\u0065\u006c\u006fw",0x01e1:"\u0061\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e",0x22f0:"\u0061\u0064\u006ft\u0073",0x00e6:"\u0061\u0065",0x01fd:"\u0061e\u0061\u0063\u0075\u0074\u0065",0x3150:"\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x01e3:"\u0061\u0065\u006d\u0061\u0063\u0072\u006f\u006e",0x200e:"\u0061f\u0069\u0069\u0032\u0039\u0039",0x200f:"\u0061f\u0069\u0069\u0033\u0030\u0030",0x200d:"\u0061f\u0069\u0069\u0033\u0030\u0031",0x0410:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317",0x0411:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318",0x0412:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319",0x0416:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324",0x0417:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325",0x0419:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327",0x041a:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328",0x041d:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331",0x041f:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333",0x0420:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334",0x0421:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335",0x0422:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336",0x0424:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338",0x0429:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343",0x042a:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344",0x042b:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345",0x042c:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346",0x042e:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348",0x042f:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349",0x0402:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351",0x0403:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352",0x0405:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354",0x0406:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355",0x0408:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357",0x040a:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359",0xf6c4:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00363",0xf6c5:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00364",0x0430:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365",0x0432:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367",0x0433:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368",0x0434:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369",0x0451:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371",0x0437:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373",0x0439:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375",0x043d:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379",0x0442:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384",0x0443:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385",0x0444:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386",0x0445:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387",0x0448:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390",0x0449:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391",0x044e:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396",0x044f:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397",0x0455:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302",0x0456:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303",0x0458:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305",0x045a:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307",0x045c:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309",0x045e:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310",0x0462:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00346",0x0472:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00347",0x0474:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00348",0xf6c6:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00392",0x0473:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00395",0x0475:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396",0xf6c7:"\u0061f\u0069\u0069\u0031\u0030\u0038\u00331",0xf6c8:"\u0061f\u0069\u0069\u0031\u0030\u0038\u00332",0x060c:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388",0x0663:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395",0x0666:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398",0x0667:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399",0x061b:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303",0x061f:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307",0x0622:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310",0x0623:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311",0x0624:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312",0x062a:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318",0x062d:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321",0x062e:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322",0x062f:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323",0x0633:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327",0x0634:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328",0x0635:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329",0x0636:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330",0x0639:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333",0x0641:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341",0x0642:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342",0x0643:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343",0x0644:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344",0x0645:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345",0x064b:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351",0x064c:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352",0x0650:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356",0x0698:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308",0x0679:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00311",0x0688:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00312",0x06ba:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00314",0x06d5:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00334",0x20aa:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336",0x05be:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345",0x05d2:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366",0x05d4:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368",0x05d6:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370",0x05d7:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371",0x05d9:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373",0x05da:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374",0x05df:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379",0x05e4:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384",0x05e6:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386",0xfb2b:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395",0x05f0:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316",0x05f1:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317",0x05b8:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397",0x05b0:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399",0x05c2:"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303",0x05bf:"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341",0x05c0:"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342",0x2113:"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389",0x202c:"\u0061f\u0069\u0069\u0036\u0031\u0035\u00373",0x202d:"\u0061f\u0069\u0069\u0036\u0031\u0035\u00374",0x202e:"\u0061f\u0069\u0069\u0036\u0031\u0035\u00375",0x200c:"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364",0x066d:"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367",0x02bd:"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337",0x00e0:"\u0061\u0067\u0072\u0061\u0076\u0065",0x0a85:"\u0061g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0a05:"\u0061g\u0075\u0072\u006d\u0075\u006b\u0068i",0x3042:"\u0061h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ea3:"\u0061\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0990:"\u0061i\u0062\u0065\u006e\u0067\u0061\u006ci",0x311e:"\u0061\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0910:"\u0061\u0069\u0064\u0065\u0076\u0061",0x04d5:"a\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0a90:"\u0061\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a10:"\u0061\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a48:"\u0061i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfeca:"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfecb:"\u0061\u0069n\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfec9:"a\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfecc:"\u0061i\u006em\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0203:"\u0061\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x09c8:"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x0948:"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac8:"\u0061\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x30a2:"\u0061k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff71:"\u0061k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x314f:"\u0061k\u006f\u0072\u0065\u0061\u006e",0x05d0:"\u0061\u006c\u0065\u0066",0x0627:"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063",0xfb30:"\u0061\u006ce\u0066\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0xfe8e:"\u0061l\u0065f\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe84:"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0x0625:"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063",0xfe88:"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0062\u0065\u006co\u0077f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0xfe8d:"\u0061\u006c\u0065f\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb4f:"\u0061l\u0065f\u006c\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077",0xfe82:"\u0061l\u0065\u0066\u006d\u0061d\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0x0649:"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063",0xfef0:"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062i\u0063",0xfeef:"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfef4:"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb2e:"\u0061l\u0065f\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0xfb2f:"\u0061\u006ce\u0066\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",0x0671:"\u0061l\u0065\u0066\u0077\u0061\u0073\u006ca",0xfb51:"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061f\u0069\u006e\u0061\u006c",0xfb50:"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064",0xfd3c:"a\u006c\u0065\u0066\u0077it\u0068f\u0061\u0074\u0068\u0061\u0074a\u006e\u0066\u0069\u006e\u0061\u006c",0xfd3d:"\u0061l\u0065\u0066\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061t\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe83:"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfe87:"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0062\u0065\u006c\u006f\u0077\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfe81:"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u006d\u0061\u0064d\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0x2135:"\u0061\u006c\u0065p\u0068",0x224c:"\u0061\u006c\u006c\u0065\u0071\u0075\u0061\u006c",0x03b1:"\u0061\u006c\u0070h\u0061",0x03ac:"\u0061\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073",0xd802:"a\u006c\u0074\u0073\u0065\u006c\u0065\u0063\u0074\u006f\u0072",0x0101:"\u0061m\u0061\u0063\u0072\u006f\u006e",0xff41:"\u0061\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0026:"\u0061m\u0070\u0065\u0072\u0073\u0061\u006ed",0xff06:"\u0061m\u0070e\u0072\u0073\u0061\u006e\u0064m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xf726:"\u0061\u006d\u0070\u0065\u0072\u0073\u0061\u006e\u0064s\u006d\u0061\u006c\u006c",0x33c2:"\u0061\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x3122:"\u0061\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x3124:"a\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x27e8:"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074",0x27e9:"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0x299f:"\u0061\u006e\u0067\u0064\u006e\u0072",0x0e5a:"\u0061\u006e\u0067\u006b\u0068\u0061\u006e\u006b\u0068u\u0074\u0068\u0061\u0069",0x2220:"\u0061\u006e\u0067l\u0065",0x3008:"\u0061\u006eg\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xfe3f:"\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006ce\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x3009:"\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074",0xfe40:"\u0061n\u0067\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l",0x2329:"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t",0x232a:"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x299e:"\u0061\u006e\u0067\u006c\u0065\u0073",0x29a4:"\u0061n\u0067\u006c\u0065\u0075\u0062\u0061r",0x212b:"\u0061\u006e\u0067\u0073\u0074\u0072\u006f\u006d",0x20e7:"\u0061n\u006e\u0075\u0069\u0074\u0079",0x0387:"\u0061n\u006f\u0074\u0065\u006c\u0065\u0069a",0x27f2:"\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x0952:"\u0061\u006e\u0075d\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061",0x0982:"\u0061n\u0075s\u0076\u0061\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0902:"\u0061\u006e\u0075s\u0076\u0061\u0072\u0061\u0064\u0065\u0076\u0061",0x0a82:"\u0061\u006eu\u0073\u0076\u0061r\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0105:"\u0061o\u0067\u006f\u006e\u0065\u006b",0x3300:"\u0061\u0070\u0061a\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x249c:"\u0061\u0070\u0061\u0072\u0065\u006e",0x0245:"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065",0x055a:"\u0061p\u006fs\u0074\u0072\u006f\u0070\u0068e\u0061\u0072m\u0065\u006e\u0069\u0061\u006e",0x02bc:"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u006d\u006f\u0064",0x0246:"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u0072\u0065\u0076",0xf8ff:"\u0061\u0070\u0070l\u0065",0x2250:"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073",0x2a70:"\u0061p\u0070\u0072\u006f\u0078\u0065\u0071q",0x2248:"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c",0x2252:"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065",0x224b:"a\u0070\u0070\u0072\u006f\u0078\u0069\u0064\u0065\u006e\u0074",0x224a:"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c",0x318e:"\u0061\u0072\u0061e\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x318d:"a\u0072\u0061\u0065\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x2312:"\u0061\u0072\u0063",0x2258:"\u0061\u0072\u0063e\u0071",0x21b6:"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e",0x21b7:"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e",0x1e9a:"\u0061\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u006cf\u0072\u0069\u006e\u0067",0x00e5:"\u0061\u0072\u0069n\u0067",0x01fb:"\u0061\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065",0x1e01:"\u0061\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077",0x0590:"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u0064\u006f\u0077\u006e",0x058d:"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u006c\u0065\u0066\u0074",0x058f:"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074",0x058e:"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0075\u0070",0x2194:"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h",0x21e3:"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0064\u006f\u0077\u006e",0x21e0:"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u006c\u0065\u0066\u0074",0x21e2:"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068r\u0069\u0067\u0068\u0074",0x21e1:"a\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0075\u0070",0x21d4:"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068",0x21d5:"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076",0x21d3:"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0064\u006f\u0077\u006e",0x21d0:"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074",0x21d2:"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074",0x21d1:"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0075\u0070",0x2193:"\u0061r\u0072\u006f\u0077\u0064\u006f\u0077n",0x2199:"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074",0x2198:"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006er\u0069\u0067\u0068\u0074",0x21e9:"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065",0x02c5:"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u0064\u006f\u0077\u006e\u006d\u006f\u0064",0x02c2:"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u006c\u0065\u0066\u0074\u006d\u006f\u0064",0x02c3:"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064\u0072\u0069\u0067h\u0074\u006d\u006f\u0064",0x02c4:"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064u\u0070\u006d\u006f\u0064",0x21aa:"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074",0x21a9:"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006br\u0069\u0067\u0068\u0074",0xf8e7:"\u0061\u0072\u0072o\u0077\u0068\u006f\u0072\u0069\u007a\u0065\u0078",0x2190:"\u0061r\u0072\u006f\u0077\u006c\u0065\u0066t",0x21bd:"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0062\u006f\u0074\u0068\u0061\u006c\u0066",0x21cd:"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065",0x21c6:"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074",0x21e6:"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065",0x2192:"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",0x21c1:"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0062\u006ft\u0068\u0061\u006c\u0066",0x21cf:"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065",0x21c4:"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074",0x21e8:"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065",0x21e4:"\u0061\u0072\u0072o\u0077\u0074\u0061\u0062\u006c\u0065\u0066\u0074",0x21e5:"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0062\u0072\u0069\u0067\u0068\u0074",0x21a2:"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c\u006c\u0065\u0066\u0074",0x21a3:"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006cr\u0069\u0067\u0068\u0074",0x21da:"\u0061r\u0072o\u0077\u0074\u0072\u0069\u0070\u006c\u0065\u006c\u0065\u0066\u0074",0x21db:"\u0061\u0072r\u006f\u0077\u0074r\u0069\u0070\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x2191:"\u0061r\u0072\u006f\u0077\u0075\u0070",0x21a8:"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065",0x2196:"a\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074",0x21c5:"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e",0x2197:"\u0061\u0072\u0072o\u0077\u0075\u0070\u0072\u0069\u0067\u0068\u0074",0x21e7:"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065",0xf8e6:"a\u0072\u0072\u006f\u0077\u0076\u0065\u0072\u0074\u0065\u0078",0xd80a:"a\u0073c\u0065\u006e\u0064\u0065\u0072\u0063\u006f\u006dp\u0077\u006f\u0072\u0064ma\u0072\u006b",0x005e:"a\u0073\u0063\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006d",0xff3e:"a\u0073c\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006dm\u006f\u006e\u006f\u0073pa\u0063\u0065",0x007e:"\u0061\u0073\u0063\u0069\u0069\u0074\u0069\u006c\u0064\u0065",0xff5e:"\u0061\u0073\u0063\u0069it\u0069\u006c\u0064\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0251:"\u0061s\u0063\u0072\u0069\u0070\u0074",0x0252:"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064",0x3041:"\u0061\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a1:"\u0061\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff67:"\u0061\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x22a6:"\u0061\u0073\u0073\u0065\u0072\u0074",0x2a6e:"\u0061\u0073\u0074e\u0071",0x20f0:"a\u0073\u0074\u0065\u0072\u0061\u0063\u0063\u0065\u006e\u0074",0x002a:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b",0x2217:"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068",0xff0a:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xfe61:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u0073\u006d\u0061\u006c\u006c",0x2042:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006d",0x2609:"\u0061\u0073\u0074\u0072\u006f\u0073\u0075\u006e",0xf6e9:"\u0061s\u0075\u0070\u0065\u0072\u0069\u006fr",0x2243:"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c",0x0040:"\u0061\u0074",0x00e3:"\u0061\u0074\u0069\u006c\u0064\u0065",0xff20:"a\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe6b:"\u0061t\u0073\u006d\u0061\u006c\u006c",0x0250:"\u0061t\u0075\u0072\u006e\u0065\u0064",0x0994:"\u0061u\u0062\u0065\u006e\u0067\u0061\u006ci",0x3120:"\u0061\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0914:"\u0061\u0075\u0064\u0065\u0076\u0061",0x0a94:"\u0061\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a14:"\u0061\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x09d7:"\u0061\u0075\u006c\u0065ng\u0074\u0068\u006d\u0061\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0a4c:"\u0061u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x09cc:"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x094c:"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0acc:"\u0061\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x093d:"\u0061\u0076\u0061g\u0072\u0061\u0068\u0061\u0064\u0065\u0076\u0061",0x2a11:"\u0061\u0077\u0069n\u0074",0x0561:"a\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfb20:"\u0061\u0079i\u006e\u0061\u006ct\u006f\u006e\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x05e2:"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077",0x0062:"\u0062",0x2aed:"\u0062\u004e\u006f\u0074",0x09ac:"\u0062a\u0062\u0065\u006e\u0067\u0061\u006ci",0x2036:"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065",0x024c:"\u0062\u0061\u0063\u006b\u0065\u0064",0x005c:"\u0062a\u0063\u006b\u0073\u006c\u0061\u0073h",0xff3c:"\u0062a\u0063k\u0073\u006c\u0061\u0073\u0068m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0x2037:"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065",0x092c:"\u0062\u0061\u0064\u0065\u0076\u0061",0x22ff:"\u0062a\u0067\u006d\u0065\u006d\u0062\u0065r",0x0aac:"\u0062\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2c:"\u0062\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3070:"\u0062\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x0e3f:"\u0062\u0061\u0068\u0074\u0074\u0068\u0061\u0069",0x30d0:"\u0062\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x007c:"\u0062\u0061\u0072",0x2aea:"\u0062\u0061\u0072\u0056",0x2a43:"\u0062\u0061\u0072\u0063\u0061\u0070",0x2a42:"\u0062\u0061\u0072\u0063\u0075\u0070",0x2961:"\u0062a\u0072d\u006f\u0077\u006e\u0068\u0061r\u0070\u006fo\u006e\u006c\u0065\u0066\u0074",0x295d:"\u0062\u0061\u0072\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074",0x21b9:"\u0062a\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061",0x2956:"\u0062a\u0072l\u0065\u0066\u0074\u0068\u0061r\u0070\u006fo\u006e\u0064\u006f\u0077\u006e",0x2952:"\u0062\u0061r\u006c\u0065\u0066t\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070",0x02a9:"\u0062\u0061\u0072\u006d\u0069\u0064\u006c\u006f\u006eg\u006e\u006f\u0073\u0070",0xff5c:"\u0062\u0061\u0072m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x21b8:"b\u0061\u0072\u006f\u0076er\u006eo\u0072\u0074\u0068\u0077\u0065s\u0074\u0061\u0072\u0072\u006f\u0077",0x2920:"b\u0061r\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u0064\u0069\u0061mo\u006e\u0064",0x295f:"\u0062\u0061\u0072\u0072ig\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",0x295b:"\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0075\u0070",0x2912:"\u0062\u0061\u0072\u0075\u0070\u0061\u0072\u0072\u006f\u0077",0x2958:"\u0062\u0061r\u0075\u0070\u0068a\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074",0x2954:"\u0062\u0061\u0072\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006er\u0069\u0067\u0068\u0074",0x22bd:"\u0062\u0061\u0072\u0076\u0065\u0065",0x3105:"\u0062b\u006f\u0070\u006f\u006d\u006f\u0066o",0x23b6:"\u0062\u0062\u0072\u006b\u0074\u0062\u0072\u006b",0x24d1:"\u0062c\u0069\u0072\u0063\u006c\u0065",0x1e03:"\u0062\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e05:"\u0062d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2506:"\u0062\u0064\u0074\u0072\u0069\u0070\u006c\u0065\u0076\u0064\u0061\u0073\u0068",0x266c:"b\u0065a\u006d\u0065\u0064\u0073\u0069\u0078\u0074\u0065e\u006e\u0074\u0068\u006eot\u0065\u0073",0x2235:"\u0062e\u0063\u0061\u0075\u0073\u0065",0x0431:"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0628:"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c",0xfe90:"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe91:"\u0062\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3079:"\u0062\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfe8f:"b\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe92:"\u0062e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc9f:"b\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc08:"b\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfc6d:"\u0062e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfc6e:"\u0062\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xfc09:"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfc9d:"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xe812:"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfc9c:"\u0062e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc9e:"\u0062e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc6a:"\u0062e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc6f:"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc0a:"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x30d9:"\u0062\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0562:"b\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x23e3:"\u0062e\u006e\u007a\u0065\u006e\u0072",0x03b2:"\u0062\u0065\u0074\u0061",0x03d0:"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",0xfb31:"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x2136:"\u0062\u0065\u0074\u0068",0x05d1:"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w",0xfb4c:"\u0062\u0065\u0074\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x226c:"\u0062e\u0074\u0077\u0065\u0065\u006e",0x09ad:"\u0062\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x092d:"\u0062h\u0061\u0064\u0065\u0076\u0061",0x0aad:"b\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2d:"b\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0253:"\u0062\u0068\u006fo\u006b",0x27d8:"\u0062\u0069\u0067\u0062\u006f\u0074",0x2a03:"\u0062i\u0067\u0063\u0075\u0070\u0064\u006ft",0x2afc:"\u0062\u0069\u0067\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065",0x2a00:"\u0062i\u0067\u006f\u0064\u006f\u0074",0x2a01:"\u0062\u0069\u0067\u006f\u0070\u006c\u0075\u0073",0x2a02:"\u0062i\u0067\u006f\u0074\u0069\u006d\u0065s",0x2a57:"\u0062\u0069\u0067s\u006c\u006f\u0070\u0065\u0064\u0076\u0065\u0065",0x2a58:"\u0062\u0069\u0067\u0073\u006c\u006f\u0070\u0065\u0064w\u0065\u0064\u0067\u0065",0x2a05:"\u0062\u0069\u0067\u0073\u0071\u0063\u0061\u0070",0x2a06:"\u0062\u0069\u0067\u0073\u0071\u0063\u0075\u0070",0x2aff:"\u0062\u0069\u0067\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067",0x2a09:"\u0062\u0069\u0067\u0074\u0069\u006d\u0065\u0073",0x27d9:"\u0062\u0069\u0067\u0074\u006f\u0070",0x2a1e:"\u0062i\u0067t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",0x2a04:"\u0062\u0069\u0067\u0075\u0070\u006c\u0075\u0073",0x22c1:"\u0062\u0069\u0067\u0076\u0065\u0065",0x22c0:"\u0062\u0069\u0067\u0077\u0065\u0064\u0067\u0065",0x3073:"\u0062\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d3:"\u0062\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0298:"\u0062\u0069\u006c\u0061\u0062\u0069\u0061\u006c\u0063\u006c\u0069\u0063\u006b",0x0a02:"\u0062\u0069\u006e\u0064\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3331:"\u0062\u0069\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x29ed:"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u006f\u0077\u006e\u0061rr\u006f\u0077",0x2688:"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u0072\u0069\u0067\u0068td\u006f\u0074",0x2689:"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077\u006f\u0064\u006f\u0074\u0073",0x25d5:"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064\u0077\u0068\u0069t\u0065",0x29ea:"b\u006c\u0061\u0063\u006bdi\u0061m\u006f\u006e\u0064\u0064\u006fw\u006e\u0061\u0072\u0072\u006f\u0077",0x29d7:"\u0062\u006c\u0061\u0063\u006b\u0068\u006f\u0075\u0072g\u006c\u0061\u0073\u0073",0x25d6:"\u0062\u006c\u0061\u0063kl\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065",0x25c4:"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072",0x25c0:"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",0x3010:"\u0062\u006c\u0061\u0063\u006b\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074",0xfe3b:"\u0062\u006c\u0061ck\u006c\u0065\u006e\u0074\u0069\u0063\u0075\u006c\u0061r\u0062r\u0061c\u006be\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x3011:"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074",0xfe3c:"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061r\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063a\u006c",0x25e3:"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065",0x25e2:"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25ac:"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065",0x25ba:"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r",0x25b6:"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065",0x25aa:"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x263b:"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065",0x25be:"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u0064\u006f\u0077\u006e",0x25e4:"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065",0x25e5:"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25b4:"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065",0x2423:"\u0062\u006c\u0061n\u006b",0x1e07:"\u0062\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x2b2c:"b\u006c\u006b\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c",0x2b2e:"b\u006c\u006b\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c",0x2588:"\u0062\u006c\u006fc\u006b",0xff42:"\u0062\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0e1a:"\u0062\u006f\u0062a\u0069\u006d\u0061\u0069\u0074\u0068\u0061\u0069",0x307c:"\u0062\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30dc:"\u0062\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x25e1:"\u0062\u006f\u0074\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065",0x22c8:"\u0062\u006f\u0077\u0074\u0069\u0065",0x29c6:"\u0062\u006f\u0078\u0061\u0073\u0074",0x25eb:"\u0062\u006f\u0078\u0062\u0061\u0072",0x29c8:"\u0062\u006f\u0078\u0062\u006f\u0078",0x29c5:"\u0062o\u0078\u0062\u0073\u006c\u0061\u0073h",0x29c7:"\u0062o\u0078\u0063\u0069\u0072\u0063\u006ce",0x29c4:"\u0062o\u0078\u0064\u0069\u0061\u0067",0x29c9:"\u0062\u006f\u0078\u006f\u006e\u0062\u006f\u0078",0x249d:"\u0062\u0070\u0061\u0072\u0065\u006e",0x33c3:"\u0062\u0071\u0073\u0071\u0075\u0061\u0072\u0065",0xf8f4:"\u0062r\u0061\u0063\u0065\u0065\u0078",0x007b:"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t",0xf8f3:"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0062\u0074",0xf8f2:"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u006d\u0069\u0064",0xff5b:"\u0062r\u0061c\u0065\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xfe5b:"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c",0xf8f1:"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0074\u0070",0xfe37:"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x007d:"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074",0xf8fe:"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0074",0xf8fd:"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u006d\u0069\u0064",0xff5d:"\u0062\u0072\u0061\u0063er\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe5c:"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c",0xf8fc:"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0074\u0070",0xfe38:"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c",0x005b:"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xf8f0:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0062\u0074",0xf8ef:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0065\u0078",0xff3b:"b\u0072a\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074m\u006f\u006e\u006f\u0073pa\u0063\u0065",0x2045:"\u0062\u0072a\u0063\u006b\u0065t\u006c\u0065\u0066\u0074\u0071\u0075\u0069\u006c\u006c",0xf8ee:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0074\u0070",0x005d:"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0xf8fb:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0062\u0074",0xf8fa:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0065\u0078",0xff3d:"b\u0072\u0061\u0063\u006bet\u0072i\u0067\u0068\u0074\u006d\u006fn\u006f\u0073\u0070\u0061\u0063\u0065",0x2046:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074q\u0075\u0069\u006c\u006c",0xf8f9:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0074\u0070",0x02d8:"\u0062\u0072\u0065v\u0065",0xf006:"\u0062\u0072\u0065\u0076\u0065\u0031",0x032e:"\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0306:"\u0062\u0072\u0065\u0076\u0065\u0063\u006d\u0062",0x032f:"b\u0072\u0065\u0076\u0065in\u0076e\u0072\u0074\u0065\u0064\u0062e\u006c\u006f\u0077\u0063\u006d\u0062",0x0311:"\u0062\u0072e\u0076\u0065\u0069n\u0076\u0065\u0072\u0074\u0065\u0064\u0063\u006d\u0062",0x0361:"\u0062\u0072\u0065\u0076ei\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0064\u006f\u0075\u0062\u006c\u0065\u0063m\u0062",0x032a:"\u0062\u0072\u0069\u0064\u0067\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x033a:"\u0062\u0072\u0069\u0064ge\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063m\u0062",0x02ad:"\u0062\u0072i\u0064\u0067\u0065i\u006e\u0076\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x00a6:"\u0062r\u006f\u006b\u0065\u006e\u0062\u0061r",0x2b41:"\u0062\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0x2b47:"\u0062s\u0069m\u0069\u006c\u0061\u0072\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x27c8:"\u0062\u0073\u006f\u006c\u0068\u0073\u0075\u0062",0x0180:"\u0062s\u0074\u0072\u006f\u006b\u0065",0xf6ea:"\u0062s\u0075\u0070\u0065\u0072\u0069\u006fr",0x2a32:"\u0062\u0074\u0069\u006d\u0065\u0073",0x0183:"\u0062t\u006f\u0070\u0062\u0061\u0072",0x3076:"\u0062\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d6:"\u0062\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2022:"\u0062\u0075\u006c\u006c\u0065\u0074",0x2219:"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072",0x25ce:"\u0062\u0075\u006c\u006c\u0073\u0065\u0079\u0065",0x2aae:"\u0062u\u006d\u0070\u0065\u0071\u0071",0x0063:"\u0063",0x0080:"\u0063\u0031\u0032\u0038",0x0081:"\u0063\u0031\u0032\u0039",0x008d:"\u0063\u0031\u0034\u0031",0x008e:"\u0063\u0031\u0034\u0032",0x008f:"\u0063\u0031\u0034\u0033",0x056e:"\u0063\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x099a:"\u0063a\u0062\u0065\u006e\u0067\u0061\u006ci",0x0107:"\u0063\u0061\u0063\u0075\u0074\u0065",0x2106:"\u0063a\u0064\u0061\u0075\u006e\u0061",0x091a:"\u0063\u0061\u0064\u0065\u0076\u0061",0x0a9a:"\u0063\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1a:"\u0063\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3388:"\u0063a\u006c\u0073\u0071\u0075\u0061\u0072e",0x0981:"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006ed\u0075\u0062e\u006e\u0067\u0061\u006c\u0069",0x0310:"\u0063\u0061\u006e\u0064\u0072\u0061\u0062\u0069\u006ed\u0075\u0063\u006d\u0062",0x0901:"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006e\u0064\u0075\u0064\u0065\u0076\u0061",0x0a81:"\u0063\u0061\u006e\u0064ra\u0062\u0069\u006e\u0064\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x2a49:"\u0063a\u0070\u0062\u0061\u0072\u0063\u0075p",0x2a40:"\u0063\u0061\u0070\u0064\u006f\u0074",0xd809:"\u0063\u0061\u0070\u0069ta\u006c\u0063\u006f\u006d\u0070\u0077\u006f\u0072\u0064\u006d\u0061\u0072\u006b",0x2a47:"\u0063\u0061\u0070\u006f\u0076\u0065\u0072\u0063\u0075\u0070",0x21ea:"\u0063\u0061\u0070\u0073\u006c\u006f\u0063\u006b",0x2a44:"\u0063\u0061\u0070\u0077\u0065\u0064\u0067\u0065",0x2105:"\u0063\u0061\u0072\u0065\u006f\u0066",0x2038:"c\u0061\u0072\u0065\u0074\u0069\u006e\u0073\u0065\u0072\u0074",0x02c7:"\u0063\u0061\u0072o\u006e",0xf00a:"\u0063\u0061\u0072\u006f\u006e\u0031",0x032c:"\u0063\u0061\u0072\u006f\u006e\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x030c:"\u0063\u0061\u0072\u006f\u006e\u0063\u006d\u0062",0x21b5:"\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e",0x3118:"\u0063b\u006f\u0070\u006f\u006d\u006f\u0066o",0x010d:"\u0063\u0063\u0061\u0072\u006f\u006e",0x00e7:"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x1e09:"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065",0x24d2:"\u0063c\u0069\u0072\u0063\u006c\u0065",0x0109:"c\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0255:"\u0063\u0063\u0075r\u006c",0x293f:"\u0063c\u0077u\u006e\u0064\u0065\u0072\u0063u\u0072\u0076e\u0061\u0072\u0072\u006f\u0077",0x010b:"\u0063\u0064\u006f\u0074",0x33c5:"\u0063\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x00b8:"\u0063e\u0064\u0069\u006c\u006c\u0061",0xf008:"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0031",0xf00d:"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0032",0x0327:"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0063\u006d\u0062",0x2308:"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074",0x2309:"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074",0x00a2:"\u0063\u0065\u006e\u0074",0x2103:"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065",0xf6df:"\u0063\u0065\u006et\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xffe0:"\u0063\u0065\u006e\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf7a2:"\u0063\u0065\u006et\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2104:"\u0063\u0065\u006e\u0074\u0072\u0065\u006c\u0069\u006e\u0065",0xf6e0:"\u0063\u0065\u006et\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0579:"c\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x099b:"\u0063\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091b:"\u0063h\u0061\u0064\u0065\u0076\u0061",0x0a9b:"c\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1b:"c\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3114:"\u0063\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x04bd:"c\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x0447:"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04bf:"\u0063\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04b7:"c\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04f5:"\u0063\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0573:"\u0063\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04cc:"c\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x04b9:"\u0063h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x03c7:"\u0063\u0068\u0069",0x3277:"c\u0068i\u0065\u0075\u0063\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x3217:"\u0063\u0068\u0069\u0065uc\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3269:"\u0063\u0068\u0069\u0065uc\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314a:"\u0063\u0068\u0069\u0065\u0075\u0063\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x3209:"\u0063h\u0069e\u0075\u0063\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x0e0a:"\u0063\u0068\u006fc\u0068\u0061\u006e\u0067\u0074\u0068\u0061\u0069",0x0e08:"c\u0068\u006f\u0063\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e09:"\u0063\u0068\u006fc\u0068\u0069\u006e\u0067\u0074\u0068\u0061\u0069",0x0e0c:"c\u0068\u006f\u0063\u0068\u006f\u0065\u0074\u0068\u0061\u0069",0x0188:"\u0063\u0068\u006fo\u006b",0x3276:"\u0063i\u0065u\u0063\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3216:"\u0063\u0069\u0065\u0075\u0063\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3268:"\u0063\u0069\u0065\u0075\u0063\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3148:"c\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3208:"\u0063\u0069e\u0075\u0063\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x321c:"\u0063\u0069\u0065\u0075\u0063\u0075\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x29c3:"\u0063\u0069\u0072\u0045",0x27df:"\u0063\u0069\u0072\u0062\u006f\u0074",0x2257:"\u0063\u0069\u0072\u0063\u0065\u0071",0x229b:"\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0073\u0074e\u0072\u0069\u0073\u006b",0x25d2:"c\u0069\u0072\u0063\u006ceb\u006ft\u0074\u006f\u006d\u0068\u0061l\u0066\u0062\u006c\u0061\u0063\u006b",0x20dd:"\u0063\u0069\u0072c\u006c\u0065\u0063\u006f\u0070\u0079\u0072\u0074",0x29bf:"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0062\u0075\u006c\u006c\u0065\u0074",0x229d:"c\u0069\u0072\u0063\u006c\u0065\u0064\u0064\u0061\u0073\u0068",0x2298:"\u0063\u0069\u0072c\u006c\u0065\u0064\u0069\u0076\u0069\u0064\u0065",0x29ec:"\u0063i\u0072c\u006c\u0065\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x29b7:"\u0063i\u0072c\u006c\u0065\u0064\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x2686:"\u0063i\u0072c\u006c\u0065\u0064\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074",0x2687:"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077o\u0064\u006f\u0074\u0073",0x29b6:"c\u0069\u0072\u0063\u006c\u0065\u0064\u0076\u0065\u0072\u0074",0x29be:"\u0063i\u0072c\u006c\u0065\u0064\u0077\u0068i\u0074\u0065b\u0075\u006c\u006c\u0065\u0074",0x229c:"c\u0069\u0072\u0063\u006c\u0065\u0065\u0071\u0075\u0061\u006c",0x29b5:"\u0063\u0069\u0072\u0063\u006c\u0065\u0068\u0062\u0061\u0072",0x25f5:"\u0063\u0069\u0072c\u006c\u0065\u006c\u006c\u0071\u0075\u0061\u0064",0x25f6:"\u0063\u0069\u0072c\u006c\u0065\u006c\u0072\u0071\u0075\u0061\u0064",0x2297:"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079",0x2b30:"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u006e\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0x21f4:"\u0063i\u0072c\u006c\u0065\u006f\u006e\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x2299:"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074",0x2295:"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073",0x3036:"\u0063\u0069r\u0063\u006c\u0065p\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b",0x229a:"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u006e\u0067",0x25d3:"\u0063i\u0072c\u006c\u0065\u0074\u006f\u0070h\u0061\u006cf\u0062\u006c\u0061\u0063\u006b",0x25f4:"\u0063\u0069\u0072c\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064",0x25f7:"\u0063\u0069\u0072c\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064",0x25d4:"\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064b\u006c\u0061\u0063\u006b",0x25cd:"\u0063\u0069\u0072\u0063\u006c\u0065\u0076\u0065\u0072t\u0066\u0069\u006c\u006c",0x25d0:"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b",0x25d1:"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b",0x02c6:"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0xf003:"c\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0031",0x032d:"\u0063i\u0072c\u0075\u006d\u0066\u006c\u0065x\u0062\u0065l\u006f\u0077\u0063\u006d\u0062",0x0302:"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062",0x2a10:"\u0063\u0069\u0072\u0066\u006e\u0069\u006e\u0074",0x2aef:"\u0063\u0069\u0072\u006d\u0069\u0064",0x29c2:"\u0063i\u0072\u0073\u0063\u0069\u0072",0x2327:"\u0063\u006c\u0065a\u0072",0x01c2:"\u0063\u006c\u0069\u0063\u006b\u0061\u006c\u0076\u0065\u006f\u006c\u0061\u0072",0x01c0:"c\u006c\u0069\u0063\u006b\u0064\u0065\u006e\u0074\u0061\u006c",0x01c1:"\u0063\u006c\u0069c\u006b\u006c\u0061\u0074\u0065\u0072\u0061\u006c",0x01c3:"\u0063\u006c\u0069\u0063\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078",0x27f3:"\u0063l\u006f\u0063\u006b\u0077\u0069\u0073e",0x2a4d:"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0061\u0070",0x2a4c:"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0075\u0070",0x2a50:"c\u006c\u006f\u0073\u0065dv\u0061r\u0063\u0075\u0070\u0073\u006da\u0073\u0068\u0070\u0072\u006f\u0064",0x2050:"\u0063l\u006f\u0073\u0075\u0072\u0065",0x2663:"\u0063\u006c\u0075\u0062",0x2667:"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065",0x33a4:"\u0063\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0xff43:"\u0063\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x33a0:"\u0063m\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x0581:"\u0063\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x003a:"\u0063\u006f\u006co\u006e",0x2254:"\u0063o\u006c\u006f\u006e\u0065\u0071",0x20a1:"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079",0xff1a:"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xfe55:"\u0063\u006f\u006c\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x02d1:"\u0063\u006f\u006c\u006fnt\u0072\u0069\u0061\u006e\u0067\u0075\u006c\u0061\u0072\u0068\u0061\u006c\u0066\u006do\u0064",0x02d0:"\u0063o\u006co\u006e\u0074\u0072\u0069\u0061n\u0067\u0075l\u0061\u0072\u006d\u006f\u0064",0x002c:"\u0063\u006f\u006dm\u0061",0x0313:"\u0063\u006f\u006d\u006d\u0061\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062",0x0315:"\u0063o\u006dm\u0061\u0061\u0062\u006f\u0076e\u0072\u0069g\u0068\u0074\u0063\u006d\u0062",0xf6c3:"c\u006f\u006d\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x055d:"\u0063\u006f\u006d\u006d\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xf6e1:"\u0063\u006f\u006d\u006d\u0061\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0x2a29:"\u0063\u006f\u006d\u006d\u0061\u006d\u0069\u006e\u0075\u0073",0xff0c:"\u0063\u006f\u006d\u006d\u0061\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x0314:"c\u006f\u006d\u006d\u0061re\u0076e\u0072\u0073\u0065\u0064\u0061b\u006f\u0076\u0065\u0063\u006d\u0062",0xfe50:"\u0063\u006f\u006d\u006d\u0061\u0073\u006d\u0061\u006c\u006c",0x0299:"\u0063\u006f\u006dm\u0061\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0xf6e2:"\u0063\u006f\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0312:"\u0063\u006f\u006d\u006dat\u0075\u0072\u006e\u0065\u0064\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062",0x02bb:"\u0063\u006f\u006d\u006d\u0061\u0074\u0075\u0072\u006ee\u0064\u006d\u006f\u0064",0x2201:"\u0063\u006f\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074",0x27e1:"\u0063\u006f\u006e\u0063\u0061\u0076\u0065\u0064\u0069a\u006d\u006f\u006e\u0064",0x27e2:"\u0063\u006f\u006e\u0063av\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u006c\u0065f\u0074",0x27e3:"\u0063\u006f\u006eca\u0076\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u0072\u0069\u0067\u0068\u0074",0x2a6d:"\u0063o\u006e\u0067\u0064\u006f\u0074",0x2245:"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et",0x2332:"\u0063\u006f\u006e\u0069\u0063\u0074\u0061\u0070\u0065\u0072",0x2a07:"\u0063o\u006e\u006a\u0071\u0075\u0061\u006et",0x222e:"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",0x2303:"\u0063o\u006e\u0074\u0072\u006f\u006c",0x0006:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0041\u0043\u004b",0x0007:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0042\u0045\u004c",0x0008:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0042S",0x0018:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0043\u0041\u004e",0x000d:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R",0x0011:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031",0x0012:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0032",0x0013:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033",0x0014:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0034",0x007f:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0045\u004c",0x0010:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045",0x0019:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0045M",0x0005:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004e\u0051",0x0004:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004f\u0054",0x001b:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0053\u0043",0x0017:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0042",0x0003:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0058",0x000c:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046F",0x001c:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S",0x001d:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S",0x0009:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0048T",0x000a:"\u0063o\u006e\u0074\u0072\u006f\u006c\u004cF",0x0015:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0041\u004b",0x0000:"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c",0x001e:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S",0x000f:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053I",0x000e:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053O",0x0002:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u004f\u0054",0x0001:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0054\u0058",0x001a:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042",0x0016:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0059\u004e",0x001f:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S",0x000b:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0056T",0x2a3f:"\u0063o\u0070\u0072\u006f\u0064\u0075\u0063t",0x2210:"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079",0x00a9:"\u0063o\u0070\u0079\u0072\u0069\u0067\u0068t",0xf8e9:"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074\u0073\u0061\u006e\u0073",0xf6d9:"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074s\u0065\u0072\u0069\u0066",0x300c:"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074",0xff62:"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068",0xfe41:"\u0063o\u0072\u006e\u0065\u0072b\u0072\u0061\u0063\u006b\u0065t\u006ce\u0066t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l",0x300d:"\u0063o\u0072n\u0065\u0072\u0062\u0072\u0061c\u006b\u0065t\u0072\u0069\u0067\u0068\u0074",0xff63:"c\u006f\u0072\u006e\u0065\u0072\u0062r\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068t\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068",0xfe42:"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074i\u0063\u0061\u006c",0x337f:"\u0063\u006f\u0072\u0070\u006f\u0072\u0061\u0074\u0069\u006f\u006e\u0073q\u0075\u0061\u0072\u0065",0x33c7:"\u0063\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x33c6:"\u0063\u006f\u0076\u0065\u0072\u006b\u0067\u0073\u0071\u0075\u0061\u0072\u0065",0x249e:"\u0063\u0070\u0061\u0072\u0065\u006e",0x20a2:"\u0063\u0072\u0075\u007a\u0065\u0069\u0072\u006f",0x0227:"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068",0x0297:"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068\u0065\u0064",0x2acf:"\u0063\u0073\u0075\u0062",0x2ad1:"\u0063\u0073\u0075b\u0065",0x2ad0:"\u0063\u0073\u0075\u0070",0x2ad2:"\u0063\u0073\u0075p\u0065",0x221b:"\u0063\u0075\u0062\u0065\u0072\u006f\u006f\u0074",0x2a48:"\u0063u\u0070\u0062\u0061\u0072\u0063\u0061p",0x228d:"\u0063\u0075\u0070\u0064\u006f\u0074",0x228c:"\u0063\u0075\u0070l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2a46:"\u0063\u0075\u0070\u006f\u0076\u0065\u0072\u0063\u0061\u0070",0x2a45:"\u0063\u0075\u0070\u0076\u0065\u0065",0x22cf:"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064",0x21ab:"\u0063u\u0072\u006c\u0079\u006c\u0065\u0066t",0x22ce:"\u0063u\u0072\u006c\u0079\u006f\u0072",0x21ac:"\u0063\u0075\u0072\u006c\u0079\u0072\u0069\u0067\u0068\u0074",0x00a4:"\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079",0x293d:"\u0063u\u0072v\u0065\u0061\u0072\u0072\u006fw\u006c\u0065f\u0074\u0070\u006c\u0075\u0073",0x293c:"c\u0075r\u0076\u0065\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u006din\u0075\u0073",0x2941:"\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0072\u0072\u006f\u0077",0x21bb:"\u0063\u0077\u006f\u0070\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077",0x2938:"\u0063w\u0072i\u0067\u0068\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x293e:"\u0063\u0077\u0075\u006e\u0064\u0065\u0072\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077",0xf6d1:"\u0063\u0079\u0072\u0042\u0072\u0065\u0076\u0065",0xf6d2:"\u0063y\u0072\u0046\u006c\u0065\u0078",0xf6d4:"\u0063\u0079\u0072\u0062\u0072\u0065\u0076\u0065",0xf6d5:"\u0063y\u0072\u0066\u006c\u0065\u0078",0x0064:"\u0064",0x0564:"\u0064\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x09a6:"\u0064a\u0062\u0065\u006e\u0067\u0061\u006ci",0x0926:"\u0064\u0061\u0064\u0065\u0076\u0061",0xfebe:"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfebf:"\u0064\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfebd:"d\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfec0:"\u0064a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x05bc:"\u0064\u0061\u0067\u0065\u0073\u0068",0x2020:"\u0064\u0061\u0067\u0067\u0065\u0072",0x2021:"\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l",0x0aa6:"\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a26:"\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3060:"\u0064\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c0:"\u0064\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xfb33:"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068",0x2138:"\u0064\u0061\u006c\u0065\u0074\u0068",0x05d3:"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077",0xfeaa:"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfea9:"d\u0061\u006c\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x064f:"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfe78:"\u0064\u0061\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe821:"\u0064\u0061\u006d\u006d\u0061\u006c\u006f\u0077",0xfe79:"d\u0061\u006d\u006d\u0061\u006d\u0065\u0064\u0069\u0061\u006c",0xe835:"\u0064\u0061\u006dm\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0xfe72:"\u0064\u0061m\u006d\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe824:"d\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u006c\u006f\u0077",0xe836:"\u0064a\u006dm\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0x0964:"\u0064\u0061\u006ed\u0061",0x2621:"\u0064\u0061\u006e\u0067\u0065\u0072",0x05a7:"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x2ae3:"\u0064\u0061\u0073h\u0056",0x27db:"\u0064a\u0073\u0068\u0056\u0064\u0061\u0073h",0x2239:"\u0064a\u0073\u0068\u0063\u006f\u006c\u006fn",0x296b:"\u0064\u0061\u0073\u0068le\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",0x296d:"d\u0061s\u0068\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e",0x0485:"\u0064a\u0073\u0069\u0061\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062",0x290f:"\u0064b\u006b\u0061\u0072\u006f\u0077",0xf6d3:"\u0064\u0062\u006c\u0047\u0072\u0061\u0076\u0065",0x300a:"\u0064\u0062\u006c\u0061ng\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xfe3d:"d\u0062\u006c\u0061\u006e\u0067\u006ce\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0076\u0065r\u0074i\u0063\u0061\u006c",0x300b:"d\u0062l\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061c\u006b\u0065\u0074\u0072ig\u0068\u0074",0xfe3e:"\u0064\u0062\u006c\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068\u0074\u0076\u0065\u0072\u0074\u0069c\u0061\u006c",0x032b:"\u0064\u0062\u006car\u0063\u0068\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x21ca:"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e",0x058a:"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u0064\u006f\u0077\u006e",0x219e:"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074",0x21a0:"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064r\u0069\u0067\u0068\u0074",0x0588:"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068e\u0061\u0064\u0075\u0070",0x21c8:"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075\u0070",0x27e6:"\u0064\u0062\u006c\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074",0x27e7:"\u0064b\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0x0965:"\u0064\u0062\u006c\u0064\u0061\u006e\u0064\u0061",0xf6d6:"\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065",0x030f:"d\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062",0x222c:"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",0x0333:"\u0064\u0062\u006c\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062",0x033f:"\u0064\u0062\u006c\u006f\u0076\u0065\u0072\u006c\u0069n\u0065\u0063\u006d\u0062",0x02ba:"d\u0062\u006c\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064",0x2016:"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072",0x030e:"\u0064\u0062\u006cve\u0072\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062",0x3109:"\u0064b\u006f\u0070\u006f\u006d\u006f\u0066o",0x33c8:"\u0064\u0062\u0073\u0071\u0075\u0061\u0072\u0065",0x010f:"\u0064\u0063\u0061\u0072\u006f\u006e",0xf811:"\u0064c\u0061\u0072\u006f\u006e\u0031",0x1e11:"\u0064\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24d3:"\u0064c\u0069\u0072\u0063\u006c\u0065",0x1e13:"\u0064\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x09a1:"\u0064\u0064\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0921:"\u0064d\u0061\u0064\u0065\u0076\u0061",0x0aa1:"d\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a21:"d\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfb89:"\u0064d\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x20dc:"\u0064\u0064\u0064\u0064\u006f\u0074",0x095c:"\u0064d\u0064\u0068\u0061\u0064\u0065\u0076a",0x20db:"\u0064\u0064\u0064o\u0074",0x09a2:"d\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0922:"\u0064\u0064\u0068\u0061\u0064\u0065\u0076\u0061",0x0aa2:"\u0064\u0064\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a22:"\u0064\u0064\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x1e0b:"\u0064\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e0d:"\u0064d\u006f\u0074\u0062\u0065\u006c\u006fw",0x22f1:"\u0064\u0064\u006ft\u0073",0x2a77:"\u0064d\u006f\u0074\u0073\u0065\u0071",0x066b:"\u0064\u0065\u0063im\u0061\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x225c:"\u0064e\u0066\u0069\u006e\u0065\u0073",0x00b0:"\u0064\u0065\u0067\u0072\u0065\u0065",0x212a:"\u0064\u0065\u0067r\u0065\u0065\u006b\u0065\u006c\u0076\u0069\u006e",0x05ad:"\u0064\u0065\u0068\u0069\u0068\u0065\u0062\u0072\u0065\u0077",0x3067:"\u0064\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x03ef:"\u0064e\u0069\u0063\u006f\u0070\u0074\u0069c",0x30c7:"\u0064\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x05ba:"\u0064\u0065\u006c\u0065\u0074\u0065",0x232b:"\u0064\u0065\u006c\u0065\u0074\u0065\u006c\u0065\u0066\u0074",0x2326:"d\u0065\u006c\u0065\u0074\u0065\u0072\u0069\u0067\u0068\u0074",0x03b4:"\u0064\u0065\u006ct\u0061",0x018d:"d\u0065\u006c\u0074\u0061\u0074\u0075\u0072\u006e\u0065\u0064",0x09f8:"d\u0065\u006e\u006f\u006d\u0069\u006ea\u0074\u006f\u0072\u006d\u0069\u006eu\u0073\u006f\u006e\u0065\u006e\u0075\u006de\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061l\u0069",0x02a4:"\u0064\u0065\u007a\u0068",0x09a7:"\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0927:"\u0064h\u0061\u0064\u0065\u0076\u0061",0x0aa7:"d\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a27:"d\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0257:"\u0064\u0068\u006fo\u006b",0x0088:"\u0064i\u0061\u0065\u0072\u0065\u0073\u0069s",0x0344:"\u0064\u0069\u0061\u006c\u0079\u0074\u0069\u006b\u0061\u0074\u006f\u006eo\u0073\u0063\u006d\u0062",0x2300:"\u0064\u0069\u0061\u006d\u0065\u0074\u0065\u0072",0x2666:"\u0064i\u0061\u006d\u006f\u006e\u0064",0x2b19:"\u0064i\u0061m\u006f\u006e\u0064\u0062\u006f\u0074\u0062\u006c\u0061\u0063\u006b",0x27d0:"d\u0069\u0061\u006d\u006f\u006e\u0064\u0063\u0064\u006f\u0074",0x291d:"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x291f:"\u0064\u0069\u0061\u006don\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072",0x2b16:"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b",0x22c4:"d\u0069\u0061\u006d\u006f\u006e\u0064\u006d\u0061\u0074\u0068",0x2b17:"\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0072\u0069\u0067\u0068\u0074b\u006c\u0061\u0063\u006b",0x2662:"\u0064\u0069a\u006d\u006f\u006ed\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065",0x2b18:"\u0064i\u0061m\u006f\u006e\u0064\u0074\u006f\u0070\u0062\u006c\u0061\u0063\u006b",0x2680:"\u0064\u0069\u0063e\u0069",0x2681:"\u0064\u0069\u0063\u0065\u0069\u0069",0x2682:"\u0064i\u0063\u0065\u0069\u0069\u0069",0x2683:"\u0064\u0069\u0063\u0065\u0069\u0076",0x2684:"\u0064\u0069\u0063e\u0076",0x2685:"\u0064\u0069\u0063\u0065\u0076\u0069",0x00a8:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0xf005:"\u0064i\u0065\u0072\u0065\u0073\u0069\u00731",0xf6d7:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0061\u0063\u0075\u0074\u0065",0x0324:"\u0064\u0069e\u0072\u0065\u0073i\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0308:"d\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u006d\u0062",0xf6d8:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0067\u0072\u0061\u0076\u0065",0x0385:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0074\u006f\u006e\u006f\u0073",0x224f:"\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065",0x3062:"\u0064\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c2:"\u0064\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x22f2:"\u0064\u0069\u0073i\u006e",0x2a08:"\u0064i\u0073\u006a\u0071\u0075\u0061\u006et",0x3003:"\u0064i\u0074\u0074\u006f\u006d\u0061\u0072k",0x00f7:"\u0064\u0069\u0076\u0069\u0064\u0065",0x22c7:"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079",0x2223:"\u0064i\u0076\u0069\u0064\u0065\u0073",0x2215:"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068",0x0452:"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2593:"\u0064k\u0073\u0068\u0061\u0064\u0065",0xf823:"\u0064\u006b\u0073\u0068\u0061\u0064\u0065\u0031",0x1e0f:"\u0064\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x3397:"\u0064\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x0111:"\u0064m\u0061\u0063\u0072\u006f\u006e",0xff44:"\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2584:"\u0064n\u0062\u006c\u006f\u0063\u006b",0x2581:"\u0064\u006e\u0065i\u0067\u0068\u0074\u0062\u006c\u006f\u0063\u006b",0x2585:"\u0064\u006e\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b",0x2582:"\u0064\u006e\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b",0x2587:"\u0064n\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x2583:"\u0064n\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x2586:"\u0064\u006e\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b",0x0e0e:"d\u006f\u0063\u0068\u0061\u0064\u0061\u0074\u0068\u0061\u0069",0x0e14:"\u0064o\u0064\u0065\u006b\u0074\u0068\u0061i",0x3069:"\u0064\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c9:"\u0064\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0024:"\u0064\u006f\u006c\u006c\u0061\u0072",0xf6e3:"\u0064\u006f\u006c\u006c\u0061\u0072\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff04:"\u0064o\u006cl\u0061\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf724:"\u0064\u006f\u006c\u006c\u0061\u0072\u006f\u006c\u0064s\u0074\u0079\u006c\u0065",0xfe69:"d\u006f\u006c\u006c\u0061\u0072\u0073\u006d\u0061\u006c\u006c",0xf6e4:"\u0064\u006f\u006c\u006c\u0061\u0072\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0x20ab:"\u0064\u006f\u006e\u0067",0x3326:"\u0064\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x02d9:"\u0064o\u0074\u0061\u0063\u0063\u0065\u006et",0x0307:"\u0064\u006f\u0074a\u0063\u0063\u0065\u006e\u0074\u0063\u006d\u0062",0x0323:"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062",0xf820:"\u0064\u006f\u0074\u0063\u0069\u0072\u0063\u006c\u0065\u0031",0x2a67:"\u0064\u006f\u0074\u0065\u0071\u0075\u0069\u0076",0x30fb:"d\u006f\u0074\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0131:"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0069",0xf6be:"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u006a",0x0284:"\u0064o\u0074l\u0065\u0073\u0073\u006a\u0073t\u0072\u006fk\u0065\u0068\u006f\u006f\u006b",0x22c5:"\u0064o\u0074\u006d\u0061\u0074\u0068",0x2238:"\u0064\u006f\u0074\u006d\u0069\u006e\u0075\u0073",0x2214:"\u0064o\u0074\u0070\u006c\u0075\u0073",0x2a6a:"\u0064\u006f\u0074\u0073\u0069\u006d",0x223a:"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073",0x25cc:"\u0064\u006f\u0074t\u0065\u0064\u0063\u0069\u0072\u0063\u006c\u0065",0x2b1a:"\u0064\u006f\u0074t\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x2a30:"\u0064\u006f\u0074\u0074\u0069\u006d\u0065\u0073",0x2a62:"\u0064\u006f\u0075b\u006c\u0065\u0062\u0061\u0072\u0076\u0065\u0065",0x29fa:"\u0064\u006f\u0075\u0062\u006c\u0065\u0070\u006c\u0075\u0073",0x2913:"\u0064\u006f\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072",0x2908:"\u0064o\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064",0x297f:"\u0064\u006f\u0077n\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x2959:"\u0064o\u0077n\u0068\u0061\u0072\u0070\u006fo\u006e\u006ce\u0066\u0074\u0062\u0061\u0072",0x2955:"\u0064\u006f\u0077\u006eha\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0061\u0072",0x2965:"d\u006f\u0077\u006e\u0068ar\u0070o\u006f\u006e\u0073\u006c\u0065f\u0074\u0072\u0069\u0067\u0068\u0074",0x2935:"d\u006fw\u006e\u0072\u0069\u0067\u0068\u0074\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077",0x29f9:"\u0064o\u0077\u006e\u0073\u006c\u006f\u0070e",0x031e:"\u0064\u006fw\u006e\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x02d5:"d\u006f\u0077\u006e\u0074\u0061\u0063\u006b\u006d\u006f\u0064",0x29e8:"d\u006f\u0077\u006e\u0074ri\u0061n\u0067\u006c\u0065\u006c\u0065f\u0074\u0062\u006c\u0061\u0063\u006b",0x29e9:"\u0064\u006f\u0077\u006etr\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u006c\u0061c\u006b",0x21f5:"\u0064\u006f\u0077n\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0073",0x296f:"\u0064\u006f\u0077nu\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x21af:"\u0064o\u0077n\u007a\u0069\u0067\u007a\u0061\u0067\u0061\u0072\u0072\u006f\u0077",0x249f:"\u0064\u0070\u0061\u0072\u0065\u006e",0x2910:"\u0064\u0072\u0062\u006b\u0061\u0072\u006f\u0077",0x29f6:"\u0064\u0073\u006f\u006c",0x2a64:"\u0064\u0073\u0075\u0062",0xf6eb:"\u0064s\u0075\u0070\u0065\u0072\u0069\u006fr",0x0256:"\u0064\u0074\u0061i\u006c",0x018c:"\u0064t\u006f\u0070\u0062\u0061\u0072",0x29df:"\u0064u\u0061\u006c\u006d\u0061\u0070",0x3065:"\u0064\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c5:"\u0064\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0234:"\u0064\u0079\u006fg\u0068",0x01f3:"\u0064\u007a",0x02a3:"\u0064\u007a\u0061\u006c\u0074\u006f\u006e\u0065",0x01c6:"\u0064z\u0063\u0061\u0072\u006f\u006e",0x02a5:"\u0064\u007a\u0063\u0075\u0072\u006c",0x04e1:"d\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x045f:"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0065:"\u0065",0x00e9:"\u0065\u0061\u0063\u0075\u0074\u0065",0x2641:"\u0065\u0061\u0072t\u0068",0x098f:"\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x311c:"\u0065b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0115:"\u0065\u0062\u0072\u0065\u0076\u0065",0x090d:"e\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061",0x0a8d:"\u0065c\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0945:"e\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061",0x0ac5:"\u0065c\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x011b:"\u0065\u0063\u0061\u0072\u006f\u006e",0x1e1d:"\u0065\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065",0x0565:"e\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0587:"\u0065c\u0068y\u0069\u0077\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24d4:"\u0065c\u0069\u0072\u0063\u006c\u0065",0x00ea:"e\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ebf:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1e19:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1ec7:"\u0065\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ec1:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ec3:"e\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0x1ec5:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x0454:"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c",0x0205:"\u0065d\u0062\u006c\u0067\u0072\u0061\u0076e",0x090f:"\u0065\u0064\u0065v\u0061",0x00eb:"\u0065d\u0069\u0065\u0072\u0065\u0073\u0069s",0x0117:"\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1eb9:"\u0065d\u006f\u0074\u0062\u0065\u006c\u006fw",0x0a0f:"\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a47:"\u0065e\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x00e8:"\u0065\u0067\u0072\u0061\u0076\u0065",0x2a98:"\u0065\u0067\u0073\u0064\u006f\u0074",0x0a8f:"\u0065g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0567:"\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x311d:"\u0065\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x3048:"\u0065h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ebb:"\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x311f:"\u0065\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0038:"\u0065\u0069\u0067h\u0074",0x09ee:"\u0065\u0069\u0067h\u0074\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096e:"\u0065i\u0067\u0068\u0074\u0064\u0065\u0076a",0x2471:"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2485:"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2499:"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0aee:"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6e:"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0668:"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",0x3028:"\u0065\u0069\u0067\u0068\u0074\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x266b:"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064",0x3227:"e\u0069\u0067\u0068\u0074id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e",0x2088:"\u0065\u0069\u0067\u0068\u0074\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff18:"\u0065\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xf738:"\u0065\u0069\u0067\u0068\u0074\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x247b:"\u0065\u0069\u0067\u0068\u0074\u0070\u0061\u0072\u0065\u006e",0x248f:"e\u0069\u0067\u0068\u0074\u0070\u0065\u0072\u0069\u006f\u0064",0x06f8:"\u0065\u0069\u0067h\u0074\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2177:"\u0065\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e",0x2078:"\u0065\u0069\u0067\u0068\u0074\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e58:"\u0065i\u0067\u0068\u0074\u0074\u0068\u0061i",0x0207:"\u0065\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0465:"\u0065\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x30a8:"\u0065k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff74:"\u0065k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x0a74:"\u0065k\u006fn\u006b\u0061\u0072\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3154:"\u0065k\u006f\u0072\u0065\u0061\u006e",0x043b:"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2208:"\u0065l\u0065\u006d\u0065\u006e\u0074",0x246a:"\u0065\u006c\u0065v\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x247e:"e\u006c\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2492:"\u0065\u006c\u0065v\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x217a:"e\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x23e7:"\u0065\u006c\u0069\u006e\u0074\u0065\u0072\u0073",0x2026:"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",0x22ee:"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x2a97:"\u0065\u006c\u0073\u0064\u006f\u0074",0x0113:"\u0065m\u0061\u0063\u0072\u006f\u006e",0x1e17:"\u0065\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e15:"\u0065\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x043c:"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2014:"\u0065\u006d\u0064\u0061\u0073\u0068",0xfe31:"\u0065\u006d\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0xff45:"\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x055b:"e\u006dp\u0068\u0061\u0073\u0069\u0073\u006d\u0061\u0072k\u0061\u0072\u006d\u0065ni\u0061\u006e",0x2205:"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074",0x29b3:"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072",0x29b4:"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072\u006c",0x29b1:"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0062\u0061\u0072",0x29b2:"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0063\u0069\u0072\u0063",0xd801:"\u0065m\u0070\u0074\u0079\u0073\u006c\u006ft",0x2001:"\u0065\u006d\u0071\u0075\u0061\u0064",0x2003:"\u0065m\u0073\u0070\u0061\u0063\u0065",0x3123:"\u0065\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x20df:"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064\u0069a\u006d\u006f\u006e\u0064",0x20de:"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0073\u0071\u0075\u0061\u0072\u0065",0x20e4:"\u0065n\u0063l\u006f\u0073\u0065\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x2013:"\u0065\u006e\u0064\u0061\u0073\u0068",0xfe32:"\u0065\u006e\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x04a3:"\u0065\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x014b:"\u0065\u006e\u0067",0x3125:"e\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x04a5:"\u0065\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04c8:"\u0065\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x2000:"\u0065\u006e\u0071\u0075\u0061\u0064",0x2002:"\u0065n\u0073\u0070\u0061\u0063\u0065",0x0119:"\u0065o\u0067\u006f\u006e\u0065\u006b",0x3153:"\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e",0x025b:"\u0065\u006f\u0070e\u006e",0x029a:"e\u006f\u0070\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064",0x025c:"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x025e:"\u0065\u006f\u0070\u0065nr\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u006c\u006f\u0073\u0065\u0064",0x025d:"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065d\u0068\u006f\u006f\u006b",0x24a0:"\u0065\u0070\u0061\u0072\u0065\u006e",0x29e3:"\u0065\u0070\u0061\u0072\u0073\u006c",0x03b5:"\u0065p\u0073\u0069\u006c\u006f\u006e",0x03f5:"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031",0x022a:"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0063\u006c\u006f\u0073\u0065\u0064",0x03f6:"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076",0x03ad:"\u0065\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x2255:"\u0065q\u0063\u006f\u006c\u006f\u006e",0x225d:"\u0065\u0071\u0064e\u0066",0x2a66:"\u0065\u0071\u0064o\u0074",0x2a75:"\u0065\u0071\u0065\u0071",0x2a76:"\u0065\u0071\u0065\u0071\u0065\u0071",0x22dd:"\u0065\u0071\u0067t\u0072",0x22dc:"\u0065\u0071\u006c\u0065\u0073\u0073",0x2a9a:"\u0065\u0071\u0071\u0067\u0074\u0072",0x2a99:"\u0065q\u0071\u006c\u0065\u0073\u0073",0x2a71:"\u0065q\u0071\u0070\u006c\u0075\u0073",0x2a73:"\u0065\u0071\u0071\u0073\u0069\u006d",0x2a9c:"e\u0071\u0071\u0073\u006c\u0061\u006e\u0074\u0067\u0074\u0072",0x2a9b:"\u0065\u0071\u0071s\u006c\u0061\u006e\u0074\u006c\u0065\u0073\u0073",0x003d:"\u0065\u0071\u0075a\u006c",0x2b40:"\u0065\u0071\u0075\u0061\u006c\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0xff1d:"\u0065\u0071\u0075\u0061\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x22df:"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073",0x2a96:"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0067\u0072e\u0061\u0074\u0065\u0072",0x2a95:"e\u0071\u0075\u0061\u006c\u006f\u0072\u006c\u0065\u0073\u0073",0x22de:"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073",0x2242:"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072",0x22d5:"\u0065\u0071\u0075\u0061\u006c\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x2971:"\u0065q\u0075a\u006c\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0xfe66:"\u0065\u0071\u0075\u0061\u006c\u0073\u006d\u0061\u006c\u006c",0x208c:"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0062",0x207c:"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2a78:"\u0065q\u0075\u0069\u0076\u0044\u0044",0x2a68:"\u0065q\u0075\u0069\u0076\u0056\u0065\u0072t",0x2a69:"\u0065\u0071\u0075\u0069\u0076\u0056\u0076\u0065\u0072\u0074",0x2261:"e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0063\u0065",0x224d:"\u0065q\u0075i\u0076\u0061\u0073\u0079\u006d\u0070\u0074\u006f\u0074\u0069\u0063",0x29e5:"\u0065\u0071\u0076\u0070\u0061\u0072\u0073\u006c",0x3126:"\u0065\u0072\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0440:"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0258:"\u0065r\u0065\u0076\u0065\u0072\u0073\u0065d",0x044d:"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x29f3:"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0063i\u0072\u0063\u006c\u0065",0x29f1:"\u0065r\u0072b\u0061\u0072\u0062\u006c\u0061c\u006b\u0064i\u0061\u006d\u006f\u006e\u0064",0x29ef:"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0073q\u0075\u0061\u0072\u0065",0x29f2:"\u0065\u0072\u0072b\u0061\u0072\u0063\u0069\u0072\u0063\u006c\u0065",0x29f0:"\u0065\u0072\u0072\u0062\u0061\u0072\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x29ee:"\u0065\u0072\u0072b\u0061\u0072\u0073\u0071\u0075\u0061\u0072\u0065",0x0441:"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04ab:"\u0065\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0283:"\u0065\u0073\u0068",0x0286:"\u0065s\u0068\u0063\u0075\u0072\u006c",0x090e:"\u0065\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061",0x0946:"\u0065\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x01aa:"\u0065s\u0068r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006c\u006f\u006f\u0070",0x0285:"\u0065\u0073h\u0073\u0071\u0075a\u0074\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x3047:"\u0065\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a7:"\u0065\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff6a:"\u0065\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x212e:"\u0065s\u0074\u0069\u006d\u0061\u0074\u0065d",0xf6ec:"\u0065s\u0075\u0070\u0065\u0072\u0069\u006fr",0x03b7:"\u0065\u0074\u0061",0x0568:"\u0065\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03ae:"\u0065\u0074\u0061\u0074\u006f\u006e\u006f\u0073",0x00f0:"\u0065\u0074\u0068",0x1ebd:"\u0065\u0074\u0069\u006c\u0064\u0065",0x1e1b:"e\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x0591:"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077",0x01dd:"\u0065t\u0075\u0072\u006e\u0065\u0064",0x3161:"\u0065\u0075\u006b\u006f\u0072\u0065\u0061\u006e",0x20a0:"\u0065\u0075\u0072o\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079",0x09c7:"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x0947:"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0ac7:"\u0065v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0021:"\u0065\u0078\u0063\u006c\u0061\u006d",0x055c:"\u0065\u0078\u0063\u006c\u0061\u006d\u0061\u0072\u006de\u006e\u0069\u0061\u006e",0x203c:"\u0065x\u0063\u006c\u0061\u006d\u0064\u0062l",0x00a1:"\u0065\u0078\u0063\u006c\u0061\u006d\u0064\u006f\u0077\u006e",0xf7a1:"\u0065x\u0063l\u0061\u006d\u0064\u006f\u0077\u006e\u0073\u006d\u0061\u006c\u006c",0xff01:"\u0065x\u0063l\u0061\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf721:"e\u0078\u0063\u006c\u0061\u006d\u0073\u006d\u0061\u006c\u006c",0x2203:"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c",0x0292:"\u0065\u007a\u0068",0x01ef:"\u0065\u007a\u0068\u0063\u0061\u0072\u006f\u006e",0x0293:"\u0065z\u0068\u0063\u0075\u0072\u006c",0x01b9:"e\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x01ba:"\u0065z\u0068\u0074\u0061\u0069\u006c",0x0066:"\u0066",0xf70c:"\u0066\u0037\u0030\u0063",0xf70e:"\u0066\u0037\u0030\u0065",0xf70a:"\u0066\u0037\u0030\u0061",0xf70d:"\u0066\u0037\u0030\u0064",0xf70f:"\u0066\u0037\u0030\u0066",0xf70b:"\u0066\u0037\u0030\u0062",0xf71c:"\u0066\u0037\u0031\u0063",0xf71d:"\u0066\u0037\u0031\u0064",0xf71a:"\u0066\u0037\u0031\u0061",0xf700:"\u0066\u0037\u0030\u0030",0xf701:"\u0066\u0037\u0030\u0031",0xf702:"\u0066\u0037\u0030\u0032",0xf703:"\u0066\u0037\u0030\u0033",0xf704:"\u0066\u0037\u0030\u0034",0xf705:"\u0066\u0037\u0030\u0035",0xf706:"\u0066\u0037\u0030\u0036",0xf707:"\u0066\u0037\u0030\u0037",0xf708:"\u0066\u0037\u0030\u0038",0xf709:"\u0066\u0037\u0030\u0039",0xf710:"\u0066\u0037\u0031\u0030",0xf711:"\u0066\u0037\u0031\u0031",0xf712:"\u0066\u0037\u0031\u0032",0xf713:"\u0066\u0037\u0031\u0033",0xf714:"\u0066\u0037\u0031\u0034",0xf715:"\u0066\u0037\u0031\u0035",0xf716:"\u0066\u0037\u0031\u0036",0xf717:"\u0066\u0037\u0031\u0037",0xf718:"\u0066\u0037\u0031\u0038",0xf719:"\u0066\u0037\u0031\u0039",0x095e:"\u0066\u0061\u0064\u0065\u0076\u0061",0x0a5e:"\u0066\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x2109:"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074",0x06cc:"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068",0xfbfd:"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfbfc:"\u0066\u0061r\u0073\u0069\u0079e\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe77:"\u0066a\u0074h\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",0xfe76:"\u0066\u0061\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe820:"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077",0x064e:"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063",0xe832:"\u0066\u0061\u0074h\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0xfe70:"\u0066\u0061t\u0068\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe823:"f\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u006c\u006f\u0077",0xe833:"\u0066a\u0074h\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0x3108:"\u0066b\u006f\u0070\u006f\u006d\u006f\u0066o",0x29d3:"\u0066b\u006f\u0077\u0074\u0069\u0065",0x24d5:"\u0066c\u0069\u0072\u0063\u006c\u0065",0x2a3e:"\u0066\u0063\u006d\u0070",0x292f:"\u0066\u0064\u0069\u0061\u0067\u006f\u0076\u006e\u0065a\u0072\u0072\u006f\u0077",0x292c:"\u0066\u0064\u0069a\u0067\u006f\u0076\u0072\u0064\u0069\u0061\u0067",0x1e1f:"\u0066\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0586:"f\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfed2:"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfed3:"\u0066\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfed1:"f\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfed4:"\u0066e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc31:"\u0066\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfc32:"\u0066e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x03e5:"\u0066e\u0069\u0063\u006f\u0070\u0074\u0069c",0x2640:"\u0066\u0065\u006d\u0061\u006c\u0065",0xfb00:"\u0066\u0066",0xfb03:"\u0066\u0066\u0069",0xfb04:"\u0066\u0066\u006c",0xfb01:"\u0066\u0069",0x246e:"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x2482:"\u0066\u0069\u0066t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2496:"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x2012:"\u0066\u0069\u0067\u0075\u0072\u0065\u0064\u0061\u0073\u0068",0x2007:"f\u0069\u0067\u0075\u0072\u0065\u0073\u0070\u0061\u0063\u0065",0xfb3a:"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077",0xe803:"\u0066i\u006ea\u006c\u006b\u0061\u0066\u0077i\u0074\u0068q\u0061\u006d\u0061\u0074\u0073",0xe802:"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0077\u0069\u0074\u0068s\u0068\u0065\u0076\u0061",0x05dd:"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077",0x05e3:"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x05e5:"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069",0x2a0f:"\u0066\u0069\u006e\u0074",0x02c9:"\u0066\u0069r\u0073\u0074\u0074o\u006e\u0065\u0063\u0068\u0069\u006e\u0065\u0073\u0065",0x25c9:"\u0066i\u0073\u0068\u0065\u0079\u0065",0x0035:"\u0066\u0069\u0076\u0065",0x0665:"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063",0x09eb:"f\u0069\u0076\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096b:"\u0066\u0069\u0076\u0065\u0064\u0065\u0076\u0061",0x215d:"f\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073",0x0aeb:"\u0066\u0069\u0076e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6b:"\u0066\u0069\u0076e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3025:"\u0066\u0069\u0076e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3224:"f\u0069v\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e",0x2085:"\u0066\u0069\u0076e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff15:"\u0066\u0069\u0076\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf735:"\u0066\u0069\u0076e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2478:"\u0066i\u0076\u0065\u0070\u0061\u0072\u0065n",0x248c:"\u0066\u0069\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x06f5:"f\u0069\u0076\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2174:"\u0066i\u0076\u0065\u0072\u006f\u006d\u0061n",0x215a:"\u0066i\u0076\u0065\u0073\u0069\u0078\u0074h",0x2075:"\u0066\u0069\u0076e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e55:"\u0066\u0069\u0076\u0065\u0074\u0068\u0061\u0069",0xfb02:"\u0066\u006c",0x230a:"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t",0x230b:"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074",0x0192:"\u0066\u006c\u006f\u0072\u0069\u006e",0x23e5:"\u0066\u006c\u0074n\u0073",0xff46:"\u0066\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x3399:"\u0066\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x0e1f:"\u0066o\u0066\u0061\u006e\u0074\u0068\u0061i",0x0e1d:"\u0066\u006f\u0066\u0061\u0074\u0068\u0061\u0069",0x2aba:"\u0066o\u006cl\u006f\u0077\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076",0x2ab6:"\u0066\u006fl\u006c\u006f\u0077n\u006f\u0074\u0073\u006c\u006e\u0074\u0065\u0071\u006c",0x22e9:"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074",0x2ab0:"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c",0x227d:"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079",0x227f:"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c",0x0e4f:"f\u006f\u006e\u0067\u006d\u0061\u006e\u0074\u0068\u0061\u0069",0x22a9:"\u0066\u006f\u0072\u0063\u0065\u0073",0x22aa:"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r",0x22d4:"\u0066\u006f\u0072\u006b",0x2adc:"\u0066\u006f\u0072k\u0073",0x2add:"\u0066\u006f\u0072\u006b\u0073\u006e\u006f\u0074",0x2ad9:"\u0066\u006f\u0072k\u0076",0x0034:"\u0066\u006f\u0075\u0072",0x0664:"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063",0x09ea:"f\u006f\u0075\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096a:"\u0066\u006f\u0075\u0072\u0064\u0065\u0076\u0061",0x2158:"\u0066\u006f\u0075\u0072\u0066\u0069\u0066\u0074\u0068\u0073",0x0aea:"\u0066\u006f\u0075r\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6a:"\u0066\u006f\u0075r\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3024:"\u0066\u006f\u0075r\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3223:"f\u006fu\u0072\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e",0x2084:"\u0066\u006f\u0075r\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff14:"\u0066\u006f\u0075\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x09f7:"f\u006fu\u0072\u006e\u0075\u006d\u0065\u0072\u0061\u0074o\u0072\u0062\u0065\u006ega\u006c\u0069",0xf734:"\u0066\u006f\u0075r\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2477:"\u0066o\u0075\u0072\u0070\u0061\u0072\u0065n",0x2005:"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0065\u006ds\u0070\u0061\u0063\u0065",0x248b:"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0069\u006f\u0064",0x06f4:"f\u006f\u0075\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2173:"\u0066o\u0075\u0072\u0072\u006f\u006d\u0061n",0x2074:"\u0066\u006f\u0075r\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x246d:"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2481:"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2495:"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0e54:"\u0066\u006f\u0075\u0072\u0074\u0068\u0061\u0069",0x221c:"\u0066\u006f\u0075\u0072\u0074\u0068\u0072\u006f\u006f\u0074",0x02cb:"\u0066\u006f\u0075\u0072\u0074\u0068\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065",0x2999:"\u0066o\u0075\u0072\u0076\u0064\u006f\u0074s",0x24a1:"\u0066\u0070\u0061\u0072\u0065\u006e",0x2044:"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e",0x20a3:"\u0066\u0072\u0061n\u0063",0x024b:"\u0066r\u006f\u006e\u0074\u0065\u0064",0x27d7:"\u0066\u0075\u006c\u006c\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e",0x0067:"\u0067",0x0997:"\u0067a\u0062\u0065\u006e\u0067\u0061\u006ci",0x01f5:"\u0067\u0061\u0063\u0075\u0074\u0065",0x0917:"\u0067\u0061\u0064\u0065\u0076\u0061",0x06af:"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c",0xfb93:"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb94:"\u0067\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb92:"g\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb95:"\u0067a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0a97:"\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a17:"\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x304c:"\u0067\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ac:"\u0067\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x03b3:"\u0067\u0061\u006dm\u0061",0x0263:"\u0067a\u006dm\u0061\u006c\u0061\u0074\u0069\u006e\u0073\u006d\u0061\u006c\u006c",0x02e0:"\u0067\u0061\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x03eb:"\u0067\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x310d:"\u0067b\u006f\u0070\u006f\u006d\u006f\u0066o",0x011f:"\u0067\u0062\u0072\u0065\u0076\u0065",0x01e7:"\u0067\u0063\u0061\u0072\u006f\u006e",0x0123:"\u0067\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24d6:"\u0067c\u0069\u0072\u0063\u006c\u0065",0x011d:"g\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0121:"\u0067\u0064\u006f\u0074",0x03cf:"\u0067\u0065\u0062a\u0072",0x3052:"\u0067\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b2:"\u0067\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x224e:"\u0067\u0065\u006f\u006d\u0065\u0071\u0075\u0069\u0076a\u006c\u0065\u006e\u0074",0x2251:"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c",0x2afa:"\u0067e\u0071\u0071\u0073\u006c\u0061\u006et",0x059c:"\u0067e\u0072e\u0073\u0068\u0061\u0063\u0063e\u006e\u0074h\u0065\u0062\u0072\u0065\u0077",0x05f3:"\u0067\u0065\u0072e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x059d:"\u0067e\u0072e\u0073\u0068\u006d\u0075\u0071d\u0061\u006dh\u0065\u0062\u0072\u0065\u0077",0x00df:"\u0067\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073",0x059e:"g\u0065\u0072\u0073\u0068ay\u0069m\u0061\u0063\u0063\u0065\u006et\u0068\u0065\u0062\u0072\u0065\u0077",0x05f4:"\u0067e\u0072s\u0068\u0061\u0079\u0069\u006d\u0068\u0065\u0062\u0072\u0065\u0077",0x2aa9:"\u0067\u0065\u0073c\u0063",0x2a80:"\u0067\u0065\u0073\u0064\u006f\u0074",0x2a82:"\u0067e\u0073\u0064\u006f\u0074\u006f",0x2a84:"\u0067\u0065\u0073\u0064\u006f\u0074\u006f\u006c",0x2a94:"\u0067\u0065\u0073\u006c\u0065\u0073",0x3013:"\u0067\u0065\u0074\u0061\u006d\u0061\u0072\u006b",0x22d9:"\u0067\u0067\u0067",0x2af8:"\u0067g\u0067\u006e\u0065\u0073\u0074",0x0998:"\u0067\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0572:"\u0067\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0918:"\u0067h\u0061\u0064\u0065\u0076\u0061",0x0a98:"g\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a18:"g\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x063a:"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfece:"\u0067\u0068a\u0069\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfecf:"\u0067h\u0061i\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfecd:"\u0067\u0068\u0061\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfed0:"\u0067\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x0495:"g\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0493:"\u0067\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0491:"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x095a:"\u0067\u0068\u0068\u0061\u0064\u0065\u0076\u0061",0x0a5a:"\u0067\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0260:"\u0067\u0068\u006fo\u006b",0x3393:"\u0067h\u007a\u0073\u0071\u0075\u0061\u0072e",0x304e:"\u0067\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ae:"\u0067\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0563:"g\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2137:"\u0067\u0069\u006de\u006c",0xfb32:"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",0x0453:"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2a92:"\u0067\u006c\u0045",0x2aa5:"\u0067\u006c\u0061",0x29e6:"g\u006c\u0065\u0069\u0063\u0068\u0073\u0074\u0061\u0072\u006b",0x2aa4:"\u0067\u006c\u006a",0x0249:"\u0067l\u006f\u0074\u0074\u0061\u006c",0x01be:"g\u006c\u006f\u0074\u0074al\u0069n\u0076\u0065\u0072\u0074\u0065d\u0073\u0074\u0072\u006f\u006b\u0065",0x024a:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0072\u0065\u0076",0x0294:"g\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070",0x0231:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0062\u0061\u0072",0x0232:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0062a\u0072\u0072\u0065\u0076",0x0226:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0069\u006e\u0076",0x0296:"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064",0x02c0:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u006d\u006f\u0064",0x0295:"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x02c1:"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006do\u0064",0x02e4:"g\u006c\u006f\u0074\u0074\u0061\u006cs\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073e\u0064\u0073\u0075p\u0065r\u0069\u006f\u0072",0x0225:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0072e\u0076\u0069\u006e\u0076",0x02a1:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0073t\u0072\u006f\u006b\u0065",0x02a2:"\u0067l\u006f\u0074\u0074\u0061l\u0073\u0074\u006f\u0070\u0073t\u0072o\u006be\u0072\u0065\u0076\u0065\u0072\u0073\u0065d",0x1e21:"\u0067m\u0061\u0063\u0072\u006f\u006e",0xff47:"\u0067\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x22e7:"\u0067\u006e\u0073i\u006d",0x3054:"\u0067\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b4:"\u0067\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x24a2:"\u0067\u0070\u0061\u0072\u0065\u006e",0x33ac:"\u0067p\u0061\u0073\u0071\u0075\u0061\u0072e",0x2207:"\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074",0x0060:"\u0067\u0072\u0061v\u0065",0x0316:"\u0067\u0072\u0061\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0300:"\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062",0x0953:"\u0067r\u0061\u0076\u0065\u0064\u0065\u0076a",0x02b3:"\u0067\u0072\u0061\u0076\u0065\u006c\u0065\u0066\u0074\u006e\u006f\u0073\u0070",0x02ce:"g\u0072\u0061\u0076\u0065\u006c\u006f\u0077\u006d\u006f\u0064",0xff40:"\u0067\u0072\u0061\u0076\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x0340:"\u0067\u0072\u0061v\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062",0x003e:"\u0067r\u0065\u0061\u0074\u0065\u0072",0x2a8c:"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071l\u006c\u0065\u0073\u0073",0x22d7:"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u006f\u0074",0x2265:"\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c",0x22db:"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073",0xff1e:"\u0067\u0072e\u0061\u0074\u0065r\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a8a:"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0064\u0062l\u0065\u0071\u0075\u0061\u006c",0x2a88:"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2a86:"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072a\u0070\u0070r\u006f\u0078\u0065\u0071\u006c",0x2273:"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074",0x2277:"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006c\u0065\u0073\u0073",0x2269:"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c",0x2267:"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c",0xfe65:"\u0067\u0072\u0065a\u0074\u0065\u0072\u0073\u006d\u0061\u006c\u006c",0x0261:"\u0067s\u0063\u0072\u0069\u0070\u0074",0x2a8e:"\u0067\u0073\u0069m\u0065",0x2a90:"\u0067\u0073\u0069m\u006c",0x01e5:"\u0067s\u0074\u0072\u006f\u006b\u0065",0x2aa7:"\u0067\u0074\u0063\u0063",0x2a7a:"\u0067\u0074\u0063i\u0072",0x29a0:"\u0067\u0074\u006c\u0070\u0061\u0072",0x2a7c:"\u0067t\u0071\u0075\u0065\u0073\u0074",0x2978:"\u0067\u0074\u0072\u0061\u0072\u0072",0x3050:"\u0067\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x00ab:"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074\u006c\u0065\u0066\u0074",0x00bb:"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074r\u0069\u0067\u0068\u0074",0x2039:"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006c\u006c\u0065\u0066\u0074",0x203a:"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006cr\u0069\u0067\u0068\u0074",0x30b0:"\u0067\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x3318:"\u0067\u0075\u0072a\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x33c9:"\u0067\u0079\u0073\u0071\u0075\u0061\u0072\u0065",0x0068:"\u0068",0x04a9:"\u0068\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x06c1:"\u0068\u0061\u0061\u006c\u0074\u006f\u006e\u0065\u0061r\u0061\u0062\u0069\u0063",0x09b9:"\u0068a\u0062\u0065\u006e\u0067\u0061\u006ci",0x029f:"\u0068\u0061\u0063e\u006b\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x04b3:"\u0068\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0939:"\u0068\u0061\u0064\u0065\u0076\u0061",0x0ab9:"\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a39:"\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfea2:"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfea3:"\u0068\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x306f:"\u0068\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfea1:"h\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfea4:"\u0068a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcaa:"\u0068a\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0x200a:"\u0068a\u0069\u0072\u0073\u0070\u0061\u0063e",0x332a:"h\u0061\u0069\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x30cf:"\u0068\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8a:"\u0068\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0a4d:"\u0068\u0061\u006c\u0061\u006e\u0074\u0067\u0075\u0072m\u0075\u006b\u0068\u0069",0x0621:"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfe80:"\u0068\u0061\u006d\u007a\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x3164:"\u0068\u0061\u006eg\u0075\u006c\u0066\u0069\u006c\u006c\u0065\u0072",0x044a:"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x21c3:"\u0068a\u0072p\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074",0x21c2:"\u0068\u0061r\u0070\u006f\u006fn\u0064\u006f\u0077\u006e\u0072\u0069\u0067\u0068\u0074",0x21bc:"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070",0x21cc:"\u0068\u0061r\u0070\u006f\u006fn\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x21c0:"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070",0x21cb:"\u0068\u0061r\u0070\u006f\u006fn\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074",0x21bf:"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u006c\u0065\u0066\u0074",0x21be:"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070r\u0069\u0067\u0068\u0074",0x23af:"\u0068\u0061\u0072\u0072\u006f\u0077\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x33ca:"\u0068\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x05b2:"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036",0x05b3:"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038",0x05b1:"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077",0x2a6f:"\u0068a\u0074\u0061\u0070\u0070\u0072\u006fx",0x0127:"\u0068\u0062\u0061\u0072",0x310f:"\u0068b\u006f\u0070\u006f\u006d\u006f\u0066o",0x1e2b:"h\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077",0x1e29:"\u0068\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24d7:"\u0068c\u0069\u0072\u0063\u006c\u0065",0x0125:"h\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x03f7:"\u0068\u0063\u0079\u0072\u0069\u006c",0x1e27:"\u0068d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e23:"\u0068\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e25:"\u0068d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2665:"\u0068\u0065\u0061r\u0074",0x2661:"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065",0xfb34:"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",0x0647:"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c",0xfba7:"h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063",0xfeea:"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfba5:"\u0068e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfba4:"h\u0065\u0068\u0068\u0061\u006d\u007aa\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064a\u0072a\u0062\u0069\u0063",0xfba8:"\u0068\u0065\u0068\u0069ni\u0074\u0069\u0061\u006c\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063",0xfeeb:"\u0068\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3078:"\u0068\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfee9:"h\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfba9:"h\u0065\u0068\u006d\u0065di\u0061l\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063",0xfeec:"\u0068e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcd8:"\u0068e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0x337b:"\u0068e\u0069s\u0065\u0069\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x30d8:"\u0068\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8d:"\u0068\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3336:"\u0068e\u006bu\u0074\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x0267:"\u0068\u0065\u006e\u0067\u0068\u006f\u006f\u006b",0x22b9:"\u0068\u0065\u0072m\u0069\u0074\u006d\u0061\u0074\u0072\u0069\u0078",0x3339:"\u0068\u0065\u0072u\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x2394:"\u0068e\u0078\u0061\u0067\u006f\u006e",0x2b23:"\u0068\u0065\u0078a\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b",0x0266:"\u0068\u0068\u006fo\u006b",0x023a:"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072",0x02b1:"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x327b:"\u0068i\u0065u\u0068\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x321b:"\u0068\u0069\u0065\u0075\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x326d:"\u0068\u0069\u0065\u0075\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x314e:"h\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320d:"\u0068\u0069e\u0075\u0068\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x0674:"\u0068i\u0067\u0068\u0068\u0061\u006d\u007aa",0x3072:"\u0068\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d2:"\u0068\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8b:"\u0068\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05b4:"\u0068i\u0072\u0069\u0071\u0031\u0034",0x2924:"\u0068k\u006e\u0065\u0061\u0072\u0072\u006fw",0x2923:"\u0068k\u006e\u0077\u0061\u0072\u0072\u006fw",0x2925:"\u0068\u006b\u0073\u0065\u0061\u0072\u006f\u0077",0x2926:"\u0068\u006b\u0073\u0077\u0061\u0072\u006f\u0077",0x1e96:"\u0068\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff48:"\u0068\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0570:"\u0068\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0e2b:"\u0068o\u0068\u0069\u0070\u0074\u0068\u0061i",0x307b:"\u0068\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30db:"\u0068\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8e:"\u0068\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05b9:"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",0x0e2e:"\u0068\u006f\u006eo\u006b\u0068\u0075\u006b\u0074\u0068\u0061\u0069",0x0309:"\u0068o\u006f\u006b\u0063\u006d\u0062",0x0321:"\u0068\u006f\u006fkp\u0061\u006c\u0061\u0074\u0061\u006c\u0069\u007a\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0322:"h\u006f\u006f\u006b\u0072et\u0072o\u0066\u006c\u0065\u0078\u0062e\u006c\u006f\u0077\u0063\u006d\u0062",0x3342:"\u0068\u006f\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065",0x03e9:"\u0068\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x2015:"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072",0x05a2:"\u0068\u006f\u0072\u0069\u007a\u0074\u0061\u0062",0x031b:"\u0068o\u0072\u006e\u0063\u006d\u0062",0x2668:"\u0068\u006f\u0074\u0073\u0070\u0072\u0069\u006e\u0067\u0073",0x29d6:"\u0068o\u0075\u0072\u0067\u006c\u0061\u0073s",0x2302:"\u0068\u006f\u0075s\u0065",0x24a3:"\u0068\u0070\u0061\u0072\u0065\u006e",0x25ad:"\u0068\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065",0x0239:"\u0068\u0073\u0075\u0070\u0065\u0072",0x02b0:"\u0068s\u0075\u0070\u0065\u0072\u0069\u006fr",0x0265:"\u0068t\u0075\u0072\u006e\u0065\u0064",0x3075:"\u0068\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x3333:"\u0068\u0075\u0069i\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x30d5:"\u0068\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8c:"\u0068\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x02dd:"\u0068\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0xf009:"\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0031",0x030b:"\u0068u\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0063\u006d\u0062",0x0195:"\u0068\u0076",0x002d:"\u0068\u0079\u0070\u0068\u0065\u006e",0x2043:"\u0068\u0079\u0070h\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074",0x2027:"\u0068y\u0070\u0068\u0065\u006e\u0064\u006ft",0xf6e5:"\u0068\u0079\u0070\u0068\u0065\u006e\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff0d:"\u0068y\u0070h\u0065\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe63:"h\u0079\u0070\u0068\u0065\u006e\u0073\u006d\u0061\u006c\u006c",0xf6e6:"\u0068\u0079\u0070\u0068\u0065\u006e\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0x2010:"\u0068y\u0070\u0068\u0065\u006e\u0074\u0077o",0x3030:"\u0068z\u0069\u0067\u007a\u0061\u0067",0x0069:"\u0069",0x00ed:"\u0069\u0061\u0063\u0075\u0074\u0065",0x01f8:"\u0069\u0062\u0061\u0072",0x0987:"\u0069\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x3127:"\u0069b\u006f\u0070\u006f\u006d\u006f\u0066o",0x012d:"\u0069\u0062\u0072\u0065\u0076\u0065",0x01d0:"\u0069\u0063\u0061\u0072\u006f\u006e",0x24d8:"\u0069c\u0069\u0072\u0063\u006c\u0065",0x00ee:"i\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0209:"\u0069d\u0062\u006c\u0067\u0072\u0061\u0076e",0x328f:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0065\u0061r\u0074\u0068\u0063\u0069rc\u006c\u0065",0x328b:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0066\u0069\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x323f:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0061\u006cl\u0069\u0061\u006e\u0063\u0065\u0070\u0061\u0072\u0065\u006e",0x323a:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u0061\u006c\u006c\u0070ar\u0065\u006e",0x32a5:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u0065\u006e\u0074\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x3006:"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006c\u006f\u0073\u0065",0x3001:"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006f\u006d\u006d\u0061",0xff64:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u006f\u006d\u006d\u0061le\u0066\u0074",0x3237:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069c\u0063\u006f\u006e\u0067\u0072\u0061\u0074u\u006c\u0061\u0074\u0069\u006f\u006e\u0070\u0061\u0072\u0065\u006e",0x32a3:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u006fr\u0072\u0065\u0063\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x322f:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0065\u0061\u0072t\u0068\u0070\u0061\u0072\u0065\u006e",0x323d:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u006e\u0074\u0065\u0072\u0070\u0072\u0069\u0073\u0065\u0070a\u0072\u0065\u006e",0x329d:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u0078\u0063\u0065\u006c\u006c\u0065\u006e\u0074\u0063\u0069r\u0063\u006c\u0065",0x3240:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0066\u0065s\u0074\u0069\u0076\u0061\u006c\u0070\u0061\u0072\u0065\u006e",0x3296:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u006e\u0061\u006e\u0063\u0069\u0061\u006c\u0063\u0069r\u0063\u006c\u0065",0x3236:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0066i\u006ea\u006ec\u0069\u0061\u006c\u0070\u0061\u0072\u0065n",0x322b:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u0072\u0065\u0070ar\u0065\u006e",0x3232:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063h\u0061\u0076\u0065\u0070ar\u0065\u006e",0x32a4:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0068\u0069\u0067h\u0063\u0069\u0072\u0063\u006c\u0065",0x3005:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0069\u0074e\u0072\u0061\u0074\u0069\u006f\u006e\u006d\u0061\u0072\u006b",0x3298:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u006c\u0061\u0062\u006f\u0072\u0063\u0069\u0072\u0063l\u0065",0x3238:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0061\u0062o\u0072\u0070\u0061\u0072\u0065\u006e",0x32a7:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0065\u0066t\u0063\u0069\u0072\u0063\u006c\u0065",0x32a6:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063l\u006f\u0077\u0063\u0069rc\u006c\u0065",0x32a9:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u006de\u0064i\u0063i\u006e\u0065\u0063\u0069\u0072\u0063\u006ce",0x322e:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006d\u0065\u0074a\u006c\u0070\u0061\u0072\u0065\u006e",0x322a:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063m\u006f\u006f\u006e\u0070ar\u0065\u006e",0x3234:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063n\u0061\u006d\u0065\u0070ar\u0065\u006e",0x3002:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070e\u0072\u0069\u006f\u0064",0x329e:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0070\u0072\u0069\u006e\u0074\u0063\u0069\u0072\u0063l\u0065",0x3243:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0072\u0065\u0061c\u0068\u0070\u0061\u0072\u0065\u006e",0x3239:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0072e\u0070r\u0065s\u0065\u006e\u0074\u0070\u0061\u0072\u0065n",0x323e:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0072\u0065s\u006f\u0075\u0072\u0063\u0065\u0070\u0061\u0072\u0065\u006e",0x32a8:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0072\u0069\u0067\u0068\u0074\u0063\u0069\u0072\u0063l\u0065",0x3299:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0065\u0063\u0072\u0065\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x3242:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063s\u0065\u006c\u0066\u0070ar\u0065\u006e",0x3233:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u006f\u0063\u0069\u0065\u0074\u0079\u0070\u0061\u0072\u0065\u006e",0x3000:"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073\u0070\u0061\u0063\u0065",0x3235:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0070\u0065\u0063\u0069\u0061\u006c\u0070\u0061\u0072\u0065\u006e",0x3231:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u006fc\u006b\u0070\u0061\u0072\u0065\u006e",0x323b:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u0075d\u0079\u0070\u0061\u0072\u0065\u006e",0x3230:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0073\u0075\u006e\u0070\u0061\u0072\u0065\u006e",0x323c:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073u\u0070e\u0072v\u0069\u0073\u0065\u0070\u0061\u0072\u0065n",0x322c:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0077\u0061\u0074e\u0072\u0070\u0061\u0072\u0065\u006e",0x322d:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063w\u006f\u006f\u0064\u0070ar\u0065\u006e",0x3007:"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u007a\u0065\u0072\u006f",0x328e:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u006d\u0065t\u0061\u006c\u0063\u0069rc\u006c\u0065",0x328a:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006d\u006f\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x3294:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006e\u0061\u006d\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x3290:"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068s\u0075\u006ec\u0069\u0072\u0063\u006c\u0065",0x328c:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0077\u0061t\u0065\u0072\u0063\u0069rc\u006c\u0065",0x328d:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0077\u006f\u006f\u0064\u0063\u0069\u0072\u0063\u006c\u0065",0x0907:"\u0069\u0064\u0065v\u0061",0x00ef:"\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e2f:"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x04e5:"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1ecb:"\u0069d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04d7:"\u0069e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0435:"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03f9:"\u0069\u0065\u0068\u006f\u006f\u006b",0x03fb:"\u0069\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b",0x3275:"\u0069e\u0075n\u0067\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3215:"\u0069\u0065\u0075\u006e\u0067\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3267:"\u0069\u0065\u0075\u006e\u0067\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3147:"i\u0065\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e",0x3207:"\u0069\u0065u\u006e\u0067\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x00ec:"\u0069\u0067\u0072\u0061\u0076\u0065",0x0a87:"\u0069g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0a07:"\u0069g\u0075\u0072\u006d\u0075\u006b\u0068i",0x3044:"\u0069h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ec9:"\u0069\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0988:"\u0069i\u0062\u0065\u006e\u0067\u0061\u006ci",0x0438:"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0908:"\u0069\u0069\u0064\u0065\u0076\u0061",0x0a88:"\u0069\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a08:"\u0069\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x2a0c:"\u0069\u0069\u0069\u0069\u006e\u0074",0x222d:"\u0069\u0069\u0069n\u0074",0x0a40:"\u0069i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x29dc:"\u0069\u0069\u006e\u0066\u0069\u006e",0x020b:"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x09c0:"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x0940:"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac0:"\u0069\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0133:"\u0069\u006a",0x30a4:"\u0069k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff72:"\u0069k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x3163:"\u0069k\u006f\u0072\u0065\u0061\u006e",0x05ac:"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077",0x012b:"\u0069m\u0061\u0063\u0072\u006f\u006e",0x04e3:"\u0069m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x22b7:"\u0069m\u0061\u0067\u0065\u006f\u0066",0x2253:"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l",0x1d6a4:"\u0069\u006d\u0061t\u0068",0x0a3f:"\u0069\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069",0xff49:"\u0069\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x221e:"\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079",0x056b:"i\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2a0e:"\u0069\u006e\u0074\u0042\u0061\u0072",0x2a0d:"\u0069\u006e\u0074\u0062\u0061\u0072",0x2a19:"\u0069\u006e\u0074\u0063\u0061\u0070",0x2231:"\u0069\u006e\u0074c\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x2a1a:"\u0069\u006e\u0074\u0063\u0075\u0070",0x2216:"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065",0x222b:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",0x2321:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074",0xf8f5:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0065\u0078",0x2320:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070",0x22ba:"\u0069\u006e\u0074\u0065\u0072\u0063\u0061\u006c",0x2af4:"\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065",0x203d:"i\u006e\u0074\u0065\u0072\u0072\u006f\u0062\u0061\u006e\u0067",0x2e18:"\u0069n\u0074e\u0072\u0072\u006f\u0062\u0061\u006e\u0067\u0064\u006f\u0077\u006e",0x2229:"\u0069\u006e\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e",0x22d2:"\u0069n\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0062\u006c",0x22c2:"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079",0x2293:"\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074i\u006f\u006e\u0073\u0071",0x23ae:"i\u006e\u0074\u0065\u0078\u0074\u0065\u006e\u0064\u0065\u0072",0x3305:"\u0069\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x2a17:"\u0069\u006e\u0074\u006c\u0061\u0072\u0068\u006b",0x2a3c:"\u0069n\u0074\u0070\u0072\u006f\u0064",0x2a3d:"\u0069\u006e\u0074\u0070\u0072\u006f\u0064\u0072",0x2a18:"\u0069\u006e\u0074\u0078",0x25d8:"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t",0x25d9:"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce",0x223e:"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073",0x25db:"\u0069\u006e\u0076wh\u0069\u0074\u0065\u006c\u006f\u0077\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065",0x25da:"\u0069\u006e\u0076wh\u0069\u0074\u0065\u0075\u0070\u0070\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065",0x012f:"\u0069o\u0067\u006f\u006e\u0065\u006b",0x03b9:"\u0069\u006f\u0074\u0061",0x01f9:"\u0069\u006f\u0074a\u0031",0x03ca:"\u0069\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x0390:"\u0069\u006f\u0074\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073t\u006f\u006e\u006f\u0073",0x0269:"\u0069o\u0074\u0061\u006c\u0061\u0074\u0069n",0x03af:"\u0069o\u0074\u0061\u0074\u006f\u006e\u006fs",0x24a4:"\u0069\u0070\u0061\u0072\u0065\u006e",0x0a72:"i\u0072\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x22f9:"\u0069\u0073\u0069n\u0045",0x22f5:"\u0069s\u0069\u006e\u0064\u006f\u0074",0x22f7:"\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072",0x22f4:"\u0069\u0073\u0069n\u0073",0x22f8:"\u0069\u0073\u0069\u006e\u0076\u0062",0x3043:"\u0069\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a3:"\u0069\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff68:"\u0069\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x09fa:"\u0069\u0073\u0073\u0068\u0061\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0268:"\u0069s\u0074\u0072\u006f\u006b\u0065",0xf6ed:"\u0069s\u0075\u0070\u0065\u0072\u0069\u006fr",0x309d:"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30fd:"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0x0129:"\u0069\u0074\u0069\u006c\u0064\u0065",0x1e2d:"i\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x3129:"\u0069\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x09bf:"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x093f:"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0abf:"\u0069v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0477:"\u0069\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x006a:"\u006a",0x0571:"\u006a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x099c:"\u006aa\u0062\u0065\u006e\u0067\u0061\u006ci",0x091c:"\u006a\u0061\u0064\u0065\u0076\u0061",0x0a9c:"\u006a\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1c:"\u006a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3110:"\u006ab\u006f\u0070\u006f\u006d\u006f\u0066o",0x01f0:"\u006a\u0063\u0061\u0072\u006f\u006e",0x24d9:"\u006ac\u0069\u0072\u0063\u006c\u0065",0x0135:"j\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x029d:"\u006a\u0063\u0072o\u0073\u0073\u0065\u0064\u0074\u0061\u0069\u006c",0x022d:"\u006a\u0063\u0072\u006f\u0073\u0073\u0074\u0061\u0069\u006c",0x025f:"\u006a\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0073t\u0072\u006f\u006b\u0065",0x062c:"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9e:"\u006ae\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9f:"\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe9d:"\u006a\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfea0:"\u006a\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfca8:"\u006a\u0065\u0065\u006dwi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfb8b:"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb8a:"j\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x099d:"\u006a\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091d:"\u006ah\u0061\u0064\u0065\u0076\u0061",0x0a9d:"j\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1d:"j\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x057b:"\u006a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x3004:"\u006a\u0069\u0073",0x1d6a5:"\u006a\u006d\u0061t\u0068",0xff4a:"\u006a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x24a5:"\u006a\u0070\u0061\u0072\u0065\u006e",0x023b:"\u006a\u0073\u0075\u0070\u0065\u0072",0x02b2:"\u006as\u0075\u0070\u0065\u0072\u0069\u006fr",0x006b:"\u006b",0x04a1:"\u006b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0995:"\u006ba\u0062\u0065\u006e\u0067\u0061\u006ci",0x1e31:"\u006b\u0061\u0063\u0075\u0074\u0065",0x043a:"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x049b:"\u006b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0915:"\u006b\u0061\u0064\u0065\u0076\u0061",0x05db:"\u006b\u0061\u0066",0xfb3b:"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h",0xfeda:"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfedb:"\u006b\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfed9:"k\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfedc:"\u006ba\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb4d:"\u006b\u0061\u0066\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x0a95:"\u006b\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a15:"\u006b\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x304b:"\u006b\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x0400:"\u006b\u0061\u0068\u006f\u006f\u006b",0x04c4:"\u006b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x30ab:"\u006b\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff76:"\u006b\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x03ba:"\u006b\u0061\u0070p\u0061",0x03f0:"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",0x3171:"\u006b\u0061\u0070\u0079eo\u0075\u006e\u006d\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e",0x3184:"k\u0061\u0070\u0079\u0065ou\u006ep\u0068\u0069\u0065\u0075\u0070h\u006b\u006f\u0072\u0065\u0061\u006e",0x3178:"\u006b\u0061\u0070\u0079eo\u0075\u006e\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x3179:"\u006ba\u0070\u0079\u0065\u006f\u0075\u006e\u0073\u0073\u0061\u006e\u0067p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x330d:"\u006b\u0061\u0072\u006f\u0072\u0069\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x03d7:"\u006ba\u0072\u0074\u0064\u0065\u0073",0x0640:"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063",0x30f5:"\u006ba\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x3384:"\u006b\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0xfe7a:"\u006b\u0061\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe826:"\u006b\u0061\u0073\u0072\u0061\u006c\u006f\u0077",0xfe7b:"k\u0061\u0073\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c",0x064d:"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063",0xfe74:"\u006b\u0061s\u0072\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe827:"k\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u006c\u006f\u0077",0x049f:"\u006b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xff70:"\u006b\u0061\u0074\u0061h\u0069\u0072\u0061\u0070\u0072\u006f\u006c\u006f\u006e\u0067m\u0061r\u006b\u0068\u0061\u006c\u0066\u0077\u0069d\u0074\u0068",0x049d:"\u006ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x310e:"\u006bb\u006f\u0070\u006f\u006d\u006f\u0066o",0x3389:"\u006b\u0063\u0061\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x01e9:"\u006b\u0063\u0061\u0072\u006f\u006e",0x24da:"\u006bc\u0069\u0072\u0063\u006c\u0065",0x0137:"\u006b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e33:"\u006bd\u006f\u0074\u0062\u0065\u006c\u006fw",0x0584:"k\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x06a9:"\u006b\u0065\u0068e\u0068",0xfb8f:"\u006b\u0065\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfb90:"\u006b\u0065\u0068e\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfb8e:"\u006b\u0065\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb91:"k\u0065\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c",0x3051:"\u006b\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b1:"\u006b\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff79:"\u006b\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x056f:"k\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x223b:"\u006b\u0065\u0072\u006e\u0065\u006c\u0063\u006f\u006e\u0074\u0072\u0061c\u0074\u0069\u006f\u006e",0x30f6:"\u006be\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0138:"\u006b\u0067\u0072e\u0065\u006e\u006c\u0061\u006e\u0064\u0069\u0063",0x0996:"\u006b\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0916:"\u006bh\u0061\u0064\u0065\u0076\u0061",0x0a96:"k\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a16:"k\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfea6:"\u006bh\u0061h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfea7:"\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfea5:"\u006b\u0068\u0061h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfea8:"\u006b\u0068a\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcac:"\u006b\u0068\u0061\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0x03e7:"\u006b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x0959:"\u006b\u0068\u0068\u0061\u0064\u0065\u0076\u0061",0x0a59:"\u006b\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3278:"k\u0068i\u0065\u0075\u006b\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x3218:"\u006b\u0068\u0069\u0065uk\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x326a:"\u006b\u0068\u0069\u0065uk\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314b:"\u006b\u0068\u0069\u0065\u0075\u006b\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320a:"\u006bh\u0069e\u0075\u006b\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x0e02:"k\u0068\u006f\u006b\u0068\u0061\u0069\u0074\u0068\u0061\u0069",0x0e05:"k\u0068\u006f\u006b\u0068\u006f\u006e\u0074\u0068\u0061\u0069",0x0e03:"\u006b\u0068\u006fk\u0068\u0075\u0061\u0074\u0074\u0068\u0061\u0069",0x0e04:"\u006b\u0068\u006fk\u0068\u0077\u0061\u0069\u0074\u0068\u0061\u0069",0x0e5b:"\u006b\u0068\u006f\u006d\u0075\u0074\u0074\u0068\u0061\u0069",0x0199:"\u006b\u0068\u006fo\u006b",0x0e06:"\u006b\u0068\u006f\u0072\u0061\u006b\u0068\u0061\u006eg\u0074\u0068\u0061\u0069",0x3391:"\u006bh\u007a\u0073\u0071\u0075\u0061\u0072e",0x304d:"\u006b\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ad:"\u006b\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff77:"\u006b\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3315:"\u006b\u0069r\u006f\u0067\u0075r\u0061\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x3316:"\u006b\u0069\u0072\u006f\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073q\u0075\u0061\u0072\u0065",0x3314:"\u006b\u0069\u0072\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x326e:"\u006b\u0069\u0079\u0065ok\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x320e:"\u006bi\u0079e\u006f\u006b\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x3260:"\u006bi\u0079e\u006f\u006b\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3131:"\u006b\u0069\u0079e\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e",0x3200:"\u006b\u0069\u0079\u0065\u006f\u006b\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3133:"\u006b\u0069y\u0065\u006f\u006bs\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x1e35:"\u006b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x3398:"\u006b\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x33a6:"\u006b\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0xff4b:"\u006b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x33a2:"\u006bm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x3053:"\u006b\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x33c0:"\u006b\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x0e01:"\u006bo\u006b\u0061\u0069\u0074\u0068\u0061i",0x30b3:"\u006b\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7a:"\u006b\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x331e:"k\u006f\u006f\u0070\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x0481:"\u006b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x327f:"k\u006fr\u0065\u0061\u006e\u0073\u0074\u0061\u006e\u0064a\u0072\u0064\u0073\u0079mb\u006f\u006c",0x0343:"\u006b\u006f\u0072\u006f\u006e\u0069\u0073\u0063\u006d\u0062",0x24a6:"\u006b\u0070\u0061\u0072\u0065\u006e",0x33aa:"\u006bp\u0061\u0073\u0071\u0075\u0061\u0072e",0x046f:"k\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x33cf:"\u006b\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x022e:"\u006b\u0074\u0075r\u006e",0x029e:"\u006bt\u0075\u0072\u006e\u0065\u0064",0x304f:"\u006b\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30af:"\u006b\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff78:"\u006b\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x33b8:"\u006b\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x33be:"\u006b\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x006c:"\u006c",0x27ea:"\u006c\u0041\u006e\u0067\u006c\u0065",0x2983:"\u006c\u0042\u0072\u0061\u0063\u0065",0x2985:"\u006c\u0050\u0061\u0072\u0065\u006e",0x09b2:"\u006ca\u0062\u0065\u006e\u0067\u0061\u006ci",0x013a:"\u006c\u0061\u0063\u0075\u0074\u0065",0x0932:"\u006c\u0061\u0064\u0065\u0076\u0061",0x0ab2:"\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a32:"\u006c\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0e45:"\u006ca\u006bk\u0068\u0061\u006e\u0067\u0079\u0061\u006f\u0074\u0068\u0061\u0069",0xfefc:"\u006ca\u006da\u006c\u0065\u0066\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfef8:"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063",0xfef7:"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0xfefa:"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006co\u0077f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063",0xfef9:"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0062\u0065\u006c\u006fw\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0xfefb:"l\u0061\u006d\u0061\u006cef\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfef6:"\u006c\u0061\u006d\u0061l\u0065\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063",0xfef5:"\u006c\u0061\u006da\u006c\u0065\u0066\u006da\u0064\u0064\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0x03bb:"\u006c\u0061\u006d\u0062\u0064\u0061",0x019b:"\u006c\u0061\u006db\u0064\u0061\u0073\u0074\u0072\u006f\u006b\u0065",0xfb3c:"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068",0x05dc:"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",0xe805:"\u006c\u0061\u006ded\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068\u0061\u006e\u0064\u0068\u006f\u006c\u0061\u006d",0xe804:"\u006c\u0061\u006d\u0065\u0064\u0077\u0069\u0074\u0068h\u006f\u006c\u0061\u006d",0xfede:"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfcca:"\u006c\u0061\u006d\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfedf:"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfedd:"l\u0061\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfcc9:"l\u0061m\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfccb:"l\u0061m\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfdf2:"\u006c\u0061\u006dla\u006d\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0xfee0:"\u006ca\u006dm\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfd88:"\u006c\u0061\u006dme\u0065\u006d\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfccc:"l\u0061m\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc43:"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfc40:"\u006ca\u006dw\u0069\u0074\u0068\u0068\u0061h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0xfccd:"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfc3f:"\u006c\u0061\u006d\u0077it\u0068\u006a\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfc41:"\u006c\u0061\u006d\u0077it\u0068\u006b\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfc42:"\u006c\u0061\u006d\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe811:"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u006d\u0065\u0065\u006dw\u0069\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069t\u0069\u0061\u006c",0xfc44:"\u006ca\u006dw\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x2991:"\u006ca\u006e\u0067\u006c\u0065\u0064\u006ft",0x29e0:"\u006c\u0061\u0070\u006c\u0061\u0063",0x25ef:"l\u0061\u0072\u0067\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x2aab:"\u006c\u0061\u0074",0x2aad:"\u006c\u0061\u0074\u0065",0x27c5:"\u006c\u0062\u0061\u0067",0x019a:"\u006c\u0062\u0061\u0072",0x2114:"\u006c\u0062\u0062a\u0072",0x026c:"\u006c\u0062\u0065l\u0074",0x2997:"\u006c\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b",0x310c:"\u006cb\u006f\u0070\u006f\u006d\u006f\u0066o",0x23a9:"\u006c\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064",0x23a8:"\u006cb\u0072\u0061\u0063\u0065\u006d\u0069d",0x23a7:"\u006c\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064",0x23a2:"\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x23a3:"\u006c\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064",0x298f:"\u006c\u0062\u0072a\u0063\u006b\u006c\u006c\u0074\u0069\u0063\u006b",0x298b:"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072",0x23a1:"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064",0x298d:"\u006c\u0062\u0072a\u0063\u006b\u0075\u006c\u0074\u0069\u0063\u006b",0x2772:"\u006cb\u0072\u0062\u0072\u0061\u006b",0x013e:"\u006c\u0063\u0061\u0072\u006f\u006e",0xf813:"\u006cc\u0061\u0072\u006f\u006e\u0031",0x24db:"\u006cc\u0069\u0072\u0063\u006c\u0065",0x1e3d:"\u006c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x013c:"\u006c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x29fc:"l\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065",0x0140:"\u006c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e37:"\u006cd\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e39:"\u006cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x031a:"\u006c\u0065\u0066\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0062\u006fv\u0065\u0063\u006d\u0062",0x2b4a:"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078",0x2b42:"\u006c\u0065\u0066\u0074ar\u0072\u006f\u0077\u0062\u0061\u0063\u006b\u0061\u0070\u0070\u0072\u006f\u0078",0x2b4b:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0073\u0069m\u0069\u006c\u0061\u0072",0x2977:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0073\u0073",0x2b32:"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u006f\u006e\u006f\u0070\u006c\u0075\u0073",0x2946:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0070\u006c\u0075\u0073",0x2943:"\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006f\u0072t\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2973:"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u0073\u0069\u006d\u0069\u006c\u0061\u0072",0x297a:"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0073\u0075\u0062\u0073\u0065\u0074",0x21fd:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069a\u006e\u0067\u006c\u0065",0x2b3e:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0078",0x290c:"l\u0065\u0066\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x2b3f:"\u006ce\u0066t\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077",0x290e:"\u006c\u0065\u0066t\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x291b:"l\u0065\u0066\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c",0x2b38:"\u006c\u0065\u0066t\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077",0x2936:"\u006c\u0065\u0066\u0074do\u0077\u006e\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077",0x297c:"\u006c\u0065\u0066t\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x20d0:"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0061c\u0063\u0065\u006e\u0074",0x295e:"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0064o\u0077\u006e\u0062\u0061\u0072",0x2962:"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073u\u0070\u0064\u006f\u0077\u006e",0x295a:"\u006c\u0065f\u0074\u0068\u0061r\u0070\u006f\u006f\u006e\u0075\u0070\u0062\u0061\u0072",0x296a:"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075p\u0064\u0061\u0073\u0068",0x21c7:"\u006c\u0065\u0066\u0074\u006c\u0065\u0066\u0074\u0061r\u0072\u006f\u0077\u0073",0x263e:"\u006c\u0065\u0066\u0074\u006d\u006f\u006f\u006e",0x27d5:"\u006c\u0065\u0066\u0074\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e",0x2948:"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065",0x21ff:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069\u0061\u006e\u0067l\u0065",0x2950:"\u006ce\u0066\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e\u0064\u006f\u0077\u006e",0x294b:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006eu\u0070",0x2967:"l\u0065\u0066\u0074\u0072ig\u0068t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e",0x2966:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070",0x294a:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u0064\u006fw\u006e",0x294e:"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006eup\u0075\u0070",0x21dc:"\u006c\u0065\u0066\u0074\u0073\u0071\u0075\u0069\u0067a\u0072\u0072\u006f\u0077",0x0318:"\u006c\u0065f\u0074\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x2919:"\u006c\u0065\u0066\u0074\u0074\u0061\u0069\u006c",0x2b31:"\u006ce\u0066t\u0074\u0068\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073",0x219c:"\u006c\u0065\u0066\u0074\u0077\u0061\u0076\u0065\u0061\u0072\u0072\u006f\u0077",0x2af9:"\u006ce\u0071\u0071\u0073\u006c\u0061\u006et",0x2aa8:"\u006c\u0065\u0073c\u0063",0x2a7f:"\u006c\u0065\u0073\u0064\u006f\u0074",0x2a81:"\u006ce\u0073\u0064\u006f\u0074\u006f",0x2a83:"\u006c\u0065\u0073\u0064\u006f\u0074\u006f\u0072",0x2a93:"\u006c\u0065\u0073\u0067\u0065\u0073",0x003c:"\u006c\u0065\u0073\u0073",0x2a8b:"\u006c\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u006c\u0067\u0072e\u0061\u0074\u0065\u0072",0x22d6:"\u006ce\u0073\u0073\u0064\u006f\u0074",0x2264:"\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l",0x22da:"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072",0xff1c:"\u006c\u0065\u0073\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a89:"\u006ce\u0073s\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",0x2a87:"\u006c\u0065\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2a85:"\u006ce\u0073s\u006f\u0072\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u006c",0x2a7d:"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074",0x2272:"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074",0x2276:"\u006c\u0065\u0073\u0073\u006f\u0072\u0067\u0072\u0065\u0061\u0074\u0065\u0072",0x2268:"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",0x2266:"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c",0xfe64:"\u006ce\u0073\u0073\u0073\u006d\u0061\u006cl",0x026e:"\u006c\u0065\u007a\u0068",0x258c:"\u006cf\u0062\u006c\u006f\u0063\u006b",0x29d1:"\u006c\u0066\u0062\u006f\u0077\u0074\u0069\u0065",0x258f:"\u006c\u0066\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b",0x258b:"\u006c\u0066\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b",0x258e:"\u006c\u0066\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b",0x2589:"\u006cf\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x258d:"\u006cf\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x258a:"\u006c\u0066\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b",0x29d4:"\u006cf\u0074\u0069\u006d\u0065\u0073",0x2a91:"\u006c\u0067\u0045",0x2b24:"l\u0067\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",0x2b1b:"l\u0067\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x2b1c:"l\u0067\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x026d:"\u006c\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078",0x21b4:"\u006c\u0069\u006e\u0065\u0066\u0065\u0065\u0064",0x2028:"\u006c\u0069\u006e\u0065\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",0x0280:"\u006c\u0069\u006ee\u0076\u0065\u0072\u0074\u006e\u006f\u0073\u0070",0x029c:"\u006ci\u006ee\u0076\u0065\u0072\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x20a4:"\u006c\u0069\u0072\u0061",0x056c:"\u006c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01c9:"\u006c\u006a",0x0459:"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf6c0:"\u006c\u006c",0x0933:"\u006cl\u0061\u0064\u0065\u0076\u0061",0x0ab3:"l\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x2989:"\u006cl\u0061\u006e\u0067\u006c\u0065",0x25df:"\u006c\u006c\u0061r\u0063",0x1e3b:"\u006c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x22d8:"\u006c\u006c\u006c",0x0934:"\u006c\u006c\u006c\u0061\u0064\u0065\u0076\u0061",0x2af7:"\u006cl\u006c\u006e\u0065\u0073\u0074",0x2987:"\u006c\u006c\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073",0x25fa:"\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x09e1:"\u006c\u006cv\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0961:"\u006c\u006c\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x09e3:"\u006cl\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci",0x0963:"\u006c\u006c\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061",0x026b:"\u006c\u006d\u0069d\u0064\u006c\u0065\u0074\u0069\u006c\u0064\u0065",0xff4c:"\u006c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x23b0:"\u006c\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065",0x33d0:"\u006c\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x22e6:"\u006c\u006e\u0073i\u006d",0x0e2c:"l\u006f\u0063\u0068\u0075\u006c\u0061\u0074\u0068\u0061\u0069",0x2227:"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064",0x00ac:"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074",0x2228:"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr",0xf830:"\u006co\u0067\u006f\u006e\u0065\u006b",0x0e25:"\u006c\u006f\u006c\u0069\u006e\u0067\u0074\u0068\u0061\u0069",0x27de:"\u006co\u006e\u0067\u0064\u0061\u0073\u0068v",0x27cc:"\u006c\u006f\u006eg\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e",0x27f5:"\u006c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x27f7:"\u006co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x2b33:"\u006co\u006eg\u006c\u0065\u0066\u0074\u0073q\u0075\u0069g\u0061\u0072\u0072\u006f\u0077",0x27fb:"\u006c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x27fc:"\u006c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f",0x27f6:"\u006c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",0x27ff:"\u006c\u006f\u006e\u0067ri\u0067\u0068\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077",0x017f:"\u006c\u006f\u006eg\u0073",0xfb05:"\u006c\u006f\u006e\u0067\u0073\u0074",0x024e:"\u006co\u0077\u0065\u0072\u0065\u0064",0x2a1c:"\u006c\u006f\u0077\u0069\u006e\u0074",0xfe4e:"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u0065\u006e\u0074\u0065r\u006c\u0069\u006e\u0065",0x0332:"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062",0xfe4d:"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0064\u0061\u0073\u0068\u0065\u0064",0x25ca:"\u006co\u007a\u0065\u006e\u0067\u0065",0x27e0:"\u006c\u006f\u007ae\u006e\u0067\u0065\u006d\u0069\u006e\u0075\u0073",0x24a7:"\u006c\u0070\u0061\u0072\u0065\u006e",0x239c:"\u006c\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x239d:"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064",0x2993:"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073",0x239b:"\u006c\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064",0x25de:"\u006c\u0072\u0061r\u0063",0x202a:"\u006c\u0072\u0065",0x25ff:"\u006c\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x29e1:"\u006c\u0072\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0065\u0071",0x2a8d:"\u006c\u0073\u0069m\u0065",0x2a8f:"\u006c\u0073\u0069m\u0067",0x0142:"\u006c\u0073\u006c\u0061\u0073\u0068",0x2acd:"\u006cs\u0071\u0068\u006f\u006f\u006b",0x026a:"\u006c\u0073\u0075\u0070\u0065\u0072",0xf6ee:"\u006cs\u0075\u0070\u0065\u0072\u0069\u006fr",0x2aa6:"\u006c\u0074\u0063\u0063",0x2a79:"\u006c\u0074\u0063i\u0072",0x2976:"\u006c\u0074\u006c\u0061\u0072\u0072",0x2a7b:"\u006ct\u0071\u0075\u0065\u0073\u0074",0x29cf:"\u006c\u0074\u0072\u0069\u0076\u0062",0xf821:"\u006c\u0074\u0073\u0068\u0061\u0064\u0065\u0031",0x0e26:"\u006c\u0075\u0074\u0068\u0061\u0069",0x23b8:"\u006cv\u0062\u006f\u0078\u006c\u0069\u006ee",0x098c:"\u006cv\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x090c:"\u006c\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x09e2:"\u006cv\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0962:"l\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061",0x29d8:"\u006c\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x33d3:"\u006c\u0078\u0073\u0071\u0075\u0061\u0072\u0065",0x006d:"\u006d",0x09ae:"\u006da\u0062\u0065\u006e\u0067\u0061\u006ci",0x00af:"\u006d\u0061\u0063\u0072\u006f\u006e",0x0331:"\u006d\u0061\u0063\u0072\u006f\u006e\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x0304:"\u006da\u0063\u0072\u006f\u006e\u0063\u006db",0x02cd:"\u006d\u0061\u0063r\u006f\u006e\u006c\u006f\u0077\u006d\u006f\u0064",0xffe3:"\u006da\u0063r\u006f\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x1e3f:"\u006d\u0061\u0063\u0075\u0074\u0065",0x092e:"\u006d\u0061\u0064\u0065\u0076\u0061",0x0aae:"\u006d\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2e:"\u006d\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x05a4:"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077",0x307e:"\u006d\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xf895:"\u006d\u0061\u0069\u0063ha\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069",0xf894:"\u006d\u0061\u0069ch\u0061\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069",0x0e4b:"\u006da\u0069c\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0074\u0068\u0061\u0069",0xf893:"\u006da\u0069\u0063\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0xf88c:"\u006d\u0061i\u0065\u006b\u006co\u0077\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0xf88b:"\u006d\u0061\u0069\u0065\u006b\u006c\u006f\u0077\u0072\u0069\u0067\u0068t\u0074\u0068\u0061\u0069",0x0e48:"\u006da\u0069\u0065\u006b\u0074\u0068\u0061i",0xf88a:"\u006da\u0069e\u006b\u0075\u0070\u0070\u0065r\u006c\u0065f\u0074\u0074\u0068\u0061\u0069",0xf884:"\u006da\u0069h\u0061\u006e\u0061\u006b\u0061t\u006c\u0065f\u0074\u0074\u0068\u0061\u0069",0x0e31:"\u006d\u0061\u0069\u0068\u0061\u006e\u0061\u006b\u0061t\u0074\u0068\u0061\u0069",0xf889:"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0x0e47:"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u0074\u0068\u0061\u0069",0xf88f:"\u006d\u0061\u0069\u0074\u0068\u006f\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0xf88e:"\u006da\u0069t\u0068\u006f\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069",0x0e49:"\u006d\u0061\u0069\u0074\u0068\u006f\u0074\u0068\u0061\u0069",0xf88d:"\u006d\u0061\u0069\u0074ho\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0xf892:"\u006d\u0061\u0069\u0074\u0072\u0069\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0xf891:"\u006da\u0069t\u0072\u0069\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069",0x0e4a:"\u006d\u0061\u0069\u0074\u0072\u0069\u0074\u0068\u0061\u0069",0xf890:"\u006d\u0061\u0069\u0074ri\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e46:"\u006d\u0061\u0069y\u0061\u006d\u006f\u006b\u0074\u0068\u0061\u0069",0x30de:"\u006d\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8f:"\u006d\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3347:"\u006d\u0061\u006e\u0073\u0079\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065",0x21a7:"\u006d\u0061\u0070\u0073\u0064\u006f\u0077\u006e",0x21a4:"\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x21a6:"\u006d\u0061\u0070\u0073\u0074\u006f",0x21a5:"\u006d\u0061\u0070\u0073\u0075\u0070",0x2642:"\u006d\u0061\u0072\u0073",0x05af:"\u006da\u0073o\u0072\u0061\u0063\u0069\u0072c\u006c\u0065h\u0065\u0062\u0072\u0065\u0077",0x3383:"\u006d\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x1d400:"\u006d\u0062\u0066\u0041",0x1d6a8:"\u006d\u0062\u0066\u0041\u006c\u0070\u0068\u0061",0x1d401:"\u006d\u0062\u0066\u0042",0x1d6a9:"\u006db\u0066\u0042\u0065\u0074\u0061",0x1d402:"\u006d\u0062\u0066\u0043",0x1d6be:"\u006d\u0062\u0066\u0043\u0068\u0069",0x1d403:"\u006d\u0062\u0066\u0044",0x1d6ab:"\u006d\u0062\u0066\u0044\u0065\u006c\u0074\u0061",0x1d7ca:"\u006d\u0062\u0066\u0044\u0069\u0067\u0061\u006d\u006d\u0061",0x1d404:"\u006d\u0062\u0066\u0045",0x1d6ac:"\u006d\u0062\u0066\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6ae:"\u006d\u0062\u0066\u0045\u0074\u0061",0x1d405:"\u006d\u0062\u0066\u0046",0x1d406:"\u006d\u0062\u0066\u0047",0x1d6aa:"\u006d\u0062\u0066\u0047\u0061\u006d\u006d\u0061",0x1d407:"\u006d\u0062\u0066\u0048",0x1d408:"\u006d\u0062\u0066\u0049",0x1d6b0:"\u006db\u0066\u0049\u006f\u0074\u0061",0x1d409:"\u006d\u0062\u0066\u004a",0x1d40a:"\u006d\u0062\u0066\u004b",0x1d6b1:"\u006d\u0062\u0066\u004b\u0061\u0070\u0070\u0061",0x1d40b:"\u006d\u0062\u0066\u004c",0x1d6b2:"\u006db\u0066\u004c\u0061\u006d\u0062\u0064a",0x1d40c:"\u006d\u0062\u0066\u004d",0x1d6b3:"\u006d\u0062\u0066M\u0075",0x1d40d:"\u006d\u0062\u0066\u004e",0x1d6b4:"\u006d\u0062\u0066N\u0075",0x1d40e:"\u006d\u0062\u0066\u004f",0x1d6c0:"\u006d\u0062\u0066\u004f\u006d\u0065\u0067\u0061",0x1d6b6:"\u006d\u0062\u0066\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d40f:"\u006d\u0062\u0066\u0050",0x1d6bd:"\u006d\u0062\u0066\u0050\u0068\u0069",0x1d6b7:"\u006d\u0062\u0066P\u0069",0x1d6bf:"\u006d\u0062\u0066\u0050\u0073\u0069",0x1d410:"\u006d\u0062\u0066\u0051",0x1d411:"\u006d\u0062\u0066\u0052",0x1d6b8:"\u006d\u0062\u0066\u0052\u0068\u006f",0x1d412:"\u006d\u0062\u0066\u0053",0x1d6ba:"\u006d\u0062\u0066\u0053\u0069\u0067\u006d\u0061",0x1d413:"\u006d\u0062\u0066\u0054",0x1d6bb:"\u006d\u0062\u0066\u0054\u0061\u0075",0x1d6af:"\u006d\u0062\u0066\u0054\u0068\u0065\u0074\u0061",0x1d414:"\u006d\u0062\u0066\u0055",0x1d6bc:"\u006d\u0062\u0066\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d415:"\u006d\u0062\u0066\u0056",0x1d416:"\u006d\u0062\u0066\u0057",0x1d417:"\u006d\u0062\u0066\u0058",0x1d6b5:"\u006d\u0062\u0066X\u0069",0x1d418:"\u006d\u0062\u0066\u0059",0x1d419:"\u006d\u0062\u0066\u005a",0x1d6ad:"\u006db\u0066\u005a\u0065\u0074\u0061",0x1d41a:"\u006d\u0062\u0066\u0061",0x1d6c2:"\u006d\u0062\u0066\u0061\u006c\u0070\u0068\u0061",0x1d41b:"\u006d\u0062\u0066\u0062",0x1d6c3:"\u006db\u0066\u0062\u0065\u0074\u0061",0x1d41c:"\u006d\u0062\u0066\u0063",0x1d6d8:"\u006d\u0062\u0066\u0063\u0068\u0069",0x1d41d:"\u006d\u0062\u0066\u0064",0x1d6c5:"\u006d\u0062\u0066\u0064\u0065\u006c\u0074\u0061",0x1d41e:"\u006d\u0062\u0066\u0065",0x1d6c6:"\u006d\u0062\u0066\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6c8:"\u006d\u0062\u0066\u0065\u0074\u0061",0x1d41f:"\u006d\u0062\u0066\u0066",0x1d56c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0041",0x1d56d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0042",0x1d56e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0043",0x1d56f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0044",0x1d570:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0045",0x1d571:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0046",0x1d572:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0047",0x1d573:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0048",0x1d574:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0049",0x1d575:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004a",0x1d576:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004b",0x1d577:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004c",0x1d578:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004d",0x1d579:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004e",0x1d57a:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004f",0x1d57b:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0050",0x1d57c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0051",0x1d57d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0052",0x1d57e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0053",0x1d57f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0054",0x1d580:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0055",0x1d581:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0056",0x1d582:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0057",0x1d583:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0058",0x1d584:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0059",0x1d585:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u005a",0x1d586:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0061",0x1d587:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0062",0x1d588:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0063",0x1d589:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0064",0x1d58a:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0065",0x1d58b:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0066",0x1d58c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0067",0x1d58d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0068",0x1d58e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0069",0x1d58f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006a",0x1d590:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006b",0x1d591:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006c",0x1d592:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006d",0x1d593:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006e",0x1d594:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006f",0x1d595:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0070",0x1d596:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0071",0x1d597:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0072",0x1d598:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0073",0x1d599:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0074",0x1d59a:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0075",0x1d59b:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0076",0x1d59c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0077",0x1d59d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0078",0x1d59e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0079",0x1d59f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u007a",0x1d420:"\u006d\u0062\u0066\u0067",0x1d6c4:"\u006d\u0062\u0066\u0067\u0061\u006d\u006d\u0061",0x1d421:"\u006d\u0062\u0066\u0068",0x1d422:"\u006d\u0062\u0066\u0069",0x1d6ca:"\u006db\u0066\u0069\u006f\u0074\u0061",0x1d468:"\u006d\u0062\u0066\u0069\u0074\u0041",0x1d71c:"\u006d\u0062\u0066\u0069\u0074\u0041\u006c\u0070\u0068\u0061",0x1d469:"\u006d\u0062\u0066\u0069\u0074\u0042",0x1d71d:"\u006db\u0066\u0069\u0074\u0042\u0065\u0074a",0x1d46a:"\u006d\u0062\u0066\u0069\u0074\u0043",0x1d732:"\u006d\u0062\u0066\u0069\u0074\u0043\u0068\u0069",0x1d46b:"\u006d\u0062\u0066\u0069\u0074\u0044",0x1d71f:"\u006d\u0062\u0066\u0069\u0074\u0044\u0065\u006c\u0074\u0061",0x1d46c:"\u006d\u0062\u0066\u0069\u0074\u0045",0x1d720:"\u006d\u0062\u0066i\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d722:"\u006d\u0062\u0066\u0069\u0074\u0045\u0074\u0061",0x1d46d:"\u006d\u0062\u0066\u0069\u0074\u0046",0x1d46e:"\u006d\u0062\u0066\u0069\u0074\u0047",0x1d71e:"\u006d\u0062\u0066\u0069\u0074\u0047\u0061\u006d\u006d\u0061",0x1d46f:"\u006d\u0062\u0066\u0069\u0074\u0048",0x1d470:"\u006d\u0062\u0066\u0069\u0074\u0049",0x1d724:"\u006db\u0066\u0069\u0074\u0049\u006f\u0074a",0x1d471:"\u006d\u0062\u0066\u0069\u0074\u004a",0x1d472:"\u006d\u0062\u0066\u0069\u0074\u004b",0x1d725:"\u006d\u0062\u0066\u0069\u0074\u004b\u0061\u0070\u0070\u0061",0x1d473:"\u006d\u0062\u0066\u0069\u0074\u004c",0x1d726:"m\u0062\u0066\u0069\u0074\u004c\u0061\u006d\u0062\u0064\u0061",0x1d474:"\u006d\u0062\u0066\u0069\u0074\u004d",0x1d727:"\u006db\u0066\u0069\u0074\u004d\u0075",0x1d475:"\u006d\u0062\u0066\u0069\u0074\u004e",0x1d728:"\u006db\u0066\u0069\u0074\u004e\u0075",0x1d476:"\u006d\u0062\u0066\u0069\u0074\u004f",0x1d734:"\u006d\u0062\u0066\u0069\u0074\u004f\u006d\u0065\u0067\u0061",0x1d72a:"\u006d\u0062\u0066i\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d477:"\u006d\u0062\u0066\u0069\u0074\u0050",0x1d731:"\u006d\u0062\u0066\u0069\u0074\u0050\u0068\u0069",0x1d72b:"\u006db\u0066\u0069\u0074\u0050\u0069",0x1d733:"\u006d\u0062\u0066\u0069\u0074\u0050\u0073\u0069",0x1d478:"\u006d\u0062\u0066\u0069\u0074\u0051",0x1d479:"\u006d\u0062\u0066\u0069\u0074\u0052",0x1d72c:"\u006d\u0062\u0066\u0069\u0074\u0052\u0068\u006f",0x1d47a:"\u006d\u0062\u0066\u0069\u0074\u0053",0x1d72e:"\u006d\u0062\u0066\u0069\u0074\u0053\u0069\u0067\u006d\u0061",0x1d47b:"\u006d\u0062\u0066\u0069\u0074\u0054",0x1d72f:"\u006d\u0062\u0066\u0069\u0074\u0054\u0061\u0075",0x1d723:"\u006d\u0062\u0066\u0069\u0074\u0054\u0068\u0065\u0074\u0061",0x1d47c:"\u006d\u0062\u0066\u0069\u0074\u0055",0x1d730:"\u006d\u0062\u0066i\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d47d:"\u006d\u0062\u0066\u0069\u0074\u0056",0x1d47e:"\u006d\u0062\u0066\u0069\u0074\u0057",0x1d47f:"\u006d\u0062\u0066\u0069\u0074\u0058",0x1d729:"\u006db\u0066\u0069\u0074\u0058\u0069",0x1d480:"\u006d\u0062\u0066\u0069\u0074\u0059",0x1d481:"\u006d\u0062\u0066\u0069\u0074\u005a",0x1d721:"\u006db\u0066\u0069\u0074\u005a\u0065\u0074a",0x1d482:"\u006d\u0062\u0066\u0069\u0074\u0061",0x1d736:"\u006d\u0062\u0066\u0069\u0074\u0061\u006c\u0070\u0068\u0061",0x1d483:"\u006d\u0062\u0066\u0069\u0074\u0062",0x1d737:"\u006db\u0066\u0069\u0074\u0062\u0065\u0074a",0x1d484:"\u006d\u0062\u0066\u0069\u0074\u0063",0x1d74c:"\u006d\u0062\u0066\u0069\u0074\u0063\u0068\u0069",0x1d485:"\u006d\u0062\u0066\u0069\u0074\u0064",0x1d739:"\u006d\u0062\u0066\u0069\u0074\u0064\u0065\u006c\u0074\u0061",0x1d486:"\u006d\u0062\u0066\u0069\u0074\u0065",0x1d73a:"\u006d\u0062\u0066i\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d73c:"\u006d\u0062\u0066\u0069\u0074\u0065\u0074\u0061",0x1d487:"\u006d\u0062\u0066\u0069\u0074\u0066",0x1d488:"\u006d\u0062\u0066\u0069\u0074\u0067",0x1d738:"\u006d\u0062\u0066\u0069\u0074\u0067\u0061\u006d\u006d\u0061",0x1d489:"\u006d\u0062\u0066\u0069\u0074\u0068",0x1d48a:"\u006d\u0062\u0066\u0069\u0074\u0069",0x1d73e:"\u006db\u0066\u0069\u0074\u0069\u006f\u0074a",0x1d48b:"\u006d\u0062\u0066\u0069\u0074\u006a",0x1d48c:"\u006d\u0062\u0066\u0069\u0074\u006b",0x1d73f:"\u006d\u0062\u0066\u0069\u0074\u006b\u0061\u0070\u0070\u0061",0x1d48d:"\u006d\u0062\u0066\u0069\u0074\u006c",0x1d740:"m\u0062\u0066\u0069\u0074\u006c\u0061\u006d\u0062\u0064\u0061",0x1d48e:"\u006d\u0062\u0066\u0069\u0074\u006d",0x1d741:"\u006db\u0066\u0069\u0074\u006d\u0075",0x1d48f:"\u006d\u0062\u0066\u0069\u0074\u006e",0x1d735:"\u006d\u0062\u0066\u0069\u0074\u006e\u0061\u0062\u006c\u0061",0x1d742:"\u006db\u0066\u0069\u0074\u006e\u0075",0x1d490:"\u006d\u0062\u0066\u0069\u0074\u006f",0x1d74e:"\u006d\u0062\u0066\u0069\u0074\u006f\u006d\u0065\u0067\u0061",0x1d744:"\u006d\u0062\u0066i\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d491:"\u006d\u0062\u0066\u0069\u0074\u0070",0x1d74f:"\u006d\u0062\u0066i\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d74b:"\u006d\u0062\u0066\u0069\u0074\u0070\u0068\u0069",0x1d745:"\u006db\u0066\u0069\u0074\u0070\u0069",0x1d74d:"\u006d\u0062\u0066\u0069\u0074\u0070\u0073\u0069",0x1d492:"\u006d\u0062\u0066\u0069\u0074\u0071",0x1d493:"\u006d\u0062\u0066\u0069\u0074\u0072",0x1d746:"\u006d\u0062\u0066\u0069\u0074\u0072\u0068\u006f",0x1d494:"\u006d\u0062\u0066\u0069\u0074\u0073",0x1d63c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0041",0x1d790:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073A\u006c\u0070\u0068\u0061",0x1d63d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042",0x1d791:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061",0x1d63e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0043",0x1d7a6:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0043\u0068\u0069",0x1d63f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0044",0x1d793:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073D\u0065\u006c\u0074\u0061",0x1d640:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0045",0x1d794:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d796:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0045\u0074\u0061",0x1d641:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0046",0x1d642:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0047",0x1d792:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073G\u0061\u006d\u006d\u0061",0x1d643:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0048",0x1d644:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049",0x1d798:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061",0x1d645:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004a",0x1d646:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004b",0x1d799:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073K\u0061\u0070\u0070\u0061",0x1d647:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004c",0x1d79a:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061",0x1d648:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d",0x1d79b:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d\u0075",0x1d649:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e",0x1d79c:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e\u0075",0x1d64a:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004f",0x1d7a8:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073O\u006d\u0065\u0067\u0061",0x1d79e:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d64b:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050",0x1d7a5:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0068\u0069",0x1d79f:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050\u0069",0x1d7a7:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0073\u0069",0x1d64c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0051",0x1d64d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0052",0x1d7a0:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0052\u0068\u006f",0x1d64e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0053",0x1d7a2:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073S\u0069\u0067\u006d\u0061",0x1d64f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0054",0x1d7a3:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0054\u0061\u0075",0x1d797:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073T\u0068\u0065\u0074\u0061",0x1d650:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0055",0x1d7a4:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d651:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0056",0x1d652:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0057",0x1d653:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058",0x1d79d:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058\u0069",0x1d654:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0059",0x1d655:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a",0x1d795:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061",0x1d656:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0061",0x1d7aa:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073a\u006c\u0070\u0068\u0061",0x1d657:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062",0x1d7ab:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061",0x1d658:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0063",0x1d7c0:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0063\u0068\u0069",0x1d659:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0064",0x1d7ad:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073d\u0065\u006c\u0074\u0061",0x1d65a:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0065",0x1d7ae:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d7b0:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0065\u0074\u0061",0x1d65b:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0066",0x1d65c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0067",0x1d7ac:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073g\u0061\u006d\u006d\u0061",0x1d65d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0068",0x1d65e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069",0x1d7b2:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061",0x1d65f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006a",0x1d660:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006b",0x1d7b3:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073k\u0061\u0070\u0070\u0061",0x1d661:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006c",0x1d7b4:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061",0x1d662:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d",0x1d7b5:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d\u0075",0x1d663:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e",0x1d7a9:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073n\u0061\u0062\u006c\u0061",0x1d7b6:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e\u0075",0x1d664:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006f",0x1d7c2:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073o\u006d\u0065\u0067\u0061",0x1d7b8:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d665:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070",0x1d7c3:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d7bf:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0068\u0069",0x1d7b9:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070\u0069",0x1d7c1:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0073\u0069",0x1d666:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0071",0x1d667:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0072",0x1d7ba:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0072\u0068\u006f",0x1d668:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0073",0x1d7bc:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073s\u0069\u0067\u006d\u0061",0x1d669:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0074",0x1d7bd:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0074\u0061\u0075",0x1d7b1:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073t\u0068\u0065\u0074\u0061",0x1d66a:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0075",0x1d7be:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d66b:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076",0x1d7a1:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072T\u0068\u0065\u0074\u0061",0x1d7c4:"\u006d\u0062\u0066\u0069ts\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d7c6:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072k\u0061\u0070\u0070\u0061",0x1d7c7:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069",0x1d7c9:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073v\u0061\u0072\u0070\u0069",0x1d7c8:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f",0x1d7bb:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072s\u0069\u0067\u006d\u0061",0x1d7c5:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072t\u0068\u0065\u0074\u0061",0x1d66c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0077",0x1d66d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078",0x1d7b7:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078\u0069",0x1d66e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0079",0x1d66f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a",0x1d7af:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061",0x1d748:"\u006d\u0062\u0066\u0069\u0074\u0073\u0069\u0067\u006d\u0061",0x1d495:"\u006d\u0062\u0066\u0069\u0074\u0074",0x1d749:"\u006d\u0062\u0066\u0069\u0074\u0074\u0061\u0075",0x1d73d:"\u006d\u0062\u0066\u0069\u0074\u0074\u0068\u0065\u0074\u0061",0x1d496:"\u006d\u0062\u0066\u0069\u0074\u0075",0x1d74a:"\u006d\u0062\u0066i\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d497:"\u006d\u0062\u0066\u0069\u0074\u0076",0x1d72d:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d750:"\u006db\u0066i\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d752:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d753:"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0068\u0069",0x1d755:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0069",0x1d754:"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0072\u0068\u006f",0x1d747:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d751:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d498:"\u006d\u0062\u0066\u0069\u0074\u0077",0x1d499:"\u006d\u0062\u0066\u0069\u0074\u0078",0x1d743:"\u006db\u0066\u0069\u0074\u0078\u0069",0x1d49a:"\u006d\u0062\u0066\u0069\u0074\u0079",0x1d49b:"\u006d\u0062\u0066\u0069\u0074\u007a",0x1d73b:"\u006db\u0066\u0069\u0074\u007a\u0065\u0074a",0x1d423:"\u006d\u0062\u0066\u006a",0x1d424:"\u006d\u0062\u0066\u006b",0x1d6cb:"\u006d\u0062\u0066\u006b\u0061\u0070\u0070\u0061",0x1d425:"\u006d\u0062\u0066\u006c",0x1d6cc:"\u006db\u0066\u006c\u0061\u006d\u0062\u0064a",0x1d426:"\u006d\u0062\u0066\u006d",0x1d6cd:"\u006d\u0062\u0066m\u0075",0x1d427:"\u006d\u0062\u0066\u006e",0x1d6c1:"\u006d\u0062\u0066\u006e\u0061\u0062\u006c\u0061",0x1d6ce:"\u006d\u0062\u0066n\u0075",0x1d428:"\u006d\u0062\u0066\u006f",0x1d6da:"\u006d\u0062\u0066\u006f\u006d\u0065\u0067\u0061",0x1d6d0:"\u006d\u0062\u0066\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d429:"\u006d\u0062\u0066\u0070",0x1d6db:"\u006d\u0062\u0066\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d6df:"\u006d\u0062\u0066\u0070\u0068\u0069",0x1d6d1:"\u006d\u0062\u0066p\u0069",0x1d6d9:"\u006d\u0062\u0066\u0070\u0073\u0069",0x1d42a:"\u006d\u0062\u0066\u0071",0x1d42b:"\u006d\u0062\u0066\u0072",0x1d6d2:"\u006d\u0062\u0066\u0072\u0068\u006f",0x1d42c:"\u006d\u0062\u0066\u0073",0x1d5d4:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0041",0x1d756:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0041\u006c\u0070\u0068\u0061",0x1d5d5:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0042",0x1d757:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061",0x1d5d6:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043",0x1d76c:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043\u0068\u0069",0x1d5d7:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0044",0x1d759:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0044\u0065\u006c\u0074\u0061",0x1d5d8:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045",0x1d75a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0070s\u0069\u006c\u006f\u006e",0x1d75c:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0074\u0061",0x1d5d9:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0046",0x1d5da:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0047",0x1d758:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0047\u0061\u006d\u006d\u0061",0x1d5db:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0048",0x1d5dc:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0049",0x1d75e:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061",0x1d5dd:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004a",0x1d5de:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004b",0x1d75f:"\u006d\u0062\u0066s\u0061\u006e\u0073\u004b\u0061\u0070\u0070\u0061",0x1d5df:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c",0x1d760:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061",0x1d5e0:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004d",0x1d761:"\u006db\u0066\u0073\u0061\u006e\u0073\u004du",0x1d5e1:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004e",0x1d762:"\u006db\u0066\u0073\u0061\u006e\u0073\u004eu",0x1d5e2:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f",0x1d76e:"\u006d\u0062\u0066s\u0061\u006e\u0073\u004f\u006d\u0065\u0067\u0061",0x1d764:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f\u006di\u0063\u0072\u006f\u006e",0x1d5e3:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050",0x1d76b:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0068\u0069",0x1d765:"\u006db\u0066\u0073\u0061\u006e\u0073\u0050i",0x1d76d:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0073\u0069",0x1d5e4:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0051",0x1d5e5:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052",0x1d766:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052\u0068\u006f",0x1d5e6:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0053",0x1d768:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0053\u0069\u0067\u006d\u0061",0x1d5e7:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054",0x1d769:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054\u0061\u0075",0x1d75d:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0054\u0068\u0065\u0074\u0061",0x1d5e8:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055",0x1d76a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055\u0070s\u0069\u006c\u006f\u006e",0x1d5e9:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0056",0x1d5ea:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0057",0x1d5eb:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0058",0x1d763:"\u006db\u0066\u0073\u0061\u006e\u0073\u0058i",0x1d5ec:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0059",0x1d5ed:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u005a",0x1d75b:"m\u0062\u0066\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061",0x1d5ee:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0061",0x1d770:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0061\u006c\u0070\u0068\u0061",0x1d5ef:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0062",0x1d771:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061",0x1d5f0:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063",0x1d786:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063\u0068\u0069",0x1d5f1:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0064",0x1d773:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0064\u0065\u006c\u0074\u0061",0x1d5f2:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065",0x1d7f4:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074",0x1d774:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0070s\u0069\u006c\u006f\u006e",0x1d776:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0074\u0061",0x1d5f3:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0066",0x1d7f1:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u0069\u0076\u0065",0x1d7f0:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u006f\u0075\u0072",0x1d5f4:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0067",0x1d772:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0067\u0061\u006d\u006d\u0061",0x1d5f5:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0068",0x1d5f6:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0069",0x1d778:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061",0x1d5f7:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006a",0x1d5f8:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006b",0x1d779:"\u006d\u0062\u0066s\u0061\u006e\u0073\u006b\u0061\u0070\u0070\u0061",0x1d5f9:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c",0x1d77a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061",0x1d5fa:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006d",0x1d77b:"\u006db\u0066\u0073\u0061\u006e\u0073\u006du",0x1d5fb:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006e",0x1d76f:"\u006d\u0062\u0066s\u0061\u006e\u0073\u006e\u0061\u0062\u006c\u0061",0x1d7f5:"m\u0062\u0066\u0073\u0061\u006e\u0073\u006e\u0069\u006e\u0065",0x1d77c:"\u006db\u0066\u0073\u0061\u006e\u0073\u006eu",0x1d5fc:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f",0x1d788:"\u006d\u0062\u0066s\u0061\u006e\u0073\u006f\u006d\u0065\u0067\u0061",0x1d77e:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006di\u0063\u0072\u006f\u006e",0x1d7ed:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006e\u0065",0x1d5fd:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070",0x1d789:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0061r\u0074\u0069\u0061\u006c",0x1d785:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0068\u0069",0x1d77f:"\u006db\u0066\u0073\u0061\u006e\u0073\u0070i",0x1d787:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0073\u0069",0x1d5fe:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0071",0x1d5ff:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072",0x1d780:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072\u0068\u006f",0x1d600:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073",0x1d7f3:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e",0x1d782:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0069\u0067\u006d\u0061",0x1d7f2:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073\u0069\u0078",0x1d601:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074",0x1d783:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0061\u0075",0x1d777:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0065\u0074\u0061",0x1d7ef:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065",0x1d7ee:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0077\u006f",0x1d602:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075",0x1d784:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075\u0070s\u0069\u006c\u006f\u006e",0x1d603:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076",0x1d767:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d78a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070s\u0069\u006c\u006f\u006e",0x1d78c:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d78d:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069",0x1d78f:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0069",0x1d78e:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f",0x1d781:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d78b:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d604:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0077",0x1d605:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0078",0x1d77d:"\u006db\u0066\u0073\u0061\u006e\u0073\u0078i",0x1d606:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0079",0x1d607:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u007a",0x1d7ec:"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0072\u006f",0x1d775:"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061",0x1d4d0:"\u006db\u0066\u0073\u0063\u0072\u0041",0x1d4d1:"\u006db\u0066\u0073\u0063\u0072\u0042",0x1d4d2:"\u006db\u0066\u0073\u0063\u0072\u0043",0x1d4d3:"\u006db\u0066\u0073\u0063\u0072\u0044",0x1d4d4:"\u006db\u0066\u0073\u0063\u0072\u0045",0x1d4d5:"\u006db\u0066\u0073\u0063\u0072\u0046",0x1d4d6:"\u006db\u0066\u0073\u0063\u0072\u0047",0x1d4d7:"\u006db\u0066\u0073\u0063\u0072\u0048",0x1d4d8:"\u006db\u0066\u0073\u0063\u0072\u0049",0x1d4d9:"\u006db\u0066\u0073\u0063\u0072\u004a",0x1d4da:"\u006db\u0066\u0073\u0063\u0072\u004b",0x1d4db:"\u006db\u0066\u0073\u0063\u0072\u004c",0x1d4dc:"\u006db\u0066\u0073\u0063\u0072\u004d",0x1d4dd:"\u006db\u0066\u0073\u0063\u0072\u004e",0x1d4de:"\u006db\u0066\u0073\u0063\u0072\u004f",0x1d4df:"\u006db\u0066\u0073\u0063\u0072\u0050",0x1d4e0:"\u006db\u0066\u0073\u0063\u0072\u0051",0x1d4e1:"\u006db\u0066\u0073\u0063\u0072\u0052",0x1d4e2:"\u006db\u0066\u0073\u0063\u0072\u0053",0x1d4e3:"\u006db\u0066\u0073\u0063\u0072\u0054",0x1d4e4:"\u006db\u0066\u0073\u0063\u0072\u0055",0x1d4e5:"\u006db\u0066\u0073\u0063\u0072\u0056",0x1d4e6:"\u006db\u0066\u0073\u0063\u0072\u0057",0x1d4e7:"\u006db\u0066\u0073\u0063\u0072\u0058",0x1d4e8:"\u006db\u0066\u0073\u0063\u0072\u0059",0x1d4e9:"\u006db\u0066\u0073\u0063\u0072\u005a",0x1d4ea:"\u006db\u0066\u0073\u0063\u0072\u0061",0x1d4eb:"\u006db\u0066\u0073\u0063\u0072\u0062",0x1d4ec:"\u006db\u0066\u0073\u0063\u0072\u0063",0x1d4ed:"\u006db\u0066\u0073\u0063\u0072\u0064",0x1d4ee:"\u006db\u0066\u0073\u0063\u0072\u0065",0x1d4ef:"\u006db\u0066\u0073\u0063\u0072\u0066",0x1d4f0:"\u006db\u0066\u0073\u0063\u0072\u0067",0x1d4f1:"\u006db\u0066\u0073\u0063\u0072\u0068",0x1d4f2:"\u006db\u0066\u0073\u0063\u0072\u0069",0x1d4f3:"\u006db\u0066\u0073\u0063\u0072\u006a",0x1d4f4:"\u006db\u0066\u0073\u0063\u0072\u006b",0x1d4f5:"\u006db\u0066\u0073\u0063\u0072\u006c",0x1d4f6:"\u006db\u0066\u0073\u0063\u0072\u006d",0x1d4f7:"\u006db\u0066\u0073\u0063\u0072\u006e",0x1d4f8:"\u006db\u0066\u0073\u0063\u0072\u006f",0x1d4f9:"\u006db\u0066\u0073\u0063\u0072\u0070",0x1d4fa:"\u006db\u0066\u0073\u0063\u0072\u0071",0x1d4fb:"\u006db\u0066\u0073\u0063\u0072\u0072",0x1d4fc:"\u006db\u0066\u0073\u0063\u0072\u0073",0x1d4fd:"\u006db\u0066\u0073\u0063\u0072\u0074",0x1d4fe:"\u006db\u0066\u0073\u0063\u0072\u0075",0x1d4ff:"\u006db\u0066\u0073\u0063\u0072\u0076",0x1d500:"\u006db\u0066\u0073\u0063\u0072\u0077",0x1d501:"\u006db\u0066\u0073\u0063\u0072\u0078",0x1d502:"\u006db\u0066\u0073\u0063\u0072\u0079",0x1d503:"\u006db\u0066\u0073\u0063\u0072\u007a",0x1d6d4:"\u006d\u0062\u0066\u0073\u0069\u0067\u006d\u0061",0x1d42d:"\u006d\u0062\u0066\u0074",0x1d6d5:"\u006d\u0062\u0066\u0074\u0061\u0075",0x1d6c9:"\u006d\u0062\u0066\u0074\u0068\u0065\u0074\u0061",0x1d42e:"\u006d\u0062\u0066\u0075",0x1d6d6:"\u006d\u0062\u0066\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d42f:"\u006d\u0062\u0066\u0076",0x1d6b9:"m\u0062\u0066\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d6dc:"\u006d\u0062\u0066\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6de:"m\u0062\u0066\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d6d7:"\u006db\u0066\u0076\u0061\u0072\u0070\u0068i",0x1d6e1:"\u006d\u0062\u0066\u0076\u0061\u0072\u0070\u0069",0x1d6e0:"\u006db\u0066\u0076\u0061\u0072\u0072\u0068o",0x1d6d3:"m\u0062\u0066\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d6dd:"m\u0062\u0066\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d430:"\u006d\u0062\u0066\u0077",0x1d431:"\u006d\u0062\u0066\u0078",0x1d6cf:"\u006d\u0062\u0066x\u0069",0x1d432:"\u006d\u0062\u0066\u0079",0x1d433:"\u006d\u0062\u0066\u007a",0x1d6c7:"\u006db\u0066\u007a\u0065\u0074\u0061",0x3107:"\u006db\u006f\u0070\u006f\u006d\u006f\u0066o",0x33d4:"\u006d\u0062\u0073\u0071\u0075\u0061\u0072\u0065",0x24dc:"\u006dc\u0069\u0072\u0063\u006c\u0065",0x33a5:"\u006d\u0063\u0075b\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x26ab:"m\u0064\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",0x2b25:"\u006d\u0064\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x2b27:"\u006d\u0064\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x25fc:"m\u0064\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x29eb:"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u006c\u006fz\u0065\u006e\u0067\u0065",0x1e41:"\u006d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e43:"\u006dd\u006f\u0074\u0062\u0065\u006c\u006fw",0x2981:"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",0x25fe:"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x26ac:"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x25fd:"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x26aa:"m\u0064\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x2b26:"\u006d\u0064\u0077h\u0074\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x2b28:"\u006d\u0064\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x25fb:"m\u0064\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x29af:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u006c\u0074\u006f\u0073\u0077",0x29ae:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u0072\u0074\u006f\u0073\u0065",0x29ab:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0064\u0074\u006f\u0073\u0077",0x29a9:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0075\u0074\u006f\u006e\u0077",0x29aa:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0064\u0074\u006f\u0073\u0065",0x29a8:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0075\u0074\u006f\u006e\u0065",0x29ad:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u006c\u0074\u006f\u006e\u0077",0x29ac:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u0072\u0074\u006f\u006e\u0065",0x225e:"\u006d\u0065\u0061\u0073\u0065\u0071",0x2221:"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006c\u0065",0x299b:"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074",0x22be:"\u006de\u0061s\u0075\u0072\u0065\u0064\u0072i\u0067\u0068t\u0061\u006e\u0067\u006c\u0065",0x2b51:"\u006d\u0065\u0064b\u006c\u0061\u0063\u006b\u0073\u0074\u0061\u0072",0x2b50:"\u006d\u0065\u0064w\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072",0xfee2:"\u006de\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfee3:"\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfee1:"\u006d\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfee4:"\u006d\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcd1:"m\u0065\u0065\u006d\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfc48:"\u006d\u0065\u0065\u006dme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063",0xfccf:"\u006de\u0065m\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfcce:"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfcd0:"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0x334d:"\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x3081:"\u006d\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x337e:"\u006d\u0065\u0069\u007a\u0069\u0065\u0072\u0061\u0073q\u0075\u0061\u0072\u0065",0x30e1:"\u006d\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff92:"\u006d\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05de:"\u006d\u0065\u006d",0xfb3e:"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x0574:"m\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x05a5:"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x05a6:"\u006de\u0072k\u0068\u0061\u006b\u0065\u0066u\u006c\u0061h\u0065\u0062\u0072\u0065\u0077",0x1d504:"\u006d\u0066\u0072\u0061\u006b\u0041",0x1d505:"\u006d\u0066\u0072\u0061\u006b\u0042",0x212d:"\u006d\u0066\u0072\u0061\u006b\u0043",0x1d507:"\u006d\u0066\u0072\u0061\u006b\u0044",0x1d508:"\u006d\u0066\u0072\u0061\u006b\u0045",0x1d509:"\u006d\u0066\u0072\u0061\u006b\u0046",0x1d50a:"\u006d\u0066\u0072\u0061\u006b\u0047",0x210c:"\u006d\u0066\u0072\u0061\u006b\u0048",0x1d50d:"\u006d\u0066\u0072\u0061\u006b\u004a",0x1d50e:"\u006d\u0066\u0072\u0061\u006b\u004b",0x1d50f:"\u006d\u0066\u0072\u0061\u006b\u004c",0x1d510:"\u006d\u0066\u0072\u0061\u006b\u004d",0x1d511:"\u006d\u0066\u0072\u0061\u006b\u004e",0x1d512:"\u006d\u0066\u0072\u0061\u006b\u004f",0x1d513:"\u006d\u0066\u0072\u0061\u006b\u0050",0x1d514:"\u006d\u0066\u0072\u0061\u006b\u0051",0x1d516:"\u006d\u0066\u0072\u0061\u006b\u0053",0x1d517:"\u006d\u0066\u0072\u0061\u006b\u0054",0x1d518:"\u006d\u0066\u0072\u0061\u006b\u0055",0x1d519:"\u006d\u0066\u0072\u0061\u006b\u0056",0x1d51a:"\u006d\u0066\u0072\u0061\u006b\u0057",0x1d51b:"\u006d\u0066\u0072\u0061\u006b\u0058",0x1d51c:"\u006d\u0066\u0072\u0061\u006b\u0059",0x2128:"\u006d\u0066\u0072\u0061\u006b\u005a",0x1d51e:"\u006d\u0066\u0072\u0061\u006b\u0061",0x1d51f:"\u006d\u0066\u0072\u0061\u006b\u0062",0x1d520:"\u006d\u0066\u0072\u0061\u006b\u0063",0x1d521:"\u006d\u0066\u0072\u0061\u006b\u0064",0x1d522:"\u006d\u0066\u0072\u0061\u006b\u0065",0x1d523:"\u006d\u0066\u0072\u0061\u006b\u0066",0x1d524:"\u006d\u0066\u0072\u0061\u006b\u0067",0x1d525:"\u006d\u0066\u0072\u0061\u006b\u0068",0x1d526:"\u006d\u0066\u0072\u0061\u006b\u0069",0x1d527:"\u006d\u0066\u0072\u0061\u006b\u006a",0x1d528:"\u006d\u0066\u0072\u0061\u006b\u006b",0x1d529:"\u006d\u0066\u0072\u0061\u006b\u006c",0x1d52a:"\u006d\u0066\u0072\u0061\u006b\u006d",0x1d52b:"\u006d\u0066\u0072\u0061\u006b\u006e",0x1d52c:"\u006d\u0066\u0072\u0061\u006b\u006f",0x1d52d:"\u006d\u0066\u0072\u0061\u006b\u0070",0x1d52e:"\u006d\u0066\u0072\u0061\u006b\u0071",0x1d52f:"\u006d\u0066\u0072\u0061\u006b\u0072",0x1d530:"\u006d\u0066\u0072\u0061\u006b\u0073",0x1d531:"\u006d\u0066\u0072\u0061\u006b\u0074",0x1d532:"\u006d\u0066\u0072\u0061\u006b\u0075",0x1d533:"\u006d\u0066\u0072\u0061\u006b\u0076",0x1d534:"\u006d\u0066\u0072\u0061\u006b\u0077",0x1d535:"\u006d\u0066\u0072\u0061\u006b\u0078",0x1d536:"\u006d\u0066\u0072\u0061\u006b\u0079",0x1d537:"\u006d\u0066\u0072\u0061\u006b\u007a",0x0271:"\u006d\u0068\u006fo\u006b",0x3392:"\u006dh\u007a\u0073\u0071\u0075\u0061\u0072e",0x0095:"\u006d\u0069\u0063r\u006f",0x2a5d:"\u006di\u0064\u0062\u0061\u0072\u0076\u0065e",0x2a5c:"m\u0069\u0064\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065",0x2af0:"\u006d\u0069\u0064\u0063\u0069\u0072",0xff65:"\u006d\u0069\u0064\u0064\u006c\u0065\u0064\u006f\u0074\u006b\u0061t\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068",0x3272:"\u006di\u0065u\u006d\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3212:"\u006d\u0069\u0065\u0075\u006d\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3264:"\u006d\u0069\u0065\u0075\u006d\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3141:"m\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e",0x3170:"\u006di\u0065u\u006d\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x3204:"\u006d\u0069e\u0075\u006d\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x316e:"\u006d\u0069e\u0075\u006d\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x316f:"\u006di\u0065u\u006d\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x307f:"\u006d\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30df:"\u006d\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff90:"\u006d\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x20a5:"\u006d\u0069\u006c\u006c",0x2212:"\u006d\u0069\u006eu\u0073",0x0320:"\u006d\u0069\u006e\u0075\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x2296:"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065",0x2a2a:"\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074",0x2a2b:"\u006d\u0069\u006e\u0075\u0073\u0066\u0064\u006f\u0074\u0073",0x208b:"\u006d\u0069\u006e\u0075\u0073\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0x02d7:"\u006d\u0069\u006e\u0075\u0073\u006d\u006f\u0064",0x2213:"\u006di\u006e\u0075\u0073\u0070\u006c\u0075s",0x2a2c:"\u006d\u0069\u006e\u0075\u0073\u0072\u0064\u006f\u0074\u0073",0x207b:"\u006d\u0069\u006e\u0075\u0073\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2032:"\u006d\u0069\u006e\u0075\u0074\u0065",0x334a:"\u006di\u0072i\u0062\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x3349:"\u006d\u0069\u0072\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x1d434:"\u006d\u0069\u0074\u0041",0x1d6e2:"\u006d\u0069\u0074\u0041\u006c\u0070\u0068\u0061",0x1d435:"\u006d\u0069\u0074\u0042",0x2145:"\u006di\u0074\u0042\u0062\u0062\u0044",0x2146:"\u006di\u0074\u0042\u0062\u0062\u0064",0x2147:"\u006di\u0074\u0042\u0062\u0062\u0065",0x2148:"\u006di\u0074\u0042\u0062\u0062\u0069",0x2149:"\u006di\u0074\u0042\u0062\u0062\u006a",0x1d6e3:"\u006di\u0074\u0042\u0065\u0074\u0061",0x1d436:"\u006d\u0069\u0074\u0043",0x1d6f8:"\u006d\u0069\u0074\u0043\u0068\u0069",0x1d437:"\u006d\u0069\u0074\u0044",0x1d6e5:"\u006d\u0069\u0074\u0044\u0065\u006c\u0074\u0061",0x1d438:"\u006d\u0069\u0074\u0045",0x1d6e6:"\u006d\u0069\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6e8:"\u006d\u0069\u0074\u0045\u0074\u0061",0x1d439:"\u006d\u0069\u0074\u0046",0x1d43a:"\u006d\u0069\u0074\u0047",0x1d6e4:"\u006d\u0069\u0074\u0047\u0061\u006d\u006d\u0061",0x1d43b:"\u006d\u0069\u0074\u0048",0x1d43c:"\u006d\u0069\u0074\u0049",0x1d6ea:"\u006di\u0074\u0049\u006f\u0074\u0061",0x1d43d:"\u006d\u0069\u0074\u004a",0x1d43e:"\u006d\u0069\u0074\u004b",0x1d6eb:"\u006d\u0069\u0074\u004b\u0061\u0070\u0070\u0061",0x1d43f:"\u006d\u0069\u0074\u004c",0x1d6ec:"\u006di\u0074\u004c\u0061\u006d\u0062\u0064a",0x1d440:"\u006d\u0069\u0074\u004d",0x1d6ed:"\u006d\u0069\u0074M\u0075",0x1d441:"\u006d\u0069\u0074\u004e",0x1d6ee:"\u006d\u0069\u0074N\u0075",0x1d442:"\u006d\u0069\u0074\u004f",0x1d6fa:"\u006d\u0069\u0074\u004f\u006d\u0065\u0067\u0061",0x1d6f0:"\u006d\u0069\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d443:"\u006d\u0069\u0074\u0050",0x1d6f7:"\u006d\u0069\u0074\u0050\u0068\u0069",0x1d6f1:"\u006d\u0069\u0074P\u0069",0x1d6f9:"\u006d\u0069\u0074\u0050\u0073\u0069",0x1d444:"\u006d\u0069\u0074\u0051",0x1d445:"\u006d\u0069\u0074\u0052",0x1d6f2:"\u006d\u0069\u0074\u0052\u0068\u006f",0x1d446:"\u006d\u0069\u0074\u0053",0x1d6f4:"\u006d\u0069\u0074\u0053\u0069\u0067\u006d\u0061",0x1d447:"\u006d\u0069\u0074\u0054",0x1d6f5:"\u006d\u0069\u0074\u0054\u0061\u0075",0x1d6e9:"\u006d\u0069\u0074\u0054\u0068\u0065\u0074\u0061",0x1d448:"\u006d\u0069\u0074\u0055",0x1d6f6:"\u006d\u0069\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d449:"\u006d\u0069\u0074\u0056",0x1d44a:"\u006d\u0069\u0074\u0057",0x1d44b:"\u006d\u0069\u0074\u0058",0x1d6ef:"\u006d\u0069\u0074X\u0069",0x1d44c:"\u006d\u0069\u0074\u0059",0x1d44d:"\u006d\u0069\u0074\u005a",0x1d6e7:"\u006di\u0074\u005a\u0065\u0074\u0061",0x1d44e:"\u006d\u0069\u0074\u0061",0x1d6fc:"\u006d\u0069\u0074\u0061\u006c\u0070\u0068\u0061",0x1d44f:"\u006d\u0069\u0074\u0062",0x1d6fd:"\u006di\u0074\u0062\u0065\u0074\u0061",0x1d450:"\u006d\u0069\u0074\u0063",0x1d712:"\u006d\u0069\u0074\u0063\u0068\u0069",0x1d451:"\u006d\u0069\u0074\u0064",0x1d6ff:"\u006d\u0069\u0074\u0064\u0065\u006c\u0074\u0061",0x1d452:"\u006d\u0069\u0074\u0065",0x1d700:"\u006d\u0069\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d702:"\u006d\u0069\u0074\u0065\u0074\u0061",0x1d453:"\u006d\u0069\u0074\u0066",0x1d454:"\u006d\u0069\u0074\u0067",0x1d6fe:"\u006d\u0069\u0074\u0067\u0061\u006d\u006d\u0061",0x1d456:"\u006d\u0069\u0074\u0069",0x1d704:"\u006di\u0074\u0069\u006f\u0074\u0061",0x1d457:"\u006d\u0069\u0074\u006a",0x1d458:"\u006d\u0069\u0074\u006b",0x1d705:"\u006d\u0069\u0074\u006b\u0061\u0070\u0070\u0061",0x1d459:"\u006d\u0069\u0074\u006c",0x1d706:"\u006di\u0074\u006c\u0061\u006d\u0062\u0064a",0x1d45a:"\u006d\u0069\u0074\u006d",0x1d707:"\u006d\u0069\u0074m\u0075",0x1d45b:"\u006d\u0069\u0074\u006e",0x1d6fb:"\u006d\u0069\u0074\u006e\u0061\u0062\u006c\u0061",0x1d708:"\u006d\u0069\u0074n\u0075",0x1d45c:"\u006d\u0069\u0074\u006f",0x1d714:"\u006d\u0069\u0074\u006f\u006d\u0065\u0067\u0061",0x1d70a:"\u006d\u0069\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d45d:"\u006d\u0069\u0074\u0070",0x1d715:"\u006d\u0069\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d711:"\u006d\u0069\u0074\u0070\u0068\u0069",0x1d70b:"\u006d\u0069\u0074p\u0069",0x1d713:"\u006d\u0069\u0074\u0070\u0073\u0069",0x1d45e:"\u006d\u0069\u0074\u0071",0x1d45f:"\u006d\u0069\u0074\u0072",0x1d70c:"\u006d\u0069\u0074\u0072\u0068\u006f",0x1d460:"\u006d\u0069\u0074\u0073",0x1d608:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0041",0x1d609:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0042",0x1d60a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0043",0x1d60b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0044",0x1d60c:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0045",0x1d60d:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0046",0x1d60e:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0047",0x1d60f:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0048",0x1d610:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0049",0x1d611:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004a",0x1d612:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004b",0x1d613:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004c",0x1d614:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004d",0x1d615:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004e",0x1d616:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004f",0x1d617:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0050",0x1d618:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0051",0x1d619:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0052",0x1d61a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0053",0x1d61b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0054",0x1d61c:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0055",0x1d61d:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0056",0x1d61e:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0057",0x1d61f:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0058",0x1d620:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0059",0x1d621:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u005a",0x1d622:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0061",0x1d623:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0062",0x1d624:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0063",0x1d625:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0064",0x1d626:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0065",0x1d627:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0066",0x1d628:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0067",0x1d629:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0068",0x1d62a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0069",0x1d62b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006a",0x1d62c:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006b",0x1d62d:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006c",0x1d62e:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006d",0x1d62f:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006e",0x1d630:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006f",0x1d631:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0070",0x1d632:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0071",0x1d633:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0072",0x1d634:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0073",0x1d635:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0074",0x1d636:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0075",0x1d637:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0076",0x1d638:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0077",0x1d639:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0078",0x1d63a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0079",0x1d63b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u007a",0x1d70e:"\u006d\u0069\u0074\u0073\u0069\u0067\u006d\u0061",0x1d461:"\u006d\u0069\u0074\u0074",0x1d70f:"\u006d\u0069\u0074\u0074\u0061\u0075",0x1d703:"\u006d\u0069\u0074\u0074\u0068\u0065\u0074\u0061",0x1d462:"\u006d\u0069\u0074\u0075",0x1d710:"\u006d\u0069\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d463:"\u006d\u0069\u0074\u0076",0x1d6f3:"m\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d716:"\u006d\u0069\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d718:"m\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d719:"\u006di\u0074\u0076\u0061\u0072\u0070\u0068i",0x1d71b:"\u006d\u0069\u0074\u0076\u0061\u0072\u0070\u0069",0x1d71a:"\u006di\u0074\u0076\u0061\u0072\u0072\u0068o",0x1d70d:"m\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d717:"m\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d464:"\u006d\u0069\u0074\u0077",0x1d465:"\u006d\u0069\u0074\u0078",0x1d709:"\u006d\u0069\u0074x\u0069",0x1d466:"\u006d\u0069\u0074\u0079",0x1d467:"\u006d\u0069\u0074\u007a",0x1d701:"\u006di\u0074\u007a\u0065\u0074\u0061",0x2adb:"\u006d\u006c\u0063\u0070",0x0270:"\u006d\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064",0x3396:"\u006d\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x33a3:"\u006d\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0xff4d:"\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x339f:"\u006dm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x22a7:"\u006d\u006f\u0064\u0065\u006c\u0073",0x2a0a:"\u006do\u0064\u0074\u0077\u006f\u0073\u0075m",0x3082:"\u006d\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x33c1:"\u006d\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x30e2:"\u006d\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff93:"\u006d\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x33d6:"\u006do\u006c\u0073\u0071\u0075\u0061\u0072e",0x0e21:"\u006d\u006f\u006d\u0061\u0074\u0068\u0061\u0069",0x33a7:"\u006d\u006f\u0076e\u0072\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x33a8:"\u006d\u006f\u0076\u0065rs\u0073\u0071\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x24a8:"\u006d\u0070\u0061\u0072\u0065\u006e",0x33ab:"\u006dp\u0061\u0073\u0071\u0075\u0061\u0072e",0x1d5a0:"\u006d\u0073\u0061\u006e\u0073\u0041",0x1d5a1:"\u006d\u0073\u0061\u006e\u0073\u0042",0x1d5a2:"\u006d\u0073\u0061\u006e\u0073\u0043",0x1d5a3:"\u006d\u0073\u0061\u006e\u0073\u0044",0x1d5a4:"\u006d\u0073\u0061\u006e\u0073\u0045",0x1d5a5:"\u006d\u0073\u0061\u006e\u0073\u0046",0x1d5a6:"\u006d\u0073\u0061\u006e\u0073\u0047",0x1d5a7:"\u006d\u0073\u0061\u006e\u0073\u0048",0x1d5a8:"\u006d\u0073\u0061\u006e\u0073\u0049",0x1d5a9:"\u006d\u0073\u0061\u006e\u0073\u004a",0x1d5aa:"\u006d\u0073\u0061\u006e\u0073\u004b",0x1d5ab:"\u006d\u0073\u0061\u006e\u0073\u004c",0x1d5ac:"\u006d\u0073\u0061\u006e\u0073\u004d",0x1d5ad:"\u006d\u0073\u0061\u006e\u0073\u004e",0x1d5ae:"\u006d\u0073\u0061\u006e\u0073\u004f",0x1d5af:"\u006d\u0073\u0061\u006e\u0073\u0050",0x1d5b0:"\u006d\u0073\u0061\u006e\u0073\u0051",0x1d5b1:"\u006d\u0073\u0061\u006e\u0073\u0052",0x1d5b2:"\u006d\u0073\u0061\u006e\u0073\u0053",0x1d5b3:"\u006d\u0073\u0061\u006e\u0073\u0054",0x1d5b4:"\u006d\u0073\u0061\u006e\u0073\u0055",0x1d5b5:"\u006d\u0073\u0061\u006e\u0073\u0056",0x1d5b6:"\u006d\u0073\u0061\u006e\u0073\u0057",0x1d5b7:"\u006d\u0073\u0061\u006e\u0073\u0058",0x1d5b8:"\u006d\u0073\u0061\u006e\u0073\u0059",0x1d5b9:"\u006d\u0073\u0061\u006e\u0073\u005a",0x1d5ba:"\u006d\u0073\u0061\u006e\u0073\u0061",0x1d5bb:"\u006d\u0073\u0061\u006e\u0073\u0062",0x1d5bc:"\u006d\u0073\u0061\u006e\u0073\u0063",0x1d5bd:"\u006d\u0073\u0061\u006e\u0073\u0064",0x1d5be:"\u006d\u0073\u0061\u006e\u0073\u0065",0x1d7ea:"\u006d\u0073\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074",0x1d5bf:"\u006d\u0073\u0061\u006e\u0073\u0066",0x1d7e7:"\u006ds\u0061\u006e\u0073\u0066\u0069\u0076e",0x1d7e6:"\u006ds\u0061\u006e\u0073\u0066\u006f\u0075r",0x1d5c0:"\u006d\u0073\u0061\u006e\u0073\u0067",0x1d5c1:"\u006d\u0073\u0061\u006e\u0073\u0068",0x1d5c2:"\u006d\u0073\u0061\u006e\u0073\u0069",0x1d5c3:"\u006d\u0073\u0061\u006e\u0073\u006a",0x1d5c4:"\u006d\u0073\u0061\u006e\u0073\u006b",0x1d5c5:"\u006d\u0073\u0061\u006e\u0073\u006c",0x1d5c6:"\u006d\u0073\u0061\u006e\u0073\u006d",0x1d5c7:"\u006d\u0073\u0061\u006e\u0073\u006e",0x1d7eb:"\u006ds\u0061\u006e\u0073\u006e\u0069\u006ee",0x1d5c8:"\u006d\u0073\u0061\u006e\u0073\u006f",0x1d7e3:"\u006d\u0073\u0061\u006e\u0073\u006f\u006e\u0065",0x1d5c9:"\u006d\u0073\u0061\u006e\u0073\u0070",0x1d5ca:"\u006d\u0073\u0061\u006e\u0073\u0071",0x1d5cb:"\u006d\u0073\u0061\u006e\u0073\u0072",0x1d5cc:"\u006d\u0073\u0061\u006e\u0073\u0073",0x1d7e9:"\u006d\u0073\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e",0x1d7e8:"\u006d\u0073\u0061\u006e\u0073\u0073\u0069\u0078",0x1d5cd:"\u006d\u0073\u0061\u006e\u0073\u0074",0x1d7e5:"\u006d\u0073\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065",0x1d7e4:"\u006d\u0073\u0061\u006e\u0073\u0074\u0077\u006f",0x1d5ce:"\u006d\u0073\u0061\u006e\u0073\u0075",0x1d5cf:"\u006d\u0073\u0061\u006e\u0073\u0076",0x1d5d0:"\u006d\u0073\u0061\u006e\u0073\u0077",0x1d5d1:"\u006d\u0073\u0061\u006e\u0073\u0078",0x1d5d2:"\u006d\u0073\u0061\u006e\u0073\u0079",0x1d5d3:"\u006d\u0073\u0061\u006e\u0073\u007a",0x1d7e2:"\u006ds\u0061\u006e\u0073\u007a\u0065\u0072o",0x1d49c:"\u006d\u0073\u0063r\u0041",0x212c:"\u006d\u0073\u0063r\u0042",0x1d49e:"\u006d\u0073\u0063r\u0043",0x1d49f:"\u006d\u0073\u0063r\u0044",0x2130:"\u006d\u0073\u0063r\u0045",0x2131:"\u006d\u0073\u0063r\u0046",0x1d4a2:"\u006d\u0073\u0063r\u0047",0x210b:"\u006d\u0073\u0063r\u0048",0x2110:"\u006d\u0073\u0063r\u0049",0x1d4a5:"\u006d\u0073\u0063r\u004a",0x1d4a6:"\u006d\u0073\u0063r\u004b",0x2112:"\u006d\u0073\u0063r\u004c",0x2133:"\u006d\u0073\u0063r\u004d",0x1d4a9:"\u006d\u0073\u0063r\u004e",0x1d4aa:"\u006d\u0073\u0063r\u004f",0x1d4ab:"\u006d\u0073\u0063r\u0050",0x1d4ac:"\u006d\u0073\u0063r\u0051",0x211b:"\u006d\u0073\u0063r\u0052",0x1d4ae:"\u006d\u0073\u0063r\u0053",0x1d4af:"\u006d\u0073\u0063r\u0054",0x1d4b0:"\u006d\u0073\u0063r\u0055",0x1d4b1:"\u006d\u0073\u0063r\u0056",0x1d4b2:"\u006d\u0073\u0063r\u0057",0x1d4b3:"\u006d\u0073\u0063r\u0058",0x1d4b4:"\u006d\u0073\u0063r\u0059",0x1d4b5:"\u006d\u0073\u0063r\u005a",0x1d4b6:"\u006d\u0073\u0063r\u0061",0x1d4b7:"\u006d\u0073\u0063r\u0062",0x1d4b8:"\u006d\u0073\u0063r\u0063",0x1d4b9:"\u006d\u0073\u0063r\u0064",0x212f:"\u006d\u0073\u0063r\u0065",0x1d4bb:"\u006d\u0073\u0063r\u0066",0x210a:"\u006d\u0073\u0063r\u0067",0x1d4bd:"\u006d\u0073\u0063r\u0068",0x1d4be:"\u006d\u0073\u0063r\u0069",0x1d4bf:"\u006d\u0073\u0063r\u006a",0x1d4c0:"\u006d\u0073\u0063r\u006b",0x1d4c1:"\u006d\u0073\u0063r\u006c",0x1d4c2:"\u006d\u0073\u0063r\u006d",0x1d4c3:"\u006d\u0073\u0063r\u006e",0x2134:"\u006d\u0073\u0063r\u006f",0x1d4c5:"\u006d\u0073\u0063r\u0070",0x1d4c6:"\u006d\u0073\u0063r\u0071",0x1d4c7:"\u006d\u0073\u0063r\u0072",0x1d4c8:"\u006d\u0073\u0063r\u0073",0x1d4c9:"\u006d\u0073\u0063r\u0074",0x1d4ca:"\u006d\u0073\u0063r\u0075",0x1d4cb:"\u006d\u0073\u0063r\u0076",0x1d4cc:"\u006d\u0073\u0063r\u0077",0x1d4cd:"\u006d\u0073\u0063r\u0078",0x1d4ce:"\u006d\u0073\u0063r\u0079",0x1d4cf:"\u006d\u0073\u0063r\u007a",0x33b3:"\u006d\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0xf6ef:"\u006ds\u0075\u0070\u0065\u0072\u0069\u006fr",0x1d670:"\u006d\u0074\u0074\u0041",0x1d671:"\u006d\u0074\u0074\u0042",0x1d672:"\u006d\u0074\u0074\u0043",0x1d673:"\u006d\u0074\u0074\u0044",0x1d674:"\u006d\u0074\u0074\u0045",0x1d675:"\u006d\u0074\u0074\u0046",0x1d676:"\u006d\u0074\u0074\u0047",0x1d677:"\u006d\u0074\u0074\u0048",0x1d678:"\u006d\u0074\u0074\u0049",0x1d679:"\u006d\u0074\u0074\u004a",0x1d67a:"\u006d\u0074\u0074\u004b",0x1d67b:"\u006d\u0074\u0074\u004c",0x1d67c:"\u006d\u0074\u0074\u004d",0x1d67d:"\u006d\u0074\u0074\u004e",0x1d67e:"\u006d\u0074\u0074\u004f",0x1d67f:"\u006d\u0074\u0074\u0050",0x1d680:"\u006d\u0074\u0074\u0051",0x1d681:"\u006d\u0074\u0074\u0052",0x1d682:"\u006d\u0074\u0074\u0053",0x1d683:"\u006d\u0074\u0074\u0054",0x1d684:"\u006d\u0074\u0074\u0055",0x1d685:"\u006d\u0074\u0074\u0056",0x1d686:"\u006d\u0074\u0074\u0057",0x1d687:"\u006d\u0074\u0074\u0058",0x1d688:"\u006d\u0074\u0074\u0059",0x1d689:"\u006d\u0074\u0074\u005a",0x1d68a:"\u006d\u0074\u0074\u0061",0x1d68b:"\u006d\u0074\u0074\u0062",0x1d68c:"\u006d\u0074\u0074\u0063",0x1d68d:"\u006d\u0074\u0074\u0064",0x1d68e:"\u006d\u0074\u0074\u0065",0x1d7fe:"\u006d\u0074\u0074\u0065\u0069\u0067\u0068\u0074",0x1d68f:"\u006d\u0074\u0074\u0066",0x1d7fb:"\u006dt\u0074\u0066\u0069\u0076\u0065",0x1d7fa:"\u006dt\u0074\u0066\u006f\u0075\u0072",0x1d690:"\u006d\u0074\u0074\u0067",0x1d691:"\u006d\u0074\u0074\u0068",0x1d692:"\u006d\u0074\u0074\u0069",0x1d693:"\u006d\u0074\u0074\u006a",0x1d694:"\u006d\u0074\u0074\u006b",0x1d695:"\u006d\u0074\u0074\u006c",0x1d696:"\u006d\u0074\u0074\u006d",0x1d697:"\u006d\u0074\u0074\u006e",0x1d7ff:"\u006dt\u0074\u006e\u0069\u006e\u0065",0x1d698:"\u006d\u0074\u0074\u006f",0x1d7f7:"\u006d\u0074\u0074\u006f\u006e\u0065",0x1d699:"\u006d\u0074\u0074\u0070",0x1d69a:"\u006d\u0074\u0074\u0071",0x1d69b:"\u006d\u0074\u0074\u0072",0x1d69c:"\u006d\u0074\u0074\u0073",0x1d7fd:"\u006d\u0074\u0074\u0073\u0065\u0076\u0065\u006e",0x1d7fc:"\u006d\u0074\u0074\u0073\u0069\u0078",0x1d69d:"\u006d\u0074\u0074\u0074",0x1d7f9:"\u006d\u0074\u0074\u0074\u0068\u0072\u0065\u0065",0x1d7f8:"\u006d\u0074\u0074\u0074\u0077\u006f",0x1d69e:"\u006d\u0074\u0074\u0075",0x1d69f:"\u006d\u0074\u0074\u0076",0x1d6a0:"\u006d\u0074\u0074\u0077",0x1d6a1:"\u006d\u0074\u0074\u0078",0x1d6a2:"\u006d\u0074\u0074\u0079",0x1d6a3:"\u006d\u0074\u0074\u007a",0x1d7f6:"\u006dt\u0074\u007a\u0065\u0072\u006f",0x026f:"\u006dt\u0075\u0072\u006e\u0065\u0064",0x00b5:"\u006d\u0075",0x3382:"\u006du\u0061\u0073\u0071\u0075\u0061\u0072e",0x226b:"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072",0x226a:"\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073",0x338c:"\u006du\u0066\u0073\u0071\u0075\u0061\u0072e",0x03bc:"\u006du\u0067\u0072\u0065\u0065\u006b",0x338d:"\u006du\u0067\u0073\u0071\u0075\u0061\u0072e",0x3080:"\u006d\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e0:"\u006d\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff91:"\u006d\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3395:"\u006du\u006c\u0073\u0071\u0075\u0061\u0072e",0x22c9:"\u006d\u0075\u006c\u0074\u0069\u0063\u006c\u006f\u0073e\u006c\u0065\u0066\u0074",0x22ca:"\u006du\u006ct\u0069\u0063\u006c\u006f\u0073\u0065\u0072\u0069\u0067\u0068\u0074",0x22b8:"\u006d\u0075\u006c\u0074\u0069\u006d\u0061\u0070",0x27dc:"m\u0075\u006c\u0074\u0069\u006d\u0061\u0070\u0069\u006e\u0076",0x22cb:"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074",0x22cc:"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074",0x00d7:"\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079",0x339b:"\u006du\u006d\u0073\u0071\u0075\u0061\u0072e",0x05a3:"\u006du\u006ea\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x266a:"m\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006f\u0074\u0065",0x266d:"\u006d\u0075\u0073\u0069\u0063\u0066\u006c\u0061\u0074\u0073\u0069\u0067\u006e",0x266f:"\u006d\u0075\u0073\u0069\u0063\u0073\u0068\u0061\u0072p\u0073\u0069\u0067\u006e",0x33b2:"\u006du\u0073\u0073\u0071\u0075\u0061\u0072e",0x33b6:"\u006du\u0076\u0073\u0071\u0075\u0061\u0072e",0x33bc:"\u006du\u0077\u0073\u0071\u0075\u0061\u0072e",0x33b9:"\u006d\u0076\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x33b7:"\u006d\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x33bf:"\u006d\u0077\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x33bd:"\u006d\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x006e:"\u006e",0x21fa:"n\u0056\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2b3a:"\u006eV\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x21fc:"\u006e\u0056l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x21fb:"\u006e\u0056\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2915:"\u006e\u0056r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x2b35:"\u006eV\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077",0x2b3d:"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c",0x2901:"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2918:"\u006e\u0056\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x09a8:"\u006ea\u0062\u0065\u006e\u0067\u0061\u006ci",0x0144:"\u006e\u0061\u0063\u0075\u0074\u0065",0x0928:"\u006e\u0061\u0064\u0065\u0076\u0061",0x0aa8:"\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a28:"\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x306a:"\u006e\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x20a6:"\u006e\u0061\u0069r\u0061",0x30ca:"\u006e\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff85:"\u006e\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x22bc:"\u006e\u0061\u006e\u0064",0x2249:"\u006ea\u0070\u0070\u0072\u006f\u0078",0x3381:"\u006e\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x226d:"\u006e\u0061\u0073\u0079\u006d\u0070",0x266e:"\u006ea\u0074\u0075\u0072\u0061\u006c",0x2011:"\u006e\u0062\u0068\u0079\u0070\u0068\u0065\u006e",0x310b:"\u006eb\u006f\u0070\u006f\u006d\u006f\u0066o",0x0148:"\u006e\u0063\u0061\u0072\u006f\u006e",0x0146:"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81d:"\u006ec\u0065\u0064\u0069\u006c\u006c\u00611",0x24dd:"\u006ec\u0069\u0072\u0063\u006c\u0065",0x1e4b:"\u006e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1e45:"\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e47:"\u006ed\u006f\u0074\u0062\u0065\u006c\u006fw",0x306d:"\u006e\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30cd:"\u006e\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff88:"\u006e\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2931:"n\u0065\u006f\u0076\u006e\u0077\u0061\u0072\u0072\u006f\u0077",0x292e:"n\u0065\u006f\u0076\u0073\u0065\u0061\u0072\u0072\u006f\u0077",0x2922:"\u006ee\u0073\u0077\u0061\u0072\u0072\u006fw",0x26b2:"\u006e\u0065\u0075\u0074\u0065\u0072",0x338b:"\u006e\u0066\u0073\u0071\u0075\u0061\u0072\u0065",0x0999:"\u006e\u0067\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0919:"\u006eg\u0061\u0064\u0065\u0076\u0061",0x0a99:"n\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a19:"n\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0e07:"\u006e\u0067\u006f\u006e\u0067\u0075\u0074\u0068\u0061\u0069",0x2275:"\u006eg\u0074\u0072\u0073\u0069\u006d",0x2af5:"\u006eh\u0056\u0076\u0065\u0072\u0074",0x3093:"\u006eh\u0069\u0072\u0061\u0067\u0061\u006ea",0x0272:"\u006eh\u006f\u006f\u006b\u006c\u0065\u0066t",0x0273:"\u006e\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078",0x2af2:"\u006e\u0068\u0070a\u0072",0x326f:"\u006ei\u0065u\u006e\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x320f:"\u006e\u0069\u0065\u0075\u006e\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3135:"\u006e\u0069e\u0075\u006e\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3261:"\u006e\u0069\u0065\u0075\u006e\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3136:"\u006e\u0069e\u0075\u006e\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x3134:"n\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3168:"\u006ei\u0065u\u006e\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x3201:"\u006e\u0069e\u0075\u006e\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3167:"\u006ei\u0065u\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x3166:"\u006e\u0069\u0065\u0075\u006e\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x306b:"\u006e\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30cb:"\u006e\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff86:"\u006e\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xf899:"\u006e\u0069k\u0068\u0061\u0068i\u0074\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e4d:"\u006e\u0069\u006bh\u0061\u0068\u0069\u0074\u0074\u0068\u0061\u0069",0x0039:"\u006e\u0069\u006e\u0065",0x09ef:"n\u0069\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096f:"\u006e\u0069\u006e\u0065\u0064\u0065\u0076\u0061",0x0aef:"\u006e\u0069\u006ee\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6f:"\u006e\u0069\u006ee\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0669:"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",0x3029:"\u006e\u0069\u006ee\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3228:"n\u0069n\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e",0x2089:"\u006e\u0069\u006ee\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff19:"\u006e\u0069\u006e\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf739:"\u006e\u0069\u006ee\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x247c:"\u006ei\u006e\u0065\u0070\u0061\u0072\u0065n",0x2490:"\u006e\u0069\u006e\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x06f9:"n\u0069\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2178:"\u006ei\u006e\u0065\u0072\u006f\u006d\u0061n",0x2079:"\u006e\u0069\u006ee\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2472:"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2486:"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x249a:"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0e59:"\u006e\u0069\u006e\u0065\u0074\u0068\u0061\u0069",0x22fe:"\u006e\u0069\u006f\u0062\u0061\u0072",0x22fc:"\u006e\u0069\u0073",0x22fa:"\u006e\u0069\u0073\u0064",0x01cc:"\u006e\u006a",0x30f3:"\u006ek\u0061\u0074\u0061\u006b\u0061\u006ea",0xff9d:"\u006ek\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x019e:"\u006e\u006c\u0065\u0067\u0072\u0069\u0067\u0068\u0074\u006c\u006f\u006e\u0067",0x2278:"\u006e\u006c\u0065\u0073\u0073\u0067\u0074\u0072",0x2274:"\u006e\u006c\u0065\u0073\u0073\u0073\u0069\u006d",0x1e49:"\u006e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff4e:"\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x339a:"\u006e\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x09a3:"\u006e\u006e\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0923:"\u006en\u0061\u0064\u0065\u0076\u0061",0x0aa3:"n\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a23:"n\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0929:"\u006e\u006e\u006e\u0061\u0064\u0065\u0076\u0061",0x306e:"\u006e\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ce:"\u006e\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff89:"\u006e\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x00a0:"\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065",0x0e13:"\u006eo\u006e\u0065\u006e\u0074\u0068\u0061i",0x0e19:"\u006e\u006f\u006e\u0075\u0074\u0068\u0061\u0069",0x0646:"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfee6:"\u006eo\u006fn\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb9f:"n\u006f\u006f\u006e\u0067hu\u006en\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfee7:"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfee5:"\u006e\u006f\u006fn\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfcd2:"n\u006f\u006f\u006e\u006aee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfc4b:"\u006e\u006f\u006f\u006eje\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063",0xfee8:"\u006e\u006fo\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcd5:"n\u006f\u006f\u006e\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfc4e:"\u006e\u006f\u006f\u006eme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063",0xfc8d:"\u006e\u006f\u006f\u006eno\u006f\u006e\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc8e:"\u006eo\u006f\u006e\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066\u006da\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xfc4f:"n\u006f\u006f\u006e\u0077\u0069\u0074h\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075r\u0061\u0069\u0073o\u006ca\u0074\u0065\u0064",0xfcd3:"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xe815:"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068e\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfcd4:"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfc8f:"\u006e\u006fo\u006e\u0077\u0069t\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc50:"\u006e\u006f\u006f\u006ewi\u0074\u0068\u0079\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfc70:"\u006e\u006f\u006f\u006e\u0077\u0069\u0074\u0068\u007a\u0061\u0069\u006ef\u0069\u006e\u0061\u006c",0x2247:"\u006e\u006f\u0074\u0061\u0070\u0070\u0072\u006f\u0078e\u0071\u0075\u0061\u006c",0x21ae:"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068",0x219a:"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",0x219b:"\u006e\u006f\u0074\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",0x2224:"\u006e\u006f\u0074\u0062\u0061\u0072",0x220c:"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073",0x21ce:"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068",0x2209:"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074",0x2260:"\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2204:"\u006e\u006f\u0074\u0065\u0078\u0069\u0073\u0074\u0065n\u0074\u0069\u0061\u006c",0x22ae:"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s",0x22af:"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061",0x226f:"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072",0x2271:"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c",0x2279:"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073",0x2a7e:"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c",0x2262:"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c",0x226e:"\u006eo\u0074\u006c\u0065\u0073\u0073",0x2270:"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c",0x2226:"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x2280:"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073",0x22ad:"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073",0x2241:"\u006e\u006f\u0074\u0073\u0069\u006d\u0069\u006c\u0061\u0072",0x2284:"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t",0x2288:"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c",0x2281:"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073",0x2285:"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074",0x2289:"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c",0x22ec:"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074",0x22ed:"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074",0x22ea:"\u006eo\u0074t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",0x22eb:"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x22ac:"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065",0x0576:"n\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24a9:"\u006e\u0070\u0061\u0072\u0065\u006e",0x2a14:"\u006ep\u006f\u006c\u0069\u006e\u0074",0x22e0:"\u006e\u0070\u0072e\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",0x2244:"\u006e\u0073\u0069m\u0065",0x22e2:"n\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071",0x22e3:"n\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071",0x33b1:"\u006e\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x22e1:"\u006e\u0073\u0075c\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",0x207f:"\u006es\u0075\u0070\u0065\u0072\u0069\u006fr",0x00f1:"\u006e\u0074\u0069\u006c\u0064\u0065",0x03bd:"\u006e\u0075",0x306c:"\u006e\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30cc:"\u006e\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff87:"\u006e\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x09bc:"\u006e\u0075\u006bt\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x093c:"\u006eu\u006b\u0074\u0061\u0064\u0065\u0076a",0x0abc:"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a3c:"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0023:"\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e",0xff03:"\u006e\u0075\u006d\u0062er\u0073\u0069\u0067\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe5f:"\u006eu\u006db\u0065\u0072\u0073\u0069\u0067\u006e\u0073\u006d\u0061\u006c\u006c",0x0374:"\u006e\u0075m\u0065\u0072\u0061l\u0073\u0069\u0067\u006e\u0067\u0072\u0065\u0065\u006b",0x0375:"n\u0075\u006d\u0065\u0072al\u0073i\u0067\u006e\u006c\u006f\u0077e\u0072\u0067\u0072\u0065\u0065\u006b",0x2116:"\u006e\u0075\u006d\u0065\u0072\u006f",0x05e0:"\u006e\u0075\u006e",0xfb40:"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h",0x2902:"n\u0076\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2904:"\u006e\u0076L\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2903:"\u006e\u0076\u0052i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x29de:"\u006ev\u0069\u006e\u0066\u0074\u0079",0x21f7:"n\u0076\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2b39:"\u006ev\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x21f9:"\u006e\u0076l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x21f8:"\u006e\u0076\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2914:"\u006e\u0076r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x33b5:"\u006e\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x2b34:"\u006ev\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077",0x2b3c:"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c",0x2900:"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2917:"\u006e\u0076\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x2932:"n\u0077\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077",0x2921:"\u006ew\u0073\u0065\u0061\u0072\u0072\u006fw",0x33bb:"\u006e\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x099e:"\u006e\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091e:"\u006ey\u0061\u0064\u0065\u0076\u0061",0x0a9e:"n\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1e:"n\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x006f:"\u006f",0x00f3:"\u006f\u0061\u0063\u0075\u0074\u0065",0x0e2d:"\u006f\u0061\u006e\u0067\u0074\u0068\u0061\u0069",0x233d:"\u006f\u0062\u0061\u0072",0x0275:"\u006fb\u0061\u0072\u0072\u0065\u0064",0x04e9:"\u006fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04eb:"\u006f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0993:"\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x311b:"\u006fb\u006f\u0070\u006f\u006d\u006f\u0066o",0x29ba:"\u006f\u0062\u006f\u0074",0x23e0:"\u006fb\u0072\u0062\u0072\u0061\u006b",0x014f:"\u006f\u0062\u0072\u0065\u0076\u0065",0x29b8:"\u006fb\u0073\u006c\u0061\u0073\u0068",0x0911:"o\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061",0x0a91:"\u006fc\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0949:"o\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061",0x0ac9:"\u006fc\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x01d2:"\u006f\u0063\u0061\u0072\u006f\u006e",0x24de:"\u006fc\u0069\u0072\u0063\u006c\u0065",0x00f4:"o\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ed1:"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1ed9:"\u006f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ed3:"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ed5:"o\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0x1ed7:"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x043e:"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c",0x020d:"\u006fd\u0062\u006c\u0067\u0072\u0061\u0076e",0x0913:"\u006f\u0064\u0065v\u0061",0x00f6:"\u006fd\u0069\u0065\u0072\u0065\u0073\u0069s",0x04e7:"\u006f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x2a38:"\u006f\u0064\u0069\u0076",0x1ecd:"\u006fd\u006f\u0074\u0062\u0065\u006c\u006fw",0x29bc:"\u006f\u0064\u006ft\u0073\u006c\u0061\u0073\u0068\u0064\u006f\u0074",0x0153:"\u006f\u0065",0x315a:"\u006f\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x02db:"\u006f\u0067\u006f\u006e\u0065\u006b",0x0328:"\u006fg\u006f\u006e\u0065\u006b\u0063\u006db",0x00f2:"\u006f\u0067\u0072\u0061\u0076\u0065",0x29c1:"\u006f\u0067\u0072e\u0061\u0074\u0065\u0072\u0074\u0068\u0061\u006e",0x0a93:"\u006fg\u0075\u006a\u0061\u0072\u0061\u0074i",0x0585:"\u006f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x304a:"\u006fh\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ecf:"\u006f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01a1:"\u006f\u0068\u006fr\u006e",0x1edb:"\u006f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ee3:"\u006f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1edd:"\u006f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1edf:"\u006f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1ee1:"\u006f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x0151:"\u006f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0x01a3:"\u006f\u0069",0x2230:"\u006f\u0069\u0069\u0069\u006e\u0074",0x222f:"\u006f\u0069\u0069n\u0074",0x2233:"\u006f\u0069n\u0074\u0063\u0074r\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x020f:"\u006f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x30aa:"\u006fk\u0061\u0074\u0061\u006b\u0061\u006ea",0xff75:"\u006fk\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x3157:"\u006fk\u006f\u0072\u0065\u0061\u006e",0x29bb:"\u006fl\u0063\u0072\u006f\u0073\u0073",0x05ab:"\u006fl\u0065\u0068\u0065\u0062\u0072\u0065w",0x29c0:"\u006fl\u0065\u0073\u0073\u0074\u0068\u0061n",0x014d:"\u006fm\u0061\u0063\u0072\u006f\u006e",0x1e53:"\u006f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e51:"\u006f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x0950:"\u006f\u006d\u0064\u0065\u0076\u0061",0x03c9:"\u006f\u006d\u0065g\u0061",0x03d6:"\u006f\u006d\u0065\u0067\u0061\u0031",0x0461:"\u006f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0277:"\u006f\u006de\u0067\u0061\u006ca\u0074\u0069\u006e\u0063\u006c\u006f\u0073\u0065\u0064",0x047b:"\u006fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x047d:"\u006fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x03ce:"\u006f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073",0x0ad0:"\u006f\u006d\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x03bf:"\u006fm\u0069\u0063\u0072\u006f\u006e",0x03cc:"\u006f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0xff4f:"\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0031:"\u006f\u006e\u0065",0x09e7:"\u006f\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0967:"\u006fn\u0065\u0064\u0065\u0076\u0061",0x2024:"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072",0x215b:"\u006fn\u0065\u0065\u0069\u0067\u0068\u0074h",0x2155:"\u006f\u006e\u0065\u0066\u0069\u0066\u0074\u0068",0xf6dc:"\u006fn\u0065\u0066\u0069\u0074\u0074\u0065d",0x0ae7:"o\u006e\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a67:"o\u006e\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0661:"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",0x00bd:"\u006fn\u0065\u0068\u0061\u006c\u0066",0x3021:"o\u006e\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3220:"\u006f\u006e\u0065\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x2081:"o\u006e\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff11:"\u006f\u006e\u0065m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x09f4:"\u006f\u006e\u0065\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0xf731:"o\u006e\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2474:"\u006f\u006e\u0065\u0070\u0061\u0072\u0065\u006e",0x2488:"\u006fn\u0065\u0070\u0065\u0072\u0069\u006fd",0x06f1:"\u006f\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x00bc:"\u006f\u006e\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072",0x2170:"\u006f\u006e\u0065\u0072\u006f\u006d\u0061\u006e",0x2159:"\u006f\u006e\u0065\u0073\u0069\u0078\u0074\u0068",0x00b9:"o\u006e\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e51:"\u006fn\u0065\u0074\u0068\u0061\u0069",0x2153:"\u006f\u006e\u0065\u0074\u0068\u0069\u0072\u0064",0x01eb:"\u006fo\u0067\u006f\u006e\u0065\u006b",0x01ed:"\u006f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e",0x0a13:"\u006f\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a4b:"\u006fo\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0254:"\u006f\u006f\u0070e\u006e",0x24aa:"\u006f\u0070\u0061\u0072\u0065\u006e",0x29b9:"\u006f\u0070\u0065r\u0070",0x2a2d:"\u006f\u0070\u006c\u0075\u0073\u006c\u0068\u0072\u0069\u006d",0x2a2e:"\u006f\u0070\u006c\u0075\u0073\u0072\u0068\u0072\u0069\u006d",0x2325:"\u006f\u0070\u0074\u0069\u006f\u006e",0x00aa:"o\u0072\u0064\u0066\u0065\u006d\u0069\u006e\u0069\u006e\u0065",0x00ba:"\u006f\u0072\u0064m\u0061\u0073\u0063\u0075\u006c\u0069\u006e\u0065",0x22b6:"\u006f\u0072\u0069\u0067\u006f\u0066",0x221f:"\u006f\u0072\u0074\u0068\u006f\u0067\u006f\u006e\u0061\u006c",0x22bb:"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065",0x0912:"\u006f\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061",0x094a:"\u006f\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x00f8:"\u006f\u0073\u006c\u0061\u0073\u0068",0x01ff:"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065",0x3049:"\u006f\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a9:"\u006f\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff6b:"\u006f\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xf6f0:"\u006fs\u0075\u0070\u0065\u0072\u0069\u006fr",0x047f:"\u006f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x00f5:"\u006f\u0074\u0069\u006c\u0064\u0065",0x1e4d:"o\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e4f:"\u006f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073",0x2a36:"\u006ft\u0069\u006d\u0065\u0073\u0068\u0061t",0x2a34:"o\u0074\u0069\u006d\u0065\u0073\u006c\u0068\u0072\u0069\u006d",0x2a35:"o\u0074\u0069\u006d\u0065\u0073\u0072\u0068\u0072\u0069\u006d",0x3121:"\u006f\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x2125:"\u006f\u0075\u006ec\u0065",0x23de:"\u006fv\u0065\u0072\u0062\u0072\u0061\u0063e",0x23b4:"o\u0076\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074",0x20d6:"\u006f\u0076\u0065\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x20e1:"\u006fv\u0065r\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x203e:"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065",0xfe4a:"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0063e\u006e\u0074e\u0072\u006c\u0069\u006e\u0065",0x0305:"o\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0063\u006d\u0062",0xfe49:"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0064a\u0073\u0068\u0065\u0064",0xfe4c:"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0064\u0062\u006c\u0077\u0061\u0076\u0079",0xfe4b:"\u006f\u0076\u0065r\u006c\u0069\u006e\u0065\u0077\u0061\u0076\u0079",0x23dc:"\u006fv\u0065\u0072\u0070\u0061\u0072\u0065n",0x09cb:"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x094b:"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0acb:"\u006fv\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0070:"\u0070",0x3380:"\u0070\u0061\u0061m\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x332b:"\u0070\u0061\u0061\u0073\u0065\u006e\u0074\u006f\u0073q\u0075\u0061\u0072\u0065",0x09aa:"\u0070a\u0062\u0065\u006e\u0067\u0061\u006ci",0x1e55:"\u0070\u0061\u0063\u0075\u0074\u0065",0x092a:"\u0070\u0061\u0064\u0065\u0076\u0061",0x21df:"\u0070\u0061\u0067\u0065\u0064\u006f\u0077\u006e",0x21de:"\u0070\u0061\u0067\u0065\u0075\u0070",0x0aaa:"\u0070\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2a:"\u0070\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3071:"\u0070\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x0e2f:"\u0070\u0061\u0069\u0079\u0061\u006e\u006e\u006f\u0069\u0074\u0068\u0061\u0069",0x30d1:"\u0070\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0484:"\u0070a\u006c\u0061\u0074\u0061l\u0069\u007a\u0061\u0074\u0069o\u006ec\u0079r\u0069\u006c\u006c\u0069\u0063\u0063\u006db",0x04c0:"\u0070\u0061l\u006f\u0063\u0068k\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x317f:"\u0070\u0061\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x00b6:"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h",0x2029:"\u0070a\u0072a\u0067\u0072\u0061\u0070\u0068s\u0065\u0070a\u0072\u0061\u0074\u006f\u0072",0x2225:"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x25b1:"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c\u006f\u0067\u0072\u0061\u006d",0x25b0:"\u0070a\u0072a\u006c\u006c\u0065\u006c\u006fg\u0072\u0061m\u0062\u006c\u0061\u0063\u006b",0x0028:"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t",0xfd3e:"p\u0061\u0072\u0065\u006ele\u0066t\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063",0xf8ed:"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0062\u0074",0xf8ec:"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0065\u0078",0x208d:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff08:"\u0070a\u0072e\u006e\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xfe59:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c",0x207d:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0xf8eb:"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0074\u0070",0xfe35:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x0029:"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074",0xfd3f:"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063",0xf8f8:"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0074",0xf8f7:"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0065\u0078",0x208e:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0069\u006ef\u0065\u0072\u0069\u006f\u0072",0xff09:"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe5a:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c",0x207e:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0073\u0075p\u0065\u0072\u0069\u006f\u0072",0xf8f6:"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0074\u0070",0xfe36:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c",0x2af3:"\u0070\u0061\u0072\u0073\u0069\u006d",0x2202:"p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066",0x2aa3:"\u0070\u0061\u0072\u0074ia\u006c\u006d\u0065\u0065\u0074\u0063\u006f\u006e\u0074\u0072\u0061\u0063\u0074\u0069o\u006e",0x0599:"\u0070\u0061\u0073h\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x33a9:"\u0070\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x05b7:"\u0070a\u0074\u0061\u0068\u0031\u0031",0x05a1:"p\u0061\u007a\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",0x3106:"\u0070b\u006f\u0070\u006f\u006d\u006f\u0066o",0x24df:"\u0070c\u0069\u0072\u0063\u006c\u0065",0x1e57:"\u0070\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x043f:"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xfb44:"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068",0x333b:"p\u0065\u0065\u007a\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0xfb43:"\u0070\u0065\u0066\u0069na\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x067e:"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c",0x057a:"p\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfb57:"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb58:"\u0070\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x307a:"\u0070\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfb56:"p\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb59:"\u0070e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xe813:"\u0070\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0x30da:"\u0070\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x04a7:"p\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063",0x2b20:"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e",0x2b1f:"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b",0xfb4e:"\u0070\u0065\u0072a\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x0025:"\u0070e\u0072\u0063\u0065\u006e\u0074",0x066a:"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063",0xff05:"\u0070\u0065r\u0063\u0065\u006et\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe6a:"\u0070\u0065\u0072c\u0065\u006e\u0074\u0073\u006d\u0061\u006c\u006c",0x002e:"\u0070\u0065\u0072\u0069\u006f\u0064",0x0589:"\u0070\u0065\u0072\u0069\u006f\u0064\u0061\u0072\u006de\u006e\u0069\u0061\u006e",0x00b7:"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064",0x0097:"\u0070\u0065r\u0069\u006f\u0064c\u0065\u006e\u0074\u0065\u0072\u0065\u0064\u002e\u0030",0xff61:"\u0070e\u0072i\u006f\u0064\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xf6e7:"\u0070\u0065\u0072\u0069\u006f\u0064\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff0e:"\u0070e\u0072i\u006f\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe52:"p\u0065\u0072\u0069\u006f\u0064\u0073\u006d\u0061\u006c\u006c",0xf6e8:"\u0070\u0065\u0072\u0069\u006f\u0064\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0x0342:"\u0070\u0065\u0072\u0069sp\u006f\u006d\u0065\u006e\u0069\u0067\u0072\u0065\u0065\u006b\u0063\u006d\u0062",0x27c2:"\u0070\u0065\u0072\u0070",0x2a5e:"\u0070\u0065\u0072\u0070\u0063\u006f\u0072\u0072\u0065s\u0070\u006f\u006e\u0064",0x22a5:"\u0070\u0065\u0072\u0070\u0065\u006e\u0064\u0069\u0063\u0075\u006c\u0061\u0072",0x2ae1:"\u0070\u0065\u0072p\u0073",0x2031:"\u0070\u0065\u0072\u0074\u0065\u006e\u0074\u0068\u006fu\u0073\u0061\u006e\u0064",0x2030:"p\u0065\u0072\u0074\u0068\u006f\u0075\u0073\u0061\u006e\u0064",0x20a7:"\u0070\u0065\u0073\u0065\u0074\u0061",0xf81b:"\u0070\u0065\u0073o\u0031",0x338a:"\u0070\u0066\u0073\u0071\u0075\u0061\u0072\u0065",0x09ab:"\u0070\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x092b:"\u0070h\u0061\u0064\u0065\u0076\u0061",0x0aab:"p\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2b:"p\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x03c6:"\u0070\u0068\u0069",0x03d5:"\u0070\u0068\u0069\u0031",0x327a:"p\u0068i\u0065\u0075\u0070\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x321a:"\u0070\u0068\u0069\u0065up\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x326c:"\u0070\u0068\u0069\u0065up\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314d:"\u0070\u0068\u0069\u0065\u0075\u0070\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320c:"\u0070h\u0069e\u0075\u0070\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x0278:"\u0070\u0068\u0069\u006c\u0061\u0074\u0069\u006e",0x0e3a:"p\u0068\u0069\u006e\u0074\u0068\u0075\u0074\u0068\u0061\u0069",0x01a5:"\u0070\u0068\u006fo\u006b",0x0e1e:"p\u0068\u006f\u0070\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e1c:"\u0070\u0068\u006fp\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069",0x0e20:"\u0070\u0068\u006f\u0073\u0061\u006d\u0070\u0068\u0061o\u0074\u0068\u0061\u0069",0x03c0:"\u0070\u0069",0x3273:"\u0070i\u0065u\u0070\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3213:"\u0070\u0069\u0065\u0075\u0070\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3176:"\u0070\u0069e\u0075\u0070\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3265:"\u0070\u0069\u0065\u0075\u0070\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3172:"\u0070\u0069\u0065\u0075\u0070\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e",0x3142:"p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x3205:"\u0070\u0069e\u0075\u0070\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3174:"p\u0069\u0065\u0075\u0070si\u006fs\u006b\u0069\u0079\u0065\u006fk\u006b\u006f\u0072\u0065\u0061\u006e",0x3144:"\u0070i\u0065u\u0070\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x3175:"p\u0069\u0065\u0075\u0070si\u006fs\u0074\u0069\u006b\u0065\u0075t\u006b\u006f\u0072\u0065\u0061\u006e",0x3177:"\u0070i\u0065u\u0070\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e",0x3173:"\u0070\u0069\u0065\u0075\u0070\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x3074:"\u0070\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d4:"\u0070\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0583:"\u0070\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x210f:"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069",0x002b:"\u0070\u006c\u0075\u0073",0x031f:"\u0070\u006c\u0075s\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x2a25:"\u0070l\u0075\u0073\u0064\u006f\u0074",0x2a72:"\u0070l\u0075\u0073\u0065\u0071\u0071",0x2a23:"\u0070l\u0075\u0073\u0068\u0061\u0074",0x208a:"\u0070\u006c\u0075s\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0x00b1:"\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s",0x02d6:"\u0070l\u0075\u0073\u006d\u006f\u0064",0xff0b:"\u0070\u006c\u0075\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a26:"\u0070l\u0075\u0073\u0073\u0069\u006d",0xfe62:"\u0070l\u0075\u0073\u0073\u006d\u0061\u006cl",0x2a27:"\u0070\u006c\u0075\u0073\u0073\u0075\u0062\u0074\u0077\u006f",0x207a:"\u0070\u006c\u0075s\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2a28:"\u0070\u006c\u0075\u0073\u0074\u0072\u0069\u0066",0xff50:"\u0070\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x33d8:"\u0070\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x307d:"\u0070\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x261f:"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u0064\u006f\u0077\u006e\u0077\u0068\u0069t\u0065",0x261c:"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u006c\u0065\u0066\u0074\u0077\u0068\u0069t\u0065",0x261d:"p\u006fi\u006e\u0074\u0069\u006e\u0067\u0069\u006e\u0064e\u0078\u0075\u0070\u0077hi\u0074\u0065",0x2a15:"\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0074",0x30dd:"\u0070\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0e1b:"\u0070o\u0070\u006c\u0061\u0074\u0068\u0061i",0x3012:"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b",0x3020:"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072k\u0066\u0061\u0063\u0065",0x24ab:"\u0070\u0070\u0061\u0072\u0065\u006e",0x2ab7:"\u0070\u0072\u0065\u0063\u0061\u0070\u0070\u0072\u006f\u0078",0x2ab9:"\u0070\u0072e\u0063\u0065\u0064e\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076",0x2ab5:"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u006e\u006f\u0074\u0073\u006cn\u0074\u0065\u0071\u006c",0x22e8:"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074",0x227a:"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073",0x2aaf:"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c",0x227c:"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079",0x227e:"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c",0x2ab3:"\u0070r\u0065\u0063\u0065\u0071\u0071",0x2ab1:"\u0070r\u0065\u0063\u006e\u0065\u0071",0x211e:"\u0070\u0072\u0065s\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e",0x0243:"p\u0072\u0069\u006d\u0065\u0064\u0062\u006c\u006d\u006f\u0064",0x02b9:"\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064",0x2035:"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x220f:"\u0070r\u006f\u0064\u0075\u0063\u0074",0x2313:"\u0070\u0072\u006f\u0066\u0073\u0075\u0072\u0066",0x2305:"\u0070\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u0076\u0065",0x30fc:"\u0070\u0072\u006f\u006c\u006f\u006e\u0067\u0065\u0064\u006b\u0061\u006e\u0061",0x2318:"\u0070r\u006f\u0070\u0065\u006c\u006c\u006fr",0x2282:"\u0070\u0072\u006fp\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074",0x2283:"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",0x2237:"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006f\u006e",0x221d:"\u0070\u0072\u006fp\u006f\u0072\u0074\u0069\u006f\u006e\u0061\u006c",0x22b0:"\u0070\u0072\u0075\u0072\u0065\u006c",0x03c8:"\u0070\u0073\u0069",0x0471:"p\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0486:"\u0070s\u0069\u006c\u0069\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062",0x33b0:"\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x3077:"\u0070\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d7:"\u0070\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x27d3:"\u0070\u0075\u006c\u006c\u0062\u0061\u0063\u006b",0x2008:"\u0070\u0075n\u0063\u0074\u0075a\u0074\u0069\u006f\u006e\u0073\u0070\u0061\u0063\u0065",0x27d4:"\u0070u\u0073\u0068\u006f\u0075\u0074",0x33b4:"\u0070\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x33ba:"\u0070\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x0071:"\u0071",0x0958:"\u0071\u0061\u0064\u0065\u0076\u0061",0x05a8:"q\u0061\u0064\u006d\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0xfed6:"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfed7:"\u0071\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfed5:"q\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfed8:"\u0071a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x059f:"\u0071\u0061r\u006e\u0065\u0079p\u0061\u0072\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x3111:"\u0071b\u006f\u0070\u006f\u006d\u006f\u0066o",0x24e0:"\u0071c\u0069\u0072\u0063\u006c\u0065",0x02a0:"\u0071\u0068\u006fo\u006b",0xff51:"\u0071\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfb47:"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h",0x05e7:"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",0x24ac:"\u0071\u0070\u0061\u0072\u0065\u006e",0x2057:"\u0071\u0070\u0072\u0069\u006d\u0065",0x2669:"q\u0075\u0061\u0072\u0074\u0065\u0072\u006e\u006f\u0074\u0065",0x05bb:"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x225f:"\u0071u\u0065\u0073\u0074\u0065\u0071",0x003f:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e",0x055e:"\u0071\u0075e\u0073\u0074\u0069o\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x00bf:"\u0071\u0075\u0065s\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006e",0xf7bf:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006es\u006d\u0061\u006c\u006c",0x037e:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0067\u0072\u0065\u0065\u006b",0xff1f:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xf73f:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x0022:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c",0x201e:"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u0062\u0061\u0073\u0065",0x201c:"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u006c\u0065\u0066\u0074",0xff02:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x301e:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0070\u0072\u0069\u006d\u0065",0x301d:"q\u0075\u006f\u0074\u0065db\u006cp\u0072\u0069\u006d\u0065\u0072e\u0076\u0065\u0072\u0073\u0065\u0064",0x201f:"q\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0065\u0076",0x201d:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074",0x2018:"\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t",0x0244:"\u0071\u0075\u006ft\u0065\u006c\u0065\u0066\u0074\u006d\u006f\u0064",0x201b:"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x2019:"\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074",0x0149:"q\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u006e",0x201a:"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u0062\u0061\u0073\u0065",0x0027:"q\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065",0xff07:"q\u0075o\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065m\u006f\u006e\u006f\u0073pa\u0063\u0065",0x0072:"\u0072",0x27eb:"\u0072\u0041\u006e\u0067\u006c\u0065",0x2984:"\u0072\u0042\u0072\u0061\u0063\u0065",0x2986:"\u0072\u0050\u0061\u0072\u0065\u006e",0x057c:"\u0072\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x09b0:"\u0072a\u0062\u0065\u006e\u0067\u0061\u006ci",0x0155:"\u0072\u0061\u0063\u0075\u0074\u0065",0x0930:"\u0072\u0061\u0064\u0065\u0076\u0061",0x221a:"\u0072a\u0064\u0069\u0063\u0061\u006c",0xf8e5:"\u0072a\u0064\u0069\u0063\u0061\u006c\u0065x",0x33ae:"\u0072\u0061\u0064\u006f\u0076\u0065\u0072\u0073\u0073q\u0075\u0061\u0072\u0065",0x33af:"r\u0061\u0064\u006f\u0076er\u0073s\u0071\u0075\u0061\u0072\u0065d\u0073\u0071\u0075\u0061\u0072\u0065",0x33ad:"\u0072a\u0064\u0073\u0071\u0075\u0061\u0072e",0x0ab0:"\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a30:"\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3089:"\u0072\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x024d:"\u0072\u0061\u0069\u0073\u0065\u0064",0x30e9:"\u0072\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff97:"\u0072\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x09f1:"\u0072\u0061\u006c\u006fwe\u0072\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061l\u0069",0x09f0:"\u0072\u0061\u006did\u0064\u006c\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0264:"\u0072\u0061\u006d\u0073\u0068\u006f\u0072\u006e",0x2992:"\u0072a\u006e\u0067\u006c\u0065\u0064\u006ft",0x237c:"r\u0061\u006e\u0067\u006ced\u006fw\u006e\u007a\u0069\u0067\u007aa\u0067\u0061\u0072\u0072\u006f\u0077",0x2236:"\u0072\u0061\u0074i\u006f",0xe816:"\u0072\u0061\u0079\u0061\u006c\u0065\u0066\u006c\u0061\u006d",0x27c6:"\u0072\u0062\u0061\u0067",0x2998:"\u0072\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b",0x3116:"\u0072b\u006f\u0070\u006f\u006d\u006f\u0066o",0x23ad:"\u0072\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064",0x23ac:"\u0072b\u0072\u0061\u0063\u0065\u006d\u0069d",0x23ab:"\u0072\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064",0x23a5:"\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x23a6:"\u0072\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064",0x298e:"\u0072\u0062\u0072a\u0063\u006b\u006c\u0072\u0074\u0069\u0063\u006b",0x298c:"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072",0x23a4:"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064",0x2990:"\u0072\u0062\u0072a\u0063\u006b\u0075\u0072\u0074\u0069\u0063\u006b",0x2773:"\u0072b\u0072\u0062\u0072\u0061\u006b",0x0159:"\u0072\u0063\u0061\u0072\u006f\u006e",0x0157:"\u0072\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81f:"\u0072c\u0065\u0064\u0069\u006c\u006c\u00611",0x24e1:"\u0072c\u0069\u0072\u0063\u006c\u0065",0xf832:"r\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x29fd:"r\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065",0x0211:"\u0072d\u0062\u006c\u0067\u0072\u0061\u0076e",0x292b:"\u0072\u0064\u0069a\u0067\u006f\u0076\u0066\u0064\u0069\u0061\u0067",0x2930:"\u0072\u0064\u0069\u0061\u0067\u006f\u0076\u0073\u0065a\u0072\u0072\u006f\u0077",0x1e59:"\u0072\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e5b:"\u0072d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e5d:"\u0072d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x2117:"r\u0065\u0063\u006f\u0072\u0064\u0072\u0069\u0067\u0068\u0074",0x203b:"\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u006d\u0061\u0072\u006b",0x2286:"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074",0x2287:"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",0x00ae:"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064",0xf8e8:"\u0072\u0065\u0067i\u0073\u0074\u0065\u0072\u0073\u0061\u006e\u0073",0xf6da:"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0073\u0065\u0072\u0069\u0066",0x0631:"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c",0x0580:"r\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfeae:"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x308c:"\u0072\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfead:"r\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x30ec:"\u0072\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff9a:"\u0072\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xfb48:"\u0072\u0065s\u0068\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x05e8:"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q",0x211f:"\u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065",0x29a3:"\u0072\u0065\u0076\u0061\u006e\u0067\u006c\u0065",0x29a5:"\u0072\u0065\u0076a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072",0x22cd:"\u0072\u0065\u0076\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c",0x29b0:"r\u0065\u0076\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074",0x223d:"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065",0x0597:"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077",0x2310:"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074",0x2aee:"\u0072e\u0076\u006e\u006d\u0069\u0064",0x29d2:"\u0072\u0066\u0062\u006f\u0077\u0074\u0069\u0065",0x027e:"\u0072f\u0069\u0073\u0068\u0068\u006f\u006fk",0x027f:"\u0072\u0066\u0069\u0073\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076e\u0072\u0073\u0065\u0064",0x29d5:"\u0072f\u0074\u0069\u006d\u0065\u0073",0x09dd:"\u0072\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x095d:"\u0072h\u0061\u0064\u0065\u0076\u0061",0x03c1:"\u0072\u0068\u006f",0x027d:"\u0072\u0068\u006fo\u006b",0x027b:"r\u0068\u006f\u006f\u006b\u0074\u0075\u0072\u006e\u0065\u0064",0x02b5:"\u0072\u0068\u006f\u006fkt\u0075\u0072\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x03f1:"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b",0x02de:"\u0072\u0068\u006f\u0074\u0069\u0063\u0068\u006f\u006f\u006b\u006d\u006f\u0064",0x3271:"\u0072i\u0065u\u006c\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3211:"\u0072\u0069\u0065\u0075\u006c\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3263:"\u0072\u0069\u0065\u0075\u006c\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3140:"\u0072\u0069e\u0075\u006c\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x313a:"\u0072\u0069\u0065\u0075\u006c\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e",0x3169:"r\u0069\u0065\u0075\u006cki\u0079e\u006f\u006b\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e",0x3139:"r\u0069\u0065\u0075\u006c\u006b\u006f\u0072\u0065\u0061\u006e",0x313b:"\u0072\u0069e\u0075\u006c\u006di\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e",0x316c:"\u0072i\u0065u\u006c\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x3203:"\u0072\u0069e\u0075\u006c\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x313f:"\u0072i\u0065u\u006c\u0070\u0068\u0069\u0065u\u0070\u0068k\u006f\u0072\u0065\u0061\u006e",0x313c:"\u0072\u0069e\u0075\u006c\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x316b:"r\u0069e\u0075\u006c\u0070\u0069\u0065\u0075\u0070\u0073i\u006f\u0073\u006b\u006fre\u0061\u006e",0x313d:"\u0072i\u0065u\u006c\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x313e:"\u0072i\u0065u\u006c\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e",0x316a:"\u0072\u0069\u0065\u0075\u006c\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x316d:"\u0072\u0069\u0065\u0075ly\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065a\u006e",0x299d:"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006ce\u006d\u0064\u006f\u0074",0x231d:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0065",0x231c:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0077",0x231f:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0065",0x299c:"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0071\u0072",0x231e:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0077",0x2975:"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078",0x2b48:"r\u0069g\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062a\u0063\u006b\u0061\u0070pr\u006f\u0078",0x2b4c:"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0062\u0073i\u006d\u0069\u006c\u0061\u0072",0x291e:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0064\u0069a\u006d\u006f\u006e\u0064",0x2b43:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0067\u0074\u0072",0x27f4:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u006f\u006eo\u0070\u006c\u0075\u0073",0x2945:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006fw\u0070\u006c\u0075\u0073",0x2942:"\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006fr\u0074\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2974:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0069m\u0069\u006c\u0061\u0072",0x2b44:"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0073\u0075\u0070\u0073\u0065\u0074",0x21fe:"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0074\u0072i\u0061\u006e\u0067\u006c\u0065",0x2947:"r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0078",0x290d:"\u0072\u0069\u0067h\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x2933:"\u0072\u0069g\u0068\u0074\u0063u\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077",0x291c:"\u0072\u0069\u0067h\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c",0x2911:"\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077",0x2937:"r\u0069g\u0068\u0074\u0064\u006f\u0077\u006e\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077",0x297d:"\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x20d1:"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006ea\u0063\u0063\u0065\u006e\u0074",0x2957:"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u0062\u0061\u0072",0x2964:"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070\u0064\u006f\u0077\u006e",0x2953:"\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006eu\u0070\u0062\u0061\u0072",0x296c:"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006eu\u0070\u0064\u0061\u0073\u0068",0x2970:"\u0072\u0069\u0067\u0068\u0074\u0069\u006d\u0070\u006c\u0079",0x2969:"r\u0069\u0067\u0068\u0074le\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e",0x2968:"\u0072\u0069\u0067\u0068tl\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070",0x263d:"\u0072i\u0067\u0068\u0074\u006d\u006f\u006fn",0x27d6:"\u0072\u0069\u0067\u0068\u0074\u006f\u0075\u0074\u0065r\u006a\u006f\u0069\u006e",0x2b54:"\u0072\u0069\u0067\u0068\u0074\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e",0x2b53:"\u0072i\u0067h\u0074\u0070\u0065\u006e\u0074a\u0067\u006fn\u0062\u006c\u0061\u0063\u006b",0x21c9:"\u0072\u0069g\u0068\u0074\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073",0x0319:"\u0072\u0069\u0067\u0068\u0074\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x291a:"\u0072i\u0067\u0068\u0074\u0074\u0061\u0069l",0x21f6:"\u0072\u0069g\u0068\u0074\u0074h\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073",0x22bf:"\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x219d:"\u0072\u0069\u0067\u0068\u0074\u0077\u0061\u0076\u0065a\u0072\u0072\u006f\u0077",0x308a:"\u0072\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ea:"\u0072\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff98:"\u0072\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x02da:"\u0072\u0069\u006e\u0067",0xf007:"\u0072\u0069\u006eg\u0031",0x0325:"\u0072\u0069\u006eg\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x030a:"\u0072i\u006e\u0067\u0063\u006d\u0062",0xd80d:"\u0072\u0069\u006e\u0067\u0066\u0069\u0074\u0074\u0065\u0064",0x02bf:"\u0072\u0069\u006eg\u0068\u0061\u006c\u0066\u006c\u0065\u0066\u0074",0x0559:"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0061\u0072\u006d\u0065ni\u0061\u006e",0x031c:"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0062\u0065\u006c\u006fwc\u006d\u0062",0x02d3:"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0063\u0065\u006e\u0074er\u0065\u0064",0x02be:"\u0072\u0069\u006e\u0067\u0068\u0061\u006c\u0066\u0072\u0069\u0067\u0068\u0074",0x0339:"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0062e\u006c\u006f\u0077\u0063\u006d\u0062",0x02d2:"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0063e\u006e\u0074\u0065\u0072\u0065\u0064",0x2256:"r\u0069\u006e\u0067\u0069\u006e\u0065\u0071\u0075\u0061\u006c",0x028f:"\u0072\u0069\u006e\u0067le\u0066\u0074\u0068\u0061\u006c\u0066\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x0248:"\u0072\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066s\u0075\u0070\u0065\u0072",0x2a22:"\u0072\u0069\u006e\u0067\u0070\u006c\u0075\u0073",0x02ac:"r\u0069n\u0067\u0072\u0069\u0067\u0068\u0074\u0068\u0061l\u0066\u0073\u0075\u0062no\u0073\u0070",0x0247:"\u0072i\u006eg\u0072\u0069\u0067\u0068\u0074h\u0061\u006cf\u0073\u0075\u0070\u0065\u0072",0x0213:"\u0072\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x3351:"\u0072\u0069\u0074\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x202b:"\u0072\u006c\u0065",0x1e5f:"\u0072\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x027c:"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067",0x027a:"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064",0xff52:"\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x23b1:"\u0072\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065",0x308d:"\u0072\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ed:"\u0072\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff9b:"\u0072\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0e23:"\u0072o\u0072\u0075\u0061\u0074\u0068\u0061i",0x24ad:"\u0072\u0070\u0061\u0072\u0065\u006e",0x239f:"\u0072\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x2994:"\u0072p\u0061\u0072\u0065\u006e\u0067\u0074r",0x23a0:"\u0072\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064",0x239e:"\u0072\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064",0x2a12:"\u0072\u0070\u0070\u006f\u006c\u0069\u006e\u0074",0x09dc:"\u0072\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0931:"\u0072r\u0061\u0064\u0065\u0076\u0061",0x0a5c:"r\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x298a:"\u0072r\u0061\u006e\u0067\u006c\u0065",0x0691:"\u0072\u0072\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",0xfb8d:"\u0072r\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x2988:"\u0072\u0072\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073",0x09e0:"\u0072\u0072v\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0960:"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x0ae0:"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0067\u0075\u006aa\u0072\u0061\u0074\u0069",0x09c4:"\u0072r\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci",0x0944:"\u0072\u0072\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061",0x0ac4:"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006fw\u0065\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061r\u0061\u0074\u0069",0x29f7:"\u0072s\u006f\u006c\u0062\u0061\u0072",0x2ace:"\u0072s\u0071\u0068\u006f\u006f\u006b",0x2a65:"\u0072\u0073\u0075\u0062",0x023c:"\u0072\u0073\u0075\u0070\u0065\u0072",0xf6f1:"\u0072s\u0075\u0070\u0065\u0072\u0069\u006fr",0x2590:"\u0072t\u0062\u006c\u006f\u0063\u006b",0x2595:"\u0072\u0074\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b",0x29ce:"\u0072\u0074\u0072\u0069\u006c\u0074\u0072\u0069",0x0279:"\u0072t\u0075\u0072\u006e\u0065\u0064",0x02b4:"\u0072t\u0075r\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x023e:"\u0072\u0074u\u0072\u006e\u0072t\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072",0x023d:"\u0072\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072",0x308b:"\u0072\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30eb:"\u0072\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff99:"\u0072\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x29f4:"r\u0075\u006c\u0065\u0064\u0065\u006c\u0061\u0079\u0065\u0064",0x20a8:"\u0072\u0075\u0070e\u0065",0x09f2:"\u0072\u0075p\u0065\u0065\u006da\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x09f3:"\u0072\u0075p\u0065\u0065\u0073i\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0xf6dd:"\u0072\u0075\u0070\u0069\u0061\u0068",0x0e24:"\u0072\u0075\u0074\u0068\u0061\u0069",0x23b9:"\u0072v\u0062\u006f\u0078\u006c\u0069\u006ee",0x098b:"\u0072v\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x090b:"\u0072\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x0a8b:"\u0072\u0076o\u0063\u0061\u006ci\u0063\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x09c3:"\u0072v\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0943:"r\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac3:"\u0072v\u006f\u0063\u0061\u006ci\u0063\u0076\u006f\u0077\u0065l\u0073i\u0067n\u0067\u0075\u006a\u0061\u0072\u0061\u0074i",0x29d9:"\u0072\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x0073:"\u0073",0x09b8:"\u0073a\u0062\u0065\u006e\u0067\u0061\u006ci",0x015b:"\u0073\u0061\u0063\u0075\u0074\u0065",0x1e65:"\u0073a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0938:"\u0073\u0061\u0064\u0065\u0076\u0061",0xfeba:"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfebb:"\u0073\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb9:"s\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfebc:"\u0073a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0ab8:"\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a38:"\u0073\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3055:"\u0073\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b5:"\u0073\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7b:"\u0073\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xfdfa:"\u0073\u0061\u006cl\u0061\u006c\u006c\u0061h\u006f\u0075\u0061\u006c\u0061\u0079\u0068e\u0077\u0061\u0073\u0061\u006c\u006c\u0061\u006d\u0061\u0072\u0061\u0062\u0069\u0063",0x05e1:"\u0073\u0061\u006d\u0065\u006b\u0068",0xfb41:"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077",0x2143:"\u0073\u0061\u006e\u0073\u004c\u006d\u0069\u0072\u0072\u006f\u0072\u0065\u0064",0x2142:"s\u0061\u006e\u0073\u004c\u0074\u0075\u0072\u006e\u0065\u0064",0x0e32:"\u0073\u0061\u0072\u0061\u0061\u0061\u0074\u0068\u0061\u0069",0x0e41:"\u0073\u0061\u0072\u0061\u0061\u0065\u0074\u0068\u0061\u0069",0x0e44:"\u0073a\u0072a\u0061\u0069\u006d\u0061\u0069m\u0061\u006ca\u0069\u0074\u0068\u0061\u0069",0x0e43:"\u0073\u0061\u0072\u0061\u0061\u0069\u006d\u0061\u0069\u006d\u0075\u0061n\u0074\u0068\u0061\u0069",0x0e33:"\u0073\u0061\u0072\u0061\u0061\u006d\u0074\u0068\u0061\u0069",0x0e30:"\u0073a\u0072\u0061\u0061\u0074\u0068\u0061i",0x0e40:"\u0073a\u0072\u0061\u0065\u0074\u0068\u0061i",0xf886:"\u0073\u0061\u0072\u0061\u0069\u0069\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0x0e35:"\u0073\u0061\u0072\u0061\u0069\u0069\u0074\u0068\u0061\u0069",0xf885:"\u0073\u0061\u0072\u0061\u0069\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e34:"\u0073a\u0072\u0061\u0069\u0074\u0068\u0061i",0x0e42:"\u0073a\u0072\u0061\u006f\u0074\u0068\u0061i",0xf888:"\u0073a\u0072a\u0075\u0065\u0065\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e37:"s\u0061\u0072\u0061\u0075\u0065\u0065\u0074\u0068\u0061\u0069",0xf887:"\u0073\u0061\u0072\u0061\u0075\u0065\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0x0e36:"\u0073\u0061\u0072\u0061\u0075\u0065\u0074\u0068\u0061\u0069",0x0e38:"\u0073a\u0072\u0061\u0075\u0074\u0068\u0061i",0x0e39:"\u0073\u0061\u0072\u0061\u0075\u0075\u0074\u0068\u0061\u0069",0x22a8:"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s",0x3119:"\u0073b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0161:"\u0073\u0063\u0061\u0072\u006f\u006e",0x1e67:"\u0073c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x015f:"\u0073\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf817:"\u0073c\u0065\u0064\u0069\u006c\u006c\u00611",0x0259:"\u0073\u0063\u0068w\u0061",0x04d9:"\u0073\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04db:"s\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x025a:"\u0073c\u0068\u0077\u0061\u0068\u006f\u006fk",0x24e2:"\u0073c\u0069\u0072\u0063\u006c\u0065",0x015d:"s\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0219:"\u0073\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x2a13:"\u0073\u0063\u0070\u006f\u006c\u0069\u006e\u0074",0x2108:"\u0073c\u0072\u0075\u0070\u006c\u0065",0x22b1:"\u0073\u0063\u0075\u0072\u0065\u006c",0x1e61:"\u0073\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e63:"\u0073d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e69:"\u0073d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074",0x033c:"\u0073e\u0061g\u0075\u006c\u006c\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x02af:"\u0073\u0065\u0061\u0067\u0075\u006c\u006c\u0073\u0075b\u006e\u006f\u0073\u0070",0x2033:"\u0073\u0065\u0063\u006f\u006e\u0064",0x02ca:"\u0073\u0065\u0063\u006f\u006e\u0064\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065",0x00a7:"\u0073e\u0063\u0074\u0069\u006f\u006e",0xfeb2:"\u0073e\u0065n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb3:"\u0073\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfeb1:"\u0073\u0065\u0065n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfeb4:"\u0073\u0065e\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcb0:"\u0073\u0065\u0065\u006ewi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0x05b6:"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",0x0592:"\u0073\u0065\u0067\u006f\u006c\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x057d:"s\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x305b:"\u0073\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30bb:"\u0073\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7e:"\u0073\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x003b:"\u0073e\u006d\u0069\u0063\u006f\u006c\u006fn",0xff1b:"\u0073e\u006di\u0063\u006f\u006c\u006f\u006em\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xfe54:"\u0073\u0065\u006d\u0069\u0063\u006f\u006c\u006f\u006es\u006d\u0061\u006c\u006c",0x309c:"\u0073e\u006di\u0076\u006f\u0069\u0063\u0065d\u006d\u0061r\u006b\u006b\u0061\u006e\u0061",0xff9f:"s\u0065\u006d\u0069\u0076\u006f\u0069c\u0065\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006ea\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068",0x3322:"s\u0065\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x3323:"s\u0065\u006e\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x292d:"s\u0065\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077",0x2120:"s\u0065\u0072\u0076\u0069\u0063\u0065\u006d\u0061\u0072\u006b",0x29f5:"\u0073\u0065\u0074\u006d\u0069\u006e\u0075\u0073",0x0037:"\u0073\u0065\u0076e\u006e",0x09ed:"\u0073\u0065\u0076e\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096d:"\u0073e\u0076\u0065\u006e\u0064\u0065\u0076a",0x215e:"\u0073\u0065\u0076e\u006e\u0065\u0069\u0067\u0068\u0074\u0068\u0073",0x0aed:"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6d:"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3027:"\u0073\u0065\u0076\u0065\u006e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3226:"s\u0065\u0076\u0065\u006eid\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e",0x2087:"\u0073\u0065\u0076\u0065\u006e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff17:"\u0073\u0065\u0076\u0065\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xf737:"\u0073\u0065\u0076\u0065\u006e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x247a:"\u0073\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x248e:"s\u0065\u0076\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x06f7:"\u0073\u0065\u0076e\u006e\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2176:"\u0073\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x2077:"\u0073\u0065\u0076\u0065\u006e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2470:"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x2484:"\u0073\u0065\u0076\u0065\u006e\u0074\u0065\u0065\u006ep\u0061\u0072\u0065\u006e",0x2498:"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x0e57:"\u0073e\u0076\u0065\u006e\u0074\u0068\u0061i",0x0577:"s\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x09b6:"\u0073\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0651:"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfc61:"\u0073\u0068\u0061\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061\u0061r\u0061\u0062\u0069\u0063",0xfc5e:"s\u0068a\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063",0xfc60:"\u0073\u0068\u0061\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061\u0061r\u0061\u0062\u0069\u0063",0xfe7d:"\u0073\u0068a\u0064\u0064\u0061h\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",0xfe7c:"\u0073\u0068\u0061\u0064\u0064\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064",0xfc62:"\u0073\u0068\u0061\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061\u0061r\u0061\u0062\u0069\u0063",0xfc5f:"s\u0068a\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063",0xe825:"\u0073h\u0061\u0064\u0064\u0061\u006c\u006fw",0xe829:"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077",0xfcf3:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0064\u0061\u006d\u006da\u006d\u0065\u0064\u0069\u0061\u006c",0xe82b:"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077",0xe828:"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0066\u0061t\u0068\u0061\u006c\u006f\u0077",0xfcf2:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u006d\u0065\u0064\u0069\u0061\u006c",0xe818:"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066a\u0074\u0068\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xe82a:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u0074\u0061\u006e\u006c\u006f\u0077",0xe82c:"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077",0xfcf4:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u006b\u0061\u0073\u0072a\u006d\u0065\u0064\u0069\u0061\u006c",0xe82d:"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077",0x2592:"\u0073\u0068\u0061d\u0065",0xf822:"\u0073\u0068\u0061\u0064\u0065\u0031",0x2591:"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074",0x0936:"\u0073h\u0061\u0064\u0065\u0076\u0061",0x0ab6:"s\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a36:"s\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0593:"\u0073\u0068a\u006c\u0073\u0068e\u006c\u0065\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x3115:"\u0073\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0xfeb6:"\u0073\u0068e\u0065\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb7:"\u0073h\u0065e\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfeb5:"\u0073\u0068\u0065\u0065\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfeb8:"\u0073\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfd30:"s\u0068e\u0065\u006e\u0077\u0069\u0074\u0068\u006d\u0065e\u006d\u0069\u006e\u0069ti\u0061\u006c",0x03e3:"\u0073\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x04bb:"\u0073\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x21b0:"\u0073h\u0069\u0066\u0074\u006c\u0065\u0066t",0x21b1:"\u0073\u0068\u0069\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x03ed:"s\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x05e9:"\u0073\u0068\u0069\u006e",0xfb49:"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068",0xfb2c:"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074",0xfb2d:"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077",0x05c1:"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0xfb2a:"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074",0x0282:"\u0073\u0068\u006fo\u006b",0x2adf:"\u0073\u0068\u006f\u0072\u0074\u0064\u006f\u0077\u006e\u0074\u0061\u0063\u006b",0x2ade:"\u0073\u0068\u006f\u0072\u0074\u006c\u0065\u0066\u0074\u0074\u0061\u0063\u006b",0x2944:"\u0073h\u006f\u0072\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2ae0:"s\u0068\u006f\u0072\u0074\u0075\u0070\u0074\u0061\u0063\u006b",0x29e2:"\u0073h\u0075\u0066\u0066\u006c\u0065",0x03c3:"\u0073\u0069\u0067m\u0061",0x03c2:"\u0073\u0069\u0067\u006d\u0061\u0031",0x03f2:"\u0073\u0069\u0067\u006dal\u0075\u006e\u0061\u0074\u0065\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065e\u006b",0x3057:"\u0073\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b7:"\u0073\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7c:"\u0073\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05bd:"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x2aa0:"\u0073\u0069\u006dg\u0045",0x2a9e:"\u0073\u0069\u006d\u0067\u0074\u0072",0x223c:"\u0073i\u006d\u0069\u006c\u0061\u0072",0x2b49:"\u0073\u0069m\u0069\u006c\u0061r\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2972:"\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",0x2a9f:"\u0073\u0069\u006dl\u0045",0x2a9d:"\u0073i\u006d\u006c\u0065\u0073\u0073",0x2a6c:"s\u0069\u006d\u006d\u0069\u006e\u0075\u0073\u0073\u0069\u006d",0x2246:"\u0073i\u006d\u006e\u0065\u0071\u0071",0x2a24:"\u0073i\u006d\u0070\u006c\u0075\u0073",0x2a6b:"\u0073\u0069\u006d\u0072\u0064\u006f\u0074\u0073",0x223f:"\u0073\u0069\u006e\u0065\u0077\u0061\u0076\u0065",0x3274:"\u0073\u0069\u006f\u0073\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3214:"\u0073\u0069o\u0073\u0061\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x317e:"\u0073i\u006fs\u0063\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3266:"\u0073\u0069o\u0073\u0063\u0069r\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x317a:"\u0073\u0069o\u0073\u006b\u0069y\u0065\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e",0x3145:"\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x317b:"\u0073i\u006fs\u006e\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3206:"\u0073i\u006fs\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x317d:"\u0073i\u006fs\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x317c:"\u0073\u0069o\u0073\u0074\u0069k\u0065\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e",0x0036:"\u0073\u0069\u0078",0x09ec:"\u0073\u0069\u0078\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096c:"\u0073i\u0078\u0064\u0065\u0076\u0061",0x0aec:"s\u0069\u0078\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6c:"s\u0069\u0078\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3026:"s\u0069\u0078\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3225:"\u0073\u0069\u0078\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x2086:"s\u0069\u0078\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff16:"\u0073\u0069\u0078m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf736:"s\u0069\u0078\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2479:"\u0073\u0069\u0078\u0070\u0061\u0072\u0065\u006e",0x2006:"\u0073\u0069\u0078\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065",0x248d:"\u0073i\u0078\u0070\u0065\u0072\u0069\u006fd",0x06f6:"\u0073\u0069\u0078\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2175:"\u0073\u0069\u0078\u0072\u006f\u006d\u0061\u006e",0x2076:"s\u0069\u0078\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x246f:"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x09f9:"\u0073\u0069\u0078\u0074\u0065\u0065n\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079\u0064\u0065\u006e\u006f\u006di\u006e\u0061\u0074\u006f\u0072\u0062\u0065n\u0067\u0061\u006c\u0069",0x2483:"\u0073\u0069\u0078t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2497:"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x0e56:"\u0073i\u0078\u0074\u0068\u0061\u0069",0x002f:"\u0073\u006c\u0061s\u0068",0x02ab:"\u0073\u006c\u0061\u0073\u0068\u006c\u006f\u006e\u0067\u006e\u006f\u0073\u0070",0xff0f:"\u0073\u006c\u0061\u0073\u0068\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x02aa:"\u0073\u006c\u0061\u0073\u0068\u0073\u0068\u006f\u0072t\u006e\u006f\u0073\u0070",0x1e9b:"\u0073\u006c\u006f\u006e\u0067\u0064\u006f\u0074\u0061c\u0063\u0065\u006e\u0074",0x2322:"\u0073l\u0075\u0072\u0061\u0062\u006f\u0076e",0x25c2:"\u0073\u006d\u0061\u006clb\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065f\u0074",0x25b8:"\u0073\u006d\u0061ll\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x06e4:"\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0067\u0068m\u0061\u0064\u0064\u0061",0x220a:"\u0073m\u0061\u006c\u006c\u0069\u006e",0x220d:"\u0073m\u0061\u006c\u006c\u006e\u0069",0x2a33:"\u0073\u006d\u0061\u0073\u0068\u0074\u0069\u006d\u0065\u0073",0x2b29:"\u0073\u006d\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x2b2a:"\u0073\u006d\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x29e4:"\u0073\u006d\u0065\u0070\u0061\u0072\u0073\u006c",0x2323:"\u0073\u006d\u0069l\u0065",0x263a:"\u0073m\u0069\u006c\u0065\u0066\u0061\u0063e",0xff53:"\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2aaa:"\u0073\u006d\u0074",0x2aac:"\u0073\u006d\u0074\u0065",0x2b52:"s\u006d\u0077\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072",0x2b2b:"\u0073\u006d\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x05c3:"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077",0x00ad:"\u0073\u006f\u0066\u0074\u0068\u0079\u0070\u0068\u0065\u006e",0x044c:"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x305d:"\u0073\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30bd:"\u0073\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7f:"\u0073\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0338:"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062",0x0337:"\u0073\u006f\u006c\u0069du\u0073\u0073\u0068\u006f\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063m\u0062",0x0e29:"\u0073\u006f\u0072\u0075\u0073\u0069\u0074\u0068\u0061\u0069",0x0e28:"\u0073\u006f\u0073\u0061\u006c\u0061\u0074\u0068\u0061\u0069",0x0e0b:"\u0073\u006f\u0073\u006f\u0074\u0068\u0061\u0069",0x0e2a:"\u0073o\u0073\u0075\u0061\u0074\u0068\u0061i",0x0020:"\u0073\u0070\u0061c\u0065",0x2660:"\u0073\u0070\u0061d\u0065",0x2664:"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065",0x24ae:"\u0073\u0070\u0061\u0072\u0065\u006e",0x2222:"\u0073\u0070\u0068\u0065\u0072\u0069\u0063\u0061\u006ca\u006e\u0067\u006c\u0065",0x29a1:"\u0073\u0070h\u0065\u0072\u0069c\u0061\u006c\u0061\u006e\u0067\u006c\u0065\u0075\u0070",0x2a16:"\u0073\u0071\u0069n\u0074",0x2311:"\u0073q\u006c\u006f\u007a\u0065\u006e\u0067e",0x23b7:"\u0073\u0071\u0072\u0074\u0062\u006f\u0074\u0074\u006f\u006d",0x22e4:"s\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071",0x22e5:"s\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071",0x033b:"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x2b13:"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u006f\u0074b\u006c\u0061\u0063\u006b",0x33c4:"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u0063",0x339d:"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u006d",0x25a9:"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c",0x22a1:"\u0073q\u0075\u0061\u0072\u0065\u0064\u006ft",0x25a4:"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c",0x228f:"s\u0071\u0075\u0061\u0072\u0065\u0069\u006d\u0061\u0067\u0065",0x338f:"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u0067",0x339e:"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u006d",0x33ce:"\u0073q\u0075a\u0072\u0065\u006b\u006d\u0063\u0061\u0070\u0069\u0074\u0061\u006c",0x25e7:"\u0073q\u0075a\u0072\u0065\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b",0x2b15:"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006c\u0062\u006c\u0061\u0063\u006b",0x25f1:"\u0073\u0071\u0075a\u0072\u0065\u006c\u006c\u0071\u0075\u0061\u0064",0x33d1:"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006e",0x33d2:"\u0073q\u0075\u0061\u0072\u0065\u006c\u006fg",0x25ea:"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0072\u0062\u006c\u0061\u0063\u006b",0x25f2:"\u0073\u0071\u0075a\u0072\u0065\u006c\u0072\u0071\u0075\u0061\u0064",0x338e:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0067",0x33d5:"\u0073q\u0075\u0061\u0072\u0065\u006d\u0069l",0x229f:"s\u0071\u0075\u0061\u0072\u0065\u006d\u0069\u006e\u0075\u0073",0x339c:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u006d",0x33a1:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0073\u0071u\u0061\u0072\u0065\u0064",0x22a0:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079",0x2290:"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0069g\u0069\u006e\u0061\u006c",0x25a6:"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c",0x229e:"\u0073\u0071\u0075\u0061\u0072\u0065\u0070\u006c\u0075\u0073",0x25e8:"\u0073\u0071u\u0061\u0072\u0065r\u0069\u0067\u0068\u0074\u0062\u006c\u0061\u0063\u006b",0x02ae:"\u0073\u0071\u0075\u0061\u0072\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x2b12:"\u0073\u0071\u0075\u0061\u0072\u0065\u0074\u006f\u0070b\u006c\u0061\u0063\u006b",0x25e9:"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u006c\u0062\u006c\u0061\u0063\u006b",0x25f0:"\u0073\u0071\u0075a\u0072\u0065\u0075\u006c\u0071\u0075\u0061\u0064",0x25a7:"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c",0x25a8:"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c",0x2b14:"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u0072\u0062\u006c\u0061\u0063\u006b",0x25f3:"\u0073\u0071\u0075a\u0072\u0065\u0075\u0072\u0071\u0075\u0061\u0064",0x25a5:"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c",0x25a3:"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k",0x21ad:"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074",0x21dd:"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x25a2:"\u0073q\u0075\u006f\u0076\u0061\u006c",0x33db:"\u0073\u0072\u0073\u0071\u0075\u0061\u0072\u0065",0x09b7:"\u0073\u0073\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0937:"\u0073s\u0061\u0064\u0065\u0076\u0061",0x0ab7:"s\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x3149:"\u0073\u0073a\u006e\u0067\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3185:"\u0073\u0073a\u006e\u0067\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x3180:"\u0073\u0073a\u006e\u0067\u0069e\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e",0x3132:"\u0073\u0073\u0061\u006e\u0067\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e",0x3165:"\u0073\u0073a\u006e\u0067\u006ei\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3143:"\u0073\u0073a\u006e\u0067\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x3146:"\u0073s\u0061n\u0067\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x3138:"\u0073\u0073\u0061\u006e\u0067\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x2afd:"\u0073\u0073\u006c\u0061\u0073\u0068",0xf6f2:"\u0073s\u0075\u0070\u0065\u0072\u0069\u006fr",0xfb06:"\u0073\u0074",0x22c6:"\u0073\u0074\u0061\u0072",0x225b:"\u0073\u0074\u0061\u0072\u0065\u0071",0x00a3:"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067",0xffe1:"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x23e4:"\u0073\u0074\u0072n\u0073",0x0336:"s\u0074r\u006f\u006b\u0065\u006c\u006f\u006e\u0067\u006fv\u0065\u0072\u006c\u0061yc\u006d\u0062",0x0335:"s\u0074\u0072\u006f\u006bes\u0068o\u0072\u0074\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062",0x2ac3:"\u0073u\u0062\u0065\u0064\u006f\u0074",0x2ac1:"\u0073u\u0062\u006d\u0075\u006c\u0074",0x2979:"\u0073u\u0062\u0072\u0061\u0072\u0072",0x2ac9:"\u0073\u0075\u0062s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078",0x27c3:"\u0073\u0075\u0062\u0073\u0065\u0074\u0063\u0069\u0072\u0063",0x22d0:"\u0073u\u0062\u0073\u0065\u0074\u0064\u0062l",0x2ac5:"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c",0x2abd:"\u0073u\u0062\u0073\u0065\u0074\u0064\u006ft",0x228a:"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",0x2acb:"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064b\u006c\u0065\u0071\u006c",0x2abf:"\u0073\u0075\u0062\u0073\u0065\u0074\u0070\u006c\u0075\u0073",0x2291:"\u0073\u0075\u0062\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c",0x2ac7:"\u0073\u0075\u0062\u0073\u0069\u006d",0x2ad5:"\u0073\u0075\u0062\u0073\u0075\u0062",0x2ad3:"\u0073\u0075\u0062\u0073\u0075\u0070",0x2ab8:"\u0073\u0075\u0063\u0063\u0061\u0070\u0070\u0072\u006f\u0078",0x227b:"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073",0x2ab4:"\u0073u\u0063\u0063\u0065\u0071\u0071",0x2ab2:"\u0073u\u0063\u0063\u006e\u0065\u0071",0x220b:"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074",0x3059:"\u0073\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b9:"\u0073\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7d:"\u0073\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0652:"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfe7e:"\u0073\u0075\u006b\u0075\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe822:"\u0073\u0075\u006b\u0075\u006e\u006c\u006f\u0077",0xfe7f:"s\u0075\u006b\u0075\u006e\u006d\u0065\u0064\u0069\u0061\u006c",0xe834:"\u0073\u0075\u006bu\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0x23b3:"\u0073u\u006d\u0062\u006f\u0074\u0074\u006fm",0x2a0b:"\u0073\u0075\u006d\u0069\u006e\u0074",0x2211:"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn",0x23b2:"\u0073\u0075\u006d\u0074\u006f\u0070",0x263c:"\u0073\u0075\u006e",0x2ad8:"\u0073u\u0070\u0064\u0073\u0075\u0062",0x2ac4:"\u0073u\u0070\u0065\u0064\u006f\u0074",0x0670:"\u0073u\u0070e\u0072\u0073\u0063\u0072\u0069\u0070\u0074\u0061\u006c\u0065\u0066",0x22d1:"s\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u0064\u0062\u006c",0x2ac6:"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",0x228b:"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2acc:"\u0073\u0075\u0070\u0065rs\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c",0x2292:"\u0073u\u0070e\u0072\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c",0x27c9:"\u0073u\u0070\u0068\u0073\u006f\u006c",0x2ad7:"\u0073u\u0070\u0068\u0073\u0075\u0062",0x297b:"\u0073u\u0070\u006c\u0061\u0072\u0072",0x2ac2:"\u0073u\u0070\u006d\u0075\u006c\u0074",0x2aca:"\u0073\u0075\u0070s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078",0x27c4:"\u0073\u0075\u0070\u0073\u0065\u0074\u0063\u0069\u0072\u0063",0x2abe:"\u0073u\u0070\u0073\u0065\u0074\u0064\u006ft",0x2ac0:"\u0073\u0075\u0070\u0073\u0065\u0074\u0070\u006c\u0075\u0073",0x2ac8:"\u0073\u0075\u0070\u0073\u0069\u006d",0x2ad4:"\u0073\u0075\u0070\u0073\u0075\u0062",0x2ad6:"\u0073\u0075\u0070\u0073\u0075\u0070",0x33dc:"\u0073\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x337c:"\u0073y\u006fu\u0077\u0061\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x0074:"\u0074",0x09a4:"\u0074a\u0062\u0065\u006e\u0067\u0061\u006ci",0x22a4:"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e",0x22a3:"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074",0x0924:"\u0074\u0061\u0064\u0065\u0076\u0061",0x0aa4:"\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a24:"\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0637:"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c",0xfec2:"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfec3:"\u0074\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x305f:"\u0074\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfec1:"t\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfec4:"\u0074a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x337d:"\u0074\u0061i\u0073\u0079\u006fu\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x30bf:"\u0074\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff80:"\u0074\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2afe:"\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067",0xfe71:"\u0074a\u0074\u0077\u0065\u0065\u006c\u0077\u0069\u0074\u0068\u0066\u0061t\u0068\u0061\u0074\u0061\u006e\u0061\u0062\u006f\u0076\u0065",0x03c4:"\u0074\u0061\u0075",0xfb4a:"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h",0x05ea:"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w",0x0167:"\u0074\u0062\u0061\u0072",0x310a:"\u0074b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0165:"\u0074\u0063\u0061\u0072\u006f\u006e",0xf815:"\u0074c\u0061\u0072\u006f\u006e\u0031",0x02a8:"\u0074\u0063\u0063\u0075\u0072\u006c",0x0163:"\u0074\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf819:"\u0074c\u0065\u0064\u0069\u006c\u006c\u00611",0x0686:"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",0xfb7b:"\u0074\u0063h\u0065\u0068\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb7c:"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfb7a:"\u0074\u0063\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb7d:"\u0074\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x24e3:"\u0074c\u0069\u0072\u0063\u006c\u0065",0x1e71:"\u0074\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1e97:"\u0074d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e6b:"\u0074\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e6d:"\u0074d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04ad:"\u0074\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xfe96:"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfca2:"\u0074\u0065\u0068\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc0c:"t\u0065h\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061t\u0065\u0064\u0061\u0072ab\u0069\u0063",0xfe97:"\u0074\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3066:"\u0074\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfe95:"t\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfca1:"t\u0065h\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc0b:"t\u0065\u0068\u006a\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0x0629:"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfe94:"t\u0065\u0068\u006d\u0061rb\u0075t\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfe93:"\u0074e\u0068m\u0061\u0072\u0062\u0075\u0074a\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0xfe98:"\u0074e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfca4:"t\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc0e:"t\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfc73:"\u0074e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfc74:"\u0074\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xe814:"\u0074\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfca3:"\u0074e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc75:"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc10:"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x30c6:"\u0074\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff83:"\u0074\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2121:"\u0074e\u006c\u0065\u0070\u0068\u006f\u006ee",0x05a0:"\u0074\u0065\u006c\u0069sh\u0061\u0067\u0065\u0064\u006f\u006c\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x05a9:"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x3229:"\u0074\u0065\u006e\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x247d:"\u0074\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2491:"\u0074e\u006e\u0070\u0065\u0072\u0069\u006fd",0x2179:"\u0074\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x02a7:"\u0074\u0065\u0073\u0068",0xfb38:"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h",0x05d8:"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w",0x04b5:"\u0074\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x059b:"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077",0x09a5:"\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0925:"\u0074h\u0061\u0064\u0065\u0076\u0061",0x0aa5:"t\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a25:"t\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0630:"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeac:"\u0074h\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeab:"\u0074\u0068\u0061l\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xf898:"\u0074\u0068\u0061\u006eth\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069",0xf897:"\u0074\u0068\u0061nt\u0068\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069",0x0e4c:"\u0074h\u0061n\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0074\u0068\u0061\u0069",0xf896:"\u0074h\u0061\u006e\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x062b:"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9a:"\u0074h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9b:"\u0074\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe99:"\u0074\u0068\u0065h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe9c:"\u0074\u0068e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfca6:"\u0074\u0068\u0065\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfc12:"t\u0068e\u0068\u0077\u0069\u0074\u0068\u006d\u0065\u0065m\u0069\u0073\u006f\u006cat\u0065\u0064",0x2234:"\u0074h\u0065\u0072\u0065\u0066\u006f\u0072e",0x29e7:"\u0074h\u0065\u0072\u006d\u006f\u0064",0x03b8:"\u0074\u0068\u0065t\u0061",0x03d1:"\u0074\u0068\u0065\u0074\u0061\u0031",0x3279:"t\u0068i\u0065\u0075\u0074\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x3219:"\u0074\u0068\u0069\u0065ut\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x326b:"\u0074\u0068\u0069\u0065ut\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314c:"\u0074\u0068\u0069\u0065\u0075\u0074\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320b:"\u0074h\u0069e\u0075\u0074\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x2009:"\u0074h\u0069\u006e\u0073\u0070\u0061\u0063e",0x246c:"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2480:"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2494:"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0e11:"\u0074\u0068\u006f\u006e\u0061\u006e\u0067\u006d\u006f\u006e\u0074\u0068o\u0074\u0068\u0061\u0069",0x01ad:"\u0074\u0068\u006fo\u006b",0x0e12:"\u0074\u0068\u006f\u0070\u0068\u0075\u0074\u0068\u0061o\u0074\u0068\u0061\u0069",0x00fe:"\u0074\u0068\u006fr\u006e",0x0e17:"\u0074\u0068\u006f\u0074\u0068\u0061\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e10:"t\u0068\u006f\u0074\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e18:"\u0074\u0068\u006ft\u0068\u006f\u006e\u0067\u0074\u0068\u0061\u0069",0x0e16:"\u0074\u0068\u006ft\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069",0x0482:"\u0074\u0068o\u0075\u0073\u0061n\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x066c:"\u0074h\u006f\u0075\u0073\u0061\u006e\u0064\u0073\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062\u0069\u0063",0x0033:"\u0074\u0068\u0072e\u0065",0x09e9:"\u0074\u0068\u0072e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x27c0:"t\u0068\u0072\u0065\u0065\u0064\u0061\u006e\u0067\u006c\u0065",0x0969:"\u0074h\u0072\u0065\u0065\u0064\u0065\u0076a",0x2af6:"\u0074\u0068\u0072\u0065\u0065\u0064\u006f\u0074\u0063\u006f\u006c\u006f\u006e",0x215c:"\u0074\u0068\u0072e\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073",0x2157:"t\u0068\u0072\u0065\u0065\u0066\u0069\u0066\u0074\u0068\u0073",0x0ae9:"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a69:"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3023:"\u0074\u0068\u0072\u0065\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3222:"t\u0068\u0072\u0065\u0065id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e",0x2083:"\u0074\u0068\u0072\u0065\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff13:"\u0074\u0068\u0072\u0065\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x09f6:"t\u0068\u0072\u0065\u0065nu\u006de\u0072\u0061\u0074\u006f\u0072b\u0065\u006e\u0067\u0061\u006c\u0069",0xf733:"\u0074\u0068\u0072\u0065\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2476:"\u0074\u0068\u0072\u0065\u0065\u0070\u0061\u0072\u0065\u006e",0x2004:"\u0074h\u0072e\u0065\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065",0x248a:"t\u0068\u0072\u0065\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x06f3:"\u0074\u0068\u0072e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x00be:"\u0074\u0068\u0072\u0065\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0073",0xf6de:"\u0074\u0068\u0072\u0065eq\u0075\u0061\u0072\u0074\u0065\u0072\u0073\u0065\u006d\u0064\u0061\u0073\u0068",0x2172:"\u0074\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e",0x00b3:"\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e53:"\u0074h\u0072\u0065\u0065\u0074\u0068\u0061i",0x20e8:"\u0074\u0068\u0072\u0065\u0065\u0075\u006e\u0064\u0065\u0072\u0064\u006f\u0074",0x3394:"\u0074h\u007a\u0073\u0071\u0075\u0061\u0072e",0x2040:"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t",0x29dd:"\u0074\u0069\u0065\u0069\u006e\u0066\u0074\u0079",0x3061:"\u0074\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c1:"\u0074\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff81:"\u0074\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3270:"\u0074\u0069\u006b\u0065ut\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x3210:"\u0074i\u006be\u0075\u0074\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x3262:"\u0074i\u006be\u0075\u0074\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3137:"\u0074\u0069\u006be\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e",0x3202:"\u0074\u0069\u006b\u0065\u0075\u0074\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x02dc:"\u0074\u0069\u006cd\u0065",0xf004:"\u0074\u0069\u006c\u0064\u0065\u0031",0x0330:"\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0303:"\u0074\u0069\u006c\u0064\u0065\u0063\u006d\u0062",0x0360:"\u0074\u0069\u006c\u0064\u0065\u0064\u006f\u0075\u0062l\u0065\u0063\u006d\u0062",0x0276:"\u0074i\u006c\u0064\u0065\u006e\u006f\u0073p",0x0334:"\u0074i\u006cd\u0065\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063\u006d\u0062",0x033e:"\u0074\u0069l\u0064\u0065\u0076e\u0072\u0074\u0069\u0063\u0061\u006c\u0063\u006d\u0062",0x2a31:"\u0074\u0069\u006d\u0065\u0073\u0062\u0061\u0072",0x0596:"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x0a70:"\u0074\u0069\u0070\u0070\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0483:"\u0074\u0069t\u006c\u006f\u0063y\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062",0x057f:"\u0074\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1e6f:"\u0074\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x29ff:"\u0074\u006d\u0069\u006e\u0075\u0073",0xff54:"\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0569:"\u0074\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2928:"\u0074\u006f\u0065\u0061",0x3068:"\u0074\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c8:"\u0074\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff84:"\u0074\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2927:"\u0074\u006f\u006e\u0061",0x02e5:"\u0074\u006f\u006e\u0065ba\u0072\u0065\u0078\u0074\u0072\u0061\u0068\u0069\u0067\u0068\u006d\u006f\u0064",0x02e9:"\u0074o\u006ee\u0062\u0061\u0072\u0065\u0078t\u0072\u0061l\u006f\u0077\u006d\u006f\u0064",0x02e6:"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u0068\u0069g\u0068\u006d\u006f\u0064",0x02e8:"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006c\u006f\u0077\u006d\u006f\u0064",0x02e7:"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006d\u0069\u0064\u006d\u006f\u0064",0x01bd:"\u0074\u006f\u006e\u0065\u0066\u0069\u0076\u0065",0x0185:"\u0074o\u006e\u0065\u0073\u0069\u0078",0x01a8:"\u0074o\u006e\u0065\u0074\u0077\u006f",0x0384:"\u0074\u006f\u006eo\u0073",0x3327:"\u0074o\u006e\u0073\u0071\u0075\u0061\u0072e",0x0e0f:"t\u006f\u0070\u0061\u0074\u0061\u006b\u0074\u0068\u0061\u0069",0x2336:"\u0074\u006f\u0070\u0062\u006f\u0074",0x2af1:"\u0074\u006f\u0070\u0063\u0069\u0072",0x2ada:"\u0074o\u0070\u0066\u006f\u0072\u006b",0x25e0:"\u0074\u006f\u0070\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065",0x3014:"\u0074o\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xfe5d:"\u0074\u006fr\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0073ma\u006c\u006c",0xfe39:"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072a\u0063k\u0065\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x3015:"\u0074o\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006cl\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068t",0xfe5e:"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068e\u006c\u006c\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c",0xfe3a:"\u0074\u006f\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x2929:"\u0074\u006f\u0073\u0061",0x0e15:"\u0074o\u0074\u0061\u006f\u0074\u0068\u0061i",0x292a:"\u0074\u006f\u0077\u0061",0x01ab:"\u0074\u0070\u0061l\u0061\u0074\u0061\u006c\u0068\u006f\u006f\u006b",0x24af:"\u0074\u0070\u0061\u0072\u0065\u006e",0x29fe:"\u0074\u0070\u006cu\u0073",0x2122:"\u0074r\u0061\u0064\u0065\u006d\u0061\u0072k",0xf8ea:"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006b\u0073\u0061\u006e\u0073",0xf6db:"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006bs\u0065\u0072\u0069\u0066",0x23e2:"\u0074r\u0061\u0070\u0065\u007a\u0069\u0075m",0x0288:"\u0074\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b",0x2023:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0062u\u006c\u006c\u0065\u0074",0x25ec:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0063\u0064\u006f\u0074",0x25ed:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074b\u006c\u0061\u0063\u006b",0x22b4:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c",0x2a3a:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006d\u0069\u006e\u0075\u0073",0x29ca:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u006f\u0064\u006f\u0074",0x2a39:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0070\u006c\u0075\u0073",0x25ee:"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0062\u006c\u0061\u0063\u006b",0x22b5:"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c",0x29cc:"\u0074r\u0069\u0061\u006e\u0067\u006c\u0065s",0x29cd:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073e\u0072\u0069\u0066\u0073",0x2a3b:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0074\u0069\u006d\u0065\u0073",0x29cb:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072",0x29fb:"\u0074\u0072\u0069\u0070\u006c\u0065\u0070\u006c\u0075\u0073",0x2034:"\u0074r\u0070\u0072\u0069\u006d\u0065",0x2afb:"\u0074r\u0073\u006c\u0061\u0073\u0068",0x02a6:"\u0074\u0073",0xfb46:"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068",0x0446:"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x05b5:"\u0074s\u0065\u0072\u0065\u0031\u0032",0x045b:"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf6f3:"\u0074s\u0075\u0070\u0065\u0072\u0069\u006fr",0x099f:"\u0074\u0074\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091f:"\u0074t\u0061\u0064\u0065\u0076\u0061",0x0a9f:"t\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1f:"t\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfb67:"\u0074t\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb68:"\u0074\u0074\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb69:"\u0074\u0074e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x09a0:"t\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0920:"\u0074\u0074\u0068\u0061\u0064\u0065\u0076\u0061",0x0aa0:"\u0074\u0074\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a20:"\u0074\u0074\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0287:"\u0074t\u0075\u0072\u006e\u0065\u0064",0x3064:"\u0074\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c4:"\u0074\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff82:"\u0074\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x29a2:"\u0074u\u0072\u006e\u0061\u006e\u0067\u006ce",0x2129:"\u0074\u0075\u0072\u006e\u0065\u0064\u0069\u006f\u0074\u0061",0x2319:"\u0074u\u0072\u006e\u0065\u0064\u006e\u006ft",0x22a2:"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074",0x3063:"\u0074u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c3:"\u0074u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6f:"\u0074u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x246b:"\u0074\u0077\u0065l\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x247f:"t\u0077\u0065\u006c\u0076\u0065\u0070\u0061\u0072\u0065\u006e",0x2493:"\u0074\u0077\u0065l\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x217b:"t\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e",0xd80c:"t\u0077\u0065\u006c\u0076\u0065\u0075\u0064\u0061\u0073\u0068",0x2473:"\u0074\u0077\u0065n\u0074\u0079\u0063\u0069\u0072\u0063\u006c\u0065",0x5344:"\u0074\u0077\u0065\u006e\u0074\u0079\u0068\u0061\u006eg\u007a\u0068\u006f\u0075",0x2487:"t\u0077\u0065\u006e\u0074\u0079\u0070\u0061\u0072\u0065\u006e",0x249b:"\u0074\u0077\u0065n\u0074\u0079\u0070\u0065\u0072\u0069\u006f\u0064",0x0032:"\u0074\u0077\u006f",0x0662:"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c",0x09e8:"\u0074\u0077\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x2a4b:"\u0074w\u006f\u0063\u0061\u0070\u0073",0x2a4a:"\u0074w\u006f\u0063\u0075\u0070\u0073",0x0968:"\u0074w\u006f\u0064\u0065\u0076\u0061",0x2025:"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072",0xfe30:"t\u0077o\u0064\u006f\u0074\u006c\u0065\u0061\u0064\u0065r\u0076\u0065\u0072\u0074ic\u0061\u006c",0x2156:"\u0074w\u006f\u0066\u0069\u0066\u0074\u0068s",0x0ae8:"t\u0077\u006f\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a68:"t\u0077\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3022:"t\u0077\u006f\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x21a1:"\u0074\u0077o\u0068\u0065\u0061d\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x2b3b:"t\u0077o\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077ta\u0069\u006c",0x2b37:"\u0074\u0077\u006f\u0068ea\u0064\u006c\u0065\u0066\u0074\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x2b36:"\u0074w\u006fh\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x2905:"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0074\u006f",0x2916:"t\u0077\u006f\u0068\u0065ad\u0072i\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0074\u0061\u0069\u006c",0x219f:"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u0075\u0070a\u0072\u0072\u006f\u0077",0x2949:"t\u0077o\u0068\u0065\u0061\u0064\u0075\u0070\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065",0x3221:"\u0074\u0077\u006f\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x2082:"t\u0077\u006f\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff12:"\u0074\u0077\u006fm\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x09f5:"\u0074\u0077\u006f\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0xf732:"t\u0077\u006f\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2475:"\u0074\u0077\u006f\u0070\u0061\u0072\u0065\u006e",0x2489:"\u0074w\u006f\u0070\u0065\u0072\u0069\u006fd",0x06f2:"\u0074\u0077\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2171:"\u0074\u0077\u006f\u0072\u006f\u006d\u0061\u006e",0x01bb:"\u0074w\u006f\u0073\u0074\u0072\u006f\u006be",0x00b2:"t\u0077\u006f\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e52:"\u0074w\u006f\u0074\u0068\u0061\u0069",0x2154:"\u0074w\u006f\u0074\u0068\u0069\u0072\u0064s",0x2982:"\u0074y\u0070\u0065\u0063\u006f\u006c\u006fn",0x0075:"\u0075",0x2643:"\u0075\u0032\u00364\u0033",0x00fa:"\u0075\u0061\u0063\u0075\u0074\u0065",0x0289:"\u0075\u0062\u0061\u0072",0x0989:"\u0075\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x3128:"\u0075b\u006f\u0070\u006f\u006d\u006f\u0066o",0x23e1:"\u0075b\u0072\u0062\u0072\u0061\u006b",0x016d:"\u0075\u0062\u0072\u0065\u0076\u0065",0x01d4:"\u0075\u0063\u0061\u0072\u006f\u006e",0xf834:"\u0075\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24e4:"\u0075c\u0069\u0072\u0063\u006c\u0065",0x00fb:"u\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e77:"\u0075\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0951:"\u0075\u0064\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061",0x0171:"\u0075d\u0062\u006c\u0061\u0063\u0075\u0074e",0x0215:"\u0075d\u0062\u006c\u0067\u0072\u0061\u0076e",0x0909:"\u0075\u0064\u0065v\u0061",0x00fc:"\u0075d\u0069\u0065\u0072\u0065\u0073\u0069s",0x01d8:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x1e73:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077",0x01da:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e",0x04f1:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01dc:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065",0x01d6:"\u0075d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0x1ee5:"\u0075d\u006f\u0074\u0062\u0065\u006c\u006fw",0x00f9:"\u0075\u0067\u0072\u0061\u0076\u0065",0x0a89:"\u0075g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0a09:"\u0075g\u0075\u0072\u006d\u0075\u006b\u0068i",0x3046:"\u0075h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ee7:"\u0075\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01b0:"\u0075\u0068\u006fr\u006e",0x1ee9:"\u0075\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ef1:"\u0075\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1eeb:"\u0075\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1eed:"\u0075\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1eef:"\u0075\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x04f3:"u\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0217:"\u0075\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x30a6:"\u0075k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff73:"\u0075k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x0479:"\u0075\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x315c:"\u0075k\u006f\u0072\u0065\u0061\u006e",0x25dc:"\u0075\u006c\u0061r\u0063",0x25f8:"\u0075\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x016b:"\u0075m\u0061\u0063\u0072\u006f\u006e",0x04ef:"\u0075m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e7b:"\u0075m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x0a41:"\u0075\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069",0x2a41:"\u0075\u006d\u0069\u006e\u0075\u0073",0xff55:"\u0075\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x23df:"\u0075\u006e\u0064\u0065\u0072\u0062\u0072\u0061\u0063\u0065",0x23b5:"\u0075\u006e\u0064e\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074",0x20ee:"\u0075\u006e\u0064\u0065\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0x20ed:"u\u006ed\u0065\u0072\u006c\u0065\u0066\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e",0x23dd:"\u0075\u006e\u0064\u0065\u0072\u0070\u0061\u0072\u0065\u006e",0x20ef:"\u0075n\u0064e\u0072\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x20ec:"u\u006e\u0064\u0065\u0072ri\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e",0x005f:"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065",0x2017:"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c",0xff3f:"\u0075\u006e\u0064\u0065rs\u0063\u006f\u0072\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe33:"\u0075n\u0064e\u0072\u0073\u0063\u006f\u0072e\u0076\u0065r\u0074\u0069\u0063\u0061\u006c",0xfe4f:"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072e\u0077\u0061\u0076\u0079",0x203f:"\u0075\u006e\u0064\u0065\u0072\u0074\u0069\u0065",0x22ef:"\u0075\u006e\u0069c\u006f\u0064\u0065\u0063\u0064\u006f\u0074\u0073",0x222a:"\u0075\u006e\u0069o\u006e",0x22d3:"\u0075\u006e\u0069\u006f\u006e\u0064\u0062\u006c",0x228e:"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069",0x2294:"\u0075n\u0069\u006f\u006e\u0073\u0071",0x22c3:"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t",0x2200:"\u0075n\u0069\u0076\u0065\u0072\u0073\u0061l",0x0173:"\u0075o\u0067\u006f\u006e\u0065\u006b",0x214b:"\u0075\u0070\u0061n\u0064",0x24b0:"\u0075\u0070\u0061\u0072\u0065\u006e",0x2909:"\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064",0x29bd:"\u0075p\u0061r\u0072\u006f\u0077\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x2580:"\u0075p\u0062\u006c\u006f\u0063\u006b",0x03dd:"\u0075p\u0064\u0069\u0067\u0061\u006d\u006da",0x2951:"u\u0070\u0064\u006f\u0077nh\u0061r\u0070\u006f\u006f\u006e\u006ce\u0066\u0074\u006c\u0065\u0066\u0074",0x294d:"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0072\u0069\u0067h\u0074",0x294c:"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u006c\u0065f\u0074",0x294f:"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0072\u0069\u0067\u0068\u0074",0x296e:"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x2594:"\u0075\u0070\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b",0x297e:"\u0075\u0070\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x2960:"\u0075\u0070h\u0061\u0072\u0070o\u006f\u006e\u006c\u0065\u0066\u0074\u0062\u0061\u0072",0x295c:"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067h\u0074\u0062\u0061\u0072",0x2963:"\u0075\u0070\u0068\u0061rp\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x27d2:"\u0075\u0070\u0069\u006e",0x2a1b:"\u0075\u0070\u0069n\u0074",0x03df:"\u0075p\u006b\u006f\u0070\u0070\u0061",0x03d8:"\u0075\u0070\u006f\u006c\u0064\u004b\u006f\u0070\u0070\u0061",0x03d9:"\u0075\u0070\u006f\u006c\u0064\u006b\u006f\u0070\u0070\u0061",0x05c4:"\u0075\u0070\u0070\u0065\u0072\u0064\u006f\u0074\u0068e\u0062\u0072\u0065\u0077",0x2934:"\u0075\u0070\u0072\u0069\u0067\u0068\u0074\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077",0x03e1:"\u0075p\u0073\u0061\u006d\u0070\u0069",0x03c5:"\u0075p\u0073\u0069\u006c\u006f\u006e",0x02f9:"u\u0070\u0073\u0069\u006con\u0064i\u0061\u0065\u0072\u0065\u0073i\u0073\u0074\u006f\u006e\u006f\u0073",0x03cb:"\u0075p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x03b0:"u\u0070s\u0069\u006c\u006f\u006e\u0064\u0069\u0065\u0072e\u0073\u0069\u0073\u0074on\u006f\u0073",0x028a:"\u0075\u0070\u0073i\u006c\u006f\u006e\u006c\u0061\u0074\u0069\u006e",0x03cd:"\u0075\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x29f8:"\u0075p\u0073\u006c\u006f\u0070\u0065",0x03db:"\u0075\u0070\u0073\u0074\u0069\u0067\u006d\u0061",0x031d:"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x02d4:"\u0075p\u0074\u0061\u0063\u006b\u006d\u006fd",0x03f4:"\u0075\u0070\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x0a73:"u\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x25dd:"\u0075\u0072\u0061r\u0063",0x016f:"\u0075\u0072\u0069n\u0067",0x25f9:"\u0075\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x3045:"\u0075\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a5:"\u0075\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff69:"\u0075\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x04af:"\u0075\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x04b1:"\u0075\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0169:"\u0075\u0074\u0069\u006c\u0064\u0065",0x1e79:"u\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e75:"u\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x098a:"\u0075u\u0062\u0065\u006e\u0067\u0061\u006ci",0x090a:"\u0075\u0075\u0064\u0065\u0076\u0061",0x0a8a:"\u0075\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a0a:"\u0075\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a42:"\u0075u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x09c2:"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x0942:"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac2:"\u0075\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x09c1:"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x0941:"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0ac1:"\u0075v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0076:"\u0076",0x2ae8:"\u0076\u0042\u0061\u0072",0x2ae9:"\u0076\u0042\u0061r\u0076",0x2ae2:"\u0076\u0044\u0064\u0061\u0073\u0068",0x0935:"\u0076\u0061\u0064\u0065\u0076\u0061",0x0ab5:"\u0076\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a35:"\u0076\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x30f7:"\u0076\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2ae6:"\u0076\u0061\u0072\u0056\u0064\u0061\u0073\u0068",0x23ce:"\u0076\u0061\u0072\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e",0x2306:"\u0076\u0061\u0072\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065",0x2b21:"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e",0x2b22:"\u0076a\u0072h\u0065\u0078\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b",0x232c:"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e\u006c\u0072b\u006f\u006e\u0064\u0073",0xfb1e:"\u0076\u0061\u0072\u0069\u006b\u0061",0x22f6:"v\u0061\u0072\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072",0x22f3:"\u0076\u0061\u0072\u0069\u0073\u0069\u006e\u0073",0x22fd:"\u0076a\u0072\u006e\u0069\u006f\u0062\u0061r",0x22fb:"\u0076\u0061\u0072\u006e\u0069\u0073",0x2232:"\u0076\u0061r\u006f\u0069\u006et\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x22b2:"\u0076a\u0072t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",0x22b3:"\u0076\u0061r\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x2a61:"\u0076a\u0072\u0076\u0065\u0065\u0062\u0061r",0x05d5:"\u0076\u0061\u0076",0xfb35:"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0xfb4b:"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d",0x23aa:"\u0076\u0062\u0072\u0061\u0063\u0065\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x29d0:"\u0076\u0062\u0072\u0074\u0072\u0069",0x24e5:"\u0076c\u0069\u0072\u0063\u006c\u0065",0x1e7f:"\u0076d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a2f:"\u0076\u0065\u0063\u0074\u0069\u006d\u0065\u0073",0x20d7:"\u0076\u0065\u0063\u0074\u006f\u0072",0x27c7:"\u0076\u0065\u0065\u0064\u006f\u0074",0x2a63:"\u0076\u0065\u0065d\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072",0x225a:"\u0076\u0065\u0065e\u0071",0x2a5b:"\u0076\u0065\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074",0x2a52:"\u0076e\u0065\u006f\u0064\u006f\u0074",0x2a56:"\u0076\u0065\u0065\u006f\u006e\u0076\u0065\u0065",0x2a59:"\u0076\u0065\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065",0x06a4:"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c",0xfb6b:"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb6c:"\u0076\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb6a:"v\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb6d:"\u0076e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x30f9:"\u0076\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2123:"\u0076\u0065\u0072\u0073\u0069\u0063\u006c\u0065",0x030d:"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0061\u0062\u006f\u0076ec\u006d\u0062",0x0329:"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0062\u0065\u006c\u006fwc\u006d\u0062",0x02cc:"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006ci\u006e\u0065l\u006f\u0077\u006d\u006f\u0064",0x02c8:"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u006d\u006f\u0064",0x20d2:"v\u0065\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079",0x057e:"v\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x028b:"\u0076\u0068\u006fo\u006b",0x2317:"\u0076\u0069\u0065\u0077\u0064\u0061\u0074\u0061",0x30f8:"\u0076\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x09cd:"\u0076\u0069\u0072\u0061\u006d\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x094d:"\u0076\u0069\u0072\u0061\u006d\u0061\u0064\u0065\u0076\u0061",0x0acd:"\u0076\u0069\u0072\u0061\u006d\u0061\u0067\u0075\u006aa\u0072\u0061\u0074\u0069",0x0983:"\u0076\u0069\u0073\u0061\u0072\u0067\u0061\u0062\u0065n\u0067\u0061\u006c\u0069",0x0903:"v\u0069\u0073\u0061\u0072\u0067\u0061\u0064\u0065\u0076\u0061",0x0a83:"\u0076i\u0073a\u0072\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x27dd:"\u0076l\u006f\u006e\u0067\u0064\u0061\u0073h",0xff56:"\u0076\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0578:"\u0076\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x309e:"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30fe:"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x309b:"\u0076\u006f\u0069\u0063\u0065\u0064\u006d\u0061\u0072k\u006b\u0061\u006e\u0061",0xff9e:"\u0076\u006f\u0069ce\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x30fa:"\u0076\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x24b1:"\u0076\u0070\u0061\u0072\u0065\u006e",0x25af:"\u0076\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065",0x25ae:"\u0076r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b",0x021b:"\u0076s\u0063\u0072\u0069\u0070\u0074",0x1e7d:"\u0076\u0074\u0069\u006c\u0064\u0065",0x021c:"\u0076\u0074\u0075r\u006e",0x028c:"\u0076t\u0075\u0072\u006e\u0065\u0064",0x3094:"\u0076\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30f4:"\u0076\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2b1d:"\u0076\u0079\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x2218:"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x2b1e:"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x299a:"\u0076z\u0069\u0067\u007a\u0061\u0067",0x0077:"\u0077",0x1e83:"\u0077\u0061\u0063\u0075\u0074\u0065",0x3159:"\u0077a\u0065\u006b\u006f\u0072\u0065\u0061n",0x308f:"\u0077\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ef:"\u0077\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff9c:"\u0077\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3158:"\u0077\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x308e:"\u0077a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ee:"\u0077a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x3357:"w\u0061\u0074\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x301c:"\u0077\u0061\u0076\u0065\u0064\u0061\u0073\u0068",0xfe34:"\u0077\u0061\u0076\u0079un\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0076\u0065\u0072\u0074\u0069\u0063a\u006c",0x0648:"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c",0xfeee:"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe86:"\u0077a\u0077\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeed:"w\u0061\u0077\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe85:"\u0077a\u0077\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d",0x33dd:"\u0077\u0062\u0073\u0071\u0075\u0061\u0072\u0065",0x24e6:"\u0077c\u0069\u0072\u0063\u006c\u0065",0x0175:"w\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e85:"\u0077d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e87:"\u0077\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e89:"\u0077d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a5f:"\u0077\u0065\u0064\u0067\u0065\u0062\u0061\u0072",0x27d1:"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0074",0x2a60:"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0075\u0062l\u0065\u0062\u0061\u0072",0x2a5a:"\u0077\u0065\u0064g\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074",0x2a51:"\u0077e\u0064\u0067\u0065\u006f\u0064\u006ft",0x2a55:"\u0077\u0065\u0064g\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065",0x2259:"\u0077\u0065\u0064\u0067\u0065\u0071",0x3091:"\u0077\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x2118:"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073",0x30f1:"\u0077\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x315e:"\u0077\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x315d:"\u0077e\u006f\u006b\u006f\u0072\u0065\u0061n",0x1e81:"\u0077\u0067\u0072\u0061\u0076\u0065",0x25e6:"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074",0x25cb:"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x300e:"\u0077\u0068\u0069\u0074ec\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074",0xfe43:"\u0077\u0068\u0069\u0074\u0065\u0063\u006f\u0072\u006e\u0065r\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x300f:"\u0077\u0068\u0069te\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0xfe44:"\u0077\u0068\u0069t\u0065\u0063\u006f\u0072n\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x25c7:"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x25c8:"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064",0x25bf:"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25bd:"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",0x27c1:"w\u0068i\u0074\u0065\u0069\u006e\u0077\u0068\u0069\u0074e\u0074\u0072\u0069\u0061ng\u006c\u0065",0x25c3:"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u0066\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25c1:"\u0077h\u0069\u0074\u0065\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",0x3016:"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074",0x3017:"w\u0068\u0069\u0074\u0065\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074",0x25c5:"\u0077\u0068i\u0074\u0065\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074",0x25bb:"\u0077\u0068\u0069\u0074\u0065\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074",0x25b9:"\u0077\u0068\u0069t\u0065\u0072\u0069\u0067h\u0074\u0070\u006f\u0069\u006e\u0074\u0069n\u0067\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25b7:"\u0077\u0068\u0069\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065",0x25ab:"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x27e4:"\u0077\u0068\u0069\u0074es\u0071\u0075\u0061\u0072\u0065\u0074\u0069\u0063\u006b\u006c\u0065\u0066\u0074",0x27e5:"w\u0068i\u0074\u0065\u0073\u0071\u0075\u0061\u0072\u0065t\u0069\u0063\u006b\u0072ig\u0068\u0074",0x2606:"\u0077h\u0069\u0074\u0065\u0073\u0074\u0061r",0x260f:"\u0077\u0068\u0069\u0074\u0065\u0074\u0065\u006c\u0065p\u0068\u006f\u006e\u0065",0x3018:"\u0077\u0068i\u0074\u0065\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074le\u0066\u0074",0x3019:"\u0077\u0068\u0069\u0074\u0065\u0074\u006f\u0072\u0074\u006fi\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0x25b5:"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065",0x25b3:"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x2b2d:"w\u0068\u0074\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c",0x2b2f:"w\u0068\u0074\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c",0x29a6:"\u0077\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e",0x29a7:"w\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0075\u0070",0x20e9:"\u0077i\u0064e\u0062\u0072\u0069\u0064\u0067\u0065\u0061\u0062\u006f\u0076\u0065",0x3090:"\u0077\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30f0:"\u0077\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x315f:"\u0077\u0069\u006b\u006f\u0072\u0065\u0061\u006e",0xff57:"\u0077\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x3092:"\u0077\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30f2:"\u0077\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff66:"\u0077\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x20a9:"\u0077\u006f\u006e",0xffe6:"\u0077\u006f\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0e27:"\u0077\u006f\u0077\u0061\u0065\u006e\u0074\u0068\u0061\u0069",0x24b2:"\u0077\u0070\u0061\u0072\u0065\u006e",0x2240:"\u0077\u0072\u0065\u0061\u0074\u0068\u0070\u0072\u006f\u0064\u0075\u0063\u0074",0x1e98:"\u0077\u0072\u0069n\u0067",0x0240:"\u0077\u0073\u0075\u0070\u0065\u0072",0x02b7:"\u0077s\u0075\u0070\u0065\u0072\u0069\u006fr",0x021d:"\u0077\u0074\u0075r\u006e",0x028d:"\u0077t\u0075\u0072\u006e\u0065\u0064",0x01bf:"\u0077\u0079\u006e\u006e",0x0078:"\u0078",0x033d:"\u0078a\u0062\u006f\u0076\u0065\u0063\u006db",0x3112:"\u0078b\u006f\u0070\u006f\u006d\u006f\u0066o",0x24e7:"\u0078c\u0069\u0072\u0063\u006c\u0065",0x1e8d:"\u0078d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e8b:"\u0078\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x056d:"x\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03be:"\u0078\u0069",0xff58:"\u0078\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x24b3:"\u0078\u0070\u0061\u0072\u0065\u006e",0x02e3:"\u0078s\u0075\u0070\u0065\u0072\u0069\u006fr",0x0079:"\u0079",0x334e:"y\u0061\u0061\u0064\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x09af:"\u0079a\u0062\u0065\u006e\u0067\u0061\u006ci",0x00fd:"\u0079\u0061\u0063\u0075\u0074\u0065",0x092f:"\u0079\u0061\u0064\u0065\u0076\u0061",0x3152:"\u0079a\u0065\u006b\u006f\u0072\u0065\u0061n",0x0aaf:"\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2f:"\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3084:"\u0079\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e4:"\u0079\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff94:"\u0079\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3151:"\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x0e4e:"\u0079\u0061\u006da\u006b\u006b\u0061\u006e\u0074\u0068\u0061\u0069",0x3083:"\u0079a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e3:"\u0079a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6c:"\u0079a\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0463:"y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x24e8:"\u0079c\u0069\u0072\u0063\u006c\u0065",0x0177:"y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x00ff:"\u0079d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e8f:"\u0079\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1ef5:"\u0079d\u006f\u0074\u0062\u0065\u006c\u006fw",0x064a:"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c",0x06d2:"\u0079e\u0068b\u0061\u0072\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063",0xfbaf:"y\u0065h\u0062\u0061\u0072\u0072\u0065\u0065\u0066\u0069n\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfef2:"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x0626:"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063",0xfe8a:"\u0079e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe8b:"\u0079\u0065\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072a\u0062\u0069\u0063",0xfe8c:"\u0079e\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076e\u006de\u0064i\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0xfef3:"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfef1:"y\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfcdd:"y\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc58:"y\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfc94:"\u0079e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0x06d1:"\u0079\u0065\u0068th\u0072\u0065\u0065\u0064\u006f\u0074\u0073\u0062\u0065\u006c\u006f\u0077\u0061\u0072\u0061\u0062\u0069\u0063",0xfc95:"\u0079\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xfc59:"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfcdb:"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfe89:"\u0079e\u0068\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d",0xfcda:"\u0079e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0xfcdc:"\u0079e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc91:"\u0079e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0x3156:"\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x00a5:"\u0079\u0065\u006e",0xffe5:"\u0079\u0065\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x3155:"\u0079e\u006f\u006b\u006f\u0072\u0065\u0061n",0x3186:"\u0079\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006bo\u0072\u0065\u0061\u006e",0x05aa:"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077",0x044b:"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04f9:"y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063",0x3181:"\u0079\u0065\u0073\u0069\u0065\u0075\u006e\u0067\u006bo\u0072\u0065\u0061\u006e",0x3183:"y\u0065\u0073\u0069\u0065un\u0067p\u0061\u006e\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e",0x3182:"\u0079e\u0073i\u0065\u0075\u006e\u0067\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x059a:"y\u0065\u0074\u0069\u0076\u0068\u0065\u0062\u0072\u0065\u0077",0x1ef3:"\u0079\u0067\u0072\u0061\u0076\u0065",0x01b4:"\u0079\u0068\u006fo\u006b",0x1ef7:"\u0079\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0575:"\u0079\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0457:"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x3162:"\u0079\u0069\u006b\u006f\u0072\u0065\u0061\u006e",0x262f:"\u0079i\u006e\u0079\u0061\u006e\u0067",0x0582:"\u0079\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff59:"\u0079\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfb39:"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x05f2:"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077",0xfb1f:"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077",0x0222:"\u0079\u006f\u0067\u0068",0x0223:"\u0079\u006f\u0067\u0068\u0063\u0075\u0072\u006c",0x3088:"\u0079\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x3189:"\u0079o\u0069\u006b\u006f\u0072\u0065\u0061n",0x30e8:"\u0079\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff96:"\u0079\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x315b:"\u0079\u006f\u006b\u006f\u0072\u0065\u0061\u006e",0x3087:"\u0079o\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e7:"\u0079o\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6e:"\u0079o\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x03f3:"\u0079\u006f\u0074\u0067\u0072\u0065\u0065\u006b",0x3188:"y\u006f\u0079\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x3187:"\u0079\u006f\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x0e22:"\u0079o\u0079\u0061\u006b\u0074\u0068\u0061i",0x0e0d:"\u0079\u006f\u0079\u0069\u006e\u0067\u0074\u0068\u0061\u0069",0x24b4:"\u0079\u0070\u0061\u0072\u0065\u006e",0x037a:"\u0079\u0070\u006f\u0067\u0065\u0067\u0072\u0061\u006d\u006d\u0065\u006e\u0069",0x0345:"y\u0070\u006f\u0067\u0065gr\u0061m\u006d\u0065\u006e\u0069\u0067r\u0065\u0065\u006b\u0063\u006d\u0062",0x01a6:"\u0079\u0072",0x1e99:"\u0079\u0072\u0069n\u0067",0x0241:"\u0079\u0073\u0075\u0070\u0065\u0072",0x02b8:"\u0079s\u0075\u0070\u0065\u0072\u0069\u006fr",0x1ef9:"\u0079\u0074\u0069\u006c\u0064\u0065",0x021e:"\u0079\u0074\u0075r\u006e",0x028e:"\u0079t\u0075\u0072\u006e\u0065\u0064",0x3086:"\u0079\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x318c:"\u0079u\u0069\u006b\u006f\u0072\u0065\u0061n",0x30e6:"\u0079\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff95:"\u0079\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3160:"\u0079\u0075\u006b\u006f\u0072\u0065\u0061\u006e",0x046b:"\u0079\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x046d:"\u0079\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063",0x0467:"\u0079\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0469:"\u0079u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x3085:"\u0079u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e5:"\u0079u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6d:"\u0079u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x318b:"\u0079\u0075\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x318a:"y\u0075\u0079\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e",0x09df:"\u0079\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x095f:"\u0079y\u0061\u0064\u0065\u0076\u0061",0x007a:"\u007a",0x0566:"\u007a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x017a:"\u007a\u0061\u0063\u0075\u0074\u0065",0x095b:"\u007a\u0061\u0064\u0065\u0076\u0061",0x0a5b:"\u007a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0638:"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c",0xfec6:"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfec7:"\u007a\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3056:"\u007a\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfec5:"z\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfec8:"\u007aa\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0632:"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb0:"\u007aa\u0069n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeaf:"\u007a\u0061\u0069n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x30b6:"\u007a\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0595:"\u007a\u0061q\u0065\u0066\u0067a\u0064\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",0x0594:"\u007a\u0061q\u0065\u0066\u0071a\u0074\u0061\u006e\u0068\u0065\u0062\u0072\u0065\u0077",0x0598:"z\u0061\u0072\u0071\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0xfb36:"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",0x3117:"\u007ab\u006f\u0070\u006f\u006d\u006f\u0066o",0x017e:"\u007a\u0063\u0061\u0072\u006f\u006e",0x24e9:"\u007ac\u0069\u0072\u0063\u006c\u0065",0x1e91:"z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x2a1f:"\u007a\u0063\u006d\u0070",0x0291:"\u007a\u0063\u0075r\u006c",0x017c:"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e93:"\u007ad\u006f\u0074\u0062\u0065\u006c\u006fw",0x0499:"\u007a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04df:"\u007ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x305c:"\u007a\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30bc:"\u007a\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0030:"\u007a\u0065\u0072\u006f",0x09e6:"z\u0065\u0072\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0966:"\u007a\u0065\u0072\u006f\u0064\u0065\u0076\u0061",0x0ae6:"\u007a\u0065\u0072o\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a66:"\u007a\u0065\u0072o\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0660:"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",0x2080:"\u007a\u0065\u0072o\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff10:"\u007a\u0065\u0072\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf730:"\u007a\u0065\u0072o\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x06f0:"z\u0065\u0072\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2070:"\u007a\u0065\u0072o\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e50:"\u007a\u0065\u0072\u006f\u0074\u0068\u0061\u0069",0xfeff:"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072",0x200b:"\u007a\u0065\u0072\u006f\u0077\u0069\u0064\u0074\u0068s\u0070\u0061\u0063\u0065",0x03b6:"\u007a\u0065\u0074\u0061",0x3113:"\u007a\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x056a:"z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03fe:"\u007a\u0068\u0065\u0062\u0072\u0065\u0076\u0065",0x04c2:"\u007a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0436:"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0497:"z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04dd:"\u007a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x3058:"\u007a\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b8:"\u007a\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x05ae:"z\u0069\u006e\u006f\u0072\u0068\u0065\u0062\u0072\u0065\u0077",0x1e95:"\u007a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff5a:"\u007a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x305e:"\u007a\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30be:"\u007a\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x24b5:"\u007a\u0070\u0061\u0072\u0065\u006e",0x2a20:"\u007a\u0070\u0069p\u0065",0x2a21:"\u007a\u0070\u0072\u006f\u006a\u0065\u0063\u0074",0x0290:"\u007a\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b",0x0220:"\u007ar\u0074\u0068\u006f\u006f\u006b",0x01b6:"\u007as\u0074\u0072\u006f\u006b\u0065",0x305a:"\u007a\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ba:"\u007a\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061"}); -func (_dfcb *simpleEncoding )String ()string {return "\u0073i\u006dp\u006c\u0065\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0028"+_dfcb ._dbbd +"\u0029";};type simpleEncodersMap struct{_bef map[string ]func ()SimpleEncoder ;_fbag _g .RWMutex ;};func (_bcf *IdentityEncoder )Encode (str string )[]byte {return _cfbb (_bcf ,str )}; -func (_fdbb *charCodeGlyphNameMap )Write (k CharCode ,v GlyphName ){_fdbb ._fdb .Lock ();defer _fdbb ._fdb .Unlock ();_fdbb ._aeg [k ]=v ;};func (_gge *differencesEncoding )ToPdfObject ()_fg .PdfObject {_ddf :=_fg .MakeDict ();_ddf .Set ("\u0054\u0079\u0070\u0065",_fg .MakeName ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")); -_ddf .Set ("\u0042\u0061\u0073e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_gge ._dbab .ToPdfObject ());if _dddg :=_bff (_gge ._gaa );_dddg !=nil {_ddf .Set ("D\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073",_dddg );}else {_aa .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0044\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073\u0020\u0061\u0072\u0072\u0061y\u0020i\u0073\u0020\u006e\u0069l\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -};return _fg .MakeIndirectObject (_ddf );};type GlyphName string ;type CMapEncoder struct{_ga string ;_bge *_ffd .CMap ;_dfe *_ffd .CMap ;};func (_edcb *TrueTypeFontEncoder )GlyphToCharcode (glyph GlyphName )(CharCode ,bool ){if len (glyph )==7&&glyph [0:3]=="\u0075\u006e\u0069"{var _dcb uint16 ; -_fgaf ,_dbf :=_cf .Sscanf (string (glyph ),"\u0075\u006e\u0069%\u0058",&_dcb );if _fgaf ==1&&_dbf ==nil {return _edcb .RuneToCharcode (rune (_dcb ));};};if _gea ,_dae :=_fgb .Read (string (glyph ));_dae {return _edcb .RuneToCharcode (_gea );};_aa .Log .Debug ("\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065r\u0072\u006f\u0072\u003a\u0020\u0075\u006e\u0061\u0062\u006ce\u0020\u0074\u006f\u0020\u0066\u0069\u006e\u0064\u0020\u0067\u006c\u0079\u0070\u0068\u002d\u003e\u0063\u0068a\u0072\u0063\u006f\u0064\u0065\u0020e\u006e\u0074r\u0079\u0020(\u0025s\u0029",glyph ); -return 0,false ;};func NewIdentityTextEncoder (baseName string )*IdentityEncoder {return &IdentityEncoder {_bgff :baseName ,_fcc :_cfc .MakeRuneSet (0)};};func NewStandardEncoder ()SimpleEncoder {return _aga .NewEncoder ()};type SimpleEncoder interface{TextEncoder ; -BaseName ()string ;Charcodes ()[]CharCode ;};const (_eca ="\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074\u0045\u006e\u0063o\u0064\u0069\u006e\u0067";_gdc ="\u004d\u0061c\u0052\u006f\u006da\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"; -);func (_efa *simpleEncoder )Transform (dst ,src []byte ,atEOF bool )(_cabdd ,_aeec int ,_ error ){for len (src )!=0{if !_a .FullRune (src )&&!atEOF {return _cabdd ,_aeec ,_cc .ErrShortSrc ;}else if len (dst )==0{return _cabdd ,_aeec ,_cc .ErrShortDst ; -};_bgab ,_eg :=_a .DecodeRune (src );if _bgab ==_a .RuneError {_bgab =MissingCodeRune ;};src =src [_eg :];_aeec +=_eg ;_ccfe ,_gbde :=_efa ._defd .Read (_bgab );if !_gbde {_ccfe ,_ =_efa ._defd .Read (MissingCodeRune );};dst [0]=_ccfe ;dst =dst [1:];_cabdd ++; -};return _cabdd ,_aeec ,nil ;};func GlyphToRune (glyph GlyphName )(rune ,bool ){_ge :=string (glyph );if _f .Contains (_ge ,"\u002e"){_ffe :=_efe .FindStringSubmatch (_ge );if _ffe !=nil {_ge =_ffe [1];};};if _cebg ,_deae :=_eceb .Read (_ge );_deae {_ge =_cebg ; -};if _bae ,_fgc :=_fgb .Read (_ge );_fgc {return _bae ,true ;};if _cfg ,_gec :=_fee .Read (_ge );_gec {return _cfg ,true ;};if _ece :=_agg .FindStringSubmatch (_ge );_ece !=nil {_caf ,_fgag :=_fd .ParseInt (_ece [1],16,32);if _fgag ==nil {return rune (_caf ),true ; -};};if _agb :=_aacc .FindStringSubmatch (_ge );_agb !=nil {_aefg ,_bcgc :=_fd .Atoi (_agb [1]);if _bcgc ==nil {return rune (_aefg ),true ;};};return rune (0),false ;};var _agge =_cfc .NewByteRuneMap (map[byte ]rune {0x1:'\x01',0x2:'\x02',0x3:'\x03',0x4:'\x04',0x5:'\x05',0x6:'\x06',0x7:'\a',0x8:'\b',0x9:'\t',0xa:'\n',0xb:'\v',0xc:'\f',0xd:'\r',0xe:'\x0e',0xf:'\x0f',0x10:'\x10',0x11:'\x11',0x12:'\x12',0x13:'\x13',0x14:'\x14',0x15:'\x15',0x16:'\x17',0x17:'\x17',0x18:'˘',0x19:'ˇ',0x1a:'ˆ',0x1b:'˙',0x1c:'˝',0x1d:'˛',0x1e:'˚',0x1f:'˜',0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'\'',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'`',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0x80:'•',0x81:'†',0x82:'‡',0x83:'…',0x84:'—',0x85:'–',0x86:'ƒ',0x87:'⁄',0x88:'‹',0x89:'›',0x8a:'−',0x8b:'‰',0x8c:'„',0x8d:'“',0x8e:'”',0x8f:'‘',0x90:'’',0x91:'‚',0x92:'™',0x93:'fi',0x94:'fl',0x95:'Ł',0x96:'Œ',0x97:'Š',0x98:'Ÿ',0x99:'Ž',0x9a:'ı',0x9b:'ł',0x9c:'œ',0x9d:'š',0x9e:'ž',0xa0:'€',0xa1:'¡',0xa2:'¢',0xa3:'£',0xa4:'¤',0xa5:'¥',0xa6:'¦',0xa7:'§',0xa8:'¨',0xa9:'©',0xaa:'ª',0xab:'«',0xac:'¬',0xae:'®',0xaf:'¯',0xb0:'°',0xb1:'±',0xb2:'²',0xb3:'³',0xb4:'´',0xb5:'µ',0xb6:'¶',0xb7:'·',0xb8:'¸',0xb9:'¹',0xba:'º',0xbb:'»',0xbc:'¼',0xbd:'½',0xbe:'¾',0xbf:'¿',0xc0:'À',0xc1:'Á',0xc2:'Â',0xc3:'Ã',0xc4:'Ä',0xc5:'Å',0xc6:'Æ',0xc7:'Ç',0xc8:'È',0xc9:'É',0xca:'Ê',0xcb:'Ë',0xcc:'Ì',0xcd:'Í',0xce:'Î',0xcf:'Ï',0xd0:'Ð',0xd1:'Ñ',0xd2:'Ò',0xd3:'Ó',0xd4:'Ô',0xd5:'Õ',0xd6:'Ö',0xd7:'×',0xd8:'Ø',0xd9:'Ù',0xda:'Ú',0xdb:'Û',0xdc:'Ü',0xdd:'Ý',0xde:'Þ',0xdf:'ß',0xe0:'à',0xe1:'á',0xe2:'â',0xe3:'ã',0xe4:'ä',0xe5:'å',0xe6:'æ',0xe7:'ç',0xe8:'è',0xe9:'é',0xea:'ê',0xeb:'ë',0xec:'ì',0xed:'í',0xee:'î',0xef:'ï',0xf0:'ð',0xf1:'ñ',0xf2:'ò',0xf3:'ó',0xf4:'ô',0xf5:'õ',0xf6:'ö',0xf7:'÷',0xf8:'ø',0xf9:'ù',0xfa:'ú',0xfb:'û',0xfc:'ü',0xfd:'ý',0xfe:'þ',0xff:'ÿ'}); -type TextEncoder interface{String ()string ;Encode (_ebff string )[]byte ;Decode (_agc []byte )string ;RuneToCharcode (_dfd rune )(CharCode ,bool );CharcodeToRune (_dfda CharCode )(rune ,bool );ToPdfObject ()_fg .PdfObject ;};var (_bdg =_ced (_eca ,_eadc ); -_ega =_ced (_gdc ,_bggf ););const _aefd =10;func (_ddg *IdentityEncoder )String ()string {return _ddg ._bgff };func (_gfg *TrueTypeFontEncoder )CharcodeToRune (code CharCode )(rune ,bool ){_ggg :=rune (-1);_gfg ._egb .Range (func (_befg rune ,_cgca uint16 )(_ade bool ){_fad :=CharCode (_cgca ); -if _fad ==code {_ggg =_befg ;return true ;};return false ;});if _ggg !=-1{return _ggg ,true ;};_aa .Log .Debug ("\u0043h\u0061\u0072c\u006f\u0064\u0065\u0054o\u0052\u0075\u006ee\u003a\u0020\u004e\u006f\u0020\u006d\u0061\u0074\u0063h.\u0020\u0063\u006fd\u0065\u003d0\u0078\u0025\u0030\u0034\u0078\u0020e\u006e\u0063=\u0025\u0073",code ,_gfg ); -return 0,false ;};func FromFontDifferences (diffList *_fg .PdfObjectArray )(map[CharCode ]GlyphName ,error ){_ded :=make (map[CharCode ]GlyphName );var _fga CharCode ;for _ ,_bcg :=range diffList .Elements (){switch _ac :=_bcg .(type ){case *_fg .PdfObjectInteger :_fga =CharCode (*_ac ); -case *_fg .PdfObjectName :_ee :=string (*_ac );_ded [_fga ]=GlyphName (_ee );_fga ++;default:_aa .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0042\u0061\u0064\u0020\u0074\u0079\u0070\u0065\u002e\u0020\u006f\u0062\u006a\u003d\u0025\u0073",_bcg );return nil ,_fg .ErrTypeError ; -};};return _ded ,nil ;};func (_fgaa *simpleEncoder )Reset (){};func (_bdca UTF16Encoder )Encode (str string )[]byte {return []byte (_bc .StringToUTF16 (str ))};func (_bgc *differencesEncoding )String ()string {return _cf .Sprintf ("\u0064\u0069\u0066\u0066er\u0065\u006e\u0063\u0065\u0073\u0028\u0025\u0073\u002c\u0020\u0025\u0076\u0029",_bgc ._dbab .String (),_bgc ._gaa ); -};type GID uint16 ;func (_bcd *TrueTypeFontEncoder )RuneToCharcode (r rune )(CharCode ,bool ){_cff ,_aade :=_bcd ._egb .Read (r );if !_aade {_aa .Log .Debug ("M\u0069\u0073\u0073\u0069\u006e\u0067 \u0072\u0075\u006e\u0065\u0020\u0025d\u0020\u0028\u0025\u002b\u0071\u0029\u0020f\u0072\u006f\u006d\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067",r ,r ); -return 0,false ;};_bcd ._afa .Write (r );_gaga :=CharCode (_cff );return _gaga ,true ;};func (_fcdd simpleDecoder )Reset (){};const (_gdfc ="\u0050\u0064\u0066\u0044\u006f\u0063\u0045\u006e\u0063o\u0064\u0069\u006e\u0067";_fbd ="\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"; -);func NewUTF16TextEncoder (baseName string )UTF16Encoder {return UTF16Encoder {baseName }};type TrueTypeFontEncoder struct{_egb *_cfc .RuneUint16Map ;_afa *_cfc .RuneSet ;};func (_fdff CMapEncoder )charcodeToString (_bb CharCode )(string ,bool ){if _fdff ._dfe ==nil {return MissingCodeString ,false ; -};_faf :=_ffd .CharCode (_bb );if _fdff ._bge !=nil {var _cbg bool ;if _faf ,_cbg =_fdff ._bge .CharcodeToCID (_ffd .CharCode (_bb ));!_cbg {return MissingCodeString ,false ;};};return _fdff ._dfe .CharcodeToUnicode (_faf );};func _ebg (_aec TextEncoder ,_fdab []byte )string {_cfa :=make ([]rune ,0,len (_fdab )/2+len (_fdab )%2); -for len (_fdab )> 0{if len (_fdab )==1{_fdab =[]byte {_fdab [0],0};};_gcg :=CharCode (_c .BigEndian .Uint16 (_fdab [:]));_fdab =_fdab [2:];_bbd ,_adc :=_aec .CharcodeToRune (_gcg );if !_adc {_aa .Log .Debug ("\u0046a\u0069\u006ce\u0064\u0020\u0074\u006f \u006d\u0061\u0070 \u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0020to\u0020\u0072\u0075n\u0065\u002e \u0063\u0068\u0061\u0072\u0063\u006fd\u0065\u003d%\u0023\u0078",_gcg ); -continue ;};_cfa =append (_cfa ,_bbd );};return string (_cfa );};type charCodeGlyphNameTuple struct{CharCode CharCode ;GlyphName GlyphName ;};func (_cg *charCodeGlyphNameMap )Delete (key CharCode ){_cg ._fdb .Lock ();defer _cg ._fdb .Unlock ();delete (_cg ._aeg ,key ); -};func (_cgd simpleDecoder )Transform (dst ,src []byte ,_ bool )(_bafb ,_ddde int ,_ error ){for len (src )!=0{_bfc :=src [0];src =src [1:];_bag ,_cbga :=_cgd ._gfbb .Read (_bfc );if !_cbga {_bag =MissingCodeRune ;};if _a .RuneLen (_bag )> len (dst ){return _bafb ,_ddde ,_cc .ErrShortDst ; -};_dad :=_a .EncodeRune (dst ,_bag );dst =dst [_dad :];_ddde ++;_bafb +=_dad ;};return _bafb ,_ddde ,nil ;};func _bdec (_bec rune )string {_bcgd :="u\u006e\u0070\u0072\u0069\u006e\u0074\u0061\u0062\u006c\u0065";if _dc .IsPrint (_bec ){_bcgd =_cf .Sprintf ("\u0025\u0023\u0071",_bec ); -};return _cf .Sprintf ("\u0025\u002b\u0071\u0020\u0028\u0025\u0073\u0029",_bec ,_bcgd );};func NewMacExpertEncoder ()SimpleEncoder {return _bdg .NewEncoder ()};func (_bcc *charCodeGlyphNameMap )RangeDelete (f func (_deg CharCode ,_feb GlyphName )(_fcd bool ,_cb bool )){_bcc ._fdb .Lock (); -defer _bcc ._fdb .Unlock ();for _aac ,_da :=range _bcc ._aeg {_bfg ,_gf :=f (_aac ,_da );if _bfg {delete (_bcc ._aeg ,_aac );};if _gf {break ;};};};func (_bgg *differencesEncoding )Charcodes ()[]CharCode {_afe :=_bgg ._dbab .Charcodes ();_gdd :=true ;_ba :=make (map[CharCode ]struct{},len (_afe )); -for _ ,_ab :=range _afe {_ba [_ab ]=struct{}{};};_bgg ._fab .Range (func (_bgf byte ,_fda rune )(_fdg bool ){_acd :=CharCode (_bgf );if _ ,_ceg :=_ba [_acd ];!_ceg {_afe =append (_afe ,_acd );_gdd =false ;};return false ;});if !_gdd {_ae .Slice (_afe ,func (_gga ,_fff int )bool {return _afe [_gga ]< _afe [_fff ]}); -};return _afe ;};func (_gdbe *TrueTypeFontEncoder )String ()string {_bcff :=[]string {_cf .Sprintf ("\u0025\u0064\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073",_gdbe ._egb .Length ())};type runeGID struct{_dabd rune ;_ddgc GID ;};_adce :=make ([]runeGID ,0,_gdbe ._egb .Length ()); -_gdbe ._egb .Range (func (_dgcc rune ,_ggb uint16 )(_aefc bool ){_adce =append (_adce ,runeGID {_dabd :_dgcc ,_ddgc :GID (_ggb )});return false ;});_ae .Slice (_adce ,func (_gdcf ,_fbbc int )bool {return _adce [_gdcf ]._dabd < _adce [_fbbc ]._dabd });_aeeb :=len (_adce ); -if _aeeb > _aefd {_aeeb =_aefd ;};for _degc :=0;_degc < _aeeb ;_degc ++{_agbdf :=_adce [_degc ];_bcff =append (_bcff ,_cf .Sprintf ("\u0025\u0064\u003d\u0030\u0078\u0025\u0030\u0032\u0078\u003a\u0020\u0025\u0071",_agbdf ._dabd ,_agbdf ._dabd ,_agbdf ._ddgc )); -};return _cf .Sprintf ("T\u0052U\u0045\u0054\u0059\u0050\u0045\u005f\u0045\u004eC\u004f\u0044\u0045\u0052{%\u0073\u007d",_f .Join (_bcff ,"\u002c\u0020"));};func (_bde CMapEncoder )Encode (str string )[]byte {if _bde ._dfe ==nil {return []byte {};};if _bde ._dfe .NBits ()==8{return _dcc (_bde ,str ); -};return _cfbb (_bde ,str );};func (_faba *IdentityEncoder )RuneToCharcode (r rune )(CharCode ,bool ){_faba ._fcc .Write (r );return CharCode (r ),true ;};func (_age *simpleMapping )init (){_age ._ebbd =_cfc .MakeRuneByteMap (_age ._dfdb .Length ());_age ._dfdb .Range (func (_gfc byte ,_eea rune )(_gagg bool ){if _edb ,_add :=_age ._ebbd .Read (_eea ); -!_add ||_gfc < _edb {_age ._ebbd .Write (_eea ,_gfc );};return false ;});};const (MissingCodeRune ='\ufffd';MissingCodeString =string (MissingCodeRune ););func RuneToGlyph (r rune )(GlyphName ,bool ){_ecfa ,_ebec :=_aaeg .Read (r );if !_ebec &&r > 0{_ecfa =_cf .Sprintf ("\u0075n\u0069\u0025\u0030\u0034\u0078",r ); -_ebec =true ;};return GlyphName (_ecfa ),_ebec ;};func (_bbca *IdentityEncoder )RegisteredRunes ()[]rune {_bdc :=make ([]rune ,_bbca ._fcc .Length ());_acf :=0;_bbca ._fcc .Range (func (_bdea rune )(_ede bool ){_bdc [_acf ]=_bdea ;_acf ++;return false }); -return _bdc ;};func (_dgef UTF16Encoder )CharcodeToRune (code CharCode )(rune ,bool ){return rune (code ),true };var _bggf =_cfc .NewByteRuneMap (map[byte ]rune {0x1:'\x01',0x2:'\x02',0x3:'\x03',0x4:'\x04',0x5:'\x05',0x6:'\x06',0x7:'\a',0x8:'\b',0x9:'\t',0xa:'\n',0xb:'\v',0xc:'\f',0xd:'\r',0xe:'\x0e',0xf:'\x0f',0x10:'\x10',0x11:'\x11',0x12:'\x12',0x13:'\x13',0x14:'\x14',0x15:'\x15',0x16:'\x16',0x17:'\x17',0x18:'\x18',0x19:'\x19',0x1a:'\x1a',0x1b:'\x1b',0x1c:'\x1c',0x1d:'\x1d',0x1e:'\x1e',0x1f:'\x1f',0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'\'',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'`',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0x7f:'\u007f',0x80:'Ä',0x81:'Å',0x82:'Ç',0x83:'É',0x84:'Ñ',0x85:'Ö',0x86:'Ü',0x87:'á',0x88:'à',0x89:'â',0x8a:'ä',0x8b:'ã',0x8c:'å',0x8d:'ç',0x8e:'é',0x8f:'è',0x90:'ê',0x91:'ë',0x92:'í',0x93:'ì',0x94:'î',0x95:'ï',0x96:'ñ',0x97:'ó',0x98:'ò',0x99:'ô',0x9a:'ö',0x9b:'õ',0x9c:'ú',0x9d:'ù',0x9e:'û',0x9f:'ü',0xa0:'†',0xa1:'°',0xa2:'¢',0xa3:'£',0xa4:'§',0xa5:'•',0xa6:'¶',0xa7:'ß',0xa8:'®',0xa9:'©',0xaa:'™',0xab:'´',0xac:'¨',0xad:'≠',0xae:'Æ',0xaf:'Ø',0xb0:'∞',0xb1:'±',0xb2:'≤',0xb3:'≥',0xb4:'¥',0xb5:'µ',0xb6:'∂',0xb7:'∑',0xb8:'∏',0xb9:'π',0xba:'∫',0xbb:'ª',0xbc:'º',0xbd:'Ω',0xbe:'æ',0xbf:'ø',0xc0:'¿',0xc1:'¡',0xc2:'¬',0xc3:'√',0xc4:'ƒ',0xc5:'≈',0xc6:'∆',0xc7:'«',0xc8:'»',0xc9:'…',0xca:'\u00a0',0xcb:'À',0xcc:'Ã',0xcd:'Õ',0xce:'Œ',0xcf:'œ',0xd0:'–',0xd1:'—',0xd2:'“',0xd3:'”',0xd4:'‘',0xd5:'’',0xd6:'÷',0xd7:'◊',0xd8:'ÿ',0xd9:'Ÿ',0xda:'⁄',0xdb:'€',0xdc:'‹',0xdd:'›',0xde:'fi',0xdf:'fl',0xe0:'‡',0xe1:'·',0xe2:'‚',0xe3:'„',0xe4:'‰',0xe5:'Â',0xe6:'Ê',0xe7:'Á',0xe8:'Ë',0xe9:'È',0xea:'Í',0xeb:'Î',0xec:'Ï',0xed:'Ì',0xee:'Ó',0xef:'Ô',0xf0:'\uf8ff',0xf1:'Ò',0xf2:'Ú',0xf3:'Û',0xf4:'Ù',0xf5:'ı',0xf6:'ˆ',0xf7:'˜',0xf8:'¯',0xf9:'˘',0xfa:'˙',0xfb:'˚',0xfc:'¸',0xfd:'˝',0xfe:'˛',0xff:'ˇ'}); -func (_fbe *simpleEncodersMap )Write (s string ,f func ()SimpleEncoder ){_fbe ._fbag .Lock ();defer _fbe ._fbag .Unlock ();_fbe ._bef [s ]=f ;};type charCodeGlyphNameMap struct{_aeg map[CharCode ]GlyphName ;_fdb _g .RWMutex ;};func init (){RegisterSimpleEncoding (_eca ,NewMacExpertEncoder ); -RegisterSimpleEncoding (_gdc ,NewMacRomanEncoder );};var (_gef =_ced (_gdfc ,_agge );_aga =_ced (_fbd ,_aaega ););func RuneToString (r rune )string {if _fbc ,_gdfd :=_cd .Read (r );_gdfd {return _fbc ;};return string (r );};func (_gb *differencesEncoding )CharcodeToRune (code CharCode )(rune ,bool ){if code > 0xff{return MissingCodeRune ,false ; -};_ecf :=byte (code );if _dfce ,_beb :=_gb ._fab .Read (_ecf );_beb {return _dfce ,true ;};return _gb ._dbab .CharcodeToRune (code );};var (_aacc =_ff .MustCompile ("\u005e\u005b\u0041\u002dZa\u002d\u007a\u005d\u0028\u005c\u0064\u007b\u0031\u002c\u0035\u007d\u0029\u0024"); -_agg =_ff .MustCompile ("\u005e\u0075\u006e\u0069\u0028\u005b\u005c\u0064\u0041\u002d\u0046\u005d{\u0034\u007d\u0029\u0024");_efe =_ff .MustCompile ("\u005e\u0028\u005cw\u002b\u0029\u005c\u002e\u005c\u0077\u002b\u0024"););func (_fcg CMapEncoder )Decode (raw []byte )string {if _fcg ._bge !=nil {if _cag ,_dfb :=_fcg ._bge .BytesToCharcodes (raw ); -_dfb {var _dg _ce .Buffer ;for _ ,_dba :=range _cag {_ad ,_ :=_fcg .charcodeToString (CharCode (_dba ));_dg .WriteString (_ad );};return _dg .String ();};};return _ebg (_fcg ,raw );};func (_cbe *TrueTypeFontEncoder )ToPdfObject ()_fg .PdfObject {return _fg .MakeNull ()}; -func init (){RegisterSimpleEncoding (_abga ,NewSymbolEncoder );RegisterSimpleEncoding (_egd ,NewZapfDingbatsEncoder );};func RegisterSimpleEncoding (name string ,fnc func ()SimpleEncoder ){if _ ,_fcb :=_bdd .Read (name );_fcb {panic ("\u0061l\u0072e\u0061\u0064\u0079\u0020\u0072e\u0067\u0069s\u0074\u0065\u0072\u0065\u0064"); -};_bdd .Write (name ,fnc );};func (_cbf *TrueTypeFontEncoder )Decode (raw []byte )string {return _ebg (_cbf ,raw )};func (_bg *charCodeGlyphNameMap )Range (f func (_dd CharCode ,_de GlyphName )(_e bool )){_bg ._fdb .RLock ();defer _bg ._fdb .RUnlock (); -for _bf ,_ceb :=range _bg ._aeg {if f (_bf ,_ceb ){break ;};};};func _cfbb (_cfd TextEncoder ,_bac string )[]byte {_fdfd :=[]rune (_bac );_edg :=make ([]byte ,0,len (_fdfd )*2);for _ ,_aef :=range _fdfd {_ead ,_dbae :=_cfd .RuneToCharcode (_aef );if !_dbae {_aa .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u006d\u0061\u0070\u0020\u0072\u0075\u006e\u0065\u0020t\u006f\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065. \u0072\u0075\u006ee\u003d%\u002b\u0071",_aef ); -continue ;};var _gag [2]byte ;_c .BigEndian .PutUint16 (_gag [:],uint16 (_ead ));_edg =append (_edg ,_gag [:]...);};return _edg ;};func _ced (_dcd string ,_cba *_cfc .ByteRuneMap )*simpleMapping {return &simpleMapping {_bbf :_dcd ,_dfdb :_cba };};func (_adb *simpleEncoding )RuneToCharcode (r rune )(CharCode ,bool ){_bdb ,_gab :=_adb ._eaf .Read (r ); -if _adb ._acb ==nil {_adb ._acb =_cfc .MakeRuneSet (1);};_adb ._acb .Write (r );return CharCode (_bdb ),_gab ;};func init (){RegisterSimpleEncoding (_gdfc ,NewPdfDocEncoder );RegisterSimpleEncoding (_fbd ,NewStandardEncoder );};func (_gebg *simpleEncoding )CharcodeToRune (code CharCode )(rune ,bool ){if code > 0xff{return MissingCodeRune ,false ; -};_acag :=byte (code );_fcbe ,_abg :=_gebg ._cec .Read (_acag );if _gebg ._acb ==nil {_gebg ._acb =_cfc .MakeRuneSet (1);};_gebg ._acb .Write (_fcbe );return _fcbe ,_abg ;};func (_eafa *simpleEncodersMap )Range (f func (_bfa string ,_ccgf func ()SimpleEncoder )(_eeg bool )){_eafa ._fbag .RLock (); -defer _eafa ._fbag .RUnlock ();for _gfee ,_dde :=range _eafa ._bef {if f (_gfee ,_dde ){break ;};};};func (_ccff UTF16Encoder )Decode (raw []byte )string {return _bc .UTF16ToString (raw )};var (_dgg =_ced (_cabb ,_egf ););func (_gbd *simpleEncoding )Decode (raw []byte )string {_ccge ,_ :=_gbd .NewDecoder ().Bytes (raw ); -return string (_ccge );};func (_gdfgc *differencesEncoding )BaseName ()string {return _gdfgc ._dbab .BaseName ()};func init (){RegisterSimpleEncoding (_cabb ,NewWinAnsiEncoder )};type simpleEncoding struct{_dbbd string ;_eaf *_cfc .RuneByteMap ;_cec *_cfc .ByteRuneMap ; -_acb *_cfc .RuneSet ;};func (_agcg *TrueTypeFontEncoder )SubsetRegistered (){_aa .Log .Info ("\u0054\u0054\u0046\u0020Su\u0062\u0073\u0065\u0074\u003a\u0020\u0050\u0072\u0075\u006e\u0069\u006e\u0067");_agcg ._egb .RangeDelete (func (_ebfg rune ,_ uint16 )(_cgc bool ,_cebc bool ){return !_agcg ._afa .Exists (_ebfg ),_cebc }); -};func (_fba *simpleMapping )NewEncoder ()SimpleEncoder {_fba ._fgd .Do (_fba .init );return &simpleEncoding {_dbbd :_fba ._bbf ,_eaf :_fba ._ebbd ,_cec :_fba ._dfdb };};func (_dcef *TrueTypeFontEncoder )RegisteredRunes ()[]rune {_gde :=make ([]rune ,_dcef ._afa .Length ()); -_bddf :=0;_dcef ._afa .Range (func (_bgb rune )(_cda bool ){_gde [_bddf ]=_bgb ;_bddf ++;return false });return _gde ;};func (_fbb *IdentityEncoder )GlyphToRune (glyph GlyphName )(rune ,bool ){if glyph =="\u0073\u0070\u0061c\u0065"{return ' ',true ;}else if !_f .HasPrefix (string (glyph ),"\u0075\u006e\u0069")||len (glyph )!=7{return 0,false ; -};_bfd ,_eae :=_fd .ParseUint (string (glyph [3:]),16,16);if _eae !=nil {return 0,false ;};return rune (_bfd ),true ;};func ApplyDifferences (base SimpleEncoder ,differences map[CharCode ]GlyphName )SimpleEncoder {if len (differences )==0{return base ; -};_ef :=make ([]charCodeGlyphNameTuple ,len (differences ));var _bbe int ;for _dgc ,_gfb :=range differences {_ef [_bbe ]=charCodeGlyphNameTuple {CharCode :_dgc ,GlyphName :_gfb };_bbe ++;};_bga :=&differencesEncoding {_dbab :base ,_gaa :_ca (_ef ...),_fab :_cfc .MakeByteRuneMap (len (differences )),_ggf :_cfc .MakeRuneByteMap (len (differences ))}; -if _cgg ,_gdfg :=base .(*differencesEncoding );_gdfg {_ccf :=make (map[CharCode ]GlyphName );_cgg ._gaa .Range (func (_cfe CharCode ,_bbc GlyphName )(_aaa bool ){_ccf [_cfe ]=_bbc ;return false });_bga ._gaa .Range (func (_efb CharCode ,_bffe GlyphName )(_dea bool ){_ccf [_efb ]=_bffe ; -return false });differences =_ccf ;};for _fb ,_af :=range differences {_gae :=byte (_fb );_dge ,_gc :=GlyphToRune (_af );if _gc {_bga ._ggf .Write (_dge ,_gae );}else {_aa .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u004e\u006f \u006d\u0061\u0074c\u0068\u0020\u0066\u006f\u0072\u0020\u0067\u006c\u0079ph\u003d\u0025\u0071 \u0064\u0069f\u0066\u0065\u0072\u0065\u006e\u0063e\u0073\u003d%\u002b\u0076",_af ,differences ); -};_bga ._fab .Write (_gae ,_dge );};return _bga ;};var _eadc =_cfc .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'\uf721',0x22:'\uf6f8',0x23:'\uf7a2',0x24:'\uf724',0x25:'\uf6e4',0x26:'\uf726',0x27:'\uf7b4',0x28:'⁽',0x29:'⁾',0x2a:'‥',0x2b:'․',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'⁄',0x30:'\uf730',0x31:'\uf731',0x32:'\uf732',0x33:'\uf733',0x34:'\uf734',0x35:'\uf735',0x36:'\uf736',0x37:'\uf737',0x38:'\uf738',0x39:'\uf739',0x3a:':',0x3b:';',0x3d:'\uf6de',0x3f:'\uf73f',0x44:'\uf7f0',0x47:'¼',0x48:'½',0x49:'¾',0x4a:'⅛',0x4b:'⅜',0x4c:'⅝',0x4d:'⅞',0x4e:'⅓',0x4f:'⅔',0x56:'ff',0x57:'fi',0x58:'fl',0x59:'ffi',0x5a:'ffl',0x5b:'₍',0x5d:'₎',0x5e:'\uf6f6',0x5f:'\uf6e5',0x60:'\uf760',0x61:'\uf761',0x62:'\uf762',0x63:'\uf763',0x64:'\uf764',0x65:'\uf765',0x66:'\uf766',0x67:'\uf767',0x68:'\uf768',0x69:'\uf769',0x6a:'\uf76a',0x6b:'\uf76b',0x6c:'\uf76c',0x6d:'\uf76d',0x6e:'\uf76e',0x6f:'\uf76f',0x70:'\uf770',0x71:'\uf771',0x72:'\uf772',0x73:'\uf773',0x74:'\uf774',0x75:'\uf775',0x76:'\uf776',0x77:'\uf777',0x78:'\uf778',0x79:'\uf779',0x7a:'\uf77a',0x7b:'₡',0x7c:'\uf6dc',0x7d:'\uf6dd',0x7e:'\uf6fe',0x81:'\uf6e9',0x82:'\uf6e0',0x87:'\uf7e1',0x88:'\uf7e0',0x89:'\uf7e2',0x8a:'\uf7e4',0x8b:'\uf7e3',0x8c:'\uf7e5',0x8d:'\uf7e7',0x8e:'\uf7e9',0x8f:'\uf7e8',0x90:'\uf7ea',0x91:'\uf7eb',0x92:'\uf7ed',0x93:'\uf7ec',0x94:'\uf7ee',0x95:'\uf7ef',0x96:'\uf7f1',0x97:'\uf7f3',0x98:'\uf7f2',0x99:'\uf7f4',0x9a:'\uf7f6',0x9b:'\uf7f5',0x9c:'\uf7fa',0x9d:'\uf7f9',0x9e:'\uf7fb',0x9f:'\uf7fc',0xa1:'⁸',0xa2:'₄',0xa3:'₃',0xa4:'₆',0xa5:'₈',0xa6:'₇',0xa7:'\uf6fd',0xa9:'\uf6df',0xaa:'₂',0xac:'\uf7a8',0xae:'\uf6f5',0xaf:'\uf6f0',0xb0:'₅',0xb2:'\uf6e1',0xb3:'\uf6e7',0xb4:'\uf7fd',0xb6:'\uf6e3',0xb9:'\uf7fe',0xbb:'₉',0xbc:'₀',0xbd:'\uf6ff',0xbe:'\uf7e6',0xbf:'\uf7f8',0xc0:'\uf7bf',0xc1:'₁',0xc2:'\uf6f9',0xc9:'\uf7b8',0xcf:'\uf6fa',0xd0:'‒',0xd1:'\uf6e6',0xd6:'\uf7a1',0xd8:'\uf7ff',0xda:'¹',0xdb:'²',0xdc:'³',0xdd:'⁴',0xde:'⁵',0xdf:'⁶',0xe0:'⁷',0xe1:'⁹',0xe2:'⁰',0xe4:'\uf6ec',0xe5:'\uf6f1',0xe6:'\uf6f3',0xe9:'\uf6ed',0xea:'\uf6f2',0xeb:'\uf6eb',0xf1:'\uf6ee',0xf2:'\uf6fb',0xf3:'\uf6f4',0xf4:'\uf7af',0xf5:'\uf6ea',0xf6:'ⁿ',0xf7:'\uf6ef',0xf8:'\uf6e2',0xf9:'\uf6e8',0xfa:'\uf6f7',0xfb:'\uf6fc'}); -func NewSymbolEncoder ()SimpleEncoder {return _afc .NewEncoder ()};func NewWinAnsiEncoder ()SimpleEncoder {return _dgg .NewEncoder ()};func (_bgag *IdentityEncoder )Decode (raw []byte )string {return _ebg (_bgag ,raw )};func _ca (_fgf ...charCodeGlyphNameTuple )*charCodeGlyphNameMap {_bd :=map[CharCode ]GlyphName {}; -for _ ,_gd :=range _fgf {_bd [_gd .CharCode ]=_gd .GlyphName ;};return &charCodeGlyphNameMap {_aeg :_bd };};var _egf =_cfc .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'\'',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'`',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0x7f:'•',0x80:'€',0x81:'•',0x82:'‚',0x83:'ƒ',0x84:'„',0x85:'…',0x86:'†',0x87:'‡',0x88:'ˆ',0x89:'‰',0x8a:'Š',0x8b:'‹',0x8c:'Œ',0x8d:'•',0x8e:'Ž',0x8f:'•',0x90:'•',0x91:'‘',0x92:'’',0x93:'“',0x94:'”',0x95:'•',0x96:'–',0x97:'—',0x98:'˜',0x99:'™',0x9a:'š',0x9b:'›',0x9c:'œ',0x9d:'•',0x9e:'ž',0x9f:'Ÿ',0xa0:' ',0xa1:'¡',0xa2:'¢',0xa3:'£',0xa4:'¤',0xa5:'¥',0xa6:'¦',0xa7:'§',0xa8:'¨',0xa9:'©',0xaa:'ª',0xab:'«',0xac:'¬',0xad:'-',0xae:'®',0xaf:'¯',0xb0:'°',0xb1:'±',0xb2:'²',0xb3:'³',0xb4:'´',0xb5:'µ',0xb6:'¶',0xb7:'·',0xb8:'¸',0xb9:'¹',0xba:'º',0xbb:'»',0xbc:'¼',0xbd:'½',0xbe:'¾',0xbf:'¿',0xc0:'À',0xc1:'Á',0xc2:'Â',0xc3:'Ã',0xc4:'Ä',0xc5:'Å',0xc6:'Æ',0xc7:'Ç',0xc8:'È',0xc9:'É',0xca:'Ê',0xcb:'Ë',0xcc:'Ì',0xcd:'Í',0xce:'Î',0xcf:'Ï',0xd0:'Ð',0xd1:'Ñ',0xd2:'Ò',0xd3:'Ó',0xd4:'Ô',0xd5:'Õ',0xd6:'Ö',0xd7:'×',0xd8:'Ø',0xd9:'Ù',0xda:'Ú',0xdb:'Û',0xdc:'Ü',0xdd:'Ý',0xde:'Þ',0xdf:'ß',0xe0:'à',0xe1:'á',0xe2:'â',0xe3:'ã',0xe4:'ä',0xe5:'å',0xe6:'æ',0xe7:'ç',0xe8:'è',0xe9:'é',0xea:'ê',0xeb:'ë',0xec:'ì',0xed:'í',0xee:'î',0xef:'ï',0xf0:'ð',0xf1:'ñ',0xf2:'ò',0xf3:'ó',0xf4:'ô',0xf5:'õ',0xf6:'ö',0xf7:'÷',0xf8:'ø',0xf9:'ù',0xfa:'ú',0xfb:'û',0xfc:'ü',0xfd:'ý',0xfe:'þ',0xff:'ÿ'}); -func (_bbeb UTF16Encoder )String ()string {return _bbeb ._cce };func (_bca CMapEncoder )ToPdfObject ()_fg .PdfObject {if _bca ._ga !=""{return _fg .MakeName (_bca ._ga );};return _fg .MakeNull ();};var _fee =_cfc .NewStringRuneMap (map[string ]rune {"\u0066\u005f\u0074":0xe000,"\u0066\u005f\u006a":0xe001,"\u0066\u005f\u0062":0xe002,"\u0066\u005f\u0068":0xe003,"\u0066\u005f\u006b":0xe004,"\u0074\u005f\u0074":0xe005,"\u0074\u005f\u0066":0xe006,"\u0066\u005f\u0066_\u006a":0xe007,"\u0066\u005f\u0066_\u0062":0xe008,"\u0066\u005f\u0066_\u0068":0xe009,"\u0066\u005f\u0066_\u006b":0xe00a,"\u0054\u005f\u0068":0xe00b}); -func (_abe *simpleEncoding )NewDecoder ()*_b .Decoder {return &_b .Decoder {Transformer :simpleDecoder {_gfbb :_abe ._cec }};};func (_afea *IdentityEncoder )RuneToGlyph (r rune )(GlyphName ,bool ){if r ==' '{return "\u0073\u0070\u0061c\u0065",true ;};_dfg :=GlyphName (_cf .Sprintf ("\u0075n\u0069\u0025\u002e\u0034\u0058",r )); -return _dfg ,true ;};func ExpandLigatures (runes []rune )string {var _dfdag _ce .Buffer ;for _ ,_bffg :=range runes {_ffea :=RuneToString (_bffg );_dfdag .WriteString (_ffea );};return _dfdag .String ();};func (_cad *simpleEncoding )Encode (str string )[]byte {_geg ,_ :=_cad .NewEncoder ().Bytes ([]byte (str )); -return _geg ;};func (_ggd *differencesEncoding )RuneToCharcode (r rune )(CharCode ,bool ){if _ec ,_bbed :=_ggd ._ggf .Read (r );_bbed {return CharCode (_ec ),true ;};return _ggd ._dbab .RuneToCharcode (r );};const _cabb ="\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"; -var _aaega =_cfc .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'’',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'‘',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0xa1:'¡',0xa2:'¢',0xa3:'£',0xa4:'⁄',0xa5:'¥',0xa6:'ƒ',0xa7:'§',0xa8:'¤',0xa9:'\'',0xaa:'“',0xab:'«',0xac:'‹',0xad:'›',0xae:'fi',0xaf:'fl',0xb1:'–',0xb2:'†',0xb3:'‡',0xb4:'·',0xb6:'¶',0xb7:'•',0xb8:'‚',0xb9:'„',0xba:'”',0xbb:'»',0xbc:'…',0xbd:'‰',0xbf:'¿',0xc1:'`',0xc2:'´',0xc3:'ˆ',0xc4:'˜',0xc5:'¯',0xc6:'˘',0xc7:'˙',0xc8:'¨',0xca:'˚',0xcb:'¸',0xcc:'˝',0xcd:'˛',0xce:'ˇ',0xcf:'—',0xe1:'Æ',0xe3:'ª',0xe8:'Ł',0xe9:'Ø',0xea:'Œ',0xeb:'º',0xf1:'æ',0xf5:'ı',0xf8:'ł',0xf9:'ø',0xfa:'œ',0xfb:'ß'}); -func _bff (_ag *charCodeGlyphNameMap )*_fg .PdfObjectArray {if _ag .Length ()==0{return nil ;};_dbb :=make ([]CharCode ,0,_ag .Length ());_ag .Range (func (_dbg CharCode ,_ GlyphName )(_bba bool ){_dbb =append (_dbb ,_dbg );return false });_ae .Slice (_dbb ,func (_gdf ,_ddd int )bool {return _dbb [_gdf ]< _dbb [_ddd ]}); -_be :=_dbb [0];_bgee ,_ :=_ag .Read (_be );_aca :=[]_fg .PdfObject {_fg .MakeInteger (int64 (_be )),_fg .MakeName (string (_bgee ))};for _ ,_bcce :=range _dbb [1:]{if _bcce ==_be +1{_bgee ,_ =_ag .Read (_bcce );_aca =append (_aca ,_fg .MakeName (string (_bgee ))); -}else {_aca =append (_aca ,_fg .MakeInteger (int64 (_bcce )));};_be =_bcce ;};return _fg .MakeArray (_aca ...);};func (_dcce *simpleEncoding )BaseName ()string {return _dcce ._dbbd }; \ No newline at end of file +package textencoding ;import (_ba "bytes";_be "encoding/binary";_gg "errors";_da "fmt";_ac "github.com/unidoc/unipdf/v3/common";_bac "github.com/unidoc/unipdf/v3/core";_gda "github.com/unidoc/unipdf/v3/internal/cmap";_dd "github.com/unidoc/unipdf/v3/internal/strutils"; +_ca "github.com/unidoc/unipdf/v3/internal/textencoding/internal/syncmap";_a "golang.org/x/text/encoding";_ee "golang.org/x/text/transform";_gd "regexp";_e "sort";_b "strconv";_dc "strings";_c "sync";_d "unicode";_g "unicode/utf8";);func (_bae *differencesEncoding )String ()string {return _da .Sprintf ("\u0064\u0069\u0066\u0066er\u0065\u006e\u0063\u0065\u0073\u0028\u0025\u0073\u002c\u0020\u0025\u0076\u0029",_bae ._cfc .String (),_bae ._dec ); +};func (_faf *TrueTypeFontEncoder )RuneToCharcode (r rune )(CharCode ,bool ){_fbcf ,_adaec :=_faf ._afgd .Read (r );if !_adaec {_ac .Log .Debug ("M\u0069\u0073\u0073\u0069\u006e\u0067 \u0072\u0075\u006e\u0065\u0020\u0025d\u0020\u0028\u0025\u002b\u0071\u0029\u0020f\u0072\u006f\u006d\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067",r ,r ); +return 0,false ;};_faf ._fcdg .Write (r );_aagd :=CharCode (_fbcf );return _aagd ,true ;};func (_fff *simpleEncodersMap )Write (s string ,f func ()SimpleEncoder ){_fff ._fag .Lock ();defer _fff ._fag .Unlock ();_fff ._dba [s ]=f ;};func (_gef *IdentityEncoder )RuneToGlyph (r rune )(GlyphName ,bool ){if r ==' '{return "\u0073\u0070\u0061c\u0065",true ; +};_cce :=GlyphName (_da .Sprintf ("\u0075n\u0069\u0025\u002e\u0034\u0058",r ));return _cce ,true ;};var _bfa =_ca .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'’',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'‘',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0xa1:'¡',0xa2:'¢',0xa3:'£',0xa4:'⁄',0xa5:'¥',0xa6:'ƒ',0xa7:'§',0xa8:'¤',0xa9:'\'',0xaa:'“',0xab:'«',0xac:'‹',0xad:'›',0xae:'fi',0xaf:'fl',0xb1:'–',0xb2:'†',0xb3:'‡',0xb4:'·',0xb6:'¶',0xb7:'•',0xb8:'‚',0xb9:'„',0xba:'”',0xbb:'»',0xbc:'…',0xbd:'‰',0xbf:'¿',0xc1:'`',0xc2:'´',0xc3:'ˆ',0xc4:'˜',0xc5:'¯',0xc6:'˘',0xc7:'˙',0xc8:'¨',0xca:'˚',0xcb:'¸',0xcc:'˝',0xcd:'˛',0xce:'ˇ',0xcf:'—',0xe1:'Æ',0xe3:'ª',0xe8:'Ł',0xe9:'Ø',0xea:'Œ',0xeb:'º',0xf1:'æ',0xf5:'ı',0xf8:'ł',0xf9:'ø',0xfa:'œ',0xfb:'ß'}); +func _bcbf (_dac TextEncoder ,_beg string )[]byte {_afeg :=[]rune (_beg );_bca :=make ([]byte ,0,len (_afeg )*2);for _ ,_beaf :=range _afeg {_ede ,_gffb :=_dac .RuneToCharcode (_beaf );if !_gffb {_ac .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u006d\u0061\u0070\u0020\u0072\u0075\u006e\u0065\u0020t\u006f\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065. \u0072\u0075\u006ee\u003d%\u002b\u0071",_beaf ); +continue ;};var _ggdc [2]byte ;_be .BigEndian .PutUint16 (_ggdc [:],uint16 (_ede ));_bca =append (_bca ,_ggdc [:]...);};return _bca ;};type simpleDecoder struct{_beae *_ca .ByteRuneMap };var _eeb =_ca .NewStringRuneMap (map[string ]rune {"\u002en\u006f\u0074\u0064\u0065\u0066":0xfffd,"\u0032\u0035\u0030\u0061":0x250a,"\u0032\u0035\u0030\u0062":0x250b,"\u0032\u0035\u0030\u0064":0x250d,"\u0032\u0035\u0030\u0065":0x250e,"\u0032\u0035\u0030\u0066":0x250f,"\u0032\u0035\u0031\u0061":0x251a,"\u0032\u0035\u0031\u0062":0x251b,"\u0032\u0035\u0031\u0064":0x251d,"\u0032\u0035\u0031\u0065":0x251e,"\u0032\u0035\u0031\u0066":0x251f,"\u0032\u0035\u0032\u0061":0x252a,"\u0032\u0035\u0032\u0062":0x252b,"\u0032\u0035\u0032\u0064":0x252d,"\u0032\u0035\u0032\u0065":0x252e,"\u0032\u0035\u0032\u0066":0x252f,"\u0032\u0035\u0033\u0061":0x253a,"\u0032\u0035\u0033\u0062":0x253b,"\u0032\u0035\u0033\u0064":0x253d,"\u0032\u0035\u0033\u0065":0x253e,"\u0032\u0035\u0033\u0066":0x253f,"\u0032\u0035\u0034\u0061":0x254a,"\u0032\u0035\u0034\u0062":0x254b,"\u0032\u0035\u0034\u0063":0x254c,"\u0032\u0035\u0034\u0064":0x254d,"\u0032\u0035\u0034\u0065":0x254e,"\u0032\u0035\u0034\u0066":0x254f,"\u0032\u0035\u0036\u0064":0x256d,"\u0032\u0035\u0036\u0065":0x256e,"\u0032\u0035\u0036\u0066":0x256f,"\u0032\u0035\u0037\u0061":0x257a,"\u0032\u0035\u0037\u0062":0x257b,"\u0032\u0035\u0037\u0063":0x257c,"\u0032\u0035\u0037\u0064":0x257d,"\u0032\u0035\u0037\u0065":0x257e,"\u0032\u0035\u0037\u0066":0x257f,"\u0041":0x0041,"\u0041\u0045":0x00c6,"\u0041E\u0061\u0063\u0075\u0074\u0065":0x01fc,"\u0041\u0045\u006d\u0061\u0063\u0072\u006f\u006e":0x01e2,"\u0041E\u0073\u006d\u0061\u006c\u006c":0xf7e6,"\u0041\u0050\u004c\u0062\u006f\u0078\u0071\u0075\u0065s\u0074\u0069\u006f\u006e":0x2370,"\u0041\u0050\u004c\u0062\u006f\u0078\u0075\u0070\u0063\u0061\u0072\u0065\u0074":0x2353,"\u0041P\u004cn\u006f\u0074\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068":0x2340,"A\u0050\u004c\u006e\u006f\u0074\u0073\u006c\u0061\u0073\u0068":0x233f,"\u0041\u0061\u0063\u0075\u0074\u0065":0x00c1,"A\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e1,"\u0041\u0062\u0072\u0065\u0076\u0065":0x0102,"A\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065":0x1eae,"\u0041\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d0,"\u0041\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077":0x1eb6,"A\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065":0x1eb0,"\u0041b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1eb2,"A\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065":0x1eb4,"\u0041\u0063\u0061\u0072\u006f\u006e":0x01cd,"\u0041c\u0069\u0072\u0063\u006c\u0065":0x24b6,"A\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00c2,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ea4,"\u0041\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1eac,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ea6,"A\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ea8,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7e2,"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1eaa,"\u0041\u0063\u0075t\u0065":0xf6c9,"\u0041\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7b4,"\u0041d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0200,"\u0041d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00c4,"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d2,"\u0041d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01de,"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7e4,"\u0041d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ea0,"\u0041\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e":0x01e0,"\u0041\u0067\u0072\u0061\u0076\u0065":0x00c0,"A\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e0,"\u0041\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ea2,"A\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d4,"\u0041\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0202,"\u0041\u006c\u0070h\u0061":0x0391,"\u0041\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073":0x0386,"\u0041m\u0061\u0063\u0072\u006f\u006e":0x0100,"\u0041\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff21,"\u0041o\u0067\u006f\u006e\u0065\u006b":0x0104,"\u0041\u0072\u0069n\u0067":0x00c5,"\u0041\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065":0x01fa,"\u0041\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077":0x1e00,"\u0041\u0072\u0069\u006e\u0067\u0073\u006d\u0061\u006c\u006c":0xf7e5,"\u0041\u0073\u006d\u0061\u006c\u006c":0xf761,"\u0041\u0074\u0069\u006c\u0064\u0065":0x00c3,"A\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e3,"A\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0531,"\u0042":0x0042,"\u0042\u0061\u0072\u0076":0x2ae7,"\u0042\u0062\u0062\u0041":0x1d538,"\u0042\u0062\u0062\u0042":0x1d539,"\u0042\u0062\u0062\u0043":0x2102,"\u0042\u0062\u0062\u0044":0x1d53b,"\u0042\u0062\u0062\u0045":0x1d53c,"\u0042\u0062\u0062\u0046":0x1d53d,"\u0042\u0062\u0062\u0047":0x1d53e,"\u0042\u0062\u0062\u0047\u0061\u006d\u006d\u0061":0x213e,"\u0042\u0062\u0062\u0048":0x210d,"\u0042\u0062\u0062\u0049":0x1d540,"\u0042\u0062\u0062\u004a":0x1d541,"\u0042\u0062\u0062\u004b":0x1d542,"\u0042\u0062\u0062\u004c":0x1d543,"\u0042\u0062\u0062\u004d":0x1d544,"\u0042\u0062\u0062\u004e":0x2115,"\u0042\u0062\u0062\u004f":0x1d546,"\u0042\u0062\u0062\u0050":0x2119,"\u0042\u0062\u0062P\u0069":0x213f,"\u0042\u0062\u0062\u0051":0x211a,"\u0042\u0062\u0062\u0052":0x211d,"\u0042\u0062\u0062\u0053":0x1d54a,"\u0042\u0062\u0062\u0054":0x1d54b,"\u0042\u0062\u0062\u0055":0x1d54c,"\u0042\u0062\u0062\u0056":0x1d54d,"\u0042\u0062\u0062\u0057":0x1d54e,"\u0042\u0062\u0062\u0058":0x1d54f,"\u0042\u0062\u0062\u0059":0x1d550,"\u0042\u0062\u0062\u005a":0x2124,"\u0042\u0062\u0062\u0061":0x1d552,"\u0042\u0062\u0062\u0062":0x1d553,"\u0042\u0062\u0062\u0063":0x1d554,"\u0042\u0062\u0062\u0064":0x1d555,"\u0042\u0062\u0062\u0065":0x1d556,"\u0042\u0062\u0062\u0065\u0069\u0067\u0068\u0074":0x1d7e0,"\u0042\u0062\u0062\u0066":0x1d557,"\u0042b\u0062\u0066\u0069\u0076\u0065":0x1d7dd,"\u0042b\u0062\u0066\u006f\u0075\u0072":0x1d7dc,"\u0042\u0062\u0062\u0067":0x1d558,"\u0042\u0062\u0062\u0067\u0061\u006d\u006d\u0061":0x213d,"\u0042\u0062\u0062\u0068":0x1d559,"\u0042\u0062\u0062\u0069":0x1d55a,"\u0042\u0062\u0062\u006a":0x1d55b,"\u0042\u0062\u0062\u006b":0x1d55c,"\u0042\u0062\u0062\u006c":0x1d55d,"\u0042\u0062\u0062\u006d":0x1d55e,"\u0042\u0062\u0062\u006e":0x1d55f,"\u0042b\u0062\u006e\u0069\u006e\u0065":0x1d7e1,"\u0042\u0062\u0062\u006f":0x1d560,"\u0042\u0062\u0062\u006f\u006e\u0065":0x1d7d9,"\u0042\u0062\u0062\u0070":0x1d561,"\u0042\u0062\u0062p\u0069":0x213c,"\u0042\u0062\u0062\u0071":0x1d562,"\u0042\u0062\u0062\u0072":0x1d563,"\u0042\u0062\u0062\u0073":0x1d564,"\u0042\u0062\u0062\u0073\u0065\u0076\u0065\u006e":0x1d7df,"\u0042\u0062\u0062\u0073\u0069\u0078":0x1d7de,"\u0042\u0062\u0062\u0073\u0075\u006d":0x2140,"\u0042\u0062\u0062\u0074":0x1d565,"\u0042\u0062\u0062\u0074\u0068\u0072\u0065\u0065":0x1d7db,"\u0042\u0062\u0062\u0074\u0077\u006f":0x1d7da,"\u0042\u0062\u0062\u0075":0x1d566,"\u0042\u0062\u0062\u0076":0x1d567,"\u0042\u0062\u0062\u0077":0x1d568,"\u0042\u0062\u0062\u0078":0x1d569,"\u0042\u0062\u0062\u0079":0x1d56a,"\u0042\u0062\u0062\u007a":0x1d56b,"\u0042b\u0062\u007a\u0065\u0072\u006f":0x1d7d8,"\u0042c\u0069\u0072\u0063\u006c\u0065":0x24b7,"\u0042\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e02,"\u0042d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e04,"B\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0532,"\u0042\u0065\u0074\u0061":0x0392,"\u0042\u0068\u006fo\u006b":0x0181,"\u0042\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e06,"\u0042\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff22,"\u0042\u0072\u0065\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf6f4,"\u0042\u0073\u006d\u0061\u006c\u006c":0xf762,"\u0042s\u006d\u0061\u006c\u006c\u0063\u0061p":0x0229,"\u0042t\u006f\u0070\u0062\u0061\u0072":0x0182,"\u0043":0x0043,"\u0043\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053e,"\u0043\u0061\u0063\u0075\u0074\u0065":0x0106,"\u0043\u0061\u0072o\u006e":0xf6ca,"\u0043\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf6f5,"\u0043\u0063\u0061\u0072\u006f\u006e":0x010c,"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x00c7,"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065":0x1e08,"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c":0xf7e7,"\u0043c\u0069\u0072\u0063\u006c\u0065":0x24b8,"C\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0108,"\u0043\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x010a,"\u0043\u0065\u0064i\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c":0xf7b8,"C\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0549,"C\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04bc,"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0427,"\u0043\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04be,"C\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04b6,"\u0043\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04f4,"\u0043\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0543,"C\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04cb,"\u0043h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x04b8,"\u0043\u0068\u0069":0x03a7,"\u0043\u0068\u006fo\u006b":0x0187,"\u0043i\u0072c\u0075\u006d\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf6f6,"\u0043\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff23,"\u0043\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0551,"\u0043o\u006c\u006f\u006e\u0065\u0071":0x2a74,"\u0043\u0073\u006d\u0061\u006c\u006c":0xf763,"\u0044":0x0044,"\u0044\u0044\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x27f1,"\u0044\u005a":0x01f1,"\u0044Z\u0063\u0061\u0072\u006f\u006e":0x01c4,"\u0044\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0534,"\u0044\u0061\u0066\u0072\u0069\u0063\u0061\u006e":0x0189,"\u0044\u0061\u0073h\u0056":0x2ae5,"\u0044a\u0073\u0068\u0056\u0044\u0061\u0073h":0x27da,"\u0044\u0061\u0073h\u0076":0x2ae4,"\u0044\u0063\u0061\u0072\u006f\u006e":0x010e,"\u0044c\u0061\u0072\u006f\u006e\u0031":0xf810,"\u0044\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e10,"\u0044c\u0069\u0072\u0063\u006c\u0065":0x24b9,"\u0044\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e12,"\u0044\u0063\u0072\u006f\u0061\u0074":0x0110,"\u0044\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e0a,"\u0044d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e0c,"\u0044\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x290b,"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0414,"\u0044e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03ee,"\u0044\u0065\u006ct\u0061":0x2206,"\u0044\u0065\u006c\u0074\u0061\u0067\u0072\u0065\u0065\u006b":0x0394,"\u0044\u0068\u006fo\u006b":0x018a,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0xf6cb,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0041\u0063\u0075\u0074\u0065":0xf6cc,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0047\u0072\u0061\u0076\u0065":0xf6cd,"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0073\u006d\u0061\u006c\u006c":0xf7a8,"\u0044i\u0067\u0061\u006d\u006d\u0061":0x1d7cb,"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b":0x03dc,"\u0044\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e0e,"\u0044\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff24,"\u0044\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074s\u006d\u0061\u006c\u006c":0xf6f7,"\u0044\u0073\u006d\u0061\u006c\u006c":0xf764,"\u0044t\u006f\u0070\u0062\u0061\u0072":0x018b,"\u0044\u007a":0x01f2,"\u0044z\u0063\u0061\u0072\u006f\u006e":0x01c5,"D\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04e0,"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x040f,"\u0045":0x0045,"\u0045\u0061\u0063\u0075\u0074\u0065":0x00c9,"E\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e9,"\u0045\u0062\u0072\u0065\u0076\u0065":0x0114,"\u0045\u0063\u0061\u0072\u006f\u006e":0x011a,"\u0045\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065":0x1e1c,"E\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0535,"\u0045c\u0069\u0072\u0063\u006c\u0065":0x24ba,"E\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ca,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ebe,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e18,"\u0045\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ec6,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ec0,"E\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ec2,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7ea,"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ec4,"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c":0x0404,"\u0045d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0204,"\u0045d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00cb,"\u0045\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7eb,"\u0045\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0116,"\u0045d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1eb8,"\u0045\u0067\u0072\u0061\u0076\u0065":0x00c8,"E\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7e8,"\u0045\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0537,"\u0045\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1eba,"\u0045\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e":0x2167,"\u0045\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0206,"\u0045\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0464,"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x041b,"E\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x216a,"\u0045m\u0061\u0063\u0072\u006f\u006e":0x0112,"\u0045\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e16,"\u0045\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e14,"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x041c,"\u0045\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff25,"\u0045\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a2,"\u0045\u006e\u0067":0x014a,"\u0045\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a4,"\u0045\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c7,"\u0045o\u0067\u006f\u006e\u0065\u006b":0x0118,"\u0045\u006f\u0070e\u006e":0x0190,"\u0045p\u0073\u0069\u006c\u006f\u006e":0x0395,"\u0045\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x0388,"\u0045\u0071\u0075i\u0076":0x2263,"\u0045r\u0065\u0076\u0065\u0072\u0073\u0065d":0x018e,"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x042d,"\u0045\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04aa,"\u0045\u0073\u0068":0x01a9,"\u0045\u0073\u006d\u0061\u006c\u006c":0xf765,"\u0045\u0074\u0061":0x0397,"\u0045\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0538,"\u0045\u0074\u0061\u0074\u006f\u006e\u006f\u0073":0x0389,"\u0045\u0074\u0068":0x00d0,"\u0045\u0074\u0068\u0073\u006d\u0061\u006c\u006c":0xf7f0,"\u0045\u0074\u0069\u006c\u0064\u0065":0x1ebc,"E\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e1a,"\u0045\u0075\u006c\u0065\u0072\u0063\u006f\u006e\u0073\u0074":0x2107,"\u0045\u0075\u0072\u006f":0x20ac,"\u0045\u007a\u0068":0x01b7,"\u0045\u007a\u0068\u0063\u0061\u0072\u006f\u006e":0x01ee,"E\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x01b8,"\u0046":0x0046,"\u0046c\u0069\u0072\u0063\u006c\u0065":0x24bb,"\u0046\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e1e,"F\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0556,"\u0046e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03e4,"\u0046\u0068\u006fo\u006b":0x0191,"\u0046\u0069\u006e\u0076":0x2132,"\u0046i\u0076\u0065\u0072\u006f\u006d\u0061n":0x2164,"\u0046\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff26,"\u0046o\u0075\u0072\u0072\u006f\u006d\u0061n":0x2163,"\u0046\u0073\u006d\u0061\u006c\u006c":0xf766,"\u0047":0x0047,"\u0047\u0042\u0073\u0071\u0075\u0061\u0072\u0065":0x3387,"\u0047\u0061\u0063\u0075\u0074\u0065":0x01f4,"\u0047\u0061\u006dm\u0061":0x0393,"\u0047\u0061\u006dm\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e":0x0194,"\u0047\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03ea,"\u0047\u0062\u0072\u0065\u0076\u0065":0x011e,"\u0047\u0063\u0061\u0072\u006f\u006e":0x01e6,"\u0047c\u0069\u0072\u0063\u006c\u0065":0x24bc,"G\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x011c,"\u0047\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0122,"\u0047\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0120,"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0413,"\u0047\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0542,"G\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x0494,"\u0047\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0492,"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0490,"\u0047\u0068\u006fo\u006b":0x0193,"G\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0533,"\u0047m\u0061\u0063\u0072\u006f\u006e":0x1e20,"\u0047\u006d\u0069\u0072":0x2141,"\u0047\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff27,"\u0047\u0072\u0061v\u0065":0xf6ce,"\u0047\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf760,"\u0047\u0073\u006d\u0061\u006c\u006c":0xf767,"\u0047\u0073\u006d\u0061\u006c\u006c\u0063\u0061\u0070\u0068\u006f\u006f\u006b":0x022b,"\u0047\u0073\u006d\u0061\u006c\u006c\u0068\u006f\u006f\u006b":0x029b,"\u0047s\u0074\u0072\u006f\u006b\u0065":0x01e4,"\u0047\u0074":0x2aa2,"\u0048":0x0048,"\u0048\u0032\u0032\u0030\u0037\u0033":0x25a1,"\u0048\u0050\u0073\u0071\u0075\u0061\u0072\u0065":0x33cb,"\u0048\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a8,"\u0048\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b2,"\u0048\u0062\u0061\u0072":0x0126,"H\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2a,"\u0048\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e28,"\u0048c\u0069\u0072\u0063\u006c\u0065":0x24bd,"H\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0124,"\u0048d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e26,"\u0048\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e22,"\u0048d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e24,"\u0048\u0065\u0072\u006d\u0061\u0070\u0068\u0072\u006f\u0064\u0069\u0074\u0065":0x26a5,"\u0048\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff28,"\u0048\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0540,"\u0048\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e8,"\u0048\u0073\u006d\u0061\u006c\u006c":0xf768,"\u0048s\u006d\u0061\u006c\u006c\u0063\u0061p":0x022c,"\u0048\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0xf6cf,"\u0048\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074s\u006d\u0061\u006c\u006c":0xf6f8,"\u0048\u007a\u0073\u0071\u0075\u0061\u0072\u0065":0x3390,"\u0049":0x0049,"\u0049\u004a":0x0132,"\u0049\u0061\u0063\u0075\u0074\u0065":0x00cd,"I\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7ed,"\u0049\u0062\u0072\u0065\u0076\u0065":0x012c,"\u0049\u0063\u0061\u0072\u006f\u006e":0x01cf,"\u0049c\u0069\u0072\u0063\u006c\u0065":0x24be,"I\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ce,"\u0049\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7ee,"\u0049c\u0079\u0072\u0069\u006c\u0031":0x03fc,"\u0049d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0208,"\u0049d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00cf,"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x1e2e,"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e4,"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7ef,"\u0049\u0064\u006f\u0074":0x0130,"\u0049d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1eca,"\u0049e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d6,"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0415,"\u0049\u0065\u0068\u006f\u006f\u006b":0x03f8,"\u0049\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b":0x03fa,"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072":0x2111,"\u0049\u0067\u0072\u0061\u0076\u0065":0x00cc,"I\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7ec,"\u0049\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ec8,"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0418,"\u0049\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020a,"\u0049m\u0061\u0063\u0072\u006f\u006e":0x012a,"\u0049m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e2,"\u0049\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff29,"I\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053b,"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0401,"\u0049o\u0067\u006f\u006e\u0065\u006b":0x012e,"\u0049\u006f\u0074\u0061":0x0399,"I\u006f\u0074\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e":0x0196,"\u0049\u006f\u0074\u0061\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073":0x02f3,"\u0049\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03aa,"\u0049o\u0074\u0061\u0074\u006f\u006e\u006fs":0x038a,"\u0049\u0073\u006d\u0061\u006c\u006c":0xf769,"\u0049s\u0074\u0072\u006f\u006b\u0065":0x0197,"\u0049\u0074\u0069\u006c\u0064\u0065":0x0128,"I\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2c,"\u0049\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0476,"\u004a":0x004a,"\u004a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0541,"\u004ac\u0069\u0072\u0063\u006c\u0065":0x24bf,"J\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0134,"\u004a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054b,"\u004a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2a,"\u004a\u006f\u0069\u006e":0x2a1d,"\u004a\u0073\u006d\u0061\u006c\u006c":0xf76a,"\u004b":0x004b,"\u004b\u0042\u0073\u0071\u0075\u0061\u0072\u0065":0x3385,"\u004b\u004b\u0073\u0071\u0075\u0061\u0072\u0065":0x33cd,"\u004b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04a0,"\u004b\u0061\u0063\u0075\u0074\u0065":0x1e30,"\u004b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049a,"\u004b\u0061\u0068\u006f\u006f\u006b":0x03ff,"\u004b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c3,"\u004b\u0061\u0070p\u0061":0x039a,"\u004b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049e,"\u004ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049c,"\u004b\u0063\u0061\u0072\u006f\u006e":0x01e8,"\u004b\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0136,"\u004bc\u0069\u0072\u0063\u006c\u0065":0x24c0,"\u004bd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e32,"K\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0554,"K\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053f,"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0425,"\u004b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e6,"\u004b\u0068\u006fo\u006b":0x0198,"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x040c,"\u004b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e34,"\u004b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2b,"\u004b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0480,"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b":0x03de,"K\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x046e,"\u004b\u0073\u006d\u0061\u006c\u006c":0xf76b,"\u004c":0x004c,"\u004c\u004a":0x01c7,"\u004c\u004c":0xf6bf,"\u004c\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2b45,"\u004c\u0061\u0063\u0075\u0074\u0065":0x0139,"\u004c\u0061\u006d\u0062\u0064\u0061":0x039b,"\u004cb\u0072\u0062\u0072\u0061\u006b":0x27ec,"\u004c\u0063\u0061\u0072\u006f\u006e":0x013d,"\u004cc\u0061\u0072\u006f\u006e\u0031":0xf812,"\u004c\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x013b,"\u004cc\u0065\u0064\u0069\u006c\u006c\u00611":0xf81a,"\u004cc\u0069\u0072\u0063\u006c\u0065":0x24c1,"\u004c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e3c,"\u004c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x013f,"\u004cd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e36,"\u004cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e38,"\u004c\u0064\u0073\u0068":0x21b2,"\u004c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053c,"\u004c\u006a":0x01c8,"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0409,"\u004c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e3a,"\u004c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2c,"\u004c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x27f8,"\u004co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x27fa,"\u004c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x27fd,"\u004c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f":0x27fe,"\u004c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077":0x27f9,"\u004cp\u0061\u0072\u0065\u006e\u0067\u0074r":0x2995,"\u004c\u0073\u006c\u0061\u0073\u0068":0x0141,"L\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c":0xf6f9,"\u004c\u0073\u006d\u0061\u006c\u006c":0xf76c,"\u004cs\u006d\u0061\u006c\u006c\u0063\u0061p":0x022f,"\u004c\u0074":0x2aa1,"\u004c\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29da,"\u004d":0x004d,"\u004d\u0042\u0073\u0071\u0075\u0061\u0072\u0065":0x3386,"\u004d\u0061\u0063\u0072\u006f\u006e":0xf6d0,"M\u0061\u0063\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf7af,"\u004d\u0061\u0063\u0075\u0074\u0065":0x1e3e,"\u004d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x2906,"\u004d\u0061\u0070\u0073\u0074\u006f":0x2907,"\u004dc\u0069\u0072\u0063\u006c\u0065":0x24c2,"\u004d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e40,"\u004dd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e42,"M\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0544,"\u004d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2d,"\u004d\u0073\u006d\u0061\u006c\u006c":0xf76d,"\u004dt\u0075\u0072\u006e\u0065\u0064":0x019c,"\u004d\u0075":0x039c,"\u004e":0x004e,"\u004e\u004a":0x01ca,"\u004e\u0061\u0063\u0075\u0074\u0065":0x0143,"\u004e\u0063\u0061\u0072\u006f\u006e":0x0147,"\u004ec\u0065\u0064\u0069\u006c\u006c\u00611":0xf81c,"\u004ec\u0069\u0072\u0063\u006c\u0065":0x24c3,"\u004e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e4a,"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0145,"\u004e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e44,"\u004ed\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e46,"\u004ee\u0061\u0072\u0072\u006f\u0077":0x21d7,"\u004eh\u006f\u006f\u006b\u006c\u0065\u0066t":0x019d,"\u004ei\u006e\u0065\u0072\u006f\u006d\u0061n":0x2168,"\u004e\u006a":0x01cb,"\u004e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e48,"\u004e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2e,"\u004e\u006f\u0074":0x2aec,"N\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0546,"\u004e\u0073\u006d\u0061\u006c\u006c":0xf76e,"\u004e\u0074\u0069\u006c\u0064\u0065":0x00d1,"N\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f1,"\u004e\u0075":0x039d,"\u004ew\u0061\u0072\u0072\u006f\u0077":0x21d6,"\u004f":0x004f,"\u004f\u0045":0x0152,"\u004fE\u0073\u006d\u0061\u006c\u006c":0xf6fa,"\u004f\u0061\u0063\u0075\u0074\u0065":0x00d3,"O\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f3,"\u004fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e8,"\u004f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ea,"\u004f\u0062\u0072\u0065\u0076\u0065":0x014e,"\u004f\u0063\u0061\u0072\u006f\u006e":0x01d1,"\u004f\u0063\u0065\u006e\u0074\u0065\u0072\u0065\u0064t\u0069\u006c\u0064\u0065":0x019f,"\u004fc\u0069\u0072\u0063\u006c\u0065":0x24c4,"O\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00d4,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ed0,"\u004f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ed8,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ed2,"O\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ed4,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7f4,"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ed6,"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c":0x041e,"\u004fd\u0062\u006c\u0061\u0063\u0075\u0074e":0x0150,"\u004fd\u0062\u006c\u0067\u0072\u0061\u0076e":0x020c,"\u004fd\u0069\u0065\u0072\u0065\u0073\u0069s":0x00d6,"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e6,"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7f6,"\u004fd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ecc,"O\u0067\u006f\u006e\u0065\u006b\u0073\u006d\u0061\u006c\u006c":0xf6fb,"\u004f\u0067\u0072\u0061\u0076\u0065":0x00d2,"O\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f2,"\u004f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0555,"\u004f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ece,"\u004f\u0068\u006fr\u006e":0x01a0,"\u004f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1eda,"\u004f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ee2,"\u004f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1edc,"\u004f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1ede,"\u004f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1ee0,"\u004f\u0069":0x01a2,"\u004f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020e,"\u004fm\u0061\u0063\u0072\u006f\u006e":0x014c,"\u004f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e52,"\u004f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e50,"\u004f\u006d\u0065g\u0061":0x2126,"\u004f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0460,"\u004f\u006d\u0065\u0067\u0061\u0067\u0072\u0065\u0065\u006b":0x03a9,"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076":0x2127,"\u004fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047a,"\u004fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047c,"\u004f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073":0x038f,"\u004fm\u0069\u0063\u0072\u006f\u006e":0x039f,"\u004f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x038c,"\u004f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff2f,"\u004f\u006e\u0065\u0072\u006f\u006d\u0061\u006e":0x2160,"\u004fo\u0067\u006f\u006e\u0065\u006b":0x01ea,"\u004f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e":0x01ec,"\u004f\u006f\u0070e\u006e":0x0186,"\u004f\u0073\u006c\u0061\u0073\u0068":0x00d8,"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065":0x01fe,"O\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c":0xf7f8,"\u004f\u0073\u006d\u0061\u006c\u006c":0xf76f,"\u004f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x047e,"\u004f\u0074\u0069\u006c\u0064\u0065":0x00d5,"O\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e4c,"\u004f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073":0x1e4e,"O\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f5,"\u004f\u0074\u0069\u006d\u0065\u0073":0x2a37,"\u0050":0x0050,"\u0050\u0061\u0063\u0075\u0074\u0065":0x1e54,"\u0050c\u0069\u0072\u0063\u006c\u0065":0x24c5,"\u0050\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e56,"P\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054a,"P\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04a6,"\u0050\u0068\u0069":0x03a6,"\u0050\u0068\u006fo\u006b":0x01a4,"\u0050\u0069":0x03a0,"\u0050\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0553,"P\u006c\u0061\u006e\u0063\u006b\u0063\u006f\u006e\u0073\u0074":0x210e,"\u0050\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff30,"\u0050\u0072\u0065\u0063":0x2abb,"\u0050\u0072\u006fp\u0065\u0072\u0074\u0079\u004c\u0069\u006e\u0065":0x214a,"\u0050\u0073\u0069":0x03a8,"P\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0470,"\u0050\u0073\u006d\u0061\u006c\u006c":0xf770,"\u0051":0x0051,"\u0051\u0045\u0044":0x220e,"\u0051c\u0069\u0072\u0063\u006c\u0065":0x24c6,"\u0051\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff31,"\u0051\u0073\u006d\u0061\u006c\u006c":0xf771,"\u0051\u0075\u0065\u0073\u0074\u0069\u006f\u006e":0x2047,"\u0052":0x0052,"R\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2b46,"\u0052\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054c,"\u0052\u0061\u0063\u0075\u0074\u0065":0x0154,"\u0052b\u0072\u0062\u0072\u0061\u006b":0x27ed,"\u0052\u0063\u0061\u0072\u006f\u006e":0x0158,"\u0052\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0156,"\u0052c\u0065\u0064\u0069\u006c\u006c\u00611":0xf81e,"\u0052c\u0069\u0072\u0063\u006c\u0065":0x24c7,"R\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0xf831,"\u0052d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0210,"\u0052\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e58,"\u0052d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e5a,"\u0052d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e5c,"\u0052\u0064\u0073\u0068":0x21b3,"R\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0550,"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072":0x211c,"\u0052\u0068\u006f":0x03a1,"\u0052i\u006e\u0067\u0073\u006d\u0061\u006cl":0xf6fc,"\u0052\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0212,"\u0052\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e5e,"\u0052\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff32,"\u0052\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073":0x2996,"\u0052\u0073\u006d\u0061\u006c\u006c":0xf772,"\u0052\u0073\u006d\u0061\u006c\u006c\u0069\u006e\u0076e\u0072\u0074\u0065\u0064":0x0281,"\u0052\u0073\u006d\u0061ll\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069o\u0072":0x02b6,"\u0052\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072":0x023f,"\u0052\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29db,"\u0053":0x0053,"\u0053\u0044\u0031\u0035\u0030\u0031\u0030\u0030":0x024f,"\u0053\u0046\u0030\u0031\u0030\u0030\u0030\u0030":0x250c,"\u0053\u0046\u0030\u0032\u0030\u0030\u0030\u0030":0x2514,"\u0053\u0046\u0030\u0033\u0030\u0030\u0030\u0030":0x2510,"\u0053\u0046\u0030\u0034\u0030\u0030\u0030\u0030":0x2518,"\u0053\u0046\u0030\u0035\u0030\u0030\u0030\u0030":0x253c,"\u0053\u0046\u0030\u0036\u0030\u0030\u0030\u0030":0x252c,"\u0053\u0046\u0030\u0037\u0030\u0030\u0030\u0030":0x2534,"\u0053\u0046\u0030\u0038\u0030\u0030\u0030\u0030":0x251c,"\u0053\u0046\u0030\u0039\u0030\u0030\u0030\u0030":0x2524,"\u0053\u0046\u0031\u0030\u0030\u0030\u0030\u0030":0x2500,"\u0053\u0046\u0031\u0031\u0030\u0030\u0030\u0030":0x2502,"\u0053\u0046\u0031\u0039\u0030\u0030\u0030\u0030":0x2561,"\u0053\u0046\u0032\u0030\u0030\u0030\u0030\u0030":0x2562,"\u0053\u0046\u0032\u0031\u0030\u0030\u0030\u0030":0x2556,"\u0053\u0046\u0032\u0032\u0030\u0030\u0030\u0030":0x2555,"\u0053\u0046\u0032\u0033\u0030\u0030\u0030\u0030":0x2563,"\u0053\u0046\u0032\u0034\u0030\u0030\u0030\u0030":0x2551,"\u0053\u0046\u0032\u0035\u0030\u0030\u0030\u0030":0x2557,"\u0053\u0046\u0032\u0036\u0030\u0030\u0030\u0030":0x255d,"\u0053\u0046\u0032\u0037\u0030\u0030\u0030\u0030":0x255c,"\u0053\u0046\u0032\u0038\u0030\u0030\u0030\u0030":0x255b,"\u0053\u0046\u0033\u0036\u0030\u0030\u0030\u0030":0x255e,"\u0053\u0046\u0033\u0037\u0030\u0030\u0030\u0030":0x255f,"\u0053\u0046\u0033\u0038\u0030\u0030\u0030\u0030":0x255a,"\u0053\u0046\u0033\u0039\u0030\u0030\u0030\u0030":0x2554,"\u0053\u0046\u0034\u0030\u0030\u0030\u0030\u0030":0x2569,"\u0053\u0046\u0034\u0031\u0030\u0030\u0030\u0030":0x2566,"\u0053\u0046\u0034\u0032\u0030\u0030\u0030\u0030":0x2560,"\u0053\u0046\u0034\u0033\u0030\u0030\u0030\u0030":0x2550,"\u0053\u0046\u0034\u0034\u0030\u0030\u0030\u0030":0x256c,"\u0053\u0046\u0034\u0035\u0030\u0030\u0030\u0030":0x2567,"\u0053\u0046\u0034\u0036\u0030\u0030\u0030\u0030":0x2568,"\u0053\u0046\u0034\u0037\u0030\u0030\u0030\u0030":0x2564,"\u0053\u0046\u0034\u0038\u0030\u0030\u0030\u0030":0x2565,"\u0053\u0046\u0034\u0039\u0030\u0030\u0030\u0030":0x2559,"\u0053\u0046\u0035\u0030\u0030\u0030\u0030\u0030":0x2558,"\u0053\u0046\u0035\u0031\u0030\u0030\u0030\u0030":0x2552,"\u0053\u0046\u0035\u0032\u0030\u0030\u0030\u0030":0x2553,"\u0053\u0046\u0035\u0033\u0030\u0030\u0030\u0030":0x256b,"\u0053\u0046\u0035\u0034\u0030\u0030\u0030\u0030":0x256a,"\u0053\u0061\u0063\u0075\u0074\u0065":0x015a,"\u0053a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e64,"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b":0x03e0,"\u0053\u0063\u0061\u0072\u006f\u006e":0x0160,"\u0053c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e66,"S\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf6fd,"\u0053\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x015e,"\u0053c\u0065\u0064\u0069\u006c\u006c\u00611":0xf816,"\u0053\u0063\u0068w\u0061":0x018f,"\u0053\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d8,"S\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04da,"\u0053c\u0069\u0072\u0063\u006c\u0065":0x24c8,"S\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x015c,"\u0053\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0218,"\u0053\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e60,"\u0053d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e62,"\u0053d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074":0x1e68,"\u0053e\u0061\u0072\u0072\u006f\u0077":0x21d8,"S\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054d,"\u0053\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2166,"S\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0547,"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0428,"\u0053\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e2,"\u0053\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ba,"S\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03ec,"\u0053\u0069\u0067m\u0061":0x03a3,"\u0053\u0069\u0078\u0072\u006f\u006d\u0061\u006e":0x2165,"\u0053\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff33,"\u0053\u0071\u0063a\u0070":0x2a4e,"\u0053\u0071\u0063u\u0070":0x2a4f,"\u0053\u0073\u006d\u0061\u006c\u006c":0xf773,"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b":0x03da,"\u0053\u0075\u0063\u0063":0x2abc,"\u0053w\u0061\u0072\u0072\u006f\u0077":0x21d9,"\u0054":0x0054,"\u0054\u0061\u0075":0x03a4,"\u0054\u0062\u0061\u0072":0x0166,"\u0054\u0063\u0061\u0072\u006f\u006e":0x0164,"\u0054c\u0061\u0072\u006f\u006e\u0031":0xf814,"\u0054c\u0065\u0064\u0069\u006c\u006c\u00611":0xf818,"\u0054c\u0069\u0072\u0063\u006c\u0065":0x24c9,"\u0054\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e70,"\u0054\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0162,"\u0054\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e6a,"\u0054d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e6c,"\u0054\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ac,"\u0054\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2169,"\u0054\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b4,"\u0054\u0068\u0065t\u0061":0x0398,"\u0054\u0068\u006fo\u006b":0x01ac,"\u0054\u0068\u006fr\u006e":0x00de,"\u0054\u0068\u006f\u0072\u006e\u0073\u006d\u0061\u006c\u006c":0xf7fe,"\u0054\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e":0x2162,"\u0054\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c":0xf6fe,"\u0054\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054f,"\u0054\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e6e,"\u0054\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff34,"\u0054\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0539,"\u0054\u006f\u006e\u0065\u0066\u0069\u0076\u0065":0x01bc,"\u0054o\u006e\u0065\u0073\u0069\u0078":0x0184,"\u0054o\u006e\u0065\u0074\u0077\u006f":0x01a7,"\u0054\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b":0x01ae,"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0426,"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x040b,"\u0054\u0073\u006d\u0061\u006c\u006c":0xf774,"T\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e":0x216b,"\u0054\u0077\u006f\u0072\u006f\u006d\u0061\u006e":0x2161,"\u0055":0x0055,"\u0055\u0055\u0070\u0061\u0072\u0072\u006f\u0077":0x27f0,"\u0055\u0061\u0063\u0075\u0074\u0065":0x00da,"U\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7fa,"\u0055\u0062\u0072\u0065\u0076\u0065":0x016c,"\u0055\u0063\u0061\u0072\u006f\u006e":0x01d3,"\u0055\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0xf833,"\u0055c\u0069\u0072\u0063\u006c\u0065":0x24ca,"U\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00db,"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e76,"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c":0xf7fb,"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c":0x0423,"\u0055d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0214,"\u0055d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00dc,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x01d7,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077":0x1e72,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e":0x01d9,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04f0,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065":0x01db,"\u0055d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01d5,"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7fc,"\u0055d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ee4,"\u0055\u0067\u0072\u0061\u0076\u0065":0x00d9,"U\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c":0xf7f9,"\u0055\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ee6,"\u0055\u0068\u006fr\u006e":0x01af,"\u0055\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1ee8,"\u0055\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ef0,"\u0055\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1eea,"\u0055\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1eec,"\u0055\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1eee,"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0x0170,"U\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04f2,"\u0055\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0216,"\u0055\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0478,"\u0055m\u0061\u0063\u0072\u006f\u006e":0x016a,"\u0055m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ee,"\u0055m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x1e7a,"\u0055\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff35,"\u0055o\u0067\u006f\u006e\u0065\u006b":0x0172,"\u0055p\u0073\u0069\u006c\u006f\u006e":0x03a5,"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031":0x03d2,"U\u0070\u0073\u0069\u006c\u006f\u006ea\u0063\u0075\u0074\u0065\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006fl\u0067r\u0065\u0065\u006b":0x03d3,"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0061\u0066r\u0069\u0063\u0061\u006e":0x01b1,"\u0055\u0070s\u0069\u006c\u006fn\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073":0x02f4,"\u0055p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03ab,"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u0068\u006f\u006fk\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b":0x03d4,"\u0055\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x038e,"\u0055\u0072\u0069n\u0067":0x016e,"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x040e,"\u0055\u0073\u006d\u0061\u006c\u006c":0xf775,"\u0055\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04ae,"\u0055\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b0,"\u0055\u0074\u0069\u006c\u0064\u0065":0x0168,"U\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e78,"U\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e74,"\u0055\u0075\u0070\u0061\u0072\u0072\u006f\u0077":0x290a,"\u0056":0x0056,"\u0056\u0044\u0061s\u0068":0x22ab,"\u0056\u0062\u0061\u0072":0x2aeb,"\u0056c\u0069\u0072\u0063\u006c\u0065":0x24cb,"\u0056d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e7e,"\u0056\u0065\u0065":0x2a54,"V\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x054e,"\u0056\u0068\u006fo\u006b":0x01b2,"\u0056\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff36,"\u0056\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0548,"\u0056\u0073\u006d\u0061\u006c\u006c":0xf776,"\u0056\u0074\u0069\u006c\u0064\u0065":0x1e7c,"\u0056\u0076\u0065r\u0074":0x2980,"\u0057":0x0057,"\u0057\u0061\u0063\u0075\u0074\u0065":0x1e82,"\u0057c\u0069\u0072\u0063\u006c\u0065":0x24cc,"W\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0174,"\u0057d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e84,"\u0057\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e86,"\u0057d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e88,"\u0057\u0065\u0064g\u0065":0x2a53,"\u0057\u0067\u0072\u0061\u0076\u0065":0x1e80,"\u0057\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff37,"\u0057\u0073\u006d\u0061\u006c\u006c":0xf777,"\u0058":0x0058,"\u0058c\u0069\u0072\u0063\u006c\u0065":0x24cd,"\u0058d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e8c,"\u0058\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8a,"X\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053d,"\u0058\u0069":0x039e,"\u0058\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff38,"\u0058\u0073\u006d\u0061\u006c\u006c":0xf778,"\u0059":0x0059,"\u0059\u0061\u0063\u0075\u0074\u0065":0x00dd,"Y\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c":0xf7fd,"\u0059c\u0069\u0072\u0063\u006c\u0065":0x24ce,"Y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0176,"\u0059d\u0069\u0065\u0072\u0065\u0073\u0069s":0x0178,"\u0059\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c":0xf7ff,"\u0059\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8e,"\u0059d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ef4,"Y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04f8,"\u0059\u0067\u0072\u0061\u0076\u0065":0x1ef2,"\u0059\u0068\u006fo\u006b":0x01b3,"\u0059\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ef6,"\u0059\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0545,"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0407,"\u0059\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0552,"\u0059\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff39,"\u0059\u0073\u006d\u0061\u006c\u006c":0xf779,"\u0059s\u006d\u0061\u006c\u006c\u0063\u0061p":0x021f,"\u0059\u0074\u0069\u006c\u0064\u0065":0x1ef8,"\u0059\u0075\u0070":0x2144,"\u0059\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x046a,"\u0059\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063":0x046c,"\u0059\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0466,"\u0059u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x0468,"\u005a":0x005a,"\u005a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0536,"\u005a\u0061\u0063\u0075\u0074\u0065":0x0179,"\u005a\u0063\u0061\u0072\u006f\u006e":0x017d,"Z\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf6ff,"\u005ac\u0069\u0072\u0063\u006c\u0065":0x24cf,"Z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x1e90,"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x017b,"\u005ad\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e92,"\u005a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0498,"\u005ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x04de,"\u005a\u0065\u0074\u0061":0x0396,"Z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x053a,"\u005a\u0068\u0065\u0062\u0072\u0065\u0076\u0065":0x03fd,"\u005a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04c1,"Z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x0496,"\u005a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04dc,"\u005a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e94,"\u005a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff3a,"\u005a\u0073\u006d\u0061\u006c\u006c":0xf77a,"\u005as\u0074\u0072\u006f\u006b\u0065":0x01b5,"\u0061":0x0061,"\u0061\u0031":0x2701,"\u0061\u0032":0x2702,"\u0061\u0033":0x2704,"\u0061\u0034":0x260e,"\u0061\u0035":0x2706,"\u0061\u0036":0x271d,"\u0061\u0037":0x271e,"\u0061\u0038":0x271f,"\u0061\u0039":0x2720,"\u0061\u0031\u0030":0x2721,"\u0061\u0031\u0031":0x261b,"\u0061\u0031\u0032":0x261e,"\u0061\u0031\u0033":0x270c,"\u0061\u0031\u0034":0x270d,"\u0061\u0031\u0035":0x270e,"\u0061\u0031\u0036":0x270f,"\u0061\u0031\u0037":0x2711,"\u0061\u0031\u0038":0x2712,"\u0061\u0031\u0039":0x2713,"\u0061\u0032\u0030":0x2714,"\u0061\u0032\u0031":0x2715,"\u0061\u0032\u0032":0x2716,"\u0061\u0032\u0033":0x2717,"\u0061\u0032\u0034":0x2718,"\u0061\u0032\u0035":0x2719,"\u0061\u0032\u0036":0x271a,"\u0061\u0032\u0037":0x271b,"\u0061\u0032\u0038":0x271c,"\u0061\u0032\u0039":0x2722,"\u0061\u0033\u0030":0x2723,"\u0061\u0033\u0031":0x2724,"\u0061\u0033\u0032":0x2725,"\u0061\u0033\u0033":0x2726,"\u0061\u0033\u0034":0x2727,"\u0061\u0033\u0035":0x2605,"\u0061\u0033\u0036":0x2729,"\u0061\u0033\u0037":0x272a,"\u0061\u0033\u0038":0x272b,"\u0061\u0033\u0039":0x272c,"\u0061\u0034\u0030":0x272d,"\u0061\u0034\u0031":0x272e,"\u0061\u0034\u0032":0x272f,"\u0061\u0034\u0033":0x2730,"\u0061\u0034\u0034":0x2731,"\u0061\u0034\u0035":0x2732,"\u0061\u0034\u0036":0x2733,"\u0061\u0034\u0037":0x2734,"\u0061\u0034\u0038":0x2735,"\u0061\u0034\u0039":0x2736,"\u0061\u0035\u0030":0x2737,"\u0061\u0035\u0031":0x2738,"\u0061\u0035\u0032":0x2739,"\u0061\u0035\u0033":0x273a,"\u0061\u0035\u0034":0x273b,"\u0061\u0035\u0035":0x273c,"\u0061\u0035\u0036":0x273d,"\u0061\u0035\u0037":0x273e,"\u0061\u0035\u0038":0x273f,"\u0061\u0035\u0039":0x2740,"\u0061\u0036\u0030":0x2741,"\u0061\u0036\u0031":0x2742,"\u0061\u0036\u0032":0x2743,"\u0061\u0036\u0033":0x2744,"\u0061\u0036\u0034":0x2745,"\u0061\u0036\u0035":0x2746,"\u0061\u0036\u0036":0x2747,"\u0061\u0036\u0037":0x2748,"\u0061\u0036\u0038":0x2749,"\u0061\u0036\u0039":0x274a,"\u0061\u0037\u0030":0x274b,"\u0061\u0037\u0031":0x25cf,"\u0061\u0037\u0032":0x274d,"\u0061\u0037\u0033":0x25a0,"\u0061\u0037\u0034":0x274f,"\u0061\u0037\u0035":0x2751,"\u0061\u0037\u0036":0x25b2,"\u0061\u0037\u0037":0x25bc,"\u0061\u0037\u0038":0x25c6,"\u0061\u0037\u0039":0x2756,"\u0061\u0038\u0031":0x25d7,"\u0061\u0038\u0032":0x2758,"\u0061\u0038\u0033":0x2759,"\u0061\u0038\u0034":0x275a,"\u0061\u0038\u0035":0xf8de,"\u0061\u0038\u0036":0xf8e0,"\u0061\u0038\u0037":0xf8e1,"\u0061\u0038\u0038":0xf8e2,"\u0061\u0038\u0039":0xf8d7,"\u0061\u0039\u0030":0xf8d8,"\u0061\u0039\u0031":0xf8db,"\u0061\u0039\u0032":0xf8dc,"\u0061\u0039\u0033":0xf8d9,"\u0061\u0039\u0034":0xf8da,"\u0061\u0039\u0035":0xf8e3,"\u0061\u0039\u0036":0xf8e4,"\u0061\u0039\u0037":0x275b,"\u0061\u0039\u0038":0x275c,"\u0061\u0039\u0039":0x275d,"\u0061\u0031\u0030\u0030":0x275e,"\u0061\u0031\u0030\u0031":0x2761,"\u0061\u0031\u0030\u0032":0x2762,"\u0061\u0031\u0030\u0033":0x2763,"\u0061\u0031\u0030\u0034":0x2764,"\u0061\u0031\u0030\u0035":0x2710,"\u0061\u0031\u0030\u0036":0x2765,"\u0061\u0031\u0030\u0037":0x2766,"\u0061\u0031\u0030\u0038":0x2767,"\u0061\u0031\u0031\u0037":0x2709,"\u0061\u0031\u0031\u0038":0x2708,"\u0061\u0031\u0031\u0039":0x2707,"\u0061\u0031\u0032\u0030":0x2460,"\u0061\u0031\u0032\u0031":0x2461,"\u0061\u0031\u0032\u0032":0x2462,"\u0061\u0031\u0032\u0033":0x2463,"\u0061\u0031\u0032\u0034":0x2464,"\u0061\u0031\u0032\u0035":0x2465,"\u0061\u0031\u0032\u0036":0x2466,"\u0061\u0031\u0032\u0037":0x2467,"\u0061\u0031\u0032\u0038":0x2468,"\u0061\u0031\u0032\u0039":0x2469,"\u0061\u0031\u0033\u0030":0x2776,"\u0061\u0031\u0033\u0031":0x2777,"\u0061\u0031\u0033\u0032":0x2778,"\u0061\u0031\u0033\u0033":0x2779,"\u0061\u0031\u0033\u0034":0x277a,"\u0061\u0031\u0033\u0035":0x277b,"\u0061\u0031\u0033\u0036":0x277c,"\u0061\u0031\u0033\u0037":0x277d,"\u0061\u0031\u0033\u0038":0x277e,"\u0061\u0031\u0033\u0039":0x277f,"\u0061\u0031\u0034\u0030":0x2780,"\u0061\u0031\u0034\u0031":0x2781,"\u0061\u0031\u0034\u0032":0x2782,"\u0061\u0031\u0034\u0033":0x2783,"\u0061\u0031\u0034\u0034":0x2784,"\u0061\u0031\u0034\u0035":0x2785,"\u0061\u0031\u0034\u0036":0x2786,"\u0061\u0031\u0034\u0037":0x2787,"\u0061\u0031\u0034\u0038":0x2788,"\u0061\u0031\u0034\u0039":0x2789,"\u0061\u0031\u0035\u0030":0x278a,"\u0061\u0031\u0035\u0031":0x278b,"\u0061\u0031\u0035\u0032":0x278c,"\u0061\u0031\u0035\u0033":0x278d,"\u0061\u0031\u0035\u0034":0x278e,"\u0061\u0031\u0035\u0035":0x278f,"\u0061\u0031\u0035\u0036":0x2790,"\u0061\u0031\u0035\u0037":0x2791,"\u0061\u0031\u0035\u0038":0x2792,"\u0061\u0031\u0035\u0039":0x2793,"\u0061\u0031\u0036\u0030":0x2794,"\u0061\u0031\u0036\u0032":0x27a3,"\u0061\u0031\u0036\u0034":0x2195,"\u0061\u0031\u0036\u0035":0x2799,"\u0061\u0031\u0036\u0036":0x279b,"\u0061\u0031\u0036\u0037":0x279c,"\u0061\u0031\u0036\u0038":0x279d,"\u0061\u0031\u0036\u0039":0x279e,"\u0061\u0031\u0037\u0030":0x279f,"\u0061\u0031\u0037\u0031":0x27a0,"\u0061\u0031\u0037\u0032":0x27a1,"\u0061\u0031\u0037\u0033":0x27a2,"\u0061\u0031\u0037\u0034":0x27a4,"\u0061\u0031\u0037\u0035":0x27a5,"\u0061\u0031\u0037\u0036":0x27a6,"\u0061\u0031\u0037\u0037":0x27a7,"\u0061\u0031\u0037\u0038":0x27a8,"\u0061\u0031\u0037\u0039":0x27a9,"\u0061\u0031\u0038\u0030":0x27ab,"\u0061\u0031\u0038\u0031":0x27ad,"\u0061\u0031\u0038\u0032":0x27af,"\u0061\u0031\u0038\u0033":0x27b2,"\u0061\u0031\u0038\u0034":0x27b3,"\u0061\u0031\u0038\u0035":0x27b5,"\u0061\u0031\u0038\u0036":0x27b8,"\u0061\u0031\u0038\u0037":0x27ba,"\u0061\u0031\u0038\u0038":0x27bb,"\u0061\u0031\u0038\u0039":0x27bc,"\u0061\u0031\u0039\u0030":0x27bd,"\u0061\u0031\u0039\u0031":0x27be,"\u0061\u0031\u0039\u0032":0x279a,"\u0061\u0031\u0039\u0033":0x27aa,"\u0061\u0031\u0039\u0034":0x27b6,"\u0061\u0031\u0039\u0035":0x27b9,"\u0061\u0031\u0039\u0036":0x2798,"\u0061\u0031\u0039\u0037":0x27b4,"\u0061\u0031\u0039\u0038":0x27b7,"\u0061\u0031\u0039\u0039":0x27ac,"\u0061\u0032\u0030\u0030":0x27ae,"\u0061\u0032\u0030\u0031":0x27b1,"\u0061\u0032\u0030\u0032":0x2703,"\u0061\u0032\u0030\u0033":0x2750,"\u0061\u0032\u0030\u0034":0x2752,"\u0061\u0032\u0030\u0035":0xf8dd,"\u0061\u0032\u0030\u0036":0xf8df,"\u0061a\u0062\u0065\u006e\u0067\u0061\u006ci":0x0986,"\u0061\u0061\u0063\u0075\u0074\u0065":0x00e1,"\u0061\u0061\u0064\u0065\u0076\u0061":0x0906,"\u0061\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a86,"\u0061\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a06,"\u0061a\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a3e,"\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3303,"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09be,"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x093e,"\u0061\u0061\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0abe,"\u0061b\u0062\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006f\u006e\u006da\u0072\u006b\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x055f,"a\u0062b\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006fn\u0073\u0069\u0067\u006ede\u0076\u0061":0x0970,"\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0985,"\u0061b\u006f\u0070\u006f\u006d\u006f\u0066o":0x311a,"\u0061\u0062\u0072\u0065\u0076\u0065":0x0103,"a\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065":0x1eaf,"\u0061\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d1,"\u0061\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077":0x1eb7,"a\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065":0x1eb1,"\u0061b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1eb3,"a\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065":0x1eb5,"\u0061\u0063\u0061\u0072\u006f\u006e":0x01ce,"\u0061c\u0063\u006f\u0075\u006e\u0074\u006ff":0x2100,"\u0061c\u0063\u0075\u0072\u0072\u0065\u006et":0x23e6,"\u0061\u0063\u0069\u0064\u0066\u0072\u0065\u0065":0x267e,"\u0061c\u0069\u0072\u0063\u006c\u0065":0x24d0,"a\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00e2,"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ea5,"\u0061\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ead,"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ea7,"a\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ea9,"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1eab,"\u0061\u0063\u0075t\u0065":0x00b4,"\u0061\u0063\u0075\u0074\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0317,"\u0061c\u0075\u0074\u0065\u0063\u006f\u006db":0x0301,"\u0061c\u0075\u0074\u0065\u0064\u0065\u0076a":0x0954,"a\u0063\u0075\u0074\u0065\u006c\u006f\u0077\u006d\u006f\u0064":0x02cf,"\u0061c\u0075\u0074\u0065\u006e\u006f\u0073p":0x0274,"\u0061\u0063\u0075t\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062":0x0341,"\u0061\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077":0x2940,"\u0061c\u0077l\u0065\u0066\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x2939,"\u0061c\u0077o\u0070\u0065\u006e\u0063\u0069r\u0063\u006ce\u0061\u0072\u0072\u006f\u0077":0x21ba,"\u0061c\u0077o\u0076\u0065\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x293a,"\u0061\u0063w\u0075\u006e\u0064e\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x293b,"\u0061d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0201,"\u0061\u0064\u0064\u0061\u006b\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a71,"\u0061\u0064\u0064\u0072\u0065\u0073\u0073\u0073\u0075b\u006a\u0065\u0063\u0074":0x2101,"\u0061\u0064\u0065v\u0061":0x0905,"\u0061d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00e4,"\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04d3,"\u0061d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01df,"\u0061d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ea1,"\u0061\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e":0x01e1,"\u0061\u0064\u006ft\u0073":0x22f0,"\u0061\u0065":0x00e6,"\u0061e\u0061\u0063\u0075\u0074\u0065":0x01fd,"\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3150,"\u0061\u0065\u006d\u0061\u0063\u0072\u006f\u006e":0x01e3,"\u0061f\u0069\u0069\u0032\u0039\u0039":0x200e,"\u0061f\u0069\u0069\u0033\u0030\u0030":0x200f,"\u0061f\u0069\u0069\u0033\u0030\u0031":0x200d,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317":0x0410,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318":0x0411,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319":0x0412,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324":0x0416,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325":0x0417,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327":0x0419,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328":0x041a,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331":0x041d,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333":0x041f,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334":0x0420,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335":0x0421,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336":0x0422,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338":0x0424,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343":0x0429,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344":0x042a,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345":0x042b,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346":0x042c,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348":0x042e,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349":0x042f,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351":0x0402,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352":0x0403,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354":0x0405,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355":0x0406,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357":0x0408,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359":0x040a,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00363":0xf6c4,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00364":0xf6c5,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365":0x0430,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367":0x0432,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368":0x0433,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369":0x0434,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371":0x0451,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373":0x0437,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375":0x0439,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379":0x043d,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384":0x0442,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385":0x0443,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386":0x0444,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387":0x0445,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390":0x0448,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391":0x0449,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396":0x044e,"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397":0x044f,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302":0x0455,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303":0x0456,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305":0x0458,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307":0x045a,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309":0x045c,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310":0x045e,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00346":0x0462,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00347":0x0472,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00348":0x0474,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00392":0xf6c6,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00395":0x0473,"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396":0x0475,"\u0061f\u0069\u0069\u0031\u0030\u0038\u00331":0xf6c7,"\u0061f\u0069\u0069\u0031\u0030\u0038\u00332":0xf6c8,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388":0x060c,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395":0x0663,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398":0x0666,"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399":0x0667,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303":0x061b,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307":0x061f,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310":0x0622,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311":0x0623,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312":0x0624,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318":0x062a,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321":0x062d,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322":0x062e,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323":0x062f,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327":0x0633,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328":0x0634,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329":0x0635,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330":0x0636,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333":0x0639,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341":0x0641,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342":0x0642,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343":0x0643,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344":0x0644,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345":0x0645,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351":0x064b,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352":0x064c,"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356":0x0650,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308":0x0698,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00311":0x0679,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00312":0x0688,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00314":0x06ba,"\u0061f\u0069\u0069\u0035\u0037\u0035\u00334":0x06d5,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336":0x20aa,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345":0x05be,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366":0x05d2,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368":0x05d4,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370":0x05d6,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371":0x05d7,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373":0x05d9,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374":0x05da,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379":0x05df,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384":0x05e4,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386":0x05e6,"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395":0xfb2b,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316":0x05f0,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317":0x05f1,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397":0x05b8,"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399":0x05b0,"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303":0x05c2,"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341":0x05bf,"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342":0x05c0,"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389":0x2113,"\u0061f\u0069\u0069\u0036\u0031\u0035\u00373":0x202c,"\u0061f\u0069\u0069\u0036\u0031\u0035\u00374":0x202d,"\u0061f\u0069\u0069\u0036\u0031\u0035\u00375":0x202e,"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364":0x200c,"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367":0x066d,"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337":0x02bd,"\u0061\u0067\u0072\u0061\u0076\u0065":0x00e0,"\u0061g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a85,"\u0061g\u0075\u0072\u006d\u0075\u006b\u0068i":0x0a05,"\u0061h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3042,"\u0061\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ea3,"\u0061i\u0062\u0065\u006e\u0067\u0061\u006ci":0x0990,"\u0061\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x311e,"\u0061\u0069\u0064\u0065\u0076\u0061":0x0910,"a\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d5,"\u0061\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a90,"\u0061\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a10,"\u0061i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a48,"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeca,"\u0061\u0069n\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfecb,"a\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfec9,"\u0061i\u006em\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfecc,"\u0061\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0203,"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09c8,"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0948,"\u0061\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac8,"\u0061k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a2,"\u0061k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff71,"\u0061k\u006f\u0072\u0065\u0061\u006e":0x314f,"\u0061\u006c\u0065\u0066":0x05d0,"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063":0x0627,"\u0061\u006ce\u0066\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb30,"\u0061l\u0065f\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe8e,"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe84,"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063":0x0625,"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0062\u0065\u006co\u0077f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe88,"\u0061\u006c\u0065f\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe8d,"\u0061l\u0065f\u006c\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4f,"\u0061l\u0065\u0066\u006d\u0061d\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe82,"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063":0x0649,"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062i\u0063":0xfef0,"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeef,"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfef4,"\u0061l\u0065f\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb2e,"\u0061\u006ce\u0066\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077":0xfb2f,"\u0061l\u0065\u0066\u0077\u0061\u0073\u006ca":0x0671,"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061f\u0069\u006e\u0061\u006c":0xfb51,"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064":0xfb50,"a\u006c\u0065\u0066\u0077it\u0068f\u0061\u0074\u0068\u0061\u0074a\u006e\u0066\u0069\u006e\u0061\u006c":0xfd3c,"\u0061l\u0065\u0066\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061t\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfd3d,"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfe83,"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0062\u0065\u006c\u006f\u0077\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfe87,"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u006d\u0061\u0064d\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfe81,"\u0061\u006c\u0065p\u0068":0x2135,"\u0061\u006c\u006c\u0065\u0071\u0075\u0061\u006c":0x224c,"\u0061\u006c\u0070h\u0061":0x03b1,"\u0061\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073":0x03ac,"a\u006c\u0074\u0073\u0065\u006c\u0065\u0063\u0074\u006f\u0072":0xd802,"\u0061m\u0061\u0063\u0072\u006f\u006e":0x0101,"\u0061\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff41,"\u0061m\u0070\u0065\u0072\u0073\u0061\u006ed":0x0026,"\u0061m\u0070e\u0072\u0073\u0061\u006e\u0064m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff06,"\u0061\u006d\u0070\u0065\u0072\u0073\u0061\u006e\u0064s\u006d\u0061\u006c\u006c":0xf726,"\u0061\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33c2,"\u0061\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3122,"a\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3124,"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074":0x27e8,"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x27e9,"\u0061\u006e\u0067\u0064\u006e\u0072":0x299f,"\u0061\u006e\u0067\u006b\u0068\u0061\u006e\u006b\u0068u\u0074\u0068\u0061\u0069":0x0e5a,"\u0061\u006e\u0067l\u0065":0x2220,"\u0061\u006eg\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x3008,"\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006ce\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe3f,"\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074":0x3009,"\u0061n\u0067\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l":0xfe40,"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t":0x2329,"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x232a,"\u0061\u006e\u0067\u006c\u0065\u0073":0x299e,"\u0061n\u0067\u006c\u0065\u0075\u0062\u0061r":0x29a4,"\u0061\u006e\u0067\u0073\u0074\u0072\u006f\u006d":0x212b,"\u0061n\u006e\u0075\u0069\u0074\u0079":0x20e7,"\u0061n\u006f\u0074\u0065\u006c\u0065\u0069a":0x0387,"\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x27f2,"\u0061\u006e\u0075d\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061":0x0952,"\u0061n\u0075s\u0076\u0061\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0982,"\u0061\u006e\u0075s\u0076\u0061\u0072\u0061\u0064\u0065\u0076\u0061":0x0902,"\u0061\u006eu\u0073\u0076\u0061r\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a82,"\u0061o\u0067\u006f\u006e\u0065\u006b":0x0105,"\u0061\u0070\u0061a\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3300,"\u0061\u0070\u0061\u0072\u0065\u006e":0x249c,"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065":0x0245,"\u0061p\u006fs\u0074\u0072\u006f\u0070\u0068e\u0061\u0072m\u0065\u006e\u0069\u0061\u006e":0x055a,"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u006d\u006f\u0064":0x02bc,"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u0072\u0065\u0076":0x0246,"\u0061\u0070\u0070l\u0065":0xf8ff,"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073":0x2250,"\u0061p\u0070\u0072\u006f\u0078\u0065\u0071q":0x2a70,"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c":0x2248,"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065":0x2252,"a\u0070\u0070\u0072\u006f\u0078\u0069\u0064\u0065\u006e\u0074":0x224b,"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c":0x224a,"\u0061\u0072\u0061e\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x318e,"a\u0072\u0061\u0065\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x318d,"\u0061\u0072\u0063":0x2312,"\u0061\u0072\u0063e\u0071":0x2258,"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e":0x21b6,"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e":0x21b7,"\u0061\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u006cf\u0072\u0069\u006e\u0067":0x1e9a,"\u0061\u0072\u0069n\u0067":0x00e5,"\u0061\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065":0x01fb,"\u0061\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077":0x1e01,"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u0064\u006f\u0077\u006e":0x0590,"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u006c\u0065\u0066\u0074":0x058d,"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074":0x058f,"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0075\u0070":0x058e,"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h":0x2194,"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0064\u006f\u0077\u006e":0x21e3,"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u006c\u0065\u0066\u0074":0x21e0,"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068r\u0069\u0067\u0068\u0074":0x21e2,"a\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0075\u0070":0x21e1,"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068":0x21d4,"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076":0x21d5,"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0064\u006f\u0077\u006e":0x21d3,"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074":0x21d0,"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074":0x21d2,"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0075\u0070":0x21d1,"\u0061r\u0072\u006f\u0077\u0064\u006f\u0077n":0x2193,"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074":0x2199,"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006er\u0069\u0067\u0068\u0074":0x2198,"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065":0x21e9,"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u0064\u006f\u0077\u006e\u006d\u006f\u0064":0x02c5,"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u006c\u0065\u0066\u0074\u006d\u006f\u0064":0x02c2,"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064\u0072\u0069\u0067h\u0074\u006d\u006f\u0064":0x02c3,"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064u\u0070\u006d\u006f\u0064":0x02c4,"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074":0x21aa,"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006br\u0069\u0067\u0068\u0074":0x21a9,"\u0061\u0072\u0072o\u0077\u0068\u006f\u0072\u0069\u007a\u0065\u0078":0xf8e7,"\u0061r\u0072\u006f\u0077\u006c\u0065\u0066t":0x2190,"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0062\u006f\u0074\u0068\u0061\u006c\u0066":0x21bd,"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065":0x21cd,"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074":0x21c6,"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065":0x21e6,"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074":0x2192,"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0062\u006ft\u0068\u0061\u006c\u0066":0x21c1,"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065":0x21cf,"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074":0x21c4,"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065":0x21e8,"\u0061\u0072\u0072o\u0077\u0074\u0061\u0062\u006c\u0065\u0066\u0074":0x21e4,"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0062\u0072\u0069\u0067\u0068\u0074":0x21e5,"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c\u006c\u0065\u0066\u0074":0x21a2,"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006cr\u0069\u0067\u0068\u0074":0x21a3,"\u0061r\u0072o\u0077\u0074\u0072\u0069\u0070\u006c\u0065\u006c\u0065\u0066\u0074":0x21da,"\u0061\u0072r\u006f\u0077\u0074r\u0069\u0070\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x21db,"\u0061r\u0072\u006f\u0077\u0075\u0070":0x2191,"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065":0x21a8,"a\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074":0x2196,"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e":0x21c5,"\u0061\u0072\u0072o\u0077\u0075\u0070\u0072\u0069\u0067\u0068\u0074":0x2197,"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065":0x21e7,"a\u0072\u0072\u006f\u0077\u0076\u0065\u0072\u0074\u0065\u0078":0xf8e6,"a\u0073c\u0065\u006e\u0064\u0065\u0072\u0063\u006f\u006dp\u0077\u006f\u0072\u0064ma\u0072\u006b":0xd80a,"a\u0073\u0063\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006d":0x005e,"a\u0073c\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006dm\u006f\u006e\u006f\u0073pa\u0063\u0065":0xff3e,"\u0061\u0073\u0063\u0069\u0069\u0074\u0069\u006c\u0064\u0065":0x007e,"\u0061\u0073\u0063\u0069it\u0069\u006c\u0064\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5e,"\u0061s\u0063\u0072\u0069\u0070\u0074":0x0251,"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064":0x0252,"\u0061\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3041,"\u0061\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a1,"\u0061\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff67,"\u0061\u0073\u0073\u0065\u0072\u0074":0x22a6,"\u0061\u0073\u0074e\u0071":0x2a6e,"a\u0073\u0074\u0065\u0072\u0061\u0063\u0063\u0065\u006e\u0074":0x20f0,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b":0x002a,"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068":0x2217,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff0a,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u0073\u006d\u0061\u006c\u006c":0xfe61,"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006d":0x2042,"\u0061\u0073\u0074\u0072\u006f\u0073\u0075\u006e":0x2609,"\u0061s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6e9,"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c":0x2243,"\u0061\u0074":0x0040,"\u0061\u0074\u0069\u006c\u0064\u0065":0x00e3,"a\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff20,"\u0061t\u0073\u006d\u0061\u006c\u006c":0xfe6b,"\u0061t\u0075\u0072\u006e\u0065\u0064":0x0250,"\u0061u\u0062\u0065\u006e\u0067\u0061\u006ci":0x0994,"\u0061\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3120,"\u0061\u0075\u0064\u0065\u0076\u0061":0x0914,"\u0061\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a94,"\u0061\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a14,"\u0061\u0075\u006c\u0065ng\u0074\u0068\u006d\u0061\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09d7,"\u0061u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a4c,"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09cc,"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x094c,"\u0061\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0acc,"\u0061\u0076\u0061g\u0072\u0061\u0068\u0061\u0064\u0065\u0076\u0061":0x093d,"\u0061\u0077\u0069n\u0074":0x2a11,"a\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0561,"\u0061\u0079i\u006e\u0061\u006ct\u006f\u006e\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb20,"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077":0x05e2,"\u0062":0x0062,"\u0062\u004e\u006f\u0074":0x2aed,"\u0062a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09ac,"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065":0x2036,"\u0062\u0061\u0063\u006b\u0065\u0064":0x024c,"\u0062a\u0063\u006b\u0073\u006c\u0061\u0073h":0x005c,"\u0062a\u0063k\u0073\u006c\u0061\u0073\u0068m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff3c,"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065":0x2037,"\u0062\u0061\u0064\u0065\u0076\u0061":0x092c,"\u0062a\u0067\u006d\u0065\u006d\u0062\u0065r":0x22ff,"\u0062\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aac,"\u0062\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2c,"\u0062\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3070,"\u0062\u0061\u0068\u0074\u0074\u0068\u0061\u0069":0x0e3f,"\u0062\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d0,"\u0062\u0061\u0072":0x007c,"\u0062\u0061\u0072\u0056":0x2aea,"\u0062\u0061\u0072\u0063\u0061\u0070":0x2a43,"\u0062\u0061\u0072\u0063\u0075\u0070":0x2a42,"\u0062a\u0072d\u006f\u0077\u006e\u0068\u0061r\u0070\u006fo\u006e\u006c\u0065\u0066\u0074":0x2961,"\u0062\u0061\u0072\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074":0x295d,"\u0062a\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061":0x21b9,"\u0062a\u0072l\u0065\u0066\u0074\u0068\u0061r\u0070\u006fo\u006e\u0064\u006f\u0077\u006e":0x2956,"\u0062\u0061r\u006c\u0065\u0066t\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070":0x2952,"\u0062\u0061\u0072\u006d\u0069\u0064\u006c\u006f\u006eg\u006e\u006f\u0073\u0070":0x02a9,"\u0062\u0061\u0072m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5c,"b\u0061\u0072\u006f\u0076er\u006eo\u0072\u0074\u0068\u0077\u0065s\u0074\u0061\u0072\u0072\u006f\u0077":0x21b8,"b\u0061r\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u0064\u0069\u0061mo\u006e\u0064":0x2920,"\u0062\u0061\u0072\u0072ig\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e":0x295f,"\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0075\u0070":0x295b,"\u0062\u0061\u0072\u0075\u0070\u0061\u0072\u0072\u006f\u0077":0x2912,"\u0062\u0061r\u0075\u0070\u0068a\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074":0x2958,"\u0062\u0061\u0072\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006er\u0069\u0067\u0068\u0074":0x2954,"\u0062\u0061\u0072\u0076\u0065\u0065":0x22bd,"\u0062b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3105,"\u0062\u0062\u0072\u006b\u0074\u0062\u0072\u006b":0x23b6,"\u0062c\u0069\u0072\u0063\u006c\u0065":0x24d1,"\u0062\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e03,"\u0062d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e05,"\u0062\u0064\u0074\u0072\u0069\u0070\u006c\u0065\u0076\u0064\u0061\u0073\u0068":0x2506,"b\u0065a\u006d\u0065\u0064\u0073\u0069\u0078\u0074\u0065e\u006e\u0074\u0068\u006eot\u0065\u0073":0x266c,"\u0062e\u0063\u0061\u0075\u0073\u0065":0x2235,"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0431,"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c":0x0628,"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe90,"\u0062\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe91,"\u0062\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3079,"b\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe8f,"\u0062e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe92,"b\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfc9f,"b\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc08,"\u0062e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfc6d,"\u0062\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc6e,"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc09,"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xfc9d,"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xe812,"\u0062e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfc9c,"\u0062e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfc9e,"\u0062e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc6a,"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc6f,"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc0a,"\u0062\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d9,"b\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0562,"\u0062e\u006e\u007a\u0065\u006e\u0072":0x23e3,"\u0062\u0065\u0074\u0061":0x03b2,"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b":0x03d0,"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb31,"\u0062\u0065\u0074\u0068":0x2136,"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w":0x05d1,"\u0062\u0065\u0074\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4c,"\u0062e\u0074\u0077\u0065\u0065\u006e":0x226c,"\u0062\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ad,"\u0062h\u0061\u0064\u0065\u0076\u0061":0x092d,"b\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aad,"b\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2d,"\u0062\u0068\u006fo\u006b":0x0253,"\u0062\u0069\u0067\u0062\u006f\u0074":0x27d8,"\u0062i\u0067\u0063\u0075\u0070\u0064\u006ft":0x2a03,"\u0062\u0069\u0067\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065":0x2afc,"\u0062i\u0067\u006f\u0064\u006f\u0074":0x2a00,"\u0062\u0069\u0067\u006f\u0070\u006c\u0075\u0073":0x2a01,"\u0062i\u0067\u006f\u0074\u0069\u006d\u0065s":0x2a02,"\u0062\u0069\u0067s\u006c\u006f\u0070\u0065\u0064\u0076\u0065\u0065":0x2a57,"\u0062\u0069\u0067\u0073\u006c\u006f\u0070\u0065\u0064w\u0065\u0064\u0067\u0065":0x2a58,"\u0062\u0069\u0067\u0073\u0071\u0063\u0061\u0070":0x2a05,"\u0062\u0069\u0067\u0073\u0071\u0063\u0075\u0070":0x2a06,"\u0062\u0069\u0067\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067":0x2aff,"\u0062\u0069\u0067\u0074\u0069\u006d\u0065\u0073":0x2a09,"\u0062\u0069\u0067\u0074\u006f\u0070":0x27d9,"\u0062i\u0067t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074":0x2a1e,"\u0062\u0069\u0067\u0075\u0070\u006c\u0075\u0073":0x2a04,"\u0062\u0069\u0067\u0076\u0065\u0065":0x22c1,"\u0062\u0069\u0067\u0077\u0065\u0064\u0067\u0065":0x22c0,"\u0062\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3073,"\u0062\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d3,"\u0062\u0069\u006c\u0061\u0062\u0069\u0061\u006c\u0063\u006c\u0069\u0063\u006b":0x0298,"\u0062\u0069\u006e\u0064\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a02,"\u0062\u0069\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3331,"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u006f\u0077\u006e\u0061rr\u006f\u0077":0x29ed,"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u0072\u0069\u0067\u0068td\u006f\u0074":0x2688,"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077\u006f\u0064\u006f\u0074\u0073":0x2689,"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064\u0077\u0068\u0069t\u0065":0x25d5,"b\u006c\u0061\u0063\u006bdi\u0061m\u006f\u006e\u0064\u0064\u006fw\u006e\u0061\u0072\u0072\u006f\u0077":0x29ea,"\u0062\u006c\u0061\u0063\u006b\u0068\u006f\u0075\u0072g\u006c\u0061\u0073\u0073":0x29d7,"\u0062\u006c\u0061\u0063kl\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065":0x25d6,"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072":0x25c4,"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce":0x25c0,"\u0062\u006c\u0061\u0063\u006b\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074":0x3010,"\u0062\u006c\u0061ck\u006c\u0065\u006e\u0074\u0069\u0063\u0075\u006c\u0061r\u0062r\u0061c\u006be\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe3b,"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074":0x3011,"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061r\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063a\u006c":0xfe3c,"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065":0x25e3,"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25e2,"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065":0x25ac,"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r":0x25ba,"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065":0x25b6,"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x25aa,"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065":0x263b,"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u0064\u006f\u0077\u006e":0x25be,"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065":0x25e4,"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25e5,"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065":0x25b4,"\u0062\u006c\u0061n\u006b":0x2423,"\u0062\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e07,"b\u006c\u006b\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c":0x2b2c,"b\u006c\u006b\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c":0x2b2e,"\u0062\u006c\u006fc\u006b":0x2588,"\u0062\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff42,"\u0062\u006f\u0062a\u0069\u006d\u0061\u0069\u0074\u0068\u0061\u0069":0x0e1a,"\u0062\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307c,"\u0062\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30dc,"\u0062\u006f\u0074\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065":0x25e1,"\u0062\u006f\u0077\u0074\u0069\u0065":0x22c8,"\u0062\u006f\u0078\u0061\u0073\u0074":0x29c6,"\u0062\u006f\u0078\u0062\u0061\u0072":0x25eb,"\u0062\u006f\u0078\u0062\u006f\u0078":0x29c8,"\u0062o\u0078\u0062\u0073\u006c\u0061\u0073h":0x29c5,"\u0062o\u0078\u0063\u0069\u0072\u0063\u006ce":0x29c7,"\u0062o\u0078\u0064\u0069\u0061\u0067":0x29c4,"\u0062\u006f\u0078\u006f\u006e\u0062\u006f\u0078":0x29c9,"\u0062\u0070\u0061\u0072\u0065\u006e":0x249d,"\u0062\u0071\u0073\u0071\u0075\u0061\u0072\u0065":0x33c3,"\u0062r\u0061\u0063\u0065\u0065\u0078":0xf8f4,"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t":0x007b,"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0062\u0074":0xf8f3,"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u006d\u0069\u0064":0xf8f2,"\u0062r\u0061c\u0065\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff5b,"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c":0xfe5b,"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0074\u0070":0xf8f1,"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe37,"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074":0x007d,"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0074":0xf8fe,"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u006d\u0069\u0064":0xf8fd,"\u0062\u0072\u0061\u0063er\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5d,"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c":0xfe5c,"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0074\u0070":0xf8fc,"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c":0xfe38,"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x005b,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0062\u0074":0xf8f0,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0065\u0078":0xf8ef,"b\u0072a\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074m\u006f\u006e\u006f\u0073pa\u0063\u0065":0xff3b,"\u0062\u0072a\u0063\u006b\u0065t\u006c\u0065\u0066\u0074\u0071\u0075\u0069\u006c\u006c":0x2045,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0074\u0070":0xf8ee,"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x005d,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0062\u0074":0xf8fb,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0065\u0078":0xf8fa,"b\u0072\u0061\u0063\u006bet\u0072i\u0067\u0068\u0074\u006d\u006fn\u006f\u0073\u0070\u0061\u0063\u0065":0xff3d,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074q\u0075\u0069\u006c\u006c":0x2046,"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0074\u0070":0xf8f9,"\u0062\u0072\u0065v\u0065":0x02d8,"\u0062\u0072\u0065\u0076\u0065\u0031":0xf006,"\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x032e,"\u0062\u0072\u0065\u0076\u0065\u0063\u006d\u0062":0x0306,"b\u0072\u0065\u0076\u0065in\u0076e\u0072\u0074\u0065\u0064\u0062e\u006c\u006f\u0077\u0063\u006d\u0062":0x032f,"\u0062\u0072e\u0076\u0065\u0069n\u0076\u0065\u0072\u0074\u0065\u0064\u0063\u006d\u0062":0x0311,"\u0062\u0072\u0065\u0076ei\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0064\u006f\u0075\u0062\u006c\u0065\u0063m\u0062":0x0361,"\u0062\u0072\u0069\u0064\u0067\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x032a,"\u0062\u0072\u0069\u0064ge\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063m\u0062":0x033a,"\u0062\u0072i\u0064\u0067\u0065i\u006e\u0076\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x02ad,"\u0062r\u006f\u006b\u0065\u006e\u0062\u0061r":0x00a6,"\u0062\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x2b41,"\u0062s\u0069m\u0069\u006c\u0061\u0072\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x2b47,"\u0062\u0073\u006f\u006c\u0068\u0073\u0075\u0062":0x27c8,"\u0062s\u0074\u0072\u006f\u006b\u0065":0x0180,"\u0062s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ea,"\u0062\u0074\u0069\u006d\u0065\u0073":0x2a32,"\u0062t\u006f\u0070\u0062\u0061\u0072":0x0183,"\u0062\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3076,"\u0062\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d6,"\u0062\u0075\u006c\u006c\u0065\u0074":0x2022,"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072":0x2219,"\u0062\u0075\u006c\u006c\u0073\u0065\u0079\u0065":0x25ce,"\u0062u\u006d\u0070\u0065\u0071\u0071":0x2aae,"\u0063":0x0063,"\u0063\u0031\u0032\u0038":0x0080,"\u0063\u0031\u0032\u0039":0x0081,"\u0063\u0031\u0034\u0031":0x008d,"\u0063\u0031\u0034\u0032":0x008e,"\u0063\u0031\u0034\u0033":0x008f,"\u0063\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056e,"\u0063a\u0062\u0065\u006e\u0067\u0061\u006ci":0x099a,"\u0063\u0061\u0063\u0075\u0074\u0065":0x0107,"\u0063a\u0064\u0061\u0075\u006e\u0061":0x2106,"\u0063\u0061\u0064\u0065\u0076\u0061":0x091a,"\u0063\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9a,"\u0063\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1a,"\u0063a\u006c\u0073\u0071\u0075\u0061\u0072e":0x3388,"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006ed\u0075\u0062e\u006e\u0067\u0061\u006c\u0069":0x0981,"\u0063\u0061\u006e\u0064\u0072\u0061\u0062\u0069\u006ed\u0075\u0063\u006d\u0062":0x0310,"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006e\u0064\u0075\u0064\u0065\u0076\u0061":0x0901,"\u0063\u0061\u006e\u0064ra\u0062\u0069\u006e\u0064\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a81,"\u0063a\u0070\u0062\u0061\u0072\u0063\u0075p":0x2a49,"\u0063\u0061\u0070\u0064\u006f\u0074":0x2a40,"\u0063\u0061\u0070\u0069ta\u006c\u0063\u006f\u006d\u0070\u0077\u006f\u0072\u0064\u006d\u0061\u0072\u006b":0xd809,"\u0063\u0061\u0070\u006f\u0076\u0065\u0072\u0063\u0075\u0070":0x2a47,"\u0063\u0061\u0070\u0073\u006c\u006f\u0063\u006b":0x21ea,"\u0063\u0061\u0070\u0077\u0065\u0064\u0067\u0065":0x2a44,"\u0063\u0061\u0072\u0065\u006f\u0066":0x2105,"c\u0061\u0072\u0065\u0074\u0069\u006e\u0073\u0065\u0072\u0074":0x2038,"\u0063\u0061\u0072o\u006e":0x02c7,"\u0063\u0061\u0072\u006f\u006e\u0031":0xf00a,"\u0063\u0061\u0072\u006f\u006e\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x032c,"\u0063\u0061\u0072\u006f\u006e\u0063\u006d\u0062":0x030c,"\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e":0x21b5,"\u0063b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3118,"\u0063\u0063\u0061\u0072\u006f\u006e":0x010d,"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x00e7,"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065":0x1e09,"\u0063c\u0069\u0072\u0063\u006c\u0065":0x24d2,"c\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0109,"\u0063\u0063\u0075r\u006c":0x0255,"\u0063c\u0077u\u006e\u0064\u0065\u0072\u0063u\u0072\u0076e\u0061\u0072\u0072\u006f\u0077":0x293f,"\u0063\u0064\u006f\u0074":0x010b,"\u0063\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33c5,"\u0063e\u0064\u0069\u006c\u006c\u0061":0x00b8,"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0031":0xf008,"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0032":0xf00d,"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0063\u006d\u0062":0x0327,"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074":0x2308,"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074":0x2309,"\u0063\u0065\u006e\u0074":0x00a2,"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065":0x2103,"\u0063\u0065\u006et\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0xf6df,"\u0063\u0065\u006e\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe0,"\u0063\u0065\u006et\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf7a2,"\u0063\u0065\u006e\u0074\u0072\u0065\u006c\u0069\u006e\u0065":0x2104,"\u0063\u0065\u006et\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0xf6e0,"c\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0579,"\u0063\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099b,"\u0063h\u0061\u0064\u0065\u0076\u0061":0x091b,"c\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9b,"c\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1b,"\u0063\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3114,"c\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04bd,"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0447,"\u0063\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04bf,"c\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04b7,"\u0063\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04f5,"\u0063\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0573,"c\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04cc,"\u0063h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x04b9,"\u0063\u0068\u0069":0x03c7,"c\u0068i\u0065\u0075\u0063\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x3277,"\u0063\u0068\u0069\u0065uc\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3217,"\u0063\u0068\u0069\u0065uc\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3269,"\u0063\u0068\u0069\u0065\u0075\u0063\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314a,"\u0063h\u0069e\u0075\u0063\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x3209,"\u0063\u0068\u006fc\u0068\u0061\u006e\u0067\u0074\u0068\u0061\u0069":0x0e0a,"c\u0068\u006f\u0063\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e08,"\u0063\u0068\u006fc\u0068\u0069\u006e\u0067\u0074\u0068\u0061\u0069":0x0e09,"c\u0068\u006f\u0063\u0068\u006f\u0065\u0074\u0068\u0061\u0069":0x0e0c,"\u0063\u0068\u006fo\u006b":0x0188,"\u0063i\u0065u\u0063\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3276,"\u0063\u0069\u0065\u0075\u0063\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3216,"\u0063\u0069\u0065\u0075\u0063\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3268,"c\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3148,"\u0063\u0069e\u0075\u0063\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3208,"\u0063\u0069\u0065\u0075\u0063\u0075\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x321c,"\u0063\u0069\u0072\u0045":0x29c3,"\u0063\u0069\u0072\u0062\u006f\u0074":0x27df,"\u0063\u0069\u0072\u0063\u0065\u0071":0x2257,"\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0073\u0074e\u0072\u0069\u0073\u006b":0x229b,"c\u0069\u0072\u0063\u006ceb\u006ft\u0074\u006f\u006d\u0068\u0061l\u0066\u0062\u006c\u0061\u0063\u006b":0x25d2,"\u0063\u0069\u0072c\u006c\u0065\u0063\u006f\u0070\u0079\u0072\u0074":0x20dd,"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0062\u0075\u006c\u006c\u0065\u0074":0x29bf,"c\u0069\u0072\u0063\u006c\u0065\u0064\u0064\u0061\u0073\u0068":0x229d,"\u0063\u0069\u0072c\u006c\u0065\u0064\u0069\u0076\u0069\u0064\u0065":0x2298,"\u0063i\u0072c\u006c\u0065\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x29ec,"\u0063i\u0072c\u006c\u0065\u0064\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x29b7,"\u0063i\u0072c\u006c\u0065\u0064\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074":0x2686,"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077o\u0064\u006f\u0074\u0073":0x2687,"c\u0069\u0072\u0063\u006c\u0065\u0064\u0076\u0065\u0072\u0074":0x29b6,"\u0063i\u0072c\u006c\u0065\u0064\u0077\u0068i\u0074\u0065b\u0075\u006c\u006c\u0065\u0074":0x29be,"c\u0069\u0072\u0063\u006c\u0065\u0065\u0071\u0075\u0061\u006c":0x229c,"\u0063\u0069\u0072\u0063\u006c\u0065\u0068\u0062\u0061\u0072":0x29b5,"\u0063\u0069\u0072c\u006c\u0065\u006c\u006c\u0071\u0075\u0061\u0064":0x25f5,"\u0063\u0069\u0072c\u006c\u0065\u006c\u0072\u0071\u0075\u0061\u0064":0x25f6,"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079":0x2297,"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u006e\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x2b30,"\u0063i\u0072c\u006c\u0065\u006f\u006e\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x21f4,"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074":0x2299,"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073":0x2295,"\u0063\u0069r\u0063\u006c\u0065p\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b":0x3036,"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u006e\u0067":0x229a,"\u0063i\u0072c\u006c\u0065\u0074\u006f\u0070h\u0061\u006cf\u0062\u006c\u0061\u0063\u006b":0x25d3,"\u0063\u0069\u0072c\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064":0x25f4,"\u0063\u0069\u0072c\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064":0x25f7,"\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064b\u006c\u0061\u0063\u006b":0x25d4,"\u0063\u0069\u0072\u0063\u006c\u0065\u0076\u0065\u0072t\u0066\u0069\u006c\u006c":0x25cd,"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b":0x25d0,"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b":0x25d1,"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x02c6,"c\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0031":0xf003,"\u0063i\u0072c\u0075\u006d\u0066\u006c\u0065x\u0062\u0065l\u006f\u0077\u0063\u006d\u0062":0x032d,"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062":0x0302,"\u0063\u0069\u0072\u0066\u006e\u0069\u006e\u0074":0x2a10,"\u0063\u0069\u0072\u006d\u0069\u0064":0x2aef,"\u0063i\u0072\u0073\u0063\u0069\u0072":0x29c2,"\u0063\u006c\u0065a\u0072":0x2327,"\u0063\u006c\u0069\u0063\u006b\u0061\u006c\u0076\u0065\u006f\u006c\u0061\u0072":0x01c2,"c\u006c\u0069\u0063\u006b\u0064\u0065\u006e\u0074\u0061\u006c":0x01c0,"\u0063\u006c\u0069c\u006b\u006c\u0061\u0074\u0065\u0072\u0061\u006c":0x01c1,"\u0063\u006c\u0069\u0063\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078":0x01c3,"\u0063l\u006f\u0063\u006b\u0077\u0069\u0073e":0x27f3,"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0061\u0070":0x2a4d,"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0075\u0070":0x2a4c,"c\u006c\u006f\u0073\u0065dv\u0061r\u0063\u0075\u0070\u0073\u006da\u0073\u0068\u0070\u0072\u006f\u0064":0x2a50,"\u0063l\u006f\u0073\u0075\u0072\u0065":0x2050,"\u0063\u006c\u0075\u0062":0x2663,"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065":0x2667,"\u0063\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a4,"\u0063\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff43,"\u0063m\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a0,"\u0063\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0581,"\u0063\u006f\u006co\u006e":0x003a,"\u0063o\u006c\u006f\u006e\u0065\u0071":0x2254,"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079":0x20a1,"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff1a,"\u0063\u006f\u006c\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xfe55,"\u0063\u006f\u006c\u006fnt\u0072\u0069\u0061\u006e\u0067\u0075\u006c\u0061\u0072\u0068\u0061\u006c\u0066\u006do\u0064":0x02d1,"\u0063o\u006co\u006e\u0074\u0072\u0069\u0061n\u0067\u0075l\u0061\u0072\u006d\u006f\u0064":0x02d0,"\u0063\u006f\u006dm\u0061":0x002c,"\u0063\u006f\u006d\u006d\u0061\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062":0x0313,"\u0063o\u006dm\u0061\u0061\u0062\u006f\u0076e\u0072\u0069g\u0068\u0074\u0063\u006d\u0062":0x0315,"c\u006f\u006d\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0xf6c3,"\u0063\u006f\u006d\u006d\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x055d,"\u0063\u006f\u006d\u006d\u0061\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0xf6e1,"\u0063\u006f\u006d\u006d\u0061\u006d\u0069\u006e\u0075\u0073":0x2a29,"\u0063\u006f\u006d\u006d\u0061\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff0c,"c\u006f\u006d\u006d\u0061re\u0076e\u0072\u0073\u0065\u0064\u0061b\u006f\u0076\u0065\u0063\u006d\u0062":0x0314,"\u0063\u006f\u006d\u006d\u0061\u0073\u006d\u0061\u006c\u006c":0xfe50,"\u0063\u006f\u006dm\u0061\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x0299,"\u0063\u006f\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0xf6e2,"\u0063\u006f\u006d\u006dat\u0075\u0072\u006e\u0065\u0064\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062":0x0312,"\u0063\u006f\u006d\u006d\u0061\u0074\u0075\u0072\u006ee\u0064\u006d\u006f\u0064":0x02bb,"\u0063\u006f\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074":0x2201,"\u0063\u006f\u006e\u0063\u0061\u0076\u0065\u0064\u0069a\u006d\u006f\u006e\u0064":0x27e1,"\u0063\u006f\u006e\u0063av\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u006c\u0065f\u0074":0x27e2,"\u0063\u006f\u006eca\u0076\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u0072\u0069\u0067\u0068\u0074":0x27e3,"\u0063o\u006e\u0067\u0064\u006f\u0074":0x2a6d,"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et":0x2245,"\u0063\u006f\u006e\u0069\u0063\u0074\u0061\u0070\u0065\u0072":0x2332,"\u0063o\u006e\u006a\u0071\u0075\u0061\u006et":0x2a07,"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c":0x222e,"\u0063o\u006e\u0074\u0072\u006f\u006c":0x2303,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0041\u0043\u004b":0x0006,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0042\u0045\u004c":0x0007,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0042S":0x0008,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0043\u0041\u004e":0x0018,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R":0x000d,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031":0x0011,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0032":0x0012,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033":0x0013,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0034":0x0014,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0045\u004c":0x007f,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045":0x0010,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0045M":0x0019,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004e\u0051":0x0005,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004f\u0054":0x0004,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0053\u0043":0x001b,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0042":0x0017,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0058":0x0003,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046F":0x000c,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S":0x001c,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S":0x001d,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0048T":0x0009,"\u0063o\u006e\u0074\u0072\u006f\u006c\u004cF":0x000a,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0041\u004b":0x0015,"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c":0x0000,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S":0x001e,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053I":0x000f,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053O":0x000e,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u004f\u0054":0x0002,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0054\u0058":0x0001,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042":0x001a,"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0059\u004e":0x0016,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S":0x001f,"\u0063o\u006e\u0074\u0072\u006f\u006c\u0056T":0x000b,"\u0063o\u0070\u0072\u006f\u0064\u0075\u0063t":0x2a3f,"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079":0x2210,"\u0063o\u0070\u0079\u0072\u0069\u0067\u0068t":0x00a9,"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074\u0073\u0061\u006e\u0073":0xf8e9,"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074s\u0065\u0072\u0069\u0066":0xf6d9,"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074":0x300c,"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068":0xff62,"\u0063o\u0072\u006e\u0065\u0072b\u0072\u0061\u0063\u006b\u0065t\u006ce\u0066t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l":0xfe41,"\u0063o\u0072n\u0065\u0072\u0062\u0072\u0061c\u006b\u0065t\u0072\u0069\u0067\u0068\u0074":0x300d,"c\u006f\u0072\u006e\u0065\u0072\u0062r\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068t\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068":0xff63,"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074i\u0063\u0061\u006c":0xfe42,"\u0063\u006f\u0072\u0070\u006f\u0072\u0061\u0074\u0069\u006f\u006e\u0073q\u0075\u0061\u0072\u0065":0x337f,"\u0063\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x33c7,"\u0063\u006f\u0076\u0065\u0072\u006b\u0067\u0073\u0071\u0075\u0061\u0072\u0065":0x33c6,"\u0063\u0070\u0061\u0072\u0065\u006e":0x249e,"\u0063\u0072\u0075\u007a\u0065\u0069\u0072\u006f":0x20a2,"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068":0x0227,"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068\u0065\u0064":0x0297,"\u0063\u0073\u0075\u0062":0x2acf,"\u0063\u0073\u0075b\u0065":0x2ad1,"\u0063\u0073\u0075\u0070":0x2ad0,"\u0063\u0073\u0075p\u0065":0x2ad2,"\u0063\u0075\u0062\u0065\u0072\u006f\u006f\u0074":0x221b,"\u0063u\u0070\u0062\u0061\u0072\u0063\u0061p":0x2a48,"\u0063\u0075\u0070\u0064\u006f\u0074":0x228d,"\u0063\u0075\u0070l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x228c,"\u0063\u0075\u0070\u006f\u0076\u0065\u0072\u0063\u0061\u0070":0x2a46,"\u0063\u0075\u0070\u0076\u0065\u0065":0x2a45,"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064":0x22cf,"\u0063u\u0072\u006c\u0079\u006c\u0065\u0066t":0x21ab,"\u0063u\u0072\u006c\u0079\u006f\u0072":0x22ce,"\u0063\u0075\u0072\u006c\u0079\u0072\u0069\u0067\u0068\u0074":0x21ac,"\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079":0x00a4,"\u0063u\u0072v\u0065\u0061\u0072\u0072\u006fw\u006c\u0065f\u0074\u0070\u006c\u0075\u0073":0x293d,"c\u0075r\u0076\u0065\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u006din\u0075\u0073":0x293c,"\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0072\u0072\u006f\u0077":0x2941,"\u0063\u0077\u006f\u0070\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077":0x21bb,"\u0063w\u0072i\u0067\u0068\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077":0x2938,"\u0063\u0077\u0075\u006e\u0064\u0065\u0072\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077":0x293e,"\u0063\u0079\u0072\u0042\u0072\u0065\u0076\u0065":0xf6d1,"\u0063y\u0072\u0046\u006c\u0065\u0078":0xf6d2,"\u0063\u0079\u0072\u0062\u0072\u0065\u0076\u0065":0xf6d4,"\u0063y\u0072\u0066\u006c\u0065\u0078":0xf6d5,"\u0064":0x0064,"\u0064\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0564,"\u0064a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09a6,"\u0064\u0061\u0064\u0065\u0076\u0061":0x0926,"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfebe,"\u0064\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfebf,"d\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfebd,"\u0064a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec0,"\u0064\u0061\u0067\u0065\u0073\u0068":0x05bc,"\u0064\u0061\u0067\u0067\u0065\u0072":0x2020,"\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l":0x2021,"\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa6,"\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a26,"\u0064\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3060,"\u0064\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c0,"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068":0xfb33,"\u0064\u0061\u006c\u0065\u0074\u0068":0x2138,"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077":0x05d3,"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeaa,"d\u0061\u006c\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfea9,"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x064f,"\u0064\u0061\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe78,"\u0064\u0061\u006d\u006d\u0061\u006c\u006f\u0077":0xe821,"d\u0061\u006d\u006d\u0061\u006d\u0065\u0064\u0069\u0061\u006c":0xfe79,"\u0064\u0061\u006dm\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe835,"\u0064\u0061m\u006d\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe72,"d\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u006c\u006f\u0077":0xe824,"\u0064a\u006dm\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe836,"\u0064\u0061\u006ed\u0061":0x0964,"\u0064\u0061\u006e\u0067\u0065\u0072":0x2621,"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05a7,"\u0064\u0061\u0073h\u0056":0x2ae3,"\u0064a\u0073\u0068\u0056\u0064\u0061\u0073h":0x27db,"\u0064a\u0073\u0068\u0063\u006f\u006c\u006fn":0x2239,"\u0064\u0061\u0073\u0068le\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e":0x296b,"d\u0061s\u0068\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e":0x296d,"\u0064a\u0073\u0069\u0061\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062":0x0485,"\u0064b\u006b\u0061\u0072\u006f\u0077":0x290f,"\u0064\u0062\u006c\u0047\u0072\u0061\u0076\u0065":0xf6d3,"\u0064\u0062\u006c\u0061ng\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x300a,"d\u0062\u006c\u0061\u006e\u0067\u006ce\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0076\u0065r\u0074i\u0063\u0061\u006c":0xfe3d,"d\u0062l\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061c\u006b\u0065\u0074\u0072ig\u0068\u0074":0x300b,"\u0064\u0062\u006c\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068\u0074\u0076\u0065\u0072\u0074\u0069c\u0061\u006c":0xfe3e,"\u0064\u0062\u006car\u0063\u0068\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x032b,"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e":0x21ca,"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u0064\u006f\u0077\u006e":0x058a,"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074":0x219e,"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064r\u0069\u0067\u0068\u0074":0x21a0,"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068e\u0061\u0064\u0075\u0070":0x0588,"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075\u0070":0x21c8,"\u0064\u0062\u006c\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074":0x27e6,"\u0064b\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x27e7,"\u0064\u0062\u006c\u0064\u0061\u006e\u0064\u0061":0x0965,"\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065":0xf6d6,"d\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062":0x030f,"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c":0x222c,"\u0064\u0062\u006c\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062":0x0333,"\u0064\u0062\u006c\u006f\u0076\u0065\u0072\u006c\u0069n\u0065\u0063\u006d\u0062":0x033f,"d\u0062\u006c\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064":0x02ba,"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072":0x2016,"\u0064\u0062\u006cve\u0072\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062":0x030e,"\u0064b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3109,"\u0064\u0062\u0073\u0071\u0075\u0061\u0072\u0065":0x33c8,"\u0064\u0063\u0061\u0072\u006f\u006e":0x010f,"\u0064c\u0061\u0072\u006f\u006e\u0031":0xf811,"\u0064\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e11,"\u0064c\u0069\u0072\u0063\u006c\u0065":0x24d3,"\u0064\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e13,"\u0064\u0064\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a1,"\u0064d\u0061\u0064\u0065\u0076\u0061":0x0921,"d\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa1,"d\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a21,"\u0064d\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb89,"\u0064\u0064\u0064\u0064\u006f\u0074":0x20dc,"\u0064d\u0064\u0068\u0061\u0064\u0065\u0076a":0x095c,"\u0064\u0064\u0064o\u0074":0x20db,"d\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a2,"\u0064\u0064\u0068\u0061\u0064\u0065\u0076\u0061":0x0922,"\u0064\u0064\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa2,"\u0064\u0064\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a22,"\u0064\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e0b,"\u0064d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e0d,"\u0064\u0064\u006ft\u0073":0x22f1,"\u0064d\u006f\u0074\u0073\u0065\u0071":0x2a77,"\u0064\u0065\u0063im\u0061\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x066b,"\u0064e\u0066\u0069\u006e\u0065\u0073":0x225c,"\u0064\u0065\u0067\u0072\u0065\u0065":0x00b0,"\u0064\u0065\u0067r\u0065\u0065\u006b\u0065\u006c\u0076\u0069\u006e":0x212a,"\u0064\u0065\u0068\u0069\u0068\u0065\u0062\u0072\u0065\u0077":0x05ad,"\u0064\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3067,"\u0064e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03ef,"\u0064\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c7,"\u0064\u0065\u006c\u0065\u0074\u0065":0x05ba,"\u0064\u0065\u006c\u0065\u0074\u0065\u006c\u0065\u0066\u0074":0x232b,"d\u0065\u006c\u0065\u0074\u0065\u0072\u0069\u0067\u0068\u0074":0x2326,"\u0064\u0065\u006ct\u0061":0x03b4,"d\u0065\u006c\u0074\u0061\u0074\u0075\u0072\u006e\u0065\u0064":0x018d,"d\u0065\u006e\u006f\u006d\u0069\u006ea\u0074\u006f\u0072\u006d\u0069\u006eu\u0073\u006f\u006e\u0065\u006e\u0075\u006de\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061l\u0069":0x09f8,"\u0064\u0065\u007a\u0068":0x02a4,"\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a7,"\u0064h\u0061\u0064\u0065\u0076\u0061":0x0927,"d\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa7,"d\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a27,"\u0064\u0068\u006fo\u006b":0x0257,"\u0064i\u0061\u0065\u0072\u0065\u0073\u0069s":0x0088,"\u0064\u0069\u0061\u006c\u0079\u0074\u0069\u006b\u0061\u0074\u006f\u006eo\u0073\u0063\u006d\u0062":0x0344,"\u0064\u0069\u0061\u006d\u0065\u0074\u0065\u0072":0x2300,"\u0064i\u0061\u006d\u006f\u006e\u0064":0x2666,"\u0064i\u0061m\u006f\u006e\u0064\u0062\u006f\u0074\u0062\u006c\u0061\u0063\u006b":0x2b19,"d\u0069\u0061\u006d\u006f\u006e\u0064\u0063\u0064\u006f\u0074":0x27d0,"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x291d,"\u0064\u0069\u0061\u006don\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072":0x291f,"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b":0x2b16,"d\u0069\u0061\u006d\u006f\u006e\u0064\u006d\u0061\u0074\u0068":0x22c4,"\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0072\u0069\u0067\u0068\u0074b\u006c\u0061\u0063\u006b":0x2b17,"\u0064\u0069a\u006d\u006f\u006ed\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065":0x2662,"\u0064i\u0061m\u006f\u006e\u0064\u0074\u006f\u0070\u0062\u006c\u0061\u0063\u006b":0x2b18,"\u0064\u0069\u0063e\u0069":0x2680,"\u0064\u0069\u0063\u0065\u0069\u0069":0x2681,"\u0064i\u0063\u0065\u0069\u0069\u0069":0x2682,"\u0064\u0069\u0063\u0065\u0069\u0076":0x2683,"\u0064\u0069\u0063e\u0076":0x2684,"\u0064\u0069\u0063\u0065\u0076\u0069":0x2685,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x00a8,"\u0064i\u0065\u0072\u0065\u0073\u0069\u00731":0xf005,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0061\u0063\u0075\u0074\u0065":0xf6d7,"\u0064\u0069e\u0072\u0065\u0073i\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0324,"d\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u006d\u0062":0x0308,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0067\u0072\u0061\u0076\u0065":0xf6d8,"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0074\u006f\u006e\u006f\u0073":0x0385,"\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065":0x224f,"\u0064\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3062,"\u0064\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c2,"\u0064\u0069\u0073i\u006e":0x22f2,"\u0064i\u0073\u006a\u0071\u0075\u0061\u006et":0x2a08,"\u0064i\u0074\u0074\u006f\u006d\u0061\u0072k":0x3003,"\u0064\u0069\u0076\u0069\u0064\u0065":0x00f7,"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079":0x22c7,"\u0064i\u0076\u0069\u0064\u0065\u0073":0x2223,"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068":0x2215,"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0452,"\u0064k\u0073\u0068\u0061\u0064\u0065":0x2593,"\u0064\u006b\u0073\u0068\u0061\u0064\u0065\u0031":0xf823,"\u0064\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e0f,"\u0064\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3397,"\u0064m\u0061\u0063\u0072\u006f\u006e":0x0111,"\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff44,"\u0064n\u0062\u006c\u006f\u0063\u006b":0x2584,"\u0064\u006e\u0065i\u0067\u0068\u0074\u0062\u006c\u006f\u0063\u006b":0x2581,"\u0064\u006e\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b":0x2585,"\u0064\u006e\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b":0x2582,"\u0064n\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x2587,"\u0064n\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x2583,"\u0064\u006e\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b":0x2586,"d\u006f\u0063\u0068\u0061\u0064\u0061\u0074\u0068\u0061\u0069":0x0e0e,"\u0064o\u0064\u0065\u006b\u0074\u0068\u0061i":0x0e14,"\u0064\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3069,"\u0064\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c9,"\u0064\u006f\u006c\u006c\u0061\u0072":0x0024,"\u0064\u006f\u006c\u006c\u0061\u0072\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0xf6e3,"\u0064o\u006cl\u0061\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff04,"\u0064\u006f\u006c\u006c\u0061\u0072\u006f\u006c\u0064s\u0074\u0079\u006c\u0065":0xf724,"d\u006f\u006c\u006c\u0061\u0072\u0073\u006d\u0061\u006c\u006c":0xfe69,"\u0064\u006f\u006c\u006c\u0061\u0072\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0xf6e4,"\u0064\u006f\u006e\u0067":0x20ab,"\u0064\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3326,"\u0064o\u0074\u0061\u0063\u0063\u0065\u006et":0x02d9,"\u0064\u006f\u0074a\u0063\u0063\u0065\u006e\u0074\u0063\u006d\u0062":0x0307,"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062":0x0323,"\u0064\u006f\u0074\u0063\u0069\u0072\u0063\u006c\u0065\u0031":0xf820,"\u0064\u006f\u0074\u0065\u0071\u0075\u0069\u0076":0x2a67,"d\u006f\u0074\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30fb,"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0069":0x0131,"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u006a":0xf6be,"\u0064o\u0074l\u0065\u0073\u0073\u006a\u0073t\u0072\u006fk\u0065\u0068\u006f\u006f\u006b":0x0284,"\u0064o\u0074\u006d\u0061\u0074\u0068":0x22c5,"\u0064\u006f\u0074\u006d\u0069\u006e\u0075\u0073":0x2238,"\u0064o\u0074\u0070\u006c\u0075\u0073":0x2214,"\u0064\u006f\u0074\u0073\u0069\u006d":0x2a6a,"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073":0x223a,"\u0064\u006f\u0074t\u0065\u0064\u0063\u0069\u0072\u0063\u006c\u0065":0x25cc,"\u0064\u006f\u0074t\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1a,"\u0064\u006f\u0074\u0074\u0069\u006d\u0065\u0073":0x2a30,"\u0064\u006f\u0075b\u006c\u0065\u0062\u0061\u0072\u0076\u0065\u0065":0x2a62,"\u0064\u006f\u0075\u0062\u006c\u0065\u0070\u006c\u0075\u0073":0x29fa,"\u0064\u006f\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072":0x2913,"\u0064o\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064":0x2908,"\u0064\u006f\u0077n\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297f,"\u0064o\u0077n\u0068\u0061\u0072\u0070\u006fo\u006e\u006ce\u0066\u0074\u0062\u0061\u0072":0x2959,"\u0064\u006f\u0077\u006eha\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0061\u0072":0x2955,"d\u006f\u0077\u006e\u0068ar\u0070o\u006f\u006e\u0073\u006c\u0065f\u0074\u0072\u0069\u0067\u0068\u0074":0x2965,"d\u006fw\u006e\u0072\u0069\u0067\u0068\u0074\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077":0x2935,"\u0064o\u0077\u006e\u0073\u006c\u006f\u0070e":0x29f9,"\u0064\u006fw\u006e\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x031e,"d\u006f\u0077\u006e\u0074\u0061\u0063\u006b\u006d\u006f\u0064":0x02d5,"d\u006f\u0077\u006e\u0074ri\u0061n\u0067\u006c\u0065\u006c\u0065f\u0074\u0062\u006c\u0061\u0063\u006b":0x29e8,"\u0064\u006f\u0077\u006etr\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u006c\u0061c\u006b":0x29e9,"\u0064\u006f\u0077n\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0073":0x21f5,"\u0064\u006f\u0077nu\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x296f,"\u0064o\u0077n\u007a\u0069\u0067\u007a\u0061\u0067\u0061\u0072\u0072\u006f\u0077":0x21af,"\u0064\u0070\u0061\u0072\u0065\u006e":0x249f,"\u0064\u0072\u0062\u006b\u0061\u0072\u006f\u0077":0x2910,"\u0064\u0073\u006f\u006c":0x29f6,"\u0064\u0073\u0075\u0062":0x2a64,"\u0064s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6eb,"\u0064\u0074\u0061i\u006c":0x0256,"\u0064t\u006f\u0070\u0062\u0061\u0072":0x018c,"\u0064u\u0061\u006c\u006d\u0061\u0070":0x29df,"\u0064\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3065,"\u0064\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c5,"\u0064\u0079\u006fg\u0068":0x0234,"\u0064\u007a":0x01f3,"\u0064\u007a\u0061\u006c\u0074\u006f\u006e\u0065":0x02a3,"\u0064z\u0063\u0061\u0072\u006f\u006e":0x01c6,"\u0064\u007a\u0063\u0075\u0072\u006c":0x02a5,"d\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04e1,"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x045f,"\u0065":0x0065,"\u0065\u0061\u0063\u0075\u0074\u0065":0x00e9,"\u0065\u0061\u0072t\u0068":0x2641,"\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x098f,"\u0065b\u006f\u0070\u006f\u006d\u006f\u0066o":0x311c,"\u0065\u0062\u0072\u0065\u0076\u0065":0x0115,"e\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061":0x090d,"\u0065c\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a8d,"e\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061":0x0945,"\u0065c\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac5,"\u0065\u0063\u0061\u0072\u006f\u006e":0x011b,"\u0065\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065":0x1e1d,"e\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0565,"\u0065c\u0068y\u0069\u0077\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0587,"\u0065c\u0069\u0072\u0063\u006c\u0065":0x24d4,"e\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ea,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ebf,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e19,"\u0065\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ec7,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ec1,"e\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ec3,"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ec5,"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c":0x0454,"\u0065d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0205,"\u0065\u0064\u0065v\u0061":0x090f,"\u0065d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00eb,"\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0117,"\u0065d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1eb9,"\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a0f,"\u0065e\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a47,"\u0065\u0067\u0072\u0061\u0076\u0065":0x00e8,"\u0065\u0067\u0073\u0064\u006f\u0074":0x2a98,"\u0065g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a8f,"\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0567,"\u0065\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x311d,"\u0065h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3048,"\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ebb,"\u0065\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x311f,"\u0065\u0069\u0067h\u0074":0x0038,"\u0065\u0069\u0067h\u0074\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ee,"\u0065i\u0067\u0068\u0074\u0064\u0065\u0076a":0x096e,"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x2471,"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2485,"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x2499,"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aee,"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6e,"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063":0x0668,"\u0065\u0069\u0067\u0068\u0074\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3028,"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064":0x266b,"e\u0069\u0067\u0068\u0074id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e":0x3227,"\u0065\u0069\u0067\u0068\u0074\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2088,"\u0065\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff18,"\u0065\u0069\u0067\u0068\u0074\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf738,"\u0065\u0069\u0067\u0068\u0074\u0070\u0061\u0072\u0065\u006e":0x247b,"e\u0069\u0067\u0068\u0074\u0070\u0065\u0072\u0069\u006f\u0064":0x248f,"\u0065\u0069\u0067h\u0074\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f8,"\u0065\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e":0x2177,"\u0065\u0069\u0067\u0068\u0074\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2078,"\u0065i\u0067\u0068\u0074\u0074\u0068\u0061i":0x0e58,"\u0065\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0207,"\u0065\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0465,"\u0065k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a8,"\u0065k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff74,"\u0065k\u006fn\u006b\u0061\u0072\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a74,"\u0065k\u006f\u0072\u0065\u0061\u006e":0x3154,"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043b,"\u0065l\u0065\u006d\u0065\u006e\u0074":0x2208,"\u0065\u006c\u0065v\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x246a,"e\u006c\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x247e,"\u0065\u006c\u0065v\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2492,"e\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x217a,"\u0065\u006c\u0069\u006e\u0074\u0065\u0072\u0073":0x23e7,"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073":0x2026,"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0x22ee,"\u0065\u006c\u0073\u0064\u006f\u0074":0x2a97,"\u0065m\u0061\u0063\u0072\u006f\u006e":0x0113,"\u0065\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e17,"\u0065\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e15,"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043c,"\u0065\u006d\u0064\u0061\u0073\u0068":0x2014,"\u0065\u006d\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe31,"\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff45,"e\u006dp\u0068\u0061\u0073\u0069\u0073\u006d\u0061\u0072k\u0061\u0072\u006d\u0065ni\u0061\u006e":0x055b,"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074":0x2205,"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072":0x29b3,"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072\u006c":0x29b4,"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0062\u0061\u0072":0x29b1,"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0063\u0069\u0072\u0063":0x29b2,"\u0065m\u0070\u0074\u0079\u0073\u006c\u006ft":0xd801,"\u0065\u006d\u0071\u0075\u0061\u0064":0x2001,"\u0065m\u0073\u0070\u0061\u0063\u0065":0x2003,"\u0065\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3123,"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064\u0069a\u006d\u006f\u006e\u0064":0x20df,"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0073\u0071\u0075\u0061\u0072\u0065":0x20de,"\u0065n\u0063l\u006f\u0073\u0065\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x20e4,"\u0065\u006e\u0064\u0061\u0073\u0068":0x2013,"\u0065\u006e\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe32,"\u0065\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a3,"\u0065\u006e\u0067":0x014b,"e\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3125,"\u0065\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a5,"\u0065\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c8,"\u0065\u006e\u0071\u0075\u0061\u0064":0x2000,"\u0065n\u0073\u0070\u0061\u0063\u0065":0x2002,"\u0065o\u0067\u006f\u006e\u0065\u006b":0x0119,"\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e":0x3153,"\u0065\u006f\u0070e\u006e":0x025b,"e\u006f\u0070\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064":0x029a,"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x025c,"\u0065\u006f\u0070\u0065nr\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u006c\u006f\u0073\u0065\u0064":0x025e,"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065d\u0068\u006f\u006f\u006b":0x025d,"\u0065\u0070\u0061\u0072\u0065\u006e":0x24a0,"\u0065\u0070\u0061\u0072\u0073\u006c":0x29e3,"\u0065p\u0073\u0069\u006c\u006f\u006e":0x03b5,"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031":0x03f5,"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0063\u006c\u006f\u0073\u0065\u0064":0x022a,"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076":0x03f6,"\u0065\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x03ad,"\u0065q\u0063\u006f\u006c\u006f\u006e":0x2255,"\u0065\u0071\u0064e\u0066":0x225d,"\u0065\u0071\u0064o\u0074":0x2a66,"\u0065\u0071\u0065\u0071":0x2a75,"\u0065\u0071\u0065\u0071\u0065\u0071":0x2a76,"\u0065\u0071\u0067t\u0072":0x22dd,"\u0065\u0071\u006c\u0065\u0073\u0073":0x22dc,"\u0065\u0071\u0071\u0067\u0074\u0072":0x2a9a,"\u0065q\u0071\u006c\u0065\u0073\u0073":0x2a99,"\u0065q\u0071\u0070\u006c\u0075\u0073":0x2a71,"\u0065\u0071\u0071\u0073\u0069\u006d":0x2a73,"e\u0071\u0071\u0073\u006c\u0061\u006e\u0074\u0067\u0074\u0072":0x2a9c,"\u0065\u0071\u0071s\u006c\u0061\u006e\u0074\u006c\u0065\u0073\u0073":0x2a9b,"\u0065\u0071\u0075a\u006c":0x003d,"\u0065\u0071\u0075\u0061\u006c\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x2b40,"\u0065\u0071\u0075\u0061\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff1d,"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073":0x22df,"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0067\u0072e\u0061\u0074\u0065\u0072":0x2a96,"e\u0071\u0075\u0061\u006c\u006f\u0072\u006c\u0065\u0073\u0073":0x2a95,"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073":0x22de,"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072":0x2242,"\u0065\u0071\u0075\u0061\u006c\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x22d5,"\u0065q\u0075a\u006c\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2971,"\u0065\u0071\u0075\u0061\u006c\u0073\u006d\u0061\u006c\u006c":0xfe66,"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0062":0x208c,"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x207c,"\u0065q\u0075\u0069\u0076\u0044\u0044":0x2a78,"\u0065q\u0075\u0069\u0076\u0056\u0065\u0072t":0x2a68,"\u0065\u0071\u0075\u0069\u0076\u0056\u0076\u0065\u0072\u0074":0x2a69,"e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0063\u0065":0x2261,"\u0065q\u0075i\u0076\u0061\u0073\u0079\u006d\u0070\u0074\u006f\u0074\u0069\u0063":0x224d,"\u0065\u0071\u0076\u0070\u0061\u0072\u0073\u006c":0x29e5,"\u0065\u0072\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3126,"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0440,"\u0065r\u0065\u0076\u0065\u0072\u0073\u0065d":0x0258,"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x044d,"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0063i\u0072\u0063\u006c\u0065":0x29f3,"\u0065r\u0072b\u0061\u0072\u0062\u006c\u0061c\u006b\u0064i\u0061\u006d\u006f\u006e\u0064":0x29f1,"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0073q\u0075\u0061\u0072\u0065":0x29ef,"\u0065\u0072\u0072b\u0061\u0072\u0063\u0069\u0072\u0063\u006c\u0065":0x29f2,"\u0065\u0072\u0072\u0062\u0061\u0072\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x29f0,"\u0065\u0072\u0072b\u0061\u0072\u0073\u0071\u0075\u0061\u0072\u0065":0x29ee,"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0441,"\u0065\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ab,"\u0065\u0073\u0068":0x0283,"\u0065s\u0068\u0063\u0075\u0072\u006c":0x0286,"\u0065\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061":0x090e,"\u0065\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0946,"\u0065s\u0068r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006c\u006f\u006f\u0070":0x01aa,"\u0065\u0073h\u0073\u0071\u0075a\u0074\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x0285,"\u0065\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3047,"\u0065\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a7,"\u0065\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6a,"\u0065s\u0074\u0069\u006d\u0061\u0074\u0065d":0x212e,"\u0065s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ec,"\u0065\u0074\u0061":0x03b7,"\u0065\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0568,"\u0065\u0074\u0061\u0074\u006f\u006e\u006f\u0073":0x03ae,"\u0065\u0074\u0068":0x00f0,"\u0065\u0074\u0069\u006c\u0064\u0065":0x1ebd,"e\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e1b,"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077":0x0591,"\u0065t\u0075\u0072\u006e\u0065\u0064":0x01dd,"\u0065\u0075\u006b\u006f\u0072\u0065\u0061\u006e":0x3161,"\u0065\u0075\u0072o\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079":0x20a0,"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09c7,"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x0947,"\u0065v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0ac7,"\u0065\u0078\u0063\u006c\u0061\u006d":0x0021,"\u0065\u0078\u0063\u006c\u0061\u006d\u0061\u0072\u006de\u006e\u0069\u0061\u006e":0x055c,"\u0065x\u0063\u006c\u0061\u006d\u0064\u0062l":0x203c,"\u0065\u0078\u0063\u006c\u0061\u006d\u0064\u006f\u0077\u006e":0x00a1,"\u0065x\u0063l\u0061\u006d\u0064\u006f\u0077\u006e\u0073\u006d\u0061\u006c\u006c":0xf7a1,"\u0065x\u0063l\u0061\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff01,"e\u0078\u0063\u006c\u0061\u006d\u0073\u006d\u0061\u006c\u006c":0xf721,"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c":0x2203,"\u0065\u007a\u0068":0x0292,"\u0065\u007a\u0068\u0063\u0061\u0072\u006f\u006e":0x01ef,"\u0065z\u0068\u0063\u0075\u0072\u006c":0x0293,"e\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x01b9,"\u0065z\u0068\u0074\u0061\u0069\u006c":0x01ba,"\u0066":0x0066,"\u0066\u0037\u0030\u0065":0xf70e,"\u0066\u0037\u0030\u0061":0xf70a,"\u0066\u0037\u0030\u0063":0xf70c,"\u0066\u0037\u0030\u0064":0xf70d,"\u0066\u0037\u0030\u0062":0xf70b,"\u0066\u0037\u0030\u0066":0xf70f,"\u0066\u0037\u0031\u0063":0xf71c,"\u0066\u0037\u0031\u0061":0xf71a,"\u0066\u0037\u0031\u0064":0xf71d,"\u0066\u0037\u0030\u0030":0xf700,"\u0066\u0037\u0030\u0031":0xf701,"\u0066\u0037\u0030\u0032":0xf702,"\u0066\u0037\u0030\u0033":0xf703,"\u0066\u0037\u0030\u0034":0xf704,"\u0066\u0037\u0030\u0035":0xf705,"\u0066\u0037\u0030\u0036":0xf706,"\u0066\u0037\u0030\u0037":0xf707,"\u0066\u0037\u0030\u0038":0xf708,"\u0066\u0037\u0030\u0039":0xf709,"\u0066\u0037\u0031\u0030":0xf710,"\u0066\u0037\u0031\u0031":0xf711,"\u0066\u0037\u0031\u0032":0xf712,"\u0066\u0037\u0031\u0033":0xf713,"\u0066\u0037\u0031\u0034":0xf714,"\u0066\u0037\u0031\u0035":0xf715,"\u0066\u0037\u0031\u0036":0xf716,"\u0066\u0037\u0031\u0037":0xf717,"\u0066\u0037\u0031\u0038":0xf718,"\u0066\u0037\u0031\u0039":0xf719,"\u0066\u0061\u0064\u0065\u0076\u0061":0x095e,"\u0066\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5e,"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074":0x2109,"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068":0x06cc,"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfbfd,"\u0066\u0061r\u0073\u0069\u0079e\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfbfc,"\u0066a\u0074h\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c":0xfe77,"\u0066\u0061\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe76,"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077":0xe820,"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063":0x064e,"\u0066\u0061\u0074h\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe832,"\u0066\u0061t\u0068\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe70,"f\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u006c\u006f\u0077":0xe823,"\u0066a\u0074h\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe833,"\u0066b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3108,"\u0066b\u006f\u0077\u0074\u0069\u0065":0x29d3,"\u0066c\u0069\u0072\u0063\u006c\u0065":0x24d5,"\u0066\u0063\u006d\u0070":0x2a3e,"\u0066\u0064\u0069\u0061\u0067\u006f\u0076\u006e\u0065a\u0072\u0072\u006f\u0077":0x292f,"\u0066\u0064\u0069a\u0067\u006f\u0076\u0072\u0064\u0069\u0061\u0067":0x292c,"\u0066\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e1f,"f\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0586,"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfed2,"\u0066\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed3,"f\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfed1,"\u0066e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed4,"\u0066\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc31,"\u0066e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc32,"\u0066e\u0069\u0063\u006f\u0070\u0074\u0069c":0x03e5,"\u0066\u0065\u006d\u0061\u006c\u0065":0x2640,"\u0066\u0066":0xfb00,"\u0066\u0066\u0069":0xfb03,"\u0066\u0066\u006c":0xfb04,"\u0066\u0069":0xfb01,"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x246e,"\u0066\u0069\u0066t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2482,"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2496,"\u0066\u0069\u0067\u0075\u0072\u0065\u0064\u0061\u0073\u0068":0x2012,"f\u0069\u0067\u0075\u0072\u0065\u0073\u0070\u0061\u0063\u0065":0x2007,"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077":0xfb3a,"\u0066i\u006ea\u006c\u006b\u0061\u0066\u0077i\u0074\u0068q\u0061\u006d\u0061\u0074\u0073":0xe803,"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0077\u0069\u0074\u0068s\u0068\u0065\u0076\u0061":0xe802,"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077":0x05dd,"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0x05e3,"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069":0x05e5,"\u0066\u0069\u006e\u0074":0x2a0f,"\u0066\u0069r\u0073\u0074\u0074o\u006e\u0065\u0063\u0068\u0069\u006e\u0065\u0073\u0065":0x02c9,"\u0066i\u0073\u0068\u0065\u0079\u0065":0x25c9,"\u0066\u0069\u0076\u0065":0x0035,"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063":0x0665,"f\u0069\u0076\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09eb,"\u0066\u0069\u0076\u0065\u0064\u0065\u0076\u0061":0x096b,"f\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073":0x215d,"\u0066\u0069\u0076e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aeb,"\u0066\u0069\u0076e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6b,"\u0066\u0069\u0076e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3025,"f\u0069v\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e":0x3224,"\u0066\u0069\u0076e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2085,"\u0066\u0069\u0076\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff15,"\u0066\u0069\u0076e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf735,"\u0066i\u0076\u0065\u0070\u0061\u0072\u0065n":0x2478,"\u0066\u0069\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x248c,"f\u0069\u0076\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f5,"\u0066i\u0076\u0065\u0072\u006f\u006d\u0061n":0x2174,"\u0066i\u0076\u0065\u0073\u0069\u0078\u0074h":0x215a,"\u0066\u0069\u0076e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2075,"\u0066\u0069\u0076\u0065\u0074\u0068\u0061\u0069":0x0e55,"\u0066\u006c":0xfb02,"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t":0x230a,"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074":0x230b,"\u0066\u006c\u006f\u0072\u0069\u006e":0x0192,"\u0066\u006c\u0074n\u0073":0x23e5,"\u0066\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff46,"\u0066\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x3399,"\u0066o\u0066\u0061\u006e\u0074\u0068\u0061i":0x0e1f,"\u0066\u006f\u0066\u0061\u0074\u0068\u0061\u0069":0x0e1d,"\u0066o\u006cl\u006f\u0077\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076":0x2aba,"\u0066\u006fl\u006c\u006f\u0077n\u006f\u0074\u0073\u006c\u006e\u0074\u0065\u0071\u006c":0x2ab6,"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074":0x22e9,"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c":0x2ab0,"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079":0x227d,"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c":0x227f,"f\u006f\u006e\u0067\u006d\u0061\u006e\u0074\u0068\u0061\u0069":0x0e4f,"\u0066\u006f\u0072\u0063\u0065\u0073":0x22a9,"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r":0x22aa,"\u0066\u006f\u0072\u006b":0x22d4,"\u0066\u006f\u0072k\u0073":0x2adc,"\u0066\u006f\u0072\u006b\u0073\u006e\u006f\u0074":0x2add,"\u0066\u006f\u0072k\u0076":0x2ad9,"\u0066\u006f\u0075\u0072":0x0034,"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063":0x0664,"f\u006f\u0075\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ea,"\u0066\u006f\u0075\u0072\u0064\u0065\u0076\u0061":0x096a,"\u0066\u006f\u0075\u0072\u0066\u0069\u0066\u0074\u0068\u0073":0x2158,"\u0066\u006f\u0075r\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aea,"\u0066\u006f\u0075r\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6a,"\u0066\u006f\u0075r\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3024,"f\u006fu\u0072\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e":0x3223,"\u0066\u006f\u0075r\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2084,"\u0066\u006f\u0075\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff14,"f\u006fu\u0072\u006e\u0075\u006d\u0065\u0072\u0061\u0074o\u0072\u0062\u0065\u006ega\u006c\u0069":0x09f7,"\u0066\u006f\u0075r\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf734,"\u0066o\u0075\u0072\u0070\u0061\u0072\u0065n":0x2477,"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0065\u006ds\u0070\u0061\u0063\u0065":0x2005,"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0069\u006f\u0064":0x248b,"f\u006f\u0075\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f4,"\u0066o\u0075\u0072\u0072\u006f\u006d\u0061n":0x2173,"\u0066\u006f\u0075r\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2074,"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x246d,"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2481,"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x2495,"\u0066\u006f\u0075\u0072\u0074\u0068\u0061\u0069":0x0e54,"\u0066\u006f\u0075\u0072\u0074\u0068\u0072\u006f\u006f\u0074":0x221c,"\u0066\u006f\u0075\u0072\u0074\u0068\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065":0x02cb,"\u0066o\u0075\u0072\u0076\u0064\u006f\u0074s":0x2999,"\u0066\u0070\u0061\u0072\u0065\u006e":0x24a1,"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e":0x2044,"\u0066\u0072\u0061n\u0063":0x20a3,"\u0066r\u006f\u006e\u0074\u0065\u0064":0x024b,"\u0066\u0075\u006c\u006c\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e":0x27d7,"\u0067":0x0067,"\u0067a\u0062\u0065\u006e\u0067\u0061\u006ci":0x0997,"\u0067\u0061\u0063\u0075\u0074\u0065":0x01f5,"\u0067\u0061\u0064\u0065\u0076\u0061":0x0917,"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c":0x06af,"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb93,"\u0067\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb94,"g\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb92,"\u0067a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb95,"\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a97,"\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a17,"\u0067\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304c,"\u0067\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ac,"\u0067\u0061\u006dm\u0061":0x03b3,"\u0067a\u006dm\u0061\u006c\u0061\u0074\u0069\u006e\u0073\u006d\u0061\u006c\u006c":0x0263,"\u0067\u0061\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02e0,"\u0067\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03eb,"\u0067b\u006f\u0070\u006f\u006d\u006f\u0066o":0x310d,"\u0067\u0062\u0072\u0065\u0076\u0065":0x011f,"\u0067\u0063\u0061\u0072\u006f\u006e":0x01e7,"\u0067\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0123,"\u0067c\u0069\u0072\u0063\u006c\u0065":0x24d6,"g\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x011d,"\u0067\u0064\u006f\u0074":0x0121,"\u0067\u0065\u0062a\u0072":0x03cf,"\u0067\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3052,"\u0067\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b2,"\u0067\u0065\u006f\u006d\u0065\u0071\u0075\u0069\u0076a\u006c\u0065\u006e\u0074":0x224e,"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c":0x2251,"\u0067e\u0071\u0071\u0073\u006c\u0061\u006et":0x2afa,"\u0067e\u0072e\u0073\u0068\u0061\u0063\u0063e\u006e\u0074h\u0065\u0062\u0072\u0065\u0077":0x059c,"\u0067\u0065\u0072e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0x05f3,"\u0067e\u0072e\u0073\u0068\u006d\u0075\u0071d\u0061\u006dh\u0065\u0062\u0072\u0065\u0077":0x059d,"\u0067\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073":0x00df,"g\u0065\u0072\u0073\u0068ay\u0069m\u0061\u0063\u0063\u0065\u006et\u0068\u0065\u0062\u0072\u0065\u0077":0x059e,"\u0067e\u0072s\u0068\u0061\u0079\u0069\u006d\u0068\u0065\u0062\u0072\u0065\u0077":0x05f4,"\u0067\u0065\u0073c\u0063":0x2aa9,"\u0067\u0065\u0073\u0064\u006f\u0074":0x2a80,"\u0067e\u0073\u0064\u006f\u0074\u006f":0x2a82,"\u0067\u0065\u0073\u0064\u006f\u0074\u006f\u006c":0x2a84,"\u0067\u0065\u0073\u006c\u0065\u0073":0x2a94,"\u0067\u0065\u0074\u0061\u006d\u0061\u0072\u006b":0x3013,"\u0067\u0067\u0067":0x22d9,"\u0067g\u0067\u006e\u0065\u0073\u0074":0x2af8,"\u0067\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0998,"\u0067\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0572,"\u0067h\u0061\u0064\u0065\u0076\u0061":0x0918,"g\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a98,"g\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a18,"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x063a,"\u0067\u0068a\u0069\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfece,"\u0067h\u0061i\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfecf,"\u0067\u0068\u0061\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfecd,"\u0067\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfed0,"g\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x0495,"\u0067\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0493,"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0491,"\u0067\u0068\u0068\u0061\u0064\u0065\u0076\u0061":0x095a,"\u0067\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5a,"\u0067\u0068\u006fo\u006b":0x0260,"\u0067h\u007a\u0073\u0071\u0075\u0061\u0072e":0x3393,"\u0067\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304e,"\u0067\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ae,"g\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0563,"\u0067\u0069\u006de\u006c":0x2137,"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb32,"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0453,"\u0067\u006c\u0045":0x2a92,"\u0067\u006c\u0061":0x2aa5,"g\u006c\u0065\u0069\u0063\u0068\u0073\u0074\u0061\u0072\u006b":0x29e6,"\u0067\u006c\u006a":0x2aa4,"\u0067l\u006f\u0074\u0074\u0061\u006c":0x0249,"g\u006c\u006f\u0074\u0074al\u0069n\u0076\u0065\u0072\u0074\u0065d\u0073\u0074\u0072\u006f\u006b\u0065":0x01be,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0072\u0065\u0076":0x024a,"g\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070":0x0294,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0062\u0061\u0072":0x0231,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0062a\u0072\u0072\u0065\u0076":0x0232,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0069\u006e\u0076":0x0226,"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064":0x0296,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u006d\u006f\u0064":0x02c0,"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x0295,"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006do\u0064":0x02c1,"g\u006c\u006f\u0074\u0074\u0061\u006cs\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073e\u0064\u0073\u0075p\u0065r\u0069\u006f\u0072":0x02e4,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0072e\u0076\u0069\u006e\u0076":0x0225,"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0073t\u0072\u006f\u006b\u0065":0x02a1,"\u0067l\u006f\u0074\u0074\u0061l\u0073\u0074\u006f\u0070\u0073t\u0072o\u006be\u0072\u0065\u0076\u0065\u0072\u0073\u0065d":0x02a2,"\u0067m\u0061\u0063\u0072\u006f\u006e":0x1e21,"\u0067\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff47,"\u0067\u006e\u0073i\u006d":0x22e7,"\u0067\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3054,"\u0067\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b4,"\u0067\u0070\u0061\u0072\u0065\u006e":0x24a2,"\u0067p\u0061\u0073\u0071\u0075\u0061\u0072e":0x33ac,"\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074":0x2207,"\u0067\u0072\u0061v\u0065":0x0060,"\u0067\u0072\u0061\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0316,"\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062":0x0300,"\u0067r\u0061\u0076\u0065\u0064\u0065\u0076a":0x0953,"\u0067\u0072\u0061\u0076\u0065\u006c\u0065\u0066\u0074\u006e\u006f\u0073\u0070":0x02b3,"g\u0072\u0061\u0076\u0065\u006c\u006f\u0077\u006d\u006f\u0064":0x02ce,"\u0067\u0072\u0061\u0076\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff40,"\u0067\u0072\u0061v\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062":0x0340,"\u0067r\u0065\u0061\u0074\u0065\u0072":0x003e,"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071l\u006c\u0065\u0073\u0073":0x2a8c,"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u006f\u0074":0x22d7,"\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c":0x2265,"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073":0x22db,"\u0067\u0072e\u0061\u0074\u0065r\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff1e,"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0064\u0062l\u0065\u0071\u0075\u0061\u006c":0x2a8a,"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x2a88,"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072a\u0070\u0070r\u006f\u0078\u0065\u0071\u006c":0x2a86,"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074":0x2273,"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006c\u0065\u0073\u0073":0x2277,"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c":0x2269,"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c":0x2267,"\u0067\u0072\u0065a\u0074\u0065\u0072\u0073\u006d\u0061\u006c\u006c":0xfe65,"\u0067s\u0063\u0072\u0069\u0070\u0074":0x0261,"\u0067\u0073\u0069m\u0065":0x2a8e,"\u0067\u0073\u0069m\u006c":0x2a90,"\u0067s\u0074\u0072\u006f\u006b\u0065":0x01e5,"\u0067\u0074\u0063\u0063":0x2aa7,"\u0067\u0074\u0063i\u0072":0x2a7a,"\u0067\u0074\u006c\u0070\u0061\u0072":0x29a0,"\u0067t\u0071\u0075\u0065\u0073\u0074":0x2a7c,"\u0067\u0074\u0072\u0061\u0072\u0072":0x2978,"\u0067\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3050,"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074\u006c\u0065\u0066\u0074":0x00ab,"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074r\u0069\u0067\u0068\u0074":0x00bb,"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006c\u006c\u0065\u0066\u0074":0x2039,"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006cr\u0069\u0067\u0068\u0074":0x203a,"\u0067\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b0,"\u0067\u0075\u0072a\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3318,"\u0067\u0079\u0073\u0071\u0075\u0061\u0072\u0065":0x33c9,"\u0068":0x0068,"\u0068\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04a9,"\u0068\u0061\u0061\u006c\u0074\u006f\u006e\u0065\u0061r\u0061\u0062\u0069\u0063":0x06c1,"\u0068a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b9,"\u0068\u0061\u0063e\u006b\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x029f,"\u0068\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b3,"\u0068\u0061\u0064\u0065\u0076\u0061":0x0939,"\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab9,"\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a39,"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfea2,"\u0068\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea3,"\u0068\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306f,"h\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfea1,"\u0068a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea4,"\u0068a\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcaa,"\u0068a\u0069\u0072\u0073\u0070\u0061\u0063e":0x200a,"h\u0061\u0069\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x332a,"\u0068\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cf,"\u0068\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8a,"\u0068\u0061\u006c\u0061\u006e\u0074\u0067\u0075\u0072m\u0075\u006b\u0068\u0069":0x0a4d,"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x0621,"\u0068\u0061\u006d\u007a\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe80,"\u0068\u0061\u006eg\u0075\u006c\u0066\u0069\u006c\u006c\u0065\u0072":0x3164,"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x044a,"\u0068a\u0072p\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074":0x21c3,"\u0068\u0061r\u0070\u006f\u006fn\u0064\u006f\u0077\u006e\u0072\u0069\u0067\u0068\u0074":0x21c2,"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070":0x21bc,"\u0068\u0061r\u0070\u006f\u006fn\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x21cc,"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070":0x21c0,"\u0068\u0061r\u0070\u006f\u006fn\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074":0x21cb,"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u006c\u0065\u0066\u0074":0x21bf,"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070r\u0069\u0067\u0068\u0074":0x21be,"\u0068\u0061\u0072\u0072\u006f\u0077\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23af,"\u0068\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33ca,"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036":0x05b2,"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038":0x05b3,"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077":0x05b1,"\u0068a\u0074\u0061\u0070\u0070\u0072\u006fx":0x2a6f,"\u0068\u0062\u0061\u0072":0x0127,"\u0068b\u006f\u0070\u006f\u006d\u006f\u0066o":0x310f,"h\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2b,"\u0068\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x1e29,"\u0068c\u0069\u0072\u0063\u006c\u0065":0x24d7,"h\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0125,"\u0068\u0063\u0079\u0072\u0069\u006c":0x03f7,"\u0068d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e27,"\u0068\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e23,"\u0068d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e25,"\u0068\u0065\u0061r\u0074":0x2665,"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065":0x2661,"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb34,"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c":0x0647,"h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063":0xfba7,"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeea,"\u0068e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfba5,"h\u0065\u0068\u0068\u0061\u006d\u007aa\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064a\u0072a\u0062\u0069\u0063":0xfba4,"\u0068\u0065\u0068\u0069ni\u0074\u0069\u0061\u006c\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063":0xfba8,"\u0068\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeeb,"\u0068\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3078,"h\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfee9,"h\u0065\u0068\u006d\u0065di\u0061l\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063":0xfba9,"\u0068e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeec,"\u0068e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcd8,"\u0068e\u0069s\u0065\u0069\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x337b,"\u0068\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d8,"\u0068\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8d,"\u0068e\u006bu\u0074\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3336,"\u0068\u0065\u006e\u0067\u0068\u006f\u006f\u006b":0x0267,"\u0068\u0065\u0072m\u0069\u0074\u006d\u0061\u0074\u0072\u0069\u0078":0x22b9,"\u0068\u0065\u0072u\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3339,"\u0068e\u0078\u0061\u0067\u006f\u006e":0x2394,"\u0068\u0065\u0078a\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b":0x2b23,"\u0068\u0068\u006fo\u006b":0x0266,"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072":0x023a,"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02b1,"\u0068i\u0065u\u0068\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x327b,"\u0068\u0069\u0065\u0075\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x321b,"\u0068\u0069\u0065\u0075\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x326d,"h\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314e,"\u0068\u0069e\u0075\u0068\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x320d,"\u0068i\u0067\u0068\u0068\u0061\u006d\u007aa":0x0674,"\u0068\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3072,"\u0068\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d2,"\u0068\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8b,"\u0068i\u0072\u0069\u0071\u0031\u0034":0x05b4,"\u0068k\u006e\u0065\u0061\u0072\u0072\u006fw":0x2924,"\u0068k\u006e\u0077\u0061\u0072\u0072\u006fw":0x2923,"\u0068\u006b\u0073\u0065\u0061\u0072\u006f\u0077":0x2925,"\u0068\u006b\u0073\u0077\u0061\u0072\u006f\u0077":0x2926,"\u0068\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e96,"\u0068\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff48,"\u0068\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0570,"\u0068o\u0068\u0069\u0070\u0074\u0068\u0061i":0x0e2b,"\u0068\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307b,"\u0068\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30db,"\u0068\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8e,"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077":0x05b9,"\u0068\u006f\u006eo\u006b\u0068\u0075\u006b\u0074\u0068\u0061\u0069":0x0e2e,"\u0068o\u006f\u006b\u0063\u006d\u0062":0x0309,"\u0068\u006f\u006fkp\u0061\u006c\u0061\u0074\u0061\u006c\u0069\u007a\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0321,"h\u006f\u006f\u006b\u0072et\u0072o\u0066\u006c\u0065\u0078\u0062e\u006c\u006f\u0077\u0063\u006d\u0062":0x0322,"\u0068\u006f\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065":0x3342,"\u0068\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e9,"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072":0x2015,"\u0068\u006f\u0072\u0069\u007a\u0074\u0061\u0062":0x05a2,"\u0068o\u0072\u006e\u0063\u006d\u0062":0x031b,"\u0068\u006f\u0074\u0073\u0070\u0072\u0069\u006e\u0067\u0073":0x2668,"\u0068o\u0075\u0072\u0067\u006c\u0061\u0073s":0x29d6,"\u0068\u006f\u0075s\u0065":0x2302,"\u0068\u0070\u0061\u0072\u0065\u006e":0x24a3,"\u0068\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065":0x25ad,"\u0068\u0073\u0075\u0070\u0065\u0072":0x0239,"\u0068s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b0,"\u0068t\u0075\u0072\u006e\u0065\u0064":0x0265,"\u0068\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3075,"\u0068\u0075\u0069i\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3333,"\u0068\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d5,"\u0068\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8c,"\u0068\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0x02dd,"\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0031":0xf009,"\u0068u\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0063\u006d\u0062":0x030b,"\u0068\u0076":0x0195,"\u0068\u0079\u0070\u0068\u0065\u006e":0x002d,"\u0068\u0079\u0070h\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074":0x2043,"\u0068y\u0070\u0068\u0065\u006e\u0064\u006ft":0x2027,"\u0068\u0079\u0070\u0068\u0065\u006e\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0xf6e5,"\u0068y\u0070h\u0065\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff0d,"h\u0079\u0070\u0068\u0065\u006e\u0073\u006d\u0061\u006c\u006c":0xfe63,"\u0068\u0079\u0070\u0068\u0065\u006e\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0xf6e6,"\u0068y\u0070\u0068\u0065\u006e\u0074\u0077o":0x2010,"\u0068z\u0069\u0067\u007a\u0061\u0067":0x3030,"\u0069":0x0069,"\u0069\u0061\u0063\u0075\u0074\u0065":0x00ed,"\u0069\u0062\u0061\u0072":0x01f8,"\u0069\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0987,"\u0069b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3127,"\u0069\u0062\u0072\u0065\u0076\u0065":0x012d,"\u0069\u0063\u0061\u0072\u006f\u006e":0x01d0,"\u0069c\u0069\u0072\u0063\u006c\u0065":0x24d8,"i\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00ee,"\u0069d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0209,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0065\u0061r\u0074\u0068\u0063\u0069rc\u006c\u0065":0x328f,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0066\u0069\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x328b,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0061\u006cl\u0069\u0061\u006e\u0063\u0065\u0070\u0061\u0072\u0065\u006e":0x323f,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u0061\u006c\u006c\u0070ar\u0065\u006e":0x323a,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u0065\u006e\u0074\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x32a5,"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006c\u006f\u0073\u0065":0x3006,"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006f\u006d\u006d\u0061":0x3001,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u006f\u006d\u006d\u0061le\u0066\u0074":0xff64,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069c\u0063\u006f\u006e\u0067\u0072\u0061\u0074u\u006c\u0061\u0074\u0069\u006f\u006e\u0070\u0061\u0072\u0065\u006e":0x3237,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u006fr\u0072\u0065\u0063\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x32a3,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0065\u0061\u0072t\u0068\u0070\u0061\u0072\u0065\u006e":0x322f,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u006e\u0074\u0065\u0072\u0070\u0072\u0069\u0073\u0065\u0070a\u0072\u0065\u006e":0x323d,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u0078\u0063\u0065\u006c\u006c\u0065\u006e\u0074\u0063\u0069r\u0063\u006c\u0065":0x329d,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0066\u0065s\u0074\u0069\u0076\u0061\u006c\u0070\u0061\u0072\u0065\u006e":0x3240,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u006e\u0061\u006e\u0063\u0069\u0061\u006c\u0063\u0069r\u0063\u006c\u0065":0x3296,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0066i\u006ea\u006ec\u0069\u0061\u006c\u0070\u0061\u0072\u0065n":0x3236,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u0072\u0065\u0070ar\u0065\u006e":0x322b,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063h\u0061\u0076\u0065\u0070ar\u0065\u006e":0x3232,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0068\u0069\u0067h\u0063\u0069\u0072\u0063\u006c\u0065":0x32a4,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0069\u0074e\u0072\u0061\u0074\u0069\u006f\u006e\u006d\u0061\u0072\u006b":0x3005,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u006c\u0061\u0062\u006f\u0072\u0063\u0069\u0072\u0063l\u0065":0x3298,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0061\u0062o\u0072\u0070\u0061\u0072\u0065\u006e":0x3238,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0065\u0066t\u0063\u0069\u0072\u0063\u006c\u0065":0x32a7,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063l\u006f\u0077\u0063\u0069rc\u006c\u0065":0x32a6,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u006de\u0064i\u0063i\u006e\u0065\u0063\u0069\u0072\u0063\u006ce":0x32a9,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006d\u0065\u0074a\u006c\u0070\u0061\u0072\u0065\u006e":0x322e,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063m\u006f\u006f\u006e\u0070ar\u0065\u006e":0x322a,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063n\u0061\u006d\u0065\u0070ar\u0065\u006e":0x3234,"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070e\u0072\u0069\u006f\u0064":0x3002,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0070\u0072\u0069\u006e\u0074\u0063\u0069\u0072\u0063l\u0065":0x329e,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0072\u0065\u0061c\u0068\u0070\u0061\u0072\u0065\u006e":0x3243,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0072e\u0070r\u0065s\u0065\u006e\u0074\u0070\u0061\u0072\u0065n":0x3239,"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0072\u0065s\u006f\u0075\u0072\u0063\u0065\u0070\u0061\u0072\u0065\u006e":0x323e,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0072\u0069\u0067\u0068\u0074\u0063\u0069\u0072\u0063l\u0065":0x32a8,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0065\u0063\u0072\u0065\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x3299,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063s\u0065\u006c\u0066\u0070ar\u0065\u006e":0x3242,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u006f\u0063\u0069\u0065\u0074\u0079\u0070\u0061\u0072\u0065\u006e":0x3233,"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073\u0070\u0061\u0063\u0065":0x3000,"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0070\u0065\u0063\u0069\u0061\u006c\u0070\u0061\u0072\u0065\u006e":0x3235,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u006fc\u006b\u0070\u0061\u0072\u0065\u006e":0x3231,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u0075d\u0079\u0070\u0061\u0072\u0065\u006e":0x323b,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0073\u0075\u006e\u0070\u0061\u0072\u0065\u006e":0x3230,"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073u\u0070e\u0072v\u0069\u0073\u0065\u0070\u0061\u0072\u0065n":0x323c,"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0077\u0061\u0074e\u0072\u0070\u0061\u0072\u0065\u006e":0x322c,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063w\u006f\u006f\u0064\u0070ar\u0065\u006e":0x322d,"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u007a\u0065\u0072\u006f":0x3007,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u006d\u0065t\u0061\u006c\u0063\u0069rc\u006c\u0065":0x328e,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006d\u006f\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x328a,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006e\u0061\u006d\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x3294,"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068s\u0075\u006ec\u0069\u0072\u0063\u006c\u0065":0x3290,"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0077\u0061t\u0065\u0072\u0063\u0069rc\u006c\u0065":0x328c,"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0077\u006f\u006f\u0064\u0063\u0069\u0072\u0063\u006c\u0065":0x328d,"\u0069\u0064\u0065v\u0061":0x0907,"\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00ef,"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x1e2f,"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e5,"\u0069d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ecb,"\u0069e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d7,"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0435,"\u0069\u0065\u0068\u006f\u006f\u006b":0x03f9,"\u0069\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b":0x03fb,"\u0069e\u0075n\u0067\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3275,"\u0069\u0065\u0075\u006e\u0067\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3215,"\u0069\u0065\u0075\u006e\u0067\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3267,"i\u0065\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e":0x3147,"\u0069\u0065u\u006e\u0067\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3207,"\u0069\u0067\u0072\u0061\u0076\u0065":0x00ec,"\u0069g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a87,"\u0069g\u0075\u0072\u006d\u0075\u006b\u0068i":0x0a07,"\u0069h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3044,"\u0069\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ec9,"\u0069i\u0062\u0065\u006e\u0067\u0061\u006ci":0x0988,"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0438,"\u0069\u0069\u0064\u0065\u0076\u0061":0x0908,"\u0069\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a88,"\u0069\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a08,"\u0069\u0069\u0069\u0069\u006e\u0074":0x2a0c,"\u0069\u0069\u0069n\u0074":0x222d,"\u0069i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a40,"\u0069\u0069\u006e\u0066\u0069\u006e":0x29dc,"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020b,"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09c0,"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0940,"\u0069\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac0,"\u0069\u006a":0x0133,"\u0069k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a4,"\u0069k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff72,"\u0069k\u006f\u0072\u0065\u0061\u006e":0x3163,"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077":0x05ac,"\u0069m\u0061\u0063\u0072\u006f\u006e":0x012b,"\u0069m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e3,"\u0069m\u0061\u0067\u0065\u006f\u0066":0x22b7,"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l":0x2253,"\u0069\u006d\u0061t\u0068":0x1d6a4,"\u0069\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069":0x0a3f,"\u0069\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff49,"\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079":0x221e,"i\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056b,"\u0069\u006e\u0074\u0042\u0061\u0072":0x2a0e,"\u0069\u006e\u0074\u0062\u0061\u0072":0x2a0d,"\u0069\u006e\u0074\u0063\u0061\u0070":0x2a19,"\u0069\u006e\u0074c\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x2231,"\u0069\u006e\u0074\u0063\u0075\u0070":0x2a1a,"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065":0x2216,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c":0x222b,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074":0x2321,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0065\u0078":0xf8f5,"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070":0x2320,"\u0069\u006e\u0074\u0065\u0072\u0063\u0061\u006c":0x22ba,"\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065":0x2af4,"i\u006e\u0074\u0065\u0072\u0072\u006f\u0062\u0061\u006e\u0067":0x203d,"\u0069n\u0074e\u0072\u0072\u006f\u0062\u0061\u006e\u0067\u0064\u006f\u0077\u006e":0x2e18,"\u0069\u006e\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e":0x2229,"\u0069n\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0062\u006c":0x22d2,"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079":0x22c2,"\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074i\u006f\u006e\u0073\u0071":0x2293,"i\u006e\u0074\u0065\u0078\u0074\u0065\u006e\u0064\u0065\u0072":0x23ae,"\u0069\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x3305,"\u0069\u006e\u0074\u006c\u0061\u0072\u0068\u006b":0x2a17,"\u0069n\u0074\u0070\u0072\u006f\u0064":0x2a3c,"\u0069\u006e\u0074\u0070\u0072\u006f\u0064\u0072":0x2a3d,"\u0069\u006e\u0074\u0078":0x2a18,"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t":0x25d8,"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce":0x25d9,"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073":0x223e,"\u0069\u006e\u0076wh\u0069\u0074\u0065\u006c\u006f\u0077\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065":0x25db,"\u0069\u006e\u0076wh\u0069\u0074\u0065\u0075\u0070\u0070\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065":0x25da,"\u0069o\u0067\u006f\u006e\u0065\u006b":0x012f,"\u0069\u006f\u0074\u0061":0x03b9,"\u0069\u006f\u0074a\u0031":0x01f9,"\u0069\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03ca,"\u0069\u006f\u0074\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073t\u006f\u006e\u006f\u0073":0x0390,"\u0069o\u0074\u0061\u006c\u0061\u0074\u0069n":0x0269,"\u0069o\u0074\u0061\u0074\u006f\u006e\u006fs":0x03af,"\u0069\u0070\u0061\u0072\u0065\u006e":0x24a4,"i\u0072\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a72,"\u0069\u0073\u0069n\u0045":0x22f9,"\u0069s\u0069\u006e\u0064\u006f\u0074":0x22f5,"\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072":0x22f7,"\u0069\u0073\u0069n\u0073":0x22f4,"\u0069\u0073\u0069\u006e\u0076\u0062":0x22f8,"\u0069\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3043,"\u0069\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a3,"\u0069\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff68,"\u0069\u0073\u0073\u0068\u0061\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09fa,"\u0069s\u0074\u0072\u006f\u006b\u0065":0x0268,"\u0069s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ed,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x309d,"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30fd,"\u0069\u0074\u0069\u006c\u0064\u0065":0x0129,"i\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e2d,"\u0069\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3129,"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09bf,"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x093f,"\u0069v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0abf,"\u0069\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0477,"\u006a":0x006a,"\u006a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0571,"\u006aa\u0062\u0065\u006e\u0067\u0061\u006ci":0x099c,"\u006a\u0061\u0064\u0065\u0076\u0061":0x091c,"\u006a\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9c,"\u006a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1c,"\u006ab\u006f\u0070\u006f\u006d\u006f\u0066o":0x3110,"\u006a\u0063\u0061\u0072\u006f\u006e":0x01f0,"\u006ac\u0069\u0072\u0063\u006c\u0065":0x24d9,"j\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0135,"\u006a\u0063\u0072o\u0073\u0073\u0065\u0064\u0074\u0061\u0069\u006c":0x029d,"\u006a\u0063\u0072\u006f\u0073\u0073\u0074\u0061\u0069\u006c":0x022d,"\u006a\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0073t\u0072\u006f\u006b\u0065":0x025f,"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063":0x062c,"\u006ae\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe9e,"\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe9f,"\u006a\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe9d,"\u006a\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea0,"\u006a\u0065\u0065\u006dwi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfca8,"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb8b,"j\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb8a,"\u006a\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099d,"\u006ah\u0061\u0064\u0065\u0076\u0061":0x091d,"j\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9d,"j\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1d,"\u006a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057b,"\u006a\u0069\u0073":0x3004,"\u006a\u006d\u0061t\u0068":0x1d6a5,"\u006a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4a,"\u006a\u0070\u0061\u0072\u0065\u006e":0x24a5,"\u006a\u0073\u0075\u0070\u0065\u0072":0x023b,"\u006as\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b2,"\u006b":0x006b,"\u006b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04a1,"\u006ba\u0062\u0065\u006e\u0067\u0061\u006ci":0x0995,"\u006b\u0061\u0063\u0075\u0074\u0065":0x1e31,"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043a,"\u006b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049b,"\u006b\u0061\u0064\u0065\u0076\u0061":0x0915,"\u006b\u0061\u0066":0x05db,"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h":0xfb3b,"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeda,"\u006b\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfedb,"k\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfed9,"\u006ba\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfedc,"\u006b\u0061\u0066\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4d,"\u006b\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a95,"\u006b\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a15,"\u006b\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304b,"\u006b\u0061\u0068\u006f\u006f\u006b":0x0400,"\u006b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04c4,"\u006b\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ab,"\u006b\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff76,"\u006b\u0061\u0070p\u0061":0x03ba,"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b":0x03f0,"\u006b\u0061\u0070\u0079eo\u0075\u006e\u006d\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e":0x3171,"k\u0061\u0070\u0079\u0065ou\u006ep\u0068\u0069\u0065\u0075\u0070h\u006b\u006f\u0072\u0065\u0061\u006e":0x3184,"\u006b\u0061\u0070\u0079eo\u0075\u006e\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3178,"\u006ba\u0070\u0079\u0065\u006f\u0075\u006e\u0073\u0073\u0061\u006e\u0067p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3179,"\u006b\u0061\u0072\u006f\u0072\u0069\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x330d,"\u006ba\u0072\u0074\u0064\u0065\u0073":0x03d7,"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063":0x0640,"\u006ba\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f5,"\u006b\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x3384,"\u006b\u0061\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe7a,"\u006b\u0061\u0073\u0072\u0061\u006c\u006f\u0077":0xe826,"k\u0061\u0073\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c":0xfe7b,"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063":0x064d,"\u006b\u0061s\u0072\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe74,"k\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u006c\u006f\u0077":0xe827,"\u006b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049f,"\u006b\u0061\u0074\u0061h\u0069\u0072\u0061\u0070\u0072\u006f\u006c\u006f\u006e\u0067m\u0061r\u006b\u0068\u0061\u006c\u0066\u0077\u0069d\u0074\u0068":0xff70,"\u006ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x049d,"\u006bb\u006f\u0070\u006f\u006d\u006f\u0066o":0x310e,"\u006b\u0063\u0061\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3389,"\u006b\u0063\u0061\u0072\u006f\u006e":0x01e9,"\u006bc\u0069\u0072\u0063\u006c\u0065":0x24da,"\u006b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0137,"\u006bd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e33,"k\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0584,"\u006b\u0065\u0068e\u0068":0x06a9,"\u006b\u0065\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfb8f,"\u006b\u0065\u0068e\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfb90,"\u006b\u0065\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb8e,"k\u0065\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c":0xfb91,"\u006b\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3051,"\u006b\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b1,"\u006b\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff79,"k\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056f,"\u006b\u0065\u0072\u006e\u0065\u006c\u0063\u006f\u006e\u0074\u0072\u0061c\u0074\u0069\u006f\u006e":0x223b,"\u006be\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f6,"\u006b\u0067\u0072e\u0065\u006e\u006c\u0061\u006e\u0064\u0069\u0063":0x0138,"\u006b\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0996,"\u006bh\u0061\u0064\u0065\u0076\u0061":0x0916,"k\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a96,"k\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a16,"\u006bh\u0061h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea6,"\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfea7,"\u006b\u0068\u0061h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfea5,"\u006b\u0068a\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfea8,"\u006b\u0068\u0061\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcac,"\u006b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e7,"\u006b\u0068\u0068\u0061\u0064\u0065\u0076\u0061":0x0959,"\u006b\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a59,"k\u0068i\u0065\u0075\u006b\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x3278,"\u006b\u0068\u0069\u0065uk\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3218,"\u006b\u0068\u0069\u0065uk\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326a,"\u006b\u0068\u0069\u0065\u0075\u006b\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314b,"\u006bh\u0069e\u0075\u006b\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320a,"k\u0068\u006f\u006b\u0068\u0061\u0069\u0074\u0068\u0061\u0069":0x0e02,"k\u0068\u006f\u006b\u0068\u006f\u006e\u0074\u0068\u0061\u0069":0x0e05,"\u006b\u0068\u006fk\u0068\u0075\u0061\u0074\u0074\u0068\u0061\u0069":0x0e03,"\u006b\u0068\u006fk\u0068\u0077\u0061\u0069\u0074\u0068\u0061\u0069":0x0e04,"\u006b\u0068\u006f\u006d\u0075\u0074\u0074\u0068\u0061\u0069":0x0e5b,"\u006b\u0068\u006fo\u006b":0x0199,"\u006b\u0068\u006f\u0072\u0061\u006b\u0068\u0061\u006eg\u0074\u0068\u0061\u0069":0x0e06,"\u006bh\u007a\u0073\u0071\u0075\u0061\u0072e":0x3391,"\u006b\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304d,"\u006b\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ad,"\u006b\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff77,"\u006b\u0069r\u006f\u0067\u0075r\u0061\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3315,"\u006b\u0069\u0072\u006f\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073q\u0075\u0061\u0072\u0065":0x3316,"\u006b\u0069\u0072\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3314,"\u006b\u0069\u0079\u0065ok\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326e,"\u006bi\u0079e\u006f\u006b\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320e,"\u006bi\u0079e\u006f\u006b\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3260,"\u006b\u0069\u0079e\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e":0x3131,"\u006b\u0069\u0079\u0065\u006f\u006b\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3200,"\u006b\u0069y\u0065\u006f\u006bs\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3133,"\u006b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e35,"\u006b\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3398,"\u006b\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a6,"\u006b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4b,"\u006bm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a2,"\u006b\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3053,"\u006b\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33c0,"\u006bo\u006b\u0061\u0069\u0074\u0068\u0061i":0x0e01,"\u006b\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b3,"\u006b\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7a,"k\u006f\u006f\u0070\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x331e,"\u006b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0481,"k\u006fr\u0065\u0061\u006e\u0073\u0074\u0061\u006e\u0064a\u0072\u0064\u0073\u0079mb\u006f\u006c":0x327f,"\u006b\u006f\u0072\u006f\u006e\u0069\u0073\u0063\u006d\u0062":0x0343,"\u006b\u0070\u0061\u0072\u0065\u006e":0x24a6,"\u006bp\u0061\u0073\u0071\u0075\u0061\u0072e":0x33aa,"k\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x046f,"\u006b\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x33cf,"\u006b\u0074\u0075r\u006e":0x022e,"\u006bt\u0075\u0072\u006e\u0065\u0064":0x029e,"\u006b\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x304f,"\u006b\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30af,"\u006b\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff78,"\u006b\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b8,"\u006b\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33be,"\u006c":0x006c,"\u006c\u0041\u006e\u0067\u006c\u0065":0x27ea,"\u006c\u0042\u0072\u0061\u0063\u0065":0x2983,"\u006c\u0050\u0061\u0072\u0065\u006e":0x2985,"\u006ca\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b2,"\u006c\u0061\u0063\u0075\u0074\u0065":0x013a,"\u006c\u0061\u0064\u0065\u0076\u0061":0x0932,"\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab2,"\u006c\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a32,"\u006ca\u006bk\u0068\u0061\u006e\u0067\u0079\u0061\u006f\u0074\u0068\u0061\u0069":0x0e45,"\u006ca\u006da\u006c\u0065\u0066\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfefc,"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063":0xfef8,"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfef7,"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006co\u0077f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063":0xfefa,"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0062\u0065\u006c\u006fw\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfef9,"l\u0061\u006d\u0061\u006cef\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfefb,"\u006c\u0061\u006d\u0061l\u0065\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063":0xfef6,"\u006c\u0061\u006da\u006c\u0065\u0066\u006da\u0064\u0064\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfef5,"\u006c\u0061\u006d\u0062\u0064\u0061":0x03bb,"\u006c\u0061\u006db\u0064\u0061\u0073\u0074\u0072\u006f\u006b\u0065":0x019b,"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068":0xfb3c,"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077":0x05dc,"\u006c\u0061\u006ded\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068\u0061\u006e\u0064\u0068\u006f\u006c\u0061\u006d":0xe805,"\u006c\u0061\u006d\u0065\u0064\u0077\u0069\u0074\u0068h\u006f\u006c\u0061\u006d":0xe804,"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfede,"\u006c\u0061\u006d\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfcca,"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfedf,"l\u0061\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfedd,"l\u0061m\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfcc9,"l\u0061m\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfccb,"\u006c\u0061\u006dla\u006d\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063":0xfdf2,"\u006ca\u006dm\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee0,"\u006c\u0061\u006dme\u0065\u006d\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfd88,"l\u0061m\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfccc,"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc43,"\u006ca\u006dw\u0069\u0074\u0068\u0068\u0061h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc40,"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xfccd,"\u006c\u0061\u006d\u0077it\u0068\u006a\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc3f,"\u006c\u0061\u006d\u0077it\u0068\u006b\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc41,"\u006c\u0061\u006d\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc42,"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u006d\u0065\u0065\u006dw\u0069\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069t\u0069\u0061\u006c":0xe811,"\u006ca\u006dw\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc44,"\u006ca\u006e\u0067\u006c\u0065\u0064\u006ft":0x2991,"\u006c\u0061\u0070\u006c\u0061\u0063":0x29e0,"l\u0061\u0072\u0067\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x25ef,"\u006c\u0061\u0074":0x2aab,"\u006c\u0061\u0074\u0065":0x2aad,"\u006c\u0062\u0061\u0067":0x27c5,"\u006c\u0062\u0061\u0072":0x019a,"\u006c\u0062\u0062a\u0072":0x2114,"\u006c\u0062\u0065l\u0074":0x026c,"\u006c\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b":0x2997,"\u006cb\u006f\u0070\u006f\u006d\u006f\u0066o":0x310c,"\u006c\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064":0x23a9,"\u006cb\u0072\u0061\u0063\u0065\u006d\u0069d":0x23a8,"\u006c\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064":0x23a7,"\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23a2,"\u006c\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064":0x23a3,"\u006c\u0062\u0072a\u0063\u006b\u006c\u006c\u0074\u0069\u0063\u006b":0x298f,"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072":0x298b,"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064":0x23a1,"\u006c\u0062\u0072a\u0063\u006b\u0075\u006c\u0074\u0069\u0063\u006b":0x298d,"\u006cb\u0072\u0062\u0072\u0061\u006b":0x2772,"\u006c\u0063\u0061\u0072\u006f\u006e":0x013e,"\u006cc\u0061\u0072\u006f\u006e\u0031":0xf813,"\u006cc\u0069\u0072\u0063\u006c\u0065":0x24db,"\u006c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e3d,"\u006c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x013c,"l\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065":0x29fc,"\u006c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x0140,"\u006cd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e37,"\u006cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e39,"\u006c\u0065\u0066\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0062\u006fv\u0065\u0063\u006d\u0062":0x031a,"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078":0x2b4a,"\u006c\u0065\u0066\u0074ar\u0072\u006f\u0077\u0062\u0061\u0063\u006b\u0061\u0070\u0070\u0072\u006f\u0078":0x2b42,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0073\u0069m\u0069\u006c\u0061\u0072":0x2b4b,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0073\u0073":0x2977,"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u006f\u006e\u006f\u0070\u006c\u0075\u0073":0x2b32,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0070\u006c\u0075\u0073":0x2946,"\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006f\u0072t\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2943,"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u0073\u0069\u006d\u0069\u006c\u0061\u0072":0x2973,"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0073\u0075\u0062\u0073\u0065\u0074":0x297a,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069a\u006e\u0067\u006c\u0065":0x21fd,"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0078":0x2b3e,"l\u0065\u0066\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x290c,"\u006ce\u0066t\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077":0x2b3f,"\u006c\u0065\u0066t\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x290e,"l\u0065\u0066\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c":0x291b,"\u006c\u0065\u0066t\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077":0x2b38,"\u006c\u0065\u0066\u0074do\u0077\u006e\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077":0x2936,"\u006c\u0065\u0066t\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297c,"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0061c\u0063\u0065\u006e\u0074":0x20d0,"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0064o\u0077\u006e\u0062\u0061\u0072":0x295e,"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073u\u0070\u0064\u006f\u0077\u006e":0x2962,"\u006c\u0065f\u0074\u0068\u0061r\u0070\u006f\u006f\u006e\u0075\u0070\u0062\u0061\u0072":0x295a,"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075p\u0064\u0061\u0073\u0068":0x296a,"\u006c\u0065\u0066\u0074\u006c\u0065\u0066\u0074\u0061r\u0072\u006f\u0077\u0073":0x21c7,"\u006c\u0065\u0066\u0074\u006d\u006f\u006f\u006e":0x263e,"\u006c\u0065\u0066\u0074\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e":0x27d5,"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065":0x2948,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069\u0061\u006e\u0067l\u0065":0x21ff,"\u006ce\u0066\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e\u0064\u006f\u0077\u006e":0x2950,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006eu\u0070":0x294b,"l\u0065\u0066\u0074\u0072ig\u0068t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e":0x2967,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070":0x2966,"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u0064\u006fw\u006e":0x294a,"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006eup\u0075\u0070":0x294e,"\u006c\u0065\u0066\u0074\u0073\u0071\u0075\u0069\u0067a\u0072\u0072\u006f\u0077":0x21dc,"\u006c\u0065f\u0074\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0318,"\u006c\u0065\u0066\u0074\u0074\u0061\u0069\u006c":0x2919,"\u006ce\u0066t\u0074\u0068\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073":0x2b31,"\u006c\u0065\u0066\u0074\u0077\u0061\u0076\u0065\u0061\u0072\u0072\u006f\u0077":0x219c,"\u006ce\u0071\u0071\u0073\u006c\u0061\u006et":0x2af9,"\u006c\u0065\u0073c\u0063":0x2aa8,"\u006c\u0065\u0073\u0064\u006f\u0074":0x2a7f,"\u006ce\u0073\u0064\u006f\u0074\u006f":0x2a81,"\u006c\u0065\u0073\u0064\u006f\u0074\u006f\u0072":0x2a83,"\u006c\u0065\u0073\u0067\u0065\u0073":0x2a93,"\u006c\u0065\u0073\u0073":0x003c,"\u006c\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u006c\u0067\u0072e\u0061\u0074\u0065\u0072":0x2a8b,"\u006ce\u0073\u0073\u0064\u006f\u0074":0x22d6,"\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l":0x2264,"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072":0x22da,"\u006c\u0065\u0073\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff1c,"\u006ce\u0073s\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c":0x2a89,"\u006c\u0065\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x2a87,"\u006ce\u0073s\u006f\u0072\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u006c":0x2a85,"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074":0x2a7d,"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074":0x2272,"\u006c\u0065\u0073\u0073\u006f\u0072\u0067\u0072\u0065\u0061\u0074\u0065\u0072":0x2276,"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c":0x2268,"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c":0x2266,"\u006ce\u0073\u0073\u0073\u006d\u0061\u006cl":0xfe64,"\u006c\u0065\u007a\u0068":0x026e,"\u006cf\u0062\u006c\u006f\u0063\u006b":0x258c,"\u006c\u0066\u0062\u006f\u0077\u0074\u0069\u0065":0x29d1,"\u006c\u0066\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b":0x258f,"\u006c\u0066\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b":0x258b,"\u006c\u0066\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b":0x258e,"\u006cf\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x2589,"\u006cf\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b":0x258d,"\u006c\u0066\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b":0x258a,"\u006cf\u0074\u0069\u006d\u0065\u0073":0x29d4,"\u006c\u0067\u0045":0x2a91,"l\u0067\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065":0x2b24,"l\u0067\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1b,"l\u0067\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1c,"\u006c\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078":0x026d,"\u006c\u0069\u006e\u0065\u0066\u0065\u0065\u0064":0x21b4,"\u006c\u0069\u006e\u0065\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072":0x2028,"\u006c\u0069\u006ee\u0076\u0065\u0072\u0074\u006e\u006f\u0073\u0070":0x0280,"\u006ci\u006ee\u0076\u0065\u0072\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x029c,"\u006c\u0069\u0072\u0061":0x20a4,"\u006c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056c,"\u006c\u006a":0x01c9,"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0459,"\u006c\u006c":0xf6c0,"\u006cl\u0061\u0064\u0065\u0076\u0061":0x0933,"l\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab3,"\u006cl\u0061\u006e\u0067\u006c\u0065":0x2989,"\u006c\u006c\u0061r\u0063":0x25df,"\u006c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e3b,"\u006c\u006c\u006c":0x22d8,"\u006c\u006c\u006c\u0061\u0064\u0065\u0076\u0061":0x0934,"\u006cl\u006c\u006e\u0065\u0073\u0074":0x2af7,"\u006c\u006c\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073":0x2987,"\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25fa,"\u006c\u006cv\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e1,"\u006c\u006c\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x0961,"\u006cl\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci":0x09e3,"\u006c\u006c\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061":0x0963,"\u006c\u006d\u0069d\u0064\u006c\u0065\u0074\u0069\u006c\u0064\u0065":0x026b,"\u006c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4c,"\u006c\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065":0x23b0,"\u006c\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33d0,"\u006c\u006e\u0073i\u006d":0x22e6,"l\u006f\u0063\u0068\u0075\u006c\u0061\u0074\u0068\u0061\u0069":0x0e2c,"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064":0x2227,"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074":0x00ac,"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr":0x2228,"\u006co\u0067\u006f\u006e\u0065\u006b":0xf830,"\u006c\u006f\u006c\u0069\u006e\u0067\u0074\u0068\u0061\u0069":0x0e25,"\u006co\u006e\u0067\u0064\u0061\u0073\u0068v":0x27de,"\u006c\u006f\u006eg\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e":0x27cc,"\u006c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x27f5,"\u006co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x27f7,"\u006co\u006eg\u006c\u0065\u0066\u0074\u0073q\u0075\u0069g\u0061\u0072\u0072\u006f\u0077":0x2b33,"\u006c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x27fb,"\u006c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f":0x27fc,"\u006c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077":0x27f6,"\u006c\u006f\u006e\u0067ri\u0067\u0068\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077":0x27ff,"\u006c\u006f\u006eg\u0073":0x017f,"\u006c\u006f\u006e\u0067\u0073\u0074":0xfb05,"\u006co\u0077\u0065\u0072\u0065\u0064":0x024e,"\u006c\u006f\u0077\u0069\u006e\u0074":0x2a1c,"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u0065\u006e\u0074\u0065r\u006c\u0069\u006e\u0065":0xfe4e,"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062":0x0332,"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0064\u0061\u0073\u0068\u0065\u0064":0xfe4d,"\u006co\u007a\u0065\u006e\u0067\u0065":0x25ca,"\u006c\u006f\u007ae\u006e\u0067\u0065\u006d\u0069\u006e\u0075\u0073":0x27e0,"\u006c\u0070\u0061\u0072\u0065\u006e":0x24a7,"\u006c\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x239c,"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064":0x239d,"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073":0x2993,"\u006c\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064":0x239b,"\u006c\u0072\u0061r\u0063":0x25de,"\u006c\u0072\u0065":0x202a,"\u006c\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25ff,"\u006c\u0072\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0065\u0071":0x29e1,"\u006c\u0073\u0069m\u0065":0x2a8d,"\u006c\u0073\u0069m\u0067":0x2a8f,"\u006c\u0073\u006c\u0061\u0073\u0068":0x0142,"\u006cs\u0071\u0068\u006f\u006f\u006b":0x2acd,"\u006c\u0073\u0075\u0070\u0065\u0072":0x026a,"\u006cs\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ee,"\u006c\u0074\u0063\u0063":0x2aa6,"\u006c\u0074\u0063i\u0072":0x2a79,"\u006c\u0074\u006c\u0061\u0072\u0072":0x2976,"\u006ct\u0071\u0075\u0065\u0073\u0074":0x2a7b,"\u006c\u0074\u0072\u0069\u0076\u0062":0x29cf,"\u006c\u0074\u0073\u0068\u0061\u0064\u0065\u0031":0xf821,"\u006c\u0075\u0074\u0068\u0061\u0069":0x0e26,"\u006cv\u0062\u006f\u0078\u006c\u0069\u006ee":0x23b8,"\u006cv\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x098c,"\u006c\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x090c,"\u006cv\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e2,"l\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061":0x0962,"\u006c\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29d8,"\u006c\u0078\u0073\u0071\u0075\u0061\u0072\u0065":0x33d3,"\u006d":0x006d,"\u006da\u0062\u0065\u006e\u0067\u0061\u006ci":0x09ae,"\u006d\u0061\u0063\u0072\u006f\u006e":0x00af,"\u006d\u0061\u0063\u0072\u006f\u006e\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x0331,"\u006da\u0063\u0072\u006f\u006e\u0063\u006db":0x0304,"\u006d\u0061\u0063r\u006f\u006e\u006c\u006f\u0077\u006d\u006f\u0064":0x02cd,"\u006da\u0063r\u006f\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe3,"\u006d\u0061\u0063\u0075\u0074\u0065":0x1e3f,"\u006d\u0061\u0064\u0065\u0076\u0061":0x092e,"\u006d\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aae,"\u006d\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2e,"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077":0x05a4,"\u006d\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307e,"\u006d\u0061\u0069\u0063ha\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069":0xf895,"\u006d\u0061\u0069ch\u0061\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069":0xf894,"\u006da\u0069c\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0074\u0068\u0061\u0069":0x0e4b,"\u006da\u0069\u0063\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf893,"\u006d\u0061i\u0065\u006b\u006co\u0077\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf88c,"\u006d\u0061\u0069\u0065\u006b\u006c\u006f\u0077\u0072\u0069\u0067\u0068t\u0074\u0068\u0061\u0069":0xf88b,"\u006da\u0069\u0065\u006b\u0074\u0068\u0061i":0x0e48,"\u006da\u0069e\u006b\u0075\u0070\u0070\u0065r\u006c\u0065f\u0074\u0074\u0068\u0061\u0069":0xf88a,"\u006da\u0069h\u0061\u006e\u0061\u006b\u0061t\u006c\u0065f\u0074\u0074\u0068\u0061\u0069":0xf884,"\u006d\u0061\u0069\u0068\u0061\u006e\u0061\u006b\u0061t\u0074\u0068\u0061\u0069":0x0e31,"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf889,"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u0074\u0068\u0061\u0069":0x0e47,"\u006d\u0061\u0069\u0074\u0068\u006f\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf88f,"\u006da\u0069t\u0068\u006f\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069":0xf88e,"\u006d\u0061\u0069\u0074\u0068\u006f\u0074\u0068\u0061\u0069":0x0e49,"\u006d\u0061\u0069\u0074ho\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf88d,"\u006d\u0061\u0069\u0074\u0072\u0069\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf892,"\u006da\u0069t\u0072\u0069\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069":0xf891,"\u006d\u0061\u0069\u0074\u0072\u0069\u0074\u0068\u0061\u0069":0x0e4a,"\u006d\u0061\u0069\u0074ri\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf890,"\u006d\u0061\u0069y\u0061\u006d\u006f\u006b\u0074\u0068\u0061\u0069":0x0e46,"\u006d\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30de,"\u006d\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff8f,"\u006d\u0061\u006e\u0073\u0079\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065":0x3347,"\u006d\u0061\u0070\u0073\u0064\u006f\u0077\u006e":0x21a7,"\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x21a4,"\u006d\u0061\u0070\u0073\u0074\u006f":0x21a6,"\u006d\u0061\u0070\u0073\u0075\u0070":0x21a5,"\u006d\u0061\u0072\u0073":0x2642,"\u006da\u0073o\u0072\u0061\u0063\u0069\u0072c\u006c\u0065h\u0065\u0062\u0072\u0065\u0077":0x05af,"\u006d\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x3383,"\u006d\u0062\u0066\u0041":0x1d400,"\u006d\u0062\u0066\u0041\u006c\u0070\u0068\u0061":0x1d6a8,"\u006d\u0062\u0066\u0042":0x1d401,"\u006db\u0066\u0042\u0065\u0074\u0061":0x1d6a9,"\u006d\u0062\u0066\u0043":0x1d402,"\u006d\u0062\u0066\u0043\u0068\u0069":0x1d6be,"\u006d\u0062\u0066\u0044":0x1d403,"\u006d\u0062\u0066\u0044\u0065\u006c\u0074\u0061":0x1d6ab,"\u006d\u0062\u0066\u0044\u0069\u0067\u0061\u006d\u006d\u0061":0x1d7ca,"\u006d\u0062\u0066\u0045":0x1d404,"\u006d\u0062\u0066\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6ac,"\u006d\u0062\u0066\u0045\u0074\u0061":0x1d6ae,"\u006d\u0062\u0066\u0046":0x1d405,"\u006d\u0062\u0066\u0047":0x1d406,"\u006d\u0062\u0066\u0047\u0061\u006d\u006d\u0061":0x1d6aa,"\u006d\u0062\u0066\u0048":0x1d407,"\u006d\u0062\u0066\u0049":0x1d408,"\u006db\u0066\u0049\u006f\u0074\u0061":0x1d6b0,"\u006d\u0062\u0066\u004a":0x1d409,"\u006d\u0062\u0066\u004b":0x1d40a,"\u006d\u0062\u0066\u004b\u0061\u0070\u0070\u0061":0x1d6b1,"\u006d\u0062\u0066\u004c":0x1d40b,"\u006db\u0066\u004c\u0061\u006d\u0062\u0064a":0x1d6b2,"\u006d\u0062\u0066\u004d":0x1d40c,"\u006d\u0062\u0066M\u0075":0x1d6b3,"\u006d\u0062\u0066\u004e":0x1d40d,"\u006d\u0062\u0066N\u0075":0x1d6b4,"\u006d\u0062\u0066\u004f":0x1d40e,"\u006d\u0062\u0066\u004f\u006d\u0065\u0067\u0061":0x1d6c0,"\u006d\u0062\u0066\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d6b6,"\u006d\u0062\u0066\u0050":0x1d40f,"\u006d\u0062\u0066\u0050\u0068\u0069":0x1d6bd,"\u006d\u0062\u0066P\u0069":0x1d6b7,"\u006d\u0062\u0066\u0050\u0073\u0069":0x1d6bf,"\u006d\u0062\u0066\u0051":0x1d410,"\u006d\u0062\u0066\u0052":0x1d411,"\u006d\u0062\u0066\u0052\u0068\u006f":0x1d6b8,"\u006d\u0062\u0066\u0053":0x1d412,"\u006d\u0062\u0066\u0053\u0069\u0067\u006d\u0061":0x1d6ba,"\u006d\u0062\u0066\u0054":0x1d413,"\u006d\u0062\u0066\u0054\u0061\u0075":0x1d6bb,"\u006d\u0062\u0066\u0054\u0068\u0065\u0074\u0061":0x1d6af,"\u006d\u0062\u0066\u0055":0x1d414,"\u006d\u0062\u0066\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6bc,"\u006d\u0062\u0066\u0056":0x1d415,"\u006d\u0062\u0066\u0057":0x1d416,"\u006d\u0062\u0066\u0058":0x1d417,"\u006d\u0062\u0066X\u0069":0x1d6b5,"\u006d\u0062\u0066\u0059":0x1d418,"\u006d\u0062\u0066\u005a":0x1d419,"\u006db\u0066\u005a\u0065\u0074\u0061":0x1d6ad,"\u006d\u0062\u0066\u0061":0x1d41a,"\u006d\u0062\u0066\u0061\u006c\u0070\u0068\u0061":0x1d6c2,"\u006d\u0062\u0066\u0062":0x1d41b,"\u006db\u0066\u0062\u0065\u0074\u0061":0x1d6c3,"\u006d\u0062\u0066\u0063":0x1d41c,"\u006d\u0062\u0066\u0063\u0068\u0069":0x1d6d8,"\u006d\u0062\u0066\u0064":0x1d41d,"\u006d\u0062\u0066\u0064\u0065\u006c\u0074\u0061":0x1d6c5,"\u006d\u0062\u0066\u0065":0x1d41e,"\u006d\u0062\u0066\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6c6,"\u006d\u0062\u0066\u0065\u0074\u0061":0x1d6c8,"\u006d\u0062\u0066\u0066":0x1d41f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0041":0x1d56c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0042":0x1d56d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0043":0x1d56e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0044":0x1d56f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0045":0x1d570,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0046":0x1d571,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0047":0x1d572,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0048":0x1d573,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0049":0x1d574,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004a":0x1d575,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004b":0x1d576,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004c":0x1d577,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004d":0x1d578,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004e":0x1d579,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004f":0x1d57a,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0050":0x1d57b,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0051":0x1d57c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0052":0x1d57d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0053":0x1d57e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0054":0x1d57f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0055":0x1d580,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0056":0x1d581,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0057":0x1d582,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0058":0x1d583,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0059":0x1d584,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u005a":0x1d585,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0061":0x1d586,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0062":0x1d587,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0063":0x1d588,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0064":0x1d589,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0065":0x1d58a,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0066":0x1d58b,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0067":0x1d58c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0068":0x1d58d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0069":0x1d58e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006a":0x1d58f,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006b":0x1d590,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006c":0x1d591,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006d":0x1d592,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006e":0x1d593,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006f":0x1d594,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0070":0x1d595,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0071":0x1d596,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0072":0x1d597,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0073":0x1d598,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0074":0x1d599,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0075":0x1d59a,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0076":0x1d59b,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0077":0x1d59c,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0078":0x1d59d,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0079":0x1d59e,"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u007a":0x1d59f,"\u006d\u0062\u0066\u0067":0x1d420,"\u006d\u0062\u0066\u0067\u0061\u006d\u006d\u0061":0x1d6c4,"\u006d\u0062\u0066\u0068":0x1d421,"\u006d\u0062\u0066\u0069":0x1d422,"\u006db\u0066\u0069\u006f\u0074\u0061":0x1d6ca,"\u006d\u0062\u0066\u0069\u0074\u0041":0x1d468,"\u006d\u0062\u0066\u0069\u0074\u0041\u006c\u0070\u0068\u0061":0x1d71c,"\u006d\u0062\u0066\u0069\u0074\u0042":0x1d469,"\u006db\u0066\u0069\u0074\u0042\u0065\u0074a":0x1d71d,"\u006d\u0062\u0066\u0069\u0074\u0043":0x1d46a,"\u006d\u0062\u0066\u0069\u0074\u0043\u0068\u0069":0x1d732,"\u006d\u0062\u0066\u0069\u0074\u0044":0x1d46b,"\u006d\u0062\u0066\u0069\u0074\u0044\u0065\u006c\u0074\u0061":0x1d71f,"\u006d\u0062\u0066\u0069\u0074\u0045":0x1d46c,"\u006d\u0062\u0066i\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d720,"\u006d\u0062\u0066\u0069\u0074\u0045\u0074\u0061":0x1d722,"\u006d\u0062\u0066\u0069\u0074\u0046":0x1d46d,"\u006d\u0062\u0066\u0069\u0074\u0047":0x1d46e,"\u006d\u0062\u0066\u0069\u0074\u0047\u0061\u006d\u006d\u0061":0x1d71e,"\u006d\u0062\u0066\u0069\u0074\u0048":0x1d46f,"\u006d\u0062\u0066\u0069\u0074\u0049":0x1d470,"\u006db\u0066\u0069\u0074\u0049\u006f\u0074a":0x1d724,"\u006d\u0062\u0066\u0069\u0074\u004a":0x1d471,"\u006d\u0062\u0066\u0069\u0074\u004b":0x1d472,"\u006d\u0062\u0066\u0069\u0074\u004b\u0061\u0070\u0070\u0061":0x1d725,"\u006d\u0062\u0066\u0069\u0074\u004c":0x1d473,"m\u0062\u0066\u0069\u0074\u004c\u0061\u006d\u0062\u0064\u0061":0x1d726,"\u006d\u0062\u0066\u0069\u0074\u004d":0x1d474,"\u006db\u0066\u0069\u0074\u004d\u0075":0x1d727,"\u006d\u0062\u0066\u0069\u0074\u004e":0x1d475,"\u006db\u0066\u0069\u0074\u004e\u0075":0x1d728,"\u006d\u0062\u0066\u0069\u0074\u004f":0x1d476,"\u006d\u0062\u0066\u0069\u0074\u004f\u006d\u0065\u0067\u0061":0x1d734,"\u006d\u0062\u0066i\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d72a,"\u006d\u0062\u0066\u0069\u0074\u0050":0x1d477,"\u006d\u0062\u0066\u0069\u0074\u0050\u0068\u0069":0x1d731,"\u006db\u0066\u0069\u0074\u0050\u0069":0x1d72b,"\u006d\u0062\u0066\u0069\u0074\u0050\u0073\u0069":0x1d733,"\u006d\u0062\u0066\u0069\u0074\u0051":0x1d478,"\u006d\u0062\u0066\u0069\u0074\u0052":0x1d479,"\u006d\u0062\u0066\u0069\u0074\u0052\u0068\u006f":0x1d72c,"\u006d\u0062\u0066\u0069\u0074\u0053":0x1d47a,"\u006d\u0062\u0066\u0069\u0074\u0053\u0069\u0067\u006d\u0061":0x1d72e,"\u006d\u0062\u0066\u0069\u0074\u0054":0x1d47b,"\u006d\u0062\u0066\u0069\u0074\u0054\u0061\u0075":0x1d72f,"\u006d\u0062\u0066\u0069\u0074\u0054\u0068\u0065\u0074\u0061":0x1d723,"\u006d\u0062\u0066\u0069\u0074\u0055":0x1d47c,"\u006d\u0062\u0066i\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d730,"\u006d\u0062\u0066\u0069\u0074\u0056":0x1d47d,"\u006d\u0062\u0066\u0069\u0074\u0057":0x1d47e,"\u006d\u0062\u0066\u0069\u0074\u0058":0x1d47f,"\u006db\u0066\u0069\u0074\u0058\u0069":0x1d729,"\u006d\u0062\u0066\u0069\u0074\u0059":0x1d480,"\u006d\u0062\u0066\u0069\u0074\u005a":0x1d481,"\u006db\u0066\u0069\u0074\u005a\u0065\u0074a":0x1d721,"\u006d\u0062\u0066\u0069\u0074\u0061":0x1d482,"\u006d\u0062\u0066\u0069\u0074\u0061\u006c\u0070\u0068\u0061":0x1d736,"\u006d\u0062\u0066\u0069\u0074\u0062":0x1d483,"\u006db\u0066\u0069\u0074\u0062\u0065\u0074a":0x1d737,"\u006d\u0062\u0066\u0069\u0074\u0063":0x1d484,"\u006d\u0062\u0066\u0069\u0074\u0063\u0068\u0069":0x1d74c,"\u006d\u0062\u0066\u0069\u0074\u0064":0x1d485,"\u006d\u0062\u0066\u0069\u0074\u0064\u0065\u006c\u0074\u0061":0x1d739,"\u006d\u0062\u0066\u0069\u0074\u0065":0x1d486,"\u006d\u0062\u0066i\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d73a,"\u006d\u0062\u0066\u0069\u0074\u0065\u0074\u0061":0x1d73c,"\u006d\u0062\u0066\u0069\u0074\u0066":0x1d487,"\u006d\u0062\u0066\u0069\u0074\u0067":0x1d488,"\u006d\u0062\u0066\u0069\u0074\u0067\u0061\u006d\u006d\u0061":0x1d738,"\u006d\u0062\u0066\u0069\u0074\u0068":0x1d489,"\u006d\u0062\u0066\u0069\u0074\u0069":0x1d48a,"\u006db\u0066\u0069\u0074\u0069\u006f\u0074a":0x1d73e,"\u006d\u0062\u0066\u0069\u0074\u006a":0x1d48b,"\u006d\u0062\u0066\u0069\u0074\u006b":0x1d48c,"\u006d\u0062\u0066\u0069\u0074\u006b\u0061\u0070\u0070\u0061":0x1d73f,"\u006d\u0062\u0066\u0069\u0074\u006c":0x1d48d,"m\u0062\u0066\u0069\u0074\u006c\u0061\u006d\u0062\u0064\u0061":0x1d740,"\u006d\u0062\u0066\u0069\u0074\u006d":0x1d48e,"\u006db\u0066\u0069\u0074\u006d\u0075":0x1d741,"\u006d\u0062\u0066\u0069\u0074\u006e":0x1d48f,"\u006d\u0062\u0066\u0069\u0074\u006e\u0061\u0062\u006c\u0061":0x1d735,"\u006db\u0066\u0069\u0074\u006e\u0075":0x1d742,"\u006d\u0062\u0066\u0069\u0074\u006f":0x1d490,"\u006d\u0062\u0066\u0069\u0074\u006f\u006d\u0065\u0067\u0061":0x1d74e,"\u006d\u0062\u0066i\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d744,"\u006d\u0062\u0066\u0069\u0074\u0070":0x1d491,"\u006d\u0062\u0066i\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d74f,"\u006d\u0062\u0066\u0069\u0074\u0070\u0068\u0069":0x1d74b,"\u006db\u0066\u0069\u0074\u0070\u0069":0x1d745,"\u006d\u0062\u0066\u0069\u0074\u0070\u0073\u0069":0x1d74d,"\u006d\u0062\u0066\u0069\u0074\u0071":0x1d492,"\u006d\u0062\u0066\u0069\u0074\u0072":0x1d493,"\u006d\u0062\u0066\u0069\u0074\u0072\u0068\u006f":0x1d746,"\u006d\u0062\u0066\u0069\u0074\u0073":0x1d494,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0041":0x1d63c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073A\u006c\u0070\u0068\u0061":0x1d790,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042":0x1d63d,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061":0x1d791,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0043":0x1d63e,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0043\u0068\u0069":0x1d7a6,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0044":0x1d63f,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073D\u0065\u006c\u0074\u0061":0x1d793,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0045":0x1d640,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d794,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0045\u0074\u0061":0x1d796,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0046":0x1d641,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0047":0x1d642,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073G\u0061\u006d\u006d\u0061":0x1d792,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0048":0x1d643,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049":0x1d644,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061":0x1d798,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004a":0x1d645,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004b":0x1d646,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073K\u0061\u0070\u0070\u0061":0x1d799,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004c":0x1d647,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061":0x1d79a,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d":0x1d648,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d\u0075":0x1d79b,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e":0x1d649,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e\u0075":0x1d79c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004f":0x1d64a,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073O\u006d\u0065\u0067\u0061":0x1d7a8,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d79e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050":0x1d64b,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0068\u0069":0x1d7a5,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050\u0069":0x1d79f,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0073\u0069":0x1d7a7,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0051":0x1d64c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0052":0x1d64d,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0052\u0068\u006f":0x1d7a0,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0053":0x1d64e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073S\u0069\u0067\u006d\u0061":0x1d7a2,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0054":0x1d64f,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0054\u0061\u0075":0x1d7a3,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073T\u0068\u0065\u0074\u0061":0x1d797,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0055":0x1d650,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7a4,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0056":0x1d651,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0057":0x1d652,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058":0x1d653,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058\u0069":0x1d79d,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0059":0x1d654,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a":0x1d655,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061":0x1d795,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0061":0x1d656,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073a\u006c\u0070\u0068\u0061":0x1d7aa,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062":0x1d657,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061":0x1d7ab,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0063":0x1d658,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0063\u0068\u0069":0x1d7c0,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0064":0x1d659,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073d\u0065\u006c\u0074\u0061":0x1d7ad,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0065":0x1d65a,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7ae,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0065\u0074\u0061":0x1d7b0,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0066":0x1d65b,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0067":0x1d65c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073g\u0061\u006d\u006d\u0061":0x1d7ac,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0068":0x1d65d,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069":0x1d65e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061":0x1d7b2,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006a":0x1d65f,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006b":0x1d660,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073k\u0061\u0070\u0070\u0061":0x1d7b3,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006c":0x1d661,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061":0x1d7b4,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d":0x1d662,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d\u0075":0x1d7b5,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e":0x1d663,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073n\u0061\u0062\u006c\u0061":0x1d7a9,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e\u0075":0x1d7b6,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006f":0x1d664,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073o\u006d\u0065\u0067\u0061":0x1d7c2,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d7b8,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070":0x1d665,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d7c3,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0068\u0069":0x1d7bf,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070\u0069":0x1d7b9,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0073\u0069":0x1d7c1,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0071":0x1d666,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0072":0x1d667,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0072\u0068\u006f":0x1d7ba,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0073":0x1d668,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073s\u0069\u0067\u006d\u0061":0x1d7bc,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0074":0x1d669,"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0074\u0061\u0075":0x1d7bd,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073t\u0068\u0065\u0074\u0061":0x1d7b1,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0075":0x1d66a,"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7be,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076":0x1d66b,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072T\u0068\u0065\u0074\u0061":0x1d7a1,"\u006d\u0062\u0066\u0069ts\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d7c4,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072k\u0061\u0070\u0070\u0061":0x1d7c6,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069":0x1d7c7,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073v\u0061\u0072\u0070\u0069":0x1d7c9,"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f":0x1d7c8,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072s\u0069\u0067\u006d\u0061":0x1d7bb,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072t\u0068\u0065\u0074\u0061":0x1d7c5,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0077":0x1d66c,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078":0x1d66d,"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078\u0069":0x1d7b7,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0079":0x1d66e,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a":0x1d66f,"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061":0x1d7af,"\u006d\u0062\u0066\u0069\u0074\u0073\u0069\u0067\u006d\u0061":0x1d748,"\u006d\u0062\u0066\u0069\u0074\u0074":0x1d495,"\u006d\u0062\u0066\u0069\u0074\u0074\u0061\u0075":0x1d749,"\u006d\u0062\u0066\u0069\u0074\u0074\u0068\u0065\u0074\u0061":0x1d73d,"\u006d\u0062\u0066\u0069\u0074\u0075":0x1d496,"\u006d\u0062\u0066i\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d74a,"\u006d\u0062\u0066\u0069\u0074\u0076":0x1d497,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d72d,"\u006db\u0066i\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d750,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d752,"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0068\u0069":0x1d753,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0069":0x1d755,"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0072\u0068\u006f":0x1d754,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d747,"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d751,"\u006d\u0062\u0066\u0069\u0074\u0077":0x1d498,"\u006d\u0062\u0066\u0069\u0074\u0078":0x1d499,"\u006db\u0066\u0069\u0074\u0078\u0069":0x1d743,"\u006d\u0062\u0066\u0069\u0074\u0079":0x1d49a,"\u006d\u0062\u0066\u0069\u0074\u007a":0x1d49b,"\u006db\u0066\u0069\u0074\u007a\u0065\u0074a":0x1d73b,"\u006d\u0062\u0066\u006a":0x1d423,"\u006d\u0062\u0066\u006b":0x1d424,"\u006d\u0062\u0066\u006b\u0061\u0070\u0070\u0061":0x1d6cb,"\u006d\u0062\u0066\u006c":0x1d425,"\u006db\u0066\u006c\u0061\u006d\u0062\u0064a":0x1d6cc,"\u006d\u0062\u0066\u006d":0x1d426,"\u006d\u0062\u0066m\u0075":0x1d6cd,"\u006d\u0062\u0066\u006e":0x1d427,"\u006d\u0062\u0066\u006e\u0061\u0062\u006c\u0061":0x1d6c1,"\u006d\u0062\u0066n\u0075":0x1d6ce,"\u006d\u0062\u0066\u006f":0x1d428,"\u006d\u0062\u0066\u006f\u006d\u0065\u0067\u0061":0x1d6da,"\u006d\u0062\u0066\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d6d0,"\u006d\u0062\u0066\u0070":0x1d429,"\u006d\u0062\u0066\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d6db,"\u006d\u0062\u0066\u0070\u0068\u0069":0x1d6df,"\u006d\u0062\u0066p\u0069":0x1d6d1,"\u006d\u0062\u0066\u0070\u0073\u0069":0x1d6d9,"\u006d\u0062\u0066\u0071":0x1d42a,"\u006d\u0062\u0066\u0072":0x1d42b,"\u006d\u0062\u0066\u0072\u0068\u006f":0x1d6d2,"\u006d\u0062\u0066\u0073":0x1d42c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0041":0x1d5d4,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0041\u006c\u0070\u0068\u0061":0x1d756,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0042":0x1d5d5,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061":0x1d757,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043":0x1d5d6,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043\u0068\u0069":0x1d76c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0044":0x1d5d7,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0044\u0065\u006c\u0074\u0061":0x1d759,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045":0x1d5d8,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0070s\u0069\u006c\u006f\u006e":0x1d75a,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0074\u0061":0x1d75c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0046":0x1d5d9,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0047":0x1d5da,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0047\u0061\u006d\u006d\u0061":0x1d758,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0048":0x1d5db,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0049":0x1d5dc,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061":0x1d75e,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004a":0x1d5dd,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004b":0x1d5de,"\u006d\u0062\u0066s\u0061\u006e\u0073\u004b\u0061\u0070\u0070\u0061":0x1d75f,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c":0x1d5df,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061":0x1d760,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004d":0x1d5e0,"\u006db\u0066\u0073\u0061\u006e\u0073\u004du":0x1d761,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004e":0x1d5e1,"\u006db\u0066\u0073\u0061\u006e\u0073\u004eu":0x1d762,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f":0x1d5e2,"\u006d\u0062\u0066s\u0061\u006e\u0073\u004f\u006d\u0065\u0067\u0061":0x1d76e,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f\u006di\u0063\u0072\u006f\u006e":0x1d764,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050":0x1d5e3,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0068\u0069":0x1d76b,"\u006db\u0066\u0073\u0061\u006e\u0073\u0050i":0x1d765,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0073\u0069":0x1d76d,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0051":0x1d5e4,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052":0x1d5e5,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052\u0068\u006f":0x1d766,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0053":0x1d5e6,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0053\u0069\u0067\u006d\u0061":0x1d768,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054":0x1d5e7,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054\u0061\u0075":0x1d769,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0054\u0068\u0065\u0074\u0061":0x1d75d,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055":0x1d5e8,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055\u0070s\u0069\u006c\u006f\u006e":0x1d76a,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0056":0x1d5e9,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0057":0x1d5ea,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0058":0x1d5eb,"\u006db\u0066\u0073\u0061\u006e\u0073\u0058i":0x1d763,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0059":0x1d5ec,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u005a":0x1d5ed,"m\u0062\u0066\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061":0x1d75b,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0061":0x1d5ee,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0061\u006c\u0070\u0068\u0061":0x1d770,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0062":0x1d5ef,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061":0x1d771,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063":0x1d5f0,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063\u0068\u0069":0x1d786,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0064":0x1d5f1,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0064\u0065\u006c\u0074\u0061":0x1d773,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065":0x1d5f2,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074":0x1d7f4,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0070s\u0069\u006c\u006f\u006e":0x1d774,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0074\u0061":0x1d776,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0066":0x1d5f3,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u0069\u0076\u0065":0x1d7f1,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u006f\u0075\u0072":0x1d7f0,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0067":0x1d5f4,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0067\u0061\u006d\u006d\u0061":0x1d772,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0068":0x1d5f5,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0069":0x1d5f6,"m\u0062\u0066\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061":0x1d778,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006a":0x1d5f7,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006b":0x1d5f8,"\u006d\u0062\u0066s\u0061\u006e\u0073\u006b\u0061\u0070\u0070\u0061":0x1d779,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c":0x1d5f9,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061":0x1d77a,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006d":0x1d5fa,"\u006db\u0066\u0073\u0061\u006e\u0073\u006du":0x1d77b,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006e":0x1d5fb,"\u006d\u0062\u0066s\u0061\u006e\u0073\u006e\u0061\u0062\u006c\u0061":0x1d76f,"m\u0062\u0066\u0073\u0061\u006e\u0073\u006e\u0069\u006e\u0065":0x1d7f5,"\u006db\u0066\u0073\u0061\u006e\u0073\u006eu":0x1d77c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f":0x1d5fc,"\u006d\u0062\u0066s\u0061\u006e\u0073\u006f\u006d\u0065\u0067\u0061":0x1d788,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006di\u0063\u0072\u006f\u006e":0x1d77e,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006e\u0065":0x1d7ed,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070":0x1d5fd,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0061r\u0074\u0069\u0061\u006c":0x1d789,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0068\u0069":0x1d785,"\u006db\u0066\u0073\u0061\u006e\u0073\u0070i":0x1d77f,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0073\u0069":0x1d787,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0071":0x1d5fe,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072":0x1d5ff,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072\u0068\u006f":0x1d780,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073":0x1d600,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e":0x1d7f3,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0069\u0067\u006d\u0061":0x1d782,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073\u0069\u0078":0x1d7f2,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074":0x1d601,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0061\u0075":0x1d783,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0065\u0074\u0061":0x1d777,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065":0x1d7ef,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0077\u006f":0x1d7ee,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075":0x1d602,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075\u0070s\u0069\u006c\u006f\u006e":0x1d784,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076":0x1d603,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d767,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070s\u0069\u006c\u006f\u006e":0x1d78a,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d78c,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069":0x1d78d,"\u006d\u0062\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0069":0x1d78f,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f":0x1d78e,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d781,"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d78b,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0077":0x1d604,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0078":0x1d605,"\u006db\u0066\u0073\u0061\u006e\u0073\u0078i":0x1d77d,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0079":0x1d606,"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u007a":0x1d607,"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0072\u006f":0x1d7ec,"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061":0x1d775,"\u006db\u0066\u0073\u0063\u0072\u0041":0x1d4d0,"\u006db\u0066\u0073\u0063\u0072\u0042":0x1d4d1,"\u006db\u0066\u0073\u0063\u0072\u0043":0x1d4d2,"\u006db\u0066\u0073\u0063\u0072\u0044":0x1d4d3,"\u006db\u0066\u0073\u0063\u0072\u0045":0x1d4d4,"\u006db\u0066\u0073\u0063\u0072\u0046":0x1d4d5,"\u006db\u0066\u0073\u0063\u0072\u0047":0x1d4d6,"\u006db\u0066\u0073\u0063\u0072\u0048":0x1d4d7,"\u006db\u0066\u0073\u0063\u0072\u0049":0x1d4d8,"\u006db\u0066\u0073\u0063\u0072\u004a":0x1d4d9,"\u006db\u0066\u0073\u0063\u0072\u004b":0x1d4da,"\u006db\u0066\u0073\u0063\u0072\u004c":0x1d4db,"\u006db\u0066\u0073\u0063\u0072\u004d":0x1d4dc,"\u006db\u0066\u0073\u0063\u0072\u004e":0x1d4dd,"\u006db\u0066\u0073\u0063\u0072\u004f":0x1d4de,"\u006db\u0066\u0073\u0063\u0072\u0050":0x1d4df,"\u006db\u0066\u0073\u0063\u0072\u0051":0x1d4e0,"\u006db\u0066\u0073\u0063\u0072\u0052":0x1d4e1,"\u006db\u0066\u0073\u0063\u0072\u0053":0x1d4e2,"\u006db\u0066\u0073\u0063\u0072\u0054":0x1d4e3,"\u006db\u0066\u0073\u0063\u0072\u0055":0x1d4e4,"\u006db\u0066\u0073\u0063\u0072\u0056":0x1d4e5,"\u006db\u0066\u0073\u0063\u0072\u0057":0x1d4e6,"\u006db\u0066\u0073\u0063\u0072\u0058":0x1d4e7,"\u006db\u0066\u0073\u0063\u0072\u0059":0x1d4e8,"\u006db\u0066\u0073\u0063\u0072\u005a":0x1d4e9,"\u006db\u0066\u0073\u0063\u0072\u0061":0x1d4ea,"\u006db\u0066\u0073\u0063\u0072\u0062":0x1d4eb,"\u006db\u0066\u0073\u0063\u0072\u0063":0x1d4ec,"\u006db\u0066\u0073\u0063\u0072\u0064":0x1d4ed,"\u006db\u0066\u0073\u0063\u0072\u0065":0x1d4ee,"\u006db\u0066\u0073\u0063\u0072\u0066":0x1d4ef,"\u006db\u0066\u0073\u0063\u0072\u0067":0x1d4f0,"\u006db\u0066\u0073\u0063\u0072\u0068":0x1d4f1,"\u006db\u0066\u0073\u0063\u0072\u0069":0x1d4f2,"\u006db\u0066\u0073\u0063\u0072\u006a":0x1d4f3,"\u006db\u0066\u0073\u0063\u0072\u006b":0x1d4f4,"\u006db\u0066\u0073\u0063\u0072\u006c":0x1d4f5,"\u006db\u0066\u0073\u0063\u0072\u006d":0x1d4f6,"\u006db\u0066\u0073\u0063\u0072\u006e":0x1d4f7,"\u006db\u0066\u0073\u0063\u0072\u006f":0x1d4f8,"\u006db\u0066\u0073\u0063\u0072\u0070":0x1d4f9,"\u006db\u0066\u0073\u0063\u0072\u0071":0x1d4fa,"\u006db\u0066\u0073\u0063\u0072\u0072":0x1d4fb,"\u006db\u0066\u0073\u0063\u0072\u0073":0x1d4fc,"\u006db\u0066\u0073\u0063\u0072\u0074":0x1d4fd,"\u006db\u0066\u0073\u0063\u0072\u0075":0x1d4fe,"\u006db\u0066\u0073\u0063\u0072\u0076":0x1d4ff,"\u006db\u0066\u0073\u0063\u0072\u0077":0x1d500,"\u006db\u0066\u0073\u0063\u0072\u0078":0x1d501,"\u006db\u0066\u0073\u0063\u0072\u0079":0x1d502,"\u006db\u0066\u0073\u0063\u0072\u007a":0x1d503,"\u006d\u0062\u0066\u0073\u0069\u0067\u006d\u0061":0x1d6d4,"\u006d\u0062\u0066\u0074":0x1d42d,"\u006d\u0062\u0066\u0074\u0061\u0075":0x1d6d5,"\u006d\u0062\u0066\u0074\u0068\u0065\u0074\u0061":0x1d6c9,"\u006d\u0062\u0066\u0075":0x1d42e,"\u006d\u0062\u0066\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6d6,"\u006d\u0062\u0066\u0076":0x1d42f,"m\u0062\u0066\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d6b9,"\u006d\u0062\u0066\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6dc,"m\u0062\u0066\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d6de,"\u006db\u0066\u0076\u0061\u0072\u0070\u0068i":0x1d6d7,"\u006d\u0062\u0066\u0076\u0061\u0072\u0070\u0069":0x1d6e1,"\u006db\u0066\u0076\u0061\u0072\u0072\u0068o":0x1d6e0,"m\u0062\u0066\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d6d3,"m\u0062\u0066\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d6dd,"\u006d\u0062\u0066\u0077":0x1d430,"\u006d\u0062\u0066\u0078":0x1d431,"\u006d\u0062\u0066x\u0069":0x1d6cf,"\u006d\u0062\u0066\u0079":0x1d432,"\u006d\u0062\u0066\u007a":0x1d433,"\u006db\u0066\u007a\u0065\u0074\u0061":0x1d6c7,"\u006db\u006f\u0070\u006f\u006d\u006f\u0066o":0x3107,"\u006d\u0062\u0073\u0071\u0075\u0061\u0072\u0065":0x33d4,"\u006dc\u0069\u0072\u0063\u006c\u0065":0x24dc,"\u006d\u0063\u0075b\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a5,"m\u0064\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065":0x26ab,"\u006d\u0064\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x2b25,"\u006d\u0064\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b27,"m\u0064\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x25fc,"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u006c\u006fz\u0065\u006e\u0067\u0065":0x29eb,"\u006d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e41,"\u006dd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e43,"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065":0x2981,"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x25fe,"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x26ac,"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x25fd,"m\u0064\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x26aa,"\u006d\u0064\u0077h\u0074\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x2b26,"\u006d\u0064\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b28,"m\u0064\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x25fb,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u006c\u0074\u006f\u0073\u0077":0x29af,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u0072\u0074\u006f\u0073\u0065":0x29ae,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0064\u0074\u006f\u0073\u0077":0x29ab,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0075\u0074\u006f\u006e\u0077":0x29a9,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0064\u0074\u006f\u0073\u0065":0x29aa,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0075\u0074\u006f\u006e\u0065":0x29a8,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u006c\u0074\u006f\u006e\u0077":0x29ad,"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u0072\u0074\u006f\u006e\u0065":0x29ac,"\u006d\u0065\u0061\u0073\u0065\u0071":0x225e,"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006c\u0065":0x2221,"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074":0x299b,"\u006de\u0061s\u0075\u0072\u0065\u0064\u0072i\u0067\u0068t\u0061\u006e\u0067\u006c\u0065":0x22be,"\u006d\u0065\u0064b\u006c\u0061\u0063\u006b\u0073\u0074\u0061\u0072":0x2b51,"\u006d\u0065\u0064w\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072":0x2b50,"\u006de\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee2,"\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfee3,"\u006d\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfee1,"\u006d\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee4,"m\u0065\u0065\u006d\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfcd1,"\u006d\u0065\u0065\u006dme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063":0xfc48,"\u006de\u0065m\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfccf,"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcce,"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcd0,"\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x334d,"\u006d\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3081,"\u006d\u0065\u0069\u007a\u0069\u0065\u0072\u0061\u0073q\u0075\u0061\u0072\u0065":0x337e,"\u006d\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e1,"\u006d\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff92,"\u006d\u0065\u006d":0x05de,"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb3e,"m\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0574,"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a5,"\u006de\u0072k\u0068\u0061\u006b\u0065\u0066u\u006c\u0061h\u0065\u0062\u0072\u0065\u0077":0x05a6,"\u006d\u0066\u0072\u0061\u006b\u0041":0x1d504,"\u006d\u0066\u0072\u0061\u006b\u0042":0x1d505,"\u006d\u0066\u0072\u0061\u006b\u0043":0x212d,"\u006d\u0066\u0072\u0061\u006b\u0044":0x1d507,"\u006d\u0066\u0072\u0061\u006b\u0045":0x1d508,"\u006d\u0066\u0072\u0061\u006b\u0046":0x1d509,"\u006d\u0066\u0072\u0061\u006b\u0047":0x1d50a,"\u006d\u0066\u0072\u0061\u006b\u0048":0x210c,"\u006d\u0066\u0072\u0061\u006b\u004a":0x1d50d,"\u006d\u0066\u0072\u0061\u006b\u004b":0x1d50e,"\u006d\u0066\u0072\u0061\u006b\u004c":0x1d50f,"\u006d\u0066\u0072\u0061\u006b\u004d":0x1d510,"\u006d\u0066\u0072\u0061\u006b\u004e":0x1d511,"\u006d\u0066\u0072\u0061\u006b\u004f":0x1d512,"\u006d\u0066\u0072\u0061\u006b\u0050":0x1d513,"\u006d\u0066\u0072\u0061\u006b\u0051":0x1d514,"\u006d\u0066\u0072\u0061\u006b\u0053":0x1d516,"\u006d\u0066\u0072\u0061\u006b\u0054":0x1d517,"\u006d\u0066\u0072\u0061\u006b\u0055":0x1d518,"\u006d\u0066\u0072\u0061\u006b\u0056":0x1d519,"\u006d\u0066\u0072\u0061\u006b\u0057":0x1d51a,"\u006d\u0066\u0072\u0061\u006b\u0058":0x1d51b,"\u006d\u0066\u0072\u0061\u006b\u0059":0x1d51c,"\u006d\u0066\u0072\u0061\u006b\u005a":0x2128,"\u006d\u0066\u0072\u0061\u006b\u0061":0x1d51e,"\u006d\u0066\u0072\u0061\u006b\u0062":0x1d51f,"\u006d\u0066\u0072\u0061\u006b\u0063":0x1d520,"\u006d\u0066\u0072\u0061\u006b\u0064":0x1d521,"\u006d\u0066\u0072\u0061\u006b\u0065":0x1d522,"\u006d\u0066\u0072\u0061\u006b\u0066":0x1d523,"\u006d\u0066\u0072\u0061\u006b\u0067":0x1d524,"\u006d\u0066\u0072\u0061\u006b\u0068":0x1d525,"\u006d\u0066\u0072\u0061\u006b\u0069":0x1d526,"\u006d\u0066\u0072\u0061\u006b\u006a":0x1d527,"\u006d\u0066\u0072\u0061\u006b\u006b":0x1d528,"\u006d\u0066\u0072\u0061\u006b\u006c":0x1d529,"\u006d\u0066\u0072\u0061\u006b\u006d":0x1d52a,"\u006d\u0066\u0072\u0061\u006b\u006e":0x1d52b,"\u006d\u0066\u0072\u0061\u006b\u006f":0x1d52c,"\u006d\u0066\u0072\u0061\u006b\u0070":0x1d52d,"\u006d\u0066\u0072\u0061\u006b\u0071":0x1d52e,"\u006d\u0066\u0072\u0061\u006b\u0072":0x1d52f,"\u006d\u0066\u0072\u0061\u006b\u0073":0x1d530,"\u006d\u0066\u0072\u0061\u006b\u0074":0x1d531,"\u006d\u0066\u0072\u0061\u006b\u0075":0x1d532,"\u006d\u0066\u0072\u0061\u006b\u0076":0x1d533,"\u006d\u0066\u0072\u0061\u006b\u0077":0x1d534,"\u006d\u0066\u0072\u0061\u006b\u0078":0x1d535,"\u006d\u0066\u0072\u0061\u006b\u0079":0x1d536,"\u006d\u0066\u0072\u0061\u006b\u007a":0x1d537,"\u006d\u0068\u006fo\u006b":0x0271,"\u006dh\u007a\u0073\u0071\u0075\u0061\u0072e":0x3392,"\u006d\u0069\u0063r\u006f":0x0095,"\u006di\u0064\u0062\u0061\u0072\u0076\u0065e":0x2a5d,"m\u0069\u0064\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065":0x2a5c,"\u006d\u0069\u0064\u0063\u0069\u0072":0x2af0,"\u006d\u0069\u0064\u0064\u006c\u0065\u0064\u006f\u0074\u006b\u0061t\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068":0xff65,"\u006di\u0065u\u006d\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3272,"\u006d\u0069\u0065\u0075\u006d\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3212,"\u006d\u0069\u0065\u0075\u006d\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3264,"m\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e":0x3141,"\u006di\u0065u\u006d\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x3170,"\u006d\u0069e\u0075\u006d\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3204,"\u006d\u0069e\u0075\u006d\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x316e,"\u006di\u0065u\u006d\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x316f,"\u006d\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307f,"\u006d\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30df,"\u006d\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff90,"\u006d\u0069\u006c\u006c":0x20a5,"\u006d\u0069\u006eu\u0073":0x2212,"\u006d\u0069\u006e\u0075\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0320,"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065":0x2296,"\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074":0x2a2a,"\u006d\u0069\u006e\u0075\u0073\u0066\u0064\u006f\u0074\u0073":0x2a2b,"\u006d\u0069\u006e\u0075\u0073\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x208b,"\u006d\u0069\u006e\u0075\u0073\u006d\u006f\u0064":0x02d7,"\u006di\u006e\u0075\u0073\u0070\u006c\u0075s":0x2213,"\u006d\u0069\u006e\u0075\u0073\u0072\u0064\u006f\u0074\u0073":0x2a2c,"\u006d\u0069\u006e\u0075\u0073\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x207b,"\u006d\u0069\u006e\u0075\u0074\u0065":0x2032,"\u006di\u0072i\u0062\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x334a,"\u006d\u0069\u0072\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x3349,"\u006d\u0069\u0074\u0041":0x1d434,"\u006d\u0069\u0074\u0041\u006c\u0070\u0068\u0061":0x1d6e2,"\u006d\u0069\u0074\u0042":0x1d435,"\u006di\u0074\u0042\u0062\u0062\u0044":0x2145,"\u006di\u0074\u0042\u0062\u0062\u0064":0x2146,"\u006di\u0074\u0042\u0062\u0062\u0065":0x2147,"\u006di\u0074\u0042\u0062\u0062\u0069":0x2148,"\u006di\u0074\u0042\u0062\u0062\u006a":0x2149,"\u006di\u0074\u0042\u0065\u0074\u0061":0x1d6e3,"\u006d\u0069\u0074\u0043":0x1d436,"\u006d\u0069\u0074\u0043\u0068\u0069":0x1d6f8,"\u006d\u0069\u0074\u0044":0x1d437,"\u006d\u0069\u0074\u0044\u0065\u006c\u0074\u0061":0x1d6e5,"\u006d\u0069\u0074\u0045":0x1d438,"\u006d\u0069\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6e6,"\u006d\u0069\u0074\u0045\u0074\u0061":0x1d6e8,"\u006d\u0069\u0074\u0046":0x1d439,"\u006d\u0069\u0074\u0047":0x1d43a,"\u006d\u0069\u0074\u0047\u0061\u006d\u006d\u0061":0x1d6e4,"\u006d\u0069\u0074\u0048":0x1d43b,"\u006d\u0069\u0074\u0049":0x1d43c,"\u006di\u0074\u0049\u006f\u0074\u0061":0x1d6ea,"\u006d\u0069\u0074\u004a":0x1d43d,"\u006d\u0069\u0074\u004b":0x1d43e,"\u006d\u0069\u0074\u004b\u0061\u0070\u0070\u0061":0x1d6eb,"\u006d\u0069\u0074\u004c":0x1d43f,"\u006di\u0074\u004c\u0061\u006d\u0062\u0064a":0x1d6ec,"\u006d\u0069\u0074\u004d":0x1d440,"\u006d\u0069\u0074M\u0075":0x1d6ed,"\u006d\u0069\u0074\u004e":0x1d441,"\u006d\u0069\u0074N\u0075":0x1d6ee,"\u006d\u0069\u0074\u004f":0x1d442,"\u006d\u0069\u0074\u004f\u006d\u0065\u0067\u0061":0x1d6fa,"\u006d\u0069\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d6f0,"\u006d\u0069\u0074\u0050":0x1d443,"\u006d\u0069\u0074\u0050\u0068\u0069":0x1d6f7,"\u006d\u0069\u0074P\u0069":0x1d6f1,"\u006d\u0069\u0074\u0050\u0073\u0069":0x1d6f9,"\u006d\u0069\u0074\u0051":0x1d444,"\u006d\u0069\u0074\u0052":0x1d445,"\u006d\u0069\u0074\u0052\u0068\u006f":0x1d6f2,"\u006d\u0069\u0074\u0053":0x1d446,"\u006d\u0069\u0074\u0053\u0069\u0067\u006d\u0061":0x1d6f4,"\u006d\u0069\u0074\u0054":0x1d447,"\u006d\u0069\u0074\u0054\u0061\u0075":0x1d6f5,"\u006d\u0069\u0074\u0054\u0068\u0065\u0074\u0061":0x1d6e9,"\u006d\u0069\u0074\u0055":0x1d448,"\u006d\u0069\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e":0x1d6f6,"\u006d\u0069\u0074\u0056":0x1d449,"\u006d\u0069\u0074\u0057":0x1d44a,"\u006d\u0069\u0074\u0058":0x1d44b,"\u006d\u0069\u0074X\u0069":0x1d6ef,"\u006d\u0069\u0074\u0059":0x1d44c,"\u006d\u0069\u0074\u005a":0x1d44d,"\u006di\u0074\u005a\u0065\u0074\u0061":0x1d6e7,"\u006d\u0069\u0074\u0061":0x1d44e,"\u006d\u0069\u0074\u0061\u006c\u0070\u0068\u0061":0x1d6fc,"\u006d\u0069\u0074\u0062":0x1d44f,"\u006di\u0074\u0062\u0065\u0074\u0061":0x1d6fd,"\u006d\u0069\u0074\u0063":0x1d450,"\u006d\u0069\u0074\u0063\u0068\u0069":0x1d712,"\u006d\u0069\u0074\u0064":0x1d451,"\u006d\u0069\u0074\u0064\u0065\u006c\u0074\u0061":0x1d6ff,"\u006d\u0069\u0074\u0065":0x1d452,"\u006d\u0069\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d700,"\u006d\u0069\u0074\u0065\u0074\u0061":0x1d702,"\u006d\u0069\u0074\u0066":0x1d453,"\u006d\u0069\u0074\u0067":0x1d454,"\u006d\u0069\u0074\u0067\u0061\u006d\u006d\u0061":0x1d6fe,"\u006d\u0069\u0074\u0069":0x1d456,"\u006di\u0074\u0069\u006f\u0074\u0061":0x1d704,"\u006d\u0069\u0074\u006a":0x1d457,"\u006d\u0069\u0074\u006b":0x1d458,"\u006d\u0069\u0074\u006b\u0061\u0070\u0070\u0061":0x1d705,"\u006d\u0069\u0074\u006c":0x1d459,"\u006di\u0074\u006c\u0061\u006d\u0062\u0064a":0x1d706,"\u006d\u0069\u0074\u006d":0x1d45a,"\u006d\u0069\u0074m\u0075":0x1d707,"\u006d\u0069\u0074\u006e":0x1d45b,"\u006d\u0069\u0074\u006e\u0061\u0062\u006c\u0061":0x1d6fb,"\u006d\u0069\u0074n\u0075":0x1d708,"\u006d\u0069\u0074\u006f":0x1d45c,"\u006d\u0069\u0074\u006f\u006d\u0065\u0067\u0061":0x1d714,"\u006d\u0069\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e":0x1d70a,"\u006d\u0069\u0074\u0070":0x1d45d,"\u006d\u0069\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c":0x1d715,"\u006d\u0069\u0074\u0070\u0068\u0069":0x1d711,"\u006d\u0069\u0074p\u0069":0x1d70b,"\u006d\u0069\u0074\u0070\u0073\u0069":0x1d713,"\u006d\u0069\u0074\u0071":0x1d45e,"\u006d\u0069\u0074\u0072":0x1d45f,"\u006d\u0069\u0074\u0072\u0068\u006f":0x1d70c,"\u006d\u0069\u0074\u0073":0x1d460,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0041":0x1d608,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0042":0x1d609,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0043":0x1d60a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0044":0x1d60b,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0045":0x1d60c,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0046":0x1d60d,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0047":0x1d60e,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0048":0x1d60f,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0049":0x1d610,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004a":0x1d611,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004b":0x1d612,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004c":0x1d613,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004d":0x1d614,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004e":0x1d615,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004f":0x1d616,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0050":0x1d617,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0051":0x1d618,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0052":0x1d619,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0053":0x1d61a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0054":0x1d61b,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0055":0x1d61c,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0056":0x1d61d,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0057":0x1d61e,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0058":0x1d61f,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0059":0x1d620,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u005a":0x1d621,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0061":0x1d622,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0062":0x1d623,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0063":0x1d624,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0064":0x1d625,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0065":0x1d626,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0066":0x1d627,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0067":0x1d628,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0068":0x1d629,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0069":0x1d62a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006a":0x1d62b,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006b":0x1d62c,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006c":0x1d62d,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006d":0x1d62e,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006e":0x1d62f,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006f":0x1d630,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0070":0x1d631,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0071":0x1d632,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0072":0x1d633,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0073":0x1d634,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0074":0x1d635,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0075":0x1d636,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0076":0x1d637,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0077":0x1d638,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0078":0x1d639,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0079":0x1d63a,"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u007a":0x1d63b,"\u006d\u0069\u0074\u0073\u0069\u0067\u006d\u0061":0x1d70e,"\u006d\u0069\u0074\u0074":0x1d461,"\u006d\u0069\u0074\u0074\u0061\u0075":0x1d70f,"\u006d\u0069\u0074\u0074\u0068\u0065\u0074\u0061":0x1d703,"\u006d\u0069\u0074\u0075":0x1d462,"\u006d\u0069\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e":0x1d710,"\u006d\u0069\u0074\u0076":0x1d463,"m\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x1d6f3,"\u006d\u0069\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e":0x1d716,"m\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061":0x1d718,"\u006di\u0074\u0076\u0061\u0072\u0070\u0068i":0x1d719,"\u006d\u0069\u0074\u0076\u0061\u0072\u0070\u0069":0x1d71b,"\u006di\u0074\u0076\u0061\u0072\u0072\u0068o":0x1d71a,"m\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061":0x1d70d,"m\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061":0x1d717,"\u006d\u0069\u0074\u0077":0x1d464,"\u006d\u0069\u0074\u0078":0x1d465,"\u006d\u0069\u0074x\u0069":0x1d709,"\u006d\u0069\u0074\u0079":0x1d466,"\u006d\u0069\u0074\u007a":0x1d467,"\u006di\u0074\u007a\u0065\u0074\u0061":0x1d701,"\u006d\u006c\u0063\u0070":0x2adb,"\u006d\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064":0x0270,"\u006d\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x3396,"\u006d\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a3,"\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4d,"\u006dm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x339f,"\u006d\u006f\u0064\u0065\u006c\u0073":0x22a7,"\u006do\u0064\u0074\u0077\u006f\u0073\u0075m":0x2a0a,"\u006d\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3082,"\u006d\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33c1,"\u006d\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e2,"\u006d\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff93,"\u006do\u006c\u0073\u0071\u0075\u0061\u0072e":0x33d6,"\u006d\u006f\u006d\u0061\u0074\u0068\u0061\u0069":0x0e21,"\u006d\u006f\u0076e\u0072\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33a7,"\u006d\u006f\u0076\u0065rs\u0073\u0071\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065":0x33a8,"\u006d\u0070\u0061\u0072\u0065\u006e":0x24a8,"\u006dp\u0061\u0073\u0071\u0075\u0061\u0072e":0x33ab,"\u006d\u0073\u0061\u006e\u0073\u0041":0x1d5a0,"\u006d\u0073\u0061\u006e\u0073\u0042":0x1d5a1,"\u006d\u0073\u0061\u006e\u0073\u0043":0x1d5a2,"\u006d\u0073\u0061\u006e\u0073\u0044":0x1d5a3,"\u006d\u0073\u0061\u006e\u0073\u0045":0x1d5a4,"\u006d\u0073\u0061\u006e\u0073\u0046":0x1d5a5,"\u006d\u0073\u0061\u006e\u0073\u0047":0x1d5a6,"\u006d\u0073\u0061\u006e\u0073\u0048":0x1d5a7,"\u006d\u0073\u0061\u006e\u0073\u0049":0x1d5a8,"\u006d\u0073\u0061\u006e\u0073\u004a":0x1d5a9,"\u006d\u0073\u0061\u006e\u0073\u004b":0x1d5aa,"\u006d\u0073\u0061\u006e\u0073\u004c":0x1d5ab,"\u006d\u0073\u0061\u006e\u0073\u004d":0x1d5ac,"\u006d\u0073\u0061\u006e\u0073\u004e":0x1d5ad,"\u006d\u0073\u0061\u006e\u0073\u004f":0x1d5ae,"\u006d\u0073\u0061\u006e\u0073\u0050":0x1d5af,"\u006d\u0073\u0061\u006e\u0073\u0051":0x1d5b0,"\u006d\u0073\u0061\u006e\u0073\u0052":0x1d5b1,"\u006d\u0073\u0061\u006e\u0073\u0053":0x1d5b2,"\u006d\u0073\u0061\u006e\u0073\u0054":0x1d5b3,"\u006d\u0073\u0061\u006e\u0073\u0055":0x1d5b4,"\u006d\u0073\u0061\u006e\u0073\u0056":0x1d5b5,"\u006d\u0073\u0061\u006e\u0073\u0057":0x1d5b6,"\u006d\u0073\u0061\u006e\u0073\u0058":0x1d5b7,"\u006d\u0073\u0061\u006e\u0073\u0059":0x1d5b8,"\u006d\u0073\u0061\u006e\u0073\u005a":0x1d5b9,"\u006d\u0073\u0061\u006e\u0073\u0061":0x1d5ba,"\u006d\u0073\u0061\u006e\u0073\u0062":0x1d5bb,"\u006d\u0073\u0061\u006e\u0073\u0063":0x1d5bc,"\u006d\u0073\u0061\u006e\u0073\u0064":0x1d5bd,"\u006d\u0073\u0061\u006e\u0073\u0065":0x1d5be,"\u006d\u0073\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074":0x1d7ea,"\u006d\u0073\u0061\u006e\u0073\u0066":0x1d5bf,"\u006ds\u0061\u006e\u0073\u0066\u0069\u0076e":0x1d7e7,"\u006ds\u0061\u006e\u0073\u0066\u006f\u0075r":0x1d7e6,"\u006d\u0073\u0061\u006e\u0073\u0067":0x1d5c0,"\u006d\u0073\u0061\u006e\u0073\u0068":0x1d5c1,"\u006d\u0073\u0061\u006e\u0073\u0069":0x1d5c2,"\u006d\u0073\u0061\u006e\u0073\u006a":0x1d5c3,"\u006d\u0073\u0061\u006e\u0073\u006b":0x1d5c4,"\u006d\u0073\u0061\u006e\u0073\u006c":0x1d5c5,"\u006d\u0073\u0061\u006e\u0073\u006d":0x1d5c6,"\u006d\u0073\u0061\u006e\u0073\u006e":0x1d5c7,"\u006ds\u0061\u006e\u0073\u006e\u0069\u006ee":0x1d7eb,"\u006d\u0073\u0061\u006e\u0073\u006f":0x1d5c8,"\u006d\u0073\u0061\u006e\u0073\u006f\u006e\u0065":0x1d7e3,"\u006d\u0073\u0061\u006e\u0073\u0070":0x1d5c9,"\u006d\u0073\u0061\u006e\u0073\u0071":0x1d5ca,"\u006d\u0073\u0061\u006e\u0073\u0072":0x1d5cb,"\u006d\u0073\u0061\u006e\u0073\u0073":0x1d5cc,"\u006d\u0073\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e":0x1d7e9,"\u006d\u0073\u0061\u006e\u0073\u0073\u0069\u0078":0x1d7e8,"\u006d\u0073\u0061\u006e\u0073\u0074":0x1d5cd,"\u006d\u0073\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065":0x1d7e5,"\u006d\u0073\u0061\u006e\u0073\u0074\u0077\u006f":0x1d7e4,"\u006d\u0073\u0061\u006e\u0073\u0075":0x1d5ce,"\u006d\u0073\u0061\u006e\u0073\u0076":0x1d5cf,"\u006d\u0073\u0061\u006e\u0073\u0077":0x1d5d0,"\u006d\u0073\u0061\u006e\u0073\u0078":0x1d5d1,"\u006d\u0073\u0061\u006e\u0073\u0079":0x1d5d2,"\u006d\u0073\u0061\u006e\u0073\u007a":0x1d5d3,"\u006ds\u0061\u006e\u0073\u007a\u0065\u0072o":0x1d7e2,"\u006d\u0073\u0063r\u0041":0x1d49c,"\u006d\u0073\u0063r\u0042":0x212c,"\u006d\u0073\u0063r\u0043":0x1d49e,"\u006d\u0073\u0063r\u0044":0x1d49f,"\u006d\u0073\u0063r\u0045":0x2130,"\u006d\u0073\u0063r\u0046":0x2131,"\u006d\u0073\u0063r\u0047":0x1d4a2,"\u006d\u0073\u0063r\u0048":0x210b,"\u006d\u0073\u0063r\u0049":0x2110,"\u006d\u0073\u0063r\u004a":0x1d4a5,"\u006d\u0073\u0063r\u004b":0x1d4a6,"\u006d\u0073\u0063r\u004c":0x2112,"\u006d\u0073\u0063r\u004d":0x2133,"\u006d\u0073\u0063r\u004e":0x1d4a9,"\u006d\u0073\u0063r\u004f":0x1d4aa,"\u006d\u0073\u0063r\u0050":0x1d4ab,"\u006d\u0073\u0063r\u0051":0x1d4ac,"\u006d\u0073\u0063r\u0052":0x211b,"\u006d\u0073\u0063r\u0053":0x1d4ae,"\u006d\u0073\u0063r\u0054":0x1d4af,"\u006d\u0073\u0063r\u0055":0x1d4b0,"\u006d\u0073\u0063r\u0056":0x1d4b1,"\u006d\u0073\u0063r\u0057":0x1d4b2,"\u006d\u0073\u0063r\u0058":0x1d4b3,"\u006d\u0073\u0063r\u0059":0x1d4b4,"\u006d\u0073\u0063r\u005a":0x1d4b5,"\u006d\u0073\u0063r\u0061":0x1d4b6,"\u006d\u0073\u0063r\u0062":0x1d4b7,"\u006d\u0073\u0063r\u0063":0x1d4b8,"\u006d\u0073\u0063r\u0064":0x1d4b9,"\u006d\u0073\u0063r\u0065":0x212f,"\u006d\u0073\u0063r\u0066":0x1d4bb,"\u006d\u0073\u0063r\u0067":0x210a,"\u006d\u0073\u0063r\u0068":0x1d4bd,"\u006d\u0073\u0063r\u0069":0x1d4be,"\u006d\u0073\u0063r\u006a":0x1d4bf,"\u006d\u0073\u0063r\u006b":0x1d4c0,"\u006d\u0073\u0063r\u006c":0x1d4c1,"\u006d\u0073\u0063r\u006d":0x1d4c2,"\u006d\u0073\u0063r\u006e":0x1d4c3,"\u006d\u0073\u0063r\u006f":0x2134,"\u006d\u0073\u0063r\u0070":0x1d4c5,"\u006d\u0073\u0063r\u0071":0x1d4c6,"\u006d\u0073\u0063r\u0072":0x1d4c7,"\u006d\u0073\u0063r\u0073":0x1d4c8,"\u006d\u0073\u0063r\u0074":0x1d4c9,"\u006d\u0073\u0063r\u0075":0x1d4ca,"\u006d\u0073\u0063r\u0076":0x1d4cb,"\u006d\u0073\u0063r\u0077":0x1d4cc,"\u006d\u0073\u0063r\u0078":0x1d4cd,"\u006d\u0073\u0063r\u0079":0x1d4ce,"\u006d\u0073\u0063r\u007a":0x1d4cf,"\u006d\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33b3,"\u006ds\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6ef,"\u006d\u0074\u0074\u0041":0x1d670,"\u006d\u0074\u0074\u0042":0x1d671,"\u006d\u0074\u0074\u0043":0x1d672,"\u006d\u0074\u0074\u0044":0x1d673,"\u006d\u0074\u0074\u0045":0x1d674,"\u006d\u0074\u0074\u0046":0x1d675,"\u006d\u0074\u0074\u0047":0x1d676,"\u006d\u0074\u0074\u0048":0x1d677,"\u006d\u0074\u0074\u0049":0x1d678,"\u006d\u0074\u0074\u004a":0x1d679,"\u006d\u0074\u0074\u004b":0x1d67a,"\u006d\u0074\u0074\u004c":0x1d67b,"\u006d\u0074\u0074\u004d":0x1d67c,"\u006d\u0074\u0074\u004e":0x1d67d,"\u006d\u0074\u0074\u004f":0x1d67e,"\u006d\u0074\u0074\u0050":0x1d67f,"\u006d\u0074\u0074\u0051":0x1d680,"\u006d\u0074\u0074\u0052":0x1d681,"\u006d\u0074\u0074\u0053":0x1d682,"\u006d\u0074\u0074\u0054":0x1d683,"\u006d\u0074\u0074\u0055":0x1d684,"\u006d\u0074\u0074\u0056":0x1d685,"\u006d\u0074\u0074\u0057":0x1d686,"\u006d\u0074\u0074\u0058":0x1d687,"\u006d\u0074\u0074\u0059":0x1d688,"\u006d\u0074\u0074\u005a":0x1d689,"\u006d\u0074\u0074\u0061":0x1d68a,"\u006d\u0074\u0074\u0062":0x1d68b,"\u006d\u0074\u0074\u0063":0x1d68c,"\u006d\u0074\u0074\u0064":0x1d68d,"\u006d\u0074\u0074\u0065":0x1d68e,"\u006d\u0074\u0074\u0065\u0069\u0067\u0068\u0074":0x1d7fe,"\u006d\u0074\u0074\u0066":0x1d68f,"\u006dt\u0074\u0066\u0069\u0076\u0065":0x1d7fb,"\u006dt\u0074\u0066\u006f\u0075\u0072":0x1d7fa,"\u006d\u0074\u0074\u0067":0x1d690,"\u006d\u0074\u0074\u0068":0x1d691,"\u006d\u0074\u0074\u0069":0x1d692,"\u006d\u0074\u0074\u006a":0x1d693,"\u006d\u0074\u0074\u006b":0x1d694,"\u006d\u0074\u0074\u006c":0x1d695,"\u006d\u0074\u0074\u006d":0x1d696,"\u006d\u0074\u0074\u006e":0x1d697,"\u006dt\u0074\u006e\u0069\u006e\u0065":0x1d7ff,"\u006d\u0074\u0074\u006f":0x1d698,"\u006d\u0074\u0074\u006f\u006e\u0065":0x1d7f7,"\u006d\u0074\u0074\u0070":0x1d699,"\u006d\u0074\u0074\u0071":0x1d69a,"\u006d\u0074\u0074\u0072":0x1d69b,"\u006d\u0074\u0074\u0073":0x1d69c,"\u006d\u0074\u0074\u0073\u0065\u0076\u0065\u006e":0x1d7fd,"\u006d\u0074\u0074\u0073\u0069\u0078":0x1d7fc,"\u006d\u0074\u0074\u0074":0x1d69d,"\u006d\u0074\u0074\u0074\u0068\u0072\u0065\u0065":0x1d7f9,"\u006d\u0074\u0074\u0074\u0077\u006f":0x1d7f8,"\u006d\u0074\u0074\u0075":0x1d69e,"\u006d\u0074\u0074\u0076":0x1d69f,"\u006d\u0074\u0074\u0077":0x1d6a0,"\u006d\u0074\u0074\u0078":0x1d6a1,"\u006d\u0074\u0074\u0079":0x1d6a2,"\u006d\u0074\u0074\u007a":0x1d6a3,"\u006dt\u0074\u007a\u0065\u0072\u006f":0x1d7f6,"\u006dt\u0075\u0072\u006e\u0065\u0064":0x026f,"\u006d\u0075":0x00b5,"\u006du\u0061\u0073\u0071\u0075\u0061\u0072e":0x3382,"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072":0x226b,"\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073":0x226a,"\u006du\u0066\u0073\u0071\u0075\u0061\u0072e":0x338c,"\u006du\u0067\u0072\u0065\u0065\u006b":0x03bc,"\u006du\u0067\u0073\u0071\u0075\u0061\u0072e":0x338d,"\u006d\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3080,"\u006d\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e0,"\u006d\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff91,"\u006du\u006c\u0073\u0071\u0075\u0061\u0072e":0x3395,"\u006d\u0075\u006c\u0074\u0069\u0063\u006c\u006f\u0073e\u006c\u0065\u0066\u0074":0x22c9,"\u006du\u006ct\u0069\u0063\u006c\u006f\u0073\u0065\u0072\u0069\u0067\u0068\u0074":0x22ca,"\u006d\u0075\u006c\u0074\u0069\u006d\u0061\u0070":0x22b8,"m\u0075\u006c\u0074\u0069\u006d\u0061\u0070\u0069\u006e\u0076":0x27dc,"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074":0x22cb,"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074":0x22cc,"\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079":0x00d7,"\u006du\u006d\u0073\u0071\u0075\u0061\u0072e":0x339b,"\u006du\u006ea\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05a3,"m\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006f\u0074\u0065":0x266a,"\u006d\u0075\u0073\u0069\u0063\u0066\u006c\u0061\u0074\u0073\u0069\u0067\u006e":0x266d,"\u006d\u0075\u0073\u0069\u0063\u0073\u0068\u0061\u0072p\u0073\u0069\u0067\u006e":0x266f,"\u006du\u0073\u0073\u0071\u0075\u0061\u0072e":0x33b2,"\u006du\u0076\u0073\u0071\u0075\u0061\u0072e":0x33b6,"\u006du\u0077\u0073\u0071\u0075\u0061\u0072e":0x33bc,"\u006d\u0076\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33b9,"\u006d\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b7,"\u006d\u0077\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33bf,"\u006d\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33bd,"\u006e":0x006e,"n\u0056\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x21fa,"\u006eV\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2b3a,"\u006e\u0056l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21fc,"\u006e\u0056\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21fb,"\u006e\u0056r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2915,"\u006eV\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077":0x2b35,"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c":0x2b3d,"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2901,"\u006e\u0056\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2918,"\u006ea\u0062\u0065\u006e\u0067\u0061\u006ci":0x09a8,"\u006e\u0061\u0063\u0075\u0074\u0065":0x0144,"\u006e\u0061\u0064\u0065\u0076\u0061":0x0928,"\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa8,"\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a28,"\u006e\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306a,"\u006e\u0061\u0069r\u0061":0x20a6,"\u006e\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ca,"\u006e\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff85,"\u006e\u0061\u006e\u0064":0x22bc,"\u006ea\u0070\u0070\u0072\u006f\u0078":0x2249,"\u006e\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x3381,"\u006e\u0061\u0073\u0079\u006d\u0070":0x226d,"\u006ea\u0074\u0075\u0072\u0061\u006c":0x266e,"\u006e\u0062\u0068\u0079\u0070\u0068\u0065\u006e":0x2011,"\u006eb\u006f\u0070\u006f\u006d\u006f\u0066o":0x310b,"\u006e\u0063\u0061\u0072\u006f\u006e":0x0148,"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0146,"\u006ec\u0065\u0064\u0069\u006c\u006c\u00611":0xf81d,"\u006ec\u0069\u0072\u0063\u006c\u0065":0x24dd,"\u006e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e4b,"\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e45,"\u006ed\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e47,"\u006e\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306d,"\u006e\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cd,"\u006e\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff88,"n\u0065\u006f\u0076\u006e\u0077\u0061\u0072\u0072\u006f\u0077":0x2931,"n\u0065\u006f\u0076\u0073\u0065\u0061\u0072\u0072\u006f\u0077":0x292e,"\u006ee\u0073\u0077\u0061\u0072\u0072\u006fw":0x2922,"\u006e\u0065\u0075\u0074\u0065\u0072":0x26b2,"\u006e\u0066\u0073\u0071\u0075\u0061\u0072\u0065":0x338b,"\u006e\u0067\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0999,"\u006eg\u0061\u0064\u0065\u0076\u0061":0x0919,"n\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a99,"n\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a19,"\u006e\u0067\u006f\u006e\u0067\u0075\u0074\u0068\u0061\u0069":0x0e07,"\u006eg\u0074\u0072\u0073\u0069\u006d":0x2275,"\u006eh\u0056\u0076\u0065\u0072\u0074":0x2af5,"\u006eh\u0069\u0072\u0061\u0067\u0061\u006ea":0x3093,"\u006eh\u006f\u006f\u006b\u006c\u0065\u0066t":0x0272,"\u006e\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078":0x0273,"\u006e\u0068\u0070a\u0072":0x2af2,"\u006ei\u0065u\u006e\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x326f,"\u006e\u0069\u0065\u0075\u006e\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x320f,"\u006e\u0069e\u0075\u006e\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3135,"\u006e\u0069\u0065\u0075\u006e\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3261,"\u006e\u0069e\u0075\u006e\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x3136,"n\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3134,"\u006ei\u0065u\u006e\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x3168,"\u006e\u0069e\u0075\u006e\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3201,"\u006ei\u0065u\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3167,"\u006e\u0069\u0065\u0075\u006e\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x3166,"\u006e\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306b,"\u006e\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cb,"\u006e\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff86,"\u006e\u0069k\u0068\u0061\u0068i\u0074\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf899,"\u006e\u0069\u006bh\u0061\u0068\u0069\u0074\u0074\u0068\u0061\u0069":0x0e4d,"\u006e\u0069\u006e\u0065":0x0039,"n\u0069\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ef,"\u006e\u0069\u006e\u0065\u0064\u0065\u0076\u0061":0x096f,"\u006e\u0069\u006ee\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aef,"\u006e\u0069\u006ee\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6f,"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063":0x0669,"\u006e\u0069\u006ee\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3029,"n\u0069n\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e":0x3228,"\u006e\u0069\u006ee\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2089,"\u006e\u0069\u006e\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff19,"\u006e\u0069\u006ee\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf739,"\u006ei\u006e\u0065\u0070\u0061\u0072\u0065n":0x247c,"\u006e\u0069\u006e\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x2490,"n\u0069\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f9,"\u006ei\u006e\u0065\u0072\u006f\u006d\u0061n":0x2178,"\u006e\u0069\u006ee\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2079,"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x2472,"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2486,"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x249a,"\u006e\u0069\u006e\u0065\u0074\u0068\u0061\u0069":0x0e59,"\u006e\u0069\u006f\u0062\u0061\u0072":0x22fe,"\u006e\u0069\u0073":0x22fc,"\u006e\u0069\u0073\u0064":0x22fa,"\u006e\u006a":0x01cc,"\u006ek\u0061\u0074\u0061\u006b\u0061\u006ea":0x30f3,"\u006ek\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff9d,"\u006e\u006c\u0065\u0067\u0072\u0069\u0067\u0068\u0074\u006c\u006f\u006e\u0067":0x019e,"\u006e\u006c\u0065\u0073\u0073\u0067\u0074\u0072":0x2278,"\u006e\u006c\u0065\u0073\u0073\u0073\u0069\u006d":0x2274,"\u006e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e49,"\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4e,"\u006e\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x339a,"\u006e\u006e\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a3,"\u006en\u0061\u0064\u0065\u0076\u0061":0x0923,"n\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa3,"n\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a23,"\u006e\u006e\u006e\u0061\u0064\u0065\u0076\u0061":0x0929,"\u006e\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306e,"\u006e\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ce,"\u006e\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff89,"\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065":0x00a0,"\u006eo\u006e\u0065\u006e\u0074\u0068\u0061i":0x0e13,"\u006e\u006f\u006e\u0075\u0074\u0068\u0061\u0069":0x0e19,"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x0646,"\u006eo\u006fn\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee6,"n\u006f\u006f\u006e\u0067hu\u006en\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfb9f,"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfee7,"\u006e\u006f\u006fn\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfee5,"n\u006f\u006f\u006e\u006aee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfcd2,"\u006e\u006f\u006f\u006eje\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063":0xfc4b,"\u006e\u006fo\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfee8,"n\u006f\u006f\u006e\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfcd5,"\u006e\u006f\u006f\u006eme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063":0xfc4e,"\u006e\u006f\u006f\u006eno\u006f\u006e\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfc8d,"\u006eo\u006f\u006e\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066\u006da\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc8e,"n\u006f\u006f\u006e\u0077\u0069\u0074h\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075r\u0061\u0069\u0073o\u006ca\u0074\u0065\u0064":0xfc4f,"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcd3,"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068e\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xe815,"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcd4,"\u006e\u006fo\u006e\u0077\u0069t\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc8f,"\u006e\u006f\u006f\u006ewi\u0074\u0068\u0079\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfc50,"\u006e\u006f\u006f\u006e\u0077\u0069\u0074\u0068\u007a\u0061\u0069\u006ef\u0069\u006e\u0061\u006c":0xfc70,"\u006e\u006f\u0074\u0061\u0070\u0070\u0072\u006f\u0078e\u0071\u0075\u0061\u006c":0x2247,"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068":0x21ae,"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074":0x219a,"\u006e\u006f\u0074\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074":0x219b,"\u006e\u006f\u0074\u0062\u0061\u0072":0x2224,"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073":0x220c,"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068":0x21ce,"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074":0x2209,"\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x2260,"\u006e\u006f\u0074\u0065\u0078\u0069\u0073\u0074\u0065n\u0074\u0069\u0061\u006c":0x2204,"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s":0x22ae,"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061":0x22af,"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072":0x226f,"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c":0x2271,"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073":0x2279,"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c":0x2a7e,"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c":0x2262,"\u006eo\u0074\u006c\u0065\u0073\u0073":0x226e,"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c":0x2270,"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x2226,"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073":0x2280,"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073":0x22ad,"\u006e\u006f\u0074\u0073\u0069\u006d\u0069\u006c\u0061\u0072":0x2241,"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t":0x2284,"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c":0x2288,"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073":0x2281,"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074":0x2285,"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c":0x2289,"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074":0x22ec,"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074":0x22ed,"\u006eo\u0074t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074":0x22ea,"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x22eb,"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065":0x22ac,"n\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0576,"\u006e\u0070\u0061\u0072\u0065\u006e":0x24a9,"\u006ep\u006f\u006c\u0069\u006e\u0074":0x2a14,"\u006e\u0070\u0072e\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071":0x22e0,"\u006e\u0073\u0069m\u0065":0x2244,"n\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071":0x22e2,"n\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071":0x22e3,"\u006e\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33b1,"\u006e\u0073\u0075c\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071":0x22e1,"\u006es\u0075\u0070\u0065\u0072\u0069\u006fr":0x207f,"\u006e\u0074\u0069\u006c\u0064\u0065":0x00f1,"\u006e\u0075":0x03bd,"\u006e\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x306c,"\u006e\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30cc,"\u006e\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff87,"\u006e\u0075\u006bt\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09bc,"\u006eu\u006b\u0074\u0061\u0064\u0065\u0076a":0x093c,"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0abc,"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a3c,"\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e":0x0023,"\u006e\u0075\u006d\u0062er\u0073\u0069\u0067\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff03,"\u006eu\u006db\u0065\u0072\u0073\u0069\u0067\u006e\u0073\u006d\u0061\u006c\u006c":0xfe5f,"\u006e\u0075m\u0065\u0072\u0061l\u0073\u0069\u0067\u006e\u0067\u0072\u0065\u0065\u006b":0x0374,"n\u0075\u006d\u0065\u0072al\u0073i\u0067\u006e\u006c\u006f\u0077e\u0072\u0067\u0072\u0065\u0065\u006b":0x0375,"\u006e\u0075\u006d\u0065\u0072\u006f":0x2116,"\u006e\u0075\u006e":0x05e0,"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h":0xfb40,"n\u0076\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2902,"\u006e\u0076L\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2904,"\u006e\u0076\u0052i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2903,"\u006ev\u0069\u006e\u0066\u0074\u0079":0x29de,"n\u0076\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x21f7,"\u006ev\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2b39,"\u006e\u0076l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21f9,"\u006e\u0076\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x21f8,"\u006e\u0076r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2914,"\u006e\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b5,"\u006ev\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077":0x2b34,"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c":0x2b3c,"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x2900,"\u006e\u0076\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c":0x2917,"n\u0077\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077":0x2932,"\u006ew\u0073\u0065\u0061\u0072\u0072\u006fw":0x2921,"\u006e\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33bb,"\u006e\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099e,"\u006ey\u0061\u0064\u0065\u0076\u0061":0x091e,"n\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9e,"n\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1e,"\u006f":0x006f,"\u006f\u0061\u0063\u0075\u0074\u0065":0x00f3,"\u006f\u0061\u006e\u0067\u0074\u0068\u0061\u0069":0x0e2d,"\u006f\u0062\u0061\u0072":0x233d,"\u006fb\u0061\u0072\u0072\u0065\u0064":0x0275,"\u006fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04e9,"\u006f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04eb,"\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0993,"\u006fb\u006f\u0070\u006f\u006d\u006f\u0066o":0x311b,"\u006f\u0062\u006f\u0074":0x29ba,"\u006fb\u0072\u0062\u0072\u0061\u006b":0x23e0,"\u006f\u0062\u0072\u0065\u0076\u0065":0x014f,"\u006fb\u0073\u006c\u0061\u0073\u0068":0x29b8,"o\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061":0x0911,"\u006fc\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a91,"o\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061":0x0949,"\u006fc\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac9,"\u006f\u0063\u0061\u0072\u006f\u006e":0x01d2,"\u006fc\u0069\u0072\u0063\u006c\u0065":0x24de,"o\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00f4,"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065":0x1ed1,"\u006f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ed9,"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065":0x1ed3,"o\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065":0x1ed5,"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065":0x1ed7,"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c":0x043e,"\u006fd\u0062\u006c\u0067\u0072\u0061\u0076e":0x020d,"\u006f\u0064\u0065v\u0061":0x0913,"\u006fd\u0069\u0065\u0072\u0065\u0073\u0069s":0x00f6,"\u006f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04e7,"\u006f\u0064\u0069\u0076":0x2a38,"\u006fd\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ecd,"\u006f\u0064\u006ft\u0073\u006c\u0061\u0073\u0068\u0064\u006f\u0074":0x29bc,"\u006f\u0065":0x0153,"\u006f\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x315a,"\u006f\u0067\u006f\u006e\u0065\u006b":0x02db,"\u006fg\u006f\u006e\u0065\u006b\u0063\u006db":0x0328,"\u006f\u0067\u0072\u0061\u0076\u0065":0x00f2,"\u006f\u0067\u0072e\u0061\u0074\u0065\u0072\u0074\u0068\u0061\u006e":0x29c1,"\u006fg\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a93,"\u006f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0585,"\u006fh\u0069\u0072\u0061\u0067\u0061\u006ea":0x304a,"\u006f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ecf,"\u006f\u0068\u006fr\u006e":0x01a1,"\u006f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1edb,"\u006f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ee3,"\u006f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1edd,"\u006f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1edf,"\u006f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1ee1,"\u006f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074":0x0151,"\u006f\u0069":0x01a3,"\u006f\u0069\u0069\u0069\u006e\u0074":0x2230,"\u006f\u0069\u0069n\u0074":0x222f,"\u006f\u0069n\u0074\u0063\u0074r\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x2233,"\u006f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x020f,"\u006fk\u0061\u0074\u0061\u006b\u0061\u006ea":0x30aa,"\u006fk\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff75,"\u006fk\u006f\u0072\u0065\u0061\u006e":0x3157,"\u006fl\u0063\u0072\u006f\u0073\u0073":0x29bb,"\u006fl\u0065\u0068\u0065\u0062\u0072\u0065w":0x05ab,"\u006fl\u0065\u0073\u0073\u0074\u0068\u0061n":0x29c0,"\u006fm\u0061\u0063\u0072\u006f\u006e":0x014d,"\u006f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065":0x1e53,"\u006f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065":0x1e51,"\u006f\u006d\u0064\u0065\u0076\u0061":0x0950,"\u006f\u006d\u0065g\u0061":0x03c9,"\u006f\u006d\u0065\u0067\u0061\u0031":0x03d6,"\u006f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0461,"\u006f\u006de\u0067\u0061\u006ca\u0074\u0069\u006e\u0063\u006c\u006f\u0073\u0065\u0064":0x0277,"\u006fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047b,"\u006fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x047d,"\u006f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073":0x03ce,"\u006f\u006d\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ad0,"\u006fm\u0069\u0063\u0072\u006f\u006e":0x03bf,"\u006f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x03cc,"\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff4f,"\u006f\u006e\u0065":0x0031,"\u006f\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e7,"\u006fn\u0065\u0064\u0065\u0076\u0061":0x0967,"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072":0x2024,"\u006fn\u0065\u0065\u0069\u0067\u0068\u0074h":0x215b,"\u006f\u006e\u0065\u0066\u0069\u0066\u0074\u0068":0x2155,"\u006fn\u0065\u0066\u0069\u0074\u0074\u0065d":0xf6dc,"o\u006e\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae7,"o\u006e\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a67,"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063":0x0661,"\u006fn\u0065\u0068\u0061\u006c\u0066":0x00bd,"o\u006e\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3021,"\u006f\u006e\u0065\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3220,"o\u006e\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2081,"\u006f\u006e\u0065m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff11,"\u006f\u006e\u0065\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f4,"o\u006e\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf731,"\u006f\u006e\u0065\u0070\u0061\u0072\u0065\u006e":0x2474,"\u006fn\u0065\u0070\u0065\u0072\u0069\u006fd":0x2488,"\u006f\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f1,"\u006f\u006e\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072":0x00bc,"\u006f\u006e\u0065\u0072\u006f\u006d\u0061\u006e":0x2170,"\u006f\u006e\u0065\u0073\u0069\u0078\u0074\u0068":0x2159,"o\u006e\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x00b9,"\u006fn\u0065\u0074\u0068\u0061\u0069":0x0e51,"\u006f\u006e\u0065\u0074\u0068\u0069\u0072\u0064":0x2153,"\u006fo\u0067\u006f\u006e\u0065\u006b":0x01eb,"\u006f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e":0x01ed,"\u006f\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a13,"\u006fo\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a4b,"\u006f\u006f\u0070e\u006e":0x0254,"\u006f\u0070\u0061\u0072\u0065\u006e":0x24aa,"\u006f\u0070\u0065r\u0070":0x29b9,"\u006f\u0070\u006c\u0075\u0073\u006c\u0068\u0072\u0069\u006d":0x2a2d,"\u006f\u0070\u006c\u0075\u0073\u0072\u0068\u0072\u0069\u006d":0x2a2e,"\u006f\u0070\u0074\u0069\u006f\u006e":0x2325,"o\u0072\u0064\u0066\u0065\u006d\u0069\u006e\u0069\u006e\u0065":0x00aa,"\u006f\u0072\u0064m\u0061\u0073\u0063\u0075\u006c\u0069\u006e\u0065":0x00ba,"\u006f\u0072\u0069\u0067\u006f\u0066":0x22b6,"\u006f\u0072\u0074\u0068\u006f\u0067\u006f\u006e\u0061\u006c":0x221f,"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065":0x22bb,"\u006f\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061":0x0912,"\u006f\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x094a,"\u006f\u0073\u006c\u0061\u0073\u0068":0x00f8,"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065":0x01ff,"\u006f\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3049,"\u006f\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a9,"\u006f\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6b,"\u006fs\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f0,"\u006f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x047f,"\u006f\u0074\u0069\u006c\u0064\u0065":0x00f5,"o\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e4d,"\u006f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073":0x1e4f,"\u006ft\u0069\u006d\u0065\u0073\u0068\u0061t":0x2a36,"o\u0074\u0069\u006d\u0065\u0073\u006c\u0068\u0072\u0069\u006d":0x2a34,"o\u0074\u0069\u006d\u0065\u0073\u0072\u0068\u0072\u0069\u006d":0x2a35,"\u006f\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3121,"\u006f\u0075\u006ec\u0065":0x2125,"\u006fv\u0065\u0072\u0062\u0072\u0061\u0063e":0x23de,"o\u0076\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074":0x23b4,"\u006f\u0076\u0065\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x20d6,"\u006fv\u0065r\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077":0x20e1,"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065":0x203e,"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0063e\u006e\u0074e\u0072\u006c\u0069\u006e\u0065":0xfe4a,"o\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0063\u006d\u0062":0x0305,"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0064a\u0073\u0068\u0065\u0064":0xfe49,"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0064\u0062\u006c\u0077\u0061\u0076\u0079":0xfe4c,"\u006f\u0076\u0065r\u006c\u0069\u006e\u0065\u0077\u0061\u0076\u0079":0xfe4b,"\u006fv\u0065\u0072\u0070\u0061\u0072\u0065n":0x23dc,"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09cb,"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x094b,"\u006fv\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0acb,"\u0070":0x0070,"\u0070\u0061\u0061m\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x3380,"\u0070\u0061\u0061\u0073\u0065\u006e\u0074\u006f\u0073q\u0075\u0061\u0072\u0065":0x332b,"\u0070a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09aa,"\u0070\u0061\u0063\u0075\u0074\u0065":0x1e55,"\u0070\u0061\u0064\u0065\u0076\u0061":0x092a,"\u0070\u0061\u0067\u0065\u0064\u006f\u0077\u006e":0x21df,"\u0070\u0061\u0067\u0065\u0075\u0070":0x21de,"\u0070\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aaa,"\u0070\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2a,"\u0070\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3071,"\u0070\u0061\u0069\u0079\u0061\u006e\u006e\u006f\u0069\u0074\u0068\u0061\u0069":0x0e2f,"\u0070\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d1,"\u0070a\u006c\u0061\u0074\u0061l\u0069\u007a\u0061\u0074\u0069o\u006ec\u0079r\u0069\u006c\u006c\u0069\u0063\u0063\u006db":0x0484,"\u0070\u0061l\u006f\u0063\u0068k\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04c0,"\u0070\u0061\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x317f,"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h":0x00b6,"\u0070a\u0072a\u0067\u0072\u0061\u0070\u0068s\u0065\u0070a\u0072\u0061\u0074\u006f\u0072":0x2029,"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c":0x2225,"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c\u006f\u0067\u0072\u0061\u006d":0x25b1,"\u0070a\u0072a\u006c\u006c\u0065\u006c\u006fg\u0072\u0061m\u0062\u006c\u0061\u0063\u006b":0x25b0,"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t":0x0028,"p\u0061\u0072\u0065\u006ele\u0066t\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063":0xfd3e,"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0062\u0074":0xf8ed,"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0065\u0078":0xf8ec,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0x208d,"\u0070a\u0072e\u006e\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff08,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c":0xfe59,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0x207d,"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0074\u0070":0xf8eb,"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe35,"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074":0x0029,"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063":0xfd3f,"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0074":0xf8f8,"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0065\u0078":0xf8f7,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0069\u006ef\u0065\u0072\u0069\u006f\u0072":0x208e,"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff09,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c":0xfe5a,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0073\u0075p\u0065\u0072\u0069\u006f\u0072":0x207e,"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0074\u0070":0xf8f6,"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c":0xfe36,"\u0070\u0061\u0072\u0073\u0069\u006d":0x2af3,"p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066":0x2202,"\u0070\u0061\u0072\u0074ia\u006c\u006d\u0065\u0065\u0074\u0063\u006f\u006e\u0074\u0072\u0061\u0063\u0074\u0069o\u006e":0x2aa3,"\u0070\u0061\u0073h\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0599,"\u0070\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x33a9,"\u0070a\u0074\u0061\u0068\u0031\u0031":0x05b7,"p\u0061\u007a\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077":0x05a1,"\u0070b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3106,"\u0070c\u0069\u0072\u0063\u006c\u0065":0x24df,"\u0070\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e57,"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x043f,"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068":0xfb44,"p\u0065\u0065\u007a\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x333b,"\u0070\u0065\u0066\u0069na\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb43,"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c":0x067e,"p\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057a,"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb57,"\u0070\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb58,"\u0070\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307a,"p\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb56,"\u0070e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb59,"\u0070\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xe813,"\u0070\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30da,"p\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04a7,"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e":0x2b20,"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b":0x2b1f,"\u0070\u0065\u0072a\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0xfb4e,"\u0070e\u0072\u0063\u0065\u006e\u0074":0x0025,"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063":0x066a,"\u0070\u0065r\u0063\u0065\u006et\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff05,"\u0070\u0065\u0072c\u0065\u006e\u0074\u0073\u006d\u0061\u006c\u006c":0xfe6a,"\u0070\u0065\u0072\u0069\u006f\u0064":0x002e,"\u0070\u0065\u0072\u0069\u006f\u0064\u0061\u0072\u006de\u006e\u0069\u0061\u006e":0x0589,"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064":0x00b7,"\u0070\u0065r\u0069\u006f\u0064c\u0065\u006e\u0074\u0065\u0072\u0065\u0064\u002e\u0030":0x0097,"\u0070e\u0072i\u006f\u0064\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff61,"\u0070\u0065\u0072\u0069\u006f\u0064\u0069\u006e\u0066e\u0072\u0069\u006f\u0072":0xf6e7,"\u0070e\u0072i\u006f\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff0e,"p\u0065\u0072\u0069\u006f\u0064\u0073\u006d\u0061\u006c\u006c":0xfe52,"\u0070\u0065\u0072\u0069\u006f\u0064\u0073\u0075\u0070e\u0072\u0069\u006f\u0072":0xf6e8,"\u0070\u0065\u0072\u0069sp\u006f\u006d\u0065\u006e\u0069\u0067\u0072\u0065\u0065\u006b\u0063\u006d\u0062":0x0342,"\u0070\u0065\u0072\u0070":0x27c2,"\u0070\u0065\u0072\u0070\u0063\u006f\u0072\u0072\u0065s\u0070\u006f\u006e\u0064":0x2a5e,"\u0070\u0065\u0072\u0070\u0065\u006e\u0064\u0069\u0063\u0075\u006c\u0061\u0072":0x22a5,"\u0070\u0065\u0072p\u0073":0x2ae1,"\u0070\u0065\u0072\u0074\u0065\u006e\u0074\u0068\u006fu\u0073\u0061\u006e\u0064":0x2031,"p\u0065\u0072\u0074\u0068\u006f\u0075\u0073\u0061\u006e\u0064":0x2030,"\u0070\u0065\u0073\u0065\u0074\u0061":0x20a7,"\u0070\u0065\u0073o\u0031":0xf81b,"\u0070\u0066\u0073\u0071\u0075\u0061\u0072\u0065":0x338a,"\u0070\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ab,"\u0070h\u0061\u0064\u0065\u0076\u0061":0x092b,"p\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aab,"p\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2b,"\u0070\u0068\u0069":0x03c6,"\u0070\u0068\u0069\u0031":0x03d5,"p\u0068i\u0065\u0075\u0070\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x327a,"\u0070\u0068\u0069\u0065up\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x321a,"\u0070\u0068\u0069\u0065up\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326c,"\u0070\u0068\u0069\u0065\u0075\u0070\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314d,"\u0070h\u0069e\u0075\u0070\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320c,"\u0070\u0068\u0069\u006c\u0061\u0074\u0069\u006e":0x0278,"p\u0068\u0069\u006e\u0074\u0068\u0075\u0074\u0068\u0061\u0069":0x0e3a,"\u0070\u0068\u006fo\u006b":0x01a5,"p\u0068\u006f\u0070\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e1e,"\u0070\u0068\u006fp\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069":0x0e1c,"\u0070\u0068\u006f\u0073\u0061\u006d\u0070\u0068\u0061o\u0074\u0068\u0061\u0069":0x0e20,"\u0070\u0069":0x03c0,"\u0070i\u0065u\u0070\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3273,"\u0070\u0069\u0065\u0075\u0070\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3213,"\u0070\u0069e\u0075\u0070\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3176,"\u0070\u0069\u0065\u0075\u0070\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3265,"\u0070\u0069\u0065\u0075\u0070\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e":0x3172,"p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3142,"\u0070\u0069e\u0075\u0070\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3205,"p\u0069\u0065\u0075\u0070si\u006fs\u006b\u0069\u0079\u0065\u006fk\u006b\u006f\u0072\u0065\u0061\u006e":0x3174,"\u0070i\u0065u\u0070\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3144,"p\u0069\u0065\u0075\u0070si\u006fs\u0074\u0069\u006b\u0065\u0075t\u006b\u006f\u0072\u0065\u0061\u006e":0x3175,"\u0070i\u0065u\u0070\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e":0x3177,"\u0070\u0069\u0065\u0075\u0070\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x3173,"\u0070\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3074,"\u0070\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d4,"\u0070\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0583,"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069":0x210f,"\u0070\u006c\u0075\u0073":0x002b,"\u0070\u006c\u0075s\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x031f,"\u0070l\u0075\u0073\u0064\u006f\u0074":0x2a25,"\u0070l\u0075\u0073\u0065\u0071\u0071":0x2a72,"\u0070l\u0075\u0073\u0068\u0061\u0074":0x2a23,"\u0070\u006c\u0075s\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x208a,"\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s":0x00b1,"\u0070l\u0075\u0073\u006d\u006f\u0064":0x02d6,"\u0070\u006c\u0075\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff0b,"\u0070l\u0075\u0073\u0073\u0069\u006d":0x2a26,"\u0070l\u0075\u0073\u0073\u006d\u0061\u006cl":0xfe62,"\u0070\u006c\u0075\u0073\u0073\u0075\u0062\u0074\u0077\u006f":0x2a27,"\u0070\u006c\u0075s\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x207a,"\u0070\u006c\u0075\u0073\u0074\u0072\u0069\u0066":0x2a28,"\u0070\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff50,"\u0070\u006d\u0073\u0071\u0075\u0061\u0072\u0065":0x33d8,"\u0070\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x307d,"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u0064\u006f\u0077\u006e\u0077\u0068\u0069t\u0065":0x261f,"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u006c\u0065\u0066\u0074\u0077\u0068\u0069t\u0065":0x261c,"p\u006fi\u006e\u0074\u0069\u006e\u0067\u0069\u006e\u0064e\u0078\u0075\u0070\u0077hi\u0074\u0065":0x261d,"\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0074":0x2a15,"\u0070\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30dd,"\u0070o\u0070\u006c\u0061\u0074\u0068\u0061i":0x0e1b,"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b":0x3012,"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072k\u0066\u0061\u0063\u0065":0x3020,"\u0070\u0070\u0061\u0072\u0065\u006e":0x24ab,"\u0070\u0072\u0065\u0063\u0061\u0070\u0070\u0072\u006f\u0078":0x2ab7,"\u0070\u0072e\u0063\u0065\u0064e\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076":0x2ab9,"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u006e\u006f\u0074\u0073\u006cn\u0074\u0065\u0071\u006c":0x2ab5,"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074":0x22e8,"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073":0x227a,"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c":0x2aaf,"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079":0x227c,"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c":0x227e,"\u0070r\u0065\u0063\u0065\u0071\u0071":0x2ab3,"\u0070r\u0065\u0063\u006e\u0065\u0071":0x2ab1,"\u0070\u0072\u0065s\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e":0x211e,"p\u0072\u0069\u006d\u0065\u0064\u0062\u006c\u006d\u006f\u0064":0x0243,"\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064":0x02b9,"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x2035,"\u0070r\u006f\u0064\u0075\u0063\u0074":0x220f,"\u0070\u0072\u006f\u0066\u0073\u0075\u0072\u0066":0x2313,"\u0070\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u0076\u0065":0x2305,"\u0070\u0072\u006f\u006c\u006f\u006e\u0067\u0065\u0064\u006b\u0061\u006e\u0061":0x30fc,"\u0070r\u006f\u0070\u0065\u006c\u006c\u006fr":0x2318,"\u0070\u0072\u006fp\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074":0x2282,"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074":0x2283,"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006f\u006e":0x2237,"\u0070\u0072\u006fp\u006f\u0072\u0074\u0069\u006f\u006e\u0061\u006c":0x221d,"\u0070\u0072\u0075\u0072\u0065\u006c":0x22b0,"\u0070\u0073\u0069":0x03c8,"p\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0471,"\u0070s\u0069\u006c\u0069\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062":0x0486,"\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065":0x33b0,"\u0070\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3077,"\u0070\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30d7,"\u0070\u0075\u006c\u006c\u0062\u0061\u0063\u006b":0x27d3,"\u0070\u0075n\u0063\u0074\u0075a\u0074\u0069\u006f\u006e\u0073\u0070\u0061\u0063\u0065":0x2008,"\u0070u\u0073\u0068\u006f\u0075\u0074":0x27d4,"\u0070\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33b4,"\u0070\u0077\u0073\u0071\u0075\u0061\u0072\u0065":0x33ba,"\u0071":0x0071,"\u0071\u0061\u0064\u0065\u0076\u0061":0x0958,"q\u0061\u0064\u006d\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a8,"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfed6,"\u0071\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed7,"q\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfed5,"\u0071a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfed8,"\u0071\u0061r\u006e\u0065\u0079p\u0061\u0072\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x059f,"\u0071b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3111,"\u0071c\u0069\u0072\u0063\u006c\u0065":0x24e0,"\u0071\u0068\u006fo\u006b":0x02a0,"\u0071\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff51,"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h":0xfb47,"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077":0x05e7,"\u0071\u0070\u0061\u0072\u0065\u006e":0x24ac,"\u0071\u0070\u0072\u0069\u006d\u0065":0x2057,"q\u0075\u0061\u0072\u0074\u0065\u0072\u006e\u006f\u0074\u0065":0x2669,"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077":0x05bb,"\u0071u\u0065\u0073\u0074\u0065\u0071":0x225f,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e":0x003f,"\u0071\u0075e\u0073\u0074\u0069o\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x055e,"\u0071\u0075\u0065s\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006e":0x00bf,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006es\u006d\u0061\u006c\u006c":0xf7bf,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0067\u0072\u0065\u0065\u006b":0x037e,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff1f,"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0073\u006d\u0061\u006c\u006c":0xf73f,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c":0x0022,"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u0062\u0061\u0073\u0065":0x201e,"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u006c\u0065\u0066\u0074":0x201c,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff02,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0070\u0072\u0069\u006d\u0065":0x301e,"q\u0075\u006f\u0074\u0065db\u006cp\u0072\u0069\u006d\u0065\u0072e\u0076\u0065\u0072\u0073\u0065\u0064":0x301d,"q\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0065\u0076":0x201f,"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074":0x201d,"\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t":0x2018,"\u0071\u0075\u006ft\u0065\u006c\u0065\u0066\u0074\u006d\u006f\u0064":0x0244,"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064":0x201b,"\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074":0x2019,"q\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u006e":0x0149,"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u0062\u0061\u0073\u0065":0x201a,"q\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065":0x0027,"q\u0075o\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065m\u006f\u006e\u006f\u0073pa\u0063\u0065":0xff07,"\u0072":0x0072,"\u0072\u0041\u006e\u0067\u006c\u0065":0x27eb,"\u0072\u0042\u0072\u0061\u0063\u0065":0x2984,"\u0072\u0050\u0061\u0072\u0065\u006e":0x2986,"\u0072\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057c,"\u0072a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b0,"\u0072\u0061\u0063\u0075\u0074\u0065":0x0155,"\u0072\u0061\u0064\u0065\u0076\u0061":0x0930,"\u0072a\u0064\u0069\u0063\u0061\u006c":0x221a,"\u0072a\u0064\u0069\u0063\u0061\u006c\u0065x":0xf8e5,"\u0072\u0061\u0064\u006f\u0076\u0065\u0072\u0073\u0073q\u0075\u0061\u0072\u0065":0x33ae,"r\u0061\u0064\u006f\u0076er\u0073s\u0071\u0075\u0061\u0072\u0065d\u0073\u0071\u0075\u0061\u0072\u0065":0x33af,"\u0072a\u0064\u0073\u0071\u0075\u0061\u0072e":0x33ad,"\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab0,"\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a30,"\u0072\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3089,"\u0072\u0061\u0069\u0073\u0065\u0064":0x024d,"\u0072\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e9,"\u0072\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff97,"\u0072\u0061\u006c\u006fwe\u0072\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061l\u0069":0x09f1,"\u0072\u0061\u006did\u0064\u006c\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f0,"\u0072\u0061\u006d\u0073\u0068\u006f\u0072\u006e":0x0264,"\u0072a\u006e\u0067\u006c\u0065\u0064\u006ft":0x2992,"r\u0061\u006e\u0067\u006ced\u006fw\u006e\u007a\u0069\u0067\u007aa\u0067\u0061\u0072\u0072\u006f\u0077":0x237c,"\u0072\u0061\u0074i\u006f":0x2236,"\u0072\u0061\u0079\u0061\u006c\u0065\u0066\u006c\u0061\u006d":0xe816,"\u0072\u0062\u0061\u0067":0x27c6,"\u0072\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b":0x2998,"\u0072b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3116,"\u0072\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064":0x23ad,"\u0072b\u0072\u0061\u0063\u0065\u006d\u0069d":0x23ac,"\u0072\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064":0x23ab,"\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23a5,"\u0072\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064":0x23a6,"\u0072\u0062\u0072a\u0063\u006b\u006c\u0072\u0074\u0069\u0063\u006b":0x298e,"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072":0x298c,"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064":0x23a4,"\u0072\u0062\u0072a\u0063\u006b\u0075\u0072\u0074\u0069\u0063\u006b":0x2990,"\u0072b\u0072\u0062\u0072\u0061\u006b":0x2773,"\u0072\u0063\u0061\u0072\u006f\u006e":0x0159,"\u0072\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0157,"\u0072c\u0065\u0064\u0069\u006c\u006c\u00611":0xf81f,"\u0072c\u0069\u0072\u0063\u006c\u0065":0x24e1,"r\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0xf832,"r\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065":0x29fd,"\u0072d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0211,"\u0072\u0064\u0069a\u0067\u006f\u0076\u0066\u0064\u0069\u0061\u0067":0x292b,"\u0072\u0064\u0069\u0061\u0067\u006f\u0076\u0073\u0065a\u0072\u0072\u006f\u0077":0x2930,"\u0072\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e59,"\u0072d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e5b,"\u0072d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e":0x1e5d,"r\u0065\u0063\u006f\u0072\u0064\u0072\u0069\u0067\u0068\u0074":0x2117,"\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u006d\u0061\u0072\u006b":0x203b,"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074":0x2286,"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074":0x2287,"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064":0x00ae,"\u0072\u0065\u0067i\u0073\u0074\u0065\u0072\u0073\u0061\u006e\u0073":0xf8e8,"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0073\u0065\u0072\u0069\u0066":0xf6da,"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c":0x0631,"r\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0580,"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeae,"\u0072\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308c,"r\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfead,"\u0072\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ec,"\u0072\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9a,"\u0072\u0065s\u0068\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb48,"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q":0x05e8,"\u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065":0x211f,"\u0072\u0065\u0076\u0061\u006e\u0067\u006c\u0065":0x29a3,"\u0072\u0065\u0076a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072":0x29a5,"\u0072\u0065\u0076\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c":0x22cd,"r\u0065\u0076\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074":0x29b0,"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065":0x223d,"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077":0x0597,"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074":0x2310,"\u0072e\u0076\u006e\u006d\u0069\u0064":0x2aee,"\u0072\u0066\u0062\u006f\u0077\u0074\u0069\u0065":0x29d2,"\u0072f\u0069\u0073\u0068\u0068\u006f\u006fk":0x027e,"\u0072\u0066\u0069\u0073\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076e\u0072\u0073\u0065\u0064":0x027f,"\u0072f\u0074\u0069\u006d\u0065\u0073":0x29d5,"\u0072\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09dd,"\u0072h\u0061\u0064\u0065\u0076\u0061":0x095d,"\u0072\u0068\u006f":0x03c1,"\u0072\u0068\u006fo\u006b":0x027d,"r\u0068\u006f\u006f\u006b\u0074\u0075\u0072\u006e\u0065\u0064":0x027b,"\u0072\u0068\u006f\u006fkt\u0075\u0072\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02b5,"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b":0x03f1,"\u0072\u0068\u006f\u0074\u0069\u0063\u0068\u006f\u006f\u006b\u006d\u006f\u0064":0x02de,"\u0072i\u0065u\u006c\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3271,"\u0072\u0069\u0065\u0075\u006c\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3211,"\u0072\u0069\u0065\u0075\u006c\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3263,"\u0072\u0069e\u0075\u006c\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x3140,"\u0072\u0069\u0065\u0075\u006c\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e":0x313a,"r\u0069\u0065\u0075\u006cki\u0079e\u006f\u006b\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e":0x3169,"r\u0069\u0065\u0075\u006c\u006b\u006f\u0072\u0065\u0061\u006e":0x3139,"\u0072\u0069e\u0075\u006c\u006di\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e":0x313b,"\u0072i\u0065u\u006c\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x316c,"\u0072\u0069e\u0075\u006c\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3203,"\u0072i\u0065u\u006c\u0070\u0068\u0069\u0065u\u0070\u0068k\u006f\u0072\u0065\u0061\u006e":0x313f,"\u0072\u0069e\u0075\u006c\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x313c,"r\u0069e\u0075\u006c\u0070\u0069\u0065\u0075\u0070\u0073i\u006f\u0073\u006b\u006fre\u0061\u006e":0x316b,"\u0072i\u0065u\u006c\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x313d,"\u0072i\u0065u\u006c\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e":0x313e,"\u0072\u0069\u0065\u0075\u006c\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x316a,"\u0072\u0069\u0065\u0075ly\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065a\u006e":0x316d,"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006ce\u006d\u0064\u006f\u0074":0x299d,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0065":0x231d,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0077":0x231c,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0065":0x231f,"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0071\u0072":0x299c,"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0077":0x231e,"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078":0x2975,"r\u0069g\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062a\u0063\u006b\u0061\u0070pr\u006f\u0078":0x2b48,"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0062\u0073i\u006d\u0069\u006c\u0061\u0072":0x2b4c,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0064\u0069a\u006d\u006f\u006e\u0064":0x291e,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0067\u0074\u0072":0x2b43,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u006f\u006eo\u0070\u006c\u0075\u0073":0x27f4,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006fw\u0070\u006c\u0075\u0073":0x2945,"\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006fr\u0074\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2942,"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0069m\u0069\u006c\u0061\u0072":0x2974,"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0073\u0075\u0070\u0073\u0065\u0074":0x2b44,"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0074\u0072i\u0061\u006e\u0067\u006c\u0065":0x21fe,"r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0078":0x2947,"\u0072\u0069\u0067h\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x290d,"\u0072\u0069g\u0068\u0074\u0063u\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077":0x2933,"\u0072\u0069\u0067h\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c":0x291c,"\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077":0x2911,"r\u0069g\u0068\u0074\u0064\u006f\u0077\u006e\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077":0x2937,"\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297d,"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006ea\u0063\u0063\u0065\u006e\u0074":0x20d1,"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u0062\u0061\u0072":0x2957,"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070\u0064\u006f\u0077\u006e":0x2964,"\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006eu\u0070\u0062\u0061\u0072":0x2953,"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006eu\u0070\u0064\u0061\u0073\u0068":0x296c,"\u0072\u0069\u0067\u0068\u0074\u0069\u006d\u0070\u006c\u0079":0x2970,"r\u0069\u0067\u0068\u0074le\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e":0x2969,"\u0072\u0069\u0067\u0068tl\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070":0x2968,"\u0072i\u0067\u0068\u0074\u006d\u006f\u006fn":0x263d,"\u0072\u0069\u0067\u0068\u0074\u006f\u0075\u0074\u0065r\u006a\u006f\u0069\u006e":0x27d6,"\u0072\u0069\u0067\u0068\u0074\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e":0x2b54,"\u0072i\u0067h\u0074\u0070\u0065\u006e\u0074a\u0067\u006fn\u0062\u006c\u0061\u0063\u006b":0x2b53,"\u0072\u0069g\u0068\u0074\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073":0x21c9,"\u0072\u0069\u0067\u0068\u0074\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x0319,"\u0072i\u0067\u0068\u0074\u0074\u0061\u0069l":0x291a,"\u0072\u0069g\u0068\u0074\u0074h\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073":0x21f6,"\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x22bf,"\u0072\u0069\u0067\u0068\u0074\u0077\u0061\u0076\u0065a\u0072\u0072\u006f\u0077":0x219d,"\u0072\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308a,"\u0072\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ea,"\u0072\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff98,"\u0072\u0069\u006e\u0067":0x02da,"\u0072\u0069\u006eg\u0031":0xf007,"\u0072\u0069\u006eg\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0325,"\u0072i\u006e\u0067\u0063\u006d\u0062":0x030a,"\u0072\u0069\u006e\u0067\u0066\u0069\u0074\u0074\u0065\u0064":0xd80d,"\u0072\u0069\u006eg\u0068\u0061\u006c\u0066\u006c\u0065\u0066\u0074":0x02bf,"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0061\u0072\u006d\u0065ni\u0061\u006e":0x0559,"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0062\u0065\u006c\u006fwc\u006d\u0062":0x031c,"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0063\u0065\u006e\u0074er\u0065\u0064":0x02d3,"\u0072\u0069\u006e\u0067\u0068\u0061\u006c\u0066\u0072\u0069\u0067\u0068\u0074":0x02be,"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0062e\u006c\u006f\u0077\u0063\u006d\u0062":0x0339,"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0063e\u006e\u0074\u0065\u0072\u0065\u0064":0x02d2,"r\u0069\u006e\u0067\u0069\u006e\u0065\u0071\u0075\u0061\u006c":0x2256,"\u0072\u0069\u006e\u0067le\u0066\u0074\u0068\u0061\u006c\u0066\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x028f,"\u0072\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066s\u0075\u0070\u0065\u0072":0x0248,"\u0072\u0069\u006e\u0067\u0070\u006c\u0075\u0073":0x2a22,"r\u0069n\u0067\u0072\u0069\u0067\u0068\u0074\u0068\u0061l\u0066\u0073\u0075\u0062no\u0073\u0070":0x02ac,"\u0072i\u006eg\u0072\u0069\u0067\u0068\u0074h\u0061\u006cf\u0073\u0075\u0070\u0065\u0072":0x0247,"\u0072\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0213,"\u0072\u0069\u0074\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065":0x3351,"\u0072\u006c\u0065":0x202b,"\u0072\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e5f,"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067":0x027c,"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064":0x027a,"\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff52,"\u0072\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065":0x23b1,"\u0072\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308d,"\u0072\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ed,"\u0072\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9b,"\u0072o\u0072\u0075\u0061\u0074\u0068\u0061i":0x0e23,"\u0072\u0070\u0061\u0072\u0065\u006e":0x24ad,"\u0072\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x239f,"\u0072p\u0061\u0072\u0065\u006e\u0067\u0074r":0x2994,"\u0072\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064":0x23a0,"\u0072\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064":0x239e,"\u0072\u0070\u0070\u006f\u006c\u0069\u006e\u0074":0x2a12,"\u0072\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09dc,"\u0072r\u0061\u0064\u0065\u0076\u0061":0x0931,"r\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5c,"\u0072r\u0061\u006e\u0067\u006c\u0065":0x298a,"\u0072\u0072\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063":0x0691,"\u0072r\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb8d,"\u0072\u0072\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073":0x2988,"\u0072\u0072v\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e0,"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x0960,"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0067\u0075\u006aa\u0072\u0061\u0074\u0069":0x0ae0,"\u0072r\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci":0x09c4,"\u0072\u0072\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061":0x0944,"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006fw\u0065\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061r\u0061\u0074\u0069":0x0ac4,"\u0072s\u006f\u006c\u0062\u0061\u0072":0x29f7,"\u0072s\u0071\u0068\u006f\u006f\u006b":0x2ace,"\u0072\u0073\u0075\u0062":0x2a65,"\u0072\u0073\u0075\u0070\u0065\u0072":0x023c,"\u0072s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f1,"\u0072t\u0062\u006c\u006f\u0063\u006b":0x2590,"\u0072\u0074\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b":0x2595,"\u0072\u0074\u0072\u0069\u006c\u0074\u0072\u0069":0x29ce,"\u0072t\u0075\u0072\u006e\u0065\u0064":0x0279,"\u0072t\u0075r\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x02b4,"\u0072\u0074u\u0072\u006e\u0072t\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072":0x023e,"\u0072\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072":0x023d,"\u0072\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308b,"\u0072\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30eb,"\u0072\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff99,"r\u0075\u006c\u0065\u0064\u0065\u006c\u0061\u0079\u0065\u0064":0x29f4,"\u0072\u0075\u0070e\u0065":0x20a8,"\u0072\u0075p\u0065\u0065\u006da\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f2,"\u0072\u0075p\u0065\u0065\u0073i\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f3,"\u0072\u0075\u0070\u0069\u0061\u0068":0xf6dd,"\u0072\u0075\u0074\u0068\u0061\u0069":0x0e24,"\u0072v\u0062\u006f\u0078\u006c\u0069\u006ee":0x23b9,"\u0072v\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x098b,"\u0072\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061":0x090b,"\u0072\u0076o\u0063\u0061\u006ci\u0063\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a8b,"\u0072v\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09c3,"r\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061":0x0943,"\u0072v\u006f\u0063\u0061\u006ci\u0063\u0076\u006f\u0077\u0065l\u0073i\u0067n\u0067\u0075\u006a\u0061\u0072\u0061\u0074i":0x0ac3,"\u0072\u0076\u007a\u0069\u0067\u007a\u0061\u0067":0x29d9,"\u0073":0x0073,"\u0073a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09b8,"\u0073\u0061\u0063\u0075\u0074\u0065":0x015b,"\u0073a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e65,"\u0073\u0061\u0064\u0065\u0076\u0061":0x0938,"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeba,"\u0073\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfebb,"s\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeb9,"\u0073a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfebc,"\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab8,"\u0073\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a38,"\u0073\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3055,"\u0073\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b5,"\u0073\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7b,"\u0073\u0061\u006cl\u0061\u006c\u006c\u0061h\u006f\u0075\u0061\u006c\u0061\u0079\u0068e\u0077\u0061\u0073\u0061\u006c\u006c\u0061\u006d\u0061\u0072\u0061\u0062\u0069\u0063":0xfdfa,"\u0073\u0061\u006d\u0065\u006b\u0068":0x05e1,"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077":0xfb41,"\u0073\u0061\u006e\u0073\u004c\u006d\u0069\u0072\u0072\u006f\u0072\u0065\u0064":0x2143,"s\u0061\u006e\u0073\u004c\u0074\u0075\u0072\u006e\u0065\u0064":0x2142,"\u0073\u0061\u0072\u0061\u0061\u0061\u0074\u0068\u0061\u0069":0x0e32,"\u0073\u0061\u0072\u0061\u0061\u0065\u0074\u0068\u0061\u0069":0x0e41,"\u0073a\u0072a\u0061\u0069\u006d\u0061\u0069m\u0061\u006ca\u0069\u0074\u0068\u0061\u0069":0x0e44,"\u0073\u0061\u0072\u0061\u0061\u0069\u006d\u0061\u0069\u006d\u0075\u0061n\u0074\u0068\u0061\u0069":0x0e43,"\u0073\u0061\u0072\u0061\u0061\u006d\u0074\u0068\u0061\u0069":0x0e33,"\u0073a\u0072\u0061\u0061\u0074\u0068\u0061i":0x0e30,"\u0073a\u0072\u0061\u0065\u0074\u0068\u0061i":0x0e40,"\u0073\u0061\u0072\u0061\u0069\u0069\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf886,"\u0073\u0061\u0072\u0061\u0069\u0069\u0074\u0068\u0061\u0069":0x0e35,"\u0073\u0061\u0072\u0061\u0069\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf885,"\u0073a\u0072\u0061\u0069\u0074\u0068\u0061i":0x0e34,"\u0073a\u0072\u0061\u006f\u0074\u0068\u0061i":0x0e42,"\u0073a\u0072a\u0075\u0065\u0065\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf888,"s\u0061\u0072\u0061\u0075\u0065\u0065\u0074\u0068\u0061\u0069":0x0e37,"\u0073\u0061\u0072\u0061\u0075\u0065\u006c\u0065\u0066t\u0074\u0068\u0061\u0069":0xf887,"\u0073\u0061\u0072\u0061\u0075\u0065\u0074\u0068\u0061\u0069":0x0e36,"\u0073a\u0072\u0061\u0075\u0074\u0068\u0061i":0x0e38,"\u0073\u0061\u0072\u0061\u0075\u0075\u0074\u0068\u0061\u0069":0x0e39,"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s":0x22a8,"\u0073b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3119,"\u0073\u0063\u0061\u0072\u006f\u006e":0x0161,"\u0073c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e67,"\u0073\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x015f,"\u0073c\u0065\u0064\u0069\u006c\u006c\u00611":0xf817,"\u0073\u0063\u0068w\u0061":0x0259,"\u0073\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04d9,"s\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04db,"\u0073c\u0068\u0077\u0061\u0068\u006f\u006fk":0x025a,"\u0073c\u0069\u0072\u0063\u006c\u0065":0x24e2,"s\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x015d,"\u0073\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074":0x0219,"\u0073\u0063\u0070\u006f\u006c\u0069\u006e\u0074":0x2a13,"\u0073c\u0072\u0075\u0070\u006c\u0065":0x2108,"\u0073\u0063\u0075\u0072\u0065\u006c":0x22b1,"\u0073\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e61,"\u0073d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e63,"\u0073d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074":0x1e69,"\u0073e\u0061g\u0075\u006c\u006c\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x033c,"\u0073\u0065\u0061\u0067\u0075\u006c\u006c\u0073\u0075b\u006e\u006f\u0073\u0070":0x02af,"\u0073\u0065\u0063\u006f\u006e\u0064":0x2033,"\u0073\u0065\u0063\u006f\u006e\u0064\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065":0x02ca,"\u0073e\u0063\u0074\u0069\u006f\u006e":0x00a7,"\u0073e\u0065n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb2,"\u0073\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeb3,"\u0073\u0065\u0065n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeb1,"\u0073\u0065e\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb4,"\u0073\u0065\u0065\u006ewi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfcb0,"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077":0x05b6,"\u0073\u0065\u0067\u006f\u006c\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0592,"s\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057d,"\u0073\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305b,"\u0073\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bb,"\u0073\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7e,"\u0073e\u006d\u0069\u0063\u006f\u006c\u006fn":0x003b,"\u0073e\u006di\u0063\u006f\u006c\u006f\u006em\u006f\u006eo\u0073\u0070\u0061\u0063\u0065":0xff1b,"\u0073\u0065\u006d\u0069\u0063\u006f\u006c\u006f\u006es\u006d\u0061\u006c\u006c":0xfe54,"\u0073e\u006di\u0076\u006f\u0069\u0063\u0065d\u006d\u0061r\u006b\u006b\u0061\u006e\u0061":0x309c,"s\u0065\u006d\u0069\u0076\u006f\u0069c\u0065\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006ea\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068":0xff9f,"s\u0065\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065":0x3322,"s\u0065\u006e\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3323,"s\u0065\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077":0x292d,"s\u0065\u0072\u0076\u0069\u0063\u0065\u006d\u0061\u0072\u006b":0x2120,"\u0073\u0065\u0074\u006d\u0069\u006e\u0075\u0073":0x29f5,"\u0073\u0065\u0076e\u006e":0x0037,"\u0073\u0065\u0076e\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ed,"\u0073e\u0076\u0065\u006e\u0064\u0065\u0076a":0x096d,"\u0073\u0065\u0076e\u006e\u0065\u0069\u0067\u0068\u0074\u0068\u0073":0x215e,"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aed,"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6d,"\u0073\u0065\u0076\u0065\u006e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3027,"s\u0065\u0076\u0065\u006eid\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e":0x3226,"\u0073\u0065\u0076\u0065\u006e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2087,"\u0073\u0065\u0076\u0065\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff17,"\u0073\u0065\u0076\u0065\u006e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf737,"\u0073\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x247a,"s\u0065\u0076\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x248e,"\u0073\u0065\u0076e\u006e\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f7,"\u0073\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2176,"\u0073\u0065\u0076\u0065\u006e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2077,"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x2470,"\u0073\u0065\u0076\u0065\u006e\u0074\u0065\u0065\u006ep\u0061\u0072\u0065\u006e":0x2484,"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2498,"\u0073e\u0076\u0065\u006e\u0074\u0068\u0061i":0x0e57,"s\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0577,"\u0073\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09b6,"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x0651,"\u0073\u0068\u0061\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061\u0061r\u0061\u0062\u0069\u0063":0xfc61,"s\u0068a\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063":0xfc5e,"\u0073\u0068\u0061\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061\u0061r\u0061\u0062\u0069\u0063":0xfc60,"\u0073\u0068a\u0064\u0064\u0061h\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c":0xfe7d,"\u0073\u0068\u0061\u0064\u0064\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064":0xfe7c,"\u0073\u0068\u0061\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061\u0061r\u0061\u0062\u0069\u0063":0xfc62,"s\u0068a\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063":0xfc5f,"\u0073h\u0061\u0064\u0064\u0061\u006c\u006fw":0xe825,"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077":0xe829,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0064\u0061\u006d\u006da\u006d\u0065\u0064\u0069\u0061\u006c":0xfcf3,"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077":0xe82b,"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0066\u0061t\u0068\u0061\u006c\u006f\u0077":0xe828,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u006d\u0065\u0064\u0069\u0061\u006c":0xfcf2,"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066a\u0074\u0068\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xe818,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u0074\u0061\u006e\u006c\u006f\u0077":0xe82a,"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077":0xe82c,"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u006b\u0061\u0073\u0072a\u006d\u0065\u0064\u0069\u0061\u006c":0xfcf4,"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077":0xe82d,"\u0073\u0068\u0061d\u0065":0x2592,"\u0073\u0068\u0061\u0064\u0065\u0031":0xf822,"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074":0x2591,"\u0073h\u0061\u0064\u0065\u0076\u0061":0x0936,"s\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab6,"s\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a36,"\u0073\u0068a\u006c\u0073\u0068e\u006c\u0065\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x0593,"\u0073\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3115,"\u0073\u0068e\u0065\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb6,"\u0073h\u0065e\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfeb7,"\u0073\u0068\u0065\u0065\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeb5,"\u0073\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeb8,"s\u0068e\u0065\u006e\u0077\u0069\u0074\u0068\u006d\u0065e\u006d\u0069\u006e\u0069ti\u0061\u006c":0xfd30,"\u0073\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063":0x03e3,"\u0073\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04bb,"\u0073h\u0069\u0066\u0074\u006c\u0065\u0066t":0x21b0,"\u0073\u0068\u0069\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x21b1,"s\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063":0x03ed,"\u0073\u0068\u0069\u006e":0x05e9,"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068":0xfb49,"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074":0xfb2c,"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077":0xfb2d,"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05c1,"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074":0xfb2a,"\u0073\u0068\u006fo\u006b":0x0282,"\u0073\u0068\u006f\u0072\u0074\u0064\u006f\u0077\u006e\u0074\u0061\u0063\u006b":0x2adf,"\u0073\u0068\u006f\u0072\u0074\u006c\u0065\u0066\u0074\u0074\u0061\u0063\u006b":0x2ade,"\u0073h\u006f\u0072\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2944,"s\u0068\u006f\u0072\u0074\u0075\u0070\u0074\u0061\u0063\u006b":0x2ae0,"\u0073h\u0075\u0066\u0066\u006c\u0065":0x29e2,"\u0073\u0069\u0067m\u0061":0x03c3,"\u0073\u0069\u0067\u006d\u0061\u0031":0x03c2,"\u0073\u0069\u0067\u006dal\u0075\u006e\u0061\u0074\u0065\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065e\u006b":0x03f2,"\u0073\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3057,"\u0073\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b7,"\u0073\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7c,"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077":0x05bd,"\u0073\u0069\u006dg\u0045":0x2aa0,"\u0073\u0069\u006d\u0067\u0074\u0072":0x2a9e,"\u0073i\u006d\u0069\u006c\u0061\u0072":0x223c,"\u0073\u0069m\u0069\u006c\u0061r\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077":0x2b49,"\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077":0x2972,"\u0073\u0069\u006dl\u0045":0x2a9f,"\u0073i\u006d\u006c\u0065\u0073\u0073":0x2a9d,"s\u0069\u006d\u006d\u0069\u006e\u0075\u0073\u0073\u0069\u006d":0x2a6c,"\u0073i\u006d\u006e\u0065\u0071\u0071":0x2246,"\u0073i\u006d\u0070\u006c\u0075\u0073":0x2a24,"\u0073\u0069\u006d\u0072\u0064\u006f\u0074\u0073":0x2a6b,"\u0073\u0069\u006e\u0065\u0077\u0061\u0076\u0065":0x223f,"\u0073\u0069\u006f\u0073\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e":0x3274,"\u0073\u0069o\u0073\u0061\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3214,"\u0073i\u006fs\u0063\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x317e,"\u0073\u0069o\u0073\u0063\u0069r\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3266,"\u0073\u0069o\u0073\u006b\u0069y\u0065\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e":0x317a,"\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3145,"\u0073i\u006fs\u006e\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x317b,"\u0073i\u006fs\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3206,"\u0073i\u006fs\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x317d,"\u0073\u0069o\u0073\u0074\u0069k\u0065\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e":0x317c,"\u0073\u0069\u0078":0x0036,"\u0073\u0069\u0078\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09ec,"\u0073i\u0078\u0064\u0065\u0076\u0061":0x096c,"s\u0069\u0078\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aec,"s\u0069\u0078\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a6c,"s\u0069\u0078\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3026,"\u0073\u0069\u0078\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3225,"s\u0069\u0078\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2086,"\u0073\u0069\u0078m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff16,"s\u0069\u0078\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf736,"\u0073\u0069\u0078\u0070\u0061\u0072\u0065\u006e":0x2479,"\u0073\u0069\u0078\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065":0x2006,"\u0073i\u0078\u0070\u0065\u0072\u0069\u006fd":0x248d,"\u0073\u0069\u0078\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f6,"\u0073\u0069\u0078\u0072\u006f\u006d\u0061\u006e":0x2175,"s\u0069\u0078\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2076,"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x246f,"\u0073\u0069\u0078\u0074\u0065\u0065n\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079\u0064\u0065\u006e\u006f\u006di\u006e\u0061\u0074\u006f\u0072\u0062\u0065n\u0067\u0061\u006c\u0069":0x09f9,"\u0073\u0069\u0078t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2483,"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064":0x2497,"\u0073i\u0078\u0074\u0068\u0061\u0069":0x0e56,"\u0073\u006c\u0061s\u0068":0x002f,"\u0073\u006c\u0061\u0073\u0068\u006c\u006f\u006e\u0067\u006e\u006f\u0073\u0070":0x02ab,"\u0073\u006c\u0061\u0073\u0068\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff0f,"\u0073\u006c\u0061\u0073\u0068\u0073\u0068\u006f\u0072t\u006e\u006f\u0073\u0070":0x02aa,"\u0073\u006c\u006f\u006e\u0067\u0064\u006f\u0074\u0061c\u0063\u0065\u006e\u0074":0x1e9b,"\u0073l\u0075\u0072\u0061\u0062\u006f\u0076e":0x2322,"\u0073\u006d\u0061\u006clb\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065f\u0074":0x25c2,"\u0073\u006d\u0061ll\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x25b8,"\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0067\u0068m\u0061\u0064\u0064\u0061":0x06e4,"\u0073m\u0061\u006c\u006c\u0069\u006e":0x220a,"\u0073m\u0061\u006c\u006c\u006e\u0069":0x220d,"\u0073\u006d\u0061\u0073\u0068\u0074\u0069\u006d\u0065\u0073":0x2a33,"\u0073\u006d\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x2b29,"\u0073\u006d\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b2a,"\u0073\u006d\u0065\u0070\u0061\u0072\u0073\u006c":0x29e4,"\u0073\u006d\u0069l\u0065":0x2323,"\u0073m\u0069\u006c\u0065\u0066\u0061\u0063e":0x263a,"\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff53,"\u0073\u006d\u0074":0x2aaa,"\u0073\u006d\u0074\u0065":0x2aac,"s\u006d\u0077\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072":0x2b52,"\u0073\u006d\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065":0x2b2b,"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077":0x05c3,"\u0073\u006f\u0066\u0074\u0068\u0079\u0070\u0068\u0065\u006e":0x00ad,"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x044c,"\u0073\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305d,"\u0073\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bd,"\u0073\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7f,"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062":0x0338,"\u0073\u006f\u006c\u0069du\u0073\u0073\u0068\u006f\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063m\u0062":0x0337,"\u0073\u006f\u0072\u0075\u0073\u0069\u0074\u0068\u0061\u0069":0x0e29,"\u0073\u006f\u0073\u0061\u006c\u0061\u0074\u0068\u0061\u0069":0x0e28,"\u0073\u006f\u0073\u006f\u0074\u0068\u0061\u0069":0x0e0b,"\u0073o\u0073\u0075\u0061\u0074\u0068\u0061i":0x0e2a,"\u0073\u0070\u0061c\u0065":0x0020,"\u0073\u0070\u0061d\u0065":0x2660,"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065":0x2664,"\u0073\u0070\u0061\u0072\u0065\u006e":0x24ae,"\u0073\u0070\u0068\u0065\u0072\u0069\u0063\u0061\u006ca\u006e\u0067\u006c\u0065":0x2222,"\u0073\u0070h\u0065\u0072\u0069c\u0061\u006c\u0061\u006e\u0067\u006c\u0065\u0075\u0070":0x29a1,"\u0073\u0071\u0069n\u0074":0x2a16,"\u0073q\u006c\u006f\u007a\u0065\u006e\u0067e":0x2311,"\u0073\u0071\u0072\u0074\u0062\u006f\u0074\u0074\u006f\u006d":0x23b7,"s\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071":0x22e4,"s\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071":0x22e5,"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x033b,"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u006f\u0074b\u006c\u0061\u0063\u006b":0x2b13,"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u0063":0x33c4,"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u006d":0x339d,"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c":0x25a9,"\u0073q\u0075\u0061\u0072\u0065\u0064\u006ft":0x22a1,"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c":0x25a4,"s\u0071\u0075\u0061\u0072\u0065\u0069\u006d\u0061\u0067\u0065":0x228f,"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u0067":0x338f,"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u006d":0x339e,"\u0073q\u0075a\u0072\u0065\u006b\u006d\u0063\u0061\u0070\u0069\u0074\u0061\u006c":0x33ce,"\u0073q\u0075a\u0072\u0065\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b":0x25e7,"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006c\u0062\u006c\u0061\u0063\u006b":0x2b15,"\u0073\u0071\u0075a\u0072\u0065\u006c\u006c\u0071\u0075\u0061\u0064":0x25f1,"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006e":0x33d1,"\u0073q\u0075\u0061\u0072\u0065\u006c\u006fg":0x33d2,"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0072\u0062\u006c\u0061\u0063\u006b":0x25ea,"\u0073\u0071\u0075a\u0072\u0065\u006c\u0072\u0071\u0075\u0061\u0064":0x25f2,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0067":0x338e,"\u0073q\u0075\u0061\u0072\u0065\u006d\u0069l":0x33d5,"s\u0071\u0075\u0061\u0072\u0065\u006d\u0069\u006e\u0075\u0073":0x229f,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u006d":0x339c,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0073\u0071u\u0061\u0072\u0065\u0064":0x33a1,"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079":0x22a0,"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0069g\u0069\u006e\u0061\u006c":0x2290,"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c":0x25a6,"\u0073\u0071\u0075\u0061\u0072\u0065\u0070\u006c\u0075\u0073":0x229e,"\u0073\u0071u\u0061\u0072\u0065r\u0069\u0067\u0068\u0074\u0062\u006c\u0061\u0063\u006b":0x25e8,"\u0073\u0071\u0075\u0061\u0072\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070":0x02ae,"\u0073\u0071\u0075\u0061\u0072\u0065\u0074\u006f\u0070b\u006c\u0061\u0063\u006b":0x2b12,"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u006c\u0062\u006c\u0061\u0063\u006b":0x25e9,"\u0073\u0071\u0075a\u0072\u0065\u0075\u006c\u0071\u0075\u0061\u0064":0x25f0,"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c":0x25a7,"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c":0x25a8,"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u0072\u0062\u006c\u0061\u0063\u006b":0x2b14,"\u0073\u0071\u0075a\u0072\u0065\u0075\u0072\u0071\u0075\u0061\u0064":0x25f3,"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c":0x25a5,"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k":0x25a3,"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074":0x21ad,"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x21dd,"\u0073q\u0075\u006f\u0076\u0061\u006c":0x25a2,"\u0073\u0072\u0073\u0071\u0075\u0061\u0072\u0065":0x33db,"\u0073\u0073\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09b7,"\u0073s\u0061\u0064\u0065\u0076\u0061":0x0937,"s\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab7,"\u0073\u0073a\u006e\u0067\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e":0x3149,"\u0073\u0073a\u006e\u0067\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x3185,"\u0073\u0073a\u006e\u0067\u0069e\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e":0x3180,"\u0073\u0073\u0061\u006e\u0067\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e":0x3132,"\u0073\u0073a\u006e\u0067\u006ei\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3165,"\u0073\u0073a\u006e\u0067\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e":0x3143,"\u0073s\u0061n\u0067\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e":0x3146,"\u0073\u0073\u0061\u006e\u0067\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e":0x3138,"\u0073\u0073\u006c\u0061\u0073\u0068":0x2afd,"\u0073s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f2,"\u0073\u0074":0xfb06,"\u0073\u0074\u0061\u0072":0x22c6,"\u0073\u0074\u0061\u0072\u0065\u0071":0x225b,"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067":0x00a3,"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xffe1,"\u0073\u0074\u0072n\u0073":0x23e4,"s\u0074r\u006f\u006b\u0065\u006c\u006f\u006e\u0067\u006fv\u0065\u0072\u006c\u0061yc\u006d\u0062":0x0336,"s\u0074\u0072\u006f\u006bes\u0068o\u0072\u0074\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062":0x0335,"\u0073u\u0062\u0065\u0064\u006f\u0074":0x2ac3,"\u0073u\u0062\u006d\u0075\u006c\u0074":0x2ac1,"\u0073u\u0062\u0072\u0061\u0072\u0072":0x2979,"\u0073\u0075\u0062s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078":0x2ac9,"\u0073\u0075\u0062\u0073\u0065\u0074\u0063\u0069\u0072\u0063":0x27c3,"\u0073u\u0062\u0073\u0065\u0074\u0064\u0062l":0x22d0,"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c":0x2ac5,"\u0073u\u0062\u0073\u0065\u0074\u0064\u006ft":0x2abd,"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c":0x228a,"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064b\u006c\u0065\u0071\u006c":0x2acb,"\u0073\u0075\u0062\u0073\u0065\u0074\u0070\u006c\u0075\u0073":0x2abf,"\u0073\u0075\u0062\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c":0x2291,"\u0073\u0075\u0062\u0073\u0069\u006d":0x2ac7,"\u0073\u0075\u0062\u0073\u0075\u0062":0x2ad5,"\u0073\u0075\u0062\u0073\u0075\u0070":0x2ad3,"\u0073\u0075\u0063\u0063\u0061\u0070\u0070\u0072\u006f\u0078":0x2ab8,"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073":0x227b,"\u0073u\u0063\u0063\u0065\u0071\u0071":0x2ab4,"\u0073u\u0063\u0063\u006e\u0065\u0071":0x2ab2,"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074":0x220b,"\u0073\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3059,"\u0073\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b9,"\u0073\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff7d,"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x0652,"\u0073\u0075\u006b\u0075\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe7e,"\u0073\u0075\u006b\u0075\u006e\u006c\u006f\u0077":0xe822,"s\u0075\u006b\u0075\u006e\u006d\u0065\u0064\u0069\u0061\u006c":0xfe7f,"\u0073\u0075\u006bu\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061":0xe834,"\u0073u\u006d\u0062\u006f\u0074\u0074\u006fm":0x23b3,"\u0073\u0075\u006d\u0069\u006e\u0074":0x2a0b,"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn":0x2211,"\u0073\u0075\u006d\u0074\u006f\u0070":0x23b2,"\u0073\u0075\u006e":0x263c,"\u0073u\u0070\u0064\u0073\u0075\u0062":0x2ad8,"\u0073u\u0070\u0065\u0064\u006f\u0074":0x2ac4,"\u0073u\u0070e\u0072\u0073\u0063\u0072\u0069\u0070\u0074\u0061\u006c\u0065\u0066":0x0670,"s\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u0064\u0062\u006c":0x22d1,"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c":0x2ac6,"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c":0x228b,"\u0073\u0075\u0070\u0065rs\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c":0x2acc,"\u0073u\u0070e\u0072\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c":0x2292,"\u0073u\u0070\u0068\u0073\u006f\u006c":0x27c9,"\u0073u\u0070\u0068\u0073\u0075\u0062":0x2ad7,"\u0073u\u0070\u006c\u0061\u0072\u0072":0x297b,"\u0073u\u0070\u006d\u0075\u006c\u0074":0x2ac2,"\u0073\u0075\u0070s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078":0x2aca,"\u0073\u0075\u0070\u0073\u0065\u0074\u0063\u0069\u0072\u0063":0x27c4,"\u0073u\u0070\u0073\u0065\u0074\u0064\u006ft":0x2abe,"\u0073\u0075\u0070\u0073\u0065\u0074\u0070\u006c\u0075\u0073":0x2ac0,"\u0073\u0075\u0070\u0073\u0069\u006d":0x2ac8,"\u0073\u0075\u0070\u0073\u0075\u0062":0x2ad4,"\u0073\u0075\u0070\u0073\u0075\u0070":0x2ad6,"\u0073\u0076\u0073\u0071\u0075\u0061\u0072\u0065":0x33dc,"\u0073y\u006fu\u0077\u0061\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x337c,"\u0074":0x0074,"\u0074a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09a4,"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e":0x22a4,"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074":0x22a3,"\u0074\u0061\u0064\u0065\u0076\u0061":0x0924,"\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa4,"\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a24,"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c":0x0637,"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfec2,"\u0074\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec3,"\u0074\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305f,"t\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfec1,"\u0074a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec4,"\u0074\u0061i\u0073\u0079\u006fu\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065":0x337d,"\u0074\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bf,"\u0074\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff80,"\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067":0x2afe,"\u0074a\u0074\u0077\u0065\u0065\u006c\u0077\u0069\u0074\u0068\u0066\u0061t\u0068\u0061\u0074\u0061\u006e\u0061\u0062\u006f\u0076\u0065":0xfe71,"\u0074\u0061\u0075":0x03c4,"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h":0xfb4a,"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w":0x05ea,"\u0074\u0062\u0061\u0072":0x0167,"\u0074b\u006f\u0070\u006f\u006d\u006f\u0066o":0x310a,"\u0074\u0063\u0061\u0072\u006f\u006e":0x0165,"\u0074c\u0061\u0072\u006f\u006e\u0031":0xf815,"\u0074\u0063\u0063\u0075\u0072\u006c":0x02a8,"\u0074\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0x0163,"\u0074c\u0065\u0064\u0069\u006c\u006c\u00611":0xf819,"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063":0x0686,"\u0074\u0063h\u0065\u0068\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb7b,"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfb7c,"\u0074\u0063\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb7a,"\u0074\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb7d,"\u0074c\u0069\u0072\u0063\u006c\u0065":0x24e3,"\u0074\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e71,"\u0074d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e97,"\u0074\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e6b,"\u0074d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e6d,"\u0074\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ad,"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe96,"\u0074\u0065\u0068\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfca2,"t\u0065h\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061t\u0065\u0064\u0061\u0072ab\u0069\u0063":0xfc0c,"\u0074\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe97,"\u0074\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3066,"t\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe95,"t\u0065h\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfca1,"t\u0065\u0068\u006a\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc0b,"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063":0x0629,"t\u0065\u0068\u006d\u0061rb\u0075t\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063":0xfe94,"\u0074e\u0068m\u0061\u0072\u0062\u0075\u0074a\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfe93,"\u0074e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe98,"t\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfca4,"t\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc0e,"\u0074e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfc73,"\u0074\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc74,"\u0074\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xe814,"\u0074e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfca3,"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc75,"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064":0xfc10,"\u0074\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c6,"\u0074\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff83,"\u0074e\u006c\u0065\u0070\u0068\u006f\u006ee":0x2121,"\u0074\u0065\u006c\u0069sh\u0061\u0067\u0065\u0064\u006f\u006c\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a0,"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x05a9,"\u0074\u0065\u006e\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3229,"\u0074\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x247d,"\u0074e\u006e\u0070\u0065\u0072\u0069\u006fd":0x2491,"\u0074\u0065\u006e\u0072\u006f\u006d\u0061\u006e":0x2179,"\u0074\u0065\u0073\u0068":0x02a7,"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h":0xfb38,"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w":0x05d8,"\u0074\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b5,"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077":0x059b,"\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a5,"\u0074h\u0061\u0064\u0065\u0076\u0061":0x0925,"t\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa5,"t\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a25,"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0x0630,"\u0074h\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeac,"\u0074\u0068\u0061l\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeab,"\u0074\u0068\u0061\u006eth\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069":0xf898,"\u0074\u0068\u0061nt\u0068\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069":0xf897,"\u0074h\u0061n\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0074\u0068\u0061\u0069":0x0e4c,"\u0074h\u0061\u006e\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069":0xf896,"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063":0x062b,"\u0074h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe9a,"\u0074\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfe9b,"\u0074\u0068\u0065h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfe99,"\u0074\u0068e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe9c,"\u0074\u0068\u0065\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c":0xfca6,"t\u0068e\u0068\u0077\u0069\u0074\u0068\u006d\u0065\u0065m\u0069\u0073\u006f\u006cat\u0065\u0064":0xfc12,"\u0074h\u0065\u0072\u0065\u0066\u006f\u0072e":0x2234,"\u0074h\u0065\u0072\u006d\u006f\u0064":0x29e7,"\u0074\u0068\u0065t\u0061":0x03b8,"\u0074\u0068\u0065\u0074\u0061\u0031":0x03d1,"t\u0068i\u0065\u0075\u0074\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e":0x3279,"\u0074\u0068\u0069\u0065ut\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e":0x3219,"\u0074\u0068\u0069\u0065ut\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x326b,"\u0074\u0068\u0069\u0065\u0075\u0074\u0068\u006b\u006f\u0072\u0065\u0061\u006e":0x314c,"\u0074h\u0069e\u0075\u0074\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x320b,"\u0074h\u0069\u006e\u0073\u0070\u0061\u0063e":0x2009,"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065":0x246c,"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e":0x2480,"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064":0x2494,"\u0074\u0068\u006f\u006e\u0061\u006e\u0067\u006d\u006f\u006e\u0074\u0068o\u0074\u0068\u0061\u0069":0x0e11,"\u0074\u0068\u006fo\u006b":0x01ad,"\u0074\u0068\u006f\u0070\u0068\u0075\u0074\u0068\u0061o\u0074\u0068\u0061\u0069":0x0e12,"\u0074\u0068\u006fr\u006e":0x00fe,"\u0074\u0068\u006f\u0074\u0068\u0061\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e17,"t\u0068\u006f\u0074\u0068\u0061\u006e\u0074\u0068\u0061\u0069":0x0e10,"\u0074\u0068\u006ft\u0068\u006f\u006e\u0067\u0074\u0068\u0061\u0069":0x0e18,"\u0074\u0068\u006ft\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069":0x0e16,"\u0074\u0068o\u0075\u0073\u0061n\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0482,"\u0074h\u006f\u0075\u0073\u0061\u006e\u0064\u0073\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062\u0069\u0063":0x066c,"\u0074\u0068\u0072e\u0065":0x0033,"\u0074\u0068\u0072e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e9,"t\u0068\u0072\u0065\u0065\u0064\u0061\u006e\u0067\u006c\u0065":0x27c0,"\u0074h\u0072\u0065\u0065\u0064\u0065\u0076a":0x0969,"\u0074\u0068\u0072\u0065\u0065\u0064\u006f\u0074\u0063\u006f\u006c\u006f\u006e":0x2af6,"\u0074\u0068\u0072e\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073":0x215c,"t\u0068\u0072\u0065\u0065\u0066\u0069\u0066\u0074\u0068\u0073":0x2157,"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae9,"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a69,"\u0074\u0068\u0072\u0065\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3023,"t\u0068\u0072\u0065\u0065id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e":0x3222,"\u0074\u0068\u0072\u0065\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2083,"\u0074\u0068\u0072\u0065\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065":0xff13,"t\u0068\u0072\u0065\u0065nu\u006de\u0072\u0061\u0074\u006f\u0072b\u0065\u006e\u0067\u0061\u006c\u0069":0x09f6,"\u0074\u0068\u0072\u0065\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf733,"\u0074\u0068\u0072\u0065\u0065\u0070\u0061\u0072\u0065\u006e":0x2476,"\u0074h\u0072e\u0065\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065":0x2004,"t\u0068\u0072\u0065\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x248a,"\u0074\u0068\u0072e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f3,"\u0074\u0068\u0072\u0065\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0073":0x00be,"\u0074\u0068\u0072\u0065eq\u0075\u0061\u0072\u0074\u0065\u0072\u0073\u0065\u006d\u0064\u0061\u0073\u0068":0xf6de,"\u0074\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e":0x2172,"\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x00b3,"\u0074h\u0072\u0065\u0065\u0074\u0068\u0061i":0x0e53,"\u0074\u0068\u0072\u0065\u0065\u0075\u006e\u0064\u0065\u0072\u0064\u006f\u0074":0x20e8,"\u0074h\u007a\u0073\u0071\u0075\u0061\u0072e":0x3394,"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t":0x2040,"\u0074\u0069\u0065\u0069\u006e\u0066\u0074\u0079":0x29dd,"\u0074\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3061,"\u0074\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c1,"\u0074\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff81,"\u0074\u0069\u006b\u0065ut\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3270,"\u0074i\u006be\u0075\u0074\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e":0x3210,"\u0074i\u006be\u0075\u0074\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e":0x3262,"\u0074\u0069\u006be\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e":0x3137,"\u0074\u0069\u006b\u0065\u0075\u0074\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e":0x3202,"\u0074\u0069\u006cd\u0065":0x02dc,"\u0074\u0069\u006c\u0064\u0065\u0031":0xf004,"\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062":0x0330,"\u0074\u0069\u006c\u0064\u0065\u0063\u006d\u0062":0x0303,"\u0074\u0069\u006c\u0064\u0065\u0064\u006f\u0075\u0062l\u0065\u0063\u006d\u0062":0x0360,"\u0074i\u006c\u0064\u0065\u006e\u006f\u0073p":0x0276,"\u0074i\u006cd\u0065\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063\u006d\u0062":0x0334,"\u0074\u0069l\u0064\u0065\u0076e\u0072\u0074\u0069\u0063\u0061\u006c\u0063\u006d\u0062":0x033e,"\u0074\u0069\u006d\u0065\u0073\u0062\u0061\u0072":0x2a31,"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0596,"\u0074\u0069\u0070\u0070\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a70,"\u0074\u0069t\u006c\u006f\u0063y\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062":0x0483,"\u0074\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057f,"\u0074\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e6f,"\u0074\u006d\u0069\u006e\u0075\u0073":0x29ff,"\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff54,"\u0074\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0569,"\u0074\u006f\u0065\u0061":0x2928,"\u0074\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3068,"\u0074\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c8,"\u0074\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff84,"\u0074\u006f\u006e\u0061":0x2927,"\u0074\u006f\u006e\u0065ba\u0072\u0065\u0078\u0074\u0072\u0061\u0068\u0069\u0067\u0068\u006d\u006f\u0064":0x02e5,"\u0074o\u006ee\u0062\u0061\u0072\u0065\u0078t\u0072\u0061l\u006f\u0077\u006d\u006f\u0064":0x02e9,"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u0068\u0069g\u0068\u006d\u006f\u0064":0x02e6,"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006c\u006f\u0077\u006d\u006f\u0064":0x02e8,"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006d\u0069\u0064\u006d\u006f\u0064":0x02e7,"\u0074\u006f\u006e\u0065\u0066\u0069\u0076\u0065":0x01bd,"\u0074o\u006e\u0065\u0073\u0069\u0078":0x0185,"\u0074o\u006e\u0065\u0074\u0077\u006f":0x01a8,"\u0074\u006f\u006eo\u0073":0x0384,"\u0074o\u006e\u0073\u0071\u0075\u0061\u0072e":0x3327,"t\u006f\u0070\u0061\u0074\u0061\u006b\u0074\u0068\u0061\u0069":0x0e0f,"\u0074\u006f\u0070\u0062\u006f\u0074":0x2336,"\u0074\u006f\u0070\u0063\u0069\u0072":0x2af1,"\u0074o\u0070\u0066\u006f\u0072\u006b":0x2ada,"\u0074\u006f\u0070\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065":0x25e0,"\u0074o\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074":0x3014,"\u0074\u006fr\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0073ma\u006c\u006c":0xfe5d,"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072a\u0063k\u0065\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe39,"\u0074o\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006cl\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068t":0x3015,"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068e\u006c\u006c\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c":0xfe5e,"\u0074\u006f\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c":0xfe3a,"\u0074\u006f\u0073\u0061":0x2929,"\u0074o\u0074\u0061\u006f\u0074\u0068\u0061i":0x0e15,"\u0074\u006f\u0077\u0061":0x292a,"\u0074\u0070\u0061l\u0061\u0074\u0061\u006c\u0068\u006f\u006f\u006b":0x01ab,"\u0074\u0070\u0061\u0072\u0065\u006e":0x24af,"\u0074\u0070\u006cu\u0073":0x29fe,"\u0074r\u0061\u0064\u0065\u006d\u0061\u0072k":0x2122,"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006b\u0073\u0061\u006e\u0073":0xf8ea,"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006bs\u0065\u0072\u0069\u0066":0xf6db,"\u0074r\u0061\u0070\u0065\u007a\u0069\u0075m":0x23e2,"\u0074\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b":0x0288,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0062u\u006c\u006c\u0065\u0074":0x2023,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0063\u0064\u006f\u0074":0x25ec,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074b\u006c\u0061\u0063\u006b":0x25ed,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c":0x22b4,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006d\u0069\u006e\u0075\u0073":0x2a3a,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u006f\u0064\u006f\u0074":0x29ca,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0070\u006c\u0075\u0073":0x2a39,"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0062\u006c\u0061\u0063\u006b":0x25ee,"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c":0x22b5,"\u0074r\u0069\u0061\u006e\u0067\u006c\u0065s":0x29cc,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073e\u0072\u0069\u0066\u0073":0x29cd,"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0074\u0069\u006d\u0065\u0073":0x2a3b,"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072":0x29cb,"\u0074\u0072\u0069\u0070\u006c\u0065\u0070\u006c\u0075\u0073":0x29fb,"\u0074r\u0070\u0072\u0069\u006d\u0065":0x2034,"\u0074r\u0073\u006c\u0061\u0073\u0068":0x2afb,"\u0074\u0073":0x02a6,"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068":0xfb46,"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0446,"\u0074s\u0065\u0072\u0065\u0031\u0032":0x05b5,"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x045b,"\u0074s\u0075\u0070\u0065\u0072\u0069\u006fr":0xf6f3,"\u0074\u0074\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x099f,"\u0074t\u0061\u0064\u0065\u0076\u0061":0x091f,"t\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a9f,"t\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a1f,"\u0074t\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb67,"\u0074\u0074\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb68,"\u0074\u0074e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb69,"t\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09a0,"\u0074\u0074\u0068\u0061\u0064\u0065\u0076\u0061":0x0920,"\u0074\u0074\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aa0,"\u0074\u0074\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a20,"\u0074t\u0075\u0072\u006e\u0065\u0064":0x0287,"\u0074\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3064,"\u0074\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c4,"\u0074\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff82,"\u0074u\u0072\u006e\u0061\u006e\u0067\u006ce":0x29a2,"\u0074\u0075\u0072\u006e\u0065\u0064\u0069\u006f\u0074\u0061":0x2129,"\u0074u\u0072\u006e\u0065\u0064\u006e\u006ft":0x2319,"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074":0x22a2,"\u0074u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3063,"\u0074u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30c3,"\u0074u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6f,"\u0074\u0077\u0065l\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x246b,"t\u0077\u0065\u006c\u0076\u0065\u0070\u0061\u0072\u0065\u006e":0x247f,"\u0074\u0077\u0065l\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064":0x2493,"t\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e":0x217b,"t\u0077\u0065\u006c\u0076\u0065\u0075\u0064\u0061\u0073\u0068":0xd80c,"\u0074\u0077\u0065n\u0074\u0079\u0063\u0069\u0072\u0063\u006c\u0065":0x2473,"\u0074\u0077\u0065\u006e\u0074\u0079\u0068\u0061\u006eg\u007a\u0068\u006f\u0075":0x5344,"t\u0077\u0065\u006e\u0074\u0079\u0070\u0061\u0072\u0065\u006e":0x2487,"\u0074\u0077\u0065n\u0074\u0079\u0070\u0065\u0072\u0069\u006f\u0064":0x249b,"\u0074\u0077\u006f":0x0032,"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c":0x0662,"\u0074\u0077\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e8,"\u0074w\u006f\u0063\u0061\u0070\u0073":0x2a4b,"\u0074w\u006f\u0063\u0075\u0070\u0073":0x2a4a,"\u0074w\u006f\u0064\u0065\u0076\u0061":0x0968,"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072":0x2025,"t\u0077o\u0064\u006f\u0074\u006c\u0065\u0061\u0064\u0065r\u0076\u0065\u0072\u0074ic\u0061\u006c":0xfe30,"\u0074w\u006f\u0066\u0069\u0066\u0074\u0068s":0x2156,"t\u0077\u006f\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae8,"t\u0077\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a68,"t\u0077\u006f\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075":0x3022,"\u0074\u0077o\u0068\u0065\u0061d\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077":0x21a1,"t\u0077o\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077ta\u0069\u006c":0x2b3b,"\u0074\u0077\u006f\u0068ea\u0064\u006c\u0065\u0066\u0074\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077":0x2b37,"\u0074w\u006fh\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d":0x2b36,"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0074\u006f":0x2905,"t\u0077\u006f\u0068\u0065ad\u0072i\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0074\u0061\u0069\u006c":0x2916,"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u0075\u0070a\u0072\u0072\u006f\u0077":0x219f,"t\u0077o\u0068\u0065\u0061\u0064\u0075\u0070\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065":0x2949,"\u0074\u0077\u006f\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e":0x3221,"t\u0077\u006f\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2082,"\u0074\u0077\u006fm\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff12,"\u0074\u0077\u006f\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09f5,"t\u0077\u006f\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf732,"\u0074\u0077\u006f\u0070\u0061\u0072\u0065\u006e":0x2475,"\u0074w\u006f\u0070\u0065\u0072\u0069\u006fd":0x2489,"\u0074\u0077\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f2,"\u0074\u0077\u006f\u0072\u006f\u006d\u0061\u006e":0x2171,"\u0074w\u006f\u0073\u0074\u0072\u006f\u006be":0x01bb,"t\u0077\u006f\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x00b2,"\u0074w\u006f\u0074\u0068\u0061\u0069":0x0e52,"\u0074w\u006f\u0074\u0068\u0069\u0072\u0064s":0x2154,"\u0074y\u0070\u0065\u0063\u006f\u006c\u006fn":0x2982,"\u0075":0x0075,"\u0075\u0032\u00364\u0033":0x2643,"\u0075\u0061\u0063\u0075\u0074\u0065":0x00fa,"\u0075\u0062\u0061\u0072":0x0289,"\u0075\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x0989,"\u0075b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3128,"\u0075b\u0072\u0062\u0072\u0061\u006b":0x23e1,"\u0075\u0062\u0072\u0065\u0076\u0065":0x016d,"\u0075\u0063\u0061\u0072\u006f\u006e":0x01d4,"\u0075\u0063\u0065\u0064\u0069\u006c\u006c\u0061":0xf834,"\u0075c\u0069\u0072\u0063\u006c\u0065":0x24e4,"u\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x00fb,"\u0075\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077":0x1e77,"\u0075\u0064\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061":0x0951,"\u0075d\u0062\u006c\u0061\u0063\u0075\u0074e":0x0171,"\u0075d\u0062\u006c\u0067\u0072\u0061\u0076e":0x0215,"\u0075\u0064\u0065v\u0061":0x0909,"\u0075d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00fc,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065":0x01d8,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077":0x1e73,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e":0x01da,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04f1,"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065":0x01dc,"\u0075d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e":0x01d6,"\u0075d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ee5,"\u0075\u0067\u0072\u0061\u0076\u0065":0x00f9,"\u0075g\u0075\u006a\u0061\u0072\u0061\u0074i":0x0a89,"\u0075g\u0075\u0072\u006d\u0075\u006b\u0068i":0x0a09,"\u0075h\u0069\u0072\u0061\u0067\u0061\u006ea":0x3046,"\u0075\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ee7,"\u0075\u0068\u006fr\u006e":0x01b0,"\u0075\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065":0x1ee9,"\u0075\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077":0x1ef1,"\u0075\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065":0x1eeb,"\u0075\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065":0x1eed,"\u0075\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065":0x1eef,"u\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063":0x04f3,"\u0075\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065":0x0217,"\u0075k\u0061\u0074\u0061\u006b\u0061\u006ea":0x30a6,"\u0075k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068":0xff73,"\u0075\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0479,"\u0075k\u006f\u0072\u0065\u0061\u006e":0x315c,"\u0075\u006c\u0061r\u0063":0x25dc,"\u0075\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25f8,"\u0075m\u0061\u0063\u0072\u006f\u006e":0x016b,"\u0075m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04ef,"\u0075m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x1e7b,"\u0075\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069":0x0a41,"\u0075\u006d\u0069\u006e\u0075\u0073":0x2a41,"\u0075\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff55,"\u0075\u006e\u0064\u0065\u0072\u0062\u0072\u0061\u0063\u0065":0x23df,"\u0075\u006e\u0064e\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074":0x23b5,"\u0075\u006e\u0064\u0065\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077":0x20ee,"u\u006ed\u0065\u0072\u006c\u0065\u0066\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e":0x20ed,"\u0075\u006e\u0064\u0065\u0072\u0070\u0061\u0072\u0065\u006e":0x23dd,"\u0075n\u0064e\u0072\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077":0x20ef,"u\u006e\u0064\u0065\u0072ri\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e":0x20ec,"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065":0x005f,"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c":0x2017,"\u0075\u006e\u0064\u0065rs\u0063\u006f\u0072\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff3f,"\u0075n\u0064e\u0072\u0073\u0063\u006f\u0072e\u0076\u0065r\u0074\u0069\u0063\u0061\u006c":0xfe33,"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072e\u0077\u0061\u0076\u0079":0xfe4f,"\u0075\u006e\u0064\u0065\u0072\u0074\u0069\u0065":0x203f,"\u0075\u006e\u0069c\u006f\u0064\u0065\u0063\u0064\u006f\u0074\u0073":0x22ef,"\u0075\u006e\u0069o\u006e":0x222a,"\u0075\u006e\u0069\u006f\u006e\u0064\u0062\u006c":0x22d3,"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069":0x228e,"\u0075n\u0069\u006f\u006e\u0073\u0071":0x2294,"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t":0x22c3,"\u0075n\u0069\u0076\u0065\u0072\u0073\u0061l":0x2200,"\u0075o\u0067\u006f\u006e\u0065\u006b":0x0173,"\u0075\u0070\u0061n\u0064":0x214b,"\u0075\u0070\u0061\u0072\u0065\u006e":0x24b0,"\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064":0x2909,"\u0075p\u0061r\u0072\u006f\u0077\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065":0x29bd,"\u0075p\u0062\u006c\u006f\u0063\u006b":0x2580,"\u0075p\u0064\u0069\u0067\u0061\u006d\u006da":0x03dd,"u\u0070\u0064\u006f\u0077nh\u0061r\u0070\u006f\u006f\u006e\u006ce\u0066\u0074\u006c\u0065\u0066\u0074":0x2951,"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0072\u0069\u0067h\u0074":0x294d,"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u006c\u0065f\u0074":0x294c,"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0072\u0069\u0067\u0068\u0074":0x294f,"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x296e,"\u0075\u0070\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b":0x2594,"\u0075\u0070\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c":0x297e,"\u0075\u0070h\u0061\u0072\u0070o\u006f\u006e\u006c\u0065\u0066\u0074\u0062\u0061\u0072":0x2960,"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067h\u0074\u0062\u0061\u0072":0x295c,"\u0075\u0070\u0068\u0061rp\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074":0x2963,"\u0075\u0070\u0069\u006e":0x27d2,"\u0075\u0070\u0069n\u0074":0x2a1b,"\u0075p\u006b\u006f\u0070\u0070\u0061":0x03df,"\u0075\u0070\u006f\u006c\u0064\u004b\u006f\u0070\u0070\u0061":0x03d8,"\u0075\u0070\u006f\u006c\u0064\u006b\u006f\u0070\u0070\u0061":0x03d9,"\u0075\u0070\u0070\u0065\u0072\u0064\u006f\u0074\u0068e\u0062\u0072\u0065\u0077":0x05c4,"\u0075\u0070\u0072\u0069\u0067\u0068\u0074\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077":0x2934,"\u0075p\u0073\u0061\u006d\u0070\u0069":0x03e1,"\u0075p\u0073\u0069\u006c\u006f\u006e":0x03c5,"u\u0070\u0073\u0069\u006con\u0064i\u0061\u0065\u0072\u0065\u0073i\u0073\u0074\u006f\u006e\u006f\u0073":0x02f9,"\u0075p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073":0x03cb,"u\u0070s\u0069\u006c\u006f\u006e\u0064\u0069\u0065\u0072e\u0073\u0069\u0073\u0074on\u006f\u0073":0x03b0,"\u0075\u0070\u0073i\u006c\u006f\u006e\u006c\u0061\u0074\u0069\u006e":0x028a,"\u0075\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073":0x03cd,"\u0075p\u0073\u006c\u006f\u0070\u0065":0x29f8,"\u0075\u0070\u0073\u0074\u0069\u0067\u006d\u0061":0x03db,"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062":0x031d,"\u0075p\u0074\u0061\u0063\u006b\u006d\u006fd":0x02d4,"\u0075\u0070\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061":0x03f4,"u\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a73,"\u0075\u0072\u0061r\u0063":0x25dd,"\u0075\u0072\u0069n\u0067":0x016f,"\u0075\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25f9,"\u0075\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061":0x3045,"\u0075\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061":0x30a5,"\u0075\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff69,"\u0075\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x04af,"\u0075\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04b1,"\u0075\u0074\u0069\u006c\u0064\u0065":0x0169,"u\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065":0x1e79,"u\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077":0x1e75,"\u0075u\u0062\u0065\u006e\u0067\u0061\u006ci":0x098a,"\u0075\u0075\u0064\u0065\u0076\u0061":0x090a,"\u0075\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a8a,"\u0075\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a0a,"\u0075u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a42,"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069":0x09c2,"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061":0x0942,"\u0075\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ac2,"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069":0x09c1,"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061":0x0941,"\u0075v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069":0x0ac1,"\u0076":0x0076,"\u0076\u0042\u0061\u0072":0x2ae8,"\u0076\u0042\u0061r\u0076":0x2ae9,"\u0076\u0044\u0064\u0061\u0073\u0068":0x2ae2,"\u0076\u0061\u0064\u0065\u0076\u0061":0x0935,"\u0076\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ab5,"\u0076\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a35,"\u0076\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f7,"\u0076\u0061\u0072\u0056\u0064\u0061\u0073\u0068":0x2ae6,"\u0076\u0061\u0072\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e":0x23ce,"\u0076\u0061\u0072\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065":0x2306,"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e":0x2b21,"\u0076a\u0072h\u0065\u0078\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b":0x2b22,"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e\u006c\u0072b\u006f\u006e\u0064\u0073":0x232c,"\u0076\u0061\u0072\u0069\u006b\u0061":0xfb1e,"v\u0061\u0072\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072":0x22f6,"\u0076\u0061\u0072\u0069\u0073\u0069\u006e\u0073":0x22f3,"\u0076a\u0072\u006e\u0069\u006f\u0062\u0061r":0x22fd,"\u0076\u0061\u0072\u006e\u0069\u0073":0x22fb,"\u0076\u0061r\u006f\u0069\u006et\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065":0x2232,"\u0076a\u0072t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074":0x22b2,"\u0076\u0061r\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074":0x22b3,"\u0076a\u0072\u0076\u0065\u0065\u0062\u0061r":0x2a61,"\u0076\u0061\u0076":0x05d5,"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb35,"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d":0xfb4b,"\u0076\u0062\u0072\u0061\u0063\u0065\u0065\u0078\u0074e\u006e\u0064\u0065\u0072":0x23aa,"\u0076\u0062\u0072\u0074\u0072\u0069":0x29d0,"\u0076c\u0069\u0072\u0063\u006c\u0065":0x24e5,"\u0076d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e7f,"\u0076\u0065\u0063\u0074\u0069\u006d\u0065\u0073":0x2a2f,"\u0076\u0065\u0063\u0074\u006f\u0072":0x20d7,"\u0076\u0065\u0065\u0064\u006f\u0074":0x27c7,"\u0076\u0065\u0065d\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072":0x2a63,"\u0076\u0065\u0065e\u0071":0x225a,"\u0076\u0065\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074":0x2a5b,"\u0076e\u0065\u006f\u0064\u006f\u0074":0x2a52,"\u0076\u0065\u0065\u006f\u006e\u0076\u0065\u0065":0x2a56,"\u0076\u0065\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065":0x2a59,"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c":0x06a4,"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfb6b,"\u0076\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb6c,"v\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfb6a,"\u0076e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfb6d,"\u0076\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f9,"\u0076\u0065\u0072\u0073\u0069\u0063\u006c\u0065":0x2123,"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0061\u0062\u006f\u0076ec\u006d\u0062":0x030d,"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0062\u0065\u006c\u006fwc\u006d\u0062":0x0329,"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006ci\u006e\u0065l\u006f\u0077\u006d\u006f\u0064":0x02cc,"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u006d\u006f\u0064":0x02c8,"v\u0065\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079":0x20d2,"v\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x057e,"\u0076\u0068\u006fo\u006b":0x028b,"\u0076\u0069\u0065\u0077\u0064\u0061\u0074\u0061":0x2317,"\u0076\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f8,"\u0076\u0069\u0072\u0061\u006d\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09cd,"\u0076\u0069\u0072\u0061\u006d\u0061\u0064\u0065\u0076\u0061":0x094d,"\u0076\u0069\u0072\u0061\u006d\u0061\u0067\u0075\u006aa\u0072\u0061\u0074\u0069":0x0acd,"\u0076\u0069\u0073\u0061\u0072\u0067\u0061\u0062\u0065n\u0067\u0061\u006c\u0069":0x0983,"v\u0069\u0073\u0061\u0072\u0067\u0061\u0064\u0065\u0076\u0061":0x0903,"\u0076i\u0073a\u0072\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0a83,"\u0076l\u006f\u006e\u0067\u0064\u0061\u0073h":0x27dd,"\u0076\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff56,"\u0076\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0578,"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x309e,"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30fe,"\u0076\u006f\u0069\u0063\u0065\u0064\u006d\u0061\u0072k\u006b\u0061\u006e\u0061":0x309b,"\u0076\u006f\u0069ce\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9e,"\u0076\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30fa,"\u0076\u0070\u0061\u0072\u0065\u006e":0x24b1,"\u0076\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065":0x25af,"\u0076r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b":0x25ae,"\u0076s\u0063\u0072\u0069\u0070\u0074":0x021b,"\u0076\u0074\u0069\u006c\u0064\u0065":0x1e7d,"\u0076\u0074\u0075r\u006e":0x021c,"\u0076t\u0075\u0072\u006e\u0065\u0064":0x028c,"\u0076\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3094,"\u0076\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f4,"\u0076\u0079\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1d,"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065":0x2218,"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065":0x2b1e,"\u0076z\u0069\u0067\u007a\u0061\u0067":0x299a,"\u0077":0x0077,"\u0077\u0061\u0063\u0075\u0074\u0065":0x1e83,"\u0077a\u0065\u006b\u006f\u0072\u0065\u0061n":0x3159,"\u0077\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308f,"\u0077\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ef,"\u0077\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff9c,"\u0077\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x3158,"\u0077a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x308e,"\u0077a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ee,"w\u0061\u0074\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x3357,"\u0077\u0061\u0076\u0065\u0064\u0061\u0073\u0068":0x301c,"\u0077\u0061\u0076\u0079un\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0076\u0065\u0072\u0074\u0069\u0063a\u006c":0xfe34,"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c":0x0648,"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfeee,"\u0077a\u0077\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe86,"w\u0061\u0077\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeed,"\u0077a\u0077\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d":0xfe85,"\u0077\u0062\u0073\u0071\u0075\u0061\u0072\u0065":0x33dd,"\u0077c\u0069\u0072\u0063\u006c\u0065":0x24e6,"w\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0175,"\u0077d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e85,"\u0077\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e87,"\u0077d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e89,"\u0077\u0065\u0064\u0067\u0065\u0062\u0061\u0072":0x2a5f,"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0074":0x27d1,"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0075\u0062l\u0065\u0062\u0061\u0072":0x2a60,"\u0077\u0065\u0064g\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074":0x2a5a,"\u0077e\u0064\u0067\u0065\u006f\u0064\u006ft":0x2a51,"\u0077\u0065\u0064g\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065":0x2a55,"\u0077\u0065\u0064\u0067\u0065\u0071":0x2259,"\u0077\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3091,"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073":0x2118,"\u0077\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f1,"\u0077\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x315e,"\u0077e\u006f\u006b\u006f\u0072\u0065\u0061n":0x315d,"\u0077\u0067\u0072\u0061\u0076\u0065":0x1e81,"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074":0x25e6,"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065":0x25cb,"\u0077\u0068\u0069\u0074ec\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074":0x300e,"\u0077\u0068\u0069\u0074\u0065\u0063\u006f\u0072\u006e\u0065r\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe43,"\u0077\u0068\u0069te\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x300f,"\u0077\u0068\u0069t\u0065\u0063\u006f\u0072n\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c":0xfe44,"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064":0x25c7,"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064":0x25c8,"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25bf,"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce":0x25bd,"w\u0068i\u0074\u0065\u0069\u006e\u0077\u0068\u0069\u0074e\u0074\u0072\u0069\u0061ng\u006c\u0065":0x27c1,"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u0066\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25c3,"\u0077h\u0069\u0074\u0065\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce":0x25c1,"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074":0x3016,"w\u0068\u0069\u0074\u0065\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074":0x3017,"\u0077\u0068i\u0074\u0065\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074":0x25c5,"\u0077\u0068\u0069\u0074\u0065\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074":0x25bb,"\u0077\u0068\u0069t\u0065\u0072\u0069\u0067h\u0074\u0070\u006f\u0069\u006e\u0074\u0069n\u0067\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25b9,"\u0077\u0068\u0069\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065":0x25b7,"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065":0x25ab,"\u0077\u0068\u0069\u0074es\u0071\u0075\u0061\u0072\u0065\u0074\u0069\u0063\u006b\u006c\u0065\u0066\u0074":0x27e4,"w\u0068i\u0074\u0065\u0073\u0071\u0075\u0061\u0072\u0065t\u0069\u0063\u006b\u0072ig\u0068\u0074":0x27e5,"\u0077h\u0069\u0074\u0065\u0073\u0074\u0061r":0x2606,"\u0077\u0068\u0069\u0074\u0065\u0074\u0065\u006c\u0065p\u0068\u006f\u006e\u0065":0x260f,"\u0077\u0068i\u0074\u0065\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074le\u0066\u0074":0x3018,"\u0077\u0068\u0069\u0074\u0065\u0074\u006f\u0072\u0074\u006fi\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074":0x3019,"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065":0x25b5,"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065":0x25b3,"w\u0068\u0074\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c":0x2b2d,"w\u0068\u0074\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c":0x2b2f,"\u0077\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e":0x29a6,"w\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0075\u0070":0x29a7,"\u0077i\u0064e\u0062\u0072\u0069\u0064\u0067\u0065\u0061\u0062\u006f\u0076\u0065":0x20e9,"\u0077\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3090,"\u0077\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f0,"\u0077\u0069\u006b\u006f\u0072\u0065\u0061\u006e":0x315f,"\u0077\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff57,"\u0077\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3092,"\u0077\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30f2,"\u0077\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff66,"\u0077\u006f\u006e":0x20a9,"\u0077\u006f\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe6,"\u0077\u006f\u0077\u0061\u0065\u006e\u0074\u0068\u0061\u0069":0x0e27,"\u0077\u0070\u0061\u0072\u0065\u006e":0x24b2,"\u0077\u0072\u0065\u0061\u0074\u0068\u0070\u0072\u006f\u0064\u0075\u0063\u0074":0x2240,"\u0077\u0072\u0069n\u0067":0x1e98,"\u0077\u0073\u0075\u0070\u0065\u0072":0x0240,"\u0077s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b7,"\u0077\u0074\u0075r\u006e":0x021d,"\u0077t\u0075\u0072\u006e\u0065\u0064":0x028d,"\u0077\u0079\u006e\u006e":0x01bf,"\u0078":0x0078,"\u0078a\u0062\u006f\u0076\u0065\u0063\u006db":0x033d,"\u0078b\u006f\u0070\u006f\u006d\u006f\u0066o":0x3112,"\u0078c\u0069\u0072\u0063\u006c\u0065":0x24e7,"\u0078d\u0069\u0065\u0072\u0065\u0073\u0069s":0x1e8d,"\u0078\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8b,"x\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056d,"\u0078\u0069":0x03be,"\u0078\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff58,"\u0078\u0070\u0061\u0072\u0065\u006e":0x24b3,"\u0078s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02e3,"\u0079":0x0079,"y\u0061\u0061\u0064\u006f\u0073\u0071\u0075\u0061\u0072\u0065":0x334e,"\u0079a\u0062\u0065\u006e\u0067\u0061\u006ci":0x09af,"\u0079\u0061\u0063\u0075\u0074\u0065":0x00fd,"\u0079\u0061\u0064\u0065\u0076\u0061":0x092f,"\u0079a\u0065\u006b\u006f\u0072\u0065\u0061n":0x3152,"\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0aaf,"\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a2f,"\u0079\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3084,"\u0079\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e4,"\u0079\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff94,"\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x3151,"\u0079\u0061\u006da\u006b\u006b\u0061\u006e\u0074\u0068\u0061\u0069":0x0e4e,"\u0079a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3083,"\u0079a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e3,"\u0079a\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6c,"y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0463,"\u0079c\u0069\u0072\u0063\u006c\u0065":0x24e8,"y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x0177,"\u0079d\u0069\u0065\u0072\u0065\u0073\u0069s":0x00ff,"\u0079\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x1e8f,"\u0079d\u006f\u0074\u0062\u0065\u006c\u006fw":0x1ef5,"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c":0x064a,"\u0079e\u0068b\u0061\u0072\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063":0x06d2,"y\u0065h\u0062\u0061\u0072\u0072\u0065\u0065\u0066\u0069n\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfbaf,"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfef2,"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063":0x0626,"\u0079e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfe8a,"\u0079\u0065\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072a\u0062\u0069\u0063":0xfe8b,"\u0079e\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076e\u006de\u0064i\u0061\u006c\u0061\u0072\u0061\u0062\u0069c":0xfe8c,"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfef3,"y\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfef1,"y\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063":0xfcdd,"y\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063":0xfc58,"\u0079e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063":0xfc94,"\u0079\u0065\u0068th\u0072\u0065\u0065\u0064\u006f\u0074\u0073\u0062\u0065\u006c\u006f\u0077\u0061\u0072\u0061\u0062\u0069\u0063":0x06d1,"\u0079\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c":0xfc95,"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064":0xfc59,"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c":0xfcdb,"\u0079e\u0068\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d":0xfe89,"\u0079e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcda,"\u0079e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c":0xfcdc,"\u0079e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c":0xfc91,"\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3156,"\u0079\u0065\u006e":0x00a5,"\u0079\u0065\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xffe5,"\u0079e\u006f\u006b\u006f\u0072\u0065\u0061n":0x3155,"\u0079\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006bo\u0072\u0065\u0061\u006e":0x3186,"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077":0x05aa,"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x044b,"y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063":0x04f9,"\u0079\u0065\u0073\u0069\u0065\u0075\u006e\u0067\u006bo\u0072\u0065\u0061\u006e":0x3181,"y\u0065\u0073\u0069\u0065un\u0067p\u0061\u006e\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e":0x3183,"\u0079e\u0073i\u0065\u0075\u006e\u0067\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e":0x3182,"y\u0065\u0074\u0069\u0076\u0068\u0065\u0062\u0072\u0065\u0077":0x059a,"\u0079\u0067\u0072\u0061\u0076\u0065":0x1ef3,"\u0079\u0068\u006fo\u006b":0x01b4,"\u0079\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065":0x1ef7,"\u0079\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0575,"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0457,"\u0079\u0069\u006b\u006f\u0072\u0065\u0061\u006e":0x3162,"\u0079i\u006e\u0079\u0061\u006e\u0067":0x262f,"\u0079\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0582,"\u0079\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff59,"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077":0xfb39,"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077":0x05f2,"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb1f,"\u0079\u006f\u0067\u0068":0x0222,"\u0079\u006f\u0067\u0068\u0063\u0075\u0072\u006c":0x0223,"\u0079\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3088,"\u0079o\u0069\u006b\u006f\u0072\u0065\u0061n":0x3189,"\u0079\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e8,"\u0079\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff96,"\u0079\u006f\u006b\u006f\u0072\u0065\u0061\u006e":0x315b,"\u0079o\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3087,"\u0079o\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e7,"\u0079o\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6e,"\u0079\u006f\u0074\u0067\u0072\u0065\u0065\u006b":0x03f3,"y\u006f\u0079\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x3188,"\u0079\u006f\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e":0x3187,"\u0079o\u0079\u0061\u006b\u0074\u0068\u0061i":0x0e22,"\u0079\u006f\u0079\u0069\u006e\u0067\u0074\u0068\u0061\u0069":0x0e0d,"\u0079\u0070\u0061\u0072\u0065\u006e":0x24b4,"\u0079\u0070\u006f\u0067\u0065\u0067\u0072\u0061\u006d\u006d\u0065\u006e\u0069":0x037a,"y\u0070\u006f\u0067\u0065gr\u0061m\u006d\u0065\u006e\u0069\u0067r\u0065\u0065\u006b\u0063\u006d\u0062":0x0345,"\u0079\u0072":0x01a6,"\u0079\u0072\u0069n\u0067":0x1e99,"\u0079\u0073\u0075\u0070\u0065\u0072":0x0241,"\u0079s\u0075\u0070\u0065\u0072\u0069\u006fr":0x02b8,"\u0079\u0074\u0069\u006c\u0064\u0065":0x1ef9,"\u0079\u0074\u0075r\u006e":0x021e,"\u0079t\u0075\u0072\u006e\u0065\u0064":0x028e,"\u0079\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3086,"\u0079u\u0069\u006b\u006f\u0072\u0065\u0061n":0x318c,"\u0079\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e6,"\u0079\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff95,"\u0079\u0075\u006b\u006f\u0072\u0065\u0061\u006e":0x3160,"\u0079\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x046b,"\u0079\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063":0x046d,"\u0079\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063":0x0467,"\u0079u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c":0x0469,"\u0079u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3085,"\u0079u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30e5,"\u0079u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068":0xff6d,"\u0079\u0075\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e":0x318b,"y\u0075\u0079\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e":0x318a,"\u0079\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09df,"\u0079y\u0061\u0064\u0065\u0076\u0061":0x095f,"\u007a":0x007a,"\u007a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x0566,"\u007a\u0061\u0063\u0075\u0074\u0065":0x017a,"\u007a\u0061\u0064\u0065\u0076\u0061":0x095b,"\u007a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a5b,"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c":0x0638,"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063":0xfec6,"\u007a\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec7,"\u007a\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3056,"z\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfec5,"\u007aa\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfec8,"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063":0x0632,"\u007aa\u0069n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063":0xfeb0,"\u007a\u0061\u0069n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064":0xfeaf,"\u007a\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b6,"\u007a\u0061q\u0065\u0066\u0067a\u0064\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077":0x0595,"\u007a\u0061q\u0065\u0066\u0071a\u0074\u0061\u006e\u0068\u0065\u0062\u0072\u0065\u0077":0x0594,"z\u0061\u0072\u0071\u0061\u0068\u0065\u0062\u0072\u0065\u0077":0x0598,"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077":0xfb36,"\u007ab\u006f\u0070\u006f\u006d\u006f\u0066o":0x3117,"\u007a\u0063\u0061\u0072\u006f\u006e":0x017e,"\u007ac\u0069\u0072\u0063\u006c\u0065":0x24e9,"z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078":0x1e91,"\u007a\u0063\u006d\u0070":0x2a1f,"\u007a\u0063\u0075r\u006c":0x0291,"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074":0x017c,"\u007ad\u006f\u0074\u0062\u0065\u006c\u006fw":0x1e93,"\u007a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0499,"\u007ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063":0x04df,"\u007a\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305c,"\u007a\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30bc,"\u007a\u0065\u0072\u006f":0x0030,"z\u0065\u0072\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069":0x09e6,"\u007a\u0065\u0072\u006f\u0064\u0065\u0076\u0061":0x0966,"\u007a\u0065\u0072o\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069":0x0ae6,"\u007a\u0065\u0072o\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069":0x0a66,"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063":0x0660,"\u007a\u0065\u0072o\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072":0x2080,"\u007a\u0065\u0072\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff10,"\u007a\u0065\u0072o\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065":0xf730,"z\u0065\u0072\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e":0x06f0,"\u007a\u0065\u0072o\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072":0x2070,"\u007a\u0065\u0072\u006f\u0074\u0068\u0061\u0069":0x0e50,"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072":0xfeff,"\u007a\u0065\u0072\u006f\u0077\u0069\u0064\u0074\u0068s\u0070\u0061\u0063\u0065":0x200b,"\u007a\u0065\u0074\u0061":0x03b6,"\u007a\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f":0x3113,"z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e":0x056a,"\u007a\u0068\u0065\u0062\u0072\u0065\u0076\u0065":0x03fe,"\u007a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04c2,"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x0436,"z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063":0x0497,"\u007a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063":0x04dd,"\u007a\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x3058,"\u007a\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30b8,"z\u0069\u006e\u006f\u0072\u0068\u0065\u0062\u0072\u0065\u0077":0x05ae,"\u007a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077":0x1e95,"\u007a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065":0xff5a,"\u007a\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305e,"\u007a\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30be,"\u007a\u0070\u0061\u0072\u0065\u006e":0x24b5,"\u007a\u0070\u0069p\u0065":0x2a20,"\u007a\u0070\u0072\u006f\u006a\u0065\u0063\u0074":0x2a21,"\u007a\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b":0x0290,"\u007ar\u0074\u0068\u006f\u006f\u006b":0x0220,"\u007as\u0074\u0072\u006f\u006b\u0065":0x01b6,"\u007a\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061":0x305a,"\u007a\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061":0x30ba}); +func (_dag *differencesEncoding )Decode (raw []byte )string {_fec :=make ([]rune ,0,len (raw ));for _ ,_bda :=range raw {_cc ,_ :=_dag .CharcodeToRune (CharCode (_bda ));_fec =append (_fec ,_cc );};return string (_fec );};func (_ecd *differencesEncoding )ToPdfObject ()_bac .PdfObject {_bbbd :=_bac .MakeDict (); +_bbbd .Set ("\u0054\u0079\u0070\u0065",_bac .MakeName ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));_bbbd .Set ("\u0042\u0061\u0073e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_ecd ._cfc .ToPdfObject ());if _fbfb :=_bgb (_ecd ._dec );_fbfb !=nil {_bbbd .Set ("D\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073",_fbfb ); +}else {_ac .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0066\u006f\u006e\u0074\u0020\u0044\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073\u0020\u0061\u0072\u0072\u0061y\u0020i\u0073\u0020\u006e\u0069l\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +};return _bac .MakeIndirectObject (_bbbd );};func (_eef *charCodeGlyphNameMap )Length ()int {_eef ._ggd .RLock ();defer _eef ._ggd .RUnlock ();return len (_eef ._cb );};type UTF16Encoder struct{_fdab string };func (_abg CMapEncoder )RuneToCharcode (r rune )(CharCode ,bool ){if _abg ._fda ==nil {return 0,false ; +};_bbf ,_dda :=_abg ._fda .StringToCID (string (r ));if !_dda {return 0,false ;};if _abg ._bd !=nil {_cd ,_efa :=_abg ._bd .CIDToCharcode (_bbf );if !_efa {return 0,false ;};return CharCode (_cd ),true ;};return CharCode (_bbf ),true ;};func ExpandLigatures (runes []rune )string {var _bacc _ba .Buffer ; +for _ ,_dge :=range runes {_daac :=RuneToString (_dge );_bacc .WriteString (_daac );};return _bacc .String ();};func (_gc CMapEncoder )ToPdfObject ()_bac .PdfObject {if _gc ._gf !=""{return _bac .MakeName (_gc ._gf );};return _bac .MakeNull ();};func (_gaab *simpleEncoding )String ()string {return "\u0073i\u006dp\u006c\u0065\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0028"+_gaab ._dcca +"\u0029"; +};var _ccad =_ca .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'\'',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'`',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0x7f:'•',0x80:'€',0x81:'•',0x82:'‚',0x83:'ƒ',0x84:'„',0x85:'…',0x86:'†',0x87:'‡',0x88:'ˆ',0x89:'‰',0x8a:'Š',0x8b:'‹',0x8c:'Œ',0x8d:'•',0x8e:'Ž',0x8f:'•',0x90:'•',0x91:'‘',0x92:'’',0x93:'“',0x94:'”',0x95:'•',0x96:'–',0x97:'—',0x98:'˜',0x99:'™',0x9a:'š',0x9b:'›',0x9c:'œ',0x9d:'•',0x9e:'ž',0x9f:'Ÿ',0xa0:' ',0xa1:'¡',0xa2:'¢',0xa3:'£',0xa4:'¤',0xa5:'¥',0xa6:'¦',0xa7:'§',0xa8:'¨',0xa9:'©',0xaa:'ª',0xab:'«',0xac:'¬',0xad:'-',0xae:'®',0xaf:'¯',0xb0:'°',0xb1:'±',0xb2:'²',0xb3:'³',0xb4:'´',0xb5:'µ',0xb6:'¶',0xb7:'·',0xb8:'¸',0xb9:'¹',0xba:'º',0xbb:'»',0xbc:'¼',0xbd:'½',0xbe:'¾',0xbf:'¿',0xc0:'À',0xc1:'Á',0xc2:'Â',0xc3:'Ã',0xc4:'Ä',0xc5:'Å',0xc6:'Æ',0xc7:'Ç',0xc8:'È',0xc9:'É',0xca:'Ê',0xcb:'Ë',0xcc:'Ì',0xcd:'Í',0xce:'Î',0xcf:'Ï',0xd0:'Ð',0xd1:'Ñ',0xd2:'Ò',0xd3:'Ó',0xd4:'Ô',0xd5:'Õ',0xd6:'Ö',0xd7:'×',0xd8:'Ø',0xd9:'Ù',0xda:'Ú',0xdb:'Û',0xdc:'Ü',0xdd:'Ý',0xde:'Þ',0xdf:'ß',0xe0:'à',0xe1:'á',0xe2:'â',0xe3:'ã',0xe4:'ä',0xe5:'å',0xe6:'æ',0xe7:'ç',0xe8:'è',0xe9:'é',0xea:'ê',0xeb:'ë',0xec:'ì',0xed:'í',0xee:'î',0xef:'ï',0xf0:'ð',0xf1:'ñ',0xf2:'ò',0xf3:'ó',0xf4:'ô',0xf5:'õ',0xf6:'ö',0xf7:'÷',0xf8:'ø',0xf9:'ù',0xfa:'ú',0xfb:'û',0xfc:'ü',0xfd:'ý',0xfe:'þ',0xff:'ÿ'}); +func ApplyDifferences (base SimpleEncoder ,differences map[CharCode ]GlyphName )SimpleEncoder {if len (differences )==0{return base ;};_eca :=make ([]charCodeGlyphNameTuple ,len (differences ));var _db int ;for _bdc ,_cfg :=range differences {_eca [_db ]=charCodeGlyphNameTuple {CharCode :_bdc ,GlyphName :_cfg }; +_db ++;};_gag :=&differencesEncoding {_cfc :base ,_dec :_ae (_eca ...),_bfd :_ca .MakeByteRuneMap (len (differences )),_bacb :_ca .MakeRuneByteMap (len (differences ))};if _ggg ,_fdc :=base .(*differencesEncoding );_fdc {_cbd :=make (map[CharCode ]GlyphName ); +_ggg ._dec .Range (func (_dcc CharCode ,_cgc GlyphName )(_abf bool ){_cbd [_dcc ]=_cgc ;return false });_gag ._dec .Range (func (_agg CharCode ,_agf GlyphName )(_fdb bool ){_cbd [_agg ]=_agf ;return false });differences =_cbd ;};for _ebf ,_gac :=range differences {_dff :=byte (_ebf ); +_aba ,_cga :=GlyphToRune (_gac );if _cga {_gag ._bacb .Write (_aba ,_dff );}else {_ac .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u004e\u006f \u006d\u0061\u0074c\u0068\u0020\u0066\u006f\u0072\u0020\u0067\u006c\u0079ph\u003d\u0025\u0071 \u0064\u0069f\u0066\u0065\u0072\u0065\u006e\u0063e\u0073\u003d%\u002b\u0076",_gac ,differences ); +};_gag ._bfd .Write (_dff ,_aba );};return _gag ;};func (_ebd *IdentityEncoder )RuneToCharcode (r rune )(CharCode ,bool ){_ebd ._aef .Write (r );return CharCode (r ),true ;};func GlyphToRune (glyph GlyphName )(rune ,bool ){_bbe :=string (glyph );if _dc .Contains (_bbe ,"\u002e"){_debb :=_gba .FindStringSubmatch (_bbe ); +if _debb !=nil {_bbe =_debb [1];};};if _dae ,_gb :=_cdg .Read (_bbe );_gb {_bbe =_dae ;};if _efc ,_bgfd :=_eeb .Read (_bbe );_bgfd {return _efc ,true ;};if _ada ,_ccb :=_fgab .Read (_bbe );_ccb {return _ada ,true ;};if _agd :=_bed .FindStringSubmatch (_bbe ); +_agd !=nil {_eaa ,_aagc :=_b .ParseInt (_agd [1],16,32);if _aagc ==nil {return rune (_eaa ),true ;};};if _dgfg :=_cab .FindStringSubmatch (_bbe );_dgfg !=nil {_bef ,_ffd :=_b .Atoi (_dgfg [1]);if _ffd ==nil {return rune (_bef ),true ;};};return rune (0),false ; +};func (_cge *simpleEncoding )NewEncoder ()*_a .Encoder {return &_a .Encoder {Transformer :&simpleEncoder {_gdac :_cge ._edf }};};var (_ffff =_adf (_dadb ,_ccad ););func (_eeg *charCodeGlyphNameMap )Range (f func (_fe CharCode ,_ec GlyphName )(_fd bool )){_eeg ._ggd .RLock (); +defer _eeg ._ggd .RUnlock ();for _bf ,_bfe :=range _eeg ._cb {if f (_bf ,_bfe ){break ;};};};func NewIdentityTextEncoder (baseName string )*IdentityEncoder {return &IdentityEncoder {_gcd :baseName ,_aef :_ca .MakeRuneSet (0)};};type differencesEncoding struct{_cfc SimpleEncoder ; +_dec *charCodeGlyphNameMap ;_bfd *_ca .ByteRuneMap ;_bacb *_ca .RuneByteMap ;};func NewSymbolEncoder ()SimpleEncoder {return _abe .NewEncoder ()};const (MissingCodeRune ='\ufffd';MissingCodeString =string (MissingCodeRune ););func _ffb (_gdc TextEncoder ,_eead string )[]byte {_fga :=make ([]byte ,0,len (_eead )); +for _ ,_beac :=range _eead {_bcbd ,_afg :=_gdc .RuneToCharcode (_beac );if !_afg ||_bcbd > 0xff{_ac .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u006d\u0061\u0070\u0020\u0072\u0075\u006e\u0065\u0020\u0074\u006f\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0020\u0066\u006f\u0072\u0020\u0072\u0075\u006e\u0065\u0020\u0030\u0078\u0025\u0030\u0034\u0078",_beac ); +continue ;};_fga =append (_fga ,byte (_bcbd ));};return _fga ;};func (_efd *simpleEncoding )Encode (str string )[]byte {_abce ,_ :=_efd .NewEncoder ().Bytes ([]byte (str ));return _abce ;};func RuneToString (r rune )string {if _efce ,_bbfb :=_fcd .Read (r ); +_bbfb {return _efce ;};return string (r );};var (_cab =_gd .MustCompile ("\u005e\u005b\u0041\u002dZa\u002d\u007a\u005d\u0028\u005c\u0064\u007b\u0031\u002c\u0035\u007d\u0029\u0024");_bed =_gd .MustCompile ("\u005e\u0075\u006e\u0069\u0028\u005b\u005c\u0064\u0041\u002d\u0046\u005d{\u0034\u007d\u0029\u0024"); +_gba =_gd .MustCompile ("\u005e\u0028\u005cw\u002b\u0029\u005c\u002e\u005c\u0077\u002b\u0024"););var _fefe =_ca .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'\uf721',0x22:'\uf6f8',0x23:'\uf7a2',0x24:'\uf724',0x25:'\uf6e4',0x26:'\uf726',0x27:'\uf7b4',0x28:'⁽',0x29:'⁾',0x2a:'‥',0x2b:'․',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'⁄',0x30:'\uf730',0x31:'\uf731',0x32:'\uf732',0x33:'\uf733',0x34:'\uf734',0x35:'\uf735',0x36:'\uf736',0x37:'\uf737',0x38:'\uf738',0x39:'\uf739',0x3a:':',0x3b:';',0x3d:'\uf6de',0x3f:'\uf73f',0x44:'\uf7f0',0x47:'¼',0x48:'½',0x49:'¾',0x4a:'⅛',0x4b:'⅜',0x4c:'⅝',0x4d:'⅞',0x4e:'⅓',0x4f:'⅔',0x56:'ff',0x57:'fi',0x58:'fl',0x59:'ffi',0x5a:'ffl',0x5b:'₍',0x5d:'₎',0x5e:'\uf6f6',0x5f:'\uf6e5',0x60:'\uf760',0x61:'\uf761',0x62:'\uf762',0x63:'\uf763',0x64:'\uf764',0x65:'\uf765',0x66:'\uf766',0x67:'\uf767',0x68:'\uf768',0x69:'\uf769',0x6a:'\uf76a',0x6b:'\uf76b',0x6c:'\uf76c',0x6d:'\uf76d',0x6e:'\uf76e',0x6f:'\uf76f',0x70:'\uf770',0x71:'\uf771',0x72:'\uf772',0x73:'\uf773',0x74:'\uf774',0x75:'\uf775',0x76:'\uf776',0x77:'\uf777',0x78:'\uf778',0x79:'\uf779',0x7a:'\uf77a',0x7b:'₡',0x7c:'\uf6dc',0x7d:'\uf6dd',0x7e:'\uf6fe',0x81:'\uf6e9',0x82:'\uf6e0',0x87:'\uf7e1',0x88:'\uf7e0',0x89:'\uf7e2',0x8a:'\uf7e4',0x8b:'\uf7e3',0x8c:'\uf7e5',0x8d:'\uf7e7',0x8e:'\uf7e9',0x8f:'\uf7e8',0x90:'\uf7ea',0x91:'\uf7eb',0x92:'\uf7ed',0x93:'\uf7ec',0x94:'\uf7ee',0x95:'\uf7ef',0x96:'\uf7f1',0x97:'\uf7f3',0x98:'\uf7f2',0x99:'\uf7f4',0x9a:'\uf7f6',0x9b:'\uf7f5',0x9c:'\uf7fa',0x9d:'\uf7f9',0x9e:'\uf7fb',0x9f:'\uf7fc',0xa1:'⁸',0xa2:'₄',0xa3:'₃',0xa4:'₆',0xa5:'₈',0xa6:'₇',0xa7:'\uf6fd',0xa9:'\uf6df',0xaa:'₂',0xac:'\uf7a8',0xae:'\uf6f5',0xaf:'\uf6f0',0xb0:'₅',0xb2:'\uf6e1',0xb3:'\uf6e7',0xb4:'\uf7fd',0xb6:'\uf6e3',0xb9:'\uf7fe',0xbb:'₉',0xbc:'₀',0xbd:'\uf6ff',0xbe:'\uf7e6',0xbf:'\uf7f8',0xc0:'\uf7bf',0xc1:'₁',0xc2:'\uf6f9',0xc9:'\uf7b8',0xcf:'\uf6fa',0xd0:'‒',0xd1:'\uf6e6',0xd6:'\uf7a1',0xd8:'\uf7ff',0xda:'¹',0xdb:'²',0xdc:'³',0xdd:'⁴',0xde:'⁵',0xdf:'⁶',0xe0:'⁷',0xe1:'⁹',0xe2:'⁰',0xe4:'\uf6ec',0xe5:'\uf6f1',0xe6:'\uf6f3',0xe9:'\uf6ed',0xea:'\uf6f2',0xeb:'\uf6eb',0xf1:'\uf6ee',0xf2:'\uf6fb',0xf3:'\uf6f4',0xf4:'\uf7af',0xf5:'\uf6ea',0xf6:'ⁿ',0xf7:'\uf6ef',0xf8:'\uf6e2',0xf9:'\uf6e8',0xfa:'\uf6f7',0xfb:'\uf6fc'}); +func (_ebg *simpleEncoding )CharcodeToRune (code CharCode )(rune ,bool ){if code > 0xff{return MissingCodeRune ,false ;};_bace :=byte (code );_dcb ,_aad :=_ebg ._edfd .Read (_bace );if _ebg ._cgbd ==nil {_ebg ._cgbd =_ca .MakeRuneSet (1);};_ebg ._cgbd .Write (_dcb ); +return _dcb ,_aad ;};func (_cad *simpleEncoding )RuneToCharcode (r rune )(CharCode ,bool ){_abfb ,_bddc :=_cad ._edf .Read (r );if _cad ._cgbd ==nil {_cad ._cgbd =_ca .MakeRuneSet (1);};_cad ._cgbd .Write (r );return CharCode (_abfb ),_bddc ;};func (_aac *TrueTypeFontEncoder )RegisteredRunes ()[]rune {_fgce :=make ([]rune ,_aac ._fcdg .Length ()); +_aacd :=0;_aac ._fcdg .Range (func (_gdce rune )(_gdacc bool ){_fgce [_aacd ]=_gdce ;_aacd ++;return false });return _fgce ;};func NewTrueTypeFontEncoder (runeToGIDMap map[rune ]GID )*TrueTypeFontEncoder {_fcaf :=_ca .MakeRuneUint16Map (len (runeToGIDMap )); +for _cfgb ,_cdb :=range runeToGIDMap {_fcaf .Write (_cfgb ,uint16 (_cdb ));};return &TrueTypeFontEncoder {_afgd :_fcaf ,_fcdg :_ca .MakeRuneSet (0)};};var _cdfe =[...]_ca .StringsTuple {{Key :"\u0066\u005f\u0066",Value :"\u0066\u0066"},{Key :"\u0066\u005f\u0066_\u0069",Value :"\u0066\u0066\u0069"},{Key :"\u0066\u005f\u0066_\u006c",Value :"\u0066\u0066\u006c"},{Key :"\u0066\u005f\u0069",Value :"\u0066\u0069"},{Key :"\u0066\u005f\u006c",Value :"\u0066\u006c"},{Key :"a\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e",Value :"\u0041\u0045\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u006d\u0074\u0075r\u006e\u0064\u0065\u0073\u0063\u0065\u006e\u0064",Value :"\u0041d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0061\u0074\u0075r\u006e",Value :"\u0041\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"n\u006c\u0066\u0074\u006c\u0066\u0074\u0068\u006f\u006f\u006b",Value :"\u0041\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0075p\u0041\u006c\u0070\u0068\u0061",Value :"\u0041\u006c\u0070h\u0061"},{Key :"\u0049s\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0041\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0043\u0062\u0062",Value :"\u0042\u0062\u0062\u0043"},{Key :"\u0043\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0043"},{Key :"\u0048\u0062\u0062",Value :"\u0042\u0062\u0062\u0048"},{Key :"\u0048\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0048"},{Key :"\u004e\u0062\u0062",Value :"\u0042\u0062\u0062\u004e"},{Key :"\u004e\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u004e"},{Key :"\u0050\u0062\u0062",Value :"\u0042\u0062\u0062\u0050"},{Key :"\u0050\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0050"},{Key :"\u0051\u0062\u0062",Value :"\u0042\u0062\u0062\u0051"},{Key :"\u0051\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0051"},{Key :"\u0052\u0062\u0062",Value :"\u0042\u0062\u0062\u0052"},{Key :"\u0052\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u0052"},{Key :"\u005a\u0062\u0062",Value :"\u0042\u0062\u0062\u005a"},{Key :"\u005a\u0064\u0062\u006c\u0073\u0074\u0072\u0075\u0063\u006b",Value :"\u0042\u0062\u0062\u005a"},{Key :"\u0075\u0070\u0042\u0065\u0074\u0061",Value :"\u0042\u0065\u0074\u0061"},{Key :"\u004f\u0049",Value :"\u0042t\u006f\u0070\u0062\u0061\u0072"},{Key :"\u0048m\u0061\u0063\u0072\u006f\u006e",Value :"\u0043\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0043\u0064\u006f\u0074",Value :"\u0043\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0043\u0068\u0065",Value :"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00341",Value :"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"l\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",Value :"C\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063"},{Key :"\u0075\u0070\u0043h\u0069",Value :"\u0043\u0068\u0069"},{Key :"\u0079\u0075\u0073\u0062\u0069\u0067",Value :"\u0043\u0068\u0069"},{Key :"\u0067\u0063\u0075\u0072\u0073\u0069\u0076\u0065",Value :"\u0044\u005a"},{Key :"\u0047\u0062\u0061\u0072",Value :"\u0044Z\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0044\u0073\u006c\u0061\u0073\u0068",Value :"\u0044\u0063\u0072\u006f\u0061\u0074"},{Key :"\u0044\u0065",Value :"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00321",Value :"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u004b\u0068\u0061\u0072\u0074\u0064\u0065\u0073",Value :"\u0044e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0069n\u0063\u0072\u0065\u006d\u0065\u006et",Value :"\u0044\u0065\u006ct\u0061"},{Key :"\u0075p\u0044\u0065\u006c\u0074\u0061",Value :"\u0044\u0065\u006c\u0074\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0065\u0073\u0068\u006c\u006f\u006f\u0070\u0072\u0065\u0076",Value :"\u0044\u0068\u006fo\u006b"},{Key :"\u006d\u0062\u0066\u0064\u0069\u0067\u0061\u006d\u006d\u0061",Value :"\u0044i\u0067\u0061\u006d\u006d\u0061"},{Key :"\u0047e\u004b\u0061\u0072\u0065\u0076",Value :"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u0044\u0069\u0067\u0061\u006d\u006da",Value :"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0047s\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0044\u007a"},{Key :"\u0067\u0062\u0061\u0072",Value :"\u0044z\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0044\u007a\u0068\u0065",Value :"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00345",Value :"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045\u0063\u0079\u0072\u0069\u006c",Value :"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00353",Value :"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u004es\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0045d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0045\u0064\u006f\u0074",Value :"\u0045\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u004f\u0045\u0073\u006d\u0061\u006c\u006c\u0063\u0061\u0070",Value :"\u0045\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0045\u006c",Value :"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00329",Value :"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045\u006d",Value :"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00330",Value :"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u004e\u0067",Value :"\u0045\u006e\u0067"},{Key :"\u006b\u0072\u0061",Value :"\u0045o\u0067\u006f\u006e\u0065\u006b"},{Key :"\u0075p\u0045\u0070\u0073\u0069\u006c\u006fn",Value :"\u0045p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0073\u0074\u0072\u0069\u0063\u0074\u0065\u0071\u0075\u0069\u0076\u0061l\u0065\u006e\u0063\u0065",Value :"\u0045\u0071\u0075i\u0076"},{Key :"\u0054r\u0074\u0068\u006f\u006f\u006b",Value :"\u0045r\u0065\u0076\u0065\u0072\u0073\u0065d"},{Key :"\u0045c\u0079\u0072\u0069\u006c\u0072\u0065v",Value :"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00347",Value :"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u0045t\u0061",Value :"\u0045\u0074\u0061"},{Key :"\u0045\u0075\u006ce\u0072",Value :"\u0045\u0075\u006c\u0065\u0072\u0063\u006f\u006e\u0073\u0074"},{Key :"\u0065\u0075\u0072\u006f",Value :"\u0045\u0075\u0072\u006f"},{Key :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0072\u0065\u0076\u0063l\u006f\u0073\u0065\u0064",Value :"\u0045\u007a\u0068\u0063\u0061\u0072\u006f\u006e"},{Key :"\u004f\u0068\u006fo\u006b",Value :"\u0046e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0032",Value :"\u0046\u0068\u006fo\u006b"},{Key :"\u0046\u0074\u0075r\u006e",Value :"\u0046\u0069\u006e\u0076"},{Key :"\u0046\u0046\u0049\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046\u0046\u004c\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046F\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046I\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0046L\u0073\u006d\u0061\u006c\u006c",Value :"\u0046\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0062a\u0062\u0079\u0067\u0061\u006d\u006da",Value :"\u0047\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0075p\u0047\u0061\u006d\u006d\u0061",Value :"\u0047\u0061\u006dm\u0061"},{Key :"\u0055\u0073\u0074r\u0074",Value :"\u0047\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0064r\u0074\u0068\u006f\u006f\u006b",Value :"\u0047\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0047\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u0047\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0047\u0064\u006f\u0074",Value :"\u0047\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0047\u0065",Value :"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00320",Value :"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0047\u0065\u0075\u0070\u0074\u0075\u0072\u006e",Value :"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00350",Value :"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0047\u0061\u006d\u0065",Value :"\u0047\u006d\u0069\u0072"},{Key :"\u006f\u0067\u006f\u006e\u0065\u006b\u006e\u006f\u0073\u0070",Value :"\u0047\u0073\u006d\u0061\u006c\u006c\u0068\u006f\u006f\u006b"},{Key :"\u0063\u0074\u0075r\u006e",Value :"\u0047s\u0074\u0072\u006f\u006b\u0065"},{Key :"w\u0068\u0069\u0074\u0065\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u0062\u006f\u0078",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0048\u0032\u0032\u0030\u0037\u0033"},{Key :"\u0054e\u0072\u0074\u0064\u0065\u0073",Value :"\u0048\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0049\u006e\u006f\u0064\u006f\u0074",Value :"\u0049"},{Key :"\u0079o\u0067\u0068\u0068\u0061\u0063\u0065k",Value :"\u0049\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0049\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0049\u0064\u006f\u0074"},{Key :"\u0049\u0065",Value :"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00322",Value :"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0049\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0049\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0049\u006d",Value :"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0049\u0069",Value :"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00326",Value :"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"r\u0074\u0075\u0072\u006e\u0061\u0073\u0063\u0065\u006e\u0064",Value :"\u0049\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0049\u006f",Value :"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00323",Value :"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u0049\u006f\u0074\u0061",Value :"\u0049\u006f\u0074\u0061"},{Key :"\u007a\u0062\u0061\u0072",Value :"I\u006f\u0074\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e"},{Key :"\u0059\u006f\u0067\u0068",Value :"\u0049s\u0074\u0072\u006f\u006b\u0065"},{Key :"\u0075p\u004b\u0061\u0070\u0070\u0061",Value :"\u004b\u0061\u0070p\u0061"},{Key :"\u0065\u0072\u0065\u0076",Value :"\u004b\u0063\u0061\u0072\u006f\u006e"},{Key :"\u004b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u004b\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u004b\u0068\u0061",Value :"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00339",Value :"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045s\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u004b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0059o\u0067\u0068\u0072\u0065\u0076",Value :"\u004b\u0068\u006fo\u006b"},{Key :"\u004b\u006a\u0065",Value :"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00361",Value :"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0045n\u0072\u0074\u0064\u0065\u0073",Value :"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u004b\u006f\u0070\u0070\u0061",Value :"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0067\u0068\u0061\u0063\u0065\u006b",Value :"\u004c\u004a"},{Key :"\u0075\u0070\u004c\u0061\u006d\u0062\u0064\u0061",Value :"\u004c\u0061\u006d\u0062\u0064\u0061"},{Key :"\u004c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u004c\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0067c\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u004cc\u0065\u0064\u0069\u006c\u006c\u00611"},{Key :"\u004c\u0064\u006f\u0074",Value :"\u004c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u004b\u0068\u0061\u0063\u0065\u006b",Value :"\u004c\u006a"},{Key :"\u004c\u006a\u0065",Value :"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00358",Value :"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u004d\u0075",Value :"\u004d\u0075"},{Key :"\u0074m\u0061\u0063\u0072\u006f\u006e",Value :"\u004e\u0063\u0061\u0072\u006f\u006e"},{Key :"\u004e\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"t\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074",Value :"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u006e\u0065",Value :"\u004ee\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0075\u0070\u004e\u0075",Value :"\u004e\u0075"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u006e\u0077",Value :"\u004ew\u0061\u0072\u0072\u006f\u0077"},{Key :"\u004f\u0063\u0079\u0072\u0069\u006c",Value :"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00332",Value :"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u004f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",Value :"\u004fd\u0062\u006c\u0061\u0063\u0075\u0074e"},{Key :"\u0072\u0064\u0065\u0073\u0063\u0065\u006e\u0064",Value :"\u004fd\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0070\u0069\u0070\u0065",Value :"\u004f\u0068\u006fr\u006e"},{Key :"\u0070\u0069\u0070\u0065\u0064\u0062\u006c\u0062\u0061\u0072",Value :"\u004f\u0069"},{Key :"\u004f\u0068\u006d",Value :"\u004f\u006d\u0065g\u0061"},{Key :"\u006f\u0068\u006d",Value :"\u004f\u006d\u0065g\u0061"},{Key :"\u0075p\u004f\u006d\u0065\u0067\u0061",Value :"\u004f\u006d\u0065\u0067\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u006d\u0068\u006f",Value :"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076"},{Key :"o\u0068\u006d\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064",Value :"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076"},{Key :"\u0075p\u004f\u006d\u0069\u0063\u0072\u006fn",Value :"\u004fm\u0069\u0063\u0072\u006f\u006e"},{Key :"\u0079\u0061\u0074",Value :"\u004fm\u0069\u0063\u0072\u006f\u006e"},{Key :"e\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0072\u0065\u0076",Value :"\u004f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0059\u0052",Value :"\u004f\u006f\u0070e\u006e"},{Key :"\u004f\u0073\u0074r\u006f\u006b\u0065\u0061\u0063\u0075\u0074\u0065",Value :"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u006c\u0079\u006fg\u0068",Value :"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0059\u0075\u0073\u0062\u0069\u0067",Value :"\u0050\u0068\u0069"},{Key :"\u0075\u0070\u0050h\u0069",Value :"\u0050\u0068\u0069"},{Key :"\u0044Z\u0068\u0061\u0063\u0065\u006b",Value :"\u0050\u0068\u006fo\u006b"},{Key :"\u0075\u0070\u0050\u0069",Value :"\u0050\u0069"},{Key :"\u0070\u006c\u0061\u006e\u0063\u006b",Value :"P\u006c\u0061\u006e\u0063\u006b\u0063\u006f\u006e\u0073\u0074"},{Key :"\u0075\u0070\u0050s\u0069",Value :"\u0050\u0073\u0069"},{Key :"\u0065\u006e\u0064\u006f\u0066\u0070\u0072\u006f\u006f\u0066",Value :"\u0051\u0045\u0044"},{Key :"\u0065\u006f\u0070",Value :"\u0051\u0045\u0044"},{Key :"\u0052\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0052\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0052s\u006d\u0061\u006c\u006c\u0063\u0061p",Value :"\u0052d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0052\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0052\u0065",Value :"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0052\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072"},{Key :"\u0075\u0070\u0052h\u006f",Value :"\u0052\u0068\u006f"},{Key :"\u0073r\u0074\u0068\u006f\u006f\u006b",Value :"\u0052\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u006ci\u006ee\u0076\u0065\u0072\u0074\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u0052\u0073\u006d\u0061\u006c\u006c\u0069\u006e\u0076e\u0072\u0074\u0065\u0064"},{Key :"\u0047\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073",Value :"\u0053"},{Key :"\u0053\u0053",Value :"\u0053"},{Key :"\u0032\u0035\u0030\u0063",Value :"\u0053\u0046\u0030\u0031\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0033\u0063",Value :"\u0053\u0046\u0030\u0035\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0032\u0063",Value :"\u0053\u0046\u0030\u0036\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0031\u0063",Value :"\u0053\u0046\u0030\u0038\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0064",Value :"\u0053\u0046\u0032\u0036\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0063",Value :"\u0053\u0046\u0032\u0037\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0062",Value :"\u0053\u0046\u0032\u0038\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0065",Value :"\u0053\u0046\u0033\u0036\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0066",Value :"\u0053\u0046\u0033\u0037\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0035\u0061",Value :"\u0053\u0046\u0033\u0038\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0036\u0063",Value :"\u0053\u0046\u0034\u0034\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0036\u0062",Value :"\u0053\u0046\u0035\u0033\u0030\u0030\u0030\u0030"},{Key :"\u0032\u0035\u0036\u0061",Value :"\u0053\u0046\u0035\u0034\u0030\u0030\u0030\u0030"},{Key :"\u0045\u006e\u0047\u0065",Value :"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u0053\u0061\u006d\u0070\u0069",Value :"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0062\u0062\u0061\u0072",Value :"\u0053\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0063i\u0072\u0063\u006c\u0065\u0053",Value :"\u0053c\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0074r\u0074\u0068\u006f\u006f\u006b",Value :"\u0053\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0073\u0065",Value :"\u0053e\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0053\u0068\u0061",Value :"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00342",Value :"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0050\u0065\u0068\u006f\u006f\u006b",Value :"\u0053\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0055\u0073\u0074\u0072\u0074\u0062\u0061\u0072",Value :"S\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0075p\u0053\u0069\u0067\u006d\u0061",Value :"\u0053\u0069\u0067m\u0061"},{Key :"\u0047e\u0072m\u0061\u006e\u0064\u0062\u006c\u0073\u0073\u006d\u0061\u006c\u006c",Value :"\u0053\u0073\u006d\u0061\u006c\u006c"},{Key :"\u0053S\u0073\u006d\u0061\u006c\u006c",Value :"\u0053\u0073\u006d\u0061\u006c\u006c"},{Key :"\u004b\u0061\u0062a\u0072",Value :"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0070\u0053\u0074\u0069\u0067\u006d\u0061",Value :"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0073\u0077",Value :"\u0053w\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0075\u0070\u0054a\u0075",Value :"\u0054\u0061\u0075"},{Key :"\u004bc\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u0054c\u0065\u0064\u0069\u006c\u006c\u00611"},{Key :"\u0054\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u0054\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0075p\u0054\u0068\u0065\u0074\u0061",Value :"\u0054\u0068\u0065t\u0061"},{Key :"\u0061\u0068\u0061\u0063\u0065\u006b",Value :"\u0054\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b"},{Key :"\u0054\u0073\u0065",Value :"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00340",Value :"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0054\u0073\u0068\u0065",Value :"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00360",Value :"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0055\u0063\u0079\u0072\u0069\u006c",Value :"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00337",Value :"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"j\u0068\u006f\u006f\u006b\u0064\u0062\u006c\u0062\u0061\u0072",Value :"\u0055d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0061\u0061\u0063\u0075\u0074\u0065\u0072\u0069\u006e\u0067",Value :"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065"},{Key :"\u0049\u0068\u0061\u0063\u0065\u006b",Value :"\u0055\u0068\u006fr\u006e"},{Key :"\u0045\u0070\u0073\u0069\u006c\u006f\u006e\u0031",Value :"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074"},{Key :"\u0055d\u0062\u006c\u0061\u0063\u0075\u0074e",Value :"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074"},{Key :"\u0066s\u0063\u0072\u0069\u0070\u0074",Value :"\u0055o\u0067\u006f\u006e\u0065\u006b"},{Key :"\u0075p\u0055\u0070\u0073\u0069\u006c\u006fn",Value :"\u0055p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006f\u006c",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u005a\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u007a\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"U\u0070\u0073\u0069\u006c\u006f\u006ea\u0063\u0075\u0074\u0065\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006fl\u0067r\u0065\u0065\u006b"},{Key :"\u004f\u0068\u0061\u0063\u0065\u006b",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0061\u0066r\u0069\u0063\u0061\u006e"},{Key :"\u005ae\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u0068\u006f\u006fk\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0045\u0074\u0075r\u006e",Value :"\u0055\u0072\u0069n\u0067"},{Key :"U\u0063\u0079\u0072\u0069\u006c\u0062\u0072\u0065\u0076\u0065",Value :"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00362",Value :"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0066o\u0072\u0063\u0065\u0065\u0078\u0074r",Value :"\u0056\u0044\u0061s\u0068"},{Key :"\u006f\u0068\u0061\u0063\u0065\u006b",Value :"\u0056\u0068\u006fo\u006b"},{Key :"\u0047\u0061\u006d\u006d\u0061\u0031",Value :"W\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078"},{Key :"\u0059\u0061\u0074",Value :"\u0058\u0069"},{Key :"\u0075\u0070\u0058\u0069",Value :"\u0058\u0069"},{Key :"\u0049\u006f\u0074a\u0031",Value :"Y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078"},{Key :"\u0055\u0068\u0061\u0063\u0065\u006b",Value :"\u0059\u0068\u006fo\u006b"},{Key :"\u0059\u0069",Value :"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00356",Value :"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u004e\u0068\u006fo\u006b",Value :"\u005a\u0063\u0061\u0072\u006f\u006e"},{Key :"\u005a\u0064\u006f\u0074",Value :"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u006ca\u006d\u0062\u0064\u0061\u0062\u0061r",Value :"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0075\u0070\u005a\u0065\u0074\u0061",Value :"\u005a\u0065\u0074\u0061"},{Key :"\u0074\u0065\u006c\u0065\u0070\u0068\u006f\u006e\u0065b\u006c\u0061\u0063\u006b",Value :"\u0061\u0034"},{Key :"\u006da\u006c\u0074\u0065\u0073\u0065",Value :"\u0061\u0039"},{Key :"\u006d\u0061\u006ct\u0065\u0073\u0065\u0063\u0072\u006f\u0073\u0073",Value :"\u0061\u0039"},{Key :"\u0070\u006f\u0069nt\u0069\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065",Value :"\u0061\u0031\u0032"},{Key :"\u0063h\u0065\u0063\u006b\u006d\u0061\u0072k",Value :"\u0061\u0031\u0039"},{Key :"\u0062i\u0067\u0073\u0074\u0061\u0072",Value :"\u0061\u0033\u0035"},{Key :"\u0062l\u0061\u0063\u006b\u0073\u0074\u0061r",Value :"\u0061\u0033\u0035"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u0064\u0073\u0074\u0061\u0072",Value :"\u0061\u0033\u0037"},{Key :"\u0076a\u0072\u0073\u0074\u0061\u0072",Value :"\u0061\u0034\u0039"},{Key :"\u0064\u0069\u006eg\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b",Value :"\u0061\u0035\u0036"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u0073\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0031"},{Key :"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0037\u0031"},{Key :"\u0062\u0075\u006cl\u0065\u0074\u0061\u006c\u0074\u006f\u006e\u0065",Value :"\u0061\u0037\u0031"},{Key :"b\u006c\u0061\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0037\u0031"},{Key :"\u0048\u0031\u0038\u0035\u0033\u0033",Value :"\u0061\u0037\u0031"},{Key :"\u0066i\u006c\u006c\u0065\u0064\u0062\u006fx",Value :"\u0061\u0037\u0033"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0073\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0033"},{Key :"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0061\u0037\u0033"},{Key :"b\u006c\u0061\u0063\u006b\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0061\u0037\u0033"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0036"},{Key :"\u0062\u006c\u0061ck\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0061\u0037\u0036"},{Key :"\u0062i\u0067b\u006c\u0061\u0063\u006b\u0074r\u0069\u0061n\u0067\u006c\u0065\u0075\u0070",Value :"\u0061\u0037\u0036"},{Key :"\u0074r\u0069\u0061\u0067\u0075\u0070",Value :"\u0061\u0037\u0036"},{Key :"\u0062l\u0061\u0063\u006b\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",Value :"\u0061\u0037\u0037"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e\u0073\u006c\u0064",Value :"\u0061\u0037\u0037"},{Key :"\u0074r\u0069\u0061\u0067\u0064\u006e",Value :"\u0061\u0037\u0037"},{Key :"b\u0069g\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069a\u006e\u0067\u006c\u0065do\u0077\u006e",Value :"\u0061\u0037\u0037"},{Key :"\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0072\u0068\u006f\u006d\u0062s\u006f\u006c\u0069\u0064",Value :"\u0061\u0037\u0038"},{Key :"\u0062\u006c\u0061c\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064",Value :"\u0061\u0037\u0038"},{Key :"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u0064\u0069a\u006d\u006f\u006e\u0064",Value :"\u0061\u0037\u0038"},{Key :"\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u006c\u0065r\u0074\u0073\u006c\u0064",Value :"\u0061\u0038\u0031"},{Key :"b\u006ca\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0068a\u006c\u0066\u0063\u0069rc\u006c\u0065",Value :"\u0061\u0038\u0031"},{Key :"\u006fn\u0065\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0030"},{Key :"\u0074w\u006f\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0031"},{Key :"t\u0068\u0072\u0065\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0032"},{Key :"\u0066\u006f\u0075\u0072\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0033"},{Key :"\u0066\u0069\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0034"},{Key :"\u0073i\u0078\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0035"},{Key :"s\u0065\u0076\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0036"},{Key :"e\u0069\u0067\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0037"},{Key :"\u006e\u0069\u006e\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0061\u0031\u0032\u0038"},{Key :"\u0074e\u006e\u0063\u0069\u0072\u0063\u006ce",Value :"\u0061\u0031\u0032\u0039"},{Key :"\u006fn\u0065\u0063\u0069\u0072c\u006c\u0065\u0069\u006e\u0076e\u0072s\u0065s\u0061\u006e\u0073\u0073\u0065\u0072\u0069f",Value :"\u0061\u0031\u0035\u0030"},{Key :"\u0074w\u006f\u0063\u0069\u0072c\u006c\u0065\u0069\u006e\u0076e\u0072s\u0065s\u0061\u006e\u0073\u0073\u0065\u0072\u0069f",Value :"\u0061\u0031\u0035\u0031"},{Key :"t\u0068\u0072\u0065\u0065\u0063\u0069r\u0063\u006c\u0065\u0069\u006e\u0076\u0065\u0072\u0073e\u0073\u0061\u006es\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0032"},{Key :"\u0066\u006f\u0075\u0072\u0063\u0069\u0072\u0063\u006c\u0065\u0069n\u0076\u0065\u0072\u0073\u0065\u0073\u0061\u006e\u0073\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0033"},{Key :"\u0066\u0069\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065\u0069n\u0076\u0065\u0072\u0073\u0065\u0073\u0061\u006e\u0073\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0034"},{Key :"\u0073i\u0078\u0063\u0069\u0072c\u006c\u0065\u0069\u006e\u0076e\u0072s\u0065s\u0061\u006e\u0073\u0073\u0065\u0072\u0069f",Value :"\u0061\u0031\u0035\u0035"},{Key :"s\u0065\u0076\u0065\u006e\u0063\u0069r\u0063\u006c\u0065\u0069\u006e\u0076\u0065\u0072\u0073e\u0073\u0061\u006es\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0036"},{Key :"e\u0069\u0067\u0068\u0074\u0063\u0069r\u0063\u006c\u0065\u0069\u006e\u0076\u0065\u0072\u0073e\u0073\u0061\u006es\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0037"},{Key :"\u006e\u0069\u006e\u0065\u0063\u0069\u0072\u0063\u006c\u0065\u0069n\u0076\u0065\u0072\u0073\u0065\u0073\u0061\u006e\u0073\u0073e\u0072\u0069\u0066",Value :"\u0061\u0031\u0035\u0038"},{Key :"u\u0070\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0031\u0036\u0034"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068\u0076",Value :"\u0061\u0031\u0036\u0034"},{Key :"\u0061r\u0072\u006f\u0077\u0075\u0070\u0064n",Value :"\u0061\u0031\u0036\u0034"},{Key :"\u0064\u0072\u0061\u0066\u0074\u0069\u006e\u0067\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0031\u0036\u0036"},{Key :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0068\u0065\u0061\u0076\u0079",Value :"\u0061\u0031\u0036\u0039"},{Key :"\u0059o\u0067\u0068\u0068\u0061\u0063\u0065k",Value :"\u0061\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0063\u006d\u0062",Value :"\u0061c\u0075\u0074\u0065\u0063\u006f\u006db"},{Key :"\u0061r\u0072o\u0077\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077",Value :"\u0061c\u0077o\u0070\u0065\u006e\u0063\u0069r\u0063\u006ce\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0075p\u0073l\u006f\u0070\u0065\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0061\u0064\u006ft\u0073"},{Key :"\u006cr\u0074\u0068\u006f\u006f\u006b",Value :"\u0061e\u0061\u0063\u0075\u0074\u0065"},{Key :"l\u0065\u0066\u0074\u0074\u006f\u0072\u0069\u0067\u0068\u0074",Value :"\u0061f\u0069\u0069\u0032\u0039\u0039"},{Key :"r\u0069\u0067\u0068\u0074\u0074\u006f\u006c\u0065\u0066\u0074",Value :"\u0061f\u0069\u0069\u0033\u0030\u0030"},{Key :"\u007a\u0065\u0072\u006f\u006a\u006f\u0069\u006e",Value :"\u0061f\u0069\u0069\u0033\u0030\u0031"},{Key :"\u0041\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317"},{Key :"\u0041c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317"},{Key :"\u0042\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318"},{Key :"\u0042\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318"},{Key :"\u0056\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319"},{Key :"\u0056\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319"},{Key :"\u005a\u0068\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324"},{Key :"Z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324"},{Key :"\u005a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325"},{Key :"\u005a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325"},{Key :"\u0049i\u0062\u0072\u0065\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327"},{Key :"\u0049i\u0073h\u006f\u0072\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327"},{Key :"\u004b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328"},{Key :"\u004b\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328"},{Key :"\u0045\u006e",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331"},{Key :"\u0045\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331"},{Key :"\u0050e\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333"},{Key :"\u0050\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333"},{Key :"\u0045\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334"},{Key :"\u0045\u0072",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334"},{Key :"\u0045\u0073",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335"},{Key :"\u0045\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335"},{Key :"\u0054\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336"},{Key :"\u0054\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336"},{Key :"\u0045\u0066\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338"},{Key :"\u0045\u0066",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338"},{Key :"\u0053\u0068\u0063\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343"},{Key :"\u0053\u0068\u0063h\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343"},{Key :"\u0048\u0061\u0072\u0064",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344"},{Key :"\u0048\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344"},{Key :"\u0059\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345"},{Key :"\u0059\u0065\u0072\u0069",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345"},{Key :"\u0053\u006f\u0066\u0074",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346"},{Key :"\u0053\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346"},{Key :"\u0049\u0075",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348"},{Key :"\u0049\u0055\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348"},{Key :"\u0049\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349"},{Key :"\u0049\u0041\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349"},{Key :"\u0044\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351"},{Key :"D\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351"},{Key :"\u0047\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352"},{Key :"G\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352"},{Key :"\u0044\u007a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354"},{Key :"D\u007a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354"},{Key :"\u0049\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355"},{Key :"\u0049c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355"},{Key :"\u004a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357"},{Key :"\u004a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357"},{Key :"\u004e\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359"},{Key :"N\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359"},{Key :"\u0061c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365"},{Key :"\u0061\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365"},{Key :"\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367"},{Key :"\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367"},{Key :"\u0067\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368"},{Key :"\u0067\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368"},{Key :"\u0064\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369"},{Key :"\u0064\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369"},{Key :"\u0069\u006f",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371"},{Key :"\u0069\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371"},{Key :"\u007a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373"},{Key :"\u007a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373"},{Key :"\u0069i\u0062\u0072\u0065\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375"},{Key :"\u0069i\u0073h\u006f\u0072\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375"},{Key :"\u0065\u006e",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379"},{Key :"\u0065\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379"},{Key :"\u0074\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384"},{Key :"\u0074\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384"},{Key :"\u0075c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385"},{Key :"\u0075\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385"},{Key :"\u0065\u0066\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386"},{Key :"\u0065\u0066",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386"},{Key :"\u006b\u0068\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387"},{Key :"k\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387"},{Key :"s\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390"},{Key :"\u0073\u0068\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390"},{Key :"\u0073\u0068\u0063\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391"},{Key :"\u0073\u0068\u0063h\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391"},{Key :"\u0069\u0075",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396"},{Key :"\u0069\u0075\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396"},{Key :"\u0069\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397"},{Key :"\u0069\u0061",Value :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397"},{Key :"d\u007a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302"},{Key :"\u0064\u007a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302"},{Key :"\u0069c\u0079\u0072\u0069\u006c\u006c\u0069c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303"},{Key :"\u0069\u0063\u0079\u0072\u0069\u006c",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303"},{Key :"\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305"},{Key :"\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305"},{Key :"n\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307"},{Key :"\u006e\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307"},{Key :"k\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309"},{Key :"\u006b\u006a\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309"},{Key :"\u0075\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310"},{Key :"u\u0063\u0079\u0072\u0069\u006c\u0062\u0072\u0065\u0076\u0065",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310"},{Key :"Y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00346"},{Key :"\u0046\u0069\u0074a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00347"},{Key :"\u0049z\u0068i\u0074\u0073\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00348"},{Key :"\u0066\u0069\u0074a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00395"},{Key :"\u0069z\u0068i\u0074\u0073\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00390",Value :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396"},{Key :"a\u0072\u0061\u0062\u0069\u0063\u0063\u006f\u006d\u006d\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388"},{Key :"c\u006f\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388"},{Key :"t\u0068\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395"},{Key :"\u0074h\u0072e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395"},{Key :"a\u0072\u0061\u0062\u0069ci\u006ed\u0069\u0063\u0064\u0069\u0067i\u0074\u0074\u0068\u0072\u0065\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395"},{Key :"\u0073\u0069\u0078\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398"},{Key :"\u0061\u0072\u0061\u0062ic\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0073\u0069\u0078",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398"},{Key :"\u0073i\u0078\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398"},{Key :"\u0073e\u0076e\u006e\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399"},{Key :"a\u0072\u0061\u0062\u0069ci\u006ed\u0069\u0063\u0064\u0069\u0067i\u0074\u0073\u0065\u0076\u0065\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399"},{Key :"s\u0065\u0076\u0065\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399"},{Key :"\u0061r\u0061b\u0069\u0063\u0073\u0065\u006d\u0069\u0063\u006f\u006c\u006f\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303"},{Key :"\u0073e\u006di\u0063\u006f\u006c\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303"},{Key :"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307"},{Key :"\u0061r\u0061b\u0069\u0063\u0071\u0075\u0065s\u0074\u0069o\u006e\u006d\u0061\u0072\u006b",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307"},{Key :"a\u006ce\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062o\u0076\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310"},{Key :"\u0061l\u0065f\u0077\u0069\u0074\u0068\u006da\u0064\u0064a\u0061\u0062\u006f\u0076\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310"},{Key :"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062o\u0076\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311"},{Key :"\u0061l\u0065f\u0077\u0069\u0074\u0068\u0068a\u006d\u007aa\u0061\u0062\u006f\u0076\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311"},{Key :"\u0077\u0061\u0077\u0077\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061a\u0062\u006f\u0076\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312"},{Key :"\u0077\u0061\u0077\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312"},{Key :"\u0074\u0065\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318"},{Key :"\u0074e\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318"},{Key :"\u0068\u0061\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321"},{Key :"\u0068a\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321"},{Key :"\u006b\u0068\u0061\u0068\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322"},{Key :"\u006b\u0068\u0061\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322"},{Key :"\u0064a\u006c\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323"},{Key :"\u0064\u0061\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323"},{Key :"\u0073\u0065\u0065\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327"},{Key :"\u0073\u0065\u0065\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327"},{Key :"s\u0068\u0065\u0065\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328"},{Key :"\u0073\u0068\u0065e\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328"},{Key :"\u0073a\u0064\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329"},{Key :"\u0073\u0061\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329"},{Key :"\u0064\u0061\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330"},{Key :"\u0064a\u0064\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330"},{Key :"\u0061i\u006e\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333"},{Key :"\u0061\u0069\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333"},{Key :"\u0066e\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341"},{Key :"\u0066\u0065\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341"},{Key :"\u0071\u0061\u0066",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342"},{Key :"\u0071a\u0066\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342"},{Key :"\u0061r\u0061\u0062\u0069\u0063\u006b\u0061f",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343"},{Key :"\u006ba\u0066\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343"},{Key :"\u006c\u0061\u006d",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344"},{Key :"\u006ca\u006d\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344"},{Key :"\u006d\u0065\u0065\u006d",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345"},{Key :"\u006d\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345"},{Key :"\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351"},{Key :"\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351"},{Key :"\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352"},{Key :"\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352"},{Key :"d\u0061m\u006d\u0061\u0074\u0061\u006e\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352"},{Key :"k\u0061\u0073\u0072\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356"},{Key :"\u006b\u0061\u0073r\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356"},{Key :"\u006a\u0065\u0068",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308"},{Key :"\u006ae\u0068\u0061\u0072\u0061\u0062\u0069c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308"},{Key :"\u0074\u0074\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00311"},{Key :"\u0064\u0064\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00312"},{Key :"\u006e\u006fo\u006e\u0067\u0068u\u006e\u006e\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00314"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u0061\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00334"},{Key :"\u0073\u0068\u0065\u0071\u0065\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u0073\u0068\u0065q\u0065\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u006e\u0065\u0077\u0073\u0068\u0065\u0071\u0065\u006c\u0073\u0069\u0067\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u006ee\u0077\u0073\u0068\u0065\u0071\u0065l",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336"},{Key :"\u006d\u0061\u0071a\u0066",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345"},{Key :"m\u0061\u0071\u0061\u0066\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345"},{Key :"g\u0069\u006d\u0065\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366"},{Key :"\u0067\u0069\u006de\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366"},{Key :"\u0068\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368"},{Key :"\u0068\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368"},{Key :"\u007a\u0061\u0079i\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370"},{Key :"z\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370"},{Key :"\u0068e\u0074\u0068\u0065\u0062\u0072\u0065w",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371"},{Key :"\u0068\u0065\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371"},{Key :"\u0079o\u0064\u0068\u0065\u0062\u0072\u0065w",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373"},{Key :"\u0079\u006f\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373"},{Key :"\u0066\u0069\u006e\u0061lk\u0061\u0066\u0073\u0068\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0073\u0068\u0065\u0076\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0071\u0061\u006da\u0074\u0073\u0068\u0065br\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0071a\u006d\u0061\u0074\u0073",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006e\u0075\u006e\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379"},{Key :"\u006e\u0075\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006e\u0075\u006e",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379"},{Key :"\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384"},{Key :"\u0070\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384"},{Key :"\u0074\u0073\u0061d\u0069",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386"},{Key :"t\u0073\u0061\u0064\u0069\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386"},{Key :"\u0073\u0068\u0069\u006e\u0077\u0069\u0074\u0068\u0073i\u006e\u0064\u006f\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395"},{Key :"\u0073\u0068i\u006e\u0073\u0069n\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395"},{Key :"\u0073\u0068\u0069\u006e\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395"},{Key :"\u0076\u0061\u0076v\u0061\u0076\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316"},{Key :"\u0076\u0061\u0076\u0064\u0062\u006c",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316"},{Key :"\u0076\u0061\u0076y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317"},{Key :"\u0076\u0061\u0076\u0079\u006f\u0064",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317"},{Key :"\u0071\u0061\u006d\u0061ts\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071a\u006d\u0061\u0074\u0073\u0071\u0061\u0074\u0061\u006e\u0071\u0075a\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006da\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006dat\u0073\u0071\u0061\u0074\u0061\u006e\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0075\u006e\u0069\u0074\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061m\u0061\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0037",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0071\u0061\u0074\u0061\u006e\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"q\u0061\u006d\u0061\u0074sq\u0061t\u0061\u006e\u0077\u0069\u0064e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0064\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0063",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0039",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071a\u006da\u0074\u0073\u006e\u0061\u0072r\u006f\u0077h\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0030",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0071\u0061\u006d\u0061\u0074\u0073\u0033\u0033",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397"},{Key :"\u0073h\u0065\u0076\u0061\u0032\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065v\u0061\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065\u0076\u0061\u0031\u0035",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0068\u0065\u0076\u0061\u0031\u0031\u0035",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"s\u0068\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0068\u0065v\u0061",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0065\u006e\u0064\u0074\u0072\u0061\u006e\u0073\u0062\u006c\u006f\u0063\u006b",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065\u0076\u0061\u0032\u0032",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073h\u0065v\u0061\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0068\u0065\u0076\u0061\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399"},{Key :"\u0073\u0069\u006ed\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303"},{Key :"\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303"},{Key :"\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341"},{Key :"\u0072\u0061\u0066\u0065",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341"},{Key :"\u0070\u0061\u0073e\u0071",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342"},{Key :"p\u0061\u0073\u0065\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342"},{Key :"\u006cs\u0063\u0072\u0069\u0070\u0074",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u006cs\u0071\u0075\u0061\u0072\u0065",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u006c\u0069\u0074e\u0072",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u0065\u006c\u006c",Value :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389"},{Key :"\u0070\u0064\u0066",Value :"\u0061f\u0069\u0069\u0036\u0031\u0035\u00373"},{Key :"\u006c\u0072\u006f",Value :"\u0061f\u0069\u0069\u0036\u0031\u0035\u00374"},{Key :"\u0072\u006c\u006f",Value :"\u0061f\u0069\u0069\u0036\u0031\u0035\u00375"},{Key :"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068n\u006f\u006ej\u006f\u0069\u006e\u0065\u0072",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"\u0063\u0077\u006d",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"\u007a\u0065\u0072\u006f\u006e\u006f\u006a\u006f\u0069\u006e",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"\u0063\u006f\u006dp\u0077\u006f\u0072\u0064\u006d\u0061\u0072\u006b",Value :"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364"},{Key :"a\u0072\u0061\u0062\u0069cf\u0069v\u0065\u0070\u006f\u0069\u006et\u0065\u0064\u0073\u0074\u0061\u0072",Value :"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367"},{Key :"a\u0073t\u0065\u0072\u0069\u0073\u006b\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063",Value :"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367"},{Key :"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u0061r\u0061\u0062\u0069\u0063",Value :"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367"},{Key :"\u0063\u006fm\u006d\u0061\u0072e\u0076\u0065\u0072\u0073\u0065\u0064\u006d\u006f\u0064",Value :"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337"},{Key :"\u006e\u0075\u006de\u0072\u0061\u006c\u0067\u0072\u0065\u0065\u006b",Value :"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337"},{Key :"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0069\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0061\u0069n\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061i\u006e\u006d\u0065\u0064\u0069\u0061l",Value :"\u0061i\u006em\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006er\u0074\u0068\u006f\u006f\u006b",Value :"\u0061\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00364",Value :"\u0061\u006c\u0065\u0066"},{Key :"\u0061\u006c\u0065\u0066\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0061\u006c\u0065\u0066"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00315",Value :"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u0061\u006c\u0065\u0066",Value :"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u006d\u0061\u0070\u0069\u0071",Value :"\u0061\u006ce\u0066\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061l\u0065\u0066\u0066\u0069\u006e\u0061l",Value :"\u0061l\u0065f\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006c\u0065fw\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006e\u0061\u006c",Value :"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00313",Value :"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063"},{Key :"\u0061l\u0065f\u0077\u0069\u0074\u0068\u0068a\u006d\u007aa\u0062\u0065\u006c\u006f\u0077",Value :"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063"},{Key :"\u0061\u006c\u0065fw\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006c\u006f\u0077\u0066\u0069\u006e\u0061\u006c",Value :"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0062\u0065\u006co\u0077f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061l\u0065\u0066\u006c\u0061\u006d\u0065d",Value :"\u0061l\u0065f\u006c\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u006c\u0065fw\u0069\u0074\u0068\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006e\u0061\u006c",Value :"\u0061l\u0065\u0066\u006d\u0061d\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00349",Value :"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"a\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061",Value :"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006ce\u0066\u006d\u0061k\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",Value :"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062i\u0063"},{Key :"\u0079e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0070\u0061\u0074\u0061\u0068",Value :"\u0061l\u0065f\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0071a\u006d\u0061\u0074\u0073",Value :"\u0061\u006ce\u0066\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061l\u0065\u0070\u0068\u006d\u0061\u0074h",Value :"\u0061\u006c\u0065p\u0068"},{Key :"\u0062\u0061\u0063\u006b\u0063\u006f\u006e\u0067",Value :"\u0061\u006c\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0075p\u0061\u006c\u0070\u0068\u0061",Value :"\u0061\u006c\u0070h\u0061"},{Key :"\u0063\u0031\u0035\u0038",Value :"\u0061m\u0061\u0063\u0072\u006f\u006e"},{Key :"\u006c\u0061\u006e\u0067\u006c\u0065",Value :"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0061\u006e\u0067\u006c\u0065",Value :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00370",Value :"\u0061\u006e\u0067\u006b\u0068\u0061\u006e\u006b\u0068u\u0074\u0068\u0061\u0069"},{Key :"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0042\u0069\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u006c\u0065f\u0074\u0042\u0069\u0067\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0062\u0069\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u006c\u0065f\u0074\u0062\u0069\u0067\u0067",Value :"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u0072\u0069g\u0068\u0074\u0042\u0069\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u006e\u0067\u0062ra\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065t\u0072\u0069g\u0068\u0074\u0062\u0069\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u006e\u0067\u0062ra\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067\u0067",Value :"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0041\u006e\u0067\u0073\u0074\u0072\u006f\u006d",Value :"\u0061\u006e\u0067\u0073\u0074\u0072\u006f\u006d"},{Key :"\u0061\u0063\u0077\u0067\u0061\u0070\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077",Value :"\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0039\u00329",Value :"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u006d\u006f\u0064"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u006c\u0069\u006d\u0069\u0074",Value :"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073"},{Key :"\u0064\u006f\u0074e\u0071",Value :"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073"},{Key :"a\u006c\u006d\u006f\u0073\u0074\u0065\u0071\u0075\u0061\u006c",Value :"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078",Value :"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0064\u006f\u0074\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074",Value :"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065"},{Key :"\u0066\u0061\u006c\u006c\u0069\u006e\u0067\u0064\u006f\u0074\u0073\u0065\u0071",Value :"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065"},{Key :"\u0074i\u006c\u0064\u0065\u0074\u0072\u0070l",Value :"a\u0070\u0070\u0072\u006f\u0078\u0069\u0064\u0065\u006e\u0074"},{Key :"\u0061\u006c\u006d\u006f\u0073\u0074\u006f\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071",Value :"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070\u0072\u006f\u0066\u006c\u0069\u006e\u0065",Value :"\u0061\u0072\u0063"},{Key :"c\u006f\u0072\u0072\u0065\u0073\u0070\u006f\u006e\u0064\u0073",Value :"\u0061\u0072\u0063e\u0071"},{Key :"\u0061r\u0072o\u0077\u0073\u0065\u006d\u0061n\u0074\u0069c\u006c\u006f\u0063\u006b\u0077",Value :"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e"},{Key :"\u0063\u0075\u0072\u0076\u0065\u0061\u0072\u0072\u006fw\u006c\u0065\u0066\u0074",Value :"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u0065\u006d\u0063l\u006f\u0063\u006b\u0077",Value :"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e"},{Key :"\u0063u\u0072v\u0065\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",Value :"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e"},{Key :"\u006cm\u0069\u0064\u0074\u0069\u006c\u0064e",Value :"\u0061\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0061\u0031\u0036\u0033",Value :"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h"},{Key :"\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h"},{Key :"\u0064\u006f\u0077\u006e\u0064\u0061\u0073\u0068\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0064\u006f\u0077\u006e"},{Key :"\u006c\u0065\u0066\u0074\u0064\u0061\u0073\u0068\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0064\u0061\u0073\u0068a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068r\u0069\u0067\u0068\u0074"},{Key :"u\u0070\u0064\u0061\u0073\u0068\u0061\u0072\u0072\u006f\u0077",Value :"a\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0075\u0070"},{Key :"\u004c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068"},{Key :"\u0061\u0072r\u006f\u0077\u0064b\u006c\u006c\u006f\u006e\u0067\u0062\u006f\u0074\u0068",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068"},{Key :"\u0064\u0062\u006ca\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068"},{Key :"U\u0070\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u006c\u006f\u006e\u0067b\u006f\u0074\u0068\u0076",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076"},{Key :"\u0044o\u0077\u006e\u0061\u0072\u0072\u006fw",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0064\u006f\u0077\u006e"},{Key :"\u004ce\u0066\u0074\u0061\u0072\u0072\u006fw",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074"},{Key :"\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u0064\u0062\u006c",Value :"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074"},{Key :"\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0055p\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0075\u0070"},{Key :"\u0064o\u0077\u006e\u0061\u0072\u0072\u006fw",Value :"\u0061r\u0072\u006f\u0077\u0064\u006f\u0077n"},{Key :"\u0073w\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074"},{Key :"\u0073e\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006er\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006e\u0064\u006f\u0077\u006e",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065"},{Key :"\u0064\u006f\u0077\u006e\u0077\u0068\u0069\u0074\u0065a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065"},{Key :"\u0069o\u0074\u0061\u0073\u0075\u0062",Value :"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064\u0072\u0069\u0067h\u0074\u006d\u006f\u0064"},{Key :"\u0068\u006f\u006f\u006b\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074"},{Key :"\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006br\u0069\u0067\u0068\u0074"},{Key :"\u006ce\u0066\u0074\u0061\u0072\u0072\u006fw",Value :"\u0061r\u0072\u006f\u0077\u006c\u0065\u0066t"},{Key :"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",Value :"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0062\u006f\u0074\u0068\u0061\u006c\u0066"},{Key :"\u0061r\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074\u006e\u006f\u0074",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006e\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065"},{Key :"\u0061r\u0072o\u0077\u0070\u0061\u0072\u0072l\u0065\u0066t\u0072\u0069\u0067\u0068\u0074",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006ce\u0066t\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074",Value :"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u006c\u0065\u0066\u0074\u0077\u0068\u0069\u0074\u0065a\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u0061\u0031\u0036\u0031",Value :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0069g\u0068\u0074\u0068a\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",Value :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0062\u006ft\u0068\u0061\u006c\u0066"},{Key :"\u0061\u0072r\u006f\u0077\u0064b\u006c\u0072\u0069\u0067\u0068\u0074\u006e\u006f\u0074",Value :"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"n\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006e\u006ft\u0064\u0062\u006ca\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",Value :"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"\u0061r\u0072o\u0077\u0070\u0061\u0072\u0072r\u0069\u0067h\u0074\u006c\u0065\u0066\u0074",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074"},{Key :"\u0072i\u0067h\u0074\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0072i\u0067h\u0074\u0077\u0068\u0069\u0074\u0065\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0062\u0061\u0072l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0074\u0061\u0062\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072",Value :"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0062\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",Value :"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006fw\u0074\u0061\u0069\u006c",Value :"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006cr\u0069\u0067\u0068\u0074"},{Key :"\u004c\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072o\u0077\u0074\u0072\u0069\u0070\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"R\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072r\u006f\u0077\u0074r\u0069\u0070\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0075p\u0061\u0072\u0072\u006f\u0077",Value :"\u0061r\u0072\u006f\u0077\u0075\u0070"},{Key :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0064\u006e\u0062\u0073\u0065",Value :"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065"},{Key :"\u0075\u0070\u0064\u006f\u0077\u006e\u0061\u0072\u0072o\u0077\u0062\u0061\u0072",Value :"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065"},{Key :"\u006ew\u0061\u0072\u0072\u006f\u0077",Value :"a\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074"},{Key :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075p\u0064\u006f\u0077\u006e",Value :"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e"},{Key :"\u0075\u0070\u0064o\u0077\u006e\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e"},{Key :"\u006ee\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0072\u0069\u0067\u0068\u0074"},{Key :"a\u0072\u0072\u006f\u0077\u006f\u0070\u0065\u006e\u0075\u0070",Value :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0075\u0070\u0077h\u0069\u0074\u0065\u0061\u0072\u0072\u006f\u0077",Value :"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065"},{Key :"\u006c\u0069\u006e\u0065\u0076\u0065\u0072\u0074",Value :"\u0061s\u0063\u0072\u0069\u0070\u0074"},{Key :"\u006da\u0063\u0072\u006f\u006e\u0031",Value :"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064"},{Key :"\u006f\u0076\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0031",Value :"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061s\u0073\u0065\u0072\u0074\u0069\u006fn",Value :"\u0061\u0073\u0073\u0065\u0072\u0074"},{Key :"\u0061\u0073\u0074",Value :"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068"},{Key :"\u0061\u0073t\u0065\u0072\u0069s\u006b\u0063\u0065\u006e\u0074\u0065\u0072\u0065\u0064",Value :"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075a\u006c\u0061\u006c\u0074",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"a\u0073\u0079\u006d\u0070\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0069\u006de\u0071",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0069\u006di\u006c\u0061\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0061\u0074\u0073\u0069\u0067\u006e",Value :"\u0061\u0074"},{Key :"\u0061l\u0074e\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0061\u0079\u0069\u006e",Value :"\u0061\u0079i\u006e\u0061\u006ct\u006f\u006e\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00382",Value :"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0079\u0069\u006e",Value :"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"p\u0072\u0069\u006d\u0065\u0064\u0062\u006c\u0072\u0065\u0076",Value :"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0070\u0072\u0069m\u0065\u0064\u0062\u006c\u0072\u0065\u0076\u0031",Value :"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0073e\u0063\u006f\u006e\u0064\u0072\u0065v",Value :"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0074\u0072\u0069\u0070l\u0065\u0072\u0065\u0076",Value :"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0070r\u0069m\u0065\u0074\u0072\u0069\u0070\u006c\u0065\u0072\u0065\u0076\u0031",Value :"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00343",Value :"\u0062\u0061\u0068\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0076\u0065\u0072\u0074",Value :"\u0062\u0061\u0072"},{Key :"v\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0062\u0061\u0072",Value :"\u0062\u0061\u0072"},{Key :"\u0074\u0061\u0062l\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",Value :"\u0062a\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061"},{Key :"\u0068\u006f\u006d\u0065",Value :"b\u0061\u0072\u006f\u0076er\u006eo\u0072\u0074\u0068\u0077\u0065s\u0074\u0061\u0072\u0072\u006f\u0077"},{Key :"\u006e\u006f\u0072",Value :"\u0062\u0061\u0072\u0076\u0065\u0065"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00366",Value :"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0062\u0065",Value :"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00316",Value :"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0062\u0065\u0068",Value :"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0062\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0062\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0062e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"b\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0062\u0065\u0068\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"b\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062\u0065h\u0077\u0069\u0074h\u006e\u006f\u006f\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0062e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075\u0070\u0062\u0065\u0074\u0061",Value :"\u0062\u0065\u0074\u0061"},{Key :"\u0047\u0065\u0068\u006f\u006f\u006b",Value :"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075p\u0076\u0061\u0072\u0062\u0065\u0074a",Value :"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0062e\u0074\u0064\u0061\u0067\u0065\u0073h",Value :"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0062\u0065\u0074\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0062\u0065\u0074\u0068\u006d\u0061\u0074\u0068",Value :"\u0062\u0065\u0074\u0068"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00365",Value :"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0062\u0065\u0074",Value :"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"b\u0065\u0074\u0077\u0069\u0074\u0068\u0072\u0061\u0066\u0065",Value :"\u0062\u0065\u0074\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0031",Value :"\u0062\u0068\u006fo\u006b"},{Key :"\u006e\u0061\u0072\u0079\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006f\u0072",Value :"\u0062\u0069\u0067\u0076\u0065\u0065"},{Key :"\u006e\u0061\u0072\u0079\u006c\u006f\u0067\u0069\u0063a\u006c\u0061\u006e\u0064",Value :"\u0062\u0069\u0067\u0077\u0065\u0064\u0067\u0065"},{Key :"r\u0069\u006e\u0067\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0062\u0069\u006c\u0061\u0062\u0069\u0061\u006c\u0063\u006c\u0069\u0063\u006b"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u006e\u0077\u006f\u0070\u0065\u006e",Value :"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064\u0077\u0068\u0069t\u0065"},{Key :"\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u006c\u0065f\u0074\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063kl\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0062\u006ca\u0063\u006b\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074",Value :"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072"},{Key :"\u0074r\u0069\u0061\u0067\u006c\u0066",Value :"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072"},{Key :"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074",Value :"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"\u0074\u0072i\u0061\u006e\u0067l\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064\u0031",Value :"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"\u006cl\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u0077\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u006cr\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u0065\u0073\u006c\u0064",Value :"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0066\u0069\u006c\u006c\u0065\u0064\u0072\u0065\u0063\u0074",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065"},{Key :"\u0068r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065"},{Key :"\u0062\u006c\u0061\u0063\u006b\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074",Value :"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r"},{Key :"\u0074r\u0069\u0061\u0067\u0072\u0074",Value :"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r"},{Key :"\u0062l\u0061c\u006b\u0074\u0072\u0069\u0061n\u0067\u006ce\u0072\u0069\u0067\u0068\u0074",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068t\u0073\u006c\u0064\u0031",Value :"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065"},{Key :"\u0048\u0031\u0038\u0035\u0034\u0033",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0062\u006f\u0078\u0066i\u006c\u006c\u0065\u0064",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"s\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"b\u006c\u0061\u0063\u006b\u0073\u006d\u0069\u006c\u0065\u0079",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065"},{Key :"\u0069\u006e\u0076s\u006d\u0069\u006c\u0065\u0066\u0061\u0063\u0065",Value :"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065"},{Key :"\u0073\u006d\u0061\u006clt\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0069\u006e\u0076\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u0064\u006f\u0077\u006e"},{Key :"\u0074\u0072\u0061n\u0067\u006c\u0065\u006e\u0077\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u0075l\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006e\u0065\u0073\u006c\u0064",Value :"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0075r\u0062l\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"\u0073\u006da\u006c\u006c\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0073\u006c\u0064",Value :"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"\u0076\u0069\u0073i\u0062\u006c\u0065\u0073\u0070\u0061\u0063\u0065",Value :"\u0062\u006c\u0061n\u006b"},{Key :"v\u0069\u0073\u0075\u0061\u006c\u0073\u0070\u0061\u0063\u0065",Value :"\u0062\u006c\u0061n\u006b"},{Key :"\u0062l\u006f\u0063\u006b\u0066\u0075\u006cl",Value :"\u0062\u006c\u006fc\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00306",Value :"\u0062\u006f\u0062a\u0069\u006d\u0061\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0062o\u0074\u0074\u006f\u006d\u0061\u0072c",Value :"\u0062\u006f\u0074\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0073\u0071u\u0061\u0072\u0065v\u0065\u0072\u0074\u0062\u0069\u0073\u0065\u0063\u0074",Value :"\u0062\u006f\u0078\u0062\u0061\u0072"},{Key :"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u0042\u0069\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u0062\u0069\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u006c\u0062\u0072\u0061\u0063\u0065",Value :"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0068\u0074\u0069\u0070\u0064\u006f\u0077n\u006c\u0065\u0066\u0074",Value :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c"},{Key :"\u0062r\u0061c\u0065\u0068\u0074\u0069\u0070d\u006f\u0077n\u0072\u0069\u0067\u0068\u0074",Value :"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068t\u0042\u0069\u0067\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068t\u0062\u0069\u0067\u0067",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0062\u0072\u0061\u0063\u0065",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061p\u0070\u006c\u0065\u006f\u0070\u0065n",Value :"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0074"},{Key :"\u0065\u006e\u0074e\u0072",Value :"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u006d\u0069\u0064"},{Key :"\u0063a\u0072r\u0069\u0061\u0067\u0065\u0072e\u0074\u0075r\u006e\u006c\u0065\u0066\u0074",Value :"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0074\u0070"},{Key :"\u0062r\u0061c\u0065\u0068\u0074\u0069\u0070\u0075\u0070\u006c\u0065\u0066\u0074",Value :"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0062\u0072a\u0063\u0065\u0068t\u0069\u0070\u0075\u0070\u0072\u0069\u0067\u0068\u0074",Value :"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0042\u0069\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0062\u0069\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u006c\u0062\u0072\u0061\u0063\u006b",Value :"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072a\u0063\u006b\u0065t\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u0072a\u0063\u006b\u0065t\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067\u0067",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0062\u0072\u0061\u0063\u006b",Value :"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"c\u006f\u006e\u0074\u0065\u0078\u0074\u006d\u0065\u006e\u0075",Value :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0062\u0074"},{Key :"\u0070\u006f\u0077e\u0072",Value :"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0074\u0070"},{Key :"\u0072\u0068\u006f\u0031",Value :"\u0062\u0072\u0069\u0064ge\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063m\u0062"},{Key :"s\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0062\u0075\u006c\u006c\u0065\u0074"},{Key :"\u0062\u0075\u006c\u006c\u0065\u0074\u006d\u0061\u0074\u0068",Value :"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072"},{Key :"\u0070\u0072\u006f\u0064\u0075\u0063\u0074\u0064\u006f\u0074",Value :"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072"},{Key :"\u0076\u0079\u0073\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072"},{Key :"\u0062u\u006c\u006c\u0073\u0065\u0079\u00651",Value :"\u0062\u0075\u006c\u006c\u0073\u0065\u0079\u0065"},{Key :"\u0063\u0074",Value :"\u0063"},{Key :"\u006fv\u0065\u0072\u0073\u0074\u006f\u0072e",Value :"\u0063\u0031\u0034\u0033"},{Key :"\u0068m\u0061\u0063\u0072\u006f\u006e",Value :"\u0063\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0063\u0061\u006e\u0064\u0072\u0061",Value :"\u0063\u0061\u006e\u0064\u0072\u0061\u0062\u0069\u006ed\u0075\u0063\u006d\u0062"},{Key :"\u0077\u0068\u0069\u0074ea\u0072\u0072\u006f\u0077\u0075\u0070\u0066\u0072\u006f\u006d\u0062\u0061\u0072",Value :"\u0063\u0061\u0070\u0073\u006c\u006f\u0063\u006b"},{Key :"\u0061f\u0069\u0069\u0036\u0031\u0032\u00348",Value :"\u0063\u0061\u0072\u0065\u006f\u0066"},{Key :"\u0063\u0061\u0072e\u0074",Value :"c\u0061\u0072\u0065\u0074\u0069\u006e\u0073\u0065\u0072\u0074"},{Key :"\u0063\u0068\u0065c\u006b",Value :"\u0063\u0061\u0072\u006f\u006e\u0063\u006d\u0062"},{Key :"\u0063a\u0072r\u0069\u0061\u0067\u0065\u0072\u0072\u0065\u0074\u0075\u0072\u006e",Value :"\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e"},{Key :"l\u0069\u006e\u0065\u0076\u0065\u0072\u0074\u0073\u0075\u0062",Value :"\u0063\u0063\u0075r\u006c"},{Key :"\u0063\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0063\u0064\u006f\u0074"},{Key :"\u004b\u006f\u0070p\u0061",Value :"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0063\u006d\u0062"},{Key :"\u0063\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065f\u0074\u0042\u0069\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065f\u0074\u0062\u0069\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u006c\u0063\u0065i\u006c",Value :"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063\u0065i\u006c\u0069\u006eg\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063e\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063\u0065i\u006c\u0069\u006eg\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067\u0067",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0063\u0065i\u006c",Value :"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0063e\u006c\u0073\u0069\u0075\u0073",Value :"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065"},{Key :"\u0064\u0065g\u0072\u0065\u0065c\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065",Value :"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065"},{Key :"\u0043\u004c",Value :"\u0063\u0065\u006e\u0074\u0072\u0065\u006c\u0069\u006e\u0065"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00389",Value :"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0063\u0068\u0065",Value :"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0075\u0070\u0063h\u0069",Value :"\u0063\u0068\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00390",Value :"\u0063\u0068\u006fc\u0068\u0061\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00388",Value :"c\u0068\u006f\u0063\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00389",Value :"\u0063\u0068\u006fc\u0068\u0069\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00392",Value :"c\u0068\u006f\u0063\u0068\u006f\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0072i\u006e\u0067\u0065\u0071\u0075\u0061l",Value :"\u0063\u0069\u0072\u0063\u0065\u0071"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0061\u0073\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0073\u0074e\u0072\u0069\u0073\u006b"},{Key :"\u0063i\u0072c\u006c\u0065\u0062\u006f\u0074\u0074\u006f\u006d\u0073\u006c\u0064",Value :"c\u0069\u0072\u0063\u006ceb\u006ft\u0074\u006f\u006d\u0068\u0061l\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0063\u0069\u0072c\u006c\u0065\u0063\u006f\u0070\u0079\u0072\u0074"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u006d\u0069\u006e\u0075\u0073\u0031",Value :"c\u0069\u0072\u0063\u006c\u0065\u0064\u0064\u0061\u0073\u0068"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u0064\u0065\u0071\u0075\u0061\u006c",Value :"c\u0069\u0072\u0063\u006c\u0065\u0065\u0071\u0075\u0061\u006c"},{Key :"c\u0069\u0072\u0063\u006cem\u0075l\u0074\u0069\u0070\u006c\u0079d\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0063i\u0072c\u006c\u0065\u006d\u0075\u006ct\u0069\u0070l\u0079\u0074\u0065\u0078\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u006f\u0074\u0069\u006d\u0065\u0073",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"t\u0069\u006d\u0065\u0073\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0063i\u0072\u0063\u006c\u0065\u0064\u006ft",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u0063\u0069r\u0063\u006c\u0065d\u006f\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u006f\u0074\u0074\u0065\u0078\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u006f\u0064\u006f\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075s\u0074\u0065\u0078\u0074",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"\u006f\u0070\u006cu\u0073",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"\u0070\u006c\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u0064\u0063\u0069\u0072\u0063",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u006e\u0067"},{Key :"\u0063\u0069\u0072c\u006c\u0065\u0074\u006f\u0070\u0073\u006c\u0064",Value :"\u0063i\u0072c\u006c\u0065\u0074\u006f\u0070h\u0061\u006cf\u0062\u006c\u0061\u0063\u006b"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u006e\u0065\u0073\u006c\u0064",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064b\u006c\u0061\u0063\u006b"},{Key :"\u0063i\u0072c\u006c\u0065\u0076\u0065\u0072\u0074\u0068\u0061\u0074\u0063\u0068",Value :"\u0063\u0069\u0072\u0063\u006c\u0065\u0076\u0065\u0072t\u0066\u0069\u006c\u006c"},{Key :"\u0063\u0069\u0072\u0063le\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b",Value :"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064",Value :"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"c\u0069r\u0063\u006c\u0065\u0072\u0069\u0067\u0068\u0074h\u0061\u006c\u0066\u0062la\u0063\u006b",Value :"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u0067h\u0074\u0073\u006c\u0064",Value :"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0068\u0061\u0074",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0068a\u0074\u0077\u0069\u0064\u0065",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0068\u0061\u0074\u0077\u0069\u0064\u0065\u0072",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0068a\u0074\u0077\u0069\u0064\u0065\u0073t",Value :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062"},{Key :"\u0063\u0077g\u0061\u0070\u0063i\u0072\u0063\u006c\u0065\u0061\u0072\u0072\u006f\u0077",Value :"\u0063l\u006f\u0063\u006b\u0077\u0069\u0073e"},{Key :"\u0061\u0031\u0031\u0032",Value :"\u0063\u006c\u0075\u0062"},{Key :"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074",Value :"\u0063\u006c\u0075\u0062"},{Key :"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0062\u006c\u0061\u0063\u006b",Value :"\u0063\u006c\u0075\u0062"},{Key :"v\u0061\u0072\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074",Value :"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u006f\u0075\u0074h\u0065\u0061\u0073\u0074",Value :"\u0063\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u006da\u0074\u0068\u0063\u006f\u006c\u006fn",Value :"\u0063\u006f\u006co\u006e"},{Key :"\u0063\u006f\u006c\u006f\u006e\u0065\u0071\u0075\u0061\u006c",Value :"\u0063o\u006c\u006f\u006e\u0065\u0071"},{Key :"\u0043\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0063\u006f\u006c\u006f\u006e\u0063\u0075\u0072",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0063\u006f\u006c\u006f\u006e\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0063o\u006c\u006f\u006e\u0073\u0069\u0067n",Value :"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079"},{Key :"\u0069\u006f\u0074\u0061\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",Value :"\u0063\u006f\u006d\u006d\u0061\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062"},{Key :"\u006f\u0063\u006f\u006d\u006d\u0061\u0074\u006f\u0070r\u0069\u0067\u0068\u0074",Value :"\u0063o\u006dm\u0061\u0061\u0062\u006f\u0076e\u0072\u0069g\u0068\u0074\u0063\u006d\u0062"},{Key :"\u0075\u0070s\u0069\u006c\u006fn\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",Value :"c\u006f\u006d\u006d\u0061re\u0076e\u0072\u0073\u0065\u0064\u0061b\u006f\u0076\u0065\u0063\u006d\u0062"},{Key :"\u006f\u0074\u0075r\u006e\u0065\u0064\u0063\u006f\u006d\u006d\u0061",Value :"\u0063\u006f\u006d\u006dat\u0075\u0072\u006e\u0065\u0064\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062"},{Key :"\u0061p\u0070r\u006f\u0078\u0069\u006d\u0061t\u0065\u006cy\u0065\u0071\u0075\u0061\u006c",Value :"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et"},{Key :"\u0063\u006f\u006e\u0067",Value :"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et"},{Key :"\u0063\u006f\u006et\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0063\u006f\u006e\u0074in\u0074\u0065\u0067\u0072\u0061\u006c\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0063\u006fn\u0074\u0069\u006et\u0065\u0067\u0072\u0061\u006c\u0074\u0065\u0078\u0074",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u006f\u0069\u006e\u0074",Value :"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0041\u0043\u004b",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0041\u0043\u004b"},{Key :"\u0042\u0045\u004c",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0042\u0045\u004c"},{Key :"\u0042\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0042S"},{Key :"\u0043\u0041\u004e",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0043\u0041\u004e"},{Key :"\u0043\u0052",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R"},{Key :"\u006e\u006fn\u006d\u0061\u0072k\u0069\u006e\u0067\u0072\u0065\u0074\u0075\u0072\u006e",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R"},{Key :"\u0058\u004f\u004e",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031"},{Key :"\u0044\u0043\u0031",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031"},{Key :"\u0044\u0043\u0032",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0032"},{Key :"\u0058\u004f\u0046",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033"},{Key :"\u0044\u0043\u0033",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033"},{Key :"\u0044\u0043\u0034",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0034"},{Key :"\u0044\u0045\u004c",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0045\u004c"},{Key :"\u0044\u0043\u0030",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045"},{Key :"\u0044\u004c\u0045",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045"},{Key :"\u0045\u004d",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0045M"},{Key :"\u0045\u004e\u0051",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004e\u0051"},{Key :"\u0045\u004f\u0054",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004f\u0054"},{Key :"\u0045\u0053\u0043",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0053\u0043"},{Key :"\u0045\u0054\u0042",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0042"},{Key :"\u0045\u0054\u0058",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0058"},{Key :"\u0046\u0046",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046F"},{Key :"\u0046\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S"},{Key :"\u0049\u0046\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S"},{Key :"\u0047\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S"},{Key :"\u0049\u0047\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S"},{Key :"\u0048\u0054",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0048T"},{Key :"\u004c\u0046",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u004cF"},{Key :"\u004e\u0041\u004b",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0041\u004b"},{Key :"\u002e\u006e\u0075l\u006c",Value :"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c"},{Key :"\u004e\u0055\u004c",Value :"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c"},{Key :"\u0049\u0052\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S"},{Key :"\u0052\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S"},{Key :"\u0053\u0049",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053I"},{Key :"\u0053\u004f",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053O"},{Key :"\u0053\u0054\u0058",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u004f\u0054"},{Key :"\u0053\u004f\u0048",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0054\u0058"},{Key :"\u0045\u004f\u0046",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042"},{Key :"\u0053\u0055\u0042",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042"},{Key :"\u0053\u0059\u004e",Value :"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0059\u004e"},{Key :"\u0049\u0055\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S"},{Key :"\u0055\u0053",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S"},{Key :"\u0056\u0054",Value :"\u0063o\u006e\u0074\u0072\u006f\u006c\u0056T"},{Key :"\u0061\u006d\u0061l\u0067",Value :"\u0063o\u0070\u0072\u006f\u0064\u0075\u0063t"},{Key :"\u0063\u006f\u0070\u0072\u006f\u0064",Value :"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0063\u006f\u0070\u0072\u006f\u0064\u0075\u0063\u0074\u0074\u0065\u0078\u0074",Value :"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0064\u006f\u0074\u0064\u0062\u006c\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068\u0065\u0064"},{Key :"\u006d\u0075l\u0074\u0069\u0070l\u0079\u006d\u0075\u006c\u0074\u0069\u0073\u0065\u0074",Value :"\u0063\u0075\u0070\u0064\u006f\u0074"},{Key :"\u006d\u0075\u006c\u0074\u0069\u0073\u0065\u0074",Value :"\u0063\u0075\u0070l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077"},{Key :"\u0063u\u0072\u006c\u0061\u006e\u0064",Value :"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064"},{Key :"\u0063\u0075\u0072\u006c\u0079\u0077\u0065\u0064\u0067\u0065",Value :"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064"},{Key :"\u0075\u0070\u0072\u0069\u0073\u0065",Value :"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064"},{Key :"\u006c\u006f\u006f\u0070\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",Value :"\u0063u\u0072\u006c\u0079\u006c\u0065\u0066t"},{Key :"\u0063\u0075\u0072\u006c\u006f\u0072",Value :"\u0063u\u0072\u006c\u0079\u006f\u0072"},{Key :"\u0063\u0075\u0072\u006c\u0079\u0076\u0065\u0065",Value :"\u0063u\u0072\u006c\u0079\u006f\u0072"},{Key :"\u0064\u006f\u0077\u006e\u0066\u0061\u006c\u006c",Value :"\u0063u\u0072\u006c\u0079\u006f\u0072"},{Key :"\u006c\u006f\u006f\u0070\u0061\u0072\u0072\u006f\u0077r\u0069\u0067\u0068\u0074",Value :"\u0063\u0075\u0072\u006c\u0079\u0072\u0069\u0067\u0068\u0074"},{Key :"a\u0072\u0072\u006f\u0077\u0063\u006c\u006f\u0063\u006b\u0077",Value :"\u0063\u0077\u006f\u0070\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077"},{Key :"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c",Value :"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0064\u0061\u0064\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0064\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064a\u0064\u006d\u0065\u0064\u0069\u0061l",Value :"\u0064a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00307",Value :"\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064\u0061\u0067e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0073\u0070\u0061c\u0065\u006f\u0070\u0065\u006e\u0062\u006f\u0078",Value :"\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064d\u0061\u0067\u0067\u0065\u0072",Value :"\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064a\u006ce\u0074\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0068\u006d\u0061\u0074\u0068",Value :"\u0064\u0061\u006c\u0065\u0074\u0068"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00367",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006ce\u0074",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064a\u006ce\u0074\u0068\u0061\u0074\u0061\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074ha\u0074a\u0066\u0070\u0061\u0074\u0061h\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064a\u006ce\u0074\u0068\u0061\u0074\u0061\u0066\u0073\u0065\u0067\u006f\u006c",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074ha\u0074a\u0066\u0073\u0065\u0067\u006fl\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0068\u0069\u0072\u0069\u0071",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0068i\u0072\u0069\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0068\u006f\u006c\u0061\u006d",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0070\u0061\u0074\u0061\u0068",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0070a\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u0061\u006c\u0065\u0074\u0071\u0075\u0062\u0075\u0074\u0073",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0071\u0075\u0062\u0075\u0074\u0073\u0068e\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0073\u0065\u0067\u006f\u006c",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0073e\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0073\u0068\u0065\u0076\u0061",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0073h\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0065\u0074\u0074\u0073\u0065\u0072\u0065",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061l\u0065\u0074\u0074s\u0065\u0072\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c",Value :"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00355",Value :"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064\u0061\u006dm\u0061",Value :"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064\u0061\u006d\u006d\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063",Value :"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0064a\u006dm\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",Value :"d\u0061\u006d\u006d\u0061\u006d\u0065\u0064\u0069\u0061\u006c"},{Key :"d\u0061\u0072\u0067\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0068\u0069\u0066\u0074\u006f\u0075\u0074",Value :"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0078\u0063\u0065\u0073\u0073",Value :"\u0064a\u0073\u0068\u0063\u006f\u006c\u006fn"},{Key :"\u0064\u0062\u006ca\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e",Value :"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e"},{Key :"\u0064\u006f\u0077\u006e\u0064\u006f\u0077\u006e\u0061r\u0072\u006f\u0077\u0073",Value :"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e"},{Key :"\u0074\u0077o\u0068\u0065\u0061d\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074"},{Key :"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",Value :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064r\u0069\u0067\u0068\u0074"},{Key :"\u0075\u0070\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0073",Value :"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075\u0070"},{Key :"\u006c\u0042\u0072\u0061\u0063\u006b",Value :"\u0064\u0062\u006c\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0042\u0072\u0061\u0063\u006b",Value :"\u0064b\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0064\u006f\u0075\u0062\u006c\u0065\u0069\u006e\u0074e\u0067\u0072\u0061\u006c",Value :"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069\u0069\u006e\u0074",Value :"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"i\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0064\u0062\u006c",Value :"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0056\u0065\u0072\u0074",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"\u0062\u0061\u0072\u0064\u0062\u006c",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0062a\u0072\u0064\u0062\u006c",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"v\u0065\u0072\u0074\u006c\u0069\u006e\u0065\u0064\u0062\u006c",Value :"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072"},{Key :"\u0064\u006f\u0077\u006e\u0073\u006c\u006f\u0070\u0065\u0065\u006c\u006ci\u0070\u0073\u0069\u0073",Value :"\u0064\u0064\u006ft\u0073"},{Key :"\u0064\u0065\u0063\u0069ma\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062i\u0063",Value :"\u0064\u0065\u0063im\u0061\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0064\u0065\u006c\u0074\u0061\u0065\u0071\u0075\u0061\u006c",Value :"\u0064e\u0066\u0069\u006e\u0065\u0073"},{Key :"\u0074r\u0069\u0061\u006e\u0067\u006c\u0065q",Value :"\u0064e\u0066\u0069\u006e\u0065\u0073"},{Key :"\u006b\u0065\u006c\u0076\u0069\u006e",Value :"\u0064\u0065\u0067r\u0065\u0065\u006b\u0065\u006c\u0076\u0069\u006e"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0034",Value :"\u0064\u0065\u0068\u0069\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006b\u0068\u0061\u0072\u0074\u0064\u0065\u0073",Value :"\u0064e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0075p\u0064\u0065\u006c\u0074\u0061",Value :"\u0064\u0065\u006ct\u0061"},{Key :"\u006d\u0061\u0063\u0072\u006f\u006e\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0064\u0065\u007a\u0068"},{Key :"\u0067\u0072\u0061\u0076\u0065\u0073\u0075\u0062",Value :"\u0064\u0068\u006fo\u006b"},{Key :"\u0061\u0031\u0031\u0031",Value :"\u0064i\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0064\u0069\u0061m\u006f\u006e\u0064\u0073\u006f\u006c\u0069\u0064",Value :"\u0064i\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0076\u0061\u0072\u0064\u0069\u0061\u006d\u006f\u006ed\u0073\u0075\u0069\u0074",Value :"\u0064i\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0073\u006d\u0077h\u0074\u0064\u0069\u0061\u006d\u006f\u006e\u0064",Value :"d\u0069\u0061\u006d\u006f\u006e\u0064\u006d\u0061\u0074\u0068"},{Key :"d\u0069\u0061\u006d\u006f\u006e\u0064\u0073\u0075\u0069\u0074",Value :"\u0064\u0069a\u006d\u006f\u006ed\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065"},{Key :"\u0064\u0064\u006f\u0074",Value :"d\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u006d\u0062"},{Key :"\u0064\u0069\u0061\u006c\u0079\u0074\u0069\u006b\u0061t\u006f\u006e\u006f\u0073",Value :"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0074\u006f\u006e\u006f\u0073"},{Key :"\u0062\u0075\u006d\u0070\u0065\u0071",Value :"\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065"},{Key :"\u0063\u0031\u0034\u0034",Value :"\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0064\u0069\u0076",Value :"\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0064\u0069v\u0069\u0064\u0065o\u006e\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079",Value :"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0064\u0069\u0076\u0069\u0064\u0065\u006f\u006e\u0074\u0069\u006d\u0065\u0073",Value :"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0062\u0061\u0072\u0031",Value :"\u0064i\u0076\u0069\u0064\u0065\u0073"},{Key :"\u006d\u0069\u0064",Value :"\u0064i\u0076\u0069\u0064\u0065\u0073"},{Key :"\u0076\u0065\u0078\u0074\u0065\u006e\u0064\u0073\u0069\u006e\u0067\u006c\u0065",Value :"\u0064i\u0076\u0069\u0064\u0065\u0073"},{Key :"\u0064\u0069\u0076\u0073\u006c\u0061\u0073\u0068",Value :"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068"},{Key :"\u0073l\u0061\u0073\u0068\u006d\u0061\u0074h",Value :"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00399",Value :"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064\u006a\u0065",Value :"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0062\u006c\u006f\u0063kt\u0068\u0072\u0065\u0065\u0071\u0074\u0072\u0073\u0068\u0061\u0064\u0065\u0064",Value :"\u0064k\u0073\u0068\u0061\u0064\u0065"},{Key :"\u0073h\u0061\u0064\u0065\u0064\u0061\u0072k",Value :"\u0064k\u0073\u0068\u0061\u0064\u0065"},{Key :"\u0064\u0063\u0072\u006f\u0061\u0074",Value :"\u0064m\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0064\u0073\u006c\u0061\u0073\u0068",Value :"\u0064m\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0062\u006c\u006fc\u006b\u006c\u006f\u0077\u0068\u0061\u006c\u0066",Value :"\u0064n\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00394",Value :"d\u006f\u0063\u0068\u0061\u0064\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00300",Value :"\u0064o\u0064\u0065\u006b\u0074\u0068\u0061i"},{Key :"\u0065\u0073\u0063\u0075\u0064\u006f",Value :"\u0064\u006f\u006c\u006c\u0061\u0072"},{Key :"\u006d\u0061\u0074\u0068\u0064\u006f\u006c\u006c\u0061\u0072",Value :"\u0064\u006f\u006c\u006c\u0061\u0072"},{Key :"\u006di\u006c\u0072\u0065\u0069\u0073",Value :"\u0064\u006f\u006c\u006c\u0061\u0072"},{Key :"\u0069o\u0074a\u0064\u0069\u0061\u0065\u0072e\u0073\u0069s\u0074\u006f\u006e\u006f\u0073",Value :"\u0064o\u0074\u0061\u0063\u0063\u0065\u006et"},{Key :"\u0064\u006f\u0074",Value :"\u0064\u006f\u0074a\u0063\u0063\u0065\u006e\u0074\u0063\u006d\u0062"},{Key :"\u0053\u0074\u0069\u0067\u006d\u0061",Value :"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062"},{Key :"d\u006f\u0074\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",Value :"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062"},{Key :"\u0062\u0072\u0065v\u0065\u0069\u006e\u0076\u006e\u006f\u0073\u0070",Value :"\u0064o\u0074l\u0065\u0073\u0073\u006a\u0073t\u0072\u006fk\u0065\u0068\u006f\u006f\u006b"},{Key :"\u0067\u0065\u006f\u006d\u0070\u0072\u006f\u0070\u006fr\u0074\u0069\u006f\u006e",Value :"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073"},{Key :"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006fn\u0067\u0065\u006f\u006d",Value :"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0061\u0073\u0068",Value :"\u0064\u006f\u0074t\u0065\u0064\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0078\u0062\u0073o\u006c",Value :"\u0064o\u0077\u006e\u0073\u006c\u006f\u0070e"},{Key :"\u006da\u0063\u0072\u006f\u006e\u0073\u0075b",Value :"\u0064\u0074\u0061i\u006c"},{Key :"\u0067\u0061\u006d\u006d\u0061\u0031",Value :"\u0064\u007a"},{Key :"\u0074\u0069\u006cd\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0064\u007a\u0061\u006c\u0074\u006f\u006e\u0065"},{Key :"\u0047\u0068\u0061\u0063\u0065\u006b",Value :"\u0064z\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072e\u006e\u006f\u0073\u0070",Value :"\u0064\u007a\u0063\u0075\u0072\u006c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00393",Value :"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064\u007a\u0068\u0065",Value :"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00301",Value :"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0065\u0063\u0079\u0072\u0069\u006c",Value :"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0065\u0064\u006f\u0074",Value :"\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00300",Value :"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0072\u0061\u0062\u0069ci\u006ed\u0069\u0063\u0064\u0069\u0067i\u0074\u0065\u0069\u0067\u0068\u0074",Value :"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"e\u0069\u0067\u0068\u0074\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006d\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006ft\u0065\u0064\u0062\u006c",Value :"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064"},{Key :"\u0074\u0077\u006f\u006e\u006f\u0074\u0065\u0073",Value :"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064"},{Key :"\u0065\u0069\u0067\u0068\u0074\u0073\u0075\u0062",Value :"\u0065\u0069\u0067\u0068\u0074\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0065ig\u0068\u0074",Value :"\u0065\u0069\u0067h\u0074\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00368",Value :"\u0065i\u0067\u0068\u0074\u0074\u0068\u0061i"},{Key :"o\u006d\u0065\u0067\u0061\u0063\u006c\u006f\u0073\u0065\u0064",Value :"\u0065\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00377",Value :"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u006c",Value :"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u006e",Value :"\u0065l\u0065\u006d\u0065\u006e\u0074"},{Key :"\u0065l\u0069\u0070\u0073\u0069\u0073",Value :"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073"},{Key :"\u0075n\u0069c\u006f\u0064\u0065\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073"},{Key :"\u0076\u0064\u006ft\u0073",Value :"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0076\u0065\u0072t\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00378",Value :"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u006d",Value :"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0070u\u006e\u0063\u0074\u0064\u0061\u0073h",Value :"\u0065\u006d\u0064\u0061\u0073\u0068"},{Key :"\u0076\u0061\u0072\u006e\u006f\u0074\u0068\u0069\u006e\u0067",Value :"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074"},{Key :"\u0072a\u006e\u0067\u0065\u0064\u0061\u0073h",Value :"\u0065\u006e\u0064\u0061\u0073\u0068"},{Key :"\u006e\u0067",Value :"\u0065\u006e\u0067"},{Key :"\u0072\u0069\u006e\u0067ri\u0067\u0068\u0074\u0068\u0061\u006c\u0066\u0063\u0065\u006e\u0074\u0065\u0072",Value :"\u0065\u006f\u0070e\u006e"},{Key :"c\u0065\u0064\u0069\u006c\u006c\u0061\u006e\u006f\u0073\u0070",Value :"e\u006f\u0070\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064"},{Key :"\u0072i\u006eg\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0073\u0075\u0070",Value :"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"t\u0061\u0063\u006b\u0064\u006f\u0077\u006e\u006d\u0069\u0064",Value :"\u0065\u006f\u0070\u0065nr\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u006c\u006f\u0073\u0065\u0064"},{Key :"\u0074a\u0063\u006b\u0075\u0070\u006d\u0069d",Value :"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065d\u0068\u006f\u006f\u006b"},{Key :"\u0075p\u0065\u0070\u0073\u0069\u006c\u006fn",Value :"\u0065p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0075\u0070\u0076a\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u0063\u0068\u0065\u0076\u0065\u0072\u0074\u0062\u0061\u0072",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031"},{Key :"\u0048\u0063\u0079\u0072\u0069\u006c",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076"},{Key :"\u0075\u0070\u0062\u0061\u0063\u006b\u0065\u0070\u0073\u0069\u006c\u006f\u006e",Value :"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0063\u006f\u006c\u006f\u006e",Value :"\u0065q\u0063\u006f\u006c\u006f\u006e"},{Key :"\u0064\u0065\u0066\u0069\u006e\u0065\u0071\u0075\u0061\u006c",Value :"\u0065\u0071\u0064e\u0066"},{Key :"\u0065\u0071\u0075a\u006c\u0067\u0072\u0065\u0061\u0074\u0065\u0072",Value :"\u0065\u0071\u0067t\u0072"},{Key :"\u0065q\u0075\u0061\u006c\u006c\u0065\u0073s",Value :"\u0065\u0071\u006c\u0065\u0073\u0073"},{Key :"c\u0075\u0072\u006c\u0079\u0065\u0071\u0073\u0075\u0063\u0063",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u0031",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073"},{Key :"\u0065\u0071\u0073\u006c\u0061\u006e\u0074\u0067\u0074\u0072",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0067\u0072e\u0061\u0074\u0065\u0072"},{Key :"e\u0071\u0073\u006c\u0061\u006e\u0074\u006c\u0065\u0073\u0073",Value :"e\u0071\u0075\u0061\u006c\u006f\u0072\u006c\u0065\u0073\u0073"},{Key :"c\u0075\u0072\u006c\u0079\u0065\u0071\u0070\u0072\u0065\u0063",Value :"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0070\u0072\u0065\u0063e\u0064\u0065\u0073\u0031",Value :"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u0065\u0071\u0073i\u006d",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072"},{Key :"\u006d\u0069\u006e\u0075\u0073\u0074\u0069\u006c\u0064\u0065",Value :"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",Value :"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0062"},{Key :"\u0065\u0071\u0075i\u0076",Value :"e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0063\u0065"},{Key :"\u0061\u0073\u0079m\u0070",Value :"\u0065q\u0075i\u0076\u0061\u0073\u0079\u006d\u0070\u0074\u006f\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00382",Value :"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u0072",Value :"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0073\u0075\u0062",Value :"\u0065r\u0065\u0076\u0065\u0072\u0073\u0065d"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00395",Value :"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0065c\u0079\u0072\u0069\u006c\u0072\u0065v",Value :"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00383",Value :"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0065\u0073",Value :"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006e\u0064\u0075\u006e\u006f\u0073\u0070",Value :"\u0065\u0073\u0068"},{Key :"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u0073\u0075p\u006e\u006f\u0073\u0070",Value :"\u0065s\u0068\u0063\u0075\u0072\u006c"},{Key :"\u0063\u006fm\u006d\u0061\u0074u\u0072\u006e\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0065\u0073h\u0073\u0071\u0075a\u0074\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0075\u0070\u0065t\u0061",Value :"\u0065\u0074\u0061"},{Key :"\u0044\u0062\u0061\u0072",Value :"\u0065\u0074\u0068"},{Key :"\u0044m\u0061\u0063\u0072\u006f\u006e",Value :"\u0065\u0074\u0068"},{Key :"\u006da\u0074\u0068\u0065\u0074\u0068",Value :"\u0065\u0074\u0068"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068v\u0062\u0061\u0073\u0065",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0065t\u006ea\u0068\u0074\u0061\u0066\u006fu\u006b\u0068h\u0065\u0062\u0072\u0065\u0077",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0074\u006e\u0061ht\u0061\u0066\u006f\u0075\u006b\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072e\u0077",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0045\u0078\u0063\u006c\u0061\u006d",Value :"\u0065x\u0063\u006c\u0061\u006d\u0064\u0062l"},{Key :"\u0065\u0078\u0069\u0073\u0074\u0073",Value :"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c"},{Key :"t\u0068\u0065\u0072\u0065\u0065\u0078\u0069\u0073\u0074\u0073",Value :"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c"},{Key :"p\u006c\u0075\u0073\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0065\u007a\u0068"},{Key :"j\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0062\u0061\u0072",Value :"\u0065\u007a\u0068\u0063\u0061\u0072\u006f\u006e"},{Key :"\u006d\u0069\u006eu\u0073\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0065z\u0068\u0063\u0075\u0072\u006c"},{Key :"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073h\u0061\u0063\u0065\u006b",Value :"e\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073h\u0061\u0063\u0065\u006b",Value :"\u0065z\u0068\u0074\u0061\u0069\u006c"},{Key :"\u0064\u0065g\u0072\u0065\u0065f\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074",Value :"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074"},{Key :"\u0064e\u0067r\u0065\u0065\u0066\u0061\u0072\u0065\u006e\u0068\u0065\u0069\u0074",Value :"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074"},{Key :"\u0066a\u0072\u0065\u006e\u0068\u0065\u0069t",Value :"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074"},{Key :"f\u0061\u0074\u0068\u0061\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0066a\u0074h\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00354",Value :"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0061\u0074h\u0061",Value :"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063"},{Key :"f\u0061\u0074\u0068\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0077\u0061\u0076\u0065r\u0069\u0067\u0068\u0074",Value :"f\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0066\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0066e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006f\u0068\u006fo\u006b",Value :"\u0066e\u0069\u0063\u006f\u0070\u0074\u0069c"},{Key :"\u0076\u0065\u006eu\u0073",Value :"\u0066\u0065\u006d\u0061\u006c\u0065"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0064a\u0067\u0065\u0073\u0068",Value :"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077"},{Key :"\u0066i\u006ea\u006c\u006b\u0061\u0066\u0077i\u0074\u0068d\u0061\u0067\u0065\u0073\u0068",Value :"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00377",Value :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d",Value :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u006d\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00383",Value :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0066i\u006e\u0061\u006c\u0070\u0065",Value :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0070e\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00385",Value :"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069"},{Key :"\u0066\u0069n\u0061\u006c\u0074s\u0061\u0064\u0069\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069"},{Key :"\u0074\u0073\u0061\u0064\u0069\u0066\u0069\u006e\u0061\u006c",Value :"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00397",Value :"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074fi\u0076\u0065",Value :"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0069\u0076\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",Value :"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066i\u0076\u0065\u0073\u0075\u0062",Value :"\u0066\u0069\u0076e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u0066i\u0076\u0065",Value :"f\u0069\u0076\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00365",Value :"\u0066\u0069\u0076\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0066\u006c\u006fo\u0072\u006c\u0065\u0066\u0074\u0042\u0069\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006f\u006f\u0072\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006fo\u0072\u006c\u0065\u0066\u0074\u0062\u0069\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006f\u006f\u0072\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u006c\u0066\u006c\u006f\u006f\u0072",Value :"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068t\u0042\u0069\u0067\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068t\u0062\u0069\u0067\u0067",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072\u0066\u006c\u006f\u006f\u0072",Value :"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0056\u0063\u0075\u0072\u0073\u0069\u0076\u0065",Value :"\u0066\u006c\u006f\u0072\u0069\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00311",Value :"\u0066o\u0066\u0061\u006e\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00309",Value :"\u0066\u006f\u0066\u0061\u0074\u0068\u0061\u0069"},{Key :"s\u0075\u0063\u0063\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u0066o\u006cl\u006f\u0077\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076"},{Key :"\u0073\u0075\u0063\u0063\u006e\u0065\u0071\u0071",Value :"\u0066\u006fl\u006c\u006f\u0077n\u006f\u0074\u0073\u006c\u006e\u0074\u0065\u0071\u006c"},{Key :"\u0066o\u006cl\u006f\u0077\u0073\u006e\u006ft\u0065\u0071u\u0069\u0076\u006c\u006e\u0074",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074"},{Key :"\u0073\u0075\u0063\u0063\u006e\u0073\u0069\u006d",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074"},{Key :"\u006eo\u0074f\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072\u0065\u0071\u006c",Value :"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0063\u0063\u0065\u0071",Value :"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c\u0031",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079"},{Key :"s\u0075\u0063\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079"},{Key :"\u0066o\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0063\u0063\u0073\u0069\u006d",Value :"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00359",Value :"f\u006f\u006e\u0067\u006d\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0056\u0064\u0061s\u0068",Value :"\u0066\u006f\u0072\u0063\u0065\u0073"},{Key :"\u0066\u006f\u0072c\u0065",Value :"\u0066\u006f\u0072\u0063\u0065\u0073"},{Key :"\u0056\u0076\u0064\u0061\u0073\u0068",Value :"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r"},{Key :"\u0074\u0061\u0063\u006b\u0074\u0072\u0070\u006c",Value :"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r"},{Key :"\u0070i\u0074\u0063\u0068\u0066\u006f\u0072k",Value :"\u0066\u006f\u0072\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00396",Value :"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074fo\u0075\u0072",Value :"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066\u006f\u0075\u0072\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",Value :"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066o\u0075\u0072\u0073\u0075\u0062",Value :"\u0066\u006f\u0075r\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u0066o\u0075\u0072",Value :"f\u006f\u0075\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00364",Value :"\u0066\u006f\u0075\u0072\u0074\u0068\u0061\u0069"},{Key :"\u0066r\u0061\u0063\u0073\u006c\u0061\u0073h",Value :"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e"},{Key :"\u0066r\u0061\u0063\u0074\u0069\u006f\u006e1",Value :"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e"},{Key :"\u0068\u0074\u0075r\u006e",Value :"\u0067\u0061\u0063\u0075\u0074\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00309",Value :"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0067\u0061\u0066",Value :"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0061\u0066\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0067\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067a\u0066\u006d\u0065\u0064\u0069\u0061l",Value :"\u0067a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075p\u0067\u0061\u006d\u006d\u0061",Value :"\u0067\u0061\u006dm\u0061"},{Key :"\u0075\u0073\u0074r\u0074",Value :"\u0067\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0067\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0067\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0067\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0067\u0064\u006f\u0074"},{Key :"\u0042\u0075\u006d\u0070\u0065\u0071",Value :"\u0067\u0065\u006f\u006d\u0065\u0071\u0075\u0069\u0076a\u006c\u0065\u006e\u0074"},{Key :"\u0044\u006f\u0074e\u0071",Value :"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0073\u0064\u006f\u0074\u0073",Value :"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067e\u006f\u006d\u0065\u0071\u0075\u0061l",Value :"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0065n\u0064\u0074\u0065\u0078\u0074",Value :"\u0067e\u0072e\u0073\u0068\u0061\u0063\u0063e\u006e\u0074h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0067\u0065\u0072\u0065\u0073\u0068",Value :"\u0067\u0065\u0072e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065\u006e\u0064\u0074\u0072\u0061\u006e\u0073",Value :"\u0067e\u0072e\u0073\u0068\u006d\u0075\u0071d\u0061\u006dh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065n\u0071\u0075\u0069\u0072\u0079",Value :"g\u0065\u0072\u0073\u0068ay\u0069m\u0061\u0063\u0063\u0065\u006et\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0067e\u0072\u0073\u0068\u0061\u0079\u0069m",Value :"\u0067e\u0072s\u0068\u0061\u0079\u0069\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0076e\u0072y\u006d\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072",Value :"\u0067\u0067\u0067"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00334",Value :"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0068\u0061i\u006e",Value :"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0068\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0067\u0068a\u0069\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0067\u0068\u0061i\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0067h\u0061i\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"g\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0067\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00398",Value :"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0067\u0065\u0075\u0070\u0074\u0075\u0072\u006e",Value :"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063"},{Key :"\u0067i\u006d\u0065\u006c\u006d\u0061\u0074h",Value :"\u0067\u0069\u006de\u006c"},{Key :"g\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0067i\u006de\u006c\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00300",Value :"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0067\u006a\u0065",Value :"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0068\u006fo\u006b\u0073\u0075b\u0070\u0061\u006c\u0061\u0074\u006e\u006f\u0073\u0070",Value :"g\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070"},{Key :"\u0064\u006f\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064"},{Key :"\u0068\u006fo\u006b\u0073\u0075b\u0072\u0065\u0074\u0072\u006f\u006e\u006f\u0073\u0070",Value :"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0062\u0072\u0065v\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0073t\u0072\u006f\u006b\u0065"},{Key :"\u0062r\u0065v\u0065\u0069\u006e\u0076\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0067l\u006f\u0074\u0074\u0061l\u0073\u0074\u006f\u0070\u0073t\u0072o\u006be\u0072\u0065\u0076\u0065\u0072\u0073\u0065d"},{Key :"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0065\u0071u\u0069\u0076\u006c\u006e\u0074",Value :"\u0067\u006e\u0073i\u006d"},{Key :"\u006e\u0061\u0062l\u0061",Value :"\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074"},{Key :"\u0067r\u0061\u0076\u0065\u0063\u006f\u006db",Value :"\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062"},{Key :"\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073t\u006f\u006e\u006f\u0073",Value :"g\u0072\u0061\u0076\u0065\u006c\u006f\u0077\u006d\u006f\u0064"},{Key :"\u0067\u0074\u0072\u0065\u0071\u0071\u006c\u0065\u0073\u0073",Value :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071l\u006c\u0065\u0073\u0073"},{Key :"\u0067\u0074\u0072\u0064\u006f\u0074",Value :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u006f\u0074"},{Key :"\u0067\u0065\u0071",Value :"\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067\u0072e\u0061\u0074\u0065r\u0065\u0071\u0075\u0061\u006c\u006c\u0065\u0073\u0073",Value :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067\u0072e\u0061\u0074\u0065r\u006c\u0065\u0073\u0073\u0065\u0071\u0075\u0061\u006c",Value :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067t\u0072\u0065\u0071\u006c\u0065\u0073s",Value :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0064\u0062l\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067\u006e\u0065\u0071",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067t\u0072\u0061\u0070\u0070\u0072\u006fx",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072a\u0070\u0070r\u006f\u0078\u0065\u0071\u006c"},{Key :"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0072\u0073\u0069\u006d\u0069\u006c\u0061\u0072",Value :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u0067\u0074\u0072\u0073\u0069\u006d",Value :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u0067t\u0072\u006c\u0065\u0073\u0073",Value :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006c\u0065\u0073\u0073"},{Key :"\u0067\u006e\u0065q\u0071",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c"},{Key :"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",Value :"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c"},{Key :"\u0067\u0065\u0071\u0071",Value :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0067r\u0065a\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",Value :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u0064\u0062l\u0065\u0071\u0075\u0061\u006c",Value :"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0068e\u0068a\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061\u0061\u006c\u0074\u006f\u006e\u0065\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0068\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068a\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0068a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00309",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006dz\u0061",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"h\u0061\u006d\u007a\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aad\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061m\u007a\u0061\u0066a\u0074\u0068\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aaf\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007a\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aal\u006f\u0077\u006b\u0061\u0073\u0072\u0061\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061\u006d\u007aal\u006f\u0077\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061\u0072\u0061\u0062i\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0061m\u007a\u0061\u0073u\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00392",Value :"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0068\u0061\u0072\u0064",Value :"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064o\u0077n\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074",Value :"\u0068a\u0072p\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074"},{Key :"\u0064\u006fw\u006e\u0068\u0061r\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074",Value :"\u0068\u0061r\u0070\u006f\u006fn\u0064\u006f\u0077\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0074\u006f\u0070\u0068\u0061\u006c\u0066",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070"},{Key :"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070"},{Key :"\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074\u0068\u0061\u0072p\u006f\u006f\u006e\u0073",Value :"\u0068\u0061r\u0070\u006f\u006fn\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u006fp\u0068\u0061\u006c\u0066",Value :"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0075\u0070",Value :"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070"},{Key :"\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072p\u006f\u006f\u006e\u0073",Value :"\u0068\u0061r\u0070\u006f\u006fn\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074"},{Key :"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u006c\u0065\u0066\u0074"},{Key :"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006er\u0069\u0067\u0068\u0074",Value :"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070r\u0069\u0067\u0068\u0074"},{Key :"h\u0061t\u0061\u0066\u0070\u0061\u0074\u0061\u0068\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074af\u0070\u0061\u0074\u0061\u0068\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061t\u0061\u0066\u0070a\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074\u0061fp\u0061\u0074\u0061\u0068\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072e\u0077",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0032\u0066",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00300",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0065n\u0064\u006d\u0065\u0064\u0069\u0075m",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0032\u0033",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00302",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0073\u0075\u0062\u0073\u0074\u0069\u0074\u0075\u0074\u0065",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0033\u0034",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"h\u0061\u0074\u0061\u0066qa\u006da\u0074\u0073\u0077\u0069\u0064e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068\u0061\u0074af\u0071\u0061\u006d\u0061\u0074\u0073\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068a\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0071\u0075a\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0031\u0062",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"h\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0065n\u0064\u006f\u0066\u0066\u0069\u006ce",Value :"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00301",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0063\u0061\u006e\u0063\u0065\u006c",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074\u0061\u0066\u0073\u0065\u0067\u006f\u006c",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074a\u0066\u0073\u0065\u0067\u006f\u006c\u0031\u0037",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074a\u0066\u0073\u0065\u0067\u006f\u006c\u0032\u0034",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074a\u0066\u0073\u0065\u0067\u006f\u006c\u0033\u0030",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061t\u0061\u0066\u0073e\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074\u0061fs\u0065\u0067\u006f\u006c\u006e\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0062\u0072e\u0077",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0068\u0061\u0074af\u0073\u0065\u0067\u006f\u006c\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077"},{Key :"\u0061\u0031\u0031\u0030",Value :"\u0068\u0065\u0061r\u0074"},{Key :"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074b\u006c\u0061\u0063\u006b",Value :"\u0068\u0065\u0061r\u0074"},{Key :"\u0076\u0061\u0072h\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074",Value :"\u0068\u0065\u0061r\u0074"},{Key :"\u0068e\u0061\u0072\u0074\u0073\u0075\u0069t",Value :"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"h\u0065\u0077\u0069\u0074\u0068\u006d\u0061\u0070\u0069\u0071",Value :"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00370",Value :"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0068\u0065\u0068",Value :"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u006c\u0074t\u0077\u006f\u0061\u0072ab\u0069\u0063",Value :"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0068\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0068e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0068e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0072\u0068\u006f\u0074\u0069\u0063\u0068\u006f\u006f\u006b",Value :"\u0068\u0065\u006e\u0067\u0068\u006f\u006f\u006b"},{Key :"\u0068\u0065r\u006d\u0069\u0074c\u006f\u006e\u006a\u006d\u0061\u0074\u0072\u0069\u0078",Value :"\u0068\u0065\u0072m\u0069\u0074\u006d\u0061\u0074\u0072\u0069\u0078"},{Key :"\u0074\u0069l\u0064\u0065\u0076e\u0072\u0074\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0068\u0069\u0072i\u0071",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072\u0069\u0071\u0032\u0064",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00393",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"h\u0069\u0072\u0069\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0065\u0073\u0063\u0061\u0070\u0065",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068\u0069\u0072\u0069\u0071\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072i\u0071\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072\u0069\u0071\u0032\u0031",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0068i\u0072i\u0071\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068i\u0072\u0069\u0071\u0031\u0034"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00323",Value :"\u0068o\u0068\u0069\u0070\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00306",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068\u006f\u006ca\u006d",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006c\u0061\u006d\u0031\u0039",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006c\u0061\u006d\u0032\u0036",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006c\u0061\u006d\u0033\u0032",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"h\u006f\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068\u006f\u006c\u0061\u006d\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0068o\u006ca\u006d\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0070\u0061c\u0065\u006c\u0069\u0074\u0065\u0072\u0061\u006c",Value :"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00326",Value :"\u0068\u006f\u006eo\u006b\u0068\u0075\u006b\u0074\u0068\u0061\u0069"},{Key :"\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065\u0063\u006f\u006d\u0062",Value :"\u0068o\u006f\u006b\u0063\u006d\u0062"},{Key :"\u006f\u0076\u0068\u006f\u006f\u006b",Value :"\u0068o\u006f\u006b\u0063\u006d\u0062"},{Key :"\u0074e\u0072\u0074\u0064\u0065\u0073",Value :"\u0068\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0030\u0030\u0032\u00308",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u0068\u006f\u0072\u0069\u007a\u0062\u0061\u0072",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u006c\u006f\u006e\u0067\u0064\u0061\u0073\u0068",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u0071u\u006f\u0074\u0065\u0064\u0061\u0073h",Value :"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072"},{Key :"\u0072e\u0063\u0074\u0061\u006e\u0067\u006ce",Value :"\u0068\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0078\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0068s\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0053\u0044\u0031\u0039\u0030\u0031\u0030\u0030",Value :"\u0068t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u005a\u0062\u0061\u0072",Value :"\u0068\u0076"},{Key :"\u0068\u0079\u0070h\u0065\u006e\u002d\u002c\u0069\u006e\u0075\u0073",Value :"\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0068\u0079\u0070\u0068\u0065\u006e\u0063\u0068\u0061\u0072",Value :"\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"h\u0079\u0070\u0068\u0065\u006e\u006d\u0069\u006e\u0075\u0073",Value :"\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0068y\u0070\u0068\u0065\u006e\u0031",Value :"\u0068y\u0070\u0068\u0065\u006e\u0074\u0077o"},{Key :"\u006a\u0068\u0061\u0063\u0065\u006b",Value :"\u0069\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0072\u0074\u0075r\u006e",Value :"\u0069d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"d\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074",Value :"\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00370",Value :"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u0065",Value :"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00374",Value :"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u0069",Value :"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0069\u006e\u0074e\u0067\u0072\u0061\u006c\u0074\u0072\u0070\u006c",Value :"\u0069\u0069\u0069n\u0074"},{Key :"\u0074\u0072\u0069\u0070\u006c\u0065\u0069\u006e\u0074e\u0067\u0072\u0061\u006c",Value :"\u0069\u0069\u0069n\u0074"},{Key :"\u0072t\u0075\u0072\u006e\u0068\u006f\u006fk",Value :"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"r\u0074\u0075\u0072\u006e\u0072\u0074\u0068\u006f\u006f\u006b",Value :"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0061\u0075\u0078i\u006c\u0069\u0061\u0072\u0079\u006f\u0066\u0066",Value :"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0033",Value :"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0069\u006d\u0061g\u0065",Value :"\u0069m\u0061\u0067\u0065\u006f\u0066"},{Key :"\u0065\u0071\u0075\u0061\u006c\u0064\u006f\u0074\u0072\u0069\u0067\u0068t\u006c\u0065\u0066\u0074",Value :"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l"},{Key :"\u0069m\u0061g\u0065\u006f\u0072\u0061\u0070p\u0072\u006fx\u0065\u0071\u0075\u0061\u006c",Value :"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l"},{Key :"\u0072\u0069\u0073i\u006e\u0067\u0064\u006f\u0074\u0073\u0065\u0071",Value :"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l"},{Key :"\u0069\u006e\u0066t\u0079",Value :"\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079"},{Key :"c\u006c\u0077\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u0069\u006e\u0074c\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0062\u0061\u0063k\u0073\u006c\u0061\u0073\u0068\u0042\u0069\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068\u0042\u0069\u0067\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063k\u0073\u006c\u0061\u0073\u0068\u0062\u0069\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068\u0062\u0069\u0067\u0067",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068\u006d\u0061\u0074\u0068",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0073\u0065\u0074\u006d\u0069\u006e\u0075\u0073",Value :"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065"},{Key :"\u0069\u006e\u0074",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069n\u0074e\u0067\u0072\u0061\u006c\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069\u006e\u0074e\u0067\u0072\u0061\u006c\u0074\u0065\u0078\u0074",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c"},{Key :"\u0069n\u0074\u0062\u006f\u0074\u0074\u006fm",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074"},{Key :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062o\u0074\u0074\u006f\u006d",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074"},{Key :"i\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u006f\u0070",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070"},{Key :"\u0069\u006e\u0074\u0074\u006f\u0070",Value :"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070"},{Key :"\u0063\u0061\u0070",Value :"\u0069\u006e\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e"},{Key :"\u0043\u0061\u0070",Value :"\u0069n\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0062\u006c"},{Key :"\u0062\u0069\u0067\u0063\u0061\u0070",Value :"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0069\u006et\u0065\u0072\u0073e\u0063\u0074\u0069\u006f\u006e\u0074\u0065\u0078\u0074",Value :"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u006e\u0061r\u0079\u0069\u006et\u0065\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e",Value :"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079"},{Key :"\u0073\u0071\u0063a\u0070",Value :"\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074i\u006f\u006e\u0073\u0071"},{Key :"\u0062\u0075\u006c\u006c\u0065\u0074\u0069\u006e\u0076\u0065\u0072\u0073\u0065",Value :"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t"},{Key :"\u0069\u006e\u0076\u0065\u0072\u0073\u0065\u0062\u0075\u006c\u006c\u0065\u0074",Value :"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t"},{Key :"\u0069n\u0076e\u0072\u0073\u0065\u0077\u0068i\u0074\u0065c\u0069\u0072\u0063\u006c\u0065",Value :"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce"},{Key :"\u0077h\u0069t\u0065\u0063\u0069\u0072\u0063l\u0065\u0069n\u0076\u0065\u0072\u0073\u0065",Value :"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce"},{Key :"\u0053\u0069\u006e\u0076\u006c\u0061\u007a\u0079",Value :"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073"},{Key :"\u006c\u0061\u007a\u0079\u0073\u0069\u006e\u0076",Value :"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073"},{Key :"\u0069n\u0076s\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u006e",Value :"\u0069\u006e\u0076wh\u0069\u0074\u0065\u006c\u006f\u0077\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0069n\u0076s\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0070",Value :"\u0069\u006e\u0076wh\u0069\u0074\u0065\u0075\u0070\u0070\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0075\u0070\u0069\u006f\u0074\u0061",Value :"\u0069\u006f\u0074\u0061"},{Key :"\u0067\u0061\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072",Value :"\u0069o\u0074\u0061\u006c\u0061\u0074\u0069n"},{Key :"\u0068\u0069\u0067\u0068\u0063\u006f\u006d\u006d\u0061\u006e",Value :"\u0069\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0062\u0072\u0069\u0064\u0067\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u006a\u0063\u0072o\u0073\u0073\u0065\u0064\u0074\u0061\u0069\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00320",Value :"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006a\u0065\u0065\u006d",Value :"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ae\u0065\u006d\u0066\u0069\u006e\u0061l",Value :"\u006ae\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"j\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006a\u0065\u0065\u006d\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006a\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006f\u0076e\u0072\u0073\u0063o\u0072\u0065\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u006as\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00376",Value :"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u006b\u0061",Value :"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00375",Value :"\u006b\u0061\u0066"},{Key :"\u006ba\u0066\u0068\u0065\u0062\u0072\u0065w",Value :"\u006b\u0061\u0066"},{Key :"\u006ba\u0066d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u006b\u0061\u0066\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u006b\u0061\u0066f\u0069\u006e\u0061\u006c",Value :"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0061\u0066\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006b\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ba\u0066\u006d\u0065\u0064\u0069\u0061l",Value :"\u006ba\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"k\u0061\u0066\u0077\u0069\u0074\u0068\u0072\u0061\u0066\u0065",Value :"\u006b\u0061\u0066\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0075p\u006b\u0061\u0070\u0070\u0061",Value :"\u006b\u0061\u0070p\u0061"},{Key :"\u0054\u0065\u0054s\u0065",Value :"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0070\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",Value :"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00340",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074\u006f\u0061r\u0061\u0062\u0069\u0063",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074a\u0074\u0077\u0065\u0065\u006c",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0061\u0074\u0077\u0065\u0065\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ba\u0073r\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",Value :"k\u0061\u0073\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00353",Value :"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e",Value :"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u006b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u006e\u006f\u0074",Value :"k\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0068\u006f\u006d\u006f\u0074\u0068\u0065\u0074\u0069\u0063",Value :"\u006b\u0065\u0072\u006e\u0065\u006c\u0063\u006f\u006e\u0074\u0072\u0061c\u0074\u0069\u006f\u006e"},{Key :"\u006bh\u0061\u0068\u0066\u0069\u006e\u0061l",Value :"\u006bh\u0061h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"k\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006b\u0068\u0061\u0068\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006b\u0068a\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0065s\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u006b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00382",Value :"k\u0068\u006f\u006b\u0068\u0061\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00385",Value :"k\u0068\u006f\u006b\u0068\u006f\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00383",Value :"\u006b\u0068\u006fk\u0068\u0075\u0061\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00384",Value :"\u006b\u0068\u006fk\u0068\u0077\u0061\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00371",Value :"\u006b\u0068\u006f\u006d\u0075\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0079o\u0067\u0068\u0072\u0065\u0076",Value :"\u006b\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00386",Value :"\u006b\u0068\u006f\u0072\u0061\u006b\u0068\u0061\u006eg\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00381",Value :"\u006bo\u006b\u0061\u0069\u0074\u0068\u0061i"},{Key :"\u0061\u0072\u0063\u0068\u0064\u0062\u006c\u0073\u0075b\u006e\u006f\u0073\u0070",Value :"\u006bt\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00349",Value :"\u006ca\u006bk\u0068\u0061\u006e\u0067\u0079\u0061\u006f\u0074\u0068\u0061\u0069"},{Key :"\u006c\u0061m\u0077\u0069\u0074h\u0061\u006c\u0065\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u006ca\u006da\u006c\u0065\u0066\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066h\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066i\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065f\u0068\u0061\u006d\u007a\u0061\u0061\u0062o\u0076\u0065\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0064",Value :"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066h\u0061\u006d\u007a\u0061\u0062\u0065\u006c\u006f\u0077\u0066i\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006co\u0077f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063"},{Key :"\u006c\u0061m\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006c\u006f\u0077\u0069\u0073\u006f\u006cat\u0065\u0064",Value :"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0062\u0065\u006c\u006fw\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077it\u0068\u0061\u006c\u0065\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"l\u0061\u006d\u0061\u006cef\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u0064\u0064\u0061\u0061\u0062\u006f\u0076\u0065\u0066i\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0061l\u0065\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065f\u006d\u0061\u0064\u0064\u0061\u0061\u0062o\u0076\u0065\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0064",Value :"\u006c\u0061\u006da\u006c\u0065\u0066\u006da\u0064\u0064\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075\u0070\u006c\u0061\u006d\u0062\u0064\u0061",Value :"\u006c\u0061\u006d\u0062\u0064\u0061"},{Key :"\u0032\u0062\u0061\u0072",Value :"\u006c\u0061\u006db\u0064\u0061\u0073\u0074\u0072\u006f\u006b\u0065"},{Key :"\u006c\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u006ca\u006de\u0064\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00376",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006de\u0064",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"l\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006d\u0065\u0064\u0068\u006f\u006c\u0061\u006d",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006d\u0065dh\u006f\u006c\u0061\u006d\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072e\u0077",Value :"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c",Value :"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",Value :"\u006c\u0061\u006d\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006c\u0061\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u006d\u0065\u0065\u006d\u006a\u0065\u0065\u006d\u0069\u006ei\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u006d\u0065\u0065\u006d\u006b\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006dw\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"l\u0061m\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u006ca\u006dw\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"l\u0061m\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0061\u006c\u006c\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u006c\u0061\u006dla\u006d\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u006d\u0065\u0064\u0069\u0061l",Value :"\u006ca\u006dm\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006d\u0077\u0069\u0074h\u006d\u0065\u0065\u006d\u0077i\u0074h\u0068a\u0068\u0069\u006e\u0069\u0074\u0069\u0061l",Value :"\u006c\u0061\u006dme\u0065\u006d\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006ca\u006dw\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"l\u0061m\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"l\u0067\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"l\u0061\u0072\u0067\u0065\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0079\u006f\u0067\u0068\u0074\u0061\u0069\u006c",Value :"\u006c\u0062\u0061\u0072"},{Key :"\u0078\u0073\u0075\u0070\u0065\u0072",Value :"\u006c\u0062\u0065l\u0074"},{Key :"\u006c\u0063\u0065\u0064\u0069\u006c\u006c\u0061",Value :"\u006c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u006c\u0064\u006f\u0074",Value :"\u006c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u0064\u0072\u006f\u0061\u006e\u0067",Value :"\u006c\u0065\u0066\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0062\u006fv\u0065\u0063\u006d\u0062"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u0071\u0075\u0069\u0067\u0067\u006ce\u006c\u0065\u0066\u0074",Value :"\u006c\u0065\u0066\u0074\u0073\u0071\u0075\u0069\u0067a\u0072\u0072\u006f\u0077"},{Key :"\u006c\u0065\u0073\u0073\u0065\u0071\u0071\u0067\u0074\u0072",Value :"\u006c\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u006c\u0067\u0072e\u0061\u0074\u0065\u0072"},{Key :"\u006c\u0065\u0071",Value :"\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l"},{Key :"\u006ce\u0073\u0073\u0065\u0071\u0067\u0074r",Value :"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006c\u0065s\u0073\u0065\u0071u\u0061\u006c\u0067\u0072\u0065\u0061\u0074\u0065\u0072",Value :"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006c\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u006ce\u0073s\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u006e\u0065\u0071",Value :"\u006c\u0065\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0065\u0073\u0073\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u006ce\u0073s\u006f\u0072\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u006c"},{Key :"\u006c\u0065\u0071\u0073\u006c\u0061\u006e\u0074",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074"},{Key :"\u006e\u006ft\u006c\u0065\u0073s\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074"},{Key :"\u006c\u0065\u0073s\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u006c\u0065\u0073\u0073\u006f\u0072\u0073\u0069\u006d\u0069\u006c\u0061\u0072",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u006ce\u0073\u0073\u0073\u0069\u006d",Value :"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074"},{Key :"\u006ce\u0073\u0073\u0067\u0074\u0072",Value :"\u006c\u0065\u0073\u0073\u006f\u0072\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006ce\u0073s\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c",Value :"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u006c\u006e\u0065q\u0071",Value :"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0065\u0071\u0071",Value :"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0065\u0073s\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",Value :"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074l\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",Value :"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0074\u006f\u006e\u0065\u0065\u0078\u0074\u0072\u0061\u0068\u0069\u0067\u0068",Value :"\u006c\u0065\u007a\u0068"},{Key :"\u0062\u006c\u006f\u0063\u006b\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066",Value :"\u006cf\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0067l\u006ft\u0074\u0061\u006c\u0072\u0065\u0076\u0073\u0075\u0070\u0065\u0072",Value :"\u006c\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068t\u0064\u006f\u0077\u006e",Value :"\u006c\u0069\u006e\u0065\u0066\u0065\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0030\u0038\u0039\u00341",Value :"\u006c\u0069\u0072\u0061"},{Key :"\u006b\u0068\u0061\u0063\u0065\u006b",Value :"\u006c\u006a"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00306",Value :"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u006c\u006a\u0065",Value :"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0073w\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u006c\u006c\u0061r\u0063"},{Key :"\u0076\u0065\u0072y\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073",Value :"\u006c\u006c\u006c"},{Key :"\u0073\u0073\u0075\u0070\u0065\u0072",Value :"\u006c\u006d\u0069d\u0064\u006c\u0065\u0074\u0069\u006c\u0064\u0065"},{Key :"\u006ce\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u006c\u006e\u0073i\u006d"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00324",Value :"l\u006f\u0063\u0068\u0075\u006c\u0061\u0074\u0068\u0061\u0069"},{Key :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064"},{Key :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006ed\u0074\u0065\u0078\u0074",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064"},{Key :"\u0077\u0065\u0064g\u0065",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064"},{Key :"\u006e\u0065\u0067",Value :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074"},{Key :"\u006c\u006fg\u0069\u0063\u0061l\u006f\u0072\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr"},{Key :"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006f\u0072\u0074\u0065\u0078\u0074",Value :"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr"},{Key :"\u0076\u0065\u0065",Value :"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00317",Value :"\u006c\u006f\u006c\u0069\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u004f\u0062\u0061\u0072",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0064\u0062\u006c\u0073",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0073\u0068",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0073\u0069",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u006c\u006f\u006e\u0067\u0073\u006c",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u0073\u006c\u006fn\u0067",Value :"\u006c\u006f\u006eg\u0073"},{Key :"\u0073\u006c\u006f\u006e\u0067\u0074",Value :"\u006c\u006f\u006e\u0067\u0073\u0074"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u006c\u006fz\u0065\u006e\u0067\u0065",Value :"\u006co\u007a\u0065\u006e\u0067\u0065"},{Key :"\u0073e\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u006c\u0072\u0061r\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00318",Value :"\u006c\u0075\u0074\u0068\u0061\u0069"},{Key :"\u006fv\u0065\u0072\u0073\u0063\u006f\u0072e",Value :"\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0075\u006e\u0064\u0065\u0072\u0062\u0061\u0072",Value :"\u006d\u0061\u0063\u0072\u006f\u006e\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u006da\u0068a\u0070\u0061\u006b\u0068\u006ce\u0066\u0074h\u0065\u0062\u0072\u0065\u0077",Value :"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0076e\u0072\u0074\u0074\u0061\u0062",Value :"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00355",Value :"\u006da\u0069c\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00352",Value :"\u006da\u0069\u0065\u006b\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00328",Value :"\u006d\u0061\u0069\u0068\u0061\u006e\u0061\u006b\u0061t\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00351",Value :"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00353",Value :"\u006d\u0061\u0069\u0074\u0068\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00354",Value :"\u006d\u0061\u0069\u0074\u0072\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00350",Value :"\u006d\u0061\u0069y\u0061\u006d\u006f\u006b\u0074\u0068\u0061\u0069"},{Key :"\u006d\u0061\u006c\u0065",Value :"\u006d\u0061\u0072\u0073"},{Key :"\u0073\u0079\u006ec\u0068",Value :"\u006da\u0073o\u0072\u0061\u0063\u0069\u0072c\u006c\u0065h\u0065\u0062\u0072\u0065\u0077"},{Key :"m\u0065\u0061\u0073\u0075\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u006d\u0065\u0061\u0073\u0065\u0071"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0072\u0063",Value :"\u006de\u0061s\u0075\u0072\u0065\u0064\u0072i\u0067\u0068t\u0061\u006e\u0067\u006c\u0065"},{Key :"\u006de\u0065\u006d\u0066\u0069\u006e\u0061l",Value :"\u006de\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"m\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006d\u0065\u0065\u006d\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006d\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"m\u0065\u0065\u006d\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00378",Value :"\u006d\u0065\u006d"},{Key :"\u006de\u006d\u0068\u0065\u0062\u0072\u0065w",Value :"\u006d\u0065\u006d"},{Key :"\u006de\u006d\u0064\u0061\u0067\u0065\u0073h",Value :"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u006d\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0066\u006f\u0072\u006d\u0066\u0065\u0065\u0064",Value :"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065r\u006b\u0068\u0061l\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u0072\u006bha\u006b\u0065\u0066\u0075\u006c\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072e\u0077",Value :"\u006de\u0072k\u0068\u0061\u006b\u0065\u0066u\u006c\u0061h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0043\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0043"},{Key :"\u0043\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0043"},{Key :"\u0043\u0066\u0072\u0061\u006b\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0043"},{Key :"\u0048\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0048"},{Key :"\u0048\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0048"},{Key :"\u0048\u0066\u0072\u0061\u006b\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u0048"},{Key :"\u005a\u0062\u006ca\u0063\u006b\u006c\u0065\u0074\u0074\u0065\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u005a"},{Key :"\u005a\u0066\u0072\u0061\u0063\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u005a"},{Key :"\u005a\u0066\u0072\u0061\u006b\u0074\u0075\u0072",Value :"\u006d\u0066\u0072\u0061\u006b\u005a"},{Key :"\u0074o\u006e\u0065\u006c\u006f\u0077",Value :"\u006d\u0068\u006fo\u006b"},{Key :"c\u0069\u0072\u0063\u006c\u0065\u006d\u0069\u006e\u0075\u0073",Value :"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u006f\u006d\u0069\u006e\u0075\u0073",Value :"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u006d\u0069\u006e\u0075\u0073\u0073\u0075\u0062",Value :"\u006d\u0069\u006e\u0075\u0073\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u006d\u0070",Value :"\u006di\u006e\u0075\u0073\u0070\u006c\u0075s"},{Key :"\u0070\u0072\u0069m\u0065",Value :"\u006d\u0069\u006e\u0075\u0074\u0065"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0031",Value :"\u006d\u0069\u006e\u0075\u0074\u0065"},{Key :"\u0074o\u006e\u0065\u006d\u0069\u0064",Value :"\u006d\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064"},{Key :"\u0074r\u0075\u0065\u0073\u0074\u0061\u0074e",Value :"\u006d\u006f\u0064\u0065\u006c\u0073"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00313",Value :"\u006d\u006f\u006d\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0042s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0042"},{Key :"\u0045s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0045"},{Key :"\u0046s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0046"},{Key :"\u0048s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0048"},{Key :"\u0049s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0049"},{Key :"\u004cs\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u004c"},{Key :"\u004ds\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u004d"},{Key :"\u0052s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0052"},{Key :"\u0065s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u0065"},{Key :"g\u0073\u0063\u0072\u0069\u0070\u0074\u006d\u0061\u0074\u0068",Value :"\u006d\u0073\u0063r\u0067"},{Key :"\u0030s\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u006f"},{Key :"\u006fs\u0063\u0072\u0069\u0070\u0074",Value :"\u006d\u0073\u0063r\u006f"},{Key :"\u0074\u006f\u006e\u0065\u0068\u0069\u0067\u0068",Value :"\u006dt\u0075\u0072\u006e\u0065\u0064"},{Key :"\u006d\u0075\u0031",Value :"\u006d\u0075"},{Key :"\u0067\u0067",Value :"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"g\u0072\u0065\u0061\u0074\u0065\u0072\u006d\u0075\u0063\u0068",Value :"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006c\u0065\u0073\u0073\u006d\u0075\u0063\u0068",Value :"\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073"},{Key :"\u0075\u0070\u006d\u0075",Value :"\u006du\u0067\u0072\u0065\u0065\u006b"},{Key :"\u006c\u0074\u0069\u006d\u0065\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u0063\u006c\u006f\u0073e\u006c\u0065\u0066\u0074"},{Key :"\u0072\u0074\u0069\u006d\u0065\u0073",Value :"\u006du\u006ct\u0069\u0063\u006c\u006f\u0073\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006c\u0065\u0066\u0074\u0074\u0068\u0072\u0065\u0065t\u0069\u006d\u0065\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074"},{Key :"\u0072i\u0067h\u0074\u0074\u0068\u0072\u0065\u0065\u0074\u0069\u006d\u0065\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074"},{Key :"\u0074\u0069\u006de\u0073",Value :"\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079"},{Key :"m\u0075\u006e\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006du\u006ea\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0065\u0069\u0067\u0068\u0074\u0068\u006e\u006f\u0074\u0065",Value :"m\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006f\u0074\u0065"},{Key :"\u0066\u006c\u0061\u0074",Value :"\u006d\u0075\u0073\u0069\u0063\u0066\u006c\u0061\u0074\u0073\u0069\u0067\u006e"},{Key :"\u0073\u0068\u0061r\u0070",Value :"\u006d\u0075\u0073\u0069\u0063\u0073\u0068\u0061\u0072p\u0073\u0069\u0067\u006e"},{Key :"\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065",Value :"\u006e\u0061\u006e\u0064"},{Key :"\u006e\u006f\u0074\u0061\u006c\u006d\u006f\u0073\u0074e\u0071\u0075\u0061\u006c",Value :"\u006ea\u0070\u0070\u0072\u006f\u0078"},{Key :"\u006eo\u0074e\u0071\u0075\u0069\u0076\u0061s\u0079\u006dp\u0074\u006f\u0074\u0069\u0063",Value :"\u006e\u0061\u0073\u0079\u006d\u0070"},{Key :"\u0068\u0079\u0070\u0068\u0065\u006e\u006e\u006f\u0062\u0072\u0065\u0061\u006b",Value :"\u006e\u0062\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0054m\u0061\u0063\u0072\u006f\u006e",Value :"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u006e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00387",Value :"\u006e\u0067\u006f\u006e\u0067\u0075\u0074\u0068\u0061\u0069"},{Key :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u0065\u0071u\u0069\u0076\u006c\u006e\u0074",Value :"\u006eg\u0074\u0072\u0073\u0069\u006d"},{Key :"\u0074\u006f\u006ee\u0065\u0078\u0074\u0072\u0061\u006c\u006f\u0077",Value :"\u006eh\u006f\u006f\u006b\u006c\u0065\u0066t"},{Key :"\u0067r\u0061\u0076\u0065\u006e\u006f\u0073p",Value :"\u006e\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00357",Value :"\u006e\u0069\u006bh\u0061\u0068\u0069\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00301",Value :"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074ni\u006e\u0065",Value :"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006e\u0069\u006e\u0065\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u006ei\u006e\u0065\u0073\u0075\u0062",Value :"\u006e\u0069\u006ee\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u006ei\u006e\u0065",Value :"n\u0069\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00369",Value :"\u006e\u0069\u006e\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0062a\u0072\u0069\u006e\u0076",Value :"\u006e\u006c\u0065\u0067\u0072\u0069\u0067\u0068\u0074\u006c\u006f\u006e\u0067"},{Key :"\u006e\u006f\u0074\u006c\u0065\u0073\u0073\u0067\u0072e\u0061\u0074\u0065\u0072",Value :"\u006e\u006c\u0065\u0073\u0073\u0067\u0074\u0072"},{Key :"\u006eo\u0074l\u0065\u0073\u0073\u0065\u0071\u0075\u0069\u0076\u006c\u006e\u0074",Value :"\u006e\u006c\u0065\u0073\u0073\u0073\u0069\u006d"},{Key :"\u006eb\u0073\u0070\u0061\u0063\u0065",Value :"\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00399",Value :"\u006eo\u006e\u0065\u006e\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00305",Value :"\u006e\u006f\u006e\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00346",Value :"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006e",Value :"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006eo\u006f\u006e\u0066\u0069\u006e\u0061l",Value :"\u006eo\u006fn\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"n\u006f\u006f\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",Value :"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"n\u006f\u006f\u006e\u006aee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u006e\u006fo\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"n\u006f\u006f\u006e\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"n\u006fo\u006e\u0077\u0069\u0074\u0068\u006d\u0065\u0065m\u0069\u0073\u006f\u006cat\u0065\u0064",Value :"\u006e\u006f\u006f\u006eme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063"},{Key :"\u006e\u0063\u006fn\u0067",Value :"\u006e\u006f\u0074\u0061\u0070\u0070\u0072\u006f\u0078e\u0071\u0075\u0061\u006c"},{Key :"\u006el\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068"},{Key :"\u006e\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074"},{Key :"n\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006e\u006f\u0074\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006e\u006d\u0069\u0064",Value :"\u006e\u006f\u0074\u0062\u0061\u0072"},{Key :"\u006e\u006f\u0074\u0064\u0069\u0076\u0069\u0064\u0065\u0073",Value :"\u006e\u006f\u0074\u0062\u0061\u0072"},{Key :"\u006e\u006e\u0069",Value :"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073"},{Key :"\u006e\u006f\u0074\u006f\u0077\u006e\u0065\u0072",Value :"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073"},{Key :"n\u006f\u0074\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074",Value :"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073"},{Key :"\u0061\u0072\u0072\u006fwd\u0062\u006c\u006c\u006f\u006e\u0067\u0062\u006f\u0074\u0068\u006e\u006f\u0074",Value :"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068"},{Key :"\u006eL\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",Value :"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068"},{Key :"\u006e\u006f\u0074e\u006c\u0065\u006d\u0065\u006e\u0074\u006f\u0066",Value :"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074"},{Key :"\u006e\u006f\u0074i\u006e",Value :"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074"},{Key :"\u006e\u0065",Value :"\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006ee\u0078\u0069\u0073\u0074\u0073",Value :"\u006e\u006f\u0074\u0065\u0078\u0069\u0073\u0074\u0065n\u0074\u0069\u0061\u006c"},{Key :"\u006e\u0056\u0064\u0061\u0073\u0068",Value :"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s"},{Key :"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065",Value :"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s"},{Key :"\u006e\u0056\u0044\u0061\u0073\u0068",Value :"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061"},{Key :"\u006e\u006f\u0074f\u006f\u0072\u0063\u0065\u0065\u0078\u0074\u0072",Value :"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061"},{Key :"\u006e\u0067\u0074\u0072",Value :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072"},{Key :"\u006e\u0067\u0065\u0071",Value :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006ft\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c\u0031",Value :"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u0067\u0074\u0072\u006c\u0065\u0073\u0073",Value :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073"},{Key :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065r\u006c\u0065\u0073\u0073",Value :"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073"},{Key :"\u0067\u0065\u0071\u0073\u006c\u0061\u006e\u0074",Value :"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c"},{Key :"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074",Value :"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c"},{Key :"\u006e\u0065\u0071\u0075\u0069\u0076",Value :"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c"},{Key :"\u006e\u006f\u0074\u0065\u0071\u0075\u0069\u0076\u0061l\u0065\u006e\u0063\u0065",Value :"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c"},{Key :"\u006e\u006c\u0065s\u0073",Value :"\u006eo\u0074\u006c\u0065\u0073\u0073"},{Key :"\u006e\u006c\u0065\u0071",Value :"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006f\u0074l\u0065\u0073\u0073\u0065\u0071\u0075\u0061\u006c",Value :"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006f\u0074\u006c\u0065\u0073\u0073\u0065\u0071\u0075\u0061\u006c\u0031",Value :"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006eo\u0074\u0062\u0061\u0072\u0064\u0062l",Value :"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"\u006ep\u0061\u0072\u0061\u006c\u006c\u0065l",Value :"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0065\u0064\u0073",Value :"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u006e\u0070\u0072e\u0063",Value :"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u006e\u006f\u0074\u0073\u0061\u0074\u0069\u0073\u0066\u0079",Value :"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073"},{Key :"\u006e\u0076\u0044\u0061\u0073\u0068",Value :"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073"},{Key :"\u006e\u0073\u0069\u006d",Value :"\u006e\u006f\u0074\u0073\u0069\u006d\u0069\u006c\u0061\u0072"},{Key :"\u006eo\u0074p\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074",Value :"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t"},{Key :"\u006es\u0075\u0062\u0073\u0065\u0074",Value :"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t"},{Key :"\u006eo\u0074r\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074",Value :"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c"},{Key :"\u006es\u0075\u0062\u0073\u0065\u0074\u0065q",Value :"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c"},{Key :"\u006e\u006f\u0074\u0066\u006f\u006c\u006c\u006f\u0077\u0073",Value :"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u006e\u0073\u0075c\u0063",Value :"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u006e\u006f\u0074\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",Value :"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074"},{Key :"\u006es\u0075\u0070\u0073\u0065\u0074",Value :"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074"},{Key :"\u006e\u006f\u0074\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",Value :"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c"},{Key :"\u006es\u0075\u0070\u0073\u0065\u0074\u0065q",Value :"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c"},{Key :"n\u006ft\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065l\u0065\u0066\u0074\u0065qu\u0061\u006c",Value :"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074"},{Key :"\u006et\u0072i\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074\u0065\u0071",Value :"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074"},{Key :"n\u006f\u0074\u0074\u0072ia\u006eg\u006c\u0065\u0072\u0069\u0067h\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074"},{Key :"\u006e\u0074r\u0069\u0061\u006eg\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0065\u0071",Value :"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074"},{Key :"\u006e\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",Value :"\u006eo\u0074t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"\u006e\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065r\u0069\u0067\u0068\u0074",Value :"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006e\u006ft\u0074\u0075\u0072n\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074",Value :"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065"},{Key :"\u006e\u0076\u0064\u0061\u0073\u0068",Value :"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065"},{Key :"\u0070\u0072e\u0063\u0065\u0065d\u0073\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u006e\u0070\u0072e\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071"},{Key :"\u006e\u006f\u0074\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c",Value :"\u006e\u0073\u0069m\u0065"},{Key :"\u006e\u006ft\u0073\u0075\u0062s\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c",Value :"n\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071"},{Key :"\u006eo\u0074s\u0075\u0070\u0065\u0072\u0073e\u0074\u0073q\u0065\u0071\u0075\u0061\u006c",Value :"n\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071"},{Key :"\u0066o\u006cl\u006f\u0077\u0073\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u006e\u0073\u0075c\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071"},{Key :"\u0064\u0062\u0061\u0072",Value :"\u006e\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0075\u0070\u006e\u0075",Value :"\u006e\u0075"},{Key :"\u006f\u0063\u0074\u006f\u0074\u0068\u006f\u0072\u0070\u0065",Value :"\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e"},{Key :"\u0061f\u0069\u0069\u0036\u0031\u0033\u00352",Value :"\u006e\u0075\u006d\u0065\u0072\u006f"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00380",Value :"\u006e\u0075\u006e"},{Key :"\u006eu\u006e\u0068\u0065\u0062\u0072\u0065w",Value :"\u006e\u0075\u006e"},{Key :"\u006eu\u006ed\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u006e\u0075\u006e\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00325",Value :"\u006f\u0061\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065x\u006e\u006f\u0073\u0070",Value :"\u006fb\u0061\u0072\u0072\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00380",Value :"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u006f\u0063\u0079\u0072\u0069\u006c",Value :"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c"},{Key :"\u0072r\u0074\u0068\u006f\u006f\u006b",Value :"\u006fd\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0077\u0061\u0076\u0065\u006c\u0065\u0066\u0074",Value :"\u006f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0070i\u0070\u0065\u0064\u0062\u006c",Value :"\u006f\u0068\u006fr\u006e"},{Key :"\u006fd\u0062\u006c\u0061\u0063\u0075\u0074e",Value :"\u006f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074"},{Key :"\u0065x\u0063\u006c\u0061\u006d\u0031",Value :"\u006f\u0069"},{Key :"v\u006f\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069\u0069\u006e\u0074"},{Key :"\u0076\u006f\u006c\u0075\u006d\u0065\u0069\u006e\u0074e\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069\u0069\u006e\u0074"},{Key :"\u0073u\u0072f\u0061\u0063\u0065\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069n\u0074"},{Key :"\u0073\u0075\u0072f\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069\u0069n\u0074"},{Key :"\u0063\u0063l\u0077\u0063\u006fn\u0074\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u006f\u0069n\u0074\u0063\u0074r\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0072\u0066\u0069s\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076",Value :"\u006f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0032",Value :"\u006fl\u0065\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0075p\u006f\u006d\u0065\u0067\u0061",Value :"\u006f\u006d\u0065g\u0061"},{Key :"\u0075p\u0076\u0061\u0072\u0070\u0069",Value :"\u006f\u006d\u0065\u0067\u0061\u0031"},{Key :"\u0070\u0069\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",Value :"\u006f\u006d\u0065\u0067\u0061\u0031"},{Key :"\u004ba\u0072\u0074\u0064\u0065\u0073",Value :"\u006f\u006d\u0065\u0067\u0061\u0031"},{Key :"\u006d\u0061\u0063\u0072\u006f\u006e\u006e\u006f\u0073\u0070",Value :"\u006f\u006de\u0067\u0061\u006ca\u0074\u0069\u006e\u0063\u006c\u006f\u0073\u0065\u0064"},{Key :"\u0047\u0065\u0062a\u0072",Value :"\u006f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073"},{Key :"\u0075p\u006f\u006d\u0069\u0063\u0072\u006fn",Value :"\u006fm\u0069\u0063\u0072\u006f\u006e"},{Key :"\u006f\u006e\u0065\u0064\u006f\u0074\u006c\u0065\u0061\u0064",Value :"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072"},{Key :"\u006f\u006e\u0065d\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072",Value :"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00393",Value :"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0061\u0062ic\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u006f\u006e\u0065",Value :"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006fn\u0065\u0061\u0072\u0061\u0062\u0069c",Value :"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u006f\u006e\u0065\u0073\u0075\u0062",Value :"o\u006e\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"e\u0078\u0074\u0065\u006e\u0064\u0065d\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064i\u0063\u0064\u0069g\u0069t\u006f\u006e\u0065",Value :"\u006f\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00361",Value :"\u006fn\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0065p\u0073i\u006c\u006f\u006e\u0031\u0072\u0065\u0076\u0068\u006f\u006f\u006b",Value :"\u006f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e"},{Key :"\u0067\u0072\u0061\u0076\u0065\u0031",Value :"\u006f\u006f\u0070e\u006e"},{Key :"\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c",Value :"\u006f\u0072\u0069\u0067\u006f\u0066"},{Key :"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065",Value :"\u006f\u0072\u0074\u0068\u006f\u0067\u006f\u006e\u0061\u006c"},{Key :"\u0076\u0065\u0065\u0062\u0061\u0072",Value :"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065"},{Key :"\u0078\u006f\u0072",Value :"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065"},{Key :"\u006d\u0074\u0075r\u006e",Value :"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u006f\u0073\u0074r\u006f\u006b\u0065\u0061\u0063\u0075\u0074\u0065",Value :"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065"},{Key :"\u006fv\u0065\u0072\u0062\u0061\u0072",Value :"o\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0063\u006d\u0062"},{Key :"n\u0048\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",Value :"\u0070\u0061\u0067\u0065\u0064\u006f\u0077\u006e"},{Key :"\u006eH\u0075\u0070\u0061\u0072\u0072\u006fw",Value :"\u0070\u0061\u0067\u0065\u0075\u0070"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00327",Value :"\u0070\u0061\u0069\u0079\u0061\u006e\u006e\u006f\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0062a\u0072\u0064\u0062\u006c\u0032",Value :"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"\u0076\u0065\u0078\u0074\u0065\u006e\u0064\u0064\u006f\u0075\u0062\u006c\u0065",Value :"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c"},{Key :"\u0066\u0069\u006c\u006ced\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c\u006f\u0067\u0072\u0061\u006d",Value :"\u0070a\u0072a\u006c\u006c\u0065\u006c\u006fg\u0072\u0061m\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0070\u0061\u0072e\u006e\u006c\u0065\u0066\u0074\u0042\u0069\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0042\u0069\u0067\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"\u0070\u0061\u0072e\u006e\u006c\u0065\u0066\u0074\u0062\u0069\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0062\u0069\u0067\u0067",Value :"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t"},{Key :"o\u0072\u006e\u0061\u0074el\u0065f\u0074\u0070\u0061\u0072\u0065n\u0074\u0068\u0065\u0073\u0069\u0073",Value :"p\u0061\u0072\u0065\u006ele\u0066t\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0061\u0072e\u006e\u006c\u0065\u0066\u0074\u0073\u0075\u0062",Value :"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0069\u006e\u0066e\u0072\u0069\u006f\u0072"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074\u0042\u0069\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068t\u0042\u0069\u0067\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0069\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068t\u0062\u0069\u0067\u0067",Value :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006f\u0072\u006e\u0061te\u0072\u0069\u0067\u0068\u0074\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073i\u0073",Value :"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063"},{Key :"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074\u0073\u0075\u0062",Value :"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0069\u006ef\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0068\u0065\u006c\u0070",Value :"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0074\u0070"},{Key :"\u0070a\u0072\u0074\u0069\u0061\u006c",Value :"p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066"},{Key :"\u006e\u0075\u006c\u006c",Value :"\u0070\u0061\u0073h\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0070a\u0074a\u0068\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00398",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070a\u0074\u0061\u0068\u0032\u0061",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070a\u0074a\u0068\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"p\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070a\u0074\u0061\u0068\u0031\u0064",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070\u0061\u0074a\u0068",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0072e\u0063o\u0072\u0064\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0070\u0061\u0074\u0061\u0068\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0070a\u0074\u0061\u0068\u0031\u0031"},{Key :"\u0062a\u0063\u006b\u0073\u0070\u0061\u0063e",Value :"p\u0061\u007a\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00381",Value :"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0070e\u0063\u0079\u0072\u0069\u006c",Value :"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0070\u0065\u0077i\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0077\u0069\u0074\u0068\u0064a\u0067\u0065\u0073\u0068",Value :"\u0070\u0065\u0066\u0069na\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00306",Value :"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0070\u0065\u0068",Value :"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0070\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0070e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0070e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0065\u0077\u0069\u0074\u0068\u0072\u0061\u0066\u0065",Value :"\u0070\u0065\u0072a\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00381",Value :"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0061\u0062\u0069\u0063\u0070\u0065\u0072\u0063\u0065\u006et\u0073\u0069\u0067\u006e",Value :"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0063\u0064\u006ft\u0070",Value :"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064"},{Key :"\u006d\u0069\u0064\u0064\u006f\u0074",Value :"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064"},{Key :"\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065",Value :"\u0070\u0065\u0072\u0070\u0063\u006f\u0072\u0072\u0065s\u0070\u006f\u006e\u0064"},{Key :"\u0062\u006f\u0074",Value :"\u0070\u0065\u0072\u0070\u0065\u006e\u0064\u0069\u0063\u0075\u006c\u0061\u0072"},{Key :"\u0050\u0074\u0073",Value :"\u0070\u0065\u0073\u0065\u0074\u0061"},{Key :"\u0070e\u0073\u0065\u0074\u0061\u0073",Value :"\u0070\u0065\u0073\u0065\u0074\u0061"},{Key :"\u006cc\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u0070\u0065\u0073o\u0031"},{Key :"\u0070\u0065\u0073\u006f\u0070\u0068",Value :"\u0070\u0065\u0073o\u0031"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0070\u0068\u0069",Value :"\u0070\u0068\u0069"},{Key :"\u0070\u0068\u0069\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b",Value :"\u0070\u0068\u0069\u0031"},{Key :"\u0075\u0070\u0070h\u0069",Value :"\u0070\u0068\u0069\u0031"},{Key :"\u007ae\u0063\u0065\u0064\u0069\u006c\u006ca",Value :"\u0070\u0068\u0069\u0031"},{Key :"\u006f\u0076\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u006e\u006f\u0073\u0070",Value :"\u0070\u0068\u0069\u006c\u0061\u0074\u0069\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00338",Value :"p\u0068\u0069\u006e\u0074\u0068\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0044z\u0068\u0061\u0063\u0065\u006b",Value :"\u0070\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00310",Value :"p\u0068\u006f\u0070\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00308",Value :"\u0070\u0068\u006fp\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00312",Value :"\u0070\u0068\u006f\u0073\u0061\u006d\u0070\u0068\u0061o\u0074\u0068\u0061\u0069"},{Key :"\u0075\u0070\u0070\u0069",Value :"\u0070\u0069"},{Key :"\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u006e\u006f\u0074",Value :"\u0070\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065r\u0032\u0070\u0069\u0031",Value :"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069"},{Key :"\u0068\u0073\u006c\u0061\u0073\u0068",Value :"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069"},{Key :"\u0070\u0069\u0031",Value :"\u0070\u006c\u0075s\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062"},{Key :"\u0070l\u0075\u0073\u0073\u0075\u0062",Value :"\u0070\u006c\u0075s\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0070\u006d",Value :"\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00307",Value :"\u0070o\u0070\u006c\u0061\u0074\u0068\u0061i"},{Key :"p\u0072\u0065\u0063\u006e\u0061\u0070\u0070\u0072\u006f\u0078",Value :"\u0070\u0072e\u0063\u0065\u0064e\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076"},{Key :"\u0070\u0072\u0065\u0063\u006e\u0065\u0071\u0071",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u006e\u006f\u0074\u0073\u006cn\u0074\u0065\u0071\u006c"},{Key :"\u0070r\u0065c\u0065\u0065\u0064\u0073\u006eo\u0074\u0073i\u006d\u0069\u006c\u0061\u0072",Value :"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074"},{Key :"\u0070\u0072\u0065\u0063\u006e\u0073\u0069\u006d",Value :"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074"},{Key :"\u0070\u0072\u0065\u0063",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073"},{Key :"\u006e\u006ft\u0070\u0072\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u006c",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070\u0072\u0065\u0063\u0065\u0071",Value :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c"},{Key :"p\u0072\u0065\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079"},{Key :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065q\u0075\u0061\u006c\u0031",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079"},{Key :"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0071\u0075i\u0076\u006c\u006e\u0074",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070r\u0065\u0063\u0073\u0069\u006d",Value :"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0052\u0078",Value :"\u0070\u0072\u0065s\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e"},{Key :"\u0062a\u0063\u006b\u0070\u0072\u0069\u006de",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u006di\u006e\u0075\u0074\u0065\u0072\u0065v",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070r\u0069\u006d\u0065\u0072\u0065\u00761",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070\u0072\u0069m\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065",Value :"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0070\u0072\u006f\u0064",Value :"\u0070r\u006f\u0064\u0075\u0063\u0074"},{Key :"\u0070\u0072\u006f\u0064\u0075\u0063\u0074\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0070r\u006f\u0064\u0075\u0063\u0074"},{Key :"p\u0072\u006f\u0064\u0075\u0063\u0074\u0074\u0065\u0078\u0074",Value :"\u0070r\u006f\u0064\u0075\u0063\u0074"},{Key :"v\u0061\u0072\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065",Value :"\u0070\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u0076\u0065"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074",Value :"\u0070\u0072\u006fp\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074",Value :"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0070\u0073\u0065\u0074",Value :"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0043\u006f\u006co\u006e",Value :"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006f\u006e"},{Key :"\u0070\u0072\u006f\u0070\u0074\u006f",Value :"\u0070\u0072\u006fp\u006f\u0072\u0074\u0069\u006f\u006e\u0061\u006c"},{Key :"\u006co\u0077\u0065\u0072\u0072\u0061\u006ek",Value :"\u0070\u0072\u0075\u0072\u0065\u006c"},{Key :"\u0075\u0070\u0070s\u0069",Value :"\u0070\u0073\u0069"},{Key :"\u0073h\u0069\u0066\u0074\u0069\u006e",Value :"q\u0061\u0064\u006d\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c",Value :"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0071\u0061\u0066\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0071\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0071a\u0066\u006d\u0065\u0064\u0069\u0061l",Value :"\u0071a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"a\u0063\u006b\u006e\u006f\u0077\u006c\u0065\u0064\u0067\u0065",Value :"\u0071\u0061r\u006e\u0065\u0079p\u0061\u0072\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0073\u0075b\u006e\u006f\u0073\u0070",Value :"\u0071\u0068\u006fo\u006b"},{Key :"\u0071o\u0066d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0071\u006f\u0066\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00387",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0061\u0074\u0061\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068at\u0061\u0066\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0061\u0074\u0061\u0066\u0073\u0065\u0067\u006f\u006c",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068at\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066\u0068\u0065\u0062\u0072\u0065w",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0069\u0072\u0069\u0071",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u0069\u0072\u0069\u0071\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u006f\u006c\u0061\u006d",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0068\u006f\u006c\u0061\u006d\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0070\u0061\u0074\u0061\u0068",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066\u0071\u0061\u006d\u0061\u0074s",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066q\u0061\u006d\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071o\u0066\u0071\u0075\u0062\u0075\u0074s",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0065\u0067\u006f\u006c",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0065\u0067\u006f\u006c\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0068\u0065\u0076\u0061",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0073\u0068\u0065\u0076\u0061\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0074\u0073\u0065\u0072\u0065",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u006f\u0066\u0074\u0073\u0065\u0072\u0065\u0068e\u0062\u0072\u0065\u0077",Value :"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00396",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0062\u006c\u0061\u006e\u006b\u0062",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0069\u0062\u0075\u0074\u0073",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073\u0031\u0038",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073\u0032\u0035",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075\u0074\u0073\u0033\u0031",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062u\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071u\u0062u\u0074\u0073\u006e\u0061\u0072r\u006f\u0077h\u0065\u0062\u0072\u0065\u0077",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0062\u0075ts\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0065\u0071\u0075\u0061\u006c",Value :"\u0071u\u0065\u0073\u0074\u0065\u0071"},{Key :"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u006c\u0065\u0066\u0074",Value :"\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t"},{Key :"\u0071\u0075\u006f\u0074\u0065\u006c\u0065\u0066\u0074\u0072\u0065\u0076e\u0072\u0073\u0065\u0064",Value :"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0072\u0065\u0076",Value :"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064"},{Key :"\u0071u\u006ft\u0065\u0073\u0069\u006e\u0067\u006c\u0072\u0069\u0067\u0068\u0074",Value :"\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"n\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065",Value :"q\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u006e"},{Key :"\u0072\u0061\u0064\u0069\u0063\u0061\u006c\u0042\u0069\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"r\u0061\u0064\u0069\u0063\u0061\u006c\u0042\u0069\u0067\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072\u0061\u0064\u0069\u0063\u0061\u006c\u0062\u0069\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"r\u0061\u0064\u0069\u0063\u0061\u006c\u0062\u0069\u0067\u0067",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072a\u0064\u0069\u0063\u0061\u006c\u0062t",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072a\u0064\u0069\u0063\u0061\u006c\u0074p",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0072\u0061\u0064\u0069\u0063\u0061\u006c\u0076\u0065\u0072\u0074\u0065\u0078",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0073\u0071\u0072\u0074",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u0072\u006f\u006f\u0074",Value :"\u0072a\u0064\u0069\u0063\u0061\u006c"},{Key :"\u006da\u0074\u0068\u0072\u0061\u0074\u0069o",Value :"\u0072\u0061\u0074i\u006f"},{Key :"\u0072\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0072\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u0052\u0073\u006da\u006c\u006c\u0063\u0061\u0070\u0069\u006e\u0076",Value :"\u0072d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0073\u006f\u0075\u006e\u0064\u0063\u006f\u0070\u0079r\u0069\u0067\u0068\u0074",Value :"r\u0065\u0063\u006f\u0072\u0064\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072e\u0066\u006d\u0061\u0072\u006b",Value :"\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u006d\u0061\u0072\u006b"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071",Value :"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074"},{Key :"\u0073u\u0070e\u0072\u0073\u0065\u0074\u006f\u0072\u0065\u0071\u0075\u0061\u006c",Value :"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071",Value :"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074"},{Key :"\u0063i\u0072\u0063\u006c\u0065\u0052",Value :"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00325",Value :"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0072\u0065\u0068",Value :"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0072\u0065\u0068\u0079eh\u0061\u006c\u0065\u0066\u006c\u0061\u006d\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006e\u006f\u0072\u0074h\u0065\u0061\u0073\u0074",Value :"r\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0072\u0065\u0073\u0068\u0077\u0069\u0074\u0068\u0064a\u0067\u0065\u0073\u0068",Value :"\u0072\u0065s\u0068\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00388",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0068\u0061\u0074\u0061\u0066p\u0061\u0074\u0061\u0068",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"r\u0065s\u0068\u0068\u0061\u0074\u0061\u0066\u0070\u0061t\u0061\u0068\u0068\u0065br\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0068\u0061\u0074\u0061\u0066s\u0065\u0067\u006f\u006c",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"r\u0065s\u0068\u0068\u0061\u0074\u0061\u0066\u0073\u0065g\u006f\u006c\u0068\u0065br\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0068\u0069\u0072\u0069\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0068\u006f\u006c\u0061m",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0068\u006f\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0070\u0061\u0074\u0061h",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0071\u0061\u006d\u0061\u0074\u0073",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065s\u0068\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065\u0073\u0068\u0071\u0075\u0062\u0075\u0074\u0073",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072\u0065s\u0068\u0071\u0075b\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0073\u0065\u0067\u006fl",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0073\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0073\u0068\u0065\u0076a",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0073\u0068\u0065\u0076\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073\u0068\u0074\u0073\u0065\u0072e",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0072e\u0073h\u0074\u0073\u0065\u0072\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q"},{Key :"\u0062a\u0063\u006b\u0073\u0069\u006d\u0065q",Value :"\u0072\u0065\u0076\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0062a\u0063\u006b\u0073\u0069\u006d",Value :"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0072\u0065\u0076\u0073\u0069\u006d\u0069\u006c\u0061\u0072",Value :"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0074\u0069\u006c\u0064\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",Value :"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0061\u0072r\u006f\u0077\u006co\u006e\u0067\u0062\u006f\u0074\u0068\u006e\u006f\u0074",Value :"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"r\u0065\u0076\u0069\u0061\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0069\u006e\u0076\u006e\u006f\u0074",Value :"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074"},{Key :"\u006co\u0067i\u0063\u0061\u006c\u006e\u006ft\u0072\u0065v\u0065\u0072\u0073\u0065\u0064",Value :"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074"},{Key :"\u0061\u0063\u0075t\u0065\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u0072f\u0069\u0073\u0068\u0068\u006f\u006fk"},{Key :"\u0068a\u0063\u0065\u006b\u006e\u006f\u0073p",Value :"\u0072\u0066\u0069\u0073\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076e\u0072\u0073\u0065\u0064"},{Key :"\u0075\u0070\u0072h\u006f",Value :"\u0072\u0068\u006f"},{Key :"\u0072\u0069\u006e\u0067\u006e\u006f\u0073\u0070",Value :"\u0072\u0068\u006fo\u006b"},{Key :"\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u006e\u006f\u0073\u0070",Value :"r\u0068\u006f\u006f\u006b\u0074\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0074\u0065\u0074s\u0065",Value :"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0072\u0068\u006f",Value :"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b"},{Key :"\u0075\u0072\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0065"},{Key :"\u0075\u006c\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0077"},{Key :"\u006c\u0072\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0065"},{Key :"\u006c\u006c\u0063\u006f\u0072\u006e\u0065\u0072",Value :"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0077"},{Key :"\u0062\u0065\u0074a\u0031",Value :"\u0072\u0069\u0067\u0068\u0074\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0076\u0061\u0072\u006c\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u006f\u0063\u0069r\u0063",Value :"\u0072i\u006e\u0067\u0063\u006d\u0062"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0074\u006f\u006e\u006f\u0073",Value :"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0062\u0065\u006c\u006fwc\u006d\u0062"},{Key :"\u006eu\u006de\u0072\u0061\u006c\u0067\u0072\u0065\u0065\u006b\u0073\u0075\u0062",Value :"\u0072\u0069\u006e\u0067\u0068\u0061\u006c\u0066\u0072\u0069\u0067\u0068\u0074"},{Key :"\u006b\u0061\u0070\u0070\u0061\u0031",Value :"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0062e\u006c\u006f\u0077\u0063\u006d\u0062"},{Key :"\u0065\u0071\u0063\u0069\u0072\u0063",Value :"r\u0069\u006e\u0067\u0069\u006e\u0065\u0071\u0075\u0061\u006c"},{Key :"h\u006f\u006f\u006b\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067"},{Key :"\u0064o\u0074\u006e\u006f\u0073\u0070",Value :"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00315",Value :"\u0072o\u0072\u0075\u0061\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00313",Value :"\u0072\u0072\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0062\u006c\u006f\u0063\u006b\u0072\u0069\u0067\u0068t\u0068\u0061\u006c\u0066",Value :"\u0072t\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0062r\u0065\u0076\u0065\u006e\u006f\u0073p",Value :"\u0072t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061\u0063\u0075\u0074\u0065\u0072\u0069\u0067\u0068t\u006e\u006f\u0073\u0070",Value :"\u0072t\u0075r\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0072\u0074\u0075\u0072\u006e\u0068\u006f\u006f\u006bs\u0075\u0070\u0065\u0072",Value :"\u0072\u0074u\u0072\u006e\u0072t\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072"},{Key :"\u0072\u0075\u0070\u0065\u0065\u0073",Value :"\u0072\u0075\u0070e\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00316",Value :"\u0072\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c",Value :"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0061\u0064\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0073\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073a\u0064\u006d\u0065\u0064\u0069\u0061l",Value :"\u0073a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00381",Value :"\u0073\u0061\u006d\u0065\u006b\u0068"},{Key :"\u0073\u0061\u006de\u006b\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0061\u006d\u0065\u006b\u0068"},{Key :"\u0073\u0061\u006de\u006b\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0061m\u0065\u006b\u0068w\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00330",Value :"\u0073\u0061\u0072\u0061\u0061\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00345",Value :"\u0073\u0061\u0072\u0061\u0061\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00348",Value :"\u0073a\u0072a\u0061\u0069\u006d\u0061\u0069m\u0061\u006ca\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00347",Value :"\u0073\u0061\u0072\u0061\u0061\u0069\u006d\u0061\u0069\u006d\u0075\u0061n\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00331",Value :"\u0073\u0061\u0072\u0061\u0061\u006d\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00329",Value :"\u0073a\u0072\u0061\u0061\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00344",Value :"\u0073a\u0072\u0061\u0065\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00333",Value :"\u0073\u0061\u0072\u0061\u0069\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00332",Value :"\u0073a\u0072\u0061\u0069\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00346",Value :"\u0073a\u0072\u0061\u006f\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00335",Value :"s\u0061\u0072\u0061\u0075\u0065\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00334",Value :"\u0073\u0061\u0072\u0061\u0075\u0065\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00336",Value :"\u0073a\u0072\u0061\u0075\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00337",Value :"\u0073\u0061\u0072\u0061\u0075\u0075\u0074\u0068\u0061\u0069"},{Key :"\u0073a\u0074\u0069\u0073\u0066\u0079",Value :"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s"},{Key :"\u0076\u0044\u0061s\u0068",Value :"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s"},{Key :"\u006c\u0065\u006e\u0067\u0074\u0068",Value :"\u0073\u0063\u0068w\u0061"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0038\u00346",Value :"\u0073\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0068\u0061\u006c\u0066\u006c\u0065\u006e\u0067\u0074\u0068",Value :"\u0073c\u0068\u0077\u0061\u0068\u006f\u006fk"},{Key :"\u0068\u0069\u0067\u0068\u0065\u0072\u0072\u0061\u006e\u006b",Value :"\u0073\u0063\u0075\u0072\u0065\u006c"},{Key :"\u0064\u0070\u0072\u0069\u006d\u0065",Value :"\u0073\u0065\u0063\u006f\u006e\u0064"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0064\u0062\u006c",Value :"\u0073\u0065\u0063\u006f\u006e\u0064"},{Key :"\u0070r\u0069\u006d\u0065\u0064\u0062\u006c1",Value :"\u0073\u0065\u0063\u006f\u006e\u0064"},{Key :"\u0073e\u0065\u006e\u0066\u0069\u006e\u0061l",Value :"\u0073e\u0065n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"s\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0073\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0073\u0065e\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00395",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0067\u0072\u006f\u0075\u0070\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0065\u0067o\u006c",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067\u006f\u006c\u0031\u0066",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067\u006f\u006c\u0032\u0063",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067\u006f\u006c\u0031\u0033",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0065\u0067\u006f\u006c\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067o\u006c\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073e\u0067o\u006c\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006e\u0067\u0062\u006f\u0074\u0068",Value :"s\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0073\u0065\u0076\u0065\u006e\u0073\u0075\u0062",Value :"\u0073\u0065\u0076\u0065\u006e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0073ev\u0065\u006e",Value :"\u0073\u0065\u0076e\u006e\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00367",Value :"\u0073e\u0076\u0065\u006e\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00357",Value :"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061",Value :"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"s\u0068a\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063",Value :"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061dd\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",Value :"s\u0068a\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063"},{Key :"\u0073\u0068\u0061dd\u0061\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061d\u0064\u0061\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0073\u0068a\u0064\u0064\u0061h\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c"},{Key :"\u0073\u0068\u0061dd\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",Value :"s\u0068a\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063"},{Key :"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0064\u0061m\u006d\u0061\u006c\u006f\u0077",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077"},{Key :"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0064\u0061\u006d\u006da\u0074\u0061\u006e\u006c\u006f\u0077",Value :"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077"},{Key :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066a\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077",Value :"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0066\u0061t\u0068\u0061\u006c\u006f\u0077"},{Key :"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077",Value :"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u0074\u0061\u006e\u006c\u006f\u0077"},{Key :"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u006b\u0061s\u0072\u0061\u006c\u006f\u0077",Value :"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077"},{Key :"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u006b\u0061\u0073\u0072a\u0074\u0061\u006e\u006c\u006f\u0077",Value :"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077"},{Key :"\u0062l\u006fc\u006b\u0068\u0061\u006c\u0066\u0073\u0068\u0061\u0064\u0065\u0064",Value :"\u0073\u0068\u0061d\u0065"},{Key :"s\u0068\u0061\u0064\u0065\u006d\u0065\u0064\u0069\u0075\u006d",Value :"\u0073\u0068\u0061d\u0065"},{Key :"\u0062\u006c\u006f\u0063\u006b\u0071\u0074\u0072\u0073h\u0061\u0064\u0065\u0064",Value :"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074"},{Key :"\u006ct\u0073\u0068\u0061\u0064\u0065",Value :"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074"},{Key :"\u0073\u0068\u0065\u0065\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0073\u0068e\u0065\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0068\u0065e\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0073h\u0065e\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"s\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0073\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0070\u0065\u0068\u006f\u006f\u006b",Value :"\u0073\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u004c\u0073\u0068",Value :"\u0073h\u0069\u0066\u0074\u006c\u0065\u0066t"},{Key :"\u0052\u0073\u0068",Value :"\u0073\u0068\u0069\u0066\u0074\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0075\u0073\u0074\u0072\u0074\u0062\u0061\u0072",Value :"s\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00389",Value :"\u0073\u0068\u0069\u006e"},{Key :"\u0073\u0068\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0068\u0069\u006e"},{Key :"\u0073\u0068i\u006e\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0073\u0068\u0069\u006e\u0077\u0069\u0074\u0068\u0064a\u0067\u0065\u0073\u0068",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0073\u0068\u0069nd\u0061\u0067\u0065\u0073\u0068\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074"},{Key :"\u0073h\u0069\u006e\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073h\u0061\u006e\u0064\u0073\u0068\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074"},{Key :"\u0073\u0068i\u006e\u0064\u0061g\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077"},{Key :"\u0073\u0068\u0069nw\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068\u0061\u006e\u0064\u0073\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00304",Value :"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073h\u0069\u006e\u0064\u006f\u0074",Value :"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00394",Value :"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074"},{Key :"\u0073\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068e\u0062\u0072\u0065\u0077",Value :"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074"},{Key :"\u0073h\u0069n\u0077\u0069\u0074\u0068\u0073\u0068\u0069\u006e\u0064\u006f\u0074",Value :"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074"},{Key :"\u0067\u0072\u0061v\u0065\u0064\u0062\u006c\u006e\u006f\u0073\u0070",Value :"\u0073\u0068\u006fo\u006b"},{Key :"\u0075p\u0073\u0069\u0067\u006d\u0061",Value :"\u0073\u0069\u0067m\u0061"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",Value :"\u0073\u0069\u0067\u006d\u0061\u0031"},{Key :"\u0073\u0069\u0067\u006d\u0061\u0066\u0069\u006e\u0061\u006c",Value :"\u0073\u0069\u0067\u006d\u0061\u0031"},{Key :"\u0043\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"\u0073\u0069\u0067\u006dal\u0075\u006e\u0061\u0074\u0065\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065e\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0038\u00339",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006d\u0065\u0074e\u0067",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u006ee\u0077\u006c\u0069\u006e\u0065",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"s\u0069\u006c\u0075\u0071\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0073\u0069\u006d",Value :"\u0073i\u006d\u0069\u006c\u0061\u0072"},{Key :"\u0074i\u006c\u0064\u0065\u006d\u0061\u0074h",Value :"\u0073i\u006d\u0069\u006c\u0061\u0072"},{Key :"\u0074\u0069\u006c\u0064\u0065\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072",Value :"\u0073i\u006d\u0069\u006c\u0061\u0072"},{Key :"\u0061\u0070\u0070\u0072\u006f\u0078\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",Value :"\u0073i\u006d\u006e\u0065\u0071\u0071"},{Key :"\u0073\u0069\u006e\u0065",Value :"\u0073\u0069\u006e\u0065\u0077\u0061\u0076\u0065"},{Key :"\u0073\u0069\u0078\u0073\u0075\u0062",Value :"s\u0069\u0078\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"e\u0078\u0074\u0065\u006e\u0064\u0065d\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064i\u0063\u0064\u0069g\u0069t\u0073\u0069\u0078",Value :"\u0073\u0069\u0078\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00366",Value :"\u0073i\u0078\u0074\u0068\u0061\u0069"},{Key :"\u006da\u0074\u0068\u0073\u006c\u0061\u0073h",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073\u006c\u0061\u0073\u0068\u0042\u0069\u0067",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073l\u0061\u0073\u0068\u0042\u0069\u0067g",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073\u006c\u0061\u0073\u0068\u0062\u0069\u0067",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0073l\u0061\u0073\u0068\u0062\u0069\u0067g",Value :"\u0073\u006c\u0061s\u0068"},{Key :"\u0066\u0072\u006fw\u006e",Value :"\u0073l\u0075\u0072\u0061\u0062\u006f\u0076e"},{Key :"s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067l\u0065\u006c\u0065\u0066ts\u006c\u0064",Value :"\u0073\u006d\u0061\u006clb\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065f\u0074"},{Key :"s\u006d\u0061\u006c\u006ctr\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068\u0074\u0073\u006c\u0064",Value :"\u0073\u006d\u0061ll\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0065\u006c\u0065m\u0065\u006e\u0074\u0073\u006d\u0061\u006c\u006c",Value :"\u0073m\u0061\u006c\u006c\u0069\u006e"},{Key :"\u0073\u006d\u0061l\u006c\u0065\u006c\u0065\u006d\u0065\u006e\u0074",Value :"\u0073m\u0061\u006c\u006c\u0069\u006e"},{Key :"\u006f\u0077\u006e\u0065\u0072\u0073\u006d\u0061\u006c\u006c",Value :"\u0073m\u0061\u006c\u006c\u006e\u0069"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073",Value :"\u0073m\u0061\u006c\u006c\u006e\u0069"},{Key :"\u0073l\u0075\u0072\u0062\u0065\u006c\u006fw",Value :"\u0073\u006d\u0069l\u0065"},{Key :"\u0077\u0068i\u0074\u0065\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065",Value :"\u0073m\u0069\u006c\u0065\u0066\u0061\u0063e"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00358",Value :"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071",Value :"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0073f\u0074\u0068\u0079\u0070\u0068\u0065n",Value :"\u0073\u006f\u0066\u0074\u0068\u0079\u0070\u0068\u0065\u006e"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00394",Value :"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0073\u006f\u0066\u0074",Value :"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0064\u0065\u0069",Value :"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062"},{Key :"\u006e\u0065\u0067\u0061\u0074\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068",Value :"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062"},{Key :"\u006e\u006f\u0074",Value :"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062"},{Key :"\u0044\u0065\u0069",Value :"\u0073\u006f\u006c\u0069du\u0073\u0073\u0068\u006f\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063m\u0062"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00321",Value :"\u0073\u006f\u0072\u0075\u0073\u0069\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00320",Value :"\u0073\u006f\u0073\u0061\u006c\u0061\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00391",Value :"\u0073\u006f\u0073\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00322",Value :"\u0073o\u0073\u0075\u0061\u0074\u0068\u0061i"},{Key :"\u0073p\u0061c\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0073\u0070\u0061c\u0065"},{Key :"\u0061\u0031\u0030\u0039",Value :"\u0073\u0070\u0061d\u0065"},{Key :"\u0073p\u0061\u0064\u0065\u0073\u0075\u0069t",Value :"\u0073\u0070\u0061d\u0065"},{Key :"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074b\u006c\u0061\u0063\u006b",Value :"\u0073\u0070\u0061d\u0065"},{Key :"\u0076\u0061\u0072s\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074",Value :"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065"},{Key :"\u0073\u0071\u0069\u006d\u0061\u0067\u0065\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",Value :"s\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071"},{Key :"\u0073q\u006fr\u0069\u0067\u0069\u006e\u006fr\u006e\u006ft\u0065\u0071\u0075\u0061\u006c",Value :"s\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071"},{Key :"s\u0069\u0067\u006d\u0061\u006c\u0075\u006e\u0061\u0074\u0065",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0062\u006f\u0078\u0063\u0072\u006f\u0073\u0073\u0064\u0069\u0061\u0067h\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c"},{Key :"\u0073q\u0075a\u0072\u0065\u0063\u0072\u006f\u0073\u0073\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c"},{Key :"\u0062\u006f\u0078\u0064\u006f\u0074",Value :"\u0073q\u0075\u0061\u0072\u0065\u0064\u006ft"},{Key :"\u0062\u006f\u0078\u0068\u006f\u0072\u0069\u007a\u0068\u0061\u0074\u0063\u0068",Value :"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0068\u0066\u0069\u006c\u006c",Value :"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c"},{Key :"\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074",Value :"s\u0071\u0075\u0061\u0072\u0065\u0069\u006d\u0061\u0067\u0065"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064",Value :"\u0073q\u0075a\u0072\u0065\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0073\u0065\u0073\u006c\u0064",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0072\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0062\u006f\u0078\u006d\u0069\u006e\u0075\u0073",Value :"s\u0071\u0075\u0061\u0072\u0065\u006d\u0069\u006e\u0075\u0073"},{Key :"\u0062\u006f\u0078\u0074\u0069\u006d\u0065\u0073",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079"},{Key :"\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0069g\u0069\u006e\u0061\u006c"},{Key :"\u0062\u006f\u0078\u0063\u0072\u006f\u0073\u0073\u0068\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c"},{Key :"\u0073\u0071\u0075a\u0072\u0065\u0068\u0076\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c"},{Key :"\u0062o\u0078\u0070\u006c\u0075\u0073",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u0070\u006c\u0075\u0073"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u0072\u0069\u0067h\u0074\u0073\u006c\u0064",Value :"\u0073\u0071u\u0061\u0072\u0065r\u0069\u0067\u0068\u0074\u0062\u006c\u0061\u0063\u006b"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u006e\u0077\u0073\u006c\u0064",Value :"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u006c\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0062\u006fx\u006c\u0065\u0066t\u0064\u0069\u0061\u0067\u0068\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u006e\u0077\u0073e\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0062\u006f\u0078\u0072\u0074\u0064\u0069\u0061\u0067h\u0061\u0074\u0063\u0068",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0073\u0071\u0075\u0061\u0072\u0065\u006e\u0065\u0073w\u0066\u0069\u006c\u006c",Value :"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c"},{Key :"\u0062\u006f\u0078v\u0065\u0072\u0074\u0068\u0061\u0074\u0063\u0068",Value :"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c"},{Key :"s\u0071\u0075\u0061\u0072\u0065\u0076\u0066\u0069\u006c\u006c",Value :"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c"},{Key :"\u0062l\u0061c\u006b\u0069\u006e\u0077\u0068i\u0074\u0065s\u0071\u0075\u0061\u0072\u0065",Value :"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k"},{Key :"\u0062o\u0078\u006e\u0065\u0073\u0074\u0065d",Value :"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k"},{Key :"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077",Value :"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074"},{Key :"\u0061r\u0072o\u0077\u0073\u0071\u0075\u0069g\u0067\u006ce\u0072\u0069\u0067\u0068\u0074",Value :"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0072i\u0067h\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077",Value :"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0062\u006f\u0078\u0072\u006f\u0075\u006e\u0064\u0065\u0064",Value :"\u0073q\u0075\u006f\u0076\u0061\u006c"},{Key :"\u0073t\u0061\u0072\u0065\u0071\u0075\u0061l",Value :"\u0073\u0074\u0061\u0072\u0065\u0071"},{Key :"\u0053\u0075\u0062\u0073\u0065\u0074",Value :"\u0073u\u0062\u0073\u0065\u0074\u0064\u0062l"},{Key :"\u006e\u006f\u0074\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u0064b\u006c\u0065\u0071\u006c",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0062\u0073\u0065\u0074\u0065\u0071q",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006f\u0074\u0073\u0075\u0062\u0073\u0065\u0074o\u0072\u0065\u0071\u006c",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0062\u0073\u0065\u0074\u006e\u0065q",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0062s\u0065\u0074\u006e\u006f\u0074\u0065\u0071\u006c",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071\u0071",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064b\u006c\u0065\u0071\u006c"},{Key :"\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071",Value :"\u0073\u0075\u0062\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0066o\u006c\u006c\u006f\u0077\u0073",Value :"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u0073\u0075\u0063\u0063",Value :"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073"},{Key :"\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073",Value :"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074"},{Key :"\u006e\u0069",Value :"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074"},{Key :"\u006f\u0077\u006ee\u0072",Value :"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00358",Value :"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0075\u006bu\u006e",Value :"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0073\u0075\u006b\u0075\u006e\u006f\u006e\u0074\u0061t\u0077\u0065\u0065\u006c",Value :"s\u0075\u006b\u0075\u006e\u006d\u0065\u0064\u0069\u0061\u006c"},{Key :"\u0073\u0075\u006d",Value :"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn"},{Key :"\u0073\u0075m\u006d\u0061\u0074i\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn"},{Key :"\u0073\u0075\u006d\u006d\u0061\u0074\u0069\u006f\u006e\u0074\u0065\u0078\u0074",Value :"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn"},{Key :"\u0063o\u006d\u0070\u0061\u0073\u0073",Value :"\u0073\u0075\u006e"},{Key :"\u0053\u0075\u0070\u0073\u0065\u0074",Value :"s\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u0064\u0062\u006c"},{Key :"\u006e\u006f\u0074\u0073up\u0065\u0072\u0073\u0065\u0074\u006f\u0072\u0064\u0062\u006c\u0065\u0071\u006c",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0070\u0073\u0065\u0074\u0065\u0071q",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006e\u006ft\u0073\u0075\u0070e\u0072\u0073\u0065\u0074\u006f\u0072\u0065\u0071\u006c",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u006eo\u0074\u0065\u0071\u006c",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073u\u0070\u0073\u0065\u0074\u006e\u0065q",Value :"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071\u0071",Value :"\u0073\u0075\u0070\u0065rs\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c"},{Key :"\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071",Value :"\u0073u\u0070e\u0072\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c"},{Key :"\u006c\u0061\u0074\u0074\u0069\u0063\u0065\u0074\u006f\u0070",Value :"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e"},{Key :"\u0074\u006f\u0070",Value :"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e"},{Key :"\u0064\u0061\u0073h\u0076",Value :"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074"},{Key :"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065r\u0069\u0067\u0068\u0074",Value :"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00331",Value :"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0074\u0061\u0068",Value :"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074a\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0074a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0066\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u006f\u006e\u0074\u0061t\u0077\u0065\u0065\u006c",Value :"\u0074a\u0074\u0077\u0065\u0065\u006c\u0077\u0069\u0074\u0068\u0066\u0061t\u0068\u0061\u0074\u0061\u006e\u0061\u0062\u006f\u0076\u0065"},{Key :"\u0075\u0070\u0074a\u0075",Value :"\u0074\u0061\u0075"},{Key :"\u0074\u0061\u0076\u0064\u0061\u0067\u0065\u0073",Value :"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0074a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0074\u0061\u0076\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00390",Value :"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0074\u0061\u0076",Value :"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0074\u0063\u0061r\u006f\u006e\u0061\u006c\u0074\u006f\u006e\u0065",Value :"\u0074c\u0061\u0072\u006f\u006e\u0031"},{Key :"\u0062a\u0072m\u0069\u0064\u0073\u0068\u006f\u0072\u0074\u006e\u006f\u0073\u0070",Value :"\u0074\u0063\u0063\u0075\u0072\u006c"},{Key :"\u0074\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",Value :"\u0074\u0063\u0065\u0064\u0069\u006c\u006c\u0061"},{Key :"\u006bc\u0065\u0064\u0069\u006c\u006c\u00611",Value :"\u0074c\u0065\u0064\u0069\u006c\u006c\u00611"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00307",Value :"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068e\u0068",Value :"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0074\u0063h\u0065\u0068\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068e\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0063\u0068\u0065hm\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062i\u0063",Value :"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"t\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0074\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",Value :"\u0074\u0065\u0068\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"t\u0065h\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00317",Value :"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u0068\u006d\u0061\u0072\u0062\u0075\u0074\u0061",Value :"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068m\u0061\u0072\u0062\u0075\u0074\u0061\u0066\u0069\u006e\u0061\u006c",Value :"t\u0065\u0068\u006d\u0061rb\u0075t\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0074e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"t\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0074\u0065\u0068\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"t\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065h\u0077\u0069\u0074h\u006e\u006f\u006f\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0074e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0065\u006c",Value :"\u0074e\u006c\u0065\u0070\u0068\u006f\u006ee"},{Key :"\u0062\u0065\u006c\u006c",Value :"\u0074\u0065\u006c\u0069sh\u0061\u0067\u0065\u0064\u006f\u006c\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064\u0061\u0074\u0061\u006c\u0069\u006e\u006b\u0065s\u0063\u0061\u0070\u0065",Value :"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0030",Value :"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074\u0069\u006cd\u0065\u006d\u0069\u0064\u006e\u006f\u0073\u0070",Value :"\u0074\u0065\u0073\u0068"},{Key :"\u0074e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0074\u0065\u0074\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00372",Value :"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"\u0074\u0065\u0074",Value :"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w"},{Key :"L\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",Value :"\u0074\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0073t\u0061\u0072\u0074\u0074\u0065\u0078t",Value :"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074e\u0076i\u0072\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00324",Value :"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0061\u006c",Value :"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074h\u0061\u006c\u0066\u0069\u006e\u0061l",Value :"\u0074h\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00356",Value :"\u0074h\u0061n\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00319",Value :"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0065\u0068",Value :"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074h\u0065\u0068\u0066\u0069\u006e\u0061l",Value :"\u0074h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"t\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0074\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0074\u0068e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0075p\u0074\u0068\u0065\u0074\u0061",Value :"\u0074\u0068\u0065t\u0061"},{Key :"\u0067\u0065\u0068\u006f\u006f\u006b",Value :"\u0074\u0068\u0065\u0074\u0061\u0031"},{Key :"\u0075\u0070\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",Value :"\u0074\u0068\u0065\u0074\u0061\u0031"},{Key :"\u0074\u0068e\u0074\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",Value :"\u0074\u0068\u0065\u0074\u0061\u0031"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00397",Value :"\u0074\u0068\u006f\u006e\u0061\u006e\u0067\u006d\u006f\u006e\u0074\u0068o\u0074\u0068\u0061\u0069"},{Key :"\u0041\u0068\u0061\u0063\u0065\u006b",Value :"\u0074\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00398",Value :"\u0074\u0068\u006f\u0070\u0068\u0075\u0074\u0068\u0061o\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00303",Value :"\u0074\u0068\u006f\u0074\u0068\u0061\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00396",Value :"t\u0068\u006f\u0074\u0068\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00304",Value :"\u0074\u0068\u006ft\u0068\u006f\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00302",Value :"\u0074\u0068\u006ft\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0074h\u006f\u0075\u0073\u0061n\u0064\u0073\u0073\u0065\u0070a\u0072a\u0074o\u0072\u0070\u0065\u0072\u0073\u0069\u0061n",Value :"\u0074h\u006f\u0075\u0073\u0061\u006e\u0064\u0073\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0062",Value :"\u0074\u0068\u0072\u0065\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0074hr\u0065\u0065",Value :"\u0074\u0068\u0072e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00363",Value :"\u0074h\u0072\u0065\u0065\u0074\u0068\u0061i"},{Key :"\u0074\u0069\u0065",Value :"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t"},{Key :"\u0074\u0069\u0065\u0031",Value :"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t"},{Key :"\u0069\u006c\u0064\u0065",Value :"\u0074\u0069\u006cd\u0065"},{Key :"\u0074i\u006c\u0064\u0065\u0077\u0069\u0064e",Value :"\u0074\u0069\u006cd\u0065"},{Key :"\u0074\u0069\u006c\u0064\u0065\u0077\u0069\u0064\u0065\u0072",Value :"\u0074\u0069\u006cd\u0065"},{Key :"t\u0069\u006c\u0064\u0065\u0077\u0069\u0064\u0065\u0073\u0074",Value :"\u0074\u0069\u006cd\u0065"},{Key :"\u0077\u0069\u0064\u0065\u0075\u0074\u0069\u006c\u0064\u0065",Value :"\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062"},{Key :"\u0074i\u006c\u0064\u0065\u0063\u006f\u006db",Value :"\u0074\u0069\u006c\u0064\u0065\u0063\u006d\u0062"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0077\u0061\u0076\u0065\u0062\u006f\u0074\u0068",Value :"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074\u0069p\u0065\u0068\u0061l\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006e\u006f\u0072\u0074h\u0077\u0065\u0073\u0074",Value :"\u0074\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0065\u0074\u0075r\u006e",Value :"\u0074\u006f\u006e\u0065\u0066\u0069\u0076\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00395",Value :"t\u006f\u0070\u0061\u0074\u0061\u006b\u0074\u0068\u0061\u0069"},{Key :"\u0074\u006f\u0070\u0061\u0072\u0063",Value :"\u0074\u006f\u0070\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00301",Value :"\u0074o\u0074\u0061\u006f\u0074\u0068\u0061i"},{Key :"\u0063\u006f\u006d\u006d\u0061\u0073\u0075\u0070\u0072\u0069\u0067\u0068t\u006e\u006f\u0073\u0070",Value :"\u0074\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b"},{Key :"t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0074",Value :"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0063\u0064\u006f\u0074"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074\u0073\u006c\u0064",Value :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074b\u006c\u0061\u0063\u006b"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0066\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006ce\u0066\u0074\u0065\u0071",Value :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c"},{Key :"\u0074\u0072i\u0061\u006e\u0067l\u0065\u0072\u0069\u0067\u0068\u0074\u0073\u006c\u0064",Value :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0065\u0071",Value :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0074\u0072i\u0061\u006e\u0067r\u0069\u0067\u0068\u0074\u0065\u0071\u0075\u0061\u006c",Value :"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c"},{Key :"\u0070\u0072\u0069\u006d\u0065\u0074\u0072\u0069\u0070\u006c",Value :"\u0074r\u0070\u0072\u0069\u006d\u0065"},{Key :"p\u0072\u0069\u006d\u0065\u0074\u0072\u0069\u0070\u006c\u0031",Value :"\u0074r\u0070\u0072\u0069\u006d\u0065"},{Key :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062l\u006e\u006f\u0073\u0070",Value :"\u0074\u0073"},{Key :"\u0074\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",Value :"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0074s\u0061d\u0069\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00388",Value :"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0074\u0073\u0065",Value :"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00394",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074\u0073\u0065\u0072\u0065\u006e\u0061\u0072\u0072\u006f\u0077\u0068e\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"t\u0073\u0065\u0072\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065\u0072\u0065\u0031\u0065",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074\u0073\u0065r\u0065",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065r\u0065\u0077\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0066\u0069\u006c\u0065\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065\u0072\u0065\u0032\u0062",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0074s\u0065r\u0065\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",Value :"\u0074s\u0065\u0072\u0065\u0031\u0032"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00308",Value :"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0074\u0073\u0068\u0065",Value :"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0063o\u006dm\u0061\u0073\u0075\u0070\u0072\u0065\u0076\u006e\u006f\u0073\u0070",Value :"\u0074t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0069\u006f\u0074\u0061\u0074\u0075\u0072\u006e",Value :"\u0074\u0075\u0072\u006e\u0065\u0064\u0069\u006f\u0074\u0061"},{Key :"\u0076\u0064\u0061s\u0068",Value :"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00394",Value :"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061\u0072\u0061\u0062ic\u0069\u006e\u0064\u0069\u0063\u0064\u0069\u0067\u0069\u0074\u0074\u0077\u006f",Value :"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0074\u0077\u006f\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0065n\u006ce\u0061\u0064\u0065\u0072\u0074\u0077\u006f\u0064\u006f\u0074\u0073",Value :"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072"},{Key :"\u0074\u0077\u006f\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072",Value :"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072"},{Key :"\u0074\u0077\u006f\u0064\u006f\u0074\u006c\u0065\u0061\u0064",Value :"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072"},{Key :"\u0074\u0077\u006f\u0073\u0075\u0062",Value :"t\u0077\u006f\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"e\u0078\u0074\u0065\u006e\u0064\u0065d\u0061\u0072\u0061\u0062\u0069\u0063\u0069\u006e\u0064i\u0063\u0064\u0069g\u0069t\u0074\u0077\u006f",Value :"\u0074\u0077\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00362",Value :"\u0074w\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0067\u0072\u0061v\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0075\u0062\u0061\u0072"},{Key :"\u0064e\u006c\u0074\u0061\u0074\u0075\u0072n",Value :"\u0075\u0062\u0072\u0065\u0076\u0065"},{Key :"\u0075\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",Value :"\u0075d\u0062\u006c\u0061\u0063\u0075\u0074e"},{Key :"e\u0073\u0068\u0073\u0068\u006f\u0072\u0074\u0072\u0065\u0076",Value :"\u0075d\u0062\u006c\u0067\u0072\u0061\u0076e"},{Key :"\u0041\u0061\u0063\u0075\u0074\u0065\u0072\u0069\u006e\u0067",Value :"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e"},{Key :"\u0069\u0068\u0061\u0063\u0065\u006b",Value :"\u0075\u0068\u006fr\u006e"},{Key :"\u0074\u0074\u0075r\u006e",Value :"\u0075\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065"},{Key :"\u006ew\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u0075\u006c\u0061r\u0063"},{Key :"\u0064\u0062\u006c\u006c\u006f\u0077\u006c\u0069\u006e\u0065",Value :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c"},{Key :"\u0074\u0077\u006f\u006c\u006f\u0077\u006c\u0069\u006e\u0065",Value :"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c"},{Key :"\u006d\u0069d\u0068\u006f\u0072i\u007a\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",Value :"\u0075\u006e\u0069c\u006f\u0064\u0065\u0063\u0064\u006f\u0074\u0073"},{Key :"\u0063\u0075\u0070",Value :"\u0075\u006e\u0069o\u006e"},{Key :"\u0043\u0075\u0070",Value :"\u0075\u006e\u0069\u006f\u006e\u0064\u0062\u006c"},{Key :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069"},{Key :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074i\u0074\u0065\u0078\u0074",Value :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069"},{Key :"\u0075\u0070\u006cu\u0073",Value :"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069"},{Key :"\u0073\u0071\u0063u\u0070",Value :"\u0075n\u0069\u006f\u006e\u0073\u0071"},{Key :"\u0075\u006e\u0069\u006f\u006e\u0073\u0071\u0064\u0069s\u0070\u006c\u0061\u0079",Value :"\u0075n\u0069\u006f\u006e\u0073\u0071"},{Key :"u\u006e\u0069\u006f\u006e\u0073\u0071\u0074\u0065\u0078\u0074",Value :"\u0075n\u0069\u006f\u006e\u0073\u0071"},{Key :"\u0062\u0069\u0067\u0063\u0075\u0070",Value :"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t"},{Key :"\u006ea\u0072\u0079\u0075\u006e\u0069\u006fn",Value :"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t"},{Key :"\u0075\u006e\u0069o\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079",Value :"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t"},{Key :"\u0066\u006f\u0072\u0061\u006c\u006c",Value :"\u0075n\u0069\u0076\u0065\u0072\u0073\u0061l"},{Key :"b\u006c\u006f\u0063\u006b\u0075\u0070\u0068\u0061\u006c\u0066",Value :"\u0075p\u0062\u006c\u006f\u0063\u006b"},{Key :"\u0067e\u006b\u0061\u0072\u0065\u0076",Value :"\u0075p\u0064\u0069\u0067\u0061\u006d\u006da"},{Key :"\u0065n\u0072\u0074\u0064\u0065\u0073",Value :"\u0075p\u006b\u006f\u0070\u0070\u0061"},{Key :"\u004ba\u0076\u0065\u0072\u0074\u0062\u0061r",Value :"\u0075\u0070\u006f\u006c\u0064\u004b\u006f\u0070\u0070\u0061"},{Key :"\u006ba\u0076\u0065\u0072\u0074\u0062\u0061r",Value :"\u0075\u0070\u006f\u006c\u0064\u006b\u006f\u0070\u0070\u0061"},{Key :"\u0065\u006e\u0067\u0065",Value :"\u0075p\u0073\u0061\u006d\u0070\u0069"},{Key :"\u0075p\u0075\u0070\u0073\u0069\u006c\u006fn",Value :"\u0075p\u0073\u0069\u006c\u006f\u006e"},{Key :"\u0061\u0063\u0075t\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0075\u0070\u0073i\u006c\u006f\u006e\u006c\u0061\u0074\u0069\u006e"},{Key :"\u0078\u0073\u006f\u006c",Value :"\u0075p\u0073\u006c\u006f\u0070\u0065"},{Key :"\u006b\u0061\u0062a\u0072",Value :"\u0075\u0070\u0073\u0074\u0069\u0067\u006d\u0061"},{Key :"\u0055\u0070s\u0069\u006c\u006fn\u0031\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",Value :"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031\u0064\u0069\u0061\u0065r\u0065\u0073\u0069\u0073",Value :"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062"},{Key :"\u0043\u0068\u0065\u0076\u0065\u0072\u0074\u0062\u0061\u0072",Value :"\u0075\u0070\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061"},{Key :"\u006ee\u0071\u0075\u0061\u0064\u0061\u0072c",Value :"\u0075\u0072\u0061r\u0063"},{Key :"\u0044\u0062\u0061r\u0031",Value :"\u0075\u0074\u0069\u006c\u0064\u0065"},{Key :"\u0070e\u0072s\u0070\u0063\u006f\u0072\u0072\u0065\u0073\u0070\u006f\u006e\u0064",Value :"\u0076\u0061\u0072\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065"},{Key :"\u0063l\u0077c\u006f\u006e\u0074\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",Value :"\u0076\u0061r\u006f\u0069\u006et\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",Value :"\u0076a\u0072t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074"},{Key :"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",Value :"\u0076\u0061r\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0036\u00369",Value :"\u0076\u0061\u0076"},{Key :"\u0076a\u0076\u0068\u0065\u0062\u0072\u0065w",Value :"\u0076\u0061\u0076"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00323",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0076a\u0076\u0064\u0061\u0067\u0065\u0073h",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"v\u0061\u0076\u0064\u0061\u0067\u0065\u0073\u0068\u0036\u0035",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0076\u0061\u0076\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00300",Value :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d"},{Key :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d\u0068e\u0062\u0072\u0065\u0077",Value :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d"},{Key :"\u0076\u0061\u0076w\u0069\u0074\u0068\u0068\u006f\u006c\u0061\u006d",Value :"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d"},{Key :"\u0076\u0065\u0063",Value :"\u0076\u0065\u0063\u0074\u006f\u0072"},{Key :"e\u0071\u0075\u0069\u0061\u006e\u0067\u0075\u006c\u0061\u0072",Value :"\u0076\u0065\u0065e\u0071"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00305",Value :"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0076\u0065\u0068",Value :"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0076\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0076\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0076e\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u0076e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0053\u0061\u006dp\u0069",Value :"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0062\u0065\u006c\u006fwc\u006d\u0062"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006e\u0067b\u006f\u0074\u0068\u0076",Value :"v\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0074a\u0063k\u006c\u0065\u0066\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0076\u0068\u006fo\u006b"},{Key :"\u0076\u0065\u0072\u0074\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065",Value :"\u0076\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0066\u0069\u006c\u006c\u0065\u0064\u0076\u0065\u0072t\u0072\u0065\u0063\u0074",Value :"\u0076r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b"},{Key :"\u0074\u0061c\u006b\u0072\u0069g\u0068\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0076t\u0075\u0072\u006e\u0065\u0064"},{Key :"o\u0070\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074\u0031",Value :"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0072\u0069\u006e\u0067\u006d\u0061\u0074\u0068",Value :"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00348",Value :"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0077\u0061\u0077",Value :"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c",Value :"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0077\u0061\u0077\u0077it\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006ea\u006c",Value :"\u0077a\u0077\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0065s\u0074\u0069\u006d\u0061\u0074\u0065s",Value :"\u0077\u0065\u0064\u0067\u0065\u0071"},{Key :"\u0050s\u0063\u0072\u0069\u0070\u0074",Value :"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073"},{Key :"\u0077\u0070",Value :"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073"},{Key :"\u006f\u0070\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074",Value :"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074"},{Key :"s\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074"},{Key :"\u0063\u0069\u0072\u0063\u006c\u0065",Value :"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",Value :"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065"},{Key :"\u0064\u0069\u0061m\u006f\u006e\u0064\u0072\u0068\u006f\u006d\u0062",Value :"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064"},{Key :"\u006d\u0064\u006c\u0067\u0077\u0068\u0074\u0064\u0069a\u006d\u006f\u006e\u0064",Value :"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064"},{Key :"\u0062\u006c\u0061\u0063ki\u006e\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064"},{Key :"\u0064i\u0061m\u006f\u006e\u0064\u0072\u0068o\u006d\u0062n\u0065\u0073\u0074\u0065\u0064",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064"},{Key :"\u0073\u006da\u006c\u006c\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0069\u006e\u0076",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e",Value :"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0062i\u0067t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e",Value :"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0069\u006e\u0076",Value :"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074",Value :"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u0066\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074\u0031",Value :"\u0077h\u0069\u0074\u0065\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce"},{Key :"t\u0072\u0069\u0061\u0067\u006c\u0066\u006f\u0070\u0065\u006e",Value :"\u0077\u0068i\u0074\u0065\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074"},{Key :"t\u0072\u0069\u0061\u0067\u0072\u0074\u006f\u0070\u0065\u006e",Value :"\u0077\u0068\u0069\u0074\u0065\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074"},{Key :"\u0073m\u0061l\u006c\u0074\u0072\u0069\u0061n\u0067\u006ce\u0072\u0069\u0067\u0068\u0074",Value :"\u0077\u0068\u0069t\u0065\u0072\u0069\u0067h\u0074\u0070\u006f\u0069\u006e\u0074\u0069n\u0067\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072i\u0067\u0068\u0074\u0031",Value :"\u0077\u0068\u0069\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065"},{Key :"\u0048\u0031\u0038\u0035\u0035\u0031",Value :"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0062\u006f\u0078",Value :"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"s\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",Value :"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065"},{Key :"\u0062\u0069\u0067w\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072",Value :"\u0077h\u0069\u0074\u0065\u0073\u0074\u0061r"},{Key :"\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"v\u0061\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065"},{Key :"\u0062\u0069\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0075\u0070",Value :"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",Value :"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00319",Value :"\u0077\u006f\u0077\u0061\u0065\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0077\u0072",Value :"\u0077\u0072\u0065\u0061\u0074\u0068\u0070\u0072\u006f\u0064\u0075\u0063\u0074"},{Key :"\u0064i\u0061e\u0072\u0065\u0073\u0069\u0073t\u006f\u006eo\u0073\u006e\u006f\u0073\u0070",Value :"\u0077s\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0061\u006e\u0067l\u0065\u0073\u0075\u0070\u006e\u006f\u0073\u0070",Value :"\u0077t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0075\u0070\u0078\u0069",Value :"\u0078\u0069"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00358",Value :"\u0079\u0061\u006da\u006b\u006b\u0061\u006e\u0074\u0068\u0061\u0069"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00394",Value :"y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0049\u0062\u0061\u0072",Value :"y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00350",Value :"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0079\u0065\u0068",Value :"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0035\u00319",Value :"\u0079e\u0068b\u0061\u0072\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00314",Value :"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061a\u0062\u006f\u0076\u0065",Value :"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0077it\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0066\u0069\u006ea\u006c",Value :"\u0079e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079e\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0061b\u006f\u0076\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0079\u0065\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072a\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068wi\u0074\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u006d\u0065\u0064\u0069\u0061\u006c",Value :"\u0079e\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076e\u006de\u0064i\u0061\u006c\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u0061l\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u006ei\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",Value :"y\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063"},{Key :"\u0079\u0065\u0068\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",Value :"y\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0079\u0065h\u0077\u0069\u0074h\u006e\u006f\u006f\u006e\u0066\u0069\u006e\u0061\u006c",Value :"\u0079e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0059\u0065\u006e",Value :"\u0079\u0065\u006e"},{Key :"a\u0075\u0078\u0069\u006c\u0069\u0061\u0072\u0079\u006f\u006e",Value :"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0064e\u0076\u0063\u006f\u006e\u0031",Value :"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0079\u0065\u0072\u0061hb\u0065\u006e\u0079\u006f\u006d\u006f\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072e\u0077",Value :"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00393",Value :"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0079\u0065\u0072\u0069",Value :"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"s\u0074\u0061\u0072\u0074\u006f\u0066\u0068\u0065\u0061\u0064",Value :"y\u0065\u0074\u0069\u0076\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0075\u0068\u0061\u0063\u0065\u006b",Value :"\u0079\u0068\u006fo\u006b"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0031\u00304",Value :"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0079\u0069",Value :"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u0061\u0072\u0072\u006f\u0077\u0073\u006f\u0075\u0074h\u0077\u0065\u0073\u0074",Value :"\u0079\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e"},{Key :"\u0079o\u0064\u0064\u0061\u0067\u0065\u0073h",Value :"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0079\u006f\u0064\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00318",Value :"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0079\u006f\u0064\u0064\u0062\u006c",Value :"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0037\u00305",Value :"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0064\u006f\u0075\u0062\u006c\u0065\u0079\u006f\u0064p\u0061\u0074\u0061\u0068",Value :"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"d\u006fu\u0062\u006c\u0065\u0079\u006f\u0064\u0070\u0061t\u0061\u0068\u0068\u0065br\u0065\u0077",Value :"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u0063\u0068\u0065\u0072\u0074\u0064\u0065\u0073",Value :"\u0079\u006f\u0074\u0067\u0072\u0065\u0065\u006b"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00314",Value :"\u0079o\u0079\u0061\u006b\u0074\u0068\u0061i"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0036\u00393",Value :"\u0079\u006f\u0079\u0069\u006e\u0067\u0074\u0068\u0061\u0069"},{Key :"\u0064z\u0068\u0061\u0063\u0065\u006b",Value :"\u0079\u0072"},{Key :"i\u006f\u0074\u0061\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u0079s\u0075\u0070\u0065\u0072\u0069\u006fr"},{Key :"\u0068\u006f\u0072\u006e\u006e\u006f\u0073\u0070",Value :"\u0079t\u0075\u0072\u006e\u0065\u0064"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00332",Value :"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u007a\u0061\u0068",Value :"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c"},{Key :"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c",Value :"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u007a\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",Value :"\u007a\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u007aa\u0068\u006d\u0065\u0064\u0069\u0061l",Value :"\u007aa\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0034\u00326",Value :"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u007a\u0061\u0069\u006e",Value :"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u007aa\u0069\u006e\u0066\u0069\u006e\u0061l",Value :"\u007aa\u0069n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006f\u0070r\u0069\u0067\u0068\u0074",Value :"\u007a\u0061q\u0065\u0066\u0067a\u0064\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0061\u0072\u0072\u006f\u0077\u006c\u006f\u006f\u0070\u006c\u0065\u0066\u0074",Value :"\u007a\u0061q\u0065\u0066\u0071a\u0074\u0061\u006e\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"a\u0072\u0072\u006f\u0077\u007a\u0069\u0067\u007a\u0061\u0067",Value :"z\u0061\u0072\u0071\u0061\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"z\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u007aa\u0079i\u006e\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068",Value :"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077"},{Key :"\u006e\u006c\u0065\u0067",Value :"\u007a\u0063\u0061\u0072\u006f\u006e"},{Key :"\u0074a\u0063k\u0064\u006f\u0077\u006e\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u007a\u0063\u0075r\u006c"},{Key :"\u006d\u0063\u0061\u0070\u0074\u0075\u0072\u006e",Value :"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u007a\u0064\u006f\u0074",Value :"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074"},{Key :"\u007ae\u0072\u006f\u0064\u006f\u0074",Value :"\u007a\u0065\u0072\u006f"},{Key :"\u007ae\u0072\u006f\u0073\u006c\u0061\u0073h",Value :"\u007a\u0065\u0072\u006f"},{Key :"\u0061f\u0069\u0069\u0035\u0037\u0033\u00392",Value :"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"a\u0072a\u0062\u0069\u0063\u0069\u006e\u0064\u0069\u0063d\u0069\u0067\u0069\u0074ze\u0072\u006f",Value :"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u007a\u0065\u0072\u006f\u0061\u0072\u0061\u0062\u0069\u0063",Value :"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063"},{Key :"\u007ae\u0072\u006f\u0073\u0075\u0062",Value :"\u007a\u0065\u0072o\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072"},{Key :"\u0065\u0078\u0074\u0065n\u0064\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063\u0069n\u0064i\u0063\u0064\u0069\u0067\u0069\u0074\u007ae\u0072\u006f",Value :"z\u0065\u0072\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e"},{Key :"\u0061f\u0069\u0069\u0035\u0039\u0037\u00360",Value :"\u007a\u0065\u0072\u006f\u0074\u0068\u0061\u0069"},{Key :"\u0062\u006f\u006d",Value :"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072"},{Key :"z\u0065\u0072\u006f\u0077id\u0074h\u006e\u006f\u0062\u0072\u0065a\u006b\u0073\u0070\u0061\u0063\u0065",Value :"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072"},{Key :"\u007ae\u0072\u006f\u0073\u0070\u0061\u0063e",Value :"\u007a\u0065\u0072\u006f\u0077\u0069\u0064\u0074\u0068s\u0070\u0061\u0063\u0065"},{Key :"\u0075\u0070\u007a\u0065\u0074\u0061",Value :"\u007a\u0065\u0074\u0061"},{Key :"\u0061f\u0069\u0069\u0031\u0030\u0030\u00372",Value :"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u007a\u0068\u0065",Value :"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063"},{Key :"\u006e\u0065\u0067\u0061\u0063\u006b\u006e\u006f\u0077l\u0065\u0064\u0067\u0065",Value :"z\u0069\u006e\u006f\u0072\u0068\u0065\u0062\u0072\u0065\u0077"},{Key :"\u0074\u0061\u0063\u006b\u0075\u0070\u0073\u0075\u0062\u006e\u006f\u0073\u0070",Value :"\u007a\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b"}}; +func _bgb (_bdb *charCodeGlyphNameMap )*_bac .PdfObjectArray {if _bdb .Length ()==0{return nil ;};_bgf :=make ([]CharCode ,0,_bdb .Length ());_bdb .Range (func (_aeba CharCode ,_ GlyphName )(_adc bool ){_bgf =append (_bgf ,_aeba );return false });_e .Slice (_bgf ,func (_daf ,_bad int )bool {return _bgf [_daf ]< _bgf [_bad ]}); +_bdbg :=_bgf [0];_bde ,_ :=_bdb .Read (_bdbg );_eefd :=[]_bac .PdfObject {_bac .MakeInteger (int64 (_bdbg )),_bac .MakeName (string (_bde ))};for _ ,_acea :=range _bgf [1:]{if _acea ==_bdbg +1{_bde ,_ =_bdb .Read (_acea );_eefd =append (_eefd ,_bac .MakeName (string (_bde ))); +}else {_eefd =append (_eefd ,_bac .MakeInteger (int64 (_acea )));};_bdbg =_acea ;};return _bac .MakeArray (_eefd ...);};type simpleMapping struct{_aebd string ;_cdd _c .Once ;_adga *_ca .ByteRuneMap ;_eba *_ca .RuneByteMap ;};const (_adad ="\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074\u0045\u006e\u0063o\u0064\u0069\u006e\u0067"; +_gade ="\u004d\u0061c\u0052\u006f\u006da\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067";);type simpleEncoding struct{_dcca string ;_edf *_ca .RuneByteMap ;_edfd *_ca .ByteRuneMap ;_cgbd *_ca .RuneSet ;};type simpleEncodersMap struct{_dba map[string ]func ()SimpleEncoder ; +_fag _c .RWMutex ;};func (_ccg *simpleEncoding )ToPdfObject ()_bac .PdfObject {return _bac .MakeName (_ccg ._dcca )};type CMapEncoder struct{_gf string ;_bd *_gda .CMap ;_fda *_gda .CMap ;};func (_bdcf UTF16Encoder )String ()string {return _bdcf ._fdab }; +func (_cdgd *IdentityEncoder )Encode (str string )[]byte {return _bcbf (_cdgd ,str )};func (_gcgd *simpleEncodersMap )Range (f func (_gbaf string ,_afba func ()SimpleEncoder )(_agb bool )){_gcgd ._fag .RLock ();defer _gcgd ._fag .RUnlock ();for _dcab ,_dgef :=range _gcgd ._dba {if f (_dcab ,_dgef ){break ; +};};};func (_cde *simpleEncoding )Decode (raw []byte )string {_aga ,_ :=_cde .NewDecoder ().Bytes (raw );return string (_aga );};var _abcea =_ca .NewByteRuneMap (map[byte ]rune {0x1:'\x01',0x2:'\x02',0x3:'\x03',0x4:'\x04',0x5:'\x05',0x6:'\x06',0x7:'\a',0x8:'\b',0x9:'\t',0xa:'\n',0xb:'\v',0xc:'\f',0xd:'\r',0xe:'\x0e',0xf:'\x0f',0x10:'\x10',0x11:'\x11',0x12:'\x12',0x13:'\x13',0x14:'\x14',0x15:'\x15',0x16:'\x16',0x17:'\x17',0x18:'\x18',0x19:'\x19',0x1a:'\x1a',0x1b:'\x1b',0x1c:'\x1c',0x1d:'\x1d',0x1e:'\x1e',0x1f:'\x1f',0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'\'',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'`',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0x7f:'\u007f',0x80:'Ä',0x81:'Å',0x82:'Ç',0x83:'É',0x84:'Ñ',0x85:'Ö',0x86:'Ü',0x87:'á',0x88:'à',0x89:'â',0x8a:'ä',0x8b:'ã',0x8c:'å',0x8d:'ç',0x8e:'é',0x8f:'è',0x90:'ê',0x91:'ë',0x92:'í',0x93:'ì',0x94:'î',0x95:'ï',0x96:'ñ',0x97:'ó',0x98:'ò',0x99:'ô',0x9a:'ö',0x9b:'õ',0x9c:'ú',0x9d:'ù',0x9e:'û',0x9f:'ü',0xa0:'†',0xa1:'°',0xa2:'¢',0xa3:'£',0xa4:'§',0xa5:'•',0xa6:'¶',0xa7:'ß',0xa8:'®',0xa9:'©',0xaa:'™',0xab:'´',0xac:'¨',0xad:'≠',0xae:'Æ',0xaf:'Ø',0xb0:'∞',0xb1:'±',0xb2:'≤',0xb3:'≥',0xb4:'¥',0xb5:'µ',0xb6:'∂',0xb7:'∑',0xb8:'∏',0xb9:'π',0xba:'∫',0xbb:'ª',0xbc:'º',0xbd:'Ω',0xbe:'æ',0xbf:'ø',0xc0:'¿',0xc1:'¡',0xc2:'¬',0xc3:'√',0xc4:'ƒ',0xc5:'≈',0xc6:'∆',0xc7:'«',0xc8:'»',0xc9:'…',0xca:'\u00a0',0xcb:'À',0xcc:'Ã',0xcd:'Õ',0xce:'Œ',0xcf:'œ',0xd0:'–',0xd1:'—',0xd2:'“',0xd3:'”',0xd4:'‘',0xd5:'’',0xd6:'÷',0xd7:'◊',0xd8:'ÿ',0xd9:'Ÿ',0xda:'⁄',0xdb:'€',0xdc:'‹',0xdd:'›',0xde:'fi',0xdf:'fl',0xe0:'‡',0xe1:'·',0xe2:'‚',0xe3:'„',0xe4:'‰',0xe5:'Â',0xe6:'Ê',0xe7:'Á',0xe8:'Ë',0xe9:'È',0xea:'Í',0xeb:'Î',0xec:'Ï',0xed:'Ì',0xee:'Ó',0xef:'Ô',0xf0:'\uf8ff',0xf1:'Ò',0xf2:'Ú',0xf3:'Û',0xf4:'Ù',0xf5:'ı',0xf6:'ˆ',0xf7:'˜',0xf8:'¯',0xf9:'˘',0xfa:'˙',0xfb:'˚',0xfc:'¸',0xfd:'˝',0xfe:'˛',0xff:'ˇ'}); +func (_gcdc *IdentityEncoder )RegisteredRunes ()[]rune {_dbg :=make ([]rune ,_gcdc ._aef .Length ());_fca :=0;_gcdc ._aef .Range (func (_ge rune )(_add bool ){_dbg [_fca ]=_ge ;_fca ++;return false });return _dbg ;};func (_bdab *differencesEncoding )RuneToCharcode (r rune )(CharCode ,bool ){if _cgcg ,_dde :=_bdab ._bacb .Read (r ); +_dde {return CharCode (_cgcg ),true ;};return _bdab ._cfc .RuneToCharcode (r );};var (_efcd =&simpleEncodersMap {_dba :map[string ]func ()SimpleEncoder {}};);func NewSimpleTextEncoder (baseName string ,differences map[CharCode ]GlyphName )(SimpleEncoder ,error ){_dad ,_adae :=_efcd .Read (baseName ); +if !_adae {_ac .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004ee\u0077\u0053\u0069mp\u006c\u0065\u0054\u0065\u0078\u0074E\u006e\u0063\u006f\u0064\u0065\u0072\u002e\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e \u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067 \u0025\u0071",baseName ); +return nil ,nil ;};_agdb :=_dad ();if len (differences )!=0{_agdb =ApplyDifferences (_agdb ,differences );};return _agdb ,nil ;};const _dadb ="\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067";func (_age *simpleEncoder )Transform (dst ,src []byte ,atEOF bool )(_bgfb ,_daae int ,_ error ){for len (src )!=0{if !_g .FullRune (src )&&!atEOF {return _bgfb ,_daae ,_ee .ErrShortSrc ; +}else if len (dst )==0{return _bgfb ,_daae ,_ee .ErrShortDst ;};_egfc ,_dgff :=_g .DecodeRune (src );if _egfc ==_g .RuneError {_egfc =MissingCodeRune ;};src =src [_dgff :];_daae +=_dgff ;_cgab ,_baef :=_age ._gdac .Read (_egfc );if !_baef {_cgab ,_ =_age ._gdac .Read (MissingCodeRune ); +};dst [0]=_cgab ;dst =dst [1:];_bgfb ++;};return _bgfb ,_daae ,nil ;};func (_efb *TrueTypeFontEncoder )SubsetRegistered (){_ac .Log .Info ("\u0054\u0054\u0046\u0020Su\u0062\u0073\u0065\u0074\u003a\u0020\u0050\u0072\u0075\u006e\u0069\u006e\u0067");_efb ._afgd .RangeDelete (func (_dbf rune ,_ uint16 )(_cbad bool ,_ecaa bool ){return !_efb ._fcdg .Exists (_dbf ),_ecaa }); +};func (_dgb *simpleEncoding )BaseName ()string {return _dgb ._dcca };func (_debe simpleDecoder )Transform (dst ,src []byte ,_ bool )(_adag ,_fed int ,_ error ){for len (src )!=0{_ebfg :=src [0];src =src [1:];_dgee ,_gbc :=_debe ._beae .Read (_ebfg );if !_gbc {_dgee =MissingCodeRune ; +};if _g .RuneLen (_dgee )> len (dst ){return _adag ,_fed ,_ee .ErrShortDst ;};_acab :=_g .EncodeRune (dst ,_dgee );dst =dst [_acab :];_fed ++;_adag +=_acab ;};return _adag ,_fed ,nil ;};func (_egg *simpleEncoding )Charcodes ()[]CharCode {_bege :=make ([]CharCode ,0,_egg ._edfd .Length ()); +_egg ._edfd .Range (func (_gfe byte ,_ rune )(_bfb bool ){_bege =append (_bege ,CharCode (_gfe ));return false });_e .Slice (_bege ,func (_dbe ,_cbdc int )bool {return _bege [_dbe ]< _bege [_cbdc ]});return _bege ;};func (_bgce *simpleEncoder )Reset (){}; +var (_fcda =_adf (_bdef ,_fcf );_fce =_adf (_daaed ,_bfa ););func RuneToGlyph (r rune )(GlyphName ,bool ){_dfe ,_bead :=_bdbe .Read (r );if !_bead &&r > 0{_dfe =_da .Sprintf ("\u0075n\u0069\u0025\u0030\u0034\u0078",r );_bead =true ;};return GlyphName (_dfe ),_bead ; +};var (_ SimpleEncoder =(*simpleEncoding )(nil );_ _a .Encoding =(*simpleEncoding )(nil ););func (_ccea *TrueTypeFontEncoder )String ()string {_eff :=[]string {_da .Sprintf ("\u0025\u0064\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073",_ccea ._afgd .Length ())}; +type runeGID struct{_gge rune ;_fea GID ;};_cff :=make ([]runeGID ,0,_ccea ._afgd .Length ());_ccea ._afgd .Range (func (_gbae rune ,_ffga uint16 )(_cgaa bool ){_cff =append (_cff ,runeGID {_gge :_gbae ,_fea :GID (_ffga )});return false ;});_e .Slice (_cff ,func (_aggd ,_ccc int )bool {return _cff [_aggd ]._gge < _cff [_ccc ]._gge }); +_bbdd :=len (_cff );if _bbdd > _ceb {_bbdd =_ceb ;};for _ddb :=0;_ddb < _bbdd ;_ddb ++{_cfd :=_cff [_ddb ];_eff =append (_eff ,_da .Sprintf ("\u0025\u0064\u003d\u0030\u0078\u0025\u0030\u0032\u0078\u003a\u0020\u0025\u0071",_cfd ._gge ,_cfd ._gge ,_cfd ._fea )); +};return _da .Sprintf ("T\u0052U\u0045\u0054\u0059\u0050\u0045\u005f\u0045\u004eC\u004f\u0044\u0045\u0052{%\u0073\u007d",_dc .Join (_eff ,"\u002c\u0020"));};func NewUTF16TextEncoder (baseName string )UTF16Encoder {return UTF16Encoder {baseName }};type charCodeGlyphNameTuple struct{CharCode CharCode ; +GlyphName GlyphName ;};var _bdbe =_ca .NewRuneStringMap (map[rune ]string {0xfffd:"\u002en\u006f\u0074\u0064\u0065\u0066",0x250a:"\u0032\u0035\u0030\u0061",0x250b:"\u0032\u0035\u0030\u0062",0x250d:"\u0032\u0035\u0030\u0064",0x250e:"\u0032\u0035\u0030\u0065",0x250f:"\u0032\u0035\u0030\u0066",0x251a:"\u0032\u0035\u0031\u0061",0x251b:"\u0032\u0035\u0031\u0062",0x251d:"\u0032\u0035\u0031\u0064",0x251e:"\u0032\u0035\u0031\u0065",0x251f:"\u0032\u0035\u0031\u0066",0x252a:"\u0032\u0035\u0032\u0061",0x252b:"\u0032\u0035\u0032\u0062",0x252d:"\u0032\u0035\u0032\u0064",0x252e:"\u0032\u0035\u0032\u0065",0x252f:"\u0032\u0035\u0032\u0066",0x253a:"\u0032\u0035\u0033\u0061",0x253b:"\u0032\u0035\u0033\u0062",0x253d:"\u0032\u0035\u0033\u0064",0x253e:"\u0032\u0035\u0033\u0065",0x253f:"\u0032\u0035\u0033\u0066",0x254a:"\u0032\u0035\u0034\u0061",0x254b:"\u0032\u0035\u0034\u0062",0x254c:"\u0032\u0035\u0034\u0063",0x254d:"\u0032\u0035\u0034\u0064",0x254e:"\u0032\u0035\u0034\u0065",0x254f:"\u0032\u0035\u0034\u0066",0x256d:"\u0032\u0035\u0036\u0064",0x256e:"\u0032\u0035\u0036\u0065",0x256f:"\u0032\u0035\u0036\u0066",0x257a:"\u0032\u0035\u0037\u0061",0x257b:"\u0032\u0035\u0037\u0062",0x257c:"\u0032\u0035\u0037\u0063",0x257d:"\u0032\u0035\u0037\u0064",0x257e:"\u0032\u0035\u0037\u0065",0x257f:"\u0032\u0035\u0037\u0066",0x0041:"\u0041",0x00c6:"\u0041\u0045",0x01fc:"\u0041E\u0061\u0063\u0075\u0074\u0065",0x01e2:"\u0041\u0045\u006d\u0061\u0063\u0072\u006f\u006e",0xf7e6:"\u0041E\u0073\u006d\u0061\u006c\u006c",0x2370:"\u0041\u0050\u004c\u0062\u006f\u0078\u0071\u0075\u0065s\u0074\u0069\u006f\u006e",0x2353:"\u0041\u0050\u004c\u0062\u006f\u0078\u0075\u0070\u0063\u0061\u0072\u0065\u0074",0x2340:"\u0041P\u004cn\u006f\u0074\u0062\u0061\u0063\u006b\u0073\u006c\u0061\u0073\u0068",0x233f:"A\u0050\u004c\u006e\u006f\u0074\u0073\u006c\u0061\u0073\u0068",0x00c1:"\u0041\u0061\u0063\u0075\u0074\u0065",0xf7e1:"A\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x0102:"\u0041\u0062\u0072\u0065\u0076\u0065",0x1eae:"A\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065",0x04d0:"\u0041\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1eb6:"\u0041\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077",0x1eb0:"A\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065",0x1eb2:"\u0041b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x1eb4:"A\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065",0x01cd:"\u0041\u0063\u0061\u0072\u006f\u006e",0x24b6:"\u0041c\u0069\u0072\u0063\u006c\u0065",0x00c2:"A\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ea4:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1eac:"\u0041\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ea6:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ea8:"A\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0xf7e2:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x1eaa:"\u0041\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0xf6c9:"\u0041\u0063\u0075t\u0065",0xf7b4:"\u0041\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x0200:"\u0041d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00c4:"\u0041d\u0069\u0065\u0072\u0065\u0073\u0069s",0x04d2:"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01de:"\u0041d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0xf7e4:"\u0041\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1ea0:"\u0041d\u006f\u0074\u0062\u0065\u006c\u006fw",0x01e0:"\u0041\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e",0x00c0:"\u0041\u0067\u0072\u0061\u0076\u0065",0xf7e0:"A\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x1ea2:"\u0041\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x04d4:"A\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0202:"\u0041\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0391:"\u0041\u006c\u0070h\u0061",0x0386:"\u0041\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073",0x0100:"\u0041m\u0061\u0063\u0072\u006f\u006e",0xff21:"\u0041\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0104:"\u0041o\u0067\u006f\u006e\u0065\u006b",0x00c5:"\u0041\u0072\u0069n\u0067",0x01fa:"\u0041\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065",0x1e00:"\u0041\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077",0xf7e5:"\u0041\u0072\u0069\u006e\u0067\u0073\u006d\u0061\u006c\u006c",0xf761:"\u0041\u0073\u006d\u0061\u006c\u006c",0x00c3:"\u0041\u0074\u0069\u006c\u0064\u0065",0xf7e3:"A\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x0531:"A\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0042:"\u0042",0x2ae7:"\u0042\u0061\u0072\u0076",0x1d538:"\u0042\u0062\u0062\u0041",0x1d539:"\u0042\u0062\u0062\u0042",0x2102:"\u0042\u0062\u0062\u0043",0x1d53b:"\u0042\u0062\u0062\u0044",0x1d53c:"\u0042\u0062\u0062\u0045",0x1d53d:"\u0042\u0062\u0062\u0046",0x1d53e:"\u0042\u0062\u0062\u0047",0x213e:"\u0042\u0062\u0062\u0047\u0061\u006d\u006d\u0061",0x210d:"\u0042\u0062\u0062\u0048",0x1d540:"\u0042\u0062\u0062\u0049",0x1d541:"\u0042\u0062\u0062\u004a",0x1d542:"\u0042\u0062\u0062\u004b",0x1d543:"\u0042\u0062\u0062\u004c",0x1d544:"\u0042\u0062\u0062\u004d",0x2115:"\u0042\u0062\u0062\u004e",0x1d546:"\u0042\u0062\u0062\u004f",0x2119:"\u0042\u0062\u0062\u0050",0x213f:"\u0042\u0062\u0062P\u0069",0x211a:"\u0042\u0062\u0062\u0051",0x211d:"\u0042\u0062\u0062\u0052",0x1d54a:"\u0042\u0062\u0062\u0053",0x1d54b:"\u0042\u0062\u0062\u0054",0x1d54c:"\u0042\u0062\u0062\u0055",0x1d54d:"\u0042\u0062\u0062\u0056",0x1d54e:"\u0042\u0062\u0062\u0057",0x1d54f:"\u0042\u0062\u0062\u0058",0x1d550:"\u0042\u0062\u0062\u0059",0x2124:"\u0042\u0062\u0062\u005a",0x1d552:"\u0042\u0062\u0062\u0061",0x1d553:"\u0042\u0062\u0062\u0062",0x1d554:"\u0042\u0062\u0062\u0063",0x1d555:"\u0042\u0062\u0062\u0064",0x1d556:"\u0042\u0062\u0062\u0065",0x1d7e0:"\u0042\u0062\u0062\u0065\u0069\u0067\u0068\u0074",0x1d557:"\u0042\u0062\u0062\u0066",0x1d7dd:"\u0042b\u0062\u0066\u0069\u0076\u0065",0x1d7dc:"\u0042b\u0062\u0066\u006f\u0075\u0072",0x1d558:"\u0042\u0062\u0062\u0067",0x213d:"\u0042\u0062\u0062\u0067\u0061\u006d\u006d\u0061",0x1d559:"\u0042\u0062\u0062\u0068",0x1d55a:"\u0042\u0062\u0062\u0069",0x1d55b:"\u0042\u0062\u0062\u006a",0x1d55c:"\u0042\u0062\u0062\u006b",0x1d55d:"\u0042\u0062\u0062\u006c",0x1d55e:"\u0042\u0062\u0062\u006d",0x1d55f:"\u0042\u0062\u0062\u006e",0x1d7e1:"\u0042b\u0062\u006e\u0069\u006e\u0065",0x1d560:"\u0042\u0062\u0062\u006f",0x1d7d9:"\u0042\u0062\u0062\u006f\u006e\u0065",0x1d561:"\u0042\u0062\u0062\u0070",0x213c:"\u0042\u0062\u0062p\u0069",0x1d562:"\u0042\u0062\u0062\u0071",0x1d563:"\u0042\u0062\u0062\u0072",0x1d564:"\u0042\u0062\u0062\u0073",0x1d7df:"\u0042\u0062\u0062\u0073\u0065\u0076\u0065\u006e",0x1d7de:"\u0042\u0062\u0062\u0073\u0069\u0078",0x2140:"\u0042\u0062\u0062\u0073\u0075\u006d",0x1d565:"\u0042\u0062\u0062\u0074",0x1d7db:"\u0042\u0062\u0062\u0074\u0068\u0072\u0065\u0065",0x1d7da:"\u0042\u0062\u0062\u0074\u0077\u006f",0x1d566:"\u0042\u0062\u0062\u0075",0x1d567:"\u0042\u0062\u0062\u0076",0x1d568:"\u0042\u0062\u0062\u0077",0x1d569:"\u0042\u0062\u0062\u0078",0x1d56a:"\u0042\u0062\u0062\u0079",0x1d56b:"\u0042\u0062\u0062\u007a",0x1d7d8:"\u0042b\u0062\u007a\u0065\u0072\u006f",0x24b7:"\u0042c\u0069\u0072\u0063\u006c\u0065",0x1e02:"\u0042\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e04:"\u0042d\u006f\u0074\u0062\u0065\u006c\u006fw",0x0532:"B\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0392:"\u0042\u0065\u0074\u0061",0x0181:"\u0042\u0068\u006fo\u006b",0x1e06:"\u0042\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff22:"\u0042\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf6f4:"\u0042\u0072\u0065\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0xf762:"\u0042\u0073\u006d\u0061\u006c\u006c",0x0229:"\u0042s\u006d\u0061\u006c\u006c\u0063\u0061p",0x0182:"\u0042t\u006f\u0070\u0062\u0061\u0072",0x0043:"\u0043",0x053e:"\u0043\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0106:"\u0043\u0061\u0063\u0075\u0074\u0065",0xf6ca:"\u0043\u0061\u0072o\u006e",0xf6f5:"\u0043\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x010c:"\u0043\u0063\u0061\u0072\u006f\u006e",0x00c7:"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x1e08:"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065",0xf7e7:"\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c",0x24b8:"\u0043c\u0069\u0072\u0063\u006c\u0065",0x0108:"C\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x010a:"\u0043\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0xf7b8:"\u0043\u0065\u0064i\u006c\u006c\u0061\u0073\u006d\u0061\u006c\u006c",0x0549:"C\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04bc:"C\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x0427:"C\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04be:"\u0043\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04b6:"C\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04f4:"\u0043\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0543:"\u0043\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04cb:"C\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x04b8:"\u0043h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x03a7:"\u0043\u0068\u0069",0x0187:"\u0043\u0068\u006fo\u006b",0xf6f6:"\u0043i\u0072c\u0075\u006d\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0xff23:"\u0043\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0551:"\u0043\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2a74:"\u0043o\u006c\u006f\u006e\u0065\u0071",0xf763:"\u0043\u0073\u006d\u0061\u006c\u006c",0x0044:"\u0044",0x27f1:"\u0044\u0044\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x01f1:"\u0044\u005a",0x01c4:"\u0044Z\u0063\u0061\u0072\u006f\u006e",0x0534:"\u0044\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0189:"\u0044\u0061\u0066\u0072\u0069\u0063\u0061\u006e",0x2ae5:"\u0044\u0061\u0073h\u0056",0x27da:"\u0044a\u0073\u0068\u0056\u0044\u0061\u0073h",0x2ae4:"\u0044\u0061\u0073h\u0076",0x010e:"\u0044\u0063\u0061\u0072\u006f\u006e",0xf810:"\u0044c\u0061\u0072\u006f\u006e\u0031",0x1e10:"\u0044\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24b9:"\u0044c\u0069\u0072\u0063\u006c\u0065",0x1e12:"\u0044\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0110:"\u0044\u0063\u0072\u006f\u0061\u0074",0x1e0a:"\u0044\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e0c:"\u0044d\u006f\u0074\u0062\u0065\u006c\u006fw",0x290b:"\u0044\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x0414:"\u0044\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03ee:"\u0044e\u0069\u0063\u006f\u0070\u0074\u0069c",0x2206:"\u0044\u0065\u006ct\u0061",0x0394:"\u0044\u0065\u006c\u0074\u0061\u0067\u0072\u0065\u0065\u006b",0x018a:"\u0044\u0068\u006fo\u006b",0xf6cb:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0xf6cc:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0041\u0063\u0075\u0074\u0065",0xf6cd:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0047\u0072\u0061\u0076\u0065",0xf7a8:"\u0044\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0073\u006d\u0061\u006c\u006c",0x1d7cb:"\u0044i\u0067\u0061\u006d\u006d\u0061",0x03dc:"\u0044\u0069\u0067a\u006d\u006d\u0061\u0067\u0072\u0065\u0065\u006b",0x1e0e:"\u0044\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff24:"\u0044\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf6f7:"\u0044\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074s\u006d\u0061\u006c\u006c",0xf764:"\u0044\u0073\u006d\u0061\u006c\u006c",0x018b:"\u0044t\u006f\u0070\u0062\u0061\u0072",0x01f2:"\u0044\u007a",0x01c5:"\u0044z\u0063\u0061\u0072\u006f\u006e",0x04e0:"D\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x040f:"\u0044\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0045:"\u0045",0x00c9:"\u0045\u0061\u0063\u0075\u0074\u0065",0xf7e9:"E\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x0114:"\u0045\u0062\u0072\u0065\u0076\u0065",0x011a:"\u0045\u0063\u0061\u0072\u006f\u006e",0x1e1c:"\u0045\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065",0x0535:"E\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24ba:"\u0045c\u0069\u0072\u0063\u006c\u0065",0x00ca:"E\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ebe:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1e18:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1ec6:"\u0045\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ec0:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ec2:"E\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0xf7ea:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x1ec4:"\u0045\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x0404:"\u0045c\u0079\u0072\u0069\u006c\u006c\u0069c",0x0204:"\u0045d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00cb:"\u0045d\u0069\u0065\u0072\u0065\u0073\u0069s",0xf7eb:"\u0045\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x0116:"\u0045\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1eb8:"\u0045d\u006f\u0074\u0062\u0065\u006c\u006fw",0x00c8:"\u0045\u0067\u0072\u0061\u0076\u0065",0xf7e8:"E\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x0537:"\u0045\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1eba:"\u0045\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x2167:"\u0045\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e",0x0206:"\u0045\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0464:"\u0045\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x041b:"\u0045\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x216a:"E\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x0112:"\u0045m\u0061\u0063\u0072\u006f\u006e",0x1e16:"\u0045\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e14:"\u0045\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x041c:"\u0045\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xff25:"\u0045\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x04a2:"\u0045\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x014a:"\u0045\u006e\u0067",0x04a4:"\u0045\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04c7:"\u0045\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0118:"\u0045o\u0067\u006f\u006e\u0065\u006b",0x0190:"\u0045\u006f\u0070e\u006e",0x0395:"\u0045p\u0073\u0069\u006c\u006f\u006e",0x0388:"\u0045\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x2263:"\u0045\u0071\u0075i\u0076",0x018e:"\u0045r\u0065\u0076\u0065\u0072\u0073\u0065d",0x042d:"\u0045\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x04aa:"\u0045\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x01a9:"\u0045\u0073\u0068",0xf765:"\u0045\u0073\u006d\u0061\u006c\u006c",0x0397:"\u0045\u0074\u0061",0x0538:"\u0045\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0389:"\u0045\u0074\u0061\u0074\u006f\u006e\u006f\u0073",0x00d0:"\u0045\u0074\u0068",0xf7f0:"\u0045\u0074\u0068\u0073\u006d\u0061\u006c\u006c",0x1ebc:"\u0045\u0074\u0069\u006c\u0064\u0065",0x1e1a:"E\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x2107:"\u0045\u0075\u006c\u0065\u0072\u0063\u006f\u006e\u0073\u0074",0x20ac:"\u0045\u0075\u0072\u006f",0x01b7:"\u0045\u007a\u0068",0x01ee:"\u0045\u007a\u0068\u0063\u0061\u0072\u006f\u006e",0x01b8:"E\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x0046:"\u0046",0x24bb:"\u0046c\u0069\u0072\u0063\u006c\u0065",0x1e1e:"\u0046\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0556:"F\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03e4:"\u0046e\u0069\u0063\u006f\u0070\u0074\u0069c",0x0191:"\u0046\u0068\u006fo\u006b",0x2132:"\u0046\u0069\u006e\u0076",0x2164:"\u0046i\u0076\u0065\u0072\u006f\u006d\u0061n",0xff26:"\u0046\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2163:"\u0046o\u0075\u0072\u0072\u006f\u006d\u0061n",0xf766:"\u0046\u0073\u006d\u0061\u006c\u006c",0x0047:"\u0047",0x3387:"\u0047\u0042\u0073\u0071\u0075\u0061\u0072\u0065",0x01f4:"\u0047\u0061\u0063\u0075\u0074\u0065",0x0393:"\u0047\u0061\u006dm\u0061",0x0194:"\u0047\u0061\u006dm\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e",0x03ea:"\u0047\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x011e:"\u0047\u0062\u0072\u0065\u0076\u0065",0x01e6:"\u0047\u0063\u0061\u0072\u006f\u006e",0x24bc:"\u0047c\u0069\u0072\u0063\u006c\u0065",0x011c:"G\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0122:"\u0047\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x0120:"\u0047\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0413:"\u0047\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0542:"\u0047\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0494:"G\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0492:"\u0047\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0490:"\u0047\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0193:"\u0047\u0068\u006fo\u006b",0x0533:"G\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1e20:"\u0047m\u0061\u0063\u0072\u006f\u006e",0x2141:"\u0047\u006d\u0069\u0072",0xff27:"\u0047\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf6ce:"\u0047\u0072\u0061v\u0065",0xf760:"\u0047\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0xf767:"\u0047\u0073\u006d\u0061\u006c\u006c",0x022b:"\u0047\u0073\u006d\u0061\u006c\u006c\u0063\u0061\u0070\u0068\u006f\u006f\u006b",0x029b:"\u0047\u0073\u006d\u0061\u006c\u006c\u0068\u006f\u006f\u006b",0x01e4:"\u0047s\u0074\u0072\u006f\u006b\u0065",0x2aa2:"\u0047\u0074",0x0048:"\u0048",0x25a1:"\u0048\u0032\u0032\u0030\u0037\u0033",0x33cb:"\u0048\u0050\u0073\u0071\u0075\u0061\u0072\u0065",0x04a8:"\u0048\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04b2:"\u0048\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0126:"\u0048\u0062\u0061\u0072",0x1e2a:"H\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077",0x1e28:"\u0048\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24bd:"\u0048c\u0069\u0072\u0063\u006c\u0065",0x0124:"H\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e26:"\u0048d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e22:"\u0048\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e24:"\u0048d\u006f\u0074\u0062\u0065\u006c\u006fw",0x26a5:"\u0048\u0065\u0072\u006d\u0061\u0070\u0068\u0072\u006f\u0064\u0069\u0074\u0065",0xff28:"\u0048\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0540:"\u0048\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03e8:"\u0048\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0xf768:"\u0048\u0073\u006d\u0061\u006c\u006c",0x022c:"\u0048s\u006d\u0061\u006c\u006c\u0063\u0061p",0xf6cf:"\u0048\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0xf6f8:"\u0048\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074s\u006d\u0061\u006c\u006c",0x3390:"\u0048\u007a\u0073\u0071\u0075\u0061\u0072\u0065",0x0049:"\u0049",0x0132:"\u0049\u004a",0x00cd:"\u0049\u0061\u0063\u0075\u0074\u0065",0xf7ed:"I\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x012c:"\u0049\u0062\u0072\u0065\u0076\u0065",0x01cf:"\u0049\u0063\u0061\u0072\u006f\u006e",0x24be:"\u0049c\u0069\u0072\u0063\u006c\u0065",0x00ce:"I\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0xf7ee:"\u0049\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x03fc:"\u0049c\u0079\u0072\u0069\u006c\u0031",0x0208:"\u0049d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00cf:"\u0049d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e2e:"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x04e4:"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0xf7ef:"\u0049\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x0130:"\u0049\u0064\u006f\u0074",0x1eca:"\u0049d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04d6:"\u0049e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0415:"\u0049\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03f8:"\u0049\u0065\u0068\u006f\u006f\u006b",0x03fa:"\u0049\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b",0x2111:"\u0049\u0066\u0072\u0061\u006b\u0074\u0075\u0072",0x00cc:"\u0049\u0067\u0072\u0061\u0076\u0065",0xf7ec:"I\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x1ec8:"\u0049\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0418:"\u0049\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x020a:"\u0049\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x012a:"\u0049m\u0061\u0063\u0072\u006f\u006e",0x04e2:"\u0049m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xff29:"\u0049\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x053b:"I\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0401:"\u0049\u006f\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x012e:"\u0049o\u0067\u006f\u006e\u0065\u006b",0x0399:"\u0049\u006f\u0074\u0061",0x0196:"I\u006f\u0074\u0061\u0061\u0066\u0072\u0069\u0063\u0061\u006e",0x02f3:"\u0049\u006f\u0074\u0061\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",0x03aa:"\u0049\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x038a:"\u0049o\u0074\u0061\u0074\u006f\u006e\u006fs",0xf769:"\u0049\u0073\u006d\u0061\u006c\u006c",0x0197:"\u0049s\u0074\u0072\u006f\u006b\u0065",0x0128:"\u0049\u0074\u0069\u006c\u0064\u0065",0x1e2c:"I\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x0476:"\u0049\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x004a:"\u004a",0x0541:"\u004a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24bf:"\u004ac\u0069\u0072\u0063\u006c\u0065",0x0134:"J\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x054b:"\u004a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff2a:"\u004a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a1d:"\u004a\u006f\u0069\u006e",0xf76a:"\u004a\u0073\u006d\u0061\u006c\u006c",0x004b:"\u004b",0x3385:"\u004b\u0042\u0073\u0071\u0075\u0061\u0072\u0065",0x33cd:"\u004b\u004b\u0073\u0071\u0075\u0061\u0072\u0065",0x04a0:"\u004b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1e30:"\u004b\u0061\u0063\u0075\u0074\u0065",0x049a:"\u004b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03ff:"\u004b\u0061\u0068\u006f\u006f\u006b",0x04c3:"\u004b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x039a:"\u004b\u0061\u0070p\u0061",0x049e:"\u004b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x049c:"\u004ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x01e8:"\u004b\u0063\u0061\u0072\u006f\u006e",0x0136:"\u004b\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24c0:"\u004bc\u0069\u0072\u0063\u006c\u0065",0x1e32:"\u004bd\u006f\u0074\u0062\u0065\u006c\u006fw",0x0554:"K\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x053f:"K\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0425:"K\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03e6:"\u004b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x0198:"\u004b\u0068\u006fo\u006b",0x040c:"K\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e34:"\u004b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff2b:"\u004b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0480:"\u004b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03de:"\u004b\u006f\u0070\u0070\u0061\u0067\u0072\u0065\u0065\u006b",0x046e:"K\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf76b:"\u004b\u0073\u006d\u0061\u006c\u006c",0x004c:"\u004c",0x01c7:"\u004c\u004a",0xf6bf:"\u004c\u004c",0x2b45:"\u004c\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x0139:"\u004c\u0061\u0063\u0075\u0074\u0065",0x039b:"\u004c\u0061\u006d\u0062\u0064\u0061",0x27ec:"\u004cb\u0072\u0062\u0072\u0061\u006b",0x013d:"\u004c\u0063\u0061\u0072\u006f\u006e",0xf812:"\u004cc\u0061\u0072\u006f\u006e\u0031",0x013b:"\u004c\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81a:"\u004cc\u0065\u0064\u0069\u006c\u006c\u00611",0x24c1:"\u004cc\u0069\u0072\u0063\u006c\u0065",0x1e3c:"\u004c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x013f:"\u004c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e36:"\u004cd\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e38:"\u004cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x21b2:"\u004c\u0064\u0073\u0068",0x053c:"\u004c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01c8:"\u004c\u006a",0x0409:"L\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e3a:"\u004c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff2c:"\u004c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x27f8:"\u004c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x27fa:"\u004co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x27fd:"\u004c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x27fe:"\u004c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f",0x27f9:"\u004c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",0x2995:"\u004cp\u0061\u0072\u0065\u006e\u0067\u0074r",0x0141:"\u004c\u0073\u006c\u0061\u0073\u0068",0xf6f9:"L\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c",0xf76c:"\u004c\u0073\u006d\u0061\u006c\u006c",0x022f:"\u004cs\u006d\u0061\u006c\u006c\u0063\u0061p",0x2aa1:"\u004c\u0074",0x29da:"\u004c\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x004d:"\u004d",0x3386:"\u004d\u0042\u0073\u0071\u0075\u0061\u0072\u0065",0xf6d0:"\u004d\u0061\u0063\u0072\u006f\u006e",0xf7af:"M\u0061\u0063\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x1e3e:"\u004d\u0061\u0063\u0075\u0074\u0065",0x2906:"\u004d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x2907:"\u004d\u0061\u0070\u0073\u0074\u006f",0x24c2:"\u004dc\u0069\u0072\u0063\u006c\u0065",0x1e40:"\u004d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e42:"\u004dd\u006f\u0074\u0062\u0065\u006c\u006fw",0x0544:"M\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff2d:"\u004d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf76d:"\u004d\u0073\u006d\u0061\u006c\u006c",0x019c:"\u004dt\u0075\u0072\u006e\u0065\u0064",0x039c:"\u004d\u0075",0x004e:"\u004e",0x01ca:"\u004e\u004a",0x0143:"\u004e\u0061\u0063\u0075\u0074\u0065",0x0147:"\u004e\u0063\u0061\u0072\u006f\u006e",0xf81c:"\u004ec\u0065\u0064\u0069\u006c\u006c\u00611",0x24c3:"\u004ec\u0069\u0072\u0063\u006c\u0065",0x1e4a:"\u004e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0145:"\u004e\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e44:"\u004e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e46:"\u004ed\u006f\u0074\u0062\u0065\u006c\u006fw",0x21d7:"\u004ee\u0061\u0072\u0072\u006f\u0077",0x019d:"\u004eh\u006f\u006f\u006b\u006c\u0065\u0066t",0x2168:"\u004ei\u006e\u0065\u0072\u006f\u006d\u0061n",0x01cb:"\u004e\u006a",0x1e48:"\u004e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff2e:"\u004e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2aec:"\u004e\u006f\u0074",0x0546:"N\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xf76e:"\u004e\u0073\u006d\u0061\u006c\u006c",0x00d1:"\u004e\u0074\u0069\u006c\u0064\u0065",0xf7f1:"N\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x039d:"\u004e\u0075",0x21d6:"\u004ew\u0061\u0072\u0072\u006f\u0077",0x004f:"\u004f",0x0152:"\u004f\u0045",0xf6fa:"\u004fE\u0073\u006d\u0061\u006c\u006c",0x00d3:"\u004f\u0061\u0063\u0075\u0074\u0065",0xf7f3:"O\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x04e8:"\u004fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04ea:"\u004f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x014e:"\u004f\u0062\u0072\u0065\u0076\u0065",0x01d1:"\u004f\u0063\u0061\u0072\u006f\u006e",0x019f:"\u004f\u0063\u0065\u006e\u0074\u0065\u0072\u0065\u0064t\u0069\u006c\u0064\u0065",0x24c4:"\u004fc\u0069\u0072\u0063\u006c\u0065",0x00d4:"O\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ed0:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1ed8:"\u004f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ed2:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ed4:"O\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0xf7f4:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x1ed6:"\u004f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x041e:"\u004fc\u0079\u0072\u0069\u006c\u006c\u0069c",0x0150:"\u004fd\u0062\u006c\u0061\u0063\u0075\u0074e",0x020c:"\u004fd\u0062\u006c\u0067\u0072\u0061\u0076e",0x00d6:"\u004fd\u0069\u0065\u0072\u0065\u0073\u0069s",0x04e6:"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0xf7f6:"\u004f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1ecc:"\u004fd\u006f\u0074\u0062\u0065\u006c\u006fw",0xf6fb:"O\u0067\u006f\u006e\u0065\u006b\u0073\u006d\u0061\u006c\u006c",0x00d2:"\u004f\u0067\u0072\u0061\u0076\u0065",0xf7f2:"O\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x0555:"\u004f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1ece:"\u004f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01a0:"\u004f\u0068\u006fr\u006e",0x1eda:"\u004f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ee2:"\u004f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1edc:"\u004f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1ede:"\u004f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1ee0:"\u004f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x01a2:"\u004f\u0069",0x020e:"\u004f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x014c:"\u004fm\u0061\u0063\u0072\u006f\u006e",0x1e52:"\u004f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e50:"\u004f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x2126:"\u004f\u006d\u0065g\u0061",0x0460:"\u004f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03a9:"\u004f\u006d\u0065\u0067\u0061\u0067\u0072\u0065\u0065\u006b",0x2127:"\u004f\u006d\u0065\u0067\u0061\u0069\u006e\u0076",0x047a:"\u004fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x047c:"\u004fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x038f:"\u004f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073",0x039f:"\u004fm\u0069\u0063\u0072\u006f\u006e",0x038c:"\u004f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0xff2f:"\u004f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2160:"\u004f\u006e\u0065\u0072\u006f\u006d\u0061\u006e",0x01ea:"\u004fo\u0067\u006f\u006e\u0065\u006b",0x01ec:"\u004f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e",0x0186:"\u004f\u006f\u0070e\u006e",0x00d8:"\u004f\u0073\u006c\u0061\u0073\u0068",0x01fe:"O\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065",0xf7f8:"O\u0073\u006c\u0061\u0073\u0068\u0073\u006d\u0061\u006c\u006c",0xf76f:"\u004f\u0073\u006d\u0061\u006c\u006c",0x047e:"\u004f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x00d5:"\u004f\u0074\u0069\u006c\u0064\u0065",0x1e4c:"O\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e4e:"\u004f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073",0xf7f5:"O\u0074\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x2a37:"\u004f\u0074\u0069\u006d\u0065\u0073",0x0050:"\u0050",0x1e54:"\u0050\u0061\u0063\u0075\u0074\u0065",0x24c5:"\u0050c\u0069\u0072\u0063\u006c\u0065",0x1e56:"\u0050\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x054a:"P\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04a6:"P\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063",0x03a6:"\u0050\u0068\u0069",0x01a4:"\u0050\u0068\u006fo\u006b",0x03a0:"\u0050\u0069",0x0553:"\u0050\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x210e:"P\u006c\u0061\u006e\u0063\u006b\u0063\u006f\u006e\u0073\u0074",0xff30:"\u0050\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2abb:"\u0050\u0072\u0065\u0063",0x214a:"\u0050\u0072\u006fp\u0065\u0072\u0074\u0079\u004c\u0069\u006e\u0065",0x03a8:"\u0050\u0073\u0069",0x0470:"P\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf770:"\u0050\u0073\u006d\u0061\u006c\u006c",0x0051:"\u0051",0x220e:"\u0051\u0045\u0044",0x24c6:"\u0051c\u0069\u0072\u0063\u006c\u0065",0xff31:"\u0051\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf771:"\u0051\u0073\u006d\u0061\u006c\u006c",0x2047:"\u0051\u0075\u0065\u0073\u0074\u0069\u006f\u006e",0x0052:"\u0052",0x2b46:"R\u0052\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x054c:"\u0052\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0154:"\u0052\u0061\u0063\u0075\u0074\u0065",0x27ed:"\u0052b\u0072\u0062\u0072\u0061\u006b",0x0158:"\u0052\u0063\u0061\u0072\u006f\u006e",0x0156:"\u0052\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81e:"\u0052c\u0065\u0064\u0069\u006c\u006c\u00611",0x24c7:"\u0052c\u0069\u0072\u0063\u006c\u0065",0xf831:"R\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0210:"\u0052d\u0062\u006c\u0067\u0072\u0061\u0076e",0x1e58:"\u0052\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e5a:"\u0052d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e5c:"\u0052d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x21b3:"\u0052\u0064\u0073\u0068",0x0550:"R\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x211c:"\u0052\u0066\u0072\u0061\u006b\u0074\u0075\u0072",0x03a1:"\u0052\u0068\u006f",0xf6fc:"\u0052i\u006e\u0067\u0073\u006d\u0061\u006cl",0x0212:"\u0052\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x1e5e:"\u0052\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff32:"\u0052\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2996:"\u0052\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073",0xf772:"\u0052\u0073\u006d\u0061\u006c\u006c",0x0281:"\u0052\u0073\u006d\u0061\u006c\u006c\u0069\u006e\u0076e\u0072\u0074\u0065\u0064",0x02b6:"\u0052\u0073\u006d\u0061ll\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069o\u0072",0x023f:"\u0052\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072",0x29db:"\u0052\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x0053:"\u0053",0x024f:"\u0053\u0044\u0031\u0035\u0030\u0031\u0030\u0030",0x250c:"\u0053\u0046\u0030\u0031\u0030\u0030\u0030\u0030",0x2514:"\u0053\u0046\u0030\u0032\u0030\u0030\u0030\u0030",0x2510:"\u0053\u0046\u0030\u0033\u0030\u0030\u0030\u0030",0x2518:"\u0053\u0046\u0030\u0034\u0030\u0030\u0030\u0030",0x253c:"\u0053\u0046\u0030\u0035\u0030\u0030\u0030\u0030",0x252c:"\u0053\u0046\u0030\u0036\u0030\u0030\u0030\u0030",0x2534:"\u0053\u0046\u0030\u0037\u0030\u0030\u0030\u0030",0x251c:"\u0053\u0046\u0030\u0038\u0030\u0030\u0030\u0030",0x2524:"\u0053\u0046\u0030\u0039\u0030\u0030\u0030\u0030",0x2500:"\u0053\u0046\u0031\u0030\u0030\u0030\u0030\u0030",0x2502:"\u0053\u0046\u0031\u0031\u0030\u0030\u0030\u0030",0x2561:"\u0053\u0046\u0031\u0039\u0030\u0030\u0030\u0030",0x2562:"\u0053\u0046\u0032\u0030\u0030\u0030\u0030\u0030",0x2556:"\u0053\u0046\u0032\u0031\u0030\u0030\u0030\u0030",0x2555:"\u0053\u0046\u0032\u0032\u0030\u0030\u0030\u0030",0x2563:"\u0053\u0046\u0032\u0033\u0030\u0030\u0030\u0030",0x2551:"\u0053\u0046\u0032\u0034\u0030\u0030\u0030\u0030",0x2557:"\u0053\u0046\u0032\u0035\u0030\u0030\u0030\u0030",0x255d:"\u0053\u0046\u0032\u0036\u0030\u0030\u0030\u0030",0x255c:"\u0053\u0046\u0032\u0037\u0030\u0030\u0030\u0030",0x255b:"\u0053\u0046\u0032\u0038\u0030\u0030\u0030\u0030",0x255e:"\u0053\u0046\u0033\u0036\u0030\u0030\u0030\u0030",0x255f:"\u0053\u0046\u0033\u0037\u0030\u0030\u0030\u0030",0x255a:"\u0053\u0046\u0033\u0038\u0030\u0030\u0030\u0030",0x2554:"\u0053\u0046\u0033\u0039\u0030\u0030\u0030\u0030",0x2569:"\u0053\u0046\u0034\u0030\u0030\u0030\u0030\u0030",0x2566:"\u0053\u0046\u0034\u0031\u0030\u0030\u0030\u0030",0x2560:"\u0053\u0046\u0034\u0032\u0030\u0030\u0030\u0030",0x2550:"\u0053\u0046\u0034\u0033\u0030\u0030\u0030\u0030",0x256c:"\u0053\u0046\u0034\u0034\u0030\u0030\u0030\u0030",0x2567:"\u0053\u0046\u0034\u0035\u0030\u0030\u0030\u0030",0x2568:"\u0053\u0046\u0034\u0036\u0030\u0030\u0030\u0030",0x2564:"\u0053\u0046\u0034\u0037\u0030\u0030\u0030\u0030",0x2565:"\u0053\u0046\u0034\u0038\u0030\u0030\u0030\u0030",0x2559:"\u0053\u0046\u0034\u0039\u0030\u0030\u0030\u0030",0x2558:"\u0053\u0046\u0035\u0030\u0030\u0030\u0030\u0030",0x2552:"\u0053\u0046\u0035\u0031\u0030\u0030\u0030\u0030",0x2553:"\u0053\u0046\u0035\u0032\u0030\u0030\u0030\u0030",0x256b:"\u0053\u0046\u0035\u0033\u0030\u0030\u0030\u0030",0x256a:"\u0053\u0046\u0035\u0034\u0030\u0030\u0030\u0030",0x015a:"\u0053\u0061\u0063\u0075\u0074\u0065",0x1e64:"\u0053a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x03e0:"\u0053\u0061\u006d\u0070\u0069\u0067\u0072\u0065\u0065\u006b",0x0160:"\u0053\u0063\u0061\u0072\u006f\u006e",0x1e66:"\u0053c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0xf6fd:"S\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x015e:"\u0053\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf816:"\u0053c\u0065\u0064\u0069\u006c\u006c\u00611",0x018f:"\u0053\u0063\u0068w\u0061",0x04d8:"\u0053\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04da:"S\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x24c8:"\u0053c\u0069\u0072\u0063\u006c\u0065",0x015c:"S\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0218:"\u0053\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e60:"\u0053\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e62:"\u0053d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e68:"\u0053d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074",0x21d8:"\u0053e\u0061\u0072\u0072\u006f\u0077",0x054d:"S\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2166:"\u0053\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x0547:"S\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0428:"S\u0068\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03e2:"\u0053\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x04ba:"\u0053\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03ec:"S\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x03a3:"\u0053\u0069\u0067m\u0061",0x2165:"\u0053\u0069\u0078\u0072\u006f\u006d\u0061\u006e",0xff33:"\u0053\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a4e:"\u0053\u0071\u0063a\u0070",0x2a4f:"\u0053\u0071\u0063u\u0070",0xf773:"\u0053\u0073\u006d\u0061\u006c\u006c",0x03da:"S\u0074\u0069\u0067\u006d\u0061\u0067\u0072\u0065\u0065\u006b",0x2abc:"\u0053\u0075\u0063\u0063",0x21d9:"\u0053w\u0061\u0072\u0072\u006f\u0077",0x0054:"\u0054",0x03a4:"\u0054\u0061\u0075",0x0166:"\u0054\u0062\u0061\u0072",0x0164:"\u0054\u0063\u0061\u0072\u006f\u006e",0xf814:"\u0054c\u0061\u0072\u006f\u006e\u0031",0xf818:"\u0054c\u0065\u0064\u0069\u006c\u006c\u00611",0x24c9:"\u0054c\u0069\u0072\u0063\u006c\u0065",0x1e70:"\u0054\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0162:"\u0054\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e6a:"\u0054\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e6c:"\u0054d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04ac:"\u0054\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2169:"\u0054\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x04b4:"\u0054\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0398:"\u0054\u0068\u0065t\u0061",0x01ac:"\u0054\u0068\u006fo\u006b",0x00de:"\u0054\u0068\u006fr\u006e",0xf7fe:"\u0054\u0068\u006f\u0072\u006e\u0073\u006d\u0061\u006c\u006c",0x2162:"\u0054\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e",0xf6fe:"\u0054\u0069\u006c\u0064\u0065\u0073\u006d\u0061\u006c\u006c",0x054f:"\u0054\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1e6e:"\u0054\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff34:"\u0054\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0539:"\u0054\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01bc:"\u0054\u006f\u006e\u0065\u0066\u0069\u0076\u0065",0x0184:"\u0054o\u006e\u0065\u0073\u0069\u0078",0x01a7:"\u0054o\u006e\u0065\u0074\u0077\u006f",0x01ae:"\u0054\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b",0x0426:"T\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x040b:"\u0054\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf774:"\u0054\u0073\u006d\u0061\u006c\u006c",0x216b:"T\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e",0x2161:"\u0054\u0077\u006f\u0072\u006f\u006d\u0061\u006e",0x0055:"\u0055",0x27f0:"\u0055\u0055\u0070\u0061\u0072\u0072\u006f\u0077",0x00da:"\u0055\u0061\u0063\u0075\u0074\u0065",0xf7fa:"U\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x016c:"\u0055\u0062\u0072\u0065\u0076\u0065",0x01d3:"\u0055\u0063\u0061\u0072\u006f\u006e",0xf833:"\u0055\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24ca:"\u0055c\u0069\u0072\u0063\u006c\u0065",0x00db:"U\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e76:"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0xf7fb:"\u0055\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0073\u006d\u0061\u006c\u006c",0x0423:"\u0055c\u0079\u0072\u0069\u006c\u006c\u0069c",0x0214:"\u0055d\u0062\u006c\u0067\u0072\u0061\u0076e",0x00dc:"\u0055d\u0069\u0065\u0072\u0065\u0073\u0069s",0x01d7:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x1e72:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077",0x01d9:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e",0x04f0:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01db:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065",0x01d5:"\u0055d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0xf7fc:"\u0055\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1ee4:"\u0055d\u006f\u0074\u0062\u0065\u006c\u006fw",0x00d9:"\u0055\u0067\u0072\u0061\u0076\u0065",0xf7f9:"U\u0067\u0072\u0061\u0076\u0065\u0073\u006d\u0061\u006c\u006c",0x1ee6:"\u0055\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01af:"\u0055\u0068\u006fr\u006e",0x1ee8:"\u0055\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ef0:"\u0055\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1eea:"\u0055\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1eec:"\u0055\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1eee:"\u0055\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x0170:"\u0055\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0x04f2:"U\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0216:"\u0055\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0478:"\u0055\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x016a:"\u0055m\u0061\u0063\u0072\u006f\u006e",0x04ee:"\u0055m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e7a:"\u0055m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0xff35:"\u0055\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0172:"\u0055o\u0067\u006f\u006e\u0065\u006b",0x03a5:"\u0055p\u0073\u0069\u006c\u006f\u006e",0x03d2:"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0031",0x03d3:"U\u0070\u0073\u0069\u006c\u006f\u006ea\u0063\u0075\u0074\u0065\u0068\u006f\u006f\u006b\u0073y\u006d\u0062\u006fl\u0067r\u0065\u0065\u006b",0x01b1:"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0061\u0066r\u0069\u0063\u0061\u006e",0x02f4:"\u0055\u0070s\u0069\u006c\u006fn\u0064\u0069\u0061\u0065\u0072\u0065\u0073\u0069\u0073",0x03ab:"\u0055p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x03d4:"\u0055\u0070\u0073\u0069\u006c\u006f\u006e\u0064\u0069\u0065r\u0065\u0073\u0069\u0073\u0068\u006f\u006fk\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",0x038e:"\u0055\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x016e:"\u0055\u0072\u0069n\u0067",0x040e:"\u0055\u0073\u0068\u006f\u0072\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0xf775:"\u0055\u0073\u006d\u0061\u006c\u006c",0x04ae:"\u0055\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x04b0:"\u0055\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0168:"\u0055\u0074\u0069\u006c\u0064\u0065",0x1e78:"U\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e74:"U\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x290a:"\u0055\u0075\u0070\u0061\u0072\u0072\u006f\u0077",0x0056:"\u0056",0x22ab:"\u0056\u0044\u0061s\u0068",0x2aeb:"\u0056\u0062\u0061\u0072",0x24cb:"\u0056c\u0069\u0072\u0063\u006c\u0065",0x1e7e:"\u0056d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a54:"\u0056\u0065\u0065",0x054e:"V\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01b2:"\u0056\u0068\u006fo\u006b",0xff36:"\u0056\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0548:"\u0056\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xf776:"\u0056\u0073\u006d\u0061\u006c\u006c",0x1e7c:"\u0056\u0074\u0069\u006c\u0064\u0065",0x2980:"\u0056\u0076\u0065r\u0074",0x0057:"\u0057",0x1e82:"\u0057\u0061\u0063\u0075\u0074\u0065",0x24cc:"\u0057c\u0069\u0072\u0063\u006c\u0065",0x0174:"W\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e84:"\u0057d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e86:"\u0057\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e88:"\u0057d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a53:"\u0057\u0065\u0064g\u0065",0x1e80:"\u0057\u0067\u0072\u0061\u0076\u0065",0xff37:"\u0057\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf777:"\u0057\u0073\u006d\u0061\u006c\u006c",0x0058:"\u0058",0x24cd:"\u0058c\u0069\u0072\u0063\u006c\u0065",0x1e8c:"\u0058d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e8a:"\u0058\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x053d:"X\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x039e:"\u0058\u0069",0xff38:"\u0058\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf778:"\u0058\u0073\u006d\u0061\u006c\u006c",0x0059:"\u0059",0x00dd:"\u0059\u0061\u0063\u0075\u0074\u0065",0xf7fd:"Y\u0061\u0063\u0075\u0074\u0065\u0073\u006d\u0061\u006c\u006c",0x24ce:"\u0059c\u0069\u0072\u0063\u006c\u0065",0x0176:"Y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0178:"\u0059d\u0069\u0065\u0072\u0065\u0073\u0069s",0xf7ff:"\u0059\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073s\u006d\u0061\u006c\u006c",0x1e8e:"\u0059\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1ef4:"\u0059d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04f8:"Y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063",0x1ef2:"\u0059\u0067\u0072\u0061\u0076\u0065",0x01b3:"\u0059\u0068\u006fo\u006b",0x1ef6:"\u0059\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0545:"\u0059\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0407:"\u0059\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0552:"\u0059\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff39:"\u0059\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf779:"\u0059\u0073\u006d\u0061\u006c\u006c",0x021f:"\u0059s\u006d\u0061\u006c\u006c\u0063\u0061p",0x1ef8:"\u0059\u0074\u0069\u006c\u0064\u0065",0x2144:"\u0059\u0075\u0070",0x046a:"\u0059\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x046c:"\u0059\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063",0x0466:"\u0059\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0468:"\u0059u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x005a:"\u005a",0x0536:"\u005a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0179:"\u005a\u0061\u0063\u0075\u0074\u0065",0x017d:"\u005a\u0063\u0061\u0072\u006f\u006e",0xf6ff:"Z\u0063\u0061\u0072\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x24cf:"\u005ac\u0069\u0072\u0063\u006c\u0065",0x1e90:"Z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x017b:"\u005a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e92:"\u005ad\u006f\u0074\u0062\u0065\u006c\u006fw",0x0498:"\u005a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04de:"\u005ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x0396:"\u005a\u0065\u0074\u0061",0x053a:"Z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03fd:"\u005a\u0068\u0065\u0062\u0072\u0065\u0076\u0065",0x04c1:"\u005a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0496:"Z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04dc:"\u005a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e94:"\u005a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff3a:"\u005a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf77a:"\u005a\u0073\u006d\u0061\u006c\u006c",0x01b5:"\u005as\u0074\u0072\u006f\u006b\u0065",0x0061:"\u0061",0x2701:"\u0061\u0031",0x2702:"\u0061\u0032",0x2704:"\u0061\u0033",0x260e:"\u0061\u0034",0x2706:"\u0061\u0035",0x271d:"\u0061\u0036",0x271e:"\u0061\u0037",0x271f:"\u0061\u0038",0x2720:"\u0061\u0039",0x2721:"\u0061\u0031\u0030",0x261b:"\u0061\u0031\u0031",0x261e:"\u0061\u0031\u0032",0x270c:"\u0061\u0031\u0033",0x270d:"\u0061\u0031\u0034",0x270e:"\u0061\u0031\u0035",0x270f:"\u0061\u0031\u0036",0x2711:"\u0061\u0031\u0037",0x2712:"\u0061\u0031\u0038",0x2713:"\u0061\u0031\u0039",0x2714:"\u0061\u0032\u0030",0x2715:"\u0061\u0032\u0031",0x2716:"\u0061\u0032\u0032",0x2717:"\u0061\u0032\u0033",0x2718:"\u0061\u0032\u0034",0x2719:"\u0061\u0032\u0035",0x271a:"\u0061\u0032\u0036",0x271b:"\u0061\u0032\u0037",0x271c:"\u0061\u0032\u0038",0x2722:"\u0061\u0032\u0039",0x2723:"\u0061\u0033\u0030",0x2724:"\u0061\u0033\u0031",0x2725:"\u0061\u0033\u0032",0x2726:"\u0061\u0033\u0033",0x2727:"\u0061\u0033\u0034",0x2605:"\u0061\u0033\u0035",0x2729:"\u0061\u0033\u0036",0x272a:"\u0061\u0033\u0037",0x272b:"\u0061\u0033\u0038",0x272c:"\u0061\u0033\u0039",0x272d:"\u0061\u0034\u0030",0x272e:"\u0061\u0034\u0031",0x272f:"\u0061\u0034\u0032",0x2730:"\u0061\u0034\u0033",0x2731:"\u0061\u0034\u0034",0x2732:"\u0061\u0034\u0035",0x2733:"\u0061\u0034\u0036",0x2734:"\u0061\u0034\u0037",0x2735:"\u0061\u0034\u0038",0x2736:"\u0061\u0034\u0039",0x2737:"\u0061\u0035\u0030",0x2738:"\u0061\u0035\u0031",0x2739:"\u0061\u0035\u0032",0x273a:"\u0061\u0035\u0033",0x273b:"\u0061\u0035\u0034",0x273c:"\u0061\u0035\u0035",0x273d:"\u0061\u0035\u0036",0x273e:"\u0061\u0035\u0037",0x273f:"\u0061\u0035\u0038",0x2740:"\u0061\u0035\u0039",0x2741:"\u0061\u0036\u0030",0x2742:"\u0061\u0036\u0031",0x2743:"\u0061\u0036\u0032",0x2744:"\u0061\u0036\u0033",0x2745:"\u0061\u0036\u0034",0x2746:"\u0061\u0036\u0035",0x2747:"\u0061\u0036\u0036",0x2748:"\u0061\u0036\u0037",0x2749:"\u0061\u0036\u0038",0x274a:"\u0061\u0036\u0039",0x274b:"\u0061\u0037\u0030",0x25cf:"\u0061\u0037\u0031",0x274d:"\u0061\u0037\u0032",0x25a0:"\u0061\u0037\u0033",0x274f:"\u0061\u0037\u0034",0x2751:"\u0061\u0037\u0035",0x25b2:"\u0061\u0037\u0036",0x25bc:"\u0061\u0037\u0037",0x25c6:"\u0061\u0037\u0038",0x2756:"\u0061\u0037\u0039",0x25d7:"\u0061\u0038\u0031",0x2758:"\u0061\u0038\u0032",0x2759:"\u0061\u0038\u0033",0x275a:"\u0061\u0038\u0034",0xf8de:"\u0061\u0038\u0035",0xf8e0:"\u0061\u0038\u0036",0xf8e1:"\u0061\u0038\u0037",0xf8e2:"\u0061\u0038\u0038",0xf8d7:"\u0061\u0038\u0039",0xf8d8:"\u0061\u0039\u0030",0xf8db:"\u0061\u0039\u0031",0xf8dc:"\u0061\u0039\u0032",0xf8d9:"\u0061\u0039\u0033",0xf8da:"\u0061\u0039\u0034",0xf8e3:"\u0061\u0039\u0035",0xf8e4:"\u0061\u0039\u0036",0x275b:"\u0061\u0039\u0037",0x275c:"\u0061\u0039\u0038",0x275d:"\u0061\u0039\u0039",0x275e:"\u0061\u0031\u0030\u0030",0x2761:"\u0061\u0031\u0030\u0031",0x2762:"\u0061\u0031\u0030\u0032",0x2763:"\u0061\u0031\u0030\u0033",0x2764:"\u0061\u0031\u0030\u0034",0x2710:"\u0061\u0031\u0030\u0035",0x2765:"\u0061\u0031\u0030\u0036",0x2766:"\u0061\u0031\u0030\u0037",0x2767:"\u0061\u0031\u0030\u0038",0x2709:"\u0061\u0031\u0031\u0037",0x2708:"\u0061\u0031\u0031\u0038",0x2707:"\u0061\u0031\u0031\u0039",0x2460:"\u0061\u0031\u0032\u0030",0x2461:"\u0061\u0031\u0032\u0031",0x2462:"\u0061\u0031\u0032\u0032",0x2463:"\u0061\u0031\u0032\u0033",0x2464:"\u0061\u0031\u0032\u0034",0x2465:"\u0061\u0031\u0032\u0035",0x2466:"\u0061\u0031\u0032\u0036",0x2467:"\u0061\u0031\u0032\u0037",0x2468:"\u0061\u0031\u0032\u0038",0x2469:"\u0061\u0031\u0032\u0039",0x2776:"\u0061\u0031\u0033\u0030",0x2777:"\u0061\u0031\u0033\u0031",0x2778:"\u0061\u0031\u0033\u0032",0x2779:"\u0061\u0031\u0033\u0033",0x277a:"\u0061\u0031\u0033\u0034",0x277b:"\u0061\u0031\u0033\u0035",0x277c:"\u0061\u0031\u0033\u0036",0x277d:"\u0061\u0031\u0033\u0037",0x277e:"\u0061\u0031\u0033\u0038",0x277f:"\u0061\u0031\u0033\u0039",0x2780:"\u0061\u0031\u0034\u0030",0x2781:"\u0061\u0031\u0034\u0031",0x2782:"\u0061\u0031\u0034\u0032",0x2783:"\u0061\u0031\u0034\u0033",0x2784:"\u0061\u0031\u0034\u0034",0x2785:"\u0061\u0031\u0034\u0035",0x2786:"\u0061\u0031\u0034\u0036",0x2787:"\u0061\u0031\u0034\u0037",0x2788:"\u0061\u0031\u0034\u0038",0x2789:"\u0061\u0031\u0034\u0039",0x278a:"\u0061\u0031\u0035\u0030",0x278b:"\u0061\u0031\u0035\u0031",0x278c:"\u0061\u0031\u0035\u0032",0x278d:"\u0061\u0031\u0035\u0033",0x278e:"\u0061\u0031\u0035\u0034",0x278f:"\u0061\u0031\u0035\u0035",0x2790:"\u0061\u0031\u0035\u0036",0x2791:"\u0061\u0031\u0035\u0037",0x2792:"\u0061\u0031\u0035\u0038",0x2793:"\u0061\u0031\u0035\u0039",0x2794:"\u0061\u0031\u0036\u0030",0x27a3:"\u0061\u0031\u0036\u0032",0x2195:"\u0061\u0031\u0036\u0034",0x2799:"\u0061\u0031\u0036\u0035",0x279b:"\u0061\u0031\u0036\u0036",0x279c:"\u0061\u0031\u0036\u0037",0x279d:"\u0061\u0031\u0036\u0038",0x279e:"\u0061\u0031\u0036\u0039",0x279f:"\u0061\u0031\u0037\u0030",0x27a0:"\u0061\u0031\u0037\u0031",0x27a1:"\u0061\u0031\u0037\u0032",0x27a2:"\u0061\u0031\u0037\u0033",0x27a4:"\u0061\u0031\u0037\u0034",0x27a5:"\u0061\u0031\u0037\u0035",0x27a6:"\u0061\u0031\u0037\u0036",0x27a7:"\u0061\u0031\u0037\u0037",0x27a8:"\u0061\u0031\u0037\u0038",0x27a9:"\u0061\u0031\u0037\u0039",0x27ab:"\u0061\u0031\u0038\u0030",0x27ad:"\u0061\u0031\u0038\u0031",0x27af:"\u0061\u0031\u0038\u0032",0x27b2:"\u0061\u0031\u0038\u0033",0x27b3:"\u0061\u0031\u0038\u0034",0x27b5:"\u0061\u0031\u0038\u0035",0x27b8:"\u0061\u0031\u0038\u0036",0x27ba:"\u0061\u0031\u0038\u0037",0x27bb:"\u0061\u0031\u0038\u0038",0x27bc:"\u0061\u0031\u0038\u0039",0x27bd:"\u0061\u0031\u0039\u0030",0x27be:"\u0061\u0031\u0039\u0031",0x279a:"\u0061\u0031\u0039\u0032",0x27aa:"\u0061\u0031\u0039\u0033",0x27b6:"\u0061\u0031\u0039\u0034",0x27b9:"\u0061\u0031\u0039\u0035",0x2798:"\u0061\u0031\u0039\u0036",0x27b4:"\u0061\u0031\u0039\u0037",0x27b7:"\u0061\u0031\u0039\u0038",0x27ac:"\u0061\u0031\u0039\u0039",0x27ae:"\u0061\u0032\u0030\u0030",0x27b1:"\u0061\u0032\u0030\u0031",0x2703:"\u0061\u0032\u0030\u0032",0x2750:"\u0061\u0032\u0030\u0033",0x2752:"\u0061\u0032\u0030\u0034",0xf8dd:"\u0061\u0032\u0030\u0035",0xf8df:"\u0061\u0032\u0030\u0036",0x0986:"\u0061a\u0062\u0065\u006e\u0067\u0061\u006ci",0x00e1:"\u0061\u0061\u0063\u0075\u0074\u0065",0x0906:"\u0061\u0061\u0064\u0065\u0076\u0061",0x0a86:"\u0061\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a06:"\u0061\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a3e:"\u0061a\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3303:"\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x09be:"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x093e:"\u0061a\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0abe:"\u0061\u0061\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x055f:"\u0061b\u0062\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006f\u006e\u006da\u0072\u006b\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0970:"a\u0062b\u0072\u0065\u0076\u0069\u0061\u0074\u0069\u006fn\u0073\u0069\u0067\u006ede\u0076\u0061",0x0985:"\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x311a:"\u0061b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0103:"\u0061\u0062\u0072\u0065\u0076\u0065",0x1eaf:"a\u0062\u0072\u0065\u0076\u0065\u0061\u0063\u0075\u0074\u0065",0x04d1:"\u0061\u0062\u0072\u0065\u0076\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1eb7:"\u0061\u0062\u0072\u0065\u0076\u0065\u0064\u006f\u0074b\u0065\u006c\u006f\u0077",0x1eb1:"a\u0062\u0072\u0065\u0076\u0065\u0067\u0072\u0061\u0076\u0065",0x1eb3:"\u0061b\u0072e\u0076\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x1eb5:"a\u0062\u0072\u0065\u0076\u0065\u0074\u0069\u006c\u0064\u0065",0x01ce:"\u0061\u0063\u0061\u0072\u006f\u006e",0x2100:"\u0061c\u0063\u006f\u0075\u006e\u0074\u006ff",0x23e6:"\u0061c\u0063\u0075\u0072\u0072\u0065\u006et",0x267e:"\u0061\u0063\u0069\u0064\u0066\u0072\u0065\u0065",0x24d0:"\u0061c\u0069\u0072\u0063\u006c\u0065",0x00e2:"a\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ea5:"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1ead:"\u0061\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ea7:"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ea9:"a\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0x1eab:"\u0061\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x00b4:"\u0061\u0063\u0075t\u0065",0x0317:"\u0061\u0063\u0075\u0074\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0301:"\u0061c\u0075\u0074\u0065\u0063\u006f\u006db",0x0954:"\u0061c\u0075\u0074\u0065\u0064\u0065\u0076a",0x02cf:"a\u0063\u0075\u0074\u0065\u006c\u006f\u0077\u006d\u006f\u0064",0x0274:"\u0061c\u0075\u0074\u0065\u006e\u006f\u0073p",0x0341:"\u0061\u0063\u0075t\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062",0x2940:"\u0061\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077",0x2939:"\u0061c\u0077l\u0065\u0066\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x21ba:"\u0061c\u0077o\u0070\u0065\u006e\u0063\u0069r\u0063\u006ce\u0061\u0072\u0072\u006f\u0077",0x293a:"\u0061c\u0077o\u0076\u0065\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x293b:"\u0061\u0063w\u0075\u006e\u0064e\u0072\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x0201:"\u0061d\u0062\u006c\u0067\u0072\u0061\u0076e",0x0a71:"\u0061\u0064\u0064\u0061\u006b\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x2101:"\u0061\u0064\u0064\u0072\u0065\u0073\u0073\u0073\u0075b\u006a\u0065\u0063\u0074",0x0905:"\u0061\u0064\u0065v\u0061",0x00e4:"\u0061d\u0069\u0065\u0072\u0065\u0073\u0069s",0x04d3:"\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01df:"\u0061d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0x1ea1:"\u0061d\u006f\u0074\u0062\u0065\u006c\u006fw",0x01e1:"\u0061\u0064\u006f\u0074\u006d\u0061\u0063\u0072\u006f\u006e",0x22f0:"\u0061\u0064\u006ft\u0073",0x00e6:"\u0061\u0065",0x01fd:"\u0061e\u0061\u0063\u0075\u0074\u0065",0x3150:"\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x01e3:"\u0061\u0065\u006d\u0061\u0063\u0072\u006f\u006e",0x200e:"\u0061f\u0069\u0069\u0032\u0039\u0039",0x200f:"\u0061f\u0069\u0069\u0033\u0030\u0030",0x200d:"\u0061f\u0069\u0069\u0033\u0030\u0031",0x0410:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00317",0x0411:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00318",0x0412:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00319",0x0416:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00324",0x0417:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00325",0x0419:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00327",0x041a:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00328",0x041d:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00331",0x041f:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00333",0x0420:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00334",0x0421:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00335",0x0422:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00336",0x0424:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00338",0x0429:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00343",0x042a:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00344",0x042b:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00345",0x042c:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00346",0x042e:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00348",0x042f:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00349",0x0402:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00351",0x0403:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00352",0x0405:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00354",0x0406:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00355",0x0408:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00357",0x040a:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00359",0xf6c4:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00363",0xf6c5:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00364",0x0430:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00365",0x0432:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00367",0x0433:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00368",0x0434:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00369",0x0451:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00371",0x0437:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00373",0x0439:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00375",0x043d:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00379",0x0442:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00384",0x0443:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00385",0x0444:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00386",0x0445:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00387",0x0448:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00390",0x0449:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00391",0x044e:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00396",0x044f:"\u0061f\u0069\u0069\u0031\u0030\u0030\u00397",0x0455:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00302",0x0456:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00303",0x0458:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00305",0x045a:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00307",0x045c:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00309",0x045e:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00310",0x0462:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00346",0x0472:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00347",0x0474:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00348",0xf6c6:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00392",0x0473:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00395",0x0475:"\u0061f\u0069\u0069\u0031\u0030\u0031\u00396",0xf6c7:"\u0061f\u0069\u0069\u0031\u0030\u0038\u00331",0xf6c8:"\u0061f\u0069\u0069\u0031\u0030\u0038\u00332",0x060c:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00388",0x0663:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00395",0x0666:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00398",0x0667:"\u0061f\u0069\u0069\u0035\u0037\u0033\u00399",0x061b:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00303",0x061f:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00307",0x0622:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00310",0x0623:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00311",0x0624:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00312",0x062a:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00318",0x062d:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00321",0x062e:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00322",0x062f:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00323",0x0633:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00327",0x0634:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00328",0x0635:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00329",0x0636:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00330",0x0639:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00333",0x0641:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00341",0x0642:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00342",0x0643:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00343",0x0644:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00344",0x0645:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00345",0x064b:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00351",0x064c:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00352",0x0650:"\u0061f\u0069\u0069\u0035\u0037\u0034\u00356",0x0698:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00308",0x0679:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00311",0x0688:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00312",0x06ba:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00314",0x06d5:"\u0061f\u0069\u0069\u0035\u0037\u0035\u00334",0x20aa:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00336",0x05be:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00345",0x05d2:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00366",0x05d4:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00368",0x05d6:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00370",0x05d7:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00371",0x05d9:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00373",0x05da:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00374",0x05df:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00379",0x05e4:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00384",0x05e6:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00386",0xfb2b:"\u0061f\u0069\u0069\u0035\u0037\u0036\u00395",0x05f0:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00316",0x05f1:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00317",0x05b8:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00397",0x05b0:"\u0061f\u0069\u0069\u0035\u0037\u0037\u00399",0x05c2:"\u0061f\u0069\u0069\u0035\u0037\u0038\u00303",0x05bf:"\u0061f\u0069\u0069\u0035\u0037\u0038\u00341",0x05c0:"\u0061f\u0069\u0069\u0035\u0037\u0038\u00342",0x2113:"\u0061f\u0069\u0069\u0036\u0031\u0032\u00389",0x202c:"\u0061f\u0069\u0069\u0036\u0031\u0035\u00373",0x202d:"\u0061f\u0069\u0069\u0036\u0031\u0035\u00374",0x202e:"\u0061f\u0069\u0069\u0036\u0031\u0035\u00375",0x200c:"\u0061f\u0069\u0069\u0036\u0031\u0036\u00364",0x066d:"\u0061f\u0069\u0069\u0036\u0033\u0031\u00367",0x02bd:"\u0061f\u0069\u0069\u0036\u0034\u0039\u00337",0x00e0:"\u0061\u0067\u0072\u0061\u0076\u0065",0x0a85:"\u0061g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0a05:"\u0061g\u0075\u0072\u006d\u0075\u006b\u0068i",0x3042:"\u0061h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ea3:"\u0061\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0990:"\u0061i\u0062\u0065\u006e\u0067\u0061\u006ci",0x311e:"\u0061\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0910:"\u0061\u0069\u0064\u0065\u0076\u0061",0x04d5:"a\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0a90:"\u0061\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a10:"\u0061\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a48:"\u0061i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfeca:"\u0061\u0069\u006e\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfecb:"\u0061\u0069n\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfec9:"a\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfecc:"\u0061i\u006em\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0203:"\u0061\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x09c8:"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x0948:"\u0061i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac8:"\u0061\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x30a2:"\u0061k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff71:"\u0061k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x314f:"\u0061k\u006f\u0072\u0065\u0061\u006e",0x05d0:"\u0061\u006c\u0065\u0066",0x0627:"\u0061\u006c\u0065\u0066\u0061\u0072\u0061\u0062\u0069\u0063",0xfb30:"\u0061\u006ce\u0066\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0xfe8e:"\u0061l\u0065f\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe84:"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0x0625:"a\u006ce\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065l\u006f\u0077\u0061\u0072ab\u0069\u0063",0xfe88:"\u0061l\u0065\u0066\u0068\u0061m\u007a\u0061\u0062\u0065\u006co\u0077f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0xfe8d:"\u0061\u006c\u0065f\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb4f:"\u0061l\u0065f\u006c\u0061\u006d\u0065\u0064\u0068\u0065\u0062\u0072\u0065\u0077",0xfe82:"\u0061l\u0065\u0066\u006d\u0061d\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069n\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0x0649:"\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0061r\u0061\u0062\u0069\u0063",0xfef0:"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062i\u0063",0xfeef:"\u0061\u006c\u0065\u0066ma\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfef4:"\u0061\u006c\u0065fm\u0061\u006b\u0073\u0075\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb2e:"\u0061l\u0065f\u0070\u0061\u0074\u0061\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0xfb2f:"\u0061\u006ce\u0066\u0071\u0061m\u0061\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",0x0671:"\u0061l\u0065\u0066\u0077\u0061\u0073\u006ca",0xfb51:"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061f\u0069\u006e\u0061\u006c",0xfb50:"\u0061\u006c\u0065\u0066\u0077\u0061\u0073\u006c\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064",0xfd3c:"a\u006c\u0065\u0066\u0077it\u0068f\u0061\u0074\u0068\u0061\u0074a\u006e\u0066\u0069\u006e\u0061\u006c",0xfd3d:"\u0061l\u0065\u0066\u0077\u0069\u0074\u0068\u0066\u0061\u0074\u0068\u0061t\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe83:"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfe87:"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u0068\u0061\u006dz\u0061\u0062\u0065\u006c\u006f\u0077\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfe81:"\u0061\u006c\u0065\u0066\u0077\u0069\u0074\u0068\u006d\u0061\u0064d\u0061\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0x2135:"\u0061\u006c\u0065p\u0068",0x224c:"\u0061\u006c\u006c\u0065\u0071\u0075\u0061\u006c",0x03b1:"\u0061\u006c\u0070h\u0061",0x03ac:"\u0061\u006c\u0070\u0068\u0061\u0074\u006f\u006e\u006f\u0073",0xd802:"a\u006c\u0074\u0073\u0065\u006c\u0065\u0063\u0074\u006f\u0072",0x0101:"\u0061m\u0061\u0063\u0072\u006f\u006e",0xff41:"\u0061\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0026:"\u0061m\u0070\u0065\u0072\u0073\u0061\u006ed",0xff06:"\u0061m\u0070e\u0072\u0073\u0061\u006e\u0064m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xf726:"\u0061\u006d\u0070\u0065\u0072\u0073\u0061\u006e\u0064s\u006d\u0061\u006c\u006c",0x33c2:"\u0061\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x3122:"\u0061\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x3124:"a\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x27e8:"\u0061\u006e\u0067\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074",0x27e9:"\u0061n\u0067b\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0x299f:"\u0061\u006e\u0067\u0064\u006e\u0072",0x0e5a:"\u0061\u006e\u0067\u006b\u0068\u0061\u006e\u006b\u0068u\u0074\u0068\u0061\u0069",0x2220:"\u0061\u006e\u0067l\u0065",0x3008:"\u0061\u006eg\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xfe3f:"\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006ce\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x3009:"\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074",0xfe40:"\u0061n\u0067\u006c\u0065\u0062r\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l",0x2329:"\u0061n\u0067\u006c\u0065\u006c\u0065\u0066t",0x232a:"\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x299e:"\u0061\u006e\u0067\u006c\u0065\u0073",0x29a4:"\u0061n\u0067\u006c\u0065\u0075\u0062\u0061r",0x212b:"\u0061\u006e\u0067\u0073\u0074\u0072\u006f\u006d",0x20e7:"\u0061n\u006e\u0075\u0069\u0074\u0079",0x0387:"\u0061n\u006f\u0074\u0065\u006c\u0065\u0069a",0x27f2:"\u0061\u006e\u0074\u0069\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x0952:"\u0061\u006e\u0075d\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061",0x0982:"\u0061n\u0075s\u0076\u0061\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0902:"\u0061\u006e\u0075s\u0076\u0061\u0072\u0061\u0064\u0065\u0076\u0061",0x0a82:"\u0061\u006eu\u0073\u0076\u0061r\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0105:"\u0061o\u0067\u006f\u006e\u0065\u006b",0x3300:"\u0061\u0070\u0061a\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x249c:"\u0061\u0070\u0061\u0072\u0065\u006e",0x0245:"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065",0x055a:"\u0061p\u006fs\u0074\u0072\u006f\u0070\u0068e\u0061\u0072m\u0065\u006e\u0069\u0061\u006e",0x02bc:"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u006d\u006f\u0064",0x0246:"\u0061\u0070\u006f\u0073\u0074\u0072\u006f\u0070\u0068\u0065\u0072\u0065\u0076",0xf8ff:"\u0061\u0070\u0070l\u0065",0x2250:"\u0061\u0070\u0070\u0072\u006f\u0061\u0063\u0068\u0065\u0073",0x2a70:"\u0061p\u0070\u0072\u006f\u0078\u0065\u0071q",0x2248:"a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c",0x2252:"\u0061p\u0070r\u006f\u0078\u0065\u0071\u0075a\u006c\u006fr\u0069\u006d\u0061\u0067\u0065",0x224b:"a\u0070\u0070\u0072\u006f\u0078\u0069\u0064\u0065\u006e\u0074",0x224a:"\u0061\u0070\u0070\u0072\u006f\u0078\u006f\u0072\u0065\u0071\u0075\u0061\u006c",0x318e:"\u0061\u0072\u0061e\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x318d:"a\u0072\u0061\u0065\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x2312:"\u0061\u0072\u0063",0x2258:"\u0061\u0072\u0063e\u0071",0x21b6:"\u0061\u0072\u0063h\u006c\u0065\u0066\u0074\u0064\u006f\u0077\u006e",0x21b7:"\u0061\u0072\u0063\u0068\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0077\u006e",0x1e9a:"\u0061\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u006cf\u0072\u0069\u006e\u0067",0x00e5:"\u0061\u0072\u0069n\u0067",0x01fb:"\u0061\u0072\u0069\u006e\u0067\u0061\u0063\u0075\u0074\u0065",0x1e01:"\u0061\u0072\u0069\u006e\u0067\u0062\u0065\u006c\u006f\u0077",0x0590:"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u0064\u006f\u0077\u006e",0x058d:"\u0061\u0072\u0072o\u0077\u0062\u0061\u0072\u006c\u0065\u0066\u0074",0x058f:"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074",0x058e:"\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0075\u0070",0x2194:"\u0061r\u0072\u006f\u0077\u0062\u006f\u0074h",0x21e3:"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0064\u006f\u0077\u006e",0x21e0:"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u006c\u0065\u0066\u0074",0x21e2:"\u0061\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068r\u0069\u0067\u0068\u0074",0x21e1:"a\u0072\u0072\u006f\u0077\u0064\u0061\u0073\u0068\u0075\u0070",0x21d4:"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068",0x21d5:"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0062\u006f\u0074\u0068\u0076",0x21d3:"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u0064\u006f\u0077\u006e",0x21d0:"\u0061\u0072\u0072o\u0077\u0064\u0062\u006c\u006c\u0065\u0066\u0074",0x21d2:"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074",0x21d1:"\u0061\u0072\u0072\u006f\u0077\u0064\u0062\u006c\u0075\u0070",0x2193:"\u0061r\u0072\u006f\u0077\u0064\u006f\u0077n",0x2199:"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074",0x2198:"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006er\u0069\u0067\u0068\u0074",0x21e9:"\u0061\u0072\u0072\u006f\u0077\u0064\u006f\u0077\u006ew\u0068\u0069\u0074\u0065",0x02c5:"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u0064\u006f\u0077\u006e\u006d\u006f\u0064",0x02c2:"\u0061\u0072r\u006f\u0077\u0068e\u0061\u0064\u006c\u0065\u0066\u0074\u006d\u006f\u0064",0x02c3:"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064\u0072\u0069\u0067h\u0074\u006d\u006f\u0064",0x02c4:"\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064u\u0070\u006d\u006f\u0064",0x21aa:"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006b\u006c\u0065\u0066\u0074",0x21a9:"\u0061\u0072\u0072\u006f\u0077\u0068\u006f\u006f\u006br\u0069\u0067\u0068\u0074",0xf8e7:"\u0061\u0072\u0072o\u0077\u0068\u006f\u0072\u0069\u007a\u0065\u0078",0x2190:"\u0061r\u0072\u006f\u0077\u006c\u0065\u0066t",0x21bd:"\u0061\u0072r\u006f\u0077\u006ce\u0066\u0074\u0062\u006f\u0074\u0068\u0061\u006c\u0066",0x21cd:"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074d\u0062\u006cs\u0074\u0072\u006f\u006b\u0065",0x21c6:"\u0061r\u0072o\u0077\u006c\u0065\u0066\u0074o\u0076\u0065r\u0072\u0069\u0067\u0068\u0074",0x21e6:"\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074w\u0068\u0069\u0074\u0065",0x2192:"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",0x21c1:"\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0062\u006ft\u0068\u0061\u006c\u0066",0x21cf:"\u0061\u0072\u0072\u006fwr\u0069\u0067\u0068\u0074\u0064\u0062\u006c\u0073\u0074\u0072\u006f\u006b\u0065",0x21c4:"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068t\u006f\u0076e\u0072\u006c\u0065\u0066\u0074",0x21e8:"\u0061r\u0072o\u0077\u0072\u0069\u0067\u0068\u0074\u0077\u0068\u0069\u0074\u0065",0x21e4:"\u0061\u0072\u0072o\u0077\u0074\u0061\u0062\u006c\u0065\u0066\u0074",0x21e5:"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0062\u0072\u0069\u0067\u0068\u0074",0x21a2:"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c\u006c\u0065\u0066\u0074",0x21a3:"\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006cr\u0069\u0067\u0068\u0074",0x21da:"\u0061r\u0072o\u0077\u0074\u0072\u0069\u0070\u006c\u0065\u006c\u0065\u0066\u0074",0x21db:"\u0061\u0072r\u006f\u0077\u0074r\u0069\u0070\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x2191:"\u0061r\u0072\u006f\u0077\u0075\u0070",0x21a8:"\u0061r\u0072o\u0077\u0075\u0070\u0064\u006f\u0077\u006e\u0062\u0061\u0073\u0065",0x2196:"a\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074",0x21c5:"\u0061\u0072\u0072\u006f\u0077\u0075\u0070\u006c\u0065\u0066\u0074\u006ff\u0064\u006f\u0077\u006e",0x2197:"\u0061\u0072\u0072o\u0077\u0075\u0070\u0072\u0069\u0067\u0068\u0074",0x21e7:"\u0061\u0072\u0072o\u0077\u0075\u0070\u0077\u0068\u0069\u0074\u0065",0xf8e6:"a\u0072\u0072\u006f\u0077\u0076\u0065\u0072\u0074\u0065\u0078",0xd80a:"a\u0073c\u0065\u006e\u0064\u0065\u0072\u0063\u006f\u006dp\u0077\u006f\u0072\u0064ma\u0072\u006b",0x005e:"a\u0073\u0063\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006d",0xff3e:"a\u0073c\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006dm\u006f\u006e\u006f\u0073pa\u0063\u0065",0x007e:"\u0061\u0073\u0063\u0069\u0069\u0074\u0069\u006c\u0064\u0065",0xff5e:"\u0061\u0073\u0063\u0069it\u0069\u006c\u0064\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0251:"\u0061s\u0063\u0072\u0069\u0070\u0074",0x0252:"\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0074\u0075\u0072\u006e\u0065\u0064",0x3041:"\u0061\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a1:"\u0061\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff67:"\u0061\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x22a6:"\u0061\u0073\u0073\u0065\u0072\u0074",0x2a6e:"\u0061\u0073\u0074e\u0071",0x20f0:"a\u0073\u0074\u0065\u0072\u0061\u0063\u0063\u0065\u006e\u0074",0x002a:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b",0x2217:"\u0061\u0073\u0074e\u0072\u0069\u0073\u006b\u006d\u0061\u0074\u0068",0xff0a:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xfe61:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b\u0073\u006d\u0061\u006c\u006c",0x2042:"\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006d",0x2609:"\u0061\u0073\u0074\u0072\u006f\u0073\u0075\u006e",0xf6e9:"\u0061s\u0075\u0070\u0065\u0072\u0069\u006fr",0x2243:"\u0061\u0073\u0079\u006dpt\u006f\u0074\u0069\u0063\u0061\u006c\u006c\u0079\u0065\u0071\u0075\u0061\u006c",0x0040:"\u0061\u0074",0x00e3:"\u0061\u0074\u0069\u006c\u0064\u0065",0xff20:"a\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe6b:"\u0061t\u0073\u006d\u0061\u006c\u006c",0x0250:"\u0061t\u0075\u0072\u006e\u0065\u0064",0x0994:"\u0061u\u0062\u0065\u006e\u0067\u0061\u006ci",0x3120:"\u0061\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0914:"\u0061\u0075\u0064\u0065\u0076\u0061",0x0a94:"\u0061\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a14:"\u0061\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x09d7:"\u0061\u0075\u006c\u0065ng\u0074\u0068\u006d\u0061\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0a4c:"\u0061u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x09cc:"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x094c:"\u0061u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0acc:"\u0061\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x093d:"\u0061\u0076\u0061g\u0072\u0061\u0068\u0061\u0064\u0065\u0076\u0061",0x2a11:"\u0061\u0077\u0069n\u0074",0x0561:"a\u0079\u0062\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfb20:"\u0061\u0079i\u006e\u0061\u006ct\u006f\u006e\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x05e2:"\u0061\u0079\u0069\u006e\u0068\u0065\u0062\u0072\u0065\u0077",0x0062:"\u0062",0x2aed:"\u0062\u004e\u006f\u0074",0x09ac:"\u0062a\u0062\u0065\u006e\u0067\u0061\u006ci",0x2036:"\u0062\u0061\u0063\u006b\u0064\u0070\u0072\u0069\u006d\u0065",0x024c:"\u0062\u0061\u0063\u006b\u0065\u0064",0x005c:"\u0062a\u0063\u006b\u0073\u006c\u0061\u0073h",0xff3c:"\u0062a\u0063k\u0073\u006c\u0061\u0073\u0068m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0x2037:"b\u0061\u0063\u006b\u0074\u0072\u0070\u0072\u0069\u006d\u0065",0x092c:"\u0062\u0061\u0064\u0065\u0076\u0061",0x22ff:"\u0062a\u0067\u006d\u0065\u006d\u0062\u0065r",0x0aac:"\u0062\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2c:"\u0062\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3070:"\u0062\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x0e3f:"\u0062\u0061\u0068\u0074\u0074\u0068\u0061\u0069",0x30d0:"\u0062\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x007c:"\u0062\u0061\u0072",0x2aea:"\u0062\u0061\u0072\u0056",0x2a43:"\u0062\u0061\u0072\u0063\u0061\u0070",0x2a42:"\u0062\u0061\u0072\u0063\u0075\u0070",0x2961:"\u0062a\u0072d\u006f\u0077\u006e\u0068\u0061r\u0070\u006fo\u006e\u006c\u0065\u0066\u0074",0x295d:"\u0062\u0061\u0072\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074",0x21b9:"\u0062a\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061",0x2956:"\u0062a\u0072l\u0065\u0066\u0074\u0068\u0061r\u0070\u006fo\u006e\u0064\u006f\u0077\u006e",0x2952:"\u0062\u0061r\u006c\u0065\u0066t\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070",0x02a9:"\u0062\u0061\u0072\u006d\u0069\u0064\u006c\u006f\u006eg\u006e\u006f\u0073\u0070",0xff5c:"\u0062\u0061\u0072m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x21b8:"b\u0061\u0072\u006f\u0076er\u006eo\u0072\u0074\u0068\u0077\u0065s\u0074\u0061\u0072\u0072\u006f\u0077",0x2920:"b\u0061r\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u0064\u0069\u0061mo\u006e\u0064",0x295f:"\u0062\u0061\u0072\u0072ig\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",0x295b:"\u0062\u0061\u0072\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0075\u0070",0x2912:"\u0062\u0061\u0072\u0075\u0070\u0061\u0072\u0072\u006f\u0077",0x2958:"\u0062\u0061r\u0075\u0070\u0068a\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074",0x2954:"\u0062\u0061\u0072\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006er\u0069\u0067\u0068\u0074",0x22bd:"\u0062\u0061\u0072\u0076\u0065\u0065",0x3105:"\u0062b\u006f\u0070\u006f\u006d\u006f\u0066o",0x23b6:"\u0062\u0062\u0072\u006b\u0074\u0062\u0072\u006b",0x24d1:"\u0062c\u0069\u0072\u0063\u006c\u0065",0x1e03:"\u0062\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e05:"\u0062d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2506:"\u0062\u0064\u0074\u0072\u0069\u0070\u006c\u0065\u0076\u0064\u0061\u0073\u0068",0x266c:"b\u0065a\u006d\u0065\u0064\u0073\u0069\u0078\u0074\u0065e\u006e\u0074\u0068\u006eot\u0065\u0073",0x2235:"\u0062e\u0063\u0061\u0075\u0073\u0065",0x0431:"\u0062\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0628:"\u0062e\u0068\u0061\u0072\u0061\u0062\u0069c",0xfe90:"\u0062\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe91:"\u0062\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3079:"\u0062\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfe8f:"b\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe92:"\u0062e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc9f:"b\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc08:"b\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfc6d:"\u0062e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfc6e:"\u0062\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xfc09:"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfc9d:"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xe812:"\u0062\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfc9c:"\u0062e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc9e:"\u0062e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc6a:"\u0062e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc6f:"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc0a:"\u0062e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x30d9:"\u0062\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0562:"b\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x23e3:"\u0062e\u006e\u007a\u0065\u006e\u0072",0x03b2:"\u0062\u0065\u0074\u0061",0x03d0:"\u0062e\u0074a\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",0xfb31:"\u0062e\u0074d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x2136:"\u0062\u0065\u0074\u0068",0x05d1:"\u0062e\u0074\u0068\u0065\u0062\u0072\u0065w",0xfb4c:"\u0062\u0065\u0074\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x226c:"\u0062e\u0074\u0077\u0065\u0065\u006e",0x09ad:"\u0062\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x092d:"\u0062h\u0061\u0064\u0065\u0076\u0061",0x0aad:"b\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2d:"b\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0253:"\u0062\u0068\u006fo\u006b",0x27d8:"\u0062\u0069\u0067\u0062\u006f\u0074",0x2a03:"\u0062i\u0067\u0063\u0075\u0070\u0064\u006ft",0x2afc:"\u0062\u0069\u0067\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065",0x2a00:"\u0062i\u0067\u006f\u0064\u006f\u0074",0x2a01:"\u0062\u0069\u0067\u006f\u0070\u006c\u0075\u0073",0x2a02:"\u0062i\u0067\u006f\u0074\u0069\u006d\u0065s",0x2a57:"\u0062\u0069\u0067s\u006c\u006f\u0070\u0065\u0064\u0076\u0065\u0065",0x2a58:"\u0062\u0069\u0067\u0073\u006c\u006f\u0070\u0065\u0064w\u0065\u0064\u0067\u0065",0x2a05:"\u0062\u0069\u0067\u0073\u0071\u0063\u0061\u0070",0x2a06:"\u0062\u0069\u0067\u0073\u0071\u0063\u0075\u0070",0x2aff:"\u0062\u0069\u0067\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067",0x2a09:"\u0062\u0069\u0067\u0074\u0069\u006d\u0065\u0073",0x27d9:"\u0062\u0069\u0067\u0074\u006f\u0070",0x2a1e:"\u0062i\u0067t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",0x2a04:"\u0062\u0069\u0067\u0075\u0070\u006c\u0075\u0073",0x22c1:"\u0062\u0069\u0067\u0076\u0065\u0065",0x22c0:"\u0062\u0069\u0067\u0077\u0065\u0064\u0067\u0065",0x3073:"\u0062\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d3:"\u0062\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0298:"\u0062\u0069\u006c\u0061\u0062\u0069\u0061\u006c\u0063\u006c\u0069\u0063\u006b",0x0a02:"\u0062\u0069\u006e\u0064\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3331:"\u0062\u0069\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x29ed:"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u006f\u0077\u006e\u0061rr\u006f\u0077",0x2688:"b\u006ca\u0063\u006b\u0063\u0069\u0072\u0063\u006c\u0065d\u0072\u0069\u0067\u0068td\u006f\u0074",0x2689:"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077\u006f\u0064\u006f\u0074\u0073",0x25d5:"\u0062\u006c\u0061\u0063kc\u0069\u0072\u0063\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064\u0077\u0068\u0069t\u0065",0x29ea:"b\u006c\u0061\u0063\u006bdi\u0061m\u006f\u006e\u0064\u0064\u006fw\u006e\u0061\u0072\u0072\u006f\u0077",0x29d7:"\u0062\u006c\u0061\u0063\u006b\u0068\u006f\u0075\u0072g\u006c\u0061\u0073\u0073",0x25d6:"\u0062\u006c\u0061\u0063kl\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065",0x25c4:"\u0062l\u0061\u0063\u006b\u006c\u0065\u0066\u0074\u0070\u006f\u0069\u006et\u0069\u006e\u0067\u0070\u006f\u0069\u006e\u0074\u0065\u0072",0x25c0:"\u0062l\u0061\u0063\u006b\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",0x3010:"\u0062\u006c\u0061\u0063\u006b\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074",0xfe3b:"\u0062\u006c\u0061ck\u006c\u0065\u006e\u0074\u0069\u0063\u0075\u006c\u0061r\u0062r\u0061c\u006be\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x3011:"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074",0xfe3c:"b\u006c\u0061\u0063\u006b\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061r\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063a\u006c",0x25e3:"\u0062\u006c\u0061\u0063kl\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065",0x25e2:"\u0062\u006c\u0061ck\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25ac:"\u0062\u006c\u0061\u0063\u006b\u0072\u0065\u0063\u0074a\u006e\u0067\u006c\u0065",0x25ba:"\u0062l\u0061\u0063\u006b\u0072i\u0067\u0068\u0074\u0070\u006fi\u006et\u0069n\u0067\u0070\u006f\u0069\u006e\u0074\u0065r",0x25b6:"\u0062\u006c\u0061\u0063\u006b\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065",0x25aa:"\u0062\u006ca\u0063\u006b\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x263b:"\u0062\u006ca\u0063\u006b\u0073m\u0069\u006c\u0069\u006e\u0067\u0066\u0061\u0063\u0065",0x25be:"\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006ce\u0064\u006f\u0077\u006e",0x25e4:"\u0062\u006c\u0061\u0063ku\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0072\u0069\u0061\u006e\u0067l\u0065",0x25e5:"\u0062\u006c\u0061ck\u0075\u0070\u0070\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25b4:"\u0062\u006c\u0061\u0063k\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065",0x2423:"\u0062\u006c\u0061n\u006b",0x1e07:"\u0062\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x2b2c:"b\u006c\u006b\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c",0x2b2e:"b\u006c\u006b\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c",0x2588:"\u0062\u006c\u006fc\u006b",0xff42:"\u0062\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0e1a:"\u0062\u006f\u0062a\u0069\u006d\u0061\u0069\u0074\u0068\u0061\u0069",0x307c:"\u0062\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30dc:"\u0062\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x25e1:"\u0062\u006f\u0074\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065",0x22c8:"\u0062\u006f\u0077\u0074\u0069\u0065",0x29c6:"\u0062\u006f\u0078\u0061\u0073\u0074",0x25eb:"\u0062\u006f\u0078\u0062\u0061\u0072",0x29c8:"\u0062\u006f\u0078\u0062\u006f\u0078",0x29c5:"\u0062o\u0078\u0062\u0073\u006c\u0061\u0073h",0x29c7:"\u0062o\u0078\u0063\u0069\u0072\u0063\u006ce",0x29c4:"\u0062o\u0078\u0064\u0069\u0061\u0067",0x29c9:"\u0062\u006f\u0078\u006f\u006e\u0062\u006f\u0078",0x249d:"\u0062\u0070\u0061\u0072\u0065\u006e",0x33c3:"\u0062\u0071\u0073\u0071\u0075\u0061\u0072\u0065",0xf8f4:"\u0062r\u0061\u0063\u0065\u0065\u0078",0x007b:"\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t",0xf8f3:"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0062\u0074",0xf8f2:"\u0062\u0072\u0061c\u0065\u006c\u0065\u0066\u0074\u006d\u0069\u0064",0xff5b:"\u0062r\u0061c\u0065\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xfe5b:"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c",0xf8f1:"b\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0074\u0070",0xfe37:"\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x007d:"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074",0xf8fe:"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u0074",0xf8fd:"\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074\u006d\u0069\u0064",0xff5d:"\u0062\u0072\u0061\u0063er\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe5c:"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c",0xf8fc:"\u0062\u0072\u0061c\u0065\u0072\u0069\u0067\u0068\u0074\u0074\u0070",0xfe38:"\u0062r\u0061c\u0065\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c",0x005b:"b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xf8f0:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0062\u0074",0xf8ef:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0065\u0078",0xff3b:"b\u0072a\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074m\u006f\u006e\u006f\u0073pa\u0063\u0065",0x2045:"\u0062\u0072a\u0063\u006b\u0065t\u006c\u0065\u0066\u0074\u0071\u0075\u0069\u006c\u006c",0xf8ee:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0074\u0070",0x005d:"\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0xf8fb:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0062\u0074",0xf8fa:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0065\u0078",0xff3d:"b\u0072\u0061\u0063\u006bet\u0072i\u0067\u0068\u0074\u006d\u006fn\u006f\u0073\u0070\u0061\u0063\u0065",0x2046:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074q\u0075\u0069\u006c\u006c",0xf8f9:"\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069g\u0068\u0074\u0074\u0070",0x02d8:"\u0062\u0072\u0065v\u0065",0xf006:"\u0062\u0072\u0065\u0076\u0065\u0031",0x032e:"\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0306:"\u0062\u0072\u0065\u0076\u0065\u0063\u006d\u0062",0x032f:"b\u0072\u0065\u0076\u0065in\u0076e\u0072\u0074\u0065\u0064\u0062e\u006c\u006f\u0077\u0063\u006d\u0062",0x0311:"\u0062\u0072e\u0076\u0065\u0069n\u0076\u0065\u0072\u0074\u0065\u0064\u0063\u006d\u0062",0x0361:"\u0062\u0072\u0065\u0076ei\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0064\u006f\u0075\u0062\u006c\u0065\u0063m\u0062",0x032a:"\u0062\u0072\u0069\u0064\u0067\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x033a:"\u0062\u0072\u0069\u0064ge\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063m\u0062",0x02ad:"\u0062\u0072i\u0064\u0067\u0065i\u006e\u0076\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x00a6:"\u0062r\u006f\u006b\u0065\u006e\u0062\u0061r",0x2b41:"\u0062\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0x2b47:"\u0062s\u0069m\u0069\u006c\u0061\u0072\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x27c8:"\u0062\u0073\u006f\u006c\u0068\u0073\u0075\u0062",0x0180:"\u0062s\u0074\u0072\u006f\u006b\u0065",0xf6ea:"\u0062s\u0075\u0070\u0065\u0072\u0069\u006fr",0x2a32:"\u0062\u0074\u0069\u006d\u0065\u0073",0x0183:"\u0062t\u006f\u0070\u0062\u0061\u0072",0x3076:"\u0062\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d6:"\u0062\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2022:"\u0062\u0075\u006c\u006c\u0065\u0074",0x2219:"\u0062\u0075\u006c\u006c\u0065\u0074\u006f\u0070\u0065r\u0061\u0074\u006f\u0072",0x25ce:"\u0062\u0075\u006c\u006c\u0073\u0065\u0079\u0065",0x2aae:"\u0062u\u006d\u0070\u0065\u0071\u0071",0x0063:"\u0063",0x0080:"\u0063\u0031\u0032\u0038",0x0081:"\u0063\u0031\u0032\u0039",0x008d:"\u0063\u0031\u0034\u0031",0x008e:"\u0063\u0031\u0034\u0032",0x008f:"\u0063\u0031\u0034\u0033",0x056e:"\u0063\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x099a:"\u0063a\u0062\u0065\u006e\u0067\u0061\u006ci",0x0107:"\u0063\u0061\u0063\u0075\u0074\u0065",0x2106:"\u0063a\u0064\u0061\u0075\u006e\u0061",0x091a:"\u0063\u0061\u0064\u0065\u0076\u0061",0x0a9a:"\u0063\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1a:"\u0063\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3388:"\u0063a\u006c\u0073\u0071\u0075\u0061\u0072e",0x0981:"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006ed\u0075\u0062e\u006e\u0067\u0061\u006c\u0069",0x0310:"\u0063\u0061\u006e\u0064\u0072\u0061\u0062\u0069\u006ed\u0075\u0063\u006d\u0062",0x0901:"\u0063a\u006ed\u0072\u0061\u0062\u0069\u006e\u0064\u0075\u0064\u0065\u0076\u0061",0x0a81:"\u0063\u0061\u006e\u0064ra\u0062\u0069\u006e\u0064\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x2a49:"\u0063a\u0070\u0062\u0061\u0072\u0063\u0075p",0x2a40:"\u0063\u0061\u0070\u0064\u006f\u0074",0xd809:"\u0063\u0061\u0070\u0069ta\u006c\u0063\u006f\u006d\u0070\u0077\u006f\u0072\u0064\u006d\u0061\u0072\u006b",0x2a47:"\u0063\u0061\u0070\u006f\u0076\u0065\u0072\u0063\u0075\u0070",0x21ea:"\u0063\u0061\u0070\u0073\u006c\u006f\u0063\u006b",0x2a44:"\u0063\u0061\u0070\u0077\u0065\u0064\u0067\u0065",0x2105:"\u0063\u0061\u0072\u0065\u006f\u0066",0x2038:"c\u0061\u0072\u0065\u0074\u0069\u006e\u0073\u0065\u0072\u0074",0x02c7:"\u0063\u0061\u0072o\u006e",0xf00a:"\u0063\u0061\u0072\u006f\u006e\u0031",0x032c:"\u0063\u0061\u0072\u006f\u006e\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x030c:"\u0063\u0061\u0072\u006f\u006e\u0063\u006d\u0062",0x21b5:"\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e",0x3118:"\u0063b\u006f\u0070\u006f\u006d\u006f\u0066o",0x010d:"\u0063\u0063\u0061\u0072\u006f\u006e",0x00e7:"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x1e09:"\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0061\u0063\u0075\u0074\u0065",0x24d2:"\u0063c\u0069\u0072\u0063\u006c\u0065",0x0109:"c\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0255:"\u0063\u0063\u0075r\u006c",0x293f:"\u0063c\u0077u\u006e\u0064\u0065\u0072\u0063u\u0072\u0076e\u0061\u0072\u0072\u006f\u0077",0x010b:"\u0063\u0064\u006f\u0074",0x33c5:"\u0063\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x00b8:"\u0063e\u0064\u0069\u006c\u006c\u0061",0xf008:"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0031",0xf00d:"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0032",0x0327:"\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0063\u006d\u0062",0x2308:"c\u0065\u0069\u006c\u0069\u006e\u0067\u006c\u0065\u0066\u0074",0x2309:"\u0063\u0065\u0069l\u0069\u006e\u0067\u0072\u0069\u0067\u0068\u0074",0x00a2:"\u0063\u0065\u006e\u0074",0x2103:"\u0063\u0065\u006e\u0074\u0069\u0067\u0072\u0061\u0064\u0065",0xf6df:"\u0063\u0065\u006et\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xffe0:"\u0063\u0065\u006e\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf7a2:"\u0063\u0065\u006et\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2104:"\u0063\u0065\u006e\u0074\u0072\u0065\u006c\u0069\u006e\u0065",0xf6e0:"\u0063\u0065\u006et\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0579:"c\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x099b:"\u0063\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091b:"\u0063h\u0061\u0064\u0065\u0076\u0061",0x0a9b:"c\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1b:"c\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3114:"\u0063\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x04bd:"c\u0068e\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x0447:"c\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04bf:"\u0063\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065\u0072\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04b7:"c\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04f5:"\u0063\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0573:"\u0063\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x04cc:"c\u0068\u0065\u006b\u0068ak\u0061s\u0073\u0069\u0061\u006e\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x04b9:"\u0063h\u0065\u0076\u0065\u0072t\u0069\u0063\u0061\u006c\u0073t\u0072o\u006be\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x03c7:"\u0063\u0068\u0069",0x3277:"c\u0068i\u0065\u0075\u0063\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x3217:"\u0063\u0068\u0069\u0065uc\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3269:"\u0063\u0068\u0069\u0065uc\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314a:"\u0063\u0068\u0069\u0065\u0075\u0063\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x3209:"\u0063h\u0069e\u0075\u0063\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x0e0a:"\u0063\u0068\u006fc\u0068\u0061\u006e\u0067\u0074\u0068\u0061\u0069",0x0e08:"c\u0068\u006f\u0063\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e09:"\u0063\u0068\u006fc\u0068\u0069\u006e\u0067\u0074\u0068\u0061\u0069",0x0e0c:"c\u0068\u006f\u0063\u0068\u006f\u0065\u0074\u0068\u0061\u0069",0x0188:"\u0063\u0068\u006fo\u006b",0x3276:"\u0063i\u0065u\u0063\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3216:"\u0063\u0069\u0065\u0075\u0063\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3268:"\u0063\u0069\u0065\u0075\u0063\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3148:"c\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3208:"\u0063\u0069e\u0075\u0063\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x321c:"\u0063\u0069\u0065\u0075\u0063\u0075\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x29c3:"\u0063\u0069\u0072\u0045",0x27df:"\u0063\u0069\u0072\u0062\u006f\u0074",0x2257:"\u0063\u0069\u0072\u0063\u0065\u0071",0x229b:"\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0073\u0074e\u0072\u0069\u0073\u006b",0x25d2:"c\u0069\u0072\u0063\u006ceb\u006ft\u0074\u006f\u006d\u0068\u0061l\u0066\u0062\u006c\u0061\u0063\u006b",0x20dd:"\u0063\u0069\u0072c\u006c\u0065\u0063\u006f\u0070\u0079\u0072\u0074",0x29bf:"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0062\u0075\u006c\u006c\u0065\u0074",0x229d:"c\u0069\u0072\u0063\u006c\u0065\u0064\u0064\u0061\u0073\u0068",0x2298:"\u0063\u0069\u0072c\u006c\u0065\u0064\u0069\u0076\u0069\u0064\u0065",0x29ec:"\u0063i\u0072c\u006c\u0065\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x29b7:"\u0063i\u0072c\u006c\u0065\u0064\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x2686:"\u0063i\u0072c\u006c\u0065\u0064\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074",0x2687:"\u0063\u0069\u0072\u0063\u006c\u0065\u0064\u0074\u0077o\u0064\u006f\u0074\u0073",0x29b6:"c\u0069\u0072\u0063\u006c\u0065\u0064\u0076\u0065\u0072\u0074",0x29be:"\u0063i\u0072c\u006c\u0065\u0064\u0077\u0068i\u0074\u0065b\u0075\u006c\u006c\u0065\u0074",0x229c:"c\u0069\u0072\u0063\u006c\u0065\u0065\u0071\u0075\u0061\u006c",0x29b5:"\u0063\u0069\u0072\u0063\u006c\u0065\u0068\u0062\u0061\u0072",0x25f5:"\u0063\u0069\u0072c\u006c\u0065\u006c\u006c\u0071\u0075\u0061\u0064",0x25f6:"\u0063\u0069\u0072c\u006c\u0065\u006c\u0072\u0071\u0075\u0061\u0064",0x2297:"\u0063\u0069\u0072\u0063\u006c\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079",0x2b30:"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u006e\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0x21f4:"\u0063i\u0072c\u006c\u0065\u006f\u006e\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x2299:"\u0063\u0069\u0072\u0063\u006c\u0065\u006f\u0074",0x2295:"\u0063\u0069\u0072\u0063\u006c\u0065\u0070\u006c\u0075\u0073",0x3036:"\u0063\u0069r\u0063\u006c\u0065p\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b",0x229a:"\u0063\u0069\u0072\u0063\u006c\u0065\u0072\u0069\u006e\u0067",0x25d3:"\u0063i\u0072c\u006c\u0065\u0074\u006f\u0070h\u0061\u006cf\u0062\u006c\u0061\u0063\u006b",0x25f4:"\u0063\u0069\u0072c\u006c\u0065\u0075\u006c\u0071\u0075\u0061\u0064",0x25f7:"\u0063\u0069\u0072c\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064",0x25d4:"\u0063\u0069\u0072\u0063\u006c\u0065\u0075\u0072\u0071\u0075\u0061\u0064b\u006c\u0061\u0063\u006b",0x25cd:"\u0063\u0069\u0072\u0063\u006c\u0065\u0076\u0065\u0072t\u0066\u0069\u006c\u006c",0x25d0:"\u0063\u0069\u0072cl\u0065\u0077\u0069\u0074\u0068\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b",0x25d1:"\u0063i\u0072\u0063\u006c\u0065\u0077\u0069\u0074\u0068\u0072\u0069\u0067h\u0074\u0068\u0061\u006c\u0066\u0062\u006c\u0061\u0063\u006b",0x02c6:"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0xf003:"c\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0031",0x032d:"\u0063i\u0072c\u0075\u006d\u0066\u006c\u0065x\u0062\u0065l\u006f\u0077\u0063\u006d\u0062",0x0302:"\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078\u0063\u006d\u0062",0x2a10:"\u0063\u0069\u0072\u0066\u006e\u0069\u006e\u0074",0x2aef:"\u0063\u0069\u0072\u006d\u0069\u0064",0x29c2:"\u0063i\u0072\u0073\u0063\u0069\u0072",0x2327:"\u0063\u006c\u0065a\u0072",0x01c2:"\u0063\u006c\u0069\u0063\u006b\u0061\u006c\u0076\u0065\u006f\u006c\u0061\u0072",0x01c0:"c\u006c\u0069\u0063\u006b\u0064\u0065\u006e\u0074\u0061\u006c",0x01c1:"\u0063\u006c\u0069c\u006b\u006c\u0061\u0074\u0065\u0072\u0061\u006c",0x01c3:"\u0063\u006c\u0069\u0063\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078",0x27f3:"\u0063l\u006f\u0063\u006b\u0077\u0069\u0073e",0x2a4d:"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0061\u0070",0x2a4c:"\u0063\u006c\u006fs\u0065\u0064\u0076\u0061\u0072\u0063\u0075\u0070",0x2a50:"c\u006c\u006f\u0073\u0065dv\u0061r\u0063\u0075\u0070\u0073\u006da\u0073\u0068\u0070\u0072\u006f\u0064",0x2050:"\u0063l\u006f\u0073\u0075\u0072\u0065",0x2663:"\u0063\u006c\u0075\u0062",0x2667:"\u0063\u006c\u0075\u0062\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065",0x33a4:"\u0063\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0xff43:"\u0063\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x33a0:"\u0063m\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x0581:"\u0063\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x003a:"\u0063\u006f\u006co\u006e",0x2254:"\u0063o\u006c\u006f\u006e\u0065\u0071",0x20a1:"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u0065\u0074\u0061\u0072\u0079",0xff1a:"\u0063\u006f\u006c\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xfe55:"\u0063\u006f\u006c\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x02d1:"\u0063\u006f\u006c\u006fnt\u0072\u0069\u0061\u006e\u0067\u0075\u006c\u0061\u0072\u0068\u0061\u006c\u0066\u006do\u0064",0x02d0:"\u0063o\u006co\u006e\u0074\u0072\u0069\u0061n\u0067\u0075l\u0061\u0072\u006d\u006f\u0064",0x002c:"\u0063\u006f\u006dm\u0061",0x0313:"\u0063\u006f\u006d\u006d\u0061\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062",0x0315:"\u0063o\u006dm\u0061\u0061\u0062\u006f\u0076e\u0072\u0069g\u0068\u0074\u0063\u006d\u0062",0xf6c3:"c\u006f\u006d\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x055d:"\u0063\u006f\u006d\u006d\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xf6e1:"\u0063\u006f\u006d\u006d\u0061\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0x2a29:"\u0063\u006f\u006d\u006d\u0061\u006d\u0069\u006e\u0075\u0073",0xff0c:"\u0063\u006f\u006d\u006d\u0061\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x0314:"c\u006f\u006d\u006d\u0061re\u0076e\u0072\u0073\u0065\u0064\u0061b\u006f\u0076\u0065\u0063\u006d\u0062",0xfe50:"\u0063\u006f\u006d\u006d\u0061\u0073\u006d\u0061\u006c\u006c",0x0299:"\u0063\u006f\u006dm\u0061\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0xf6e2:"\u0063\u006f\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0312:"\u0063\u006f\u006d\u006dat\u0075\u0072\u006e\u0065\u0064\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062",0x02bb:"\u0063\u006f\u006d\u006d\u0061\u0074\u0075\u0072\u006ee\u0064\u006d\u006f\u0064",0x2201:"\u0063\u006f\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074",0x27e1:"\u0063\u006f\u006e\u0063\u0061\u0076\u0065\u0064\u0069a\u006d\u006f\u006e\u0064",0x27e2:"\u0063\u006f\u006e\u0063av\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u006c\u0065f\u0074",0x27e3:"\u0063\u006f\u006eca\u0076\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0074\u0069\u0063\u006b\u0072\u0069\u0067\u0068\u0074",0x2a6d:"\u0063o\u006e\u0067\u0064\u006f\u0074",0x2245:"\u0063o\u006e\u0067\u0072\u0075\u0065\u006et",0x2332:"\u0063\u006f\u006e\u0069\u0063\u0074\u0061\u0070\u0065\u0072",0x2a07:"\u0063o\u006e\u006a\u0071\u0075\u0061\u006et",0x222e:"\u0063o\u006et\u006f\u0075\u0072\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",0x2303:"\u0063o\u006e\u0074\u0072\u006f\u006c",0x0006:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0041\u0043\u004b",0x0007:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0042\u0045\u004c",0x0008:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0042S",0x0018:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0043\u0041\u004e",0x000d:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0043R",0x0011:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0031",0x0012:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0032",0x0013:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0033",0x0014:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0043\u0034",0x007f:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u0045\u004c",0x0010:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0044\u004c\u0045",0x0019:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0045M",0x0005:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004e\u0051",0x0004:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u004f\u0054",0x001b:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0053\u0043",0x0017:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0042",0x0003:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0045\u0054\u0058",0x000c:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046F",0x001c:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0046S",0x001d:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0047S",0x0009:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0048T",0x000a:"\u0063o\u006e\u0074\u0072\u006f\u006c\u004cF",0x0015:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0041\u004b",0x0000:"c\u006f\u006e\u0074\u0072\u006f\u006c\u004e\u0055\u004c\u004c",0x001e:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0052S",0x000f:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053I",0x000e:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0053O",0x0002:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u004f\u0054",0x0001:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0054\u0058",0x001a:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0055\u0042",0x0016:"\u0063\u006f\u006e\u0074\u0072\u006f\u006c\u0053\u0059\u004e",0x001f:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0055S",0x000b:"\u0063o\u006e\u0074\u0072\u006f\u006c\u0056T",0x2a3f:"\u0063o\u0070\u0072\u006f\u0064\u0075\u0063t",0x2210:"\u0063\u006fp\u0072\u006f\u0064u\u0063\u0074\u0064\u0069\u0073\u0070\u006c\u0061\u0079",0x00a9:"\u0063o\u0070\u0079\u0072\u0069\u0067\u0068t",0xf8e9:"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074\u0073\u0061\u006e\u0073",0xf6d9:"\u0063\u006f\u0070\u0079\u0072\u0069\u0067\u0068\u0074s\u0065\u0072\u0069\u0066",0x300c:"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074",0xff62:"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068",0xfe41:"\u0063o\u0072\u006e\u0065\u0072b\u0072\u0061\u0063\u006b\u0065t\u006ce\u0066t\u0076\u0065\u0072\u0074\u0069\u0063\u0061l",0x300d:"\u0063o\u0072n\u0065\u0072\u0062\u0072\u0061c\u006b\u0065t\u0072\u0069\u0067\u0068\u0074",0xff63:"c\u006f\u0072\u006e\u0065\u0072\u0062r\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068t\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068",0xfe42:"\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074i\u0063\u0061\u006c",0x337f:"\u0063\u006f\u0072\u0070\u006f\u0072\u0061\u0074\u0069\u006f\u006e\u0073q\u0075\u0061\u0072\u0065",0x33c7:"\u0063\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x33c6:"\u0063\u006f\u0076\u0065\u0072\u006b\u0067\u0073\u0071\u0075\u0061\u0072\u0065",0x249e:"\u0063\u0070\u0061\u0072\u0065\u006e",0x20a2:"\u0063\u0072\u0075\u007a\u0065\u0069\u0072\u006f",0x0227:"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068",0x0297:"\u0063\u0073\u0074\u0072\u0065\u0074\u0063\u0068\u0065\u0064",0x2acf:"\u0063\u0073\u0075\u0062",0x2ad1:"\u0063\u0073\u0075b\u0065",0x2ad0:"\u0063\u0073\u0075\u0070",0x2ad2:"\u0063\u0073\u0075p\u0065",0x221b:"\u0063\u0075\u0062\u0065\u0072\u006f\u006f\u0074",0x2a48:"\u0063u\u0070\u0062\u0061\u0072\u0063\u0061p",0x228d:"\u0063\u0075\u0070\u0064\u006f\u0074",0x228c:"\u0063\u0075\u0070l\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2a46:"\u0063\u0075\u0070\u006f\u0076\u0065\u0072\u0063\u0061\u0070",0x2a45:"\u0063\u0075\u0070\u0076\u0065\u0065",0x22cf:"\u0063\u0075\u0072\u006c\u0079\u0061\u006e\u0064",0x21ab:"\u0063u\u0072\u006c\u0079\u006c\u0065\u0066t",0x22ce:"\u0063u\u0072\u006c\u0079\u006f\u0072",0x21ac:"\u0063\u0075\u0072\u006c\u0079\u0072\u0069\u0067\u0068\u0074",0x00a4:"\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079",0x293d:"\u0063u\u0072v\u0065\u0061\u0072\u0072\u006fw\u006c\u0065f\u0074\u0070\u006c\u0075\u0073",0x293c:"c\u0075r\u0076\u0065\u0061\u0072\u0072\u006f\u0077\u0072i\u0067\u0068\u0074\u006din\u0075\u0073",0x2941:"\u0063\u0077\u0063\u0069\u0072\u0063\u006c\u0065\u0061\u0072\u0072\u006f\u0077",0x21bb:"\u0063\u0077\u006f\u0070\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065a\u0072\u0072\u006f\u0077",0x2938:"\u0063w\u0072i\u0067\u0068\u0074\u0061\u0072\u0063\u0061\u0072\u0072\u006f\u0077",0x293e:"\u0063\u0077\u0075\u006e\u0064\u0065\u0072\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077",0xf6d1:"\u0063\u0079\u0072\u0042\u0072\u0065\u0076\u0065",0xf6d2:"\u0063y\u0072\u0046\u006c\u0065\u0078",0xf6d4:"\u0063\u0079\u0072\u0062\u0072\u0065\u0076\u0065",0xf6d5:"\u0063y\u0072\u0066\u006c\u0065\u0078",0x0064:"\u0064",0x0564:"\u0064\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x09a6:"\u0064a\u0062\u0065\u006e\u0067\u0061\u006ci",0x0926:"\u0064\u0061\u0064\u0065\u0076\u0061",0xfebe:"\u0064\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfebf:"\u0064\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfebd:"d\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfec0:"\u0064a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x05bc:"\u0064\u0061\u0067\u0065\u0073\u0068",0x2020:"\u0064\u0061\u0067\u0067\u0065\u0072",0x2021:"\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l",0x0aa6:"\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a26:"\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3060:"\u0064\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c0:"\u0064\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xfb33:"d\u0061\u006c\u0065\u0074\u0064\u0061\u0067\u0065\u0073\u0068",0x2138:"\u0064\u0061\u006c\u0065\u0074\u0068",0x05d3:"\u0064\u0061\u006c\u0065\u0074\u0071\u0061\u006d\u0061\u0074\u0073\u0068e\u0062\u0072\u0065\u0077",0xfeaa:"\u0064\u0061\u006c\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfea9:"d\u0061\u006c\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x064f:"d\u0061\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfe78:"\u0064\u0061\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe821:"\u0064\u0061\u006d\u006d\u0061\u006c\u006f\u0077",0xfe79:"d\u0061\u006d\u006d\u0061\u006d\u0065\u0064\u0069\u0061\u006c",0xe835:"\u0064\u0061\u006dm\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0xfe72:"\u0064\u0061m\u006d\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe824:"d\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u006c\u006f\u0077",0xe836:"\u0064a\u006dm\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0x0964:"\u0064\u0061\u006ed\u0061",0x2621:"\u0064\u0061\u006e\u0067\u0065\u0072",0x05a7:"\u0064a\u0072g\u0061\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x2ae3:"\u0064\u0061\u0073h\u0056",0x27db:"\u0064a\u0073\u0068\u0056\u0064\u0061\u0073h",0x2239:"\u0064a\u0073\u0068\u0063\u006f\u006c\u006fn",0x296b:"\u0064\u0061\u0073\u0068le\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e",0x296d:"d\u0061s\u0068\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e",0x0485:"\u0064a\u0073\u0069\u0061\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062",0x290f:"\u0064b\u006b\u0061\u0072\u006f\u0077",0xf6d3:"\u0064\u0062\u006c\u0047\u0072\u0061\u0076\u0065",0x300a:"\u0064\u0062\u006c\u0061ng\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xfe3d:"d\u0062\u006c\u0061\u006e\u0067\u006ce\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074\u0076\u0065r\u0074i\u0063\u0061\u006c",0x300b:"d\u0062l\u0061\u006e\u0067\u006c\u0065\u0062\u0072\u0061c\u006b\u0065\u0074\u0072ig\u0068\u0074",0xfe3e:"\u0064\u0062\u006c\u0061n\u0067\u006c\u0065\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069g\u0068\u0074\u0076\u0065\u0072\u0074\u0069c\u0061\u006c",0x032b:"\u0064\u0062\u006car\u0063\u0068\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x21ca:"d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0064\u0077\u006e",0x058a:"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u0064\u006f\u0077\u006e",0x219e:"\u0064\u0062l\u0061\u0072\u0072o\u0077\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074",0x21a0:"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068\u0065\u0061\u0064r\u0069\u0067\u0068\u0074",0x0588:"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0068e\u0061\u0064\u0075\u0070",0x21c8:"\u0064\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0075\u0070",0x27e6:"\u0064\u0062\u006c\u0062\u0072\u0061\u0063\u006b\u0065t\u006c\u0065\u0066\u0074",0x27e7:"\u0064b\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0x0965:"\u0064\u0062\u006c\u0064\u0061\u006e\u0064\u0061",0xf6d6:"\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065",0x030f:"d\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062",0x222c:"d\u0062\u006c\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",0x0333:"\u0064\u0062\u006c\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062",0x033f:"\u0064\u0062\u006c\u006f\u0076\u0065\u0072\u006c\u0069n\u0065\u0063\u006d\u0062",0x02ba:"d\u0062\u006c\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064",0x2016:"\u0064\u0062\u006c\u0076\u0065\u0072\u0074\u0069\u0063a\u006c\u0062\u0061\u0072",0x030e:"\u0064\u0062\u006cve\u0072\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u0061\u0062\u006f\u0076\u0065\u0063\u006d\u0062",0x3109:"\u0064b\u006f\u0070\u006f\u006d\u006f\u0066o",0x33c8:"\u0064\u0062\u0073\u0071\u0075\u0061\u0072\u0065",0x010f:"\u0064\u0063\u0061\u0072\u006f\u006e",0xf811:"\u0064c\u0061\u0072\u006f\u006e\u0031",0x1e11:"\u0064\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24d3:"\u0064c\u0069\u0072\u0063\u006c\u0065",0x1e13:"\u0064\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x09a1:"\u0064\u0064\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0921:"\u0064d\u0061\u0064\u0065\u0076\u0061",0x0aa1:"d\u0064\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a21:"d\u0064\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfb89:"\u0064d\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x20dc:"\u0064\u0064\u0064\u0064\u006f\u0074",0x095c:"\u0064d\u0064\u0068\u0061\u0064\u0065\u0076a",0x20db:"\u0064\u0064\u0064o\u0074",0x09a2:"d\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0922:"\u0064\u0064\u0068\u0061\u0064\u0065\u0076\u0061",0x0aa2:"\u0064\u0064\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a22:"\u0064\u0064\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x1e0b:"\u0064\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e0d:"\u0064d\u006f\u0074\u0062\u0065\u006c\u006fw",0x22f1:"\u0064\u0064\u006ft\u0073",0x2a77:"\u0064d\u006f\u0074\u0073\u0065\u0071",0x066b:"\u0064\u0065\u0063im\u0061\u006c\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x225c:"\u0064e\u0066\u0069\u006e\u0065\u0073",0x00b0:"\u0064\u0065\u0067\u0072\u0065\u0065",0x212a:"\u0064\u0065\u0067r\u0065\u0065\u006b\u0065\u006c\u0076\u0069\u006e",0x05ad:"\u0064\u0065\u0068\u0069\u0068\u0065\u0062\u0072\u0065\u0077",0x3067:"\u0064\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x03ef:"\u0064e\u0069\u0063\u006f\u0070\u0074\u0069c",0x30c7:"\u0064\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x05ba:"\u0064\u0065\u006c\u0065\u0074\u0065",0x232b:"\u0064\u0065\u006c\u0065\u0074\u0065\u006c\u0065\u0066\u0074",0x2326:"d\u0065\u006c\u0065\u0074\u0065\u0072\u0069\u0067\u0068\u0074",0x03b4:"\u0064\u0065\u006ct\u0061",0x018d:"d\u0065\u006c\u0074\u0061\u0074\u0075\u0072\u006e\u0065\u0064",0x09f8:"d\u0065\u006e\u006f\u006d\u0069\u006ea\u0074\u006f\u0072\u006d\u0069\u006eu\u0073\u006f\u006e\u0065\u006e\u0075\u006de\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061l\u0069",0x02a4:"\u0064\u0065\u007a\u0068",0x09a7:"\u0064\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0927:"\u0064h\u0061\u0064\u0065\u0076\u0061",0x0aa7:"d\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a27:"d\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0257:"\u0064\u0068\u006fo\u006b",0x0088:"\u0064i\u0061\u0065\u0072\u0065\u0073\u0069s",0x0344:"\u0064\u0069\u0061\u006c\u0079\u0074\u0069\u006b\u0061\u0074\u006f\u006eo\u0073\u0063\u006d\u0062",0x2300:"\u0064\u0069\u0061\u006d\u0065\u0074\u0065\u0072",0x2666:"\u0064i\u0061\u006d\u006f\u006e\u0064",0x2b19:"\u0064i\u0061m\u006f\u006e\u0064\u0062\u006f\u0074\u0062\u006c\u0061\u0063\u006b",0x27d0:"d\u0069\u0061\u006d\u006f\u006e\u0064\u0063\u0064\u006f\u0074",0x291d:"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x291f:"\u0064\u0069\u0061\u006don\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072",0x2b16:"\u0064\u0069a\u006d\u006f\u006ed\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b",0x22c4:"d\u0069\u0061\u006d\u006f\u006e\u0064\u006d\u0061\u0074\u0068",0x2b17:"\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0072\u0069\u0067\u0068\u0074b\u006c\u0061\u0063\u006b",0x2662:"\u0064\u0069a\u006d\u006f\u006ed\u0073\u0075\u0069\u0074\u0077\u0068\u0069\u0074\u0065",0x2b18:"\u0064i\u0061m\u006f\u006e\u0064\u0074\u006f\u0070\u0062\u006c\u0061\u0063\u006b",0x2680:"\u0064\u0069\u0063e\u0069",0x2681:"\u0064\u0069\u0063\u0065\u0069\u0069",0x2682:"\u0064i\u0063\u0065\u0069\u0069\u0069",0x2683:"\u0064\u0069\u0063\u0065\u0069\u0076",0x2684:"\u0064\u0069\u0063e\u0076",0x2685:"\u0064\u0069\u0063\u0065\u0076\u0069",0x00a8:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0xf005:"\u0064i\u0065\u0072\u0065\u0073\u0069\u00731",0xf6d7:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0061\u0063\u0075\u0074\u0065",0x0324:"\u0064\u0069e\u0072\u0065\u0073i\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0308:"d\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u006d\u0062",0xf6d8:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0067\u0072\u0061\u0076\u0065",0x0385:"\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0074\u006f\u006e\u006f\u0073",0x224f:"\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065",0x3062:"\u0064\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c2:"\u0064\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x22f2:"\u0064\u0069\u0073i\u006e",0x2a08:"\u0064i\u0073\u006a\u0071\u0075\u0061\u006et",0x3003:"\u0064i\u0074\u0074\u006f\u006d\u0061\u0072k",0x00f7:"\u0064\u0069\u0076\u0069\u0064\u0065",0x22c7:"\u0064\u0069\u0076\u0069\u0064\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079",0x2223:"\u0064i\u0076\u0069\u0064\u0065\u0073",0x2215:"\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u006c\u0061\u0073\u0068",0x0452:"d\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2593:"\u0064k\u0073\u0068\u0061\u0064\u0065",0xf823:"\u0064\u006b\u0073\u0068\u0061\u0064\u0065\u0031",0x1e0f:"\u0064\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x3397:"\u0064\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x0111:"\u0064m\u0061\u0063\u0072\u006f\u006e",0xff44:"\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2584:"\u0064n\u0062\u006c\u006f\u0063\u006b",0x2581:"\u0064\u006e\u0065i\u0067\u0068\u0074\u0062\u006c\u006f\u0063\u006b",0x2585:"\u0064\u006e\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b",0x2582:"\u0064\u006e\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b",0x2587:"\u0064n\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x2583:"\u0064n\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x2586:"\u0064\u006e\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b",0x0e0e:"d\u006f\u0063\u0068\u0061\u0064\u0061\u0074\u0068\u0061\u0069",0x0e14:"\u0064o\u0064\u0065\u006b\u0074\u0068\u0061i",0x3069:"\u0064\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c9:"\u0064\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0024:"\u0064\u006f\u006c\u006c\u0061\u0072",0xf6e3:"\u0064\u006f\u006c\u006c\u0061\u0072\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff04:"\u0064o\u006cl\u0061\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf724:"\u0064\u006f\u006c\u006c\u0061\u0072\u006f\u006c\u0064s\u0074\u0079\u006c\u0065",0xfe69:"d\u006f\u006c\u006c\u0061\u0072\u0073\u006d\u0061\u006c\u006c",0xf6e4:"\u0064\u006f\u006c\u006c\u0061\u0072\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0x20ab:"\u0064\u006f\u006e\u0067",0x3326:"\u0064\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x02d9:"\u0064o\u0074\u0061\u0063\u0063\u0065\u006et",0x0307:"\u0064\u006f\u0074a\u0063\u0063\u0065\u006e\u0074\u0063\u006d\u0062",0x0323:"\u0064\u006f\u0074b\u0065\u006c\u006f\u0077\u0063\u006f\u006d\u0062",0xf820:"\u0064\u006f\u0074\u0063\u0069\u0072\u0063\u006c\u0065\u0031",0x2a67:"\u0064\u006f\u0074\u0065\u0071\u0075\u0069\u0076",0x30fb:"d\u006f\u0074\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0131:"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0069",0xf6be:"\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u006a",0x0284:"\u0064o\u0074l\u0065\u0073\u0073\u006a\u0073t\u0072\u006fk\u0065\u0068\u006f\u006f\u006b",0x22c5:"\u0064o\u0074\u006d\u0061\u0074\u0068",0x2238:"\u0064\u006f\u0074\u006d\u0069\u006e\u0075\u0073",0x2214:"\u0064o\u0074\u0070\u006c\u0075\u0073",0x2a6a:"\u0064\u006f\u0074\u0073\u0069\u006d",0x223a:"\u0064\u006f\u0074\u0073\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074\u0073",0x25cc:"\u0064\u006f\u0074t\u0065\u0064\u0063\u0069\u0072\u0063\u006c\u0065",0x2b1a:"\u0064\u006f\u0074t\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x2a30:"\u0064\u006f\u0074\u0074\u0069\u006d\u0065\u0073",0x2a62:"\u0064\u006f\u0075b\u006c\u0065\u0062\u0061\u0072\u0076\u0065\u0065",0x29fa:"\u0064\u006f\u0075\u0062\u006c\u0065\u0070\u006c\u0075\u0073",0x2913:"\u0064\u006f\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072",0x2908:"\u0064o\u0077n\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064",0x297f:"\u0064\u006f\u0077n\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x2959:"\u0064o\u0077n\u0068\u0061\u0072\u0070\u006fo\u006e\u006ce\u0066\u0074\u0062\u0061\u0072",0x2955:"\u0064\u006f\u0077\u006eha\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0061\u0072",0x2965:"d\u006f\u0077\u006e\u0068ar\u0070o\u006f\u006e\u0073\u006c\u0065f\u0074\u0072\u0069\u0067\u0068\u0074",0x2935:"d\u006fw\u006e\u0072\u0069\u0067\u0068\u0074\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077",0x29f9:"\u0064o\u0077\u006e\u0073\u006c\u006f\u0070e",0x031e:"\u0064\u006fw\u006e\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x02d5:"d\u006f\u0077\u006e\u0074\u0061\u0063\u006b\u006d\u006f\u0064",0x29e8:"d\u006f\u0077\u006e\u0074ri\u0061n\u0067\u006c\u0065\u006c\u0065f\u0074\u0062\u006c\u0061\u0063\u006b",0x29e9:"\u0064\u006f\u0077\u006etr\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074\u0062\u006c\u0061c\u006b",0x21f5:"\u0064\u006f\u0077n\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0073",0x296f:"\u0064\u006f\u0077nu\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x21af:"\u0064o\u0077n\u007a\u0069\u0067\u007a\u0061\u0067\u0061\u0072\u0072\u006f\u0077",0x249f:"\u0064\u0070\u0061\u0072\u0065\u006e",0x2910:"\u0064\u0072\u0062\u006b\u0061\u0072\u006f\u0077",0x29f6:"\u0064\u0073\u006f\u006c",0x2a64:"\u0064\u0073\u0075\u0062",0xf6eb:"\u0064s\u0075\u0070\u0065\u0072\u0069\u006fr",0x0256:"\u0064\u0074\u0061i\u006c",0x018c:"\u0064t\u006f\u0070\u0062\u0061\u0072",0x29df:"\u0064u\u0061\u006c\u006d\u0061\u0070",0x3065:"\u0064\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c5:"\u0064\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0234:"\u0064\u0079\u006fg\u0068",0x01f3:"\u0064\u007a",0x02a3:"\u0064\u007a\u0061\u006c\u0074\u006f\u006e\u0065",0x01c6:"\u0064z\u0063\u0061\u0072\u006f\u006e",0x02a5:"\u0064\u007a\u0063\u0075\u0072\u006c",0x04e1:"d\u007ae\u0061\u0062\u006b\u0068\u0061\u0073\u0069\u0061n\u0063\u0079\u0072\u0069ll\u0069\u0063",0x045f:"\u0064\u007a\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0065:"\u0065",0x00e9:"\u0065\u0061\u0063\u0075\u0074\u0065",0x2641:"\u0065\u0061\u0072t\u0068",0x098f:"\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x311c:"\u0065b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0115:"\u0065\u0062\u0072\u0065\u0076\u0065",0x090d:"e\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061",0x0a8d:"\u0065c\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0945:"e\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061",0x0ac5:"\u0065c\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x011b:"\u0065\u0063\u0061\u0072\u006f\u006e",0x1e1d:"\u0065\u0063\u0065\u0064\u0069\u006c\u006c\u0061\u0062\u0072\u0065\u0076\u0065",0x0565:"e\u0063\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0587:"\u0065c\u0068y\u0069\u0077\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24d4:"\u0065c\u0069\u0072\u0063\u006c\u0065",0x00ea:"e\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ebf:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1e19:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1ec7:"\u0065\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ec1:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ec3:"e\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0x1ec5:"\u0065\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x0454:"\u0065c\u0079\u0072\u0069\u006c\u006c\u0069c",0x0205:"\u0065d\u0062\u006c\u0067\u0072\u0061\u0076e",0x090f:"\u0065\u0064\u0065v\u0061",0x00eb:"\u0065d\u0069\u0065\u0072\u0065\u0073\u0069s",0x0117:"\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1eb9:"\u0065d\u006f\u0074\u0062\u0065\u006c\u006fw",0x0a0f:"\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a47:"\u0065e\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x00e8:"\u0065\u0067\u0072\u0061\u0076\u0065",0x2a98:"\u0065\u0067\u0073\u0064\u006f\u0074",0x0a8f:"\u0065g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0567:"\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x311d:"\u0065\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x3048:"\u0065h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ebb:"\u0065\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x311f:"\u0065\u0069\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0038:"\u0065\u0069\u0067h\u0074",0x09ee:"\u0065\u0069\u0067h\u0074\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096e:"\u0065i\u0067\u0068\u0074\u0064\u0065\u0076a",0x2471:"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2485:"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2499:"\u0065\u0069\u0067\u0068\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0aee:"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6e:"\u0065\u0069\u0067\u0068\u0074\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0668:"\u0065i\u0067h\u0074\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",0x3028:"\u0065\u0069\u0067\u0068\u0074\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x266b:"\u0065\u0069g\u0068\u0074\u0068n\u006f\u0074\u0065\u0062\u0065\u0061\u006d\u0065\u0064",0x3227:"e\u0069\u0067\u0068\u0074id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e",0x2088:"\u0065\u0069\u0067\u0068\u0074\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff18:"\u0065\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xf738:"\u0065\u0069\u0067\u0068\u0074\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x247b:"\u0065\u0069\u0067\u0068\u0074\u0070\u0061\u0072\u0065\u006e",0x248f:"e\u0069\u0067\u0068\u0074\u0070\u0065\u0072\u0069\u006f\u0064",0x06f8:"\u0065\u0069\u0067h\u0074\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2177:"\u0065\u0069\u0067\u0068\u0074\u0072\u006f\u006d\u0061\u006e",0x2078:"\u0065\u0069\u0067\u0068\u0074\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e58:"\u0065i\u0067\u0068\u0074\u0074\u0068\u0061i",0x0207:"\u0065\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x0465:"\u0065\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x30a8:"\u0065k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff74:"\u0065k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x0a74:"\u0065k\u006fn\u006b\u0061\u0072\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3154:"\u0065k\u006f\u0072\u0065\u0061\u006e",0x043b:"\u0065\u006c\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2208:"\u0065l\u0065\u006d\u0065\u006e\u0074",0x246a:"\u0065\u006c\u0065v\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x247e:"e\u006c\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2492:"\u0065\u006c\u0065v\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x217a:"e\u006c\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x23e7:"\u0065\u006c\u0069\u006e\u0074\u0065\u0072\u0073",0x2026:"\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073",0x22ee:"\u0065\u006cl\u0069\u0070\u0073i\u0073\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x2a97:"\u0065\u006c\u0073\u0064\u006f\u0074",0x0113:"\u0065m\u0061\u0063\u0072\u006f\u006e",0x1e17:"\u0065\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e15:"\u0065\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x043c:"\u0065\u006d\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2014:"\u0065\u006d\u0064\u0061\u0073\u0068",0xfe31:"\u0065\u006d\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0xff45:"\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x055b:"e\u006dp\u0068\u0061\u0073\u0069\u0073\u006d\u0061\u0072k\u0061\u0072\u006d\u0065ni\u0061\u006e",0x2205:"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074",0x29b3:"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072",0x29b4:"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0061\u0072\u0072\u006c",0x29b1:"\u0065\u006d\u0070t\u0079\u0073\u0065\u0074\u006f\u0062\u0061\u0072",0x29b2:"\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074\u006f\u0063\u0069\u0072\u0063",0xd801:"\u0065m\u0070\u0074\u0079\u0073\u006c\u006ft",0x2001:"\u0065\u006d\u0071\u0075\u0061\u0064",0x2003:"\u0065m\u0073\u0070\u0061\u0063\u0065",0x3123:"\u0065\u006e\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x20df:"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064\u0069a\u006d\u006f\u006e\u0064",0x20de:"\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0073\u0071\u0075\u0061\u0072\u0065",0x20e4:"\u0065n\u0063l\u006f\u0073\u0065\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x2013:"\u0065\u006e\u0064\u0061\u0073\u0068",0xfe32:"\u0065\u006e\u0064\u0061\u0073\u0068\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x04a3:"\u0065\u006e\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x014b:"\u0065\u006e\u0067",0x3125:"e\u006e\u0067\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x04a5:"\u0065\u006e\u0067\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04c8:"\u0065\u006e\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x2000:"\u0065\u006e\u0071\u0075\u0061\u0064",0x2002:"\u0065n\u0073\u0070\u0061\u0063\u0065",0x0119:"\u0065o\u0067\u006f\u006e\u0065\u006b",0x3153:"\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e",0x025b:"\u0065\u006f\u0070e\u006e",0x029a:"e\u006f\u0070\u0065\u006e\u0063\u006c\u006f\u0073\u0065\u0064",0x025c:"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x025e:"\u0065\u006f\u0070\u0065nr\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u006c\u006f\u0073\u0065\u0064",0x025d:"\u0065\u006f\u0070\u0065\u006e\u0072\u0065\u0076\u0065\u0072\u0073\u0065d\u0068\u006f\u006f\u006b",0x24a0:"\u0065\u0070\u0061\u0072\u0065\u006e",0x29e3:"\u0065\u0070\u0061\u0072\u0073\u006c",0x03b5:"\u0065p\u0073\u0069\u006c\u006f\u006e",0x03f5:"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0031",0x022a:"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0063\u006c\u006f\u0073\u0065\u0064",0x03f6:"\u0065\u0070\u0073\u0069\u006c\u006f\u006e\u0069\u006e\u0076",0x03ad:"\u0065\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x2255:"\u0065q\u0063\u006f\u006c\u006f\u006e",0x225d:"\u0065\u0071\u0064e\u0066",0x2a66:"\u0065\u0071\u0064o\u0074",0x2a75:"\u0065\u0071\u0065\u0071",0x2a76:"\u0065\u0071\u0065\u0071\u0065\u0071",0x22dd:"\u0065\u0071\u0067t\u0072",0x22dc:"\u0065\u0071\u006c\u0065\u0073\u0073",0x2a9a:"\u0065\u0071\u0071\u0067\u0074\u0072",0x2a99:"\u0065q\u0071\u006c\u0065\u0073\u0073",0x2a71:"\u0065q\u0071\u0070\u006c\u0075\u0073",0x2a73:"\u0065\u0071\u0071\u0073\u0069\u006d",0x2a9c:"e\u0071\u0071\u0073\u006c\u0061\u006e\u0074\u0067\u0074\u0072",0x2a9b:"\u0065\u0071\u0071s\u006c\u0061\u006e\u0074\u006c\u0065\u0073\u0073",0x003d:"\u0065\u0071\u0075a\u006c",0x2b40:"\u0065\u0071\u0075\u0061\u006c\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0xff1d:"\u0065\u0071\u0075\u0061\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x22df:"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0066\u006fl\u006c\u006f\u0077\u0073",0x2a96:"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0067\u0072e\u0061\u0074\u0065\u0072",0x2a95:"e\u0071\u0075\u0061\u006c\u006f\u0072\u006c\u0065\u0073\u0073",0x22de:"\u0065q\u0075a\u006c\u006f\u0072\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073",0x2242:"\u0065\u0071\u0075\u0061\u006c\u006f\u0072\u0073\u0069m\u0069\u006c\u0061\u0072",0x22d5:"\u0065\u0071\u0075\u0061\u006c\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x2971:"\u0065q\u0075a\u006c\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0xfe66:"\u0065\u0071\u0075\u0061\u006c\u0073\u006d\u0061\u006c\u006c",0x208c:"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0062",0x207c:"\u0065\u0071\u0075\u0061\u006c\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2a78:"\u0065q\u0075\u0069\u0076\u0044\u0044",0x2a68:"\u0065q\u0075\u0069\u0076\u0056\u0065\u0072t",0x2a69:"\u0065\u0071\u0075\u0069\u0076\u0056\u0076\u0065\u0072\u0074",0x2261:"e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0063\u0065",0x224d:"\u0065q\u0075i\u0076\u0061\u0073\u0079\u006d\u0070\u0074\u006f\u0074\u0069\u0063",0x29e5:"\u0065\u0071\u0076\u0070\u0061\u0072\u0073\u006c",0x3126:"\u0065\u0072\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x0440:"\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0258:"\u0065r\u0065\u0076\u0065\u0072\u0073\u0065d",0x044d:"\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x29f3:"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0063i\u0072\u0063\u006c\u0065",0x29f1:"\u0065r\u0072b\u0061\u0072\u0062\u006c\u0061c\u006b\u0064i\u0061\u006d\u006f\u006e\u0064",0x29ef:"\u0065\u0072\u0072\u0062\u0061\u0072\u0062\u006c\u0061\u0063\u006b\u0073q\u0075\u0061\u0072\u0065",0x29f2:"\u0065\u0072\u0072b\u0061\u0072\u0063\u0069\u0072\u0063\u006c\u0065",0x29f0:"\u0065\u0072\u0072\u0062\u0061\u0072\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x29ee:"\u0065\u0072\u0072b\u0061\u0072\u0073\u0071\u0075\u0061\u0072\u0065",0x0441:"\u0065\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04ab:"\u0065\u0073\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0283:"\u0065\u0073\u0068",0x0286:"\u0065s\u0068\u0063\u0075\u0072\u006c",0x090e:"\u0065\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061",0x0946:"\u0065\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x01aa:"\u0065s\u0068r\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006c\u006f\u006f\u0070",0x0285:"\u0065\u0073h\u0073\u0071\u0075a\u0074\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x3047:"\u0065\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a7:"\u0065\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff6a:"\u0065\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x212e:"\u0065s\u0074\u0069\u006d\u0061\u0074\u0065d",0xf6ec:"\u0065s\u0075\u0070\u0065\u0072\u0069\u006fr",0x03b7:"\u0065\u0074\u0061",0x0568:"\u0065\u0074\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03ae:"\u0065\u0074\u0061\u0074\u006f\u006e\u006f\u0073",0x00f0:"\u0065\u0074\u0068",0x1ebd:"\u0065\u0074\u0069\u006c\u0064\u0065",0x1e1b:"e\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x0591:"\u0065\u0074\u006e\u0061\u0068\u0074\u0061\u006c\u0065\u0066\u0074\u0068e\u0062\u0072\u0065\u0077",0x01dd:"\u0065t\u0075\u0072\u006e\u0065\u0064",0x3161:"\u0065\u0075\u006b\u006f\u0072\u0065\u0061\u006e",0x20a0:"\u0065\u0075\u0072o\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079",0x09c7:"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x0947:"\u0065\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0ac7:"\u0065v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0021:"\u0065\u0078\u0063\u006c\u0061\u006d",0x055c:"\u0065\u0078\u0063\u006c\u0061\u006d\u0061\u0072\u006de\u006e\u0069\u0061\u006e",0x203c:"\u0065x\u0063\u006c\u0061\u006d\u0064\u0062l",0x00a1:"\u0065\u0078\u0063\u006c\u0061\u006d\u0064\u006f\u0077\u006e",0xf7a1:"\u0065x\u0063l\u0061\u006d\u0064\u006f\u0077\u006e\u0073\u006d\u0061\u006c\u006c",0xff01:"\u0065x\u0063l\u0061\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf721:"e\u0078\u0063\u006c\u0061\u006d\u0073\u006d\u0061\u006c\u006c",0x2203:"e\u0078\u0069\u0073\u0074\u0065\u006e\u0074\u0069\u0061\u006c",0x0292:"\u0065\u007a\u0068",0x01ef:"\u0065\u007a\u0068\u0063\u0061\u0072\u006f\u006e",0x0293:"\u0065z\u0068\u0063\u0075\u0072\u006c",0x01b9:"e\u007a\u0068\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x01ba:"\u0065z\u0068\u0074\u0061\u0069\u006c",0x0066:"\u0066",0xf70c:"\u0066\u0037\u0030\u0063",0xf70e:"\u0066\u0037\u0030\u0065",0xf70a:"\u0066\u0037\u0030\u0061",0xf70d:"\u0066\u0037\u0030\u0064",0xf70f:"\u0066\u0037\u0030\u0066",0xf70b:"\u0066\u0037\u0030\u0062",0xf71c:"\u0066\u0037\u0031\u0063",0xf71d:"\u0066\u0037\u0031\u0064",0xf71a:"\u0066\u0037\u0031\u0061",0xf700:"\u0066\u0037\u0030\u0030",0xf701:"\u0066\u0037\u0030\u0031",0xf702:"\u0066\u0037\u0030\u0032",0xf703:"\u0066\u0037\u0030\u0033",0xf704:"\u0066\u0037\u0030\u0034",0xf705:"\u0066\u0037\u0030\u0035",0xf706:"\u0066\u0037\u0030\u0036",0xf707:"\u0066\u0037\u0030\u0037",0xf708:"\u0066\u0037\u0030\u0038",0xf709:"\u0066\u0037\u0030\u0039",0xf710:"\u0066\u0037\u0031\u0030",0xf711:"\u0066\u0037\u0031\u0031",0xf712:"\u0066\u0037\u0031\u0032",0xf713:"\u0066\u0037\u0031\u0033",0xf714:"\u0066\u0037\u0031\u0034",0xf715:"\u0066\u0037\u0031\u0035",0xf716:"\u0066\u0037\u0031\u0036",0xf717:"\u0066\u0037\u0031\u0037",0xf718:"\u0066\u0037\u0031\u0038",0xf719:"\u0066\u0037\u0031\u0039",0x095e:"\u0066\u0061\u0064\u0065\u0076\u0061",0x0a5e:"\u0066\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x2109:"\u0066\u0061\u0068\u0072\u0065\u006e\u0068\u0065\u0069\u0074",0x06cc:"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068",0xfbfd:"\u0066\u0061\u0072\u0073\u0069\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfbfc:"\u0066\u0061r\u0073\u0069\u0079e\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe77:"\u0066a\u0074h\u0061\u0068\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",0xfe76:"\u0066\u0061\u0074\u0068\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe820:"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077",0x064e:"\u0066\u0061\u0074\u0068\u0061\u006c\u006f\u0077\u0061r\u0061\u0062\u0069\u0063",0xe832:"\u0066\u0061\u0074h\u0061\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0xfe70:"\u0066\u0061t\u0068\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe823:"f\u0061\u0074\u0068\u0061\u0074\u0061\u006e\u006c\u006f\u0077",0xe833:"\u0066a\u0074h\u0061\u0074\u0061\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0x3108:"\u0066b\u006f\u0070\u006f\u006d\u006f\u0066o",0x29d3:"\u0066b\u006f\u0077\u0074\u0069\u0065",0x24d5:"\u0066c\u0069\u0072\u0063\u006c\u0065",0x2a3e:"\u0066\u0063\u006d\u0070",0x292f:"\u0066\u0064\u0069\u0061\u0067\u006f\u0076\u006e\u0065a\u0072\u0072\u006f\u0077",0x292c:"\u0066\u0064\u0069a\u0067\u006f\u0076\u0072\u0064\u0069\u0061\u0067",0x1e1f:"\u0066\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0586:"f\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfed2:"\u0066\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfed3:"\u0066\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfed1:"f\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfed4:"\u0066e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc31:"\u0066\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfc32:"\u0066e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x03e5:"\u0066e\u0069\u0063\u006f\u0070\u0074\u0069c",0x2640:"\u0066\u0065\u006d\u0061\u006c\u0065",0xfb00:"\u0066\u0066",0xfb03:"\u0066\u0066\u0069",0xfb04:"\u0066\u0066\u006c",0xfb01:"\u0066\u0069",0x246e:"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x2482:"\u0066\u0069\u0066t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2496:"\u0066\u0069\u0066\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x2012:"\u0066\u0069\u0067\u0075\u0072\u0065\u0064\u0061\u0073\u0068",0x2007:"f\u0069\u0067\u0075\u0072\u0065\u0073\u0070\u0061\u0063\u0065",0xfb3a:"f\u0069n\u0061\u006c\u006b\u0061\u0066\u0064\u0061\u0067e\u0073\u0068\u0068\u0065br\u0065\u0077",0xe803:"\u0066i\u006ea\u006c\u006b\u0061\u0066\u0077i\u0074\u0068q\u0061\u006d\u0061\u0074\u0073",0xe802:"\u0066\u0069\u006e\u0061\u006c\u006b\u0061\u0066\u0077\u0069\u0074\u0068s\u0068\u0065\u0076\u0061",0x05dd:"\u0066\u0069\u006e\u0061\u006c\u006d\u0065\u006d\u0068e\u0062\u0072\u0065\u0077",0x05e3:"\u0066\u0069\u006e\u0061\u006c\u0070\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x05e5:"\u0066\u0069\u006e\u0061\u006c\u0074\u0073\u0061\u0064\u0069",0x2a0f:"\u0066\u0069\u006e\u0074",0x02c9:"\u0066\u0069r\u0073\u0074\u0074o\u006e\u0065\u0063\u0068\u0069\u006e\u0065\u0073\u0065",0x25c9:"\u0066i\u0073\u0068\u0065\u0079\u0065",0x0035:"\u0066\u0069\u0076\u0065",0x0665:"\u0066\u0069\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063",0x09eb:"f\u0069\u0076\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096b:"\u0066\u0069\u0076\u0065\u0064\u0065\u0076\u0061",0x215d:"f\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073",0x0aeb:"\u0066\u0069\u0076e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6b:"\u0066\u0069\u0076e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3025:"\u0066\u0069\u0076e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3224:"f\u0069v\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e",0x2085:"\u0066\u0069\u0076e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff15:"\u0066\u0069\u0076\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf735:"\u0066\u0069\u0076e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2478:"\u0066i\u0076\u0065\u0070\u0061\u0072\u0065n",0x248c:"\u0066\u0069\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x06f5:"f\u0069\u0076\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2174:"\u0066i\u0076\u0065\u0072\u006f\u006d\u0061n",0x215a:"\u0066i\u0076\u0065\u0073\u0069\u0078\u0074h",0x2075:"\u0066\u0069\u0076e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e55:"\u0066\u0069\u0076\u0065\u0074\u0068\u0061\u0069",0xfb02:"\u0066\u006c",0x230a:"\u0066l\u006f\u006f\u0072\u006c\u0065\u0066t",0x230b:"\u0066\u006c\u006f\u006f\u0072\u0072\u0069\u0067\u0068\u0074",0x0192:"\u0066\u006c\u006f\u0072\u0069\u006e",0x23e5:"\u0066\u006c\u0074n\u0073",0xff46:"\u0066\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x3399:"\u0066\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x0e1f:"\u0066o\u0066\u0061\u006e\u0074\u0068\u0061i",0x0e1d:"\u0066\u006f\u0066\u0061\u0074\u0068\u0061\u0069",0x2aba:"\u0066o\u006cl\u006f\u0077\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076",0x2ab6:"\u0066\u006fl\u006c\u006f\u0077n\u006f\u0074\u0073\u006c\u006e\u0074\u0065\u0071\u006c",0x22e9:"\u0066\u006f\u006c\u006c\u006f\u0077\u006f\u0072\u006e\u006f\u0074\u0065q\u0076\u006c\u006e\u0074",0x2ab0:"\u0066\u006f\u006cl\u006f\u0077\u0073\u0065\u0071\u0075\u0061\u006c",0x227d:"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072c\u0075\u0072\u006c\u0079",0x227f:"\u0066\u006f\u006c\u006c\u006f\u0077\u0073\u006f\u0072e\u0071\u0075\u0061\u006c",0x0e4f:"f\u006f\u006e\u0067\u006d\u0061\u006e\u0074\u0068\u0061\u0069",0x22a9:"\u0066\u006f\u0072\u0063\u0065\u0073",0x22aa:"\u0066o\u0072\u0063\u0065\u0073\u0062\u0061r",0x22d4:"\u0066\u006f\u0072\u006b",0x2adc:"\u0066\u006f\u0072k\u0073",0x2add:"\u0066\u006f\u0072\u006b\u0073\u006e\u006f\u0074",0x2ad9:"\u0066\u006f\u0072k\u0076",0x0034:"\u0066\u006f\u0075\u0072",0x0664:"\u0066\u006f\u0075\u0072\u0061\u0072\u0061\u0062\u0069\u0063",0x09ea:"f\u006f\u0075\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096a:"\u0066\u006f\u0075\u0072\u0064\u0065\u0076\u0061",0x2158:"\u0066\u006f\u0075\u0072\u0066\u0069\u0066\u0074\u0068\u0073",0x0aea:"\u0066\u006f\u0075r\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6a:"\u0066\u006f\u0075r\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3024:"\u0066\u006f\u0075r\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3223:"f\u006fu\u0072\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e",0x2084:"\u0066\u006f\u0075r\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff14:"\u0066\u006f\u0075\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x09f7:"f\u006fu\u0072\u006e\u0075\u006d\u0065\u0072\u0061\u0074o\u0072\u0062\u0065\u006ega\u006c\u0069",0xf734:"\u0066\u006f\u0075r\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2477:"\u0066o\u0075\u0072\u0070\u0061\u0072\u0065n",0x2005:"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0065\u006ds\u0070\u0061\u0063\u0065",0x248b:"\u0066\u006f\u0075\u0072\u0070\u0065\u0072\u0069\u006f\u0064",0x06f4:"f\u006f\u0075\u0072\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2173:"\u0066o\u0075\u0072\u0072\u006f\u006d\u0061n",0x2074:"\u0066\u006f\u0075r\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x246d:"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2481:"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2495:"\u0066\u006f\u0075\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0e54:"\u0066\u006f\u0075\u0072\u0074\u0068\u0061\u0069",0x221c:"\u0066\u006f\u0075\u0072\u0074\u0068\u0072\u006f\u006f\u0074",0x02cb:"\u0066\u006f\u0075\u0072\u0074\u0068\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065",0x2999:"\u0066o\u0075\u0072\u0076\u0064\u006f\u0074s",0x24a1:"\u0066\u0070\u0061\u0072\u0065\u006e",0x2044:"\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e",0x20a3:"\u0066\u0072\u0061n\u0063",0x024b:"\u0066r\u006f\u006e\u0074\u0065\u0064",0x27d7:"\u0066\u0075\u006c\u006c\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e",0x0067:"\u0067",0x0997:"\u0067a\u0062\u0065\u006e\u0067\u0061\u006ci",0x01f5:"\u0067\u0061\u0063\u0075\u0074\u0065",0x0917:"\u0067\u0061\u0064\u0065\u0076\u0061",0x06af:"\u0067a\u0066\u0061\u0072\u0061\u0062\u0069c",0xfb93:"\u0067\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb94:"\u0067\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb92:"g\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb95:"\u0067a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0a97:"\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a17:"\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x304c:"\u0067\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ac:"\u0067\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x03b3:"\u0067\u0061\u006dm\u0061",0x0263:"\u0067a\u006dm\u0061\u006c\u0061\u0074\u0069\u006e\u0073\u006d\u0061\u006c\u006c",0x02e0:"\u0067\u0061\u006d\u006d\u0061\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x03eb:"\u0067\u0061\u006eg\u0069\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x310d:"\u0067b\u006f\u0070\u006f\u006d\u006f\u0066o",0x011f:"\u0067\u0062\u0072\u0065\u0076\u0065",0x01e7:"\u0067\u0063\u0061\u0072\u006f\u006e",0x0123:"\u0067\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24d6:"\u0067c\u0069\u0072\u0063\u006c\u0065",0x011d:"g\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0121:"\u0067\u0064\u006f\u0074",0x03cf:"\u0067\u0065\u0062a\u0072",0x3052:"\u0067\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b2:"\u0067\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x224e:"\u0067\u0065\u006f\u006d\u0065\u0071\u0075\u0069\u0076a\u006c\u0065\u006e\u0074",0x2251:"\u0067e\u006fm\u0065\u0074\u0072\u0069\u0063a\u006c\u006cy\u0065\u0071\u0075\u0061\u006c",0x2afa:"\u0067e\u0071\u0071\u0073\u006c\u0061\u006et",0x059c:"\u0067e\u0072e\u0073\u0068\u0061\u0063\u0063e\u006e\u0074h\u0065\u0062\u0072\u0065\u0077",0x05f3:"\u0067\u0065\u0072e\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x059d:"\u0067e\u0072e\u0073\u0068\u006d\u0075\u0071d\u0061\u006dh\u0065\u0062\u0072\u0065\u0077",0x00df:"\u0067\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073",0x059e:"g\u0065\u0072\u0073\u0068ay\u0069m\u0061\u0063\u0063\u0065\u006et\u0068\u0065\u0062\u0072\u0065\u0077",0x05f4:"\u0067e\u0072s\u0068\u0061\u0079\u0069\u006d\u0068\u0065\u0062\u0072\u0065\u0077",0x2aa9:"\u0067\u0065\u0073c\u0063",0x2a80:"\u0067\u0065\u0073\u0064\u006f\u0074",0x2a82:"\u0067e\u0073\u0064\u006f\u0074\u006f",0x2a84:"\u0067\u0065\u0073\u0064\u006f\u0074\u006f\u006c",0x2a94:"\u0067\u0065\u0073\u006c\u0065\u0073",0x3013:"\u0067\u0065\u0074\u0061\u006d\u0061\u0072\u006b",0x22d9:"\u0067\u0067\u0067",0x2af8:"\u0067g\u0067\u006e\u0065\u0073\u0074",0x0998:"\u0067\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0572:"\u0067\u0068\u0061d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0918:"\u0067h\u0061\u0064\u0065\u0076\u0061",0x0a98:"g\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a18:"g\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x063a:"g\u0068\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfece:"\u0067\u0068a\u0069\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfecf:"\u0067h\u0061i\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfecd:"\u0067\u0068\u0061\u0069\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfed0:"\u0067\u0068\u0061\u0069\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x0495:"g\u0068\u0065\u006d\u0069dd\u006ce\u0068\u006f\u006f\u006b\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0493:"\u0067\u0068\u0065\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0491:"\u0067\u0068\u0065\u0075\u0070\u0074\u0075\u0072\u006e\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x095a:"\u0067\u0068\u0068\u0061\u0064\u0065\u0076\u0061",0x0a5a:"\u0067\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0260:"\u0067\u0068\u006fo\u006b",0x3393:"\u0067h\u007a\u0073\u0071\u0075\u0061\u0072e",0x304e:"\u0067\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ae:"\u0067\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0563:"g\u0069\u006d\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2137:"\u0067\u0069\u006de\u006c",0xfb32:"\u0067\u0069\u006d\u0065\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",0x0453:"g\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x2a92:"\u0067\u006c\u0045",0x2aa5:"\u0067\u006c\u0061",0x29e6:"g\u006c\u0065\u0069\u0063\u0068\u0073\u0074\u0061\u0072\u006b",0x2aa4:"\u0067\u006c\u006a",0x0249:"\u0067l\u006f\u0074\u0074\u0061\u006c",0x01be:"g\u006c\u006f\u0074\u0074al\u0069n\u0076\u0065\u0072\u0074\u0065d\u0073\u0074\u0072\u006f\u006b\u0065",0x024a:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0072\u0065\u0076",0x0294:"g\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070",0x0231:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0062\u0061\u0072",0x0232:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0062a\u0072\u0072\u0065\u0076",0x0226:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u0069\u006e\u0076",0x0296:"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064",0x02c0:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074o\u0070\u006d\u006f\u0064",0x0295:"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x02c1:"\u0067\u006c\u006f\u0074ta\u006c\u0073\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u006do\u0064",0x02e4:"g\u006c\u006f\u0074\u0074\u0061\u006cs\u0074\u006f\u0070\u0072\u0065\u0076\u0065\u0072\u0073e\u0064\u0073\u0075p\u0065r\u0069\u006f\u0072",0x0225:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0072e\u0076\u0069\u006e\u0076",0x02a1:"\u0067\u006c\u006f\u0074\u0074\u0061\u006c\u0073\u0074\u006f\u0070\u0073t\u0072\u006f\u006b\u0065",0x02a2:"\u0067l\u006f\u0074\u0074\u0061l\u0073\u0074\u006f\u0070\u0073t\u0072o\u006be\u0072\u0065\u0076\u0065\u0072\u0073\u0065d",0x1e21:"\u0067m\u0061\u0063\u0072\u006f\u006e",0xff47:"\u0067\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x22e7:"\u0067\u006e\u0073i\u006d",0x3054:"\u0067\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b4:"\u0067\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x24a2:"\u0067\u0070\u0061\u0072\u0065\u006e",0x33ac:"\u0067p\u0061\u0073\u0071\u0075\u0061\u0072e",0x2207:"\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074",0x0060:"\u0067\u0072\u0061v\u0065",0x0316:"\u0067\u0072\u0061\u0076\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0300:"\u0067\u0072\u0061\u0076\u0065\u0063\u006d\u0062",0x0953:"\u0067r\u0061\u0076\u0065\u0064\u0065\u0076a",0x02b3:"\u0067\u0072\u0061\u0076\u0065\u006c\u0065\u0066\u0074\u006e\u006f\u0073\u0070",0x02ce:"g\u0072\u0061\u0076\u0065\u006c\u006f\u0077\u006d\u006f\u0064",0xff40:"\u0067\u0072\u0061\u0076\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x0340:"\u0067\u0072\u0061v\u0065\u0074\u006f\u006e\u0065\u0063\u006d\u0062",0x003e:"\u0067r\u0065\u0061\u0074\u0065\u0072",0x2a8c:"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u0062\u006c\u0065\u0071l\u006c\u0065\u0073\u0073",0x22d7:"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0064\u006f\u0074",0x2265:"\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c",0x22db:"\u0067r\u0065a\u0074\u0065\u0072\u0065\u0071u\u0061\u006co\u0072\u006c\u0065\u0073\u0073",0xff1e:"\u0067\u0072e\u0061\u0074\u0065r\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a8a:"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006ft\u0064\u0062l\u0065\u0071\u0075\u0061\u006c",0x2a88:"\u0067r\u0065a\u0074\u0065\u0072\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2a86:"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072a\u0070\u0070r\u006f\u0078\u0065\u0071\u006c",0x2273:"\u0067\u0072\u0065\u0061te\u0072\u006f\u0072\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074",0x2277:"\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006f\u0072\u006c\u0065\u0073\u0073",0x2269:"\u0067r\u0065a\u0074\u0065\u0072\u006f\u0072n\u006f\u0074d\u0062\u006c\u0065\u0071\u006c",0x2267:"\u0067\u0072e\u0061\u0074\u0065r\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c",0xfe65:"\u0067\u0072\u0065a\u0074\u0065\u0072\u0073\u006d\u0061\u006c\u006c",0x0261:"\u0067s\u0063\u0072\u0069\u0070\u0074",0x2a8e:"\u0067\u0073\u0069m\u0065",0x2a90:"\u0067\u0073\u0069m\u006c",0x01e5:"\u0067s\u0074\u0072\u006f\u006b\u0065",0x2aa7:"\u0067\u0074\u0063\u0063",0x2a7a:"\u0067\u0074\u0063i\u0072",0x29a0:"\u0067\u0074\u006c\u0070\u0061\u0072",0x2a7c:"\u0067t\u0071\u0075\u0065\u0073\u0074",0x2978:"\u0067\u0074\u0072\u0061\u0072\u0072",0x3050:"\u0067\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x00ab:"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074\u006c\u0065\u0066\u0074",0x00bb:"\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074r\u0069\u0067\u0068\u0074",0x2039:"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006c\u006c\u0065\u0066\u0074",0x203a:"\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006cr\u0069\u0067\u0068\u0074",0x30b0:"\u0067\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x3318:"\u0067\u0075\u0072a\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x33c9:"\u0067\u0079\u0073\u0071\u0075\u0061\u0072\u0065",0x0068:"\u0068",0x04a9:"\u0068\u0061\u0061\u0062kh\u0061\u0073\u0069\u0061\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x06c1:"\u0068\u0061\u0061\u006c\u0074\u006f\u006e\u0065\u0061r\u0061\u0062\u0069\u0063",0x09b9:"\u0068a\u0062\u0065\u006e\u0067\u0061\u006ci",0x029f:"\u0068\u0061\u0063e\u006b\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x04b3:"\u0068\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0939:"\u0068\u0061\u0064\u0065\u0076\u0061",0x0ab9:"\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a39:"\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfea2:"\u0068\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfea3:"\u0068\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x306f:"\u0068\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfea1:"h\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfea4:"\u0068a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcaa:"\u0068a\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0x200a:"\u0068a\u0069\u0072\u0073\u0070\u0061\u0063e",0x332a:"h\u0061\u0069\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x30cf:"\u0068\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8a:"\u0068\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0a4d:"\u0068\u0061\u006c\u0061\u006e\u0074\u0067\u0075\u0072m\u0075\u006b\u0068\u0069",0x0621:"\u0068\u0061m\u007a\u0061\u0064a\u006d\u006d\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfe80:"\u0068\u0061\u006d\u007a\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x3164:"\u0068\u0061\u006eg\u0075\u006c\u0066\u0069\u006c\u006c\u0065\u0072",0x044a:"\u0068\u0061r\u0064\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x21c3:"\u0068a\u0072p\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u006c\u0065\u0066\u0074",0x21c2:"\u0068\u0061r\u0070\u006f\u006fn\u0064\u006f\u0077\u006e\u0072\u0069\u0067\u0068\u0074",0x21bc:"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0062a\u0072\u0062\u0075\u0070",0x21cc:"\u0068\u0061r\u0070\u006f\u006fn\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x21c0:"\u0068a\u0072p\u006f\u006f\u006e\u0072\u0069g\u0068\u0074b\u0061\u0072\u0062\u0075\u0070",0x21cb:"\u0068\u0061r\u0070\u006f\u006fn\u0072\u0069\u0067\u0068\u0074\u006c\u0065\u0066\u0074",0x21bf:"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u006c\u0065\u0066\u0074",0x21be:"\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070r\u0069\u0067\u0068\u0074",0x23af:"\u0068\u0061\u0072\u0072\u006f\u0077\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x33ca:"\u0068\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x05b2:"\u0068\u0061\u0074a\u0066\u0070\u0061\u0074\u0061\u0068\u0031\u0036",0x05b3:"\u0068\u0061\u0074\u0061\u0066\u0071\u0061\u006d\u0061\u0074\u0073\u0032\u0038",0x05b1:"h\u0061t\u0061\u0066\u0073\u0065\u0067\u006f\u006c\u0077i\u0064\u0065\u0068\u0065br\u0065\u0077",0x2a6f:"\u0068a\u0074\u0061\u0070\u0070\u0072\u006fx",0x0127:"\u0068\u0062\u0061\u0072",0x310f:"\u0068b\u006f\u0070\u006f\u006d\u006f\u0066o",0x1e2b:"h\u0062\u0072\u0065\u0076\u0065\u0062\u0065\u006c\u006f\u0077",0x1e29:"\u0068\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24d7:"\u0068c\u0069\u0072\u0063\u006c\u0065",0x0125:"h\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x03f7:"\u0068\u0063\u0079\u0072\u0069\u006c",0x1e27:"\u0068d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e23:"\u0068\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e25:"\u0068d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2665:"\u0068\u0065\u0061r\u0074",0x2661:"\u0068\u0065\u0061\u0072\u0074\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065",0xfb34:"\u0068\u0065\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",0x0647:"\u0068e\u0068\u0061\u0072\u0061\u0062\u0069c",0xfba7:"h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u006c\u0074o\u006e\u0065\u0061\u0072ab\u0069\u0063",0xfeea:"\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfba5:"\u0068e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfba4:"h\u0065\u0068\u0068\u0061\u006d\u007aa\u0061\u0062\u006f\u0076\u0065\u0069\u0073\u006f\u006ca\u0074\u0065\u0064a\u0072a\u0062\u0069\u0063",0xfba8:"\u0068\u0065\u0068\u0069ni\u0074\u0069\u0061\u006c\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063",0xfeeb:"\u0068\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3078:"\u0068\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfee9:"h\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfba9:"h\u0065\u0068\u006d\u0065di\u0061l\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063",0xfeec:"\u0068e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcd8:"\u0068e\u0068w\u0069\u0074\u0068\u006d\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0x337b:"\u0068e\u0069s\u0065\u0069\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x30d8:"\u0068\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8d:"\u0068\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3336:"\u0068e\u006bu\u0074\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x0267:"\u0068\u0065\u006e\u0067\u0068\u006f\u006f\u006b",0x22b9:"\u0068\u0065\u0072m\u0069\u0074\u006d\u0061\u0074\u0072\u0069\u0078",0x3339:"\u0068\u0065\u0072u\u0074\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x2394:"\u0068e\u0078\u0061\u0067\u006f\u006e",0x2b23:"\u0068\u0065\u0078a\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b",0x0266:"\u0068\u0068\u006fo\u006b",0x023a:"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072",0x02b1:"\u0068\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x327b:"\u0068i\u0065u\u0068\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x321b:"\u0068\u0069\u0065\u0075\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x326d:"\u0068\u0069\u0065\u0075\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x314e:"h\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320d:"\u0068\u0069e\u0075\u0068\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x0674:"\u0068i\u0067\u0068\u0068\u0061\u006d\u007aa",0x3072:"\u0068\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d2:"\u0068\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8b:"\u0068\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05b4:"\u0068i\u0072\u0069\u0071\u0031\u0034",0x2924:"\u0068k\u006e\u0065\u0061\u0072\u0072\u006fw",0x2923:"\u0068k\u006e\u0077\u0061\u0072\u0072\u006fw",0x2925:"\u0068\u006b\u0073\u0065\u0061\u0072\u006f\u0077",0x2926:"\u0068\u006b\u0073\u0077\u0061\u0072\u006f\u0077",0x1e96:"\u0068\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff48:"\u0068\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0570:"\u0068\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0e2b:"\u0068o\u0068\u0069\u0070\u0074\u0068\u0061i",0x307b:"\u0068\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30db:"\u0068\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8e:"\u0068\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05b9:"\u0068o\u006ca\u006d\u0071\u0075\u0061\u0072t\u0065\u0072h\u0065\u0062\u0072\u0065\u0077",0x0e2e:"\u0068\u006f\u006eo\u006b\u0068\u0075\u006b\u0074\u0068\u0061\u0069",0x0309:"\u0068o\u006f\u006b\u0063\u006d\u0062",0x0321:"\u0068\u006f\u006fkp\u0061\u006c\u0061\u0074\u0061\u006c\u0069\u007a\u0065\u0064\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0322:"h\u006f\u006f\u006b\u0072et\u0072o\u0066\u006c\u0065\u0078\u0062e\u006c\u006f\u0077\u0063\u006d\u0062",0x3342:"\u0068\u006f\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065",0x03e9:"\u0068\u006f\u0072\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x2015:"\u0068\u006f\u0072\u0069\u007a\u006f\u006e\u0074\u0061\u006c\u0062\u0061\u0072",0x05a2:"\u0068\u006f\u0072\u0069\u007a\u0074\u0061\u0062",0x031b:"\u0068o\u0072\u006e\u0063\u006d\u0062",0x2668:"\u0068\u006f\u0074\u0073\u0070\u0072\u0069\u006e\u0067\u0073",0x29d6:"\u0068o\u0075\u0072\u0067\u006c\u0061\u0073s",0x2302:"\u0068\u006f\u0075s\u0065",0x24a3:"\u0068\u0070\u0061\u0072\u0065\u006e",0x25ad:"\u0068\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065",0x0239:"\u0068\u0073\u0075\u0070\u0065\u0072",0x02b0:"\u0068s\u0075\u0070\u0065\u0072\u0069\u006fr",0x0265:"\u0068t\u0075\u0072\u006e\u0065\u0064",0x3075:"\u0068\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x3333:"\u0068\u0075\u0069i\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x30d5:"\u0068\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8c:"\u0068\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x02dd:"\u0068\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0xf009:"\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0031",0x030b:"\u0068u\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074\u0063\u006d\u0062",0x0195:"\u0068\u0076",0x002d:"\u0068\u0079\u0070\u0068\u0065\u006e",0x2043:"\u0068\u0079\u0070h\u0065\u006e\u0062\u0075\u006c\u006c\u0065\u0074",0x2027:"\u0068y\u0070\u0068\u0065\u006e\u0064\u006ft",0xf6e5:"\u0068\u0079\u0070\u0068\u0065\u006e\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff0d:"\u0068y\u0070h\u0065\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe63:"h\u0079\u0070\u0068\u0065\u006e\u0073\u006d\u0061\u006c\u006c",0xf6e6:"\u0068\u0079\u0070\u0068\u0065\u006e\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0x2010:"\u0068y\u0070\u0068\u0065\u006e\u0074\u0077o",0x3030:"\u0068z\u0069\u0067\u007a\u0061\u0067",0x0069:"\u0069",0x00ed:"\u0069\u0061\u0063\u0075\u0074\u0065",0x01f8:"\u0069\u0062\u0061\u0072",0x0987:"\u0069\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x3127:"\u0069b\u006f\u0070\u006f\u006d\u006f\u0066o",0x012d:"\u0069\u0062\u0072\u0065\u0076\u0065",0x01d0:"\u0069\u0063\u0061\u0072\u006f\u006e",0x24d8:"\u0069c\u0069\u0072\u0063\u006c\u0065",0x00ee:"i\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0209:"\u0069d\u0062\u006c\u0067\u0072\u0061\u0076e",0x328f:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0065\u0061r\u0074\u0068\u0063\u0069rc\u006c\u0065",0x328b:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0066\u0069\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x323f:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0061\u006cl\u0069\u0061\u006e\u0063\u0065\u0070\u0061\u0072\u0065\u006e",0x323a:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u0061\u006c\u006c\u0070ar\u0065\u006e",0x32a5:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u0065\u006e\u0074\u0072\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x3006:"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006c\u006f\u0073\u0065",0x3001:"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0063\u006f\u006d\u006d\u0061",0xff64:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063c\u006f\u006d\u006d\u0061le\u0066\u0074",0x3237:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069c\u0063\u006f\u006e\u0067\u0072\u0061\u0074u\u006c\u0061\u0074\u0069\u006f\u006e\u0070\u0061\u0072\u0065\u006e",0x32a3:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0063\u006fr\u0072\u0065\u0063\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x322f:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0065\u0061\u0072t\u0068\u0070\u0061\u0072\u0065\u006e",0x323d:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u006e\u0074\u0065\u0072\u0070\u0072\u0069\u0073\u0065\u0070a\u0072\u0065\u006e",0x329d:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063e\u0078\u0063\u0065\u006c\u006c\u0065\u006e\u0074\u0063\u0069r\u0063\u006c\u0065",0x3240:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0066\u0065s\u0074\u0069\u0076\u0061\u006c\u0070\u0061\u0072\u0065\u006e",0x3296:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u006e\u0061\u006e\u0063\u0069\u0061\u006c\u0063\u0069r\u0063\u006c\u0065",0x3236:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0066i\u006ea\u006ec\u0069\u0061\u006c\u0070\u0061\u0072\u0065n",0x322b:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063f\u0069\u0072\u0065\u0070ar\u0065\u006e",0x3232:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063h\u0061\u0076\u0065\u0070ar\u0065\u006e",0x32a4:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0068\u0069\u0067h\u0063\u0069\u0072\u0063\u006c\u0065",0x3005:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0069\u0074e\u0072\u0061\u0074\u0069\u006f\u006e\u006d\u0061\u0072\u006b",0x3298:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u006c\u0061\u0062\u006f\u0072\u0063\u0069\u0072\u0063l\u0065",0x3238:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0061\u0062o\u0072\u0070\u0061\u0072\u0065\u006e",0x32a7:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006c\u0065\u0066t\u0063\u0069\u0072\u0063\u006c\u0065",0x32a6:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063l\u006f\u0077\u0063\u0069rc\u006c\u0065",0x32a9:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u006de\u0064i\u0063i\u006e\u0065\u0063\u0069\u0072\u0063\u006ce",0x322e:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u006d\u0065\u0074a\u006c\u0070\u0061\u0072\u0065\u006e",0x322a:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063m\u006f\u006f\u006e\u0070ar\u0065\u006e",0x3234:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063n\u0061\u006d\u0065\u0070ar\u0065\u006e",0x3002:"\u0069\u0064\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070e\u0072\u0069\u006f\u0064",0x329e:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0070\u0072\u0069\u006e\u0074\u0063\u0069\u0072\u0063l\u0065",0x3243:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0072\u0065\u0061c\u0068\u0070\u0061\u0072\u0065\u006e",0x3239:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0072e\u0070r\u0065s\u0065\u006e\u0074\u0070\u0061\u0072\u0065n",0x323e:"\u0069d\u0065\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0072\u0065s\u006f\u0075\u0072\u0063\u0065\u0070\u0061\u0072\u0065\u006e",0x32a8:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0072\u0069\u0067\u0068\u0074\u0063\u0069\u0072\u0063l\u0065",0x3299:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0065\u0063\u0072\u0065\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x3242:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063s\u0065\u006c\u0066\u0070ar\u0065\u006e",0x3233:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u006f\u0063\u0069\u0065\u0074\u0079\u0070\u0061\u0072\u0065\u006e",0x3000:"\u0069\u0064e\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073\u0070\u0061\u0063\u0065",0x3235:"\u0069\u0064\u0065og\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0070\u0065\u0063\u0069\u0061\u006c\u0070\u0061\u0072\u0065\u006e",0x3231:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u006fc\u006b\u0070\u0061\u0072\u0065\u006e",0x323b:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0073\u0074\u0075d\u0079\u0070\u0061\u0072\u0065\u006e",0x3230:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0069\u0063\u0073\u0075\u006e\u0070\u0061\u0072\u0065\u006e",0x323c:"\u0069d\u0065\u006f\u0067\u0072a\u0070\u0068\u0069\u0063\u0073u\u0070e\u0072v\u0069\u0073\u0065\u0070\u0061\u0072\u0065n",0x322c:"i\u0064\u0065\u006f\u0067ra\u0070h\u0069\u0063\u0077\u0061\u0074e\u0072\u0070\u0061\u0072\u0065\u006e",0x322d:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063w\u006f\u006f\u0064\u0070ar\u0065\u006e",0x3007:"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u007a\u0065\u0072\u006f",0x328e:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u006d\u0065t\u0061\u006c\u0063\u0069rc\u006c\u0065",0x328a:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006d\u006f\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x3294:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u006e\u0061\u006d\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x3290:"\u0069d\u0065o\u0067\u0072\u0061\u0070\u0068s\u0075\u006ec\u0069\u0072\u0063\u006c\u0065",0x328c:"i\u0064e\u006f\u0067\u0072\u0061\u0070\u0068\u0077\u0061t\u0065\u0072\u0063\u0069rc\u006c\u0065",0x328d:"\u0069\u0064\u0065\u006fgr\u0061\u0070\u0068\u0077\u006f\u006f\u0064\u0063\u0069\u0072\u0063\u006c\u0065",0x0907:"\u0069\u0064\u0065v\u0061",0x00ef:"\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e2f:"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x04e5:"\u0069\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x1ecb:"\u0069d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04d7:"\u0069e\u0062r\u0065\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0435:"\u0069\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x03f9:"\u0069\u0065\u0068\u006f\u006f\u006b",0x03fb:"\u0069\u0065\u0068o\u006f\u006b\u006f\u0067\u006f\u006e\u0065\u006b",0x3275:"\u0069e\u0075n\u0067\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3215:"\u0069\u0065\u0075\u006e\u0067\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3267:"\u0069\u0065\u0075\u006e\u0067\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3147:"i\u0065\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e",0x3207:"\u0069\u0065u\u006e\u0067\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x00ec:"\u0069\u0067\u0072\u0061\u0076\u0065",0x0a87:"\u0069g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0a07:"\u0069g\u0075\u0072\u006d\u0075\u006b\u0068i",0x3044:"\u0069h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ec9:"\u0069\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0988:"\u0069i\u0062\u0065\u006e\u0067\u0061\u006ci",0x0438:"\u0069\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0908:"\u0069\u0069\u0064\u0065\u0076\u0061",0x0a88:"\u0069\u0069\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a08:"\u0069\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x2a0c:"\u0069\u0069\u0069\u0069\u006e\u0074",0x222d:"\u0069\u0069\u0069n\u0074",0x0a40:"\u0069i\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x29dc:"\u0069\u0069\u006e\u0066\u0069\u006e",0x020b:"\u0069\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x09c0:"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x0940:"\u0069i\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac0:"\u0069\u0069\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0133:"\u0069\u006a",0x30a4:"\u0069k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff72:"\u0069k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x3163:"\u0069k\u006f\u0072\u0065\u0061\u006e",0x05ac:"\u0069\u006c\u0075\u0079\u0068\u0065\u0062\u0072\u0065\u0077",0x012b:"\u0069m\u0061\u0063\u0072\u006f\u006e",0x04e3:"\u0069m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x22b7:"\u0069m\u0061\u0067\u0065\u006f\u0066",0x2253:"\u0069m\u0061\u0067\u0065\u006fr\u0061\u0070\u0070\u0072\u006fx\u0069m\u0061t\u0065\u006c\u0079\u0065\u0071\u0075\u0061l",0x1d6a4:"\u0069\u006d\u0061t\u0068",0x0a3f:"\u0069\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069",0xff49:"\u0069\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x221e:"\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079",0x056b:"i\u006e\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2a0e:"\u0069\u006e\u0074\u0042\u0061\u0072",0x2a0d:"\u0069\u006e\u0074\u0062\u0061\u0072",0x2a19:"\u0069\u006e\u0074\u0063\u0061\u0070",0x2231:"\u0069\u006e\u0074c\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x2a1a:"\u0069\u006e\u0074\u0063\u0075\u0070",0x2216:"\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0064\u0069\u0076\u0069\u0064\u0065",0x222b:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c",0x2321:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0062\u0074",0xf8f5:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0065\u0078",0x2320:"\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c\u0074\u0070",0x22ba:"\u0069\u006e\u0074\u0065\u0072\u0063\u0061\u006c",0x2af4:"\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0061\u0076\u0065",0x203d:"i\u006e\u0074\u0065\u0072\u0072\u006f\u0062\u0061\u006e\u0067",0x2e18:"\u0069n\u0074e\u0072\u0072\u006f\u0062\u0061\u006e\u0067\u0064\u006f\u0077\u006e",0x2229:"\u0069\u006e\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e",0x22d2:"\u0069n\u0074e\u0072\u0073\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0062\u006c",0x22c2:"\u0069\u006e\u0074\u0065rs\u0065\u0063\u0074\u0069\u006f\u006e\u0064\u0069\u0073\u0070\u006c\u0061\u0079",0x2293:"\u0069\u006e\u0074\u0065\u0072\u0073\u0065\u0063\u0074i\u006f\u006e\u0073\u0071",0x23ae:"i\u006e\u0074\u0065\u0078\u0074\u0065\u006e\u0064\u0065\u0072",0x3305:"\u0069\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x2a17:"\u0069\u006e\u0074\u006c\u0061\u0072\u0068\u006b",0x2a3c:"\u0069n\u0074\u0070\u0072\u006f\u0064",0x2a3d:"\u0069\u006e\u0074\u0070\u0072\u006f\u0064\u0072",0x2a18:"\u0069\u006e\u0074\u0078",0x25d8:"\u0069n\u0076\u0062\u0075\u006c\u006c\u0065t",0x25d9:"\u0069n\u0076\u0063\u0069\u0072\u0063\u006ce",0x223e:"\u0069\u006e\u0076\u006c\u0061\u007a\u0079\u0073",0x25db:"\u0069\u006e\u0076wh\u0069\u0074\u0065\u006c\u006f\u0077\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065",0x25da:"\u0069\u006e\u0076wh\u0069\u0074\u0065\u0075\u0070\u0070\u0065\u0072\u0068\u0061\u006c\u0066\u0063\u0069\u0072\u0063\u006c\u0065",0x012f:"\u0069o\u0067\u006f\u006e\u0065\u006b",0x03b9:"\u0069\u006f\u0074\u0061",0x01f9:"\u0069\u006f\u0074a\u0031",0x03ca:"\u0069\u006f\u0074a\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x0390:"\u0069\u006f\u0074\u0061\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073t\u006f\u006e\u006f\u0073",0x0269:"\u0069o\u0074\u0061\u006c\u0061\u0074\u0069n",0x03af:"\u0069o\u0074\u0061\u0074\u006f\u006e\u006fs",0x24a4:"\u0069\u0070\u0061\u0072\u0065\u006e",0x0a72:"i\u0072\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x22f9:"\u0069\u0073\u0069n\u0045",0x22f5:"\u0069s\u0069\u006e\u0064\u006f\u0074",0x22f7:"\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072",0x22f4:"\u0069\u0073\u0069n\u0073",0x22f8:"\u0069\u0073\u0069\u006e\u0076\u0062",0x3043:"\u0069\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a3:"\u0069\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff68:"\u0069\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x09fa:"\u0069\u0073\u0073\u0068\u0061\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0268:"\u0069s\u0074\u0072\u006f\u006b\u0065",0xf6ed:"\u0069s\u0075\u0070\u0065\u0072\u0069\u006fr",0x309d:"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30fd:"\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0x0129:"\u0069\u0074\u0069\u006c\u0064\u0065",0x1e2d:"i\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x3129:"\u0069\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x09bf:"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x093f:"\u0069\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0abf:"\u0069v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0477:"\u0069\u007a\u0068it\u0073\u0061\u0064\u0062\u006c\u0067\u0072\u0061\u0076\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x006a:"\u006a",0x0571:"\u006a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x099c:"\u006aa\u0062\u0065\u006e\u0067\u0061\u006ci",0x091c:"\u006a\u0061\u0064\u0065\u0076\u0061",0x0a9c:"\u006a\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1c:"\u006a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3110:"\u006ab\u006f\u0070\u006f\u006d\u006f\u0066o",0x01f0:"\u006a\u0063\u0061\u0072\u006f\u006e",0x24d9:"\u006ac\u0069\u0072\u0063\u006c\u0065",0x0135:"j\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x029d:"\u006a\u0063\u0072o\u0073\u0073\u0065\u0064\u0074\u0061\u0069\u006c",0x022d:"\u006a\u0063\u0072\u006f\u0073\u0073\u0074\u0061\u0069\u006c",0x025f:"\u006a\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0073t\u0072\u006f\u006b\u0065",0x062c:"\u006a\u0065\u0065\u006d\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9e:"\u006ae\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9f:"\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe9d:"\u006a\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfea0:"\u006a\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfca8:"\u006a\u0065\u0065\u006dwi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfb8b:"\u006a\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb8a:"j\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x099d:"\u006a\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091d:"\u006ah\u0061\u0064\u0065\u0076\u0061",0x0a9d:"j\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1d:"j\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x057b:"\u006a\u0068\u0065h\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x3004:"\u006a\u0069\u0073",0x1d6a5:"\u006a\u006d\u0061t\u0068",0xff4a:"\u006a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x24a5:"\u006a\u0070\u0061\u0072\u0065\u006e",0x023b:"\u006a\u0073\u0075\u0070\u0065\u0072",0x02b2:"\u006as\u0075\u0070\u0065\u0072\u0069\u006fr",0x006b:"\u006b",0x04a1:"\u006b\u0061\u0062\u0061\u0073\u0068\u006b\u0069\u0072\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0995:"\u006ba\u0062\u0065\u006e\u0067\u0061\u006ci",0x1e31:"\u006b\u0061\u0063\u0075\u0074\u0065",0x043a:"\u006b\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x049b:"\u006b\u0061\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0915:"\u006b\u0061\u0064\u0065\u0076\u0061",0x05db:"\u006b\u0061\u0066",0xfb3b:"\u006ba\u0066\u0064\u0061\u0067\u0065\u0073h",0xfeda:"\u006b\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfedb:"\u006b\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfed9:"k\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfedc:"\u006ba\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb4d:"\u006b\u0061\u0066\u0072\u0061\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x0a95:"\u006b\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a15:"\u006b\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x304b:"\u006b\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x0400:"\u006b\u0061\u0068\u006f\u006f\u006b",0x04c4:"\u006b\u0061\u0068\u006f\u006f\u006b\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x30ab:"\u006b\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff76:"\u006b\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x03ba:"\u006b\u0061\u0070p\u0061",0x03f0:"\u006b\u0061p\u0070\u0061\u0073y\u006d\u0062\u006f\u006c\u0067\u0072\u0065\u0065\u006b",0x3171:"\u006b\u0061\u0070\u0079eo\u0075\u006e\u006d\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e",0x3184:"k\u0061\u0070\u0079\u0065ou\u006ep\u0068\u0069\u0065\u0075\u0070h\u006b\u006f\u0072\u0065\u0061\u006e",0x3178:"\u006b\u0061\u0070\u0079eo\u0075\u006e\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x3179:"\u006ba\u0070\u0079\u0065\u006f\u0075\u006e\u0073\u0073\u0061\u006e\u0067p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x330d:"\u006b\u0061\u0072\u006f\u0072\u0069\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x03d7:"\u006ba\u0072\u0074\u0064\u0065\u0073",0x0640:"\u006b\u0061\u0073\u0068\u0069\u0064\u0061\u0061\u0075\u0074o\u006e\u006f\u0073\u0069\u0064\u0065\u0062e\u0061\u0072\u0069\u006e\u0067\u0061\u0072\u0061\u0062\u0069\u0063",0x30f5:"\u006ba\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x3384:"\u006b\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0xfe7a:"\u006b\u0061\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe826:"\u006b\u0061\u0073\u0072\u0061\u006c\u006f\u0077",0xfe7b:"k\u0061\u0073\u0072\u0061\u006d\u0065\u0064\u0069\u0061\u006c",0x064d:"\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0061r\u0061\u0062\u0069\u0063",0xfe74:"\u006b\u0061s\u0072\u0061\u0074a\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe827:"k\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u006c\u006f\u0077",0x049f:"\u006b\u0061s\u0074\u0072\u006fk\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xff70:"\u006b\u0061\u0074\u0061h\u0069\u0072\u0061\u0070\u0072\u006f\u006c\u006f\u006e\u0067m\u0061r\u006b\u0068\u0061\u006c\u0066\u0077\u0069d\u0074\u0068",0x049d:"\u006ba\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c\u0073\u0074\u0072o\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x310e:"\u006bb\u006f\u0070\u006f\u006d\u006f\u0066o",0x3389:"\u006b\u0063\u0061\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x01e9:"\u006b\u0063\u0061\u0072\u006f\u006e",0x24da:"\u006bc\u0069\u0072\u0063\u006c\u0065",0x0137:"\u006b\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x1e33:"\u006bd\u006f\u0074\u0062\u0065\u006c\u006fw",0x0584:"k\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x06a9:"\u006b\u0065\u0068e\u0068",0xfb8f:"\u006b\u0065\u0068\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfb90:"\u006b\u0065\u0068e\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfb8e:"\u006b\u0065\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb91:"k\u0065\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c",0x3051:"\u006b\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b1:"\u006b\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff79:"\u006b\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x056f:"k\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x223b:"\u006b\u0065\u0072\u006e\u0065\u006c\u0063\u006f\u006e\u0074\u0072\u0061c\u0074\u0069\u006f\u006e",0x30f6:"\u006be\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0138:"\u006b\u0067\u0072e\u0065\u006e\u006c\u0061\u006e\u0064\u0069\u0063",0x0996:"\u006b\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0916:"\u006bh\u0061\u0064\u0065\u0076\u0061",0x0a96:"k\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a16:"k\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfea6:"\u006bh\u0061h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfea7:"\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfea5:"\u006b\u0068\u0061h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfea8:"\u006b\u0068a\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcac:"\u006b\u0068\u0061\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0x03e7:"\u006b\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x0959:"\u006b\u0068\u0068\u0061\u0064\u0065\u0076\u0061",0x0a59:"\u006b\u0068\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3278:"k\u0068i\u0065\u0075\u006b\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x3218:"\u006b\u0068\u0069\u0065uk\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x326a:"\u006b\u0068\u0069\u0065uk\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314b:"\u006b\u0068\u0069\u0065\u0075\u006b\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320a:"\u006bh\u0069e\u0075\u006b\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x0e02:"k\u0068\u006f\u006b\u0068\u0061\u0069\u0074\u0068\u0061\u0069",0x0e05:"k\u0068\u006f\u006b\u0068\u006f\u006e\u0074\u0068\u0061\u0069",0x0e03:"\u006b\u0068\u006fk\u0068\u0075\u0061\u0074\u0074\u0068\u0061\u0069",0x0e04:"\u006b\u0068\u006fk\u0068\u0077\u0061\u0069\u0074\u0068\u0061\u0069",0x0e5b:"\u006b\u0068\u006f\u006d\u0075\u0074\u0074\u0068\u0061\u0069",0x0199:"\u006b\u0068\u006fo\u006b",0x0e06:"\u006b\u0068\u006f\u0072\u0061\u006b\u0068\u0061\u006eg\u0074\u0068\u0061\u0069",0x3391:"\u006bh\u007a\u0073\u0071\u0075\u0061\u0072e",0x304d:"\u006b\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ad:"\u006b\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff77:"\u006b\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3315:"\u006b\u0069r\u006f\u0067\u0075r\u0061\u006d\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x3316:"\u006b\u0069\u0072\u006f\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073q\u0075\u0061\u0072\u0065",0x3314:"\u006b\u0069\u0072\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x326e:"\u006b\u0069\u0079\u0065ok\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x320e:"\u006bi\u0079e\u006f\u006b\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x3260:"\u006bi\u0079e\u006f\u006b\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3131:"\u006b\u0069\u0079e\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e",0x3200:"\u006b\u0069\u0079\u0065\u006f\u006b\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3133:"\u006b\u0069y\u0065\u006f\u006bs\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x1e35:"\u006b\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x3398:"\u006b\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x33a6:"\u006b\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0xff4b:"\u006b\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x33a2:"\u006bm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x3053:"\u006b\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x33c0:"\u006b\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x0e01:"\u006bo\u006b\u0061\u0069\u0074\u0068\u0061i",0x30b3:"\u006b\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7a:"\u006b\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x331e:"k\u006f\u006f\u0070\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x0481:"\u006b\u006f\u0070\u0070\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x327f:"k\u006fr\u0065\u0061\u006e\u0073\u0074\u0061\u006e\u0064a\u0072\u0064\u0073\u0079mb\u006f\u006c",0x0343:"\u006b\u006f\u0072\u006f\u006e\u0069\u0073\u0063\u006d\u0062",0x24a6:"\u006b\u0070\u0061\u0072\u0065\u006e",0x33aa:"\u006bp\u0061\u0073\u0071\u0075\u0061\u0072e",0x046f:"k\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x33cf:"\u006b\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x022e:"\u006b\u0074\u0075r\u006e",0x029e:"\u006bt\u0075\u0072\u006e\u0065\u0064",0x304f:"\u006b\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30af:"\u006b\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff78:"\u006b\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x33b8:"\u006b\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x33be:"\u006b\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x006c:"\u006c",0x27ea:"\u006c\u0041\u006e\u0067\u006c\u0065",0x2983:"\u006c\u0042\u0072\u0061\u0063\u0065",0x2985:"\u006c\u0050\u0061\u0072\u0065\u006e",0x09b2:"\u006ca\u0062\u0065\u006e\u0067\u0061\u006ci",0x013a:"\u006c\u0061\u0063\u0075\u0074\u0065",0x0932:"\u006c\u0061\u0064\u0065\u0076\u0061",0x0ab2:"\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a32:"\u006c\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0e45:"\u006ca\u006bk\u0068\u0061\u006e\u0067\u0079\u0061\u006f\u0074\u0068\u0061\u0069",0xfefc:"\u006ca\u006da\u006c\u0065\u0066\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfef8:"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063",0xfef7:"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0xfefa:"\u006c\u0061\u006d\u0061l\u0065\u0066\u0068\u0061\u006d\u007a\u0061\u0062\u0065\u006co\u0077f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063",0xfef9:"\u006c\u0061\u006da\u006c\u0065\u0066\u0068a\u006d\u007a\u0061\u0062\u0065\u006c\u006fw\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0xfefb:"l\u0061\u006d\u0061\u006cef\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfef6:"\u006c\u0061\u006d\u0061l\u0065\u0066\u006d\u0061\u0064\u0064\u0061\u0061\u0062\u006fv\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061b\u0069\u0063",0xfef5:"\u006c\u0061\u006da\u006c\u0065\u0066\u006da\u0064\u0064\u0061\u0061\u0062\u006f\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0x03bb:"\u006c\u0061\u006d\u0062\u0064\u0061",0x019b:"\u006c\u0061\u006db\u0064\u0061\u0073\u0074\u0072\u006f\u006b\u0065",0xfb3c:"l\u0061\u006d\u0065\u0064\u0064\u0061\u0067\u0065\u0073\u0068",0x05dc:"\u006c\u0061m\u0065\u0064\u0068o\u006c\u0061\u006d\u0068\u0065\u0062\u0072\u0065\u0077",0xe805:"\u006c\u0061\u006ded\u0077\u0069\u0074\u0068\u0064\u0061\u0067\u0065\u0073\u0068\u0061\u006e\u0064\u0068\u006f\u006c\u0061\u006d",0xe804:"\u006c\u0061\u006d\u0065\u0064\u0077\u0069\u0074\u0068h\u006f\u006c\u0061\u006d",0xfede:"\u006c\u0061\u006d\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfcca:"\u006c\u0061\u006d\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfedf:"\u006c\u0061m\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfedd:"l\u0061\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfcc9:"l\u0061m\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfccb:"l\u0061m\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfdf2:"\u006c\u0061\u006dla\u006d\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062\u0069\u0063",0xfee0:"\u006ca\u006dm\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfd88:"\u006c\u0061\u006dme\u0065\u006d\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfccc:"l\u0061m\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc43:"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfc40:"\u006ca\u006dw\u0069\u0074\u0068\u0068\u0061h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0xfccd:"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfc3f:"\u006c\u0061\u006d\u0077it\u0068\u006a\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfc41:"\u006c\u0061\u006d\u0077it\u0068\u006b\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfc42:"\u006c\u0061\u006d\u0077it\u0068\u006d\u0065\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe811:"\u006c\u0061\u006d\u0077\u0069\u0074\u0068\u006d\u0065\u0065\u006dw\u0069\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069t\u0069\u0061\u006c",0xfc44:"\u006ca\u006dw\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x2991:"\u006ca\u006e\u0067\u006c\u0065\u0064\u006ft",0x29e0:"\u006c\u0061\u0070\u006c\u0061\u0063",0x25ef:"l\u0061\u0072\u0067\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x2aab:"\u006c\u0061\u0074",0x2aad:"\u006c\u0061\u0074\u0065",0x27c5:"\u006c\u0062\u0061\u0067",0x019a:"\u006c\u0062\u0061\u0072",0x2114:"\u006c\u0062\u0062a\u0072",0x026c:"\u006c\u0062\u0065l\u0074",0x2997:"\u006c\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b",0x310c:"\u006cb\u006f\u0070\u006f\u006d\u006f\u0066o",0x23a9:"\u006c\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064",0x23a8:"\u006cb\u0072\u0061\u0063\u0065\u006d\u0069d",0x23a7:"\u006c\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064",0x23a2:"\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x23a3:"\u006c\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064",0x298f:"\u006c\u0062\u0072a\u0063\u006b\u006c\u006c\u0074\u0069\u0063\u006b",0x298b:"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072",0x23a1:"\u006c\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064",0x298d:"\u006c\u0062\u0072a\u0063\u006b\u0075\u006c\u0074\u0069\u0063\u006b",0x2772:"\u006cb\u0072\u0062\u0072\u0061\u006b",0x013e:"\u006c\u0063\u0061\u0072\u006f\u006e",0xf813:"\u006cc\u0061\u0072\u006f\u006e\u0031",0x24db:"\u006cc\u0069\u0072\u0063\u006c\u0065",0x1e3d:"\u006c\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x013c:"\u006c\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x29fc:"l\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065",0x0140:"\u006c\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e37:"\u006cd\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e39:"\u006cd\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x031a:"\u006c\u0065\u0066\u0074\u0061\u006e\u0067\u006c\u0065\u0061\u0062\u006fv\u0065\u0063\u006d\u0062",0x2b4a:"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078",0x2b42:"\u006c\u0065\u0066\u0074ar\u0072\u006f\u0077\u0062\u0061\u0063\u006b\u0061\u0070\u0070\u0072\u006f\u0078",0x2b4b:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0062\u0073\u0069m\u0069\u006c\u0061\u0072",0x2977:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u006c\u0065\u0073\u0073",0x2b32:"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u006f\u006e\u006f\u0070\u006c\u0075\u0073",0x2946:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0070\u006c\u0075\u0073",0x2943:"\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006f\u0072t\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2973:"\u006c\u0065f\u0074\u0061\u0072r\u006f\u0077\u0073\u0069\u006d\u0069\u006c\u0061\u0072",0x297a:"\u006ce\u0066t\u0061\u0072\u0072\u006f\u0077\u0073\u0075\u0062\u0073\u0065\u0074",0x21fd:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069a\u006e\u0067\u006c\u0065",0x2b3e:"\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0078",0x290c:"l\u0065\u0066\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x2b3f:"\u006ce\u0066t\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077",0x290e:"\u006c\u0065\u0066t\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x291b:"l\u0065\u0066\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c",0x2b38:"\u006c\u0065\u0066t\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077",0x2936:"\u006c\u0065\u0066\u0074do\u0077\u006e\u0063\u0075\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077",0x297c:"\u006c\u0065\u0066t\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x20d0:"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0061c\u0063\u0065\u006e\u0074",0x295e:"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0064o\u0077\u006e\u0062\u0061\u0072",0x2962:"\u006ce\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073u\u0070\u0064\u006f\u0077\u006e",0x295a:"\u006c\u0065f\u0074\u0068\u0061r\u0070\u006f\u006f\u006e\u0075\u0070\u0062\u0061\u0072",0x296a:"\u006c\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075p\u0064\u0061\u0073\u0068",0x21c7:"\u006c\u0065\u0066\u0074\u006c\u0065\u0066\u0074\u0061r\u0072\u006f\u0077\u0073",0x263e:"\u006c\u0065\u0066\u0074\u006d\u006f\u006f\u006e",0x27d5:"\u006c\u0065\u0066\u0074\u006f\u0075\u0074\u0065\u0072\u006a\u006f\u0069\u006e",0x2948:"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065",0x21ff:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0072\u0069\u0061\u006e\u0067l\u0065",0x2950:"\u006ce\u0066\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e\u0064\u006f\u0077\u006e",0x294b:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006eu\u0070",0x2967:"l\u0065\u0066\u0074\u0072ig\u0068t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e",0x2966:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070",0x294a:"\u006c\u0065\u0066\u0074ri\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0075\u0070\u0064\u006fw\u006e",0x294e:"l\u0065f\u0074\u0072\u0069\u0067\u0068\u0074\u0068\u0061r\u0070\u006f\u006f\u006eup\u0075\u0070",0x21dc:"\u006c\u0065\u0066\u0074\u0073\u0071\u0075\u0069\u0067a\u0072\u0072\u006f\u0077",0x0318:"\u006c\u0065f\u0074\u0074\u0061c\u006b\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x2919:"\u006c\u0065\u0066\u0074\u0074\u0061\u0069\u006c",0x2b31:"\u006ce\u0066t\u0074\u0068\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073",0x219c:"\u006c\u0065\u0066\u0074\u0077\u0061\u0076\u0065\u0061\u0072\u0072\u006f\u0077",0x2af9:"\u006ce\u0071\u0071\u0073\u006c\u0061\u006et",0x2aa8:"\u006c\u0065\u0073c\u0063",0x2a7f:"\u006c\u0065\u0073\u0064\u006f\u0074",0x2a81:"\u006ce\u0073\u0064\u006f\u0074\u006f",0x2a83:"\u006c\u0065\u0073\u0064\u006f\u0074\u006f\u0072",0x2a93:"\u006c\u0065\u0073\u0067\u0065\u0073",0x003c:"\u006c\u0065\u0073\u0073",0x2a8b:"\u006c\u0065\u0073\u0073\u0064\u0062\u006c\u0065\u0071\u006c\u0067\u0072e\u0061\u0074\u0065\u0072",0x22d6:"\u006ce\u0073\u0073\u0064\u006f\u0074",0x2264:"\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l",0x22da:"\u006ce\u0073s\u0065\u0071\u0075\u0061\u006co\u0072\u0067r\u0065\u0061\u0074\u0065\u0072",0xff1c:"\u006c\u0065\u0073\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a89:"\u006ce\u0073s\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",0x2a87:"\u006c\u0065\u0073s\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2a85:"\u006ce\u0073s\u006f\u0072\u0061\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u006c",0x2a7d:"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0061\u006c\u0073\u006c\u0061\u006e\u0074",0x2272:"\u006c\u0065s\u0073\u006f\u0072e\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074",0x2276:"\u006c\u0065\u0073\u0073\u006f\u0072\u0067\u0072\u0065\u0061\u0074\u0065\u0072",0x2268:"\u006c\u0065\u0073\u0073\u006f\u0072\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",0x2266:"\u006c\u0065\u0073\u0073\u006f\u0076\u0065\u0072\u0065\u0071\u0075\u0061\u006c",0xfe64:"\u006ce\u0073\u0073\u0073\u006d\u0061\u006cl",0x026e:"\u006c\u0065\u007a\u0068",0x258c:"\u006cf\u0062\u006c\u006f\u0063\u006b",0x29d1:"\u006c\u0066\u0062\u006f\u0077\u0074\u0069\u0065",0x258f:"\u006c\u0066\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b",0x258b:"\u006c\u0066\u0066\u0069\u0076\u0065\u0065\u0069\u0067\u0068\u0074\u0068b\u006c\u006f\u0063\u006b",0x258e:"\u006c\u0066\u0071\u0075\u0061\u0072\u0074\u0065\u0072b\u006c\u006f\u0063\u006b",0x2589:"\u006cf\u0073e\u0076\u0065\u006e\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x258d:"\u006cf\u0074h\u0072\u0065\u0065\u0065\u0069g\u0068\u0074h\u0062\u006c\u006f\u0063\u006b",0x258a:"\u006c\u0066\u0074\u0068re\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0062\u006c\u006f\u0063\u006b",0x29d4:"\u006cf\u0074\u0069\u006d\u0065\u0073",0x2a91:"\u006c\u0067\u0045",0x2b24:"l\u0067\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",0x2b1b:"l\u0067\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x2b1c:"l\u0067\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x026d:"\u006c\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078",0x21b4:"\u006c\u0069\u006e\u0065\u0066\u0065\u0065\u0064",0x2028:"\u006c\u0069\u006e\u0065\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u006f\u0072",0x0280:"\u006c\u0069\u006ee\u0076\u0065\u0072\u0074\u006e\u006f\u0073\u0070",0x029c:"\u006ci\u006ee\u0076\u0065\u0072\u0074\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x20a4:"\u006c\u0069\u0072\u0061",0x056c:"\u006c\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x01c9:"\u006c\u006a",0x0459:"l\u006a\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf6c0:"\u006c\u006c",0x0933:"\u006cl\u0061\u0064\u0065\u0076\u0061",0x0ab3:"l\u006c\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x2989:"\u006cl\u0061\u006e\u0067\u006c\u0065",0x25df:"\u006c\u006c\u0061r\u0063",0x1e3b:"\u006c\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x22d8:"\u006c\u006c\u006c",0x0934:"\u006c\u006c\u006c\u0061\u0064\u0065\u0076\u0061",0x2af7:"\u006cl\u006c\u006e\u0065\u0073\u0074",0x2987:"\u006c\u006c\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073",0x25fa:"\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x09e1:"\u006c\u006cv\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0961:"\u006c\u006c\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x09e3:"\u006cl\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci",0x0963:"\u006c\u006c\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061",0x026b:"\u006c\u006d\u0069d\u0064\u006c\u0065\u0074\u0069\u006c\u0064\u0065",0xff4c:"\u006c\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x23b0:"\u006c\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065",0x33d0:"\u006c\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x22e6:"\u006c\u006e\u0073i\u006d",0x0e2c:"l\u006f\u0063\u0068\u0075\u006c\u0061\u0074\u0068\u0061\u0069",0x2227:"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0061\u006e\u0064",0x00ac:"\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074",0x2228:"\u006co\u0067\u0069\u0063\u0061\u006c\u006fr",0xf830:"\u006co\u0067\u006f\u006e\u0065\u006b",0x0e25:"\u006c\u006f\u006c\u0069\u006e\u0067\u0074\u0068\u0061\u0069",0x27de:"\u006co\u006e\u0067\u0064\u0061\u0073\u0068v",0x27cc:"\u006c\u006f\u006eg\u0064\u0069\u0076\u0069\u0073\u0069\u006f\u006e",0x27f5:"\u006c\u006f\u006e\u0067\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x27f7:"\u006co\u006eg\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x2b33:"\u006co\u006eg\u006c\u0065\u0066\u0074\u0073q\u0075\u0069g\u0061\u0072\u0072\u006f\u0077",0x27fb:"\u006c\u006f\u006eg\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x27fc:"\u006c\u006f\u006e\u0067\u006d\u0061\u0070\u0073\u0074\u006f",0x27f6:"\u006c\u006f\u006e\u0067\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",0x27ff:"\u006c\u006f\u006e\u0067ri\u0067\u0068\u0074\u0073\u0071\u0075\u0069\u0067\u0061\u0072\u0072\u006f\u0077",0x017f:"\u006c\u006f\u006eg\u0073",0xfb05:"\u006c\u006f\u006e\u0067\u0073\u0074",0x024e:"\u006co\u0077\u0065\u0072\u0065\u0064",0x2a1c:"\u006c\u006f\u0077\u0069\u006e\u0074",0xfe4e:"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u0065\u006e\u0074\u0065r\u006c\u0069\u006e\u0065",0x0332:"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0063\u006d\u0062",0xfe4d:"\u006c\u006f\u0077\u006c\u0069\u006e\u0065\u0064\u0061\u0073\u0068\u0065\u0064",0x25ca:"\u006co\u007a\u0065\u006e\u0067\u0065",0x27e0:"\u006c\u006f\u007ae\u006e\u0067\u0065\u006d\u0069\u006e\u0075\u0073",0x24a7:"\u006c\u0070\u0061\u0072\u0065\u006e",0x239c:"\u006c\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x239d:"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064",0x2993:"\u006c\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0073\u0073",0x239b:"\u006c\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064",0x25de:"\u006c\u0072\u0061r\u0063",0x202a:"\u006c\u0072\u0065",0x25ff:"\u006c\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x29e1:"\u006c\u0072\u0074r\u0069\u0061\u006e\u0067\u006c\u0065\u0065\u0071",0x2a8d:"\u006c\u0073\u0069m\u0065",0x2a8f:"\u006c\u0073\u0069m\u0067",0x0142:"\u006c\u0073\u006c\u0061\u0073\u0068",0x2acd:"\u006cs\u0071\u0068\u006f\u006f\u006b",0x026a:"\u006c\u0073\u0075\u0070\u0065\u0072",0xf6ee:"\u006cs\u0075\u0070\u0065\u0072\u0069\u006fr",0x2aa6:"\u006c\u0074\u0063\u0063",0x2a79:"\u006c\u0074\u0063i\u0072",0x2976:"\u006c\u0074\u006c\u0061\u0072\u0072",0x2a7b:"\u006ct\u0071\u0075\u0065\u0073\u0074",0x29cf:"\u006c\u0074\u0072\u0069\u0076\u0062",0xf821:"\u006c\u0074\u0073\u0068\u0061\u0064\u0065\u0031",0x0e26:"\u006c\u0075\u0074\u0068\u0061\u0069",0x23b8:"\u006cv\u0062\u006f\u0078\u006c\u0069\u006ee",0x098c:"\u006cv\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x090c:"\u006c\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x09e2:"\u006cv\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0962:"l\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061",0x29d8:"\u006c\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x33d3:"\u006c\u0078\u0073\u0071\u0075\u0061\u0072\u0065",0x006d:"\u006d",0x09ae:"\u006da\u0062\u0065\u006e\u0067\u0061\u006ci",0x00af:"\u006d\u0061\u0063\u0072\u006f\u006e",0x0331:"\u006d\u0061\u0063\u0072\u006f\u006e\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x0304:"\u006da\u0063\u0072\u006f\u006e\u0063\u006db",0x02cd:"\u006d\u0061\u0063r\u006f\u006e\u006c\u006f\u0077\u006d\u006f\u0064",0xffe3:"\u006da\u0063r\u006f\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x1e3f:"\u006d\u0061\u0063\u0075\u0074\u0065",0x092e:"\u006d\u0061\u0064\u0065\u0076\u0061",0x0aae:"\u006d\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2e:"\u006d\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x05a4:"\u006d\u0061\u0068\u0061\u0070\u0061\u006b\u0068\u0068e\u0062\u0072\u0065\u0077",0x307e:"\u006d\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xf895:"\u006d\u0061\u0069\u0063ha\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069",0xf894:"\u006d\u0061\u0069ch\u0061\u0074\u0074\u0061\u0077\u0061\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069",0x0e4b:"\u006da\u0069c\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0074\u0068\u0061\u0069",0xf893:"\u006da\u0069\u0063\u0068\u0061\u0074\u0074\u0061\u0077\u0061\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0xf88c:"\u006d\u0061i\u0065\u006b\u006co\u0077\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0xf88b:"\u006d\u0061\u0069\u0065\u006b\u006c\u006f\u0077\u0072\u0069\u0067\u0068t\u0074\u0068\u0061\u0069",0x0e48:"\u006da\u0069\u0065\u006b\u0074\u0068\u0061i",0xf88a:"\u006da\u0069e\u006b\u0075\u0070\u0070\u0065r\u006c\u0065f\u0074\u0074\u0068\u0061\u0069",0xf884:"\u006da\u0069h\u0061\u006e\u0061\u006b\u0061t\u006c\u0065f\u0074\u0074\u0068\u0061\u0069",0x0e31:"\u006d\u0061\u0069\u0068\u0061\u006e\u0061\u006b\u0061t\u0074\u0068\u0061\u0069",0xf889:"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0x0e47:"\u006d\u0061\u0069\u0074\u0061\u0069\u006b\u0068\u0075\u0074\u0068\u0061\u0069",0xf88f:"\u006d\u0061\u0069\u0074\u0068\u006f\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0xf88e:"\u006da\u0069t\u0068\u006f\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069",0x0e49:"\u006d\u0061\u0069\u0074\u0068\u006f\u0074\u0068\u0061\u0069",0xf88d:"\u006d\u0061\u0069\u0074ho\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0xf892:"\u006d\u0061\u0069\u0074\u0072\u0069\u006c\u006f\u0077\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0xf891:"\u006da\u0069t\u0072\u0069\u006c\u006f\u0077r\u0069\u0067h\u0074\u0074\u0068\u0061\u0069",0x0e4a:"\u006d\u0061\u0069\u0074\u0072\u0069\u0074\u0068\u0061\u0069",0xf890:"\u006d\u0061\u0069\u0074ri\u0075\u0070\u0070\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e46:"\u006d\u0061\u0069y\u0061\u006d\u006f\u006b\u0074\u0068\u0061\u0069",0x30de:"\u006d\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff8f:"\u006d\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3347:"\u006d\u0061\u006e\u0073\u0079\u006f\u006e\u0073\u0071\u0075\u0061\u0072\u0065",0x21a7:"\u006d\u0061\u0070\u0073\u0064\u006f\u0077\u006e",0x21a4:"\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x21a6:"\u006d\u0061\u0070\u0073\u0074\u006f",0x21a5:"\u006d\u0061\u0070\u0073\u0075\u0070",0x2642:"\u006d\u0061\u0072\u0073",0x05af:"\u006da\u0073o\u0072\u0061\u0063\u0069\u0072c\u006c\u0065h\u0065\u0062\u0072\u0065\u0077",0x3383:"\u006d\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x1d400:"\u006d\u0062\u0066\u0041",0x1d6a8:"\u006d\u0062\u0066\u0041\u006c\u0070\u0068\u0061",0x1d401:"\u006d\u0062\u0066\u0042",0x1d6a9:"\u006db\u0066\u0042\u0065\u0074\u0061",0x1d402:"\u006d\u0062\u0066\u0043",0x1d6be:"\u006d\u0062\u0066\u0043\u0068\u0069",0x1d403:"\u006d\u0062\u0066\u0044",0x1d6ab:"\u006d\u0062\u0066\u0044\u0065\u006c\u0074\u0061",0x1d7ca:"\u006d\u0062\u0066\u0044\u0069\u0067\u0061\u006d\u006d\u0061",0x1d404:"\u006d\u0062\u0066\u0045",0x1d6ac:"\u006d\u0062\u0066\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6ae:"\u006d\u0062\u0066\u0045\u0074\u0061",0x1d405:"\u006d\u0062\u0066\u0046",0x1d406:"\u006d\u0062\u0066\u0047",0x1d6aa:"\u006d\u0062\u0066\u0047\u0061\u006d\u006d\u0061",0x1d407:"\u006d\u0062\u0066\u0048",0x1d408:"\u006d\u0062\u0066\u0049",0x1d6b0:"\u006db\u0066\u0049\u006f\u0074\u0061",0x1d409:"\u006d\u0062\u0066\u004a",0x1d40a:"\u006d\u0062\u0066\u004b",0x1d6b1:"\u006d\u0062\u0066\u004b\u0061\u0070\u0070\u0061",0x1d40b:"\u006d\u0062\u0066\u004c",0x1d6b2:"\u006db\u0066\u004c\u0061\u006d\u0062\u0064a",0x1d40c:"\u006d\u0062\u0066\u004d",0x1d6b3:"\u006d\u0062\u0066M\u0075",0x1d40d:"\u006d\u0062\u0066\u004e",0x1d6b4:"\u006d\u0062\u0066N\u0075",0x1d40e:"\u006d\u0062\u0066\u004f",0x1d6c0:"\u006d\u0062\u0066\u004f\u006d\u0065\u0067\u0061",0x1d6b6:"\u006d\u0062\u0066\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d40f:"\u006d\u0062\u0066\u0050",0x1d6bd:"\u006d\u0062\u0066\u0050\u0068\u0069",0x1d6b7:"\u006d\u0062\u0066P\u0069",0x1d6bf:"\u006d\u0062\u0066\u0050\u0073\u0069",0x1d410:"\u006d\u0062\u0066\u0051",0x1d411:"\u006d\u0062\u0066\u0052",0x1d6b8:"\u006d\u0062\u0066\u0052\u0068\u006f",0x1d412:"\u006d\u0062\u0066\u0053",0x1d6ba:"\u006d\u0062\u0066\u0053\u0069\u0067\u006d\u0061",0x1d413:"\u006d\u0062\u0066\u0054",0x1d6bb:"\u006d\u0062\u0066\u0054\u0061\u0075",0x1d6af:"\u006d\u0062\u0066\u0054\u0068\u0065\u0074\u0061",0x1d414:"\u006d\u0062\u0066\u0055",0x1d6bc:"\u006d\u0062\u0066\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d415:"\u006d\u0062\u0066\u0056",0x1d416:"\u006d\u0062\u0066\u0057",0x1d417:"\u006d\u0062\u0066\u0058",0x1d6b5:"\u006d\u0062\u0066X\u0069",0x1d418:"\u006d\u0062\u0066\u0059",0x1d419:"\u006d\u0062\u0066\u005a",0x1d6ad:"\u006db\u0066\u005a\u0065\u0074\u0061",0x1d41a:"\u006d\u0062\u0066\u0061",0x1d6c2:"\u006d\u0062\u0066\u0061\u006c\u0070\u0068\u0061",0x1d41b:"\u006d\u0062\u0066\u0062",0x1d6c3:"\u006db\u0066\u0062\u0065\u0074\u0061",0x1d41c:"\u006d\u0062\u0066\u0063",0x1d6d8:"\u006d\u0062\u0066\u0063\u0068\u0069",0x1d41d:"\u006d\u0062\u0066\u0064",0x1d6c5:"\u006d\u0062\u0066\u0064\u0065\u006c\u0074\u0061",0x1d41e:"\u006d\u0062\u0066\u0065",0x1d6c6:"\u006d\u0062\u0066\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6c8:"\u006d\u0062\u0066\u0065\u0074\u0061",0x1d41f:"\u006d\u0062\u0066\u0066",0x1d56c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0041",0x1d56d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0042",0x1d56e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0043",0x1d56f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0044",0x1d570:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0045",0x1d571:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0046",0x1d572:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0047",0x1d573:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0048",0x1d574:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0049",0x1d575:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004a",0x1d576:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004b",0x1d577:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004c",0x1d578:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004d",0x1d579:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004e",0x1d57a:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u004f",0x1d57b:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0050",0x1d57c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0051",0x1d57d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0052",0x1d57e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0053",0x1d57f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0054",0x1d580:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0055",0x1d581:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0056",0x1d582:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0057",0x1d583:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0058",0x1d584:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0059",0x1d585:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u005a",0x1d586:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0061",0x1d587:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0062",0x1d588:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0063",0x1d589:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0064",0x1d58a:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0065",0x1d58b:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0066",0x1d58c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0067",0x1d58d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0068",0x1d58e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0069",0x1d58f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006a",0x1d590:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006b",0x1d591:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006c",0x1d592:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006d",0x1d593:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006e",0x1d594:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u006f",0x1d595:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0070",0x1d596:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0071",0x1d597:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0072",0x1d598:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0073",0x1d599:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0074",0x1d59a:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0075",0x1d59b:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0076",0x1d59c:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0077",0x1d59d:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0078",0x1d59e:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u0079",0x1d59f:"\u006d\u0062\u0066\u0066\u0072\u0061\u006b\u007a",0x1d420:"\u006d\u0062\u0066\u0067",0x1d6c4:"\u006d\u0062\u0066\u0067\u0061\u006d\u006d\u0061",0x1d421:"\u006d\u0062\u0066\u0068",0x1d422:"\u006d\u0062\u0066\u0069",0x1d6ca:"\u006db\u0066\u0069\u006f\u0074\u0061",0x1d468:"\u006d\u0062\u0066\u0069\u0074\u0041",0x1d71c:"\u006d\u0062\u0066\u0069\u0074\u0041\u006c\u0070\u0068\u0061",0x1d469:"\u006d\u0062\u0066\u0069\u0074\u0042",0x1d71d:"\u006db\u0066\u0069\u0074\u0042\u0065\u0074a",0x1d46a:"\u006d\u0062\u0066\u0069\u0074\u0043",0x1d732:"\u006d\u0062\u0066\u0069\u0074\u0043\u0068\u0069",0x1d46b:"\u006d\u0062\u0066\u0069\u0074\u0044",0x1d71f:"\u006d\u0062\u0066\u0069\u0074\u0044\u0065\u006c\u0074\u0061",0x1d46c:"\u006d\u0062\u0066\u0069\u0074\u0045",0x1d720:"\u006d\u0062\u0066i\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d722:"\u006d\u0062\u0066\u0069\u0074\u0045\u0074\u0061",0x1d46d:"\u006d\u0062\u0066\u0069\u0074\u0046",0x1d46e:"\u006d\u0062\u0066\u0069\u0074\u0047",0x1d71e:"\u006d\u0062\u0066\u0069\u0074\u0047\u0061\u006d\u006d\u0061",0x1d46f:"\u006d\u0062\u0066\u0069\u0074\u0048",0x1d470:"\u006d\u0062\u0066\u0069\u0074\u0049",0x1d724:"\u006db\u0066\u0069\u0074\u0049\u006f\u0074a",0x1d471:"\u006d\u0062\u0066\u0069\u0074\u004a",0x1d472:"\u006d\u0062\u0066\u0069\u0074\u004b",0x1d725:"\u006d\u0062\u0066\u0069\u0074\u004b\u0061\u0070\u0070\u0061",0x1d473:"\u006d\u0062\u0066\u0069\u0074\u004c",0x1d726:"m\u0062\u0066\u0069\u0074\u004c\u0061\u006d\u0062\u0064\u0061",0x1d474:"\u006d\u0062\u0066\u0069\u0074\u004d",0x1d727:"\u006db\u0066\u0069\u0074\u004d\u0075",0x1d475:"\u006d\u0062\u0066\u0069\u0074\u004e",0x1d728:"\u006db\u0066\u0069\u0074\u004e\u0075",0x1d476:"\u006d\u0062\u0066\u0069\u0074\u004f",0x1d734:"\u006d\u0062\u0066\u0069\u0074\u004f\u006d\u0065\u0067\u0061",0x1d72a:"\u006d\u0062\u0066i\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d477:"\u006d\u0062\u0066\u0069\u0074\u0050",0x1d731:"\u006d\u0062\u0066\u0069\u0074\u0050\u0068\u0069",0x1d72b:"\u006db\u0066\u0069\u0074\u0050\u0069",0x1d733:"\u006d\u0062\u0066\u0069\u0074\u0050\u0073\u0069",0x1d478:"\u006d\u0062\u0066\u0069\u0074\u0051",0x1d479:"\u006d\u0062\u0066\u0069\u0074\u0052",0x1d72c:"\u006d\u0062\u0066\u0069\u0074\u0052\u0068\u006f",0x1d47a:"\u006d\u0062\u0066\u0069\u0074\u0053",0x1d72e:"\u006d\u0062\u0066\u0069\u0074\u0053\u0069\u0067\u006d\u0061",0x1d47b:"\u006d\u0062\u0066\u0069\u0074\u0054",0x1d72f:"\u006d\u0062\u0066\u0069\u0074\u0054\u0061\u0075",0x1d723:"\u006d\u0062\u0066\u0069\u0074\u0054\u0068\u0065\u0074\u0061",0x1d47c:"\u006d\u0062\u0066\u0069\u0074\u0055",0x1d730:"\u006d\u0062\u0066i\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d47d:"\u006d\u0062\u0066\u0069\u0074\u0056",0x1d47e:"\u006d\u0062\u0066\u0069\u0074\u0057",0x1d47f:"\u006d\u0062\u0066\u0069\u0074\u0058",0x1d729:"\u006db\u0066\u0069\u0074\u0058\u0069",0x1d480:"\u006d\u0062\u0066\u0069\u0074\u0059",0x1d481:"\u006d\u0062\u0066\u0069\u0074\u005a",0x1d721:"\u006db\u0066\u0069\u0074\u005a\u0065\u0074a",0x1d482:"\u006d\u0062\u0066\u0069\u0074\u0061",0x1d736:"\u006d\u0062\u0066\u0069\u0074\u0061\u006c\u0070\u0068\u0061",0x1d483:"\u006d\u0062\u0066\u0069\u0074\u0062",0x1d737:"\u006db\u0066\u0069\u0074\u0062\u0065\u0074a",0x1d484:"\u006d\u0062\u0066\u0069\u0074\u0063",0x1d74c:"\u006d\u0062\u0066\u0069\u0074\u0063\u0068\u0069",0x1d485:"\u006d\u0062\u0066\u0069\u0074\u0064",0x1d739:"\u006d\u0062\u0066\u0069\u0074\u0064\u0065\u006c\u0074\u0061",0x1d486:"\u006d\u0062\u0066\u0069\u0074\u0065",0x1d73a:"\u006d\u0062\u0066i\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d73c:"\u006d\u0062\u0066\u0069\u0074\u0065\u0074\u0061",0x1d487:"\u006d\u0062\u0066\u0069\u0074\u0066",0x1d488:"\u006d\u0062\u0066\u0069\u0074\u0067",0x1d738:"\u006d\u0062\u0066\u0069\u0074\u0067\u0061\u006d\u006d\u0061",0x1d489:"\u006d\u0062\u0066\u0069\u0074\u0068",0x1d48a:"\u006d\u0062\u0066\u0069\u0074\u0069",0x1d73e:"\u006db\u0066\u0069\u0074\u0069\u006f\u0074a",0x1d48b:"\u006d\u0062\u0066\u0069\u0074\u006a",0x1d48c:"\u006d\u0062\u0066\u0069\u0074\u006b",0x1d73f:"\u006d\u0062\u0066\u0069\u0074\u006b\u0061\u0070\u0070\u0061",0x1d48d:"\u006d\u0062\u0066\u0069\u0074\u006c",0x1d740:"m\u0062\u0066\u0069\u0074\u006c\u0061\u006d\u0062\u0064\u0061",0x1d48e:"\u006d\u0062\u0066\u0069\u0074\u006d",0x1d741:"\u006db\u0066\u0069\u0074\u006d\u0075",0x1d48f:"\u006d\u0062\u0066\u0069\u0074\u006e",0x1d735:"\u006d\u0062\u0066\u0069\u0074\u006e\u0061\u0062\u006c\u0061",0x1d742:"\u006db\u0066\u0069\u0074\u006e\u0075",0x1d490:"\u006d\u0062\u0066\u0069\u0074\u006f",0x1d74e:"\u006d\u0062\u0066\u0069\u0074\u006f\u006d\u0065\u0067\u0061",0x1d744:"\u006d\u0062\u0066i\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d491:"\u006d\u0062\u0066\u0069\u0074\u0070",0x1d74f:"\u006d\u0062\u0066i\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d74b:"\u006d\u0062\u0066\u0069\u0074\u0070\u0068\u0069",0x1d745:"\u006db\u0066\u0069\u0074\u0070\u0069",0x1d74d:"\u006d\u0062\u0066\u0069\u0074\u0070\u0073\u0069",0x1d492:"\u006d\u0062\u0066\u0069\u0074\u0071",0x1d493:"\u006d\u0062\u0066\u0069\u0074\u0072",0x1d746:"\u006d\u0062\u0066\u0069\u0074\u0072\u0068\u006f",0x1d494:"\u006d\u0062\u0066\u0069\u0074\u0073",0x1d63c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0041",0x1d790:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073A\u006c\u0070\u0068\u0061",0x1d63d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042",0x1d791:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061",0x1d63e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0043",0x1d7a6:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0043\u0068\u0069",0x1d63f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0044",0x1d793:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073D\u0065\u006c\u0074\u0061",0x1d640:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0045",0x1d794:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d796:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0045\u0074\u0061",0x1d641:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0046",0x1d642:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0047",0x1d792:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073G\u0061\u006d\u006d\u0061",0x1d643:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0048",0x1d644:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049",0x1d798:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061",0x1d645:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004a",0x1d646:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004b",0x1d799:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073K\u0061\u0070\u0070\u0061",0x1d647:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004c",0x1d79a:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061",0x1d648:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d",0x1d79b:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004d\u0075",0x1d649:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e",0x1d79c:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004e\u0075",0x1d64a:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u004f",0x1d7a8:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073O\u006d\u0065\u0067\u0061",0x1d79e:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d64b:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050",0x1d7a5:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0068\u0069",0x1d79f:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0050\u0069",0x1d7a7:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0050\u0073\u0069",0x1d64c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0051",0x1d64d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0052",0x1d7a0:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0052\u0068\u006f",0x1d64e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0053",0x1d7a2:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073S\u0069\u0067\u006d\u0061",0x1d64f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0054",0x1d7a3:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0054\u0061\u0075",0x1d797:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073T\u0068\u0065\u0074\u0061",0x1d650:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0055",0x1d7a4:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d651:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0056",0x1d652:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0057",0x1d653:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058",0x1d79d:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0058\u0069",0x1d654:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0059",0x1d655:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a",0x1d795:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061",0x1d656:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0061",0x1d7aa:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073a\u006c\u0070\u0068\u0061",0x1d657:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062",0x1d7ab:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061",0x1d658:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0063",0x1d7c0:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0063\u0068\u0069",0x1d659:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0064",0x1d7ad:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073d\u0065\u006c\u0074\u0061",0x1d65a:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0065",0x1d7ae:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d7b0:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0065\u0074\u0061",0x1d65b:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0066",0x1d65c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0067",0x1d7ac:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073g\u0061\u006d\u006d\u0061",0x1d65d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0068",0x1d65e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069",0x1d7b2:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061",0x1d65f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006a",0x1d660:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006b",0x1d7b3:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073k\u0061\u0070\u0070\u0061",0x1d661:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006c",0x1d7b4:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061",0x1d662:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d",0x1d7b5:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006d\u0075",0x1d663:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e",0x1d7a9:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073n\u0061\u0062\u006c\u0061",0x1d7b6:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006e\u0075",0x1d664:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u006f",0x1d7c2:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073o\u006d\u0065\u0067\u0061",0x1d7b8:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d665:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070",0x1d7c3:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d7bf:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0068\u0069",0x1d7b9:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0070\u0069",0x1d7c1:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0070\u0073\u0069",0x1d666:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0071",0x1d667:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0072",0x1d7ba:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0072\u0068\u006f",0x1d668:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0073",0x1d7bc:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073s\u0069\u0067\u006d\u0061",0x1d669:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0074",0x1d7bd:"\u006d\u0062\u0066i\u0074\u0073\u0061\u006e\u0073\u0074\u0061\u0075",0x1d7b1:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073t\u0068\u0065\u0074\u0061",0x1d66a:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0075",0x1d7be:"\u006d\u0062f\u0069\u0074\u0073a\u006e\u0073\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d66b:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076",0x1d7a1:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072T\u0068\u0065\u0074\u0061",0x1d7c4:"\u006d\u0062\u0066\u0069ts\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d7c6:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072k\u0061\u0070\u0070\u0061",0x1d7c7:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069",0x1d7c9:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073v\u0061\u0072\u0070\u0069",0x1d7c8:"\u006db\u0066i\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f",0x1d7bb:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072s\u0069\u0067\u006d\u0061",0x1d7c5:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0076\u0061\u0072t\u0068\u0065\u0074\u0061",0x1d66c:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0077",0x1d66d:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078",0x1d7b7:"m\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0078\u0069",0x1d66e:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u0079",0x1d66f:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a",0x1d7af:"\u006d\u0062\u0066\u0069\u0074\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061",0x1d748:"\u006d\u0062\u0066\u0069\u0074\u0073\u0069\u0067\u006d\u0061",0x1d495:"\u006d\u0062\u0066\u0069\u0074\u0074",0x1d749:"\u006d\u0062\u0066\u0069\u0074\u0074\u0061\u0075",0x1d73d:"\u006d\u0062\u0066\u0069\u0074\u0074\u0068\u0065\u0074\u0061",0x1d496:"\u006d\u0062\u0066\u0069\u0074\u0075",0x1d74a:"\u006d\u0062\u0066i\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d497:"\u006d\u0062\u0066\u0069\u0074\u0076",0x1d72d:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d750:"\u006db\u0066i\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d752:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d753:"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0068\u0069",0x1d755:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0070\u0069",0x1d754:"m\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0072\u0068\u006f",0x1d747:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d751:"\u006d\u0062\u0066\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d498:"\u006d\u0062\u0066\u0069\u0074\u0077",0x1d499:"\u006d\u0062\u0066\u0069\u0074\u0078",0x1d743:"\u006db\u0066\u0069\u0074\u0078\u0069",0x1d49a:"\u006d\u0062\u0066\u0069\u0074\u0079",0x1d49b:"\u006d\u0062\u0066\u0069\u0074\u007a",0x1d73b:"\u006db\u0066\u0069\u0074\u007a\u0065\u0074a",0x1d423:"\u006d\u0062\u0066\u006a",0x1d424:"\u006d\u0062\u0066\u006b",0x1d6cb:"\u006d\u0062\u0066\u006b\u0061\u0070\u0070\u0061",0x1d425:"\u006d\u0062\u0066\u006c",0x1d6cc:"\u006db\u0066\u006c\u0061\u006d\u0062\u0064a",0x1d426:"\u006d\u0062\u0066\u006d",0x1d6cd:"\u006d\u0062\u0066m\u0075",0x1d427:"\u006d\u0062\u0066\u006e",0x1d6c1:"\u006d\u0062\u0066\u006e\u0061\u0062\u006c\u0061",0x1d6ce:"\u006d\u0062\u0066n\u0075",0x1d428:"\u006d\u0062\u0066\u006f",0x1d6da:"\u006d\u0062\u0066\u006f\u006d\u0065\u0067\u0061",0x1d6d0:"\u006d\u0062\u0066\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d429:"\u006d\u0062\u0066\u0070",0x1d6db:"\u006d\u0062\u0066\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d6df:"\u006d\u0062\u0066\u0070\u0068\u0069",0x1d6d1:"\u006d\u0062\u0066p\u0069",0x1d6d9:"\u006d\u0062\u0066\u0070\u0073\u0069",0x1d42a:"\u006d\u0062\u0066\u0071",0x1d42b:"\u006d\u0062\u0066\u0072",0x1d6d2:"\u006d\u0062\u0066\u0072\u0068\u006f",0x1d42c:"\u006d\u0062\u0066\u0073",0x1d5d4:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0041",0x1d756:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0041\u006c\u0070\u0068\u0061",0x1d5d5:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0042",0x1d757:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0042\u0065\u0074\u0061",0x1d5d6:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043",0x1d76c:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0043\u0068\u0069",0x1d5d7:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0044",0x1d759:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0044\u0065\u006c\u0074\u0061",0x1d5d8:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045",0x1d75a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0070s\u0069\u006c\u006f\u006e",0x1d75c:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0045\u0074\u0061",0x1d5d9:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0046",0x1d5da:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0047",0x1d758:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0047\u0061\u006d\u006d\u0061",0x1d5db:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0048",0x1d5dc:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0049",0x1d75e:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0049\u006f\u0074\u0061",0x1d5dd:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004a",0x1d5de:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004b",0x1d75f:"\u006d\u0062\u0066s\u0061\u006e\u0073\u004b\u0061\u0070\u0070\u0061",0x1d5df:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c",0x1d760:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004c\u0061\u006d\u0062\u0064\u0061",0x1d5e0:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004d",0x1d761:"\u006db\u0066\u0073\u0061\u006e\u0073\u004du",0x1d5e1:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004e",0x1d762:"\u006db\u0066\u0073\u0061\u006e\u0073\u004eu",0x1d5e2:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f",0x1d76e:"\u006d\u0062\u0066s\u0061\u006e\u0073\u004f\u006d\u0065\u0067\u0061",0x1d764:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u004f\u006di\u0063\u0072\u006f\u006e",0x1d5e3:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050",0x1d76b:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0068\u0069",0x1d765:"\u006db\u0066\u0073\u0061\u006e\u0073\u0050i",0x1d76d:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0050\u0073\u0069",0x1d5e4:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0051",0x1d5e5:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052",0x1d766:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0052\u0068\u006f",0x1d5e6:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0053",0x1d768:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0053\u0069\u0067\u006d\u0061",0x1d5e7:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054",0x1d769:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0054\u0061\u0075",0x1d75d:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0054\u0068\u0065\u0074\u0061",0x1d5e8:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055",0x1d76a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0055\u0070s\u0069\u006c\u006f\u006e",0x1d5e9:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0056",0x1d5ea:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0057",0x1d5eb:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0058",0x1d763:"\u006db\u0066\u0073\u0061\u006e\u0073\u0058i",0x1d5ec:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0059",0x1d5ed:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u005a",0x1d75b:"m\u0062\u0066\u0073\u0061\u006e\u0073\u005a\u0065\u0074\u0061",0x1d5ee:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0061",0x1d770:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0061\u006c\u0070\u0068\u0061",0x1d5ef:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0062",0x1d771:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0062\u0065\u0074\u0061",0x1d5f0:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063",0x1d786:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0063\u0068\u0069",0x1d5f1:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0064",0x1d773:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0064\u0065\u006c\u0074\u0061",0x1d5f2:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065",0x1d7f4:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074",0x1d774:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0070s\u0069\u006c\u006f\u006e",0x1d776:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0065\u0074\u0061",0x1d5f3:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0066",0x1d7f1:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u0069\u0076\u0065",0x1d7f0:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0066\u006f\u0075\u0072",0x1d5f4:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0067",0x1d772:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0067\u0061\u006d\u006d\u0061",0x1d5f5:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0068",0x1d5f6:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0069",0x1d778:"m\u0062\u0066\u0073\u0061\u006e\u0073\u0069\u006f\u0074\u0061",0x1d5f7:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006a",0x1d5f8:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006b",0x1d779:"\u006d\u0062\u0066s\u0061\u006e\u0073\u006b\u0061\u0070\u0070\u0061",0x1d5f9:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c",0x1d77a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006c\u0061\u006d\u0062\u0064\u0061",0x1d5fa:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006d",0x1d77b:"\u006db\u0066\u0073\u0061\u006e\u0073\u006du",0x1d5fb:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006e",0x1d76f:"\u006d\u0062\u0066s\u0061\u006e\u0073\u006e\u0061\u0062\u006c\u0061",0x1d7f5:"m\u0062\u0066\u0073\u0061\u006e\u0073\u006e\u0069\u006e\u0065",0x1d77c:"\u006db\u0066\u0073\u0061\u006e\u0073\u006eu",0x1d5fc:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f",0x1d788:"\u006d\u0062\u0066s\u0061\u006e\u0073\u006f\u006d\u0065\u0067\u0061",0x1d77e:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006di\u0063\u0072\u006f\u006e",0x1d7ed:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u006f\u006e\u0065",0x1d5fd:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070",0x1d789:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0061r\u0074\u0069\u0061\u006c",0x1d785:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0068\u0069",0x1d77f:"\u006db\u0066\u0073\u0061\u006e\u0073\u0070i",0x1d787:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0070\u0073\u0069",0x1d5fe:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0071",0x1d5ff:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072",0x1d780:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0072\u0068\u006f",0x1d600:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073",0x1d7f3:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e",0x1d782:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0073\u0069\u0067\u006d\u0061",0x1d7f2:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0073\u0069\u0078",0x1d601:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074",0x1d783:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0061\u0075",0x1d777:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0065\u0074\u0061",0x1d7ef:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065",0x1d7ee:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0074\u0077\u006f",0x1d602:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075",0x1d784:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0075\u0070s\u0069\u006c\u006f\u006e",0x1d603:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076",0x1d767:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d78a:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0065\u0070s\u0069\u006c\u006f\u006e",0x1d78c:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d78d:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0068\u0069",0x1d78f:"\u006d\u0062\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0070\u0069",0x1d78e:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0076\u0061\u0072\u0072\u0068\u006f",0x1d781:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d78b:"\u006db\u0066s\u0061\u006e\u0073\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d604:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0077",0x1d605:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0078",0x1d77d:"\u006db\u0066\u0073\u0061\u006e\u0073\u0078i",0x1d606:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u0079",0x1d607:"\u006d\u0062\u0066\u0073\u0061\u006e\u0073\u007a",0x1d7ec:"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0072\u006f",0x1d775:"m\u0062\u0066\u0073\u0061\u006e\u0073\u007a\u0065\u0074\u0061",0x1d4d0:"\u006db\u0066\u0073\u0063\u0072\u0041",0x1d4d1:"\u006db\u0066\u0073\u0063\u0072\u0042",0x1d4d2:"\u006db\u0066\u0073\u0063\u0072\u0043",0x1d4d3:"\u006db\u0066\u0073\u0063\u0072\u0044",0x1d4d4:"\u006db\u0066\u0073\u0063\u0072\u0045",0x1d4d5:"\u006db\u0066\u0073\u0063\u0072\u0046",0x1d4d6:"\u006db\u0066\u0073\u0063\u0072\u0047",0x1d4d7:"\u006db\u0066\u0073\u0063\u0072\u0048",0x1d4d8:"\u006db\u0066\u0073\u0063\u0072\u0049",0x1d4d9:"\u006db\u0066\u0073\u0063\u0072\u004a",0x1d4da:"\u006db\u0066\u0073\u0063\u0072\u004b",0x1d4db:"\u006db\u0066\u0073\u0063\u0072\u004c",0x1d4dc:"\u006db\u0066\u0073\u0063\u0072\u004d",0x1d4dd:"\u006db\u0066\u0073\u0063\u0072\u004e",0x1d4de:"\u006db\u0066\u0073\u0063\u0072\u004f",0x1d4df:"\u006db\u0066\u0073\u0063\u0072\u0050",0x1d4e0:"\u006db\u0066\u0073\u0063\u0072\u0051",0x1d4e1:"\u006db\u0066\u0073\u0063\u0072\u0052",0x1d4e2:"\u006db\u0066\u0073\u0063\u0072\u0053",0x1d4e3:"\u006db\u0066\u0073\u0063\u0072\u0054",0x1d4e4:"\u006db\u0066\u0073\u0063\u0072\u0055",0x1d4e5:"\u006db\u0066\u0073\u0063\u0072\u0056",0x1d4e6:"\u006db\u0066\u0073\u0063\u0072\u0057",0x1d4e7:"\u006db\u0066\u0073\u0063\u0072\u0058",0x1d4e8:"\u006db\u0066\u0073\u0063\u0072\u0059",0x1d4e9:"\u006db\u0066\u0073\u0063\u0072\u005a",0x1d4ea:"\u006db\u0066\u0073\u0063\u0072\u0061",0x1d4eb:"\u006db\u0066\u0073\u0063\u0072\u0062",0x1d4ec:"\u006db\u0066\u0073\u0063\u0072\u0063",0x1d4ed:"\u006db\u0066\u0073\u0063\u0072\u0064",0x1d4ee:"\u006db\u0066\u0073\u0063\u0072\u0065",0x1d4ef:"\u006db\u0066\u0073\u0063\u0072\u0066",0x1d4f0:"\u006db\u0066\u0073\u0063\u0072\u0067",0x1d4f1:"\u006db\u0066\u0073\u0063\u0072\u0068",0x1d4f2:"\u006db\u0066\u0073\u0063\u0072\u0069",0x1d4f3:"\u006db\u0066\u0073\u0063\u0072\u006a",0x1d4f4:"\u006db\u0066\u0073\u0063\u0072\u006b",0x1d4f5:"\u006db\u0066\u0073\u0063\u0072\u006c",0x1d4f6:"\u006db\u0066\u0073\u0063\u0072\u006d",0x1d4f7:"\u006db\u0066\u0073\u0063\u0072\u006e",0x1d4f8:"\u006db\u0066\u0073\u0063\u0072\u006f",0x1d4f9:"\u006db\u0066\u0073\u0063\u0072\u0070",0x1d4fa:"\u006db\u0066\u0073\u0063\u0072\u0071",0x1d4fb:"\u006db\u0066\u0073\u0063\u0072\u0072",0x1d4fc:"\u006db\u0066\u0073\u0063\u0072\u0073",0x1d4fd:"\u006db\u0066\u0073\u0063\u0072\u0074",0x1d4fe:"\u006db\u0066\u0073\u0063\u0072\u0075",0x1d4ff:"\u006db\u0066\u0073\u0063\u0072\u0076",0x1d500:"\u006db\u0066\u0073\u0063\u0072\u0077",0x1d501:"\u006db\u0066\u0073\u0063\u0072\u0078",0x1d502:"\u006db\u0066\u0073\u0063\u0072\u0079",0x1d503:"\u006db\u0066\u0073\u0063\u0072\u007a",0x1d6d4:"\u006d\u0062\u0066\u0073\u0069\u0067\u006d\u0061",0x1d42d:"\u006d\u0062\u0066\u0074",0x1d6d5:"\u006d\u0062\u0066\u0074\u0061\u0075",0x1d6c9:"\u006d\u0062\u0066\u0074\u0068\u0065\u0074\u0061",0x1d42e:"\u006d\u0062\u0066\u0075",0x1d6d6:"\u006d\u0062\u0066\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d42f:"\u006d\u0062\u0066\u0076",0x1d6b9:"m\u0062\u0066\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d6dc:"\u006d\u0062\u0066\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6de:"m\u0062\u0066\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d6d7:"\u006db\u0066\u0076\u0061\u0072\u0070\u0068i",0x1d6e1:"\u006d\u0062\u0066\u0076\u0061\u0072\u0070\u0069",0x1d6e0:"\u006db\u0066\u0076\u0061\u0072\u0072\u0068o",0x1d6d3:"m\u0062\u0066\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d6dd:"m\u0062\u0066\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d430:"\u006d\u0062\u0066\u0077",0x1d431:"\u006d\u0062\u0066\u0078",0x1d6cf:"\u006d\u0062\u0066x\u0069",0x1d432:"\u006d\u0062\u0066\u0079",0x1d433:"\u006d\u0062\u0066\u007a",0x1d6c7:"\u006db\u0066\u007a\u0065\u0074\u0061",0x3107:"\u006db\u006f\u0070\u006f\u006d\u006f\u0066o",0x33d4:"\u006d\u0062\u0073\u0071\u0075\u0061\u0072\u0065",0x24dc:"\u006dc\u0069\u0072\u0063\u006c\u0065",0x33a5:"\u006d\u0063\u0075b\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x26ab:"m\u0064\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",0x2b25:"\u006d\u0064\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x2b27:"\u006d\u0064\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x25fc:"m\u0064\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x29eb:"\u006d\u0064\u006c\u0067\u0062\u006c\u006b\u006c\u006fz\u0065\u006e\u0067\u0065",0x1e41:"\u006d\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e43:"\u006dd\u006f\u0074\u0062\u0065\u006c\u006fw",0x2981:"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0063\u0069\u0072\u0063\u006c\u0065",0x25fe:"\u006d\u0064\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x26ac:"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x25fd:"\u006d\u0064\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x26aa:"m\u0064\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x2b26:"\u006d\u0064\u0077h\u0074\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x2b28:"\u006d\u0064\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x25fb:"m\u0064\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x29af:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u006c\u0074\u006f\u0073\u0077",0x29ae:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0064\u0072\u0074\u006f\u0073\u0065",0x29ab:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0064\u0074\u006f\u0073\u0077",0x29a9:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u006c\u0075\u0074\u006f\u006e\u0077",0x29aa:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0064\u0074\u006f\u0073\u0065",0x29a8:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0072\u0075\u0074\u006f\u006e\u0065",0x29ad:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u006c\u0074\u006f\u006e\u0077",0x29ac:"\u006de\u0061s\u0061\u006e\u0067\u006c\u0065\u0075\u0072\u0074\u006f\u006e\u0065",0x225e:"\u006d\u0065\u0061\u0073\u0065\u0071",0x2221:"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006c\u0065",0x299b:"\u006d\u0065\u0061\u0073\u0075\u0072\u0065\u0064\u0061\u006e\u0067\u006ce\u006c\u0065\u0066\u0074",0x22be:"\u006de\u0061s\u0075\u0072\u0065\u0064\u0072i\u0067\u0068t\u0061\u006e\u0067\u006c\u0065",0x2b51:"\u006d\u0065\u0064b\u006c\u0061\u0063\u006b\u0073\u0074\u0061\u0072",0x2b50:"\u006d\u0065\u0064w\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072",0xfee2:"\u006de\u0065m\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfee3:"\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfee1:"\u006d\u0065\u0065m\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfee4:"\u006d\u0065e\u006d\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcd1:"m\u0065\u0065\u006d\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfc48:"\u006d\u0065\u0065\u006dme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063",0xfccf:"\u006de\u0065m\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfcce:"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfcd0:"\u006d\u0065\u0065\u006dwi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0x334d:"\u006d\u0065\u0065\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x3081:"\u006d\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x337e:"\u006d\u0065\u0069\u007a\u0069\u0065\u0072\u0061\u0073q\u0075\u0061\u0072\u0065",0x30e1:"\u006d\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff92:"\u006d\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05de:"\u006d\u0065\u006d",0xfb3e:"\u006de\u006dd\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x0574:"m\u0065\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x05a5:"\u006d\u0065\u0072k\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x05a6:"\u006de\u0072k\u0068\u0061\u006b\u0065\u0066u\u006c\u0061h\u0065\u0062\u0072\u0065\u0077",0x1d504:"\u006d\u0066\u0072\u0061\u006b\u0041",0x1d505:"\u006d\u0066\u0072\u0061\u006b\u0042",0x212d:"\u006d\u0066\u0072\u0061\u006b\u0043",0x1d507:"\u006d\u0066\u0072\u0061\u006b\u0044",0x1d508:"\u006d\u0066\u0072\u0061\u006b\u0045",0x1d509:"\u006d\u0066\u0072\u0061\u006b\u0046",0x1d50a:"\u006d\u0066\u0072\u0061\u006b\u0047",0x210c:"\u006d\u0066\u0072\u0061\u006b\u0048",0x1d50d:"\u006d\u0066\u0072\u0061\u006b\u004a",0x1d50e:"\u006d\u0066\u0072\u0061\u006b\u004b",0x1d50f:"\u006d\u0066\u0072\u0061\u006b\u004c",0x1d510:"\u006d\u0066\u0072\u0061\u006b\u004d",0x1d511:"\u006d\u0066\u0072\u0061\u006b\u004e",0x1d512:"\u006d\u0066\u0072\u0061\u006b\u004f",0x1d513:"\u006d\u0066\u0072\u0061\u006b\u0050",0x1d514:"\u006d\u0066\u0072\u0061\u006b\u0051",0x1d516:"\u006d\u0066\u0072\u0061\u006b\u0053",0x1d517:"\u006d\u0066\u0072\u0061\u006b\u0054",0x1d518:"\u006d\u0066\u0072\u0061\u006b\u0055",0x1d519:"\u006d\u0066\u0072\u0061\u006b\u0056",0x1d51a:"\u006d\u0066\u0072\u0061\u006b\u0057",0x1d51b:"\u006d\u0066\u0072\u0061\u006b\u0058",0x1d51c:"\u006d\u0066\u0072\u0061\u006b\u0059",0x2128:"\u006d\u0066\u0072\u0061\u006b\u005a",0x1d51e:"\u006d\u0066\u0072\u0061\u006b\u0061",0x1d51f:"\u006d\u0066\u0072\u0061\u006b\u0062",0x1d520:"\u006d\u0066\u0072\u0061\u006b\u0063",0x1d521:"\u006d\u0066\u0072\u0061\u006b\u0064",0x1d522:"\u006d\u0066\u0072\u0061\u006b\u0065",0x1d523:"\u006d\u0066\u0072\u0061\u006b\u0066",0x1d524:"\u006d\u0066\u0072\u0061\u006b\u0067",0x1d525:"\u006d\u0066\u0072\u0061\u006b\u0068",0x1d526:"\u006d\u0066\u0072\u0061\u006b\u0069",0x1d527:"\u006d\u0066\u0072\u0061\u006b\u006a",0x1d528:"\u006d\u0066\u0072\u0061\u006b\u006b",0x1d529:"\u006d\u0066\u0072\u0061\u006b\u006c",0x1d52a:"\u006d\u0066\u0072\u0061\u006b\u006d",0x1d52b:"\u006d\u0066\u0072\u0061\u006b\u006e",0x1d52c:"\u006d\u0066\u0072\u0061\u006b\u006f",0x1d52d:"\u006d\u0066\u0072\u0061\u006b\u0070",0x1d52e:"\u006d\u0066\u0072\u0061\u006b\u0071",0x1d52f:"\u006d\u0066\u0072\u0061\u006b\u0072",0x1d530:"\u006d\u0066\u0072\u0061\u006b\u0073",0x1d531:"\u006d\u0066\u0072\u0061\u006b\u0074",0x1d532:"\u006d\u0066\u0072\u0061\u006b\u0075",0x1d533:"\u006d\u0066\u0072\u0061\u006b\u0076",0x1d534:"\u006d\u0066\u0072\u0061\u006b\u0077",0x1d535:"\u006d\u0066\u0072\u0061\u006b\u0078",0x1d536:"\u006d\u0066\u0072\u0061\u006b\u0079",0x1d537:"\u006d\u0066\u0072\u0061\u006b\u007a",0x0271:"\u006d\u0068\u006fo\u006b",0x3392:"\u006dh\u007a\u0073\u0071\u0075\u0061\u0072e",0x0095:"\u006d\u0069\u0063r\u006f",0x2a5d:"\u006di\u0064\u0062\u0061\u0072\u0076\u0065e",0x2a5c:"m\u0069\u0064\u0062\u0061\u0072\u0077\u0065\u0064\u0067\u0065",0x2af0:"\u006d\u0069\u0064\u0063\u0069\u0072",0xff65:"\u006d\u0069\u0064\u0064\u006c\u0065\u0064\u006f\u0074\u006b\u0061t\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077i\u0064\u0074\u0068",0x3272:"\u006di\u0065u\u006d\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3212:"\u006d\u0069\u0065\u0075\u006d\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3264:"\u006d\u0069\u0065\u0075\u006d\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3141:"m\u0069\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e",0x3170:"\u006di\u0065u\u006d\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x3204:"\u006d\u0069e\u0075\u006d\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x316e:"\u006d\u0069e\u0075\u006d\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x316f:"\u006di\u0065u\u006d\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x307f:"\u006d\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30df:"\u006d\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff90:"\u006d\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x20a5:"\u006d\u0069\u006c\u006c",0x2212:"\u006d\u0069\u006eu\u0073",0x0320:"\u006d\u0069\u006e\u0075\u0073\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x2296:"m\u0069\u006e\u0075\u0073\u0063\u0069\u0072\u0063\u006c\u0065",0x2a2a:"\u006d\u0069\u006e\u0075\u0073\u0064\u006f\u0074",0x2a2b:"\u006d\u0069\u006e\u0075\u0073\u0066\u0064\u006f\u0074\u0073",0x208b:"\u006d\u0069\u006e\u0075\u0073\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0x02d7:"\u006d\u0069\u006e\u0075\u0073\u006d\u006f\u0064",0x2213:"\u006di\u006e\u0075\u0073\u0070\u006c\u0075s",0x2a2c:"\u006d\u0069\u006e\u0075\u0073\u0072\u0064\u006f\u0074\u0073",0x207b:"\u006d\u0069\u006e\u0075\u0073\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2032:"\u006d\u0069\u006e\u0075\u0074\u0065",0x334a:"\u006di\u0072i\u0062\u0061\u0061\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x3349:"\u006d\u0069\u0072\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x1d434:"\u006d\u0069\u0074\u0041",0x1d6e2:"\u006d\u0069\u0074\u0041\u006c\u0070\u0068\u0061",0x1d435:"\u006d\u0069\u0074\u0042",0x2145:"\u006di\u0074\u0042\u0062\u0062\u0044",0x2146:"\u006di\u0074\u0042\u0062\u0062\u0064",0x2147:"\u006di\u0074\u0042\u0062\u0062\u0065",0x2148:"\u006di\u0074\u0042\u0062\u0062\u0069",0x2149:"\u006di\u0074\u0042\u0062\u0062\u006a",0x1d6e3:"\u006di\u0074\u0042\u0065\u0074\u0061",0x1d436:"\u006d\u0069\u0074\u0043",0x1d6f8:"\u006d\u0069\u0074\u0043\u0068\u0069",0x1d437:"\u006d\u0069\u0074\u0044",0x1d6e5:"\u006d\u0069\u0074\u0044\u0065\u006c\u0074\u0061",0x1d438:"\u006d\u0069\u0074\u0045",0x1d6e6:"\u006d\u0069\u0074\u0045\u0070\u0073\u0069\u006c\u006f\u006e",0x1d6e8:"\u006d\u0069\u0074\u0045\u0074\u0061",0x1d439:"\u006d\u0069\u0074\u0046",0x1d43a:"\u006d\u0069\u0074\u0047",0x1d6e4:"\u006d\u0069\u0074\u0047\u0061\u006d\u006d\u0061",0x1d43b:"\u006d\u0069\u0074\u0048",0x1d43c:"\u006d\u0069\u0074\u0049",0x1d6ea:"\u006di\u0074\u0049\u006f\u0074\u0061",0x1d43d:"\u006d\u0069\u0074\u004a",0x1d43e:"\u006d\u0069\u0074\u004b",0x1d6eb:"\u006d\u0069\u0074\u004b\u0061\u0070\u0070\u0061",0x1d43f:"\u006d\u0069\u0074\u004c",0x1d6ec:"\u006di\u0074\u004c\u0061\u006d\u0062\u0064a",0x1d440:"\u006d\u0069\u0074\u004d",0x1d6ed:"\u006d\u0069\u0074M\u0075",0x1d441:"\u006d\u0069\u0074\u004e",0x1d6ee:"\u006d\u0069\u0074N\u0075",0x1d442:"\u006d\u0069\u0074\u004f",0x1d6fa:"\u006d\u0069\u0074\u004f\u006d\u0065\u0067\u0061",0x1d6f0:"\u006d\u0069\u0074\u004f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d443:"\u006d\u0069\u0074\u0050",0x1d6f7:"\u006d\u0069\u0074\u0050\u0068\u0069",0x1d6f1:"\u006d\u0069\u0074P\u0069",0x1d6f9:"\u006d\u0069\u0074\u0050\u0073\u0069",0x1d444:"\u006d\u0069\u0074\u0051",0x1d445:"\u006d\u0069\u0074\u0052",0x1d6f2:"\u006d\u0069\u0074\u0052\u0068\u006f",0x1d446:"\u006d\u0069\u0074\u0053",0x1d6f4:"\u006d\u0069\u0074\u0053\u0069\u0067\u006d\u0061",0x1d447:"\u006d\u0069\u0074\u0054",0x1d6f5:"\u006d\u0069\u0074\u0054\u0061\u0075",0x1d6e9:"\u006d\u0069\u0074\u0054\u0068\u0065\u0074\u0061",0x1d448:"\u006d\u0069\u0074\u0055",0x1d6f6:"\u006d\u0069\u0074\u0055\u0070\u0073\u0069\u006c\u006f\u006e",0x1d449:"\u006d\u0069\u0074\u0056",0x1d44a:"\u006d\u0069\u0074\u0057",0x1d44b:"\u006d\u0069\u0074\u0058",0x1d6ef:"\u006d\u0069\u0074X\u0069",0x1d44c:"\u006d\u0069\u0074\u0059",0x1d44d:"\u006d\u0069\u0074\u005a",0x1d6e7:"\u006di\u0074\u005a\u0065\u0074\u0061",0x1d44e:"\u006d\u0069\u0074\u0061",0x1d6fc:"\u006d\u0069\u0074\u0061\u006c\u0070\u0068\u0061",0x1d44f:"\u006d\u0069\u0074\u0062",0x1d6fd:"\u006di\u0074\u0062\u0065\u0074\u0061",0x1d450:"\u006d\u0069\u0074\u0063",0x1d712:"\u006d\u0069\u0074\u0063\u0068\u0069",0x1d451:"\u006d\u0069\u0074\u0064",0x1d6ff:"\u006d\u0069\u0074\u0064\u0065\u006c\u0074\u0061",0x1d452:"\u006d\u0069\u0074\u0065",0x1d700:"\u006d\u0069\u0074\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d702:"\u006d\u0069\u0074\u0065\u0074\u0061",0x1d453:"\u006d\u0069\u0074\u0066",0x1d454:"\u006d\u0069\u0074\u0067",0x1d6fe:"\u006d\u0069\u0074\u0067\u0061\u006d\u006d\u0061",0x1d456:"\u006d\u0069\u0074\u0069",0x1d704:"\u006di\u0074\u0069\u006f\u0074\u0061",0x1d457:"\u006d\u0069\u0074\u006a",0x1d458:"\u006d\u0069\u0074\u006b",0x1d705:"\u006d\u0069\u0074\u006b\u0061\u0070\u0070\u0061",0x1d459:"\u006d\u0069\u0074\u006c",0x1d706:"\u006di\u0074\u006c\u0061\u006d\u0062\u0064a",0x1d45a:"\u006d\u0069\u0074\u006d",0x1d707:"\u006d\u0069\u0074m\u0075",0x1d45b:"\u006d\u0069\u0074\u006e",0x1d6fb:"\u006d\u0069\u0074\u006e\u0061\u0062\u006c\u0061",0x1d708:"\u006d\u0069\u0074n\u0075",0x1d45c:"\u006d\u0069\u0074\u006f",0x1d714:"\u006d\u0069\u0074\u006f\u006d\u0065\u0067\u0061",0x1d70a:"\u006d\u0069\u0074\u006f\u006d\u0069\u0063\u0072\u006f\u006e",0x1d45d:"\u006d\u0069\u0074\u0070",0x1d715:"\u006d\u0069\u0074\u0070\u0061\u0072\u0074\u0069\u0061\u006c",0x1d711:"\u006d\u0069\u0074\u0070\u0068\u0069",0x1d70b:"\u006d\u0069\u0074p\u0069",0x1d713:"\u006d\u0069\u0074\u0070\u0073\u0069",0x1d45e:"\u006d\u0069\u0074\u0071",0x1d45f:"\u006d\u0069\u0074\u0072",0x1d70c:"\u006d\u0069\u0074\u0072\u0068\u006f",0x1d460:"\u006d\u0069\u0074\u0073",0x1d608:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0041",0x1d609:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0042",0x1d60a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0043",0x1d60b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0044",0x1d60c:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0045",0x1d60d:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0046",0x1d60e:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0047",0x1d60f:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0048",0x1d610:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0049",0x1d611:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004a",0x1d612:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004b",0x1d613:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004c",0x1d614:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004d",0x1d615:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004e",0x1d616:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u004f",0x1d617:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0050",0x1d618:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0051",0x1d619:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0052",0x1d61a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0053",0x1d61b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0054",0x1d61c:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0055",0x1d61d:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0056",0x1d61e:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0057",0x1d61f:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0058",0x1d620:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0059",0x1d621:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u005a",0x1d622:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0061",0x1d623:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0062",0x1d624:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0063",0x1d625:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0064",0x1d626:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0065",0x1d627:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0066",0x1d628:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0067",0x1d629:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0068",0x1d62a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0069",0x1d62b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006a",0x1d62c:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006b",0x1d62d:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006c",0x1d62e:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006d",0x1d62f:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006e",0x1d630:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u006f",0x1d631:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0070",0x1d632:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0071",0x1d633:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0072",0x1d634:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0073",0x1d635:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0074",0x1d636:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0075",0x1d637:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0076",0x1d638:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0077",0x1d639:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0078",0x1d63a:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u0079",0x1d63b:"\u006d\u0069\u0074\u0073\u0061\u006e\u0073\u007a",0x1d70e:"\u006d\u0069\u0074\u0073\u0069\u0067\u006d\u0061",0x1d461:"\u006d\u0069\u0074\u0074",0x1d70f:"\u006d\u0069\u0074\u0074\u0061\u0075",0x1d703:"\u006d\u0069\u0074\u0074\u0068\u0065\u0074\u0061",0x1d462:"\u006d\u0069\u0074\u0075",0x1d710:"\u006d\u0069\u0074\u0075\u0070\u0073\u0069\u006c\u006f\u006e",0x1d463:"\u006d\u0069\u0074\u0076",0x1d6f3:"m\u0069\u0074\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x1d716:"\u006d\u0069\u0074\u0076\u0061\u0072\u0065\u0070\u0073\u0069\u006c\u006f\u006e",0x1d718:"m\u0069\u0074\u0076\u0061\u0072\u006b\u0061\u0070\u0070\u0061",0x1d719:"\u006di\u0074\u0076\u0061\u0072\u0070\u0068i",0x1d71b:"\u006d\u0069\u0074\u0076\u0061\u0072\u0070\u0069",0x1d71a:"\u006di\u0074\u0076\u0061\u0072\u0072\u0068o",0x1d70d:"m\u0069\u0074\u0076\u0061\u0072\u0073\u0069\u0067\u006d\u0061",0x1d717:"m\u0069\u0074\u0076\u0061\u0072\u0074\u0068\u0065\u0074\u0061",0x1d464:"\u006d\u0069\u0074\u0077",0x1d465:"\u006d\u0069\u0074\u0078",0x1d709:"\u006d\u0069\u0074x\u0069",0x1d466:"\u006d\u0069\u0074\u0079",0x1d467:"\u006d\u0069\u0074\u007a",0x1d701:"\u006di\u0074\u007a\u0065\u0074\u0061",0x2adb:"\u006d\u006c\u0063\u0070",0x0270:"\u006d\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064",0x3396:"\u006d\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x33a3:"\u006d\u006d\u0063\u0075\u0062\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0xff4d:"\u006d\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x339f:"\u006dm\u0073q\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x22a7:"\u006d\u006f\u0064\u0065\u006c\u0073",0x2a0a:"\u006do\u0064\u0074\u0077\u006f\u0073\u0075m",0x3082:"\u006d\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x33c1:"\u006d\u006f\u0068\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x30e2:"\u006d\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff93:"\u006d\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x33d6:"\u006do\u006c\u0073\u0071\u0075\u0061\u0072e",0x0e21:"\u006d\u006f\u006d\u0061\u0074\u0068\u0061\u0069",0x33a7:"\u006d\u006f\u0076e\u0072\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x33a8:"\u006d\u006f\u0076\u0065rs\u0073\u0071\u0075\u0061\u0072\u0065\u0064\u0073\u0071\u0075\u0061\u0072\u0065",0x24a8:"\u006d\u0070\u0061\u0072\u0065\u006e",0x33ab:"\u006dp\u0061\u0073\u0071\u0075\u0061\u0072e",0x1d5a0:"\u006d\u0073\u0061\u006e\u0073\u0041",0x1d5a1:"\u006d\u0073\u0061\u006e\u0073\u0042",0x1d5a2:"\u006d\u0073\u0061\u006e\u0073\u0043",0x1d5a3:"\u006d\u0073\u0061\u006e\u0073\u0044",0x1d5a4:"\u006d\u0073\u0061\u006e\u0073\u0045",0x1d5a5:"\u006d\u0073\u0061\u006e\u0073\u0046",0x1d5a6:"\u006d\u0073\u0061\u006e\u0073\u0047",0x1d5a7:"\u006d\u0073\u0061\u006e\u0073\u0048",0x1d5a8:"\u006d\u0073\u0061\u006e\u0073\u0049",0x1d5a9:"\u006d\u0073\u0061\u006e\u0073\u004a",0x1d5aa:"\u006d\u0073\u0061\u006e\u0073\u004b",0x1d5ab:"\u006d\u0073\u0061\u006e\u0073\u004c",0x1d5ac:"\u006d\u0073\u0061\u006e\u0073\u004d",0x1d5ad:"\u006d\u0073\u0061\u006e\u0073\u004e",0x1d5ae:"\u006d\u0073\u0061\u006e\u0073\u004f",0x1d5af:"\u006d\u0073\u0061\u006e\u0073\u0050",0x1d5b0:"\u006d\u0073\u0061\u006e\u0073\u0051",0x1d5b1:"\u006d\u0073\u0061\u006e\u0073\u0052",0x1d5b2:"\u006d\u0073\u0061\u006e\u0073\u0053",0x1d5b3:"\u006d\u0073\u0061\u006e\u0073\u0054",0x1d5b4:"\u006d\u0073\u0061\u006e\u0073\u0055",0x1d5b5:"\u006d\u0073\u0061\u006e\u0073\u0056",0x1d5b6:"\u006d\u0073\u0061\u006e\u0073\u0057",0x1d5b7:"\u006d\u0073\u0061\u006e\u0073\u0058",0x1d5b8:"\u006d\u0073\u0061\u006e\u0073\u0059",0x1d5b9:"\u006d\u0073\u0061\u006e\u0073\u005a",0x1d5ba:"\u006d\u0073\u0061\u006e\u0073\u0061",0x1d5bb:"\u006d\u0073\u0061\u006e\u0073\u0062",0x1d5bc:"\u006d\u0073\u0061\u006e\u0073\u0063",0x1d5bd:"\u006d\u0073\u0061\u006e\u0073\u0064",0x1d5be:"\u006d\u0073\u0061\u006e\u0073\u0065",0x1d7ea:"\u006d\u0073\u0061\u006e\u0073\u0065\u0069\u0067\u0068\u0074",0x1d5bf:"\u006d\u0073\u0061\u006e\u0073\u0066",0x1d7e7:"\u006ds\u0061\u006e\u0073\u0066\u0069\u0076e",0x1d7e6:"\u006ds\u0061\u006e\u0073\u0066\u006f\u0075r",0x1d5c0:"\u006d\u0073\u0061\u006e\u0073\u0067",0x1d5c1:"\u006d\u0073\u0061\u006e\u0073\u0068",0x1d5c2:"\u006d\u0073\u0061\u006e\u0073\u0069",0x1d5c3:"\u006d\u0073\u0061\u006e\u0073\u006a",0x1d5c4:"\u006d\u0073\u0061\u006e\u0073\u006b",0x1d5c5:"\u006d\u0073\u0061\u006e\u0073\u006c",0x1d5c6:"\u006d\u0073\u0061\u006e\u0073\u006d",0x1d5c7:"\u006d\u0073\u0061\u006e\u0073\u006e",0x1d7eb:"\u006ds\u0061\u006e\u0073\u006e\u0069\u006ee",0x1d5c8:"\u006d\u0073\u0061\u006e\u0073\u006f",0x1d7e3:"\u006d\u0073\u0061\u006e\u0073\u006f\u006e\u0065",0x1d5c9:"\u006d\u0073\u0061\u006e\u0073\u0070",0x1d5ca:"\u006d\u0073\u0061\u006e\u0073\u0071",0x1d5cb:"\u006d\u0073\u0061\u006e\u0073\u0072",0x1d5cc:"\u006d\u0073\u0061\u006e\u0073\u0073",0x1d7e9:"\u006d\u0073\u0061\u006e\u0073\u0073\u0065\u0076\u0065\u006e",0x1d7e8:"\u006d\u0073\u0061\u006e\u0073\u0073\u0069\u0078",0x1d5cd:"\u006d\u0073\u0061\u006e\u0073\u0074",0x1d7e5:"\u006d\u0073\u0061\u006e\u0073\u0074\u0068\u0072\u0065\u0065",0x1d7e4:"\u006d\u0073\u0061\u006e\u0073\u0074\u0077\u006f",0x1d5ce:"\u006d\u0073\u0061\u006e\u0073\u0075",0x1d5cf:"\u006d\u0073\u0061\u006e\u0073\u0076",0x1d5d0:"\u006d\u0073\u0061\u006e\u0073\u0077",0x1d5d1:"\u006d\u0073\u0061\u006e\u0073\u0078",0x1d5d2:"\u006d\u0073\u0061\u006e\u0073\u0079",0x1d5d3:"\u006d\u0073\u0061\u006e\u0073\u007a",0x1d7e2:"\u006ds\u0061\u006e\u0073\u007a\u0065\u0072o",0x1d49c:"\u006d\u0073\u0063r\u0041",0x212c:"\u006d\u0073\u0063r\u0042",0x1d49e:"\u006d\u0073\u0063r\u0043",0x1d49f:"\u006d\u0073\u0063r\u0044",0x2130:"\u006d\u0073\u0063r\u0045",0x2131:"\u006d\u0073\u0063r\u0046",0x1d4a2:"\u006d\u0073\u0063r\u0047",0x210b:"\u006d\u0073\u0063r\u0048",0x2110:"\u006d\u0073\u0063r\u0049",0x1d4a5:"\u006d\u0073\u0063r\u004a",0x1d4a6:"\u006d\u0073\u0063r\u004b",0x2112:"\u006d\u0073\u0063r\u004c",0x2133:"\u006d\u0073\u0063r\u004d",0x1d4a9:"\u006d\u0073\u0063r\u004e",0x1d4aa:"\u006d\u0073\u0063r\u004f",0x1d4ab:"\u006d\u0073\u0063r\u0050",0x1d4ac:"\u006d\u0073\u0063r\u0051",0x211b:"\u006d\u0073\u0063r\u0052",0x1d4ae:"\u006d\u0073\u0063r\u0053",0x1d4af:"\u006d\u0073\u0063r\u0054",0x1d4b0:"\u006d\u0073\u0063r\u0055",0x1d4b1:"\u006d\u0073\u0063r\u0056",0x1d4b2:"\u006d\u0073\u0063r\u0057",0x1d4b3:"\u006d\u0073\u0063r\u0058",0x1d4b4:"\u006d\u0073\u0063r\u0059",0x1d4b5:"\u006d\u0073\u0063r\u005a",0x1d4b6:"\u006d\u0073\u0063r\u0061",0x1d4b7:"\u006d\u0073\u0063r\u0062",0x1d4b8:"\u006d\u0073\u0063r\u0063",0x1d4b9:"\u006d\u0073\u0063r\u0064",0x212f:"\u006d\u0073\u0063r\u0065",0x1d4bb:"\u006d\u0073\u0063r\u0066",0x210a:"\u006d\u0073\u0063r\u0067",0x1d4bd:"\u006d\u0073\u0063r\u0068",0x1d4be:"\u006d\u0073\u0063r\u0069",0x1d4bf:"\u006d\u0073\u0063r\u006a",0x1d4c0:"\u006d\u0073\u0063r\u006b",0x1d4c1:"\u006d\u0073\u0063r\u006c",0x1d4c2:"\u006d\u0073\u0063r\u006d",0x1d4c3:"\u006d\u0073\u0063r\u006e",0x2134:"\u006d\u0073\u0063r\u006f",0x1d4c5:"\u006d\u0073\u0063r\u0070",0x1d4c6:"\u006d\u0073\u0063r\u0071",0x1d4c7:"\u006d\u0073\u0063r\u0072",0x1d4c8:"\u006d\u0073\u0063r\u0073",0x1d4c9:"\u006d\u0073\u0063r\u0074",0x1d4ca:"\u006d\u0073\u0063r\u0075",0x1d4cb:"\u006d\u0073\u0063r\u0076",0x1d4cc:"\u006d\u0073\u0063r\u0077",0x1d4cd:"\u006d\u0073\u0063r\u0078",0x1d4ce:"\u006d\u0073\u0063r\u0079",0x1d4cf:"\u006d\u0073\u0063r\u007a",0x33b3:"\u006d\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0xf6ef:"\u006ds\u0075\u0070\u0065\u0072\u0069\u006fr",0x1d670:"\u006d\u0074\u0074\u0041",0x1d671:"\u006d\u0074\u0074\u0042",0x1d672:"\u006d\u0074\u0074\u0043",0x1d673:"\u006d\u0074\u0074\u0044",0x1d674:"\u006d\u0074\u0074\u0045",0x1d675:"\u006d\u0074\u0074\u0046",0x1d676:"\u006d\u0074\u0074\u0047",0x1d677:"\u006d\u0074\u0074\u0048",0x1d678:"\u006d\u0074\u0074\u0049",0x1d679:"\u006d\u0074\u0074\u004a",0x1d67a:"\u006d\u0074\u0074\u004b",0x1d67b:"\u006d\u0074\u0074\u004c",0x1d67c:"\u006d\u0074\u0074\u004d",0x1d67d:"\u006d\u0074\u0074\u004e",0x1d67e:"\u006d\u0074\u0074\u004f",0x1d67f:"\u006d\u0074\u0074\u0050",0x1d680:"\u006d\u0074\u0074\u0051",0x1d681:"\u006d\u0074\u0074\u0052",0x1d682:"\u006d\u0074\u0074\u0053",0x1d683:"\u006d\u0074\u0074\u0054",0x1d684:"\u006d\u0074\u0074\u0055",0x1d685:"\u006d\u0074\u0074\u0056",0x1d686:"\u006d\u0074\u0074\u0057",0x1d687:"\u006d\u0074\u0074\u0058",0x1d688:"\u006d\u0074\u0074\u0059",0x1d689:"\u006d\u0074\u0074\u005a",0x1d68a:"\u006d\u0074\u0074\u0061",0x1d68b:"\u006d\u0074\u0074\u0062",0x1d68c:"\u006d\u0074\u0074\u0063",0x1d68d:"\u006d\u0074\u0074\u0064",0x1d68e:"\u006d\u0074\u0074\u0065",0x1d7fe:"\u006d\u0074\u0074\u0065\u0069\u0067\u0068\u0074",0x1d68f:"\u006d\u0074\u0074\u0066",0x1d7fb:"\u006dt\u0074\u0066\u0069\u0076\u0065",0x1d7fa:"\u006dt\u0074\u0066\u006f\u0075\u0072",0x1d690:"\u006d\u0074\u0074\u0067",0x1d691:"\u006d\u0074\u0074\u0068",0x1d692:"\u006d\u0074\u0074\u0069",0x1d693:"\u006d\u0074\u0074\u006a",0x1d694:"\u006d\u0074\u0074\u006b",0x1d695:"\u006d\u0074\u0074\u006c",0x1d696:"\u006d\u0074\u0074\u006d",0x1d697:"\u006d\u0074\u0074\u006e",0x1d7ff:"\u006dt\u0074\u006e\u0069\u006e\u0065",0x1d698:"\u006d\u0074\u0074\u006f",0x1d7f7:"\u006d\u0074\u0074\u006f\u006e\u0065",0x1d699:"\u006d\u0074\u0074\u0070",0x1d69a:"\u006d\u0074\u0074\u0071",0x1d69b:"\u006d\u0074\u0074\u0072",0x1d69c:"\u006d\u0074\u0074\u0073",0x1d7fd:"\u006d\u0074\u0074\u0073\u0065\u0076\u0065\u006e",0x1d7fc:"\u006d\u0074\u0074\u0073\u0069\u0078",0x1d69d:"\u006d\u0074\u0074\u0074",0x1d7f9:"\u006d\u0074\u0074\u0074\u0068\u0072\u0065\u0065",0x1d7f8:"\u006d\u0074\u0074\u0074\u0077\u006f",0x1d69e:"\u006d\u0074\u0074\u0075",0x1d69f:"\u006d\u0074\u0074\u0076",0x1d6a0:"\u006d\u0074\u0074\u0077",0x1d6a1:"\u006d\u0074\u0074\u0078",0x1d6a2:"\u006d\u0074\u0074\u0079",0x1d6a3:"\u006d\u0074\u0074\u007a",0x1d7f6:"\u006dt\u0074\u007a\u0065\u0072\u006f",0x026f:"\u006dt\u0075\u0072\u006e\u0065\u0064",0x00b5:"\u006d\u0075",0x3382:"\u006du\u0061\u0073\u0071\u0075\u0061\u0072e",0x226b:"m\u0075\u0063\u0068\u0067\u0072\u0065\u0061\u0074\u0065\u0072",0x226a:"\u006d\u0075\u0063\u0068\u006c\u0065\u0073\u0073",0x338c:"\u006du\u0066\u0073\u0071\u0075\u0061\u0072e",0x03bc:"\u006du\u0067\u0072\u0065\u0065\u006b",0x338d:"\u006du\u0067\u0073\u0071\u0075\u0061\u0072e",0x3080:"\u006d\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e0:"\u006d\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff91:"\u006d\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3395:"\u006du\u006c\u0073\u0071\u0075\u0061\u0072e",0x22c9:"\u006d\u0075\u006c\u0074\u0069\u0063\u006c\u006f\u0073e\u006c\u0065\u0066\u0074",0x22ca:"\u006du\u006ct\u0069\u0063\u006c\u006f\u0073\u0065\u0072\u0069\u0067\u0068\u0074",0x22b8:"\u006d\u0075\u006c\u0074\u0069\u006d\u0061\u0070",0x27dc:"m\u0075\u006c\u0074\u0069\u006d\u0061\u0070\u0069\u006e\u0076",0x22cb:"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006e\u006c\u0065\u0066\u0074",0x22cc:"\u006d\u0075\u006c\u0074\u0069\u006f\u0070\u0065\u006er\u0069\u0067\u0068\u0074",0x00d7:"\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079",0x339b:"\u006du\u006d\u0073\u0071\u0075\u0061\u0072e",0x05a3:"\u006du\u006ea\u0068\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x266a:"m\u0075\u0073\u0069\u0063\u0061\u006c\u006e\u006f\u0074\u0065",0x266d:"\u006d\u0075\u0073\u0069\u0063\u0066\u006c\u0061\u0074\u0073\u0069\u0067\u006e",0x266f:"\u006d\u0075\u0073\u0069\u0063\u0073\u0068\u0061\u0072p\u0073\u0069\u0067\u006e",0x33b2:"\u006du\u0073\u0073\u0071\u0075\u0061\u0072e",0x33b6:"\u006du\u0076\u0073\u0071\u0075\u0061\u0072e",0x33bc:"\u006du\u0077\u0073\u0071\u0075\u0061\u0072e",0x33b9:"\u006d\u0076\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x33b7:"\u006d\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x33bf:"\u006d\u0077\u006de\u0067\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x33bd:"\u006d\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x006e:"\u006e",0x21fa:"n\u0056\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2b3a:"\u006eV\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x21fc:"\u006e\u0056l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x21fb:"\u006e\u0056\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2915:"\u006e\u0056r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x2b35:"\u006eV\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077",0x2b3d:"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c",0x2901:"\u006e\u0056\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2918:"\u006e\u0056\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x09a8:"\u006ea\u0062\u0065\u006e\u0067\u0061\u006ci",0x0144:"\u006e\u0061\u0063\u0075\u0074\u0065",0x0928:"\u006e\u0061\u0064\u0065\u0076\u0061",0x0aa8:"\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a28:"\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x306a:"\u006e\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x20a6:"\u006e\u0061\u0069r\u0061",0x30ca:"\u006e\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff85:"\u006e\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x22bc:"\u006e\u0061\u006e\u0064",0x2249:"\u006ea\u0070\u0070\u0072\u006f\u0078",0x3381:"\u006e\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x226d:"\u006e\u0061\u0073\u0079\u006d\u0070",0x266e:"\u006ea\u0074\u0075\u0072\u0061\u006c",0x2011:"\u006e\u0062\u0068\u0079\u0070\u0068\u0065\u006e",0x310b:"\u006eb\u006f\u0070\u006f\u006d\u006f\u0066o",0x0148:"\u006e\u0063\u0061\u0072\u006f\u006e",0x0146:"\u006e\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81d:"\u006ec\u0065\u0064\u0069\u006c\u006c\u00611",0x24dd:"\u006ec\u0069\u0072\u0063\u006c\u0065",0x1e4b:"\u006e\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1e45:"\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e47:"\u006ed\u006f\u0074\u0062\u0065\u006c\u006fw",0x306d:"\u006e\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30cd:"\u006e\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff88:"\u006e\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2931:"n\u0065\u006f\u0076\u006e\u0077\u0061\u0072\u0072\u006f\u0077",0x292e:"n\u0065\u006f\u0076\u0073\u0065\u0061\u0072\u0072\u006f\u0077",0x2922:"\u006ee\u0073\u0077\u0061\u0072\u0072\u006fw",0x26b2:"\u006e\u0065\u0075\u0074\u0065\u0072",0x338b:"\u006e\u0066\u0073\u0071\u0075\u0061\u0072\u0065",0x0999:"\u006e\u0067\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0919:"\u006eg\u0061\u0064\u0065\u0076\u0061",0x0a99:"n\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a19:"n\u0067\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0e07:"\u006e\u0067\u006f\u006e\u0067\u0075\u0074\u0068\u0061\u0069",0x2275:"\u006eg\u0074\u0072\u0073\u0069\u006d",0x2af5:"\u006eh\u0056\u0076\u0065\u0072\u0074",0x3093:"\u006eh\u0069\u0072\u0061\u0067\u0061\u006ea",0x0272:"\u006eh\u006f\u006f\u006b\u006c\u0065\u0066t",0x0273:"\u006e\u0068\u006f\u006f\u006b\u0072\u0065\u0074\u0072o\u0066\u006c\u0065\u0078",0x2af2:"\u006e\u0068\u0070a\u0072",0x326f:"\u006ei\u0065u\u006e\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x320f:"\u006e\u0069\u0065\u0075\u006e\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3135:"\u006e\u0069e\u0075\u006e\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3261:"\u006e\u0069\u0065\u0075\u006e\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3136:"\u006e\u0069e\u0075\u006e\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x3134:"n\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3168:"\u006ei\u0065u\u006e\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x3201:"\u006e\u0069e\u0075\u006e\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3167:"\u006ei\u0065u\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x3166:"\u006e\u0069\u0065\u0075\u006e\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x306b:"\u006e\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30cb:"\u006e\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff86:"\u006e\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xf899:"\u006e\u0069k\u0068\u0061\u0068i\u0074\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e4d:"\u006e\u0069\u006bh\u0061\u0068\u0069\u0074\u0074\u0068\u0061\u0069",0x0039:"\u006e\u0069\u006e\u0065",0x09ef:"n\u0069\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096f:"\u006e\u0069\u006e\u0065\u0064\u0065\u0076\u0061",0x0aef:"\u006e\u0069\u006ee\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6f:"\u006e\u0069\u006ee\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0669:"\u006e\u0069\u006e\u0065\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",0x3029:"\u006e\u0069\u006ee\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3228:"n\u0069n\u0065\u0069\u0064\u0065\u006f\u0067\u0072\u0061p\u0068\u0069\u0063\u0070ar\u0065\u006e",0x2089:"\u006e\u0069\u006ee\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff19:"\u006e\u0069\u006e\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf739:"\u006e\u0069\u006ee\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x247c:"\u006ei\u006e\u0065\u0070\u0061\u0072\u0065n",0x2490:"\u006e\u0069\u006e\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x06f9:"n\u0069\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2178:"\u006ei\u006e\u0065\u0072\u006f\u006d\u0061n",0x2079:"\u006e\u0069\u006ee\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2472:"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2486:"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x249a:"\u006e\u0069\u006e\u0065\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0e59:"\u006e\u0069\u006e\u0065\u0074\u0068\u0061\u0069",0x22fe:"\u006e\u0069\u006f\u0062\u0061\u0072",0x22fc:"\u006e\u0069\u0073",0x22fa:"\u006e\u0069\u0073\u0064",0x01cc:"\u006e\u006a",0x30f3:"\u006ek\u0061\u0074\u0061\u006b\u0061\u006ea",0xff9d:"\u006ek\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x019e:"\u006e\u006c\u0065\u0067\u0072\u0069\u0067\u0068\u0074\u006c\u006f\u006e\u0067",0x2278:"\u006e\u006c\u0065\u0073\u0073\u0067\u0074\u0072",0x2274:"\u006e\u006c\u0065\u0073\u0073\u0073\u0069\u006d",0x1e49:"\u006e\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff4e:"\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x339a:"\u006e\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x09a3:"\u006e\u006e\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0923:"\u006en\u0061\u0064\u0065\u0076\u0061",0x0aa3:"n\u006e\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a23:"n\u006e\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0929:"\u006e\u006e\u006e\u0061\u0064\u0065\u0076\u0061",0x306e:"\u006e\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ce:"\u006e\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff89:"\u006e\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x00a0:"\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065",0x0e13:"\u006eo\u006e\u0065\u006e\u0074\u0068\u0061i",0x0e19:"\u006e\u006f\u006e\u0075\u0074\u0068\u0061\u0069",0x0646:"\u006e\u006f\u006f\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfee6:"\u006eo\u006fn\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb9f:"n\u006f\u006f\u006e\u0067hu\u006en\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfee7:"n\u006fo\u006e\u0068\u0065\u0068\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfee5:"\u006e\u006f\u006fn\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfcd2:"n\u006f\u006f\u006e\u006aee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfc4b:"\u006e\u006f\u006f\u006eje\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063",0xfee8:"\u006e\u006fo\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcd5:"n\u006f\u006f\u006e\u006dee\u006di\u006e\u0069\u0074\u0069\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfc4e:"\u006e\u006f\u006f\u006eme\u0065\u006d\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064\u0061\u0072\u0061\u0062i\u0063",0xfc8d:"\u006e\u006f\u006f\u006eno\u006f\u006e\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc8e:"\u006eo\u006f\u006e\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066\u006da\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xfc4f:"n\u006f\u006f\u006e\u0077\u0069\u0074h\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075r\u0061\u0069\u0073o\u006ca\u0074\u0065\u0064",0xfcd3:"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xe815:"\u006eo\u006fn\u0077\u0069\u0074\u0068\u0068e\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfcd4:"\u006e\u006f\u006f\u006ewi\u0074\u0068\u006b\u0068\u0061\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfc8f:"\u006e\u006fo\u006e\u0077\u0069t\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc50:"\u006e\u006f\u006f\u006ewi\u0074\u0068\u0079\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfc70:"\u006e\u006f\u006f\u006e\u0077\u0069\u0074\u0068\u007a\u0061\u0069\u006ef\u0069\u006e\u0061\u006c",0x2247:"\u006e\u006f\u0074\u0061\u0070\u0070\u0072\u006f\u0078e\u0071\u0075\u0061\u006c",0x21ae:"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068",0x219a:"\u006e\u006f\u0074a\u0072\u0072\u006f\u0077\u006c\u0065\u0066\u0074",0x219b:"\u006e\u006f\u0074\u0061\u0072\u0072\u006f\u0077\u0072\u0069\u0067\u0068\u0074",0x2224:"\u006e\u006f\u0074\u0062\u0061\u0072",0x220c:"n\u006f\u0074\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073",0x21ce:"\u006eo\u0074d\u0062\u006c\u0061\u0072\u0072\u006f\u0077\u0062\u006f\u0074\u0068",0x2209:"\u006e\u006f\u0074\u0065\u006c\u0065\u006d\u0065\u006e\u0074",0x2260:"\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2204:"\u006e\u006f\u0074\u0065\u0078\u0069\u0073\u0074\u0065n\u0074\u0069\u0061\u006c",0x22ae:"\u006eo\u0074\u0066\u006f\u0072\u0063\u0065s",0x22af:"\u006e\u006f\u0074\u0066\u006f\u0072\u0063\u0065\u0073e\u0078\u0074\u0072\u0061",0x226f:"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072",0x2271:"\u006eo\u0074g\u0072\u0065\u0061\u0074\u0065r\u006e\u006fr\u0065\u0071\u0075\u0061\u006c",0x2279:"\u006e\u006f\u0074\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u006e\u006fr\u006c\u0065\u0073\u0073",0x2a7e:"\u006e\u006f\u0074\u0067re\u0061\u0074\u0065\u0072\u006f\u0072\u0073\u006c\u006e\u0074\u0065\u0071\u006c",0x2262:"\u006e\u006f\u0074i\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c",0x226e:"\u006eo\u0074\u006c\u0065\u0073\u0073",0x2270:"\u006eo\u0074l\u0065\u0073\u0073\u006e\u006f\u0072\u0065\u0071\u0075\u0061\u006c",0x2226:"n\u006f\u0074\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x2280:"n\u006f\u0074\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073",0x22ad:"\u006e\u006f\u0074s\u0061\u0074\u0069\u0073\u0066\u0069\u0065\u0073",0x2241:"\u006e\u006f\u0074\u0073\u0069\u006d\u0069\u006c\u0061\u0072",0x2284:"\u006eo\u0074\u0073\u0075\u0062\u0073\u0065t",0x2288:"\u006e\u006f\u0074s\u0075\u0062\u0073\u0065\u0074\u0065\u0071\u006c",0x2281:"n\u006f\u0074\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073",0x2285:"n\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073\u0065\u0074",0x2289:"\u006e\u006f\u0074\u0073\u0075\u0070\u0065\u0072\u0073e\u0074\u0065\u0071\u006c",0x22ec:"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u0065\u0071\u006c\u006c\u0065\u0066\u0074",0x22ed:"\u006e\u006f\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u0065\u0071\u006cr\u0069\u0067\u0068\u0074",0x22ea:"\u006eo\u0074t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",0x22eb:"\u006e\u006ft\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x22ac:"\u006e\u006f\u0074t\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065",0x0576:"n\u006f\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x24a9:"\u006e\u0070\u0061\u0072\u0065\u006e",0x2a14:"\u006ep\u006f\u006c\u0069\u006e\u0074",0x22e0:"\u006e\u0070\u0072e\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",0x2244:"\u006e\u0073\u0069m\u0065",0x22e2:"n\u0073\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u0065\u0071",0x22e3:"n\u0073\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u0065\u0071",0x33b1:"\u006e\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x22e1:"\u006e\u0073\u0075c\u0063\u0063\u0075\u0072\u006c\u0079\u0065\u0071",0x207f:"\u006es\u0075\u0070\u0065\u0072\u0069\u006fr",0x00f1:"\u006e\u0074\u0069\u006c\u0064\u0065",0x03bd:"\u006e\u0075",0x306c:"\u006e\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30cc:"\u006e\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff87:"\u006e\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x09bc:"\u006e\u0075\u006bt\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x093c:"\u006eu\u006b\u0074\u0061\u0064\u0065\u0076a",0x0abc:"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a3c:"\u006e\u0075\u006b\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0023:"\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e",0xff03:"\u006e\u0075\u006d\u0062er\u0073\u0069\u0067\u006e\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe5f:"\u006eu\u006db\u0065\u0072\u0073\u0069\u0067\u006e\u0073\u006d\u0061\u006c\u006c",0x0374:"\u006e\u0075m\u0065\u0072\u0061l\u0073\u0069\u0067\u006e\u0067\u0072\u0065\u0065\u006b",0x0375:"n\u0075\u006d\u0065\u0072al\u0073i\u0067\u006e\u006c\u006f\u0077e\u0072\u0067\u0072\u0065\u0065\u006b",0x2116:"\u006e\u0075\u006d\u0065\u0072\u006f",0x05e0:"\u006e\u0075\u006e",0xfb40:"\u006eu\u006e\u0064\u0061\u0067\u0065\u0073h",0x2902:"n\u0076\u004c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2904:"\u006e\u0076L\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2903:"\u006e\u0076\u0052i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x29de:"\u006ev\u0069\u006e\u0066\u0074\u0079",0x21f7:"n\u0076\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2b39:"\u006ev\u006ce\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x21f9:"\u006e\u0076l\u0065\u0066\u0074r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x21f8:"\u006e\u0076\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2914:"\u006e\u0076r\u0069\u0067\u0068t\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x33b5:"\u006e\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x2b34:"\u006ev\u0074w\u006f\u0068\u0065\u0061\u0064l\u0065\u0066t\u0061\u0072\u0072\u006f\u0077",0x2b3c:"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061i\u006c",0x2900:"\u006e\u0076\u0074\u0077oh\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x2917:"\u006e\u0076\u0074wo\u0068\u0065\u0061\u0064\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0074\u0061\u0069\u006c",0x2932:"n\u0077\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077",0x2921:"\u006ew\u0073\u0065\u0061\u0072\u0072\u006fw",0x33bb:"\u006e\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x099e:"\u006e\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091e:"\u006ey\u0061\u0064\u0065\u0076\u0061",0x0a9e:"n\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1e:"n\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x006f:"\u006f",0x00f3:"\u006f\u0061\u0063\u0075\u0074\u0065",0x0e2d:"\u006f\u0061\u006e\u0067\u0074\u0068\u0061\u0069",0x233d:"\u006f\u0062\u0061\u0072",0x0275:"\u006fb\u0061\u0072\u0072\u0065\u0064",0x04e9:"\u006fb\u0061r\u0072\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04eb:"\u006f\u0062\u0061rr\u0065\u0064\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0993:"\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x311b:"\u006fb\u006f\u0070\u006f\u006d\u006f\u0066o",0x29ba:"\u006f\u0062\u006f\u0074",0x23e0:"\u006fb\u0072\u0062\u0072\u0061\u006b",0x014f:"\u006f\u0062\u0072\u0065\u0076\u0065",0x29b8:"\u006fb\u0073\u006c\u0061\u0073\u0068",0x0911:"o\u0063\u0061\u006e\u0064\u0072\u0061\u0064\u0065\u0076\u0061",0x0a91:"\u006fc\u0061n\u0064\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0949:"o\u0063a\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065l\u0073\u0069\u0067\u006ede\u0076\u0061",0x0ac9:"\u006fc\u0061\u006e\u0064\u0072\u0061\u0076\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x01d2:"\u006f\u0063\u0061\u0072\u006f\u006e",0x24de:"\u006fc\u0069\u0072\u0063\u006c\u0065",0x00f4:"o\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1ed1:"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0061\u0063\u0075\u0074\u0065",0x1ed9:"\u006f\u0063\u0069\u0072cu\u006d\u0066\u006c\u0065\u0078\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1ed3:"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0067\u0072\u0061\u0076\u0065",0x1ed5:"o\u0063i\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078h\u006f\u006f\u006b\u0061bo\u0076\u0065",0x1ed7:"\u006f\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0074\u0069\u006c\u0064\u0065",0x043e:"\u006fc\u0079\u0072\u0069\u006c\u006c\u0069c",0x020d:"\u006fd\u0062\u006c\u0067\u0072\u0061\u0076e",0x0913:"\u006f\u0064\u0065v\u0061",0x00f6:"\u006fd\u0069\u0065\u0072\u0065\u0073\u0069s",0x04e7:"\u006f\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x2a38:"\u006f\u0064\u0069\u0076",0x1ecd:"\u006fd\u006f\u0074\u0062\u0065\u006c\u006fw",0x29bc:"\u006f\u0064\u006ft\u0073\u006c\u0061\u0073\u0068\u0064\u006f\u0074",0x0153:"\u006f\u0065",0x315a:"\u006f\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x02db:"\u006f\u0067\u006f\u006e\u0065\u006b",0x0328:"\u006fg\u006f\u006e\u0065\u006b\u0063\u006db",0x00f2:"\u006f\u0067\u0072\u0061\u0076\u0065",0x29c1:"\u006f\u0067\u0072e\u0061\u0074\u0065\u0072\u0074\u0068\u0061\u006e",0x0a93:"\u006fg\u0075\u006a\u0061\u0072\u0061\u0074i",0x0585:"\u006f\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x304a:"\u006fh\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ecf:"\u006f\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01a1:"\u006f\u0068\u006fr\u006e",0x1edb:"\u006f\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ee3:"\u006f\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1edd:"\u006f\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1edf:"\u006f\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1ee1:"\u006f\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x0151:"\u006f\u0068\u0075\u006e\u0067\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074",0x01a3:"\u006f\u0069",0x2230:"\u006f\u0069\u0069\u0069\u006e\u0074",0x222f:"\u006f\u0069\u0069n\u0074",0x2233:"\u006f\u0069n\u0074\u0063\u0074r\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x020f:"\u006f\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x30aa:"\u006fk\u0061\u0074\u0061\u006b\u0061\u006ea",0xff75:"\u006fk\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x3157:"\u006fk\u006f\u0072\u0065\u0061\u006e",0x29bb:"\u006fl\u0063\u0072\u006f\u0073\u0073",0x05ab:"\u006fl\u0065\u0068\u0065\u0062\u0072\u0065w",0x29c0:"\u006fl\u0065\u0073\u0073\u0074\u0068\u0061n",0x014d:"\u006fm\u0061\u0063\u0072\u006f\u006e",0x1e53:"\u006f\u006d\u0061c\u0072\u006f\u006e\u0061\u0063\u0075\u0074\u0065",0x1e51:"\u006f\u006d\u0061c\u0072\u006f\u006e\u0067\u0072\u0061\u0076\u0065",0x0950:"\u006f\u006d\u0064\u0065\u0076\u0061",0x03c9:"\u006f\u006d\u0065g\u0061",0x03d6:"\u006f\u006d\u0065\u0067\u0061\u0031",0x0461:"\u006f\u006d\u0065\u0067\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0277:"\u006f\u006de\u0067\u0061\u006ca\u0074\u0069\u006e\u0063\u006c\u006f\u0073\u0065\u0064",0x047b:"\u006fm\u0065g\u0061\u0072\u006f\u0075\u006ed\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x047d:"\u006fm\u0065g\u0061\u0074\u0069\u0074\u006co\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x03ce:"\u006f\u006d\u0065\u0067\u0061\u0074\u006f\u006e\u006f\u0073",0x0ad0:"\u006f\u006d\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x03bf:"\u006fm\u0069\u0063\u0072\u006f\u006e",0x03cc:"\u006f\u006d\u0069c\u0072\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0xff4f:"\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0031:"\u006f\u006e\u0065",0x09e7:"\u006f\u006e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0967:"\u006fn\u0065\u0064\u0065\u0076\u0061",0x2024:"\u006f\u006e\u0065\u0064\u006f\u0074\u0065\u006e\u006ce\u0061\u0064\u0065\u0072",0x215b:"\u006fn\u0065\u0065\u0069\u0067\u0068\u0074h",0x2155:"\u006f\u006e\u0065\u0066\u0069\u0066\u0074\u0068",0xf6dc:"\u006fn\u0065\u0066\u0069\u0074\u0074\u0065d",0x0ae7:"o\u006e\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a67:"o\u006e\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0661:"\u006f\u006e\u0065\u0068\u0061\u0063\u006b\u0061\u0072\u0061\u0062\u0069\u0063",0x00bd:"\u006fn\u0065\u0068\u0061\u006c\u0066",0x3021:"o\u006e\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3220:"\u006f\u006e\u0065\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x2081:"o\u006e\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff11:"\u006f\u006e\u0065m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x09f4:"\u006f\u006e\u0065\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0xf731:"o\u006e\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2474:"\u006f\u006e\u0065\u0070\u0061\u0072\u0065\u006e",0x2488:"\u006fn\u0065\u0070\u0065\u0072\u0069\u006fd",0x06f1:"\u006f\u006e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x00bc:"\u006f\u006e\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072",0x2170:"\u006f\u006e\u0065\u0072\u006f\u006d\u0061\u006e",0x2159:"\u006f\u006e\u0065\u0073\u0069\u0078\u0074\u0068",0x00b9:"o\u006e\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e51:"\u006fn\u0065\u0074\u0068\u0061\u0069",0x2153:"\u006f\u006e\u0065\u0074\u0068\u0069\u0072\u0064",0x01eb:"\u006fo\u0067\u006f\u006e\u0065\u006b",0x01ed:"\u006f\u006f\u0067\u006f\u006e\u0065\u006b\u006d\u0061\u0063\u0072\u006f\u006e",0x0a13:"\u006f\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a4b:"\u006fo\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0254:"\u006f\u006f\u0070e\u006e",0x24aa:"\u006f\u0070\u0061\u0072\u0065\u006e",0x29b9:"\u006f\u0070\u0065r\u0070",0x2a2d:"\u006f\u0070\u006c\u0075\u0073\u006c\u0068\u0072\u0069\u006d",0x2a2e:"\u006f\u0070\u006c\u0075\u0073\u0072\u0068\u0072\u0069\u006d",0x2325:"\u006f\u0070\u0074\u0069\u006f\u006e",0x00aa:"o\u0072\u0064\u0066\u0065\u006d\u0069\u006e\u0069\u006e\u0065",0x00ba:"\u006f\u0072\u0064m\u0061\u0073\u0063\u0075\u006c\u0069\u006e\u0065",0x22b6:"\u006f\u0072\u0069\u0067\u006f\u0066",0x221f:"\u006f\u0072\u0074\u0068\u006f\u0067\u006f\u006e\u0061\u006c",0x22bb:"\u006f\u0072\u0075n\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065",0x0912:"\u006f\u0073\u0068\u006f\u0072\u0074\u0064\u0065\u0076\u0061",0x094a:"\u006f\u0073\u0068\u006frt\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x00f8:"\u006f\u0073\u006c\u0061\u0073\u0068",0x01ff:"o\u0073\u006c\u0061\u0073\u0068\u0061\u0063\u0075\u0074\u0065",0x3049:"\u006f\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a9:"\u006f\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff6b:"\u006f\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xf6f0:"\u006fs\u0075\u0070\u0065\u0072\u0069\u006fr",0x047f:"\u006f\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x00f5:"\u006f\u0074\u0069\u006c\u0064\u0065",0x1e4d:"o\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e4f:"\u006f\u0074\u0069\u006c\u0064\u0065\u0064\u0069\u0065r\u0065\u0073\u0069\u0073",0x2a36:"\u006ft\u0069\u006d\u0065\u0073\u0068\u0061t",0x2a34:"o\u0074\u0069\u006d\u0065\u0073\u006c\u0068\u0072\u0069\u006d",0x2a35:"o\u0074\u0069\u006d\u0065\u0073\u0072\u0068\u0072\u0069\u006d",0x3121:"\u006f\u0075\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x2125:"\u006f\u0075\u006ec\u0065",0x23de:"\u006fv\u0065\u0072\u0062\u0072\u0061\u0063e",0x23b4:"o\u0076\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074",0x20d6:"\u006f\u0076\u0065\u0072\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x20e1:"\u006fv\u0065r\u006c\u0065\u0066\u0074\u0072i\u0067\u0068t\u0061\u0072\u0072\u006f\u0077",0x203e:"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065",0xfe4a:"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0063e\u006e\u0074e\u0072\u006c\u0069\u006e\u0065",0x0305:"o\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0063\u006d\u0062",0xfe49:"\u006f\u0076\u0065\u0072\u006c\u0069\u006e\u0065\u0064a\u0073\u0068\u0065\u0064",0xfe4c:"\u006fv\u0065r\u006c\u0069\u006e\u0065\u0064\u0062\u006c\u0077\u0061\u0076\u0079",0xfe4b:"\u006f\u0076\u0065r\u006c\u0069\u006e\u0065\u0077\u0061\u0076\u0079",0x23dc:"\u006fv\u0065\u0072\u0070\u0061\u0072\u0065n",0x09cb:"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x094b:"\u006f\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0acb:"\u006fv\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0070:"\u0070",0x3380:"\u0070\u0061\u0061m\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x332b:"\u0070\u0061\u0061\u0073\u0065\u006e\u0074\u006f\u0073q\u0075\u0061\u0072\u0065",0x09aa:"\u0070a\u0062\u0065\u006e\u0067\u0061\u006ci",0x1e55:"\u0070\u0061\u0063\u0075\u0074\u0065",0x092a:"\u0070\u0061\u0064\u0065\u0076\u0061",0x21df:"\u0070\u0061\u0067\u0065\u0064\u006f\u0077\u006e",0x21de:"\u0070\u0061\u0067\u0065\u0075\u0070",0x0aaa:"\u0070\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2a:"\u0070\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3071:"\u0070\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x0e2f:"\u0070\u0061\u0069\u0079\u0061\u006e\u006e\u006f\u0069\u0074\u0068\u0061\u0069",0x30d1:"\u0070\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0484:"\u0070a\u006c\u0061\u0074\u0061l\u0069\u007a\u0061\u0074\u0069o\u006ec\u0079r\u0069\u006c\u006c\u0069\u0063\u0063\u006db",0x04c0:"\u0070\u0061l\u006f\u0063\u0068k\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x317f:"\u0070\u0061\u006e\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x00b6:"\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h",0x2029:"\u0070a\u0072a\u0067\u0072\u0061\u0070\u0068s\u0065\u0070a\u0072\u0061\u0074\u006f\u0072",0x2225:"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c",0x25b1:"\u0070\u0061\u0072\u0061\u006c\u006c\u0065\u006c\u006f\u0067\u0072\u0061\u006d",0x25b0:"\u0070a\u0072a\u006c\u006c\u0065\u006c\u006fg\u0072\u0061m\u0062\u006c\u0061\u0063\u006b",0x0028:"\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t",0xfd3e:"p\u0061\u0072\u0065\u006ele\u0066t\u0061\u006c\u0074\u006f\u006ee\u0061\u0072\u0061\u0062\u0069\u0063",0xf8ed:"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0062\u0074",0xf8ec:"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0065\u0078",0x208d:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff08:"\u0070a\u0072e\u006e\u006c\u0065\u0066\u0074m\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xfe59:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074s\u006d\u0061\u006c\u006c",0x207d:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0xf8eb:"p\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0074\u0070",0xfe35:"\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u0066\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x0029:"\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074",0xfd3f:"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u0061\u006c\u0074\u006f\u006e\u0065\u0061\u0072\u0061\u0062i\u0063",0xf8f8:"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0062\u0074",0xf8f7:"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0065\u0078",0x208e:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0069\u006ef\u0065\u0072\u0069\u006f\u0072",0xff09:"\u0070\u0061\u0072\u0065nr\u0069\u0067\u0068\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe5a:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c",0x207e:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0073\u0075p\u0065\u0072\u0069\u006f\u0072",0xf8f6:"\u0070\u0061\u0072e\u006e\u0072\u0069\u0067\u0068\u0074\u0074\u0070",0xfe36:"\u0070a\u0072e\u006e\u0072\u0069\u0067\u0068t\u0076\u0065r\u0074\u0069\u0063\u0061\u006c",0x2af3:"\u0070\u0061\u0072\u0073\u0069\u006d",0x2202:"p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066",0x2aa3:"\u0070\u0061\u0072\u0074ia\u006c\u006d\u0065\u0065\u0074\u0063\u006f\u006e\u0074\u0072\u0061\u0063\u0074\u0069o\u006e",0x0599:"\u0070\u0061\u0073h\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x33a9:"\u0070\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x05b7:"\u0070a\u0074\u0061\u0068\u0031\u0031",0x05a1:"p\u0061\u007a\u0065\u0072\u0068\u0065\u0062\u0072\u0065\u0077",0x3106:"\u0070b\u006f\u0070\u006f\u006d\u006f\u0066o",0x24df:"\u0070c\u0069\u0072\u0063\u006c\u0065",0x1e57:"\u0070\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x043f:"\u0070\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xfb44:"\u0070\u0065\u0064\u0061\u0067\u0065\u0073\u0068",0x333b:"p\u0065\u0065\u007a\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0xfb43:"\u0070\u0065\u0066\u0069na\u006c\u0064\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x067e:"\u0070e\u0068\u0061\u0072\u0061\u0062\u0069c",0x057a:"p\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfb57:"\u0070\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb58:"\u0070\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x307a:"\u0070\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfb56:"p\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb59:"\u0070e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xe813:"\u0070\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0x30da:"\u0070\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x04a7:"p\u0065m\u0069\u0064\u0064\u006c\u0065\u0068\u006f\u006fk\u0063\u0079\u0072\u0069ll\u0069\u0063",0x2b20:"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e",0x2b1f:"\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b",0xfb4e:"\u0070\u0065\u0072a\u0066\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x0025:"\u0070e\u0072\u0063\u0065\u006e\u0074",0x066a:"\u0070\u0065\u0072\u0063\u0065\u006e\u0074\u0061\u0072\u0061\u0062\u0069\u0063",0xff05:"\u0070\u0065r\u0063\u0065\u006et\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe6a:"\u0070\u0065\u0072c\u0065\u006e\u0074\u0073\u006d\u0061\u006c\u006c",0x002e:"\u0070\u0065\u0072\u0069\u006f\u0064",0x0589:"\u0070\u0065\u0072\u0069\u006f\u0064\u0061\u0072\u006de\u006e\u0069\u0061\u006e",0x00b7:"\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064",0x0097:"\u0070\u0065r\u0069\u006f\u0064c\u0065\u006e\u0074\u0065\u0072\u0065\u0064\u002e\u0030",0xff61:"\u0070e\u0072i\u006f\u0064\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xf6e7:"\u0070\u0065\u0072\u0069\u006f\u0064\u0069\u006e\u0066e\u0072\u0069\u006f\u0072",0xff0e:"\u0070e\u0072i\u006f\u0064\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe52:"p\u0065\u0072\u0069\u006f\u0064\u0073\u006d\u0061\u006c\u006c",0xf6e8:"\u0070\u0065\u0072\u0069\u006f\u0064\u0073\u0075\u0070e\u0072\u0069\u006f\u0072",0x0342:"\u0070\u0065\u0072\u0069sp\u006f\u006d\u0065\u006e\u0069\u0067\u0072\u0065\u0065\u006b\u0063\u006d\u0062",0x27c2:"\u0070\u0065\u0072\u0070",0x2a5e:"\u0070\u0065\u0072\u0070\u0063\u006f\u0072\u0072\u0065s\u0070\u006f\u006e\u0064",0x22a5:"\u0070\u0065\u0072\u0070\u0065\u006e\u0064\u0069\u0063\u0075\u006c\u0061\u0072",0x2ae1:"\u0070\u0065\u0072p\u0073",0x2031:"\u0070\u0065\u0072\u0074\u0065\u006e\u0074\u0068\u006fu\u0073\u0061\u006e\u0064",0x2030:"p\u0065\u0072\u0074\u0068\u006f\u0075\u0073\u0061\u006e\u0064",0x20a7:"\u0070\u0065\u0073\u0065\u0074\u0061",0xf81b:"\u0070\u0065\u0073o\u0031",0x338a:"\u0070\u0066\u0073\u0071\u0075\u0061\u0072\u0065",0x09ab:"\u0070\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x092b:"\u0070h\u0061\u0064\u0065\u0076\u0061",0x0aab:"p\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2b:"p\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x03c6:"\u0070\u0068\u0069",0x03d5:"\u0070\u0068\u0069\u0031",0x327a:"p\u0068i\u0065\u0075\u0070\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x321a:"\u0070\u0068\u0069\u0065up\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x326c:"\u0070\u0068\u0069\u0065up\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314d:"\u0070\u0068\u0069\u0065\u0075\u0070\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320c:"\u0070h\u0069e\u0075\u0070\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x0278:"\u0070\u0068\u0069\u006c\u0061\u0074\u0069\u006e",0x0e3a:"p\u0068\u0069\u006e\u0074\u0068\u0075\u0074\u0068\u0061\u0069",0x01a5:"\u0070\u0068\u006fo\u006b",0x0e1e:"p\u0068\u006f\u0070\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e1c:"\u0070\u0068\u006fp\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069",0x0e20:"\u0070\u0068\u006f\u0073\u0061\u006d\u0070\u0068\u0061o\u0074\u0068\u0061\u0069",0x03c0:"\u0070\u0069",0x3273:"\u0070i\u0065u\u0070\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3213:"\u0070\u0069\u0065\u0075\u0070\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3176:"\u0070\u0069e\u0075\u0070\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3265:"\u0070\u0069\u0065\u0075\u0070\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3172:"\u0070\u0069\u0065\u0075\u0070\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e",0x3142:"p\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x3205:"\u0070\u0069e\u0075\u0070\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3174:"p\u0069\u0065\u0075\u0070si\u006fs\u006b\u0069\u0079\u0065\u006fk\u006b\u006f\u0072\u0065\u0061\u006e",0x3144:"\u0070i\u0065u\u0070\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x3175:"p\u0069\u0065\u0075\u0070si\u006fs\u0074\u0069\u006b\u0065\u0075t\u006b\u006f\u0072\u0065\u0061\u006e",0x3177:"\u0070i\u0065u\u0070\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e",0x3173:"\u0070\u0069\u0065\u0075\u0070\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x3074:"\u0070\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d4:"\u0070\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0583:"\u0070\u0069\u0077r\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x210f:"\u0070\u006c\u0061\u006e\u0063\u006b\u006f\u0076\u0065\u0072\u0032\u0070\u0069",0x002b:"\u0070\u006c\u0075\u0073",0x031f:"\u0070\u006c\u0075s\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x2a25:"\u0070l\u0075\u0073\u0064\u006f\u0074",0x2a72:"\u0070l\u0075\u0073\u0065\u0071\u0071",0x2a23:"\u0070l\u0075\u0073\u0068\u0061\u0074",0x208a:"\u0070\u006c\u0075s\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0x00b1:"\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s",0x02d6:"\u0070l\u0075\u0073\u006d\u006f\u0064",0xff0b:"\u0070\u006c\u0075\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2a26:"\u0070l\u0075\u0073\u0073\u0069\u006d",0xfe62:"\u0070l\u0075\u0073\u0073\u006d\u0061\u006cl",0x2a27:"\u0070\u006c\u0075\u0073\u0073\u0075\u0062\u0074\u0077\u006f",0x207a:"\u0070\u006c\u0075s\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2a28:"\u0070\u006c\u0075\u0073\u0074\u0072\u0069\u0066",0xff50:"\u0070\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x33d8:"\u0070\u006d\u0073\u0071\u0075\u0061\u0072\u0065",0x307d:"\u0070\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x261f:"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u0064\u006f\u0077\u006e\u0077\u0068\u0069t\u0065",0x261c:"\u0070\u006f\u0069\u006eti\u006e\u0067\u0069\u006e\u0064\u0065\u0078\u006c\u0065\u0066\u0074\u0077\u0068\u0069t\u0065",0x261d:"p\u006fi\u006e\u0074\u0069\u006e\u0067\u0069\u006e\u0064e\u0078\u0075\u0070\u0077hi\u0074\u0065",0x2a15:"\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0074",0x30dd:"\u0070\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0e1b:"\u0070o\u0070\u006c\u0061\u0074\u0068\u0061i",0x3012:"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072\u006b",0x3020:"\u0070\u006f\u0073\u0074\u0061\u006c\u006d\u0061\u0072k\u0066\u0061\u0063\u0065",0x24ab:"\u0070\u0070\u0061\u0072\u0065\u006e",0x2ab7:"\u0070\u0072\u0065\u0063\u0061\u0070\u0070\u0072\u006f\u0078",0x2ab9:"\u0070\u0072e\u0063\u0065\u0064e\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u0076",0x2ab5:"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u006e\u006f\u0074\u0073\u006cn\u0074\u0065\u0071\u006c",0x22e8:"\u0070r\u0065c\u0065\u0064\u0065\u006f\u0072n\u006f\u0074e\u0071\u0076\u006c\u006e\u0074",0x227a:"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073",0x2aaf:"\u0070\u0072\u0065\u0063\u0065\u0064\u0065\u0073\u0065\u0071\u0075\u0061\u006c",0x227c:"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0063\u0075\u0072\u006c\u0079",0x227e:"\u0070r\u0065c\u0065\u0064\u0065\u0073\u006f\u0072\u0065\u0071\u0075\u0061\u006c",0x2ab3:"\u0070r\u0065\u0063\u0065\u0071\u0071",0x2ab1:"\u0070r\u0065\u0063\u006e\u0065\u0071",0x211e:"\u0070\u0072\u0065s\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e",0x0243:"p\u0072\u0069\u006d\u0065\u0064\u0062\u006c\u006d\u006f\u0064",0x02b9:"\u0070\u0072\u0069\u006d\u0065\u006d\u006f\u0064",0x2035:"\u0070\u0072\u0069\u006d\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x220f:"\u0070r\u006f\u0064\u0075\u0063\u0074",0x2313:"\u0070\u0072\u006f\u0066\u0073\u0075\u0072\u0066",0x2305:"\u0070\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u0076\u0065",0x30fc:"\u0070\u0072\u006f\u006c\u006f\u006e\u0067\u0065\u0064\u006b\u0061\u006e\u0061",0x2318:"\u0070r\u006f\u0070\u0065\u006c\u006c\u006fr",0x2282:"\u0070\u0072\u006fp\u0065\u0072\u0073\u0075\u0062\u0073\u0065\u0074",0x2283:"\u0070\u0072\u006f\u0070\u0065\u0072\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",0x2237:"\u0070\u0072\u006f\u0070\u006f\u0072\u0074\u0069\u006f\u006e",0x221d:"\u0070\u0072\u006fp\u006f\u0072\u0074\u0069\u006f\u006e\u0061\u006c",0x22b0:"\u0070\u0072\u0075\u0072\u0065\u006c",0x03c8:"\u0070\u0073\u0069",0x0471:"p\u0073\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0486:"\u0070s\u0069\u006c\u0069\u0070\u006e\u0065\u0075\u006d\u0061\u0074\u0061c\u0079\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062",0x33b0:"\u0070\u0073\u0073\u0071\u0075\u0061\u0072\u0065",0x3077:"\u0070\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30d7:"\u0070\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x27d3:"\u0070\u0075\u006c\u006c\u0062\u0061\u0063\u006b",0x2008:"\u0070\u0075n\u0063\u0074\u0075a\u0074\u0069\u006f\u006e\u0073\u0070\u0061\u0063\u0065",0x27d4:"\u0070u\u0073\u0068\u006f\u0075\u0074",0x33b4:"\u0070\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x33ba:"\u0070\u0077\u0073\u0071\u0075\u0061\u0072\u0065",0x0071:"\u0071",0x0958:"\u0071\u0061\u0064\u0065\u0076\u0061",0x05a8:"q\u0061\u0064\u006d\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0xfed6:"\u0071\u0061\u0066\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfed7:"\u0071\u0061f\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfed5:"q\u0061\u0066\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfed8:"\u0071a\u0066m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x059f:"\u0071\u0061r\u006e\u0065\u0079p\u0061\u0072\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x3111:"\u0071b\u006f\u0070\u006f\u006d\u006f\u0066o",0x24e0:"\u0071c\u0069\u0072\u0063\u006c\u0065",0x02a0:"\u0071\u0068\u006fo\u006b",0xff51:"\u0071\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfb47:"\u0071o\u0066\u0064\u0061\u0067\u0065\u0073h",0x05e7:"\u0071o\u0066q\u0075\u0062\u0075\u0074\u0073\u0068\u0065\u0062\u0072\u0065\u0077",0x24ac:"\u0071\u0070\u0061\u0072\u0065\u006e",0x2057:"\u0071\u0070\u0072\u0069\u006d\u0065",0x2669:"q\u0075\u0061\u0072\u0074\u0065\u0072\u006e\u006f\u0074\u0065",0x05bb:"\u0071\u0075b\u0075\u0074\u0073w\u0069\u0064\u0065\u0068\u0065\u0062\u0072\u0065\u0077",0x225f:"\u0071u\u0065\u0073\u0074\u0065\u0071",0x003f:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e",0x055e:"\u0071\u0075e\u0073\u0074\u0069o\u006e\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x00bf:"\u0071\u0075\u0065s\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006e",0xf7bf:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006es\u006d\u0061\u006c\u006c",0x037e:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0067\u0072\u0065\u0065\u006b",0xff1f:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xf73f:"\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e\u0073\u006d\u0061\u006c\u006c",0x0022:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c",0x201e:"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u0062\u0061\u0073\u0065",0x201c:"\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u006c\u0065\u0066\u0074",0xff02:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x301e:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0070\u0072\u0069\u006d\u0065",0x301d:"q\u0075\u006f\u0074\u0065db\u006cp\u0072\u0069\u006d\u0065\u0072e\u0076\u0065\u0072\u0073\u0065\u0064",0x201f:"q\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0065\u0076",0x201d:"\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074",0x2018:"\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t",0x0244:"\u0071\u0075\u006ft\u0065\u006c\u0065\u0066\u0074\u006d\u006f\u0064",0x201b:"\u0071\u0075\u006f\u0074\u0065\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064",0x2019:"\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074",0x0149:"q\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u006e",0x201a:"\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u0062\u0061\u0073\u0065",0x0027:"q\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065",0xff07:"q\u0075o\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065m\u006f\u006e\u006f\u0073pa\u0063\u0065",0x0072:"\u0072",0x27eb:"\u0072\u0041\u006e\u0067\u006c\u0065",0x2984:"\u0072\u0042\u0072\u0061\u0063\u0065",0x2986:"\u0072\u0050\u0061\u0072\u0065\u006e",0x057c:"\u0072\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x09b0:"\u0072a\u0062\u0065\u006e\u0067\u0061\u006ci",0x0155:"\u0072\u0061\u0063\u0075\u0074\u0065",0x0930:"\u0072\u0061\u0064\u0065\u0076\u0061",0x221a:"\u0072a\u0064\u0069\u0063\u0061\u006c",0xf8e5:"\u0072a\u0064\u0069\u0063\u0061\u006c\u0065x",0x33ae:"\u0072\u0061\u0064\u006f\u0076\u0065\u0072\u0073\u0073q\u0075\u0061\u0072\u0065",0x33af:"r\u0061\u0064\u006f\u0076er\u0073s\u0071\u0075\u0061\u0072\u0065d\u0073\u0071\u0075\u0061\u0072\u0065",0x33ad:"\u0072a\u0064\u0073\u0071\u0075\u0061\u0072e",0x0ab0:"\u0072\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a30:"\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3089:"\u0072\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x024d:"\u0072\u0061\u0069\u0073\u0065\u0064",0x30e9:"\u0072\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff97:"\u0072\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x09f1:"\u0072\u0061\u006c\u006fwe\u0072\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061l\u0069",0x09f0:"\u0072\u0061\u006did\u0064\u006c\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0264:"\u0072\u0061\u006d\u0073\u0068\u006f\u0072\u006e",0x2992:"\u0072a\u006e\u0067\u006c\u0065\u0064\u006ft",0x237c:"r\u0061\u006e\u0067\u006ced\u006fw\u006e\u007a\u0069\u0067\u007aa\u0067\u0061\u0072\u0072\u006f\u0077",0x2236:"\u0072\u0061\u0074i\u006f",0xe816:"\u0072\u0061\u0079\u0061\u006c\u0065\u0066\u006c\u0061\u006d",0x27c6:"\u0072\u0062\u0061\u0067",0x2998:"\u0072\u0062\u006c\u006b\u0062\u0072\u0062\u0072\u0061\u006b",0x3116:"\u0072b\u006f\u0070\u006f\u006d\u006f\u0066o",0x23ad:"\u0072\u0062\u0072\u0061\u0063\u0065\u006c\u0065\u006e\u0064",0x23ac:"\u0072b\u0072\u0061\u0063\u0065\u006d\u0069d",0x23ab:"\u0072\u0062\u0072\u0061\u0063\u0065\u0075\u0065\u006e\u0064",0x23a5:"\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x23a6:"\u0072\u0062\u0072\u0061\u0063\u006b\u006c\u0065\u006e\u0064",0x298e:"\u0072\u0062\u0072a\u0063\u006b\u006c\u0072\u0074\u0069\u0063\u006b",0x298c:"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0062\u0061\u0072",0x23a4:"\u0072\u0062\u0072\u0061\u0063\u006b\u0075\u0065\u006e\u0064",0x2990:"\u0072\u0062\u0072a\u0063\u006b\u0075\u0072\u0074\u0069\u0063\u006b",0x2773:"\u0072b\u0072\u0062\u0072\u0061\u006b",0x0159:"\u0072\u0063\u0061\u0072\u006f\u006e",0x0157:"\u0072\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf81f:"\u0072c\u0065\u0064\u0069\u006c\u006c\u00611",0x24e1:"\u0072c\u0069\u0072\u0063\u006c\u0065",0xf832:"r\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x29fd:"r\u0063\u0075\u0072\u0076\u0079\u0061\u006e\u0067\u006c\u0065",0x0211:"\u0072d\u0062\u006c\u0067\u0072\u0061\u0076e",0x292b:"\u0072\u0064\u0069a\u0067\u006f\u0076\u0066\u0064\u0069\u0061\u0067",0x2930:"\u0072\u0064\u0069\u0061\u0067\u006f\u0076\u0073\u0065a\u0072\u0072\u006f\u0077",0x1e59:"\u0072\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e5b:"\u0072d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e5d:"\u0072d\u006ft\u0062\u0065\u006c\u006f\u0077\u006d\u0061\u0063\u0072\u006f\u006e",0x2117:"r\u0065\u0063\u006f\u0072\u0064\u0072\u0069\u0067\u0068\u0074",0x203b:"\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u006d\u0061\u0072\u006b",0x2286:"\u0072\u0065\u0066l\u0065\u0078\u0073\u0075\u0062\u0073\u0065\u0074",0x2287:"\u0072\u0065\u0066\u006c\u0065\u0078\u0073\u0075\u0070e\u0072\u0073\u0065\u0074",0x00ae:"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064",0xf8e8:"\u0072\u0065\u0067i\u0073\u0074\u0065\u0072\u0073\u0061\u006e\u0073",0xf6da:"\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0073\u0065\u0072\u0069\u0066",0x0631:"\u0072e\u0068\u0061\u0072\u0061\u0062\u0069c",0x0580:"r\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xfeae:"\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x308c:"\u0072\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfead:"r\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x30ec:"\u0072\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff9a:"\u0072\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xfb48:"\u0072\u0065s\u0068\u0064\u0061g\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x05e8:"\u0072e\u0073\u0068\u0068\u0069\u0072\u0069q",0x211f:"\u0072\u0065\u0073\u0070\u006f\u006e\u0073\u0065",0x29a3:"\u0072\u0065\u0076\u0061\u006e\u0067\u006c\u0065",0x29a5:"\u0072\u0065\u0076a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072",0x22cd:"\u0072\u0065\u0076\u0061\u0073\u0079\u006d\u0070\u0074e\u0071\u0075\u0061\u006c",0x29b0:"r\u0065\u0076\u0065\u006d\u0070\u0074\u0079\u0073\u0065\u0074",0x223d:"\u0072\u0065\u0076\u0065\u0072\u0073\u0065\u0064\u0074\u0069\u006c\u0064\u0065",0x0597:"\u0072e\u0076i\u0061\u006d\u0075\u0067\u0072a\u0073\u0068h\u0065\u0062\u0072\u0065\u0077",0x2310:"\u0072\u0065\u0076\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074",0x2aee:"\u0072e\u0076\u006e\u006d\u0069\u0064",0x29d2:"\u0072\u0066\u0062\u006f\u0077\u0074\u0069\u0065",0x027e:"\u0072f\u0069\u0073\u0068\u0068\u006f\u006fk",0x027f:"\u0072\u0066\u0069\u0073\u0068\u0068\u006f\u006f\u006b\u0072\u0065\u0076e\u0072\u0073\u0065\u0064",0x29d5:"\u0072f\u0074\u0069\u006d\u0065\u0073",0x09dd:"\u0072\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x095d:"\u0072h\u0061\u0064\u0065\u0076\u0061",0x03c1:"\u0072\u0068\u006f",0x027d:"\u0072\u0068\u006fo\u006b",0x027b:"r\u0068\u006f\u006f\u006b\u0074\u0075\u0072\u006e\u0065\u0064",0x02b5:"\u0072\u0068\u006f\u006fkt\u0075\u0072\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x03f1:"\u0072\u0068\u006f\u0073\u0079\u006d\u0062\u006f\u006cg\u0072\u0065\u0065\u006b",0x02de:"\u0072\u0068\u006f\u0074\u0069\u0063\u0068\u006f\u006f\u006b\u006d\u006f\u0064",0x3271:"\u0072i\u0065u\u006c\u0061\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3211:"\u0072\u0069\u0065\u0075\u006c\u0061\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x3263:"\u0072\u0069\u0065\u0075\u006c\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3140:"\u0072\u0069e\u0075\u006c\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x313a:"\u0072\u0069\u0065\u0075\u006c\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e",0x3169:"r\u0069\u0065\u0075\u006cki\u0079e\u006f\u006b\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e",0x3139:"r\u0069\u0065\u0075\u006c\u006b\u006f\u0072\u0065\u0061\u006e",0x313b:"\u0072\u0069e\u0075\u006c\u006di\u0065\u0075\u006d\u006b\u006f\u0072\u0065\u0061\u006e",0x316c:"\u0072i\u0065u\u006c\u0070\u0061\u006e\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x3203:"\u0072\u0069e\u0075\u006c\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x313f:"\u0072i\u0065u\u006c\u0070\u0068\u0069\u0065u\u0070\u0068k\u006f\u0072\u0065\u0061\u006e",0x313c:"\u0072\u0069e\u0075\u006c\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x316b:"r\u0069e\u0075\u006c\u0070\u0069\u0065\u0075\u0070\u0073i\u006f\u0073\u006b\u006fre\u0061\u006e",0x313d:"\u0072i\u0065u\u006c\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x313e:"\u0072i\u0065u\u006c\u0074\u0068\u0069\u0065u\u0074\u0068k\u006f\u0072\u0065\u0061\u006e",0x316a:"\u0072\u0069\u0065\u0075\u006c\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x316d:"\u0072\u0069\u0065\u0075ly\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006b\u006f\u0072\u0065a\u006e",0x299d:"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006ce\u006d\u0064\u006f\u0074",0x231d:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0065",0x231c:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u006e\u0077",0x231f:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0065",0x299c:"\u0072\u0069\u0067\u0068\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0071\u0072",0x231e:"\u0072\u0069\u0067h\u0074\u0061\u006e\u0067\u006c\u0065\u0073\u0077",0x2975:"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0061\u0070\u0070\u0072\u006f\u0078",0x2b48:"r\u0069g\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0062a\u0063\u006b\u0061\u0070pr\u006f\u0078",0x2b4c:"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0062\u0073i\u006d\u0069\u006c\u0061\u0072",0x291e:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0064\u0069a\u006d\u006f\u006e\u0064",0x2b43:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0067\u0074\u0072",0x27f4:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u006f\u006eo\u0070\u006c\u0075\u0073",0x2945:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006fw\u0070\u006c\u0075\u0073",0x2942:"\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0068\u006fr\u0074\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2974:"\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073\u0069m\u0069\u006c\u0061\u0072",0x2b44:"\u0072\u0069g\u0068\u0074\u0061r\u0072\u006f\u0077\u0073\u0075\u0070\u0073\u0065\u0074",0x21fe:"\u0072i\u0067h\u0074\u0061\u0072\u0072\u006fw\u0074\u0072i\u0061\u006e\u0067\u006c\u0065",0x2947:"r\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0078",0x290d:"\u0072\u0069\u0067h\u0074\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x2933:"\u0072\u0069g\u0068\u0074\u0063u\u0072\u0076\u0065\u0064\u0061\u0072\u0072\u006f\u0077",0x291c:"\u0072\u0069\u0067h\u0074\u0064\u0062\u006c\u0074\u0061\u0069\u006c",0x2911:"\u0072\u0069\u0067\u0068\u0074\u0064\u006f\u0074\u0061\u0072\u0072\u006f\u0077",0x2937:"r\u0069g\u0068\u0074\u0064\u006f\u0077\u006e\u0063\u0075r\u0076\u0065\u0064\u0061rr\u006f\u0077",0x297d:"\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x20d1:"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006ea\u0063\u0063\u0065\u006e\u0074",0x2957:"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0064\u006f\u0077\u006e\u0062\u0061\u0072",0x2964:"\u0072\u0069\u0067\u0068th\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070\u0064\u006f\u0077\u006e",0x2953:"\u0072\u0069\u0067\u0068\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006eu\u0070\u0062\u0061\u0072",0x296c:"\u0072i\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006eu\u0070\u0064\u0061\u0073\u0068",0x2970:"\u0072\u0069\u0067\u0068\u0074\u0069\u006d\u0070\u006c\u0079",0x2969:"r\u0069\u0067\u0068\u0074le\u0066t\u0068\u0061\u0072\u0070\u006fo\u006e\u0073\u0064\u006f\u0077\u006e",0x2968:"\u0072\u0069\u0067\u0068tl\u0065\u0066\u0074\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u0075\u0070",0x263d:"\u0072i\u0067\u0068\u0074\u006d\u006f\u006fn",0x27d6:"\u0072\u0069\u0067\u0068\u0074\u006f\u0075\u0074\u0065r\u006a\u006f\u0069\u006e",0x2b54:"\u0072\u0069\u0067\u0068\u0074\u0070\u0065\u006e\u0074\u0061\u0067\u006f\u006e",0x2b53:"\u0072i\u0067h\u0074\u0070\u0065\u006e\u0074a\u0067\u006fn\u0062\u006c\u0061\u0063\u006b",0x21c9:"\u0072\u0069g\u0068\u0074\u0072i\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077\u0073",0x0319:"\u0072\u0069\u0067\u0068\u0074\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x291a:"\u0072i\u0067\u0068\u0074\u0074\u0061\u0069l",0x21f6:"\u0072\u0069g\u0068\u0074\u0074h\u0072\u0065\u0065\u0061\u0072\u0072\u006f\u0077\u0073",0x22bf:"\u0072\u0069\u0067\u0068\u0074\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x219d:"\u0072\u0069\u0067\u0068\u0074\u0077\u0061\u0076\u0065a\u0072\u0072\u006f\u0077",0x308a:"\u0072\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ea:"\u0072\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff98:"\u0072\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x02da:"\u0072\u0069\u006e\u0067",0xf007:"\u0072\u0069\u006eg\u0031",0x0325:"\u0072\u0069\u006eg\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x030a:"\u0072i\u006e\u0067\u0063\u006d\u0062",0xd80d:"\u0072\u0069\u006e\u0067\u0066\u0069\u0074\u0074\u0065\u0064",0x02bf:"\u0072\u0069\u006eg\u0068\u0061\u006c\u0066\u006c\u0065\u0066\u0074",0x0559:"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0061\u0072\u006d\u0065ni\u0061\u006e",0x031c:"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0062\u0065\u006c\u006fwc\u006d\u0062",0x02d3:"r\u0069n\u0067\u0068\u0061\u006c\u0066\u006c\u0065\u0066t\u0063\u0065\u006e\u0074er\u0065\u0064",0x02be:"\u0072\u0069\u006e\u0067\u0068\u0061\u006c\u0066\u0072\u0069\u0067\u0068\u0074",0x0339:"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0062e\u006c\u006f\u0077\u0063\u006d\u0062",0x02d2:"r\u0069\u006e\u0067\u0068al\u0066r\u0069\u0067\u0068\u0074\u0063e\u006e\u0074\u0065\u0072\u0065\u0064",0x2256:"r\u0069\u006e\u0067\u0069\u006e\u0065\u0071\u0075\u0061\u006c",0x028f:"\u0072\u0069\u006e\u0067le\u0066\u0074\u0068\u0061\u006c\u0066\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x0248:"\u0072\u0069\u006e\u0067\u006c\u0065\u0066\u0074\u0068\u0061\u006c\u0066s\u0075\u0070\u0065\u0072",0x2a22:"\u0072\u0069\u006e\u0067\u0070\u006c\u0075\u0073",0x02ac:"r\u0069n\u0067\u0072\u0069\u0067\u0068\u0074\u0068\u0061l\u0066\u0073\u0075\u0062no\u0073\u0070",0x0247:"\u0072i\u006eg\u0072\u0069\u0067\u0068\u0074h\u0061\u006cf\u0073\u0075\u0070\u0065\u0072",0x0213:"\u0072\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x3351:"\u0072\u0069\u0074\u0074\u006f\u0072\u0075\u0073\u0071\u0075\u0061\u0072\u0065",0x202b:"\u0072\u006c\u0065",0x1e5f:"\u0072\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x027c:"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067",0x027a:"\u0072\u006c\u006f\u006e\u0067\u006c\u0065\u0067\u0074u\u0072\u006e\u0065\u0064",0xff52:"\u0072\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x23b1:"\u0072\u006d\u006f\u0075\u0073\u0074\u0061\u0063\u0068\u0065",0x308d:"\u0072\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ed:"\u0072\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff9b:"\u0072\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0e23:"\u0072o\u0072\u0075\u0061\u0074\u0068\u0061i",0x24ad:"\u0072\u0070\u0061\u0072\u0065\u006e",0x239f:"\u0072\u0070\u0061\u0072\u0065\u006e\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x2994:"\u0072p\u0061\u0072\u0065\u006e\u0067\u0074r",0x23a0:"\u0072\u0070\u0061\u0072\u0065\u006e\u006c\u0065\u006e\u0064",0x239e:"\u0072\u0070\u0061\u0072\u0065\u006e\u0075\u0065\u006e\u0064",0x2a12:"\u0072\u0070\u0070\u006f\u006c\u0069\u006e\u0074",0x09dc:"\u0072\u0072\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0931:"\u0072r\u0061\u0064\u0065\u0076\u0061",0x0a5c:"r\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x298a:"\u0072r\u0061\u006e\u0067\u006c\u0065",0x0691:"\u0072\u0072\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",0xfb8d:"\u0072r\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x2988:"\u0072\u0072\u0070\u0061\u0072\u0065\u006e\u0074\u0068\u0065\u0073\u0069\u0073",0x09e0:"\u0072\u0072v\u006f\u0063\u0061l\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0960:"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x0ae0:"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0067\u0075\u006aa\u0072\u0061\u0074\u0069",0x09c4:"\u0072r\u0076\u006f\u0063\u0061l\u0069\u0063\u0076\u006f\u0077e\u006cs\u0069g\u006e\u0062\u0065\u006e\u0067\u0061\u006ci",0x0944:"\u0072\u0072\u0076\u006fca\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065v\u0061",0x0ac4:"\u0072\u0072\u0076\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006fw\u0065\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061r\u0061\u0074\u0069",0x29f7:"\u0072s\u006f\u006c\u0062\u0061\u0072",0x2ace:"\u0072s\u0071\u0068\u006f\u006f\u006b",0x2a65:"\u0072\u0073\u0075\u0062",0x023c:"\u0072\u0073\u0075\u0070\u0065\u0072",0xf6f1:"\u0072s\u0075\u0070\u0065\u0072\u0069\u006fr",0x2590:"\u0072t\u0062\u006c\u006f\u0063\u006b",0x2595:"\u0072\u0074\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b",0x29ce:"\u0072\u0074\u0072\u0069\u006c\u0074\u0072\u0069",0x0279:"\u0072t\u0075\u0072\u006e\u0065\u0064",0x02b4:"\u0072t\u0075r\u006e\u0065\u0064\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x023e:"\u0072\u0074u\u0072\u006e\u0072t\u0068\u006f\u006f\u006b\u0073\u0075\u0070\u0065\u0072",0x023d:"\u0072\u0074\u0075\u0072\u006e\u0073\u0075\u0070\u0065\u0072",0x308b:"\u0072\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30eb:"\u0072\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff99:"\u0072\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x29f4:"r\u0075\u006c\u0065\u0064\u0065\u006c\u0061\u0079\u0065\u0064",0x20a8:"\u0072\u0075\u0070e\u0065",0x09f2:"\u0072\u0075p\u0065\u0065\u006da\u0072\u006b\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x09f3:"\u0072\u0075p\u0065\u0065\u0073i\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0xf6dd:"\u0072\u0075\u0070\u0069\u0061\u0068",0x0e24:"\u0072\u0075\u0074\u0068\u0061\u0069",0x23b9:"\u0072v\u0062\u006f\u0078\u006c\u0069\u006ee",0x098b:"\u0072v\u006fc\u0061\u006c\u0069\u0063\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x090b:"\u0072\u0076\u006fc\u0061\u006c\u0069\u0063\u0064\u0065\u0076\u0061",0x0a8b:"\u0072\u0076o\u0063\u0061\u006ci\u0063\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x09c3:"\u0072v\u006f\u0063\u0061\u006c\u0069\u0063\u0076\u006f\u0077\u0065\u006cs\u0069\u0067\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0943:"r\u0076\u006f\u0063\u0061li\u0063v\u006f\u0077\u0065\u006c\u0073i\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac3:"\u0072v\u006f\u0063\u0061\u006ci\u0063\u0076\u006f\u0077\u0065l\u0073i\u0067n\u0067\u0075\u006a\u0061\u0072\u0061\u0074i",0x29d9:"\u0072\u0076\u007a\u0069\u0067\u007a\u0061\u0067",0x0073:"\u0073",0x09b8:"\u0073a\u0062\u0065\u006e\u0067\u0061\u006ci",0x015b:"\u0073\u0061\u0063\u0075\u0074\u0065",0x1e65:"\u0073a\u0063u\u0074\u0065\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x0938:"\u0073\u0061\u0064\u0065\u0076\u0061",0xfeba:"\u0073\u0061\u0064\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfebb:"\u0073\u0061d\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb9:"s\u0061\u0064\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfebc:"\u0073a\u0064m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0ab8:"\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a38:"\u0073\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3055:"\u0073\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b5:"\u0073\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7b:"\u0073\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0xfdfa:"\u0073\u0061\u006cl\u0061\u006c\u006c\u0061h\u006f\u0075\u0061\u006c\u0061\u0079\u0068e\u0077\u0061\u0073\u0061\u006c\u006c\u0061\u006d\u0061\u0072\u0061\u0062\u0069\u0063",0x05e1:"\u0073\u0061\u006d\u0065\u006b\u0068",0xfb41:"\u0073a\u006de\u006b\u0068\u0064\u0061\u0067e\u0073\u0068h\u0065\u0062\u0072\u0065\u0077",0x2143:"\u0073\u0061\u006e\u0073\u004c\u006d\u0069\u0072\u0072\u006f\u0072\u0065\u0064",0x2142:"s\u0061\u006e\u0073\u004c\u0074\u0075\u0072\u006e\u0065\u0064",0x0e32:"\u0073\u0061\u0072\u0061\u0061\u0061\u0074\u0068\u0061\u0069",0x0e41:"\u0073\u0061\u0072\u0061\u0061\u0065\u0074\u0068\u0061\u0069",0x0e44:"\u0073a\u0072a\u0061\u0069\u006d\u0061\u0069m\u0061\u006ca\u0069\u0074\u0068\u0061\u0069",0x0e43:"\u0073\u0061\u0072\u0061\u0061\u0069\u006d\u0061\u0069\u006d\u0075\u0061n\u0074\u0068\u0061\u0069",0x0e33:"\u0073\u0061\u0072\u0061\u0061\u006d\u0074\u0068\u0061\u0069",0x0e30:"\u0073a\u0072\u0061\u0061\u0074\u0068\u0061i",0x0e40:"\u0073a\u0072\u0061\u0065\u0074\u0068\u0061i",0xf886:"\u0073\u0061\u0072\u0061\u0069\u0069\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0x0e35:"\u0073\u0061\u0072\u0061\u0069\u0069\u0074\u0068\u0061\u0069",0xf885:"\u0073\u0061\u0072\u0061\u0069\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e34:"\u0073a\u0072\u0061\u0069\u0074\u0068\u0061i",0x0e42:"\u0073a\u0072\u0061\u006f\u0074\u0068\u0061i",0xf888:"\u0073a\u0072a\u0075\u0065\u0065\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x0e37:"s\u0061\u0072\u0061\u0075\u0065\u0065\u0074\u0068\u0061\u0069",0xf887:"\u0073\u0061\u0072\u0061\u0075\u0065\u006c\u0065\u0066t\u0074\u0068\u0061\u0069",0x0e36:"\u0073\u0061\u0072\u0061\u0075\u0065\u0074\u0068\u0061\u0069",0x0e38:"\u0073a\u0072\u0061\u0075\u0074\u0068\u0061i",0x0e39:"\u0073\u0061\u0072\u0061\u0075\u0075\u0074\u0068\u0061\u0069",0x22a8:"\u0073a\u0074\u0069\u0073\u0066\u0069\u0065s",0x3119:"\u0073b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0161:"\u0073\u0063\u0061\u0072\u006f\u006e",0x1e67:"\u0073c\u0061r\u006f\u006e\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x015f:"\u0073\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf817:"\u0073c\u0065\u0064\u0069\u006c\u006c\u00611",0x0259:"\u0073\u0063\u0068w\u0061",0x04d9:"\u0073\u0063\u0068\u0077\u0061\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04db:"s\u0063\u0068\u0077\u0061di\u0065r\u0065\u0073\u0069\u0073\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x025a:"\u0073c\u0068\u0077\u0061\u0068\u006f\u006fk",0x24e2:"\u0073c\u0069\u0072\u0063\u006c\u0065",0x015d:"s\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x0219:"\u0073\u0063\u006fm\u006d\u0061\u0061\u0063\u0063\u0065\u006e\u0074",0x2a13:"\u0073\u0063\u0070\u006f\u006c\u0069\u006e\u0074",0x2108:"\u0073c\u0072\u0075\u0070\u006c\u0065",0x22b1:"\u0073\u0063\u0075\u0072\u0065\u006c",0x1e61:"\u0073\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e63:"\u0073d\u006f\u0074\u0062\u0065\u006c\u006fw",0x1e69:"\u0073d\u006ft\u0062\u0065\u006c\u006f\u0077d\u006f\u0074a\u0063\u0063\u0065\u006e\u0074",0x033c:"\u0073e\u0061g\u0075\u006c\u006c\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x02af:"\u0073\u0065\u0061\u0067\u0075\u006c\u006c\u0073\u0075b\u006e\u006f\u0073\u0070",0x2033:"\u0073\u0065\u0063\u006f\u006e\u0064",0x02ca:"\u0073\u0065\u0063\u006f\u006e\u0064\u0074\u006f\u006e\u0065\u0063\u0068i\u006e\u0065\u0073\u0065",0x00a7:"\u0073e\u0063\u0074\u0069\u006f\u006e",0xfeb2:"\u0073e\u0065n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb3:"\u0073\u0065\u0065\u006e\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfeb1:"\u0073\u0065\u0065n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfeb4:"\u0073\u0065e\u006e\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfcb0:"\u0073\u0065\u0065\u006ewi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0x05b6:"s\u0065\u0067\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",0x0592:"\u0073\u0065\u0067\u006f\u006c\u0074\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x057d:"s\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x305b:"\u0073\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30bb:"\u0073\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7e:"\u0073\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x003b:"\u0073e\u006d\u0069\u0063\u006f\u006c\u006fn",0xff1b:"\u0073e\u006di\u0063\u006f\u006c\u006f\u006em\u006f\u006eo\u0073\u0070\u0061\u0063\u0065",0xfe54:"\u0073\u0065\u006d\u0069\u0063\u006f\u006c\u006f\u006es\u006d\u0061\u006c\u006c",0x309c:"\u0073e\u006di\u0076\u006f\u0069\u0063\u0065d\u006d\u0061r\u006b\u006b\u0061\u006e\u0061",0xff9f:"s\u0065\u006d\u0069\u0076\u006f\u0069c\u0065\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006ea\u0068\u0061\u006cf\u0077i\u0064\u0074\u0068",0x3322:"s\u0065\u006e\u0074\u0069\u0073\u0071\u0075\u0061\u0072\u0065",0x3323:"s\u0065\u006e\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x292d:"s\u0065\u006f\u0076\u006e\u0065\u0061\u0072\u0072\u006f\u0077",0x2120:"s\u0065\u0072\u0076\u0069\u0063\u0065\u006d\u0061\u0072\u006b",0x29f5:"\u0073\u0065\u0074\u006d\u0069\u006e\u0075\u0073",0x0037:"\u0073\u0065\u0076e\u006e",0x09ed:"\u0073\u0065\u0076e\u006e\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096d:"\u0073e\u0076\u0065\u006e\u0064\u0065\u0076a",0x215e:"\u0073\u0065\u0076e\u006e\u0065\u0069\u0067\u0068\u0074\u0068\u0073",0x0aed:"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6d:"\u0073\u0065\u0076\u0065\u006e\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3027:"\u0073\u0065\u0076\u0065\u006e\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3226:"s\u0065\u0076\u0065\u006eid\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e",0x2087:"\u0073\u0065\u0076\u0065\u006e\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff17:"\u0073\u0065\u0076\u0065\u006e\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0xf737:"\u0073\u0065\u0076\u0065\u006e\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x247a:"\u0073\u0065\u0076\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x248e:"s\u0065\u0076\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x06f7:"\u0073\u0065\u0076e\u006e\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2176:"\u0073\u0065\u0076\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x2077:"\u0073\u0065\u0076\u0065\u006e\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x2470:"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x2484:"\u0073\u0065\u0076\u0065\u006e\u0074\u0065\u0065\u006ep\u0061\u0072\u0065\u006e",0x2498:"\u0073e\u0076e\u006e\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x0e57:"\u0073e\u0076\u0065\u006e\u0074\u0068\u0061i",0x0577:"s\u0068\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x09b6:"\u0073\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0651:"\u0073\u0068\u0061d\u0064\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfc61:"\u0073\u0068\u0061\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061\u0061r\u0061\u0062\u0069\u0063",0xfc5e:"s\u0068a\u0064\u0064\u0061\u0064\u0061\u006d\u006d\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063",0xfc60:"\u0073\u0068\u0061\u0064\u0064\u0061\u0066\u0061\u0074\u0068\u0061\u0061r\u0061\u0062\u0069\u0063",0xfe7d:"\u0073\u0068a\u0064\u0064\u0061h\u006f\u006e\u0074\u0061\u0074\u0077\u0065\u0065\u006c",0xfe7c:"\u0073\u0068\u0061\u0064\u0064\u0061\u0069\u0073\u006fl\u0061\u0074\u0065\u0064",0xfc62:"\u0073\u0068\u0061\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061\u0061r\u0061\u0062\u0069\u0063",0xfc5f:"s\u0068a\u0064\u0064\u0061\u006b\u0061\u0073\u0072\u0061t\u0061\u006e\u0061\u0072ab\u0069\u0063",0xe825:"\u0073h\u0061\u0064\u0064\u0061\u006c\u006fw",0xe829:"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064a\u006d\u006d\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077",0xfcf3:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0064\u0061\u006d\u006da\u006d\u0065\u0064\u0069\u0061\u006c",0xe82b:"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0064\u0061\u006d\u006d\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077",0xe828:"\u0073h\u0061d\u0064\u0061\u0077\u0069\u0074h\u0066\u0061t\u0068\u0061\u006c\u006f\u0077",0xfcf2:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u006d\u0065\u0064\u0069\u0061\u006c",0xe818:"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u0066a\u0074\u0068\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xe82a:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u0066\u0061\u0074\u0068a\u0074\u0061\u006e\u006c\u006f\u0077",0xe82c:"\u0073\u0068\u0061\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006ba\u0073\u0072\u0061\u0069\u0073\u006f\u006c\u0061\u0074\u0065d\u006c\u006f\u0077",0xfcf4:"s\u0068\u0061\u0064\u0064aw\u0069t\u0068\u006b\u0061\u0073\u0072a\u006d\u0065\u0064\u0069\u0061\u006c",0xe82d:"\u0073\u0068a\u0064\u0064\u0061\u0077\u0069\u0074\u0068\u006b\u0061\u0073\u0072\u0061\u0074\u0061\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065dl\u006f\u0077",0x2592:"\u0073\u0068\u0061d\u0065",0xf822:"\u0073\u0068\u0061\u0064\u0065\u0031",0x2591:"\u0073\u0068\u0061\u0064\u0065\u006c\u0069\u0067\u0068\u0074",0x0936:"\u0073h\u0061\u0064\u0065\u0076\u0061",0x0ab6:"s\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a36:"s\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0593:"\u0073\u0068a\u006c\u0073\u0068e\u006c\u0065\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x3115:"\u0073\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0xfeb6:"\u0073\u0068e\u0065\u006e\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb7:"\u0073h\u0065e\u006e\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfeb5:"\u0073\u0068\u0065\u0065\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfeb8:"\u0073\u0068\u0065\u0065\u006e\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfd30:"s\u0068e\u0065\u006e\u0077\u0069\u0074\u0068\u006d\u0065e\u006d\u0069\u006e\u0069ti\u0061\u006c",0x03e3:"\u0073\u0068\u0065\u0069\u0063\u006f\u0070\u0074\u0069\u0063",0x04bb:"\u0073\u0068\u0068a\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x21b0:"\u0073h\u0069\u0066\u0074\u006c\u0065\u0066t",0x21b1:"\u0073\u0068\u0069\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x03ed:"s\u0068\u0069\u006d\u0061\u0063\u006f\u0070\u0074\u0069\u0063",0x05e9:"\u0073\u0068\u0069\u006e",0xfb49:"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068",0xfb2c:"\u0073\u0068\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0073\u0068i\u006e\u0064\u006f\u0074",0xfb2d:"\u0073\u0068\u0069\u006eda\u0067\u0065\u0073\u0068\u0073\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072e\u0077",0x05c1:"\u0073\u0068\u0069\u006e\u0064\u006f\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0xfb2a:"s\u0068\u0069\u006e\u0073\u0068\u0069\u006e\u0064\u006f\u0074",0x0282:"\u0073\u0068\u006fo\u006b",0x2adf:"\u0073\u0068\u006f\u0072\u0074\u0064\u006f\u0077\u006e\u0074\u0061\u0063\u006b",0x2ade:"\u0073\u0068\u006f\u0072\u0074\u006c\u0065\u0066\u0074\u0074\u0061\u0063\u006b",0x2944:"\u0073h\u006f\u0072\u0074\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072o\u0077\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2ae0:"s\u0068\u006f\u0072\u0074\u0075\u0070\u0074\u0061\u0063\u006b",0x29e2:"\u0073h\u0075\u0066\u0066\u006c\u0065",0x03c3:"\u0073\u0069\u0067m\u0061",0x03c2:"\u0073\u0069\u0067\u006d\u0061\u0031",0x03f2:"\u0073\u0069\u0067\u006dal\u0075\u006e\u0061\u0074\u0065\u0073\u0079\u006d\u0062\u006f\u006c\u0067\u0072\u0065e\u006b",0x3057:"\u0073\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b7:"\u0073\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7c:"\u0073\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x05bd:"\u0073i\u006cu\u0071\u006c\u0065\u0066\u0074\u0068\u0065\u0062\u0072\u0065\u0077",0x2aa0:"\u0073\u0069\u006dg\u0045",0x2a9e:"\u0073\u0069\u006d\u0067\u0074\u0072",0x223c:"\u0073i\u006d\u0069\u006c\u0061\u0072",0x2b49:"\u0073\u0069m\u0069\u006c\u0061r\u006c\u0065\u0066\u0074\u0061\u0072\u0072\u006f\u0077",0x2972:"\u0073\u0069\u006d\u0069\u006c\u0061\u0072\u0072\u0069\u0067\u0068\u0074a\u0072\u0072\u006f\u0077",0x2a9f:"\u0073\u0069\u006dl\u0045",0x2a9d:"\u0073i\u006d\u006c\u0065\u0073\u0073",0x2a6c:"s\u0069\u006d\u006d\u0069\u006e\u0075\u0073\u0073\u0069\u006d",0x2246:"\u0073i\u006d\u006e\u0065\u0071\u0071",0x2a24:"\u0073i\u006d\u0070\u006c\u0075\u0073",0x2a6b:"\u0073\u0069\u006d\u0072\u0064\u006f\u0074\u0073",0x223f:"\u0073\u0069\u006e\u0065\u0077\u0061\u0076\u0065",0x3274:"\u0073\u0069\u006f\u0073\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006bo\u0072\u0065\u0061\u006e",0x3214:"\u0073\u0069o\u0073\u0061\u0070a\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x317e:"\u0073i\u006fs\u0063\u0069\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3266:"\u0073\u0069o\u0073\u0063\u0069r\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x317a:"\u0073\u0069o\u0073\u006b\u0069y\u0065\u006f\u006b\u006b\u006f\u0072\u0065\u0061\u006e",0x3145:"\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x317b:"\u0073i\u006fs\u006e\u0069\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3206:"\u0073i\u006fs\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x317d:"\u0073i\u006fs\u0070\u0069\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x317c:"\u0073\u0069o\u0073\u0074\u0069k\u0065\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e",0x0036:"\u0073\u0069\u0078",0x09ec:"\u0073\u0069\u0078\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x096c:"\u0073i\u0078\u0064\u0065\u0076\u0061",0x0aec:"s\u0069\u0078\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a6c:"s\u0069\u0078\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3026:"s\u0069\u0078\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3225:"\u0073\u0069\u0078\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x2086:"s\u0069\u0078\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff16:"\u0073\u0069\u0078m\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf736:"s\u0069\u0078\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2479:"\u0073\u0069\u0078\u0070\u0061\u0072\u0065\u006e",0x2006:"\u0073\u0069\u0078\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065",0x248d:"\u0073i\u0078\u0070\u0065\u0072\u0069\u006fd",0x06f6:"\u0073\u0069\u0078\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2175:"\u0073\u0069\u0078\u0072\u006f\u006d\u0061\u006e",0x2076:"s\u0069\u0078\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x246f:"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x09f9:"\u0073\u0069\u0078\u0074\u0065\u0065n\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079\u0064\u0065\u006e\u006f\u006di\u006e\u0061\u0074\u006f\u0072\u0062\u0065n\u0067\u0061\u006c\u0069",0x2483:"\u0073\u0069\u0078t\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2497:"\u0073\u0069\u0078\u0074\u0065\u0065\u006e\u0070\u0065\u0072\u0069\u006f\u0064",0x0e56:"\u0073i\u0078\u0074\u0068\u0061\u0069",0x002f:"\u0073\u006c\u0061s\u0068",0x02ab:"\u0073\u006c\u0061\u0073\u0068\u006c\u006f\u006e\u0067\u006e\u006f\u0073\u0070",0xff0f:"\u0073\u006c\u0061\u0073\u0068\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x02aa:"\u0073\u006c\u0061\u0073\u0068\u0073\u0068\u006f\u0072t\u006e\u006f\u0073\u0070",0x1e9b:"\u0073\u006c\u006f\u006e\u0067\u0064\u006f\u0074\u0061c\u0063\u0065\u006e\u0074",0x2322:"\u0073l\u0075\u0072\u0061\u0062\u006f\u0076e",0x25c2:"\u0073\u006d\u0061\u006clb\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065f\u0074",0x25b8:"\u0073\u006d\u0061ll\u0062\u006c\u0061\u0063\u006b\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x06e4:"\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0067\u0068m\u0061\u0064\u0064\u0061",0x220a:"\u0073m\u0061\u006c\u006c\u0069\u006e",0x220d:"\u0073m\u0061\u006c\u006c\u006e\u0069",0x2a33:"\u0073\u006d\u0061\u0073\u0068\u0074\u0069\u006d\u0065\u0073",0x2b29:"\u0073\u006d\u0062l\u006b\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x2b2a:"\u0073\u006d\u0062l\u006b\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x29e4:"\u0073\u006d\u0065\u0070\u0061\u0072\u0073\u006c",0x2323:"\u0073\u006d\u0069l\u0065",0x263a:"\u0073m\u0069\u006c\u0065\u0066\u0061\u0063e",0xff53:"\u0073\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x2aaa:"\u0073\u006d\u0074",0x2aac:"\u0073\u006d\u0074\u0065",0x2b52:"s\u006d\u0077\u0068\u0069\u0074\u0065\u0073\u0074\u0061\u0072",0x2b2b:"\u0073\u006d\u0077h\u0074\u006c\u006f\u007a\u0065\u006e\u0067\u0065",0x05c3:"\u0073\u006f\u0066\u0070\u0061\u0073\u0075\u0071\u0068e\u0062\u0072\u0065\u0077",0x00ad:"\u0073\u006f\u0066\u0074\u0068\u0079\u0070\u0068\u0065\u006e",0x044c:"\u0073\u006ff\u0074\u0073\u0069g\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x305d:"\u0073\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30bd:"\u0073\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7f:"\u0073\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0338:"s\u006f\u006c\u0069\u0064us\u006co\u006e\u0067\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062",0x0337:"\u0073\u006f\u006c\u0069du\u0073\u0073\u0068\u006f\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063m\u0062",0x0e29:"\u0073\u006f\u0072\u0075\u0073\u0069\u0074\u0068\u0061\u0069",0x0e28:"\u0073\u006f\u0073\u0061\u006c\u0061\u0074\u0068\u0061\u0069",0x0e0b:"\u0073\u006f\u0073\u006f\u0074\u0068\u0061\u0069",0x0e2a:"\u0073o\u0073\u0075\u0061\u0074\u0068\u0061i",0x0020:"\u0073\u0070\u0061c\u0065",0x2660:"\u0073\u0070\u0061d\u0065",0x2664:"\u0073\u0070\u0061\u0064\u0065\u0073\u0075\u0069\u0074w\u0068\u0069\u0074\u0065",0x24ae:"\u0073\u0070\u0061\u0072\u0065\u006e",0x2222:"\u0073\u0070\u0068\u0065\u0072\u0069\u0063\u0061\u006ca\u006e\u0067\u006c\u0065",0x29a1:"\u0073\u0070h\u0065\u0072\u0069c\u0061\u006c\u0061\u006e\u0067\u006c\u0065\u0075\u0070",0x2a16:"\u0073\u0071\u0069n\u0074",0x2311:"\u0073q\u006c\u006f\u007a\u0065\u006e\u0067e",0x23b7:"\u0073\u0071\u0072\u0074\u0062\u006f\u0074\u0074\u006f\u006d",0x22e4:"s\u0071\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u0065\u0071",0x22e5:"s\u0071\u0073\u0075\u0070\u0073\u0065\u0074\u006e\u0065\u0071",0x033b:"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x2b13:"\u0073\u0071\u0075\u0061\u0072\u0065\u0062\u006f\u0074b\u006c\u0061\u0063\u006b",0x33c4:"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u0063",0x339d:"\u0073\u0071\u0075\u0061\u0072\u0065\u0063\u006d",0x25a9:"\u0073\u0071\u0075\u0061r\u0065\u0064\u0069\u0061\u0067\u006f\u006e\u0061\u006c\u0063r\u006fs\u0073\u0068\u0061\u0074\u0063\u0068\u0066i\u006c\u006c",0x22a1:"\u0073q\u0075\u0061\u0072\u0065\u0064\u006ft",0x25a4:"s\u0071u\u0061\u0072\u0065\u0068\u006f\u0072\u0069\u007ao\u006e\u0074\u0061\u006cfi\u006c\u006c",0x228f:"s\u0071\u0075\u0061\u0072\u0065\u0069\u006d\u0061\u0067\u0065",0x338f:"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u0067",0x339e:"\u0073\u0071\u0075\u0061\u0072\u0065\u006b\u006d",0x33ce:"\u0073q\u0075a\u0072\u0065\u006b\u006d\u0063\u0061\u0070\u0069\u0074\u0061\u006c",0x25e7:"\u0073q\u0075a\u0072\u0065\u006c\u0065\u0066\u0074\u0062\u006c\u0061\u0063\u006b",0x2b15:"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006c\u0062\u006c\u0061\u0063\u006b",0x25f1:"\u0073\u0071\u0075a\u0072\u0065\u006c\u006c\u0071\u0075\u0061\u0064",0x33d1:"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u006e",0x33d2:"\u0073q\u0075\u0061\u0072\u0065\u006c\u006fg",0x25ea:"\u0073\u0071\u0075\u0061\u0072\u0065\u006c\u0072\u0062\u006c\u0061\u0063\u006b",0x25f2:"\u0073\u0071\u0075a\u0072\u0065\u006c\u0072\u0071\u0075\u0061\u0064",0x338e:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0067",0x33d5:"\u0073q\u0075\u0061\u0072\u0065\u006d\u0069l",0x229f:"s\u0071\u0075\u0061\u0072\u0065\u006d\u0069\u006e\u0075\u0073",0x339c:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u006d",0x33a1:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0073\u0071u\u0061\u0072\u0065\u0064",0x22a0:"\u0073\u0071\u0075\u0061\u0072\u0065\u006d\u0075\u006ct\u0069\u0070\u006c\u0079",0x2290:"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0069g\u0069\u006e\u0061\u006c",0x25a6:"\u0073\u0071\u0075\u0061\u0072\u0065\u006f\u0072\u0074\u0068o\u0067\u006f\u006e\u0061\u006c\u0063\u0072o\u0073\u0073\u0068\u0061\u0074\u0063\u0068\u0066\u0069\u006c\u006c",0x229e:"\u0073\u0071\u0075\u0061\u0072\u0065\u0070\u006c\u0075\u0073",0x25e8:"\u0073\u0071u\u0061\u0072\u0065r\u0069\u0067\u0068\u0074\u0062\u006c\u0061\u0063\u006b",0x02ae:"\u0073\u0071\u0075\u0061\u0072\u0065\u0073\u0075\u0062\u006e\u006f\u0073\u0070",0x2b12:"\u0073\u0071\u0075\u0061\u0072\u0065\u0074\u006f\u0070b\u006c\u0061\u0063\u006b",0x25e9:"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u006c\u0062\u006c\u0061\u0063\u006b",0x25f0:"\u0073\u0071\u0075a\u0072\u0065\u0075\u006c\u0071\u0075\u0061\u0064",0x25a7:"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074o\u006c\u006f\u0077\u0065\u0072\u0072\u0069\u0067\u0068\u0074\u0066\u0069\u006c\u006c",0x25a8:"\u0073\u0071\u0075a\u0072\u0065\u0075\u0070p\u0065\u0072\u0072\u0069\u0067\u0068\u0074t\u006f\u006c\u006f\u0077\u0065\u0072\u006c\u0065\u0066\u0074\u0066\u0069\u006c\u006c",0x2b14:"\u0073\u0071\u0075\u0061\u0072\u0065\u0075\u0072\u0062\u006c\u0061\u0063\u006b",0x25f3:"\u0073\u0071\u0075a\u0072\u0065\u0075\u0072\u0071\u0075\u0061\u0064",0x25a5:"\u0073q\u0075a\u0072\u0065\u0076\u0065\u0072t\u0069\u0063a\u006c\u0066\u0069\u006c\u006c",0x25a3:"\u0073q\u0075\u0061\u0072\u0065w\u0068\u0069\u0074\u0065\u0077i\u0074h\u0073m\u0061\u006c\u006c\u0062\u006c\u0061\u0063k",0x21ad:"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u006c\u0065\u0066\u0074r\u0069\u0067\u0068\u0074",0x21dd:"\u0073\u0071\u0075\u0069\u0067\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x25a2:"\u0073q\u0075\u006f\u0076\u0061\u006c",0x33db:"\u0073\u0072\u0073\u0071\u0075\u0061\u0072\u0065",0x09b7:"\u0073\u0073\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0937:"\u0073s\u0061\u0064\u0065\u0076\u0061",0x0ab7:"s\u0073\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x3149:"\u0073\u0073a\u006e\u0067\u0063i\u0065\u0075\u0063\u006b\u006f\u0072\u0065\u0061\u006e",0x3185:"\u0073\u0073a\u006e\u0067\u0068i\u0065\u0075\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x3180:"\u0073\u0073a\u006e\u0067\u0069e\u0075\u006e\u0067\u006b\u006f\u0072\u0065\u0061\u006e",0x3132:"\u0073\u0073\u0061\u006e\u0067\u006b\u0069\u0079\u0065\u006f\u006b\u006bo\u0072\u0065\u0061\u006e",0x3165:"\u0073\u0073a\u006e\u0067\u006ei\u0065\u0075\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x3143:"\u0073\u0073a\u006e\u0067\u0070i\u0065\u0075\u0070\u006b\u006f\u0072\u0065\u0061\u006e",0x3146:"\u0073s\u0061n\u0067\u0073\u0069\u006f\u0073\u006b\u006f\u0072\u0065\u0061\u006e",0x3138:"\u0073\u0073\u0061\u006e\u0067\u0074\u0069\u006b\u0065\u0075\u0074\u006bo\u0072\u0065\u0061\u006e",0x2afd:"\u0073\u0073\u006c\u0061\u0073\u0068",0xf6f2:"\u0073s\u0075\u0070\u0065\u0072\u0069\u006fr",0xfb06:"\u0073\u0074",0x22c6:"\u0073\u0074\u0061\u0072",0x225b:"\u0073\u0074\u0061\u0072\u0065\u0071",0x00a3:"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067",0xffe1:"\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x23e4:"\u0073\u0074\u0072n\u0073",0x0336:"s\u0074r\u006f\u006b\u0065\u006c\u006f\u006e\u0067\u006fv\u0065\u0072\u006c\u0061yc\u006d\u0062",0x0335:"s\u0074\u0072\u006f\u006bes\u0068o\u0072\u0074\u006f\u0076\u0065r\u006c\u0061\u0079\u0063\u006d\u0062",0x2ac3:"\u0073u\u0062\u0065\u0064\u006f\u0074",0x2ac1:"\u0073u\u0062\u006d\u0075\u006c\u0074",0x2979:"\u0073u\u0062\u0072\u0061\u0072\u0072",0x2ac9:"\u0073\u0075\u0062s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078",0x27c3:"\u0073\u0075\u0062\u0073\u0065\u0074\u0063\u0069\u0072\u0063",0x22d0:"\u0073u\u0062\u0073\u0065\u0074\u0064\u0062l",0x2ac5:"\u0073\u0075\u0062\u0073\u0065\u0074\u0064\u0062\u006ce\u0071\u0075\u0061\u006c",0x2abd:"\u0073u\u0062\u0073\u0065\u0074\u0064\u006ft",0x228a:"\u0073\u0075\u0062\u0073\u0065\u0074\u006e\u006f\u0074e\u0071\u0075\u0061\u006c",0x2acb:"\u0073\u0075\u0062\u0073\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064b\u006c\u0065\u0071\u006c",0x2abf:"\u0073\u0075\u0062\u0073\u0065\u0074\u0070\u006c\u0075\u0073",0x2291:"\u0073\u0075\u0062\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c",0x2ac7:"\u0073\u0075\u0062\u0073\u0069\u006d",0x2ad5:"\u0073\u0075\u0062\u0073\u0075\u0062",0x2ad3:"\u0073\u0075\u0062\u0073\u0075\u0070",0x2ab8:"\u0073\u0075\u0063\u0063\u0061\u0070\u0070\u0072\u006f\u0078",0x227b:"\u0073\u0075\u0063\u0063\u0065\u0065\u0064\u0073",0x2ab4:"\u0073u\u0063\u0063\u0065\u0071\u0071",0x2ab2:"\u0073u\u0063\u0063\u006e\u0065\u0071",0x220b:"\u0073\u0075\u0063\u0068\u0074\u0068\u0061\u0074",0x3059:"\u0073\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b9:"\u0073\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff7d:"\u0073\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0652:"s\u0075\u006b\u0075\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfe7e:"\u0073\u0075\u006b\u0075\u006e\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xe822:"\u0073\u0075\u006b\u0075\u006e\u006c\u006f\u0077",0xfe7f:"s\u0075\u006b\u0075\u006e\u006d\u0065\u0064\u0069\u0061\u006c",0xe834:"\u0073\u0075\u006bu\u006e\u006f\u006e\u0068\u0061\u006d\u007a\u0061",0x23b3:"\u0073u\u006d\u0062\u006f\u0074\u0074\u006fm",0x2a0b:"\u0073\u0075\u006d\u0069\u006e\u0074",0x2211:"\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn",0x23b2:"\u0073\u0075\u006d\u0074\u006f\u0070",0x263c:"\u0073\u0075\u006e",0x2ad8:"\u0073u\u0070\u0064\u0073\u0075\u0062",0x2ac4:"\u0073u\u0070\u0065\u0064\u006f\u0074",0x0670:"\u0073u\u0070e\u0072\u0073\u0063\u0072\u0069\u0070\u0074\u0061\u006c\u0065\u0066",0x22d1:"s\u0075\u0070\u0065\u0072\u0073\u0065\u0074\u0064\u0062\u006c",0x2ac6:"\u0073\u0075p\u0065\u0072\u0073e\u0074\u0064\u0062\u006c\u0065\u0071\u0075\u0061\u006c",0x228b:"\u0073\u0075p\u0065\u0072\u0073e\u0074\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c",0x2acc:"\u0073\u0075\u0070\u0065rs\u0065\u0074\u006f\u0072\u006e\u006f\u0074\u0064\u0062\u006c\u0065\u0071\u006c",0x2292:"\u0073u\u0070e\u0072\u0073\u0065\u0074\u0073\u0071\u0065\u0071\u0075\u0061\u006c",0x27c9:"\u0073u\u0070\u0068\u0073\u006f\u006c",0x2ad7:"\u0073u\u0070\u0068\u0073\u0075\u0062",0x297b:"\u0073u\u0070\u006c\u0061\u0072\u0072",0x2ac2:"\u0073u\u0070\u006d\u0075\u006c\u0074",0x2aca:"\u0073\u0075\u0070s\u0065\u0074\u0061\u0070\u0070\u0072\u006f\u0078",0x27c4:"\u0073\u0075\u0070\u0073\u0065\u0074\u0063\u0069\u0072\u0063",0x2abe:"\u0073u\u0070\u0073\u0065\u0074\u0064\u006ft",0x2ac0:"\u0073\u0075\u0070\u0073\u0065\u0074\u0070\u006c\u0075\u0073",0x2ac8:"\u0073\u0075\u0070\u0073\u0069\u006d",0x2ad4:"\u0073\u0075\u0070\u0073\u0075\u0062",0x2ad6:"\u0073\u0075\u0070\u0073\u0075\u0070",0x33dc:"\u0073\u0076\u0073\u0071\u0075\u0061\u0072\u0065",0x337c:"\u0073y\u006fu\u0077\u0061\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x0074:"\u0074",0x09a4:"\u0074a\u0062\u0065\u006e\u0067\u0061\u006ci",0x22a4:"\u0074\u0061\u0063\u006b\u0064\u006f\u0077\u006e",0x22a3:"\u0074\u0061\u0063\u006b\u006c\u0065\u0066\u0074",0x0924:"\u0074\u0061\u0064\u0065\u0076\u0061",0x0aa4:"\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a24:"\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0637:"\u0074a\u0068\u0061\u0072\u0061\u0062\u0069c",0xfec2:"\u0074\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfec3:"\u0074\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x305f:"\u0074\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfec1:"t\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfec4:"\u0074a\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x337d:"\u0074\u0061i\u0073\u0079\u006fu\u0065\u0072\u0061\u0073\u0071\u0075\u0061\u0072\u0065",0x30bf:"\u0074\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff80:"\u0074\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2afe:"\u0074\u0061\u006c\u006c\u006f\u0062\u006c\u006f\u006e\u0067",0xfe71:"\u0074a\u0074\u0077\u0065\u0065\u006c\u0077\u0069\u0074\u0068\u0066\u0061t\u0068\u0061\u0074\u0061\u006e\u0061\u0062\u006f\u0076\u0065",0x03c4:"\u0074\u0061\u0075",0xfb4a:"\u0074a\u0076\u0064\u0061\u0067\u0065\u0073h",0x05ea:"\u0074a\u0076\u0068\u0065\u0062\u0072\u0065w",0x0167:"\u0074\u0062\u0061\u0072",0x310a:"\u0074b\u006f\u0070\u006f\u006d\u006f\u0066o",0x0165:"\u0074\u0063\u0061\u0072\u006f\u006e",0xf815:"\u0074c\u0061\u0072\u006f\u006e\u0031",0x02a8:"\u0074\u0063\u0063\u0075\u0072\u006c",0x0163:"\u0074\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0xf819:"\u0074c\u0065\u0064\u0069\u006c\u006c\u00611",0x0686:"t\u0063\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",0xfb7b:"\u0074\u0063h\u0065\u0068\u0066i\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb7c:"\u0074c\u0068e\u0068\u0069\u006e\u0069\u0074i\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfb7a:"\u0074\u0063\u0068\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb7d:"\u0074\u0063\u0068\u0065\u0068\u006d\u0065\u0064\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x24e3:"\u0074c\u0069\u0072\u0063\u006c\u0065",0x1e71:"\u0074\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x1e97:"\u0074d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e6b:"\u0074\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e6d:"\u0074d\u006f\u0074\u0062\u0065\u006c\u006fw",0x04ad:"\u0074\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xfe96:"\u0074\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfca2:"\u0074\u0065\u0068\u0068ah\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfc0c:"t\u0065h\u0068\u0061\u0068\u0069\u0073\u006f\u006c\u0061t\u0065\u0064\u0061\u0072ab\u0069\u0063",0xfe97:"\u0074\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3066:"\u0074\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfe95:"t\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfca1:"t\u0065h\u006a\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc0b:"t\u0065\u0068\u006a\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0x0629:"\u0074\u0065h\u006d\u0061\u0072b\u0075\u0074\u0061\u0061\u0072\u0061\u0062\u0069\u0063",0xfe94:"t\u0065\u0068\u006d\u0061rb\u0075t\u0061\u0066\u0069\u006e\u0061l\u0061\u0072\u0061\u0062\u0069\u0063",0xfe93:"\u0074e\u0068m\u0061\u0072\u0062\u0075\u0074a\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0xfe98:"\u0074e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfca4:"t\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc0e:"t\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfc73:"\u0074e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0xfc74:"\u0074\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xe814:"\u0074\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0065\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfca3:"\u0074e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc75:"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0xfc10:"\u0074e\u0068w\u0069\u0074\u0068\u0079\u0065h\u0069\u0073o\u006c\u0061\u0074\u0065\u0064",0x30c6:"\u0074\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff83:"\u0074\u0065\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2121:"\u0074e\u006c\u0065\u0070\u0068\u006f\u006ee",0x05a0:"\u0074\u0065\u006c\u0069sh\u0061\u0067\u0065\u0064\u006f\u006c\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x05a9:"\u0074\u0065\u006c\u0069sh\u0061\u0071\u0065\u0074\u0061\u006e\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x3229:"\u0074\u0065\u006e\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x247d:"\u0074\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2491:"\u0074e\u006e\u0070\u0065\u0072\u0069\u006fd",0x2179:"\u0074\u0065\u006e\u0072\u006f\u006d\u0061\u006e",0x02a7:"\u0074\u0065\u0073\u0068",0xfb38:"\u0074e\u0074\u0064\u0061\u0067\u0065\u0073h",0x05d8:"\u0074e\u0074\u0068\u0065\u0062\u0072\u0065w",0x04b5:"\u0074\u0065\u0074\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x059b:"t\u0065\u0076\u0069\u0072\u0068\u0065\u0062\u0072\u0065\u0077",0x09a5:"\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0925:"\u0074h\u0061\u0064\u0065\u0076\u0061",0x0aa5:"t\u0068\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a25:"t\u0068\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0630:"\u0074\u0068\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeac:"\u0074h\u0061l\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeab:"\u0074\u0068\u0061l\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xf898:"\u0074\u0068\u0061\u006eth\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u006c\u0065\u0066\u0074\u0074\u0068a\u0069",0xf897:"\u0074\u0068\u0061nt\u0068\u0061\u006b\u0068\u0061\u0074\u006c\u006f\u0077\u0072\u0069\u0067\u0068\u0074\u0074\u0068\u0061\u0069",0x0e4c:"\u0074h\u0061n\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0074\u0068\u0061\u0069",0xf896:"\u0074h\u0061\u006e\u0074\u0068\u0061\u006b\u0068\u0061\u0074\u0075\u0070p\u0065\u0072\u006c\u0065\u0066\u0074\u0074\u0068\u0061\u0069",0x062b:"\u0074\u0068\u0065\u0068\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9a:"\u0074h\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe9b:"\u0074\u0068\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe99:"\u0074\u0068\u0065h\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe9c:"\u0074\u0068e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfca6:"\u0074\u0068\u0065\u0068wi\u0074\u0068\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074\u0069\u0061\u006c",0xfc12:"t\u0068e\u0068\u0077\u0069\u0074\u0068\u006d\u0065\u0065m\u0069\u0073\u006f\u006cat\u0065\u0064",0x2234:"\u0074h\u0065\u0072\u0065\u0066\u006f\u0072e",0x29e7:"\u0074h\u0065\u0072\u006d\u006f\u0064",0x03b8:"\u0074\u0068\u0065t\u0061",0x03d1:"\u0074\u0068\u0065\u0074\u0061\u0031",0x3279:"t\u0068i\u0065\u0075\u0074\u0068\u0061\u0063\u0069\u0072c\u006c\u0065\u006b\u006fre\u0061\u006e",0x3219:"\u0074\u0068\u0069\u0065ut\u0068\u0061\u0070\u0061\u0072\u0065\u006e\u006b\u006f\u0072\u0065\u0061\u006e",0x326b:"\u0074\u0068\u0069\u0065ut\u0068\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x314c:"\u0074\u0068\u0069\u0065\u0075\u0074\u0068\u006b\u006f\u0072\u0065\u0061\u006e",0x320b:"\u0074h\u0069e\u0075\u0074\u0068\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x2009:"\u0074h\u0069\u006e\u0073\u0070\u0061\u0063e",0x246c:"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0063i\u0072\u0063\u006c\u0065",0x2480:"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070\u0061\u0072\u0065\u006e",0x2494:"\u0074\u0068\u0069\u0072\u0074\u0065\u0065\u006e\u0070e\u0072\u0069\u006f\u0064",0x0e11:"\u0074\u0068\u006f\u006e\u0061\u006e\u0067\u006d\u006f\u006e\u0074\u0068o\u0074\u0068\u0061\u0069",0x01ad:"\u0074\u0068\u006fo\u006b",0x0e12:"\u0074\u0068\u006f\u0070\u0068\u0075\u0074\u0068\u0061o\u0074\u0068\u0061\u0069",0x00fe:"\u0074\u0068\u006fr\u006e",0x0e17:"\u0074\u0068\u006f\u0074\u0068\u0061\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e10:"t\u0068\u006f\u0074\u0068\u0061\u006e\u0074\u0068\u0061\u0069",0x0e18:"\u0074\u0068\u006ft\u0068\u006f\u006e\u0067\u0074\u0068\u0061\u0069",0x0e16:"\u0074\u0068\u006ft\u0068\u0075\u006e\u0067\u0074\u0068\u0061\u0069",0x0482:"\u0074\u0068o\u0075\u0073\u0061n\u0064\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x066c:"\u0074h\u006f\u0075\u0073\u0061\u006e\u0064\u0073\u0073\u0065\u0070\u0061r\u0061\u0074\u006f\u0072\u0061\u0072\u0061\u0062\u0069\u0063",0x0033:"\u0074\u0068\u0072e\u0065",0x09e9:"\u0074\u0068\u0072e\u0065\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x27c0:"t\u0068\u0072\u0065\u0065\u0064\u0061\u006e\u0067\u006c\u0065",0x0969:"\u0074h\u0072\u0065\u0065\u0064\u0065\u0076a",0x2af6:"\u0074\u0068\u0072\u0065\u0065\u0064\u006f\u0074\u0063\u006f\u006c\u006f\u006e",0x215c:"\u0074\u0068\u0072e\u0065\u0065\u0069\u0067\u0068\u0074\u0068\u0073",0x2157:"t\u0068\u0072\u0065\u0065\u0066\u0069\u0066\u0074\u0068\u0073",0x0ae9:"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a69:"\u0074\u0068\u0072\u0065\u0065\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3023:"\u0074\u0068\u0072\u0065\u0065\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x3222:"t\u0068\u0072\u0065\u0065id\u0065o\u0067\u0072\u0061\u0070\u0068i\u0063\u0070\u0061\u0072\u0065\u006e",0x2083:"\u0074\u0068\u0072\u0065\u0065\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff13:"\u0074\u0068\u0072\u0065\u0065\u006d\u006f\u006e\u006fs\u0070\u0061\u0063\u0065",0x09f6:"t\u0068\u0072\u0065\u0065nu\u006de\u0072\u0061\u0074\u006f\u0072b\u0065\u006e\u0067\u0061\u006c\u0069",0xf733:"\u0074\u0068\u0072\u0065\u0065\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2476:"\u0074\u0068\u0072\u0065\u0065\u0070\u0061\u0072\u0065\u006e",0x2004:"\u0074h\u0072e\u0065\u0070\u0065\u0072\u0065\u006d\u0073\u0070\u0061\u0063\u0065",0x248a:"t\u0068\u0072\u0065\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x06f3:"\u0074\u0068\u0072e\u0065\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x00be:"\u0074\u0068\u0072\u0065\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0073",0xf6de:"\u0074\u0068\u0072\u0065eq\u0075\u0061\u0072\u0074\u0065\u0072\u0073\u0065\u006d\u0064\u0061\u0073\u0068",0x2172:"\u0074\u0068\u0072\u0065\u0065\u0072\u006f\u006d\u0061\u006e",0x00b3:"\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e53:"\u0074h\u0072\u0065\u0065\u0074\u0068\u0061i",0x20e8:"\u0074\u0068\u0072\u0065\u0065\u0075\u006e\u0064\u0065\u0072\u0064\u006f\u0074",0x3394:"\u0074h\u007a\u0073\u0071\u0075\u0061\u0072e",0x2040:"\u0074i\u0065\u0063\u006f\u006e\u0063\u0061t",0x29dd:"\u0074\u0069\u0065\u0069\u006e\u0066\u0074\u0079",0x3061:"\u0074\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c1:"\u0074\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff81:"\u0074\u0069\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3270:"\u0074\u0069\u006b\u0065ut\u0061\u0063\u0069\u0072\u0063\u006c\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x3210:"\u0074i\u006be\u0075\u0074\u0061\u0070\u0061r\u0065\u006ek\u006f\u0072\u0065\u0061\u006e",0x3262:"\u0074i\u006be\u0075\u0074\u0063\u0069\u0072c\u006c\u0065k\u006f\u0072\u0065\u0061\u006e",0x3137:"\u0074\u0069\u006be\u0075\u0074\u006b\u006f\u0072\u0065\u0061\u006e",0x3202:"\u0074\u0069\u006b\u0065\u0075\u0074\u0070\u0061\u0072\u0065\u006e\u006bo\u0072\u0065\u0061\u006e",0x02dc:"\u0074\u0069\u006cd\u0065",0xf004:"\u0074\u0069\u006c\u0064\u0065\u0031",0x0330:"\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077\u0063\u006d\u0062",0x0303:"\u0074\u0069\u006c\u0064\u0065\u0063\u006d\u0062",0x0360:"\u0074\u0069\u006c\u0064\u0065\u0064\u006f\u0075\u0062l\u0065\u0063\u006d\u0062",0x0276:"\u0074i\u006c\u0064\u0065\u006e\u006f\u0073p",0x0334:"\u0074i\u006cd\u0065\u006f\u0076\u0065\u0072\u006c\u0061\u0079\u0063\u006d\u0062",0x033e:"\u0074\u0069l\u0064\u0065\u0076e\u0072\u0074\u0069\u0063\u0061\u006c\u0063\u006d\u0062",0x2a31:"\u0074\u0069\u006d\u0065\u0073\u0062\u0061\u0072",0x0596:"\u0074\u0069\u0070e\u0068\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0x0a70:"\u0074\u0069\u0070\u0070\u0069\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0483:"\u0074\u0069t\u006c\u006f\u0063y\u0072\u0069\u006c\u006c\u0069\u0063\u0063\u006d\u0062",0x057f:"\u0074\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x1e6f:"\u0074\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0x29ff:"\u0074\u006d\u0069\u006e\u0075\u0073",0xff54:"\u0074\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0569:"\u0074\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x2928:"\u0074\u006f\u0065\u0061",0x3068:"\u0074\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c8:"\u0074\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff84:"\u0074\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x2927:"\u0074\u006f\u006e\u0061",0x02e5:"\u0074\u006f\u006e\u0065ba\u0072\u0065\u0078\u0074\u0072\u0061\u0068\u0069\u0067\u0068\u006d\u006f\u0064",0x02e9:"\u0074o\u006ee\u0062\u0061\u0072\u0065\u0078t\u0072\u0061l\u006f\u0077\u006d\u006f\u0064",0x02e6:"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u0068\u0069g\u0068\u006d\u006f\u0064",0x02e8:"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006c\u006f\u0077\u006d\u006f\u0064",0x02e7:"\u0074\u006f\u006e\u0065\u0062\u0061\u0072\u006d\u0069\u0064\u006d\u006f\u0064",0x01bd:"\u0074\u006f\u006e\u0065\u0066\u0069\u0076\u0065",0x0185:"\u0074o\u006e\u0065\u0073\u0069\u0078",0x01a8:"\u0074o\u006e\u0065\u0074\u0077\u006f",0x0384:"\u0074\u006f\u006eo\u0073",0x3327:"\u0074o\u006e\u0073\u0071\u0075\u0061\u0072e",0x0e0f:"t\u006f\u0070\u0061\u0074\u0061\u006b\u0074\u0068\u0061\u0069",0x2336:"\u0074\u006f\u0070\u0062\u006f\u0074",0x2af1:"\u0074\u006f\u0070\u0063\u0069\u0072",0x2ada:"\u0074o\u0070\u0066\u006f\u0072\u006b",0x25e0:"\u0074\u006f\u0070\u0073\u0065\u006d\u0069\u0063\u0069\u0072\u0063\u006c\u0065",0x3014:"\u0074o\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074",0xfe5d:"\u0074\u006fr\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074\u0073ma\u006c\u006c",0xfe39:"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072a\u0063k\u0065\u0074\u006c\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x3015:"\u0074o\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006cl\u0062r\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068t",0xfe5e:"\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068e\u006c\u006c\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0073\u006d\u0061\u006c\u006c",0xfe3a:"\u0074\u006f\u0072\u0074\u006f\u0069s\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074r\u0069\u0067\u0068\u0074\u0076\u0065\u0072t\u0069\u0063\u0061\u006c",0x2929:"\u0074\u006f\u0073\u0061",0x0e15:"\u0074o\u0074\u0061\u006f\u0074\u0068\u0061i",0x292a:"\u0074\u006f\u0077\u0061",0x01ab:"\u0074\u0070\u0061l\u0061\u0074\u0061\u006c\u0068\u006f\u006f\u006b",0x24af:"\u0074\u0070\u0061\u0072\u0065\u006e",0x29fe:"\u0074\u0070\u006cu\u0073",0x2122:"\u0074r\u0061\u0064\u0065\u006d\u0061\u0072k",0xf8ea:"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006b\u0073\u0061\u006e\u0073",0xf6db:"\u0074\u0072\u0061\u0064\u0065\u006d\u0061\u0072\u006bs\u0065\u0072\u0069\u0066",0x23e2:"\u0074r\u0061\u0070\u0065\u007a\u0069\u0075m",0x0288:"\u0074\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b",0x2023:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0062u\u006c\u006c\u0065\u0074",0x25ec:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0063\u0064\u006f\u0074",0x25ed:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074b\u006c\u0061\u0063\u006b",0x22b4:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074e\u0071\u0075\u0061\u006c",0x2a3a:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006d\u0069\u006e\u0075\u0073",0x29ca:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u006f\u0064\u006f\u0074",0x2a39:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0070\u006c\u0075\u0073",0x25ee:"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0062\u006c\u0061\u0063\u006b",0x22b5:"\u0074r\u0069a\u006e\u0067\u006c\u0065\u0072i\u0067\u0068t\u0065\u0071\u0075\u0061\u006c",0x29cc:"\u0074r\u0069\u0061\u006e\u0067\u006c\u0065s",0x29cd:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0073e\u0072\u0069\u0066\u0073",0x2a3b:"\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u0074\u0069\u006d\u0065\u0073",0x29cb:"\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0075\u0062\u0061\u0072",0x29fb:"\u0074\u0072\u0069\u0070\u006c\u0065\u0070\u006c\u0075\u0073",0x2034:"\u0074r\u0070\u0072\u0069\u006d\u0065",0x2afb:"\u0074r\u0073\u006c\u0061\u0073\u0068",0x02a6:"\u0074\u0073",0xfb46:"t\u0073\u0061\u0064\u0069\u0064\u0061\u0067\u0065\u0073\u0068",0x0446:"t\u0073\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x05b5:"\u0074s\u0065\u0072\u0065\u0031\u0032",0x045b:"\u0074\u0073\u0068e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0xf6f3:"\u0074s\u0075\u0070\u0065\u0072\u0069\u006fr",0x099f:"\u0074\u0074\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x091f:"\u0074t\u0061\u0064\u0065\u0076\u0061",0x0a9f:"t\u0074\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a1f:"t\u0074\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0xfb67:"\u0074t\u0065h\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb68:"\u0074\u0074\u0065\u0068\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb69:"\u0074\u0074e\u0068\u006d\u0065d\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x09a0:"t\u0074\u0068\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0920:"\u0074\u0074\u0068\u0061\u0064\u0065\u0076\u0061",0x0aa0:"\u0074\u0074\u0068a\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a20:"\u0074\u0074\u0068a\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0287:"\u0074t\u0075\u0072\u006e\u0065\u0064",0x3064:"\u0074\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c4:"\u0074\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff82:"\u0074\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x29a2:"\u0074u\u0072\u006e\u0061\u006e\u0067\u006ce",0x2129:"\u0074\u0075\u0072\u006e\u0065\u0064\u0069\u006f\u0074\u0061",0x2319:"\u0074u\u0072\u006e\u0065\u0064\u006e\u006ft",0x22a2:"\u0074\u0075\u0072\u006e\u0073\u0074\u0069\u006c\u0065\u006c\u0065\u0066\u0074",0x3063:"\u0074u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30c3:"\u0074u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6f:"\u0074u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x246b:"\u0074\u0077\u0065l\u0076\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x247f:"t\u0077\u0065\u006c\u0076\u0065\u0070\u0061\u0072\u0065\u006e",0x2493:"\u0074\u0077\u0065l\u0076\u0065\u0070\u0065\u0072\u0069\u006f\u0064",0x217b:"t\u0077\u0065\u006c\u0076\u0065\u0072\u006f\u006d\u0061\u006e",0xd80c:"t\u0077\u0065\u006c\u0076\u0065\u0075\u0064\u0061\u0073\u0068",0x2473:"\u0074\u0077\u0065n\u0074\u0079\u0063\u0069\u0072\u0063\u006c\u0065",0x5344:"\u0074\u0077\u0065\u006e\u0074\u0079\u0068\u0061\u006eg\u007a\u0068\u006f\u0075",0x2487:"t\u0077\u0065\u006e\u0074\u0079\u0070\u0061\u0072\u0065\u006e",0x249b:"\u0074\u0077\u0065n\u0074\u0079\u0070\u0065\u0072\u0069\u006f\u0064",0x0032:"\u0074\u0077\u006f",0x0662:"\u0074w\u006f\u0061\u0072\u0061\u0062\u0069c",0x09e8:"\u0074\u0077\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x2a4b:"\u0074w\u006f\u0063\u0061\u0070\u0073",0x2a4a:"\u0074w\u006f\u0063\u0075\u0070\u0073",0x0968:"\u0074w\u006f\u0064\u0065\u0076\u0061",0x2025:"\u0074\u0077\u006fd\u006f\u0074\u006c\u0065\u0061\u0064\u0065\u0072",0xfe30:"t\u0077o\u0064\u006f\u0074\u006c\u0065\u0061\u0064\u0065r\u0076\u0065\u0072\u0074ic\u0061\u006c",0x2156:"\u0074w\u006f\u0066\u0069\u0066\u0074\u0068s",0x0ae8:"t\u0077\u006f\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a68:"t\u0077\u006f\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3022:"t\u0077\u006f\u0068\u0061\u006e\u0067\u007a\u0068\u006f\u0075",0x21a1:"\u0074\u0077o\u0068\u0065\u0061d\u0064\u006f\u0077\u006e\u0061\u0072\u0072\u006f\u0077",0x2b3b:"t\u0077o\u0068\u0065\u0061\u0064\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077ta\u0069\u006c",0x2b37:"\u0074\u0077\u006f\u0068ea\u0064\u006c\u0065\u0066\u0074\u0064\u0062\u006b\u0061\u0072\u0072\u006f\u0077",0x2b36:"\u0074w\u006fh\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0066\u0072\u006f\u006d",0x2905:"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u006d\u0061\u0070\u0073\u0074\u006f",0x2916:"t\u0077\u006f\u0068\u0065ad\u0072i\u0067\u0068\u0074\u0061\u0072r\u006f\u0077\u0074\u0061\u0069\u006c",0x219f:"\u0074\u0077\u006f\u0068\u0065\u0061\u0064\u0075\u0070a\u0072\u0072\u006f\u0077",0x2949:"t\u0077o\u0068\u0065\u0061\u0064\u0075\u0070\u0061\u0072r\u006f\u0077\u0063\u0069rc\u006c\u0065",0x3221:"\u0074\u0077\u006f\u0069de\u006f\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0070\u0061\u0072\u0065\u006e",0x2082:"t\u0077\u006f\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff12:"\u0074\u0077\u006fm\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x09f5:"\u0074\u0077\u006f\u006eum\u0065\u0072\u0061\u0074\u006f\u0072\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0xf732:"t\u0077\u006f\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x2475:"\u0074\u0077\u006f\u0070\u0061\u0072\u0065\u006e",0x2489:"\u0074w\u006f\u0070\u0065\u0072\u0069\u006fd",0x06f2:"\u0074\u0077\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2171:"\u0074\u0077\u006f\u0072\u006f\u006d\u0061\u006e",0x01bb:"\u0074w\u006f\u0073\u0074\u0072\u006f\u006be",0x00b2:"t\u0077\u006f\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e52:"\u0074w\u006f\u0074\u0068\u0061\u0069",0x2154:"\u0074w\u006f\u0074\u0068\u0069\u0072\u0064s",0x2982:"\u0074y\u0070\u0065\u0063\u006f\u006c\u006fn",0x0075:"\u0075",0x2643:"\u0075\u0032\u00364\u0033",0x00fa:"\u0075\u0061\u0063\u0075\u0074\u0065",0x0289:"\u0075\u0062\u0061\u0072",0x0989:"\u0075\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x3128:"\u0075b\u006f\u0070\u006f\u006d\u006f\u0066o",0x23e1:"\u0075b\u0072\u0062\u0072\u0061\u006b",0x016d:"\u0075\u0062\u0072\u0065\u0076\u0065",0x01d4:"\u0075\u0063\u0061\u0072\u006f\u006e",0xf834:"\u0075\u0063\u0065\u0064\u0069\u006c\u006c\u0061",0x24e4:"\u0075c\u0069\u0072\u0063\u006c\u0065",0x00fb:"u\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e77:"\u0075\u0063i\u0072\u0063\u0075m\u0066\u006c\u0065\u0078\u0062\u0065\u006c\u006f\u0077",0x0951:"\u0075\u0064\u0061\u0074\u0074\u0061\u0064\u0065\u0076\u0061",0x0171:"\u0075d\u0062\u006c\u0061\u0063\u0075\u0074e",0x0215:"\u0075d\u0062\u006c\u0067\u0072\u0061\u0076e",0x0909:"\u0075\u0064\u0065v\u0061",0x00fc:"\u0075d\u0069\u0065\u0072\u0065\u0073\u0069s",0x01d8:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073a\u0063\u0075\u0074\u0065",0x1e73:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073b\u0065\u006c\u006f\u0077",0x01da:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073c\u0061\u0072\u006f\u006e",0x04f1:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x01dc:"\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073g\u0072\u0061\u0076\u0065",0x01d6:"\u0075d\u0069e\u0072\u0065\u0073\u0069\u0073\u006d\u0061\u0063\u0072\u006f\u006e",0x1ee5:"\u0075d\u006f\u0074\u0062\u0065\u006c\u006fw",0x00f9:"\u0075\u0067\u0072\u0061\u0076\u0065",0x0a89:"\u0075g\u0075\u006a\u0061\u0072\u0061\u0074i",0x0a09:"\u0075g\u0075\u0072\u006d\u0075\u006b\u0068i",0x3046:"\u0075h\u0069\u0072\u0061\u0067\u0061\u006ea",0x1ee7:"\u0075\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x01b0:"\u0075\u0068\u006fr\u006e",0x1ee9:"\u0075\u0068\u006f\u0072\u006e\u0061\u0063\u0075\u0074\u0065",0x1ef1:"\u0075\u0068\u006f\u0072\u006e\u0064\u006f\u0074\u0062\u0065\u006c\u006f\u0077",0x1eeb:"\u0075\u0068\u006f\u0072\u006e\u0067\u0072\u0061\u0076\u0065",0x1eed:"\u0075\u0068\u006f\u0072\u006e\u0068\u006f\u006f\u006ba\u0062\u006f\u0076\u0065",0x1eef:"\u0075\u0068\u006f\u0072\u006e\u0074\u0069\u006c\u0064\u0065",0x04f3:"u\u0068\u0075\u006e\u0067ar\u0075m\u006c\u0061\u0075\u0074\u0063y\u0072\u0069\u006c\u006c\u0069\u0063",0x0217:"\u0075\u0069\u006e\u0076\u0065\u0072\u0074\u0065\u0064b\u0072\u0065\u0076\u0065",0x30a6:"\u0075k\u0061\u0074\u0061\u006b\u0061\u006ea",0xff73:"\u0075k\u0061t\u0061\u006b\u0061\u006e\u0061h\u0061\u006cf\u0077\u0069\u0064\u0074\u0068",0x0479:"\u0075\u006b\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x315c:"\u0075k\u006f\u0072\u0065\u0061\u006e",0x25dc:"\u0075\u006c\u0061r\u0063",0x25f8:"\u0075\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x016b:"\u0075m\u0061\u0063\u0072\u006f\u006e",0x04ef:"\u0075m\u0061c\u0072\u006f\u006e\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x1e7b:"\u0075m\u0061c\u0072\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x0a41:"\u0075\u006d\u0061\u0074\u0072\u0061\u0067\u0075\u0072m\u0075\u006b\u0068\u0069",0x2a41:"\u0075\u006d\u0069\u006e\u0075\u0073",0xff55:"\u0075\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x23df:"\u0075\u006e\u0064\u0065\u0072\u0062\u0072\u0061\u0063\u0065",0x23b5:"\u0075\u006e\u0064e\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074",0x20ee:"\u0075\u006e\u0064\u0065\u0072\u006c\u0065\u0066\u0074a\u0072\u0072\u006f\u0077",0x20ed:"u\u006ed\u0065\u0072\u006c\u0065\u0066\u0074\u0068\u0061r\u0070\u006f\u006f\u006edo\u0077\u006e",0x23dd:"\u0075\u006e\u0064\u0065\u0072\u0070\u0061\u0072\u0065\u006e",0x20ef:"\u0075n\u0064e\u0072\u0072\u0069\u0067\u0068\u0074\u0061\u0072\u0072\u006f\u0077",0x20ec:"u\u006e\u0064\u0065\u0072ri\u0067h\u0074\u0068\u0061\u0072\u0070o\u006f\u006e\u0064\u006f\u0077\u006e",0x005f:"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065",0x2017:"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0064\u0062\u006c",0xff3f:"\u0075\u006e\u0064\u0065rs\u0063\u006f\u0072\u0065\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfe33:"\u0075n\u0064e\u0072\u0073\u0063\u006f\u0072e\u0076\u0065r\u0074\u0069\u0063\u0061\u006c",0xfe4f:"\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072e\u0077\u0061\u0076\u0079",0x203f:"\u0075\u006e\u0064\u0065\u0072\u0074\u0069\u0065",0x22ef:"\u0075\u006e\u0069c\u006f\u0064\u0065\u0063\u0064\u006f\u0074\u0073",0x222a:"\u0075\u006e\u0069o\u006e",0x22d3:"\u0075\u006e\u0069\u006f\u006e\u0064\u0062\u006c",0x228e:"\u0075\u006e\u0069\u006f\u006e\u006d\u0075\u006c\u0074\u0069",0x2294:"\u0075n\u0069\u006f\u006e\u0073\u0071",0x22c3:"\u0075n\u0069\u006f\u006e\u0074\u0065\u0078t",0x2200:"\u0075n\u0069\u0076\u0065\u0072\u0073\u0061l",0x0173:"\u0075o\u0067\u006f\u006e\u0065\u006b",0x214b:"\u0075\u0070\u0061n\u0064",0x24b0:"\u0075\u0070\u0061\u0072\u0065\u006e",0x2909:"\u0075\u0070\u0061\u0072\u0072\u006f\u0077\u0062\u0061\u0072\u0072\u0065\u0064",0x29bd:"\u0075p\u0061r\u0072\u006f\u0077\u006f\u006e\u0063\u0069\u0072\u0063\u006c\u0065",0x2580:"\u0075p\u0062\u006c\u006f\u0063\u006b",0x03dd:"\u0075p\u0064\u0069\u0067\u0061\u006d\u006da",0x2951:"u\u0070\u0064\u006f\u0077nh\u0061r\u0070\u006f\u006f\u006e\u006ce\u0066\u0074\u006c\u0065\u0066\u0074",0x294d:"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u006c\u0065\u0066\u0074\u0072\u0069\u0067h\u0074",0x294c:"\u0075\u0070\u0064\u006fwn\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u006c\u0065f\u0074",0x294f:"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067\u0068\u0074\u0072\u0069\u0067\u0068\u0074",0x296e:"\u0075\u0070\u0064ow\u006e\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x2594:"\u0075\u0070\u0065\u0069\u0067\u0068\u0074\u0068\u0062\u006c\u006f\u0063\u006b",0x297e:"\u0075\u0070\u0066\u0069\u0073\u0068\u0074\u0061\u0069\u006c",0x2960:"\u0075\u0070h\u0061\u0072\u0070o\u006f\u006e\u006c\u0065\u0066\u0074\u0062\u0061\u0072",0x295c:"\u0075\u0070\u0068\u0061\u0072\u0070\u006f\u006f\u006e\u0072\u0069\u0067h\u0074\u0062\u0061\u0072",0x2963:"\u0075\u0070\u0068\u0061rp\u006f\u006f\u006e\u0073\u006c\u0065\u0066\u0074\u0072\u0069\u0067\u0068\u0074",0x27d2:"\u0075\u0070\u0069\u006e",0x2a1b:"\u0075\u0070\u0069n\u0074",0x03df:"\u0075p\u006b\u006f\u0070\u0070\u0061",0x03d8:"\u0075\u0070\u006f\u006c\u0064\u004b\u006f\u0070\u0070\u0061",0x03d9:"\u0075\u0070\u006f\u006c\u0064\u006b\u006f\u0070\u0070\u0061",0x05c4:"\u0075\u0070\u0070\u0065\u0072\u0064\u006f\u0074\u0068e\u0062\u0072\u0065\u0077",0x2934:"\u0075\u0070\u0072\u0069\u0067\u0068\u0074\u0063\u0075\u0072\u0076\u0065a\u0072\u0072\u006f\u0077",0x03e1:"\u0075p\u0073\u0061\u006d\u0070\u0069",0x03c5:"\u0075p\u0073\u0069\u006c\u006f\u006e",0x02f9:"u\u0070\u0073\u0069\u006con\u0064i\u0061\u0065\u0072\u0065\u0073i\u0073\u0074\u006f\u006e\u006f\u0073",0x03cb:"\u0075p\u0073i\u006c\u006f\u006e\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073",0x03b0:"u\u0070s\u0069\u006c\u006f\u006e\u0064\u0069\u0065\u0072e\u0073\u0069\u0073\u0074on\u006f\u0073",0x028a:"\u0075\u0070\u0073i\u006c\u006f\u006e\u006c\u0061\u0074\u0069\u006e",0x03cd:"\u0075\u0070\u0073i\u006c\u006f\u006e\u0074\u006f\u006e\u006f\u0073",0x29f8:"\u0075p\u0073\u006c\u006f\u0070\u0065",0x03db:"\u0075\u0070\u0073\u0074\u0069\u0067\u006d\u0061",0x031d:"\u0075\u0070\u0074\u0061\u0063\u006b\u0062\u0065\u006co\u0077\u0063\u006d\u0062",0x02d4:"\u0075p\u0074\u0061\u0063\u006b\u006d\u006fd",0x03f4:"\u0075\u0070\u0076\u0061\u0072\u0054\u0068\u0065\u0074\u0061",0x0a73:"u\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x25dd:"\u0075\u0072\u0061r\u0063",0x016f:"\u0075\u0072\u0069n\u0067",0x25f9:"\u0075\u0072\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x3045:"\u0075\u0073\u006d\u0061\u006c\u006c\u0068\u0069\u0072a\u0067\u0061\u006e\u0061",0x30a5:"\u0075\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074a\u006b\u0061\u006e\u0061",0xff69:"\u0075\u0073\u006dal\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x04af:"\u0075\u0073\u0074\u0072\u0061\u0069\u0067\u0068\u0074\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x04b1:"\u0075\u0073\u0074ra\u0069\u0067\u0068\u0074\u0073\u0074\u0072\u006f\u006b\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0169:"\u0075\u0074\u0069\u006c\u0064\u0065",0x1e79:"u\u0074\u0069\u006c\u0064\u0065\u0061\u0063\u0075\u0074\u0065",0x1e75:"u\u0074\u0069\u006c\u0064\u0065\u0062\u0065\u006c\u006f\u0077",0x098a:"\u0075u\u0062\u0065\u006e\u0067\u0061\u006ci",0x090a:"\u0075\u0075\u0064\u0065\u0076\u0061",0x0a8a:"\u0075\u0075\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a0a:"\u0075\u0075\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0a42:"\u0075u\u006da\u0074\u0072\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x09c2:"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069g\u006e\u0062e\u006e\u0067\u0061\u006c\u0069",0x0942:"\u0075u\u0076o\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0064\u0065\u0076\u0061",0x0ac2:"\u0075\u0075\u0076\u006fwe\u006c\u0073\u0069\u0067\u006e\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x09c1:"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067\u006e\u0062\u0065n\u0067\u0061\u006c\u0069",0x0941:"\u0075\u0076\u006f\u0077\u0065\u006c\u0073\u0069\u0067n\u0064\u0065\u0076\u0061",0x0ac1:"\u0075v\u006fw\u0065\u006c\u0073\u0069\u0067n\u0067\u0075j\u0061\u0072\u0061\u0074\u0069",0x0076:"\u0076",0x2ae8:"\u0076\u0042\u0061\u0072",0x2ae9:"\u0076\u0042\u0061r\u0076",0x2ae2:"\u0076\u0044\u0064\u0061\u0073\u0068",0x0935:"\u0076\u0061\u0064\u0065\u0076\u0061",0x0ab5:"\u0076\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a35:"\u0076\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x30f7:"\u0076\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2ae6:"\u0076\u0061\u0072\u0056\u0064\u0061\u0073\u0068",0x23ce:"\u0076\u0061\u0072\u0063\u0061\u0072\u0072\u0069\u0061\u0067\u0065\u0072e\u0074\u0075\u0072\u006e",0x2306:"\u0076\u0061\u0072\u0064\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072w\u0065\u0064\u0067\u0065",0x2b21:"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e",0x2b22:"\u0076a\u0072h\u0065\u0078\u0061\u0067\u006f\u006e\u0062\u006c\u0061\u0063\u006b",0x232c:"\u0076\u0061\u0072\u0068\u0065\u0078\u0061\u0067\u006f\u006e\u006c\u0072b\u006f\u006e\u0064\u0073",0xfb1e:"\u0076\u0061\u0072\u0069\u006b\u0061",0x22f6:"v\u0061\u0072\u0069\u0073\u0069\u006e\u006f\u0062\u0061\u0072",0x22f3:"\u0076\u0061\u0072\u0069\u0073\u0069\u006e\u0073",0x22fd:"\u0076a\u0072\u006e\u0069\u006f\u0062\u0061r",0x22fb:"\u0076\u0061\u0072\u006e\u0069\u0073",0x2232:"\u0076\u0061r\u006f\u0069\u006et\u0063\u006c\u006f\u0063\u006b\u0077\u0069\u0073\u0065",0x22b2:"\u0076a\u0072t\u0072\u0069\u0061\u006e\u0067\u006c\u0065\u006c\u0065\u0066\u0074",0x22b3:"\u0076\u0061r\u0074\u0072\u0069a\u006e\u0067\u006c\u0065\u0072\u0069\u0067\u0068\u0074",0x2a61:"\u0076a\u0072\u0076\u0065\u0065\u0062\u0061r",0x05d5:"\u0076\u0061\u0076",0xfb35:"\u0076a\u0076d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0xfb4b:"\u0076\u0061\u0076\u0068\u006f\u006c\u0061\u006d",0x23aa:"\u0076\u0062\u0072\u0061\u0063\u0065\u0065\u0078\u0074e\u006e\u0064\u0065\u0072",0x29d0:"\u0076\u0062\u0072\u0074\u0072\u0069",0x24e5:"\u0076c\u0069\u0072\u0063\u006c\u0065",0x1e7f:"\u0076d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a2f:"\u0076\u0065\u0063\u0074\u0069\u006d\u0065\u0073",0x20d7:"\u0076\u0065\u0063\u0074\u006f\u0072",0x27c7:"\u0076\u0065\u0065\u0064\u006f\u0074",0x2a63:"\u0076\u0065\u0065d\u006f\u0075\u0062\u006c\u0065\u0062\u0061\u0072",0x225a:"\u0076\u0065\u0065e\u0071",0x2a5b:"\u0076\u0065\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074",0x2a52:"\u0076e\u0065\u006f\u0064\u006f\u0074",0x2a56:"\u0076\u0065\u0065\u006f\u006e\u0076\u0065\u0065",0x2a59:"\u0076\u0065\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065",0x06a4:"\u0076e\u0068\u0061\u0072\u0061\u0062\u0069c",0xfb6b:"\u0076\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfb6c:"\u0076\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfb6a:"v\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfb6d:"\u0076e\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x30f9:"\u0076\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2123:"\u0076\u0065\u0072\u0073\u0069\u0063\u006c\u0065",0x030d:"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0061\u0062\u006f\u0076ec\u006d\u0062",0x0329:"v\u0065r\u0074\u0069\u0063\u0061\u006c\u006c\u0069\u006ee\u0062\u0065\u006c\u006fwc\u006d\u0062",0x02cc:"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006ci\u006e\u0065l\u006f\u0077\u006d\u006f\u0064",0x02c8:"\u0076e\u0072t\u0069\u0063\u0061\u006c\u006c\u0069\u006e\u0065\u006d\u006f\u0064",0x20d2:"v\u0065\u0072\u0074\u006f\u0076\u0065\u0072\u006c\u0061\u0079",0x057e:"v\u0065\u0077\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x028b:"\u0076\u0068\u006fo\u006b",0x2317:"\u0076\u0069\u0065\u0077\u0064\u0061\u0074\u0061",0x30f8:"\u0076\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x09cd:"\u0076\u0069\u0072\u0061\u006d\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x094d:"\u0076\u0069\u0072\u0061\u006d\u0061\u0064\u0065\u0076\u0061",0x0acd:"\u0076\u0069\u0072\u0061\u006d\u0061\u0067\u0075\u006aa\u0072\u0061\u0074\u0069",0x0983:"\u0076\u0069\u0073\u0061\u0072\u0067\u0061\u0062\u0065n\u0067\u0061\u006c\u0069",0x0903:"v\u0069\u0073\u0061\u0072\u0067\u0061\u0064\u0065\u0076\u0061",0x0a83:"\u0076i\u0073a\u0072\u0067\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x27dd:"\u0076l\u006f\u006e\u0067\u0064\u0061\u0073h",0xff56:"\u0076\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0578:"\u0076\u006f\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x309e:"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30fe:"\u0076\u006f\u0069ce\u0064\u0069\u0074\u0065\u0072\u0061\u0074\u0069\u006f\u006e\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x309b:"\u0076\u006f\u0069\u0063\u0065\u0064\u006d\u0061\u0072k\u006b\u0061\u006e\u0061",0xff9e:"\u0076\u006f\u0069ce\u0064\u006d\u0061\u0072\u006b\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x30fa:"\u0076\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x24b1:"\u0076\u0070\u0061\u0072\u0065\u006e",0x25af:"\u0076\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065",0x25ae:"\u0076r\u0065c\u0074\u0061\u006e\u0067\u006c\u0065\u0062\u006c\u0061\u0063\u006b",0x021b:"\u0076s\u0063\u0072\u0069\u0070\u0074",0x1e7d:"\u0076\u0074\u0069\u006c\u0064\u0065",0x021c:"\u0076\u0074\u0075r\u006e",0x028c:"\u0076t\u0075\u0072\u006e\u0065\u0064",0x3094:"\u0076\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30f4:"\u0076\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x2b1d:"\u0076\u0079\u0073\u006d\u0062\u006c\u006b\u0073\u0071\u0075\u0061\u0072\u0065",0x2218:"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0063\u0069\u0072\u0063\u006c\u0065",0x2b1e:"\u0076\u0079\u0073\u006d\u0077\u0068\u0074\u0073\u0071\u0075\u0061\u0072\u0065",0x299a:"\u0076z\u0069\u0067\u007a\u0061\u0067",0x0077:"\u0077",0x1e83:"\u0077\u0061\u0063\u0075\u0074\u0065",0x3159:"\u0077a\u0065\u006b\u006f\u0072\u0065\u0061n",0x308f:"\u0077\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ef:"\u0077\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff9c:"\u0077\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3158:"\u0077\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x308e:"\u0077a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ee:"\u0077a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x3357:"w\u0061\u0074\u0074\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x301c:"\u0077\u0061\u0076\u0065\u0064\u0061\u0073\u0068",0xfe34:"\u0077\u0061\u0076\u0079un\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065\u0076\u0065\u0072\u0074\u0069\u0063a\u006c",0x0648:"\u0077a\u0077\u0061\u0072\u0061\u0062\u0069c",0xfeee:"\u0077\u0061\u0077\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfe86:"\u0077a\u0077\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeed:"w\u0061\u0077\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfe85:"\u0077a\u0077\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d",0x33dd:"\u0077\u0062\u0073\u0071\u0075\u0061\u0072\u0065",0x24e6:"\u0077c\u0069\u0072\u0063\u006c\u0065",0x0175:"w\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x1e85:"\u0077d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e87:"\u0077\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e89:"\u0077d\u006f\u0074\u0062\u0065\u006c\u006fw",0x2a5f:"\u0077\u0065\u0064\u0067\u0065\u0062\u0061\u0072",0x27d1:"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0074",0x2a60:"\u0077\u0065\u0064\u0067\u0065\u0064\u006f\u0075\u0062l\u0065\u0062\u0061\u0072",0x2a5a:"\u0077\u0065\u0064g\u0065\u006d\u0069\u0064\u0076\u0065\u0072\u0074",0x2a51:"\u0077e\u0064\u0067\u0065\u006f\u0064\u006ft",0x2a55:"\u0077\u0065\u0064g\u0065\u006f\u006e\u0077\u0065\u0064\u0067\u0065",0x2259:"\u0077\u0065\u0064\u0067\u0065\u0071",0x3091:"\u0077\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x2118:"w\u0065\u0069\u0065\u0072\u0073\u0074\u0072\u0061\u0073\u0073",0x30f1:"\u0077\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x315e:"\u0077\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x315d:"\u0077e\u006f\u006b\u006f\u0072\u0065\u0061n",0x1e81:"\u0077\u0067\u0072\u0061\u0076\u0065",0x25e6:"w\u0068\u0069\u0074\u0065\u0062\u0075\u006c\u006c\u0065\u0074",0x25cb:"w\u0068\u0069\u0074\u0065\u0063\u0069\u0072\u0063\u006c\u0065",0x300e:"\u0077\u0068\u0069\u0074ec\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065f\u0074",0xfe43:"\u0077\u0068\u0069\u0074\u0065\u0063\u006f\u0072\u006e\u0065r\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x300f:"\u0077\u0068\u0069te\u0063\u006f\u0072\u006e\u0065\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0xfe44:"\u0077\u0068\u0069t\u0065\u0063\u006f\u0072n\u0065\u0072\u0062\u0072\u0061\u0063\u006be\u0074\u0072\u0069\u0067\u0068\u0074\u0076\u0065\u0072\u0074\u0069\u0063\u0061\u006c",0x25c7:"\u0077\u0068\u0069t\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064",0x25c8:"\u0077\u0068\u0069\u0074\u0065\u0064\u0069\u0061\u006d\u006f\u006e\u0064\u0063o\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0062\u006c\u0061\u0063\u006b\u0073\u006d\u0061\u006c\u006c\u0064\u0069a\u006d\u006f\u006e\u0064",0x25bf:"\u0077\u0068\u0069\u0074\u0065\u0064\u006f\u0077\u006e\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25bd:"\u0077h\u0069\u0074\u0065\u0064o\u0077\u006e\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",0x27c1:"w\u0068i\u0074\u0065\u0069\u006e\u0077\u0068\u0069\u0074e\u0074\u0072\u0069\u0061ng\u006c\u0065",0x25c3:"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u0066\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0073m\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25c1:"\u0077h\u0069\u0074\u0065\u006ce\u0066\u0074\u0070\u006f\u0069n\u0074i\u006eg\u0074\u0072\u0069\u0061\u006e\u0067\u006ce",0x3016:"\u0077\u0068\u0069\u0074\u0065\u006c\u0065\u006e\u0074\u0069\u0063u\u006c\u0061\u0072\u0062\u0072\u0061\u0063\u006b\u0065\u0074l\u0065\u0066\u0074",0x3017:"w\u0068\u0069\u0074\u0065\u006c\u0065n\u0074\u0069\u0063\u0075\u006c\u0061\u0072\u0062\u0072a\u0063\u006b\u0065t\u0072i\u0067\u0068\u0074",0x25c5:"\u0077\u0068i\u0074\u0065\u0070o\u0069\u006e\u0074\u0065\u0072\u006c\u0065\u0066\u0074",0x25bb:"\u0077\u0068\u0069\u0074\u0065\u0070\u006f\u0069\u006e\u0074\u0065\u0072r\u0069\u0067\u0068\u0074",0x25b9:"\u0077\u0068\u0069t\u0065\u0072\u0069\u0067h\u0074\u0070\u006f\u0069\u006e\u0074\u0069n\u0067\u0073\u006d\u0061\u006c\u006c\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x25b7:"\u0077\u0068\u0069\u0074\u0065\u0072\u0069\u0067\u0068\u0074\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061n\u0067\u006c\u0065",0x25ab:"\u0077\u0068i\u0074\u0065\u0073m\u0061\u006c\u006c\u0073\u0071\u0075\u0061\u0072\u0065",0x27e4:"\u0077\u0068\u0069\u0074es\u0071\u0075\u0061\u0072\u0065\u0074\u0069\u0063\u006b\u006c\u0065\u0066\u0074",0x27e5:"w\u0068i\u0074\u0065\u0073\u0071\u0075\u0061\u0072\u0065t\u0069\u0063\u006b\u0072ig\u0068\u0074",0x2606:"\u0077h\u0069\u0074\u0065\u0073\u0074\u0061r",0x260f:"\u0077\u0068\u0069\u0074\u0065\u0074\u0065\u006c\u0065p\u0068\u006f\u006e\u0065",0x3018:"\u0077\u0068i\u0074\u0065\u0074\u006f\u0072\u0074\u006f\u0069\u0073\u0065\u0073\u0068\u0065\u006c\u006c\u0062\u0072\u0061\u0063\u006b\u0065\u0074le\u0066\u0074",0x3019:"\u0077\u0068\u0069\u0074\u0065\u0074\u006f\u0072\u0074\u006fi\u0073\u0065\u0073\u0068\u0065\u006c\u006cb\u0072\u0061\u0063\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074",0x25b5:"\u0077\u0068\u0069\u0074e\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067s\u006da\u006c\u006c\u0074\u0072\u0069\u0061\u006eg\u006c\u0065",0x25b3:"\u0077\u0068\u0069te\u0075\u0070\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0074\u0072\u0069\u0061\u006e\u0067\u006c\u0065",0x2b2d:"w\u0068\u0074\u0068\u006f\u0072\u007a\u006f\u0076\u0061\u006c",0x2b2f:"w\u0068\u0074\u0076\u0065\u0072\u0074\u006f\u0076\u0061\u006c",0x29a6:"\u0077\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0064\u006f\u0077\u006e",0x29a7:"w\u0069\u0064\u0065\u0061\u006e\u0067\u006c\u0065\u0075\u0070",0x20e9:"\u0077i\u0064e\u0062\u0072\u0069\u0064\u0067\u0065\u0061\u0062\u006f\u0076\u0065",0x3090:"\u0077\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30f0:"\u0077\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x315f:"\u0077\u0069\u006b\u006f\u0072\u0065\u0061\u006e",0xff57:"\u0077\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x3092:"\u0077\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30f2:"\u0077\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff66:"\u0077\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x20a9:"\u0077\u006f\u006e",0xffe6:"\u0077\u006f\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x0e27:"\u0077\u006f\u0077\u0061\u0065\u006e\u0074\u0068\u0061\u0069",0x24b2:"\u0077\u0070\u0061\u0072\u0065\u006e",0x2240:"\u0077\u0072\u0065\u0061\u0074\u0068\u0070\u0072\u006f\u0064\u0075\u0063\u0074",0x1e98:"\u0077\u0072\u0069n\u0067",0x0240:"\u0077\u0073\u0075\u0070\u0065\u0072",0x02b7:"\u0077s\u0075\u0070\u0065\u0072\u0069\u006fr",0x021d:"\u0077\u0074\u0075r\u006e",0x028d:"\u0077t\u0075\u0072\u006e\u0065\u0064",0x01bf:"\u0077\u0079\u006e\u006e",0x0078:"\u0078",0x033d:"\u0078a\u0062\u006f\u0076\u0065\u0063\u006db",0x3112:"\u0078b\u006f\u0070\u006f\u006d\u006f\u0066o",0x24e7:"\u0078c\u0069\u0072\u0063\u006c\u0065",0x1e8d:"\u0078d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e8b:"\u0078\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x056d:"x\u0065\u0068\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03be:"\u0078\u0069",0xff58:"\u0078\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x24b3:"\u0078\u0070\u0061\u0072\u0065\u006e",0x02e3:"\u0078s\u0075\u0070\u0065\u0072\u0069\u006fr",0x0079:"\u0079",0x334e:"y\u0061\u0061\u0064\u006f\u0073\u0071\u0075\u0061\u0072\u0065",0x09af:"\u0079a\u0062\u0065\u006e\u0067\u0061\u006ci",0x00fd:"\u0079\u0061\u0063\u0075\u0074\u0065",0x092f:"\u0079\u0061\u0064\u0065\u0076\u0061",0x3152:"\u0079a\u0065\u006b\u006f\u0072\u0065\u0061n",0x0aaf:"\u0079\u0061\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a2f:"\u0079\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x3084:"\u0079\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e4:"\u0079\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff94:"\u0079\u0061\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3151:"\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x0e4e:"\u0079\u0061\u006da\u006b\u006b\u0061\u006e\u0074\u0068\u0061\u0069",0x3083:"\u0079a\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e3:"\u0079a\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6c:"\u0079a\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x0463:"y\u0061\u0074\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x24e8:"\u0079c\u0069\u0072\u0063\u006c\u0065",0x0177:"y\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x00ff:"\u0079d\u0069\u0065\u0072\u0065\u0073\u0069s",0x1e8f:"\u0079\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1ef5:"\u0079d\u006f\u0074\u0062\u0065\u006c\u006fw",0x064a:"\u0079e\u0068\u0061\u0072\u0061\u0062\u0069c",0x06d2:"\u0079e\u0068b\u0061\u0072\u0072\u0065\u0065\u0061\u0072\u0061\u0062\u0069\u0063",0xfbaf:"y\u0065h\u0062\u0061\u0072\u0072\u0065\u0065\u0066\u0069n\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfef2:"\u0079\u0065\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0x0626:"\u0079\u0065\u0068\u0068am\u007a\u0061\u0061\u0062\u006f\u0076\u0065\u0061\u0072\u0061\u0062\u0069\u0063",0xfe8a:"\u0079e\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006f\u0076\u0065f\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfe8b:"\u0079\u0065\u0068\u0068\u0061\u006d\u007a\u0061\u0061\u0062\u006fv\u0065\u0069\u006e\u0069\u0074\u0069\u0061\u006c\u0061\u0072a\u0062\u0069\u0063",0xfe8c:"\u0079e\u0068\u0068\u0061\u006dz\u0061\u0061\u0062\u006f\u0076e\u006de\u0064i\u0061\u006c\u0061\u0072\u0061\u0062\u0069c",0xfef3:"\u0079\u0065h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfef1:"y\u0065\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfcdd:"y\u0065h\u006d\u0065\u0065\u006d\u0069\u006e\u0069\u0074i\u0061\u006c\u0061\u0072ab\u0069\u0063",0xfc58:"y\u0065\u0068\u006d\u0065em\u0069s\u006f\u006c\u0061\u0074\u0065d\u0061\u0072\u0061\u0062\u0069\u0063",0xfc94:"\u0079e\u0068n\u006f\u006f\u006e\u0066\u0069n\u0061\u006ca\u0072\u0061\u0062\u0069\u0063",0x06d1:"\u0079\u0065\u0068th\u0072\u0065\u0065\u0064\u006f\u0074\u0073\u0062\u0065\u006c\u006f\u0077\u0061\u0072\u0061\u0062\u0069\u0063",0xfc95:"\u0079\u0065\u0068wi\u0074\u0068\u0061\u006c\u0065\u0066\u006d\u0061\u006b\u0073\u0075\u0072\u0061\u0066\u0069\u006e\u0061\u006c",0xfc59:"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0061\u006c\u0065\u0066m\u0061\u006b\u0073\u0075\u0072\u0061\u0069\u0073\u006f\u006ca\u0074\u0065\u0064",0xfcdb:"\u0079\u0065\u0068\u0077\u0069\u0074\u0068\u0068\u0061\u0068\u0069\u006ei\u0074\u0069\u0061\u006c",0xfe89:"\u0079e\u0068\u0077\u0069\u0074h\u0068\u0061\u006d\u007a\u0061a\u0062o\u0076e\u0069\u0073\u006f\u006c\u0061\u0074\u0065d",0xfcda:"\u0079e\u0068w\u0069\u0074\u0068\u006a\u0065e\u006d\u0069n\u0069\u0074\u0069\u0061\u006c",0xfcdc:"\u0079e\u0068w\u0069\u0074\u0068\u006b\u0068a\u0068\u0069n\u0069\u0074\u0069\u0061\u006c",0xfc91:"\u0079e\u0068w\u0069\u0074\u0068\u0072\u0065\u0068\u0066\u0069\u006e\u0061\u006c",0x3156:"\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x00a5:"\u0079\u0065\u006e",0xffe5:"\u0079\u0065\u006em\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x3155:"\u0079e\u006f\u006b\u006f\u0072\u0065\u0061n",0x3186:"\u0079\u0065\u006f\u0072\u0069\u006e\u0068\u0069\u0065\u0075\u0068\u006bo\u0072\u0065\u0061\u006e",0x05aa:"\u0079e\u0072a\u0068\u0062\u0065\u006e\u0079o\u006d\u006fh\u0065\u0062\u0072\u0065\u0077",0x044b:"\u0079\u0065\u0072i\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04f9:"y\u0065r\u0075\u0064\u0069\u0065\u0072\u0065\u0073\u0069s\u0063\u0079\u0072\u0069ll\u0069\u0063",0x3181:"\u0079\u0065\u0073\u0069\u0065\u0075\u006e\u0067\u006bo\u0072\u0065\u0061\u006e",0x3183:"y\u0065\u0073\u0069\u0065un\u0067p\u0061\u006e\u0073\u0069\u006fs\u006b\u006f\u0072\u0065\u0061\u006e",0x3182:"\u0079e\u0073i\u0065\u0075\u006e\u0067\u0073i\u006f\u0073k\u006f\u0072\u0065\u0061\u006e",0x059a:"y\u0065\u0074\u0069\u0076\u0068\u0065\u0062\u0072\u0065\u0077",0x1ef3:"\u0079\u0067\u0072\u0061\u0076\u0065",0x01b4:"\u0079\u0068\u006fo\u006b",0x1ef7:"\u0079\u0068\u006f\u006f\u006b\u0061\u0062\u006f\u0076\u0065",0x0575:"\u0079\u0069\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x0457:"\u0079\u0069\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x3162:"\u0079\u0069\u006b\u006f\u0072\u0065\u0061\u006e",0x262f:"\u0079i\u006e\u0079\u0061\u006e\u0067",0x0582:"\u0079\u0069\u0077n\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0xff59:"\u0079\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xfb39:"\u0079o\u0064d\u0061\u0067\u0065\u0073\u0068\u0068\u0065\u0062\u0072\u0065\u0077",0x05f2:"\u0079\u006f\u0064y\u006f\u0064\u0068\u0065\u0062\u0072\u0065\u0077",0xfb1f:"\u0079\u006f\u0064\u0079\u006f\u0064\u0070\u0061\u0074\u0061\u0068\u0068e\u0062\u0072\u0065\u0077",0x0222:"\u0079\u006f\u0067\u0068",0x0223:"\u0079\u006f\u0067\u0068\u0063\u0075\u0072\u006c",0x3088:"\u0079\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x3189:"\u0079o\u0069\u006b\u006f\u0072\u0065\u0061n",0x30e8:"\u0079\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff96:"\u0079\u006f\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x315b:"\u0079\u006f\u006b\u006f\u0072\u0065\u0061\u006e",0x3087:"\u0079o\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e7:"\u0079o\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6e:"\u0079o\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x03f3:"\u0079\u006f\u0074\u0067\u0072\u0065\u0065\u006b",0x3188:"y\u006f\u0079\u0061\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x3187:"\u0079\u006f\u0079\u0061\u006b\u006f\u0072\u0065\u0061\u006e",0x0e22:"\u0079o\u0079\u0061\u006b\u0074\u0068\u0061i",0x0e0d:"\u0079\u006f\u0079\u0069\u006e\u0067\u0074\u0068\u0061\u0069",0x24b4:"\u0079\u0070\u0061\u0072\u0065\u006e",0x037a:"\u0079\u0070\u006f\u0067\u0065\u0067\u0072\u0061\u006d\u006d\u0065\u006e\u0069",0x0345:"y\u0070\u006f\u0067\u0065gr\u0061m\u006d\u0065\u006e\u0069\u0067r\u0065\u0065\u006b\u0063\u006d\u0062",0x01a6:"\u0079\u0072",0x1e99:"\u0079\u0072\u0069n\u0067",0x0241:"\u0079\u0073\u0075\u0070\u0065\u0072",0x02b8:"\u0079s\u0075\u0070\u0065\u0072\u0069\u006fr",0x1ef9:"\u0079\u0074\u0069\u006c\u0064\u0065",0x021e:"\u0079\u0074\u0075r\u006e",0x028e:"\u0079t\u0075\u0072\u006e\u0065\u0064",0x3086:"\u0079\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x318c:"\u0079u\u0069\u006b\u006f\u0072\u0065\u0061n",0x30e6:"\u0079\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff95:"\u0079\u0075\u006b\u0061ta\u006b\u0061\u006e\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x3160:"\u0079\u0075\u006b\u006f\u0072\u0065\u0061\u006e",0x046b:"\u0079\u0075\u0073\u0062\u0069\u0067\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x046d:"\u0079\u0075\u0073\u0062ig\u0069\u006f\u0074\u0069\u0066\u0069\u0065\u0064\u0063\u0079\u0072\u0069\u006c\u006ci\u0063",0x0467:"\u0079\u0075\u0073\u006c\u0069\u0074\u0074\u006c\u0065\u0063\u0079\u0072i\u006c\u006c\u0069\u0063",0x0469:"\u0079u\u0073\u006c\u0069\u0074t\u006c\u0065\u0069\u006f\u0074i\u0066i\u0065d\u0063\u0079\u0072\u0069\u006c\u006c\u0069c",0x3085:"\u0079u\u0073m\u0061\u006c\u006c\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30e5:"\u0079u\u0073m\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0xff6d:"\u0079u\u0073\u006d\u0061\u006c\u006c\u006b\u0061\u0074\u0061\u006b\u0061n\u0061\u0068\u0061\u006c\u0066\u0077\u0069\u0064\u0074\u0068",0x318b:"\u0079\u0075\u0079\u0065\u006b\u006f\u0072\u0065\u0061\u006e",0x318a:"y\u0075\u0079\u0065\u006f\u006b\u006f\u0072\u0065\u0061\u006e",0x09df:"\u0079\u0079\u0061\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x095f:"\u0079y\u0061\u0064\u0065\u0076\u0061",0x007a:"\u007a",0x0566:"\u007a\u0061\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x017a:"\u007a\u0061\u0063\u0075\u0074\u0065",0x095b:"\u007a\u0061\u0064\u0065\u0076\u0061",0x0a5b:"\u007a\u0061\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0638:"\u007aa\u0068\u0061\u0072\u0061\u0062\u0069c",0xfec6:"\u007a\u0061\u0068\u0066\u0069\u006e\u0061\u006c\u0061r\u0061\u0062\u0069\u0063",0xfec7:"\u007a\u0061h\u0069\u006e\u0069t\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x3056:"\u007a\u0061\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0xfec5:"z\u0061\u0068\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0xfec8:"\u007aa\u0068m\u0065\u0064\u0069\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0x0632:"\u007a\u0061\u0069\u006e\u0061\u0072\u0061\u0062\u0069\u0063",0xfeb0:"\u007aa\u0069n\u0066\u0069\u006e\u0061\u006c\u0061\u0072\u0061\u0062\u0069\u0063",0xfeaf:"\u007a\u0061\u0069n\u0069\u0073\u006f\u006c\u0061\u0074\u0065\u0064",0x30b6:"\u007a\u0061\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0595:"\u007a\u0061q\u0065\u0066\u0067a\u0064\u006f\u006c\u0068\u0065\u0062\u0072\u0065\u0077",0x0594:"\u007a\u0061q\u0065\u0066\u0071a\u0074\u0061\u006e\u0068\u0065\u0062\u0072\u0065\u0077",0x0598:"z\u0061\u0072\u0071\u0061\u0068\u0065\u0062\u0072\u0065\u0077",0xfb36:"\u007a\u0061\u0079\u0069\u006e\u0064\u0061\u0067\u0065\u0073\u0068\u0068e\u0062\u0072\u0065\u0077",0x3117:"\u007ab\u006f\u0070\u006f\u006d\u006f\u0066o",0x017e:"\u007a\u0063\u0061\u0072\u006f\u006e",0x24e9:"\u007ac\u0069\u0072\u0063\u006c\u0065",0x1e91:"z\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078",0x2a1f:"\u007a\u0063\u006d\u0070",0x0291:"\u007a\u0063\u0075r\u006c",0x017c:"\u007a\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074",0x1e93:"\u007ad\u006f\u0074\u0062\u0065\u006c\u006fw",0x0499:"\u007a\u0065\u0064\u0065sc\u0065\u006e\u0064\u0065\u0072\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x04df:"\u007ae\u0064i\u0065\u0072\u0065\u0073\u0069s\u0063\u0079r\u0069\u006c\u006c\u0069\u0063",0x305c:"\u007a\u0065\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30bc:"\u007a\u0065\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x0030:"\u007a\u0065\u0072\u006f",0x09e6:"z\u0065\u0072\u006f\u0062\u0065\u006e\u0067\u0061\u006c\u0069",0x0966:"\u007a\u0065\u0072\u006f\u0064\u0065\u0076\u0061",0x0ae6:"\u007a\u0065\u0072o\u0067\u0075\u006a\u0061\u0072\u0061\u0074\u0069",0x0a66:"\u007a\u0065\u0072o\u0067\u0075\u0072\u006d\u0075\u006b\u0068\u0069",0x0660:"\u007a\u0065\u0072\u006f\u0068\u0061\u0063\u006b\u0061r\u0061\u0062\u0069\u0063",0x2080:"\u007a\u0065\u0072o\u0069\u006e\u0066\u0065\u0072\u0069\u006f\u0072",0xff10:"\u007a\u0065\u0072\u006f\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0xf730:"\u007a\u0065\u0072o\u006f\u006c\u0064\u0073\u0074\u0079\u006c\u0065",0x06f0:"z\u0065\u0072\u006f\u0070\u0065\u0072\u0073\u0069\u0061\u006e",0x2070:"\u007a\u0065\u0072o\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072",0x0e50:"\u007a\u0065\u0072\u006f\u0074\u0068\u0061\u0069",0xfeff:"\u007ae\u0072o\u0077\u0069\u0064\u0074\u0068\u006a\u006f\u0069\u006e\u0065\u0072",0x200b:"\u007a\u0065\u0072\u006f\u0077\u0069\u0064\u0074\u0068s\u0070\u0061\u0063\u0065",0x03b6:"\u007a\u0065\u0074\u0061",0x3113:"\u007a\u0068\u0062\u006f\u0070\u006f\u006d\u006f\u0066\u006f",0x056a:"z\u0068\u0065\u0061\u0072\u006d\u0065\u006e\u0069\u0061\u006e",0x03fe:"\u007a\u0068\u0065\u0062\u0072\u0065\u0076\u0065",0x04c2:"\u007a\u0068e\u0062\u0072\u0065v\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0436:"z\u0068\u0065\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x0497:"z\u0068e\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0065r\u0063\u0079\u0072\u0069ll\u0069\u0063",0x04dd:"\u007a\u0068\u0065\u0064ie\u0072\u0065\u0073\u0069\u0073\u0063\u0079\u0072\u0069\u006c\u006c\u0069\u0063",0x3058:"\u007a\u0069\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30b8:"\u007a\u0069\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x05ae:"z\u0069\u006e\u006f\u0072\u0068\u0065\u0062\u0072\u0065\u0077",0x1e95:"\u007a\u006c\u0069\u006e\u0065\u0062\u0065\u006c\u006f\u0077",0xff5a:"\u007a\u006d\u006f\u006e\u006f\u0073\u0070\u0061\u0063\u0065",0x305e:"\u007a\u006f\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30be:"\u007a\u006f\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061",0x24b5:"\u007a\u0070\u0061\u0072\u0065\u006e",0x2a20:"\u007a\u0070\u0069p\u0065",0x2a21:"\u007a\u0070\u0072\u006f\u006a\u0065\u0063\u0074",0x0290:"\u007a\u0072\u0065\u0074\u0072\u006f\u0066\u006c\u0065x\u0068\u006f\u006f\u006b",0x0220:"\u007ar\u0074\u0068\u006f\u006f\u006b",0x01b6:"\u007as\u0074\u0072\u006f\u006b\u0065",0x305a:"\u007a\u0075\u0068\u0069\u0072\u0061\u0067\u0061\u006e\u0061",0x30ba:"\u007a\u0075\u006b\u0061\u0074\u0061\u006b\u0061\u006e\u0061"}); +func FromFontDifferences (diffList *_bac .PdfObjectArray )(map[CharCode ]GlyphName ,error ){_bgc :=make (map[CharCode ]GlyphName );var _ga CharCode ;for _ ,_ace :=range diffList .Elements (){switch _fdg :=_ace .(type ){case *_bac .PdfObjectInteger :_ga =CharCode (*_fdg ); +case *_bac .PdfObjectName :_fbf :=string (*_fdg );_bgc [_ga ]=GlyphName (_fbf );_ga ++;default:_ac .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0042\u0061\u0064\u0020\u0074\u0079\u0070\u0065\u002e\u0020\u006f\u0062\u006a\u003d\u0025\u0073",_ace );return nil ,_bac .ErrTypeError ; +};};return _bgc ,nil ;};func (_gfg *simpleEncoding )NewDecoder ()*_a .Decoder {return &_a .Decoder {Transformer :simpleDecoder {_beae :_gfg ._edfd }};};func (_gfc *differencesEncoding )CharcodeToRune (code CharCode )(rune ,bool ){if code > 0xff{return MissingCodeRune ,false ; +};_adg :=byte (code );if _aaf ,_cca :=_gfc ._bfd .Read (_adg );_cca {return _aaf ,true ;};return _gfc ._cfc .CharcodeToRune (code );};func (_cfe UTF16Encoder )Encode (str string )[]byte {return []byte (_dd .StringToUTF16 (str ))};var (_abe =_adf (_adaf ,_gea ); +_dafe =_adf (_cacc ,_decc ););type simpleEncoder struct{_gdac *_ca .RuneByteMap };func (_dcdf *TrueTypeFontEncoder )ToPdfObject ()_bac .PdfObject {return _bac .MakeNull ()};type TrueTypeFontEncoder struct{_afgd *_ca .RuneUint16Map ;_fcdg *_ca .RuneSet ; +};func (_adfc UTF16Encoder )ToPdfObject ()_bac .PdfObject {if _adfc ._fdab !=""{return _bac .MakeName (_adfc ._fdab );};return _bac .MakeNull ();};var _decc =_ca .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'✁',0x22:'✂',0x23:'✃',0x24:'✄',0x25:'☎',0x26:'✆',0x27:'✇',0x28:'✈',0x29:'✉',0x2a:'☛',0x2b:'☞',0x2c:'✌',0x2d:'✍',0x2e:'✎',0x2f:'✏',0x30:'✐',0x31:'✑',0x32:'✒',0x33:'✓',0x34:'✔',0x35:'✕',0x36:'✖',0x37:'✗',0x38:'✘',0x39:'✙',0x3a:'✚',0x3b:'✛',0x3c:'✜',0x3d:'✝',0x3e:'✞',0x3f:'✟',0x40:'✠',0x41:'✡',0x42:'✢',0x43:'✣',0x44:'✤',0x45:'✥',0x46:'✦',0x47:'✧',0x48:'★',0x49:'✩',0x4a:'✪',0x4b:'✫',0x4c:'✬',0x4d:'✭',0x4e:'✮',0x4f:'✯',0x50:'✰',0x51:'✱',0x52:'✲',0x53:'✳',0x54:'✴',0x55:'✵',0x56:'✶',0x57:'✷',0x58:'✸',0x59:'✹',0x5a:'✺',0x5b:'✻',0x5c:'✼',0x5d:'✽',0x5e:'✾',0x5f:'✿',0x60:'❀',0x61:'❁',0x62:'❂',0x63:'❃',0x64:'❄',0x65:'❅',0x66:'❆',0x67:'❇',0x68:'❈',0x69:'❉',0x6a:'❊',0x6b:'❋',0x6c:'●',0x6d:'❍',0x6e:'■',0x6f:'❏',0x70:'❐',0x71:'❑',0x72:'❒',0x73:'▲',0x74:'▼',0x75:'◆',0x76:'❖',0x77:'◗',0x78:'❘',0x79:'❙',0x7a:'❚',0x7b:'❛',0x7c:'❜',0x7d:'❝',0x7e:'❞',0x80:'\uf8d7',0x81:'\uf8d8',0x82:'\uf8d9',0x83:'\uf8da',0x84:'\uf8db',0x85:'\uf8dc',0x86:'\uf8dd',0x87:'\uf8de',0x88:'\uf8df',0x89:'\uf8e0',0x8a:'\uf8e1',0x8b:'\uf8e2',0x8c:'\uf8e3',0x8d:'\uf8e4',0xa1:'❡',0xa2:'❢',0xa3:'❣',0xa4:'❤',0xa5:'❥',0xa6:'❦',0xa7:'❧',0xa8:'♣',0xa9:'♦',0xaa:'♥',0xab:'♠',0xac:'①',0xad:'②',0xae:'③',0xaf:'④',0xb0:'⑤',0xb1:'⑥',0xb2:'⑦',0xb3:'⑧',0xb4:'⑨',0xb5:'⑩',0xb6:'❶',0xb7:'❷',0xb8:'❸',0xb9:'❹',0xba:'❺',0xbb:'❻',0xbc:'❼',0xbd:'❽',0xbe:'❾',0xbf:'❿',0xc0:'➀',0xc1:'➁',0xc2:'➂',0xc3:'➃',0xc4:'➄',0xc5:'➅',0xc6:'➆',0xc7:'➇',0xc8:'➈',0xc9:'➉',0xca:'➊',0xcb:'➋',0xcc:'➌',0xcd:'➍',0xce:'➎',0xcf:'➏',0xd0:'➐',0xd1:'➑',0xd2:'➒',0xd3:'➓',0xd4:'➔',0xd5:'→',0xd6:'↔',0xd7:'↕',0xd8:'➘',0xd9:'➙',0xda:'➚',0xdb:'➛',0xdc:'➜',0xdd:'➝',0xde:'➞',0xdf:'➟',0xe0:'➠',0xe1:'➡',0xe2:'➢',0xe3:'➣',0xe4:'➤',0xe5:'➥',0xe6:'➦',0xe7:'➧',0xe8:'➨',0xe9:'➩',0xea:'➪',0xeb:'➫',0xec:'➬',0xed:'➭',0xee:'➮',0xef:'➯',0xf1:'➱',0xf2:'➲',0xf3:'➳',0xf4:'➴',0xf5:'➵',0xf6:'➶',0xf7:'➷',0xf8:'➸',0xf9:'➹',0xfa:'➺',0xfb:'➻',0xfc:'➼',0xfd:'➽',0xfe:'➾'}); +func (_cgbe *simpleMapping )NewEncoder ()SimpleEncoder {_cgbe ._cdd .Do (_cgbe .init );return &simpleEncoding {_dcca :_cgbe ._aebd ,_edf :_cgbe ._eba ,_edfd :_cgbe ._adga };};var _fcf =_ca .NewByteRuneMap (map[byte ]rune {0x1:'\x01',0x2:'\x02',0x3:'\x03',0x4:'\x04',0x5:'\x05',0x6:'\x06',0x7:'\a',0x8:'\b',0x9:'\t',0xa:'\n',0xb:'\v',0xc:'\f',0xd:'\r',0xe:'\x0e',0xf:'\x0f',0x10:'\x10',0x11:'\x11',0x12:'\x12',0x13:'\x13',0x14:'\x14',0x15:'\x15',0x16:'\x17',0x17:'\x17',0x18:'˘',0x19:'ˇ',0x1a:'ˆ',0x1b:'˙',0x1c:'˝',0x1d:'˛',0x1e:'˚',0x1f:'˜',0x20:' ',0x21:'!',0x22:'"',0x23:'#',0x24:'$',0x25:'%',0x26:'&',0x27:'\'',0x28:'(',0x29:')',0x2a:'*',0x2b:'+',0x2c:',',0x2d:'-',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'@',0x41:'A',0x42:'B',0x43:'C',0x44:'D',0x45:'E',0x46:'F',0x47:'G',0x48:'H',0x49:'I',0x4a:'J',0x4b:'K',0x4c:'L',0x4d:'M',0x4e:'N',0x4f:'O',0x50:'P',0x51:'Q',0x52:'R',0x53:'S',0x54:'T',0x55:'U',0x56:'V',0x57:'W',0x58:'X',0x59:'Y',0x5a:'Z',0x5b:'[',0x5c:'\\',0x5d:']',0x5e:'^',0x5f:'_',0x60:'`',0x61:'a',0x62:'b',0x63:'c',0x64:'d',0x65:'e',0x66:'f',0x67:'g',0x68:'h',0x69:'i',0x6a:'j',0x6b:'k',0x6c:'l',0x6d:'m',0x6e:'n',0x6f:'o',0x70:'p',0x71:'q',0x72:'r',0x73:'s',0x74:'t',0x75:'u',0x76:'v',0x77:'w',0x78:'x',0x79:'y',0x7a:'z',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'~',0x80:'•',0x81:'†',0x82:'‡',0x83:'…',0x84:'—',0x85:'–',0x86:'ƒ',0x87:'⁄',0x88:'‹',0x89:'›',0x8a:'−',0x8b:'‰',0x8c:'„',0x8d:'“',0x8e:'”',0x8f:'‘',0x90:'’',0x91:'‚',0x92:'™',0x93:'fi',0x94:'fl',0x95:'Ł',0x96:'Œ',0x97:'Š',0x98:'Ÿ',0x99:'Ž',0x9a:'ı',0x9b:'ł',0x9c:'œ',0x9d:'š',0x9e:'ž',0xa0:'€',0xa1:'¡',0xa2:'¢',0xa3:'£',0xa4:'¤',0xa5:'¥',0xa6:'¦',0xa7:'§',0xa8:'¨',0xa9:'©',0xaa:'ª',0xab:'«',0xac:'¬',0xae:'®',0xaf:'¯',0xb0:'°',0xb1:'±',0xb2:'²',0xb3:'³',0xb4:'´',0xb5:'µ',0xb6:'¶',0xb7:'·',0xb8:'¸',0xb9:'¹',0xba:'º',0xbb:'»',0xbc:'¼',0xbd:'½',0xbe:'¾',0xbf:'¿',0xc0:'À',0xc1:'Á',0xc2:'Â',0xc3:'Ã',0xc4:'Ä',0xc5:'Å',0xc6:'Æ',0xc7:'Ç',0xc8:'È',0xc9:'É',0xca:'Ê',0xcb:'Ë',0xcc:'Ì',0xcd:'Í',0xce:'Î',0xcf:'Ï',0xd0:'Ð',0xd1:'Ñ',0xd2:'Ò',0xd3:'Ó',0xd4:'Ô',0xd5:'Õ',0xd6:'Ö',0xd7:'×',0xd8:'Ø',0xd9:'Ù',0xda:'Ú',0xdb:'Û',0xdc:'Ü',0xdd:'Ý',0xde:'Þ',0xdf:'ß',0xe0:'à',0xe1:'á',0xe2:'â',0xe3:'ã',0xe4:'ä',0xe5:'å',0xe6:'æ',0xe7:'ç',0xe8:'è',0xe9:'é',0xea:'ê',0xeb:'ë',0xec:'ì',0xed:'í',0xee:'î',0xef:'ï',0xf0:'ð',0xf1:'ñ',0xf2:'ò',0xf3:'ó',0xf4:'ô',0xf5:'õ',0xf6:'ö',0xf7:'÷',0xf8:'ø',0xf9:'ù',0xfa:'ú',0xfb:'û',0xfc:'ü',0xfd:'ý',0xfe:'þ',0xff:'ÿ'}); +type SimpleEncoder interface{TextEncoder ;BaseName ()string ;Charcodes ()[]CharCode ;};func (_bbd *IdentityEncoder )GlyphToRune (glyph GlyphName )(rune ,bool ){if glyph =="\u0073\u0070\u0061c\u0065"{return ' ',true ;}else if !_dc .HasPrefix (string (glyph ),"\u0075\u006e\u0069")||len (glyph )!=7{return 0,false ; +};_adb ,_cee :=_b .ParseUint (string (glyph [3:]),16,16);if _cee !=nil {return 0,false ;};return rune (_adb ),true ;};func (_aede CMapEncoder )Encode (str string )[]byte {if _aede ._fda ==nil {return []byte {};};if _aede ._fda .NBits ()==8{return _ffb (_aede ,str ); +};return _bcbf (_aede ,str );};func _eefdd (_cef TextEncoder ,_ffa []byte )string {_cac :=make ([]rune ,0,len (_ffa )/2+len (_ffa )%2);for len (_ffa )> 0{if len (_ffa )==1{_ffa =[]byte {_ffa [0],0};};_fgc :=CharCode (_be .BigEndian .Uint16 (_ffa [:])); +_ffa =_ffa [2:];_bdd ,_ddaf :=_cef .CharcodeToRune (_fgc );if !_ddaf {_ac .Log .Debug ("\u0046a\u0069\u006ce\u0064\u0020\u0074\u006f \u006d\u0061\u0070 \u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0020to\u0020\u0072\u0075n\u0065\u002e \u0063\u0068\u0061\u0072\u0063\u006fd\u0065\u003d%\u0023\u0078",_fgc ); +continue ;};_cac =append (_cac ,_bdd );};return string (_cac );};type CharCode uint16 ;func NewWinAnsiEncoder ()SimpleEncoder {return _ffff .NewEncoder ()};func (_dbd *simpleMapping )init (){_dbd ._eba =_ca .MakeRuneByteMap (_dbd ._adga .Length ());_dbd ._adga .Range (func (_ddf byte ,_dccg rune )(_bcaf bool ){if _gad ,_fbc :=_dbd ._eba .Read (_dccg ); +!_fbc ||_ddf < _gad {_dbd ._eba .Write (_dccg ,_ddf );};return false ;});};const (_adaf ="\u0053\u0079\u006d\u0062\u006f\u006c\u0045\u006e\u0063o\u0064\u0069\u006e\u0067";_cacc ="Z\u0061p\u0066\u0044\u0069\u006e\u0067\u0062\u0061\u0074s\u0045\u006e\u0063\u006fdi\u006e\u0067"; +);func _adf (_afbb string ,_gfa *_ca .ByteRuneMap )*simpleMapping {return &simpleMapping {_aebd :_afbb ,_adga :_gfa };};var _gea =_ca .NewByteRuneMap (map[byte ]rune {0x20:' ',0x21:'!',0x22:'∀',0x23:'#',0x24:'∃',0x25:'%',0x26:'&',0x27:'∋',0x28:'(',0x29:')',0x2a:'∗',0x2b:'+',0x2c:',',0x2d:'−',0x2e:'.',0x2f:'/',0x30:'0',0x31:'1',0x32:'2',0x33:'3',0x34:'4',0x35:'5',0x36:'6',0x37:'7',0x38:'8',0x39:'9',0x3a:':',0x3b:';',0x3c:'<',0x3d:'=',0x3e:'>',0x3f:'?',0x40:'≅',0x41:'Α',0x42:'Β',0x43:'Χ',0x44:'∆',0x45:'Ε',0x46:'Φ',0x47:'Γ',0x48:'Η',0x49:'Ι',0x4a:'ϑ',0x4b:'Κ',0x4c:'Λ',0x4d:'Μ',0x4e:'Ν',0x4f:'Ο',0x50:'Π',0x51:'Θ',0x52:'Ρ',0x53:'Σ',0x54:'Τ',0x55:'Υ',0x56:'ς',0x57:'Ω',0x58:'Ξ',0x59:'Ψ',0x5a:'Ζ',0x5b:'[',0x5c:'∴',0x5d:']',0x5e:'⊥',0x5f:'_',0x60:'\uf8e5',0x61:'α',0x62:'β',0x63:'χ',0x64:'δ',0x65:'ε',0x66:'φ',0x67:'γ',0x68:'η',0x69:'ι',0x6a:'ϕ',0x6b:'κ',0x6c:'λ',0x6d:'µ',0x6e:'ν',0x6f:'ο',0x70:'π',0x71:'θ',0x72:'ρ',0x73:'σ',0x74:'τ',0x75:'υ',0x76:'ϖ',0x77:'ω',0x78:'ξ',0x79:'ψ',0x7a:'ζ',0x7b:'{',0x7c:'|',0x7d:'}',0x7e:'∼',0xa0:'€',0xa1:'ϒ',0xa2:'′',0xa3:'≤',0xa4:'⁄',0xa5:'∞',0xa6:'ƒ',0xa7:'♣',0xa8:'♦',0xa9:'♥',0xaa:'♠',0xab:'↔',0xac:'←',0xad:'↑',0xae:'→',0xaf:'↓',0xb0:'°',0xb1:'±',0xb2:'″',0xb3:'≥',0xb4:'×',0xb5:'∝',0xb6:'∂',0xb7:'•',0xb8:'÷',0xb9:'≠',0xba:'≡',0xbb:'≈',0xbc:'…',0xbd:'\uf8e6',0xbe:'\uf8e7',0xbf:'↵',0xc0:'ℵ',0xc1:'ℑ',0xc2:'ℜ',0xc3:'℘',0xc4:'⊗',0xc5:'⊕',0xc6:'∅',0xc7:'∩',0xc8:'∪',0xc9:'⊃',0xca:'⊇',0xcb:'⊄',0xcc:'⊂',0xcd:'⊆',0xce:'∈',0xcf:'∉',0xd0:'∠',0xd1:'∇',0xd2:'\uf6da',0xd3:'\uf6d9',0xd4:'\uf6db',0xd5:'∏',0xd6:'√',0xd7:'⋅',0xd8:'¬',0xd9:'∧',0xda:'∨',0xdb:'⇔',0xdc:'⇐',0xdd:'⇑',0xde:'⇒',0xdf:'⇓',0xe0:'◊',0xe1:'〈',0xe2:'\uf8e8',0xe3:'\uf8e9',0xe4:'\uf8ea',0xe5:'∑',0xe6:'\uf8eb',0xe7:'\uf8ec',0xe8:'\uf8ed',0xe9:'\uf8ee',0xea:'\uf8ef',0xeb:'\uf8f0',0xec:'\uf8f1',0xed:'\uf8f2',0xee:'\uf8f3',0xef:'\uf8f4',0xf1:'〉',0xf2:'∫',0xf3:'⌠',0xf4:'\uf8f5',0xf5:'⌡',0xf6:'\uf8f6',0xf7:'\uf8f7',0xf8:'\uf8f8',0xf9:'\uf8f9',0xfa:'\uf8fa',0xfb:'\uf8fb',0xfc:'\uf8fc',0xfd:'\uf8fd',0xfe:'\uf8fe'}); +func (_bbb *differencesEncoding )Encode (str string )[]byte {_gffa :=[]rune (str );_dgf :=_ba .NewBuffer (nil );_dgf .Grow (len (_gffa ));for _ ,_bcb :=range _gffa {_aedea ,_ :=_bbb .RuneToCharcode (_bcb );_dgf .WriteByte (byte (_aedea ));};return _dgf .Bytes (); +};func NewCustomSimpleTextEncoder (encoding ,differences map[CharCode ]GlyphName )(SimpleEncoder ,error ){if len (encoding )==0{return nil ,_gg .New ("e\u006d\u0070\u0074\u0079 c\u0075s\u0074\u006f\u006d\u0020\u0065n\u0063\u006f\u0064\u0069\u006e\u0067"); +};const _bcd ="\u0063\u0075\u0073\u0074\u006f\u006d";_ccd :=_ca .MakeByteRuneMap (len (encoding ));for _acga ,_bcbb :=range encoding {_gdd ,_fcag :=GlyphToRune (_bcbb );if !_fcag {_ac .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077n\u0020\u0067\u006c\u0079\u0070\u0068\u002e\u0020\u0025\u0071",_bcbb ); +continue ;};_ccd .Write (byte (_acga ),_gdd );};_cba :=_aca (_bcd ,_ccd );if len (differences )!=0{_cba =ApplyDifferences (_cba ,differences );};return _cba ,nil ;};func (_cacf *TrueTypeFontEncoder )CharcodeToRune (code CharCode )(rune ,bool ){_aade :=rune (-1); +_cacf ._afgd .Range (func (_gfgg rune ,_eda uint16 )(_dab bool ){_ecb :=CharCode (_eda );if _ecb ==code {_aade =_gfgg ;return true ;};return false ;});if _aade !=-1{return _aade ,true ;};_ac .Log .Debug ("\u0043h\u0061\u0072c\u006f\u0064\u0065\u0054o\u0052\u0075\u006ee\u003a\u0020\u004e\u006f\u0020\u006d\u0061\u0074\u0063h.\u0020\u0063\u006fd\u0065\u003d0\u0078\u0025\u0030\u0034\u0078\u0020e\u006e\u0063=\u0025\u0073",code ,_cacf ); +return 0,false ;};func (_fa CMapEncoder )CharcodeToRune (code CharCode )(rune ,bool ){_bcf ,_dg :=_fa .charcodeToString (code );if len (_bcf )< 1{return MissingCodeRune ,false ;};return ([]rune (_bcf ))[0],_dg ;};func init (){RegisterSimpleEncoding (_adad ,NewMacExpertEncoder ); +RegisterSimpleEncoding (_gade ,NewMacRomanEncoder );};func (_aa CMapEncoder )charcodeToString (_afe CharCode )(string ,bool ){if _aa ._fda ==nil {return MissingCodeString ,false ;};_aeb :=_gda .CharCode (_afe );if _aa ._bd !=nil {var _ed bool ;if _aeb ,_ed =_aa ._bd .CharcodeToCID (_gda .CharCode (_afe )); +!_ed {return MissingCodeString ,false ;};};return _aa ._fda .CharcodeToUnicode (_aeb );};var _fgab =_ca .NewStringRuneMap (map[string ]rune {"\u0066\u005f\u0074":0xe000,"\u0066\u005f\u006a":0xe001,"\u0066\u005f\u0062":0xe002,"\u0066\u005f\u0068":0xe003,"\u0066\u005f\u006b":0xe004,"\u0074\u005f\u0074":0xe005,"\u0074\u005f\u0066":0xe006,"\u0066\u005f\u0066_\u006a":0xe007,"\u0066\u005f\u0066_\u0062":0xe008,"\u0066\u005f\u0066_\u0068":0xe009,"\u0066\u005f\u0066_\u006b":0xe00a,"\u0054\u005f\u0068":0xe00b}); +func (_gaga *IdentityEncoder )CharcodeToRune (code CharCode )(rune ,bool ){_gaga ._aef .Write (rune (code ));return rune (code ),true ;};func (_aea CMapEncoder )Decode (raw []byte )string {if _aea ._bd !=nil {if _bb ,_ab :=_aea ._bd .BytesToCharcodes (raw ); +_ab {var _ddd _ba .Buffer ;for _ ,_de :=range _bb {_ddc ,_ :=_aea .charcodeToString (CharCode (_de ));_ddd .WriteString (_ddc );};return _ddd .String ();};};return _eefdd (_aea ,raw );};func NewMacExpertEncoder ()SimpleEncoder {return _gdg .NewEncoder ()}; +func NewCMapEncoder (baseName string ,codeToCID ,cidToUnicode *_gda .CMap )CMapEncoder {return CMapEncoder {_gf :baseName ,_bd :codeToCID ,_fda :cidToUnicode };};func init (){RegisterSimpleEncoding (_adaf ,NewSymbolEncoder );RegisterSimpleEncoding (_cacc ,NewZapfDingbatsEncoder ); +};type IdentityEncoder struct{_gcd string ;_aef *_ca .RuneSet ;};func (_egf *differencesEncoding )Charcodes ()[]CharCode {_deb :=_egf ._cfc .Charcodes ();_cgb :=true ;_dcg :=make (map[CharCode ]struct{},len (_deb ));for _ ,_ebfe :=range _deb {_dcg [_ebfe ]=struct{}{}; +};_egf ._bfd .Range (func (_aag byte ,_ce rune )(_abc bool ){_aggc :=CharCode (_aag );if _ ,_beag :=_dcg [_aggc ];!_beag {_deb =append (_deb ,_aggc );_cgb =false ;};return false ;});if !_cgb {_e .Slice (_deb ,func (_dca ,_cfcd int )bool {return _deb [_dca ]< _deb [_cfcd ]}); +};return _deb ;};const _ceb =10;func NewStandardEncoder ()SimpleEncoder {return _fce .NewEncoder ()};func (_egfd UTF16Encoder )CharcodeToRune (code CharCode )(rune ,bool ){return rune (code ),true };func (_afb *IdentityEncoder )ToPdfObject ()_bac .PdfObject {if _afb ._gcd !=""{return _bac .MakeName (_afb ._gcd ); +};return _bac .MakeNull ();};func init (){RegisterSimpleEncoding (_bdef ,NewPdfDocEncoder );RegisterSimpleEncoding (_daaed ,NewStandardEncoder );};const (_bdef ="\u0050\u0064\u0066\u0044\u006f\u0063\u0045\u006e\u0063o\u0064\u0069\u006e\u0067";_daaed ="\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"; +);func (_bea *differencesEncoding )BaseName ()string {return _bea ._cfc .BaseName ()};type TextEncoder interface{String ()string ;Encode (_gdba string )[]byte ;Decode (_cbg []byte )string ;RuneToCharcode (_dbb rune )(CharCode ,bool );CharcodeToRune (_ff CharCode )(rune ,bool ); +ToPdfObject ()_bac .PdfObject ;};type GID uint16 ;type GlyphName string ;func (_ecag simpleDecoder )Reset (){};func init (){RegisterSimpleEncoding (_dadb ,NewWinAnsiEncoder )};func _aca (_ecf string ,_gfd *_ca .ByteRuneMap )SimpleEncoder {_ecdd :=&simpleEncoding {_dcca :_ecf ,_edfd :_gfd ,_edf :_ca .MakeRuneByteMap (_gfd .Length ())}; +_ecdd ._edfd .Range (func (_fef byte ,_bcg rune )(_ccaa bool ){if _abgc ,_gdde :=_ecdd ._edf .Read (_bcg );!_gdde ||_fef < _abgc {_ecdd ._edf .Write (_bcg ,_fef );};return false ;});return _ecdd ;};func _ae (_ad ...charCodeGlyphNameTuple )*charCodeGlyphNameMap {_bg :=map[CharCode ]GlyphName {}; +for _ ,_cf :=range _ad {_bg [_cf .CharCode ]=_cf .GlyphName ;};return &charCodeGlyphNameMap {_cb :_bg };};var (_gdg =_adf (_adad ,_fefe );_cddf =_adf (_gade ,_abcea ););func (_ag *charCodeGlyphNameMap )Read (key CharCode )(GlyphName ,bool ){_ag ._ggd .RLock (); +defer _ag ._ggd .RUnlock ();_cg ,_fb :=_ag ._cb [key ];return _cg ,_fb ;};func RegisterSimpleEncoding (name string ,fnc func ()SimpleEncoder ){if _ ,_eae :=_efcd .Read (name );_eae {panic ("\u0061l\u0072e\u0061\u0064\u0079\u0020\u0072e\u0067\u0069s\u0074\u0065\u0072\u0065\u0064"); +};_efcd .Write (name ,fnc );};func (_dfff *TrueTypeFontEncoder )Encode (str string )[]byte {return _bcbf (_dfff ,str )};func NewMacRomanEncoder ()SimpleEncoder {return _cddf .NewEncoder ()};var _fcd =_ca .NewRuneStringMap (map[rune ]string {'Ꜳ':"\u0041\u0041",'ꜳ':"\u0061\u0061",'Ꜵ':"\u0061\u0061",'ꜵ':"\u0061\u006f",'Ꜷ':"\u0041\u0055",'ꜷ':"\u0061\u0075",'Ꜽ':"\u0041\u0059",'ꜽ':"\u0061\u0079",'\U0001f670':"\u0065\u0074",'ff':"\u0066\u0066",'ffi':"\u0066\u0066\u0069",'ffl':"\u0066\u0066\u006c",'fi':"\u0066\u0069",'fl':"\u0066\u006c",'Œ':"\u004f\u0045",'œ':"\u006f\u0065",'Ꝏ':"\u004f\u004f",'ꝏ':"\u006f\u006f",'st':"\u0073\u0074",'ſt':"\u017f\u0074",'Ꜩ':"\u0054\u005a",'ꜩ':"\u0074\u007a",'ᵫ':"\u0075\u0065",'Ꝡ':"\u0056\u0059",'ꝡ':"\u0076\u0079",0xe000:"\u0066\u0074",0xe001:"\u0066\u006a",0xe002:"\u0066\u0062",0xe003:"\u0066\u0068",0xe004:"\u0066\u006b",0xe005:"\u0074\u0074",0xe006:"\u0074\u0066",0xe007:"\u0066\u0066\u006a",0xe008:"\u0066\u0066\u0062",0xe009:"\u0066\u0066\u0068",0xe00a:"\u0066\u0066\u006b",0xe00b:"\u0054\u005f\u0068"}); +func (_dbdc UTF16Encoder )Decode (raw []byte )string {return _dd .UTF16ToString (raw )};type charCodeGlyphNameMap struct{_cb map[CharCode ]GlyphName ;_ggd _c .RWMutex ;};func (_gee *simpleEncodersMap )Read (s string )(func ()SimpleEncoder ,bool ){_gee ._fag .RLock (); +defer _gee ._fag .RUnlock ();_ded ,_gcg :=_gee ._dba [s ];return _ded ,_gcg ;};func NewPdfDocEncoder ()SimpleEncoder {return _fcda .NewEncoder ()};func (_bdf *IdentityEncoder )String ()string {return _bdf ._gcd };func (_afbe *TrueTypeFontEncoder )Decode (raw []byte )string {return _eefdd (_afbe ,raw )}; +func (_ef *charCodeGlyphNameMap )Delete (key CharCode ){_ef ._ggd .Lock ();defer _ef ._ggd .Unlock ();delete (_ef ._cb ,key );};func (_adcd UTF16Encoder )RuneToCharcode (r rune )(CharCode ,bool ){return CharCode (r ),true };var _cdg =_ca .NewStringsMap (_cdfe [:]); +func (_addg *TrueTypeFontEncoder )GlyphToCharcode (glyph GlyphName )(CharCode ,bool ){if len (glyph )==7&&glyph [0:3]=="\u0075\u006e\u0069"{var _gffg uint16 ;_fae ,_gdbg :=_da .Sscanf (string (glyph ),"\u0075\u006e\u0069%\u0058",&_gffg );if _fae ==1&&_gdbg ==nil {return _addg .RuneToCharcode (rune (_gffg )); +};};if _gcb ,_bdag :=_eeb .Read (string (glyph ));_bdag {return _addg .RuneToCharcode (_gcb );};_ac .Log .Debug ("\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065r\u0072\u006f\u0072\u003a\u0020\u0075\u006e\u0061\u0062\u006ce\u0020\u0074\u006f\u0020\u0066\u0069\u006e\u0064\u0020\u0067\u006c\u0079\u0070\u0068\u002d\u003e\u0063\u0068a\u0072\u0063\u006f\u0064\u0065\u0020e\u006e\u0074r\u0079\u0020(\u0025s\u0029",glyph ); +return 0,false ;};func (_gbd *IdentityEncoder )Decode (raw []byte )string {return _eefdd (_gbd ,raw )};func (_caa CMapEncoder )String ()string {return _caa ._gf };func (_eb *charCodeGlyphNameMap )RangeDelete (f func (_ea CharCode ,_daa GlyphName )(_eg bool ,_aeg bool )){_eb ._ggd .Lock (); +defer _eb ._ggd .Unlock ();for _aed ,_af :=range _eb ._cb {_agc ,_eegg :=f (_aed ,_af );if _agc {delete (_eb ._cb ,_aed );};if _eegg {break ;};};};func NewZapfDingbatsEncoder ()SimpleEncoder {return _dafe .NewEncoder ()};func _gcgc (_adcf rune )string {_effc :="u\u006e\u0070\u0072\u0069\u006e\u0074\u0061\u0062\u006c\u0065"; +if _d .IsPrint (_adcf ){_effc =_da .Sprintf ("\u0025\u0023\u0071",_adcf );};return _da .Sprintf ("\u0025\u002b\u0071\u0020\u0028\u0025\u0073\u0029",_adcf ,_effc );};func (_bc *charCodeGlyphNameMap )Write (k CharCode ,v GlyphName ){_bc ._ggd .Lock ();defer _bc ._ggd .Unlock (); +_bc ._cb [k ]=v ;}; \ No newline at end of file diff --git a/internal/timeutils/timeutils.go b/internal/timeutils/timeutils.go index fa9274b03..7d4867bb6 100644 --- a/internal/timeutils/timeutils.go +++ b/internal/timeutils/timeutils.go @@ -9,12 +9,11 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package timeutils ;import (_d "errors";_g "fmt";_c "regexp";_fa "strconv";_f "time";);func ParsePdfTime (pdfTime string )(_f .Time ,error ){_cc :=_eg .FindAllStringSubmatch (pdfTime ,1);if len (_cc )< 1{if len (pdfTime )> 0&&pdfTime [0]!='D'{pdfTime =_g .Sprintf ("\u0044\u003a\u0025\u0073",pdfTime ); -return ParsePdfTime (pdfTime );};return _f .Time {},_g .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0065\u0020s\u0074\u0072\u0069\u006e\u0067\u0020\u0028\u0025\u0073\u0029",pdfTime );};if len (_cc [0])!=10{return _f .Time {},_d .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0065\u0067\u0065\u0078p\u0020\u0067\u0072\u006f\u0075\u0070 \u006d\u0061\u0074\u0063\u0068\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020!\u003d\u0020\u0031\u0030"); -};_ae ,_ :=_fa .ParseInt (_cc [0][1],10,32);_aee ,_ :=_fa .ParseInt (_cc [0][2],10,32);_df ,_ :=_fa .ParseInt (_cc [0][3],10,32);_bb ,_ :=_fa .ParseInt (_cc [0][4],10,32);_ba ,_ :=_fa .ParseInt (_cc [0][5],10,32);_ec ,_ :=_fa .ParseInt (_cc [0][6],10,32); -var (_baed byte ;_bf int64 ;_db int64 ;);if len (_cc [0][7])> 0{_baed =_cc [0][7][0];}else {_baed ='+';};if len (_cc [0][8])> 0{_bf ,_ =_fa .ParseInt (_cc [0][8],10,32);}else {_bf =0;};if len (_cc [0][9])> 0{_db ,_ =_fa .ParseInt (_cc [0][9],10,32);}else {_db =0; -};_fdg :=int (_bf *60*60+_db *60);switch _baed {case '-':_fdg =-_fdg ;case 'Z':_fdg =0;};_cd :=_g .Sprintf ("\u0055\u0054\u0043\u0025\u0063\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064",_baed ,_bf ,_db );_gce :=_f .FixedZone (_cd ,_fdg );return _f .Date (int (_ae ),_f .Month (_aee ),int (_df ),int (_bb ),int (_ba ),int (_ec ),0,_gce ),nil ; -};var _eg =_c .MustCompile ("\u005c\u0073\u002a\u0044\u005c\u0073\u002a:\u005c\u0073\u002a\u0028\u005c\u0064\u007b\u0034\u007d\u0029\u0028\u005c\u0064\u007b2\u007d)\u0028\u005c\u0064\u007b\u0032\u007d)\u0028\u005c\u0064\u007b\u0032\u007d\u0029(\u005c\u0064\u007b\u0032\u007d\u0029\u0028\u005c\u0064\u007b\u0032\u007d\u0029\u0028\u005b\u002b\u002d\u005a\u005d\u0029\u003f\u0028\u005cd\u007b\u0032\u007d\u0029\u003f\u0027\u003f\u0028\u005c\u0064\u007b\u0032\u007d)\u003f"); -func FormatPdfTime (in _f .Time )string {_cf :=in .Format ("\u002d\u0030\u0037\u003a\u0030\u0030");_cb ,_ :=_fa .ParseInt (_cf [1:3],10,32);_gb ,_ :=_fa .ParseInt (_cf [4:6],10,32);_gg :=int64 (in .Year ());_ac :=int64 (in .Month ());_ab :=int64 (in .Day ()); -_fe :=int64 (in .Hour ());_b :=int64 (in .Minute ());_gbg :=int64 (in .Second ());_dc :=_cf [0];return _g .Sprintf ("\u0044\u003a\u0025\u002e\u0034\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e2\u0064\u0025\u0063\u0025\u002e2\u0064\u0027%\u002e\u0032\u0064\u0027",_gg ,_ac ,_ab ,_fe ,_b ,_gbg ,_dc ,_cb ,_gb ); -}; \ No newline at end of file +package timeutils ;import (_a "errors";_ce "fmt";_c "regexp";_e "strconv";_d "time";);func FormatPdfTime (in _d .Time )string {_ae :=in .Format ("\u002d\u0030\u0037\u003a\u0030\u0030");_de ,_ :=_e .ParseInt (_ae [1:3],10,32);_eb ,_ :=_e .ParseInt (_ae [4:6],10,32); +_aeb :=int64 (in .Year ());_cc :=int64 (in .Month ());_fg :=int64 (in .Day ());_eee :=int64 (in .Hour ());_fgg :=int64 (in .Minute ());_fga :=int64 (in .Second ());_b :=_ae [0];return _ce .Sprintf ("\u0044\u003a\u0025\u002e\u0034\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e2\u0064\u0025\u0063\u0025\u002e2\u0064\u0027%\u002e\u0032\u0064\u0027",_aeb ,_cc ,_fg ,_eee ,_fgg ,_fga ,_b ,_de ,_eb ); +};func ParsePdfTime (pdfTime string )(_d .Time ,error ){_dc :=_bc .FindAllStringSubmatch (pdfTime ,1);if len (_dc )< 1{if len (pdfTime )> 0&&pdfTime [0]!='D'{pdfTime =_ce .Sprintf ("\u0044\u003a\u0025\u0073",pdfTime );return ParsePdfTime (pdfTime );};return _d .Time {},_ce .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0064\u0061\u0074\u0065\u0020s\u0074\u0072\u0069\u006e\u0067\u0020\u0028\u0025\u0073\u0029",pdfTime ); +};if len (_dc [0])!=10{return _d .Time {},_a .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0065\u0067\u0065\u0078p\u0020\u0067\u0072\u006f\u0075\u0070 \u006d\u0061\u0074\u0063\u0068\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020!\u003d\u0020\u0031\u0030"); +};_bg ,_ :=_e .ParseInt (_dc [0][1],10,32);_g ,_ :=_e .ParseInt (_dc [0][2],10,32);_ccb ,_ :=_e .ParseInt (_dc [0][3],10,32);_fe ,_ :=_e .ParseInt (_dc [0][4],10,32);_dbb ,_ :=_e .ParseInt (_dc [0][5],10,32);_bb ,_ :=_e .ParseInt (_dc [0][6],10,32);var (_aa byte ; +_fee int64 ;_gg int64 ;);if len (_dc [0][7])> 0{_aa =_dc [0][7][0];}else {_aa ='+';};if len (_dc [0][8])> 0{_fee ,_ =_e .ParseInt (_dc [0][8],10,32);}else {_fee =0;};if len (_dc [0][9])> 0{_gg ,_ =_e .ParseInt (_dc [0][9],10,32);}else {_gg =0;};_eg :=int (_fee *60*60+_gg *60); +switch _aa {case '-':_eg =-_eg ;case 'Z':_eg =0;};_gc :=_ce .Sprintf ("\u0055\u0054\u0043\u0025\u0063\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064",_aa ,_fee ,_gg );_eeb :=_d .FixedZone (_gc ,_eg );return _d .Date (int (_bg ),_d .Month (_g ),int (_ccb ),int (_fe ),int (_dbb ),int (_bb ),0,_eeb ),nil ; +};var _bc =_c .MustCompile ("\u005c\u0073\u002a\u0044\u005c\u0073\u002a:\u005c\u0073\u002a\u0028\u005c\u0064\u007b\u0034\u007d\u0029\u0028\u005c\u0064\u007b2\u007d)\u0028\u005c\u0064\u007b\u0032\u007d)\u0028\u005c\u0064\u007b\u0032\u007d\u0029(\u005c\u0064\u007b\u0032\u007d\u0029\u0028\u005c\u0064\u007b\u0032\u007d\u0029\u0028\u005b\u002b\u002d\u005a\u005d\u0029\u003f\u0028\u005cd\u007b\u0032\u007d\u0029\u003f\u0027\u003f\u0028\u005c\u0064\u007b\u0032\u007d)\u003f"); diff --git a/internal/transform/transform.go b/internal/transform/transform.go index 45ee46be5..43a79a782 100644 --- a/internal/transform/transform.go +++ b/internal/transform/transform.go @@ -9,21 +9,21 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package transform ;import (_g "fmt";_ec "github.com/unidoc/unipdf/v3/common";_c "math";);const _cag =1e-6;func (_ac Matrix )Mult (b Matrix )Matrix {_ac .Concat (b );return _ac };func (_db Matrix )Angle ()float64 {_df :=_c .Atan2 (-_db [1],_db [0]);if _df < 0.0{_df +=2*_c .Pi ; -};return _df /_c .Pi *180.0;};func NewMatrix (a ,b ,c ,d ,tx ,ty float64 )Matrix {_gf :=Matrix {a ,b ,0,c ,d ,0,tx ,ty ,1};_gf .clampRange ();return _gf ;};func (_gg Matrix )Rotate (theta float64 )Matrix {return _gg .Mult (RotationMatrix (theta ))};func RotationMatrix (angle float64 )Matrix {_ba :=_c .Cos (angle ); -_a :=_c .Sin (angle );return NewMatrix (_ba ,_a ,-_a ,_ba ,0,0);};func ScaleMatrix (x ,y float64 )Matrix {return NewMatrix (x ,0,0,y ,0,0)};const _gef =1e9;func (_ag *Point )transformByMatrix (_fb Matrix ){_ag .X ,_ag .Y =_fb .Transform (_ag .X ,_ag .Y )}; -func (_ecc Matrix )Transform (x ,y float64 )(float64 ,float64 ){_ed :=x *_ecc [0]+y *_ecc [3]+_ecc [6];_ggd :=x *_ecc [1]+y *_ecc [4]+_ecc [7];return _ed ,_ggd ;};const _dfa =1.0e-6;type Point struct{X float64 ;Y float64 ;};func (_ebf *Matrix )Set (a ,b ,c ,d ,tx ,ty float64 ){_ebf [0],_ebf [1]=a ,b ; -_ebf [3],_ebf [4]=c ,d ;_ebf [6],_ebf [7]=tx ,ty ;_ebf .clampRange ();};func (_eb Matrix )Scale (xScale ,yScale float64 )Matrix {return _eb .Mult (ScaleMatrix (xScale ,yScale ))};func (_cgg Matrix )Singular ()bool {return _c .Abs (_cgg [0]*_cgg [4]-_cgg [1]*_cgg [3])< _gfb }; -func NewPoint (x ,y float64 )Point {return Point {X :x ,Y :y }};func (_eec *Point )Set (x ,y float64 ){_eec .X ,_eec .Y =x ,y };func TranslationMatrix (tx ,ty float64 )Matrix {return NewMatrix (1,0,0,1,tx ,ty )};func (_gb Matrix )Translation ()(float64 ,float64 ){return _gb [6],_gb [7]}; -func (_bc Point )Distance (b Point )float64 {return _c .Hypot (_bc .X -b .X ,_bc .Y -b .Y )};func (_fgd Point )Displace (delta Point )Point {return Point {_fgd .X +delta .X ,_fgd .Y +delta .Y }};func NewMatrixFromTransforms (xScale ,yScale ,theta ,tx ,ty float64 )Matrix {return IdentityMatrix ().Scale (xScale ,yScale ).Rotate (theta ).Translate (tx ,ty ); -};func (_fa Matrix )Translate (tx ,ty float64 )Matrix {return _fa .Mult (TranslationMatrix (tx ,ty ))};func (_fac Matrix )ScalingFactorX ()float64 {return _c .Hypot (_fac [0],_fac [1])};func (_bg Matrix )String ()string {_cg ,_bgc ,_fe ,_bb ,_cc ,_ce :=_bg [0],_bg [1],_bg [3],_bg [4],_bg [6],_bg [7]; -return _g .Sprintf ("\u005b\u00257\u002e\u0034\u0066\u002c%\u0037\u002e4\u0066\u002c\u0025\u0037\u002e\u0034\u0066\u002c%\u0037\u002e\u0034\u0066\u003a\u0025\u0037\u002e\u0034\u0066\u002c\u00257\u002e\u0034\u0066\u005d",_cg ,_bgc ,_fe ,_bb ,_cc ,_ce ); -};func (_ae *Matrix )Concat (b Matrix ){*_ae =Matrix {b [0]*_ae [0]+b [1]*_ae [3],b [0]*_ae [1]+b [1]*_ae [4],0,b [3]*_ae [0]+b [4]*_ae [3],b [3]*_ae [1]+b [4]*_ae [4],0,b [6]*_ae [0]+b [7]*_ae [3]+_ae [6],b [6]*_ae [1]+b [7]*_ae [4]+_ae [7],1};_ae .clampRange (); -};func (_eed Point )Interpolate (b Point ,t float64 )Point {return Point {X :(1-t )*_eed .X +t *b .X ,Y :(1-t )*_eed .Y +t *b .Y };};func ShearMatrix (x ,y float64 )Matrix {return NewMatrix (1,y ,x ,1,0,0)};func (_aef Point )String ()string {return _g .Sprintf ("(\u0025\u002e\u0032\u0066\u002c\u0025\u002e\u0032\u0066\u0029",_aef .X ,_aef .Y ); -};func (_fc *Point )Transform (a ,b ,c ,d ,tx ,ty float64 ){_caf :=NewMatrix (a ,b ,c ,d ,tx ,ty );_fc .transformByMatrix (_caf );};func (_ff Matrix )ScalingFactorY ()float64 {return _c .Hypot (_ff [3],_ff [4])};func (_cce Matrix )Unrealistic ()bool {_cec ,_ea ,_eee ,_eff :=_c .Abs (_cce [0]),_c .Abs (_cce [1]),_c .Abs (_cce [3]),_c .Abs (_cce [4]); -_ga :=_cec > _cag &&_eff > _cag ;_de :=_ea > _cag &&_eee > _cag ;return !(_ga ||_de );};func (_be *Matrix )Shear (x ,y float64 ){_be .Concat (ShearMatrix (x ,y ))};func (_ebg *Matrix )Clone ()Matrix {return NewMatrix (_ebg [0],_ebg [1],_ebg [3],_ebg [4],_ebg [6],_ebg [7]); -};type Matrix [9]float64 ;func (_cb *Matrix )clampRange (){for _fg ,_cd :=range _cb {if _cd > _gef {_ec .Log .Debug ("\u0043L\u0041M\u0050\u003a\u0020\u0025\u0067\u0020\u002d\u003e\u0020\u0025\u0067",_cd ,_gef );_cb [_fg ]=_gef ;}else if _cd < -_gef {_ec .Log .Debug ("\u0043L\u0041M\u0050\u003a\u0020\u0025\u0067\u0020\u002d\u003e\u0020\u0025\u0067",_cd ,-_gef ); -_cb [_fg ]=-_gef ;};};};func (_dbg Point )Rotate (theta float64 )Point {_dbf :=_c .Hypot (_dbg .X ,_dbg .Y );_gce :=_c .Atan2 (_dbg .Y ,_dbg .X );_bd ,_dba :=_c .Sincos (_gce +theta /180.0*_c .Pi );return Point {_dbf *_dba ,_dbf *_bd };};func IdentityMatrix ()Matrix {return NewMatrix (1,0,0,1,0,0)}; -const _gfb =1e-10;func (_gga Matrix )Inverse ()(Matrix ,bool ){_ebfd ,_bga :=_gga [0],_gga [1];_ca ,_cf :=_gga [3],_gga [4];_eg ,_ef :=_gga [6],_gga [7];_ccd :=_ebfd *_cf -_bga *_ca ;if _c .Abs (_ccd )< _dfa {return Matrix {},false ;};_bbc ,_gc :=_cf /_ccd ,-_bga /_ccd ; -_ee ,_ge :=-_ca /_ccd ,_ebfd /_ccd ;_da :=-(_bbc *_eg +_ee *_ef );_ecg :=-(_gc *_eg +_ge *_ef );return NewMatrix (_bbc ,_gc ,_ee ,_ge ,_da ,_ecg ),true ;};func (_d Matrix )Identity ()bool {return _d [0]==1&&_d [1]==0&&_d [2]==0&&_d [3]==0&&_d [4]==1&&_d [5]==0&&_d [6]==0&&_d [7]==0&&_d [8]==1; -};func (_f Matrix )Round (precision float64 )Matrix {for _b :=range _f {_f [_b ]=_c .Round (_f [_b ]/precision )*precision ;};return _f ;}; \ No newline at end of file +package transform ;import (_a "fmt";_cd "github.com/unidoc/unipdf/v3/common";_f "math";);const _db =1e-10;func (_agb *Matrix )Set (a ,b ,c ,d ,tx ,ty float64 ){_agb [0],_agb [1]=a ,b ;_agb [3],_agb [4]=c ,d ;_agb [6],_agb [7]=tx ,ty ;_agb .clampRange (); +};const _ecf =1e9;func (_fea Matrix )Scale (xScale ,yScale float64 )Matrix {return _fea .Mult (ScaleMatrix (xScale ,yScale ));};func (_gf *Matrix )clampRange (){for _de ,_fa :=range _gf {if _fa > _ecf {_cd .Log .Debug ("\u0043L\u0041M\u0050\u003a\u0020\u0025\u0067\u0020\u002d\u003e\u0020\u0025\u0067",_fa ,_ecf ); +_gf [_de ]=_ecf ;}else if _fa < -_ecf {_cd .Log .Debug ("\u0043L\u0041M\u0050\u003a\u0020\u0025\u0067\u0020\u002d\u003e\u0020\u0025\u0067",_fa ,-_ecf );_gf [_de ]=-_ecf ;};};};type Matrix [9]float64 ;func (_dcfb *Point )Set (x ,y float64 ){_dcfb .X ,_dcfb .Y =x ,y }; +func (_e Matrix )Round (precision float64 )Matrix {for _ag :=range _e {_e [_ag ]=_f .Round (_e [_ag ]/precision )*precision ;};return _e ;};func (_cc Matrix )String ()string {_ad ,_b ,_bf ,_fe ,_fee ,_eb :=_cc [0],_cc [1],_cc [3],_cc [4],_cc [6],_cc [7]; +return _a .Sprintf ("\u005b\u00257\u002e\u0034\u0066\u002c%\u0037\u002e4\u0066\u002c\u0025\u0037\u002e\u0034\u0066\u002c%\u0037\u002e\u0034\u0066\u003a\u0025\u0037\u002e\u0034\u0066\u002c\u00257\u002e\u0034\u0066\u005d",_ad ,_b ,_bf ,_fe ,_fee ,_eb );}; +func (_bd *Point )Transform (a ,b ,c ,d ,tx ,ty float64 ){_eba :=NewMatrix (a ,b ,c ,d ,tx ,ty );_bd .transformByMatrix (_eba );};func (_dc Matrix )ScalingFactorY ()float64 {return _f .Hypot (_dc [3],_dc [4])};func (_cef Point )String ()string {return _a .Sprintf ("(\u0025\u002e\u0032\u0066\u002c\u0025\u002e\u0032\u0066\u0029",_cef .X ,_cef .Y ); +};func (_ef Matrix )Identity ()bool {return _ef [0]==1&&_ef [1]==0&&_ef [2]==0&&_ef [3]==0&&_ef [4]==1&&_ef [5]==0&&_ef [6]==0&&_ef [7]==0&&_ef [8]==1;};func (_fb Matrix )Mult (b Matrix )Matrix {_fb .Concat (b );return _fb };func (_dba Matrix )Unrealistic ()bool {_agd ,_bga ,_dee ,_gag :=_f .Abs (_dba [0]),_f .Abs (_dba [1]),_f .Abs (_dba [3]),_f .Abs (_dba [4]); +_dg :=_agd > _bgf &&_gag > _bgf ;_be :=_bga > _bgf &&_dee > _bgf ;return !(_dg ||_be );};func (_efb Matrix )Translation ()(float64 ,float64 ){return _efb [6],_efb [7]};func ScaleMatrix (x ,y float64 )Matrix {return NewMatrix (x ,0,0,y ,0,0)};func (_ebg Matrix )Singular ()bool {return _f .Abs (_ebg [0]*_ebg [4]-_ebg [1]*_ebg [3])< _db }; +func (_abf *Matrix )Clone ()Matrix {return NewMatrix (_abf [0],_abf [1],_abf [3],_abf [4],_abf [6],_abf [7]);};const _bgf =1e-6;func (_ab Matrix )Rotate (theta float64 )Matrix {return _ab .Mult (RotationMatrix (theta ))};func (_bg Matrix )ScalingFactorX ()float64 {return _f .Hypot (_bg [0],_bg [1])}; +func (_ge Point )Rotate (theta float64 )Point {_efc :=_f .Hypot (_ge .X ,_ge .Y );_da :=_f .Atan2 (_ge .Y ,_ge .X );_dec ,_cde :=_f .Sincos (_da +theta /180.0*_f .Pi );return Point {_efc *_cde ,_efc *_dec };};func (_ee Point )Displace (delta Point )Point {return Point {_ee .X +delta .X ,_ee .Y +delta .Y }}; +func TranslationMatrix (tx ,ty float64 )Matrix {return NewMatrix (1,0,0,1,tx ,ty )};func (_adf *Point )transformByMatrix (_bdg Matrix ){_adf .X ,_adf .Y =_bdg .Transform (_adf .X ,_adf .Y )};func ShearMatrix (x ,y float64 )Matrix {return NewMatrix (1,y ,x ,1,0,0)}; +func (_ea *Matrix )Shear (x ,y float64 ){_ea .Concat (ShearMatrix (x ,y ))};func NewMatrix (a ,b ,c ,d ,tx ,ty float64 )Matrix {_g :=Matrix {a ,b ,0,c ,d ,0,tx ,ty ,1};_g .clampRange ();return _g ;};func (_ga Matrix )Transform (x ,y float64 )(float64 ,float64 ){_df :=x *_ga [0]+y *_ga [3]+_ga [6]; +_ada :=x *_ga [1]+y *_ga [4]+_ga [7];return _df ,_ada ;};func (_aegd Point )Distance (b Point )float64 {return _f .Hypot (_aegd .X -b .X ,_aegd .Y -b .Y )};func NewMatrixFromTransforms (xScale ,yScale ,theta ,tx ,ty float64 )Matrix {return IdentityMatrix ().Scale (xScale ,yScale ).Rotate (theta ).Translate (tx ,ty ); +};func (_dcf Matrix )Inverse ()(Matrix ,bool ){_ec ,_gc :=_dcf [0],_dcf [1];_dd ,_dbc :=_dcf [3],_dcf [4];_fba ,_ae :=_dcf [6],_dcf [7];_bge :=_ec *_dbc -_gc *_dd ;if _f .Abs (_bge )< _agc {return Matrix {},false ;};_bff ,_ff :=_dbc /_bge ,-_gc /_bge ; +_ecc ,_cg :=-_dd /_bge ,_ec /_bge ;_aeg :=-(_bff *_fba +_ecc *_ae );_aa :=-(_ff *_fba +_cg *_ae );return NewMatrix (_bff ,_ff ,_ecc ,_cg ,_aeg ,_aa ),true ;};func RotationMatrix (angle float64 )Matrix {_d :=_f .Cos (angle );_fc :=_f .Sin (angle );return NewMatrix (_d ,_fc ,-_fc ,_d ,0,0); +};func IdentityMatrix ()Matrix {return NewMatrix (1,0,0,1,0,0)};type Point struct{X float64 ;Y float64 ;};func (_ce *Matrix )Concat (b Matrix ){*_ce =Matrix {b [0]*_ce [0]+b [1]*_ce [3],b [0]*_ce [1]+b [1]*_ce [4],0,b [3]*_ce [0]+b [4]*_ce [3],b [3]*_ce [1]+b [4]*_ce [4],0,b [6]*_ce [0]+b [7]*_ce [3]+_ce [6],b [6]*_ce [1]+b [7]*_ce [4]+_ce [7],1}; +_ce .clampRange ();};func (_eg Matrix )Angle ()float64 {_bc :=_f .Atan2 (-_eg [1],_eg [0]);if _bc < 0.0{_bc +=2*_f .Pi ;};return _bc /_f .Pi *180.0;};func NewPoint (x ,y float64 )Point {return Point {X :x ,Y :y }};func (_ffc Point )Interpolate (b Point ,t float64 )Point {return Point {X :(1-t )*_ffc .X +t *b .X ,Y :(1-t )*_ffc .Y +t *b .Y }; +};func (_bfa Matrix )Translate (tx ,ty float64 )Matrix {return _bfa .Mult (TranslationMatrix (tx ,ty ))};const _agc =1.0e-6; \ No newline at end of file diff --git a/internal/uuid/uuid.go b/internal/uuid/uuid.go index 8fd2f87e4..11c2194d8 100644 --- a/internal/uuid/uuid.go +++ b/internal/uuid/uuid.go @@ -9,6 +9,6 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package uuid ;import (_gg "crypto/rand";_a "encoding/hex";_e "io";);var _ab =_gg .Reader ;func _eb (_ea []byte ,_fb UUID ){_a .Encode (_ea ,_fb [:4]);_ea [8]='-';_a .Encode (_ea [9:13],_fb [4:6]);_ea [13]='-';_a .Encode (_ea [14:18],_fb [6:8]);_ea [18]='-'; -_a .Encode (_ea [19:23],_fb [8:10]);_ea [23]='-';_a .Encode (_ea [24:],_fb [10:]);};func (_d UUID )String ()string {var _cd [36]byte ;_eb (_cd [:],_d );return string (_cd [:])};func NewUUID ()(UUID ,error ){var uuid UUID ;_ ,_ce :=_e .ReadFull (_ab ,uuid [:]); -if _ce !=nil {return _cdc ,_ce ;};uuid [6]=(uuid [6]&0x0f)|0x40;uuid [8]=(uuid [8]&0x3f)|0x80;return uuid ,nil ;};var _cdc UUID ;var Nil =_cdc ;type UUID [16]byte ;func MustUUID ()UUID {uuid ,_cb :=NewUUID ();if _cb !=nil {panic (_cb );};return uuid ;}; +package uuid ;import (_c "crypto/rand";_g "encoding/hex";_e "io";);var _eg =_c .Reader ;func _fg (_ag []byte ,_ab UUID ){_g .Encode (_ag ,_ab [:4]);_ag [8]='-';_g .Encode (_ag [9:13],_ab [4:6]);_ag [13]='-';_g .Encode (_ag [14:18],_ab [6:8]);_ag [18]='-'; +_g .Encode (_ag [19:23],_ab [8:10]);_ag [23]='-';_g .Encode (_ag [24:],_ab [10:]);};var Nil =_da ;func (_cc UUID )String ()string {var _ce [36]byte ;_fg (_ce [:],_cc );return string (_ce [:])};type UUID [16]byte ;var _da UUID ;func MustUUID ()UUID {uuid ,_de :=NewUUID (); +if _de !=nil {panic (_de );};return uuid ;};func NewUUID ()(UUID ,error ){var uuid UUID ;_ ,_eb :=_e .ReadFull (_eg ,uuid [:]);if _eb !=nil {return _da ,_eb ;};uuid [6]=(uuid [6]&0x0f)|0x40;uuid [8]=(uuid [8]&0x3f)|0x80;return uuid ,nil ;}; \ No newline at end of file diff --git a/model/internal/colorprofile/colorprofile.go b/model/internal/colorprofile/colorprofile.go index c97e44b2d..548842a45 100644 --- a/model/internal/colorprofile/colorprofile.go +++ b/model/internal/colorprofile/colorprofile.go @@ -9,50 +9,51 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package colorprofile ;import (_ca "bytes";_ac "compress/gzip";_e "encoding/hex";_ff "errors";_fb "fmt";_ae "github.com/unidoc/unipdf/v3/model";_caa "io";_cb "io/ioutil";_fc "os";_b "path/filepath";_f "strconv";_a "strings";_fa "time";);func MustAsset (name string )[]byte {_bdg ,_gaf :=Asset (name ); -if _gaf !=nil {panic ("\u0061\u0073\u0073\u0065\u0074\u003a\u0020\u0041\u0073\u0073\u0065\u0074\u0028"+name +"\u0029\u003a\u0020"+_gaf .Error ());};return _bdg ;};func AssetNames ()[]string {_cbf :=make ([]string ,0,len (_dad ));for _bbf :=range _dad {_cbf =append (_cbf ,_bbf ); -};return _cbf ;};func (_fbe bindataFileInfo )Name ()string {return _fbe ._gf };func (_cagf bindataFileInfo )ModTime ()_fa .Time {return _cagf ._ge };func (_bb bindataFileInfo )Sys ()interface{}{return nil };const (DeviceClassUndefined DeviceClass =iota ; -DeviceClassSCNR ;DeviceClassMNTR ;DeviceClassPRTR ;DeviceClassLINK ;DeviceClassSPAC ;DeviceClassABST ;DeviceClassNMCL ;);func _aef ()([]byte ,error ){return _ec (_gg ,"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063"); -};var _cac =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x67\x54\x53\x69\xbb\x7d\xce\x39\xe9\x85\x00\x09\x08\x48\x09\xbd\x19\x04\xa4\x04\x10\x29\xa1\x45\x54\x10\x91\x66\x23\x24\x21\x84\x12\x30\x24\x80\xbd\x21\x2a\x30\xa2\x88\x88\x80\x05\x64\x54\xc4\x01\x47\x47\x40\xc6\x8a\x28\xb6\x41\xb1\x77\x83\x0c\x02\xca\x38\x38\x8a\xa8\xa8\xdc\x15\xf8\x21\x77\xdd\x7b\xd7\x5d\xdf\x5a\xdf\xb7\x7f\xbc\x67\x9f\xbd\x9e\xe7\xac\x7d\xf6\xfb\x67\x03\x50\x6f\x01\x00\xa0\x00\x90\x26\x53\xc8\x23\x82\xfd\xd9\x31\xb1\x71\x6c\xe2\x0b\x40\x81\x01\x63\x10\x08\x33\x33\xe0\x7f\x02\xf9\x41\x3f\xde\x1f\x7f\xbb\xc3\x51\x9f\xde\x1a\xc7\x9f\xd7\xef\xd8\x75\xb6\x42\x62\xd5\x51\x48\xe1\x75\xfc\x2f\xbb\x13\xa1\x29\x12\x67\x0a\x01\x90\x00\x00\x10\x26\xc4\xc4\xc6\x01\x20\x87\x01\x80\x95\x10\x19\xc1\x03\x40\x4e\x03\x90\x68\x92\x09\x5c\x3e\x81\x8b\xd2\x44\x22\x00\xf2\x15\x00\xd8\x2c\x19\xdb\xa5\x84\xab\x77\x53\x95\x69\x52\x00\x8a\x48\xcd\xd3\xc4\x82\x4c\x00\x4a\x0e\x00\x58\x24\xa4\x64\x28\x00\x28\x95\x6a\x5d\x3e\x3e\x7f\x4c\xcd\x15\x62\x61\x12\x00\xa5\x0d\x00\x68\x59\x4a\xb1\x08\x80\xa2\xce\x65\x53\xb6\x42\x3d\x4f\x8d\x51\xcf\x08\x33\xe4\x6a\x9e\x0a\x00\xee\xc2\x24\x81\x08\x80\x5a\x03\x00\x53\xc6\xfd\x8f\x81\x9c\x19\x11\xec\xef\xec\xe8\xe4\xf2\xff\xfc\xf3\xbf\x0c\xf5\x9d\x8c\x33\x8b\xfd\x00\x8c\x5c\x80\xc6\x9b\x42\xa5\x3c\x6b\x5c\xc3\xa9\x0f\x3c\x50\x80\x01\x2c\xd0\x07\x63\x30\x07\x1b\xe0\x80\x33\xb8\x83\x17\xf8\x42\x20\xcc\x84\x30\x88\x84\x58\x58\x0c\x42\x48\x82\x34\x90\x43\x36\xac\x84\x75\x90\x07\x05\xb0\x0d\x76\x42\x39\xec\x83\x1a\xa8\x85\x7a\x38\x0e\x4d\x70\x1a\x2e\xc0\x65\xb8\x0e\xb7\xe0\x1e\x3c\x01\x15\xf4\xc0\x1b\x18\x84\x8f\x30\x82\x20\x08\x11\xa1\x23\x4c\x44\x1f\x31\x41\x2c\x11\x7b\xc4\x19\xe1\x22\x33\x90\x40\x64\x16\x12\x81\xc4\x22\xf1\x88\x04\x91\x21\x4a\x64\x25\xb2\x01\x29\x40\x8a\x91\x72\xa4\x0a\xa9\x45\x7e\x45\x4e\x21\x17\x90\xab\x48\x27\xf2\x08\xe9\x42\xfa\x91\x7f\x90\x2f\x28\x86\xd2\x50\x16\x6a\x84\x5a\xa1\x53\x51\x2e\xea\x87\x86\xa2\x91\xe8\x22\x54\x82\x2e\x45\x97\xa3\xb9\xe8\x56\xb4\x0c\xad\x46\x8f\xa2\x8d\xe8\x05\xf4\x3a\x7a\x0f\x55\xa1\x6f\xd0\x21\x0c\x30\x2a\xa6\x8b\x99\x62\x1c\x8c\x8b\xf1\xb0\x30\x2c\x0e\x4b\xc4\xe4\xd8\x6a\x2c\x1f\x2b\xc5\xaa\xb1\x7a\xac\x05\x6b\xc7\xee\x60\x2a\x6c\x00\xfb\x8c\x23\xe0\x98\x38\x36\x8e\x83\xf3\xc2\x85\xe0\xe6\xe3\x84\xb8\xa5\xb8\xd5\xb8\x42\x5c\x39\xee\x30\xae\x11\xd7\x86\xbb\x83\xeb\xc2\x0d\xe2\xbe\xe3\xe9\x78\x43\xbc\x3d\xde\x13\xcf\xc7\xc7\xe0\x25\xf8\x6c\x7c\x1e\xbe\x14\x7f\x10\x7f\x12\x7f\x09\x7f\x0f\xdf\x83\xff\x48\x20\x10\x74\x09\xd6\x04\x77\x42\x08\x21\x96\x90\x4c\x58\x41\x28\x24\xec\x21\x34\x10\xce\x13\x3a\x09\xdd\x84\x21\x22\x91\xa8\x4f\xb4\x27\x7a\x13\xc3\x88\x02\xa2\x82\x98\x47\xdc\x4d\x3c\x4a\x3c\x47\xbc\x4d\xec\x21\x7e\x22\x51\x49\x26\x24\x67\x52\x10\x29\x8e\x24\x23\xad\x27\x95\x92\x8e\x90\xce\x92\x6e\x93\x7a\x49\x23\x64\x4d\xb2\x25\xd9\x93\x1c\x46\x16\x91\x97\x91\x8b\xc8\x35\xe4\x16\xf2\x4d\x72\x0f\x79\x84\xa2\x45\xb1\xa6\x78\x53\x22\x29\xc9\x94\x75\x94\x32\x4a\x3d\xe5\x12\xe5\x29\xe5\x3d\x95\x4a\x35\xa3\x7a\x50\xe7\x52\xa5\xd4\xb5\xd4\x32\xea\x31\xea\x15\x6a\x17\xf5\x33\x4d\x9b\x66\x47\xe3\xd1\x16\xd2\x94\xb4\xad\xb4\x43\xb4\xf3\xb4\x47\xb4\xf7\x74\x3a\xdd\x8a\xee\x4b\x8f\xa3\x2b\xe8\x5b\xe9\xb5\xf4\x8b\xf4\xe7\xf4\x4f\x1a\x4c\x0d\x07\x0d\xbe\x86\x48\x63\x8d\x46\x85\x46\xa3\xc6\x6d\x8d\xb7\x0c\x32\xc3\x92\xe1\xc7\x58\xcc\x58\xce\x28\x65\x9c\x60\xdc\x64\x0c\x68\x92\x35\xad\x34\x79\x9a\x02\xcd\xd5\x9a\x15\x9a\xa7\x34\x1f\x68\x0e\x69\x31\xb5\x9c\xb4\xc2\xb4\xd2\xb4\x0a\xb5\x8e\x68\x5d\xd5\xea\xd3\x26\x6a\x5b\x69\x07\x6a\x8b\xb4\x73\xb5\x0f\x68\x5f\xd4\xee\x66\x62\x4c\x73\x26\x8f\x29\x64\x6e\x60\xd6\x30\x2f\x31\x7b\x58\x04\x96\x35\x8b\xcf\x4a\x66\x15\xb0\x7e\x61\x75\xb0\x06\x75\xb4\x75\x5c\x74\xa2\x74\x72\x74\x2a\x74\xce\xe8\xa8\x74\x31\x5d\x2b\x5d\xbe\x6e\xaa\x6e\x91\xee\x71\xdd\xfb\xba\x5f\x26\x19\x4d\xf2\x9b\x24\x9e\xb4\x65\x52\xfd\xa4\xdb\x93\x86\xf5\x26\xeb\xf9\xea\x89\xf5\xf2\xf5\x1a\xf4\xee\xe9\x7d\xd1\x67\xeb\x07\xea\xa7\xe8\x6f\xd7\x6f\xd2\x7f\x66\x80\x33\xb0\x33\x98\x6b\x90\x6d\xb0\xd7\xe0\x92\xc1\xc0\x64\xd6\x64\xaf\xc9\xc2\xc9\xf9\x93\x8f\x4f\x7e\x6c\x88\x1a\xda\x19\x46\x18\xae\x30\x3c\x60\x78\xc3\x70\xc8\xc8\xd8\x28\xd8\x28\xc3\x68\xb7\xd1\x45\xa3\x01\x63\x5d\x63\x5f\xe3\x64\xe3\x12\xe3\xb3\xc6\xfd\x26\x4c\x93\x19\x26\x52\x93\x12\x93\x73\x26\xaf\xd9\x3a\x6c\x3f\x76\x2a\xbb\x8c\xdd\xc6\x1e\x34\x35\x34\x0d\x31\x55\x9a\x56\x99\x76\x98\x8e\x98\x59\x9b\xcd\x37\x5b\x6f\xd6\x60\xf6\xcc\x9c\x62\xce\x35\x4f\x34\x2f\x31\x6f\x35\x1f\xb4\x30\xb1\x98\x6d\xb1\xd2\xa2\xce\xe2\xb1\x25\xd9\x92\x6b\x99\x64\xb9\xcb\xb2\xdd\x72\xd8\xca\xda\x2a\xda\x6a\x93\x55\x93\x55\x9f\xb5\x9e\x35\xdf\x7a\xb9\x75\x9d\xf5\x53\x1b\xba\x8d\x8f\xcd\x52\x9b\x6a\x9b\xbb\xb6\x04\x5b\xae\x6d\x8a\xed\x1e\xdb\x5b\x76\xa8\x9d\xab\x5d\x92\x5d\x85\xdd\x4d\x7b\xd4\xde\xcd\x5e\x6a\xbf\xc7\xbe\x73\x0a\x7e\x8a\xc7\x14\xd9\x94\xea\x29\x0f\x38\x34\x8e\x1f\x27\x8b\x53\xc7\xe9\x72\xd0\x75\x98\xe5\xb0\xde\xa1\xc9\xe1\xed\x54\x8b\xa9\x71\x53\xb7\x4f\x6d\x9f\xfa\xdd\xd1\xd5\x31\xd5\xb1\xc6\xf1\x89\x93\xb6\xd3\x4c\xa7\xf5\x4e\x2d\x4e\xff\x38\xdb\x39\x0b\x9d\x2b\x9c\xef\x4e\xa3\x4f\x0b\x9a\xb6\x66\x5a\xf3\xb4\x77\x2e\xf6\x2e\x62\x97\xbd\x2e\x0f\x5d\x99\xae\xb3\x5d\x37\xb9\xb6\xba\x7e\x73\x73\x77\x93\xbb\xd5\xbb\xf5\xbb\x5b\xb8\xc7\xbb\x57\xba\x3f\xe0\xb2\xb8\xe1\xdc\x42\xee\x15\x0f\xbc\x87\xbf\xc7\x1a\x8f\xd3\x1e\x9f\x3d\xdd\x3c\x15\x9e\xc7\x3d\xff\xf6\xe2\x78\xa5\x78\x1d\xf1\xea\x9b\x6e\x3d\x5d\x3c\xbd\x66\x7a\xb7\xb7\x99\xb7\xc0\xbb\xca\x5b\x35\x83\x3d\x23\x7e\xc6\xfe\x19\x2a\x1f\x53\x1f\x81\x4f\xb5\xcf\x4b\x5f\x73\x5f\x91\xef\x41\xdf\x5e\x3f\x5b\xbf\x64\xbf\xa3\x7e\x6f\xfd\x1d\xfd\xe5\xfe\x27\xfd\x87\x79\x9e\xbc\x55\xbc\xf3\x01\x58\x40\x70\x40\x7e\x40\x47\xa0\x76\xe0\xfc\xc0\xf2\xc0\xe7\x41\x66\x41\x92\xa0\xba\xa0\xc1\x60\xd7\xe0\x15\xc1\xe7\x43\xf0\x21\xa1\x21\xdb\x43\x1e\xf0\x8d\xf8\x42\x7e\x2d\x7f\x70\xa6\xfb\xcc\x55\x33\xdb\x42\x69\xa1\xf3\x42\xcb\x43\x5f\xce\xb2\x9b\x25\x9f\xd5\x32\x1b\x9d\x3d\x73\xf6\x8e\xd9\x4f\xe7\x58\xce\x91\xcd\x69\x0a\x83\x30\x7e\xd8\x8e\xb0\x67\xe1\xd6\xe1\x4b\xc3\x7f\x9f\x4b\x98\x1b\x3e\xb7\x62\xee\xab\x08\xa7\x88\x95\x11\xed\xf3\x98\xf3\x96\xcc\x3b\x32\xef\x63\xa4\x7f\x64\x51\xe4\x93\xf9\x36\xf3\x95\xf3\x5b\xa3\x18\x51\x0b\xa3\x6a\xa3\x86\xa3\x03\xa2\x8b\xa3\x55\x31\x53\x63\x56\xc5\x5c\x8f\x35\x88\x95\xc6\x36\xc7\x11\xe3\xa2\xe2\x0e\xc6\x0d\x2d\x08\x5c\xb0\x73\x41\xcf\x42\xd7\x85\x79\x0b\xef\x2f\xb2\x5e\x94\xb3\xe8\xea\x62\x83\xc5\xa9\x8b\xcf\x2c\x61\x2c\x11\x2c\x39\x11\x8f\x8f\x8f\x8e\x3f\x12\xff\x55\x10\x26\xa8\x16\x0c\x25\xf0\x13\x2a\x13\x06\x85\x3c\xe1\x2e\xe1\x1b\x91\xaf\xa8\x44\xd4\x2f\xf6\x16\x17\x8b\x7b\x13\xbd\x13\x8b\x13\xfb\x24\xde\x92\x1d\x92\xfe\x24\x9f\xa4\xd2\xa4\x01\x29\x4f\x5a\x2e\x7d\x97\x1c\x92\xbc\x2f\x79\x38\x25\x2c\xe5\x50\xca\x68\x6a\x74\x6a\x43\x1a\x29\x2d\x3e\xed\x94\x4c\x5b\x96\x22\x6b\x4b\x37\x4e\xcf\x49\xef\xcc\xb0\xcf\xc8\xcb\x50\x2d\xf5\x5c\xba\x73\xe9\xa0\x3c\x54\x7e\x30\x13\xc9\x5c\x94\xd9\xac\x60\x29\x32\x14\x37\x94\x36\xca\x8d\xca\xae\xac\x19\x59\x15\x59\x9f\xb2\xa3\xb2\x4f\xe4\x68\xe5\xc8\x72\x6e\x2c\xb3\x5b\xb6\x65\x59\xef\xf2\xa0\xe5\x3f\xaf\xc0\xad\x10\xae\x68\x5d\x69\xba\x72\xdd\xca\xae\x55\x7e\xab\xaa\x56\x23\xab\x13\x56\xb7\xae\x31\x5f\x93\xbb\xa6\x67\x6d\xf0\xda\xc3\xeb\x28\xeb\x52\xd6\xfd\xb1\xde\x71\x7d\xf1\xfa\x0f\x1b\xa2\x37\xb4\xe4\x1a\xe5\xae\xcd\xed\xde\x18\xbc\xb1\x2e\x4f\x23\x4f\x9e\xf7\x60\x93\xd7\xa6\x7d\x9b\x71\x9b\xa5\x9b\x3b\xb6\x4c\xdb\xb2\x7b\xcb\xf7\x7c\x51\xfe\xb5\x02\xc7\x82\xd2\x82\xaf\x85\xc2\xc2\x6b\x3f\x39\xfd\x54\xf6\xd3\xe8\xd6\xc4\xad\x1d\x45\x6e\x45\x7b\xb7\x11\xb6\xc9\xb6\xdd\xdf\xee\xb3\xfd\x70\xb1\x56\xf1\xf2\xe2\xee\x1d\xb3\x77\x34\x96\xb0\x4b\xf2\x4b\x3e\xec\x5c\xb2\xf3\x6a\xa9\x4b\xe9\xbe\x5d\x94\x5d\xca\x5d\xaa\xb2\x59\x65\xcd\xbb\x2d\x76\x6f\xdb\xfd\xb5\x3c\xa9\xfc\x5e\x85\x7f\x45\x43\xa5\x61\xe5\x96\xca\xe1\x3d\xa2\x3d\xb7\xf7\xfa\xee\xad\xdf\x67\xb4\xaf\x60\xdf\x97\xfd\xd2\xfd\x0f\xab\x82\xab\x1a\xab\xad\xaa\x4b\x0f\x10\x0e\x64\x1d\x78\x55\x13\x55\xd3\xfe\x33\xf7\xe7\xda\x83\x06\x07\x0b\x0e\x7e\x3b\x24\x3b\xa4\x3a\x1c\x71\xb8\xad\xd6\xbd\xb6\xf6\x88\xe1\x91\xa2\x3a\xb4\x4e\x59\xd7\x7f\x74\xe1\xd1\x5b\xbf\x04\xfc\xd2\x5c\xcf\xa9\xaf\x6a\xd0\x6d\x28\x38\x06\xc7\x94\xc7\x5e\xff\x1a\xff\xeb\xfd\xe3\xa1\xc7\x5b\x4f\x70\x4f\xd4\xff\x66\xf9\x5b\xe5\x49\xe6\xc9\xfc\x46\xa4\x71\x59\xe3\x60\x53\x52\x93\xaa\x39\xb6\xb9\xf3\xd4\xcc\x53\xad\x2d\x5e\x2d\x27\x7f\x77\xf8\xfd\xd0\x69\xd3\xd3\x15\x67\x74\xce\x14\x9d\xa5\x9c\xcd\x3d\x3b\x7a\x6e\xf9\xb9\xa1\xf3\x19\xe7\x07\x2e\x48\x2e\x74\xb7\x2e\x69\x7d\x72\x31\xe6\xe2\xdd\xb6\xb9\x6d\x1d\x97\x42\x2f\x5d\xb9\x1c\x74\xf9\x62\xbb\x5f\xfb\xb9\x2b\xde\x57\x4e\x5f\xf5\xbc\x7a\xea\x1a\xf7\x5a\xd3\x75\xb7\xeb\x8d\x37\x5c\x6f\x9c\xfc\xc3\xf5\x8f\x93\x1d\x6e\x1d\x8d\x37\xdd\x6f\x36\xdf\xf2\xb8\xd5\xd2\x39\xbd\xf3\xec\x6d\x9f\xdb\x17\xee\x04\xdc\xb9\x7c\x97\x7f\xf7\xfa\xbd\x39\xf7\x3a\xef\xcf\xbf\xff\xf0\xc1\xc2\x07\xaa\x87\xa2\x87\x7d\x8f\x52\x1f\xbd\x7b\x9c\xf5\x78\xe4\xc9\xda\xa7\xf8\xa7\xf9\xcf\x34\x9f\x95\x3e\x37\x7c\x5e\xfd\xc2\xf6\x45\x83\xca\x4d\x75\xa6\x2b\xa0\xeb\xc6\xcb\x79\x2f\x9f\x74\x0b\xbb\xdf\xfc\x99\xf9\xe7\xd7\x9e\xdc\x57\xf4\x57\xa5\xbd\x26\xbd\xb5\x7d\xce\x7d\xa7\xfb\x83\xfa\x6f\xbd\x5e\xf0\xba\xe7\x4d\xc6\x9b\x91\x81\xbc\xbf\xb4\xfe\xaa\x7c\x6b\xf3\xf6\xb7\xbf\x7d\xff\xbe\x31\x18\x33\xd8\xf3\x4e\xfe\x6e\xf4\x9f\xc2\xf7\xfa\xef\x0f\x7d\x70\xf9\xd0\x3a\x14\x3e\xf4\xfc\x63\xda\xc7\x91\xe1\xfc\x4f\xfa\x9f\x0e\x7f\xe6\x7e\x6e\xff\x12\xfd\xa5\x77\x24\xfb\x2b\xf1\x6b\xd9\x37\xdb\x6f\x2d\xdf\x43\xbf\x3f\x1d\x4d\x1b\x1d\x9d\xd0\x41\x1c\xf8\x81\x3c\xb6\x9b\x93\x87\x9b\x1b\xc7\x99\xe3\xc4\x0e\x10\x27\x0a\x94\xa9\x0a\xb6\xba\xd9\xf1\xd2\x53\xd3\x95\x72\xf6\xbc\x0c\x81\x50\xcc\xe6\xb0\xd5\x65\xe5\x3f\xd6\x53\x12\x76\x03\x34\x6d\x04\xd0\x7b\xfc\x43\x03\x80\xf0\xf1\xc7\x78\x27\x1b\x03\xf2\x7f\x7c\x0a\x9d\xb0\xb7\x17\x00\xd4\x5d\x6b\xd3\x0f\x2d\xbd\x1a\x80\x3b\x04\x80\x6d\xcb\x94\x4a\xc6\x34\x5e\x44\x24\x7b\x42\x0e\x9c\x08\x71\xa2\x58\x2e\x96\x09\xc5\xec\x28\xa9\x38\x5b\x2a\x93\xb0\x79\xe9\x32\x91\x54\x21\x4d\x97\xb1\xa5\x32\xf6\x7f\x8b\xe9\xdf\x1c\xc3\x84\x1c\x7e\x74\x63\x85\x38\x47\x31\xe6\x33\x3d\x63\x99\x5c\x2a\x49\x52\xb0\xf9\x32\x85\x58\x2e\x13\xa8\x1d\x09\x52\xc7\x6e\x47\xae\xf6\x98\x99\x2e\x57\x48\x95\x69\x53\xd8\xce\x8e\x4e\xae\x00\x99\x89\xd3\x9c\xc7\x93\xa2\x05\x00\xe0\x5f\x8c\x8e\xbe\xb7\x02\x20\x96\x00\x7c\x2b\x1a\x1d\x1d\xa9\x1a\x1d\xfd\x56\x0d\x80\x3d\x01\x38\xaf\xfc\xaf\x00\x00\x00\xff\xff\xd0\x13\x17\x99\xd0\x0b\x00\x00"); -func RestoreAsset (dir ,name string )error {_ffc ,_gfb :=Asset (name );if _gfb !=nil {return _gfb ;};_cg ,_gfb :=AssetInfo (name );if _gfb !=nil {return _gfb ;};_gfb =_fc .MkdirAll (_eg (dir ,_b .Dir (name )),_fc .FileMode (0755));if _gfb !=nil {return _gfb ; -};_gfb =_cb .WriteFile (_eg (dir ,name ),_ffc ,_cg .Mode ());if _gfb !=nil {return _gfb ;};_gfb =_fc .Chtimes (_eg (dir ,name ),_cg .ModTime (),_cg .ModTime ());if _gfb !=nil {return _gfb ;};return nil ;};const _cda ="\u0043\u006fl\u006f\u0072\u0053\u0070\u0061\u0063\u0065Un\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0058Y\u005a\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065L\u0041\u0042C\u006f\u006c\u006f\u0072Spa\u0063\u0065\u004c\u0055\u0056\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0059\u0043\u0042R\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0059\u0058\u0059\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061ce\u0052\u0047\u0042\u0043\u006f\u006c\u006f\u0072\u0053p\u0061\u0063\u0065\u0047\u0052\u0041\u0059C\u006f\u006c\u006fr\u0053\u0070\u0061\u0063\u0065\u0048\u0053\u0056C\u006f\u006c\u006f\u0072S\u0070\u0061\u0063\u0065\u0048\u004c\u0053\u0043o\u006c\u006frS\u0070\u0061\u0063e\u0043\u004d\u0059\u004b\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0043\u004d\u0059\u0043o\u006c\u006f\u0072\u0053p\u0061\u0063\u0065\u0032\u0043L\u0052\u0043\u006f\u006c\u006f\u0072\u0053p\u0061c\u0065\u0033\u0043\u004c\u0052\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0034\u0043\u004c\u0052\u0043\u006f\u006c\u006fr\u0053\u0070a\u0063\u00655\u0043\u004c\u0052C\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0036\u0043\u004c\u0052\u0043\u006f\u006c\u006f\u0072\u0053\u0070a\u0063\u0065\u0037\u0043\u004c\u0052\u0043\u006f\u006c\u006fr\u0053\u0070\u0061\u0063\u0065\u0038\u0043\u004c\u0052\u0043o\u006c\u006fr\u0053\u0070\u0061\u0063\u0065\u0039C\u004cR\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0041\u0043\u004c\u0052\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0042\u0043\u004cR\u0043\u006f\u006c\u006f\u0072\u0053p\u0061\u0063\u0065\u0043\u0043\u004c\u0052C\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0044C\u004c\u0052\u0043o\u006c\u006f\u0072\u0053p\u0061\u0063eE\u0043\u004c\u0052\u0043\u006f\u006co\u0072\u0053\u0070\u0061\u0063\u0065\u0046\u0043L\u0052"; -var _cfe =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xf1\x75\x54\x94\x6f\xf8\xee\x81\x8e\x5d\x28\xd8\x8a\x85\xa2\x02\x06\x22\x28\x61\x53\x62\x01\x12\xa2\x80\x4a\x88\x20\x48\x49\x33\xf3\xf6\x74\x37\x4c\x30\x0c\xc3\x0c\xdd\xdd\xdd\x25\xa2\x52\x2a\x26\x62\x77\xf7\x59\xdf\xfd\xdb\x6b\xed\xb3\xd7\x39\xfb\xfa\xe7\xfd\xbc\xd7\x73\xad\x75\xdf\xcf\x73\xe1\x74\xb4\xdb\xad\x4f\x9f\x3e\x35\x5d\x07\x87\x8b\x8c\x8a\x89\xb2\x75\xf4\x3c\x79\xca\xcf\x5f\x6f\xce\x28\x6e\x3a\x6e\x1e\x4e\x1b\xb7\x1b\xb7\xda\xef\x52\x74\xe4\x7f\x19\xdc\xff\x53\x5f\x47\x70\xd3\xfe\xfb\xde\xda\xe9\x7f\xdc\xd6\xf6\xff\x9d\xfb\xff\x2b\xad\x80\xcb\xd1\x97\x70\xb8\x69\xcb\x70\x38\x9c\xe5\xa5\xc8\xa8\x18\x1c\x6e\xda\x7f\xb3\x7c\xe3\x63\x22\xff\xe3\x7c\x1c\x0e\xb7\xcc\xff\xea\xff\xe2\xe6\xff\xd8\xda\xd4\xc6\x04\x87\x9b\x76\x1b\x37\xed\xf2\x79\x6b\x53\x9b\xdd\xb8\x69\x41\x26\xff\x9b\x4d\x71\xd3\xfb\x59\xff\xb1\x8d\xa9\xb5\x09\x6e\xe6\xee\xe7\xb8\x99\xd7\x4e\xd8\x98\x5a\xef\xc6\xcd\x55\xef\xf9\xdf\x6c\x8a\x5b\xb8\x0c\xc1\xe1\xb2\x7a\x83\xfc\xc2\x62\x70\x0b\xeb\x4f\xe1\xa6\xad\x99\x19\xe3\x17\x15\x84\x5b\x34\x7a\x1a\x37\xcd\x32\xea\x7f\xf6\xf9\x5f\xd2\x3b\xee\xe6\xac\x67\x1b\xe1\x17\x73\x39\x40\x2f\xce\x54\xcf\xcc\xc4\x64\x8b\x9e\xa1\xbf\x5f\xf4\x71\x5b\xdb\x88\xd0\x88\x28\xa3\xff\xaf\x6b\x4c\xc3\xc5\x5c\x4e\x88\xf9\x8f\xfe\xcf\xb9\xde\x7f\xcf\x19\x7c\xe9\xaa\x5e\xdc\x6e\x63\x53\xbd\x9d\x7a\xb6\x11\x91\x89\x51\xc1\x41\x57\x62\xf4\x0c\x2f\x19\xe9\x99\x9a\x98\x98\xef\x34\x35\x31\xb1\xd0\xfb\x9f\xb0\x5b\x44\x68\x6c\x4c\x70\x44\x78\xf4\x0e\x3d\xeb\xd0\x50\x3d\xd7\xff\x82\xd1\x7a\xae\x97\xa3\x2f\x47\xc5\x5d\x0e\x30\xc6\x9d\xf3\xf4\xd2\xfb\x9f\x59\x63\x76\x38\xdc\x43\x47\x1c\xae\xf1\xce\xff\xf1\x66\x9c\xc0\xe1\x66\x5c\xc3\xe1\xa6\xb7\x86\x05\xc6\x98\xfe\xe7\xcc\x9c\xb1\x00\xf7\x3f\xbd\xfc\x5f\x6b\xfe\xff\xfc\x4f\xfb\x5f\xe6\xb4\x6f\x33\xde\xce\x9a\x9a\x73\x7f\xde\xc8\x82\x5b\x0b\xc7\xb5\x9f\x2e\xfe\xb0\xf4\xcf\x8a\x79\xab\x96\xea\xae\x5b\x6b\xb4\xde\x54\xcf\x6a\xd3\xc1\xcd\x87\xb7\x1e\x31\x3c\xbc\xed\xd0\x8e\x83\xc6\xfb\x4c\x2c\x4d\xf7\x9a\x95\xee\x29\xde\x5b\x60\x9e\x67\x91\x63\x99\x65\x95\xb1\x4f\xb3\x5f\x7d\x20\xfd\x60\xfa\xa1\xf4\xc3\xe9\x47\xd4\xd6\x19\x36\x59\xb6\x39\x76\xf9\xf6\x45\x47\xcb\x1c\xaa\x8e\xd5\x1d\x6f\x3e\xd1\x7e\xb2\xfb\xd4\x80\x63\xaf\x53\x97\x73\xc7\xe9\x56\x97\x26\xd7\x7a\xb7\x1a\xf7\xca\x33\xa5\x1e\x45\x67\xf3\xce\x65\x79\xaa\xbd\x94\xde\x29\xe7\x65\x17\xa4\x17\xe5\x3e\x4a\xdf\x0c\xbf\x02\xff\xaa\x4b\x6d\x01\x37\x2e\xdf\x0f\x9c\x0c\x7a\x7c\xe5\x61\xf0\x83\x90\xfb\x57\x27\x42\x27\xc2\xee\x87\xdf\x8f\x78\x10\xf9\xf0\xda\xa3\xa8\x27\xd1\x4f\x63\xa6\x62\x9f\xc7\xbd\x8c\x7f\x9d\xf0\x36\xf1\x03\xfe\x13\xe1\x0b\xf0\x1d\xfc\x09\xfd\x41\x70\x48\x0e\xea\x8a\xfe\xc6\x32\x88\x4e\xc4\xef\x24\x15\xf9\x24\xf9\x33\x25\x95\x7a\x8c\xfa\x81\x26\xa7\xdb\xd3\xdf\x31\x24\x4c\x1b\xe6\x6b\x56\x32\xdb\x9a\xfd\x8a\x93\xc4\x3d\xc2\x7d\xc5\x4b\xe2\xdb\xf0\xdf\x08\xa4\x42\x7b\xe1\x47\x91\x52\xec\x28\xfe\x95\x94\x9b\xec\x25\x99\x2f\xa9\x93\x86\xc9\x56\xca\x5a\xe4\x21\x29\xcb\x52\x1a\x15\xc1\xa9\xcb\x52\x9b\x94\x57\xd3\x56\xa4\xb5\xaa\xc2\xd3\x75\xd3\x3b\xd4\xd7\x34\xeb\x34\x3d\x19\xb1\x99\x1b\x33\x07\xb2\x12\xb3\xb7\x64\x0f\xe5\x80\xb9\x46\xb9\xc3\x79\x68\xfe\xce\xfc\xb1\x02\x52\xa1\x49\xe1\xdd\x22\x4a\xb1\x69\xf1\x44\x09\xad\xd4\xac\x74\xa2\x8c\x51\xbe\xaf\xfc\x45\x85\xa4\xf2\x68\xe5\xe7\x2a\x55\xb5\x53\xf5\xcf\x9a\xcc\x5a\xd7\xda\xbf\x75\xb9\xf5\xe7\x1a\x66\x37\x54\x34\x06\x34\x2d\x6d\x6a\x6d\xbe\xd6\xb2\xa1\xe5\x7a\x2b\xd0\x66\xd4\x36\xda\x4e\xec\xd8\xd5\x71\xa7\x93\xd4\xb5\xb3\x6b\xb8\x1b\xec\xd1\xef\xe9\xe9\x0d\xeb\xd3\xe9\x2b\xeb\x77\x1f\x30\xb8\xce\x1f\xfc\x31\xe4\x73\xb3\xf5\xf6\xa6\x61\x64\xe4\xde\x98\xf9\x38\xfb\xce\xe3\x7b\x7b\x27\xa8\xf7\x47\x1e\xea\x3f\x8a\x78\x5c\x33\x39\xed\xe9\xf1\x29\xc1\xb3\x6f\x2f\xbc\x5e\xd6\xbf\x5e\xfb\x86\xf0\x76\xf4\xbd\xe9\x07\xc6\xc7\x47\x9f\xf7\x7c\xa1\x7c\x1d\xfe\xbe\xe9\x47\xc4\xcf\x86\xdf\x0b\xff\x5c\xf8\x5b\xf8\xef\x1f\x0e\x37\xed\xc7\x8c\x0f\xb3\x5e\xcd\x99\x9c\xf7\x70\xc1\x83\x85\xcf\xb5\x3f\x2e\xfe\xb9\x6c\xc6\x8a\x05\xab\x96\xea\xae\x59\xbb\x79\xfd\x0e\x3d\xd3\x4d\xe6\x9b\x2d\xb7\x5a\x1a\x5a\x6c\xdb\xbb\xc3\xcc\xd8\xd4\xc4\xd4\xd4\xd4\xac\x64\x4f\xd1\xde\x7c\xf3\x5c\x8b\x6c\xcb\x4c\x2b\xcd\x3e\xf5\x7e\xd5\x81\xb4\x83\xa9\x87\x14\x87\x53\x8e\xc8\xad\x65\x36\x52\x5b\xa9\x9d\xcc\x3e\xe5\xa8\xd2\x21\xfd\x58\xf6\xf1\xc2\x13\x55\x27\x5b\x4e\x0d\x38\x76\x3b\x75\x38\xb7\x9d\x6e\x73\x69\x73\x6d\x77\xeb\x74\xef\x3e\xd3\xe7\x71\xfd\xec\x8d\x73\xb7\x3c\x6f\x7b\x0d\x7b\x8f\x9c\x1f\xb9\x30\x72\x71\xc4\x67\xc4\x77\xd4\x6f\xcc\xff\xce\xa5\x89\x80\x87\x97\x27\x03\x1f\x07\xdd\xbd\x32\x1c\x3c\x18\xd2\x7b\xb5\x23\xb4\x25\xac\x31\xbc\x2e\xa2\x3a\xb2\xea\x5a\x65\x54\x65\x74\x65\x4c\x55\x6c\x4d\x5c\x7d\x7c\x73\x42\x47\x62\x2f\xfe\x06\x61\x0c\x78\x08\xbe\x80\x3e\x21\x38\x44\x8d\x3a\xa0\xaf\x31\x01\xd1\x92\xf8\x80\x44\x25\x1b\x93\x47\x29\x08\xd5\x88\x7a\x8b\x06\xd2\x0d\xe9\xb7\x18\x30\x73\x1b\x73\x94\x45\x64\x9b\xb0\x27\x38\x0c\xae\x05\xf7\x29\x4f\xc8\xb7\xe6\xbf\x15\xa4\x08\x4f\x08\xbf\x8b\x32\xc5\xee\x49\xd3\x93\x4a\x92\x7d\x24\x8b\x24\x0d\xd2\x30\xd9\x0a\x59\xa3\x3c\x30\x45\x3b\xa5\x5a\xe1\x9f\xaa\x95\x5a\xa5\xf4\x4f\x5b\x98\x56\xad\x0a\x48\xd7\x4e\xaf\x53\x07\x69\x96\x68\x1a\x33\x42\x32\x57\x64\xb6\x66\x85\x67\xeb\x66\x77\xe6\x44\xe5\xae\xcf\xed\xcd\x8b\xcb\xdf\x94\x3f\x58\x40\x28\x34\x28\xbc\x55\x04\x17\x6f\x2f\x1e\x2b\x21\x95\x9a\x94\xde\x2b\xa3\x95\x9b\x96\xdf\xab\xa0\x54\x9a\x54\xde\xa9\x22\x57\x9b\x54\xdf\xab\xa1\xd5\xee\xad\x7d\x52\x27\xa8\xb7\xa9\xff\xd8\x90\xde\xe8\xda\x34\xa3\xa9\xac\x39\xa0\x65\x59\x4b\x7b\x6b\x74\xdb\xa6\xb6\xa1\x76\xb8\x63\x47\xc7\x78\x27\xa9\x6b\x57\xd7\x58\x37\xda\x63\xd8\x73\xbd\x37\xaa\x6f\x79\x5f\x65\xbf\xc7\xc0\xf6\xeb\xaa\x1b\x4b\x87\xd0\x9b\xaf\x6e\xbb\x0c\x97\x8d\x2e\x1e\x0b\x1d\x6f\xbb\xbb\xe2\x5e\xd0\x44\xf9\xfd\x7f\x0f\x1d\x1e\xb1\x1e\x0f\x4e\x2e\x7e\x7a\x7a\x4a\xf8\xec\xd7\x0b\xff\x97\x9d\xaf\x0d\xdf\xd0\xde\x4e\xbd\xb7\xfe\x20\xfb\xf8\xee\xb3\xf5\x17\xde\xd7\x89\xef\x86\x3f\xa2\x7e\x36\xfd\x5e\xf8\xe7\xfc\xdf\x82\xff\xfa\x9f\x3e\x67\xe6\xa2\xd9\xcb\xe7\xae\x99\xbf\x41\x6b\xfd\xa2\xb5\x3a\xab\x97\xe8\x2e\x5b\xb3\x62\xcd\xaa\x35\xba\xcb\xd7\xfc\x5b\xf7\x6a\xc3\xdd\x8d\x43\xfa\xd7\xb7\xdc\x32\x98\x30\x7a\xb1\xfd\xbb\xf1\x3c\x93\xd5\xa6\xdb\xcc\xca\xf6\x94\xee\x2d\x35\x2f\xb1\x28\xb1\x2c\xb6\x2a\xda\x57\xb0\x3f\xff\x40\xee\xc1\xec\x43\x99\x87\x35\x47\x54\xd6\xa9\x36\x72\x5b\xa9\x9d\xc4\x3e\xf9\xa8\xc4\x41\x7e\x2c\xed\x78\xd6\x89\x92\x93\x0d\xa7\x06\x1c\x5b\x9d\xea\x9c\x2b\x4e\x97\xba\x14\xbb\x16\xbb\x15\xbb\x97\x9e\xa9\xf0\xa8\x3e\x5b\x77\xae\xc9\xb3\xd5\xab\xc3\xbb\xeb\x7c\xcf\x85\xbe\x8b\x03\x3e\x83\xbe\x43\x7e\xb7\xfd\x47\x2f\xdd\x0d\x78\x70\x79\x32\xf0\x49\xd0\xfd\x2b\x63\xc1\xb7\x43\x06\xaf\xf6\x87\x76\x87\x75\x84\xb7\x45\xb4\x44\x36\x5f\x6b\x8a\x6a\x8a\x6e\x8e\x69\x89\x6d\x8b\xeb\x88\xef\x4e\xe8\x4f\x1c\xc2\x8f\x12\x26\x80\x49\xf0\x35\xf4\xe5\xff\xea\xff\x3e\x89\x4c\xde\x49\x1e\xa6\x80\xd4\xad\xd4\x41\x5a\x22\x5d\x9f\x3e\xc0\x48\x60\xea\x33\xaf\xb3\xf0\xec\xad\xec\x9b\x1c\x88\xbb\x9d\x3b\xc6\x23\xf3\xcd\xf8\x0f\x05\x1c\xe1\x01\xe1\x4b\x91\x54\x7c\x4c\xfc\x2d\x29\x2b\xf9\xac\x64\xae\xa4\x56\x1a\x2a\x5b\x2a\xab\x96\x5f\x48\x99\x99\x92\xa7\x70\x57\xfc\x49\xcd\x52\xba\x2a\xff\xa4\xe5\xa8\xdc\xd3\x71\xe9\x05\x6a\x4f\xcd\x6c\x4d\x69\x86\x4f\xa6\x56\x66\x4d\xd6\xe5\xec\x25\xd9\x4d\x39\xa1\xb9\xab\x73\x3b\xf3\xa2\xf3\xf5\xf2\x07\x0a\xf0\x85\x5b\x0b\x6f\x15\x21\xc5\x3b\x8a\xc7\x4a\xc8\xa5\xbb\x4b\x27\xca\xe8\xe5\xe6\xe5\x4f\x2a\xb8\x95\xfb\x2b\x9f\x55\xf1\xab\x0f\x54\x4f\xd5\xf0\x6a\xf7\xd7\x4e\xd5\x09\xea\x0f\xd7\xbf\x6e\x90\x37\x9e\x68\xfc\xd1\x94\xdd\x7c\xb6\x65\x4e\x4b\x65\x6b\x40\xdb\xd2\xb6\x96\xf6\xf0\x8e\x35\x1d\xdd\x9d\xd1\x5d\xeb\xbb\xba\xbb\xaf\xf5\xac\xee\x69\xee\x0d\xea\xd3\xea\x2b\xee\x77\x1b\x30\xb8\xce\x19\xfc\x34\xe4\x71\xb3\xf2\xf6\xb2\xe1\xc8\x91\xde\xb1\x4d\xe3\x09\x77\x06\xee\xe9\x4d\x44\xdd\x6f\x7d\xb8\xf8\x91\xef\xe3\x82\x27\x3f\x9e\xda\x4d\xf1\x9f\xbd\x7d\x71\xe2\x65\xc6\xab\x7f\x6f\x3c\xdf\x96\xbe\x9f\xff\xc1\xef\x63\xd5\xe7\x85\x5f\xfc\xbe\x56\x7c\x9f\xfb\xc3\xfb\x67\xe1\xef\xe9\x7f\x3c\xfe\xe6\xfe\xd7\x3f\xee\xf3\xb4\xe7\xd3\xef\xcd\x18\x9a\xd9\x3b\xab\x7b\xf6\xc0\x9c\x5b\x73\x87\xe7\x8d\xce\x1f\x5b\x70\x47\xeb\xde\xc2\xfb\x8b\x1e\x6b\x4f\xe9\xbc\x5a\xfc\x7e\xc9\xe7\xa5\x3f\x96\xfd\x5b\x31\x73\xe5\xfc\x55\x3a\xab\x57\xe8\xea\xae\xd1\x5d\xab\xbb\x4e\x77\xfd\x9a\x0d\x6b\xf4\xd6\x6c\x5c\xb3\x69\x8d\xbe\xee\x66\xdd\x2d\xab\xb7\xae\x32\x58\x69\xb8\xdc\x68\xe9\xb6\x25\xdb\x17\xef\xd0\xd9\xb9\xd8\x78\xe9\xae\x15\x26\xba\xbb\xf5\x4c\x8d\xcc\xcc\xf6\xec\xd8\xbb\xd5\x5c\xdf\x62\xa3\xe5\x46\xab\x8d\xfb\xf4\xf7\x6f\x39\x60\x78\x70\xfb\xa1\x5d\x87\x4d\x8f\x98\x5b\x5b\xd9\xec\xb7\x3d\x64\x77\xc4\xde\xfa\xa8\xad\x83\xdd\xb1\xa3\xc7\x1d\x4e\x1c\x3f\x79\xe2\xd4\x29\xc7\x13\x4e\xf6\xce\x47\x4e\xef\x77\xb1\x70\x35\x73\xdb\xe5\xbe\xe3\x8c\x91\x87\xc1\xd9\x2d\xe7\x36\x7b\x6e\xf6\xda\xec\xbd\xf9\xfc\xd6\x0b\x86\x17\xb7\xfb\xec\xf2\xdd\xe3\xb7\xcf\xff\xc8\xa5\x63\x01\x2e\x97\xbd\x02\x03\x83\x2e\x5c\xf1\x08\x76\x0e\x39\x71\xf5\x68\xa8\x6d\x98\x4d\xb8\x75\x84\x75\xa4\xf5\x35\xdb\x28\xfb\xe8\x63\x31\x27\x63\x9d\xe3\xdc\xe2\xcf\x25\x5c\x48\xf4\xc7\x07\x11\x42\x81\x6b\x60\x2c\x84\x87\x21\x04\x44\x13\xb0\x28\x62\x18\x29\x88\xec\x47\x39\x4f\xf5\xa0\xb9\xd0\x1d\x19\xc7\x99\x47\x59\x76\x6c\x5b\x8e\x2d\xd7\x8e\x77\x94\x7f\x5c\xe0\x24\x74\x17\x79\x8b\x03\x92\x22\x92\x09\x12\x86\x54\x2a\xe3\xc8\x49\x29\x80\x22\x26\x35\x42\x19\x92\x16\xa8\x0a\x48\xf7\x57\xfb\x6b\xfc\x33\x02\x32\x03\xb3\x82\xb3\x43\x73\xae\xe5\xc6\xe6\x11\xf2\xd1\x02\x5a\x21\xb7\x28\xa9\x38\xb5\x24\xb3\xb4\xb0\xac\xb4\xbc\xb4\xa2\xa4\xb2\xb8\xaa\xa8\xba\xb0\xa6\xa0\x36\xbf\x2e\xaf\x3e\xa7\x21\xab\x31\xa3\x49\xdd\xac\x6a\x51\xb6\x2a\xda\x52\xda\xe5\x1d\x29\x9d\xa9\x5d\xaa\xee\xcc\x9e\xfc\xde\xf2\xbe\xa6\xfe\xfe\x81\xe6\xeb\x95\x83\x85\x37\x72\x86\x32\x6e\xaa\x6f\xa5\xdf\x4e\x1f\x56\x8f\x64\x8c\x66\x8f\xe5\x8d\x17\xdc\x29\xbe\x5b\x7a\xaf\x62\xa2\xfa\x7e\xdd\x83\xc6\x87\xad\x8f\xba\x1e\xf7\x3f\xb9\x39\x39\xfe\xf4\xd1\xd4\xc3\x67\x63\xcf\x07\x5f\x74\xbf\x6c\x7d\x55\xff\xba\xea\x4d\xd9\xdb\xe2\x77\x05\xef\xf3\x3f\xe4\x7d\xcc\xff\x54\xf8\xb9\xe4\x4b\xe5\xd7\xfa\x6f\xed\xdf\x07\x7e\x8c\xfe\x7c\xf4\xeb\xc5\xef\xf7\x7f\xbe\xfe\xfd\xf5\xef\xdf\xbf\x7f\x08\x0e\xfe\xfd\xae\x13\xc1\x21\x73\xef\xff\x46\x70\xc8\x8a\xfe\x4c\x04\x87\x6c\xa9\xc9\x40\xa6\x21\xa6\x9a\x4c\x64\x1a\x62\xcb\x69\x45\xa6\x21\xae\xb1\x7d\xc8\x34\xe4\xb2\xb7\x3b\x32\x0d\x21\x1c\xd8\x86\x4c\x47\xa4\x4b\x6e\x23\x5b\x11\xc5\x3f\x63\x18\x4f\x5a\xff\xf6\x0e\x1c\x45\xcc\xbb\xaf\x05\xc7\x12\xcf\xf4\x0d\xc3\x18\xf6\xa3\xba\x17\xf6\xc1\x76\xaa\x7f\xc3\x19\x18\x89\x33\x07\x2e\xc5\x5c\x62\x6d\xe0\x76\x4c\xdb\x4b\x05\xdf\x41\x47\xf6\x8b\xe0\x57\xa8\x78\xc9\x41\x44\x0f\xb5\xff\x7b\x18\x9e\x43\x8b\x7b\x33\x09\x4f\xa3\x8a\x26\x56\x43\xaf\x28\x8d\x7d\xf3\xa1\x5f\xe4\x3b\x55\xaf\x60\x2d\xf2\x06\xb5\x0b\x6c\x43\x7a\xcf\x76\x86\xcf\x91\x12\x62\x8a\x60\x90\xf8\xcc\x6b\x11\xac\x21\x7a\xec\x5f\x06\xb7\x62\x6d\x8b\xdb\xe1\xbf\xd8\xd2\xdf\xde\x50\x10\xff\xe4\x6b\x1c\xe4\xca\xed\xbe\x6b\x07\xb9\x70\xb6\xf4\x1c\x85\xce\xb2\x32\x2a\x0f\x41\x97\x99\xd6\xaa\x2f\x10\x9e\xb1\x89\xf9\x03\x92\xd3\xe7\x44\x6b\xa0\x09\xea\xf8\xb9\xef\xf0\x1a\x4a\xf2\xbe\xfd\xb0\x03\xd9\x7d\xf1\x36\x38\x91\xf8\xe0\xa7\x06\x8c\x93\x6f\x7f\xe9\x02\x46\x4a\x3a\xc6\xbd\xc1\xc8\xa4\xb0\xae\x20\x90\x20\xb2\x2c\x8f\x02\x93\x04\xba\x69\x4e\x60\x39\x6f\x27\x03\x01\x9f\x70\x0e\x45\x11\xa0\xdd\xac\x43\xe7\x70\x10\xc4\x30\xb3\x62\x42\x85\xb4\xfd\x3a\x0f\xa1\x56\x72\xcb\x77\x2e\x50\x96\x81\x3e\x37\x06\x4a\xd3\x13\x47\xa3\x81\x52\x65\x50\x07\x03\x68\x4d\x89\x2e\xcd\x01\x86\xa5\xbc\xd4\x6c\x70\x4e\x52\x3b\x7d\x11\x68\x21\x7c\x7f\xcd\x13\x64\xf1\x17\x9d\x5d\x05\x3e\xe6\x6c\xb7\xfc\x04\x69\x33\x13\x74\x9a\xc0\x7f\x54\xf5\xd7\xd9\x80\x69\xa5\xdd\xd3\x51\xc0\xa0\x54\xff\xf6\x2b\x60\x65\xc1\x9f\xb6\x25\xc0\x8a\x9c\x9b\xc5\x27\x81\xed\x19\x39\x29\x78\xe0\xa4\x8a\x44\x5d\x0f\x60\x0a\xdb\x88\x3a\x60\x48\xf2\xe6\xcc\x43\x50\x4f\xa4\xb4\xb4\x04\x1d\x78\x77\x74\x8a\xc1\x85\x0c\x87\x4f\xb9\x80\x41\x77\xdb\x13\x47\x00\xd7\x76\xec\x26\x8d\xf0\xa0\xe1\x47\x73\x15\xe1\x7a\x35\xab\x70\x16\xe1\x7a\x99\x96\xcc\x9b\xf0\xaa\x20\x9e\x6c\x05\xac\xcb\xaa\x08\xd7\x07\x7c\x54\x23\xee\xf9\x40\x46\xca\x12\x0b\x00\xe8\x48\x0e\xd2\x91\x02\xf1\xac\x8e\x0f\x04\xe0\xd4\x5d\xe3\x47\xf6\x80\xe1\xed\x1b\x37\xfc\x08\x3f\xae\x9f\x6e\x94\x11\xc6\xba\x2a\xf3\xfe\x10\x7a\x9b\xdf\x4a\xe2\x09\x63\xb5\x3a\x44\x16\xe1\x5f\xe9\xa7\xd0\x52\x60\x45\x5e\x88\x5b\x37\x70\x44\x13\x60\xfe\x11\x08\x54\xdc\xd3\x91\x01\x4b\x38\xe3\xef\x3b\x80\xab\x4f\x6a\x1e\x5e\x06\x0e\x4c\xac\x19\x64\x02\x73\x46\x1c\x1a\x9a\x09\xf7\x06\x37\xe5\x6d\x23\x74\x74\xb5\x25\x97\x11\x7a\x9b\x1d\xb1\x87\x84\x17\xd5\xbc\xd0\xa5\x84\x77\xc5\x66\x6e\x04\x60\x66\xb6\xdc\x7c\x04\x30\x4c\x3b\xa2\xd3\x49\xe8\xe5\x32\xde\xaf\x00\x04\xaf\x46\x1f\x14\x00\x8e\x93\x05\xd7\x5f\x01\x33\x26\x12\x1a\xf4\x08\x03\xc3\x0f\x72\xf9\x84\xdc\x81\x3f\xc9\x06\x04\x4d\x27\x0e\xbb\x4a\xa8\x6d\x28\xbe\x2a\x21\x94\x94\x43\x6e\x7e\x84\xbc\x7c\x0b\xf3\xa7\x84\x7e\xd5\xf0\x62\x73\x82\x0b\x77\xe0\xe7\x09\xe2\x19\xa8\xf7\x65\x28\xf6\x12\xba\x75\x67\x21\xc6\x84\xbe\x74\x9b\x63\xd6\xf0\xa2\x8a\x30\xf4\x39\xa4\x54\x19\xa0\x95\x30\xc6\x4c\x43\x23\xe1\xe6\x68\x77\xd4\x00\xfe\xea\x69\x81\x4c\x20\x56\xfb\x72\x91\x34\x04\x59\xfc\x03\x21\x23\x05\x3f\x02\xb1\x66\xe2\xea\x17\x64\xec\x3c\x96\x3b\xbe\x05\x9b\x8e\x9d\xeb\x0a\x40\xdb\xb1\x45\xe5\x19\x28\x80\xd2\xd3\x12\x51\x2f\xf4\x1e\xe3\x0d\xaa\x87\xf6\x47\xd5\x20\xaf\xd0\xdc\x73\xe9\x48\x0d\xca\xd9\x67\x84\x50\xd1\x84\xc5\xb1\x08\x09\x3d\xf6\x9d\x80\x1d\xa1\x06\x3f\x4f\x41\x1f\x52\x34\x63\xfb\x50\x80\x3c\xd5\xc9\x45\x5d\xc8\xcb\xca\xee\xa2\x6b\x48\x80\xb2\x1f\xf9\x4e\x72\x65\x1c\x46\x7a\x89\xef\xa2\x0c\x91\x6c\x22\x7a\xf6\x2f\x42\x26\x6a\x59\x15\x22\x3e\x98\x72\xf1\x52\xe4\x22\xb6\xe8\x6b\x15\x1a\xcb\xb3\x9a\x1a\x47\x97\x73\x6e\x8f\x20\x48\x0f\xfb\x78\xfb\x53\x84\xcb\x7c\x5a\xea\x8c\xf8\x31\xc4\xa9\x71\x88\x09\x9d\x43\xfb\x81\x68\xd3\xe8\xd7\xb6\x23\xf3\xa8\x21\x67\x67\xc2\x7f\x28\x0e\x96\x4f\xe1\xe7\x64\x33\x1d\x1e\x3c\x42\x1c\xf9\xfc\x09\x19\x94\xd6\x3c\xdd\x84\x04\x26\xf3\x6e\x2b\x91\x25\xe2\x4b\x6d\x8b\xe1\xbb\xc2\xe3\xc5\x44\xb8\x98\x7f\x2c\x65\x18\x26\x73\x13\xa8\x34\x38\x80\x9d\x13\x39\x1f\x0e\x60\xb6\x7b\xe8\xc2\x97\xe9\x0f\x2c\x6d\x61\x67\xda\x3a\x1d\x77\x78\x0b\xb9\xf1\xe3\x2f\x64\x95\xfa\xc7\x93\x95\x70\x9b\x6a\xc3\xcd\x16\x98\x90\xba\xad\x65\x1f\x7c\x44\x7e\xb6\xb0\x12\xd6\x95\x08\xe5\xe6\xd0\x73\xf1\x1b\xca\x3a\xa8\x53\x78\x38\xfc\x2d\xd4\xc5\x23\x9d\x39\x04\xf5\xb2\xfb\x2d\xea\xa0\x22\xa6\xb3\xce\x31\xc8\x9b\x2a\x7a\x0f\xc3\xf8\xf2\xab\x0f\xeb\xe0\xed\xc5\xf1\x37\x0e\x40\x13\xf9\xc4\xc6\x3e\x88\x93\x4d\xc8\x0f\x83\xdc\x34\xb1\xd2\xa5\xd0\xb6\x34\x90\x64\x01\x2d\x49\x09\x09\xf3\x86\xb4\x25\x47\xdd\x97\x42\xf3\x45\xc6\x16\x4b\xc1\x47\xbc\x1c\x9d\x93\xa0\x3f\x63\xdb\x5b\x6d\x98\xda\x99\x72\x7f\x37\x3c\xb3\xc5\x75\x60\x0c\x4a\xad\xdf\x5f\x1f\x0b\xed\xab\xfc\x98\x6b\x06\x3e\x2b\x91\x26\xfd\x03\x9b\xf2\x2d\x30\x2f\x30\x37\xb3\xe0\xea\x00\x98\xa2\x9a\xe7\xfa\x12\xe4\xca\x69\xe6\xfe\xe0\xf9\xe4\xcd\x3a\xb6\x40\x07\x4b\xfa\xea\x25\x5c\x38\x26\xb8\x67\x0c\xef\xb8\x09\xf6\xb5\x42\x85\xfd\xb6\xb5\x01\xd0\xfe\x8e\xf1\xec\xbd\xe0\xfd\x26\x7b\xf1\x66\x30\xb3\x3a\x15\x29\x07\xc9\x25\x0d\x21\xc1\xa0\x5b\x2e\xc9\x75\x06\xb8\x53\x5d\xbf\xf7\x21\xf0\x53\xe1\xaf\xe3\x0c\x78\x73\x54\xaf\x4c\xe1\xce\x47\x1b\xef\x9e\x83\xad\xef\x94\xf5\xbe\x84\xaa\x6f\xeb\xd4\xb0\xa0\xfd\x03\x9b\xb3\xfc\xc1\xf1\x4e\x9c\xc8\x1f\x4c\x6a\xec\x44\x16\x80\x11\x55\x0e\xc1\xb7\x40\xa3\x22\x5b\x97\x06\xe0\x7d\xd6\xeb\xbd\xf5\x40\x8b\xb2\x46\x07\x04\x16\x73\x9d\x5e\x2a\xe0\x7b\xcf\x7f\xde\xa9\x84\x8f\x3d\xd6\xef\x75\x84\x4a\xee\x6e\xac\x7e\x0b\x6d\xbf\xd5\x93\xd9\x07\xd6\xf6\x6f\x13\x8e\x80\x61\xed\x57\x60\x31\xb8\xaf\xde\x33\xd8\x0f\x78\x59\xc6\x76\x49\x06\x52\xf2\xa2\xf7\x76\x00\x81\x2a\x7b\x9d\xe7\x04\x11\x97\xff\xd9\x93\xd2\x0c\x76\x4f\x3e\x20\xff\x03\xa7\x6e\xdf\x23\xdb\x81\xe3\x6d\x34\x52\x3e\x78\xaf\x44\x8f\xb4\x11\x9a\xa6\xb8\x44\xd4\x40\xf5\x34\x2b\xa2\x2e\xbc\x25\x92\x89\x31\x60\x92\xc7\x6b\xf4\x0f\x3c\x65\xf9\x01\x85\x11\x07\x9d\x76\xf4\x14\x22\xfd\x14\x4d\xd1\xc7\xe6\x3c\xf9\x4d\x0e\x43\xab\x6f\xfd\x25\x35\xa0\x7e\xad\xd5\xa4\x7d\xe8\xec\xe2\x8b\xc4\x1a\x64\x22\xa5\x9c\x78\x12\xd5\xa3\x72\xb1\xeb\xa8\x71\xc4\x07\xcc\x0d\xdd\xeb\x61\x8f\xde\x45\x2d\x2d\xa3\xd1\x50\xf4\xa8\x8e\x07\x7a\x14\xdd\xf6\x91\x46\xa6\x53\x22\x9e\x6c\x22\xdd\x27\xd7\xdd\x5a\x43\xda\x47\x5e\xd6\xf2\x88\xd8\x41\x3a\x53\x24\x27\xba\x11\x07\x52\x56\x62\x4f\x89\x4c\xca\x0b\x2c\x81\xe8\x1b\x11\x80\x2d\x26\x2e\x3c\x53\x84\xe6\x62\x65\x96\xd3\xd0\xa3\x58\x98\xf6\x6f\x74\x33\xfa\xee\xfd\x08\x29\x87\x6b\xfc\x28\x8a\x34\x8b\x3d\x35\x44\x20\x46\xb1\x22\x9b\x3d\xb0\x9f\xcc\x75\x85\xeb\x30\x21\xfd\xa9\xac\x16\xdb\x42\xfb\x40\x2e\x43\x9b\x68\x33\xc2\x43\xd0\x18\xca\x0f\xf7\x5e\x74\x33\xf9\x85\xc5\x51\xe4\x06\x79\xba\x36\x1f\x51\x11\xcb\xde\xcd\x21\xb9\x48\x4e\x3f\xa8\x20\xd2\x92\x7c\x07\x35\xd8\xa4\xc8\xbb\x91\x82\x5d\x14\x9c\xcf\x3f\x8f\xbe\xe1\xc5\x4b\xd7\xa3\x24\x4e\x13\xe9\x38\xba\x85\xbd\x20\xec\x34\x32\xce\xb4\x71\x7b\x83\xf0\xe8\x80\x79\x09\x62\x45\x7d\xa5\x7d\x05\x7e\x4e\xe6\xbd\xd9\x4a\x2c\x4f\x8f\x9a\x68\xc0\xfe\x2a\x7b\x06\xae\x63\xf1\x29\x6f\xea\x2b\xd1\x31\xd9\xbe\xdc\x14\xf4\x62\xb2\x38\x99\x82\x7c\x16\xeb\x60\x4f\x11\x91\x80\x12\xba\x1f\xb1\xe3\xbe\x73\x5b\x03\x7f\x65\xfb\x99\x9b\xc2\x12\xa6\xae\x76\x28\xbc\x96\x7a\xf1\x65\x13\xf6\xa4\x94\x79\x37\x00\xf3\x2c\xec\xed\x73\x44\x6f\xe7\xcd\xa9\x3d\x85\x1a\x66\x6d\xca\x76\x43\x54\xea\x43\xe2\xab\x88\x95\x32\x02\x9d\x0b\x3f\x90\xd3\x43\xca\x60\x46\xb2\xc8\xe5\x37\x6c\x29\x2c\xdd\x2b\x82\xfa\x79\x91\xda\x20\xa4\x47\x7f\xf6\x7c\x3f\x71\x71\x7b\xcc\xd8\x18\x66\xde\x74\xae\xfb\x19\x2a\xa8\x8d\xab\xfa\x82\xdc\xae\x70\xc9\x5c\x8b\xec\x2f\xde\x20\xf4\x86\x6f\xe4\xbe\x87\x4d\xe1\xb8\x8c\x94\xe0\x1d\xb0\x6e\xda\xde\xd3\xe3\x50\x83\xec\xfb\x9e\x77\x90\x5d\xd2\x63\x6d\x0c\x04\x58\x47\xa7\x36\x13\xad\x86\x3f\x8d\x4c\x60\xfe\x37\x36\x74\xde\x43\x85\xbd\xdb\x2a\x3e\x20\xd7\xdb\x3e\x6b\x0c\x90\x1d\x0d\x42\x3e\x0d\x2e\xa9\xda\x02\x0a\xe1\x13\xc5\x58\xd0\x20\x74\x23\x47\xe4\xfc\x01\xf2\x51\xaf\xdc\x13\x04\x4e\xa6\x3c\xd6\xe6\x82\x0b\x38\x87\x9f\x5e\x26\x3a\xdd\x47\x47\x96\x61\xd1\x63\x87\x3a\xe7\xa3\x8a\xa1\xa1\x8a\x75\xc8\x40\xdf\x66\xf5\x39\x44\xbf\xdd\x8a\xd7\x0d\x2b\x1b\x2c\x81\x57\xf0\xae\x8a\x5f\x41\x47\xa0\xac\x42\x17\xe7\x0c\x68\x4b\x96\xcd\x1e\x1b\x30\x57\xb9\x59\xbb\x11\x68\xe1\xbc\x9c\xbc\x4f\xf4\x9a\x32\x1c\x26\x62\x01\x0f\x64\x1d\xe1\xa8\x68\xac\xb9\x1c\x40\x1a\x87\x8a\xd2\x9b\x90\xd9\xbd\xce\xbc\x43\x70\x6c\x6b\x3f\x10\x0f\xfd\xaa\x9b\x16\xf8\x00\xba\x5c\xaa\x72\x06\xc0\x5b\xb9\xd5\x7b\x4e\x80\xce\x69\x6a\x9d\x2d\x80\x1d\x77\xc7\x73\x77\x76\x06\xb0\x6b\x3c\x86\x75\x19\xf0\xec\x0d\x65\xce\x04\xa0\x9a\x76\xfa\x2f\x40\x92\xbd\x84\xf6\x07\x18\x12\x9f\xa3\xbe\x01\xbd\x91\x3f\x94\x47\xe0\xaf\x10\x2a\xb9\x07\x4a\x75\x19\x20\xd5\xc2\x66\x7b\xde\x10\xef\xc2\x03\x0b\x87\x88\x09\x88\xc5\xb3\xab\xec\x05\xc8\xc1\x31\x15\x73\x18\x59\xd8\xc3\x61\x60\xf0\x83\xea\x6f\x74\x12\x5c\x94\xe5\x47\x93\xc2\x42\x51\x29\x55\x00\xf7\x22\x97\x29\x12\x64\x7e\xf0\x17\x72\x0a\x62\xe7\x62\x43\x4a\x41\x80\x3d\x78\xe2\x75\xa4\x67\x21\x81\x78\x0d\x69\x9c\x82\x58\x09\xa4\x6b\xa3\x3d\xcc\x13\xc4\x17\xdd\x05\x8c\x69\xc4\xe0\xea\x3d\xf4\xe5\xd8\xf3\xcc\x42\x9a\x09\x86\x88\x16\x50\x2d\x31\x6f\xf8\x06\xe5\x28\x66\x17\x1c\x49\xf6\xc2\xd6\x9f\x6e\x21\x85\xa1\xef\xf6\xac\x22\xe6\xa2\xcf\x17\x5a\x11\xdd\x50\xc2\xd3\x6d\x4c\x21\x7b\xef\x48\x08\xe3\x2a\x6b\x7e\x97\x0f\x7d\x0f\x63\xb0\x72\x84\x66\x43\xcf\xce\x38\x4d\xbd\x40\x93\x0a\xfa\x28\x31\xd4\x76\xa8\x86\x2c\xa0\xfc\xbc\x12\x45\x6a\xa3\x2c\x70\x9e\x20\x7e\x22\xaf\x37\x4b\x20\x5a\x91\x12\xb5\xbe\x63\xfd\x44\xa3\x27\xa6\xcc\x2d\xe2\xa7\xb7\xeb\xe8\xe3\x22\xa3\x0e\x16\x2d\x4b\xe0\x53\xb1\x8c\x5a\xce\x13\xab\x95\x94\x21\xce\x3d\xbe\x2d\xf9\x0d\xdb\x03\x3c\x4f\x5e\xc6\x1c\x0a\x3a\x4f\xb2\x62\x58\x38\x2f\x26\x06\xd0\x32\x4c\xff\x60\x2a\x6a\x88\xd6\x07\x6c\x31\xe9\xf3\x23\x3f\x06\x5d\x49\xbb\x59\x4a\xbf\xa4\x58\xda\x56\x43\x33\x97\x71\xca\x1c\xa9\x87\x24\xcb\x54\xdf\x29\x67\xc5\x39\xdc\x3a\x72\x8c\xd0\x0f\x98\x4e\x4a\xe3\x2f\x0b\x3c\x43\x2c\xe5\xb4\x3a\x9d\xc3\xae\xb3\x60\x53\x21\xfa\x8f\xa1\x5c\xb8\x00\xb5\xa5\x94\x3f\x70\xa1\xff\x2a\x5a\x79\x43\x4d\xeb\xc8\xe3\xb7\xd8\x53\xa5\xd9\xb3\x8b\x3f\x50\x24\x9a\x48\x65\x1d\x59\x93\x76\x8f\x5d\x48\x6a\x51\x78\xe2\x2d\x88\xaf\xa4\x3d\x01\x93\xd8\xcf\x24\x33\xc7\x13\xd8\x12\x41\x85\x29\x0e\x35\xe5\xfe\x5a\x68\x82\xd8\xd1\x37\xde\x4b\xa0\xbf\x6c\xfa\x3c\x30\x49\xcb\xac\x73\x6e\x9c\xa4\x7a\x55\xb6\x17\xa6\x51\x1c\x4a\x67\x2a\xa8\x64\x87\x02\x33\x66\x06\xe9\x42\xf6\x95\x84\x50\x22\xaa\x86\x2f\x85\x61\xac\x54\xee\x29\x53\x54\x2e\xbd\xbb\xdb\x07\xc9\x49\x72\x5a\x78\x10\x16\x31\x2f\xdc\xa1\xd0\xbf\xdd\xf8\xd2\xaf\x4d\x2b\xe8\x4b\xae\x9f\xa0\x86\x74\x6a\xe7\xe7\x52\x6c\x9a\x2d\xe4\x1a\xb2\x49\xad\x15\x7d\x92\x64\x56\xbe\x2f\xee\x1e\xd1\xa1\x70\x99\xff\x56\xcc\x26\xab\xfb\xa4\x0d\x6a\xaf\x7a\x6a\x72\x1b\x39\x21\xbf\xbe\xf0\x14\xbc\x86\x6d\x39\x5e\xc7\xd8\x3e\xee\xd9\x67\x4f\xeb\xb9\xc5\xa8\xd7\xa6\x46\x0e\x70\xf2\x46\x28\xd6\x5d\xe6\xb2\x3b\xe4\xcd\xcd\xc5\x74\x03\xd2\xba\x5a\x83\x38\x73\xe2\xd6\xb2\x08\xbf\x54\x4c\x37\x9f\x78\xe2\x39\xba\x34\x73\xa1\x49\x1e\xa2\xa3\x98\x5c\x18\x03\x5d\x67\xdf\x19\xdf\xc4\x38\xf3\xf0\x69\x6f\x06\xed\xde\x9d\xe6\xba\x50\xea\xd5\xdb\xbe\x79\x7b\x29\xbb\x06\x54\x32\x6b\xf2\xcc\xce\x0c\x5a\x0a\xf1\x7d\x53\x5a\x6c\x0b\xf6\xb6\xfa\x8a\x9f\x03\x3a\x5a\x7c\xf7\x44\x2d\xd2\x9e\x63\x6b\x52\x0c\x57\x28\x9d\x17\x0e\x41\x67\x39\x7a\x77\x5d\xc4\x96\xf8\x7f\x03\x09\x42\x3b\xc2\xc1\xc6\x31\x7e\x24\x21\xb4\xf0\x37\x77\x8c\xa0\x49\xdd\xc2\x39\x49\xf8\xc9\x0a\x64\x95\x00\xdc\xc4\xb5\xcc\x55\xe0\x81\x4b\x3d\x74\x22\x38\x75\x6a\x3d\xf5\x0f\xc4\x36\xf1\xa4\x74\xc1\xae\xf3\x39\xe4\xef\x70\xff\x1d\xb1\x48\x04\x0d\xf4\xe7\x0a\x5a\xa0\xba\x86\x7f\xfc\x19\x90\xb2\xd0\x9c\x9b\x00\x31\x15\x51\xec\x4f\x90\x84\xd9\xcc\x0a\x81\xc6\x12\x98\x8c\x07\xf0\xee\x4b\x36\xf4\xf3\x30\x74\x52\x45\x9d\x82\xaf\xef\xfa\x44\x69\x42\x8e\xce\x3f\x4e\xfe\x8a\x38\x8e\x0f\x09\xbf\x62\xcd\x7d\xc3\x02\x6b\xcc\xbf\x61\x23\x2f\x19\xfd\x55\x10\xcb\xd5\x45\x53\x53\xba\xd8\x0a\xd4\x87\xb9\x89\xb5\x16\x75\x8a\xff\xc3\x90\xa3\x6e\xfe\x2d\xf4\xad\xa8\xfd\xc9\x5d\xd4\x46\xd4\x6a\x97\x92\xa2\x44\x03\xe6\xaf\x23\xdf\x42\x7e\x8c\xed\x10\xee\x63\xce\xed\xf5\xe5\xb3\x18\xf3\xea\x46\xb9\xef\xe8\xd3\xf2\xf5\x38\x57\x69\x73\xe5\xb1\xac\xcf\xd4\xcd\xf4\xf7\xcc\x04\x4a\x42\xdc\x5b\xc6\x74\xf2\xa8\x5f\x0f\x2d\x8d\xbc\xf4\xc4\x79\xea\x49\x92\xe7\xae\xd5\x14\x63\xe2\xcf\x79\xff\xc8\xa7\x30\xce\x88\x40\xa0\x16\x86\x75\x0f\xf2\xde\xf0\xdf\xd6\x5a\x70\xcf\xf0\x3c\x72\xf9\xec\x5b\x9c\x26\xd9\x0c\xd6\x05\xf6\x7e\x5a\x32\xe3\x0d\xf3\x69\x6c\x03\x1d\x63\x24\xfb\x76\xd1\x96\xd1\xb7\x1d\x2f\xa2\xd4\x50\x6f\x19\x57\x92\x45\x94\x67\xf3\x57\x91\x58\xa4\x03\xc3\x8b\x05\x3b\x52\xee\x77\x6d\xe2\xc5\xcb\x78\xd5\x42\xce\x88\xe4\x70\xf6\x3f\xb6\x8b\xf8\x9f\x84\xca\xbc\x23\x1c\xa0\xee\x67\x84\xf3\x5b\x63\x58\xf4\xb9\xdc\x5a\x9f\x36\x2a\x8b\x2d\x3e\x8e\xa3\x6c\x61\x2a\x8c\x2f\x90\xde\x33\x36\xcf\x3f\x42\x6c\x26\xbf\xb8\x39\xca\x07\xf2\x04\xed\x93\xdc\xfb\xd9\x57\x2a\x8f\x72\xac\x33\x76\x67\xf6\xb0\xca\x54\x8f\x93\xa2\x98\xbb\x53\x05\x64\x0f\x7a\x8b\xdc\x2f\xea\x09\xcd\x53\xb2\xf5\x22\x46\xb9\x27\x1a\x39\x36\x8b\x1c\xce\xaf\xdf\x39\x42\xda\xc8\x15\xcd\x8f\xc1\x9a\x68\x96\x37\x82\xf9\x05\x75\x77\x5b\xa9\xdc\x81\xaa\xd4\xf2\xd9\x9c\xd9\x65\xe7\x34\x52\x56\x50\xe1\x2b\x91\x2f\x63\x2c\x37\x8a\x18\x4a\xf7\xcd\x9c\x73\xcd\x8c\xfa\x51\xc5\xbc\x60\x4c\x89\x54\xe0\x8e\xfe\x24\xfd\x90\xf4\xec\xb4\x20\x4a\xc5\xc9\xf3\xa9\xd8\x4c\x86\xf3\xf5\xb3\xfc\x27\xfd\xdb\x9b\x69\xdc\xdf\x5d\x5b\x4a\x5e\x71\xb6\xb7\x3c\x4b\xe7\xb3\xe2\xea\x63\x04\xe1\x8c\xc1\xca\x47\x68\x2a\xdd\xa6\xe4\x4c\x84\x94\xda\x9a\x57\xe2\x7d\x97\x62\x92\xf1\xf5\x28\x8e\x94\x97\x36\xb4\x23\x9b\x68\x25\x63\xcf\x17\xa1\x18\x6b\xee\x00\xc8\xff\x7d\xdb\xa4\x29\x9d\xa7\x7b\xbd\xaa\x64\x3e\xc7\xa6\x67\xb1\xaa\x88\x85\xb4\x19\xf2\x25\x8c\xfe\x86\x95\xc8\x28\xdd\xac\x6a\x5e\xf8\x0b\x6a\x46\xf1\x23\xef\x53\x14\xad\xdc\x34\x7b\x09\x09\xd6\xb4\xee\xc0\x13\xa7\xa5\x44\xcf\x2f\x47\xcd\x58\xe9\xfd\x37\x05\x5a\x77\xaf\x36\xbe\xe6\x19\x0d\xa7\x16\xbb\x70\x4e\x0c\xa6\xa4\xfd\x62\x25\xf6\xb8\xf1\xde\x30\xaa\x5a\x47\x91\x83\x74\xed\x7a\xaf\xf0\xcb\xd4\xd8\x8a\x06\xaf\x17\xe4\xc1\xc2\x3f\xf6\x97\x49\x66\x59\x45\x3b\xf0\x58\x86\xa2\x63\xc1\x4c\xa4\x8d\xf5\x7c\x40\xa1\x38\x88\xd7\x6d\x36\x93\x3d\xc0\xfb\x97\x82\x12\x14\x9f\xa3\x8e\x49\x3a\x8d\xff\x21\x24\x8b\xb6\x13\x02\xb0\x41\xfe\x57\x60\x5a\x64\x01\xb7\x03\x28\x3f\xcf\x66\x6b\xc0\x4b\x47\x67\x30\xd3\xa0\xc5\xdb\x2f\x31\xd6\xc2\xb8\x39\x5e\xb4\x40\x98\xdb\x5f\x98\x32\x04\x16\x34\xf9\xcb\x10\x30\xa7\x24\x4f\x62\x04\x66\xa7\x97\x89\xff\x81\xe5\x82\x21\xe1\x03\x70\x0c\x33\xe5\x37\x40\xdb\x22\xb7\x70\x65\x10\xfb\xfc\x62\x36\x05\x7a\x6e\x9f\xc4\x64\xc3\x36\xdb\xb5\x19\xcb\xe1\xc9\x39\x3b\x69\x7e\xf0\xf7\xbe\x5b\x29\x41\x68\x48\x23\x55\xb6\x05\x5d\x59\x7c\x3b\x79\x08\xb9\xa9\xfa\x25\x2e\x47\x24\x82\x3d\xc2\x14\x24\x06\x4d\xe5\xc3\x08\x3e\x42\xc1\x0d\x40\x04\xde\x12\xf6\x59\x44\x6a\x6f\xca\xbc\x82\x68\xb6\xb5\xd3\xbf\x21\x3f\xe7\x2c\xa5\x1d\x46\x44\xbd\xa0\xbc\x97\xbe\xb7\xc1\x40\x4a\xa3\x39\x17\x89\x93\x4f\x50\x23\xd2\xaa\xc5\x06\x94\x54\xde\x0f\xe1\x12\xf2\x24\x42\xe0\xfd\x20\x7b\x87\xa7\x70\x26\x49\x0f\xbd\xca\x58\x8f\x48\xb6\x76\x28\xe3\x07\xb1\x72\x9b\x17\x9d\x4a\xe4\xce\x59\x4c\xad\xc6\xb4\xba\x1f\xc8\x67\xf1\x0f\xd6\x3d\x92\xf4\x72\x5f\x14\x6e\x4f\xd2\x70\x60\xe5\x25\x11\x95\xbd\x82\x5b\x2f\x88\x65\xb6\xc0\x9e\xbc\x40\x86\x3c\x4c\xc6\xb9\x40\x47\x3c\xab\x59\xae\xb4\xc3\xb6\x8f\x18\x21\xd4\x4d\xdb\xb4\x68\x2f\x28\x94\x39\xfb\x28\x7f\x88\x9a\xae\x78\x59\x84\x6c\x4b\xed\x1e\xc9\x31\xc9\xb6\xfc\xc6\xa4\xe5\x49\xab\x53\x67\x0b\xbf\x8a\x16\x72\x12\xf8\xcf\x05\x4b\x21\x13\xee\x43\xde\xd1\xd0\x64\xf6\x04\x07\x3c\x97\xc3\x6c\x67\xd1\x6c\x1d\xe8\x23\x8c\x3b\x46\x7d\xb4\x83\xf4\xeb\x73\xf0\x94\xed\x64\xd3\x0e\x23\xd9\xa2\xec\xc3\xd5\xc7\x92\x1b\x33\xfc\x72\x35\x62\x52\x7a\x5c\xca\x0c\xe1\x79\xe5\x15\x56\x12\xff\x48\x8a\x2f\x10\xcf\x35\x97\x42\x57\x57\xb0\x4d\x92\x52\xce\x96\x33\x57\x09\x65\x36\x7e\xf4\x0d\xbc\xfb\x46\x5e\xd4\x20\xae\xfb\x9c\x5a\xb2\x3e\xf5\x7c\xdb\x0e\xe9\xcd\xaa\x07\x95\x33\x92\x93\xcb\x6e\x67\xf3\xc4\xc7\x8a\xbe\xca\x70\xc2\x25\x79\x13\x8c\x02\xde\xf3\xac\x5a\x7c\x05\x67\x58\x5d\x1e\x4c\x67\xf5\x28\xb3\x3d\xe8\x8c\x62\x39\xcd\x3a\x88\x96\x93\x3c\x66\x38\x40\x19\x15\x55\xcd\x19\x21\xf9\xd0\x4f\xb5\x9c\x97\x1d\xed\xba\x56\x6e\x95\x7c\xb7\x55\x93\x19\x2e\x86\x1b\x1a\x93\xdf\x08\x77\x55\x17\xd2\x2a\x79\xaf\xca\x18\x09\x8f\x39\xcd\x85\xf1\x41\x2f\x58\x8a\x1c\xaf\x33\xa6\x8c\x58\xcd\xc1\x23\x57\x68\xfe\xca\x01\xc3\xbd\x14\xbc\x74\xcd\x9c\x27\xc4\x11\xc6\xa3\xe6\x63\x32\xf0\xfa\xeb\x32\x7b\xc9\xdc\x9e\x1b\x19\x04\xb1\xaa\x9d\x9e\x3c\x5d\x68\xdd\xa4\x43\x1d\xe5\xbd\xa9\x49\x4c\x58\xc6\xa9\x28\x7b\x1f\x64\xc6\xa2\x14\xfa\xb8\x2b\x19\x67\xb2\xef\x1e\xfe\x47\xb3\x50\x3b\x1a\xfc\xa5\xd8\xca\xfa\xe6\xfc\x21\xd2\x98\x11\x4d\x5e\xb2\xfc\xe1\x9c\xd2\x20\xc9\xb6\x1b\xa7\x35\x25\xe2\x8a\xde\x8e\xa4\xc3\x42\xfb\xf6\x6f\x54\x3d\xde\xc3\xa6\x19\xf1\xe1\x1c\x49\xcd\xb2\x40\x0d\xcb\xb3\x6c\x83\xfb\x6e\xc6\xfa\x82\xcd\x87\xeb\xa9\x9f\x33\x9e\x1b\x7c\x20\xbf\x94\xff\x99\x6b\x43\x5c\xc5\x2c\xab\xd6\xca\x25\x25\x82\xf9\xb8\x2c\xab\xc4\x09\xe5\x6a\xcd\x12\xfc\x46\xbe\x7f\xda\x27\x3c\x01\x1b\x57\x8c\xe2\xbf\x44\x17\xcb\xea\x09\xfc\x4b\x56\xc9\x29\xc0\xb1\xd3\x9f\x45\x00\xb8\xf0\xc0\x05\x3e\x1f\x1c\xd6\x8f\xe6\x66\x42\xfd\xd3\x3f\x31\x31\xd8\xb3\xea\x5c\xae\x1e\xd0\x95\x77\x26\xf3\x09\x30\x9e\x1a\xa3\xee\x02\x46\x78\x43\x69\x85\xc0\x17\xcc\x4b\x21\x05\x77\x47\xef\x93\xd1\x41\xba\xff\xad\xe4\x58\xf0\xe7\x69\x89\xc8\x17\x8a\x3e\x30\x8f\x8f\x41\xaf\xf5\xcd\xb9\x2a\x58\x32\xfd\x0e\x13\x80\xb3\x2a\x53\x73\x9a\x11\xf3\xdc\xb4\x4c\x36\xfc\x57\xd1\xab\x26\xc0\x55\x3c\xeb\xb4\x2b\xb0\x1c\x7d\xac\xf0\x84\x93\xa3\xfa\x64\x4e\x70\xa1\x7f\x64\xb2\x35\x7c\xef\xf4\x01\xd1\x5e\x64\xce\xfe\x7a\xbe\x2f\x62\xa5\x3f\x8d\x4b\x42\x0a\xa6\xdf\x66\x7a\x23\x06\x15\xd2\xec\x8f\x54\x20\x27\x23\xe3\x09\xa5\x34\xe5\x51\xfa\x6b\xf2\x04\xd7\x49\x39\x41\x36\x43\x3e\xa6\xdc\x24\xa9\xaf\xbd\x97\xf6\x91\x0e\xf8\x95\x24\xb5\x10\x5f\x3a\xf3\x84\x2d\x44\x64\xbf\x39\xef\x03\x71\xfb\xa6\x1a\xae\x0e\xf1\xd8\xf4\x77\x8c\x31\x34\xa6\x3c\x30\x5b\xc2\xb9\x97\x9d\x98\xe1\xcb\x2e\x90\x97\xa7\xbb\xb2\xfc\x38\x66\xca\xa3\xcc\x9d\xf0\xfb\x14\x6b\xc6\x92\x6b\x33\xa4\xb6\xf4\x4d\xbe\x0f\x93\x6c\x68\xb6\x4e\xf7\x84\x96\x54\xa7\x7d\xcd\x3c\x3f\x0a\xb4\x89\xc5\x09\xa1\x78\xce\x30\x61\xac\xc3\x9e\x94\x9d\xc9\x7a\x95\xbc\x29\xeb\xa4\xa6\x5f\x6c\x27\x43\x55\x3d\x42\x1f\xf6\x92\xd4\x46\xbe\x14\x7a\x26\xaf\xe3\x4e\x45\xea\x48\x5a\x38\x01\xbe\x0b\xc5\x9d\xac\x8f\x4e\x9b\x04\x25\xcc\x2b\xfb\x9c\xb8\x5d\x0c\xdd\x4d\x11\xec\x42\x7a\xed\x0c\x88\xee\x48\x3a\x59\x72\x30\x2b\x48\xad\xc8\xb8\xa8\x39\xa6\xda\x29\xa9\x56\x1d\x4c\x55\x32\x2f\xa6\x1a\xca\x3f\x81\x2e\xf2\xd5\x52\xb7\xf0\x34\xc9\xea\xa4\x07\x17\x07\xc5\xba\xa2\x44\x47\x73\xfe\x5f\xc1\x0c\x2b\x29\x77\x01\xf7\xdd\x26\x43\x56\x0f\xa7\x70\xc6\x7d\x9a\x0d\xc5\xb1\xc8\x34\xeb\x6c\xc9\x77\x75\x94\x66\x7d\x61\x7c\xd2\xab\xb4\xbf\xb9\x2f\xe9\xe9\x8a\xbb\x59\x8e\x84\x22\x59\x83\xba\x3c\x6c\x43\x72\x45\x9a\xed\x05\x50\x54\x92\xf2\xf0\xd4\x0e\x3e\x5b\x8a\x5a\x76\x73\x04\x49\xdd\x1b\xeb\x58\xbb\x84\xf3\x66\x2e\xa4\xc6\x52\xbf\x17\xec\xc9\x52\x34\x4f\x57\x91\x35\x8e\x75\xaf\xc5\x0b\x54\x8b\xab\xf2\xa9\x83\x8a\xd1\x32\xf3\xc4\x0f\x32\x55\x61\xd5\x55\x72\x32\x25\xf7\xfc\xf9\x25\xa2\xf0\xcc\xe5\x27\x67\xf2\x6d\x55\x7f\x2d\x3e\x70\x0e\x29\x7e\x6c\x3c\xc8\xec\x4e\x52\xcc\xdc\x41\xb9\x4f\x3f\x93\x9f\x90\x95\xd6\xb5\x33\xad\x51\xe3\xdd\x5a\x24\x32\x55\x6d\x69\x9c\x4d\xf9\xa5\xb8\x53\xb3\x3b\xd1\x50\x96\x54\xee\x12\x32\x90\x1c\x51\x24\xf2\xbe\x26\x72\xcc\xfd\x74\x82\xc8\x5f\x93\x49\xb7\x48\xe6\xe8\xa4\x8d\x6e\xd4\x61\x32\x25\x73\x67\x1e\xa7\xf0\xe8\xb7\xf3\xc6\xb2\x14\x03\x85\x69\x0b\x35\x3e\xdd\x77\x85\x09\xaa\xed\x6d\x0f\x29\xc7\x15\x83\x8d\xed\x09\x98\x8c\x50\x23\x09\xb1\x48\x76\x28\xe7\x78\x7d\x10\xad\x2a\xca\x39\xa1\xcf\xbb\x9f\xbb\xd9\xc2\x87\xdd\x95\xfe\x6f\xe3\x02\xe6\x76\xe9\x8a\x99\x4c\xca\x36\x86\x5e\xfa\x86\xea\x3c\xfc\xa6\xa4\x07\xe5\x3c\xfc\x69\xe6\xaa\x62\x2e\x9e\x00\x15\xe7\xc7\xe1\x6f\x5e\x93\x65\x5f\x20\x38\x06\xcc\xd2\x9c\x24\xdc\x3f\xe3\x98\xb6\x07\xe0\xd8\x7d\x4b\x59\x04\x5e\x32\xf5\x91\xd8\x40\x47\xd7\x6c\x48\xda\x06\x9f\xc5\xe1\x38\xd6\x70\x8b\x4a\x51\x7d\x11\xf8\x99\x14\x56\x7e\x1c\x78\xc3\xc8\x2e\x3e\x05\x4c\x42\xae\xf9\x56\xe0\xdc\x6b\x2e\xd9\xfa\xa0\xe3\xa5\x66\xcd\x6a\x50\x73\x46\x3b\x6d\x3e\xb4\xca\xae\x56\xfe\x01\xca\x30\xdd\x2a\x31\x85\x8f\xe8\xfe\x4c\xd2\x43\xb4\x71\x38\x8e\x15\xfc\x46\xb5\xaa\x7a\x29\xfc\x4b\xfc\xa9\x1c\x07\x17\x33\x4c\x8b\x67\xc3\xf1\xe0\xd7\xbc\x4f\x70\xd8\xb5\x59\x59\x8f\x61\xe0\x12\x5e\x7d\x0f\x96\xb9\xdf\x54\xde\x82\x87\xed\x50\x79\x2b\xb2\x6e\xf7\x47\x89\x16\x12\xa7\x7b\x47\xfc\x17\x5d\x8b\xc3\x71\x96\x21\x2e\x69\x84\xaa\xcb\x14\x91\xd8\xb1\xcc\x8b\x3c\x4e\x2f\x2c\x0a\x22\xeb\x81\xbe\x79\x17\x49\x9c\xc8\xab\x59\xee\xa4\xb5\xfe\xef\xd5\x2e\xc4\xeb\xee\x3e\xca\x13\xc4\x14\x3b\x5d\xb9\x0d\xd1\x7f\xb7\x32\x59\x48\x3c\xa1\x5b\x2e\x86\x89\x83\x38\x1c\x9b\x86\x5e\x55\xba\x54\x4e\xb2\x03\x44\x57\x4a\xbb\x59\x87\x68\x7d\x85\xfd\x4c\x6d\x80\x9b\xdb\xc3\x98\x19\x51\x9c\xd9\x41\x5f\xee\x6f\x9f\xde\x4d\x73\x73\xeb\x4d\xed\xa5\xe6\xdb\xe6\xc8\x2a\x29\x7f\x77\x7b\x25\x7d\xa1\x50\x74\x2b\x45\x0d\x94\x3b\x38\x5b\x56\x0b\x56\x92\xea\x5b\xb9\x5b\xc4\x17\x5e\x29\x35\x11\x2e\xa6\x3e\x2e\x3c\xc2\xbf\x42\xa8\xca\x3d\xcc\xbd\x1b\xfe\x36\xf3\x20\x27\xd8\x4f\x98\x6e\xcb\xde\xee\xb6\x3b\xd5\x81\x35\xdf\xd6\x5c\xa6\xcf\x78\xb4\x7b\x55\xd2\x49\xc6\x42\xdd\x3e\xe1\x04\xbd\x0a\x27\x62\x4e\x12\xdf\x29\x66\x54\xa4\xa6\x99\x0b\xd6\x94\x48\x15\x77\x29\x94\x82\x2c\x39\x8c\x0f\xcd\x91\x4b\x0d\xc3\x1a\x32\xd8\x49\xcf\x7d\x11\x15\x47\xf4\xd0\xf5\xa8\x82\x2b\xf8\x66\x83\x48\x2f\xf1\x97\x99\x64\x88\x41\x6e\xbb\x6e\x8b\xe0\x16\x3b\x1d\xf7\x93\xd1\x4d\xce\x95\xe3\x2b\xae\xe4\xb7\xf3\xe8\x25\x4e\x39\x6c\xb2\x6e\x81\x7b\x26\x25\x51\x3b\x67\xbf\xfa\x62\x68\x42\xc6\xc6\x34\x07\x1f\x0f\xd5\x1a\x45\x98\x8b\x9d\x62\x85\xac\xc6\x3a\x5f\x32\x29\x31\x32\x59\x2c\xfa\x98\x74\x40\x97\x2b\xd0\xe5\xcf\x9c\x66\x4f\x7f\x43\x5d\x23\x6d\xaf\xb8\x56\x93\xc1\x9d\x57\x72\xb2\xe2\x1b\x51\x56\x60\x5e\xba\x3f\x5e\x92\x33\xbb\xd0\xf5\xaa\xb6\x66\x24\x37\xe1\xa2\x56\x5a\x5b\xe6\xbd\xd3\x9b\x53\x8a\xd4\xf1\x47\xba\x24\x40\x9a\xcf\xae\x58\x11\x49\x3e\xaa\x6b\xcb\x17\x0b\xef\x4d\x8b\xa7\x3b\xd1\xec\xa4\x76\x15\x71\xcd\x87\x39\xd7\x4a\x9c\xea\xcd\xb0\xe7\x05\x3b\xaa\x57\xc5\xbd\xcc\xfe\x50\xf6\x38\x24\x58\x53\x5e\x54\x77\x21\x2e\x4d\x92\x77\xdb\x39\x3d\x05\xcc\xb6\x3c\x72\x49\xe2\xa0\x99\xb9\xcb\x4c\x74\x22\x75\x99\xee\x0e\xfe\x51\xf1\xac\x69\xc9\xb4\xdf\xb4\x12\xc9\x78\x45\x6c\xe7\x61\xf6\x9b\x12\xdb\x96\x97\x98\x53\xc1\xaa\x06\x4a\x9c\x47\xf6\x60\x8d\x6e\xf0\x43\x0d\xa9\xbc\xf1\xfc\x9f\xb4\x0b\xc5\xd9\xce\x87\x52\x2c\xf3\x8f\x1f\x59\x93\xfc\x27\xf3\xc6\xae\xc5\xc2\x6f\xca\x1e\x5d\x2b\xde\x5d\xf1\xd4\xb4\x5b\xb4\x24\xda\x2b\xb6\x71\xe7\x6b\x42\x3a\xd1\xa0\x65\x90\x50\x9c\x90\x58\x7f\x87\x50\x1e\xe6\x50\xf5\x82\xf0\xc6\x2f\xa9\xf4\x0d\x70\xe6\x8c\x7b\xc1\x3f\xe0\xfe\xb1\x0d\x39\x5a\x20\xc7\xca\x5a\xb3\x09\x0a\x36\xf4\x57\x8e\xc1\x21\x4b\xf2\x14\x4f\x10\x39\x0e\xc7\x7b\x80\x84\xb3\x17\x76\xc6\x43\x0e\xd8\xdb\x96\x38\x48\x37\xc1\xa4\x9e\x0b\x4e\x85\x69\x55\xa9\xc1\xb7\x7e\x41\xa5\x05\xd0\x86\x33\x06\x05\x1d\x50\xb4\xc3\xd7\xec\x51\xe8\xb5\xd5\x36\xf5\x4f\x98\x69\x78\x50\xd9\x88\x1c\x5b\x22\x53\xf4\xa1\x26\x38\x1c\x6f\x00\x81\x58\x4f\x3a\x17\xa1\x4b\xb0\xb2\x16\x5d\x24\x3f\xfe\x75\xfd\x21\xc4\x3e\xf4\x7a\xd5\x19\x44\xd7\x6f\x6f\x69\x00\xb2\xda\xfd\x47\x01\x84\x58\x39\x5c\xcf\x4e\x42\x60\xab\xb9\xea\x36\xe4\x91\xe1\x06\x25\x07\xbd\xba\x84\xad\x90\x62\x2b\x70\x38\x9e\x12\xe9\x61\x6d\xea\xb0\xa6\x74\x60\x5b\x9b\xbd\x29\x73\xe3\xc9\x75\x2c\xb2\x43\x68\x60\x65\x01\xa9\xd2\x77\xb0\xa4\x9d\xe4\xe2\xae\xcc\xbf\x4f\x5a\xe2\x40\xca\xfa\x42\xfc\x65\x39\xae\xb6\x20\x7e\x31\xf8\x9e\xfa\x8b\x64\xbc\x24\x39\xe5\x25\xc9\x15\x87\xe3\xfe\x45\x6b\x99\x70\x7b\x09\xdb\x00\x55\x35\x35\x33\xdf\xc7\x2f\xa8\x7d\xc6\xa8\xbe\xfa\xbd\x52\x9b\xde\xe8\x1b\x56\xb2\x83\xf6\xc6\xdd\x3e\xdf\x81\xe6\xe0\x60\x99\xe5\x4f\xed\xb5\x4c\x4d\xe7\x50\x03\x0c\xee\xa7\x1e\xa6\x06\x2e\x69\x92\xff\xa2\x54\xe3\x70\xdc\x8d\xd8\x3d\xe6\x9e\xf6\x45\xc2\x7b\xe8\xae\xa6\xcd\x82\x1d\x71\xac\x5a\x17\x1e\x76\x95\x58\x91\xc8\x5d\xed\x3b\xbb\x38\x99\x3d\xea\x36\x95\x57\xca\x6a\x3b\xfa\x22\xb3\x97\x39\x61\x79\x45\xf5\x98\xa9\x6b\xd0\xa7\x88\x66\x7c\x5e\xf2\x4b\xf6\x8e\x3e\x1d\x87\xe3\x6c\x27\x7e\x66\x1c\x6e\xb3\x57\x8c\x20\xb6\x8d\x17\xe4\xf5\xb1\xb2\x1a\xa2\x54\x11\x92\x52\xae\x49\xa6\xf9\xec\x2e\xaa\x13\x4b\xdd\x8c\x73\x6f\x08\xef\x1f\x3d\x9b\xf1\x58\xe0\x6d\x39\x33\xed\x23\x7f\x85\x41\x56\x4a\x24\x0f\x59\x7a\x44\x2a\x67\xad\xc1\xe1\x58\x6f\xc8\x51\xf4\xf8\xd6\xfb\x39\x0e\xb0\x63\xc3\xa3\xcc\x4b\x31\x82\xea\x6f\x6a\x4e\x70\x6a\xf9\xa2\xb4\xce\x8b\xb6\x45\x6b\x53\x0d\x5c\xbd\x72\x77\xca\x3b\xec\x73\x32\xac\xa4\x05\x16\x58\x9a\xbd\x64\x96\x81\xaf\xbc\x54\x1c\xb0\xf4\x9c\x44\xc9\xa9\xc1\xe1\x58\x38\x4a\x01\xcd\xa3\x15\x2a\xff\x04\x1d\x6e\x60\x97\x24\x44\xf3\xab\xd3\x0b\x17\x5e\x49\x2d\xcb\xcc\xcd\xbd\x70\xbc\x50\x95\x15\xe1\x02\xe7\xe4\x68\x18\x76\x5f\x34\x85\xe9\xf3\xcc\x7f\x2b\x2b\x53\x8b\x0c\x36\xcb\x57\x4b\xa9\x4b\xaf\x24\x8f\xf2\x7e\xe3\x70\x4c\x57\x6a\x26\xb5\xa6\xd5\xb5\x56\x0c\x56\x37\x04\x56\x7e\x89\x5e\x56\x0d\x95\x9d\xbd\xb2\xb9\x2c\xbe\xa8\xe6\xfc\xed\xc2\xa0\xfc\x13\x2e\xba\x39\x21\x39\x76\x76\x1a\x4d\x70\xc6\x94\x79\xbb\x32\x5c\xe5\x69\xa0\x23\xeb\x91\x5b\x2c\xc5\x27\x47\xf0\x5f\xe1\x56\x33\xfe\x50\x7f\x50\x8d\x5a\xf5\x9a\x54\xe0\xe1\x06\xcb\xba\xd7\x51\x79\xd5\xa7\xab\x0f\x06\x35\x96\x1d\x2c\x07\xcf\xc7\x16\xea\x15\xbf\x3f\xdd\x9f\xb3\xb6\xc0\xde\x2e\x54\xb3\x2c\xfb\xa1\xb9\x52\xa9\xa3\x0e\x30\x58\x25\xf3\x4b\xa1\x2e\xcd\x4d\x7a\x2e\x50\xe0\x4e\x33\x38\x34\x1d\x12\xb7\x7f\x02\x18\xc0\x47\x77\x65\x00\xed\x91\x9b\x5b\xe3\x01\xc5\xe5\xab\x0d\xe6\x40\xa3\xd7\xa9\xaa\x29\x50\xc7\x49\x5c\x9a\x01\xb2\x6c\x66\x16\xf8\x40\x7b\xcc\x06\xb3\x0d\xe0\x79\xfa\x79\xea\x6e\x64\xbd\xb6\x8e\xca\x05\xdd\x85\xc3\x09\x56\x20\xb5\x24\xbb\x7e\x22\xec\x81\x3f\xd1\xe5\x0c\xeb\x44\x7c\x68\x35\x80\x9a\x2e\x1f\xaa\x7f\x05\xe5\x79\xed\xac\x52\x41\x9d\x4e\xd1\xa5\x01\xb0\x96\xf5\xb3\x82\x2d\x30\x6a\xd6\x92\xf5\x1b\xd9\xa0\xcf\x53\xe7\x20\xdf\xb4\xe7\xab\x76\xa0\x99\x38\x1c\xff\x0f\xd2\x42\xfc\xdc\x6f\x84\xcd\xc0\xaf\xed\xfc\x82\x52\x23\x6a\x5a\x86\xd0\xf9\x97\xb5\xea\x93\x90\x26\xaf\x19\x55\x2e\x48\x8e\xd3\xe9\xd2\x95\x48\xb3\x75\x47\xfe\x1d\x74\x86\x59\x7e\x56\x13\x7a\x55\x1f\xaf\x8e\xc4\x56\x68\xcf\x48\x7b\x83\x85\xe0\x70\xfc\x2e\x74\x06\x31\xb2\xcf\x93\x1a\x94\x58\xda\xb9\x83\x22\x88\xb8\xd2\xa2\x45\x6e\x0c\x68\xaa\xbb\x4f\xde\xec\x59\x59\x99\x4e\xaa\x72\x9a\x5f\x12\x44\x8a\xb7\x66\xe7\x1b\x92\x02\xcc\x64\x59\x1b\x48\xe1\xfa\x7e\xe9\x7d\xa4\x71\xed\x35\x69\xdb\x48\x7e\x38\x1c\x7f\x25\xfa\x92\xb8\xbd\xb7\x8d\x1d\x91\x18\xdd\xc1\x62\x99\x45\x18\x34\xfb\x32\xfe\x04\x10\xeb\x2c\xe8\xff\x3c\xd1\x4a\x1c\xdd\xc4\x71\xbc\xb8\x9d\xc6\xb6\x0e\xc8\xa3\xd0\xd6\x99\xc5\x67\x5e\xa5\x8e\xea\x7b\xa9\xbe\xd3\x36\x6a\x3b\x2a\x8d\x28\x0c\x1c\x8e\xb7\x9d\x88\xc3\x9e\xf7\xea\x0a\x3b\x12\xb7\xb5\x4f\x09\x36\x87\x3f\x6c\xaa\xe7\xb1\x02\x6c\x6a\xc5\x5c\x03\xcf\x63\x15\xbe\xec\x0f\x8e\x9a\x62\x3d\xd6\x33\xeb\xfd\xb9\xf7\x59\x2b\xcc\xce\x66\x14\x33\xa9\xfa\xe7\x55\x2b\x99\xf5\xda\xfc\xd4\x45\x34\x29\x0e\xc7\x35\x24\xcd\xc3\x36\xf7\x98\x28\x2e\x24\x84\xb4\xfd\x95\x3b\x84\x6f\x69\xbc\x21\xb5\xb8\xc4\xad\x49\x4f\xde\x73\x4e\x55\x7e\x59\xec\xef\xa8\x5b\xb4\x49\xd8\x71\xe4\x76\xce\xa8\x20\xd2\x6c\x9d\x46\xc5\x47\xf5\xfd\x95\xef\x78\x72\xed\x0f\x29\x72\xe6\x79\x1c\x8e\x3d\x4e\x0e\x45\xaf\x75\xcb\xb2\xcd\xe3\x73\xda\xbc\x32\x82\xc2\xdc\x1a\xd7\xa5\x67\xfb\xb7\x55\xbf\x48\x9b\x75\xf6\x71\x59\x96\x42\x7c\x2a\xba\xf0\xa2\xfc\xca\x11\xd7\x1c\x6d\xa9\xd2\xb4\x43\x3d\x2c\x59\xaf\x6f\xab\xd4\x11\xb5\xe9\xe8\xcb\x21\x76\x11\x0e\xc7\x7a\x48\x61\x21\x65\xdd\xcb\xca\xac\xe2\xa6\x5a\x1f\x14\x4d\x84\x8a\x1a\x32\xf2\x93\xfd\xa7\x57\xfb\xe6\x04\x9e\xdd\x54\xa6\x95\x19\x75\xf2\x66\x41\xa3\x7a\xea\xf0\x68\x76\xb0\x2a\xc2\x34\x5a\x6d\xa4\xa8\xd5\x3f\x90\x7a\x46\xe2\xa8\x73\x59\x26\xe2\x96\xe1\x70\x2c\x23\x6a\x20\x72\xb0\xeb\x41\x35\x3f\x2e\xa6\x55\x5d\xfe\x37\xf4\x40\x43\x58\x89\xd0\x2f\xbb\x7a\x43\xe1\x5e\x8f\xbe\xd2\x96\xbc\x15\x27\x19\x05\xd7\xb2\x0f\x1f\xce\xca\x5e\xa5\x29\x31\x3d\x9b\x7e\x43\xf9\x43\xdf\x41\xf1\x59\xda\xa9\xc3\x95\xad\xe7\x51\x71\x38\xe6\x0d\x6a\x36\x7c\xbd\x4b\xd3\x70\x36\x6e\x5e\xab\x7f\x4d\xd6\xd5\x17\x0d\x3b\x2a\xcd\xfc\xbc\xaa\x6e\x97\xd6\x79\xa0\xa5\xa1\x45\x5e\x27\xdd\x0a\x96\xe7\xa5\x1c\x26\x66\x55\x66\xed\x36\x75\x48\xf7\x57\x15\xea\xfb\x29\x20\xd9\x33\x9d\x01\x29\x97\xbf\x11\x87\x63\xfa\x50\x2b\xc1\xf9\x43\x03\x90\x73\xb4\x51\x3f\x01\x5a\x1e\x6c\xdc\x65\x0c\x96\x5f\xec\x6c\x69\x00\x8b\xdc\x97\xd6\x5b\x80\x0f\x8f\xb5\x56\xb6\x40\xb6\x07\xca\x4a\x6c\xa1\x7b\xbb\x74\xf2\xfa\x60\xf5\x06\x62\x56\x22\xd2\xa9\x75\x5e\xfd\x0e\x25\xe1\x70\xc2\x8d\xc8\x33\xe0\xc3\x50\x24\x52\x13\xbd\xb6\x7f\x23\x72\x3c\x78\x61\xe7\x28\xdc\x73\x31\xbb\xe5\x2a\xcc\x74\xfb\x5e\xf7\x02\x26\x1f\xcb\xac\x4c\x80\xab\x0e\x48\x8b\xff\x21\x6b\x76\xe1\xf2\xd2\x90\x82\x0d\x21\x59\x2e\xa8\x48\xcb\x53\xdd\x84\x3e\xc3\xe1\x84\xd3\x91\x29\xa0\x6a\x68\x2d\xf1\x78\xf4\xea\xbe\x1a\x2c\xf5\xca\xf3\xce\x44\x6c\xf6\x45\x72\xcb\x42\x94\xef\x76\xaf\x4e\x80\x7a\x1f\x63\x55\x6e\x44\x2f\x1c\x40\x8a\xf3\x51\xb1\xf1\xa7\x3c\x7f\xf4\xdb\x06\xcf\x2c\x1d\xac\x42\xeb\x84\x1a\xc4\x92\x71\x38\x41\x1b\xaa\x0f\x84\xde\xb0\xa3\x85\x45\xb5\xf7\xbe\xa5\x46\x5e\x51\x77\xa4\x51\xa0\x8b\x0e\xcd\xb6\xe4\x5e\x37\x75\xed\x10\xf9\xd4\xb1\xb3\x15\x3e\xa4\x3f\x07\x3c\x8a\xa6\x48\x53\xc6\x4f\x72\xeb\x48\xbf\x37\x9c\xca\x3c\x47\x16\x69\x5d\x4a\xcf\x26\x5d\xc6\xe1\x04\xd3\xb1\x19\x00\x71\x50\xcd\x31\x8c\xea\xe8\xb5\x61\x8d\x5c\x11\xb7\x3f\x67\x26\x5d\xdc\xd7\xc4\x65\x50\xdc\x24\xb5\x9b\xe8\x05\xc7\x4e\x96\x17\xd0\xa7\x1d\x70\x2c\xda\x4d\x13\x19\xdf\xcf\xf9\x48\x0b\xd9\x70\x26\x23\x82\xf6\x45\x4b\xae\x12\x51\x7c\x71\x38\xfe\x4c\xe2\x12\xc0\xe1\xfa\x67\xd1\xce\x28\x55\x0f\x5f\x40\xbf\x42\x6c\xdf\xc3\xfb\x72\xd1\xa0\x71\x82\x4b\x72\x63\xd4\x44\x71\x1c\x8f\x1d\x2c\xfb\xc6\xb6\x3d\x60\x57\x18\xc7\x42\x8c\x27\x72\xd6\xb3\x36\x6c\x08\xd4\xc4\xb2\x76\x6b\x3d\x4e\x0b\xa2\x1d\xc6\xe1\xb8\x1f\x49\x4b\x09\xc5\x03\x8f\x15\x71\x51\xcb\xba\x31\xb9\x6b\xd0\xbf\x36\x7d\xa9\xf5\x85\x8c\x86\xae\x64\x6b\x37\xed\x6a\x0f\x31\xec\x70\xaf\x74\x58\xf8\xf9\xc0\xac\x02\x47\x41\xa7\x71\x77\xd6\x2b\x81\xf1\x06\x96\x5a\x9f\x17\xbf\xd0\x23\x75\x8c\xd1\x8d\xc3\x71\x92\xc8\x51\x84\xc5\x03\x2b\xb3\x3a\xaf\xc5\x75\x15\x69\xbe\x04\xf9\xb4\x1e\x4d\xb7\xbe\x30\xbf\x7e\x4a\x59\xea\x4a\xa8\x8a\x52\x5c\x76\xf0\x2f\x79\x2b\x0f\xd8\x9f\x9f\xef\x23\x9d\x34\x16\x65\xfe\x94\xcc\xda\x20\x4c\x5f\x2f\x9a\xbf\x30\x4b\x21\x63\x3d\xc0\xe1\xd8\x14\x4a\x14\xbe\xba\xff\x72\xa9\xe1\xb5\x79\x5d\xf3\x0a\x6f\x05\x4e\xb6\x68\xf2\x34\xe7\xa9\xf5\xe6\xd9\x12\x97\x2f\x95\x65\x19\x13\x47\xbf\x97\xec\x54\x0b\xf7\x07\xe7\xc9\xd2\xba\x8d\xa1\xcc\xad\x29\x1d\x1b\xea\x55\x07\x93\xd7\x2c\xfc\x99\x92\xc2\x51\xe3\x70\xac\x36\xea\x26\x7c\x60\xff\x96\x2a\xcb\xc8\x9c\xce\xda\xb2\xcc\xc0\x8c\x96\x73\xc5\x5e\xe7\x1d\xea\x1e\x17\x18\xb8\x54\x56\x9e\xcd\x3d\x75\xb4\xa7\x78\x30\xcb\x7e\xbf\x53\x9e\x95\x9a\x66\x9c\x90\x51\x95\x9a\xb3\xe1\x6e\x5a\x9f\xc4\x7f\x91\x49\xca\x7a\xee\x79\x1c\x8e\x15\x44\x3d\x87\x5f\xd5\x77\xbf\xae\x3c\xd2\xa9\x33\xa0\xea\x47\x60\x64\xcb\xf4\xf2\x8c\xf3\xcb\xeb\x48\x25\x17\x5d\x28\x15\xef\x0a\x26\x8f\xe6\x17\x5f\xca\x5d\xbe\xdf\x21\xb7\x27\x43\x63\x8c\x66\x98\xa6\x2d\xd5\x5b\x92\x66\x23\xf5\x5d\x04\xc8\x19\xdc\x49\x1c\x8e\xf9\x93\x7a\xf9\x97\x37\x64\x03\x2e\x7b\xe5\x03\x79\x81\xc7\xef\x3c\x80\x62\x41\x66\xf7\x4b\x28\x05\x6c\xaf\xdc\x0c\xf1\xc1\x04\x55\x1a\xf4\x0e\x8a\x62\xfe\x81\x97\x40\x03\xd1\x42\xf8\x20\xbc\xc1\xd3\x03\x0e\x87\xe3\xf7\xc1\xb0\x12\xee\x59\x1c\x00\x7f\x83\x07\x7f\xc2\xa0\x1a\xc5\x5e\xc2\x60\x3b\xba\x67\xfc\x07\xf8\x12\xf9\xd7\xbd\x16\x5a\x85\x0c\x55\x9c\x85\xf4\x90\x6b\x69\xef\x20\x1e\x32\xc2\x3c\x0e\x35\x23\x8f\xa3\x3e\x41\xff\x90\x89\x73\xe5\xb0\x0d\x32\x6a\xf5\x13\x26\x22\x3d\x3a\x8f\xe1\x0f\x48\xe2\x0f\x22\xb8\x99\x7c\xf7\x05\x0d\xb4\x27\x5b\x8d\x2f\x02\xfd\x48\xf2\xae\x63\xa0\x94\xf8\xac\x1c\x00\x7b\x88\x57\xd3\x6c\x20\x23\xe2\x39\x86\x0c\xba\x44\x5c\x1c\x75\x19\x2a\xc3\xea\xcf\xcd\x86\x67\x61\x3e\x56\x28\x7c\x06\xfd\xae\x13\x0e\x77\xa0\xce\xdf\xc8\x80\x17\xa7\xee\x19\x13\x80\xd9\xd7\x46\x0d\x00\x0d\x4b\xbb\x03\x02\xc6\x18\xdd\xa5\xb7\x41\x5d\xba\x38\xf5\x15\x78\x8e\x96\x49\x3f\x0d\xa6\x51\x1b\xae\x05\x43\x0b\x28\x35\x67\x57\x42\x71\xe4\x5c\xcb\x6a\xe8\x06\x29\x59\xfb\x13\x6c\x45\x34\xfe\xd2\x41\x08\x93\x84\x3d\x9d\x20\xa4\x26\x79\x0d\x1f\x23\xdc\x14\x39\xb4\x15\x01\xb3\x05\xc7\x4b\x96\x00\xc7\x78\x01\x0a\x47\x80\xc3\xc9\xa7\x3e\x02\x9e\xb0\x3e\x46\xda\x81\xde\xcc\x2d\x1e\xbb\xc0\xdb\x74\x17\xcb\x15\x90\x09\x95\xab\xdd\x0c\x41\xe4\xad\x9f\x3a\xf1\xdd\xe9\x7d\x4f\x06\xf1\x1f\xd3\x66\xdd\x0a\x21\xe8\x2b\x76\xb4\x8c\x11\x5c\x65\xd1\x45\x2e\x04\x46\x72\xa7\xbc\x98\x70\x4f\x6c\x49\x49\x04\xcc\x05\xca\x88\x2d\x40\x39\xf7\xdb\x99\x13\xe0\x5e\xb6\xb3\x05\x13\xe4\x30\x6e\x68\x17\x80\xf5\xd4\x85\x1f\xec\xf1\xeb\xcb\xb0\x47\xa1\x78\x9b\x22\xc9\x8d\x07\xf8\x80\xbc\x92\xa6\x4b\x78\x4e\x56\x7b\xfe\x37\x7c\x9f\x7a\x44\x4a\x23\xac\x52\xbe\x25\x71\x09\x09\xf2\x97\x61\x1c\xc2\xa7\xe4\x9b\xee\x2b\x81\x48\x61\xa7\xf9\x5d\xa0\x85\x67\xad\x9d\x0d\xf4\xd3\x6b\xde\xf6\x25\x4e\x76\x0c\xdc\x1f\x4d\xfc\xd9\x2c\xb9\x1e\x87\x9f\x57\xc7\x6e\x98\x8d\xdf\x59\xe9\x9b\x5b\x8e\xf7\x2f\xd9\x98\x1c\x86\xcf\xcb\xeb\xc5\x8a\x08\xf3\x33\x8f\x5f\xfd\x41\x00\xd2\x8a\x5c\x27\x09\xef\xe4\x7b\xcc\x37\x02\x96\x49\x23\xda\x62\xc0\x94\xb5\xef\x35\x15\x6f\x38\xfa\xe5\x5e\x03\x7e\xdd\xd0\x83\x7e\x5b\xfc\xf2\xbe\xbc\xda\xbb\xf8\x9d\x1d\x5e\xd9\x69\x78\x8f\xc6\x09\x31\x84\x17\x54\x5b\x23\xdf\xf1\x53\x25\x21\x21\x0c\x82\x49\xee\x3e\x97\xdf\x04\xb2\x1a\xdc\x2b\x25\x0c\x29\xcc\xb4\x05\x84\x36\xce\xc9\x57\x4d\xf8\xed\x0f\x81\xbb\x77\xf1\x46\x77\x56\xf4\xf9\xe2\xd7\xdd\x02\x6a\x7e\xe2\xb7\xf7\xe7\x64\xf5\xe1\x1d\x3b\x52\x45\xe5\x78\xa4\x31\x14\x39\x81\xef\xab\xfc\x16\xfc\x81\x30\xad\xf0\xaf\x4b\x29\xc1\x36\xab\x6c\x6f\x14\x81\xab\x14\x6a\xd7\x13\x62\x38\x7f\x5e\xad\xc3\x9b\x3c\x3f\x7e\x77\x1b\x7e\xcb\x23\xa8\xb7\x1a\xbf\xec\x0e\xbd\xc6\x1d\xbf\xf2\xd6\xc9\x2c\x03\xbc\x71\x5f\x9b\x48\x1f\x7f\xa6\x7d\x21\xdc\x8f\x97\xd4\xcf\x0a\x06\xf0\x0d\x65\xc7\x5c\xf8\xf8\xa7\x79\x76\x7b\x13\x08\xbb\x54\x9b\x75\xb6\xe2\x3f\x71\x6d\xbe\x88\x51\x10\xb0\x9e\xd2\x42\x0f\x00\xc1\xc3\x3f\x90\xbf\x40\x5e\x3b\x88\x8c\x01\xef\x4a\xe7\x21\x19\xc0\x87\x54\x7d\x44\x01\x8e\xd3\x9e\x21\x00\xe4\x7e\x6d\x26\xe2\x0b\x75\x9c\xb5\x45\x8e\xc3\xfb\xad\x66\x21\xfb\xe0\x62\x1d\x1a\x72\x0e\xbe\xfb\xb9\x16\x19\x43\xf8\x4f\xcd\x11\x35\xe2\x32\xbc\x1e\x89\x45\x8c\xda\x4a\x11\x4f\x64\x66\x89\x0d\x62\x06\x8f\x29\xf0\x88\x05\xb2\x93\xb6\x13\xd1\x43\xce\x47\x92\x91\x35\x08\xc1\x23\x05\x59\x86\x24\x59\x92\x91\xe5\x48\xa9\xce\x4c\xc4\x12\xa1\x7d\xea\x45\x5c\x49\x0f\x26\x1d\x10\x3d\x92\xc7\xed\xfd\xf0\x7b\x62\x4f\xeb\x04\x3c\x49\xdc\x5d\x1c\x07\xdf\xc0\x7a\x53\xba\xe1\x5b\x58\x1d\x95\x0e\xb7\x63\x82\x88\xcf\xf0\x30\xe6\xe5\xb1\x16\xbe\x87\xad\xb2\x5c\x00\xbf\x40\x27\xb4\x0b\x11\x1d\xd4\xeb\xc3\x2b\x38\x8e\xad\x79\x1c\x0e\x9f\x64\x01\x37\x83\x61\x43\xe6\xae\x16\x23\x78\x25\x63\x5a\xe1\x33\x78\x09\xed\xb9\x3c\x18\x9e\x4f\x5b\x41\x39\x09\x2f\xa3\x1e\x0c\xff\x06\x9b\x50\xdc\xce\x18\xc2\x2e\x64\x5f\x0b\x5f\x38\x88\x84\xd7\xf6\x84\x99\x44\xb3\xf7\xc6\x50\x55\xb2\xf6\xc3\x66\x88\x21\x36\xbe\x21\x83\x42\x84\x36\x4d\xc1\xd0\x59\xfe\xe5\x82\xbd\x90\x0b\x57\x2e\x7d\x0a\xb9\x72\xa6\x91\x3e\x43\x7e\x2c\xff\xb0\x51\x88\xcd\x28\x73\xb7\x85\x1a\xe8\x33\xcc\xbb\xa0\xdb\xd4\x6b\xda\xdb\xa1\x47\xe4\x4d\x6f\x8f\x41\xb3\x55\x4e\xf7\x3b\xc1\x67\xa9\xd5\xd7\xfb\xc0\x21\xf9\x9f\x06\x05\x58\x26\x0d\xc8\x8b\x01\xb3\x92\x86\x25\xce\x60\xbe\x28\x94\x28\x00\xeb\xf9\x9f\x43\xdb\xc0\xb7\xdc\x08\xb7\x68\x68\x3d\xeb\xa3\xb9\x33\x64\xcc\xc8\xd3\x36\x83\xd6\x50\xfe\xbd\x6a\x05\x7d\x4a\x4a\xef\x5d\x04\xf7\x15\x7c\xef\x3f\x04\xae\xcc\x3d\x58\xb7\x03\xf8\x94\x19\x9f\xb3\x03\x78\x9c\x5e\x9c\x64\x02\xbc\x48\x7d\x8f\x96\x81\xd3\xe5\xab\xaf\x5a\x82\x3b\x93\x77\xbb\xba\x83\x67\x85\x9e\x7b\x2b\xc0\xf3\xbc\x25\xda\x67\xc0\xb5\xf4\xcc\x17\x07\x40\xab\xb6\xcc\xf1\xeb\xc0\xb7\xc6\xac\x9e\x1b\x40\x4b\x4d\x7f\xf5\x0d\x40\x50\xde\x97\xf9\x06\x88\x2d\xaa\x10\xad\x01\xf0\xb9\x02\x78\x04\xe0\x67\x1c\x0d\xce\x07\xca\x95\x2f\x5c\xb6\x02\x23\xb2\xc2\xbd\x3a\xc0\x60\x52\x92\xb6\x3b\x40\x60\xad\x7a\xa6\x05\x5e\x1d\x0e\x1b\xad\x02\x57\x0c\xa6\x74\x15\x01\x9d\x3d\xd9\x95\xe5\x00\xb3\x8d\xa2\x99\x02\x02\x1a\x0e\x08\x2c\x00\xaf\xca\x51\x68\x27\x10\x54\xbc\xff\x8a\x03\x10\x98\xe3\x7a\xda\x16\x88\x48\x1f\xdb\x43\x05\x82\x52\xea\xb5\xbd\x80\xb9\x9c\x35\x53\xf6\x60\xec\xc4\x9b\x91\x09\x70\xd3\x68\x43\xe7\x4d\xa0\x6f\xc8\xbb\x62\x0c\xa0\xf6\xd6\x69\x96\x00\x9e\x6d\x93\xfc\x28\xc0\xbe\xfe\x0d\x88\x00\x27\x2b\xca\x83\xca\x01\xab\xc2\x85\xce\xdf\x81\x9d\x59\x33\xf7\xf8\x00\x86\xca\x05\xda\x20\xa1\x86\xd3\xfe\xb4\x00\x24\x3c\x4d\x1b\xd9\x07\x6e\x78\xb0\xac\x73\x27\xd0\x38\xe6\x52\x61\x06\x5c\x1b\x3a\xa6\x4e\x00\x2c\x7a\xbe\xf3\x9e\x00\xab\x5b\x01\x70\x0e\xb0\xa4\xb6\x2a\xe8\x24\xe1\x7d\xa9\x9b\xf3\x0d\xc2\x50\x2e\x65\xcf\x65\x42\x47\x9a\x58\xfb\x21\xc1\x9c\x3b\xef\x5d\x11\x69\x84\x70\xea\x21\x9b\x64\x4d\x48\xbe\x71\x93\x58\x4e\xb8\xd9\x34\x4e\xb4\x03\x70\x05\x1d\xd8\x3d\xc0\x5b\x16\x88\x51\x40\x63\x32\x0f\xdb\x04\x76\x86\xdb\xa3\x2d\xd0\x45\xf7\xfb\xe8\x25\xe8\xa3\x85\x1b\xba\x16\xa6\x68\xfb\xa2\xcb\xe0\x9b\x6f\x47\x49\x7b\x61\xd6\x83\x4a\x62\x21\x1c\x73\x63\x1e\x71\x3b\xec\xd1\xa4\x8d\xf5\xc0\x3b\x0a\x66\x60\x61\xb0\xa9\xb4\x1a\xdb\x04\x73\x48\x8f\xd0\x6e\x78\x24\xac\x1d\x45\x91\x25\xee\x21\xe8\x5e\xc4\xc1\x7c\x18\xf9\x8d\xd0\x16\xfd\x41\xbe\x21\xc0\x9b\x37\x44\x25\xf1\xf9\xfd\x09\xe2\x66\x62\xe4\xa0\x11\x96\x43\x9c\xd1\xb8\x0f\x3b\x83\x01\xf9\x07\xb1\x39\xd8\x66\xe9\x32\xb4\x1e\xd3\x21\x1d\x41\xa3\xb1\x85\x61\x16\xe8\x01\xf4\x8d\xdb\x7d\xe4\x2f\xda\x65\x7e\x15\xb9\x81\x96\x2d\xaa\x40\x6e\xa0\xc7\x5f\xaf\xc0\x2a\x58\x49\x13\xcb\x31\x6b\x26\x6b\x20\x14\x1d\x67\x9c\xae\x97\xa1\x24\xfa\xfe\xdc\x62\xf4\x28\x6d\x5f\xb2\x06\x9d\x4e\x8d\x21\x4e\x43\xba\x28\x55\xa1\x7b\x11\x15\xf9\x91\xeb\x27\x04\x24\xcf\xdb\xdb\x8c\xb8\x93\x9c\x16\x5d\x40\x4e\x13\x97\xbd\x3c\x8f\x19\x89\xab\xee\x06\xa2\xe9\xa2\xd9\x7d\xf9\xa8\x99\xe0\x60\xed\x6b\xe4\x16\x0f\xcc\x59\x85\xb0\x39\xfd\x49\x16\x88\x33\xfb\x04\xda\x8c\xac\x65\xf6\x5c\xdd\x0e\xff\x61\x98\xb9\xae\x87\x27\x69\x9a\xbd\x87\xe0\x6a\xaa\xf5\x22\x27\x38\x85\xf4\xf3\x39\x03\x25\x29\x47\xc7\x89\xe8\x02\x45\x68\xcf\x2b\xa4\x48\x36\x50\x63\x88\xd8\x48\xdc\xb3\x2e\xc3\x6f\xc5\x4f\x44\xf9\x70\x99\x30\x09\x09\x82\x29\x7c\x9b\x90\x35\x70\x00\xe7\x9e\xcb\x39\xd8\x81\x45\xde\x33\x00\xaf\x64\x24\x2c\xba\x08\x8d\x51\xae\x4f\xcd\x43\xba\x8b\x1e\x8f\x2e\x45\x7c\xf3\x3d\xba\x2e\xc2\x7f\xb2\x3b\x2b\xeb\x61\x4a\xc6\x96\x8c\xf5\xf0\x4e\x15\x2c\x10\x40\x9f\x14\xcf\x21\x0e\xd4\x2b\x3b\x78\x45\x0e\x65\x24\x91\x4f\xdb\x43\x44\xc1\xe3\x3d\xd6\x90\x3d\xf7\xfe\x22\x11\x38\x4a\x0f\x7d\x12\x8b\xd4\xb6\xe0\x6f\xd3\x10\xfd\xfa\xd2\xf6\x57\x70\x41\xf5\xac\xf2\x0b\xf0\xf6\xb2\x5d\xe9\x93\x50\x5b\xa1\x2d\x0f\x83\x28\x39\xae\x40\x35\xe4\xad\x39\x18\xb4\x0c\xda\xa5\x5c\xed\xac\x07\xcd\x94\x6d\x34\x53\x81\xd5\x49\x6e\x8b\xd4\xe0\x2e\xe6\xc0\xa3\x33\xc8\xbd\x9b\x13\x37\xe3\x90\xc3\x03\xce\xad\x77\xe1\xbc\x2e\x45\xa9\x33\xbc\xae\xa5\x28\xed\x39\x54\x50\x27\xe4\xe4\x41\x7e\x15\x01\x84\x95\x90\x61\xd1\xec\xcb\xd5\xe0\xa3\xec\x20\x27\x2b\x30\x2d\xdd\xc2\x6c\x25\x78\x3a\xe5\xc0\xa2\x1c\xa0\x8a\xdd\xfc\x90\x8b\xbc\xbe\x7b\x76\x28\x13\x39\x39\xec\xdd\x3a\x03\x2e\x18\xdc\x5d\x12\x0b\x2f\xef\xee\x4d\x5b\x09\x29\x5b\x37\xb3\x9f\x41\xc7\xeb\x02\xf1\x61\xd0\xbc\xf2\xf0\xcb\x46\x60\x79\xc1\x3a\xc7\xe7\xa0\x5f\xa6\xaf\xe9\x5b\x50\x27\x35\x61\x51\x1f\x10\xc4\x09\x7c\x38\x1d\xf9\xf4\xf8\xd5\xd0\x22\xc4\xe1\x9e\xb4\xc5\x1f\x56\x8e\x68\x17\x0f\xc1\xd3\x07\x0f\x2b\x09\x10\xd8\x6d\xc0\xf6\x84\xd6\x34\x3f\x4b\xfc\x0c\x0e\xd6\x5c\x0e\xe8\x06\xaf\x96\x5c\x72\x6c\x04\x67\xe7\xf4\x9a\x7e\x02\x0a\x94\x5f\xb5\x77\x10\x9e\x70\x72\x9f\x74\x33\x55\x89\xcd\xc3\x2e\x0c\x2e\x7e\x7b\x27\x93\x7e\x1e\x8f\x54\x9a\xd1\xf0\xf8\x61\xcd\x08\x35\x87\x70\x58\x10\x45\x69\x23\x7c\x82\xa2\xc8\x8f\x80\xfa\x2b\x7e\xa4\xdf\x20\xdd\xf9\x37\x49\x0f\x72\x36\x0b\x26\xc6\xc1\xba\x5a\x2a\xe2\x5e\x98\xf5\xf8\x33\x73\x09\x38\x78\x1b\x63\xcc\x01\xef\x76\x34\xd3\x26\xc1\x27\x15\x11\xb4\xf9\xe0\x53\xcd\x1a\xaa\x1d\xf8\x8b\xdf\x49\xf1\x87\x2e\x81\xa3\x64\x11\x34\x10\x34\x4a\x6a\x86\xcd\x9d\xa3\x89\xdf\x60\x99\xe9\x0f\xa2\x17\xb2\x44\xcb\x93\xb8\x11\xd9\xf2\x78\x15\x83\x86\xcd\xba\x55\x40\x27\xa1\xe5\xed\xef\x69\x61\x68\x44\x79\x16\x35\x05\x5d\xaf\xf6\xa2\x4c\x20\x53\xfc\xa5\x14\x2d\xe4\x1d\x78\x90\x6c\x8b\xce\x0d\x72\x24\x61\xa8\x8e\xd3\x57\x62\x1f\xba\xd4\x54\x4e\xb4\x40\xad\xb4\xf4\xb0\xbf\xc8\xb3\x87\x02\x7a\x22\xa3\xe0\xa6\x09\x8d\x41\x6f\x6a\xc3\x53\x21\x5a\x7d\x99\x2d\xa5\x81\x7a\x3d\x7d\x31\x65\x36\xe5\x0b\xf7\x39\xf9\x28\xc5\x15\x30\x25\x71\xc8\x55\x81\x4e\xc4\xf7\xa4\x7f\x4e\xba\x44\x77\x92\xa3\xe9\x1c\xac\x8b\x78\x7b\xc1\x0b\x0c\xc3\xd4\xf7\x9b\x69\x6f\x85\xde\x37\x64\xd4\x27\xfc\x47\x2d\x75\x94\x57\x3c\xd7\x12\x31\x45\x9f\xd3\x98\x86\x27\x07\xb3\x0f\x72\xa2\x48\x65\xcc\x67\xf8\x29\xd2\x2c\x86\xe8\xf2\x49\xa2\x37\xdd\xcc\xf1\x0c\x56\x43\x1d\xdf\x2d\xc7\x0c\x28\xfd\x0b\xbe\xa3\x1d\xa4\xa8\x7b\x6f\x68\x97\x15\xd3\xae\xab\xa8\x11\xb2\xeb\x4d\x3f\x29\x09\x12\xa4\xe8\x09\x39\x23\xe9\x60\xea\x03\xd2\x23\xd1\x1c\xd6\x0f\x92\x31\xff\x63\xa2\x9c\x48\xe1\x8e\x07\x38\x60\x83\xec\xda\x53\x1a\x4c\x8f\x99\xbf\x7b\x0f\x4a\x62\xcc\xd4\x5a\x8e\xfc\xa5\xec\xbd\x23\xa2\xd6\xe5\x5f\xea\x0f\xa4\xb4\xe6\x18\x36\x20\xe4\xc1\x8c\xa7\x05\x28\xe9\x73\x3a\x35\x45\x49\x32\x52\x1a\x32\xde\x10\x63\xe4\x13\xf1\x37\xb1\x01\x09\xd9\xff\x31\xa6\x2d\xde\x71\x52\x83\x9e\xe7\xbf\x31\x69\x41\xf2\xb9\x61\x5a\x81\xf0\x17\x5a\xc9\xe8\x47\x6a\x56\xc3\xde\x9e\x5a\x8a\xac\xba\xa7\x4e\x97\x4c\x29\x47\xf3\x76\x92\x52\x8a\x7e\xc9\x82\x89\x1d\x79\x01\xb4\xc7\xc4\xf9\x99\xb7\xe3\x66\x63\x17\xd2\x8d\xfc\xae\xa2\xa9\x0a\xf0\x04\x1f\x79\x20\xd5\x32\xd9\x88\xac\x17\xd7\x69\xc5\xc1\xb6\x8c\xb7\xc3\x8f\xa9\x95\xd7\x97\x77\x75\x53\x24\xdd\x2f\xaa\xff\x90\x91\x36\x59\x8e\x01\x89\xde\x38\x43\x42\x26\x66\x54\x3b\x50\x37\x62\xe3\xa5\xd4\x98\x38\x6c\x7d\x7e\xba\xef\x26\xd4\x31\x53\x79\x5c\x81\x90\x54\x0b\x77\x25\xc1\x95\x72\x03\x2d\x14\x6a\x63\x75\xdc\xfe\x4b\xbd\x39\x72\xbc\xf3\x35\x25\xf3\x46\x75\xf5\x6a\x32\xd2\xfb\x23\xfb\x14\x09\x69\x7f\x91\x5c\x4f\x14\x34\xe6\x50\x2e\x63\x8d\xd5\x7e\xd1\x43\xe8\xf7\x92\xb7\x3e\x32\x54\x2f\xef\xf4\xf1\xc3\xc8\xa9\x8c\x1d\xbb\x42\xe0\x38\x85\xa5\x56\x36\x14\xce\x0e\xbc\x7d\x8a\x3a\x35\x91\xd1\x69\x45\xc9\x19\xed\xaa\x0a\x22\x47\x0d\x15\x66\x65\x90\xae\xf4\xed\x4f\xde\x44\x0c\x6f\x67\x92\xef\x60\xac\x86\x9e\x68\x6f\xb4\xb6\x72\xd4\xe7\x30\x32\x5a\x94\x72\x7c\x31\xfc\x35\xdb\x63\x57\x08\xbc\x34\x35\x5d\xeb\x2f\xf8\x8e\x9d\x3f\xaa\x23\x34\x4a\xc8\xee\x89\xe7\x07\x25\xae\xac\x5b\xcf\x6d\x4e\xc4\xe7\x09\x39\xae\x89\x4f\xe4\x0b\x58\x6f\xf1\x61\xf4\x74\x26\x4a\x30\x8e\x2b\x65\x2c\x07\xe6\xfa\x55\xd2\x4a\x81\x89\x13\xa1\xd4\x8b\x60\x99\xf1\x6b\x4a\x00\x94\x35\x2f\x9d\x5c\x04\xdb\x8f\x78\x09\x68\x00\xa1\xbb\x9c\x37\x05\xc8\x6a\xdd\xb9\x67\x81\x92\xdc\x71\xf6\x47\x60\x48\xe6\xcb\x92\x80\x0b\xe9\xb3\x99\xe6\x20\x18\xb7\x85\x3e\x0e\xfe\xf6\x33\xa1\xd1\xa0\x84\xe3\x4f\xa9\xc7\xa1\xcf\xc6\x18\xc5\x1b\x16\xcf\x73\x27\xe7\xc2\x1d\xc3\x0a\xfe\x5b\x24\xae\xeb\x25\x2f\x04\x39\x5a\x43\xe2\xbc\x47\x16\xe7\xae\x63\xf3\xe1\x27\xd2\x0a\xd6\x21\x78\x90\x16\xc8\x98\x82\xdf\xc4\x26\xd3\x05\xc8\x3a\xdf\x1a\xda\x49\xe4\xc8\xf1\x04\xaa\x2e\x72\xc9\xd8\x92\xb2\x1b\xa9\x9c\xb7\x87\x0c\x23\x31\xb7\x7e\xf1\x67\xd2\xa4\x9d\x57\xb8\x42\xea\x8d\x6a\x3d\xce\x36\xca\xdf\xec\x3a\xd6\x30\x65\xbf\x24\x90\xc9\x26\x73\xa9\x7b\x18\x87\xc8\x3a\x31\x0c\xda\x67\x92\xd2\xa7\x95\xda\x4e\x5a\x7c\xac\x88\xa2\x26\xb2\x76\x36\x92\x1b\x89\x67\xe6\xe9\x93\x7e\x62\x4b\x6f\x9e\xe3\xb9\xf3\x17\xb5\xdf\xe5\x4c\x71\x1b\x2b\xb9\x6c\x2a\xc7\x33\xeb\x00\xcb\x94\xf5\x35\xe9\x0f\xe3\x15\x33\x93\xfc\x82\x9e\xc5\x40\xa3\x03\x69\x57\xe9\xfe\x17\x6f\x52\x4d\x69\xc6\xc7\xe6\x51\x16\x52\x17\xed\x0c\x21\xaf\xa3\x9c\x9a\x77\x8a\x64\x49\xec\xbf\xd1\xc1\x1d\x91\xf9\xb7\xed\xe1\x5c\x96\x78\x94\xff\x64\x4f\x4f\xb2\xcb\xa8\x60\x66\x89\xf6\x8a\xd9\x0c\x6f\xc1\x5e\x92\x8c\xbe\x81\x77\x21\xca\x9a\xfa\x9c\x43\xb9\x70\x8f\xa2\x61\xc9\x1c\xae\x90\x63\x19\xc3\x3b\x57\x91\x62\xe9\xac\x79\x08\x31\x92\x0c\x5d\xf7\xe1\x9a\xe7\xcc\x6c\x9e\x60\xf7\x67\x2e\x2d\x4d\x63\x05\xa9\x57\xaa\x13\x98\xd3\x95\xff\x84\xf1\xf4\xfc\x94\x17\x58\x29\x2d\x5c\xfa\x26\x32\x89\x6a\x9e\xf4\xe2\xbc\x98\xfc\x4e\x38\x7c\xf4\x1a\xa9\x9a\xf7\x6d\x47\x0a\x51\xcd\x9d\x3d\xaf\x01\x0b\xa7\x0e\xf5\xcf\xe4\xee\xae\x59\xdd\x08\xb0\x33\x2b\xd6\x14\xbb\xb0\x0c\x4a\x74\x54\x87\x19\x65\xf9\x93\x7c\x5f\xba\x73\x76\x0e\xd2\x41\x9b\xab\x49\x0c\x9f\xa4\xf4\xa5\x59\x7a\x1f\x22\xc3\xf2\x0f\xf6\x61\xa4\x03\x12\xdc\x8e\xf9\x44\x1d\xd1\xdf\x79\x37\xd1\x52\xfa\x54\xcf\x08\xd7\xb7\xe7\x50\xfd\x15\x76\x73\x7b\x6c\xa1\x05\x6b\x57\x13\x5e\x69\xce\x28\xa8\x3d\xc1\x8d\xa6\xef\x2b\xff\x09\xfd\xa6\x3e\x28\xca\x0f\x73\xa6\xf0\x73\x1d\x3c\x5f\x93\x2d\x34\xb7\xec\x42\x89\xcf\x95\xbf\xb7\xc7\x63\xd9\xd2\x47\xf3\xee\xa3\x06\x4c\x45\xf7\x37\x6e\xe8\xd0\x96\x3a\x84\x3d\xd8\xf7\xae\xc0\x91\x65\xde\xc9\x4c\x3d\xc3\xc8\x6b\x7e\xc1\x49\xa3\x1b\xd7\xad\x87\xac\xa8\x5d\x15\x2e\xa1\xe9\x94\x88\xa2\x60\x4f\x1f\xf2\xc2\x9c\x38\xbb\xd9\xc4\x0a\xf5\xfd\xed\xc7\xb0\x60\x79\xcb\xfc\x59\xc8\x4d\xd6\xbe\x6e\x3b\x6e\xc4\x98\x75\x6d\x27\x7b\xf0\x66\x4d\xbe\x80\xb5\xbb\xff\x9f\x22\x9d\x21\xeb\xfc\xc7\xfe\x4e\xd7\x69\x1e\x00\x55\xd4\x94\x5a\x7e\xe8\x46\x8a\x79\xb9\xe5\xb9\xdf\xa4\xde\x82\x2e\xdb\x41\x62\x60\x66\xd3\x76\x1b\x6c\xb6\x62\xf1\x7c\x0f\xe4\x2c\x8b\xd8\xe3\x2e\x37\x8c\x6f\xae\xf7\x92\x7c\x4b\xb0\x2d\x7c\x99\xd4\x99\x50\x9f\xb6\x5b\xd4\x9c\x78\x98\x27\x10\xb4\x25\x8e\x20\xbb\x78\xcd\xf8\x8c\xf0\x00\x4e\x13\x81\xea\xc5\x67\x0d\x01\xbe\x76\x67\x98\x33\x40\x4b\xa3\x7f\xf4\x26\xe8\xd4\x6c\x22\x6d\x35\x3c\xbf\x9b\x2c\x2b\x25\x04\xd6\xd1\x25\x62\x02\xab\x70\x73\x52\x38\xa1\x4d\x89\x8a\x22\x00\x1c\x77\x4a\x10\x0f\xb8\xc3\x0a\x1e\x09\x18\x0a\x9b\xe0\x70\x41\x6f\xaf\x15\xac\x02\x70\xca\xf6\x15\xe3\x1d\x14\x66\x94\x4f\x2f\x87\xb7\xcd\x0e\xa0\x2d\x87\x13\xbb\x72\x65\x76\xb0\x5e\x6d\xa5\x64\x2f\x8c\x2b\x38\x9b\xb4\x1c\xfa\x92\xda\x27\xda\x00\x4d\x72\x4f\x0a\x4c\xa0\xd7\xf0\x3c\x9e\x35\xbc\x3e\xcc\x9b\xe3\x0e\xfb\x7b\xa6\xb1\xf0\xb0\xd4\x96\xc1\x68\x87\x6f\x18\x5d\xa1\x73\x11\xdb\xd9\x0e\xd4\x17\xc8\xfc\xce\x93\x52\x06\xa5\xa7\xc6\x35\x99\x42\xd9\x9c\xaf\x25\x8e\x23\xc7\x2a\x30\x21\x91\x74\x87\xb3\x8c\x9f\x42\xf2\x00\x5f\x70\xcb\x88\x3f\x43\xbd\xd8\xfd\xc4\x82\x73\x4d\xcc\x7f\xc4\xa3\x36\x8f\x18\xce\xd8\x4b\xa3\x19\xf4\x35\xd8\x93\xd9\x47\xa8\x97\x50\x7a\xfb\x75\x49\x0f\xe7\x65\xf5\x9a\xa4\x5a\x76\x67\x6e\xb1\xa8\x95\xc5\x49\xb1\x10\x8c\x30\xcf\xb2\x1e\xf2\x3e\x31\xcc\x80\xeb\xdc\x95\xf4\x83\x57\x2f\xb1\x0f\xd3\x5c\xce\x3e\x64\x86\x52\x1d\x6c\x4e\xd1\xeb\x29\x17\x0d\xfb\x68\x31\xe4\xa7\xb3\xe9\x14\x15\x71\x4f\x9b\xbb\x64\x5d\x72\x5f\x65\x7c\xd2\xd6\xa4\x99\x39\x4e\x22\x43\xd1\x0e\xd9\x13\xc1\x41\xc1\x69\xa6\x8a\xe7\xcd\xc3\x08\xf9\x1c\x1a\xe7\x69\x48\x20\xab\x9a\xed\xe4\xf1\x8a\x71\x87\x29\xb2\x6e\xa3\x6f\x66\xac\x36\x54\x52\xdb\xe9\xe6\xb3\x1f\x93\xc7\x48\x37\x5b\x16\x25\xa7\x66\x14\x94\xc7\x8a\x85\xea\x45\x59\xeb\x85\xd2\xb4\x8b\x92\x5b\xfc\x34\x05\x8b\x5e\xcf\x2d\x95\x35\x26\x7e\x60\xdf\x95\xe8\x5c\x79\xc2\x9a\x27\xf6\x3d\xf3\x84\x61\x24\x90\x1e\x79\x40\x0b\xe2\xad\x33\x34\xa1\xbc\xe2\x34\xcd\xd9\x4c\xba\x4e\x9d\xde\x78\x2b\x39\xaa\x62\x71\xe9\x32\x71\x78\x89\x93\xe6\x83\xd0\xa7\x20\x2b\xa9\x85\x7f\x26\xe7\x16\xf5\x3a\xf7\x5c\xc6\xf7\x04\x43\x76\x62\xba\x51\x90\x0b\x53\x99\xea\xe1\x9e\x4f\xaf\x97\x25\x1e\x9e\xa2\xbe\x49\xd6\x36\x50\x51\xce\x88\x16\xcf\x31\x27\x69\xd3\x5e\xd6\xbf\x4d\xae\x69\x8f\x2d\x3e\x22\xe6\x34\x7d\x49\x7f\x2c\x8c\xa8\xf3\x10\x35\xf0\x3d\x2a\xd9\xe4\x47\xdc\x63\x25\x05\x71\x7e\x6c\xb7\xfc\xe1\xcb\x0d\xcc\xa0\xac\xaf\x6e\xe7\xe9\xf1\xea\xf5\x87\x9e\x52\x53\x53\x3f\x1b\xcc\x25\x7f\x90\x04\xcc\xb1\x23\xe2\x19\x60\xdd\xe7\xe4\xd1\xbe\xc9\x22\x4f\xb1\xa6\x6b\xb1\xea\xa7\x90\xd0\xba\x54\x38\xce\xf7\xaa\x7f\x40\x9e\xc9\xb5\xab\x62\xc6\x4a\xd8\x87\x4b\xad\x2f\xcf\x63\x1e\xcb\x7f\xe3\xda\x4b\x3f\x9d\x55\x76\x08\xa0\x86\xa7\x07\x6e\xbd\x45\x2e\x91\xe9\xcc\xb9\x40\xdc\xc2\x9c\x5f\xa7\x97\xfc\xe6\xa6\xb8\x90\x23\x2e\x1e\xc0\x54\xfb\x84\x84\xee\x83\xc2\x0d\x7c\xc7\xd6\x0a\x92\x07\xd7\xa8\x61\x76\xcc\x0f\xf6\xca\xaa\xb3\x01\x44\xa6\x4e\x49\x86\xab\x0f\x5d\x27\xef\xe3\x21\x73\xaa\xbe\xe6\xe7\xd6\x1e\xf2\x29\xb9\xfd\x9c\x74\xac\x80\xe9\x56\xbe\x34\xfb\x42\xfc\xd1\xec\xf3\x19\xfb\xe3\xfb\xe5\x3d\xe9\xd6\x09\x07\x39\xbe\xca\xd3\x09\x9d\xc8\x96\x94\x80\xc4\x88\x6b\xc7\xa5\x89\x78\x0b\xbf\x8d\x49\x1c\xc2\x5a\x67\x7d\x61\x06\xb0\x70\x5f\x1f\xef\x3b\xf0\x67\xd3\x6e\xae\x1b\xb4\x6c\x7a\x00\x73\x2f\xf4\xad\x2c\x3a\xeb\x03\x5e\x9c\xd5\xa8\x99\xc0\x0f\xc9\x77\xab\xde\xe2\x7f\xb1\xc7\x94\xb3\x09\x47\xe1\xc2\x14\x7d\x42\x49\xe4\x84\xd4\x16\x30\xf3\x6d\x49\xf2\x05\x6e\x38\x75\x0b\xc9\x60\xd4\x3e\x88\xf7\x14\x5a\xb1\xf1\x33\xf7\x04\x34\x39\xdd\x99\x69\x08\xdb\x94\x0e\x65\x51\xa0\x79\x59\x2b\x35\x28\xf8\x47\x26\x50\x49\xc1\x49\xb6\x53\x6a\x2d\xf8\x0e\x36\x93\x4f\x40\xcb\x22\x43\xa4\xd3\xa1\xb3\xbe\xde\x49\x5b\xa1\x12\xa7\x48\xe1\x19\x78\xde\x3e\x73\x5e\x23\x1c\xb8\xb1\x9b\x6b\x00\xff\x9c\x7e\x92\x39\x03\x6e\x2b\x69\xca\xcc\x27\xeb\x65\xea\xa8\xbb\x49\x7c\xa9\x38\xed\x37\xf1\x33\xcb\x39\x75\x23\x91\x00\x1d\x91\x9f\x24\xae\x8b\x60\x4b\xe2\xb0\x27\x3e\x72\xb1\x12\x6b\x74\xec\x11\x8c\x63\x14\xab\x5a\xde\x71\xcc\x67\xa3\x80\x93\x83\x29\xa6\xc7\x32\x20\x74\x45\x71\x54\xe6\x16\x16\xa2\x19\x55\x9b\x30\xa9\x92\xb0\x34\x4f\x46\x3c\x73\x9f\x02\xa3\x27\x80\x76\xb2\x62\x1a\x3b\x3c\x23\xf9\x29\xb5\xff\xe2\x0d\xf1\x6a\xea\x1a\xc7\x8d\x82\x13\x94\xb3\x56\x4e\xdc\x72\x72\xd5\xc6\x08\xf6\x3f\x72\xd9\xf4\x66\x7a\x17\xc6\x2f\x32\xcd\xe0\x8b\x54\xea\x94\x74\x95\x70\x49\xf2\x41\x65\x1f\x3f\x92\xb1\x36\xe5\x33\xf7\x01\x70\x48\xb6\x89\xe3\x1b\x56\x95\xec\xcd\x5e\x74\x71\x9a\x48\xcc\xec\x39\x15\xcd\xaf\x63\x5c\xb3\x7c\xc2\x5d\x49\x3f\xbb\xf1\x02\xfb\x20\x7d\xe3\x8c\x0d\xb4\x6f\xa4\x39\x05\x76\x19\xda\xaa\xed\xaa\xba\xf4\x95\xa9\x9f\xc5\x61\xca\xfd\x29\x0a\x5a\x40\xca\x59\x99\x21\x3e\x53\x9a\x98\xdc\x18\x6a\x9f\x54\x24\x06\xce\xb7\x0a\x9f\x0a\x1d\x4e\x22\xfc\xd9\xfc\x79\x96\xbb\x39\x1e\x5c\xe3\x8d\xcb\x58\x67\x38\xf3\x67\x44\x52\xdf\x90\xff\xe6\x19\x6a\xee\x16\xb9\x28\xdb\x54\xf7\xf3\x97\x0a\x93\x52\x7f\x64\x77\x53\x54\x29\xb3\x32\x02\x13\x71\xd2\xd5\xe9\x33\x43\x5a\x92\x1c\x52\x7b\xbd\x23\x84\x09\x72\xf9\x89\x68\x9e\x40\x92\x60\xe1\xcf\x1e\x15\xff\xd3\xcb\x62\x56\x09\xbc\x66\x28\xa9\xeb\xa9\x39\x39\x4e\x19\x8b\x1a\x7c\x15\x2f\x54\x9f\x6a\xa2\xf8\xb5\xa9\x1f\x2b\x2e\x91\x86\xe5\xef\x4b\xb6\xc5\x3b\x49\x3e\xe6\xbf\x0c\xde\x9d\xb4\x28\xbb\xc7\x6b\xa1\x70\x97\xa6\xfe\xb8\x33\xcf\x3a\x6d\xd2\x9c\xcc\x06\x14\xba\x7a\x86\xcc\xa3\xe2\x47\x33\x1a\x29\x28\x7d\x76\xb6\x38\x63\x41\xbb\x87\x42\x4f\xf5\xad\x59\x87\xf7\x38\xf5\x73\x5d\x3a\x69\xb6\xfc\x59\xd5\xe2\x38\xa6\xe4\x41\x69\xcc\x15\x54\xfc\xa1\xe0\x93\x67\xb4\x70\x6e\x0e\xe7\xd8\x0d\xde\xf2\x8c\x4b\xe6\x46\xec\xe3\xca\x57\x1b\xfe\x32\xa7\x25\x3b\xce\x98\xa0\xec\xa0\xd3\xb2\x7e\x69\xfe\xf5\xa6\xa6\xc4\xa8\xde\x77\x2e\xe5\x6d\x4b\x7d\xd9\xe2\x47\x3c\x2b\xbf\x59\xcf\x8e\x7d\x2e\x69\xa8\xca\x0a\x7a\x23\x6e\x2d\xbd\x7b\xee\x9b\x60\xa0\x70\xcf\xb1\x68\xee\x50\xf6\xd7\xbd\xef\x58\x3f\xd2\x17\x6d\xf8\xce\x48\x96\x9c\x9b\xa9\x47\xae\xa5\xdf\x4e\x3d\x5b\x79\x3e\xbe\x47\x48\x28\xc5\x27\xec\xa6\xcd\x2a\xcc\x4f\x10\x11\x5e\xe6\x76\x25\xae\x8c\xd0\xcb\x7c\x94\xd8\xe8\x77\x53\x3d\x1d\x0f\xb9\xf9\x2b\xf5\x08\xde\xb6\xf6\xf2\xfd\xc0\x79\x93\x47\xc9\x95\x60\xc0\xea\x29\xf1\x3b\x88\x83\xc3\xb1\x7f\xc2\x01\x8a\x67\x15\xbf\xf1\x25\xc2\x25\xa5\xfa\xf8\x71\xaa\xba\xd0\x8b\x30\x87\x20\xcc\x85\x08\xae\xe1\x37\x33\xd3\x08\xcd\x7e\x9c\xf4\x5e\xc0\xde\x4d\x2f\xf5\x3d\xf0\xd4\x56\x4b\xbe\x12\x54\x9a\x94\x26\xa7\x41\xfe\xab\xbb\xc4\x0f\xe0\x93\x38\x1c\xfb\x15\x2c\x50\x44\x54\xa8\xc0\x7a\x81\xba\xa4\x0f\xcc\xa2\xee\x2b\x9c\x05\x6a\x08\x56\xb9\x26\x60\x5d\x38\x2d\xd3\x13\xfc\xe0\x67\x9f\x4e\x85\x0e\xba\x3e\x4f\x2d\x83\x32\x6c\x86\x65\x93\xf0\x2a\x13\x4a\x72\x2c\x2c\x5b\x5d\x28\xae\x45\xbc\x70\x38\x76\x2b\xfc\x2d\xa5\xb8\xfc\x05\xe9\x10\xff\x65\xc9\x1a\x62\x1b\x25\xb9\xe0\x22\x71\x3f\x5e\x98\xc3\xc7\xc6\xc2\x9e\x67\xb4\x60\x22\xdf\x2a\xd5\x47\x2c\xd6\x35\x22\x75\x13\x16\x61\x73\x4d\xe6\x83\x05\x98\xec\x4f\xfa\x8c\xc5\xac\x16\x89\x77\x11\x17\xe3\x70\xec\x3d\xa8\xae\x5c\x59\xee\xc2\xf8\xc9\x9f\x56\x0c\x31\x56\x92\xcb\xf3\xdb\xe8\xfa\x89\x6d\xd9\xdf\x68\xa7\xc2\x4c\x32\xb6\x53\xf9\xbe\x8b\x54\xfe\x94\x3f\x2e\xf7\x14\x12\x0a\xd1\x66\xa6\xb4\x87\x32\x63\xd7\xef\xa4\xd3\xe4\xca\xd5\x6a\x91\x3f\x65\x23\x0e\xc7\x8a\xc4\x82\x65\xa2\xb2\x2a\x81\x01\xf7\x7b\xd1\x5b\xde\x24\xa9\x2b\xdf\x82\x7b\x2d\xe1\x79\x76\x08\x67\x7d\x68\xb8\x46\xce\x7a\xea\x73\x21\x6d\x84\x39\xec\x62\xaf\xd0\x61\x3c\xb2\x4e\x92\xee\xa6\x3f\xdf\xd5\x22\x56\xd3\x8f\xac\xee\x12\x12\xe8\x73\x70\xae\x4c\x21\x31\x4f\x7a\xbc\x6c\xa9\xa2\x8a\x53\x5e\x74\x4a\xae\x26\x5e\xcb\x13\x4b\x99\xf1\xaa\xac\xfa\xe4\x2b\x57\x0f\xa9\x9f\x88\xcf\x5f\x3c\x95\xa6\x2b\xc4\x4e\x5f\x4c\x39\xcd\xef\x3a\xf2\x58\x12\xcc\x5b\xb9\xcb\x55\x34\xc8\xf9\xb9\xba\x4a\x70\x8d\xf5\x0e\x57\xc7\x88\x23\x07\x25\xd7\x96\x8e\xe6\xba\xb3\x0d\x0a\xbf\x64\xb9\x61\x5a\x79\x56\x1a\x66\xdc\xb1\x2c\x77\x15\x2f\xf8\x87\x3a\x2c\x35\xf3\xc2\x66\xa5\x52\xfe\xcf\xf9\x82\x7c\x48\x4a\x38\xb2\x24\xf9\x69\xb2\xbe\x71\x93\xe8\xa0\x38\x78\x35\x9b\x5f\xc4\x73\x9a\x36\x93\x9e\x42\x19\x4b\x32\x2a\x6d\xa9\x5a\xc3\xcc\x2e\x7c\x50\x26\x42\xc0\xbc\xf9\xc5\xb3\x63\xae\x67\x2d\xcb\x3f\x77\x45\xaa\xde\x90\x5d\xe5\xfd\x44\x69\x97\xe1\xea\x64\x2f\xbf\x9a\xae\x7f\x78\x77\x72\xa2\xd2\xd6\x78\xbd\xb0\x47\xf6\x7e\xf5\x41\xfe\x46\xe1\xba\x69\x7b\x69\x9f\x68\xb3\xc5\x84\xd2\xfa\x86\x38\xc6\x8f\xc2\xd1\x1a\x0d\xdc\x9e\xfb\xad\xa2\x39\x66\x43\xe6\xcf\x92\xfe\xa0\xaf\xe9\xdf\x0b\x9e\x79\xbb\x2a\x57\xe6\x5a\x39\x76\xc8\xf7\x66\xde\x3e\x34\x90\x6c\x93\xfe\x70\xe7\x7d\x21\x5d\xb1\x6d\xb5\x11\xaf\x4f\x64\x3f\xed\x0c\x4d\x4e\x8b\x11\x3d\x2e\x2d\x69\xdb\xcb\xb8\x50\xd8\xd6\x64\x04\x6f\xce\xbd\x53\x37\x3f\x9a\x95\x39\x54\xf9\x22\x28\x3a\xbd\xb3\xf4\xb6\xd7\x44\xea\x9d\xc2\xaf\x8e\x57\x64\xef\x72\x1f\x1d\x22\x27\x7d\xca\xc8\xdc\x59\x2e\xdc\x9d\x3a\xba\xda\x9c\xe7\x26\xde\x3a\x8d\x42\xdb\x4e\xcb\xa7\x17\xb5\x87\x24\x1e\x85\x3f\x35\xc9\x12\x69\xb1\xbc\xda\xc9\xc4\xc6\x90\x94\x4a\x63\xfc\x66\x9f\x6d\x25\x11\xf8\x4a\xb7\x5d\xf9\x95\x84\xb0\xa3\x87\xb3\xfe\x00\x27\x2c\xf2\xd5\xe7\x40\xe7\xad\x9f\x95\x17\xa0\xd8\xc5\x78\x45\x21\xdc\x80\xc3\xf1\x14\xc8\x22\x3a\xdc\xf6\x97\xf0\x1c\x6e\x6c\xb2\x22\x7c\x8e\xf5\xa8\xe5\x11\x7e\x84\x84\x54\x3c\x06\x0c\x7d\x70\x25\x46\x00\xd1\x6d\x6e\x7e\x3c\x38\xf3\xe8\xda\xac\x76\x30\xc7\x82\xaf\xde\x0e\x45\x6e\x1d\x57\x1e\x80\xdd\x17\x27\x28\x98\xc8\x39\x1c\x8e\x47\x41\x36\xd3\x8f\xb7\x71\xa0\x42\x18\x6d\x1c\x83\x28\xb1\xcb\x6b\xad\xa0\xf3\x21\xbb\x2b\xb8\xd0\xd9\x8b\x43\xc5\x77\x21\xd8\x75\x22\x7f\x27\x34\x60\xff\x3d\x0b\x84\x8f\x58\xc4\xa4\xbf\x83\x7b\xb6\xb6\x2b\x67\x22\xf8\xc5\x09\x0a\x67\xd4\x0e\x87\xe3\x9d\x41\xa2\x68\xfc\xd6\x1e\x52\x1c\xf4\xb6\x71\x2d\xf1\x65\x8c\xaa\x86\x42\x3c\x17\xdc\x5e\xfe\x08\xfb\x76\x31\xbc\x78\x0f\xd6\xe0\x4a\xc9\x23\x63\x05\xf6\xa5\x99\xc3\xd8\xff\x87\xa2\xfa\xf0\x87\xf2\x61\x00\x00\xfe\x34\x54\x66\x7b\x4b\xd2\x4e\x8a\x4a\x7b\x4a\x11\x22\x23\x23\x45\x08\x15\x49\x38\x77\xf7\xcc\xdb\x7b\x6f\xe7\xee\x9c\x73\x0e\x67\x9c\xbd\x47\x56\x54\x8a\xf6\xd0\xde\x7b\x8f\x5f\xfb\xfd\xbc\x7f\xc4\xf7\xf3\xed\x5c\xe7\x67\x88\xa2\x3c\x5d\x54\xa2\x3b\x4a\xdd\x35\x51\xa1\x11\x53\xd9\x00\x20\xac\x26\x9f\x64\xfe\xe9\x9a\xca\x29\x45\x13\xdb\x52\xd8\xcd\x59\x33\x1b\x6f\xb0\x7a\x8f\xed\xab\x5d\xcf\xfc\x17\x63\x6f\x11\x31\x63\x43\x56\x98\x9f\x30\x9e\xee\x3a\x6a\x5a\xcb\x90\xae\x9b\x96\x5f\xcc\x88\x5e\x24\xd7\x9a\x18\xb4\x89\xfd\xb9\x1a\xfa\x7f\x00\x20\xb8\x42\x51\x31\x45\x9d\x27\xc4\x7e\xc8\x70\xeb\x19\xe1\xab\x4c\x56\xe3\x2a\x01\xe7\xe8\xe5\x1a\x05\x3f\xf2\x50\x61\xc5\x47\x5e\x40\xf0\x90\x79\x27\x37\x71\xd7\xec\x42\x19\xc7\xbc\xf6\x81\xfe\x33\x67\xca\x22\xa6\xe6\x06\x67\xea\xa4\x91\x6a\x09\xcb\x17\x00\xf8\xf7\xa9\x16\x86\xf9\x74\x65\x2e\x0a\xff\x6a\x1d\x91\x23\xca\x30\x36\x24\x29\x8d\xc9\xef\xab\xdb\xe5\x9d\x07\x07\x2b\xc6\xcb\xac\x82\xa7\x96\x1c\x92\x10\xbc\x59\xc6\x12\xb1\xcb\x5a\x34\xef\x9f\xc8\x7e\xd1\xf1\xdc\x01\x61\xc1\xa4\xd0\x9c\xb5\xdc\x63\x00\xc0\x33\xd1\x37\xd3\x5b\x4e\xcf\x33\x35\x43\xbf\x5b\x70\x46\xc7\x53\xe6\xfa\xeb\xf9\xec\xa4\xef\xd5\x0b\x74\x1f\xa3\xef\x97\x1f\xd7\x60\xfb\xbc\x8a\xeb\xd4\x81\x3b\x6f\x15\xfc\x51\x1d\xf1\xfc\x9b\x17\xa8\x78\xb7\x68\x51\xae\xb5\x8c\x32\xe9\x94\x6a\x95\xc0\x1a\x00\xb8\x75\x0c\x02\x4d\xd5\xd1\x51\xed\x04\xbe\x6e\x99\x59\xf1\x2f\x5d\x57\x9f\x5d\xfa\x20\xf1\x4b\x55\x43\x71\xcd\x81\x57\x65\xef\x0a\xcb\x83\x8e\x17\x7b\x18\x7e\xef\x5c\x5c\x90\xa5\x2f\xf7\x24\xea\xda\xb4\x82\x85\x4f\xd5\xc7\x54\xb9\x93\x40\x65\x92\x68\x27\x00\x70\x47\x30\x8f\xd2\xc6\x76\x08\x1b\x86\xc0\x84\xe6\x37\xb5\x19\xe9\x4e\xf5\xfe\x55\x13\x13\xa1\x2a\x7a\x79\xf9\x01\xb0\xac\xc6\x8c\x0f\xb2\x2e\xfa\x52\x54\xe4\x75\xab\xc0\xc3\xc8\xf6\xf4\xd2\xe1\xf4\x6b\x17\x5e\x54\x4f\x53\xef\x9a\xc4\x52\xfc\x10\xaf\x04\x00\x4e\x21\xb3\x89\x4a\xe9\x88\x68\xfd\x48\x7c\xd3\xdc\xd8\x14\x77\xb2\xaa\x7e\x6a\xdd\xad\xc4\x69\x55\xde\xd5\x51\x07\x1c\xcb\x8e\x5a\xec\x03\xdb\x8a\xf2\x4b\x8b\xbc\x0a\x0c\x37\x8b\x28\x9e\x0b\x74\x53\x0c\xbb\x16\x5e\xcd\x31\xe5\xca\x26\x35\x28\x8e\x89\x1f\x01\x93\x39\x1e\xcc\xeb\xa4\xef\xe7\xd2\xc0\x04\xfc\xde\xde\x4c\x90\x75\x62\xcf\x69\x12\xa8\x8d\xef\x69\x41\xc1\x17\x11\xcf\xea\xd3\xa0\x23\x01\x69\x55\x47\x60\xbb\xed\x0b\xcb\xa2\xe1\x47\xab\x3c\x8b\x4e\x22\x8f\x5c\x96\x17\x24\x63\xd3\xec\x3f\xeb\xff\x90\xc2\x00\x40\x7c\x83\x74\x98\xd4\x73\xce\x16\x7e\x89\x5f\xde\x3b\x05\xbe\x75\xc2\xe5\xf4\x12\xb8\x33\x3e\xbf\x65\x05\x7c\x23\xa2\xb7\x7e\x3e\x32\x3b\x20\xa4\x6a\x2e\x22\xda\x6e\x5b\x36\x1b\x75\x5f\xb5\xb4\x68\x13\xfa\xcd\x65\x5e\xc1\x26\xec\x83\xfd\x3f\xfd\x05\xd2\x15\x00\x10\xb7\x91\x52\x48\xb4\xb3\x66\x4c\x86\x1f\xd5\x53\x8b\x85\xa6\x7e\xeb\xb8\x80\x8d\x8f\xcf\x6e\xbe\x86\xbe\x8d\xc8\xaf\x1b\xc2\x46\x06\x78\x56\x5e\xc4\x7c\xb7\x7d\x28\x1d\xc0\xea\x57\xcd\x36\x7d\x27\xf9\xb8\xcc\x36\x7c\x27\x4f\x76\xb0\xd6\xd3\xc8\x3a\x00\x10\xd3\x49\xb5\xd8\xbf\xfe\x47\xf4\x71\xd9\x92\xee\x4f\xb4\xa3\xa9\x39\x1d\xf6\xd4\xfe\xf8\xa5\xcd\x8e\xd4\xc8\x88\x43\x75\xb3\xa8\x33\xfc\x7f\x54\xce\xa0\x5a\x6d\x3b\x5d\x3a\x99\xea\xb4\x6a\xbc\x29\x88\x1a\xea\x32\xc3\xb0\x93\xfa\xd0\x61\x5d\x5e\x15\xb5\x10\x00\x44\x83\x64\x23\x56\xd5\xbf\x90\xf3\x29\x7b\x7b\xf7\x5a\xf6\xcf\xd4\x6d\xed\xfb\xd8\xa3\xe3\x1e\x36\x25\xb2\xd6\x45\x2c\xa9\x4d\x61\xaa\xfc\xcf\x59\x8e\x31\x5d\xb6\x69\xcc\x89\x8c\x3b\x1e\x5f\x0b\x85\x8c\x2e\x97\x09\xf9\x27\x99\x2b\x1d\x4e\xea\x4a\xe9\x57\x01\x40\xf8\x90\xd2\x8a\xf9\xf5\x65\x8a\x77\xe0\x86\xbb\xa8\xc2\x27\x29\xf7\xda\x72\x05\xc2\x38\x49\x63\x0d\x3f\x26\xfc\x7d\x4d\x07\x2f\xda\x5f\x5e\xd1\xc8\x25\x6d\xcb\x28\xa9\xe2\xdc\xf2\xb8\x61\x3c\xcf\xc1\xbb\xd8\xeb\x85\x9c\x8b\x0e\x65\x5a\x19\xf3\x09\x00\x08\x1e\x51\xbb\xd1\x92\x33\x32\xf5\x4f\xdc\xea\xce\xfc\x9c\x29\x29\x9e\xad\x55\xca\xb5\x87\x9f\x37\x74\xc8\x93\xc2\xbd\xab\x4f\x4b\x7b\xfd\xc7\x94\xd7\x4b\x22\xb6\xd9\x16\x17\x8b\x57\x78\xe8\x0b\x1a\x44\x27\x5c\x96\xe4\x45\x08\x6b\xc7\x3b\x6a\x66\x73\xea\x01\x80\xaf\xa0\xaf\x47\xee\xf4\xbe\x2e\x34\x67\xa5\x9d\xfe\x5a\x30\xfb\x78\x56\x2b\xa0\xcf\x3d\x3c\xaf\xc1\x4a\xb7\x68\x3f\xb3\xea\x77\xee\x0b\xbf\xd8\xb2\xf7\x39\xaf\xb6\x32\x8b\xee\xaa\x02\x3d\x76\x19\x5e\x2a\x47\xcc\xfb\xa7\x23\x4a\x6f\x8f\x0f\x51\xff\xe4\x5b\x03\x00\x4f\xcd\x88\x42\x26\xf6\xc6\x57\x9e\xcc\x34\x9c\xce\x2a\x4f\x38\x66\x69\x21\x99\x8f\xc6\xc6\xd6\x13\x8a\x4e\x84\xf5\x56\xc5\x1b\xcb\xf7\xb4\x95\x85\x18\x42\xb7\x5a\x17\x6d\xd2\x4f\x76\xff\x66\xd8\xa4\x51\xb9\x8c\xd4\x56\x2b\xa3\xc7\x0b\xd4\xb6\xc2\x31\x00\xc0\xbd\xcf\x74\x85\x0b\x7a\x97\xd5\x5d\xc9\x5c\x7f\x7a\x5d\x35\xf5\x58\x68\x8b\xb7\x25\x24\x76\x74\xbd\x67\xd9\xf2\xb0\xf4\xaa\x69\x25\xde\x7b\xf0\x65\x56\xa6\xe2\x2d\xc3\xa6\x97\x05\xfb\xdd\x6f\xe4\x3f\xd6\xdd\x74\x19\xa3\x0d\x52\x5d\x19\x6f\xc9\x91\x09\xaf\x03\x00\x97\xc2\x4c\x85\x37\xf7\xbc\x6c\x36\x65\x5c\xef\xf8\xd8\xe0\x7a\xf4\x6f\xf3\x9f\x9a\x9b\x31\xcd\x75\xcf\x2a\x75\x61\x1e\x95\x6d\xe5\xa4\x3d\xbb\x4a\x0b\xcd\x63\xb7\x74\x98\x68\x85\xb7\xdc\x07\xf2\x71\x7a\x99\xcb\x14\xcd\xcd\x9c\xcf\xe3\x5f\xa9\x7e\x8b\xb2\x00\x80\x6b\xc3\xc4\x88\xa5\x83\x87\xa0\x33\xe9\x4e\xe7\x02\xa0\x8e\xa4\x88\xde\xad\x50\xc1\x41\xa7\xd3\x0e\x50\x7f\x70\x4e\xf3\x79\x78\xfe\x6e\x61\x9d\x10\xae\xdd\xd8\x5d\x19\x84\x10\xdc\x92\x4b\xdd\xd0\x54\xa7\xd1\x45\xcb\xb0\x52\xdb\xe0\x02\x06\xa9\x0a\x00\x24\x6f\x49\x52\xa2\x70\x10\x40\xd7\xa6\x4f\x3b\xfb\x0e\xf9\x99\xb4\xb3\xe7\x01\xd2\x78\xd0\xba\xa3\x01\x31\x05\xf3\x9a\x41\x64\x60\x37\x5a\xb7\x1d\x5d\xb6\xb1\xae\x72\x1c\xda\xec\x76\xd8\xfc\x03\x23\xcc\xf9\x61\xfa\x49\xc2\x6c\x0f\x14\xec\x23\xcf\x02\x00\xc9\x00\x49\x49\x3c\x7a\xb1\x80\x74\x3e\x7d\xf4\x59\x1e\x29\x26\x69\x69\x0f\x86\x7d\x8f\x7e\xdf\x11\x89\x55\x04\xe3\x9a\x9d\x30\xe3\xee\xd4\xda\xe7\xd8\xb5\x8d\x46\x8b\x85\xb4\xce\x2d\xca\x5c\x4d\xea\x9d\xf3\xd1\x54\x45\x36\xda\x1e\x2a\x18\x41\xbe\x00\x00\x12\x0e\xe9\x3a\x71\xf2\x85\x6b\xf4\x9f\x27\x6b\xfb\x3b\xe8\x9e\x89\x77\xbb\x2b\x69\xc4\xe8\xc6\x76\x11\xf5\x63\xf0\x9e\xa6\x03\x54\xdd\x6e\x9f\xda\x79\x54\x64\x23\xb3\xe2\x29\x55\xe2\x16\x59\xf2\x9b\x7a\x65\xce\x87\xc2\x37\x34\x86\x2d\xc3\x30\x97\x6a\x02\x00\x71\x27\xb9\x91\x38\xee\x82\x3d\xb7\xf0\xa4\xb4\xef\x2b\x47\x9e\x58\xd9\xf5\x90\x2d\x8e\xce\x6d\xeb\x67\x55\x05\x6f\x6d\xcc\x65\x8d\xdd\xbd\xa9\x26\x96\xc9\xde\x48\xa9\x98\xc7\xdc\xed\x16\x51\xb2\x94\xb9\xc7\x69\x84\xf1\x07\xf3\x9d\x6d\x6f\xbe\x15\xbd\x14\x00\x44\x5d\x94\x01\x82\x69\xc0\x5f\x5c\x7d\x32\xb0\x6f\xa5\xc8\x37\x11\xe9\x9a\x26\x78\x17\x4d\x68\x1b\xcd\xaf\x09\x5e\xd9\x30\xcc\xb3\xec\x76\xab\xce\xe5\x5e\xde\x08\x96\x87\x73\x37\xb8\x45\x15\xfb\x73\x47\x39\x39\x16\xfc\xe2\x6e\xb4\x9b\x96\x77\x93\xa9\x02\x00\x61\x3d\xf5\x26\xc1\xf7\xfc\xae\xdc\x91\x69\x4f\xce\x2c\xcd\x99\x9c\x68\xd7\x69\xa7\x5c\x7b\xe0\x4f\xcb\x7b\xf9\xb1\x7d\x55\xf5\x6d\xd2\x9b\xbb\xfa\xab\x08\x12\x64\xe3\xfa\x32\x37\x31\xd1\x6d\x67\xd1\x54\xb1\x83\x53\x80\x21\x5f\x48\xb3\xa3\xe8\xf6\x72\x16\x02\x80\x20\x92\xbe\x0e\x9f\x7b\x0e\x2d\x5c\x9b\xe6\xdf\x1b\x6d\x30\x1c\xa1\x9c\x5e\xa3\x5f\x72\x20\xa5\x65\xbc\xf6\xec\xbe\x59\x75\xd7\x73\xcb\x77\xf9\x55\x0a\x73\xee\x6c\xb8\x53\xba\x4d\xc5\x74\x9b\x62\x72\x51\x3c\x72\x8a\xc8\x57\x48\xa7\xdb\x5d\xd1\x3a\xf0\x36\x01\x00\x7f\x2f\x63\x03\x7e\xd1\xd9\xb3\x96\xc4\x13\x43\x3d\x95\x65\xd1\x47\x46\x76\x08\x4a\x32\xa2\x9e\x37\x1f\x32\xe5\x06\xc9\xeb\x66\x1a\xa7\x78\x3f\xb2\x0c\xe5\xff\xdd\xa0\x34\x63\x79\x27\x96\x7f\x2e\xdc\x97\x9b\xef\x84\xe8\x2d\x8a\xf9\xf6\x4b\x35\xf6\x82\x11\x00\xc0\x63\x33\xde\x65\x0f\x9f\xa5\xd7\xc2\x27\x48\x3d\x71\x55\x2b\x13\xba\x3b\xb6\x54\xcc\x88\x2a\x69\x1e\x5b\x3a\x37\x28\xa2\xb6\xb1\x98\xe0\x5d\x6b\xc9\x28\xac\xde\x80\x98\x67\x19\x56\x2c\x7f\x6f\x7c\xa4\xe5\x38\xe5\xeb\xd7\x2a\x4f\xda\xc7\xe6\xb2\x05\xcd\x00\xc0\x5b\xc2\x5c\x94\x2d\x3b\xbb\xbe\x09\x38\xe1\xd9\x63\x5b\x47\x4f\x10\xb4\x3f\xae\x0e\x8d\xc2\x37\x19\x2d\x7b\x82\x96\xd5\xee\x2b\x9b\xea\xad\xb2\x8c\x2e\x66\x6c\xc0\x95\x94\x19\x83\x96\xff\x33\xc6\xe8\xfe\x38\x0d\xe6\x95\xa8\x8e\xd9\x17\xa9\xdf\x08\xff\xff\x85\x85\xe9\xf9\x2d\x15\x66\x81\x1b\x9e\x9d\x81\x3b\xc0\xaa\xeb\x1a\xf8\x21\xf8\xa5\x77\x32\x32\x1f\x5a\x57\x4d\x40\x92\x20\xad\x8e\x88\x9c\x83\x95\x6c\x47\xd4\x1e\xd9\x70\xca\x1d\x4d\x40\xae\x44\xf8\xa2\x1d\xe8\xd1\xf5\xcf\xb0\x19\xe8\x93\xf1\xff\xb0\x5c\xf4\xdb\x57\x21\xf4\x10\x35\x3d\x7d\x09\x3b\xa3\x25\xd7\xda\xe1\x30\x34\xb7\x67\x07\x6c\x42\xd1\xaa\x4a\xf8\x03\x2a\xd3\xf6\x23\x47\x30\x7b\xd6\x29\xa4\x0e\x0b\x4f\x57\xa3\x4e\x98\x22\x5c\x88\xb2\xb0\xf3\xeb\x63\xd0\x6f\xd8\xfb\xf1\x12\x8c\x87\x15\x7d\x91\x41\xde\xd4\x55\x4f\xbe\x41\x0a\xca\xd9\xab\x77\xa0\xf3\x94\xd4\xee\x78\xd8\x95\xfc\xb4\xf2\x01\xcc\x20\xcb\xb4\x1e\xf0\x0b\xb2\x98\x79\x16\xd9\x4f\xce\x4d\xb7\x46\x86\xc8\x94\xf0\x51\xe8\x1e\x72\xe4\xba\x37\x68\x27\x79\xfe\xf8\xf5\x58\x1c\x89\xfe\x89\x06\xfa\xf2\x66\x3f\x7a\x03\x16\x70\xc7\x5d\x7e\x08\xbe\x62\xbf\xe8\xd4\x42\xe1\xac\xab\x16\x1f\xe8\x34\xf3\x56\x6e\x3b\xec\xcc\x9c\xcd\xe0\xc0\x02\x46\xfc\x49\x7b\xc4\x99\x2e\xdc\xef\x8c\x54\xd2\xca\xd7\xad\x40\x57\x53\x87\x1c\x06\xd1\x0b\x94\xac\x0f\x2d\xc4\x68\xb9\xfe\xe1\x56\xe2\x69\xe9\xbd\x4b\xb6\xe0\x02\xc9\x84\x8e\xcb\x20\x2a\x0a\x2c\xe7\x83\x0f\x05\xf9\xea\xe5\x50\x20\x7f\x36\x7d\x21\x34\xc0\x95\x9d\xf8\x08\x1f\x67\xff\x0e\xdb\x82\xd8\xb2\xa2\xd6\xe6\x20\x7c\xc6\x25\x87\x02\xd4\x81\x96\xfd\xae\x8f\x30\x90\xf7\xf9\xfe\x56\xa2\x8b\x16\x19\x5c\x4b\xa4\xaa\xef\xb6\x8f\x22\x9e\x51\x25\x95\x5e\x03\xe7\xca\xbf\xab\x54\xa0\x4c\xaa\xa5\xf6\x40\xb3\xc4\x1b\x53\x6f\x41\xa7\x05\x17\x43\x8f\xc2\x47\x79\x71\x6b\xa7\xc0\x4f\x39\x33\x1d\x72\x90\x00\x46\xe2\x9b\x68\xfc\xe7\x4a\xfd\x9d\xdb\x04\xbf\xb2\xaf\x03\xc5\x04\x6d\x49\x40\x8b\x80\xf0\xa1\xd0\x50\x82\x11\x83\xf3\x3f\x2a\x32\x89\xfd\xba\x9d\xe4\x87\x60\x98\x1a\x4a\xf1\x06\xff\x53\x14\x84\x6c\x80\x74\x92\xeb\x9e\x47\xe1\x29\x42\xb1\x83\x0e\x3e\xc4\x9e\xfd\xb2\x0b\x2f\xea\x6a\xbf\xbd\x0e\xff\xb0\xed\xc2\xb9\x4d\x04\xa7\xa6\xd1\x4d\x1e\x04\xa8\xd6\xb1\x68\x0b\xe1\xbe\x65\xb6\x2c\x9a\x18\x62\xb6\x22\x8d\x21\xde\x31\xf6\x1e\xab\x03\xa1\xbc\xf4\xe0\xb1\xd0\x6c\xf5\x96\x35\x35\x10\x43\xb1\xcc\x41\x08\x75\x71\x35\xcf\xd3\xf0\xef\xaf\xea\x6f\xda\x12\x46\x5f\x1c\xec\xfb\x46\x58\xd0\xff\xa2\xfe\x37\x21\xbb\xeb\x79\xe1\x5c\xc2\xf9\xd6\x2a\xc9\x11\xe2\xea\xfa\x48\x74\x37\xb1\xda\x72\xe6\xe8\x6e\xd0\xb5\xf8\xd5\x3e\x47\xb0\xd4\x00\xae\x59\x00\x4d\xd3\x64\x38\xf0\xa1\x20\x7e\xc5\x33\x11\xfe\xde\xdd\xf9\x37\x96\x12\x46\x5c\x7f\xd7\x37\x9e\xe0\x3c\x24\xa9\x9f\x44\x48\x3f\x37\xdb\xb8\x83\xd0\xd1\x1d\x2d\x96\x13\xe7\xb4\x9e\x44\x44\x44\x59\xdd\xf6\xe4\x4a\xe2\xaf\x72\x73\xd0\x10\x98\x68\x2a\x5d\xfd\x0f\x1c\xd4\x9d\x75\xa8\x01\x7f\x0a\x62\x9f\x7e\xc0\x77\x3f\xb1\x5c\x67\x13\x46\xdc\xf3\x3e\x13\x4b\x98\x70\x03\xac\x4b\x24\xec\x1f\xd2\x15\xe4\x12\x34\x67\x8f\x8b\xfe\x12\xde\x77\xfe\x44\x26\x12\x0f\x36\x6f\x4b\xf6\x23\x5a\xaa\xbe\x04\x95\x83\x23\xcc\x6b\xd6\x58\x83\x09\xfa\xf0\xf1\xd3\xc0\x0c\x81\xe9\x43\x1d\x56\x4d\x84\x1e\x52\x30\x11\xf1\xcb\xa5\x4e\xec\x28\x18\x75\xda\x88\x1d\x07\x8b\x2a\x08\xd8\x11\x68\x41\xee\x18\x2c\x03\x9e\xce\x98\x8e\x65\xc0\x83\x69\x55\x18\x09\xa1\xef\x9f\x83\x89\x51\xcf\x75\x29\x98\x05\xbd\x39\x7e\x15\xf6\x15\xb3\x79\x7f\x0f\x1b\x83\x5c\x79\x50\x81\xfe\x87\xbc\x1a\xfa\x88\xde\x47\x3e\x74\xdc\x44\x5f\x21\x8f\xca\x4b\xd0\xd7\xe8\x18\x75\x10\x36\x0e\x45\xe9\x51\x98\x2d\xfa\x2c\x6d\x19\xb6\x09\xdb\x1e\x66\xc4\xc2\x31\xc1\xda\x6b\x18\x0b\x1b\x76\x28\xc5\x7a\xb1\xf6\x77\xaf\xd1\x13\x94\x35\xf7\x7b\xd1\xe3\xe4\xf7\x43\xb6\xe8\x21\x72\x6e\xc7\x08\xf4\x24\x79\x73\xd9\x23\x94\x4a\x1e\x95\x53\x82\x6a\xc8\x13\x68\xcd\x68\x0d\x79\xf1\x89\x5c\xf4\x3d\x79\x51\xd8\x74\x6c\x0e\x79\xc6\xda\xa3\x58\x04\xd9\xde\x21\x16\x33\x90\x14\x6f\xbe\x22\x27\xb9\x23\xef\xde\x41\x70\x9c\x29\x17\x5d\x11\x02\x7b\x74\xdb\x76\x44\xc1\xb2\x2b\x0d\x42\x9a\x98\xcb\x54\x6b\x90\x5b\x0c\x2a\x95\x88\x8e\xa5\x3f\x48\x95\xa3\x7b\xe8\x4b\x42\x97\xa1\x0a\xda\x71\xcf\x33\xe8\x15\x6a\xbd\x83\x1d\xb6\x98\x02\xbe\xde\x0e\x2b\x65\x61\x77\x3c\x61\x83\xa4\x65\x20\x15\xae\x15\x8f\x6f\xc9\x81\xfb\x85\x27\x4b\x3a\xe0\xa7\xfc\xbb\x8a\x8b\x88\x3d\x2f\x93\xe2\x85\xec\xe2\x5a\xa7\x88\x91\x1c\x36\x3f\x24\x06\xf9\xc4\x9a\xec\xb9\x17\x75\x63\xd4\x3a\x4c\x44\x53\x69\xd9\x2f\x13\xa0\x6f\x3a\xee\xed\xbd\xd0\x3f\xcd\xa6\x73\xa5\xf0\x94\x9c\xb6\xa6\x9b\xf0\x6c\x65\x7c\xb1\x03\xec\x26\x1f\x2f\xf7\x86\x63\x24\x37\x49\xaf\x61\x8d\x48\x79\x9c\x04\x7f\x15\xf8\x04\x2b\x91\x40\x1e\xb0\xe6\x16\xc2\x64\x7f\x76\x98\x8f\x94\x30\xa2\x9f\xdd\x86\xd6\x54\xdc\xbf\x71\x0b\xda\x50\x1a\xd7\x3f\x03\xda\x56\x74\xbf\x21\x19\xf2\x33\xc6\x14\x76\x43\x87\xf5\x97\xa5\x4b\x20\x89\x36\x00\x1b\x0f\xdd\xc8\xa9\x3c\xfa\x13\x5e\xa9\x18\xbb\x0f\x83\x69\x92\xb4\x35\x01\x70\xb9\xf0\xa8\xc3\x7e\xb8\x8c\xed\xf0\xc4\x0b\xbc\x73\x5a\x7e\xcd\x0b\xbc\xd9\xf2\xb8\xd7\x00\x0e\x35\xec\xac\xb3\x06\x6f\x55\x73\x0b\x18\xe0\x9b\xf2\x26\xf1\x54\xc8\xb1\xf8\x2a\xb2\x01\x3a\x5c\x70\x36\x39\x03\xb2\xe8\x2c\x41\xa1\xd0\xbf\x9c\xd6\xd5\x45\xf0\x1c\xf9\x1b\x87\xc3\xf0\x58\x2e\xf5\xd1\x28\x68\xe6\xe5\xa5\x57\x66\x80\xef\x07\xb4\xdd\x38\xf0\xfc\x99\x0f\xd5\x4f\xc0\x73\x9d\x8e\xf9\x78\xf0\x4a\xcb\x4c\xa1\x1b\xf8\xad\xf6\x2b\xc4\x80\x56\x56\xe8\x92\x1c\xa0\x98\xe2\xb1\x81\xa9\x90\x24\x7f\x78\xf5\x1c\xa8\x34\xf7\xb7\xc3\x61\x48\xc8\xa7\x3c\x5c\x09\x4d\xbb\xad\xbb\xbc\x19\xfc\x78\xb5\xa4\x4b\x0a\x9e\xbf\xc8\xaa\x06\xc0\xae\xfe\x75\x7a\x2d\xd8\xd3\x59\x26\x48\x04\xef\x36\xff\x07\x5e\x87\xc6\xd7\x5a\x25\xc2\x90\x5b\x59\x6b\xe0\x1c\x28\xd0\x04\xac\xfa\x0a\x25\xea\xbc\x1d\x30\x68\x93\x60\xf9\x03\x39\x64\xfd\x68\xfe\x25\x35\xf8\x78\xf8\x7e\xe7\x4b\xb0\xe5\x5a\x42\x55\x04\x68\xba\x58\x92\xf7\x0b\xcc\xeb\x2b\xe6\x0f\x81\xe5\xa7\x33\xc1\x28\xf0\x4a\xe3\xf7\xc4\x59\xe0\xfd\xca\x3f\x7b\xbf\x83\xaf\x4b\xf0\xab\x7e\x83\xbf\xf2\xce\x3a\xdc\x07\xab\x04\x99\xaf\xba\x29\x9f\x08\x03\x77\xe6\x53\x40\x62\xcc\x80\x91\xe2\x48\xec\x6c\x1d\x4d\x1e\x02\xa7\x9b\x77\x93\x85\xa0\x4a\x79\x98\x1c\x08\xa5\x51\x2e\x92\xa7\xc2\x51\x29\x5f\x49\xf7\x11\xd7\x90\x07\xa4\x32\xe4\xb3\x67\x37\x49\x8c\x36\x38\x2c\x25\x55\x63\xe3\x5f\x39\x50\x82\xe0\xef\xc3\x81\xe4\x4f\xc8\xfc\xf3\x5f\xc9\x52\x64\x63\xcb\x36\xf2\x7e\x64\x57\x09\x44\x76\x44\x32\x14\x06\xd2\x6b\xe4\x25\x65\x26\xa9\x01\x3d\x91\x72\x92\xa4\x45\x1f\x86\x1c\x21\x11\x30\x5f\x4f\x37\xd2\x49\xac\xde\xbe\x84\xc4\xc6\x1a\x5e\xce\x25\x57\x91\x23\x6e\x67\x92\xe3\xc8\x33\xce\x4f\x24\xdb\x93\x9e\x35\xa7\x90\x9e\x93\xa8\xc5\x4d\xa4\x6a\xd2\x31\xf9\x47\x12\x87\x84\x92\x61\x52\x3c\xc9\x72\xfc\x1b\x29\x94\xd4\x16\xfc\x8c\xb4\x9d\x34\xb0\xa6\x9b\xb4\x89\xf4\xca\xfe\x28\x29\x8e\xc4\x7d\xbe\x9c\xd4\xc2\x7e\x7f\x53\x48\x3a\xc5\x5e\x70\x76\x2d\x69\x2d\xcb\xb9\xf1\x0c\x69\x24\xd3\xbf\x68\x13\xf6\x82\xc1\x90\xc9\xb0\x73\xf4\x8f\xa4\x60\xac\x91\x7e\xe4\xd8\x27\xac\x96\xd6\xbe\xef\x0f\xd6\x46\x9b\xb1\xc6\x15\x6b\xa1\x0a\xec\xe7\x61\x8f\x28\x47\x9e\x72\xb0\x1f\x52\xfb\xeb\xef\xb0\x0a\x71\x6e\x1f\x1f\xc3\x89\xc6\x37\x2c\xc6\xb6\x0a\xb8\x85\x95\xd8\x6c\xfe\x14\xa9\x1b\x66\xc5\xed\xc6\x66\xa0\x7f\x38\x59\x47\xdf\x61\x63\xd9\x53\xf7\xed\xc4\x66\x32\x5b\x57\xf7\x63\xd3\x18\x1c\xfb\x9d\xd8\x62\xda\x81\xc7\xfd\x98\x8f\x76\xf1\x35\x67\x6c\x9c\xfa\x67\xef\x43\xf4\x86\x4a\x5d\x97\x85\x6a\x15\x07\x8d\x76\x68\x9a\xcc\x45\x6c\x41\x63\x25\xd6\xc8\x39\x34\x46\xf8\x2a\xf9\x31\x7a\x9c\xdf\x15\xc4\x46\x89\x5c\xe3\xea\x14\x34\x9d\x7d\xc1\xfe\x04\x7a\x84\xb1\xe5\xe1\x62\x34\xbf\xdc\xe5\xb2\x06\x8d\x28\x39\xdf\xed\x8b\x4e\x35\xa5\xd5\x8c\x45\xae\x16\x4c\xcd\xef\x45\x0a\xf3\xcc\x42\x15\xa2\xd2\x04\x40\xdf\x90\x5c\xd5\xed\xa4\x64\xc4\x28\x8f\x0b\x84\x10\x8b\xf8\xcf\xaa\x87\x88\x42\xb8\xde\xde\x84\xc4\xb3\xee\xdc\x63\xa1\xa1\xed\xc7\x86\x26\x20\x7f\x9b\x3e\x9d\xee\x43\xea\xea\xa0\xca\x22\x24\xb5\xf2\x5b\x1e\x0b\xf1\x2c\x0b\xe4\xb3\x90\xf9\x45\x6a\x70\x3e\xb2\xd0\xd0\x7b\xe4\x31\xb2\x44\xfb\x6c\x6f\x24\xe2\x9a\xe3\xb9\x6a\x07\x62\x25\x2f\xb6\x6f\x81\x1b\xb9\x5b\xef\xc4\xa2\xe9\x83\x65\x17\x5e\xa2\xb6\xe7\x12\xda\x2b\x90\x92\x9e\x4f\x15\x02\x64\x7f\x47\x80\x96\x85\x4c\x6b\x22\x70\xcb\xe1\xef\x35\x5c\x02\x02\xbf\x29\x3f\x99\xc0\x84\xaf\x15\x39\x05\x9c\x80\x3b\xf3\xb7\x78\x34\xc2\xd2\x5c\xc4\xbe\x1d\xde\xcc\x5f\x31\x2c\x43\xe1\x9b\x13\x2e\x4c\x46\x27\x5e\x8e\x6a\xbb\x89\x98\x07\x70\xe5\x16\x64\xcf\x99\x20\x4d\x2d\x62\xd5\xf1\x99\xf3\x02\xbe\xd3\x84\xc7\x5f\x82\xcf\x56\xf7\xc5\xff\x07\x17\x96\x0e\x04\xcc\x84\xd1\xc2\x58\x0f\x3e\x1c\xa0\xad\xb4\xbf\x07\x3d\xe5\x5f\x1d\x1e\x81\x22\xf7\x85\x03\x78\xd4\xf6\x16\xad\xcd\x13\xc9\xb9\xb2\xbd\x7c\x34\xb2\x72\xa0\x42\x33\x15\xbe\xd7\xfb\x80\x13\x09\x97\xb4\x3f\xc3\x47\xc0\xbc\x86\xf2\x78\x35\x1c\x5e\x69\xe3\xff\x01\x9e\x5b\xdc\xe6\x21\x85\x1e\xe5\xb9\x39\x6c\x82\xa2\x05\x8e\xf7\x67\xb1\x73\xf0\x3e\x97\x6c\x59\xd5\xf8\xcf\x5d\x2c\xa6\x99\x40\xa8\xa6\x33\xbe\x11\xfe\xe4\x13\x19\xbb\x89\x5a\x61\x1a\x9d\x0e\x22\xd0\x79\xda\x79\x28\x23\x69\x0e\x6d\x12\x9c\x1a\x68\x4d\x4d\x44\x22\x3d\x86\x29\xaf\xd1\xbd\xb6\x12\xca\x39\xf4\xc1\xbd\x48\xf6\x24\x28\x72\x68\x1b\x6b\x15\x94\xd7\x39\xc8\xdc\x0c\x0d\x57\xb5\x30\xb8\xb0\xad\xbe\x94\xfe\x04\x0e\x17\x54\xd3\xdd\xe0\xc7\xd0\x62\x1a\x09\x21\x27\xf2\xa9\xc3\xe8\xcc\xbd\x24\xea\x4e\xb4\xc4\xe3\x30\xe5\x1a\xe6\x63\xbb\x94\xd2\x80\x41\x77\x85\x2c\x19\x26\x18\x4c\x65\x36\x60\x19\x9d\x13\x18\x83\x58\x62\xe5\x6f\x86\x23\xb6\x3d\xef\x37\x1d\xc6\x36\x0b\x26\xd3\x2e\x63\xa7\x40\x25\x6d\x15\xd6\x98\x38\x85\x9a\x83\x7d\xdc\x6b\x47\x9d\x40\x5a\xe4\x61\x43\x29\x26\xe1\x6d\xfe\x51\xb8\x24\xef\xe1\x6b\xcc\x48\xd6\xb4\x0b\x97\x18\x7a\x66\x62\x47\x3a\xbd\x85\x91\x63\xe1\xd3\x97\xd1\x1f\xeb\x2c\x34\x1d\xdd\x8b\xf7\x98\x66\x45\xbb\x40\xe4\x53\xb3\x68\xf1\x47\x9c\x28\x7f\xa8\xf7\x03\x76\x50\x78\xd4\x23\xee\x2c\xca\x32\xea\x4c\x9b\xc7\x94\xd1\x94\xd1\xb7\x97\x30\xca\x45\x9d\x03\xa1\xf4\x47\x42\x66\x5b\x2f\xdd\x45\xb0\xaa\xfc\x13\x8d\xc2\xbb\xae\x75\xa5\x7e\xe0\x72\xb8\x18\x35\x8e\x93\x48\x08\xa5\xdc\x63\xef\x4a\x58\x48\x39\xcc\x72\xf4\x17\x90\xdf\x30\xfe\x73\x5f\x49\xa6\x33\xa6\xd8\xda\x92\x7d\xa8\x77\x6f\x86\x31\x3c\xd5\x47\xcf\x1d\xa7\xa7\xaa\xf0\xad\x53\x68\x66\x45\x4c\x59\x08\xf5\x9b\x2c\x34\xd7\x40\x0d\x97\x04\x73\x66\x50\x06\x45\x69\xf8\x19\x94\x10\x01\x3b\x7e\x21\xf9\x22\xcf\xe0\x77\x8f\x1c\xca\x39\xb7\x72\x90\xf4\x98\xbd\xdf\x76\x29\x89\x4b\x2f\xbe\x56\x43\x4f\x29\x51\xf7\x8f\xa1\x55\x98\x4a\x9a\x94\xd4\x2f\x05\x15\x25\x6f\xa8\x1b\xf5\xac\x9c\x78\x8a\x42\x7b\x98\x65\x4b\x19\xaf\x0e\xc0\x05\x91\x65\x4a\xd7\xc3\x3d\x64\x1b\xd9\xc4\x3d\x6f\x49\x0c\xf1\xc4\x95\xc7\xb0\x7f\x82\x5e\x5b\x39\x06\xb1\x56\x5c\xf1\xa1\x87\x35\x1f\xea\x3d\x4e\x43\xea\x5d\x1b\x96\x53\xf3\xaa\x97\x14\x49\x29\x77\xca\x6f\x2b\x97\x52\x96\x97\x20\x0c\x80\x9c\x57\xb8\x34\x93\x4c\x76\xd6\x37\xc7\xfa\x93\x24\x9a\x10\xdf\x1b\xa4\xd1\xaa\x45\x2b\xce\x63\xa9\x72\x7b\xdb\x42\xf4\x2c\xe7\xd8\xa5\x99\xf4\xa4\xf3\xb3\xbb\x63\x69\x99\x67\x5c\x6a\x3f\x50\x59\x9d\xe3\x0a\x59\x94\xd6\x96\x5a\xf9\x6e\xca\xa8\xfa\x4d\xb4\xed\xe4\xe4\xca\xe6\x53\x5f\x48\xc3\xa5\xd3\x63\x46\x93\x36\x17\x1e\xf2\x79\x88\x15\xe8\x67\xac\xd8\x8c\xfe\x51\x27\xd9\x5a\x50\x2f\xde\xd6\x21\x27\x7a\xca\x95\xb9\x5d\xe9\xb4\x8c\x0b\x03\xb5\x23\xa9\x68\xff\x1e\xa3\x99\x62\xe9\xa2\xca\x10\xf2\xdb\x56\x36\x95\x4e\xf6\xa9\xa7\x9c\xda\x47\xaa\xae\x0c\x39\x04\x93\x6c\xcd\x80\x0f\x05\x4b\x36\xae\x5c\xe1\x80\x36\x68\xd2\x6d\x2f\x23\xaf\x78\x0f\x06\xc3\xe9\xc9\xb7\xf7\x74\x96\xd2\x12\xaf\x56\xd5\x78\x51\x93\x2f\xde\x2b\xf8\x4b\x11\xf6\x37\x4b\x9f\x90\xbb\xbb\xf6\x53\x7e\x92\x27\xb6\x5c\x4f\xbf\x4d\x3a\x59\xb7\xfc\x90\x33\xd6\x5a\xe1\xe5\x13\x8c\xd9\x16\x05\xac\x70\x40\xf7\x6a\xaf\xdb\x2d\x44\x12\xf8\x4b\x2e\x57\x88\xa7\x67\xfb\xf6\x86\x0b\x29\xd9\x2f\x1b\xbc\x05\x56\x78\xb8\x78\x3c\xaf\x8b\x30\x47\x79\x93\x4b\x27\xdc\x62\xf4\x70\xb6\x11\xbb\xb3\x96\xb3\xfe\x82\x67\x62\xb9\xcc\x3e\xa8\xdf\x97\xcd\x30\xc1\x67\xdc\x52\xe8\xf7\x90\xe1\x71\x66\xfa\x06\xd4\x74\xe9\x9f\x88\x00\xce\xeb\xd1\x08\xad\xc0\x93\xf5\x2c\xbe\x1e\xac\x2f\x3a\xc8\x8b\x87\xc6\x29\xdd\xb9\xae\xd0\x29\xc6\x12\xf6\x27\xd8\x26\x33\x9f\xd5\x06\x37\xc6\xda\x32\x95\x48\x82\xef\x78\x06\x1b\x1d\xe7\x36\x9a\x7e\x01\x1d\x18\x77\x80\xbe\x1c\x9b\x7f\xc9\x57\xf8\x00\x9d\xd7\x3d\x2c\xe0\xa2\x4e\x75\x3d\xfc\xad\xe8\x2c\x93\x9e\x37\x02\x9d\xac\xa0\x71\x2e\xa2\xee\x74\x1e\x5b\x8b\x42\x99\xd3\x58\x99\xe8\x8d\x18\x05\xf3\x00\xe6\xea\x53\xca\x88\xc2\xe0\xe5\xed\x74\x03\xf6\x65\x9c\x37\x1d\xc0\x6e\x0f\x16\x09\xfa\x18\xb3\xbb\xfc\xf9\x62\x3a\xbb\x76\x37\x2f\x8a\xf6\xaa\xd0\x93\xbb\x86\x16\x2b\xf7\xe0\x4c\xa1\x3e\xa7\x85\xb3\x3e\x50\x55\x19\x63\x99\x97\xa8\xfb\x0f\x99\x19\x03\x94\x5f\xbb\x3f\xd2\x6f\x53\xcc\xcb\xf7\xd3\x17\x51\x94\xe3\x7c\x68\x04\x32\xf5\xc2\x6f\xfe\x1f\x41\xfe\xe9\x6e\xde\x65\x3e\x5a\xdd\xcb\x2d\xe3\xf9\x17\xf4\x70\xa8\x5c\x47\xe9\x0d\x76\x22\xfb\x2f\x75\x16\x6b\x2f\xdb\x3a\xfd\x23\x73\x33\x6b\xf6\xc1\x5e\xc6\x6a\xa6\xd3\xee\x10\xfa\x16\xc6\xea\xe5\x76\x34\x84\x9e\x33\x0e\xa3\xd6\x53\x7d\x06\xc2\xf9\x78\xe5\xb5\x0e\x27\x9e\x8f\xc2\xa6\x6a\x0b\x77\x8e\xcc\xd3\xe0\xcf\x7e\x23\x89\x92\xe0\x58\xe7\x44\x6c\xf2\x0d\x66\xb3\xe0\xf1\xc9\x1b\x8c\x2a\xfe\x96\xe8\x6b\xf4\x02\x2e\x6f\x57\x35\xad\x88\xfd\xdb\xb5\x9b\x7a\x93\xf5\x60\x5c\x35\xe5\x17\xed\xe7\xd9\x6e\xde\x13\x53\x7c\x6b\x0d\xb7\xa4\xc0\x5c\x71\x83\x03\xe9\x9f\xe9\x47\xb3\xb7\xeb\xac\x45\x07\x58\x53\x73\x97\x62\x6f\x98\xa3\x54\xf1\x69\xae\xf4\x9f\x72\xd9\x01\x1e\xed\x85\xa4\xc3\xbb\x87\xfa\x58\xe4\xe8\xea\x4f\xf9\x25\x88\x1b\xf7\x8d\xfc\x8d\x19\xda\x07\xf3\x0a\xeb\x77\x34\x07\x70\x4f\x54\x93\xcb\x88\x9c\xb5\x15\xd5\xda\x6e\xd6\x6b\x73\x9f\x60\x1b\xb3\xd2\x74\x16\xf9\xcd\xc8\x31\x5c\x49\xcd\xa6\x73\x75\x17\xa3\x56\xd1\x32\xd4\xe7\x76\x76\x53\xe3\x94\x8e\xcb\x3a\x28\x71\xb2\x3d\xd6\xd3\xc9\x6b\xd9\xa9\xbd\x6b\x78\x83\x67\xd6\x37\x2e\xe4\x66\x76\x96\x9a\x23\x38\x2e\xad\x9f\x73\x3b\x58\x97\x1a\xc7\xf1\xa2\x98\xfc\xea\x5f\xf0\x46\xc6\x91\xf2\x97\xc7\x5f\xd0\x7d\x8a\x7b\x22\x1e\xd1\x5c\x0a\x54\x5e\x9d\xd4\x31\x79\x76\xcb\x16\x91\x3f\xe7\xcc\xb4\x9e\x4f\x32\x71\x5d\x7a\x82\x78\x17\x2f\x02\x0d\x5b\xb9\x99\x67\xed\x4b\x4e\x71\x66\x77\xbf\x55\x3f\x64\x9d\x69\x97\x72\x59\x4c\xb0\xc9\x0e\x02\x19\x3e\x35\xe8\xf1\x6d\x74\xe7\xf2\x9b\x11\x51\xd4\x4f\xc5\xee\x5e\xd1\x94\x8b\x86\x07\x4b\xbf\x92\x2b\xd4\x5f\xad\xbd\x49\xfe\xdc\xd6\x6e\x05\xaf\xf7\xea\xef\x7a\x0a\x37\x69\xb0\xad\xb8\x96\x33\xe6\x9c\xaf\x7a\x05\xab\xb4\x47\xc2\x79\xc2\xdc\xdf\x5e\x0c\x3e\x67\x4c\x6e\x2c\x3f\xd6\x45\x7b\x50\x9d\x13\xfe\x8d\x5a\x5c\x86\xf3\x72\xa6\x10\x0a\x1b\x97\xbe\x25\x7b\x6b\xb6\x5b\x8b\xb1\xb3\xbc\xb1\xbd\xa3\x55\x7f\x70\xe1\x8d\xe1\x4a\x9b\xec\x69\xa5\x1b\xe4\xa3\xb2\x7b\x35\xb7\xa4\x4b\xf0\x18\x9f\x2b\x0e\x25\x04\x20\xa0\x10\x22\x6e\x4b\x05\xf8\x46\x30\x20\x12\xe2\x3e\x81\xf6\x79\x89\x38\x7b\xe0\xa0\x25\x54\xf6\x16\x84\x68\x55\xc8\xd4\xa0\x99\x3d\xeb\x55\x6c\xc2\x9f\x06\xb1\xc2\x40\x4c\x32\x23\xb2\x62\xe2\x55\xcd\x0a\xc9\x55\x70\x3b\xef\x85\x78\x34\xd8\x0e\xbf\x14\xae\x87\x92\x52\x50\x7e\x1a\xec\x1c\x09\x70\xdb\xe0\x2b\x5e\x8b\x39\xee\x08\x7d\x89\x27\x7b\x05\x7a\xc0\x8a\xcd\x14\xa2\xb7\xbb\xe3\x55\x73\xe0\x0b\xf5\x3d\x8a\xad\xf0\xbd\x92\x66\xd9\x5e\xc4\x36\x17\x95\x90\x90\x79\x3c\x3f\x51\x2d\x12\x02\x47\x08\x3e\x20\x55\xc7\x7f\xf1\x57\xa0\x2e\x11\x52\x2e\x13\x65\xed\x18\xe2\x58\xa1\xef\x96\x8c\x60\x8f\xc1\x30\x2b\x94\x79\x0c\x23\x77\x7e\x55\xee\xa4\x05\xd5\x45\xcb\x09\xd4\x57\xc5\x09\x52\x39\x35\x4d\xbd\x5c\x3c\x44\xb5\xe6\x8e\x17\x4d\xa1\x34\x42\x9e\x82\x70\x0a\xfb\xd8\x6f\x9e\x8e\x72\x3c\xbc\x99\x6b\x45\xf1\xdc\xb1\x92\xcd\xa5\xd8\x2e\x2e\x66\xf1\x28\x0b\xac\x68\x8c\x27\x64\xab\xd3\x1a\x05\x83\xc7\xae\x5d\x25\xcb\xe7\xca\x8a\x26\x4b\xae\x72\xf8\xaa\x37\xe2\xe9\x6c\x16\xfb\xb1\x30\x81\x25\x07\x17\xf0\x6b\x98\xe7\x8f\xd9\xf3\xac\x99\xe3\xf7\xbf\xe1\xa4\x30\x36\x6f\x2f\x65\x7d\xa4\x53\x17\x63\xcc\x07\xf4\x55\x56\xb7\x18\xcb\x28\xad\x1d\xb3\xe5\x55\xf2\xe8\x6a\xa5\xf4\xbb\xf4\x42\x61\xab\x64\xb9\xc4\x4d\x99\x2f\xca\x12\xa1\x2c\x8b\xa0\x5b\x70\x97\x68\xc3\x77\xe4\xa7\x1f\x9d\xce\x85\x78\x36\xfb\xa7\xb0\xaf\x72\x78\xdb\x5d\x58\x61\xec\x9d\x8b\x43\x99\x8b\x59\xdc\x31\x1b\xe9\x91\xb4\x83\xad\x97\xe4\xf3\x0a\xac\x2b\x29\xd2\x28\x7d\x71\x41\x96\x58\xab\x5b\x25\xa7\x08\xaf\xe4\x6a\x18\x9d\x82\x29\x39\xa3\xf1\xbe\xbc\x54\x05\x3b\x49\xcc\x39\x2b\x1b\x1f\xfa\x91\xed\x2c\x66\x6c\xdb\xc9\x14\x0b\x77\x2d\x7a\xc9\xd8\x2d\x98\x3c\x06\xa6\x05\x33\x04\xcd\x91\xf2\xd1\xd5\x6e\x15\x23\xa5\x6b\x2b\xaa\xf2\x3d\xc4\xf1\xa5\x5e\xd2\x38\x21\xa3\xa8\x91\x76\x91\x5f\x63\x9c\x83\x83\x79\xa3\xf5\xcc\x23\x3f\x39\xd1\x9a\xb7\x21\xb5\xac\xb2\x9c\xb0\xad\xfe\xcc\x89\x8a\x15\x8b\x62\xe8\x16\x69\xc8\x18\x21\x55\xc2\xc2\x37\xc6\xc9\xe7\x76\xc6\x97\x2d\x91\xba\xb7\xad\xcc\x5b\x2b\xf6\x6f\xbc\x21\x3e\x21\x4c\xad\xdd\x4f\x79\xc3\x17\x5b\x1a\x33\x3b\xb9\x83\xa5\x73\x12\x32\x39\xd3\x4c\x60\x70\x32\xeb\x70\xfe\x8b\x2d\xbe\x8c\x56\xed\xbf\x85\xed\xf4\xed\x4a\xc5\x18\x2d\xe5\x3b\xc7\xba\x81\x2c\x5f\xd0\xdf\x5b\xba\x4f\xea\xde\xb3\x51\x17\x25\xde\xd5\x41\x15\x49\x85\xb1\xcd\x2a\xca\x0c\x3e\xa9\x8e\x9d\x09\x70\x6b\x2a\xa1\xf8\x73\xec\x77\xa5\xc9\xfb\x86\x59\x1e\xa6\xcc\xcd\x77\x19\xcc\xfc\xa4\x85\x34\xda\xaf\x9c\xcd\x63\x6a\x28\x3a\x8e\xbc\xbe\x5f\xee\x3c\x78\xdc\xac\x94\x2e\x3a\xa7\xd1\x1a\xc5\x1e\xbd\x5a\xe1\x3d\xe1\xee\xd3\x91\xe4\x34\xfe\xc1\xe6\x0f\x19\x89\x5c\x72\x1d\x25\xde\x87\x6d\xa9\x1c\xbf\x2f\x93\xf9\xca\x6c\xda\xac\x64\xac\x2d\xf8\xb8\x30\x93\x26\x52\xa7\x8e\xf9\x4c\x99\xc3\x79\x60\xf9\x6d\xf2\xc0\x8d\x31\xca\x0b\x36\xe0\xea\x54\xd1\xfa\x23\xd9\x41\xdc\x5d\x5a\x03\xde\x1a\x39\xa0\x7e\x8c\xbf\x97\xd6\xaf\x5a\x44\xb8\x12\xf3\x4e\x7e\x8c\xf8\x70\xaf\x87\xa4\x01\xfc\xbd\x61\xae\x68\x17\x3c\xd9\xf9\x8c\xe0\x31\xb2\x73\x44\x13\xa7\x0e\x25\x58\xd2\x0b\xeb\x08\x11\xc6\xb1\x86\x21\x42\x87\x72\x50\x3f\x8e\x38\x8d\x73\x46\x1b\x42\xe4\xc1\x8f\xd4\x1a\xd0\x31\xed\x80\xf2\x25\x78\x3e\x86\x27\xf7\x84\xa4\x01\xb7\x25\x22\x38\x7e\xfd\x2d\xd1\x72\x64\x85\xb3\x5c\x70\x19\x9d\x3a\xa2\x9c\x53\x88\xf6\x56\x5c\x2d\xf4\x83\xae\x16\x9c\x34\xa4\x40\x9f\x94\x9b\xf2\xca\xe1\x31\x9c\xcd\x9a\xbf\xf0\x2a\x38\x49\x1d\x04\x63\x27\x5e\x2a\x0b\xe0\xf7\x31\x4b\x65\xdf\x11\x5c\x00\x53\x72\x10\xf9\xb9\x5e\x25\x1a\x81\x92\x9c\x4f\x0a\x4a\xb0\x95\x23\x6a\x38\x10\xe6\x57\x7e\xc6\x18\x4b\x69\x34\x44\xe7\xeb\x29\x09\x8a\xc5\xba\x3f\xe4\xbf\x6c\x77\x4d\x24\xb9\x01\x3a\x91\x53\x4d\x66\x9e\x18\xa7\xb4\x23\x83\x87\x92\x64\x49\x64\xb2\xff\x73\xf1\x4d\x32\x71\xbd\xab\x90\x4a\xc6\x9c\xfd\x04\x2e\xe4\xe1\x11\x2f\xd9\x5f\x49\x85\x65\x31\x05\xc5\x9c\x69\xf9\x53\xf4\x9f\xd9\x21\x72\x2b\x5d\x08\x0b\x63\xcd\xcb\xad\x64\x56\x83\xd9\x39\x0e\x8c\xef\xa9\x8b\x14\x19\x8c\x84\x83\xf9\xd2\x1b\xf4\xfb\xfe\xbb\xc4\xbb\xe8\x81\xeb\x4e\x0b\x5e\xd1\x86\x9d\x5d\xf9\x99\xb4\x6f\x23\xd7\xb2\xbd\x28\x0b\xcd\x6f\x0b\x96\x4b\x26\xe5\x9d\xd7\x27\x8b\x2e\x4a\x6f\x69\xdb\x85\xa7\x98\x63\x72\x67\x09\xa6\x11\xb3\x54\x04\x5e\x5f\xca\x26\xf9\x23\xae\x21\xfa\x9a\x34\x80\xc3\xf5\xd3\x89\xaa\xd8\xc7\xd6\x45\x09\xf6\xb0\x50\x67\x27\x5e\x19\x2b\x71\x64\x2e\x2b\x8b\x9a\x57\xb2\xcc\x50\xaa\x2b\xd1\xfe\x97\x77\x53\x63\x92\x8c\xd0\x2e\x56\xb3\xe8\xbe\x6a\x9c\xca\x1f\x7f\x5b\xd9\xa7\x98\x72\xac\x5f\xbe\x42\x36\xea\x80\x5c\xa2\x14\xff\xdb\x63\x16\x7e\x13\xfe\x5c\x5b\xca\xa7\x0a\xc2\xe6\x0e\x73\x5b\xf9\xfe\x23\x3f\x32\x8f\xd1\xd5\xa6\xbf\x86\xe0\x32\x65\xee\xe7\x3c\x41\x49\xae\xc8\x45\xf3\xd0\x24\xa5\x62\xea\x39\x05\xc9\xd9\xab\x94\x31\xfa\xed\x47\x77\xca\x3a\xb4\x1b\xa2\x76\x48\x16\xa8\x77\xf8\xe6\x0a\x61\xe5\x41\xcf\x3b\xbc\xbf\x72\xa7\xb9\xe9\xdc\x69\x62\xf1\x28\x67\x86\x8e\xe9\x5d\xe8\x63\x38\xd5\x5c\xaa\x5e\x96\xc7\xae\x7f\x2c\xd8\xa3\x69\xaf\x19\x41\x6e\xc9\xf9\x6a\xb1\xc9\x62\x2b\x97\x97\x8e\x4b\x6a\x93\xa1\x45\xce\x11\xaf\xc4\xd7\x0a\x02\x7c\x08\xc2\x45\x79\xd5\x6b\x7e\xf3\x34\x9a\xb9\x4e\x2f\x39\xf9\x72\x9b\x51\x9b\xe9\xbf\x59\x06\xa3\xcc\x90\xd4\x79\x2c\xe7\x48\x1e\xad\x2d\x9a\x9f\xa9\xa9\x6e\x5a\x42\xfa\x94\xf3\xa4\x76\x38\x73\x40\x39\xa5\x12\x4d\x9a\x20\x3b\x54\xb6\x21\x22\x4c\x6c\x2e\x1e\xbf\xfb\x97\xe0\x8b\x71\xd1\x1a\x1d\xef\x88\xee\x85\x53\x13\x27\x42\x71\x72\xd4\x01\xba\x81\xbd\xb0\xe0\xaf\x61\x7f\x1f\x51\xd5\x9a\x97\xd1\xbd\x8e\xd7\xae\xc9\x69\x1f\x20\xed\xce\xe9\x6d\xde\x96\xe9\xa1\x78\x5d\xa7\x4f\x64\xc8\x16\x57\x4d\x08\xbf\x2f\x3e\x56\x56\xbc\x5b\x27\x30\x17\x59\xd6\xc4\xf3\x1c\xf2\x47\x3b\x59\xd8\x4f\x94\xc4\x51\x4a\xfa\x52\xf6\x49\x35\xae\x76\x34\x2e\x45\xf8\xbb\x32\x3a\xdb\x9e\x76\xbd\xac\x25\xdb\x40\x1c\x57\x32\x06\x1f\x92\xca\x2e\x0c\x21\xcc\x8f\x25\xe7\x1b\x89\xe3\x83\x23\xb5\xdf\xc0\x99\x3b\x70\xea\xbd\xd0\xce\x95\x3b\x95\x0e\xf0\xc9\x19\x90\x5c\x8b\x94\x00\x00\x9f\x8c\x7e\x56\x4f\xaa\x91\x11\x0e\x0a\x73\x2d\x9f\x08\x2d\x34\x52\xd9\x01\xa2\x13\xa1\xa9\xb8\x86\x28\x4e\xdd\x52\x68\x0b\x2e\x8a\xdd\x9c\x9f\x08\xde\x08\x76\xd4\x76\x40\xc6\x1d\xdb\xd4\xf3\x61\xfa\x4a\x47\xc5\x47\xe4\xc4\x8c\x04\x39\x1b\x3d\x0a\x00\xfc\x13\xd8\xbc\x9c\xe2\x9a\x85\x50\xa6\x70\x8d\x85\x0b\x49\x69\x2e\xa5\xdf\xa1\x5e\xc2\xe1\xe2\x83\xd0\xdf\x94\xb7\xc6\x76\x38\x32\xe6\x53\xfe\x1c\xf8\xd2\xbe\xbb\x5a\x18\x49\xd8\x61\x93\xf3\x0a\x05\x56\x7c\x57\x9c\x46\x8b\x67\xec\x97\x47\x61\x20\x00\xf0\xb7\x61\x6c\x55\x5f\x75\x02\xf9\x81\x20\xb9\xe2\x22\x59\x4f\x8d\x2f\xdd\x4d\xf6\xc3\x9b\x8a\x6a\xc8\xd3\x52\xbc\x8d\xb3\x48\x7f\x62\x0e\xea\x51\xb2\xcd\xbe\x18\xcd\x23\xb2\xc7\xf6\xe2\x9c\x83\xe4\xe0\x15\xf5\x8a\x75\x64\xe6\x8c\x7d\xb2\x36\x8a\x27\x00\xf0\x2a\x49\x75\xca\xc1\xaa\x1a\x16\x95\x0f\x55\x2c\x64\x3e\xa2\xc0\xe6\x62\xe6\xe2\xec\xeb\x45\x53\x19\xac\xe3\x82\x02\x90\xfe\xeb\x50\x5d\xde\x53\xba\x2c\xe8\xa2\x26\x88\xbe\x6b\xfb\x76\x55\x27\xed\xe3\x0a\x58\xce\xa7\x5d\x98\x11\x2f\x7d\x4d\xf7\x05\x00\xee\x6b\x8a\x8d\xa2\xa4\xca\x5d\x68\xe1\x1d\x2d\x57\x0b\x8a\xc8\x3c\xf3\x6c\xfe\x51\xdc\x2f\x13\x99\x17\x76\xec\xbc\xe1\x09\x37\xe8\x90\x55\x5e\x30\x27\x25\x68\x5d\x6e\x1b\xdb\xb0\xed\x8a\x6a\x3e\xeb\xe6\x0a\x6f\xd9\x5d\x56\xf4\x0c\xae\x14\x60\xad\x02\x00\xee\x44\x6a\xb0\x3c\xbd\x92\x90\xbb\x84\xeb\x5a\xf6\x26\x27\x9a\xb4\xb9\x24\x5d\x49\xcb\xaa\x2f\x3c\x2b\x97\x1f\xd5\x18\x5c\xa4\xcd\xd1\xdf\x74\x3c\xc9\xc4\xc0\x10\xf5\x7f\x22\xca\xb6\xf9\xca\x48\xe1\x18\xb7\x5b\xb2\x11\x82\xe9\x33\x10\xf1\x1b\xde\x2c\x20\x91\xfd\x9d\x3e\x41\x7a\xa7\x72\x5d\xd1\x15\xb6\xb1\x8c\x5b\x38\x06\xbd\x57\x62\x63\x40\x33\x0f\x17\x86\xe7\x95\x26\x1f\xc8\xd7\x6b\x3e\x1e\xb8\xa4\xb3\x56\x43\x7b\xf7\xab\xd3\x55\x4b\xb6\x86\x2b\xce\x29\xac\xdc\xfc\xa5\xc7\x65\xc8\x8c\x70\xf1\x7c\x21\x0e\xa8\x60\xcf\x64\x50\x25\x69\x95\x23\x6a\x51\xd6\xd2\xb2\xb8\x2a\x27\x64\x47\xf1\xb9\xf2\xb6\x53\xcf\x0b\xc7\x9b\x7d\x92\x46\xe5\x07\x9b\x1e\x45\xa9\xb4\xe5\x05\x55\x01\xbb\xd4\x76\xfa\xc6\x2d\x99\x8a\x18\xdd\xc4\xe5\x06\xc9\x87\x9c\xf7\xd3\xff\x8a\xc4\x92\xf5\xc0\x3d\xd6\x09\xa6\x45\x2c\xb3\x7c\x6e\x56\x33\x13\xca\x82\x1a\x00\x98\x54\x6c\xa9\x09\x3b\xb5\xd9\xf8\xd1\x62\x48\x4c\xce\x5f\x5a\xfa\x27\xca\x4e\x8b\x15\x33\xfd\x2f\xe4\xdc\x28\x8c\xda\x32\x59\x31\x3f\xdf\xb8\x3c\x56\x52\xa6\x99\x37\xfd\x8d\x68\x8d\x34\x16\xf8\xc5\x1a\xcf\x72\x12\x0d\x5a\xee\x9d\x9e\xc1\x28\x2f\x5b\xd5\x1a\x0a\xdd\x2e\x66\x35\x82\xe9\x45\xc6\xce\xda\x82\x23\x2f\xf4\x1f\x2b\x2f\x47\x6a\xb5\x5b\xcb\x3d\xfc\x33\x72\x04\x25\x87\x37\x5f\x94\x0f\x1a\x13\x97\xaf\x91\x04\x68\xcf\x4f\xff\x29\xac\x94\xed\x18\xb1\x8c\xa9\x64\x45\x31\x26\x77\xbe\xc8\x7e\x0c\xe7\xb7\x45\xe0\xf7\x67\x70\x1a\xef\xe1\x4f\x27\x5f\xa9\x8d\x27\x04\x1d\xcc\xb3\x0c\x13\x6d\xf6\xbd\x2e\x8d\x20\xbe\xf1\xde\x6a\xba\x0e\x7e\xf1\x7c\x65\xc8\x82\xe7\x2f\x8c\xd3\x9d\x41\x92\x27\xcc\xd7\xfa\xa2\xe7\x01\x40\xb4\x04\x33\xd1\xaf\x77\xe2\x88\x18\x7c\xa2\xf5\x03\xb1\x2b\xe3\x50\x23\x99\xf8\x37\xd9\x5c\xeb\x00\x86\x1f\x24\x58\xc4\xe0\x8d\x7d\x7d\xa5\x93\x21\x9a\xb7\xb3\x49\x09\x87\x79\x5e\x35\xec\x40\x76\x2d\x0c\xd4\x69\x51\xdf\x09\x6e\xda\xd9\x58\x22\x00\x88\x6c\xb1\x26\xba\xb4\x73\x34\xbc\x03\xf6\x68\x65\xc2\x11\x19\x0b\x1b\xe7\xc1\x89\xc9\xf8\x9a\x06\x98\x7d\xd0\xdf\xb2\x15\xbe\xbe\x2f\xcf\xdc\x83\xec\xdb\xf9\xcf\xe4\x8f\xbc\xf1\x6c\x35\x00\xa8\x7e\xe1\x0e\x5d\x2c\x76\x6a\xc2\x3a\xcd\x35\x52\x28\x00\x08\xaf\x93\xec\x69\x0f\x4f\xef\xa4\x38\x42\x8a\x96\x8b\xe4\xd3\xa7\xf2\x1a\x52\xc8\xb1\xc9\xa3\x6b\x46\x93\x97\x44\xbf\xaa\x10\x92\x67\xee\xf3\x33\x4f\x25\xaf\xd9\xd9\x5a\xa8\x23\x67\x78\x2a\xf3\x63\xc8\x9d\x0b\xdd\xb4\xcd\x94\x6d\x13\x92\x34\xb6\x94\x02\x00\x10\x2e\x27\x4f\xa2\x1d\xe8\x48\x61\xb9\x40\xe3\x5a\xc6\x30\x71\xa7\xc6\xd5\x5b\x18\xfd\x49\xdc\xea\xbd\x8c\xd5\xd1\xec\xf2\x7b\xf4\xf6\xa0\xcf\x25\xc9\xf4\x53\x3b\xb3\x8c\x1f\xe9\x7b\x3c\x93\xf5\xc5\xf4\x4d\x0b\xe7\x6b\x3e\xd0\xe9\x13\x72\x73\x27\xd1\x67\x02\x80\x60\x1f\x65\x07\x75\xa0\xbd\x4d\x50\x0a\x26\x35\x47\xf0\xd5\xe9\x47\xea\xfe\xf1\xc8\x49\x63\xab\xf4\x5c\x6e\xf4\xdc\xf2\x55\x9c\xf2\x20\x59\x71\x33\xfb\xd3\xce\x45\x46\x6f\x76\x9c\xa7\x67\xde\x5b\xd6\xf7\x85\x33\x35\x8e\x6c\xc7\x09\xb7\xd5\xa3\x98\x69\x00\xc0\x8f\xa5\xc6\x52\x3e\xb7\xdb\xe5\xcc\x20\x0a\x9a\x24\xca\xd0\x93\xbc\x3a\x37\xb9\x32\x71\x71\x65\x97\xf4\xc5\x01\xdf\x32\x3f\x49\x74\xe0\xad\xa2\x21\xd1\x5f\x2f\x69\x41\x98\xf0\xca\x9a\x6b\xba\xaf\x82\xb7\x0b\x47\xe4\xda\x0a\x4a\x26\xae\x50\x15\x70\xc4\x00\xc0\x5b\x44\x7b\x4f\xbe\xd7\x16\x62\x74\x22\xf0\x1a\xbf\xe4\xf7\xa4\xe9\x6a\xf3\xf2\x32\x8f\xac\xac\x74\xd1\x8e\x8e\x8a\x28\xd5\xa9\xbb\x02\xad\x8a\xe6\xa9\xba\x76\x3c\x36\x14\x28\xc7\xac\xd9\xaf\xdb\x22\xef\x5a\xd0\xad\xde\x2e\xa5\x4d\x0c\x52\x2a\xf9\x2b\x00\x80\xbb\x96\xb1\x88\xd4\xd2\xfa\xc6\xb2\x1e\x9f\xdd\x28\x2e\xcb\x3c\xc1\xa9\x5d\x53\xa2\x4d\x70\xb3\x54\x9a\x0a\x23\x93\x4b\x5d\x0a\x6e\xec\xf5\x30\xe9\xf3\xa3\x76\x78\x1a\xe6\xe4\x6d\x59\x7d\x49\x5b\xa6\x09\x5f\x00\xe5\x68\x95\xa2\x89\x61\x8a\x5e\x61\x3c\x00\x70\x10\xe6\x54\x92\x67\x6b\x53\xed\xef\xec\x77\x8d\xb1\x55\xc3\x27\xc6\xd6\x8e\xaa\xa8\x8f\xaf\xb7\x40\xa5\xbc\x88\x1f\xe6\x27\xc5\x92\x80\xcb\xa6\xd8\xc2\xcf\xdb\x5f\xe6\xdf\x2a\x98\xbc\x5a\xad\x8d\xd5\xfd\x5c\x10\x9f\xe3\x9d\xb3\x7e\x62\x8c\x22\x58\xe4\x0f\x00\x1c\x47\x66\x12\xd6\xdc\x8a\x36\xbb\x67\x13\x1a\x17\xd6\xf7\xa4\x2a\x6a\xce\xd4\x24\xc4\x07\x5b\xd6\x56\xce\x8f\x30\x98\x95\xe5\x93\x03\x78\x26\xbb\x92\x4f\xdb\xeb\xf3\x49\x26\xfb\xd5\x90\xe6\x57\xbe\xf5\x82\x44\xd5\xa0\x9a\x36\x91\x25\x6f\x11\x03\x00\xc0\xce\x67\x72\x11\xaf\xbe\x4f\xf8\x8f\x59\xf6\xdd\x2b\x08\x3b\x8f\xef\x6b\xc7\x13\x24\xb1\x3f\x9b\x6a\x89\xa3\xf7\xef\xab\xbd\x4f\x2c\xf1\x5b\x58\x69\x07\xa2\x5b\x67\x95\x6e\x85\x60\xf7\x53\xa6\x5c\xd8\xe4\x2c\x33\x3c\x42\xbe\xd9\x55\xeb\x4f\x60\xc9\x00\x20\x8e\xc3\x7e\x22\xf3\xfa\x18\x60\x56\xe6\x87\xae\xb3\xa0\xf2\xf8\xda\xf6\x19\x60\x63\xec\xe3\xa6\x43\xe0\xb7\xfd\x1b\x6a\x45\x50\x82\xdf\x44\x4b\x17\x3c\x72\xab\xb5\xf9\x3f\x78\xc0\x3d\xd5\x74\x18\x69\x76\x16\x1b\x2a\xd0\x41\xbb\x73\xfa\x55\xd8\x53\x00\x10\x7b\x91\xc6\xc0\xdf\xfb\x1c\x91\xd9\x99\x03\x5d\x09\xc8\x94\xe3\x53\xda\xea\x10\xeb\xd8\xee\xa6\x91\xc8\xc4\xfd\x4e\xb5\x1b\x90\xbd\x7b\x7e\x58\xd2\x90\xb6\x2d\xdf\xcc\x85\xe8\x7e\xf7\x78\xd3\x54\xcc\xde\x59\x6c\x38\x82\x7d\xb5\xbb\x93\xf7\x98\x54\x0b\x00\xe2\xd1\xa4\x20\x38\xfd\x4c\x34\x45\x97\x19\xd2\x59\x44\x71\x3f\x56\xd4\xfa\x9b\xdc\x15\x8b\x6b\xdc\x45\xc6\xc2\x1e\xd4\xa0\xe4\xa3\x7b\x7a\x2a\xaa\xc9\xe4\x2d\x43\x25\xcf\xc9\xdd\xee\x07\x0b\xe3\x29\xce\xce\xca\x7c\x13\xe5\x9c\xfd\x8c\xbc\x31\x94\x6e\x00\x10\xed\x25\xef\x82\xa7\xf5\x12\x59\xc9\x19\xaf\x4f\x5f\x64\x56\x1f\x5b\xdb\xea\xca\xf8\x1d\xbb\xb4\x01\x65\xc4\x85\x95\x56\x77\xd0\xdf\xee\x91\x97\x7f\xa6\x17\x6c\x29\x2b\x59\x42\x67\xba\xfb\x18\x73\xe8\x0a\xe7\x5c\xfd\x59\xc6\x7c\xfb\xfd\xda\xdf\xb4\x5f\x00\x20\x8c\xa5\x1c\x81\xf8\x3d\x4d\x02\x4b\xc6\xf1\xd3\x76\x7c\xf9\xd1\x96\x96\x23\x3c\x52\xcc\x60\x7d\x0b\x97\x1d\x96\x56\x3d\x8a\x53\xb7\x27\xb6\xdc\x93\x33\x7a\x0b\xad\x38\x99\xcd\x72\x5f\x59\x70\x9e\x1d\xe8\xac\xcf\x7b\xc4\xee\xb5\x97\x69\x1e\x31\x27\x01\x80\xe0\x08\xf5\x14\x34\xbe\xfb\xa9\x8a\x71\x6a\xb8\x63\x85\x62\xe8\xa8\x4b\x33\x24\x5f\x18\xb3\xa8\xae\x57\x4a\x0f\xed\xaa\x1a\x21\x99\xe2\x3b\x58\xb6\x52\x74\x75\xcb\x8c\xa2\x83\xc2\x6b\x2b\xff\x33\xd4\x0b\xbd\x9c\x5b\x75\x85\x82\x0a\x07\x87\xdc\x44\xf6\x0b\x00\xe0\xcf\xa2\xbd\x06\x17\x76\x2f\x29\xb0\x3f\x35\xb1\x1d\xd4\xb7\x27\x9f\x6a\x1a\xd0\x81\x87\x0e\xd7\x8d\xd5\xb8\x87\xfc\xad\x5c\xaf\x9e\xe7\xbb\xb0\x34\x49\xb5\x7f\xb3\xd8\x24\x54\x3c\x5e\x99\x97\xff\x50\x3e\xe0\xac\xd5\xb6\x49\x2e\x39\xf8\xaa\xb7\xf2\x36\x01\x00\x6f\x1e\x63\x1c\x31\xa0\x4b\x5b\x2e\x4d\xdf\xdc\xf6\xc5\x7c\x33\xc9\xd4\xe4\x5d\xbc\xe8\xa0\xb6\x16\x5f\x18\x13\xb2\xcb\xa2\x33\x5c\xf1\x61\x9a\xcf\xe9\x4b\x37\xcf\x28\xfc\xa8\xcb\x5f\x19\x94\xef\x99\x1b\xe3\x2c\xd7\x7c\x51\xf8\x39\x20\x39\x7e\x02\x0f\x00\xe0\x1e\x66\xdc\x22\xbc\xe8\x8a\xab\x19\x7d\x72\xb8\xad\xde\xf2\x5f\x92\x5f\x93\x55\xd9\x9f\x83\x5e\xb5\xab\xcc\xd6\xc1\x9f\x2c\x21\x45\xb1\x3e\x5e\x66\xd0\xf8\x6b\xd3\xd3\x42\x7d\xfe\xe3\x95\x2b\xf4\x77\xb4\x5a\x67\xb9\x46\xa0\x6c\x73\x50\xaa\x06\x05\xff\x00\x80\xf3\x9b\xe9\x48\xe0\x76\x39\x36\x3c\x3d\x49\x6f\x3b\x51\xab\x4d\xfc\xd4\xd8\x50\x75\x22\xfa\xbf\x9a\xfb\x15\x69\xc1\x95\x15\xdf\x4b\xa5\x3e\x93\xcc\x8e\xc5\x51\x9b\xfa\x0b\x37\x1b\x8f\xae\x9c\xaf\x4f\xc9\x3b\xe8\x5c\xac\xb1\x57\xdd\x73\x18\x50\xad\x16\x6a\x00\x80\x43\x66\x7a\x66\x4f\x1d\x78\x4a\xdc\x98\xfa\xac\x7f\x02\x31\x3a\x21\xbe\x7b\x3d\x91\x11\x15\xd2\x1e\x40\xbc\x12\xf8\xb7\xc9\x17\xdc\xef\xbd\xb1\xd6\x1b\x9a\xbc\xbe\xc2\xe2\x05\xfd\x73\x55\x99\x71\xc8\x1c\xc7\x48\x53\x0f\x9a\x65\x33\xc9\x70\x0f\xeb\x07\x00\x09\x4c\x5a\x9e\x6d\x37\x80\x41\xa5\xa9\x6f\xfb\x8a\xa0\xfc\x84\x88\xae\xeb\x90\x26\xca\xaf\xed\x3d\x54\x13\xf8\xbd\xf1\x13\x0c\x78\xaf\xaa\xf9\x0c\x73\xd7\x17\x55\x7c\x41\xbc\x5d\x73\xcc\x9e\xa8\xab\x63\xa4\x89\x8d\xf9\xda\xb8\x19\x74\xa4\xd5\x00\x20\x09\x23\xb9\xe3\xfe\x0e\xcc\x42\xbd\x52\xef\xf7\xed\x40\xed\x12\xfc\xbb\x4e\x22\xc3\x51\x1b\xdb\x84\x48\x47\xe0\xeb\x46\x19\x72\xd7\x7b\x69\x8d\x1c\xdd\xb8\x3e\xbf\x42\x85\xf6\xba\xaa\x4a\x9e\x60\x44\xc7\x48\xd3\x7a\xd2\x49\x9b\xcd\x86\x5d\xa4\x97\x00\x20\xb1\x27\xa5\xe3\x72\xcf\x87\x52\xc1\x54\xda\x19\x94\xf2\x26\xfe\x4b\x67\x19\x25\x31\xca\xba\xb5\x97\x32\x2e\x70\xa0\xe1\x3c\xf9\x9e\xf7\xf8\xea\xb3\xe4\x57\xeb\x25\xe5\x67\x29\x8b\x5c\x75\x25\x0b\x28\x02\xc7\x23\x85\x49\xd4\x03\x36\x99\xf9\x07\x28\xe7\xff\x2f\x8b\x1c\x85\x4b\x3b\x77\x84\x3d\x35\xd5\xab\x57\xc6\xda\x15\x5f\x74\xba\x87\x89\x44\x3e\x6a\x79\xcd\xb8\x10\x78\xba\xfe\x27\x23\xc8\xdb\xaa\xea\x1b\xfd\xcf\x7a\x61\xd9\x67\xfa\x23\xd7\x82\x62\x6f\x86\xad\x23\x62\x4c\x65\x9c\xb7\xa9\xd7\x6f\xa5\xdd\x02\x00\xd1\x2e\x0a\x2e\xeb\xe9\x59\x91\x70\x49\xca\xad\x9e\x46\xfe\x8f\xf8\xe0\x8e\xc7\xbc\x1b\x91\x55\x2d\x93\xb9\x97\x02\xcb\xeb\x97\x71\x7e\xef\xfc\x5a\x35\x9f\xe3\xb7\x9e\x59\x36\x8b\x7d\xcb\xb5\xb8\x28\x9a\x3d\xe0\xa8\x2b\x38\xca\x71\xb1\xf9\x95\x37\x85\x71\x0e\x00\x84\x5b\xa8\x8c\xac\x8e\x7e\x99\x0a\x49\x91\x75\x37\x29\xba\xe3\xbe\xb6\xdf\x95\xcf\x8c\xdc\xdc\xf4\x57\x8a\x04\x2e\xaf\xb3\x96\x38\xee\xe4\x5b\xfe\x89\xde\xad\xf7\x32\xbf\x17\x4d\x75\x95\x9b\xe6\x0b\xaf\x39\x5e\x33\x58\x09\xd2\x6d\x21\x2d\xc6\x3e\x08\x00\xfc\x87\xb4\x17\x59\x23\xfa\x2e\x1a\x14\xc7\xff\x74\xbd\xd3\x6f\x8e\x23\xb5\xdb\x68\x7f\x45\x94\x34\xcd\xc9\x3d\xb7\x57\x5c\x3b\x37\xe7\xde\x4e\x5b\xcb\x64\xd5\x96\x75\x0f\xcd\x23\x94\x13\x5d\x13\x0a\x5d\xe5\x06\xc7\xa7\xfa\x4f\x92\x51\xb6\x97\x35\xdb\xb8\x44\x00\xe0\xdd\xa4\xbf\xce\x3c\xd5\x37\xa3\x4c\x72\x3c\xab\x6b\x47\xc9\xa5\xc3\xbf\xdb\x62\x8b\xdc\x22\x16\x34\x1e\x37\xb2\xf7\x3a\xd4\x24\x18\x3c\xbd\x0a\x2a\x22\xf5\x61\xeb\xd4\x25\xbb\xb5\x3f\x5c\x7d\x8c\x07\xd5\x09\x73\xac\xf5\x63\xe5\xd6\x76\x4e\xb9\xeb\xf9\xab\x01\x80\x37\x91\x91\x97\xb9\xe2\xcc\x50\x55\xe5\xf1\xd5\x9d\x9f\x2a\x8a\x0e\xb7\xb6\xd9\x96\xf6\x86\x3f\x6f\x9c\x52\x02\x04\x5c\xa9\x19\x63\x92\x79\x65\x97\xff\x34\x5a\xaf\x43\x8b\x9f\xeb\xdb\x5c\xb7\x17\x7c\xd0\x04\xcd\x59\x9a\xc7\x55\x84\xda\xed\x55\xd7\xf0\x5f\x03\x00\xb7\x9c\x31\x9c\xf1\xfe\x0c\xa9\x7e\xeb\xb1\x9f\x9d\x9a\x1a\xe0\x30\xb3\xb5\xdc\xf2\x29\xbc\xae\xa1\xbc\x7c\x5e\x40\x51\x75\x8e\xd9\xc3\x2b\xba\x9c\x67\x7a\xb0\x8e\x58\x8c\x33\x3c\x74\x0d\x2c\x38\xa9\x3d\x3f\x27\x42\xf7\x55\xb9\xcf\x4e\xa2\x9e\x20\xc8\x04\x00\xee\x4a\xc6\xfb\x37\xcb\x89\x41\x59\xc5\x77\xe7\x13\x1b\x71\xec\x0b\xf5\xa0\x53\xf6\xfe\xd6\x07\x20\x15\x3f\xce\xfc\x13\xfc\x80\xbf\xa6\xfc\x0c\xc5\x12\x5e\x51\x37\x40\x77\x41\xfb\xd4\x08\x18\x83\x3c\x42\x67\x23\x8b\xe0\x8d\x9e\x0c\xe4\x34\x32\xc5\x3e\x01\xe5\x20\x5b\x5f\xa7\x10\x30\xa2\xf5\x9d\x70\xc2\x5f\x22\x34\xf0\x9b\x88\x23\x7e\x69\x75\x21\xbe\x02\xc3\xcc\x9b\xc1\x14\xb0\x4f\xe9\x0d\xbe\x81\x50\x8a\x06\x82\xe1\x9d\x29\xbd\xb0\x3b\xfc\x3b\x84\x09\x3f\x46\x0a\x3c\x6d\x11\x31\xba\xc8\x7e\x14\x7a\x14\xf9\xf9\x4a\x8b\x6f\x41\x04\xc3\x24\x42\x00\x22\x1d\xd8\x40\x18\x42\xda\x5a\xa2\x88\x51\x48\x57\x09\x48\x7c\x86\x3c\x54\x48\xc1\x2c\x74\x13\xf9\x1f\x34\x19\xcd\x4b\xd9\x08\x5d\x47\xbf\x85\x8c\x84\x55\xd8\xda\x35\x85\x48\x20\x16\x6b\xd7\x89\x7a\xa2\x8f\x5e\x28\xb3\xa9\x8c\xc1\x5b\x0a\xfc\x0c\x86\xd3\xb9\x60\x7c\x17\x9d\xde\x54\x44\x08\xa2\xdd\x2f\xfa\x8f\xf0\x8c\xb6\x57\xbe\x8e\xc8\xa1\xbe\x27\x5d\x06\xb7\x50\x65\xc7\x3d\xa0\x19\x54\xa7\xe0\xa9\xd0\x4f\x8a\x6a\xcd\x04\xb8\x92\x32\xcb\x8e\x86\x18\x48\xcf\x9e\xdd\xc4\xed\x14\x85\xde\xf8\x83\xfb\x4f\xf0\xab\x1f\xcc\xb6\xf0\x75\x0d\xcf\xf0\x7e\xbc\xdd\xa6\x60\xfc\x47\x2e\x20\x6d\x20\x98\xd8\x0f\x30\x8c\x98\xc6\x6a\x3b\x36\x0d\x8c\x62\xf2\xf6\x79\x41\x3b\x19\xc1\xab\x99\xd0\x0f\xfa\x52\x3b\x1c\xfc\x98\xf2\xe3\x49\x77\x96\x9f\x1a\x7f\x6d\x18\x37\x56\x95\x7a\x26\x0f\xd7\xa3\x08\xae\x77\xce\x4e\x96\x6d\x33\x9a\xf1\xd3\x25\x9b\x24\xab\xf1\x77\x45\x7b\xd0\xe5\x84\x6a\x41\xf0\x51\x1b\xa2\x91\x17\x11\xc4\x00\x85\x9c\x98\xd5\x13\x21\x1f\x16\xc9\x8e\x09\xcf\xa3\xfd\x7e\xe4\x98\x59\x6c\xce\xbf\x82\xcb\xda\x5e\xa4\xea\x99\x95\x75\xc7\xc8\xae\xa9\xc6\x61\xf9\xbe\x86\xa8\x6c\x0f\x9d\x95\x68\x56\xf6\x7f\xea\xf3\x70\x24\xfe\xaa\x92\x90\x44\x23\x5c\x94\xcd\x09\x8c\x21\x36\x8b\x06\x57\x1d\x07\x13\xf9\xff\xec\x72\x20\x4f\x66\xe7\x7d\x4b\xe6\xf8\x56\xfd\xd0\x95\xcc\xba\xc6\x45\x9d\x35\x59\x47\x6a\xde\x57\x45\x67\xfd\xb1\xe0\xf4\xf3\x70\x45\xe6\x57\x02\xbb\xec\x13\xa6\x10\x90\x83\xdf\x93\x2f\x4f\x1c\x43\xd8\xaa\xe9\xdf\xbb\x82\xe8\xa6\x9a\xef\x51\x47\x1c\x94\xa9\xec\xc4\x60\x2e\x67\xf7\xdd\x3d\x99\x5b\x2e\x2e\xbe\x58\x98\x39\xd0\xff\xa8\x23\x3c\x2b\xb2\x9b\x6a\x99\x90\xf5\xbc\xed\x9d\xf6\x03\x8e\xd6\xb8\x92\x37\x26\x7b\x47\x75\x14\xa1\x15\x3f\xa5\x2c\x24\x41\x8f\x7f\x6e\x72\x0e\xf0\x22\xd4\xea\xbd\x3c\x96\x10\x43\xd4\x75\x76\x42\x70\x01\x2f\xfc\x4e\x54\xa6\xcf\x75\xd6\x85\xa6\xcc\x6b\x43\xf7\xdb\x13\xb2\x0e\x9e\xb7\xab\x98\x93\x75\xbf\xe7\x9b\xd6\x1a\x97\xd1\x5e\xc6\x75\xcf\x5e\xd8\xe8\x43\x00\xb2\x3f\x55\x95\x24\xd8\xe1\xeb\xcc\x57\xfd\x3f\x10\x8e\x19\x8f\x78\x00\xc4\x51\x5a\xc0\xae\x9a\x78\x9e\x6f\x33\x6c\xca\xf4\xbb\xfb\xf9\xc2\x88\xcc\xa1\x1b\xbf\xda\x8a\xb3\x82\x2e\x5d\x28\x4f\xce\xea\x3e\xbf\x57\x13\x8d\xf3\xeb\xe1\x73\xc4\xb8\x8f\x6d\x25\x78\x7c\x76\x6d\x3d\x35\xbe\x09\x7f\xc8\xe2\xe0\x7f\x01\xff\xb7\xe8\x8e\x87\x1d\x81\xa7\x63\xdb\xdb\x13\x37\xf3\xc3\x9f\x9d\x86\x3d\xb3\xa6\xdf\x5c\x00\xef\xc7\x8d\x3c\x3b\x13\xce\xc6\xdd\x6b\x2c\x81\x35\xd9\xfa\xa2\x95\xf0\x05\x7c\xb6\x4c\x01\xff\x21\x28\x48\x21\xc8\x26\x62\xdf\xb1\xcf\x88\x1c\xfc\x11\xbc\x00\xf9\x0c\x4f\x5b\xb3\x08\x0d\x41\x66\xda\xb5\xa2\xd7\x91\xb4\xa7\x6f\x21\x98\x10\x71\x23\x04\x2a\x27\x0c\xf7\x87\x42\xf7\x89\x47\x1a\x1e\xc2\x53\x88\x43\xa6\x43\xf0\x7e\x30\x54\x7a\x03\x56\x40\xb3\x30\x23\xfc\x1c\x7a\x7f\xcc\x0f\x09\x87\x5b\xf7\x09\x91\x73\x08\xb4\x5a\x8d\xba\xa3\x73\xec\x7c\xd0\x21\x74\xf1\xd3\x09\xe0\x00\xdc\x76\x3d\x1b\xb2\x81\x6f\xf5\xd1\xa1\x3d\xc8\xa4\x06\x3b\x88\x85\xb8\x15\xca\xa0\x2b\xc8\x61\xa9\x23\x3c\x1f\x19\x40\x7f\xc3\x74\x74\xe7\xd1\x3e\xf8\x37\x5a\xb6\x6f\x06\x02\x61\x36\xab\xb7\x22\x2f\xb1\x30\xbb\x59\xa8\x0c\x1b\xf7\xd8\x8e\x48\xa4\x5f\xb8\xaa\x24\x5e\xa2\x6f\xee\x2d\x00\x17\xd1\xea\xea\xe2\x40\x98\x36\xcf\xb8\x18\xbc\x43\x35\x89\xfb\x20\x2f\x6a\x34\xf2\x08\xaa\xa3\xce\x4e\xee\x84\x7d\x29\xbd\x41\x1b\xe0\xbb\x94\xe4\x55\xa5\xc8\x7e\x8a\x9d\xed\x63\xd4\x8a\x3c\xe2\xa1\x86\x90\x20\x9c\x77\x65\x2a\xa1\x8f\xff\xbe\xfb\x25\x71\x15\xaf\xa6\xe6\x0c\x91\xc1\xcd\x32\x18\x89\xcf\x39\xbe\xa2\x4c\x30\x9a\xed\x05\x57\x81\x0f\x59\x9b\x92\xce\x42\x74\xe6\xb2\xc0\x93\xf0\x12\xc6\xb4\x55\x9b\x60\x1d\x7d\x9a\xed\x1b\x64\x0f\x75\xec\xfd\x2c\x3c\x33\x67\xd9\xa5\xb1\xf8\x37\x4a\xaf\x2e\x57\x42\x92\xdc\xb7\x7a\x1a\xa1\x4e\x1a\x94\x6f\x47\x9c\x2a\x4e\x10\xfc\x23\x2a\x84\x12\x28\x15\x5c\xca\x6f\x4e\xec\x05\xaf\x72\xef\xee\xed\x80\xf0\x1c\x2b\x8f\x1b\xd0\x6b\xd6\x61\xbb\x49\x30\x9d\xf6\xef\xce\x8d\xec\xf2\xe2\x9f\x17\x75\xf8\x09\x26\xa7\x8e\x0a\x3c\xbe\x60\xad\xa5\x1c\x3f\xa0\x9f\xae\xeb\x24\xb8\x6b\xbe\xf1\x5e\x11\xea\x73\x1e\x12\xb5\xc4\x20\x45\xd3\x91\x50\xe2\x6f\xa9\x20\xa0\x16\xd4\x8a\x4e\x79\x1c\x82\x46\xf0\xef\xd9\x1d\x86\x68\xcc\x8e\xdb\xa9\xd9\xeb\x9b\xb5\x03\xe3\xb2\xf9\xf5\x11\x6d\x01\xd9\x5f\xab\xfd\xcb\x23\xf1\x7b\xca\x7f\x69\xe8\x78\x73\x49\x0e\xe7\x1e\x61\x45\xa1\x3b\xfe\x12\xe1\x8c\xbe\x30\xfe\x36\x31\x4d\x33\xc5\x5f\x0a\x3a\x28\x4b\xdd\x5b\xc1\x04\xd9\x41\xbb\x4c\xf0\x2e\xc7\xf3\xe6\xdc\xec\xdd\xe7\x7b\xce\x3e\xca\x16\x9d\x69\x6c\xfe\x93\x3d\xdc\x29\x2a\x9d\x83\x5f\xdc\xea\xae\x3e\x8e\xa7\xd4\x97\xb0\xde\xe0\x7f\x55\x8d\xcb\x9e\x4a\xe0\x94\xae\x8f\x83\x88\x53\x0a\x77\xf9\x15\x13\x95\x79\x65\xee\xab\x88\x4f\xd4\xde\x76\x04\x30\x86\xb7\xf6\xc6\xc2\x6c\xbf\x2b\x3f\xfa\x3f\x65\x8b\x2f\x72\x9a\xc7\x66\x5f\xed\x7f\x6f\x5e\x89\x9f\xd1\x3d\x3d\x87\x81\x3f\xd9\x66\xc7\x9a\x83\xbf\x53\xff\x00\x77\x90\x90\x54\x09\x1d\x7e\x43\xb8\x5f\xf2\xca\x2f\x88\x18\x54\xd0\xe9\x6e\x43\x94\x6b\x30\x3b\x0d\x38\x92\xf7\xf4\x7a\x62\xb6\xcf\xf0\xd6\xfe\x35\xd9\xf4\x6b\x94\xa6\x80\xec\xf6\x41\x61\x09\x9c\xfd\xdf\xd9\x08\xd5\x13\xbc\x57\xd7\x7d\x26\x1d\x5f\xd4\xba\x26\xeb\x3e\xc1\xa5\x6e\xcf\x61\x29\x81\x53\x31\xcd\xcf\x8d\xf0\xb8\x68\x81\xfb\x44\xa2\xb3\x0e\xb0\xfb\x4e\xcc\xe0\xbb\x3f\x9c\x86\xed\xc8\x14\x5c\x7e\x8e\xcd\xce\xa2\xf6\x6c\x41\x7f\xe3\x8e\xd5\x6e\x44\x9f\x67\xaf\x28\x98\x8b\x3e\xc2\x4f\x12\x7d\x41\xaf\x11\x36\x21\x8b\xd0\xeb\xc4\xec\xe4\xdd\xe8\x3b\xb0\x2e\xf0\x23\x66\x0d\x3d\x5c\x45\xc6\x56\xc0\x7f\x6c\x87\x30\x0e\x42\x7d\xb0\x06\xcd\xc5\x57\x5c\x1e\x8f\x52\x09\xdb\xbb\x53\x50\x1c\xe1\x5a\x4d\x3c\x9a\x4c\xdc\x6b\xf0\x43\x4f\x12\x9f\x8a\xdc\x50\x1c\x58\x0b\xa7\xa1\x1c\x48\x9e\x64\x42\x2d\x70\x7a\xe0\x31\xf4\x1e\xb2\xcd\xe3\x27\x66\x83\xfc\xb1\x8d\xc3\x50\x74\xc5\xfd\x00\x74\x24\xf4\xf9\xd2\x6a\xe4\x0b\x3c\xaf\x4b\x8a\x7c\x81\x8f\x55\x73\x91\x67\xb0\x2a\x3f\x0d\xf9\x0d\xdf\x16\x42\xa8\x35\x12\x09\x35\xa1\x6b\x91\xdb\x49\x4e\x68\x1c\x1a\xb9\x77\x08\x2d\x46\xfb\x3c\xb8\xe8\x75\xcc\xc3\x16\xc0\xa2\xb0\x31\x77\x7d\x61\x29\x6d\x70\x30\x1a\xae\xa3\x1d\x3a\x5d\x07\x37\x53\x1f\x57\xbe\x83\xef\x53\x0f\xeb\x1d\x10\x1b\xca\x0f\xc1\x62\x64\x35\xa5\x1b\x2c\x46\x52\x29\xf2\xc4\x85\x88\x85\x12\xbd\x77\x02\x6a\x45\x99\xeb\x31\x05\xdd\x46\x7e\x6c\xf3\x1b\xed\x26\x7d\xb9\xb3\x04\x32\xf3\x3f\x5d\xf8\x08\x9d\xe6\x3d\xed\x98\x09\x3d\xe5\x9e\xb1\x9c\x84\x3e\x72\xb4\xba\x4a\x78\x3a\x9b\xc5\x7b\x0d\xef\x65\xa9\x89\x5a\x58\xc2\xac\x38\xb2\x05\x7e\xcf\x68\x0e\x38\x89\x04\xd0\xcf\xb9\x77\x23\x6c\xda\x5b\xdb\xed\xc8\x1f\xca\x8f\x5b\x6f\xc0\x37\xca\x87\xe7\xbf\x82\xff\x14\xd3\xdb\x08\xd0\x7a\xd9\xa6\xf2\x21\xc8\x43\x12\xa5\x5d\x02\x05\x88\xa8\x5c\x06\x24\x10\x5c\x22\x24\x41\x0f\xf9\x33\x12\xb6\xc2\xbb\xb8\x87\xfd\xdb\x60\x03\xbb\xc2\x3d\x1e\xbe\xc9\x5a\x6b\x1b\x8b\x6c\xa3\x3d\xb9\x71\x80\x38\x5c\x14\x7c\x96\x0f\x8e\x37\xe6\xb5\x8c\x02\xbd\xf3\xef\x95\xa6\x80\x3e\xba\xbb\xea\x07\xe0\x89\xdc\xbb\x6c\x1c\x58\xab\x7a\x9f\x9d\x03\xd9\xc8\xdf\xc5\x5d\x83\xd2\x24\x9f\xfc\xba\xa1\x33\x22\x9b\x95\x3f\xa0\xd7\xfc\x4a\xdb\x5e\x78\x3d\x33\xe7\xea\x07\x22\xb7\x51\xd1\x37\x82\x28\xad\xa5\x34\x9a\x88\xad\x95\x86\x92\x29\xc4\xbe\x32\xbc\xaa\x90\xf8\xaa\x78\x2b\xf3\x18\xb8\xc2\x38\x3a\xeb\x22\x48\xcb\x2b\x3b\x7c\x08\x7c\x94\x1b\xba\xa7\x18\x5a\xa7\x5c\xbe\x32\x01\xda\x23\x9b\x61\xfb\x18\x62\xb1\x7f\x5d\x6e\x25\xc2\x67\xa3\x7a\x9e\x12\x69\x3d\xf4\xfa\x83\x44\x61\x87\xd8\xf4\x96\x98\xdb\x9c\xaa\xc8\x23\xb6\xd4\xcd\xa4\xb3\x89\x5f\x2d\x65\x99\x0b\xc1\xed\xe6\xe9\xb1\x63\x41\x86\x31\xd1\xb7\x19\xec\xc9\x9b\xb6\xe2\x26\x78\x2e\xa7\xdf\xf6\x0d\x64\xc5\x7d\x73\xa9\x81\x08\x5e\x8a\xeb\xfe\x40\x44\x07\x96\xd7\xa5\x12\xc9\x67\xce\x9a\x6c\x88\xac\xce\x0d\xf2\xb3\x44\x43\xcb\x31\x5a\x37\xf1\x4a\xdd\xa9\x0c\x3c\x38\xdd\xe2\x1f\x03\x83\x41\xc5\x7f\x7d\x63\x40\xa4\x60\xc9\x8a\x0a\x10\xce\x7d\x6f\x37\x01\x2c\xe6\x29\x86\x5e\x13\x33\x6e\x62\xdd\xae\xc4\xd4\x2b\x40\x6d\x25\x31\xe1\xc2\xee\xc2\x70\x62\x62\x5f\xac\x7c\x11\x11\xd7\xb9\x84\xe6\x4e\x54\x37\x37\x9e\xfa\x49\xbc\x52\x3b\x21\x66\x11\xf1\xbf\xf2\x45\xbe\x1b\xc0\xc9\xa6\xf4\x15\x35\xa0\x95\x36\xc9\xee\x18\x38\x9d\xf7\xe8\x5a\x37\xbd\x3e\x23\xad\x7f\x0b\xdd\x3e\x33\xab\xf9\x14\x2d\x2e\x2b\xb3\x74\x34\xf5\x11\x2e\x42\xad\xa2\xa6\x65\xef\x67\x6f\xa7\x7c\xc2\x33\xb2\xa3\x29\x64\xc2\x40\x1c\x8e\x32\x1b\x9c\xe3\x37\x97\x7c\x0e\x3a\xbc\x62\x80\x2c\x80\x73\xad\x33\xc9\x79\x48\xe6\xd5\xeb\xf4\x99\xd9\x31\x7d\x49\x34\x0c\x3f\xb1\x49\x49\x7d\x84\x6f\x36\x7b\x50\x33\x09\x41\x39\x97\xa9\x36\x84\xdf\x2c\x36\x45\x4b\xbc\x8f\x6b\xa1\xac\x07\x87\x0e\x3f\x24\x3f\x83\xce\xee\xd1\x93\xf3\xe0\xaa\x15\x3b\xc8\x04\x44\x61\x3d\x89\x2c\x41\xed\xaf\x3c\xa0\xd1\x41\xdc\x19\x06\xf5\x07\x78\xbd\xb1\x8e\x9a\x04\xb9\x96\xec\xa7\x8e\x81\x4e\xe6\x58\x51\x0a\xa0\x8b\xcc\xab\x94\x6d\x70\x0c\x6e\x26\xf9\x39\x02\x1c\x3e\x4a\xce\x45\xb4\x7b\xe6\x91\x13\xd1\x15\x6e\x2f\xc8\x5e\x68\xf7\xb8\x1b\xe4\x64\xf4\xf2\xe5\xed\xd4\x40\xca\xef\x9e\x47\x94\x61\x8a\xa5\xc1\x9d\x12\x4b\x89\x29\xfa\x4c\x19\x49\x19\xa3\xec\x20\x57\x93\x7b\x18\xa5\xe4\x38\x72\x45\xd6\x4c\xf2\x6c\x72\x7e\x2c\x87\xf4\x8e\xcc\xf1\x3d\x45\x1a\x22\x13\xdc\x60\x52\x2d\x19\x1a\xf7\x82\x74\x8b\x64\xbe\x34\x9e\x92\xc9\xad\xea\x2e\x24\xbf\xe2\xdc\xae\xd3\x93\x33\xd8\x1f\x4d\x04\xb2\x33\xeb\xab\xe2\x30\xe9\x2e\xcb\x96\x9e\x4a\xd2\x30\x7d\x32\x01\x52\x12\x83\x15\x63\x22\x6d\xa3\x0f\xf8\xdc\x22\xcd\xa3\x4f\x76\xdb\x86\xfd\xa5\x91\xad\xdd\x49\xd3\x29\xaa\x8b\xaf\xc8\xc7\xe4\x9e\x9d\x26\xf2\x54\xa9\xa9\x76\x1c\xa9\x58\x62\x6f\xfc\x46\x8a\x11\x1d\x91\xfd\x24\x39\x0b\xfa\x68\x0b\xb0\xd7\xfc\x3d\xa7\x1e\x63\x9d\xdc\x73\x87\x3a\xb1\x1c\x4e\xa4\xcf\x4e\x2c\x8b\xf5\xc1\x6d\x0c\xb6\x9b\x79\xc9\x9a\x8c\x05\xd3\xc0\x81\x03\x24\xb6\x71\x6b\x87\x0f\xc9\x3d\xbf\xae\x0a\xc6\x6e\xe5\xb9\x18\x38\x18\x4f\x93\x2c\x69\xc2\xfc\x73\xca\x29\x33\xb1\x59\x4a\xab\xf4\x39\xe8\x17\x59\xc8\xc1\x78\xf4\xbc\xb8\x7a\xf7\x7e\x54\x23\x5c\xb6\xdc\x80\x86\xf1\x7d\xad\x5f\xa1\xdb\x99\x23\xcf\x1a\x48\x81\xb5\xb4\x56\x2a\x76\xbf\xf2\xaa\x65\x14\x96\x5e\xee\xa3\x5f\x86\xcd\x2a\x49\x17\xa1\xe8\x60\x21\x97\x34\x1e\xcd\xcd\x37\xa7\x85\xa0\x99\xda\xba\x03\xcf\x50\xef\x9c\xc1\x5d\x5e\xe8\x04\xc5\xd2\xe5\xa3\x91\x7a\x29\xd1\xfa\x0f\x22\x62\x6f\xed\x23\x92\xbc\x7a\xda\x9a\x95\x58\xdf\xe9\xc3\xe5\x00\xb6\xaf\xe5\x8e\xce\x13\x7d\x5d\xff\x5b\x60\x40\x65\x55\x7f\xd0\x70\x34\xac\xec\xbf\xd4\x73\xe8\xfc\xa2\xeb\x51\x45\xc8\x43\x43\x99\xb7\x3f\x52\xa0\xfd\xe5\x9a\x82\x6c\x56\x95\xd9\x8c\x45\xac\xb8\x13\xcf\xd4\x91\x02\x06\x4a\x9b\x86\xb0\xfe\xbe\xa7\x65\xcb\xb0\xdd\x5d\x1f\xb5\x89\xe8\x8d\x36\x1d\x7f\x18\xcd\x6e\x74\x41\xf2\x50\xb7\xea\x9c\xd4\x65\xc8\xe7\xb2\x8f\x51\xf3\x90\x92\xa2\x75\x3b\xdf\x22\xb1\xf9\xbf\x5c\x37\xc0\xef\xd4\x66\x9b\x45\x70\x11\xb7\xe6\xcc\x42\xd2\xbe\x2b\xed\x4d\x9e\x58\xc7\xc5\xa2\x52\x16\xb6\xe2\x6c\xa4\xe6\x0c\x5a\xdd\x5d\xc4\xdf\x8d\x7a\xb7\x75\x22\x33\x90\xf7\x0d\x7d\x29\xf5\x48\x49\x55\x71\x64\x37\x12\x56\x1a\xbb\xb3\x11\xfe\x59\x38\xc6\xd5\x13\x26\x6a\x6c\x6c\xb2\xe0\x19\x3c\xe0\xec\x0d\xde\xcb\x53\xa2\x36\x2b\x6e\x53\x86\xda\x22\xe0\x68\x32\x35\xfa\x97\xec\xdc\x2c\x89\x38\x88\x55\x88\x33\x92\x9e\x30\x0b\xb3\x1f\xa4\xfd\x61\x54\x10\x56\x47\x8f\xa3\x0f\x10\x39\xde\x0d\x74\x2b\xf0\xda\xb2\x28\x1a\x07\x76\x1d\x53\x42\x1b\x8d\xec\xe8\xff\xce\x0b\xc0\x85\xb4\xae\xe1\xae\xcd\xb6\xad\x38\xc7\x59\x91\xdd\xae\x5f\xcd\xf6\xc0\x1f\x13\x95\xb0\xb6\x11\x96\x93\xfc\x98\x81\xc4\xd9\x69\x59\x8c\x44\xd0\xe9\x80\x90\xae\x80\xe6\x7b\xef\xa4\x3d\x84\x67\x2e\x7d\x4d\x23\x20\x33\xc7\x1c\xa7\xfe\x40\xce\xf5\xdb\x71\x1b\x88\x9b\x5a\x22\x39\xf5\xc4\x82\xf2\xdf\xec\x2e\xd0\x36\x2f\x8b\xd5\x0b\x1e\x15\xfe\x62\xde\x00\x1f\x60\xe5\x8c\x8f\x10\xf5\xc4\x2b\xc6\x64\x78\xed\x81\xf9\xf4\x20\xf8\xc5\xce\x77\x34\x13\x22\x58\x5a\x4d\xf3\x42\xb7\x8f\x39\x4a\xed\x43\x19\x67\x8a\x39\x3c\x72\x44\xd3\x30\xdb\x44\x9e\x52\x96\xc5\xea\x21\x5d\xd1\xfe\x65\x3e\x22\xe9\x05\x5a\xa6\x1d\x89\x8a\xa6\x33\xd6\x90\x04\xa9\xb7\xe8\x89\xa4\xc2\xa8\x00\x5a\x2d\xa9\x6e\xa7\x1f\x6d\x16\xa9\x6f\x69\x04\xb5\x81\xf4\x73\x0c\x99\xba\x85\xb4\xad\x77\x14\xbb\x8c\x5d\xdb\x18\xc5\x6a\x65\x7d\x2f\x1d\xc5\x7c\xc8\x5a\xa0\x31\x32\x6d\x98\x61\xfc\x18\xc6\x36\x86\x02\x09\xa4\x67\xd3\xff\xa6\xdc\xa6\x35\xd0\xd3\x22\x21\x9a\x1d\xed\xae\x57\x23\x15\x47\x0b\x5d\x3a\x97\x6a\x45\x1b\x39\xa6\x9b\x42\xa3\x4c\xec\x8e\x62\x5d\x96\xbc\xad\x6f\x63\x7e\x14\xa7\x97\xb0\x98\x4e\xc2\x2f\xb9\xdb\x18\x7b\x05\x18\x6f\x3a\x9d\xc9\x9f\x0a\xcf\xa7\x9d\xe7\x0e\x1e\xbf\x4e\x9b\xc6\xe1\x46\x14\x50\x4f\xb0\xf7\x78\x39\x53\x06\x59\x33\x97\xdc\xa6\x04\x31\x83\xc7\xfc\x47\x3e\x4d\xbd\x78\xfa\x1c\x6b\x61\xfe\x92\xda\x20\xe6\x5a\xdd\x70\xd1\x34\xc6\x21\x0d\x51\xf5\x81\xce\x56\x03\xec\x2f\xb4\x0e\x25\x0b\xf4\xa4\x8d\x96\x2f\x3d\xb6\x8c\x1a\x2a\x39\x13\x1e\x41\x29\x10\xa5\xed\xd8\x41\xfe\x25\xd8\xb8\x04\x23\xc7\xf0\x6e\x8f\x3d\x44\x6a\x63\xac\x6a\x3f\xc6\xac\xad\xbc\x57\x75\x95\x71\xbd\xfc\x84\xd1\x42\xff\x63\x06\x14\x85\x74\x27\x13\xc8\xbc\x42\xf3\x37\xbc\x20\x78\x51\x05\x79\x47\x92\x33\x29\xb7\x73\x2f\x87\x7d\xa1\xcc\x55\x85\x6e\xf7\x26\xa7\xc8\x17\x2f\xfe\x47\xaa\x91\x18\xc7\xaa\xb1\x6f\xac\xb0\x56\x27\x66\xcb\x69\x9c\xe5\x3c\xa3\xa7\x75\x97\xa1\x82\x7e\xa3\xe1\x9d\xac\x8e\xf6\xa6\x26\x9d\xfe\x87\x66\x5b\x71\x33\x5b\x4a\xf5\x32\x6f\x4f\xfc\x46\xa1\x16\x2a\x42\x6b\xc9\x9d\xfa\xef\xdb\xbc\xc9\x63\x34\xdf\x17\xc7\x91\x36\x2a\xc3\xc6\x1a\xb0\x23\x9c\xb1\x2d\x2b\x99\x79\x7d\x4f\x2b\x1e\x32\xaa\xbb\x13\xf3\xaf\xd0\xcf\xb5\x37\x49\x1f\xd2\xae\x35\x0d\xd1\xd7\x52\x5f\xd7\xf6\xe0\x86\xa9\x33\x2c\xd5\x89\xe1\x94\x60\x33\x3f\xd4\x8d\xcc\x2e\xc4\x6f\x7d\x48\xea\xd1\x57\x2d\x5e\x8e\xbd\xce\x59\x30\xb6\x15\x1b\xc3\xc9\x6f\x4e\x67\x22\x17\x99\x15\x4b\x19\x39\x67\x2f\xe5\x2f\xa2\x57\xf5\x3c\x96\x6e\xa6\x55\x74\x18\x69\x1a\x6a\x7d\xf3\x06\x5c\x30\xe5\x56\x6d\xc7\x91\x87\x14\x2b\xcb\xca\x90\x8b\x64\xcf\x12\xe3\x56\x3d\x29\xb1\x80\xb0\x78\x1e\x96\xa5\x4e\x19\xfb\x07\x85\x38\xef\x5b\x4f\xc9\x3a\xd2\xcf\x54\x86\x48\x67\x9f\x7a\x58\xf0\x5a\x4c\xcc\xf8\xab\x98\x26\x7c\x95\x35\x82\x79\x48\x90\x84\x5b\x80\x7f\xc9\xbb\x9e\x7d\x24\x79\x12\x37\x10\xdf\x1d\xe6\xca\x7e\x4a\x9c\xb9\xf5\x09\xcb\x08\xc6\x2d\xc4\x33\xbf\x43\x6d\xa3\x9e\x33\x0e\x21\xee\x2d\x75\x32\xdf\xac\x70\x4b\xae\xa4\x1c\xe7\x5c\xb0\x45\x3c\x0b\xf7\x5d\x7e\x4a\x28\xc8\xae\x64\x74\x09\x6c\xf0\x74\x7c\x34\x8f\x4d\xc0\x92\x64\x5c\x3b\xa2\x38\xb4\x85\x5d\x0b\x6a\xb7\x52\x58\x74\x28\x77\xe1\x52\xe6\x53\x58\x37\xaa\x8f\x11\x80\x48\x9a\x3f\x48\x6f\x10\xec\x2a\x86\x25\x5e\x04\x86\x81\x29\x6a\x25\x3a\xca\xba\x84\x6e\x44\x06\xc3\x99\x6f\x06\x27\x64\xf7\xf3\x56\x81\x3d\x49\x93\x38\x9d\x10\x2f\x34\x9c\x9d\x09\x07\x6e\xf5\x64\xed\x43\x46\x2d\xf8\xc6\xac\x47\x4e\x8f\x6a\x67\xb8\xa0\x9e\x4d\x3e\x92\x1a\x8c\x54\x1e\x20\xf6\xc2\x90\xfc\x91\xc2\x7e\xec\x94\xf4\x90\x20\x1c\x3b\x4c\xbb\xc5\x7b\x8d\x25\xe1\xf2\xb9\x14\x4c\x90\x38\x91\xe3\x84\xf5\x85\xc8\x58\x77\xb1\xef\x5b\x2a\x99\xdd\xa4\x25\x0b\x3a\x99\x2e\x24\xea\xe8\x91\xf4\x1c\xec\x7e\x43\xbf\xb8\x8f\x59\x59\x36\x5d\x14\xc4\x9c\x9d\x57\x27\x78\xcb\x20\x48\x16\xf3\xe9\xf4\x4b\xd4\xd3\xbc\x85\xf4\xcd\x59\xf9\x9c\x73\xb4\x8b\x47\x56\xb1\x71\xb4\x94\xe0\x5b\xac\x8d\xb4\xd1\x5b\x96\x30\x5d\xa8\xc5\x0b\x38\x8c\x54\x2a\x7b\xf4\x3a\xda\x1d\x32\xb5\x3e\x5d\xf4\x4c\xb4\xc7\x0c\x0b\x99\xc2\x25\xba\x58\xc1\x0a\xfe\x37\xd1\x73\xde\x00\xaf\x8a\xa2\xe5\x66\x70\xf1\x99\x4a\x8e\x0b\xe7\x68\x82\x3f\xeb\x1a\x3b\x36\xd8\x85\xa9\x66\x45\x6c\x6e\x64\x10\x98\xa9\x0b\x44\x74\x03\xe3\xf3\xe8\x3e\x9a\x1d\xd5\xab\xd6\x45\xb4\x4c\x37\xaa\x38\x53\x30\x90\xfb\x5d\x33\x81\x4f\xc8\xb9\x2b\x68\xe5\x4d\x54\x16\x92\x0c\x9c\x6a\xf9\xa9\x53\x17\xd8\x47\xa4\xd1\x71\x1d\xac\x59\x62\x9f\xa0\x0f\x8c\xab\xc2\x2d\x9b\xee\xd2\xcd\xfc\xa4\x05\x4b\x68\x35\x3c\xbc\xd5\x24\xaa\x1d\x1d\xa9\x52\x0a\x1f\x95\x35\x17\xde\x16\x60\x25\xc5\x39\x7d\x7c\x47\x53\x13\x4f\xc6\x2d\x2b\xa0\xa1\x46\x8e\x97\xde\xf7\xe4\x4f\xd6\x07\xad\xcb\xe1\x05\xcc\xc2\x9c\xef\x81\x4a\x46\x94\xe2\xfe\xc6\xe7\x74\x47\xd9\xc6\xf9\x3a\x9a\xad\x58\x63\xb5\x8a\x12\xc8\x4c\xb5\x3c\x15\x5e\x6c\xe9\x37\xae\x10\x44\x37\xbc\x56\x0e\xf1\xde\xd6\x7c\xe3\x54\x72\xd3\x2d\xc3\xf0\x3d\xf6\x8f\xd2\xf2\xb4\x68\x96\xa6\x88\x19\xd3\xc8\xdc\x55\x10\xbd\x37\x89\xfe\x5f\x5e\xf0\x86\xc7\xb4\x96\xdc\x67\x2e\x7f\xa8\x12\x79\xa7\xd5\x66\x72\x35\xeb\x5f\xc5\x1d\x61\x4f\xd7\x8d\x82\x3d\x82\xbd\xed\xcd\x8a\xaf\xbc\xe1\xe6\x74\xf6\x3d\xee\xfe\xba\xcf\xf0\x4c\xf6\xb5\xaa\x98\x13\xc5\xac\xb4\xb2\xbe\x98\x39\xcc\xf1\xc5\x2b\x03\x1e\xd0\x3b\x0a\xfa\x36\x10\x68\x68\xde\x5a\x97\x2e\xaa\x97\xf2\xb0\xd5\x3e\x72\x08\x5b\x50\xfe\x53\x58\x77\x76\x91\x81\x24\x58\xdf\x73\x53\xe1\xcd\x6b\x3f\x1d\xce\x5e\xc7\x75\x6d\x11\x40\x08\x3b\xaf\xbe\xf0\x84\x13\xcb\xb5\xaa\xea\x90\x99\xd1\x59\xd6\x1e\x90\x49\x4f\x2d\x7a\xb4\xc1\x83\x36\x2f\xbf\xce\xc5\x42\xe9\x57\x71\xac\x98\xa4\xb3\xec\xdb\x45\x0f\xf2\x59\xe9\x7e\xda\xe9\x79\x63\x4e\x65\x8a\x39\x9a\xfc\x0c\x2a\xed\x87\x7a\x5d\x26\x1f\xaf\x55\x5e\xca\xaa\x3b\xa6\x97\x27\xe3\x7e\x1f\x88\x95\x02\xf8\xe8\x3d\x1e\x22\x0b\xa1\xdf\x53\x2b\x30\x83\xce\x73\xda\xf9\x5d\x50\x3a\x90\xc2\x4e\x45\x22\x8a\x0e\xe6\x5b\x67\x56\x68\x24\x3a\x45\x16\x22\xb6\xd2\x6c\xc5\x6d\xa6\x81\x39\xb7\xb3\x47\xe1\x17\x2a\xe1\xec\x17\xc7\x3c\xe4\xb3\xf1\xaf\xa3\xfe\x4a\x3a\x88\xe3\x7c\x1f\x89\x60\x70\xb9\xe7\x11\x01\x0d\xda\x3a\x27\x8f\x6f\x82\x77\x02\xe9\xec\x48\xa4\xd8\x74\x41\x2f\xc4\xaf\xd7\x8c\xd4\x2d\xc5\x5b\x44\xf8\xdc\x61\xc2\x5c\xea\xbb\x1c\x98\x60\xcc\x36\x29\x9d\x89\x3e\x47\xdb\x64\x67\x41\xdb\x28\x95\x04\x07\x3e\xf3\x55\x89\x36\x43\x3d\x9e\xcb\x05\xfb\x60\xe1\x1c\x1a\x3f\x13\x89\x01\xc8\xec\xe5\xe8\xea\x42\xaf\xbc\x0a\xd4\x4a\xad\xd1\xee\x45\xa7\x08\x57\xe4\x8e\x43\x27\x53\xfa\x55\x0d\xe8\x3c\x9c\x4e\x71\x14\xdd\x9d\x7c\x59\x36\x1b\x15\x46\x0e\x88\x87\xd0\x57\xbe\xa3\x85\x85\xd8\x8e\x35\x43\xfc\x4e\x4c\x3e\xe7\x38\xef\x2a\x69\x06\x70\x86\x95\x83\x69\x8c\x81\xba\x6b\xf4\xc8\x1c\x86\x06\xa3\xfd\x12\x4c\x52\x6f\xa1\x09\xc9\xa7\x95\x5f\x68\xd3\xb2\xaa\xe4\x95\xd4\x9a\xa4\x1f\xd2\x54\x2a\x2e\x72\xa2\xd8\x8d\xea\xeb\x73\x42\x38\x8a\x3a\x73\xcd\x09\xbe\x33\xe5\xbf\x39\x07\x79\x33\xa9\x1b\x46\x8c\x65\xbe\x21\xcf\x37\x88\x75\x2e\xfc\x3d\x2a\xe7\xdc\x73\xbc\x64\xde\x8b\x1c\x0e\x37\x8b\x54\xaa\xdc\xcd\x39\x91\x59\x2f\xb7\x62\x13\x93\xa6\x49\xce\xb1\xca\x23\xfc\x45\x22\xe6\xbb\xdd\x97\x05\x71\x4c\xf7\x35\xe3\x79\x59\x0c\xcd\x9c\x43\xdc\x9d\x0c\xf3\x88\x54\xa6\x13\x45\xaf\xaf\xd0\x1e\xc9\x61\x2a\xb6\xe6\x4e\x52\x8d\xe0\x8e\x54\x0d\x2a\xc2\xd0\xa7\x0a\x86\x0c\x9f\x31\x5d\xb6\x4d\x62\x38\xa2\x97\x8c\x16\x7d\x08\xb7\x13\x0e\x08\xfd\x77\x0d\xf3\x95\xfc\xba\xd5\xc9\xdc\x3c\xde\xc9\x39\xf3\x39\x3b\xb8\xec\x11\xe7\x19\xd3\x69\x26\x9d\x46\xf3\xaf\x28\x4c\xb6\x49\x6d\x36\xb6\xb0\x67\xa9\x92\x0c\x93\x91\xe9\x8a\xc9\x79\x61\xe9\x27\xa4\xdd\x1a\x65\x82\xa3\x98\x91\xf3\x3d\xac\x51\x18\xa0\x4c\xf2\xee\xe2\x4f\x92\xfd\x58\xa5\xe5\xda\x49\x17\x3b\x36\xb2\x85\xc2\xf6\x91\x23\xe9\x41\x8c\x28\xcd\xb0\xe6\x6a\xed\x90\x04\x54\x93\xab\x74\xcc\x68\xd5\xda\x8a\xed\x50\xaa\xfc\xa6\xb9\x2e\xed\x8e\x14\x2c\x5a\x10\x57\x21\x5e\x53\x50\x1a\x4a\x14\x7c\xd2\xef\xda\x59\xc9\xab\xd6\x2e\xf6\xa8\xe7\xe8\x73\x7e\x3a\x2e\x61\xdb\x4a\x9d\x46\xce\xa0\x99\x99\xcd\x9a\xcd\x9a\xf3\x2d\xa8\xb8\x5f\x8d\x6b\xf8\xcc\x90\xab\x16\xd5\x6e\x03\x2b\xe4\x6d\x95\x71\x69\xcb\xa5\xe1\x65\x84\x38\x07\xb1\x75\x71\x61\xc8\x7b\x41\x87\xf1\xed\xce\x75\x3c\x38\x9f\xea\xb1\x9f\x13\xab\xa9\x9e\xfd\x95\x55\x2f\x83\x47\xae\xa2\xf9\xb1\xb6\xe5\xb6\x69\x9a\x3b\x61\xf1\x2a\x75\x6c\x9b\x85\xfe\x41\x35\xae\xa9\x05\x9c\x2c\x97\xd6\xe9\x4e\xe8\xa4\xce\x55\x59\x87\xc5\xa2\xfe\xf2\x03\x21\x4c\x01\xae\xe4\xa8\xd7\x7d\xde\x12\xe3\x1f\x8f\x69\xec\x3f\xba\x33\xb3\x1f\xb3\xd6\xc8\xc9\x23\x93\xa9\x7d\x2c\x9e\xa4\xcb\xb2\x27\xbd\x81\x35\x54\xfa\xef\x54\x1d\x8a\x2f\xee\xc9\x68\xca\x5c\x56\x98\x99\xd9\x9e\xbc\xda\xe0\x9c\xf5\xe4\x40\xa3\xee\x62\xf6\xfc\xbd\x8e\xb9\x18\x9e\xb4\xa5\x50\xe5\x4b\xf8\xe6\x7a\x45\xce\x03\xe3\xa6\x06\xc8\x86\xa0\x7c\x00\xe0\x6d\x41\x3e\x4b\x62\x2b\x2e\x66\xe6\xb1\x08\xa5\xec\xac\x04\x74\x5e\x71\x14\x6e\x65\xc6\xf5\xc2\xc9\xb8\x9f\x49\x8f\xf3\xcf\x67\x3f\x3d\x90\xa6\x23\xe1\x5f\x05\x0c\xe7\x6e\x24\xda\x6c\x81\x55\x13\xc1\xf5\xae\x75\xf2\x38\x28\x66\x6a\x90\xcc\x08\xc7\x01\x00\xcf\x19\x9d\x2f\xfe\x54\x11\x91\x5d\xce\x9a\x5e\x3a\x15\xbf\x11\xe9\x2a\x7a\x8b\x1f\xcc\xc8\x36\x56\x11\x8e\x24\x71\xf3\xd3\x89\xd3\x0e\xcc\xd5\xb9\x12\x1f\x05\x28\xd4\xaf\xc1\xfe\x2d\x7e\xca\x01\xa8\xde\x35\x57\xbe\x00\x56\x4f\x0d\x93\xc5\x21\x99\x00\xc0\x7d\x87\x0a\x44\xd7\xca\xe9\xc8\x7c\xa6\x9d\xd9\x0f\xd9\x0d\xf7\x14\xb9\x23\x07\x4f\xe9\x0a\x3e\x23\x70\xe2\x65\x7d\x1d\xd2\x12\x45\xd4\x66\xa3\x8e\x01\xd6\xea\xcd\xa8\x7c\xf3\x13\xe5\x32\x6c\xac\x6b\x8a\x8c\x83\x91\xa6\xc6\x4a\xcb\x48\xab\x01\x80\x1b\x86\x75\x8a\x16\x96\xd5\x53\xdb\x18\x7b\x4b\x58\x54\x3e\xf4\xd4\x94\x4a\xdd\x93\x7e\xa9\x60\x1d\xe5\x4b\xe2\xec\xbc\x7f\x94\xe6\xc8\xab\x9a\x7e\x4a\x91\x3f\x9c\x23\xa3\x98\x37\x53\x14\x08\xa5\xc4\x75\x8b\xf4\x0a\x65\x60\x2a\x55\xd2\x43\x0d\x04\x00\x8e\x90\xec\x2c\x38\x57\xfa\x8f\x3b\x9e\x3e\xab\xf8\x02\x27\x08\xfc\x59\xd8\xcc\x16\x9f\xfc\x6e\x60\xb3\x4e\x1f\x89\xc8\x0b\x63\x8d\x8d\x9c\xaf\x99\xc7\x24\xf8\x3d\x55\x7d\x60\x8e\xdc\x3c\x49\x7e\x9d\x21\x74\xb5\x95\xce\x60\x1c\x9c\x6a\x16\x0f\x32\xb6\x02\x00\xbb\x95\x72\x8a\xcf\x2a\xf5\x57\x04\x52\x1f\x15\x4f\x92\xdd\x21\xaa\x8c\xaf\xa4\x71\x69\x65\xf9\x35\xe2\xab\x09\x6e\x3a\xa2\x28\x3a\x62\x46\xae\x8f\xd0\xd6\x6f\x8c\x6a\x06\xff\xda\xa6\x2c\xd9\x07\x5e\xdd\xb2\x62\xc9\x72\xde\xac\xa9\xd5\x22\x3d\x67\x09\x00\xb0\x74\xb4\xed\xdc\x01\x73\x99\x21\x96\xb2\xb9\x08\xd4\x3b\x11\x96\x19\xe3\xb5\xdf\x4f\x84\xe6\x2f\xc8\x2d\x8e\xfb\xa0\x7d\x94\x93\xbc\xff\x87\xba\x52\x19\xbc\x67\xbc\x12\x93\x1f\xdc\x68\x94\x1d\x92\xe6\x2d\x9b\x2b\xa6\x4b\x4e\x4c\xa5\x0b\xfb\xf9\x04\x00\x60\x76\xd3\x6b\x39\x07\xcd\x68\xc5\x5b\xd2\x83\xa2\xbd\x65\x40\x76\xa7\x71\x61\x89\x4d\xca\x4f\xfd\x2d\x93\xdd\xe1\x72\x2d\xa7\x60\x66\xd8\x35\x75\xa8\x3e\xd8\x77\xb2\xd2\x49\xdb\xb6\xe1\x92\xf4\x45\x2e\x79\x69\xaa\x78\x94\xb2\x75\xea\x32\xe1\x22\xd1\x32\x60\x2c\x73\x32\xe3\x1e\xbb\xd6\x9c\x58\xfb\x80\xb4\xad\x68\x5d\x55\x7b\xf6\x1c\xa3\x4d\x05\x2b\x25\x46\x5f\x5f\xba\xeb\xb0\x93\x36\xb6\xd8\x21\x6c\xbf\xda\xa5\x70\xb4\x4f\xa1\xe2\x85\x61\xdb\x86\x0c\x69\x45\xde\x98\xa5\xf3\x44\x8d\x39\xf7\xa7\xda\x0b\xba\xc4\x7e\x80\x13\xa3\x82\xb9\x97\x3d\xdf\xec\xd3\xbc\x0a\xab\x2e\x9a\x56\xff\x16\x27\x2d\x78\x5a\x23\x3e\x7e\x5f\x4f\xaf\x74\x8a\x2d\xd3\xce\x2f\x6b\x0e\xfd\x94\x73\xaf\x84\xe9\x13\xae\xd0\x98\x36\x6d\x58\x26\xdd\x9f\xdf\xb2\xe4\x8b\xc8\x3f\x97\x31\x75\x82\xc0\x5d\xb2\x18\x08\x62\x2c\x67\x4a\xd0\xa0\xb6\xd9\xa7\xae\xe0\x78\x8d\xef\x32\xce\xa4\x2e\xab\xbd\x91\x59\x1a\x6f\x5d\xd9\x9e\x25\x8b\x48\x28\xd3\xe0\x8a\x02\xd6\x16\x43\xd9\x77\xb6\x3b\x18\xe3\x09\xab\x57\x6d\xd5\x53\x88\x15\xf3\xbe\x69\x8f\x43\x2e\xf6\xd1\xb9\xc3\xf0\x19\x00\x10\xdc\x44\x7b\xd0\x95\xad\xea\x2c\x31\x2e\xa5\x11\xc2\x79\xa5\xda\xd6\x66\xe0\x5e\xc7\x3d\xab\x8c\xcd\xd6\x44\x6c\x2f\xdb\x85\xc7\x05\x4c\x2f\x5e\x46\xc8\xda\xf6\xd5\x38\x83\x28\x5d\xb5\x5c\xef\x05\x5e\x9c\xf7\x45\xeb\x01\x8f\xb2\xc7\xe5\x6a\x91\x58\x00\x10\xd4\xa0\x37\xd0\x51\xad\xb3\xf1\x38\xdc\xf6\x46\x6b\xfc\xf3\x94\x3b\xb5\xd6\x84\xfd\x71\x0d\x96\xbf\x84\x4b\x11\x53\x4b\x5f\x10\x71\xfe\x9f\x8a\x2e\x81\x3b\xb6\xdd\x28\xe8\x86\x96\xaf\x9a\x99\xf7\x05\x76\x9d\xf7\x5e\xf3\x14\x71\xb3\x17\xe7\xee\x41\x83\x00\x40\x80\xc3\x96\x20\x1d\x2d\x2b\x90\xe0\xac\x4b\x0d\x6e\x48\x48\x4a\x70\xcd\x56\x24\x28\x6e\xa7\x65\x1d\x92\x11\x5e\x57\xba\x18\x69\xf5\xcf\x2b\x9a\x84\x2e\xdb\xa6\x2c\x18\x8d\xd6\x7b\x7c\xce\xdb\x84\x85\xcc\x7b\xab\x71\x25\x8d\xb2\xef\x57\xa7\x92\x8a\x00\x80\xdf\x4b\x5a\x05\xdf\x68\x8e\xa4\xba\x66\x2d\xae\xdf\x4f\x1d\x71\xfc\x4a\xf5\x61\x4a\xef\xe1\xa1\x8a\xc3\x14\x5a\x78\xa8\x39\x92\x92\xe4\xef\x6b\xf2\xa5\xa4\x6c\x0b\x36\x6c\xa6\x88\x3d\xfa\x74\xa7\x28\x43\xf3\xde\xe5\x06\x53\x43\x1c\xec\x73\x12\xa9\xae\x00\xc0\x7b\x45\x3e\x09\x7b\x34\xd1\xd8\x2f\x32\xd9\x75\x54\xf6\xc6\xe3\xbe\x55\x22\x16\xe7\x70\x70\xb9\x82\x79\x7f\xff\x93\x12\x09\x33\xdc\xef\x79\x21\x99\xf1\x6e\xdb\xc8\x7c\x1c\xc3\xec\x21\xd7\x9a\x18\x82\x79\xaf\xd5\x99\x8c\x0f\x0e\xa1\xaa\x10\x3a\x0f\x00\x78\x23\x28\x5a\xe8\x44\x63\x96\xf4\x47\x46\x49\x2d\x47\x52\x75\xcc\xbb\x52\x27\x4e\x88\x8d\x2d\xcb\x13\x4d\xdf\x6f\x5d\xac\x12\xbc\xf1\x5b\x6a\x64\xf1\x9f\x6d\x4d\xd5\x43\x7c\x7b\x8f\x0d\x9a\x7c\x1e\x3c\xef\x5e\x4e\x20\x0f\x72\x30\x29\x9e\xb0\xaa\x00\x80\x73\x8e\xe6\x06\x06\x35\x3c\xd5\x7d\x3e\xc5\xa8\x79\xac\x79\x75\x74\xa5\xe5\xb5\xfa\x75\xcc\x81\xd2\x97\xaa\x5f\x61\x33\x8a\xee\x28\x5d\xf7\x84\x16\x5c\x90\xb3\xb6\xb4\xe4\xb5\xcb\x9c\xdd\xdb\x73\xef\x4b\xd7\xcd\x2b\x52\x65\x89\xfd\x1c\x7a\xe5\x17\xb9\x7b\x00\x80\x7d\x9b\x7e\x90\xb8\xbd\x21\xb1\xa4\x27\x9d\x5e\x93\x5d\x94\x90\xec\x69\xa1\x1a\xdf\x1f\x4a\x2e\xc5\x19\x4e\x84\xae\x29\x3a\xa4\x1f\xef\xcb\x2d\xd8\xab\xfd\xbc\x65\x6a\xde\x36\xcd\x6a\xf7\x2d\xb9\xfb\x72\x5a\xe6\x85\x2a\xcf\xc9\x77\x38\xf4\xc9\x9e\xf3\x33\x01\x80\x3d\x87\xe1\x4f\x28\x69\xd8\x60\x39\x9a\x3e\xb2\xc6\xa7\xac\x2c\xa9\xcb\x12\x56\xf2\xe6\xe0\xcf\xd2\x2d\x45\xeb\x42\x2e\x16\xcd\x31\x9a\x7d\x57\x17\xd8\x19\x4e\x6e\x1e\xd4\xfd\xd2\x8f\x76\x1f\x9b\x3b\x4a\x13\x3d\xcf\x53\x99\xaa\x78\xe0\x30\x28\x4b\x11\x1c\x04\x00\xd6\xff\x28\xa6\x0f\xbf\x18\x1f\xc7\x01\xe0\x8f\x59\x42\x1f\x9b\x50\xa4\x08\x95\x90\x28\x54\x1a\x54\x46\xa1\xa4\x3d\xb5\xeb\xf6\x78\xee\x79\x6e\xef\xdd\x75\xd7\x5d\xb7\xba\xeb\xae\x6b\xef\xbd\x07\x21\x23\x9b\xec\xcd\x07\x1f\xe3\x6b\xef\xf8\xbd\x7e\x7f\xc4\xbb\x93\x5b\x0e\xae\xec\x9a\xde\x4e\x41\x16\xb6\xcd\x6d\x21\x65\xa6\x36\x2d\x69\xa4\x26\x98\x6a\xbf\xd5\x35\x1c\xa6\x57\x5e\xa8\x99\x11\xf2\xd9\xdc\x59\x99\xbb\xb3\xdc\x60\x32\xff\xf5\x78\xa7\x55\x1b\x0a\x1c\xbd\x54\xaf\xd5\x6e\xb6\x5f\x14\xa3\x85\x0b\x00\x80\xef\xc9\xbd\x86\x57\x8e\xd8\x61\x6e\xe5\x4f\x0c\x8e\x60\xf5\xe9\xf7\x7b\x49\xb8\xf8\x38\xb7\xce\x45\x78\xd7\x83\xb3\x5a\xaa\x09\x6b\x77\x67\x35\xec\x24\x46\xf8\xdc\xad\xbe\x0b\xea\xdc\xba\x2c\x23\xd0\x4c\x7b\x07\x53\x1d\xcc\xb5\x59\x61\xd0\x50\x30\x00\x20\xb3\xa5\x2d\xc3\x8b\x4f\x94\xe3\x91\xf9\x5f\x06\x8f\xe0\x27\xd2\x6f\xf4\xce\x23\x70\xe3\x1c\x3a\x3a\x89\x2b\x22\x7e\xb7\x1c\x20\x3e\xdd\x9d\x58\xff\x2f\x38\xee\x73\xb5\x5a\x44\x7a\xe3\xd6\x65\x21\xc3\xf6\xf6\xab\x4c\xd9\xe4\x04\x9b\x5d\x86\x28\xca\x5b\x00\x28\x7c\x42\x5b\x85\x87\x4f\xb8\x81\x6e\xf9\xcf\x06\x9e\x83\xdc\xf4\x91\x9e\x6a\xf0\x7e\xdc\xcc\x8e\x83\x24\xdf\x88\x37\xcd\x6f\x48\x97\x77\x1f\xa8\xe7\x43\x0a\x9f\x73\xd5\x1e\x30\xc1\xad\xcd\xb2\x86\x8c\xb5\x5f\x6f\x9a\x4b\x61\xda\xa4\x95\x7e\xa5\x0e\x02\x40\xa1\x81\x96\x83\x0f\x3d\xee\x4f\x69\xca\x37\x0d\x4c\xa1\x58\xd2\x11\xdd\x97\x29\xaa\xd8\x33\xed\x34\x4a\x73\x44\x57\xb3\x13\xe5\xd3\x6e\xa7\xba\x41\x6a\xa2\x4f\x73\x55\x1a\xf5\x8d\x5b\x63\x79\x3c\x4d\x66\x1f\x50\xe6\x47\x3f\x66\x63\x29\xb5\xa1\x8f\x03\x80\xf4\x09\xfd\x18\xae\x6a\x38\x82\x95\x90\xef\xde\xbf\x80\xb5\x3a\x7d\x65\xd7\x23\xe6\xc3\x58\x56\x5b\x09\x53\x17\x41\x6f\x0a\x64\xd2\x83\x3f\xd7\x3e\x64\xf2\x7c\xa4\x95\x6c\x66\x97\x9b\xd1\x4c\x61\xd9\xda\xc7\x1a\xf7\xb3\xce\xdb\x7c\xd2\x7d\x61\x39\x02\x80\xe4\x07\x43\x81\x8b\x1a\x42\x0a\xae\xe5\x5d\xeb\xf3\x14\xac\x4c\x3b\xd3\xf9\x8b\x8f\x88\xf5\x6c\xed\xe6\x9d\x89\xf0\x6d\xcc\xe6\xed\x0b\xee\xab\x9d\xca\x7d\xeb\x73\xac\xa2\x82\xdb\xe7\x56\x68\xd2\x70\xc7\xec\xf3\x0d\xd1\x3c\xe2\x4c\x3f\xed\x0d\xce\x5e\x00\x90\x4c\x65\xb6\x61\x8d\x83\xf9\x8a\xa4\xbc\xd9\xbd\xee\xf2\x65\xa9\xdf\x3a\x3e\xc8\xee\xc4\xa0\x5a\xea\x0a\xcb\xc3\xc5\x0d\x47\xa5\xca\x60\xe7\xea\x4f\x92\x3a\xef\xcf\x16\xb9\xf8\xa7\x5b\x64\x19\x45\xdc\x61\x2f\x28\x9d\x21\x4e\x9a\x59\xaf\x39\xc4\x5f\x0e\x00\xa2\x21\xf6\x7a\x4c\xf9\x80\xaa\xb4\x27\x77\x45\x4f\xa2\xee\x42\xea\xbc\x0e\x47\xcd\xcb\xa3\xaa\xe6\x5b\xea\xe5\x07\x46\xea\x59\x2a\x38\x88\x50\xbd\x52\x39\xc3\x3b\xab\x7c\x50\xf1\xc2\x6d\x92\x51\xa7\x58\x6f\x4f\xd1\xcf\x92\x91\x67\xbe\x56\x3b\x08\x0b\x00\x40\x78\x9a\xe3\x87\x7e\xd7\xff\xab\xda\x31\x27\xbd\xfb\x52\xc5\xc9\x94\xa8\xf6\xd2\x72\x44\xf4\xfd\xe6\xbd\xa6\x95\x07\xe6\xd5\xbd\x34\x4e\x0b\x7c\x58\x25\x28\xdd\xbe\xed\x7d\xf9\x5a\x9d\xc2\xb5\xc1\xf0\x5d\xdd\x69\x9f\xa2\x0b\x52\xbc\x98\xb5\xa0\x64\x95\x38\x16\x00\x84\x93\xb8\x73\xd0\xf8\xfe\x53\x0d\x19\xd9\x13\xdd\xca\xda\x53\xc9\xbf\xda\x93\xab\xdd\xa2\xf9\xcd\x93\x2a\x5a\xf6\x9f\xac\xd3\x95\xe3\x03\x0d\x55\x3b\x4c\xb4\x6d\x43\xe6\xbb\x86\x71\x57\xa9\xc1\xa8\xfd\x6e\x1f\xa7\xbd\xa1\x3c\x3c\xcb\x5d\xa5\x93\xac\x03\x00\x81\x86\x1b\x8b\x9e\xd6\xcf\x6f\xb5\xcf\x36\x77\x1f\x6e\x0a\x4b\x6e\x6d\x9f\x5f\xcf\x8d\x0e\x69\x6a\xaa\xf9\xb9\x5f\x58\xe7\x5b\x55\x1a\x88\xad\xbc\x6d\x79\xbc\xad\xd2\x8c\x37\xa5\xb9\x0a\x0c\xab\xf5\x43\xf6\x78\x6d\x90\x0a\x9c\x95\xa1\xfc\x2c\xb9\x08\x00\x82\x45\x5c\x16\x22\xe7\xcc\x3f\xb8\xd9\x19\x57\x47\xea\x71\xea\x84\xd1\xa1\x70\xbc\x73\x64\x72\xef\x71\xfc\xe5\x30\x73\xa7\x33\xa1\xc9\x3f\xa5\x45\x4c\x1c\xdc\xb2\xbf\x61\x12\xf8\xc5\xa5\xbb\xfa\x06\x14\xb7\xa4\xaa\xe2\x06\x3c\x66\x25\x28\x3b\x4d\xb9\x0b\x00\x45\x8e\x34\x7f\x04\x69\xd4\x48\xe0\x64\x3c\x1d\xf1\x27\x3c\x49\xb8\x39\xf8\x9c\x18\x10\x99\xdb\x9b\x40\xec\x0c\xab\xe9\x38\x05\x26\xf8\xe7\xb4\x6c\x24\xf9\x6c\x39\x5a\x5f\x0d\xed\x70\x19\xac\xe6\xc0\xe9\x4b\x3a\x2a\x38\xe4\x52\xab\xa6\x32\x22\x75\x17\x00\xc8\xde\xd1\xfc\x10\xf4\xd1\x4d\x24\xe7\x8c\xd7\x27\xae\x92\xa2\x13\x1e\x0c\x82\x24\x51\x64\x41\xcf\x07\xd2\x68\x58\x6d\x47\x12\xe4\xeb\x9f\xdf\x7c\x1e\x7a\xb3\x25\xa9\x3e\x10\x1e\x76\x39\x5b\xed\x44\xee\x5a\x72\xaa\x62\x15\xe5\x8c\xd5\xa5\xb2\x79\xd4\x5f\x00\x20\x33\xd1\xe8\x88\xb8\xd3\xfe\xd4\xf8\x8c\x33\xc7\x9f\x53\xb7\x26\x0c\x0e\x48\xa9\x0b\x22\x63\x7b\xe6\x53\x17\x85\x95\xb5\xf3\xa8\x61\xfe\x39\x4d\x1f\xa8\x95\x5b\x32\xeb\x8e\xd1\xdc\x5d\xee\x56\x05\xd3\xc6\x97\xfc\x6b\xd9\x46\x1f\xb0\x5e\x60\x9c\x47\x7f\x02\x00\x85\x37\xe8\xb8\x82\x89\x53\x9b\x58\xaf\x33\x8a\x86\x1f\xb0\x94\x09\x65\xfd\x02\xd6\xce\xc8\x5d\xdd\x0b\x99\xaf\xc2\x64\x6d\x32\xe6\x29\xff\xa4\xc6\x9f\xcc\x93\x5b\x8e\xd5\xe6\x31\x3f\xb9\x3c\xaf\xdc\xcb\x4a\xb1\xb3\x2d\x77\x65\xef\xb2\x4e\x2f\x7d\xcf\xb2\x02\x00\xe9\x43\x86\xa1\x60\xe2\xe4\x2e\xe1\xfa\x0c\xe2\xd0\xbf\x82\x94\x04\x42\x9f\x84\x6f\x8e\xb4\xef\x72\xe0\x7d\x09\x23\xb6\x1a\x79\x24\xff\xbd\x8d\xd3\x79\x76\x5b\x12\x6b\xd0\xdc\x0f\x2e\x9f\x2a\xf6\xf3\x5c\xed\xb6\x9a\x97\xf0\x2c\xd6\xf5\xfa\x11\xce\x0c\x00\x90\xdc\x67\xf6\x14\x44\x8f\x04\x2b\x82\x8e\x5d\x1e\xbc\x56\xf4\x39\xfe\x46\x6f\x86\xac\xed\x30\xbb\xe3\x6b\x21\x33\xf4\xbf\x16\x9c\x94\xe3\x77\xab\xfe\x8e\xa4\x7e\x8b\x6d\x75\x80\x64\x85\xcb\xb8\x65\x8e\x64\x9d\x1d\x5c\x66\x10\xfd\x9a\xe1\xaa\x5b\xc7\x2b\x05\x00\xb1\x90\xbd\x32\x9f\x78\xc2\xa9\xd4\xf6\x98\xf5\xc0\x45\xdd\xba\x78\x87\x1e\xac\x26\xfa\xd0\x78\xc7\x94\x12\x63\xe8\xde\x66\x86\xca\xc9\x2f\xbc\xee\x55\xf1\x1d\x4f\x4b\xd5\x41\xc5\x2f\x97\x96\x72\x6b\xf9\x3b\x3b\x8d\x11\x2c\x2c\x9c\xc1\xd4\x3c\x10\x74\x01\x80\x88\xcd\xb1\xcf\xb7\x3f\x9e\x55\xb5\x24\x5d\x39\xb0\xc2\xd2\x1a\xa7\xeb\xbe\x68\xce\x3a\x14\xd5\x1e\x55\xe6\x1f\x72\xbe\x69\xd4\x90\xe8\xfb\xa2\xce\x4b\x7f\xc7\x33\xb6\xb2\x4c\xfb\xdc\x85\x6f\xde\x5b\xd2\x6a\xd7\x6e\xe0\xca\x25\x33\xce\xa8\xaf\x88\xfe\xdf\x45\x1f\xe7\x66\xde\xf1\xe3\x6b\xea\x81\xf4\xfd\xfd\xe3\x35\x99\x71\x89\xdd\xe4\xca\xb7\x87\x16\xb7\xfd\xb6\x98\x43\x14\x4d\x39\xe6\x5a\xdf\xfe\xda\x9b\x65\x72\x4f\xbf\xca\xa0\xd2\x66\x17\x96\xe9\x89\xc6\x62\x77\xde\x30\x45\x71\x75\xc6\x47\x75\x88\x78\x2d\x00\x08\x0f\x71\x97\xe4\xe5\x0f\x3f\x68\x8e\x49\x9f\xd1\xcf\x69\xd0\xc7\xb9\x76\x3b\xd6\x59\x1f\x7c\xdd\xa6\xae\xee\x08\x29\x68\xfc\x5d\x19\xee\x5b\x51\x9b\x5d\x8e\xf1\xdc\x5e\x71\xd5\x78\xdf\xc5\x68\x3a\xac\xf3\xb0\x9b\x28\x4d\x2e\xbe\x65\xb3\xb5\x44\x2f\xee\x01\x00\xc1\x25\xae\xef\xe3\x2b\x78\x0c\x72\xed\xb5\x44\x82\x0b\x2a\xe1\x64\x10\xe1\x26\x9a\xdf\xbe\x92\x88\xc3\x74\x98\xbf\x80\x4b\xb1\xbf\x65\x5d\xe0\x59\x7c\x3e\x79\x9c\x24\x26\xbc\xc9\xfc\x0e\x65\x83\x50\x78\x0d\x7c\x80\xf4\x66\xd3\x27\xf2\x22\x78\x95\xcd\x73\x4a\x28\x4c\x79\xf4\x0c\xa7\xc4\xe6\x5e\x95\xe1\xa3\x70\x61\x23\x62\xc2\x5c\xbc\x53\x5b\x3e\x61\x04\xff\xcb\xbc\x87\x48\x27\xbc\x92\x2d\x06\x83\x89\x7f\xc8\xc1\xa4\xe5\xa4\x15\x99\x28\xc8\x06\x0a\x0d\xf7\x80\x01\x38\x6e\x93\x08\xbe\x49\xf6\xb2\xa9\xa2\xac\x24\x87\x3e\x7c\x83\x1d\x21\x5e\xbe\xd2\x85\x13\x82\x09\x27\xc6\xf0\x07\xc1\xe7\xad\x55\x84\xa5\xa4\x63\x26\x01\xe1\x25\xe9\x77\x61\x01\x71\x00\xea\x84\x5b\xc0\x0a\x98\x9c\xf1\x9a\x54\x41\x0e\x38\x50\x0d\xd5\x91\xff\xb7\x69\x1b\xcc\xa7\x60\x6d\x88\xe4\x67\x14\xef\x07\x5e\x98\xf5\x8c\xb9\x97\x9e\x60\x1d\xe9\x37\x87\x5f\xe2\x16\xd1\x4b\x9a\x7f\xe2\x5e\xd3\xf3\xcb\x66\xe2\xc7\xe8\x47\xa4\x4b\x09\xbd\xf4\x64\x48\x4e\xec\xa1\x23\x8e\xfd\x0b\x5e\xa7\xe7\xef\x1f\x24\x7d\xa4\x1f\xd9\x58\x0d\x5d\xa6\x6f\xb3\x09\x22\x87\xd2\x02\xef\xed\x45\x5d\x17\x8a\x2e\xce\x41\xdf\x14\xe8\x87\x1c\x30\xd7\xf8\x75\x4d\xfb\xb0\x03\xbc\x8b\x06\x0a\xae\x83\x37\x55\xdc\x8a\xef\xe6\x1e\x22\xc5\x12\x2e\x73\x4a\xd3\xaf\x13\xff\xb2\x1f\xec\x9f\x47\x72\x62\x2f\xdf\xe8\x09\x59\xb1\xf6\xdb\xc4\xc0\x5c\x46\xda\x1d\x27\xe4\xa5\xe2\x86\xb1\x7f\x50\x03\xf2\x89\x81\x83\xe8\xbe\xa2\x88\x06\x25\xa6\xbb\xb0\x5b\xff\x1c\x3b\x24\x75\x13\x05\xe0\x6e\x88\x5b\x41\x7b\xfc\x6f\x91\x47\xda\x10\x71\x87\xa0\x62\xdf\x41\x30\x9d\xbf\xc6\xe3\x1c\x29\x98\x5b\x6f\x83\x80\x4e\xb3\x30\x37\xa9\x08\x95\x45\x74\x16\x87\xac\x34\xbd\xec\xed\x41\xd5\x19\x03\xea\x1c\xd0\x35\x7a\xb6\x56\x83\xe9\xd2\x8c\x08\x36\x60\xc7\x4b\xa6\x13\xc2\xf1\x36\xc5\x5b\x52\x13\x08\x07\x8a\x62\xf6\x6e\x24\x52\xa5\x62\x0f\x57\xf0\xa0\xd8\xdd\x46\x4a\xba\xc7\x0d\xbe\xae\x2f\x78\xd1\x71\xfa\xf4\x28\x72\x4a\xab\x6d\x77\x30\x6a\x7e\x63\x58\xf5\x10\xda\xb6\x36\x4e\x9d\x84\x59\x5c\x19\xcf\x73\xc6\xfa\x98\xf7\xe1\x58\x38\x94\x61\x59\xf2\x1b\x7c\xab\xe6\x7e\xd8\x74\xc2\x33\xe5\xe9\x0d\x20\xb1\x56\xde\x63\x53\x44\x0a\xe1\x8f\x5d\x1d\x2c\xe8\x1f\x5d\x76\xb2\x19\x71\xe5\x44\x44\xe7\x24\xe4\xe5\x81\xfc\x4a\x05\xea\x64\x77\xb6\x6a\x1f\xfa\x54\x9b\x3f\x67\x1b\xe6\x49\xc3\x4f\xcc\x39\xdc\xc2\x6a\x41\x92\x1c\xbf\xdb\xfc\x2b\xd4\x9e\x90\x5a\x7a\xc2\xfd\x7f\x44\x27\x75\xa3\x4d\x31\x78\x59\xf8\xf0\xca\x58\xc1\xc0\xa5\x80\x91\x2b\x88\x91\x73\xb6\x1d\x0e\xc8\xbe\x93\x1d\x15\x4d\x28\xcb\xd0\x16\x25\x1a\x6d\xe8\xe1\xb2\xf3\x31\xed\x6d\x9d\x98\xc5\xd8\xc7\x0d\xed\x49\xd3\xf1\xd3\xab\xc4\x21\xa3\x84\xf9\xa6\xcb\xee\x67\x09\x17\xb5\x6f\x6c\x3a\x40\x50\xa4\xbc\xb2\xb8\xa0\x6f\x1c\x3d\xe2\x88\x68\xbe\xfc\xb6\x1d\x83\x54\x9f\xdf\x5c\x31\x1d\x85\x3f\x15\x51\x7c\x05\x9d\x3e\xb4\x81\x75\x1b\x83\xec\xfe\x17\xad\xc6\x2a\x5a\x53\x12\x3b\x70\x15\x75\x15\x21\xd5\x78\x53\x85\x97\xfb\x2d\xc2\x01\x3d\x66\xa6\x0d\xf1\x85\xe8\xe5\x3d\x22\x58\x80\x28\xba\xc8\x06\x4f\x22\x9f\x0c\xdd\x23\x39\xa2\x9d\x9b\x17\x91\xf8\x98\x04\xe3\x5e\xd2\x37\x6c\x83\x84\x0c\x65\xe2\xdd\xa1\xb9\xd0\x0b\x42\xdf\xb1\x7a\x18\x06\x23\xf7\xbf\x24\x2f\x26\xdd\xdf\xd8\x4e\x2e\x87\xb7\xda\xb0\x28\x85\xf0\xad\xbb\x66\xa2\x14\x73\xf2\x42\x3f\xf1\x17\xb6\x6f\x68\x05\x88\xc0\x55\x37\xc5\x83\xff\xe2\xa5\x06\x39\x29\x9f\x20\x14\x5f\x27\xbd\x21\xb6\x90\x40\x88\x06\x3e\x39\x66\x07\xaf\x87\xec\xf6\x87\xc2\xf7\x60\xbf\x8d\x9b\xc8\x18\xb2\xb7\xcd\x5c\x0a\x48\xe6\xdd\x19\x21\x74\x13\x97\x8d\x3d\x22\x6e\x27\xf6\x0c\x1e\x21\x0e\x82\x51\x8d\xc5\xe0\x6e\xf0\x79\xe9\x38\x78\x93\x24\x16\xaf\x23\xe5\x40\x31\xe0\x13\xc8\x16\xde\x98\xae\x86\x46\xc9\x56\xfb\xc6\x61\x1e\xf9\xb2\xc7\x23\xf2\x2a\x0a\x66\xc6\x2b\xca\x4e\x0a\xea\xd6\x0f\xbc\x0b\x7d\xd5\xf9\x45\xf8\x73\x74\xeb\x7e\x1e\x01\x4b\x7b\x56\xff\x99\x38\x87\x36\xaa\xcf\x22\x76\xd2\x86\x85\xf7\xc1\x2c\xda\x03\xe2\x39\x92\x33\x7d\x5a\x9a\x86\xf4\x93\xee\xb8\xcf\x06\xba\x48\xdf\xe2\x91\x0c\xe3\xe8\x9b\x66\x5c\x25\x97\xd3\xb0\xe3\x3f\xb1\xaf\x04\xe8\xb3\xc1\x38\x35\xbf\xaa\xf7\x34\x3e\x8c\x77\xbd\xee\x08\xfe\x0b\xcf\x56\xfb\x96\x50\xcf\x8d\x15\x48\x89\xf9\x9c\x61\x42\x0d\xe8\xcf\x59\x97\x6a\x22\xad\x65\x0b\xf6\x1e\x82\xac\x58\x2f\x37\x4c\x40\xf5\xac\xa0\x19\xff\x83\x5f\x30\x18\x37\x6c\x30\x37\x15\xc9\xa3\x49\x58\x51\xd1\xbd\x1e\x00\xb7\x5f\x76\xb0\xa6\x0a\x0f\x48\x6f\x68\x12\xf0\xc7\x25\xe9\xfc\x75\x04\xb9\x78\x06\x1e\x24\x62\x84\x35\x29\x65\x60\x96\xc0\x37\xac\x92\x14\xca\x7b\xb0\xa1\x92\xf4\x82\x5b\x6c\xb3\x1a\xb6\x67\x09\xae\x1e\x44\x77\x99\xff\x9e\x1c\xc6\xc0\x65\x9c\x4e\x0c\xd6\xab\xf4\x77\x95\x2f\xf6\x9d\x2e\xb5\x64\x25\xae\x4b\x7d\x9a\xbb\x12\xaf\x50\x6d\xc0\xb6\x10\x18\x0a\x4e\x72\x00\x11\x92\x5d\x0f\xd5\x83\xc9\xd2\x6d\x1b\xd6\x80\x6f\xc4\x73\x6c\x92\xa1\xf5\xdc\xfd\x97\x2c\xe8\xf9\x6d\x5f\x4f\xac\x47\xdf\x6c\x4e\x68\x9f\x82\x51\xd6\x77\x5a\x5e\x62\xf7\x57\x7f\x2e\xfe\x88\x9b\x5b\xe1\xc8\x5e\x81\xfb\x68\xf2\x45\xbf\xc5\x3f\x2b\xdd\x99\x78\x87\x70\x5f\xb3\x25\x84\x4b\x1c\x51\xc6\xb9\x2b\xc1\x9d\x72\xba\x0d\x95\xc4\xe1\x1f\xbf\xa0\x44\x8d\x9f\x7c\x3e\x3c\x0d\xad\x19\xde\xdb\x72\x16\xb3\xb7\x4f\x6d\x1e\xc1\xfc\xee\x3c\x2d\x7f\x8d\xed\x6f\xb9\xc2\xf4\xc3\xa9\xea\x07\x50\x01\x78\x4e\x15\x33\x81\x4d\x28\x30\xbb\xef\x29\x21\x06\x96\x7a\xba\xcf\x26\xb6\xa9\x03\x6c\x24\x24\x2b\xe1\xa9\xb1\x6a\xd4\xf9\xb1\xfb\x43\xab\xd0\xcc\xd1\x67\xcd\x8f\x31\x1b\x4e\x0c\x9b\x9e\x60\x6e\x0d\x80\xf2\x45\x58\x79\xf7\x64\x06\x84\xcb\x68\xcd\x42\x2a\xf0\xe1\xf5\xda\xf8\xdf\x04\xf7\xca\x96\x3d\x81\x84\xcf\x26\x4f\xb7\x17\xc4\x44\x2d\xc2\xa6\x1b\xac\x16\x41\xe7\xbf\xa0\xfa\xaf\x3d\x1b\x44\xa1\xb3\x2e\x9a\x9b\x37\x63\xac\xcf\xae\x36\xf9\x60\xaa\x46\x68\x45\x44\xec\x91\x01\x1d\xfd\x25\xce\xa1\x8b\x87\x5c\x8c\xfb\xd3\xb2\x33\xbe\x06\x7f\xa1\x76\x70\xcf\x0a\x02\xdb\xc2\x74\x7b\x4f\x78\xa8\x7b\x33\x73\x3e\xb8\x40\x74\x61\xfc\x29\x2c\x42\x4c\x3a\x5b\x00\x0b\x90\xf9\x7d\x5b\x61\x35\xea\x78\xdd\x38\x7c\x06\x33\x55\x97\x4d\x9e\x86\x4d\x15\x4e\x26\xef\xc0\xfd\x4b\xb4\x26\x33\x08\x94\xb4\x25\xe4\xab\xe0\x8a\xbd\xbd\x14\x0f\x52\xab\x87\x33\x85\x01\x3b\xce\x68\xa1\xfa\xc3\x13\xe3\x6b\xa1\x1a\x8c\xf3\x99\x72\xe8\x1c\xd6\xa3\x17\x09\x7d\xc3\xb9\xd7\x2d\x82\x37\xe1\x1d\xb5\xf5\x30\x8d\xb0\x4e\x70\x14\x3e\x45\x8c\x26\xe4\x93\x1d\x40\x45\x2a\x97\xcc\x26\xdd\xdc\xbb\x81\xfc\x09\x9e\xb5\xc1\x48\x39\x44\x76\x98\xe1\x47\x5d\x43\x36\xdd\x48\x23\x5d\x26\xe4\x8d\xde\x87\xe6\x13\xed\x7a\xcc\x50\x3c\x71\xb8\x36\x1c\x2a\x01\x8f\x69\x3e\x41\xff\x23\x2d\xe6\xb7\xc0\x21\xa4\xf7\xf8\xdb\x70\x0b\x34\x9e\x3a\x9d\xec\x02\x0f\x84\xf5\x92\x6b\xc8\x9a\x0d\x87\x28\xb6\x94\xc8\x19\x8b\x28\xdf\x29\x94\x6b\x6c\x30\x8c\xe6\x7d\x7a\x3a\x58\x49\xdb\xda\xf5\x82\x34\x99\xe6\x56\xdd\x4d\xca\xa4\x2d\x55\x4b\x48\xe3\xb4\x35\xbc\x02\x28\x94\x16\x8d\x3b\x05\x9d\xa3\x15\xa6\x2c\x84\x13\x69\x27\x43\x3f\xc3\xdf\x68\x9f\xdc\xaf\x93\x33\xe8\x33\x67\x58\x51\x32\x69\x05\x57\x30\x44\x67\x7e\xdc\xc9\x9d\x44\x36\xaf\xb5\xd3\x83\xf8\x81\xfb\xa3\xca\x15\x8c\xe1\xee\x2d\x71\x04\x6f\x70\xea\xb8\x2e\xa4\x38\x8e\x0b\xb6\x85\xf4\x8e\x5d\x95\xec\x0e\x15\xb1\x9d\x43\x0f\xc1\x1b\x59\x26\x77\x01\xac\x67\x39\xcc\x08\x24\x9b\x18\xf0\xa5\x6e\x82\xb5\x7c\xee\x09\x34\x81\x2b\xeb\x69\x47\x13\x67\x15\xee\xaf\xe0\x11\xb1\x92\xf7\xca\x32\xe2\x17\xb1\x8e\x7d\x09\xe4\x89\x62\x31\x02\xd2\x3a\xe1\xc2\xa4\xad\xa4\x71\xfe\xf9\x90\x16\x08\xc3\x13\xbb\xfb\x41\xe3\x5c\xd4\x0c\x36\x7c\x8b\x05\x8d\xfd\x87\xfb\x6b\x42\x0f\x5d\xc1\x53\x8c\xcb\x5b\xde\xe0\x3f\xea\x5b\xca\x9d\x09\xa9\x5a\x5f\x45\x2e\xe1\x4d\xc9\x09\xe6\x45\xa2\x50\x79\x00\x35\x06\x7a\xcb\xcf\x26\xdc\x03\x5f\xc9\x82\xf6\x74\x91\x04\x92\x71\xb7\x73\xa4\x5b\xa2\x97\x33\x2e\x43\xf7\xb8\xee\xe7\xb0\xb8\xec\x56\xc7\x81\x43\xb8\xdb\x8d\xe6\x26\x16\x7e\x5f\xdd\xf2\xb2\x6b\xf8\x81\x2a\x6e\xd1\x2e\xc2\x9e\xf2\xbb\xf4\x6b\x84\x97\x65\xce\x48\x5b\xa2\x56\x1f\x19\x0f\x82\xfb\xd4\x8c\xdd\x75\xe0\x7f\xc5\x4f\xdc\xc2\x48\xab\xe5\xbe\x36\x53\x21\x57\xbe\xe2\x8c\x17\xce\xe1\x44\x75\x9f\x03\x4e\x36\xe8\xd7\xb0\x0f\xf7\xb5\xa7\xcb\xd0\x83\xcf\xee\x70\x28\x0c\xc6\xbf\x6d\x8e\xa5\x4e\x10\x84\x75\xc4\x82\x02\xe2\xb6\x4a\x74\xdc\x5a\xe2\x3d\x53\x5c\x70\x3f\x98\xaf\x2f\x77\xed\x07\x75\x25\x27\x6d\x16\x91\xaa\x85\xdc\xd1\x7d\xb8\xe9\xe7\x10\xbd\xde\x38\xcc\xa9\x96\xfa\x63\xb8\x9b\xc3\xc3\xa5\x77\xf1\x01\x7d\x5d\x52\x2c\xfe\x44\x27\x8e\xba\x93\x70\xb4\x65\x76\xfe\x08\xe1\x4f\x1d\x39\xd6\x4c\xd4\x55\x5c\x0d\xce\x04\x57\x94\x99\x5c\x55\x60\xb0\xe6\xa1\x8d\x3f\x29\x4c\xb4\xf5\xb4\x16\xfb\xfa\xca\xbe\x1e\x36\x2e\x62\xec\x40\x5d\x1b\xae\x7e\xf4\x9f\xd2\x8d\x78\xdb\xe3\xd5\x92\x5b\x78\x56\xdf\x5f\x4a\x13\xc1\xb6\x73\x55\x7e\x18\xa1\xbe\x79\x51\x6c\x38\xd1\xa7\xe6\x6e\xb0\x2f\xb1\xa5\xfc\x9a\xab\x81\x78\x52\x17\x69\x53\x02\xb6\x89\x04\xe7\x47\x18\xcf\x0a\x96\x0f\x2d\x63\x1c\x43\x54\xb6\xf4\xd3\xbf\xa0\x16\x99\xbf\xd3\x7b\xd0\x19\x8a\x1d\x74\x3e\x66\x8c\x69\xa0\x1f\xc6\x45\xa3\x68\xf4\x75\xf8\x4f\x09\x28\xda\x04\xb1\x6c\xf7\x7b\xda\x0b\xd2\x4e\xd7\x5c\xda\x33\xe8\xa4\x55\x1a\x7d\x0f\xfc\xfe\xbc\x0d\x63\x39\x7a\xc9\x60\x22\xbd\x09\xb3\xab\xf9\x07\x3d\x1c\x1b\x63\xde\x49\x5f\x8d\x8b\x94\x0b\xe8\xd3\xf1\xb9\x8c\xdf\xb4\xa7\x84\x72\xe4\x47\xda\x59\xe2\xbb\xf8\xff\x68\x9d\xa4\x90\xdd\x4c\x5a\x33\x24\x5e\xff\x81\x76\x1c\xee\xb1\xb2\xa3\x7b\x90\x0b\xcf\xed\xa1\x27\xe0\x7d\x06\x24\xb4\x3f\x84\xc9\xcd\xeb\x68\x8d\x84\x11\x13\x8e\x56\x4c\xcc\x2a\xba\x41\xa3\x83\xee\x8c\x38\x5a\x0e\x69\x09\x32\x9d\x96\x0c\xcd\x8f\x27\xd2\xe2\x61\xbb\xdd\xb6\xb4\x02\xb2\xf5\x7a\x23\x8d\x4b\x7e\x3c\xfd\x0d\xdd\x9a\x72\xf0\x4c\x21\xf5\x1d\xa5\xaa\xef\x01\xb5\x85\xd2\xd2\x48\xa3\xd2\x29\xad\xc6\x4f\x54\x02\xe5\x82\x8c\x48\x25\x52\x26\xe8\x8e\x54\x02\x35\x0c\x11\x4d\x65\x52\xcb\xe2\x2a\xa9\x5a\xda\xa4\xe0\x2c\xea\x69\x5a\xd4\x7a\x5f\xea\x53\x9a\xd1\x6a\x12\x0d\xa6\x6d\x39\x7d\x81\x52\xca\x4d\xee\xdd\x46\xe1\x71\xee\xd4\xbf\xa6\x10\x38\xe1\x06\x88\x42\x66\x9f\x2a\x5c\x41\x91\xb0\xf7\x53\x5f\x53\xca\x58\x6f\x0b\xf6\x52\x06\x58\xca\xd8\xb3\x94\x3b\xac\x3d\x41\x97\xa8\x36\xcc\xcf\xeb\xad\xa8\xf6\xcc\x26\xab\x20\xea\x20\x63\xed\xc9\x3a\xf2\xb9\xc2\x86\xee\x04\x72\x95\xb4\xb8\xee\x00\x59\x21\xc9\xd5\x7f\x27\x5b\xc4\x9e\x92\x41\xf2\xb0\xc8\x8a\x52\x4f\x7e\x28\xf8\x94\xbf\x95\x62\xc3\x7f\x18\xf3\x9a\xe2\xc2\xbb\x18\x14\x4c\x09\xe7\x8e\xad\x1b\xa7\x44\x71\xad\xad\x34\x94\x4f\xac\x25\x27\x32\xe0\x76\x43\x7e\xc7\x77\x58\xa5\x4f\xaa\xbe\x02\xf3\xb5\xbe\xda\x32\x58\x5f\xf2\x4b\xa4\x82\xfb\x95\xbd\x70\x0f\xfc\x5c\xc1\xc9\xe5\x91\x97\x16\x85\x1c\x35\x91\xfd\x0b\x97\x06\xe6\x91\x93\x24\x53\xd7\x49\xc9\x7b\x44\x2c\x6b\x57\xf2\x2d\x4e\xd3\xd0\x5d\x78\x5e\xa3\xbe\x0d\x09\x4d\xd4\x1d\xae\xcc\x81\x5e\x57\xdb\xa8\xa3\xa1\x5f\x96\x76\x01\x1e\x5e\x6c\x3a\x44\x3a\x03\x07\x95\xbe\xcd\xbe\x0e\x43\x5a\x30\x7a\x2b\x5c\x59\x32\x37\x20\x05\x3e\xa9\x78\xb5\xf6\x1b\xac\x29\x52\x59\x87\x90\xdd\x79\x6f\x07\xce\x41\xbd\x83\xe8\x96\x0c\xa8\xb1\x37\xc5\x12\x0d\x69\x3b\x37\xaa\xa2\x21\x4b\xcb\x5d\x5e\x11\xd4\xdd\x90\x0b\xda\x40\xf7\xab\xff\xcb\x0a\x85\xff\xb1\x44\x46\x7d\x83\x3d\x8d\xdd\xbb\xf2\xe0\x7d\x3a\xe5\xda\x34\xf8\x1f\x95\xc5\xfa\x08\x5c\x26\x18\xee\xbf\x04\x9d\x3d\xf5\xaa\x99\x0a\x99\x8e\x17\x96\x93\x20\xf2\x80\x95\x92\x0e\x91\xbb\x83\xb9\xa3\x90\xa0\x2d\x81\x78\x08\xaa\x6a\x4c\xce\xac\x80\xae\xd6\xec\x8e\xc2\x42\xef\x2d\xce\xbb\x6c\x61\xc0\x48\x5d\xbb\x05\xea\x56\x97\x58\xe3\xe0\x00\xe1\xb1\x7e\x6b\x68\x7c\x8c\xdd\x74\x1e\x2a\x1c\xfd\x6d\xbe\x04\x1d\x1e\xd9\x58\x7c\x1f\x0a\x1d\x5c\xc8\xf5\x80\xc2\xba\xcf\x12\x46\xa1\x84\xb6\x94\xcc\x4d\x10\xb9\x61\x3c\x6a\x11\x24\xaf\xf6\xf0\xbf\x0b\x15\x9b\xf1\x6b\x37\x43\xde\x9a\xcf\xd6\x83\x50\x8b\xb0\x6b\xd8\x91\xdf\x99\x2f\x6c\x5f\xc4\xbb\x52\xf0\xbd\x2a\x90\xfb\x07\x19\xab\x09\xe4\x86\xa2\x3a\x84\xd1\x1c\x3d\x66\x03\xa4\x66\xbf\xc6\x0e\xe7\x20\xd9\x81\xf8\x9c\x68\x17\x56\x05\xd1\x6e\x57\x0d\x6b\x15\xd8\xb6\xe6\x3b\xf3\x1d\xe4\x37\xf5\x38\xd3\x04\x5f\x18\x42\xf3\x7e\xa3\x42\xdb\x92\x78\x6e\xe8\xcc\x4a\x19\x37\x07\x43\x51\xeb\x38\xc7\xb1\x22\x41\x1f\x67\x15\xae\x03\x9a\xc5\xa6\xe3\xbf\x65\x7f\x60\xbd\x24\x1e\x3c\x32\xc8\x4a\x03\x9b\x76\x05\x30\x3f\x93\xbe\xaf\x31\x30\x2f\xc1\x1e\x53\x95\xcc\x42\x72\xcc\x60\x27\x6f\x1f\xce\xb5\x55\xc7\x15\xe1\x26\x2a\xae\x71\x6e\xe1\xcf\x97\xbc\xe0\x6c\x27\xb0\x05\x8b\xd8\x55\xc4\x64\x12\xc8\x9e\x07\xc6\x64\xa3\x58\x3c\x52\xfa\x91\x38\xd6\x3f\x10\xd6\xff\x3f\x66\x2b\x8c\x58\x93\xc3\x94\x93\x63\xa6\xca\x99\x29\x94\x45\x03\xab\xb9\x53\xc9\x0b\x5b\x66\x70\x62\xc9\x7e\x96\x00\xf6\x30\x39\x53\x45\x64\x6f\x23\x1b\x78\xa3\xac\x2e\xf2\x6b\x70\x3f\xcb\x8b\x12\x95\x55\xc0\xec\xa7\x9c\x8b\xd2\x32\xe3\xa8\xbe\xfe\x87\x99\x8b\xa9\x35\x6b\x96\x32\xbe\xd0\x16\x4e\x6d\x67\xdc\xa1\xde\xe9\xc3\xb1\x9b\xd8\x70\x53\x36\xdb\x93\xbd\xd8\x3c\xca\x6a\x65\xb5\x28\xed\x58\xdb\x59\x11\x5c\x11\xf3\x0c\xf3\x27\x71\x03\x33\x96\x79\x2a\x93\xc8\x78\xcf\x54\x46\x5e\x62\x98\x98\xd9\x7e\x27\x19\xe9\x4c\xef\xd5\x6f\x18\x9b\x99\xeb\xa6\xfe\x60\x38\xd3\x3b\x7a\xf8\xac\xeb\x12\x4a\xc3\x09\xd6\x11\x31\xcd\xb4\x8d\xf9\x50\x44\x51\x58\x98\x05\x42\x0c\xc7\x9b\x69\x25\xc0\xe3\x7f\x33\xca\xf9\xc5\x19\x08\x46\x28\xaf\xf3\xf0\x0f\xfa\x57\xee\x35\x3f\x7f\x7a\x2d\x77\xd2\xea\x6e\x7a\x16\x87\x3a\x2d\x84\x1e\xc3\xa4\x76\xed\x63\x76\xe9\xc4\x75\xa9\xcc\x28\x4d\x93\xe1\x2a\xe3\x79\xc9\xe9\xa2\x4c\x06\x51\x79\x9c\xe5\xc6\x98\xaf\x18\xc0\x39\xd3\xbb\x8b\xce\xa7\x8f\xd3\x33\x0a\x6f\x1c\x1a\xa0\x2f\x90\x3c\xf6\xcd\xa5\x9d\x10\x2f\x5a\x9d\x41\x4b\x13\x4d\x9b\xd6\x46\x3b\xca\xfe\xaf\xfd\x32\xd3\xae\xf6\x62\xf5\x47\x46\x6f\xd5\xff\xf4\x64\x46\xa4\xe5\x77\xe1\x66\xfa\x63\xd3\x07\x86\x13\x1d\x34\xdc\xc3\x84\xd1\x57\xe8\x2e\xa6\x6d\xa5\x5d\x50\x77\x1c\x44\xd2\x20\x65\xd5\x4e\x02\xcd\x51\xfe\xda\xf9\x13\xd5\x2c\x6b\x9d\x3e\x8d\x2a\xe6\x2d\x6c\x35\x30\xde\xf5\x4e\xaf\xbc\xc7\xe0\x74\x1e\xd0\xe2\x19\xb3\x5b\xa9\x92\x5d\xf4\xe2\x46\x2e\xed\x20\x7d\x55\x2d\x1e\xa5\xa7\x1d\xaf\x4c\x48\x19\xa0\x65\x99\xbd\x22\x36\xd2\xfe\x31\x2c\xdc\x41\xa1\x36\x6a\x55\xce\x31\xd4\x25\xca\xc0\xe9\x73\x29\x3f\xf9\x67\x5b\xaa\x18\xff\x1d\xdf\x52\xf1\x8e\x01\x0e\x6c\xd2\x94\xd0\x3f\xf5\xcc\x12\x17\xd0\x31\xed\x4d\x54\x11\xed\x47\xf3\x66\xe4\x4b\x5a\x61\x9d\x39\x65\x25\xcd\xa3\x6a\x5a\x78\x23\xf5\xb2\x99\xb0\x63\x31\x35\xd3\xb0\xd5\x79\x15\x65\xa8\xc4\x6a\xfa\x6a\x8a\x4e\x90\xd1\xfc\x90\xf1\x78\x54\x51\xb1\x85\x91\x34\x92\xae\xfe\x8f\x7e\x69\xf0\xbb\xe8\x0c\x3d\xb0\x77\x1f\xe5\x13\x6d\xa0\x03\x8f\x4c\xa5\x85\x35\x33\x93\x9b\xa8\x0f\xea\xe8\xe1\x07\xa9\xb8\x4a\xde\xf6\x3b\x94\xdf\x65\xef\x9d\x97\x50\x7c\xd5\xfb\xa7\x27\x53\xfe\x11\x74\xb6\x99\x64\x79\x79\x2f\xaa\x57\x48\xff\x14\xa4\xea\xad\x24\x16\xc4\x45\xe9\x0d\x71\x1e\x6a\x2b\xfd\x94\x68\x3b\xba\x0f\xfd\x5d\xf0\x07\x1b\x99\x7a\x99\x3f\x86\x9f\x1c\x91\xcd\x6b\x27\xb4\x6c\xff\x8f\x7b\x0a\x0c\x5e\xb5\x88\x5b\x40\x3a\x39\xd9\x89\xfd\x11\xbe\xd8\x3a\x56\xd8\x83\xa4\x56\xe5\x49\xb3\x50\x75\xba\x6c\x89\x23\xfa\x8a\x34\x40\xf4\x1e\xf3\x86\xbe\x53\x78\x16\xb7\x06\x0d\x0b\x0c\x78\x64\x6a\x32\x1f\x22\x5c\x8e\x98\xc3\x23\x80\x9b\xb6\xab\xb8\x6a\x12\xec\x78\x9b\x1b\x0e\x55\x4f\xfe\x87\x7d\x93\xec\xd9\xf2\xba\xd0\x16\xbb\xa3\xb2\x5e\x72\x03\x67\xaf\x1d\x12\x9b\x71\x7f\x24\x46\x11\x09\x7f\x92\x56\x25\x8c\x21\xd4\xa3\xbe\x08\xbc\x89\x6d\x29\xaf\xf9\x2b\xc1\x0b\xe1\xdd\xbc\xf5\xa4\x27\xdb\xf7\x73\x13\xa0\x67\x8e\x1d\xdc\xf9\xf0\xc5\xc9\xf6\xec\x5a\xf2\x83\x66\x86\xe4\x14\xc4\xab\xf0\x11\xd7\x43\xaf\x34\x11\x22\x0d\xec\x2b\x8e\x10\xf2\x60\x29\x95\x24\x80\xe1\x2f\xc8\x67\xfc\x3c\x32\x98\x02\xf0\x52\x29\xb3\xc2\x67\x72\xe9\x14\xb1\xcf\x49\xce\x49\xea\x4c\x47\x12\x07\x45\x65\x4f\x0e\x67\x3b\x52\xe9\x8d\xdf\xc4\xa7\x99\x65\xe5\x67\x44\xf5\x4c\x42\xc9\x2b\xa1\x9e\xe9\x2d\x9a\x26\x28\x61\x7c\xa1\x1c\xe2\x6b\x19\x27\x11\x77\x78\x5a\x46\x5b\xb2\x1d\xd7\xcc\x68\x38\x90\xc0\x39\xcf\x28\xf5\x89\xe1\xfc\xc3\x28\x72\xcc\x64\x57\x31\xca\x27\x37\xb3\x72\xe8\x01\x0d\xf6\xa2\x07\xa2\xad\x66\x17\xe1\x39\x21\x4e\x45\x12\x0c\x0b\x4c\x82\x66\xfe\x08\x7f\x84\xbc\x9c\x77\x91\xf7\xa1\x60\x84\x7b\x97\x17\x90\xb4\x96\xf3\x96\xab\xdd\xdf\xc4\x59\xcc\x79\xed\xfd\x99\x1d\xc5\x39\xe2\x88\x64\x8d\x72\x66\x4e\xd9\xce\x2c\x66\xfc\xad\xfd\x9f\x70\x42\x4d\x37\xbe\x12\x3c\x54\x7d\x2c\xde\xc2\x1f\x57\x1e\xe1\xa9\x78\x77\x15\x22\xc8\x93\xfb\xa2\xe8\x74\xfe\x4c\xce\x4f\xd9\xe2\x84\x06\xce\x7c\x69\xde\x3e\x06\xdb\x4f\x3c\xe0\xbd\x92\x85\x15\xed\x76\x9c\xcf\x3c\x25\xe4\x4f\xe1\x33\xb4\xec\x80\x6a\xad\xd0\xb5\xca\xa1\x54\x2b\xf0\xb5\xf0\x8a\x26\xf8\xfb\x4d\xaf\x39\x4c\xde\x7e\xa3\x1b\x78\x80\x7b\x58\x9f\x9d\x1b\xce\xc9\xd2\xb4\xc4\xaf\x65\x33\x55\x5f\xf7\x06\xb0\xaa\x8a\x83\xb7\x6d\x66\x5e\x2b\xfa\xbb\x52\xc2\xb4\x29\x94\x4f\xe9\xa6\x3f\xe2\x6e\xaf\x94\x0a\x5d\x3a\x0a\x74\x66\xc1\x3f\xad\xab\x65\x36\xfc\xd9\x8d\x03\xac\x2a\xde\xb4\x3a\x67\x42\x31\x77\x72\x15\x29\x7b\x90\x63\x5b\x7e\x2e\xf6\x1c\x7b\x65\x99\x5d\xd8\x6c\xd6\x2e\x3d\x75\xeb\x26\x66\x86\x86\xb9\xe2\x15\x83\xa6\x30\x4e\x39\x41\x0f\xe6\x5d\xaa\x10\x0a\x17\xf6\x27\x68\x7b\x05\x93\xba\x87\x0b\x37\xf3\xbe\xb6\xff\x66\xde\xe5\xfe\xdb\x62\x85\xbf\xc9\xb9\x5b\xff\x2b\x7b\x1e\xfb\x51\xf5\xa3\x58\x2f\xd6\x2b\xcb\x99\x50\x29\x6b\x4a\xd9\xb8\xd7\x28\x73\xa5\x7e\x68\x45\x33\x63\x8d\x72\xeb\x94\xbb\xb4\x27\xfc\x2c\x4b\xa3\xe0\xef\x09\x81\xe6\x37\xff\xe5\x60\x9b\x94\xcd\xbb\xde\x5b\xc9\xf4\xe1\x76\x77\xe6\xe2\x83\x39\xe5\xad\x73\xb2\x8a\xd8\xfa\x86\xd2\x98\xb3\x2c\x6d\x8d\x7b\xe8\x26\x66\xad\xe5\xae\x17\x8b\xd1\x63\xdc\xbc\xc2\x48\x37\xaa\x52\xa6\xce\xa6\x1d\xe5\x77\x1a\x89\xfa\xcb\x79\x9d\x4a\x17\x6d\x75\xc1\x4a\xe1\x5a\x75\x31\x82\x48\xdd\xac\x12\x20\xef\xa2\xc1\x62\x26\x3a\xe5\xd8\x12\x39\x06\xf3\xe3\x08\x2c\xcb\xc2\x35\x04\x9f\x94\x82\x84\xd4\x4d\xa7\xc5\xb7\x89\x3f\x96\x1e\x11\x67\x93\xa2\x00\x80\xf7\x9b\xbc\xd8\xf0\x5a\xbf\x05\xf1\xab\xd8\xa8\x5d\x8e\x5a\x2e\xa8\x57\xcf\x47\x6f\xa6\x0c\xaa\x16\x60\x22\xd1\xb3\x8b\xed\xb0\xc5\xe9\x9d\xf2\x85\xb8\x57\x47\x56\xcb\x16\x13\x8e\x06\x33\xa5\xde\xc4\x91\x4d\x4a\x71\x35\x69\xde\xd2\x00\xb1\x1f\xe4\x02\x00\xbc\x27\xe4\x1c\x43\xa4\xce\x80\xc9\x2e\xb6\xd5\xc8\xb1\x81\x82\xd5\x25\x0a\xdc\x62\x8a\x9f\xb2\x0c\xf7\x09\xa5\x56\x34\xe0\xff\x97\xbe\xbf\xa8\x95\x68\x15\x75\xb6\x70\x00\xf4\x0a\xde\x25\x79\x4b\x8a\xd9\x94\x21\xce\x81\x32\x96\xba\x8a\x01\x78\x17\x00\xf0\x5a\xc8\x5f\xf4\x63\xda\x62\xd2\x74\xf9\xa0\x5a\x4e\x12\xf1\x3e\xa9\xaa\x48\x5f\xc9\xeb\x8b\x07\xa0\x34\xa4\x59\x7e\x03\x7a\x9e\x86\x96\xbd\x80\xb9\x51\xb3\xa5\x7f\xc8\xdb\x83\x86\x24\x3b\xc9\xe3\x9b\x96\x88\x4e\x52\x10\x4b\xbd\x45\xfe\x94\x3f\x00\xc0\x9b\x4f\xcd\xd7\x95\x6b\x78\xf4\x98\x22\x7e\x89\x91\x9e\xcc\x1d\x56\xf6\xd0\x63\xe1\xb9\x8a\xbb\xf4\x40\x44\x55\xd1\x5f\xfa\xae\x54\x99\xcc\x9e\x9e\x18\xb9\x4f\xea\x4f\x17\x05\xb9\x89\x85\xf4\xfa\x8d\x83\xa2\x85\xf4\x6b\x4b\xdd\x84\x04\xc6\x6a\x00\xe0\xe6\xd2\x7e\x6a\x97\xa8\x07\xf8\xf6\x32\x4f\xd5\x19\x5e\x3d\x87\x5e\xfc\x82\xe7\x40\xfa\x4f\x31\x87\x4b\x2d\x30\x14\xf9\x70\xfe\x97\x52\x56\x98\xc2\x61\x1c\xa6\x48\x84\x9c\x15\x81\xc5\xa2\x9b\xec\x81\x8d\x39\xc2\x58\x36\x69\xe9\x16\x41\x21\x5b\x05\x6c\xe7\xe8\x18\xb0\x3a\xa4\xa4\xb5\x38\x5d\x1a\xae\xbc\xa9\x58\xcf\x2a\x57\xfc\x29\xba\x0d\x7a\xc8\x5d\x64\xd9\xf9\xb6\xb2\x83\x85\x40\xb2\x8f\x94\x22\x69\x3b\xb4\x57\xdc\x20\x46\x05\x94\x0b\xbf\x8b\xb6\x78\x9c\x11\x20\x85\xc1\x4b\xa7\xf0\xd1\x02\x34\x20\x67\x2b\x59\x52\x55\x68\xc9\x1e\xd3\x88\x38\x5e\x19\x61\x54\x33\x46\x14\x88\xd2\x54\x42\x41\x91\x5c\xb7\x28\x17\x53\xd8\xa1\xbe\x90\x38\x22\x79\xa6\x2a\x39\x38\x4d\xbc\xa8\x18\xb1\x4b\x23\x4c\x94\xa7\x78\x58\xf1\xcf\xca\xfe\xb5\xd3\xf3\x6a\x25\xc5\xc0\x69\xd6\x79\xce\xc1\x62\xb6\xea\x65\x93\xa3\x50\xa6\x9c\x51\xef\x49\x07\x14\xab\x6b\x36\xe2\x4e\x14\x05\x54\x3a\x65\xbf\x2c\x4c\x2c\x9f\x97\x90\x20\xe1\x97\xcd\x08\x3f\x2f\xea\x28\x5d\xe4\xcf\x15\x7c\xd4\xc6\x6f\x70\xe0\x1f\x2c\x91\xd8\x59\xf1\x16\xcb\x1e\x02\x8f\x58\x2e\xdc\x2e\x45\x97\xea\x6c\x47\x9e\xe0\x64\xf1\x8b\xd6\xdd\xb4\x6d\x8a\x19\x8d\xbf\x70\xd3\x8b\x1c\xea\x8c\xd9\x3b\x0b\x37\x57\xef\x88\x3f\x21\x39\x6a\xb9\x1f\xbe\x47\x44\x33\xe9\xfd\xe7\x09\xda\x0d\x7a\xf7\x3e\xfe\x74\xed\xb6\x25\x97\xb9\xdd\x72\x2f\xe0\x0b\xf3\x34\x6f\xa7\x62\x96\xaa\xba\x6f\x9a\xc0\xa1\x78\xb8\xab\x8f\xaa\x90\x3f\x6e\x0f\xc0\x22\x64\x6f\x9a\x1b\xb2\xda\xa4\xdf\x1a\x66\xc6\x87\x49\xe6\xd5\xe4\x1f\x78\x2c\xda\x54\xf1\xd9\xaf\x5f\x10\x67\xb6\x76\x27\xf3\x74\xfa\xc0\x25\x7d\xdc\xb5\x0a\x9f\x49\xab\x99\x41\x3c\x99\x70\xa8\x36\x36\x7f\x01\x23\xb7\x2a\xb7\x20\x9b\xc8\xb7\xb0\x11\xdd\xf9\xd7\x4c\x3a\xd4\xbc\x54\x82\xa1\x05\x2d\x3d\x22\xd1\x0d\x63\x1d\x43\xf9\xea\xeb\xb8\x2b\x3e\x0c\xd5\x1c\x02\x7b\xad\x95\xe2\x36\xb8\x68\xee\x98\xc2\x42\x0a\x05\x00\xe1\x69\xf2\x35\x61\x54\xcd\x28\xe2\x2b\x63\x4e\xe5\x43\xd4\x3c\xe2\xb6\xf2\xbf\xe8\xf5\xf9\x1c\xd3\x1a\x4c\x58\xaa\xbb\x61\x1f\x56\x74\xe4\x80\x2e\x15\xf7\x2c\x34\x42\x4d\x27\x44\xfb\x24\x28\xcf\x13\x47\x5c\x3e\x28\x8c\xa4\xb9\x73\x1f\x2b\xd2\xa0\xe9\x00\x20\x34\x53\xa6\x08\x1e\xd5\x6c\xc7\x00\xf4\x9a\xca\x68\xcc\x0b\xc2\x9d\x72\x08\x7b\x26\xdf\xb5\xac\x05\xd7\x9c\x72\xbf\xf4\x01\xbe\xeb\xc8\x34\xed\x6f\xc2\xed\xd0\x79\x6a\x47\x70\xae\x8f\xa7\x92\x48\xf2\x75\x79\xa4\x38\x02\x1d\x98\xfb\x59\x31\x0b\xb6\x03\x00\x61\x36\x25\x9f\xff\xb6\xda\x0d\x8c\xa0\xf5\x57\xa4\x83\x97\xf1\x1f\xcd\x66\x52\x40\x5e\xaa\xf1\x1a\x69\x20\xc5\xbd\x74\x0a\x14\x1d\x95\xab\x5d\x07\xdb\x86\xc8\x4a\xa2\xe1\x3b\xde\x77\x8a\xfb\xc9\x62\x97\x41\xb9\x85\xb2\x65\xde\x32\xf9\x36\xca\x3d\x00\x10\x9c\xa2\xd6\xf2\x3e\x54\xed\xa1\x5e\xa1\x9e\xb7\xc0\xd4\xaf\xf8\xc9\xa6\x1e\x9a\x55\x2e\xcf\xf0\x99\x36\x3f\xb9\x40\xef\x4a\xf3\x89\x1c\xd0\xc4\xd3\xe8\x7b\x26\x54\x45\xb4\x3b\xde\x44\xc5\x6f\xba\x8b\x8b\xb6\xe8\x1e\x9d\x3d\xcf\xaf\x68\x17\x7d\x02\x00\xf8\x13\xf4\x45\xdc\xb7\x95\x09\x9c\xaf\x94\x13\xe5\x26\x8e\x12\x37\xbd\xec\x05\xc7\x39\xa7\xcc\xb0\x86\xdd\x9b\x54\xa6\x4b\x67\x67\x46\x4e\x55\xab\xd9\x5e\x7b\x92\x95\x57\xd8\x4b\xbc\x6d\x14\xfe\xac\xbf\x2e\x79\x45\xf3\xd8\x8b\xe6\x1d\x93\xed\x62\xbd\x05\x00\xbe\x1b\x03\xe4\xe0\x2a\xf6\x17\x4d\x27\xc7\x98\xcb\x0a\x7f\x61\xca\x8d\x1f\xa5\x8f\xb2\x8f\x96\x6e\x94\x0c\x27\x42\xda\x7c\x71\xcb\x61\xa0\xa4\x52\x74\x7c\x37\xb7\xf8\x89\xf0\xe5\xb6\x5c\xf9\x7e\xa1\xb3\xcb\x02\xd9\x6c\xc1\xd5\x79\x6c\xe9\x7f\xbc\xe7\x00\xc0\xb3\x65\x1d\x60\x9d\xb2\x54\xe8\x27\xa0\x53\xa6\x1f\xba\x35\x68\x6f\xe3\x3e\x4d\x64\xd6\x14\x3d\xb7\x04\x9f\xb0\x5b\xd3\xa7\xac\x38\xf8\x4a\xf5\x43\xf1\x29\xb8\xa4\xd8\x5b\x9e\xb4\xb5\xae\xc8\x28\xfb\xbd\xa6\xb8\xf0\x90\x6c\xde\xbc\x28\xc9\x2f\x91\x2b\x00\x70\xb7\xb3\x87\x99\x3b\x2d\x31\x35\xd6\xa4\x30\x93\xb9\xb2\x08\x39\x64\x78\x65\x59\x94\x61\xd6\x3b\x98\xe4\xf1\x93\x35\x11\xc6\x65\x11\x27\x55\x62\xfd\x60\x90\x46\x71\x41\x5b\xe4\x75\xa1\x68\xb5\xba\x79\xf5\x6d\xe9\x29\xe5\x8e\x79\x93\x25\x3e\x92\x1b\x00\xc0\xe1\x72\x5e\x33\x44\x16\xfb\xc6\x3b\xa0\xda\x84\xad\x77\x41\x2e\x34\x0c\xd5\x64\x66\x4c\xd3\xbd\xab\x2c\x8f\xc3\x68\xec\xca\x5f\x47\xec\x56\x45\x99\x0e\x05\xb9\x2b\xe4\x86\x6f\x5e\x28\xd9\x63\xfd\x9a\xd5\x6c\x29\xb6\x24\x62\xee\x75\xf1\xa8\xf4\x0d\x00\x70\x1c\xb9\x09\xf4\x8f\xe5\x0f\xda\x6d\xc1\xe9\x26\xdf\x16\x4f\x04\xcf\x20\x6c\x0c\x3a\xc6\xd6\xb5\xd4\x45\xc5\x4d\x52\x5f\xad\xc6\x84\x3f\x55\x59\x55\xb4\x06\x3e\x54\xf8\x9b\xff\xf3\x72\x97\x51\x0d\xb7\x57\x1f\x95\xfc\x52\x7f\x9a\x7b\x5e\xec\x52\x78\x06\x00\xd8\x5a\x6e\x0d\xe1\x5d\xf7\xcc\x82\x20\x84\xb0\x7d\x33\x22\x35\x83\xd3\x8c\x43\xd2\xe3\x3f\xd6\x8f\xa1\x86\x0f\x8d\xd7\x2c\xc7\xac\x0e\xf1\xae\x38\x86\x6d\xd8\xa1\x31\xf5\xe2\x0f\x6d\x58\x67\x88\x27\x4e\x73\x70\xd1\x3d\x07\x55\x36\x64\x4d\x11\x64\x01\x00\xc9\x6e\xca\x29\x42\x57\x17\x16\x79\x0d\x11\xdb\xd6\x80\x1a\xcd\x48\x6f\xfa\x83\xee\x8d\xbf\x50\x9f\x84\x39\x7e\xa8\xb3\xba\x1b\xfb\xbf\x90\xe5\x15\xd3\xf1\x01\x3b\x38\xa6\x34\x42\xe3\x86\x95\x86\x59\xe0\x2a\x07\x77\x9d\x8e\x84\xb7\x31\x6b\x42\x60\x6f\x00\x90\x2c\xa1\x5c\x23\xe0\x3a\x1f\x61\x44\x88\xe5\x6d\xeb\xb1\x71\x19\x1b\x9a\x38\x38\xfb\x78\x63\xdd\x3b\xdc\xfb\x43\xe2\xea\x03\xf8\xd7\x7b\x7e\x58\xca\x88\x33\x77\xe4\x96\xfd\x05\x83\x37\xcc\x2b\x6d\x21\x51\x1d\xbc\x74\xbb\x20\x83\xcd\xa0\xfa\x05\x79\x35\x00\x88\xaf\x52\x57\xe2\xff\xed\xb8\x04\x1e\x2e\xd0\xb5\x6e\x00\x9b\x8f\x35\x36\x1a\x48\x36\xf1\xee\x75\xb3\x48\xc2\x43\xeb\xab\x30\x90\xfb\x9e\xca\xf2\x73\xd0\x87\x1d\xae\x65\x6e\xf0\x45\xf7\x0f\xfa\x27\x64\x8b\x43\x80\x36\x8f\x42\x9a\x39\xa5\xe4\x2b\x95\x01\x00\x62\x07\xda\x06\xbc\x7f\xfb\xbf\xd4\x88\xfc\xdf\x2d\xbb\xa8\x09\xc7\x96\x37\xd4\x52\x73\xe3\x6a\x6a\x57\x52\x05\x07\x7b\x2b\xa5\xd4\x73\x7b\x82\xcd\xaf\x68\x2e\xdb\xef\x1b\xc3\x69\x06\xf7\x33\x7a\x2b\xba\x93\xc3\x3e\x0d\x95\x7e\x69\xe6\x01\xd5\x23\xc6\x5c\x00\x10\x05\xd3\x41\x9c\xac\x6d\x82\x7d\x2d\x3f\xb2\x39\x8e\x8d\x4b\xa7\xd4\x9f\x66\xcf\x8f\x5b\x5a\x13\xc0\x1a\x3b\xe8\x5b\xd1\xc6\xaa\xdc\x3d\x6e\x9e\xcb\x52\x6f\xe7\x18\x70\xac\x6a\xf7\x12\x9d\x3b\xeb\xa1\xc3\x01\x75\x21\x1b\x31\x53\xab\x1c\x61\x51\x01\x40\x98\xc6\xe8\xc0\x1a\x5a\xdb\xa4\x94\xbc\xf8\x26\x2f\x49\x77\x1a\xbb\xae\x5d\x7c\x33\xd6\xb3\x7a\xa3\xe8\x6b\x04\xd2\x62\x12\x6d\xde\xbd\xc6\x34\x45\x28\xf4\xf9\x59\x9a\x23\xb4\x76\x0f\xd1\xce\x13\x9c\x71\xd8\x57\x12\x21\xf8\x3c\xf3\x6d\x71\x20\xd7\x04\x00\x02\x77\x56\x20\x26\xa2\xe5\x89\xc6\x3d\xd7\xb5\x31\xb3\xa4\x27\x95\x5a\xfb\x42\xb5\x23\x66\x67\x55\x4a\x71\x5f\x78\x61\xf9\x65\x45\x4c\x70\x4a\xd9\x56\xf9\x02\x9f\xa3\xfa\xd2\xa2\xe9\x6e\x37\x35\xbe\xb2\x5c\x87\xe5\xaa\x54\x69\xf7\xac\x39\x8a\x85\x02\x6f\x00\xe0\xfb\xb3\x51\xe8\xf0\x96\xad\xe5\x8f\x73\xdc\x1a\xae\x98\xbe\xa5\x80\xb5\xb1\xc6\x6f\x47\x77\x57\x5e\x2c\x7d\x7b\xa0\xb6\xdc\x47\x3f\x25\x48\x69\xac\xd0\xee\xf7\xae\xd7\x2f\x50\xbf\x71\x8b\x50\x97\xab\xae\xdb\x0f\x29\x1b\xe5\xea\x59\xb3\xe5\x4b\x45\x09\x00\xc0\xe3\x72\xd2\x50\x77\x9b\x7f\xd6\xf8\x67\xb7\x36\x48\xaa\x6c\x52\x80\xda\xc5\x96\xb1\xe8\xf1\x4a\xae\x59\x76\x60\x8f\xf9\x4d\x19\x14\xe4\x67\x8c\x33\x54\x79\x1f\xd3\x9d\xd3\x77\xb8\x2d\x55\x47\x68\x30\xf6\xa5\xca\xd0\x62\xcf\x59\x0b\x8a\x64\xe2\x10\x00\xe0\xd9\x73\x8e\xa3\x88\xcd\xbd\x8d\x33\xb2\xf7\x35\xec\xa9\x2b\x4d\x36\xd4\x8c\xd5\x6c\x89\xa6\x56\x7a\x56\x3e\xdc\xff\xc3\x2c\xb3\x74\x06\xfe\x35\xfc\x32\x6b\xbc\xb7\xe9\xb2\x8d\x4d\xae\x7f\x4a\xee\xea\x98\xf6\x25\xc5\x03\x4a\xca\xac\x6d\xb2\x87\x92\xa9\x00\xc0\x55\x72\xfe\x20\x42\x06\xa7\x23\x96\x65\xce\xed\x9d\x8c\x9c\x9f\xb8\xbf\x73\x2e\xca\x36\x6a\x65\xab\x33\xda\x73\x2f\xbb\x71\x03\x86\xbd\x2b\xaf\x76\x23\xf6\xb7\x57\x6a\x65\x30\x5e\xbe\x56\x6b\xee\x26\xee\xb4\xdb\x5e\x76\x18\x3c\x6b\x45\xd0\xdd\x82\x33\x01\x40\x8a\xa4\xae\x44\xac\x19\x20\xa2\xe4\x19\x5f\x7a\xd8\xe8\xd4\x44\x9f\x0e\x03\x66\x53\xd4\x3f\x2d\x3d\x58\xc7\xbd\xc4\x86\x51\xdc\xf6\x5d\xa9\x35\x97\xf0\x34\xaf\xc4\x8a\x17\x84\x47\x6b\x0d\xe6\x74\x70\x9f\x5d\xa8\xf1\x0f\x49\x6f\x65\xd0\x71\xe1\x5b\x00\x20\xdd\x46\x75\x28\xf8\xd5\xff\x1f\x76\x53\xc6\xe5\x9e\x69\xd8\xbb\x89\x0e\x1d\xae\x38\x56\xe4\xb7\x96\x50\xfc\xf6\xbd\xa9\x0d\x71\x84\xd5\xbb\x0e\xd6\x64\x10\x7d\xbc\xa2\x2a\x68\x60\xce\x5a\x83\x19\x20\x19\xec\x22\x8d\x5a\x68\xc4\x6a\x48\xb7\x82\x5c\x09\x00\x92\x37\xd4\x94\x02\x43\xdf\x3d\xd0\x90\x41\xe9\x9e\x0a\xbe\x4c\xb8\xd8\xbe\x95\xb4\x31\xb2\xa5\x39\x91\x54\xb5\x77\x4d\x3d\x04\x05\xed\x5a\x55\xcd\x85\xa7\x78\x6d\xb5\x94\xc1\x8f\xd6\x6a\x4c\x8e\xe4\x41\x3b\xb4\xa1\x89\x52\x61\x3d\x43\xeb\x48\x1d\x01\x00\x89\x1b\x2d\xb9\xc0\xad\xf7\x36\x35\x35\x63\x5e\xd7\x14\x6a\x4e\x42\x7e\xdb\x56\x6a\x4e\x64\x6c\x53\x26\x95\x1b\x76\xbf\x4e\x48\x3d\xeb\xff\xbc\x4a\x4d\x73\xf1\xb2\x29\x6f\xa6\x55\xac\x95\x94\x6d\xa4\xfb\xd9\x95\x94\x56\x30\xe6\x5a\xa7\x68\x00\x86\x3d\x00\x88\xf7\xd2\x8d\xf9\xbd\x3d\x8f\xd9\xf5\xc7\x0c\x9d\xf3\xd8\x7b\xe3\xff\xb4\x06\xb3\x9e\x1f\xfe\xda\x48\x62\x55\x84\x09\x6a\xcd\x2c\x91\xbf\xa1\xb2\x89\xc5\xde\x72\xc3\x7c\x92\x65\x59\x4b\x35\xfa\xb1\xfe\xda\xf5\xeb\x4b\xd8\xa3\xd6\x9d\x25\x37\x59\xd1\x00\x20\x4a\x60\x5c\xc9\x7b\xdd\xdd\x2c\xf9\x2f\x7d\xbc\xfd\x95\x64\x59\xfc\xce\x16\x7b\xb1\xdf\xe1\xe0\x86\xc3\x22\x54\xe8\xab\x1a\x58\x78\xc6\x7f\x49\x85\x50\xb8\x7d\x0b\xce\x64\x12\xdc\x5f\x7b\xd8\x60\x23\x78\x6a\x77\x47\xb7\x45\xd0\x38\x63\xa9\x2a\x90\xeb\x04\x00\xc2\xe5\xac\x5d\x79\xd3\xba\x6a\xd5\x2b\xd2\xbe\xb5\x7d\x51\x99\xe3\xf2\x9b\xbd\x94\xeb\x0e\xd1\xea\x73\x14\xe7\x42\xbd\xab\xe5\x72\xa5\x1f\xd5\x52\x59\xc4\xf0\xfc\x59\x36\x2c\xeb\x5c\x6b\x5b\xba\x58\x16\x62\xf7\xaf\x76\x89\xe4\xec\x8c\xa4\xe2\xdf\x7c\x34\x00\x08\xd6\xb0\x0f\xe4\x2e\xed\xfc\x60\x3e\x9c\xe6\xd2\x16\x5c\x96\x12\x6b\x69\x12\x1a\x72\x0f\x9e\xa8\xeb\xd3\xcb\x43\x78\x55\x0f\xb4\x2f\x7d\x9f\x95\x4f\x68\xe8\x9e\x70\x99\x83\x7a\x97\x4b\xbb\x3e\x53\x79\xca\xae\x4d\xb3\xbf\x68\xcd\x0c\x9a\xe2\xbd\x30\x1e\x00\xf8\x19\x9c\xb5\x39\x55\x9d\xcd\x55\x09\xa9\x03\xad\xdf\x2b\xdc\x63\xc3\x9a\x7c\xca\x27\x1f\xcc\xaf\x4b\x37\x4d\x0a\xf1\xa9\x62\x19\xbd\x7d\xcd\xe5\x96\xd2\x16\xcf\x50\xe3\x59\x1d\xcd\x45\xa9\x9f\xa6\x9e\x66\xd7\xac\xbe\x26\x97\xce\xd0\x2b\x92\x45\x1e\x00\xc0\xfb\xc5\xa1\xe6\xf8\x77\xe6\xd4\xdd\x48\x3d\xd6\x5a\x51\x43\x8e\x99\x68\xbc\x57\xe5\x79\x70\x7d\x1d\x50\xb1\x2a\x64\x52\xd5\x92\xf2\x10\x5f\xb0\xdc\xdb\x34\xc7\xd3\xdd\x98\x60\x98\xed\x52\xa8\xe3\x6a\x2e\xda\x5d\x52\x6f\x56\xf4\xce\xb8\x2a\x6f\x10\xdd\x03\x00\x1e\x96\xd3\x9e\xb5\x74\x64\x1a\x72\x49\xd2\xd3\xc1\x4f\xc8\x07\xd1\x5e\xbd\xff\x43\xd5\x1e\x08\xef\xbc\x8f\xae\x0f\x9e\xd5\x3a\x88\x79\xb8\x3d\xb2\x51\x8d\xf3\xf3\xe8\xab\x15\xe0\x07\x9c\xa0\xca\x2f\xc4\xa3\x0b\x48\x96\x5b\xe0\xa9\xa9\x9f\x4a\x8d\xf0\x35\x00\x28\xc4\x51\xbd\xb3\xfe\x39\x01\xa3\xa9\x49\x0f\x07\x41\x8c\x7d\xb4\x57\x2f\x0d\x33\x74\xe0\x60\x27\x12\x2b\x09\x9e\xdb\x1a\x89\xe3\x6f\x8f\x6d\xdc\x84\xef\xf4\x38\x55\xeb\x4c\x9c\xec\x24\xa8\x54\x82\x29\x0b\x8a\x2c\x58\x92\x7c\x9a\x63\xe9\x6e\xb2\x27\x00\x14\x7a\x52\x3d\x32\x7f\x1e\xff\x84\x9b\x95\x74\x75\xe0\x37\x8e\x1b\xbd\xa1\x77\x36\x7e\xf2\x81\x7d\x1d\xbf\xf0\xea\xe0\xd9\x2d\x8f\x09\x59\xdb\x63\x1b\x8e\x13\xb3\x3c\xce\xd5\x74\x82\x1c\x27\x55\xe5\x1a\x52\xdb\x82\xfa\xf2\xdf\x50\xdf\xb4\xdd\xfa\xeb\xe4\x77\x00\x20\x7d\x4c\x45\x65\x8e\x0d\x3f\x25\x6d\x4c\xaa\xef\xff\x48\x8a\x89\xb6\xed\xb1\x22\x31\x0f\x6c\xe8\x98\x4e\x7a\x1a\xf4\xa5\xf9\x3b\x84\xda\xbe\xaf\xfe\x26\xec\xe8\x71\xbe\xfa\x0c\xfc\xc9\xa9\xa6\x62\x0b\x79\x7c\xc1\x63\xf3\x07\x4a\xd7\x34\xa5\xee\x34\xf5\x29\x00\x48\x17\xd2\xf2\x33\xa5\x43\x23\xd4\xd3\x49\xd8\xbe\x3b\xd4\xae\x23\xb7\xbb\xbe\x53\xcb\x0f\x00\x6d\x7f\xa9\xad\x41\x57\x9b\xbe\x53\xdf\x6c\xdf\x5c\x77\x83\x16\xe0\x31\x54\x75\x9c\xd6\xe7\xd4\x65\x59\x47\xcf\x58\xb8\xc8\x34\xc6\x08\x99\xf6\x52\x5b\xc2\x98\x07\x00\x12\x17\xba\x25\xf3\xe8\x60\x37\xfb\x45\x92\x57\xef\x4d\x36\xea\x88\xae\xf3\x13\xeb\xef\xfe\x33\x6d\x00\xab\x3b\xa8\xa2\x71\x82\x65\xd8\x6e\x5b\x7b\x8b\xa5\xf2\xa8\xaf\xec\x67\xf5\x3a\x0d\x96\xaf\x60\x7b\x2d\x0c\x2c\xab\x64\xf7\x4c\xf7\xd2\x24\xb3\x1c\x00\x40\xec\xca\x18\xcd\xa8\x1c\xd0\x4b\x2e\x26\x96\xf4\x54\x88\x9f\x1d\xb1\xed\x68\x11\x4d\xec\xdf\xd3\x32\x28\xda\x16\xb4\xb1\xa1\x5f\x58\xe6\xd3\x5a\xa3\x15\xae\xf2\x40\x55\x50\x04\x4f\x9d\x06\x4c\x27\x85\x1e\x0b\x35\x46\x6b\xc1\xf2\xe9\xad\x25\x9d\x9c\x0e\x00\x10\x3e\x63\x6d\xcd\x58\xdf\x1f\x57\xa2\x4a\x9c\xd6\xcd\x51\x4d\x89\xc2\xb6\xd7\x14\xd3\xf6\xb5\x35\x77\x2b\xb6\x06\xd6\xd6\x77\xc9\x9d\x7d\x02\xaa\x35\x45\xde\x1e\xcb\x2d\x74\x59\x8d\x53\x59\x59\x6b\xe1\x87\x85\xa3\xa5\xa7\xc4\xad\x56\x33\x55\x09\xbc\xb3\x00\x20\x78\xc6\xf6\x3a\x76\xb8\x4f\x6a\x3a\x9a\x90\xd2\xd5\x69\xdc\x1f\xf9\xb2\xed\x5e\xe9\xa1\x7d\xee\x4d\x2f\x74\x86\x40\xd7\xba\x27\xda\xf5\xde\x37\xaa\xae\x68\x66\x6d\x38\x53\x7e\xb2\x84\xed\x04\x1a\x1f\x17\x37\x2e\xbc\xad\x3f\x53\x58\x6b\x15\xa6\x0c\x15\x30\x01\x40\x60\xcf\xfe\x5f\xfa\xc3\xbe\x90\xca\x39\x09\xd6\x5d\x49\xe5\x37\x22\xab\xdb\x40\x53\xcb\xde\x8f\x4d\x54\xe3\xc3\x80\xaf\x75\x04\x43\x8c\x77\x6d\x55\xae\x7e\x70\x43\x6d\x79\xaa\xf6\x80\x13\xc2\x88\x55\x99\x17\xbe\xd0\xef\x92\xbd\xb6\x42\x15\x77\x0a\xfd\x01\x80\xdf\xca\xf1\x4e\xc7\xf4\xfe\xa8\xdd\x11\x3f\xd8\xf9\xb7\xea\x69\x24\xbe\xcd\xa6\xa2\x6a\xef\x99\x26\x9b\xf2\x0b\x01\xd7\x6a\x7f\x98\x7e\x78\x2b\x2a\xff\x67\x2c\xdb\x60\x36\xbf\xd0\xd3\x9d\x98\x86\xc7\xea\x4d\x8b\x1c\x75\xa2\xa2\x09\xab\xc6\x62\x2b\xe1\x3d\x00\xe0\x7b\x70\x0a\xc6\x23\xd1\xca\x1c\xfb\x33\x08\x4c\x4e\xee\xed\xde\x1d\xd8\xb0\x7c\x49\xed\x55\xdc\x4a\x84\xb7\x36\x0b\x3f\x1d\xf9\x4d\x30\x05\xff\x13\x7d\x9e\x60\x45\x9c\x86\xad\x4b\xdd\x06\xae\xc0\x5b\xc2\x5e\x93\xfc\x88\xac\x0d\x4e\xd0\x3a\xd2\x7c\x6b\x0a\x79\x3a\xe9\xf4\x0d\x0e\x0a\x2e\xc8\x1a\x6d\x47\xe7\x21\x86\x7b\xb8\x98\x34\xd4\x8a\x5a\x27\x6c\x34\x1a\xab\xb9\x88\xdb\x87\x79\xcc\xcf\xc3\xa7\xe1\xa2\xf1\x54\x02\x1b\x7f\x3b\xa5\x87\xd8\x4a\xc4\x84\x41\xe0\x53\xf0\x83\xfb\x28\xe9\x3e\xe4\x68\x1d\x0e\xdf\x82\x24\xd7\xfb\x91\xe9\xe8\xe7\xa7\x9f\xa2\x20\xcc\x68\xf7\x28\x9a\x86\xbd\x59\x93\x8a\x91\xe1\xae\x6b\x66\x63\xab\xf1\xff\xf2\xce\xe0\xce\x12\xad\x70\x9f\xf0\x13\xe0\xe6\x94\x1d\x44\x5f\x52\x6e\xd8\x2c\x90\x02\x09\xdc\xf1\x24\x0a\x9c\x6c\xed\x0a\x2b\x61\xea\xd5\xb2\x82\x1a\xe8\xf5\xc9\x8f\x88\xcb\xb0\x67\xe7\x0b\x94\x2d\x9c\x57\xd5\x8b\xde\x08\x0f\x95\x94\x60\xd2\xc8\x6b\xb9\x74\x6c\x19\xb9\x14\xfb\x04\xf7\x91\xb2\x34\x39\x88\x10\x41\x91\x87\x06\x10\xcd\x94\xef\xee\x93\xc1\x6a\xaa\xab\xb5\x03\xf4\x9a\x52\x7a\xf9\x55\xde\x57\xb6\xdf\x48\x6c\x81\x1f\xeb\x51\x87\x1b\x42\xca\xc2\x56\x2e\x47\x5e\x65\x2d\x54\x2d\x45\xaf\x62\x9e\xe5\xb8\x61\xc8\x4c\x01\xe6\x04\xf6\x25\x73\x7f\xd2\x1a\x7c\x3a\x73\x72\x08\x8b\x70\x82\xd1\xe3\xa6\x25\x9e\x62\x84\x58\x7b\x40\xae\xb4\xd1\x8b\xd7\x72\x33\xa5\x31\xc7\xfd\xf2\x2e\x4a\x5c\xdb\x72\x0b\xfc\xc4\x53\x2c\x20\x42\x27\x7c\x5d\x6c\x40\xfe\x15\x3c\x63\x5d\x47\x13\xf8\xf7\xd1\xa5\x98\xaf\xbc\xdb\x09\x9f\x71\x85\xdc\xa1\x3d\xa7\xf1\xff\xe3\x9c\x70\xdb\x4e\xf8\x8f\x5d\x6d\x7d\x88\x84\x64\xdc\x3e\xff\x37\xe7\x40\xe9\xe3\xc1\xde\xdc\x32\xdd\xb9\xe6\xb3\x79\x5f\x35\xb5\xa6\x3f\x05\x09\x25\x18\xf9\x41\xc4\x15\xa5\x0f\x63\x14\x75\x58\xfe\x17\x39\x8e\xfe\x57\xd6\x11\x7f\x16\x4b\x97\x26\xee\x6e\xc6\x7d\x10\x2f\x71\xad\xc1\xdf\x15\xae\xb5\xa6\x81\x3c\x76\xd7\xd9\xd0\xec\x98\xa6\x49\x7d\x6f\x72\x46\xeb\x38\x8d\x7b\xf3\x3c\xab\xf7\x1b\xcb\xf2\x35\x96\xb7\x32\x07\x84\xad\x89\x46\x1b\x45\xaa\x4b\xff\x20\x16\xa2\xb7\x68\xd3\xe2\x08\x98\x0b\xaa\xee\xe0\x22\x5c\xb0\x62\xab\xeb\x54\xbc\xa3\x4c\x63\x2d\x23\x7e\xe2\x05\x8e\xae\xc9\xfa\x3c\x84\xef\x99\xc8\x89\xea\xdb\x5d\xbf\x31\xb7\xb9\xf3\x77\x69\x49\xfe\xfc\x56\x89\x74\x43\x01\xb7\xe1\x0f\xe5\x27\x72\x6e\xcd\xa1\x7c\x3c\xaa\xc9\x42\x89\x75\xc7\xec\x36\x96\x04\x35\x63\x3b\x75\xd6\xeb\xa9\x38\xb1\x2a\xcb\x5a\x47\xa4\x0b\x62\x4e\x1f\xc9\x3a\x3f\x9a\xd6\xe3\x99\xb3\xf6\xc4\xa9\xba\xf8\x5c\xda\xc0\x5f\xfd\xe9\xbc\x7b\x3d\xcb\x24\xd9\x05\xa1\xed\xb3\x29\xbb\x10\x17\x1b\x6f\xe7\x5d\x42\xe5\xd4\x90\x62\x1a\xd1\xdf\x2d\x53\x83\x52\xb0\xa9\xc6\xc9\xeb\x13\x70\x1b\xd4\x1a\xeb\x41\xe2\x7a\xe1\xbc\x53\x23\x59\x96\x8b\xd1\xdd\xfa\xec\x1f\x67\x53\x6b\x8f\xe7\x86\x9c\xf4\xd1\x6f\xcc\x2b\x19\xfc\x2a\xbe\x9d\xff\xb3\x87\x4c\xee\x47\x80\x6d\xd7\xf2\x12\x50\x36\x0d\xdf\x63\x52\xd1\xb2\xaa\x5f\x41\xfe\x98\xb7\xe6\x88\xf5\x59\xd8\x3a\xed\xd2\x19\x73\x09\x06\x61\xde\x95\x38\x5c\x62\x76\xeb\xc8\x5b\xdc\xeb\x5c\x7a\xe7\x3f\x78\x5e\xfe\xf6\xca\x6f\x84\x4d\x05\xef\x55\x0f\x09\x4f\x90\xdd\x9c\xd7\x44\x2d\x5a\x8b\xcd\x02\x53\xb0\xe2\x64\x2b\xd2\x66\x7c\x61\xe8\x66\xc8\x9a\x08\xbb\x7d\x80\xba\x48\x6b\xad\xd7\x90\xf7\x43\xce\x97\x05\xd8\xb4\xfc\xd7\x23\x2b\x71\x93\x10\xfb\x3a\x8e\xe2\xda\x90\x5d\x95\x61\x78\x3c\x7a\xb9\x6a\x07\x21\x18\xc3\xe3\x1c\x25\x5a\xe3\x96\x60\xee\x13\x1f\xe2\x2b\x92\xa8\xe0\x18\xf1\x50\x48\x0f\xa9\x13\x7c\xe8\x26\x84\x30\xd0\x5a\xab\x3f\xe4\x55\xd0\xfd\x4b\x3d\x98\x68\xf4\x81\x13\x87\xb1\xf6\x18\xbf\x76\x25\xf6\x19\x36\xb1\x42\x8c\xeb\xc2\xe5\x29\xc5\x78\x05\x9e\xc1\xee\x22\x20\x08\x9d\x98\xa3\xc4\x44\xe2\xe7\xc4\x5f\x60\x1c\x69\x67\xc8\x0e\x52\x34\x54\xe0\xb6\x03\x5a\x0c\x27\x58\x5d\x85\x9f\xc3\xfd\x17\xce\xa2\xc4\xd0\xa6\x61\x3a\xba\x00\xe2\xb6\xde\xc4\x64\x40\xe3\xe5\xbf\xb0\xe1\xb0\x67\xb1\x2b\x2e\x08\xae\x64\x41\xf8\x40\xb2\x07\x3a\x94\x10\x45\x1e\x4e\x9c\x45\xc4\x52\x0e\xed\x21\x80\x3c\xca\x55\xd7\x13\xa4\x7d\x54\x67\xab\x0e\x78\x3f\xe5\xcc\xf9\x57\xc8\x69\xac\xc3\x83\xd7\x90\xdf\x59\xb3\x5a\xe6\xa0\x7e\x31\x5b\xcd\x47\x31\x53\x98\x59\xf2\x46\xec\x12\xa6\x3b\xd3\x0d\xb7\x81\x69\x8d\xda\x84\x3f\xc2\x78\x9a\xb0\x98\x20\x60\xf4\xec\x7e\x42\xb4\x30\x0a\x5d\x59\x60\x36\x23\xc8\xea\x33\xc4\xa6\x7d\x3a\x7b\xbb\x80\x22\x71\xee\x3f\x81\x50\x8a\x57\x37\x05\x21\x87\x45\xff\x94\xd5\xa1\x1e\x09\x17\x14\xad\xc3\xd8\x0a\x1c\xe9\xb7\xb0\x5b\xf8\xc1\xc8\x05\xb8\x02\x5e\x6a\xfc\x54\x7c\x27\x37\x77\xb7\x17\xe1\x32\x47\xe8\xba\x89\x28\x62\x1b\xac\x5d\x48\xc7\x19\x7f\x46\x17\xe6\x47\xeb\x19\xbd\xde\x05\xe9\x5a\x5a\x7d\x2d\x02\xab\xc6\x1a\xf6\x20\x75\xaa\x54\xe9\x04\xea\x4a\x71\x38\xf5\x01\x66\x96\xdc\xa7\x20\x1e\x1b\x2b\x5b\x14\x7b\x0d\x57\x2d\x79\x19\xec\x81\xbf\x22\x1a\x5b\xdf\x43\x20\x0a\x17\x58\x63\xc1\xb3\xec\x0b\x27\x53\xf2\x92\x1a\x5c\xbb\x48\xf9\x9c\x9a\x47\xb5\x9e\x05\xd5\x95\x63\xba\x6f\x88\x0b\xe5\x3a\xf1\x33\x14\x50\x96\x40\xfe\x1f\x3a\xac\x74\x6a\x5e\x25\xc6\xac\x29\x8e\xa1\x61\x3f\xa9\x96\x07\xad\xc0\x3b\xca\x2f\xad\x5f\x8f\x6f\x97\xa5\x58\x2b\xc0\x75\xbc\xa0\x13\x7b\xf2\x80\x81\x9c\x0e\x56\xfe\xdc\x9e\xcc\xea\x25\x05\x4e\x1d\x7b\x34\xff\x43\xec\x69\xb1\x16\x7e\x43\x12\xeb\x6b\xe1\x35\xa8\xe1\xea\xf5\xb9\xb3\x30\x4b\xcb\xf9\x47\x77\x62\x73\x0c\xb7\x02\xfd\x70\x0a\x2d\x7d\x5d\x2d\x7e\xb9\xf2\x97\x75\x25\xb1\x4d\x10\x7c\x3c\x37\xf7\xe2\x29\xaf\xf6\x96\xbc\x27\xc3\xe7\xaa\x02\xf2\x3f\xf4\x6f\xd1\x38\x20\x66\x77\x31\x84\x9b\x90\x3e\xad\x65\x10\x02\x45\x6e\x30\xe6\x64\xa3\xaf\x55\x63\xa2\x07\xb0\xcb\xcb\xb7\x06\x7c\xc2\xf9\x1a\xf2\xd6\xf1\x70\x43\xea\xe5\xd6\xe7\x89\x71\x82\x9f\xc3\xe7\x72\x4d\x63\xf3\xda\xe7\xe5\x35\x8e\x46\x56\x9a\xf3\xbb\x4f\x24\xab\xd9\x05\x67\x06\xf6\x09\xca\x10\xaf\xba\xa7\x90\xfe\x43\x39\xb7\x4a\xb2\xbf\xa1\x31\xf5\xaf\xa2\x11\x98\xf6\x2a\xe7\x80\xf3\xd8\xf3\x26\xcb\x3a\x39\xce\x5b\xa3\x9e\xe1\x48\x18\x15\x1e\x19\xdb\x4c\x0c\xcc\x8e\x1f\x5a\x46\x54\xe5\xae\x6e\x31\x13\x3f\xe5\xfd\x6b\x7e\x0d\xe6\x17\x34\x2b\xbc\xc0\xf7\x48\x0e\xb3\x94\x54\x80\xce\x42\x31\x49\x3f\xb1\xc9\x09\x22\x88\x8f\xcf\xde\xe3\x0e\x2f\x23\xc6\xb9\xe6\xc0\x0a\xd2\x3c\x2b\x2c\xf9\x2b\x74\xe4\x7c\x22\x21\x32\x1f\x1c\x8c\x26\xf4\x17\xdc\x69\xfe\x8f\xe8\x89\x8c\x30\xfb\x12\xbb\x51\xa7\xe4\x22\x30\x02\xe3\xcb\x9c\x0e\xde\xc7\x5e\x46\x4e\x90\x28\xf8\x82\xf8\x09\x68\x0d\x71\xd9\x6e\x13\x74\x05\x6c\x77\x9d\x02\x1f\x81\x6c\xad\x82\xc9\x57\xa0\x89\x73\x54\x3c\x02\xd5\x37\xc0\xc1\xff\x87\xee\x6c\x5e\x43\x00\x31\x8f\x4d\x4c\x22\x80\xfd\x5b\x74\x9f\x68\xc1\xaf\x64\xe4\x80\x21\x84\x24\x24\x0e\xfc\x45\xac\x8a\x17\x92\x7a\x48\xc0\x6e\x7f\x08\x07\x05\xad\x3f\x0d\x03\xf0\x5e\xab\x0d\x64\x15\xfc\xe4\x4c\x0f\x56\x49\x22\xf5\x5d\xc1\x6d\x21\x8d\x37\x0a\x70\xaf\x21\x3f\xe3\x4f\xbc\x0e\x2a\x95\x51\x08\x09\xf0\x32\xfa\x06\xe2\x4a\xb8\x0d\x91\x4d\xfc\x42\x8e\x8e\x2b\x07\xaf\x52\x80\x60\x98\xd4\x44\xd1\xad\xdf\x0b\x05\x52\xa7\x5a\x4d\x27\xcf\xa6\xdc\x38\xdd\x82\xf1\x61\x66\xf6\xce\xc5\xdc\x67\x7a\xd5\x77\x61\x35\x8c\xff\x0c\x71\xb8\x34\x46\x47\xa1\x2d\xde\x97\x51\x48\x7d\x4d\x58\xc2\x20\x17\x1c\x25\x4e\x61\x14\xc4\xf6\x13\x3f\x31\x92\x83\x3e\x82\x17\x19\x11\xeb\x97\x91\x12\x18\xab\xad\x62\x60\x7f\xda\xb7\x93\x0d\xa8\x21\xd1\xe7\x6e\x1b\xb4\x50\xb4\xac\xf6\x1e\x06\x23\x5c\xa8\x6f\xc6\x1e\x12\x04\x48\x4a\x70\xfe\x7c\x14\xa5\x0c\xbf\x9e\x57\x99\x1f\x40\x58\xcd\xbd\x13\x73\x9a\xe8\xc4\x9d\x1a\x74\x98\x38\xc1\xf1\x5b\x77\x15\xa4\xb1\x29\x56\xc5\x10\xcc\xf8\x79\xfc\x0b\x52\xa8\x73\xe8\x20\xa3\x22\x35\xee\xd5\x11\xe8\x55\x25\x5e\xda\x18\x8c\xb5\xf2\x90\x88\x88\x9d\xa4\x48\x83\xdb\x70\x40\x51\x5e\xae\x12\x6f\x5b\x98\x73\x94\x4f\x58\x2c\x49\x0b\x4c\x20\xfc\x12\xa1\xd6\x65\x13\xb3\x05\xef\xac\x3e\x90\xc8\xec\xee\xa1\x00\x84\xb4\x2e\xbc\xf5\x1c\x12\x5d\xed\x59\xf1\x00\x75\xb8\x22\x48\x3d\x1f\xbd\xd5\x1c\x2c\xc8\xc4\x6c\x30\x7a\x90\x2e\x61\xbd\x75\x7f\xb3\xff\xc3\x1d\x52\xf7\x45\xef\xc0\x27\x2b\xb1\x01\xb1\x84\x50\x79\xf2\xda\x37\x04\xa3\xcc\xde\x7a\x3d\x78\x91\x67\x3f\xb0\x11\xb1\xb5\x2f\xaa\xf9\x22\xe2\x6f\x17\xa5\xfc\x04\xf2\x7c\x1b\x4f\x65\x8b\xaa\x6f\x82\x79\x30\xba\xbc\x6e\x1f\x68\x83\x69\xac\xfc\x99\x75\x14\x7b\xc6\x2c\x8c\xfa\x8e\x1b\x37\xcc\xdd\x85\xc7\x0f\x68\xbe\xaf\xcd\x22\x4c\x57\xd2\xac\xfd\xc1\x83\x02\xdb\xfe\xd0\x82\x3f\x23\x40\xd3\x17\xc4\xd8\xe0\x29\xf3\xbf\x48\x75\x6f\xb2\xd2\x1b\x85\xee\x78\xc0\x6d\x47\x1f\x6b\xd9\x44\x3c\x8c\xc9\xad\x4f\xca\xec\xc0\x52\xab\x72\xa3\x20\x1c\xdf\x9c\xb1\xcb\x05\x9f\x5d\x7a\x6f\x6d\x20\xbe\xaa\x44\x6a\x7d\x8c\xf8\x45\x30\xd8\xa7\x29\x38\x77\xf6\x44\xd3\x5e\x84\xf2\x94\x8f\x39\x10\x99\x34\x0c\x15\x6b\x50\xee\x7d\x6a\xae\x23\x7a\x41\x27\x8b\x70\x01\x33\xb7\x25\x30\x33\x08\xeb\x50\x37\x1e\xe5\x8a\x5b\x59\x79\xd0\x7f\x02\xf7\xb5\xec\xd7\xda\x30\xbc\x83\x7a\xc2\xba\x87\x98\x2a\xb4\x3b\x4e\xa7\x68\xb3\xde\x75\x2c\xa1\x60\x73\x9a\xaa\xd9\x94\x7d\x79\x7c\x6d\x3e\x25\xaa\x60\x97\x28\x93\x92\x87\x5c\x0a\x17\x51\x28\xa8\xaf\xb9\xfe\x14\x0b\xe6\xd3\x51\x7b\x4a\x2b\xee\x6f\x40\x31\xe5\x32\xe1\x83\xcb\x69\x2a\x00\x76\x4e\x3b\x46\xfd\x1f\x84\x1c\x1e\x22\x97\xe4\x5d\x68\xcf\x22\x4b\x0b\x3c\xab\x6e\x91\xf1\x88\x61\xcd\x08\x59\x8b\x5a\x2d\x3c\x4e\x3e\x8f\xae\x80\xbe\x93\x3f\x63\x7d\x72\x06\x28\xee\xb8\x47\xd1\x6a\x4a\x1c\xc1\x10\x60\x43\x51\x80\xbe\x2e\x31\x94\xcb\xa4\x9a\x69\x9e\xd4\xdb\xf0\xe4\xa1\x8f\xb0\x16\x79\xb5\xad\x16\x6e\x42\x3d\xaa\x72\x84\x2d\x18\x47\x8d\x35\xfc\x0c\xeb\x2a\x5c\x40\x5e\x8f\x8b\x87\x12\xc8\xc7\xf0\xe6\x9c\x6d\xe4\x06\xc2\xef\xe8\x75\xe4\x77\x60\xce\xae\x6a\x4a\x00\xa9\xdf\x65\x11\x45\x00\x8d\x4f\x5b\x44\x6d\x84\x2f\x0c\xbc\x82\xa6\x10\x3b\x5b\x46\x21\x77\xf0\x70\x45\x08\x74\x00\x3c\x53\x82\x82\x74\xa4\x18\x7e\x2b\xf4\x99\xf4\x97\xb4\x0a\xde\x07\x35\x67\xbb\xc2\x8d\x30\xe2\xc8\x41\xf2\x5c\x72\x88\xff\x4f\x32\x8f\x32\x7d\x8d\x85\x7c\x9d\x22\x99\x36\x99\xea\x4a\xa9\xe8\x0f\x07\x49\x74\x56\x73\x04\x78\x8e\x4e\x2f\x6f\x22\x2d\xa3\x67\x2b\x7f\x90\xa8\xf4\x48\x5e\x1a\xe9\x1d\xfd\x20\xf1\x2b\x14\x4b\x8f\xcb\x5a\x07\x5d\xa5\x17\x44\xf1\x60\x1f\xba\xd4\x1f\x05\x77\xd0\x2d\x6b\xc8\xf0\x47\x7a\xed\xb4\x48\x4a\x2e\xad\xa1\x37\x9d\x08\x0a\x81\xc6\x23\xc4\x21\x81\x9f\xd9\x16\x5c\xc0\xa7\x17\x43\x20\x8f\x37\xc0\x9d\x41\x9a\xce\xb3\x22\x9c\x20\x31\xb9\x29\x99\xab\xa0\x19\x9c\xfe\xc8\x76\x08\xcb\x59\xe2\xf7\x3f\xe8\x09\x9b\xbc\xe6\x30\x3c\x8f\x3d\x63\x5a\x2d\xd9\xc0\x28\xef\xaa\xc7\x7f\x54\xbb\xd7\x4f\x21\xc4\xa8\xaa\x8d\x95\x84\x01\xe5\x6c\xf9\x0e\xe2\x4e\xc5\x1e\xd6\x1f\xe2\x68\x11\x0b\xf7\x06\x8c\x2a\x3c\x75\x4c\x02\xbe\x91\x02\x87\xb9\xa4\x4c\xf1\x01\xbf\x4d\xa4\x1b\xc2\xea\x35\x1b\x49\x8f\x04\xb4\xe9\xa9\x30\x96\xbd\xbb\x23\x10\xbf\xa6\xea\x55\x4d\x1a\x9e\x51\x61\x5f\x1a\x83\x7f\x68\xa6\xc8\xfe\x21\xa4\x1a\xeb\x18\x7f\x08\xef\xf4\x97\xb0\x4b\x89\x1c\xcd\xdb\xb4\x6f\xe0\x1a\xd5\xc4\xa1\xb5\x60\x47\xf1\x62\xdf\x8d\x24\xe7\x22\xf4\xea\x4a\xd2\xf2\x42\xd4\x74\x01\x34\xc6\xe5\xb6\xfe\xc4\x59\xba\xb6\x57\xa1\x70\x13\x6d\x67\x74\x3b\xf0\x47\x9b\x37\x49\x67\xe0\x6f\xd5\xe7\xd1\xed\x08\xc7\xaa\x45\xe8\x44\xc2\x4f\x8b\x2a\x15\x41\xd4\x94\x49\x22\x7e\x82\xeb\xf5\xfc\x9d\xc1\xa0\x5e\xfd\x69\xf5\x12\x90\x5e\x1c\x37\xbd\x0c\x0a\xe4\xc7\xb7\x2e\xc5\x81\x83\xe6\x4a\x0d\x6e\xac\x77\x4c\x1b\x87\x5f\xd9\x79\x56\xe2\x89\x2f\x6d\xd5\xd1\x22\x08\xce\x8d\xfb\x50\x95\x84\xb6\x9a\xfb\x29\x17\x89\xe1\x15\x31\x11\x38\xe2\x83\xb2\xeb\x3b\xde\x80\x7b\xf5\xc3\xce\xef\xc1\x15\xaa\xe0\xe9\xc3\xa4\xa7\x82\xa9\x2d\x48\x5c\xf8\x29\xb7\x8a\xd7\x38\xed\x71\x1b\x4d\x23\xee\x59\x7f\xab\x58\x8a\x8f\xee\xde\x48\xed\xc2\x5f\x6b\x63\xa3\xec\x09\x71\x8d\x4d\x29\x71\x84\x37\x35\x43\x11\xf3\x88\x04\xcb\xd0\x8e\x3e\xe2\x4d\x63\xb5\xf3\x07\xa2\xbc\xc4\x60\x65\x43\x8a\x12\x24\x75\x4c\xb0\xbd\xb3\x82\x6b\x65\xac\xda\x9c\xa5\x06\x88\xe5\x94\xfb\xbc\xc8\x89\xd9\x97\x5f\xcf\x7c\xc5\x4c\x46\x48\xb0\xcf\x18\x7f\x51\x84\x74\x2a\xa3\x0e\x43\x3c\xf8\x91\x11\x83\x63\xef\x8c\x65\x2c\x24\xa0\x9d\xe2\x18\x76\xe0\xfa\xc9\x2f\x19\x7b\xa0\xd4\x8e\x03\xac\xa4\xdc\x17\x35\xaf\x98\xf7\xf3\x29\xa5\xb7\x99\xc7\x10\xd6\x32\x01\x73\x3e\x92\xcc\x8c\x61\x8c\xa1\x6d\xb1\xa9\x0c\x1a\xa6\x2a\x7d\x26\xc3\x17\x77\xe4\xa0\x8a\x01\x10\xe6\xee\xf8\x4b\x1f\x27\xb6\x3a\xd9\xd1\x5f\x91\xec\x26\x8f\x33\xdc\xa0\xe7\xed\x32\xa6\x04\xd1\x5c\xb3\x85\xb9\x10\x35\xa3\x74\x03\xa3\x0a\x1d\x55\xf8\x88\x81\xc0\xe4\x33\xfa\x19\x3e\xd8\x5a\xcc\x38\xfd\x17\xee\x77\x9a\x9c\x7e\x86\x90\x7e\x70\x3b\xbd\x8c\x78\x65\x47\x2d\x5d\x40\x5a\xb3\xea\x5f\xba\x19\x0a\x9c\x7c\x95\xfe\x1b\x2e\x6f\x7d\xc1\x98\x4b\xa0\x56\x49\xe8\x9d\xc4\x55\xba\x42\x7a\x2e\xb1\x4f\x8a\xa7\xfb\x81\xa9\x74\x0a\xdd\x81\xb4\x0c\xdd\x43\xfb\x4a\xfa\x37\xd5\x40\xbb\x0b\x0d\x46\xe0\x69\x17\xe1\xa2\xed\x9f\x69\x0f\xc9\x71\xab\xc8\xb4\x2f\xe4\x2f\x93\x2f\xd3\x19\x94\xb4\x16\x37\x1a\x93\x7a\xb5\xe2\x06\x6d\x2f\xf5\x85\x76\x36\xcd\x8e\xfa\x55\xb2\x80\x36\x97\x36\x8d\x16\x4c\xfd\x46\x5b\x8a\x32\x51\x3f\xd1\xc2\x53\x1a\xa8\x0f\x68\xb4\xf0\x11\xea\x4f\xda\xe0\x76\x22\x6d\x09\xed\xbf\x55\x89\x34\x7b\xfa\xfc\x29\xcb\x68\x17\x68\xc1\x4d\x5a\x6a\x10\xaf\xd7\x72\x88\x1a\xc4\x0b\x55\xe7\x51\xb7\x71\x87\x44\x72\xaa\x07\xd7\x99\xf2\x92\xea\xc1\x51\x22\x73\xa9\x6e\x1c\xfb\xe4\x72\xea\x66\x76\xcd\x81\x6f\x54\x7f\xf6\xba\xed\xf3\xa8\x81\xac\x9e\x55\xfb\xa8\x5b\x58\xc8\x29\x52\xea\x77\x86\x43\x83\x03\xf9\x97\xb2\xd4\xf4\x9c\xfc\xb7\x78\xab\xca\x8e\xfc\x55\x7e\x56\x90\x4f\xfe\x5e\xb4\x1d\xfe\x4a\x99\x52\xd8\x58\x50\x47\xf9\x47\xea\x9e\xe4\x4c\x71\x12\xd7\xee\xbf\x44\xf1\x11\x39\xfa\x84\x52\xfc\x04\x03\xab\x26\x53\xfe\xe1\xbf\x9b\x3a\x93\xf2\x81\x25\xaf\xcd\x24\x6f\xb7\x08\x8d\x18\xb2\x87\x79\xb9\xe2\x2e\xd9\xc5\x58\xc7\x8b\x24\xbb\x96\xae\x84\x66\x93\xb7\x69\xc5\x79\xef\xc8\xfb\x4b\xbe\x25\x18\xc9\x59\xca\xf8\x7d\x4a\x32\x43\x7e\xc2\x3b\x9d\xcc\x95\x81\x8e\x5a\xf2\x16\x29\x34\x35\x99\xb2\x8e\xd3\x57\x1d\x0f\xbf\x68\x73\x2c\xcd\x87\x4f\x35\x03\x45\x37\xe0\xee\xfa\x01\x4e\x16\xdc\x57\x13\x01\x06\xc1\xa7\x2a\xce\xe7\x86\xc3\xe3\xe6\x2d\xf1\x9b\xe1\x77\x06\xc5\xde\x54\xf2\x34\xed\xf7\x6d\x48\xf2\xa4\x92\xef\x8e\x36\x70\x89\xfc\xcd\x54\x90\x5c\xc2\x23\x56\xa5\xc3\x27\x7b\x57\xea\xf9\xb0\xa5\xb3\x5e\xf6\x03\x2e\x6c\xb3\x65\xab\x61\x71\x93\x3f\x91\x05\x17\xd6\x1d\xc9\x31\xc2\xba\xaa\xf0\x38\x1d\x5c\x5f\xee\x1b\xf6\x14\x1e\x34\x6e\xdb\x36\x0b\x6e\xd3\xd1\x57\xde\x86\x37\x17\xd7\x4d\x55\x92\xbd\xf8\xcb\x2b\x35\xb0\x69\x38\x5c\x77\x05\x26\xf7\x5b\x64\xe1\x70\x72\x77\x3f\xeb\x1b\x7c\xa8\xdd\x4c\xf8\x08\xef\x6f\xce\xc8\x71\x80\xf7\xd7\xfd\x8d\xf3\x80\xa3\xaa\x0a\xc3\xc4\x70\x7c\xb9\xdb\xd6\x9b\x70\x80\xc1\x75\xe5\x0d\xa8\x4c\xf9\xbf\xa9\x57\xe1\x3a\x3e\xbe\xe6\xb2\xc8\x92\x59\x67\xb8\x27\x34\x66\x8b\x15\x2d\x02\x45\x6e\x01\x6f\x25\xbf\x23\x7f\x07\x69\x90\x77\x0f\xb1\x3c\xaf\x9c\xfb\x03\x35\x2f\x61\x33\x77\x05\x66\xf1\xde\x30\x4e\x02\x6e\xf5\x56\x23\x7b\x18\xff\xdb\x21\x85\xdd\x4e\x2c\x06\x12\x59\x32\x28\xbd\x66\x95\xf0\x46\x6e\xa4\x61\xb7\xe0\xdf\xbc\x71\xc5\x4a\xfe\xab\x02\x02\xd7\xc0\xb7\x43\x7c\x25\x85\xf2\x0e\xa2\xd4\x79\x9b\xb9\x0c\xcc\xa6\xf8\x8b\x9c\x3e\xec\xb3\xbd\xb3\x39\xb3\xf0\xa6\xad\x09\x6c\x16\xd1\xc3\x61\x27\x9b\x0d\x52\x80\x6c\x16\x06\xba\x59\xcd\x16\xce\x44\xd8\x95\x96\x0b\x36\x21\xc3\xe4\x2c\x7e\x00\xaa\x8e\x6b\xc3\x63\xa3\x2f\x81\x27\xb8\xe7\xb1\x8b\x72\x7b\xb8\xd6\x38\x74\xfc\x31\x4e\x38\xfe\x51\xd8\x45\x76\x33\x31\x62\xab\x1d\x7b\x3b\xa8\x72\xb0\x63\xfb\x92\xca\x01\x32\x2b\x00\xe6\x55\x4d\xe6\xd7\xe3\x23\xf5\x9b\x79\x4f\x08\xff\x14\xb9\xf0\x96\x13\xc6\xd8\x97\xb9\x08\x22\x93\x58\xc7\x39\x03\x86\xe7\x0c\x71\x16\x93\x36\xc4\x49\xd9\x08\x68\x65\xd8\x56\xd6\x7b\xe8\xa3\x97\x82\xa5\x84\x07\xed\x5f\xb3\x24\xe4\x44\xa0\x83\x39\x40\xf1\xaa\x40\xf0\x92\x28\x81\xda\x87\xdc\x72\x8a\xb0\xb0\x96\xf3\x89\xd2\xcd\xc2\x73\xa2\x29\xf7\x08\x78\xf6\x09\xea\xfc\xec\x5a\xf6\x6a\x6a\x5a\x6c\x19\x4b\x46\xed\x0b\x95\xb1\x1c\x69\x53\xbd\x3c\x99\xa7\x68\x7b\xec\xff\x63\x5a\x68\x94\x49\xce\x8c\x3f\xd4\x6f\xe5\xfd\xdc\x6d\x9c\x6b\x9a\x79\x1c\x25\x07\x2b\x5d\xc5\x7e\xcb\x99\xc5\x9c\xcd\x4e\x64\xab\xf0\x5b\x58\xd7\xd9\x1b\xb3\x84\xac\x50\xd6\xd3\x98\x6a\xe6\x30\xcb\x10\xf2\x94\x19\xc9\x3a\xb0\xe5\x2e\xe3\x13\xcb\xda\xfe\x13\xa3\x86\xf9\x68\x52\x19\xc3\x89\x5e\x5d\xf6\x83\x33\x55\x2e\x57\x5d\x65\x27\x14\xe9\x44\x1f\x59\xc3\x32\x01\x7d\x06\xcb\xa7\x70\x23\x36\x83\xd9\x25\xb9\x9f\xf1\x86\xe9\x2d\xd6\x1e\xdd\xcd\x18\x10\x1d\xdd\x33\xca\x38\x2a\x9c\xb9\x65\x1e\xfd\x13\xff\x8d\x7d\x19\x9d\xcd\x0f\x9f\xf4\x83\xee\xce\xfc\x6a\x9c\xce\x5e\x66\x72\x29\xe6\xb0\x38\x86\x71\xc1\x45\xe6\x84\xfe\x1a\x75\x16\x93\xa8\x95\xa2\xd5\x8c\x6f\xea\xdd\xc7\xc2\x18\x14\xe5\xdf\x23\xb7\x18\x56\x8a\xbe\xdd\x5a\xba\xa5\x08\xed\xb9\x89\xbe\xb3\x50\x68\xbf\x9a\xd6\x22\xf1\x9d\xec\x4a\xc3\xb1\x3f\xe9\x6f\xb3\xa4\x8d\xe7\xe4\x1d\xac\xe5\xf5\xf3\x79\xcf\x99\x96\x1a\x1f\x72\x00\xd3\xbe\xd2\x09\xf9\x89\xa1\x36\xff\x4d\x1b\x63\x2c\x35\x9e\x8f\x92\xd0\x8d\x7a\x4d\x30\x9e\xee\xa9\xc1\x6d\xf6\xa1\xf5\xaa\x9e\x2c\x17\xd3\xe6\x14\x6d\x9d\x1c\x46\xbd\xc5\xd5\xe8\x27\xb1\xf8\x1d\xaa\xa2\x97\xac\xe9\xad\x34\xde\x02\x26\xb7\x69\x27\x4c\x63\x7c\xaf\xbb\x82\x0c\x64\x20\xaa\x0f\xa5\xb9\xd1\x5f\x59\xba\xa2\xa6\xd0\xb3\x4c\x2b\x82\x7e\xd3\x3e\x94\xd6\x6c\xba\x4e\x2b\xd0\xda\x2c\x8f\xa4\xd6\xca\x47\x27\x1f\xa3\xe2\x79\xde\xba\x23\x2c\x66\x9f\xa9\xc8\x97\xf9\xa1\xdb\x8f\x8b\x60\xa6\xb4\xd7\x40\xff\x32\x46\x9b\x7f\x23\xfa\x18\x9e\x0d\x5b\x52\x3b\xe8\xe5\x35\xbb\x23\x4d\xf4\xc5\x15\x89\x41\x35\xb4\x62\x53\xf1\xa6\x62\xea\x84\x1e\xbb\x3c\x94\x3a\x5f\xf1\x75\xb2\x8e\xf2\x9a\xa7\x54\x05\x97\xdc\xcd\x3c\x2e\x6e\x52\xcd\xcc\xe6\x31\x53\x8b\x0f\xe4\xfa\x12\xad\xe4\x55\x79\x7f\x73\x3f\x17\x4d\x2a\x78\x98\xb4\xad\x30\x02\x79\xf1\x60\xa0\xa4\x0a\x7d\x63\xd7\x1c\xb1\x3d\xf6\xba\x7b\x99\xf0\x05\xde\xbc\x48\x29\x7c\x47\xf8\x06\x00\xdc\x12\x68\x5c\x59\x53\xb2\x22\xe7\xbd\x78\x9d\x32\x21\x8f\xcc\x78\xa7\xa8\xc9\xff\x46\x28\x93\x2f\x44\x60\x73\x8b\x65\x4c\xd4\xbc\xc4\x87\xd2\x87\xe8\xde\x88\x2f\x92\x60\x2c\xe4\x7f\x57\x74\x16\xbf\xd9\x1d\x2f\xac\x21\x74\x2e\x2a\x14\xb6\x11\xcf\x00\x00\x17\x0b\xbb\x28\x27\xab\x72\x0a\x42\x44\x9a\xe2\x66\x84\x8e\x81\x54\x58\x21\x1f\x10\x5c\x8a\x78\xe8\x39\xb9\xeb\x64\x00\x26\x2b\x91\x26\xcd\xc6\x5e\x8f\x30\x8b\x6f\xe2\x8f\xf8\x97\x89\x50\x84\x93\xee\xfb\x85\xf1\xa0\xf5\x22\x9e\x30\x1d\x7c\x02\x00\x5c\x7f\xb8\x4b\x71\x4b\x69\x8d\xfd\x23\xc4\x2a\x20\xdc\x1d\x7a\x44\xd1\x4f\x7c\x19\x7e\xb5\x8c\x4c\xc8\xcf\x09\x2e\x9c\x4c\x3c\x98\xd0\x26\x21\x81\x7b\xc3\xbf\x88\xbe\x91\x8e\xfa\xbb\x0a\xcb\xa1\x9d\xee\x33\x05\x7a\x78\xee\x22\xad\x80\x09\xab\x01\x80\xa3\xa1\xb8\xc8\x73\x14\x13\xd0\x4f\xc1\x2a\x79\x3a\xcc\xa1\xcd\x90\x3d\x84\xff\xc5\x4e\x14\xa2\xc9\x5b\xb2\x7d\xa5\x53\xc9\xaa\xf8\x33\x62\x21\x65\x4e\xb8\x9b\x68\x11\x45\xe3\xa7\x13\xdc\xa6\xce\x76\x6b\xe3\xdf\xa2\x82\x8b\xf4\x7c\x23\xf5\x24\x00\xb0\xdf\x51\x4f\x14\xad\x96\x9f\x63\xde\xe5\x9d\x2b\x3a\xcc\x1c\xa4\x74\x17\x3e\x61\x0a\x30\x67\xa4\x14\xe6\xa1\x2c\x57\x89\x1d\x73\x7d\xdc\x55\x51\x3d\xd3\xfe\x40\xac\x30\x90\xb9\xcc\xcf\x5a\x30\x93\x39\xdf\x2d\x8f\x6f\xc5\x5c\xb6\xa8\x9e\x57\xca\xdc\x0e\x00\xec\x15\xf4\xe8\x42\xa0\xa8\x41\x6a\xe6\x5c\x97\xb9\x4b\xbe\xc0\x4f\xa4\x83\x12\x7b\xb4\x9d\x24\x55\xbc\x2c\xa3\x46\x3c\x45\xb4\x2a\x16\x12\x96\x09\xb7\xef\xf7\x12\x04\x08\x12\x7c\x9d\xf9\xb3\xf9\x34\xd7\x71\xee\x04\xef\xe1\x22\x2e\x37\x99\x37\x13\x00\x58\x4e\x4c\xbc\x64\x95\xac\x5f\x37\xcc\xfa\x58\x18\xab\x75\x84\xe6\x4a\x7e\xab\xf3\x91\xb9\x62\x83\x4a\x75\x6c\x95\x68\x57\xf1\xc9\x98\x25\x82\x67\xf2\x5f\xfb\x26\xf3\x05\x45\x7e\x3b\x5d\x79\x47\x0a\x65\xae\xab\xb8\x3b\xa5\x79\x8b\x5c\x39\x24\xd1\x72\x00\x60\xc6\xb0\x77\x88\x36\xca\x68\xd5\xb7\x99\xcb\x0b\x27\x55\xa6\x82\x11\x12\x59\xf9\xbd\x82\xd3\xe2\x4d\xa6\x88\xb4\x0a\xe1\x55\xc3\x60\xf4\x90\x80\xa8\x5f\x1f\x76\x83\x6f\xaf\xa9\xdb\xb1\x82\x7b\xaf\xe4\xe8\x7a\x5f\x4e\x73\xf1\xb3\x85\x25\xec\x31\x69\x0c\x00\x30\x5a\x39\xe5\xc2\x24\xd9\x96\xc6\xef\x8c\x70\xe9\xf9\xfa\xdd\x44\xa1\x24\xb3\x06\x53\x30\x57\x3c\xa5\x52\x97\x06\x08\x8d\xe5\x03\xd1\xae\x02\xff\xb2\x5b\x61\x47\x78\x4f\x0d\xb6\xdb\x9b\xb8\x25\x3a\xca\xba\xbb\x9c\xc4\x12\xea\xc2\x14\x76\x62\x61\x0d\x00\x30\x0e\x70\x37\x0a\x1a\x0b\x5f\xb5\x67\xd0\x2b\xa4\x45\x2d\x7c\xc2\x2b\xc9\x96\x46\x66\x3e\x55\x74\xb6\x8e\x90\x4a\x17\xc6\x57\xa7\x1e\xe9\xe3\x7f\xad\xf0\x0b\xfd\xc1\x2b\x32\x07\x6c\x4f\xe1\x7a\x19\x6e\xaf\x2b\x65\xbf\xd0\x30\x16\x1e\x61\xf5\xca\x3a\x80\x69\xf4\x93\x5c\x29\x73\x51\x85\x4f\xd6\x4a\x52\x86\xb9\x24\xfb\x12\x2a\xa8\xcc\x3a\x57\x9c\xb9\xa6\x54\x92\xbf\x23\x3e\x53\x37\x0f\x61\x7b\x70\x81\x9a\x8d\xfc\x12\x54\xa5\x9a\x82\xfe\xea\x35\x47\xd1\x89\x7d\xee\xf4\x4a\x3e\x13\x5f\x62\x9b\x5e\xa4\x27\xbc\x07\x00\xc1\x6e\xb8\x9d\x31\x62\xa1\xe5\x02\xa4\x05\xa6\xb7\x79\x38\xe4\x17\x63\x66\xfe\xd7\x8c\x07\xfa\x3f\x88\xfc\x78\x27\xad\x12\x35\x39\xe2\xae\x7a\x1e\xba\x25\x88\xa0\xd4\x61\xf1\x5b\x3e\x28\x52\xf0\x0e\x4e\x0f\x8a\x8e\x13\x24\xb6\xb4\xa2\x70\xa2\x19\x00\x04\x76\xf0\x5d\x46\x5a\xf9\xd9\x02\x6b\xb0\xcb\x14\x8c\x08\x46\xea\x0c\x27\x91\xd2\x0c\x91\x1e\x8d\x1a\x8b\xbb\xad\x9d\x8f\x59\x1f\xa1\x2e\xd1\x60\x4d\x41\xbb\x94\xeb\xf1\x6e\x5b\xc6\xe4\x13\x84\x62\xa7\x2b\x45\xd9\xc4\xd3\xb6\x2a\xd9\x6b\xb0\x11\x00\xf8\xb7\xc9\x7b\xe8\x78\x73\x33\x76\x2f\xf1\x66\xd9\x6a\x9c\x23\xe2\x4c\xe9\x29\xdc\xfb\x63\x17\x74\xf9\xf8\x33\x71\x9e\x9a\x39\x84\x81\x08\x2b\x55\x39\xf1\x42\xe0\xe9\x62\x5f\xf0\x7f\x5b\x28\x72\x17\xd2\x63\xa7\x1e\x99\x16\x6a\xb0\x1d\x2a\xfc\x0d\x17\x00\x00\x7f\x33\x45\x4c\x4b\x33\x61\x48\x0a\xc2\x53\xe3\x6c\x68\x45\xc1\xa8\xbe\x05\x92\xa4\xbf\xd0\xa6\x42\xbf\x63\x73\xd5\x73\x60\x66\x78\x94\xb2\x81\xec\x1c\xe8\xae\x38\x44\x1e\xdf\xb2\xbc\x28\x84\x82\x74\xd2\x16\xf6\x50\xfe\xda\xbe\x93\xbe\xa6\x96\x00\x00\x2f\x8f\x36\x89\xea\x5e\x46\xa3\x93\xf0\x2d\x86\xe9\x74\x49\x7e\xaf\xae\x8d\x0e\xa7\x7d\xd4\xe4\xd1\xa1\x98\xe2\x92\x15\x74\xf1\x01\x79\xf1\x29\x7a\x6f\x80\x40\x8e\xa0\x7f\xf3\x6c\x92\x15\x30\xbc\x9d\x70\xd2\xdb\x0c\xd9\x3f\x6b\x25\x37\x19\xc5\x00\xc0\x35\xd2\x73\xc9\x97\x8d\x0b\x44\x68\x5c\x9a\x7e\x4c\x78\x31\x2f\x56\x2b\x16\xae\x4a\x6d\x52\x87\x09\x90\x47\x09\xaa\x49\xfc\xb1\xfd\x25\x8a\x16\xbe\xff\xae\xde\xa2\x34\xde\x49\xcf\xa5\x85\x89\xbc\x58\xa7\xf5\x92\x56\xde\xde\x7f\x02\xc5\xc7\x38\x1c\x00\xe0\x14\x31\x77\xc2\x8b\x0c\x19\x25\xbe\x98\x21\xdd\x27\x65\x67\xce\x57\x4d\x5f\x31\x32\x25\xab\x84\xa8\x98\x16\x1d\xae\xf4\x28\xaa\xda\x27\x95\x3f\x97\xc5\xf9\x8f\xcb\xf4\x85\x2e\x9b\x73\xa5\x0a\xe9\x8a\x55\xdd\xe2\x5b\x12\xd4\x3f\x1e\xa2\x10\xfe\x15\x00\x60\xb7\xb0\xfa\x48\xb8\xd2\x06\x73\x3d\x3a\x48\x97\x5f\x76\x25\x1b\xaf\x71\x37\x3c\x49\x9e\xaa\x7a\xa3\xbf\x73\xe4\x9f\xe2\x0a\xed\xfd\xbd\x08\x79\xba\xfa\x9d\xdf\x7d\x99\x53\x89\xeb\x26\x89\x74\xa6\xb2\xd2\xf1\xb3\xd8\x57\x8e\xb5\x1d\x17\x26\x88\xd0\x00\xc0\x9e\xc4\xfe\x00\xb6\x95\xe2\xaa\x73\x50\x32\x9d\x67\x65\x50\xd6\xa8\xfa\x83\x65\x7a\x52\x96\xaa\xc1\x34\x12\xc5\x2e\x4e\x37\x0a\xc3\x3e\xc8\x57\x96\xa6\xf8\x61\x0b\x1f\xe9\xb0\x9b\x3c\x24\x03\x1a\x5b\x47\xb3\xe8\x71\x31\xc5\xb6\x46\x70\x51\xcc\x05\x00\x56\x29\x27\x1e\xb4\x29\xdd\xd1\x20\x40\x7e\xd6\x7e\xa9\x73\xcd\xda\xa6\xae\xaf\x6e\x4b\x7c\xa1\x4a\xad\xdc\x1b\xb5\xa8\x78\x6e\xf9\xeb\x30\x65\xd1\x98\xa9\xcc\x6f\x6d\x21\xdf\x18\xbf\xf1\xbd\x24\x4a\x37\xe0\x88\x14\xa5\xa8\x96\xda\xf6\x08\x96\x48\x08\x00\xc0\x9a\xcf\xe9\x43\x2e\x6f\x85\xb3\x97\x67\x2d\x6b\x5a\x99\x53\x99\x64\xac\xbb\x96\xe7\x76\xa4\xb8\xda\x9c\x3f\xb4\x7f\x4a\x45\x1e\x82\x14\xf0\xc5\xec\x88\x3a\xbc\xf5\x89\xe1\x35\x26\x68\xdd\x15\xfd\x42\x9c\xfb\xd2\xc9\xda\xc3\xf8\x31\xab\x46\x55\x22\x48\x05\x00\x51\x25\xb9\x19\xd1\xdb\x72\x33\xb7\x39\xf3\x66\xa3\x30\xdf\x3a\x09\x5d\x17\x56\x90\x70\xa4\xa0\xda\x11\xd1\xbb\xef\xa9\xe5\x33\x6a\x67\xc0\x1d\x53\x0b\xfa\xd1\xd6\x4b\x06\x16\x56\xb3\x6e\x4c\xd7\x81\xdf\xbd\x74\xbe\xe6\x2b\xa1\xda\xea\x8e\xca\x86\x64\x0d\x00\x22\x34\xb9\x13\xb1\xbf\x65\x6b\x01\x22\x53\xd0\xf0\x05\xa1\x4a\xf2\xae\x1d\x44\xf6\x1e\xf1\xad\x32\xa2\x1e\xef\xeb\xb1\x80\x98\xcd\x01\x5d\xa6\x9d\xd8\x8a\xad\x1d\x86\xb9\x78\xb7\x75\x27\x75\xfb\x08\x86\xa5\x2b\x35\x02\xe2\x25\xab\x3f\x4a\x1d\xe9\x13\x00\x88\x5c\x28\xd3\x11\xd6\x4d\x9f\xb1\xab\x32\x9d\xeb\x2f\x62\xef\x26\x0e\xd5\xb4\xe0\xe4\x51\xe7\x2a\x75\x78\xc4\xbe\x23\xe5\x14\x42\x7e\xc0\xb1\xb2\x50\x22\x67\x2b\xa1\xd4\x11\x6c\x59\x67\xd1\xa6\x92\x86\x96\x6e\x53\x2b\xa0\x3a\xeb\x90\x62\x25\x39\x0a\x00\x84\x08\xea\xb2\x02\xd7\xc6\x6b\xe0\xf5\x8c\x8c\xba\x1e\x52\x4a\xa2\x5d\xb5\x81\x74\x33\xca\xab\xa2\x08\x3a\xba\xf7\x86\x19\x86\xbe\xed\xfa\x62\xdc\x07\xd7\x6e\x75\xd0\xaf\x25\x63\xd7\x51\x35\xf9\x94\x9d\x4b\xc3\x4a\x44\x54\xc0\xba\x58\x91\x4f\x7d\x03\x00\x02\x15\x2d\x2f\x3f\xb8\xe1\x5f\x5a\xdc\x31\x7d\xed\x00\x2d\x2d\x21\xab\xaa\x94\x96\x16\xa9\xb4\xa8\x68\xac\xbd\x61\x26\x2e\x6d\x70\x17\x6c\x88\xa1\xcf\xf4\xea\xd7\x79\xd1\x0b\xd6\x85\xa9\x21\xfa\xfb\xa5\x87\x54\x1c\x86\xc1\xfa\xa9\x3c\x88\x91\x02\x00\xfc\x6e\x7a\x43\x1e\xbe\x5e\x24\x58\x97\xde\x55\x83\xe6\x6b\xe3\xa1\xca\x64\xfe\x9c\xc3\x03\xe5\x09\x3c\x6d\x98\xb8\xec\x20\xcf\xdf\xff\x6e\xe9\x7a\xee\x67\xaf\x5d\xda\x59\xdc\xd1\x75\x56\x25\x01\xdc\x6b\x4b\xe3\x94\x2b\x79\xf6\x33\x7c\x65\x4d\x6c\x21\x00\xf0\xa4\xcc\xdd\x39\xef\xeb\x04\x8a\x94\x34\x56\x35\x28\x8f\x8b\xe3\x56\xe4\x17\x45\x1c\xba\x6b\xce\x95\xf9\x85\x1e\x37\x26\x17\x86\xfa\xaf\xd3\x07\x4a\x33\xb6\x34\x6b\xd6\x4b\x9a\xd6\xd6\xa8\x0e\x49\x12\x97\xfa\x16\xcf\x15\xdd\x9a\x81\x28\xc4\xf0\x56\x01\x00\xd7\xc2\xa2\xe4\xac\xab\x6d\x2c\x7d\x9c\x2a\xab\x6a\xd5\x47\xc6\x92\x2c\xcd\xda\x13\x07\x9f\x98\x5a\x34\x1e\x21\x8f\x0d\x35\x25\x3d\x7e\xc9\x3a\xad\x2a\x6b\xcb\x14\x75\x91\x32\x7d\xed\x0a\x65\x95\xa2\xc5\xee\xa6\xe2\x60\x61\xe5\x8c\x1c\x69\xbe\x60\x37\x00\x70\xde\xb0\xd1\xd9\xac\xda\x23\xe6\x89\x54\xab\xaa\x58\xd3\xf6\x58\xc0\x12\x6f\x44\x1c\xc4\x99\x62\x4a\xeb\x43\x68\x86\x70\xfd\x6c\x3f\x1b\x5d\xb0\xd6\xe4\xd9\xa7\xf6\xd3\xb8\xb8\xbc\x54\x86\xa9\xf6\xda\xb5\xc8\x1f\x17\xf9\xce\x40\x48\xee\x0a\x37\x01\x00\x87\xcd\xbe\x91\xf5\xb6\xe6\x67\x15\x37\x45\x5a\xf9\xa7\xa2\x34\xa6\xb4\x7c\xa2\xbc\xfe\xa0\x43\xd9\x17\xd3\xb5\x10\xef\xd2\x67\x65\x4e\xbe\x97\xb4\xb7\x0d\x1c\x4f\x69\xc9\x75\xbd\xa3\xcb\x85\xe2\x8b\xea\x24\xbb\x3a\x79\xa8\x5c\x30\xa3\x50\xe2\x22\xfc\x0a\x00\xec\x9f\x9c\xe5\x99\x70\x77\x4e\xf6\xed\xa4\xc1\xf6\xe7\xb9\xdb\xa3\x49\x2d\xf9\x79\xaa\x03\x37\x1a\x7e\x15\xcc\x0d\xee\xaf\x65\x21\xda\x77\x78\x54\x7e\x47\x91\x37\x56\x97\xf3\x30\x09\xce\xde\x65\x0a\x9c\xcf\x82\x47\xc6\x59\xf8\xfe\xa9\xb7\xd4\x2e\xa4\x48\x00\x10\x1f\xa7\xcc\xcc\x0c\xe8\xba\x9e\x17\x9e\xa4\x68\x8f\xcb\x67\x46\x27\x34\xbf\x2e\x68\x3a\x30\xd0\x40\x43\x7c\x0d\x6e\xa8\x9d\x81\x4a\xdf\xe1\x54\xc9\x43\xff\xd8\x68\x29\xb7\xc3\x56\x38\xfb\x95\xb9\xe3\x83\x17\x02\x86\x52\x82\x6c\x9a\x6d\xc9\x45\xd2\x71\x00\x10\xb3\x28\xd3\x32\x7e\x76\x05\x14\xfc\x2f\x29\xbe\xed\x0a\xe2\x4b\xb4\x67\x73\x36\xf2\xfb\x81\xd2\x06\x00\x6d\x1d\x2c\xaf\x29\xc4\x84\xee\x98\x53\x69\x8b\x6d\xda\x58\x62\xae\xc4\xaf\x73\xf6\x37\xf6\x11\x14\x0b\x97\x19\x56\x11\xdb\xa7\x79\x94\x24\x40\x22\x00\x10\x7b\x52\x42\x33\x4e\x74\x4e\xc1\xee\x4b\xb2\x6b\xad\xc0\x7e\x3e\xf2\xa2\x29\x02\xa7\x3a\x70\xb8\xee\x0b\x3e\x37\xf8\x40\xb5\x82\x90\xb2\xfd\x76\xc5\x62\x22\x6e\x23\xde\xd4\x08\xea\x9d\xb7\x1a\x4e\x92\x1a\x16\x86\x94\xce\x81\x94\xd3\xe8\xaa\x70\x72\x13\x00\x88\x0a\xa8\xe1\x19\xf6\xed\x97\xc0\x87\x89\xe2\x16\x36\x29\xee\x08\xaa\x71\x2b\x69\x60\xff\xcb\xda\x7f\xa1\x1d\x41\x9f\xaa\xc4\xd0\xdd\xed\x52\xcb\x1c\xb8\x70\xa3\x5f\x59\x25\x39\xce\x79\x43\x69\x0f\x65\xe3\xc2\x7c\xdd\x1b\xca\x9f\x69\xd7\x95\xab\x68\x73\x00\x40\x28\xa2\x15\x1f\x83\xdb\xee\xd1\x9c\x12\xbe\x37\xb3\x68\xce\x51\x6f\x1b\x36\xfc\x1f\x85\x75\xa1\x16\x05\xda\x28\x00\xf8\x03\x01\x15\x0b\x0c\x4c\x42\x29\x03\x01\x05\x24\x14\x90\x92\x12\xa4\x1b\x86\x98\xee\xee\xee\x62\x9a\x18\x86\xee\x06\xb1\xbb\xbb\x75\xad\x35\x7e\x5d\x63\xcd\xb5\xbb\xce\x73\xee\xe2\x15\x78\x6f\xa6\x0c\x3c\x12\xa4\x24\xe8\x7a\x75\x02\x5d\x54\x44\xd7\x1c\xc1\xc3\xa0\xdf\x6d\x3d\xc2\x4c\x9f\x25\xcd\x5b\x85\xff\xcd\x33\x34\x9d\x11\xed\x74\x5a\x65\xfe\x22\xca\x00\x40\xd5\x2d\x3c\x55\x73\x78\x42\xa1\xac\x2a\x8b\x1b\x0b\x52\x3c\xce\x8b\x1e\xba\xa7\x80\xa7\x5f\xeb\xaf\x57\xd8\x27\x4c\xea\x49\x90\x1f\x8e\x3c\xdd\x71\x59\x5e\x1b\x34\xd6\x8a\x90\x8b\x7d\x26\xdb\x8a\xe4\xe7\xe6\x9d\xb7\x86\xca\xfb\x9d\x5a\x4c\x10\xa9\x2f\x00\x4a\x9c\x78\x53\xf5\xa1\xad\x65\xa6\xe4\x52\xf8\xe8\x7c\x63\x54\xae\x74\xf0\xb2\x61\x75\xba\x7f\x9f\x56\xbf\x21\x1e\xdd\x1d\xad\x23\x45\x26\xb5\x5f\xa9\xdd\x17\x94\xd6\x82\xaf\x8d\xf7\xbe\xd1\x94\x51\xeb\x35\xef\x6e\xc3\x4f\xf5\x31\xa7\x7f\x8d\x8b\xe4\x24\x00\x14\x7c\x49\x7e\xb5\xf3\x38\xa2\x39\xa9\xa4\x73\x64\x6d\xd3\x9e\x9c\xdd\x03\xdf\xac\x2b\xd3\x50\xbd\x3b\x1b\x4e\xc4\x1d\xe8\x42\xd5\x6b\x23\x06\xdb\x67\xd5\x49\x03\x4f\x35\x1f\xb4\x0c\x79\xb3\xac\x6a\x93\x69\xde\x58\xc3\x02\xdd\xbc\xc9\x93\x0d\xae\xca\x2a\x00\xe4\x47\xa5\x1b\xaa\x4c\xe3\x76\x1d\x0b\x4a\xd6\x0f\x9f\x6b\x2b\xca\x81\x0c\x18\x5b\x1a\xd2\xe6\xf6\x66\x34\xcf\x8a\xa3\x76\xfe\x6c\xda\x16\x81\x6e\x1b\xb2\xb6\x04\x9a\x9a\xab\x1a\x9e\x78\x97\x58\x3d\x2d\x97\xe7\x8d\xd4\x37\xe8\x45\x93\x3d\xf4\x12\x55\x38\x00\xf2\x22\x69\x43\x95\xef\x98\xb5\xa7\xb8\xf8\xc1\x70\x55\x17\x3b\xc7\x65\xc0\xbb\xa3\x33\xf5\x7a\xcf\xed\x76\xe7\xb8\x8d\x9d\xd2\xd6\xc1\x88\xf8\xb6\x90\xe6\x3f\x81\x2c\xdb\x8b\x26\x96\x77\x4e\x63\x63\x7d\xdb\xbc\xbd\x75\x6f\x0d\xc3\x93\xd3\x75\x57\x54\xcf\x00\x90\x5d\x91\xde\x86\x24\x1c\x80\xa1\x46\x0b\x8d\x7b\x6e\xa1\x6f\x6f\x41\xed\xcc\xc2\x3a\x24\x3b\x4c\x1c\xc2\x95\xc7\x44\x8f\xf9\xe1\xff\x09\x73\x1e\x62\x11\x8d\x2b\x5f\xf5\xfd\x47\xce\xf7\xf8\xdc\x03\xa8\x8b\x5c\xd6\x75\xc1\x68\x2d\xf6\xf5\xd6\x1e\xd6\x45\x00\x6a\xf7\xf0\x56\x41\x56\xef\xbf\x8f\x9d\x59\xc8\xdf\x53\x88\x9b\xb9\xa5\x78\xc7\x4d\xfc\xcc\x4d\x3f\x26\x36\x11\x42\x63\xd6\x8f\x0e\x13\xa5\x61\xd3\x87\x26\x91\xed\x56\xbe\xef\xe3\x52\x4c\x9e\xd3\xba\xf5\x34\x4f\x97\xe2\xce\x37\x74\x98\xfd\x21\x6b\x02\x7b\x25\x00\xb5\x54\x9e\x27\x64\xda\xfe\x42\x7c\x63\x61\xd5\xee\xeb\x04\xd2\x96\x98\x1d\xa5\xc4\x94\x4d\x2f\xb6\x9e\x20\x45\xc5\x04\x8d\xae\x26\x57\x84\x4d\x1e\x54\x50\xc6\x56\x7e\xea\x03\xb4\xd9\x9e\x0b\xbb\x67\xd3\x89\x2e\x8c\x4e\x14\x43\x6d\x7f\xb3\xf1\x34\xfb\x1f\x00\x6a\x17\xf3\x2a\x2a\xee\xee\x5b\x48\x19\x2b\x8c\xda\xd5\x49\x5d\xb7\xc5\x63\x7b\x30\xf5\xc0\xa6\xa3\xe3\x13\x34\x6e\xcc\x94\x91\x55\xf4\xaa\xd0\x97\x03\x0a\x06\x6c\xe5\x8b\x9e\xdf\x4c\xbe\xe7\xaa\x2e\x47\x96\xc9\x65\xbc\x23\x91\xcd\x9b\xe4\xdd\x30\xc1\xbd\x0f\x80\x36\x8d\x5f\x52\x81\xdf\x73\x91\x15\x5a\x70\x7f\x27\x91\x25\xcf\xbc\xb2\xcd\x85\x75\x75\x93\x60\xac\x89\x9d\x10\x7d\x65\x78\x21\xfb\xef\xd0\x43\xfd\x64\x8e\x78\xe5\x95\xee\x47\xdc\x24\xcf\x75\x1d\x8f\x78\xde\x2e\x4f\xda\xa7\xf0\xa7\x4d\x62\xd5\x0b\x05\xf3\x00\xd0\x94\x09\x1a\x2b\x66\xed\xbe\x22\x48\x2c\x10\xef\x80\x09\xd6\x64\x72\xb7\xfe\x14\x2c\xdd\xb4\x76\x54\x23\x88\x8d\x36\x0c\xcd\x12\xc8\x43\x6b\xfb\xe0\x82\x6b\x2b\xc7\xbb\x2e\x0b\xe3\x3c\x23\xdb\x4f\x08\x3f\xbb\xba\xb5\x5e\x12\xe9\x27\x5d\xae\xcb\x14\xad\x06\x40\x8d\x16\x9e\x29\x87\xee\xe2\x2a\x1d\xf3\x3f\x6c\x77\x52\xa8\x32\xa7\x8c\x9b\x14\xd3\x92\xce\x8c\xf8\xca\xc7\xa2\xc3\x06\x86\xe5\x9c\xd0\xe4\x5e\x67\x79\xc1\x4a\x4d\x27\x4d\x0e\xf5\xcc\x6c\xdb\x24\xff\xd7\x95\xde\xe2\x2a\xfb\xea\x90\x69\x1e\x93\x9c\x01\x40\xb5\x5c\xbc\xa1\xec\xe9\xce\x65\xc6\xc1\x7c\xda\xc4\x49\x83\x34\x43\x3d\x86\xd4\xa3\x92\x72\x86\xfe\xe8\x74\x1b\xce\xf7\xab\x6b\x1f\x87\x7c\xe8\x7e\x53\x9b\xb3\x32\xbb\xa3\xb2\xd6\xc5\x33\xb9\x75\x81\xb6\xdf\x75\x9b\x6d\x4c\x65\x71\x18\x32\xc1\x64\xff\xfc\xbf\xc4\x24\xf1\x65\x09\x3b\x66\xda\xc2\xf2\xee\x6e\x3d\x6c\xd5\x6f\xfe\x3e\x8a\x6d\xf8\x99\x78\x71\xc8\xb1\x7e\xdf\x86\xec\x3e\x53\xdd\xf6\x10\x45\xf7\x4c\xcb\x87\x15\x9f\xdb\x2d\xe6\x7b\x9e\xf3\x5b\x22\x8c\xe5\xae\x07\x9b\x3a\xb5\x4a\x87\x47\xc6\x52\x45\x2b\x00\x0a\xb2\x74\x72\xe9\xb7\xed\xd6\xb6\x23\x79\x0d\x5b\x53\x5b\xde\x6f\xde\x37\xf2\xb1\x39\x3c\xd1\x32\xa8\x6e\xba\xbd\xc1\xb3\x6f\x9e\xf5\x70\x48\x59\x57\x53\x63\xf7\x8a\x1b\xed\x2b\xea\xfb\x3d\x67\x34\x1f\x32\x67\xbb\x5e\x69\x9a\x55\x7b\xd9\xd1\xc9\x70\x5e\x59\x0e\x80\x62\x9a\xb4\xa4\x74\xc7\xf6\x65\x5d\xfb\xf3\xca\xc7\xcf\x77\xdc\xd8\xac\x1c\x21\xb5\x4f\x4d\x44\x0f\x3a\xb4\x76\xad\xff\xd3\xab\x6e\x81\x84\xa4\x74\xcd\xb6\x69\x56\x9c\x6b\xeb\x69\x7c\xe8\xb9\xb8\x79\xb9\xe5\xa9\xeb\x6f\x6b\xbe\xee\x91\x63\xb4\xc1\x4b\x05\x00\x90\xcb\xa4\xb6\x13\xab\xd1\xaf\x2a\xb9\xbb\x83\xb0\x6b\xaa\x4f\x0c\x1a\x70\x58\xe8\xfb\xe6\x78\x7c\x2f\x62\x4b\xed\x64\xc2\x5b\xd4\x31\xee\x43\x52\x3e\x76\x35\x66\x23\xf9\x0a\xbe\xb7\xf0\x1a\xb5\x8a\x94\x1c\xf7\x83\xf6\x94\x72\xc4\x7f\x2b\xfd\x35\x6d\xd0\xe1\x38\xbb\x91\x31\xff\xb8\x17\x6a\x04\xda\xbe\xab\x10\xfd\x0b\x6e\x19\xf8\x0b\xbb\x05\x89\xb3\xd5\xe3\xfa\xd1\x2c\x2d\x8a\x30\x0f\xdb\xc8\xcd\x21\x5a\xf0\xc3\xe8\x23\xe4\x40\xe2\xf9\xc2\x1a\xca\x0d\xca\xcc\xb8\x06\x1a\x81\xe6\xef\x8f\xa7\xb3\xe9\x13\x0e\x43\xec\x1c\xc6\xc3\x63\x4b\x91\x04\xe4\xdb\x9d\x64\xd4\x65\xb4\x6a\x60\x26\x26\x1c\xeb\xd2\x74\x03\xbb\x15\x77\x4a\xb3\x0f\x1f\x43\x30\x70\xf6\x12\xae\x93\xb2\xd1\xf1\x24\x05\x65\x49\xc1\x7f\x94\x04\xea\xaf\xb8\x30\xea\x2b\xfa\x1e\xff\x55\xb4\x1f\x8c\x8f\x0e\x36\xf6\x24\xe6\xdd\x23\xcb\xe1\xd3\x48\xb7\xb7\x9b\x11\x83\xe4\x7d\x7d\xe9\xa8\x2d\x14\xad\x35\x19\xfd\x8e\xda\xa8\x2e\xc3\xf6\xd0\xb6\xb1\x95\x78\x38\xfd\x1a\x2a\x91\x18\xc3\xf8\x52\x30\x9b\xec\xc1\x5a\xb4\x51\x4c\xb9\xcb\xf6\xf6\x3b\x44\x7d\xc2\x3e\xee\xd0\xcc\xda\xcc\x99\x7a\xa8\xa2\xe6\x2e\x67\xe6\xc4\x05\x58\x3f\x67\x7d\x8f\x0d\x81\xe1\x20\x1a\xf6\xa3\x22\x38\x27\x94\x5f\x31\xf3\xb9\x21\xac\x6c\xec\x1f\x6e\x27\x32\x06\xff\x83\xe7\x92\xef\x4f\xfc\xce\x13\xc5\xde\x26\x9f\xe5\xdd\xf1\x43\x51\x4e\xf0\x5e\x3a\x1c\x62\x4a\x78\x89\x07\x42\xaa\x97\x48\xbb\xc7\x9f\xd6\x3c\x93\x86\x77\x3d\x85\x1d\x92\xec\xab\x0f\x40\x4c\x48\xa0\x0a\x23\x6a\xbb\x64\x3e\x73\x0e\xe6\x80\xf8\x1c\x22\x0c\x77\x5d\x2c\xc8\x8b\x21\xbc\x11\xaf\x8e\x0d\x25\x9d\x13\xdd\xf2\x5b\x46\x1e\x17\x65\x38\x7c\x61\xec\x14\xa0\xf7\xb6\x40\xae\x5a\xc0\x68\x6a\xd5\x7d\x13\xaf\xa3\xa0\xe6\xbe\xe1\xb3\xf9\x1c\xec\xb5\x5e\x2e\x43\x22\x67\xe8\x16\xd2\x57\xa1\xc3\xb4\xdd\xb0\x3a\x2c\x4e\xe3\x9d\x6b\x8f\x6f\x51\x35\xc5\xc4\x11\x15\xca\x45\xbe\x63\xa4\x12\xf9\x79\xc7\x50\xfa\x55\x71\xc5\xae\x7d\x15\x75\xdd\x21\x43\xc3\x95\x8d\x1d\x5d\xad\x6f\xab\x5b\xda\xa6\x18\x35\xd0\x03\xcd\x1c\x49\x09\xfc\xb5\xf5\x29\x35\x17\xb5\xa2\x61\x03\x14\x60\xa8\x16\x5e\xf6\x51\xdc\x56\xe3\x8e\xe8\x54\x42\xa7\xde\xc5\xd7\x8f\x88\xa9\x5d\xe8\x08\xa1\xaf\x97\xfe\xb7\xc3\x5a\x7e\x7d\x7b\xf2\x40\x1b\xe4\xe2\xf8\xd6\xe6\xb7\x55\xd7\x47\x5c\xf5\x5d\x35\x5f\x07\x84\x22\x2d\x7c\x75\xcf\x4d\xf2\x10\x92\xd4\x39\xab\x5a\x83\x3e\xda\xba\x2a\xab\x0d\xe7\xd0\x14\xb7\x41\x86\xff\x54\x3f\xe2\xb3\x9b\xb0\xc3\x34\xe4\x28\xa1\x9d\x57\x4c\xdf\x7e\xac\x9c\xb2\xaf\xa7\xff\x0a\x84\xbf\xeb\x50\x73\x60\x95\x6e\xdb\x1e\xdd\xa3\x9a\xe1\xb1\x3d\xc2\x1b\xb0\x7b\x43\x8d\x64\x27\xa4\x47\x5f\x76\xd5\x37\x34\xae\xf3\x79\x56\x08\x76\xa4\x55\xb0\x21\x09\xdf\xd8\xa4\xf1\x69\x27\x64\x5a\xce\x3a\x8e\xd2\x78\x8a\x2b\xdb\x57\x95\x7b\x1d\x9d\xd2\x1f\x0b\x09\x3b\xf0\xc4\xd6\x5d\x95\xba\xa7\x5e\x57\x51\x53\xbe\x23\x5a\x58\x0c\x93\x8e\xef\x26\xd5\x23\x0e\x0c\x3b\x56\xd9\xd0\x4e\x7d\xcb\xb7\x7c\xc6\x46\x77\xa6\x6e\x58\x83\xf7\x68\xd9\xe3\xb3\x13\x7f\xbc\x3e\xdd\xf1\x0f\xf5\x97\x32\xe6\x70\x3e\x6e\x5f\xa5\xf7\xb6\x47\xf8\xad\xd5\x92\xde\x11\xc2\x10\xf4\x60\xe3\x76\xe2\x28\xc2\x57\x75\x85\x74\x1c\xd5\xc6\x9e\x45\x7e\x8e\x9d\x87\xbc\x4b\xf5\xc7\x37\xe5\xdf\xa0\x91\x48\x89\x1b\xe1\xf4\x51\xca\x71\xbf\xdd\x0c\x0a\xed\xbc\xc3\x36\xf6\x19\x86\xe9\x10\x0c\xcb\x80\x6e\xd8\x36\x0b\x27\x83\xc7\xf4\x7c\xc4\x37\x20\xfd\x1a\xa7\x12\x0e\xa0\xa3\x55\xa1\xc4\x0f\x58\x24\x4b\x4a\x0e\xc1\x2b\x90\x55\x14\x35\x71\x22\x1f\x46\x7d\x49\xfe\xb5\xd1\x91\xbe\x81\xe6\xed\x87\x66\x4c\xa7\x5f\x70\x30\xb2\x8d\xcc\xf4\x83\x68\xcc\x06\x24\x67\x62\x35\xb6\x12\xbd\xac\x27\x18\xa7\xc2\xec\x6c\xd8\x82\xbf\x80\xe3\x2a\xd5\xc4\x25\x84\x0c\xe6\x6b\x12\x9d\xb4\x08\xf1\x80\xfc\x98\xfc\x3e\xef\x03\xb5\x94\xfa\x28\x76\x80\x76\x90\x3e\xee\xb7\x92\x6e\x64\x4e\x76\xe0\xb2\xd3\x58\x11\xfb\x8d\xc8\xfb\x24\xbf\xf1\x6a\xf4\x46\xb2\x7f\x17\x0f\xd3\x47\x99\x53\x77\x16\x37\x83\xba\x5c\x11\x86\x97\xd0\xb2\x19\x47\x89\x53\xe8\x3c\xf8\x63\x52\x1b\x63\x6b\xde\x22\xca\x06\xe6\xab\x98\x6f\xd4\x5d\xec\x19\xbe\x07\x68\x32\xf6\x39\x07\x22\xab\x95\x93\xb9\x77\x00\x7e\x8b\xbd\x72\xd4\x80\x2c\x60\x8b\x3b\xce\xa0\x6e\xb2\x2f\x58\x62\x31\x70\x4e\xa4\xec\x3a\xce\x81\xb3\x93\x5e\x8b\x1f\xe6\x46\xc2\x1e\x13\x61\xdc\x43\xb9\xf1\x64\x0f\x5e\x4a\x4c\x35\xa5\x9f\x77\xc8\x97\x4b\x45\xf0\xfe\x73\x18\x64\x5e\xe2\x89\x76\x5b\x61\x73\x25\x5b\x87\xc7\xe1\x9d\x92\xca\x76\x17\x64\xb4\xf8\x97\x69\x14\xf5\x4a\xbc\x4b\x4a\xc0\x8c\x8a\x05\xb4\x02\x1c\x59\xbc\x05\xfa\x3f\x42\x92\x78\x49\x0e\x8c\xe4\x26\x7a\x16\x7d\x9a\x3c\x24\x1a\xf2\x8d\xa7\xe4\x8a\xb6\x38\x7c\x67\xfc\x10\xf4\xec\xf8\x56\x7d\xcf\xd4\x37\xb8\x18\xda\x61\xcc\x6f\xd1\xc3\x21\xfa\xcf\x86\x0a\xe4\x0a\x5d\xa7\xb8\x14\xed\x54\x9b\x45\xe1\x60\x5e\x6a\xbe\xd7\x6c\xc6\xdd\x57\x37\x65\x07\x13\x4e\xaa\xd6\x6d\x78\x4a\x82\x2b\xee\xf8\xdc\x23\xfd\x96\xef\x77\x4c\x60\xb8\x88\x85\xdb\x36\x55\xd9\x3a\xbb\xfb\xea\x6a\x8a\xdb\xc3\x6d\xe1\x30\xf7\x96\xa3\xba\x60\xf8\x27\x5b\xb1\x10\x82\xbc\xdf\xf8\x94\x34\x81\xbe\x53\x5f\x59\x75\x14\xfb\x8f\xf9\xf4\x96\x2f\xf8\x5b\xc6\x55\xeb\xbf\x13\x85\xba\x1d\x3e\x78\x92\xa3\xf6\x89\xa3\x94\x8e\x91\xfe\xd8\xba\xa0\xf2\xfa\x04\xb6\x87\x5f\x5d\x3b\xe6\x60\x0d\x83\xe6\x0f\x99\xb4\xa9\xf0\x35\xfd\xfe\xfc\x46\xa4\x67\x77\x0f\x71\x2e\xda\xbb\xc3\xa9\xb2\x00\xbb\xa6\x25\x33\xf3\x0e\x7e\x95\xd5\xb2\x3e\x82\x70\xad\x3e\xd8\xc7\x89\x98\x6a\x4a\x72\x1c\xa7\xbd\x53\x4c\x1e\xdf\x5c\x29\xdd\xb3\xbf\x7b\x6b\xf5\xa6\x1d\xbf\x1a\xd1\xd0\x99\x13\x4b\x35\x2a\xd8\xd3\xd1\x54\xde\x53\xc4\xa5\xc1\x6c\x02\x19\x75\xb9\x37\x1c\x72\x06\x73\xaf\xe3\x4f\x26\x01\xf7\x57\xcb\xf1\xa8\x2f\x04\xaa\xf5\x8f\xf7\x07\xc2\xff\x2c\x45\x8e\x0f\x69\x4d\x8a\x33\x63\xfb\x2b\xe3\x0f\x2f\xe8\xf6\xaa\x76\xd8\x3f\xbf\xe1\x56\xcd\x99\x5d\xaf\x35\x76\xb0\xba\x6d\xfb\x79\x48\x04\x7d\xac\x8a\x30\x09\x85\x1f\xbc\x0b\xc1\x62\x68\xbd\x6b\x33\x43\x71\x35\x1d\xd2\xa8\x7f\xf0\xdf\x5a\xe6\xfb\xcc\x20\x64\xd4\x5d\x76\x0a\xa7\xb9\x29\xd7\xee\x2b\x27\x76\x42\xfe\x1a\x2b\x24\x15\x56\xc7\x76\x6a\xc9\x6e\x50\xa5\xe5\x1d\xf9\x21\xfc\xbb\x1c\x46\x39\x83\xe2\x30\x00\x75\x0f\xe6\x03\x3c\x98\x76\x08\xcf\xcb\x95\xd3\x4f\x91\xfc\x63\xc4\x8c\x63\x94\x51\xdf\xcd\xcc\x42\xda\x71\x87\x35\x1c\x38\xe3\xe1\x5e\x06\x01\x5e\x73\x77\x54\x49\x0c\x83\x3d\xef\xb8\x49\x9a\x81\xb8\x6b\x49\x27\x7d\x41\xdb\xc9\x4e\x93\x7f\x60\x57\xd1\xa9\x54\x27\x7c\x16\x6c\x27\xcd\x9b\x28\xcd\x5d\x44\x4f\x24\xdf\x88\xf1\x63\x14\xd0\x1c\x7d\x1d\x18\x9f\xe8\x07\x1d\x5c\x39\xa1\x4c\xed\x1e\x21\x3e\x08\xe9\x34\x32\x4a\x58\x80\xda\xdb\x31\x9f\x38\x15\x53\x6c\x36\x91\x66\xe0\x56\xc8\xbc\xc8\xab\x08\x80\xf6\x3f\x4a\x06\xf1\x3a\x2c\x9c\x2a\x26\xef\xce\x19\xa1\xed\xa1\x6e\x8b\xbe\x4c\xbf\x4b\xd7\xfa\x9c\x63\x08\x18\x9f\x1c\xec\xd8\x6f\x58\x84\x5d\xc7\x31\xd7\x89\xd4\xa1\xaf\xd8\x3f\x24\x63\x1b\x1e\x1f\x48\xb6\x98\x5c\x08\x85\x94\x11\xc9\x05\x62\x13\xf5\x7f\xd4\x1d\xa4\xa7\xf4\x85\xd0\x68\x4a\x02\xa3\x2c\xfb\x1e\xb5\x95\x39\x1c\xbd\x82\x76\x8f\xf5\x8f\x0f\x89\xce\x65\xef\x76\x70\x62\x6f\xe2\x30\x76\x1c\x40\x7d\x63\x25\x0d\x2e\xc1\x04\xb1\x4e\xb6\xec\xc5\x52\xd9\x81\x06\x15\xee\x10\xbb\x5f\x4c\x23\xf8\x72\xd6\x52\x54\x44\x33\xe7\x44\xcd\x46\xb2\x0b\xb7\x3c\x7b\x06\x45\xc9\xfd\xb5\xa1\x99\x7a\x95\xa7\xf1\x09\xa7\x55\xf2\x6e\x38\x24\xb2\x58\xbc\xe6\x6d\x67\x90\xc1\xe2\xfd\xfd\x71\x28\xa5\x58\x66\xfb\x89\x7e\x29\x8e\xd0\xfd\xc2\xe6\x89\xa7\x89\x16\xe2\x6e\x8a\x9e\x92\x0b\x09\x95\xa2\xd3\xd5\x71\xc4\x2f\xa2\xa1\xac\xf5\x64\x89\x48\xb7\x61\x3a\xe5\xa6\x08\xe7\xe3\x40\xcd\x14\x85\x38\x34\x32\xfb\x05\xbb\xb6\x7a\xc0\x5d\x8d\xe9\x3d\x13\x08\xa3\xc1\xdf\xaa\x41\xcd\xd6\xbd\xd5\xee\x47\x9b\x6b\xf7\x08\x5c\xb1\x6b\xb5\x22\xa2\x0a\x77\x57\xb3\xa9\x72\x0f\xc1\xa4\x76\xd8\x32\x9d\x14\xa6\x3c\xb2\x7e\x1d\xb9\x5e\xa1\xf5\x1e\x22\x7f\x91\x5b\x1d\xde\x31\x76\x88\xb9\xa3\xcd\xd0\xf3\x1d\xd3\xbb\x92\xe1\x69\xad\x27\x1a\x62\x11\x57\x9a\xa9\xea\x26\x54\x45\x53\x20\xcf\x0b\xe3\xdc\x70\x17\x7f\x16\x7b\xae\x8e\x05\x89\xc0\x5b\xcc\x93\x33\xee\x10\x37\x19\xea\xa2\x72\x49\xc3\xba\x2c\xef\x64\xd2\x37\x6d\xa7\x63\x34\xc3\x41\xfa\x64\xb8\x12\x6a\x3f\xae\xea\xf0\x81\x09\x46\xb2\xea\x22\x11\x53\x06\xa7\x28\xb7\x23\x6d\xbd\xc7\x39\x95\xe8\xcc\x2e\x24\x2e\x14\x3b\xaf\xed\x63\xf9\x75\xdc\x93\x66\xcc\xe6\x23\x84\xa6\xc6\xfb\x91\x06\xe2\x9f\xba\x89\x65\x77\x49\x51\xc6\xb3\x8e\x38\xba\x4c\xfe\x70\xa8\xb5\xe6\xd8\xae\xd3\xed\x85\xb0\xd8\xed\x21\x16\x04\xfc\xd8\xb8\x50\xf1\x01\x99\x35\x7c\x91\x3d\x8a\xfa\xd5\xff\x07\x6b\xc2\x1c\xe9\x71\x2d\x4f\xc1\xe9\x3b\xa6\x6d\x2e\x20\xc4\xb7\xd8\x47\x66\x10\xdb\xad\xcc\x65\xa7\x88\x17\xcc\x17\x1c\x5b\xe8\x2b\x15\x6d\x43\x73\x6b\x8c\x07\x97\xb4\x9d\x80\x39\xec\x8d\x33\x5f\x80\xf3\x76\xae\x57\xc0\x91\x60\x22\x98\x1d\x8c\xea\x1e\xb5\xc3\xfa\x60\xaa\x06\x46\xcb\x5e\xe3\xfc\x7b\xa2\x36\x2f\xc4\x5f\x6d\x3f\x14\x19\x46\xf4\x6e\x66\x2d\xbb\x4b\x8c\xa8\xdb\xe0\xf8\x8e\xd6\xa5\x74\xda\x1a\x49\xdf\x0d\x29\xec\xb5\xa7\xbf\xa9\x7a\xde\xe4\xca\x58\x03\xcd\xaf\x9d\xca\x18\x86\x6f\x17\x78\x31\x23\x50\x7e\x44\x02\xf3\x38\xa6\xa3\xb2\x8a\x05\xc3\x07\x64\x72\x58\xef\x89\x37\xa2\x96\xb1\x85\x94\xac\xa5\xbb\xd9\x37\x69\x50\x7b\x2e\x2f\x83\xb9\x7c\x5c\x49\x63\xd7\x6c\xe8\x29\xa0\x5d\x80\xa1\xad\x58\xfa\x2a\x04\x57\x0b\xa7\x9f\x46\xa9\xf8\x52\x06\x09\x33\x46\x78\xc4\x5c\x88\xbb\x0d\xf9\x97\x79\x85\xe8\x96\xe9\xca\x62\x93\xf1\x91\x17\xd8\x1e\xd4\xa6\xa5\x24\xb6\x98\x9e\x6b\x5f\xce\xf3\x67\xee\x1b\x3b\x4b\x4d\x44\x24\x77\xb7\x50\xb7\xa2\xe6\x36\x4e\xd0\x02\xd1\x27\x35\xe3\xb4\x7f\xb1\x12\xde\x03\xfa\x00\xbe\x82\x90\xcd\x40\x11\xa3\x21\x68\xe6\x3a\x72\x40\xc6\x30\xf3\x13\x35\x22\x52\xc0\x1a\xa6\xcf\x5d\x9a\xc4\x9e\xc3\x10\xdb\x97\x70\x9f\xb0\xb4\x23\xbd\xe4\xa5\x84\xbc\xce\x2e\xf2\x09\x22\xb6\xfe\x19\x85\x4c\xa2\xa8\xfd\xa9\x29\xe4\x7e\xae\x8e\xb6\x9a\xf2\x11\xbf\x9c\xee\x42\x8b\xab\x20\x32\x00\xdd\xb6\xf9\x2d\xe3\x21\x73\x4e\xc4\x7b\xe6\x6e\x56\x99\xd7\x37\xd6\x42\x76\x92\xbd\x90\x1b\xcb\x11\x0e\xbb\x13\xf3\x19\xb7\x3b\xdc\x48\x4e\x4c\x5c\x5d\x21\xe9\x1c\xf3\x89\x72\x1f\xf9\x04\x8b\xc5\x49\xa7\x9c\x65\x2f\xc5\x4d\xa5\x5e\x64\x5f\x28\xe7\xd2\xee\x71\x44\x9b\x83\xe9\x57\xb9\x9b\x23\x28\x8c\x9d\xdc\x2f\x5e\x77\x98\x0e\xbc\x4a\xfb\x13\x1c\x06\x4f\x35\x18\x87\x6f\x15\x2d\x68\x2b\x26\xd0\x85\x9f\xcc\x47\x89\x9b\x85\xfb\x15\xc9\x24\xb4\x70\x8c\x6d\x47\xd6\x08\x07\x31\x4f\x28\x03\xc2\xa1\x32\x29\xf5\xb2\x70\x6b\x3a\x86\x76\x45\x78\x38\xfc\x1b\xfd\x88\xf0\x8c\xd7\x3e\xfa\x47\xe1\xc1\x49\x1e\xec\x31\x81\xb6\x8f\x86\xa5\xe8\xde\x35\x5f\xc0\x31\x6a\x7f\x18\xd1\x78\x91\xf6\x9d\x6c\x29\x61\x42\xf3\x88\xe9\x4a\x7c\xa3\xfe\x1b\x1d\x44\x5e\xa5\xba\x52\xea\x4a\xc1\x29\x4f\xa4\xa5\x53\xb5\x8a\x93\xe1\x31\x34\x9e\xfc\xaa\x97\x92\xa6\x93\x2f\x9b\xd4\xc3\xea\x10\xaf\xee\x09\x44\xff\x6a\xf9\xd8\xa4\xc0\x2e\xb1\x7d\xd0\x87\xe1\x36\x58\x1f\x49\xe6\xe0\x79\x0d\xd7\xe8\x61\x84\xb3\x75\x07\x91\x52\xd2\x42\x73\x5b\x71\x37\x19\x67\x64\xa6\x2e\xa1\xb4\xeb\xcb\xd6\x95\x53\x4d\xb5\x44\xaf\xf9\x54\x9d\xe6\xf1\xa4\xc7\xcc\x8f\x52\x4a\xd7\x62\xb4\x64\xf8\x4d\xa3\x1c\x43\x1c\xf8\x56\x9b\x80\x65\xf5\xbe\x13\x45\xe3\x0e\x75\x7d\xa1\x8a\x08\x2e\xed\x2f\xe1\xdf\x89\x88\x96\xb3\x45\x9b\x49\x47\x9a\x5a\x53\x5c\xc8\xdf\x1a\x68\x61\x16\xca\xbf\x96\xbd\x9e\xdd\x94\x53\x86\x36\x87\xb9\x4c\xb8\xbc\xa4\x73\x03\x7a\xc5\xb6\x7d\x0d\xdb\x30\xcb\xc7\xe5\x5a\x0e\x76\xcd\x48\xa0\x50\x88\xa3\x0c\x5c\xa1\x5c\xc1\x1f\xe9\x2d\x85\x97\x11\xe7\x75\x9e\x2d\x3c\x4e\xc2\xb6\xad\x4c\xee\x23\x77\xdb\xf4\x61\xe9\x14\x65\x23\xdc\x53\x45\xc9\x37\xf1\x1c\x62\x98\xce\x8a\x99\x1d\x26\xd4\xdd\x3d\x43\x0d\x73\xd0\x0f\x76\xa6\x6b\x9e\x60\x5e\x4e\xec\x13\x7c\xc4\xf9\x8c\xb9\x52\x72\xf1\xc8\xa1\x44\xd8\x6b\xc2\xf6\xbe\xbc\x42\x14\xc9\xb1\x2b\x37\x19\x4e\x0e\x6d\xcb\x08\x0b\xa0\x38\xdb\xc2\x3c\x1b\xc8\x3b\xcd\x37\x1d\x94\x0c\x91\x82\xde\xbb\x8d\x17\x0c\x49\xb2\xbd\xe6\xcd\xaa\xea\x34\xe8\xb8\xdf\x6a\xde\x4a\x63\x78\xce\xf0\x74\x86\x3b\xcf\x0f\x79\x12\x15\xc6\xdb\x84\x89\x2d\x01\x3c\x0a\xee\x4a\xca\x30\xaf\x8d\x88\x0a\x73\xe3\x5d\x23\x5f\x71\xcf\xe1\xcf\xa6\x9e\x00\xf9\x02\x33\x33\xa5\x77\x3a\xd7\xb1\xfa\xae\x2d\x95\x0b\xa0\x9f\xf4\xef\xb9\xd3\xe0\x3f\x24\x03\xdc\x08\xd4\x54\xba\x9e\x4b\xc0\x84\x21\x77\x72\x7b\x71\x35\xc5\x06\xee\x33\x42\x5f\x4a\x11\x2f\x80\xf4\x36\xf4\x32\x8f\x46\x9d\xe1\xbe\x82\x77\x94\x36\x02\xb2\x05\x68\xe6\xe9\x9e\x42\xf6\x3f\xf0\xa6\x26\x1b\xfb\x2b\x92\xa4\x4f\xe3\x2c\x45\x07\x4b\xec\x38\x48\xcc\x0b\xda\x17\xce\x4e\xdc\x19\x64\x10\xe7\x0f\x61\xa2\x78\x09\xb7\x80\x34\x92\x62\xcf\x1d\xa3\x8c\x84\x1a\x78\x53\x69\x7c\xf7\xe9\xbc\x42\xfa\x4d\x50\x2d\x58\xc5\x52\x74\xd1\x99\x47\xf0\xb1\x8d\xf7\x58\xee\x04\x4a\x6d\x0f\x8b\x47\x34\x8a\x1a\x59\x0f\x49\xd7\xa8\x07\xd8\xd9\x94\x00\xc4\x22\xf6\x3e\xaa\xae\x68\x0d\x27\x98\xf6\x2b\xb9\x80\xd3\xc3\x40\x87\xce\xe3\x7a\x30\xb7\x2f\xb9\xc9\xad\x61\x19\x81\x89\xaf\xe1\x14\x77\xfc\x45\xff\x4c\xc7\x37\x94\x30\x10\x8c\x05\xda\x70\xc6\x2d\xc6\x98\x30\x9d\x59\xc1\x2c\xa5\xd4\x33\x5f\xb3\x16\xc2\xe7\xb2\x18\xac\xc7\x85\x79\xec\xc9\xec\x9d\x9b\x06\xd9\x2d\x1c\x55\xc8\x20\xc7\x9b\x9b\xb0\xe4\x38\x27\x93\xbb\x15\x3c\xe4\x9d\xe5\xa5\xb7\xcf\xa6\x69\x04\x8b\xea\xb6\xd2\xbe\x09\x42\xd4\xa3\x74\xb2\x20\x8c\xff\x92\xe1\x2a\x48\x24\xe7\x33\xf6\x0a\xca\xa1\xbf\x99\xa5\x02\x55\x41\x39\xcb\x4e\xb0\x3d\xe9\x1d\xab\x57\xf0\x20\x24\x89\xbd\x56\x38\x79\xc9\x00\x3b\x5a\x38\xcd\x6e\x2d\xcf\x51\xe0\xd3\x52\x46\x61\x6b\x53\xcd\xe1\xd4\x39\x9a\x76\x65\x19\x75\xa7\xfa\x16\xf7\x24\x0d\xaf\xfa\x41\xa4\xd0\x83\x55\xbe\x35\x69\xf4\x57\xca\x9c\xbc\xf7\x8c\x41\x85\x20\xf1\x0e\x13\x2a\x1f\x5d\x5b\xcb\xfc\x20\xfb\xb8\x84\xc0\xbc\x25\xe3\xd9\x0d\x70\x67\x8a\xba\x9b\x7e\x90\x17\x35\x1d\x32\xbc\x25\x9f\xb3\x4e\x97\xc7\x51\x84\x0d\x71\xec\xab\xd4\x94\x3a\x12\x7e\x98\xb6\xc0\xdc\x5a\xb5\x93\xf6\xcc\x78\x32\xd7\x4a\xdf\xab\x7f\x99\x70\x84\xc1\xd1\xcd\x5d\x73\x90\x39\x49\x2b\x5a\x32\x97\x71\x5a\x7d\xd5\x7e\x0a\x27\x49\x72\xcf\xea\x4e\x52\xf7\xff\xa7\x9f\x41\x5e\xd4\x0b\x91\xc2\xc9\x97\xba\x0e\xb0\xe6\x52\x9a\x3a\x66\xe3\xe6\x51\x71\xad\x25\x95\x29\xb4\x44\x9b\x21\xa7\x82\xbe\xb8\xf1\x58\xfc\x6e\xfa\x9d\xba\x5f\xc1\xaf\x18\x45\xe6\x93\x8b\xeb\xe9\x5f\xf4\x1e\xf6\x21\xec\x31\x59\x6f\x63\x0e\x29\x76\xcc\xa4\x8b\x23\xdd\x19\x9e\x90\x74\x91\x75\x03\xfb\x98\x10\x4a\x7e\xef\x0e\x2c\x91\xea\xd3\xd5\x04\xd9\x4e\xfd\xda\x8e\xca\x7e\x48\xbb\xd0\x12\x1a\x9f\x4d\x57\x34\xcd\x0c\x6e\xa1\x7f\x6d\x58\xbd\x98\x44\xe7\x19\xfe\xb2\xcf\x61\x67\xcb\x73\x1a\x76\x11\xff\xec\x80\xd5\xf6\x90\xda\x27\x32\x24\xb3\xc8\x5b\xc6\xe6\x31\x6e\x51\xa6\x0f\x9d\xc1\x7c\xa7\x5c\xed\x87\x40\x32\xa9\x6d\xdd\xb7\xb2\x6b\x69\x98\x8e\x8c\xf8\x59\xf4\x45\x2d\xd7\x83\xe9\x74\xb6\xf5\xc4\x62\x26\xed\xa6\x69\x89\x7d\x3d\xeb\x94\xfc\x60\xd3\x90\x94\x03\x01\x86\x9b\x92\xfb\x55\x55\xf2\x1c\x49\x6e\xcd\x10\xfb\x98\xf8\x1d\xdc\x01\x4f\x11\x37\x20\x39\x55\x70\x71\x14\xfa\x6b\xae\x9b\xe8\x25\x4e\x1d\x4f\x15\x8d\x12\x5d\x82\x94\x22\x03\x39\x6f\x41\xb9\xe8\x21\x75\x26\x00\xa2\x93\x4c\x5a\x93\x8b\xa4\xb8\x9a\x65\x88\x17\x3f\x82\x9a\x64\x87\xc5\x3c\x78\x23\x3b\x56\x1c\x88\xec\xc6\x7d\x15\xbd\x40\x5f\xad\xfc\x28\xea\xc6\x4d\xca\x99\x10\x21\x09\x69\xf1\xab\x44\xf1\x24\x71\x50\x81\x28\x82\x22\x5a\xb0\x49\x64\xa0\xbe\x00\x40\xd4\xc8\x7c\x68\x45\x89\xa3\xe1\x0b\xf5\x6d\xa2\xd7\x88\x57\x32\x1f\x51\x1f\x6a\x9c\x35\x20\x22\x60\x50\x38\x82\x28\x1a\x97\x5a\xc9\x11\x4d\x21\x44\xe6\xa4\x0a\xef\x93\x36\xc4\x3d\x16\x9e\xa5\x04\x06\x2d\x17\x5e\xa2\xfe\xbb\x20\x52\xe4\x4b\x9f\x01\x80\xa8\x8c\xa5\x6d\xd8\x29\x24\xe0\x8a\x74\xb3\x85\xeb\xf1\x0d\x92\x6d\x42\x17\xc2\x61\x26\x4c\xf0\x87\x34\x0b\x9b\x2b\x78\x43\xa6\x40\xf8\x82\x1b\x94\x7f\xb3\x49\x82\x13\x34\x54\x5c\x8a\xe0\x0c\xfd\x4c\xe0\x45\xc1\x73\xe6\x8c\x05\x2b\x85\xab\x99\x67\x01\x10\x1e\xe3\xc4\xd6\x57\xf1\x6d\xb4\x25\xda\xdd\x7c\x23\xed\xae\xb8\x8c\x2f\xa7\x2b\x19\x6b\xf9\x6a\x46\x3a\x26\x9a\xdf\xc8\x74\xaf\xd0\xf2\x9b\x59\x8e\x59\xad\xfc\x4e\xd6\x87\x8d\xe3\xfc\x93\xec\xf3\x81\x54\xfe\x3b\x8e\x6e\xc1\x2a\xc1\x5c\xce\x6b\x00\x84\x93\x79\x73\x2d\xe3\xbc\x24\x5e\xa1\x26\x8c\xb7\x82\xa7\x17\x4d\xe5\x2d\xe6\x4d\xd0\x3e\xf1\x22\x79\x0f\xd0\xcb\x79\xe5\xfc\xc5\xe5\x26\x1e\x93\x8f\xd9\x72\x81\xd7\xc8\x3f\xb2\xd1\x97\x77\x5a\xe0\x1c\x18\xc5\xfb\x4f\x90\xb9\x20\x95\x77\x5f\x50\x04\x80\xc0\x8b\x7f\xcf\x54\xc6\x59\xa2\xda\xab\x7c\xc3\x49\x55\xe5\xf3\x2f\x72\xe8\xca\x53\x94\x4f\x9c\x21\xa5\x07\xb2\x98\xf3\x48\x41\x29\xfd\xcd\x5d\x24\xbf\x97\x89\xe5\x26\xc9\x63\x63\x17\x73\x75\xb2\xce\xd5\x7c\xee\x6e\x99\xfb\x02\x27\x2e\x51\xba\x15\x00\x7e\x82\x68\xbd\xfe\x29\xeb\x4b\x43\xaf\x7c\x80\xed\x5e\xef\xc3\x3d\xc0\xce\xb0\x18\xc9\x4e\x6c\xbd\xd9\x01\xde\xcd\xbe\x61\xa4\x96\x10\x39\xee\xfa\x27\x19\xde\x9c\x2a\x5d\x49\x8c\x03\xa7\x5f\x7b\x21\x60\x1b\xe7\xa4\xc6\x32\xbf\x95\x53\xa4\x62\x00\x1f\x9e\x50\x92\xa8\x5b\xc6\x9a\xdf\x7d\x5e\xfa\x94\x55\xd3\xb9\x93\x03\x58\x83\xed\x14\x22\x86\xf5\xa6\x75\x09\x6c\x2d\x3b\xdc\xb6\xb7\xd8\x97\x2d\xb5\x66\x6c\x9e\xc2\xbe\x54\xff\x28\xda\x99\x33\xcb\xa2\x5e\x75\x97\xe3\x61\x1a\x9e\xbf\x90\xad\xaa\xcd\x06\xb9\xdc\xfb\xd2\xf7\xb5\x41\xcc\x77\x43\x5e\xd2\x79\xac\x80\xfe\x83\xec\x14\x16\xbe\x37\x90\x70\x94\x35\xd6\x25\x86\xda\x58\x1f\xda\xcf\x14\x75\xb0\xa3\x5b\x7e\xa6\x37\xb2\x15\xb6\xf0\x0d\xfd\xec\x83\x8d\xe6\x55\x2a\xf6\xc1\xba\xdd\x6e\x2f\xd9\xae\xba\x7b\x80\xce\x65\xcb\x1a\xb5\x70\xe6\x8d\xf1\x09\x09\x86\xf9\x67\x74\x11\x6b\x2f\x2b\x74\x28\x8b\x90\xc0\x42\xf7\xc3\xa1\x41\xac\x9e\x1e\x78\x51\x22\xeb\x59\x67\x56\x7a\x36\x7b\x55\x5b\xdc\x06\x0c\x3b\xaf\xb9\x78\x55\x31\x3b\xa6\x71\xae\xdb\x4b\x16\xca\xe0\x02\xba\x38\x5f\xe5\xf6\xca\x06\x43\x0a\x24\x46\xb0\x5d\xf7\xbc\x8a\x49\x77\xab\x1d\xac\x19\xc2\x8c\x6a\x0d\xb0\x37\x95\x16\x0d\x07\x59\x98\x77\x5e\x0d\x41\x9f\x4d\xfe\x5b\xb5\x05\x97\x17\xd1\xa6\xac\x26\x1c\xf7\x7b\xa2\xb8\x4c\xfa\xc7\x65\x40\xe9\x47\x89\x02\x40\x7a\x84\x35\x49\x69\xaf\x8f\xaa\xce\x13\x04\xd5\xfe\x81\x16\xd0\xba\xb5\x77\xe0\x99\x98\x04\xcd\x6d\x64\x76\x65\xb0\xfa\x0e\x9a\x96\x47\x53\x5d\xc2\xf6\x26\xd7\x2a\x2f\xe3\xff\x8b\x40\x2a\x3e\x91\xdc\xfc\xce\x2a\xa8\xe4\x77\x2e\xdd\x8a\xf3\x94\xef\x00\x48\x8d\xac\x54\x45\xa5\x6e\x0d\xcc\xcc\x6f\xa9\x5d\x80\xa8\xa1\xf9\x6b\x67\xa0\xbc\xd0\xe7\x34\x3e\xe8\x3b\x90\x63\xea\x70\xec\x81\xbc\xb9\xaa\x28\xfc\xf6\xe4\xf5\xca\x14\xe2\xfe\x88\x10\x85\x90\xdc\xe5\x37\xaa\x98\x4a\x8d\x71\x19\x51\x14\xd0\x66\x03\x20\xcd\x62\xdd\x90\xfd\xad\xb5\x61\x83\x78\x69\x9a\x3a\x9c\x98\xf2\x55\xdd\x87\x3f\x8a\x3a\xac\x3a\x4f\xf4\xa8\xf8\x5b\xf9\x89\x64\xcc\xdd\xa4\x74\xa1\xcc\xdf\x54\xab\x08\xa1\x0e\x85\xef\x92\xf3\xe8\xb3\xfc\xb8\xf2\xf9\x8c\x24\x97\x4b\xf2\x0d\x8c\xd3\x00\x48\x3a\x38\x45\x52\x9b\x66\x32\x25\x86\x3b\x53\x3d\x9f\xba\x8c\xbc\x5b\x15\x44\x7d\x8d\xec\x54\x62\x68\x97\xca\x1f\x28\x86\xe8\x27\x73\x10\xf2\xbf\x19\x97\x92\x2e\xc8\x5d\x98\x8f\xc2\xa3\x64\x6c\xd6\xdf\x7e\x31\x32\x77\xf6\xa8\xcb\x03\xd9\x42\xf6\x57\x00\xc4\x2f\x78\x53\x25\xa5\xaa\x09\xf6\x4b\xf6\x45\xe5\x6e\x4e\x04\x49\xa5\xf8\x8b\x43\x45\x98\x15\xde\x9c\x1b\x65\xff\xc8\x19\xdc\xf8\x6c\xbd\x6c\x2f\xf7\x7c\xd2\x14\xe9\x77\x5e\xce\xba\xa3\x52\x0e\xef\x8e\x9f\xb3\x74\x09\x3f\xcb\x75\x92\xe4\x11\x9f\x09\x80\x78\x15\x7f\x4c\x14\xac\x38\x21\xcf\x61\x5e\x90\x7f\x96\xcf\x24\xf4\xcb\xd7\xcb\x06\x61\x77\x65\x2d\xb2\xb4\x52\x8c\xcc\x5e\xfa\x29\x2b\x4a\x5a\x22\x1d\x4c\xf8\x28\x19\x97\xc2\xc3\x9e\x4b\x22\xa4\xbe\xbe\x2a\xf1\x55\xa9\x93\xcb\x3b\x31\x46\xb2\x0e\x00\xd1\x32\xe1\x2d\x41\xb8\x9c\x64\x3a\x41\xff\x24\xdb\x65\xdc\x87\x7b\x23\x9b\x67\x50\x42\xb7\x48\xf9\x7a\x68\xf1\x6f\xc9\x3b\x5d\x6c\xe6\x0f\x49\x49\xad\x57\xfc\x53\xf1\x59\xed\x94\x30\x17\x71\xaa\x66\x92\xcf\x4b\xd1\x65\x35\xcc\x65\xa7\x28\x55\x11\x05\x80\x30\x57\xdc\xc9\x23\xcb\x7a\xdb\x26\xd1\xd2\xa5\x3f\x5b\xf2\xb1\x44\x69\xb1\x4d\x52\xfd\x3f\xc9\x05\x6b\x7f\xd1\x5e\x49\x5c\xc3\x85\x8c\x1b\xe2\x3d\x75\x6f\xe2\xde\x88\x83\x2c\x3e\xa1\xc1\xa2\x41\x93\xc8\x67\x99\xc8\xd3\xd0\xe4\x92\x28\xa4\xab\xf1\x00\x08\xc6\xa5\xf3\xb8\x3d\xb2\xea\xee\x9b\x54\xa3\x74\xa2\xf3\x19\xe6\x84\x74\x6e\xfb\xb5\xea\x8d\x12\x79\xeb\xd6\xa2\x35\xe2\x8f\xcd\xb5\x19\xe5\x62\x5c\x13\x2c\x4e\x2d\x7a\xdc\x58\x10\x72\x5d\x94\x5b\x2f\xf0\xbe\x22\xdc\x6d\xf6\x72\x59\x22\xf8\xa5\x39\x00\x80\x20\x57\xda\xc1\xf9\x2e\x5b\x31\xf0\x93\xf2\x4d\x4a\xee\x7b\x88\x89\x95\x5c\xe8\x69\xa9\xba\x24\x09\xed\x4a\x2b\xbc\x20\x6e\x69\x7f\x93\x31\x45\xec\xda\x6a\x88\x4b\x16\x49\x9a\x73\x43\x5a\x84\x8f\xac\x67\xbd\x3b\x85\xc1\x75\x4b\x5c\x3c\x05\xb9\xda\x6b\x00\xf0\xaf\xc8\x00\xcd\xd2\xfc\x02\x32\x82\x6b\x68\x7a\x57\xf5\x00\xfa\xc7\x3a\x09\xea\x54\x7a\xa4\xc1\x17\x1e\x9a\xfd\xa4\x2e\x15\x29\x4f\xa6\x98\xab\xd0\xff\xad\x7f\x62\x54\xe3\x10\x81\xce\xfa\x6f\x84\x9d\xee\x58\xbd\x3f\xa9\x69\x6a\x6b\xad\x0f\xa5\x1b\x00\x45\x0a\x7b\x06\xcd\xbd\xd9\xa3\x9a\x8d\x8b\x68\xf2\x86\x52\xa0\xdb\x1b\x23\xe0\x55\xa5\xac\x7a\x32\x32\x3f\xbb\xd3\x32\x8a\x46\x27\x47\x98\xae\x61\xad\xeb\x77\x18\xa7\xe2\x6f\xad\x7e\xa3\x57\x10\x9f\xb8\xe3\x74\x07\xc8\xca\xa9\x87\xb5\xc7\xa9\x69\x00\x28\x66\xb2\x57\x52\x9b\x6c\x79\x30\x0a\xf6\xbc\xb5\x10\x11\x0a\x2d\x6b\xc0\x20\x5f\x94\xfa\xd5\x1d\x47\x77\x67\xe7\x5b\x66\x60\x25\x9b\x3e\x9b\x62\xf0\xdc\xf5\x02\x03\x9f\x28\x59\x7d\x55\x3f\x9d\x9c\xe7\x8e\xd1\x25\x51\x0e\x4d\xbd\xab\xcd\xa4\x6d\x01\x40\x7e\x8a\x6d\xa0\xe0\xad\xc7\x30\x68\xcc\xa9\x86\xd7\xd8\x0b\x35\xac\xfa\xe5\xf8\x25\x25\x10\x0b\x97\x20\xcc\x1a\x36\x5d\x22\xfe\xde\x54\x6d\x74\x25\x5b\xd6\x3b\xea\xab\xa8\xa1\xab\x45\xb5\xbf\x69\x06\xf7\x9a\xda\x68\xfa\x80\xb3\x8b\x26\x9a\x69\x07\x80\xdc\x8d\x73\x87\x7c\xb8\x31\x9a\x74\x18\xfd\xb4\x9e\x45\x3e\x5b\xcd\xb3\xec\xa5\x8c\x17\x73\xcd\x4b\xa9\xc3\x5b\x1e\x19\x15\xb4\x43\x49\xdb\xf4\x7f\xd3\xff\x8d\x22\xeb\x22\x98\x0b\x57\x07\x6b\x5f\xb0\xfc\xdd\xf3\xb5\xde\x6c\xe0\x1c\xaf\x76\xe3\xac\x06\x40\x96\xc5\x2b\x27\xb1\xeb\xbf\x30\xf7\xa3\x4e\xd6\xf9\xb1\x56\x57\x31\xcc\x70\x96\xa1\x48\x65\x7c\xc4\xf6\xda\xe2\x62\xc8\x61\x1f\x49\xfc\xaa\x9b\xe0\xd0\x23\xaf\xd7\x2e\xe2\xae\x0b\xb8\xa2\xb9\xcb\xfd\xcf\x3d\x5e\xe3\xca\x33\x3b\xb3\x94\x6f\xf9\x61\x00\x48\xd9\xfc\x3b\x84\x1d\x75\x53\x24\xc1\xc8\x48\x33\x54\x32\xaf\xd2\xd3\x78\x56\xfc\xba\xb0\xc8\x90\x2d\xbe\x96\x39\x49\xf7\x97\xf8\x6c\xe2\xcc\xda\x34\xf1\x85\xc8\x05\x9a\xa3\xe2\x7b\x01\x99\x6a\xa9\xf8\xab\xbb\x83\xaa\x43\x12\xe6\xdc\xaf\x40\x89\xbd\x00\x90\x60\x84\xfb\xf1\x4b\xcc\xdb\x75\x74\xf8\x49\x93\x67\xed\x68\xc5\x88\xa1\x47\x7b\xb1\xc0\x5d\xbf\x42\x3b\x6b\xf3\x8b\xda\x1d\x9a\xbc\x84\x79\xda\x68\x75\x67\xc4\x26\xf5\x49\xf5\xa4\x55\xdb\x54\x62\x95\x66\x49\xbf\x52\xad\x5a\xed\x3c\x2c\x5f\x2f\xc3\x02\x20\xd6\x89\x63\xb0\xf7\x4c\xb7\xad\x2a\x18\xc3\x98\xd2\x18\x5d\x2e\xd2\x1f\xad\xbf\x9d\xf7\x45\x57\x58\xc7\x49\x7f\xa1\x7d\x66\xf1\x8f\x5f\xab\x11\x99\xee\x87\x2b\xd4\x0b\x8d\x7b\x56\x39\x29\x2f\x18\x2e\x2e\x71\x50\x1c\xd7\x4d\x73\x66\xcb\x0a\x94\xb3\x00\x10\x3d\x93\x50\xb1\xa1\xa6\xea\xd6\xff\x41\x1f\x18\xfe\x69\x29\x2a\x7b\xa7\xc7\xd8\xf6\xe6\x31\x6a\x7f\x35\xf9\xa6\x73\xb4\xb5\x8d\x0d\x71\x57\x35\x2b\x1a\x16\x84\x87\xab\x4e\xd6\x5d\x58\x79\x48\x89\xb3\xf8\x2d\x3e\xaa\xc8\x33\xcc\x74\xae\x90\xde\x56\xad\x04\x40\x54\x2b\xf9\x07\xd3\x6d\x7c\xd7\x55\x07\x85\x18\x84\x1d\x2f\xca\x04\x7a\xd7\x76\xbf\xbc\x79\xb5\x2d\xad\x98\xf4\x55\x5a\xbf\xe6\x3d\x71\x06\xf5\x11\xdb\xa2\xf0\xc9\xaa\x72\x6b\xcb\xca\x06\xc5\x87\xfa\x6b\x8b\x3b\xe4\x87\x8c\xa3\xce\x18\xe9\x1a\xb5\x3b\x00\xa2\x69\xd2\xf8\xea\xfb\x83\x4e\x95\xa4\xd2\x03\x7d\xe9\xd5\xcc\xbc\xb9\xdd\xdd\x50\x66\xfa\xad\xce\x25\x70\x75\xc2\x9c\x36\x0b\xf2\x70\xe4\xb9\xe6\xef\x98\x59\x41\x8c\x26\x01\x0e\xeb\xed\xd4\x28\x27\x0c\xcc\xe1\x36\xbc\x26\x6d\x99\x74\xcb\xb8\x8c\x86\x07\x40\x25\xe2\x78\x54\xb7\x0e\xa4\x54\xbf\x2b\x55\xf4\xea\xa0\x67\x72\x5f\x75\x3d\x87\xdb\xd2\xc7\x3b\x28\x48\x7a\xfc\x9b\xd6\x1f\x68\x6a\xe4\xd6\x66\x2c\xd6\x10\x04\xb3\x7e\xc3\xef\xf2\x76\x6a\x9c\x4c\xdc\x35\xa7\xbe\x01\x4b\xf6\x72\x00\x86\x43\xb4\x97\x00\xa8\xa2\x39\x8b\xaa\xb3\xfb\x35\xb0\xe6\xd2\xe4\x9e\x2b\x88\xf4\xdc\xf1\xae\x40\xe4\x8b\x74\x5e\xfb\x19\xb4\x21\xfe\x68\x6b\x19\x16\x12\xa9\xb1\x5d\xc7\x6f\x0e\x4a\xb7\xa2\x89\x71\xde\x93\x1a\xf8\x64\xe7\x39\xa3\xf5\x77\x29\xf1\x0e\x7e\x86\x64\xfa\x79\x00\x94\x2f\x38\x35\x55\xa4\xde\x37\x18\x8f\x12\x43\x37\x04\x5b\x93\xeb\xde\xf1\x00\xd7\x95\xf6\xa3\x4d\x44\x70\x8a\xcf\x6f\x59\x4a\x54\x44\xae\x6d\xea\x21\x7b\x04\x39\x37\x26\x50\x0e\x2c\x7b\x52\x5f\x42\x5b\x36\xe7\x5a\x5d\x0f\x7d\x81\x03\x51\x1f\xc2\x0a\x00\x40\xb9\x82\x4b\xaf\xfc\xd9\x43\x24\x5e\x28\x01\x9d\x9f\x48\xf7\x72\x08\xed\x12\xf2\xa5\xb4\xca\xd6\x10\xca\x9d\xb8\x2b\xb6\x07\x34\x10\x71\xcc\x4a\xa0\x87\x05\xee\x6c\x70\x61\x50\x97\x9d\xae\x0b\x64\xb6\xce\x79\x6f\x29\x67\xe1\x1c\xf6\xeb\xa6\x72\x2e\x01\xa0\xc8\xe2\x5d\xae\xcc\xea\x5e\xc6\xf0\x2d\x4e\xe8\x18\x60\xec\xcd\xde\xdb\x16\xc5\x8c\x49\xdd\xdf\xfc\x85\xf9\x32\x2e\xa1\x69\x8c\xb5\x35\x62\x73\x63\x12\x5b\x12\x58\x52\xf7\x8c\x53\xb1\xac\xcd\x32\x85\x9b\x31\x77\x8a\xd9\x83\x37\xd9\x71\xba\xf6\x01\x3f\x17\x00\x39\x49\xe0\x57\xb1\xbd\x13\x2d\x6c\x2e\x9a\xdd\xf6\x41\x38\x91\x75\xa3\xa5\x41\xb8\x3f\xe5\x9d\xad\x52\x78\x67\x63\x9d\xd5\x5b\xe4\x12\xbe\xaf\xfe\x9c\x28\x6b\xf5\x1b\x0b\x4f\xd4\xb5\x8c\x64\x52\x8a\xbd\xe7\xfa\x1b\x61\x62\xb9\x23\x46\x53\x24\x92\x02\x20\x4b\x11\x9e\x29\xdf\xde\x7e\x43\xbd\xb3\x70\x61\xab\x4e\x1d\xb3\xe5\x63\x73\x9a\x6a\x67\x8a\x6f\xd3\x12\x55\x5c\xec\xfd\x86\x57\xca\x7f\xc2\x7d\xea\x3a\x95\xc6\xd5\x64\x33\x42\x59\xb1\x6c\x95\xb1\x5c\x29\x99\xbb\xcc\x30\x5b\x11\xeb\xd8\xaf\xf6\x96\x7a\x03\x20\x85\x8a\x1d\xcb\x8e\xb6\x8d\x59\x5e\x17\x2c\x6f\x11\x9b\x1f\x6c\x99\x64\xcb\x30\x5d\x49\x4e\xb7\xfa\x1a\x1f\xc6\xfa\xd4\x7f\x36\x3a\xaf\x63\x5b\x4e\x18\x36\x07\xbc\x30\xd9\xf4\x17\x97\xee\x37\xa8\x74\x47\xe7\xdc\xd0\x2f\xd6\x38\x3b\xee\x56\x05\xca\xd3\x01\x90\x6c\x93\x4c\x2e\xdb\xd8\x16\x6f\x3d\x94\xbf\xb3\x65\x7a\xa3\x2c\xd3\xd6\x74\xb7\x21\x6d\xd3\xcb\xc6\x6d\xf5\x41\x31\xd7\xeb\xc5\x75\x6b\xd6\x85\x5b\x8a\x2c\x45\x01\xdb\x4d\x61\x66\xe3\x52\xb3\x61\x81\xb1\x64\xce\x01\x9d\x49\xdb\xe7\xb8\x5b\x39\xa4\x08\x01\x40\x92\x2f\x81\x97\x5e\x6a\xfd\xbb\xe5\x57\x7e\x5e\xb3\xad\x79\x28\x33\xa5\x09\x69\x2b\xd8\x34\xd4\x18\xde\xe4\x1b\xd3\x5e\x6f\x67\x9d\xbf\x6e\xa6\xf9\x76\x63\x60\x80\xd5\xb8\xbb\xbe\x71\xa9\x42\xaf\x34\x33\xe7\x1c\xab\x7d\x58\xfb\xc7\xf1\xbe\x72\x92\xd2\x09\x00\xf1\x55\xc9\xb1\x12\xe9\xf8\xe4\xca\x4f\xb9\x6d\x23\x8b\xab\x6f\x6d\x5e\x3b\x18\x09\xdd\x91\x98\xdd\xc7\x86\x0f\xaf\xff\xd2\xbd\x17\x79\x2e\xc4\xa7\xe3\x29\xc6\x71\x45\x6a\x5b\x34\x2e\xd5\x1d\xd6\x12\x43\x20\xce\xdc\xd1\xec\x4b\x8a\xb0\xa3\x9b\xfe\xa2\x97\x02\xa0\x96\x70\xd8\x25\x55\x63\x89\x35\xe5\xb9\xc2\xe1\x0a\xd8\xec\xcd\x0b\x06\xe4\xf0\x23\x89\x11\xbd\xd7\x90\xb2\xf5\x8f\xba\xbd\xd0\xf8\x90\xf9\x1d\xb9\x58\xc6\x8a\x4d\xad\xe3\x78\x85\x3b\xae\x79\x27\x91\x38\xf3\xa6\xcd\x46\xfa\x66\x57\x67\xc2\xd0\xf7\x01\xa0\x8e\xe0\x60\x4b\xd6\x8e\x4a\x60\xef\x73\x0b\x86\xda\x11\xbc\xf4\xb7\xfd\x97\x91\x7f\x12\xdd\x7a\x57\xa0\xb5\xeb\x8f\x77\xf1\xb1\xa9\x21\x76\xed\x7b\xf1\xbe\x2b\xa2\x5a\x17\x11\xa7\xb8\xd3\x9a\x97\x91\xf6\xcd\xfc\x64\x03\x94\xb9\x76\x3b\x8c\xaf\x18\x42\x00\x54\x0f\x38\x03\xc5\xdd\xc3\x6f\x30\x41\x39\xd7\x07\x03\xb0\x65\xe9\xfc\x3e\x06\x4e\x92\xb0\xa3\xfb\x0e\xfe\xee\x7a\x7a\x67\x34\x31\x77\xed\x89\x36\x31\xe9\xe1\x8a\x79\xcd\xff\x52\x68\xee\xa4\xa6\x57\xd4\x4b\xb3\x56\x5a\x77\xd2\x5e\xda\x7d\x37\x5c\x61\x75\x03\xa0\x72\xe5\x0e\x15\xc7\x0c\x95\x13\x4f\xe7\x94\xf6\xef\x21\x8d\xa5\x7d\xef\x75\x27\x2b\x13\x36\x76\xe9\x28\x86\xf5\x73\xda\xbf\x53\xb7\xaf\x65\xb4\x26\xd2\xfe\x5d\xfe\x8f\x6d\x90\xb1\xd4\x9d\x6c\xed\x63\x66\xce\x2a\x6a\x2c\x62\x65\xd8\x67\xea\xbb\xb9\xb3\x00\x50\xae\xe6\x7d\x29\x62\x0d\xba\xd0\xf7\x66\x6f\xeb\xc3\x32\x12\xd3\xb0\xdd\xd7\x19\xe7\xe2\x8f\x77\x66\x31\xf9\x51\x03\x6d\x27\x59\xe9\x6b\xbd\x5b\xe6\xb0\x3d\x97\xf7\x36\xd1\x39\x76\xee\xa8\x46\x0c\xd7\x6e\x96\xa0\xc1\x8e\xfb\xd3\xbe\x57\xc7\xe5\x57\x02\xa0\x48\x12\x24\x14\x2a\xfa\x8b\x05\x37\xb3\x5e\xf7\xec\x10\x3c\x49\x3d\xd1\xe5\x27\x78\x15\xbf\xaa\x7d\x5c\xe8\x1e\x15\xd8\x1a\x20\x84\xaf\x39\x62\x53\x0b\xf7\x2d\x47\x36\x7e\x11\xad\x70\x47\xd4\x9f\x17\xfd\x35\xeb\x4c\x9d\x8f\xd8\x71\xd2\x1c\xed\x5b\x51\x2c\x00\xf2\x85\xc2\x23\x05\xe7\x7b\xc7\x54\xe2\xac\xf0\xee\x48\x95\x5d\xaa\x47\xc7\x19\x25\x37\xae\xa9\xad\x50\xe9\x13\x39\xd2\xfc\x40\xf1\x72\x4d\x51\xd3\x66\xc5\xd1\xe5\x8b\x1a\xce\x2a\x8e\xba\x67\xd6\x29\x94\xae\xb3\x3e\x98\x87\xe4\xc1\x93\x2a\x35\x7b\x25\x66\x00\x64\xab\x45\xff\xcb\x7f\xde\x23\x31\xaf\xda\x02\xef\x9a\x67\x0a\x48\x81\xb4\x8f\x18\xd7\x6c\x7c\xdd\x1a\x67\xc0\x47\xce\xb7\x5d\xd2\x9f\x0f\xfe\xcb\x9a\xaf\xcf\xf6\x1f\xab\x7f\xa1\x9f\xee\x3e\xc9\x62\xad\x95\xce\xba\x67\x52\xa9\x74\x93\x94\xea\x23\x32\x19\x00\x52\x91\xf8\x64\x3e\xbb\x67\x66\xc3\xc9\x2d\x8e\x9d\xd6\xfa\xe6\x94\x19\xed\x01\x75\xec\x8d\xdd\x2d\x87\x2d\x96\x88\xbb\xb6\xcd\xe6\x1b\xc1\x5d\x8d\x7f\x9b\xb7\xf8\x2b\xeb\x19\xa6\xc2\x25\xaf\x2c\x8b\xf5\xe7\x66\xdd\x35\xbe\xd1\xd8\x4d\xea\x57\xaf\x97\xc3\x01\x90\x7a\x48\x02\xf3\xe7\x77\xb7\xd9\xae\x66\xee\xe8\x74\x6f\x32\x25\x5f\x68\xeb\xb3\x96\x6c\x24\xb7\x84\x36\xc2\x22\x76\x34\xed\x6b\xe8\x09\x56\x36\x66\xd6\x9f\xf4\x67\xd7\xbd\xae\x03\x4b\xde\x9a\xb9\xc6\xa1\x59\x5f\x8c\x81\xda\x98\x49\x7f\xa9\xea\x14\xcb\x01\x90\xb4\x4a\x64\xb9\xb4\x1d\xfe\x55\xfc\xcd\xb6\x09\xdf\x9a\x90\xa4\x94\xb1\xd5\xd0\x27\xd1\xad\xc3\xf9\xf0\xfd\x61\xaa\x01\x3e\x72\xef\x6a\xc7\x5e\x03\xfa\x86\x37\xa7\xeb\x1e\xf6\xe3\xfc\xaf\x9d\x93\xf1\x1f\x9d\xb7\xb7\x55\x92\x52\x00\xb0\x14\xd0\xef\x02\xa0\xa9\xe6\x98\x72\x71\xdb\x21\x35\xb7\x37\x1b\xb7\x22\x61\x95\x49\xeb\x47\xf9\xf0\x47\xd1\xe6\xa1\x51\xa4\x22\x4c\xdc\x7f\x0f\x9d\xb3\xda\xa9\xe7\x33\x36\xc6\x5b\xd6\x95\x8c\x0f\x58\xe0\xd2\x41\x24\xbc\x77\xbe\xd5\x7a\x81\x0c\x00\x30\x3f\x65\xac\x01\x40\x33\x9b\xc3\xcf\x2d\xdd\xd6\x00\xaf\xda\xcc\x19\x1f\x46\xec\x4f\x5a\x36\x72\x0e\xe5\x16\x2d\x18\xb2\x43\x4b\xc2\xc8\xfd\x11\x58\xef\x80\x9f\x3d\x05\xb8\x27\xde\xf2\xce\x01\x42\xdf\x02\xdf\xf6\x0b\xa4\x18\xe7\x6f\xad\x2b\x29\xf3\x01\x30\x43\x18\x0f\x01\x50\x6f\xe5\xec\xca\x5d\x34\xe1\x88\x41\x6d\x5e\x33\x16\x84\x25\x24\x5e\x1b\xae\xc1\xd1\xa2\x37\x0c\x0c\xe0\xf7\x84\x45\xf7\xbe\x21\xba\x07\xdc\xee\x9e\x4d\x6a\xf0\x66\x76\xc0\x28\x73\x16\xac\x6f\xe3\x52\x4b\xa7\xad\x6d\x3e\x47\xfb\x02\xd6\x98\xc2\x59\x0f\x01\x50\xdd\xe0\x4e\xe4\x1c\x1b\x2f\x25\xfe\x48\x3f\x3f\x32\x4e\x1a\x49\xa4\x0e\x4d\x21\xd7\x6c\x78\xd1\x5f\x44\x29\x0b\xfd\xd1\xd3\x43\xa5\x06\x0c\x76\x9e\xa3\x59\xbd\x6b\xda\xe7\xd3\x8f\x2e\xc8\x6c\xf5\x64\x3c\x99\x06\xb7\x95\xb0\xa8\x80\x6a\xf8\xc9\xf5\x07\x40\xf9\x8c\xf7\x2d\xfb\xd1\xd8\x2c\x7a\x7d\x7a\xd8\x30\x94\x31\x2b\x71\xd6\xc0\x01\x86\x62\x83\xa9\x6f\x1e\x33\x24\x74\xa2\x1b\xc5\xfc\x15\x40\xeb\xd0\xb2\xce\x7a\x6f\x6a\xbd\xca\xee\x5e\x50\xdc\x7c\x8e\xd3\x3b\xcd\x6a\xfd\x8f\xe7\x0c\x76\xe8\x2f\xf2\xf3\x01\x50\x02\x41\x4c\xb6\x75\x24\x47\x80\x4d\xbb\x39\xd8\x2e\x40\x26\x74\xf4\xfd\x14\x94\x6f\x08\xed\xa9\x10\x98\x42\x11\x9d\x7b\x04\xff\x06\xc4\xb5\xbd\x16\x26\x7b\xaf\x6d\x89\x14\x1e\x5b\x20\xb2\x4d\x16\x69\xa6\x83\x86\xcf\xa2\x3a\xbb\xf9\xba\x08\xe1\x4f\x00\xe4\xa7\x85\x7d\xd9\xcb\x86\xd4\xca\x7d\x69\xd5\x03\x53\x94\x3e\x09\x21\xbd\x4a\x85\x79\xfd\xb5\xae\x77\x8a\xcc\xd0\x05\x1d\x79\x8a\xe0\x00\xa7\xd6\x46\x85\xaf\xf7\x6c\xdb\x5b\x45\xf6\x02\xb3\xb5\x55\x51\x36\x7d\x73\x7d\xa5\x2c\xdd\x0e\xa6\xfd\x25\x59\x02\x80\xec\x6f\xd1\xee\xac\xb4\xc1\x7c\xe3\x93\xd4\x89\xbe\x73\x86\x07\xf1\xbd\x3d\x69\xfa\x37\xeb\x73\x3b\xf7\xea\xd3\x43\xfa\xdb\xbd\x75\xb7\x56\xf5\xb4\x88\x75\xd6\x65\xc7\x9a\x3e\xe9\x02\x17\x60\x1b\x0d\x5a\xdf\xe9\x90\x3a\x2f\xe5\x16\xbb\x7a\xad\x9d\xf4\x01\x00\xb2\x00\xb1\x79\xcb\xeb\x81\x9b\xf5\x19\xa9\xd0\xbe\xb8\xba\x65\xf1\xc8\xee\x1d\x96\xe9\xeb\x3d\x3b\x7d\xcd\x99\x21\xbc\xb6\x5a\xd3\xb9\x55\x92\xe6\xcf\xa6\xf2\x65\x03\x4d\x54\xa3\xcb\x02\x44\xa3\xbd\x6e\xe5\x74\xaa\x85\xa1\x6a\xb7\x9b\xd0\xb0\x65\xa3\x00\x48\x2f\x8b\xdf\x6e\xb1\x0e\x94\x35\xad\x48\xf5\xeb\xdd\xd5\xf8\x22\x3e\xaa\xdb\xbd\xe1\x58\xd4\xaf\x0e\x45\x83\x5d\x08\xa2\xf5\x45\x3d\x63\x15\xad\xb9\xa8\x0e\xbe\xac\xdf\x7a\xd7\x8c\x58\xc0\x6d\xc8\xd1\xdf\x9c\xde\x66\x1e\x56\x1f\xb5\xbb\xaf\xbe\x29\xaf\x04\x40\x9a\x2b\x09\x9d\x18\x82\xce\x28\xa4\xf5\x6e\x83\x19\x4a\x70\x4d\x49\x88\xc9\xe5\xf9\xb5\xb3\x91\xbd\x95\x35\x02\x27\x74\x79\x8d\x9c\xe8\x87\x5d\x07\x97\x43\x9e\xe3\xfd\x51\x96\x8c\xa7\xc4\x15\xd8\x5b\x91\x6a\x32\x20\x3c\xf4\x1a\x25\x9f\x21\x4f\xb5\x2b\x62\x91\xa9\xdb\xb7\xee\xad\xce\x2e\x55\xf4\xdc\xad\xf9\x5d\xb1\xcc\x2a\x82\xf5\x56\xee\xd4\x56\x23\x70\x35\x14\x3e\x1a\x95\x01\x4f\x20\x34\x63\x52\x90\x1f\x20\x14\x5c\x09\x66\x24\x83\x47\x60\xe1\x8d\x91\x01\x24\x18\x29\xda\x8b\x48\xf6\xa5\xcc\xb0\x4b\x64\xad\xa0\xb1\xc6\xf7\x57\xb6\x43\x0e\x75\x7f\xab\x26\x57\xfd\x69\xdc\x06\x4d\x81\xc6\x6a\xfa\xe0\xeb\xe0\xa3\xbc\x93\xc8\xf5\xa8\xd5\x84\x99\xe8\x42\x8c\xba\xe2\x07\x56\x81\xfb\x90\x31\x17\x7f\x98\xc8\x8a\xf8\x8b\x78\x80\x7c\xc6\x6b\x3d\x89\x4c\x4d\xb1\x8b\x66\x5e\xa2\xd3\x47\x8f\x97\xeb\x90\x9c\xae\xe5\x90\x66\xf4\x92\x06\x97\xaa\x93\x98\x56\xf5\x9a\x9a\x0f\xb8\x0a\xae\x00\x1e\x42\x58\x83\xfb\x80\x94\x13\xdf\x55\xb8\xa2\x5f\x92\xf7\x6e\xce\xc0\x65\x52\x55\x11\xa1\x84\x1a\xba\x9f\xe7\x3d\xc2\x77\xc6\x62\xbb\x54\xe6\x54\xe6\xd8\xf0\x70\xc9\x7e\x52\x65\x07\xb4\xdc\x81\x5c\x51\x47\x84\x54\x50\x92\x94\x07\xaa\x8e\x53\x4b\x39\x51\xd0\x8d\x34\x31\xf6\x36\xfc\x04\xbd\xa5\xdc\x0f\x55\xc2\xd8\x93\xae\xc5\x3c\x64\xde\x0d\xef\xc4\x4f\x65\xdd\xf4\x34\xe2\x59\xec\x4d\x76\x42\x46\x30\xfb\xd7\xe0\xed\x22\x77\xf6\x89\xb6\xc6\x92\x76\xce\x0a\xf3\xe5\xf2\x10\x4e\x91\x22\x15\x72\x9e\x73\x80\xf5\xa9\x9a\xcd\x5d\x8b\x39\x0c\x0b\xe0\x36\x97\xc5\x22\x9e\xf3\x9c\xd2\x2e\xa3\xf5\x3c\x4a\xb8\x1b\xf6\x38\xef\xb8\x27\x0c\x37\x99\xd7\x67\xb7\x8b\x8e\xe2\x05\xf5\x3b\xe5\x17\xaa\x04\x2d\x53\x0a\x5f\x28\xaf\x1b\x21\x25\x6a\xa5\x97\x6c\x66\x79\x91\x82\xce\xf8\x5c\x19\x29\xbf\x8e\x76\xa8\x71\x97\xfb\x94\x5c\x86\x4f\x95\x61\x53\xc7\x91\xd7\xa5\x5b\xd7\x65\x61\x16\x49\xde\x79\xce\xc7\x64\x48\xbc\xed\x7d\x69\x34\x61\x48\x0f\x39\xe7\x81\x75\x59\x53\x53\xfe\xd9\x86\x22\xbd\x4f\x51\x47\x5d\xab\xf8\x4f\xa9\xd1\xfc\x0f\x7d\x49\x45\x9d\xc9\x07\x59\x53\xd5\x62\xc8\x2e\xa6\x40\x07\x75\xa4\x94\x26\x84\x51\xab\x0e\xd3\xa0\xfe\x51\x1f\xf6\xd8\x85\xf6\x55\x25\xd9\xe3\xa9\xb7\xc5\xff\xeb\xea\xcb\xa6\xf4\xc7\x35\x5e\xce\xa3\xf4\x0c\xd4\x16\x16\x52\x3a\x7f\x8a\x52\x4b\x48\xed\x29\x54\x61\xb9\xa4\x45\x0a\xff\x58\xd9\xdc\xd4\x59\x14\x5e\xb3\xbb\x61\x38\x79\x10\x3e\x66\x39\x14\xfa\x1e\x35\xd9\xe4\xef\x41\x42\x41\x75\x36\xfb\x1d\x54\x94\xcc\xb5\xf3\x46\xf6\xa2\xb1\x8a\x46\xb7\xbc\x99\xc3\x95\xda\xc1\xc2\xa9\x03\x49\xc2\xae\x12\xa7\xde\xe5\x94\x27\xe5\x0b\x3a\x3f\xc1\xd1\x95\x6b\xda\x6c\x85\xc7\x6a\x32\x9b\x57\x25\x17\xc2\x93\x1b\x2f\x84\x9e\x44\xb6\xd4\x3d\xf5\xc0\x22\x7f\x1a\x06\xed\x9f\x51\xbd\x64\xf7\x3b\x13\xb3\xee\xef\x10\x36\x58\x72\x8f\x4d\x84\x6a\x23\x0a\xc6\x46\x8f\x09\xc3\x8b\xbb\x87\x72\x29\x82\xb2\xd1\xbe\x63\xf0\xb9\x90\xa3\xdd\x8e\x85\xfc\xea\xbf\xdb\x57\x25\xaf\x81\x5d\x6a\x86\x85\x9e\x44\x7a\x34\xbe\xf2\xa8\x43\x72\x4d\xfe\x93\xa2\x29\xbb\xe4\x39\xa3\x39\xf0\xa3\x85\xf9\x9d\x17\x91\xa0\xa4\xb0\x7e\x04\x95\x52\x1e\xa5\xba\x82\x1e\xaa\xcc\xe4\x7a\x61\xfd\x6a\x18\x38\x2b\xee\x24\x9c\x57\xbe\x9f\xc0\x41\x99\x37\xcf\x22\x45\x60\xff\x8e\x98\x45\x3e\x45\x78\xee\x79\x91\x92\x49\x5e\x63\x57\xc4\x6a\xa3\x85\x8e\x60\x61\x53\x4a\xb3\x3a\x7e\xc1\x19\xe5\x9f\xea\xde\x23\xfe\xad\x54\xa9\xfc\x50\x8c\x9a\xcd\x1c\x31\x66\x31\x7c\x29\x6e\x36\xf6\x3e\xf2\x4e\x79\x12\x7e\x1b\xa6\x39\x7d\x90\xa8\xc1\xab\xc2\x8f\x93\x03\x49\x71\x9e\xf5\xe4\x6d\x94\xd5\x76\x29\xac\x62\xda\xab\x61\x76\x4d\x31\x84\xd8\xb1\x0c\xfa\xb1\x6a\x6f\x5d\x00\x5c\x03\xb5\x53\x12\x91\x89\x70\x26\xfb\x31\xda\x05\xf9\x0b\x2b\xc5\xbc\xc3\xd4\x94\x5d\xc1\x3d\xc5\xdd\x4c\x4f\x22\xdc\x20\x22\xc2\xa9\x24\x0d\xf9\x94\x27\x9a\x3c\x99\x0a\xb7\x8b\x63\x39\xd2\xef\x0f\xf2\x2b\x71\x48\xd0\x96\x5e\x1d\x85\x9a\x30\x4b\xa1\x7e\x98\x0d\xf2\xef\x70\x57\x9c\x03\xab\x0d\x39\x1b\xff\x10\x83\x41\xaf\x20\x8e\x95\x3e\xc3\x66\x91\xe5\x69\x52\x3c\x9a\x8a\x58\x77\x87\x18\x41\x5f\xec\xb9\x90\x68\x65\xac\xb5\x2b\x61\xc6\xb3\xa6\xf6\x4b\xcb\x5b\x88\x7b\x5b\x74\x90\x11\xd2\x5f\xc6\xe7\x55\x17\xc8\x57\x64\xea\x9a\xff\x28\x6f\x98\x10\xb8\x0f\xcd\x0b\x9d\x8f\xc4\xd1\x53\x4b\x01\xfa\x28\x83\x95\x7a\x01\x67\xcf\x1c\x5b\x97\x86\x7f\xcc\x3a\xec\x71\x97\xe0\xc9\x2e\xb4\x6b\x60\x60\x38\x69\xbd\x1d\xa5\x4b\xd9\xf3\x6c\xa7\xcb\xcb\xd9\x5a\x43\x06\x64\x9c\x7d\x51\xba\xa8\x1a\x70\x36\x30\x3c\xa1\x35\x9c\xbd\xa8\x58\xf8\x4d\xee\xba\x92\xc5\xa8\x3c\xee\xf6\xd4\x85\x98\x6d\xbc\xc8\xb0\xeb\xb8\x4e\x5e\xaf\x47\x1f\x6e\x07\x6f\xdc\xee\x01\xbd\x85\x47\xea\x9e\x5c\x14\xa3\xa4\x5b\xb3\x4b\xba\x14\xaf\x6b\xdf\x97\xcf\x55\x14\x89\xde\x43\xcc\xf2\xfd\xb4\xa0\xea\x15\xf2\x00\x84\x09\x7a\x51\x66\x29\xda\x83\x60\x4a\xbf\xa6\x38\xa0\x7e\x4a\xcb\xc2\x16\x60\x7e\x48\x0e\x78\xf0\x31\x7f\x24\x8b\xed\x2b\x69\xad\xc2\xf2\x0e\x64\xfe\x97\x86\x1b\xf5\xef\x8b\x2c\xf5\x7e\x9a\x73\xa5\x6b\x2c\x26\xc1\xc7\xf2\x6b\xa6\x57\x94\x9a\x4a\xa5\x71\x13\xec\x77\x4d\x96\xde\x54\x88\x80\x2f\xaa\xbd\xba\xe9\x2b\x72\x8f\x76\x56\x68\x19\xfa\x98\x1a\xe7\xe1\x83\xbe\xae\x9a\x67\x3f\x4e\xfd\x26\x7e\xdf\xc6\xcc\x33\xf4\xb6\xd5\x39\x17\xa6\x76\x87\xaa\x3e\x94\x38\x76\x6c\xe3\xc7\x96\x6d\x6f\x5b\x48\xba\x06\x61\x35\x53\xa0\xd6\xea\x1c\xeb\xce\x82\x75\xb0\x80\xfa\x67\x9b\x5c\x10\xb7\x2d\xde\x21\xa7\x50\x4f\x8d\x5b\xdd\x9f\xa0\xa7\xe9\x62\xed\x7f\x52\x45\xb2\xb9\xad\x03\x79\xeb\x46\x3a\x2d\x69\x05\x4f\x06\xaf\xaa\x62\x8b\x9b\xfb\xfe\xe1\x35\x96\xa5\x75\x3f\x22\x45\x41\x66\x74\x9c\x87\xce\xad\x7a\xd6\xda\x9c\x7f\x12\x7a\xc4\x56\x90\x74\x08\x41\x6c\xf4\x0a\x69\x45\x31\xeb\x20\xee\x8f\x51\xed\x86\x8d\x93\xd6\x52\x43\x65\x77\x5a\xe7\xe5\x7e\xd9\xb6\xcd\x7c\xac\xc0\x3a\x6e\x51\x1e\x2b\x8e\x1b\xc9\xe0\x2d\x2f\x7d\x36\xf0\x8b\xf8\x77\x45\x4f\x6f\x6d\xcd\x91\x2a\x56\xe7\xb7\x7c\x05\x74\x4b\xdb\xe6\x24\x1b\xfc\xb3\x6d\x2c\xc4\x86\xfc\xda\x98\xe3\x31\x1d\xb5\xd0\xb8\x63\x92\x92\x72\x40\x9e\x3a\x70\x1c\xd5\x50\x18\xd1\xba\x15\xdd\x58\x12\x6b\xfa\x1b\xb3\xab\x7c\x89\xbc\x10\x7b\xaf\x32\x8c\xf9\x0d\xbf\xbc\x06\x82\x3e\x43\x30\xc3\x91\xa5\xa9\xa4\x39\x28\x71\xea\x1b\xb2\x1e\x7b\x72\x5d\x02\xe5\x7f\x84\xeb\x1e\x22\x6a\x04\x79\x15\xf8\xcd\x5e\x4d\x33\xf7\xbf\x40\x3c\x2c\x5d\xd4\xf2\x2f\x6a\x41\xf9\x49\xd3\x72\x74\x61\x65\xb1\x6c\x1b\x66\xa4\xc6\x9b\x59\x89\xf3\x81\xfd\x40\x27\xe0\xb7\x22\x77\x96\xdc\x24\x66\x61\x04\xa9\x3a\xd2\xbf\x78\xec\x3a\x7b\xca\x66\x92\xbf\x47\x26\xa5\x8b\xb2\x14\xbc\x61\xbd\xa2\x47\xf7\x3b\xc2\x43\x20\x4b\x5b\x66\x23\x5a\xab\xa8\x46\x0c\xf2\x7b\xcd\x41\x99\x3d\x5a\x04\x5f\xcf\x38\x82\xf5\x44\x1e\x45\xed\xc2\x9d\xc5\x04\x97\x54\x12\xe4\xb8\xe1\xd4\x00\xd2\x3a\x62\x7c\xd8\x4e\xf2\x30\xb9\xdf\xc3\x93\xfc\x83\x9a\x0b\xfe\x63\xd9\x18\x7e\xbd\xf6\x35\x44\x84\xd4\xb6\x0e\x66\x87\x4a\xd4\x1f\x84\x6f\x47\x5f\x97\x28\x91\x95\xd8\x6e\x3a\x0f\xbd\x0a\xaf\x40\xb6\x61\xa7\x11\x21\xc5\x0c\xdc\x17\x72\x7c\x0a\x95\x70\x85\x1a\x1c\xe6\x4f\x82\xd0\x3e\xb9\x3f\x24\x35\x30\x3c\xec\xdc\x98\xb7\x58\x09\xdd\xcb\x2b\x3b\x88\x73\xac\x82\x6a\x21\x69\x93\xce\x0f\x8a\x25\x17\x88\x3d\xe1\x9b\x28\x6c\x5a\x3c\x32\x91\xba\x1d\xa1\x45\xe7\xd2\x5e\x14\x99\xb1\x38\x86\x7f\xf2\x51\x3c\x8e\x49\x0c\xed\x23\xce\x64\x59\xdc\xc7\x89\x5e\xec\x18\xbb\x32\xa6\x03\x87\xd6\x19\x5a\x91\xce\xaa\x6a\x38\x54\x99\xc4\x7a\xa1\xd5\x55\x57\xb0\xa3\x85\xdb\xa0\xd5\xec\x71\xea\x64\xb8\x92\x13\x0e\x67\x21\x8f\x72\x8e\x17\x8e\x62\xec\xb8\xb9\xc9\x73\x71\x5e\xdc\x57\xa1\x1b\xf0\x97\x78\x24\x77\x1d\xfe\x30\xaf\xd1\x6e\x80\xb1\x8e\x67\x6a\xbb\x52\x9a\xa9\x40\xd6\x55\x97\xab\xe4\xbf\xd5\xa9\x90\x8b\x72\x05\xbf\xb9\xea\x97\xec\x1b\xd9\x0f\x9a\x2f\x63\x41\x6f\xc1\x0f\x49\xbf\x15\x14\xa0\x02\xa4\xb4\x4d\x53\x30\x38\xc9\x87\x10\x05\x6e\x95\x84\xe6\x0e\xc5\xcd\x16\x7f\xb1\x0f\xa1\xaf\x15\x62\x5a\x56\x16\x47\xd4\xcb\xcc\x2e\xa5\x1a\xcb\x2b\x65\x68\xf9\x07\x33\x9f\x3b\x54\x99\x60\x7c\x49\x84\x55\xef\x32\x94\xd7\x64\xc1\x12\x75\x27\xf3\x5d\x10\x57\x6a\x57\x24\x4d\x42\x07\x68\x54\x6b\x2f\x61\x3e\xa8\x67\xba\xcf\xc7\xbc\x52\x5e\xb6\x57\xd1\x14\xe2\x17\xb6\x39\x85\x77\xba\x3f\x1a\x9d\x4b\xb2\x3a\x77\xc9\x73\xca\xce\xb7\x57\xb1\xbf\x43\xfc\x5a\x1e\xe0\x1f\x56\x0d\xd9\x8a\xab\xbe\x40\x53\x1b\x8f\xe4\x3e\x87\x3f\xad\x5f\x92\xe8\x85\xda\x6c\xe6\xad\x8d\xc2\xcc\x33\x46\x2c\xb9\x8a\x59\x56\x7b\xc2\xfe\x32\xcd\x59\xfa\xb9\x29\xa9\x90\x3f\x74\xdf\x90\x58\xfc\x7a\x60\xbd\xac\xae\x0c\xda\xcb\x60\xe7\x56\x1c\xea\x32\xe1\x33\xaa\xe2\xda\x5b\xab\xa8\x35\x0f\x5a\xea\x73\xb9\x70\x7e\x13\x3f\xe1\x32\xf2\x51\x03\x69\xad\x2b\xba\xc7\xf2\xf7\x92\xab\xe8\x9d\xfa\x5d\x93\x26\x53\x77\xcb\xf6\x5a\x47\x0b\x63\xb6\xde\xd5\xef\x28\x6e\x1b\x7d\x21\x9b\x55\x36\x6d\xe8\x12\xeb\x7e\x05\xa4\xdf\x86\xfb\xaf\xf2\x56\x4f\x56\x95\x4f\x0d\xb9\xe3\x59\x6e\x0c\xdc\xb9\x15\x97\x30\x8a\x44\x37\xfd\x58\x3b\x1d\xed\xdd\xb0\x6f\xc9\x6f\xb4\xaf\xd1\x6f\x52\x19\x35\x46\xee\xdf\x2e\x24\x24\x17\xae\xae\xfb\x4e\xf8\x5e\xe2\xad\x99\x4a\x6c\x2a\x77\x11\x38\x93\x54\x95\x33\xc8\x71\xe4\xda\x1a\x1f\xe8\x1e\x8a\x0d\xbe\x32\xff\x05\x75\x2f\x2a\x29\x69\x39\xed\x24\x96\xbd\x76\x26\x7d\x98\x40\x5b\xf4\x8e\x7e\x8b\xb4\x03\x00\xce\x1b\xba\x7d\xdb\x41\xdc\x8e\x92\xdb\x75\x29\x78\x5d\xb9\x58\x8d\x21\x14\x54\x7a\xf3\x09\x44\x5c\xf5\x35\xd2\x30\xa9\x1e\xd6\x02\x0d\x23\x1f\x43\x16\xe5\xb3\xa8\x76\x18\xbf\xc4\x1b\x34\x7f\xbc\xcb\x9a\xdb\xf4\x65\xc4\x3d\x8b\x2e\xd2\xd3\xc9\x5d\x00\x70\x76\xd2\x1b\x5b\xdf\x62\x57\x56\x8c\x58\x34\xb8\xe5\x55\x53\x55\xc7\xf0\x73\x6b\x20\xbc\x13\x84\x5c\xd8\x31\xd2\x2c\x62\x2b\x32\xbe\x66\x90\xf4\x0c\xbd\x3d\x7f\x12\x25\x16\x17\x91\xc8\xa1\xf2\x08\xd7\xd6\x98\x69\x4a\x72\xd0\xa2\x71\xda\x08\xe5\x0a\x00\x1c\x28\x03\xdf\x7c\x01\xc5\x80\xcb\x4d\xdd\xe8\x41\x64\xb9\xe2\x13\xe6\x2e\x7a\x12\x77\x13\x2e\x09\x73\x8b\x70\x09\x7f\x10\x77\xb2\xda\x4c\x8c\x24\x0c\xe5\x2d\x20\x1d\x24\xb5\x24\x9c\xa1\xf8\x50\x3a\xd7\xac\xa0\x26\xd3\xc8\x8b\xc8\xd4\x42\xba\x09\x00\xf6\x20\x8b\x60\xcb\x83\xef\x21\x4c\x36\x06\x22\x03\x88\xc1\x72\x12\xaa\x95\x94\xc0\x7e\x86\x89\x22\xf3\xf1\xad\xd8\xc7\x94\xf3\x55\x72\xbc\x96\x36\x3f\x37\x9c\xb8\x9e\x8e\x49\xf0\x25\x9d\x60\x5c\x0c\x3e\x45\xfe\xc3\x9a\xb6\x08\x45\xfe\xce\xda\x0d\xc2\x58\x0f\x39\x4a\xeb\x46\x28\x91\xb1\x57\x5f\x02\x9f\xc5\x24\x48\x5f\x23\xea\x98\x8f\x58\x1a\x54\x19\x8b\x83\x43\x63\x42\xd8\xbe\x95\x2c\x9c\x3d\xfb\x7c\x4e\x1e\xfe\x1a\x87\x15\xcf\x26\xf2\xb9\x6b\x83\x6b\x48\x47\xb9\xb7\x16\x95\x90\xfa\x78\xb3\x81\x9c\xb5\x80\xa7\xac\xef\xad\x6a\x95\x25\xd6\x3a\xd6\xe4\xcb\xec\xc5\xbb\x61\xf3\xa5\x5b\x19\x2a\xc4\x0c\x69\x21\xa6\x1b\xe5\x22\x9d\x52\xf1\x16\x33\x53\xb2\x35\xdb\x15\x37\x45\x52\x1a\x27\xc3\x5f\x95\x4c\x0f\xda\x4d\x5c\x26\x3e\xbc\x28\x8a\x38\x4b\x4c\xb2\x5b\xc4\x9c\x23\x4c\xb2\x64\x43\x68\xe6\x5e\xf5\xc5\xaa\x0a\x53\x8d\x70\xac\x26\xc1\xb8\x8c\x36\x02\x2b\xd2\x5f\x41\xfd\x40\xb0\x75\xa2\x72\x2e\xaa\xb1\xd6\x77\xcb\x6d\xcc\x84\xe6\xe4\x46\x09\xce\xac\x46\x05\x4d\xc6\x3f\x53\x45\x2c\x7c\x81\xff\xa2\xf8\x6d\x87\x60\xc0\xc5\x2d\xa6\x89\x8a\xb0\x8e\x33\x2a\xbf\xca\x15\x6d\xdb\xf9\x3f\xab\x7d\x5b\x54\xd4\x85\xd0\x14\x5b\x31\x52\x03\x67\x58\xdd\xcb\x42\x91\x7d\xf5\x97\x33\x8f\xa1\xaf\x58\xf8\xb1\xdb\xb0\x7b\x4c\xc1\x81\x78\xfc\x14\x43\xda\xc2\x1e\x7c\x90\x56\x63\xb7\x9d\x7e\x57\xaa\x36\x5e\x2d\x3f\xd3\x9f\xad\x44\x41\x0e\xf5\xbc\xe5\xe7\x55\x1d\xec\xc2\x52\x78\x35\x0f\xdb\xef\x23\x7e\xc1\x5d\x5a\x63\x4a\x77\x23\x37\xda\x54\x99\x65\x68\x4c\xe3\xc5\x58\x18\x36\xaf\x7e\x71\x60\x34\xae\xc1\x7c\x71\x61\x2b\xee\x98\xae\xdc\xee\x09\x5d\x29\x4b\x32\xfa\x96\x33\x47\x7e\x2a\x6e\x41\xd0\x43\x55\xbc\xff\x55\xc1\xfb\x5b\x28\x73\x6b\x84\x3d\x27\x10\x1d\xb0\xfe\xce\xbf\x4a\x31\x88\xbf\xda\xce\x64\x2e\x43\xfd\x68\xde\x19\x1b\x86\xb9\x61\xed\x0f\x0c\xc1\xcd\xa8\xe7\x2f\x3c\x8c\x0b\xd4\x1f\xb0\x0f\xa1\x4f\x97\xed\xac\x2f\xa1\x75\x15\x3c\xd3\x0a\x69\x9f\x8b\x3f\x89\xdd\xe8\x45\x65\x4f\xe9\x67\xe8\x8f\x21\x7f\xa1\xf7\x33\x84\xd5\x0f\xca\xdf\x32\xbd\x61\xff\x6e\x79\xc9\xbc\x8e\x9a\x14\x7b\x80\x25\xc4\x2e\x59\xed\xcf\x76\xc3\xbf\x72\x83\xb1\x0b\x89\xff\x02\xc0\x77\xa1\xa7\xd5\x0d\x53\x17\x97\xa8\x34\xf7\xa8\x6d\xe5\x91\x22\x1e\x2d\x08\x72\x93\x1e\x46\xbb\x53\xcd\x41\x07\xd1\x1b\x61\x1b\xca\x29\x8c\x42\xc4\x8f\x2d\x7c\xa6\x0f\xfa\x62\x2c\x89\xf9\x2f\xae\x25\xe0\x15\xcb\x44\xf4\x70\x2b\x61\xdd\x26\x9d\x05\x80\x77\x9b\x7e\xc2\xf2\x81\xdc\x54\x91\xad\x09\xa4\x6c\xae\xec\x13\xfe\x4d\x75\xaa\xfe\x48\x33\x51\xaf\xc2\x32\x50\x4d\xb4\x61\xc4\xc9\xb2\x37\x74\x39\x7a\xe3\x96\x19\x0c\x2c\xf6\x7c\xac\x17\x33\x89\x90\x1d\x70\x98\xf9\x8b\xa4\x73\xcb\x67\xa5\x92\xbf\x00\xc0\xd3\x33\x14\xe6\x02\xc2\x7f\xb0\xc7\x2a\x05\xf1\x1f\x44\x8b\x60\x2d\xe9\x2e\x2a\x95\x1a\x40\xbe\x8d\xf1\x41\xa2\x28\x8f\x70\xf3\x4b\x1f\x53\x9f\x13\xa6\x67\xae\xa2\x7d\x27\xcd\x8c\x11\xd1\x3f\x52\xa6\x04\xb0\x19\xc7\xa9\xa7\xdd\x12\x98\xb3\x69\xfb\x00\xe0\xde\x67\xc1\x8d\x3b\x70\x45\xb8\x7d\xca\xe9\x78\x05\x61\x2a\xef\x1e\x61\x2b\x31\x86\xfc\x95\x78\x8f\xa4\x44\x14\x93\xdd\xc8\x4f\x4b\x3e\x53\x92\xa9\x29\x19\x35\x54\x2e\x6d\x5b\xf4\x5b\x5a\x2b\x63\x61\x40\x30\x9d\xc7\x2c\x70\x8b\xa6\x9f\x61\xfe\x03\x00\xd7\x9d\x83\xd2\xff\x87\xf1\xa5\x6f\x94\x8b\xb0\x64\xfa\x5b\xae\x1c\xb7\x93\xa1\x23\x1d\x25\x4c\x63\x6e\x84\xa7\x10\xb1\xac\x49\x25\x93\x49\x87\x59\x67\x36\x37\x53\xdc\xd8\xf5\xd1\x10\x6a\x11\xa7\x66\xd5\x1d\x5a\x22\xd7\xcd\x2d\x94\xa6\xe1\x46\x03\xc0\x29\xe4\xe5\xd6\x62\x90\xad\x92\xa9\xd2\xd5\xa8\xff\xc4\x5f\xd9\x05\x98\x6c\xf1\x55\xc2\x69\xec\x35\x71\x27\x54\x8d\x2f\x17\xf3\x8a\x24\x84\xff\x89\xf3\xd2\x8b\x49\xa5\xe2\xe0\x0d\x28\xf2\x4e\xf1\xd4\x55\x51\x94\x1e\xd1\x0b\xb7\xf9\x54\x27\x51\x2f\x00\xec\x1a\xc1\x7f\x9a\x20\x78\x9e\xe1\x2f\xf1\x24\xc4\x7b\xfd\x19\x66\x26\x4a\xa3\x9b\xc0\xfd\x87\x59\x59\xdb\x54\xfd\x04\x7b\x4d\x2b\x2b\x74\xc1\x53\x35\x88\xb4\x65\xc4\x19\xea\xf4\xf5\x24\x12\x5b\xb5\x76\xa5\x8e\x8c\x52\x6e\x9e\x77\x8d\xfc\x49\x7e\x1a\x00\x56\x97\x78\x85\xaa\x04\x36\xb3\xb5\x4a\x98\x03\x3f\xd5\x2c\xa7\x4f\x20\xe9\x4d\x56\x2c\x15\xbd\xb4\x71\xac\xca\x84\xb9\x51\x7f\x30\xff\x29\x4e\x65\x39\x94\xba\x9c\x10\x6a\x3a\x1a\xd5\x45\xec\x34\x5c\x5e\xf1\x8a\x24\xd7\xe7\xce\x53\x92\x23\xd5\x6f\xc0\x4c\xd6\x7c\xc9\x77\x65\x23\x74\xa0\xbb\x4b\xd0\x01\x2f\xef\x94\xd1\x5d\x90\xae\xed\x49\x98\x87\xa8\x7d\xad\x0e\x55\xae\x18\xbc\x6d\x67\x3e\x1d\xe7\x63\x2d\x4a\x39\x8f\xbf\x52\xff\x33\xaa\x84\x18\x6d\xd9\xb6\x62\x82\x34\xc7\xa4\x9f\x47\x23\x5d\xd3\xb6\x80\x40\xe6\x71\xe9\xa0\xd2\x11\x5a\x36\xe8\x26\xf0\x84\x3b\xf5\x9d\xa2\xb5\x20\xf6\xf6\x64\x60\xb8\xa8\x92\xce\xd3\x95\xfb\x30\x4e\xed\xc1\xf9\x6b\xb0\x7b\x5a\xa4\x29\x4d\xf8\xea\xa6\xbf\xa3\x42\x09\x47\x1a\xd3\x56\x74\x13\xc5\x75\xb3\xe6\x29\x48\x31\xb5\xcf\x80\x88\xb9\x51\xb6\x54\xb3\x81\xdb\x57\xf0\x5b\xec\xc0\x1d\x2f\xfe\xc1\x24\x73\xdb\xcb\xae\xe3\x1e\x71\x0f\x41\xb6\x55\xdb\xb8\x2f\xab\x27\x0a\x9a\x78\x8b\x60\xbb\x52\x91\xbc\x42\xe4\xe5\xc8\x1b\xbc\x56\xcc\x71\xff\x7d\xbc\x0f\xf8\x52\x57\x3e\xbf\x89\x38\x0b\x00\x61\x02\xbd\x56\x6d\xe0\x14\x95\x14\x88\xd0\x1c\x46\xf9\x14\xc6\x03\x8e\x01\xd2\x81\x2b\xe6\x9c\xa9\x0e\xaf\x5e\xc4\x9d\x05\xfd\xaf\xc0\x8f\x5b\x84\x18\x4d\x75\xe0\x8e\xa2\xc5\x91\x46\xde\x74\x5c\x90\x7f\x33\x8f\x48\x10\xb9\xe2\xf8\x2b\x88\x0f\x00\x10\x3a\xd2\xdf\xab\x6e\xb1\x67\x96\xdf\x16\x1e\x63\xc7\x57\xc6\x31\x12\xd9\xc2\x6a\x1b\xf6\x28\xfb\x32\xf4\x79\x95\x8e\x13\x84\x28\xc9\x1f\xe2\x18\x50\x7f\xa7\x58\x39\xbf\xb0\xa8\xc8\x34\x2e\x01\x7f\xc5\x9f\xcb\xbd\x47\xfc\xc7\x95\xcb\x6b\x21\x3b\x00\x20\x38\xc0\x68\x55\x2e\x67\x88\xa1\x2f\x05\xa1\x8c\x97\xf0\x07\xb4\xd3\x4c\x28\xd2\x86\x61\x30\x5f\xa0\xd9\x95\x44\x16\x07\x4b\xc9\x1b\x65\x3b\xe2\x69\xc9\x87\xd9\x75\x44\x49\xc4\x7e\xce\x0a\x32\xda\x3f\x91\xd3\x43\x75\x76\x6d\xe4\x12\xa9\x17\x01\x10\xb8\xb0\x10\xf2\xdd\x34\x3b\x6c\x13\xdf\x8e\xd6\x8b\xfb\x4e\xed\xa3\xa7\x13\x36\xa2\x49\xf4\x5f\xc4\x06\x88\x8a\xb1\x8b\xec\x98\xfb\x88\x89\xa2\xf0\x92\x17\xb0\x16\x53\x7f\x46\xa4\xb2\xae\xd2\xab\xfc\x5d\xd8\x10\x86\xce\xb5\x87\xb3\x8e\xf1\x03\x00\x7e\x16\xa7\x40\xa6\x20\xdf\xa7\xb6\x70\x87\x29\x43\x34\x29\x45\x4a\x2d\xa3\x47\xa1\x90\xb4\x50\x86\x43\x45\x1b\x7d\x2e\xe3\x41\xee\x7c\xfa\x13\xe6\xc9\x4d\x44\xc6\x0e\xd6\x44\xf8\x5f\x4c\x15\x5b\xe7\x77\x97\xe5\xcd\x49\x71\xfd\x8b\xf5\x84\x83\x02\x80\x07\xe3\x45\x88\xbf\x12\x63\x84\x07\xd8\x7c\x92\x97\xf0\x7f\xa4\x4a\xf2\x2c\xe1\x2b\x04\x87\xe2\x22\x7c\x5a\xf6\x86\xba\x40\xf8\x2a\xbb\x85\x36\x47\xf8\x31\x29\x84\xee\x24\xfc\xb3\xee\x29\xfd\x3f\x91\xbd\x5f\x2a\x43\x24\x9a\xe2\xba\x95\x49\x12\x6e\x03\x80\xab\x12\xb4\x0b\x0f\xe0\x57\xd7\x3e\x65\x26\x13\xd2\xb5\x7f\x08\x95\xc4\x02\x6d\x08\x6c\x90\x44\xd1\x14\x94\xe6\x91\x1b\xd4\xfc\xac\xb5\x94\x71\x55\x47\x22\xa0\x1e\x56\x9e\x0d\xfb\x4c\xdb\xa1\xf8\xe4\xdb\x4d\x8f\x57\xe4\xb9\x62\x19\x68\x59\x0e\x00\x9c\xb3\xa2\x11\x81\x27\xce\xad\x69\x2b\xfd\x12\x7e\xa5\x35\x00\xf7\x90\x90\xdc\x60\x84\x66\x13\xf1\x75\xef\x4a\x7c\x49\xcd\x96\xcc\x2d\xab\xc8\x67\x4d\x9d\x09\xcb\x29\xff\x19\xfe\x84\x45\x50\x1f\xea\xb1\x3e\x3f\x69\x65\xba\xa5\xae\x5e\xf4\x09\x95\x3b\x00\x9c\x70\x49\x25\xbf\x1a\xab\x6f\x3f\x42\x5f\x89\xdb\xde\xfa\x1e\x97\x86\x7f\xd4\x32\xa9\xe6\x2c\x71\x8a\x6d\x76\xf1\x56\x52\xa8\x75\x61\xe6\x59\x32\xac\x61\x61\xfc\xdf\x14\x5d\xdd\xd2\xd0\x8f\x54\x96\x39\xdd\xe7\x10\xf5\xb1\x71\xa6\xab\x03\x3d\x43\xdd\x07\x00\xfb\x89\xd4\x89\x77\x11\xeb\xd5\x3b\x93\x36\x88\xcb\xee\x9e\x8c\xbd\x8b\xd7\x74\xdc\xad\xc1\x13\xfa\xda\xc6\x8a\x11\xc4\x73\x2d\xd4\x4c\x3d\xe9\x87\x2d\x28\x7e\x1b\xc5\xab\xf1\x4b\xe8\x5f\x94\x5f\xf5\x2f\x7c\x7a\xa9\x59\xe6\x12\x57\x2f\xda\xb8\xe6\x29\x00\x6c\x88\x54\xc1\xce\x55\x7c\x2b\xdc\x44\x0e\x52\xc4\x94\x84\xa0\xe0\x72\x5b\xf9\x64\xc8\x53\xf9\x1c\xc8\xd9\xfc\x83\x32\x4b\xf5\x58\xda\x73\xd9\x6c\x58\x67\xcc\x3b\x69\x07\xb2\x2f\xd8\x28\x2d\xc0\xd0\x3d\x69\x52\x24\xee\xb4\xf3\x07\xe9\x26\xc2\x7e\x00\x24\xcb\x19\x65\xac\x7e\xf9\xd6\x92\x6a\x52\xb7\x7c\x61\xb9\x03\xf2\x93\xcc\x02\x31\x42\xd8\xb2\x15\xd5\x73\xf2\x0b\xa5\x27\xa1\xbb\xd2\xf4\xd2\x12\x04\x2e\xa6\x4b\xf2\x1b\xbd\x26\xb8\x42\x72\x0a\x7b\xc0\x13\x2e\x79\x8c\xbf\x34\x6d\xba\xe4\x1a\x91\x09\x80\xf8\x39\xc3\xca\x7c\x27\xc3\x94\x0f\x92\xa6\x4b\x3f\x56\x4e\x42\xb2\xa5\xb5\xd5\xe9\x10\x3b\x69\x2c\x54\x9d\xf7\x4c\xf2\x01\xfe\x3e\x6d\xb5\xa4\x19\x85\x8d\xc9\x92\xe4\x60\x3e\x06\x07\x4a\x02\xf0\x09\x9e\x85\x92\x2d\xc4\x45\xd3\x3c\x25\x59\x24\x15\x00\xe2\x66\xe6\x52\xc6\x56\x89\x2b\x74\x2d\xe1\x9c\xf8\x2e\x7c\x2a\x62\x83\x78\x1c\x71\xae\xfc\x8d\x58\x80\xda\x9a\xfb\x4b\x9c\x8f\x19\x4b\xad\x10\x7b\xe2\xf6\x45\x77\x8a\x3e\x10\x2e\x07\xed\x13\xfd\x43\xea\xf7\x5c\x2f\x9e\x45\xf1\x9e\x96\x28\x0e\xa6\x6e\x04\x40\xf4\x9c\x35\x41\x5f\x25\x9a\x8b\x7e\x8d\x17\x09\xff\x87\x65\xc1\x57\x0b\xb7\xe3\x1e\x97\x7d\x13\xf6\x13\x72\x73\xbd\x85\x9d\xc4\x5b\x29\x1d\x42\x0d\x19\x11\xed\x20\x64\x53\x7e\x07\x95\x0a\x6b\x69\x04\x4f\x0f\xe1\x41\xba\x69\x1a\x54\xe4\xc8\xa0\x01\x20\x5a\xc9\x21\x53\x6f\x09\x5c\xc9\x78\x5c\x0e\xff\x2d\x05\x09\x5b\xc4\xbf\x43\x4d\x2b\xfd\xcd\x7f\x4b\x8b\xce\x49\x14\x4c\xa5\xc7\x27\xdf\x17\x4c\x67\x64\x6f\xa8\x11\xb8\x32\x61\x81\x9f\x04\x71\x2c\xa4\x27\x10\x30\xd8\xe1\xd3\xe4\x82\xdb\xec\x4f\x00\x08\x09\x3c\x5f\x0a\x8a\x8b\xe3\xb5\x61\x1a\xb9\x12\xde\xc7\x9a\x32\x6e\x33\x3f\xb0\x24\x8d\xfb\x9c\x5f\x99\xb5\x9d\x17\xcc\xef\xda\xc4\xe7\x95\xf2\xdf\xac\x0f\xe7\x49\x05\x1b\x03\x7d\x79\x13\x02\x83\x47\x3d\xef\x8c\xe0\xca\xb4\x56\x3e\x44\xd0\x03\x80\xa0\x4c\x50\x40\x4a\x63\x17\xaa\x0e\xa3\xae\xb0\x9b\x54\x21\x55\x0d\xec\x8f\x4a\x4b\xd1\x67\xce\x1a\xa5\xdb\x96\x36\x8e\x50\xd1\x94\x54\xcb\x39\xa7\x70\x8f\x82\x71\x3d\xe5\x3d\xab\x55\xdc\x2d\xf2\x78\x8f\x65\x5c\x94\xdc\x61\x9a\x8e\x17\x2b\xb1\x02\xc0\x37\x8b\xfc\x08\x3a\xd6\xca\xba\x6c\x64\x1e\x8b\x62\x49\xa8\xc4\xb0\x4e\x98\xe7\x15\x9e\x65\x7b\x1a\xff\xcd\x6c\x64\x73\x0c\xfb\x13\x87\xd8\x77\xf5\x86\xc8\x83\x9c\x50\x1d\x25\xe0\x31\x87\x50\xcb\x76\x97\x73\x88\x9a\x6f\xd3\xb2\xb9\x34\xf9\x05\x00\x78\xdf\xc4\x03\xf8\x8f\xcc\xde\xa6\xbb\x88\x43\xcc\x6f\x56\x1d\xe4\x31\xab\xa0\x71\x69\x61\x2e\x6b\xac\x7e\x3c\x33\x94\xed\x5c\x17\x9b\x58\xc0\x26\x9a\x2f\x46\xb2\xd9\x97\x4d\xd4\x80\x7e\x8e\x9d\x31\xd3\x3d\x93\xfd\x9f\x0e\x33\x2d\x96\xeb\xac\xf4\x00\x80\xd7\x21\xd9\x88\xe7\x32\x23\xda\x76\x21\xb2\x98\x86\xd6\x38\x88\x90\xf9\xae\xb9\xaf\x10\xb0\xe2\x6d\x8e\x19\xef\x59\xf5\xd6\xaa\x44\x5f\xd6\xcf\x86\x83\x91\xc5\xec\xd2\xfa\x98\x80\x5a\x36\xcf\xa2\x70\x5f\xc7\x4e\x37\xc0\xa7\x65\x70\x28\xaa\x0d\x00\xf0\x56\x49\xb6\x21\x17\x5b\x6a\x8a\x66\x54\x05\x99\xde\x97\x9c\x2d\x66\x18\x1b\xcb\x49\xd9\xae\x86\xd2\xca\x85\x29\xae\x7a\x9f\xea\xc7\x31\xb4\xda\x67\xb0\xa3\x21\x07\xb5\xa7\x90\x23\x7e\x1a\xcd\x4f\x4c\x86\xdb\x7a\xed\x12\x5c\xb8\xe3\x5a\xe5\x27\x62\x37\x00\xb2\x36\xa6\x0c\x71\xc2\x1c\x5a\x72\xb4\xf2\xa6\xf1\x6e\x79\x72\x71\xa0\xa1\x0e\xb2\x2f\xeb\x8c\x9e\x51\xbd\x3c\xf9\x82\x0e\x02\xdd\x19\x13\x59\x1b\x86\x28\x0f\xa9\xd5\x7a\xa3\x67\xfa\x51\x35\x08\x2c\xc1\x2d\x59\xa3\xc6\x7b\x3a\xe6\x2a\x55\xa4\x18\x00\x64\xa5\xcc\x46\x44\x95\xc9\xb1\xbc\xbb\x92\x62\x38\x05\xf9\x50\x74\x5b\xaf\xaf\x0e\xcb\xa2\xe9\xea\xa0\x88\x64\x5e\xad\x05\x7e\x28\xfa\xb3\x96\x8d\x5a\x1b\x52\xa0\xa1\x61\x86\xfd\x8a\xd4\xa7\x70\x37\xdc\x32\xd5\xcf\x08\x39\x8e\x2c\xa5\x33\x39\x0a\x00\xd9\x54\xe6\x6f\xf8\x46\x43\x40\x0d\x15\x82\xd3\x7d\x84\x51\x0a\xff\xad\x7d\x89\x08\xdb\xd2\xab\xfd\x88\x72\xdf\x74\x45\x6b\x8f\xf1\x8c\xae\xd2\xd8\xe1\xd6\xae\xbd\xab\x76\x25\xa4\xf9\x2d\x50\xd1\x49\x2e\x6e\x85\x2a\x0d\x79\x83\xe3\x88\xfc\x2d\xf5\x29\x00\xd2\x6c\x76\x16\xcc\xbd\xf6\x3b\x6a\x5b\x45\x99\xf6\x27\x26\xad\xe0\xa3\xd6\x01\x7b\x38\xf3\x9c\x26\x00\x9f\xb8\x69\x86\xba\x80\x70\x6f\xc3\x1e\x15\x8e\x24\x59\x9b\xa5\xd4\x53\x02\x7c\x2f\x2b\x67\x50\xbb\xdd\x2a\x94\x1e\xb4\x46\xc7\xe7\xb2\xe3\xcc\xc5\x00\x48\x44\x9c\x87\x50\xa0\x9d\x4f\xcc\x2f\x2f\xd7\xf8\x90\xac\xf9\xbf\xd5\x91\x64\x63\xc6\x73\x15\x97\x32\x98\x94\xa4\x3c\x48\xbd\xb1\xc1\x59\xf1\x82\x3e\x7d\xcd\x71\xc5\x22\x46\x92\xaf\x50\x3e\xc2\xc4\xb8\x55\xcb\xf7\xb2\x82\x9c\x96\x49\x3b\x38\xfe\x00\x88\xf7\xf2\x10\xd5\xad\x2a\x29\x7b\x57\xe9\x37\xe5\x3e\x4e\x68\xde\x1e\xc5\x6f\x4e\xf7\xe6\xf3\x8a\x32\xae\x47\x62\x9e\x7c\x37\xb7\x7f\x7d\xac\xdc\x89\x17\xbe\xc6\x47\x96\xc7\x3b\xe7\xeb\x25\x7d\xca\xaf\x72\x4b\x91\x9e\xe3\x1f\x75\xe2\x4a\xe6\x09\xe6\x00\x20\x6a\x10\x14\x56\xcd\x50\x28\x65\xea\x92\x7e\xf9\x6d\x59\x71\xae\x4e\x1e\x26\x5b\x9b\x7e\x44\xd6\x27\x73\x4a\xc0\xcb\x16\x48\x9f\x45\x31\xa5\x62\xe9\xb9\x60\xa9\xe4\x85\x74\x9f\xcf\x36\x09\x47\x7a\xce\x6d\xae\x24\x59\x5a\xe7\xa4\x13\xbd\x11\x17\x03\x20\x3c\x2a\x7c\x04\x79\x2e\x5f\x60\x08\x2e\x96\xca\xd4\x7a\x49\x8e\x54\xfa\x47\x77\x2c\xed\xa6\x94\xab\x9b\x1a\xdf\x27\xf9\x5a\x5b\x18\x79\x49\x22\xd0\x8e\x06\xfd\x96\xd8\x6b\x97\xf9\x44\x89\x35\x9a\x03\xf3\x3a\xc5\x11\xaa\x2c\x27\xb9\xc8\x4d\xe6\x00\x80\xd0\x5b\xec\x0f\x81\xc8\x34\x75\x9b\x8a\xa7\xca\xec\x2c\xd5\x39\x0b\xa4\x42\x33\x22\x8d\x23\xf9\x69\xa2\xc5\x97\x4b\x58\x46\x5d\xa4\x49\x32\xc5\xb0\x2d\xe8\xaa\xd8\x62\xb0\xf3\x99\x25\x9e\xad\x07\xf3\x58\xa2\x7e\x4d\x96\x13\x55\xd8\x2d\x5f\x0c\x80\xe0\x8a\xb8\xa5\xe2\x8d\xcc\xd5\x7a\xb0\x68\x50\xaa\x6c\xdc\x9e\x7d\x46\x3a\xa5\xc1\x98\x16\x2d\xe1\xd7\x73\xe3\xd7\x88\x3f\xd5\x91\x22\xa9\x62\xb9\x85\x1d\x74\x4c\xec\x66\xde\xee\xe3\x20\x12\x1b\x07\xe6\x91\x85\x6f\xb5\x5f\x9d\x8c\xc2\x19\x8a\x85\x00\x08\x4a\x25\x53\x0a\xb2\x3b\x12\x8a\x46\xb3\x02\xda\xdc\x4b\xc3\x53\x89\x2d\x2e\xe5\x7b\xe3\x3e\xdb\x22\x2a\xe3\x23\x3f\x5a\x91\xd5\xaf\xd7\x60\x1b\x64\xb0\x21\xff\xb3\x75\xd7\x90\x98\xc5\xf7\x2c\x17\xd0\xcf\x66\xa4\x9a\xbf\xe0\x1c\x41\x9d\xf6\x18\x79\x04\x00\xc5\x3e\xd6\x68\x81\x7f\xfb\xdc\x52\xff\x2c\xd0\x3a\xa3\x9c\x97\x9a\xdc\xbc\x10\x72\x21\xee\x7c\x53\x69\xb5\x47\xe4\xf9\xc6\x0e\xa8\x69\x4d\x46\xfd\x45\x84\x87\xff\xce\x3a\x7f\xd4\xe0\xe2\x87\x96\xe5\x98\x57\x33\x10\xe6\x5c\xdc\x29\x30\xaa\xcd\xa3\xb8\x03\xa0\xc0\xb1\x3a\xf3\xdf\xb5\x3e\x2d\xbf\xbc\xe5\x4c\xf3\x0f\xc8\xc7\x54\x57\x9b\x67\xf5\xdc\xb8\x3a\x2b\x0f\x1a\x10\x69\x6d\xb8\x0e\x27\xae\xf1\xad\x9f\x81\xbc\xe4\x6f\xb3\x10\x31\xab\x16\x3f\x30\xd3\x70\x51\x33\x44\xa6\x66\xfc\x43\x70\x51\x73\x99\xf2\x15\x00\xc5\x5c\xd6\x93\x7c\xef\xe6\xcf\x35\xbe\x5b\x9c\x6c\x81\xd0\xe7\x29\xa5\x56\x1a\xbc\x2b\xce\xbe\xe1\x26\x52\x1e\xe9\x53\x1f\x8b\x96\x06\x9f\xb2\x68\xb0\x26\xff\x02\xd3\x77\xbc\x6d\xf1\x59\x13\x20\xa6\xcf\x18\x36\xce\x25\x8d\xda\xcd\x55\x8f\xd3\x8b\x00\x90\x27\xb1\xff\xe4\x71\x9b\x3e\x20\x0f\x65\xe6\x5a\x33\xd1\x49\xc9\x43\x0d\xe3\x98\x5d\x1b\xe1\xf5\xfe\xb8\xa4\x88\x56\x4b\x17\xfe\x45\x70\xa9\xe9\x37\xb1\xc9\xdf\xd9\x48\x23\x6f\x5a\xbc\xdb\x20\xa0\x1c\x9f\x71\x5d\xcf\xa6\xfe\xb1\xab\x56\x89\x58\x4e\x00\xc8\x10\x5c\x78\xae\xd4\xba\x1a\xff\x4f\x86\xb4\xc1\x42\xf8\xb9\xe9\x4b\xbd\x1d\x69\x6a\xec\x71\x4b\x2d\x39\x3a\x62\x8e\x79\x21\x45\x11\xf4\xc2\x28\xa4\xde\xf0\xdb\xad\xff\x41\xf7\x5e\xdc\xaa\x77\x64\xe0\x67\x7c\xaf\xfd\x97\x59\x67\x37\xa1\x2c\xe7\xd8\x00\x90\xea\x79\x67\x72\x18\xf5\xdb\x98\x53\x37\x1b\xea\x36\x30\x77\x6f\xf2\x35\x9f\x63\x95\xc4\xba\x9a\x70\x6c\xc7\x70\xb1\x71\x26\xfb\x44\x10\x43\x6f\xe6\xa8\xfd\xb0\x3a\x1f\x6e\xc1\x62\x43\xed\x7c\x5e\xe8\xcc\x08\xcd\x2e\xbe\x8b\xbd\x97\xfc\x32\xff\x06\x00\x12\xa8\x80\x97\xbd\xc5\x72\x58\xf4\x21\xbd\xd3\x5c\x26\x76\x48\x4a\x33\x39\x8b\x67\xc6\x94\x1a\xf6\x88\x03\xd7\x3d\xd3\xe3\xc4\x90\xc0\xaf\xba\x19\x62\xab\xdf\x0c\xed\x1e\xf1\xd3\xc5\x48\x4d\x9d\xa4\x72\x66\xb1\xea\xbb\xf8\xbc\x3d\x4e\xd6\x2e\x12\x02\x20\x16\x0b\x4f\x67\xf5\x99\xe3\x34\xe3\x69\x0f\x8c\xcf\x35\xa9\x89\x36\x83\x55\x7d\x2b\x7a\x9f\xbe\x40\x2d\x59\x07\xd7\xcd\x51\x27\x04\xd6\x6a\xaf\xa8\xe7\xfa\x1e\xd0\x58\xd5\x73\x17\x2f\x57\xe3\x55\x9a\x99\x31\xca\x2e\x79\xb7\x7d\x9d\x74\xbb\x64\x2b\x00\xa2\x5b\xa2\x4b\x59\xab\x4c\x1a\x43\x5a\x1a\xdf\x18\xa7\xdf\x93\x98\xaa\xff\xa3\x5f\x1a\xcd\xd0\xed\xd3\x75\xae\x5b\x53\xcb\xd4\xc5\x06\x56\x6b\xe3\x6b\x3f\xfa\xb6\x69\xe6\xd4\x5e\x5a\x3c\x57\xf5\x3f\xad\xff\xcc\x28\xc5\x57\x65\xba\x7d\xbd\x34\x46\xda\x08\x80\x48\x23\xf6\xdf\x72\xc8\xf8\xd8\x92\x93\xb6\xda\xd0\x6d\x1e\x49\x9c\xae\x47\x99\x7e\x45\xa7\xe9\x96\x9a\x30\xeb\xe6\x69\x6f\x1a\x3f\x07\xe6\x68\x7a\x8d\x43\xbe\x36\x35\xd7\xf0\x78\xf1\x12\xd5\x5a\x5d\xee\xcc\x2d\x8a\x60\xd5\x76\xfb\x63\x92\x5e\x19\x03\x00\xd1\x3c\x71\x6d\x26\xbf\x2f\xa8\x78\x4e\x0a\xa5\xfb\x9f\x52\x62\xdc\xa3\xce\xbe\xf2\x33\x51\x07\xdb\xdb\x2a\x23\x42\x16\xb6\xb6\x57\x9f\x5b\xf9\xbd\x59\x0b\x23\x2c\x3d\xd0\xb4\x1b\x39\xc3\x2d\xd5\x7a\x09\x8d\x9c\x4a\xae\x7f\x81\xdb\x08\x80\x8e\x4f\x19\x07\x40\x39\xc2\x76\xcb\x2c\xeb\x9d\x59\x8a\x4d\x29\xe8\xba\x55\xde\x12\x77\xa6\x63\x1b\xe4\x74\x54\x4f\xdb\xe1\x6a\xfb\x10\xd0\x72\x03\x5a\xb1\xf2\xb9\xed\x02\xfc\xaf\xa5\xbb\x9b\x26\xa1\x62\xdd\x72\xac\x8b\x31\x90\xa9\xcd\xf5\x1b\x71\x9f\x01\xd0\x39\x51\x1d\x00\x50\x16\xb3\x7e\x66\xae\xee\x7e\x55\xfe\x31\x65\x55\xe7\x79\xc8\x8f\xb8\xce\xf6\xfd\x55\x3f\xa3\x38\xad\x0f\xa0\x60\xed\x9d\x16\x07\x78\xe0\xca\xcb\xb6\xc9\x48\xd6\xd2\x41\x6b\x02\x7a\xaf\x5b\x61\x63\x39\xb6\x73\xea\x9e\x3a\x1e\x61\x12\x00\xb5\x1c\xea\x21\x00\x14\x5f\xd9\x61\x19\x94\xce\x1f\x35\x0e\xc9\xe2\xf6\xef\xd0\x9d\x71\x53\xdb\x9c\xe1\x95\x51\x93\x5a\xc2\x90\xe1\x6b\x85\x36\x38\x7a\xc5\x4a\xb5\x95\x89\x5d\xb9\x54\xd4\xb0\x0f\xef\xe5\xb6\xa5\xfe\x0a\x61\x74\xea\x0b\xf3\x7d\xd2\x49\x00\xb4\x59\xf4\xa7\x00\x28\x3c\x39\x91\x9b\xff\xb4\x7f\x42\x8a\x37\x7d\x6f\x5b\x8a\x7a\xb6\x91\xdd\x92\x85\x49\x8a\x54\xd8\xb4\xd8\x8b\x6b\x17\x5a\x2f\xe2\x09\x2b\xa3\x1b\x9e\x13\x17\x2e\xcd\xad\x0f\x20\xed\x75\xab\xaa\x0b\xa5\xf8\x39\x2f\x30\xad\xa4\x2d\x04\x40\xe3\xc6\xaa\x01\x40\x1e\xce\x35\x6f\x9e\xdd\x96\x82\x0f\xdf\x14\xd7\x42\x26\xe4\xc4\xfe\x6b\x1b\x24\xc2\x22\x9d\xac\x9f\x49\xb6\x35\xa3\x8d\x89\xe4\xe7\x2b\x5e\xd5\xc3\xa9\x51\x4b\x97\x5a\xfa\x69\x0a\x37\x9c\xb9\x83\x7e\xd9\x39\xc3\x20\x65\x1e\x01\x40\xf5\x92\x73\x0a\x00\x59\x01\xef\x55\x7a\x76\xf3\x4d\x46\x40\x52\x9d\xcd\x83\x71\x31\x36\xdb\x4a\x64\xc2\x22\x54\x0d\x97\x58\x9e\x6b\xb6\xd4\x07\xb2\xde\xae\xe8\xb7\xa0\xd9\xa7\x96\xda\x9b\x0e\x72\x7a\xdc\xb4\x46\x03\xd7\xe2\x3c\xa4\x4b\xe5\x3d\x06\x99\xca\x0a\xfe\x6e\x00\xa4\x2b\x05\xc2\x34\x6a\xd3\x45\xa1\x3e\xf1\x81\x35\x50\x38\x14\xb3\xbb\xa1\x5d\x78\x38\x62\x46\xfd\x74\xe1\xb7\xe0\xcf\x16\xb2\x28\x7d\x45\x99\xe9\xaa\xa8\xd7\xeb\x82\x31\x49\x3c\xdf\xcd\xac\x7f\x2b\x9e\x70\xfe\xa4\x55\x8a\x3d\x41\x8b\x62\x85\x68\x21\x00\x92\x54\x61\x77\xea\x5e\x6b\xa0\xea\x48\x62\x68\x43\xab\x8a\x17\xe3\x5d\x3f\x4f\x15\x1c\xae\xb2\xe8\x54\x0e\xc1\x22\xb3\x93\xf2\xe3\x0a\x47\x23\x57\xf9\xdb\xcb\x64\x98\xa2\x5a\xe7\x86\xd7\x0d\x2b\xd7\x38\x7f\xd7\xac\x90\x19\xc1\x01\xf9\x06\x89\x0b\x00\xe2\x0e\x91\x3a\x15\xd2\x48\xd4\x85\x25\x3c\xae\xff\xb7\xf6\x44\xf4\x9d\x3a\x64\x6d\x6e\x78\xa6\xf9\x71\xad\x63\x70\xb6\xa9\x48\x7b\x77\xf9\x13\xc3\x3d\xed\x4d\x2f\xaa\x9e\xa6\x35\xb9\x21\x74\xd3\xd4\xf2\x69\x53\xd5\x4c\xc5\x6c\x70\x4b\xb6\x5f\xf2\x13\x00\x71\x92\xe8\x43\xaa\x6b\xc3\x11\x93\x7b\x42\x77\x7d\xb4\xb1\x2e\x7a\xc4\x72\xcc\x38\x2d\x3c\xd0\xbc\xce\x30\x11\x9c\x68\x1c\x30\x48\x97\xdf\x37\xac\x31\x54\x7a\xf1\x75\x97\xf5\x99\x6e\xdc\xda\x0c\x2d\x77\x9a\xbf\x6a\x5c\x59\x66\x37\x47\xe6\x21\xbd\x02\x80\xe8\xb6\xb8\x28\xf9\xce\x70\x5a\x31\x21\xee\xe4\xc0\xfb\xd2\xfa\xf5\xe1\x7d\x23\xe5\xfb\x43\xe3\x7b\xcc\x95\xd3\x03\xae\x77\xc9\xab\x79\x3e\x5f\x3a\x60\xd0\xff\xe3\xe0\x2e\xdc\xa2\xc0\x9f\x3f\x80\x7f\x14\x41\x54\x14\x10\x04\x01\x05\x15\xa4\x4b\xe9\x46\xba\x6b\x61\x61\xbb\xbb\xbb\xbb\xd9\x05\x96\x4e\xc5\xee\x6e\xcf\x3c\xbb\xc5\xee\x3c\xef\xec\x3b\xf3\x8c\x33\x7e\xcf\xf7\xf7\x47\xcc\xbc\x66\x9e\x79\x3f\xf3\x23\xe8\xd3\xe8\x30\x85\xe9\xf5\x7d\xc9\x7a\xda\x6e\xb7\xd4\xc1\x40\x96\x01\x80\x8e\xff\x84\xb9\x00\xd8\x64\xf2\xa4\xd2\xc3\x1b\x92\x11\x5b\x17\xed\x58\xfb\x37\x6a\x6b\x56\xcc\xea\x7d\x98\x2d\xc9\xc9\x2b\xb7\xe1\xce\xc5\x9e\x5a\xbe\x8b\xe8\x16\xf6\x71\xe9\x08\x19\x1e\xf4\xdf\x92\xdb\xd4\x41\x6f\xff\xc5\xcf\xe8\x6b\xdc\x60\x03\x38\x76\x24\x00\x1d\x2a\xa1\x01\x00\xdb\x5c\xb9\x6f\x69\xff\xfa\x59\xe8\xb9\x8b\xba\xd7\x3c\xc3\xfc\xcc\x9a\xbe\xea\x28\xee\x76\x72\xc0\x8a\xf3\x84\xc3\xb1\x9b\x97\x3d\x24\x5d\x0c\x7b\x3a\x7a\x81\xf2\x2d\xe8\xbf\x25\x53\xe9\x5e\xde\x91\x8b\x67\x32\x5e\xbb\xc9\xfa\x7b\x38\x89\x00\xb4\xff\x23\x5a\x00\x80\xf5\x37\x79\x69\xc9\xab\xb5\xf3\xf1\xdf\xf2\x7f\xac\x9e\x4a\xec\xc8\xec\x5c\xe9\x42\x0e\x49\xda\xbb\xdc\x8f\xf2\x28\x96\xb1\x34\x89\xb6\x3f\x6c\xcf\x92\x38\xc6\xca\xa0\xe7\x23\x6c\x96\xcc\x3b\x6f\x98\xc3\x71\x71\xdb\xdc\xfb\x07\xef\x2b\x00\x6d\x7b\x24\x29\x00\x58\x6e\x2a\x8a\x4a\xd6\xae\x0e\xa0\x32\xf3\x87\x56\x2e\xa4\xad\xca\x9c\xb3\xbc\x9e\xfe\x34\x09\xb6\x94\xc7\x44\xc7\x86\x2c\x19\x64\xfd\x13\x66\x1a\xe9\xe3\xd8\x82\x6e\x0e\x5d\xe2\x79\x79\x37\x0e\x1e\xe4\x8b\xdc\x9e\xf4\x84\x89\x08\x00\x38\x84\xb2\x0e\x00\xcc\x2f\x95\x4b\x8a\x7f\x5f\xa9\x67\x1d\xc9\xfb\xbc\xbc\x8b\x7d\x25\x63\xf3\xd2\xad\x9c\xfb\x0b\xbf\x2c\xb9\xc7\x9b\x1a\x73\x75\xb1\x07\xbf\x31\xac\x61\x78\x8a\x60\x24\xe8\xf8\x60\x96\xf0\xb6\x37\x65\xc0\x5f\x3c\x77\xe2\xcc\x2e\xf9\xff\x7f\x44\x29\x51\xdc\x04\xc0\xec\xaa\x7a\x5f\x5c\xbd\xdc\x57\x3c\x98\x67\x5f\x9a\x2e\x09\xc9\xa8\x5d\xc2\x90\x2c\x5f\xb8\x79\x64\xb5\x14\x1d\xb3\x7c\xe8\xa9\x2c\x25\x2c\x73\xe0\x9b\x7c\x7a\xd0\xa5\xfe\x74\xf9\x47\xef\x0d\xbd\x7f\x2a\x3e\x4d\x74\x38\x8b\x55\xfb\x00\xb0\x6d\x55\xf7\x00\x60\xbc\xa4\x11\x14\xed\x1e\xfd\x47\x63\xcb\x0b\x58\x92\xa4\x19\x4d\xff\x39\xa2\xd3\xec\x5c\xc8\x19\x3a\xa3\xf9\x2f\x46\x3e\xe8\xa3\xc5\x85\x45\xf4\x2f\xd2\x5e\x0f\xba\xd6\xdb\xad\xc3\x78\xff\xd9\x13\xa8\xbb\x3d\xf1\x9f\x76\xa3\xae\x03\x00\xab\x58\x7b\x02\x00\xc3\x0b\xad\xa9\xf0\xc5\x92\x68\x6b\x4e\x2e\x7f\x44\x6b\x9d\x9a\x2e\x1f\x7a\x60\xb9\xbd\x10\x0c\x2e\xb0\x9c\x89\x09\xe9\x37\x5a\x1e\x86\x3e\xe8\xbd\x66\x0d\x08\xea\xeb\xa9\xb1\xa6\x7b\x5f\xef\xda\x6b\xfe\xdd\xdd\xab\x2d\xd4\xb8\x16\x00\x8b\x5e\x3f\x04\x80\xa1\x58\xd7\x5c\xb8\x65\x31\xde\xd1\x95\x9b\x31\x7c\xc0\xb1\x20\xbd\x70\x68\x8e\xfd\xe6\x82\x6b\x03\x02\xfb\xe6\x98\x71\x7d\xa7\xec\x7b\x42\x4f\xf5\x86\xd9\xff\x0c\xb2\x74\x6f\xb4\x27\x7b\xdf\xe9\x72\xb5\xde\x75\x8f\x70\xf0\xcd\x13\x01\x30\xff\x32\xc8\x00\xd0\x7f\xd0\x1d\x29\x54\x8e\xac\x71\x62\x73\xa7\x0e\x83\x8e\xa7\xe9\xb3\x06\x89\x1d\xfc\x05\x07\xfa\x77\x74\x94\x45\x7f\xea\x1b\xd7\x81\x0c\x3d\xd9\x43\xea\xf0\x0e\x6a\xef\xfa\xb7\x6d\x83\xf7\xbf\x9d\xa9\xad\x2b\xdc\x1b\xec\x6b\x2c\xd9\x00\x98\x29\xc6\x45\x00\xe8\xad\xfa\x90\xa5\xbf\x50\xe3\x6a\x53\xfa\x02\xd0\xbf\x37\x1c\x6c\x1d\xc2\xf6\x42\x23\xd5\x14\xbc\x13\x76\x8c\x27\x20\x6e\x41\x09\x08\xfb\xc8\x8f\x70\xb3\x1a\x0f\xd1\x22\x88\x97\x0a\xc7\x18\x26\xea\xaa\xc4\x0b\x2c\x38\xd3\x37\x20\x89\x3d\x9e\x9d\x0b\x80\xb4\x90\xbf\x62\xa9\x37\xfc\x29\xa4\xb4\x37\x1f\x39\x06\x15\xd8\xc6\xd0\x57\x61\x56\xd5\x6e\x9c\x0b\xf2\x3c\xf7\x16\xa1\x01\x1b\x41\x48\x24\x6d\x21\x28\x1b\x4b\xa9\x73\xc9\x77\x0a\x65\xf4\xc5\x74\x48\x22\x97\xd9\xca\xc2\xcf\xfc\xc0\x6a\xe1\x64\x01\x20\xf9\x2a\x20\x8f\x86\xb4\x9c\x69\xd6\xf6\x60\xe0\x7f\xc0\xeb\x6d\x00\x15\x84\xf2\x52\x7e\xc5\x48\x31\xbf\xb8\x69\xb8\x0f\x04\x37\xfc\x4a\xa2\x9c\xec\x0e\x19\xa3\x4c\xa7\x4d\x2f\x9c\x41\xdb\xc0\x8c\x4e\x0c\x64\xac\x63\xff\x31\x73\x07\x73\x15\x97\x03\x80\x64\xb1\x90\xb2\x18\xd9\x78\x0e\x73\xae\x6b\x5d\x73\x25\xde\xdb\x82\x87\xfd\x41\x5c\xa4\x70\x20\x1d\xe4\x0e\xf6\x57\x4c\x1d\xf5\x5f\x5c\x27\x3e\x94\x01\x6b\x78\x43\xfc\xc5\x3a\x5a\x40\xa5\x9c\xe0\xce\x49\xd0\xd3\x1e\xf0\x17\xce\x44\x30\x16\x08\x32\x01\x10\x5f\x14\x6f\x1d\x4e\xa8\x2f\xa1\x76\x3b\xaf\x42\x3e\xd1\x73\x4d\xb7\xa1\x87\x19\x37\xe5\x0b\x61\x5b\x59\x1a\xd6\x25\xe4\x6f\x9c\x5c\xac\x03\x73\x95\xfb\xa9\xc1\x1b\xff\x96\xbf\x75\xd1\x0e\xd2\x33\x21\x3e\xfe\x17\xd5\x4b\x74\x63\x66\x04\xed\x88\x18\x0f\x80\xe8\x83\xcc\x67\xb0\xa4\xfa\x35\xef\x65\xc7\xbc\xba\xeb\xfc\xa7\xc6\x16\xc8\x03\xc1\x79\xe9\xc3\xe6\x69\xc2\xd3\xcc\x0d\xf0\x16\xd1\x2d\x4c\x07\x6a\x8b\xf8\x5e\x7d\x1e\xce\x4d\xf2\x64\xd1\x54\x62\xb8\xf4\x49\xbc\x83\x0c\x93\xed\x98\xe9\x43\xa5\xc8\xce\x01\x20\x0a\x53\x20\xfa\x36\x96\xef\xd4\xe6\x39\xb6\x55\x7d\xd7\x26\xe9\xbd\xeb\x5a\xb4\x81\xe2\x2b\x90\xeb\x5a\x1f\xfa\xfd\x66\x9a\xd6\x1f\x3d\x19\x31\x51\x3b\xad\x6e\x32\x7a\xb1\xd6\x25\x3f\x16\xf7\x46\xf3\x2e\xde\x83\x18\xaf\x39\xef\xff\x8d\xfc\x58\x53\x01\x80\x30\x5b\x2d\xea\x29\x28\x91\x77\x54\xb4\x4a\x2b\xa6\xb7\x87\x6a\xa7\x56\xef\x71\xfc\x10\xfe\xa8\x67\xd8\xff\xa1\x65\x37\xa5\xb4\xfe\x85\xdc\x00\x9b\x6c\x3b\x53\xf3\x01\x79\xd9\xba\x36\x0f\x83\x2d\xb5\x18\xe2\x7a\xf1\x03\x66\xae\xff\x13\xd2\x33\x53\x11\x00\x82\xcd\xba\xa8\xae\xde\x22\xe3\x62\x99\xf5\x56\x59\xfc\xf0\x52\xb5\xa2\xf2\xed\xe0\x26\x81\xb5\xf6\x78\xff\x76\xca\x33\xc8\x96\xde\xad\x08\x67\xf3\xd2\xee\x91\x9a\x00\x84\xbe\x53\x9d\x3b\x86\x09\xee\xa0\xc7\x91\x70\xea\xb6\x55\xfe\xdf\x48\xd9\xad\x0c\xd0\x24\xa8\x33\xd0\x3b\x9f\x16\x7e\x58\x99\x61\xcd\x2e\xed\x5b\xf6\xe9\x7f\xfe\x8c\x0e\x0a\x5c\x6a\x63\x16\x67\x50\xd8\x90\xd9\x43\x17\x10\x89\xcd\x3e\x03\x35\xd5\x37\xe0\xdf\x7b\x8f\xe5\x6e\x46\xaf\xe8\x2e\x8d\x63\xe2\xdc\x3b\xf3\x67\xce\x27\x3e\x76\x08\x41\x97\x20\xc8\x98\xd3\xc9\x2d\xec\x5e\xf7\xc3\x72\xb3\x74\xfe\x1a\x8a\xaa\xbf\xe2\xf2\xca\xdd\xfc\xdd\x35\xeb\x96\x4f\xa2\x44\x37\x0c\x8e\x96\x21\xc6\x43\x3b\x46\xb8\xd5\x47\xe1\xd2\x41\x53\xee\x26\x74\x44\xdf\xc6\xb8\xc5\xd8\xd6\x9e\x39\x33\x05\x44\x6a\xdb\x7b\xf0\x92\x7f\xd4\xb8\x7d\xe4\x17\x66\x4f\x6d\x41\x17\x07\x97\xd2\x70\xdc\x92\x85\xbf\x08\x8d\x56\xc0\x88\x76\xd8\x71\xf6\x5e\x32\x13\x25\xc6\xd5\x53\x09\xb8\x90\x86\xed\x74\x1e\xf1\x5a\x41\x2c\xd3\x46\xdd\x90\xc0\x67\x07\x32\x67\xcf\x6c\x66\xef\x64\x63\x00\x90\x72\x05\xa1\x23\xf3\x50\x7d\x90\x9c\xce\x51\x4c\x05\x14\x6f\x56\xe1\xfc\x60\x02\xf9\x16\xc2\x44\xe4\x01\xf6\x3c\x92\x1f\x36\x08\x7b\x89\x92\x4d\xe0\x37\xe4\xd3\xb8\xe4\xeb\x8b\xce\x33\xd6\xd0\xab\x12\x82\x59\x35\x2c\xd2\xcc\xb9\xec\x19\x9c\x26\x00\xa4\x11\x82\x3b\xc3\xa9\x08\x4d\x33\xc2\x79\x12\x45\x84\x47\x98\x76\x61\x70\xc8\x3f\x65\xdf\x70\x06\xcc\x03\x96\x95\x70\x10\xff\x12\x5b\x4a\x9e\x42\x7a\x5b\x7f\x91\x4a\xa6\x81\x45\x6c\xfa\x7e\xe6\xec\xf8\x31\xa6\x80\xfd\xd8\xff\x05\x8b\xca\x35\x03\x20\xb9\x20\xbc\x3c\x58\xdd\xbc\x1e\xc3\xeb\x70\x85\xfd\x85\x3b\x61\x0c\x46\xe6\x10\xbe\x4b\xfb\xd0\x2b\xc8\xf5\xcc\x06\x5c\x38\xf5\x20\x26\x87\x70\x90\x11\x51\xf7\x8e\x8c\x60\x0d\xe5\x9f\xa0\xde\xe7\xba\xc5\x97\xd1\xb7\xf2\xa3\xfc\x57\x31\x7e\x0a\x6a\x00\x90\x00\xc9\x94\xfe\x96\xc6\x19\x54\xff\xb6\x62\x68\x0f\xed\x9a\xbe\x17\x16\xcf\x90\x4a\xb2\x11\x37\x59\x91\x8c\x68\xf4\x30\xfb\x6f\x74\x26\x4e\xc2\xdd\x56\x17\x40\x6c\xe0\xcb\xf2\x67\x51\x26\x08\xb3\xe3\x2e\x51\x9f\x8b\x8e\xfb\xab\xe8\xbd\x62\x1e\x00\xe2\x08\x19\xba\x97\x59\x77\x91\x57\x6a\xef\x82\x58\xf9\x2d\x3a\x5f\x28\x56\x50\x2f\x7a\x09\x2b\x14\x42\xe9\x93\x90\x8b\x44\x5c\x54\x1e\x06\x26\x36\xd4\x96\xe1\x99\x92\xa1\x3c\x05\xa9\x44\xba\x39\x8e\x4a\x49\x97\x0d\xf8\x13\x68\x65\xb2\x0b\x00\x88\xe0\x8a\xfe\xae\x8f\x55\x23\x9a\x5c\x5b\x7e\xed\x2e\x0d\x4a\xfd\xb2\xe1\x81\x86\x2a\x78\x07\xf5\xd2\xb0\xa8\x65\x30\x84\xc6\x80\x38\x85\xdc\xa7\x69\xaf\x09\xc1\x4e\xd1\x0c\xe5\xae\x22\xf8\x6a\x56\xc6\x7e\x22\x79\x6a\x46\xfc\x39\x94\x9d\x9a\x7c\x00\x84\x04\xf5\x72\xa7\xad\x5c\xdb\x3e\xc1\xe2\x5f\x75\xad\x6d\x8a\xf2\x57\x5d\x9a\x63\x2a\x3f\x01\xb2\xda\x3e\x9d\xbc\xab\x39\xa6\x35\x04\xce\x87\x1f\xb2\x05\x57\x4f\x47\x17\x58\x03\x73\x9e\xe0\xd8\x16\xdf\x58\x1b\x41\x62\x0e\xf5\xc7\x93\xb7\x9a\xfc\x40\xa6\xe0\xb4\x2e\xb7\xfd\x44\x29\x7f\xf8\x8b\x89\x54\xf1\x6c\xa8\x4a\x41\xa8\xe1\x0d\xe8\xb9\x07\xea\x7f\xf4\x2d\x21\x31\x9a\x46\x7b\xf6\xc2\xf0\xb0\xfa\xae\x63\x55\x79\xc8\xb7\xce\x33\x39\x30\x6c\x7e\xfb\x9d\x58\x38\x1e\xd6\x96\xe4\xaf\x25\x7d\x6f\xf5\x02\x2b\x04\x78\x03\xad\x7d\x6e\xc9\x8d\xe5\xc3\xc6\xb3\x15\xe5\x4b\x2d\xf2\x0b\xd5\x97\x96\x34\x72\xd3\xea\xb1\x23\xd3\x88\x5f\x9a\xdc\x07\x8f\xc0\xdc\x5a\x8e\xf4\x13\x2b\x7f\x22\xc9\x3d\xbf\x72\xd2\x30\xbf\x77\xad\x8b\xc5\xe1\x1e\x39\xf7\xfa\xaf\x27\x2d\x76\x78\x80\x47\x82\x08\x63\x72\xdb\xae\x12\xe6\xda\x2a\x23\xa1\xfc\xca\xaa\x3f\xe5\x9c\xea\xea\x15\x58\xce\xf3\xba\xdb\x4b\x2f\x11\x77\x37\xea\x96\xc4\xb4\xdc\x6d\x49\x1f\x96\x55\xbe\x44\x3c\x1c\xd8\x93\x93\x8b\xc9\xeb\x73\x8b\xed\xc6\x61\xba\x5b\xfd\x7f\x90\x02\xda\x4c\xe3\x92\xf9\xe7\x8d\xeb\x06\xae\xe2\x2d\xb5\x90\xf6\x0e\xc2\xc5\x86\x73\x86\xb5\xa4\x14\x68\x8c\xd4\x9b\xbc\x0b\x76\x94\x71\x98\x8a\x45\x71\xd1\x1b\xe8\x11\x38\xbf\x3a\x02\x13\x10\xcf\xe6\xc7\xb3\x6e\x51\x07\xe2\x8e\x71\x12\x99\x93\xfc\x7e\x72\x5e\xb3\xcb\x00\x90\xbe\x17\xd8\xfa\x7f\x60\x59\x90\x85\x6d\x67\x71\xaf\xa1\x75\xfa\xf7\x04\x0b\x0c\x2e\xe1\x92\x32\x90\x6b\x18\x09\x14\x1f\xac\x0b\x3a\x8e\xe6\x4a\x80\xd5\x7e\x62\xb8\x92\x0f\xe6\x5d\x65\xfe\xa0\x2f\x88\x93\xb0\xe9\xac\x4a\xbf\x0b\x9c\x26\x4e\x26\x00\xd2\x8d\xc2\xa4\xfe\x59\xe8\x96\xe6\x54\xc7\x57\xac\x07\xec\x87\x3e\x05\x77\x1b\xb9\x57\x7c\x92\x70\x10\xb3\x87\x3e\x48\x3a\x8a\x3f\x8e\x5a\x4f\xb9\x4b\x3a\x57\x6b\xa1\x03\xea\x83\x3c\x39\x73\x06\xe3\x6b\x5c\x02\xab\x9b\x7d\xd4\x6f\x29\x7b\x2b\x97\x0a\x80\x14\x22\x0a\xe9\x9d\x0a\xdf\x84\xf1\xb3\xc7\x22\xd7\xe1\xc4\xda\x95\xe8\x63\x84\x7d\x22\x2a\xf6\x25\x79\x0a\x8d\x45\x48\xa7\xca\x91\xab\x49\x83\xf4\x97\x35\x5b\x29\x3f\x59\x84\xdc\x9b\xf4\x3c\xce\x8d\xd8\xad\x8c\x9b\x7c\x17\x3f\x1e\x0b\x22\x48\x00\x40\xd2\x2a\xa9\xe8\xae\x6b\x9e\x44\x19\xb4\x19\x60\x18\x1a\x51\x13\x84\x38\xcb\x08\x10\x4e\x47\xc7\x30\xcf\x50\x4b\xb0\x7b\xd8\xbd\x88\xd5\x04\x38\x17\x57\x7d\x9b\xf4\x1f\x3f\x29\x37\x85\xca\x12\xba\xc4\x16\xd1\x67\x88\xfa\xfd\x20\x8c\x0f\xe2\x7a\x00\xc4\xbb\x64\x9d\x9d\x68\xc8\x0d\xee\x32\xcb\x45\x28\x95\x77\x42\xd5\x0f\xf3\xe1\x5f\xe6\xff\x8e\x58\x2e\xb8\x4b\x99\x8f\x26\x0a\x7f\xc2\x37\xe2\x16\x89\x67\x57\x4f\x26\xce\x94\x14\xe6\x0c\x93\x77\x4a\xa9\x31\xcf\xa9\x54\x19\xc1\x6f\x11\x7d\x83\x6c\x1d\x00\xa2\xbf\x14\x47\x3a\x26\xd5\x6e\x56\x67\x9a\x06\x1a\x86\xd5\x1a\x85\xb5\xa9\x53\xbd\x99\x7b\xa7\x45\xa6\x3e\x4c\xe2\x23\x6c\xea\xa7\xb0\x5c\xf4\x06\x8d\x4b\xe5\x0b\xdc\x61\xcd\xfc\xec\x8b\x44\x93\xa6\x38\x46\x43\x5e\xa4\x69\xf1\x6b\xa1\xf9\x69\x7c\x01\x10\xbe\x51\xef\x72\x0c\x57\x6d\x75\xfc\x66\x50\xd5\x9e\xb0\xbf\x91\xed\x6e\x78\x63\x9f\xc1\x09\x87\xfa\xb6\xc6\x11\x5e\xc2\xd0\xb6\xba\xe6\x8f\xc8\x5d\x56\x6a\xc5\x1f\x98\xaf\x16\x4d\xb6\x2f\xfe\x91\x79\x30\x26\x88\xb8\xc6\x74\xda\xaf\x91\xea\x69\x3c\x06\x66\x09\x6b\x74\x19\xad\x87\x2b\xec\x43\x6c\xdd\xbe\xea\x2b\x03\x6f\xa4\xd3\xea\xc3\xfb\x6b\x59\xbb\x1a\x29\xbd\x7a\xfc\xfa\xe6\x8b\xdd\x7b\xa1\xaf\x10\x85\x9d\x4f\x2b\xfc\xd0\xab\x9d\x9e\x59\xed\xb8\xcd\xed\xf9\xd1\xaf\x08\x16\xc7\x7e\x3f\x31\xa5\xd1\xd6\x05\xac\x82\xc7\x86\xda\xd6\xf0\xf2\x17\x4b\x3f\xeb\x82\xab\x13\x46\x3d\x25\xdc\x3a\xe3\x62\x77\x56\x22\xe4\xf4\xd0\x3d\x7c\x66\xf3\xc2\x81\x8d\xd0\x4e\xf8\x96\x3e\x51\xf9\x4d\x74\x60\x4f\x5a\x16\x13\x17\xdb\x35\x21\xfa\x3d\x61\xb2\x33\xd9\x6f\x31\xf9\x83\x5d\x0b\x8e\x09\x96\x1a\xfd\x6c\xc7\xcb\xc5\xab\xbb\xb4\xbb\xab\xb6\xad\x84\x4b\xdc\x6b\x7f\x2d\x77\x61\xde\x87\xe4\x8d\x3a\x70\xdf\xa1\x6b\x16\x4f\x82\x92\xe1\x61\x43\x9a\xf2\x63\xa8\x8e\xfe\x17\x59\x02\xec\xea\x5e\x4c\xcc\x1c\xbc\xbe\xeb\xbd\xdf\x3f\x64\x9a\xe3\xc3\xb8\x99\x82\x45\xc6\x36\x27\x93\xf2\xb1\x56\x64\xee\xa6\xfe\xd3\xf0\x5c\x19\x4b\x77\x83\x16\xf1\x22\x19\x95\xb0\xc3\x24\x3a\x73\x0b\xaa\xa5\xe5\x3d\x7b\x36\xf6\x5d\x65\x15\x67\x98\x38\x92\x75\x9c\x37\x9e\xda\x10\x75\x8c\xef\xca\x58\xe9\xc3\x10\x68\x58\x3b\x00\x90\x8f\x08\x3d\x3b\x34\xe4\x40\x48\x88\xe9\x2a\x25\x03\x5a\xa4\xe8\xa7\x72\x61\x8d\xdc\x7e\xda\x53\xa4\x8e\xf8\x94\xc1\xc7\x9c\x6b\x51\xb0\xdc\x09\x33\x2b\x9e\xb1\xd7\x93\x85\x59\x2c\xee\x42\xda\x8d\x28\x2b\xaf\x9c\x79\xdb\xa7\x8a\xff\x2f\x7b\x04\x00\x79\x8b\x70\x59\xbb\x85\x58\x0c\x7d\x6f\x9a\x44\x32\xc1\x4e\xcb\xff\x26\xff\x81\x6c\xe7\x7c\xa3\x2a\x31\x2c\x62\x33\x3d\x01\xcf\x6c\x19\xc7\x78\x45\xe2\x54\x68\x58\x5b\xa8\x9a\x2c\x7f\x4e\x23\xa3\x33\xaa\x8c\x2b\x67\x97\xfa\xa4\xf0\x51\x9c\x53\x00\xc8\x27\x88\xe4\x8e\x03\xd8\x23\xe8\x56\x03\x1a\x9f\x87\x7d\x28\xa3\x12\x1e\x10\x02\xd9\x1b\x48\xc7\x48\x42\x42\x36\xe5\x20\xe5\x45\xb3\x07\xed\x00\x1d\x51\xbe\x83\x71\x80\x79\x3b\x53\xc0\xea\xe4\x34\x45\x3e\x62\x9f\xe5\xa9\x7c\x7c\x79\x3e\x7c\x0b\x00\xb2\x02\x89\xd5\x1e\x88\x4a\x21\x8f\xe9\xee\xa3\xbf\x53\xbb\x25\x9f\xb1\x2f\xe9\xe9\x2c\x0c\x61\x06\xe3\x3b\xde\x9f\x54\xcf\xba\x01\xf5\xa0\xb4\x73\x36\x95\xdd\xa3\x9d\xe0\x39\x32\xee\x31\xce\x08\x18\x91\xad\xac\xe9\xa2\x49\x3e\x9e\x9c\xe3\xa2\x2d\x00\x48\x45\xb2\x23\x36\x23\xec\x2e\xa7\x57\x5b\x8f\xf8\xc1\x5d\x23\x76\xa0\x17\xf0\xd6\x33\x67\x62\xfb\xf9\x63\xd8\xcf\x84\x69\x42\x8f\x26\x1f\x92\x4e\x94\x5f\x36\x95\xf2\x52\x2c\xcf\x28\xa3\xcf\x90\xec\x8d\xcc\x66\xd0\xa4\x67\x7c\xa6\xb1\x8d\xb2\xa9\x00\x48\x56\x2b\xee\x9a\x1f\x43\xa3\x94\x74\xd5\x8f\x16\xbe\xf2\xac\x50\x0b\x7f\xa2\xf2\xa5\x17\xa0\xda\x54\x75\x18\x24\xb6\x4c\x35\x0c\xd9\x87\xff\xa1\x7a\x50\xf2\x1f\x69\x99\x3a\x2c\xdd\x42\x79\xa3\xa6\x46\x3c\xa6\xe5\xab\xd7\xfa\xc4\x33\x3f\xaa\x45\x00\x88\xb7\xab\x57\x1b\xb7\x36\x9c\x6d\x85\x29\xbe\x35\x39\x6d\x3b\xf9\x1b\x5a\x50\xb6\xf1\xd4\x11\x44\xb6\xb5\x1e\xf5\x02\x1d\x6e\x59\xd3\xa0\xc1\x79\x99\xdf\x97\x8c\x27\x3c\x31\xe7\xa6\xdd\x22\x97\x99\x5a\x23\x8c\x94\x25\xc6\x7f\x7d\x12\x18\xaf\x0d\x57\x01\x10\x7b\x6a\x7f\xe9\x6f\xd5\xbd\xe9\xb7\xc9\x61\x90\x9d\x7d\x19\xbc\x05\x50\x67\xcf\x69\x4a\x09\xac\xb5\x3b\x17\x79\x00\xe9\xec\xdc\x59\xaf\xc7\x0c\x3a\xe7\x15\x67\xe1\xed\xed\xbd\x69\x30\xd2\xd4\xb6\x09\x11\xd5\x64\x91\xfd\x9c\x4f\x0d\x23\xda\x5a\x0e\x80\xa8\x4f\xff\xaf\x7e\x66\x5d\xcb\xe2\x63\xb2\xed\x10\xbf\x91\x40\xee\xaa\xa6\xbf\x86\x1a\xc8\x67\x5a\xfe\x18\x60\x21\xeb\x10\xff\xf4\x19\xeb\x63\x31\xa0\xa7\xaf\xe8\x3b\xee\x5b\xd7\xfa\xb4\x4c\xa2\xc5\xf9\x7b\x44\x35\xe9\x6d\xc7\x5c\x1f\x2e\xfd\x64\xeb\x4c\x00\x44\x8d\x86\x9d\x3a\x5b\xed\xbb\x15\x21\xb2\xdc\x86\x81\x65\x29\xdc\xca\xa6\x96\xd1\x28\xb2\xaa\xa5\x7e\xe4\x17\xd2\x07\x81\x18\x3a\x5d\x0f\xd0\xec\x01\x67\xd1\x33\x1c\xb5\xaf\x25\xad\x80\xf0\xb9\x67\x6e\x84\x90\x84\xe9\xdc\xe7\xb3\x9f\x9e\x6a\x57\x03\x1f\xe1\x5b\x63\x82\xf9\x2e\x3b\xb3\xb6\x57\xb5\x9e\x7d\xaf\xe1\x3f\xc1\x55\xce\x5a\x68\x35\x4d\xcc\x75\xc0\x76\xa2\x89\x3c\x1b\x2a\xb3\x61\x98\xdf\x85\x3d\x51\xbc\x49\xb0\x86\x48\x4c\x5d\x2a\x3c\x44\x79\x3f\x7f\x86\xc8\xcc\xf0\xf1\xac\x91\x6c\x63\xb9\x00\xa0\xdc\x2e\x14\x98\x43\x99\x8d\x90\x40\xe5\x4f\x56\x12\x34\x4e\xb0\x88\x1d\x0f\x4b\xa2\x3e\xe5\x64\x23\xeb\x50\xf7\xb8\x18\x8c\xa3\x21\x94\xd7\x86\xbf\x54\x5c\xcc\x3f\x4e\x0e\x4b\x85\x08\xbe\xd0\x88\x61\x8f\x85\x63\xcc\x0c\xcf\x1c\x49\x12\xeb\x11\x00\x4a\x91\xf0\x95\x09\x4b\xe7\x42\x4f\x29\xcb\x19\x36\x98\x83\x3f\xc0\xdc\x87\x2c\xa4\x96\xb2\x9e\x61\x02\x50\x55\x9c\x78\xbc\x67\xfd\x2a\xae\x86\xe4\x51\x74\x8b\x77\x9d\x3a\x33\x75\x82\x20\x94\xe1\x19\xb6\x4d\x38\x91\x35\xe2\x99\x20\x5e\xc1\x99\x00\x80\x72\xbe\x68\x8b\xa1\x95\x12\x86\xfa\x2c\x5f\x49\x65\x61\x6b\x79\xbe\xb4\x1b\x78\x13\xf9\x23\xa3\x8e\xf8\x10\x19\xc9\xbc\x4f\x69\xa8\x5b\xcb\xa6\xd3\xce\x16\x4d\xe0\x7c\x66\x56\xa7\xd0\x78\x4c\xf6\x9e\x30\x2c\x1f\xc3\x3d\xe9\x19\x21\xa2\xf1\x8e\x03\xa0\x60\x48\x56\xeb\xe7\x10\xb6\x93\x4e\xca\x72\x48\x55\x94\xa5\x9c\x73\xe4\x5f\xb4\x26\xd2\x19\xea\x7e\x46\x28\x62\x16\xdd\xc2\x9a\x58\x7b\x98\x59\xc3\x7e\x5d\x58\xc0\x9e\xc6\xbd\x95\xfc\x84\xb3\x99\xbf\x3b\x2c\x98\xbb\x4e\x58\xe9\x99\x2a\x9c\x2b\xfc\x00\x80\x7c\x89\xec\xb4\x56\x83\xdd\xc3\x4e\x96\x8c\xe1\xc5\x1c\x24\xdb\x4c\x84\x71\xc5\xc4\xe5\xe4\x7a\xde\x36\xf8\x0c\x6a\x13\xff\x57\xcd\x1d\x7a\xbd\xb0\xb2\xc0\xc4\xcc\x12\x8d\x24\x63\xd9\x40\xfc\x32\xf4\x31\x67\x9c\xd4\xc5\xb3\x9a\xff\x4c\x0a\x07\x40\x76\x4d\x71\x46\x5d\x85\x7c\x28\xb7\x8b\x76\xa0\xff\x55\x8c\x63\xf6\xe2\xfc\x15\x48\xfc\x53\x42\x9d\xe2\xb7\x96\x4e\x52\xaf\x32\xaa\xba\x9b\x72\x49\xd9\xb5\x48\x47\xfb\x57\x05\x92\xb6\x30\x6e\xaa\x78\xa1\x4e\xe6\x65\xd5\x05\x4f\x22\x8f\xaa\x3a\x09\x80\xf4\x4f\x35\x5b\xe9\x0e\x7b\x61\x79\x21\xd8\x87\x4c\xb2\xc0\xe8\x37\xd0\xed\xe6\x23\xb8\x46\xec\x57\x73\x5e\x73\x12\x81\x6d\x3a\x59\x45\x25\xdd\x33\x95\xe5\x3b\xa9\x89\xc6\x8b\x49\x93\xe8\xb1\x46\x7c\x68\x06\x23\xd4\xe8\xe6\x29\xe5\x42\xf4\x47\x00\x90\x26\x68\x37\xca\x2b\x9a\x4f\xf5\x48\xf8\xf1\xf0\x92\x6e\x28\x8d\x83\xbc\xd0\x35\x19\x3b\x03\x53\xe3\x3c\x08\x9d\x8b\xbb\xd3\xc1\xad\xd4\x13\x69\xed\xe1\x79\xf7\xc8\x0f\x1c\x4f\x16\x3a\xa8\xef\xec\xbb\xe6\xfd\x4b\x7b\xd7\x7a\xca\xd3\xc6\x19\x34\xdf\x02\x40\xb2\x5b\xaf\x95\xed\x6f\x0e\x1d\x92\xf3\x56\xc0\x86\x07\x01\xf5\x05\x72\x7e\x3f\x16\xb3\x0c\xbd\xae\xf7\x50\xd3\x11\x5c\x5a\x4f\x40\x65\x32\xe1\x52\x97\x2c\x6f\x05\xb9\xca\xf9\x64\x21\x83\x4a\xea\xa0\xcf\xfb\x9b\x46\x68\x7b\xe4\xb9\x9c\x93\x6a\xfd\xdf\x3c\xc9\x31\x64\xca\x60\xd0\xb5\xa3\x1b\x78\xc5\xb0\xe9\x8b\xdf\x52\x9d\x88\x81\x11\x6f\x0c\x0c\xed\x37\x14\xdf\x64\xc7\x2e\x1d\x28\xa8\xf4\x22\x64\xf6\x61\xf3\x3a\x49\xfb\x7a\xcc\x0b\x39\x94\x2b\x5d\x97\x43\x3d\xa8\xa7\x9d\xd5\x9e\xf7\xd8\x9b\x6c\x77\x00\x90\x4c\x34\xec\x51\xbe\x12\x7e\xaa\x7d\x29\x9c\x2b\x6a\x84\x24\xd1\xef\x8a\xce\x41\x99\xb8\x58\x71\x09\xec\x00\xf4\xaa\xf8\x3a\x2a\xbe\xf2\xa4\x84\x87\xdd\x90\xd7\x27\x0d\x20\xa6\x2f\xf0\x91\x3e\xa6\x0c\x86\xfc\x29\xd3\xd3\x05\x53\xf2\x15\x27\x98\x03\x00\xa8\xef\x09\x5f\x28\x27\x09\x6a\x20\x11\x02\xba\xe0\x32\x34\x8e\x5e\x26\x64\xc3\x42\xb1\x23\xa2\x29\xc8\x44\x68\xb9\xe8\x00\x06\x55\x59\x29\x96\xe3\xfb\xf2\xe2\x24\x05\xa4\x7b\x89\xa7\xa4\xf3\xa8\x1f\x43\x8e\x4a\x2f\x31\x5a\xa7\x64\x29\x6a\x58\x14\x00\xd4\x4b\x44\xe5\x8a\x20\xde\x06\x68\x07\x7f\x1d\xbf\x16\x06\xa1\xad\x17\x4c\x43\x4e\xc2\x8e\x13\x9c\x45\x5f\x6d\xda\x2b\x1c\xc1\x1d\xaa\x38\x27\x92\x13\x77\xe5\x1e\x12\x63\x28\x7b\x13\x0d\x92\x46\x7a\x7b\xc8\x72\xe9\x64\xe6\x93\x29\x59\xf2\xe3\x6c\x03\x00\xea\x1a\xd1\x17\x99\x91\xcd\x41\xd9\x79\x01\x9c\x3a\xcc\x39\x6a\x18\xb7\x06\xf7\x15\xbd\x91\x07\x21\xd6\x37\x76\xf0\xa9\xe4\xe3\xe5\xa7\x05\x2a\x5a\x5e\xce\x13\x61\x37\xe3\x68\xc2\x6b\xd1\x3a\xf6\x8c\x10\x9a\x98\xc0\xf9\x31\xa5\x5a\xd6\xcb\x2b\x04\x40\xd5\x23\x39\x2f\xf9\xc2\x08\x20\x3e\xe1\x9c\x67\x96\x92\xf7\x51\xc6\xb3\xba\xa8\x42\xd4\x2a\xf6\x0d\x7a\x15\x64\x84\x1b\xc1\xcc\x28\xfb\xca\xe3\xb1\x63\x73\x52\xf9\x3b\xb8\xf3\x12\x54\x82\x7f\x78\x3f\x42\x72\x85\x1b\x05\xf2\x29\x7c\x69\x93\x50\x02\x80\xf2\x9c\x6c\x4c\xbc\x93\xf2\x93\x79\x8d\xdd\x4f\x53\xb1\xbd\x48\x6f\x18\xe3\x39\x39\xc8\x25\x4c\x0d\xb7\xad\x61\x0b\x7b\x22\xef\x6d\x59\x3c\x47\x2b\x68\xcc\x6e\xe7\xbe\x10\xee\x4b\xf0\xe1\x17\x89\x7d\x43\xfc\xf9\x3f\x25\x11\x53\x36\x48\x7c\x24\xaf\x00\x50\xbc\x55\x1c\x14\xda\x89\xa3\xd2\x6e\x66\x1f\x39\x4c\x36\x8b\xe8\x4b\x39\x2d\x1b\x40\xb8\xd0\x0c\xf2\x59\xf5\xe5\x8c\x52\xf9\xa6\x92\x9f\xcc\x5f\x8a\xfc\xac\x21\xf6\xa8\xe2\x6a\x3c\x97\xeb\xaf\x64\x05\x5f\xe6\x9e\x50\xde\x9b\x72\x41\x34\xa0\x4a\x00\x40\x31\x59\x9d\xc9\x67\xe3\x94\xa6\x10\xfa\x41\x42\x93\xf1\x0c\x5e\x46\xca\x32\x32\x60\x6d\x94\x08\x63\x70\x9d\x3b\x2d\xd0\x70\xbb\xf8\x19\xc3\xc5\xd0\x9b\xb9\x9f\x79\xcd\xd0\x18\x77\x83\x8d\x35\xc4\x05\x1b\x38\x13\x0d\xe3\xa7\xdc\x13\xda\x75\x7b\x00\x90\x43\xb4\xf5\xdc\x7f\x30\xba\xce\x7c\x5a\x0b\x4e\xe5\x2c\xc4\xc5\x11\x0c\x1d\x49\x2d\x2c\x92\xae\x3d\xbc\x36\x80\x62\x6e\x0b\x2a\x9e\x45\xeb\x72\xcc\xce\x9c\xcd\x30\xda\x23\xe2\x70\xac\xd0\x56\x58\x70\x32\xeb\xa2\xcd\x3e\xe5\x91\xe0\x9a\x49\x0c\x80\xec\xb2\xde\x9d\xcb\x44\x9f\xeb\x1f\x47\xbd\x8d\x3d\xd7\xbb\x0b\xbb\x05\x7f\xaf\xa7\xa1\xc5\x85\x78\xb7\xeb\xdf\x9a\x13\xe4\x27\x9d\x43\x45\x77\xa8\x9f\x9d\xb5\x19\x6f\xe8\x1f\x3a\xbc\xe2\xf2\x99\x3d\xed\x13\x83\xe7\xb3\xf2\x1d\xa8\x29\x6f\x04\x02\x8b\x1b\x00\x32\xab\x7e\x3f\xd7\x07\x9d\x3d\xfc\x8b\xaa\xc3\xe6\x0c\x49\xb1\x30\x7c\xed\xc0\xcd\xe6\xa3\xc4\x92\xfe\xfc\x9a\x41\x72\x59\xef\xca\xa2\x43\x54\x5c\x4f\x48\xc6\x23\x3a\xba\x6b\x7d\x5c\x01\xe3\x7b\xa7\x38\x38\x9d\xb9\xa4\x7d\xd4\x23\x90\xff\xda\x5a\x0a\x80\x6c\x8e\x21\x97\x29\xd7\xce\xac\x43\x12\xbf\x6b\x0e\x42\x06\x91\x77\x34\x4e\xe8\xe1\xc6\x08\x0d\x0f\xf6\xa6\x62\x4c\x43\x44\x65\xe7\x8f\x69\xc8\xd8\xde\x94\x2d\x1a\x35\xe1\x5b\x64\xa1\xe6\x24\x25\xca\xff\xae\xb6\x99\xb6\xcc\xf5\x9d\x6e\x0e\xf3\x3a\x00\xba\xa3\xa2\xa7\x8c\xaf\x6a\x1a\x04\x4a\x54\xa9\x0b\xa1\xb5\x48\xaa\x7a\x11\x2c\x0d\xb2\x4b\x5d\x8c\x8c\xa8\x20\xab\x5b\x30\xa9\xf9\x02\xb5\x14\xdf\x98\x82\x55\xaf\x27\xc9\x23\xa7\x6a\x26\x51\x89\xfe\xe7\x35\x4b\xe9\x43\xae\x3f\xb4\xeb\x59\x16\x00\x74\x1a\x71\x20\x83\xad\xfc\x0d\xaa\x22\xbc\x57\x9e\x81\xa5\x20\x9e\x28\xff\x46\xdc\x87\x64\xa9\xa6\xa3\xbb\xca\xdf\xab\x8a\x70\xd4\xfc\xa9\x2a\x2d\xb1\x2a\xc5\x43\x75\x96\x92\x1c\x71\x5f\x9d\x4d\x7b\xec\x7f\x50\x7d\x9d\x71\xdf\x6d\x92\x36\x8c\xdd\x09\x80\x2e\x41\xbc\x92\x9e\x28\xeb\x44\x01\xfc\x5e\xd9\x3f\x98\x44\xf8\x4e\x39\x1a\xd7\xd2\x10\x2d\xff\x8d\xb0\xbe\x7c\xbc\x22\x94\xec\x9f\x97\xab\x68\xa7\xb6\x27\x63\x94\x80\x31\x31\x82\xa1\x74\xb0\xb2\xfd\x97\xab\xe6\xb0\xef\xb9\xc5\x68\x00\xaf\x08\x00\xad\x58\x9a\x4d\xbd\x23\x3e\x4b\xe8\xc5\x69\x25\x25\x24\x25\x6c\xaf\xe4\x14\xa5\xa1\x7e\x91\x14\x41\x4b\x2e\x4b\x90\x7e\x65\xc4\xe4\xda\x65\x1d\xac\xc8\xa4\x4b\xf2\x70\x4e\x78\x44\x80\xfc\x02\xf7\x3f\x7f\xa7\xa2\x91\x5f\xec\x06\x53\x5d\x11\x6a\x00\xd0\x6c\x95\x7b\x51\x08\xc2\x59\xf4\xa3\x58\xa8\x70\x3b\x33\xb9\x65\xb7\x08\xc6\xea\xa9\x43\x88\x03\xd9\x3f\x4b\x91\xe2\xe7\x5c\x59\xce\x1d\xc9\x4a\xde\xb7\xa4\x1c\x29\x5c\x20\x0e\x3f\x25\x0b\x14\xbe\xf2\x37\xca\xfa\x44\x4f\xdd\x46\x94\xa3\xd2\x71\x00\xa8\x9f\x2b\x6e\x92\xd6\x72\xb7\x89\x96\xa3\xf7\xf1\xc8\x62\x71\xf3\x4c\x7e\x83\x24\xbc\xe6\xb3\x20\x4f\x72\xbf\x64\xb6\xb0\x5a\xba\x32\xfb\xbc\xa8\x40\xc6\x58\x48\x16\xc7\xcb\x53\xc2\xb3\xc4\x6f\x14\xe3\xfd\x4b\x24\x30\x85\xc4\x6d\x4c\x11\xa9\x1c\x05\x40\x75\x5f\xed\x47\x78\xca\xda\xaa\x43\xa0\xc2\xd9\x9b\x75\x15\x4d\xd7\x39\x87\x74\x91\xd5\x63\xdc\x3b\xba\x88\x62\x7f\xbe\xbf\x2e\x31\xdb\x55\x10\xaa\xcb\x5a\xb0\x4b\x58\xae\xab\x99\x7f\x5f\xe4\xa5\x53\xfb\xcf\x12\x6d\xd4\xe9\xdd\x3e\xca\xa7\x6a\xf5\x00\xa8\x42\x34\x6f\xf1\x47\x18\x26\xc7\x6a\xc4\x67\xe6\x71\xfb\x8b\xc6\xbd\xac\xef\xf6\xe8\xaa\x73\x9c\x94\x56\x7d\x11\x84\xcb\xb7\x3d\xca\x2a\xe3\xed\xb3\xd5\x2c\xc8\xe0\xbf\xb6\x9e\x9b\x4f\x13\x5c\xb4\xb2\xfd\xee\x0b\x1d\x96\xd2\x89\xae\xb2\x3a\xc3\x6f\x00\x28\x47\x74\x1c\xbc\x37\xfd\x65\xe7\x25\x84\x80\xe9\xe3\xfc\xab\xb1\x98\x55\xd3\xf1\xa1\x8a\xc3\x56\x77\x4c\x29\xf2\xe1\xec\x6b\x0f\xcb\x9a\xc1\x73\x6f\x6b\x5c\xe0\xcf\x2f\x70\x0c\xcf\x87\x08\x62\x1d\x3e\x7e\x77\x04\x3f\x6c\xbb\x27\x4e\x91\xfe\x6d\xf2\x02\x40\xd9\xa0\xf7\xc6\x19\xe8\xc2\xbe\x32\xc4\x14\x86\xb9\xb7\x1c\xf2\x2f\x73\x67\x4f\x4a\x55\x06\xeb\x5e\xf7\xec\xc2\xf7\x9c\x49\x5d\xae\x59\xe3\xb9\x88\xce\xc9\x0b\x7c\x78\x7d\xce\xc4\xf9\x48\xbe\xba\x23\xc9\xef\xa3\x00\x62\xdf\x37\x31\x4b\x4a\x36\xa7\x01\xa0\x78\xae\xef\x45\x5c\xb4\xdf\xab\x2f\x6d\x8a\xb1\x7b\x36\xe6\x54\xff\x6a\x6d\x6a\x4e\x2c\xa9\xb6\x75\xc1\x33\x72\xdd\xac\xf7\x50\xe4\x94\x60\xeb\x22\xec\x92\x18\x1f\xcb\x19\xc2\xcd\xe0\xdd\x96\x6d\xe4\xd3\x9e\x75\x96\x5b\xd4\xef\xe3\x04\xa6\x0e\x76\x2c\x00\xc6\x54\xc9\x42\x44\x43\xab\x02\x72\xbe\xf1\x84\x6d\x3f\x74\xa4\x7a\xa3\xcd\x0b\x46\x2a\xfe\x65\x65\x21\x33\x72\x8e\x58\x6e\x62\xe2\x93\x9f\x58\x1a\xf1\x09\xd1\x4f\xcd\xef\x48\x09\xc1\x4b\xcc\x2f\x29\x8f\x3d\xe1\x96\x19\xb4\x9b\xe3\x3a\x4d\x41\xec\xfd\x00\x18\x5e\x4b\xf2\xe1\xe7\x6d\x01\x50\x5d\x63\x93\x95\x00\x8b\xab\xae\xb5\x9c\x44\x5c\x2a\xde\x68\x29\x44\xb3\x73\x38\xe6\xb3\xb8\xc4\xe4\x51\x33\x92\xf0\x2b\x7a\x8b\x79\x2a\xf9\x74\xb0\xcd\xec\x43\x2b\xf0\x24\x98\xf3\x18\x2e\xe3\xb6\x18\xfb\x38\x9b\x01\x30\x0c\x48\x96\xc3\x5e\x98\xe7\x23\x21\x10\xa9\x69\x0f\x7a\xa8\x4a\x61\x42\x62\xaf\x14\xbd\x34\x8d\x23\xcc\xc9\x3e\x66\xdc\x4e\xb2\x24\x7b\x1a\xe9\x94\xaf\xd1\xb9\xc6\x0c\x3a\x31\xb8\xdc\x58\xc3\x14\x7a\x0a\x8d\x7a\xd6\x5f\xe3\x5e\x19\x04\x7c\x08\x00\xfa\x5b\xd2\xef\x2d\xcb\x0d\x7d\x78\x4a\x03\xdd\x90\x44\x24\x55\xae\xd3\x3f\x21\x57\x14\x45\xe9\x77\x53\x53\xb3\xfd\xf5\xdd\xf4\xb4\x24\xad\x9e\xc9\xcc\x8f\xba\xac\x6f\x62\x2f\x0a\x0e\xd6\x2b\xb8\xd3\x3c\x2d\xfa\xfd\xbc\xc2\xf1\xb1\xfa\x6c\x91\x1d\x00\xdd\x4f\xf9\xea\x66\x93\xce\x85\xfa\xad\x5e\xa1\x3d\x40\xb7\x55\xdc\xd4\xda\x98\x13\x0a\xe9\x5a\x13\xcb\x96\xc5\xd0\x5a\x39\x21\x0b\x3f\x68\xb5\xdc\x03\x51\x24\xad\x8a\x5f\x37\xfb\xad\x76\x93\xe0\x86\xe7\x32\xdd\x24\xe1\x9d\xf1\x0c\xdd\x6c\xe9\x62\x00\x74\x49\xca\x6c\xa8\x5c\xa5\x16\x4c\xaf\x5b\xa4\x52\x0a\x3e\x95\xef\x54\x69\x84\x97\x0b\x4a\x54\x47\x45\x7b\x32\xf1\x6a\x57\xf1\xa6\x85\x7e\xea\x58\xc9\xa6\xc8\x5d\x6a\xa4\x74\xe3\xec\x76\x35\x57\xb6\xd1\x73\x50\x7d\x45\x8e\x1a\x7f\x5c\x33\xa4\x34\x01\xa0\x9d\xab\xce\x6c\x5c\x26\x3f\xa7\x72\xd6\x7c\x96\xdf\x53\x9d\x2d\x5b\xa9\x98\xa4\xfa\xb9\x48\xaa\x68\x56\x57\x64\xec\x51\x1c\x53\x6f\x58\xa0\x55\x4e\xd3\x4c\x8d\xcc\x55\x92\x34\x92\xd9\x65\x4a\x9d\xe6\x95\x67\xa7\x2a\x4a\x3b\x73\xfc\x4f\xb5\x4c\x73\x06\x00\x0d\x54\x73\x0a\xb2\x49\xba\xd6\x72\xb8\xfa\x97\xf4\xb9\x45\x57\x7a\x42\x96\x64\x49\xce\x3f\x2d\x33\x98\xdf\x67\x94\xc8\x6e\x9a\x0f\x2e\x48\x96\x97\x9b\x87\x22\xe7\xc8\xb7\x99\x1d\xb3\x33\xe4\x5f\xcc\x03\x9e\xdb\x14\x9f\x8d\x0f\x5d\xd2\x55\x6b\xf5\xff\x73\xf3\x98\xce\x0f\x52\x29\xb9\xee\x70\x56\xaf\x94\xce\x72\xcc\x2d\xa5\x4a\xa5\xf6\x15\xf9\x6a\xe9\x29\x7b\x5c\x86\x97\x2c\xa0\xf5\xe8\x82\xa9\xb2\xde\x56\x41\xa4\x9b\xdc\xb5\xb5\x60\x76\xb4\xbc\xda\x76\xde\x73\xbb\x82\x6c\x7e\xe1\x92\xaf\x2a\x32\xac\x06\x40\xad\xd2\x75\x41\x5c\x25\xf3\x9c\xc7\xab\x31\x12\xae\x33\xbd\x34\x42\x32\xd6\x31\x9c\x5f\x27\xf5\xeb\x70\x49\xff\x57\x8a\x6b\x17\x2f\x00\xd2\x87\xed\xd3\x22\xdd\x65\x8d\x6d\x63\xb3\x33\x64\x9d\x0e\x81\xe7\x45\xf9\x7e\xeb\x4a\x17\x8a\xf2\x98\x71\x25\x00\x6a\x3f\xbd\x4f\xc5\xe8\xc0\x60\xfd\xb6\xe2\xf8\xbe\x1f\x8d\x7d\x79\xb3\x7b\xad\xcd\xfc\xf4\xf2\x9e\x1c\x78\x4b\xe2\xcb\xee\xf1\x28\x4c\xe4\xc7\xce\x3f\xb0\xac\x90\x8b\x9d\x1e\x04\xb6\xaf\xd2\xf9\x88\x3c\xd7\x3d\xb7\x6d\x0f\xcd\x0e\x80\x2d\x83\x8b\x07\xc0\xbc\x48\xaa\xad\x50\xf4\x47\x37\x4e\x2a\xfa\xd9\xbb\x19\x7a\x3c\xf7\x45\x0f\x14\x26\x4c\x9f\xd5\x1d\x8a\x9c\x9f\x78\xa2\x6b\x3c\xfa\x4b\xe4\x1d\xe7\xbf\xb8\x5b\x21\xc7\x9c\xb1\xc4\x55\xbe\x4a\xe7\x14\x4a\xa0\x3b\xcc\xf1\x85\x9e\x0f\x80\xf5\x08\xf7\x38\x00\xa6\x7f\xa4\x94\x8a\xca\xde\xbd\xd0\xae\xa2\xdf\x7b\x10\xb0\xf9\xb9\x1b\xba\x67\x21\x36\xa5\x3d\xeb\x1a\x8f\x8e\x4d\xec\x73\xfe\x8b\xbd\x14\xb9\xaf\xe3\x3b\xc1\x10\xb2\xb9\x23\x97\x3c\xcf\x57\xd7\x31\x87\x8a\x77\xe7\x3b\xe6\x33\x6a\x01\xb0\xa6\xf0\x06\x01\x30\x75\x4a\xd7\x95\x6b\xba\x03\x11\x97\x8a\x02\x3b\xef\xa2\x3d\x73\x67\x39\x7f\xc7\xe6\xa5\xd1\x3a\xce\xe1\xb5\x89\x71\xed\x4f\x88\xb7\x23\xa9\xed\x13\x28\xf9\x21\xca\x36\x18\xad\xcb\x57\xd8\x96\xc3\x60\xb9\x2f\x6e\xe5\xb2\x7d\x00\xb0\x4c\x12\xba\x00\x60\x3c\x2c\xbb\x52\x76\xd7\x09\xc5\xb5\x17\x52\x3a\xf0\x04\x7a\x0e\xaf\x9d\x45\x2a\x4e\xbd\xde\x36\x40\x59\x90\xb0\xd5\x31\x46\x5b\x10\x39\xd9\xe1\xce\xc8\x0d\xc9\xb7\xd3\x59\xa9\xbe\x7c\x7b\x11\xfb\xb9\xfb\x59\xeb\x16\x1e\x1e\x00\xd3\x15\xf1\x31\x00\x0c\x8f\x15\xd5\xa5\x1f\xdb\xe7\x53\x38\x05\x2b\xdb\x66\xd1\x40\xf6\x39\x47\x22\xdd\x94\x5a\x68\x97\x31\x03\x12\xd2\x5b\x2f\xb0\x0e\x46\x6c\x6a\x0d\xe4\xb0\x43\xdc\x6c\x26\x9e\x87\x2f\xcb\x06\xe1\xb7\xbb\x7f\xb7\x8c\x17\x7e\x02\xc0\xb8\x51\x46\x01\xc0\xe0\xa5\x3c\x5e\xb2\xab\x75\x13\x57\xb5\x68\xb3\xed\x2f\x5e\x77\xb6\x87\x2d\x99\x3f\x9a\xd2\x6f\x5d\x2b\xd8\x12\xbf\xd4\x1a\x2a\x1c\x8b\xc8\xb5\xf4\x8b\x7e\x05\x9f\xb6\xcc\x92\xcc\xf7\x15\x9b\xcf\x4a\x73\x27\xd5\x19\x2f\xcb\x89\x00\x18\x82\x95\xdb\x01\xd0\x3d\x53\x6b\x8a\x0f\x58\xfe\x96\xfd\x97\x7f\xd7\x52\x26\xb7\x67\x11\xcc\xbb\x14\x53\x53\x66\x9b\x93\x15\x83\xf1\xe5\xa6\x93\xca\xb4\xf0\xcf\xa6\x66\xe5\xab\xe0\x41\xe3\xdf\xaa\xa5\xbe\x52\xe3\x4a\x35\x74\x52\x9b\x21\x46\x93\x04\x80\xee\x87\x86\x02\x80\x6e\x9a\xe6\x6a\x71\xb0\xe9\x99\xa1\x25\x3f\xd1\x54\x60\x50\x65\x1e\x32\x1e\x34\xb4\x25\x77\x1a\x4b\x0d\x9b\xe2\xde\x19\x9e\x18\x6e\x85\x1f\x34\x98\x8c\x51\xc1\x3a\x43\xbe\x51\xef\xab\xd5\x7f\x32\xd2\x27\xed\xd0\x3d\x36\x04\x81\x00\xdd\x4c\xdd\x2e\x00\xb4\x1c\xed\xcb\xa2\x6e\xe3\x57\xcb\x91\xbc\xdb\x46\x9c\xe5\x50\xa6\xd2\xf0\xc2\xb2\x39\x19\x6a\xe0\x59\xd6\xc6\x9d\x35\x4c\xb0\x1c\x08\xdf\xa8\xdf\x66\x79\x1d\xac\xd3\x73\xac\x71\xbe\x03\xfa\x60\x8b\xdf\xa4\xbb\xba\x7c\xe3\x35\xb0\x50\xbb\x4e\xbf\x19\x00\x6d\x8c\xae\xaa\xc8\xcf\x18\x65\x1f\xce\xb3\x1a\xfa\xed\x96\xcc\x5a\x43\xa8\x9d\x98\x5c\xa0\x5f\x6e\xaf\x8a\xfb\x4d\x3f\xdf\x5e\x1f\xbe\x43\xf7\xd0\x2e\x0e\x1e\xd4\xad\xb4\x67\xfa\x5e\xd4\x65\xda\xaa\x26\xcf\xd1\x9a\xcc\x95\x80\xa1\x0d\x31\x74\x01\xa0\x39\xa5\x3b\x50\x38\x7e\xc9\x92\xfa\x5b\x39\x63\x23\x67\x1a\x97\xa5\x4f\x1d\xf6\x6e\x26\x2f\xb0\x0f\x8e\xc0\x53\xa2\x35\x03\xf9\xa8\x79\xf3\x9e\xf4\x8f\xc7\xfa\x06\xba\xf5\x45\xe2\x5f\x7a\xaa\x7b\xb9\xa4\xbd\xae\x79\xce\x50\xba\x07\x00\xad\x0f\x79\x62\x00\x2c\x51\xd2\xcf\x05\x0f\x16\x67\x36\xce\xcd\x59\x3f\xac\x85\x1e\x4e\x7b\x31\xf8\x14\xd6\xbc\x80\x33\x60\x42\x7c\x88\x66\xf5\x67\xa3\xd7\xcf\xbb\xd7\x37\x15\xc7\x0d\xf4\xec\xcd\x21\xfa\x79\x9a\x7a\x9c\xe4\x15\xae\xe8\x0e\x3c\x7d\x13\x00\xad\x38\xde\x01\x00\xcc\x63\xd2\xb1\x82\x2d\xc3\x57\xa0\x8b\x73\xe4\x43\x49\x30\xef\xb4\xbd\x03\x5b\x11\x9a\x05\x95\xfd\x44\xd4\x5f\xd1\x35\x7d\xf1\x58\xfe\xbc\x33\xbd\xd3\x08\x9e\x81\x93\x7a\x8a\x49\x76\xcf\xee\xee\x21\xca\x63\x57\x59\x7b\x07\x63\x3b\x00\xb6\x8b\x7c\x09\x00\x66\x86\x6c\x62\x41\xc2\xa0\x17\x62\x4f\x0e\xe8\x5f\x85\xba\x9c\x56\xd1\xd7\x84\xf9\x33\xf1\x55\x6f\x2c\x3e\x20\xda\xb5\xc7\x87\x48\x98\x37\xd8\x3d\x89\xbc\x3f\xe0\x4b\x57\x35\xf5\x9d\xe7\x40\xe7\x0a\xfa\x43\xd7\xf5\x8e\xdb\x6c\x36\x00\xd6\xc5\xc2\x4d\x00\x98\xba\xe5\xb3\x16\xb5\xf7\xb1\x70\x1e\xd9\xd4\xde\x34\xfc\xab\xd4\x9d\x3d\x9e\xc4\x43\x89\xcc\xee\x71\xe4\x95\x51\xcb\xbb\x00\x75\x78\x5e\x43\xe7\x24\xfa\x68\xc0\x75\x67\x2d\xd3\xe4\xb9\xa1\xc3\xc9\x6e\x72\x7d\x60\x0f\xe4\xfd\x0e\x80\x05\x27\xc9\x03\xc0\xb8\x55\xd1\x96\xff\xa4\x27\x8e\x7c\x30\xeb\x44\xd7\x67\x6a\x45\x6a\x68\xe7\x5d\xda\x58\xc2\x5b\xe7\x33\x06\x3e\x6a\x51\xc7\x0f\xd6\x84\x79\x9e\x1d\xd3\xd9\xbb\x02\xf6\xb4\xc3\xb9\x15\x9e\x87\xdb\x8c\xbc\xcf\x6e\x33\x6d\x6c\x11\x06\x00\x73\xaa\xec\x7f\x66\xdd\x51\xfe\x9b\xb7\xdd\x79\x9d\x43\xc9\x7c\xd7\x31\xc6\x6d\x4d\xe9\x6f\xbf\xcf\x5b\x9e\x20\x68\x9f\xc4\x3f\x14\xf9\x47\x5b\xa6\xe0\xcd\xdc\x5b\x0e\xb6\x28\x3a\x60\x8b\xfd\xa4\xb8\xc9\xf3\x4b\xeb\x25\xc9\x6a\x37\x8b\x25\x5f\xde\x0a\x80\x71\x85\xf2\x30\x00\xfa\xb5\xea\xc1\x3c\xbf\xf6\x40\xa9\x26\x93\xdc\x16\x2b\x0b\x4b\x99\xe7\x80\xca\x0e\x27\x44\xda\x1d\x72\x62\xe4\x96\xd6\x4b\x8a\xa0\xb9\xfb\x5b\x67\x2b\xde\x04\x6c\xb3\x59\x95\xdb\xbc\xc2\xac\x76\xd5\x4e\xb7\x7b\xa6\x76\xf5\x7d\x00\x0c\x3c\x4d\x3a\x00\xba\x8b\x9a\x23\xb9\x87\xec\x9f\x74\xba\x8c\x17\xf6\x69\xba\xfd\xc9\xa3\xad\x45\xba\xf7\xf1\x7b\x6d\x7a\x7d\x56\x24\xd7\x7a\x41\x3f\x3a\xb7\xc7\x9a\x60\xf0\x09\x58\x63\xd9\x69\xe8\xf5\xaa\x34\xef\x36\x94\x4c\x0c\x33\x16\xea\xe9\x00\xe8\x1d\xba\xe6\xff\x89\xa3\xdd\x97\x5b\x64\x07\xa6\xd3\x19\x4b\x5a\xe7\x98\xee\x26\xd3\x6d\x18\xd3\xdb\xf8\x2e\xeb\xa8\x39\x28\xb2\xc9\xf2\xd4\x4c\x98\x6b\xb7\xd4\x98\x4f\x06\xac\x33\xdf\x35\x7f\xf4\xa2\x98\xee\x9b\x36\x4e\xac\x37\xac\xfc\xff\x5b\x79\x80\xbe\x06\x00\xed\x73\x5d\x4c\xce\xb5\xd6\xf9\x36\x6b\x06\xcc\x56\x6e\x6b\x4d\x2e\xb3\xda\x6c\xad\xf1\x06\xcb\x01\xdb\xa6\xc8\x62\xf3\x27\xdb\xbf\x73\xfb\xcd\xd4\xd6\xaa\x80\x73\xa6\x7f\x6d\x47\xbd\x56\x18\xff\xb1\xec\x9d\x38\xac\x7f\x61\x42\x02\xa0\x6b\x37\x44\x00\xa0\x6d\xd7\x99\xb3\x55\x2b\x9e\xd6\xff\x95\xc6\x5c\xf6\xa2\xb1\x63\xc1\xa5\xa5\xbe\xcd\x29\x31\xd2\x25\xfd\xb0\x3f\xc2\x86\x17\xa7\x23\x37\xcf\x5e\x38\x02\x30\x72\x5f\xde\x70\x33\x7e\xc6\x94\xd2\x81\x47\x24\xde\xf8\xbd\x5d\x81\x74\x35\x00\x8e\x2a\xfe\x3c\x00\x2c\x6f\x65\xb1\xd9\xd0\xe5\xd6\xc6\xf0\xb4\xda\xa5\xab\xa1\x2b\x16\xec\x59\xf2\x02\x16\x18\x43\x5b\xac\x42\xf4\x86\x0d\x8e\xc4\xa3\xe3\x66\x67\x0c\x8f\xc7\x5e\xf0\x6d\x1d\x42\x11\xb2\xa7\x60\xfb\x3f\x93\x9b\xc7\xdf\xec\x6c\x62\xf8\x00\x60\x3f\xc9\x6f\x06\xc0\xd2\x2e\xfd\x37\x7b\xfe\xb2\x18\xe8\x48\x5a\xe8\x28\xae\xe5\xf5\x82\xae\xc5\xfb\x10\x19\x31\xf5\x23\x48\x94\x36\xcc\x3e\x1c\x88\x79\x3d\x3b\x6d\xf0\x0b\x9e\xe2\xdb\x37\xd8\x4c\xdc\x32\x45\xd8\xf7\x99\xd2\x3e\xfe\x83\x53\xcb\xf4\x04\xc0\x1e\xcf\xff\x05\x80\x65\xbe\x2c\x3c\xeb\xed\x92\x2c\xc4\xea\xd4\x7b\x23\x07\x51\x3d\x0b\x0a\x86\xe1\x18\x5d\xcc\xf4\xa1\x59\xb8\xd1\x30\xcc\xc0\x47\xc2\xe5\xd9\xf3\xfb\x9f\x90\xa7\xf9\xae\xe8\x2f\xa0\x06\x4e\x71\xf6\xbc\xa0\x3b\x5d\xe6\xb5\x9f\x62\x9f\x03\xc0\xf6\x51\xe4\xfb\xff\xe9\xa6\xe4\xac\xea\xe1\x3d\xd8\xd1\xd4\xfa\x21\x24\x5e\x9a\x78\x60\x30\x98\x98\x1d\xbd\xaa\xff\x23\xd9\x2b\xcc\xb3\xef\x01\xe5\xe3\xac\x77\xbd\x37\x69\x7f\xfa\xf6\xf5\x26\x32\xd6\x4d\x59\xd7\x75\x80\xed\xe2\x02\x6d\x73\xe3\xc7\x03\x60\xdd\x2e\xb1\x03\x60\x42\x2b\x56\x65\xde\x19\xc4\x93\x17\xa4\x9c\x1d\x08\xa6\x6c\x4b\xcc\xea\xfb\x40\x8b\x89\xce\xe9\xbd\x4b\xdf\x16\x7a\xbc\xe7\x1a\xb3\x6c\xd6\xf1\xee\x6b\xac\x37\xbe\x6d\xdd\xe1\x1c\xca\x94\x63\xce\x61\xde\x6a\x17\xa7\x1d\x21\xba\x03\x80\xc5\x20\x7b\x09\x80\x51\xa1\xf2\xc8\xd8\xd5\x17\xc9\xb6\xa7\xf8\xf7\x02\xce\xb6\x84\x47\xdd\xaf\xb9\x67\xa2\xbe\x74\x3d\xe7\x3d\x0f\x1d\xe9\x7c\x2b\xf0\x9f\x75\xa2\x73\xa2\xb0\xd9\x77\xaf\x13\x2f\xe2\x7b\x04\xb5\x9d\x96\x10\x26\x78\xda\x12\xe4\x6b\x01\x30\xbd\x56\x9e\x06\xc0\x50\xa5\x5e\x9c\x21\xea\xa6\x49\xea\x93\x2f\x74\xd5\x4b\x7e\x25\x2c\xee\x84\x48\x57\x47\x5d\x70\x62\x64\x2d\xa1\xd6\x0e\x91\x3c\x78\xd6\xe5\xf6\x15\xf2\x4f\xbe\xaf\xda\xbd\x14\xdb\x3c\x44\x76\xb5\x2a\x73\x82\xcd\x22\x55\x77\x01\x60\xdc\xa9\xf1\x06\x40\xcf\xd0\xec\xc8\xc0\x77\x06\x6b\xdd\x92\xb5\xce\xe9\xda\xba\x84\xf4\x8e\x30\xed\x48\x94\xb2\x3d\x4d\xfb\x33\xb4\xa6\xad\x5e\xa7\x9b\xb5\xdd\xd1\xaf\xf7\xf4\x7d\xe9\xf0\xd3\x1b\x3c\xd6\xda\x96\xe9\xeb\x26\x3c\x31\xc7\xea\xc6\x00\x30\x5c\xd0\xb9\x00\xa0\xbb\xa9\xed\x4d\xff\xe4\x0c\x31\x2e\x4c\x2e\xec\xf0\x33\x42\x13\xbc\xdb\x63\x8d\xea\x28\x7c\x5b\xb6\xf1\x42\x68\xae\xa3\xd1\x54\x34\x6b\x9b\x7d\x99\xe9\xac\xef\x67\x7b\x98\x69\xc4\xe3\x9c\xf5\x77\xa3\xd9\xd5\xdb\xe4\x30\x94\x00\x60\x80\xe9\xfe\x06\x40\x37\xa0\x7d\x97\xde\xd5\x91\x69\x79\x90\x3c\xb9\x3d\xc1\xf2\x3a\xfe\x4b\x5b\x81\x75\x7c\x54\xb3\xa3\xdc\x0a\x09\xcd\xb7\xb7\x58\x6f\xcd\x3a\xda\xba\xda\x36\x73\x46\x60\xeb\x3c\x6b\x86\xc7\x4f\xcb\x55\x33\xc7\xb5\xc6\x78\xd3\xd8\x07\x80\x7e\x4c\x7f\x0e\x00\x5d\xba\x4e\x32\xf0\x0c\x36\x56\xb9\xbf\x3d\x1a\xd1\x57\x4b\x32\xc4\xa2\xb8\x0d\xdf\x25\x34\x4c\x1b\xf4\x12\xfd\x3d\xee\x22\x7c\x0f\xea\x00\x31\x00\xbd\xba\x16\x42\x16\xe3\x17\xe7\x3e\xa7\xfe\x41\xde\x1c\x2b\xa1\x6b\xe8\x99\x33\xe0\xcc\xd3\xcc\x12\x00\x24\x23\xbc\x9d\xfd\x37\x9b\x39\xb5\x07\xda\x20\x30\x2a\xc4\x57\x8f\x43\x28\xa1\x68\xf1\x6e\xd4\x45\xd8\x4d\x3a\x1c\x5b\x8a\x22\xa2\x16\xe2\x8f\x61\x7f\xd5\x3c\x20\xd5\x12\x97\xe5\x3a\x29\xf7\xa8\x4d\xb1\x01\x34\x3b\xc3\x3a\x23\x90\xb9\x90\x95\x07\x80\xa4\x91\x2f\xed\x3b\xd4\xe4\x0b\x79\xe4\xe0\x35\xe7\x40\xff\xd1\xb5\xc1\x6c\xb0\xe7\xa2\xaf\xc8\xe9\x28\x77\xda\x3e\xf4\x5e\xec\x22\xe4\x6a\x1c\x89\x60\xae\x21\x11\x83\xc8\x57\x73\x93\xc8\x27\xe9\xe1\x31\xc7\xa8\x26\x96\x8b\xef\x55\x46\xe7\xff\xfa\xad\xf8\x3f\x81\xa2\xe7\x46\xdd\x06\xe4\xcc\xd6\x6d\x90\x5c\x74\x97\xe6\x5d\xd3\x5b\xec\x7f\xc2\xee\x96\x13\x04\x33\x55\x83\xd8\x47\x8e\x42\x0c\xa0\x0f\x50\x2f\x54\x1b\x71\x47\x18\xd2\x9c\x1e\x62\x37\xdb\x33\x26\x8e\x4c\xe5\x96\xfb\xea\xe9\x29\xbc\x0c\x00\xc4\x71\xa2\xb1\xae\x5b\x55\x66\xe2\xef\xd6\x0f\xb5\x78\xf2\x26\xb5\xbc\x01\x46\x75\x08\x4a\x9b\xb4\x74\x2e\x85\xd4\x72\x9c\xc9\x84\x2f\x43\xfa\xb3\x09\x55\xdb\x31\x78\x2e\x26\xfb\x0f\x3c\x93\x5f\x11\xbd\x9d\x58\x28\x78\xe2\xdb\x44\xbd\x2a\x24\x02\x20\xaa\x91\x56\x38\x7f\x96\xad\x64\x7d\xb2\x40\x2a\xcf\x70\x32\x54\x1e\xb5\x53\xb8\x62\xbe\x7b\x83\x8c\xb7\x99\xdc\x04\x9d\xc0\xff\x01\xdb\x09\x1b\x15\xe6\x57\xbe\x46\xc5\x88\x2c\xd9\x25\x58\x82\xf8\x48\x74\x15\x3e\x5b\x72\xd0\xb7\x88\x62\x93\x5c\x02\x40\xa8\x97\x0f\xb7\xdb\x0b\xaf\x28\x3e\x1a\x7f\x95\xb6\x28\x17\xc9\x1f\x57\xfc\x50\xda\xb8\xfe\x35\x27\x95\xc7\x88\xcb\x1b\xd6\xaa\xa6\xb6\xd4\x40\x7b\x54\x65\x15\x77\xe0\x74\x95\x29\xcb\x86\xba\xa1\xfa\x2d\xea\x23\x66\xa7\x6a\xcc\xb7\x99\xec\xaa\x6a\x01\x40\xb0\x5c\x75\xd0\x11\x92\x3f\xa1\x75\x89\xfe\x6e\xe1\x0b\xdb\x63\xe9\xf7\xd2\xe7\xb6\x60\x36\xb1\xf2\xa3\xb5\x85\x10\x56\x37\xd3\x32\xdc\xec\xdb\x58\x64\x3e\x5f\xfe\xb2\xa5\xc9\xf4\x5f\xe6\x33\xc4\xdf\xa6\xe8\xa8\xf5\xa8\x07\x46\xb4\x2f\x81\x34\xdd\x90\x0d\x80\x20\x58\xcb\x6f\xed\xca\xe9\x18\x30\xea\x60\x8b\x86\xfb\x27\x48\xda\x8a\x8f\xf5\x4a\x58\x33\xca\xbf\x75\x9f\xc1\x7d\xae\x29\xeb\x0a\x84\x46\x35\x0c\x39\xd1\xe5\x25\xd0\x4b\xed\xa3\x99\xed\xf0\x61\xc7\x8b\xa8\x1d\xc8\xd5\x76\x89\xef\x41\x62\xbd\xb5\x05\x00\xfe\x79\xfd\xde\x56\xb7\xec\x8b\xa3\xe3\xb4\x27\xf3\x6f\x2c\x8e\x96\x4c\x2f\x1e\x3f\x9c\xc4\x5c\x5d\x5e\x30\x38\x0f\xd7\x59\x3d\xd2\x3f\xb5\xe9\x8f\xfa\xcf\x3d\x6f\xca\xc3\xa0\x69\x5d\xa7\x32\xad\xf0\x59\xce\xcd\x51\x4f\x90\x0b\x3b\xc6\xcd\x70\x25\xbc\x69\xc5\x02\xc0\x5f\x6a\xb0\xdb\x76\x64\x97\xaf\x34\x68\xe9\xf9\xc5\xcb\x19\xe2\x8b\x45\xf4\xa5\x73\x98\xf4\xb2\x8d\x8b\x8f\xe3\xf0\xd5\x93\x86\x51\x4d\x67\xeb\x29\x03\xcf\xcb\xe7\x35\x6d\xec\xa3\x65\x0e\xc1\x96\x75\x7f\x8a\x0e\x43\x1c\xee\x3c\x3b\x83\x43\x60\xda\x1f\x01\xc0\x6f\x31\x4e\xe8\xf9\x80\x14\x54\x9e\x6b\x5d\x8e\xfa\x55\x2b\xd2\xfc\x89\x59\x07\x99\x24\x64\xe1\xf4\xd0\xdb\xd4\x0a\x82\x09\x7e\x08\x81\x25\xf5\xa1\xd7\x57\x37\x50\x7e\xc3\x2f\xcb\x29\xa1\x3d\x26\x6f\x8e\xf1\x64\xa4\xd2\x33\x7d\x05\xac\xa5\x4c\x38\x00\x92\xd3\xfc\x05\xdd\x3f\xe0\xb3\x6a\x77\xd8\x2e\x23\xee\x43\xa6\x68\x42\x51\x47\xa0\xf5\x82\xa3\x98\x8b\xb0\x8b\x94\x9d\xf8\x09\x28\x14\xfc\x3e\xb1\x04\xfb\xa5\xea\x11\xb9\x9f\x38\x9c\xfd\x96\xfa\x80\x5a\x19\x7d\x82\x5e\xc6\x30\xf8\x16\xb2\xa6\xb0\x6a\x01\x90\x68\xf9\xaf\xba\xbe\x34\x9f\x83\x1c\xb6\x7e\x82\x1d\x86\x9e\x57\xc3\x11\x37\x60\x47\x04\x5e\xe8\x00\xe4\x1b\x4a\x20\x56\x89\x8d\x81\xc3\xf0\xff\x10\xf8\x55\x6c\x12\x8d\x7c\x2c\x7b\x90\x72\x9e\xee\x17\xad\xa1\x95\x31\x7f\xf8\x7a\x31\xe9\x6c\x2d\x00\x92\x70\xc1\x9f\x9d\x93\x21\x12\xc4\x6d\x4b\x7a\xd3\x05\x34\x4c\x79\xa1\xa5\x08\x7b\x8a\xb7\x0b\x7e\x8b\xd0\x48\x7a\x83\x6a\x23\x7d\x82\x35\x63\xeb\xa8\xcb\x2b\xfb\x08\x33\x19\xf5\x59\x3f\x48\x2b\x58\x9f\xa2\x7e\x50\x92\xb9\xb9\x3e\x37\x18\x9e\xbc\x4a\x00\xc4\xcd\xe2\xb8\x8e\xc0\x5a\x1c\x11\x61\xd2\x36\xb8\x91\xeb\x15\xf5\x8d\xa7\xa9\x19\x5c\x5a\xf3\x6a\x7a\x28\xf1\x2a\x7c\x39\x33\xb4\x05\x87\xda\xcd\x0e\xab\x38\x8d\x3d\xc2\x8d\xce\x82\x13\xf4\xfc\xf9\x51\x06\xd2\x0c\xc1\x45\x9f\x2d\xb4\x5d\x42\x2e\x00\x22\x95\xb4\xb7\xad\xb4\xb2\x97\x45\x35\x3c\xae\x31\xb1\xf7\xca\x1e\xd5\x3b\xb9\xe3\x38\x91\x8d\x5b\x79\x05\x84\x13\xcd\x2f\xf9\x43\xcd\x22\x44\x91\xe0\x65\xc5\x78\x74\xbb\x28\x2f\xf3\x10\x4e\x23\x6e\x8b\x9a\x4b\xf0\x96\x8c\xf8\x2c\xa6\x0a\x25\x63\x00\x08\x77\xcb\xaf\xb7\x3e\x2d\xb9\xa0\xf0\xd6\xad\xae\x98\xa9\x50\x49\xae\x55\x6b\x14\x0f\x58\xd5\xf5\x40\x39\x1f\x1f\xd2\x38\xa0\x54\x43\x83\x5a\x8a\x94\x17\xca\x7e\x20\xae\xab\xe6\x64\x4e\x47\x7f\x51\x71\x22\xff\xc4\x76\xaa\x96\xfa\x9c\x27\x3f\x56\x55\x03\x20\x38\xa1\x7a\x61\x1d\x2d\x04\x36\xad\x66\x65\xc9\x4a\xeb\x63\xb1\x67\x05\xce\x9a\xc5\xd8\x56\x13\x6b\x31\x63\xb7\x37\x4c\x31\x3f\x68\x7c\xd3\xf4\xd9\x1c\x51\x36\x03\x76\xd4\xc4\xcd\x10\xa1\xbc\x8c\x07\x23\xfb\xd0\x3b\x8c\x53\x7c\x9e\x91\x9e\x18\x3c\x00\x10\xa4\x6a\x6d\x96\x71\xf9\xdc\xfe\x28\xb5\x5f\x51\x45\xef\x19\x61\x7f\x59\x66\x0f\x8c\x4e\xa8\x8a\xea\xfa\x1d\xe3\xa8\x5b\xd8\x19\xd3\x38\xa9\xb1\xb0\xa3\xbd\x54\xd2\x92\xda\xf6\x36\x23\x14\xb1\xd3\x81\x8a\xdc\x8e\x52\xd8\x27\xf8\x16\x93\xfc\x2c\x3f\x00\xe0\xdf\xd3\xef\x32\x73\xf3\xd6\x2e\xee\x52\x99\x0b\x35\xc3\xd7\x84\xd3\x4b\x85\x83\x3f\x68\xef\x2b\xd9\x03\xae\x98\xf8\x5a\x6d\xdf\x64\xc8\x49\xc8\x70\xcf\x94\xd2\xc6\xe6\xc1\xae\x49\x19\x41\x88\x78\xa7\x6f\xe4\x1d\xd4\xb8\x76\xa9\x6f\x2b\x71\xbb\xed\x33\x00\xfc\x4d\x06\x9d\xd9\x3f\x6f\xf6\x0a\x57\x55\x4c\xc1\xcb\x65\xe3\x04\x27\x4a\x6e\x2e\xb9\x45\xdb\x55\x71\x65\x64\x10\x33\xa1\xe6\xe5\x50\x35\x64\x2b\xc4\xb5\xff\x5b\x29\xbc\x79\x72\xef\x8a\x8c\x24\xf8\xa6\xee\xa6\xa8\x00\xa4\xa5\x73\x81\xef\x27\x62\xb4\x5d\x08\xb2\xf8\x58\xc3\x37\xe7\x45\x4c\x7a\xe5\x03\xf3\x5f\xd8\x8e\x5a\xab\x92\x86\xf7\x84\xf8\xf2\x52\x08\x6b\xa1\x0f\x48\x28\x12\x0f\x7e\xa8\xe5\x14\xa5\x01\xbd\xb2\x72\x12\x6d\x11\x7e\x20\x0b\xca\x88\x24\xf7\x47\x51\x99\x25\xf4\x79\x3e\x53\x39\x6e\xcc\x0c\x00\xa4\x95\xfc\xde\x8e\x37\xc8\x97\xb5\x1b\xcd\x41\x68\x05\xc4\x45\xb1\x0d\xbb\x00\x9a\xcf\xed\xc1\x03\xd8\x11\xe2\x65\xc2\x37\x54\x6d\x4b\x25\x79\x32\xf6\x69\xc5\x28\x35\x8c\x68\xca\x9a\x40\x8f\xa5\xc6\x44\x85\x32\xd0\x0c\xdc\xf4\xbf\xd9\x7c\x56\x1c\x00\x52\x17\x41\x41\x87\x0b\x7c\x05\x64\xa9\xa9\x14\x49\x85\xae\x96\xbf\x47\x37\xc0\xfa\x38\xff\x60\x1b\x91\x97\x88\xf9\x78\x25\x76\x6a\xf3\x79\xe2\x7e\x42\x43\x45\x12\xf9\x27\x79\x79\xe6\x56\xda\x5c\xda\xdb\xc8\x47\x74\x3c\xf3\xfa\xf4\x63\xac\x1b\x6c\x24\x00\x92\x0d\xc2\x85\x6d\x53\xa1\x64\xc4\x90\xc1\xd1\x62\x42\xcf\x96\x09\xe0\xa7\xb0\x6d\xec\xe5\xa8\x20\x42\x00\x61\x0e\x66\x90\x74\x08\x7a\x1d\x1f\x41\xa5\x97\x93\x89\x3b\x18\x21\x99\x01\x94\xf1\xac\x93\x91\x0c\x6a\x33\x77\xfa\xf4\xe5\x4c\x2d\x2f\x02\x00\xf1\x63\x31\xd3\x1e\xdb\x80\x23\x7c\xd0\xdd\x69\xbc\x4e\x7a\x27\x79\xdf\x4c\xa6\x3c\x66\xb5\xc0\xbe\xd2\xce\xe1\x5d\x91\xfb\x19\x57\x9a\x1e\x62\xfa\x58\xb7\xca\xfa\xf1\x44\xce\x5f\x19\x6a\xe2\x4b\xde\xeb\x88\x9f\xe4\x7c\xc1\xd2\xe9\x26\x46\xac\xb0\x1a\x00\xb1\x87\xf4\xb4\x0d\x5d\xb3\x81\x79\x4b\x9b\x55\xcf\x60\x27\x8b\x95\x8d\x25\x1c\x33\xd3\xaf\xd9\x8b\x7b\x1e\xfb\x09\xee\xc1\x8f\x6b\xfc\x84\x8a\x15\x58\x4b\xaf\x63\x53\x84\x2f\xd2\x5f\xe3\x9f\x89\x4b\x23\xd6\x13\xf3\x25\xe4\xe9\x32\xda\xdf\x92\x8d\x00\x88\x16\xc9\xbf\x5b\x26\x97\xbf\x97\x47\xa9\x67\x56\xbb\xca\xb7\x0b\x9d\x75\x29\x8a\x78\x7a\x0d\x84\xa6\xd0\x60\x50\xd0\xe3\x8a\xe7\x90\x55\xf0\x64\x65\x79\xc9\x35\x94\x59\xb9\x39\xbd\x18\x4b\x52\x79\x47\x08\x71\x87\x54\xf0\xe9\xfb\xa8\xcd\xaa\x50\x00\x84\x75\xaa\x6f\xc6\xd7\x25\x11\x56\x94\x32\xad\xbc\xdd\x72\x97\xff\x57\xb5\xa7\xa5\x96\x7a\xa4\x6e\xc8\xbc\x09\xf5\xa5\x31\xcf\x3c\xb3\x41\xd3\xfc\xb7\x49\x5e\xfc\x2f\x42\x61\x7c\x90\xb6\x0d\xad\x36\x96\x46\x2c\xc0\x3c\x32\x6c\x99\xfe\x80\x52\xa3\xff\x0d\x00\xc1\x01\xad\xd6\x90\x55\xa8\xed\x3d\x2d\x1f\x2e\x8d\xea\xb1\xf0\x08\x15\x4f\xbb\x53\x28\xc2\x1a\x67\xe7\x76\xe4\xe3\x06\xa4\x33\xb5\x7e\x25\x74\x61\xfb\xde\x62\x04\xec\xaf\xb6\xac\x34\x3c\x2a\xc8\x7e\x26\xa2\x1c\xbd\xa6\xb5\xcd\x27\x87\xac\xb7\x68\x00\x10\xc0\xf4\x43\xfa\x95\x05\xdb\x47\x02\xe5\x53\x4b\xe0\x43\x12\xee\xf5\x8a\xa0\x81\xc3\x14\x50\x7d\xbe\xef\x01\xd2\x58\xbf\xbc\x77\x7c\x3d\xae\xc9\xd8\x3d\xbf\x38\x15\x56\xd4\x59\x9a\xd6\x82\x74\x74\x88\x22\x18\xe8\xc8\xb6\x77\x3e\x32\x72\x88\x8d\x02\x80\x20\xdc\x40\xd0\x17\x15\x84\x2c\xd3\xca\xb6\x15\x1f\x19\xed\xe2\x6a\xca\x95\x8b\xed\xe4\x23\xd5\x31\xc3\x44\x64\x4b\xfd\xb8\xc1\xd4\xfa\xea\xc6\x67\xfd\x53\x8a\xd3\x5b\x36\xf6\xdc\x4b\x13\x22\x5d\xba\x76\x47\x6c\x46\xad\x73\x0e\xfb\xdc\x27\xf5\xb7\xde\x03\x81\xfc\x6b\x86\xfb\x56\x1d\xb1\xa3\x2a\x4c\xe3\x47\x1a\xaa\x3d\x24\xf2\x25\x9f\x83\xe4\xd2\x45\xd4\x44\xe8\x0b\x4c\x3c\x6d\x07\x7c\x07\x24\x9e\x91\x87\xb6\x94\x78\x30\xaf\xe1\x19\x69\xae\xec\x62\x72\xf9\x7c\x0d\x67\x16\x6d\x8f\xe7\x3e\xfe\x10\xe3\x77\x00\x64\x6f\x05\xf3\x2d\xeb\xf0\xb2\xda\x33\x6a\x2c\x61\x2b\xc4\x4f\xa8\x22\x4d\x83\x56\xd3\x9e\x91\x97\xc2\xd6\xa1\x37\x52\xab\x51\x73\x1b\x0e\xd1\x27\x60\xd7\x17\xaf\x63\x1c\x23\xe6\xa5\xee\x60\x41\x29\x67\xe7\x67\xb1\xb3\xe8\x7f\x78\xae\xe5\x4f\x63\x6e\x04\x40\xb6\x5e\xb0\xcf\x7c\x1a\x4b\x82\xf4\xaa\x96\xe2\x4e\x41\x07\x05\xf7\x09\xb5\x30\x2b\xad\x99\xe4\x8e\x1c\x40\x47\x93\x1f\x60\x4e\x34\x54\x50\x8f\xe0\x7f\x15\x57\xd0\x57\x91\x4b\x53\x71\xcc\x16\x9a\x7e\x3e\x60\x95\x31\xab\x3d\x7b\x79\x52\xd6\x4d\x00\x64\x2d\xc2\x6e\x93\x27\xb2\x1a\x11\xae\xf4\x46\x8f\x43\x2d\xe5\x8b\x30\xb7\xb0\x93\xa9\x73\x71\x2f\xf1\xfd\xa8\x30\xe2\x0c\x52\x7e\x3d\x95\x5c\x44\x79\x59\xd4\x4e\xa5\xd3\x97\xa4\x9c\xa2\xd7\xb1\x0a\xc2\x46\x18\xe5\x1c\xad\xa7\x88\x9b\xce\x1d\x06\x40\x3a\x20\xde\x6d\x10\xb6\xb4\x10\x4a\xe4\x1d\x70\x28\x29\x95\xe7\x85\x94\x52\x66\x92\x1f\xa2\xef\xd0\xbc\x90\x6e\xb8\x5a\xc6\xdc\x3a\x1e\xe1\x04\x2b\xb1\xf0\x30\x39\x9a\x53\x92\x92\x4a\x5d\xc4\x6b\x08\xab\xa1\x65\x09\xa6\x7a\xca\xd9\xaf\x04\xe7\x00\x90\x9c\x91\x7e\xd3\x1d\x6c\xec\x64\x5c\x94\xb9\x43\x9f\xb2\xc2\x39\x7b\x60\x10\xb6\x88\xb4\x1a\xf1\x8d\x73\x15\xfe\x01\xbd\x93\x57\x56\x6b\xc4\x51\xf9\x3b\x0a\xbe\x13\x27\x08\xc3\x93\xb7\x90\x8b\x45\xfd\x61\xd3\x28\x79\xe2\xd3\x9e\x16\xd6\x16\xc9\x42\x00\xc4\xdf\x14\xc1\x9a\xda\xba\xb9\x52\x8b\xf8\x7a\xc3\x51\x59\x28\xeb\x78\x93\x51\xb6\x85\xf0\xaa\x45\x29\x8f\x80\x09\x10\x7a\xf9\xd6\x9a\x12\xb4\x51\xb1\xa0\xc0\x1d\x47\x56\xec\x4a\x9e\x46\x38\xa5\x4c\x09\xbd\x43\xdc\xa7\x5c\xe1\xf9\x3b\x73\xbe\x72\x15\x00\x62\x2f\xd5\x3b\x55\x5a\x15\xc7\x1c\x27\x7c\x5f\x2b\x30\x9d\x63\x7a\x37\xb4\x9b\xd0\x78\x4a\xd3\x09\xe3\x9b\x96\xb9\x30\x77\xa3\xa5\x3a\x11\x59\x66\xf4\x5b\x94\x84\xc1\x1b\xd6\x27\xb5\xe2\x1e\x1a\xf2\x43\xb7\xe2\x5f\xea\x1f\x78\xbe\x65\xcc\xd0\xbd\x06\x40\xc4\xd3\xd6\x2a\x8e\x96\x3f\xec\x0e\x11\xb4\x56\x7b\x76\xb9\xd0\xf7\xd6\x35\x3a\xaf\xe2\x52\x21\x5b\x3a\xda\x9a\x83\x9a\x67\xb4\x57\x55\xa1\xe0\xea\xb6\x29\xf9\x43\xa8\x23\xf6\xb1\xa4\x0c\x2c\xb9\xb5\x3b\x74\x07\x6e\x97\x6d\xc8\x2b\x9f\x5e\x6b\xae\x05\x40\xe4\xae\x2f\x52\x4c\x2b\xf7\x1b\x8c\xe2\xff\x5b\x95\xdb\xbf\x8f\x9e\x55\xab\xec\x5b\x80\x3d\xd3\xf0\xb8\xa7\x13\xfa\x3b\xb4\xb2\xeb\x5d\xd5\x2c\xd8\x89\x4e\x64\x3e\x1f\xe5\xd5\x71\x2e\x29\x11\x73\xae\x3d\x33\xf4\x3c\x2e\xc9\x71\xc7\x4b\x40\x7b\x63\x0d\x04\x40\x78\xd1\xe0\x2a\xb7\x97\x19\x96\x40\xf9\xce\xca\xc5\x23\xab\x68\x1f\x6a\x2e\x0f\xdd\xc5\x76\x35\x2c\x1c\xf8\x0a\x1d\x6c\x5a\xd1\xef\x59\xe5\x06\x9b\xd5\x9b\x94\xcf\x43\xf2\xba\x11\x49\xd5\x98\xc4\x4e\x53\xd8\x74\xec\x86\x0e\xa2\xd7\x45\x1a\xc9\xa6\x05\x40\x28\x35\x98\x34\x2c\xfa\xd9\x2a\x8a\xb8\x9d\x21\xab\x7d\xcb\x02\x4c\x1c\x04\x4d\x70\x61\x11\xa0\xef\x5a\xb0\x6c\x0d\x7c\x65\xf5\x44\xce\x1a\x34\x21\xdf\xc9\xbd\x85\x4f\x5a\x08\xf8\x2e\xa4\xbf\xe6\x3c\xe7\xaf\xa0\x85\x78\xb8\x88\x97\x31\x2a\x01\x50\x8e\x17\x8c\xaa\x0f\x52\xd7\xd7\xde\x16\xfd\x45\x1b\x81\xcc\x64\x32\xe8\x07\xa1\x79\x78\x1e\xe3\x15\xcc\xd6\x7c\x9b\x15\x8f\xfc\x50\xe5\x64\x6b\xb1\xb4\xfc\x28\xce\x0d\xc2\xdf\x0b\xb6\xf1\x66\x51\x1a\xe7\xac\xe7\x9d\xa5\x67\x4f\xf9\x24\x9e\xc3\x0c\x07\x40\x71\x54\x38\x53\x3d\x9e\x6c\x87\x88\x44\xa9\x94\x43\x50\x3a\xe3\x3c\xcd\x1f\x56\x8d\xbb\x43\xa7\x21\xeb\x9a\x2b\x19\xd7\x31\x82\x2a\x1f\x56\x35\x7e\x79\xde\x11\xf6\x49\xd2\xc3\x05\x04\x6e\x04\xf5\xbf\x39\x7c\xee\x3d\xc6\xe0\x94\xbf\x44\x3d\xac\x52\x00\x14\x22\xe1\x63\x65\x1a\x7e\x29\x7c\x8b\xa0\x9b\x18\x8e\x9a\x4f\xaf\x23\x9d\xc7\x18\xb1\x9d\x14\x21\x7e\x1a\x34\x91\x96\x40\xdc\x5e\x19\x4c\x7f\x43\x41\xe4\x7e\x60\xae\xa0\x4f\x4b\x3c\xcd\x8e\x67\x2e\x9e\x13\xc2\x7e\xca\x3e\x30\xe5\x81\x10\xcf\x9d\x02\x80\xfc\x80\xf8\xb1\xfc\x0c\xfa\x1e\xbe\x96\x9f\x84\x5d\x41\x44\xd0\x3c\xf1\x0e\x72\x21\x86\x49\xd4\x51\x0b\x9a\xc2\xc9\x66\x3a\xbc\x22\x93\x6a\x62\xf2\x72\x53\xe8\x02\x76\x47\x62\x05\x33\x92\x3b\x10\xf2\x92\x79\x87\x5f\x38\xe5\xab\x60\xb6\xa0\x00\x00\xd9\x3f\x32\x4f\xd9\x7c\x04\x84\x3e\xc0\x3d\x8b\x82\x33\xbe\x51\x6e\x61\xb4\xac\x1a\x74\x1d\x6e\x1f\xfb\x50\x63\x38\xe1\x17\xb7\xa8\x1c\x4d\xce\xe0\x1d\xcd\xd1\x50\x61\x82\x92\x84\x6b\xf4\x64\xe1\x89\x90\x23\xf4\xe7\xa2\x6f\x1e\xc1\xbc\x3f\xc5\xbb\x01\x90\xcd\x57\xcc\x12\xff\x82\xfe\x12\x5f\x64\x5f\x87\x95\x4b\xe4\x64\x0f\xc4\x0e\xe9\x44\xe4\x1e\x74\xa6\x74\xb4\xe1\x14\xf6\xbc\xac\xac\x2c\x93\xd0\x20\x7b\x99\xbd\x94\xb4\x4b\xde\x95\x50\x46\xd9\xaa\xc8\x0d\x71\x52\xb5\x8a\x43\x1e\xb5\x5c\x86\x72\x2e\x00\xd2\x2c\xd5\x29\xe1\x3b\x08\xc5\x70\x8f\x35\xa1\xe9\xbb\xa1\x9d\x28\x6b\xd9\x6e\x48\x44\x34\x20\x44\xfa\x97\xf5\xdd\xe8\x45\xfa\x1d\xa5\x99\x38\x57\xbd\x30\xeb\x36\x61\xb9\x3e\x27\xfe\x0a\x69\x8f\x3e\x20\x44\x41\x3e\xa6\x7b\xe3\x61\xe1\xb4\xfc\x6f\xd7\x93\xf4\x6b\xc7\x09\xe4\x75\x47\x9c\x29\x8c\x55\x90\x65\x1d\x85\x84\x24\xa8\xa1\x3d\x0e\x9e\x06\x23\xb6\x85\xd4\xad\x46\x56\x3b\xfc\x4a\x94\x98\x6c\xfb\xcc\xac\x1a\x3c\x68\x0d\x8d\xd7\x11\xb3\x6c\x95\x21\x44\xd2\x80\xb5\xd3\xe3\x18\x7b\xd0\xe4\x01\x80\x24\x4c\x77\x9b\xff\xad\xf6\xdf\x3e\x6f\x46\x5c\xc3\xf9\x9e\x13\xf8\x83\x4d\x5b\xbb\x61\xb0\xeb\x2d\xfd\x9d\x5f\xea\x60\x08\x93\xb3\xb7\xa4\x00\xad\xef\xa8\xc8\x8a\xc2\xd5\xb7\xbb\xc5\x8b\x08\x83\x8e\xe7\x21\x72\x92\x9f\xbd\xcf\xe3\x3d\x3b\xcd\xfc\x1b\x00\xe2\x3f\xf4\x7d\xfc\x35\xb5\x84\xe1\x59\xf4\xfb\x0d\x61\x83\x0e\xbc\xa8\xc9\xa5\xff\x11\x6c\xb4\xf9\xaf\xbe\x9c\xba\x54\xf8\xb5\x9e\xfe\x92\x44\xd4\xf5\xee\xa9\x59\xd1\xd8\x0d\x9d\xed\xf1\xed\xf8\x2f\xce\x94\x90\xbd\x44\x63\xdb\x7f\x53\xf3\x59\xdb\xac\xd3\x00\x10\xb7\x1a\x82\x44\x8f\x78\xf9\x55\x4f\x59\x14\xde\xa9\xba\x62\x62\x03\x5f\x08\xe9\x46\x8c\x13\x78\x34\x7b\xd4\x7b\x09\xf6\xc3\xd7\x96\xd0\x85\x32\x74\x7d\xe6\x3a\xd1\x22\xbc\x7b\x6c\xaf\x38\x9a\x64\x0f\xda\x2b\xde\x41\x65\xba\x37\xc9\x9d\x8c\x99\x00\xa8\xa3\x85\x51\x22\x4f\x0e\xb1\xce\x87\xb9\x8b\x3b\x03\xb2\x90\x70\x84\xfb\x12\x9a\x0f\xe7\xf0\x36\xc0\x24\x75\x66\xbe\x12\x79\xb9\xf8\x95\x80\x80\x4d\xc9\xcc\x13\x56\x12\x56\xc7\x96\x88\xaa\xc9\x4f\x82\x86\x44\x0f\x69\x06\xf7\x66\x79\x20\xe3\x4f\x00\x54\x7f\x0b\xcd\xc2\x85\x2c\x1b\x84\xc5\xf8\xc2\xc6\x41\x6b\x08\xf3\x38\x48\xd8\x6c\xd8\x18\x37\x1f\x39\xa3\xf6\x15\x2f\x0d\x13\x5f\x4c\xe3\xe7\xe1\xeb\x32\xce\x09\xca\x49\xea\x98\xef\x42\x14\x55\x18\x24\x12\x7e\xa0\x5f\x77\x6f\x90\x75\x31\x7f\x02\xa0\x5a\x2a\x4a\xe7\x8b\x69\xb7\xe1\x30\x7a\x13\xfd\x2b\x72\x0f\xae\x97\x99\x89\x71\x6b\x91\xb3\x38\x38\x7b\xcd\x21\xf6\x4e\x62\x4c\x11\x9e\xf3\x1f\xf9\x4a\xfa\x1b\x5e\x16\x4d\x1b\x83\xe2\xb3\x18\x1f\x83\x52\x05\xe3\x58\x7f\xb9\x13\xa5\x24\xce\x61\x00\x94\x4f\x25\x33\x78\xf3\xc8\x73\x71\xab\x69\x81\x94\x76\x42\x0f\x56\x46\x0b\x24\x71\x9a\x05\xf4\x01\x8a\xb8\xfa\x2c\x33\x94\xd6\x5b\xd8\xc5\x5a\xc5\xd8\x99\x9e\xcf\x99\xc9\xba\x11\xfd\x89\xcb\xe3\xdc\x08\x9a\xc8\xf3\xe2\xc1\xdd\xdb\x24\xd1\xfc\x6f\x00\x28\x03\x64\xe1\x9c\x15\xf8\x6d\x34\x0c\xe5\x06\x11\x43\x3f\x85\x61\x93\x23\x98\xf3\xa0\x62\xca\x73\xd6\xaa\xaa\x47\xb4\x1d\x9c\x9c\x82\x73\x0c\x26\xf7\x62\xda\x52\xd6\x14\x3e\x3e\x7a\x80\xad\x11\xbc\x0c\xfc\x9b\xb3\x48\x34\xd9\xfd\xac\xe8\x93\x58\x0c\x80\xa2\x46\x11\xc0\xba\x8d\x36\x8a\xdc\xc8\x73\xb0\x68\xd1\x1e\xd4\x45\x3c\x5c\xdc\xd4\xe4\x46\x24\x4a\xa6\x56\xae\x26\x4b\x24\x37\x16\x1d\xa7\xca\xa5\x8b\x53\xaf\xd3\x11\x32\x4a\xf4\x5c\xc6\x6b\x79\x56\xe0\x1d\xe6\x57\xf9\xb1\x49\xd3\x84\x52\xc5\x0e\x00\xe4\x28\xd5\x28\xe3\x06\xfc\x86\x0e\x42\xa4\xa1\x5c\x75\x31\x48\x2c\xa6\x42\xfb\x0e\x72\x12\xd7\xa1\xbd\x5b\xd1\x4f\xb8\xab\x1d\xcb\x7f\x4c\x9e\xa5\x3d\x9d\x3a\x9f\x9a\xa4\x3d\x11\xb5\x9f\xf6\x44\xfb\x2c\xf0\x04\xa3\x52\xfb\x68\x52\xb9\x80\xae\x8d\x02\x40\xb6\x5b\xb3\x9b\x2e\x68\xe9\x68\x4b\x26\x84\xc1\xc7\x1c\x28\xc4\x42\x54\xa4\x9d\xdd\x70\x0a\x63\x6c\x1d\x2e\x3f\x8b\x7b\x66\xbb\x94\x9f\x45\x6c\xb0\xf9\xa7\xac\x25\x77\x5b\x19\x51\x1c\x2a\xce\xf2\x26\x70\x33\x3d\xde\x52\x35\x89\xc7\xdf\x62\x78\x04\x80\x2c\x57\xc7\xa3\x7d\x6e\x1e\xed\x3a\x8a\xdf\x02\x7b\xdb\xb9\x14\x7e\x18\xd9\xe8\xc4\x37\x70\xd0\x3b\x3b\x8a\xca\x2d\x38\xff\xf6\x39\xf9\x93\x08\x5d\x6d\x11\x29\x66\xd2\x3d\x47\x6a\x14\x91\xf2\x9b\xdd\x10\x78\x84\xb6\xbe\x75\xfa\x24\x27\xbf\xde\xc4\x01\x40\xfa\x4b\x1f\x49\x5b\x01\x7d\xdc\xef\xc4\x63\x61\x99\x7d\x29\x70\x25\x62\x5d\xcf\xef\x0d\xb9\xe8\xf1\xdd\xe4\x72\x0e\x96\xd8\x35\x39\xef\x27\xfe\x89\xf3\x46\x4a\x3b\x29\xb5\x63\x4f\x94\x94\xe2\xdd\x7e\x2b\xf0\x05\x6d\xba\xa3\x7a\xd2\x39\xde\x35\xf3\x56\x00\xa4\xcb\xf4\xdb\xc8\xb1\xca\x80\x6a\x07\xfa\xba\xd2\xb5\xee\x2c\xf4\xb6\x32\x18\xf2\xb9\x46\xac\x0c\x6b\x2e\x2d\x96\x2a\x73\xe0\xfb\xb3\x2e\x28\xb9\xe8\x8c\x05\x2e\xca\x3d\xb8\x83\xa1\x9f\x54\x89\xa4\x89\x3e\xfb\x54\x2f\x28\x1c\x97\x41\xcd\x61\x46\x3f\x00\x3a\x5f\x51\x26\x69\x48\x0e\xa9\x93\xa0\x6b\xe5\x34\x88\x08\x8a\x93\xaf\x82\x12\xab\x7f\xc9\xc7\x60\xf2\x62\x77\xc5\x14\xe4\xf6\x2c\x86\x02\x8b\xf9\x90\xb8\x5d\x71\x9c\x90\x1e\xba\x57\xd9\x40\xce\xf2\x59\xa7\x0a\xa1\x12\x5c\x46\x35\x95\xcc\x62\x00\xb4\x57\x44\x7c\xe2\x7f\x52\x07\xa4\x13\x75\x50\x7a\x06\x5a\xdb\xf4\x50\x16\x01\x73\xa9\x36\xc9\x78\x88\x27\x45\xdd\xb2\x31\xf4\xa3\x2c\x77\x79\x11\xee\x59\x22\x4a\x7e\x8c\xf8\x4f\xa8\x45\x41\xa0\xec\xf2\x19\x54\x16\xd1\x56\xb8\xac\x55\x9f\x62\xd5\x00\xa0\x35\x8a\xbe\x13\x8e\x09\x5f\xc2\xfe\x46\xda\x44\x4a\x64\x66\xe3\x76\x71\x0c\x5a\x51\x25\x11\x1f\xc2\x7e\x2a\x5c\x21\x41\x13\x6c\x99\xe9\x52\x77\x72\x78\xc2\x36\xe9\x2e\xea\xe1\x50\x3f\x19\x87\x31\xcd\x47\x2b\x57\x30\x47\x5d\xce\xa9\xd6\x70\x5d\x00\xd0\x5c\x90\x0c\xe2\xbb\x78\x1b\xb1\x3a\x04\x93\x4f\xc6\x2b\x20\xbf\x0b\x52\x89\xb4\xca\x01\xa1\x3b\x59\x50\x70\x5d\xf8\x17\xb5\x37\xc3\x21\x3a\x4a\xdf\x9b\x10\x2d\x1e\x60\xde\x9a\x77\x51\x42\x66\x5f\xf4\xe1\x4b\x37\x71\x27\x4d\x18\xa7\x94\x0a\x4a\x01\xd0\xb8\xc8\xa4\xb8\x28\xb6\x84\xd2\x0d\xaf\xe3\xe0\x68\xc1\x0d\xb7\xb9\x24\xfa\x70\xc5\x61\x1e\x8f\xb9\xa0\x60\x2a\xdf\xc2\xba\x93\xfe\xa7\xa0\x83\xa3\x8b\x5f\x23\xb4\xf0\xc2\xe6\xb5\x89\x28\xfc\x83\x3e\x42\xf1\x47\xc1\xc6\x09\x95\x8a\x4a\xf1\x39\x00\xd4\xd9\x8a\x0a\x8c\x8c\x2e\xe2\xa7\xb6\x1c\x61\x74\x08\x12\xea\x89\xcc\x8b\xc2\xc9\xe5\x4a\xb6\xaf\xf0\xef\xfc\x6f\x1c\x9a\xe8\x69\xfa\x38\xee\x76\xf1\xdd\xb8\x2f\xbc\x3f\x25\x57\xe6\xc5\xf1\xcf\x48\xc7\x7c\xe8\xc2\x13\xb2\xb2\x09\x03\xb2\xeb\x0a\x3c\x00\xaa\x2c\x55\x27\xea\x3a\x25\x50\xf5\x5b\x33\x9c\x8a\x57\x5d\xad\x2b\xa2\xfd\xae\xba\x5f\xa6\x67\x64\xaa\x27\xe7\xcf\x65\x1e\x57\x17\xa7\x21\xd8\x19\x6a\x4b\x1c\x8f\xb3\x4a\x7d\x61\xee\x5b\xee\x90\x26\xc5\x47\x22\x98\xa5\xa9\x9d\x70\x43\x7a\x48\x93\x01\x80\xd2\xa2\x21\x23\x77\x11\x7b\xad\xfb\xa1\xf9\x64\x6f\x6b\x72\x6d\x06\x65\xd8\xb2\xbc\x74\x88\x16\x69\x89\xcf\x13\xd0\x8f\x9a\x7f\x4f\x3d\xca\xa4\x99\x59\x71\x53\x59\x6f\xcc\xe1\x73\xd7\x70\x5c\xcd\x6e\x3e\x6c\xfe\x38\xd3\x78\x57\x57\xe9\x38\x3d\x03\x00\xe5\x54\xed\x3b\x64\x02\x61\x7d\xdb\xc5\xa6\x2b\xa4\xb8\x36\xbf\x9a\x6b\xe4\x63\x8e\xca\xd2\x1a\x6a\xbd\x7d\x20\x2f\x8f\xf6\xb4\xf5\x59\xea\x52\xc6\x40\x2b\x2c\xf6\x2b\x2b\xc2\xf6\x64\xee\x0a\x76\x99\xad\xdf\x47\xcb\x13\x5b\x18\xae\x41\x92\x55\x86\xa3\x00\x28\x2e\xea\xba\x11\xa7\xf1\x7f\x77\x25\x35\x69\x88\x82\x4e\x44\x8d\x93\x3c\xd9\xc9\x2a\x0d\xa5\x74\x74\x58\xf3\xa2\x69\x01\xed\xeb\x52\x07\xe8\x63\x6d\x1f\xe3\xc6\x31\x09\x6d\xb8\xb9\xbf\xb1\xcc\x8e\xd5\x3e\x5b\xb9\x57\x6c\x6c\x57\x98\x24\xc2\xf8\x37\x00\x0a\xa6\x3e\x04\xea\x62\x79\x5c\x53\x51\xdb\x61\x29\xac\x47\x97\x99\xcc\x67\x1a\xa9\x8b\x66\x9b\x13\x9b\x7b\x32\xe6\x98\xd6\xc3\x9f\x24\xaa\x4c\x35\xe8\xd4\xf0\x1d\xa6\xd9\x38\x63\xe0\x0a\x53\x15\xd1\xea\x11\x61\x9a\x41\x49\x04\xc0\xe8\xc1\x8a\x02\xc0\xe0\x10\xaf\x6c\x32\x98\xcb\xeb\xce\xd7\x86\x9a\x8e\x40\x76\x97\xc5\x99\x10\xd0\xde\xfc\xf3\xc6\x67\xb0\xb6\xf4\xdb\x46\x1d\x72\x65\x62\xa1\x31\x0f\x73\x3c\xdc\x68\x8c\xc0\xdf\x0a\xb4\x18\x49\xa4\x11\x8f\x24\x23\x94\x3a\x11\x00\x43\x3f\x6b\x2b\x00\x86\x45\xe2\x4d\x8d\x5f\x8d\x1b\x21\xda\x9a\xcd\xc6\x74\x68\x7e\xe9\x05\xc3\xb3\x96\xcf\xf9\x52\x43\x07\xe2\x70\xba\xd9\x50\x81\x5e\x95\xf0\xcb\x10\x8a\xeb\x0a\xaf\x33\x04\x13\x05\x81\x0c\x03\x83\xfc\x9f\x47\xa6\x41\x4b\x4b\x00\xc0\x30\x9d\xbd\x14\x00\xfd\x1b\x89\x57\xe3\x04\x1d\x04\x56\x5d\x7d\x55\x17\x8c\xd8\x58\x3a\x59\xe7\x8e\xfa\x99\x77\x50\xfb\x0a\xcb\x4d\xbb\xa7\x7d\x80\xff\x96\x20\xd0\x3e\x21\x39\xe6\xff\xa1\xfd\x45\xf5\x0c\x8c\xd3\x21\xe9\xf1\x1e\xd5\xba\xa3\xcc\xe9\x20\x44\xf7\x86\x57\x01\x80\x3e\x5a\xca\x6f\xb8\xa8\xc6\x62\x0a\xaa\x6e\xa9\xb3\x70\xa4\x92\x4a\x75\x0a\x81\x9b\x37\x55\x5d\x4d\xd2\xa5\xe5\xaa\x05\x94\xd5\xf1\x1f\xd4\xa3\xb4\xb1\xf9\x56\xf5\x6d\xc6\x9b\x40\x7f\x4d\x06\xeb\x92\x07\x55\xf3\x1f\x87\x07\x28\xda\xc3\x42\x03\x00\x3a\x84\x7c\x4e\xfd\x15\x45\x2d\xe9\x6a\xe5\x77\x05\x8c\xa2\x2b\xee\x52\xa8\x69\x73\x73\x09\x8a\x33\xf4\x0b\xa9\xab\x95\xb3\x98\xd6\x78\x85\x92\xc9\x2e\x9f\x9f\xa4\x3c\xc8\xf9\x1e\x38\x51\x35\x9b\xb7\xc4\xa3\x4d\x5d\x29\xf0\x04\xbb\x35\xcb\x24\xfd\x00\x68\x7b\x15\x67\xeb\xc4\x92\x46\xce\x60\xc5\x71\x49\x1f\xf7\x50\x11\x42\x3a\x99\x77\x29\x87\x28\x55\xf1\x1f\xa5\x8c\xc9\x26\x0b\xc7\xc7\x5d\x90\x75\x89\xe2\xc2\x76\xc8\x7d\xc4\xb5\x01\x17\xe4\x58\x09\xc7\x63\xb3\x72\xb6\x74\x70\x9c\x97\x7a\xae\x42\x07\x80\xc6\xa8\x3a\x51\x1b\x2e\x04\x72\xb7\xf2\x95\x42\x89\x5c\x5a\x68\x11\xb9\xcb\x6f\x64\x6f\x12\xad\x51\x54\xa4\xe4\x8b\x5b\x14\x63\x71\x75\x12\x1f\x25\x31\x8c\x22\xd9\xa6\xfc\x10\xb0\x51\xea\xab\xea\xf1\x78\x2c\x17\xaa\x4b\xc7\x11\x55\x6e\xea\x23\x00\xa8\x8f\x6a\xe0\x35\x31\x3c\xa9\x71\x42\xd9\x71\xbe\xbf\xe1\xbf\x82\xdf\xf9\x17\x0c\xf7\xb2\xbe\x0b\x8c\x86\xb3\xc9\x07\x85\xf9\x86\xb3\xb1\xff\x8a\x7c\x0c\xf7\xc2\x22\x44\xb7\x0d\xdf\x03\xfa\xc5\xb5\xc6\x05\x1e\xff\xca\xaa\x0d\xe3\xc7\xad\x52\x66\xeb\xa4\x00\xa8\x33\xb4\x6b\xab\x6f\x72\xed\xd6\x13\x65\x3c\x5e\xbc\xd5\x54\x40\xe5\xbd\xb0\xa6\x64\x1d\xe2\x0f\x58\xfe\x49\xee\x12\xd4\x58\xf6\xc6\x3e\x15\xc6\x58\x96\x86\x05\x09\xbf\x5b\x46\x03\x96\x8b\x74\x16\xf8\x54\x6f\xe9\xef\xa6\xe9\xe3\x4e\x28\xee\xe8\xd7\x02\xa0\xfa\xaa\x8b\xaf\x1e\xe1\x9c\x75\xbc\x2a\x4b\xe1\xd2\x1d\xd6\x82\x14\xde\x1c\xc7\x8c\xac\xb5\xbc\xc3\xf6\x8d\xc9\x3d\x7c\xbc\xbd\x2e\xf6\xad\xa0\xc2\x1e\x1a\x96\x29\x9c\x65\x9f\x1e\x70\x41\xb8\xc6\xf6\x7d\x6a\xb9\x34\xc8\x7c\x75\xbc\xbb\x82\x68\xd8\x0d\x80\x6a\x89\x6e\x4f\x31\xac\xa7\xa5\x66\x4d\x7e\x70\x37\xa8\xdf\x98\x99\xd7\x79\xab\x71\x6d\xd2\x56\xe7\x91\xe6\x6d\xb1\xce\x8e\x63\xf0\x9b\x61\x97\xdb\xbf\xa0\x41\xd0\x95\x76\x03\x6e\x9a\xd7\xf3\x76\x38\xe1\x1f\xb7\xc9\xad\x47\xa9\xf3\x00\xb0\x0c\x71\x64\x00\x98\xba\xa4\xee\xc5\xb3\xbb\x8e\xd5\x7d\xc9\x7b\xdc\x69\x87\x5c\xc9\x74\x73\x6a\xa0\x2b\x93\xf4\x1d\x46\x98\x2c\x96\xdd\x3e\x82\x64\x85\x1d\x68\x7b\x8e\xa1\x04\x9d\x6b\x33\xe0\x0b\xbd\xfe\x6a\x23\x11\x9f\xba\x85\xd9\x7e\x51\x2f\x03\x60\x99\xcb\xb9\x0a\x80\x29\x57\xf2\xaa\xe8\x46\x67\x04\x44\x99\x37\xe8\xf4\x82\xc6\x67\x1c\xed\x98\xd3\x72\x2b\xa9\xbe\x3d\x1d\xa1\x8a\x2d\x68\x63\xa2\xf3\xc3\x46\x1c\xe7\x70\x9e\x41\xbf\x39\x84\x84\xc3\x5e\x2f\x1d\x2d\xe4\x28\xb7\x4c\x5b\x3c\xed\x1e\x00\xe6\x6e\xee\x5a\x00\x8c\x8f\xa4\xf1\x45\xa1\xed\x89\x2d\xa3\x79\xe3\xdb\x12\x11\x1e\x19\xe5\x0e\x38\x8a\xb5\xf0\x8e\x7d\x35\xe6\x72\xcc\x43\xbb\x3b\xbe\x22\xac\xb1\xd5\x42\xbc\x18\xd4\xd9\x5a\x44\x49\xf2\xfa\xa3\x35\x8e\x96\xec\x46\xb4\x48\x98\x4b\x01\x30\x31\x04\x33\x00\x30\xce\x90\x21\x0b\x17\xd9\x67\xa1\xcb\x73\x33\x5a\x51\x58\x4c\xfa\x2a\xdb\x06\x3c\x77\x61\x8d\x6d\x0e\x51\x15\xc3\xb0\xae\x26\x2f\x0e\xfd\x69\x2d\xa0\x9e\x0d\xc2\x59\xa7\xd2\x6f\x79\xbd\xb4\x3c\x60\x6e\x77\xeb\x33\xed\xe3\x7c\x00\xc0\x98\x26\x7a\x00\x80\x21\x47\xfe\xb4\x00\x6d\x15\x12\xc3\x73\x54\x96\x1d\xa4\x37\xe9\x93\x2c\x3e\x94\x8d\x0b\x4e\x99\x37\xd2\xb0\xd1\x3f\xcc\x8d\x8c\xf0\xd0\x6d\x66\x37\xe6\x97\xa0\x4c\xd3\x5d\xf6\x16\xaf\x2f\xa6\x5e\x2e\xca\x6d\xcc\x38\x45\xd0\xfa\xbf\xda\x94\xb6\x01\xa0\xe7\x2a\x89\x8b\xea\x8d\x04\x96\x5b\xf6\x62\xc3\x5b\x36\x36\xad\xc5\xd0\xc3\xd9\xb2\x20\xda\x00\xe7\x3e\x8f\xd6\x1b\xc2\xf9\xb1\xa1\x78\xc3\x78\x81\x21\x68\xb6\xfe\x9d\xf0\x84\x77\x88\x7e\xa5\x78\xea\xc4\x14\xdd\x03\xe9\x77\x00\x74\x66\xc5\x43\x00\x74\x15\xea\xe8\x7c\x81\x2e\x50\x2c\xca\x7a\xa1\xbd\x24\xc9\x4f\x3d\xa1\x5d\x2c\xf9\x9e\x78\x52\x2b\x92\xee\x88\xce\xd2\xa2\x64\xd2\xd0\x78\x6d\xa3\x1c\x1d\xf8\x43\x5b\xaf\x88\xf7\x4e\xd7\x16\x2b\x67\x4f\x34\x68\x8b\x54\x67\x00\xd0\x32\xd4\x4b\x01\xd0\x8a\x34\xca\xbc\xe3\xea\x7d\x9a\xdd\x59\xc5\x6a\xba\xd6\x2b\x35\x49\x5d\xac\x45\x27\x96\xa8\x63\xb4\x1b\xa3\xbe\xa8\xa3\x75\xae\xf3\x7e\xaa\xe3\x74\xa6\xc0\xcf\xea\x02\xfd\x14\x6f\xb8\x5a\xac\x8f\x9b\xb8\x5d\x33\x5e\x77\x08\x00\x4d\xab\xf6\x27\x00\x9a\xc7\xda\x25\x79\x05\xaa\x9d\x46\xcf\xcc\x7f\x54\x6c\x63\x61\xca\x37\x55\xa9\x91\x95\x18\xa6\x0a\x33\xf6\x45\x3d\x56\xcd\x34\x3e\x0a\x75\x55\x45\x98\x52\x83\x3c\x55\x25\xa6\x65\xde\x16\x55\xb7\xf1\xd6\xc4\xb7\x6a\x82\x41\x04\x80\x66\x8e\xee\x1b\x00\x9a\x65\xba\xa9\xb9\x63\xca\x6b\x96\x07\x99\x6b\x95\x0e\xcb\xaf\x94\xeb\x4a\x9c\xd5\x27\x71\x86\x32\xd9\x1a\x17\x75\x45\xe9\x61\xc5\x87\xfa\x2b\x13\xac\x5b\x82\x32\x95\x4d\xd6\x95\xde\x37\x95\x1b\x2c\x9e\xee\x70\xd5\x06\xe3\x3b\x00\xd4\xa3\xfa\x47\x00\x68\xea\x75\xb4\x9c\xbf\x87\xe0\x35\x9b\xd3\x5f\x0e\x9c\xaf\x5f\x92\x64\xec\xaf\x69\x1c\x89\x4b\xea\x9b\xdd\x6c\x0c\xe7\xf5\xfc\x07\x1f\x08\xfe\xd1\x33\x17\xb5\xd4\x2f\xaf\xfb\x30\xd6\xe0\xd1\xdf\x15\x42\xb8\xe6\x22\x6c\x0b\xa2\x9e\x00\xc0\x96\xc2\x1d\x04\xc0\x2c\x95\x76\xe4\xac\x1a\xb8\x59\xf7\x2a\x7d\x4f\x3f\x16\xb2\x23\x09\xda\x07\xa0\xc6\xb8\xc0\x9e\x27\xb0\x9c\x70\x4c\xf7\x75\x64\x40\xf0\x8f\xee\x29\xe8\x2f\x7e\xe5\x5d\x3b\x70\xeb\x3d\x96\x76\xce\x23\xee\x73\xe9\x75\x20\x68\x04\x00\xac\xbb\xb9\x37\x01\x30\xcf\x96\xe2\x72\x1a\xfa\x6b\x20\xe8\x74\x51\xef\xdf\xd0\x71\x49\xf3\x7a\xd6\xb4\x6c\x88\xfd\xd2\x3d\x80\x48\x0c\x2f\xea\x5a\x81\x7a\x10\xfc\xba\xf3\x19\xb6\xc7\xaf\xaa\x73\x80\x10\xec\xb1\xc1\xe9\x41\x7a\xef\xb2\xdd\x6e\xa3\x13\x01\xb0\x86\xf1\xba\x00\x30\xed\x93\xf6\x64\xdf\xef\x49\x6d\xc1\xa4\x7b\x75\x8f\x87\xef\x59\x78\xb9\xf3\x39\x6a\x7a\xec\xaa\x4e\x77\x0c\x21\x7c\xba\x33\x1d\x37\x16\x7c\xb1\x63\x80\x58\xe8\x57\xdf\xd1\x44\x6e\xf3\xd8\xdd\x76\x85\xfa\xd6\xe5\x0f\xdb\x55\x56\x08\x00\xe6\x4f\x82\x31\x00\x8c\x7f\xc9\x76\x64\x7b\x75\x66\xa3\x0e\xa4\xc1\x9d\x99\x98\xcb\x0b\xe3\x3b\x2a\x70\x7f\xc5\x86\xb7\xdb\x08\x2f\xe7\xaf\x6e\xbb\x45\x1e\x17\x6c\x6e\xab\xa0\x86\xfa\x25\xb4\x4d\xa6\x07\x7b\x5c\xb0\xb3\x99\xe4\x09\x33\xac\xd3\xb9\x42\x00\x4c\xfb\xc5\xdc\xff\xc9\xa5\x48\xce\x6a\x69\xb7\x11\x10\xa9\xfb\xdb\xba\x49\x11\x0b\x96\x3b\xf6\x91\x3f\xc7\xec\x70\x04\x50\x57\xce\x6f\xb4\xab\xe8\xe4\xe0\x06\xbb\x0b\x33\xdd\x2f\xa4\xf5\x24\xeb\xa9\xc7\x6b\x5b\x04\x77\xf2\x84\x1a\x33\x51\x38\x13\x00\xa3\x53\xfa\x09\x00\x43\xaa\x72\x55\x26\xab\x75\x39\xe3\xcf\xd4\x09\xb6\xc7\xac\xea\x05\x7e\xb6\x5c\xf6\xd6\x98\x7c\xeb\x7e\xce\xfb\xb0\xef\xd6\x5c\x5e\x71\x70\x82\xe5\x11\x7f\xad\x5f\x9c\x65\xab\xe0\xc5\xd4\x2c\x73\x8e\x68\xef\x84\xcb\xc6\x6c\x59\x29\x00\xfa\xef\xca\x49\x00\xe8\x27\xab\x6b\x33\xee\x58\x6a\x84\x9f\x52\x1c\xe6\xbd\xa2\x1b\x89\x07\xcd\x19\xe2\xdf\x62\x5c\x4c\xe7\x24\xfa\xb0\x47\x26\xac\x94\x14\x1c\x63\x0a\x91\x61\xfd\x6a\x4c\x40\x9e\x35\x55\x6e\x78\xa2\x38\xe0\x9a\xa8\x6f\x55\x8d\x00\xa0\x3b\xa3\xee\x06\x40\x97\xac\x51\x65\x10\x8d\xbb\x54\x37\x52\x7c\x8d\x09\xea\xfa\xc4\x22\xc3\x39\xf5\x85\xe8\x35\x06\xac\x26\x3f\x6c\x8f\x61\x82\xe6\x7e\xb0\xb7\xfe\xbc\x96\xed\x57\xa7\xdf\xa5\xf3\x9a\xfa\x9b\xde\x55\x07\x75\x6d\xd3\xd5\xe9\xb2\x00\xd0\xbe\xd7\xee\x07\x40\xbb\x52\xab\xcf\xf0\x33\xac\xd4\x7b\x26\x3f\x36\x84\xe8\x89\x89\x21\xfa\x03\xfa\x63\xd1\x6d\xfa\x1a\x43\x40\xd8\x6a\xdd\x2b\xc3\x60\xb0\xbf\xee\xa0\x71\x86\x1f\x57\xb7\xde\x28\x9c\xfa\x42\x17\x6d\x38\xec\x7a\x41\xbb\x4d\x7f\x19\x00\xad\xf9\xff\x93\x24\x58\xed\xc7\xf4\x31\xfd\x6e\xd3\xef\xc9\xbb\xf4\x71\xe6\x09\x89\x53\x75\xc7\xcc\xd0\x68\x93\xae\xcc\xbc\x3c\x6c\x95\xf6\xb2\x65\x7e\x70\x9a\x76\xb3\xa5\xdf\x6f\x97\xb6\xd7\x52\x3b\x2d\x4b\x9b\x6d\xba\xe2\x16\xa9\xf9\x6a\x4c\x03\x40\xeb\xaa\xef\x04\x40\xeb\xa3\x6b\x48\xeb\x1c\x5d\x59\xd3\xbd\x70\xf5\xe2\xff\xea\x29\x71\xea\x91\xfa\x46\x68\x04\x7d\xd8\xa7\x39\x62\xce\xe9\xc1\xff\xe0\xbe\x01\x96\xc1\x04\xe4\x57\xef\xc9\x03\x7b\x31\x87\xdc\xdf\xf7\xbc\x23\x9c\x1c\xd7\xdc\x31\x9d\xd6\x08\x40\xeb\x08\x0f\x02\x80\x25\x5f\x3a\x96\x96\xb6\x24\xb9\xee\xc4\x42\xf9\x48\x0f\x44\x1c\x87\x1e\x9e\x08\x4d\x89\x40\x0c\xde\x6e\xb9\x31\xe7\xf8\xc0\x25\x44\x7b\x40\xef\xc0\x34\x74\x85\xf7\xdc\xfe\x51\xec\xc3\x49\x1e\xdd\x6f\x88\xab\xc6\x09\xda\xab\x69\x0f\x01\x68\x9d\xc1\xd3\x02\x60\x7e\x20\xed\x4d\xbd\x32\x72\x10\x12\xbb\xb0\x60\x38\xb2\xe9\x60\x5c\xd2\xe0\x8e\x96\xba\x88\xd2\x01\x27\xfc\xf7\x39\xc7\xfa\x7b\x50\x95\x01\xc3\x7d\x8f\x30\x7f\x78\x67\xf5\x49\xf1\x4d\x93\xe6\x75\x5d\x26\xdd\x1e\xd7\xd6\x26\xa6\xdf\x01\xc0\xa6\xe0\x47\x02\x60\x16\x4a\x8f\xa6\x0e\x0f\xaa\x5a\x66\x2f\x9c\x36\x10\x01\x47\xc7\xfe\xec\x7b\x87\x1c\x89\xf0\xef\xfd\x8a\xbe\x3f\x67\x75\x6f\x08\x2e\x21\x60\xb0\x47\x4d\x70\x78\x37\xf7\x04\x92\x8e\x4e\x2a\x75\xf6\x51\xef\x8e\xfb\xcd\xbe\x8f\xd5\x07\x80\xb5\x48\x58\x0e\x80\x69\x50\x76\x33\xe5\x71\xdf\x20\x2a\x67\x01\xb5\x97\x8e\xa9\x88\x65\xf7\x20\x71\x4d\xe1\xab\xba\x55\x84\x8a\x39\x8d\x5d\x7b\x49\x35\x01\x94\xae\x30\x0a\xd6\xbb\xa6\x73\x1f\xad\x76\x12\xa6\x3d\x8d\x59\x39\xee\x6f\xdb\x17\xee\x77\x00\x2c\xae\xe2\x8b\x00\x18\x77\x2b\x1a\x53\xea\xba\xaf\xe3\x37\x24\xde\xed\x3a\x49\x94\xc6\x3c\xeb\xbc\x41\x2e\x08\xcf\xe8\x9c\x4a\x79\x3e\xc7\xc3\x09\xa7\x8d\x04\xe4\x77\x5c\x62\x10\xbc\x2b\x3b\x30\xac\xc9\x93\x34\xf6\xaf\x9c\x37\xe3\xa3\xad\x55\xc2\x8d\x00\x98\xae\xc8\x72\x00\x30\xdc\x52\x9e\x4a\xd6\x39\x7d\xe8\x9f\x13\xcb\x3b\xe6\x31\xc9\x31\x9d\xed\x75\xac\x2b\xf3\x7f\xb6\x8d\x70\x66\x84\xbc\x76\x7c\xe5\x52\x03\x6a\x1d\x7a\xde\x45\x6f\x8b\x23\x44\xe0\x3d\xe9\xa9\xcd\x5f\xb4\x7a\xfc\x56\x73\xa8\xcc\x02\x80\x31\x4b\x99\x00\x80\x7e\xab\x1a\x93\x9c\xea\xd8\x2c\xd8\x9f\x38\xd9\xfe\x42\xb8\x21\x06\x69\xcf\x17\x0d\xcd\x7f\xd8\xba\x44\x2c\x0c\x79\xd6\xea\xfe\x7f\xec\xba\xe5\x57\x94\xff\x17\xf7\xfb\xc1\x06\x95\x52\xe1\x2b\xa0\x12\xd2\x28\x48\xa9\x94\x74\x77\x77\xce\x30\xc0\x0c\xcd\x0c\xc3\xd4\x75\x5d\xd3\x05\x43\x77\x77\xb7\xa0\x82\x12\x82\xa0\x02\xb6\x22\x76\x8b\x2d\x76\x9f\xf5\xbb\x9f\xdd\x6b\x9d\xff\xe0\x9c\xfd\x60\xaf\xb5\xf7\xd3\xd7\x7a\xef\xbd\xdf\x6b\xed\xec\xd8\xdd\xe9\xbc\x4e\x62\xa4\xcc\x15\x5e\x64\x8e\xad\x84\x37\x7b\x8e\x4c\x58\x6f\xca\xc4\x51\x89\x00\x30\x36\xd0\x58\x00\x20\x97\x21\x9a\xd1\x4f\xde\x2d\x8a\x87\xfe\x18\xcf\x98\xf2\x44\x57\x82\xdb\x47\xa5\xaa\x37\x71\xa5\x69\x52\xfb\x26\x39\x14\xda\xf8\x6e\x1c\xc7\x00\x4a\x94\xf9\xc4\x7e\x05\xcb\x48\x34\x30\x9f\xc2\x35\xeb\x3b\x19\x9a\xf0\x39\x00\xe8\x5a\x30\x11\x00\xc4\x17\xf6\x32\xba\xc7\x3d\x0e\x27\xe9\x77\x70\x65\xe0\x3b\x3a\x6f\x38\x85\x48\xb0\x7a\x21\xfb\x35\xb2\xbc\x6f\x84\xed\x47\x87\x76\xe3\xd9\xe2\x0c\x25\xd9\x9d\xac\x93\x0c\x0b\x89\xeb\xcc\xf5\xf4\x07\xeb\xdf\xd0\x45\x74\x17\x00\x90\x71\x04\xfb\x3f\xa7\x06\x9f\x35\x9a\xe3\x8c\x32\x37\xea\x97\x71\xb6\x33\xd1\x3a\xb7\xd9\x4c\xe6\x15\x75\x11\xeb\x3a\x2b\x70\xdf\x24\xcb\x98\xbd\x61\x77\x01\xf3\x29\x3b\x5b\xd6\x8a\x59\xc6\x7a\xb2\x55\x9a\xa1\xc0\xbc\xb1\x41\x07\x79\xcc\xa8\x07\x00\xb1\xa4\x07\x02\x00\x9f\x46\xfc\x0a\xf4\x83\xb6\x39\x4f\xb0\xef\x05\x5f\x74\x17\x51\x30\xa1\x85\xde\x7e\xe9\x62\xe1\x27\xfd\x3d\x51\x5f\xa3\x24\x82\x23\x82\xf5\x63\xc2\xc2\x61\x57\xe7\xb8\xd1\xe8\x2e\xb3\x80\xf8\xff\x50\xaf\xb4\x42\x31\x46\x09\x88\xcc\x3c\xee\x40\x52\x32\x00\x84\xb7\x69\x2b\xf9\x16\xfe\x18\xf7\xb3\x6c\x99\xc0\x20\x6f\x3b\x72\x45\x30\xca\xef\x78\x9a\x67\xe8\x5c\x90\x2f\x2a\x34\xc2\x37\x6c\x4b\x50\x4b\xd4\x4a\xe4\x75\x97\x4b\xb1\x09\xb1\x1d\x47\xbf\xa0\x5e\xc4\x33\x35\x7f\xc4\xcb\x26\x9e\x95\x29\xc4\x56\x60\xe3\x01\x20\x34\xa7\x37\x8a\x0e\xf8\x4c\x79\x3f\x63\x39\xfb\xbd\xf5\x57\x22\xcd\x04\x9a\x04\xd9\xa4\x16\x05\xdf\x0c\x85\xe3\x4e\x87\x15\x47\xdc\x0f\x52\x8c\xf4\x89\x09\x76\x09\x89\x91\x42\xdd\x3a\x5a\x1d\xd7\x9a\xe0\xa5\x59\x8f\xba\x8d\x35\x97\xb1\xc2\x6e\xc3\x95\x02\x40\xf0\xc8\xe8\xca\x55\x71\x7f\x11\xb2\x8d\x91\xe6\x45\x08\xeb\xcd\xd1\xf3\x3d\x10\x69\x95\x72\x30\x60\x6f\xf4\xa7\x58\x6e\xf0\xa1\xb8\x89\x40\x99\x30\xcf\xf8\x52\xe7\x9c\xc8\x98\xc4\xcc\x23\x9f\x62\x54\x71\x07\x35\xb7\xc7\xfa\xa7\x20\xd2\x1f\x13\xcf\xa4\x26\x00\x80\xe7\xe1\xff\x13\xf8\x3b\xcb\xc7\x94\x23\x57\xdd\x36\xc7\x0d\x67\xcf\x78\xee\x43\x5f\xc4\x7d\xf6\x49\xc4\xdc\x8e\xa1\xfa\x5f\x4b\x12\x0b\x50\x0f\x76\xc5\x69\x39\xf5\x85\x75\xa5\x04\x1c\xf1\x8f\x6c\x48\x43\x6b\x54\x47\x5d\xc8\xd8\x23\x7d\x3d\x01\x95\x51\x0b\x40\xd6\x70\x76\x2d\x4f\x60\x57\x9f\xd4\x0d\x3b\x38\xae\xe2\x0e\x10\x70\xae\x41\xc9\xed\xd8\xf3\x1e\x6b\xa9\xdb\xa3\x19\x3e\x1d\x69\x02\x7f\xb7\x80\xcc\xf4\x3f\x8e\xdf\x42\x14\x32\x33\x0f\x9f\x0f\x3f\x96\x75\x53\xc3\x2e\x82\x8e\x7f\x2f\x7d\x07\xa3\x40\x90\x05\x20\xf3\x59\xce\x6f\x8e\xb5\x95\x1a\x31\x84\x26\x6f\x73\x93\xf8\x31\x2b\xca\x61\x20\x87\x91\xf8\xcd\x65\x38\xe7\x6d\xe4\x3b\x8f\xcb\x24\x9c\xdf\x26\x9f\x6f\xa4\x7b\x8e\xe2\x01\x6b\x64\xbf\xc3\xc6\x21\x1e\xe4\x33\x1a\xbb\x42\x5f\x92\xff\xca\xec\x44\x17\x93\x3b\x01\xc8\xdc\x4e\x35\x60\xde\x3c\xda\xc7\x6e\xa2\x6c\xb4\xbc\xc6\x36\xcb\xa8\xb5\xdd\xcd\x5a\x4a\x48\x72\xc4\xb1\x2c\x23\x4a\x5d\x97\x99\xa7\x7d\xbe\x78\xb9\x30\x75\x1d\x6c\xfd\x78\x8c\x2a\xd3\x33\x41\xff\x31\xb6\xab\x7f\x0f\xd1\xa2\x67\xc9\x04\xa1\x0a\x10\x18\x80\x0c\x21\xf4\x92\x91\x62\xda\x55\x6c\x47\xea\x36\x17\x2f\x92\x4a\x0f\x39\xc6\x2b\xb8\x8a\x71\xb0\x97\xcd\x8f\x0c\x2f\x76\x1e\xca\xfb\xe8\x63\xe1\xe1\x9f\x0b\xd9\x2f\xfb\xcc\x0a\x25\x4d\x9b\x02\x2a\xf8\x9d\x1a\x36\xc1\x1b\x79\x04\x99\x2b\x71\x57\xd9\x54\x00\x32\x3c\xe9\xca\x8c\x4d\x26\xc3\x95\x30\x49\xd9\x4c\xba\x42\x2c\xed\xbd\x55\x7d\x59\x64\xfc\xaa\xdd\xd1\x12\x41\xb8\xbd\xd3\xab\xa2\x71\x9f\xed\xee\x55\x05\xab\xf6\x0b\x3e\x7b\xf2\xe5\x4d\xfb\x03\x76\xe5\xf9\x69\x30\x83\xaa\x85\x2f\x64\xf5\xe3\x52\xb9\x34\x00\x32\xf4\xe9\x5f\xe9\xcb\x26\x5b\xea\xce\xe4\x9c\x3f\x1a\x54\x2b\x9d\x36\x6e\xf9\xb6\x5a\x29\x7e\xca\x56\x58\x29\x16\xae\xe9\xe4\x58\xf6\xd0\x67\x9b\xdb\xdf\x92\x49\xfb\x37\xde\xc2\xa2\x6a\xd3\x15\xff\xd6\x02\xb2\xc6\xbb\x20\x63\x51\x83\x6c\x67\xec\x67\xde\x1f\x00\xd2\x7f\x32\x72\x72\x29\x21\x75\xce\x4f\x19\xd4\x30\x35\xf7\xde\x9c\x83\xe1\xe7\xbc\x31\x29\x32\x91\x9d\xfe\x21\xb1\x5e\xd1\x23\xc1\xf1\x01\xb7\x62\x17\xc3\x99\xce\x0e\xa8\x77\xd1\x3d\x47\xfa\x31\x1b\x50\x4f\x34\xfe\x62\x56\x12\x68\xd2\x6b\xb8\x9f\x49\x4c\x00\xb2\x77\xa4\x87\x08\x99\x41\x12\xee\x53\xf4\xbe\xe0\x73\xde\x56\xc4\xa4\xd0\x36\xbf\x9e\x64\x4c\xf8\x74\x90\x5b\xcc\x64\xd4\xe6\x30\xb1\x80\xa0\x98\xc0\xc8\x05\xa7\x9b\x71\xad\xb1\x75\x47\x42\xd0\x77\xe2\xb3\x35\xba\xe3\xa7\x12\x4f\x4b\x9f\xc5\xe1\xb0\x54\x00\x08\x0b\x19\xbb\x04\x74\x7f\x82\xf7\x39\x64\x39\x30\xc1\xef\x77\x76\x43\x30\x3b\x48\x09\x77\x3c\x74\x25\x34\x21\x46\x33\xc2\x27\x62\xd1\xff\x46\xd4\xb5\x18\x3b\x27\x74\xac\x1f\x6a\xf6\x88\x18\xaa\x31\xc1\x42\x23\x0c\x2d\xc2\x1a\x48\x73\xb1\xb7\x70\xdd\x00\x10\xb2\x33\x77\xf0\xf2\xbc\x6a\x83\x9f\xc3\x7b\x7d\xbe\x87\xb1\x08\x7b\xfd\xc9\x91\x3b\xb1\x71\x41\x7a\xd1\xe7\xa2\x37\x86\xfc\x89\x2b\xf1\x5b\x09\xbf\x1b\x9f\xe2\x58\x1c\xd5\x9b\xe8\x75\x38\x3a\x56\x1b\x27\xab\x7e\x39\x4e\x26\x05\x27\xed\x9e\x24\x4a\x25\x03\x80\x1f\xc6\xa7\x72\xda\x5c\x7f\xc7\x38\xd0\xb2\x3c\xfa\xe2\xd0\x59\xfd\xde\x7c\x34\x2d\x49\xc3\x4f\x80\x11\x45\xfe\x08\xec\x4a\x1c\xf7\xfd\x10\xf2\x18\xfb\xca\x61\x31\x02\xa4\x28\x9b\x9e\x8f\xea\x4f\xb3\x54\x47\x47\x97\xa7\xff\x93\x3e\x9a\x78\x38\xa3\x07\x80\xac\xfb\xd9\xcf\x59\xef\x1c\xeb\x93\x0c\x29\xab\x2e\xdd\xd8\x13\x99\x3e\xee\xf7\x93\x4d\x13\xbe\x7b\x6b\xa6\x34\x45\xfc\xf1\x13\xa4\x69\xfb\xca\x05\xc9\xa6\xb7\x39\xc8\x87\xe2\x33\x75\x4c\x1d\x22\xbc\xb3\xea\xd4\x95\x23\x13\xf0\x4b\xd2\xbe\x98\x55\x82\x32\x00\x59\x52\xa4\xc3\x8c\x26\x1b\x83\xec\x7c\xd2\x92\x7d\x15\xd1\x22\x1d\xe3\x6c\x40\xbc\x8f\xb1\x72\x7b\x95\x13\x10\x4e\xf4\x3a\x9d\xf3\xc4\xfb\xbe\x5f\x03\x09\x6d\x6f\x18\x14\x40\x7a\x67\x72\x32\x34\x8e\x9c\xa2\x0e\xc2\xee\x91\xe7\xa5\x99\xf1\x58\x72\x1d\x00\x99\x06\x54\x3f\x84\x6b\xd1\xc0\xea\x24\x7e\xb2\x66\xb2\xbc\x53\x2f\xd8\x73\x99\x9f\xd0\xe7\x9d\xeb\x98\xf8\x30\x3d\xf7\xf3\xcc\x4d\x5e\xb7\xbc\xbf\x32\x84\x76\x78\xff\x0f\x0c\x39\x13\xdf\x60\x7d\x7a\xe3\xfe\xb5\x50\x65\xba\xba\xf4\x35\x74\x24\xe2\x0e\x40\x46\x3b\xf4\x05\xde\x79\x14\x2e\xda\x96\x2d\xb2\xec\x2a\x78\x95\x92\x63\xf3\x29\x7f\x02\xd5\xe2\x78\x44\x14\x13\x7a\xd8\xb5\x24\x6f\x9b\x97\xa6\xe7\x57\xe1\x88\x9d\x94\x9f\x8a\x20\xce\xc4\x24\xb0\x89\xbf\x57\xdd\x2a\xf8\x37\x4f\x4c\x26\x18\x55\xc4\x56\x03\x20\x23\x9a\xae\x08\x95\x1f\x61\x55\x98\x65\x6f\xb3\xe8\x2d\x9b\x49\x11\xb7\xd9\x58\x6a\x84\x72\x76\x08\x2e\x26\x85\xbc\x76\x39\x57\x38\xed\xf9\xcb\xd3\xa8\x40\xd2\x6e\xa3\x6f\x86\x28\xca\xc4\x29\x70\x47\xee\xb8\xba\x20\x98\x27\x8c\x93\x39\x89\xd2\xe5\x2a\x01\x90\x61\x49\x7f\x03\xf9\x1d\xbe\x5a\x9b\x4e\x18\x31\xff\x5c\x3d\x91\xbc\x68\xed\x56\xf9\x10\xb5\xc7\xbe\xb9\xfc\x41\xc8\x55\x97\x5d\xa5\xcb\x9e\xbf\x3c\x72\x8b\x57\xec\x54\x7d\x6e\x15\xde\x36\xc9\x09\xa8\xc8\x7f\xa0\xfe\x3a\x58\x59\xb4\x4d\xd6\x20\xae\x9b\x57\x0c\x40\xfa\x3f\x46\x12\x8f\x17\xee\xed\xb2\x19\x7a\x13\x51\xee\x7e\x13\x7f\x36\x4a\xdb\x9b\x94\xf4\x22\xfa\xa2\x3f\x2a\x2a\x35\xb6\x3a\x38\xc1\xcf\x01\xc5\x0c\xa7\x3a\x8a\xc5\xa7\x44\xd7\x9b\xce\x24\x58\xa3\x66\xd5\x3d\x12\xee\x27\x84\x4b\x15\xa5\x84\x26\xa5\x03\x90\x5d\x92\x7e\x9a\x5b\x13\xb2\xe4\x3e\x0b\x29\x86\x85\x7b\x5b\xe3\xc5\x23\xe4\xfd\x9a\x92\x9c\x22\xd7\x82\x6c\x22\x5f\x44\x7f\x0b\xfd\xe6\xbb\x10\xb7\x23\xf2\xa4\x43\x19\xfa\x40\x2c\xd7\x34\x0d\xa3\x12\xef\xa7\xbe\x0e\x73\x31\xb1\x54\x8a\x94\x7c\x01\x8b\x06\x20\xdb\x27\x03\xc7\xe9\x08\xf2\xf4\xee\xa0\xd9\x86\xec\xf4\x5b\xce\x72\x0b\xdb\x14\xf8\x39\xb1\x39\x62\x47\xa8\x7b\x64\x68\x94\x73\xc4\xa0\xaf\x4f\x4c\x59\x8c\xba\x83\x41\xdc\x03\x54\x93\xe9\x6e\xf4\xfb\x04\xd9\xfd\xa3\xf1\x35\xd8\xf5\x52\x9e\xc9\x26\xb8\x22\x00\x08\x7f\x33\xa3\x59\x8b\xbe\xd9\xc1\x93\x94\x5a\xff\xa6\xb0\xb0\x8c\xbb\x81\x3f\x23\x5e\x24\xa0\x43\x70\xd1\xc5\x11\x4e\xe1\x1b\xe2\x62\x7c\xd0\x91\xdd\xf1\x66\xf6\xb8\x18\xbb\x44\x45\x13\x46\x1c\x84\x7d\xb8\xdf\x0c\xa5\x93\x62\x26\xa5\x85\x7d\x9f\x1a\x03\x00\xc1\x1c\xdf\xc7\x38\xef\xb9\x39\x7a\x8d\xf4\xd4\x9b\x11\xb7\x23\x1d\xe3\xa7\x89\xd6\xc3\x68\x05\xdc\xc5\x58\x85\x9b\x07\x4f\x24\xa6\x7a\x93\xc3\xc6\xb1\x0d\x76\x2d\x91\x35\xc9\x77\x8c\x3f\xc6\x6c\x4f\x13\x53\x5b\x89\x59\x4a\x3f\x2f\xb5\x27\xa9\x36\xa3\x18\x00\x7c\x02\xf1\x3f\xba\xaa\xcb\x5c\xe2\x48\x4e\xb8\x7b\x15\xd6\x2a\x4d\xcc\xab\x14\x37\x81\xfe\xe6\xcb\x49\x31\x0c\xb3\x08\xe8\x4c\x9d\xf4\xaa\x0f\xfe\x9c\xee\x68\xfb\x21\x5c\x3e\xe3\xba\x71\x46\xe4\x60\x56\xa0\x5a\x6d\xd4\x20\x3e\x5f\x4a\x3b\x31\x9a\x00\x00\xc8\xaa\x20\x45\x42\x37\xec\x13\x08\xd3\xd9\x7e\x4e\xf9\xd9\x70\xca\x51\xd7\xc7\x44\x13\x94\x9f\xa7\x37\x71\x34\xe4\xac\xcf\xcb\x1c\x5f\xcf\x8c\x80\xbc\x9c\x67\xb6\x3b\x42\xc4\x48\x54\xa3\x4f\x61\xf3\x64\x59\x35\x41\x84\x29\x99\x2a\x45\xc6\x5c\x23\xd3\x00\xc8\x1c\xa5\xc6\xd1\xb6\x1c\x1b\x67\x76\xe3\x7b\xec\xd0\xcc\x58\xdc\xb8\xd3\x41\xe6\xce\xd8\xb7\x6e\x5b\x18\x2d\xc1\x4c\xcf\xef\x0c\x57\x8f\x2c\xdf\x97\xf4\x67\x36\x11\x81\xf5\x74\xb6\x91\x28\xa4\x90\xae\xa7\xc6\x09\xa3\x21\xb3\x52\x57\xe2\xa7\x90\x75\xff\xd3\x05\xf4\x82\xc2\xb5\x60\x14\x5c\xc9\xb2\xb4\xa6\xe6\x4f\x62\xa3\xec\x0b\x45\xad\x31\x17\x9c\xcb\xf2\x22\x83\xca\xdd\x47\x72\x95\xdd\xe7\xbd\x6f\x0b\x5e\x58\x7f\xf7\x9f\xe1\x0f\x1b\x11\x83\x7e\xf2\xf2\xd4\xae\x85\x06\x73\x39\xd2\xc1\xe8\xcf\xac\x3e\x00\x32\xee\xd0\xd7\x91\xbf\x98\x33\xcb\xde\x67\x8e\x1d\x43\x4a\xe1\xa4\xe7\x76\xb5\x25\x1b\x62\xb0\x4e\xbd\x45\x31\x41\xde\x6e\x2b\x05\xb3\xee\xb5\xde\x92\xf9\x86\xd6\x6f\xfc\xb7\xe7\x35\x1b\x09\x82\x62\x72\xf7\xef\x57\x0a\x79\x24\xb8\x23\xdd\x8b\x2e\xe0\x94\x00\x90\x31\x44\x5f\x22\x97\x9b\x2d\xd4\xec\xcb\xc4\x5a\xcd\x56\x25\x26\x35\xd8\x3e\xac\x68\x88\xb1\x74\xfc\x54\x76\x22\xe8\xb0\x9b\x6a\xc9\x25\xf7\x3a\xaf\xa8\xa2\x4f\x36\x5b\xfc\x12\x0b\x15\x8d\x26\x02\x97\xf3\xdd\xf6\x53\x42\xd2\xf2\xb2\x64\xd4\xd1\xd2\xbc\x8d\x00\x64\xa4\x33\xdc\x11\xa7\x98\x42\x17\x1c\xf1\x40\x6c\xb5\xc7\xee\x14\x56\xdc\x0d\xef\x3e\x94\x15\xda\xc6\x9f\x14\x12\x1c\x7f\x29\x18\xed\x71\x3a\x21\x26\x1c\x65\xb3\x2d\xf1\x73\x74\x9a\x21\x06\x1b\x84\x8a\x57\x71\xc5\x36\x62\xee\x6c\x43\xa7\xdf\x48\x92\x03\x20\xc7\x3a\xc3\x07\x66\x47\x99\x79\x6c\xcd\x66\x44\x93\xbc\x53\x93\x3f\xc4\xbc\xf0\x9b\x88\x3b\x11\x87\x04\x99\x07\x3f\x46\x9b\x87\xde\xf0\x08\x88\xff\x17\xc9\xb2\xee\x4f\x98\x88\xb5\x35\x94\x4f\xb2\x45\x3f\x51\xd9\x90\x54\x9a\xb8\x61\x5b\x68\xba\x1b\x16\x00\x40\xfc\x93\xf1\x0a\x1a\x0b\x7f\xe6\x7d\x95\x70\x25\x32\xc8\xef\x7d\xb2\x7f\xd4\xd7\xc0\xdf\x71\x07\x62\x4e\x86\x6a\x06\xc7\xc7\xd5\x44\xe0\xdd\x57\xd1\x05\xd1\x2b\xd6\x81\x18\x12\xca\xf9\xd0\xc5\xc4\x3d\x98\x72\xe5\x73\x89\x39\x49\x49\xdb\x9c\xd2\x4e\xe1\xf4\x00\x20\x76\x67\x2e\xd1\xe4\x83\x0d\x82\xa3\xf0\x91\xa1\x1b\x42\x3f\xe2\xa4\xc3\x41\x04\x3e\x56\x26\x52\x3f\x7a\x7f\x50\x66\x34\x21\xf6\xa3\xfb\xee\xd8\x71\xf4\xf4\xb1\x4e\xd4\x87\x84\x9a\x43\xc7\xe2\x67\xb0\x81\xca\xb1\x18\xeb\xe4\xca\x6d\x87\x52\x99\x29\x9f\x01\xc8\xfe\x88\xff\x43\xe1\xf8\xcd\x47\x87\x67\x3e\x0d\x78\x11\x9b\x94\x74\x2a\x58\x0f\x45\x88\xbe\x13\x3a\x10\x5f\x14\x18\x1d\xe1\x9e\x70\xc1\x4d\x37\xea\x49\xd2\x3f\xab\xa7\xb1\xc1\xc9\x16\x06\x83\xa8\xd0\xd4\x18\x65\x45\xf4\xee\xf4\xfd\xdb\x8e\xa5\x58\x64\x18\x00\x90\xbd\x9f\xe8\x4d\xea\xf7\xe2\x26\x74\x66\x84\xf9\xfc\x4c\x3a\x9a\x98\xe9\x5f\x80\x9d\x88\x1a\x0e\x42\x27\x3b\x04\x84\x85\xba\xa6\x3c\x75\x75\x8b\xd0\x4a\xcb\xb6\x3a\x10\xb5\x92\x21\x63\x60\x1d\xbb\x3e\xb3\x61\xdf\x6a\x9c\x6a\xd6\xfd\x6d\x81\xc9\x9b\xf1\x4d\x00\x10\x42\x48\x54\x22\xd9\xd5\x09\xef\x92\x16\xe8\xa1\x43\x90\xc1\xd4\x78\x1f\x24\x2c\x46\xca\xfb\x45\x67\xa7\xf9\x7d\x0b\xac\x27\x6a\xbb\x1c\x0c\xb9\x49\xbc\x69\x19\x12\x7e\x33\x47\xa0\x3f\x11\xb5\x9b\x64\xb2\xef\x79\xf4\x24\xe9\xe4\xb6\x01\x2c\x44\x56\x05\x00\x4f\xa0\x86\x11\x68\x8e\x87\xe8\x5d\x29\x85\x2e\x68\x7a\x4e\xbc\x94\xfb\x49\xba\x75\xf8\xa8\xb7\x11\xf2\xc7\xf7\xa2\xdf\x18\xb2\xe8\x6c\x19\x64\x86\x14\x58\x74\x87\x52\x90\x08\xfd\xec\xf0\x27\x88\xc1\xbe\xb5\x28\x69\x78\x75\xfb\x96\x24\x1c\xec\x0d\x40\xd6\x23\x68\x0c\x9f\x61\xfb\x50\x14\x9b\x9c\xec\x18\x9f\x97\x88\xba\xe3\xba\x21\x37\x21\xac\xd7\xa3\x5b\xe8\xef\xf3\xd6\x27\x4a\xe0\xee\x54\x11\xb0\x83\xef\x6e\x61\x1f\xcc\xe5\x05\xea\x07\x84\xed\xe7\x46\x2b\x9b\x46\xac\x72\x0a\xb7\x33\x12\x1b\x99\x75\x00\x64\x71\x91\xde\xac\x0b\x36\x2b\x25\xc7\x70\x6f\x1c\x22\x8a\x3e\xa3\xb2\x9c\xff\x15\x56\x85\x85\xb8\x0f\x16\x1c\xf2\xe9\xf2\xce\x14\x2d\x3a\xa5\xf8\x1f\xce\xa3\x58\x18\x05\x9d\xc9\x35\xd5\x47\x85\x12\x04\x9f\x94\x33\x23\x52\xf8\x67\xb6\x5f\x48\xb4\x63\xa3\x01\xc8\x0a\xa1\xa7\x67\xf9\xd9\xc8\x57\x5a\xe0\x4a\xec\x0b\xca\x87\x51\x66\xce\x7a\x65\x0a\x61\x06\x6e\x8f\x4a\x52\x7c\x8a\xbd\xda\x8a\xa6\x9c\x70\x7e\x84\x42\x03\x0b\x97\x20\x89\xfc\x4e\xfd\xb6\x90\xc7\x22\x7d\xe5\xab\xe1\x6f\x72\xcd\x25\x0f\x27\x4c\x73\xe6\x00\xc8\xda\x49\xff\x4a\x6c\xc5\x4c\xb8\x5c\x4c\xfd\x9d\x90\xe8\x81\x8a\xef\x4e\x0c\xf3\x7e\x12\xfe\x2f\x09\xed\x9f\xef\x7b\x02\x2b\x08\x8e\x75\x1a\xc3\x9d\x0e\xb7\x37\xef\x48\x7e\x1b\x6d\x7c\x80\x98\xba\x2d\xee\x9f\x52\x75\xaa\x0d\x46\x67\xcb\x07\xfc\x89\xc4\x39\x00\xc8\x01\x19\x77\xb2\xff\xa2\x63\x3d\x0e\xa6\x46\xc4\x07\x7a\x33\xe2\xe5\x30\x1c\xbf\x89\xf0\x8c\x84\xd3\x41\x1a\xbe\x86\x49\x52\xa1\xbd\x4e\x0e\xd8\xd4\x48\x27\x73\x7b\xdc\x7c\xcc\x9b\x03\x3a\x29\xeb\xd1\x18\xa5\xf0\x14\xbf\x04\xdb\x2d\x6f\xf1\xa6\x49\x4d\x00\x90\x77\x64\x86\x64\xbb\xc7\x6d\xf4\x1e\x4b\x19\x44\x59\xfb\x2d\xa1\x49\xe8\xde\xc0\x0b\x61\xf7\x30\xdb\x42\x56\x7d\xda\x12\x78\x11\x07\x1c\x17\x92\x76\x46\x43\x66\x77\xb1\x85\x71\x2b\x7a\x2b\xb8\x17\x98\xad\x4a\x3a\xc9\x81\x89\xb5\x5b\x1e\x67\xf5\x62\xcf\x03\x40\x3a\x97\xa5\x81\xcf\x8b\x4c\x0f\x06\xc9\x7b\xa2\xf7\x84\x72\x51\x52\x31\xef\xc2\x7f\x85\xd6\xc5\xf5\x47\x35\x79\x17\xa3\x39\xb1\x89\x0e\x0f\x31\x91\x68\x63\x33\xf9\xc4\x7d\x09\x9b\xf5\x9c\x92\xaa\x92\xba\x15\x1f\x60\x83\x70\x33\x5b\x9e\x67\xd2\x53\x4a\x00\x20\xc9\x12\x8c\xb3\xf6\x85\xfa\x46\xe1\xb1\xe7\xc3\xf5\x63\x9a\x63\x6f\x47\x5a\xc6\x75\x87\xd0\xa3\x03\xd0\x0b\x5e\xa2\x58\x6a\x82\xb8\x03\x40\xd5\x24\xd9\x1c\x8d\x88\xaf\xc2\x41\xba\x8b\x09\x47\x53\x1a\x14\x7b\x12\xa3\xd3\x5c\xc4\x37\x64\x38\xa6\xdf\x04\x20\xc7\x8d\x88\xcb\x20\x06\x1e\xc0\x54\x27\xc5\x06\xc7\x27\x6a\xc7\x0c\x86\x4e\x24\x35\x07\x67\x44\xa8\xe3\x0e\x7b\x56\x44\x95\x26\x3f\xb3\x3f\x10\xf3\x23\x95\x75\x64\x08\x75\x20\x5d\x4f\x17\x8d\x7e\x99\x71\x5e\x91\x8e\xe1\x65\x7e\x17\xd7\x49\xff\x0f\xef\x07\x00\x91\x41\xa2\xa7\xc5\xf9\x78\x66\x0e\x27\x14\xf8\x9d\xca\x62\x46\x6f\x0f\xf4\xc7\x1b\x07\x89\x85\xec\xc4\xaf\x79\x44\x85\xdd\x23\x9c\xb3\x33\x88\x2c\xcd\x2e\x3c\xfc\x23\x46\x8e\x88\xd2\xdd\x14\xfb\x3e\xc7\x52\x51\x84\x3e\x96\x33\x27\xce\x49\xad\x20\xcd\x00\x90\xdd\x40\x35\x4f\x11\xb9\xff\x83\x09\xf1\x1f\xbc\xae\xc0\x21\x91\x5d\xbe\xf3\xb0\x7a\xc0\xc5\x80\xcb\xf0\x56\xf7\x90\xe0\x7b\xb0\x98\x6d\x54\xd8\x03\xe8\xf3\xe1\x98\xc8\x06\xe8\xbd\xce\x74\x74\x15\xbc\x49\xb1\x33\xae\x18\x7a\x23\xfe\x28\x85\x03\x89\x00\xc8\xde\x08\xe1\x93\x63\x5d\xce\x0a\x6b\xd1\x93\xee\x6b\x82\x0b\x11\x3c\x6f\x65\xfe\x6d\xff\xdb\x7e\x6e\xbc\x6f\x6e\x65\x81\x34\x9e\xaa\xcd\x42\xc8\x10\x37\xfa\x30\x08\x6f\xe5\x74\xea\xb4\x46\xde\xe0\xc8\x2b\x3e\x8a\x4d\x63\xc3\x12\x36\xc9\xe7\x19\xac\xff\xb9\x24\xc4\x15\xf7\xc9\xf9\x72\xa1\x3f\x3a\xcc\xed\x5d\x81\x46\x84\xba\xd7\x1e\xd1\x1d\x7f\xbe\xaf\x4f\x5e\x87\x5b\x64\x40\x6e\x2e\xd5\xa6\x35\xf8\x9a\x30\xc3\x74\x2d\x6c\x59\x80\xd7\xe9\x8f\xdc\xc3\xaf\x55\x92\x8c\xf9\xcc\x4b\x93\x20\x27\xe3\x58\xba\x00\x10\xd2\xe9\x5b\x70\x03\xce\xfb\xca\xcc\xd0\x4a\x6e\x6a\x25\xb3\xe1\x6f\x3c\x5d\x8b\x8f\xf8\xa3\x7d\x68\x85\x73\x6e\x1e\xfe\xa7\x0a\x82\x6c\xda\x83\xb7\xe6\xef\x3c\xbc\x39\x4c\x31\xef\x91\xce\xd3\x08\x42\xee\x2d\x25\x6c\x4c\x8c\x60\x51\x62\x19\xf7\x81\x4d\x03\x80\xa0\x43\x2f\x4e\xcd\x4a\x7e\xef\x9a\x82\x51\x4f\xc9\xf7\xb8\x1e\x69\x97\x1a\xee\xa3\x1d\x60\x95\xfa\xdb\x7f\xcc\xad\x3e\x6d\x38\x38\xc3\xc6\x33\x1d\x0e\x3f\x6c\xf2\x2c\xc3\x33\x7a\x8b\x96\x76\xa6\x41\x5c\xb5\x3c\x31\xf3\x66\x3c\x66\x63\x63\x0e\x2d\x71\x1e\x00\x2a\x31\x93\x94\x32\x84\xbd\xeb\x51\x18\x4f\xc1\x75\x7a\x8f\x46\xf4\x25\x37\xf8\x5d\xf2\xef\x4c\x49\x0e\x52\x75\xdb\x9e\xea\x15\x5a\x66\xbd\x90\x66\x1f\xf9\x9f\x49\x56\xba\x69\x4c\x83\xe6\xed\x0c\x43\xd4\x5b\x79\x8f\xcc\x8d\x98\x8c\x8d\x5d\x39\xeb\x93\xca\x00\xa0\x1e\xc9\x5c\x49\x7e\x95\x78\xce\xfb\x21\x7a\x3e\xe9\x8c\xdf\x85\x88\x1d\xd8\x87\x81\xcd\xfe\xdb\x71\x57\x43\x4e\xb9\x66\x26\xdf\x0f\xff\x60\xed\x90\xf2\x33\x5a\xdf\x44\x2c\x4d\x2a\x2e\x4b\x93\x97\xae\x14\x4f\x95\x57\xcf\x50\x4b\x98\xda\x58\x45\x64\x63\x07\x00\xa0\xbc\xce\x12\xe1\xb6\xa0\x2b\x82\xce\xa0\x64\xe3\x1f\x87\xea\x84\xd1\x13\xfc\xc2\xb9\xbe\x7d\x89\x0d\x51\x3a\x2e\xb6\x58\x10\xf3\xf2\x98\x05\x2e\x16\xd5\x6d\xac\x92\xdc\x87\xc9\xd4\xf8\x92\x72\x3b\xf1\xaf\xdc\x6a\x9a\x37\xf6\xea\xc6\xbe\x6c\x54\x0a\x09\x00\x8a\x19\x81\x90\xf4\x21\x26\x33\x6a\x63\xec\x87\xb8\xed\xd1\x3f\x42\xd3\x51\x67\x63\x9f\xfa\x74\xc7\xa3\xd1\xe2\xce\x9e\x09\x3b\x30\xce\x56\xc9\x89\x27\x13\x99\x46\x44\xac\x05\x76\x4a\x83\x87\xa3\x25\xaf\xc8\x4d\xa7\x90\x52\xdd\x36\xde\x27\x18\xa4\x4f\x02\x40\xc6\x13\xf3\x13\x4d\x22\x9a\xe2\x59\x31\xb5\x51\x19\x09\x12\x21\x29\x31\xb1\x89\x0c\xef\xd1\x38\x2f\xac\xa6\x13\x06\xed\x88\x7b\x62\xd9\x89\xd1\x48\x29\x32\xbc\x9b\x70\x3b\xcd\x4e\xe3\x60\xd2\x81\xf4\x17\x72\x7d\xb8\x89\x8c\xaf\x9b\x54\xf1\xeb\xf0\x8e\x00\x90\x06\x48\x22\xcc\xe5\xe0\x92\x0c\x85\x68\xfd\xd0\xc1\x8c\xbb\x41\x7f\xc3\xdf\x65\x16\x78\x11\xa3\x0c\xb3\x92\x1d\xc3\x63\xc8\xf8\x08\x8b\x6b\x71\x7d\x04\x17\xc3\x63\xe8\xee\xec\xa3\xea\xaf\x30\x0a\x44\x53\xb9\x6b\x49\x08\xf1\xf4\x26\x46\x26\x9f\x44\x05\x20\xe7\x22\x75\x1f\xfa\xa5\xbf\x33\xed\x60\x64\x5b\xe0\x38\x6d\x77\xe0\x62\x88\x2b\xf5\x87\x67\x7a\xd8\x55\x9a\x84\x03\x3d\x32\x92\xa6\x63\xb1\x3f\xfa\x0e\xcd\xeb\xd0\x64\x9c\x3c\x8d\xac\x7e\x02\xd5\x4a\xbb\x24\x2f\x96\x70\x8d\x76\x77\xd3\xfd\x0c\x02\xed\x11\x00\x39\x3a\x90\x29\xaa\xdd\xa7\x95\x77\x39\x02\xf6\xdf\xcd\xdb\x1c\x30\x11\xd8\xc3\x35\xf4\x28\x0b\xf1\xe5\x70\xec\xef\x87\xfd\x60\xbf\x34\x6f\x8d\xec\x64\x27\x1c\xc2\xc6\xec\x62\x7d\x53\xaf\x8c\xbd\xc6\x1a\x91\xd7\xc6\x0c\xb3\x0c\x37\xeb\xa6\x9f\xa1\xb3\x01\x20\x9e\x85\x3f\xa1\x8c\xbc\xf1\x22\xfd\x88\xff\xfc\xd6\xe7\xa9\x04\xc4\x06\x74\xe7\x02\x0f\x9f\xe0\x40\xa1\x84\xfd\x60\xd8\x3a\x81\x92\x39\x2f\xe2\x2c\x3f\xf4\x50\x64\xb4\x35\xaf\x5b\xbd\x29\x76\x27\xef\xb0\x7c\x00\xe6\x10\x67\x75\x73\x44\x3a\x9a\x29\x0d\x00\x31\x17\xe9\x89\x7b\xe6\x85\x14\x2d\x84\x2f\xfb\x2a\x17\x0a\x02\x74\xfc\x97\x0b\x4c\x3d\x0e\x05\x51\xf3\x37\xd9\xb7\x87\x6a\xe7\xdd\x36\xcf\x0b\xff\x9c\xfb\xf2\x50\x66\x14\x39\x57\x5a\x7d\x31\x26\x5a\x88\x97\xaf\x8b\xaf\xe0\xef\xdb\x5c\x97\xf6\x89\xe5\x0d\x00\xd1\x9a\x6e\x1e\x9d\x49\xa4\xb8\xb9\x86\x68\x12\x6b\x3c\x09\x3e\xf6\xc4\x55\x9f\x6a\x17\x15\xe2\xdf\x00\x31\xeb\x84\x1c\xad\x60\xbe\xe9\xbf\x1c\x62\xb8\x92\x1e\x21\xe7\x7a\x54\xdf\xbe\x4e\x52\x70\xec\x3f\xa9\x79\xf2\x45\x34\x41\x2c\x92\x46\x4b\x62\x03\x00\x63\xb2\x1a\xa3\x96\x08\xd5\x9e\x5a\xc1\xe5\x84\x15\x1f\x79\xef\x0b\xd9\xb6\xfe\x62\xce\x5d\xd9\xb4\x20\xfd\x63\xdf\xb2\x97\x42\xa9\xa6\x35\x44\x9b\x88\xab\x7a\x6a\xc4\x89\x18\xf5\x7d\x69\x39\x81\x28\x43\xa9\x11\xb2\x78\x7c\xbc\x18\x9a\x26\x89\x3d\x02\x00\xac\x97\xf5\x20\x6a\x6f\xd6\x09\x1f\x93\xa0\x7f\x78\x69\xbf\x57\xde\x4e\xf8\xc2\xc0\x4a\xe7\x43\xf8\xf7\x21\x45\xc7\x20\x02\x26\xbc\xc3\xd4\x94\xf0\x3b\x6a\x56\x77\x21\xbb\x34\xf6\xee\x3e\x2b\xe2\x31\x74\xa7\x54\x2b\xc9\x08\xd3\x2c\x96\x46\x15\xe1\x6c\x01\x80\xee\xe3\x71\x11\xaf\xd2\x4a\x82\xd2\x03\x2f\xa7\xbb\x85\xcc\x7a\xa9\x64\xa8\x84\xef\x70\x52\xcb\xb8\x19\xd9\x6c\x95\x9b\x59\x11\xe3\x6d\x82\xc9\x4a\x42\x89\xe9\xaa\xe2\x8d\xe2\x3b\xf7\x5e\xc1\x7f\x48\xdc\x28\x95\x4f\x24\x26\x35\x89\x15\x53\x08\x29\xff\x00\x80\xf4\xb2\x65\xc2\x1f\xe3\xae\x47\x6e\x0c\x58\x4c\x1e\x8b\x06\x9e\x56\x29\xd3\x31\xdf\x1d\x3d\x53\x27\x50\x8a\x96\xe7\xd2\xe6\xe2\x03\x8d\x67\xd2\x2f\x25\xe4\xeb\x34\x65\x9c\x4d\x9a\xde\x2b\xca\xe4\xe2\xce\x49\xe5\x12\x06\x53\x76\x8a\x5d\x22\x7b\x64\xf8\x00\x40\xc3\x10\x7f\x86\x09\x12\xb7\xa3\xfe\xf9\x4f\x27\x59\xc4\x17\x7a\x24\x60\xd9\x09\x4a\x0e\x2c\xdc\x6c\xe2\x92\xe5\xb6\x14\x09\x6c\x91\xb1\x5e\xaa\x63\xb2\x9f\x8e\x61\x5a\x74\xea\xd6\xbd\x21\xe9\x1a\x69\x23\x52\x55\xf8\x75\xe9\xe3\xeb\xe4\x49\x3a\xf8\x9b\x00\x50\xbb\x48\x37\x42\x5e\xa0\xa2\x53\x13\xfd\x5c\xd1\x73\x69\x59\xee\x07\x30\xc7\xd2\x71\xf6\xc4\x84\xd9\x8c\x54\x8b\x43\x49\x1e\x99\x0c\x23\x1a\xf6\x72\x56\x85\xf6\x68\xf2\x7e\x7c\xd7\x5e\xfd\xe4\x5f\x84\x79\xa9\x6b\x19\xd7\xb3\x71\xeb\xb2\x88\x27\x49\xb1\x00\x50\x46\xa9\x4a\xc1\x09\xd1\x15\xa4\xd3\xbe\x3b\x63\x77\x91\xde\xba\xe9\xc4\x0d\x90\x65\xed\xaa\xd1\xa9\xe4\x68\x73\x18\x73\x90\x7c\xda\xf0\x53\xc2\x07\x8a\x86\x76\x68\x52\x0e\x25\x7f\xaf\x2c\x56\x40\x55\x92\x96\x4a\xd7\xa6\x12\xd6\x5d\xca\x6e\xa3\xe9\x00\x40\xd9\x4e\xfb\x1a\xe4\x11\xd1\xc5\x22\xf9\x6c\x8d\xf2\x62\xc9\xb8\x9a\xc5\xec\x60\xd6\xdb\xde\x89\x7d\xc6\xf4\x32\xfb\x80\x1a\x65\x8a\x1b\x72\xe3\x9b\x19\x4f\xb5\x77\x26\xf8\x31\x2e\xee\xf9\x93\x78\x8e\x71\x4b\xda\x2a\x6d\x13\x43\x7a\xfd\x1e\xc2\x1b\xc4\x1f\x00\x72\x0d\xcc\x0d\x5c\x0b\xc7\xf0\x49\xde\xa3\x91\xba\xbc\xdb\x2e\x4f\xa2\xb7\xf2\x74\x6d\xab\x63\xee\x73\x2b\xcd\xe6\xe2\xfa\xb9\x3b\x0c\x53\xd0\xdd\x9c\x93\xda\x5b\x30\x09\x9c\xb4\xbd\x9b\x13\x37\x72\x82\xa4\x51\xa9\x10\x2b\x6d\xbd\x23\xa1\x90\xde\x0d\x00\x19\x85\x68\x07\x8e\x84\x45\xe6\x2d\x78\x43\x11\xe6\x79\x1b\x5c\x7a\xa2\x0e\xe4\xea\xdb\x92\xa3\xbf\x09\x53\xcd\xce\xc4\xce\x08\x4e\x1a\x66\xa2\xe6\x04\x56\xda\x0a\xf1\x3c\xfe\x9d\xbd\x06\x09\x36\xfc\x00\xe9\xe6\x94\xa7\x9c\xd4\xf5\x5c\xc2\x3e\xc6\x32\x00\x64\x79\xa4\xcb\x7b\x96\xe9\xec\x76\xd7\x15\xc3\xb8\xe0\xf9\xcb\x0e\xcf\xc8\xf6\x95\xb1\x70\xa4\x7f\x09\xf0\x34\x46\xe8\x82\xe0\x5e\x3d\x69\x7a\x44\xb8\x94\x2a\x96\x1e\x11\x15\x2d\x27\xa0\x1f\x8f\x8d\x13\x77\xa0\x77\xa1\xfb\x01\xa0\x17\xe3\x3c\x00\xa0\xaf\x10\xb4\xbc\x6d\xe9\x78\xcf\x08\x97\xef\xf4\x9d\x3e\x9e\x76\x0a\xc8\x7d\x7f\x13\xf3\x4f\x08\x1c\x64\x67\x7c\x18\x31\x0d\x4d\xd3\xbd\x8e\x68\x44\x54\xa9\x5a\x22\xd6\xd1\xc3\x72\xd9\x48\x6b\x5c\x8e\xb8\x17\xf2\x3a\x9e\x0e\x00\x5d\x0d\x77\x1d\x00\x7a\x09\xc1\xc0\xeb\x38\x5c\xe9\x23\xed\x02\xc1\x81\x7e\x37\x6d\x8f\xc3\xe6\x81\x05\xe6\xb5\xd0\xf7\x90\x0c\xa3\xe7\xd0\xf5\xf0\x14\xdd\x02\xe8\x41\x54\x82\xaa\x04\x2c\x19\xeb\x21\x17\x0d\xd3\x50\x2b\xe2\x41\xc8\x6e\x4c\x17\x00\x48\x63\xf2\x3c\x00\x74\x7b\x42\xa9\x67\x2f\xe5\x4a\xe0\x3d\xe7\x16\xca\x4c\x88\xbd\xed\x26\xca\xbd\xb0\x7a\xb3\xb7\x94\xd5\x48\x4d\x23\x2b\xea\xe6\xe8\xb3\xba\x5b\xa8\x0e\x71\x28\x95\x46\x6a\x09\xfa\xbd\x9c\x31\x6d\x5b\x82\x92\x78\x32\x84\x4a\x2a\x04\x00\x66\xa5\x11\x01\x40\xf2\x88\x62\x1e\x79\x39\xa9\xe1\xc3\x4e\x67\x72\xf0\x91\xef\x6c\xc2\x73\x1a\x62\xa4\xcd\xbc\x73\xde\xc4\x99\x1a\xf6\x91\x1c\xd0\xa9\x3a\x55\xa4\x1e\x4c\xb7\x4a\x18\x59\x29\xf1\x8a\x9c\x2a\x39\x1f\x7b\x4a\xbc\x80\xda\x92\xfc\x13\x00\x28\x3a\x73\x04\x00\x78\x3e\xe7\xb4\xfb\x20\xfe\x5a\x9c\xb3\x93\x18\x41\x11\xbd\xd9\x7a\x9c\xc0\x88\x1f\x3f\x7a\x3a\x7b\x63\x02\xcd\x50\x37\xbb\x28\xc9\x5b\xe7\x08\x51\x15\xb7\x5f\x45\x99\xd8\x9e\xfc\x4c\x4e\x21\xc7\x30\x95\x2f\x3e\x45\xfe\x92\x5e\x07\x00\xcd\x99\x70\x15\x00\x78\x23\x19\xeb\xb6\x25\xdd\x0d\x37\xe5\x30\x94\x3e\x93\x22\x73\x6c\x26\x23\x32\xd5\xf3\xc8\xc7\x4c\xb9\x34\xf2\xa1\xbc\xcc\x1b\xe9\xa3\xda\xb3\x59\x75\x19\xbf\x94\xef\xe2\xbd\xb3\x8c\xe5\xf6\x12\xf4\xf1\xb1\x12\xb2\x39\x57\xb2\x8f\x02\x40\xb9\x41\x1a\x05\x80\xf6\x97\x9a\xea\xea\x9b\x6c\x9b\xad\x67\xbf\x96\xb2\x2e\x7b\xc8\xea\x77\xca\x7d\xe2\x81\x23\xde\xa9\x53\xc4\x89\x43\xf2\x69\x6d\x39\x51\xda\xe9\xe9\x6d\x24\x19\xe5\x9e\x0c\x06\xe9\xa4\xdc\x81\xcc\xab\xe4\x6c\x09\x0c\x51\x9d\x72\x1d\x00\xf2\x14\xf5\x03\x00\x34\x3b\x68\x93\x8b\x53\x92\x0d\xbc\x66\xbf\x15\x7b\x10\x11\xb7\x3a\x82\x33\x45\xa4\x0e\x8f\x26\xab\x23\x8a\x06\xdd\x29\x3b\x11\x13\x6d\x8d\xd4\xa3\x48\x9a\x32\x3d\xcd\x08\x69\x97\x33\xce\x90\xa5\x6f\x96\x68\xce\x06\x08\x17\x98\x92\xbe\xc0\xa3\x00\x50\x67\xe1\x68\x17\xb1\x44\x53\x56\x9b\xdd\x4c\xd2\x3e\x16\xc3\xf2\x3d\x56\x8d\xe5\x7b\x98\x89\x93\x64\xe9\x1a\xe4\xe1\x7e\xb2\x64\xb5\xe5\x53\x74\x58\xea\xca\x50\xea\x41\x96\xb9\x9c\x73\xba\x2b\x4b\x5d\xe2\x22\x81\xc8\x28\x02\x31\xa4\x1a\xe4\x05\x00\x54\x01\xfc\xcd\xf9\x6a\x42\x2c\x6f\xca\xae\x2c\xd1\x8a\x87\xb7\x9c\x4a\x32\xe1\xed\x39\x8c\xc5\xee\xe2\xde\x34\x10\x60\xbf\x72\x6b\xb4\x55\x93\xf5\xb8\xd5\xca\x65\x29\x87\xb8\xed\x72\xd9\x69\x39\x9c\xd9\xad\xeb\xf0\x8f\x58\x01\xa0\x84\x74\x88\xbe\x0a\x00\xd5\x06\x21\x5b\xd7\xe7\x13\xdc\x0f\x9a\x73\x45\xde\x5e\x8e\x26\x57\xf2\x22\x7c\x03\xf4\xf1\xb9\x09\x01\xa9\x5a\x2c\x61\x71\x70\xbb\xf2\xaa\x50\x32\xec\xae\xfc\x37\xc1\xdb\xc8\x17\xdb\x4f\xf2\x3f\xc7\xaa\x6f\xd8\xc1\x55\xc5\x6c\x00\x80\x2d\x97\x32\x07\x00\xf3\x59\xf6\x80\xb5\x7b\xde\x88\x67\x8e\xb9\x4d\x6e\xbf\x0f\xc6\xa4\x40\x78\xcf\xdf\x4d\xdf\x5e\xb8\x2e\xc8\x48\x0b\x25\x70\x0c\x3d\xaa\x7c\x9d\xbf\x1c\x61\x2d\xff\x89\x3f\x17\xad\xb0\xfd\x0c\xef\x41\xdc\xee\x0d\xba\x9c\x58\x4c\x2f\x00\xac\xea\xd4\x3d\x00\x30\x0b\xb3\x85\xc7\xde\x0a\xdf\x7b\xff\x34\x7b\x25\x94\xf0\x9b\x30\x71\x16\xf8\x06\x92\xf5\x77\xf0\xf9\x21\xa6\x5a\xe6\xbc\xd5\xf0\x6d\xca\x27\x79\xf9\x91\xab\xf2\x2f\x78\x79\x31\xe5\xdb\x67\xb8\xc3\xa8\xc8\x0d\xc7\xd8\x85\x09\xa7\x00\x60\xc9\xa6\x7e\x00\x80\x79\x24\xfb\xf2\xb1\x40\x5e\x51\xe0\x26\x33\x1c\xf7\x74\x70\xa9\xf1\x4b\xae\x5c\x98\xfc\xc1\x1e\x4e\x51\x44\xae\xe6\x43\x8e\x4e\xf4\x7f\xca\x14\xf6\xd7\xd8\x2e\xf9\x05\xce\x26\xb4\xec\xf6\x0b\xec\x60\x4c\xda\x86\x24\xe6\x7d\x2c\x04\x00\xe3\x7d\x06\x0a\x00\x06\x31\x67\xb3\x95\x09\x5b\x25\xac\xee\xa8\x90\xc5\x88\x78\x6c\xec\xce\x02\xd1\xbb\x0f\x6a\x31\xbb\x63\xcd\x34\xf1\x4c\x1c\x0a\xab\x7c\x88\x19\x1c\xdf\x21\xdf\xc9\xcc\x4a\x18\xdf\xbe\xc2\x58\x4b\x5a\xdb\x50\xcb\x50\x4b\x59\x01\x80\x3e\x85\x3f\x02\x00\xbd\x93\x54\x6b\x19\x48\xff\x14\x43\x3e\xb2\x4c\x47\xc5\x25\x1b\x8d\x21\x7f\xd0\xbe\x07\xfa\x90\xab\x18\x05\xcd\x5d\xc8\xc9\x84\xb5\x7d\x9f\x91\x33\x49\xcb\xf2\x25\xc8\x53\x5c\xf9\xf6\x35\xa4\x3b\xa5\x61\xc3\x03\x24\x3b\x83\x0c\x00\x52\x97\xfd\x16\x00\x64\x85\xa2\x65\x01\xd3\x8c\x93\x0e\x1d\x91\xa3\xfe\xc1\xce\x18\x29\x50\x9f\x27\x3b\x1c\x38\x44\x7d\x9c\x52\xac\x71\x86\xfa\x3a\x75\x6d\xdf\x02\x6d\x77\x7a\x9c\x7c\x03\x2d\x20\xa3\x4f\xd2\x92\x36\x9a\x15\xb2\x31\x02\xf2\xca\x5e\x03\x00\xfe\x8f\xec\x01\x00\x3c\x45\xfd\x66\x3e\x45\x72\xce\x2c\x3d\x8c\x90\x1c\xb3\x44\x86\x2d\xa4\x58\x3c\x51\xef\x0e\x89\x4a\x70\xd1\xe0\x93\xea\xb2\xb5\xf7\x1d\x27\x3d\x22\x1e\x96\xaf\x24\xab\xe4\xa8\x48\x46\x53\x42\x48\x99\x1b\x5b\xa8\xe3\x94\x33\x00\x40\x1b\x69\x72\x00\x40\x5f\x21\x4f\xf3\x75\xd9\xd9\x94\x49\xd3\xa7\xd9\xc9\x54\x27\x43\xf5\xec\x22\xea\xa4\x1e\x35\x7b\x88\x76\x40\x23\x23\xfb\x37\xad\x6f\x5f\x35\xf1\x28\xe4\x27\xdf\x4b\xe4\xc3\x40\xb2\x91\xc4\x84\xa1\x8d\x2f\x29\x7c\x78\x12\x00\x9a\x0e\x8c\x07\x00\x4a\x81\xb3\xcc\x84\x04\x5f\x44\xca\xb4\x82\xe0\x82\xa4\x1e\xfa\x4e\x40\x23\x93\x7a\xd1\x04\x88\xbe\x4d\x23\x8c\x70\x8a\x0e\xef\x6b\xc9\x96\xa0\xbf\x97\xbf\x91\x4d\x62\xa4\x4b\x3e\xcb\x69\x61\x28\x6d\xf2\x27\x3f\xa3\x27\x01\x40\x9d\x41\x08\x00\x40\x66\xf0\x63\x33\x15\x7c\x04\xf3\xba\x69\x10\xde\x89\xb5\xef\xd0\x1d\x7c\x10\x2b\x54\x2f\x08\x1f\xcf\x2a\xd3\x70\xc1\x93\x59\xef\xf7\xcd\xe2\xdf\xb3\x03\xff\x93\x21\xa4\xb0\x93\xa5\x9c\x89\x93\x2c\xd7\x4d\x17\xc9\x87\x18\xcf\x00\xa0\x7a\xd1\xc3\x01\xa0\xad\x21\x5e\x47\x93\x4a\xd3\xdd\x77\x1b\xb3\x4b\x14\xbd\xf6\xe9\x87\x14\x2d\xfa\x5a\x6a\xbb\x17\x9e\x0a\xb0\x51\xed\x2c\xb8\x14\x1c\xab\x18\x5a\x70\x2c\x8c\x28\xdb\x51\x70\x30\x32\x4c\x42\x3c\xcf\x28\xd6\x5b\x6c\x8d\x9f\x8e\x59\x04\x80\xd3\x91\xfa\x0d\x00\xd6\x22\xd1\xf9\xc8\xef\xe2\x45\x4f\x37\x63\xfb\x22\xa6\x8f\x81\xbe\x66\x61\x90\xbf\xaa\xb6\x7e\x41\x60\xe0\x37\xd5\xca\x7c\x5a\xc8\x13\xc5\xb0\xfc\x0d\xe1\x4b\xb2\xc7\x45\xbf\xa2\xe8\x12\x4a\xb9\x1a\x71\x26\xeb\xa4\x79\x03\x09\x18\x00\x38\x3a\x69\x86\x00\xb0\x32\x89\xb2\x47\xe8\x45\xca\xde\xc7\x8d\x7e\x15\x3c\xf7\xa3\x1c\x7c\x9d\x7f\x23\xd0\x56\x5b\x5a\xf4\x38\xf8\x95\xaa\x40\xa4\x1c\xd6\xa6\x18\x90\x37\x1a\x99\x2c\x3b\x93\x77\x32\xfa\x97\xc4\x01\xe1\x16\x54\xea\x3a\x4d\xee\xbd\xc4\x78\x00\xd8\x55\x69\xaf\x01\x60\xed\x20\x3a\x1f\x51\x10\x75\x04\xd4\x1b\x75\xe4\x15\x06\xeb\x1e\x1c\xc8\xad\x0f\x1d\xd6\x5a\x14\xbe\x8b\xd8\xab\x1a\x2c\x8c\x88\xaa\x50\xb4\x16\x4a\xc7\xee\x93\xbd\x2a\xdc\x83\x4a\x95\x70\xe0\xcd\x62\xb2\xd6\xf9\x72\x34\x71\x6a\x00\xb0\xd2\x33\x0f\x01\xc0\x74\xcb\x49\x39\xac\x26\x74\x09\xdb\x62\x78\x47\x10\x13\xe1\x7a\xf0\x3f\x7e\x65\x14\x5f\xcb\x97\x2f\x19\xd3\xac\xf2\x9b\x57\x13\xb7\xa0\xb8\x91\x87\x89\x5f\x2f\x3b\xcd\xc3\x27\x6c\x96\x88\xe4\xa0\x93\x56\xd7\xb1\x59\x89\xa9\x08\x00\x4c\xab\xff\xf3\x07\x92\x4d\xfa\x69\x1a\xc9\x93\x8d\x2e\x35\x3c\xca\x75\x8a\xad\x38\x20\xe4\x34\xa0\xca\x34\x9f\x70\x0e\xc7\x47\xa8\xf4\xb0\x9f\x24\xe8\x2b\xac\xb0\xa7\x92\xe4\x65\x4f\xb3\x97\xb0\x4b\x12\x0c\xd6\xfe\x94\x82\x75\x0b\x8c\xc9\xcc\x03\x00\x30\x64\x88\xa9\x00\xd0\xeb\x29\x24\x93\x71\x26\x33\x51\xfc\x50\x0f\xe3\x53\x52\xdf\x01\x79\x06\x0f\xe7\xa6\x29\x64\x58\x26\xb7\xa9\xe4\x30\xc4\x52\x25\x15\x6e\xd3\xff\xa4\xe5\xc9\x7e\x60\xec\x4e\x5f\x96\x78\x49\x3f\x9a\x65\xb7\x3e\x18\x29\x27\xc6\x00\x80\xd0\xc9\x25\xff\xcb\x34\x75\x13\x63\x98\x9a\xb1\xeb\x90\x3d\xac\x9b\xa9\xa5\x77\x11\xfa\x9d\x75\x58\x33\x1c\x9a\xc7\xab\xaa\x60\xa0\x3a\xc2\x1e\x85\x17\xd0\x50\xf6\xd1\x1d\x3a\xd0\x13\xa2\xce\xd6\x63\xd0\x6d\x92\xd3\xfa\x45\xe8\x1d\xe5\x38\x00\xb0\x37\x4d\x05\x00\x78\x04\xc2\x1a\x37\x52\x83\x48\x77\x0d\x16\xa9\x2a\x64\x91\x5e\x1a\x55\x96\x62\xa3\xa9\x44\x79\x48\xb9\xa5\x12\x4e\xb9\x4c\x2d\x56\x78\x45\xb9\x43\xb3\xdf\x11\x44\x35\xa7\xfd\xde\x5a\x44\xfd\x06\x3d\xdd\x60\x4a\x1b\x86\xc3\x01\x80\xd8\xf0\xff\x94\x65\x0a\xc7\x1a\x23\x14\x35\x68\x8b\xc1\x30\xf9\x39\x54\xaa\xe7\x4d\xbe\x02\xeb\x6a\x8a\x91\xeb\xe0\x26\x15\x5f\x32\x84\x38\x29\xfc\x22\x17\x23\x4f\x77\xc0\x14\x71\x7a\xfc\xd6\x5b\x54\x79\xba\xf7\x06\x06\x4d\x11\xf9\x01\x00\xa4\x86\xb8\x00\x00\x7d\x87\x1f\x19\x27\x90\xf7\xd0\x07\x0c\xaa\x49\x37\x18\x07\xf4\x2c\x49\x43\x8c\x6e\x4d\x71\x52\x32\x53\x53\xc5\x85\x64\xcc\x1c\x57\x54\x25\x45\xb2\xfc\x77\x4c\x93\xde\xb2\xf4\xb6\x19\x52\x0c\x99\xe1\x1b\x3e\x52\x93\x19\xd1\x00\xd0\x3a\xe8\x87\x00\x80\x86\x11\x3f\xa3\xa3\x55\xe3\x6e\xcb\x07\xd3\x2b\xbd\x3c\x2f\x6a\x77\x96\x4f\xf8\x7c\x51\x5b\x2c\xeb\xf4\x7f\xb0\x27\xb8\x74\x2e\xe8\xb1\xdc\xa1\xd2\x80\xd0\x6b\x92\x16\x25\x29\x11\xef\x37\xfd\xc8\x5f\x8c\x65\x00\x53\x61\x54\x02\x01\x00\x9e\x78\xda\x34\x00\xec\x12\x62\xb9\x61\x67\xa5\xb1\xc7\xaf\x83\xa6\xe5\x93\xde\xb7\xb4\x91\x32\x2f\xbf\xcb\x6a\x63\xa5\x2e\x81\xfc\x3d\x51\x25\x19\x21\x21\x72\xce\x25\x92\xe1\xaa\x92\xe1\xc5\x87\xa3\xa4\x36\x2b\x88\x2e\xc6\x85\x00\x2f\x41\x59\xc2\x3f\x00\xb8\xec\xb4\x37\x00\xb0\xcd\x88\x11\x86\x52\xe5\x4d\xde\xfe\x07\x3e\x96\x69\xfa\x29\x69\x7b\x95\x5c\x0f\x58\x55\x6b\x2b\xbe\x15\x9c\xb5\x27\xaa\x78\x7b\x98\x9c\x5c\x40\xd1\x48\xc4\x69\x49\x7c\xe1\xeb\x68\xc6\x66\xd3\xbc\xe3\x28\x21\x40\xf3\xa7\x13\xbf\x03\xc0\x79\x93\x5e\x0c\x00\xeb\x3a\x51\x70\x68\xb9\x44\x3c\x40\xff\xc0\xf9\xa2\xb3\x41\xa3\xda\x66\x85\xcd\xa1\x96\x6a\xa2\x82\x7b\xe1\xa5\x7b\xfc\x0a\x8e\x45\xfe\x96\x8b\xcb\xff\x13\x83\x95\x6c\xc8\xb7\x8a\xfb\xba\x19\x25\x24\x60\xca\x81\x88\xb7\x19\x77\x1c\x00\xf6\x89\xcc\x71\x00\x98\x7f\x72\x1a\x0f\x6d\x2a\x18\x09\xcd\x3e\xb0\x33\xbf\x2a\x7c\x58\xab\x4e\xd4\x19\xf9\x55\x4d\x5e\x04\x62\xc4\xf6\x80\x3c\x52\xdc\x6e\x39\xe3\x3c\x07\xf4\x31\xc9\x8a\x5c\x1a\x86\xbe\x99\xca\x57\xc3\xae\x07\x67\x39\xce\x69\xca\x00\xb0\xa8\x04\x0f\x00\x98\x7b\xc9\xea\x06\x41\x79\x19\x51\xe7\xf4\x08\xb9\x8c\x98\x1b\x5a\xb2\xc2\x93\x71\x8f\x55\x7b\x84\x3a\xe8\x5a\xa5\x33\x82\x51\x0c\x5a\x6e\x97\x20\x2f\xd1\x5e\xb2\x96\x7f\x16\x6b\xb9\xb9\x81\xf3\x2e\xa5\x5d\x6c\x1d\xab\x3a\xf3\x2e\x00\x4c\x77\xe2\x2d\x00\x18\x2e\x94\x4e\xfd\x67\x7c\x99\x04\x09\x3d\x79\x9e\x75\xe2\x19\xcd\x59\x6e\x15\x16\xab\x4a\xe2\xaa\xe0\xe6\x95\x3a\x38\xe3\x29\x46\x72\xa6\x9c\xd6\xd4\x21\xc9\xd7\xec\x3f\xe9\x4e\x5b\x64\x59\xe2\x59\x68\xb1\x42\x06\x9e\x38\x09\x00\xfd\x14\x79\x09\x00\xba\x0e\xed\xa8\x7e\x3e\x6b\x35\xed\xb2\xee\x0a\x2b\x3a\xfd\xa7\x66\x1d\xf3\x4f\xa6\xaa\x2a\x8e\x59\x9c\xb5\x47\x69\x94\x69\x81\xd7\x92\x4b\x63\x5a\x13\xcc\xa5\xdc\x18\x2f\xb3\x53\xb7\xe4\xd3\x07\x49\x86\xeb\x54\x91\x49\xca\x09\x00\x10\x3e\x4d\x03\x00\x04\x0d\x05\xeb\x6b\xd3\xe3\x73\xec\x74\x79\xf4\x3d\x24\x65\x4d\x14\xf2\x99\xf4\x4b\xd5\x09\x11\x90\x87\x94\x1a\x10\x23\x0a\x49\x8e\x8d\x98\x53\x6d\xa5\xf2\x10\x13\x9a\xd5\x96\x7f\xf0\x2c\x14\xb3\xae\x1f\xa6\xc2\x92\xff\x53\x04\xac\x06\x00\xfc\x1a\x76\xd1\x8f\x41\xf6\x52\x83\x74\xeb\xe0\x05\x9a\xa4\xa6\x17\xdc\x48\x5b\x54\xb5\x84\x8d\x20\xbc\x52\x3d\x74\x1d\x36\x94\xab\x86\x6e\xc3\xef\xa5\x4e\x42\x7f\x10\xac\xb8\x39\xf4\x14\xe9\x58\xf7\x05\x7a\x89\x94\x00\x00\xfb\x22\xca\x00\xc0\x03\xf0\x79\xfd\x2a\x78\x3d\xfc\x52\xf7\x24\xd4\x84\xe4\x6b\xda\x43\x29\x74\x7b\x55\x1b\xda\x07\xfa\x3b\xa5\x6e\x1a\x93\x71\x5a\xee\x2c\x8d\xc6\x0c\x90\xfa\x40\x3b\xcf\x54\x11\x87\x69\x7f\x19\x1d\xeb\xad\x21\x17\xfa\xff\xae\xc1\xfb\xf4\xed\xff\xf3\x7a\x48\x00\x00\x62\x60\x1d\x58\x0f\x36\x80\x8d\x60\x13\xd8\x0c\xb6\x00\x71\x20\x01\xb6\x82\x6d\x60\x3b\x90\x04\x52\x40\x1a\xc8\x00\x59\xb0\x03\xec\x04\xbb\x80\x1c\x90\x07\xff\x81\xdd\x40\x01\x28\x02\x25\xb0\x07\xec\x05\xfb\x80\x32\x50\x01\xaa\x40\x0d\xec\x07\xea\x40\x03\x68\x02\x2d\xa0\x0d\x74\x80\x2e\xd0\x03\x07\xc0\x41\xa0\x0f\x0c\xc0\x21\x60\x08\x8c\x80\x31\x30\x01\xa6\xe0\x30\x38\x02\x8e\x02\x33\x60\x0e\x2c\x80\x25\xb0\x02\xc7\x80\x35\xb0\x01\xb6\xc0\x0e\xd8\x03\x07\xe0\x08\x9c\x80\x33\x70\x01\xae\xc0\x0d\xb8\x03\x0f\xe0\x09\xbc\x80\x37\xf0\x01\xbe\xc0\x0f\xf8\x83\x00\x10\x08\x82\x40\x30\x08\x01\xa1\x20\x0c\x84\x83\x08\x10\x09\xa2\x40\x34\x88\x01\xb1\x20\x0e\xa0\x00\x1a\xc4\x03\x0c\x48\x00\x89\x20\x09\x60\x01\x0e\x24\x83\x14\x90\x0a\xd2\x40\x3a\xc8\x00\x99\x20\x0b\xe0\x01\x01\x64\x03\x22\xc8\x01\x24\x40\x06\x14\x40\x05\x34\x00\x01\x18\x20\x80\x0e\x18\x80\x09\x58\x80\x0d\x38\x80\x0b\x78\x80\x0f\x04\x40\x08\x72\x41\x1e\x10\x81\x7c\x50\x00\x0a\x41\x11\x28\x06\x25\xa0\x14\x94\x81\x72\x50\x01\x2a\x41\x15\xa8\x06\x35\xa0\x16\xd4\x81\x7a\xd0\x00\x1a\x41\x13\x68\x06\x2d\xa0\x15\xb4\x81\x76\xd0\x01\x3a\x41\x17\xe8\x06\x3d\xa0\x17\xf4\x81\x7e\x30\x00\x06\xc1\x10\x18\x06\xc7\xc1\x08\x18\x05\x27\xc0\x49\x70\x0a\x8c\x81\x71\x70\x1a\x9c\x01\x13\x60\x12\x4c\x81\x69\x70\x16\xcc\x80\x59\x70\x0e\xcc\x81\x79\x70\x1e\x5c\x00\x17\xc1\x02\x58\x04\x4b\xe0\x12\xb8\x0c\xae\x80\xab\xe0\x1a\xb8\x0e\x6e\x80\x9b\xe0\x16\x58\x06\xb7\xc1\x0a\xb8\x03\xee\x82\x7b\xe0\x3e\x78\x00\x1e\x82\x47\xe0\x31\x78\x02\x9e\x82\x67\xe0\x39\x78\x01\x5e\x82\x55\xf0\x0a\xbc\x06\x6f\xc0\x5b\xf0\x0e\xbc\x07\x1f\xc0\x47\xb0\x06\x3e\x81\xcf\xe0\x0b\xf8\x0a\xbe\x81\xef\xe0\x07\xf8\x09\x7e\x81\xdf\xe0\x0f\xf8\x0b\xfe\x01\x00\xc4\xc4\xd6\xad\x5b\xbf\x7e\xc3\x86\x8d\x1b\x37\x6d\xda\xbc\x79\xcb\x16\x71\x71\x09\x89\xad\x5b\xb7\x6d\xdb\xbe\x5d\x52\x52\x4a\x4a\x5a\x5a\x46\x46\x56\x76\xc7\x8e\x9d\x3b\x77\xed\x92\x93\x93\x97\xff\xef\xbf\xdd\xbb\x15\x14\x14\x15\x95\x94\xf6\xec\xd9\xbb\x77\xdf\x3e\x65\x65\x15\x15\x55\x55\x35\xb5\xfd\xfb\xd5\xd5\x35\x34\x34\x35\xb5\xb4\xb4\xb5\x75\x74\x74\x75\xf5\xf4\x0e\x1c\x38\x78\x50\x5f\xdf\xc0\xe0\xd0\x21\x43\x43\x23\x23\x63\x63\x13\x13\x53\xd3\xc3\x87\x8f\x1c\x39\x7a\xd4\xcc\xcc\xdc\xdc\xc2\xc2\xd2\xd2\xca\xea\xd8\x31\x6b\x6b\x1b\x1b\x5b\x5b\x3b\x3b\x7b\x7b\x07\x07\x47\x47\x27\x27\x67\x67\x17\x17\x57\x57\x37\x37\x77\x77\x0f\x0f\x4f\x4f\x2f\x2f\x6f\x6f\x1f\x1f\x5f\x5f\x3f\x3f\x7f\xff\x80\x80\xc0\xc0\xa0\xa0\xe0\xe0\x90\x90\xd0\xd0\xb0\xb0\xf0\xf0\x88\x88\xc8\xc8\xa8\xa8\xe8\xe8\x98\x98\xd8\xd8\xb8\x38\x14\x0a\x8d\x8e\x8f\xc7\x60\x12\x12\x12\x13\x93\x92\xb0\x58\x1c\x2e\x39\x39\x25\x25\x35\x35\x2d\x2d\x3d\x3d\x23\x23\x33\x33\x2b\x0b\x8f\x27\x10\xb2\xb3\x89\xc4\x9c\x1c\x12\x89\x4c\xa6\x50\xa8\x54\x1a\x0d\x82\x60\x18\x41\xe8\x74\x06\x83\xc9\x64\xb1\xd8\x6c\x0e\x87\xcb\xe5\xf1\xf8\x7c\x81\x40\x28\xcc\xcd\xcd\xcb\x13\x89\xf2\xf3\x0b\x0a\x0a\x0b\x8b\x8a\x8a\x8b\x4b\x4a\x4a\x4b\xcb\xca\xca\xcb\x2b\x2a\x2a\x2b\xab\xaa\xaa\xab\x6b\x6a\x6a\x6b\xeb\xea\xea\xeb\x1b\x1a\x1a\x1b\x9b\x9a\x9a\x9b\x5b\x5a\x5a\x5b\xdb\xda\xda\xdb\x3b\x3a\x3a\x3b\xbb\xba\xba\xbb\x7b\x7a\x7a\x7b\xfb\xfa\xfa\xfb\x07\x06\x06\x07\x87\x86\x86\x87\x8f\x1f\x1f\x19\x19\x1d\x3d\x71\xe2\xe4\xc9\x53\xa7\xc6\xc6\xc6\xc7\x4f\x9f\x3e\x73\x66\x62\x62\x72\x72\x6a\x6a\x7a\xfa\xec\xd9\x99\x99\xd9\xd9\x73\xe7\xe6\xe6\xe6\xe7\xcf\x9f\xbf\x70\xe1\xe2\xc5\x85\x85\xc5\xc5\xa5\xa5\x4b\x97\x2e\x5f\xbe\x72\xe5\xea\xd5\x6b\xd7\xae\x5f\xbf\x71\xe3\xe6\xcd\x5b\xb7\x96\x97\x6f\xdf\x5e\x59\xb9\x73\xe7\xee\xdd\x7b\xf7\xee\xdf\x7f\xf0\xe0\xe1\xc3\x47\x8f\x1e\x3f\x7e\xf2\xe4\xe9\xd3\x67\xcf\x9e\x3f\x7f\xf1\xe2\xe5\xcb\xd5\xd5\x57\xaf\x5e\xbf\x7e\xf3\xe6\xed\xdb\x77\xef\xde\xbf\xff\xf0\xe1\xe3\xc7\xb5\xb5\x4f\x9f\x3e\x7f\xfe\xf2\xe5\xeb\xd7\x6f\xdf\xbe\x7f\xff\xf1\xe3\xe7\xcf\x5f\xbf\x7e\xff\xfe\xf3\xe7\xef\xdf\x7f\xff\xfe\x7f\xfe\xff\x5f\xe7\x9f\x1c\x9f\x65\x08\x00\x00\x1b\xd6\x6f\xfd\xdf\x32\xf8\xbf\xe3\xff\xa5\x16\xfb\x3f\x4d\xb1\x6f\xeb\xdf\x6d\x7c\xbe\xf9\xbe\xf8\xcd\xad\xd7\xb6\xdf\x96\x7a\x26\xf3\x71\xc7\x1f\x39\xf1\xff\x76\x28\xec\x51\xd2\xde\x6b\xa8\x7c\x54\xd5\x72\xff\x31\x0d\x6b\xad\x63\x3a\x56\x7a\x96\x07\xcd\x0c\x8e\x18\x9a\x18\x0d\x1a\xf7\x9b\xf4\x98\x76\x1d\xee\x38\xd2\x76\xb4\xc5\xac\xd9\xbc\xc9\xa2\xd1\xb2\xd1\xaa\xf1\x58\xa3\x75\x93\x4d\x8b\x6d\x9b\x5d\x87\x7d\xb7\x43\x9f\xe3\x90\xd3\xa8\xf3\x98\xcb\xa4\xeb\x8c\xdb\xbc\xfb\xa2\xc7\x05\xcf\x39\xaf\x59\xef\x69\x9f\x09\xdf\x71\xbf\x93\xfe\x23\x01\x83\x81\x7d\x41\x5d\xc1\x6d\x21\x4d\xa1\x75\x61\xd5\xe1\x95\x11\x15\x91\x55\x51\x75\xd1\x2d\x31\x3d\xb1\xa3\x71\x67\x51\x97\xd1\xf7\xe3\x9f\x62\x1e\x27\x3c\x4c\x7c\x90\x74\x1f\x7b\x0f\x77\x2f\xf9\x7e\xca\xfd\xd4\x07\x69\x0f\xd3\x1f\x65\x3c\xc9\x7c\x96\xf5\x1c\xff\x92\xf0\x2a\xfb\x0d\xf1\x5d\xce\x47\xd2\x27\xf2\x17\xca\x77\xea\x4f\xda\x1f\x18\xc0\x1d\x88\x2f\xf2\x9b\xde\xc2\xf0\x64\x7c\x67\x36\xb0\xdc\x58\x9f\xd9\xb5\x1c\x67\xce\x47\x6e\x15\xcf\x81\xf7\x9e\x5f\x2e\xb0\x15\xbc\x11\x96\xe5\xda\xe4\xbe\xce\x2b\x15\x59\x8b\x5e\xe7\x97\x16\xd8\x16\xbc\x2d\xac\x28\x72\x28\x5a\x2b\xae\x2b\xf1\x28\xf9\x55\xda\x59\x16\x5a\x2e\x51\x3e\x56\x91\x5c\x29\x5f\x39\x55\x95\x54\xbd\xb3\xfa\x4c\x4d\x62\xed\xce\xda\x89\x3a\x6c\xbd\x5c\xfd\x74\x43\x4a\xa3\x42\xe3\x6c\x53\x7a\xf3\x9e\xe6\xf3\x2d\xf8\x56\x95\xd6\xc5\xb6\x9c\x76\xf5\xf6\x2b\x1d\xd4\x4e\xed\xce\x1b\x5d\x48\xf7\x81\xee\xe5\x1e\x66\xaf\x41\xef\x9d\x3e\x76\xbf\x61\xff\xbd\x01\xee\xa0\xd1\xe0\xbd\x21\xfe\xb0\xd9\xf0\xea\xf1\xf2\x11\xc7\x91\xcf\xa3\x0d\x27\x3c\x4f\xfc\x3c\xd9\x7a\xca\xf7\xd4\xdf\xb1\xce\xf1\xe0\xd3\x9b\x4e\x1f\x3f\x83\x9a\xd8\x31\x31\x3d\x99\x3e\xb5\x6f\x6a\x69\x9a\x72\x56\xfb\xec\xad\x19\xc6\xac\xfe\xec\xca\x39\xe6\xdc\x81\xb9\x1b\xf3\xd4\xf3\x6a\xe7\xcf\x5f\x48\xbe\x28\x7d\x71\x68\xc1\x7f\x51\x73\xa9\xe0\xd2\x8f\x2b\x51\x57\xa7\xaf\xab\xde\x80\x6f\xde\x5d\x36\xbd\x9d\xbb\xf2\xf8\xae\xc9\x3d\xce\xfd\x9b\x0f\xd5\x1e\xa5\x3e\x3e\xf9\x54\xec\x99\xcb\xf3\xc2\x17\xdf\x56\x43\x5f\x8d\xbf\x51\x7a\x4b\x7e\x77\xeb\x83\xe1\x47\xfe\xda\xa3\xcf\xc6\x5f\xd8\x5f\x6f\x7c\x57\xfd\x91\xfa\xf3\xf4\xef\xed\x7f\x22\xfe\xf6\xfe\x9f\xa9\xf1\x63\xfd\xc7\x8d\xaf\x37\x3f\x15\x7f\xb8\xf5\xc1\xf6\x97\x52\x6b\x32\x3f\x77\xae\x97\xdb\xfa\xdf\x0e\x05\x45\xa5\xfd\x7b\xf5\x94\x0d\x55\x4d\xf7\x1f\xd1\x38\xa2\x75\x58\xc7\x44\xcf\xe8\xa0\xa1\x81\xa1\xa1\xa1\xd1\x80\x71\x9f\x49\xb7\x69\xe7\xe1\xf6\x23\xad\x47\x9b\xcd\x9a\xcc\x1b\x2c\xea\x2d\x6b\xad\x6a\x8e\x55\x5b\x57\xd9\x54\xda\x56\xd8\x55\xd8\x57\x3a\x54\x3b\xd6\x39\x35\x3a\xb7\xbb\xf4\xba\x8e\xba\x4d\xb9\x2f\x7a\xcc\x7b\xce\x7a\x9d\xf5\x3e\xeb\x73\xd6\x77\xc6\xef\x9c\xff\x7c\xc0\xc5\xc0\xa5\xa0\xcb\xc1\xd7\x42\xae\x87\xde\x08\xbb\x19\x7e\x33\xe2\x66\xe4\xcd\xa8\x9b\xd1\xb7\x62\x96\x63\x57\xe2\xee\xa1\x1e\xa2\x9f\xc6\x3f\xc6\xdc\x49\xb8\x91\x78\x29\xe9\x02\x76\x16\x37\x95\x7c\x26\x65\x2c\xf5\x44\xda\x68\xfa\x48\xc6\x48\xe6\x48\xd6\x28\xfe\x24\x61\x3c\x7b\x92\x38\x9b\x73\x81\x74\x99\xbc\x4c\x79\x48\x5d\xa5\x7d\x82\x01\xdc\x84\x38\x21\x6f\xe8\x85\x8c\x23\x8c\x07\x4c\x0e\xeb\x20\xeb\x16\x1b\xe6\x68\x73\xae\x71\xa9\x3c\x2d\xde\x35\x3e\x24\xd0\x11\xdc\x12\x32\x72\x0d\x72\xef\xe5\xf1\x45\x87\x45\xcf\xf2\x8b\x0a\x6c\x0a\xde\x15\x56\x17\xb9\x16\x7d\x2f\x6e\x2d\xf1\x2f\x5d\x57\x3a\x50\x16\x55\x2e\x59\x7e\xba\x22\xb9\x52\xae\xf2\x4c\x55\x7c\xb5\x54\xf5\x89\x9a\xd8\xda\x6d\xb5\xa3\x75\xb1\xf5\xdb\xeb\x4f\x34\xa0\x1a\xa5\x1a\xc7\x9a\x30\xcd\xb2\xcd\x67\x5a\x92\x5a\xe5\x5a\xa7\xdb\x52\xda\x15\xda\xcf\x75\x64\x74\xee\xed\xbc\xd0\x45\xe8\x56\xed\xbe\xd4\x43\xee\xd5\xec\xbd\xd6\x07\xf5\xeb\xf6\x2f\x0f\x30\x07\x0d\x06\xef\x0e\x71\x87\x0d\x87\xef\x1e\x67\x8f\x18\x8c\xac\x8c\xb2\x4e\x18\x9c\xb8\x7b\x92\x7b\xca\xe4\xd4\x93\xb1\xc2\x71\xdb\xf1\xb5\xd3\x8d\x67\x7c\x27\xd6\x4f\x0c\x4d\xa2\xa6\x76\x4e\xcd\x4c\x67\x9e\x55\x3d\x7b\x65\x06\x9a\xd5\x9b\xbd\x7d\x8e\x39\xa7\x3f\xb7\x3c\x8f\x9c\xd7\x3a\xbf\x74\x21\xe3\xe2\xae\x8b\x23\x0b\x81\x8b\xba\x4b\x0d\x97\x77\x5c\x41\xae\xbe\xbe\xee\x73\x63\xe8\x96\xcc\x32\xee\xf6\xd9\x3b\x72\x77\x31\xf7\x86\xef\xff\x7b\xe8\xf4\x48\xf8\xf8\xd2\x53\x99\x67\xde\xcf\x8b\x5e\xfc\x5a\x8d\x7d\x75\xee\x8d\xd6\x5b\xee\xbb\xe7\x1f\x6c\x3e\x56\xae\xbd\xff\x6c\xf3\x25\xff\xeb\xbd\xef\x5a\x3f\x32\x7e\x4e\xfc\xde\xfe\x27\xfc\x6f\xcf\xff\xf8\xaf\xdb\xbc\x41\x72\xd3\xae\x2d\x8a\x12\xfb\xb6\xed\x95\x54\x92\xde\x2d\xab\xb0\x53\x51\x4e\xf1\x3f\x45\x85\x5d\x8a\xff\xf6\xbc\xde\x77\x47\xe5\x8a\xda\x92\xfa\x35\xcd\x7b\xda\xab\xba\xdf\x0f\x8a\x1b\xec\x36\xd4\x31\x1a\x32\x1e\x34\x19\x34\x1d\x38\x3c\x70\xa4\xff\x68\x9f\x59\x8f\x79\xb7\x45\xa7\x65\xbb\x55\xeb\xb1\x66\xeb\x06\x9b\x5a\xdb\x2a\xbb\x0a\xfb\x72\x87\x32\xc7\x72\xa7\x2a\xe7\x7a\x97\x36\xd7\x01\xb7\xd3\xee\x8b\x1e\xd3\x9e\x63\x5e\xc7\xbd\x07\x7d\xfa\x7d\xfb\xfd\xfa\xfd\x07\x03\x8e\x07\x9e\x08\x1a\x0b\x9e\x08\x99\x0e\x9d\x0d\x9b\x0b\x3f\x1f\x71\x31\x72\x31\xea\x52\xf4\x95\x98\xeb\xb1\xb7\xe2\xee\xa0\x1e\xa0\x9f\xc6\x3f\xc1\xdc\x4f\x58\x4e\xbc\x9e\x74\x09\xbb\x80\x9b\x4f\x9e\x4d\x39\x9b\x3a\x95\x36\x99\x3e\x91\x31\x91\x39\x99\x35\x85\x3f\x4b\x98\xcd\x9e\x27\x2e\xe4\x5c\x21\xdd\x22\xdf\xa3\x3c\xa5\xbe\xa1\x7d\xf9\xbf\xf8\xdf\x67\xb2\x58\x07\x58\x37\xd8\x54\x8e\x06\xe7\x12\x37\x87\xa7\xc6\x5b\xe4\x13\x05\x6a\x82\x25\x21\x29\x57\x23\xf7\x6a\x1e\x4d\xa4\x2b\x5a\xce\x67\x15\x18\x15\x3c\x2c\xcc\x2b\xb2\x28\x7a\x55\x5c\x51\xe2\x5c\xf2\xad\xb4\xad\x2c\xa8\x7c\x4b\xf9\xa9\x0a\x5c\xe5\x8e\xca\x13\x55\x11\xd5\x1b\xaa\xbb\x6a\xfc\x6b\xfe\xd4\xb6\xd5\xf9\xd6\xfd\xa9\xef\x68\xf0\x6f\x04\x8d\x3d\x4d\x21\xcd\x9b\x9a\x07\x5b\xa2\x5a\xb7\xb5\x9e\x6c\x43\xb7\xcb\xb6\x4f\x74\xe0\x3a\x77\x77\x9e\xeb\xca\xec\x56\xee\x5e\xec\x21\xf5\x6a\xf4\x5e\xeb\x83\xfb\xf5\xfa\x97\x07\x58\x83\x87\x06\xef\x0d\xf1\x86\x4d\x87\x9f\x1c\x17\x8d\x98\x8f\xbc\x18\x2d\x38\x61\x71\xe2\xf9\xc9\xfc\x53\xe6\xa7\x9e\x8f\x15\x8e\x1f\x1b\x7f\x73\xba\xea\x8c\xeb\x99\x1f\x13\xed\x93\x41\x53\x9b\xa7\x46\xa6\x51\x67\x77\x9c\x9d\x9a\x49\x99\x55\x9c\x9d\x3f\x97\x39\xb7\x77\x6e\x7e\x3e\xfd\xfc\xee\xf3\x93\x17\x30\x17\xb7\x5d\xec\x5f\xf0\x5b\xd4\x5c\xca\xbb\xf4\xe9\x4a\xe0\xd5\x91\xeb\x3b\x6f\xa4\xdd\xbc\xb0\xac\x7a\x9b\xb8\xb2\x78\x57\xf9\x5e\xc6\xfd\xe9\x87\x32\x8f\xa2\x1f\xf7\x3c\xf9\xf1\xcc\xfe\x79\xc1\x8b\x77\xab\xae\xaf\x5a\x5e\xff\x7b\x1b\xf2\x6e\xf0\x83\xc4\xc7\x98\xb5\xd1\xcf\xdb\xbf\xc4\x7c\x3d\xfe\x7d\xcb\x8f\xb0\x9f\xbd\xbf\xd7\xfd\x09\xfc\xdb\xf9\x3f\xfe\xe0\xb3\xd8\xcb\x75\x77\xd7\x5f\xd9\x70\x61\xe3\xfc\xa6\xc5\xcd\xd7\xb6\xdc\x10\xbf\x25\xb1\xbc\x75\x65\xdb\xdd\xed\xf7\x25\x1f\x4b\x3d\x97\x7e\x2d\xf3\x41\xf6\xf3\x8e\x1f\x3b\xff\xc9\x6d\x90\x97\xf8\x4f\x7a\xb7\x9c\x82\x82\xa2\x82\x92\xc2\x1e\x85\xbd\x8a\xfb\x14\x95\x15\x55\x14\x55\x15\xd5\x14\xf6\x2b\xa8\xef\xd6\xf8\x4f\x53\x5e\x6b\x97\xf6\x0e\x1d\x59\x5d\x19\x3d\xe9\x03\x32\x07\x77\xe8\xcb\x19\x28\x1c\x52\x36\xd4\x36\x32\x32\xd6\x33\xd1\x30\x55\x3b\xac\x72\x44\xe5\xa8\x8a\x99\x9a\xb9\xba\x85\x96\xa5\xae\x95\xfe\x31\x43\x6b\x53\x9b\xa3\xb6\xe6\x76\x56\xf6\xd6\x0e\x36\x8e\x76\x4e\xf6\xce\x8e\x2e\x4e\xae\x2e\x6e\xae\xee\xee\x1e\xae\x9e\x0e\x5e\xd6\xde\xe6\x3e\x87\x7d\x8d\xfc\xf4\xfd\xf5\x02\xb4\x03\x35\x83\xd4\x83\xf7\x87\xec\x0f\xdd\x1f\xb6\x3f\x5c\x23\x42\x2b\x52\x37\x4a\x3f\xda\x38\xc6\x2c\xd6\x3a\xce\x19\xe5\x83\x0e\x8d\x8f\xc7\x44\x24\x04\x26\x7a\x25\xb9\x62\x1d\x71\x76\xc9\xb6\x29\x36\xa9\x36\x69\x36\xe9\x76\x19\x0e\x99\xce\x59\x6e\x78\x2f\x82\x5f\x76\x30\x31\x22\x27\x96\x84\x21\xe3\x28\xe9\x54\x3c\x8d\x04\xd1\x60\x2a\x42\xa4\x67\x30\x92\x99\x18\x56\x0c\x3b\x9c\x13\xc8\xf5\xe1\x79\xf0\x5d\x04\x8e\x42\xfb\x5c\xbb\x3c\x3b\x91\x7d\xbe\x63\x81\x4b\xa1\x67\x91\x7f\x71\x58\x09\xaa\x34\xb5\x8c\x5c\xce\xaf\xa8\xa8\xcc\xab\x62\x56\x53\x6a\xb2\x6a\x53\xeb\x92\xea\xe3\x1b\x50\x8d\xb1\x4d\xb1\xcd\xb1\x2d\xa8\xd6\xf8\xb6\xc4\x76\x5c\x47\x7a\x27\xbe\x8b\xdc\x8d\xf4\x70\x7b\x45\x7d\xa5\xfd\xb5\x03\xad\x83\xbd\x43\x83\xc3\x83\xc7\x07\x46\xfa\x47\xfb\x4e\xf4\x9e\xec\x39\xd5\x3d\xd6\x35\xde\x71\xba\xed\x4c\xcb\x44\xd3\x64\xc3\x54\xdd\x74\xcd\xd9\xea\x99\xaa\xd9\xea\x73\xb5\x73\x0d\xf3\xad\xe7\xbb\x2f\x0c\x5f\x9c\x58\x58\x58\x9c\x5c\x1a\xb9\xd4\x7b\xb9\xe3\x4a\xcb\xd5\xa6\x6b\x8d\xd7\x1b\x6f\x34\xdd\x6c\xb9\xd5\xbe\xdc\x75\xbb\x67\xa5\xff\xce\xe0\xdd\xe3\xf7\x4e\xdc\x1f\x7b\x70\xe6\xe1\xf4\xa3\xb9\xc7\x0b\x4f\xae\x3e\xbd\xfd\xec\xd1\xf3\x87\x2f\x96\x5f\x5e\x5a\x9d\x7f\x35\xfd\x7a\xfc\xcd\xe8\xdb\xa1\x77\xfd\xef\x7b\x3e\x74\x7f\xec\x5a\xeb\xfe\xd4\xfb\x79\xe0\xcb\xc8\xd7\xf1\x6f\x33\xdf\x17\x7f\xdc\xfa\xf9\xe8\xd7\xea\xef\x0f\x7f\xbe\xfe\xfd\xf5\xef\xdf\xbf\x7f\x30\x80\x7e\xbf\xbf\x0b\x03\x78\xf3\x83\x00\x18\xc0\x3b\x17\xc9\x30\x80\x55\xc7\x0c\x60\x00\x1f\x6c\x3b\x0a\x03\xd8\xb2\xb0\x0f\x06\xb0\x1b\xb9\x19\x06\x70\x44\xdc\x65\x18\xc0\xa9\x2e\x66\x30\x80\xe9\x7a\xad\x30\x80\xcb\xfe\xe9\x42\x24\xc6\xc4\xbb\x0f\x50\x16\x23\xe8\x7e\x02\x94\xcd\x10\x5f\xe8\x87\x98\xf4\x91\x53\x51\x50\x3c\xf2\xa7\xb5\x1c\x6a\xa1\x7b\x16\x02\x68\x80\xae\x42\xd6\x84\xce\x22\x4f\xe3\x0c\xa1\x65\xa4\xd3\x79\x0a\x7a\x85\x04\xea\x05\x40\x3f\x91\x8d\x7f\x8f\x40\xeb\x39\xc3\x6f\x7f\x42\x80\xfd\xe2\x5e\x0e\xed\x1d\x5b\xfd\xe2\x2b\xda\x3f\x56\xd0\x49\x2e\x24\xc3\xec\x6b\xf9\x0a\xd9\x32\x39\x05\x01\x50\x30\x53\x91\xd4\x00\x51\x18\x25\xb1\xfd\x50\x13\x63\x83\x73\x28\x34\x43\xf7\xd5\xdb\x09\x3d\x46\xf2\x7e\x7b\xd0\xbc\x44\x67\xdf\xc8\xd1\x6c\xf2\xe2\xee\x74\xd2\x1c\x85\x2f\x2f\x18\xd2\xbc\x05\xb9\xa3\x6f\x68\x31\x7c\x8f\xe6\x1e\x1a\x91\xe7\x9e\x2f\x4f\xab\xe0\xba\xe7\xf4\xd0\xee\x70\x0c\x63\xc6\x21\x25\xd6\x7b\xa7\x6e\x28\x80\x89\xd3\x9d\x86\x78\xf4\x0b\x3f\x0b\xa8\x8e\xe5\x0b\xaf\x30\x54\xb7\xd2\x9a\xdb\xf3\x54\xff\x62\xca\x7c\x0c\x35\xbe\x90\x36\x62\x44\x65\xe7\x97\x36\xed\xa1\xb6\xe7\xdd\xce\x3b\x41\x5d\xc9\xdd\x45\xac\xa3\xe9\x0a\x8c\xa2\x1f\xd3\x10\x9e\xaa\x93\x32\x6d\x81\x3d\xa6\x5b\x0d\x49\x33\x35\xbe\x13\x29\x51\x8d\x4e\x2f\x9d\x28\xb8\x3a\xc6\xad\x55\x0a\xa9\xfa\xc4\xb9\x42\x4a\x49\xe5\xb6\x61\x1a\x65\xb0\x2c\xad\x41\x44\x79\x55\xfc\x3c\x37\x86\xaa\x5a\xe8\x9e\x5d\x4e\x85\x44\xa2\x68\x79\xea\x33\x61\xb9\x63\x1b\xcd\x8a\x67\xa2\x9b\x4b\xcb\x63\x15\x7f\x59\x25\x0b\x07\xfa\x9e\xad\x91\xcb\x7a\x9e\xdf\xc0\x91\x6b\x3a\xf7\xcc\x1c\x20\xf7\xb7\xfa\x0e\x9a\x91\x6f\x36\x72\xeb\x10\xca\xe6\xda\x71\x41\x09\xc5\xab\x72\x96\xa0\x4c\x19\x28\x2d\x8e\xda\x4c\xdd\x5b\x28\xe5\xb8\x83\xca\xcb\x95\xd1\xe5\x53\x5f\x73\x4e\x7e\xe2\x92\xe5\xa7\xbb\x9f\xe0\xc8\x32\xa7\xeb\xaf\xed\x24\x4b\x9d\x98\x9a\x7a\x46\x56\x1a\x9a\xeb\x97\x22\x1f\xed\x3d\x51\x43\x27\xa7\x77\xf0\x78\xd7\xc9\x13\xcd\xbb\xb2\xfa\x28\xaa\xb5\x8e\x11\xbf\x28\x25\xe5\x1b\x1c\x20\xaa\x54\x81\xa9\x2e\x83\x4a\xe7\xbd\xff\x18\x4c\xba\x7e\x0d\xf7\x28\x91\x74\x6b\x91\x75\xf9\x07\xe9\xca\x1c\x7d\xe2\x0e\xe9\xd6\x14\xaa\x77\x1f\xe9\xc3\x98\x6c\xd5\x18\x79\xff\x70\x09\xd7\x89\x9c\xd1\xd3\x97\x19\x43\x3e\xd5\xba\x35\xc2\x84\xa2\x52\xbb\xd5\x61\x07\x65\xa8\xc4\x51\x97\x4b\xb5\x12\x3c\xfe\xd0\x40\x9a\xbb\xb3\xed\xa1\x80\x34\x7d\xfd\xd1\x65\x2d\xd2\x89\x25\xf6\x84\x38\xe9\xe4\xdc\xbd\x9e\x40\xd2\xe2\xe4\xc7\xaa\xf5\xa4\x3f\x27\xaf\x72\xda\xc9\x2e\x83\x87\x33\xae\x92\xd9\x1d\x8d\xe1\x6b\xe4\x87\xf5\xb3\xf6\x7f\x28\xa4\xd2\xbf\xba\x8d\x54\x19\x21\xf3\xfd\x1a\x69\xee\xb1\xea\x83\x9b\xa4\x81\x3b\x29\x97\x84\xa4\xd2\xeb\xfd\x67\x52\x49\xa2\x45\x51\xf7\x2c\xa9\xfa\x9c\x42\x25\x4c\x9a\x3d\x83\xe1\x58\x90\xb7\x8d\xa8\x66\xc4\x91\x6d\xba\x1b\xc3\xef\x92\x39\x8d\xdf\x1c\xc4\x29\xda\xe5\x26\xba\x0f\x29\xf3\xc2\xce\x9f\x0e\x0c\x69\xda\xd3\x57\x42\x7a\x2f\xed\xed\x0a\x8d\x1e\x0c\x6d\x3d\x7f\x90\xbe\x13\x52\x1d\xd5\x44\x66\x69\xe3\x4d\xaf\x91\x52\x48\x20\x9a\x41\x02\xa0\x99\x1c\x14\x22\x03\x7d\x8d\xf9\x04\x9f\x87\x8d\x9c\x37\xc2\x1c\x18\xab\xa7\x0f\x1f\x81\xdb\x7e\x44\xd2\x29\xf4\x4b\xab\xad\x74\x55\x3a\xf6\x76\x25\x72\x85\xae\x32\x1f\x8b\x54\x22\x0f\x46\x30\x48\x28\x12\xdf\xe4\x84\x98\x21\x43\xa2\xbd\xc8\x26\xa4\x95\x78\x0b\xbe\x81\xb0\x63\xd2\xe0\x16\x04\xe3\x54\x03\xa7\x22\xe6\xba\x2f\x60\x13\x64\xfb\xf7\x74\xe4\x27\xfb\xf4\xcb\x33\x48\x33\x5b\x62\x79\x08\x71\x63\x45\xcd\x15\x21\x9a\xcc\x86\xe3\x2d\xf0\x77\xe6\xee\xc6\x66\xf8\x36\xe3\x4b\x1e\x05\xee\x67\xd4\x10\xfd\xe0\x02\x86\x69\xf4\x43\x38\x9d\x3e\xe1\x64\x0e\xbb\xd2\x0d\x74\x07\x61\x45\xa4\xf0\x6b\x07\xb2\x2f\x6f\xee\xf9\x6f\x78\x31\x97\x71\x0b\xc0\xb9\xc2\xbd\xb3\x5f\xe1\x08\xfe\xbd\x61\x1d\xf8\x30\xaf\xaf\x21\x06\x96\xe4\xce\xe4\x7a\x40\x9f\x38\xb7\xb2\x93\xa1\x35\xf6\x85\xe8\x8d\xd0\x6b\x56\x93\x63\x15\x74\x9f\xe9\xa2\x8b\x83\xa6\xe8\x4b\x9f\x1f\xc1\x91\x65\xd9\xcf\x9c\xe0\xcd\x25\xf0\x0d\x2d\xe8\x6c\x11\x77\xc6\x00\xaa\x28\x68\x1a\xcc\x80\x72\x44\x37\xea\x96\xa1\xe0\x3c\x43\xc1\x37\xc8\x46\x28\x20\x60\x20\x17\xfe\x54\xd4\x51\x28\x80\x7b\xd9\x51\x11\x0a\x64\x97\xea\x7a\x42\x6e\x4c\x83\xb5\x17\x10\xa3\xfe\xee\x13\x1b\xc8\xb6\xd6\xfe\x9a\x1f\x24\x59\x55\x32\x9d\x40\x7b\x5a\xb1\xb9\xff\x14\x6d\xb1\x94\x53\xeb\x43\xeb\x2c\x56\xe6\xb7\xd1\xca\x0a\xda\xf1\xf1\xb4\x16\xd1\xb6\xc8\x1c\xda\x29\xa1\x99\x43\x1f\x6d\x8e\xb7\x41\xd7\x8d\x36\xcb\x2a\xfd\x90\x40\x2b\xef\xfb\xfe\x70\x95\x86\xea\x0e\xbb\x7c\x97\x66\xd0\x3e\x35\x29\x49\xfd\xdd\x22\xdf\x2b\xa4\xde\x6e\x48\xae\xf6\xa2\xce\xd5\xcc\x73\x9f\x51\x67\x2b\x7e\x66\xfe\xa0\xae\x94\x7c\x8a\xc0\x53\xbf\x14\x54\x39\xe8\xd2\x24\x85\x57\x74\x7d\x69\x7b\x39\x03\x6f\xbf\xd2\x2c\x26\x3b\xef\xc7\x53\x1f\x8d\x2d\x2d\xb1\xa8\xf5\xa3\xfb\x4f\x2f\x52\xa3\x07\xdd\xbb\x53\xa8\x87\x7a\xa2\x2b\xc3\xa8\xda\xed\x51\x9c\x03\x54\x93\x26\x85\x8c\x42\xaa\x5b\x0d\x35\x3c\x93\x9a\x5c\x96\x61\xdf\x40\x2d\xcc\x7f\xa0\xeb\x47\x1d\xe0\xdd\x7e\x7d\x95\x06\x2e\xff\xbe\x9b\x44\xed\xba\x18\xb6\x40\xa5\x86\xcd\x56\x8c\x5d\xa6\xca\x4d\xb4\x77\xf2\x28\xcf\x4e\xb2\xca\x6b\x29\xcb\x43\x47\x58\xed\x94\x27\xdd\xac\x74\x1f\xca\xb3\x16\xb5\xb0\x6e\xca\x9f\x9a\x00\x7b\x0b\xaa\x71\xf1\x4d\xdd\x48\x6a\x92\xe0\xcc\x6b\x05\xea\xdb\xe5\xea\x3b\x65\xd4\xf2\xab\x0d\x17\xbb\xa8\xd6\x0b\x84\x31\x31\xca\x97\x73\x62\x1d\x53\x94\x99\x09\xd7\xb2\x55\x4a\xff\x89\x48\xd6\x36\xca\xa9\xfe\x6f\x69\x17\x28\x7d\xed\xdd\x61\xa9\x94\xb1\xfa\xf5\xf6\xca\x94\x7f\xa5\x6c\xdd\x1c\xaa\x85\x30\xfc\x15\x8b\xfa\xe0\x41\xe6\xca\x37\x2a\xed\xb6\xd4\x45\x59\xaa\xd2\x55\xe4\x54\x22\xe5\xe2\xc5\xaa\x0e\x43\x8a\x68\x26\xa6\x2c\x9e\x42\x18\x7f\xc8\xac\xa7\x10\x87\xaf\xa6\xa1\x28\x09\x5d\x2d\x61\x9e\x14\x4c\xa3\x86\xbd\x26\xa5\xbf\xec\x84\xee\x71\xca\x07\x21\xfd\x73\x00\xdb\x84\xfa\xfd\x99\x14\x8b\x49\xdb\x71\x03\xcb\x5c\xa1\x6d\x9e\x69\x67\xfa\xd0\xc4\x87\xb6\x32\xae\xd1\x74\xea\xa3\x18\xd1\xb4\x1b\xc2\x2a\xfa\x63\xc8\x84\x70\x97\x1e\x06\x09\xa3\x3e\x20\x97\xa1\x17\x8e\xcd\x88\x3d\x6c\xa6\xcb\x84\x07\xe0\xc6\x4f\xc9\xac\x4a\xe4\xfa\xd3\x83\xcc\x2f\x48\xee\xf5\x02\x66\x20\x72\xec\xec\x7d\xc6\x43\xf8\xcd\xa0\x0f\x03\x07\xcf\xd7\x9d\x62\x6c\x41\x36\x09\xfe\xd2\x4b\x91\x9d\x04\x6f\xba\x1a\xa2\x10\x15\x89\xf4\x20\xff\x39\x5a\x23\x87\x10\x29\x5d\x27\xb8\x1b\x59\xbf\x86\xb0\x00\xeb\xd6\x93\x40\x66\x3c\xcb\xf8\xda\x20\xe3\x1a\xb3\xf6\xac\x24\x03\xcb\x58\x1b\x28\x63\x6c\x62\x10\xeb\x34\xe8\x4d\x0c\x2b\x01\x8a\x6e\xcd\xf8\x0f\x7f\x19\x79\x44\xbf\x10\x79\x07\xa1\xd0\x93\x1d\x9e\x23\xdb\xe9\xeb\x74\xe5\xe0\x12\x84\xf7\x61\x91\xb9\x23\xf7\xca\xa3\x0e\x06\x5d\xd8\x7e\x55\x81\x21\x26\x08\x9a\xca\xa7\x57\xf0\x35\xfa\x75\xe8\xd6\x3c\xc9\x9a\x7b\xc8\x03\xae\x11\xdf\x01\x61\x71\xc2\xb2\xde\x21\x76\xec\xe8\xc8\x1d\xf0\x77\x96\xab\x83\x1f\xdc\xc8\xfc\x4f\xe7\x1e\x6c\x45\x9f\x7d\xf7\x9b\x51\x55\xaa\xf3\xe0\x3d\xfd\x4d\x71\xe2\x65\x4f\x7a\x64\x61\xe9\xc4\x65\xe4\x4d\xfe\x85\x5e\x1a\x92\x2b\xda\x55\x1d\x8a\x18\xe7\x72\xb9\x5f\xe1\x27\x82\xef\x99\xef\xe1\x66\xbe\x63\x84\x1f\x1c\xcf\x4d\xb3\xbf\x0f\x2b\xb2\xa3\x74\xce\x43\x67\x99\x6a\x6f\x15\xe8\x2b\x75\x99\xf7\xfe\xd0\xad\x6b\xc4\x97\xe8\xc8\xd5\xca\x8c\x33\xd2\x88\x47\xf9\xba\xee\xeb\xf0\x6a\x49\x6d\xe5\x1d\xb8\xa8\xc8\x9f\xd3\x03\x3b\xe6\xff\xca\xf8\x02\x6f\xc9\xa3\x85\xd7\x40\x8b\x82\x4b\xf6\x24\x48\xc8\x9d\xd1\xb9\x04\x99\xb3\xd8\xaf\x86\x91\x99\x5e\xf3\x3b\x5d\x48\x48\xe7\xa5\x05\x19\x78\xad\x2d\x6e\xec\x34\x9c\xd8\x74\xbb\xb3\x1d\x16\xab\xf7\x2c\x7f\x0c\x0d\x57\x2f\xb1\xbe\x40\xf8\x0a\x8d\xf4\x22\xc8\xa2\xc4\x31\xac\x19\x92\x28\x50\xb0\xfb\x47\xbb\x21\xa4\xeb\xdc\xa7\x15\x70\x2a\x5f\x1e\x42\xf8\x67\xda\x6f\x6b\xc3\xf7\x4e\xfe\x38\x3f\x06\xc7\x1e\x47\x4e\x52\xa1\xcb\xfd\x17\xda\xf3\xa0\xe8\x6e\xb1\xd2\x4f\x90\x42\x9b\x1e\xd3\x9e\xf6\xbc\x71\x57\x9a\x11\x6d\xa0\xba\x33\xb4\x83\xc6\x28\xbd\x6e\x07\xd1\x82\xf2\x29\x3a\xcf\x69\xca\xbc\xe3\xcf\xf7\x20\xbe\x4b\xbc\x5b\xa6\x70\xef\x79\x8d\xb9\x09\x78\xc7\xd9\x96\xd1\x3c\x88\x7e\xfa\x69\xeb\x10\x24\x3b\xfa\xae\xe4\x18\xed\xdc\xc0\x15\xfa\x1c\x4d\xd4\xe5\x93\xf2\x93\xe6\xd6\xac\x1b\xf2\x98\x26\x5f\x5d\x6c\x27\x47\xfd\x55\x1c\xa2\xb3\x46\xbd\x21\xc8\x7b\x16\x85\x58\xde\x54\xbf\x99\x0e\x97\x5f\x0e\x38\xf7\x19\xfa\x71\x21\x7c\xe4\x2c\x14\x33\xa3\xd2\xf2\x9e\xf6\xf6\x74\x55\xb1\x90\x56\x33\xf2\x90\x7e\x80\x16\xdb\xd7\x9b\x42\xa2\xc9\xb5\x75\x84\xd4\x53\x97\xeb\x0c\x6d\x7f\x52\xcf\x95\xfc\xd3\x95\xa4\xb6\x0a\xb5\x9f\xde\x46\x34\xef\x2e\xdc\x78\x02\x63\x6f\xf6\x9e\x0b\x87\xae\x5f\x76\x1c\xd1\x86\x8e\x9e\xaf\x6f\x89\xa2\x8d\x4d\x57\x17\x6f\xa5\xc5\x8e\x79\x21\xd3\x34\xd5\xa1\xec\x14\x35\xea\x62\x67\x6d\x08\x95\xca\x69\xf0\xb0\x03\xd4\xec\x32\x1d\x5d\x67\x6a\x88\xd0\xe7\x25\x4a\x98\x47\x81\x6f\xdf\x14\x24\x51\x5a\x2f\xda\xf1\xb5\x29\x73\x63\xb6\x3c\x33\xca\xfd\xce\x54\x6e\x00\x55\xa6\xfc\x2a\x27\x82\x9a\xc7\x7a\xcd\x8e\xa7\x29\xa7\x27\xb1\x22\x68\x27\xc2\x48\x4c\x77\xc8\xc1\x8e\xc2\x38\x0a\x5d\xd3\xbe\x49\xdf\x09\x13\x5e\x50\x04\xdf\x60\xfd\xdb\x9b\xf8\xf7\xe0\x0d\x17\xb0\xbc\x4e\xe8\xce\x29\x2a\x77\x16\xea\xef\x38\xc7\x59\x83\xca\xca\x4d\x39\xeb\xa1\x0b\xac\x28\xf6\x5e\x78\x63\xda\x0b\x96\x3e\x6c\x1e\xb6\x8e\x79\x00\xc6\xd9\xa9\x31\x74\xe0\x46\xed\x16\xba\x34\x7c\xed\x79\xbe\x00\xc5\x5c\xb7\x7c\x88\xef\xc7\xe0\x9e\xcf\xe7\xe9\x30\xe4\x4e\x4e\x73\x03\xe9\x8d\x1d\x4a\x1c\x1e\xdd\xa1\xac\x92\xdd\x41\x57\x67\xde\x64\x5d\xa4\xcb\xa4\xa5\x32\xdf\x22\x6f\x42\x8b\x18\x7f\x90\x13\xb6\xb7\x18\x5b\x10\x81\x36\x8c\xfc\x46\x82\x9e\x59\xf0\xb3\x84\xe0\xe6\x2d\x1e\x96\xff\x69\xde\x95\x1b\xc0\x5b\x3e\x91\xce\xa1\x71\x2f\xb5\x5d\x66\x0f\x71\xee\x96\xa6\xb0\x1e\x73\xf6\x30\x6e\xb0\x76\xb1\x51\xa9\x02\x66\x00\x0b\x09\x59\x62\x30\x99\x7c\xdb\x70\x7a\x03\xa3\x58\x3b\x02\x69\xa4\xe7\x3e\x71\xe6\xbd\x29\xfa\x70\xc3\x80\x3b\x53\x18\x7d\x8e\xc5\x39\x9e\x3f\x33\x32\xc5\x7e\x24\xd2\x6a\x35\x65\x2b\xe4\x56\x95\x00\x96\x8f\xd0\x8c\x5e\xcc\x14\xf1\xaf\xa5\x14\x30\xce\xf1\x9c\x43\xf6\xd1\xbf\x71\x6a\x6d\xfe\xd0\x77\xb3\x6e\x68\x47\x20\xfb\x19\xcf\x1f\x91\x79\x06\xd5\x33\xd7\x0e\x71\xf5\x2b\x05\x33\x93\x1c\xed\x72\x87\xe3\x92\x6c\xbf\x52\xf1\xe6\x56\x96\xb0\xe8\x76\x51\x21\x73\xae\x60\x16\x09\x62\x4a\x8a\xea\x93\x5b\x19\x47\x72\xc3\x83\x61\x7a\x0c\xff\x95\x4d\x37\xc2\xe7\x1e\xd4\x4e\x83\x2b\x58\x8e\x0f\x52\xb8\x11\x5d\x12\x57\xf4\x38\xfe\x6d\x37\xa7\xa3\xd9\x01\xcd\xf5\x83\x0b\x2c\x6a\x43\x64\x23\x8f\x39\x50\xab\x50\xd0\xc1\xf8\x5c\x79\x17\x1a\x64\x58\x97\x51\x70\xe1\xf4\xb4\xa2\xd5\xa0\x0a\xa4\x31\x7f\xab\x8d\x05\x7c\x4d\x70\x49\x5b\x00\xbd\xe2\x78\xdd\xad\xe3\xac\x9d\xa2\x2c\xd1\xd8\x4f\x47\x2c\x27\x77\xb2\x96\x06\xe5\xfa\x4b\x99\xef\x7a\xc6\xea\xf1\xcc\x7d\x1d\xce\xa2\x59\x46\x5c\xf3\x3c\x4d\x92\x3e\x54\x2f\x8e\xdd\x8e\xac\x56\xfe\x0a\xec\x42\xf6\x95\x08\xac\xa7\xe1\x00\x51\x9d\x76\x39\x94\xce\xf3\x5b\x19\xe6\xb4\x9f\x7f\xb8\x30\xcc\xae\x98\x79\x7b\x66\x1f\xab\x70\xe2\x4a\xef\x28\xb3\xf5\x54\x5c\x6d\x1f\x63\x69\x78\x3a\x6f\x3f\x43\xbc\x6f\x1d\xa5\x81\xee\xd7\xfe\x34\xf1\x15\xc2\x6a\x3c\x1a\xf0\x00\x1e\xaf\xda\x6c\x1d\x02\xfd\x2c\xf2\xd2\x6e\x81\x94\x05\x72\xb7\xdf\x70\x06\xaf\x78\x5e\x7c\xcf\xce\xbf\xf8\xe6\x74\x08\x2b\xfb\x5c\x58\xcf\x3b\x26\x67\x12\x5b\xf3\x91\xd1\x71\xca\x3c\x17\x4f\xbf\x3f\xf4\x90\x22\x41\x57\xed\xd9\x95\x98\x8e\xf8\xb6\x54\x07\x14\xc2\xac\x1a\xb6\xb5\x19\x74\xae\xf8\x89\xf6\x19\xda\x3b\x41\xef\xed\x00\xce\xa9\x5b\xd7\x2e\xfa\xb3\x99\x57\xff\x1b\x1f\x67\x05\x2f\x28\xf7\x04\x30\x23\x67\xa7\x6a\x62\x18\x84\x09\x69\xe1\x67\x7a\xe3\x09\x4d\x72\x1d\xf2\xa0\x7f\x3c\x51\x0d\x11\x6f\x27\x07\x60\xe1\xc3\x75\x79\xd6\x56\x10\xb1\x74\x8b\xf6\x67\x5a\x83\xe0\xde\x9d\xe2\x22\x21\x39\x7e\x49\xbd\x60\x96\x5c\x3b\xb9\x33\x7f\x0f\x79\xbe\xff\x4b\x5e\x0f\xf9\x67\x83\x64\xae\x23\xc5\x29\x3f\x47\x70\x99\x72\x89\xd6\xc7\xf7\xa7\xa6\x60\x23\xb8\x97\x68\x92\x81\x65\x9c\xc3\xb4\xfe\x63\x3f\x59\x22\x28\x4d\xf3\x19\xe3\x02\x6c\xbb\xb2\x52\xf8\x96\x76\x67\x31\xbc\xc0\x81\xb6\x30\x61\x27\x1a\xa4\x0d\xf5\x1f\xc9\xf3\xa4\x35\xd4\xa3\x85\xef\x69\x3d\xa2\x07\x02\x1e\xed\x25\x4d\x87\xaf\x08\x99\x27\x3d\xe3\xb6\x42\x8c\xc0\x03\x9c\xbd\xd0\xd2\xb1\x1e\x16\x03\x36\xd6\x1c\x67\x5c\x84\xeb\x56\x76\x17\xfa\xd0\x33\x17\x72\xf3\xcf\xd1\x95\xcf\x24\x8b\x1c\x91\x99\x3e\x38\xf7\x3d\x92\x5e\x37\x23\x2c\x47\x8e\x8a\xdc\x05\x66\x88\x2e\xb5\x9d\x77\x13\x31\x48\xca\xe0\xa6\x22\xaa\x01\x0b\xec\x2f\x88\xf4\xb1\x14\x56\x1c\x22\xa7\xd9\xc4\x18\x46\x94\x96\x49\x05\x7c\x3e\xb8\xa8\x9c\xbf\x85\xa7\x78\xfa\x60\x5e\x09\x57\xbf\xd7\x3c\xd7\x8c\xe3\x5d\xcb\x16\xbc\x62\x33\xf3\x0c\xf8\x85\xac\x55\xca\x00\xcf\x8c\x15\x90\x58\xc2\x79\xc1\x2c\x0b\xd8\xcd\xa6\x33\x96\x8e\x49\x30\x7f\x33\xe4\x34\x8b\x19\xc1\x74\xd7\x9b\xcf\xf3\x1f\x14\x74\x9d\xaf\x14\x05\xe5\xfb\x8f\xd5\xe4\xbe\xc9\x7b\xde\x3d\x21\x2c\xcd\x25\xd6\xe8\x08\x5c\x84\x8a\xc2\x0f\xbc\xbf\xfc\xa7\xe4\x2a\xee\x20\xaf\x3b\xa1\x9f\x13\xc4\x75\xf2\xe7\xb0\xd6\xd8\x4b\x56\x93\xcc\x2c\x96\x9d\x66\x1b\xfd\x1a\xa3\xfc\x06\x36\xdf\xb9\xd2\x7b\xee\x47\xde\x6c\xb9\xc5\x29\xf1\xdc\xc0\x52\x8d\x2e\x1b\xc1\xbf\xe2\x7d\x55\xb3\xfc\xe3\x85\xaa\x82\x5e\x5e\x7a\xbe\x2d\x89\xc5\x3d\x90\x17\x8c\x39\xcf\x3e\x2f\x34\xf5\xfb\xc4\x8a\xe2\x03\x2b\x1a\xe3\x29\x27\x57\x73\x86\xee\xc0\xfc\x7c\xcd\x5c\x14\xd9\x76\x61\xf6\x62\xee\xd7\xe6\xb7\xa3\xd7\x85\xa2\xc6\x0d\x1d\x9a\x02\xd3\xba\x75\x15\x57\x78\x2f\xab\x7e\xf2\xde\x72\x5b\x2b\xc4\x72\xd6\x73\x30\x25\x2f\xe2\x7b\xd8\x12\x85\x5c\xbf\x7d\xcc\xe6\xbc\x35\x2b\x05\xc6\x01\x81\xa4\xe6\x2a\x52\xc0\x5e\xbb\xbc\x22\x3a\x32\xd2\x7b\x16\xc9\xad\x1c\xbc\x72\xbc\x5b\xb8\xa3\x77\xb5\x6d\x17\x7f\xb0\x73\xb9\xec\x11\x2f\xb2\xb5\x9f\xab\xcd\xdd\xd3\x08\x67\x93\xd9\x0f\x6b\xe5\xd1\x08\x8b\x53\xe1\xeb\x7b\x8c\xb9\xbf\xd8\xd8\xb2\x85\xde\x97\x37\xa4\xf9\x13\x91\xe6\xde\x5f\xba\x2e\x52\x9c\x45\x4d\x15\xe5\x52\x26\xcf\x0e\xb5\x0b\xd6\xc6\x5e\xb5\x68\xf3\x19\x23\xd7\x4b\xa5\x79\x2a\x03\xb9\x6c\x88\x73\xad\x5b\x8b\xb0\x99\x9d\xdb\x9a\x8c\x0a\x64\x1d\xac\xd7\xf4\x49\x61\xcc\x57\x60\x2c\x2d\xe9\xfe\x85\x86\x5a\x9b\xe0\x13\x7c\xc1\x12\x10\x49\x2f\x64\x4e\x1e\xcf\x25\xce\xc5\x0c\x5e\x11\xbc\x9a\x56\x6a\xf6\xe7\x67\x8c\x0b\x4a\x9c\x79\x9b\x47\xc6\x58\xf3\x9c\x81\xfe\x29\x7c\x02\x3b\xb6\x33\x3a\x6e\x99\x05\x9a\x42\x7d\xe4\x19\xe5\x55\xb3\x96\x8a\x74\x95\xa2\x61\x2d\x45\x98\x21\xd8\xb7\x18\x22\x5a\x7f\xb5\x65\x72\x53\x2e\x6e\xd1\x6c\x50\x45\xb0\x32\x57\xd4\xd4\xc9\x0f\x9c\x2a\x2f\xee\xe0\x3e\x1c\xf3\x64\x99\x71\xa0\xe1\xc5\xac\x8f\x6c\xcd\x9e\x2b\x71\x08\xf3\x74\xeb\x0e\xef\x37\x0c\x8f\x9a\x13\x96\x8a\xc8\xf5\xe2\x2b\x5a\xee\xf0\x61\x81\xff\x92\x49\xe5\x1f\x92\x68\xca\xa7\x7c\x99\x74\x79\xd8\xaa\x74\x88\x2c\xdd\xba\xa9\xf8\x04\x39\xa8\x4c\xbe\xf0\x1c\xf9\x04\xa7\x3c\x7f\x82\xe2\x9c\x0d\xf2\xfa\x29\xef\x51\x1f\x84\x95\xd4\x52\x9f\x14\x7e\x02\xcd\xc1\xc2\x83\x2b\x07\x19\xaa\x3f\x63\x95\xc1\x7a\x8b\xee\x95\x45\xd4\x4b\x93\x9c\x72\x12\x75\x61\x08\x5f\x1a\x4e\x5d\x68\xf1\x2a\x4e\xa0\xde\x2a\x4d\x2d\x24\x51\xbf\x73\x36\xe7\xb3\x68\xf6\x04\x56\x1e\x93\xd6\x80\x62\x08\x73\x68\xdf\x7d\x76\xf0\x7d\x21\x5f\x0b\x69\xae\x04\xf4\x54\xfd\x3c\xab\x14\x26\x2f\x10\x2a\xb5\x10\xd3\x89\xa1\xf2\xbd\xf0\x9b\xc1\xf6\xd2\x0d\x70\x5f\x73\x43\xb1\x12\x4c\x29\xb9\x5b\x68\x0a\x47\xb0\xa1\x7c\x47\x18\x45\x90\xc8\x73\x87\xc9\xa8\xdd\x42\x17\x98\xee\x3d\xc1\xd7\x85\xb9\xe6\x2b\x9c\xd7\xf0\x29\xf5\x53\x2c\x08\xfe\x78\x51\xab\x02\xe1\xfa\x9c\x89\x2a\xcb\xe1\x30\x07\x08\x25\x59\xec\xf1\xa6\xb4\x22\x2e\x5b\xac\x78\xa4\xa0\x8d\x15\xc6\xca\x14\x8d\x31\x1f\xe0\x55\x72\xe7\x99\xb8\x38\x2f\xc1\x25\xc6\x15\x6f\x3d\xde\x18\xc3\xc0\x3c\x8f\xc3\xa2\xb7\xa9\x8f\xb3\x94\xe9\x72\xe7\x4b\xca\x7b\x45\x6d\xa7\xf7\x97\xf6\xe6\x11\xfb\xf7\x14\x4f\xe7\x1a\x37\x1e\x2c\xbc\x2f\xf8\x50\x24\x2a\x10\xe3\x8f\x33\x13\x44\x2a\xbc\xbe\xac\x23\xb9\xe6\xdc\xa6\xd8\x4c\x81\x05\x27\xc6\xab\x8d\x77\x90\x2d\x6f\x1e\xc8\xfe\xc5\x9c\x55\xbf\xc3\xac\x60\x44\xcf\x9b\x96\xfd\x2b\xbb\x34\xc6\x2d\xdd\x55\xba\xa5\x77\xaa\x58\xb9\x58\xaf\xfe\x59\xa1\x45\xa1\x5f\x61\x4c\x7e\x7c\x3e\x87\x11\x9c\x97\x97\x77\x37\xd3\x4b\x38\x90\xab\x11\xc3\xe2\xb7\x0b\x34\xbd\xb4\xb8\x55\x3c\x6d\x73\x2d\x76\x3c\xfb\x97\xc6\x16\xe6\x3a\x66\xef\xec\x8f\x32\x74\xf3\xc9\x93\xbd\x25\xa1\x8d\x6a\xdd\x53\x45\x71\x75\xb4\x3a\x50\x40\xa9\x1e\xc9\x6f\x10\xd5\x56\xbc\x46\xce\xe6\x5e\x28\x33\x4a\xff\x2c\x78\x5f\x1c\x1d\xdd\xc7\x7b\x5f\x70\xd4\x33\x89\xf3\x28\xf7\x89\xd9\x2d\x56\x17\x3f\x48\xc3\x94\xe1\xc0\x2e\x9f\xd9\x56\xfa\x78\xf0\xd7\x28\x52\xbc\xd6\xe7\xde\x39\x57\xf8\xb6\x6b\xba\x46\xa9\x00\xb4\xfd\xc8\xbb\x23\x52\x6c\xde\x0d\x6b\xe6\x3a\xd4\x1f\x4d\x13\x09\xb0\xd5\x1a\x51\x5d\xbc\xf4\xb2\x2e\x8f\x6a\x4e\x74\xe1\x03\xb3\x2c\x96\x66\xee\x05\x0d\x0f\xfa\x38\x37\x69\xda\xb5\x6c\xcb\xe4\xa7\xe3\x17\x8a\x3f\x8c\x73\xda\xa7\x0b\x9f\x8f\xfe\xac\xd2\xc9\x7f\x3e\x74\x24\x57\x3c\xef\x7d\xaf\x2b\x8d\x92\x2b\xde\x61\x97\xaa\x20\x50\x6e\x7a\x1d\x09\xf3\xf6\xd5\x6e\x77\xbf\xc8\x91\x28\x9b\x34\x93\x60\x2e\x14\xc8\x6a\x84\xd2\x23\x79\x7f\xa6\xac\xcb\xf6\xce\xe5\x0c\x3f\x2c\xfe\x3b\x3d\xd6\x76\xb7\xf0\xcd\xe9\xf9\x4a\xcf\xfc\x87\x27\x8a\x85\x66\x79\xf7\x86\xd4\xa9\x93\xc2\xb7\x3d\xa2\x94\x6c\xfe\xaf\xb6\x8a\x48\xc0\xfd\xd2\x20\xe1\x8e\x67\xdf\xa9\xf8\x75\xf4\x29\xb3\xb2\x90\xaa\x81\xa3\x6b\xf1\xf9\x93\x61\x65\x86\x8b\xba\xc3\xdb\x4b\xb6\xcc\x6b\xb7\xed\x29\x7c\x35\xfd\xa2\xa2\x3c\xff\xca\x69\x6f\x41\x41\xde\xe4\x68\x2a\x55\x5b\x78\x76\x20\x30\xf9\x1b\x7f\xb6\x73\x31\xa2\x81\x7b\xa2\xa9\xcc\xdd\x8a\x5d\x5e\x75\xf9\xe8\x1d\xa6\x77\x91\x40\xa3\x1c\xb9\xcd\x9f\x3a\x89\x6d\xc3\xe5\x7c\xec\x5d\xd7\x9c\x46\x72\x6e\x78\xd0\x50\x42\x62\x97\xc8\xd6\x9e\x21\x2d\x73\xea\xab\x9e\x90\x9d\x73\x26\xcb\x7f\x93\x57\x92\x5e\x94\xfc\xa0\xf0\x42\xaf\x14\x9e\xa7\xba\xb9\xd0\x44\x49\xb4\xdd\xa6\x67\x04\xab\x90\xbc\xea\x57\xae\x0e\xbc\xff\xc4\x99\x36\x09\xca\x87\x9e\xa8\x66\x45\xaa\x58\x83\x7d\x83\x1b\x15\x14\x0b\x6a\x73\xa8\x7b\x38\xba\x55\x2d\xd4\xc0\x9c\x80\xf2\x79\x6a\x47\x52\x6e\xc9\x65\x9a\x5c\x28\xbd\xb0\x93\x96\xeb\x62\x2e\x0a\x84\xc4\x4d\x4b\x04\xf7\xa0\x6e\xd5\xe7\x5c\x2d\x38\xee\xc4\xd6\xd6\x4e\x58\xa6\x7b\xa8\x69\x16\x7a\x54\xdf\x5c\xff\x17\x6a\x2c\xde\x58\x6b\x04\x09\xd8\xe3\x55\x28\x88\x4f\xfc\x50\x2e\x84\x1a\x92\x4c\x4a\x2a\xa1\xa5\x50\xa3\x42\x0a\xf4\xdd\xf9\x8f\xe8\x10\xac\x6e\x9a\x21\x98\x80\x33\x54\x9f\x70\xa5\xe1\x85\x51\xe9\x96\x65\xf6\xf1\xae\x99\x26\x39\xf6\xba\xba\xf9\xfa\x24\x96\x7d\x91\x6a\x4d\x13\xb3\x87\xf5\xb0\x72\x99\xa9\x47\xd4\x29\xdf\xc0\x58\x4a\x14\x94\xc8\x31\x68\x21\x75\x85\x1b\x19\x52\xce\x85\x79\x53\xf4\x1a\x53\x5b\x41\x10\xdd\x5a\xf5\x27\xa7\x1b\x79\x74\x7c\xb5\x25\x39\x37\xb3\xb3\xad\x91\x23\x8c\xaf\xed\xa9\x3b\x27\xb0\x2c\x54\xac\xd9\xc0\xd7\x62\xae\x55\x5a\xf3\x34\xb2\xfd\xca\xf0\x5c\xc7\x84\xab\xc5\x05\x1c\x6c\xc8\xc6\x82\x6c\x36\xda\xd9\x38\xcf\x88\xe5\x67\xaa\xce\xbf\xc0\xb4\x51\xd3\xe5\x28\x31\xf6\x0c\x3f\x69\xee\x2d\xd9\xd4\xc1\x6d\x78\x5c\x14\x5a\x23\xac\x3b\x58\xd0\x52\x20\x59\x9d\x92\x2f\xce\xf8\x57\xd1\x9b\x97\x43\x20\x96\xae\xe6\x6e\x4d\x90\x2f\xde\x26\xa8\x08\x8e\xcf\x7f\xc5\x7b\xe3\x74\x3b\xb7\x9a\xab\x6b\x2a\xcb\x3f\xc8\xf6\x54\x43\xb3\x69\xcc\xd0\xc1\x27\xcd\x62\xf5\xe9\x6d\xc7\x1b\x0e\xd7\x5a\x55\x3d\xac\x85\xaa\x5e\x8b\x48\x55\xa7\x2a\x08\x74\x41\xf9\x5a\x19\xc0\xeb\x96\xea\x16\xd7\xc7\xff\x2d\xf2\x2c\xd4\x09\xaa\xc9\xd7\x13\x25\x38\xb9\x08\x1f\x08\x49\x26\xcf\x78\x58\x1e\x46\xad\x9b\x35\xc2\x3e\xd4\xff\xa1\x69\xa4\x87\xdc\xf2\xb4\x7e\xa5\xd3\xa9\xd2\xa0\x76\x47\x9b\x58\xee\xfd\x2a\x87\xa6\x7a\x64\x5b\x79\x56\xfd\xc1\xcc\xcb\x25\x9d\xd5\x53\xe8\xeb\x85\x0b\x15\x3a\x81\x63\xa2\xf6\x12\x43\xc7\x66\x61\x58\xfe\x67\x93\x7a\xee\x03\x21\x5d\xed\x0a\x4b\x85\x73\xa9\x6f\x6b\xd3\xd4\xc9\x4f\xcd\x3b\xea\xaf\x8d\x68\x96\xa7\xd6\x7c\x1d\xd4\x14\xea\x57\xc9\xf7\x3c\x82\xf0\xe5\x46\x1d\x19\x19\x51\x25\x61\xcd\x1f\x51\xc5\x85\xa9\xf5\x7a\x01\x13\x22\xe7\xca\x35\x87\x9f\x82\x1f\x25\x21\x26\xde\x5c\x92\x28\x4b\xed\x15\xf3\x38\xcf\xa8\x37\xb8\xa9\x6b\x52\xb1\x29\xa8\xfe\xfc\xd8\xb3\xb2\x96\x9a\xcf\xa3\x59\x02\x6c\xd5\xe6\xc1\x49\xda\x99\xf2\xff\x7a\x56\xd2\x4f\x95\x98\xb6\x5f\x47\x6d\x2a\xb4\x6d\xa2\x04\xf8\x8a\xe4\x6b\x9a\x1c\x86\x04\xe7\xca\x22\x4c\x8c\xb9\xf6\xf9\x63\x6a\xff\x98\x14\xde\xf1\x9e\xa9\xa6\xe2\x59\x6a\xe3\x40\xfd\xd8\xe4\xeb\xd2\xef\x35\xab\xe3\x8a\xfc\xb9\xca\x77\xa3\x5b\x69\x1a\x65\x1f\x07\xc6\xd2\x8d\x4a\x36\x74\x5b\xc6\x95\x16\x6e\x6c\x8d\x08\x00\x79\x37\xea\x3e\x38\x70\x04\x50\xc5\x26\x93\x43\x9c\x1f\x05\xc3\xfb\xf5\x98\xfa\xbc\xef\xcd\x55\xc3\x0f\x48\x99\x95\x7b\x07\xd4\x48\xb5\x22\xe3\x1e\x32\x69\x8e\xb1\xd0\x31\x44\x56\xc8\x7e\xd8\xb2\x42\x16\x61\xdb\x1a\x3e\x50\x94\x22\x5b\x6b\x6e\x52\x2e\xfc\x3f\x04\xc0\x07\x20\x54\x0f\x03\x00\xf0\xf6\xfe\xda\xbb\x8c\x54\x32\xda\xa4\x34\x48\xa8\x94\x06\x4a\x44\x92\x42\x1a\xf6\xba\xbb\xb7\xdf\xdd\xbd\xdb\x7b\xbb\xe5\x38\x9c\xb3\xb7\xec\x2d\x92\x96\xa6\x96\xf6\xfc\x37\xb4\xd7\xf7\x3b\x98\xab\x8c\x00\xf5\x1e\x39\x12\x13\x44\x5f\x17\xc7\xbf\x08\x33\xad\x93\x59\x62\x44\x97\x6d\x5d\x21\x06\xa7\x28\xcb\x4b\xee\x83\xa3\x78\x97\x0a\x37\x01\x7f\xf0\x54\x53\x0a\xb8\x24\x4d\x6b\xd4\x83\x91\x67\xcf\x64\xd6\x83\x75\x61\x09\x9a\x7c\x68\xcd\xc1\x14\xa5\x07\x54\xe7\x41\x91\x88\xe1\x80\x75\xc1\xfc\x5a\x64\x94\x75\x22\x8b\x8b\x74\x66\x65\x55\xec\x86\x7b\x94\x1e\x25\x12\x98\xc5\x3b\x5e\xf0\x09\x0e\xc6\x97\x98\xd6\xc0\x87\xd2\x82\x8d\x61\x70\xd4\xd9\x95\x99\x10\x4c\x0f\xdb\xaa\x49\x80\x9b\x0f\xee\x54\x4e\x47\xc6\x78\x1c\x92\x9c\x45\x0e\xac\xdb\xc5\x97\x23\xc5\xd6\x64\x56\x3c\x6a\x91\x35\xb5\x5c\x4a\xbb\xae\x30\x16\xbf\xa6\xad\xe6\x3e\x2b\x38\x40\x65\x61\x8a\x3c\x19\x75\x42\xea\xe5\xec\x4b\xb8\xe1\x4c\x99\xfe\x3f\x3c\xf8\xd8\x1d\xf5\x33\x7c\xe9\x81\x8f\x0a\x1e\x76\xc7\x63\x8e\xf8\x33\xc6\x5d\xb7\x9e\xef\x80\x1d\xb1\xce\x62\x8d\xc4\xe6\x65\x7e\x29\x9f\xc4\x99\x26\xef\x2f\x3e\xc0\x9e\xc4\x9d\x65\x2e\x64\xfe\x44\xef\xe4\xfe\x64\x8e\x4f\xb5\xcd\x76\x61\x38\x9c\x59\xa8\x0f\x27\x62\x8f\x05\xa9\xc3\xe8\xf5\x07\xc4\xf2\xbf\xb4\x97\xdb\x1f\x8b\x43\x68\xe3\xd7\x6d\xe0\x09\xa9\xab\xac\x9f\x30\x23\xf1\x6d\x99\x33\xcb\x7c\x45\x7a\xd9\xa3\x22\xb3\x70\x37\x67\x8b\x79\x2e\xbf\x0b\x9d\x95\x1b\xc5\x3b\x9a\x92\x96\x65\xe4\xfc\x89\x01\x75\x57\xd9\xad\xa1\x37\x32\xae\xb3\x98\x07\x9c\xe5\xd1\x4c\x8b\xed\xc5\xa2\x5a\x42\xb5\xce\x93\xfb\x8c\x3e\x6e\xc9\x6a\x46\x0d\x35\x5c\xd7\x53\xaa\xd4\xb8\x4b\xf3\x0b\xbf\x67\x2c\x64\xfd\xcc\x3f\xa9\x78\x0f\x3f\xcb\x31\xcb\x1a\x92\x4f\x19\x1e\x4b\x84\xa7\x99\xba\xc9\x22\x38\x74\x52\xc6\x14\xc1\xf1\xfd\x5a\x99\x96\xfb\x73\x7b\x90\xf0\x03\x3b\x76\xdd\x76\xee\x4c\x46\xcf\x12\x2e\x31\x48\x1f\xa3\x0d\x2e\x75\xcd\xe3\x49\x9c\x0b\x19\x46\x39\xd3\x6c\x7a\x6f\x68\x82\x72\x73\x56\xe9\x6a\x92\xb6\x1b\x8e\xaa\x73\xa3\x31\x2d\xa2\x34\x86\xac\x54\x41\x32\x6c\xdf\x07\xd9\x54\xf1\x78\xf7\x57\xc2\x30\xbe\xdf\x3a\x5b\x4e\x2a\x9b\xbc\xe4\x1a\xb1\x81\x48\x50\x37\x95\x2e\x28\xef\x17\xf5\x17\x86\x95\x04\x32\xf6\x98\x0a\x0b\x2e\x80\xfe\xc6\x3b\x79\xf7\x12\x7e\x67\x7e\xce\x7e\x1c\x75\x5c\x3b\x55\xff\xf0\xa8\xb3\x6a\xa4\x3a\x67\x9f\xb3\x54\xac\xf8\x9f\x7b\xb2\xe0\xb9\x78\xd9\xda\xdf\xec\x7f\xbc\xd1\x4b\xfe\xd1\x1b\x19\x7a\xf5\xae\xd2\x49\xb5\x47\x44\x3b\x0a\x0f\x54\xa6\x13\x39\x26\x49\x69\x1c\x50\x61\xac\x2a\x5c\x95\x10\x9d\xd9\x91\xd7\x11\x79\x4f\x73\x3b\x7b\x77\x70\x87\xb2\x43\xc7\xf4\x1d\x92\x06\xaa\x4e\xb9\x7b\x0a\x4c\x92\xa1\xb5\x1f\xd8\xcd\xfc\x45\x36\x8b\xe9\x08\x73\x6a\xc6\x93\x92\x1f\x8d\xcb\x85\xdd\x85\x1b\x6b\x3f\x12\x0b\x4c\x29\x95\x2c\x60\xb5\x91\x55\x32\x1c\xff\x36\x93\x53\xb0\x32\x32\x5e\x23\xcb\xdd\x11\x1c\xa7\x24\x1b\xc6\xfb\xe6\x4a\x27\xaa\x4f\xb8\xdb\x0b\x42\x64\x7e\x6b\xbf\xb3\x13\xf9\x1f\x6c\xf6\xd0\xd7\x30\x3d\x84\xd3\x5b\x73\x29\xb5\xc4\x60\xc3\x7f\x94\x5e\xc8\xaa\xd6\x9f\x72\x23\xe9\x5f\x45\x0e\x30\x3d\x86\x55\x7c\x1d\x20\x85\x35\xe5\x0f\x81\xa3\x03\x22\x8d\x79\x60\xc5\xae\x65\xba\x3f\x10\x67\xb3\x9f\x6a\x2c\x9c\xbe\xb2\x42\xac\x45\x4e\x59\xaa\x38\x5d\x68\xb8\xe0\x63\xab\x13\xb4\x9c\xc8\x6b\x90\x43\x23\xc1\xfb\xb5\x13\xc0\xdb\x49\x3d\x15\xe1\xe0\xf3\x98\x13\xc5\x22\x68\x51\x98\x22\x3f\x07\x4a\x08\xf0\x34\x26\x42\xaf\x77\xcd\xd4\xdd\x80\xd1\xcd\x1b\x95\x2f\x10\xeb\x95\x66\x31\x81\x34\x5b\xea\x39\xb5\x68\x9c\xa0\xa7\xa5\x07\xa9\x20\x12\x1b\xb6\x20\xc7\x40\x5d\x4d\x15\x32\x26\x49\x5c\x31\x03\x7e\x12\xb3\xa1\x78\x37\xfc\x32\x2c\x21\x3f\x0c\x99\x14\x60\x63\x5c\x83\xec\xdb\xf9\x4d\xa7\x46\x74\x9b\x6d\x94\xd5\xc8\xf7\x95\x46\xf1\x31\xd4\xcf\xb2\x88\x23\x41\xcb\x05\xf3\x9b\xff\xd0\xde\xd2\x3f\xd4\x93\x69\x3b\xc1\x1d\x35\xa3\xa8\xaa\x24\x97\xf2\x28\xea\xfc\xd3\xf7\x8a\xb2\xf1\xba\xb0\xa5\xa6\x3a\x1c\xf0\x7f\x9a\xcd\xc1\x03\x77\x5e\xd3\xcd\xc0\xed\x36\x8f\x53\xae\xc2\xbe\xad\x2c\x14\xdd\xc5\x3a\x2c\x87\x38\x73\x30\x11\x1f\x6d\x8e\x64\xb7\xd1\x53\xeb\x6e\xb3\x0a\x80\xeb\xd5\x47\x98\xc2\xc4\xeb\x65\xad\x8c\xfc\xd3\xb4\xa2\x71\xc4\xe3\x63\x37\x4d\x56\x84\xb3\xbf\x31\xeb\x0b\x5d\xbe\x33\x5b\x7b\x86\xf6\xdc\x75\x58\x81\xd2\x56\xad\xec\x10\xad\xa6\x9e\xb5\x5a\xc9\x3e\x8d\xeb\xf9\x5b\x9a\xaa\x84\x8f\xe9\x53\xeb\xd6\x0b\x82\x81\xf0\xaa\x6a\xde\xd5\xc4\xb3\x65\x4b\xb9\xc0\x69\x87\xc2\x18\xce\xf6\x63\xd4\x3c\x8c\xbd\xd0\xff\x64\x56\x10\xf3\xcf\x4e\x92\xa6\x89\xd1\xec\xfa\x5c\x7e\x91\x48\x5e\xf9\x52\x98\x48\x9f\x6d\x85\xb3\xf2\xa8\x39\xbc\xe0\xc6\x3b\xaa\x57\x34\x97\x0b\x41\x8a\xef\x14\x5a\xe5\x2d\xd9\xb7\x04\x75\xa9\x9b\xe4\x73\x74\x6c\x01\x24\xfa\x1d\xfa\x2c\x57\x2c\x9c\xed\xf7\xca\x10\xcd\x5f\xb1\xd3\x41\xdd\xcf\x9d\xe8\xda\x27\xbb\xcf\xea\x5b\x35\x43\x80\x32\x50\xab\x1f\xcc\x12\xfa\x2c\xae\xbe\xf1\x90\x71\x26\xf5\x70\x6d\x8b\x21\x98\x2c\xab\x74\xd6\xa9\xe2\x6b\x4b\x44\xea\xeb\x51\x1a\x73\xaf\x6a\x5a\xe8\x9a\x9c\xfb\xf2\xfd\x7e\x41\x99\x45\x12\xb2\x77\xbb\x7a\xbe\x30\xdc\x35\x43\x66\xc7\x9b\xbf\x6a\x09\xff\x22\xab\xcd\xfa\x08\xe3\x1b\xe1\xc3\x91\x35\xdc\x29\x1e\x81\x87\xd5\x1e\x32\x67\x92\x8a\x2a\x3a\xf3\xd6\xc7\xdd\x28\x99\x9d\x6d\x8a\x6c\x31\x6f\xc9\x9c\x11\x92\x98\xb3\x53\x93\x7c\xb0\x35\x73\xa6\xb2\xc4\x3b\x24\x03\x92\x66\xb8\x26\x48\x25\xc2\xbd\xab\x56\xf1\x37\x73\x6e\x59\xeb\x18\xf1\x0c\x2f\xce\xb8\x86\xac\x72\x1a\xf6\xa4\xd6\xa6\xf8\x3f\xd2\xb6\x0a\x45\x81\x73\xdc\xe9\xe2\x7b\x79\x7e\x91\x47\xf3\xbf\x67\x1f\x09\x59\x64\xfc\xab\xf7\x3f\x08\xeb\x3b\xd5\x8b\xbc\xd7\x64\xac\x97\x73\x5c\x4f\x4a\xf7\x88\xea\x57\x6d\xe2\x7d\xe6\x5e\xb0\xee\x64\xac\x62\xc8\xd8\x58\x43\x4c\x75\x30\x96\x52\xf3\xb6\x5c\x9e\xfe\xa0\x22\xa2\x38\x37\xee\x7f\xc5\x2a\x73\x7a\xe4\xf8\x7c\x73\xae\xdd\xd1\xdb\x46\xb3\xa1\xeb\xe0\x41\x7d\xac\xd6\xd1\x7b\xa6\xea\xa6\xd2\xde\xf5\xb4\xe4\xa3\xf8\xf9\x2a\x7f\x9e\x9a\x77\xdc\xfa\x3b\x71\x83\x91\xcd\xb4\xee\x4e\x03\x9a\xe0\xd7\x6d\x7a\xa0\x21\x55\xde\xd8\x0c\x64\x9e\xfb\x55\x5b\x09\x5c\x3c\xb9\xb4\x22\x15\xb4\x0e\x1a\x2e\x9e\x0e\xea\xf6\x1f\x36\x05\x40\xbb\x77\x3c\xcf\x9a\x06\xcf\xd9\x38\x4b\xcd\x84\x7f\x3b\x94\x4b\xa3\x90\x1b\x96\x23\xb9\xad\x68\x25\xe3\x5e\xb7\x25\x3c\x03\xee\x68\xdb\x03\xdd\x4e\x8d\x69\x8c\x87\xa4\xe7\xae\xd7\xc6\x40\xec\x93\x13\x2a\xd6\x42\x85\x41\xb7\x8a\x2e\x43\xdf\xf6\xbb\x99\xe6\xc3\x67\x76\x0c\x1a\x9e\xc2\x3f\x36\x8e\x54\x47\x23\x72\x87\x12\xa9\x0f\xba\xd4\x72\x3c\xb7\x18\xad\x63\x08\xbb\xda\x51\x1a\x9c\xd1\xfa\x01\x5d\x98\xba\xb1\x71\x21\x52\x74\x2e\xb7\x76\x16\x12\x1f\xf1\xa4\xfc\x21\x12\x11\x54\x5b\x84\x20\x94\xfd\x36\x79\x97\x90\xea\x1d\x97\x0c\x79\xe8\x38\x97\x4f\xea\xb5\x68\xb8\x43\xa1\x74\x01\x9a\x6b\x39\x87\x4b\x43\xbf\x31\xe6\x77\x7e\xa6\x27\xc3\x5b\x5a\x97\xd3\xaa\x53\xde\x37\x04\x50\x7f\x9e\x3b\x59\x13\x4c\x8d\x8d\xd0\x97\xaf\xa2\x4e\x08\x82\x0a\xfb\xf0\xb6\x7d\xc3\x79\x0b\x71\xe5\x8e\x46\xc3\x54\xfc\x8c\xcb\xe3\x0c\x15\xee\xee\xd0\x20\x61\xe1\x63\x2c\x77\x73\xfe\x60\x97\x88\x3b\x9d\x87\xd9\x5f\xe1\x91\x2d\x10\xeb\x4e\x4a\x45\x7d\x26\xb3\xe1\xdc\xea\xea\x02\x46\x7f\x44\x52\x19\x9d\x31\x3a\xe8\x70\xe1\x0a\xc2\x6f\xdf\xf5\xdc\x54\x7a\xf9\x8e\xac\xcc\xe3\xf4\xf1\x2e\x83\xaa\x47\xb4\xc3\x0e\x83\xe2\xeb\x54\xb9\xa5\x98\xb3\x13\xbf\x4a\x64\x74\x18\x84\xb5\x50\x53\x73\xbf\x60\x4b\x4a\x72\xdd\x30\xaf\xe9\xec\x70\xf5\x28\xee\xe9\x08\x8f\xd2\x87\x9c\xd5\x41\x76\x05\x10\x7b\xec\xbe\xd2\x9c\x3e\xe6\xab\x1d\x6c\x7d\x3e\xa3\xd6\xe5\xbe\x6a\x31\x01\x38\x8e\x15\xff\x8f\xbe\xd2\xf2\x2d\x1b\xa0\xf6\xd1\x5f\xb6\xe7\xaa\x42\xa0\x19\x4d\xb7\x14\xd1\xc9\x7d\x17\x7e\xc8\xce\x9d\x0d\xac\x1a\x29\x89\x3d\x51\x52\x72\x5b\x84\x1f\x29\x33\xa7\x08\xb2\xf6\x1d\x33\xb6\xf0\xda\x76\x84\xe9\x0c\x9c\x7a\x97\x47\xca\x85\x2c\xb5\xa3\xbb\x68\x32\x23\xde\xea\x34\x2b\x95\xbe\x8c\xee\xd5\xf6\x23\x6b\x08\x8c\x68\xb2\xc8\x5c\x9f\x3c\xfd\xc2\x7a\x2d\x70\x26\xb3\xd2\x25\xa3\xe3\xc4\xa4\x92\x09\xca\xf9\x47\x96\xe7\x1b\x64\x67\x7c\x3f\x65\xbf\x13\x97\xec\x58\xa8\xbd\x2e\xb8\xe0\xd2\xab\xf0\xe3\x6a\x1c\xc3\x84\x9e\x2c\xd0\xaa\x97\x59\x4e\x78\xd0\xe4\x6d\xa1\x85\x73\x80\xb2\x46\xae\xa9\x23\x29\xb2\x36\x27\x27\x2a\xe6\x5b\x85\xca\x30\x1c\x7e\xb2\x38\x54\x07\x05\xaa\x4d\x9f\xd4\x63\x7d\x79\xd9\x5b\x14\x71\x1e\xf7\xb4\xcb\x24\x7c\x97\x4e\xb9\x59\x80\x3a\xd2\x05\x39\x9c\x20\x6b\x6b\xa6\x0d\x63\x21\xcd\xb1\xcd\xaa\xd4\x13\xd8\xdb\xe8\x53\x68\x4e\x9a\x57\x1b\x95\x3f\x39\x26\xb7\xc2\x2f\x67\x67\xf8\xbc\xe2\x49\x86\x84\xc0\xe3\x26\xad\x56\xed\x1b\x95\xf5\x5c\xa5\xf5\xe8\xd4\x5c\x92\xed\x75\xb9\x2c\x0f\x16\xf6\x3a\xea\x04\xc1\x5c\x2b\x6b\x1f\xc6\x3d\x46\x30\xb5\xb3\xf5\x41\x45\x07\xe5\x75\xe3\xa8\x92\xef\x89\x97\x6a\xad\x0a\xed\x63\x22\x2a\x46\x9a\x16\x1d\xbf\x55\x54\x92\xfd\x23\x70\xad\xc9\x5d\x7f\xd9\xd7\x27\x0b\x57\x27\x79\xd4\x6a\x4e\xca\x2b\x5d\x1e\xca\x7e\x8a\xfa\x1d\x5b\xf9\x7f\xb8\x66\x6b\x88\x81\x30\x8e\x61\x3b\xfa\x0e\x43\x73\x48\xfe\xdd\x21\xe0\xcb\xf8\xd0\xb6\x03\xa0\x22\xda\xa2\xe1\x1f\xa8\x3b\xd6\x58\x13\x0b\xde\x39\x34\xb1\xac\x00\xda\xb1\x67\x5c\x01\x06\xdd\x75\xf7\x37\x96\xc2\x22\xe7\x10\x6d\x2d\x72\xd6\x7e\x89\xec\x0d\xba\xc4\xa2\x96\xc7\x43\x87\x30\xc7\x4b\xdf\x91\xbd\xa4\x9d\xdd\x23\xe1\x77\xf1\xee\xad\xdf\x60\x38\x7a\x74\x43\x01\x7c\xf0\x58\x6e\x8d\x35\x7c\x28\xe0\x53\x59\x04\xcc\xf2\xf9\x58\xb0\x0d\x7e\xed\xbe\xd3\x48\x47\x4e\x39\xef\xd5\x0a\x90\x2f\xf6\xd6\xb2\x2e\x34\xca\xe2\x02\x2f\x1d\x7d\x8c\x7e\xbd\x94\x85\x65\x93\x3c\xbb\x14\xd8\xb4\x78\xcb\x56\x05\xca\x8a\x7a\xd6\xb0\x1f\x5d\x7e\x8c\x5f\xdd\x8d\xfc\x08\x18\x2c\x9b\x8c\xfc\xf1\xb9\x6f\x7e\x8d\xda\xbb\x6f\x33\xfa\xa0\x51\xce\xdb\xb5\x01\x68\xb9\xfd\x7c\x99\x14\x7d\x6a\xd1\xc1\xf3\xc1\x16\xa0\x65\xbd\x17\x89\x23\xe9\xdf\x3a\x7b\xe9\x29\x71\x8f\x5b\x1a\x69\xaa\xa8\xa2\x7a\x94\x3a\x7c\x2c\xac\x7a\x2c\x95\x12\x50\x52\xba\x8b\xba\xd4\xa7\xce\x6c\x8b\xbf\x71\x5f\x97\x9d\x8f\x97\x3b\x6f\xd4\x94\xe0\xa8\xbd\xbd\xf4\x27\xee\x62\x31\xcc\xad\xc2\x5e\xa3\x5d\xbd\xd6\x1c\x7e\xfa\xf7\xce\xf9\xec\x90\xb8\x81\x96\x11\x2c\xa7\xa8\xac\xba\x8b\xcc\x35\xc7\x0e\x57\xf9\x33\x0e\x05\xe4\x94\x48\x08\xbe\x4f\x45\x7e\x32\xfd\x99\xfb\xaa\xac\x77\xf4\x0d\xce\x5b\xd5\xaf\x68\x54\xfb\x7d\x52\x17\x6a\x9d\xe5\x66\xce\x30\xfe\x06\x15\xf4\x44\x8b\x46\xa5\xdf\xee\x08\x13\x80\x71\x1d\xcd\x5e\xbc\x7f\x51\xe2\xba\xe9\x5c\xd9\x31\x9f\x4a\x2d\xc7\x2f\x40\x55\x7c\x9f\xbd\xc0\xa7\xd0\x54\xcf\x1c\x76\x5f\x99\x65\xcb\x68\x77\xde\xa9\x9e\x4b\xb0\xed\x49\x92\x08\xfa\x36\x4b\x2e\xc7\x9a\x3a\x84\x8e\xbf\xb8\x4b\xb5\x2f\x3d\xb8\x7d\x87\xc2\x3b\xee\x40\x93\xad\x6c\x7b\xd4\x92\xda\xf7\x92\x4d\xa1\x0f\x2b\xd2\x44\xbe\x01\x3e\x45\x15\x82\x48\x1f\x72\x9e\x98\x47\x77\x5f\x64\x18\xc3\x61\x39\x87\xa9\xfe\xb0\xc8\xf6\x2d\xe2\xfd\x8c\x08\xab\x29\xec\xe9\x74\x57\x24\xad\x3b\x26\x6b\x5b\x5a\x6f\xdb\x31\x3d\x16\xdb\xd2\xe8\xaa\xe9\x8e\x54\xd6\xfc\xcd\x98\x11\x1a\x5e\x4e\x53\x9c\xf5\x1f\x2a\x6c\x91\xb6\xf9\xac\xcf\xd5\x8b\xe7\xba\x0d\x67\x2e\x14\x6c\x74\x8e\x50\x59\x70\x5d\xed\x3f\x8b\x92\x59\x1e\x56\xc9\xac\x2d\x84\x0b\x62\xdb\x95\x6d\x6e\x49\x8b\x69\x35\xe6\xc5\xc4\x1e\x6a\x20\x8c\x53\x22\x6d\x6b\xb6\x67\x1a\x42\xde\x96\xd5\x6a\xdd\xfc\x99\x05\x5f\x54\xf7\x76\xff\xce\xb9\x29\x3f\xe5\xf6\x44\x7f\x40\x5c\xe8\x0c\x2a\x23\xf9\xd7\x1c\x6c\x85\x3d\xec\x67\x56\xed\x4c\x03\xf1\x14\x1e\xec\x0a\x2d\xd6\xa4\xcd\x6a\x3d\x68\xfe\x1a\xbb\xb8\xc1\x39\xef\xd8\xa9\xf7\xd5\xcf\xb2\x0d\x21\x55\x65\x47\xf4\x2f\xfc\x23\x0a\xc4\x9a\xd5\xbb\x9f\xe7\x24\x2b\x83\xdc\x1e\xe8\x5e\x48\x9d\x9d\x85\xca\xc9\x82\x2f\x0e\x3b\x85\xe9\x1c\xa1\xd5\x07\x66\x10\x63\x0e\x2c\xed\x9a\x5e\x76\x25\xb5\xa5\xe5\x6b\xd1\xab\xf3\xef\xea\xef\x9a\x97\x9e\x6a\xad\xc6\x73\x57\x84\x70\x4a\xdf\x66\x2d\xf1\xf7\x29\xb0\xd5\x59\xee\x7e\x94\x33\x5e\xf5\xcd\xed\xa9\x2e\x56\x76\xc6\xb9\x42\x91\x2d\xbc\xe3\x90\x28\x9c\xcf\x9d\x68\x6d\xc7\xf8\xc7\x98\xff\x2b\x12\x8a\x03\x83\xdf\x30\x21\x2a\xc8\xbc\x77\x18\x52\x83\xed\x17\x9f\x40\x4d\xe0\xb7\xea\xbb\x50\x05\x58\x9a\x1d\x0e\x4f\x80\x24\x82\x45\xf0\x0a\xe8\x39\x49\x03\xef\x87\xd7\x47\x4c\x81\x01\x98\xba\xeb\x11\x5c\x04\x5f\x75\xbc\x0b\x3f\x41\x96\xfc\xa4\x83\xd7\xd0\xf0\xd7\x26\xf0\x23\xba\xe0\x6e\x22\x34\x1b\x79\x75\x71\x21\xe4\x86\x34\x57\xcf\x81\xbc\x91\xd3\x59\xb5\x50\x3e\xd2\xc1\x4f\x86\x6e\x22\x57\x48\x93\xe1\xe9\x48\xef\x09\x08\xf6\x43\xda\x76\xa5\xc2\x12\xc4\xe4\x28\x86\x07\x11\xfe\x0f\x06\xe8\x47\x0b\x7c\x55\x0e\x26\x50\xdb\xee\xb0\x41\x0e\xd5\xb9\xdb\x17\x6c\xc6\x85\x55\x9e\xe0\x3b\x7c\x49\xd6\x1c\xc8\x0b\x9f\xc9\xbb\x0a\x91\xb0\x6b\xe9\x2c\xa8\x03\xc3\xc3\x9f\xc1\x73\xb0\x65\xbb\xe6\xc0\x67\xd0\x1c\xc7\x43\x70\x03\x6a\xf1\x8d\x06\x90\xb8\xb1\x2f\x6a\x00\x1d\x67\xc7\xad\x02\xa0\x83\x3d\xaa\x53\x00\x7c\x67\xde\xab\x28\x04\x37\x32\xba\x32\xaf\x82\x09\xc4\x47\xae\x16\xac\x22\x2c\xd2\x8c\x90\x05\xdd\x21\x7c\x36\xc4\xa4\xcd\xdf\x99\x02\x0d\xe3\xbd\x8e\x33\xe1\x30\x2c\xf2\x4b\x0b\x25\x55\xe6\xfb\x7c\x32\xc5\x2c\x89\x19\x18\xa0\x0c\x89\x18\xed\xfd\xc0\x7c\x41\x5d\xd9\x5f\xe0\x28\x7f\x9c\x7e\x2f\xa0\xe3\x92\x38\x7b\x80\xcf\xec\x67\xa9\x19\xe0\x19\xd6\xfa\xe3\x3e\xe0\x6b\xc6\x21\xef\x2f\x50\x14\xdd\xd6\xe1\x07\xf4\x08\xbf\xf2\xb9\x89\x6c\xd6\xf5\x3d\x1d\x49\x7e\xa0\xd9\x79\x63\x04\x65\x9e\xaa\xa4\x6d\x3c\xc5\x57\xe1\x5a\xea\x47\x61\x4a\x2f\x6b\x3b\x29\xf7\xc5\x00\xeb\x37\xb0\x59\x38\x3f\x45\x0e\x34\xf0\xf8\x61\x18\xb8\x8f\xdd\xef\x4d\x80\xb7\x18\x06\x87\x4f\xd0\x31\xda\x8e\x8f\x9b\x49\xe5\xc5\xf6\x8f\x0d\xa4\x17\x66\xc9\x55\x8c\xbc\x20\x6f\x6c\x73\x0e\xd9\x3f\x3b\xa9\x78\x16\x39\x43\xff\x50\xdd\x48\xfe\xac\xf1\x61\x6e\xa4\x1c\x57\x32\x93\x6d\x29\xaf\xa5\x82\x63\x69\x00\x55\xb8\xd3\xeb\x0f\x68\xcd\xa1\x39\x7c\x01\x6b\x88\xb8\xf7\x8d\xa4\xd9\x4d\xdf\x1e\xce\x26\x79\xd5\xad\xea\x5f\x41\x3a\x57\xc5\x69\x0c\x23\xe5\x95\xf6\x15\xbc\x21\x7d\x2e\xf8\xa1\x6a\x27\xfb\xe7\x8d\x22\x28\xe4\x6e\x43\x57\x62\x2d\xe5\x88\x66\x43\xe8\x39\xca\x37\xf9\x7a\xaf\x73\x80\x41\x90\xeb\xf0\x01\xdc\xcb\x34\xbd\xa5\xa4\xbf\xbf\x02\xdc\x1f\x41\x1a\xd7\x73\xa7\x6f\x14\x69\x49\xc7\xe2\xfa\xdd\xa4\xa3\x4d\x1e\xf9\x9f\x48\x59\xb5\x4e\x8a\x61\xd2\xbf\xb2\x0f\xb4\xe7\xe4\xd4\x82\x5d\x09\xb1\xe4\xb7\xd9\xff\x85\x64\x53\x60\x8d\xa3\xd7\x28\x60\xbb\xa4\xc4\xe1\x33\xf0\x8f\xad\x79\x53\x9e\xde\x75\x7b\xd1\xa0\x4d\xfa\xab\x6b\xb6\x97\x96\x93\x46\x5f\x1a\x59\x17\x47\x72\xe9\x30\xe4\xaf\x20\x01\x4d\x23\x15\x1b\x49\x03\x35\x96\xb4\x9d\xe4\xdd\x25\x2d\xf1\x4f\xc9\x65\x79\x48\xc8\x29\x8a\xab\xee\x91\xe7\x53\x60\xac\x2c\xda\x71\x0a\xd0\xc7\xf1\x78\x33\x33\x3d\xef\xc1\xfb\x7b\xc9\xe9\x1d\xb7\xc5\xbd\x58\xfa\xe0\xb5\xe9\x17\xae\x90\x26\xf4\x6e\x37\x71\x48\xbb\xda\x17\xca\x8b\x49\x8a\xfa\x6c\xea\x35\xf2\xf8\x0a\x6d\x3c\x85\x1c\x6d\x86\x42\x76\x91\x07\x0d\x93\x3c\x5f\x51\xca\xe4\x1a\xc7\xdd\x00\xc4\x39\xfb\x45\x8b\x46\x01\x8a\xe7\x5e\xa8\x03\x50\x7f\x93\x85\x7c\x04\xbe\x75\x64\x20\x97\x41\xe7\xf2\x77\x88\x0e\x74\xce\x9c\x8b\xc8\xa0\x71\xdc\x6d\x48\x1a\x94\x9a\xe6\x83\x84\x42\x0f\xc2\x37\x23\x5e\xf0\xbe\x9d\x65\xc8\x7a\xb8\xde\x31\x1c\xb1\x40\x56\x0d\xb7\x22\xed\x08\xfe\x2c\x0e\x91\x20\x3e\x03\x65\xc8\x59\x64\x79\xfb\x4d\xc4\x1f\x19\x5d\xbe\x06\x59\x03\xdf\xd3\xa7\x22\xeb\x11\x7b\x8e\x10\xb1\x40\x0e\xa5\x0e\x20\xf3\x91\x84\xe3\x79\xc8\x0c\x84\xd8\xe9\x8b\x4c\x47\x24\x8e\xf3\x90\x71\x88\xee\xf3\x15\x64\x1b\x35\xf6\x29\x86\xcc\xc0\x3f\xdd\xb8\x01\xbf\xc0\x93\xda\xc7\xc3\xf7\xb1\xd7\x65\xe7\xe0\x4b\x18\x57\x77\x19\xee\xc7\x50\xf6\x77\xb8\x05\x3b\x96\xea\x0f\x5f\xc3\xec\x8e\x6f\x82\xef\xa2\x4f\xbc\xdf\xc2\x2f\x51\x8e\xc3\x4b\xf8\x35\xea\xf8\xf1\x3d\x7c\x98\x73\x7e\xa8\x00\x5e\xcf\x3e\x71\x7d\x32\x3c\x97\xe5\xdc\x7a\x02\x9e\xc4\x5c\x5e\xf2\x1e\x9e\xc8\xb0\xd3\x52\xe1\x31\xc4\x39\xd6\x35\x78\x1a\x3d\x37\xe5\x3c\xbc\x8a\xd6\x1b\x76\x12\xf6\xa7\x5e\xf3\x8e\x84\x93\xf1\x02\x87\x3a\x98\x8f\x25\x7e\x58\x03\xc1\xd2\x89\x8f\x47\x42\xc7\xc4\x87\xaf\x7a\x43\xbb\x84\x8a\xe6\x12\x68\x2b\xff\x75\xf1\x41\x68\x1b\x6f\xbf\x66\x1e\xe4\xc9\x19\x64\x4a\xa0\x40\x76\x78\xf2\x69\x88\x60\x76\x1e\x53\x43\xcd\x8c\x09\x5e\xef\xa0\x4f\xf4\x51\x0e\x46\x78\x31\x7e\xf7\xfd\x6e\xd0\xac\x3d\xff\x70\x0a\xa8\x52\xcf\xea\x47\x40\xa1\x52\xd5\x38\x0c\x22\x72\x8f\x42\x23\x08\x4b\x3e\x66\x28\x41\xae\xa8\x99\xb1\x0f\xcc\x11\xa4\x27\xc5\x82\x8f\x79\x53\x43\x5f\x40\x36\xec\x24\x2f\x3e\x14\xce\x48\x76\x28\x84\x64\x34\xef\x37\xad\x40\x4d\x21\x65\xd0\x0c\x98\xf2\x67\xf7\x8d\x06\x32\x72\x8a\xeb\x95\x00\x27\xcb\xc3\x4c\x02\x78\xba\x2b\x4a\x35\x90\xa3\x0e\xa3\x8b\x81\x2b\x8a\x8e\xc4\x49\xe0\x34\xc9\x70\xc8\x7f\x60\x90\xe0\xa6\xd7\x3c\xd0\xc8\xd9\xe5\xd0\x09\xbe\x22\xce\xbd\xda\x06\xac\x69\xf8\x7a\x77\x19\xf0\xbf\xda\xf0\x1e\x23\xe5\x6b\xc5\xbb\x0b\x87\x28\xcf\x4a\x8e\x98\x8e\x50\x9e\x99\xf3\xe4\x79\xc0\xd8\x9c\x87\xd4\x7b\xc0\xa6\xcc\xab\xf1\x46\x80\xa2\x4e\x3c\xfa\x1a\xb8\x24\xcb\xf6\x94\x83\xcb\x04\x87\x1d\x7a\xc1\x74\xa6\xfc\xc5\x34\xca\xef\xcb\x56\xb7\xe7\x52\xfa\xbb\x1b\xbb\xc5\x94\xdc\xb6\x6d\x35\xfb\x29\xe2\x06\x5e\xee\x59\x8a\xa8\xba\x50\xfa\x94\x52\x54\xaa\xc2\x0f\x51\x86\xcc\x4b\xe3\x22\x81\x19\xd9\xe3\x8e\xda\x02\x41\x6a\x92\xe7\x2a\xa0\x55\xe2\xe9\x70\x1d\x74\x60\x03\xcf\x7d\x28\x83\x03\x95\xb7\xb6\x53\xca\xfb\x87\xbb\xea\x29\x44\xcf\xd8\x6a\x0a\x25\xb6\x6d\x20\xc7\x40\x39\xdb\x10\x21\x5d\x49\x41\xab\x4a\xb1\x4a\x4a\x79\x31\x11\xfb\x98\x72\x3b\x97\x15\xfc\x1c\x98\xa9\xb3\xf2\x9c\x0a\x30\xa5\x1f\x1c\x5e\x02\xdf\x38\x0b\x9e\x95\x51\x9a\x06\x63\x6f\xea\x29\x82\x9b\x07\xbb\x2c\x28\x61\xfd\xbf\xab\xee\x53\xdc\x2f\x1e\xcb\x99\x4e\x71\x6a\x8d\x91\xe4\x50\xbc\xea\x96\x61\x3b\x29\xb1\xe5\x87\x63\x31\x0a\x33\x1f\x0e\x6e\xa3\xd4\x64\xba\x7b\xce\x02\x9c\xe5\x36\x8e\xd6\x40\x0e\xc7\xeb\xbf\x46\x2a\x89\x52\xfd\xe8\x0e\xfe\x91\xf2\xeb\x2a\x8e\xc7\x03\x6b\x5b\x96\xe0\x93\x80\xa0\xe2\x41\xcc\x0c\x98\x34\x42\x2c\x14\x3c\xcd\x5a\x8e\xfe\x03\x3f\x27\xf7\xa2\x59\x10\x1c\x66\x83\x7a\xc3\x93\xbd\x8f\x22\x1f\x60\xa5\x43\x2d\x22\x44\x56\xbd\x7f\x86\x0f\xc2\x92\x47\x63\xf0\x13\x30\x74\xa5\x11\x7b\x0d\x9f\x6c\x0e\xc3\x44\xf0\xb6\xe2\xa5\x98\x1b\xbc\x43\xfd\x0e\xfd\x09\xcb\x98\x38\x9a\x0b\xdf\x4e\x0e\x44\x4f\x21\xd3\x8e\x35\xa0\xf3\x11\x77\xaf\x6f\xc8\x35\x24\xde\x01\x43\x40\x44\xfb\xee\x17\xbe\x13\x67\x3f\x5c\x85\xdd\xc6\xad\xfa\x9f\x60\x31\x58\x43\x93\x00\xb3\xc4\x3c\x8b\xa2\xd0\x3b\xe8\xb0\x3a\x00\x95\xa2\x4f\x18\xef\x51\x7f\xf4\x71\xd2\x2d\xd4\x0a\x6d\x3b\xe6\x89\x0c\xa1\x0a\xaf\x6c\x24\x1f\x8d\x72\x38\x8a\x44\xa0\xf6\x6f\x97\x62\x01\xec\x94\xfb\x67\xd0\xb7\x2c\xda\xe5\xb5\xa8\x88\x79\xba\xe1\x2f\xba\x9b\x11\x57\xf0\x16\x9d\x45\x30\x54\x3f\x91\xdb\xf4\x5b\x44\x17\x92\x4d\x77\x4c\x7c\x8f\xe0\xb4\xf0\xd0\x34\xe4\x24\x15\xf1\xb2\x44\xb6\xe0\x88\x83\x23\x32\x09\x3b\xfb\x3a\x06\x2d\x14\xf7\xdd\x6b\x42\x37\x89\xbc\x2f\x51\x90\xbb\x02\x53\x7d\x38\xc2\xe4\xcf\x35\x9f\x46\x0e\x70\x05\xca\x2c\x64\x31\xc7\x89\xae\x83\x3f\xb3\xae\x26\xfc\x85\xef\x33\xf7\x87\x34\xc1\x7d\x44\x81\x67\x2d\x5c\x46\xbb\xec\x60\x0b\x0b\xf0\xfe\x97\x0a\xe4\x99\x66\xd6\x9d\x27\x08\xaa\x1a\xea\xe9\x40\x5c\x15\xf8\x85\x42\xf8\x91\x6c\x97\xa9\x17\xd6\x48\x66\x2a\xd6\xc1\x09\xc2\x5f\xb4\x13\xb0\x1f\xff\x5a\xc2\x44\x78\x1b\x17\x0b\x99\x0d\xaf\x67\x8f\xf7\x3c\x01\x2f\x63\x6c\x74\x70\x82\x27\xd3\x36\x3e\x5f\x00\x3f\x31\x5f\xbe\x05\xc2\xb2\x3c\x71\xf7\x1e\x78\x9f\x31\xb0\x26\x18\xfa\x64\x98\x94\x6b\x80\xca\xb4\xd5\xb2\xcd\x10\x2f\x23\x06\x2f\x84\x28\xf2\x2f\x71\xc5\x50\xac\x64\xdf\xd1\x15\xd0\x59\xc1\xd1\x1d\x5f\xa0\x33\xec\x3f\x0e\x41\x50\x28\x11\xfc\x84\x09\x27\xd5\x7d\xba\xf1\x07\x1e\x5d\x2d\xe8\x78\x05\x95\x94\xfb\x54\xcd\x82\x02\x8a\xee\x1a\xe9\xd0\xd4\xfc\x83\x12\x5f\xf0\xa3\xb1\x0c\xfd\x0b\x3e\xd7\x5f\x8f\x3d\x08\x3e\xc8\xc8\x0a\x76\x04\x1f\xcb\x26\xed\x20\x83\xaf\xf8\xc3\x0e\x51\xe0\x0b\x66\xea\xe3\x58\xd8\xa5\xb7\xee\xda\x57\xa8\xa3\x53\xd5\xf6\x1a\x0a\x6b\x09\xac\x58\x04\xfe\xa9\xbb\x99\x95\x03\xd6\x56\x59\x8a\xa4\xa0\xbc\xc4\x15\x81\x41\x96\x69\xf8\xfc\x02\x30\x39\x6b\x66\x50\x24\x18\x9f\x51\xbf\x63\x06\xc8\x10\x5f\x74\x88\x05\x65\xec\x7d\x8f\xf2\xe1\xc5\xd7\x77\x5f\x73\x80\xf2\xfb\x2e\xb4\x2d\x80\xb6\x75\xfd\x2b\xdf\x0b\xde\x6c\x1d\x65\x78\x04\x0a\xea\x2e\x08\x1f\x82\x31\x95\xae\xf0\x13\x30\xb8\xc8\xf3\x9c\x12\xdc\x9a\xc3\x0c\xb2\x06\x57\x6b\x03\x3c\x3e\x82\x07\xa4\xe7\x1d\x70\x30\x82\xfd\xf2\x91\x25\x3c\xf2\xce\xd0\x55\x19\xc4\xb8\xfe\xbb\x15\x84\x66\xf5\xdd\x2f\x2b\x02\xf3\xbb\x12\x0c\xfb\xc0\xe0\xe6\x02\x61\x08\xe8\x50\xab\x82\x53\xc0\x59\x65\x23\xce\xed\x00\xde\x99\x52\x8e\xfc\x06\x06\xf4\x31\x1e\x5f\x80\x9f\x32\xa5\xc3\x05\x70\x1a\x67\xf6\x93\x61\x56\x2d\x79\xef\xc0\x00\xb3\x89\x5c\xd0\xc5\x64\xe4\x91\xbf\x57\xdf\x27\xee\x51\x3c\x73\x23\x08\x4b\x4a\xa6\xcc\x82\xee\x0b\x78\xe1\x62\x1a\x05\xf8\x1d\x47\xa6\x66\x82\x75\xc1\xcf\xf1\x26\x88\xb4\x63\x1f\xf6\x08\xf6\xb0\xb7\x41\x3f\x21\xff\x7b\xb2\x84\xb5\x0a\xfc\x35\x30\x91\xb9\x05\x1a\xd7\xd9\xce\x58\x0f\xfd\xaf\x7a\x09\x11\x0b\x4d\xcb\x29\xa5\xd7\x41\x36\x52\x90\xf6\x0e\x42\xf1\xb1\xb4\x35\xd0\x50\xec\x5f\x6a\x24\xec\x15\x1c\x8f\xcb\x60\x83\xc7\x37\xac\x03\x99\x62\xf7\x1d\x7d\x86\xa4\x0e\xed\x62\x66\xa3\x57\x6e\x6c\x62\xd4\xa2\x44\xc7\x4f\xa2\x1e\xf5\xa9\x3a\x41\x8c\x40\x47\x1a\x7f\xd2\x0f\x23\x97\x25\x03\x34\x39\x72\x1b\x4b\xa3\x3e\x40\xfe\x8b\xc5\xa8\x2b\x90\xaf\xc1\x63\xf1\x33\xc8\x67\x8f\x62\x2c\x1b\xf9\x65\x77\x1b\xed\x43\xfe\x3e\x6a\x63\x08\x98\xe5\xd7\x5a\x89\x0b\x8c\xfb\xed\x7c\x7a\x0f\xf1\xa5\x72\x0a\xdd\x92\xb0\xca\x6e\xa5\x01\xf4\x63\xe2\x46\xea\x15\x5a\x0f\x8a\x51\xed\x68\x5b\xcf\x6b\x70\x09\x95\x13\xb4\x1b\x1b\xc6\x2f\x7b\xb8\x61\xee\xf8\x64\xbb\x3a\x34\x1d\x73\x7b\xf0\x85\x78\x2f\xcc\xbc\xea\x4c\x8c\x14\xec\x6b\x7d\x40\xb7\xe5\x3d\x2f\x8f\xa7\xa5\x71\x29\x59\x1e\xd4\x1b\x9c\x25\xa2\x13\x54\x27\xd6\x1b\xc4\x1f\x57\x30\x4b\xcf\x55\x61\xbf\x19\x21\x47\xf4\xd8\x31\xfa\xf3\xed\x6f\xd1\x32\xda\x41\xbb\x6e\xe4\x2b\x9e\x71\xdf\x8e\xf0\x52\xa5\xf5\xef\xa4\xc7\x2a\x28\x2d\x8e\x34\x85\x2c\xaa\xf4\x2a\x75\x48\x12\x9a\xd9\x40\xdd\x2c\x0a\x15\x8e\xc2\x75\x82\x14\x78\x29\xfe\x3f\x1e\x7c\xb6\x0f\x8b\xe1\x9c\x39\x32\x11\xed\x64\x39\x6e\xd7\xa2\xcb\x08\x93\xdd\x7d\xe4\x3c\xf5\xdf\xdd\x9b\xf4\xe0\x3c\x49\xdf\x7c\x1a\x61\x34\x36\x76\x51\x2f\x18\x4a\x8a\xd9\xd4\xd1\xba\x4c\x9d\x0e\x0f\x51\x73\xf9\x8b\xb0\x4e\x25\x0a\xa2\xd8\x56\x59\xc0\x19\x3e\x9a\x21\xfa\x1e\xb8\x06\x1d\xc1\x0f\xd8\xbe\x0b\x89\x62\x1f\xb4\x9f\x05\x57\x12\x33\x6e\xbb\xd1\xde\x56\xff\xee\x81\x68\xd3\xca\x3f\xd5\xa7\x51\x1d\x4a\x26\x16\x06\xe0\xb1\xe6\x21\x0d\x0b\x6b\xcd\xcd\xe2\xba\x60\x6b\xb3\x8e\x50\xee\xa3\xf9\xda\xfe\x18\x0f\x74\xa6\xf2\xef\x61\x6f\x84\x24\xb9\xe8\xde\x0f\x3f\xe3\x2f\xb6\xb7\x81\x5d\x99\x73\x6f\x6e\xa4\x65\x77\x79\x77\xab\xa8\xf5\xad\xc8\x85\x38\xfc\x6e\x83\xc2\x1c\x8d\x2f\xa8\x89\xcc\x68\xc7\x62\xca\xfe\xb1\x65\xe8\x95\xc2\x54\x72\x02\xba\x33\x57\x78\xda\x02\xc9\xcb\x5c\x7e\x28\x0d\x99\xa9\xda\xe8\x1e\x0d\xd3\x44\xed\xf6\xab\xa0\x21\xd6\xed\x81\x20\x9a\xe2\x32\xbb\xab\x9d\x6a\xbc\x18\x51\x2b\xc1\x2f\xb4\x4f\xc8\x97\x63\x9f\x1b\x83\x32\xc6\x63\x6e\x35\xd1\xac\x97\xa8\xbe\xcc\x9b\x74\x0f\x9d\x6e\xae\x8c\xce\x46\xe2\xb3\xe1\x43\x2b\xe0\x9b\xea\x22\xf7\x9d\xb0\xaf\xe4\x88\xbd\x37\x94\xcf\x8e\xbf\x91\x4f\x63\xdf\x78\xd5\x35\x8f\xca\xee\x8f\xab\x79\x8d\x8b\x2e\x56\x9b\x7e\x60\xed\x6d\x6a\x55\x1a\x36\xbe\x61\x35\x2b\x1a\x3d\x5e\x05\x93\xe2\x90\xee\xe2\x83\xd1\x87\x10\x9b\xdc\x80\x43\x23\x60\x4c\x5b\xea\xbe\x13\xfa\x21\x05\xec\xd3\xa1\x23\x6c\xc3\xad\x54\x61\x21\x69\x57\xcf\x3e\xc1\x2c\x92\xb9\x9e\xe0\x89\xc9\xa3\x0b\xeb\xb9\x3e\xe4\x13\x5a\x5b\xce\x38\xf2\x20\xf7\x15\xab\x86\xc2\x06\x48\xcc\x48\xe0\x50\x0c\xc6\xf8\x1f\x68\x71\x78\x29\x3d\x1b\xfc\xcf\xed\x19\xcd\x09\x7a\xb9\xc2\x1f\xcf\x83\xdf\xde\x6c\x13\xce\x00\x5a\x2e\xf2\xf9\x32\xe0\x7e\x5d\x3b\x6f\x15\xf0\xb1\x70\x12\xe7\x35\x38\x55\x43\x63\x97\x82\x5e\xdc\x20\x56\x2c\x98\x4f\xf9\xce\xb4\x87\xac\x63\x26\x13\x43\x90\xf4\x50\x29\x9d\x03\x4f\x75\x93\xd1\x6c\xe1\xdc\x15\x4b\xf1\x5c\x64\xf7\xcd\x89\x02\x32\x12\xde\xdd\xc3\x5f\x84\x6c\xb8\xf0\x9b\xdb\x89\x8c\x2b\x38\xc2\x61\xc1\xf7\xd5\x4f\xd9\x41\x70\x2f\xa7\x9d\x65\x09\xbf\xa0\xa4\x31\x86\x90\xd9\xa7\x33\x09\x23\xb2\xe1\xd0\x61\xfa\x31\x24\xc0\xed\x38\xf5\x1f\xc2\x59\x31\x03\x67\x21\x5d\x37\x62\xf9\x6c\xa2\xa7\x2b\x80\xe7\x4e\xcc\xad\x35\x72\x7e\xd1\x8f\x9a\xc7\xb3\x7b\x68\x05\x19\x26\x56\x16\x6d\x26\x3b\x8f\x99\x44\xd5\x93\x31\xc6\x0e\xea\xc6\xe8\x4e\x62\x31\x5e\x10\x60\xa6\xbd\xc0\xe7\xbb\x8d\xa5\xca\x31\xe1\x8a\x49\xf8\x2a\xf4\xcf\xb5\xeb\xbc\x1e\x3e\xb5\xe3\x2a\x17\xe7\x1d\xa9\x59\xc6\xd9\xcb\x9d\x67\xca\x60\x2f\x66\xdf\x56\x1d\x61\x7e\x67\x99\x58\xa9\x8c\x1b\x4c\x2d\x29\x9d\x28\x63\x88\xa2\x3e\xd2\x09\xe2\x44\x80\x15\xed\x10\xdd\x72\x5b\x17\x75\x32\xb5\x7d\x85\x1d\x96\x8d\x07\x5c\xdd\xc5\x5b\xad\x98\xda\xee\xc2\x79\x29\x73\xa9\xd2\xb1\x8b\x25\xc1\x79\x76\x2c\x48\x04\x29\xfe\x32\x83\x05\x45\xcc\xed\x0c\x77\xde\xef\xf4\x58\x62\x39\xd7\x2d\x6a\x3e\x6d\x98\xed\xe7\xaf\xa0\x36\x31\x7d\xb7\xb1\x71\x32\x31\x75\x85\x2f\x36\x97\x5a\x71\xf9\x3f\x6e\x80\x31\xbd\xe5\x13\x67\x81\xa1\xbf\x22\x8c\xf5\x54\xbf\x28\x67\x22\xb3\x58\xb3\x57\x3e\x89\x41\xa8\x52\x09\x90\x48\x90\x17\xa6\xbe\xa1\x1f\x93\xb4\x9f\xfa\x46\x5b\x27\x54\xfb\x5d\xa4\x8e\xe0\xb9\x6f\x5b\x8b\xb5\xb2\x44\x2b\xd2\xd1\xe3\xf4\xca\x4b\x06\xce\xef\x8a\xd5\x4d\x39\xec\xfc\x12\x56\x99\x3d\xeb\x54\xc1\xed\xac\xff\x98\x76\xa6\x91\xd2\xb9\xc4\x4f\xe3\x0c\x5a\x35\xfd\x69\xe6\xec\x94\x08\xda\x75\xf5\xa3\x93\x17\xa9\x66\x45\xd0\xc1\x0f\x38\x45\x4c\xda\xda\x89\xb9\xf1\x9c\x57\xb0\x90\x7b\x8c\xcc\x1e\x9c\x73\xa7\xb5\xb9\xc1\xc8\x26\x35\x1e\x29\xb1\x63\xd9\xd5\x5e\x30\x8c\x61\x3c\xaf\x78\x24\xde\x4b\x94\x16\xdf\xa0\xce\xa2\x0b\xf2\x73\x92\x86\x69\x69\x46\x9b\x08\x3d\x75\xaf\x6e\xe1\xc1\x85\xf8\x42\x85\x7a\x6b\x28\x7a\x5f\x68\x5e\x21\x43\x00\xd6\xbe\x8b\xf9\x9c\xd6\x8b\x35\xf5\x9d\xec\xe8\xf6\xa1\xe2\x3d\xac\x99\x4d\x77\x32\xd7\x32\x7a\x2e\x10\x22\x3a\xc1\xaf\xf8\x82\x87\xd3\xa3\x8a\x9d\x92\x82\x68\xbb\x4c\x93\x22\x96\x51\xe7\x19\x76\x1e\xe8\xc0\x9e\xaa\x3e\x6f\xdd\x8c\x1a\xc5\x8e\x2b\x8a\x91\x1d\xac\x27\xdd\x7f\x38\x79\xfd\xd7\xeb\x67\xb3\xf7\xf5\xe4\x16\x29\x98\x5f\x3a\xb6\xeb\x09\x46\x76\x13\x4d\xf8\x9a\x08\xaf\x05\xb0\x1b\xf4\x55\xe5\x4e\x89\x4f\x69\x63\x0a\x12\x4f\xf4\xe1\xfd\xd9\x5f\x0f\xc8\x31\x99\xfa\xd1\x56\x17\x34\x40\xb2\x6b\xc5\x63\xf8\x3d\x7b\x51\xcf\x02\xe5\xfc\xf4\xf3\x0d\xb9\xf2\x45\xe9\x43\x25\xf7\xa5\x56\xa4\x03\x86\xaf\xe2\x3d\xa4\x76\x49\xb0\x90\x42\xf6\xa5\xad\xe2\xeb\x29\x13\x93\xdf\x71\x1b\x28\xf7\x4e\xae\x66\x5f\x07\x0a\x0e\x8e\x61\x5e\x07\x19\x5b\x7c\x88\x1a\xc8\xb4\x3c\x88\x96\x06\x5f\xbb\x78\x40\x61\xa4\x34\xd6\xdf\x97\xd5\x51\x1e\x95\x58\x4b\xba\x81\x99\x86\x83\xa2\x9f\x80\x8f\xb8\x46\xb8\x16\x90\x52\x73\xf9\xa7\xc0\x09\xc9\x49\x5c\x0e\xc8\x8c\x68\x65\x17\x41\xd3\x0e\x14\x30\xeb\x21\xc5\x96\xa9\x84\x09\x0e\x5c\xee\x4d\x4b\x41\x96\x77\x93\x15\x9b\x60\x9b\xfa\x99\xb2\x50\x78\x5c\x71\xa8\x24\x0e\xfa\x93\x99\x2d\xca\x87\xde\x8b\xed\x04\x2f\xa1\xaf\x54\x2b\xfe\x12\x78\x79\xd2\x1f\xee\x41\x38\x32\x22\x84\x4d\x86\x55\x07\x42\x98\x02\xb8\x7f\xf3\x7d\x82\x86\xac\x5a\xee\x44\x0b\x42\xc4\x5d\xcb\xe4\x69\x74\xcb\x0b\x75\xd2\x5c\x1a\xbb\xc8\x5a\xdc\x4b\xfd\x4f\x1f\x2b\x9a\x44\x8d\x14\x8d\x13\x1c\xc4\xff\xc3\xe7\xf2\xf8\xb8\x3a\x69\x2e\xa7\x03\x3f\x74\x42\xc6\xfa\x8d\xbd\xdd\x7f\x85\xb9\x08\x83\x36\xcb\x08\x0b\xcc\x66\xb9\x13\xf5\x3b\xda\xd8\x51\x26\xcb\xe7\xb2\x6b\xf9\x92\xab\x1c\xa2\x60\x40\xfc\x3f\x76\xbc\xce\x45\x78\x88\x15\x2c\x78\xc1\xd7\x33\xfd\xb0\x59\xdc\x77\x8c\xb8\xc4\x8d\x9c\xf5\x04\x2f\xfc\x3a\x2b\x8a\x8e\xec\x3f\xcc\x60\xd3\xce\x6e\x8e\xa5\xf3\xa8\xbb\x96\x47\x53\x4f\xe3\x73\xda\x3d\xa5\x2f\xa4\x05\xd5\xbf\x25\x2b\x24\xb3\xcd\x54\xd1\x09\xd1\x39\xcd\x57\x81\x59\xd0\xc8\x6f\xe2\xfd\xe2\x2f\x40\x27\x72\xfd\xb9\xaa\x84\x43\x6c\x03\x67\xc6\xf1\x3f\xcc\x7e\xd6\x9e\x7d\x4f\x89\xaf\x0c\x68\xf3\x01\xda\x0f\x3a\xba\xdc\x88\x5f\xa7\xc6\xb5\x4e\x93\x3a\x19\x22\xab\xa6\x89\x23\xf5\xe3\x4d\xf1\xc2\x5c\x8d\x5c\x3d\x8e\xff\x2a\x63\x2c\xf7\x0f\xcf\x49\x11\x0b\x27\x71\x38\xd2\x67\x71\xdf\x59\x0f\xc5\xee\xc7\xe7\x31\x67\x0a\x0e\xec\xb3\x27\x36\x71\x37\x6c\x1e\x49\xdb\xc6\x7c\xb0\x7c\x00\x9f\x45\x3f\xde\xf4\x52\xd2\x5c\x92\x50\xde\x2d\x1e\x51\x38\x3a\x37\x5c\xe8\x6c\xca\x57\xcd\xe1\x9f\xcf\xb1\xe6\x38\x71\x8b\x0d\x30\x78\x8d\x33\x4e\x7b\x35\x56\xc0\x0a\x56\x7d\x0c\x9b\xc8\x10\xc8\xca\x7d\x8f\xd1\x2b\x44\x2b\x5c\xb5\xd4\x2a\xee\xde\xe5\xcf\x31\x0e\x63\x65\xe3\x6c\x49\x7d\xa3\x57\xd9\x44\xd1\xe0\x05\x0b\x63\xac\x70\x42\xe5\x15\x85\x13\xdf\xb5\x74\x1f\xeb\x2c\x37\xa1\x20\x03\x70\x62\x5f\xc8\xed\x3e\x6f\xcb\x1a\x65\xc8\x0d\x7d\xc6\xd8\xa0\x19\xb7\x97\x4d\x0f\x92\xfd\x74\xdd\x40\x0d\x14\xb0\x97\x7f\xc6\x96\x31\x1b\x1a\x96\x4a\x2e\xb4\xb7\x97\xae\x12\x0d\x34\xef\xca\x16\x0b\x7e\xd6\x49\xe5\x61\xfc\xe5\x55\x5a\xa6\x8e\x1b\x5c\x1a\x43\x01\xd8\xb2\x82\xc9\xe7\x68\xcc\x9b\x39\x7b\x43\xa3\x19\x63\x74\xbf\xf7\xba\xd0\x97\x29\x57\xbb\xce\xa0\x5a\x08\x87\x6d\xc7\xa2\xaf\x58\x7b\xea\x83\x24\x55\x3d\x89\x25\xe7\x44\x17\x3b\x8a\xb2\x1e\x08\x9e\x35\xe7\xcb\x4a\xf8\xe3\xea\x0e\x32\xfe\x71\x57\x57\x9a\xc9\x6f\xd8\x11\xc5\x3d\xe7\xa6\x32\x65\x26\x4a\xe8\x24\xa2\xd9\x80\xef\xf9\x43\xbb\xa7\xfa\xe7\x3a\x09\xef\x15\x8f\xb5\x5d\x87\x8a\x59\x44\xa5\xc9\x98\x9a\xf6\x3e\x5f\x66\xd0\xa6\x47\x6b\xbb\x74\xaf\xd3\x2f\x89\x76\x6b\xb6\x92\x76\xd3\x96\xa9\xd8\xa4\x27\x69\x42\xf9\x65\xb2\x36\x66\x82\xe4\x07\x25\x3d\xd8\x4d\xf8\x03\x88\xde\xbd\x89\x77\x05\x3c\xb9\xe1\x29\x9b\x80\x24\x36\x42\xc6\x44\x78\xb0\x72\x9a\xf1\x7f\xe4\x8f\xf9\x23\x0c\x3b\x28\x76\xda\x4d\x3a\x25\x65\xbf\xb0\x47\xfd\x99\x22\xa6\x56\xa9\xf6\x50\xbe\xa6\xad\x91\xcb\x81\x84\xd3\xe5\x92\x1e\x70\x7c\xd0\x07\xe1\x2d\xd0\xb4\xeb\x17\xaf\x16\x3a\xbc\xa1\x9e\x9d\x0e\xaf\xb4\xc1\x19\xa3\x90\x05\x15\xc9\xd9\x59\xd0\x3c\xd3\x89\xcc\x17\xd0\x54\x4d\x96\xce\x1b\xfc\x2e\xf4\x51\xe7\x42\x63\xa8\xde\xaa\x31\x90\x5d\x6a\x97\x3c\x10\x3a\x7d\x3a\x58\xc2\x87\x9a\x82\x8c\x42\x23\x3c\x77\x57\x2b\x4f\x00\x27\x6d\xd0\xb1\x03\xe1\xcf\x36\x18\xf1\x1c\xc1\xca\xcf\x67\x75\x53\x05\x79\xd1\x99\x8e\xd4\x99\xea\x4a\x6d\x36\x4e\x17\x84\xaa\x27\xe3\x8b\xf0\x28\x65\x1c\xd6\x95\xf2\x4f\xd6\x89\x89\xa3\x8b\x25\x63\xb1\xd8\xa0\xb9\x42\x5b\x6c\xed\xae\xe3\xbc\x45\xe8\x87\x0d\x00\xeb\x15\xda\x69\x93\x45\x40\xa8\xba\x6c\x4d\x96\x33\xfb\x40\xae\xbb\x9e\xc9\x4a\xcc\xd0\x69\x7e\x30\x61\x7e\x48\x46\x24\x43\x89\xc1\x8a\xcb\x44\x5b\xca\x6a\xd9\x1a\x62\x6a\xd4\x6f\x31\x89\x1e\x76\x84\x10\x48\x68\xcc\x5d\x93\xb8\x2c\x6a\xfe\x86\x28\x56\x08\xde\x63\x33\x48\x7f\x8f\x3d\x2e\xf9\x63\xe0\x89\x5a\x72\x66\xeb\x5e\x0b\x43\x54\x98\xe6\x18\xff\x09\xcf\x5f\xd5\xc3\x4b\x43\xf9\x8a\x0d\xdc\x39\xc9\x47\xa4\x6a\xf6\xf5\x28\x6f\xd1\x3b\x16\x3b\xf0\xb3\x60\x04\x73\xfa\xce\x4a\xce\x47\x82\xba\x21\x84\xd9\x40\x7b\xb8\xd4\x86\xbe\x8f\x6a\x5f\x6c\x9b\xf9\x44\xbb\x39\x7b\xbf\x6e\x8b\x7a\xb3\xe2\x8a\xda\xac\x9a\xcf\xb9\xa0\x9a\x2e\xbf\x81\x2c\x94\x27\x49\xf9\x49\x93\x24\x77\xc5\xa1\x91\x2b\x45\x2b\x85\xb3\x03\x97\xf3\xb7\xf3\x88\x9d\xf6\x9c\x75\xec\x6b\x1b\x56\x33\x7e\x30\x86\x97\x86\xd3\x68\xb4\xef\x85\xcb\x32\xd3\xcc\x73\x0d\x89\xda\xfe\x3c\x4b\xf9\x7c\xf5\x56\xe3\x2c\xf6\x02\xa5\x3c\xf3\x39\xa4\x94\x7d\xd4\xe6\x24\x14\x4a\x0e\x67\x9c\x39\x35\x4a\x98\xa3\x18\x7d\xd8\x83\x77\x41\xe2\xe5\x4d\x67\x9b\x04\x9e\xce\xaf\x19\x67\x39\x93\x96\xd2\xa8\xef\x08\x99\x39\x22\x33\xae\x5a\xae\xaf\xd0\x16\x97\xff\x27\x0d\x55\x8f\x2b\x59\xc8\x4c\x50\x06\x15\x4c\x02\xff\x27\x33\xe6\x5e\x8f\xdf\x29\xfe\x93\x45\x8f\xe8\x15\x7a\x6a\xbf\x1e\xda\xc3\x3b\xa4\xfc\xea\x75\x87\xed\x21\xc9\x70\xce\x60\x8c\xe0\x0d\x2f\xd5\x52\x01\xc6\xcf\xfc\xf2\xcc\x43\x0d\x52\xdd\x77\xad\xa6\x56\x20\x11\x67\x0c\x57\x06\x30\xca\x94\xdb\x4a\x06\x81\x50\x19\x5e\xb0\x2e\x2e\x4f\x7c\x3d\x37\x3c\xc2\x4b\x38\xc3\xe0\x1e\xf0\x90\x67\xa5\xd6\x7b\x09\xd9\x93\x64\x72\x67\x94\x68\x17\x6c\x5d\x5a\x49\xdd\xc6\x84\xf3\x97\x64\x6e\x68\xbd\xac\x0b\xd4\x52\x1b\x29\xe2\x97\x19\x77\x6b\x5f\x33\x66\x28\x17\x56\x2e\xa0\x74\xc9\x0e\x97\x8c\x8f\x5b\x26\x56\xe5\x37\x9f\xb8\x25\xe8\x37\x2e\x08\x10\x70\x6f\x69\x5f\x7a\x9d\x64\x35\x28\xb6\x3a\x43\x44\xa2\xd0\x69\xe9\x13\xfc\x05\xb3\x35\x73\x4e\x59\x6b\xfa\x41\xd9\x8f\x62\xd7\xf4\x62\xce\x71\x73\x3d\x69\x12\xba\x23\x6f\x09\x89\x96\x62\xc8\x4e\x26\x2f\x8d\x29\xd1\x57\x92\x07\x43\x7f\xa8\x2f\x52\xaa\x0f\x6c\x51\xb0\x81\xba\xed\x88\x64\x0a\x78\x75\x6d\x19\xff\x24\x3c\xc9\x7a\x31\x2b\x09\x09\xd4\x9b\xcb\x22\xc9\xdf\x64\xf2\xa2\xa7\x14\x0b\xce\x18\xf3\x39\x8a\x0f\xf2\x39\xf7\x0e\x45\x98\x12\x92\xed\x44\xf9\x15\x93\xac\x07\x00\x30\xb4\x59\x2d\x07\x17\x1f\x98\xa2\x88\x04\x6f\x6f\x3f\x26\xfe\x04\x65\xae\xd5\xf3\x0f\xc2\x74\x6b\x6b\x56\x34\x02\xe9\x37\x97\x4d\x06\x9b\x64\x6b\x8a\xb8\x60\x31\x3b\xcb\x3c\x1f\x2c\x46\x32\x73\xd9\x60\x77\xca\x82\xac\xb7\xe0\xdf\x18\x67\xbd\x2b\xe4\x13\x2a\x50\x07\x43\x25\xfb\x1f\x2a\xd6\xc2\x36\xdb\xb7\x8a\x3b\x61\xed\x5a\x11\x7f\x15\xb2\xc1\x7a\x35\xcb\x1b\xb9\xa9\xa3\x97\xfa\xe1\x15\x52\xac\xf0\x2e\xbe\x9b\xfd\xbf\xfc\x58\xec\x0a\x32\x31\xe7\x15\x46\x4a\x66\x66\xf9\x61\xdb\x4e\x57\xe9\x32\x31\xeb\x50\xbb\x8c\x0e\x6c\xee\x7e\xae\x3c\x1f\xfd\xbd\x7d\x8c\xd8\x07\x7d\xbc\x96\xc6\xbb\x80\x3e\xb2\x8e\x60\x5e\x43\x6f\x6a\xe9\x25\xa5\xcc\x07\x12\x53\xa1\x0b\x73\x0e\x6b\x8b\xa9\x8f\xb1\x19\xde\x9b\xe3\x43\xa4\x25\x3d\x31\x54\xd2\x2f\x9e\x5e\xa2\x9b\x4c\xdf\x14\x92\x9f\xe1\x42\x2b\xdb\xef\x2c\x9f\x49\x9b\xea\x3e\x20\x2a\xa4\x1e\x5f\x2b\xe0\x59\xe0\x17\xac\x4d\x4c\x17\x7c\xb4\x86\x5d\x32\x59\x10\x2f\x2e\x2f\x50\xf1\xf7\x33\x4f\x98\x5c\xb8\x7f\x20\xaa\xb1\x8c\xd3\x91\xb4\xc1\xb0\x98\xad\x8e\xa6\x69\x53\x59\x9c\x10\x3b\x55\x0e\x13\xde\x77\x47\x96\xc6\xf0\x72\x37\x89\x26\xd1\x87\xd7\xe6\x72\xe3\x69\x4a\xeb\xaf\x0c\x06\xd5\x41\x7d\xa8\x78\xb7\xea\x8f\x88\x66\xbe\xaf\x9c\xcf\xb0\xcd\xa3\xc8\xed\xc1\xa3\xd9\xef\xa5\xb6\x89\xcb\x32\xfd\xc4\xf6\x51\x12\x8d\x49\xe8\x79\x34\x42\x79\x9b\x7f\x70\xdf\x4e\x69\x2e\xd7\xd2\x3d\x50\xb8\x8d\xd5\xbd\x36\x93\xa3\x65\x84\x2c\x09\x22\xf2\x69\x97\x55\x0f\x8b\x9e\xe4\x84\x0a\xe7\x98\x23\xb2\xa4\xf4\x07\xb9\x7f\xf4\x5f\x80\x25\xd9\xa7\xb5\x73\x13\x46\xea\x9b\x33\x56\x47\x0a\x34\x73\x15\x21\xc1\x74\xa5\x97\x34\xda\x57\x2d\x9d\x25\x5a\xea\xf6\x4a\x90\xc3\xcb\x59\xcb\x61\xff\x65\x4f\x58\x92\x41\x8c\x26\x36\x2b\x4f\x17\x65\x97\x72\xf8\x65\xe6\xe5\x45\xce\xb4\xf8\xdc\x82\xfc\x16\x72\x4f\xf6\xa4\xdc\x79\x71\x9d\xfa\xc0\x2c\xbf\x53\x29\x6a\x83\x0e\x0b\x92\x29\xba\x33\xc0\xbd\x4f\x25\x52\xf9\x22\xb7\x04\x81\xbd\xe8\xdc\xda\x13\x6c\x8c\xcb\x5a\xd2\x45\xa7\x33\xce\x2a\x3a\x8b\xb8\x55\x8f\xf9\xd3\xcd\x53\xca\x37\x50\x3b\x73\xd9\xc5\xc7\xc8\x8e\x59\x43\xe6\xc0\x38\x67\xfd\xd2\x5c\x87\x93\x5f\xd5\x67\x0c\x43\x41\xf6\x0a\x86\x36\x68\xaf\x58\x12\xa8\x3c\xe7\xb6\x83\xff\x42\xb2\x62\xed\x11\xb6\x1b\x2f\x73\xc9\x13\xba\x27\xe3\xae\x62\x53\x51\x52\x1d\xc4\x43\xf2\xdf\x56\xb3\xa8\xce\xb9\x11\xe5\x11\xa4\x9c\xac\xe2\xe2\xa9\xb1\x4d\xba\x97\xf9\xc4\x49\xbe\x7a\xb9\xf1\xfa\x91\x3b\x8a\x6d\xfa\x6b\x7b\x83\x24\x63\x33\x4e\xb9\xd9\xf0\x25\x52\xfe\xda\xe3\xac\x97\xfc\x54\x9b\x69\xb4\x37\xcc\x29\xdc\xbb\xcd\x81\x24\x31\xf5\xbf\xba\x21\xd2\x75\x0a\xa5\x9a\x42\x9e\x94\xa0\x2c\x1f\x49\x8e\x8f\x3e\x59\x14\x4e\x19\x19\xfa\xc8\x94\x41\xa9\xf5\xeb\xcf\x16\x02\x4a\xef\x47\x3a\x2b\xd0\xe0\xea\xab\x3c\x01\xb5\xac\x9c\x28\xde\x08\x3f\xb1\xf4\xe0\x98\xd1\x19\xdc\xa2\xa6\xb7\x94\xdf\xd4\xc6\x3a\x1c\x98\x42\xd9\x59\x6d\x07\xcc\x4d\x38\x57\x56\x09\xf8\x44\xbb\x15\x2d\x04\x72\x42\x9b\x4c\x21\xa0\xbd\x5f\x59\xf6\x11\xf0\x8a\x77\xaf\xf6\x23\x24\x73\x75\x55\xba\xc1\x67\x56\x4e\x14\x2f\x46\x76\x58\xfa\x73\xe4\xe8\x32\x2e\xd0\x04\x42\x04\x95\xa8\xb3\x81\x4e\x53\xa6\x54\x5d\x85\x76\x25\xb8\x96\x45\x40\x3e\xd1\x73\x0a\x2f\x41\x29\xa1\x2a\xd3\x74\xa8\xc3\x4f\x92\x3d\x0d\x76\xf1\xae\xd0\x56\xc2\xd5\xae\x8e\xca\x89\x88\xf7\xca\x49\xa2\xf7\xc8\x4d\xcb\x33\x9c\x58\xf4\x2c\xe7\x5a\x63\x0d\x7e\x9d\x3a\xe2\x42\x24\x1e\x4c\xce\xaa\x5a\x8c\xdd\x8e\xbf\x5d\x5a\x86\x61\x51\x8d\x85\x36\xd8\x81\xd0\x03\x79\x51\xd8\x36\xbf\xa3\x59\xd1\x98\x97\xb7\x44\x6b\x83\xed\x74\x9d\xaf\x20\x63\x7b\x56\x5a\x88\x22\xb1\x03\x96\x05\xec\xd7\x58\x00\xc7\xa7\xe1\x2f\x13\xc5\xf1\xda\x62\x46\x3e\xd9\xae\xf2\x34\x71\x29\x3e\xbe\x74\x34\x31\x27\x2a\xa6\x80\x44\x27\x87\x8e\xc9\x6d\xa6\xfd\xf0\xb3\x30\x74\xd0\x98\xde\x67\x35\x29\xb4\xc9\xae\x93\xe4\x97\xa8\xb4\x95\x5b\x84\xd5\xf8\x4f\xcb\x1f\xec\x2d\xf8\x29\xf6\xb3\x06\x5f\x3e\x17\x1f\x5b\x3b\x92\xb7\x8f\x64\xac\xa8\xe3\x4e\x88\x1f\x51\x12\xcc\x7e\x1e\x35\xd5\x7c\x8d\x35\x18\x52\x9e\xbb\x80\x39\x74\xf0\xbe\xc1\x8a\xf1\xc9\xdb\x43\xdd\x46\xbc\x70\x1d\x21\x9f\x45\xef\x5f\x19\x26\xf8\x43\xcb\xb5\xda\xc7\x02\xa8\x31\xec\x19\xf5\x64\x45\x2f\xb6\xa9\xc6\x4e\x3e\x32\xfd\x56\xf9\x7d\xe9\x9a\x38\x97\xe2\x04\x71\x50\xa4\x7f\xfe\x63\xa1\x30\x64\x56\x8e\x2d\xff\xe6\xc1\x93\x99\x8e\xbc\xf9\x5e\xc3\x19\x57\x38\xab\x37\xbd\x95\x2d\x65\xd9\xaf\xe4\x09\x26\x31\xe6\x5b\xf5\x33\xa9\xb4\x27\xac\x0d\x75\xfd\x86\x6e\xf4\x60\x35\xa6\xdf\x97\xf6\xa5\x7c\x83\xa6\x27\x36\xb8\xa8\x25\x63\xf5\x29\x24\xdf\x4e\x21\x3d\x1a\x66\x3c\x2b\x1b\x73\xe0\x9a\x3e\x4e\x1c\xee\x25\xc8\x98\x2b\x00\x37\x35\x48\xcf\x72\xe3\x57\x1a\xf8\x07\x58\xc1\xd6\xab\x19\xdd\xc4\x02\xa6\x43\x9d\x7f\x01\x8c\x1c\xa9\xfe\x9f\x29\x21\x6d\x4c\x59\x43\x8e\xf7\xf9\xc4\xa2\x6d\x86\x77\x27\x4d\x26\xb9\x8e\x08\x36\x66\xdf\x50\x5b\x1c\x70\xd7\x0d\x28\xb8\x5e\xf6\x2a\x8a\xa4\x64\x93\x40\x72\x4d\xa0\x5c\x99\xcf\x6b\xe0\x44\x59\x27\x31\xb6\x31\x26\x33\x8c\x75\xf3\x4a\xe7\xc1\x83\x55\x03\x85\x75\xa9\xc2\x32\x22\x7f\xd3\xf9\xf1\x45\x23\x73\x58\x27\x77\x99\x02\x0c\x9d\xc1\xfe\xd9\x3c\xed\xd7\xfd\xff\x74\x6c\xd5\x17\xcf\xbf\xaa\x35\x32\xcd\x26\x44\x42\x13\x8d\x5d\x59\xce\x4b\xe4\xee\xb2\x96\x10\x5f\x18\xa1\x0c\xc7\x0b\xb7\x2a\x47\xc2\xf1\x55\xca\xd2\x93\xa9\x6b\xca\xf6\x14\x66\x9c\x2b\x2c\xac\x35\xe5\x46\x7c\x31\x8d\x34\x8a\x82\x67\x64\xbb\x64\x46\xef\xbf\xa6\x5b\xa3\x19\xe5\xf9\x5c\x79\x55\xb1\x75\x13\x55\x62\x2b\x5e\xb5\xb2\x8f\x37\x87\xfb\xce\xba\x8d\x50\x32\x12\x68\xb7\x3b\x5d\xc8\x1c\x70\x5a\x8b\x88\x5c\x91\x3c\xb6\xfe\x09\xb9\xff\x8c\xb6\x66\x0a\xc5\xea\xc4\xf8\xf2\x51\x14\xdd\x91\x85\x85\xdd\x80\xaf\x6f\x77\xde\x56\xd0\xd6\x23\xcf\xb0\x01\xb2\x75\x99\x96\xf1\x12\xde\xee\x30\x59\x3a\x1a\xd9\x6f\x91\xc3\x35\xa3\x51\xb4\xfc\x8e\x01\x60\x10\xf8\xd8\xe2\x0c\xdc\x48\x1a\xaa\xe7\x00\x9d\x67\xe0\xea\x7a\xe0\x49\xf8\x9b\xb2\x6a\x70\xf5\x91\xd1\x85\x18\x98\xeb\x5b\x9e\xfb\x0b\xf2\xf1\xd0\x19\x46\xc1\x13\x5d\x26\x64\x34\xc1\x83\x0e\xb3\x24\x8f\x91\x4c\x8b\x1a\xae\x04\x8d\xa3\xc5\x75\x24\xc3\xfb\x81\x4b\xcd\x37\xe0\x05\x49\x75\xf5\x6b\xa1\xa1\x33\xc1\xd5\x27\xa1\xde\xf0\x4b\x65\x27\xa1\x17\x81\xaf\x0b\xd7\xc1\x6b\x7c\x35\xb9\x05\xb0\xca\x43\x9a\xd9\x82\x2c\x74\x19\x93\x81\x21\x26\x87\x85\x92\x02\xd4\xde\xe2\x3a\x37\x0a\x2d\xa5\x7e\x69\x37\x53\xf7\x01\x51\xcd\xd3\xf1\xe6\xa4\xe8\xba\x38\x7c\xfd\x99\x39\x55\xb9\x58\x7f\xb8\xb0\xd4\x8c\x49\x02\x6b\x0a\xc8\x18\xe8\x9b\x9a\xf3\x05\xc3\x3c\x38\x99\x4b\x30\xba\xcb\x28\xd5\x33\x4c\xe0\xb0\x51\x32\x17\xe3\x5b\xce\xe6\xdc\xc4\x78\xd4\xa2\xb6\x57\xcc\x0a\x60\x51\xd3\x01\xc6\x40\xd2\xbc\x0b\x85\xc4\x70\xcc\xcd\xca\xb7\x84\x73\xf8\xc9\x92\xef\x74\x59\xa0\xc0\xdc\x4d\x9f\xe1\x1b\x9c\xb3\x8b\x96\xe9\x91\xae\x8f\xa1\xd9\x6f\xf8\xad\x72\xa4\x9a\x1d\x8e\x8a\x8f\x51\x6d\x2d\x8f\x73\x16\xe3\x12\xea\xc1\xb6\xd5\xfc\x44\x4a\x73\xa3\x84\xb7\x3e\xb1\xb9\xf6\x03\xe7\x73\x8c\xa0\xd2\x89\xdd\x17\xbe\xbe\x64\x27\xab\x3d\xf0\x94\x79\x16\xb3\xc7\x77\xa3\x51\xcc\xb8\xe7\x71\x42\x57\x48\x3c\xdc\xf0\x53\x19\x43\xbf\xe1\x80\x88\x94\xb4\x3a\xcb\x72\xf6\x61\x2a\x0f\x6f\x68\xdd\xa6\x70\xa6\xd8\x35\x64\xca\xce\x25\xda\xd7\x7c\x93\xe8\x4e\xff\xa8\x58\x27\xea\x3f\xae\x2d\xde\x2c\x9c\x7d\xf8\x4d\xfe\x38\x7e\xc4\xde\x27\xd9\x34\x6e\x99\xc7\x46\xad\x81\xfd\xd8\x65\xb2\x22\x9c\xf9\xdd\xa1\x5d\x28\x65\x4c\xb0\x72\x67\xed\xa3\x7d\xc1\x47\xb5\x80\x99\x2a\x72\x6a\xfd\x23\xdd\xb2\x04\xb0\x66\xbd\x3a\xf7\xf4\xde\xf2\x53\xaa\x45\x61\x3f\x8b\x22\xe5\x9a\xc3\x61\xa6\xb5\x52\xab\xbd\xe9\x59\xc5\x22\xf9\xf6\x4f\x9a\x6b\xfc\x3b\x1b\x3e\xc8\xe5\x9c\xaf\x0e\xcf\x05\x97\x58\xb3\xad\x72\x99\x04\x31\x03\xf3\x69\x7e\x90\xaf\x27\x35\xd6\xef\xc9\x95\xc7\xf7\x55\x6b\xb3\x29\xd1\xfa\xb2\xf6\xcc\xcd\x61\xfe\x85\xb5\x9a\xaf\x87\x06\xf2\x70\x55\xc9\xde\x99\x59\x23\xe5\xfb\xb7\x57\x69\x6c\xc4\xb9\x1b\x3e\xc9\x5e\xf3\xaf\x3a\x4e\x16\x38\xb2\x5f\x5b\x0d\x33\x86\x89\xa7\xe8\xb3\x66\x75\xd1\x03\xd2\xf1\xfa\x31\x66\x2c\x9e\x52\x1d\x9c\x37\x2f\xfa\x60\x19\x29\x9b\x16\x36\xb1\x30\x4a\xff\xec\x90\x2a\x6f\x8d\xc6\x6b\xcf\x5b\x83\x59\x49\xd9\xae\x55\xf7\x48\x23\x36\x7c\x91\xc9\x84\x0b\x1d\xad\xf8\x83\x9c\x62\xeb\x79\x0c\x33\x63\x29\xca\x68\x3e\x5c\x96\x40\x1a\x57\x57\x53\x34\x10\xbf\xa6\x7a\x8a\xd9\x3e\x7a\x5a\xd9\xb2\xdc\x43\xc7\xae\x15\x4e\xc8\x8a\x39\x14\x9f\x7b\x49\x97\xb2\x67\xc0\xb0\x33\xc3\x6f\xbb\x54\x7d\x52\x76\x65\xc3\x5f\x99\xb3\xc8\xd2\xd1\x83\x4f\xe6\xba\x5b\xef\x61\xec\x65\xac\x82\x9d\x7a\xa7\x51\xba\x52\x25\x9d\x7b\x29\xdd\xe7\xaf\xb7\x24\x52\x6a\x4f\x75\xd4\x07\x51\x5e\x86\x28\xaa\xfe\x00\xbe\xfe\xab\x4a\xa3\x81\x67\xbb\x93\xcd\xe7\xc0\x22\xb7\x59\xd9\x0f\x21\xad\xd3\x29\xed\x3c\xd8\x6c\x07\xc9\x38\x88\xca\x22\x82\x07\xa3\x0a\x78\x61\x4f\x19\x34\x3a\x95\xdb\xf1\x0e\xbc\x71\xbe\xa5\x65\x0e\xa8\x3f\x55\x5e\x3f\x12\xcc\x08\xe1\x56\x15\x80\xbd\xfe\x56\xa5\x0b\xa0\xb5\xbb\x63\xcc\xb6\x50\x8b\xdb\xd4\xec\x42\x38\xd1\xe9\x98\xe6\x35\xb2\xd9\x8e\x2a\x8b\x44\x9e\x58\x9c\xe7\x45\xa2\x19\xd0\xb7\x9e\xc3\x48\x78\x2a\xd8\xc1\x46\xc6\x9c\xcf\x6f\x2e\x87\x0b\x4f\xa9\xeb\x32\xe1\xa4\x10\x52\xd5\x41\x38\xc9\x7f\x7a\x49\x33\x9c\xbb\x3b\x24\xff\x32\x32\xda\x6d\x62\x76\x0c\x92\xe6\x14\xa4\x31\x21\xbf\xec\x08\xd9\x4a\x34\xc2\x02\xe6\xad\x47\x07\xa0\xfc\x8b\x34\x9a\x65\xea\x86\xf6\x7a\x6a\xdc\xf9\xe8\xa6\x27\x78\xd7\xa9\x73\x17\x6e\xe1\xbe\x21\x87\x2a\x59\xd8\x1f\xbf\x8f\xc5\x3f\xb1\x81\xdd\x5e\xf9\x13\xb0\xcb\x6e\x13\xb2\x9a\xb1\x4b\x4e\x47\x34\x23\xb0\x3e\x3b\x83\x94\x85\x5d\xb0\xa8\xe4\xca\xb1\x5c\x48\xdf\x5d\xcd\xf2\x49\x9d\xdf\xf6\x8e\xe9\x77\xde\xbd\x69\x1a\xe3\xc4\xa9\x80\x0b\x53\x08\x76\xc8\xde\x8a\x8b\xf4\x07\x7e\x2f\x8b\x37\xd1\x7d\x76\x6f\x37\xf9\xd0\x2e\xbb\x8d\x37\xfc\xa2\x1d\x72\x3a\xa1\xde\x40\xbd\x61\xd7\x2b\x69\xa3\x7a\x5b\x8e\xe4\x5c\xc5\x0b\xa0\x5d\x5d\xef\xf9\xed\x29\x77\xdb\xac\x79\x29\xe7\x67\x36\xba\x71\x57\x9e\xda\x50\xbb\x83\xfd\x25\xc4\xad\x62\x1c\x6b\xc8\x6f\xb0\x28\x99\x79\x67\xf7\xe6\x3c\x9c\xf1\xc4\x6d\x82\x61\x35\xf1\xd2\x29\x21\xe3\x24\xfd\xa9\xdd\x5f\xf1\x47\xda\x15\xcb\xa3\x9c\x11\xd4\x42\xf0\x53\xe7\x6d\xc5\x82\x14\x4a\xeb\x64\x99\xc7\xb9\xa2\x06\x5b\xc9\xd9\x93\x3d\x35\x4b\x44\xe2\xa3\xd7\xca\xee\x0b\x6e\xf9\x31\x0a\xf7\xf0\x97\xec\x1e\x9b\x1b\xc2\x4d\xdc\xf6\x2d\x73\x12\xbb\xd0\x89\xaf\xda\xc5\x1c\xb0\xdf\x21\x7a\x48\xfc\xb0\xbc\xc7\x7a\x47\x1f\x0d\x1e\xee\xf8\xa3\xff\x92\xfc\xa9\xc5\x51\x1b\x7f\xce\xb9\xde\x2d\xe3\xcd\xc9\x3d\xd5\xeb\x95\x11\x47\xfd\x4a\x5f\xca\xde\xf8\x59\x15\x04\x4a\x52\x76\xd5\xe5\x9c\x16\xfe\xdc\x76\x43\x6f\xcd\x0f\x74\x92\x29\x23\x39\x22\xfb\x14\xd1\x58\xe6\x2d\x2b\x4f\xd6\x22\x62\x14\xf0\xa6\xc3\xc5\x74\x38\x99\xda\x1c\x97\xb3\xfd\x6c\x5b\x1d\x91\x65\x13\x71\xab\x2a\x41\xf7\x2a\xf8\x61\xa9\x85\xba\xfa\x60\xb7\x99\xa3\x64\xec\xa2\x1a\xb3\x64\x3b\xb7\xd5\xe9\x8e\x88\xba\x9c\x8a\x15\x26\xfe\x72\xfb\x7c\x61\x30\x1b\xb0\x92\x30\x11\xa2\x12\xc8\x6b\x7f\x5d\xb8\x2d\x79\x6b\xf3\x02\xd3\x8d\xb3\xec\xba\xb5\x39\xe7\x22\x32\xab\xe6\x18\x9e\x07\xe7\x97\x54\xeb\x42\x0f\x1a\xcc\x0e\x19\x77\x77\xc5\x19\xdd\x14\xae\xdb\x6a\xb4\x1f\x24\x7e\x4e\x9d\x0a\x5f\xc1\x1e\xfb\x5e\xe1\x28\x8e\xbd\x55\x13\xd3\x89\x78\x05\x9c\x6e\x57\x94\x80\x49\x3f\x9a\x1a\x0b\xae\x9d\x0d\xbd\x70\xd5\xb4\x3a\x22\xa5\xb2\xc8\x18\x1d\x8c\x97\xf8\x66\xca\x0f\xb2\xf2\xeb\x34\xbd\xbb\x4e\x67\x5f\x57\xde\xdd\xd6\xa6\x25\x4b\xb9\x4e\x4f\xe4\x8f\x85\x8e\xf6\x5f\x04\x6a\x4e\x96\xd5\x57\xc6\x55\xe2\xfd\x57\x2a\xf0\x88\xdc\xfa\x62\x3c\x38\x83\xb2\xfa\xd6\x7a\x70\x0d\xe5\x4c\xe7\x7a\xf0\x0c\xc5\x58\x11\x0a\x1a\x29\xff\x32\x63\xc0\xbf\xc0\x63\x6e\x1c\xe4\x0a\x26\xa7\xc5\x43\x0c\x68\x64\xf8\x56\xe8\x11\xc4\xdf\x29\x87\xdd\xe1\x19\x8e\xd3\xe1\x3c\xd8\xf0\xc5\x08\xb8\x41\xdd\xcf\x1d\x81\x34\xa8\xe7\x66\x10\x90\x03\x35\x74\x44\x01\x1f\x20\x43\xb9\x1a\x5c\x0f\x55\xea\x5b\x41\x15\xbc\x94\x73\x05\x7c\x02\x47\xa6\xbe\x80\xbc\x60\xfd\x71\x15\x64\x86\xaf\xee\x74\x84\xad\xe1\x4f\x0e\x37\xe0\x0c\x64\xd6\x70\x1e\xc5\x80\xbd\x79\xe6\x4a\x79\x8f\xb1\x07\x48\x80\x25\xb6\xb1\x9d\x07\xa4\xa2\x0d\x65\x03\xc0\x45\x34\x49\xef\x04\x2e\x41\x13\x38\xce\x20\x15\xa5\xa4\x9e\x02\xbf\xa1\x27\x8f\x5b\x43\xb1\xe8\x46\xef\xab\xd0\x47\xe4\xb3\x83\x01\x06\x10\xe3\x27\x29\x59\xcb\x9e\xf4\xc4\x89\x3c\xcc\x9a\x71\x9d\x41\xd9\xc8\xfc\x5f\xeb\x2d\x8a\x9a\x31\xbb\x74\x3f\xe5\x2f\xb1\x5e\x7b\x13\x38\x42\x27\xd8\x53\x80\x06\xda\xc3\x14\x18\xdc\x4d\x5b\x10\x76\x14\xbc\x4b\x75\xf2\xde\x02\xa5\xe0\x4b\x1d\xce\xc0\x73\xd0\x6f\x1f\x7a\x48\x1a\x71\xe3\x63\x06\x79\x84\x68\xf9\xd5\x7a\xf2\x09\x01\xde\xb2\x88\x5c\xc3\x7b\x57\x9c\x47\x99\xc7\x3d\xab\x09\xa1\x40\x9c\xc9\xcc\x56\xca\x57\x96\x31\x19\x02\x84\x4c\x9b\x63\x52\xd0\x95\x48\xf6\xea\x04\x9f\xd2\xa8\x0e\x87\x21\x11\x1e\xf3\xfe\x46\xfa\x4b\x8d\xf3\x43\x2e\xc9\x43\xf5\xad\xff\x03\x29\x5b\x21\x6d\x0a\x25\xbd\x96\x85\x14\x8d\x21\x7b\x4a\xec\x32\x1e\x92\xab\x44\x63\x19\x14\xca\x66\xfe\xd5\x24\x94\x32\xc4\x85\x42\x07\x01\x25\xeb\xab\x57\x18\xe8\xc7\x18\xe3\x10\x00\x4d\xa1\x3e\x7e\x1b\x9d\xd6\x59\x40\xbf\xbf\x26\x7d\x85\x69\x65\x5f\x62\x3a\xd5\x78\xab\xfe\x4f\xfa\x23\x03\x66\xee\x25\xed\xd6\x2d\x57\x0e\x92\x3a\x32\xda\xe8\x0d\xe4\x20\x85\x6b\xe2\x6c\xca\x44\x09\x29\x64\x80\xd2\x27\x38\xe3\x79\x1b\x50\xb2\x5f\x3a\x84\x82\x91\xc4\xdc\x57\xfd\x69\xa3\x1a\x1c\xef\xca\xd2\xa2\x6a\x32\x7b\x67\xa7\x55\x55\xb8\x5d\xa8\x4a\x5f\x56\xdc\x68\xca\x49\x57\x98\x6d\xe4\xcf\x49\x8b\x73\x22\x69\xe3\x49\x35\x99\xa7\xe2\x0b\xc8\x09\xea\x69\x47\xfb\x28\xee\x32\x5f\x4f\x5f\x60\x81\x60\xbc\x43\x30\xf0\x85\xe9\xff\x02\x4c\xfd\xd2\x97\x74\x3b\x31\xcd\xbe\x7b\x46\xf7\xc3\xb4\xa8\xd6\x8c\x1a\x45\xda\xd5\x86\x89\xb9\xd9\xe9\x1e\xd5\x9b\x65\xd3\xd2\xdb\x4b\x9d\xf0\xb3\xa4\x13\xf9\x5d\x71\x11\xe4\x31\x59\x35\x47\x47\x93\xdb\xd4\x2e\x3b\x1e\x50\xca\x24\x13\x1c\x8e\x01\x46\xf6\xae\xe7\x99\xa9\x75\x03\xd3\x6f\x49\x52\xff\xf4\xef\xed\xfa\x97\xb6\xed\x62\x78\x75\x75\x5a\x7e\xdb\xa1\x9c\xab\xe9\xf3\xeb\xbf\x4a\xf7\xa7\xcb\xaa\x0e\x62\xed\xa4\x75\xc5\xeb\x62\x07\x49\xdd\xb9\x5e\xc1\x2d\x64\xb2\xf6\xc9\x8e\x16\x4a\x92\xb4\xce\x21\x19\x88\x65\xbf\x7b\x3e\x2a\x15\xbe\x57\x7c\xf3\x5b\xea\xe0\x40\x61\xd7\xe1\xb4\xe9\xfd\x01\xd5\x33\xd3\x52\xba\xef\xe6\x38\xa7\x3d\x6c\xf9\x2b\x69\x49\x0f\xbc\xd0\x89\x1d\x48\x7f\x5b\x3e\x2a\x16\x21\xa5\xe6\xef\x08\xce\x22\xcf\xcf\x9c\xb0\xe3\x22\x65\x9e\xec\x83\x43\x21\xb0\x80\xb3\xe8\xc3\x55\xb8\x8b\x3c\xfb\xf1\x00\x9c\x4b\x46\xaf\x25\xc3\x28\xf9\x5e\xcb\x1b\x18\xa3\x58\x97\xb0\x61\x0a\x85\xaf\xb5\x87\xe9\xc0\x19\x96\x01\xa6\x82\x33\x52\x1c\x61\x01\x58\x1b\x76\x04\xd6\x43\x27\xbc\xcf\xc0\x4d\xf0\x04\x07\x35\xfc\x00\x2e\xfd\xef\x3b\x6c\x0d\x8d\x7b\x3c\x1a\x9e\x05\x2d\xba\x9a\x07\xfd\x86\xac\x5b\x96\xc3\xe3\xa0\x99\xc5\x1d\xf0\x38\x68\xbd\x06\x84\xad\x20\x2d\xf3\x13\x6c\x0d\xfd\x49\x2e\x85\x7d\xe1\x83\xc7\xde\xc1\xd1\xb0\xd2\x6b\x18\x56\xc3\x8f\x1d\x0e\xc2\xf5\xc8\x8a\xff\xc6\x42\x4c\x6c\xd4\xa3\xc5\x10\x81\xb6\x5d\xe9\x82\x28\x68\x5a\xf3\x61\x88\x83\x2e\x29\x1e\x0f\x69\x91\xf7\xea\xc7\x50\x05\xf2\x93\x79\x1c\xba\x88\x4e\x4f\x5e\x0b\x8f\x44\xa7\x1e\x4b\x82\xd7\x20\xbf\xbd\x74\x70\x3c\xf2\xc0\xc1\x16\x36\x20\xd5\xef\xa6\x82\x54\xd6\x84\x07\x9b\x40\x0e\x73\xdd\xe5\x4f\xa0\x88\xb1\xa5\x31\x1b\x2c\x26\x42\x0b\x09\xf0\x2a\x5d\x98\x81\x81\xff\xd1\x7e\x31\x5c\xa0\x45\xb4\xe8\x24\x4f\x28\x94\x5a\x1b\x6a\x84\x0a\xf0\x61\x2f\x6b\xe8\x37\x3e\xde\xfe\x27\xbc\x17\x1b\xf7\x26\x08\x50\x88\xb8\x83\x52\x20\x4f\xb8\xb0\x6f\x1b\xd0\xc8\x57\x34\x4c\x06\x06\x78\x4b\x0a\x26\x01\xc3\x9c\x6a\xd5\x7a\xd0\x82\x1d\x4f\xcc\x03\x0f\xb3\x96\x25\x06\x81\xf9\x8c\xda\x90\x61\x68\x0a\xb1\xc6\xb3\x15\x3a\x47\x8b\x70\x18\x09\xf5\xe2\x29\xaf\x00\xca\x8d\x8c\x97\x77\x2b\x28\xcf\x95\xfd\xbd\x04\x30\x5a\xce\xad\x0b\x01\x66\x4a\xcf\xe7\xc7\x02\x8e\xe2\x00\x45\x0b\x70\x5c\x78\x80\x76\x17\x30\xf0\x5d\x13\x22\xc0\x91\x9c\xbf\x21\xbb\xc1\x73\x2c\xb9\xe7\x69\xf0\x1e\x71\xd3\x61\x1a\xe4\x4d\x7d\xfe\x7c\x98\xdc\x93\xff\xe2\xf6\x6e\xf2\xa3\xdc\x9a\x8b\x63\xc9\x5f\xb3\x89\xda\x51\x94\x69\x99\x41\x79\x1e\x14\x27\xed\x62\x59\x17\x25\x41\xf5\x80\xba\x8c\xd2\x2a\x27\xc7\x8f\x06\x1c\xc5\x43\x47\x8f\x00\x7a\xfe\xbf\x1d\xbf\xc0\xc5\xec\x12\x87\xf5\xa0\x8c\x98\xf7\x34\x9c\x3c\xbb\xce\x61\xa0\x81\x6c\x5f\x75\xaf\x33\x93\xbc\xb9\x4c\x57\x55\x4f\x3e\x5a\xb4\x37\xc7\x86\x4c\x35\xdd\x95\xdc\x22\xf7\x18\x77\x63\xc9\x94\xe5\xfa\xe4\xd8\x2c\x8a\x28\xc3\x2f\xf8\x30\x30\x43\xda\xb6\x03\x00\x54\xfc\x1a\x07\x37\x70\x09\xd3\x6b\xc8\x96\xf4\xb6\x77\xc5\x75\x2d\xe9\x69\xe7\xb8\x76\x3a\x69\xa8\xb9\xab\xa2\x88\x3c\xb2\x2e\x2c\x7b\x0d\xd9\xa1\xb2\x41\x3c\x8d\x7c\xbe\xf8\x29\xf2\x8c\x7c\xd1\x64\x3a\x7f\x8a\xb2\xdc\x70\x3d\x88\x4f\x51\x66\x30\x77\xcc\x02\xd6\x8b\xb5\x0e\x9e\xc0\x65\xf6\x8a\xc7\x87\x48\x4d\xd7\x2a\xaf\x75\x92\x1a\xfb\x56\xb6\x99\x49\x0d\x5d\xa4\xf2\x1b\xa4\xdb\x2d\x82\xac\x08\xd2\xbf\xba\x13\xa2\xc3\xe4\x6d\x15\x6f\x10\x4f\xb2\xbc\xf0\xef\xb9\x21\xf2\xab\x1c\xbf\xa0\xbd\x14\x7f\xad\xad\xc7\x30\xe5\x8b\x74\xb7\x43\x20\x20\x67\x77\x3d\xaa\x27\x09\xef\xec\xb9\x66\x47\x12\x5e\x8f\x6b\x1b\x4f\x12\xf6\x85\x96\x3b\x91\xb2\xbb\xc6\x18\x2e\x92\x3a\x9a\x0f\x0b\x7b\x48\xbf\x6b\x0f\xc0\x57\xc9\x07\x4a\x9b\xce\xb1\xc8\x52\xd3\x8e\x20\x07\xf2\x27\xbd\x87\xc7\x0f\x4a\x86\x2c\xdd\x81\x0b\x6c\x67\x7f\x7d\xfd\x0a\x6b\x25\x25\x0d\x72\xb1\x43\xa4\x6f\x7d\x64\xf4\x0f\xf9\x40\x43\x1a\x5a\x43\xce\x28\xe0\xa2\x00\xe5\x7f\xaa\x7a\xd4\x9d\x72\x99\x50\xa0\x13\x81\xec\xc4\x32\x64\x00\x8c\x0a\x3d\x85\x64\x42\xb6\x5e\x16\x08\x00\xbd\x77\x18\x83\x1c\x86\x6b\x5e\x3b\x61\xcb\xc1\xad\xf7\x2e\xa0\xfd\xe0\xa9\x4b\xfd\x28\x09\x4c\xaf\xaf\x45\xb7\x83\xa8\xf9\x12\x3a\x05\x34\xa9\x26\x21\x0f\xa0\xd9\xf4\x8f\x48\x21\xc4\x4d\x74\x45\x24\xd0\xf7\x90\xef\x48\x2c\x7c\xd4\x33\x0f\x39\x06\xb7\xda\xd7\x21\x9b\x10\xbb\x57\xde\x28\x13\xdd\x78\x77\x08\xf5\x40\xfe\xf6\x7e\x44\xbe\x20\x57\xeb\xde\x21\xd7\x91\x34\xf3\x2c\x24\x0b\x09\x57\x9e\x42\x20\x24\x89\x1e\x8e\x04\x23\xfa\x84\x4b\xc8\x5e\xa4\x30\x84\x8d\x6c\x42\xaa\x3d\x03\x91\x35\x48\x93\xbd\x1c\x59\x84\x54\xbf\x08\x40\xb8\xcc\x29\x77\xc6\x22\xbe\x8c\xc3\x3d\x36\xc8\x02\xe2\xcc\x85\x23\xf0\x5b\xba\xd9\x94\x07\xdf\xa4\xfd\x54\x58\xc0\xf5\xb4\x14\x9a\x2f\x5c\x48\x1d\x8e\x1f\x82\x0b\xa8\x81\x47\x5b\xe1\x1a\x3c\x77\xc7\x23\xb8\x11\x7b\x64\x9f\x00\xb7\x62\xa3\x9f\x95\xc1\xd5\xc2\xf0\x5b\x67\xe0\x74\xc1\xcc\x6e\x2a\xec\xc3\x2b\xac\xe9\x86\x17\x73\x0f\xe6\xad\x83\x47\xb2\xff\xca\xfa\xa0\x8f\xac\xcb\xd4\x95\xd0\x7b\xa6\x32\xee\x3b\xf4\x97\xb1\xfb\xa8\x0d\xbc\x80\x7e\x6f\x87\x04\x5e\x43\x73\xb6\x67\xc2\x1e\x78\xfc\x93\x4f\xd0\x33\x55\xe6\x40\x36\x54\xa1\xc8\xeb\x7c\x0a\x09\x65\x58\xb5\x2d\x14\x29\x01\x72\xb2\x20\x4f\x11\x49\x1a\x0d\x6d\x13\x08\xb0\x1f\x90\x37\x4f\x1e\x37\x01\x0a\xe5\xc0\xc1\x18\x04\xb0\xb6\xec\xd8\x07\xe9\x08\xa3\x7d\x0e\x54\x47\x1d\x7a\x1c\x08\x7e\x37\xf9\x5e\x77\x04\xdb\x73\x76\xb4\x1f\x07\x15\x59\xce\x15\xd7\xc1\x73\x7a\xfb\x6c\x0a\xe8\xa7\x99\x2c\x4e\x06\x0f\x2b\x3f\xa0\x7b\xc1\x18\x59\xc9\xf9\x72\x90\x10\x6f\x0f\x52\x81\xa5\x7c\x86\xc7\x13\xf0\x11\xfb\x8c\x7d\x1f\x34\x81\x18\xff\xa0\x11\x3c\x50\x6b\x7b\xa5\x10\x5c\x50\x39\xbd\xe5\x33\xf0\xbe\xe4\x67\x19\x17\x68\x2d\x18\x30\x84\x01\x79\x79\x0c\x21\x03\x28\xcd\x5e\x02\xeb\x80\xcb\x3a\xf2\xb9\x20\xe0\x93\x8a\x38\x92\x09\x2e\x93\xae\xf6\x88\x01\xc3\xf8\x47\xed\x1f\x82\x02\xe6\xf2\x41\x35\x38\xa5\x7b\xe0\xb2\x18\xe8\x6b\x1b\x6e\x7a\x0b\x88\x1a\xdf\x96\x70\x81\x53\xb5\x85\x7a\x0a\xb0\xb7\x62\x03\xff\x32\xe0\x57\xc4\x82\x2c\x80\xf3\x79\xc8\xd9\x25\x00\x2d\x73\x28\xf0\x0e\x50\xac\xba\xe2\x31\x12\xf8\x26\x5e\x61\xff\x0c\xdc\xcc\xfa\x75\xef\x06\xf0\xfe\x8a\x5f\x5f\x2b\x50\xd8\x3b\xba\xc9\x02\x88\xeb\x60\x14\xd7\x00\xae\x4d\x9d\xba\x72\xc0\xaa\xb6\x99\x3f\x0f\xb0\x2e\x27\x81\x08\xe0\x5a\xd0\x72\xc6\x00\xec\x31\xfa\x05\x0a\x81\x33\x9a\xb0\xed\x8f\x81\x5a\x49\x97\xfd\x0f\x70\x24\x5b\x7e\xcf\x13\xb8\x7c\x73\xb0\xcf\x01\x60\x5c\xdd\xd4\x88\x00\x9e\xbd\xc1\xc5\x73\x80\xf1\x1d\xcb\x74\x96\x94\xa7\x8d\x99\x3c\x21\xe5\x7e\xf5\x25\x70\x3a\xe5\x43\x49\xc2\x99\xfd\x94\xaf\x79\x2e\x81\xb1\xc0\xff\x74\x71\xdb\x9f\x01\xc7\xa5\x9f\x1d\xd6\x00\x26\x76\xf7\xc3\x28\xc6\xa3\xf4\xa9\x57\x2b\x18\xff\x4b\xcf\x6b\x2b\x25\x2c\x48\x56\x15\x61\x74\x12\x49\x9a\xbd\x91\x76\x97\xbc\x54\xbc\x9f\x66\x4f\x7e\x87\x2e\xa5\x02\x94\xbe\xf3\x71\x78\x0f\x50\x1d\xe4\x82\xcf\x01\x35\x1e\x0b\xb0\x18\x28\xc3\x0e\x42\x2b\x60\xc3\x03\x23\xe3\x18\xa5\xe9\xca\x5b\x42\x48\xf9\xd7\xfa\x87\x5e\x0a\x38\x97\x6b\xe8\x33\x80\xb0\xac\x64\x1a\x19\xc8\x14\xe9\xa8\xd7\xc1\x25\x08\x97\xba\x1e\x2c\x3b\xf7\x1e\x17\x43\xdb\x8f\xb4\x60\x9f\xa1\xde\xed\x75\x58\x00\x7c\xda\x6e\x3b\x9a\x87\xfc\xef\xfe\x7d\xe2\x11\x2c\xbe\x62\x41\xcc\x87\xc9\xad\x5e\x74\x6f\x38\xb6\xec\x39\x2d\x1b\xde\x67\xe8\xa7\xcd\x82\x7d\x44\x93\xa8\xe9\x30\x19\x99\x88\x3f\x85\xeb\xce\x61\xb8\x1f\xfc\xe1\x48\x18\xd6\x82\x58\x6f\x27\x63\x0e\x48\x98\x9d\x1d\xca\x44\x94\x83\xf6\x74\x23\x11\x7c\x99\x4d\x1f\x41\xbf\xd0\x5c\x46\x5b\x4f\x1f\x5d\x4a\x50\xcb\x68\xe1\x99\x12\xea\x06\x6a\xbf\xe0\x3f\xdc\x4c\x8d\x82\xe7\xe0\x2b\xa8\x63\xce\xe6\x60\x55\x38\x2d\xb0\x14\xdb\x8e\xfd\xdd\x3e\x1f\xad\xc3\x12\xed\x16\xa1\x0e\xe8\xe0\x5d\x94\xf6\x82\xef\xd5\x37\x87\xe6\xc4\x73\x68\x9a\x43\x65\x71\xbe\x15\xff\xc5\xff\xb2\x9b\xf4\xb6\x38\xc4\x92\xf0\xb3\xf1\x11\x4c\x16\xf8\x15\x63\x33\xa0\x33\xdd\xd8\x3c\x22\x34\x70\x3e\x6a\xa4\x5b\xb8\x0f\xa0\xab\xa8\x35\x76\x9b\x10\x23\xee\x7e\xbb\x9c\xb6\x5f\xb1\xb0\x77\x13\x55\x2f\x3b\xda\x90\x84\x7f\x97\xa4\x14\x25\xe0\xc7\x44\x5a\x6d\x05\x76\x43\xd0\xc7\x0b\xc4\xc2\xf9\xb3\x80\x9b\xe8\x17\xae\x6f\xcc\x53\x14\x61\x9f\x3d\x8c\xa3\xd3\x98\xe1\xee\x5c\x24\x93\x98\x6b\xb7\x1f\x59\x42\xcd\xbf\x69\x41\xdd\x9d\x33\xb9\xfb\x29\x9e\x9f\x15\x5e\xf7\x3f\x7c\x9a\xbe\xa0\xc0\x1e\x4b\xd1\x5c\x51\xcb\xd0\xff\x54\xef\x38\x71\x28\xa6\x98\x49\xd9\x80\x5a\x4b\xe7\x9e\xce\x47\x8a\x85\xc3\x87\xaa\x11\x4f\x1e\xcb\xdd\x03\x1e\x64\x35\xd9\x49\xe1\x08\x7a\xeb\xf5\x7a\xfc\x76\x65\x74\x67\x28\xee\x50\x2a\xaa\xb9\x80\xa5\x14\xbe\x30\xbd\x47\xef\x9a\x3e\xab\x10\xd4\xcf\xf8\x92\xc5\x46\x5e\x64\x5e\x25\x09\x11\xb6\x06\x8a\x0e\x45\xac\x15\xaf\x03\x2e\xc1\xb5\xe2\x61\xb7\x4b\x70\x30\x8f\xb0\xcb\x86\x9e\x32\xba\xae\xaa\x70\x51\xbb\xb8\xfd\x04\x76\xa5\xe9\x4f\x95\x0c\x9b\x5b\xe7\x9d\xfb\x17\x25\x57\x1d\x50\xd4\x23\x1f\x4a\x97\x31\xde\x21\xa8\xf9\x5a\xba\x1d\xb2\x24\x67\x45\xd4\x66\xb8\x4c\xf7\xdb\xff\x0f\xbc\x4f\xe9\xe7\x16\x01\x0d\x8b\x56\xd8\x15\x43\x04\x8b\x71\xc5\x88\x27\xf4\x96\xb4\x91\xb1\x82\xce\xe6\xca\x32\xf4\x6d\x8b\x26\x77\x25\x7a\xb0\x7e\xad\x62\x04\xd2\x52\x05\x30\xb6\x23\xfb\x4a\xc4\x69\x62\xf8\x55\xbe\x5b\x64\x2b\x9c\x96\xb5\xc7\xbf\x10\x9e\x96\xd1\xea\xb6\x1d\xaa\x11\x57\xd9\x75\x40\xbe\x6c\x9b\xfe\x21\xfc\xc0\xd5\xe7\xad\xf5\x18\x7e\xa9\xa0\xe2\x17\x5a\xdf\xe5\x94\xc3\x44\x17\xb6\x1c\x97\x27\x20\xb4\x3a\x27\xa2\x19\x99\x50\xd1\x94\x66\x07\xab\x0b\x2f\x47\x26\xc0\xcb\x72\xe6\xfa\x53\xa1\x2a\x4d\x93\xdb\x76\x28\x5c\x72\xd7\xee\x1b\xf8\x89\x7d\xe4\xfa\x16\x7e\x4f\x9a\x75\xe7\x11\x5e\x70\x5a\x49\xcd\x20\xe7\x5f\xba\x53\xfe\x19\xf6\xbd\xf4\xd6\x0c\x3b\x56\x1d\xe9\x0c\xdb\x83\x29\x20\xbb\x91\x1d\x19\x27\x29\xab\xa2\x45\x84\x13\xb0\x24\x80\xa0\xfd\x04\xad\xb6\xb5\x53\xeb\xa0\xdd\xb6\x95\xf8\x69\x98\x7a\x8d\xcf\x5f\x47\xd6\x75\x64\x71\x1f\x91\x9f\xd5\xac\xe0\x68\x28\xcb\x4c\xcd\x6c\x90\x72\x5e\xc5\x62\x9d\xa4\xf4\xb2\x4a\x99\x5e\x40\x20\xa9\x90\xb1\x14\xf8\x16\xbd\x84\x18\x0d\x2a\x03\xac\x69\x83\x90\xdb\xb6\x74\x6a\x1e\x3c\xd1\x96\x8a\x9f\x80\x1f\x5c\xbd\xc7\xd3\x40\x3b\xda\x5f\x70\x4f\x43\xee\xd5\x67\x39\x5b\xa0\xad\xa6\xff\xb1\x2d\xa0\x0d\xca\x57\xac\xf1\xd0\x01\x96\x35\xe3\x03\x24\x21\xad\x26\xee\x40\xaf\xa3\x6a\xe9\x9d\xb0\xab\xff\x25\x5a\x01\x4c\x6c\xf3\xa6\x22\xf0\x67\xdb\x74\x7c\x07\x12\x71\xc5\x93\x4b\xa3\x11\x6d\x27\x39\xb1\xb4\x31\x95\xbf\xd9\x81\xd4\xd4\xdc\x4a\xd6\x01\xfc\xa7\xc2\xcc\xf4\xc5\x79\xcc\x51\x0c\x0f\x7c\x57\xfa\x26\xc2\x05\x9f\x18\xf9\x92\xbe\x09\x2b\xf1\x5f\x4b\x5b\x8b\xf9\x6d\xfd\x4e\x9d\x85\xfe\xb2\x85\xb0\x47\xa8\xee\x72\x26\xa7\x90\x7b\xb0\xe5\x05\x3b\x8b\xb3\xb7\x82\xcd\xd2\xb0\x37\xe5\x1c\x61\x4a\x59\x76\xf2\x68\x86\x94\x69\x4b\x3c\x20\x14\x8c\x9d\x69\x5b\xe9\x6a\x22\x2a\xd2\x92\xa6\xa1\x9f\xf1\x33\x53\x15\xb4\xd0\xad\x6d\x38\x4e\xdd\x60\x9b\x83\x1d\xc2\xfe\xf4\x8d\xe1\x4c\x96\xd6\x37\x1f\x64\xfd\x93\x58\x97\xcf\x66\xfe\x10\x91\xb3\x3f\x31\xde\x0a\x2e\xc9\x16\x13\x6f\xf9\x2b\xe8\x15\xf4\x1f\x5c\x43\xea\x56\xfa\x04\xce\x8c\x53\x7b\x69\x13\x58\x21\x7e\xb6\xd4\xb1\x0c\xf6\x56\x1e\xf6\x95\x8e\xd9\xf6\xa0\x7d\xd4\xf0\x1e\x8c\xed\x96\x35\xbb\xe1\x27\x6b\x95\x5e\x5b\x72\x91\x69\xaf\xb5\x30\xf4\x32\xe6\x67\x60\x92\x65\xc4\x1c\xc5\x03\xea\x07\xfa\x0a\x99\x57\x72\x2d\x6d\xab\x98\x73\xd2\x9e\xea\x21\xd0\x1e\x3c\x8e\x7b\x70\x49\x5b\x37\x62\x9b\x58\xe3\x6c\x7f\xa1\x33\xe8\x51\xdd\x7b\x58\x65\xa5\xaa\xba\x7c\xa6\xb9\x68\x75\x11\x83\x61\xcc\x2f\xd3\x9b\x09\x4e\xee\x5c\xd1\x6a\x3a\x96\x15\x8a\xdb\xd1\x64\x3a\x71\xd2\x1a\x6a\x71\x86\xe4\xc4\x4f\xbc\x4a\xee\x73\x80\x85\xd5\x88\x4c\x5b\xae\xa3\x25\xdc\xac\x15\x73\x10\x06\xe3\x50\xe7\x6c\x16\xab\x79\x5c\xad\x92\x19\x5d\x77\xbd\x00\x61\x1c\xa8\x4e\xd4\x76\x10\x9b\xca\x6e\x0a\xce\xd0\x57\x16\x8d\x45\xd9\xb4\x8d\xa6\x29\x09\xdd\xd4\x3d\x59\x2d\xe1\x37\xf0\x83\x9a\x1f\xfb\x2b\x30\x7f\x79\xc3\x96\x28\x74\xaf\x70\xc6\x8a\x25\xc8\x32\xe6\xbf\x0e\x17\x56\x74\xe7\xb3\x9a\x3a\xe6\xae\x56\x5f\x73\x0e\xc3\xb1\x01\xd6\x7c\x21\x66\xd5\xc4\xf2\xf3\xe8\xa3\xcb\xe7\x21\xf7\x68\x13\x0a\xb9\x09\x6b\xa9\x73\x72\xb5\xe1\xa1\xf8\xbc\xcc\xc5\xfb\xc3\xb1\xf9\xaa\xa9\x5b\x3c\xd1\xe9\x22\xfe\x8a\x8d\xf0\x33\x96\xb4\x9d\xca\xda\x71\xe9\x55\xcd\x78\xe6\x92\xae\xbf\xf9\x9f\x19\x23\x5a\x07\x34\xfb\xe8\x4f\x1b\x42\xf9\xd3\x69\x7d\xd5\x22\xe4\x10\xb5\xab\x14\x8b\x6f\xc2\x2f\xe5\xff\x09\x1f\x8b\x5d\xcc\x6a\xdb\xbf\x06\xed\xc8\xf8\xb2\xc5\x0d\xa9\x15\x9b\x56\x44\xc3\x6c\xd6\x95\x8e\xef\x72\xcb\xd4\xad\xb5\x03\xd2\xe0\xd4\x97\x85\xe1\x62\x2c\x8d\xaa\xbb\x21\xbc\x9e\xee\x20\x64\x0a\xec\xd2\x9f\x60\x25\xbc\x24\x52\x4b\x62\x2b\xa7\x92\x5c\x77\x22\x90\xf5\x85\x52\xb5\x9f\xc1\x5c\x0a\x34\x6e\xde\x48\x6c\x85\x26\x2e\x6b\xa7\xb9\xc0\x67\x3a\xd6\xcb\x8a\x48\xbc\xda\xf9\x92\x2f\xa4\xb7\x05\x85\x62\x07\xf2\x7e\x9d\x93\x10\x25\x17\x0b\x3e\xf2\xef\x52\x96\x60\x8e\xbc\x75\x94\xba\xc4\x7d\x1c\x18\x88\x09\x7f\xc3\xea\x03\xe7\xed\x5f\xcf\x9c\x00\xf6\x6f\x1e\x41\x38\x40\xb5\xcb\xca\x68\xab\xe1\xea\xf6\x08\x99\x27\x38\xae\x26\x40\x22\x02\xe7\x98\x3f\x8b\xae\x80\x6e\x5a\xae\x70\x35\xe8\x2f\x08\xe3\xb3\x41\x18\x35\x72\x5f\x81\xb7\x12\x6e\x71\xdc\x21\x8f\x70\x0e\x4b\x06\x65\xef\x7b\xcd\x18\x84\x27\xbb\xde\x23\xc6\xc2\xca\x65\x85\xb4\x99\xc8\x86\xb6\x11\xd2\x68\xfc\x41\xd5\x77\x71\x0f\x4e\xcb\x2f\x14\xcd\xc5\xe7\x6a\x0e\x08\x40\xac\x9e\xef\xca\x7b\x85\x25\x23\x19\xdc\xfd\xd8\x9e\xf8\x4f\xec\x42\x6c\xd5\xf1\xcb\xac\x59\xe8\xd7\x7d\x51\x8c\x53\x68\xbd\xab\x86\xae\x42\x85\xcb\x2a\xa9\x25\xe8\xc9\x96\x52\x89\x96\x1d\x51\x79\x57\xf4\x9a\xc5\x30\xc5\x0a\x7d\x99\x1a\xb5\x0d\xbf\x81\x51\xc6\x5b\xca\x5b\x4f\xdc\x84\x33\x39\x46\xc2\x22\x7e\x11\x7b\x16\xfd\xf4\xf1\x45\xcc\x74\x1a\xdf\xf7\x27\xd1\x4f\x2d\x70\x45\xe9\x93\xf0\x86\x65\x9f\xa8\x4b\xb1\xb6\xe6\x6d\xe2\x6a\x71\x6a\x85\x9f\x68\x95\x68\x46\x9e\x9d\x40\x22\xc8\x50\xbd\xe1\x4f\xe6\xcf\xe1\x8e\xe5\xd2\xb9\x4a\x48\xcf\x19\xc3\xf1\x8e\x73\x67\x81\xac\x57\x61\xc7\x19\xf7\x99\xa1\xbe\x2c\x62\x23\xd1\xea\x1a\x41\x8b\xa3\xfd\x5a\xee\x82\xd3\xa8\x56\x8d\xe3\x45\xc3\xba\x7f\x65\x01\xc2\x08\xcd\x1d\xe3\x3f\xfe\xbd\x0c\xad\xe2\x3f\xde\x2e\xa5\x07\x7b\x2b\xa7\x56\x76\x17\x1c\xcb\xde\x22\x41\xce\x3f\x66\xd6\x88\x26\x1f\x3b\xc9\xb0\xe0\x07\xee\xbd\x41\x4f\xe1\xa4\xb8\x2e\xa0\x96\x30\x03\x97\x47\x63\xed\xf4\x19\x75\x39\x22\x61\xe1\xf5\xe2\x0f\xc2\x11\xf9\xc6\xac\x41\x7e\x4c\x2e\x24\xfb\xc8\xbd\x98\xed\xc2\x8c\xe5\xac\xd1\xf7\x53\x22\x58\xa5\x9a\x43\xe7\x52\x99\x6b\x94\x79\xa1\x07\x09\x99\x34\x6f\xef\x24\xda\x3b\x61\xe8\xa6\x0b\x54\x7b\x4e\xfd\x72\x12\xb6\x85\x78\x58\xdb\x2a\x3a\x55\x87\x14\xad\x12\xd4\x56\x6b\x33\xff\xf2\xe7\x97\x0b\xa5\x96\x5c\x4a\xf1\x3e\xa2\x8c\xfd\x28\xff\x26\xa9\x9f\x75\x24\xc7\xf5\xec\x02\xc6\xa5\xcc\xfd\x21\xeb\x08\xe7\x8c\xb7\x7b\x36\xd1\x38\x32\xeb\x4d\xfb\xf1\x56\xfe\x97\xe5\x74\xf4\x32\x33\xae\xe6\x8d\x68\x4f\xcb\xcf\xc2\xe3\x02\x4d\x43\x43\xe6\x6a\xde\xf7\xda\xbd\x92\x00\x6e\x50\x85\x84\xfe\x1f\xbb\xae\x58\x4d\xb2\x62\x39\xe4\x27\x9e\xc1\x18\x8a\xec\xb7\x47\x6b\xe8\x7f\xb4\xf7\x7c\x86\x68\x87\x14\xfb\x37\xad\xc0\xe9\xc2\x90\xe5\x32\x94\xcf\xfc\x5d\xb3\x59\xb4\xba\x2b\xab\xa0\x44\x00\xb4\x59\xe8\xa9\xbc\x2b\x8d\x47\xc4\x66\xee\xaa\xda\x4d\x74\x7f\x36\xb3\xfc\x6a\xba\x98\xf9\xae\xc8\xee\xcc\x54\x86\x5f\xde\xac\xa3\x61\xf4\xb2\xcc\x10\x1f\x13\x6d\x9c\x6a\xe1\xa6\xc5\xf8\x5a\x51\xcc\xf2\x66\x74\x3d\x6b\x5b\xe9\xa5\x2c\x72\xca\x50\xee\x24\x7d\x57\x2a\x9c\x21\xd1\x3a\xa7\x4d\xe4\x9f\xce\x28\x4a\x2b\xc5\xc4\xca\xe5\xe9\xc9\x29\x7b\x65\x02\x52\x50\xf4\x4c\xf1\x13\x72\xc8\x11\x81\x70\x16\x25\x65\xe7\x43\x9e\x05\xa0\x77\xfe\xc4\x9e\x04\x8d\xb2\x99\x4b\x74\xc3\x50\xe9\xce\xac\xd1\xe9\x2f\x72\x70\x7d\x04\xc9\x3b\x63\x86\xe6\x1e\x49\xcc\xfb\x94\x11\x4e\xfa\x87\x2d\x57\x3c\x24\xe3\xc9\x2f\x65\x01\x14\xbb\xa8\x7a\x71\x31\xe5\xe5\x91\x9d\x82\x37\x40\xf5\xce\x3c\xde\x48\x50\xec\x7c\x8d\xf5\x15\xca\xb0\x99\x4a\x34\xc0\xf5\x25\xa5\x06\x15\x30\xc7\xf8\x59\xf7\x0f\x58\xa7\xa2\x6b\x50\xc0\x8b\x97\x98\x31\x15\x38\x8f\x56\x28\xc4\x40\x65\x32\x26\xfb\x1f\x68\x15\x75\x4a\x1c\x0f\xea\x03\xff\x09\xaa\xa0\xe5\x3b\x53\xb8\x03\x50\x99\xf3\x05\xd6\x15\x38\xd2\x66\x36\xa1\x46\xec\x8a\x8b\x33\x4b\xb0\xf0\xec\xf7\x3a\x67\x6c\xae\x12\x57\x5f\x41\xeb\xb9\x24\x55\x14\x0a\x21\x57\xe4\xc3\xe8\xa1\xa4\x6a\x69\x32\xea\x13\x59\x23\xba\x8f\x1e\x08\x4c\x13\xac\x45\x77\xec\xb4\xe2\x1e\x45\x9d\x9d\xb3\x58\xc7\x51\x37\x1b\x77\x62\x2d\xba\xab\x28\x48\xff\x89\x69\x99\x55\xab\x45\x18\xf1\x8a\x64\xb5\x15\x51\xce\x81\x94\xb5\xf4\x5f\xf0\x7b\xf9\x5e\xfa\xc1\xc4\xb7\x92\x01\x5a\x47\xe4\x64\xd1\x1e\xda\xf6\xc3\xef\xf9\x19\x54\xad\x77\x2f\xa7\x0b\xff\xe8\x2c\x60\x5e\xc1\xbd\x6d\xc8\xf4\x4c\x4c\x50\xf0\x43\x7f\x52\x10\x6b\xc0\x34\x4f\xf9\xbe\xf2\x90\x0c\x90\x37\x93\x4d\x52\xce\xe3\xdc\x84\x47\xc9\xcc\x6c\x7d\xe2\x7c\xc9\x56\x16\x71\x2a\x48\x58\xcd\x3c\x7b\xf8\x04\x7f\x34\x63\xb9\x37\x99\xb3\x92\x7e\xc9\x99\xc9\x5c\x4b\x0b\xb1\xe9\xa0\xfd\xc5\x07\xcd\x7b\x75\xb5\x19\xc3\xfa\x1e\xcd\x3a\x95\x8d\xd4\xa0\xea\x54\x38\x33\xef\x2b\x02\x65\x36\x20\x47\x3a\x24\x99\x1c\xdf\x2b\x4e\x16\x8d\x3d\xe9\x2e\xf8\xc4\x7f\x73\x48\xcc\x73\xe7\x4a\xbd\x3e\xb1\x4f\xb3\xe7\x39\x9f\x60\xc4\x30\x12\x96\x8e\xa7\x39\xd1\x0a\x4d\x5b\x75\x8e\x79\x3a\xed\x53\x75\x95\xf1\x89\xf8\xa9\x2a\x20\x6b\x16\x63\xa3\xfc\x96\x7e\x1e\x30\x49\x1a\xa4\x99\x1c\x17\x27\x7a\xa5\xfc\x1b\x31\x47\x10\x2d\xbb\x18\x50\xc4\x2d\x17\x7b\x7b\xf9\xb1\x06\xf9\x88\xb3\x35\x71\x8b\x8d\x2f\x5d\x49\x55\x13\x7b\x73\xd5\xba\xe9\x95\xf6\x9a\x8d\x6a\xb0\x34\x4b\xb4\x52\x35\xba\xf0\x2b\x5d\x2e\x27\xf2\xad\xc9\x0c\xe9\xa8\x9c\x25\xb1\x33\x45\x4c\xc3\xf8\xf0\x57\xfc\x7f\x9a\x02\xff\x0b\x5c\x1f\xc5\x0b\xcf\x2c\x56\x9c\xf8\xa2\x53\x1f\x11\xc3\x3b\xb5\xd4\x8b\x6a\xcb\x28\xc9\xf9\xac\x7d\x7f\xe1\x97\x1a\x54\x47\x54\xaf\x10\x46\x29\x9f\x94\x5b\xd2\x1e\xca\x4f\x15\x3d\x21\x0d\x4a\xee\xe6\x27\x9c\x4f\x13\x1d\x35\xde\x0c\x8f\xe2\x5f\xd4\xbf\xf5\xf7\xe3\x4e\xcb\x60\x79\x1e\x65\x39\x4b\x9b\x9c\x4a\x08\x07\x7e\xde\xd2\xa3\xf8\x13\xa6\x4b\x4e\x94\xb6\xa7\x79\x72\xc6\x23\xb5\x7b\xdd\x37\x41\xa3\xb2\xae\x3a\x9b\xe6\x21\xdf\x58\x3e\x93\x74\x40\x62\x2c\x72\x3b\xf7\x5b\xb4\xc8\xb4\x3a\x7c\x04\x1f\xcd\x6a\xf1\x1f\xcd\x69\xd5\xf4\x7a\x3a\x32\x87\xe4\xc7\x9d\xcc\xf4\x6b\x02\xed\x52\x2a\x4e\x30\x49\x9a\xf4\x12\x75\xea\x0a\x71\x7d\xa1\x57\x6a\x1d\x33\xc1\xf4\x5f\x9a\x27\xa4\xcf\x01\xd3\x9e\x27\xed\x31\xfc\x4a\x2f\x88\xd6\xeb\x22\x49\xfc\x10\xa7\x0c\x23\x59\xbe\xaf\x46\xae\xa2\x5c\x74\xf7\x16\x07\x80\xd3\xd6\xdc\xe3\x0d\x41\xa0\x55\x25\x6b\x1d\xfc\x47\xb3\xa8\x64\x6d\xfa\x2d\x71\x44\xc1\x43\xd2\x1a\xa6\x8d\x49\x48\x62\x43\x41\x39\x2b\x49\xdf\x92\xc6\x19\x2a\xc9\xb4\xe8\x93\x3a\x5b\xca\xba\xa3\xff\x32\xce\x53\xfe\xec\xe3\xc8\xe3\x80\x67\xee\x76\x62\x67\xf0\xe1\x9a\xcb\xbc\x3e\xe8\x97\x55\x13\xcb\x1a\x59\xae\xae\x2e\x6e\xa7\x98\xc5\xa3\x0a\xc8\x94\x1e\x46\xaf\x69\x2d\xe5\x27\x34\xde\x78\x13\x58\x97\xd8\x68\x38\x0d\x30\xa3\x6d\xb4\x0f\x80\x7f\x47\x2f\x66\x38\x80\xc2\x7d\x27\xe4\x1b\xa0\x75\xee\xff\x13\x8f\x81\x1e\xac\xe9\xe2\x65\xc3\x66\xab\x1b\xcc\x1f\x08\x9c\xf1\xb4\x78\x14\xca\x11\x79\x9a\x1b\xd0\x40\xc6\xc2\x3c\x08\x9d\x04\x86\x19\x57\x22\x0f\x12\x57\x64\xb6\x21\x3d\x51\x5a\xed\x36\xe4\xf6\xd1\x63\x2a\x1e\xf2\x73\xdf\x0c\x59\x2e\x3a\xcd\xed\xbe\x08\x45\x97\xaf\xe9\xe4\x39\xa0\xc1\xd6\xd3\x98\x38\x4a\x57\xfd\x2a\xf2\x25\x32\x85\xa7\xcd\x53\x89\x99\xc4\xae\xdc\x7b\xf4\xb3\x40\x66\x36\x83\x76\x2f\x01\xcf\xb4\xa4\x05\x45\x4d\xd6\xe8\xa8\x9f\x82\x1f\x2b\xbf\x52\xe5\xbe\xf5\xb2\xc9\x54\x1b\xb7\x32\xe1\x10\x6e\x5c\x73\x9d\xcb\xc1\x37\x58\x87\x32\x9e\x62\xd5\xca\x97\x85\x0d\xbc\xf5\x82\x98\xfc\x74\xae\x37\xfd\x4c\xae\x17\x67\x29\xe5\x6e\xd6\x1b\xf6\xb2\xf8\x01\x3d\xcc\x72\x8c\x8c\xd7\x8c\x66\x7a\x07\x87\x2b\xc3\x18\x27\x7d\x4f\x4a\xcf\x12\xc1\x6e\x4c\xa1\x1b\x7d\xeb\x9a\x77\x9c\x47\xb4\x79\xd6\x05\x8c\x8d\xf8\x90\xa2\xad\xe0\xa5\xc2\xcc\xf7\x34\x95\xc8\xc7\xd1\x5c\x72\x10\xa9\x3f\xb9\x3c\xcb\x52\x0c\xc5\x75\xea\xf2\x85\x45\xa7\x30\xf5\x6a\xfe\x97\x20\x8d\x82\xcd\x5b\xbd\xf7\x86\x44\xc9\x59\xe7\xb6\x59\x70\x8e\x35\x7d\xcd\x2b\xce\xa4\xff\x13\x00\x1f\x00\x31\x2e\x0e\x00\xc0\xcd\x67\x3c\x0f\x7f\xe3\x59\x0d\x21\x15\x21\x29\x23\x95\x06\xa5\x44\x2a\xa5\x52\x69\xa1\xbd\x6e\x7e\xfb\xbb\xef\xf6\xde\xd7\x5d\x57\x77\xed\xbd\xf7\xde\x91\x6c\xb2\xe7\xf3\xec\xfd\x8c\x6c\xfe\x3f\xee\x2d\x8b\x79\xdc\x30\x36\x3f\xdb\xb7\x1a\x29\x5e\x2e\xbe\x59\xb1\xbe\x80\xc1\xfc\x54\xf2\xd5\xb8\x1c\x40\x0a\xc5\xb9\x47\xd3\x4a\x8d\xf3\x74\x45\x71\x0c\xbd\x52\xf3\xeb\xf0\x48\xf6\x5b\x95\xd3\xbe\x8d\xca\x9f\x72\x5b\x97\x4b\xd2\xcb\xe2\xe7\x9b\xae\x09\x4f\x08\x58\x16\x01\x9c\x7a\xce\x7b\xf5\xa7\x6a\xf3\xba\xad\x22\xa8\xfc\x76\xf5\x64\x02\x2a\xd1\x96\xb7\xd0\xad\x0b\xad\x4b\x5c\x53\xc9\x86\xa2\x82\xda\xd8\x74\xbd\x99\xe1\x7f\x21\xf7\xb2\x29\x39\xee\xbe\x54\x25\xa6\x59\xe2\x12\x2c\x3d\x28\x2f\xd8\x54\x2e\x78\x26\xfa\x65\x01\x73\x36\xf1\x56\xaa\xd7\x57\x4f\x6e\x0e\x15\x0e\x97\x77\xd4\xdf\x63\x9c\x29\x49\xaf\xd9\x4e\x13\x17\xfc\xa8\x48\x4d\x79\x6e\x48\x2f\x81\x62\x3e\xe5\x3c\x2e\x48\x08\xa1\x67\x6f\xcb\x5b\xec\x6b\xad\x74\xd1\xc6\xb8\xac\x91\xfe\xa9\x0c\xd9\x64\x14\x14\x48\x16\x5a\x68\xd8\xcf\x78\x32\x15\xb9\xea\x7e\xfb\xb0\xd0\xb4\x5c\xd6\x32\x8f\xb1\xa5\xc4\xa5\x61\x2d\x6d\x46\xc1\x60\xcd\xe2\x14\xba\x61\x63\xf9\xb9\x18\x55\x4e\x5e\x71\x60\xc8\x3a\xcd\x33\x23\xdf\xe7\x9d\xe2\x59\xce\x21\x97\x69\x92\x46\x55\xd7\xa6\x72\xc1\x6e\xc9\x33\x8b\x7e\xb6\x80\x77\x52\x20\xec\x9d\x4a\x3b\xce\x78\xd6\x71\x92\x76\x99\xde\xdb\xa2\xa4\xef\x48\x5f\xd6\xe0\x43\x1f\x39\xb6\xaa\xfa\x3a\x80\x86\x3f\x2b\x77\x01\x63\x0f\x9a\x17\x45\x43\x19\xbb\x21\xc3\x1a\xb8\x72\xfb\x66\x6d\x1e\xf2\x7d\xbd\x97\xa2\x11\x3b\x64\xfa\x48\x94\x84\x77\x09\x82\x7a\x94\xc0\x18\xa3\xbd\x23\x06\x9c\x43\x57\xb7\x6c\x03\xf7\xa6\x7d\xac\x9f\x00\x0b\x8e\x4d\xaa\x16\x43\x6b\xc2\x4f\x97\x7d\x81\xae\x1c\xfc\xa3\xc8\x02\x2e\xdf\x9d\x94\xf7\x1f\x62\xdc\xbe\x46\x4b\x45\x4b\xd6\xfb\x29\x14\x58\x93\xe9\x57\x51\x00\x7e\x56\xb0\xb8\x67\x0d\x1c\xc0\x60\xb4\x7f\x83\x93\xe8\x71\xcd\x37\x60\x24\xed\x54\xbd\x11\x2e\x89\xbf\x59\xed\x04\x4f\x84\x97\x95\x55\x20\x59\xfe\x2f\x0b\xaf\xa2\xf3\x76\x1f\xce\x6b\x40\x07\xb7\xaf\xd0\xba\x60\xc4\xfa\x20\xc5\x51\x7c\xaf\xd9\x12\xd1\x1a\xc6\xdf\xfc\xcc\xee\x78\x46\x1d\xfe\xb1\xdd\x8d\x11\x4d\x7b\xd1\x6c\xc1\x98\x93\x16\x53\xf7\x12\xbf\x17\xcf\xaa\x12\xe0\xe3\xe1\x47\x4b\xbf\xe2\x6f\xfc\x9b\x0b\xad\x19\xab\x76\xef\xcc\x5b\xcc\x08\xd9\x3e\x37\xbb\x82\x21\x58\x9f\x21\xbf\xc4\x38\x65\x16\x2d\xcc\x21\x26\xf3\x3e\x75\xf1\xb9\x0e\x38\xa9\x8d\xc2\xc9\xa1\xc5\x36\xc5\xb0\x7f\xa6\x7e\xaa\xb3\x63\x93\xe3\xed\x2a\xc7\xd9\x53\xc3\x17\x97\x7a\xb3\x6a\xfd\x81\x02\x90\x95\xbc\xfb\xef\xdc\x78\x96\xd9\xf6\x19\x9a\xcf\xcc\xb1\xf5\x72\xf9\x2a\x26\xd5\xac\x49\xf0\x82\xb9\x84\x97\xd5\x79\x59\x6c\x8b\xdd\x6f\xed\x15\x39\x50\xcf\x37\x56\x0a\xed\x52\xf1\x5a\x48\xb0\x27\xee\x4a\xe5\x2a\xfe\x89\xb0\xe1\x12\x35\x4f\xe7\xbf\x23\x7f\x8c\x7b\xd5\xf3\xad\xbe\x96\xf3\x73\xfb\x24\x8d\x0b\x67\xe9\xfa\x36\xd9\x71\xf6\x5a\xf3\x3f\x05\xb6\xac\x55\xdc\xaa\xce\xd9\x9a\x7c\x6c\x45\xcb\x63\xd5\x77\xea\x9c\x86\x93\xca\xe0\x94\x8e\x1a\xb1\xbc\x36\x6e\x49\xc5\x7a\xd9\xc2\xb0\x35\xc5\x06\x09\xf7\x40\xbf\xf1\xb2\x68\xc2\xb3\x24\xa7\x5d\xe8\xb1\xed\xad\xda\x97\x9f\xb5\xfe\x85\x34\x8b\xab\x35\x17\xf3\xb7\xb0\x8d\x9c\x9a\x8e\x6d\xf9\xe9\xa8\x5d\xcb\x46\xc3\x66\xca\xd6\x86\x95\xfa\x17\xc9\x77\xab\xaf\xeb\xc8\xb1\x7b\xca\x93\xb3\x67\x86\xa6\x17\xdd\x55\x95\x1f\xd8\x64\x5c\xa0\x70\xf0\xf4\xd0\x7d\x95\x0a\xb6\x8d\xa8\x24\xa2\x16\xdb\x49\x92\x66\xfe\x35\xf3\x17\x3c\x1a\xe7\x22\xbb\xa8\xbd\xad\xe2\x35\xe2\xd0\xdc\x50\xb6\x91\xec\x5a\x9f\x57\xbc\x3b\xe9\x4b\xf5\x81\x02\xd3\x18\x72\xd9\xcd\xbc\x97\x87\xbb\x8a\xf6\xe6\x34\xef\xcf\x37\x40\xd9\xa1\x1e\x77\x74\x51\xca\xa6\x6d\x2a\xe5\x7b\xe9\xb8\xed\x1f\x12\x73\xe1\xdd\x95\x1b\xb8\x4f\xb9\x03\x6c\xeb\x76\x7a\xad\x0e\xee\x68\x26\x57\x91\x49\xa3\xf5\x31\xe5\xd6\x49\xd2\xea\x79\xc5\xf5\x31\x8b\xca\x14\x05\xab\x0f\x27\x15\xfe\xca\xe3\xec\x8f\x35\xd8\xe9\xba\x3c\x1a\x75\x73\xd5\xb9\xdb\x98\xca\x02\xb9\x8b\xed\x5f\xe2\x8b\xa2\xee\x95\x07\xb8\xb9\xbc\x05\xac\xf6\x76\x87\x46\x2d\x7c\xa0\xd9\xbe\xce\x84\x14\x57\x6f\x5a\x85\x24\x39\x56\x0d\x95\x0d\x47\x8f\x96\xed\x2a\x7a\x76\x78\x63\x61\xa9\xf1\xe3\xfe\xed\x79\xe3\xfa\x93\x1e\x39\xda\xda\xec\x1d\xdb\xd8\x4a\x57\x45\x9c\xad\xa5\x38\x4d\x7c\x6c\x25\xc2\x75\xe2\xd9\x11\xf4\xa1\xa7\xf4\x00\xd0\xac\x2f\x9d\x5e\x94\x19\xd6\xf9\x9e\xfe\x31\x61\x75\xab\x3f\x90\x18\x35\xdc\x40\x01\x17\x04\xaf\xad\x3e\x0e\xbe\xde\xb7\xac\x6c\x06\xf4\xc9\x6d\x7f\x81\x13\x62\xe3\xf0\x5b\x6f\x81\xd2\x6c\xf6\xa9\x10\xac\xcb\xd4\x43\x9c\xca\x98\x43\x84\x0f\x21\xa0\x11\x9c\xd6\x37\x07\x3c\x99\xe9\xd1\xa9\x02\x5f\x25\xcc\x6b\xf9\x0a\xd9\x45\xd5\x37\xac\x85\x8a\x82\x17\x57\x9b\xc0\x3e\xfb\xe6\x94\x0e\x22\xcb\xdc\x7c\x0a\xa6\xa0\x73\x1c\x7e\xe6\x7c\xc0\x16\xd8\x84\xab\x82\xf1\xb9\xa6\xe1\xe2\x40\xc6\xdf\x84\xc3\xd0\x22\x64\x2e\xf0\x6f\x6f\x29\x32\x37\x73\x4d\xa7\x3d\x32\xe7\xc4\x87\x16\x03\x62\x12\xa5\xab\xbf\x80\x1c\x0d\x9e\x5c\x35\x8a\x8c\xfb\xfe\x2c\xcd\x44\x53\xdd\x3c\xf2\xbb\x30\x73\x87\x9f\x39\x4d\xd8\x3f\x36\xc7\x55\xa6\xb8\xd6\x14\x14\x9b\x31\x42\x19\x1d\x83\x81\xc4\x0a\x80\xd2\xf3\x9c\xd1\x9d\x31\xd4\x41\x63\x44\x9e\xa8\x6b\x7e\xc0\x58\x13\x15\x5f\xbf\x90\xb1\xe0\xd0\xd5\xaa\x39\x0c\x6b\xdf\x7b\x25\xad\x8c\x23\x6e\xae\xf9\x0b\x19\x72\xc7\xc9\x39\xff\x63\x9c\xb7\x11\x29\x09\x62\xaa\xe9\xb0\x48\x40\xec\x60\x9c\x18\x48\xe5\x1e\x07\x96\xf6\xfc\xc5\x19\xca\x88\x6a\x2f\xe2\x98\x9e\x48\x69\x5e\xcc\x16\x45\x6d\xab\x0b\x60\x2f\x3b\x54\x5b\xe9\xc7\x1a\xf0\x1d\x28\xfe\xca\xc2\xdc\x36\x1a\x83\x59\x4e\x8e\x53\x75\x87\x98\xff\xd9\x34\x29\x4e\x31\x8d\x66\x8b\x85\xe7\x99\x7b\xf0\x17\xfd\xa5\x62\x33\x7a\x71\xf7\x6e\xd1\x8a\xf4\x77\x6d\x57\x85\x4b\x4e\x98\x36\xf9\x09\xac\xa2\xa6\xd4\xca\xf8\xfb\x0e\x31\x2a\x84\x3c\xc4\xb7\xa0\x78\x07\xb7\xc7\xcd\xc4\xa0\xe0\x7c\x70\xfc\x43\x2b\xe3\x98\xd8\xdc\x56\x4c\x65\xef\x30\x4b\x11\xce\x64\xed\xc6\x69\x7d\x7d\xea\x5f\xf4\xd5\x5d\xc1\xaa\x98\xf4\x84\xd6\xbb\x8a\xc1\xe3\xfc\xc6\xbd\xf2\x95\x91\x69\x35\x0c\xa9\xf2\xd0\xcc\x72\x48\x32\xdf\xd7\xb7\x68\x9d\x48\xb2\xeb\x7d\x1e\x57\xf0\xd1\x71\x69\x36\x87\xef\xbe\x6e\xad\xec\x27\x97\x67\xf6\x55\x30\x89\x5d\x8f\x15\xf5\xbe\x32\x7a\xd2\x52\x3b\x45\x79\x7f\xa4\x9d\x69\x5d\x9e\xd3\x7f\xec\x76\x03\x4d\x1b\x19\x31\x52\x5d\xa6\x99\x13\x04\x94\x15\x2a\xfb\x7d\xee\x16\x06\xca\x13\x76\xd5\xe5\x36\x4a\x9e\x38\x4e\xd3\xb4\x8b\x9c\xd7\xed\x93\xd9\xf3\x15\xe6\x91\xfc\x9d\x9c\xd3\xe8\xbd\xde\x7d\xe5\xcb\xa9\xb5\x1d\xff\x95\x84\xa6\xfd\xdd\x82\x14\xa2\xc7\xec\xea\xc7\x8d\xa9\x11\x6b\xab\xbe\xe7\x46\x04\x7e\x2a\x9d\xd0\xf9\xfa\xc0\x05\xe5\x1a\x93\x5d\xa4\xdc\x69\x8a\x5a\xc7\x49\x9a\x59\xd2\x79\xeb\x52\xa5\x12\x61\xac\x79\x15\xaf\x88\x9b\x83\x32\x7b\xa7\x57\x27\x50\x0f\x77\x54\x54\xec\x4d\x1d\x69\x71\x2c\x9d\x1f\xff\xa0\x9e\x53\x58\x7b\xe4\x5e\x55\x99\xd1\x3b\xb0\xab\x34\x5f\x7f\xcb\x27\xa8\x20\x48\xeb\xb5\x2b\x5c\x5f\xad\x3a\xee\x38\x49\xdd\x28\x3b\xb4\x0e\x91\x3a\x8b\xac\xcc\x2f\xf0\x82\xb9\x77\xd0\x4d\x3d\x1d\xf5\x73\xa8\xb3\x3a\xc2\xab\xf3\x53\xa9\xcd\xff\x54\x2c\x8d\x37\xd6\x6f\x2c\x01\x8f\x94\x54\x79\x17\x9c\x0c\x54\x94\xba\x1a\x66\xfa\xec\xcc\x7f\x9b\xb3\x62\x57\xa0\xde\x53\x7d\xd5\x71\x8e\xda\x57\x1e\xba\x2e\x57\x72\x4d\xd4\xbe\x72\x32\xf7\x3d\xf7\x35\xf4\x69\xb4\x0f\xa0\x90\xea\x86\x6d\x81\xdc\x64\xbb\x3e\x14\xb8\x10\xeb\xdf\x99\x03\x5a\x86\x85\xb6\x64\x82\x8d\x07\xb7\xd5\x4f\x87\x20\xaf\x53\x95\xdb\x61\xb2\x73\x57\xd1\x2b\x24\xc7\x3e\x38\x2f\x10\xbd\x6b\xd5\xae\xf9\x13\x9f\x6e\xf2\x59\xb2\x97\xe1\x02\xbd\x1e\x0d\x87\x9a\x48\xad\x43\xc3\x50\x63\xb2\x55\x9f\x29\xd4\x16\xbb\xb7\xd3\x15\xba\x15\x16\xd8\x62\x02\x6f\x39\xb8\xb9\xae\x05\x1e\xf5\x1a\xac\x78\x8d\xf0\x9d\xbb\x8b\x1a\xd0\x0c\xfb\xe0\xbc\x95\x58\x8a\xd5\x69\xf5\x3d\xdc\xdf\x74\xa6\xc4\x9a\xe1\x06\x3d\x38\xf5\x09\x5d\x40\xaa\x18\x8a\x42\x9e\x27\x9b\xf4\xb6\x22\x23\xb1\x3b\x3b\xee\x21\xad\x61\x7b\x9b\x7b\x91\xfb\x07\x6d\xea\xc2\x50\x4f\xaf\x9e\x0a\x15\x7a\xc1\xb9\xab\xe8\x38\x46\xb5\x0f\xce\xbd\x8d\x6f\xb2\xba\xa2\x36\xe2\x17\x4c\xcd\xc5\xef\x18\x20\xc4\x3d\xb5\x81\xb8\x49\x0a\x1d\xd4\x11\x91\x49\x17\x7b\xfe\x63\x3c\x89\x9d\xdf\xb1\x90\xa1\x0e\xdb\xd8\xf4\x89\x91\x79\x70\x51\xad\x94\x41\xf7\x6a\x28\x3f\xc3\x30\x3a\xf7\x17\xb6\x32\x2e\xd9\x47\xe4\xda\x12\x33\xad\xbe\xa8\xbe\x12\xb6\xa6\x47\xc5\x07\x89\x40\x28\xea\xa4\x13\xf7\x33\xc9\x74\xa0\x9a\xeb\x94\x24\xea\xf9\x83\xc3\x88\x79\xdb\xbe\x95\x7d\x2b\x6c\x4d\xd3\x6a\x76\xd8\xc1\x39\x35\xbd\xac\x0f\x5e\x75\x65\x3f\x59\xa5\xce\x43\x05\xcf\x58\xd1\xf6\xc9\xfa\xa3\xac\xc5\xd6\x6b\x54\x9b\x99\x3d\xa6\xf5\x22\x3e\x33\x0a\x7c\x38\x12\x2d\x06\xb2\xfa\xfa\xc7\x44\x47\x93\xdc\xba\xcd\x85\xbe\x31\xc3\x6d\xe1\x02\xef\xb0\x45\x8d\x01\xfc\x58\xff\xdf\xd5\xaf\x78\x5c\xaf\x8a\xb2\xf5\xdc\x3e\xe7\x93\x05\x0b\x39\x5f\xed\xb1\x1c\x11\x67\xbd\x75\x80\x32\x86\xed\x67\xf6\x97\xb0\x9d\x15\x0f\xf6\x0f\x07\xa9\xaf\x66\x11\x7d\xdd\xaa\x0d\x89\x6f\xbb\xe6\x28\x38\x31\x47\x5b\x77\xc8\xee\x86\x96\x36\xac\x95\x1e\xf4\xaf\xa8\x1a\x10\x8f\x79\x65\x95\x4e\x11\xf9\x39\xb7\x1b\xdf\x09\xfa\xec\x0b\x74\x69\x7c\x53\xeb\x42\x85\x2f\x97\x6e\x26\x15\x94\xb0\xbb\xc1\xc5\x43\xa0\x21\x2f\xf3\x7b\xef\xfd\xdc\xfd\x89\xbc\x4e\x1b\xdd\x8f\xe8\xfb\x2d\x3e\xd9\xc6\xd0\x55\xf5\x1b\xd4\x87\xfd\x5d\x2a\xc7\x94\x8b\xbc\x2c\x4b\xe6\xc9\xce\x38\x2b\x8d\x53\x24\x31\xf6\xd5\x5a\xbe\xf0\x86\xf5\x2d\x79\x06\x3f\xdc\xec\x33\xff\x0a\xa7\x1b\x50\x0e\x36\x96\xde\xcc\x64\xf4\xae\x2c\x9e\x9e\xb8\xa8\x23\xb5\xc0\x32\x3a\xa5\x99\x63\x30\x3d\xdc\x54\x17\xa7\x37\x3d\xf0\xb4\x72\x9a\x76\xf5\x9e\xd7\xc5\xfe\xea\xc5\xce\xa8\xc1\x45\x7e\xd1\x7e\x28\xfb\x8c\xe4\x98\xcd\x6c\x59\xbf\x60\xc2\xdc\x9b\xbf\x95\x9b\x0e\x1c\x1e\x8c\xa9\x3c\x9b\xe9\xdd\x33\x56\x56\x90\x70\xbb\x63\x41\x71\x52\xf4\xb6\xe6\x75\x05\x7f\x1f\xc6\xeb\x26\xe5\x0d\x1c\x18\xac\x28\xcc\x21\xed\xb9\x5e\xf4\x36\x7b\xa6\x33\x90\x77\x53\x79\xc4\xfe\x7a\x76\x8a\x94\x67\x63\x25\x4b\x10\x16\x99\x67\xf2\x9e\x70\xcb\x01\xb3\xc1\x3f\x6b\x97\x67\x2e\xea\x49\xab\xac\x48\xa8\x6e\xaf\x2b\xb3\x8e\xfe\xb3\xa9\xaf\x48\x7d\xf8\x48\xad\xdc\xf8\xed\x40\x55\xc5\x96\xdc\xf8\x3d\x97\x8b\x18\xda\x4a\x67\x22\xef\xb8\x2a\xcf\xfe\xa3\xe6\x87\x2c\xd9\xe6\xa0\xf4\xa7\xc8\xcc\xbc\x8c\x87\x73\x9b\x5e\x25\x02\x13\x94\xd6\xbb\x79\x60\x10\x15\x3f\xaf\x06\x6b\x69\x5b\x7b\x43\xa0\x19\xb4\xab\x35\xbb\xa0\x13\x74\xa1\xde\x17\x3a\x0d\x30\xb9\xdf\x61\x27\x50\x40\x9a\x09\x5f\x84\xb4\x11\x0a\x84\x02\xeb\x3c\x9f\xa1\x36\x88\xcc\x46\x88\xbe\x43\xb5\x2f\xcb\x80\xcd\x40\xfd\x9d\xcb\x40\x11\xf8\xf7\xb9\x7b\xe0\x5f\x20\xd1\x63\x00\x29\xe0\xb5\x6a\x01\xf8\x0c\x72\xce\x29\x81\xc2\xa1\x07\xdc\x24\xe8\x0e\xac\xc8\x62\xc1\x2c\xc4\x35\x62\x01\xb2\x15\x79\xe0\xc9\x43\x27\xa3\x34\x9b\x43\xe8\x55\x6c\xde\x8b\x9b\x74\x0a\x72\xe6\xf6\x6f\xfa\x17\xe4\xc2\xb9\x95\x40\x1a\xf2\xb1\xfb\x0e\xf0\x1c\xf9\x5c\x75\x09\x3c\x81\x2e\xd0\xfd\x06\x9f\xa0\x71\x9c\x9b\x10\x15\xed\xcd\xfa\x03\xde\x80\xcd\x3d\x62\x84\xdf\x62\x7e\x9e\x3b\x90\x51\x0c\xb6\xd9\x84\xd6\x62\xa5\xcf\xae\xd0\x5c\x39\x3b\x6e\xad\xa0\x9d\x64\x6b\xcf\x78\xd2\x63\xd8\x73\xbb\x9c\xe8\xff\xb0\xe8\x95\xb1\x40\x12\xf3\x93\xb6\x1d\xf8\xc5\xcc\x67\x0f\x81\x45\xcc\xfd\x99\x4b\x20\x12\x71\x37\xfc\x32\x1c\x46\x1c\xf2\x38\x89\x78\x30\xda\x6c\xe6\xa1\x9e\x8c\x69\x4f\xff\xa6\x7c\x92\xbc\xb8\xc1\xa5\x1a\xc4\x8d\xa7\x01\x9a\xb7\x88\xd6\x21\xa0\x5d\x13\xba\x97\x5f\xa4\x67\x08\x56\x64\x1f\x04\x96\xf0\xff\x66\x09\x80\xcb\xbc\xd9\x19\xcb\xc0\x16\xce\x93\x70\x13\xa8\x8a\x6d\xf4\x88\x80\xcb\x59\xab\x6c\xfe\x44\x3a\x09\xfc\xf1\x34\xf2\xbf\x5a\x87\x6b\xe9\x14\x8d\x26\xec\x54\x15\xd5\x47\x95\xd9\x76\x95\xfa\xaf\x42\x51\xb6\x8b\xc6\x93\xf5\xa9\x1f\xd3\x3d\x25\xdf\x98\x81\xc0\x5c\xf1\xda\x74\x6b\xe0\x97\xd0\x39\x0c\x04\x7f\xf1\x2d\x3d\xa6\xc0\xff\xe3\x54\xdb\x2c\x47\x36\xb1\xa6\x3f\x8c\x26\x7d\x29\x9b\x33\xbe\x80\x2c\x2d\xde\x3b\xb2\x9d\xb2\xae\x00\x6f\xc1\x29\x67\x0c\xc2\x92\xbf\xa8\xa0\x5e\xae\x7c\x4b\x73\xd1\x6a\x19\xc5\xf4\x65\x6a\x5a\xea\x18\xb0\x42\x61\x1d\x0a\x83\xb6\x12\xb9\x3b\x01\x05\x0a\x24\x36\xeb\x61\x26\xc7\xeb\xfe\x17\xd2\x94\x36\xf5\x25\x94\x54\xdf\x04\x0e\x3e\x22\xc7\xd7\xe5\x35\x79\x50\xa6\x57\x11\x85\x1f\x28\x2d\x65\x07\x15\xd3\xa9\x44\xd1\x34\xec\x07\x2d\xd1\x40\x4f\x21\xd3\xc9\xba\xbc\xc3\x74\x40\xab\x8a\x74\xfb\x0a\x5e\x94\x14\xdb\x6c\x80\xe7\xf1\x58\x77\x75\x59\xa3\xa7\x24\x17\x22\x48\x27\x06\xeb\xfa\xf5\xe4\xa9\x3d\xad\x0d\x0b\xc8\x45\xed\xdc\xfc\x87\x94\x80\xa6\xd5\xb2\x55\x54\xf3\x1a\x39\x1a\x4c\x9b\x55\x66\x4c\x76\xa0\x4f\x29\x58\x1b\x52\x07\x2c\xc9\xb1\x72\x93\x80\x71\x0a\x85\xcd\x66\xa8\x43\x00\xdc\xa9\xce\x2a\xbd\xf0\xbf\xf3\x14\x92\xd7\xe9\xf3\x7d\xf5\xa4\x7f\x86\x63\xea\xd7\x91\x81\xde\xda\xfc\x99\x94\x55\xed\x9d\xd2\x23\x94\x57\x8d\x22\xa4\x82\x7a\xb5\xea\x55\x52\x3d\x6d\xa4\xb8\x34\x24\x91\x7e\x26\x77\xd8\x2d\x03\x5c\xa9\xda\x65\xe3\x0d\x21\xc2\x55\xb7\x7f\x64\xb1\xaf\x66\x9f\x1b\x24\xad\xbc\x38\xa5\xf7\x07\xa9\x75\x6c\x6b\x1d\x4c\xf6\x1c\x5e\x68\x8c\x27\x3f\xea\x31\x4a\x4e\x51\xca\x5a\xff\x45\x6c\xa9\xc2\xba\x82\xa4\xe3\xb4\x84\x32\x5d\xc8\x3e\x7a\xbc\xe1\xbe\x1b\x00\xf4\xa8\x49\x36\x08\xb4\x52\x18\xf6\x74\x36\x9c\x47\xd9\x7c\xa3\x0d\x6e\xa7\x4e\x1b\x5b\x0e\x8f\x53\x47\x3b\x7d\xe0\x8f\x34\x72\x45\x09\x62\x46\xb7\xd7\xae\x42\xbc\x01\x07\xf6\x7e\x04\x01\x7d\x32\xee\x23\x97\xa0\xf8\xf0\x7b\xe8\x26\x18\xf4\xb8\x86\x16\x23\x5a\x1b\x1b\xcc\x0c\x6d\x7d\xb2\x0d\x7a\x03\xcc\xb9\xfe\x0c\x5e\x06\x10\xa7\xc3\xe0\xdd\xc0\xcf\x0e\x3e\x9c\x05\x46\x94\xdf\x83\xab\xc0\x8b\xd9\xe9\xf0\x23\x88\xc9\xaa\x46\x6c\xe1\xdd\x19\xde\x88\x12\x99\x1a\x1e\x89\xce\x44\x7a\x3c\x92\x50\x2e\x9a\x65\xfd\x18\x5b\x8c\x6d\x78\x7c\x04\xda\x8d\xfc\x79\x7d\x1e\x04\x23\x6b\x46\x65\x50\x13\x72\xb8\xbd\x1b\x7a\x89\xa4\x95\x9b\xc3\x1b\x10\xbd\xa6\x1f\x26\x23\x3f\x58\x0b\xe0\xb3\x68\x62\xfa\x25\xc4\x19\x1d\x0b\xfb\x8c\xf4\x62\x6b\x3c\x56\xa3\xfb\x30\xb2\xf5\x59\xf4\x39\x36\xf8\x6f\x38\xf0\x89\xed\x77\x75\x3b\xe8\xc5\x3a\x7d\xb2\x0b\x54\xb1\xfc\xdb\x2c\xc0\x87\xcc\xb1\xd2\x61\x68\x07\xf3\x88\x9a\x01\xa9\x99\x4b\x99\x73\xa1\xdf\xc4\xdd\xb4\xc7\xb0\x88\x10\x84\x6d\x43\xac\x89\xb5\xee\x8d\xc8\x79\x46\xb9\x75\x3d\x8a\x33\x4c\xff\x79\x49\xbf\x2a\xbe\x74\xa5\x1b\xd8\x22\xea\x1e\x99\x0b\x64\x0b\x8d\x2d\xd9\xc0\x13\x01\x5e\x12\x0c\xba\xf1\xb3\x54\x9e\x60\x35\x8f\xc5\x98\x80\xd6\x71\x15\x69\x33\xa0\x33\x1c\x41\xa8\x00\x86\xd9\xc7\xdc\x23\x11\x07\xd6\x6c\xeb\x4e\xe4\x2b\xa1\xba\x3f\x4a\xbb\x97\x3d\xe5\x52\x3b\xdd\x5d\xbd\x77\x28\x92\xde\xaa\x44\x9b\xbe\x02\xd3\xe4\xad\x45\x57\x80\x68\xe9\x57\xc5\x33\xe0\x8e\x24\x00\x3f\x03\x26\x8b\x74\xa9\x66\xd0\x52\xc1\xe9\xc3\x1f\xa0\xcb\xbc\xf3\xee\xff\x83\xf3\x38\x2c\xeb\xab\x48\x2a\x6b\xe1\x5d\x7b\xea\x50\x09\xe7\x42\x04\x6d\x5d\xe1\xab\xfe\x8f\x34\x55\xbe\x4f\x43\x25\xed\x75\x5e\x56\x41\x39\x3d\x38\x27\x5b\xf6\x99\x7e\x37\xbb\x0f\x5b\x0d\x80\xaa\xa1\xe4\x2b\xa0\x83\x3c\xef\xf0\x3c\xf0\x87\xc4\xce\xad\x05\xba\x26\x88\xb2\x99\x0d\xb7\x72\xfc\x6e\x9d\xa7\xbc\x6f\x69\x3f\x7b\x95\x1a\xdc\x70\xbe\xb7\x8c\x3a\x5a\xbb\xbc\x2e\x83\x66\x53\x69\x69\x14\xd3\xb2\x4b\x97\x4a\xe7\xd1\xad\x0a\x3e\x21\x28\xfd\x7c\x9e\x32\x89\x09\xc8\xb4\x2f\x43\x96\x81\x27\x94\xf7\xdc\x76\x42\x07\x24\x11\x36\x2b\xe0\x9d\x3c\xf0\x86\x80\x62\x1c\x39\x3c\xd6\x43\xf9\xd9\x5f\xd3\x9d\x4a\x8d\xec\x7a\x56\x73\x90\xda\xd7\xfa\x2c\x4f\x41\xb3\x6b\x68\x15\xbb\xd3\xfa\xaa\x03\xa0\xe7\xf4\xc4\x52\x49\xa2\x2f\x60\x9a\xef\x13\x1c\x00\x3c\xd7\xb1\x76\x8d\x83\x0f\x14\x76\x36\xab\xa1\x07\x82\xa8\xeb\x2a\x0a\xfd\x6c\xfd\xe9\x71\xca\xf5\x53\xc5\x5d\x0c\xaa\xfd\x60\x72\x75\x1a\x55\xd6\xfd\x2e\xb7\x8b\x36\xb9\x6d\x8b\x88\x41\x13\x34\x6c\x85\xdc\xe8\x0e\x95\x23\x09\x67\xe8\xf7\x8a\xda\x83\xff\x00\xf2\x73\xe7\xef\x6a\x05\x0d\xca\x2b\x36\x4e\x50\xa1\x70\xca\xb5\x1b\x94\xa0\x2b\x0b\x4e\xaf\xa0\x54\x9d\x6b\xed\x3c\x47\x9d\x34\xba\xb2\x6a\x98\x7a\x78\xd0\x35\x77\x35\xb5\xaf\x7b\xa6\xf0\x23\x6d\x77\x0b\x0c\x9e\xa7\x3d\xae\x4d\x49\x80\xe9\xac\xd2\x9c\x43\xcf\x81\x1d\x06\x8b\x5d\x5d\xa0\x8b\x7a\xb2\x4d\x06\xb4\x5b\xb8\xfd\x1f\x12\x76\x82\xdc\x74\x45\x8b\x79\x52\x24\x23\xc7\x30\x4b\xea\x91\xd6\xd9\xd8\x7c\xda\xec\x92\xb3\xd8\x2c\xda\xb8\xaa\x1b\xfd\x4e\xbf\x4f\xc4\xa0\xdf\x80\x9f\x69\x54\x6c\x1e\xb4\x36\xf4\x0b\xb6\x1e\xf6\x73\x97\x63\x47\x10\xb6\x75\x1e\x26\x47\x87\x1e\x28\xd0\x31\x7a\xe6\xe5\x61\xb4\x89\xfe\x61\x58\x87\x16\x03\xf4\x96\x9d\xa8\x06\x78\x58\x32\x05\xd5\x83\x89\xaa\x29\xa8\x01\x5a\xc3\x68\x47\xeb\xa1\xff\x52\x9f\xa0\x97\xe1\x9e\x50\x26\x36\x05\xe1\xb9\xaf\xc3\x9c\xd1\x23\xd6\x11\x18\x1b\xdb\x72\xbf\x1a\xdd\x0a\x07\x5e\x7a\x85\x5a\xc3\xd0\xd0\x28\x6a\x05\x77\x35\xa7\xa2\xcb\xe0\x47\xc5\xf6\xe8\x7a\xc4\x5c\x19\x81\x3a\x22\x32\xc6\x02\x34\x0a\x9d\x91\x9a\x8a\x72\x50\x24\x74\x12\x7a\x1e\x7d\xee\x76\x0d\x9b\x8f\x85\x5a\xaf\xc6\x12\xb0\x91\xbb\x35\xf0\x05\x56\xdc\x45\x53\xf8\x0d\xf3\xc7\xc0\x57\xf8\x03\x53\xd2\xf8\x0f\xb2\x98\xb9\xb4\xf0\x31\xe2\x4c\x74\x29\xcc\x91\x18\x42\x88\x2f\x41\x34\x44\x4c\x8a\x04\xb9\x41\x58\x1f\x8e\x40\x1d\x18\xff\xba\xc1\xa8\x8c\xc1\xb4\xb6\x44\xbf\x33\x4c\xef\x48\xa0\x9b\xa2\xae\xf3\x9d\xd0\x3b\xe1\x68\x7f\x12\xbc\x48\x70\xb2\x21\x0b\xb6\xe0\x77\x15\xe4\xc0\x5e\xbc\x01\xd9\x17\x18\xe0\x3e\xc7\x56\xc3\xdd\xdc\xb9\xc9\xbd\xc8\x72\x8e\x45\xc8\x15\x84\xcd\x36\x71\xdb\x85\x7c\x66\x3e\xb0\x0e\x42\xd3\x08\xf5\xad\x70\xf0\xb7\xfa\xca\xd9\x31\x68\x89\xca\xb1\xf7\x1a\x14\xa0\xe0\xd6\x3d\x81\x0e\xca\xc6\xf3\xad\xa1\x34\xe9\x7a\x69\x35\x54\x2f\x36\xa0\x7f\xc0\xd3\x44\x53\x92\x6e\xc3\x69\x82\x80\x90\x9d\xf0\x3f\x3c\xda\xae\x09\x24\x96\x13\x68\x9d\x84\x3c\x66\xcd\xbb\x7e\x19\x68\x29\xfa\x3d\x96\x09\xbc\x2b\x10\x75\xd3\x40\x5b\xe3\x5f\x35\x79\xe0\xce\xdc\x40\xc3\x14\x30\x49\xa7\x12\xf7\x83\xed\x9a\xbb\x70\x0c\xb4\x54\x35\x35\x51\x07\x89\xe4\xd3\x83\x4f\xc0\xb3\xc5\x43\xbb\xca\xe0\x1c\x81\xa9\x75\x2d\xb2\x8e\xe3\x71\x35\x13\x98\xdd\x74\xe3\xd4\x04\xb0\xb6\xde\xb4\x73\x33\x10\x55\x2d\xaf\x8a\x03\x90\xf2\x5e\xfd\x73\xa0\xa1\xf8\xaa\xf0\x16\xf8\x47\xfe\x2d\xb0\x17\xcc\xc8\x2d\x4e\xd8\x07\xbe\xd4\xae\x3b\x44\x83\xa8\xca\xc0\x5d\xdb\xe0\x79\x92\x69\xd6\x27\xe1\x4a\xde\xd1\x2b\x7b\xe9\xc6\xa1\xa5\x23\x2f\xe8\x03\xbd\x45\x6d\xbf\xe8\x8f\x3b\xff\xaa\x08\x05\xe6\xb4\x78\xe6\x4c\x05\xbc\xea\x5d\x05\x66\x80\xbe\x6a\x3a\xb0\x13\xfc\xa3\x24\xeb\x84\x09\x48\x33\xc6\x04\xd5\x82\x3f\xb4\xe3\xae\x17\xa1\x42\x79\xbf\xf5\x45\xd8\x4f\xe0\x78\xd9\x87\x4e\x19\xf3\x1a\xfe\x49\x57\x8f\x64\xb4\x2d\xa5\xb7\xf4\x27\x97\xe3\xf4\x5b\x5d\x76\x3a\x27\x60\x61\x4b\x29\xff\x04\x10\x5f\x37\x4e\xcf\x03\xce\x56\x68\x8e\xe7\x83\xdb\x0a\x7b\x83\x62\xc0\x16\x7d\xa0\x6b\x03\x14\xad\x0c\xb7\x7e\x0a\xff\x25\xb8\x7a\x89\xa0\xfb\x5d\x64\x0e\xbb\xd2\x8f\x9d\x89\x6e\x8d\xa7\x23\x23\xbf\xcb\xae\xd1\xf3\xfb\xe3\xb4\x85\xf4\xcb\x9d\xc7\x78\xf7\x81\x15\xcd\xb3\xe8\xeb\x01\xb4\x66\xc3\xf1\x43\xc0\x9d\x12\x65\x90\x3b\x78\x30\x2f\xd4\xb5\x05\xfc\xad\x62\xda\x98\x40\x35\xc2\x39\xd7\x82\xd9\xc1\xa4\xf2\xd3\x3b\x58\x9d\x64\x45\xd7\x27\x96\x09\x85\x5a\xe3\xce\x2c\xa7\xba\xe5\x0d\x30\x5d\x69\xab\xc4\x32\xe2\x0c\xdd\x11\xb6\x22\xa2\x81\xa3\x89\xee\x8c\x1f\x60\xee\xa1\x9b\x8c\x22\xe8\xbe\xeb\x10\xc3\x1b\x71\xb7\xda\x80\x7f\x46\xdb\xaf\xa6\xb0\x06\x68\x3b\x47\x4f\xb0\x1c\x68\xb7\xbb\x56\x33\x8b\xe9\x59\xd5\x74\xa6\x2b\x7d\x22\x6f\x06\x71\x0f\x90\x89\x9e\x10\x00\x18\x09\xa9\x89\x65\x90\x53\x42\x2f\x63\x14\xb6\x3c\x94\xca\x00\x91\xbf\x5c\x23\x18\xf6\xe8\xfc\xb5\xef\xf1\xd7\x98\xc5\x38\xc8\xb2\x07\xdf\x9f\x12\x33\x1b\x21\x9f\x4e\x1f\xa6\x2d\xa4\xae\x2a\x23\xc6\xa1\x4b\xb9\x5e\x04\x08\x5b\x8a\x5c\x09\x53\xb8\x1c\x9a\xcc\x18\x43\x5c\x12\x02\x19\x18\x72\xe9\xd0\x14\x86\x27\x1a\xeb\xba\x9c\x31\x0d\x9b\xba\xf6\x02\x7e\x0e\xab\xbc\xfc\x0f\x73\x12\xd1\x3a\xf2\x89\xd0\x12\x99\xed\x57\x08\x6b\xc2\xba\x32\x84\x71\x95\x71\x53\xbf\x88\x21\x62\x18\x84\xeb\x19\x1e\x0c\x01\xb8\x94\x31\x99\x81\x9e\x10\xe3\xd7\x18\xc7\x83\xd2\xf0\x16\x86\xaf\xcb\x18\x2e\x62\x58\xad\xbd\x87\xc7\xe3\x3f\x2f\x35\x13\xcb\x05\x15\xc3\xfd\x8c\x7c\xfe\xb3\xb6\x40\x86\x23\x7f\x49\xf9\x1b\xfc\x0d\xcf\x51\x37\x86\x37\x71\x63\x05\x53\x71\x90\x53\x07\x2c\xc5\xf7\xb1\x7f\x1c\x1f\xc2\x6d\xd8\xee\x81\x6f\xf0\x79\xac\x34\x17\x03\xf6\x91\x49\xb6\x9a\x8f\x5d\x27\xd2\x2e\xe4\xe2\xbf\x94\x47\x07\x2f\xe1\xed\xf2\x2f\x2d\x67\xf0\x70\x19\xb7\x0c\xc3\x4d\xa5\x33\xb5\x20\xf6\x42\x2c\xe7\x8d\x63\x7d\x22\x7b\xfa\x62\xcc\x28\x18\x3d\xf6\x15\x63\xf0\x0f\x05\x66\x60\x49\xdc\x0e\x17\x32\x76\x84\x7d\xdb\xca\x1b\xf3\x66\x3e\x3b\xb7\x1c\x7b\x52\xb0\xbe\x9f\x8d\x15\x18\xee\x37\x85\x63\x91\xb9\xfc\x12\x07\x6c\x75\xce\x5f\x9a\x28\xf4\x63\xb6\x98\xf3\x1f\x7a\x45\xbd\x90\x0a\xa0\xbd\x0a\x30\x7e\x08\xad\x90\x9e\x0e\xa8\x40\xb5\xa2\x71\x97\xf5\xa8\x9c\x4f\x58\x49\x50\x06\x67\xea\x18\x19\x0b\xad\xff\xbb\xe7\x16\x36\xbd\xba\xbd\xfe\x27\xda\x58\x41\x2f\xfc\x84\xd2\x4a\xde\xaa\x7c\x50\xef\x42\x7f\xf6\x7c\xd4\xd6\x90\x4f\xbe\x85\x9a\xe7\x74\xc6\x91\xd1\x79\x9a\xdc\x83\x43\xe8\x4c\xc5\x5a\xe7\x76\x74\xb6\xd8\xd9\x2a\x1f\x9d\xc4\x9b\x39\x1a\x8e\x4e\xf4\x5e\xe8\x9e\x84\x1a\x3a\x47\xeb\x16\xa0\xbe\xad\xda\x02\x13\x74\x56\xe3\x2c\x85\x18\xb9\x56\xb3\x8f\x09\x22\x1d\xe5\x27\x48\x74\xa4\xba\x68\x53\x6c\x04\x92\x9d\xc7\xf6\xff\x84\xa8\xb2\xe3\x9c\x7d\x91\x02\xd9\x98\x55\x15\x92\xcb\x3f\x75\x4a\x8f\xde\x1c\xb9\xdf\xe5\x86\x42\x03\x19\xb5\x5e\xe8\xca\xee\xf3\xf9\xa1\xc8\xcd\xb6\x53\xf2\x71\x24\xbf\x91\x20\x2e\x23\x68\xcd\xac\xac\xa7\x48\x5a\x99\x6d\xcc\x13\x24\x24\xbf\xdf\xbf\x0c\x39\xa8\x1b\x71\xb6\x42\xa2\x15\x41\x56\x7d\xc8\x11\x41\xdc\xa9\x79\x68\xcf\xd9\x3f\x3b\xab\xd0\xe0\x53\xde\x35\xd5\xc8\xdb\xc1\x3d\xc6\x21\xc4\xd0\x7d\x4d\xee\x83\x44\xb4\x2d\x23\x42\x10\xfb\x86\xe5\x59\x18\xb2\xa2\xb2\x38\x46\x05\xff\x2a\x02\xfc\x21\xf8\x3f\x7d\x9b\xf3\x1a\x64\x8a\x92\x6c\xf5\x16\xfe\x2a\x30\x8e\x75\x08\xbf\x64\xdd\xe8\x8d\x17\xfc\x4b\x1a\x69\x10\xf2\x1f\x90\x2b\x8b\xea\x78\x13\x14\xb6\x7a\x2e\x6f\x31\x15\x64\x8f\x73\x6d\x68\x5a\x0a\x89\xb3\x8b\x7e\x29\x4e\xca\x8e\x02\x97\x1d\xdc\xc7\x42\xa0\xd4\x9d\x18\x53\x03\x7f\xb7\x4c\x20\x6a\x51\xf5\xe9\x7b\xc2\x78\xaa\x7b\x4f\x8e\xe0\x04\xf5\x49\xfd\x05\x3e\x8d\xc6\x2e\x9a\xca\x93\xd3\x4d\x55\x24\x6e\x33\xfd\x2c\xdb\x8b\x73\x15\x28\x21\x7f\x66\x7f\x01\xd5\x71\x96\x6c\x1b\x48\xea\xff\x92\x15\x06\x4b\x76\xda\x31\x99\x48\xa7\xa5\x1b\x51\x86\x4e\x8c\x7e\x15\x5c\x05\x2e\x74\x9f\xe4\xbf\x02\x6d\xeb\x67\xf3\xe7\x82\xbc\xc2\x03\x3c\x6b\xf0\xb6\xf2\x12\xd7\x1f\xf2\x66\xb5\x70\x40\xe8\x36\x19\x64\x97\xc3\x44\xec\x49\xd6\x23\x64\x83\x7f\x31\xcb\x02\xb9\xb1\x73\x26\x33\x18\x2d\xb2\x74\x27\x18\x18\x72\xca\xc0\xaf\x67\xd8\x77\x85\xf0\xfe\xc1\x27\x6a\x55\xbc\xc5\x78\x57\xfe\x6b\xae\x0f\x2e\x51\x08\x38\x1c\x9c\xcc\x54\xb0\xfb\x70\x94\xc4\x64\xfd\xc0\x55\xb1\xb3\x58\x7e\x78\x81\xbf\x29\x33\x17\xaf\x74\x3a\x45\x3c\xc0\xbb\x2c\x43\x88\x65\xf8\xc8\xc9\x69\xbc\x51\xde\xd5\x8e\x87\xdc\xff\x78\xb6\x35\x0e\xdc\x0d\xdc\x74\x63\x29\x27\x95\xd3\x2c\x8f\x61\xb7\x72\x66\x12\x5c\xd6\x6f\x36\x92\x95\xc7\xda\xcf\xfa\x18\x13\xc8\x2c\x61\x1d\x3d\x50\x4c\xfc\x66\xb6\x39\xe5\x13\xfb\x89\xcf\x96\x1c\x86\x84\xd8\x38\x7c\x82\x7b\x5b\xee\xdd\x1e\xc2\x5d\x2c\x7d\x57\x75\x86\x73\x44\x92\x63\x08\x61\x17\x89\x7d\x64\x76\xac\x8f\xc2\xdf\x0c\x0a\x6b\x9f\xe0\x52\x66\x13\xb3\x94\x9f\x13\xad\x66\x4e\xe7\x1d\x38\x60\x45\xc4\x70\xfe\x71\x4a\x67\xb4\xb1\xbd\x2c\x6b\xf0\xef\x4c\xdd\xc0\x2b\xce\x57\xc3\xa1\xd6\xc9\x9c\xf5\xb9\xbb\x2a\xe8\xec\xcc\x9c\xbf\x73\xd7\xb1\xba\xb2\xaf\x4a\x1c\x58\x7f\xa9\x25\x58\x3d\x33\x45\x19\x98\x61\x4f\x5c\x92\x7d\x3f\x4a\x26\xec\x25\xc4\xfe\x74\x86\x52\x78\xd6\x69\x13\xfe\x8e\x77\xc6\xf2\x23\xbe\x83\x5d\xda\x67\xe4\xb8\x55\xb7\x35\x15\xb0\x79\x15\x8a\xb2\xcd\xac\xab\xa5\x69\x39\xd3\x58\x26\x45\xb6\xa2\x9d\xcc\x54\xe3\x15\xe4\x19\x71\x29\x37\x23\xad\x9c\x70\xd6\xde\x8a\xda\xc5\xc8\x53\xcf\xf2\xcb\x67\x4c\x92\x3d\xd9\x71\x1d\x3f\x2a\x8a\x5a\x6b\x81\x95\x71\xb5\x3d\x89\xec\x2f\x9d\x97\x1a\xea\xd8\x1b\x5b\x3f\x94\xec\x63\xa5\x37\x3e\xd7\x6e\x61\x36\xd4\xd6\x0a\x78\xc4\xcf\xca\x3d\x70\x14\x11\x59\xd2\x9e\x1a\xc4\x38\x99\x7f\x27\xd2\x86\xb1\x5e\xaf\xde\x77\x01\x57\xa9\xef\xee\x48\xc2\x26\xa4\x3d\x6b\xd7\x63\x2e\x7c\xf7\x6e\x16\xbb\x7b\xe0\x44\xfd\x45\xd6\xaf\x9e\xad\xc5\x30\x6b\x4f\xfb\xe5\xec\x54\x26\xa3\xd9\x92\x7f\x91\x38\x55\xb7\x13\x6a\x23\x56\x55\x9a\xa7\x0c\x33\x78\xc5\xc5\x11\xcd\xf8\x4b\x43\xe9\x3e\x14\x0f\xd4\x5a\xec\xf0\xc2\x5a\xe4\x0e\x6b\x5d\xd0\x6f\xfc\x1b\x5d\x67\xd9\xf8\x29\xcb\x7a\x0b\xd6\xd9\xc1\xd6\xa2\x9b\xac\xc5\xbd\x7f\x68\xae\x30\xbd\xdb\x27\xf8\xee\x04\xb3\x29\x17\xda\xc1\xb8\x5e\xf3\x2b\xe5\x08\xc3\xa1\xec\x5d\x44\x0c\xae\x2e\x70\xdd\xe7\x83\x7d\xd5\xfd\xdc\xb1\x0b\x3b\xac\xf0\x5b\x7b\x02\xcd\x16\x2c\xef\x39\xad\xdc\x99\xb5\xa4\x71\xa7\xbc\x97\xb4\xb0\x14\x95\x79\x90\xff\xa7\x63\x48\xae\x93\xbf\x08\xcf\x8b\x49\x94\x5f\x88\x5a\xf8\x9b\xb6\x2a\xcd\x5f\xc0\xa5\x27\x47\x8a\xf8\x4b\x80\x8e\x7d\x30\x37\x07\xfa\x7b\xfb\x3c\xce\x22\x78\x60\xb5\x92\x05\xa3\xdc\x9e\x45\x8a\x33\x94\xa0\x06\x91\x3c\x84\x3a\xa3\xe4\xa6\xf4\x19\x75\x54\xfb\x54\x82\xd1\x52\x85\xbb\xc4\x2b\xe8\x1b\x90\x45\xc2\x66\x60\x41\xea\x3d\x81\x37\xb8\x30\x72\x3d\xef\x09\xb4\x7c\xdf\x06\x2e\x08\xaf\xdf\x76\x93\x33\x09\xc9\x5c\x8d\xb2\x32\xd1\x8b\xdd\xc1\x8a\x28\x7a\x53\xfd\xb8\xec\x2d\xb0\xb2\x64\x83\x54\x0c\x94\x69\x3d\x25\x16\xe0\x1f\x82\x0a\x51\x2f\xc8\x84\x25\xc2\x68\xc8\x26\x35\x89\xff\x13\x7a\x1c\x31\xce\x2b\x85\x8b\x7d\xdf\x70\xbd\x91\xe3\xdb\xda\xd8\xd7\x51\xff\xd5\x20\x2b\x00\xf3\xed\xec\x96\x7b\x60\x58\xdd\x61\xe9\x27\x0c\x29\xea\x91\x18\x30\x92\xe6\xa3\xf8\x00\x16\xcf\x07\x45\x53\xb0\x24\x88\x21\x68\xc0\x64\x29\x2c\x7e\x04\x36\x12\x61\xcb\x5b\x88\xbd\xf7\x65\x72\x06\x70\xd3\x6d\x4a\x76\x24\x7e\x64\x75\x0d\xf3\x11\xae\xec\xd8\x27\x0b\xe0\x7c\xab\xb5\x93\xfc\xe2\x50\x0b\x09\x71\x1f\xfb\x91\xfa\xb2\x08\x64\x1f\xe0\xd1\x84\x3b\x58\xa7\x40\x2d\xff\x33\x2b\x26\xb9\x87\xd7\xc0\x9a\x74\x44\xc8\xcd\x64\xca\x7d\x17\x73\xac\x99\x0b\xb6\xa5\xb1\x4e\x13\xd8\xea\x6b\xcc\x40\xc6\x93\xf6\x49\xd2\x58\xc9\xad\xea\x0a\x89\xb5\xf8\x7a\xc1\x2e\xd1\x47\xd1\xb0\xaa\x4c\xd8\x2a\xcc\xe3\x26\x09\x10\x01\x0a\x94\xf2\xbd\xf9\x58\xd2\x5b\xde\x1c\x1e\x14\xfe\x9a\x73\x91\x7b\xd4\xa7\x8b\xcd\xe5\xac\xdb\x46\x62\x59\xb3\x46\xd7\x38\x13\xb5\xcc\xd0\x96\x31\x09\x5d\x9f\x51\xd9\x21\xde\xad\xd3\x18\x17\x88\x96\x65\xd7\x28\x0a\x05\xb7\xd5\xc5\xec\x6c\x7e\xa1\x32\x9b\xfe\x07\x8f\x24\xd7\x26\x4a\xb9\x6e\x52\x22\xec\x09\x67\x8a\xd8\xcb\xe7\x4f\x56\x9f\xe0\xf2\xb6\x4d\xcc\x38\xde\xaa\x35\x14\xc6\x4b\x76\x40\xd3\x11\xf1\xdb\xf2\x7f\xcb\x3d\x44\x3d\xa5\x8b\x72\x5f\x09\xf9\x45\xd1\xb2\x7c\xc1\xde\xfc\x78\xe6\x20\xff\xcf\xbc\x40\xea\x51\xee\xfd\x9c\x9d\x09\xab\x38\x8d\x9a\x4f\xa1\xbd\x6c\xaa\x32\x7d\xaf\x17\x6b\xa3\xb4\x68\xeb\x55\x62\x5c\x88\xad\x91\x31\x22\xb9\xab\x1a\xba\xc5\xea\x56\x72\x69\xb5\x28\xac\xf1\xbe\x7e\x91\x70\x55\x9d\x8d\xe4\x3e\xff\x76\x95\x3b\x61\xc1\xd3\x96\x6d\x24\x3f\xe5\x26\x14\x7e\x3d\xfe\x80\xb3\xcd\x00\x1d\xee\x60\x4f\xd5\xe9\xbc\x69\xcc\x93\x2a\xbf\xad\x29\x44\xa2\xa4\x6c\x8d\x1e\x7f\xc9\x6b\xaa\xef\x13\xa7\x75\x57\x94\x8c\x8b\xec\xda\xcf\xe7\x78\x0b\x3e\x37\xf7\x48\x4c\xf8\x95\xf5\x09\x8c\x54\x5e\x4c\xd5\x5d\xb2\x17\x77\x7d\x99\xd9\xf1\xc3\xec\x89\xc2\x59\x87\xbd\x59\x43\xb9\xa0\xb7\x05\x93\xa7\x49\xdd\xea\x45\x58\xc9\x66\xad\xa9\xc4\x4b\xf8\xbb\xeb\x9e\x89\xbd\x07\xe7\x95\xfc\x2d\x9a\xde\xf3\x5d\x57\x28\x38\xd9\x51\x22\x66\xf0\xd3\x9b\x3f\xe1\xf7\x78\xa6\x75\xbf\x49\xa7\x39\xf7\x2a\x87\x8f\xfd\xc7\x2e\x28\x59\x13\xf2\x82\x95\x66\x78\xe1\xf5\x9c\xb9\x59\xbb\x79\xab\x13\xe3\xb4\x7c\xe1\x9a\x0b\xb8\x1b\x9f\x57\xb9\xce\x68\x9f\xa9\xc8\xff\x23\xf7\x45\x56\xae\xda\x39\xa7\x93\x24\xe3\x67\x6b\x99\x64\x1c\x09\xd4\x78\x53\xa4\x19\x05\xca\x6f\xd4\xfe\xb8\x3f\xe4\x3a\xfa\x82\x43\xab\xa4\xe6\x00\x73\xf7\x22\x11\x1f\x9a\x66\xff\x8d\x7f\x1b\x3e\x69\x31\x8b\x3b\x1b\x2d\xa9\xa8\x36\x74\x92\x2b\x8c\xbc\x5c\x9c\x12\xab\xea\xcf\x89\xa0\xce\xe5\x5b\x68\xd7\x51\x07\xe1\xc7\xea\x4f\x34\x55\x86\xab\xb2\x81\xce\x8b\x6d\x90\x87\x01\xfa\xa0\xfb\x92\x57\xe0\xb0\xe7\x33\x51\x1c\xf4\xd5\xfe\x29\x7f\x00\x89\xb6\x98\xcb\xf9\x86\x3e\xae\x58\x63\xd8\x43\xfb\xd7\x38\x39\x77\x09\xfd\x80\x6a\xa7\xee\x27\xbd\x89\x97\x9f\x7d\x01\xb0\x85\x33\xd5\xb9\xc0\x50\xfa\x35\x65\x34\x08\xc7\x86\xca\xe7\x43\x07\x83\x0a\x24\x35\xb0\xbd\x67\x8f\x68\x33\xb2\xd4\xfe\x3a\x5f\x83\xae\xb7\x30\xe3\x5c\xc5\x82\xcb\x6a\xf2\x12\xd1\x65\x79\xf5\x7a\x37\xd4\x5a\x39\x4b\xb7\x11\xb5\xe6\xca\xb3\xff\x42\xb7\x42\x0c\xd5\x13\x34\x3c\x7d\xaa\xa2\x09\xcd\x8f\x29\x95\xa5\xa0\x5f\x82\x2c\x25\x4b\xb1\xfd\x9e\x54\x61\x25\x66\xb4\x3f\xcd\x5f\x82\xcf\xb5\x88\xe2\x84\xe3\x68\xe9\x48\xae\x98\x75\x2e\xb7\x32\x27\x9d\x05\x2b\x26\x69\xa3\x59\x26\x1c\x83\x66\x2f\xb3\x0e\xac\x50\xad\x67\x06\xa7\xb9\x2b\xa6\x30\x97\xc7\x4c\x91\x9e\x22\x9e\x07\x96\x89\x69\x44\x95\xe7\x3a\xe1\x02\x22\xda\x7e\x90\xc7\x26\x96\x59\xe8\xd9\x67\x19\x67\x4b\x2c\xf4\xe7\x45\x8b\xf4\xe1\xba\x3a\xa1\xaf\xec\x65\x76\xb1\x20\x9d\x6d\x54\xcb\xf9\x18\x30\xa2\x04\x78\xb9\xa9\x54\x79\x18\xf7\x5a\x74\x88\xd4\x92\x3b\x2f\xd0\x52\x74\x95\xb3\xc9\xe3\xa1\x20\x93\xed\x64\x3f\xc2\x7d\xc0\xb2\xb3\x78\xc9\xb6\x64\x2e\x2f\x0a\xcd\x79\x9b\xbd\x4f\x97\xad\xbd\xae\x7e\x21\xb5\xd6\x9c\x55\xc5\x30\x7f\xa9\xda\x15\x25\xf4\xfd\x0a\x83\xec\x69\x8a\x8d\x8c\x90\xee\x38\xea\x26\x39\x24\x06\x03\x0e\x8b\xa6\x09\x95\x1e\x31\xfc\x62\x3e\x66\x5f\xc2\x5d\xc8\xf5\x5e\xe5\xc8\x0a\x66\x7d\x2c\x88\xcf\x09\x29\xba\x93\xdd\xa2\xf5\x28\xa0\x8b\xe3\x34\x4e\x86\x5f\x44\x88\xca\x22\x37\x8e\x7a\x46\x31\x45\xd7\x96\x74\x41\xfa\x3c\x7b\x56\xd4\x32\x71\xaf\x6a\xeb\xc1\x54\x61\x86\xdc\xda\xfd\x14\x7f\x9e\xf8\xba\xfd\x09\x0e\x22\x08\x58\x15\xc3\xec\xe2\x68\x8d\xbd\xba\x89\xba\xa7\x9a\x05\xd9\x4f\xab\x9f\x08\x4f\xaa\xef\x55\xd4\xe2\x17\x94\xbd\xa5\x3b\x28\x31\xf2\xec\x42\x63\xa2\x40\x0a\x18\x5e\x46\x4e\x13\xfb\xe5\x7c\xf5\xe7\x0b\x7e\x69\x6a\xdd\x97\xf0\xf4\x8a\xe9\xf6\x0b\x39\x33\xc4\xab\x56\x91\x98\xee\xdc\x6f\x46\x6b\xdd\x78\x4b\xa3\x3a\x25\x7b\xa4\x31\x48\x38\x4f\xdd\x51\xdb\x85\x5b\x28\xe5\x95\x0f\xc9\x83\xf2\xb8\xd2\x9b\x09\x3f\xa4\xee\x85\x65\x11\x62\xf1\x3c\xc3\x3a\x7f\x4b\xc1\x80\xce\xd3\xed\x1c\x2f\x4c\xf9\x76\xf3\x04\x7b\x50\x12\xb3\x8a\x4d\x7c\xe5\xe1\x86\x06\x5d\x7d\x67\x8f\xea\x41\x76\x5e\xdb\xff\x04\x34\xb5\xa8\xc9\x06\x53\x29\xc3\x6b\xbf\x93\x3d\xe4\xab\x2a\xe5\x09\x62\xc9\x97\x92\x37\x11\x5b\x44\x7d\xf9\x1f\x0e\xdc\x11\xa4\xe8\x01\xb7\x3c\xee\x6f\x35\x6f\xf3\x2b\x76\x9c\xf4\xd0\xaa\x2a\x42\xc5\x1b\xd5\x04\x56\xef\xca\xbc\x23\x36\xad\x70\xca\x1a\x64\x6a\x4b\x5d\x48\x75\x80\x4f\x91\x05\x39\x3f\x0d\x36\xbe\xa7\xb4\xc6\xc5\xe4\x56\x52\x5f\x1e\xe6\xe9\x9c\xe8\x7b\x7d\x15\x6a\x29\x70\xd9\xb9\x51\xde\x00\x51\x36\xce\x11\xd7\x22\xfb\xcc\x2e\xf3\x53\x30\x7b\xf5\x44\xd5\x18\x99\x25\x3a\x53\x3e\x46\xd9\xca\xf4\x29\xb9\x46\xf9\x8f\xfe\xb3\x70\x98\x5a\x9b\xe6\x60\x34\xd2\x24\x71\x2b\x73\xa3\xe8\xa2\xc3\x01\xda\x09\xa0\xc6\x37\x53\x1d\x06\xbe\x71\xce\x93\xf3\xe0\xdd\x1b\xe7\x8a\xc5\xc8\x69\xb3\xa7\xfc\x20\x2c\x5c\x2d\xab\x0a\xa5\x1d\x14\x65\x96\x87\xd3\x2e\x11\xef\x4b\xd2\xe8\x47\xe8\xa5\x85\xc7\xe8\x4f\x53\x9f\x18\xbd\x00\x79\xec\xed\xdc\xd9\x60\xd8\xe1\x25\xda\x72\xc8\xcd\xd7\x47\xbd\x18\x76\x76\x16\xc8\xfd\x91\xdd\x1b\x17\x88\x23\x50\xc0\x7c\x1a\xdf\x0a\x6b\x55\x71\x2a\x85\xc8\x4e\x21\x54\xa6\x44\x22\x89\xd9\xc5\x4d\x08\x99\xf6\xb0\xa0\x02\x51\xa7\xba\x1b\x44\xc8\x95\x58\x5f\x7d\x30\xba\x25\xc4\x98\xfd\x15\xad\xf0\xf9\xac\xa2\x62\x2b\x9c\x13\x64\x83\x98\x74\xe3\x0a\xd1\x75\x7c\xbd\xf9\x3e\x5e\x09\x3e\xa8\x7c\x58\xd1\xc9\xdc\x2b\x18\x2b\x3d\xcf\x34\x67\xb8\x16\xbd\x26\x1e\xd1\x6c\xf2\x5f\x10\xda\x14\x43\xde\x15\x22\x2e\xa6\x33\xa7\x98\x38\x10\x62\x9d\xed\x4f\x78\xfb\x94\x2b\xcf\x12\x9b\x9c\xbd\x65\x26\xc4\xa2\x8d\xf6\xa2\x2d\xc4\x1c\x73\x23\x6f\x0a\xe3\xbb\xc2\x58\xfe\x9d\xff\x8b\x5f\x57\x3a\x87\x1f\x80\x9f\x28\x72\xe0\x15\x53\xe3\xf3\x1d\xb9\x0f\x93\xdf\xe5\xad\xe2\x6e\x8e\x59\xa9\xfb\xcc\xc9\x0b\x2e\xd7\x94\x71\xe6\xf9\xf8\x2b\xd7\xb2\x8f\x39\xaf\x96\x66\xb1\xaa\x36\xfa\x0a\x39\xcc\xff\xcc\x3f\x72\x0f\x33\x6d\xe5\xa4\x72\x5b\xd5\x1e\x9e\xb4\x64\x87\xe2\x3f\x6c\x4d\xa1\xbf\x5c\x4a\x71\x32\xee\x97\x2d\x4e\x7a\x9a\xbb\x55\x92\x1f\xbd\x5d\x37\x4f\xec\x7c\xe8\x95\x7a\x58\x78\x7e\xef\x45\xc5\x2e\x81\xe3\xce\x3b\x92\x6c\x1e\xba\x31\x48\x50\xce\x69\x59\x19\xca\xa1\xb0\x6e\x4a\x6f\x94\x25\x1b\x37\x70\xff\x2c\x66\xe4\xfd\x0f\xb9\x5e\x50\xa1\x9f\x42\x9e\x6a\x28\xd4\xf6\x26\x9e\xd7\x73\x35\x99\x47\x5d\xb5\xb1\x2a\xab\x43\x26\xea\x65\xf2\x81\xbd\xeb\xe4\x46\xa9\xf9\x4e\x50\xfc\x41\xe4\xb7\x71\x97\x60\x12\x3f\x74\xa5\x96\x7d\x86\xe3\x26\x61\x96\x2d\xac\xdc\xce\x3e\x5b\xbc\xb1\x2c\x09\x96\x14\xf8\x14\x33\xb2\xce\x19\xb6\x17\x50\x12\xea\xf5\x0b\x0d\x07\xa2\xdc\xb3\x5f\xe9\x17\x07\xed\x55\x15\x66\x57\x79\x13\xf2\xe5\xca\xf7\x4e\xdf\xc4\xc9\xd2\xd7\x1b\x17\xf0\x41\xe1\xf0\xca\x01\xf6\x1e\x6e\xb2\xf8\x59\xe9\xf3\x3a\x77\xf6\xf6\xe2\x19\xd5\xf6\xd0\xd7\x02\xf3\xf2\x2f\x59\xee\x86\x19\x25\xb2\x84\xcd\x39\xb7\x0b\xa7\x45\x5e\xce\xae\x37\x84\x05\xbe\x52\xc5\xe7\x64\x79\x6f\x93\xdd\xd2\x6c\x76\x1a\x16\x5b\xc8\xd5\x1b\xa7\xf1\x37\x89\xae\xad\xbc\xc6\xfa\xc2\xbd\x23\x8e\x2d\xed\x69\xd2\xb0\xda\x8a\x6e\xd6\x07\x41\x70\xfe\x9b\xea\xdb\x99\x17\xf2\xce\x56\xac\x3d\x71\x36\x47\x53\xe2\x19\x09\x67\x1f\x2b\x70\x08\xac\x54\x2d\xcc\xbd\xe3\xf5\x53\xc6\xd0\x2e\x75\x2a\x16\xf5\x29\x3e\x6f\x9c\xc1\x3b\x23\x2e\xb7\x98\xca\x92\xf3\x4c\x98\x99\x1d\xa2\xac\x93\x10\xad\xa5\x90\x54\x9e\xf5\xa3\xa1\x9f\x8c\x27\xbe\xaa\x39\x45\x89\x8d\x66\x57\x94\x51\x33\x43\x6e\x94\x44\xd0\x2a\xfd\x0a\xf2\xaf\x00\xf3\xdd\xf5\xfa\xdf\x60\x95\xe3\x4d\xcd\x7d\x38\xdc\xa6\x58\x9e\x80\x9a\x98\x2e\x14\xe6\x63\x9f\x98\x41\x1d\xf3\x29\xbe\x50\x58\xcb\x16\xca\xbb\xac\x07\x0d\x51\x54\x45\xe2\xb9\x9a\x64\xda\xae\xe8\x13\x15\x81\xf4\xa5\x21\xbd\x25\x7f\x01\x26\x7e\xe2\x7c\x21\xb8\xd7\x5d\xa2\x1f\x84\x0c\x8e\x37\x34\xb5\xc8\x34\x9b\x66\xb9\x2b\x0a\x9a\x6e\x12\x62\xf8\x74\xe6\xfa\x76\x35\xed\x3f\xc8\xbe\x79\x98\x1e\x95\xd5\x5a\xff\x99\x7e\x3a\xb1\xb8\xe6\x4f\x60\x4f\xb4\x47\xf9\x04\xf0\x32\xc4\x58\xdc\x02\x76\xfb\x51\xf2\xb7\x41\x0d\xee\xb8\x9e\x0e\x0f\x39\x5e\xd5\xa4\x22\x0f\x6d\x4e\xca\xa7\x61\xf3\x4d\x03\x85\xbe\xf8\x7e\xe2\x75\x5b\x15\x12\x08\x9e\x6b\x7a\x89\x1c\xce\x72\xaa\xdf\x88\x84\x27\xba\x54\xef\x41\x88\xa3\x6f\xcb\xb7\x22\xe7\x43\xc2\x8a\x3e\xa3\x2e\x7e\xee\x46\x18\x1d\x75\x8f\xcb\x39\x8d\x45\x38\x8e\xab\xcf\x63\xef\x6c\x9e\xcb\x92\x71\x95\x69\xb1\xa0\x8d\xe1\x4c\x2c\x6b\xbd\x4a\xd4\x81\x0e\x4d\x0b\x08\x71\xe6\xe9\x3a\x7f\x22\x2c\xe1\x46\x55\x2a\x61\x7e\x34\xa7\xec\x18\x31\x35\x64\x7e\x91\x2d\x31\xc5\x6f\x96\xa1\x95\x58\xec\xee\x91\x33\x8b\xb0\x72\xbc\xaa\x5e\x4c\x6c\x5b\xb7\x58\xda\x4a\xec\x33\x9b\x2a\x98\x4a\x44\x32\x18\x2d\xdf\x79\x37\x81\x92\x46\x27\xde\xce\xcc\xfd\xb5\x00\x57\x9b\x90\x50\x99\xc7\xf9\x78\xd4\xa9\x34\x87\x93\x10\xdc\x5b\x18\xcb\x7e\xbb\xef\x74\xde\x5b\x36\xee\x6e\xa2\xf3\x66\xcf\x74\xbc\xa2\x0a\x65\x09\xd6\xb9\x4b\xbe\xb1\xa6\x9a\xc5\xf1\xbd\x98\x54\xfc\x42\xf3\x6d\xf9\x2f\xfa\xad\x86\xcd\xb2\xb1\x8c\x63\x35\x74\x29\xef\x84\xb2\x42\x2b\x71\x8d\x42\x4a\x94\xe2\xc9\xc1\x66\x05\x51\xc2\x73\xfb\xfc\x73\xdf\x0a\x34\x6e\xd7\xb5\x3e\xfc\xbd\x8e\x63\xca\x08\xee\xbf\xeb\xa8\x92\x49\x1c\xaa\xd9\x7d\x9e\x1f\xeb\x03\x36\xd6\x6c\xa7\x1f\xa5\x8d\xd7\x67\xe9\xae\xa4\xa7\x55\xd7\x66\xdf\x38\x5e\x53\x7e\x56\x7d\x3d\xb2\xa6\x78\x48\x79\xfd\x50\x52\xbe\x5c\x3e\xee\xdb\x9f\x6b\x29\xed\x75\x03\xb3\x59\x62\xa6\x63\x99\x42\x2b\x34\x5b\x27\x12\xbb\xf1\x6a\xcd\xb7\x73\x25\x1c\x13\x74\xbc\x49\x53\xf2\x3f\xea\xab\xba\x17\x85\xd5\x69\xd2\xea\x0d\xf9\xa6\xc7\x6e\x94\xbb\xe7\xc5\x45\x3c\x2b\xde\x98\xa3\x0f\x1a\x34\xfe\xcc\x1e\xf5\x75\xd2\xab\x55\x97\xdc\x96\x69\x5e\xc9\xf3\x1c\x33\xe5\x9f\x25\xb6\xeb\xe4\xa2\x62\x41\xb5\x39\xc8\xf9\xca\x9d\x83\xee\x6b\x8a\xac\xa8\xa4\x52\xeb\xea\x4a\x1f\xa6\x59\x57\xbd\x2f\xfa\x74\x8c\x5e\xf6\x2b\xff\x59\x84\xac\xe8\x71\xde\x70\x10\xdd\xd8\x94\x23\xf5\x9d\xa2\xf7\xcd\xde\xb0\xeb\x9d\x26\x4f\x89\x3b\x46\xc9\x0b\xa5\x92\x75\xd9\xa2\x40\xa1\xd0\x5c\xcf\x29\xe7\xc6\x23\xe7\x9b\x56\xd6\xe4\x50\xe7\xd5\x65\x54\x62\xa9\x97\xab\x6a\xcb\x3c\x8f\xad\x2b\x6b\x28\xfa\x2f\x62\x7f\x91\x24\x1f\x0b\xf2\x34\x86\xe5\x4e\xf8\xdc\xcb\x79\xab\x73\xdc\x75\x57\xb3\x5d\x6d\xe2\x18\x25\xdf\x26\x6b\x5a\x57\x2b\x7c\x26\xda\x66\x7e\x86\xb3\x8b\x2b\x85\xf0\xbe\x08\x52\x25\xa9\xaf\x6b\x17\xf9\x58\xb2\xaa\x6d\x39\xc5\x3c\x6e\x72\xe3\x20\xe5\x5d\xb8\x5d\xed\x76\xea\xfb\x00\x8b\x0a\x80\x6e\xe9\x5d\x52\x9c\x06\x70\x5d\x10\xe3\x1c\xc8\xc4\x7e\x40\x77\x18\xbe\x60\xd5\xa2\xb4\x45\x51\x93\x14\x51\x09\xbe\x07\xa2\xf7\x3e\xa7\xfe\x49\x6a\xef\x1c\xa7\xaa\x93\xc5\xad\xad\x34\xd3\xd8\x4f\x8d\xf1\xb4\x8e\xf0\xd5\x35\xf7\xe9\xac\x80\x65\x15\x6b\x01\xa6\xb7\xa1\xd8\x02\xac\x71\x41\x0c\x67\xa0\x9f\xf6\xc3\xba\x95\x48\x82\xd5\x98\xe2\x07\x7a\xc1\x84\x2f\xc2\xf0\x7d\x50\x62\x2f\x85\x2e\x25\x55\x74\x1e\xa7\x3f\x4f\x46\x5b\x0f\x00\x1e\xb1\x8f\x1b\x27\x01\x15\xe1\x8b\x6b\x70\xd0\x33\x60\x4e\xf9\x18\x34\xdf\x5b\x5b\x74\x1a\x9e\xe2\x02\x1a\x60\x64\xa1\xfd\x69\xed\x4d\x74\x9b\xd5\x03\x45\x17\x16\x6e\x52\x23\xda\x83\x0b\xa1\x9d\x3d\x02\xc4\x40\x4a\xed\xe0\x20\x39\xc9\x5b\x5a\x68\x88\x3a\xb6\xaa\xc1\x0e\x69\x0d\x7b\x5e\xdd\x8e\xfc\x3a\xf8\xa2\x7c\x2a\x9a\xec\xcd\x2a\x9a\x86\x7e\x76\xa1\xe5\x0d\x62\x12\xfb\xeb\xda\x8d\xf8\x46\xeb\x39\x8a\x25\xf8\x98\xc9\x6f\x61\x39\x23\x03\xac\xe8\xce\x21\x2e\x91\xa6\xb7\x6b\x88\xc2\xa4\x37\xcd\x1c\xe2\x58\x6c\x7a\xbd\x37\x61\x1d\xd6\x59\x75\x9d\xf8\xeb\xe0\x50\xd9\x5a\x62\x8e\x77\x62\xa1\x2d\xb1\xca\x25\x25\xf7\x13\xe1\x62\xff\x24\x3b\x91\x88\xb0\x76\x93\x1f\x26\xb2\x4c\x8f\x0a\x9e\x13\x02\x30\xaa\xab\x99\xd7\x96\xd5\xd2\x56\xcf\x5b\x90\x94\xdf\x94\xc7\x4d\x8e\x5d\x57\x17\xcf\x39\x1d\xc6\xa8\xfc\xc6\xf1\x3c\xa8\x2a\xf5\x65\x9f\xf5\xde\x5b\x10\xc4\x8e\x73\x89\xce\x5d\xc5\xfa\x61\xff\x5e\x93\xcf\x92\x5a\x67\xca\xe4\xac\xa5\xa6\x03\x82\x55\xcc\x1c\xa0\xab\xb3\x50\x1e\x92\x35\xad\x35\x57\xb6\x2a\xf1\x59\x23\x5b\xf2\x24\x06\xaf\xf5\x15\x97\x85\xbe\xa8\xb8\x27\x02\x0f\x2e\x29\xd9\x2c\x0c\xf4\x7a\x9b\xef\x2a\x58\xef\xe2\xa0\x5f\xcc\xfb\xbc\x65\xba\x5a\xc6\x6d\xb0\x6e\x97\xf2\x38\xc7\xcc\x3c\xf9\x26\xec\x69\xf4\xeb\x1d\x6d\x39\x60\xe6\xa6\x96\x36\xad\x36\xd1\xac\xa1\x50\x53\x15\x3d\x54\x73\x4c\xd5\x13\xba\xab\xfc\x8b\xe2\x9a\x3f\xb7\xd8\x5f\xf6\xc2\x0b\x37\x46\x4b\xfe\x73\xfe\x92\xb3\x5d\x74\xd7\xfe\xb7\xaa\x43\x50\x6a\xfd\x50\xd2\xc1\x4b\x31\x2b\xe2\x05\x73\x16\xd1\x1d\x3a\xa6\x17\xed\xc9\xe0\xb6\x2c\xcc\xbf\x99\x40\x6d\x98\x69\x08\x89\x5e\x55\x3d\xa8\x6f\x3d\x5c\x51\xbe\x4f\xf7\x3f\xff\x3f\x8b\xca\x34\x71\x5e\xab\x0c\xbd\xca\x1c\xe7\x2e\x9d\x52\xa6\xb7\x7f\xab\x9a\x25\x4e\xb1\xfe\x25\x59\x28\x70\x30\x7b\xc7\x6d\xe7\x3c\xa1\x9d\x6a\x1f\x2e\xa3\x65\xd8\x36\x5f\x28\xee\x48\xb0\xae\x1f\x28\xb8\x77\xf4\x46\x75\xa6\xe1\xf5\xe1\xe3\x65\x13\xfa\xff\x0e\x5c\x2d\x0a\xd4\xbe\xda\xf3\xc3\x90\xaa\x1e\x70\x2e\xd6\x39\x2b\x02\xed\x5f\x29\x6b\x24\x95\x36\x73\xc5\x5d\x82\xef\xe6\x8b\xb9\xc7\xb8\x1b\x69\x71\xed\x78\xd5\xf4\xf4\xdb\xcd\xec\xf2\xa9\x27\x9e\xd6\xa7\x15\xff\x7b\x34\xbf\x7a\x59\x41\xe3\x61\xc7\x32\xa5\x21\xf9\x40\x43\xe1\x1b\xfd\xd2\x3d\xcf\x0c\x33\xb3\xb3\x9d\xf3\xb5\xe7\x94\xc3\xf6\x3f\x95\xce\xd2\x7a\x1b\x3b\xf1\x01\xa1\xca\xdc\x87\xf3\x9d\x1b\x48\x99\x3d\xbc\x81\xdc\x9b\x1a\xde\xf7\x89\xb2\xf7\x58\x48\x57\x05\xe5\x46\xa4\x49\xdb\x9f\x54\xf1\xa1\xfe\xc6\x8d\x34\xd0\x6f\x53\xcd\x02\xba\xc1\xd3\xbf\x4c\x0f\x7c\xdc\xf1\xb2\x60\x04\x22\xec\xfe\xd6\x73\x91\x75\x6b\x97\xa8\x7a\xd0\xfe\x15\xbf\xc5\x5c\x3c\x81\xb2\x74\xa8\x9f\x36\x35\x35\xb1\x4f\x48\x8b\x3d\x16\xdf\xe5\x41\x1b\x8d\x5c\xdb\x5a\x41\xdf\x7b\xe8\x54\xc3\x65\xfa\x4f\xbf\xad\xd5\x9d\xc0\x6b\xcf\xc3\x65\x3e\xd0\xec\x1d\x6f\x0b\x50\xf8\x90\x9d\x99\xde\x07\x69\x5b\x6b\xa7\x62\x63\x7f\x98\x2c\x17\x1f\xc1\x8f\x53\xcc\x87\x82\x80\xe4\xd4\x8c\x3e\x73\xa0\xf0\x58\x72\xe7\x75\xe0\x41\xa4\x4d\xab\x1b\x68\x73\x68\xb4\x21\x0d\xac\xf1\xdb\x51\x1d\x06\xa5\x78\x46\x96\xbe\x80\x83\x76\x7c\x2e\xb0\x46\x8e\xda\x59\xe5\xfc\x40\x91\xb5\x5e\x2a\x57\x8c\x6f\xe2\x24\x5e\x81\x17\x91\x7f\x0e\xc6\xa1\x5b\x52\x03\x7b\x1d\xd0\xa5\xc7\xfc\x3b\xde\xa2\x53\x22\x97\xb6\xc4\xa3\xf3\x0e\xf5\xd7\xe7\xa0\x3e\x7e\xdb\xaa\x38\x68\x95\x67\x5c\xe9\x32\x6c\xa3\xd3\xb4\xfc\x58\x6c\xc8\x6e\x67\xce\x6e\x3c\x7a\x2d\x45\x29\xc4\x9f\x9b\x70\x45\x64\x06\x8b\x5c\x39\x10\xcc\xdc\x9b\x6a\xd1\x63\x4b\xfc\x3c\xe6\xd8\xfe\x82\xa8\x89\x9c\xda\x7c\x82\x88\x39\xd4\x54\x57\x4a\x38\xfb\x6d\xac\x54\x13\x76\x9e\xb1\x25\x1b\x08\x57\xa7\x3f\x8d\x4c\x22\xc2\x2e\x48\x97\x45\x80\x6b\xab\x14\x03\x04\xdf\xe4\xa1\xb0\x8a\xc8\x23\x57\xf6\x47\xf1\x26\x52\x67\x77\xdb\xf1\x9c\x8e\xfd\xaf\xed\x05\x97\x15\xf1\xb8\x29\x8d\x73\xfd\x90\xa1\xb6\x85\xb3\xdf\xcf\xac\xa2\x84\x7d\xd6\x33\xa2\x78\x17\x3b\xca\x69\x91\x21\x9f\xf5\xcb\x2e\x59\xab\x67\x69\xd6\xde\x95\xbf\x67\x59\x9a\x7a\x08\x6e\x31\xab\xc8\x8b\xfa\x0e\xc9\xcd\x53\xa8\x5d\xf3\xa5\xb7\xe3\x59\xad\xad\x12\x6d\x44\x6c\xa3\x93\x38\xf8\x90\x75\x0d\x2e\xb2\xdd\x37\x50\x4e\x16\x4e\xf5\x34\x2f\x5a\xc8\x7f\xb8\xe3\x77\x1e\xc2\xeb\xb5\x53\x67\xd3\xb8\x42\xab\xcd\xb2\x1b\x9c\x20\xd3\x11\xfe\x69\xf6\x6c\xd2\xfe\xde\xd5\xba\xea\xe4\x91\x8e\x6f\xd9\x27\xe3\x1e\xb5\x34\xab\xef\x1e\x39\xdb\xb0\x5d\xf9\x31\xa8\xa0\x1a\x53\x2c\xdf\x17\x50\x46\x97\x6d\xf7\x38\x57\x68\x26\x39\xb8\xe3\x71\x2e\x57\x14\x6a\x57\xae\x11\x09\x3c\xac\x92\xa5\xdf\x78\x5b\xcc\xd6\xf2\x3e\x73\xa6\x67\xfd\xe8\x09\x2a\x9c\x9a\x1c\xdd\xb1\xc3\x48\xc4\x65\x35\xff\xcc\xfd\x72\x24\xb2\x9e\x9e\x13\x1f\xb4\xad\xaa\x2d\xfb\x8a\xef\xaf\xd2\x76\xb5\xab\x87\xaa\x20\x51\xa1\xd9\x31\xaa\xbf\x2c\x1d\xb2\xeb\x54\x9f\x15\x9d\xb4\xca\x91\xee\xe5\x9f\x35\x03\x78\xc1\x9c\xde\xac\xca\x9e\x59\x25\xe3\xc9\xe6\xed\x4f\x8b\xfe\x8a\x73\x6e\x2e\xce\xdf\x7e\xc4\xa6\x7e\x79\x5e\x48\xd0\xcc\xaa\xa0\x9c\x2c\xdf\xdb\xa5\x87\xb3\x45\x1e\x58\xc1\x1c\x95\x70\xc7\xb0\x9e\x24\x3f\x68\x37\xaa\x4e\x10\x3f\xb6\x6a\x91\xbc\x16\x20\x66\x85\xbc\x49\x9c\x9f\x59\x51\xdd\x9d\x15\xd3\x92\x1e\xb5\xcb\x4a\xa7\xc7\xcd\x6f\xf6\x2c\xfc\x78\x64\x6a\x5d\x83\xf1\x6a\xe0\xb3\xca\x7f\x73\xab\x7c\x47\x4b\x9e\xe9\x70\x0f\x28\x3f\x5f\xb3\x79\xc7\xf5\x9c\x2f\x8a\x5c\xbb\x27\xaa\xf7\x92\x73\x56\xf7\x25\xb0\x70\x8a\xd9\x75\xae\x86\xbb\xe2\xe1\x6e\x6a\x46\x46\xe7\xb8\x39\x6d\x41\xe6\xb9\x11\x90\x56\x97\x75\xa3\xe5\x3b\xdd\x89\xf4\x6f\x49\x25\xfd\x1c\x65\xba\x8a\x03\x24\x51\x0f\x10\x7f\x83\x2b\x68\x95\x69\xb6\xe0\x4b\xc0\x24\xb4\x19\xba\x06\x0a\xdc\xcd\xe0\x7b\xd0\x0f\xeb\x99\xe8\x34\x04\xfb\x27\x94\x52\x4c\xd6\x5c\x09\xa6\xfa\x53\x22\x87\x47\xa9\x9f\xa9\xe6\x2d\x07\x68\x6a\xea\xbd\x92\x69\x74\x17\x5a\xa3\xf2\x1d\xfd\x15\xbd\x92\x21\x03\x1a\x80\xfa\xd4\x46\x50\x09\x8e\x84\xfa\x41\x32\xe8\x9a\xdb\x05\xb8\x1a\x7e\x64\xf5\x08\xf9\x17\xf9\xf5\x20\x96\x7c\x8f\xae\xba\x8c\x53\xe4\xc0\xff\x86\xff\xa2\xba\x03\xc2\x66\x39\xf5\x13\xf0\xbd\x38\x80\x56\x03\x12\xca\x00\x7a\x0a\x64\xc3\x98\x05\xb8\x41\x77\x53\x77\x82\x5b\x60\xf5\xe1\x1b\x90\x07\xe2\xe9\x26\x85\x53\x90\xd7\x56\xa7\x91\x66\x54\x77\xaf\x96\x14\xcc\x98\x74\xb1\x89\xec\x80\x9f\x19\xdc\x4e\xf9\x1f\x2e\x6b\x9c\xa0\x5c\xc4\x13\x0b\x9f\x51\x75\x78\x90\x62\x31\x2d\x03\x8f\xc0\xa7\xd0\x8f\xe0\x89\x29\x01\x40\x32\x7e\xfc\xf0\x7c\x50\x8b\xfb\xbb\xad\x86\xae\xe3\x1b\xad\x6a\x11\x67\xec\xdb\x9d\xd1\xcc\x5f\xfc\xd2\xf3\x2f\xb3\x5e\xf0\xce\xf7\x23\xa4\x0b\xdc\x8f\x0d\xe1\xe4\x22\xee\x86\x82\x74\x0a\x8b\x43\x95\x8d\x50\x33\xd8\xe3\xe8\xbf\x34\x0a\x7b\x43\x72\x04\x3d\x97\x45\x0e\x41\x80\x1b\xcc\x92\x5d\x67\x20\x07\x22\xcf\xaa\x1f\xae\x66\x20\xb7\xca\x33\x1e\x29\x5e\x9f\x9d\xc8\x1c\x90\x1f\xeb\xed\xcd\xaa\x92\x3e\xa8\x6b\x23\x29\x25\x99\xc6\x37\x64\xb6\x78\xb6\x34\x95\xc2\x11\xd6\x23\x03\x54\x83\xc0\x3b\xe9\x18\xed\x16\x6f\x24\xf8\x06\xb0\x86\x6b\xb5\x0b\x06\x35\xec\xf5\x56\x97\x61\x13\xe6\xec\x1b\x73\xd2\xc9\x05\xe8\x58\x72\x06\xc5\xb8\xb4\xdb\x35\x33\x39\xb7\xbe\x26\x32\xeb\x48\x8e\x7d\xde\x30\x29\x3c\xbb\x56\x8c\x93\x53\xd4\x96\xf0\x72\x8a\x4e\x41\x4f\xb4\xa1\x3e\x96\x1a\x0e\x3d\xa2\xfb\x88\x38\xbb\xfe\x00\x2e\xf2\x67\x5b\xbd\x86\x92\xd8\x41\x57\xb7\xa6\xa5\x35\x1c\x3a\x75\x31\x9d\xa8\x79\xd5\xf1\x20\x43\x50\x49\xaf\x5a\x91\x89\x97\xde\xd6\x57\x65\xb1\x8a\xac\x85\x7a\x52\x91\x31\x04\xa4\x93\xef\xe9\xf7\x9e\x78\x48\xdd\xa6\x79\x1b\xf4\x8c\x56\xa7\xd8\xee\xca\x00\x7c\xc4\x0b\xac\x26\xc0\x4f\x5c\xf9\x95\xe8\xd4\x7f\x06\x2c\x47\x46\xd3\x26\xba\x5b\xdb\x9a\xd3\x3f\xb7\xdb\x55\xcc\xce\x78\xdb\xc4\xd2\xb5\x67\x7e\xaa\x2d\xe3\x5f\x26\x2d\xaf\xd0\xd0\x9f\x90\x23\x8b\xd7\x1f\xaf\xa3\x34\x19\xf6\x04\xad\xa1\xd9\x64\x3f\x70\x35\xa1\xdf\x92\xbd\xb1\xfa\x09\xea\xf9\x9c\xcb\xa4\xd4\xd6\x51\x60\xf8\x5d\x5a\xff\x50\x71\xeb\xad\xf4\xde\xde\xb2\x72\xfb\x8c\xba\x0e\x58\xfb\x2a\xb3\xa9\x79\x21\x7f\x49\xd6\xb5\xda\x24\xba\x27\x79\x59\x79\xf0\xf1\x2d\x94\x94\x82\xca\xc0\xdb\xd4\x3b\x39\xc9\xae\x93\xe9\x6a\x85\xca\x7a\x21\x18\x29\xb0\xbf\x34\x98\x2a\x3b\x7f\x65\x78\x4f\x9a\xf8\x74\x65\xab\x63\x3a\x36\xec\x53\xa6\xc8\x48\xe8\x6d\xd6\x86\x64\xc6\xb7\x5f\xe0\x49\xb3\x18\x8d\x79\xb4\x8b\xa4\x81\xaa\x17\xc7\x5e\x52\x66\x16\x73\x02\x07\xa8\x99\xb9\xb0\xeb\x1c\xfa\x46\xe5\x49\x6b\x6f\xe0\xbb\x20\xeb\xce\x6f\xc0\x26\x63\xd3\x85\x78\x80\x9a\x19\x31\xe0\x04\x8c\x66\x81\x8d\xe6\xe0\x2a\x92\xb4\x70\x0b\xc8\x22\x77\xca\x09\xf0\x09\x75\x01\x26\x84\x8e\xd0\xe0\x14\x13\xe8\x39\xfd\xeb\xe1\x2d\xb0\x04\xc4\xdc\xd6\x23\xc1\xf0\x42\xab\x73\xe8\x66\xa4\xf5\x8e\x2d\xfd\x08\xe9\xe7\xf9\x7c\x7a\x37\xf9\x56\x3f\x01\x58\x50\x6a\x1a\x52\x00\x21\x15\x28\x60\x83\x93\x69\x61\xb2\xc7\x20\x89\x1e\x83\xfe\x06\xbf\x02\xb4\x64\x1d\x94\x0b\xe6\x84\x54\xc2\xa1\x50\xdf\xae\x51\x64\x23\xfc\xca\x8a\x8f\x2e\x47\x2d\x6f\xfb\xd3\x14\xb4\x37\xe7\x4e\xd3\xff\xa0\x43\x7d\x7d\x74\x08\x98\x5e\x5f\x4b\x7f\x0f\xb0\xf3\xaf\x00\x64\x70\xb9\xcc\x0b\x98\x00\x2f\xa1\x14\x50\x0c\x69\x92\xd7\x42\xbb\xe0\xe8\x10\x1f\x78\x36\x62\xb3\x4b\x08\xbf\x41\xde\x59\x65\x21\x2f\xd1\xde\x9b\x02\xea\xff\x70\xcb\xb3\xb3\xa8\xc5\xf8\x5f\xbd\x93\x68\xce\xd8\xab\xba\x95\xb4\x51\xec\x92\x11\xa0\x47\x62\x63\xd2\xff\xd1\x7f\x60\x8f\x11\x0a\x50\x85\xcf\x4c\xf2\x00\x21\xdc\x22\x58\x0f\x45\xe3\x9b\x77\xad\x87\x63\x70\x1b\xab\x44\x84\x8a\x9b\x5d\x57\x92\x2f\xf1\x8a\xc7\x3c\x28\x99\xdc\xd7\xdd\xfe\xd4\x05\xdc\x4d\x35\x2a\x6a\x0d\x07\x36\x2c\xa2\x05\xb1\x6f\x8a\x6f\xd2\xa7\xb2\x0f\xc0\xa9\xf4\xd3\xac\x81\xc4\x63\x40\x1d\x6b\xcd\xa1\x5f\x60\x39\x93\xec\xfa\x10\xea\x23\x64\x56\x38\xfc\x82\xa1\xbb\x5a\x49\xaa\x95\x77\x8e\x26\x92\x83\x65\x11\x9d\x3a\xca\x0c\xc9\x44\xd5\x37\x4a\x8d\x38\x3f\x57\x4f\x8d\x16\x05\x88\xc4\xb4\x55\xc2\x45\x50\x08\xed\x2b\x7f\x2c\x81\x41\x7f\xc7\x8b\x3b\x94\x06\x7c\xe2\xfc\xe3\x5a\x00\xad\x64\xff\x65\x55\x0a\x07\x33\x57\x5d\xfe\x91\x15\x92\xbf\x60\xe4\x2e\x69\x41\xde\xe5\xf6\x35\xa4\x61\x3d\xbb\xa2\x96\x4c\xd1\x59\xe5\x30\x28\x8e\x9a\x61\x41\x25\x75\xb6\x2a\x02\x68\xa7\x4e\xc8\xaf\x9c\xf0\xa1\xfd\x90\x9a\x05\x89\x81\x25\xa2\x4d\xae\x9e\x60\x30\xef\x81\xd5\x25\xc8\xc8\x3e\x7a\x31\x2a\x33\xaa\xae\x6c\xe8\x48\x96\x45\x75\x44\xcb\xf9\xac\xfb\x15\xd3\xcb\x68\x24\x4d\x89\x4c\x4b\x21\x47\x14\x4e\xe3\x5d\xa0\xec\x32\x84\xd2\x4d\xa9\x4e\x39\xa4\xe3\x7f\xd2\x0e\x68\xf6\x06\x16\xd1\x21\xf9\x88\xcb\x0d\x60\x44\x74\xd9\xea\x05\x64\xc1\x15\x9c\x3f\x92\x31\xd2\xb7\x74\xc0\x3b\x53\xd2\x79\xbd\xa9\x3a\xcb\xbb\x15\x2d\x49\x27\x4d\x69\xf8\xad\x91\x92\xce\xd6\x1c\xe4\x2e\x24\x37\x95\x27\x52\xb5\x94\xb6\xa2\xf5\xf1\x77\xa9\xa7\xf3\x28\x01\xb7\x69\x5f\xb2\xbd\x5c\x28\x40\xb0\x4c\x69\xf5\x15\x1c\xe2\xa7\x9d\x23\x65\xc8\x4e\xba\xf5\xa7\x64\x06\x0c\x14\x34\x9e\xcf\x9a\xd5\x7d\xb5\x38\x27\xab\xbf\xed\xae\x7a\x94\xc4\x6b\x2c\xe1\x44\x91\x53\x6b\x6c\x28\xdf\x28\x99\x65\xee\xf1\xc7\xa8\x8c\xfc\xb1\x00\x15\xad\x5a\x37\xe8\x12\x0e\xcc\x57\x6c\xb2\x5e\x0c\x32\x04\x7f\x9f\x1d\xc9\x38\x7a\x96\xd4\xd7\x9f\xb9\xe4\x14\xaf\xd1\x2a\xf3\xd4\xe0\xd1\xa2\x6f\x59\xb4\x9e\x49\x6a\x07\xd2\xf6\xb6\x83\xec\x1b\xe4\xa5\x0d\xbe\x14\x01\x65\x49\xe5\x68\xbc\x09\xd5\xbc\x28\x3b\x80\x4a\xf3\xd4\x9f\x72\x89\xa1\x57\x29\x8f\x58\xfb\x81\xa6\x82\xe0\xeb\x1c\x78\x6a\x7a\xe5\x58\x16\xf4\x3b\xe3\x4d\x77\x3f\x3c\x3b\xcb\xb4\x76\x01\xbc\x85\xe4\x6c\x10\xc0\x09\xe4\x2c\xc9\x1e\x38\x9b\x72\x01\x1e\x82\xaf\xd1\x3c\x12\xcf\x23\x96\xf4\xb1\xe0\x10\x44\x08\x46\xba\xfe\x42\xe7\xc0\xb3\xad\xf6\xa3\xc5\xc8\xd8\xb5\x73\x90\x3d\x29\xe9\x74\x35\x74\x80\x1c\xda\x3d\x09\x22\x53\x9c\x6a\x8e\x40\xa5\xd4\x85\x79\x37\xa1\x17\xd4\x5f\xe2\x52\xd8\x9a\x3e\x07\x76\x80\x01\x60\x63\xa2\x1f\x7c\x1b\x3c\x7a\xe8\x3e\x72\x08\xd2\xb8\xe6\x20\x4f\xe0\xbb\x56\x33\x50\x31\xea\x70\x6d\x36\x78\x82\xe6\x37\xfa\x12\x2c\xa4\x3d\xed\x72\x02\xff\xa1\xc3\xd5\xb9\xd0\x22\xe0\xaf\xbc\x75\x50\x2c\x50\x23\x9e\x03\xd5\x83\x19\x50\x2d\xfc\x3f\xc8\x33\xe1\x16\xcc\x84\x4d\x0f\x21\xc8\x7c\xf8\x9b\x6b\x34\x52\x8f\xdc\x5e\xfb\x0e\x4d\x40\x4f\x8d\x3b\xd0\xdf\x61\x07\x4e\x59\x00\x9e\x98\x5f\x87\x14\x50\x63\x1e\x55\xcb\x80\x37\xd8\x66\xfd\x4d\x30\x10\xdb\x29\xbc\x0f\x76\x60\x27\xc0\x46\xc8\x1e\xd3\x27\x4c\x83\x06\xb1\xb3\x41\xd7\xe0\x14\x6c\xc2\x75\x1a\x62\x8d\xcf\x5e\xfb\x12\xf9\x82\x9b\x5f\xb6\xa5\x8d\x72\x8b\x47\xe2\xe8\x2b\xb9\x73\xda\x9e\xd1\x99\x9c\xe3\x15\x46\xfa\x03\xf6\x68\x0e\x13\x08\x64\x6f\x17\x34\x00\x67\x59\xfd\x40\x1b\x18\xca\xda\x7b\x62\x2b\xf8\x83\x79\x32\xc8\x0f\x6a\x66\x6e\x76\x39\x07\xb3\x89\x14\xab\xc5\xc8\x71\x46\xde\x45\x90\x9a\x27\xe3\x0d\x95\xd2\x16\x4a\x03\x5a\x77\xd2\x64\x92\x99\xe5\xf3\x69\xef\x44\xe7\x75\xcb\xe9\x89\x42\x2d\x3f\x8b\xfe\x41\x90\x49\xaf\x04\x64\xfc\x5d\xc7\x8f\x80\x9e\xdc\x89\xc0\x93\xd0\x54\x8e\xcc\x45\x03\x3d\x61\xfd\x6b\xe5\x09\x5f\x62\xae\x3e\xd7\x45\x89\x32\x14\x0f\x2c\xa7\xdc\xcc\xe5\x36\x5d\xa2\xfa\xe5\x04\x97\x9c\xa3\x76\x6a\x97\x67\xcf\xa0\x79\xa8\xc7\xb9\x5a\xda\x3d\xa5\x80\xb6\x98\x2e\x95\x5b\x1c\x5b\x07\x04\x48\xe4\x01\x1f\x41\x4b\xe1\x69\x17\x77\x68\x19\xaf\xd4\x0a\x80\x17\xb3\x0f\x9f\x09\x22\x53\x6a\x26\x7a\xeb\xc9\xaf\x2a\x87\x1b\x08\x4a\x7c\x99\xa0\x48\x4f\xb9\x53\xec\xaa\x9e\x4c\x4d\xce\xbf\xca\x1e\xa6\x2d\xca\xf3\xa7\x30\x68\xe3\x3a\x45\xdc\x3b\x7a\x91\x5a\x15\xb0\x08\xe0\xc9\xdd\x9d\x1f\x81\x5c\x11\xc3\x2a\x1f\x92\x71\xc9\xa7\xd7\x90\xae\xf4\x4c\xeb\x96\x93\x03\xdb\xff\xab\x8b\x27\x9f\x6c\xee\x2b\x30\x52\xbc\xea\x49\x4a\x2b\xca\xad\xaa\xd7\xac\x85\x54\x5e\x99\x1d\x79\x26\xed\x40\xa1\x59\xec\x28\x7d\x65\xae\xee\xe0\x7e\x60\xa6\xc6\xe8\x8c\x81\x4b\x64\x36\x56\xf5\xd0\x26\xbe\xcf\xa8\x3b\x49\x35\xf4\xb3\xab\x89\x3c\xbf\x4f\x5d\xcb\x23\x73\x3a\xbf\xe4\x9f\xa7\x4c\x69\xdd\xa6\x88\xa7\x68\x1a\xd6\x33\x63\xa9\x1e\x55\xb7\x48\x69\xb4\x19\xa5\xab\x62\x03\x69\xd7\x8d\x77\x0f\x4e\xa7\xf7\xe8\xe6\x3a\xc7\x03\x97\xe4\xdd\x56\x67\xc0\x57\xfc\xd7\xa7\xd4\xa4\xf0\xb1\x99\x5d\x7f\x90\x2e\x8e\x1c\xa9\xb9\x4f\x76\xef\x4f\xca\xdf\x40\xee\xe8\xf2\x94\x5f\xa1\xec\x69\x19\x26\x1e\x50\x5e\xd6\xbd\x24\x4d\xa2\x56\x57\xe8\x63\x67\xd2\xc8\x85\x79\xfe\xff\xd2\x0f\xeb\x67\x38\x27\x01\x29\x8a\x7f\xad\x27\x83\x1c\x81\xed\xd9\x6a\xc6\xd5\xb4\xf1\x7e\x1a\xe3\x68\xc6\x96\xa6\x2a\xfc\x4b\x26\x54\x52\x8e\xf7\x67\x15\x6b\xee\xe2\x0a\xd2\x23\x6e\x0a\x7e\x94\xe2\x4d\x3d\x8f\x6f\xa7\x0e\xc6\x9f\xc2\xff\xa2\x87\x07\xf8\x62\x5f\x80\xdf\xce\x2e\xd8\x27\x68\xdc\xf2\x26\x3e\x0b\x69\x3f\xf3\x99\x61\x92\x95\xd9\xd7\x8b\xb7\x91\x80\xc6\x77\x78\x24\x39\xab\x78\x02\xdf\x4a\x09\xd0\x6c\xc3\x97\x52\x7d\x39\xd7\xb0\x09\x5a\x3c\xf5\x00\x76\x97\xae\x8e\x0f\xc0\xc6\x80\x7b\x07\xdf\x60\x23\x90\xed\xce\xc7\xd8\x0d\xd8\x60\x59\x85\x7d\x42\x57\x9f\xd9\x86\x27\x52\x37\xf7\x7e\xc2\xff\x47\x7d\xd4\x68\x83\x9d\xa4\xc9\x8a\xb7\x63\x35\x74\x0b\xb5\x04\xd3\xd1\x2f\x73\xdc\x30\x02\x28\xa3\x9c\xc5\xe8\xa0\x24\xee\x15\x46\x86\xf8\x07\xc5\x18\x17\xc6\x77\x56\x62\xe5\x88\xd8\x52\x86\x5d\x43\xcb\x4f\x0b\xb0\xd9\xc8\xdd\x9e\x60\xf4\x32\xf2\xb8\x5e\x8e\x16\x23\x8f\x0b\xcf\xa2\x39\xc8\x4f\x95\x37\x9a\x83\x5a\xb3\x57\xa2\x5a\x34\x95\x7c\x13\x2d\x42\x7b\xe3\x1c\xd0\x6e\x6c\xd9\xc1\x29\xe8\x1b\x2c\x69\x67\x3c\x66\x89\xb5\x58\x16\x61\x89\xf8\x94\x53\xe3\x48\x37\xfb\x72\x57\x37\x52\xc1\x3e\x52\x37\x0f\xc9\x61\xdd\x2d\x48\x40\xf2\x59\x31\xca\x3f\x90\x7a\xe6\x47\xd6\x14\x64\x90\x99\x47\x7a\x82\x3c\x60\xfa\xc4\x66\xa1\x93\x89\xcf\xfe\x2c\xd4\x8d\x90\xed\x74\x45\x39\xc4\x0c\xcb\x2b\xe8\x2d\x06\x7d\x64\x10\xbe\x2e\x09\xe9\xf8\x00\x77\x8a\xc3\x6b\x58\x70\x95\x68\xbf\xf1\x3b\xdc\x23\x74\x90\x77\xc3\xb7\x04\xab\x89\xbb\xf0\x77\xfe\x9a\xac\xd7\x88\x0d\xcf\x24\xa6\x0e\x39\xc8\xfd\xc3\xff\x7f\x88\x9c\x7d\x75\xe7\x0a\xe4\x09\x2b\x6b\xed\x3c\xd4\x9d\xf8\x39\x24\x82\x14\xfa\x7b\x6d\xa5\x10\x96\x33\xa5\x6a\x2d\x04\x6a\x17\xe5\x9d\x84\xd4\x9a\xe9\xd2\x4e\xa8\x5b\xf9\x1f\x63\x21\xf4\x4a\x7e\x3f\x33\x11\x5e\x2f\x6d\x88\x96\xc0\xf1\xe2\x94\x03\x51\x70\x9d\xe0\xa5\xd3\x73\x64\x2e\x6f\xe9\x5a\x12\x92\xc6\x5e\x39\xf0\x37\x58\x5a\xd9\xd6\xb2\x0d\x2c\x2c\x6b\x2d\xbf\x0b\x16\x14\x37\xeb\x8d\x60\x7f\x41\xbe\xb8\x1f\x7c\x69\x20\x63\xfb\x20\x2b\xbd\x63\xfa\x3f\x50\x56\xf6\xd0\xd1\x00\xa8\x47\x65\xb2\x9f\x80\x97\xc8\x56\x3b\x61\x30\x21\x1c\x5e\x2b\x84\x5f\x72\xd7\xf4\x2d\x01\x7e\x75\xac\x68\xf2\x04\x67\xb5\x84\x95\x3e\x06\xff\x6a\xa0\xe8\x7a\xc1\x0d\x35\x71\xc2\xdf\x60\x58\xc5\x6a\xa4\x09\xd4\x16\xb7\xa6\xa1\xe0\x33\xe3\xf7\x28\x67\x68\x47\xce\x35\xbf\x0e\x28\x4f\xed\xe6\xb4\x14\x5e\x28\xdd\xb5\x56\x07\x13\xbc\x7f\x7a\x2d\x81\x27\x7d\x27\x1b\x4f\x00\x37\xbb\x3a\x4a\x17\x01\x17\xdb\x00\xed\x04\xf0\xb2\xf1\x83\x70\x37\xb8\xa8\xd6\x1e\x99\x0d\x1e\xac\x70\x4c\x7d\x05\x1a\x8b\x6e\x44\x9e\x06\xdf\xe5\x7d\xf5\x4b\x85\x82\xb3\x95\x3b\xbe\x42\xe7\x65\x03\x6b\x6b\x61\x17\x3e\xd6\x73\x0c\xb8\x32\x22\x6d\xe8\x06\xaa\x06\xf6\x97\x90\x00\x49\xf7\x80\x36\x12\x28\x6c\xbb\x21\x68\x03\x86\x1a\x8b\x61\x11\xf0\xa5\xc6\x32\x95\x05\xba\x97\x39\x46\xd2\x41\x79\xbe\xd1\xcf\x13\x7c\xaf\x03\x76\x7c\x81\x92\xe5\xf7\xd7\xde\x85\xae\xf3\x87\x06\x12\x79\x26\x69\xde\x2d\x0f\xb9\x7e\xe9\xa2\x8a\x46\x8e\x30\xe3\x64\x2e\xce\x7e\x9c\xf9\x5d\xa2\x60\x7b\x93\xfc\xf0\x59\xac\x42\x72\x47\x46\x12\x6b\x32\x75\xf7\x51\x37\x66\x1c\xed\x89\xdf\x53\xe2\x0c\xa0\xd9\xf1\x3f\x62\x37\x24\x58\x63\xce\x18\x44\x54\xfd\xbd\xdc\xcc\xcc\xea\x96\xcd\x9c\xa6\xac\xaa\x8a\x99\x9c\xc9\xa4\x22\xfd\xbf\xec\x13\x64\xa5\x64\x0a\xeb\x2a\xc5\x80\xf1\x58\xae\xd4\xa1\xf4\xaf\xcc\x6a\xfa\xb4\xa8\xc7\xcc\xd5\x40\x98\x9f\x82\xc8\x07\xdb\xb7\x5f\x21\x6c\x60\xbf\x35\x53\x19\xcd\xc8\xa7\xfe\x59\x9c\x33\x14\x87\x66\x2a\xc7\x84\xf2\xb6\x3c\x98\x4d\xa7\x96\xe9\x9d\x58\xcf\x68\xfb\xc4\x89\xac\x68\xfa\x7c\x6c\x32\xf3\x2a\xfd\x43\x3a\x9b\xe9\x0f\xbc\x8e\x92\x10\x57\xc1\x09\xbf\x7d\x44\x1c\x3c\x75\x7b\x2d\xe3\x0b\xb2\x75\xcd\x54\x86\x14\x45\x7a\xd9\x6c\x05\x9c\xd8\xf8\x89\xf5\x19\x96\x94\x5e\x67\x25\xc3\x0d\xba\x07\xcc\x37\xf0\xbf\x22\x7b\x26\x1d\xb1\x41\xde\x10\xbf\x11\x7e\x5a\x1e\x21\x44\xbe\x44\x3e\x25\xac\xd1\x13\xfb\x2e\x30\xc6\xd1\x6b\xdb\xe9\x0c\x10\xf3\x5f\x63\xce\xb0\xc4\xce\x76\xff\xcb\xf2\x64\x2d\x6e\x38\xc6\xbc\xc2\xec\x2a\xc9\x64\x1e\x65\x46\x6b\xb5\xc4\x07\xe6\x0c\xe1\x5f\x84\x90\xe8\x84\x9f\x13\x96\x04\x3f\xb5\x9f\x31\x48\x84\x47\x6e\x63\x90\x09\xeb\x7d\x11\x8c\x8d\x8c\x47\xdb\xc3\xf0\x07\x0c\xc5\x9a\x20\x5c\xc3\x70\xee\x9a\xc9\x0c\x13\x1d\xaa\xbb\x4c\x3c\x17\x66\x14\x4d\x10\x0c\x01\x37\xdb\x89\x30\xe5\x6b\xf8\x57\x18\x43\xbc\x5a\xe8\x32\x23\x91\x7b\x27\xe5\x0a\x63\x09\x77\x5a\x04\x8a\x9f\xe1\x2c\xf6\x7d\x87\x33\xd9\xf3\xb6\x6f\xc5\xdd\x99\x8f\xd6\x88\xb0\x2f\x44\x6d\xfb\x03\x62\x91\xce\xa9\x46\xcc\x18\xcc\x16\x14\x34\x31\x8e\xa9\xcf\xab\x57\x31\x66\x29\x3f\x71\xdf\xe2\xad\x8a\xbf\xc1\x35\x78\xb2\xcc\x25\xf9\x04\x6e\x25\xd9\x77\x24\x15\x7b\x22\xda\xe2\xbb\x1b\xab\xe0\xbf\xda\xf6\x1b\xcb\xe2\x1e\x5f\x73\x1b\xb3\x63\x0d\xb4\x62\x0c\x87\x32\xc7\x2a\x67\xfc\x55\xb1\xda\x88\xe1\x79\x05\xf7\x95\x0b\xf1\xdd\xc6\x3f\x39\x73\xb1\x8f\xb9\xab\xe8\x64\xac\x51\x67\x93\xf8\x11\xa3\x6b\xa6\x84\xef\xc7\xdc\x14\x79\x3e\x18\x36\x47\xf2\x76\x5b\x33\x7a\x43\xf0\xd6\x72\x09\xaa\xe1\xb4\x35\xc7\xe3\xbd\x2d\x93\x2a\xdc\x71\x52\x83\x38\x4f\x83\x2f\xaf\xf9\x29\xf7\xc4\x06\x2a\x9d\x58\xd1\x58\x46\xa9\x2f\xf5\x2d\xb6\xa9\x70\x53\x42\x09\xfa\x39\x6f\x2c\x6c\x27\x3a\xa2\xfd\xbe\xb7\x0d\xd5\x2a\x47\xb7\x1d\x40\x13\x24\xce\x96\x6b\x50\x6b\xde\xd1\x26\x3a\x9e\xdd\x15\x5b\x7e\x14\xf7\x6a\x2b\xc8\x3d\x89\x3d\x6a\x6a\x95\x61\x18\xb7\x8e\xcd\xac\xc2\xec\xab\x56\x50\xfd\xd0\xd7\xa5\xe4\x84\xe5\x68\x53\x01\x25\xf4\x0c\x8a\xeb\x27\xf6\x1e\x43\x83\xd4\x3f\xb7\xad\x47\x57\x4b\xab\x2d\xb7\x20\xff\xf0\xbe\x36\x76\xe0\xa4\xfe\xd7\x65\x75\xf8\xc2\xee\x89\xdc\xd5\x58\x65\x7b\xb7\xf4\x09\xb6\xbb\x79\x23\xd3\x1c\x7d\x5a\x17\x4a\xb9\x84\xea\x2b\x1d\x4e\xb4\xa0\x47\x8a\xcb\x42\x21\x74\x8d\x01\xd9\xeb\x80\x7c\xc8\xbe\xb4\xcd\x12\x19\x90\x0d\x5a\x86\x21\x20\xdf\xbd\x25\x51\xba\x2b\xb5\xac\x12\x16\x7f\x48\xfb\x6c\xfc\x5b\xd4\x9e\xe1\xac\xe8\x13\xea\x33\x11\x76\x9b\x80\x91\x75\x87\x6e\xcd\x0f\x23\x07\x26\x6a\x78\x76\x94\x67\x61\xc7\xb9\x73\x68\xca\xbd\xce\xec\x7f\x81\x03\x8e\xbd\xac\x3e\x28\x6c\x55\x10\x53\x85\x70\x9b\x73\x25\xfa\x8c\x17\x15\x97\xc4\x09\x99\x13\x06\x5c\xb4\x2b\xeb\x87\xc2\x51\x68\x4d\xfa\xca\xde\x21\x58\x42\x59\x4c\x6b\xe3\xfd\xa2\x7a\x26\xda\x73\x1f\xd2\xe4\x61\x2b\x38\x97\xe8\xff\x79\x7f\x65\xb7\x83\xd1\x8e\x1a\x56\x11\xfc\xe7\x2a\x2f\x26\x86\x5c\x6a\x1a\x11\xff\x20\x07\x54\xac\x10\xdd\xa7\x2c\xcf\xfb\x47\x78\x8a\xf2\xaf\xdc\x20\x68\xa3\xaa\x58\xf5\xfc\x6a\xda\x09\x9a\x0b\x2f\x8f\x1e\x96\x70\x86\x2b\x02\x8e\x85\x5e\xe4\xf0\x40\xc8\xbb\x97\x8d\x43\xb9\x8e\x28\x8b\x0c\xbf\x5c\x15\xc8\x0c\x47\x03\x1a\x93\x44\x83\xe0\x97\xb2\x2e\xe1\x10\x74\x30\x97\x23\x38\x0d\xe9\x65\xc7\xf8\xe7\xa1\x47\xcc\x1c\xde\x35\xd8\x93\xea\xc5\xbd\x06\xf7\x9c\xf8\xc6\xb9\x82\xf8\x84\x3a\xb3\x1f\x23\x63\xde\x81\xac\x8f\xe8\x21\xc7\x50\xe6\x07\xf4\xcd\x2a\x90\x78\x81\x29\xeb\xff\x13\x0e\x13\x51\xa5\x91\x82\x11\x62\x87\x7e\x2b\xff\x3c\x31\x45\x6a\xcf\x7b\xc0\x38\x49\x08\xb8\x9f\x19\x39\x94\x60\xee\x0c\x86\xe0\xc4\x46\xce\xdf\x0c\xe2\x70\x19\x7b\x2b\x23\xd9\xeb\x27\xeb\x00\xc3\xcf\x71\x3f\x33\x94\xb1\x7a\xd5\x30\x71\x08\xff\x5e\x67\x2b\xb8\x2c\x70\x2e\xbe\xcc\xbf\xc5\x97\xe8\xee\xf0\x5e\xf0\x2e\x8a\x3f\xf1\xfe\xe0\xfd\xc1\x48\xe7\xae\xe5\xee\x21\x87\x71\x76\x73\x0c\xc7\xc3\xd8\xd1\xec\x89\xc3\x0b\x59\x6c\xb6\xa3\x57\x2d\xb3\x90\x15\xeb\x18\x4c\xd4\x30\x93\x56\xdb\x30\xca\x89\x94\x9a\xa5\xfc\x33\x9a\x94\xc2\x26\xde\x39\xf5\xb4\xec\x6e\xee\x43\xa5\x48\x34\x85\x3b\x4d\xfe\x04\xab\xe3\xd8\xc8\x5c\xb2\xce\xb2\x03\x25\xb9\xc7\x66\xb3\x40\xd1\xb3\x90\x85\xcc\x0a\xe1\x0c\xaf\x19\xc4\x05\xde\x2f\x47\x13\xc6\x43\xce\xd0\xea\xe3\xf8\x43\x56\x52\xe5\x03\xde\x60\xd1\xd9\x7c\x36\xf7\x73\x41\x8a\xba\x92\x6b\x6d\x9c\x22\xf8\x9b\xb3\x2f\x37\x1d\x79\xcf\xce\xd4\x9d\xce\x74\x66\x15\x66\x2f\x89\x6b\x66\x8e\xab\x9c\x82\xa7\x32\x67\xc8\x97\xee\xf1\x23\xb6\x88\xdb\x1d\x4e\x33\xfc\x04\x8b\x57\x8b\xf1\x00\x8e\x7b\xf9\x1b\x1e\x58\xdf\x66\xa8\xe2\x8a\x6a\xca\x95\x37\x38\x4d\x95\x19\xbc\xa3\xec\xf1\xd2\x1f\x70\x34\xeb\x4b\xd1\xd1\xf4\x71\x96\xb5\x51\x13\x8b\x33\xc3\xf4\x82\xa0\xdf\x84\x3c\x7b\xd1\x6e\x26\x63\x48\xb1\xc7\x21\x1e\xbf\x25\xde\xb4\x5a\x87\xdd\xe2\x5e\x2e\xfb\xc2\xf3\x6d\xbd\x9a\x77\x89\x1b\xdb\x94\xae\x9c\xc7\x61\xd6\x5d\xe3\x16\xb1\x8d\x55\xdf\xa0\x66\x56\x5f\xd9\x8b\x74\x27\xe6\xcb\xa2\xdc\x98\x5f\xcc\xa5\x86\x5f\x41\x2a\xc2\x5f\xf7\x70\xb7\x1d\x83\xa1\x3a\xe2\xe0\x8e\xab\x25\xc2\xd5\x55\x98\x8c\x97\x58\x66\xcd\x33\xe9\xb6\xca\x33\xe3\x6e\x69\xc7\x14\xa9\x9c\x03\xcd\x4a\xee\x5c\x76\x4c\x7d\x34\xb4\x91\x05\x54\xbd\x4c\x3b\xc9\xcc\x2b\x5b\x1b\x63\x24\x86\x0a\x27\x05\xed\x61\x4c\xe4\x7a\x7b\x7e\x67\xac\xd1\xfc\xed\xb0\x0d\xb7\x97\xaa\x57\x9f\xc3\xd6\xf2\x1a\x0b\xf7\xe4\x5c\x4b\x8d\xd7\xe6\x69\xef\xa5\x95\x49\xe2\x34\x9f\xd3\x6f\x31\xc3\xd4\x8b\x32\x4d\x68\xed\x4a\xdb\x2c\x46\x72\x99\x7c\x13\x79\x72\x54\x9b\xd4\x82\x52\x7e\x30\x46\xf4\x8b\x96\xec\xbe\x58\x70\x0a\xf0\xb6\xbb\xcb\xc3\xa0\x64\xf3\x67\x1c\x33\xa4\xbe\x60\x20\xc7\x2b\xe3\xa8\xd6\x4c\x1b\x91\x19\x23\x7e\xa7\xc1\xb2\xc2\x89\xb7\xaa\x52\x52\x34\xed\xb0\xe2\x34\x99\x97\x7c\x50\x76\x9d\x32\x16\x95\x22\x19\xa7\x6d\x3a\xb8\x5e\x34\x40\xaf\x74\x7b\x27\xd0\x81\xdb\xed\x2e\xf3\x22\xe1\xe9\xe6\x9f\x39\x33\x90\xff\x0a\x36\xeb\x3a\x48\x58\xb6\x26\xfb\x36\xd9\x43\x4c\xd2\xfc\x41\x99\x42\x00\xaa\xed\x94\x31\xea\x6b\x45\x2c\xb5\x29\xe9\xbd\x8c\x4e\xeb\x8e\x32\x95\x20\xf4\x47\xfe\x1f\x45\x00\xf8\xb7\xdb\x59\x41\x14\x14\x6a\x77\x92\x67\x0b\x5f\x58\xf9\x27\xfb\x2e\x1a\x63\x1c\xd0\x76\x03\x02\x4d\x84\xe6\x09\x38\x55\x74\x58\xbd\x1a\x3c\xc6\x80\x95\x91\xe0\x28\x75\x9e\x5c\x0e\x79\x26\x6d\x92\x36\x42\x77\x23\x41\xf1\x10\x2c\xf6\x17\x08\x2f\x22\x9b\xdd\x94\xfc\xd3\xc8\x3f\x76\x17\xb9\x06\xb4\x79\x65\x0c\x3b\x04\x53\x1a\x2a\xb2\x9b\x70\x57\xb5\x93\x7a\x02\xf7\x12\xee\x54\x6d\xc7\x3d\x70\x48\x81\xe0\x9b\x28\xb6\xb2\x6e\x7c\x63\xe2\x09\xc9\x0b\xdc\x37\xe2\xb2\x78\x06\x4e\xf2\x9f\x2f\x5c\x8d\x8b\xdd\xfc\xf9\x36\x78\xa1\xdd\x59\xee\x4c\x7c\x78\x65\x31\xeb\x14\xfe\x38\xcf\x51\xf3\x90\x1b\xa5\xfc\xa1\x5e\xc6\xf9\x26\x58\xa8\x8c\xe1\x80\x58\xaa\xbc\x86\xfd\x94\xec\x22\xfd\xc0\x8e\x49\x50\x48\xd6\xb1\x3e\x46\xac\x14\x05\xb0\xf8\x07\x94\x02\x32\x6b\xb6\xdb\x7c\x1e\xc6\x84\xed\xc6\x39\x47\x89\x3b\x2b\x3f\xb2\x4c\x88\xad\x7a\x5c\xdd\xad\x30\x2a\xb6\xab\xe6\xc9\x09\x5e\xb8\x22\x46\xe6\x87\xdc\x90\xd5\x4b\xde\x67\x8d\x4b\xbe\x8a\xb5\x27\x82\xc5\x3b\x44\x7b\x8f\x2c\x15\x26\x09\x9e\xef\x3f\xc7\x57\xf1\x63\x76\x65\x73\x4b\xb9\xed\x76\xdd\x6c\x2e\xfb\xa3\x85\x37\xd3\x9b\xb5\x4c\x57\xa0\x36\x37\x5c\x92\x25\x28\x23\x72\x2f\x70\xf2\xe5\x55\x39\x9d\xb0\xab\xf4\x9b\x96\x97\x19\x2b\x71\xd7\x78\x1d\x9f\x2d\xe2\x29\xbf\x85\x4f\x12\x0c\xc8\x45\x7e\x1f\x78\x6f\x25\xff\xec\x9a\xc1\x9d\x2e\xfc\x65\xc7\x66\xbd\xe0\x7d\xb4\xa0\x10\x15\xec\xbe\xec\x6f\x2a\x69\xe5\xa8\xa4\x57\xf1\xa4\x7c\x2a\x7b\xb2\x7c\x5b\x89\x29\xd8\x29\x65\x16\x2e\xcb\x98\x24\x1e\x35\x7c\x88\x3f\x2f\x9a\xaf\x2f\x0f\xfd\x20\xf0\xd5\x5a\xfa\x2d\xe0\x51\x54\x1e\xae\xe1\x1c\x81\x6c\x81\xdd\x16\x56\xba\xb0\xcd\x42\x40\xd8\x72\x57\x66\xef\x54\x85\xd5\xbb\x4b\x26\x2b\xea\x6a\x76\xb2\x7c\xe4\x33\x2a\xa7\x80\xf3\xa4\x07\x4a\x8d\xe9\xc7\xc5\x92\xa2\xb9\xf1\x5e\xc2\x2b\x46\xdf\x50\x86\xe0\x4f\xbd\xfb\xbe\x26\x9e\xbd\xe6\x94\xeb\xff\x38\x9e\xf2\xf7\x76\x8b\x59\x56\xa2\x77\x16\x3a\xc6\x3f\xdc\x52\x8d\x5e\xb5\xb6\xf9\x97\xf8\x84\x82\xde\x70\x92\xd9\x28\xbb\x58\xeb\x07\xb0\xa5\xf3\x2a\x75\x69\x2f\xc5\x7b\x4b\xab\xe3\xee\x08\x39\x85\x70\xe8\x7a\x7e\x7b\xde\xd7\x7d\xa9\xdc\x9b\xda\xf7\x2e\x0f\xd9\xff\x2a\x99\x76\xb3\x99\x43\xe2\x47\x16\xdd\x0c\x80\xfb\x59\xf2\xac\xac\x3c\xd5\xc0\x39\x50\xfc\x3e\xed\x12\xe2\x5e\xe8\x9a\x31\x8d\xc4\x37\x22\x99\x7b\x12\x0f\xe7\x56\x64\xd5\x44\x8d\xeb\x9a\xc9\x5b\x83\x72\x35\x39\x94\x97\xde\x0e\xca\x00\xda\xf0\x8e\xb7\xd2\xbb\x40\xa7\xad\xa9\x68\x0f\xf4\xc1\xf4\x06\x8f\x8a\xfa\x4a\xd8\x65\x2b\x33\xdc\xd9\xdf\x8b\x33\x32\x3d\xe1\xcf\x05\x03\x59\x9e\x24\x4f\xe3\x5c\x92\x7f\xe2\x92\x5c\x6f\x32\x23\x2a\x57\x17\x46\xb9\x12\x94\xaa\xf1\xa1\xf9\x79\x2f\x51\xce\xa3\xdf\xdd\xf1\x40\x5a\x01\x72\x6d\xd7\x89\x96\xc1\xe9\xa6\x9f\x79\x21\x68\x96\x64\x59\xa9\x9e\x34\x9b\x9d\x5b\xf4\x96\x74\x07\x2e\x2a\xf0\x24\x57\x65\xbd\x37\x18\x28\xec\x84\x8b\xfa\x7b\x54\x46\x54\x94\xf6\x33\xcd\x10\xe4\xa4\x7e\x4d\xbf\xeb\xf5\x59\xd1\x0f\x5a\xef\x18\x97\x26\x40\x1c\xdb\xad\xc2\xfb\xc8\x4a\xb3\xa5\xbc\xd5\xe8\x59\xf1\xf6\x12\x1d\xfd\x32\x6b\xb0\x68\x3a\xe0\x03\x5d\xcc\xcf\x04\x9a\xb2\x5c\xf2\x4e\x82\xeb\x12\x1c\xf5\x33\xc1\xde\xc8\x1b\x5a\x1b\x88\x1c\x78\x4e\x6d\x05\x7b\x7a\x35\x28\xe6\x22\xd3\x77\xf4\x48\xce\x21\x97\x6c\xfd\x85\xfb\xd1\x6b\x66\x89\xdc\x6c\xec\x8e\xc8\xbf\xb8\x15\x1d\x63\x3e\x2e\x5c\x89\xbe\x05\x27\x8c\x42\x6c\x72\x26\x90\xfb\x1c\x9b\x77\x42\x98\x63\x8f\x39\x46\x7a\x66\x47\x60\x60\x60\xa0\x2a\x1e\x3b\xef\x15\x27\x0f\xc6\x17\xee\x28\x96\x98\xe1\xa1\xb6\xc7\x05\xc5\x78\x97\x59\x2f\xe7\x1d\x63\xb9\x30\xaa\xe8\x34\x3b\x8c\x78\x5f\xe0\xc1\x9e\x02\xfe\xcf\xd0\xc2\xd2\x67\x54\xe6\x2e\x61\xed\x38\x7e\x4d\x77\x9c\xf9\x34\xa2\x48\xa3\x61\xd6\x07\x9c\x57\x16\x33\x71\xaf\xbf\x64\x06\xa6\xcb\x0e\x96\x38\x95\x78\x6b\x8b\xf1\x27\x88\x7c\x73\x13\x8e\x27\x11\x22\x98\x52\x58\x2a\xa5\x33\xca\xf2\x37\x49\x18\xf4\x0b\x79\x75\x62\x5a\x3a\x4b\xbf\x40\x14\x73\xec\x8a\x36\x56\x78\xf0\xc8\x90\x5a\x27\xd8\x17\xb0\x5c\x51\xc7\x77\xdd\x23\x93\xd6\xf1\xe6\xec\xf0\x16\xb1\x38\x7d\xb6\x1a\xfe\x9f\xec\x64\x73\x06\x3b\x82\x35\x83\x47\x29\xb8\x97\x73\x00\xdf\x66\x4c\xd4\xca\x69\xdc\xdc\x57\x9a\xf3\x69\x87\x72\x0e\xa8\xde\xc7\x0f\x67\xeb\x95\xf3\xc2\xaf\xa8\x6e\xca\xad\x0e\x06\xc9\x27\xa4\x6b\x76\x7f\x97\x7c\x17\xbd\xd8\xfe\x56\x38\x2e\x60\xda\x32\x78\x47\x79\xd3\xcd\x7b\x58\xcd\xec\x64\xee\x9c\x82\xc4\xe2\x37\xe8\x1d\xc3\x9b\x42\x3e\xd5\x3e\x37\x31\x7f\x6e\xea\x32\xdd\x68\x5e\x56\x5c\x79\xf6\xc2\x9c\xde\xb0\x1b\xaa\x43\xd9\x6f\xfc\x19\x72\xaa\xea\xdd\xee\x03\x12\x92\xdc\xb8\x3d\x4d\xe8\x25\x99\x63\x1b\xc6\xbd\x2c\x38\x61\xfe\x98\x65\xc5\xd1\x70\x12\x0b\xcc\x2a\x1e\xa2\x3b\x0d\x75\x65\x8e\x14\x5d\xae\x5d\xf1\xb1\x14\xb1\x4e\x50\x90\x15\xb7\x4e\x73\xc9\x10\x19\x96\xac\xfa\x9f\x7e\xa5\xbf\xb5\x7c\x4b\x76\xe5\xee\xe9\x92\xf5\xca\xcb\xdb\x1d\x04\x9f\xa5\x95\xb6\x1e\x5c\x96\x90\x64\xfe\x99\x79\x83\x3b\x8b\x7d\x37\xff\x72\xad\x15\xd2\x6a\x48\xad\xf2\xa0\x2c\xd3\xbf\x2b\xdf\x90\xb2\x5c\xe7\x59\xfc\x5f\xec\x29\x0d\x51\xc0\x0f\x5b\xa2\xec\xcd\x7b\x75\xe0\xa9\xec\x6e\xce\x9f\x9e\x97\xc4\x67\xd4\x2d\xdb\xff\x16\x48\xe5\xb3\x6c\x5d\xb9\x26\x22\xef\x95\xd6\xcc\x64\x6e\x20\xdc\xde\x3c\x9a\x96\x43\x31\x6b\x58\x9d\x5e\x9c\x3a\xad\x46\x90\xd1\x1c\xcf\xac\x78\x97\xf9\xe2\x48\x55\xe9\x26\xd2\xfe\x40\x75\xa1\x13\xf9\xde\xde\xaf\x86\x3f\xa9\x06\x57\x44\xa7\xa7\x4b\xb6\x84\xaa\x9e\x83\x39\x56\x0f\xa5\x4f\xe0\x93\x26\xb6\x02\x23\xb6\x10\xe6\x34\x6f\xcf\xf8\x44\x7e\x5f\x5f\x92\x79\x33\xe5\x49\xcd\xb2\xac\x81\xf8\xb8\x0a\x0e\x69\xf0\x88\xac\xe4\x3c\xf9\x5d\x20\x5a\x70\x9f\xea\xb7\xf7\x79\x5e\x1b\xed\x8a\x2b\x4d\x17\x04\x60\x5b\x22\x54\x35\x90\x87\xd5\x37\x69\x13\xb2\xca\xc4\x5f\x40\xc5\xcc\x61\x9f\xa6\x2a\x12\x99\xdc\xf5\x7f\x02\xe0\x02\xa0\x89\x46\x01\x00\xb0\xdd\xdd\x0a\x08\x92\x2a\x02\x0a\x08\x48\x88\x82\xa4\x74\x77\x33\x18\xeb\xde\xed\xee\xd6\xdd\x1b\x0b\x06\xa3\xbb\x1b\x04\xbb\xbb\xbb\xfb\xb7\xf5\x59\xd8\xfa\xbe\x3e\x27\xb2\x37\x7a\xb4\xab\x99\xfc\xb9\xc8\xaf\x7d\x0d\xe5\x68\x26\xba\x19\x41\x3d\x9c\x90\x5f\x0f\xd1\x5e\x87\x5f\xab\x4e\x07\x7c\xb7\x63\x4c\x93\x18\x8d\x1e\xf9\xba\x22\xc8\x7a\xfd\x7c\x15\x01\x1e\xb1\x24\x4b\xb7\xb1\x8a\xc0\x53\x03\x8d\xf4\xa3\xe4\xf0\x5e\x77\xc0\x1a\x1d\xda\x79\x14\x00\x0a\x6f\xb6\xf9\x03\x3f\x33\x57\x37\xa9\x18\x75\x09\x56\x75\x9d\x60\x59\x78\x83\x59\x01\xc5\x6f\x4f\xae\xd8\x09\xfb\x79\x20\xcb\x47\x99\x9b\xd7\xfb\x29\xcf\xb3\xfc\x2d\xcf\x48\x6a\xd8\xc9\xe0\x96\xfe\xfd\xcc\x20\xd2\x58\x4f\x28\x33\x11\x75\xac\xe3\x32\xb3\xb8\xb0\xa8\x35\x9e\x29\xce\x18\x6b\xec\x62\x9e\x89\x3f\x5b\x7b\x8e\xe5\x10\x5e\x54\x35\xcc\xd2\x6f\xf7\x36\x52\xd9\xb3\x3c\xf0\xda\x09\x36\xb4\x1e\xad\x5c\xcc\xfe\x65\xe5\x26\x7e\xce\xe1\x30\xb4\x7d\x97\xf9\xbe\xa4\x75\xdd\xd9\xbc\xe7\x28\xef\xf6\xd7\x3c\x79\xc1\x8b\x16\x1c\x2f\x22\x23\xa6\xe1\x22\xcf\x3a\x1e\x5f\xf3\x99\x37\x2d\x7c\x6d\xe5\x43\xee\xd7\xed\x4b\x0d\x1d\xdc\x17\x1e\x44\xad\x3b\xf7\xf2\xfa\x5a\x45\x3c\x77\xaf\x95\x49\xec\xc4\x6d\x05\x46\x7b\x21\xc5\x74\x62\x70\xd7\x26\x79\x44\x59\x66\xdb\x59\x19\xa6\x60\x6d\x73\x82\x54\x9c\x5e\x53\x3f\x20\xe9\x8f\x7b\x50\x7d\x5f\xfc\x20\xac\xcf\x74\x45\x3c\x27\xe0\x96\xbe\x56\xe4\xe0\x41\xd4\x6c\x14\x6e\x5c\x7f\x43\x1e\x27\x70\x5e\x3b\x5f\xb4\x91\xbf\x8e\x2e\xe9\x29\x37\xe8\x08\x1e\x9d\xa1\x7a\x47\x24\xa9\xf5\x65\x79\x63\x7e\x58\x13\x56\x3b\x37\xed\x61\xdd\x45\x35\x25\xce\xb7\x7a\xb2\xf2\x46\x98\x5b\xc5\x1f\x85\x53\x80\x50\x77\x5e\x96\xec\x91\xaa\xce\x92\xe4\xac\xff\x9f\x4c\x2a\xca\x5b\x5b\x2c\x44\x0a\xc2\x69\xf5\xdd\x17\x6a\x2f\xe1\x63\x3b\x2a\xaa\x6f\x96\xca\x5b\x83\xaa\x86\xf2\xf0\x8d\xc7\x4d\xa8\x34\xcb\x3a\x3b\xe3\xb2\x58\xad\x39\x5b\xd7\x15\xda\x56\x51\xa4\xb5\x0d\xb0\xd3\xb9\xa8\xd2\x3d\xac\x55\x23\xf2\x8c\xf5\x9f\xa5\x6f\x24\xa9\x6b\x9b\x05\xd7\x84\xbe\xb4\x6d\xdd\x82\x26\x7f\xdc\x93\x8e\xf0\xfa\x37\xa5\xb6\x2d\x5f\x6b\xc9\x79\x8b\x1a\x49\xe6\x3b\xa9\x27\x6b\xcf\x57\x3a\xc7\x46\x9a\xe7\x18\x8b\x43\x71\x15\xcb\x74\x64\xff\xdf\xe5\xb7\x35\x5e\x1e\x73\x55\x59\x8a\xd1\xf5\x3f\xa4\x7a\xa9\xf7\xda\x93\x02\xb6\xb0\x92\xfa\xb0\xdb\xaf\x6d\x0a\x4e\xd8\xfe\xbd\x19\x59\x72\xb6\xa5\xbe\xa1\x3b\xf7\x68\xe3\xaa\xda\x2b\xa9\x82\x5a\x94\xf9\x76\xec\x8a\xaa\x56\xd3\x91\xd0\xdd\xc6\x01\x03\xd5\xff\x45\x39\x56\x7b\xde\x63\x96\xf2\xad\xf2\xee\x86\x85\x52\x47\xe9\xab\xb5\x3f\x04\x8b\x85\x57\xc8\xff\x8d\x4b\x70\x69\x18\xf1\x48\x37\x7e\x57\xf1\x81\x81\x0b\x04\xdf\xec\xa1\x9e\x1b\xc4\xdc\x64\x6c\x47\x37\x69\x2c\x6a\xa2\x25\x84\x12\xba\x6b\x69\xbd\x9e\x36\xcd\x17\x30\x9b\xe8\xdf\x36\x67\x19\x63\xc0\xd9\x0e\xff\x34\x75\xb0\x93\x05\x57\x56\xcf\x2a\x24\x9f\x1e\x9f\x4c\x30\x63\xf0\x23\x9e\xc4\xc2\xe2\x9e\x81\x3c\xd2\x96\xec\xe6\x1e\x1c\xd9\x3e\xb9\xb0\x23\x92\x12\x1e\xf5\xa1\xf9\x25\xb5\x7e\xd7\xa2\xfa\x40\xba\x93\x2f\x64\x8e\x01\xae\x6f\x2e\x32\x2e\x00\xeb\x1c\x57\x6b\x10\x30\xc9\xa2\x51\x86\x67\xe5\x93\x1b\xc6\x00\xf2\x74\x4c\xec\xf0\x38\xb9\xa3\xd8\xd0\xff\x3f\x4a\x42\xb6\xa6\x67\x32\x75\x61\x72\x7c\xfb\x23\xda\xf4\xa8\xc7\xcd\x5c\xfa\xa6\x5d\xb3\xeb\xee\x03\x90\x2f\x54\x35\xc1\x78\xb5\x19\x65\x38\x04\xe1\x1d\x37\x6b\xac\xe1\xdf\x16\xa7\x64\x6e\xac\x6a\x72\xec\x1e\x22\x30\x05\x33\x63\xe8\x20\x10\x53\x1c\xdf\x3f\x09\xa8\xca\x4e\xee\xb6\x60\xac\x4a\xb6\x69\x9f\xce\xd8\x1f\xb5\xaf\xa9\x03\x14\x05\x7f\xae\x9b\x03\x11\x7d\x81\x2a\x37\x18\xb1\x19\x36\xcc\x66\x96\x3a\x16\xaa\xf1\x2c\x9c\xa5\x95\x54\xca\x16\x90\x5e\x8d\x12\x99\x91\xe8\xd6\xc1\x83\xcc\xb4\xa2\x5f\x7d\x53\x98\xb9\xd9\x73\xba\x1c\x98\x9c\xa4\xa7\x6d\x2b\x99\x27\xa3\x64\x8d\x87\x58\xf6\xc1\x97\x6b\xed\x59\x26\x5f\x42\x65\x0a\x7b\xd5\x66\xbd\xde\x9f\x5d\xed\x58\xab\xea\xe0\xd8\x58\x0a\x24\xa7\x39\xdd\x24\xde\x08\x8d\x3f\x07\xbd\x63\xe0\x1c\x6f\xa0\xa8\xaa\x77\x3e\x2f\x39\x6b\xb8\xd3\x8b\xb7\x22\xa9\xba\xd5\x95\xfb\x35\x2a\xbe\xe1\x36\xf7\x7e\x70\x5b\xcd\x0e\xee\x0d\x5f\x84\x09\xe2\xde\xde\xdc\xa5\x2b\xe3\xde\x72\xbc\xa3\x7c\xc4\xbd\x6c\xf9\x49\x32\x89\x7b\x9e\x78\x7a\xd8\x4f\x5e\x8a\x52\xf5\x1b\x65\xb5\x85\x9f\xba\xef\x4a\x8f\x66\x59\x76\x4c\x93\xbc\x4e\x5a\xd9\xfc\x57\x62\xbf\xfb\x79\x7d\x9f\x38\x37\x38\xbb\x7a\x9d\xc8\xec\x1b\x56\x91\x2f\xbc\xb6\xf9\x50\x79\x82\xe0\xbb\xd3\x5a\xc5\x65\xc1\x1a\xab\x52\xd1\x0f\xfe\x66\xc2\xef\xa1\x75\x7a\x52\xd9\x99\x3e\x75\xf9\xb7\x42\xff\xae\x47\x5a\x5c\x26\xa9\x7d\x8e\xfa\x4d\x22\xb7\x79\x86\x0a\xbf\xbb\xb4\xee\x90\xe2\x75\xd0\x3f\xb3\x9f\x3c\xc3\x77\xa5\x11\x92\xf6\x6f\x3e\xa3\xc5\x89\x5f\x38\x45\xcb\x7f\x8b\xac\xac\x0e\x8b\x36\x0b\xb6\x11\x36\x0e\x26\xd4\x58\x94\x2d\xe9\x3d\x6d\x5e\x52\xa0\xec\xb2\x31\xbd\xcd\xb8\xdc\x16\x6e\x3c\x90\xf0\xbe\x69\x87\x5e\x1a\xf9\xa6\x6e\x66\x79\x44\x50\x4d\x95\x4a\xfd\x7e\xdb\x2d\xc3\x79\x65\xee\xe6\x5e\xcd\x7e\x59\xbd\x13\x42\x9e\x28\x7e\xba\x76\xb1\x50\x2b\x5c\x86\x3f\x3a\x38\xa3\x61\x3d\x72\xa8\x97\x54\x7b\xb5\x60\x7b\xe7\x89\xea\xbc\x0c\x51\xeb\xcb\xca\x67\x09\xdd\x8d\x0f\x2a\xb2\x23\x47\x6a\xdb\xf5\x27\x83\x68\x55\xde\xe5\xf3\xb7\x1d\x31\x10\xd4\x8b\x36\xf7\x68\xb2\xe4\x77\x9d\x00\xd9\x77\x49\xf7\xda\x00\xa1\x9f\x10\x89\x47\x0c\x8c\x36\xeb\x90\x88\xde\xd5\x8d\x53\xf2\x7f\x77\x16\xd6\x25\x66\xc4\xb6\xb2\xab\x2b\x13\x98\x8d\xb8\xca\xb3\x91\xba\x5a\x7f\xe3\x9b\xa0\x82\xca\xf3\xba\x47\xdb\xf6\x1b\x26\x69\xd8\x9b\x0f\xab\x9f\x2b\x9e\x3a\x99\x65\x42\x69\xcc\x5a\xbc\xe0\x9c\xb0\x0a\x0b\x1d\x4c\xc1\xfb\x97\xb8\xed\xcd\x20\x4c\xca\x55\x8d\xc6\x11\x2e\xa7\xde\x1f\x5c\x4a\x7c\x18\x37\xab\xa7\x82\xec\x14\xbe\xb0\xfd\x0a\xa5\x2d\xf0\x64\xd3\x08\x2d\xdb\xeb\x73\x6d\x08\x10\xed\x32\x64\xa2\x82\xe9\xf6\x99\xe5\xce\x70\xce\x9a\x09\x39\x9f\x45\xc7\x12\x0f\x5c\x21\x12\x4a\x36\x8d\x3f\x23\x2d\xca\x55\x8f\x3c\x23\x8d\xa7\x3e\x1c\xe8\x20\xeb\xe3\xe6\xf5\xb8\x53\x5a\xc2\x97\xb5\x13\xa8\x5f\x02\x2f\x36\x65\xd2\x89\x5e\x7f\x6a\xbe\x30\xac\x5d\x0e\x9b\x5c\xc1\xa7\xf6\x0c\xed\x2b\xb8\xde\x62\x85\x3c\x8a\x85\xc7\xe6\x1d\x88\x21\x9f\x29\x59\x37\x8e\xa6\x84\xe5\x4a\x47\x28\x94\x73\xa9\x77\x07\xb6\x51\x09\x71\xb3\xbb\x8f\xd3\x92\xc3\x97\xb5\xcf\xa4\x13\x03\xaf\x36\x4e\x00\xe3\xde\x33\x6a\x0c\xe0\x06\x97\x4b\x15\xb7\xa0\x76\x7b\x9d\xb6\x92\x69\x6f\x11\x20\x9f\xce\xea\xc2\x7a\xef\xdf\x05\x70\x4b\x26\x8d\x95\x00\x03\xb9\xb8\x61\x0a\xf0\x32\xf5\x68\x7f\x24\x23\x39\x76\xa2\xeb\x09\xe3\x7f\xe1\x73\xda\x9c\xc0\x81\xc0\x6b\x8d\x6b\x20\xa3\xf7\xd2\xea\xe3\xb0\xc6\xe5\x7d\xc5\x32\x66\xb9\xfd\x79\xcd\x43\x96\xc2\x42\x27\x4b\x61\xeb\xb0\x93\xf6\x39\x32\x6b\x11\x17\xf6\xc4\x33\x2b\x72\x83\x86\x4a\x99\xca\xd4\xea\xbe\x10\x66\x73\xec\x9d\xce\xff\x98\xcf\xc2\x26\x5a\x5d\x59\xdb\x02\xcf\x36\xd8\xb3\xda\xbd\x2d\xcd\xf7\xd9\x6e\xae\xf3\x8d\x7e\xec\x51\x87\xd9\x9a\x85\x1c\x4f\x8b\x2f\x52\x39\x67\x0c\x73\x69\xef\x6a\xbe\x27\xa2\x62\x34\x8a\x77\x32\x77\xde\x60\x01\x2f\x3b\x15\xdb\x1b\xca\x5b\x19\x3b\xdc\xf1\x8e\xfb\x39\xec\x4e\x8b\x37\xf7\x7a\xe0\xfe\x7a\x37\xee\x19\xef\x75\x55\x5f\xb9\xd7\x5d\x9d\x0c\xb9\xdc\xdb\x0e\x3b\xd4\xfe\xdc\x9b\x96\x29\x92\x31\xee\x45\x8c\xc7\xd8\x47\xf9\x56\xc4\x82\x91\x85\xb2\xb8\x9c\xf2\x81\x15\xd2\xe2\xd4\x49\xdd\xbf\x25\xf2\xd8\xe4\xf6\x56\xf1\xb9\x30\x4d\xd3\x0f\xf1\xec\x40\x75\xed\x6f\x51\x8c\xb7\x4d\xe5\x31\x61\x85\x6b\xba\x7e\xb3\xe0\x92\x83\x51\x65\x29\x98\x69\x79\x4b\xdc\xce\xdf\x8a\x3e\xbe\xa7\x4e\x77\xba\x58\x39\xf4\xa8\x7c\x4b\xce\xfc\xbe\x7f\x1a\x7d\x0a\xaf\xeb\xa5\x7a\x55\xcc\x7f\x6d\x06\x65\x67\x98\x77\xe3\x27\x85\x47\x60\x7c\xed\x64\xd9\xb0\xf7\x3c\xd3\x39\xa9\xb3\x2b\x45\x17\x20\xe6\x39\x5c\x57\x6e\x13\x3e\xb6\x0a\x10\x5d\x17\xb8\xa3\x67\x8c\x1e\x32\xbf\x2e\xfa\x33\xf8\xaf\xf2\x70\xb6\xbe\x6f\x5d\x85\x24\x65\x49\xd7\x2c\x43\x69\x0c\xb3\x75\x48\x17\x11\xfa\xa4\xd1\x46\x6b\x1f\xb8\xb4\x26\x48\xf5\xc6\xeb\xa3\x69\xae\x42\xea\xca\x2d\x67\x48\xff\x39\x4e\x56\x88\xc4\x4c\x2b\x89\xc8\x5d\xf0\x0e\x55\x37\x8a\xab\xab\x2e\xea\x1b\xac\xa9\xf1\xc8\xce\xe9\x1d\xa9\x1a\x4d\x7e\xd4\x69\x32\x45\xc5\x24\xb4\xee\x32\xdc\x0f\x3d\xd4\x30\xaa\x43\x6e\xff\x5d\xfd\x48\x73\xc7\xeb\x75\x45\x9b\x6a\x99\xab\xac\x7c\x99\x7c\x8d\xa3\x85\x62\x83\xc4\xc3\xaa\x4f\x78\x47\xb8\x15\x15\x38\xba\xa6\x71\xb0\x08\x37\xb8\xad\x7e\x55\xb6\x7b\x6f\x70\x0d\x22\x79\x5f\xe7\xba\xaa\x43\x31\x5b\x5b\x4e\x98\x16\x84\x76\x37\x6c\x37\xa4\x6d\x9f\xa8\xc6\x96\xb3\xbd\xbe\x55\xb8\xaa\xf3\x5d\x3b\xb5\x26\xc5\x1c\xc7\x5d\xf2\x61\xc9\x71\xab\xa7\x42\xac\x10\x71\x73\x11\xf1\x29\x2a\xf0\xb4\x82\x54\x8f\x3e\xb3\xf7\x1e\xb9\x0c\x1b\xdd\x6d\x47\xd9\x80\x3b\x55\x5d\x4d\xf9\x46\x48\x56\xa4\x53\xaf\x11\xbf\x83\xd7\x69\x67\xc9\x5d\xc8\x49\xf4\xfb\x54\x61\x52\x2d\x63\x29\xbd\x74\xbb\x17\x48\x65\x64\x3a\xf2\xe1\xc9\x50\xc1\x8d\x10\xc2\x33\xdc\xba\x53\x37\x89\x7b\xf1\x49\x7b\x5d\x48\x46\x82\xbc\x0b\x22\xe3\x89\xe3\xd5\xf3\x28\xbb\x49\xff\xe4\xe7\xa8\x61\x94\x68\x30\x8d\x96\x44\xed\x29\x55\xd3\x01\xba\x5b\x52\x20\x70\x14\x18\x0a\xf8\x04\xfa\x83\x81\x8e\xa5\xd0\x6d\xe8\xc1\x75\x16\xfe\x29\xc9\xf3\xd4\x5c\xc2\x7d\xd2\x9f\x71\x0a\xf1\x04\xf9\x43\xe7\x51\xd2\x18\xe5\xa2\x39\x85\x3c\x48\x3d\x2a\xf7\xa4\xec\xa1\x9d\x60\xdc\xa6\xde\xa0\xdf\x2c\xb5\xa1\xcf\x07\xfe\x26\x3e\x01\x4a\x41\xfb\x80\x61\xc6\x67\x28\xdc\x31\x09\x6a\x80\x81\xab\x68\xdc\x2e\xb0\xf4\x84\x13\x3e\x1a\x6c\xdb\xd3\x42\x40\x82\xb7\x3a\x36\x13\xd1\x90\x6d\xe5\x04\x89\x09\xb1\x65\xd3\xc8\xb5\xd0\x2b\xe0\x31\xe5\x36\x9c\x55\xb2\x8b\xe6\x06\x9f\x4f\xf4\xa6\x37\x33\xbd\x03\xf2\x19\xb1\x4c\x95\x63\x3c\x64\xc1\xfc\xef\xf2\x3e\x4c\x1d\xef\xd5\x31\x13\xf6\x24\x4f\x37\xf2\x1b\xf7\x95\xb7\xa5\xad\x85\xb0\x8a\x7b\xcf\xa4\x26\x86\x71\x8d\x92\xd3\x24\x1e\x37\x8b\x7e\x87\x7c\x8b\x6b\x8b\x08\xa3\xc6\x71\x6e\x27\x18\x69\xf7\x38\xe2\x80\xe5\x40\x1d\x67\x8a\x63\x01\xc8\x67\xe3\x2e\xf6\xa3\xe7\x2b\x9c\x8e\xa8\x30\x49\xf2\x95\xc3\x51\xd8\x06\xd9\xdc\xd6\x95\xb8\x87\xd2\x05\x15\x9b\x08\x76\x12\x6b\xb1\x94\x08\x8b\x5d\x68\x97\x48\xaf\x44\x3e\xc5\x3e\x14\x9e\xd0\x26\xfe\x07\xcd\x4a\x30\xd3\xff\x22\xfd\x3b\x4f\xe9\x08\x33\x3e\x72\xfe\x9c\x7b\x5b\x76\xa8\x0a\x79\x68\x2d\xea\x87\x89\x3f\x70\x02\xe3\x69\x34\x34\x1d\xc0\xb2\xf4\x1a\xc3\x54\xdc\x9d\x72\x91\xb0\x99\x10\xa2\x21\x53\x3d\x88\xe7\x55\xc1\x45\x5b\xc8\x14\xf9\xf3\xf8\x45\x54\x0f\x69\xb2\x3f\x82\xbe\x41\x54\xea\xd8\xc0\xf0\xe5\x47\x9d\x09\x45\x42\x9d\x4e\xfb\x4b\xcb\x6e\xb5\x7e\xeb\x2b\x44\xbb\x35\x4f\x6d\x60\x63\x78\xf5\x2f\xcb\xbf\x62\x5f\xd4\xec\xe1\x9f\xc7\x17\x55\x21\xc8\x66\xe2\x24\xe3\x83\xc2\x19\xa4\x11\xdd\x82\xb8\x75\x14\x95\xea\xb5\xdf\xff\x68\x66\x59\xae\xe3\x10\x70\x58\x28\x39\xe5\x5e\x7a\x60\xdc\x6d\xaf\xac\x6c\xc9\x48\x7c\x4f\x3e\xaa\x70\x20\xb5\x4e\x87\xde\xd7\xe3\xae\x75\xc4\xae\x6f\x7f\xc4\xb3\xc7\xf5\x37\xa7\x92\xec\x09\x59\x75\x40\xfe\x73\xd2\xda\x2a\x97\x58\x04\x65\xba\x1e\xe3\xa7\xa5\x6d\x54\x6d\x70\x3c\x0c\x20\xc4\xf0\xc9\x92\x52\xd4\xe1\xe4\xf1\x53\xc8\x43\xfb\xe7\x76\x1b\x50\x8b\xf6\xe8\x6b\x2f\xa2\x4b\x06\xbf\x6b\x30\x98\xcb\xbd\xd6\x5c\x00\x97\xd9\x31\x85\xa8\x24\xcc\x6a\x62\xe5\x53\x89\xe7\x6a\x68\xb1\xf6\xe4\x61\xe3\x2b\x3f\x90\xfa\x44\x7d\xca\xf1\x36\xe0\x24\xd9\x74\xe2\x76\xa9\xed\x49\xee\xb8\x37\x92\x78\xe4\x61\xf7\xb4\xb2\xfd\x07\xa6\xd5\x06\xa1\xe7\x8d\x4d\x52\xbf\xc4\x10\x06\xfb\xb9\x93\xb0\xdf\x7a\x16\x10\x1d\xf1\x0d\xad\x5f\xf2\xdd\x89\x85\xf5\xfe\xb1\xb3\xc9\xbb\x4d\x6f\xfc\x78\x54\x58\x33\xe1\x34\x9f\x7e\x5c\x42\xbe\xe2\x49\x41\x97\xdd\x3d\xee\x46\x79\x83\xa6\x8e\xde\xa1\x52\x31\xff\xda\x01\xda\x7c\x1c\xaf\x72\x37\xad\x8b\xb0\x4a\xca\xa0\x27\x10\x4f\x03\x78\x60\x2e\x59\x55\x32\x1f\xb8\x43\x25\x27\x6e\x60\x9c\xa1\x23\x02\x12\xc1\x77\x0c\xaa\x63\x0c\xec\x0a\x55\x5e\x46\x90\x25\xd8\x9e\x63\xa5\x94\x15\xb8\x17\xa3\x1b\x28\xc3\x04\xe7\xb6\x6b\xd4\x7c\x62\x89\xa9\x8f\xb6\x86\xd4\x21\xf9\x1f\xed\x1c\x65\x29\xfd\x13\x5d\x47\x65\x22\x74\x00\x4c\x5f\x92\x70\x94\xc1\x05\xda\x02\x66\x81\xe3\x60\x8c\xa3\x17\x3c\x07\x5e\x78\xa9\x92\xa4\x23\xb6\x1d\xad\x25\x87\x90\x98\x23\x38\xf2\x04\x19\x6e\xb3\xa1\xf4\x53\x30\xa6\x79\x54\x2a\xb5\x48\x92\x45\xf3\xa7\x81\x74\x3a\x7d\x0d\xbd\x06\x61\x03\x2c\x03\xae\x27\xa4\x33\x5c\xc1\x85\xfe\x17\x40\x0a\x14\xed\x68\x09\xdd\x84\xeb\x2e\x0c\x12\x5e\x30\xf6\x1f\xbe\x4b\xec\x03\x67\x0d\x1d\x21\x29\xc0\xd8\x96\x46\x72\x36\x58\x6f\x3c\x4c\xf1\x81\x66\x8a\xbd\xa9\x36\x10\x8f\xc6\xa5\xd9\xc0\xb3\x8a\xa3\xe8\xfe\xb0\x36\x7e\x08\xa0\x30\x57\xfa\x53\x19\xb7\x99\x72\xc7\x85\x50\x26\x6b\xda\xb9\x07\x78\x14\x6f\xf1\x21\x3f\x42\x08\xf7\xf2\xe0\x02\xa2\x2b\x97\xd5\xbc\x8c\x64\xc1\xf5\x33\x64\x91\x97\x73\x67\x88\xa6\x50\x96\x72\x9e\x51\xf9\xd4\x8d\x9c\xc3\x45\x64\x5a\x2e\x47\x1f\xef\x43\x6f\xe7\xe4\xfb\x47\x30\x36\xb0\x7f\x3b\x06\x80\x47\xd8\x9a\x33\x77\xb0\x8f\xe5\xf3\x0f\xf8\xe3\x1e\xc9\x1c\xfb\x93\xf0\x1f\xa4\xce\x8d\x2c\xc2\x57\x49\xb8\xee\x03\x69\x96\x18\x25\x38\x45\x5e\x2d\xaa\xa5\x70\x29\xbb\x84\xa7\x0a\xb9\x54\x9d\xe0\x52\x5c\x1b\xed\x35\xff\xb2\xff\x02\x80\xcd\x63\x3a\x16\x82\xce\x5c\xcb\x53\xeb\x31\xd2\x4a\xc7\xbd\xa7\xb0\xbc\x8a\xa4\x9e\xdb\x38\x96\x81\x5e\xef\x87\xd7\xea\x0c\xda\x97\x84\x21\x6d\x0f\x6f\x82\xf8\x50\xbd\x8f\xf4\x99\xec\xa8\xec\x2e\xa0\x52\xc4\x72\x52\xec\x05\xda\x24\xe9\x4c\xbf\x3d\xf4\x6e\x51\xb8\x63\x15\x03\xc5\xcf\x3d\x2e\x44\x87\xb5\x53\xc7\xec\x30\xf9\x2d\xa4\x2e\x16\x96\xda\x58\x5f\x3b\x1f\xa7\xac\xeb\x53\x7f\xc6\x8f\x54\xb7\x73\x5d\x09\xdf\x2b\x41\x62\x29\x29\xc5\xb8\x3a\x3f\x8a\x7c\xaa\x9c\x1c\xf3\x8e\x9a\xa1\x62\xfa\x25\xd2\x57\xc9\xec\x1d\x47\x80\x37\x42\xf1\x51\x08\xa5\xd9\x13\x39\xba\x03\x5d\x3d\xa4\xef\x60\x62\x3a\xfa\x0e\x57\xdb\x63\x4f\x77\x9d\x54\xad\xc7\x7d\x6f\xab\x63\xcb\x08\x21\x4d\xdb\xf1\xdf\x88\x7d\xb5\xd2\xbc\x2d\xe4\xcd\x95\xe8\x18\x0f\xca\x65\xdd\x7d\xdf\x9f\xb4\x26\xe5\x55\xc7\x53\x80\x4a\x5c\x72\xa4\x15\xe5\x73\x30\x6e\x84\x86\x8e\xd8\xeb\xd9\xde\x8f\x49\x1d\x79\x65\xce\xc5\x92\x06\x68\x4a\x3c\xae\xa1\xfb\x04\xeb\x09\xfe\x43\xdb\x35\x7c\x21\x31\xbb\x11\xca\x3d\x42\x7a\x50\xdd\x1c\xfd\x95\xc2\x36\x46\xfa\x3e\xa1\x65\xab\x4b\x1c\x1f\x03\x31\x92\xc5\x47\xe6\x95\xbd\x3e\x5e\x3c\xfc\x00\xf5\xfd\xd0\xe7\xf6\x35\x98\x69\xfb\xc2\xaa\x2e\x60\x57\x8d\x62\x14\xaf\x70\x3b\x07\x22\x58\x48\xbc\xb4\xeb\x32\xee\x0f\xe1\x6b\xcb\xf3\x5c\x98\x44\xad\xcb\x8e\xbe\x46\x59\x6d\xda\xe9\xfb\x86\x3a\xa1\xd1\x3a\xad\xa4\xbf\x90\x64\x9c\x77\xa1\x2f\x2a\x93\x1c\x12\xd1\x33\xd1\x36\x83\x35\xf4\x6e\x4c\x6f\x73\x23\xb0\x1a\x17\x62\xb8\x0b\xa8\xf0\x2f\x44\x65\x8c\xc9\xc4\x0a\xea\x79\x86\x80\x5c\x5c\x74\x1b\x5c\x4e\x4d\x8c\xa7\x80\x47\xe8\xb1\xfe\x9e\x50\x03\x83\xe0\x70\x0f\xae\x87\x06\xcf\x65\xd3\x7c\xb0\xc1\x07\x4f\xd1\xf4\x38\x78\xe0\x1d\xed\x2f\xfe\x74\xd3\x5f\x3a\x99\xb8\xdc\xe0\x4f\xff\x45\x2a\x12\x3e\x04\x20\xf2\x45\x6a\x12\x63\x09\x35\xb2\x28\x8b\xb1\x97\xf6\x34\x7e\x12\xc8\x01\xc4\x7e\xaf\x21\x32\xb8\xcb\xe1\x10\xcc\x81\xad\xcf\x72\xa9\x25\x44\x9b\x03\x7f\xa9\xd7\x88\xff\x06\xb6\xd0\x12\xc8\xb3\x9b\xa2\x69\x67\x28\x33\xf5\x26\x7a\x16\x75\xb6\x30\x86\xfe\x3f\xda\x7a\xca\x2d\xa0\x82\x9e\x5a\x38\xc1\x48\x01\xea\xe2\x7a\x40\x37\xc6\x7b\xbf\x03\x90\x07\x14\xe6\x30\x04\xc7\xc3\x23\xa7\x4f\x91\xbb\x19\xcb\xf6\xa7\x51\x7c\x19\x88\xbe\x16\xca\x7d\xc6\x91\x86\xdb\x54\x00\x5c\xa1\x8b\xa5\x39\x82\x42\x81\x33\xed\x36\xb4\x88\xfc\x9c\x5e\x0f\xb5\x16\x3a\x03\x2c\x38\x22\x6e\x2e\x83\x0d\xbf\xf4\x2b\x06\x1b\x98\x34\x87\x5a\xe8\x11\x6b\xc1\xc9\xf3\xa4\x74\xae\xcf\xde\x56\xd2\x5b\xee\xdc\x9e\x97\x64\x1d\xe7\x64\x7d\x1c\x25\x82\x63\xd4\x7e\xa7\x2e\xe4\x90\xf9\x93\xa9\xb7\x38\x85\xa4\xf7\xb4\x51\x4e\x62\x41\x1e\xbd\x8b\x13\x14\x5b\x09\x8c\x70\x9c\xfc\x76\x31\x3e\xb2\x9f\x38\xdc\x81\x82\xd9\xa6\xe3\x37\x09\x0f\xa4\x13\x63\x83\x44\x83\xd4\xbd\xdb\x8e\x84\x94\x84\xd4\x1e\x20\x7b\x8a\x85\x9a\x4a\xca\x02\xd1\x49\xee\x65\xca\x2b\xd1\x7c\xe2\x67\xea\x5d\x61\x64\xbe\x98\xf6\x4c\x80\x8f\x5d\x4e\xff\xc1\x17\xfb\x2d\x62\x84\xf3\x32\x1d\x67\x80\x9d\x5c\xdb\xa3\x1e\x78\xa8\xe2\xd1\xe8\x76\x82\x8f\x71\x6d\xc7\x30\xe1\x87\x3e\xa9\x5a\x4c\xbc\x54\x5e\xa5\xaa\x25\x8d\x6b\xae\x72\xe6\x91\x7b\x55\xbf\x08\x04\xca\x3e\xe5\xec\x3c\x22\xf5\xae\xec\x63\x4c\x24\x7d\x81\xa4\xdd\xf7\x04\x40\x12\x2d\x77\x8c\x60\xfc\xc7\xcf\x3a\xa4\xc7\xf9\xb6\x1e\x1c\x6a\xc3\xaf\x68\x7a\xd9\x56\x88\x7f\xdf\xe0\x55\x55\x4c\x38\x5b\x4b\x54\x0c\x12\xf7\x9b\xd5\xac\x38\xd2\x09\x13\x1f\xf7\x91\xfc\xd2\x10\x96\x1b\x4b\x5d\xa3\x3d\x1b\x4d\xa1\x21\x54\xd3\x7c\xf1\xf4\x3b\xd2\xbb\x8e\x64\x46\x8e\x90\x72\x40\x8f\x55\x8c\x64\x0d\x1c\xc6\xa5\x0c\x5c\x6a\x29\xc0\xdb\xf5\xae\x33\xb1\x09\xd3\x3b\x93\x64\x6f\x89\x93\x5a\x93\xe0\x7e\xd2\xb2\xc6\xd5\x58\x11\x39\xb8\x46\x95\xe3\x45\xe1\x9b\xaa\xa3\xc6\xa9\x8f\x74\x3b\x7c\x97\xd3\x11\x4a\xbc\xa3\x08\xf8\x2d\x0e\xd9\x3f\x82\x75\xdb\x1f\xd4\xff\x11\x37\x69\x2c\xa1\x59\x8b\xbb\x34\xec\x5e\x31\x8a\xef\xed\x7b\x2b\xf3\x20\x74\x74\x95\xc0\xb3\x89\x07\x5a\xab\x30\x5f\x49\xef\x1b\x08\xd9\xa7\x28\xee\xe6\x13\x51\x0c\xaa\xc6\x50\xb3\xed\x37\x7d\xad\xea\x97\x63\x1d\x30\x2e\x7e\xbd\x7f\x3e\xe6\xde\x51\xff\xfe\x18\x6c\xf7\x81\x5f\x4d\xdf\x70\xf0\x38\xb3\xc2\x16\x9f\x32\x7c\x51\xda\x49\x88\xe8\xbb\x01\xa9\x88\xe9\x9d\x12\x8c\x8a\x24\x6a\x3e\x93\xcd\x23\x9f\xa9\x25\x46\xa5\x52\x37\x56\xc8\x7c\xa7\xd0\x46\x35\x6b\x1d\x6f\x00\xf1\x12\xcf\x23\x17\xe1\x87\x65\x6b\x47\x5e\xc0\xe3\xa8\xae\x8e\x77\xb0\x1e\x13\x5f\x5d\x03\x9b\xb1\x37\x55\x1a\xb8\x0f\xcf\x64\xbf\x81\x0f\x13\x37\x11\xd6\xc1\xff\x91\xa7\xe4\x2d\x86\x7f\x52\x7e\x46\xd7\x33\x37\xd0\xa7\x6e\x33\x31\xe5\x8c\x70\x7b\x01\x6b\x06\x34\x70\x64\x29\xf4\x05\x53\x37\x12\x00\xbd\xc6\x3e\xe8\x88\x80\xae\xe0\x03\xcd\xff\xa0\x4f\x04\x48\xf9\x0d\xb6\x22\x5e\x65\xe7\xc2\x41\xe4\x9d\xf8\x2e\x98\x4e\x39\x9d\x6b\x86\xdb\x69\xb4\x68\x37\xf8\x33\xe0\xba\x2d\x8a\x59\x0a\x2e\xb6\x47\x30\x3f\xc1\x4b\x0f\x47\x41\xf3\x09\xa1\xc3\x22\x68\x2d\xd1\xab\xbd\x0a\x5a\x4c\x4a\x32\xc7\x42\x11\xe4\x1d\xca\x14\x48\x44\x89\x63\x5d\x82\xf6\x51\x01\xbc\x07\x3c\x99\x36\x9e\xeb\x0f\x87\x02\x96\x51\x0f\xe1\x4e\x06\x7f\xdb\x5a\xa6\x3b\x34\xcd\x3e\x99\x79\x1e\xae\x39\x98\xc4\xd0\xd0\xc9\x83\x7b\x18\x43\xf4\x7f\xad\xb7\x19\x17\x81\x92\xca\x8b\xe0\x52\xe0\xa5\x62\x3e\x58\xc8\x60\x32\xfb\xc0\x01\xd0\x06\x17\x04\x2d\x06\x2f\xe7\xb0\x20\x3a\xd4\x18\x15\x07\xcf\x80\x51\x3e\x17\xe1\x76\xa6\xa3\x7d\x34\xb3\x80\xf9\x7e\xff\x49\x60\x39\x1b\x1a\x88\x05\xb2\xd9\x40\x4b\x32\xd0\xcc\x2e\x34\xe1\x80\xbf\xec\x38\xd9\x75\x46\x21\x3b\x1a\xae\x61\x9c\x64\xa7\x60\x33\x41\x7f\x36\x22\xfb\x12\xd8\xc5\xe6\xee\x7e\x04\x45\xb2\x55\x3e\x43\xd0\x5f\x36\xcb\x5e\x02\x9f\x61\x93\xf6\xbe\xa5\xcf\x91\x38\xf7\xa1\xe8\xbb\xc5\x50\xd3\x19\xba\x49\x74\xa9\x62\x26\x30\x45\x64\x23\xd5\x03\x74\x21\x00\xf1\x81\xf7\x82\xfb\x18\x1c\x83\x2c\xd8\x9e\xbd\x9a\xf1\x9e\xaf\xdd\x4d\x03\x15\xbc\x2b\x3e\x15\x50\x12\xf7\xad\xfd\x29\x78\x23\xe7\xf7\x58\x2c\xb5\xd8\xe0\xd2\xe3\x41\x3d\xa1\x3b\xdf\xc0\xa3\x39\x95\xa7\xe9\xdf\xd1\xea\x35\x7b\xc4\xfd\x74\x27\xf5\x0a\xc6\x4d\xfa\x90\x12\x87\x9e\x0e\x24\xc8\xfb\xb3\x96\x01\xff\x49\x9f\x44\xde\x67\x98\xc4\x77\x7c\x78\x20\x4a\xa8\x74\x08\x87\x42\xf9\x0e\x23\xbf\x29\x29\x4d\x35\x9d\x03\x94\xa1\x86\x85\x75\xc9\xd4\xe5\xb5\x2d\xe5\xcf\xa9\xa6\xea\x59\xc2\x5b\xb4\x8d\x95\x29\x80\x1b\xed\x94\x51\x5e\x56\x45\x07\x74\xfa\x8c\xe7\x80\xab\xa6\x34\x72\x3e\xf0\x45\xf1\xcd\xc7\x89\x71\x53\xea\xec\x80\x04\x0f\x0b\xd7\x0f\x9d\x23\x4b\x06\xd4\xed\xb7\xc8\x6f\x7a\x73\x6a\xd2\x28\xb1\x5d\xd3\xb4\x53\x28\x77\xda\x88\x82\xd5\x54\x62\xd3\x30\xad\x8a\xb6\xba\xee\x38\x32\x80\x76\xcd\x2c\x4f\x7f\x4c\xaf\x30\x7e\x8d\x88\x05\x48\xda\x4f\xde\x67\x18\x05\x0a\xad\x03\x0c\x26\x8b\x9e\x0d\x4e\x90\xb7\x8d\xb9\xb7\xcf\x23\x57\x0e\x57\x57\xf3\xc9\xbf\xfb\xaf\x6b\x7c\x29\xc2\xee\x6b\xfc\x5c\xaa\x55\x7b\x15\xf5\x0b\xf5\x68\xb3\x75\x69\x0f\x8d\x55\x17\x99\x8e\xa5\x47\x54\xfe\x8b\x98\x05\xac\xd7\x6f\xf5\xee\x63\xac\x51\xcd\x77\xd0\x81\x0b\xc4\x82\xc1\x04\xd2\xa7\x03\x5f\xda\x4a\xc8\xd1\x7b\x17\x9a\x9f\x90\xdb\x47\xde\xaa\xeb\x29\x9b\x06\xe4\xbc\xab\x94\xfd\xdd\x2f\xa8\x74\x6a\x6e\xdb\xbb\xd2\x30\xda\xaa\x46\x69\xfa\x1a\xda\xd3\x6a\x55\xf8\x63\xfa\x11\xe3\x62\xef\x01\x60\x50\xbd\xde\xe1\x18\xa3\x59\x7c\x79\x74\x1f\xef\x0b\x12\xe8\xba\xc3\x23\xa1\xd6\xd4\xa3\xb9\xdf\xd1\x03\xba\x57\xdc\x4a\x6c\xa8\xa8\x9f\x1b\x82\x9b\x00\x9e\x73\xde\x12\x86\x50\x8b\x38\x66\x52\x79\xc6\x00\x27\x82\x62\x88\xc8\x60\xff\xa3\x75\x79\x29\xd8\x77\x19\x73\x6c\xaf\xb3\x4f\x42\x9a\xd1\x25\x3c\x37\xf4\x89\x2e\x5f\xee\x18\xd6\xad\xee\x1a\x37\x12\xa7\xd4\xa5\x73\x27\xe1\x6f\x8b\x9c\x39\x07\x88\xc1\x00\x96\x43\x25\xed\x29\x6b\xe7\x78\x51\xa2\x32\x0a\xd9\x3f\x68\x53\x22\x96\xb0\x4f\xd2\xcf\x78\x15\xb0\x47\x18\x67\x6c\xcf\xb0\xfb\xa1\x77\x23\x59\x5c\x3c\xde\xab\x53\xc9\x9d\x42\x40\xd6\xb9\x73\xcc\x44\x4d\xf9\x5e\x4e\x09\x49\x2a\xac\xe2\x6c\x25\xb7\xd1\x3f\xb0\x7f\x51\x1e\x94\x05\xb0\x4f\xd3\x36\x67\x2c\x63\xd7\xd1\xab\xc2\x2f\xb0\x79\x8c\xa5\x5e\x3b\xd8\x6c\x70\xc8\xf6\x0c\x5b\x02\x93\x87\x8e\x71\x16\xd0\xe2\xdb\x7f\xb1\xc7\x68\x4f\x6b\x3a\xd9\x44\x3a\x5a\x5b\xca\x8e\x00\x26\x09\x28\xec\x8d\x40\x3b\xed\x2d\x7b\x1a\xa3\x08\x59\xc4\x7a\x05\x6e\x49\x47\xb1\xee\x43\x53\xc3\xfd\x59\x6f\xa1\x47\x5b\x7f\xb2\xfe\xc2\x27\x6c\x2f\xb0\xed\x98\x07\x06\x2d\x58\x2a\xe6\xdb\xb6\x74\x56\x26\xf3\x5f\x75\x20\xcb\x85\x35\x4f\x63\xcd\x72\x60\xad\xe1\x27\xb1\xe6\xb3\x5c\xa8\xef\x59\xb3\x59\xd9\xa5\x4a\xe6\x37\x96\x2c\xed\x0a\x6b\x39\xeb\x78\xd8\x6d\x96\x1f\xeb\xdd\xd6\x17\xac\x2c\xf6\x42\xbb\x59\x2c\x35\xdb\xa3\xbf\x92\x19\x2b\x5a\xd6\xf2\x92\x19\x2b\xec\xa9\x1a\x61\x86\x08\xdd\x55\xa3\xcc\x40\x41\x33\x6f\x19\x73\xa7\xc0\x96\x72\x8d\xb9\x93\xdf\x57\xd2\xc0\xdc\xcd\xf7\x4f\xb3\x67\xe6\xf3\x06\xc2\x24\x4c\x88\x67\xb1\xf5\x3e\xb3\x97\x8b\xb0\xcb\x66\x3e\xe7\xf4\xf7\xfa\x42\x2f\xca\xaf\x34\x99\xa1\x0f\x5a\x85\x49\x0c\xbd\xd5\xec\x54\xec\x81\xbe\xa8\xae\x70\x76\xc3\xd3\x95\x79\xe4\x1d\xf0\x6a\xf9\x7b\x44\x2c\xec\x23\x2b\x4d\x75\x82\x0b\x24\xe3\xa1\xaf\x60\xad\xe8\xc5\xd6\x7e\xf8\x9a\xe0\xa9\xdd\x38\x73\x09\xef\x54\x57\x03\xf8\xaa\x9e\xdb\xb0\x1b\x7c\x5d\x1b\x6e\xc4\x82\x1f\xaa\x67\xca\x4e\x80\xff\x2a\x5b\x58\x52\x68\x55\xc5\x16\x62\x0f\xe4\xaf\x6f\x2d\xfa\x0e\xa1\xb4\x5f\x52\x2c\xa1\x66\xf5\x94\x50\x4f\xe8\xa5\xfc\xca\x56\x02\xbc\x59\x92\x63\xf7\x13\x26\x0b\xf6\x76\xf4\x83\x71\x3d\x87\xeb\x0a\xc0\x9d\x9d\x37\xf5\x12\x30\xac\xed\x84\xe4\x2f\x98\xdd\xcc\x84\x5f\x80\x50\xc3\x7c\x82\x37\xd8\x5c\x53\x5a\x38\x02\xde\xad\x64\x27\xaf\x84\xac\x0d\xee\x21\x64\x08\xa5\x91\x6d\x5d\x09\xed\x95\x57\xda\x2f\x82\x27\x8b\x10\xed\xc7\xc1\x79\x43\x7f\x6b\xe5\xe0\x94\xfe\x83\xba\x7d\xe0\xd4\x9e\x68\x49\x20\xb8\xb2\xc3\x0c\xfb\x80\x1e\x2d\x23\xf8\x4a\x30\xb3\x41\x56\xb8\x05\x54\xd7\x2c\x48\xea\x02\xaf\x9b\x56\x84\x38\x42\xf6\xe5\x03\x9e\x3f\x20\xa2\x72\x9a\xbd\x03\x34\x22\x9e\xde\x3e\x83\x71\x71\xbc\xb8\xe6\x21\xe3\xc8\xc8\x2b\x9d\x25\xe3\xc0\xa0\x83\xb8\x83\x71\xa6\xd7\x02\x1a\x64\x3c\xee\xb8\x88\x77\x04\xa7\xb4\x38\x17\x5c\x01\x3d\xea\x1d\x93\x0a\x40\x72\x95\x62\xd7\x6f\xf0\x90\x1e\xf2\xfc\x0e\xcd\x51\xad\xb2\x8f\x81\xa2\xc5\x49\x5d\x56\xd2\xcb\xa5\x8f\xea\x8f\x49\x9e\x97\xc9\x8c\x91\xe2\x8f\x68\x1f\x99\x51\xec\x88\xb9\xce\xda\x29\xca\xc6\x89\x89\x25\x42\x11\x21\xb5\xa8\x5c\x30\x40\x0a\x4a\xfa\xcd\x7f\x4c\x49\xdc\x75\x86\xbf\x94\x86\xf2\x88\xe6\xa5\x00\xf7\xd6\xcd\xe0\xd6\x40\x40\x27\x4d\xba\x02\xed\x51\xbf\x55\x12\x80\x91\x1a\x8e\x88\x53\xb0\x7f\x65\xd6\x22\x23\x3e\x85\x79\x5d\x78\x8f\x70\x99\x38\x45\xb8\x8a\xb4\xbb\xc8\x4f\x90\x4c\x7e\x9d\x74\x86\x6f\xa4\xf6\xec\x32\xf0\xee\xd3\x01\x0f\x6f\xde\x16\x86\x66\xdd\x22\x2e\x1f\xba\xd0\xf1\x48\x92\x8d\x6b\xa8\x33\x8b\x8d\xf8\x3e\x83\x9b\x68\x2f\xe1\x9d\xd4\x20\x9a\x4f\xfc\xc4\xcc\x10\xe6\x91\x2d\x09\x7a\x41\x2b\x25\xa7\xf0\x01\xff\x03\xf5\x40\x92\x9e\x1f\x4c\xf7\xdc\x55\xc0\x33\x03\x83\x1e\xb6\xdc\xdf\x20\x71\xdd\x3a\x6e\x06\x1c\xdf\x4e\x10\xaf\xa0\xfa\xd4\xee\x10\x65\x53\x1f\xe9\x5e\x09\x5b\x69\x52\x09\x49\x38\x93\xee\x0a\x67\x0a\x50\xf4\x57\xf8\x21\xfe\x11\x60\x6f\xa1\x2d\xdf\x82\xd1\x98\xb4\x9c\xa7\x06\xe1\xe0\x9f\xbc\xd9\x10\xca\x63\x26\x17\x80\xe9\xeb\xe2\x38\xaf\x98\xe6\xd6\x8f\xc2\xeb\x30\x50\x33\x49\xb8\x11\x1e\x2f\x17\x08\xc4\xf0\x33\xb1\x3b\xff\x3b\x73\x3a\xb4\x83\x8f\x61\xfa\xe0\xf6\xf2\x6e\x31\xb9\x05\xf1\xbc\x10\xe6\xcd\x44\x29\xf7\x3c\xcb\x3a\xb8\x8f\x9b\xc0\x2a\xf2\x98\xcd\xb9\xc8\xea\x5e\xd7\xc2\x09\x67\x4f\x6b\x49\x16\x74\x0b\x12\xcc\x31\x82\x35\xfc\xdf\xda\x55\x7c\x0e\xbf\x56\xf8\x1f\xef\x2f\xdf\x13\xb4\xe0\xb1\x79\xd7\xb1\x63\xdc\xdf\x3c\x59\x3e\x9d\x0b\xf0\x82\x12\xbe\x73\x67\x73\x9f\x06\x63\x38\x15\x5c\xaa\xc7\x12\xce\x6a\xce\xff\x6c\xa7\xb1\xcb\x39\xa8\xc6\x3d\xfc\x3c\xcd\xf4\xca\x2d\xbc\x33\x6a\x47\xf5\x02\x5e\xa0\xca\x59\x30\x87\x7b\x4a\xf1\x06\xa0\x72\x93\xe5\x1d\x98\x50\xce\x53\x19\x26\x2f\x88\x43\x94\xae\x4d\x98\xc3\x59\x2a\x6e\x08\xba\xc2\x1e\x14\x4d\x77\x7f\xca\x0e\x12\x04\xdb\xee\x66\x9d\xe4\x11\xeb\x1f\xf1\x76\xd5\xe4\x55\xcc\xe6\x9e\x30\x6f\x57\x2e\xe6\x26\x56\xe6\xf0\xbc\x38\x4f\x2b\xb6\xd1\xae\x72\x68\x86\xa9\xa8\x4b\x9c\xc5\xe5\x63\xb9\xd3\xd8\x3d\x9a\xa8\xf8\x85\xec\x6c\xa5\x3e\xc8\x81\x3d\x47\xd6\xea\x6e\x66\x35\x8b\x25\xb6\x24\x96\xbb\x20\xb4\xf6\x2a\x97\xd9\x31\x62\x48\xe5\x3a\xb4\x6d\x90\xef\xe6\x9c\x6c\x26\x70\x34\x9c\xcc\x06\x12\x35\x85\xfd\xa9\x36\xae\x0c\x62\xab\xaa\x7e\x64\x3f\x63\x6f\xae\x28\x8e\xb3\x60\x3d\xd6\x95\xec\x2c\x65\xa9\xd5\xab\xdd\x83\x59\x2e\x32\x83\xad\x84\x39\x26\xbc\x55\x3b\x8b\x9b\xd6\xb7\x4f\x6f\xe4\x7c\xee\x3e\x2f\x93\x72\xd4\x1d\xad\xec\x87\x9c\x75\xad\xe1\x94\x11\xf6\x48\xe3\x28\xf2\x3d\x3b\xae\xf6\x51\x36\x9a\xf5\xa1\x6a\x7f\xec\x08\xab\xda\x68\xbd\xd3\x82\x15\xa9\xb5\x75\xb7\x65\x3e\x93\xbf\xb3\x35\x33\xd1\x22\x62\x0d\x82\xeb\x33\xfc\x43\xf7\x9d\x73\x72\x60\x8f\xf4\x7f\x9c\xd4\x5e\x1f\x76\x22\xfb\x51\xa7\x90\xe2\xc7\xc6\xb6\x1a\x91\x7c\xf6\xe4\xc6\xa8\xec\x95\xac\xca\x9a\xf6\x58\x02\x2b\xc8\x44\xdd\xf1\x9a\xf9\xaa\xfc\xba\xbb\x15\x13\x56\xfc\xb4\x3d\x0a\xff\x13\x9d\x36\x75\x19\x7c\x4a\xef\xa8\xf7\xeb\xd4\x65\x38\x91\x87\x76\x02\xf5\x1d\x3a\xa9\xc1\x62\xd4\x84\x8b\xaa\x07\xb8\xdd\x88\x62\xa5\x37\xc1\x26\xc3\x49\xce\x23\x59\x45\x91\xa4\x07\x29\xbe\x01\xef\xc4\x6f\x69\x04\xd7\x4e\xd1\x42\xe0\xef\xda\x8b\x02\x07\x68\xd4\xb4\x46\xaf\x44\x1d\x56\xef\x2c\xff\x88\xb1\x13\x9e\xd6\xe6\x61\xe9\x10\x52\xfd\x02\x77\x85\x40\x57\x95\x12\x12\x10\xab\x14\x17\x88\xcf\xd3\x9f\xcb\x1d\xc9\x75\x51\xe1\x52\x02\x95\x12\x70\x41\x3c\x4c\xcf\x71\x6d\x17\x3e\x67\x18\xd6\x3e\x13\x4c\x87\xbe\x55\xc0\xba\x17\xd8\xf3\xaa\xbd\xe5\x09\xb8\xbf\xc2\x24\xcd\x19\x82\x2d\xf8\x4b\x5d\x48\xdc\x46\x58\xa5\xfc\x40\xa2\x17\x1f\x55\xe4\x90\xaf\xa5\xd7\xc8\x0e\x51\x13\xa3\x56\x49\xad\x69\x0f\x02\xfa\xc4\x04\x00\x72\x6d\x11\x76\x81\x79\x6b\xff\xf2\x6f\xc2\x48\x23\xa2\xbc\x9a\xfc\x51\xd9\xae\xdd\x4c\xd9\x23\xd8\xad\x3e\x47\x45\x83\x8b\x54\x25\x34\x27\xfc\x6e\xc5\x1f\xda\x9f\xe2\x45\x72\x90\xfe\x3e\x7d\x8e\xf4\x0d\xf0\x63\xf7\xb8\x24\x9f\xf1\x25\x80\x23\x3a\x0b\x4d\x73\x1d\x12\x2e\x86\x77\x58\x27\xf2\x43\x99\x3a\xc3\x42\xad\x19\x4c\x55\xe0\x35\x76\xe0\x0d\xbe\xb5\x6a\x2f\xb4\x99\x31\x55\x59\x04\x01\xb8\x5c\xc5\x4c\xe8\x46\xd1\x4e\x59\x39\x1c\x95\x96\x23\x5d\x0a\x5f\xd9\x1d\x22\x6e\x60\xee\x0e\xd8\x29\xb2\x61\x1e\x77\x1d\x13\x90\x58\x49\xd6\x8d\xbc\x7e\xd6\x7b\xdd\x23\x0d\x9a\xab\x95\x6f\x51\x2f\xe5\x02\xdc\x57\xca\x83\xdc\x08\xfa\x6b\x05\x81\xbb\x02\x8b\x94\xaf\xe5\x7c\x2c\x44\x4a\x47\x39\x4f\x52\x3b\x24\xc1\x9c\x5b\x91\x17\x44\x0f\x39\x07\x02\xe6\x0b\xcb\x38\x55\xae\x27\xf8\x47\x38\x78\xeb\x1f\xbc\xa9\x9c\x48\xed\x23\xb5\xbf\x22\x5f\x9a\xaf\xbc\x2f\x3f\xc2\xf1\x55\xc8\x65\x3f\x69\x85\xf2\x70\xd9\x0c\xcc\x22\xe9\x1f\xe9\xd2\x02\x3f\x49\x93\xc4\x3e\x65\x40\xbc\x43\xbc\x31\x72\x85\xf0\x95\x68\x8e\x7f\xbd\x80\x25\xb8\xe8\x3a\xca\x7b\xca\xe7\xdb\xc4\x70\x3d\x78\x9b\x34\x76\x2a\x07\x53\xa6\xb8\x49\xf1\xdc\x78\x93\xa5\x91\xb7\x1b\x7c\x28\xf7\x65\x48\x1d\x1e\x35\x24\xb5\xd5\x9a\xf3\x67\x88\xaf\xab\x47\x93\xbb\x45\x90\x72\x38\x22\x46\xe8\x26\x27\xfb\x5b\xf3\x2f\x4a\xa7\xb9\xca\x78\xfe\x22\xc0\x86\xc5\x51\xf3\xaf\xaa\x92\x94\x83\xcd\x6b\x84\x9f\x14\xb9\x0d\x87\xe0\x09\xf9\xf2\xba\x28\x72\x81\xf4\x56\xf5\xbe\xb2\x7c\x89\xbe\x6a\x7e\xee\x6d\x71\x6c\xc5\x96\xa4\x5e\xe1\x1f\xbd\x6d\x38\x4d\xd0\xad\x19\xf0\x63\xf0\x23\x15\x7f\x5d\x77\x70\xc7\xa5\x9b\x6d\x2a\x38\xf3\x84\xee\x4a\x8d\x32\xa9\x83\x28\xdc\xaa\x58\xde\x7a\x1d\x0e\x92\xdd\x6a\x9e\x4d\x3a\x20\x35\x35\x58\x23\x2f\x48\x92\x6a\xe7\xe4\xa6\x89\xe7\x55\x8d\x27\x05\x0b\xf7\x56\x6c\x08\xb7\x12\x20\x74\x4e\x7e\x9e\xbc\x7f\xaa\xab\xae\xf6\x5c\x8c\xac\xd8\xa6\x93\xbd\x57\x78\x40\xf1\x5e\xf1\xa3\x77\x91\xc0\x24\x3f\xdb\xe5\x0f\xf5\xca\x8c\xed\xae\x24\x5f\x69\x42\xf3\x77\x64\x96\x64\x46\x83\x22\x67\x42\xb4\xb7\xe6\x7a\xe2\x57\x21\xa2\xf2\x52\xd8\x03\xc1\x2c\x43\xa8\xdf\x2c\x5e\xa5\x26\xc7\xd5\x86\x3b\x4d\x9e\x6d\x73\x89\x1d\x25\x5a\x2d\x7c\xd7\x70\x1b\xb9\x94\xf9\xa5\xae\xa4\xac\x92\xda\x58\xfd\x17\xbd\x05\xc3\xaf\xaa\xc1\x1c\x2d\xfc\x64\x72\xc6\xb1\x33\xe6\x1b\x94\x84\xbc\x58\xa8\xfc\x0a\x09\x17\xdc\xa1\xfe\x48\x31\x7b\xcf\x55\xbc\xa7\xbd\xde\xe8\x28\x3d\xc4\x90\x5b\xde\x12\x91\xe0\x64\x61\x5d\x83\x2b\x6a\x98\xd9\x51\x7b\x06\x33\x93\x9a\x5d\x5d\x8a\x2d\xc3\xec\xaa\x5a\x85\x3b\x55\xb8\xa7\x62\x84\x10\x9d\x7e\xcf\x60\x47\xfc\x16\x9b\x54\x4e\x20\x9f\x0d\xd6\xaa\x1b\xa8\x7d\xde\xd3\x14\x7d\xf4\x81\x8d\xde\x52\x05\x38\xd9\xf2\xa7\x68\x37\x4c\x13\x86\xd5\x0b\xb1\x10\x33\xb9\x76\x13\xce\x4c\x9d\x6b\xbe\x84\x3f\x8f\xfe\x59\x59\x4e\xf8\x5e\x48\xab\xf0\x23\x45\xa4\x37\xea\xfb\xc8\x07\x62\x9d\xca\x67\x50\xd3\x82\xa9\xea\x30\xda\x37\xaf\xdf\x0a\x04\xd0\xb3\x31\x54\x1a\x05\xf6\x5a\xd9\x89\x16\xc3\x97\x05\x98\x3a\x26\xd9\x17\x96\xd4\x58\x51\x26\x51\xa2\xab\x1e\x50\x0e\xa3\xe3\x4d\x95\x54\x55\xc1\x7f\xc6\x60\x1a\x9c\xee\xa4\x3b\x46\x57\xc4\x1c\xd5\x3a\x00\x63\xc1\xbe\x2a\x2e\xe3\x8a\xd7\x5b\xf9\x38\xf8\x7d\x63\x81\xa4\x07\x46\x58\x31\x84\x30\xf3\x39\x1f\x5f\x1b\xcd\x98\x04\x75\x56\x2f\x64\x70\xc9\xc5\x95\x57\x18\x6f\x50\xfc\x0a\x23\x98\x52\xe0\x65\x88\x04\xef\xa4\x29\xcb\xaf\x43\x60\x4c\x88\x26\x08\x76\x0b\xfa\xa0\x1c\x80\xaf\x7b\xdd\x92\xfd\x65\xb2\x36\x72\xc5\xbf\x58\xf1\x56\xb7\x04\x97\xd8\x1b\x79\xc9\x35\x99\xec\x14\x50\x67\x9e\xc3\x2e\x23\x91\x4c\x37\xd8\x59\x65\x9d\xc6\x06\x76\x56\x3e\xa8\xcf\x64\x63\x53\x5f\x69\xff\xc7\x36\x46\x1f\x50\x17\xb3\x4f\x07\x99\x15\xff\xb1\x3f\x7b\x1d\x94\x05\x71\x96\x6d\x6c\x13\x87\x71\xb6\xaf\xf5\x12\xac\xe3\xa0\xb8\xcb\xcd\xff\x49\x0b\x19\x45\x95\xc7\x25\x67\x89\x5e\x15\x4d\x12\x27\xa4\xdc\x40\x15\xd3\xf3\xb8\x3a\x4f\xd1\xc5\xd4\x65\x9a\x1b\x22\x97\xe8\xe5\xaa\x74\xa1\x20\x68\xa3\xfc\xa9\xe0\xa0\x97\x52\x1a\xce\x7f\xb2\xf1\x80\x28\x85\x3f\x6d\xad\x9e\xbf\x83\xb7\x92\xcd\x31\xaf\xd4\xaf\xa0\xbf\x34\x5d\x2e\x6f\xc4\x7f\x33\x8e\x6b\xf3\x4a\xcb\xf4\x4a\xf5\xff\x72\x39\xe5\x71\x2a\x46\x8a\x87\xfa\x97\xe2\x5b\x54\xa6\x52\x2a\xcf\xd9\xd9\x24\xb7\x90\x6a\xbc\x76\x49\x44\x62\xf3\xc6\x31\x61\xad\xd0\xbc\xf6\x01\x4f\xcc\xe7\xb3\xa6\x56\x05\xd6\x7a\xd2\xd4\xa6\x0d\xd5\x59\xb8\x1a\xe3\x82\xaa\xfc\x92\xcd\xba\x17\xa6\x6d\x39\x68\x6d\xb7\xe1\x67\x72\xa0\xba\x48\x57\xb1\x5b\xa3\xf8\xa7\x9d\xbf\xe3\xb7\x4c\xaa\xda\xb4\xf5\xb8\xf8\xa3\x7c\xe1\x46\xb9\x70\x81\xf8\x93\xf5\x02\xee\x4f\xc1\x08\x33\xb1\xf2\x6b\x93\x25\xf5\x7d\xc5\xa3\xfa\xff\xe1\xa6\x1a\x8e\xd6\x9a\x10\xcd\xba\xaa\xea\xb5\xd9\x9f\xb5\x79\x95\xbc\xa4\x1b\xea\x55\xc6\x3d\xbb\xfd\x14\x23\xba\xb1\x1d\xc3\x32\x3f\x4d\xe2\x56\xb5\xb8\x5a\xd1\xb2\x91\x2c\xd8\x2b\xf9\x69\x3d\x97\xdb\x21\xb4\x87\xc7\x2a\x7b\xda\xd2\xa8\xf9\x15\xfa\xe6\x17\x58\xae\x81\xd4\xb8\x0b\xe1\xa9\x0b\xad\x13\x64\xeb\xb4\x33\xaa\xcd\x49\x62\xd5\x81\x4a\x6a\xe4\x5f\x45\x96\x71\xd1\x0e\x81\xf4\x56\xf9\xe6\xad\x78\xf1\x16\xe5\xbf\x8d\x2c\x41\xb4\xf4\x8e\x75\x14\xd7\x5b\xc8\xa2\xd4\xf5\x82\xc8\xa7\x58\x74\xd7\x2e\x54\x22\xe2\x5e\xfb\x5c\xf4\x89\x9c\x17\xcd\x37\xb0\xb1\x29\x0d\x0d\x20\x7e\x4e\xcc\xfa\x9a\x27\x84\xaf\x21\x2e\x55\xcb\xc9\x4b\xfc\x42\x8c\x8b\xa8\xd9\x9b\x8f\x68\xaf\xd0\x4f\x39\xae\x50\x46\x82\xf9\x16\x9e\x12\x25\xd3\x82\x12\xde\xf3\x04\x1d\x84\xdd\xdc\xb9\x07\x23\x40\x0c\xb5\x49\xb0\x67\x72\x8e\x37\x67\xe1\xd7\xa5\x88\x1a\xe6\x10\x5a\x63\x96\xd4\x00\xa4\x9c\x10\xeb\xca\x21\x4a\x90\x5f\x90\x61\x1f\x2d\x72\xf3\x39\xad\x02\x40\x3b\x7a\x28\x17\x82\x7b\x2c\xf2\x25\x59\xcc\x75\xe4\xe7\x3d\xbb\xb1\xa7\x30\xaf\x3b\x9d\x71\x0f\x11\xdc\xb6\xe9\xf8\xef\x39\xe6\xa6\x47\x44\xcb\x94\xa2\x7a\x1d\x89\x14\x3d\x51\x33\x9b\xfc\x3d\x64\x6e\x65\x24\xb5\xc5\xcf\xdf\x90\x43\x47\x6d\xbe\xa6\xf5\x65\x84\x39\x46\x29\x8e\x41\xbb\x2d\x14\x92\xd5\xcc\x52\x72\x5b\xf7\x2a\xf2\x4c\x8c\xa6\x63\x31\x79\x0c\xb1\xaa\x75\x2a\x05\x9d\xb3\xad\xf1\x39\x35\x22\x65\x51\x5d\x03\x2d\x2a\x7a\xa0\xda\x9a\x4e\xda\x75\xc7\x54\x0a\x8c\xf9\x39\xea\x15\xe0\xa4\xcd\x4f\x35\x30\x94\xee\xc8\x52\x2c\x87\xaf\x59\xbc\x11\x93\x59\xb9\xa4\xc7\x5d\x93\x80\x5d\xe8\x17\xed\x53\x81\xb3\xc5\xc2\xe6\x09\xc6\xce\xec\xb1\x86\x47\x8c\x63\xc9\x4d\xb5\xcd\x60\x49\x74\x9a\x79\x03\xb4\x6e\x97\xa1\x82\x01\x7d\xf6\x9b\xab\xeb\x87\xcf\x6e\xfe\xa0\xee\x63\xb6\x3a\x0e\xcb\xe3\x58\x46\xcb\x58\xd1\x08\x5b\x4d\x5a\xd2\xb9\x94\xb5\x03\xed\xd9\x36\x93\xb5\xbb\xe8\x75\xd3\x57\x56\x6c\xb6\x5b\xfd\x7f\x2c\x42\xb2\x6b\x4d\x3f\xab\x33\xea\x4b\xd5\x36\xd6\xa7\x5d\x91\x46\x35\x3b\xd4\xf7\xbf\xf2\x1b\xec\xe6\xcd\x13\xaa\xa7\xec\x7f\x8e\x6f\x65\x32\x4e\xa6\xe5\x1e\xe1\x04\x67\x8c\x98\xde\xde\x27\xde\x8c\x42\xb6\x0c\x8a\xda\x8a\x2c\x1a\x7b\x45\x36\x59\x94\xba\x26\x61\x63\x92\xaa\x9a\x22\xdc\x1a\x45\xac\x9c\x23\x38\x19\xfc\xda\x80\x15\xa4\xfb\x8e\x6a\xc7\xf8\x8f\x37\xff\x53\x9e\xe5\xa7\x38\x39\x4b\x39\xbc\x0b\x56\x9e\x82\x1f\x3c\x3f\xfc\xef\xb6\x4a\x4d\x6a\x59\x5a\x73\x8b\x3a\xae\x30\xb4\xa1\x5d\xe5\x9b\x39\x58\x5b\xaf\x5c\x98\xf8\xdc\x4c\x95\xff\xb7\xfb\x89\x69\x95\xac\x2f\x18\xd4\x4b\xa4\x28\x5f\x8a\xe6\x96\x64\xd6\xe6\x8f\x8a\xf7\x22\x9e\x53\xac\x64\x40\xf0\xcf\x4a\x29\xd8\xca\x2f\xc3\x47\xb6\xb6\x56\x12\x91\x9c\xa6\xd3\x15\x97\x0a\x32\xeb\x6f\x1a\x57\x65\xdc\xaf\xb9\xaa\x0f\x4a\xdc\x50\xd5\x5d\x9e\xb7\x7b\x7b\x45\xae\xa6\x24\x68\x42\xf7\x54\x15\xeb\xbb\x4c\xe3\x22\xff\xbe\x79\x4c\xb1\x53\x8a\x77\x8a\x97\x2c\x14\x7d\xb6\x3a\xc7\xaf\x16\xe4\xe0\x46\x5a\x83\x6a\xba\x90\xb3\x9a\x8a\xcd\x27\xf3\x3f\xd6\xd3\x2a\x0f\x66\xb0\x6a\x08\x15\xe6\x84\x9b\x55\x91\x06\x44\xe4\x8f\x8a\x29\xba\xa5\x41\x07\x75\x0a\x4d\xc5\xb6\x77\xea\xab\xca\xf3\x9b\x9b\xe4\x4f\x65\xa7\x9d\x52\xc4\xc3\xe2\xab\x56\x6f\xf8\x61\x82\xa3\xb8\xcd\x2d\x0f\x1a\x42\x4a\xab\x9b\x26\xd7\xad\xcf\xaf\xac\x5f\x5c\xfd\x34\x63\x6b\xcd\xcc\x2a\x6e\x42\x55\xe5\x3d\xd3\x8c\xc8\xd3\x46\x83\xa1\x38\xc8\xac\x73\x28\xd7\x6d\xbb\xa3\x2e\x56\x17\x6c\x6e\x90\x63\xe5\xef\x9c\xd0\xe2\x20\x89\x62\xed\x1a\xde\x35\xe1\x4c\xcc\xb3\x61\x9b\x32\x79\xc9\xe4\xfe\x7e\xd4\xfd\xdc\xf1\x9e\xad\x18\xf7\xb4\x80\x8e\x26\x6c\x5f\x9c\xb0\xe5\x09\xbe\x30\xbc\xa3\xe1\x26\x31\x7a\x07\xa2\x46\x4a\x46\x79\xe7\x9b\x7e\x53\x0f\xb8\xdc\xd5\xaf\x07\xb6\xd8\xfb\xab\x7e\x80\x07\xd7\xf0\xa5\x52\x66\x09\xa6\x6f\x48\x87\xbe\x84\xb8\xdb\xef\x8a\xf9\x96\x5b\xdf\xbd\x17\xb7\x2e\x6d\x43\x87\x2b\x1e\x13\xc7\x68\xc1\x11\xde\x86\xd7\x37\x60\x48\x8d\x3b\x0a\x6b\x1c\x29\x52\xef\x62\x53\x33\xcd\xe4\xf2\x4e\x77\x0f\x38\x69\x9f\xaf\x1a\x81\x66\xaf\x19\x90\xc6\x33\x0b\x30\x84\xa1\xd9\x38\x3f\x44\x47\x5f\x27\x7e\x5b\x2e\xb3\x7b\x3b\xc1\x2f\x6d\x61\xfb\x30\x31\x31\xae\xa8\xf9\x27\xa9\x39\x5c\x5b\xff\x8b\xe2\xbc\x23\xa3\x7a\x1f\xf5\xae\x37\xc2\x14\x4c\xef\x70\xf9\xad\xe3\x33\xf4\xf6\x80\xaa\x04\x52\xaf\x79\x28\x9d\xcd\xac\xc5\xec\x18\xb8\x4d\xde\x88\x20\xf4\xca\xc8\x97\x73\x03\xba\xdc\x28\xf4\xd4\x4b\x6d\x83\xd4\xc4\xb8\x4d\xcd\x33\x69\x69\xe1\x25\xf5\x0b\xe9\xbc\x1d\x3b\xcd\x37\x80\x8b\xde\x79\x15\x18\xd0\xce\x75\x45\xf9\x3e\x48\x69\x3f\xa4\xec\x62\xce\xb4\xf0\x93\xa4\xb3\x14\xe8\x9e\xfe\x2e\x20\xb2\xf8\x6b\x0f\x1e\x38\x96\x73\xa3\xd3\x92\xb1\x29\x95\xda\xda\xc6\xe8\x8f\x7d\xd2\x34\x1d\xcc\x08\xdf\x54\xb7\x18\x5a\xbd\x63\x55\xd5\x03\xe8\xa3\x77\xa6\x51\x00\xdf\x72\x75\xd1\x3e\x63\x1e\xb7\xff\xa8\xb8\xcf\xda\x67\x51\x2b\xd6\xb2\xc7\xd1\x6b\xfb\xc6\x58\x33\x8a\xc9\xdd\x38\xd6\xbc\x9c\xe2\x8e\x65\xac\xc5\xa9\x4b\x5b\x5a\x58\x3e\xb1\xaa\xc6\xd9\x2c\x38\xec\x65\xed\x6a\xd6\x99\xc0\x97\x95\xaf\xd9\x4e\xde\xb1\x86\x1a\x76\x85\x6b\xb0\x76\x1e\x67\x9a\x83\x9b\x62\x01\x07\x67\x39\x47\x74\x9a\x73\x07\x05\xf4\x66\x89\x4a\x8b\xae\x75\x2d\x15\xbe\xcf\xbe\xd0\xb6\x4f\x88\x4b\x91\x37\x27\x0a\x27\xc5\x5a\xd5\xef\x13\x34\x85\xa9\xaa\x6f\x0b\x42\x03\xbb\x4d\xe3\xfc\xb7\xde\x3b\xf5\x78\xbe\xd6\xb5\x54\xfd\x84\xef\xe8\xc0\x96\x7d\xe5\xed\xb7\x94\x0b\x0f\xf2\x22\xcb\xf4\x3d\x36\x6a\xf7\xa2\x65\x1d\x6f\x54\x36\xd9\x6e\xad\x75\xca\x29\xc9\xbf\x9a\xfc\xe5\x6f\x63\x6a\xeb\x3a\x65\x0f\xc3\xd6\x9b\xaf\x4b\x8f\x05\x16\x54\x1c\x97\xd4\x79\xdb\xe8\x58\xe2\x52\x57\x8a\xea\xab\x68\xb1\xc3\x88\x6c\xb5\x60\x9f\xe5\x43\xc1\x04\x3f\x19\xf9\xb5\x7b\x65\xc5\x78\x21\xb2\xfd\x93\x71\x49\x16\xab\x65\x58\x9f\x90\x9c\xd9\x98\x54\x5e\x11\xb3\xb8\xf6\x94\xe6\x76\x68\x8f\x79\x86\x7a\x76\xe0\xe4\x8a\xf9\xca\x75\x5e\x4f\xca\x8f\xcb\x67\xb8\xe6\xa9\x7c\x25\x07\x1c\x2e\x4a\x31\x22\xa1\x95\x87\x20\x55\xe0\x8f\x94\x75\xb5\x9a\x1b\x0b\x17\xb6\x73\x2b\xf7\x64\xb9\xb7\x84\x54\xf4\x26\x2f\x6d\x78\x66\xe8\x8a\xbe\x5e\x9b\xa2\xab\x0c\x05\xab\x6a\xb4\xe0\xf6\xdb\xc6\x5e\xb5\xb7\xd7\xf9\xf2\x42\xc5\x80\x6b\xbe\xf2\xa6\xf4\x87\xc3\x23\xe9\x22\x71\x82\x55\x2a\xff\x9f\xc0\x88\x74\xee\xf2\xa9\xfd\x50\x70\xb0\x7d\x71\xf5\xa5\xcc\xf7\xcd\x97\xab\xb4\x49\x0f\x1a\xd0\xa6\xa4\xe8\x8e\x9a\x7b\xc6\xc9\xa1\x99\x55\xeb\x75\xa6\xed\x27\x8c\x81\xda\x59\x5e\xa7\xb4\xef\x55\x76\xae\x48\x65\x8e\x7c\x8a\xc3\x5f\x49\xa5\xf8\xa7\x95\x88\xaf\x10\xdc\x28\x61\x8d\xdd\x42\xc5\xe7\x8d\x8f\x44\xa2\xe9\xe9\xcd\x03\x8d\x98\x8e\x04\x66\xcf\x79\xdc\xb2\xdd\x9e\x1d\x7b\xf1\x63\xc1\x37\x5b\x12\x88\x55\xfe\x2e\xf5\x95\xe4\x41\x8f\x0f\x66\x3d\x6d\xa6\x73\xb4\x31\x00\x60\xd8\x36\x68\xe8\xe0\xa7\xd5\x3f\x64\xa5\x4c\x76\x09\x7a\x2c\x1d\xc3\xc9\xeb\x18\xbe\x84\x65\xa7\x57\x0c\x6c\xc6\x49\x12\x68\x3d\x19\xf8\x23\xbb\x3d\x3a\x22\x88\x1e\xc1\xb7\x9b\xff\x23\x3d\xf1\x77\xaf\xdf\x4a\x39\xe2\xf1\xdb\xec\x4b\xbb\xe1\x9c\x6f\x78\xc3\x98\x62\x7b\x42\xe3\x06\x79\xac\xb1\x96\x6d\x64\x52\x4b\x62\xf7\xdc\xc2\xdd\xca\xd3\x0c\x27\xe1\x07\xd2\xb9\xfd\x63\x04\x5d\x42\x59\xf7\x43\x62\xe5\xee\x8d\xed\x97\x48\x0f\x82\xaf\x37\x13\x29\xd9\xfe\x9e\x75\x27\x68\xb3\x3c\xa7\x57\x5d\xa5\x3f\x70\x26\x19\xe4\x8c\x93\xb6\xf7\xd5\x77\xa0\xa1\x35\x91\xd2\xbb\xcc\xbe\x12\xc7\xd1\x16\xb2\x30\x0f\x3f\xb4\x89\xb2\x34\xbd\xa4\xcf\x44\x69\x4d\x88\xe8\xba\x41\xa5\xed\x9e\xdb\x76\x9b\x46\x09\x3e\xd4\xc4\xa6\x57\xf9\xbb\xd4\xde\x05\x9e\x79\x2e\xae\xfc\x0c\x86\x3a\x1b\xf4\x63\xd0\x80\x9d\x85\x7a\x19\x73\xdd\x9a\x66\xe9\x3a\x56\x05\xe2\xc4\x48\x01\x60\xc8\xb3\x19\x9c\x04\xbc\x4f\x77\xec\x65\x32\x42\x12\x96\x74\x1e\x65\x1c\x89\x7c\xd8\x7a\x01\x2c\x09\xae\x6d\xa4\x43\xeb\xfc\x2d\x6a\x6e\x42\xdf\x3c\x57\x99\xfe\xc1\x2f\x9c\x47\x75\xd7\x98\x77\xed\xb2\x54\xbe\xac\xf3\x16\x33\x25\x71\xec\xc3\x08\xd2\x70\x31\xcb\x2a\xf7\x72\xff\x57\xd6\x92\xb4\x07\x3d\x28\xd6\x9c\xf8\x2b\x1d\x23\x2c\x97\xc8\xce\x96\x53\x2c\x52\x30\xbd\x81\xc2\xda\xeb\x3f\xb5\xfa\x16\x7b\xa5\xe7\x1a\xd3\x7c\xb6\xc6\xf9\x46\xf9\x47\xce\x0c\xbb\x6a\x65\x1e\x87\x66\x81\x12\x33\x39\xcf\x8a\xef\x0f\xcd\x12\x4d\xce\x4d\xe9\x53\x09\x85\x69\x50\xd7\x1f\xe1\xb4\x78\xb0\x3d\x46\x50\x11\x59\xd0\x5c\x22\xd8\x15\x1c\x5c\x6f\xc7\x7f\xe3\xf7\xca\x6c\xe0\x57\x7a\x3a\x19\xcf\xf3\x93\x36\x2d\xd2\x0e\xf1\xfe\xd8\xfd\x50\xf8\xf0\x3a\x2d\xde\x8a\x90\xbc\xe8\x62\xdc\x40\xbd\x0a\xce\x79\xd5\x1b\xac\x8c\x4d\x5b\xdc\x79\x52\x61\x15\xbf\xba\xcd\x5a\xbe\x38\x72\x41\xd3\x0e\xd9\xb2\xe0\x29\x75\x73\xa4\xb3\xfd\x0e\x56\xa9\xc4\x3f\x3d\xed\x0c\x67\x44\x4f\x36\x79\x69\x46\x84\x3d\xf6\x01\xf2\x78\x81\xd8\x32\x5e\x68\xe4\xc7\x17\x3d\xea\x87\x8c\xac\x9c\xe2\x1e\x17\xfd\x58\xaa\xb1\x63\x7f\xf9\x9b\xb8\xce\xd6\xd5\xda\x1d\x11\x9d\x8d\x81\x6a\x63\x50\x6f\xad\x9d\xf2\xb9\x1f\xb3\xf2\xa8\x62\x9d\xe7\x0c\xfd\x3f\x99\xd7\xa6\x1d\xea\xf7\x12\x3b\xfb\x12\x99\x59\xb4\xde\xb2\x4a\xf0\x55\xb0\xaa\xa8\xb6\xef\x5f\x95\x65\xce\x86\xee\x1e\xd3\xea\xd4\xfc\x8e\xed\xc6\x59\x71\x60\x8b\x49\xbf\x22\x82\xd7\x70\xa8\xdc\x26\x48\x59\xd3\xab\xb1\xf5\x2b\xa9\xcc\x52\xcd\xf5\x9c\xa4\x37\xc8\xf7\x6f\x8a\x52\x0b\xa4\x41\xf6\x6c\x99\x9f\xe8\xa1\xe5\x61\x41\x8d\x00\x55\x54\xd4\xc7\xad\xb1\xc9\xfe\xd6\xed\x52\xf5\x21\xd5\xab\x7d\x8f\xa9\x23\x2e\xad\x65\xb1\x91\x15\x81\x6c\xf0\xd2\xef\x0e\x62\xd6\x6c\x2a\x5f\xe0\x97\x6b\x7a\xaa\xee\xf3\x9c\xad\x5f\xa3\x9c\xb7\x09\xa1\x9e\x29\xf3\xb4\x6f\x91\x1e\x13\x33\x2c\x3f\x0a\x5c\x04\x1d\x27\x00\xf4\x40\x61\xc9\xd8\x67\xcc\xad\x62\x4c\xd7\x7b\xec\xd7\x92\xf4\xda\x7c\xfc\x62\x24\x41\xb3\x92\x10\x88\xaa\xe3\x5a\x11\x65\x98\xb3\xc4\xc9\xa4\xef\xf8\x45\x79\xcd\x14\x35\x51\x1b\xfd\x8a\x96\x4e\x71\xdc\x06\x03\xb9\xb4\xd3\xf6\xf3\xc0\x3a\x86\xf2\x38\x19\x55\x59\xe2\x38\x66\x87\x3e\x55\xfa\xb8\xcb\x17\xf3\xbd\x8c\x57\x73\x00\xe7\x86\x4e\x54\xf3\xf1\x20\xd6\x9b\x53\x49\x78\x80\x5f\x41\x50\x91\x10\xc4\xb9\x79\xc1\x94\x15\xe4\xad\xd1\x06\xea\x04\x15\xb5\x2d\x06\x58\x44\x6f\xb3\xfb\x03\x16\x80\xf3\x8e\x81\x65\x2c\xd4\x82\x3d\xa1\xa8\x7d\x68\x7a\x27\x8c\xfe\x83\xb9\x52\x33\x1b\x1b\x8f\x4b\x53\x3d\xc6\x8d\xe1\xff\xc7\x59\x40\xd8\x42\x14\x10\x2c\x89\x17\xc9\x2e\xb9\xf7\xc9\x3a\xca\x9f\xe8\x50\xaa\x84\x76\x63\x9b\x35\x7d\x0c\x18\xb4\xfb\x0a\x5a\x81\xdd\x47\x34\xa5\x29\x24\x87\x11\x00\x79\x9a\xf4\xae\xfd\x22\x6a\x27\xb9\xc5\xac\x41\xef\xa1\xe8\x94\x95\xd8\x60\xaa\x96\xf5\x15\xf7\x98\x66\xc4\xfb\x10\x1a\xe9\x2d\xb9\x56\x24\x25\x70\x24\x6a\x90\xd2\xcc\x78\xea\x73\x8d\xf6\x03\xfc\x65\xf7\x9b\xc1\x86\x6d\x0f\x5d\x43\xc4\x82\x92\xa1\x63\x25\xaf\xc1\xbe\x36\x4f\x24\x13\xbc\x5e\x65\x85\xb2\x84\x36\x28\x62\xd1\x17\x20\x19\xf3\x16\x56\x03\xfd\x0f\x17\x85\xa7\xc3\xa9\x39\x71\x44\x11\x7c\x3c\x6a\x03\xf9\x00\x73\xa3\x8f\x89\xe6\xce\x24\xda\xaf\x01\x6e\x30\x47\x0f\xec\x2d\xaa\xe1\x47\x0f\x7c\x44\xf8\xf2\x5e\xb7\xe8\x4b\x1e\xf3\x00\x53\x13\xb2\x91\xb7\x41\x3e\x19\x45\xe7\x3e\x81\x87\x30\x59\xdc\x2a\x6c\x0e\xae\x80\x1b\x9f\x2d\x24\x94\x73\xfe\xec\x6e\x20\xfd\xc7\xa9\xf2\x41\x52\x49\xec\x5f\xf6\xa1\xc0\x26\x76\xe2\x3e\xdf\x82\x30\x6d\x71\x1f\xbe\xc8\x56\x33\xa3\xc9\xb1\xf8\x8b\xaa\xc1\x58\x5a\x72\x5d\x99\x20\x9d\x84\x3c\xab\x98\x04\x4e\xa0\xae\xc9\xea\xd1\xaf\xb0\x53\xa4\x1b\xb2\xc8\xf8\x54\xb1\x36\xf2\x3e\xf1\xaa\xf0\xb2\x8f\x15\x45\xca\xbf\x64\x4f\xa7\xa3\xb8\x83\x63\xc4\xbc\xb3\xf5\xbb\xbb\xff\x57\xd0\x5c\xf3\xa9\xfe\x71\x11\xcf\xac\xd4\x47\x23\xa0\xca\x2d\xe2\xd5\xa5\x52\xe3\x31\x46\x58\x59\xbf\x7e\x2b\x8a\x85\xfe\xab\xa5\x67\xe6\xe2\xf0\x2a\x66\xe4\x32\xe2\x42\xf9\x76\xef\x63\xe4\x37\xe2\x21\xfb\x6a\xda\x2b\xfe\xff\x46\x8b\x73\xf7\xf4\x4d\xee\xfc\x95\xaf\xed\xea\xab\xfd\x53\xc8\x68\x8f\x2b\xe7\x17\xb3\x9a\xbf\x08\xb1\x25\xd5\x0d\x04\xfa\x71\xe4\xcd\x9a\xd1\x32\x77\xb4\x4f\xe5\x50\x46\x11\xf6\xb0\x21\x29\x82\x46\xa0\x69\xd4\xde\x4c\x32\x51\x8e\xb0\xdf\x4b\x53\x09\x9f\x8d\x18\x73\xdd\x47\xba\x3a\xbd\xf3\xad\x07\xe7\xd4\x86\x16\x2e\xed\x0d\xd6\x5e\x2e\x5e\xd5\x49\x16\x9c\x28\xf1\x6e\xc5\xd3\xdd\x90\xe4\xc6\x0d\xc8\x3e\xd4\x9d\x1a\x49\xc6\x4c\x2c\xd2\xc4\x88\x08\x26\x38\x94\x4f\x78\xe3\xc9\xce\x8a\x5f\xf6\xb7\x68\x49\x22\xd3\xc8\xf4\x9c\xc3\xfb\xf2\x3b\xba\xf2\xc6\xf7\x30\x6b\x8e\x15\x0c\x0d\x21\xb5\xc9\x45\x83\x7d\xdb\x04\x89\x88\xf3\x9d\x27\x68\xa7\x91\xb3\x5a\x27\x23\xb3\x50\xd8\xfa\xcb\xe9\x57\x31\x7f\xcc\x36\x11\x1e\xf8\xbd\xfa\x97\xde\x6c\xd2\x69\xd5\x06\x87\x05\xd4\x6f\xa2\x89\xc3\xa7\x71\xdb\x0b\x97\x0c\x5f\xc5\xaf\x2d\x76\x69\xf7\x23\x4c\x2a\x71\x30\xcf\x24\xbc\x45\x86\x2a\x57\x13\xdf\xa2\x20\x96\x80\xf4\x17\x33\x88\xbb\x45\xf1\xc0\x4f\xcf\x79\x41\x95\x11\xcb\xa3\x2a\xe9\x0b\x29\xee\x3e\x17\x80\x8b\xb4\xcf\xf6\x53\xc0\x63\x8c\x3b\x87\x1e\x61\x6d\x11\x27\x87\x67\xe2\x96\x97\xaa\xda\x64\xf8\x79\x65\xdb\xab\x10\x84\x15\xe8\xd5\x0a\x11\x71\x0b\x76\x36\x6b\x06\x29\x13\xf7\x19\x57\x46\x6e\x21\x7c\xc9\xe1\x53\x97\x93\x37\x46\xed\xa6\xf5\x53\xf1\x3e\x15\x80\x94\x7e\xd6\xee\x1d\xa8\x01\x63\x0e\xbe\xc3\xcc\x29\xab\x1b\x72\xc5\x2e\x42\xaf\x6c\xbd\x8c\x5b\x83\x81\x2b\x47\xf1\xdb\x71\x8b\xe4\xaf\x08\x38\x7c\x1f\x13\x24\xf6\x11\xe3\xb1\x13\xe4\xc5\xe4\x99\x39\xeb\x28\x06\xca\xcb\xa8\x49\xb4\x70\xda\x75\x1f\x34\xe0\x05\x5c\xb0\x7b\x0c\x26\x80\x2f\x0e\xd8\x95\xbd\x20\xb2\x07\xa8\x68\x3b\x52\x51\x8b\x07\xa6\x88\xbc\xd5\x14\x81\x6d\xa6\x38\xcb\xba\x70\xdf\xa9\x5e\x30\x92\x90\x4f\x0b\xc3\x2e\x23\xbe\xa2\x97\x64\x17\x93\x0d\x40\xd5\x6e\x3c\x15\xcd\xb8\xee\xb3\x8e\xce\x84\x66\xdb\x3d\x64\xec\x87\xe3\xf6\xed\x46\x4e\x67\x8c\xf6\x8d\x96\x65\x80\xd3\x9b\xf4\xa8\x41\x30\xcc\x78\x03\xb3\x1a\x6c\x95\x16\x63\xb5\xd0\x4a\x28\x16\x6f\x09\xa9\x30\xae\x84\x13\xf0\xbc\xac\x76\x92\x0e\xd6\x46\x4e\x50\xc4\xcc\xa5\xde\x5f\x69\x7b\x98\x74\xfb\xf9\x8c\x25\xcc\xa7\xe3\xd1\x25\xf1\x3c\x6c\xcf\xdb\xd2\x11\x9e\x7d\xc3\xe7\x32\x27\xee\x19\x43\x0e\xaa\x9b\x2b\x95\xac\xc6\x84\x73\x53\x40\x0f\xec\x07\xee\x7a\x74\x08\x7e\x84\x33\x91\xf9\x9a\xd8\xc8\xd9\x1f\x09\x90\x07\x38\x44\xef\x8b\xd4\x1f\xec\x5f\xf6\x11\x40\x31\x9b\x3d\x7a\xbc\x78\xa1\x66\x43\x17\x19\xd1\xae\x9a\xa8\xd3\x97\x06\x2a\x47\x75\x9e\xc8\x27\x0a\x96\xc8\x05\x65\x96\x87\x02\x5c\x0c\x52\x36\xa5\xec\x3e\x2e\x4d\xd2\x96\xf1\x90\x50\x26\x76\x8f\x38\x4a\xaa\x15\x96\x7b\x2b\xa9\x8b\xf8\x7b\xed\x79\xf4\x7a\xee\xf9\x61\x97\x42\x4d\xed\xdd\x8e\xf9\xc5\x2e\xd5\x8d\x35\x39\x88\x4b\x55\xf9\xda\x8d\xa5\x62\x93\xbd\x20\xad\x2c\xd5\x70\x9d\xf6\x04\xbd\x4b\x87\x40\x32\xb1\x89\x9a\xb3\xe9\x57\xf0\x3c\xe5\xb7\x88\xe9\xc4\x3b\xb2\xc7\xde\x61\x94\x52\xb1\xd0\x7e\x84\xbe\x8a\x3f\x31\xb8\xa2\x00\xea\x89\x6c\x5b\x54\x64\xd1\x69\x67\x66\x14\x9f\x69\x7d\xab\x2e\x2a\x51\x35\xf5\xf3\x86\x91\xe8\xfa\x38\x6a\x19\x0a\x5d\x3d\x5e\xea\x8b\x51\x9b\xee\xa7\x3d\xc0\x5d\xd7\xb7\x86\x97\x11\x83\x35\x8b\xbc\x67\x90\xdf\xc8\x2d\xed\xef\xd0\x46\x84\xb7\x07\x12\x0a\x66\x0e\xfd\xd7\x1a\x5d\xd8\xdf\x5f\x52\xb5\xb7\xb8\xa8\xfb\x84\xaa\xbf\x64\x43\xc7\x1a\xde\x62\xe4\xcc\x16\x5f\xca\x4d\xd4\x9c\x86\xd5\x25\xfb\x31\x1e\xd5\x0d\x69\x5c\x1c\xb3\x62\x7f\xb8\x17\xe1\x63\x79\x89\xd7\x2f\x72\x83\xa2\xcd\xfe\x17\x8d\x22\x92\xf6\x9f\xca\x6f\x19\xd7\xb6\x1c\x2d\x4c\x1c\xb9\x50\xe5\x5e\x3c\x63\xe0\xb6\xca\x1d\x71\xac\xe7\x1c\xb7\xba\xb4\xa6\x83\x49\x21\x96\xd5\x34\x3f\x2a\x29\x43\x9f\xac\xbb\x97\x16\x8b\x5b\x52\x95\x1a\xee\x40\x10\xe9\x63\xbc\x17\x90\xfd\x94\x17\x1d\x3c\x69\xcb\x45\x4f\xf6\xfd\x25\x3c\x29\x38\xd1\x0f\x10\x45\x45\xaf\x9b\xe3\x49\x5b\x11\x1f\x2a\x98\xa4\x0f\x48\x0b\xe9\x1b\xf2\x09\x54\x2a\x34\x4a\x69\xc7\x68\x31\x04\x6a\x07\xee\x6d\xd6\x13\xda\x31\x22\x73\xf7\x7c\x60\x26\x65\xa3\xf7\x15\x86\x88\x3e\xd9\xae\x13\xf2\x02\xa7\xee\xb3\xc1\x9f\x43\xa0\xfb\x06\x09\xa2\xd2\x80\xa6\x66\x62\x24\x72\xc2\xf8\x84\x64\x8d\x7a\x20\x4d\x27\x2f\xc0\x5c\x80\xbc\x29\xb3\x70\x07\x31\x53\xa9\xd6\x84\xb3\x59\x7c\x5a\x3c\x79\x6e\xe4\x51\x7a\x37\x35\xcf\xbb\x9e\x11\x42\xbf\x62\x67\x84\x66\x83\xf8\xbd\x5b\x70\x7b\xca\xdc\x7b\x9f\xe0\x25\xa8\xa1\xc6\x0f\x84\x02\x8c\xbd\x71\x2b\x31\x0a\x7b\x58\xb2\x9f\x94\x80\x2f\x01\x7b\xc9\xf9\xc4\xc5\x68\x2d\x45\x49\xba\x9a\xe5\x48\xbd\x49\x39\x1c\x09\xd3\xc3\x69\x07\xbd\x19\xc0\x57\xe0\x92\x9d\x0a\x3c\x07\x4d\x1f\xe3\x63\x4c\x84\xbb\x3d\x81\xd8\x46\xe2\xad\x86\x2c\xdc\x00\xe9\x80\xfe\x2c\x7e\x3f\x79\x8f\x98\x47\x78\x4a\x39\xc7\xa8\x25\xad\xa6\xbe\x41\x0d\x90\xd1\xf4\x35\x99\x44\xca\x5d\xa0\x28\x62\x82\x46\x62\x8c\x78\x07\x00\xc1\xd0\x74\xbb\x0a\xd0\x0f\x2e\x1b\x55\xa3\x1e\x00\xcf\xba\xe8\xe8\xcf\x8c\xd4\xba\x83\xd8\xe5\x8c\x41\x5d\x36\x2e\x10\xb4\x11\x85\xe0\x85\x60\x35\xa0\x20\xdc\x83\xec\xcb\x2e\x91\xe2\xa0\xc1\x8c\x83\xe4\x47\x70\x5c\x84\x80\x5a\x0e\xbf\xf2\x5e\x49\x67\x31\x51\x76\xa7\x19\x1a\xe6\xb7\xe1\xde\x32\x27\xae\xa2\x63\x10\x95\xc9\xcd\xa8\x5d\x83\xae\xe4\x2e\xd3\xbe\xc6\x3c\xe6\xbc\x11\x4e\xc5\xed\xe2\x9c\xa2\xd3\xf0\x23\x9c\x4e\xe4\x3b\x62\x18\x47\x91\x31\x87\xf4\x99\x83\x8a\x58\x4c\x39\xc4\xf1\xf3\xfa\x46\x3b\xc2\x7e\x6e\x3f\x0b\x78\xc1\xd6\x0c\xda\x94\xfc\x51\xbd\x6a\xdb\x85\x4c\x57\x3e\x32\x9f\x2b\xdb\xa3\x38\xae\xbe\x84\x5e\x23\x6f\xe3\xdb\x63\xaa\x65\x42\xea\x55\xdc\x56\x69\x46\xa9\x1a\xff\x56\x62\x91\x3e\x83\xb8\x5f\x74\x24\x1c\x41\xee\x13\x86\x78\x1d\xa4\xde\xe2\xeb\xed\xa3\x81\xb5\xdc\x4b\x7d\x7b\x10\xac\x9a\xa2\xe6\xef\x25\x8f\xcd\x31\x95\x8d\xc8\xe8\xca\x4d\xca\xab\x65\x47\x2a\x16\x70\x33\xd0\x19\xfa\x7b\x94\xed\xd8\xc5\xe5\xb2\x12\x3f\xdc\x0b\xcd\xe2\xb4\xc9\x84\x9b\xca\x82\xb0\x7e\xd2\x2b\x19\xd5\x8b\x43\x75\x11\x47\xd8\x8b\xe8\x0a\xfe\xeb\x1e\x43\x71\x59\x97\xac\xf1\x23\xe2\x6a\xbb\xb2\x62\x5f\x69\x44\x0b\xac\x58\x88\x3c\xd7\x58\xc4\x3e\x88\x22\xd7\xd9\x93\x2e\x60\x02\xcc\xfd\x88\x49\x38\xa7\x8a\xdf\xa9\x8b\x08\xce\xba\xb7\x61\x2b\x48\x49\x6a\x9e\x57\x20\xa5\x57\x76\xcc\xbe\x9b\xee\x24\x3c\xd0\x7d\xaf\x78\xc6\xe0\xf2\x46\x37\x04\xa1\x77\x9f\xf1\x5b\xc9\x7f\x5d\x81\xf2\x2c\x64\x69\xdb\x10\xdb\x02\xb5\xa8\xe9\x1b\xc9\x1f\x7d\xb7\xee\x57\x31\x1f\x7b\xc6\xdc\x9d\x32\x8c\xbf\x66\xfc\x18\xfa\x98\x34\x45\x7b\xce\xcb\x83\x52\xac\x08\xb3\xbf\x40\x7b\x2a\x42\x75\xa7\x17\x0d\xef\x19\x6d\x68\x46\x58\x0c\x2f\x33\x96\x94\x48\xfa\x03\x65\xb7\x91\xd3\xba\x13\x59\x6d\x65\x6d\xed\x1b\x89\xb7\xd0\x84\xa6\xe1\x62\x0f\x6c\x4e\xed\xbd\x14\x0e\x1e\x59\xc9\x0e\xbd\x40\xac\xd0\x75\x78\x05\x91\xff\x2a\x91\x0e\x33\x68\x6c\xd1\x91\xc1\x20\x1a\xae\x20\xa2\xcd\x40\x6b\x2a\x52\x57\xc7\xd0\x9e\x20\x46\x34\xab\xe8\xc9\xa5\x97\xf9\x5b\xe8\xb7\x51\x53\xa9\x63\x40\x01\x26\xa4\x74\x3b\x63\x3a\xae\x25\x4d\xc0\x68\x25\x06\x87\xf1\x41\x3c\xf9\xeb\xd6\x52\x88\x4c\x7b\x6b\xcb\x82\xeb\xc1\xe5\x03\x15\xd4\xd4\xe2\x4b\xad\x9f\xa8\x8d\x25\x07\xcd\x03\xd4\x1f\x48\xbd\x9a\x4d\x93\xa0\x4a\x79\xf5\x74\x27\x4c\x0a\xd5\x97\x7e\x0a\x17\x57\x72\x05\xe0\x10\xca\xd2\x36\x32\xb6\x93\xc6\xc3\x76\x80\xd6\xd4\xb5\x5b\x7d\x21\x7f\x7a\xbf\x2d\x0a\x66\x82\xd4\xfe\x27\x94\x5d\x48\xb0\x35\x88\xd2\x82\x5a\x66\x9e\x4a\x5d\x81\xd6\xab\x6e\x52\x0f\x62\x6d\x79\x73\x68\x24\xdc\x79\xca\x30\x7d\x03\x81\x5f\x52\x48\xff\x4a\x4a\x4d\xbd\x06\x9c\xa2\xe4\x84\x4d\x61\x1c\xa6\xe1\xb6\x5a\x81\x1f\x81\x26\x5b\x14\x1c\x02\x4d\xeb\xbd\x4e\x4a\xc1\x9f\x6f\x2e\x20\xbd\x24\x9c\xa8\x4c\x22\xf3\x88\xbd\x4a\x24\x25\x84\x74\x8c\x73\x95\xba\x92\xfc\x3f\x72\x1b\xf5\x3d\xd5\x0e\x21\xa0\xdd\xa3\xa1\x53\x3d\xe8\x57\xe9\x4f\x42\xcb\x81\x09\x46\xa2\xe7\x3b\x30\x0c\xbc\x60\x2b\x87\x46\x61\x44\x4f\x36\xa1\x8b\x5e\xde\xf8\x8a\x18\x01\xac\xac\xb8\x4b\xfc\x01\x70\x15\x2b\x48\x77\x19\x33\xd9\x1d\xe4\x73\x8c\x3a\x52\x33\xe5\x08\x18\x58\xdc\x43\xbd\x08\xbe\x49\x51\xd3\x1e\x41\x43\xa1\x6e\x80\x35\x4c\xf4\xbc\xc7\x90\x30\x1d\x6c\x8f\x42\x8b\x98\xaf\xbb\x0c\xf8\x19\x9c\xd9\x0d\xc1\xf8\x93\xec\x57\xc6\x5c\x82\x98\x3d\x2c\xdb\x47\x54\xb0\xdb\x58\x20\xc9\xc4\x6e\x24\x56\x93\x3b\xd8\x8d\x45\x57\x29\x57\xd8\x2d\xc9\xaf\xa8\xdf\xd8\xbd\x21\x17\xe9\x09\xec\x2e\xcf\x33\xc0\x45\xb6\xda\x6e\x26\x58\xc6\x86\xda\xdf\x62\x6e\x28\x0e\xd5\xde\xc5\x1e\x95\x3f\xd6\xbb\xe0\x46\x65\xef\x25\x07\xf0\x57\xa4\x5f\xe1\x61\xc2\x1f\xc9\x6f\xc2\x12\xd2\x16\xf1\xef\x42\x39\x19\x12\xbd\x4b\xfa\x4a\x39\x2b\xbc\x12\x12\x40\x0b\x12\xa8\x3c\x7b\xe8\xf7\xf8\xb6\x76\x18\x86\x82\xdb\xda\x7a\x18\xed\x51\x25\xab\x1e\xc1\x04\x9a\x86\xca\x2d\xb1\x31\xc6\xb3\xa2\x5b\x38\x96\xfe\x3e\x34\x05\x7f\xb8\xfc\x21\x4e\x4b\x5c\xac\x39\x55\xb0\x9b\x04\xa8\x14\x89\x5f\xc9\x6f\x14\xeb\x77\x29\xa8\xb0\x94\xef\x89\xa2\x7b\x8a\xba\xec\x6a\x81\xdf\xfc\xce\xe6\xd3\x28\x6c\xfb\xd6\xaa\xab\xe8\xa4\x16\x92\x26\x0a\x93\xd2\x58\x29\x74\xc4\x96\xd7\x1d\x62\x90\x71\x4f\xab\x8f\x62\x37\x13\x76\x55\xea\xf3\xd7\x12\x0f\x1a\x37\x26\x2e\x25\x87\x96\xa3\x82\x3f\x52\xde\xaa\x12\x3d\x9d\x68\x43\xd2\x5f\x76\x47\x00\x99\xb0\xb4\x69\xa2\xec\x6b\x6f\x42\xd5\x3c\xd4\xfb\xae\x18\xb5\x06\xfd\xb9\x7d\x9d\x80\x86\xdd\xd2\x7c\x1f\xb8\x86\xe3\x36\x20\x31\x8d\xf8\xff\x6a\xf6\xe4\xb5\x12\x8b\x2a\xc7\x13\xf6\x92\x3e\x1b\x12\x83\xf7\x50\xcc\x1a\x9e\xe7\x2a\x1a\x52\x8e\xb5\x7b\x08\xec\x12\x2d\x6c\x4a\x2e\x53\x0d\xe9\x2b\xa9\x28\x65\x7f\xae\x7a\x06\xda\xd8\xfd\x91\x3f\x81\xb9\xd4\x91\x0c\xe4\xe3\x2c\x5b\x18\x98\x40\x3c\xdc\x90\x98\x97\x4a\xf8\x55\x7d\x39\x81\x4f\x92\x56\x9c\x0b\xae\xa3\x78\x94\xc7\x7b\xda\xd2\x26\x29\xc4\xf6\x4b\xe8\x77\x45\xc8\x76\x5f\x38\xa7\x60\x63\xed\x3c\x78\x57\x51\x90\x2e\x1f\xf6\x40\x44\x8b\xdf\xc2\xa1\xa5\x25\xd0\x35\xb8\xb8\xac\x09\xef\x02\x4b\xd0\xaf\x0b\x8c\xf0\x3e\x5c\x66\xa2\x1a\x9e\x20\x4c\x04\x8b\x98\x61\xe4\x01\x77\x3d\xf3\x24\xed\xb0\xcd\x57\x16\x12\x9c\xd1\x56\x05\xa5\x16\xa3\x6b\x08\x50\x52\x49\x78\xf9\x45\x28\x0f\xb9\x4c\x5c\x00\xc9\xca\x5e\x43\x09\xd0\x61\xf4\x63\xdc\x5e\xe8\x07\xf6\x59\xc1\x56\x78\x07\x61\x7e\x62\x04\xac\x21\x65\x07\xc7\xc3\x3f\x29\x67\xdd\x21\xa6\x86\x0e\xda\x7c\x61\x85\x80\xb9\xad\x1f\xc0\xa4\xd2\x2b\xd5\xe7\xc1\xd2\x32\x72\xb9\x3b\xa8\x44\x4f\x11\x9d\x04\x2f\x61\x94\xe0\x49\x68\x0d\x6e\x07\x2e\x08\x2a\x24\x4c\xcf\xbf\x08\xed\x27\xbe\x4e\x9c\x0c\xdb\x91\x3f\x07\xdb\xc0\xf5\xb4\xc5\xee\x28\x66\x04\x50\xbc\x6e\x2a\x6b\x01\xf8\xa2\xc5\x11\x28\xc5\x9d\x32\x6f\x00\xc6\xf1\x77\x34\xed\x8c\x45\x84\xdb\x42\x80\x81\x26\xfe\x62\xb4\x33\xae\x91\xbd\xb0\x11\xa0\x1f\x85\x9d\x3f\x19\x1c\xa0\x3e\x49\x20\x40\x3e\xf4\xf4\xa0\x23\xd0\x43\xe0\x81\x7b\x34\xdc\x0c\x42\xeb\x36\x31\x79\xb0\x7f\x93\x89\x76\x90\xb6\xb3\x72\x1f\xdd\x8e\x76\x5b\x9d\x48\x97\xd0\xf3\x04\xa1\xc0\x54\xfa\x6f\xc0\x0c\x88\x81\x4e\x4c\x2e\x63\x3e\x03\x99\xb7\x83\x51\x0f\x6e\x8d\x7f\x0c\x46\x41\x0b\x82\xf0\xd0\x42\xe8\x85\x7b\x08\xf4\x06\x3e\xb1\x0e\x0d\xdf\x67\xee\x6d\xf8\x40\xcd\x67\x79\x98\x5c\xa8\x47\x59\x11\xca\xe7\xb4\x2d\xac\x48\xfe\x64\xda\x51\x56\x1a\x9d\x4e\x2f\x60\xe1\xd0\x08\xfa\x3f\x96\x31\x17\x09\x74\xb2\x0e\xc6\x87\x31\x30\xac\x17\x41\x76\x60\x18\x7b\x96\xbb\x0f\xb4\x95\x6d\xb1\xae\x1b\xde\xca\xf6\xa9\xcb\x25\xc7\xc8\x62\x0c\x77\xc8\x77\xa4\xc3\xf2\xfd\x14\x82\xe4\x0f\x77\x16\xd5\x5a\xb2\x99\x7a\x84\x7a\x5b\x5c\x54\xf6\x98\x66\x10\xe9\x73\x5c\xe8\x05\xc2\xb1\xb8\x5c\x20\x54\x70\x72\xa7\x91\xb1\x9d\x3f\xee\x6e\x01\x46\xf0\x94\xb6\x73\xa0\x42\x6e\x5a\x8d\x0d\xf1\x78\x85\x5e\xb7\x87\x84\x35\x4e\x93\x9e\x26\x5b\xea\xd3\xd8\x01\xe4\x87\xe5\xf5\x14\x47\x4a\x8f\xe6\x1e\x12\xa0\x0a\xd5\x93\xb3\xa7\xd0\xf0\xca\x19\xb1\x14\x7a\x99\xec\xf6\x8e\x9f\x00\x55\x02\x6e\x79\xcd\xa8\x10\x7e\xb2\x8d\x03\x0f\xf2\xa3\xcc\x39\x84\xaf\xcd\x4c\xed\x57\xa2\xa0\x71\xa5\x64\x31\xc9\xb7\xce\xc8\x6c\x26\xcf\xaa\x99\x44\x1a\x21\x3f\xa9\x0a\x2f\xf5\xa4\x9c\xad\xc8\xcf\xfc\x48\x3d\xae\x0f\x8e\xa9\xa4\x5d\xd0\x9c\xdb\x91\x49\x7f\xa9\x9c\xbb\xa5\x89\xb1\x5c\xba\xca\x16\x0f\x86\x0a\x3e\x57\xd5\x12\xe4\x9d\x04\xad\x37\xd1\xb9\x6d\x54\x9c\x4d\x7c\xdc\x7c\x0f\xfe\x47\xea\x69\x78\x4c\x5a\x47\x96\xd4\xee\x29\xe9\xa7\x90\xcd\x89\x99\x02\x2a\xb1\xa2\x3d\x26\x84\x06\xeb\xb4\x3b\x6c\xe8\x26\xb5\xed\x16\x35\x70\x5a\x06\xda\x0a\x19\x3f\x85\x86\xaa\xf9\x04\xcf\xbe\x72\x4d\x33\xe1\x76\x77\xa5\xe8\x1a\x51\xd9\x41\x81\xf9\xa4\xe4\x56\x47\xe2\x08\xd9\xb9\xd1\x5c\x92\x42\x59\x5a\x7b\x32\x33\x80\xba\xb0\xaa\x26\x66\x21\x6d\x95\xe1\xd3\x8e\x29\x74\x77\xcd\xc3\x2d\x06\x20\x4f\xae\xb6\x1d\x61\xc8\x85\xdf\xaa\xef\xf0\x57\xe5\xdf\xd6\x35\xf1\x14\x85\x13\xd2\xdb\xbc\x25\x88\x49\x6c\x57\xee\xbe\x52\x4b\xf2\x07\x2e\xba\x2c\x13\xe9\xc2\x5d\x85\xee\xce\x92\x72\xce\xe3\x36\xc4\x64\x70\xe4\x84\x93\x81\x61\x9c\x54\x32\xcf\xad\x9a\xb3\x93\xd6\x66\x9d\xcf\x09\x04\xa7\x55\x87\xf3\x56\x15\x4f\xd6\xad\xe2\xf6\x22\x1e\x4a\x13\xb8\x49\xa5\xdd\xac\x61\xee\x82\x32\x01\x99\xcd\xb9\x8c\xe6\x95\x9e\xe2\x68\xb0\xea\x2c\x4f\x4e\x1a\xfe\x44\xcc\x5a\x8e\x0b\x69\x75\xa0\x2d\x67\x21\x45\xe6\xa6\xe1\xcc\xa5\x27\x5a\xa3\x39\x2b\xc1\x44\x73\x07\xd7\xa2\x34\xa6\x9c\xcd\xb9\x8a\x7c\x2f\x39\xcc\xd1\xa3\xb8\x2c\x67\x4e\x01\x66\x11\x79\x1a\x67\x2b\xf6\x54\x69\x16\x67\x1a\xbe\x32\xf3\x36\xfb\x1e\x51\x13\xfd\x8c\x7d\x8c\x5c\x13\x38\x89\x3d\x46\x3d\xea\x26\x63\x1f\x07\xb6\x58\xb3\xd8\x8f\xc1\xcb\x55\x8b\xd9\x0c\xec\x6b\xed\x7c\x76\x24\x7e\xa6\x18\xcd\xb6\x25\x2c\x66\x4e\x65\x2f\x21\x06\x91\xa6\xb2\xa7\x92\x64\x25\x10\xeb\x2d\xf9\x4d\xa6\x35\xeb\x3e\xb5\x24\xba\x88\xf5\x98\xf6\x68\xfb\x01\xd6\x1f\x80\xe6\x26\x64\xdb\x82\x3e\xd6\xe3\xec\x34\xd8\xd2\x74\x89\x79\x9a\x3a\x4d\x7d\x86\x79\x90\xda\x2f\x72\x63\x0e\xd1\xa2\xa0\xd7\xcc\x51\xda\x3f\xe2\x6c\xe6\x51\xfa\x11\x44\x0b\xf3\x14\x50\x97\x81\x64\x5e\x66\xc8\xa2\x5e\x32\x7f\x82\xe4\xed\x10\x6b\x0b\x54\xe2\x26\x63\xa1\x60\x9c\xcd\x42\x56\x3f\x53\x5d\xe1\x0b\x73\x60\xb5\xaa\x00\x46\xc0\x47\x05\x13\x70\x1a\xfc\x14\x3c\x0d\x93\x99\xf3\x09\x0b\x61\x23\x33\xa4\xf8\x34\x3c\xc8\x54\xa7\x8f\xc0\xb7\x99\x4f\xa3\x68\xcc\x15\xac\x4d\xdb\x13\x98\xd9\x2c\x92\x5b\x3d\xb3\x91\x35\x6c\x43\x62\xbe\x62\xcf\x32\xcc\x05\xb3\xc4\x9f\x14\x21\xa0\x50\x6c\xe0\xbd\x04\x07\xc4\x4b\x80\x09\xf0\x3f\x11\x09\x87\x83\x6c\x84\x17\x8a\x8a\xa1\x2c\xe1\xd6\x34\x11\xa4\x17\x48\x76\xd7\x40\xdf\xf9\x27\x03\x4e\xc1\x39\xbc\xb7\x6e\x5c\x78\x0f\x6f\x92\xcd\x18\x73\x23\x77\x41\xf9\x01\xc6\x22\xfd\x88\x6c\x03\xc3\x57\x17\xc7\x9d\xcc\xc0\x6a\xaf\xd3\x3d\x19\xc3\x9a\x54\xcc\x0b\x70\xaa\xea\x5c\xe1\x4c\x30\x45\xe9\x96\x8a\x05\xfb\xe5\xb4\xc8\x7d\xd0\x3a\xa9\x30\xc0\x03\x32\x8a\x51\x6e\x31\xf0\x4c\xa1\x87\xcd\x3b\x58\xc8\x7b\xac\x5d\x05\x4c\xaa\x6f\x92\x88\x80\xf8\xda\x36\x36\x12\xa8\xab\x06\xa8\x07\x81\xff\x55\xad\x47\x57\x33\xc2\x2a\xf6\xe4\x3f\x67\xb4\x1b\x2c\x53\x98\xe0\xb2\xf2\xe8\x88\x4f\xa0\x5c\x6d\xef\x6f\x84\xe6\xc9\xc7\xdc\xe6\x40\x42\xc9\xa6\x75\x8b\xe1\xc9\x02\x8a\xc6\x8b\xbe\xbf\x35\x54\x7c\x02\x98\xd2\xf4\x93\x75\x08\x88\x6d\xa0\x51\x1d\x81\x9a\xda\x13\xe8\x15\xc0\x57\xf3\xbb\x7c\x02\x23\xcd\x74\x2b\xc5\x9a\x71\xd2\xc0\x8f\x68\x04\x03\xb5\x47\xfd\x33\xc1\x03\xca\x41\xd7\xcf\x90\xaf\x14\x5e\xe7\x0c\xf5\x08\x97\xab\x41\xba\xb4\xcb\x4e\xbc\x81\x7e\xa8\xbd\x92\xb5\x1d\x98\xda\x72\x85\x32\x08\xec\x6e\xbc\x8a\x1a\x06\xcc\x75\x35\xf9\x36\xc0\x9f\x6a\x9b\xe4\x27\x8c\x32\x53\x52\x04\x91\x71\x5f\x3f\xd3\x7f\x1b\x98\xa6\xce\x71\xfd\x0a\x5e\x96\xc9\xd6\x45\x41\x41\x42\x40\xfe\x59\xb5\x3c\xff\x33\x7f\xaf\xe2\x7a\xe1\x47\xf0\xa5\xbc\xaf\xf8\x1d\x91\x20\xeb\x28\xf9\x57\x4a\x97\xd6\x97\x6d\xcf\x59\x24\x11\xa1\x2b\x12\xde\x88\x11\x38\x87\xd0\x3c\x51\x20\xe1\xca\xb6\x69\xc2\xe5\xe4\x26\xe7\x5c\xfe\x5b\xda\x3d\xab\x00\xde\x79\x30\x54\x8e\x54\xda\x17\x1d\xe3\xef\x54\x4c\x43\x68\x40\xb6\xec\x5b\x69\x3a\x71\xb1\x6c\x7a\xd9\x96\x52\x1b\xe9\x22\xb4\x7b\xf6\x71\xc9\x74\x6c\x5c\x42\xa7\xe8\x0b\xbe\x3a\x74\xab\xf0\x21\x69\xaa\xcf\x27\xc1\x59\x8a\xcc\x39\x87\x3f\x4c\x2f\xb5\x4a\xe3\x35\x80\xb0\xec\x8a\xc2\xab\x64\x2f\x6f\xaf\x7c\x2b\x32\x0b\x5c\x20\x0b\x28\xfb\x1f\xa1\x59\x9a\x8f\x16\x97\x1c\x94\x80\xd8\xe8\x6c\x82\x18\xc6\x6f\x4d\x40\x88\x00\x62\x48\xe8\x3c\x21\x40\x2e\xf1\x79\x28\xa0\x50\x9b\x9d\x8b\xf9\x68\x60\xb3\x15\x83\x57\x02\xbe\x96\x22\x65\x27\x31\x27\xb9\x3c\xe9\x75\xec\x4f\xe0\xa7\x64\x02\xbf\x16\x3f\x2c\x71\x24\xe4\x23\x3e\x8a\x13\x89\x87\xb3\x0e\x8a\x50\xe4\xc0\xf8\xeb\x42\x98\x72\x2f\xa4\x53\xa0\xa7\x11\x7d\xf6\xf3\x87\x80\xf5\xce\x30\x6f\x3f\xb8\xc8\xea\x0a\xf7\x34\x6c\x21\x09\x92\xc6\x93\x77\x72\xf2\x25\x44\xca\x62\xfa\x4d\x71\x05\xe5\x1c\x6e\x48\x74\x8f\x5a\x87\x58\x26\xb2\xa6\xc9\x33\xff\x0a\x77\xd3\x35\xf1\x5b\x05\x04\xa0\x2b\x24\x82\xdf\xcb\x38\xe6\x53\xce\x7b\x03\xbe\x74\x96\xf3\x66\xc3\x4e\x6b\xed\xb8\x0e\x4c\x48\xbc\x46\x32\x17\x8c\x61\xfb\x8b\x6d\x41\x3d\xed\x98\x28\x0a\xbc\x80\x3d\x2c\x6c\x80\x9c\x8b\x3d\x05\x3f\xa0\xf2\xcc\x5d\x02\x5f\x78\x4d\x9c\x86\x8f\x83\xeb\x77\xbd\xe5\x9d\x63\x6e\xf1\xc1\xf3\xd6\x32\xc7\x9d\x9b\xb9\x61\xac\xdd\x6b\xf1\x1c\x90\xf5\x54\xb8\x46\x64\x27\x38\xcd\x44\x08\x0b\x05\x52\xea\x22\xc1\xb0\x60\x13\xc6\x47\x60\xc3\xbf\x58\xf8\x9a\x2f\xe5\xd3\x33\xac\x79\xcf\xf8\xf6\xb1\x5d\x3c\x2f\xde\xd9\x5d\xc1\xdc\x76\x5e\x8e\xcf\x2a\xee\x32\xee\x43\xe7\x46\x4e\x1a\x37\x79\xed\x5d\xb6\x8e\x73\x86\x1f\x21\x18\xd5\x6c\x82\x46\x05\x0b\xd5\x6e\x64\x2e\x1f\x52\xcd\x42\xdd\xe0\x7d\x54\x3c\x2f\xe8\xe0\x61\xe5\xc3\xe9\x0b\xb8\x0f\x65\xb4\x98\xf3\xdc\x04\xe9\xba\xe0\x2a\xce\x39\x71\xad\x77\x0f\x27\x48\xf8\xdd\x59\xca\xae\x12\x04\x58\x2f\x67\x3d\xe5\xe1\xb9\xed\xfc\xe3\xe6\x2d\xa0\x07\xdf\xad\x52\x49\x5a\xcf\xab\xab\xd8\x5f\xa6\xe4\x39\x18\xae\xe6\x2b\xb9\xed\xba\xcb\x69\x4b\xb9\xae\xda\xb6\x98\x29\x9c\x3e\x75\x72\xd0\x7b\x8e\x87\xa2\xdf\x7b\x03\xbb\x5b\x7a\xcd\x39\x9e\x3d\x5f\xf4\xcc\xda\x8d\x95\xc1\xbf\xc1\x79\xc7\x47\xd7\xc7\x33\xa4\xbc\xab\xb5\xc5\x44\x25\x2f\xb2\x3a\xac\x6c\x32\xf7\x52\xd5\x8c\xfc\x95\xdc\xf8\x8a\xc6\xd4\x2e\xce\x5d\xc3\x82\xe8\x5e\x4e\x41\x79\x50\x50\x1b\xfb\x89\x7a\x89\xd7\x17\x76\x86\xbc\xda\x39\x80\xb5\x5f\xb2\xc4\x7a\x27\x6b\xae\x20\x8f\x13\xc7\x5f\xd7\xbc\x0f\xf8\xc7\xe3\x35\x56\x12\x97\x73\x27\xea\xb7\x23\xcd\x5c\x72\xcd\x48\xde\x41\xce\x67\xf3\xa4\xd4\x22\x0e\x64\x9a\x1b\x4d\xe7\x4c\xd5\x5f\x0d\x82\xd9\xb0\xd6\xce\xeb\x06\xeb\x7f\x4a\x5b\xe7\x9d\xac\x58\xe9\x02\xeb\x0c\x66\xb5\x60\x3f\x48\xa9\xfc\x5c\xe0\x47\xf6\x30\xad\x29\xf2\x47\x53\x8c\xbb\x10\x3e\x45\xbe\x7a\x42\x69\x58\xa6\xbe\x5c\x55\x26\x4c\xa8\xd7\x48\xd0\x1f\x22\x16\xaa\x50\x38\xf9\xf6\x1d\x8a\xad\xc4\x08\xf7\x83\xd2\xd7\x94\xcd\x4e\xbe\x62\x2e\x9d\x6a\x81\x15\x2e\x00\x5f\x81\xb3\x2b\x03\x8a\xce\x93\xee\x57\xe4\x21\x2a\xd1\xee\x06\x59\x69\x51\xe1\x2f\xdd\x85\xb2\xed\x99\x59\xe5\x93\xd1\x21\x09\x78\xcd\x2c\x2c\x3d\xfc\x95\xf2\x1b\xfe\xde\xf6\x4d\xf2\xab\xa4\x24\xf7\x43\xd2\x4a\xca\x47\xa7\x78\xf1\x4e\xfa\x73\x0b\x9d\xe0\x36\x34\x95\xa1\x35\x89\x4a\x44\x24\xc8\xd8\x8a\xb4\x43\x3d\xd3\x5f\x2a\xdb\x5b\x38\xa0\x73\x45\xe7\x65\xae\xd1\x62\xb0\x9e\x09\xdb\xd4\x2c\xbc\x67\xf8\x01\x25\x40\xcc\xdd\xbe\x52\x5e\x4a\xd6\xbb\x1f\x94\x06\x52\x5f\x3b\x15\x89\x3e\x03\x6a\x8b\x71\x81\x11\x4a\x03\x38\x15\xab\x31\x53\x88\x1a\x43\x26\x36\x12\xb5\x46\xd7\x82\x13\x14\x4e\xd3\xfe\xc5\xdf\xcd\x90\x68\x42\x89\x49\xf1\x07\x54\x48\xd2\xa7\xf0\x6c\x05\x85\xd2\x1f\x70\x4f\x06\xd3\x0a\xdc\xf7\x4a\xa8\x80\xa7\x93\x54\xb4\x1d\xdc\x65\xb9\x84\xff\x05\xc6\xd0\x9f\x19\xba\x89\x37\x08\x27\x75\xff\x48\x17\xca\x7c\xcb\x63\xc8\xed\x05\x01\x9a\x51\x4a\x4d\xfa\x7d\xf5\x62\x6a\x5f\xfc\x26\x65\x28\xed\x61\xd8\x4b\x79\x11\xe0\x14\x50\x2f\x55\x30\xd0\xee\x43\xe2\x5a\x70\xbf\x53\xaf\x10\x80\x3d\x2c\x91\xfc\x40\xe6\x38\x6d\x9f\x9e\x02\xec\xc2\x1f\x2b\x1f\x07\x7a\x91\xf1\xda\x59\x8c\x45\xf9\x48\xb5\x90\x51\x9d\xbe\x5e\xf9\x1a\xdc\x1e\xa7\x51\xb8\x80\x13\x61\x28\x59\x26\xb4\x3f\x20\x4b\x52\x07\x8b\xdd\x3b\x44\xe7\x99\x49\x4e\x37\x05\x43\xac\xf5\x96\x97\x78\x4c\xf6\x3c\xaa\x6d\xb9\x82\x7b\x0f\x97\xa7\xf9\xc3\x3d\x5a\xba\x4e\x4d\xe0\x9a\xf3\x72\x95\x3f\xb9\xec\xb4\x60\x05\x89\x8b\x8f\xbd\x28\xbb\xcc\x2d\x0e\xbd\x21\x5d\xc5\xcd\xf0\xff\x23\xc6\x73\x77\xba\x8b\x85\xbd\xdc\x55\x4e\xbf\xf9\xdd\x9c\x97\x56\xa1\x5c\x25\xe7\x08\xb9\x5f\xbb\x41\x61\x85\x5d\xae\x6e\x97\xa7\x23\xee\xa8\x02\x64\x40\x6e\xb4\xe2\xa4\xb4\x27\x35\x49\x1e\x23\xb9\x15\x3b\x45\x7a\x44\xfc\x2d\x74\x8b\xc4\x56\x3c\xdd\x5f\x21\x12\x0a\x3f\xba\x27\x09\x2e\x0b\x0e\xac\x9f\xc1\x7b\xc4\x07\xac\x74\x9c\x8b\x3c\x57\x92\x56\xb3\xc5\x30\x81\x7e\xad\xda\xa3\x6f\x2c\xbe\xa2\xdc\xa5\x73\xc9\x89\x91\x3f\xd1\xb6\xa7\x30\x64\x44\xcd\xd2\x98\x30\xc9\x6f\x55\x5e\x48\x95\x98\xa8\x90\xfa\x2f\x12\xde\x95\xa1\xb6\x7c\x15\x38\x4b\x2c\x9c\xde\xf3\x42\x84\xc7\xad\xc6\x38\x3b\xf9\xb9\xc4\x1f\xea\xee\x2a\x35\xba\x50\x15\x62\xfa\x5e\x9c\xa8\x78\x5c\xb1\x2d\xfb\xa1\x9c\x69\x28\x49\xb1\x94\x2d\xd2\x01\xd1\xdf\x25\x75\xda\xa2\x90\x6c\xf1\x5a\xb5\x9d\xdf\x7d\x21\x4f\xc1\xdf\x72\x91\x7f\x59\xda\xe9\xf4\x88\xfb\x49\x74\xd6\x6a\x90\xfd\x85\x7f\x89\x48\x57\xbb\xd7\xf2\x50\xff\x53\xde\xae\xde\x53\xf4\x5e\xc1\xac\x3a\x98\x2d\x95\xaf\x34\x75\x25\xdf\x92\x36\x1b\x29\xd1\x47\x24\x3e\xfa\x79\x21\xde\xa2\x71\x2d\xca\xef\x90\x70\xb5\x2a\x7d\xcb\x7e\x7e\xbe\x7c\x8a\xd3\x6b\x2e\x57\xdc\x6d\x75\x97\xcd\x17\xb8\x96\x55\xb5\x86\x17\x3c\x29\x0a\x6d\xaa\x29\x3a\x93\xad\xa8\xff\x8a\x18\x4d\x21\xd4\x26\x96\x1e\x8b\x9d\x6d\x56\xa3\x66\x86\x11\x4d\x1a\x0c\x14\x58\x6c\x28\xc6\x6f\xf0\x02\xca\x97\x91\xe6\xba\x4c\x53\x99\xa8\xcb\xec\x20\xd9\x73\x20\x66\xf5\x0b\xf1\x12\xa8\xaf\xac\xa0\xc5\x5c\xec\x56\xb4\xb2\xf1\x23\xe2\x7d\x36\xaa\x3e\xb2\xb4\x3f\x25\xb6\x66\xb4\x4c\x1a\xf3\xd6\x3c\x15\x5d\x11\x96\x6d\x5a\x88\xbd\x13\x98\xa6\x7f\x4f\x88\xf5\x02\xb4\x5d\xa4\x0f\x2e\x4b\x55\x3b\xa9\x7d\x76\x15\x32\x33\x50\xbd\x66\xa1\xe8\x1a\xd4\x5b\xb6\xb6\xf9\x43\x49\x73\xe1\xc3\xc6\x60\xe4\xf6\x6c\xef\xba\xea\xb2\x2b\x29\x0e\x35\x6b\xd0\x8c\x98\x93\x55\x78\x6c\x46\xd8\x8e\x0a\x01\x1e\x13\x18\xa2\xc7\x11\xbb\xbc\x68\x5a\x3f\xca\x5c\x97\x75\xca\xfb\x34\x91\xdd\x90\x2c\x84\xe1\xbc\x66\x9b\x48\x04\xfd\x0f\x99\xd6\x84\x47\x8f\x15\x06\xd6\xbf\xc6\x7c\xca\x1a\xab\x2d\xc2\xb9\x24\x8f\x9a\xff\xc3\xeb\x63\xb0\x95\x11\x44\xc7\xd0\x9f\x46\x34\xe9\x41\xe0\x72\x5d\x31\x65\xcc\xab\x48\x13\x4a\x33\xb9\xf8\x28\xa7\x02\x46\xbb\xb7\x52\x26\x38\xb0\x46\x23\xbc\x06\x3f\x2b\xfd\xd8\x38\x93\x30\x51\x70\xa4\xae\x9c\xf8\x27\xcb\xbe\x66\x15\xe9\x43\xf2\xd6\xaa\x36\xca\xa4\x98\x29\xa6\xd5\x54\x8f\xd0\x46\x43\x04\x8d\xbb\xfd\x66\x79\x2c\xfd\x8d\x57\xbc\x3a\x92\x51\xec\x12\xa5\xb0\x00\x5f\xd9\x3b\x4a\x5a\x61\x70\xcd\x17\xe1\x3c\x96\x45\x69\x7a\xfd\x71\xda\xd9\x02\xab\xda\x04\x7a\x6e\xa6\xd8\x7c\x87\xfe\x5f\x52\x67\x25\x0d\xa8\x88\x56\x1a\xbf\x30\x10\xa1\x21\x7a\x37\x30\x64\x7b\xb9\x76\x07\xe4\xe9\xe5\xa5\x4a\x80\x03\x5c\xb2\xe4\x3e\xcc\x10\xfb\x02\xf1\x25\x56\x84\x45\x81\x60\x27\x3b\x19\xf1\xbe\x6e\x11\x9b\x98\xbf\xb4\xba\x8e\x2d\xca\x38\x5e\xe5\xcf\xd6\x24\x4d\xae\xf8\x8f\xdd\x15\x3d\xd9\x40\x64\xdf\x0a\xb9\x56\x7e\x82\x33\x73\x7b\x88\xfa\x13\xc7\xd7\x6b\x95\x72\x21\x87\xec\x42\x92\x4d\xe2\xd4\xda\x77\x88\x86\x39\x07\x2c\x1e\xf1\x7d\x38\x0f\x11\xf3\x6a\xc8\x12\x71\x9e\x9f\xd9\x5d\x32\x27\x63\x9a\xe9\x85\x98\x96\x98\x62\xac\x16\xbd\x8e\x42\xeb\x7d\x45\x05\x21\x39\xda\x06\xe1\xe5\x80\x57\xaa\x37\x42\xcf\xad\x6f\x14\xf3\x05\x72\x17\xaa\x74\x0e\xff\xb8\xfd\x6d\xe1\x0d\xde\xff\x2c\xb7\xf3\x70\xbc\xc5\xc5\x3e\xd5\xbe\x5a\x6c\x6e\x59\xd5\x32\x4d\x74\xba\x57\xc5\x6d\xb5\x45\x42\x9d\xa1\x42\xf9\xf6\xff\x04\xc0\x03\x60\xd4\x0b\x03\x00\xf0\xcc\x97\x39\xa3\xb6\xe6\xb5\xdd\x9a\x6d\xdb\x3b\xdb\xd6\xff\x6c\x63\x77\xb7\xdd\x6c\x65\xe3\xcb\xf6\x72\xbd\xac\x97\xb1\x5e\xb5\x8c\xd7\xf7\x2b\xb8\xd1\x94\x60\xde\x95\x79\xc7\x76\xd4\x44\x48\xd2\x58\x7d\x8d\x53\xd6\x0c\x9a\x0a\xf5\xa4\xd0\x0a\x7d\xa1\x76\xed\xca\xd7\x9a\x40\xf5\x63\x77\x99\xe2\x86\x6a\x01\xfa\x54\xe7\x31\x27\x17\x36\xbd\xbd\xb9\xd9\xb5\xf6\x7e\x2b\xdc\x31\x52\x5e\xea\xf4\xb6\xaf\x2e\x68\x76\x9c\x68\x5c\x9f\x39\x6c\xab\xb0\xce\x48\x82\x59\x8e\x98\xb3\xd6\x18\x8c\x2f\x8d\x09\xa1\xb9\xba\x17\xfa\x09\x2b\xdf\xaa\x2f\x69\x0e\xb8\xdb\x15\x2a\x15\x03\x8d\xec\x2c\x6f\xfb\x07\xba\xbd\xdd\xa3\xb5\xa1\xd6\xd9\xf2\xdc\xb9\xbb\xdc\xb5\xb9\xaf\x79\x6a\x01\xd1\x91\xe9\x48\xce\xd4\x34\xde\xb6\x55\x26\x15\x58\x8a\xad\xa9\x6b\x94\x46\x86\xe9\x6a\x68\x91\x8e\x62\x08\xf2\x9b\xae\xae\xd3\x2a\xdc\x0f\x2a\x16\xaa\x2e\xa0\x12\x37\x3e\x46\xc1\x21\x91\xeb\x3e\x62\x22\xab\xcf\x0d\x7f\xc2\xfd\x55\xea\x35\xf0\x9d\x30\x3f\x2f\xa5\xf7\x2a\xa9\x34\x3d\xad\x0b\x4e\x39\x1d\xff\xa4\x6d\x0f\x9d\x17\x79\xb3\xf9\x11\x0b\x17\x54\x67\xbb\xc6\x15\xfa\x1c\x37\x4b\x81\x75\x2e\x31\xfa\x89\xa2\xaf\x28\xcf\x8d\xe1\x98\x36\xc8\xf2\x75\x99\xb8\xb4\xea\x9d\xc3\x25\xf8\xf7\xa5\xb3\x07\x60\xc4\xe3\x79\xe1\xbd\x99\xe4\x4b\xe9\x31\x9d\xf7\x68\x8b\xe3\x1f\xb7\x25\x31\x4c\x91\xf7\x9a\xd9\xec\xb8\x20\x8a\x8d\xc3\x9b\xe6\xf3\xd0\x1c\x01\xbc\x76\xa9\xd3\x1d\x12\xbd\x45\x7e\xde\x20\xc6\xfd\x04\x7f\x5a\xdb\x44\x10\x55\x3b\x86\x86\x49\x13\x4b\xfe\xed\x3f\x4a\xee\xcd\x5b\xd6\xb3\x85\x2a\x4b\x5f\xd5\x59\x4a\x77\xc6\xdf\x6e\xdd\xc7\xbc\x1b\xf9\xb8\xe9\x3f\x4e\x76\x90\xcc\x36\x9b\x77\xd9\xe7\xb7\xe9\x9a\x80\xe2\xa2\xd4\x91\xc5\x2b\x91\xc0\xfa\x49\xe4\xcb\x60\xcd\x48\x34\xe5\x67\x35\x68\x10\x41\x0b\x2c\xe9\xed\xd3\xd2\x1d\xb9\xb7\xbb\x95\xcc\xc0\xb4\x1f\x1d\x91\xac\x97\xf1\x87\x5b\xd6\x73\x46\x23\x1f\x36\x4d\xe2\x1d\x08\xea\x6f\xf4\x07\xce\xf9\xc6\x9b\x26\x0a\xff\x71\xb9\xaf\xdd\x24\x99\x83\xf4\x59\xab\x66\x7c\x03\x7b\x0c\xdd\x60\x3e\xaa\x3a\x31\xb0\x8c\x75\xbc\x24\xb5\x37\x8f\x7d\x27\xd7\xd8\x55\xc6\x5d\x96\x76\xb8\x7d\x16\x8f\x16\xdf\xe1\xb4\xf2\xff\x89\x7c\x64\xff\x25\xa0\x05\x1d\xb5\x82\x44\xd3\x7c\x45\x46\x2f\x71\xa7\x6b\x86\xe6\x8e\x34\x09\xc1\x1d\x49\xe7\x51\x1a\xcc\x83\x76\xde\xcf\xaa\xa2\xbe\xdb\x7c\x63\xf1\x9d\x9e\x25\x40\x5e\x6e\x4c\x67\xa0\xc0\x2f\x4d\xda\xfa\x56\x38\x37\x9e\xd1\x2c\x10\xcd\x8e\xbc\x6b\xfb\x29\x0e\x0e\xba\x67\xc9\x92\xe4\xf9\x1e\x31\xa4\x4a\x1b\x5c\x77\x6a\xa6\xca\x58\xf0\xc1\x21\x8b\xf4\x7f\xf5\x4f\xfb\x1f\x4a\xcf\x54\x1e\xed\x5d\x2d\xbd\x5a\x0c\xe9\x12\x4b\xff\xe4\xfc\xdd\xde\x25\x4b\x49\x8b\x6e\x01\x64\xca\xf8\xec\x26\x5f\xd9\xc5\xc8\xbb\x8d\x1b\xe4\x01\xc1\x73\x4c\xff\xc9\xd9\x2b\x16\xeb\x97\xcb\x37\xb8\x05\xab\xbe\xc9\x1f\xc3\x27\x0d\x3c\xd0\xd5\xd5\xe7\xf5\x41\xb4\x57\x2b\xd7\x74\x5f\xd0\xa6\x16\xbd\xe8\x5c\xa1\x39\x9f\x43\x6f\xab\xd2\x20\x52\x5f\x38\x73\xd4\xff\xc6\xcf\x77\xcc\x51\x73\x22\x2f\x5a\xbb\x54\xdf\x83\x83\x8d\x3f\x54\x88\x15\xa5\xba\x08\xe5\x16\x37\xa3\x6a\x95\xe2\x1b\x2c\xa9\xbf\xaf\x71\xa4\xce\xd9\x1b\x64\x35\x57\x34\x77\x0d\x59\x70\x45\xf5\x1d\x53\xcc\xb5\xd9\x3f\x5a\x53\x4d\x59\xa9\xaa\xe6\x32\xe3\xca\xb8\x93\xf6\x68\xfd\xbb\xc8\x01\xcb\xa8\xae\x31\x78\xa5\x31\x5c\x3b\x6b\x05\x43\x2b\x52\x73\xdd\x2e\x29\xad\xca\x87\xd0\xfb\xfd\x2b\x9a\xa8\x75\x19\x3d\xc3\x0e\xd7\x8a\xd2\x2e\x4f\xdb\xae\x22\xcf\x76\x69\x23\x22\xfb\x7c\xcb\x01\xeb\xe4\x54\x58\xd3\x6d\xb3\x3d\x6e\xbd\xed\xbc\x69\x6a\xa4\xd3\x82\x30\x24\x05\xfb\x1b\x4e\xea\x72\x56\xe8\xb5\x6e\x9a\x7c\xb7\xef\xca\x58\x55\x2e\x54\xdb\xb7\xb1\xa5\xa7\xf6\x4f\xcf\x4a\xa7\x77\x85\x6b\x67\x73\x93\xa1\xf0\x73\xdb\x47\xfb\x9f\xec\x8d\x2d\xe1\x36\x74\x6a\x7e\x53\x95\x75\x5b\x5c\xaf\xad\xcc\x7c\x27\xb2\xdd\xfc\xc4\xb8\x2b\x38\xc6\x90\xad\x6f\x58\xb1\x4e\x33\xa0\x9d\xe4\xee\xa7\x38\xa3\xea\x86\xb8\x6c\x6b\x45\xbd\xad\x59\xbd\x99\x8f\xe9\x29\xfd\xb9\x21\x1d\x07\xcf\x1f\x5c\x3b\x89\x50\x93\x19\x32\x68\x22\x59\x92\x36\xf4\xee\xa7\x4e\x8c\x7e\xd4\x39\x42\xdf\x14\xde\xd6\x0a\x66\x0d\xae\xfa\xe6\xb8\xcc\x3d\xe8\x1d\x65\x19\x03\xae\x2d\x37\xe8\x6f\x8a\x27\x43\x16\x6d\x7d\x84\x75\xa9\x09\xd8\x74\x0e\xd7\x57\xfa\x61\x7d\x2f\x21\x3a\xbf\x73\x04\x4f\xfc\x95\xb9\x6a\xe0\x07\xf9\x4f\xd2\xc6\x5e\x10\x2d\x2d\xfa\x45\x67\x20\x63\x4f\xf8\x48\xcb\x1b\x36\x39\x60\x9e\x83\xc4\x4b\xf2\xae\xb0\xb4\x09\xe6\x2d\xdf\xa4\xb7\x8a\xc6\x21\x53\xb6\xae\xc2\xd3\x6a\x96\x6e\x72\x23\x5c\x2c\xbd\xbf\xee\x07\x29\x21\xdf\x34\x7c\x86\x3c\x9a\xe9\x36\x80\xa4\x0e\x26\x0d\xf5\x0c\xd0\xf7\x44\xbf\xec\xe8\x67\xfe\x08\xdf\xd1\x42\xe3\xd0\x03\xfc\xec\x3f\x79\xbf\xbd\x99\x96\x28\x81\x61\xf9\x4d\x7d\xb4\x38\x00\x7c\x61\xf3\x26\xca\xc2\xea\x5b\x1b\x76\x52\x7d\x4b\x3b\xd7\x0e\xd3\x92\xf3\x6b\x86\xd4\xf4\xfe\x8c\xf1\xfe\xd5\xcc\xe8\x24\x53\xb7\x98\xf5\x29\xfa\x61\xbb\x81\x73\x3b\xfc\x88\x93\xc8\xfb\x3b\xa0\xd0\x3e\x13\x78\xe1\xbd\xcd\x5c\x2d\xfc\xec\x12\xa1\x23\x49\xe6\x82\x15\x9b\x96\x31\x23\xab\x95\xeb\xb3\x99\xef\x4b\x8b\x47\xea\x59\x07\xf2\x97\x0e\x66\xb2\x2f\x67\x1c\xed\xfd\xc1\x9d\x9b\x44\xec\x2a\xe3\xe1\xa2\xaf\xb4\xe1\xf8\xf7\xc2\xcf\x37\xd7\x0b\xb8\x01\x0c\xdb\x6c\xd1\x12\xef\x71\x13\x41\x3c\xec\x62\xd3\x5a\xa5\xc9\x0d\xc7\x36\x5c\xe1\x55\x56\x4f\x59\x37\x91\x77\xb3\xe4\xe7\xb0\x0b\x1f\x9e\x77\x79\xe0\x2f\xc0\x2b\x43\xdf\x73\x41\x30\x21\x29\xb3\x33\x58\xf0\x36\xfa\x50\x6b\x81\x70\x2c\xfc\x5a\x53\x89\xd8\x3d\xa0\xb9\x71\xa1\x24\xdb\x07\x64\x54\x49\x21\x2e\x6f\x35\xfb\x65\xcc\x06\xd5\x7a\x57\x69\x45\xd5\xee\x91\x2c\x69\x65\x49\xdf\x20\x42\x5a\x9a\xa7\xee\x43\x4a\x55\x19\xa5\xdd\x91\xd2\x2b\x49\x5e\xed\x1b\x64\xde\xd1\xdb\x9c\x2f\x64\xfc\xf0\x31\xfb\x07\xd9\xeb\x80\x3b\x96\xfd\xf2\x22\x1f\x9b\xa1\x58\xde\xe2\x4a\x56\xf7\xca\xaf\x34\x78\xae\x2d\xd5\x5a\xab\x2a\x87\x36\x68\x3e\x96\xe4\xf4\xbf\xd5\x54\xe6\xc5\xf6\x7c\x57\x8f\x65\x2c\xee\xbc\xa5\x76\x26\x7e\x6a\x23\xa9\x63\xa3\x3b\x9b\x4f\xa8\x6e\x86\xff\xb4\xdd\x50\x89\x02\xe7\x9a\xd7\xaa\x66\xfa\xdc\xd5\x43\x95\x80\xeb\x05\xd5\x79\xc5\xc3\x7a\xcc\xc8\x6c\x6b\x79\xe5\x91\x41\xa4\x25\xac\xf8\x5a\xdf\xb0\x79\x56\xee\xd5\xee\x43\xa6\x39\xe9\x87\x3a\xd6\x19\x97\x24\x6e\x6e\x85\x1a\x16\x47\xe3\x9b\xee\xea\x27\x85\xbf\x6a\xfc\xa4\xbd\x16\xe8\x65\xba\xa2\x91\xfb\xce\xd6\x0d\xa8\x3d\xdd\xdc\x54\xe1\xca\x03\xf5\x4b\x87\xd5\xf6\x07\x95\x92\x81\xab\x36\x79\x71\x6f\xdf\xdc\x46\xcf\xdc\xb5\xdd\x01\x96\x47\xe9\x5d\x1d\x4b\xcd\xbd\x89\xcd\x2d\xb7\x4d\x95\xd1\x35\x4d\x38\xc3\xc7\xf0\x97\x8d\x0a\x3d\x22\x30\xcc\x84\xd0\x0e\xfb\xfa\xeb\x52\xd4\x4f\xdc\xe2\x95\x0f\x54\x6e\x75\x17\x87\xa7\x34\xdf\xaa\xcc\x1f\xc8\x6c\x2a\x2b\x16\xf4\x72\xec\x87\x72\xcd\x5d\x66\x5b\x61\xba\xb1\x5d\x68\xbd\x9a\x68\x6c\xc9\xb3\xe4\x47\x57\x3b\x9e\x9a\x06\xc3\x3f\x5b\x7f\x1b\x0e\x06\xe6\x19\xef\xeb\x86\x7d\x0b\xb5\x27\x35\x16\x37\x94\x92\xa6\x82\xef\xfc\x1f\x36\xb0\x21\x68\x5d\x01\xce\x0a\x39\xdb\xa5\xc1\xbf\x81\xd7\xdb\x7c\x89\x54\xd4\x3c\xd5\x12\xf2\x1c\xcc\x7d\x2e\x95\xf2\x37\xbe\x19\x77\x9a\x76\x81\x44\xa9\xf9\xc2\x9c\x44\xed\xce\xfe\xc1\xe6\x32\x5e\x45\xad\xe7\xc5\x71\xb2\x7c\x7a\x05\x39\xfc\xab\x3b\x2e\xa3\x37\x41\x6f\xad\x95\x60\xd7\x20\xfc\x3a\x2f\xe0\xf6\xa1\xc8\x8d\x12\x02\x0c\x73\x57\xa9\x26\xf9\xe0\xe1\x9c\x0f\x94\x19\xc4\x2b\x38\x28\xcd\x83\x02\xa9\xe9\x64\xd0\xe8\x6b\xb2\xb7\xb2\xfe\xb0\xfc\xa2\x14\xdc\xdb\x5c\x6f\x9f\x26\xc1\x44\xa0\x68\xfb\x3d\x54\x0c\x72\xdd\xc8\x30\xfa\x01\x7a\xb8\x73\x36\xd6\x80\x1d\xb4\x5e\xc2\x97\xe2\x2f\x2a\xde\x11\x23\x49\x7f\x71\xe8\xe4\x68\x4a\x14\xf6\x13\x15\x47\xe3\xd5\xa4\xd3\xaf\x33\xbe\x64\x13\x59\x12\xb6\x21\x0a\xce\xa5\xf1\x56\xfa\xd8\x81\x4d\xc0\xbf\x5b\xbf\xc3\xf5\x44\xe7\xd0\x5b\x24\x92\x3c\xa3\x5d\x86\xae\xa6\x40\x2d\x2c\x6c\x19\xf5\x9d\xfc\x28\x1e\x47\x6f\x62\xd3\x88\x5d\xcc\x70\xac\x1f\x65\x02\xeb\x61\x75\x1b\xad\x93\xb3\x35\xeb\x2d\x93\xcd\x33\x46\xf9\x71\xec\x00\xc5\xa7\x9f\xff\x49\x48\xd9\xfc\x15\x3a\x85\xb9\x75\x30\x19\x3e\x8f\x65\x6f\xfd\x86\x0c\x65\xc3\xcc\xcb\xd1\x0d\x9c\x5a\x99\x13\x3b\xcc\x45\xb3\xe8\x84\xd9\x3c\x02\xa6\x8a\xd4\xcd\x07\xaa\x3e\x53\xb1\x40\x6f\x16\xc0\x20\x08\xce\x80\xbe\xb2\xb7\x0a\x9f\xfb\x5c\xe1\x87\x8b\x17\x6c\x8a\x6d\xe8\x12\xe6\xf4\x1b\x20\xf7\x84\xbd\x2d\x0c\x78\x98\xf0\x8c\xf1\x10\xd2\x28\x5a\x21\x25\x61\xa6\x8a\xcc\x4c\x26\xce\x29\xfa\x17\xad\x27\x56\x8a\x2b\xab\xaa\x29\x59\xe2\xe3\x59\x7f\xd1\x69\x92\x55\xa0\x87\xac\x1b\x12\x92\xef\x04\x9e\x50\xf2\xbf\xf5\x9a\xda\x77\xba\xf3\xbd\x1e\x0d\x29\xba\xd5\xcd\xab\x20\xbd\x5a\x83\x7e\x23\x3c\x42\x33\x26\x6e\x41\x3e\xd2\x54\xd1\xff\xc1\xac\x55\x6f\x40\x65\xe3\xbb\x55\xe3\x95\x48\xd2\x19\x55\x50\x26\x93\x16\xa8\xcc\x00\xed\x64\x8e\x2a\x62\x7d\xab\xb9\xc3\x72\xef\xb5\x0b\xaa\xd1\x2d\xa1\x5d\x57\xea\x66\x37\xeb\x1d\xf3\x1b\x86\x1c\xef\xb5\x27\xa0\x50\x7b\x99\xf0\x19\x22\xa6\x71\x2d\x8d\x84\x0e\xb1\x3c\x40\x2e\xc6\x95\x99\xc6\x2b\xf8\xc4\x0d\x86\x9b\x19\xb7\xa9\x89\x3a\x35\x48\xca\x5c\xaa\x99\xea\x6b\xe2\x7a\x2b\x31\xc3\xe0\xca\x03\x43\xb3\x3a\x7d\x6a\xa4\xfd\xbd\x36\x64\x7d\x4e\xaf\xbb\x26\x1c\xb2\xac\x4b\x27\xa0\xc0\x67\xb6\xdf\xa0\xfa\xa0\xdc\x5b\xc6\xe0\x7f\xb0\xf0\xa6\x73\xe5\x9b\x09\x0f\x6c\xb0\x0c\x14\xc5\x61\x1e\x04\xd5\x33\x5a\xf5\x3d\xbe\x47\x38\x67\xd5\xd0\x21\x67\x65\xf2\x06\x69\x07\xb3\xfa\xc7\xda\x6d\x8d\x47\xea\x8e\x0d\x1d\x56\x3b\xc1\xce\xfe\x83\xc0\x23\x98\xa5\xc7\x46\x19\x42\xae\xed\x5c\x01\x6f\xc3\x7c\x6e\x25\x97\x13\x08\x92\x26\x58\x46\x3a\x25\xc5\xfa\x11\x54\xcf\x28\x33\x06\xf9\x3e\xe3\xd8\x35\xae\x43\xb3\x2b\xfe\xd9\x36\xb1\xfd\x6b\xb5\x63\xd3\x93\xc6\xea\xba\xb2\xf5\xad\xea\x48\xb0\xef\x48\x02\xa0\x84\x2d\x1f\x18\xa6\xd4\x22\x23\x7b\x8e\xc3\x21\x18\x45\x87\xa6\x3c\x8f\xb0\xc0\xf9\x24\x23\x9d\x7c\xcb\x76\x19\xc4\xa5\x7f\x33\x55\xae\xf0\xe1\x64\x6b\xa4\x5b\x2d\xf8\xce\x86\xe9\x43\xad\x84\x93\x90\x2d\xed\x2b\x88\x5f\xe1\x89\x16\x17\x72\x16\xf2\xab\x1c\x4f\xd9\x82\x19\x65\xbb\xd3\xb2\xf1\x26\xcc\x4d\xc6\x74\x12\xad\x1a\xc9\xfc\x45\x1d\xc9\xba\xc0\x09\x61\xfc\x89\x72\xe1\xad\xe5\x00\x3e\xfd\x02\x0a\xe0\xbb\x65\x3b\xce\x07\xda\x3b\x78\x05\xcf\x84\x7f\x69\x63\x11\x4e\xa1\x92\xcd\x02\x52\x3c\x66\x87\xec\x26\xf9\x0c\x3e\x99\xd5\x4f\x15\x13\xf7\x61\xa8\xf4\x06\x4a\x69\xf5\x5f\x4c\x32\x7d\x4d\x96\x9d\xbd\x87\x15\x0d\xfa\xcc\x2b\xe2\x16\xfa\xb4\x09\x82\x01\xe7\xe6\x73\x98\x8d\x48\xf0\xe0\x44\xdc\x0a\x34\xaa\x75\x2f\xbe\x05\x8b\x33\x5d\x26\x86\xe3\xdb\x64\xd9\xa4\x87\xc4\x07\x2c\x5f\xca\x16\xca\x7c\xcc\x0c\xda\x7a\x1a\xbc\x6a\x37\xe3\x06\x63\x2c\xab\x82\x1d\xcf\x6e\x06\xdd\xe6\xbe\xe0\x15\xf9\xb4\x00\xf7\x04\xa0\x8d\x4f\x51\xde\x44\xdf\xfe\x0c\xf4\x11\xd2\x40\x4b\x30\x56\x4c\x99\x68\xe4\xe0\x53\xa8\x6d\x52\x37\xa2\x07\x3d\x8f\xb9\x92\xec\xc9\xf8\x88\x8e\xa7\xe6\xb1\xb6\x57\x2d\xa2\x0f\x70\x5a\x32\xef\xb2\xa2\x79\x46\xd0\x5a\xee\x3c\xc0\xe4\xb3\x15\x08\x14\x6e\xd8\x30\x11\xde\xc5\x5c\xda\xdb\x85\xe4\xb1\x16\x34\xaf\x43\x23\x59\x1f\x0d\x5e\xd8\x0a\xf6\xb8\xf8\x0b\x1e\xc1\x9d\xc9\x08\x24\xda\x78\x1e\x28\x2a\xf9\x0d\x3f\xb5\x92\x4f\x63\x02\xa2\x4c\x22\x33\x42\xb0\x1f\xa4\xe2\xac\x16\xfe\xf2\x79\xc2\xc7\x8b\xf3\xd6\x45\x41\xab\x05\x83\xdd\xef\xe1\x35\xc2\xb9\x4d\xab\x90\x74\x61\xae\xee\x1c\xda\x24\xdc\x20\xba\x82\x3d\x29\xf2\xa4\x87\x13\xbc\x44\x36\xe4\x10\x69\x50\x3c\xab\xe2\x11\xb5\x52\x6c\xcb\x9c\xcf\x88\x93\xcc\x07\xe1\xd8\x0d\x12\x9e\xaf\x27\x6f\x9b\xe4\xf5\xf0\xbe\x06\xab\xf6\x66\x67\x27\x64\x8f\xb6\xde\x36\x0e\xfb\x57\x73\x45\x73\x1e\x99\xa0\x49\x13\xfe\x85\x5e\xab\xde\x4b\xdd\x84\x8b\x55\xfb\x21\xa8\x84\x71\x95\xb6\xfc\x2b\xf9\xae\xf2\x6e\x86\x84\xf6\x45\xb9\x08\x54\xc9\x2a\x52\xac\xf6\x95\x73\x6f\xc9\xd3\x06\x93\xea\x40\xcd\xbf\xda\xe1\x0d\xce\x26\xaa\xf5\x3d\xe4\x97\xfd\x9b\xea\x13\x9c\x6e\x23\x03\x78\xd4\x14\xeb\x2d\x4a\x06\xe6\x88\x25\x08\x9e\x83\x5f\x67\x02\x97\x2f\x23\x1d\x31\x20\xd2\xc7\x68\xb3\x74\x6b\x40\x2b\x98\x4d\xea\x7f\x7c\x0f\x70\x0b\x95\x8c\x7e\x5c\x4d\xf3\x80\xb6\xb5\xb9\x7e\x79\x5f\xb6\x25\x0e\x3c\xd0\xfd\x4a\x89\x80\x85\x76\x92\x79\xbf\x10\x77\xdb\xae\x91\xa7\xa0\x77\xb5\xfc\x05\x4b\xc2\x1d\x6c\xfa\xab\xac\x8a\xf8\xa5\xf1\x54\xba\x90\x8a\x30\x47\x82\x26\x33\xe7\xe9\x11\xbe\xe3\x9c\x7f\xd5\x75\x7d\x03\x35\xcb\xd6\x3d\x69\x79\x5c\xd7\x3c\x92\x6c\xb6\x81\x7d\x06\x99\x8a\xd3\xd0\x2d\x7d\x06\x1e\x03\x01\xef\xe6\x93\xcc\xe8\xf4\x8e\x30\xe8\x5d\x5c\x79\x4b\x67\xd9\x42\xa2\xd3\xb1\x2b\x1d\x4c\x9d\x65\x65\x82\xa6\x32\x4e\x19\x1e\xaf\x70\xe5\xec\xd2\xcc\xed\x5b\x5a\xbd\x77\x4b\x45\x0b\xb2\x2e\x6c\x23\xc4\xec\xd9\xb0\x75\x5d\x8c\x02\x0e\x4d\x1c\xfa\xc2\x73\x85\xbf\xed\x97\x90\x32\x50\x17\xbb\x0f\x43\x07\xb1\x8f\xdb\xd7\x97\x7e\x22\x06\x38\xc3\xd2\xeb\x29\x83\xb6\x6c\x90\x37\x83\x60\x9a\xb2\xa2\x9a\x03\xd6\x50\x36\xae\x21\x85\xd6\x3f\xef\xdb\x4e\xf6\x86\x38\x9c\x26\x4a\x18\xdc\xd5\x70\x9f\x9a\x8d\xbc\x27\x51\xd0\x34\x98\x1d\x8c\x46\xfa\x3b\x3c\x1f\xb5\x91\x29\x21\xa1\x2a\xed\xec\x18\x6a\x4f\x26\x92\xbb\x8a\x39\x01\x94\xc9\x87\x73\xec\x3e\x28\xc1\x43\xa0\x6a\x03\x86\xb0\x0b\x4a\xe8\x1d\x27\xde\x80\x9f\x6a\x7e\x46\xfa\x8d\x9a\x63\xc8\xa2\xa4\x60\xf4\xe2\x2f\xd4\x21\xfc\x72\xc6\x32\x7a\x10\xb1\x15\x95\xc3\xb8\x49\x89\xaf\x4c\x65\x6d\xa0\xaf\xcc\x0c\xe7\xec\x66\x45\x80\x56\xf2\x67\x72\xa1\x3e\xf5\x82\x7e\xe0\xd8\x7a\x03\x3e\x0d\x39\xaf\x37\x90\x60\x46\x7b\x34\x83\x88\x17\xb0\x7e\xfa\x5e\x72\x1c\x1e\x2a\x46\x53\x8e\x12\x87\xe9\x6d\x34\x04\xf9\x31\xf2\x21\x23\x90\x96\x58\x31\xc6\x5a\xc6\xb8\x9e\xf1\x89\x93\xc8\x36\x80\xa6\xf3\x46\x78\x75\x3e\x60\x41\xb5\xa0\x61\x6d\x0f\xe6\x36\x61\x53\x37\x0e\x97\x49\x4a\x70\xf4\xe1\x2f\x91\x7b\x74\xe9\xc4\x3a\x6a\xb2\x28\x91\x3c\x83\xf6\x99\xd6\x45\xb9\xc5\x58\x87\x5c\x48\xbb\xc4\xe2\x55\x94\x33\xde\x72\x28\x19\x1a\x76\x32\x8f\x17\xf9\x84\x7b\x1d\xb0\xfb\xc8\x80\x21\xe1\xa5\xe1\x7b\xa8\x1a\x86\xa0\xf3\x2c\x66\x1a\xd3\x64\x5f\x89\x3d\xc1\x92\x6a\x3e\xe1\xb9\x6c\x8d\xd0\x9d\x58\xc1\x19\xa2\x0e\x93\x4b\xb9\xa7\x10\xf9\x54\x0e\xef\x5b\xf9\x41\xfa\x61\x20\x37\x63\x05\x2b\x51\xd0\x1d\x79\x86\xf3\x55\xf8\xdd\x67\x1f\xff\xa5\x18\x3b\x34\x11\x01\x02\x7e\x77\xf8\x22\xbf\x0b\xf8\x8d\x23\xe8\x47\x82\xa3\xea\x01\xec\x5e\x61\x20\xf0\x0b\x7f\x40\x38\x44\xd9\x42\x7c\x22\x0a\x84\x2b\x28\x11\xa2\x1d\xe5\xc1\xb4\x41\x71\x49\xfa\x15\x66\x8e\xf8\x45\xe4\x1e\xce\x0a\x09\xd5\xe7\x1b\x3f\x52\x3a\xb9\xff\x20\xb4\x5a\xf3\xa0\xf5\x15\xbc\x5e\x23\xb6\xe8\x91\x24\xcd\x7c\xe5\x6e\x34\x5d\x6d\xe2\x67\x63\x47\xd4\x8b\xc8\xf1\x84\xc9\xaa\x66\x58\x35\x49\xab\x9a\x5b\x56\x40\x5d\xad\x14\xa6\xe7\x30\x66\x28\xae\x46\x0e\xb2\x97\x29\x16\xfb\x22\x79\xd5\xf2\xa2\xde\x78\x70\x50\xd3\x49\xe7\x7e\x68\x81\xa3\xd0\xd4\x06\x57\xd8\xbe\xc9\xdf\x22\x37\x37\x8a\xb9\x9b\x31\x33\x2c\xff\x11\xef\xe1\x1a\xcd\x44\x68\x3c\x31\xcd\xb8\xaf\x94\x49\x59\xae\x7f\x98\xb6\x9f\xee\xa1\xbd\x19\x29\x62\x81\xd5\x5b\x7d\xfb\xb8\xa7\x94\xe4\xee\xb4\xfa\xd6\xbe\x5f\x4d\x7f\x83\x1f\xf4\x3c\x31\xdc\x86\x45\x74\x6d\x92\x41\x11\xf4\x8e\x2c\x4e\x31\xea\x59\xeb\x69\xc2\x5a\xac\xc1\xe9\x0d\x89\x27\xd4\x3b\x32\x4b\x76\x93\x4b\x1b\xbd\xd2\xf2\x69\x1c\xd3\x8e\xc8\x3a\xe6\xdf\xfa\xc5\xbe\x37\xb8\x28\x75\x5a\x97\xa4\xde\x65\x6d\x4a\x93\x3b\x18\x3a\x74\xd4\x10\x04\xdd\x36\xe0\x2e\x3d\x09\xff\xdc\x5b\xc0\x3e\x83\xa2\x74\xd5\x10\xa2\xb0\x2e\xed\xe1\xe0\x7b\xf8\x8f\xce\x13\x25\x6c\xd2\x07\xc7\x84\xb4\x60\x9a\xa7\xe5\x79\x24\x98\x69\x32\x18\x7d\x7f\x71\x57\xaa\xc7\x3b\xdf\xd7\xed\xdf\xd4\xe1\x68\x69\xf8\xba\x7e\x54\xbf\x19\x9a\x31\x32\x2a\xad\x87\xab\x07\x07\xd9\x4c\xe4\xf7\xbe\x42\xfc\x18\x66\xb8\x6b\x3b\x78\x18\x2f\x6f\x3b\x55\x52\x4b\x52\x35\xd3\xd2\x02\xa8\x7b\x1a\x77\x44\x02\xcc\x40\xe3\xfa\x15\xb1\x9c\x33\x9a\xf2\x01\x1c\xbd\xbe\x7e\xb4\x4d\xc0\x98\x01\x21\x5a\x13\x19\x43\xf0\xc9\x2a\x57\xa6\x05\xb9\x89\x0f\x66\x59\x31\x7c\xb2\x0b\x7b\x00\x9f\x06\xfd\xc8\xb9\x45\x8a\x2e\xd5\xf3\x7c\xa8\xec\x34\x2f\x7e\x2b\xe3\x7e\xc4\x02\x41\x0d\xc7\xec\x8d\x13\x95\x00\xa2\xfe\x2d\xb4\x89\x50\xef\xd6\x6b\xb4\x8b\x70\x81\x65\x1d\xdd\x8c\xbc\xac\x34\x32\x5a\x30\x31\xbc\xeb\xcc\xbd\xb8\x43\xa4\x01\xd6\x4b\x62\x26\xd4\xca\x89\x23\x8f\x97\x66\x71\xbb\x68\xaf\x52\xbf\xf2\xc3\x99\x7f\x56\xff\x16\x4c\xe5\x96\x78\xa3\x45\x2e\xc0\xc3\xbe\xb7\x94\x0d\x88\xb6\x56\x1f\x6a\x0b\x6a\xab\xe5\x2f\x1a\x07\x73\x42\xf1\x8e\xde\x87\x7b\xc9\xcb\x62\x3c\x22\x86\x92\x56\xb1\x02\xc9\x4c\x68\x20\xdb\x41\xbd\x5f\xf2\x83\x3b\x9f\xa1\x4d\x3d\xc6\xdb\xcf\x2e\x5c\xfd\x16\x58\xc7\x4b\xf7\x66\x09\x2f\x0a\x98\x3d\xcf\x49\xa5\xf8\xfd\xce\x5a\x32\x81\x08\x33\x41\x29\x0a\xd2\x4d\xb9\x99\x7a\x95\x22\xe1\xae\xa0\xc7\xd1\xd2\x88\x61\x8c\x2d\x8c\xe9\x10\x08\x2b\x9b\xf9\xa6\x04\xcb\x7e\xcf\x99\x98\xca\xe2\x9e\xe6\x05\xae\x3e\xcf\x7f\x04\x90\xbc\xfb\x84\x2b\x84\xf7\xbb\x15\xf8\x07\x74\x49\xd3\x77\x62\x18\x43\x6b\xf8\x42\x92\x31\x25\xb2\x42\xf2\x6f\x56\x07\x67\x2e\xd5\xc6\xbe\x44\x48\xa1\x47\x72\xa7\x83\xdb\x19\x9f\x78\x95\xc5\x0f\x59\xe7\xf8\xa7\x52\x83\x38\x17\x04\xe9\xab\xcf\xf1\x67\x0a\x4f\x7b\x3f\x17\x50\xc5\xe4\x4e\x13\xf6\x34\x9f\xe3\xc8\xc0\x27\x03\xcb\xf5\x16\x42\x3f\x20\x93\xce\x26\xe5\x08\x66\xb3\xbe\x52\xa6\x0a\xd6\xe2\x4b\xa9\x17\x84\x39\x0d\x7f\xd3\x77\x09\x3f\x14\x97\x33\x77\x8b\xb6\xa5\x3c\x64\xdf\x17\xb3\x56\x9f\xe2\x45\x49\x42\x7c\x02\x80\xbd\x92\x5f\xed\xcb\xd1\x4b\x54\xcf\x6c\x4b\x30\x83\xaa\x75\x5a\x05\x2e\x4d\x05\x11\xaf\x21\x2c\x55\xcd\x64\x42\x48\x93\x94\x07\xb0\xe3\xe4\xdf\x4a\x4c\xfd\x61\xda\x72\xe5\xcc\x22\x3d\x23\x5f\xb1\x36\x05\xce\x1a\x52\x80\x56\xef\xe7\x86\xca\x77\xf9\xb4\xf0\xef\xc8\xa3\x5a\x5e\x20\x1e\xd8\xbd\xac\x53\x50\xbd\x8d\x9f\xd4\x7d\x18\xb4\xf5\x8c\x50\x81\x83\x58\xb4\xf4\x07\x04\x9a\x39\x05\xb3\x9e\xe4\x30\x3e\xac\xdb\x41\xb9\x63\xc0\x16\xee\xa6\xc7\xe9\x4e\x27\xdf\x63\x1e\xd4\x4e\x5c\xdd\xc4\x61\xaa\x03\x7d\xae\xf0\x33\x95\x71\x4e\x24\x9c\xdc\x33\xdb\x2c\x40\xa6\x76\x2d\x55\xcd\x47\xfb\x74\x4c\x15\x2c\xc0\xae\x6e\x7d\x42\x73\xe0\xeb\x9c\x43\x68\x3d\xb1\xbd\x29\xa9\xf6\x24\xf9\x8f\x6d\xa8\xf0\x2f\x1a\xdf\x72\x32\x99\xcc\x5c\x66\x1c\x58\xcd\x62\x3f\xd7\xc1\x7d\x67\xf1\x6e\xa8\xbe\x34\x37\xc2\x9e\x0e\x7e\x30\x9d\x43\x1c\xec\xdf\xac\xe4\xa0\x86\x7a\x53\x01\x25\xe6\x7f\x5d\x7b\x69\x8b\x71\xcf\x3b\x66\xa3\xdd\x89\x61\xad\x01\xb5\x14\x72\x47\xf3\xf4\x82\x0b\x34\x4f\x9b\x29\x39\x97\x71\xcc\x7c\x78\x35\x93\xdd\xa1\x3f\xeb\x1b\xc6\xb3\xab\xfb\x9b\xde\xc1\x04\xeb\xfe\x33\x65\x20\xca\x47\x44\xca\x99\xa8\xf8\xc1\x33\xc0\x0a\x4c\x5e\xdf\x5b\xea\x51\x1c\xa7\xfb\x01\xea\x16\xe1\x50\x87\xa5\x36\x81\x1c\xd6\x32\x5e\x30\x4c\xdd\xea\x78\x9e\x9c\xce\xa8\xb5\x8a\x57\xeb\xd8\x31\x86\x27\xbe\x58\xde\x6a\xcd\xb4\xb6\xeb\xdc\xc0\x7a\x61\x63\x3b\x57\x09\x59\xad\x79\xc3\x7d\x0d\xbb\x28\x52\xf0\x00\x24\x8d\xa1\xe5\xbb\x63\xa2\xb1\xb3\xf9\xa3\xf8\x99\x75\xfb\x01\x27\xe9\xaf\xc2\xd9\x02\x36\x35\x2b\x89\x2e\xe4\x32\x36\x86\xd1\x45\x3b\x38\x2c\xaf\xa5\x12\x4f\x40\xd5\xb6\x9a\x7d\x0b\x72\xaa\x71\x12\xa7\x01\x1e\xa8\x81\x72\x5e\x21\x25\xc2\x9f\xdc\x26\xf4\x03\xc6\x0c\x5e\x05\x0e\x89\xe9\xe4\xbb\x13\x3e\xd7\x41\xf9\x7f\xc8\xbb\x0a\x2e\x00\x5f\x68\xc3\x49\x59\xc2\x45\xcc\x03\x61\x24\x11\x96\xbb\xca\xcb\x45\xfc\x06\xb8\xdd\xaa\x60\x19\x11\xd1\x56\x28\x7b\x0d\x2a\x4f\x7d\x9a\xfd\x02\x53\x23\xc4\x72\x36\xe1\x38\x74\x05\x57\x4d\xd8\x87\x09\xe0\x61\xc9\x73\x6b\x7f\xf3\x11\x54\x53\x81\x09\xa0\x33\xd6\x24\xf9\x09\x06\x58\x7f\xc2\x88\xa2\x39\xbc\x05\x5e\x11\xe2\x61\x01\xca\xf9\x1f\x63\x0d\xde\xdd\x7c\x9d\xb9\x8c\x30\xa4\x4a\x65\x4d\x20\xf9\x09\xbc\x58\xef\xc9\xd7\x69\x74\xf6\x38\xb5\x0f\x9d\xc8\xf9\x4d\x17\xd5\x26\xf0\x7c\x99\xfc\x82\xd9\xfc\x3a\x76\x73\xe2\x38\xb0\x87\x7b\x3e\x0c\x23\xcc\x07\x42\xbc\x30\xe2\x89\xc2\x23\xcd\x3c\xea\x73\x5a\xb6\x89\x4d\xfb\x49\x67\x2a\xa7\x31\xe6\x31\xf4\xc0\x74\x66\x20\x73\x0f\x55\xc4\xaa\x66\xfd\x46\x91\xd8\x7a\x4e\x49\x8d\x8d\x73\x83\xbb\x2f\xdf\xc9\x4b\xe0\x27\x26\x1e\xe2\x1f\x05\x2e\x85\xe1\x04\x7c\x21\xe0\xb5\x41\x54\x2c\xce\x73\x5c\x20\x3f\xe5\x2d\x31\x4e\xa5\x2e\xe2\xed\x94\x9f\xa3\x25\xf3\x33\x78\x63\x74\x09\xff\x05\x45\xcb\xb8\x0a\x74\x23\xdb\x58\x81\x02\x48\xf5\x0b\x76\xbb\x30\x38\xdf\x87\x1b\x24\x9a\x9e\x28\xe7\xdd\x14\xbd\x0c\xc3\x03\xeb\xc4\xe7\xbd\xc6\x84\x1d\x92\xb3\x36\x36\x51\xa0\xf8\x5b\x77\x8f\xb4\x59\x71\x4a\x7a\x86\xfc\x4d\xd1\xcf\xf5\xa1\x62\x14\x6c\xd2\x37\xda\x53\x45\x31\x22\x8b\x41\x51\xac\xa8\xba\xc1\x9a\x2b\xff\x9a\xd7\xc0\x3e\x2f\x3f\x92\x38\x87\x3b\x24\x17\x87\x21\xf8\x83\xf2\x35\xde\xe5\x82\xc3\xb2\x71\x2b\x14\x1f\x6c\x55\x69\xee\x11\x36\x5a\x8c\xe2\x37\xa4\x30\xb3\x92\xcd\x26\x1f\x34\x71\x88\x32\x2a\xc2\x88\x80\x4f\xa4\x2f\x34\xc4\x56\x5e\x64\xdc\xd3\xfd\xcc\x6d\x66\x1d\xd1\xb6\x25\xd8\x39\x47\x34\x4b\xc2\x32\x79\xff\xa8\xd4\xde\x7d\x82\x65\x8a\x17\xe6\xf5\xd8\xfd\x1d\x8f\xd4\x85\x78\x70\xbb\x87\x88\x45\xf8\xde\x9a\xc6\xf2\x24\x75\x3a\x1b\x08\x15\x94\xaa\x26\x08\xf4\x37\xcd\xd7\x1e\x53\xf1\x93\x31\xdb\xfa\x22\xe7\x03\x6b\xaa\xb9\x24\xc1\x87\xe3\x6e\x90\x84\xad\xe0\x55\x6a\x9b\xbd\xaf\x03\x3d\x2a\x9b\xe9\x33\x36\xa9\x4f\xae\x5a\x87\xbb\xd7\xc3\x13\x3e\x24\x28\xba\x32\x98\xed\xa4\x80\xf6\xdf\xf8\x47\xe4\xa7\xad\x0e\x68\x27\x75\x6f\xf3\xb7\x8a\xcd\xf4\x0d\x0e\xbf\x9c\x3d\xcc\x8d\xd6\xaf\xf1\xdf\xd9\x67\x4c\x8a\x30\x77\xde\x4c\xdd\x7b\xef\xb7\x40\x9d\x3a\xc6\x44\xc1\xdc\x1e\xae\x56\x45\xe0\x98\x83\x8b\x85\x5c\x82\x6b\x5f\x17\x33\x85\xb8\xbf\x67\x1a\xbe\x89\xcc\xe9\x4c\x83\xc2\xa9\x85\x6d\xc9\x15\x2a\x7a\x5a\xf3\x97\x9c\x36\x66\x9a\x3d\x39\xfe\x3d\x1b\x62\x01\x85\x05\x70\x07\x0d\x53\x7c\x82\xf8\x6f\xd5\x03\x56\x92\xa8\xab\x1e\xd0\xdc\x15\xed\x82\xf8\x4a\x66\x8a\x76\xc2\xb6\xb2\x31\xa2\x87\xc8\x3c\x62\xac\x78\x39\x66\x0e\xcc\x2e\xae\xc1\xbd\xae\x0c\x10\x8f\x10\x7f\xe6\x64\x48\x66\x51\x43\xe2\x34\x12\x3d\xc3\x1a\x7c\x42\x1a\xc1\xa1\x7a\xb4\xcb\xa6\x02\x06\xcb\x79\xa1\x04\xa2\xd2\x14\x09\x47\x60\x6f\xc4\x2a\xe1\x59\x64\x2a\xeb\xa5\x68\x16\xba\x9d\x70\x52\x54\x87\xf3\x80\x85\x8a\xb6\x10\x0e\x54\x5c\x17\x2f\x23\x9b\x72\xe6\x88\xed\x34\x7e\x1c\x43\x12\xc0\x6c\x0c\x3e\x20\x79\xc5\x9d\xef\xb1\x5d\x3a\x0a\xdc\xb0\x78\x0b\x90\xf0\xdd\xea\x1d\x82\x76\xe4\x7d\xd1\x67\xc1\x7d\xf4\x4f\x16\x5c\x18\x81\x5b\x42\xc8\x13\x3a\x09\xf5\xd0\x63\xa2\x89\xa4\x43\x15\x02\x91\x94\x5a\x9c\x7d\x43\xbc\x80\xfe\x29\xae\x41\xbc\x9f\x75\x2c\xf8\xb4\xa4\x91\xfb\xc6\x63\x54\xaa\x13\x54\x98\x2c\xfc\x55\xb8\x20\x55\x06\xdf\x84\x1f\x13\xb6\x03\x13\x89\x12\xe6\x1a\x40\x45\x8e\xc6\x17\x08\x96\x52\xe7\x41\x9e\x0b\xd6\xd2\x27\x94\x9f\x10\xe6\x33\x17\x67\x63\x44\x53\xd8\x51\x71\x6b\x44\xd7\xb9\xac\xe0\x7b\xe2\x0b\xfc\xaf\x9e\x8b\x25\xcf\x85\x23\xc6\x58\xce\x1b\x6a\x94\x32\x80\xab\xa2\x31\x05\x76\x9e\x17\xbd\x83\x91\xc7\x3b\xc7\xb8\x8d\x93\xf0\x15\x2c\x10\x24\x06\x88\x67\xf7\x95\xc7\x08\x26\x72\x03\xb3\x67\x0b\x5e\xf2\xf6\xc7\x2d\x14\x3e\x01\xe0\xc1\xaf\x45\x7f\x84\x91\x9e\x38\xc9\x1a\xb1\x9f\xc1\x83\xf5\x95\x63\x95\xbf\x63\xef\xe4\x22\x00\x3d\xa7\x9e\x37\x83\xde\xc0\x0d\xe0\x9d\xc4\x6e\xe1\x4d\xe1\xb7\x80\x35\xbc\xfb\x00\xbf\x6c\x03\xff\xb4\x80\x98\xb5\x15\xf8\x5b\x88\x8c\xfd\x57\xf0\x43\x84\x08\x99\x25\xf2\x11\x73\x3d\xaf\x89\xe1\x92\xf5\xda\x43\x0c\x81\x6c\xb7\xf4\x1d\xb3\x50\x76\x83\xd7\xc2\x0a\x95\x3d\xa2\xf6\xb2\x57\xca\x6e\x63\x22\x38\xc1\xb2\x7b\x0d\xa9\xdc\x48\xd9\xa3\xd2\x01\x5e\x9e\xec\x69\xe6\x17\xbe\x5c\x76\x27\xd6\x00\x8c\xca\x4e\x85\x4c\x10\x7a\xc9\xf6\x79\x79\x8b\x9a\x65\xbb\xd4\x5b\x68\x58\xd3\xa8\xf8\x39\x9d\x6d\x1c\xe7\x9c\x62\xb0\x8d\x61\xe4\x3f\x4c\x93\xa1\x0a\x75\x9a\xb5\x53\xcf\xab\x9f\xce\xfe\x47\xa7\x2f\x19\xe4\xfa\x68\x0d\x99\x09\x3c\xa1\x06\x1b\xeb\xce\x7f\xa1\xf6\x0b\x7e\x22\x80\x2a\x6f\x7b\x35\x08\x5f\x2b\xf4\xaa\x08\x6a\x60\x2b\x55\x64\xa5\x45\x39\xbf\xb2\xc9\xf4\xc2\x66\x24\xe9\x3c\x83\xe3\x38\x80\x3c\xc8\xdc\x62\x9f\x50\xe7\xcf\xfa\xd9\xe8\x53\xfc\x91\x53\x67\xf1\xc8\x58\xcb\x3d\x65\xbc\x1c\xb3\x89\x9f\xa9\x2f\x0d\x3e\x0a\x5c\xd2\x1c\xf3\x32\x0a\x09\x2a\x4f\xa5\x92\x62\xed\xba\x23\xfc\x46\xdd\xd8\xb9\x84\xf5\x84\x76\xab\xdd\x9f\x54\xc1\x98\xdc\xba\x12\x59\xcb\x4c\x75\x4e\xaa\xbd\xc6\x6a\x72\xec\x2c\xde\xce\xfe\x6d\x03\x65\xb0\xb9\x14\x4b\x4d\x8c\x86\xf7\xaf\x31\x31\x78\x17\xa0\xd0\xcd\xf1\xb2\x0b\xbd\x55\x87\x15\x3f\x29\xf3\xfa\x55\x42\x25\x35\xae\x57\xc6\x92\xd1\x98\xdd\x05\xa4\x89\xf4\xd6\x8e\xff\x90\xcb\x18\x57\xdb\xd4\xb5\x7d\xac\x40\xe7\x8d\x62\x3b\xbb\xd9\xf1\x3c\xa3\x81\x3b\xa5\x51\x1b\xc3\xe3\x69\x4c\xf7\x83\x4f\x03\x4b\xf5\x5e\x5e\x77\x05\x9b\xd5\xd1\xd2\x93\x5a\xf7\xfa\x76\x7e\xb9\x46\x0c\x49\xa2\xd7\xa9\xdf\xc3\x2e\xe3\xae\xa9\x01\x24\x0c\x7a\x4b\x3d\x0d\xe3\x59\xc5\x57\xe9\xf1\x93\x0a\xe8\xaa\x79\x24\xef\xd4\x39\xca\x0e\x2a\x1c\x34\xae\x04\x31\xae\xad\xfa\xa6\xb8\xc5\x39\xe0\xb6\x5f\xd1\x0a\x3c\x91\x06\x6a\x26\x40\x18\xbc\xeb\x6a\x09\xec\x2a\xed\x93\x7a\x36\xd2\x1f\xc7\x52\x6d\x44\x0b\xa1\x52\x55\x39\xf6\x4f\x55\x88\xf2\x15\x61\x43\x41\x84\x52\x45\x36\xa6\xbc\x50\xfa\xd3\xb4\xa0\xd7\x8a\xeb\xcc\xed\x01\x33\x15\x46\x6e\x86\xdb\x3f\x0a\x88\x60\x89\x44\xae\x7a\x0a\x67\xf2\xf2\x55\x12\xa4\x9d\xa6\x56\xad\x44\xaf\xc3\xcd\x50\x3e\xc4\x1e\x83\x7a\x2a\xdb\x08\xf3\x2a\x6f\x2b\x33\x48\xaa\xfc\x77\x8a\xf7\xd4\xa0\x94\xe3\x8a\xb5\xf4\x67\xa0\xc7\x0a\x02\xeb\x4c\xc0\x32\x45\x24\x6f\x9a\xfb\x44\xc5\x12\x81\x58\x0c\x56\x5c\xc3\x52\xb9\xab\x14\x43\x78\x37\x2a\x5e\x21\x25\xec\xc7\x2e\x55\x54\x90\x54\x90\x0a\x45\x30\x85\x51\x19\x2c\xff\x4c\x93\xe4\x23\xe4\xc7\x18\xdb\x52\xa8\xf2\x76\xd6\x6b\xd0\x65\xb9\x8a\x9b\x1b\x10\x25\xa7\xf0\x5f\xba\x57\xcb\x49\xc2\xdd\xc2\x6f\xf2\x39\xe4\x2e\xf6\x2f\xd9\x7d\xea\x4c\x0a\x57\xb6\x9b\xd6\x80\x49\x92\x6d\xa0\xff\x0f\xec\x94\x0d\x31\x41\x15\x26\x99\x95\x75\x3a\xef\x1f\x99\x88\x03\xa4\xac\x92\xa9\x78\xd1\xa0\xc3\xb2\x26\x60\x46\x40\x89\xac\x5b\x38\xd9\x7d\x44\xb6\x47\xec\x2d\x38\x2e\x8d\x66\xa9\x59\xaf\xa5\xcb\xd9\x64\xb2\x4c\x3a\x95\x93\x86\x86\x4b\x5d\xb8\x41\x0d\x7f\x4b\x23\x79\xc1\xe5\x2f\xa5\xb1\xfc\x94\x3c\x84\x34\x1d\xc0\x26\xdf\x93\xb2\x05\xed\xa0\xcd\xd2\x0d\xc2\x5b\x01\x24\xe9\xa8\x38\xd0\x7d\x4c\x36\x5d\x62\x01\x38\xa2\xbd\xe2\xab\xcc\x06\xd1\x45\x89\x0f\xf1\xa3\xe8\xa5\xa4\x16\xf9\x58\x0c\x92\xe8\xea\xc5\x62\xa1\xe4\x4c\xd9\x31\xf1\x26\xe9\x82\x5c\x86\xf8\xa9\x14\x9a\x9c\x2e\x09\x95\xae\x05\xd1\x25\x02\xe9\xeb\x00\xa5\xe4\xb0\x2c\xdc\x83\x2c\x9d\x25\x13\xf2\x74\x82\xb5\xba\xf7\xf4\x63\x82\x37\x3a\x1c\x01\x26\xcc\xd2\x9e\x47\xec\x11\x6a\xb5\x39\x75\x8d\xc2\x87\x9a\x83\xa5\xdf\x45\x71\x1a\xff\x9c\x73\xa2\x61\xb5\x2c\xe9\xb2\x78\xa6\xea\x04\x28\x54\xac\x50\xbe\x0d\x50\x8a\xdf\x2a\x67\x7a\xec\x90\x54\x2a\x56\x70\x3e\x03\x28\x07\x82\x46\x06\xb6\xda\xcb\xf1\x55\x82\x19\x36\x77\xf8\x36\x01\xd9\x7a\xab\x76\x8b\xe0\xa6\x45\x59\x9a\x2c\x2c\x31\x2f\xc8\xc9\x16\x5e\x30\x4a\x92\x6a\x45\xc5\xfa\x0d\x91\x57\x45\xd7\xb5\x9b\x02\xb0\xe2\x32\xf5\xa0\xc7\x43\xf1\x39\xa5\x83\x43\xe4\x5f\x69\xcd\xa5\x3e\x07\x82\x9c\x1f\x71\xf7\x01\x6b\x33\x0b\x9e\x07\x7c\x76\xdc\xab\xad\x17\xa0\xed\xc1\x25\xdf\x04\xcf\x1a\x2b\x72\x16\x08\x69\x96\xd2\xa4\x10\xe1\x47\xe3\xb7\xc8\xed\x22\x81\x9e\x18\x00\x13\x4f\xd0\x5c\xf0\x18\x17\x8b\x54\xab\xd8\xbf\xf9\xd5\x9d\x12\xaa\x92\xbf\xbb\xfd\x33\x4e\x0d\xf8\xb4\x25\xc0\x27\x02\xca\x16\x78\xad\x2f\xf0\x6f\x33\xa2\xe4\x92\x80\xe3\x88\xc8\xfe\x2a\x9c\xda\x38\x9a\xe4\x22\xd4\x98\x7f\x46\x0e\x8b\xfe\x32\xbc\x09\x20\x8a\x1c\xda\x0b\x9e\x8b\xc4\x8b\x54\x2d\xb4\x68\xfb\xd6\x86\x58\xc2\x44\x5b\x3d\xe4\x10\x32\xa0\x71\x01\x3c\xbe\xfe\x92\xe5\x16\xf2\x54\xc5\x72\xb3\x13\xa3\x2b\x58\x6a\x8a\xc3\x0b\xd3\xf5\x86\x4b\xa4\xf5\xb1\x27\xf5\xf5\xd4\x5f\x61\x44\xed\x43\xa6\x74\x65\xa9\xa6\x9a\x4b\x71\xf5\x55\xdd\x10\x34\x51\x5f\xd9\x86\x21\xbb\xf0\x3b\x1a\x31\xf0\x99\x88\x97\xd6\x10\x64\x4d\xbd\xdd\x32\x0f\xbd\xb9\xfc\xa1\xe9\x25\x2e\x36\xff\xb9\xb1\x93\xf0\x25\x1d\x6d\xc8\x20\xbf\x8d\xdd\xa5\x7b\x42\xfb\x15\xc6\xd0\x8a\x59\x71\x2b\xf1\x9a\xe9\xdc\x1b\xae\x29\xaa\x16\xc1\x30\xb5\xb1\xb1\x03\x0e\xc6\x37\x58\xe9\x48\x19\xa2\xdb\x92\x89\xee\xab\xcf\x37\x67\x63\x8f\x95\x77\x99\xa2\x08\xae\xf9\x5b\x0d\xdf\x48\xc3\xe9\xf1\xfa\xcd\x54\x74\x6c\xbf\x0e\xc5\x88\x0e\xe3\x6a\xe7\xb3\xc3\x56\xaa\xd4\xeb\x79\x62\x57\x82\x2a\x4f\xf0\x93\x62\xb6\xfc\xc0\xec\xc6\xb1\xcc\x57\x70\x0e\xf8\x79\xd3\x45\x42\x5a\x5d\x9b\xf1\x2a\xc9\xb3\x7c\x8e\xe1\x22\x65\x65\x7e\xac\x7e\x23\xad\x2c\xed\xbe\x4e\xc4\x18\x89\xe5\x69\xab\xd8\x13\xc2\x24\x9a\x95\x5c\xde\xca\x4d\xaa\xfb\x40\xa4\xeb\xff\x94\xad\xa2\x85\x64\xbd\xe9\x3f\x12\x80\x55\x98\x66\x92\xbf\xc1\xbe\x1a\x17\x53\xe1\xb5\xf7\x0d\x6b\x68\x0f\xcb\x88\xfa\x22\x86\x34\x6f\x9b\x2e\x8b\x95\x9c\xc6\xd2\xae\xe6\xb8\xc7\x66\x6b\xa2\x78\xd3\xc3\x34\xea\x50\x60\xf2\xca\xfb\xaa\x09\xc2\x20\xb7\x65\x8a\x2b\x62\x02\xc9\x68\x4c\x67\xb4\x60\xfa\x0c\x35\xcc\x73\x30\x1f\x3d\x95\x75\xa0\xd6\x5d\xb7\x8e\x7d\xbd\xf4\xb8\xf6\x0e\x77\x46\x9e\x9f\xe6\x0d\xaf\x2c\x6d\xa6\xfa\x1d\x7f\x6b\xec\x7c\xb5\x9b\xc0\x37\xcc\xac\x4a\x12\x76\xf9\xcd\x52\x06\x88\x57\xba\xb1\x14\x8b\x25\x47\x88\x65\xba\x1b\xc2\x95\x68\xbc\x6e\x81\xb0\x13\x3a\x5d\x5b\x25\x9a\x59\x13\xa4\xd9\x28\x52\x94\xfc\x52\xff\x12\xcf\xce\x55\xaa\xa3\xc5\x1d\xa9\x36\x15\x5a\x12\x11\x73\x49\xb9\x55\x72\x36\x4c\xa3\x78\x2f\xad\xf7\x2b\x51\x4c\x94\x3e\x73\x9f\x29\x9f\x2a\x53\xe0\xc7\x34\xff\xa8\x27\xa3\x52\x35\x71\xaa\x4b\x90\xa9\xea\x56\x55\x5f\x75\xae\x7a\x86\x8a\x58\x92\xac\x62\xaa\x62\x72\x9e\x29\xaf\x28\x7f\xa4\xba\x28\xfd\x95\x3b\x63\x34\x0a\xb3\x12\x1a\xc6\x90\xbf\x56\x7c\xf0\x43\xcb\x57\x28\xa8\xee\x08\x59\x86\xfc\x13\xee\xb5\x1a\x67\x51\x23\x53\x55\x8f\xcd\xe7\xc1\xde\x2a\xb0\xe9\x4b\x95\x42\x79\xcf\xb4\xb4\xb8\x43\x59\x6b\x0c\xca\x81\x2b\xee\x18\x02\x52\x76\x2b\x2a\xf5\x7f\xc5\xc4\xc8\x4f\x6b\x77\x85\xc5\xcb\x57\x6b\x62\xfd\xb0\x32\x91\x6a\xb7\xbb\x5e\xba\x53\x19\x8e\xa3\xab\xae\xd8\x3f\x20\x6e\xa8\xca\x6c\x5f\x1a\x8e\x2b\x6f\x35\xde\xaa\x5a\xa3\xac\xb7\x6e\x2a\x86\x2a\xee\x5a\x68\x39\xab\x15\x04\xf3\xc2\x94\x66\xf9\x07\xa3\x2d\xc6\x5d\x8e\xd1\x1f\x09\x5b\x25\xbb\xac\x3d\xea\x07\x95\xf9\xab\x77\xb9\xdb\xa4\x44\xe5\x10\x6e\x8e\xaa\xc4\xb9\x0f\xa1\x50\x5e\x6d\x36\x37\x48\x95\xe0\xa6\x98\xaa\x09\x8a\xbb\xf6\xcb\xc5\xf1\x8a\x06\x5b\x51\xce\x72\xf9\x7b\xeb\x40\x8a\x41\xae\x30\x8f\xc6\x2c\x95\x8d\x1b\x2d\x61\xfe\xb2\x06\xfd\x72\x3f\x96\x74\xb7\xa6\xcb\x7d\xbd\x74\x82\x6a\x3e\x8c\xd5\xdd\xda\x70\xbd\xde\xa5\x93\x0f\x4d\xad\xac\x68\x87\xc1\x77\x15\xcf\x6e\x85\xa2\x32\x73\xe4\xce\x2c\xec\xfc\xd4\x2b\x8e\x0f\x84\x85\x71\xbb\x6d\x12\x72\x79\xc4\x39\xcb\x37\xda\xa5\x40\xb2\xa9\x96\x25\xf4\x59\xa8\x6f\xe2\xd5\x2d\x3f\xa8\x39\x2b\x44\xc2\x4a\xba\x0c\x50\x8f\xba\x4f\x1d\x6a\x78\x7d\x65\x44\x9b\x12\xd9\x57\xf4\xaa\xa5\x0d\xfd\x3b\x07\xd9\xdc\x8c\x6b\x4a\xdd\xe7\x28\x23\x62\xe2\xd6\x36\xbe\xa3\x50\x23\x46\x2d\x42\xfa\xfa\x40\xa9\xf1\x1d\x7b\x8e\x4f\x90\x3e\x85\xd7\xbb\xfc\xb9\x46\x2e\x04\xc3\xbc\x3b\x85\x70\x7b\xdd\xc9\xf6\x46\x64\x7f\xe5\x94\xd6\x01\xf4\x81\xa2\x03\xce\x6b\xd8\x27\x39\xf1\x4d\x0f\x09\x85\xa9\x9d\xf6\x75\xa4\x7f\xe3\x9a\x1b\x2b\xa9\x27\x22\x46\xcd\xe3\x8c\xa3\x81\x8d\x46\x3e\xfb\x91\x4f\xae\xee\x36\x3f\xc8\x65\x9e\x26\x44\xd8\x0a\xa5\xb6\x1f\xc4\xc8\xeb\xbc\x5a\xff\xc5\xc5\x55\x90\x5a\x7c\xf0\x9f\x8b\x32\x9b\xab\x89\x2f\xb3\x1f\x38\xd8\x94\x99\xa9\xd5\xb6\x6a\x5a\x55\x1c\xd6\xea\xc2\x38\x1b\x71\xd8\x74\x83\x9d\x1f\xb8\xd9\x20\xe4\xfe\xeb\xa3\xd2\x7e\x07\xb6\xba\x90\xd5\x18\x91\x15\xf2\xa0\xf5\x39\x71\x73\xad\xb6\x25\x96\x1c\x5a\x7e\xab\x59\x41\x19\x2c\x3c\xe9\x18\xa5\x65\x64\x73\xec\x13\x18\x33\x53\xa7\x5a\xbf\x32\xdf\xc5\x45\x98\x2f\xb3\xc7\x23\x76\x19\xb7\xf2\x16\x07\x8e\xea\xd9\x40\x96\xcf\x09\xed\x6c\xa1\xd4\xe5\x92\xca\x2a\xbe\x0c\x99\xd1\x92\x4a\xaf\xad\xb9\xd9\xdc\xc5\xa0\x97\xa7\x3b\x3e\x32\xd5\x85\xe9\xf6\x32\xd6\xd9\xec\x19\x8d\x6d\x9c\xd0\x94\x6d\x96\x41\xee\x50\xec\x77\x93\x8d\x0f\x8a\x18\x36\x34\x02\xaf\x03\x5f\xea\x58\xc2\x61\xdf\xa9\x1a\x3f\x71\x8d\x6b\x84\xf2\xa8\x74\x31\xd8\xbb\xe9\x25\xff\x40\xcd\x0c\x07\x16\x20\x94\x35\xd9\x1e\x08\xe6\x14\x6c\x6b\xac\x16\x1c\xce\x6a\xb1\xec\x13\x6a\x53\xc0\xa6\x31\x51\x75\xec\x49\xe3\x14\x71\x78\x44\x9f\xde\x45\xe2\x11\xb4\x44\xbb\x40\x3a\xc5\x17\xa2\x7a\x23\xbd\xe2\x7a\x54\xb1\x4e\xb6\xb1\xc1\xd7\xfe\x47\xbe\xa5\x3a\xc5\x66\x97\xef\x2f\x7d\xd8\x18\x2c\x3f\x54\xe0\x65\xd9\x2d\xbf\x9c\xe5\x6d\x8e\x92\xbf\x4e\xfe\x63\x34\x29\x26\xc6\xaa\xf5\x17\x14\x0b\x23\x2c\xda\xf7\x8a\x55\x41\xab\xd5\x3f\x14\x7e\xbe\x1d\xca\x1f\x8a\xe9\x6e\x41\xf2\xdb\xf2\x57\xf5\x0e\x9b\xd8\x10\x57\xd5\xd1\xe8\xa9\x3f\x50\x5a\x6c\x39\xa4\x0f\xcd\xef\x36\x43\x74\x43\x99\xfb\x8d\x6f\x75\xae\xc9\x5b\x0d\x24\xad\x24\xb6\x44\x77\x5d\x73\x29\x82\xa2\x9d\xa1\xfe\x11\x14\xa0\x5e\xa9\x9e\xe4\x7b\x48\x99\xa6\xfc\xe1\x86\x95\x27\x2b\xc6\xea\x03\x1a\x8f\x5b\x3c\xaa\xf2\xac\x6c\x33\xa1\x74\x96\x65\x85\xa9\x27\x1f\x67\x3a\x69\xbc\x96\x69\x37\xd6\x19\xfe\x4b\xb6\xe9\x5f\x1a\x16\xc4\x26\xe8\x10\xfa\x59\x11\x68\x4d\x9b\xf6\x54\x50\xa0\xea\x7f\x9a\x3a\xdf\x63\x8a\x17\xaa\xab\x6e\x64\xd9\x77\x65\x76\xdd\xf9\x46\x57\x1b\xb1\x6a\x8a\xe5\xef\x46\x5b\xc9\x2d\xb3\xd5\xda\x96\x9f\x61\x5a\x6d\x69\xcd\x14\x19\x4e\x98\x35\xc9\x6a\x3d\xc4\x54\x13\x1b\xa7\x7d\x62\x9c\x12\x41\xd2\xb8\xe8\x61\x41\xb1\xaa\x38\xad\xc1\xf7\xa9\x82\xa1\xee\x73\x33\xca\x2c\xca\x4d\xb5\xdb\x06\xbe\x80\x73\x2b\xb4\x7d\x2d\xd0\xb6\xe2\x69\x3d\xab\xe1\xdf\x73\xc3\x3b\x6f\xa1\x34\xe9\xfe\xed\x10\x6c\x65\xe2\xec\x96\x56\x42\xc3\x9a\x96\xa6\xb5\xe4\x9e\x30\xbd\xad\x8f\x1e\xbe\xca\xc5\xc2\x61\xbd\xf6\xea\x34\xba\xf0\x0e\x2f\xf7\xd5\x6e\x14\x6e\xa9\x6d\xea\x1f\x87\xb2\x2b\x68\xbd\x6b\xe1\x5d\x45\x1f\xba\xab\x91\x57\x73\xdd\x3a\x17\x62\x42\xd3\x17\xb5\x6d\xc0\x9d\x4a\xf8\xe3\xfc\x44\xec\x5a\xd3\xd4\xb4\x98\xb2\x21\xcc\x62\xf3\xa4\x7f\x5f\x15\x65\x99\xc6\xa6\x79\x6d\x33\x1c\xe2\x7d\x5d\x9e\xaf\x85\x09\x3b\x6a\x29\x7d\xef\xe0\xa3\x15\x85\x3d\x7b\x90\x17\x8b\xae\x76\xf1\xd1\x77\x73\x7e\x74\xe4\xe1\x26\xa7\x7d\x6d\xfd\x40\xa0\x25\x8c\x39\xf3\xc8\xcb\xd7\x18\x1d\x5c\xea\xe7\x30\x5b\xa3\x9d\x39\x61\x55\xae\x59\xcf\x01\x79\x5d\x34\x94\xf3\x59\xcb\x59\xda\xc9\xc2\xcb\x35\x97\x7a\x03\x31\xa2\xf2\xc3\xdd\x73\x71\xab\x8b\xaa\x3a\xde\xe2\xdf\xe4\x74\xb6\x9d\x22\x3e\x4d\xdb\xd1\x22\xa5\xcc\x4d\x38\xd0\x34\x46\x43\xaf\x61\xd8\x23\x19\x4f\xc2\xcc\x56\x32\x9b\xb9\x8a\x6c\x92\xf3\x02\xbc\x67\xe8\xf1\xc0\xb3\xe5\xe7\x35\x20\xd1\xde\x1a\x4a\x77\x31\xd1\x5a\x5e\xdc\xd9\x40\xfa\x59\xf8\xb8\xbd\x9a\x42\xce\x89\x6f\x4d\xa7\x2d\x49\xc3\x38\xe7\xd1\x5f\x26\xa8\x1d\x8d\xcc\xbb\x6b\x2a\x1a\x5f\xb2\xc7\xc2\xda\x2c\x29\x3c\xdf\x55\x56\x23\x15\xc0\x7a\x97\xe8\xa8\xc2\x61\x97\x10\x75\xa5\x78\xbc\x7a\xb0\x73\x3f\xed\x6a\xd9\xce\xf6\x33\xf4\x4f\x85\xc4\xd6\x0b\x4c\x97\xec\x1b\xce\xf3\x2c\x52\xda\x92\xa6\xf5\xec\xc7\x09\x85\xf6\x44\x2e\x71\x0d\xc8\x3a\xc2\x9f\x15\xd6\x6f\x5e\x0e\xdc\x5f\xb5\xc7\x80\x16\x6e\xf7\xee\xd0\x4a\xc4\x54\x17\x8b\x4a\x2c\x05\x55\x4f\x6a\x27\xf1\x27\x94\xf9\xb7\x36\xf1\x47\x0a\x3e\x38\x77\x03\x79\xd9\xec\xa6\x51\xc1\xfc\xd4\x8b\xf6\x53\x82\xf7\x09\x1e\x8d\x32\xe1\xed\x35\xde\x96\xa5\xa2\xd1\xb0\xbd\xc6\x56\xf1\xc3\x55\x3f\x74\x5f\x24\x2f\xbd\xbf\x68\x52\xa4\xa7\x5c\x97\x29\x51\xb2\x1d\x55\xb9\xad\x54\x19\xb1\xd4\xe6\xdc\x21\x53\x16\x70\x9b\xbe\xc9\x1c\xd9\x8b\x1c\xbe\xb2\x23\xa9\x26\x5b\x98\xec\x67\xfc\x4b\xeb\x52\x79\x64\xd4\x1f\xd3\x5d\x39\x36\xec\xb8\x01\x2b\xdf\x10\x10\xae\xbd\x2a\xbf\xe9\x93\xa1\xce\x92\x5f\x76\x15\x28\xec\xf2\x8b\x95\x1b\x9d\x17\x75\x88\xd2\xc9\xcd\xfe\xba\x29\xf9\xff\x39\xb8\xda\xa6\xac\x8d\xb6\x1d\xda\xf0\xd4\x35\xd6\xdb\x9a\xf3\xf1\x1b\xcc\x4f\x34\x0d\x51\x77\x8d\x97\xd4\x77\xc2\x76\xe9\xe9\xea\xe4\x80\x78\xcd\x7b\x95\xdc\x07\xa3\xd2\x2b\x5b\x5d\x0f\xc8\xbf\x29\x76\x54\xc2\x9c\xf3\x4c\x4b\x4b\x8e\x36\xd1\x8d\xe2\xfc\x13\xf6\xf3\x86\xab\x59\x12\xdb\x3c\x43\x48\xea\x02\x6b\x8c\x5e\x11\xdf\x64\xae\xd2\x9d\x8c\x3a\x6b\xac\xd0\x8e\x87\xed\xd4\x7d\xd7\x8c\x05\x64\x6b\xc4\xea\x63\x3e\x32\xd5\x4a\x15\xc7\xf5\x9a\x7c\x50\xe9\x51\xe9\xd1\x0c\xb3\xc6\x97\x98\x1c\xa7\x2d\xdc\xfc\x1e\x7b\x90\xb9\x3d\x0b\xd3\x48\x32\x1d\x4f\x9d\x6e\x69\x35\x3e\x8a\xb7\x9a\x8e\x18\x9e\x45\x5d\x31\x5c\xd4\x8f\x86\x1d\xd3\xb1\x74\xe4\x80\x06\xf5\x0f\xcd\x43\x9f\xed\xca\x11\x75\x82\xeb\x57\x79\xba\x52\x55\xb1\x70\xad\x18\x7c\xa8\xe8\xc7\xd0\x07\xe8\xbb\xdc\xce\x81\x6a\x04\x28\x63\x79\xef\x3e\xd4\xbe\x24\x76\xd7\x07\xac\x3a\xe6\x6a\xfb\x45\x82\x31\xe2\x6d\x0b\x8b\x7c\x39\xb8\xd7\xf1\x8b\x4e\xf1\x9b\xde\x58\xc5\x5e\xed\x09\x32\x31\x79\x2f\x96\xd9\x75\x4c\xe1\xc1\xf2\x9f\x23\x0a\xe8\x8d\xa2\x37\x43\xd3\xe1\x8f\x72\x1d\xfd\x22\xe4\x9f\x8c\xb9\x3d\x1f\x31\x55\x49\xc4\xae\x78\xdc\x9b\x98\xcb\xed\x7e\xc4\x63\x11\xef\x9d\x77\x28\x57\x83\xb7\x38\xd8\x8c\x60\x3f\x2f\xeb\x03\xf6\xb0\x67\x99\x69\x3e\xdf\x65\xd9\x4e\x9d\xaf\x70\xb0\xfc\xce\xb0\x1a\xb1\xbc\xe8\xca\xa0\x2b\x6a\x52\xae\xac\xaf\x07\xfd\x5f\xfa\xf7\x1e\x3f\x9c\x77\x52\x6d\xa7\x98\xa0\x8f\x39\xd5\xc6\x26\x47\x45\xbc\x77\xc6\xd0\x16\x06\xef\xb5\x3f\x66\x86\xf8\x45\x5b\xc1\x1c\xb8\x27\xc9\xd8\xc7\x6f\x5c\x76\x57\x7b\x54\x78\xbd\xbc\x60\x70\x37\xc6\x59\x54\xd3\x8f\xc5\x25\xe6\xba\xf6\x4e\xc5\xbf\x4f\xdf\xda\xd5\x4a\x7c\x99\x14\xd0\x31\x91\xb2\x38\x66\x6d\xeb\x3c\x1a\x35\xe2\x59\xd3\x2b\xc6\xc7\xe0\x33\xb6\x6d\xec\x26\x3f\x98\x25\x8f\x97\xeb\x39\x60\xd8\x00\x7c\x5b\x1e\xa4\x79\x29\xda\x5b\xbe\xb8\xff\x06\xb1\xa3\x68\x7a\xef\x36\xd2\xeb\x9c\xa3\xdd\x1c\x4a\x71\x3a\xbe\x73\x39\xf5\x47\xe2\xc7\x36\x3b\xfd\x5a\x8c\xd6\xb9\x95\x79\x21\xe2\xae\xa3\x93\xfd\x3c\xf8\x66\xa3\x90\x17\xe2\xa7\x33\x07\x03\x42\xcf\xd7\xfa\x11\xe1\xb6\xe5\x32\xcd\x14\xf1\xd7\xb2\xca\xbe\x72\x9a\xb2\x50\xd9\x13\x48\x1f\xc9\xc1\x75\x7e\x60\x5c\x49\xf7\x6a\x1f\x60\x05\x27\xee\x6f\x0d\x65\x6f\x88\xc1\x34\x37\x70\x93\x23\x2e\xdb\x6b\x79\x2f\x83\x9f\x5b\x8b\x81\x4b\x7e\xdb\x4d\x4b\x85\xbb\xbc\xc2\x74\xdb\xc5\x9c\xe5\xb7\xd4\x81\xd2\x98\xd2\xcf\x3d\x53\x79\xe6\xc2\xd0\xce\x8f\x7c\x9f\x1c\xcf\xf6\x6b\xfc\x7d\x69\x2f\x5b\x3b\x01\x73\x62\x9b\x33\x4d\x20\x8e\xa9\x76\xb4\x0a\xb9\x11\xb7\x1a\x8f\x8a\x84\x21\x8b\xcc\x27\xc5\xeb\xfc\xa7\x1b\x3a\x24\xa3\x5e\x0e\x2d\x4e\xba\xd7\x05\xad\x9a\x2c\x5b\x5f\x0a\x74\x7e\x90\x4a\x0b\xae\x74\x4c\x94\x3a\xb3\x1f\xb6\x4d\x96\x6e\x48\xdb\xeb\xfc\x47\xfa\x2a\x51\xdc\xd4\x23\x8b\x8f\xc9\xb7\x7b\xca\x8c\x11\x0f\xac\x4c\xd9\xdd\x90\x78\x93\x4a\x9e\xe1\x5f\xa2\x27\xca\x9b\xbd\xfe\xd5\x60\xe4\xc3\x2e\x67\x94\x21\xf2\xff\x95\x5c\xea\x08\xd3\xbc\x2f\xc8\x6f\xab\xd4\x0c\x66\xf3\x5a\xc8\x9a\xfc\x34\x4c\x33\x54\xfd\x3b\x31\xd1\xb1\x5a\xbd\x3b\xc6\xa5\xf1\x9e\x1a\x17\x71\xd0\x82\x50\xcf\x0e\x89\x35\xaa\x54\xdd\xfe\x24\x9d\x44\xb5\xc0\xdb\x4b\x3d\xa8\x2c\x75\x9d\xa2\x68\x52\x18\x4b\x7a\xda\x71\x06\x51\x81\x7b\xab\x43\xff\x6f\x76\xa1\x73\xa7\xbe\x3a\x2d\xb3\x69\xbd\xee\x7c\xa2\xbf\x5d\xa5\x4b\x8f\x99\xd5\x98\xa1\xdd\x18\xb1\xdb\x7c\x5f\x3b\x39\x24\xd9\x38\x4d\x03\xf2\x17\xeb\xa6\xab\x93\xbd\x13\xd4\x49\x2a\x4f\x57\x3f\x45\xae\xe2\x4b\x09\xa7\x6d\xb3\x59\x94\xff\xad\xe5\x9e\xe9\x70\x76\xa8\x73\x82\x71\x3c\x2d\xc2\xf1\xcd\x18\x9f\xe8\x61\xbb\x6e\x10\xc5\xcc\xb4\xf6\xeb\x37\x44\x1c\x30\x17\xeb\x8e\x85\x94\x1a\x00\x6d\xa7\x7f\x87\x56\xa2\x29\xf2\x86\xa9\x4e\xa9\xee\xb8\x66\xc9\x9f\x2b\x6b\x07\x5e\xc1\x8a\x2a\x5a\xda\x3a\xe0\x3f\xab\x77\x58\xae\x21\x0f\xd4\xfd\x4f\x29\x46\xaf\x07\x8f\xf1\x9c\xd8\x53\xf0\x14\x92\x3f\x61\x06\xaa\x03\x72\x97\xa4\xc5\x79\x96\xd4\x52\xa9\xc4\x9f\xa9\x2e\x0c\x13\x75\x2c\xfc\x2b\x67\x0e\xf3\xb3\x17\x85\x3f\xc6\x4b\x1e\x98\x0e\x31\xd6\x64\xb6\x5e\x82\x35\xd4\xcf\xb7\x2c\x43\x64\x80\xcf\x29\xee\xa0\x20\xb0\x1d\xbc\x99\x98\x3e\xe4\x3e\xe2\x46\xfc\x2c\xcc\x28\x84\x4d\xdc\x46\x98\x54\x32\x9f\xb2\x97\xac\x4f\xb9\x46\xff\x43\xf7\x08\xbf\xc6\xee\x66\x8d\x7a\xc1\xf9\x7d\xbc\x3d\xfd\x3e\x0d\x67\x1a\x96\xb6\xfc\x84\x1c\x84\x38\xcc\x55\xb0\x2b\xf0\x49\x8a\x10\xe4\x7c\x64\x1f\x97\x87\x16\x60\xa0\xc4\x70\xdc\x0c\xbc\x3f\x64\x0e\xe1\x3a\x69\x7e\xf1\x41\xf2\x6f\x6a\x42\x8a\x9d\x8e\x63\x00\xe1\x5b\xd8\xfe\xec\x8b\x5e\x70\x7e\x06\x1f\xdc\xcb\xa9\xc5\x22\xbb\x9c\xb0\xfa\x6d\xe8\x3e\xe3\x75\xc8\x52\xac\x43\x76\x0f\xd6\x8c\x1f\xe2\x54\x23\x93\x89\x7f\x13\xe2\x31\x0b\x28\xf3\xc0\xb9\x78\x6f\x1a\xa6\x38\x9c\xa4\x60\xdc\x4f\xf1\xa1\x45\xb0\x49\xe1\x72\xd6\x2a\xde\x02\x2f\x09\x8f\x01\xbc\xe8\xc6\x56\x21\x89\x9d\x4d\xc3\x35\x57\xc9\x2e\x06\x6c\x3d\x82\xa2\x95\x76\x43\x3c\x69\xd3\xd8\xb9\xf0\x69\xf4\x5e\x7c\x39\xca\x8d\x99\xd4\x60\xc0\x52\x58\xef\x8b\xda\x89\xf3\x38\x07\x93\x8f\x50\x7e\xf2\x5a\xc3\x09\xcc\x95\x80\xca\x6b\x0f\xb7\x45\xd8\xd6\xd9\x5a\xce\x64\xf9\x3b\xe6\x57\x2d\x62\x4f\xd3\x4f\xac\xb9\xcd\xfe\x5b\x82\xab\xbf\xcc\x39\xc0\x4a\x85\x8c\x73\xf7\xe0\x98\x88\x2c\xde\xe6\xfa\x1b\xe8\x1b\xfc\x1d\x45\x0b\xf1\xdb\x81\xb3\xc9\x24\xf2\x4d\xc1\x93\x70\x34\x23\x4c\x34\xc3\xeb\x37\xe7\xb2\x38\xaf\x7d\x65\x71\xb7\xac\xa4\xf1\x4c\x59\xb3\x2c\x43\xf3\xac\x72\x9d\x2c\x58\xa4\xa9\x79\x25\x5b\xc1\xe8\x6e\xa8\x96\xf9\x63\x5d\xa0\x9f\x64\xee\x75\xa3\xc8\x4b\xb2\xf9\x85\x0d\xd8\xaf\xd2\x3f\xc9\x73\x49\x58\xe9\xe3\x70\x38\x7d\x8e\xf4\x9c\x37\x8c\xfd\x59\xba\xaf\xe5\x41\x81\xc2\x12\x60\xd9\x55\x7c\xc6\xbc\x5c\x3d\xa3\xdc\xcf\x34\x55\x70\xbb\xaa\xd7\x38\x95\xbe\xaa\x2e\xdf\x30\x19\xfd\x04\x12\xa0\x7b\x5e\x7b\x1f\x91\xa9\xdd\x55\xb0\x0b\xb3\x49\x83\x49\xfa\x1f\x11\xac\xfa\x18\x0e\xa1\xe5\x29\xe5\xde\x5b\xd9\x6c\xc5\x34\x67\x41\x1e\xa3\x23\xd4\x1c\x51\x78\xa9\x8d\xae\x6c\x2e\x2d\x6d\x71\x02\xea\x8a\x4f\xcd\xeb\xa9\x9f\x6a\xce\x39\xd6\xa3\x5e\x37\x5c\xb5\xa9\x6a\x57\xc0\x5d\xad\x91\x05\xe9\xe8\x03\xa6\x91\xa4\x56\x42\xab\xfe\x45\x38\x9b\x7a\x5c\x3b\xcd\xfb\x3f\x76\x88\x6a\x56\xf3\x50\xee\x89\xbe\x32\x53\x6f\xa1\x4f\x4f\x88\x72\x41\x49\x5f\xe7\x0b\xe0\xaf\x8a\xd2\x76\x3b\x55\x57\x03\x6a\xf5\x42\x39\x1b\x72\x9a\x25\x35\xaf\x61\xdd\xf6\xa1\x82\x55\xe8\x4a\xab\x22\xa9\x87\x90\x62\xf2\x09\x6f\xa4\x2a\x74\x06\x9f\x10\xf6\x34\xd5\xf9\xe6\xd8\xdc\xbc\x61\xa5\x29\xbd\xa0\x63\x70\xb6\xe2\x78\xc9\xc2\x3e\x1a\xff\x54\xf9\x89\xee\x93\xd4\x82\xea\x0d\x1d\xef\x51\xd4\xfa\x93\xad\xcf\x6a\x6e\xc3\x56\x34\xdb\x0b\x56\xa1\x5e\xd9\x9e\x24\x9d\xc4\xdf\x36\xbf\x0f\x3f\x4c\x8d\xd4\x6f\xf1\xa1\xb0\x4e\xaa\x41\xbd\x9e\x88\x23\x15\xed\xce\x40\x14\xa8\x7a\xbb\x71\x0b\xfa\x68\xdd\x0e\xd9\x46\x2c\x00\x7e\xc5\x71\xc1\x43\xe1\x29\xf8\x3f\x44\x2a\xaa\x07\xbc\x90\xbc\x0f\x17\x58\xf4\x93\x86\x20\xcd\x49\x59\xc4\x4c\xa5\xcd\x0e\xe7\x73\x84\xac\x50\x2f\x32\xb0\x84\x67\xee\x29\x82\x7d\xaf\x01\x35\x63\x11\xad\x75\x3f\x0c\xff\xa1\x4a\xc1\xdb\x64\xf3\x30\x20\x58\x2f\xdb\x86\x4b\x45\x6e\xc6\x1b\x09\x7c\xcc\xc9\x86\xad\xa4\x57\x84\x29\x45\x1b\xa9\xdb\xc9\xd6\xe4\xeb\x8c\x3d\xf4\xa8\xf0\x7a\xce\x02\xd6\x6f\x2f\x2c\xff\x3c\x7f\x62\x37\x15\x1a\x57\xff\xae\xa9\x1d\xf6\x07\x82\x33\x64\x22\x1e\xc1\x6e\x48\x09\xa8\xb7\x48\x29\x7b\x2a\xd6\x13\x93\x81\x5f\x88\x17\xe0\x17\x36\x14\x91\xe6\x93\xa6\x15\x41\x29\x3f\xa9\x09\xc9\xed\x8c\x15\x0c\x43\x78\x22\xbb\x93\xfd\xc3\x8b\xcc\xa7\xf3\xfb\x3b\x7b\xea\x7f\x20\xb3\xec\x9f\x21\x33\xd1\x35\xba\x73\xb0\x68\x6c\xa9\xc4\x17\x21\xc2\x13\x99\x63\xa8\x31\x62\x1f\xce\x1f\x6b\x22\x3f\xad\xb7\x12\xd0\xb4\x9c\xc2\xeb\x64\x1d\xe3\x72\x72\x34\x6d\x9c\xcd\x0a\x77\x65\xf5\xf3\xd6\x78\xb5\xf0\x06\x04\xab\xda\x4f\xd7\xbc\x20\xae\xb2\x95\xd7\x87\x91\x76\x6a\xa1\xe0\x26\x4a\xa8\xe8\x19\x6c\x11\x75\x17\xe3\x1f\xc4\x61\x7a\x0d\x36\x0d\xdd\xc3\x9c\x58\x77\x03\xb7\x87\x75\xbc\x30\x9f\xe4\xca\x19\x4c\xba\x4f\x3d\xc6\x73\x86\xcf\x64\x0e\x02\x3d\x5e\xd7\xb9\x17\x85\x57\x5a\xbf\x56\xcd\x60\x5a\xac\x07\x6a\x14\x2c\xa5\xfa\x47\xbd\x27\x1b\x2d\xdc\x0a\xbe\xca\x29\xa7\xdf\x87\xed\xe0\xd6\x62\x50\xc8\x4b\x3c\x58\x9d\x2f\x76\x25\x9f\x53\x70\x9a\x70\x14\xe8\x4b\xb2\x53\x06\x04\x37\xc2\x27\x32\x76\x8a\x96\x7a\x2f\xe3\xce\x12\xf3\x9c\x43\x65\x09\x52\xa4\xd9\x5e\x39\x4b\x2a\x56\xfe\xa8\xfe\x28\xd5\x00\x4f\xea\x3e\x4a\x0d\xb4\x3c\x88\xb7\xb4\x0b\xbd\x0c\xae\x95\x8e\xd4\xae\x44\xaf\x92\x6e\x2f\x70\xc5\xcf\x91\x1e\x48\x4a\x21\x47\x49\xf7\x87\x2f\xa4\x5b\xa4\xa7\xbd\x6d\x9c\x00\xe9\xc3\x26\x78\x71\x92\xe9\x97\xd1\x5a\x96\x6b\x5a\xa2\x88\xae\x24\x1b\x57\xf1\xf3\x6a\x36\x1a\x62\x29\x0f\x1b\x5c\xf5\xf9\xc8\xb7\xd0\x23\xba\xec\x9a\x14\x64\xaf\x36\x22\x5f\x8c\x3d\xa1\xfe\x93\xf8\x91\x14\xa8\xda\x12\xbe\x84\x76\x52\x89\xf5\x7e\xc5\xee\x51\x2c\xb1\xef\x2d\x74\x6d\x3b\xa3\xff\x55\x52\xd0\x1a\x25\xdb\x5f\xde\xe1\x94\x72\xbf\x55\x4f\x6c\x5a\x4b\xfe\x5f\x5d\xab\xfd\x08\xe2\x37\x84\xd0\xb8\xa7\xda\x84\xe0\x5a\x34\xf9\xf3\x31\x57\x4d\x5e\x89\xd7\x89\x68\xbd\x32\x3c\x9c\x16\xaf\xb9\xe0\x13\xcb\x2e\x55\x4d\xb6\x7b\x15\x60\x7b\xae\xe8\xc9\xc5\x6d\x5d\x7f\xcb\x22\xca\xde\x74\xec\xe1\x4a\xab\x1a\xda\x00\x72\x59\xed\x7f\x2d\xde\x88\x4d\xe0\x7b\x4d\x3d\xd5\x55\xf0\x6f\xb6\x57\x79\x9f\x31\x78\xcb\x9b\xc4\xbb\xc4\x59\xc6\xcd\xe1\xf9\xd4\x2f\xba\x1c\x1f\x2c\xdb\x4f\x75\xc0\xb6\x2f\xff\xc9\xe0\x7b\xfd\x9c\xe2\xb9\xfd\xfd\xd2\xbb\x65\x0d\xbd\x21\xdc\x98\xca\xd1\xae\x0e\xf2\xd2\x5a\x76\xfb\x63\x84\x16\x5c\xd3\xf2\xad\x3a\x0b\x2e\x6c\x3a\x97\xf7\x13\xfd\xcd\x96\x99\x34\x91\x30\x60\xe6\x84\x8b\xa8\xbd\x7a\xac\xcf\x20\xeb\xb1\x7a\x45\x67\x28\xba\xb0\xa2\xcf\xae\xc5\x58\xab\xb7\xe9\xc0\xd8\x0f\x75\x9b\xc5\x23\x78\x16\xf8\x09\x13\x4b\x0c\x82\xc7\x62\xfb\xc9\xf3\x50\x6d\xf5\x0b\xa8\xc1\xb8\x80\xc2\x2a\xba\x93\xf4\x57\xd2\x15\x56\x02\x6d\x49\xd8\x4e\xee\x1a\x56\xbe\x57\x2c\xa0\xe3\x9d\xec\x40\x21\x0d\x35\x3e\xb6\x8b\xa8\x1f\x75\xff\x68\x77\x60\x74\xe0\x26\xf1\x22\x5c\x14\x4c\xcf\x78\x4a\x58\x84\x6c\xc1\x46\x92\x3c\x31\x5b\xeb\x76\x50\x60\xf8\x2f\x85\xb3\x69\x63\x64\x4d\x52\x1b\x73\x37\x3d\x36\xac\x9d\x73\x91\xbd\xc4\x2b\x0a\x48\xe3\x47\xb6\x5b\xe1\xe7\xea\x4f\xda\x66\x23\xb1\x90\x78\xed\x14\xb4\x07\x6c\x44\xc4\xc3\x7c\x42\xd6\x32\xc0\xb8\x6f\x18\x6f\xcc\x21\xa2\x3f\x6e\xbc\xae\x92\x6c\x24\xfe\x5b\x70\x8c\x16\x4f\x0d\x4a\x42\x33\xfd\x19\xba\x30\x25\x07\xcc\x99\xe3\x95\xce\x7f\xc9\xbf\xd4\xda\x0d\xd9\x8a\x78\x6b\x05\xc3\x74\xe8\x99\x6a\x1b\x42\x86\x9d\x27\x8c\x41\x59\xf1\x01\xf4\x62\xcc\x55\x22\x1a\x7d\x1b\x9f\x4e\xde\x52\xdb\x49\x7c\x41\x73\x2f\x48\xa6\x5c\x62\xec\x48\x9a\x41\xff\xcd\xc6\x87\x51\xd9\x04\x5e\x9a\x17\x83\xef\x23\x28\x76\xfe\xaa\xb7\x12\xb6\x98\x2f\x83\x77\x90\xf2\x55\xfe\xd0\x0f\xe4\x6b\xc0\x1f\x44\x24\x15\x4c\xcb\x42\x6d\xa6\x4f\x43\x7d\xc5\x42\x18\xfb\x6b\x9e\x12\xd2\x58\x86\xfc\xfd\x64\x3c\x47\x94\xb8\x8f\x76\x85\x27\x0f\x43\xb1\x68\xc0\xa0\xd7\x4e\x5e\x99\xf0\x63\x73\x40\xcd\x31\xc6\xb8\x29\xae\xde\x95\xf9\x43\x71\x04\xdc\xc8\x1a\xe3\x8f\x42\x7f\xb2\x1f\x51\xd3\x10\xeb\x39\xef\x51\x6e\x68\x07\x6f\x4a\x4d\x14\x6e\x3b\x3f\x38\x3f\x85\xb4\x18\x20\x25\xf2\xa9\xbb\x04\xbb\xc2\xe0\x4c\x85\x68\xa1\xd7\x7f\x5c\xb3\xb8\xc9\xfe\xbd\xe2\x8f\x84\x69\x08\xae\x5e\x27\xd9\x2a\xbb\x5b\x87\x95\xdc\xe1\x2d\x00\xfb\x4b\x5e\x91\xf7\xc3\x7c\xa5\xb3\x11\x77\x90\x55\xd2\x80\xea\x64\xcc\x21\x69\x5e\x5e\x07\x01\x23\x25\x25\x86\x52\xf2\xa4\x9a\x30\x1e\x03\x2c\xdd\xee\x2d\xe0\xac\x93\xbe\x6b\xdc\x51\xe6\x6d\x3c\xaf\x8b\xa9\xf8\x64\xfc\x4b\x1a\x5e\xfd\xd4\x90\xc6\x51\xd7\xbd\xd0\xa3\x48\x10\xc8\x0a\x9d\x1e\xbe\x17\xde\xac\xed\xaa\x42\xa0\x93\x34\x7d\x79\xd3\xf0\x5e\x6a\x4b\xc2\x0b\x72\xb2\x0a\x16\x26\xa5\xdb\x94\x71\xde\xd7\x38\xee\x8a\x85\x96\xaf\xc5\x6f\x5b\x1b\x34\xcd\x65\x9f\x9d\xef\xc4\x1b\xaa\x96\x36\xc3\xd8\x31\xb5\x89\x8e\x2e\x62\x6a\x43\xaf\xed\x22\xec\x2a\x2c\xc9\xfa\x4f\xe5\x4e\xd4\x62\xf3\xd5\xdc\x4e\x5c\x88\xd1\x90\x70\x96\x24\xd0\x2f\x0a\xeb\xa0\x4f\xd6\xe8\x7c\xfc\xd8\xa7\x94\x63\x16\x7c\x71\x54\x77\xbe\x66\x6a\x59\x6a\x27\x4f\xec\x5a\x89\x6f\x97\xb0\x0e\xd7\x38\x5b\x6b\x08\xf7\x1a\xa6\x38\x5d\x60\x2a\xe8\x16\xc7\xff\x2a\xa5\xc8\x66\xdb\xca\x5c\x05\xf6\xa8\x25\x37\xe1\x32\xc9\xcb\x08\x0a\xdb\x49\x3b\xa4\xfd\xee\x53\xc6\x6e\x56\xf5\x5b\xe6\x14\xad\x1f\xa8\x54\x0f\x95\x6e\xeb\x0b\x17\xed\xaf\xb8\xd9\xfd\x98\xc5\xae\x99\xd6\x89\x23\x0c\xd5\xf3\xda\xce\xc1\x60\xd0\x80\x96\xc9\x95\x34\xe4\x52\xc7\xcf\x5c\x1d\xb6\xa4\xb1\x2d\x61\x9c\xb8\xdb\xf4\x21\xec\x29\x0d\xa3\x5f\xe2\xd3\xc8\x2e\x52\xcf\x6e\xca\x26\xc4\x55\x6c\x32\x2e\x22\xc6\x57\xef\x93\xd3\x48\x35\x75\x7b\x78\x15\xe4\x11\xf0\x2d\xf2\x66\xaa\x37\xdc\x07\xd1\x48\xdb\x85\x92\x55\x6d\x63\x08\x71\x8b\x73\x0f\xb0\xd8\xc4\xaf\xf1\xcf\x38\x5b\x69\xd3\x43\x8e\xf2\x23\x58\xf5\x9e\x30\xc1\x1f\xde\x2f\x07\x1e\xb7\xa5\xfa\x8f\x01\x8e\x1f\xad\x3b\x23\x7b\x4e\x9c\x0c\x56\x72\x2f\x91\x04\x30\x18\x39\x9a\xb2\x14\x89\x42\x04\x50\x2f\x61\x24\x55\x0d\xf4\xff\xe1\xcf\xe5\x72\x99\x37\xc8\x90\xf8\xfd\x1c\x10\xdd\x3d\x64\x3b\xef\x32\x7b\xb9\x27\x52\x70\x80\x0f\xb1\x4b\xb1\xab\xea\x79\xfa\x21\x1c\x14\xfc\x4b\x56\x80\xdf\x05\xe3\x72\xd3\x88\x05\xc8\xb9\xa4\xff\x91\xa7\xa3\x2f\xc3\x0f\x52\x9e\xe0\xd6\x56\x4d\xa6\x8d\x11\x37\xe7\x46\x32\x43\x28\x9f\xe2\x2d\xec\xf5\x0c\x44\xc8\x5a\x1e\x9a\x33\xdd\x93\x29\xc0\xf3\x3f\x34\x5e\x45\x85\x22\xe0\x3a\x17\x74\x0b\x8a\x23\x79\x8a\x5d\x89\xe1\x72\x16\xe0\x7e\xe1\xda\x89\xfb\x09\x5f\x09\x8f\x61\x2f\xc8\x0b\xc8\xd1\x95\x35\xd4\x5a\xea\x8e\x9c\x2d\xf4\xeb\x0c\x54\x7c\x16\xcb\xcc\x5e\x1d\xd2\xc9\x05\x78\x41\x9e\x5b\x81\x75\x02\x8c\xb5\x10\xee\x83\x7f\xa7\xd9\x89\x38\x43\x54\x8a\xed\xa8\x76\xf2\x04\xd6\x53\xcc\x16\x4a\x37\x61\x37\xee\x05\xad\x1e\x36\x83\x98\xc8\xf0\xae\xe8\x27\x1f\x66\x4d\xcd\x89\xa5\xf1\x39\x8b\xe2\x67\x32\x49\xbc\xb8\x90\x5e\x8e\x1e\x50\x7a\x7e\xe1\x3f\x15\x4d\x34\x5f\x81\x44\xd0\xbf\xa9\xb3\x61\x01\x8c\x7f\x45\xd9\x88\x58\xe6\x5d\xe6\x01\x94\x8a\xf5\x06\xbf\x1b\x33\xce\x59\x02\x0d\xc7\xcb\xb8\xe9\xe5\x9f\x48\x09\x3c\x55\xf6\x71\x6a\x28\xff\x79\xdc\x35\x46\xb5\xa0\x36\x64\x84\xdd\x2b\x7c\xea\x55\xc0\xf7\x12\x77\x19\x21\x75\x77\x45\x27\x94\xde\x0d\x5f\xc4\xee\x02\x1c\x34\x45\x0c\x63\x2c\x86\x5f\x14\xb7\xe0\xf2\x50\x0a\xf1\x03\xc8\x64\x6c\xb5\xc4\xab\x7c\x1e\xa1\x4e\x82\xcd\x0e\x21\xeb\x25\xdb\xe2\x9a\x69\xef\xa5\x93\x42\x8e\xb3\x44\x52\x8c\xd7\x51\x5e\xbc\xf4\xb1\xbe\xb2\x7a\xbd\xbe\x55\x9e\x5d\x97\xa8\xfb\xcd\x3f\xd0\xf0\x48\x57\x49\x6b\x83\x0e\x6b\xd7\x62\x27\x22\x6c\x9a\xdf\x0d\x9f\xd0\x03\x9a\xd4\xb2\x14\xdc\x13\x35\x2f\x6b\x80\x94\xa7\x72\xc6\xd5\x52\x9f\x29\xd7\x85\x5c\x64\x6e\x51\x9c\xf4\x76\xe3\x0e\xc9\x5f\x68\x7b\x2a\x0f\x35\xaf\x97\x9e\xae\xa9\x6d\x22\xf0\xd0\xf5\x8b\x1c\x93\xa8\x58\xf0\x6f\x9b\x00\xfd\x15\x3e\xcf\xfa\xa4\xc1\x15\x55\x64\x89\x28\x6d\xc7\x1e\x34\xc1\xb3\xd2\x88\x95\x86\xf2\xb8\x18\xea\x0a\x9d\x7f\xc8\x4b\xa6\x9b\xfa\xad\x37\x91\x9b\xa2\x5c\xaf\x19\xab\x5c\xda\x51\x24\x0d\xab\xde\xd8\xb6\x9d\xfb\xac\x0e\xd1\xf2\x81\xf2\x05\x5c\xe1\x9c\x8e\x6e\x85\x31\x9a\xa6\xd6\x5f\x46\x1e\xb4\x3d\x29\xc5\x62\x93\xac\x4d\x59\x81\x84\x97\xa6\x6f\x71\xf1\x94\xd3\x86\xf0\x90\xff\x18\xd7\xb4\xc5\xde\xcd\xdc\x99\xaa\x3a\x0d\xa1\xa2\xa3\xd7\x45\x72\xbc\xda\xbb\x3b\x8e\xeb\xa8\x3d\xd7\x19\x46\xd9\xde\x70\xa8\xed\x33\x1a\x05\x7d\xd8\xd2\x52\xbf\x01\x09\x6a\x5e\x5c\x5a\x85\xd9\x6f\xaf\xc9\x5a\x4d\x60\x58\xe3\xe3\x6a\x28\x10\xe3\xe3\xd0\x40\x06\x4f\x87\xf1\xbe\xcc\xd9\xa3\x3a\x6d\xac\xa6\x8e\x57\xec\x52\x5c\xa6\x0d\x57\xef\x05\x4e\xd0\x15\x75\xdb\xe9\xd5\x0c\x21\xf8\x34\x16\xcb\x74\xc2\x67\x82\x27\xb3\x46\x51\xf8\xd2\x77\x9c\x20\xdc\xa4\xcc\x01\xee\x09\xe2\xbd\x98\x0e\xbe\x83\xfa\x3e\x88\x27\x70\xb2\x6a\x3c\xd6\x88\x6e\xf3\x97\x18\x36\x50\x1a\xaa\x5f\x28\x22\xa9\x69\x75\x03\x40\x0a\x2d\x0b\x5c\x47\xbb\x46\x47\xc0\xc2\x30\x63\x8c\x2e\x64\x58\x43\x07\xf3\x33\xa6\xb0\xb4\x85\xcd\xc6\xf7\x67\xe2\xb8\x61\xe4\x88\x18\x3e\xdf\x9d\xf6\x39\x88\x26\x48\x64\x4f\xf3\x48\x12\x75\xf1\xf1\xfa\x2f\xa4\x13\xf5\x29\x72\x23\xf9\x2e\x78\x0f\x7f\x88\x3a\x1b\x16\x40\xcb\xa6\x65\x20\x0e\x61\xa8\xf4\x6e\xb4\xac\x21\x8c\xb9\x14\x07\x2b\x4d\x62\xed\x24\x32\x32\x83\x38\x66\xca\xff\x62\x6a\x79\x6d\x8c\xd0\x20\x22\x70\x83\xfd\xca\xa3\x44\x54\xc2\x7f\xaf\x4b\xc7\xff\x80\x8f\xca\x66\x10\x63\x91\xcf\x79\x99\xa4\x56\xf4\x0b\xea\x12\xca\x42\xdc\x7c\x34\x99\xba\x91\x00\xad\xaf\xa4\x43\x48\xc7\x4b\xcc\xcc\x28\x6a\x45\xc6\x76\x76\x06\x63\x56\x8c\x2f\x57\xc3\x7a\x19\x44\xe6\x8f\x73\x7f\x7b\x18\x84\x6d\x82\x2a\xcd\x38\x76\x32\xee\x83\xe4\x30\x4e\x43\xe8\xe2\xba\x10\x56\x91\x42\x28\x33\x89\xf7\xc8\xb7\x50\x32\xf2\x56\xea\x60\x9d\x89\xda\x4e\x97\x15\x8f\xd1\xd7\x31\x25\x19\xf9\xcc\x71\x76\x4f\xf4\x57\x0e\x89\xfb\x30\x48\xc4\x9f\x0a\xe4\x79\xdc\x13\x5c\x15\x8e\xa9\x19\x28\x02\x6d\xb3\x98\x8e\x99\x4d\xdf\xcf\x1e\xc7\xde\x64\x1c\x22\x4f\xc4\x1f\x67\x3e\x43\xb6\x11\x2f\xb0\xfd\x6b\xcf\x90\xc7\x38\xf4\xe2\x32\x5a\x38\xf7\x6a\xfa\x0b\xc6\x56\x7e\x65\xf4\x25\x36\x18\x78\x15\x64\xe3\x79\x09\x3b\x3d\x23\x05\xf3\xc5\x52\x25\x11\x36\x2e\x9c\x29\x94\x23\x9e\x0b\x39\xac\x08\xd4\x98\xf0\x1c\x91\x85\x75\x11\xad\x40\x64\xe1\xb1\x22\x4b\xcd\x36\xe2\x79\xd1\xd7\x22\x11\xa5\x5a\x4c\x4c\x87\xd3\x17\x8a\x5f\x47\x77\x32\x7f\x48\xc8\x41\xeb\x39\x7f\xa4\x13\x3c\x7b\x80\x60\xe9\x36\x79\x25\x64\x95\xb6\x1a\xd8\x09\x2b\xd6\x5c\x64\x74\x23\x6c\x9a\x44\xc2\x3c\xd4\xb8\xfa\x00\x7c\x31\x96\xa7\x4e\xa9\xde\x41\x70\x51\xed\x2e\xdc\x43\x7a\xac\xf2\x4f\xfb\x87\x7a\x4d\x69\x8a\xc6\x33\xfe\x55\x3c\x09\x3a\xc2\x09\x50\xa4\x78\x4d\xe6\x2b\xe5\x23\xd2\x7d\x0d\x53\xed\x97\xf8\x85\x10\x94\x6d\x37\xbd\x01\xf6\x77\x23\x0d\xf7\x09\x59\x63\xf5\x80\xf9\xa1\x7f\x9b\x0f\x56\xbd\xc7\x8d\x9a\x0a\x0a\xfd\x88\x27\x0c\x07\xd3\x54\x94\x67\xfa\xa9\xd1\xe9\x8c\xd5\xda\x80\xa0\x6b\xec\x26\x75\x8a\x57\x01\x7f\x99\xb2\x5c\x1a\x53\x5f\xde\x9a\xc0\xbb\x08\xde\xec\x3c\x43\xfb\x07\x16\xd8\x1c\x80\xb3\x20\xb6\x3b\xf8\xd0\x2b\x68\xb8\x6d\x7b\xd5\x66\x5c\xb2\xf5\x7a\xc1\x57\x62\xb6\xf9\x52\x1a\x99\xc2\x37\x5a\xa2\x53\xe9\xd7\xf5\x1e\x41\xcf\xd8\x79\x9a\x26\x2f\x36\xef\x8e\xf2\x8f\xe4\x7e\xdd\x99\xce\xbb\x3c\x3e\xd8\xad\xc3\x97\x66\x87\x3a\xdb\x12\x70\xc5\x08\xcf\x96\x14\xe8\x00\xea\x62\xb3\x4f\x55\x23\x76\xa7\xfd\x45\xc1\x2b\xc2\xa9\x46\x20\x8d\x46\x99\x6c\x3e\x10\x5d\x4d\x27\x1a\x8e\x05\xcf\x64\xbd\xd6\xae\xf5\xda\xc0\x93\xa9\x58\x0a\x1f\x8e\x6f\xc5\x5b\xc1\x1c\x4e\x5b\xf5\x5d\x46\x07\x37\xa0\xee\x04\xfe\x09\xf7\x08\xf8\x22\x6c\x37\x8f\x05\x9f\x55\xed\xc9\x4f\x42\x91\x0b\x1e\x01\xfe\xb8\xd9\xa9\xb5\x82\x32\xe2\xc3\x28\x7f\xe1\x30\xf5\x7d\xc0\x62\xb1\x07\x0b\xe7\xf6\x5a\x72\x91\x1f\x21\x2f\x63\x1d\xad\x7e\x00\x60\xd9\x55\x75\x0e\xc6\x32\xce\x64\x70\x3a\x1e\xc5\xf9\x1f\x6c\x01\x2c\x99\xab\x47\xce\xaf\xda\xcd\x63\x62\xa2\x0a\x0c\x7c\x01\xde\x9e\xea\x05\x1c\x23\x7b\x46\xcd\x17\x82\x68\x4f\x03\x16\x89\x4e\xb3\xa7\xba\xfd\x27\x71\xf0\xb9\x32\x2e\x13\x51\xf7\x9d\xbf\x9b\x35\x1f\xcc\xa1\xeb\x58\x77\xa1\x6f\x71\x77\xd8\x1b\x10\x32\xe8\x61\x4e\x1b\x3a\xb3\x2a\x8f\xdb\x8b\x0b\x2d\x58\xcd\x3b\x49\x2c\x48\x79\x0b\x04\x50\x1c\xa0\x5f\x82\x5d\x8c\x39\x01\x4b\x45\x28\xf6\x5d\x77\x17\x49\x16\xff\x93\x74\x02\x6d\x10\xde\xc0\xcb\xa7\xab\x91\x68\x5a\x20\x43\x83\x46\x61\x37\x30\x9d\x58\x07\xe4\x20\xeb\x28\xfe\x4d\x25\x95\xfd\x9b\x84\xc8\x97\x70\x6b\xa8\x53\x52\x44\xbc\x37\xf4\xe3\xa0\xdb\xc0\x5a\xd6\xd6\x80\x00\xa1\x9a\xfb\xc0\x1d\x21\xb6\x08\x0a\xc5\xcd\xe4\xe3\xb8\xa5\x5c\x77\xca\x0b\xfc\x09\xaa\x1f\x2d\x84\x08\xc1\x1c\xa7\x73\xc8\xae\xe0\x37\x8c\x5b\x94\xaf\x15\x47\x58\x79\xb4\xb7\x79\x9f\xd8\x7f\x33\x27\xa7\x04\x71\xfb\xd9\x09\xa0\xc3\x7c\x07\xd7\x16\x90\x23\x68\x03\x5c\xdd\xf7\x89\xce\x0a\x6f\x8b\x28\xc4\xd9\x54\x0c\x67\x0a\x89\x47\xd3\x52\x42\xc9\xef\xe9\xbd\xe8\xbb\x54\x2a\xe3\x11\xd8\x93\x3e\x9d\x95\x58\xb1\x94\xb1\x8e\x3d\x9c\x47\x61\xe1\xb8\x01\xc9\xf7\x38\x18\xde\x79\xd0\x3a\x9e\x06\x50\x06\x30\x81\xf5\x42\xa8\x47\x88\xf0\x8b\x18\x27\x60\xe3\xa6\x02\x31\xac\x28\x3c\x1f\xd8\x4d\xd2\x10\x17\x08\x82\x51\x0c\xd2\x05\xc1\x86\xfa\x57\x94\x41\x61\x7c\xf9\x32\x9a\x59\x78\x25\x77\x3d\xa3\x51\x44\x4f\x46\xb3\x46\xc5\x2b\x41\x4a\x6e\x80\xf8\x4e\x80\x9d\xaf\x93\xf4\x7a\x18\x85\x4b\xa5\x4a\xbe\x16\xbd\x4c\x75\x94\xa1\xc7\xdc\x53\xd1\x88\xcb\x71\x7b\x54\x8b\x90\x81\x84\xb5\xca\x13\x75\x7f\x93\x76\x2b\x81\xb2\x70\xca\x1d\x65\x60\xce\x77\xba\x87\xe2\x5a\xd2\x27\xa6\x51\x21\x05\xd5\x71\xdc\x14\x1e\x01\xc3\xbc\xed\xf2\x9d\x1e\x0f\x04\x04\x39\x8c\x17\x8c\xf4\xb6\x5e\xa4\xe7\xa2\x67\x5b\x6e\xe0\x3f\x60\xff\x32\x1f\x47\x84\xe2\x97\x9b\x36\xd4\xcd\x24\xa6\x1b\xb5\xa5\x5a\x72\x93\xa1\x3e\x47\x44\x9b\xae\x5f\x9c\xd4\xc3\xe8\xd7\x6e\x01\xad\x66\x43\x34\x81\x01\xdb\x79\x6e\x2a\x8b\xa7\x37\xf0\x51\xf1\x99\xbb\x13\x81\x68\xfa\x46\xfb\x1b\x55\xe9\xd8\x84\x97\x63\xd0\xf6\x74\xf8\x15\x1c\xa7\xf1\x72\xed\x31\xc2\x88\xb5\xa0\xb4\x94\x3c\xc3\xbc\x27\xa7\x86\x6a\x32\x4d\x48\xd2\x31\xa2\x0d\x2e\xa0\x20\xf6\x24\xdd\xb4\x80\x43\xdc\x0b\xea\x9b\x9e\x69\xc0\x56\x65\x0f\x17\x05\x3f\xd3\x86\xa2\x69\x91\x87\x5b\xfe\xc6\xaf\x41\x5f\x77\xfa\xc1\x5b\xb1\x4f\x9a\x88\xb5\x9d\x84\x25\x76\x7b\x69\x1c\x49\xda\x38\x92\x53\x44\x9d\x63\x31\x27\x19\xe9\x47\x4d\x91\xa0\x38\x56\x8b\xbe\x27\xe0\x1e\x97\xa0\x79\xe1\xc9\x02\x2a\x54\x6e\xac\x65\x52\x72\xe5\x1a\x72\x85\x34\xba\x66\x15\x66\xae\x34\xb0\x7e\x1e\x04\x2d\x0d\x84\xcc\xad\x2a\x97\xc6\xc3\x33\x0a\x5f\x49\xeb\x50\x43\x19\xef\xa5\x06\x5c\x5e\xdc\x23\xe9\x7d\x52\x48\x78\xb2\xac\x90\x56\xbc\x72\x9f\xec\x22\xeb\x92\x6b\xba\x1c\xe0\xf7\x30\x07\xc4\xff\x55\xff\x4b\x7a\x2c\xfe\x52\x37\x84\x5e\x2f\x99\x03\xae\x86\x4c\x94\x84\xc0\x3c\x2b\xbf\x49\xea\x91\xae\x85\x5d\x92\x66\x4c\x66\xc6\x0e\xc9\x63\xfc\xc6\xb8\x7d\xd2\x32\x72\x7e\x78\xb4\xf4\x2e\xdd\x67\xe5\x09\x19\x97\x5d\xea\x0a\x96\xc7\xf1\xcf\x31\xfd\x44\x8d\x75\xd7\x48\x18\xd1\x2e\x70\x09\x3a\x4a\xf4\x0e\x7a\x06\xdc\x2a\x0e\x44\x34\x54\x3a\xc5\x2c\xf4\xca\xc2\x7c\xf1\x59\xdc\xf2\x0c\xa6\x24\x9c\x98\x19\xd7\x26\xd9\x47\xe9\x0d\x0f\x93\x42\x19\xe1\x2b\x2f\xc9\x16\x70\xe6\xba\x0a\x64\xaf\x01\x10\x63\x3a\xf0\x00\x76\x91\x58\x24\xc8\x46\x5c\x45\x05\x09\x8e\xa0\x6e\x37\x6c\x14\x86\x62\x17\x57\x8c\x0a\xd7\xe3\x45\x05\xfd\xa2\x70\xd2\xcc\xf4\x31\xd1\x09\xca\xc9\xb8\x7c\xb1\x84\xde\x19\xee\x2b\xa9\x60\x0d\xaf\x7c\x27\x8d\xe4\x8e\xb9\x9e\x90\x45\x0a\x68\xb4\x6b\x3c\x01\xe6\x3e\x21\x96\xf7\x0b\xd7\x8f\x2c\xe2\x6b\x08\xf0\xfa\xa7\x80\x3f\x29\xaa\xc2\x0d\xf8\x9b\x12\x5a\xb0\x40\xa0\xa7\x65\xa4\x4b\x85\x85\x0c\x69\xdc\x42\x51\x1c\xeb\x61\xb8\xbb\x38\x89\x0b\xf7\x5b\x22\xc9\x05\x66\xbb\x79\x48\xc9\xc2\x97\x54\x05\x67\x05\x59\x88\x0f\xe7\x1c\xa0\xdc\x44\x90\xb9\x78\x5a\x40\xbd\x27\x2f\x8a\x6e\x2a\x27\xf2\x17\x33\xe7\xe6\x2b\xf8\x1f\x59\xc3\xe9\xf3\x81\x47\x9c\xda\xd8\x3b\x82\xff\x78\x31\xe1\x6e\xa2\xd5\x40\xa0\x5f\xbe\xb8\x5e\xb8\xc6\x4d\x26\x19\x16\xe3\xc8\x5f\x98\x4b\xb8\x4a\xec\x31\xe6\x79\x5e\x21\x7c\x12\x6b\x1f\xef\x6b\xed\x18\x7b\x27\x7f\x73\x19\x9c\x73\x0b\x10\xe4\xad\xe3\x7e\x11\x94\xa4\x51\xf8\x41\x42\x50\xac\x10\xa0\x8b\x56\x87\x4f\x14\x8c\x8a\x41\x7e\x7c\x51\x84\x24\xce\x7d\xba\x78\x40\x0a\x27\x21\x69\xc5\xf2\x6c\x0c\x94\x5e\x20\x8f\x82\xbe\x62\x20\xe4\x8b\x6a\x3e\x32\x2d\xf2\xb9\xa5\x5a\xd6\x2b\xf9\xfc\xbc\x59\x9c\x10\xf9\x82\xd4\x97\xdc\xf5\xf2\x85\xb1\x89\x7c\x77\xb9\x47\xd8\x38\xb0\x5b\xee\xe6\xd7\x2e\x2c\x94\xcf\x72\x47\x8a\xde\xc9\xe7\x13\xa1\x94\x35\x46\x29\xba\x82\xca\x36\x1c\x86\x7c\xa4\xed\xd1\x7f\xab\x59\xcc\x98\xa1\x4f\x28\x79\xc6\xa4\xe9\x78\xb9\x6c\xd6\x67\xed\xa6\x54\x23\xc7\xa6\xb9\x1c\xf3\x81\x17\xa3\xbe\x13\x76\x9b\xff\x51\x75\xda\x6f\x8b\x60\xb3\xb2\xd7\x5d\x23\x62\x2a\x44\x84\xe3\x64\x67\xe3\x42\xd4\x43\xca\x09\xab\x17\xc4\x4a\x9b\x63\x71\xa9\x3e\x45\x07\x9b\xe7\x94\x6c\x65\x9c\x32\xfe\x9b\x5b\xc8\x6a\x30\x9c\x49\x65\x72\xa6\xeb\x95\x31\xcf\xb8\xc7\x74\x8b\xc3\xee\xf2\x6d\x1a\xa9\xdf\x1e\x01\x58\x75\xd6\xbd\x57\x14\xaa\x74\x25\x64\x92\x5d\x1d\x5f\x51\x2a\x4a\xb4\xfd\x09\x24\x9f\xca\xb3\x6d\xae\x6e\xa5\x1d\x6b\x84\x97\x34\x33\xfc\x2d\xdf\x73\x93\x98\x27\xcc\x8a\x54\x3a\x5b\x68\x7c\x12\x33\xc6\xcd\x30\xcc\x0c\x1b\xe3\x7b\x6b\xff\xf8\xdd\x06\xc6\xd5\xa3\xee\x67\x85\xa3\xca\x76\x74\x80\xa1\xb4\x6a\x0a\xb4\x54\xdf\x53\x73\xb6\x76\x89\xee\x7b\x7d\x7b\x99\x56\x97\x0e\x69\xce\x5f\xab\x35\xc3\x2f\x65\xe8\x34\xf7\xd1\x89\x09\xef\x35\xa1\xb8\x31\x10\x5b\x2d\x27\x3d\x0b\x92\xab\x1e\xd1\x97\xf9\xac\x55\xa5\xb2\x7b\x96\xff\xa3\x3c\x0c\xe0\x50\xfb\xf5\x2b\x6a\xaa\x21\x5f\x75\xa2\xba\x1f\x35\x97\xb4\x4f\xc0\xc3\x65\xd9\xda\x3c\x18\x23\x9f\xa6\xd9\x86\xe4\x65\xd4\x6b\x5c\x31\x5b\x13\x2e\xaa\x15\x84\x00\x10\x46\xf5\x91\x7c\x3f\x48\xa7\x22\xd1\x4f\xfb\x1c\x56\x3e\xe5\x4c\x74\x99\xaa\x04\x00\x2e\x2a\x4b\xfb\xb9\xee\x06\xc4\xa9\xad\x06\xd7\xd7\xc8\x34\x67\xa1\x4f\xca\x26\x6a\x0a\x11\xe2\xfc\x30\xf5\x25\x74\x65\x86\xbf\xba\x18\x07\x4e\x58\xab\xba\x48\xec\x02\xd5\xaa\x6a\xa9\x0b\x83\xac\xca\xd7\x8c\x3d\x3e\xb7\x94\x42\xce\xa0\xcb\x2a\xe5\x2a\xe0\x34\x52\xaa\x26\xc2\xd6\x80\x6f\xaa\x67\x21\xe0\xd5\xa3\xaa\x3d\x28\x7d\x29\x5c\x05\xc7\xdc\xce\x1b\x54\xfd\x85\xaf\x4b\xff\x9f\x72\x17\x69\x4a\x42\xad\x12\x4a\x79\x08\x8a\x50\x2e\xa1\xdf\x08\xea\x56\xdc\x66\xfd\xf4\x9d\xad\xb0\xf3\xea\x5c\x24\x0a\xac\xe0\x09\x02\xae\x8c\x42\xdf\x68\x78\xa7\xb8\x8f\x3d\x58\xed\xaa\x68\xc2\xb7\x97\x1c\x55\x10\x88\x96\x3c\x37\x45\x3a\x79\x7d\x7a\x81\x62\x21\xf5\x55\xc2\x6c\xf9\x53\x46\x09\x68\x99\x7c\x94\x75\x3f\x68\xab\xfc\x00\x57\xe7\x9b\x2e\x6f\x01\x6a\x5d\xfe\x91\x9b\x44\x85\x70\xbc\xec\x23\xf1\x55\x83\x8f\x6c\x27\x99\x54\x45\x90\xe9\x28\x4f\x4b\x56\xc8\xd4\x34\x76\xae\x5d\xa6\x65\xf8\xa5\x3d\x92\x89\x99\x1f\xe2\x0f\xcb\x38\xec\xdb\x91\x3f\x65\x06\xee\xe7\xa0\x53\xb2\x61\xc0\xd7\x97\x2f\xdb\x24\xac\x73\x4d\x93\x1d\x13\x6f\x83\xc9\xc4\xa3\xec\x98\xfa\xc5\xe2\x4b\x9c\x65\x95\x6c\xf1\x2d\xce\xe7\x62\x90\xc4\x83\xfb\x3c\xe7\xb0\x04\xc5\x7b\x97\x16\x27\x71\x00\xb3\xe2\x33\x25\x17\x05\xd1\x91\xc7\x24\xbf\x84\xaa\xa0\x51\x29\x48\x74\xc3\xf7\x98\x94\x2e\x71\x77\xbd\x28\xdd\x23\x95\x42\x9e\x09\x4b\xc5\x97\x6a\xbf\x0b\x09\x92\xe9\x15\x56\x61\xaf\x24\xa1\xc8\x28\xfc\x26\x51\xe7\xc4\x89\xe8\x92\xc7\xa9\x67\x45\x57\xa5\x89\x71\x1f\xc4\x79\xd2\xb6\xc8\x2e\xf1\x88\x6c\x62\xd0\x55\xc9\x22\x19\xdc\xf7\xb3\x44\x26\x1b\x70\x0b\x91\x7c\x96\x7d\x84\x2c\x04\xf2\x34\x63\xb5\xfe\x80\x43\x33\x50\x7e\x03\x78\xab\xc9\x2e\xfc\x25\x28\x53\xbf\xce\x7e\x2c\x38\xa6\x36\xa5\xda\x84\xb5\xea\xe0\xb8\x07\xc2\x2f\xaa\xfd\x91\x1d\xa2\x16\x55\x62\xd0\x3b\x71\x8a\x72\x60\x85\xbf\xf8\xb2\xe2\xbd\x1b\x4c\x42\x54\x44\x83\x0f\xf1\x85\x46\xdf\x9a\xdb\xfc\x4b\x86\xae\x72\x2d\x90\x60\x98\x54\x78\x04\x18\xd4\x43\xb3\x77\x0b\x5c\x75\x5b\x53\xd9\x82\x23\xda\x9f\x71\x17\x84\x74\x6d\x68\x64\xb3\xc8\x47\x93\x14\x34\x2e\xba\xad\x0e\x5e\x11\x2e\x16\x29\xbf\xb8\x11\x25\x01\x8a\x6d\x60\x39\x6f\xd4\xb2\xb7\xa6\x9b\x1f\x68\x99\x5d\x5e\xc6\xef\x34\xa7\x14\x76\x00\x93\x4c\xc8\xec\x7e\x80\x6f\x64\xa5\x92\x04\x01\x06\x5e\xdc\x65\xc1\x73\x7d\x5d\x64\x9f\xb0\x57\x37\x2d\x78\x9a\x08\xad\xd1\xad\x28\x12\x2f\x56\xdd\x73\xb3\x88\xcf\x28\x23\xaa\x92\x9b\xef\x56\xd9\x4b\x07\x9a\x72\x6a\x91\x05\xed\xf6\xd3\x0d\x29\xd9\x4b\x6c\x95\xd0\xf4\xd4\x1a\xeb\x35\x84\x3e\x9e\x63\x49\xc5\xcc\x88\x5a\x63\xea\xc4\x8f\x86\x32\x0c\xf7\xc8\xaf\xfd\x93\xf5\xbe\x8c\x35\x9e\x3f\xb5\x60\xce\x86\x65\xb7\xd4\x43\x82\xb2\x2a\xef\xa6\xee\x9a\x83\xa5\x22\x87\x7f\x3d\xbe\x80\x6e\x3b\x02\xf1\xc8\xfa\xd8\x88\x86\xfd\x9b\x9a\x68\xf9\x85\x9a\x1c\x8f\x32\x4b\xb1\x15\x51\x61\xc6\x0f\x84\xc7\xa1\x0c\x43\x01\xe5\x80\x7f\x99\x6e\x98\x71\xd8\x6b\xb1\xe6\x07\xe7\xcd\xb2\xff\xd4\xb5\x82\xb4\xca\x6f\x0e\x68\xfd\xb2\xd2\x7c\xfb\x24\x70\x77\x41\x72\xe3\x76\x58\x58\xd6\x59\x2b\x15\x71\x39\xd5\xc5\xe2\x8e\xde\x1d\x5f\x68\xda\x89\xbb\x15\xe5\x63\x4c\x20\x81\x42\xd9\xfa\x4d\xd4\x0b\xfe\x28\x9d\x07\xd3\xec\x05\xd2\xe8\xb8\x8c\xe5\x81\xaa\x5f\x02\x51\x65\x91\x6d\x39\xf4\x53\xc9\x11\xeb\x4d\x44\x58\xfe\x79\xcb\x7a\x14\x39\x0b\x67\x36\x60\xae\xa6\x9c\x37\x41\xf1\x94\xf8\xc5\x46\x77\x52\x42\xd4\x24\xfd\x59\x6a\x6c\x28\x55\x87\x63\x94\xf9\xab\x35\xbf\xd9\xed\x5e\x4c\xb5\x95\xf7\x73\xb9\x42\x15\x2c\x14\x57\x9c\xb0\x6c\x44\xe7\x94\x84\x9a\x37\x63\xfd\xf3\xd3\x4d\x83\xf8\x85\x99\x9f\x8c\x23\xc4\x95\x29\x34\x43\x2f\x19\x15\x77\x4d\x2f\xa3\x5e\x00\xdd\xd7\x95\x31\xc0\xa1\x74\xed\x52\xb6\x87\xff\x7a\xf5\x15\xee\x67\xaf\x5d\x2a\x03\x70\x6d\xf9\x43\x65\x91\xe8\x42\xc5\x64\xd3\x41\xc2\xde\x62\xb3\x71\x33\xa9\x24\xef\xa0\x61\x0b\xf9\x45\xa6\x52\x7f\x8d\xda\x93\xb2\x54\xf7\x2f\x5d\x18\xe7\xd0\xbe\x67\x0a\x41\x7b\x35\x4f\xd8\xce\x50\xa6\xfa\x02\x77\xdc\xff\xaa\x6a\x13\xd0\xe0\xf5\x49\x69\x17\xee\x70\x01\x29\x24\x12\x9f\xb2\x6f\xfa\x1e\xe6\x9c\xa2\x13\xba\x2b\xac\x80\x3c\x3f\xdd\x5c\x76\x7a\xc6\x1f\x2d\x92\x43\x49\x1e\xd1\x6c\xe5\xee\x88\xcb\x51\xbf\xe2\x2f\x00\x39\xd4\x4b\x01\x49\xa8\x54\xb5\x52\xe8\xb1\x6a\xa1\x32\x40\xb4\xcf\x1b\xa6\x48\x95\xc4\xb8\x9c\x91\x43\xa4\x87\xcb\x82\xb4\x6e\x82\xe1\xa2\xe5\x1a\x86\x70\x4d\x6e\xaf\xfa\x9a\x70\x7f\x46\xbf\x3a\x59\x54\x94\x8c\x57\x6d\x13\xbd\x8f\x5b\xa6\x72\x15\x0f\x82\x00\x25\x57\x52\x17\xaa\x57\x1c\x92\xfa\xaf\xca\x90\xff\x27\x7d\xe6\x3d\x20\xcf\x93\xb1\x5c\x23\x65\x66\xf9\x94\xd2\xb5\xea\x28\xc5\xd3\x42\x8b\xca\xa6\xf8\x96\xeb\xa1\x9a\xa1\xf8\x9c\x11\xa3\xd4\x2b\xbe\x26\x07\x28\x97\x28\xbe\xc6\xbe\x57\x0c\x28\x27\x80\x68\x8a\x35\x8a\x1f\xa1\x4e\xf9\x88\xe2\xf5\x2a\xb4\x7c\x81\xe2\xa4\xf7\x73\x99\x56\xc1\x75\x65\x49\xbf\x2a\x96\x95\x46\xa9\xca\x35\x83\x85\x39\xca\x43\x1a\x75\xce\x2b\x65\x96\xa6\x24\x63\x96\xe2\x9c\x66\x41\xf2\x5f\x8a\x5a\xf5\xf5\xd8\x67\xf2\x6f\x6a\x13\x88\x29\x6f\x57\x83\x42\x47\xe4\x9e\xaa\x7d\xab\xe4\xb2\x2e\x95\xaf\xf7\x6f\x59\x88\xb2\xd2\x55\x25\xdd\xa3\x00\x4a\x46\x95\x26\xfd\xb5\xc2\xa9\xca\x89\x7a\x47\xce\x49\x45\xa3\x7e\x4d\xfa\x4f\xc5\x62\xdd\xe9\xe4\x09\xf2\x4e\x5d\x69\xec\x1b\x79\x99\xf6\x14\x48\x25\x9f\xaa\xf5\x0d\x3d\x2d\x6b\xd4\x94\xac\xda\x22\x5b\xae\xae\xf2\x09\x94\xee\x57\xf9\xba\x8e\x48\xeb\x14\xaf\x8b\xef\x76\x78\x57\xbd\xcc\xb7\xb7\x25\xd4\x6e\xcd\x7a\xd7\x52\xdf\x60\x4c\xbd\xdb\x6c\x87\xda\x13\xda\x1d\xbb\x11\x0f\xa3\xb3\x6d\xfb\x30\xd8\xd5\xfd\xd6\x7e\x42\x64\xd0\x7a\x33\x8c\x02\x5f\x59\x60\xf4\x62\xec\xf4\x38\xa1\x3b\xc7\x75\x5f\x46\xd0\x48\x04\xeb\x8a\x0f\xb5\xbd\xad\x9d\x9e\xcf\x6e\xf5\xaa\x1f\xc9\xba\xea\xac\x81\xd4\xa5\x9e\x6a\x1a\x82\x87\x27\x98\xed\x0f\x50\x39\xd1\xe9\x8d\x5f\xb1\xbd\xab\x47\x2c\x9f\x89\x31\x41\x9b\x4d\xe7\xa9\x3e\x2b\x11\x86\x2e\x66\x88\xc7\x7d\x1d\x9a\x5b\xb8\xcc\xaa\x09\x16\x98\x8a\x5b\x5b\x77\xd6\x57\xe5\x17\x3b\xff\x80\x2f\x65\x6d\x6c\x2e\x81\xd5\xa7\x6e\x70\x6c\x45\xfc\x4e\xe0\xdb\xfe\x43\xbf\x8a\x8e\x6e\x0c\xc6\x2f\x5d\x3d\x68\x49\x22\x09\x83\xf6\x98\x82\x68\x2b\x57\x72\x0d\xf3\x98\x63\x1e\xbf\xb5\x6f\xb8\xa7\x97\xed\x55\x9f\x15\x1c\x2e\x5e\xed\x2c\x80\x2d\xcc\x1b\x6b\x3a\x85\x88\xcd\xaa\x71\x64\xa3\x28\xa9\x68\xdb\x28\xe6\x5e\x42\x56\x63\x32\x5e\x11\xbd\xcc\x62\x25\x41\x57\x77\x98\x4e\xff\x9f\x00\xb8\x00\x68\x32\x51\x00\x00\x6c\xfb\xec\x96\x1e\x08\x48\x83\x20\xdd\xdd\x0d\x83\xb1\xee\xee\xfd\xeb\xfe\x63\xc9\x68\x10\x04\x1b\x0b\xbb\x15\x3d\xdb\xb3\xbb\xbb\xbb\xcf\x6e\xdf\x27\xe2\x84\xed\x75\x3e\x90\x36\x07\x2e\xb2\x3f\x91\x3f\x41\xa5\x59\x5f\xa9\x33\xdd\xc7\x22\x1f\x75\x5b\xcb\xd7\x77\x7c\x63\x8c\x28\x96\xb7\xaf\x60\x7e\xc8\x7b\xd4\x56\xca\x7e\x9e\x35\xaa\xe5\x3d\x6f\x74\xca\xdf\x66\x48\x50\x1b\xff\xc2\xf5\x49\x74\x36\xda\xd6\x58\x2e\x15\x85\x9d\x71\x38\xe4\xb9\x81\x27\x6c\x9b\x54\x11\x28\xb3\xe5\xae\x76\xac\x3b\x09\x99\xa2\xff\x53\x3e\xab\xed\x07\xb7\xa8\xe8\x43\xeb\x6a\xde\xd3\x3c\xa0\x85\x24\x68\xce\x5c\xd3\x3c\x4b\x84\x4e\xd9\xe3\xba\x24\xc9\x8e\xdf\xd7\x48\x97\xd5\x47\x2b\x1d\x77\xe4\xd6\xb0\xbb\xf6\x64\xe5\xdf\xc0\x6f\x56\x58\x63\x44\x1d\x42\xee\xea\xee\xb9\xaf\x83\x33\x8c\xa5\x65\x61\xcd\x5f\xa4\xa9\x45\x25\x4d\xd7\x65\xbc\xbc\xff\xb9\xf6\x01\xbd\x99\x15\x8d\x6b\xe4\xb7\x53\xb4\x4e\x9b\x32\x2d\xbe\xcf\x51\xae\xda\x11\xad\xb0\xfd\xd5\x64\x84\xff\xcf\x0a\x6a\xff\xcc\x2e\x47\x3e\xea\x77\xfb\xc6\xc1\x88\x31\xc7\xa3\x08\x9a\x66\xba\x5e\xba\xde\xa5\xd6\x70\x0b\xef\x34\x2a\xb5\x53\x72\x37\x3a\xcd\xda\xed\x99\xee\x0e\x8b\x8e\x95\x82\xb1\x5b\xf4\xa1\xf1\x4e\x9b\xde\x30\x34\x5a\x6f\xa5\x18\xae\x87\x87\x5b\xa6\x19\xcf\xcd\x6e\x81\x77\x9a\xb6\xfb\x36\x41\x46\x73\x9d\xc7\x7a\x30\xc7\xfc\xb9\x94\xed\xd4\x82\xd9\x85\x3a\x87\x05\x14\xe4\x96\xda\x97\x81\xad\x19\x47\x6d\xff\x80\xbb\x53\x22\xac\xd7\xc0\xb7\xf1\x32\xcb\x17\xc8\x2b\xda\x60\x19\x0f\xe5\x86\x97\xc0\x6f\x20\xda\xec\x63\xd0\x61\x88\xeb\x7b\x1e\xdc\x0b\x45\x7b\x7c\x31\x6f\x00\x5f\x97\x8e\x70\xb4\x23\xd7\x0b\xb3\xec\xab\x91\xb3\xb9\x01\xb6\x4b\xc8\x9e\x8c\x35\xd6\xcf\xc8\x40\x8a\x87\x75\x06\x32\x3f\x5e\x64\xc9\x47\x4c\xd1\x10\x22\x41\x30\xe1\x24\x98\x81\x4c\x9b\xfd\x1c\x2a\x87\x37\xfb\xbe\x05\x49\xf0\x64\xcf\x09\x66\x0e\x44\x2e\x19\xb0\x1f\xb6\x3d\x2a\x1c\x63\x7b\x60\xdb\x91\x3b\xc6\x36\xd5\xa6\xce\x58\x6c\x8d\xb1\xa5\xa4\x4c\xb4\x54\x59\xbf\xc6\xab\x91\x0e\xeb\x92\xe8\xf9\xf0\x39\xeb\xdc\x70\x18\x3a\x6b\xe9\x09\xf2\x02\x8f\x20\xd7\xfd\xbc\xcc\xaf\xe0\x6b\x9e\xc1\xe6\x69\xd0\x9e\x62\xfb\xe2\xae\xfa\xf8\x7c\xf5\x42\x7e\xc3\x87\x6c\xf7\xbe\x3c\xfc\xb1\xb4\x86\xf9\xe9\xa4\xd3\x89\xda\xee\x99\x34\xaf\xb9\x7d\x9d\x87\x99\xab\x22\xb5\xed\x25\x5c\x65\x48\x58\x4b\x97\x70\x9d\x7f\x9b\xeb\x9e\x6c\xb4\xf7\x3a\xe7\x44\x25\xd6\x6d\xba\x2d\x59\x7b\xb6\x98\xb7\x88\xdd\x50\x9e\x4f\x5b\x80\xc6\xdd\xcf\x1e\xd5\x9b\x4f\x74\xa4\x55\xf4\x54\x51\x08\x89\x9a\x79\xe9\x74\xd5\xdc\x25\x1d\x7f\x58\x97\x23\x6d\x6d\xbd\x3c\x49\x48\x4a\xf3\x1f\x11\xc3\x7f\xb5\x0b\x23\x93\x7b\x1f\x75\x2c\x53\x9a\xdd\xe2\xad\xf7\xb4\xfd\xc5\xb9\x0b\x13\x71\xdd\xf9\x59\x7d\xa9\xc4\x21\x59\xaf\xe6\x67\x91\xcd\x69\xe9\xdd\x04\x9a\x5f\xa2\xa4\x0b\xcf\x9c\x30\x77\x71\xc7\x1c\x4e\x56\x64\x73\xeb\x3d\xfe\xda\x90\xa2\x66\xac\x98\xe8\xbf\xaf\xf1\x30\x10\xe6\xfd\xc8\x11\xa8\xfc\xe0\x86\xb6\xea\xb4\xe7\x8a\x3d\x7b\x57\x91\x73\xf2\xc7\xf6\xbc\xa7\x56\x65\x6d\xea\x8e\xa7\x2b\xd2\xa6\x74\x29\x98\xcf\x12\xd1\x1d\x3d\x9c\xf6\xb9\x5d\x6d\x2d\x7c\x55\xe4\xbc\x16\xba\xc8\x19\x42\x6a\xfa\x9f\xf4\x1f\xff\x67\xce\x16\xc5\x34\x1f\x2f\xbb\x97\x9a\xe2\xd6\x65\x59\xa2\xdb\x5f\xd4\xd3\xc3\xa7\xdf\xcf\x5b\x3c\xef\x3a\xf3\x5a\x56\x59\x57\x0e\xfb\x42\xea\x91\x8e\x85\xdc\x4f\x89\xbe\x6d\x77\x04\x45\x73\x95\x2d\x1f\x44\xe7\x22\x5b\x9b\x9e\x4a\xb5\x21\x40\xe3\x6a\x39\x29\x60\xba\xa3\x4a\x55\xe9\x83\xb5\x8d\xd6\x06\xb9\xdd\x43\x76\x1b\x26\x14\x65\xcc\xc3\x71\x87\xe7\x25\x76\xde\xe6\xf5\x67\xbe\xee\x20\x08\xaa\x53\xb5\x6d\xe7\x45\xbe\x09\x6f\x5a\x23\x25\x6e\x73\xf1\xcd\x64\x59\x6a\x64\x93\x4b\x26\xd7\x84\x38\x9d\xb5\xaa\x91\x01\xf9\x76\x2f\x4d\xa7\x4f\x9f\x75\x88\xee\xb3\x7b\x3c\x7c\xd3\x48\x28\xac\xef\x10\x4a\x56\xe5\x6e\x68\x9f\x21\x7d\x98\xb9\xa6\x75\x37\x80\x4a\x2d\x6d\xa9\x92\x4b\x12\x2e\x37\x5d\x54\x3c\x98\x4b\x74\xa5\xa8\x24\x91\x6b\x9c\x16\xcd\xf8\x90\x93\xf6\x66\xed\xd3\x80\x01\xab\x51\xbf\x0b\x35\x09\x59\x62\xcc\x77\xdf\x0c\x6d\x31\xdd\x2e\x0c\x6a\xfd\xa0\xd6\xe6\xaa\x5a\x36\x6a\xe6\x66\x6a\x9b\x01\xcd\x8b\xd4\xa8\xa6\x10\xed\xa6\x84\xe3\x8d\x67\x74\xae\xb9\x6c\x27\x47\xaf\x8c\x3c\x63\x7f\x69\x60\x84\x8e\xb5\x79\x1a\x4d\x81\xa3\x2c\xb1\x26\x3b\x4a\x0e\x77\x98\x13\x3d\xfc\xc1\xeb\xe6\x37\x85\x1e\xcd\xd7\x4d\x3f\x72\xd3\x9b\x56\x9a\x13\x33\xa3\x5d\xa0\x59\x96\xf2\xb9\xb1\xcc\xbc\x2b\x61\x99\x73\x1c\x38\x76\x6e\x83\xfd\x22\xd8\x10\x79\xc5\x66\x05\x17\x87\xce\xb5\x3c\x07\x9f\x05\x96\x22\x89\xd0\x0c\xd4\x3e\xe8\x2c\xf8\xc1\x83\x05\x96\x80\x67\x0b\x0e\x37\x3d\x87\x85\xb9\x13\x5d\xfb\x60\x79\xe6\xb4\xc6\xe5\xb0\x3c\xe5\x91\x53\x01\x23\x09\x3d\x8e\x74\x78\xfe\x5c\x9c\x7d\x26\xdc\x1f\x79\xdf\x7a\x0f\x5e\x14\x5a\x6a\xa9\x87\xad\x81\x62\x78\x2f\x5c\x89\xba\x0b\x09\xa1\x13\x1e\x1a\x70\x22\x14\x51\x20\x6f\x9a\x6c\xc5\xe7\x3c\x6c\x7c\x65\x4d\xce\x1c\xe2\xbc\x62\x9d\x90\x72\xcb\xb1\xca\xf2\x29\xa1\xd7\x2e\xb3\xdc\x9a\xcb\xb6\x61\x2d\xeb\x23\xbf\x58\xe7\x5a\xf8\xa1\x42\x64\x8f\x65\x48\x60\x1f\x1c\x8f\x48\x7d\x87\x81\x3f\xe1\x1e\x8f\x6e\xf3\x56\x68\xc7\x82\x1c\xc2\xac\x2a\x4a\x7b\x08\xf1\x6e\xed\x7c\xdb\x53\xf2\xd6\xfa\xa3\x86\xff\x51\x2f\xe0\xe6\x48\x57\x32\x02\x88\xbb\x98\xff\xb2\xfa\xa8\x78\xac\x0f\x17\xcf\x0c\x2b\xcd\x12\xf4\x70\x31\x69\x17\x25\x63\x85\x6d\x91\x87\x80\x97\xd2\xe7\x28\x8d\x3a\x56\x69\xeb\xcb\xc6\x85\xd7\xfe\x6e\x23\x11\xa6\xd6\xbf\xb7\x85\x91\x66\x62\x6f\xea\x19\x14\x0a\xe1\xb3\xd4\x9b\xf6\x80\x12\xc5\x2c\x65\x5a\xe8\xb6\x86\x41\x8e\x8c\x3d\xa6\xe4\x3b\xff\x32\xef\x6e\x5a\xb3\x18\x10\x1d\x8c\x5c\x0a\x28\x65\x7b\x51\x7c\xd5\x13\xd5\x90\xde\xa4\x86\x64\xcc\x3f\xad\x8d\xb8\x02\x9c\xd4\xca\x22\x68\x88\xd3\x75\x3b\x49\xff\x91\x1f\x48\x1a\xa9\xf3\x69\xe7\x19\xe7\x19\x5c\xe6\x9d\x86\x6a\xb6\x89\x3b\xb5\x64\x3d\x7f\x94\xa0\x31\xad\x52\x74\x41\xe2\x16\x69\x90\x7d\x05\xf6\xa2\x78\x2a\x8b\x6a\x65\x8f\x00\xdd\x44\x9e\xdb\xfc\xbc\xfe\x03\x95\x89\xbc\xc0\xea\xe8\x2e\xad\x98\x10\xcb\xbc\x26\x96\x92\x7d\x39\x39\xf4\x87\xb4\x0c\xde\x7e\x4c\x1b\xb3\x5f\x48\x2a\x89\xe4\x32\x25\xb3\x52\x1f\x09\x2d\xc0\x90\x48\x8c\xf4\x85\xe2\x2f\xaa\x51\xb9\x4e\x93\x34\xcf\x55\x3d\x89\x3d\xb3\xa9\xa8\x76\x13\xe7\x2c\xdc\x5c\x2f\xe7\xe9\x35\xd9\x58\x40\x10\x27\x02\x08\x2b\x45\x63\xe9\xff\xa3\x4c\x15\x3f\xaf\xbf\x4b\x3f\x2c\x7d\x54\xbc\x98\x7d\x11\xf8\x91\xda\x28\x48\x54\xfa\x47\x16\x48\xae\xaa\x65\xa8\x93\x8a\x93\xda\x0f\x9d\xe7\xca\xff\x11\x83\x8d\xff\x56\xf5\x49\x96\x43\xe9\xb5\x8b\xa5\x87\xd5\xa8\xfa\xbb\xb2\x07\x42\x13\xae\x56\xee\x41\x4b\x22\x8d\x56\x54\xd7\x27\xd0\x86\x28\x17\x14\xcf\x62\x61\x54\x3f\x53\x73\x79\x7f\x35\xec\xc8\x7c\xf1\x55\xed\x27\xdf\x99\xf2\xbf\xfa\x81\x76\xb8\x58\xaf\x27\x3a\xfa\xca\xb6\xe8\x97\x99\x33\xaa\xa6\xe8\x1f\x29\x71\xb5\x2b\x0d\xee\xfc\x1f\x18\x99\x81\x48\xf9\x8b\x37\x18\x7a\xea\x2a\xc8\x67\x0d\xd7\x8b\x1a\x19\x3a\xa3\x67\xea\x28\xae\xda\x88\x89\xc4\x8b\x06\x8c\x5b\x7c\x11\x79\x80\xc9\xbf\x35\x33\xff\x8b\xe3\xae\x6d\x71\xb1\xd5\x11\x65\x04\xcb\xd3\xed\x2a\xf9\xf9\x6a\x77\xdb\x20\x6f\x45\x5d\xa4\xf5\x2f\xf9\x0d\x16\xb2\x46\xa1\x11\x92\xaf\xa5\xaa\x68\x1c\xdd\x0d\x21\xa6\x5c\xe1\x90\xe1\xea\x48\xa1\xf0\x31\x84\xf7\x7d\x00\x0c\x80\xe2\xe6\x33\xb9\xd0\xbc\xa5\xd6\x94\xc2\x8c\xae\x04\x43\x4c\x69\x60\xc7\x20\xb0\xb4\x32\xb6\x7d\x3a\x77\x7e\xad\xa1\x95\x46\x9e\xd5\x30\xb2\xb9\xad\xf6\x27\xe1\x9a\x6b\x51\xe1\x51\xda\x74\xa7\x36\xe5\x21\xbb\xd9\x1e\x1d\xb9\x4a\x88\xb7\xdc\xf0\xcb\x00\x04\xb0\xaa\xb9\x24\x67\xe3\x02\xa7\x65\x4b\x81\xb0\xf7\x98\xfe\x40\x09\xa1\xe7\x3e\x90\x56\xa1\x99\x77\x99\x9b\x59\x73\xb5\x73\x0b\xe9\x31\x46\xd8\x2e\xac\xbd\x47\xa8\x6a\xf9\x51\x78\x88\xba\xb6\x29\x27\x75\x14\x7b\xae\x93\x16\x79\x51\x88\xb2\x61\xfd\xa4\x40\x25\x92\xd4\xf4\x3b\x67\xe6\x52\xd8\x42\xcc\x3f\xb3\x58\xaf\x87\x8a\xf7\x2c\xcc\x00\x46\x95\xdf\xeb\xbd\xcf\x9d\x51\x93\xd7\x43\x21\x9d\xab\x7f\xdc\xb5\xbd\xf6\x2e\xfe\x62\xfb\xd9\xc2\x0b\xd4\xdc\x96\xe6\xd4\x24\xd6\x45\xd7\xec\xa8\x89\x82\x2b\x76\xad\xdf\x76\xc0\x1b\x59\xde\x63\x23\x41\x55\xcc\xe6\x9b\x94\x09\xb5\x4b\x90\xdb\xd4\x5d\xf5\xa7\xb4\xa5\xf4\x05\xb8\x38\x71\x06\x73\x27\x71\x2f\x7d\x3d\xfb\x0f\x95\x86\xa1\xf3\x1a\x99\x89\xc5\xaf\x84\x0e\x2e\x3b\xf5\x94\x64\xbf\x70\x5d\x64\x81\xbc\x41\xe6\x83\x02\xd4\x38\xe5\xe5\xee\x25\x84\xce\xda\x37\xcd\x6e\xa4\x92\xfa\x07\x48\x28\x25\x10\x7b\x5c\xb3\x91\x16\x47\x78\x21\xda\xc9\xd0\x51\x82\xe9\x29\xac\x37\x74\x04\x33\x8c\xbb\x92\x3d\xbe\x78\xa5\xe0\x04\xef\x49\xea\x3c\x49\xb8\xe8\x6a\x64\x14\xf0\x54\xf6\x1a\x25\x56\x4f\x54\x15\xcf\x5b\x83\x1b\xc0\x74\x37\x95\x10\x1c\xb8\x12\x58\x4c\x6a\x21\xbc\xd2\x8c\xa7\x9c\x22\x1f\x15\x45\xd2\x93\x69\xff\xd0\x8e\x32\xaf\x31\xcf\xd5\x2f\xe5\xec\xe2\x8e\x2f\xa6\xf0\xff\x0a\x5c\xa9\x0c\xb1\x4b\x12\x1a\x39\x03\xe0\x02\x2f\x50\x5a\xd5\x46\xd5\x9b\xce\x9b\x98\x49\xa4\x8f\x8d\x6b\xb1\x59\xd4\x08\x68\x28\x7e\x1e\xbd\x41\x75\x9e\xe4\xc6\x5c\x25\xf4\xa5\x9c\xe1\x4c\xa3\x3e\xa2\xef\xe0\xf5\xd5\xbd\x60\x3d\x15\xe6\x16\x3d\xe2\x71\x24\xee\xa9\xa3\x45\x05\xc0\xb8\x88\x5f\x32\x8a\x32\x10\xb5\x5a\x79\x43\xa3\xed\x18\x53\xbb\x88\xb5\xcd\x39\xb5\x7e\x32\x47\x69\xee\x6f\x58\xc5\x8b\x54\x2e\xc3\x73\xf8\xaf\x05\x01\x24\x92\xf0\x38\x75\x3c\xb5\x53\xbc\xb5\x2e\x95\x39\x5e\xba\xbb\x88\xca\xb9\x05\x3c\x49\xd9\x2c\xf8\xab\xf4\x8f\x78\x2b\x45\xab\x9b\x51\x4f\x15\x7f\x74\x61\x6d\xe8\x2a\x92\xe8\xb7\xbd\xad\x76\xb2\x24\xc2\x54\x55\xf7\x54\x5a\xaf\x30\x35\x3c\x92\x19\xf8\x73\x09\xd3\x80\x03\x94\x0c\x72\xab\x62\x24\xba\x93\x5e\xa5\xa4\x16\x3e\x61\xb3\x54\xd7\x52\x04\xfc\xd3\x9a\x86\x88\xd7\x12\xac\x6e\xb8\x6f\xb4\x22\x49\x7f\xb5\xc5\xa3\x2c\x44\xd7\x68\x35\x57\x46\xe8\x5e\x1b\x24\x35\x18\x7d\x3e\x70\xa1\x6e\xa3\xde\xc6\x1d\xc4\xa6\xeb\x6f\x91\x27\x13\xa7\x18\x42\x6b\x77\x51\x83\x0d\xa6\x42\x22\xb3\xd5\x70\x3b\x25\x8f\x57\x60\x8c\x8f\x9c\x22\x0e\x31\x6e\xf6\xdd\x26\xaf\x35\x15\xba\x7e\x16\xad\xb0\x5f\x45\x56\x94\xfe\xb1\x67\xeb\x2e\x54\x1a\x6c\xcb\x65\x84\x5a\x7f\xeb\x57\x8e\xa2\xfe\xb7\xb5\x8a\x34\x16\xef\x6d\x99\x57\xf3\x85\xac\x47\x2e\x14\x3c\x64\xcc\x81\x7f\xa5\x4c\xe1\x46\xc2\x13\x23\xc3\x45\x24\x28\xc7\xcf\x03\xb8\x00\x82\x8d\xda\x02\x54\x17\x19\x4e\x28\xde\xd8\x39\x45\xab\x2d\x67\xb5\x6f\x90\xce\xa9\x4e\x6e\xf3\x61\x4b\xea\x8a\x5b\x20\x62\x3e\xb6\xb7\xe9\x4c\x0d\x40\x9a\xdb\xf8\xa3\xa0\x9f\x1e\xec\xf8\x9e\x12\xce\xc1\xda\x2e\x44\xb2\x85\xe7\x2c\xfd\x7e\x1a\xa0\x19\x16\x3b\x3f\xe6\x17\xf6\xc5\x41\x9b\x8b\x6e\xcd\xb7\x6b\x87\x96\x2d\xe8\xde\x2b\x39\x59\x65\xec\x3a\xce\xf6\x41\x2f\xea\xd8\x47\x1c\xd7\xf0\xb7\xad\xbb\xa6\x9e\x38\xd0\x92\x5f\xb0\x88\xb6\xc7\xb5\x25\xa5\x84\xfd\xcb\xf1\x31\xb2\x55\xd8\x66\x73\xf7\x1b\x00\x44\x48\xa8\x73\x69\xde\xc0\x12\x14\x44\x2c\x4a\x5e\x14\xaa\xd9\x53\xfa\x6d\xc1\x18\x49\x47\xe5\xfd\xf9\x47\x58\xdf\xd0\x63\xbb\x49\x84\xef\x0d\xb2\xce\x8b\x35\x04\x62\x48\xfb\xe4\x82\x2d\xb4\x8a\xe6\xaf\x29\x1a\x76\x6f\xe3\xfa\xc8\xd3\xc2\x3c\x7b\xbc\xdf\x0b\x20\x1e\xe9\xec\x5c\x46\x1d\x5e\x25\x6c\x24\xd1\xa8\xb5\x03\x60\x3f\xfd\x79\xfd\x59\x15\x96\xd9\x81\x8b\x13\xf4\xb1\x0d\xc4\xbd\x54\x2a\xb7\x97\x4a\xad\x13\xf1\xbf\x31\x53\x8a\xb0\xa2\xdd\x5c\x76\x4a\xaf\x74\x50\x38\x18\x61\x51\x4c\x95\xa5\xa0\x92\xd5\xe7\x54\x63\x3a\xce\x91\xbd\x6b\xef\x3a\x97\x52\x06\xea\x2f\x9a\x7f\xd0\x88\xd8\xad\xca\x63\x8c\x04\xc2\x0d\x01\x8a\x55\x4c\xf1\xa4\x7c\xe6\xb4\xd2\x95\x75\xd3\xf9\xee\xec\xe1\x45\xee\xa2\x21\xbc\xdb\x29\x5c\x69\x98\xe8\x46\x84\x52\xde\x0f\x8c\x40\xa5\xaa\x11\x95\xa6\xfd\x23\x31\x19\x03\x38\x6e\x93\xde\xe3\x66\x99\x4b\x28\xe7\x09\xfb\x95\x31\xb4\xcb\xe4\x55\xfc\x05\xcc\xc9\xb4\xa5\x14\x2b\x1b\x64\xee\x40\x0f\xf2\x62\x38\xdf\x0b\xaf\x08\xd3\x05\x86\x94\x14\x49\x8b\x24\x28\x82\x2a\x0f\x03\x7e\xa1\x4a\xd4\xa1\x6a\xf7\x36\x1f\xec\x16\xd2\x56\x7b\x36\x7e\x1b\xe5\xbd\xf1\x25\xf1\x0e\xdd\x4f\x31\x9c\x12\xcc\x94\xf0\xfa\x68\x1b\xd8\x0f\xc9\x1b\x98\x3c\x9e\x10\x3d\x9e\xc3\x14\xfa\x15\x12\xf9\x9b\xc4\x7f\x93\x9f\x8b\xab\x80\xa1\x11\x75\x40\x88\x32\x1a\x65\x52\xe1\x34\x8b\x5a\x08\xf5\x95\xac\x6a\xeb\xc6\x86\x1e\x8e\xa7\xc1\x81\x1f\xc5\xbd\x09\x5c\x27\x5a\xf9\x7d\xdc\xc5\x94\x32\xa1\x89\x74\x9d\x5e\x23\x96\xd5\x92\x58\x5d\x52\x6b\xc1\x23\x5e\x38\x70\x30\x79\x81\x68\xb2\x72\x6a\x44\xb9\xcc\x5f\xdd\x81\x3a\xa8\xb4\xe8\x4a\x9a\xd6\xd7\x06\x88\x94\x96\x39\x75\xeb\xc5\x9b\xf4\xb1\x0d\x78\xc9\x63\xd9\x76\xfc\x44\xd9\x14\xce\x7a\xd2\x38\x80\x44\x1a\x4f\xad\x97\x6f\xaa\xd9\xc3\xb8\xab\xf4\x2a\x90\x70\x06\x55\x2b\x92\x69\x82\xfb\x9a\xf4\x88\x0a\x69\xa8\x6e\xa8\xef\x54\xc5\x5e\xfd\x7f\x8d\x50\xc5\x4f\xed\x36\x38\xa1\xfa\xbc\x2e\x46\x2b\x45\x9f\xd1\x2d\x93\x7a\x60\x1e\xeb\xde\xb2\x73\xf1\x59\xfa\x1a\xc2\x0b\xd2\x03\xfd\x96\xea\x27\xb4\x03\x06\xef\xfc\xb7\xac\x97\x86\xd6\xe4\x4c\x3e\xd1\x38\x22\xc2\x20\xfe\x66\x5c\xec\x3b\x4f\x7e\xdd\x84\x76\x38\x4b\x0d\xb6\x13\xa0\xae\x62\x99\xad\x52\xfd\xa6\xfa\xad\xf5\xa4\x78\x6b\x1d\xc9\x1a\xc9\x1a\x8d\x1d\x6b\x99\x8f\x7f\x4d\xf8\x84\x7c\xa9\x8e\xa0\xa2\x90\xd2\x7c\x1d\xd3\x05\x77\x24\xcf\xe4\xe5\x42\x47\x22\x16\x88\x43\x21\x0f\xdf\xdf\xf2\x6a\x50\x6b\xfb\x5e\xf4\xa4\xd3\xcd\x3c\xa4\xac\xa2\xfd\x89\xaa\xa9\xf2\x46\xdb\x42\x91\xa3\x16\x68\xf5\x65\x4e\xc1\x54\x35\xf7\xe1\xe7\xe0\xc5\x4d\xc3\xab\xd6\x91\xcf\x37\x56\xe4\x67\x32\x20\x87\x30\x39\x92\x2b\xb1\x71\x22\x6e\x8a\xe6\x5b\x68\x7e\x14\xf9\x48\xb8\xc1\x26\x2c\x1a\x37\xff\xaa\xc9\x58\xaa\xee\xc9\x51\x8d\xaf\x9c\x38\xaf\x5d\x34\xab\x66\x6b\xe7\x66\xc6\xfe\xfa\x25\xed\x87\x71\x5f\x70\x17\x5a\x77\x57\x35\x93\xf3\x9b\x1d\xf9\x49\x8c\x29\x2e\xf7\xe4\x22\xee\x54\x87\x21\xe2\x8f\xa8\xc1\x7a\xc6\xaf\x0d\xb8\x8f\x4c\xb2\x4d\x2f\xe4\x2c\xda\x6c\x0a\x2b\xb9\xb4\xe0\xbc\x72\x5f\x05\xaf\xf7\x8c\xf0\x79\xcd\xd4\x9e\x45\x8c\xf9\xf5\x23\xe7\xd5\xe0\x9e\xe0\x32\x3b\x5e\x54\xb5\x91\xf6\xb7\x95\xe4\x57\xd2\x17\x37\x63\x92\x35\x9c\xf5\x8d\x31\x91\x89\xa2\x31\xb6\xa7\x7e\x17\x80\x65\x88\xce\x75\x87\x79\xa7\xaa\x07\xf1\x61\x7d\xaf\x3d\xa1\x7d\xc2\x49\xaf\x7f\x2e\x4d\xe0\xee\xc5\x25\xb1\xa7\xf0\x79\xc4\xed\x04\x8d\x30\x95\x5a\x57\x1d\x2b\xce\x63\xce\xc9\x7b\x2e\x6d\xe1\xa2\x13\x6f\xca\xa3\x85\xdb\xc3\xd6\xaa\xa6\xc8\x2a\x7d\xe8\xda\x12\x55\x9e\x6b\x3a\x23\xa8\xf6\x29\xac\x60\xb2\xea\x2f\x6b\xf1\xac\xb3\xd8\x6d\x92\x1d\x1c\x39\x61\x3f\x6b\x11\x2f\x9f\xfc\x91\xe0\x2e\x48\xa7\x57\x55\x3d\x10\x89\x59\x0f\xf2\x56\x4b\x1e\xf2\x76\x25\xae\x03\x06\x44\x87\xc3\xfa\x95\xab\x81\xf1\x3e\x7c\xed\x30\xd5\xaa\xc6\x5c\x9a\x04\xd3\x00\x1d\xa1\x5f\xc4\x8d\xd6\x9c\x60\x12\x09\x03\x92\x38\x76\x00\x59\xca\x0a\xe7\xba\xd3\xe8\xf8\x6d\xfc\x24\xa6\xa6\xaa\x5d\xd8\xca\x39\x9c\xc7\x91\x84\x0b\xca\x12\x11\xc0\x4d\x32\x22\xac\x4f\x99\x00\xfc\xf0\xd1\x6b\x36\xa8\x53\x1d\x03\xe4\x91\xa4\x34\x10\x4d\x59\x4b\x01\xd4\x20\x4d\x43\x5b\x2a\xf6\x61\x34\x31\xbe\x32\x73\x59\x67\xd9\x72\xdc\x7f\xdc\x04\xde\xe8\xca\x2f\xfc\xcb\x82\xa3\xb9\xff\x89\x76\x88\x77\x25\x66\x4b\x9f\xca\xce\x85\xb5\x2a\xb2\x94\x3e\x3e\xdb\xd5\xaf\x35\xdb\xec\x11\xf8\x8d\xcc\x01\xd3\x7f\xc4\x0e\x36\x47\x95\x46\xee\xe7\xa2\x84\xbf\xa8\xbf\x79\xef\x19\x85\x0c\x58\xf0\x18\xe7\xc3\x8e\x11\x3d\xab\x2c\xe5\xcd\x90\x4e\xcc\x05\x85\x19\x00\x2d\x71\x82\x64\xa3\xe2\x4a\x58\x9f\x3c\x47\xad\x46\x0d\x57\xa3\x74\x38\x6b\x57\x03\x20\xd4\x1b\x9d\xb8\xa5\xa2\x6d\xca\x61\x84\xcf\xe2\x67\x82\xc7\xe4\x16\x69\x14\xbd\x8e\x56\x2f\x6b\xc7\x56\x33\xf3\x81\x9f\x15\x6b\x38\x3c\x85\x39\xd7\x93\x7f\x55\x15\x9e\xf0\x48\x6c\x55\xbf\x0a\x5b\x0b\x94\x6b\x6f\xa2\x68\x2a\xb4\xfe\x0f\x52\x8f\x6e\xd1\xc4\xe8\x6d\x98\x11\x9a\x03\xf2\x0c\xec\x0a\x6d\x36\xbf\x81\xd0\xac\xdd\x4a\x1b\x41\x5e\xae\x4b\x6a\xc8\xa1\x3d\xd3\xed\x2e\x7f\xc8\xa2\xea\x8b\x72\x16\xf3\xa6\xeb\x1f\x24\xfc\x2b\x1a\x63\x70\x85\x5d\x97\xf9\x1a\x71\xa8\x1b\x4a\xa9\xa9\x18\xe2\x54\x47\x5a\x0e\x6b\xcf\xa0\x87\x58\x58\xb2\xed\xf5\xdf\x91\xdf\xdc\x3f\xb8\x40\xa4\x99\x72\x87\x68\x44\x82\x30\x75\xd4\x31\xf0\xc6\xf2\x38\xc6\x69\x38\x2e\x27\x8d\xb3\x07\x5a\x97\xb0\x51\xf0\x1a\xf2\x0b\xfb\x23\x2d\x06\xb7\xf8\xe6\x2a\xee\x80\x68\x70\x4a\xc5\xe6\xb6\x45\x1a\x4b\xf5\xb6\x56\x97\xd4\x88\xbe\xd3\x42\xe3\xbc\x6b\x88\x6f\xf6\x22\x7f\xc3\xef\x73\x9d\xaa\x5f\x46\x36\x37\xf2\xca\x76\xd1\xf5\x8e\xff\x72\x86\xb0\xd7\xd8\xf3\x12\x06\x05\x3e\x56\x67\x78\xbc\x64\x07\x72\xd6\x77\x89\xc2\x02\xcf\x34\xf3\xcb\xef\x75\xbb\xa9\xff\x54\xdd\xef\xda\x24\x9d\x80\xfe\x5f\x67\x18\xa7\x19\x23\x69\x87\xc8\x6b\xf0\x23\x5a\x8f\xd7\xf3\x49\xb7\x9b\xff\x94\xf5\xd0\x5e\x36\x4d\xca\xfe\xc1\x8e\x73\xde\x48\x38\xc3\x3f\x60\x77\x84\xd7\x4b\xa4\xd6\x08\xdf\x0b\x8a\x7a\xf8\x98\xe9\x63\x79\x76\xdf\x6e\xf5\xd2\xaa\xe4\xde\x49\x92\x33\xb5\x84\x9e\x1c\x0e\xa9\xfe\xdf\x79\xe5\x64\x1b\x8e\xd9\x99\x5a\x8f\x25\xe5\xb5\x4f\x2f\xeb\xa1\xd1\x5a\xfe\xc9\x99\xc2\xda\xd5\x34\x21\xe1\x2f\xbf\xc1\x19\x17\xee\x92\x78\xd9\x72\xfc\x26\x2b\x26\x23\xa9\x88\x88\xdf\x54\xb5\x5f\x9f\x25\xc0\xd6\x3e\x01\xac\x42\x52\xfd\x0f\x9e\x59\x64\xc5\xa5\x51\xc7\x88\xaf\x12\x37\x61\x82\xa4\xc5\xd4\xd2\xb2\x65\xb2\x37\xcc\xe0\xec\x61\xf2\xfb\xdc\x82\xb8\x23\xaa\xe9\xc2\x75\x21\x66\x8d\x5e\x86\xf5\xce\xd3\x47\xaa\x98\xf0\x69\xee\xc9\xda\x07\xba\x55\xbc\x73\xf5\x47\x65\x7f\x05\x23\xb0\x0b\xb9\x7f\x84\xd5\x84\x25\x94\x0e\xd1\x61\xf2\xa5\xfa\x83\x12\x22\x3d\xb2\xac\x42\x16\xc4\x3a\x9c\x75\x54\x9e\xc6\xeb\x8e\x5b\xa0\xec\x12\xad\x0d\xd1\x6a\x3c\x81\x91\xde\xc5\xba\x37\xaa\x1d\xb0\x2f\x67\x34\x26\x4c\x37\x8a\x9b\x8b\x3d\x27\x13\xf3\x56\x13\xf8\x5c\x95\x60\x1a\x79\x0e\xc5\x4d\xb8\x86\x16\x50\x8f\x11\x73\x98\xe9\xa5\xdf\xa4\x75\x9c\xd6\xac\x46\xa0\x59\xe0\x15\xa7\x56\x8e\x15\xdf\x0d\x91\xab\x37\x00\x4f\xbc\x71\xba\x45\xea\x4c\x50\xcd\x38\x44\x3c\xa4\xb1\xb1\x72\xc9\xdf\xa5\xee\xec\x97\x34\x7f\x4e\x2d\x77\x19\x43\x4f\xf6\xe3\x83\xac\xbf\x75\x36\x21\xc4\x5d\x54\x5a\x23\xde\x22\x10\x65\xb9\xc9\xc2\xc5\x9c\xb8\x3c\xf9\x13\x59\x7b\x88\x4a\x75\x50\xf1\xdd\xbb\x47\xfb\x48\xb3\xd6\x1c\x42\xed\x62\xec\x55\x17\xd2\x2b\x58\xf3\xc5\x5f\x99\xd1\x1c\x2c\xbb\x92\x1d\xc9\x4b\x22\x25\x73\xab\x05\xa9\xe8\xa3\xfc\x4e\x51\x75\xc9\x2e\xd1\x48\x49\x4b\xe6\xa0\x64\xbf\xec\x5b\x5c\x00\xb0\x53\x61\x0d\x69\x55\x1e\x53\x17\x79\x7f\xd4\xce\xd4\x95\x1b\x57\x92\xda\x04\x38\xe5\x1f\x8a\x59\xb8\x50\x74\x9f\x36\x5f\x74\x83\x55\xcb\xb8\x22\x89\x27\xe2\xd9\xc9\xd2\xcd\xe8\x09\xdc\xdd\x40\x5c\x49\x90\x80\x2b\xbf\x96\x49\x13\xd3\x95\xcb\xe3\xc6\xc9\x3a\xd4\xae\x90\x8d\x8a\xcb\xda\xc5\x3e\x68\x4d\x85\xfe\xa5\x7e\x03\xee\xb8\x6a\xbe\x22\x89\xf0\x45\x9d\x24\xcc\x25\x57\xaa\xf7\x32\x5e\x52\x6f\x68\x2a\x09\xe1\x8c\x46\xcd\x97\x5a\x77\x36\x45\xbb\xa8\x18\xe0\xd1\x75\x98\x8c\x9f\xc2\xe5\xfa\x90\xd8\x8f\x52\x4f\xc3\xc8\x90\x1b\xf2\x01\xe3\x10\x9f\x93\x6a\x8e\xc9\x5f\x7b\x06\x83\xc0\x8b\x80\x0e\xec\x4f\x18\xcd\xbf\x45\x58\x02\xfd\xa0\x6f\x22\xf3\xa0\x6d\x78\x7f\x1a\x09\xd2\xd4\xe4\x30\xf5\x50\x5c\xd1\x15\xce\x49\xf0\x7d\xc6\x0a\x41\x11\xb8\x39\xf6\xad\xf8\x07\x28\x0e\x1d\x05\x9c\x05\x13\x51\x11\xaa\x53\xe0\x4c\x8d\x0a\xfd\xab\xf9\xb9\xac\x1e\xb3\xbf\xe9\x27\x6f\x17\xae\xdb\xf5\x9c\xb6\x8b\x68\x6f\xbc\x84\xc3\x50\x56\x3a\x77\x56\x2f\xa7\xff\x74\x74\x16\xb1\xd9\x90\x9d\x98\xc1\xe7\x67\xd8\xc6\xc5\x3e\x17\x47\x5b\x96\x86\xc6\x01\x89\x48\x14\x0a\x51\x31\xa1\x23\x9a\xe1\xe8\xc8\xce\xb9\xd2\x97\xf5\xaf\xda\x5f\xf2\x2a\xb1\x27\xdb\xf4\x34\x1a\xe1\x58\xeb\x78\xdc\x0c\xf2\xfb\x66\x47\xb5\x9c\x8e\x6b\x1a\x5a\x54\xc2\xfa\xd4\xd8\x90\xc1\xe0\x1d\x77\x20\xb1\x3f\x44\x97\x6c\x4d\xa1\x68\xd9\x5b\x0b\x88\xda\xa6\x8a\x82\xe5\xea\x5d\xb5\xad\x3d\x5b\xa4\xcb\xea\xb3\xba\xfd\x79\x93\xb0\x7e\x5d\x02\x5a\x2c\x01\xd5\xb1\x11\xfb\x95\x5c\xde\x76\xa3\x9a\x45\x3b\xd8\xf2\xbd\xa8\x8c\xc5\x6b\x7a\x9b\xa1\xe6\x95\x37\xf6\xc7\xcd\x16\x71\x1d\x91\xa1\x16\x59\xbb\xb5\x13\xf5\x56\xf9\x00\x7e\xa7\x5b\x26\x35\x55\x7b\x01\x4f\x64\xc1\xe8\x00\xfe\x46\xd9\x57\x4c\x00\x9d\x04\xec\xc5\xe1\x70\x2b\xe4\x2b\x88\xc7\xaa\x6d\x8a\x0d\x54\x6a\xe1\x65\xe5\x3d\x66\x46\xda\x7f\x6a\x3e\x17\x1b\xa3\xd7\x86\x0b\x07\x83\x52\xf5\x63\x65\x0a\xaf\x91\xc6\x08\x95\x43\xfb\x48\xfc\x05\x3d\x0c\xc8\x93\x1c\xac\xbf\xc0\x8f\x90\x6e\xc1\xce\xa7\xdd\x91\xf5\x11\xe6\xe1\xa2\x80\x65\xe4\xe3\xd5\x3e\xf2\x0b\xf4\xc0\x42\xb3\x32\x80\x75\x20\x6d\x97\xea\x3c\xaf\x33\x86\xa7\xd9\x24\x5a\x17\x94\xa9\xdb\x08\x4c\xf1\x72\x37\xbc\x57\x9d\xd6\x7a\x88\x84\x98\x29\xb2\xf9\xe2\x06\xec\x1a\xde\x62\x09\x97\x90\x46\xab\x91\x4a\xc9\x43\xb1\x03\xb2\x3e\xea\x8f\xaa\x4d\xc0\x4b\xa6\x67\x61\xa0\x82\xc2\x51\xa6\x41\xaa\x50\xc1\xf0\x18\xb4\x26\x54\x7c\x3e\x28\x53\x97\x0f\x3c\xf6\x8a\x31\x2c\x55\x97\xaa\x11\x3e\x8e\xc8\x92\xa2\x04\x10\xb9\x89\x9b\x2e\x3c\x4f\xdd\x48\x0d\x12\xfb\x31\x26\x35\xac\x92\xb4\xb3\xfa\x2a\xaf\xca\xfc\xb8\xc5\x05\x72\xe0\x92\x20\x2c\x6d\xb2\xe2\xb2\x38\x2a\x26\x5a\x3d\x4e\xc6\x0b\xaa\xd5\xe2\x14\x4f\xbd\x4c\xfa\x87\x9a\xb5\xaa\x4a\x4e\x3c\xc3\x53\x32\x9c\xbb\x84\x79\x8f\x93\xcd\x8f\x61\xf7\x52\xb2\x04\x47\xb8\x0e\xcc\x55\x91\x86\xbf\xa8\x32\x4c\x92\x27\x3c\x95\xff\x46\x16\x2f\xf1\x4b\x3d\x2a\x57\xc8\x16\xc7\xb8\x29\x1f\x29\x72\x83\x94\x1a\x9a\x3a\xd0\xeb\xae\x7e\x86\x2e\x47\xf1\x91\x59\xc0\x4f\x10\xdd\x67\xbd\x14\xc0\x6c\x34\x67\xb3\xf0\x14\x99\xc1\x43\xc4\x59\x98\x49\x02\xb5\xe4\x6a\x85\x55\x64\x94\xa9\xf3\x25\x92\xd5\xf2\x94\x54\x04\xf0\x53\x86\xc6\x4c\x50\x1c\x51\xc7\x05\xad\x54\x8b\xb5\x3c\xef\x32\x5d\xa9\xfe\xaa\x1c\x4d\x5d\xa6\xf8\x24\xc4\xd0\x25\xca\x3e\xe6\x63\xa6\x40\x15\x4b\x0a\x64\xdb\x55\xcf\xeb\x47\x72\x4f\xa8\xb7\x95\x6f\x14\xf8\x6b\x6c\x79\x17\x45\x4b\xb5\x82\xd4\x18\x29\x55\x27\x8f\x19\x2b\x2f\xd3\xdb\x82\xee\xaa\x32\x0c\xeb\xbd\x0f\x6b\x09\xc6\x9f\x32\x88\x54\x03\x16\xf2\xcf\x51\x64\xa0\x1f\x63\x19\x6d\xa7\xf9\x05\x71\x12\x73\x9a\xf9\x62\x9d\x1f\xbb\xcb\x7c\xa4\xec\x0b\x2f\xc9\xbc\x2b\xaf\x44\x38\xd4\xbc\x3e\xe5\xa5\x64\x98\x79\x57\xcc\x68\x20\xdc\xbc\x37\x78\x92\x92\x66\xde\xe3\xe3\xa5\x19\x34\x5f\x97\xe6\x12\x82\x5d\x9e\xbc\xf5\x24\x4a\x63\x01\xbd\x87\x72\xc8\x89\x21\xc4\xd2\x33\x1d\x1a\xb4\x9c\xf9\xd8\x3e\xaf\x4c\xcc\xd9\x67\xdb\x91\xfb\x8a\x7f\xc8\xfa\x6f\xca\x2e\xd1\x6f\xcb\xa9\x98\xe1\x32\x1a\xb2\x3b\x78\xae\xe2\x28\xdc\xea\xc3\xd4\x94\x40\x32\xc9\x25\x7c\x6a\x9b\x3b\x2f\x9f\x68\x6b\xf9\x4c\x8f\x25\x7f\x6f\xde\x84\x7f\x46\x33\x35\x19\xd0\x69\xcc\x08\x57\x5c\x59\x21\xc7\xdb\xf9\x35\xf7\x02\x3f\xd6\xd1\x9b\xb2\x45\x64\xb7\x07\xc7\x4c\x95\x8d\xb0\xb6\x05\x97\x28\xb4\xc8\x35\x1f\xa7\x66\x32\xec\x27\xb1\xe3\x0c\x5d\x58\xee\x5f\xc2\xe5\x8e\x6f\xb4\xef\x64\x74\xbb\x1c\xbf\x97\x7a\xa3\xf5\x0b\x3a\x84\xe1\x6c\xa1\x95\x65\xb2\x91\xa6\x73\xb9\xd7\x79\xeb\x5c\x33\x53\x0e\x8b\x26\x38\x63\x63\xa2\xa4\xbd\xf6\x80\x60\x99\xc2\xdb\xf2\xd4\xe7\x1f\xf5\x3f\xf0\x32\x21\x51\x87\x54\xf7\xb1\x4e\xe8\xfa\xd0\x1d\xe4\x9d\xba\xdb\x18\x7b\x03\x57\x3f\x19\xb7\xa9\xea\x80\x1e\x4f\x9a\x59\xf4\xaf\xfe\x30\x75\x7d\x56\xb1\x21\x8f\xd9\x98\x70\xdd\xf0\x83\xbb\x33\xe2\xa5\xf1\xb2\x28\x28\xc0\xc7\x74\x58\xf6\xda\x43\x6d\x7e\xaa\x1e\x25\xb8\xa9\x1d\x8b\x2e\x62\xd5\x68\xf3\x30\xa3\xc9\x95\xda\x7e\xec\xd1\x86\x11\xda\x6f\x84\x3d\x55\x74\x1d\x8d\xfc\xaa\x48\xa5\x7b\x45\x2f\xc9\x1a\xaf\x77\xb1\x5e\x25\x6c\x34\x50\x79\xe7\x22\x1e\x1a\x71\xa2\xcf\x01\x01\x26\x36\xc0\xf3\x68\x34\xaf\x54\xc7\x08\xca\xd4\x2d\x98\x59\xcc\x0b\xea\x97\xd8\xd5\xa4\xbb\x1a\x16\x21\x16\xb3\x40\x73\x8d\xf4\xb5\x6a\x98\x96\x4e\xfd\x50\x14\xa2\x1b\xcb\xf4\xca\x3c\xa3\x3b\xc9\x01\x13\x5a\xf4\x7b\x05\x01\x11\xb7\x0c\x97\x25\x43\x03\x22\x8d\xbf\xe5\xc1\x1e\xab\xcc\x18\x75\x2f\x3f\x5e\x01\x12\x7e\x32\x0e\x2a\x83\xc8\x28\xe2\x75\xe5\x4b\x6a\x6e\xfd\x0e\xd5\x22\xfa\xfa\xca\x54\x35\x87\x55\x58\x08\x6b\x8a\xb8\x63\x33\xcb\xb5\x59\x82\x21\x09\x79\x3a\xbe\xd8\x27\xe2\xa2\x7e\xa7\x4c\x11\x50\x61\x9c\xae\x1c\xe5\xf1\xc1\xd4\xa7\xb9\xc9\x9b\x2d\xfb\x97\x3e\x8e\x7e\x0c\x68\x62\x3c\x25\xfe\x4f\x2e\x61\x1d\xac\xfb\xae\x20\x73\x8e\x54\xb4\x2b\xd9\xbc\x0f\x05\x3f\x55\x06\x61\x46\xc6\x0b\xf5\x3a\xf1\xf6\x84\x99\xda\x09\x32\x52\xc4\x05\x5d\x8b\x22\x2a\xc0\x60\xf0\x56\x87\x78\xd6\x1b\x4f\xe9\x88\x9c\xc7\x92\x31\xdc\x76\xda\x19\xc9\x2f\xfe\x18\x42\xa6\x6c\x92\x40\x5f\x97\x03\x24\x8a\xa6\x96\xbf\x95\xab\xc5\xa7\x0a\xd4\x8a\x43\xd2\xf9\x19\x0e\x55\x20\x60\x8f\x7f\xad\xde\xad\xd8\x12\x71\x43\x2b\x52\x7d\x09\x18\xd4\x07\x69\xeb\x3d\x0f\x1b\x87\xea\x9f\xb1\x99\x82\x16\x80\x41\x15\x0b\x37\xc9\x6b\x71\x7f\x44\x7f\x15\x91\xe8\x18\x09\x5d\x39\xb3\x7c\x82\xf4\xa5\xca\x33\xff\x28\x00\xaa\xc3\x33\xc6\x28\xe2\x34\xd5\xf1\x1b\x55\x23\xb4\x4b\x23\xee\xa9\x3f\xea\xfe\x04\xfc\xd4\xbe\x33\x90\xbc\xf2\x0c\x43\x8c\xcf\x99\x1f\xb8\x6d\x86\x6f\x94\x44\xde\x03\xe3\x14\xdc\x68\x41\x9d\x11\x55\x4b\x11\x7e\x34\x96\x95\x11\xc5\x83\x46\x7b\x7e\xbe\xb4\xd1\x78\x2a\x7d\x15\xd0\x64\x9a\x16\xef\x52\xf4\x98\x74\x11\xff\xa9\x4e\x99\xee\x04\x46\x6b\x87\x9b\x23\xbc\x96\xe8\xab\xcc\x5d\x8c\x4f\xec\x54\xdb\x7b\x72\x36\xe7\xb0\x8d\x85\x0d\xe0\x71\xac\x67\x6a\x16\x09\x66\x5b\x8b\x4b\xcf\x8b\xfe\x67\x39\x98\x77\x4e\xe2\x61\xc9\x4a\xa7\xc8\x8a\x90\x2d\xf1\x74\x79\x07\x12\x18\xf1\x55\xf9\x13\x06\x03\x71\x1a\x2a\xb4\xdf\xeb\x86\xee\x26\x34\x9e\x61\x64\xe1\x5d\x32\xd2\x43\xf6\x9b\xc6\x8d\x0d\x67\xb8\x4b\x9d\x97\x6b\xc8\x7c\xa6\x73\x68\xe9\x2a\x61\x89\x63\x56\xde\x76\xb1\xc8\x5e\x98\x5e\x23\xdd\x6a\xab\x8f\x67\xc8\x67\x5a\xd1\x91\x23\x95\x3d\x96\xb8\x40\xa1\x66\x2a\xfc\xcc\xeb\x93\x6e\x11\xb4\x86\x11\xc8\x5c\xd1\x5a\x44\xea\x65\xa7\xb5\x10\x1a\x3a\x38\x5f\x9a\x2b\x6b\x52\x79\x3b\x9a\x52\x4a\xe7\x09\x7a\x5d\xd3\xf3\x36\x8a\x4e\x3a\xdf\xa6\x63\xa5\x3e\x8e\x81\x78\x25\xd0\x61\xcf\x8a\x0c\x50\x86\x5a\x37\x07\xf6\xaa\x37\x22\x6f\xbd\xc3\x75\x79\xf0\x5c\xf2\x30\x2b\xa5\xa6\x0c\x4b\xb7\x3c\xad\x8b\xab\xc5\x5b\x6c\x0d\x41\xe5\x41\x96\xd1\xf8\x8a\x82\x55\x48\x1b\x69\x30\xf3\x35\x32\x97\x86\x4d\xfa\x17\xbe\xcd\xca\x89\x7e\x04\x77\xf0\x90\x90\x5e\x98\x24\x1e\xe5\x47\x81\xe3\x81\xcb\xee\xb9\x70\x82\xfa\x31\xa9\xc3\x32\x06\xbd\x10\x3b\x1a\x59\x8a\xa1\xd4\x4e\x45\xea\x70\xe1\x65\x8f\xe1\xaf\xc4\xd9\x05\x62\x78\x31\x85\x98\x79\x00\xc6\xd3\x4f\x25\xad\x80\x03\xd8\xda\xe8\x8b\xd0\x37\xbe\x3a\xa4\x1f\x7a\x24\xde\xea\x27\x81\xae\xc8\x63\xdc\xe9\xd0\x5b\xf5\x7b\x92\x17\xbc\x01\xe3\xdd\xd0\x0f\x37\x60\xf7\xd4\x1c\x84\x51\x04\x5a\xd9\x12\xe8\x26\x39\xba\x20\x0a\x5a\x46\x4b\xc9\x6c\x86\x74\x4c\x65\x12\x08\x11\x39\xef\xa3\x0f\x41\x35\x82\xb5\x21\x6b\x20\xac\x64\x89\x9f\x05\x62\xc9\x2f\xba\x5b\xa1\x5e\x4d\x36\xb1\xd0\x7c\x8b\xa0\xc5\x3c\x37\xff\x43\x3a\x54\xe3\x6b\xde\x49\x9d\x58\xf6\x3f\xf3\x3a\x7a\x53\xfe\x80\x79\x1d\x2b\x33\x33\xc8\xbc\x93\xeb\x9b\x94\x68\x3e\x2d\x88\x8d\x5e\x64\xfe\x26\x16\x87\xfc\x03\xc6\xc9\x1e\xfb\xed\x04\xc5\x4a\xa7\xfb\x0d\xf0\x92\x96\x4e\x48\x35\x12\xa9\x7f\x31\xd3\x8c\xe5\x8c\x29\xd5\x66\x23\x96\xe5\x55\xaa\x35\x42\x9c\x8c\xfc\x28\xe3\x2e\x5e\x53\xc6\x71\xe3\x47\xe1\xb0\xc4\x1f\xa6\x64\xf1\xb2\xe8\x0e\x53\xb7\x4c\x1d\x72\xd9\x3c\x4c\x21\xf3\xfb\x62\x16\xa9\x5d\x1e\x29\xe6\xdf\xba\x73\x78\x9a\x6e\x1f\x67\x7a\x3d\x56\x77\x83\x3b\x58\xf5\x4c\x3f\x89\x4f\x2a\xf9\x4f\xcf\x17\xa2\xf2\x76\xe9\x2f\x89\x87\x67\x48\x0c\xe9\xd2\x51\x89\x07\x0d\x9b\x81\xb0\x68\x97\x31\x43\xd1\x1e\xf2\xd1\x78\x53\x3d\x69\x56\x8a\x49\xa3\xed\xf4\x58\x60\x9e\x6b\x28\xc0\x25\xaa\x4b\xa5\x9e\x75\xd5\xea\x05\xb2\xb4\xca\x27\x9a\x59\x40\x5d\x49\xa0\x66\x9d\x5c\x9d\x37\x4d\x8b\x51\x0c\xa6\xff\xa7\x1b\xa3\x9a\x92\x28\xd0\x1d\x57\xeb\xa2\xa5\x7a\x8b\xd6\x3b\x74\x9a\xa1\x56\x77\x64\x96\xdd\x18\x6d\x20\x7a\xce\x36\x05\x98\xa6\x61\xdd\x15\x38\x6d\x3f\x9a\xac\x78\xa0\x9b\x51\x99\xa8\xb4\xeb\xd4\xc5\xed\xaa\x22\xdd\xc7\xdc\x15\xea\xd9\x7a\x28\xbd\x5b\xe3\x65\xf0\x4d\x4c\xd1\xce\x30\xec\x8d\x66\xe9\xdc\x8c\xd6\xd0\x74\xbd\xbf\xa9\x68\xd6\x39\x43\xaa\xe9\xb1\xa7\xcd\xc8\x34\x37\x37\xe4\x00\x13\xe0\x9e\xda\x7e\xe0\x00\x6c\xa9\xe8\x92\xb7\xc3\xf8\xe2\x91\x0a\x05\x9c\x90\x9b\xad\x14\xc1\xee\xe9\x18\x55\x13\xf4\x2b\x71\x9a\xfa\x08\x74\x23\x9a\xae\xf9\x0d\x0d\x86\xa2\x75\x85\x90\xd5\x7f\xb4\xde\x09\xc5\x78\xee\x37\xdc\x07\x2f\x62\x7e\xca\xa2\x6d\x07\x6b\x49\xb2\x57\x36\x51\x45\x19\x70\xcc\x36\xb2\xe8\xb2\x7c\x8d\x75\x7e\xee\x2c\xc5\x4a\x6b\x58\x7a\x89\xf2\xba\x65\x6f\xe2\x44\x75\x90\x25\x3b\x5a\xa4\xd1\x20\xdb\x43\xb9\xda\xfb\xc8\x64\x7f\x5f\x7d\x12\x9c\xe2\x79\xc9\xd0\x0f\x61\x30\x27\xa4\xda\xc6\x8a\xda\x08\x59\x82\xf3\x74\x85\x3f\x30\xcd\x19\x5d\x74\x18\x78\xe3\x70\xe5\x06\xc8\x1f\xda\x6f\xa5\xa3\x95\xc1\xf6\xf0\xc4\xd9\x2a\xd8\x46\x8d\x6e\x54\xbf\xb6\x6a\x42\x9b\xb5\x3c\x8b\xd8\xbf\x4a\x77\x03\x09\xf1\x1a\x66\x28\x87\xee\x55\x0d\xb6\xb5\xd4\x3c\x29\x23\xb7\xe6\xd7\xdd\x2d\xec\x69\x99\xd9\xf0\x34\x87\xdf\x74\x9f\xe0\x99\x3e\xda\xb5\x82\xdc\x99\x08\x35\x0a\xe9\xc5\x31\x2b\x9d\x91\xec\x82\x70\x9e\xfd\x1c\x7f\x5d\xe0\xbf\x36\xbb\x24\x03\x35\xdc\x9a\x2d\xff\xea\xa6\xb4\xb8\x69\x1e\x57\xd9\x5b\x13\xeb\xc6\x97\x45\xb5\x8c\xc5\xdc\x2d\xe4\x37\x7d\xc6\xed\xcf\x29\x72\xdd\x24\x1e\x4e\x7b\xd7\xb8\x93\x3a\x3e\x51\xee\xec\x65\xb4\xc5\x2c\x73\xc8\x39\x0d\xe1\x5c\x7b\x9c\x40\x1b\x78\xdd\x36\x5c\x72\x04\xe5\x65\xb9\xad\x88\x75\x5b\x88\x1c\xd3\x5c\xa8\x2a\x6f\xbe\x89\xa1\x95\x7e\x6a\x3a\x89\x9b\x5c\x98\xe0\x3a\x47\x38\x9d\x13\xd0\x78\x9c\xbc\x2c\xed\x9c\xf3\x10\xed\x9f\x44\xb2\x63\x2f\x6b\x7a\x4c\x8f\x7d\x33\x77\x20\x5c\x60\x73\x09\x1d\x81\x2f\xac\x80\xb4\x15\x95\x6c\x61\x28\x06\xdd\xfe\x45\xf8\xda\xf1\x95\xbb\x5d\xf5\x84\xd0\x52\x6d\x23\x81\xd4\x5d\x70\xcd\xa9\xa7\x4e\xcc\x3e\xe9\x58\x43\x5f\x91\xe6\xb0\x5f\x65\x01\x89\xd1\xb6\xbf\x5c\x75\x0c\x68\x9b\x25\xd8\x14\xce\xb7\xc6\x49\x26\xcc\x9e\x60\xc9\x06\x16\xa3\x94\x08\x43\x95\xef\x3e\x03\x5e\xa8\x9b\x5c\x39\xc4\xb1\x9d\x2a\x2c\xb9\x6e\xff\x4a\x77\x16\x60\xec\x69\xcc\x6d\xd9\x14\x5b\x17\xfb\x73\x5a\x82\xf5\x0d\x8f\x95\xf0\xd5\x9a\x2d\x1c\x13\xc3\xb4\xb4\x8a\x2f\x87\xcb\x91\x53\xb2\x5b\xb3\x13\x91\x11\x8a\x3f\xa8\x41\x18\xa3\x09\x70\xe7\x43\x07\xf5\xbc\x8a\x02\x9b\x98\x75\xb7\x24\xdb\xba\x85\xb3\x21\xff\x8e\x75\x02\xcf\x9a\xf5\xd3\xd2\x22\x10\xa4\x3e\xb7\x4c\x15\xe9\x12\x8e\x20\xcd\x92\x6d\x31\x15\xc8\x68\x60\x7c\x38\x04\xf3\x14\xdb\x66\xb3\xa0\xb3\x6a\x2e\xea\x0f\x54\xa7\x1b\xef\xbe\x0f\xfc\xcf\x70\xb4\x9c\x07\xbf\x10\x8f\x2d\x6e\x86\xd5\x12\x41\x3e\x1a\xf6\x90\x9e\xcd\xb2\x42\x17\x81\xa8\xd4\x36\xa8\x51\xbe\x3a\xa1\x0d\x2a\x56\xe6\xc6\x64\x41\x23\x55\xef\xc3\x97\x81\x0b\x34\x77\x66\x6f\x07\xe3\x75\x67\x7c\xa5\xe6\x6f\x86\x79\x1e\x0d\xe6\xb3\x26\x71\xd9\x0e\x70\xb4\xaa\xa7\x78\x88\xf9\x90\x9a\x95\xf7\xc8\xdc\xa1\x09\xcf\x4a\x37\x0b\x35\x1f\x53\x29\xe6\x3a\xed\xd9\x04\x89\xb9\x48\x77\x2c\x26\xd6\x9c\xac\x3f\x14\xbe\xc7\xec\x6d\x78\x34\xfb\xa3\x79\x98\xf1\x87\xef\x5e\xd3\x5f\xd3\x15\x8f\xfd\xa6\xbf\xe6\xad\x65\xa1\xc6\x27\xa6\x03\x45\x46\xe3\x4a\xf3\xc4\x3c\xc0\xd8\x6c\xae\xc8\xbc\x6b\xb4\x98\x9d\xa9\x73\x8d\x9d\xe6\x63\x09\xb5\xc6\x75\xa0\x5b\x4c\x92\xf1\x22\xc8\x0c\xbf\x6e\x7c\x0b\xae\x0c\xf2\x36\x4d\x00\x1f\xfb\x8d\x32\xa5\x82\xf7\x3d\x47\x98\x24\xe0\xf9\xd2\xfd\x86\xef\xb0\xb2\x28\xc5\x70\x14\x6e\xcb\x2b\x34\x6c\x81\x17\x64\xfe\x6b\x18\x80\xe7\xa7\xfa\x1b\xf6\xc0\x4b\x12\x70\x86\xe7\xf0\x82\x98\x12\x63\x30\xdc\x19\xfe\xc5\x88\x83\xe5\x41\x45\xc6\x2e\x38\xd3\x2f\xd8\xf8\x00\x3a\xe8\x19\x64\x8a\x85\x32\x4b\x69\x86\x28\xeb\xc2\xa2\xa1\xfa\xdf\xd6\xee\xbc\x70\xfd\x2b\xab\x3a\x73\xb7\xfe\x81\xb5\x28\xd5\x5d\xff\xdc\x3a\x35\x81\x63\x88\xb6\x5c\x8c\x61\x1b\x10\x8b\x2e\x22\xc8\x70\xc4\x32\x3a\xa8\xc5\x38\x11\x91\xf9\x51\x8d\x0a\xb8\xd5\x33\xd7\xf8\x0c\x5a\x50\xd2\x37\x6f\x77\x6d\x54\x41\x4b\x97\x5f\x7d\x50\x4e\x55\x07\x84\xcd\x4d\xb7\xb5\x0f\x23\x28\x92\x06\x5a\xb9\xe4\xdf\xb1\x6b\x9a\xcf\xd3\x07\xa3\x58\x4d\x01\xec\x83\x21\xcf\x1b\x33\x05\xb1\x01\xff\x73\x00\x92\xe3\xde\x3f\x6c\x2b\x14\x0a\xb7\x08\xcb\x2b\x6d\x69\x09\xb5\x4b\x52\x97\x57\xc0\xee\x78\xdd\xe0\x96\x13\xd5\xce\xc3\x8f\x4d\x57\xb4\xfe\x25\x4d\x4c\x5a\xd8\x62\xa4\x92\x63\xd7\x34\xfd\x66\xbc\x8d\x12\xb8\xb8\x9c\x83\x21\x6f\x9d\xfd\x82\x77\x01\x7e\xf6\x57\xd2\x4c\x9f\x19\xb6\x54\xc5\x52\x37\xb4\x65\x9e\x36\xb4\x04\xd5\xe9\x8f\x71\x15\xc4\xb5\x6f\xc3\xa5\xe7\x8c\x6e\x2b\x21\x8e\x4d\x27\xb6\xfc\x47\xbe\x9d\xd4\xd8\xec\xa4\xfd\x89\x5d\xd2\xe4\xcb\xa2\x45\x89\x1a\x97\xf3\x86\x87\x7c\x71\x7c\x17\xbe\x0f\x48\xb4\xd7\x4b\xff\xf8\xc4\x59\xf7\x2b\xbd\xdc\x74\x96\x38\x6d\x43\xf1\xa1\x36\x33\x21\x2e\xff\x69\x6b\x2a\x69\x51\xf6\xc9\xe6\xbf\x54\xdf\x74\xff\xa6\x6b\xf4\x7f\x92\x78\xae\x25\xac\xee\xd8\xe6\x46\x2a\x77\x6d\x94\xcc\x39\x43\xf0\x29\x74\xa8\x7d\xa9\x04\x1f\x40\xb5\x79\x03\xdf\x7c\x44\x96\x5d\xaa\x6e\xb7\xc3\x08\x55\x57\x5b\x8c\x6a\xfe\x40\x9d\x9b\xdf\xd0\x74\x87\x4e\xc8\xae\x74\x9d\x62\xf6\xa4\x1d\x6d\x3c\xc1\x7e\x92\x34\xcb\xb9\x9b\xc7\x88\xa5\x39\xfa\x85\x1e\x51\x14\xbb\x49\xfc\x35\x74\x86\x2d\x06\x98\x1a\xd0\x64\xb9\xa2\xcc\xf3\xd9\x84\x2c\xd7\xf0\xdc\xc7\xc2\x88\x7e\x4d\x91\xcb\xb5\x84\xc5\xc9\xbb\xd3\xd8\xc7\x29\xc9\x7a\xea\xec\xe7\x65\xa6\xc9\x1d\x27\x04\xd1\x89\x2f\xed\x77\x44\x95\xb1\x39\xb6\x77\x92\x25\x51\x58\xeb\x67\x60\x52\xe8\x1c\xcb\x09\xc5\x85\x80\x7d\x48\xb7\x7a\xa1\xcf\x67\xb8\x57\x57\xe0\x4e\x82\xd6\x1b\xfe\x14\x5e\x74\x64\x8a\xb2\xf2\xaa\xec\x32\xf1\xae\x2c\x93\x6d\xa7\x34\x31\x2d\xc0\xf6\x3f\xd9\xfa\xc4\x4d\xd6\x6a\x79\x6e\x6c\x94\x65\xb1\xe2\x67\x14\x1b\x79\xac\xfa\x37\x94\x0b\xbf\xd3\x5c\x0a\x0c\x84\x3e\xeb\xee\xa1\x64\x50\xbc\x61\x93\xfb\x47\x10\x31\xb5\x15\x92\xad\x18\x25\x37\xf7\xb3\x65\x50\x55\x93\x95\x61\x09\x57\xe7\xa4\x7e\x47\x96\x69\x66\x27\x2e\x46\x66\x68\x67\xc7\x46\xc1\x0b\x75\x19\x51\x10\xec\xa3\xc7\x87\xf6\x42\x4c\x43\x7f\xa0\x18\x1c\x30\xde\x46\xdd\x04\x83\x4d\x27\x3d\xf0\xe6\x6d\xe6\x1d\x85\x23\x90\x31\xc6\x90\xdc\x5e\x18\x31\xf6\x64\x3e\x86\x3d\x4c\xa3\x52\x77\x41\x2b\x4d\xdc\x44\x0b\x94\x61\x7a\x1c\x1b\x00\xbe\x34\x57\x47\xb9\xc0\x5e\xf3\xd1\xd0\x93\x60\x30\x98\x12\xb8\xd3\xbc\x1d\x5c\xe8\xeb\x63\xe6\x83\xeb\x3d\x56\x99\x43\xc1\x5d\x05\x47\xe1\xe9\xe0\xf6\x5c\x00\xea\x02\xff\xcb\x3c\x01\xcd\x85\x22\x53\x57\x82\x47\xa1\xfa\x44\x2d\xc8\x80\x9a\x63\xc3\xc0\xd9\xd0\xf6\xa8\x65\xe6\xd7\xd0\xad\xd0\x97\xe6\x0e\xe8\x75\xe0\x53\x73\x0a\xf4\xd4\x37\xd3\x3c\x09\x6a\xf1\x38\x68\x7a\x0e\x45\x14\xb4\x40\x99\xc8\x60\x6e\x35\x78\x10\xb9\x98\xf9\x0f\x48\x42\x9e\xa7\x2e\x35\xbf\x47\x1e\x27\x6a\xcd\x4e\xe4\x6d\x6c\xb6\x99\x86\x5c\x8f\x3a\x6d\x4e\x45\x76\x87\xa1\x4c\x9f\x10\x60\x76\x90\x69\x03\x32\xc5\x57\x6e\x5a\x0a\x63\x3d\xae\x9b\x16\x41\x8d\xf9\x48\x9f\x5b\x2d\x2b\x7b\xfd\xfc\xac\x7a\x5c\xfa\xd1\xee\x1a\xac\x31\x99\xdc\xd5\x4c\xd8\x15\x77\xb3\x63\x0b\x25\x2b\xba\xba\xed\x30\x63\x54\xb8\xb3\x65\x90\x33\x35\x68\xa0\x89\x2e\x68\x9a\xe5\x6a\x0c\x92\x86\x79\xbb\xd9\xef\x29\x0e\xce\xfc\x6e\xed\xd7\x1a\xf2\x33\xe6\xdf\xaa\x53\x64\xbb\x7a\x26\x37\xe4\xa7\x6f\x9c\x97\x89\x4f\x4b\xae\xeb\x6c\x21\xe5\xc7\x5d\x6f\x3f\x4a\xed\x89\xc6\xb5\xbe\x63\x46\x87\x77\x37\xff\xe4\x8e\x0e\xda\xe3\x3a\x22\xcc\x9a\xb5\xcc\xd9\x23\x6d\xf3\x8e\xb0\x4b\x14\x0f\xdd\x66\x5a\x4b\xb4\x15\x79\xef\x7b\x7a\x31\xdb\xb3\x69\xf3\xee\xe0\x98\xe9\xad\x5d\x81\xc4\x98\xe4\xa2\x0e\x84\x32\x26\xee\x7a\xdb\x05\x7a\x78\x34\xa9\x75\x0a\xab\x37\x7c\x65\x73\x02\x2f\x27\xe8\x94\xcb\x5d\x94\x34\x6b\xa7\xe3\xb7\xac\xd0\xbb\xd0\xf6\x56\x59\xeb\x36\xd7\xf2\x44\xab\xca\x3b\xd6\x75\x8d\x50\x9a\x9d\xd6\x59\x4f\xda\x98\xce\x6f\xbf\x49\x0d\x4d\x0e\x69\xe3\xd1\xcf\xc6\x1d\x6b\x79\xca\xda\x18\x4d\x6a\xae\xe2\x5e\x08\xdf\xe9\x5a\x2a\xf4\x0f\x7a\xee\xfc\x47\x32\x7f\xd6\x7d\xfb\x4e\x79\x9c\xb7\xd6\x7a\x5f\x75\xd4\x4d\x60\x19\xaf\xe3\xe7\x25\x76\x60\xa9\x53\xb2\x0e\xb4\x0f\xa1\xe7\xa4\x0f\x6f\xdd\xc0\xb4\x26\xdd\x6c\xa1\xb0\x6f\xc5\x75\x34\x0f\xe1\xd1\xa3\x73\x5c\x6d\xc2\x90\xf0\x6d\x8d\x63\x25\x53\x82\xfe\x3a\xf2\x80\x34\xff\x49\x36\x8e\x52\xe5\xbd\xcb\xf2\xaf\xa6\xd3\x6d\x23\x12\xac\x3f\x94\x7b\xbc\xf5\x1b\xcb\x2d\x0b\xd3\x72\x80\x33\x3a\x6d\x59\x73\x0b\x6f\x74\x52\x5b\x13\x4d\x30\x32\x8e\xe5\x0a\x12\xcd\x89\x8e\x70\xde\x92\xb4\x85\xef\x70\xe8\x81\xc9\xc1\x5e\xb6\x6b\x8a\x67\xfe\x79\xd6\x00\xf5\x21\xef\xbf\xc8\x56\x1d\xdf\x7d\x38\x5c\x64\xf4\xcc\x0d\x6b\xda\x25\xdc\x98\xf9\xca\xb5\x52\x9c\x98\xc6\x6a\x5c\x2a\x39\x99\xc4\x73\x2e\x90\x55\xc5\xd5\x3a\x9a\x80\x6f\xd1\x89\x76\x93\xe2\x58\xf8\x7d\x1b\x45\xb5\x32\x98\x6d\x79\xaf\x39\xe3\xbf\x09\x51\xe8\xde\xfa\x68\xe0\x52\xc3\x61\x77\x04\x0a\x34\x2d\xcd\xf9\xe8\x3c\xa6\x80\x33\xf7\x39\x9e\x29\xc1\xb4\x1c\xc7\x74\x95\x25\x09\x63\x8f\x57\x23\x71\x35\xb6\x4a\x4d\x5f\x74\x95\x55\xa7\x3d\x11\x31\xcd\xd2\xa7\xfb\x15\xbc\x1d\xa1\x18\xd8\x01\xee\xb0\xb7\xf1\xb0\xcf\x6b\x28\xc1\xb4\xdf\xfd\x2b\x58\x6c\x1e\xcc\x39\x6a\x2f\xd1\x3f\xcb\xb4\xd8\xda\x0d\x8a\xb4\xff\x59\x5f\x1b\x87\x27\xcd\xb1\xce\x36\xda\xe3\x52\x2d\x44\x93\x57\x34\x1a\xd9\x69\xda\x10\x11\x8d\x8c\x35\xa7\x05\x7f\x80\xa7\x9b\xaf\x06\xc8\x20\x0f\x10\x8b\x4a\x02\x15\xa0\xd6\x23\xca\x7c\x0e\x74\xe6\x6c\xb6\x95\x98\xab\x33\xd5\xd6\x6e\xf3\x40\xea\x47\xcb\x2f\x70\x78\x52\xa0\x25\x05\xac\x8d\x4b\x44\x74\xe0\x96\x68\x22\xfc\x0c\xfc\x1d\x51\x08\x97\x40\xb9\x21\x33\x21\x35\xa4\x0b\x58\x0e\x2e\x81\xfa\x50\x78\xd0\x1d\x6a\xf0\xc8\x31\x77\x40\x43\x72\x96\x58\xb9\x70\x62\x26\xdf\xb2\x13\xe6\xa5\x3e\xb5\x78\xc1\x3d\x49\xfe\x08\x01\x3e\x1c\x97\x09\xf7\xc3\x1f\xa3\xa5\xb0\x37\x32\x2e\x82\x06\x75\x21\xd3\x42\x32\xc1\x6b\xf0\xaf\x80\x8b\xa0\x07\x7c\x04\x05\x99\xd7\xc2\xb1\x1e\x78\x73\x26\xd4\xd5\xf9\x0b\x5b\x57\x3e\xbf\xb1\x16\xef\x59\xf5\x19\x5c\x44\x78\x8b\x2e\x55\x05\x92\xc3\x31\xb7\x04\x89\xd4\x55\x78\x17\xe5\x12\xa3\x94\xcc\x45\x1f\x60\x67\xd3\x55\x85\x20\xef\x1c\xfb\x65\xf2\x79\x91\x43\x40\x0a\x3f\x21\x3b\x28\xf9\xea\xb3\x45\x25\x52\x3c\xea\x74\xc7\x44\x55\xa7\x38\xe7\x61\x3d\xd1\xd5\xe6\xfb\xf8\x50\x0c\x45\x09\x12\xbb\x71\x8b\xf8\xeb\x28\xf9\xa4\xa1\x14\x3c\xdd\x8b\xda\x86\xc6\xb1\x72\x99\xd5\x85\xf1\xdc\xef\x5c\x56\xb2\x4b\xf8\x42\x68\x09\x5f\x2f\xcb\x97\x9e\xf4\x59\xae\xf2\x52\x92\x3a\x3c\xeb\x46\xa2\xbf\x39\x6e\x61\xfc\x31\xe7\xcd\xde\x58\x1a\x6e\xa1\xe2\x1a\x61\x04\xd1\xc1\xf7\x25\xdd\xa5\x2c\x26\x3f\xa4\x3e\xa1\x3f\xa9\xfd\xc2\xcc\x60\x63\x0a\xde\x72\x3d\xf8\x13\x93\x2b\x84\xe9\xa2\x1b\xe1\xa0\xf4\x5f\xd9\x29\x9f\x7e\xe5\x6e\xd5\xe8\xb6\x39\xd5\xe3\x08\x64\x7b\x60\xad\x86\xb4\xc3\xb8\xa2\xde\x8d\x3a\x4c\xde\xd1\xf0\x87\xae\xe4\x8d\x27\x04\xb2\xc6\x93\x7e\x90\xad\x9c\x03\xb5\x29\xf4\x24\xfe\x82\x02\x2e\x1b\x2f\xea\x4b\x7a\xce\xbf\x2b\x3d\x18\x4e\x94\xac\x57\x4c\xf2\x39\xa8\x78\xa2\x5e\xd2\x62\x2e\x9f\xc8\x08\xb3\xae\xa8\x3c\xc3\x9a\x60\xc0\xd7\xec\x63\xbf\x07\x54\x75\x1f\xb9\x17\xb8\x28\x2c\x87\x7f\x99\x14\x49\xf4\x17\x3e\xab\x69\xa3\x46\x48\xbc\xf3\x5f\x33\x57\xca\xc4\x49\xbd\x3c\x83\xfc\x61\x78\x9d\xb8\x45\x85\xa0\x86\x28\x46\x6a\x69\x4d\x57\x8a\xab\x04\x1a\x4b\x7c\x19\x5e\x78\x59\xef\x57\x39\x4f\x1c\x29\xe3\xd6\x4e\x97\x28\x39\x59\xf5\x17\xa5\x77\x89\x12\xdc\x7d\xa0\xa8\xfa\x2b\x39\x5d\x7e\x3a\xdf\xcc\x18\xa3\xe4\x26\x91\xb8\xd1\x6a\xaf\x70\x9a\x08\xd2\x8e\x42\x61\xe4\x73\xf5\x01\x8d\x5b\xf3\x16\x68\xc6\xc1\x73\x8b\x46\x6a\xba\xb4\x59\xa5\xcb\xb5\x5e\x92\x7f\x2b\x2d\x5a\x23\xeb\x46\xed\x6a\xed\x37\x02\xa6\xc1\x53\xc7\xab\x8e\x21\xdc\xd1\xbd\xcc\x9f\x40\x1b\xaf\x97\x25\xe5\xb0\x3b\xf5\x7f\xc3\x5b\x84\xa5\x86\x23\xa8\x73\x00\xce\xb8\xce\x21\xcf\x5a\x6e\x8d\x07\x4b\xf2\x14\x96\x8b\xea\x55\x45\x5a\x0b\x5f\x4c\x29\xdb\x80\xdc\x67\x0e\x54\x07\x23\x54\xbc\xa0\xee\x1d\x7c\xa6\xaa\x09\x3f\x06\x8e\xcf\xdb\x4a\x69\x81\xda\x93\xe2\x59\x42\xf0\x41\xf8\x41\x81\x09\x64\xf9\x66\xcb\x1e\x9b\x7f\xd9\x83\xd2\x8f\xb5\x0f\x9a\x27\x64\x5f\x69\xeb\x50\x99\x0a\x3c\x5a\x29\x22\x6c\x49\x63\xf3\x07\xc6\xd1\xca\xfc\x26\x13\xee\x2c\xba\xb8\xf1\x6b\x55\x22\x76\x99\xb3\x2e\x6f\x09\x59\x63\x6f\x4a\x92\x30\xdb\xad\x6b\x23\x26\xf3\xff\x22\x97\x7c\x57\xca\xf6\x40\x5f\x6d\x47\xd3\x4e\xf5\x70\x4c\xae\xac\xbb\xf3\xbe\xa8\x7c\xf3\xe3\xbb\x08\xa2\xd1\xc5\xff\x74\x34\x32\xcc\x15\xae\xb6\x75\xb8\x95\xb5\x2b\x5a\xb6\x56\x45\x61\xa7\x37\xcd\xcb\x5b\x47\x9e\xdc\x98\x91\xb4\x8c\x99\x6c\x3f\x1b\x51\xc4\x3f\x61\x2d\xf7\xbd\x23\x5b\x0b\xef\xb6\x2d\x48\x9b\xb6\x70\xb6\x29\x2d\x6b\x56\x9f\x49\xf9\x5f\x1e\x38\xbf\x4d\xf8\xa8\x78\x5a\xb7\x84\xc1\x2e\xff\xaf\x2b\x1e\xb7\xb2\x76\x46\xfb\xdd\xaa\xe2\x86\xf6\xd6\xba\xbc\xb3\xa4\x8d\x4d\x8a\xa4\xb7\x8c\xdb\xce\xc6\x88\x66\xbe\xcb\xc6\xf7\x9b\x25\x73\x22\xd1\x6d\x08\x7e\xa0\x7c\xb3\x7d\x0e\x31\xb5\x7a\x8c\x71\x05\xe9\x3d\x1a\x23\x57\x52\x3e\x62\x1e\x72\xaf\xd0\xe3\xf0\x5d\xa4\x23\xcc\xd5\x64\x59\xed\x58\x0e\x9f\x6e\x29\x88\xe1\xef\x64\x7f\x4d\xba\x25\x4e\x11\xe8\xc3\x6b\x80\x30\x69\xa8\xcf\x7a\x55\x8b\x32\xa6\x75\x01\xb6\xb9\x3a\xda\x26\xc1\x97\xa3\xf3\x0d\xff\x11\x13\x31\xb5\xc0\x6d\x32\x07\xd7\xc5\xad\xa7\xde\x24\xfe\x22\xa1\x19\x66\x6a\x4b\xcd\x7a\x36\xc0\x44\xe7\xbf\xe6\x3d\xe7\x8a\x92\x96\x89\x16\x0b\x17\x85\xa7\xc8\xb6\x49\xbf\xfb\xac\x56\x65\x2b\x57\xb5\xac\xc1\x00\xe8\xcb\xd6\x01\x2c\x09\xb3\xce\x90\x84\xd7\xe1\x94\x40\x2a\xf1\x36\x51\xc2\x39\x4b\xd1\x52\x5a\x89\x8f\xe8\x55\xf4\xeb\x35\x15\x2c\x80\x5d\x93\xbf\x8a\x37\x99\x3f\x39\x89\x27\xfc\x26\x7a\x1d\xee\x2d\x8b\x93\x7d\xf2\x59\xa7\x7c\xa4\x2a\x6d\xba\x56\xab\x25\x24\x58\x26\xd7\xfd\x43\x72\xe9\xae\x36\x44\x51\xae\xcb\xc6\xe2\xee\xd1\xcb\xd8\xa7\x89\x67\x98\xcf\x88\x63\x29\x3f\x39\x4b\xab\x97\x30\x94\x7c\x6b\x7e\x28\x87\x28\xea\x48\x1a\x27\x58\x22\x3d\x11\x3e\x54\x1a\xa0\x88\xf6\x39\xaf\x9c\xaa\xbe\xed\x9a\x52\xb9\x82\x7e\x03\xb6\xd6\xc4\x30\x0f\x6a\x6d\xe8\x77\xec\x55\x92\xd7\x98\xa7\xdc\x26\xd6\x3d\xbc\x0f\xbf\x9b\x90\x49\x5a\x26\xdc\x56\xf5\x83\x06\x88\xbf\xe4\x6d\x63\x6d\x92\xe1\x13\x0f\xf3\xf3\xe4\xf7\xc2\xfe\x4a\xc6\xa8\x16\xa2\x66\x28\xe2\xb4\xdd\x4e\x55\xe9\x1f\xc1\x28\xc8\xb3\xe2\xaa\x90\xa5\x29\xac\xbe\x2f\x3a\x2c\xbe\x5d\xe7\x21\x99\xc1\x1a\xd2\xd0\x2e\xb5\xe1\x61\x02\x57\xf6\xb7\x8a\x4e\x71\xc9\x3b\xf2\x2a\x98\xee\xca\xfc\xc4\x2e\xee\x2f\xf5\xe4\xf0\x99\xa2\x3f\x5a\x0f\x94\x42\xce\xd0\xd7\xd8\xeb\x0b\x31\xea\x2a\x73\x58\x09\xac\x7e\xa3\x72\x94\x3f\xd7\xc0\xa2\xca\xea\x26\xcd\x47\xc6\x40\x9d\x5c\xab\xc7\xa9\xb0\x1b\x75\x43\x2a\x57\x92\x12\x74\x9d\xb9\x8f\xe8\xfe\xfa\xb8\x44\x84\x43\xd3\xdf\x0d\xcf\x14\x9e\x34\x1c\x40\x7d\x00\xec\xc6\x13\x56\x7a\x6e\x91\xa5\xd2\xa8\x2c\x78\x8c\xfc\x50\x4e\x2d\xd9\x8a\x2c\x15\x0e\xad\xd8\x81\x04\xd3\x2d\x35\x3f\xe0\x41\xec\x3c\x8c\x13\x4e\xab\x1c\x47\xe0\x42\x7b\x73\xbb\xa8\xab\xa0\x84\x44\x88\x9d\x04\xae\x0c\x57\x0b\x7e\x80\x45\xbe\x7c\x60\x02\x38\xca\x32\x2e\x0b\xd3\xd6\x63\x88\xce\x4b\x6b\x85\xe5\x0f\x8a\x6a\x5a\xc8\xfc\x5f\x65\x4d\xcd\xa3\x68\x1b\xaa\x27\xb9\x06\xb0\x43\xea\xee\x36\xa6\x56\x0c\xe2\x7e\x3b\x76\xe6\x82\x14\x97\x7d\x52\xe2\x3e\x16\xd1\x5a\x19\x7e\x46\x00\x20\x0b\x7c\xaf\xca\xee\x40\xef\x90\xf9\x99\xb8\xee\x24\xfd\xae\xdc\xdc\xae\xb3\x72\x5d\xa1\xa0\x33\x8f\x3f\x50\xba\xbb\xdd\x49\x13\x54\xd5\xb6\x1e\x6c\xb8\x55\x17\xd7\xfc\xa4\x62\x0b\x8e\xef\x7a\x91\xdb\x46\xf1\x72\x6e\x4b\xfc\xc2\xfc\x6d\xe7\x44\x8c\x16\xa4\x58\x27\xf9\x4d\x94\x9d\x80\xd7\x21\xd8\x8c\x45\x7d\x6f\xf4\xdc\x1c\x6b\x6f\xae\x3c\xbf\x60\x5b\x0f\x87\x0f\x97\x8e\x9f\x47\xa2\xd5\x57\x6e\xe8\x4c\x6d\xb8\x8d\x5e\xd4\x3e\xbc\xe2\x14\xf6\x51\xcb\x82\xdc\x41\xf2\x16\xd7\x93\xa4\x54\xe6\x32\xa7\x67\x44\x29\xff\xab\x2d\xc4\xaf\x5a\xb6\x18\xf1\x69\xba\x48\xf2\x28\x3f\x86\xdc\x27\xab\xaa\x67\xeb\xcc\x54\x14\x9a\x26\x9d\x47\x7b\x8e\x79\xce\xce\x65\x7c\xc5\xf7\x10\x10\x76\x0e\x19\xa8\xf6\xe3\x5e\xa5\xdb\xf3\xd6\x0a\x1e\xb3\xbf\x24\x6e\x90\xc4\x0b\xec\x61\x2e\xe0\x99\xb4\xd8\x87\xaf\x1e\xa1\x64\xb8\xbe\x10\x26\x54\x87\x21\xbe\xc4\x15\xe8\x4c\xed\x55\xb2\x18\x93\x27\x1d\x45\xe5\xe2\x1c\xac\x93\xf4\x15\xc4\x4f\x04\x2f\x96\x1f\xd5\x52\x75\x9c\xf3\x98\x59\x91\xc7\x15\xa0\xb8\xac\x44\x9d\x78\xb1\x70\x79\x98\x19\x00\x64\x53\x7c\xf8\xaa\xdd\xca\xcb\xae\xa9\xb8\x61\xe8\xcd\x70\x3d\xfe\x38\xc6\xa2\x0d\x21\x1e\xc0\x95\x4b\x00\xf2\x53\x62\x1d\xab\x82\x56\x46\xd1\xe2\x37\x33\xbe\xd0\x8f\x54\xc9\xd8\x2f\xd8\x39\x79\x41\xfc\x72\xfe\xb0\xc4\x22\xd1\x2f\xd1\xeb\x30\x9e\xec\x0b\x30\xda\x07\x50\x91\x55\x72\x27\xa6\x7e\x2c\x61\x02\x78\xa9\x61\x36\x89\xa2\xbe\x89\x93\x51\xd6\x8a\xd1\x84\xb7\x74\x1f\x26\x9e\xbc\x9e\xb9\x07\xf7\x94\xb6\x9e\xa3\xa9\x3c\xcf\xfc\xcc\x67\xe6\x6e\xe1\x2e\x17\x19\x12\x3e\x09\xd7\x4a\x0f\x86\x11\xa4\xaf\x14\xa9\x3e\x8b\x95\xed\xea\xbf\x76\x75\x0d\x85\x6e\x37\xa7\xa1\xf7\x31\x01\x95\x15\x53\xc1\xc6\x89\x12\x71\x23\xb9\xb9\x0c\x11\x71\x2c\x1f\x8d\xf3\xa1\x90\x85\x9a\xca\x08\xfa\x2f\xf1\xbf\xb9\x39\xec\xbf\xb2\xe4\x84\xed\x82\x7a\xf9\xb9\x30\x92\xe4\x9a\xaa\xdf\xe7\x95\x62\x97\x76\x87\xf5\x7d\xc5\x05\x7e\x9b\xf1\x72\xb5\x4e\xf0\x49\x99\x8d\x6e\x10\xd5\x09\x83\x30\x85\xe2\x0d\xf4\x66\x9c\x53\x1a\x86\xa5\x92\xe6\xc8\xd6\x57\x74\xd3\xbc\xe5\x55\x39\x0f\x58\x22\xe5\x8c\x84\x66\xfe\x54\xd5\xe7\x30\x91\xf8\x92\x76\x3a\xaa\x4a\xfe\x52\x2f\x40\xce\x95\xa4\xa8\xda\xf5\x5f\xca\xa3\xd4\x59\xf2\xfe\x2a\x82\xfa\x19\x7f\x43\xed\x21\x0d\x8d\x96\x8b\xd1\x6a\xbe\x37\x90\xf1\x90\xb6\xa5\xfc\x21\xf9\xa2\x2e\x3e\x07\x64\x18\x75\x6f\x12\x6c\x5c\xad\x7e\x53\xd8\x1a\x51\x9f\x61\x03\xea\xbc\x7c\xbc\xf1\x0a\x1c\x54\x30\x1d\x61\xe8\xe4\xc5\x66\x04\x05\x94\x96\xa3\xe0\x8b\x3c\x71\xd5\x7f\x30\x9b\x1a\x51\x37\x1a\x1e\x8f\xb1\x61\x99\xd0\xf2\xf2\x0a\xd2\x78\x28\x3d\x27\x91\x3e\x0a\xbc\x90\xe0\xe2\x54\x82\xe4\xb0\x67\xc2\x63\xe0\x2c\xdf\x5c\xa0\xd5\xfc\x03\x3c\x92\x3b\xb5\x15\xd0\x06\x16\x9c\x6b\x11\xca\x26\x97\xec\x6d\xc6\x72\x85\x15\x47\x9a\xa6\x51\x48\xb5\x33\x1a\x4f\xd7\x7f\xc1\x6c\x71\x6a\xca\x7e\x13\xfa\x1c\xd3\x72\x42\xa8\x4f\x6d\x8d\x09\xc7\xd9\x80\xe5\x55\x78\x86\x30\x03\x21\xf9\xee\x00\x6a\xa1\x1b\x60\x7a\xce\xf4\x79\xc3\x35\x1b\xf2\x6f\x74\x2e\x96\xf6\x17\x5f\xe9\x08\xe6\xba\x97\xbf\x6e\x03\x29\x7e\x35\x55\x2d\x17\xea\x2f\x61\x86\x37\x4f\x2b\xfb\x44\x18\xe9\x4a\xc8\x49\xa2\x4a\x9c\x81\x09\xbf\xd9\xd3\x6c\xdf\xc2\x01\xe1\x08\xcb\x51\xdf\x77\x40\x0a\xdc\x6e\x7e\x96\x5d\xdf\xbb\x51\xc3\xcc\xf7\x9e\x3f\x4c\xca\x2c\xf6\xea\x4e\xe1\xbc\x2f\x4f\xe9\x2a\xa0\x8c\xab\x5e\xd5\x91\x5e\x7f\xb9\x9e\xdd\x16\x58\x3e\x1e\xaf\x6e\xbe\x9f\x43\xa5\xfc\x71\x55\x27\x66\xb3\xb6\x3b\xfa\xc3\x77\x09\xf6\x59\x6f\xf9\xc5\x00\x63\x91\xe1\x56\x7f\xda\x83\x8a\x89\x86\x41\xc6\xb8\xea\x6a\xf9\x03\x26\x07\x6d\xe5\x77\xb0\x47\x61\xbe\x53\x6f\x71\x6e\xe1\x17\x60\x06\x79\xb7\xc8\x92\xb2\x3f\x42\x14\x1d\xce\x2e\x10\xef\x63\x3f\x8c\xfb\x21\xdb\x24\xb0\x86\x6c\x56\xbc\x91\x92\xbd\xb5\x1a\xa7\x72\xbe\x45\x4c\xf9\x51\x8d\x31\xf8\xd0\xaa\xd0\x78\x39\x8e\x7e\x1d\x83\xe6\x7b\x31\x17\xe0\x40\x2a\xc0\xee\x21\xde\xc1\x50\xb8\x47\xa9\xbc\xb2\xad\x82\x44\x66\x7c\xf6\x18\xf1\x70\x6e\x4e\xdc\x19\x99\xbf\xb0\x3d\x64\xbd\xc2\x24\xf3\xf4\x36\x69\xf2\x94\xbf\x90\x6d\xe4\xe9\xe8\xa3\x7a\x2d\xa5\x03\xd3\x04\x9c\xa1\xe5\xe3\xca\x78\x8b\x19\x11\xc4\xb9\xd4\xd1\xac\x0a\x4a\x29\x66\x04\x67\x80\xde\x59\xc6\xe5\xe7\xb3\x67\x64\x9d\x17\x65\xf0\x2e\xc7\xad\x90\xda\x45\xe7\x43\x56\x28\xfe\x07\x8c\xf6\x6e\x55\xbf\x55\x75\xc0\xd1\xf8\x38\xfc\x2a\x5d\x10\x71\x24\xf1\x8b\x6c\x35\x79\x34\x25\x83\xbb\x8c\x5a\x4e\xdb\x45\x89\xa5\x9f\x60\x92\xea\xd1\x2c\x05\x67\x56\xe9\x5d\x2e\x9d\xef\x96\xc5\x16\xac\x17\xa5\xc7\x31\x25\x05\xd2\x79\x21\x4b\xe4\x63\x14\x61\xde\x27\xd5\x61\x9a\xe9\xe0\x7e\x4c\x0b\xed\x8b\xe6\x0c\x76\x31\xe3\xa2\x14\xc0\x3f\x64\x6d\xe6\xb4\x90\x94\x9c\x01\x72\x2e\x35\x9b\x77\xbc\xce\xc9\xc8\x14\xfc\x28\x4d\x67\xeb\xc5\x98\xcc\x3f\x7c\x37\xe9\x83\xb8\x64\xd1\x2f\xf9\xbc\x90\x2d\xb2\x3f\x2a\x87\x8f\x9f\x0a\xa3\x3d\x6a\x9e\x80\x1e\xc2\xeb\x52\xb3\xeb\xb1\x82\xa1\x92\xb2\x86\xc7\x42\x1e\xdb\x81\x3f\x24\xba\x41\xa2\x90\xae\x49\xf8\xe8\x33\xb4\x59\xb2\xe1\x25\x03\xcc\xb5\xc0\xbe\xcc\x01\x6e\x9b\xa2\x3f\xce\x5b\x78\x40\xb5\x3a\xe4\x84\x6c\x88\xe6\x9d\x8f\x43\xe9\xd2\x03\xc6\xd1\x95\x56\x65\xbc\xb2\xad\x26\x5f\xf9\x46\xb4\xb2\x2e\x41\xb5\x90\xe5\xd5\x20\x51\xa7\x10\x23\xf0\x0f\xd5\xff\xd5\xde\x21\x37\x69\x56\x94\x0c\xa1\x6b\xb4\xe2\xcc\x52\xf6\x46\x5d\x71\x9c\xbf\x20\x5c\x9f\x1d\x3a\x41\x72\xdc\x20\x42\x8d\x53\xac\x35\x9e\xd0\xc7\x97\xbe\x82\x1c\xf2\xaf\x15\xdf\x20\xac\x30\xbb\x26\x09\xf2\x67\x3c\xa9\xdb\x0f\x3e\x20\x84\x62\x41\x70\x63\xed\x74\x22\x08\x4a\x8b\x95\xd4\x43\x60\x62\xa6\x3b\x2b\xdd\xfc\x27\x2e\x96\xf7\xc7\x7c\x24\xb4\x5c\xfc\xce\x7c\x10\x05\x2b\xfc\xcc\xd7\x74\x59\x45\x37\x9a\xa3\x81\xb7\x65\xc9\x4d\x99\x82\xa8\xca\x13\xae\x6c\xfa\xaf\x5a\x5b\x63\x18\x9e\x87\x81\x9c\xd3\x6b\x1a\xf1\x47\xec\x5f\x8a\x03\x29\x25\xb6\x13\x99\x43\x99\x53\xac\x40\x1c\x87\x17\x68\xf1\x0e\x5d\x22\x26\xc3\x97\x50\x2f\xe4\xd7\xa1\x1e\xed\xaa\xc2\x9b\x1d\x66\x40\x53\x9a\xde\x9e\xc6\xbf\x58\x71\xb5\xf5\x11\x7d\x73\xcd\x8a\x16\x31\x3e\xa6\x7e\x5b\xd3\x7f\x35\x1c\xfc\x04\x97\xa8\xd8\x9d\xbc\xce\x79\x3e\x73\x22\xa3\xc3\xfe\x3d\xae\x83\x7b\xd4\x36\x35\xf4\xac\xd8\xcf\x12\xe9\x8b\x92\x6f\x87\x4b\xb5\x29\x85\x6e\xdd\xdf\x81\xf0\x12\xe5\x3c\x05\x7f\x71\xc5\x84\xce\x2b\xf4\xe6\xea\xc7\x1d\x33\xf0\xa8\xba\x3f\x6d\xd9\x35\x6c\x1c\xbb\x85\x5d\x1c\x46\x76\x6f\xe2\x64\xe6\x30\x3c\x1a\x67\xc7\x5d\xe6\xd2\xec\xdb\xc3\x26\x8b\x2e\x59\xb3\x7c\x89\x72\x23\x7c\xc4\x18\xca\xb1\x57\x54\x2a\x93\xb8\xa4\x6a\x8b\xf0\x08\xcf\x88\x5e\xcf\xf4\xe0\xff\xdb\x30\x89\x30\x4e\x98\x8e\x5f\x5d\xd3\x23\x7a\x44\x96\x17\x75\x4b\x0e\xd1\x91\xf4\x26\x60\x1c\xfb\x7e\xcc\x6f\x45\x9f\x00\x09\xea\x50\x53\xa4\x42\xaf\x62\x9d\x5e\xb9\xcb\xd0\xc2\xea\xae\x66\x28\x56\xb1\xd7\xa1\xc9\xc2\x0c\xee\x70\x4c\x39\x63\x01\x4f\x82\x93\xe2\xbb\x05\x93\x89\x27\x6b\xe2\x85\x0f\xa8\xb5\x45\x05\xe2\x57\x4c\x54\x3a\x5a\x46\xe0\x46\xc6\x5c\x55\x4c\x17\x9a\x82\x3a\x55\x5f\x65\xee\x5e\x68\x5d\xa2\x6a\x82\xfe\x35\x63\x25\x7a\x89\x62\x3c\xf3\x3b\x86\x2e\xd8\xc2\x46\x70\x1e\x0c\x0f\xee\x74\xc2\x1f\xbc\x2f\xef\x16\xc5\xb3\xfa\xbc\xe0\x2a\x9d\x5e\xf8\x51\x3c\x86\xf5\x22\xdd\x53\xba\x8c\xb7\x21\x66\x97\xdc\x2c\xda\x14\xd4\xa6\xb2\xc9\x7e\x78\xf1\xb4\x4f\x55\xbd\xba\x5a\xca\x03\x7c\x1e\xb0\x90\xd6\x49\x6c\xe6\x0b\x19\x4a\xf2\x19\xfa\x50\x16\x85\x56\x82\x8b\xe5\xe8\x18\x9f\xab\xc7\xf1\x0e\xb3\x0f\x15\x62\x84\xb9\xbc\xa3\x69\x9b\x24\x41\xc2\x1f\x31\x2e\xa0\x44\xca\x08\x5a\xa0\x6c\x55\x4c\xf1\xda\xa4\x0d\xd5\x4c\xd1\x8e\x20\x6a\x68\x9e\x32\x1e\x19\xc3\x70\xe7\x61\xa9\x12\xe6\x77\xda\x68\xfa\x00\xfb\x37\xb6\x96\x35\x8d\x17\x5e\x55\xcd\x59\x25\x10\x15\x1c\xe1\x03\xa2\x7b\x69\x0d\xa2\x45\x52\x38\x46\x2a\x1b\x27\xaf\x0b\x1a\x54\xb8\x54\x74\xef\x49\x1a\xbc\xf6\x1f\x35\x84\x1b\xc1\x9d\x2f\x0d\x22\xc4\xf0\x47\x71\x6b\x48\xcd\x02\x2e\xd5\x83\x3a\x45\xf8\xba\xc1\x4c\xff\x57\xdc\x55\xd9\xcf\x5a\x26\x2d\x28\xc8\xe4\xee\x00\x7c\xd2\x26\x0a\x83\x14\xc1\x31\x04\xc9\x15\x55\x6d\xd0\x2d\x79\x9b\x66\x8f\xb7\x56\xdd\xaa\xa7\x29\x17\xd5\x3d\x92\xef\x17\x23\x0d\x59\x0a\x90\x7d\x1b\x77\x57\x19\x4a\xbe\x46\xdc\xa3\x7c\x8c\x51\x50\x4e\xa9\xf6\x54\x5c\x62\x8c\x55\x77\xe5\x6f\x60\x83\x1a\x5b\xea\x69\x7e\x9e\x76\x51\x8c\x48\x9c\xa7\x3b\x11\x1c\x00\x60\x0d\x7e\xde\x3f\x55\xeb\x8c\xab\xe5\x9f\x6b\x7c\xcc\x66\xd1\x04\xf4\x6d\x33\x83\xd5\x8f\xb9\x62\x8e\x25\x9d\xc4\xfd\x35\x7b\xd6\x77\x93\x88\xe6\xc9\x15\x21\xd4\x0f\xe6\xe1\xf9\xc9\xcc\x03\xa6\x3f\xa9\x8b\xb8\xa7\xcd\x93\x62\x1c\xa2\xe9\x66\xff\x60\x8e\x4c\x67\xae\xf1\x11\xa8\x66\x9a\x17\x02\x4f\x2a\x43\x1a\x17\x0a\x7e\xd7\xe4\x39\xcf\x30\xfb\xeb\x74\x8e\xbb\xc4\x6f\x0d\x97\xed\x5f\xeb\x3e\x12\x58\xf6\x29\xe5\x9b\x28\x69\xb6\x39\x79\xef\x18\x95\xd6\x9c\xd4\x66\xce\x2a\x4b\x59\xcc\x36\x61\x3a\x52\x10\xbc\x41\xfa\x0c\xce\xf2\x39\xae\x3c\x00\x95\x00\x60\x45\x5a\xeb\x51\x41\x7f\x75\x65\x4b\x1f\xb3\x14\xdd\xd2\x5c\x41\xdc\x86\xf9\xd2\x34\xa1\xee\x30\xbe\xa7\xf1\x70\x79\x3b\xd9\xea\x04\xf3\x9e\xd0\xb7\x3a\x42\x52\x7b\x38\xa1\xb6\xed\x31\x97\x05\x0f\xad\x21\xc1\x57\xa5\xfd\x48\xb3\xcf\x17\x65\x17\xf4\x13\x28\x28\x77\x76\xcd\x16\xf0\xab\x1a\x3b\x36\x31\x3d\x6a\x4f\xb6\x7b\x12\x3b\x31\x89\xad\x2d\x75\x3b\x70\xf7\x9b\x3f\x94\x77\x92\xee\x35\x91\xf2\xbe\xd0\x51\x8d\xab\x53\x0f\xb0\xd7\x39\x4e\xcc\x9d\x2c\xd0\xd8\x0e\x85\x4c\x95\x56\x5a\x96\xa0\xe6\x28\x1b\x60\xa3\x62\xaf\x28\xbd\xe2\xbc\x28\x56\x3c\xae\xfa\x1e\x2b\x55\x32\x06\xfd\x9a\x94\x2d\x79\xdb\x90\x53\xf7\x4a\xfa\x07\x7f\xb9\x3c\x09\x48\x27\xf7\xe6\x0d\x95\xaf\xa7\x0f\x24\x6f\x57\xb6\x71\x86\x44\xbd\x53\x6f\x13\xf4\x07\x4a\xb5\x1f\xa5\xf3\x3c\x67\x19\x40\xe5\x2b\xc5\x44\x41\x63\xf5\x7a\x61\x9f\xd0\x84\xb6\x30\x77\x89\x96\x61\x08\xc4\x83\xe2\x0d\x38\x5d\x9d\x48\xf2\x84\x78\xa9\xec\x8c\xac\x8c\x8a\xcf\x1d\x00\x1e\x33\x43\x92\x0d\x8a\x37\xdc\xc4\xa8\x6b\xea\xb9\xc2\xa6\x40\xad\xb6\x45\x36\xd7\x33\xde\x90\xa5\x8a\x96\x63\x78\xd7\xd0\x5b\x04\x3f\xf8\xef\x30\x18\x66\x94\x30\x11\xfb\x9d\x98\x24\x62\x11\x1e\xa2\x5f\x8b\x8f\x50\x86\x95\x91\xa5\x35\xf4\x8a\xdc\x2a\x60\x0a\xeb\x56\x72\xbe\x22\x8d\xb7\x22\xea\xa0\x6a\xb9\x68\x63\x20\xa0\x9d\x0d\x8c\xf4\xac\xd6\xbf\x53\x6d\x91\xf5\xb3\x79\xb8\xdf\x7c\x29\xe7\x38\x31\x8e\x7e\x9a\x57\x4f\xe6\x11\xc6\xf0\x6f\x52\xdf\xd4\xbe\x14\xda\x19\x4b\x4b\x6d\x62\x12\x5b\x97\xb3\x5c\xca\xe0\x35\x25\xdd\x03\xce\x0b\xcf\x47\xf5\x2b\x95\xd2\xe2\x40\xa7\x26\x56\x31\xd6\x73\xa1\x3e\x4e\xe3\x21\x5d\x49\xff\x49\x5d\xcf\x13\x33\x97\xd0\x75\xb4\xdb\x6c\x11\xb3\x14\x1f\xc6\xcd\x62\x93\x6a\x7d\xf8\xe9\xdc\x85\x25\xf7\x85\x04\xfe\xe7\x9c\x00\xf1\x80\x48\x9f\x34\x4f\x86\x91\xa6\x44\x75\x28\xd2\xe4\x81\x81\xdb\xd4\x73\x55\x65\x5e\x43\x74\x2c\xed\xa0\xc4\x8d\x72\x8e\xd3\xcd\xcd\xa1\xf5\xf3\x86\x51\xbf\x33\x56\xf1\xf9\x38\x0c\xeb\x90\x70\x74\x0d\x81\x3b\x56\x74\xb2\x24\x97\x2f\x90\xf4\x64\xaf\x17\xfe\x96\xb9\x92\x1a\x24\x2f\xe5\x7b\xa2\x5a\xe4\xe3\x55\x13\x03\x5f\xa9\x12\x35\x9d\x5e\x52\xed\x42\x7d\x83\xe8\x1a\xc1\x02\x14\xb2\x7f\x91\x96\xcb\x87\x50\x76\x51\x3e\xcb\xb7\x60\x0b\xe8\x5c\x45\x6b\xb5\x91\x35\x56\xe9\x2c\xee\xe6\x9c\x55\x35\x67\x27\xf2\x0f\xab\xd7\x26\x45\x88\x47\x6a\x7e\x46\x6d\x94\xe9\x75\xa4\xd9\xc9\x8a\x5f\xfa\x5b\x5e\x6f\x35\x9b\x8d\x0e\xe1\xac\x86\x93\x46\x16\x6b\x29\x3e\xdd\x88\x26\x6f\x20\xde\x37\x26\x37\xb0\x28\x8b\x8d\x65\x55\x27\xe8\xcd\x46\x71\xf1\x78\xd6\x1a\xe3\xfc\xac\x1b\xdc\xaf\xc6\x33\x49\x13\x85\x56\x53\x68\xd4\x65\x69\x91\xc9\x31\x1b\x54\xcc\x34\x3d\xf3\xc6\x69\xa6\x99\x39\x82\xe1\xf5\x2c\xc7\x50\xe6\xc2\x86\xc7\xf6\x34\xd2\x11\x7c\x9f\x8d\x83\x59\x4f\x82\xad\xdb\xab\x72\xa8\x0b\xad\x23\x8b\x06\x18\x3f\x2d\xcc\xac\x3e\x4e\x13\xb2\x37\x69\x88\x80\x85\xcc\x8a\xfa\x22\x91\xc3\xea\xd9\xfb\xe4\x06\x68\x9b\xf7\x06\xf5\x56\x68\x24\xbf\xaf\xae\xa4\xe9\x32\x33\x07\xf3\xc4\x75\x94\x04\xe0\x76\x34\x2e\xc5\xc8\x88\xab\x9d\x3d\x55\x28\xca\x39\x87\xa3\xa8\x9d\x91\x6f\x6f\xca\x6a\x67\x7f\xb0\x99\x92\xc6\xf2\x5f\x58\xc5\x73\xa6\x49\x66\x5a\x0a\x67\x3f\x92\x27\xc0\xdf\xbc\xaf\xaa\x21\x68\x07\xbf\x1e\xcd\x68\x7b\xc5\x1c\x83\x99\xda\xba\x9c\x94\x8b\xfd\xdc\x92\x8d\xc1\x10\x5e\x34\x7d\xa8\x72\xa3\xcc\x74\x75\x14\x75\xd3\x17\x36\x96\x64\xf5\xb3\x89\x8e\x27\x49\x61\x7c\xbe\x5d\x34\x27\x5b\xbc\xd1\x7a\x39\x68\x0a\x70\xdf\x32\xda\x67\xa4\x3a\x0d\xce\xe0\xcc\x55\xfd\xad\xb4\x52\x77\xa8\xd1\x35\x00\xee\x8c\xfa\x72\x1d\xaf\xf6\xac\x26\xb2\x61\x4b\x99\x51\xb3\x82\x90\x9a\xf7\x48\x5b\x46\xfe\x99\x76\x55\x37\x9d\xf1\xbf\xd8\xcf\xfa\x00\x8e\x24\x6c\xbd\x81\x22\x0c\x98\x05\x1b\x77\xc8\x50\xee\xdd\xe6\x0a\x95\x9c\xbd\x58\xa9\xaa\x09\xa1\x26\x2b\x1f\xa1\xef\xe1\x18\x2a\x3d\x66\x59\x2d\x4f\xf5\x0d\x37\x58\xe6\xaf\xee\x22\x4d\xc8\xeb\xd6\x50\xa8\x5d\x69\xbd\xda\x0a\x26\x33\xf6\xbc\xce\xcc\xb5\x87\x2d\xd7\xdf\x17\xbe\x9d\xe5\x34\x36\xc8\x16\xb9\x0f\x98\xa7\xaa\xfa\xd9\xc3\xe5\xaf\xd1\x5f\x28\x5b\x15\x22\x8c\x0e\xfb\x51\xe9\x83\x1b\x5b\x3b\x42\x39\x48\xf8\x50\x7a\x40\xa5\xa7\x4c\xcf\x2b\x54\xf3\xe9\xac\x34\xbc\x46\xcf\xfa\x19\xbb\x59\x7b\x81\x77\x33\x6c\xa1\xbe\x46\xf4\x6d\xd6\x3c\xc3\x2b\x00\xef\x7e\xdc\x74\x50\x3d\x89\xf9\x51\x6a\xc4\x6d\x23\xaf\x91\xd5\x11\x9e\x34\x7c\x05\x6a\xc8\xa8\x1a\x7f\x79\x16\x75\xa0\xe4\x97\xa2\x82\xc1\xcd\x5d\xa5\x34\xb1\xeb\x52\x1f\xa8\x2e\xf0\xb4\xb1\x42\x0d\x5b\x78\x25\xac\x5b\x17\x24\x15\xcc\xda\xad\xff\xae\x48\xf7\xf0\x32\x8d\xd0\x60\x98\x63\x45\x0c\xca\x31\xd2\x09\x31\x87\x36\xd0\x90\x20\xe9\x64\x74\x55\x4b\xa5\xc7\x59\x7b\x4a\x08\x80\x0f\x77\x72\x6e\x98\xbc\x99\x6f\x4d\xb5\x29\x67\x89\x22\x63\xf3\x55\x1f\xa4\xd3\xc3\x16\x6a\x5e\xc9\x83\x66\xbd\xd3\x7d\x55\x31\x3d\xcc\xc6\x58\xed\x63\xfa\x6d\x7e\x06\x3b\x85\xf8\x40\x80\x70\xf6\x61\xcc\xc2\x77\xbc\xfc\xaa\x93\x62\x96\x60\x48\xf1\x31\xc9\x1f\xe1\xc3\x9c\x1d\xb2\xf5\xe2\x5b\xa9\x89\x72\xa3\xf4\x67\xec\x6c\xa5\x4d\xce\x08\xdb\xa0\x1e\x54\xbe\xf1\x8f\xd4\xfe\xd4\xcc\xf3\x78\x6a\x10\xea\x55\x34\x3e\xbb\x5a\x72\x93\xb0\x80\x73\x56\x7a\xaf\x5e\xc1\x13\xc8\x6e\x56\xbe\x16\xcc\x01\x5e\x16\xbb\x8b\x66\x2a\xdc\x72\xe6\x4a\x7c\x95\x98\x94\x87\xb2\x32\xd5\xe6\xd8\xc9\xf2\x95\x9a\xd2\xb0\x5b\xaa\x10\xed\x57\x7f\x83\x66\x50\xbf\xdc\x93\xaf\x97\x1a\xf5\x54\x6f\xc6\x74\x5d\x2e\xbe\x8d\xb9\x4e\xa7\xac\xeb\x65\x2b\x75\xcb\x2a\x13\xb9\x3a\xdd\xb7\x22\x17\x7f\x95\x9e\x92\x7d\x52\x34\x54\x7f\x3d\x65\x99\x04\x34\xe0\x62\x47\x01\x81\xc6\x69\xe1\x63\x15\xef\x8c\xe7\xfc\x4f\xa8\x4f\x9a\x24\x9e\x97\x75\xc7\xcc\xd1\x94\x20\xaa\x01\xf9\x8d\xdb\x40\xcf\x45\x3a\xd0\xe7\x99\x99\x88\x5f\xc5\x7c\x36\x0b\x3e\x52\xe4\xc5\xdd\x09\x0b\xb3\xb5\x82\x4a\x38\x24\x05\x10\x4f\x86\xee\xc4\x0e\x93\xfe\x81\x06\xc2\xa3\x15\xd3\x21\x5e\xc0\x58\x75\x10\x34\xcc\x0b\xa5\xc3\x81\x9b\xc8\xd7\x28\x0d\x0e\x31\x8e\x45\xcb\xb2\x1f\x45\xdb\x18\x78\xfb\xf8\x0a\x26\xcb\x69\xa3\x15\xfe\xe4\x3c\xb1\x6e\xcf\x66\xf3\xbb\xac\x9e\x29\x42\x91\xd8\x22\x8d\x9d\x20\xd5\x23\xe7\xc2\x4b\xe5\x9b\x11\xf7\x80\x30\xd5\x4d\x38\xd4\x2b\x53\x17\x00\x95\x93\xfb\xc9\xac\xa6\x04\x5c\x02\x95\xe3\x22\xa2\x71\xf4\x9e\x46\x51\x45\x29\xf3\x98\xd3\x52\xf8\x89\x13\xe4\x68\xcb\x16\xf0\x9e\xd8\x37\xa5\xe8\x85\x17\x6d\x3b\x63\xc3\x24\x5f\xac\x5b\xc3\x01\x79\xbe\xa5\x23\x00\xab\x32\x21\x11\x5e\x7c\xed\x2d\xe8\x0c\x8e\x09\x5d\xa9\xf2\x46\xbf\x84\xac\xb5\x6e\x95\x13\x20\x5c\xbd\x5f\x71\x00\x34\x02\xcb\xc9\xf9\x02\x1e\x24\x7c\x4b\x6b\x07\x07\x28\x07\xe2\x4f\x83\xcb\x19\x57\xa2\x94\xe0\x76\x6e\x7d\xd0\x49\xf0\xb1\xc8\xdb\x77\x12\x14\x02\xa0\xdc\xfa\xa1\x25\x6a\x11\xf6\x13\x58\x5d\x23\x44\xbb\x40\xef\xba\xac\x8a\x43\xe0\xb8\x06\xdf\xa2\x07\xe6\x6b\xf8\xb4\x9c\xbd\xe6\xed\xa4\x05\x69\x6c\xf3\x3e\x5a\x74\xfc\x06\xf3\x2d\xd6\x84\x28\x3e\x38\x89\x57\x12\x74\x11\xa4\x88\xfe\xf5\xf5\x03\x8f\x01\x3a\xb7\xfd\x10\x51\xad\xc1\xea\x4c\xc7\xd1\x6f\xd0\x41\xa6\xf5\x98\xde\x0a\xb1\x69\x07\xae\xba\x68\xa1\x69\x21\x31\x3f\xc7\x64\x5a\x42\x51\xa7\x25\x9a\x4e\xd0\x6f\xc7\x37\x99\x47\xb1\xa1\x28\xb2\x99\xc0\x37\x06\xdd\x34\x9f\x13\x6f\xf1\x4d\x06\xeb\xe4\xbe\x6e\xf7\xa1\xb1\xea\xd3\x0d\xbd\xfa\x55\xb8\xf2\x5a\xb1\x7e\x1f\x61\x45\xf9\x7d\xfd\x37\xf2\xa8\xa2\x29\x86\x08\xea\xaa\xec\xbf\x06\x05\xc3\x94\x7a\xc5\x70\x8b\x6d\x8f\x2f\x31\xd6\xf2\x4e\x46\x15\x19\x5f\x88\x4a\x82\xde\x9b\xfa\xa4\xdf\x7c\x65\xe6\x06\xc5\x2d\xf7\x48\xb0\x44\xf3\x19\xb3\x5c\x73\x87\x3c\x58\xb3\x41\x3b\x9a\xfa\xbc\xbc\x4e\x8b\x65\x4c\x2d\xec\xd2\x9e\x61\x61\xb2\x3b\x75\xf5\x9c\x33\xa9\x76\xdd\x27\xbe\x20\xde\x47\xbf\x4a\x94\x1c\x95\x6d\x00\xa4\x55\xc1\x93\x8d\x38\x79\xa3\xef\x06\x53\x95\xea\xa1\x7b\xa3\x59\xad\x13\xd5\xbf\x54\xde\x66\x5e\xac\x99\xa2\xca\x63\xb7\x94\x5d\x56\x9d\xe7\x56\x17\xfa\xab\x4d\xfc\xb8\xec\x18\x4d\xbe\x30\x3b\x35\x57\xeb\x29\x16\xc5\x7d\xd3\x8d\x90\x1e\x8c\xca\xd1\x8f\x90\x73\x83\x93\x0c\x28\x55\xb8\xef\x07\x63\x8d\xe6\x93\xfb\x07\xd3\x5a\xfd\xcb\x3a\x33\x30\x43\xd4\x55\xf5\x13\xd8\x20\x7e\x5a\x36\x4e\x2e\x91\xce\x29\x80\x14\x14\x99\x26\xeb\x1f\x25\x0f\x78\x94\xf2\x51\xd5\xae\xe0\xc4\x9d\x55\x5f\x54\x8d\x8e\xaa\xd0\xfa\xaa\xdf\x05\x6b\x74\x56\xed\x13\xbf\x7a\xc3\x50\xfd\x61\x0f\xb5\x71\xb1\xf1\x10\xfa\x85\x78\x85\xda\xbb\x8a\x20\xb1\xa9\x57\x97\xf2\xa4\xed\x9a\xa8\x82\x91\xb2\x41\xcd\x85\x2c\x06\xf0\x47\x6b\x4f\x19\x54\xc8\x74\xf5\x71\xdb\x54\x43\xf5\x51\x51\x54\x75\xa7\xa1\x28\x78\xb7\x36\xd7\x48\xf3\xdb\xa0\x1f\x65\x2a\xf1\xb8\x6f\x78\x6c\xce\x46\xff\x4f\x38\xd1\x7c\xbf\x72\x91\xc8\xdf\xfc\xbe\xe4\xb4\x98\x62\xfe\x2f\xbf\x59\xb2\xdc\xfc\x29\x6b\x86\x6c\x8c\xf9\x6f\x8a\x15\xd8\x05\xfa\xc4\x2d\x56\x58\xc0\xa4\x28\x89\x8a\x01\xca\x82\x5f\x69\x28\xe0\x62\xbf\x8f\xba\x1a\xb0\xd7\x33\xcc\xc0\x01\xdb\x6b\xcf\x0a\x66\x21\x7f\x2a\x19\xc2\x44\xe4\x54\x49\xbb\x48\x8b\xd8\xf3\xd9\xe2\xc3\x48\x7e\xe6\x5f\x69\x0c\x32\x3c\xc5\x20\xfb\x02\x5f\x8a\x5b\x2a\xbf\x0d\x77\x47\x99\x95\xb7\x60\x6e\xc8\xff\xd4\xdf\xe0\xe0\x59\xd3\x75\xa3\xa0\x7e\xcf\x32\x43\x34\x14\x52\xbb\x8a\x4f\xb3\x83\x95\x99\x02\x99\xdd\xbb\x44\x28\xdc\x6c\x5b\x96\x8f\x16\x7d\xb7\x85\x66\xfe\x91\x70\xac\x03\x29\x56\x59\x86\x35\x39\x6e\x9b\x3c\xc1\xb2\x2d\x6a\x91\xb2\xd2\x12\x11\x12\xa5\xb6\x21\xf6\x59\xa9\xda\xb5\xb0\xc3\x13\xd0\xbf\x80\xd6\x95\xfd\xd3\xb4\xba\xea\x48\x51\x87\xab\xb7\xf6\x46\xde\xa8\xc6\x35\x98\xa1\x99\xfe\xce\x15\xb8\x86\x94\xf1\x8e\xe5\xc4\x9f\x71\x57\xed\xfb\xa8\x37\xe7\x54\xda\x6e\xb0\x46\x86\x5a\xad\x97\x79\xcb\x03\xb8\x96\x6f\x62\x85\x8f\xa7\x25\x5c\xce\x74\x0b\x46\x10\x4d\x67\x99\xda\x15\x5b\xf3\xac\x08\xdf\x98\x53\x77\x35\xf7\x8a\x53\xd2\x70\x35\xe3\x8f\xc3\x8a\xff\x93\xfc\xd9\xbe\x94\x2c\x8e\x3b\x61\xbb\x41\xf7\x9d\x53\x6e\x9b\xc6\x9e\x11\xea\xb4\xc6\xf0\xa5\x01\x3a\x8b\x50\xfc\xcd\x67\x2e\x72\x58\xbe\xd8\xad\x04\x89\xd7\x68\xcb\xc2\x9d\x83\x75\x69\x45\x33\x1d\x4f\x1b\x46\xe5\x2e\x74\xcc\xc1\x3d\xc8\xb8\x69\xc7\x11\xef\x24\xdf\xb0\x75\x52\x7d\xe3\x76\x59\x5f\x30\xfa\xe7\x14\x5a\xb3\x39\xac\xd0\x16\x8b\x49\x60\x0e\x70\x21\x57\x25\x47\x7c\xca\x90\x12\x45\xa0\x1b\x17\xbe\xad\xd9\x5e\xba\xd9\xf6\x01\xfb\xae\x70\xab\x2d\x9a\x60\xcf\x45\x5b\x5b\xc8\x61\x19\xad\xd6\xa1\xd4\x47\xc9\x7d\x16\x2d\xe3\x7a\x5c\xbb\x65\x14\x67\xcc\x9c\x64\xa4\x8b\x2f\x09\xed\x46\xa6\x88\xff\x17\xb0\x05\xee\x92\x5d\xf1\xb1\xc2\xf9\xca\xed\x6e\xeb\xe1\x99\xda\xfd\x25\xc7\x2c\x33\xc9\xa1\x85\xc3\x10\x27\x55\x9d\x73\x07\x99\x42\x3f\x9f\x31\x07\xde\xc9\x8a\x4b\xae\x86\x99\x9c\x53\x71\x74\x78\x36\xbf\x77\x4e\x30\xf4\x42\xd4\x15\xba\x0a\x6a\x97\xde\x08\xb8\x0f\x15\x29\x52\x7c\x4e\x40\x73\xd5\x0b\xdc\xfe\x42\x99\xfa\xd9\x25\xd3\x21\x05\xa3\xaf\x40\x01\xfe\x64\xf5\xe5\x88\xc1\xe5\x9c\xa5\xe9\xd7\x40\x1d\x6f\x20\x79\x32\x48\x14\xdc\x8d\x4b\x07\x2b\xc4\xf9\x73\x7c\xc0\x02\xe9\xd9\xd0\xbd\xa0\x8f\x7c\x5b\xe0\x4c\x70\xa8\x6a\x2d\x6a\x06\x18\xa2\x6d\x72\x67\x82\x1c\x83\xab\x98\x6b\x34\x0b\x96\xe5\xdf\x35\x92\x44\x59\xd9\x5f\x8c\x58\xf1\xcd\x74\x83\x91\x2b\x25\x26\x5d\x35\xda\x80\x61\x71\x41\xc6\x23\xf2\xb3\x73\xc2\x4c\x63\x95\x1b\x43\x3f\x9b\x42\xd5\xf7\x03\x35\xa6\x7a\xdd\x4c\x94\xcb\x74\xc4\xe0\xeb\xfe\xca\x5c\x61\xca\x28\xba\xa8\x4b\x52\x04\xe7\xf3\x75\x15\xca\xa0\xec\xc5\x3a\x44\x85\x4a\xcf\xd2\xfd\xab\x9e\x98\xb4\x4d\xef\xae\x99\x1e\xe7\xa9\x6f\xd2\x16\xcf\x99\x63\x98\xa2\xb3\x86\xcd\x34\xb8\xf4\x2f\x03\x77\x18\xdd\x8c\xc5\xa8\x5b\xc6\x53\x26\x9a\x07\xda\x64\x31\x3b\x8a\xd2\xd4\x57\x0d\x69\x79\x1f\xd4\xff\x19\x76\x67\x67\x69\x32\x8d\xe1\x69\xbf\x35\x7d\xc6\xf6\xa4\x95\xda\x20\xd3\xa8\xb8\xc9\xda\xbd\xa6\x8e\x39\xf9\x3a\xa5\x39\x34\xac\x48\x5f\x60\xde\x18\xf8\xd6\xe0\x0f\xe6\xfa\x86\x18\x47\x81\x12\x8f\x5e\xd3\x10\x70\x5d\xe1\x5d\xd5\x1d\xf3\x8b\xbc\x5d\xaa\xdf\x60\x5c\x36\x4a\x5d\x02\x0a\xd3\x5e\xa8\xd7\x81\xf3\x93\xba\x35\x29\xe0\xf5\x38\x0f\xcd\x5b\x68\xfc\x1c\x8a\xf6\x04\x94\x13\x26\xd7\xad\x83\x14\xb3\x53\xf4\xcb\xa1\x76\x5f\x9a\x61\x03\x54\xe7\x71\xd8\x78\x16\xf2\x2c\x74\xa8\x26\x20\x63\xf2\x2c\xaa\x20\x24\x3a\x7b\x8c\x4a\x8c\x64\xa5\x3d\x52\x5d\x44\x32\x93\x5c\xea\x5a\x24\x33\x2e\x46\x13\x81\x24\xcf\xb1\x6a\x51\x48\x60\xd8\x66\xdd\x54\x64\xd8\xec\x46\xbd\x0f\x7c\xd4\x77\x91\xa1\x18\x9e\xed\xf1\xd2\xe8\x80\xec\x05\x4f\xda\x77\x55\x0f\xcb\x1d\xd3\x46\x44\x7b\x67\x4e\x6b\xf9\x89\x61\xa6\x2c\x69\x5e\x8d\x3b\x92\x30\xb2\xa9\x9a\x24\x8d\xc1\xb8\xc6\xd2\x08\x11\x34\xe7\x5e\x56\x5b\x70\xa9\x23\x8e\x9f\x31\xeb\xbd\xed\x9a\x64\x8a\x77\xa9\xd5\x2a\xff\xe2\x36\xc2\x82\xd1\x8e\x2f\x68\x6e\x6b\xa8\x9d\x9a\x73\xad\x75\x42\xfd\xb8\x8c\xb7\xcd\x27\xb1\x61\x29\xae\xa6\x26\x02\x2e\xfe\xa7\xab\x92\x7c\x29\xa6\xa1\x31\x98\xde\x12\xc1\x75\x7c\x66\xb7\x06\x37\xd8\x5b\xf8\x3f\xfc\x47\xdb\x8a\x25\x16\x6f\x9a\xd5\x53\xe1\xeb\x16\x64\x19\xae\x79\x54\x10\xd5\xf2\xa1\xae\x2e\x67\x71\xf3\xae\x86\x98\x8c\x43\x4d\x6d\xf8\xa0\x14\x95\x8b\x43\x0a\x89\xff\xd0\x58\x40\x95\xc6\xd4\x39\x93\x99\xc3\x23\x64\x8e\xd9\x9c\xcb\xc1\x4c\xdb\x5d\xc1\x4f\x7f\x4f\xeb\x3a\x69\xae\xb7\xde\xb2\x50\xd1\xe3\x96\x87\xac\xd0\x4e\xcb\xbf\xdb\x34\x1d\xfb\x32\x87\xd6\xf8\x87\xe0\xca\x98\xef\xfc\x45\xce\x4b\x29\x76\xce\xa4\x8d\x89\xbf\xe8\x88\x66\x8e\x8d\x29\xb1\x63\x38\x15\x11\x3a\x9b\x96\x7f\x34\x58\x6b\x05\xc4\x02\xff\x1c\x0b\x1d\xc8\xf2\xde\x84\x74\xa8\xdc\xdd\x8c\xf0\x4d\xdd\xd4\x7c\x1f\x67\x3e\xe9\x5b\xf6\x51\x07\x99\x5a\x9b\x11\x6a\x6f\xa4\x1f\x4c\xfe\x64\xbb\xcc\x8a\x8d\xef\xb6\xa1\x38\x37\x62\x42\xac\x4a\xfe\xbe\x08\xb9\xe5\xb4\xe8\x74\x70\x1b\xf2\x46\x16\xe0\x2f\x45\x26\x28\x3a\xbc\x3f\xc0\x5a\xf5\x67\xb7\xa3\xf0\x10\x3d\x90\x67\xb1\xf5\x31\x66\x65\x97\x59\xaf\xb0\xd2\xd3\x0f\x5b\x43\x38\xac\xe4\x55\x96\x45\x3c\x63\x3c\xc3\xe2\x26\x38\x14\x33\x09\x59\x2c\xce\x8d\x50\x20\x41\xd2\x27\xc1\x9b\x61\x89\xfc\xa9\xff\x7a\xe8\xa0\xea\xa3\x4f\x0e\xc4\xd2\xde\x74\x0f\x82\x02\x0d\x97\xf3\xc6\xc0\x57\xf8\x8f\xb2\x1e\xc3\xe5\xc2\x05\xe9\x12\xe8\xb1\xb8\x21\x59\x08\x35\x4b\x3e\xc7\xe7\x41\x99\xb2\xad\x31\x53\xa0\xc9\xf2\x45\x11\xbd\xe0\x23\xe5\x82\xe0\x5f\xa0\x5c\xfd\x3a\xc0\x07\x1c\xaf\x4b\xf7\xd9\x6b\xfe\x6d\x28\x75\x1f\x00\x47\x99\xb8\xb9\xcb\xcc\x7a\xf9\x98\xac\x6e\x73\xa2\x22\x38\x3d\xd5\x3c\x59\x59\x9c\x5c\x61\x7a\xae\xc2\xc7\xa7\x9a\x4e\xab\x2d\x31\xbe\xa6\x9b\x9a\x1b\x11\x47\x4c\x6f\x75\x73\x43\x32\x4c\x67\xf4\xfb\x02\xb4\xa6\x9d\xc6\x0c\x54\xb4\xe9\xb9\x89\xe7\x31\xc5\x9c\x6e\x5e\x95\x1b\x6b\xb8\xa1\xdb\x92\x95\x69\x18\xd4\x13\xd2\x7e\x18\xf6\x1a\x46\x26\x07\x18\x36\x1b\xba\xe3\x13\x0d\x47\x8d\xf9\x31\xa1\x86\xcf\xc6\xb7\x11\xcf\x8d\x39\xa6\x85\x21\x06\xa3\xca\x8c\x0f\x38\x63\x1c\x04\x47\xa3\x94\xa6\xb9\x60\x8d\x07\xd1\x74\x00\x5c\x90\xeb\xa5\xbf\x62\x8a\xcf\x8a\xd4\x6f\x37\xad\x4b\x7b\xac\xdf\x6b\x0e\x48\x9e\xa2\xdf\x6b\xd6\xc5\xc7\xea\xaf\x98\x5f\xc7\x24\x1a\x7c\xc0\xaa\xc8\xe1\x06\x13\xb8\x23\x64\xad\xe1\x3a\x34\x29\x70\x94\x31\x13\xc2\xa0\x16\xfd\x9f\xbd\xba\xfa\x8a\xfa\x8f\xd7\x40\xff\x31\x31\x90\xb0\x11\x93\x50\x41\x69\x41\x05\x14\x10\x2c\x44\x50\x40\x44\x05\x95\x6e\x11\x95\x9a\x99\x6f\x4f\x77\xc1\xc0\xd0\xdd\xdd\xdd\x52\x02\x2a\x82\x58\x88\x08\xf6\xcf\xee\x3c\x6b\xef\xbb\xbd\xd6\xf9\x0f\xce\x79\xdf\xbd\x9f\xdb\xd7\x5a\xcf\x03\x3f\xc0\xcd\xd4\xa2\x11\x2a\xbe\xc1\x76\x11\xf9\x1b\x6e\x6c\xbd\x9e\x7c\x07\xa7\x5b\x8e\x93\xef\xe3\xb7\xf6\xae\x21\x8f\x11\x0a\xa6\x06\xe4\x57\x84\xb5\x91\x33\xe5\x24\x11\xac\xb7\x83\x32\x48\x30\xb6\x3f\x83\xf6\x10\x62\x2d\x57\xa8\x9e\x20\x36\x4e\xc2\x11\xc4\x52\xb5\x04\xe4\x00\x2e\x3a\xb0\x2c\xfe\xcf\x49\x9d\xfd\xc1\x71\x01\xae\x47\xcc\x5f\x4a\xf2\x4f\x97\x9a\x8d\x88\xd5\xce\x2d\x37\x96\x09\xa1\xf3\x7d\xfa\xee\xfc\x17\xde\xcd\x3a\x93\x3c\x5b\xff\x1f\xda\xee\x9c\x43\x21\x15\x9b\x2b\x58\xa4\xcb\xb8\x7a\x12\xa3\x2e\xd2\x65\xf5\x7f\xf4\x65\x24\x07\x9b\xf4\xb8\x0a\x17\x83\xfd\x56\xd2\x8d\x6e\x26\xe6\x43\x62\xf8\x4c\x90\x59\xb7\x68\xbe\x47\xb2\x71\xb2\x00\xbe\xa8\xae\xef\xc7\x5f\xe0\x33\xad\xf3\x81\x4b\x09\x78\xa3\x1d\xce\x4e\x0f\x3d\xbf\xb9\x87\x39\x7b\xf9\x85\x7a\x3e\xc3\x3e\x32\x62\xcd\x1c\x5a\x23\x69\x83\x8d\xae\xf4\xfc\xa9\xc0\xfd\xcb\xc4\xc3\xee\x2e\xe6\x85\x22\x87\x73\xe7\xcd\xea\x04\x4f\xcf\x5f\x34\x4e\xe1\x47\x7a\x95\xea\x87\xf1\xd6\xf8\x39\xe8\x02\x4e\x61\xd0\x56\x6d\x2a\xeb\x6d\xd8\xa9\xcd\x13\x4c\xbb\x88\x14\xf5\xeb\xf4\xae\xc8\xa7\x6b\xd6\xd2\xdc\x49\x87\x6c\xe6\x8a\xfc\xce\xbc\xde\xf7\x51\xa8\xe8\x21\x33\x4f\xe1\x77\x5c\x38\x67\x56\xc0\x8b\xf3\xde\x6e\x2c\xe3\x7a\xf9\x19\xeb\x47\x73\xcc\x02\x69\xba\xeb\x59\x7f\x42\x17\x6b\x17\x30\x63\xc3\xdb\xb6\x00\xfa\xc7\xab\x3c\xf5\xef\xb4\xf2\xe8\x33\x6b\x9c\xa8\x18\xd9\xdc\xda\x8f\x9f\x71\xfe\xc1\xbe\x4b\xbc\xab\x5e\xfb\xcd\x8d\xb8\x67\x7d\x9a\xcd\xce\x72\xdc\xfd\xcd\x8c\xfd\xd8\x27\x02\x9f\xe9\x9f\x67\xb9\x84\x3c\xd4\x55\x67\x1e\xbb\xf4\x53\xbb\x93\xfe\xe1\x8a\xd7\x16\x23\x5a\x5c\xe4\xf8\x7a\x13\xaa\x28\xd6\x60\x8d\x98\x48\xa5\xc4\x5b\x4d\x73\x5e\xfb\xf4\x5b\xfe\x66\xbf\xf1\xfb\xb5\x77\x84\xf5\x2f\xd0\xca\x6c\x15\x6b\x6b\xb0\x97\xf1\x7e\xe6\xd1\xd0\x0a\x7d\x47\x06\x29\xfc\x90\xae\x26\x3d\x2b\xe2\xa7\xf6\x53\xda\x95\x48\x95\x2d\xc1\x54\x9b\x98\x1d\xeb\xa3\x09\x0a\x59\x75\xcd\x23\xfc\x3a\xf4\xd7\x4a\xc8\x3c\x19\xe2\x66\xd9\xc8\x20\x85\x69\xef\x4d\xa6\xb7\x5d\xfa\x65\xfa\x95\xbe\xfa\x72\x81\xb1\x09\xed\xd2\x15\xb2\xbe\x2f\x75\xf6\x1a\xa2\x7b\x8e\x7a\x3a\x2a\x6e\xab\x39\x11\x1a\xf3\x67\xcb\x14\x4e\x90\x2f\xae\xff\x82\x2b\x41\x97\xd6\x9e\xc3\xf2\x11\x8a\x95\x0b\x75\xe6\xaa\xbe\xa5\x90\x7a\xe6\x5a\xc0\x5e\x2a\xf1\x22\x32\xcf\xf4\x1d\x11\x12\x35\x6a\xbc\x1f\xff\x12\xa3\xa6\xcf\xc5\x4b\x63\x21\xdd\x54\x3c\x80\xf4\x72\xab\x0c\x6b\xa7\x24\x6a\xb8\x60\x1b\x61\xcb\x0d\xfe\xe8\x0f\x24\x6c\x6d\x17\x3a\x8b\xc6\x59\x2d\xc2\x7e\x93\x62\x2c\x4f\x63\x35\x64\x87\xbd\x1e\x18\x9d\xb2\xc1\x74\x02\xd3\xa6\xdc\x31\x36\x43\x6f\x43\x49\xfa\x99\x68\x23\xec\xaf\x7b\x13\x2d\x44\x0c\xb6\xbe\x44\xcf\xa1\xca\x1a\x1d\xe8\x2a\xf4\xfe\x86\x76\xd4\x1c\x33\x52\x9b\x87\x86\x61\x74\x2b\x13\xf4\x0d\x74\xcf\x32\x10\xcd\x86\x63\xf6\x3a\xa2\x10\xb2\xc6\x74\x14\xd5\x46\x52\x8c\xf7\x22\x8f\x50\x03\xfd\x2a\x64\x02\xad\xd5\x7d\x8b\x4c\x62\x66\xdb\x56\x22\x75\x58\xbd\xc6\x57\x24\x09\xdf\xbc\xe1\x25\xf2\x04\x57\x53\x5b\x8d\x9a\xe2\x8b\xad\x2e\xa2\x00\xad\xb7\xa4\x20\xd5\xd8\xae\xbd\x87\x11\x1e\x56\x6c\x7a\x17\x31\xc3\x95\x8c\xed\xe0\xcf\x78\xac\xfe\x10\xfc\x07\x1f\xd8\xb1\x1c\x59\x49\xa8\x6c\xb3\x43\x54\x08\x6b\x4d\x7d\x64\x1d\xe1\xba\x51\x09\x21\xe3\xdf\xd4\xb6\x22\xff\xe1\x49\x00\xcc\x01\x73\xc1\x3c\x30\x1f\x2c\x00\x0b\x81\x02\x58\x04\x16\x83\x25\x60\x29\x50\x04\xcb\x80\x12\x50\x06\x2a\x40\x15\x2c\x07\x2b\xc0\x4a\xb0\x0a\xac\x06\x6b\xc0\x5a\xa0\x06\xd6\x01\x75\xb0\x1e\x6c\x00\x1b\xc1\x26\xb0\x19\x6c\x01\x1a\x40\x13\x68\x01\x6d\xb0\x15\x6c\x03\xdb\x81\x0e\xd0\x05\x3b\xc0\x4e\xa0\x07\xf4\x81\x01\x30\x04\x46\xc0\x18\x98\x80\x5d\xc0\x14\x98\x81\xdd\x60\x0f\xd8\x0b\xcc\x81\x05\xb0\x04\xfb\xc0\x7e\x60\x05\xac\x81\x0d\x38\x00\x6c\x81\x1d\x38\x08\x0e\x81\xc3\xe0\x08\x38\x0a\xec\xc1\x31\xe0\x00\x8e\x03\x47\xe0\x04\x4e\x80\x93\xc0\x19\xb8\x00\x57\x70\x0a\xb8\x81\xd3\xc0\x1d\x9c\x01\x67\xc1\x39\xe0\x01\x3c\xc1\x79\x70\x01\x5c\x04\x5e\xc0\x1b\xf8\x00\x5f\xe0\x07\xfc\x41\x00\x08\x04\x41\x20\x18\x84\x80\x50\x10\x06\x2e\x81\x70\x70\x19\x44\x80\x2b\xe0\x2a\xb8\x06\x22\x41\x14\x88\x06\x31\x20\x16\x90\x00\x19\x50\x00\x04\x60\x80\x00\x14\x60\x00\x07\x04\xa0\x02\x1a\xa0\x03\x06\x60\x02\x16\x60\x03\x0e\xe0\x02\x1e\xe0\x03\x01\x10\x02\x11\x10\x03\x09\x90\x82\x38\x10\x0f\x64\x20\x01\x24\x02\x39\x48\x02\xc9\x20\x05\xa4\x82\x34\x90\x0e\x32\x40\x26\xc8\x02\xd9\x20\x07\xe4\x82\x3c\x90\x0f\x0a\x40\x21\x28\x02\xc5\xa0\x04\x94\x82\x32\x50\x0e\x2a\x40\x25\xa8\x02\xd5\xa0\x06\xd4\x82\x3a\x50\x0f\x1a\x40\x23\x68\x02\xcd\xa0\x05\xb4\x82\x36\xd0\x0e\x3a\x40\x27\xe8\x02\xdd\xa0\x07\x5c\x07\xbd\xa0\x0f\xf4\x83\x01\x30\x08\x6e\x80\x21\x30\x0c\x46\xc0\x4d\x70\x0b\xdc\x06\xa3\xe0\x0e\x18\x03\xe3\xe0\x2e\x98\x00\xf7\xc0\x7d\xf0\x00\x3c\x04\x8f\xc0\x24\x78\x0c\xa6\xc0\x13\x30\x0d\x9e\x82\x19\x30\x0b\x9e\x81\xe7\xe0\x05\x78\x09\x5e\x81\xd7\xe0\x0d\xf8\x0f\xbc\x05\xef\xc0\x7b\xf0\x01\x7c\x04\x9f\xc0\x67\xf0\x05\x7c\x05\xdf\xc0\x77\xf0\x03\xfc\x04\xbf\xc0\x6f\xf0\x07\xfc\x05\xff\x00\x00\x73\xe6\xcc\x9d\x3b\x6f\xde\xfc\xf9\x0b\x16\x2c\x5c\xa8\xa0\xb0\x68\xd1\xe2\xc5\x4b\x96\x2c\x5d\xaa\xa8\xb8\x6c\x99\x92\x92\xb2\xb2\x8a\x8a\xaa\xea\xf2\xe5\x2b\x56\xac\x5c\xb9\x6a\xd5\xea\xd5\x6b\xd6\xac\x5d\xab\xa6\xb6\x6e\x9d\xba\xfa\xfa\xf5\x1b\x36\x6c\xdc\xb8\x69\xd3\xe6\xcd\x5b\xb6\x68\x68\x68\x6a\x6a\x69\x69\x6b\x6f\xdd\xba\x6d\xdb\xf6\xed\x3a\x3a\xba\xba\x3b\x76\xec\xdc\xa9\xa7\xa7\xaf\x6f\x60\x60\x68\x68\x64\x64\x6c\x6c\x62\xb2\x6b\x97\xa9\xa9\x99\xd9\xee\xdd\x7b\xf6\xec\xdd\x6b\x6e\x6e\x61\x61\x69\xb9\x6f\xdf\xfe\xfd\x56\x56\xd6\xd6\x36\x36\x07\x0e\xd8\xda\xda\xd9\x1d\x3c\x78\xe8\xd0\xe1\xc3\x47\x8e\x1c\x3d\x6a\x6f\x7f\xec\x98\x83\xc3\xf1\xe3\x8e\x8e\x4e\x4e\x27\x4e\x9c\x3c\xe9\xec\xec\xe2\xe2\xea\x7a\xea\x94\x9b\xdb\xe9\xd3\xee\xee\x67\xce\x9c\x3d\x7b\xee\x9c\x87\x87\xa7\xe7\xf9\xf3\x17\x2e\x5c\xbc\xe8\xe5\xe5\xed\xed\xe3\xe3\xeb\xeb\xe7\xe7\xef\x1f\x10\x10\x18\x18\x14\x14\x1c\x1c\x12\x12\x1a\x1a\x16\x76\xe9\x52\x78\xf8\xe5\xcb\x11\x11\x57\xae\x5c\xbd\x7a\xed\x5a\x64\x64\x54\x54\x74\x74\x4c\x4c\x6c\x2c\x89\x44\x26\x53\x28\x10\x04\xc3\x08\x82\xa2\x18\x86\xe3\x04\x41\xa5\xd2\x68\x74\x3a\x83\xc1\x64\xb2\x58\x6c\x36\x87\xc3\xe5\xf2\x78\x7c\xbe\x40\x20\x14\x8a\x44\x62\xb1\x44\x22\x95\xc6\xc5\xc5\xc7\xcb\x64\x09\x09\x89\x89\x72\x79\x52\x52\x72\x72\x4a\x4a\x6a\x6a\x5a\x5a\x7a\x7a\x46\x46\x66\x66\x56\x56\x76\x76\x4e\x4e\x6e\x6e\x5e\x5e\x7e\x7e\x41\x41\x61\x61\x51\x51\x71\x71\x49\x49\x69\x69\x59\x59\x79\x79\x45\x45\x65\x65\x55\x55\x75\x75\x4d\x4d\x6d\x6d\x5d\x5d\x7d\x7d\x43\x43\x63\x63\x53\x53\x73\x73\x4b\x4b\x6b\x6b\x5b\x5b\x7b\x7b\x47\x47\x67\x67\x57\x57\x77\x77\x4f\xcf\xf5\xeb\xbd\xbd\x7d\x7d\xfd\xfd\x03\x03\x83\x83\x37\x6e\x0c\x0d\x0d\x0f\x8f\x8c\xdc\xbc\x79\xeb\xd6\xed\xdb\xa3\xa3\x77\xee\x8c\x8d\x8d\x8f\xdf\xbd\x3b\x31\x71\xef\xde\xfd\xfb\x0f\x1e\x3c\x7c\xf8\xe8\xd1\xe4\xe4\xe3\xc7\x53\x53\x4f\x9e\x4c\x4f\x3f\x7d\x3a\x33\x33\x3b\xfb\xec\xd9\xf3\xe7\x2f\x5e\xbc\x7c\xf9\xea\xd5\xeb\xd7\x6f\xde\xfc\xf7\xdf\xdb\xb7\xef\xde\xbd\x7f\xff\xe1\xc3\xc7\x8f\x9f\x3e\x7d\xfe\xfc\xe5\xcb\xd7\xaf\xdf\xbe\x7d\xff\xfe\xe3\xc7\xcf\x9f\xbf\x7e\xfd\xfe\xfd\xe7\xcf\xdf\xbf\xff\xfe\xfd\xff\xfe\xff\x5f\xf7\x0f\xf3\xbf\x66\x0c\x00\x00\xf3\xe7\x2d\xfd\x9f\x31\xf8\xbf\xf7\xff\xf2\xcf\xf9\xdf\x70\xce\xb7\x79\x6f\x17\x3c\x53\x98\x5c\x3c\xbe\x74\x74\xd9\x3d\xe5\x59\xd5\x0f\x2b\xfe\xac\x5e\xbc\x76\xc5\xba\x0d\xeb\x75\x36\x1a\x6f\xde\xab\xb1\x4f\xcb\x6a\xab\xf5\x76\x2b\xdd\xfd\x3b\xf7\xe9\x9b\x1b\xee\x31\x36\x35\xa9\xdc\x55\x6e\x5a\x62\x56\xb4\xbb\x60\x4f\xde\xde\x1c\xf3\x6c\x8b\x2c\xcb\xcc\x7d\x99\xfb\x33\xad\x32\xad\xb3\x6c\x72\x0e\xe4\xd9\x16\xd8\x15\x1f\x2c\x3b\x54\x75\xb8\xee\x48\xd3\xd1\x76\xfb\xee\x63\x7d\x0e\x43\xc7\x07\x1c\x7b\x9d\x7a\x4e\x74\x9e\x6c\x73\x6e\x76\x69\x70\xad\x3d\x55\xe9\x56\x76\xba\xc8\x3d\xef\x4c\xd6\xd9\xb4\x73\xc9\x1e\x72\xcf\xc4\xf3\x49\x17\xd2\x2e\xe6\x78\x95\x78\xd7\xf9\x74\xf9\xde\xf4\x9b\xf4\x9f\x09\x98\x0e\x9c\x0a\x7a\x1c\x3c\x19\xf2\x28\xf4\x51\xd8\xe4\xa5\xc9\xf0\xc7\x97\xa7\x22\x9e\x5c\x79\x7a\x75\xf6\xda\xb3\xc8\x17\x51\xaf\xa2\xdf\xc4\xbc\x8d\xfd\x40\xfa\x44\xfe\x42\xf9\x0e\xfd\x84\xff\xa0\x00\x2d\xc0\x9c\xb1\xdf\x78\x0e\xe1\x48\x7c\xa7\x66\xd0\x8e\xd1\x3e\xd3\x53\x19\x47\x18\x1f\x98\x49\xac\x83\xac\x77\xec\x04\xce\x01\xce\x1b\xae\x8c\x67\xc3\x7b\xcd\x8f\x17\x58\x0b\x5e\x0b\xe3\x45\x07\x44\xff\x89\x13\x25\x07\x25\x1f\xa5\x69\x71\xc7\xe3\x7e\xc5\x17\xca\xce\x26\x2c\x49\x68\x4a\x0c\x93\xaf\x91\x77\x24\x05\x27\xaf\x4c\x6e\x4d\x09\x4a\x5d\x99\xda\x96\x16\x92\xbe\x3a\xbd\x33\xe3\x52\xe6\xba\xcc\x9e\xac\x88\xec\x0d\xd9\xfd\x39\x91\xb9\x5b\x72\x87\xf2\x62\xf3\xb5\xf3\x6f\x15\x40\x85\x3a\x85\x63\x45\x58\xb1\x5e\xf1\x44\x09\xb5\xd4\xb0\xf4\x41\x19\xbd\xdc\xb8\xfc\x51\x05\xb3\xd2\xa4\xf2\x51\x15\xbb\xda\xbc\xfa\x65\x4d\x42\xed\xa1\xda\xcf\x75\x19\xf5\x8e\xf5\x3f\x1b\x72\x1b\x9d\x1b\xff\x36\x15\x36\xbb\xb7\x2c\x6c\xa9\x69\xf5\x6d\x5b\xd1\xd6\xd9\x1e\xd1\xb1\xa9\x63\xb8\x93\xd2\xa5\xd3\x75\xb7\x9b\xe8\x31\xe8\xb9\x7f\x9d\xda\xab\xd7\x3b\xd6\x07\xf5\x6b\xf6\xf7\x0f\x84\x0d\xaa\x0c\x56\xdd\x70\x1d\xda\x36\x2c\x1a\xf9\x71\xeb\xc2\xed\xce\x3b\x1a\x63\xe8\xf8\xc3\x09\xb3\x7b\xbc\xfb\xd3\x0f\x4d\x1f\x31\x26\xc7\xa7\x34\x9f\x84\x4f\x37\xcc\xcc\x99\x3d\xfa\x4c\xfc\xfc\xdb\xcb\xb3\xaf\x9a\xdf\xac\xff\x8f\xfc\xf6\xee\x7b\xe3\x0f\xec\x8f\x4f\x3e\xef\xfa\x42\xff\x3a\xf6\x5d\xe3\x47\xf8\xcf\x96\xdf\xcb\xfe\x78\xfe\x2d\xfd\xdf\xd6\xf8\x31\xef\xc3\x82\xd7\x0a\x33\x8b\xa7\x96\x3e\x5e\xf6\x42\xf9\xa3\xea\xcf\x95\xf3\x56\x2f\x5d\xbb\x62\x9d\xfa\x7a\xad\x8d\x3b\x37\x1b\x6b\x98\x69\xed\xd9\xba\x67\xfb\x6e\x5d\xd3\x9d\x26\xfa\xc6\x86\xc6\xc6\xc6\x26\x15\xbb\xca\x4c\x8b\xcd\x0a\x77\xe7\xef\xc9\xdd\x9b\x6d\x9e\x65\x91\x61\x99\xbe\x2f\x75\x7f\x8a\x55\xb2\x75\x92\x8d\xfc\x40\xa2\x6d\xa2\x9d\xfc\x60\xf2\xa1\xb4\xc3\x99\x47\xf2\x8f\x96\xda\xd7\x1d\xeb\x70\x18\x3a\xde\xe7\xd8\xe3\xd4\x75\xa2\xeb\x64\x97\x73\xb7\xcb\x75\xd7\xbe\x53\x83\x6e\xc3\xa7\x6f\xba\x8f\x9e\xb9\x73\x76\xec\xdc\xb8\xc7\xb8\xe7\xf8\xf9\xf1\x0b\xe3\x17\xef\x7a\x4d\x78\xdf\xf7\x79\xe4\x3b\xe5\x37\xe3\x3f\x1d\xf0\x20\x70\x2c\x68\x24\x78\x20\xa4\x27\xb4\x23\xac\xf5\x52\x53\x78\xfd\xe5\xba\x88\xda\x2b\xb5\x57\x6b\xaf\xd5\x45\x36\x44\x35\x47\xb7\xc7\xf4\xc4\x0e\x90\x6e\x92\x27\x28\x53\xd0\x4b\xf8\x13\x0a\xd0\x2c\xec\x30\xf6\x06\x17\x13\x7b\x88\xc7\x54\x06\x4d\x9f\x76\x97\x8e\x32\x74\x18\xa3\x4c\x88\xb5\x9d\x35\xca\x46\x38\xba\x9c\xbb\x5c\x82\x67\xc8\x7b\xc4\x67\x0b\x76\x0b\x66\x85\x12\x91\x8d\xe8\xad\x38\x59\x62\x2f\xf9\x2e\xcd\x8d\x73\x8d\x9f\x1b\x5f\x21\xbb\x90\xa0\x94\xd0\x92\x18\x26\x5f\x2d\x6f\x4d\xf2\x4f\x56\x4e\xae\x4f\xf1\x4e\x55\x4c\xad\x4b\xf3\x4e\x5f\x96\x5e\x9f\xe1\x9b\xa9\x9c\xd9\x94\x15\x90\xbd\x3c\xbb\x35\x27\x38\x77\x75\x6e\x67\xde\xa5\xfc\x75\xf9\xd7\x0b\xae\x14\x6e\x2c\x1c\x28\x8a\x2a\xd6\x28\x1e\x29\x21\x97\x6e\x2b\x1d\x2d\x43\xca\x77\x94\x4f\x54\x50\x2b\x0d\x2b\x1f\x56\x31\xab\x8d\xab\x1f\xd6\xd0\x6b\x0d\x6b\xef\xd7\xd1\xea\x0d\xeb\x1f\x36\x30\x1b\x4d\x1b\x9f\x36\x89\x9b\x0f\x34\x7f\x6c\xc9\x6c\x75\x6e\x9b\xd7\x56\xd5\xee\xdb\xb1\xb2\xa3\xbb\xf3\x6a\x97\x46\xd7\xad\x6e\xa4\x67\x67\xcf\xbd\xeb\xd4\x5e\x83\xde\x89\x3e\xac\x7f\x7b\xff\xf0\xc0\x95\xc1\x55\x83\xb5\x37\xdc\x86\x76\x0c\x67\xdc\x5c\x71\x0b\xbb\xfd\xfa\xce\xc9\xb1\xaa\xbb\xaa\x13\xa1\xf7\xba\x1e\xac\x7e\x18\xf0\xa8\x7a\xf2\xdf\xd4\xe1\x27\xdc\xe9\x91\x19\xd5\xd9\x13\xcf\x24\xcf\x7f\xbd\xf4\x7e\x75\xfd\xcd\xf6\xff\x98\x6f\x9f\xbd\xb7\xf9\x20\xff\xf8\xee\xb3\xcd\x17\xe1\xd7\x47\xdf\xb7\xff\xb8\xf2\xb3\xed\xf7\xb2\x3f\x1e\x7f\x4b\xfe\xc7\x7f\xae\xc2\x7c\xa5\x85\xab\x16\xa9\x2f\xd9\xa4\xb8\x51\x69\xbd\x8a\xda\xf2\x75\x2b\xd5\x57\xab\xaf\x55\x5f\xb7\x4a\xfd\xdf\x86\xd7\x9b\x1e\x6c\xb9\xa5\x39\xac\x3d\xba\xed\x91\xce\xcb\x1d\xdf\xf5\x17\x1b\xaa\x19\xeb\x9a\x54\xed\xaa\x34\xad\x34\xab\xd8\x5d\xb1\xa7\x7c\x6f\x99\x79\x89\x45\xb1\x65\xe1\xbe\xfc\xfd\xb9\x56\xd9\xd6\x19\x36\xa9\x07\x92\x6c\x13\xed\x12\x0e\xca\x0e\x25\x1c\x4e\x3a\x92\x7e\x34\xcf\xbe\xe2\x58\x8b\xc3\xd0\xf1\x4e\xc7\x26\xa7\x9a\x13\x95\x27\xcb\x9d\xcb\x5d\xca\x5d\x2b\x4f\xd5\xb8\xd5\x9f\x6e\x72\x6f\x3b\xd3\x79\xb6\xe7\x5c\xaf\x47\xbf\xe7\xe0\xf9\xa1\x0b\x23\x17\x6f\x79\xdd\xf1\xbe\xeb\xf3\xc0\xf7\xb1\xdf\x8c\xff\xd3\x80\xc9\xc0\x89\xa0\x3b\xc1\x23\x21\x37\x42\xfb\xc2\x7a\x2e\x75\x85\x77\x5c\x6e\x8f\x68\xbb\xd2\x76\xb5\xfd\x5a\x47\x64\x57\x54\x4f\x74\x5f\xcc\x8d\xd8\x5b\xa4\xbb\xe4\x47\x94\x19\xe8\x0d\xfc\xe5\xff\xf8\x4f\x52\x69\x34\x3d\xda\x18\x1d\x62\x6c\x65\x8c\x30\x63\x59\x9a\xac\x21\x76\x0c\x47\x93\x33\xcc\x25\xf1\xb6\xf2\x6e\xf3\x61\xc1\x0e\xc1\x84\x90\x26\x32\x11\x4d\x89\xf9\x12\x4b\xc9\x2b\x69\x62\xdc\x91\xb8\x6f\xf1\x79\xb2\xd3\x09\x8b\x12\x1a\x13\x43\xe5\x2b\xe4\xf5\x49\x9e\xc9\xf3\x93\x8b\x52\x5c\x53\xfe\xa4\xe6\xa5\x39\xa7\xfd\x49\x2f\xc8\x70\xcd\x04\x99\x25\x59\x67\xb2\x17\x66\x57\xe6\x5c\xc8\x55\xcc\x6d\xc8\xf3\xcb\x5f\x9e\xdf\x56\x10\x5a\xa8\x56\x78\xbd\xe8\x6a\xf1\xe6\xe2\xa1\x12\x52\xe9\xd6\xd2\xd1\x32\xb4\x7c\x67\xf9\x44\x05\xad\xd2\xa8\xf2\x51\x15\xab\xda\xac\xfa\x69\x8d\xa0\xd6\xa2\xf6\x79\x9d\xa8\xde\xb2\xfe\x59\x83\xb0\xd1\xa2\xf1\x59\x93\xb8\xd9\xaa\xf9\x4d\x4b\x52\xab\x7d\xeb\x8f\xb6\xfc\xf6\xd3\x1d\x0a\x1d\xb5\x9d\xbe\x5d\x2b\xba\x3a\xba\x2f\xf5\xa8\xf7\xf4\x5d\xbf\xda\xbb\xb1\xb7\xaf\x2f\xa2\x5f\xad\xbf\x7d\x20\x60\x50\x71\xb0\xfc\x86\xcb\xd0\xb6\x61\xfe\xc8\xa7\x5b\x6e\xb7\x6b\xef\xac\x1c\xbb\x3c\x3e\x30\xa1\x71\x2f\xe6\xfe\xd0\xc3\xcd\x8f\xae\x4c\x76\x4e\xa9\x3e\xb9\x38\x5d\xf2\xf4\xc7\xac\xdd\x33\xd1\xf3\xb7\x2f\xed\x5f\xe5\xbc\xfe\xf7\xdf\x99\xb7\x95\xef\x97\x7c\xf0\xfa\x58\xf7\x79\xd9\x17\xaf\xaf\x35\xdf\x17\xfd\x38\xf7\xb3\xf4\xf7\xdc\x3f\x6e\x7f\x0b\xff\xc7\x1f\x7c\x9e\xf3\x62\xee\xc3\x79\xb7\xe6\x0f\x2c\xe8\x5b\x38\xa4\x30\xba\x68\x6c\xf1\xdd\x25\x13\x4b\xef\x2b\x3e\x5c\x36\xa9\x34\xad\xfc\x4c\xe5\xb5\xea\xfb\xe5\x9f\x57\xfc\x58\xf9\x6f\xf5\xfc\x35\x4b\xd6\xaa\xa8\xad\x5e\xb7\x4e\x7d\xdd\xfa\x75\x1b\xd6\x6d\x54\xdf\xa4\xbe\x59\x7d\x8b\xba\x86\xba\xe6\x3a\xad\x75\xda\x6a\x5b\xd7\x6e\x5b\xb3\x7d\x95\xce\x0a\xdd\xe5\x3b\x54\x77\xaa\xe8\xa9\xea\xaf\x30\x58\x6d\xb8\xce\x68\xb3\xb1\x8e\x89\xc9\xae\x9d\xa6\x5b\xcd\x34\x77\x6f\xd9\xb3\x65\xef\x16\x73\x4d\x0b\x6d\xcb\xed\xfb\x76\xec\x37\xb0\x32\xb6\x36\xb3\xd9\x7b\xc0\xc2\x76\xbf\x9d\xf5\x41\x9b\x43\xb6\x87\xed\x8e\x1c\x3a\x7a\xd8\xfe\xe8\x31\x7b\x07\x87\xe3\xf6\x8e\x07\x9d\xac\x4f\x58\x9c\xdc\xed\x6c\xe2\x62\xe0\xba\xf3\x94\x8e\xdb\xb6\xd3\xda\xee\x5a\x67\xb4\xce\x6a\x9d\xd3\xf2\xd8\xea\xb9\xfd\xfc\x8e\x0b\x06\x17\x77\x79\x99\x7b\x5b\xfb\x1c\xf1\x3d\xe9\x77\xd6\xdf\x3f\xc0\x33\xd0\x2d\xc8\x29\xd8\x3e\xe4\x50\xa8\x6d\xd8\x81\x4b\x36\xe1\x36\x97\x6d\x22\x6c\xaf\x1c\xbc\x7a\xe4\xda\xb1\x48\xa7\x28\x97\x68\xf7\x18\xcf\x58\x6f\x52\x00\x39\x94\x12\x01\x45\xc2\x24\x04\x46\x21\x2c\x06\xbf\x42\x84\x51\x03\x68\x5e\x74\x0f\x86\x1b\xf3\x24\xeb\x38\xfb\x28\xe7\x10\xd7\x8e\x67\xcb\xb7\x15\xd8\x09\x0f\x89\x8e\x8a\x1d\x25\xae\xd2\x73\x71\xbe\xf1\xe1\x32\x72\x02\x3b\x31\x51\xce\x4f\xa2\x26\x53\x52\xae\xa5\x86\xa7\x05\xa7\xfb\x67\xf8\x66\x7a\x67\x79\x67\x7b\xe7\xf8\xe6\xfa\xe7\x05\xe5\x87\x16\x44\x14\x46\x16\x91\x8b\xb1\x12\x66\xa9\xa0\x2c\xbe\x3c\xb5\x22\xb7\xb2\xb4\xaa\xb2\xba\xb2\xa6\xa2\xb6\xbc\xae\xac\xbe\xb4\xa1\xa4\xb1\xb8\xa9\xa8\xb9\xa0\x25\xaf\x35\xa7\x2d\xab\x3d\xa3\x23\xad\x33\xa5\x2b\xb9\x3b\xa9\x27\xf9\x7a\x6a\x6f\x46\x5f\x6e\x7f\xf1\x40\xf5\x60\xdb\x8d\x1b\x43\xed\xc3\xb5\x23\xa5\x37\x0b\x6e\xe5\xdc\xce\x1a\xcd\xbc\x93\x39\x96\x35\x9e\x73\x37\x7f\xa2\xe8\x5e\xc9\xfd\xf2\x07\x95\x0f\x6b\x1e\xd5\x4f\x36\x3d\x6e\x9d\xea\x7c\xd2\x3b\x7d\xe3\xe9\xed\x99\x7b\xb3\x4f\x9e\x4d\x3d\x9f\x78\x31\xf2\xb2\xef\x55\xe7\xeb\xe6\x37\x75\xff\x55\xbd\x2d\x7f\x57\xf2\xbe\xf8\x43\xd1\xc7\xe2\x4f\xa5\x9f\x2b\xbe\xd4\x7e\x6d\xfe\xd6\xfd\x7d\xe8\xc7\xdd\x9f\x4f\x7e\xbd\xfc\xfd\xfe\xcf\xd7\xbf\xbf\xfe\xfd\xfb\xf7\x0f\x05\xc8\xef\xb7\x8a\x28\x40\xda\x1f\x2e\x42\x01\x22\xe9\x7b\x89\x02\xe4\x4a\x0d\x1f\x05\x88\x67\x3a\x81\x02\xc4\x9d\xdd\x80\x02\xc4\x27\xa2\x15\x05\x08\xee\x36\x89\x02\xa4\xda\xec\x2b\x0a\x90\x7f\xaa\x27\xd0\x95\xa8\xe1\x9f\x76\x84\x45\x18\xbd\x59\x82\x10\x78\xfa\xfd\xa3\x08\x15\x37\xe8\x65\x22\x7c\xac\xb3\xda\x07\xb9\x82\xcd\x4b\x93\x22\x45\xd8\x01\xd6\x08\x52\x83\xa9\x47\xa8\x21\xd7\xd1\x2f\x6e\x6b\x91\xfb\xe8\xb4\xd9\x19\xe4\x35\x7a\x43\xe5\x01\xaa\x82\xc6\xfd\xba\x82\x6c\xa4\xa7\xbd\x5a\x88\xa8\xd1\xba\x26\x44\xc8\x42\xea\xd7\xeb\xa6\xc8\x4a\xaa\x56\xd5\x2a\x44\x83\xa0\xa4\x66\x23\x8e\x84\x0b\xf3\x15\xe2\x8d\x7f\xbb\x1c\x84\x10\xb8\xf0\xd4\x55\x24\x0f\xd7\x33\xbd\x8d\x5c\xc7\xda\x54\xc8\xc8\x2f\x6c\xd5\x37\x03\x38\x9a\xd7\xf7\xec\x00\x1c\xc0\x85\xc6\x4e\xc2\x41\x1c\xf5\x2e\x6f\x38\x9c\x35\x51\x9e\x03\x43\xcc\xca\xe4\x41\x58\xc8\xb8\xc1\xb0\x81\x4b\xe8\x6f\xc3\xb7\xc3\xaf\xe8\x73\x5d\x2d\x90\x6d\xd4\x9f\xbb\xde\x20\x9e\xc4\x75\xe5\x7f\x48\x01\x6e\xf1\x29\x14\x82\xe2\x97\x4c\xff\x86\x60\xa9\xca\xed\x1d\x10\x55\xbc\xa5\x3d\x01\x12\x09\x5d\x4a\x8d\xa0\x12\x7e\x92\xbc\x12\x1a\xe0\x2d\xa3\xc1\xd0\x37\x0e\x14\x36\x02\x1f\x60\x4d\xb8\x68\xc3\x12\xa6\xd2\x2e\x63\xf8\x3e\x7d\x8e\x72\x07\xb2\x87\x40\xdf\x35\x52\x52\x53\x5f\x3e\x16\x50\xf2\x92\x43\x47\x0e\x52\x2a\x13\x67\x5b\xfe\x52\xfa\x64\xa4\xa2\x27\x94\x27\x71\x1b\x13\x2a\xa0\x95\xe2\x3b\xc4\x4d\xe8\xb0\x90\x12\x4a\x83\x52\xf9\x8b\x9c\x35\xa1\xbf\x1c\x3f\x13\x21\xec\xcc\xf4\x53\xce\x86\x5b\xa9\xe3\xaf\x21\xf2\x8d\x92\x8c\x07\x93\xe4\x3b\x85\xfa\x83\x15\xe4\x89\xdc\xfa\xc6\x36\xf2\xcb\x2c\xab\xfc\xaf\x94\xa5\x69\x3d\xf1\x1a\x94\x3d\xc9\x47\xb1\x54\x0a\x25\x21\x37\xb8\x81\x32\x21\x1d\x3e\x31\x04\x59\x09\x8b\x8d\x07\xa0\x1c\xee\x66\x65\x29\xbc\x95\x3e\xfe\x62\x0b\xd9\xb5\x75\xdd\x04\x9f\xec\xd8\x10\xd2\x57\x47\x3e\x56\xfd\xac\xee\x2b\xd9\xad\xfc\x50\xae\x2f\x39\xa2\x48\x24\x19\x26\xe7\xe6\xb6\x20\x12\xf2\xfb\x8c\xfc\xa0\xf9\x14\xc7\x64\x6b\x27\x82\xd2\x14\x7f\xd9\x58\x01\x32\x14\x6a\x2a\xa3\x50\x37\x73\x76\x96\x20\x2b\x0f\x47\x8c\x1b\x90\x97\xf7\x3d\xbf\xee\x4c\x56\xec\xb2\xa9\x29\x27\xab\xb6\x60\xd9\xd6\x64\x9d\x3a\x81\xe8\x2e\xf9\x5c\x45\x24\x34\x4e\xce\x29\xfc\x1e\x40\x90\x5f\x65\xf5\x39\x8a\x28\x0e\xc9\x87\x8c\x62\x29\x13\x52\x55\x65\x14\xa2\xb1\x6b\x66\xaa\xc8\x73\xc7\xa6\xc7\xf6\x93\xfe\xdc\x5c\xd1\x73\x99\xf4\x69\x60\x55\xf5\x4d\xd2\xe7\xae\xa1\xac\x60\xb2\x42\x8b\xad\x48\x95\x6c\x5a\xcb\x81\xb6\x91\xa1\x32\x4f\xff\x27\xe4\xfa\x3c\x5b\x47\x2b\x8a\x52\xea\x2b\xa3\x73\x94\x8c\xb8\x26\xe5\x4c\xe8\x2c\xc7\xe1\xe9\x57\xf2\x9c\x87\x83\x77\x10\xd2\x9b\xf1\xc8\xee\x1b\xa4\xdb\x37\x57\x55\xeb\x93\x06\xfb\xdd\x32\x6f\x91\x26\x3a\x0f\x0b\x69\xa4\x7f\x8d\x7f\x28\xe5\x64\xdb\x2a\x5d\x7f\x5f\x72\x64\xe1\x0e\x47\x4d\x72\x7d\xc6\x12\xa3\x20\x8a\x4b\xfc\x0b\xe5\x1f\xd0\x4a\xce\x95\x1f\xf1\x78\x15\x3c\xf3\xc2\x12\xf7\x81\x8b\xc6\x27\xf0\x0d\xb0\xa8\xfb\x22\x36\x03\x53\x2a\xdc\xb0\x74\xe8\x6f\x8a\x32\x16\x0b\x97\x33\x32\x30\x2b\x78\x26\xfc\x28\x36\x07\xd1\x74\xad\x47\x5b\x11\xd8\x34\x12\x45\x91\x37\x2a\x79\xa8\x03\x6a\xf9\x2d\x0b\xdf\x85\x3b\x3c\xe3\x63\x2f\xb1\x8e\xb1\xf3\x58\x0e\x76\xaa\x6b\x1b\x16\x8d\xfe\x28\x3f\x81\x59\xa1\x91\xc9\x3a\x98\x16\x5a\x49\xbf\x8e\x7e\x41\x0b\x2e\x89\xd1\x7e\x34\xd5\x55\x15\x4d\x46\x73\x76\xfd\x87\x06\xa1\x35\x2a\x56\xa8\x3d\x2a\xff\x12\x8c\xf5\xd0\xea\x66\x52\x31\x32\xf5\xd3\x68\x09\xa6\x47\xb5\xec\xe8\xc7\x94\x09\x52\x99\x3a\x3a\x8b\xbf\x4f\xda\x8b\x0e\xe0\x37\x68\xaf\xd1\x1c\x9c\x08\x9b\x41\x59\xf8\x5e\x97\x73\x68\x08\xf6\x6e\x57\x28\x7a\x08\xcb\x50\xfe\x80\x9a\x60\xab\x3f\xf8\x62\x0b\xb8\x53\x4f\x54\xd0\x26\x4e\xe9\x4d\x19\x8a\xb1\x2f\xb6\xa9\xa1\x6e\x2c\xd3\xe2\x3b\xa8\x09\x73\x73\x62\x20\xba\x8c\xe1\x44\x75\x41\x3e\xd1\x89\xd0\x2a\xe4\x23\x2d\xcb\xd9\x1a\x79\x43\xad\x31\x91\x21\x8f\x89\x3c\x65\x1a\x32\x85\x5b\xfe\xd7\x80\xba\x49\x47\x1f\x3d\x44\x17\x4a\x96\x0e\xf1\x90\x5e\x91\x4d\x73\x00\x92\x26\x60\x17\x06\x21\x18\xef\xa5\xec\x1c\xe2\xc5\xbd\x8a\x27\x21\xc7\xd8\x7f\x43\x7c\x10\x67\x56\xf8\xc9\xbd\x88\x27\xa3\xdb\xf8\x35\xe2\x49\x9b\x52\x76\x46\xae\x10\x8c\x57\x7b\x10\x4e\x4a\xea\x7d\x39\xe2\x98\x74\x78\xa0\x0d\x59\x9f\x70\xaf\xe1\x11\xfc\x39\x9e\x95\xbf\x01\x9e\x94\x1e\x8a\xf3\x85\x9b\xc5\xeb\xd1\x2f\x70\x81\x60\x26\x78\x33\x5c\xc3\x13\x9c\xb0\x83\xfb\x39\x4a\xc6\x67\xe0\x31\xe6\x5e\xe5\x43\xf0\x67\xea\xd8\x33\x0d\xb8\xa8\x58\x71\xfc\x3b\x4c\xca\x6f\xef\xdd\x07\x1f\xc9\x89\xac\xad\x82\x57\x67\xae\xcb\x39\x0e\x7d\x4e\x6d\x15\xcf\x40\xd3\x49\xfe\xf0\x08\x34\x25\x7b\x11\x78\x11\xfa\x24\xdd\xe3\xf8\x0b\x56\x14\x5a\x1b\xe5\xc1\x5a\x9c\x59\xe5\x83\xf0\x69\xfa\xd0\x74\x07\x7c\xb2\xd9\x62\xb4\x1a\xfa\x59\x57\xd7\x6d\x0f\x35\x57\xf9\x54\x7d\x81\x90\xd2\xe9\xcc\x41\xc8\xb9\xf0\xb8\x30\x19\xb2\xcf\xc9\xa6\x0c\x41\xa7\xd2\x9b\xfd\x6b\xa0\xe0\x24\xe2\x78\x33\xc4\x8e\x7b\x6e\xf8\x1e\x2a\x11\xdc\x52\xde\x07\x7d\x64\x0e\x4f\x99\xc2\xab\x6f\x68\xdd\xba\x08\xf5\x5c\x7f\xd8\xf1\x0b\x8a\xed\xb8\x5a\xd1\x02\xed\x6e\x7a\x94\x5e\x09\x2d\xaa\x5d\xcb\x2f\xa5\xfc\x2a\xd7\x25\xaf\x81\x16\x16\x4c\xfa\xd9\x40\x0a\x99\xff\x39\xf4\x41\x1b\x93\xe4\x86\x21\x90\x8b\x24\x5f\xd9\x0e\x2a\x67\x8b\x1e\xfb\xc1\xf3\x47\xa5\x37\x49\x50\xd5\xd0\xc7\x0e\x35\xe8\x7c\xdf\x96\xf2\x29\x68\x4d\xe7\xe2\xb4\x87\x94\x17\x4d\x95\xbc\xd7\x94\xb1\x1a\x5d\x52\x30\x65\xb2\x54\xcf\x37\x8f\x72\x27\xf7\xac\x03\x44\x79\x9c\x6a\x6c\x78\x08\xda\x1c\x67\xaf\x1c\x08\x51\x39\xda\x93\x5d\xd0\xd7\xfb\x56\x23\x37\xa1\xc4\x3b\xa6\xed\xd1\x90\xe5\xf0\xdc\x72\x6b\xca\xdb\x5e\x72\xda\x41\x4a\x4d\x7b\x36\xef\x3c\x25\xa5\x81\x1d\xfb\x99\x92\x56\xf1\xda\xd7\x84\x22\x2c\xb0\x74\x70\xa5\x08\xd2\xed\x0c\x8f\x53\xc6\xe2\x23\x94\x5b\x20\x0b\xce\xb1\x8f\x7f\x69\x08\xf4\x71\xda\x86\xfa\x1e\x1a\xbe\x15\x48\xf5\x85\xc4\x6d\xf1\xc4\x47\x28\xb4\x64\x2e\xc1\x80\x2e\x27\x3a\x11\x9a\xf0\x5c\xaa\x25\x5e\x05\x7b\x86\x92\xf1\x3d\x70\xbb\xb3\x37\x56\x8f\xec\x35\x69\xc2\x76\x21\xed\xca\xb5\x68\x27\xba\xeb\x43\x00\xf5\x37\xe6\x39\xf5\x98\x7a\x0d\xfd\xef\xa6\x09\xf1\x0e\x45\x5b\xc5\x04\x17\x5d\x5d\xbc\x91\xd0\x41\xa6\x12\x10\xfc\x36\xaa\x42\xc4\xe2\x61\xa8\x46\xc8\x0d\x7c\x3e\x6a\x71\xb2\x10\x93\xa1\xe7\x4d\x76\x63\x1a\x28\x5f\xd9\x13\x6d\x45\x79\xef\x4c\xa9\x10\xf5\xd1\xe3\x45\xc4\x2f\xaa\xce\x30\x87\x80\x09\x7a\x8b\x2e\xa1\x8d\x8f\x15\x7e\xc6\x87\xf0\x33\xb2\x0c\x3c\x0a\xd7\xc0\x73\xf1\x0d\xf8\xa2\x10\x0d\xec\x3a\x36\x7e\x72\x1e\x16\x88\xe5\x18\xb7\x63\x00\x8b\x51\x5e\x89\x16\x62\x4b\x5e\x5f\x24\x6a\x39\xbf\x1f\x64\x11\xbb\xd9\x4f\x07\xd3\xf0\x1e\x56\x5e\x63\x0e\x1e\xc4\xe4\xe6\x77\xe2\x6a\x0c\x4e\x5c\x1f\xd6\x41\xef\xc7\x36\x61\xe1\x74\xd5\xa0\x2f\x98\x31\xed\x80\xd3\x5f\xf4\x35\xd5\xd7\xe8\x17\x2a\x27\x28\x4a\x4d\xe8\x59\xdc\xf0\xf9\x4d\xc2\x55\x92\x39\x41\xe0\x35\xe2\xa5\x7d\x55\xf8\x2e\xa1\x4f\xfd\x02\xec\x06\xbf\x33\x37\x04\xbb\xc6\xdb\x23\xe9\xc1\x34\x38\xe3\xc8\x65\x74\x9c\x1d\x1d\x58\x8a\x26\x31\xff\x3a\x2d\x40\xbd\x18\xa1\x46\x1e\xa8\x1a\xad\x54\x29\x1e\x79\x4e\x44\xcf\x90\xf1\x82\x64\xd7\x31\x3f\x5c\x5d\xbe\xad\xe7\x37\x56\x23\x1b\xaa\xe1\x61\x7b\xe3\x12\xb2\x4d\xd0\x07\x92\x70\xd1\x7d\x94\x23\xba\x00\xdd\x41\x0f\x08\xec\x02\xae\xa0\x0a\x3c\x45\xc7\x75\xc8\x08\xbb\xd8\xf0\x0e\x22\x62\xfc\x55\x8a\x47\x02\xa8\x9d\x53\x52\xac\xb0\x30\xe2\xd6\x43\xec\x50\x9e\x73\x27\x0f\x9d\xc9\x36\xaa\xbc\x82\xfa\xa4\x7f\xca\x08\x41\x41\x4a\xa5\xc0\x1f\xa9\x93\x43\xe4\x7a\x84\x2c\xd3\xf4\x6b\x45\x0e\x4a\x64\x0e\x93\xc8\x2a\x41\xbf\xa1\x1e\x3c\xcd\x49\x56\xca\x80\x7b\xe9\x55\x8f\x0c\xb1\xa8\xc6\x73\xc3\x59\xe8\xed\xda\x39\x6d\x99\xa8\x67\xc5\x83\xb2\x46\xe4\x76\x49\x4c\xea\x3b\x24\xa0\x60\x3e\x4f\x0b\xd1\xca\xa6\xc6\xb6\xc2\x1f\xd3\x7a\x7d\xd7\xc1\xed\xf2\x96\x63\xb9\xb0\x34\xce\xc5\x80\x80\x83\x04\x91\x4a\x99\xf0\x79\x66\xfe\xfd\x46\xec\x40\xff\xd8\x0d\x0f\x34\xa7\xfb\x7a\x8b\x37\xaa\xda\x96\x54\x22\x42\x18\x8d\xc6\xc9\x53\xc8\xfa\x6a\x19\x67\x3f\x3c\x5a\x7a\x37\x46\x19\x4e\xcb\x6f\xf2\x2e\x81\xcf\x67\xce\xb3\xaf\x80\x77\xca\x67\xf4\xbf\xc3\xaa\x12\x63\xa5\x62\x78\x2d\xfb\xe2\xbd\x19\x4c\xff\x96\xf5\x20\x15\x15\x0e\xf6\x34\x33\x90\x1f\xd7\x35\x8b\xeb\x90\x80\x76\xdb\x64\x25\xf8\x7b\xe3\x3a\x36\x05\x2e\xae\x6a\x8f\xf6\x85\xaf\x15\x7f\xf5\x5e\x07\xef\xc8\xf1\xb3\xbf\x08\xbd\x4f\x09\xd3\x1f\x85\x1e\x4b\x07\x95\x6e\x41\xaf\xd9\xef\xef\x9d\xc4\xd4\xee\x36\x0d\xbc\x41\xfd\x6e\x7d\x6a\x7a\x86\x8c\x0d\xce\x14\xaf\x42\x6c\x7a\xe4\x49\x91\x70\x7f\xeb\x57\xd6\x47\xf8\x6a\xfd\xb2\xa8\xff\x60\xb3\xf2\x4c\xaf\x5a\x68\x36\xdf\xd6\xde\x14\xca\x4c\x8b\xd6\xbf\x07\x49\xe2\xde\x28\x6b\x42\x19\x9c\xb5\xb3\x4f\x38\x96\x94\xc0\x71\x2d\xf6\x09\x8a\xfb\xf5\x78\xd6\x01\x8a\x63\x4d\x21\x93\x4c\xb1\xcd\x7a\xc7\xa8\xa7\x9c\x17\x39\xd0\x1f\x53\x06\xa0\xb9\xf4\xb9\x90\xbb\xbf\x1f\x4d\x15\xfa\x7d\x5c\x93\xba\x12\xce\x35\x68\x25\x96\x23\xfe\xcb\x5c\x70\x75\x14\xcc\x8c\xb3\xeb\x90\x9e\x31\x5b\xd6\x2d\xe4\x6a\x4f\x05\x73\x04\xd9\x51\x7d\x9f\xa9\x02\x3f\xcf\xda\xc7\xf0\x84\xdb\x84\xb9\x74\x0e\xfc\x92\x12\x44\x6b\x43\xb6\xf9\x0d\x53\x9f\x21\xe1\x0e\x42\xe2\x1b\xd2\x69\x70\x94\x98\x8f\xea\x2f\x5b\x8a\xab\xa1\xa7\xa6\x07\xd9\x47\x88\xcd\xa3\x6c\x96\x1f\x2e\xed\xd6\x61\xfa\xe3\xab\xaa\xb2\x18\x95\x58\x62\xa6\x39\x63\x0e\x66\x2e\xe8\xa6\x5b\x60\x1b\xc8\x05\xb4\x6b\xd8\x2a\x3f\x3d\x6a\x01\xb6\xd4\x01\x10\x03\x18\xd0\x9f\xc6\x9f\x62\x4a\x8a\xb7\xf1\x45\xe8\xcd\xc7\x0c\x96\x98\xed\x70\x33\x83\x59\xcc\x3a\xde\x51\xc8\xa8\x63\xda\x55\x5c\xa0\xff\x60\x38\xa6\x9b\xd2\x0f\xd2\x2f\xf3\x95\x69\x4c\x5a\x3f\xc9\x8e\x3a\x44\x33\xf0\xf9\x4b\x55\xa7\x46\xd9\xff\x21\xdc\x89\x5a\x7d\x0b\x1c\x27\x16\x28\x26\x60\xd5\xd8\xfb\x87\x4b\x59\x86\xa2\x84\xa1\x56\xe6\x36\xa1\x5e\xeb\x2c\xc3\x98\x5f\x5b\xfa\x9c\x7e\x85\x67\x93\x0a\x68\x2d\x9c\x87\xdc\x1d\xb4\x05\xec\xac\x98\x3c\xea\x49\x56\xb0\x77\x33\x11\xcf\x5c\x65\xbf\x06\x1f\xa5\x17\xeb\xd5\xe1\x80\x66\xac\x28\xc0\xf6\x13\xc6\x13\x3f\x98\xb2\xc4\xa9\x81\x3a\x46\x89\xec\x51\xb3\x23\xbd\x29\x6e\xa8\x98\x4f\xfb\x2a\xe9\x4d\x7a\x47\xdb\x2f\x1a\x62\x9f\xa6\x32\x04\xef\xa2\xd7\x11\xf7\xf9\xf3\xbd\x44\x84\x0a\x77\xce\xd1\xc3\xb8\x1d\xeb\xbe\xde\x61\x2c\x86\x11\xa5\x98\x89\x36\x53\x49\x63\xf1\x8c\xe7\x79\x68\x6f\x12\xfd\x5d\xb6\xa4\x61\x09\x1d\x64\x64\x16\xc8\x68\xa6\xa9\x39\x89\x36\xd4\xc8\xa4\x5c\xc6\x0f\xa2\x2b\xa1\x34\x72\x25\xb1\x36\x4e\x76\xe1\x1b\xee\x22\x76\x39\xb2\x11\x13\xf0\x87\x77\x96\xa0\xfd\xec\xef\x8a\xad\xe8\x1a\xfa\xc5\xdb\xf3\x18\x82\xda\xc8\xee\x63\x74\x41\x25\x51\xbb\x9b\xc6\x28\xcd\xcb\xfd\x40\xad\x2c\x94\xc7\x8f\x10\x6f\x73\xa3\x68\xdd\x84\x45\xe6\xa1\xab\x5b\x71\x49\xca\xc3\xf3\x3e\xd8\x68\xa2\xee\xa1\x4f\xd8\x72\xe9\xe6\x9d\x8b\xd1\x93\xfc\x7c\xc5\x5e\x24\x97\x69\x35\xd2\xca\x70\xec\xb9\xdc\x69\x42\x77\x68\x1f\xac\x9e\x43\x3b\xd9\xf4\x2f\xfb\x3e\xf5\x72\xed\x8c\x74\x8c\xc8\xac\x48\x24\xde\xe3\xcf\x8a\x8d\x22\x68\xf8\x9e\xdc\x08\x4f\x45\xec\x6a\xba\xfe\xc1\xaf\x68\x55\xe2\xe5\x1d\x30\xf2\x53\x6c\xae\x78\x1b\x39\xc7\x9a\x1a\x9e\x62\x9c\xbd\x51\xd2\xe1\x49\x3f\xd8\x2b\xaf\xda\x49\xdb\xd3\x79\x36\x7b\x2e\xd5\xa5\xb9\x5d\xba\x88\x40\x6a\x5f\x12\x46\x78\x4b\xf9\xab\xcb\x0f\xf1\x25\x85\xb8\x07\x82\xd9\x66\x45\x1f\x94\xa1\x48\xd2\x83\x1d\xae\x48\x9f\xa4\x43\xf1\x13\xb2\x83\x1d\x36\xbc\x9f\xe1\x3d\xba\xb0\xbd\x9e\x6e\x3e\x94\x54\xc9\xa0\xa9\xf7\x7e\xcd\xf2\xa2\xee\xec\x78\x27\x09\x27\x9c\x9a\xe4\x78\x0e\x4e\xad\x51\xb9\xec\x8b\x0d\x94\x2a\x7a\x68\xa1\x7f\x72\xad\x0e\x06\xa0\xbb\x52\x6e\xef\x70\x47\x60\xe9\xc3\x65\xd6\xf0\x13\x76\xd2\xc4\x3c\x51\x21\xd9\xb4\x3f\x57\x68\x48\xb6\x69\x6c\xe3\x0f\x90\x0f\x17\x8e\xf0\xc4\xe4\xf3\xf2\x45\xdc\x73\x64\x19\xd3\x87\xa3\x42\x59\x19\xb9\x91\xd5\x48\xa9\xba\xc0\x67\xba\x41\x5e\x87\x4f\xd2\x1f\xc0\x9b\x77\xd8\xd0\x1c\x10\x95\x25\x6c\xa2\x17\xe9\xb8\x6b\x21\x5a\x0f\xfb\xf7\xdd\x14\xb4\xc0\xa6\x0d\x4f\xf9\x41\xf0\xdc\xc2\x45\x3c\x0b\xe8\x61\xe2\x29\xee\x52\xe8\x11\xa3\x95\x3d\x0c\xaf\xb8\xc6\x65\x51\xe1\xd0\x0b\x0b\x98\x06\x70\xef\xa1\xdb\xf4\x2e\x64\x97\xee\x43\x9a\x0d\x32\xb4\xe4\x38\xd1\x8f\xae\x1e\xbb\x2d\xcc\xc2\xd2\x7b\x31\x81\x3b\x66\x51\x5f\xc6\x57\x45\x47\x0b\x94\xb8\xaf\xd0\xd8\x04\x2a\xa7\x0d\xb5\x66\xcc\x63\x33\x51\xb3\xab\xcf\x58\x87\xd0\x23\xe7\xaf\x30\xfe\xa0\xae\x87\x5c\xe9\x29\x68\xb0\x2e\x9d\xa6\x89\xe6\x2d\xd1\x26\x6a\x50\xf6\x6d\xaa\x50\x83\x79\xb9\xbb\x89\x3f\xca\x88\xaf\xbd\xc0\xe3\xd2\x1b\x72\x3f\x71\xcf\xd0\x5e\xc7\x67\x70\xf4\x68\x26\xb4\x20\xd6\x17\x6a\xe9\x15\x11\xb3\x91\xba\xdb\xd3\x81\x81\x12\x19\x07\xfd\xe8\xc6\x84\xa2\xce\x2f\x6a\x07\x1e\xb7\x44\x81\xb8\x88\x65\x8d\xc8\x05\xa5\x02\xa2\x73\x3d\xdf\x89\x7f\xac\xea\x35\x6f\x11\xf7\x6f\x76\x37\x67\x94\x53\x25\x6d\x60\x67\xb1\xc9\x44\x33\xeb\x2a\x2b\x28\x42\x9b\x69\xc5\xf4\xf0\xd0\xa0\xff\x64\xec\xb0\xcb\xa0\x15\xd2\xde\xe9\x88\xa9\xd6\xd4\xb2\x25\xeb\xf0\xa7\xf8\xfd\x21\x20\xb0\x93\x65\xb6\x49\x78\x4f\xe2\xda\x2a\x52\xb8\x42\xc9\x83\xcc\x0a\x8e\xab\x78\x81\x78\x92\xad\x21\xdc\x8b\xaf\x67\x7e\xe1\x73\xc2\xbb\x18\x3d\xdc\x89\xb3\xbf\xe8\x51\xec\xcf\xb6\x8f\x68\x9b\x58\xf3\x75\x4c\x89\x3a\xfa\xcc\x12\x4b\xdc\x93\xba\xb1\xbf\x80\xcf\xc9\xc6\x9b\x2f\xf3\xcc\x33\x9e\x96\xa6\x70\x5e\xa5\xed\x4d\xfb\xc4\xce\x4d\x8e\x12\xfa\xb2\x42\x13\xcb\x90\xff\x98\x96\xf1\x5f\xc3\x66\x18\x4a\xd2\xcd\x67\x24\xb4\x2e\xd1\xb2\x03\xfd\xd4\x4b\xbc\xc1\xed\x85\xc4\x62\xf6\xe1\x25\xfe\x58\x35\xed\xdb\xf5\x44\x3e\x54\xf9\xaa\x41\xca\xfd\x5c\xe6\x52\xf4\x9b\x83\x15\x55\xa4\x90\xd8\xc6\x79\x2f\xf8\xea\xcc\x77\xd9\x4b\xa0\x7b\x8c\xd6\x74\xed\xd0\x15\x74\x61\xb2\xa2\xbb\x36\xed\xb0\x2c\xd5\xa6\x84\xf8\x22\x7e\xb2\x7d\x29\x2e\xe4\x0d\x2f\x89\xc4\x2c\x18\xad\xdd\x76\xfc\xd0\x8e\x3d\x75\xde\xdc\xa9\xe6\xa9\x82\x66\x4e\x50\xbd\x73\x92\x3b\x7b\x49\x15\x9b\xbb\x8a\xd9\x50\x2a\x21\xff\x64\x90\x0a\xb0\xe0\x00\xba\x6d\xf6\x66\xb7\x0e\xea\xa7\xd4\x7d\xd6\xf9\x44\x8a\xec\xd5\x36\x04\x37\x17\x19\x2e\x81\xd1\x97\x2c\xfb\xae\xf3\x7c\xdf\xbe\x35\xb5\xd7\xb8\x8f\xbb\x9c\xf2\xef\x72\x7c\x5a\x4f\xcb\xaf\xb1\x7e\x37\xac\xe1\xec\x63\x66\x54\xc9\xc9\x46\x8c\xb3\x25\xdf\x82\xaa\xe8\xeb\xf2\x3e\xbb\xe9\x51\xfb\x32\xdc\xac\x2d\x89\x70\xb9\xe9\xb6\x93\xf8\x62\x71\xce\x12\x39\x5a\xc7\x1a\xed\x2c\xe1\x9f\x19\xde\x54\xd3\xc2\x1d\xeb\xfb\x97\xbf\x91\x73\xaa\x2b\x2f\xb1\x83\x35\xdd\xf2\x97\x2d\x65\x52\xea\x97\x92\xe2\x19\x3b\x2a\x66\x82\xf4\x68\xd3\x45\xf6\xa7\x7a\xa9\xcc\xac\x9f\xd6\x0b\x89\xed\xc9\x6a\xdb\x4e\x60\xed\x92\xfa\x25\x53\xe8\x25\xf6\xc2\xfe\xba\x84\x34\x92\x5d\xb3\x52\xfc\x2d\x92\x57\xe9\x41\xe9\x4f\x12\x3d\xed\x88\xc4\x8e\x54\x2f\x88\x14\xf1\xc9\x4b\xe1\x51\x41\x0b\x39\x2e\x34\x8b\xf7\x88\x62\xed\x6e\xc4\xf9\x40\xf9\x66\xb3\x9a\x35\x0b\xf5\x6c\x85\x19\xb5\xf0\xa4\x42\x16\x8d\x8d\x24\xf5\xb5\x25\xd8\x40\x47\x9b\xf6\xc6\x43\xd0\x8e\x92\x08\x69\x31\xb4\x36\x95\x21\xfe\x09\xad\xe2\x77\x8a\x0e\x43\x06\xb0\x99\x80\x01\x91\x42\xd7\xf1\xaa\xa1\xa9\xd3\x55\x9c\xdb\xb0\x83\x75\x1e\xeb\x26\xdc\xb7\x55\x9f\x51\x88\x70\x14\x62\x68\x1c\x64\xa6\x37\x51\xf6\x16\x0d\x6c\xd4\x8b\x37\x46\x55\x8a\x21\xa9\x17\xd2\x9f\xd2\x2a\xae\x47\xc4\xfc\x75\xa2\x25\xc8\x55\x48\x2e\x38\x8e\xa0\x21\x4c\x1e\x86\xe4\x9c\x36\xe6\xe4\x22\xd7\xad\x2d\x59\xc5\xc8\x27\xed\x19\x06\x0f\x3d\xa3\x70\x81\x16\x85\x9e\xec\x9e\x91\xc5\xd1\x1f\xd5\xd5\xc4\x0d\xd1\xd5\x0b\xbd\xa5\x73\x69\x17\x93\xc6\xc4\xc7\xa8\x35\x5c\x5f\xa1\x9c\xaa\x41\xd9\xc0\xbf\x47\x34\x07\x1f\xe1\x2d\x23\xfc\xdc\x34\x38\x7b\xf0\xf7\x56\xd7\x58\x76\x38\xaa\x1d\xcd\xd0\xc3\x4d\x15\xce\xd2\x36\x62\x5e\x9d\x7a\x32\x05\x5e\x41\x0d\x2b\xce\x9c\x1b\x9f\x6f\x2b\x81\x38\x97\x13\xbf\x88\xba\xd9\x0e\xec\x76\xa1\x32\xcb\x9c\x54\xc6\x77\x65\x9e\x08\x52\xe1\x0a\x18\xa1\xa7\xe6\xb1\xcb\xe9\x1e\xfb\xdb\x98\xed\x34\x07\x6d\x6d\x7a\x21\xd5\x4a\x01\xa6\xa6\xe1\x92\xb6\x87\xf1\x82\x38\xf7\x2a\x6d\xe9\xb0\xa4\x39\xf7\xa0\xf8\x9f\x78\x69\x82\x8e\xc8\x5a\x78\x81\xb5\x5d\xc0\xe1\x77\xc4\x1e\xe5\xdd\xe6\xd9\x05\x3c\xe1\xae\xe0\x74\xb8\xdc\x61\x6f\x63\xfd\xdd\xbf\x92\x69\xc6\x3c\xa0\x35\x4d\x5f\x4f\xf7\x56\xa8\xa7\xaa\x12\x03\xcd\x19\xf1\x3b\x33\x2a\xca\x63\xa4\x07\xd2\x9c\xb3\x24\xe2\xe0\xe4\xd9\xb8\x0a\x61\xba\xdc\x9d\xfe\x96\xff\x48\xd6\x17\x7d\x9c\xa7\x19\xe7\xe0\xaf\xcf\xf1\x12\xd7\x3b\x37\xb1\xc8\x82\x7b\xfb\xd4\x18\x74\xee\xa8\x56\x38\x2d\x98\x95\xa1\xf0\x9e\xb8\x40\x13\x34\xae\x8f\xbb\x51\x46\x2a\x19\x94\x7c\x2d\x56\xcc\xd8\x29\x5e\x9a\xdf\x21\xb9\x24\xdc\x9d\x63\x41\xbd\xc3\x0f\xce\x48\x8b\xf4\xe5\x16\xa5\x2e\xf0\xc5\xd8\xcf\xe5\xfb\x4e\xc6\xb0\x16\xc4\xaf\xb2\x54\x61\x28\x8a\x72\x34\x9f\x51\xff\xe3\x7e\x5d\xa4\x80\x4f\x32\xf6\xd5\xaf\x8c\xfb\xd7\xa2\x58\x74\x57\x0a\xea\x67\x52\xdf\x8b\x95\xaa\x53\x44\x87\x85\xda\xe5\x5a\xf8\x0d\xfe\xc1\x22\xfc\x2a\xc6\x8d\xcc\xed\xf7\xbe\xc5\xce\xcc\xe8\x39\xa1\xca\xac\x4f\xb6\xb3\x58\x44\x6f\x8a\xbf\xa0\x79\x8a\x2a\x13\x6e\x5a\xb4\x02\x67\x30\x4b\x6b\x7f\xc7\xaf\xed\xf2\x2b\x9c\x94\xaa\xb4\xbe\x49\xf9\x25\x5e\xdd\x68\x23\x3c\x27\xd4\xa8\x71\xc7\x5e\xf3\xcd\xca\xf7\x5c\xa9\xe0\x7a\x14\x7e\xf6\x5e\xc3\x46\x73\xdc\x9c\x62\x98\xc2\x34\x5d\xf3\x64\x3a\x3f\x81\xa9\xb9\x85\x1a\x28\xa2\x2c\xd2\xc5\x5d\x59\x86\xb5\x2a\xf1\x7a\x7d\xef\x0b\xe7\x49\xd7\x77\x9b\xa4\x98\x88\x57\xb7\x99\x0b\xe4\xc2\x95\x0d\x1f\x30\x53\xbe\x7a\xb5\xd7\x95\x25\xdc\x5d\xa5\xa9\x5e\x34\xb6\x43\x7e\x84\xd3\x22\xa6\x5b\x46\x96\xf9\x69\xba\xa3\xdc\x51\x73\x05\x55\x43\x8c\x2c\x0a\xc2\x15\x58\x7e\x55\x0d\xd9\x21\xb1\x68\x5e\x75\xc6\x68\x6c\xbb\x7c\x36\xcd\x39\xf6\x2d\xef\x78\xf2\x0d\x92\x19\xfc\x50\x6e\x41\xca\x08\x2f\x93\xc5\x93\x4d\x2f\x2c\x92\xde\x24\xbf\x71\x38\x27\x9a\xa0\x74\xec\x76\xe2\x97\x40\x25\x9b\x76\x70\x3c\xe1\xb1\x79\x4e\xcc\x55\x48\x54\xd5\xbc\xec\x15\x94\x13\x79\x8b\x32\xe8\x94\x93\x72\x9b\x34\x25\xca\x61\x6e\x4b\x32\x8f\x72\x1e\xf6\x94\xcf\xa1\xc8\xc2\xf7\xca\xfc\x28\xef\xcf\x67\x48\x0b\xa0\xe0\x63\x7f\x44\x4d\xd0\x37\xb3\x5f\xfc\x24\x58\xba\xf1\x0b\xc7\x19\xf1\x9b\x67\xc6\x5c\x89\x94\x55\xda\x66\xb5\x22\x56\xb9\x2e\x19\x7b\x11\x85\xc4\x84\xd4\x3e\xb8\x9b\xab\x9f\xec\x00\x97\x40\xb3\x89\x3d\x70\xc5\xa5\x7e\x99\x1e\x7c\xfb\xfc\x3e\x69\x14\xa2\x72\x2c\x5d\x24\x40\x5c\xcd\x4a\xf8\x31\x48\xee\xc6\x6e\x8e\x29\xaa\x35\xcf\x90\xf1\x17\x55\x29\xdf\x93\x75\x88\x76\x36\x9b\x9d\x7e\x93\x5a\x9d\xb0\x32\x35\x88\xba\x90\xdd\x9b\x34\x4b\x20\x94\xf4\xc4\xd3\xc4\xf2\xb0\xd2\xf8\x66\x7c\xc0\xf3\xb8\x74\x3e\x1e\x67\x7f\x5b\xa4\x85\x1f\x33\x5b\xcd\x57\xc1\x17\x6e\xa4\xb0\x47\xb1\x27\xf3\xec\x19\x19\x98\x4a\xa9\x59\xd6\x26\x4e\x6e\x66\x75\x3a\x99\x5d\x15\x7f\x3e\xe5\x2b\x2b\x8f\x75\x20\x29\x94\x59\x46\x76\x48\x78\xc4\x18\x0a\x25\xe2\x6d\x19\x4a\x1e\x27\x24\x02\xba\xbb\x3d\x10\x66\xd1\x10\x53\x31\x8f\x43\xcd\xda\xe8\xc8\x76\x24\x6e\xce\x63\x33\xd4\x70\xd3\xe2\xe8\xcc\x34\xf1\xad\xf4\x5f\xe9\x8b\x44\x0e\xd2\x96\x14\xba\xa0\x8d\x31\x28\xff\xca\x3f\x46\x9a\x93\xe0\xcb\x9d\x09\xb9\x10\x37\xc8\x49\x3f\xe7\x2e\x59\xcb\xf6\x38\xaa\x27\xdc\xc2\x9c\x35\x5d\xc1\xfd\xcb\xf0\xda\xa8\xcf\x6a\xa4\xf5\xcf\x9b\xa0\x13\xc4\xb9\x82\x86\x4c\xa3\x94\x8e\x54\x22\x4d\x9c\xd4\x22\x26\x52\xe6\x25\x26\xd1\x5a\xe4\xfe\xb2\xb3\x31\xda\xb2\xee\x38\xb5\xa0\xfa\x38\x4d\xf1\xdb\x33\x1f\xc4\x21\xc2\xca\x23\xda\x82\x08\xbe\xd1\xae\x13\x5c\x07\x0e\x67\xc3\x0b\xd6\x3c\x66\xe7\x7c\x53\xda\x75\xda\xb2\xbc\xe3\x99\xcb\x0a\xcf\x25\x1f\x4d\x3b\x95\x77\x41\x18\x9d\x5c\x99\xed\x4c\x0c\xcb\x15\x32\xf4\xa2\xce\xc8\xce\xa4\x7c\x0f\x5c\x25\xad\x90\x0f\xb8\x53\x45\x5f\x64\xd1\x87\x15\xf8\x5f\x25\x03\x26\xd1\x9c\x11\xc1\xe3\x0d\x04\x13\xe1\x34\xcf\xf7\xa1\x99\xd3\x59\x39\x06\x99\x3a\xb5\x51\xf2\x03\x69\x9e\x95\xb3\x7c\x2c\x39\xb3\x4c\x03\x7b\x95\x38\x53\xb4\xf1\x1a\x47\xb6\x25\xf7\xb3\x7f\xb0\x34\x38\xb3\xe1\xf4\x22\x51\x7a\xaa\xcd\xc1\x9b\xfc\xe4\x44\x0f\xe3\x24\xce\x55\xe9\x96\x0d\xaa\x4c\x0d\x3e\x6f\x3e\x46\xbd\xc3\x18\xce\x0e\xcd\x5c\xdb\x1c\x91\x18\x9d\x76\xba\x3e\x86\x97\x97\x9c\x55\x7d\x04\x5b\x99\x78\xb7\x6c\xe2\x6a\x9b\x6c\x49\x91\xb9\x5f\x99\xf4\x48\x2e\xec\xe6\x25\x8a\xca\x88\x3e\x78\x8c\x7f\x29\xe9\xbb\xb1\x15\xe7\x40\xfc\xaa\xf5\x2f\x18\xef\x04\x3d\xf3\x53\xa8\xa9\xcc\x83\x59\x37\x32\x17\x74\x14\x27\xf4\xa5\x1d\x6f\x39\xc3\x7d\x97\x2c\xaf\xbf\x81\xfa\x24\x76\x54\xcf\xbd\xba\x36\xfe\x59\xe9\x1f\xbf\xd5\x52\xb5\x82\xa1\x53\x93\x22\xcb\x6c\x1b\xbb\xe7\x7c\xc3\x54\x63\xe3\x85\xec\x7f\xb2\xf2\xf5\xd3\x8c\x7c\x61\xe5\xfc\x49\xaa\x2b\x93\x9a\xd2\x5f\x71\x26\xf6\xb1\xb8\xa4\x74\x21\x69\x0e\x63\x61\x61\x0b\x49\x9b\x54\x9d\xe7\x48\x8a\x0e\x4b\xca\xea\x25\xbd\xbd\x30\x9d\xae\x43\x26\x4e\x3c\x4e\x76\xa3\xec\xb7\xd6\x4c\xd8\x0e\x6d\xd3\xf3\x97\x54\xc2\xba\x6b\x17\x0a\x56\x20\x4e\x00\xb0\x63\x91\xbe\x94\xc3\x15\x2b\x29\xae\x62\x8b\x92\xeb\x94\x43\x74\x59\x21\x42\xb1\x26\xb9\xe5\xad\xa4\xf8\x87\x39\x67\x89\x28\xe5\x17\x52\xd2\xbe\x43\xaa\x27\x32\x92\xf5\xa0\x38\xab\x67\x09\x8b\xe1\x3d\x7a\x06\x92\x14\xf8\xfd\x9a\x17\x82\xf9\x48\x37\x00\xec\x6b\xc8\xeb\xe4\xae\xf2\x9b\xf0\x6b\x51\x67\x09\x01\x17\xd3\x35\x0a\xf7\xc3\x48\xec\xcf\xdc\x51\x18\x0d\x5b\x90\xe5\x02\x27\x5d\x70\x4b\x6b\x81\x07\x4e\xf8\x24\x7d\x43\xd6\x58\x95\xc8\xee\x23\x91\x3b\x7f\x49\xa2\x91\xa7\x6b\x6e\xf0\x67\xd1\x20\x00\xd8\x67\x50\x8b\xa4\x6b\xe5\xe1\x54\xb6\x50\x5c\xa2\x46\x7c\xa1\x99\x15\xdc\x20\x7c\x62\x57\xe5\x5e\xc0\x3f\x85\x1a\x64\x4e\xe2\x99\xe7\x53\xd3\xec\xf0\xcb\x4e\x43\x49\x14\xfc\x94\x95\xbe\xcc\x0f\xd7\xdb\x99\x2a\x59\x84\x2f\x5d\x93\xc7\x47\xb1\x7f\x00\xb0\x3e\x60\x9a\x89\xf5\xe5\xba\xec\x60\x81\x49\x71\x1d\x0b\x21\xde\x17\x9c\x61\x72\xa2\xbf\xe6\xbc\x64\x54\x87\xec\xcd\xf4\xa5\x7f\xf1\xec\x49\x1d\xa4\xbb\x3b\xad\x49\x5a\x40\xeb\xdf\x9f\x1f\xff\x84\xb6\x69\xe7\x09\x31\x89\x7a\x69\x4d\x16\xef\x3d\xd1\x0e\x36\xb3\x3c\x71\x93\x04\x97\xb2\x3c\x61\x01\xef\x76\xb1\x9d\xe0\x0a\x5e\x97\xff\x8a\xbf\x2a\x6a\x32\xe7\x1a\xf7\x46\xf0\xc1\x8c\x37\x9c\x38\x8f\xb7\xa9\x4e\x6c\xcc\xd1\x5b\xce\x64\x45\xec\xd7\x8c\x77\x63\x9a\xed\x5c\x28\x9a\xa6\xbf\x5a\x53\xc6\x73\xa4\x51\x01\x93\x59\x4f\x58\xc7\x93\xca\x4c\xe4\xf7\xb9\x5b\x8a\x7a\x12\xa6\xb0\xc5\xf9\xde\xf1\x4f\x22\x4f\x64\x3f\x94\x4e\x06\x3e\xca\xb0\x13\x4f\x9f\x2b\x4b\x49\x17\x81\xe3\xee\x89\xa3\x82\x15\xfb\xce\xc4\x25\x71\x5f\xec\xe0\x88\xb4\xd8\x29\x6b\x32\xb8\x4c\xe6\xb6\x39\xcb\x18\xcf\xa8\x5d\xd2\xd2\xd2\x1f\x39\x7d\xec\xd3\x45\x51\x59\xf3\x90\x4b\xf9\x8b\xd2\xcf\x5f\x1d\xcc\x8e\x4c\xe1\x06\x44\xa7\xdf\x94\x57\x9d\x0d\x4e\xd1\x92\xbd\x74\xb0\x4e\x3c\x19\x37\xd7\x32\x3a\x6e\x95\x68\x50\xf7\xb3\x50\xce\xbf\xb0\xe6\x1a\xe7\x2b\xbb\x66\x4e\x28\xe3\x30\x7d\xb9\xf8\x49\xe9\x9b\xf2\x4a\x66\x47\x91\x67\xc9\x25\xe8\x41\xde\x78\xe1\x92\x2b\xb6\xd9\xfa\xb9\x01\x7e\x7f\xd3\x23\x33\x8b\xce\xa8\x24\x37\xa7\xbe\x3c\xa6\x9a\xf0\x48\xfe\xc5\x82\x29\xcd\x88\xcf\xd7\x3d\x23\xd4\x11\xaf\x58\x63\xc2\x61\xf2\x36\xcc\x29\xa4\x8f\x31\x74\xc5\x67\x4b\x9f\xd6\xaa\x30\xb5\x8b\x9c\x2b\x83\xa0\xad\x79\x9d\xa5\x49\x11\xe2\x6c\x95\x42\x99\x9f\x4b\xfa\xb1\xdc\x08\xf7\xc8\x64\x76\xe6\x6e\x7b\x4e\x42\x4e\x4a\x87\xc5\x16\x69\x60\xc2\x1b\xdd\xb5\x82\x77\x92\xae\x35\x9b\x39\xc7\xf9\x5b\xe7\xdc\xa1\x27\x32\x04\xa2\xff\x4a\xc7\x1b\x1b\x19\xe9\x45\xfb\x6b\xdb\x29\xdc\xbc\xdc\x4a\xd9\xe5\xbf\x59\xcf\x4b\x6d\x7c\xfb\xd2\x57\x17\xb4\x9c\xfe\x91\xec\x90\xb3\xce\x5e\x2b\xe1\x7c\xfa\x0e\xf3\xbb\xd2\x4d\xf2\x7b\x3a\x5f\x04\x39\x71\x5b\xd7\xe8\x70\xe6\xf1\xdf\xcd\x5d\x43\x3f\xc6\x68\x63\x2d\x68\xad\x20\x2b\x22\x1b\x1a\x7d\xc8\x1b\xaf\xa1\xb5\x3a\xe4\x9d\x41\xf6\x15\xf7\xc8\x97\x3c\x49\x25\xe7\xc9\x8f\x4f\xfc\xc9\x6f\xa7\x5c\xb3\x8d\xc9\x1a\x87\x4c\x77\x79\xa6\x52\xe0\x2d\x9a\xb3\x09\xa3\xc8\x36\x55\x8a\xb8\x0f\xdd\x04\x00\xb7\x10\x3d\xc7\x7c\xda\x6a\x07\x9d\x81\x67\x1a\x55\x20\xf3\x6b\xbb\x6b\x9e\x42\x6a\x41\x4a\x15\x32\xc8\xd0\xf3\x58\xc9\x66\xe8\xf2\x89\x91\x7c\x06\x74\xc7\xd6\x29\x2b\x0b\xbe\xb0\xeb\x70\xea\x29\x64\x99\x66\x67\x42\x1d\x32\xa0\x1a\x26\xae\x44\xa3\x00\xe0\x26\xa3\x41\xcc\xbc\x96\x57\xc8\x75\x38\xa3\xa1\x15\x89\xb9\xfa\xa9\x46\x86\xec\x0c\xbc\x55\x71\x1c\x59\xe3\xa9\x56\x7c\x1f\xd9\x71\x22\x23\xdf\x16\xf1\xb4\xd5\xca\xf2\x45\x6a\x76\x6d\x4e\xdd\x82\x6e\xd1\xcc\x4c\xe0\xa0\x72\x55\x6f\x31\x17\x03\x00\x70\x63\xd1\x7c\x46\x44\x8b\x3f\xb5\x0c\xaa\x68\xd8\x4b\x5d\x7f\xd5\xa2\x66\x39\x41\x0d\xd4\x2d\xef\x25\xd6\x7a\xe0\xc5\x2e\xf8\xad\x13\x5b\xf2\x6a\xf1\x82\x03\xed\x99\xa3\x78\xaa\xc9\x74\x4a\x26\x2e\xd2\xbc\x96\xb0\x04\xa7\xab\xfa\x89\x97\xe3\x5e\x00\x70\xe7\x60\x51\xf4\x80\x96\xa5\x6c\x73\xca\x78\x7d\x3f\x6b\xff\x15\x72\xb5\x88\x69\x1d\x40\x2d\xb7\x63\x44\x9e\xfb\x5c\x34\x42\xef\x77\xca\xcb\x33\xa0\x5b\x1c\x38\x9f\x79\x8c\xd6\x66\x22\x4f\x59\x44\x33\xd5\x74\x95\x05\x52\xf3\x55\x11\xd1\x65\xe2\x23\x00\x9c\xb3\x78\x04\xad\xaf\x59\x20\x5c\x4e\xd9\x5c\xef\xc8\x2f\x8e\xe8\xaa\x5e\xc9\x3b\xe2\x3f\x5d\xd6\xc9\x5d\x75\x2e\xa8\xe8\x28\xfb\x8f\x93\x5e\x6e\x36\xeb\x97\xcd\xaf\x8c\x66\xd6\x02\x13\xf7\xe4\x20\xc6\x17\x4d\x8b\xf8\x46\xfa\x7d\xd5\x7c\x61\x1b\x8d\x06\x00\x3b\x83\x08\xa4\x12\x4d\x2f\x12\x3a\x49\xef\xea\x32\xe3\xbf\x5f\x96\x55\x79\xc4\x6d\xf6\x1b\x28\xfd\x2b\x39\x7c\x36\xb4\x90\x24\x22\x3b\x9e\xca\x19\x14\xb4\xd9\xb8\xa4\x4f\xf2\xe7\x18\x3f\x4f\x62\x72\xd7\x6a\x2e\x8f\x7b\xc0\x5e\xad\x7a\x57\xf0\x88\x71\x0b\x00\x56\x05\xb5\x8d\x60\x34\xd1\x33\x25\xb1\x23\x75\xba\xe9\x8b\xc3\x43\x2a\xef\xa4\x90\x7c\x4b\x4b\x03\xe5\x33\x67\xfc\x0a\xee\x27\x38\x1f\x0f\xcb\xd1\x8e\xeb\xb1\x8e\x4f\x37\x96\x6c\x37\xf6\x94\x3f\x14\x1e\xd3\x18\x88\x33\xe0\x1d\x54\x9d\x15\x18\xb2\x3e\x01\xc0\xfc\x4b\x9b\xc6\x5d\x9a\x36\x17\x9b\xc4\x94\xd6\x8e\x14\x28\x5c\x3a\x5b\x19\x99\x33\xe4\x93\x52\xf2\x23\x93\xe4\xee\x51\xe0\x96\xa6\xee\x40\xcd\x96\x27\x35\x58\x4d\xa4\xa5\x27\x98\x18\x8d\xca\x8f\x49\x7d\x34\x04\xd2\x2c\xa1\xa7\xea\x3b\x7e\x11\xe7\x05\x00\x4c\x32\x7d\x00\xab\x6e\xfc\x50\x1e\x17\xa3\x55\x9b\x55\x62\x12\x76\xaf\xd2\xa1\xa0\xcc\x67\x73\x49\x4f\xee\xc2\xd3\x4f\x0b\xd6\x66\x1e\x76\x50\xcf\x76\x4b\x45\xad\xa8\x69\x67\xe4\x6c\xa3\x44\xf9\xbc\x78\x3b\x0d\xb2\xd4\x53\xd4\xa9\xfa\x9b\x1f\xc8\x6d\x01\x80\x69\xce\x58\x8d\x6d\x6d\x6c\xae\x76\x88\x2e\xaa\xbd\x52\xde\x16\x76\xa9\x52\xbd\x44\xc1\xbb\xbe\x84\x59\xb0\xf2\x34\x96\x7f\x33\x67\xee\xb1\x81\xec\x45\xe9\x4f\xac\x8e\xa6\x2d\x48\x66\x1b\x5d\x4b\x2c\x92\xdd\xd1\x40\xa5\x8b\xc4\xd3\xcb\x37\xf2\x57\xf1\xce\x80\xed\x8c\x19\x86\x36\x4a\xee\x3e\x45\x59\x18\x15\xdd\xf6\x9c\xb2\x38\x54\xbf\x29\x90\xfc\xd5\xcb\xb7\xb6\x91\xb2\xcd\x4d\xbd\x62\x8c\xc2\xb2\xd7\x2a\xee\x86\x56\xed\x73\xc8\xf3\x80\x86\xf5\xff\x65\x5c\x82\xcb\x37\x25\x27\x59\x22\xe5\x4a\x05\x52\x02\xa5\x01\xc0\xcb\x40\xd3\x50\xa3\xee\xb9\xf0\xbe\x28\xa7\xb6\x78\x58\x31\xe4\x57\xd3\x06\x68\xcc\x6b\x77\xed\x55\xe8\xee\xa9\xdf\x15\x62\x78\xa1\xfd\xdc\x62\x3a\x7c\x71\x9f\x61\x9e\x16\xfc\x4c\xff\x63\xc6\x41\x84\xbb\x09\x4b\xda\x80\x1e\x52\xca\x92\x06\xa2\x23\x00\xf0\x04\x68\x0e\xd2\xda\xd5\x81\xf2\xa3\x96\xb4\x1d\x47\x8d\x42\xea\x1a\x6f\x23\x63\x17\xff\xd6\x6a\x23\x79\xa7\x6e\x54\x1c\x41\x0a\x8e\xde\x2b\xde\x8f\x8c\xed\x5b\x94\x3b\x89\x6e\xd5\xbf\x9b\xa1\x84\x0a\x36\x05\xcb\x5f\x62\x8b\x94\x92\xa5\x96\x98\x03\x00\xbc\x00\xf4\x11\x7c\xbf\xcb\x90\xb6\x27\xf2\x44\x6b\x1d\x55\x14\xa2\xd5\xb8\x9b\x78\x7d\x91\x52\xc3\x27\x22\x4f\xb9\x95\x57\x12\x5b\x8f\x46\x16\x65\xe0\x3f\x2d\x1b\x73\xf7\xe1\xaf\xf5\xeb\xd3\x51\xfc\xc1\x26\x07\xb9\x27\x3e\xa6\x54\x24\xa9\xc5\xe3\x01\xe0\x3e\xc5\x72\x61\xeb\xce\x7e\x76\xf4\xb5\xfe\xd6\xfd\xac\xa8\xe0\x82\x86\x22\x66\xf4\x45\xd5\x1a\xc0\xc8\x75\xfd\x53\xae\x49\xff\x76\x54\xa7\x48\x89\xee\x6b\x89\xe4\xe4\xd3\x9e\xeb\xb3\xd3\x1e\xd1\x2e\x6e\xda\x9f\x58\x42\x9d\x50\x1a\x96\x2c\xa1\xae\x04\x80\x6b\x8c\x27\x41\xf5\x9d\x76\x82\x5f\xd7\x8e\xb4\xd4\xf0\x53\x83\x8d\x1b\x36\xf2\x0e\x5e\x28\xac\xbe\xcc\x55\x75\xcd\x2d\x13\xb3\x7f\x1c\x99\x2c\x8c\x62\x7d\xb6\x3c\x94\xb3\x8c\xf9\x4f\xdf\x2b\x6d\x17\xe3\xe7\x26\xf3\x84\xcf\xf4\x37\xca\x73\xc4\x27\x68\x62\x00\x38\xe1\x04\x8b\x52\xd9\x41\x4e\xb0\xbf\xea\xd8\xfc\x32\x1e\x0a\x3a\x54\x7f\x54\x5a\x74\x7e\xb8\x4a\x20\x1e\x77\x99\x2c\xcd\x11\xad\x3a\xb2\xb7\x80\x2a\xb8\x68\x31\x9c\xbd\x82\x57\xaa\xbf\x3e\xd5\x92\x73\x6f\xd3\x6e\xd9\x3f\xd6\x7b\xe5\xa3\x22\x4f\x46\x2d\x00\xec\x08\xea\x20\xf9\x4e\xfb\xbb\x0c\xf4\x4a\x50\xf3\xf1\xd4\x3f\x81\xa7\xea\x92\x93\xa3\x3c\x5f\x54\xde\x4f\x7c\xe7\xb2\xa4\xe4\xa5\xec\xca\x61\x3c\xbf\x43\xfa\xd5\xc2\x2a\xcb\x51\x1c\xa1\xd7\x9a\x12\x2b\xa8\xd9\xb4\x5a\x66\xc3\xbd\xab\x1c\x2a\xcc\x60\x65\x03\xc0\xaa\xa6\x8d\x93\xe7\xb7\x07\x14\x06\x45\xc4\x37\x8d\xe4\x1d\x0b\x60\xd4\x6d\xce\xde\xec\xa9\x56\x79\x3c\xfd\xa9\xb3\x65\x89\x7d\x4a\xf6\xa1\xb1\xfc\x0d\x72\x1f\xf3\x96\xcc\x5c\xd9\x62\xbd\xc0\xe4\x3b\x92\xe0\x4d\x4b\xe3\xb3\x04\x99\xca\xa9\xc2\x65\x1c\x1f\x00\x58\xdb\xe9\x69\x24\x4e\xbb\x51\x69\x74\xc4\x96\x26\x51\xd1\xf2\x80\x9d\xb5\xb3\x79\xf9\x1e\x4d\x95\x8b\xb3\xd5\x4f\x3e\x29\xfe\x93\x8e\x1c\x62\xe7\x0d\x27\xcf\x9a\xb3\x32\xdd\x12\xb7\xea\x39\x24\xa3\x71\x6b\x37\xad\x8c\x3f\x25\x9c\x52\x6e\x13\x74\x73\x37\x02\xc0\x7c\x4a\xbf\x4f\x5a\xdf\xf6\xa5\x62\xf2\x72\x4d\xd3\x89\xd2\x43\xfe\xe3\xb5\x59\x85\x25\x1e\xc1\x15\xad\xb9\xf7\x4e\xc6\x15\x17\x64\x7e\x3a\x74\x22\xef\x5a\xda\x42\x73\xdf\x8c\xef\xf2\x37\x7a\xe6\xc9\xeb\xe3\xa3\x36\xe9\xc4\xfd\x12\xdd\x57\x7e\x2b\x08\xe3\x66\x02\xc0\xe4\xd0\xa7\x62\x15\xfa\x97\x43\x27\xc2\x4d\xbb\x61\x68\xa7\x9f\x69\xdb\x2d\xca\xcb\xb3\x95\x8d\x8f\x29\x7f\x9c\x46\x6a\xf2\x21\x3b\x3b\xab\xf2\x7d\x50\xf3\xee\xef\x85\x21\xb0\x9f\x6e\x60\xd6\x17\xc4\x58\xfd\x47\xca\x29\x54\x4b\x31\x2c\xee\x2f\xda\x07\x00\x3f\x00\xed\x8d\x79\xde\xd7\x8a\x84\x84\x6f\xef\xde\x8e\xa8\xfb\xad\x6a\x83\xe1\xe6\xb3\xd2\x46\x21\x9c\xec\x54\x5d\x73\x1e\x2e\xb7\xd3\x2c\xfb\x06\x7f\xdf\x3d\x59\xa8\x83\x84\xe8\xba\x65\xdd\x40\xfe\xa8\x3f\x49\x31\x40\x0b\x14\x83\xe3\x1e\x62\x8b\x01\xe0\x3b\xa3\xbd\x31\x48\x1f\x13\xcb\x0a\x07\x5d\xf7\xb0\xcd\xbe\x13\x6d\x46\x68\xe9\x59\x9f\x46\x2b\xd4\xc3\x89\x57\xa3\x8c\xda\xda\xfe\x2b\xcb\x47\x3d\x76\xb7\x14\x4c\xa2\xa9\xba\x07\xb3\xa4\xe8\x17\xf5\x91\xe4\xaf\xd8\x45\x45\x8f\xb8\x52\x0c\x05\x80\xaf\x85\xfe\x8a\x9e\xed\x7d\x4e\x57\xbb\x14\xd4\x65\x49\x73\xf2\xf5\x6c\x45\xa8\xbc\x33\xdf\x1a\xc4\x54\xe0\x64\x54\x1d\x40\xa4\xd9\x96\x97\xfe\x20\xbc\x76\x63\x05\xba\x84\x9d\xae\x6e\xd6\x1c\x62\xa7\x7a\x4b\xb2\x07\xb1\x41\x31\x34\x6e\x03\xde\x0a\x00\x4f\x86\xb5\x47\x57\xf7\x5e\xe2\xac\xb8\x64\xd0\x59\xc9\xfa\xe3\xbb\xb1\x65\x86\xf9\xf9\x4c\x57\xfd\x37\xa6\x92\xd3\xa2\xaa\x41\xc6\x49\x5b\x7e\xe9\x19\x7a\xd1\xee\xc0\x7c\x06\x5d\x43\x57\x3d\xf3\x24\x4d\xa6\xde\x92\x94\x4e\x53\x52\x94\x49\xfd\xa8\x7a\x00\x70\x1f\xe0\x15\xd1\xd6\xd7\x1f\x0b\x8f\x87\x3d\xec\x54\xe7\xbf\xf2\x99\x69\x39\xc4\x13\x9c\x11\xd5\x9f\xe6\x1e\x75\x7c\x52\xb5\x83\xb3\xcd\x36\xac\xa4\x8a\xbd\x72\xb7\x73\xde\x23\xd6\x2a\x5d\xd5\x8c\x78\xa6\x92\x7a\x8f\x7c\x82\x31\x4f\x71\x58\x92\x42\x4b\x04\x80\xab\x44\xc8\xa3\x2e\xf7\xbc\x4d\x38\x16\xb6\xb1\x63\x7b\x7c\xb0\x8f\x59\xb3\x83\x94\xef\xfe\x5f\x9d\xab\xb8\xcc\xd1\xbe\x72\x93\xf0\xbf\x03\xdf\x8a\xd3\x05\x46\xbb\x17\xe4\xf6\xf2\x60\x9d\x0f\xe9\x54\x4e\x95\xfa\xe3\xc4\x61\xd6\xdd\x65\x3b\xc4\x89\x8c\x54\x00\x38\x0a\xd4\x87\x91\x65\x3d\x46\xe9\xef\x42\xbd\xda\x2f\xa6\x7a\x79\x53\x9a\x62\x92\xc6\xdd\x2d\x6a\x49\x89\x8e\xc7\xb3\x2b\xac\xe3\x27\x0e\x5c\x2a\x6a\x95\x7a\x99\x65\xe4\x3c\x15\x3d\xd7\xa9\x4f\xcb\x13\xd8\xa8\x3f\x4e\xf8\xc9\xa5\x2c\x0b\x16\x0d\xb2\x2e\x00\xc0\xde\x4b\xeb\x8f\xb4\xed\xc6\x0a\xf4\x43\x66\xda\x1a\x73\x17\x79\x7d\x6e\x1c\xcf\x9c\x3c\x5d\x54\x33\x98\x56\x70\x7c\x79\x39\x9e\x4c\xb6\xf9\x59\xf8\x2f\xd1\xc9\xcc\x3d\x47\x3b\x5e\x55\x27\x35\xf5\xb9\x38\x51\xfd\x5f\x82\x03\xff\xf7\xb2\x12\xd1\x0e\xf6\x2b\x00\x58\xd9\xf4\xe0\x6b\x6f\xbb\xad\x8a\xdf\x84\xe0\x6d\xa1\x05\xb1\x5e\x15\x8d\xac\xdc\x55\xa7\x03\x6b\xa2\x32\x45\x0e\x23\xe5\x5b\xd3\x94\x6c\xfa\x0b\xb3\x92\x04\x66\xe6\xd9\x7d\xb2\x2f\x3a\xf1\xa9\x54\xe9\x8a\xf5\x6b\x65\x5f\x85\x2b\x97\x4d\x08\x1f\x71\x38\x00\xb0\x3c\xe9\x09\xd7\x52\xbb\x7e\x94\x2f\x08\xd1\x6e\x5b\x5b\x7c\xca\x8b\xd4\x68\x9a\xdf\x7d\xda\xa4\x66\x5d\xce\x5c\x87\xe4\xb2\x8e\x0c\x33\x9b\x82\x42\x8b\x94\x70\x33\xa3\xec\x8b\x89\x0c\x9d\xe4\x54\x95\x38\xab\xf5\x87\x64\x52\xe1\x3b\xa5\x95\x42\x8c\xf3\x1b\x00\xd6\x42\x7a\xca\xcf\x34\x38\x0d\x8a\x7d\xa9\x09\x97\x40\x17\xef\x26\xc1\x6d\xd0\x85\x9e\x05\xf0\x03\xc8\xbb\xe2\x37\x3c\x0c\x81\x14\x08\x51\x83\x7a\x18\x5f\x90\x5d\xb0\x4a\x38\x81\xb8\xc3\x01\xae\x63\x08\x0e\x8f\x9b\x1e\x41\x2a\x11\x77\x15\x23\xe4\x17\xd2\xf4\xc3\x17\x5e\x81\xad\x7c\xb1\x08\xd6\x41\x93\xc7\x85\xb0\x1d\x7a\xa0\x5b\x13\xf6\x43\xbe\x55\x68\xc3\x81\x08\x27\xb9\x1d\xee\x44\xc6\x18\x66\xf0\x0b\x64\xea\xd2\x04\xb2\x01\xf9\xcf\x55\x07\x39\x8b\x2e\xda\xd5\x8e\x24\xa2\x3a\xca\x03\xc8\x57\x74\xcb\xb7\x85\x50\x32\x15\x99\xfd\x09\x55\x12\xa3\x77\xee\x40\x3d\x84\x51\x67\x0b\xf4\x1e\x27\xca\x66\xe1\x55\xf8\xd2\xa4\x01\xd8\x1b\xfb\x4e\x77\x87\x45\x58\xd7\xa5\x9d\xf0\x38\x26\x70\x09\x40\xb6\x60\xe7\x76\x59\x21\x11\xd8\x06\xe5\x30\xe4\x3e\x9a\xfd\x31\x83\x32\xc4\x29\x98\x5e\x4b\x79\xc5\x66\xdf\x82\x20\x05\xd6\xb9\xb6\x49\xc8\x88\x79\xa8\x24\x06\x0a\x60\x1c\x4e\xfc\x00\xc9\xe9\x4c\x6a\x1d\x74\x97\x76\x3b\xf4\x07\x6c\x46\x5b\xe2\xec\x06\x27\x51\x0d\x4d\x82\x10\x40\xe8\x2b\x2b\x20\x04\x36\xfe\xf6\x3e\x79\x54\xd2\x3a\x39\x4a\xfe\x2b\x56\x18\xf6\xa6\xec\x14\x9e\x6c\xd1\xa6\x9c\xe5\x97\x15\x2d\xa3\x48\x79\xda\xb2\x29\xca\x2d\x4e\x17\xfe\x1b\xda\xc0\xbe\x10\x92\x09\x71\x98\xb3\x27\x9d\xe0\x79\x0c\x07\xe3\x16\x38\x86\x76\x4d\xe9\x01\xb2\x8c\xd0\x79\x6d\x4e\x5e\x9c\x9c\xf2\x80\x4c\xde\x25\x77\x1b\xa4\x91\xfd\x65\xff\x1a\x85\x64\x49\x5c\x77\x7e\x37\xb9\x5f\x12\x17\xf7\x8c\xb2\x4a\x84\x60\x6e\x94\x10\xc1\xd9\xe0\xb3\x94\x59\xde\x9a\x13\x27\xa1\x30\x76\x9e\xf1\x76\xe8\x3d\xe3\x81\x52\x1f\x2c\xa6\xe2\xcf\xe7\x93\x94\x8a\x0e\xdc\x6d\x25\xed\xcb\xfb\xd7\xfb\x96\x14\x9c\xdd\x56\xe7\x42\x4a\xc9\x20\xe7\x3c\x24\x4d\xa5\xee\x92\x9c\x25\x1b\xcb\x5f\x21\x3a\x64\x99\x8c\x1c\x28\xa5\xac\x93\x4c\x38\xfe\xa3\x14\x0b\xde\x1a\x5d\x82\x6c\x38\xc9\x4a\x1d\xd0\x37\x3a\xeb\x29\x2f\x36\xa4\x89\x7d\xc7\x37\x56\x56\xa7\xd6\xfd\x36\xb6\xb9\x72\xb8\x9a\x19\xfb\xb9\xd4\x2f\xcb\x9e\x64\x51\xf0\x42\xb4\x98\x24\xcd\x39\x0a\x6d\x21\xcf\x4f\x0f\xf1\x7f\x42\xe6\x26\xed\x3b\x5e\x43\xd1\x8e\x2b\x30\x2c\xa5\xf4\x09\x92\x95\xca\x20\x31\x33\x69\xea\x41\xac\xf5\x60\xce\xad\xcf\xb1\x6e\xd7\xcf\x75\x22\xb1\x97\xdb\xbf\x57\xee\x8a\xcd\x6d\x8a\xc9\x58\x1f\xfb\xba\xa6\x57\xa0\x40\xb2\x2d\x9b\x21\x9f\x21\x55\x17\x64\xf8\x79\x91\xb5\x33\x1b\x1d\xda\xc8\x15\x49\x57\x0c\x35\x28\xc1\x12\xaa\x52\x11\x74\x8c\x1d\xf2\xf8\x67\xac\xda\xe8\xca\x5b\x73\x63\xf7\x0e\xc5\x74\x88\x62\x9d\x7b\x4b\x2b\x8e\xc7\xe2\x1d\xc5\xe9\xb6\xb1\x3d\x4d\x21\x7c\x0b\xd2\xba\xea\xd7\xa4\x7c\x12\xb3\xe4\x87\x6f\x37\xe9\xbf\x5c\x03\x87\x08\xf2\xa5\x54\x55\x83\x9f\x14\xa3\xb8\x9d\x4a\x37\xa0\xf5\x9c\xf9\x8f\x1d\x62\x7e\xde\x6b\xbe\x79\x34\x76\xf5\x68\x53\xfb\x6c\xec\x8e\x21\x49\x79\x6e\xec\xa9\x5e\x8d\xb4\xb4\x58\x71\xfb\x79\x5e\x41\xec\xe3\x06\x27\xd2\x76\xd2\xd1\x8a\x7a\x5f\x07\x52\x4e\xc1\x6a\x07\x07\xf2\xaa\x74\x1d\x83\x7f\xe4\xe9\x78\x77\xe5\x2d\x94\x11\x8e\xde\xe7\x60\xcc\x92\x52\xf7\x54\x84\x2d\xa1\xc8\x6e\x27\xa1\xf7\x28\x89\xed\x32\xb4\x99\x92\x57\xf2\x1e\x15\x53\x58\x72\x15\x94\x03\x59\x51\x5f\xa1\xe1\x50\x5e\xe8\x67\xd4\x0d\x56\x73\xae\x47\xad\xe1\x1c\x93\x61\xd4\x00\x39\xac\x4c\x45\x77\x21\x5d\x9f\xec\xd1\x12\x74\xff\xb4\x14\xa5\x22\x63\xb7\x0a\xd1\x8b\x08\xa3\xad\x07\x3d\x86\x1c\x2c\xd9\x8e\xee\x40\x14\x12\xbd\x50\x7d\xc4\x96\xaa\x83\xaa\x23\x61\xa1\x21\xe8\x6a\x44\xee\xac\x80\xaa\x20\xa3\x26\x47\x51\x65\x74\xad\xf2\x3a\x74\x33\xba\xf3\xc3\x62\xd4\x8c\xc8\x9a\x4a\x44\x95\x89\x65\x23\x7f\x90\x97\x38\xb9\xf5\x3c\xf2\x18\x7b\x56\xf4\x05\x19\xc1\xb0\x84\x00\xe4\x36\x16\x41\x9c\x42\xba\xb1\xd3\x21\x2d\xc8\x1d\xcc\xe2\x64\x24\xf2\x10\xdb\x6c\x3c\x80\xbc\xc4\x14\x94\x46\x51\x05\xb4\xf4\xcd\x2c\xe2\xcb\x6e\x7a\xf8\x19\xb1\x65\x35\xdc\xb8\x81\x6c\x67\x26\x37\x65\x22\xeb\x19\x29\x05\xf9\x88\x1a\xbd\x3a\x9e\x85\xac\xa0\x2f\xc3\xba\x90\xf5\x34\xff\x60\x36\xb2\x87\x5a\x75\xe2\x02\x72\x96\x78\x6f\xbc\x12\x21\x11\x2b\x95\x38\x48\x15\xf6\xf8\xa5\x2d\x9c\x22\x8e\xbf\xd7\x07\x53\x44\x4b\xfa\x6f\xc3\x7e\x82\xc8\x86\x79\xf0\x19\xde\xdb\xbc\x53\xb0\x3b\x97\x2c\x8d\x87\x3d\x38\xc6\xe8\x16\x38\x94\x35\x1b\xb4\x17\x96\x33\x71\x27\x4f\x78\x84\xa1\x60\x14\x01\xff\xa5\x9d\x52\xf2\x41\x8e\x10\x06\xb3\xb7\xa1\xd1\xa4\x73\xe3\x71\x50\x47\xa2\x65\xef\x72\xa8\x2e\xfe\x5f\x2d\x15\xca\x91\x4e\xe5\xac\x82\x32\xc5\xfd\xe2\x3c\xa8\x54\x78\x0b\x26\xa0\x6e\xfe\xf5\x80\xdf\xd0\x2f\x6e\x9a\xe3\x55\x78\x0f\xdb\xd9\xf0\x3d\x7c\x95\x51\xa1\xe4\x0f\x0f\x50\x89\x27\x15\x94\xe7\x05\xb5\xb7\x9f\x53\xee\xe6\x26\x77\x31\x29\xfd\x59\x78\x95\x1b\xa5\x21\xfd\x7c\xa6\x1d\xa5\x31\x65\xb7\x50\x87\x32\x22\x57\xa6\xf8\x50\xbe\xc6\x77\xfb\xdb\x42\xc6\x92\xc3\xc7\x77\x43\x51\x02\xba\xa1\x03\xd4\xce\xf1\x51\x82\xe1\x6d\x74\xda\xe4\x3e\xca\xf9\x86\xa2\x91\x54\xca\xbe\x9a\xe0\x76\x1e\x65\x5b\xc5\xd1\x72\x31\x65\x75\xc9\xc2\xb4\x26\xca\xaa\xfc\x62\xde\x63\x8a\x49\xf6\x1e\xd2\x05\x8a\x4f\x1a\xd5\x37\x91\x92\x25\xa7\x1f\xfb\x44\x79\x1f\xa7\x65\x90\x01\xd9\x09\x9c\x94\xc8\x50\x0b\x93\xf5\x20\x97\xa2\xdb\x1f\x3c\xb4\x87\xfc\xaf\xfb\x7c\xab\x31\x79\xa2\xcd\xa4\xd4\x89\xdc\xd3\xf0\x28\x25\x91\xdc\x5d\xed\xc6\x79\x41\x9e\x2c\x4d\x8f\xc9\xa6\xa8\xe4\xf3\x7c\xb4\x28\xfb\x32\x26\x8f\xcd\xa1\x60\xf2\x01\x83\x55\x94\x67\x92\x0d\x4a\x30\x14\xc9\x3e\x76\xbf\x8f\xb2\xe4\xe6\xcd\x1b\x8e\xe4\xa7\x83\xbe\x2d\xc7\xc8\x0d\x3d\x43\x25\x61\xe4\x8c\xb6\x6f\xc9\x9d\xe4\xd4\x86\x27\x9c\x2d\xe4\xaa\x2a\x51\xf4\x67\xf2\xd3\xe2\x11\x6f\x2e\x65\x61\xce\x21\xfb\x4a\xca\xfe\x94\xb3\xfa\x6f\x28\x65\xd2\x66\x25\x39\x74\x90\xfd\xe8\xbe\x26\xf9\xed\x5d\xcf\xc1\x2c\x72\xc7\xad\xf8\xe6\x2c\xb2\x68\x50\x5e\xdc\x4b\xbe\xd6\x73\x3a\x79\x1b\x39\xb0\xb5\x8b\x2d\x22\xc7\xd4\x4d\x47\xc7\x92\xd3\xcb\x11\xef\x4d\xe4\xc6\x7c\x2d\x7b\x06\xf9\x79\x5a\x90\xfe\x07\xca\xf9\xb8\x19\xa5\x97\x94\xaf\x1c\x85\xff\xde\x12\x3f\xc8\x23\x8f\x2a\x08\x36\xf9\xd6\x90\x25\xb1\x91\x7c\xbb\xe9\x21\xde\x47\xbe\x59\x90\x87\x47\x51\xe6\xc4\xbb\xe1\xc6\x94\x7c\x2c\x0e\x7b\x0c\xed\x0c\xd6\xc3\x38\x50\xc7\x09\x3b\x6c\x17\x1c\x64\xbc\x1e\x9d\x41\x74\x94\x64\x68\x2e\xd2\xf6\xe6\x1f\x71\x09\x71\x7d\x38\x48\x2c\x46\x14\x6f\x04\xe3\xd9\x70\x7f\x93\x12\x7e\x16\xa6\xe5\xcf\xe0\xcb\xe1\xab\x71\xf9\xd8\x5d\xb8\x1e\x7d\x86\x71\xe1\x9f\x41\x85\xd8\x09\xc4\xda\x69\x10\x5b\x8c\x88\x8c\x92\xd1\x3e\xe4\x87\xd2\x21\x54\x8a\x6e\x7f\xf5\x01\x7f\x87\x0f\x3e\x58\x8d\x8b\x71\xbb\x81\x17\xb8\x31\x36\xdc\x30\x88\x7d\xc4\x8e\xe4\x8d\x62\xb5\xe8\x07\xe9\x0d\x8c\x84\x4e\xa2\xeb\xb0\x7d\xe8\x6c\x10\xc0\x94\xd1\xc7\x4e\x7a\xe8\x38\xfa\xd0\x48\x0f\xcd\x44\x9f\x29\x2d\x46\x29\x68\xc1\xb3\x4f\xf8\x06\xd6\xd8\xdd\x04\xac\x93\xf9\x5f\xef\x63\xec\x0a\xe3\x71\x9d\x3e\x66\x48\xff\x9c\x23\xc4\x00\x7d\xb3\xf8\x31\x3a\x40\x23\x60\x26\x2a\xa7\x7e\x0e\xe8\x47\x29\xd4\x93\x8e\x5b\xd0\xf3\x44\xae\x61\x34\xba\x07\xff\x6f\x59\x2b\xba\x03\x1b\x7b\x1a\x8d\x71\x44\x91\x77\xa8\xd8\x16\xa1\x4a\xcf\x42\x74\x80\x9f\x50\x5d\x8a\xa2\xbc\x1d\x59\x17\x51\x7b\xce\x0d\xd1\x22\x74\x1d\x3b\x1e\x02\xc8\x27\x96\x97\xbf\x10\x99\x64\xae\x3c\x6e\x88\x8c\xd0\xab\x0c\xde\x20\x35\xb4\xad\xcb\x4a\x91\x06\x62\xcb\x94\x01\x3a\x26\xdf\x78\x2b\x16\x8d\x49\xd0\xee\xf4\x46\x4d\xe3\xfe\x56\xda\x20\x4f\x24\x3f\x32\x4c\x90\x4c\xd1\x2f\xc1\x76\x24\x46\xb8\x8e\x1c\x86\x9c\xe1\xef\xf4\x73\x47\x0e\x71\x37\x3a\x9c\x44\x2c\x58\xef\x0c\xae\x22\xfa\x0c\xd2\xb2\x7a\xc4\x82\x1a\xf1\x70\x27\x32\x93\xaf\x3b\x74\x0f\x49\xca\xd9\xd3\xfa\x1c\x71\xcb\x3c\x50\xa6\x09\xff\x4b\xdb\x97\x1a\x02\x77\x26\x1b\x73\xab\xe0\xb4\xc4\x1d\xb1\x2e\x30\x2f\x7e\xae\x4f\x21\x8c\x8a\x8b\x8e\x6d\x81\x21\xc1\x0a\xfd\x49\x98\xc2\xd9\xb4\x6c\x1a\x96\xd1\xc3\x27\x9a\x90\xd8\xba\x81\x81\x0c\x44\xa9\xaa\xbe\xe9\x3d\xdc\x56\xd6\x5e\xec\x0d\x07\x14\x65\x24\xbd\x82\xb5\xf3\x82\xd8\x97\xe1\xc5\x59\x1b\xa2\xdd\xa1\xbf\xa9\xf1\xde\x0b\xa0\xaf\x89\xdd\x47\x9f\x43\x3f\xa4\x52\xfd\xbd\x30\xe0\x7f\x59\xf6\x1a\xd6\x61\xfa\x8f\x5b\x22\xfb\x7b\x75\xfa\x0e\xc2\xb7\x3b\xcf\x34\x14\xc1\x97\x5b\x02\x0b\xf5\xe1\x15\xf5\xfb\x12\xef\x40\xb7\x2b\x1f\x31\x69\x50\x65\x89\x4b\x64\x0e\x94\x93\x17\x7e\x31\x11\x12\xa6\x7f\x3f\xf2\x11\xe2\xca\xd7\xea\x95\x42\x59\xe2\xc2\x65\xef\xa0\x49\xf6\xba\x31\x2f\x44\x7b\x98\xd6\xeb\x0f\xd7\xf7\x1f\xad\xef\x87\x4f\x74\x4d\x17\x9c\x80\xde\xb6\xee\x4b\x04\x50\x51\xfd\x09\x46\x1b\x44\xaf\xd4\xbb\xf6\x0d\x8a\x2a\x4a\xbe\xb8\x00\x3a\x9b\xed\x7a\x24\x05\x3a\x9e\x2c\xd7\x23\xa0\x30\xa9\x8d\xd2\x12\xa8\x84\x5d\x74\xa7\x0f\x59\x7a\xe7\xd3\xf5\x5e\x38\x61\xe4\x62\xbd\x16\xbc\xbd\x5f\x96\x5f\x08\x75\x75\x51\x13\x7c\xa0\xa8\x96\x0d\x0c\x23\xe8\x68\x6d\xd8\x35\x08\x32\x29\xb3\xbc\x90\x01\x29\xe7\xe9\x1c\xb9\x4c\xf9\x9e\x9a\xa6\xc7\x80\xd4\xe3\x7c\x94\xdc\x21\x0f\xf6\xf8\x13\x25\x56\x1a\xc9\xf1\xd6\x3d\xe6\x28\x29\xaa\x33\x93\xf1\x9c\x14\x57\xb9\x9a\x61\x41\x6a\x4a\xaf\xa7\xcb\x49\xff\xf8\xc1\xb4\x69\xb2\x90\x14\x45\xdb\x4a\xb1\xf5\xdd\x4d\xbd\x08\x29\x1e\xb3\x23\xf8\xd0\xac\xbe\x25\xde\x02\x3f\x54\x74\xc6\xfe\x20\xb2\x29\x1d\x96\x06\x54\x79\xf3\x1f\xd3\x03\x12\x76\xdc\x66\x50\xa0\x6b\x15\x4e\xf4\xbb\xd0\xb9\xb4\x3f\x74\x2b\xc8\x83\xd7\x4e\x63\x41\x15\xb1\x0f\xa8\x8f\xe1\x15\x3e\x45\xd4\x6d\x30\xcd\xbe\x9e\x08\x40\xe6\xe9\x0d\xe1\x59\x48\x86\xe2\x4a\xec\x13\xf2\x7d\xb2\x9d\x59\x8e\x69\x8e\x74\x33\xfe\x43\xdb\xdb\x1b\x19\xab\xd0\x4b\xe5\x67\xe9\x91\xe8\xda\xb4\x4d\xb4\x69\x64\x92\xfb\x85\x66\x8e\x3c\x8b\xd5\xa3\x4a\xd1\x85\x3e\x2a\xc4\x7f\xa8\xa6\xbd\x01\xb1\x1f\x3d\xac\x17\x8a\x53\x51\xc6\xd2\x69\xec\x11\x1a\xf5\xe0\x28\xe3\x0e\xd3\xe8\x46\x33\x43\x9d\xe1\xdd\xba\x92\x7e\x98\x4e\x2b\x55\xa5\x55\xd0\x9a\x53\xf4\x68\x5b\x68\x4b\x39\xae\x54\x3a\x95\x1b\x7d\x9b\x78\x43\x55\xf3\x7a\x44\xf8\x12\xc2\xa3\xbb\xf0\x11\x62\xc1\xce\x9b\xb8\x16\x4e\x5d\x5a\x8e\x09\xb0\xb4\xbb\xef\x19\x6e\x82\xa8\xfe\xb7\x74\x9c\x6f\xdd\x74\x81\xd6\xcc\xfd\x51\x54\x40\xdb\xc8\x29\x4f\x52\xa6\xb2\xd9\xb1\x2c\x84\xf8\xca\x0a\x8c\x3a\x44\x04\x30\xcf\x5c\x2c\xc3\xc7\x18\x66\x47\x4e\xe1\xd6\xb4\x7f\x3b\x3d\xb0\x54\x6a\xcd\xd2\x46\x6c\x15\x3e\x7b\xe7\x1e\x7d\x40\xd6\x74\xfd\x0b\x7d\x61\xdc\xfb\xfa\xbb\x34\x1b\xa9\x62\x81\x37\x55\x2e\xde\x95\xa8\x40\xfc\x15\x06\x30\x1a\x88\x4b\xfc\xca\x6b\x3d\xf8\x2c\xf7\xf3\x05\x1a\x7e\x8c\xb3\xe1\x30\x0f\xab\x60\x69\xef\x78\x8f\xad\xa6\xff\x58\x3a\x82\x4a\xa9\x46\xb7\x0c\x68\xff\x72\x0c\xbb\x4a\x69\xe6\x99\x78\x0d\x97\x4a\x4a\x1b\xce\xf5\x21\x86\x53\xe6\xc4\x9f\x22\x0c\xe5\x06\xb4\xb3\x78\x96\xcc\xef\x4a\x3b\xbe\x59\x0a\x7b\x7e\xc5\x98\xa2\xf0\x43\x57\xd0\xcf\xfc\xcd\x3b\x22\x51\x2f\x36\xaa\xb8\x1c\x79\x46\xdf\x34\x34\x42\xcb\xac\x5e\xd3\x1e\x4e\xbd\x59\xee\x56\x59\x45\x7c\x2b\xae\xc9\x6a\x20\xec\xf2\xef\x49\xa6\xf0\x8c\xec\xe7\xc4\x66\x7c\x75\xfa\x8b\xcb\x23\x58\x7c\x72\xa5\x87\x17\xb6\x20\xc1\xe2\xe0\x31\xf4\xaa\x24\x48\x77\x14\x79\xc6\xdf\xa9\xb8\x01\xb9\xca\xf8\x3b\x18\x46\xf3\xee\xfc\xda\x6a\x49\xa5\xb6\x52\xca\x03\x89\x92\x86\xa9\x0c\x09\xfe\xa5\xfa\xaf\x68\x06\x3f\x5e\xf6\x1a\x73\xc0\x9a\x0a\xeb\xc3\xf5\xb0\xdd\x39\x06\xe7\x14\xd0\xf4\xb4\xed\x76\xc7\x50\xd5\x84\x22\xdd\x23\x08\x5b\x54\xab\xa8\x8d\x68\xb0\x52\x07\x62\x69\xa7\x07\x96\xb6\xb8\x52\xc3\x7b\xf4\xcb\x60\x42\xd0\xae\x99\x5e\x8d\xdf\x6a\xec\x11\xad\xc1\xb5\x6a\x76\xa0\x5c\x8c\x57\xe6\x7d\x89\x8a\xcd\x2f\x30\x39\x4b\x42\x43\x32\x03\x6d\x5f\x20\x77\x93\x94\x74\xd7\x23\xae\x12\x4b\xc5\x83\xf0\x1b\xf6\x8e\xfe\x76\x9a\xc3\xcd\xfd\xcd\xa9\xd4\xd3\x83\xaa\xa5\x83\x44\x50\x4f\x41\xfa\x32\x3c\xbb\xed\xa9\x10\xc2\xde\x37\x0c\xa3\x00\x73\xaa\xa2\x5c\x5a\x8a\xb6\x15\x57\x9c\x5d\x8f\x6e\xce\xd1\xb6\xad\x43\x18\x29\x73\x74\xd5\x91\xf9\x52\x77\x45\x1e\x9c\xcc\xf6\x18\x4d\x10\xce\x8b\x35\xec\x11\xf1\x8b\x63\xfd\xea\x00\xcf\x3f\x56\x96\x17\xcc\x3d\x1e\x3b\x11\xff\x99\xb3\x8b\xb4\x9f\x96\xc5\x56\x24\x4d\x5d\x29\x67\xde\x27\xe7\x79\x46\x30\xd2\x28\x94\x83\x12\xba\x13\x14\xac\xf3\x80\xfa\x19\x16\x2e\xae\x21\x0a\x90\xe0\xdb\x13\x82\x68\x4a\x60\x77\x2f\xdf\x82\x72\xa1\xd6\x84\xb7\x98\xe2\x96\x5b\xca\xf9\x42\xf1\x8c\x3f\xca\x9e\xa5\xd0\x68\x0a\xac\x5e\xca\xec\x15\x0d\x66\x26\x74\xc1\xe3\x05\x23\x0a\x7a\x76\x70\x31\x7d\x2f\x8c\xe8\x44\x52\x5f\x20\x47\x17\x5f\x26\x0a\x91\xd6\x5b\x3f\xf8\x1f\x91\x96\xae\xd7\xbc\x21\x24\xb6\xe6\x3c\xb7\x18\xd9\x93\xf3\x91\x93\x82\xcc\x8b\x4b\x63\x4b\xe0\x57\xd4\x40\x16\x05\x51\x88\x10\x33\x2f\x20\xfb\x3c\x42\x19\xfb\x90\x48\x3b\x19\x5d\x11\xa9\xd7\xd9\x41\xed\x42\xb7\x2e\x76\x26\x04\xe8\xae\xe1\x72\xfe\x61\x7a\x60\x87\x1a\x6f\x3b\xad\xa1\xf2\x33\x77\x19\x6d\x61\xd6\x08\x07\x50\x7d\x25\x5d\xac\x1f\xc4\x3d\x7c\x84\xf9\x8c\x20\x5d\xde\xc7\x18\x21\x74\xcf\x1d\xa2\xb7\xe1\xdd\xb6\x95\xb4\x54\xdc\x6b\x7b\x31\xd5\x0b\x5f\xbb\xd8\x9a\xd8\x8b\xb9\x0e\xd6\xf1\x9a\x78\xd4\xd6\x58\x6e\x02\x37\xa2\x9c\xcb\x41\x39\x8e\x19\xc5\xec\x4b\x6c\x7d\xd1\x34\xcb\x97\xb5\x19\xd3\x63\xba\x33\x77\x5f\x7a\xc8\x70\x60\x38\x9f\xdd\x49\xdf\x45\x77\x3e\xf0\x99\xb6\x82\x66\xbf\xdd\x99\x78\x48\xdd\xbd\xd8\x1b\xaf\xc7\x25\xfd\x4b\x78\x47\xe3\xe8\x4d\x9f\xb8\x9b\x24\xf7\x4b\x8f\x72\x80\x58\x37\x2d\x83\xf5\x5c\x08\x09\x55\x98\x13\xfc\x07\x88\x8c\x71\x9b\xe7\x1e\x46\xa3\x0f\x70\x86\xce\xac\xa4\x15\xb1\xd7\x1f\xb0\xa2\xd2\x99\x67\xb7\xfd\x26\x9c\xe9\x61\x8b\xf9\xb8\x09\xf1\xa0\x87\xc1\x4d\xca\x74\xae\xaf\xe5\x44\xa6\xcd\x14\x59\xb0\x5d\x53\x42\x92\xef\xb3\x8c\xe5\x77\x79\x12\xa6\x7a\x82\x15\xe4\xc3\x58\x15\x57\x1d\x92\x49\x57\x91\x2c\x3b\x9d\x43\xfd\x2c\xd4\xb7\x31\x24\x6e\xf1\x34\xb6\x51\xf0\x4c\xd6\xed\xc5\x9d\x18\x9d\x56\xdf\xc9\xe4\x9e\x2b\x67\xd7\x8c\x73\xd4\x4b\x74\xf2\xd9\xac\x67\x05\x8d\xf2\xd3\xcc\xc6\x5c\x1d\x8e\x2d\x23\x29\x13\x25\x1f\xa3\x4b\x52\x07\x83\x86\x68\x02\xf9\x8c\x9b\x31\x35\x32\xbe\xc2\x5a\x9d\x70\x11\x1b\x6e\x7d\x8d\x6b\xf1\xdc\x16\xdf\xc6\x96\x32\xe0\x76\x35\xae\x5d\x6b\x75\x95\x80\xfd\xb9\x51\x94\x7b\x8c\x55\x55\x6b\x99\x60\xc2\x44\x2b\x4a\x58\x07\x18\x67\x8a\xdf\xc5\x86\xd3\x0f\xe6\x2f\x0f\xdc\x4a\xdb\x9b\x39\xeb\x3a\x42\x5d\x97\xb2\xcf\x4a\x09\xff\x26\xd3\xdd\xea\x81\xf5\x09\xcb\x16\x3f\x44\x2b\x59\x8b\xda\xf4\xb8\x86\x3d\x94\xca\x34\xf6\x6c\xfb\xdb\x1c\x4f\x56\x5a\xb3\x81\xcc\x89\xe9\x5f\xa7\xcb\x0c\x65\xec\xad\x78\x19\x53\x40\xdf\x58\x4c\x09\x88\xa4\x2d\xcd\x2d\x75\xb5\x24\x5e\xa6\x9f\xd8\x9f\x8d\x77\x25\x5e\xda\xaa\x8f\x49\xc4\x5b\x16\xff\x41\xc9\x2c\x49\x6b\x14\x57\x6d\x30\xac\x62\x86\x3d\x74\x9d\x9d\x9d\xc9\xa2\x75\x5c\x8a\x4f\x66\xda\x36\xcf\x63\x74\x33\x96\xd5\x3a\xc6\xa8\xd0\x9e\x97\x7b\xfa\x7f\xa0\xde\x28\xf8\xed\x32\x46\x64\x67\xbe\xde\x1f\x8c\xc7\x26\x39\x6c\xdd\x86\x1d\x94\x98\x2c\x39\x88\xea\xb2\xfa\x7b\xce\xc6\xbf\x8f\xb1\xa8\x37\x8c\xb3\x89\x61\x17\xd6\x4a\xb8\x31\xf7\x92\x15\x45\x9f\x63\x77\x73\x99\x42\x8f\xd8\x0a\xca\x2e\x7e\x05\xc9\x3f\xd8\x85\xfb\x83\x6c\xee\xb6\x9d\x63\x46\x51\xb3\xf2\x60\xb9\x43\xcb\xb5\x75\x19\x1e\xb0\xe7\xc2\x3b\xb4\x70\xc4\xa6\x9b\x88\x67\x91\x9d\xeb\xce\x49\x5f\x93\xdd\x0b\xde\x49\xf6\x91\xaf\x26\x79\x88\x8a\xc8\x72\xce\x43\xe1\x6a\xf2\x23\x72\x26\x3f\x96\xe2\x18\x34\xc8\x1d\xa4\x8c\x9f\x2a\xe2\xac\x80\xc2\xf7\x7f\x60\x1d\x80\xd7\x6a\x3d\x62\x38\x22\x0b\x16\xd6\xd1\x2e\x21\xbc\xae\xcc\xf8\xed\x30\xa9\x96\x26\x8d\x83\xed\x0b\x36\x8b\xdf\xc0\xc6\xf2\x3c\x91\x17\xac\xce\x39\x20\xb8\x03\x6f\x26\x2b\xf1\x2d\x60\xe7\xa0\xc3\x5c\x09\x9c\x7a\xca\x84\x3d\x0d\xbf\xde\xcf\x67\xad\x45\xec\xb4\x92\x18\x3b\x91\x3b\x0b\xe5\x34\x57\xe4\x63\xc7\xf2\xb8\x62\xea\x78\xf5\x2e\xe9\x1a\xea\xe1\x3c\x0d\xf1\x15\xa2\x3a\xe1\xbe\x70\x9a\x30\x65\x15\x0a\x4e\xe1\x43\xb1\x39\xbc\x66\x9c\x1b\xa8\xca\x5d\x83\x7b\xba\xea\xb1\xc3\x71\xb5\x7d\x37\x99\xc5\xd8\x3d\x2d\x53\x7a\x3f\x56\xb7\x50\x4c\xfd\x85\x29\xb4\x5e\x8b\xdb\xc2\xa9\xaa\x5c\x2e\x89\x61\x5f\xcf\x59\x26\x9a\x62\xf5\xcb\x80\xd0\x89\x39\xc2\x5c\xca\x6f\x67\xcc\xc6\xec\xe3\x19\x30\x34\xfd\xa7\x39\x12\x7a\x80\xcb\x76\xd6\x0c\x8d\xb1\x6f\x2b\x53\x8b\x5a\xa8\xf9\x9d\x7e\x80\xe8\x5f\x38\x46\xbd\x8a\x1f\x6e\x56\x92\x4a\x25\xee\x65\x55\xe2\x9f\xa2\xe7\x59\xab\x44\xee\x42\xff\x38\x73\x41\x17\x7f\x9a\x1e\xcd\x37\xe6\x05\x46\x3d\xe0\xe6\x70\x57\xfa\xd5\x73\x54\xd8\x4d\xce\x2b\x58\xee\x2c\x3d\x4b\x0e\x23\x81\x91\xae\xd9\x4b\xab\xa6\xbd\x53\xd8\x46\x3c\x23\x58\xf5\xf7\xa5\xab\xd2\xe0\xe2\xf7\x62\xbf\x14\xd7\xf4\xe3\xc2\xae\x24\x35\x71\x95\x60\x73\x42\x2b\x75\x37\x8f\x88\xbf\x70\xed\x01\xe7\x93\x54\xd9\x77\x0e\xdb\x53\x94\x7b\xe2\x39\x33\x9f\xff\xdb\x42\x42\x9f\xe5\xea\x6b\xba\xd3\xe6\xb0\xf4\x15\xbc\x09\x23\x9a\x6b\xed\x5a\x49\x57\x89\x4a\xe1\x36\xf1\xba\x82\xa9\x94\x21\xa1\x7f\x6e\x97\xf0\x22\xbf\x36\x2b\x16\x5f\xcd\x53\x4a\x5f\x77\xe5\x15\x87\x94\x5c\xe6\xed\xc4\x9a\x4e\x5c\xe3\x24\x63\xea\xc7\xe9\x9a\x73\xe8\x81\xc2\x6f\x1a\xc3\x54\x9c\x4b\x51\x88\xc0\xab\xe8\xbf\xab\x7e\x4b\x86\x1a\xa1\xfc\x6d\xe2\x79\xb5\xb2\xa4\x74\xe1\xc1\x4a\x1e\xff\x10\x9f\x53\x7a\x02\x5d\xcd\x9d\x28\x78\x1e\xa1\xca\x31\xcd\xb9\x78\x31\x9f\x25\x4a\x17\x3a\x9a\x32\x26\x92\xec\xf7\x62\x74\xd5\xb8\x2c\x8d\x7d\xd4\x6d\x82\x64\x05\x0a\xee\xcc\x0c\xa9\xfc\x25\x19\x6e\xbf\x99\x67\x21\xfa\xd7\x2c\x95\xd7\x08\xcd\xeb\xb7\xf1\x2e\xf2\x49\x55\xb1\xc8\x6e\x6e\x67\xa9\xf0\xf2\x41\xce\xca\x02\xfc\xc2\x3b\x56\x40\xf6\xda\xe3\x69\x8c\xc2\x54\x9d\xbd\xab\x69\x8f\x65\xd7\x35\x96\x12\x1f\x85\xdf\x14\x24\xf8\x3a\xe6\x7f\x95\xdb\x24\x43\xd7\xdd\x72\x23\x44\x5f\x3b\xee\x24\x7e\x15\x6e\x6b\x59\xc3\xcd\xe3\x7b\xd6\x2f\x82\x59\x5c\x79\x65\x65\x78\x36\x7b\xba\x44\xeb\x42\x00\x6b\x47\x9e\xc1\x71\x03\x46\x50\x7a\xf2\x9e\x61\x5a\x62\x22\x53\x03\x10\xd9\xa2\xdf\x0a\xb7\xb1\x5e\xd6\xb6\xb2\xae\xcc\x82\x68\x69\xf6\xda\x74\xbd\xe8\x2f\xb2\xb4\x94\xc1\x98\xa3\x6c\x97\xa4\xc0\x98\x06\x8a\x6e\xc2\xaf\xd8\xe3\x61\x76\xf1\x14\xd2\x22\x8f\x59\xc9\x63\xd2\x4b\x7b\x8a\x68\x05\xf9\xa5\x69\x1d\x5f\x1d\x02\x1b\x17\x73\x00\x7c\x66\x6e\x03\xe3\x3b\xa2\x57\xb6\x25\xd3\x9e\x14\x9c\x45\x4a\xbb\x47\x12\xc8\x14\x52\x30\x52\x21\xeb\x46\x92\x36\xe9\x39\xb9\x32\xa1\x8d\x7c\x24\xf4\x6e\xfc\x11\x72\xaf\x07\x55\x52\x45\x09\xb4\xdf\x2c\xfc\x04\x6d\x32\x0d\xe1\x2f\x84\x5e\x6d\x18\x65\x7f\x80\xdf\xcc\xcd\x62\x7c\x44\xfc\x4a\xe1\x8c\x57\xd0\x85\xcc\xd1\x34\x3a\xe4\x10\x1f\x94\xb2\x0b\x32\x64\x1d\x90\x3f\x86\xcc\xc9\x7b\x12\x60\xc8\x2b\xd4\x27\x7e\x29\x54\xe0\xb1\x41\x42\x86\x95\xff\x1f\x0a\xea\x82\xaf\x89\x87\x01\x00\xf0\x89\x2d\x61\xa2\x22\xa0\x80\x85\x94\x85\x82\x05\xa2\x28\x4a\x18\x28\x0a\x22\x92\x02\x8a\xa2\xd4\xe2\xfa\x76\xeb\x6e\x16\x8c\xd1\x39\xba\x1b\x04\x0c\xec\x6e\xfd\xdb\xdd\xdd\xef\xef\xfd\x10\xcf\xb3\xf9\xb8\x74\x00\x45\x97\xcd\x11\xdd\x47\xff\xda\x9b\xf8\x17\x31\x93\x99\x91\x73\x03\x1b\x34\xb5\xe5\x6f\x27\xa3\xf2\xfd\x72\xff\x30\x9e\xaa\x46\xe5\xb4\x33\xf6\x73\xbe\xe9\x62\x19\xa3\x41\x0b\x0d\x40\xf4\xa7\xec\x51\x89\x88\xfc\xc8\x95\xf2\x7f\x84\x6a\xf3\x28\xe9\x36\x82\xe6\xa9\x13\xa5\x11\xf1\xf6\x14\xfe\x41\x22\xd5\xec\x14\x87\x8a\x9f\xae\xd0\xe6\x0f\xe7\x95\x18\x23\x73\xd5\xdc\xfb\x8a\xed\x39\xbe\xdc\x11\xec\x4c\xed\x03\x8e\x37\xad\x33\x1b\x66\xa3\x07\x3d\x55\x96\xac\x67\x7b\xd6\xc9\x99\xac\x3d\x9b\xfc\x24\x43\xcc\x5a\x4f\x07\xe1\x4b\xe6\x70\xfb\x6d\xbc\xc7\xe4\xbe\xe1\xd6\xec\x77\xc4\xf7\xb2\x8a\x3c\xad\xb4\xc6\xa0\xc8\x75\x96\xa4\xc8\xea\xf4\xa7\xc5\xd3\x98\x7f\xb5\x89\xc2\x0b\xd4\x74\xf5\x6f\x81\xf2\xc0\x24\xa5\x88\x4f\x8f\x08\x91\x8f\xe2\x45\x05\xd0\x25\x7e\x5c\xeb\xa5\x65\xc2\x3d\xec\x7e\xfb\x95\xbc\xad\xac\x7d\xc3\x33\xd9\xbb\x48\xe7\x92\xf1\x79\x6e\xfa\x32\xfd\x6c\x43\x95\xf6\xaa\xe4\x90\xde\x3f\xfb\x01\xe3\x85\xe6\xbc\xea\x5c\x96\x4c\xbd\x5b\xd1\x91\x94\xa4\x78\x20\xeb\xd8\xfd\x58\xb6\x4b\x52\xb1\xf1\x80\x58\x22\x8a\x5c\xf2\x42\x50\xcc\x7f\x6d\xf7\x89\xab\xe6\xee\x18\x3e\xc8\xd2\x32\x2f\x17\x4a\x8d\xcf\xca\xa6\x68\x6e\x19\x62\x8b\xb7\x8b\xc2\x74\xef\x0a\x60\xfc\x83\xe6\x90\x91\x97\xd1\xa7\x7a\x96\xc3\xdc\xdf\xab\x48\xd1\x32\x77\x65\x4a\xef\xa8\xf7\x6d\x08\x10\x4f\x92\x3f\x5f\x32\x51\x30\x57\xe2\x6d\x27\xe1\x4e\x12\x04\x0c\xff\xc8\x1a\xc7\xde\x92\x2f\x33\xbe\x6f\x5c\xae\x7e\x68\xd8\x5e\x7b\x42\x10\xab\x3b\x51\xe5\x81\x4d\xd2\x78\x97\x47\xa5\xfd\x52\x15\x17\x27\x27\xcc\x54\xd8\xe6\xc7\x84\x01\x52\xc2\x30\xc3\xdf\x5a\xd4\xa0\x39\xb4\x78\x31\xbf\x5f\x71\xd8\xce\x9e\x53\x2d\x1e\x3f\x62\x02\x33\x8f\xa3\xc8\xbb\x68\xbc\xdd\x3e\x46\x3d\xd5\xe0\xdf\xec\xc3\x67\xeb\xda\xea\x7d\xd1\xb5\x1a\xc7\xea\x71\x69\xcb\x54\xec\xf2\xa2\xf8\x64\xf9\x97\x62\xbb\x9d\xb1\xd2\xd0\xbc\xcd\xeb\xe5\x22\x42\x3f\x6c\xd1\x15\xbe\x44\x15\x61\xfb\x8d\x43\x91\x04\x8c\x58\xc8\x4c\xe0\x5a\xe6\x2d\x37\xf6\xf6\xd8\xaa\x0e\x1a\x3c\x3a\x46\xf0\x2e\xe8\x0a\x9a\x1b\x11\x99\x66\x58\xfd\xfc\xa3\x52\x55\x64\x55\x54\xdc\x25\x79\x4f\x59\xec\x8e\x07\xd2\xc9\x85\x16\xeb\x17\x8b\x56\x1b\xbc\x16\x69\xf8\x1b\xd4\xef\x6d\x3f\x70\x9c\xa5\x4b\x46\xa4\x33\x27\x72\x83\x75\xe3\x6b\x52\xa9\x57\x25\x61\xa6\x0d\xb4\x05\xe4\xaf\x72\x07\x1a\x42\x7d\x57\x7c\x93\xf6\x25\xc5\xbe\x80\x4e\x57\x46\x15\x1b\x87\x81\xa1\x5b\x9e\xe9\xc3\xa1\x15\x3e\x49\xd9\x7b\xe1\x2d\xae\x6f\x14\xf6\x08\x3a\x6d\x84\xb8\x01\xbd\x0a\x00\xfc\x28\x0c\xd5\x1a\x6b\xa6\x83\x11\xe2\xd7\x95\xdf\x40\x1a\xa9\x2d\xbb\x06\xe6\x53\xb5\xc5\x2a\xf0\xe5\xc1\x73\x05\xab\xa1\xf0\xa8\xd8\xdc\xd3\xd0\xa3\x2d\x45\xfa\x05\xb0\xd4\xc7\x3d\xdb\x1b\x89\x75\xed\x55\x8c\x40\x03\xa6\xbe\x12\xe7\x63\xc1\x00\xc0\x0f\xc5\x0a\xb4\xce\xd5\xc7\xe1\x5f\x62\xa4\xb2\x04\x7e\x41\x2e\x2e\xe3\xc2\x2f\xa9\xbe\xc5\xc1\xc8\x98\x83\xcc\xfc\x1f\xc8\x86\xa8\x69\xb9\x42\xc4\xb0\x25\x45\xf7\x16\xb5\x5e\xf3\x35\x7b\x14\x6a\x74\x55\xcb\x6f\x61\xab\xa6\x5e\x13\x13\xd8\x67\x00\xe0\x2f\xc1\x3e\x67\xff\xa8\xf6\x67\x48\x45\xa9\x95\x0e\x0c\x0f\xc6\x96\x32\x80\x18\xa0\x24\x17\x0d\x12\xf0\x81\x9e\xfc\x0c\x22\x74\x6f\x4a\xee\x48\x62\x73\xc8\x6d\x5d\x32\xb1\x7b\x0d\xa1\x16\x10\x51\xae\xeb\xe5\x89\xc4\x81\xa9\x9d\x62\x6b\x42\x08\x00\xbc\x41\xfc\x81\x7a\x47\xd5\x4b\x6e\xa4\x70\x4c\x45\x13\xa7\x94\x18\x59\x2a\x66\x3f\xc9\x0a\x28\x0a\x62\xaf\x4a\x3e\x99\xf7\x99\x55\x16\xa9\x30\xb0\x58\x4b\x43\xe6\x69\x5f\x32\xcf\xae\x01\x54\xff\x98\xdb\x5d\x7e\xc9\x2e\x93\x17\xa6\x1e\x13\x31\xc8\xed\x00\xc0\x5b\x4c\x7c\x57\x5e\xa8\x42\xc5\x1a\x7e\x4e\x45\xa0\x48\x89\x9d\x28\x9d\x29\x4c\xc8\x74\x2d\xbc\x2c\x08\x49\xba\x94\x97\xc9\x0f\xd8\xd3\x6e\x18\xce\x8b\x0c\x4e\xd7\x26\x73\x29\xab\x31\xd5\x51\xce\x01\x97\x56\xd9\x4a\x76\xc8\xd4\x5b\xc2\xfb\xac\x19\x80\x27\x57\x40\x8e\x53\x8c\x30\xfd\xd2\x34\x71\xdf\x96\xf7\xa9\x7f\xa0\x33\x4a\x24\xaa\xa5\xe9\xb9\x85\x4b\x15\x7b\x13\x0f\x1a\x8f\xcb\x84\x11\x48\x4e\x88\xe4\x4a\x50\x8a\xc6\x24\x9e\xb4\xaa\x45\x59\x2d\x9c\xee\xe2\x27\xa5\xf3\x81\xa9\x27\x84\xb6\x9c\x76\xa0\x8b\xd3\xc2\x14\xc9\x3c\x4c\x5d\x85\x75\x9c\xf9\xe5\x49\xf9\x33\x60\xb2\xc4\x3d\xb7\x22\xcd\xb6\x60\x40\xff\x6f\xff\x70\xe3\x26\x6d\x70\xf8\x0a\xfd\x90\xba\x26\x70\xa7\x66\xae\xe2\xcb\xca\x9b\xca\xb9\xd2\x8f\x0b\xaa\x24\x2f\x45\x5d\x53\xf3\x05\x2c\xbe\xff\x30\x1b\xce\x74\xd6\x6d\x09\x61\x92\x57\xf3\x59\x92\xf2\xd5\x95\xfb\xc1\xff\x8a\x5f\x95\x2d\x38\x22\x2e\xc8\x28\x6a\x8d\x97\xe6\xbe\xcc\xf7\xd8\xf5\x54\x1f\x63\x30\x6c\x76\xcb\xae\xd7\xde\x5a\xf1\x56\x51\xad\x3a\xb6\xc0\x52\x92\x29\x4b\x98\xba\x4f\x30\x49\x58\x34\x2c\x82\x9d\xc7\xfe\x26\x3e\x6f\x22\x1a\x9a\x99\x77\xca\x9d\x6b\xd7\x82\xb3\x8b\xcf\x9b\xf2\x53\x6f\x17\x6c\x2b\xbb\x16\xf7\x22\xb7\xa3\xe8\xc5\xae\x6d\x7a\xb7\xbc\x87\x9b\xca\xb2\x29\x39\xc6\x15\x5c\x45\x86\x06\x70\x3e\x27\x59\xa6\x98\x38\x35\x84\x7f\x59\x64\x1a\x46\xb0\xa3\x39\xfb\xc4\xcb\x4d\x29\xad\x8b\x99\x6b\xcb\x2d\x1a\x33\xe9\x64\x71\x45\x2d\x27\x35\xa0\xc0\xd1\x94\x16\x17\x9f\xcb\x2c\x73\x0d\xbb\xae\x7b\x55\xd8\xb9\x29\x20\x7b\xa1\x71\xe4\x8a\x35\x8a\x79\xda\x17\xce\x45\xe2\xa7\xca\xd4\xa9\xbb\xf8\x84\x38\x6b\x58\x1f\x7b\x1c\x47\xc4\x52\x74\x4a\xe8\x00\xf4\xbe\x15\xa5\xfb\xa4\x69\x1a\x33\xe8\xd4\x44\x5d\xed\x36\xfa\x83\xc8\xe1\x26\x33\x90\xbe\x65\xa8\x54\x08\xad\xf2\x13\x16\x9c\x83\x9d\x97\x0c\x1a\x2a\x90\xf5\x4e\x22\x8d\x17\x0a\x4e\x10\xc9\x93\xb0\x7c\x00\x10\xca\x71\x73\x56\x42\xa7\x1b\x14\x0c\x75\xb4\xce\x81\xa2\xd2\xf6\x35\xce\x85\x0e\x27\x26\xd5\x8e\x81\x4a\xf7\xdc\xa8\xec\x81\x2d\xb7\x14\x96\x6e\x85\x0d\x7e\x07\x0a\xb2\x91\x1d\x4b\x2a\x0d\x28\xea\xe1\x94\xa9\x99\x8a\xd9\x4f\x10\xca\xb7\x60\xbf\x01\x40\x88\xe2\xf6\x2c\x8f\x8e\x01\xa4\x05\xc2\x5a\x4e\x21\xb9\x69\x33\x1b\x2e\x23\xac\x44\x8f\x9a\x76\x44\xbe\xa7\xbc\x92\x82\x0c\x6d\xa1\x96\x8e\x41\x17\xf8\xf9\x17\xec\x40\x4d\x4b\xc4\x86\x0d\xd8\x06\xa7\x98\xec\xc7\xd8\xfb\x09\x7c\xf9\x6c\x9c\x0b\x00\xc2\xdd\x78\x0c\x73\x56\xc7\x72\x46\x0b\x58\xd6\xe2\xcd\x08\x3e\x4a\x6d\xf0\x25\xee\xee\xd7\xd7\xcc\x21\xb4\x7b\xe6\x57\x3c\x20\xe8\x5b\x46\x97\x1c\x21\xe0\xb5\xaf\xf2\xdb\x09\xfd\x92\xdd\x39\x5d\x44\x87\x93\x4f\xf6\x3e\xe2\xe1\x04\x83\xac\x90\x78\x0b\x00\x82\x9b\x84\x17\xe9\xd8\xde\xc1\xb5\xa1\x9f\x68\x6e\xe6\x44\x1c\x29\xad\x6f\x66\x2b\x13\x5e\x57\x6b\x58\xdf\x22\xb4\x15\x3b\x58\x94\x10\x71\xf1\x3d\xd6\xc4\xb5\xbc\x7c\x67\x66\xcf\x92\x29\x39\xf6\xcc\xfd\x4e\xb3\xd5\x1d\xcc\xb1\x13\xba\x65\x00\x49\x02\x80\x60\x11\xc3\x9b\x11\xdd\xbe\x46\x74\x8f\xf6\xb5\x79\xa9\xb0\x33\xf5\x76\xbd\xbb\x20\x3b\xc1\xb7\xda\x9c\xaf\x8a\xb0\x28\xef\xe7\x55\x86\x4c\x2e\x0e\xe4\x5e\x5e\xbb\x20\x4f\xca\x1d\xb3\xf8\xb2\x9e\xca\x99\xef\x64\xa5\xb6\x60\xfb\x4c\x78\x26\xdd\xce\xb2\x01\x00\x3e\x95\xf4\x20\x9c\xda\x0a\xd4\x3d\xd4\x33\x4d\x7c\xd5\x8c\xc3\x6d\x75\x54\xc5\x91\xf8\x05\x55\xfe\xb2\xde\x70\xcb\xb2\xb7\x52\xa7\xe0\x15\x45\xa9\x62\x99\x2f\x66\xac\x11\x01\x8b\xe3\x75\x4a\xc1\x26\xc7\xd7\xaa\x05\x3c\x68\xa2\x83\xe4\x30\x27\x19\x00\x78\x1c\xa6\x0c\xfb\xdb\x66\x97\xb7\x9f\x92\xdf\x34\x3c\x77\xea\x21\x4d\xed\x4b\x7d\x6f\xdc\x44\x53\xa5\x76\xc7\x6e\xb3\xb2\x4d\xea\x97\x41\xdb\x0a\xfb\x95\x02\x9f\x5e\xe3\x30\xb9\xed\xa2\xdb\xda\x27\x92\x0c\xc7\x32\x25\x24\x2c\x99\xb8\x54\xdc\xcd\xe3\x01\x00\xf7\x22\xab\x11\x3d\xde\xda\x54\x7e\x3e\x0b\x6e\xcc\x2f\x79\x9f\x02\xd5\x32\x0a\xbf\xc6\xfc\x36\x2d\xcf\xbb\x1c\xf6\xa7\x74\xc0\x50\x14\x78\xb0\xd0\x4b\x97\xee\x33\x32\x37\x2d\x7b\xe6\xa2\x1d\xda\x1d\x0a\xd2\x31\x59\xf1\x42\xd2\x38\xd1\x4b\xbc\x4c\x40\x05\x00\x6e\x20\x5b\x85\x2e\x69\x25\xaa\xd7\x67\x7e\x68\x3c\x52\x69\x73\xf0\x5b\x6d\x68\xe9\x50\x0c\x5e\xf9\xaf\x68\x47\x18\xb7\x94\x95\x77\x2a\x70\x64\xc1\x57\x83\xe7\x9a\xc6\x5c\x57\x6d\xfa\x22\x5b\xad\xb9\x2a\xc6\x71\xbb\x22\x4f\x36\x65\xa2\x9f\xe8\x9d\x30\x10\x00\xb8\x23\xd9\xff\x21\xa6\xd6\x8d\xf5\xe3\x33\x69\x8d\xde\xd5\x45\x07\xb9\xb5\x36\x95\x93\x63\xa6\x57\x76\x96\x86\x87\xcd\x2f\xf5\x2e\x44\x37\x37\x17\x14\x1a\x65\x6b\x20\xc3\x15\xfd\x91\x85\xbf\x34\xf5\xea\x8f\x8e\x61\x8a\x8d\xf2\xc5\x13\xe3\x45\x6a\xe1\x53\x00\xe0\x98\xd8\x5f\xe0\x37\xc7\xd6\xd1\xdf\x66\x84\x75\xfd\x03\x6d\x0e\x6c\x6b\x33\x81\x2b\xf7\x35\x35\xb9\x83\xf2\x1d\xa5\xb5\x54\xc8\x36\xe0\x6d\xa5\x04\xba\xbc\x2a\xa1\x64\x27\xdc\xe1\x7e\x20\xcf\x88\x9c\x9d\xb9\x4e\x57\x88\xfe\xb5\xec\x54\xce\xc3\x87\x01\x80\x48\x84\xef\x80\x3b\xfb\x9e\xc1\xb3\x33\x3c\xbb\x4a\x60\xc7\x03\x0b\xda\x22\x60\xbb\x7d\xb2\xc6\x07\xf0\xfa\x1d\x9c\xda\x45\xb0\x2e\xe0\x72\x65\x30\xe2\xb8\x2a\xb0\x64\x2a\x72\xd9\x3d\x2a\x2f\x15\x2d\x9b\xb9\x42\x07\x63\x2a\xcb\xe3\xca\xd1\xf8\x36\x00\x10\x51\xf0\xbd\x30\xd4\x27\x44\xe9\x19\xe6\x5d\xc1\x68\x48\xf2\xdf\x36\x33\xd4\x71\x5f\x62\xa3\x08\x9d\xbe\x23\xbe\xe6\x3f\x74\x5d\x40\x53\xc5\x3f\x54\xb7\xca\xa3\xf8\x34\x36\xdd\x7d\x5b\xde\x62\xac\x66\xe6\x22\xdd\x7a\x7c\x8f\xe5\x59\xc5\x55\xfc\x22\x00\x88\x02\x71\x1d\x64\xec\xfd\x43\x2e\x49\x0f\xef\x6c\x62\xb4\x24\xa7\xb6\xee\x67\xac\x8e\xfa\xd4\xf0\x9a\x78\xb3\x63\x58\x8d\x2f\x71\x3c\x20\xae\x22\x92\x18\x5c\xf9\xba\x78\x0e\xf1\xd0\x7d\xb9\xd1\xc0\x18\x3e\x73\x9e\xb6\x86\xb1\xd0\xf2\xad\x62\x33\x63\x36\x00\x08\xbb\x89\x83\xe0\xcf\xde\x0c\xee\xce\xb4\x8e\xce\x39\x1c\x71\xd2\xf5\x96\xd3\xec\x13\x51\x60\x43\x28\xdb\x31\xb4\xb8\xba\x98\x95\x1b\x30\xb5\xbc\x8b\xb5\x6c\x65\x63\x11\x8b\xf9\xc8\x7d\x42\xee\x47\xa6\x78\xe6\x34\x2d\xc0\xf4\xb2\x9a\x26\xd7\x93\x45\x00\x20\x34\x67\xc4\x82\x21\x3d\xcf\x45\x97\xd2\x6c\x3b\x64\xc2\xba\xa4\x0d\x2d\x0b\x05\xb2\xa8\xe1\xf5\x8d\x7c\x41\x68\x48\xf5\x38\x5e\xc1\xc6\xd3\xe5\x33\xb8\x43\x2b\xc1\xc2\xff\x38\xff\xdc\x9e\xe7\xae\xe3\xb8\xce\xb4\xd2\x6c\x62\x87\x58\x6d\x90\x3d\x62\x39\x01\x80\x20\x90\x0c\xa6\xc7\xf7\xb8\xaa\x7d\x8f\x2e\x6b\x3f\xad\xd4\x27\x26\x35\xef\x95\x7f\xde\xeb\x5e\x77\x59\x16\xbc\x1d\xaf\xb2\x91\xb4\x6e\x74\x2c\x9b\x23\x5e\xb8\x72\x58\xc1\x13\x61\xa5\x5b\xa9\x21\x40\x30\x76\xa6\x7d\x76\x08\x2f\xcc\x4a\x2f\x7d\xcb\xd9\x02\x00\xfc\x40\x66\x2e\xed\x60\xb7\xd8\xb8\xe3\x48\x60\xbb\xb3\x61\xcc\x7e\x4e\x53\xbd\xae\x25\x32\xb8\xce\x4e\x13\xb1\xcd\x64\xda\xad\x1e\xbb\x21\xb9\x34\x5a\xd1\xb9\x22\xad\xc0\x5e\x96\xe8\xb6\x31\x87\x14\xff\x67\xff\x49\x2d\x11\x7a\x5b\x1d\x93\x2e\xe6\xad\x02\x00\x9e\x80\x55\x4e\xe5\x77\x8f\x28\x9b\x98\x7a\xa8\xad\xa8\x78\x79\x42\x5d\x93\x47\x41\xd0\x1e\xb0\x56\x60\xf4\xd9\x7a\xa7\xb2\x2d\xc7\xc3\xbf\xbd\xa4\x5b\x3b\xcb\xfb\x75\x3e\xa8\xfa\xea\xfa\x59\x7f\x57\x2e\xb6\xff\xa8\x7a\x25\xfe\x61\xf5\x5e\xa2\xe3\x7f\x06\x00\xee\x6f\xf6\x21\xaa\x4d\xd7\x29\x93\xfb\xe1\x7f\x6d\xfb\xcb\xcd\x12\xb6\x35\xbe\x2b\x3e\xbd\xc7\xb6\x76\x43\x41\xea\x56\xb2\x32\xc5\x38\xca\xff\x68\xc9\x11\x7d\xae\x77\x7b\xfe\x02\xcd\x44\xd7\xcb\x7a\x9e\x72\xa5\xfd\x67\x55\x8e\x74\xd9\xf8\xb1\x92\xad\x82\x2a\x00\xe0\x36\xb1\x4b\x29\x75\x5d\xdc\x9a\xe2\xc3\xba\xb6\x59\xa6\x55\xf1\x3f\x1a\x4b\xcb\x06\x22\xce\xd5\x7c\x2d\x9e\xbf\xd5\xaf\x72\x72\x7e\x96\xff\xea\x92\x89\x86\x2e\xef\x9c\xbc\x53\xda\x1b\xae\x27\xf4\xf3\x55\x39\xf6\x7f\x55\x3e\xb2\x85\xe3\xbd\xc4\x1f\x85\x9e\x00\xc0\x0d\x67\xd7\x67\xd5\x1c\xff\x06\xcd\x3c\xe4\x7a\x4c\x0e\xcd\x8b\x8b\xe8\x9e\x02\x39\xee\xfe\xd7\x16\x0a\x45\x86\x6c\x6c\x0c\x81\x86\xfc\xfe\xd6\x8c\x83\x8f\x2e\x1f\x5e\x1e\x8f\x6c\x72\x3e\x53\xe8\x8e\x06\xcd\xa8\xce\xe9\xc0\x52\xcd\xd9\xaa\x62\x7c\x3d\x00\x88\xf7\xe0\x78\x96\xe2\xb8\x11\xf1\x3b\x34\xfb\xd8\x0a\xc4\x2e\xce\xbf\xab\x03\xfe\xbc\xfb\x65\xeb\x3f\xf8\x4f\xc8\x8a\x46\x00\x59\xe5\xf7\xa6\xba\x17\xa9\x59\xf6\xa5\xdc\x11\xdd\xee\x3c\x58\xf0\x07\x9b\x36\xa3\x28\x47\x8a\x7d\x37\x17\xaa\x88\xff\x4f\x2b\xf6\xc3\xc9\xac\xfd\xc7\x83\x31\xc6\xa1\x89\x7d\x77\xb1\xa5\x71\x2e\x5d\xd1\xe8\xab\xdd\x17\x5a\x8b\xd0\x63\x21\x4e\x0d\x65\xe8\x25\xbf\xdb\xd5\x29\xd8\xf4\x65\x8f\xca\xce\x62\x1c\xe7\xce\x82\x6e\x7c\xd2\x0c\x5d\xce\x0e\xbc\xce\x5c\xac\x0a\x26\x00\x00\x10\x8f\xc7\xdb\x33\x3b\x07\x5b\x98\x40\x0a\xd8\xe7\x4b\x26\xc6\x56\x74\x36\x31\xae\xec\x4e\x6b\xf9\xce\x38\x12\x7c\xa3\xfe\x27\x63\xb9\x5f\x6e\x55\x3b\x63\xee\xb2\xc6\xb2\xe9\x8c\xe5\xce\x35\x05\x8e\x8c\xed\x33\xe4\xfa\x46\x46\x86\xb9\x49\xd9\xc8\xf0\x07\x00\x11\x48\x60\x99\x49\x83\x76\xdc\x37\x29\x76\xbd\x39\xdc\xf1\xb1\x9b\x3b\x47\x71\x56\xee\x76\x6d\x09\x66\xe3\xc1\x55\xf5\xa1\xac\xb7\x7e\x50\x95\x39\x8b\xb2\x2c\xb7\x34\x99\x65\xe3\x5c\x98\x7f\x80\xd9\x37\x43\xab\xfb\xcc\x4c\x32\xbf\xa7\xf8\x41\xb6\x02\x80\xb0\x9d\x91\x95\x31\x34\x80\x8a\xdd\x0f\x16\xf7\x7c\x16\xfe\x89\x79\xd3\x11\x26\xb8\xb2\xeb\x59\x73\x0e\xbf\x3b\x98\x59\x57\xc4\x3b\xed\x17\x61\x8a\xe0\x3e\x5e\xc6\x2b\xa9\xe3\x4e\x74\xd6\xe7\x95\x71\x7c\x66\x94\xeb\xdc\xd9\x09\x16\xb3\x14\x4b\x59\x6e\x00\x20\x78\x4f\x26\x65\x78\xf4\x6b\xd5\x4b\x0e\x8e\xea\x19\xab\xc4\x62\xb6\xb5\xc7\xca\x2f\xec\xda\xd4\xa4\x93\xcd\x0a\x7a\x51\xab\x96\xf0\xd7\xde\xab\xdc\x28\xfa\xb3\xcc\xbb\x38\x47\x48\x73\x86\x8c\x2a\xfe\x83\x19\x43\x5a\x07\xde\x0a\x0b\x8a\x7c\x31\xc7\x13\x00\xf8\x4f\x99\x65\xe9\x7b\x8f\xdd\xcf\x3d\x76\x20\xa4\x7b\x63\x4e\x72\x74\x65\x9b\x5c\x37\x3e\x2c\xb7\xb1\x2f\xbb\x31\xc8\xa7\xa6\x49\x75\x70\xed\xf6\x8a\x78\xc5\x6c\xcf\x8b\x45\xad\xd2\x9b\xce\x01\xb9\xad\xe2\x94\x19\xe7\x34\x41\x82\xdb\x16\x2d\xb2\x04\xee\x17\x00\xe0\xcf\x60\x69\xd2\xae\x1c\x73\x2f\xb9\x97\xdc\xd7\x95\x53\xf8\x3d\xda\xae\xf5\x75\xbe\x79\x98\x45\xe3\x84\xdc\x91\x81\x55\xd5\xdf\xf5\xa3\x7c\xef\x97\x17\x6b\x2c\x3c\xd9\x85\xff\x54\xc3\x9c\x9d\x0c\x3f\x64\x3d\x33\x5e\x66\x6b\xc5\x3b\x2d\x7e\x4b\xfb\xf8\x18\x00\xf0\x98\xec\x35\x69\xac\xbe\xe7\x15\xa5\xc9\x87\xbb\x42\x4a\x8f\xee\xbb\xd1\xaa\x2f\x5a\xb9\x73\xa8\xa1\x3d\xef\x45\xe0\xa1\x6a\x8d\x41\xed\x5b\x5d\xbe\x59\x17\xe4\x79\xa0\xd0\xa8\x7e\xec\x6c\x67\xc8\x56\xac\xb6\x1d\x9d\xed\x27\x49\xb5\x74\x96\xa6\x0a\x9c\x00\x80\xb7\x92\x9d\x9a\xb6\xba\x2f\xa7\xea\x6c\xb2\x43\xe7\xf7\x8a\x5d\xfb\xf2\x5a\xd7\x95\x3c\xdd\xa9\x6a\x88\x28\xdc\x15\xb8\xaa\x7a\xa9\xb1\xc7\x57\x5a\xf6\x5f\x8e\x9b\x67\x74\xe1\x0a\x0d\xd5\x79\x81\x61\xbe\xf2\xb0\xad\xbb\xfa\xb6\x74\x83\x65\x9c\xd4\x52\xa0\x04\x00\xee\x2d\x76\xd6\xe7\x7f\xc8\x6a\xf0\xf7\xe3\x09\x48\x0c\x64\x7f\x79\x2c\x92\x09\xcd\xec\x33\x43\x0a\x21\x97\x6a\x1f\xe4\x32\x14\xa3\xdb\x82\x3a\xc2\x73\x59\x56\x68\x18\x5c\x73\xd8\x1a\x35\x20\xfe\xa1\x4d\xe8\x5b\xe4\xed\xd2\x0a\x6c\x13\x5a\x30\x7e\x32\x36\x88\xad\xf9\xf4\x19\x36\xa1\x05\x8f\x26\xc0\x57\xd1\x83\x97\xa6\xc0\xdf\xd0\x45\xbd\x8e\xc8\x52\xe4\x53\xd5\x61\xe4\x00\xf2\x5a\xab\x45\x06\xd0\x4d\xcc\x18\x74\x04\xca\x3d\x04\xa1\x51\xe8\xa5\xed\xdf\xd0\x4e\x6c\xce\x52\x47\xcc\x05\x83\xad\x3a\xb1\x76\xac\xe4\xe3\x41\x78\x26\x63\xe7\x83\x4e\x38\x9c\xb8\x70\xe1\x23\x0c\x12\x31\x3d\x73\xe0\x63\xf8\x55\x93\x18\x19\x83\xa3\x9a\x8f\xc8\x0e\x3c\x93\x2c\x47\x2a\x71\x46\xca\x5d\x74\x0a\x8e\x6f\x8f\x41\x19\x38\xbc\xc4\x84\xfe\xc5\x33\xad\xd2\xb1\x5c\xdc\xfd\xcd\x1b\xc8\x91\x87\xdc\x3d\x09\xed\xe7\xf2\xce\x92\x90\x9e\x23\xee\xdc\x00\xbd\x67\xe7\x57\xb8\xc0\xfe\xac\x73\xea\x2f\xb0\x9c\xb5\x8c\x31\x1e\x7e\xc3\x2c\x3b\x58\x8a\x1c\x66\x8e\xdd\x16\x89\x7c\x21\xc3\x17\x3f\x40\x39\x0c\xa9\x95\x0d\xe6\x4b\x24\xbf\x9c\x0d\x3a\xc9\xf6\xdf\x62\x81\x59\x92\x77\x43\x19\xe0\x49\x71\x7a\x9b\x18\x9a\x24\x1a\x56\x3a\x08\xed\x17\x14\x29\xdf\x40\x7d\xfc\x14\x3c\x0a\xf6\xe0\x2d\x39\x10\x0e\x77\x71\x9e\x6c\x8d\x40\x22\xd9\xf4\xc5\xeb\x90\x3f\xcc\x3b\x96\x1f\xd1\x41\x46\xdf\x53\x21\x3d\x49\xe7\x79\x7d\x25\xbd\x51\xb3\xe8\x84\x11\x34\x57\x8f\x6e\x31\x03\x03\x94\x23\x8b\x99\xa0\x5a\x3e\x56\xfe\x13\xfc\x27\xb5\x47\x3b\x21\x9a\x78\x6e\xf2\x54\xd8\x5a\x68\xbd\xe5\x00\xdc\xc7\xbb\xb5\xa8\x11\x39\xca\xd9\x68\xf9\x14\x0d\x60\x3a\x3c\x3c\x40\xf3\x29\x3b\x75\x19\xa2\xa9\x8b\x3b\x06\x46\xd0\x5e\x15\xd4\x35\x0c\xd0\x7d\x8d\x25\x05\xb9\x74\x63\x8e\x5c\x9a\x06\x4e\xd6\xd2\x61\x05\x68\x50\xaf\x49\xdc\x0e\xf9\xcb\x2f\x84\xcc\x80\xfe\x4a\x66\x2e\xfc\x0b\xf7\x0a\xc6\x58\x3e\x43\x2a\xd8\x1e\xf7\xae\x52\x33\x5b\x1f\x5f\xb0\xa6\x5e\x6c\xac\xe9\x03\x68\x76\xb5\xb9\xb5\xdf\x69\xa4\x29\x2d\xcf\x92\xf6\xbe\x6c\x81\xd8\x91\x7e\xb8\xb0\x0f\x94\x80\xc3\x8c\x33\x12\x0a\xc0\x3a\xdd\xbc\xa0\x8b\x50\x96\xf2\xfc\xc2\xf5\xf0\x06\xc9\x48\xcb\x1b\xc8\x3a\xae\xdf\x9d\x29\xd4\x7d\x27\xfb\xce\x2a\xa9\x92\xfe\xa6\x6e\x8c\x7a\xaa\x5b\x55\xad\xa3\x79\xb4\x45\x1a\xae\xd0\xb4\x0d\x4f\x85\xd6\xf4\xa9\xd5\xab\x69\x5d\xf4\xca\x32\xcf\x78\x47\x30\x20\x5f\x1e\x78\x03\xfc\xa3\xe3\x79\xd4\x43\x0f\xe5\x4f\x2c\xaf\xc2\xdf\xf9\x13\x6f\xcf\xa2\xce\xb9\xe0\x71\x26\x9f\x1a\x3f\xd4\xd3\x25\xa6\xe6\x0d\xba\x55\x55\xd0\xc6\xf4\xd0\x73\x3e\xd2\xd2\xda\x68\x02\x7f\xda\x8b\x86\xa5\xb4\x11\x74\xc4\x04\xc7\x71\x40\xcb\xe2\xe1\x81\x1c\xb0\xc5\xe0\xe0\x21\x80\x4a\x94\x7c\xcb\x4f\x70\x3f\xbf\xf2\x56\x3a\xe5\xe5\xb5\x82\xd3\x3f\xa8\xeb\x2e\x7c\xed\xbc\x45\xcd\x1c\xfa\x62\xfa\x4d\xbd\x32\x70\x3d\x27\x88\xb6\xa2\x3b\x92\x5f\x45\xab\x6c\xe1\x50\x49\xfa\xaa\xda\x85\x71\xf6\xf4\x9e\xd2\x17\x81\x71\x60\x84\xd1\xd3\x43\x09\x85\xa8\x1a\xad\xfc\xe1\x34\xfe\x8d\x77\xd6\xd8\x59\x30\xf4\x5e\x2b\x56\x0b\x52\xce\x2d\xc6\x44\xa0\xaa\xb3\x14\x13\x82\xa6\x8a\xdd\x18\x0b\xfc\xa6\xfe\x80\x89\xa1\x66\xc6\x34\x4c\x00\xef\x38\xa8\xc2\xd4\xc8\xf0\x6d\x04\x56\x8c\x0c\x2e\x59\x84\x1d\x43\x0d\x56\xa9\xd8\x4f\x6c\xd3\xdb\x89\xd8\x0a\xe4\xf9\xdd\x41\xcc\x15\x19\x38\x1b\x8c\x4d\x41\xf4\x1d\x67\x31\x5b\x24\xa5\x1c\xc3\x6c\x90\x34\xf5\x72\xcc\x03\x39\x43\xec\xc2\xdc\x51\xe7\x83\x16\xd8\x2e\x94\xb7\x6d\x38\x96\x8a\x7e\x5c\xac\xc3\xf2\xb0\x23\x56\x00\x76\x07\x6b\x7a\xcd\x42\xeb\x08\xca\x9d\x54\xd4\x44\x4c\x3a\x33\x0b\xcd\xc5\x2b\xda\xcf\xa1\x15\xb8\x5f\x59\x01\xda\x8a\x03\x2a\x04\x1d\xc2\x47\xe2\x25\xe8\x1d\xdc\xe1\xc0\x11\x6c\x3c\xbe\x64\xeb\x21\x6c\x05\x1e\xb0\xd8\x05\xa3\xe0\xf1\x96\xbd\xd8\x20\xbe\xf2\xf9\x3a\xa4\x87\x2b\xba\xd1\x84\x1c\xe3\xb4\x9e\xbc\x8b\xf4\xb3\x4f\xb7\x9a\x21\xb7\x58\x5f\x4b\xb6\x22\xdf\x58\x2b\x14\x24\x3a\x81\xd9\x88\x59\xa2\xcb\x99\x2b\x92\x17\xa1\xe9\x64\xdd\x96\xbd\x68\x27\x39\x6b\x11\x8c\x8d\x61\xd0\x2c\xe9\x58\x16\x91\xf1\xb8\x02\xbe\x27\x0d\xb9\x2a\x85\x9f\x8b\x7f\x0e\x7e\x84\x7f\x88\xb4\x4d\x74\x64\x9c\xd0\xbf\xc8\x16\x99\xc3\xff\x2b\x33\x21\x01\xbc\x3b\x08\x1f\xa1\x73\x3b\x12\x7f\x22\x27\x39\xac\x90\x74\x74\x0e\x7b\xd5\xc2\x1f\x28\xca\xec\xb6\x04\xd1\x3f\x8c\xa1\x07\x6b\x61\x7b\xed\x88\x4b\xa9\xb0\x6b\xb6\x43\xff\x5a\x78\xbd\x6a\x4a\xc3\x08\x38\x44\xb1\x20\xff\x19\x1c\x27\xf3\x97\x9c\x80\xa5\x92\x2c\xe8\x0b\x7c\x4e\xa4\xdd\xdf\x8b\xcc\x13\x18\x83\x65\x88\x80\x47\x2e\x44\x90\xcf\x1c\x3b\x4b\x16\x8a\x32\x9d\xee\xda\x40\xd6\xa5\x81\xe7\xea\x21\xe7\xa2\xf8\x9e\x6a\x68\x55\x3e\xbd\xe6\x2a\xb4\x2d\x57\x66\x9c\x0c\xa5\xe9\xf5\xa2\x40\xa8\x42\x53\x44\xbf\x06\x7d\x51\x09\x12\xc6\xc1\xe1\xf2\xf5\x41\x91\xf0\x09\x71\x87\xc7\x53\x64\x0d\xff\xaa\x65\x25\x72\x8b\xed\x71\x53\x0d\xee\x6b\x19\x79\x3a\x01\x4c\x6b\x18\xd5\x59\x09\xe2\x35\x36\x55\xe3\xc1\xdc\x4a\xeb\x1c\x01\x38\x58\xf2\x45\x30\x0c\x1a\x5d\xd0\x44\xbd\x01\x45\xe5\xae\x88\x8b\x87\x06\xb5\x99\x81\x36\xf0\x1a\xe5\x56\x8f\xd5\x70\xaf\xb8\xc3\xb2\x0e\x39\xc4\x5d\x7a\xed\x23\xb8\xe4\x78\xf6\xc9\x57\xa0\x4b\xdf\x89\xf6\x8d\xa0\x73\xe7\xed\x8a\x63\xe0\x86\x96\x13\xba\x68\xf0\x50\x3d\xca\x1b\x01\x9a\x4c\xff\x28\x93\xa0\x11\xa5\x73\x63\xde\x40\x91\x79\xed\x9b\xe7\x40\x43\xda\xa7\xee\xb5\xf0\x5e\x39\x61\x59\x8b\xcc\xe2\x7d\xbc\x36\x1a\x1c\x75\xf6\xf3\x89\x7f\xe0\xc8\x93\x5d\x6d\x11\xe0\xf0\xfe\xe8\xf2\x1b\xa0\x7d\xd7\x59\x2d\x09\xae\x6b\xf9\xce\x5d\x01\x22\x75\xff\x65\xed\x03\x2f\x57\x46\xc4\xec\x86\x9c\x8a\xec\x37\x5d\x80\xd8\x39\xa9\xee\x1c\xd8\x49\x69\x6f\x79\x0a\x7e\xc5\xe7\x5c\x8d\xa5\xdf\xbc\x12\x75\x62\x17\xfd\xe6\xb9\x6b\xad\x26\xfa\xcd\x53\xd3\xcb\x3d\xe8\xaf\xfa\x6d\x34\x0f\xc0\x71\x9d\x27\x38\x85\xa0\x6f\xf3\xec\xcc\xfb\xa0\xb8\xfa\x77\xf4\x07\xf0\x62\xc9\xd7\x4d\xa5\x90\x4b\x2e\xcd\x5d\x08\x9d\x51\xad\xb7\x9a\x06\x67\xf3\x1b\x9f\xe7\x33\xb2\xe8\x45\x37\xc7\x33\xa6\xd3\x9f\x9c\x7c\x4f\x9c\x03\x47\xb7\xfc\x21\x14\xa0\x73\x89\x2b\x11\x0d\xd2\x15\x61\xc4\x02\xc8\x09\xbd\x8c\x7f\x87\xde\x24\x5d\xc5\x4f\xc1\x2d\x5b\xbc\x70\x0d\x22\x5d\xc4\xc7\x29\x28\xc7\x52\x85\x1f\xc1\x82\x9e\xdd\x26\x5e\x20\x76\x37\xdc\x88\x7c\xc4\xea\xe4\x4a\x62\x17\xfc\xad\x65\x19\x31\x17\xbe\x5f\x1c\x8d\x7f\x87\xdf\xca\x35\xf8\x79\x24\x10\x9d\x89\x17\x20\xbd\x49\x21\xb8\x00\xf5\x0e\x69\xc5\x93\xd1\xb6\x85\x5f\xf1\x70\x2c\xcc\xd2\x15\x0f\xc3\xea\x9f\x42\x44\x34\x5e\x77\x7d\x38\xe1\x84\x87\x9d\x70\xc4\xef\xe3\x16\xcd\x9b\xf0\x3e\x2c\xaf\x48\x8c\xab\x31\x48\x76\x0b\xcf\xc2\x38\x48\x06\xbe\x03\x6b\x4d\x3c\x89\x6f\xc4\x6e\x85\x2c\xc4\x97\xe1\x63\x16\xf2\x70\x37\x7c\xb3\xc5\x67\x7c\x15\xbe\xfc\x61\x1c\x8e\x73\x0a\x2e\x27\xe3\x1b\xd8\xaf\xfa\x7f\xe2\xd3\xd8\x63\x1a\x0a\xb0\x37\xac\xed\x05\xbb\xb1\x1b\xcc\x2a\xc9\x2f\xac\x97\xe9\x0d\x7d\xc4\xea\xc8\x0b\xfb\x45\x58\x2d\xb9\x2b\x78\x2e\xd6\xc1\xb8\xe5\xf1\x14\xeb\x63\xec\xb2\x68\xc2\x5e\x10\x87\xee\xfd\xc2\x3a\x25\x2b\x2e\xc4\x60\x0c\xf1\xe8\xbe\x65\x58\x98\xb0\xb7\xce\x03\x73\x11\x90\x79\x8b\xb1\x09\xfc\x1d\xe2\x05\x18\xc0\x0b\x00\x8f\xa2\xbf\xb9\xab\x13\xc2\x31\x73\x8e\x7d\xd0\x56\x6c\x0e\xeb\xad\x07\x88\x79\x33\x55\x16\xe7\xb0\xa3\x8c\xbe\xdb\x7d\xe8\xf7\xec\x1b\x67\x0f\xa0\xa7\xd4\x13\xbb\x8b\xd1\x52\xe5\xcc\xea\x0b\x28\x22\x0f\xcc\x9d\x84\x46\x4a\x41\xe1\x0e\x34\x4c\x3c\x40\x7b\x8a\x46\x8a\x86\xc7\xcf\x45\x8f\x0a\x5c\x02\x61\x54\xcc\x5b\xe8\x31\x15\xad\x61\xbf\xb7\x78\x87\x7e\x60\xda\x5e\x37\xa0\xd6\xc5\xe7\x4f\x35\x20\x8f\x0a\xc7\x76\xcc\x44\x5a\xf3\x7c\x2b\x6b\x11\xb1\x81\xaa\xdf\x84\x64\xe8\x0c\xbc\xfb\x08\x25\xfb\x38\xe5\x02\xc2\x55\x9e\x8f\x05\x91\x22\x59\xd5\xe6\x6d\xc8\x69\x71\x88\x3b\x89\x7c\xe7\x2b\x2d\x6d\xd1\xcd\x6c\xdb\x2b\x73\x90\xa3\x4d\xb3\x8f\x43\xc8\xea\xba\x88\x56\x1b\x64\x72\x95\xa4\xec\x0d\xfc\xa2\xbc\x59\xd3\x0f\x9f\x2f\x6e\xe5\xe8\xe1\xeb\xf9\x79\x99\xd7\xe0\x4f\x86\x2d\xd1\xd7\x11\x6b\x4d\xcb\xa6\xe9\x88\xbf\x62\xc0\xed\x3e\x02\x89\xe3\x2d\x5d\x90\x1b\xdc\x49\x17\x73\x10\x8f\x81\xc4\x01\x73\xf8\x43\xcf\xe5\xa6\x21\xb8\xad\xc3\xb6\xa4\x06\x16\x35\x7b\xa8\xcb\xe0\xac\x3a\x73\x56\x25\x0c\x56\xb6\x66\xd8\xc3\xaa\x12\xcb\x7d\x07\x60\x93\xf1\x7a\xc0\x2c\xf8\x8a\xd6\xdb\x6d\x27\x62\x23\x9f\x68\xe9\x8a\x70\x79\x83\x17\x3a\x91\x09\xa7\xeb\xfa\xe7\xc2\x97\x8e\xd7\x37\xbe\x80\xb3\xfb\xb8\xc5\x43\x70\x7c\xa7\xad\xea\x02\x1c\xd8\x7c\x98\xf9\x08\x0e\xaa\x65\xa4\x1f\x86\xe3\x2b\xdc\xa3\xae\xc2\x19\x85\xae\x1b\x8f\xc3\x72\x7d\x9d\x9b\x0b\x7c\x57\x51\x64\xb9\x01\x09\xe5\xef\xba\x30\x13\xfe\x70\x69\xc2\x31\x06\x5c\x7d\xa6\xb3\x71\x3d\x7c\xe8\xc4\xa2\xe2\x99\xf0\xd2\xbe\x50\xd5\x62\x78\x62\x87\x0b\x33\x14\x36\x6f\x6c\x4c\x7b\x0f\xdb\x57\xf5\x46\x65\xc2\xb3\x8b\x7f\x6c\xd4\xc3\x2b\x0c\x75\x6e\xee\x30\x47\x79\xdc\x52\x06\xff\xe1\xb3\xee\x38\x72\x7e\xd3\x5c\xce\x1e\xe5\x6c\xa1\xf1\xba\x65\x6c\x06\xed\x62\x75\x12\xeb\x3b\xdd\xd1\x10\xcd\x3a\x42\x57\x08\x52\x98\x97\xc1\x40\xea\x59\xa6\x17\x34\x3b\xf6\x39\xa9\x82\xad\x37\xaf\x63\xbc\x41\xac\xdd\xea\x18\xc1\xa8\xaf\x79\x22\x31\x88\xb9\xdd\xde\xc6\xe1\x40\xf2\x33\x7a\xf6\x3d\xa8\xb0\xeb\x12\x7b\x16\x54\x5f\xa5\x67\x69\xa0\x9e\x1c\x19\x6b\x2a\xf4\x96\x5f\xcb\x24\xe1\x38\xea\x02\xf2\x23\xfc\x29\x36\x8c\x8c\x45\x24\x9b\x9a\x19\x67\x51\x6f\xb7\x15\x0c\x2f\x6c\x94\xb9\x39\xd1\x81\x89\x6f\xd1\x39\xd3\x30\x9b\xd3\xdd\xec\x34\xf4\x6e\xd7\x78\x56\x17\xda\x6c\xba\xcd\xf2\x44\x09\xfd\x23\x66\x0b\x9a\xc6\x9f\xc0\xf4\x40\x0d\x14\x2d\x59\x8e\x3e\x8e\xb9\x4d\xce\xc6\xdc\x37\xf9\x30\x0c\x18\xe1\xfa\x88\x31\x01\xfb\x34\xee\x29\x61\xc4\x27\x5c\x7b\xc5\x9e\xc8\x1e\x77\xb2\x99\x45\xb2\x0e\xb6\x47\x32\xcf\x32\xdb\x2a\xf2\x99\x51\x4c\x7b\xdd\x70\xf2\x2d\xa9\xe1\x52\xc9\x74\xd2\x27\x6b\x3d\xe3\x07\xe3\x73\x74\x1d\x43\xc6\xd0\x04\x84\x31\xe6\x30\xfc\x5c\xf7\x10\x25\xc4\xe7\x71\x43\x44\x00\xb1\xfa\x72\x23\x2b\x53\x14\x30\xf8\x9b\x79\x59\xb8\xa1\xa5\x99\xb9\x4a\xe0\x56\xb6\x99\xec\xe2\x4f\xcc\xfe\x42\x6e\xe2\x8d\x64\xd7\x31\xae\x70\xed\x33\x8e\x33\x92\x39\xde\xfb\x04\xc4\x6f\xf6\x86\x8d\x6c\x42\xc6\xf2\x73\xf9\x41\xcc\x62\xce\x1d\xf7\x0a\x1f\x62\x70\x2f\x64\x33\x3f\xab\x38\xfd\x13\x98\x61\x8a\x4f\x4d\xab\xc9\x76\xf9\xaa\x92\x89\xa4\xab\x54\xa6\xfa\xcb\x30\x89\xdf\x31\x7f\x32\x7c\x45\xfb\xd3\x77\x10\xb7\x05\x97\xa2\xf6\x13\x87\xf9\x6e\x1b\x7a\x09\x33\x6e\xa2\x8b\x02\xd7\xb2\x53\xcd\xcd\xf0\x2d\xe4\xad\x33\xa5\x4c\xf3\x82\xb3\x3d\x79\x24\x35\x2f\xba\xee\x35\xe3\x89\xe1\x59\xa1\x25\x63\xa7\x7e\xb3\x62\x13\x71\x4d\x53\xcc\xd0\x10\x47\xd4\xe3\x8e\x06\x13\x93\x14\xa1\x91\x37\xf0\x12\x29\xdd\xbf\x11\x5f\x2b\x8a\x73\x99\x87\xdd\xe5\x7d\x33\xdf\x8b\x69\x59\xe7\x4e\x81\x64\x69\x5d\x51\xe7\x51\xd2\xac\x7a\x6a\x8d\x25\x63\x57\x45\x4d\x5e\x14\xd1\x5f\x3a\x5c\x7a\x9e\xf0\x2b\x5c\x87\x47\xe1\x77\x8c\x94\xd4\x08\x9c\xa9\x4f\xdf\xe3\x87\xcf\xcc\x5e\xb6\x9e\x8f\x75\xca\x8d\x0b\xb8\x58\x8c\x28\xcf\x3c\x19\x9b\xc3\xa9\x3a\xfe\x8b\x4c\xee\xdd\xdf\x3e\x97\x51\xd3\x39\xcd\x54\x4c\xfc\x69\xa9\xc8\x5d\x4c\x24\x37\x0c\x13\x5f\xc2\x9f\x54\xcf\x47\xb9\x38\x54\xee\x7c\xa8\x15\x9f\x55\x78\x2d\xfc\x19\xd6\x94\x6b\xb5\x8e\x8b\xed\xcc\xbe\xe8\xfc\x13\xfd\x27\x73\x32\x3f\x82\x9e\xe5\x05\x0d\x7e\x24\x37\x9f\x08\x6d\x73\x65\x88\x8e\x55\x56\xd6\x12\x57\xbb\xae\x18\xb6\x10\x6b\x5b\x5b\xc4\xa3\xf0\xd6\x86\x5d\xc8\x29\x7c\x73\xd5\xc0\xa1\xf1\xd8\x8b\xd2\xb3\xe1\x7b\x30\x24\x7f\xdd\xba\x39\x98\x8d\xce\xc3\xf9\x0c\x7a\x5c\x5e\x68\x2e\x44\x55\xbc\x9b\x83\x73\xc9\x05\x67\xf7\xb5\x26\x30\x12\x4f\xa6\x56\xbc\x27\xca\xfa\xd7\xe5\xe4\x13\x96\x5d\xbd\xa2\x43\x38\xd6\xf2\x12\x59\x8d\x8f\xae\xbb\x90\xa2\xc6\xf2\x2a\xd7\xed\xfe\x85\xb9\x17\x7e\xf3\xfb\x80\x0e\xe4\xd8\x3a\x0f\xa1\xe9\x8a\x2e\xf3\xcb\xa8\x0f\xdf\xe2\xfc\x44\xf1\x2e\xaa\x43\xdf\x3e\xd1\x2c\x2a\xde\xe0\x24\xf8\x4e\xbd\x5d\xf8\x92\xff\x87\x16\xa4\x38\xc9\x37\xa3\xdd\x61\x9c\xe0\x7e\xa7\x17\x1e\x9d\xcb\x79\x0e\x4a\x22\x57\xb0\x2f\x42\xa2\xf5\xf9\xac\x6a\xb8\xd8\x79\x3f\x93\x81\xfc\x18\x73\x89\x4c\xc5\xcc\xce\xed\x11\x9d\x01\x63\x7a\xf3\x84\x75\x20\x56\x9f\x20\xc8\x05\x8d\x85\x5e\xfc\x52\xf0\x82\xc2\x81\x57\x07\xcd\x62\xb8\x71\xeb\xa0\x82\x23\x3a\x8e\x09\xde\xb0\xa7\x85\x5d\x04\x7f\x5b\x3f\x97\x25\x47\xda\x9d\x87\x33\x8f\xa2\x0d\x63\xb8\xe4\x41\x6c\xe7\x59\x9d\x68\x23\xd2\xd3\x73\x53\xe8\x8f\x18\xeb\x0c\x82\x0d\x08\xbb\x00\xe4\x6f\x45\x8e\xca\xb3\x78\x91\x08\x83\x90\x72\xe3\x91\xc1\x23\x96\x9c\x44\x74\xf6\x1e\x5f\xf6\x41\x94\xb3\xae\x87\x95\x80\x7e\x9b\xdf\xcb\x0c\xc4\xd4\x63\xb2\xc8\x10\xec\xdc\x50\xb7\x30\x89\x19\xd6\xb5\x53\x40\x25\x2f\xd4\x1c\xe0\x93\xe4\xc6\x3c\x3e\x2f\x87\x71\x41\xda\xcb\x6d\x66\xa4\xe2\x93\x38\x83\x8c\xe5\x87\x4f\xb1\x2f\x32\xac\x22\xdc\x59\x4f\x89\xeb\x7e\x6f\x99\xef\x88\xe2\xf9\xa1\xe4\x23\x42\x30\x26\x8b\xf1\x11\xff\x72\xa2\x49\x70\x4c\x00\xb6\x37\xf2\xaf\xf1\xf9\x55\xe6\xbc\xd7\x3c\x49\x6e\x1a\xf7\x2f\x57\x27\x7e\xc5\xb5\xe6\x34\xa1\x08\xc7\x9d\xfd\xe9\x50\x16\xdb\x9f\xed\x1d\x3e\x93\xb5\x8b\x75\xc0\xcf\x8b\x19\xc3\x54\xcc\x1f\x4e\xee\x21\x6b\xc7\x94\x30\x52\x19\xab\x06\xbe\x08\x36\x2a\x22\x5b\x17\xf2\x43\x65\x4f\x2b\x2e\xf3\xe2\xa5\x07\x72\xd2\xb9\x29\xe2\x27\xa2\xb9\x1c\x54\x94\x02\x7f\x60\xe7\x08\x27\xa5\xcc\x67\x75\xf0\xeb\x76\x9b\x33\x87\x78\x4b\xd7\x92\xe4\x55\x4e\xd1\xbc\x66\xc6\x15\xd6\x8b\x31\x17\x89\x77\x24\xbb\x6f\x3d\x3f\x3f\x6f\x52\xe3\x5d\x5e\x81\xe1\x72\x69\x2b\xb7\x46\xcf\xd3\x1a\x39\x35\xda\xf9\xfc\x3c\x76\x87\xba\x0b\x6c\x65\xdd\x56\xee\x3b\xe0\xc7\xfc\x23\x7b\x12\xa6\x61\x5a\x49\xd6\xf8\xc2\xa4\xad\x30\x69\xde\x4a\xc6\x4c\xde\x96\xb1\x96\x84\x0f\x2b\xb1\x7b\x37\xdf\xbd\x7a\x7a\xdd\x57\x9e\x67\xc5\xeb\xa2\x6f\xdc\xd5\xa5\xb5\xd9\x93\x39\x8b\x8b\x76\x71\x83\xd8\xcb\xf2\xfe\xa3\xe9\x59\x3b\x0d\x51\x49\xc9\x4c\x9a\xb6\x7c\xe7\x6c\x52\xa0\xaa\xf5\x49\x61\x68\x65\x29\x73\xeb\x08\x83\xf0\xcc\x58\x67\xbc\x9b\xe3\xd1\x71\x8e\x3f\xbe\xd3\xb6\x26\x87\xfb\xb3\xd5\xb5\xa0\x86\xf3\xae\x71\xbc\xf2\x03\xfb\x49\x4d\x27\x7b\x0b\xeb\x49\xe5\x72\xca\x00\xf3\x57\x89\x60\xff\x09\xa6\x4d\xbe\x2a\xb4\x8f\x74\xc9\x71\x59\x13\xc5\xf0\x56\xef\x9a\x6b\x47\xac\x91\xda\x8e\x5d\x8c\xc7\x70\x5b\xda\xef\xf2\xde\x1f\x1b\xaa\x36\x71\xef\x76\x53\xf2\x07\x38\xe7\xda\xde\x2b\x27\xb0\x8f\x35\xb9\xb0\x40\x56\x4f\xad\x23\x05\x60\x9e\xaf\x78\xb9\x7f\x3a\xf9\xac\x78\x67\xe8\x12\xc6\x67\xe3\xb2\xd5\x9f\x19\x80\x46\x35\xe7\x35\x31\x52\x26\x18\xbb\x15\x9f\xcb\xf3\x6b\x77\xe0\x9d\x3b\x59\x5c\xf5\x8e\xdb\xde\xff\x2f\x7f\x34\xa7\xa4\x67\x96\x22\x8a\xad\x6e\xfb\xc4\xbc\xca\x12\x34\x82\x59\x29\x4c\x59\x75\x6f\x82\x86\xcc\x2f\xd3\x6c\x3f\xcd\x28\xcf\x3f\xbe\xba\x99\xa8\xd3\x1d\x9a\xf3\x18\xaf\x97\xeb\xc6\x2a\xb0\x73\x3c\x7a\xef\x4f\x95\x1b\xc5\xa9\x71\x81\xc2\x44\x29\x29\x1d\x2b\x9f\x42\x75\xd2\x74\x4a\x73\xa8\xb5\x3c\xb6\xc4\x89\x16\x4e\xc7\x44\x1a\xba\x47\xd2\x33\xa1\x19\xe8\xbc\x73\x04\x3f\x01\x5a\xb4\x46\xc0\xad\x83\x77\xcc\xee\x67\x3f\x45\x8e\x8f\xfc\xc5\xf2\x44\x6f\xf4\x3a\x2b\x4f\xd2\xd7\x34\xc4\x29\xb6\xd3\xa1\x92\x60\xd9\x00\x7d\x40\x33\x51\xba\x0d\x9c\xcc\x7d\x24\xbe\x09\x42\xb4\xb7\xa2\x48\x68\x62\x52\x82\xe0\x3c\x34\xb8\x83\xc3\xf7\x81\x99\x6b\x1c\xb9\xd9\xc8\x9e\xd9\x20\xfb\x2a\x7a\x74\xe4\x7d\x96\x3b\x36\xab\x27\x58\x99\x0c\x83\xf5\x72\xf9\x77\x38\xbd\x98\x2b\x4b\x83\xf9\xd9\xb1\xd2\x11\xb0\x82\xbb\x51\x2c\x85\x3b\x69\x91\xa2\x69\x88\x75\xe2\x7d\x81\x02\xe1\xed\x98\xce\x1f\x87\x9a\xad\x3e\xc5\x4d\x45\x05\xb3\x03\xd9\xf5\xd8\xe6\x91\x57\x59\x53\x30\x65\xd7\x2c\x45\x37\xa3\xbf\x56\x29\x0f\x67\x24\x17\xf6\x4b\xaf\x13\xbf\x55\xdd\x92\x43\x44\x19\xfb\xbc\xd8\x8c\x48\xa1\x9a\x0b\x85\xc4\xd6\xfd\x5d\x02\x4b\x62\x53\xe8\x1c\x9e\x8c\x58\xbc\xda\x86\xf3\x87\x70\x72\x7a\xcf\x0e\x26\x16\x8e\xbc\xc9\x6c\xc3\x2b\xdb\xf5\x0a\x4f\x5e\x5d\x35\x28\xab\xe2\xbe\xcc\x6f\x92\x7a\x73\xad\x15\xaf\xc5\xe7\x38\xeb\x58\x5e\xa2\xfd\x6c\x22\xab\x42\xf0\x8d\xf5\x24\x41\xc9\x67\xb0\x42\xb7\x2f\xe2\x99\x31\x8b\x56\xe1\x9c\x34\xf2\xab\x53\x3f\x6b\x80\x0c\x18\xe5\xc2\xf4\x24\x3e\xb7\xba\xcb\x19\xb2\x8d\x26\x47\x99\xad\x74\xb8\x71\x50\x52\x28\xae\x93\xbb\x8a\xbd\x45\xa1\x64\x85\xf0\xbc\xe0\x6f\xe6\x56\x41\x32\xff\x72\xfc\x51\xde\x0f\x5e\xd1\x36\x2f\x6e\x1a\x37\x78\xe5\x53\xf6\x43\xf6\x3b\x27\x39\x6b\x11\xeb\xe8\x28\x16\x99\x4b\x7a\x37\x7e\x92\x7d\x32\xac\x2c\xdf\x2c\x85\xf4\xfe\x39\x8f\x24\x96\xda\x55\x12\x95\x48\x96\x3d\x89\x88\x16\xce\x50\x3e\x48\x0f\xe0\xd7\xcb\xbb\x62\x1b\x79\xfe\x52\x72\xcb\x7b\x4e\xb7\x78\xc2\x8a\x4f\x6c\x17\x01\xdd\xc9\x99\x09\x71\xab\x46\xf5\x32\x9e\xb3\x46\xd4\x7d\x91\x55\x57\x28\x4b\x62\xa4\x4b\x4a\xf3\x74\x21\xe2\xda\xa2\x06\xd1\x62\xd1\xdc\xfc\x52\xcc\x4b\x90\x97\x8b\x1d\xdd\xc6\xf7\xd4\x6f\x88\xfe\xcd\x1d\xcc\xbe\x1f\xa2\xe1\xf8\x2a\xdd\xbd\x5f\xb3\x2a\xa4\x5e\x8e\x05\xe4\x2f\xc1\xa7\x51\x17\x19\xc9\x6c\x53\xcd\x71\x99\xa4\xe5\x56\xd1\x1e\xc9\xf7\xc6\x65\x9a\xc5\xe2\x94\xda\x64\xc1\x6c\xe1\x03\x53\x32\xb2\x56\x10\x51\xe6\x95\x4a\xf0\x1e\x16\x3e\xde\x17\xcb\x4d\x36\x6e\x0a\x5e\xc5\x7e\xa4\xf3\xf1\xfa\x8f\x15\xa2\xbc\xe2\x68\x41\xea\x25\xe3\x46\xdd\x61\x98\x71\x67\x54\xdf\x91\x81\xdd\xf3\x0a\x41\xc9\x7f\xed\xce\xd9\xdb\xc4\x5b\x9a\xbe\xf3\x37\x0a\xfb\xea\x38\xf0\x01\x81\x97\xe9\xe6\xe1\x0e\x5e\x4b\xe9\xef\xa8\x7a\xae\x57\xc1\xa9\xa0\x72\x76\xb5\x61\xaa\x57\x06\x6b\xba\xfa\x83\xc3\x35\x32\x4e\x1a\x3b\xea\x3d\x71\x9c\xab\xaf\x76\x94\xc5\xf6\x97\x14\xf4\x49\x8e\xf5\xc4\xaa\xf5\xe2\x05\xed\xf7\x78\x72\xa1\xb6\x79\x0c\xd4\x25\x18\x5d\xfb\xe6\xf0\x2c\x1e\x5a\xa9\x8a\x72\xe3\x7c\x2e\xbe\x11\xb4\x86\x9d\x64\x64\x78\xb9\x32\xcf\x69\x6a\x1c\x06\xc9\x89\xb2\xf8\xd1\x6e\xc4\x21\xee\xcd\xca\xfa\xbc\xff\xb2\x8c\x79\x91\xb9\x04\xc5\x49\xb9\x32\x67\x25\x45\xc7\xf1\xd1\xfe\xa0\x7a\xd2\xa3\xb3\xab\xa9\xef\x0e\x76\xaa\x42\x69\x97\xf6\x94\xc8\x6f\xd2\x6f\x6d\x82\xa5\x2b\xa1\xe1\x9e\xa3\x45\x69\xf0\x26\xbb\x41\x3e\x0f\x39\x6f\x66\xc6\xe9\x42\xcf\x55\xce\xc9\xcb\xa0\xd1\x8c\x67\x72\xe7\xd0\xfa\x15\x35\xfa\xe7\xf4\xe1\xec\x5e\x6d\x2d\x3d\x89\xf6\x2c\xfb\x30\xfd\xd9\xc1\x2d\x2a\x1b\x50\xbc\x67\xbd\xbc\x0c\x0a\xdf\x34\x5b\x3a\x05\x5e\xb1\xb4\x4f\xb4\x1b\x59\x62\xa7\xe3\x53\xd0\xf8\x61\x9f\x39\x0d\xd8\xe8\x0a\x4e\xde\x64\x88\x6a\xf4\x34\x0c\x41\x6c\x85\xad\x5e\x05\xc9\xd8\xcb\xb5\x09\x50\x0b\xed\x50\xf6\x3c\x18\x38\x70\x47\x79\x1d\x4e\x8b\xb8\x27\x3f\x0c\xff\x0b\x38\x27\x79\x88\xe8\x96\x12\x22\x77\x74\x93\x1d\xc8\xdf\x8e\xcd\x1b\xf6\x8b\xa3\xc4\x52\xca\xed\x8d\x3b\x89\x5d\x86\xdb\x06\x07\xc2\x4a\x76\x4d\xf7\x07\x6f\x67\x8d\xd2\x5c\xc4\x59\xd4\x70\x75\x36\x9e\x98\xfc\x58\x19\x8c\xa7\x44\x8c\x96\x3d\xc1\xd9\x01\xb3\x24\xfb\x71\xcd\x52\x4b\x61\x1b\x5e\x6f\x17\xc6\x7b\x86\xbf\x31\xf3\xe4\x2c\xc4\xb3\x4a\xee\xe4\xde\xe3\xe8\xf5\x0f\x73\x4a\xd9\x7f\xa5\x73\x74\x30\x3b\x8c\x64\x6b\x02\x59\x0d\x94\x71\x6a\x0b\x96\x63\x52\x9f\xa2\x9f\x59\x17\x3e\x45\x16\xc7\x0c\xde\x18\x2d\xbe\x43\x5e\x5a\xa2\x10\x2e\x22\xc3\xec\x96\xf2\x62\x18\xf7\xcd\x48\x76\x19\x51\x52\xd4\x95\xcb\x15\xe3\xba\xb1\x39\xab\x44\x90\x98\xa9\x33\x13\xc6\x32\x26\x66\x9f\x10\x6c\xcc\xec\x53\xb1\xf8\x9e\x89\x79\x8a\x35\xbc\xb5\xbb\x1d\xa5\xf7\xb8\x21\x1b\x72\xc5\xdb\x38\x5e\x4b\x66\x09\x72\xd9\x53\xed\x1c\xb9\xa7\x98\xf7\xcd\x5e\xb2\x2d\x19\xb7\x0a\xd6\xe7\xda\x6a\x19\xd9\x05\xfa\x8e\xec\x9b\x42\x4f\x6d\x96\x7a\x1a\xf6\x29\x7b\x81\x72\x69\xfa\x1d\xe5\x0d\x79\x50\xc2\x27\xb9\x40\x4a\x09\x6b\x92\xba\x88\x65\xfe\x22\x91\x4e\x48\x59\x9c\xc0\x7f\xc2\x5f\x65\xfb\x1f\xd7\x8a\x73\x65\xf8\x5a\x56\x08\x93\x63\x6c\x30\x34\x15\x77\xaa\x82\xf4\x31\x85\x4b\xf8\x93\xb4\x76\x79\x6a\xe4\x93\xba\xc7\x70\x21\x6d\xb4\x32\x46\xf7\x27\x3e\x50\x3e\x5e\xe3\xb2\x73\xbd\xa4\x52\xe5\xb9\x3e\x59\x34\x4d\xf6\x75\x91\x98\x1f\x2b\xc6\x6c\x31\x0e\x9b\xdf\x3f\x3c\x95\xd9\xc3\x36\x33\x5c\x32\x98\xea\x9e\x28\x62\xf5\x5e\xd5\x6a\xee\x2c\xcd\xed\xca\xd9\xf0\x74\x35\x5c\xca\x3f\xb2\x59\x39\xa5\x70\x28\xb6\x56\xd6\x6a\xfc\x14\x7a\x4b\x12\xa4\xff\x6f\x9d\xb7\xb0\x31\x3b\x65\x61\x25\xef\xa7\xbc\xd8\x76\x34\xc7\x41\x44\x0c\xe7\x33\xb7\x71\x02\x0c\xd3\x0d\xd2\x16\xa1\x5c\xad\x77\x6c\xf8\xc0\xd9\xa8\xe9\xa9\x9d\x03\x05\xab\xa3\x4c\xce\xa9\x1c\xc5\xfb\xd2\x1f\x31\x7f\x64\xc2\xc2\xa2\x50\x1f\xc9\x74\xe3\x28\xbf\x66\x21\xa2\xfd\xb1\x30\x98\x77\x4c\x29\x9c\x71\x87\xfd\x44\xdc\x38\xbc\x94\x39\x81\xd3\x97\x43\x18\x8e\x76\x52\x64\x6f\xf4\x66\xad\x06\xb6\x4c\xa3\x6f\xe4\x82\x46\xf5\xd2\x5a\xaf\xc3\x2f\x15\xdd\x95\x65\x31\x47\x65\xdb\x4b\x1e\x6e\x1f\x14\x5f\xc9\x1f\xf4\xdb\x25\x5c\x9a\xe3\xbc\x70\x3c\x2f\x53\x3d\x73\xc6\x65\xb6\x4c\x92\x3b\xfc\x31\xd9\xc2\x05\xd4\xab\xab\xe8\x59\x83\x82\xff\x2a\xe8\x94\x20\xfc\x72\x29\x85\x72\x3a\xcb\xb2\x28\x94\x7a\x20\x19\xcb\x9f\x4e\xf3\x88\xdc\x6c\x18\xa4\x5b\x07\x9f\xd7\x6d\x00\xe7\xaf\x16\xa8\x69\x50\xb2\xcb\x6e\xf9\x61\xf8\x84\xf5\x5d\xf1\x0a\x74\x0b\x00\xf0\x1d\xb1\xd9\xaa\x9b\x55\xd6\xb4\x50\x01\x5e\x61\x4b\xcb\xc7\x91\xd2\x59\xb4\xef\x99\xdd\x45\xa3\xe8\xf1\xc9\x4b\xf3\xae\xd1\x3f\x47\x0e\x37\xf0\xc1\xd2\x60\x99\x6e\x02\x84\xad\x0e\x53\x6f\x85\x41\x97\x25\xf2\xad\x88\xc4\x7a\x48\x3c\x0f\x3d\x0e\x00\xfc\x89\xd8\x26\xd5\x11\x53\x1d\x34\x4c\x30\xa3\xbc\x1b\xb2\xc3\x67\x95\x0c\x40\x41\x99\x89\x85\x4d\x10\x2b\xe9\x61\x9e\x18\x7a\xb4\xa7\xd5\xb0\x11\x8e\x0f\xde\xae\xbd\x80\x8c\x58\xed\xa0\x9e\x8e\xb4\xbb\x8c\x97\x3b\xa1\x6c\xeb\x5e\xd1\x3f\xec\x08\x00\xf0\x5e\x63\x39\xca\x58\xd3\x78\x5c\xc4\x77\x29\xb7\xc5\xa3\xb0\x4d\x25\xf3\x70\xdb\x0c\x7d\xa1\x1d\xf6\x33\xc9\xcd\xf8\x0d\xfb\xb2\xc7\x3a\xa7\x0e\x9f\x1c\x74\x42\xeb\x8b\x07\xad\x6a\x52\x29\x70\x64\xc1\x69\x59\x09\xde\x62\xdd\x22\x12\x11\x63\x01\x80\x07\xe3\x52\xf9\xb9\x4a\x23\x7b\x1d\xb7\xa7\xac\x98\x35\x80\xfc\x2c\xae\x67\x2d\x4e\xa7\x16\x18\x98\x2d\x89\x9e\xc6\x23\xcc\xa0\x88\x35\x39\x0b\xc8\x7f\x41\x93\x35\xad\xe4\xb1\x55\x5e\xaa\x11\x64\xda\x02\x8e\x6c\x22\xe9\x60\xdd\x2b\xfc\xc1\x38\x0f\x00\xdc\x27\x44\xa5\xcc\xad\x32\x50\x08\x71\x36\x94\xf9\x0a\xca\xe0\xa6\xe2\x75\xfc\xa2\xb4\xf0\x02\x07\x5e\xff\xfe\xd5\xb9\x2f\xb8\x2f\xc3\xe3\xf5\xf9\xdc\x79\x81\xd1\x9a\x85\x9c\x03\x2b\x5b\x95\x47\xd9\xfc\x05\x01\x52\x2a\xcb\x68\x7d\x5b\xb8\x9b\xa9\x03\x00\xee\x5a\x46\x9f\xe4\x70\x45\x93\x9a\xc1\xd2\x96\x9a\x54\x66\xd0\xb8\xa2\x0a\x45\xd6\x91\xa1\x7c\xaa\x6c\x28\xfe\x72\xee\x62\xe9\xdc\xdd\xf3\x75\x8f\xc4\xd9\x9b\x23\xb2\x53\x85\xff\x56\x7c\x52\x98\x04\x5e\xce\x57\x25\x75\xbc\x50\xeb\x21\x81\x84\xb3\x12\xd8\xca\x39\xc4\x0c\x10\x89\x2b\xd2\xf2\x05\xe4\x95\xd2\xcd\x46\x07\x3a\xb5\xc8\x37\xe7\x69\xea\xa6\xbc\x3f\xba\xa8\xb8\x43\x86\x8a\xec\xab\x61\x8f\x75\xbb\x55\x09\x9b\x36\xa8\xef\xcb\x6f\xac\xb0\x51\xd8\x4a\xc7\x38\x6f\x90\x38\x88\xc6\x59\x97\xf0\xbf\xf1\xfa\x80\x2a\xf6\x29\x56\xb6\x10\xa8\x58\x60\xda\xca\xf0\x29\x35\x2f\x0f\xa6\x0e\x14\xbe\x2d\x59\x76\xa8\x3d\xaf\xa4\xe0\x4b\xec\x30\x43\xa0\x31\x77\xa7\x56\xfb\x26\x67\x4d\xc0\x3c\x75\xaa\xa6\xda\xdb\x5d\x5e\xa4\x3c\x3d\xdf\x28\x2e\x96\x16\x59\x47\xf3\x09\xe1\x74\xe0\x15\x3b\x84\x5d\x2b\x98\x53\x31\xb1\x2e\x90\xc8\x2c\x79\x57\x3d\x82\x0a\x14\x0e\x55\xa8\x0e\x8d\xcb\xc3\x4a\x87\xc7\xc4\x18\x66\x14\x86\xec\x1c\xad\x6d\x35\x82\x1b\xcb\xd5\x4b\xf5\x29\x5e\x43\xf2\xc4\xec\xe1\xf3\xf7\x89\xe3\xe5\x41\xd6\x5b\xf9\xbe\x22\xfb\x61\x13\xd9\x63\x38\xd3\xf9\xb1\xe5\x9f\x9b\x54\x78\x4f\xc9\x50\xbd\x35\x25\xbc\xd0\x50\xbd\x3f\x25\x23\x6f\x73\x85\x24\xfa\x5e\xce\xdd\x12\xd6\x0e\x95\x36\xb3\x20\x64\x63\xa0\xea\x85\xe1\xb4\x17\x43\x6e\xad\x79\x3a\x7f\xa9\xd8\x4a\x51\x64\x1d\xc1\x7b\x26\x7a\x3a\x6c\x0b\xab\x8a\x13\xc4\x18\xde\x9e\x42\x79\x4d\x2b\x6a\xe6\x51\xc3\x52\x65\xf5\x26\x6a\x67\xfc\xa9\xea\x46\x5a\x50\x78\x4a\x85\x8c\x3e\x36\x98\x52\xe2\x47\xff\xec\x8b\xe4\x57\x43\x96\x8b\xcd\x72\x3a\xe0\xdd\x8e\xd3\xb2\x11\xa4\x7b\x3c\x24\x7b\x89\x59\x03\x80\x70\x37\xd6\x48\x9c\x68\x37\xa3\x7b\xd2\x8e\x36\xbb\xd0\x29\xa9\x09\xf5\xbb\xe8\x4d\xf1\x79\xd5\x89\xe0\xe4\xf0\xf5\x15\x81\x60\x6e\xf0\xf6\x12\x00\xda\xed\x1b\x9d\x9f\x0e\xaf\x5c\xf4\x3a\x47\x80\xf8\x3b\x8e\xca\x0e\x47\xe3\xc6\x33\x64\x67\xb0\xa3\x00\x20\xf4\xc1\x06\x09\x66\x9b\x0e\x32\xd0\x3c\x9b\x86\xa0\xb6\x54\xf7\xba\xdf\xd0\xa5\xf8\xc3\xd5\x53\x60\xb3\xf0\xa9\xe5\xbf\xe1\x7d\xc1\x0b\x8a\x9b\xe0\x67\xbe\x3e\xf9\x2e\x88\x72\xd1\x95\x9c\x2d\xe8\x5e\x87\x9f\xd9\x8e\x98\xf7\x78\xbe\xcc\x80\xfd\x01\x00\xe1\x24\xdc\x1c\x37\xb5\xfe\xc0\x9b\xa8\x68\x93\x33\x9e\x7e\x58\x59\x17\x8e\xbb\xc5\xbd\xae\x3a\x82\x5b\xee\x2e\x2f\x8f\xc0\x27\x07\x0d\x15\x4f\xc4\x7d\x7d\x3e\xe4\x71\x71\xde\xa2\x32\x7d\x27\x7e\xc3\xe1\xa1\x5a\x4d\xb8\x8f\xaf\x94\x4d\x27\x92\x01\x40\x20\xc2\x9f\x63\xed\xad\xfb\x58\x6f\x29\xea\x46\x39\x2b\xe9\x50\x5d\xed\x00\xf3\x7e\xdc\x72\xd3\x0d\xe6\xe1\xdd\x33\xca\x7a\x98\x93\x83\xb6\x15\x65\x91\x37\x7c\x64\xc6\x57\x64\xdd\xa2\x83\xfa\xe9\x24\xcb\xe1\x82\xea\x1d\x19\x3e\xfe\x82\x34\x93\x1c\x06\x00\xfc\x47\xc4\x5b\xf4\x72\xcb\x6d\x41\x6e\x56\x45\xe3\x18\x7e\x6f\xca\x85\xda\x25\xbc\x1b\xb1\xb8\xc9\x8f\x37\x6e\x17\xb7\x6c\x2e\x37\x30\xf0\x4a\xe1\x35\x4e\x8e\xcf\x42\x63\x20\xfb\xe7\x22\x57\x5d\x2a\x7b\xb3\x43\x8f\xca\x97\x25\x1b\xff\x47\xd2\xcf\xd4\x02\x00\xdf\x95\xf1\x12\xc9\x69\x09\x56\xd6\x65\x92\x0d\xd1\x8a\x85\x07\x5b\x6a\xa8\xb2\xaa\x98\x94\xca\x2c\xa9\x5b\x18\xbb\x34\x48\xdc\xba\xf9\x5b\xc1\x57\xd1\x8e\x35\xac\xdc\xfd\x82\x37\x0b\x7b\xb4\x5c\x7e\xb2\x43\x9e\x32\x82\x7b\x76\xc2\x4a\xf1\x3d\xf6\x0b\x00\xe0\xad\x64\x6e\x83\x43\x9b\xf3\x72\x17\x64\x84\xd6\x9f\xca\x99\x72\x20\xaf\xfa\xb5\xf6\x5b\xf4\xf6\x8a\x6b\xd9\xd5\x3b\xe9\x25\xb9\xaa\xb4\xcd\x96\x05\x1b\x15\x6b\x57\x0f\x1a\x1a\xa4\x7f\x17\x7a\x69\xae\x88\x85\x0e\x71\x8a\x52\xc1\xe7\x09\x5b\xc5\x6e\xbc\x91\x00\xc0\x65\xb2\x52\xa1\xe9\xcd\xcb\x4b\x23\xd3\xe7\xd7\xef\x2b\x3a\x99\x4c\xaf\xa6\x17\x58\xee\x5b\x53\xb1\xd7\x68\xb3\x83\x5e\x32\x23\xc7\x76\x93\x6b\x7e\xa7\x76\xc6\x6a\x4b\xc3\x3c\xd5\x77\x8f\x1a\xcd\x3a\xb9\xc2\xc1\x4e\x31\x59\xfc\x7d\xc2\x36\x51\x3e\xff\x0d\x00\x70\xbe\xb3\xb7\x82\xc2\xa6\xbf\x95\x0f\xd3\x74\xf5\xce\x65\xaf\x93\xde\x57\xaf\x2f\xbe\x14\xd5\x57\xe1\x54\x20\xd9\x31\xaa\xf8\x86\x71\x45\xc0\x89\x7c\xaa\xfe\xda\xaa\xee\x9c\xfb\x9a\x00\x0f\x5a\xf6\x57\xe5\x21\x87\x11\xf2\x13\xd2\x9d\x13\x76\x8b\x76\x0b\xba\x00\x80\x53\xcb\xd6\x81\x13\x9a\x7a\x6b\x8e\xa5\x39\xd5\xbd\x32\xd1\x92\x90\xea\x11\xe5\x96\x51\xe1\xe5\xb7\x8b\x05\xa1\x95\xc5\xfc\xfc\xe7\x01\x48\xfe\x9c\xdc\x45\xab\x78\x39\x5c\xdd\x3a\x8f\xf0\x6c\xbd\xea\xb7\xc3\x48\x79\xb2\xec\xc8\x04\x8a\xf0\xa7\x70\x2f\x00\x70\xb6\xb3\x5b\xe8\xeb\x7a\x1d\xa8\xe7\x8e\x4e\xeb\x1c\x4e\x73\x4c\x0c\x6d\xb9\x43\xcb\x8a\xbc\xdf\x20\xa4\xbd\xdf\x3e\xbc\xc6\x8c\x9e\xbf\x41\x5d\xe1\x07\xb2\x56\x6c\x29\x5e\x08\x69\x5d\x4d\xc6\x3a\xf8\xae\xdd\x35\xed\x53\xd4\xd7\xc2\xa4\x28\xc7\xd2\x00\x40\x14\x8a\xfd\xa6\x3b\xf6\x74\x82\x66\x47\x7e\x76\x14\x83\x6e\x89\xde\x2d\x0c\x30\x22\xf2\x64\xc3\x4a\xb0\x78\xdb\xab\xea\x16\xc8\x69\x03\xa3\xfc\x27\x74\x65\x85\x4f\xd1\x1b\xb8\xde\xb5\xc4\x08\x21\xad\x76\x57\xb4\xed\xe8\x55\x8b\x5e\x05\x89\xf5\x00\x80\xc8\x1b\x1f\x45\xfb\xd6\x13\x01\x87\x1d\xb9\xd6\xb1\x01\x8e\x4c\x9c\xda\x32\x0f\x8e\x8b\x2c\xab\x7f\x0c\xa3\xdb\x2e\x54\x27\xc0\x67\x37\x1c\x2c\xaf\x40\xb6\xad\x70\x2d\xca\x43\x7e\xba\x1a\x8c\x5e\x68\x9f\xdd\x15\x2d\x82\x19\x2c\xce\x29\xb6\xe2\xeb\x00\x40\x34\x0a\xdf\x40\xdb\xd8\xdd\x46\x38\x1d\x59\xd3\x5e\x80\x5f\xdc\xaf\x6c\xc6\x70\x46\x64\x60\xbd\x17\xbe\x67\x1b\xbb\xaa\x05\xdf\xb3\xc1\xa5\xec\x37\x4e\x7a\xff\x2a\xfc\x88\x9f\x76\x95\xe4\xea\x08\x5b\xbb\x8b\x9a\xc7\x04\xcd\xe2\xb7\xbc\x9b\xd0\x02\x80\x90\x42\xd8\x50\xe5\xdd\xe3\xd9\xf3\x53\xf9\x6d\xdf\x59\xda\x84\x47\x4d\x57\x59\xe3\xf6\x9c\xae\x13\x31\xa5\xdb\x5c\xaa\x26\x30\x97\xf9\xdf\x2b\xdb\x4e\x7e\xf5\xee\x2f\xdc\x40\x5e\x70\x4d\x35\xbc\x20\x2b\xed\xce\x6a\x96\x90\x1c\x4b\x17\xf9\x78\x72\x26\x00\x08\xfa\x18\xd6\x94\x9e\x2e\xba\x20\xf7\xf0\xe9\xb6\x08\x7e\x73\x82\x67\x93\x0b\xef\xdc\x9e\x80\xda\x07\xdc\x5f\x5b\x4f\x9b\x12\xb9\x6b\xfc\xa5\xa5\x85\x1c\xb1\x37\xbf\x40\xc9\x7e\xe7\x1a\x64\x58\xca\x0e\xb2\x1b\xca\xa6\xb3\x72\x2d\x23\x65\xbb\x98\xf9\x00\x20\x18\x46\x8e\xca\xfa\xd8\x79\x42\x39\xf7\xd0\x8f\xd6\x6c\x79\x45\x7c\x42\x63\x84\x6c\x61\x44\x5a\xcd\x5f\x49\xfd\x96\xdf\x95\xe9\xe2\xa0\xf5\x8f\x4b\x2a\x84\x6f\xbd\x2d\xf2\xb5\x02\x95\xeb\xd8\x1c\x6f\xbe\xb3\xdd\x2d\x35\xc2\x2d\xb5\x6c\x97\xc6\xb0\xcf\x01\x00\x7f\x18\x73\x6f\xe6\xed\xce\xe9\x06\x9b\x43\xa3\x5b\xde\xe8\x47\xc4\xc9\x1a\x6a\x35\xcf\xc3\xc5\x35\xfe\xea\xba\x2d\xb3\x2a\x4c\x4a\xe1\xfa\xf9\xc5\x0f\xe5\xa9\x5e\xb4\xbc\xf3\xd2\x8d\x2e\x95\xfa\x23\xa2\x1f\x76\x6d\xaa\x76\x01\xdb\xf2\xa9\x24\x9f\xdb\x0a\x00\xbc\x75\xac\x84\x8c\x37\x1d\xa2\xe2\xb2\x94\x59\x2d\xfb\x0b\x27\xc5\x36\x34\xcc\xc9\x4b\xdc\xdd\x5e\x5d\x6b\x60\x87\x84\x57\x58\xe9\xca\xd6\xa1\xc5\xeb\xb2\x87\x96\x7f\xcf\x5b\xa4\xbc\xec\x12\xae\x3b\x2d\xcb\xb7\xab\x51\x59\x8b\xd7\x58\x8d\x97\x8c\xe6\xa7\x00\x00\xb7\x86\x3d\x2f\x83\xec\xd8\x52\x7e\xe5\x60\x5b\xcb\x9c\x92\x87\xb1\x3b\xea\x1f\x16\xde\xde\xbd\xa7\x3a\x39\xaf\x2a\x04\x28\xef\x35\x40\xeb\x96\x15\x7d\xd0\x6d\x58\x7e\xcc\x78\x5f\xfd\xca\x65\xb9\x8e\xaa\x08\xb2\x33\x29\x8f\x49\x28\x56\xb3\xc5\xed\x82\xd9\x00\xc0\x4d\x60\xc7\x67\xcc\xe9\x18\x53\x15\x79\x30\xa6\xf9\x56\x85\x43\xcc\xf7\x7a\x65\xc9\xe9\xdd\x96\xd5\xd6\x85\xf1\xc1\xed\xe5\xfb\x8d\x4f\xd7\x0d\x2b\x52\xe6\xc4\x2e\x2f\x34\xe2\x9a\x3a\x17\x17\xdd\x64\x65\xb5\x5d\x87\x32\x46\x7a\xc4\x2a\x44\x1c\x2e\xa8\x04\x00\xee\x08\x76\x56\xfa\xac\x81\x4b\xb4\xe7\xc9\xef\x7b\xb5\xf4\x29\xd1\x91\x9d\x6b\xe9\x5b\xc2\xe6\xb6\xd4\xd0\xab\x02\xf5\xf5\x37\x40\x7f\x5f\x7d\x55\x27\x34\x7d\xe9\xf3\x32\x5f\x78\xe6\x7c\xcb\x82\x8d\xc8\x4e\x9b\xb5\xfa\x7f\x68\xc5\xb8\x83\x2a\x77\xac\x16\x00\xc4\xf3\x70\xe7\xf4\xa9\x03\x19\x90\x55\xf2\xf7\xde\xe5\xd0\x94\xe8\xed\x1d\x8f\xa1\xd9\x61\xf6\x2d\xe1\xd0\xf6\x40\x65\x3d\x07\x6a\xf6\x55\x54\x1d\x85\x23\x96\x3e\x2c\xfd\x8e\x2c\x98\x6f\x55\x60\x85\x3a\xd9\xac\xd5\x9f\xc7\x3c\xc7\x31\x54\xc3\xb1\xaf\x00\x20\x1e\x8d\xbb\xa5\x8f\x1e\x98\x8c\x84\x26\xbf\xe8\xb9\x8a\x2c\x8d\xf6\xef\x60\x20\xb6\x61\x56\xcd\xbf\x91\x19\x81\xdc\x7a\x77\x24\xd4\x97\x5f\x35\x1d\x19\x5c\x7a\xa7\xb4\x10\x8d\x9f\x6f\x99\x7f\x1c\x9b\x65\xb3\x56\x2f\xc6\xde\x8f\x13\x29\x4f\xe2\x47\x00\x40\x74\x11\x8f\x4b\x4b\xef\xcf\x20\xee\x26\x1f\xe8\x59\x48\xa4\xef\xbb\xdc\x7e\x95\xb0\xda\x79\xaa\x79\x03\x7e\x21\x30\xb2\x2e\x0b\xef\xf1\x4d\x30\x45\xe1\xb7\x96\x1e\x2b\x79\x4e\x4c\x9b\x3f\x2e\xdf\x89\x88\xb7\x59\xa7\x7b\x41\xb4\x8e\x6b\x57\xba\x11\x2d\x00\x20\xf2\x22\x3c\x8e\x7e\x3f\xd6\xcc\xee\x48\x7a\xda\x7d\x94\x6d\xbd\x6f\x5b\xfb\x44\x56\xe6\x4e\x6a\x13\x97\xf9\x34\xd0\xbd\xb6\x8b\x89\xfa\xfa\x55\xe6\x33\x97\x2c\xad\x2e\x71\x61\x0e\x9b\x6f\x96\x17\x4b\xde\xb2\xd9\xaa\x9b\x4f\xd6\x8f\x7b\xaf\x48\x23\x17\xff\xdf\x05\xc3\xe5\xe8\xe2\x63\xe3\x84\xc3\x92\x36\x77\x35\x0b\x86\x47\x9d\x6b\x0b\xe6\x5b\xec\x74\x6a\x3c\xc9\x9b\xb7\xf9\x5f\xed\x30\x6e\xb4\xaf\x7d\xc5\x03\x4e\xe1\x52\x4d\x71\x32\xfb\xf7\xbc\x3f\x46\x2d\x3b\xd2\x26\x41\x1b\xc3\x6a\x30\x77\x96\x57\x31\xcb\x00\x40\x60\x22\x1d\x8f\x9c\xec\xf3\x50\x9a\x27\x9e\xe9\xbc\x24\x67\x47\xf9\xb7\x46\xc9\x86\xef\xe0\x36\x1c\x97\x60\x9b\xa3\xab\x3f\x88\xa7\xf9\xe4\x96\x9f\x15\xb6\x2c\x5d\x5f\x14\x2a\x88\x9d\xf7\x5f\x2e\x87\xf7\xcf\x86\xaf\x09\xe5\x72\xcd\x65\xb2\x12\x76\x3d\x00\xf0\xf3\x99\x09\xa9\x8f\x7a\xa9\x39\xec\xc4\xc9\x9d\x93\x74\xd1\x7b\xeb\x5a\x94\x1a\xef\xd0\x3b\xf5\x6f\xd4\xa3\x36\xd5\x56\x5b\x28\x5e\xfa\x58\x94\x3d\x97\x5d\x59\x72\xa3\x30\x55\xd2\x36\xaf\xdc\x50\x22\x62\xd8\xc8\xb3\xe9\x82\xf9\xe6\x37\xa4\x37\xb8\x14\x00\xe0\x5d\x63\x85\xa5\xfa\xf6\x0c\x14\x61\xfb\x69\x1d\x89\xf9\xd7\xf7\xda\x37\xbf\x30\xce\x0b\xdd\x5c\xbf\x22\x67\xcb\x26\xc7\xaa\xed\x5a\x7c\x8d\xae\xcc\x43\xdd\xba\x44\x50\xd0\xa6\xb8\x3f\x8f\x97\xf3\x4a\x7a\xc5\xc6\xa4\x3e\x2e\xd2\x5a\x4c\x95\x2e\xe1\x7d\x03\x00\x9e\x0f\xeb\xd7\xe1\x6f\x3d\x50\x59\xe8\xfe\x25\x1d\xd3\x8a\x77\x45\xde\x68\x56\x15\x6c\x0b\x1d\x5d\xf7\xd8\xb8\x30\xe0\x81\xe9\x73\x8e\xd5\x9a\x83\xa5\x97\x34\x5f\x96\x1c\x2e\xd8\xa7\x3a\x36\x0f\xcf\x11\xca\x43\x6d\x06\xd5\x87\xc4\xb5\x16\x6b\x24\xf7\xf9\x5a\x00\xe0\xbe\x67\x2f\x3a\xdc\xd4\xe3\x5a\xc9\x4e\xf8\xda\xde\x57\xb6\x31\x32\xaf\xd9\xbb\xe8\xfb\xf6\x4b\x75\x58\xbe\x2e\xa0\xc1\x24\xc8\x5d\xb6\x26\xb8\x34\x59\x77\x6d\xc9\xfe\xfc\xaf\xd9\xbb\xe6\x09\x72\x66\x29\x78\x36\x2f\xd5\xc3\x24\x3c\x0b\x8a\x84\x2e\xb0\x04\x00\xae\x88\xbd\xfa\x85\x04\xd4\x53\xac\x6f\xe6\x81\x0f\x28\xca\x53\x65\xd0\x7c\xaa\x55\xab\x08\x4a\xa5\xc2\x25\x05\x50\x17\xcd\x52\xd1\x0e\x4f\xa4\xbd\xc2\xec\xe0\x4c\xfa\xd3\x64\x47\xf8\x0f\xf8\x7d\x4b\x3c\xa2\x86\x27\x2e\x5a\x87\xfa\x22\xcb\x2d\x9e\x63\x33\xd0\x65\xcf\x4b\xe8\x2f\xe8\x1d\x37\x9a\x41\x3f\xfa\xe3\x93\x37\x41\x25\x38\xab\xe5\x18\xf8\x0c\x0c\x29\xbe\x03\x05\x80\xd9\x8a\x51\x50\x39\xb4\x00\x85\x61\x3b\xe8\x5a\x92\x00\x6e\x82\x45\x21\xa7\x91\x3d\x48\xf0\xc2\x93\xa8\x0d\x3a\xd5\x22\x1b\x33\x43\x0b\x9f\xd5\xd1\x7d\x11\xe4\xfa\x00\xbd\x18\xd9\x79\x72\x38\x68\x86\xec\x6c\x7e\x03\x26\x22\xab\x8a\x27\x83\xe7\x11\x7f\xf9\x76\x68\x35\x22\x40\xee\x40\x1d\xc8\xf3\xc4\xdf\x70\x1c\x1a\x18\xb2\x0e\x99\x8a\x56\x2e\x8c\x47\x1e\x62\x93\x2c\xa2\xd1\xfb\xd8\xc2\xc7\xe5\xb4\x19\x2c\xfb\xab\x33\x69\x4c\x66\xfa\xa0\x82\x3e\x82\x7c\xd0\xf8\x88\x7e\x98\x0c\x2c\x0c\xa7\xff\xc7\x38\x2d\x3d\x03\xc6\x30\x30\x58\x06\x7e\x62\xf8\xee\xbf\x03\xd5\x11\xef\x82\xfd\x61\x0e\xa1\xf2\x38\x83\xc4\x13\x2b\x2c\x5c\x51\x08\xa7\xfc\xf7\x98\x72\x46\xf8\xf5\xe2\x0b\xea\x1e\xc1\x95\x63\x38\xf5\x25\xbf\xae\xde\x93\x96\xc0\x53\xe5\x8f\xa0\xbd\xe2\x0a\xc5\x57\xe8\x18\xa7\x18\x7c\x0d\x2e\x60\xf7\x24\x08\xc1\x9f\xac\xa1\xa0\xed\xd0\x7f\xcc\x1e\x0f\x6f\xf8\x3c\x29\xb6\xb0\x45\x7e\x11\x37\xee\x2e\xcc\xaa\x51\xc9\xce\xa1\x94\x20\xc5\xe3\x9e\x12\xca\x0b\xb9\x4b\x4d\x35\x35\x4d\x4a\xcf\xbd\x44\x1b\x29\xbe\x2a\x7c\x4b\xab\x11\xad\xa5\xef\xa6\x1f\x14\xe4\xc7\xef\x00\x37\xf3\x3e\x05\xd2\xa1\x95\xdc\xd9\xee\xed\xb0\x2f\x7b\x98\xc5\x7c\x84\x46\xae\xbb\x71\x2d\xd3\x54\x58\x3c\xd4\x9d\xe5\x99\xef\xd4\x39\x29\xab\x2f\x57\x6f\xca\xa4\x84\xe9\x9f\xeb\xdf\x50\xbe\x69\x17\xf3\x0f\x51\x4d\x6a\x90\xba\x82\x06\x2a\xf2\x62\x75\xf4\xc3\x52\xe3\xe6\xc5\xe0\x51\x51\xb4\xfb\x38\x88\xc3\xeb\xb3\x58\x02\x5f\x67\x45\x5e\x3d\x90\x51\xd6\xa0\x3b\x11\x9e\x19\x54\x73\xb6\x6d\x72\xe6\x67\xd3\xaa\x72\x53\x96\xa0\xec\xb0\x36\x8e\xb2\xb8\x88\xcb\x75\xa2\x7c\xcc\x13\x66\xf9\x50\xcf\xe6\xec\x8c\xfe\x49\x3b\x9d\x7d\x25\xe0\x05\xfd\x81\xfc\xa7\xdb\x76\x68\x9c\xa8\xc9\xc2\x05\x4e\xe1\xa4\x5e\xd2\x66\xc4\xf7\xcf\x1d\xb8\x92\xf1\xb3\x5b\xd5\x0c\x66\x8a\xdb\x5e\x97\x7a\x65\xcd\x6b\x9a\x90\x3d\x39\xeb\x74\xed\x30\xf6\x48\x8a\xa4\xe2\x78\x46\x24\x35\xb5\x78\xc9\x3e\x9c\xb6\xd7\xe8\xb8\xf1\x1d\x3d\x41\xa3\x72\x3d\x06\x16\xc8\x18\x16\xf3\x60\x5b\xde\xea\x8b\xf2\x0c\xdf\x21\x6a\xff\xf5\x8c\xeb\x83\xcc\x26\x38\x33\xa5\x37\xb9\xc4\x27\xf3\x57\xc7\x38\xb5\x73\x56\x4e\x53\x2a\xcb\x95\x12\x55\x93\x93\xae\xa3\xae\x2e\xdf\x17\xf5\x94\xe6\x58\xc0\xda\xa8\xa1\xdb\xea\xed\x5d\x75\x60\xac\xc2\xc9\x62\x3d\xf4\x90\x77\xf3\xc2\x95\x0c\xfb\x0b\x97\xfa\x6d\x32\xea\x4e\x8b\x1b\xbb\x33\xd7\x1e\x9f\x52\xcc\xce\x3c\xde\xbb\x49\x45\xcf\x8a\x69\x5f\xc8\x14\x50\x66\x34\x5c\x4a\x1f\x4f\xf9\x6c\xfa\x1a\x25\xa1\x9e\x2c\x8e\xdd\x98\x4e\x6b\x33\xcc\x73\x2d\x02\x87\x2b\x83\x2c\x24\x10\x97\x6f\xf5\x78\x14\xfc\x3d\x4b\x76\x25\x17\x19\x43\xb1\x1d\x9c\x86\xd8\x52\x0a\x1b\x0f\x23\x4b\xa8\x0e\x05\x1f\x90\x1d\xd4\x76\x69\x3a\x92\x45\x2b\x80\xfd\x90\x42\x7a\xc5\xfe\x0e\xe4\x1d\x38\x14\x1c\x8f\x6e\x84\xbe\x79\x3c\x43\x1b\x11\x3f\x8b\x48\x6c\x13\xba\xf5\x91\x15\xbc\x87\x6e\x7b\xb9\x0e\xa6\xd1\x77\x0d\xf8\xc2\xd9\xf4\xbc\x06\x3d\xdc\x4e\xbf\x55\x60\x03\x3f\x07\x97\x48\x6a\x90\xe9\xe0\x65\x48\x82\xec\x86\x24\xfb\xc7\x23\x4d\x70\x78\xd0\x29\xd4\x11\xf1\xf0\x88\x42\x35\xe8\x14\xf3\xef\x98\x1f\xda\xf9\xd0\x0a\xea\x83\x8f\x5f\xea\x80\x5e\xc0\xf5\xfd\x31\xf0\x24\xb8\xa7\xbe\x1d\x5e\x03\x77\xe4\x6f\x86\x33\xe0\xab\xe2\xf7\x70\x0d\xe2\x06\x3e\x81\xff\x20\xfa\x04\x2e\x12\x87\x5a\x06\x6d\x45\x6e\xa3\x5c\x0f\x33\x34\x1a\xb3\x34\xbf\x88\xd9\x60\x01\xf7\x47\x83\x3c\xa6\xcf\x85\x99\xe0\x49\xb2\xa6\xf7\x0b\x34\x8a\xf4\xa8\x6d\x84\x36\x30\xca\x8c\x79\x90\x88\xb1\x5a\x94\x06\xdd\x61\x0c\xa3\x57\xc2\x2b\x89\x1b\xf1\x07\xe0\x0e\xa2\x30\x30\x1a\x09\x26\x0e\xb9\x1f\x42\x9e\x13\xee\xe6\x05\x68\x0b\xce\xbf\x5d\x4b\x3f\x24\xf8\x74\x76\x1a\xbd\x8d\xff\xa1\xdb\x12\xb4\xe4\xbd\xa8\x5e\x0e\x6e\xe5\x3e\x32\x50\xc0\x1c\xce\x3b\x41\x19\xf8\x8b\x33\x8b\xe6\x0a\x1d\x66\x6f\x8f\xf3\x81\xcd\x58\x94\xcd\x14\xb8\x94\x29\x70\xfb\x84\x84\x91\x74\xf3\x12\x74\x05\xf1\xec\xfa\x4f\x5a\x9a\x92\x76\xea\x3c\xed\xb8\xfc\x79\xc7\x5e\xba\xbb\x2c\xb0\xf2\x3c\xfd\xa8\xa4\x5a\x1f\x41\xef\x13\xcf\xe4\x5d\x03\x17\x0b\x8b\x28\x45\x60\xa3\x60\x56\xac\x15\x14\xc6\xe3\x6d\xaa\x84\x47\x70\x2e\xbb\x71\xe0\x01\xd6\x5d\xf3\x7e\xa4\x89\x0c\xb9\x7c\x82\x1a\x5c\xb0\xfa\xb8\x03\xb5\xcc\xf8\x5f\xcb\x7d\xda\x58\x03\x58\x56\x44\x8b\xd0\x3d\xd2\xe0\xb4\x36\xcd\x26\x4e\x24\xdd\x4b\x55\x9b\x29\xa2\x0f\xc9\x7f\x44\x1f\x00\xe9\xd2\x99\x01\x04\xb4\x5c\x34\xd2\x6d\x24\x3c\x92\xa7\xb2\x18\x8e\x8c\x61\x45\x5f\x38\x48\x49\xaf\xbb\x7b\xec\x22\xe5\x5c\xf5\x9a\xc6\x37\xd4\x95\x15\x17\x8a\x1f\x53\x95\xa5\x73\x55\x5f\xa9\xbf\x0b\xe3\x59\xd6\x34\xa6\x51\x94\xae\xa2\x3b\xe9\x91\xa8\xf3\xf4\x5b\xd9\xee\x1b\x03\xc1\x52\x39\xe9\x1a\x0d\x91\xa2\x74\x8b\x09\xb0\x8a\x93\x70\xb6\x8d\x32\xbd\xcf\xaa\x37\x92\x92\xd6\x59\x5b\xbf\x9f\x72\xa6\xd5\xbb\x10\xa7\x2e\x68\xe0\x28\xba\xa8\xca\xea\x32\xd2\x9c\x66\x5f\xae\x39\x3a\x48\xeb\x29\x5a\xb4\x77\x2f\xfd\x60\xee\xb6\x0d\xdb\x40\xf7\xec\x5f\x2e\x57\x21\x1b\xd9\x3c\x8b\xc9\xf0\x5a\xde\xec\x33\x15\x59\xef\x4f\x2e\xef\xd9\x4b\x09\xea\xa7\xd6\x25\x51\xf2\xbb\x85\x05\x42\xca\xaf\xb6\x78\xf9\x15\x6a\x62\xc3\x6f\x86\x37\xf5\x45\xf5\xee\xa3\xa3\x68\x82\xb2\x80\xc8\x13\x74\x8f\xfc\x22\xff\x4f\xf4\x67\xba\x0c\x17\x13\x78\x4b\xde\x61\xb1\x18\x1e\xc9\xeb\x38\xfd\x20\xeb\xf4\xb9\xd4\x6e\x0d\x65\xd6\xa9\xe8\xda\x32\xca\xd1\x01\x9b\xfc\x1b\x94\xfe\x6e\x81\x7c\x31\x75\x5e\xab\x89\x30\x52\x8b\xeb\x91\x23\x6c\x9a\x6f\xe5\xc5\xc8\x83\xb4\xeb\x45\x47\xfc\xcf\xd1\x99\x39\x19\x2e\x75\x20\xa2\xb8\x6f\x81\x40\x15\xbc\x77\xf7\x02\x30\x6a\xd6\xe4\xf3\xf1\x58\x58\x56\x69\x6f\x30\xe6\x4d\x59\x59\x3b\x03\x9b\x4d\xe9\xc8\xfd\x8b\xcd\xa0\xc6\x0a\x9f\x62\x16\xb4\x1d\x74\x07\x6c\x2c\x7d\x7f\xbc\x39\x66\x07\xca\x03\xe7\x61\xcb\xa0\xf3\xee\x81\x58\x1c\xb2\xc4\x5c\x81\xb5\xa2\xbb\xef\xae\x47\x5f\xd0\x98\xe7\x32\xd1\x4b\xb4\x33\x3d\x29\xe8\x31\xba\x63\x8d\x37\x5a\x4f\x4f\xcc\x9d\x8d\x36\xd2\x2f\x09\xed\xd0\x26\x10\xa2\xed\x47\x07\xa0\xf5\x71\x49\xe8\x43\xd8\x66\xb3\x0e\xb3\x82\xff\xb9\x0d\x62\x1b\xd0\x61\xe6\x4b\xb1\x1a\xb4\xfb\xce\x6a\x34\x01\xb6\x3e\x4b\xa0\x3b\xe1\x89\xdd\x4c\x74\x2b\xec\x56\xbd\x1b\xf5\x85\x57\x18\xfc\xd0\x60\x38\x4e\x90\x88\x86\xc2\x27\xa9\x55\x28\x05\xf1\x8b\xbd\x8b\xea\x90\x13\x9b\x7e\xa3\x77\xd1\x9d\x6e\x11\x98\x2d\xfa\x75\xdc\x3d\x4c\x85\xf9\xdf\x5c\x88\xd8\x92\xf1\x43\x8f\x91\x25\x8c\xb7\x9d\x36\xc8\x12\x06\xdd\xb4\x17\x09\x66\x0c\xd3\x17\x20\x87\x88\x52\xde\x53\x44\x40\x60\x14\x10\x69\x23\x12\x63\x86\x90\x2f\x44\xe0\x26\x57\x34\x90\x58\xe4\x7a\x1f\xcd\x27\x2c\xc7\xdd\xc4\x16\xe1\xac\x6b\x01\xf0\x42\xfe\xc7\x93\xe6\xb0\x0f\x7f\x7c\xdb\x3e\x38\x92\xe7\x58\x61\x06\xc7\x71\xdd\xb4\x85\x30\xc1\x09\xe6\x7a\xc1\x55\x6c\x69\x96\x13\xfc\x82\x75\x3d\xba\x1a\xf1\x65\x4d\x0d\x38\x8c\x14\x32\x37\xbb\xb2\xd0\xf1\xe4\x4e\xf3\x49\x68\x25\xf1\xe4\x92\x1c\x0a\x57\xc4\x0d\x3c\x83\x0e\xca\x5e\x35\x5f\x83\x72\xa4\x89\xa5\x4d\x50\xb6\xf8\x6e\x76\x0e\x54\x2b\x8a\x66\xd3\xa0\x57\x82\xbf\x19\x95\xb0\x37\x5f\xb9\x8f\x05\xeb\x78\xb6\x1b\xf3\x91\x51\x1c\xa6\xab\x3d\x82\xb3\x6a\xcd\x17\xa0\x2e\xe4\x86\x73\x4c\x70\x62\xde\xe5\xbe\x10\x70\x63\xae\xae\xe1\x28\x08\xe7\x84\x15\x69\x41\xae\xf6\xba\xf2\x2c\x58\x9f\xbd\x9b\x39\x12\xfc\xa9\xbc\x97\xa6\x85\x76\xca\x37\xee\x7d\x05\xf5\x49\x64\x1b\xf8\xb0\xb7\x30\xcf\xa5\x12\xee\xe3\xed\x31\xc7\x10\x3a\x2b\xf4\xb4\x17\x3d\xae\xd6\xbe\x7b\x12\x1d\x32\x95\xd5\x0a\xe9\x35\xe5\x31\xf9\x77\xe9\x67\x8a\xaf\xca\x03\xe8\xbf\x0b\x3c\x89\x3e\x30\x38\x97\x79\xa4\x00\xac\xd5\x19\x22\x43\xa1\xb9\x6a\xba\x7f\x04\x54\x2e\x1f\xe6\x32\x09\x5e\x25\x72\x30\x57\x23\xc3\x38\x01\x27\x8b\x69\x5f\xba\xdf\x75\x54\xd2\xad\xdb\xfb\xab\x2d\xe9\x5e\xcd\x54\xa3\x84\xbe\xb7\xee\xa7\x74\x36\x5d\x5e\xe5\x8f\x9d\xa2\x3f\x2a\xdb\x77\xf8\x11\xb8\xb9\x70\x4e\xc4\x73\xb0\xc9\x40\x59\x1f\x05\x79\x66\xef\x5a\xc0\x85\x2e\x4b\xbb\xcc\x73\xe0\x72\xee\x8f\x13\x12\xda\xe9\xc1\x37\xed\x15\xb4\x17\x7d\xb1\x55\x53\xe8\xa3\x3b\x4b\x73\x8b\xe9\x2e\x2d\x1d\x92\x4d\xf4\xd8\x7a\x26\xfa\x8f\x5e\x5d\x35\xe6\xf0\x22\x70\x62\xa9\x73\xc4\x2e\x90\x9a\xd7\xba\xee\x0f\xf8\x5e\xdb\xbb\x60\x1f\xa4\x94\x6f\x36\x6f\x87\x0f\xf3\x44\xc7\x3b\x68\x05\x67\x80\xb6\xfb\xb4\xf6\x13\xf3\x4d\xbb\x68\x17\x8f\x4d\x31\xbc\xa7\x7d\xec\x3c\x29\x2e\xa2\x3b\xb5\xcc\x42\x0f\xd2\x93\xeb\xec\x0f\xd5\xd0\x8f\x57\x14\x86\xff\x01\x1d\x0a\x29\xeb\xae\x80\x12\x7d\xd3\x82\x58\xc8\x4b\x91\x64\x31\x12\x9e\xc0\x3b\x76\x29\x8e\x79\x29\xe3\xdd\xc0\x21\xe6\xd6\xcc\x9c\xe6\x44\xf2\x78\xd6\x96\x92\xe7\x64\x6c\xd6\x7b\x35\x8f\x1c\x41\x69\x60\xad\x67\x18\xa8\xf5\xe9\xbb\x18\xab\x69\x97\xa3\xe6\x11\xff\x81\x53\x37\xac\x20\xc4\x50\xea\x82\x5a\xc2\x0b\xfe\x3e\x16\x23\xac\xd1\x75\x17\x0f\x30\x43\xa8\x7e\xfd\x22\xf2\x2a\xb5\xba\x89\x47\x86\xd3\x6c\x4b\xac\x19\xff\x68\x98\x6a\x80\x51\x49\x37\x63\x8a\x18\xdb\xe9\xbd\x69\x4d\xc4\x0f\x50\xb7\x57\x4a\xd4\x40\x12\xff\x16\x22\x09\x96\x2f\x70\x21\x66\x23\x7d\x63\x9d\x09\x2b\xb4\xe0\x42\x22\x79\x06\x6c\x38\x56\x42\x46\x83\x0f\x1a\x0b\x19\x2f\x21\xcb\x62\x6f\x46\x2e\xb4\x58\xf9\x8d\xb1\x05\xca\x22\x6f\x10\xbf\xa0\xf7\x69\x93\x88\x1a\x98\xb3\xd7\x9a\x38\x88\xb8\xfa\x2f\x27\x96\x22\xb7\x9d\xaf\xe2\xdf\x51\xd3\x98\x8f\xf8\x07\xcc\xe1\x9c\x35\xa3\x83\x38\xdb\x0b\x33\x62\x08\xb0\xbe\x93\xf8\x43\x2c\x28\x94\x13\x0d\xf8\x75\x05\x83\x48\xc3\x73\x19\x02\xc2\x03\x97\x1d\xf9\x82\x7f\xc4\x55\x91\x0e\xf8\x10\xae\x5d\x4f\xc5\x4d\x78\x89\x73\x12\xce\xc2\x3b\xc7\x0e\xc3\x25\xf8\xde\xd3\xa1\xc4\x7b\xde\xe8\xae\x5f\x04\xc1\x0d\xad\x75\x23\x66\x71\x64\xf9\x61\xf8\x3d\x76\xbf\x4c\x81\x97\xb1\x47\xe3\x8f\xf1\x0c\x56\x6a\xaa\x12\x0f\x60\xde\xde\x63\x81\xcf\x63\x6e\x5e\x37\x80\x5b\x91\x95\xce\xb3\xb1\xcf\x8c\xcf\x63\x7d\xf1\x71\x44\xd3\x89\x47\xf8\x6b\x99\x43\xfb\x37\xdc\x24\xb9\x5d\x75\x12\xdf\x29\x16\x19\x97\xe3\xb6\x22\x4f\x49\x1b\xf6\x4a\xf0\x18\xdb\x8c\x1d\xe3\x57\x1f\x5e\x8d\x15\xf2\xd2\x23\x00\x8c\xc3\x5d\xba\x6e\x1a\x96\xc6\xbe\x3e\xff\x11\x16\xc7\xda\x30\x96\x8d\x31\xc8\xa9\xfd\x7f\xb1\x67\xb9\xde\x2d\x6c\xac\x24\xc7\xb1\x22\x11\xdb\xaf\x03\x72\xe6\x63\x1e\xd9\x9d\xc2\xbf\xd8\x30\x55\x16\xfc\x18\x7d\xa0\xf0\x4c\xf1\x44\xcf\x4a\x6f\xee\x4e\x47\x5b\xc5\x87\xfc\xac\xd0\x32\xc1\xc0\x7c\x1a\x9a\xcf\x3d\x33\xf6\x3f\xf4\x04\xcb\xbc\x97\x8b\xc5\x98\x74\x8d\x1e\xd8\x84\x72\xb8\x94\x8a\xf6\x95\x80\xda\xc3\x28\xaf\x70\x29\x1f\x43\x23\x8d\xd7\xc1\x62\xd4\x2f\x27\xf5\xc0\x5a\xd4\x53\x73\x29\xec\x1a\x3a\x57\x35\xd2\xf7\x19\x3a\x53\xfa\x62\xde\x6d\xd4\x41\x98\x38\xf6\x1d\xba\x85\xfd\xa2\xdb\x0a\x1b\xd6\xfe\xac\xee\x1f\x5a\xd5\xe2\x58\xec\x87\x46\x35\x2c\xcb\x0e\x45\x67\x55\xbf\xe3\xb2\x90\xb7\x15\x30\xed\x32\x72\xa9\xf8\x59\x52\x01\x72\x3c\x7f\xf8\x4e\x26\x52\xaf\x6f\xf6\x79\x84\xd4\xa8\x7e\xcf\xdb\x80\x74\x4a\xae\x8c\xfd\x86\x7c\xe0\x32\xbb\xbc\xd0\x27\x7d\x83\x75\x2e\xa8\xb0\x4b\x5b\x14\x87\x2e\x6b\x5b\xa3\x86\x90\x0f\x8d\x0c\x4e\x1b\xd2\x5e\x23\xa4\x4d\x43\x74\x15\xfb\x13\x7f\x23\xfc\xa2\x07\x3b\xbe\x21\x19\xb9\xd7\x7d\x08\x24\x55\x13\x38\xcf\x1a\x41\x65\x5b\xc7\x4d\x44\x1a\x78\x53\x3a\x0d\xe8\xd0\x89\xe3\xb5\x3c\x34\xa9\x3f\xa0\xb0\x0b\x1d\xd5\x2d\x52\xdd\x46\x5a\xdb\x52\x38\x8e\x08\xbd\x11\xa0\x8a\x90\xed\xd5\xbb\x12\x59\xc8\xaa\xb2\x35\x3b\xd4\xc8\xac\x7c\xc8\x27\x10\x99\xac\x73\x9f\x37\x1e\x99\x2b\x4f\x18\x17\x86\xec\xe4\x85\x1c\x1f\xce\x7f\x99\x61\xd6\xfa\x8d\xf7\x37\xa3\xb3\xf2\x30\x6f\x56\x26\x35\xe7\x02\x77\x67\xd6\x62\xd1\x66\x8e\x98\x62\x05\xbf\x60\xb7\x53\xed\x0e\xbe\x60\x3d\xa1\x6d\xdb\xa5\x65\x4d\xa5\xe7\xf9\x36\x30\xfd\xa1\x71\x73\xd3\xc8\x14\xb8\x7b\xd4\x6b\x46\x3f\x3a\x79\xd0\x96\x9f\x40\x59\xd2\xea\xc4\x13\x51\x4c\x15\xa5\xdc\x1e\xea\x82\x9c\x19\x9c\xaf\xd4\x12\x61\x11\x67\x29\x6d\x3d\xbc\x95\x9d\x42\x9f\x74\x30\x9a\x55\x00\x9a\xed\x9a\xc9\x7c\x0c\x8d\xf1\xf5\x61\x3a\xc1\x8e\x73\xc7\x92\x11\x08\x75\x54\x0d\xa3\x1b\x4d\x19\x70\xe6\x3d\xa2\x93\x2d\xeb\x79\xf6\xf4\xee\xf2\x1b\xdc\x7d\xf4\x7f\xfa\x3d\x1c\x15\xe8\x2b\xf8\xc6\xbe\x0a\x1a\xa1\x3a\xf6\x54\x68\xe1\x81\xcb\xac\xdd\xd0\xad\xb0\x1a\x66\x01\xac\xf6\x79\x46\xbe\x41\x62\xe6\x5c\x25\xdd\xd1\xf0\x51\xd5\x0c\x3d\xfa\xe2\x18\xc8\xbd\x8b\x47\x36\x29\xb8\x6e\xf8\xe4\xb2\xc5\x1c\x08\xbb\xa8\xbd\xcc\x3e\x89\xe5\xf3\x45\x6c\x5b\x8c\x07\x1e\x64\x25\x61\xba\xe4\x26\x66\x13\xd6\xbb\xf3\x0c\x73\x32\xf6\xcc\x67\x35\x79\x04\x9f\x36\x07\x66\x74\xe3\x51\xa3\x8e\x33\x56\xe2\x33\x7a\xb2\xb8\x8e\x9c\x9d\xf5\x9f\x38\x71\xec\xe6\xe2\x7b\xec\x06\xf6\x98\xec\xd3\xec\x51\xac\x68\xee\x59\x56\x34\xf3\x24\xed\x05\xb3\x85\x19\x96\x94\xc9\x9c\x4c\xbe\xdc\x71\x9e\xa4\x90\xf0\x1a\x19\xe3\x16\x39\x6a\x8e\x0f\x63\x09\x83\x39\xda\x8c\x68\x21\x0e\x76\x56\x70\xc2\x25\x4b\x6b\xd3\xd9\x85\xa2\xdf\x85\xd5\xac\x1f\xc2\xe3\xaa\xdb\xac\x6d\x02\x0d\xc7\x8e\x59\xcd\x4f\xa7\xa6\x33\x27\xf2\x0e\x26\xae\x20\xa9\xdc\xa8\xd0\x4b\x8c\xfb\x9c\xf5\xab\x9f\x30\xfc\xd9\x93\x66\x7f\x21\x0a\x99\x3d\xa3\x97\x10\x6e\x8c\x8e\xd6\x1f\x6c\xb5\x5e\x5b\x35\x9d\x75\x4d\xdb\x90\x47\xb0\x9c\xb3\x3b\xe4\xbf\x98\x88\xaa\x8a\x29\x20\x6f\x2a\xf4\x59\x8b\x49\x3f\x99\x32\x61\x1b\xa3\x5a\x42\xdd\x1e\xc9\x98\x2e\xf2\x59\xf5\x96\xc0\xf9\x17\x67\x67\xe3\x4f\xb8\x73\x46\x8b\xf0\x2c\x66\x41\xd3\x7b\xd6\x87\x72\x4a\xc5\x0c\xd6\xfa\x12\xa1\xa1\x81\xa9\x2b\x2c\x94\xc6\x90\x2f\xf3\x8c\x0c\x37\xd2\xdf\xc0\xca\xb0\x60\xd4\xe8\xe2\xe3\xd2\x18\x4e\xd9\x93\xb6\xde\x22\xf8\x0a\xf1\xca\xff\xf0\xcf\x92\xde\xd9\x33\xf0\xbd\x02\xd5\xe8\x01\xec\x15\x3b\xb5\x21\x8e\x55\xdf\x32\xaf\xf4\x16\xf3\x43\x03\x5b\xcf\x61\xae\xaa\xe9\x12\x6f\x21\xd9\x95\xc7\xf1\x95\x8c\x5b\xa5\x85\x69\xfe\x8c\x75\x85\x31\x31\xf7\x88\xba\xdc\x2b\x5b\x38\x84\xbd\xf6\xc9\x8a\x6b\xb8\x48\x29\x71\x22\xb1\x1f\xe2\x4b\xa3\x87\x30\x2e\xe7\x53\x7d\x32\x0b\xec\x12\x95\x3c\x63\x0e\xb4\xe5\xe8\x8a\x98\x53\x9a\x40\x51\x26\x19\x51\x37\x19\x4b\x65\x94\x9a\x32\x8e\x72\x19\x63\x4b\x8b\x63\xbc\x09\x4a\x01\x1a\xf2\x13\xff\x2f\xe7\xee\x8a\x23\xf8\x16\x75\x9f\xd3\x36\xac\x43\xba\x72\xf4\x03\x6c\x33\x17\xad\x2b\x66\xf9\xf5\xcf\x2e\x71\x63\xaa\xba\x3f\x6b\xbf\x90\x4f\xdb\x39\xc2\x73\xa4\x53\x53\x2f\x7a\x91\x91\x58\xdb\x70\xe4\x27\x71\xac\x32\x31\xba\x9b\x98\x57\x5c\x1b\xa2\xc6\xc5\xc6\x98\x15\x6e\xd8\x0f\x8d\xd8\x69\x03\x16\x27\xdb\x38\xc6\x1e\x7d\xc1\xed\x6c\xdd\x29\xab\x4e\x9f\x6b\x9a\x27\x4d\x4a\xff\x6e\x3c\x21\xb1\xcd\xb8\x22\x1f\x25\xba\x9d\x99\x4f\x46\x0b\x73\xb3\x94\x19\xcf\x05\x21\x94\xea\xb8\x27\xbc\x2f\xd4\x2f\x5b\x95\xdc\x3c\x7a\xc8\x8a\x53\x9c\xd5\x60\x9f\xc3\x4b\xd6\x19\x58\x3a\x62\x05\x93\x8b\x7c\x6e\x51\xc9\x36\x65\x2d\xaa\x4c\x95\x8e\xc9\xea\x33\xda\x88\x4f\x52\x12\x65\x71\x22\x3e\xe5\x1b\x63\x50\x18\x4c\xad\xc8\x88\x14\x8c\xa6\xf1\xe2\xf6\xf3\x5a\xe9\xc2\xad\x4e\xdc\x74\x30\x7f\x45\x12\xc7\x1e\x3a\xeb\x50\xc8\x6a\x43\x56\x8e\x98\xce\xc4\x50\xaf\xe6\xd3\xd2\xa7\xb4\xc8\x0a\x93\xa4\x82\x56\x95\x1b\x2f\xce\xa4\xcf\x94\x36\x8a\x96\xd2\x8f\x30\x66\x0b\xbe\xd0\x9f\xa4\x9f\xe0\xb7\x82\xbc\xd8\x87\xbc\x74\x28\x78\x4b\x07\x77\x19\x6c\xbf\xc2\x86\xfd\x06\xfe\xe3\x40\x61\xc9\xd1\x89\x23\x26\x30\xe3\xd0\xb2\x26\x3b\xc9\x23\xb4\xbd\xdc\x56\x3c\x80\x56\xe6\xdc\x13\x69\x50\xad\x64\xab\xf0\x08\xca\xc5\xef\x08\x36\xa2\xb2\x34\x23\x7f\x0a\xda\x13\x73\x97\x7b\x1b\x1b\x11\xf2\x85\x53\x81\x05\x79\x2b\xd8\xa9\x98\xde\xc1\x9f\x35\x13\x1f\x37\x22\x8c\xfc\x85\xdd\xaa\xc7\x25\xae\x2c\x5d\xa9\x99\xe8\x0f\xcb\x41\x77\x5f\x78\x9f\xa9\x17\xc9\x05\x6d\x4c\x6b\x2c\x9a\xaf\x24\x0b\x8e\x86\xf2\x0e\x91\xa1\xd1\x83\x5c\x1f\xd2\x32\x64\x32\x67\x32\xa3\xdf\xeb\x2b\xeb\x1e\x23\xc3\x61\x1c\x53\xc6\x98\x31\x82\x4b\xa6\x13\x53\x6a\x97\x8b\x53\x84\x5f\x8b\x8a\x44\x5b\x84\x96\x9a\xd7\x42\x4f\xc1\x54\xc1\x0d\xc1\x78\xbe\x15\x72\x8f\xf7\x86\x37\xf1\xc8\x70\xee\x59\xee\xb2\x7d\x26\x4e\x09\x27\x3c\x78\x15\x1b\x61\xa7\x78\x65\xb2\x36\xb0\x52\x1d\xc6\x90\xdf\x99\x21\x23\xad\x19\x57\x19\xa9\xa6\x37\xa2\x3a\xcd\xdb\xfc\xf3\x42\x59\xb6\x8f\xea\x97\x00\x54\x11\x3c\x0f\xfe\x56\x45\x29\x44\xf0\x16\xc8\x86\x0e\xbd\xe1\x9a\x4b\x7e\xef\x7d\xce\x7e\x21\xb6\x0b\x7c\xc8\xea\x10\xda\x2d\x67\x33\xb9\xbc\xd7\xb3\x0a\x48\x1f\x0e\x7b\xe4\x5e\x86\x3d\xd3\xaf\xfc\x96\x68\x7d\xf1\xe3\xdc\x21\xa1\x63\x61\xa0\x22\x82\xff\x27\x6f\x88\xdd\xc3\x3b\x9b\x3b\x8a\xbe\x99\x9b\xa7\xf7\x38\xf8\x9a\x43\x6a\x76\x46\x3a\xb3\x13\x54\x5b\x37\x1f\x66\x79\xc9\x27\x2e\x23\xc9\xbf\x62\xd5\x2c\x07\x46\x0b\xbf\x67\x24\x9d\xd0\xb0\x5e\x95\x3e\x17\x7e\x6b\x30\xcf\x79\x29\x18\xaa\xa9\x95\xad\xe1\x17\x98\x96\x31\xbb\x78\x07\xcb\x84\xd4\x64\xee\xf2\xa2\x8e\x03\x9e\x9c\xc9\x79\xa7\x23\x4a\x58\xef\x73\x34\x9b\x5c\x99\x43\x9a\xb1\x9e\x34\x52\xaf\x98\x3e\x53\xc0\xd8\x29\x1a\x18\x49\x10\x1e\x9c\x88\x92\xeb\xc2\x2b\x6d\x93\xf5\x7f\x05\xc5\x4d\x19\xd2\xbd\x7c\xb0\xce\x48\x3e\xe1\xad\xae\x12\x52\x72\xb9\x66\xe5\x1b\x93\x61\xf6\xad\xa2\x0b\x11\x23\x59\x0d\x79\xe3\x02\x8c\x4c\x91\xee\xb2\xe7\x38\x32\x46\xe5\x3c\x33\x8c\x31\x55\x62\x3d\x52\x89\xbf\xe2\xdc\x2d\xfe\x22\xac\xeb\x0e\xd5\x7b\x0a\x90\x76\x50\x52\xc1\x0f\x6e\x8e\x23\x57\xf3\x46\xd6\x7d\xa5\x00\x9c\x63\x55\x9b\x92\xde\xb2\x65\x65\x11\xe1\x22\x56\x5c\xa1\x45\x80\x07\x73\xb5\x61\xe1\xd2\x63\xa4\xa5\xfa\xde\xcc\xf5\x44\x97\x74\xd2\xc8\x53\x38\x9f\x6b\x57\x58\x9a\xf3\x27\x0d\xd2\xbc\xd7\xfd\x48\x3f\x20\x02\xb5\xa3\x33\x02\xf0\xdf\xd9\x63\x33\xe7\x67\x18\x55\x66\x59\x6e\xfb\x49\xf9\x13\x4a\x44\xd8\x4f\x69\x1d\xb5\xda\x3f\x4a\x1c\x43\x77\x59\x84\x09\x3e\x80\xc7\x66\xcc\xe2\x25\xc3\x85\x40\x2a\xc7\x0a\xf9\x5c\xe8\x94\x23\xc9\x3c\xa0\x49\xd1\x65\x67\x99\x0b\xbf\x6a\x6a\xb2\x4a\x71\x58\xdd\x4c\xd9\x9a\x31\x5f\xd9\x44\xb5\xdd\x3f\x45\x9e\x47\x1b\x1f\x96\x2d\xcd\xa4\x3b\xfb\x5b\x88\x17\x81\x31\x8b\x02\x04\x67\xa1\xea\x19\x23\x79\xdb\x10\x2f\x20\x93\xfd\x0f\x5d\x58\x20\xcf\x99\x4d\xa5\x64\xdf\xd1\x2d\xa7\x5e\x14\x26\x6b\x76\xd3\x5c\xb1\x0f\xea\x58\x5a\x6e\x7a\xa9\x32\x96\xbe\x34\x21\x57\xbe\x93\xfe\x2e\x6c\x91\x74\x21\x78\x76\x7d\x9f\xe8\x33\xd4\xb7\x68\xa2\x20\x17\xee\xb7\x79\xc7\x9b\x8f\xfc\x02\xf8\xec\x3b\x68\x76\xfe\x68\xfd\x1e\x24\x4c\x4d\xd5\x1e\x45\xf6\x09\x1c\xb3\xb3\x91\xbd\xe8\x69\x95\x09\x39\x9c\x66\x54\xb4\x20\xd9\xf1\xb5\xb2\x3a\xe4\xf9\xce\x58\x89\x12\xdd\xbe\xde\x55\x94\x84\xf6\x2c\x6c\x16\xd8\x63\x9e\x36\xb7\xb8\x35\xd8\x10\xf0\x98\x9d\x8c\x55\x1a\xb3\x74\x0d\xa4\x4a\xf9\x40\x73\x9a\x0c\xe6\xe5\xa9\xdf\x32\xbe\x23\x14\xd5\x08\x86\xfe\x28\x45\x31\x99\xb1\x23\xae\x5c\x36\x89\xe1\xb1\x83\x10\xff\x61\x4c\x5b\x07\x09\x2f\x12\xbf\x16\x06\xf0\xc5\xc4\x2d\x9b\xe3\xdc\x79\x44\xcf\xb0\xe5\xac\x07\xf8\x03\x83\x99\xce\x83\x9f\x22\x7f\xac\x59\xc5\x6b\xe1\xfc\x56\x87\x73\x3f\xc3\x80\xf2\x10\xd7\xe1\xc8\x22\x39\x9d\x13\x19\x2b\x92\xc2\xec\xa6\x50\xb9\xf8\x20\x7b\x92\xdf\xa0\x70\x15\x6b\xaf\xc7\x5d\xde\x37\xa6\xce\xa6\x8f\xc3\x27\x7b\x86\x15\xb3\xd6\x31\xa6\xea\x12\xb4\x7c\x95\xad\x34\x39\x5b\xa5\xb8\xc3\xd2\xa8\x2a\xe4\x34\xfa\x55\x45\x93\xf4\xc9\xe1\xb5\xb2\x76\xc9\xf6\xe8\x9b\x92\x0e\xd1\xf9\xed\x73\x44\x15\xc2\xb5\x6b\x6b\x05\x34\xbe\xc4\x63\x01\x6f\x19\xb7\xcd\x86\xc7\x1e\x62\xd7\x99\x8d\x66\xa2\xe4\xe9\xec\xc7\xda\x69\xf9\xcb\xc5\x16\xd9\xb3\x72\xff\x91\x49\xaa\xc5\x39\x8d\xd4\xd3\x0a\x4f\x5d\x50\x4a\x82\x6c\x61\xf6\xe5\x7d\xae\x92\x45\xaa\xc8\xad\x75\x22\x07\xf9\x31\x5f\x06\xff\x8d\xe4\x8b\xfb\x1e\x6e\x99\xf0\xb5\xcd\x02\xb6\x0f\x4f\x6d\xe6\x43\xbe\x66\x05\xa9\xbe\x69\x4e\x9b\x1e\x08\xe7\xaa\xaf\x56\x4c\x24\xb8\xca\xc7\xa5\x56\x94\xe1\xf2\xbb\x85\x17\x0f\x74\x48\xcf\xe7\x65\xec\x2d\x15\x0f\xe5\xfc\xd9\x12\x25\x6c\xd6\x6e\xf1\x89\xe5\x33\x54\x5b\xdc\xd2\xb9\x2b\xa5\xdf\xa7\x57\xb3\x2e\x0a\xfd\xcc\xc2\x48\xda\xff\x38\xba\x0b\xb7\x26\x1e\x87\x01\xe0\x27\x16\x60\x8b\xa2\xa2\xd8\x94\xd8\x82\x22\x48\x2a\x21\x08\x08\x4a\x88\x20\x22\xd2\xb9\xbe\xbe\xdd\xba\x37\xd6\xa3\x46\x77\x87\x80\xd8\x89\xdd\xdd\xfe\xec\xee\xfc\xaa\xef\xf3\xbc\x7f\xc9\x47\xa0\xd6\x85\x1b\xdb\xbb\xd8\xd2\x1c\x7d\x5f\x7b\x0c\x7b\x9f\xf6\x68\xf3\x17\x86\xaf\xba\xa7\x21\x36\x6b\x84\xca\x5c\x23\x4b\x04\x14\xba\x8a\x92\xf0\x73\x32\xb4\x34\xdd\xfb\x89\x24\xc4\x70\x7e\xf1\x24\xe1\x6f\xf5\x95\xe9\x1c\x7e\x91\x3c\xdf\x22\x9f\xbb\x4a\x38\x5e\x7b\xda\xa8\xec\x4b\x93\x5c\xd6\x6b\xba\xdf\xb3\xa7\x6a\x8b\x3b\xfc\xe8\x55\x6a\xb2\x25\x32\x93\xaa\xda\xd5\xe0\xb8\x1d\x57\x6c\xae\x1e\x0a\x4f\x91\x2d\x37\x4f\xf7\x16\x8b\xbf\x9b\x3e\xb9\x5e\x16\xd6\x69\x93\xa7\x53\xf9\x6b\x14\x5b\x2d\xea\x38\x97\x84\xd1\x8a\xea\x46\x98\xd2\xc0\x1b\xaa\x3b\x4c\xc5\x61\xa4\xc6\x8a\x96\x5c\xe0\x5a\xb9\x9c\xbe\x31\x75\x7a\xb9\x1f\x23\x31\x36\xb5\x64\x15\x53\x1d\x42\x35\xfc\x66\x7d\xf5\xa8\xd7\x8a\x20\xa9\xd3\x30\xd5\x03\x24\xc0\x26\x49\x3e\x0d\x73\x04\x00\x71\x2e\x1e\xa3\xf0\x6f\x1c\x4f\x5f\xce\x2b\xac\x8b\xa7\x5f\x87\x1d\xaa\x1b\x19\xa2\xfc\x1b\x15\xb7\x98\xfe\xbb\x4e\x96\x7d\x62\xcd\x8b\x9d\x5e\xfc\x1a\x5c\x10\xb2\xdc\x30\x08\x85\x7b\xe0\xda\xad\x70\x99\xe3\x33\x55\x3f\x6a\x6d\x93\x2c\xfb\x81\x95\x03\x80\x78\x2b\x8e\xc8\xaf\x36\xd4\x30\x6f\xf3\x26\xd4\xbe\x67\x45\x43\x27\xab\x83\x59\x37\xf2\x59\x15\x04\x98\xba\x2b\xbf\xac\x1c\x9a\x18\x33\x54\x5c\x0a\xdd\x0f\x7e\x6d\xa0\xc0\x97\x3c\x36\x69\xa7\x20\x0f\x1c\xcf\xa9\x38\xd8\x30\x9b\x54\xd9\x69\x3c\x08\x00\xc4\x2e\xf8\x25\x59\x7f\xfd\x33\x14\xe1\x8e\xaa\x5d\x83\x96\x82\xa7\xab\x4c\xe8\x9e\xbc\x72\xf3\x05\xf4\x7e\x4a\x4f\xe9\x3b\xcc\x31\x66\x8e\xe9\x03\xa6\x0e\xde\xae\x3f\x83\xdb\xad\x79\xa6\x41\xf1\x1a\xc7\x4a\xe5\x6f\xc2\xc3\x26\x57\x16\x4e\x3c\x01\x00\x51\x2b\x71\x5a\xda\x53\xef\xc7\x59\xc6\x01\x6a\xf4\x9c\x09\xac\xae\xca\x8f\xe4\xc3\xdc\x1a\xb3\x0b\x59\xb3\xf3\x56\x69\x28\xc9\xd9\x9a\x64\xda\x4c\x92\x41\x7d\xfa\x65\xa4\x66\x0d\x5d\x7d\x9f\x2c\x76\xcc\x51\x26\x93\xb5\x36\xa4\xb4\x9b\x6c\x05\x00\xd1\x64\xf6\x5b\xf1\xc5\xba\x83\x22\x21\x7b\x47\xcd\x28\xe1\x7b\x66\x4e\x65\x8a\x30\x3e\x87\x5d\xae\x15\x74\x24\xdf\x29\xe9\x12\xd8\x6d\x21\x8d\x7d\xfc\xea\xa0\x61\x3a\x3d\xdf\x7d\xf5\x27\xf5\x06\x5e\xa7\xe3\x0a\xc5\x41\xde\x42\x1b\x93\x74\x12\x17\x06\x00\x61\x3e\xc7\x5a\x34\xac\x6e\xa9\x3a\x1e\x6f\xaf\xce\x28\x5a\x48\x6f\xac\x68\x50\x3e\xc9\x7a\x5e\x76\x49\xa1\xd8\x41\x2d\x7e\x22\xf7\x8d\x0e\x34\x3c\x97\x59\x6c\xf8\xa7\x3d\x21\x39\xb8\xda\xb7\x28\x4f\x1c\xeb\x30\x24\xff\x20\xbc\x66\x63\x92\xf8\x0b\xa6\x03\x80\x40\xc3\x2d\xe3\x7f\xab\x35\x94\xde\x45\x4f\x54\x5d\x2e\x7e\x41\x1b\x56\x31\xc7\x34\x2c\x33\xa9\xcc\x47\xff\x2a\x69\x5c\xf1\x46\xed\x99\xa8\x91\x86\x50\x75\xe7\xfa\x0f\x5a\x67\x15\xee\x9e\xa2\xba\xa1\xb0\x75\xf0\x95\xc7\x48\xb9\x36\x54\x71\xad\x48\x0f\x00\xfc\xf7\xbc\xb7\xbc\x9d\xb5\x31\xf5\x72\x24\xb4\x4a\x5d\xf3\x86\x82\x98\x2f\x54\xad\x4a\x7f\x5d\xfa\xc8\xbc\x6d\x7b\xb7\xe9\x51\x69\x46\xe4\x39\xfd\x7d\x53\x7a\xc0\x13\xcd\x5e\xbd\x87\x9b\x50\x95\xa0\x3e\xbc\x50\x23\xbb\xa6\x1c\x65\xe3\x2a\x76\x91\xdc\x03\x00\x7e\xbe\x60\x04\xb7\xb3\x76\x45\x4b\x01\x5c\x59\x45\x69\x54\x14\x5e\x32\x37\xd5\x09\xd2\x43\x4a\x7b\xab\xb7\x6e\x9f\x65\x6a\xad\x00\x22\x83\xf5\x75\xa5\xaa\x00\xaa\x86\x6d\x7c\xe1\xe6\xa8\xb2\xd7\xbe\x5b\x18\x2a\x53\xa8\x2a\x6c\x6c\x44\xff\x93\xde\x07\x00\xfe\x02\x41\x3e\x77\x76\xad\x75\x47\x15\x3c\xb9\x2a\xb8\x55\x59\xb8\xc1\x8c\x35\x85\xa5\x1d\x2f\x25\xea\xce\x25\xd4\x99\xf2\xaa\x1d\x22\x1e\xe8\x77\x9a\xb7\x06\xcc\xd1\xac\x2a\xf1\x5d\x75\x47\x79\x4a\x7f\x62\xe1\x6c\xd9\x8a\xa2\x6f\x36\x53\x44\x7c\x59\x35\xb0\x96\x77\x48\xd0\x04\x47\xed\x09\xa7\xb2\x29\xda\xae\x2e\x5a\x42\xa6\x73\xfb\x4c\xfa\xd2\xa4\x57\xcd\x39\x8c\x89\x5b\x26\xd6\x17\x31\xe7\x05\x9b\xab\xc5\xac\x1d\x5e\xab\xcc\xeb\xc1\x33\x4b\xe2\x8b\xbb\x60\xaa\xfd\x2f\xdd\x55\x74\xd5\xb8\x45\xaa\x5e\xec\x7f\x00\x20\x35\xe0\xdf\xe0\xe5\xbd\x37\xe9\x2f\x28\xb4\xae\x8d\x0c\x49\xa6\x65\xdb\x41\xa6\x6b\xd2\x89\xe6\x29\xcc\xdb\xd1\x6f\xeb\xfd\x58\xfd\xc1\xec\x6a\x1f\xf0\x88\xd7\xcc\xf2\x7f\xd0\x8f\x25\xc1\xc5\x20\x92\x64\xff\x53\x57\x8b\xde\x18\xe7\xa7\x92\xe3\xeb\x00\x40\xca\x22\x46\xc2\x23\x7b\x77\xb3\xa8\x94\x90\xce\x47\xac\xfb\x19\xb7\xda\x92\xc0\xb0\x24\x43\xd3\x00\x78\x36\xfa\x48\xdd\x4b\x08\x0a\xde\x5e\xf5\x1a\xde\xe2\xf9\xa7\xbc\x1d\xd9\xba\xc4\xbd\x78\x05\xca\xb2\xff\xaa\xcb\xc0\x5a\xc7\xc5\xab\xe2\xf0\x33\x00\x20\xdd\x40\x84\x42\x87\x7b\x84\xa8\xae\xf0\x66\xe7\x14\xb4\x22\x23\xa2\xb5\x02\x6d\x49\x9a\xdf\xf8\x17\xbd\x1f\x9d\x52\xb7\x0a\x73\x0f\x1e\x5d\xb5\x1a\xeb\xf2\xdc\x5f\xf6\x1f\x1e\xb1\x64\xa2\x49\x82\xff\xb4\xff\xac\xbd\x48\x34\x8e\xe3\x29\x4f\xb2\x3d\x01\x40\xd2\xcb\x5e\x0c\xd6\x74\xdf\x24\x5b\x0b\x2d\x3a\x12\x49\x7d\x7a\x73\xcb\x5d\xb2\x30\x51\xdd\xb8\x8e\x0c\x8e\x7a\x56\xcb\x20\x7d\x82\xca\x2a\x51\x32\xca\x33\xb3\x2c\x90\x44\x16\xdf\x36\xde\x20\x1b\xed\x5f\x6b\xe7\x91\xb7\xc7\xf5\x2b\x67\x93\xb7\x00\x40\x32\x9a\x5c\xc7\x32\x75\xaf\x11\x8a\x0b\x26\xb5\x77\x0b\xfe\xa5\xdd\x6b\x59\x2a\xa0\x6e\xbf\xdb\x20\xe3\x3f\x8f\x0a\xaf\x39\xc6\xa7\x07\xcd\xaa\x38\xc1\xb7\xf5\x1c\x51\xaa\xe0\x1d\x5f\x5c\x62\x9c\xcf\x2b\xb0\x7f\xa8\x29\xe0\x4d\x1f\xf7\x56\x91\xc7\x05\x01\x40\xbc\x99\x13\xc8\xa4\x74\x6d\x55\x85\xe5\xdd\x69\xbb\xa7\x74\xdb\xad\x6e\x8e\x53\x4c\x4e\xe8\xa8\x6f\x96\xbd\xdc\xbc\xa1\xfa\xb6\xf4\x7c\xa0\x97\xf9\xb6\x64\xff\xda\x98\x92\x2a\x71\xcb\xe2\x55\x06\x37\x91\xd8\xfe\x8c\x9a\x14\x46\x8f\x5f\x2c\xe7\xf2\x4f\x00\x80\x28\x89\xdb\xc2\x98\xda\x79\xd1\xb4\x2f\x97\xdf\xe6\x67\x78\x93\x1a\xd5\xd4\xa4\x9f\xb6\x8d\x5f\xf7\x5d\xeb\x13\xe9\x56\x3d\x5b\x9d\xb9\x21\xdc\x3c\x5b\xa5\xf2\xd0\x15\x3f\x53\x34\xb8\x76\xea\x61\x99\xd9\x5e\x5b\x34\x24\x29\x18\xef\x2f\xbb\x20\xbc\x03\x00\xc2\x3a\xde\x11\xda\xab\xce\xf0\xaa\xfe\x9c\xac\xd6\x33\x15\xc8\x2e\xdf\x26\xcf\xf2\xe9\xf1\x58\x1d\x52\x22\x8b\xf0\xae\x32\x18\xbf\xac\x67\x96\xeb\xf5\xd1\x6b\x9e\x16\xef\xd4\x14\xb9\x2e\xd5\xbd\x56\x19\xec\x83\x8a\x96\xcb\x93\xc7\xfb\xc9\xbc\xc5\xfd\x00\x20\x9c\xca\xaf\xa6\x6d\xea\x9c\x59\xbf\x24\xfb\x41\xab\xa1\x46\x95\x72\xbc\x69\x64\xe5\xa5\x78\xeb\x3a\x9f\xf2\x2f\xe1\x97\xaa\xb6\x94\x0e\x5f\x3f\xa3\x7c\xb3\x69\xf8\x9a\xd2\xe2\x19\xba\x5b\x8b\xbe\xeb\x2a\xd4\xd9\xf6\x8b\x54\x0f\x15\xdd\xe3\x03\xa5\x1f\x24\x22\x00\x10\x9c\xe4\x7f\xa1\x1e\xec\x78\xd2\xf4\x37\x3b\xab\x75\x47\xc3\xc4\x94\x9d\x8d\x27\x6a\x47\xc4\xb5\xd6\x7e\xab\x7c\x1a\xce\xae\x1a\x56\xde\x10\x70\xa3\xec\x77\x49\xec\x9a\x3c\xd3\x51\xc3\xc5\x45\xf7\x74\x7e\x9a\x9f\xf6\x4e\x2a\x44\x79\x76\xfc\x2e\xa9\x4c\xea\x02\x00\x82\x14\x81\x3d\xa5\x7c\xf0\x0d\x2d\x31\xcb\xa2\x7f\x36\x7d\x4a\xf2\xb9\x9e\x0d\xf4\xf3\x31\x5f\x3a\x56\x33\x2a\xc3\x4a\x9b\xbf\x32\xeb\xfd\xfa\xeb\x51\xd6\x03\xb7\x7f\x55\xfd\x50\xa8\xb3\x55\x59\x39\xfc\x6a\xc6\x65\xe3\x0a\xb4\xd5\x3a\x5d\x9d\x8f\x7b\x00\x80\x4c\x47\x78\x53\x74\x83\x04\xa3\x26\xf3\x57\x5f\x3f\x73\x49\xf2\xf1\xee\xa7\xcc\xbe\x98\x67\xed\xf7\x58\xf1\x61\xf2\xe6\x0a\x70\x91\x5f\x5b\xfd\x12\x68\x85\xdb\xb7\xaa\x02\x38\xcd\xd9\xaa\x6c\x27\x72\x74\xc6\x0d\xc3\x1f\xcc\xdf\x9a\xab\xf6\xc7\xf9\x00\x20\x2b\x24\xd6\x53\x78\x83\x93\xc0\x71\x99\x2f\xfb\x36\x83\x59\xc9\x3d\xdd\x1c\xf0\x64\xcc\x95\x76\x1c\x72\x0f\x43\x9b\x83\xa0\x9b\x7e\xe6\xba\xeb\x70\xbb\xdb\xfb\xaa\x99\x48\x9b\xf3\xc8\xb2\xa9\xe8\x85\x19\xf7\x0c\x03\xb8\x95\x75\x85\x7a\x04\x61\x09\x00\x32\x0f\x82\x4d\x89\xde\xbb\x12\x7d\x92\x59\xb7\x07\x45\x5f\x24\xef\xe8\xea\x43\xdf\xc6\xa8\xda\xfa\x31\xbb\xb0\x90\x26\x21\x56\xe0\xc7\xa8\x9b\x8e\xbd\x72\xbb\x5e\x99\x8c\x0b\x9d\x87\x95\xa6\x12\x6e\x33\xde\x1b\x6c\x89\x77\xd6\xb7\x8a\xb2\xd8\xa9\x00\x20\xad\x60\xc7\x17\xe2\x03\x59\xe4\xf5\x4c\xcb\xde\x56\xb2\x67\xc7\xfb\xce\x47\xa4\x30\x66\x45\xeb\x33\x32\x31\xf4\x77\xe3\x5e\x72\x8b\x9f\x7b\xed\x26\x32\xc3\xad\xae\x42\x4f\x6a\x9c\x9e\x97\x54\x93\xa7\x66\xfc\xd6\x27\x72\x46\x8f\x99\xa1\xea\x25\x3f\x03\x80\xe4\x39\xb9\xab\xe0\x7a\xff\x80\x90\x9e\x91\xd5\xf3\x59\xf0\x64\x47\x52\xe7\x6c\xc1\xd6\xad\xdd\xad\xf3\xf9\x67\x42\xb5\x0d\xdf\xf8\x3b\x7c\x1f\xd5\xf0\xf9\xc3\xdc\xb2\xcd\xe7\x79\xbd\x4e\x67\x8b\xef\xf3\xf2\xed\x86\xeb\xcc\xbc\x85\x63\x62\x95\xbf\xb9\x6c\x00\x90\x38\x72\x52\xf3\xcf\xf5\x3d\x50\x0e\xa4\x6f\xef\x99\xa8\xa8\x4a\x8a\xea\x58\x26\xe7\x6f\x39\xd8\xe2\x2a\x4b\xdf\xb8\xaf\xfe\xbb\x34\xc1\x77\x49\x35\x4f\xb2\x75\xd5\xf3\xf2\x73\xe2\x68\x27\x81\xe9\x91\x28\xc8\xce\x46\x5b\x2e\x74\x1a\xd3\xa1\xb4\xe0\x37\x02\x80\xd8\x99\xdb\x97\x57\xda\x37\xd3\x28\x49\xf3\xeb\xde\xa4\x3f\x9b\x18\xd8\x9e\xa9\x1b\x19\x7d\xbc\x79\x87\xc6\x27\xe4\x56\xbd\x43\x11\xee\x93\x53\xd5\xad\xdc\xb7\x2a\xa2\xec\x8f\xfc\x9d\xd3\x32\xd3\x24\x99\xb5\xdd\x70\xcd\x55\xf1\xdf\x31\x8f\x15\x7e\x42\x25\x00\x88\x32\x78\x7d\xb9\x67\xf7\xb0\x2b\xc7\xee\xce\xe9\xda\x57\x3e\xb4\x9d\xd2\xf6\xa0\xb4\x30\xea\x47\xd3\x69\xd3\x7f\x21\x33\xea\x04\x06\xbe\xf7\xa9\xaa\x69\xba\xd1\x2b\x2f\x94\xa5\xab\x0b\x1d\x6f\x19\x19\xca\x86\x19\xcf\x35\x4b\x65\x75\x63\x2d\xe4\x35\x62\x0f\x00\x10\x5e\xe0\x23\xb9\x9b\xf6\x04\xd7\xda\xa7\xfe\xeb\x22\xaa\xc4\xdb\x27\xb7\x99\xcd\x77\xa2\xca\x9a\x88\xb2\x19\xc1\xc7\xeb\xd6\x14\x47\x78\x73\x2b\x4f\x1a\x90\x95\x65\x65\x33\xb4\x7c\xc7\x01\xe3\xfc\xa2\xa8\x19\x0f\xd5\x37\xe4\xd7\xc7\xda\xca\xa3\xc4\x1f\x01\x40\x48\xf0\x0f\xe4\xdc\xde\x63\xd5\xa0\x4c\xad\xe8\xf2\xac\x1d\x48\x38\xde\x16\x55\x35\x14\xb5\xad\x69\x89\x79\x28\x58\x58\x7b\xbb\xb4\xc7\x3b\xa6\x32\xcb\xa4\x5b\x49\x96\x0e\xe8\x37\x39\x76\x1b\x06\xd4\x7d\x33\xbe\xaa\x73\x15\x17\xc7\x6e\x90\xbd\x94\xb0\x01\x40\x38\x9d\xff\x30\x9b\x7e\x48\x47\xcf\x4c\xb9\xb8\xaf\x99\xfe\x39\xbe\xbe\xbf\x89\x21\x8c\x9c\xd8\x13\xc7\xf4\x0f\x9c\xd9\x7e\x8c\xe5\xe6\x59\xdf\xf4\x11\x4c\x5e\xc6\xaf\x3d\x0e\xed\x5f\x90\x5c\xe1\x89\xc4\xd9\xae\x2a\x0e\xc5\xc6\x59\x4e\xd0\x7c\xc7\xf3\x01\x40\x4e\x21\xb6\x67\x73\x0f\x2d\x61\xea\x53\x1e\xed\x0b\x62\xfe\x88\xef\xeb\x0f\x61\xa5\x46\xce\xea\xfe\xc5\x7a\x1d\xb8\xb0\x3d\x17\x6c\xf0\x6c\x6f\x2a\x83\x2a\x97\x29\x6b\x99\xf0\xa9\x05\xbb\xcd\xdf\xd0\x79\xb6\x3e\xc5\xe3\x31\x9d\xe5\x4a\xcd\x61\xbc\x03\x00\xe4\x41\x44\x42\xb6\xf4\xe0\x71\xf0\x49\xca\xcb\xc1\x07\xd0\xdc\xf8\x83\x7d\x8f\xa1\xf4\xc8\xb9\xdd\x3a\x68\x20\xd0\xa1\x7d\x1c\x1c\xe2\xd9\xdd\xe4\x8f\x4c\x5e\xa6\xaf\x9d\x85\x8e\x5a\x90\x6f\xae\xc1\x16\xd8\x86\x9a\x8e\xe3\x5b\x2d\x37\x6b\x70\xc2\x15\x00\xe4\x96\x84\x36\x3b\xed\xc0\x63\x0c\x4c\x39\x39\x08\x60\x99\xf1\xe5\x7d\x23\xb1\x1d\x91\x63\xbb\x8e\x61\x50\xe0\xcc\xb6\xf5\xd8\x61\xcf\x8e\x46\x10\x5f\xb5\xac\xbc\x66\x2b\x7e\x72\x01\xbb\xfc\x39\x41\xb1\x4d\x35\xd9\xb2\x17\x5a\xca\xd5\xd7\xff\x5f\xf1\x48\x67\x67\x66\x5d\xdd\xff\x97\x13\x99\x92\xb6\x77\x26\x67\x4a\x7c\xf2\x1e\x7b\xf2\x5a\xc4\xed\xce\x07\x64\xd9\x86\xef\xad\xa9\xa4\xd4\x53\xd7\x60\x22\xb5\xcb\x94\xd5\x20\x39\xb0\x00\x2f\xb7\x25\x3f\xda\x22\xc6\x28\x8e\x8b\xe5\x25\xf5\x0c\xf2\x0f\x00\x48\xab\x49\x4a\x96\x74\xff\x5a\xe1\x60\xca\x84\x81\x8d\x42\xdb\xf8\x91\xbd\xfe\x02\x30\x42\xd9\x39\x82\xff\x64\xc3\xa1\x16\x29\x9f\xe6\x99\x53\xbf\x9f\x3f\x6e\x19\x58\x55\xc2\x1b\x5c\x40\x94\xf9\xf3\x60\x5b\xad\x41\xc8\x5b\x6a\x35\xb1\x28\x96\x4b\x00\x80\xe4\x16\xa7\x20\xb3\x74\xdf\x2e\x65\xd1\x4e\xd7\xfe\x58\x45\x4e\xdc\x8a\x1e\x77\x79\x70\xf8\xb9\xf6\x4f\xb2\x85\x1b\x6c\x9a\xa9\xd2\x99\x6b\x1f\xd6\xd5\x48\xa6\x2c\x9b\x51\xc9\x15\xdb\x2e\x88\x2f\x5d\x26\x9a\x61\x7b\x54\x4f\x13\x0e\xb7\xc2\x54\x9b\xf8\x12\x00\x10\x5f\xe4\x0e\x64\x14\x0d\xc6\x1b\x2e\x25\xaf\xeb\x4b\xd1\x4f\x88\xdd\xd6\x1d\xa9\x0d\x0b\x1f\xde\x6e\xa9\x16\xaf\x4f\x6c\x12\xa8\xae\xaf\x0d\xaa\xdd\xab\x9c\xb5\xb4\xae\xa2\x4c\xbe\x63\xc1\xd2\x92\x20\xa9\xc6\xf6\x9a\x4e\x2f\x2e\xb1\x3a\xa9\x44\x84\xa1\x00\x20\x1e\xc9\xab\xcd\xb0\xdf\x6b\x36\x3f\xde\xd1\xb3\xa7\xa7\x4c\x12\x73\xb4\xab\xb1\xc4\x75\x13\xa5\x2d\xde\x78\x34\xe0\x62\xe3\x39\x7d\xb2\xc7\xf5\xda\x51\x9a\x1f\x4b\x63\xcd\x9f\x8b\xd8\x0b\x86\x17\x97\x28\x1e\xd9\x3e\xd3\x3e\x96\x59\x58\x8f\x50\x5c\x11\x9d\x04\x00\x51\x26\x3f\x2a\x7d\x70\x6f\x52\xb5\x76\x47\xda\x9e\xec\x8a\x1f\x31\x44\x57\x5c\xf9\xe6\x4d\xcb\xda\x80\x92\xd2\x00\x4d\x63\x81\xf1\x85\x47\x7d\x4d\xb3\x7e\xe5\x52\x0f\x73\x89\x26\x6d\xfe\x7f\xc5\xfe\xaa\x14\xdb\xef\x5a\xae\x7c\x8a\xb5\xb3\x02\x13\xe7\x02\x80\x68\x2a\x5f\x96\xbe\x6b\xef\x94\xba\xe6\x1d\xb3\xf7\xcc\xa8\xbe\x19\xb3\xb1\xf3\xbf\x8a\x6f\x61\xff\x5a\xcb\xca\x47\x07\x64\x37\x8e\x2c\x99\xe0\xa1\xa8\x09\x30\xda\x2e\x5d\x69\x76\xd3\xfe\x59\x60\x63\x3a\x53\x54\x35\x6d\xb6\xd6\x46\xfe\xd1\x7a\x97\x62\x92\xf8\x25\x00\x08\xdb\xf9\x4d\xf7\x3d\x59\x29\x94\xe5\x17\xd6\xb0\x1e\x51\xfe\x1c\xbc\x0c\xee\xa4\x9e\x6b\x2f\x01\x2f\xd1\x1a\xca\x85\x50\x38\xbd\x56\x46\x85\xae\x31\xae\x81\xf5\x30\x8d\xe5\xb0\xab\x02\x59\x01\x9a\x36\x0e\xa1\x63\xe0\x59\x8b\x3b\xb0\xe1\x48\x9f\xf5\x3e\xdc\x07\x9b\x7d\xcf\x85\x59\x47\x3f\x72\x3e\x8a\xb5\x94\x11\x71\xd0\x8a\xb5\x87\xf1\xa0\xed\x2e\xe8\xc1\x64\x95\x5d\x06\x4f\xb0\x96\x4a\xcf\x43\xc9\xe0\x14\x70\x32\x3c\x01\x9a\xb2\x6b\x0a\x7c\x0f\x5e\xb9\x31\x0c\x19\x42\x12\x17\x87\xa1\x57\x51\xa3\x35\x1f\x9f\x8b\x69\xef\x4e\x60\x7c\x04\x69\xe7\x76\x32\x09\xf0\xd0\x01\x0f\xd6\x38\x68\x4a\xdb\x38\x56\x35\x94\x5e\x36\x01\xf4\x85\x6e\x49\xe7\x82\xcf\x60\x06\x0b\x85\x6a\x10\x97\x14\x29\xcc\x41\xde\x87\x1c\x44\x70\x74\x9f\xeb\x0f\xd4\x80\x19\xad\xb7\x63\x5f\xf0\x85\xb7\x67\xd0\x45\xec\x75\x67\x92\x18\xeb\x88\x8f\xfb\x3c\x18\x9f\x88\xba\x96\x08\x66\x11\xc1\x28\x11\xb2\xd6\x11\xdb\xc5\x27\x58\x3f\x89\x4c\x66\x2c\x78\x86\xe0\xec\xc4\xa1\x63\x44\x71\xf0\x79\xf8\x2e\xd1\xe2\x9a\x8b\x5a\x12\xc7\xad\x97\x60\x7c\x22\xf7\x86\x1d\xcd\x5d\x34\x6f\x68\x1f\xed\xa7\x30\x7a\xe0\x26\x7d\xaf\x80\xdb\xb4\x86\x91\xcf\x3f\x6d\xea\x60\xae\xe0\x2f\x14\xb9\xb2\x86\xf3\x8c\xf4\x9f\xac\x77\xbc\xf1\xc9\xd1\xe0\x5f\x2e\x16\x3c\x09\x76\xe0\x3c\x5e\xf4\x0d\xc9\xe3\xcc\xb6\xf6\x45\xff\xb2\xaf\x5d\x09\xa3\x0e\x53\xb5\x1e\xcf\xa5\x1e\x54\x86\xf4\x8d\xa2\xc9\xe4\xcf\xeb\xf7\xd1\xb7\xc9\x4a\x0c\x22\xc6\x0a\x69\x82\x60\x0b\xd3\x4e\xe2\x4c\x63\xb0\x66\x8a\xde\xec\x18\x07\xfa\x0b\x2b\x82\x56\x41\x2c\x41\xc0\x22\x3e\x7c\x8d\xa7\xb3\x8e\x44\x99\x9c\xa0\xf3\x5f\x0a\x29\xe5\x05\x87\x19\x94\x84\xd2\x80\xee\x24\xaa\x67\xb1\x4d\x0d\x93\x66\x6b\x38\xaf\xad\xa6\x0f\xd3\xf1\xb9\x97\x19\x80\xc6\x83\x12\xc7\xb4\x53\x9d\x49\xa4\xb3\xa2\x15\x1e\x1b\x3e\x81\xd5\xd2\x42\x97\x07\xf0\x34\x51\xb4\x75\x26\x72\x81\x97\x76\x66\x46\x41\x74\x6b\xdb\x01\x8b\xc2\xad\x4d\x92\x8e\x08\xca\xa6\xfa\x84\xca\x6a\xea\xaa\x9a\xe1\xea\xc9\x34\xa7\x0a\x03\x29\xa4\xaf\x2e\x1b\x5f\x90\xc8\x48\x31\x85\x27\x3c\x60\x36\xe8\x42\xd7\x77\x80\xe3\x55\x9f\x5c\x16\x41\x3a\x99\x87\x75\x16\xb2\x4b\xc0\x1a\x3a\x99\xdf\xb7\xdf\x7a\x50\x53\x70\xa0\xff\x69\xeb\xd9\xc2\xae\x9e\x46\x73\x30\xa5\xac\x63\xa3\xf2\x0e\x55\xdf\x3c\x48\xe0\xb4\xd6\xba\xff\xf2\x24\xf4\x47\x95\x2f\xb7\x15\x30\x9d\x4a\x77\x07\x0c\xb0\x64\xfa\x1c\xe7\x0a\x68\x91\xf2\xb3\x75\x16\x32\x5e\xb4\xe1\xe4\x81\x7c\xf1\xb1\x25\x7b\xab\x0b\x04\x07\xab\x5a\xee\x16\x82\x7b\x3f\x96\x6f\xa7\x24\xed\x99\xaa\xf8\x8f\x1a\xd3\xf1\x17\x6f\xa3\x65\x37\x37\xe7\x5e\xa2\x9b\x6b\x3f\xc5\xdf\x63\xfc\xcf\xdc\x16\x90\xc4\x0a\x30\x3e\x76\x46\xc0\x17\x45\x62\x6b\x01\x7c\x45\xf4\xbf\x13\x7f\xf3\x53\x4e\x27\x0e\xbc\x2a\x88\x3e\x8e\xb7\xb8\x16\xae\x3d\x94\x53\xd6\x4e\x99\x36\xe8\xa4\xd8\x46\xb5\xec\xd5\xe3\xd3\x69\xd3\xdb\xf7\xe7\x46\xd2\x43\x1b\x73\xe2\x85\x0c\x4e\x15\x2d\xc0\x8b\x79\xa7\xf8\xb1\xb3\x10\x14\xa8\x3b\xac\x2f\xc2\x74\xf1\xdc\x9b\xb7\xa1\xcb\x85\xf5\xa7\xb3\xe0\x31\x14\xc5\x20\x09\x87\x52\xa9\xcd\xad\xb0\x86\x16\x5f\xfc\x1d\x7e\x42\x4f\x16\x87\x21\x1e\x8c\x72\xc6\x6b\xa4\x82\xf9\xdf\xce\xcd\xe8\x3c\x10\x09\xfe\x87\xee\x85\xa7\xba\xc2\x18\x03\xb9\x68\x9d\x8e\x67\x63\x9b\x6f\x3c\x85\x6c\xe9\x4b\x4e\x49\xa0\x9d\xf4\x0b\x7b\x7b\xa0\x0e\x06\xb5\xe9\x05\x3c\x8a\x39\xbd\xd8\x13\xce\x66\xde\x11\x99\xe1\xb3\xac\x4b\x8c\x48\x64\x3d\xf8\x28\x79\x00\xb9\x09\x8f\x0d\x4e\x40\x05\x48\xe8\xa2\x5f\x58\x24\x5a\x65\x3d\x0c\x8f\xc5\xf6\x5c\x7f\x06\x26\xb3\xae\x0e\x19\xc1\x01\x70\xc5\xc0\x5d\xc8\x16\xd4\x35\x4d\x87\x40\xf0\xbb\x09\x84\x9e\x41\xa0\xf0\x03\x1c\x0b\x2f\xa4\xf7\xc0\xf7\xe0\x97\xc9\xee\x08\x81\x1c\x0a\x7a\x8a\xae\x43\xeb\x17\x35\x63\x93\xb1\x72\xab\xbb\xb8\x2b\xbe\xe1\xea\x43\xe6\x5f\x22\xff\x44\x0d\x8b\x4a\xf8\xf4\x7d\x64\xbd\x23\xc6\x35\x64\x80\xbb\xf0\xe7\x86\xbf\xe0\x43\xfc\xae\xa0\x0c\xca\xc1\x7f\xd1\xf4\xf0\x68\x62\xd1\x8e\xa5\xf0\x71\x22\x31\x68\x32\x52\x4c\x68\x16\x2d\x45\x65\xc4\x51\xab\x21\xec\x00\x21\xbd\x74\x85\x71\x4c\xb8\xf2\xd8\x48\x66\x88\x80\xdd\x5b\xca\x3c\xcf\x3f\x5b\x97\xcc\x8a\xe2\x3b\xe8\x3d\x59\x8f\x78\x6a\xfe\x0c\x10\xe5\xcd\xa2\x46\x42\xcb\xb8\xcd\x49\x76\xb0\x05\xd7\x2d\x30\x04\x7e\xc5\xd9\xe3\x72\x1a\xf9\xc8\x99\x6a\xf5\x18\xf3\x64\xbf\x3d\xbf\x85\xae\x51\xaa\x0f\x3d\x66\xcc\x57\x6c\xe9\xba\xcf\x38\x20\x1f\x5f\xfd\x95\xb9\x59\x7a\x5b\x3b\x97\xf9\x5e\xd2\xce\xdd\xcc\x32\x8b\x8d\x85\x37\xc1\xdd\x22\x68\xfb\x6b\x68\xa3\x30\x68\x03\x17\xf6\x11\x58\xb8\xe4\x20\xdb\x78\x88\xf5\x04\xb4\x8d\xb3\xfd\xd4\x1f\xda\xc2\xb2\xd9\xfb\x7e\xd2\x2e\x94\x4c\x69\x0f\xa7\x53\x8c\x7f\x2a\x8e\x33\x26\xeb\xaf\x17\x6d\x66\x1c\xd5\x36\xb3\xef\x32\xc5\x6a\x34\xff\x38\x2b\x5d\xb5\x22\x21\x0e\x4c\x94\x1f\x5e\x1f\x0f\x65\x4a\xe7\x3a\x3f\x81\xf5\xa2\xc5\xd6\x7e\xa8\x05\xaf\xe0\x44\x1a\x75\x66\xcb\xec\x81\x06\xea\xa5\xc6\x29\x2d\x9b\x68\xdc\xda\xbf\xe5\xc3\xe8\x4b\xab\xce\x2a\xce\xd3\x5f\x9a\xf9\x78\x29\xe3\x60\xe9\x9c\xdc\xcb\xcc\x16\xa3\x20\xfe\x2c\xab\x4b\xdb\x1a\xb0\x18\xbc\xa4\x12\x38\x6f\x86\xc7\x48\xff\xb3\x8e\x47\x64\x82\xc2\xa3\x6f\x28\xd0\xe0\xcc\xbe\xe5\xd4\x35\x7d\xf3\x1a\xaf\x51\x9f\x77\x4f\x28\x69\xa3\x19\xdb\x6e\xcb\x6a\xe8\xf1\x4d\x2c\xd4\xcc\x70\xab\x7d\x90\x33\x96\xb9\xb8\xe2\x7b\xdc\x4e\xd6\x8a\x92\x0a\xff\xa5\x60\xb4\xee\xb6\xd3\x29\xa8\x42\x59\x6a\xbd\x1b\x71\x13\x2d\x3d\xf2\x92\xe2\x7f\x64\xf2\x1e\x6f\xca\xcf\xfd\x83\x0d\x8f\xa8\x0d\x03\x1e\xc5\xc7\x69\xb1\x3d\x32\xe9\x29\xfa\xd4\xf6\x6a\xe4\x1a\xfd\x7d\x13\x92\x1d\xc7\x78\x51\xf3\x36\xf6\x12\xf3\x75\xf9\x6d\xbf\x6b\xa0\x95\x31\xc0\xa9\x1a\xda\x51\xe4\x62\x2d\x86\xbf\x8a\x4e\x1f\x71\xa5\x4c\x1c\x9a\xd9\xcb\xa3\x1c\x3c\x0a\x36\x2c\xa5\x66\x1c\x28\x2e\x9e\x41\x9b\x30\x20\x96\x3a\xd3\x4e\xf6\xb8\x22\xfe\xf4\xb2\x36\x34\xeb\x26\xa3\xa8\x21\x3e\x16\x66\xca\x2b\x8b\xfc\xda\x58\x35\xc5\xab\x9d\x9a\xc0\xbf\xea\x8d\xd6\x37\x61\x9d\x78\xd4\x95\x60\x74\x77\xe1\x82\xe3\xa9\xe8\x36\xca\xfc\x3d\x5f\xd1\x44\xea\xf4\x7a\x29\x8a\xd0\xac\x0c\x2b\xd1\x3a\xfa\x2c\xfe\x13\xf4\x1c\x23\x85\xfa\x12\x1b\xc1\x1c\x4a\xea\xc3\x36\x81\xd1\x81\x27\xb1\x26\xe8\x87\xcb\x77\x7c\x01\x72\xc6\xaa\x05\xbf\x83\x25\x5f\xce\x47\xea\x68\xe5\xc7\xb8\xc8\x1e\x7a\xf4\x9e\x79\xc8\x25\xc6\x88\xba\xa3\xc8\x0f\x46\xbf\xbe\x10\x5d\xc1\x14\xf2\xdd\xd1\x34\x16\x97\xba\x11\x6d\x01\xcd\x49\xf3\xb1\x91\xd0\xcd\xc0\x35\x18\x13\x71\x74\x61\x62\xff\x50\x83\xd5\x06\xfc\x24\x76\xe8\x92\x0c\x7e\xcb\xf2\x38\xda\x84\x4c\x67\xd5\xf4\x06\x23\x1b\x41\x9b\xda\x4f\x48\x21\x28\xd4\x75\x22\x9d\x90\x0d\x4f\x86\x7c\x81\xce\x50\xba\xd1\x50\xb8\x2c\xb1\x0c\xed\x42\x78\x1b\x0e\x61\xee\x28\xee\xb2\x08\x3b\x83\xc9\xad\xe6\xe2\xb5\x78\xc8\x05\x16\xa4\xc3\x6b\x0e\xb7\x40\xd7\x70\x71\x37\x05\xb6\xc5\xf3\x6b\xc2\xe0\x1d\x78\xb4\xd6\x1f\xee\xc2\xe3\xb8\x7e\xc8\x58\x5c\x50\x68\x40\x58\xf8\x89\xed\xb5\xc8\x6f\x62\xfc\xfa\x2f\xa8\x89\xd8\xe1\xdc\x85\x85\x12\x8d\x56\x93\x71\x6f\x42\x74\x76\x1b\xc8\x12\xac\x3f\x38\x15\xdc\xcf\x6f\xef\x5c\x00\x4d\xe0\x4f\xaa\xda\x02\x25\xf2\x70\xb5\x18\x3a\xc0\xfd\x43\x1e\x83\x5d\xb8\xa6\x82\x44\xb8\x9e\xeb\x95\x50\x81\xf8\x70\xee\xaf\xf7\x45\x5e\x72\x60\xe7\xdd\x68\x1b\xf9\xd5\x2a\x18\xeb\x66\xbf\x3d\xe5\xc8\xda\xa8\x60\xed\x9b\xc3\x6a\x93\x27\xb5\x21\xe0\x4c\xd9\x4a\xf3\x7f\x60\x9e\x74\xba\x8a\x07\xde\x92\x8c\x60\x8f\x81\x62\xc4\xc3\xf2\x3e\x42\x4f\x85\x3f\xb7\xa1\xb0\x54\xf0\x38\x40\x80\xf8\xf2\xfb\x9d\x27\xa3\xb6\xbc\x58\x2b\x36\xe6\xc8\x89\x3f\x76\x85\xf1\xa7\xe4\x6c\x7f\x10\x33\xd7\xf4\xb8\x19\x60\x5e\x35\xfc\xaf\xf4\x3e\x6b\x8d\xee\xae\xfc\x10\xab\x47\x73\x16\xab\x06\x03\x8b\x06\x72\x5e\x82\xaf\x94\xb2\xb8\xf7\x50\xa5\xdc\xc7\x3f\x0f\xce\x92\x1c\x71\x32\x20\x51\xc2\xef\x56\x87\x50\x06\x6f\xf7\x61\x84\x61\xd5\x24\xe9\x9d\xca\x00\xeb\xf5\x0d\x63\x19\x2f\x6a\x4a\x8a\xe7\x33\xe3\x2b\x95\xd2\x20\xe6\xfd\xf2\x4c\x24\x87\x85\x97\x38\x65\xfd\x07\xae\x32\x74\xc7\x66\x82\x3f\xb4\x23\xfd\x36\x41\x97\x55\x63\x9c\xa6\xc2\xc7\xa5\x9d\x56\x6f\x91\x1f\x82\x6d\x07\xee\xd1\x77\x0d\x38\x75\xe9\xe9\xb7\x7b\xe3\x6a\x4b\x18\x21\x9d\x59\x86\xbb\x8c\x23\xad\xbb\xc5\xce\xcc\x88\x46\x67\x08\x64\x7e\xa9\xe9\xcf\x5c\xcf\xea\x30\xff\x8a\x19\x06\x42\xc5\x97\x7c\x23\xa1\x58\x9d\xb7\xa3\x04\x4e\x50\xae\xb1\xfa\x8d\x94\x89\x2c\xf7\x3f\xa0\x2f\x38\xf8\xbe\xb3\x92\x6e\x1c\x3c\x53\xd3\xc8\xb0\xea\x63\xe8\xbf\x31\x88\xae\x3f\xa2\xcd\xcc\xb1\x6d\x3e\x60\x17\xb3\xa3\xd1\x27\xa3\x88\x95\x5b\x7d\x7f\x2b\x1d\x5c\x59\xf6\xdb\xe7\x0b\x34\xde\x60\x74\xdc\x0d\x4f\x53\x0d\x5a\xcf\x41\x92\x44\x15\xfb\x1d\x68\x2f\x8f\x5f\xec\x78\x46\xdf\x76\x38\xb3\xfa\x33\xfd\xf8\xbe\x83\xfa\x10\xc6\x9a\xbe\xff\x09\xbb\x18\xfb\xbb\x7a\xc0\x79\xcc\xc4\xd6\x65\x19\x36\xac\x29\xf5\xeb\xb6\xce\x62\x5d\xa9\xa8\xf1\x19\x02\x5b\x4c\xa4\x63\x36\xd4\x57\x74\xdd\x3a\x17\xfe\x2d\xba\x3b\x34\x95\x6c\x2a\x08\x1c\x74\x26\xfd\x0b\xd3\x5a\x9b\xd8\x4f\x28\x50\xf9\x53\x76\x17\x15\x54\xae\x61\x8b\x68\x46\xbc\x9a\xbd\x8d\xfe\x34\x37\x87\xed\xc6\x8c\x8d\x1f\xc6\x1e\xcb\xfa\xe8\xf7\x8a\xf8\x01\x35\x38\x66\x11\x5f\x11\xf3\xe8\x22\xf6\x1a\x6c\xfd\xc9\x18\xd2\x82\x5a\xb7\x37\x8d\x5d\x4f\x03\x5b\x9e\xb2\x63\xe8\x81\xe5\x2e\xec\x95\x8c\x61\x0a\x01\xdb\x96\xf1\x08\x1f\x46\x7c\x63\xbe\xca\xb9\x4b\x3c\x00\x6d\xe3\x40\xe2\x2c\x94\xee\x07\x11\x43\xf0\x69\x87\xaf\xc4\x6d\x34\x75\x74\x18\xdb\x11\xab\x3d\x21\x66\x27\x33\x9d\x06\x54\xec\x09\xcc\xd6\x96\x89\xc4\x69\x96\x7b\x59\x22\xd1\xc5\x6a\x96\x9f\x23\xcc\x60\x08\x96\x40\x88\x21\x9b\x9c\x10\x82\x80\x7e\xc6\x0d\x23\x10\x04\xf0\xb3\x20\xe4\xe8\x64\x87\x06\xa2\x05\x0b\x1d\x3d\x8f\x6d\x8d\xcf\x39\xd6\x4a\xcc\xc1\x42\xfb\x8e\xe1\xaf\x31\xcf\xa6\xcd\xf8\x01\xcc\xb9\xe4\x1c\xde\x8d\xb9\xc9\xd2\xf0\x4e\x2c\x01\x9d\x81\xb7\x62\x15\xd9\x6e\xf8\x1e\xec\xbf\x58\x17\xfc\x1c\x9e\xe7\x1b\x8b\xff\xc6\x1f\x39\x84\x11\xcb\x88\xe4\xd1\xee\x44\x2d\xb1\xeb\xf0\x0d\xec\x15\xaf\xa8\x37\x04\xbb\xce\x9b\xd9\x30\x1b\x3b\xce\xad\x36\x3d\xc2\x86\xb8\x2b\x24\x7b\xb1\xab\x9c\x4b\x70\x2d\xf6\x3f\x8e\x2c\xf3\x17\xf6\x87\x13\x15\xe3\x8a\xcf\xe4\xcc\xf3\x69\xc6\x63\xc8\x17\x0e\x93\x70\x03\x59\x32\x9a\x46\xcc\x66\x1f\x38\x90\x8d\x8d\x97\x51\xba\x52\xd0\x8f\x52\x59\x6d\x0b\xfa\x50\x62\x32\x0c\xa2\xef\xc4\x65\xa2\xfb\xd8\x68\x51\x33\x34\x0e\x5b\x28\x3c\x9f\x51\x8f\x45\x08\xde\x6e\x5d\x80\x51\x04\xa3\x7c\xac\xb0\x36\xfe\xf8\x85\xb7\xb0\xbf\xdc\x0f\xa3\x0f\xe1\x72\x8e\xf3\xde\xd3\xc8\x65\x93\x57\xdb\x73\xe4\xa0\x41\x56\xb5\x15\xe9\xd7\x9d\xd5\xee\x45\x2e\x6a\xde\x0a\x56\x23\x9f\xd5\x63\x98\x83\xe8\x1c\xd5\x92\xb4\x2e\x34\x41\xb1\x26\xba\x01\x55\xca\x96\x7b\xdb\xa2\xd7\xc4\xdf\x16\xca\xb0\xe5\x42\x86\x65\x20\x76\x8c\xe7\xd8\x07\xc2\xaf\xea\xb9\xcd\x87\xe1\xa7\x35\xfb\xcc\x14\xf8\x7f\x95\x5f\xd4\x13\xe1\x7f\xe6\x59\xdc\x33\x88\x73\xe9\x52\xba\x0a\xd9\x69\x5a\x96\x7a\x09\xa9\xd7\x5b\x44\xcd\x44\xde\xa9\xeb\xbc\xbe\xa3\xeb\x95\xc3\x16\x7c\x47\x9b\x24\xff\x2c\x13\xb1\x50\xc1\xb0\xde\xc9\xf0\x86\x5e\xb0\x91\x0a\x47\x74\x7e\x29\x73\x86\xa3\xdb\x36\x2b\x9f\xc1\x85\x4d\x24\x79\x1c\x36\xd5\x09\xa9\xbd\xf0\xb5\xaa\xd4\x5d\x8b\x91\x79\x65\xdf\x23\x87\x90\x02\x93\x8b\xe7\x37\xe4\xbc\xe6\xcb\x82\x0c\xd4\x5f\x11\x6b\x99\x81\x3e\x17\x16\xf7\x8c\x86\x5d\x07\xbf\x34\x10\xf0\x9c\x7e\xc7\xd2\x00\xd8\xb6\xc7\x49\x69\x05\x2f\x6f\x7f\xce\xfe\x02\xc7\x35\x17\x50\xbe\xc2\xaa\xba\x83\x29\x1c\xf8\x4e\x65\x6f\xa4\x37\xe2\x5c\xba\xca\x53\x87\x88\xf5\xee\x0b\xbc\x50\x40\x39\x64\xc9\x45\xeb\x44\xae\xdd\x9e\xf0\xf4\xc3\xda\xfa\x13\xd0\xa7\xfd\x45\x25\x1a\xe8\xfa\x40\x88\x62\x17\xf4\xb2\xa7\x9e\xbd\x0d\xb6\x6a\x3f\x48\xc9\x80\xbd\x9a\x54\x29\xd6\x30\x59\xf3\x23\xe2\x0e\x7c\xae\xfc\x98\xe7\x4e\x64\x91\x71\xcc\x02\x0f\xa4\x4a\x75\xdb\xf2\x04\xba\x5e\x94\xb3\xcf\x59\x98\x9f\x6f\x6c\xff\x27\x18\x28\x68\xaa\x76\x16\x4c\x2c\x1c\xd0\xb9\xf3\x71\xca\x59\xc1\x36\xde\x47\x9a\x05\xd3\xc4\x4b\xa4\xef\x48\x0b\xe4\x0e\x31\x1e\x47\x69\xb9\xab\x59\x62\x2f\x09\xa7\x01\xda\x34\xdf\x97\xe3\x82\xa4\x8c\xb4\x24\x9f\x63\x93\x07\x69\x82\x4b\x94\x53\xed\x81\x82\xc5\xd4\xd2\x2a\x06\x5f\x45\x2b\xd0\x2a\xf8\x56\xf4\xf5\xfc\x03\x3c\x01\x63\x2d\x73\x2c\xf7\x2f\x33\x7a\xf7\x09\x2e\xc8\x2a\x8a\x72\xe1\xfc\x04\xdf\x7b\xcd\xe3\x10\xf0\xee\x79\xef\x38\x13\x50\xfb\x11\x77\xc9\x3b\x58\xce\xde\x1e\x81\x27\xc3\xae\x8d\xcd\xaf\x62\x74\x54\xf6\xf3\x27\x33\x43\x35\x77\x78\x6a\xe6\x4d\xfe\x0c\xde\x0c\x96\x82\x01\x72\x4b\xc0\xec\xdd\xeb\xb9\x73\xa1\xf4\xcd\x47\x39\xed\x30\xea\x79\x8a\x13\x88\xd4\xcc\xdb\x4f\x3e\x44\xff\x8d\xb8\x4d\x0e\x60\x2f\x07\xec\xf8\xb3\x90\x3b\x2d\xaf\x78\x5a\xe4\x4d\x85\x03\x6f\x06\x0a\xa8\x73\xb8\x4d\xa8\x33\xf7\x0c\xd7\x0f\xcd\xa1\x87\x72\x2e\xa3\xe7\x52\xbd\x39\x19\x58\x70\xe4\x3f\xce\x18\xec\xac\xe7\x72\x72\x3f\x9e\x34\x8f\x41\x66\x12\x23\x47\xfc\x47\xc6\x12\x73\xf7\xb4\x73\xdf\x73\x3e\x34\xf5\x71\x65\x1c\x43\xf9\x3a\xee\x42\x8e\xbf\x6a\x2f\xe7\x08\xf9\x81\xb3\x99\x93\x4a\xb6\x53\xff\xe3\x8c\x22\x95\xbb\xe6\x91\x4d\x24\x2b\x72\x06\x99\x42\xa6\xaf\xd5\x90\x73\xc8\xf0\x79\x81\xec\x6b\xe4\xaa\x91\x7e\xec\x0b\x6c\x56\x77\x19\x77\x8e\x44\xdf\xb0\x90\x33\x20\x3e\x59\xf2\x9e\xb3\x4d\xf4\x55\xd1\x4d\xfe\x11\xcd\x61\x2b\xc8\x26\xe1\x16\x0a\x48\xc6\x08\x2a\x77\xde\x23\x2d\xf9\x6f\x23\x66\xb1\x0f\xf3\x5d\x3d\x7e\xb1\x31\x5e\xc2\xbc\x71\x6c\x1f\x6e\xc1\x48\x09\xdb\x93\x3c\xdf\xb1\x8a\xfc\xaa\x3f\x53\x73\x91\x6c\xd4\xad\x37\x9e\x22\xa3\x34\x9d\xd2\xfb\xec\xdf\xea\x11\xf8\x78\x76\x8b\x6a\x4b\x41\x08\x3b\x4d\xd1\x94\x3c\x92\xed\x20\x7b\xb3\xa9\x87\x78\x2e\x9d\xe0\x31\x9e\x68\x15\x8f\x99\xdb\x47\x40\x82\x0b\x23\x3f\x12\x28\x77\x6f\xeb\x78\x72\x61\xcd\xba\xca\x1b\xec\x87\x95\x17\xf5\x23\xd9\x3a\xf3\x66\xf1\x16\xb6\x5f\x69\x37\x72\x88\xf8\x52\x3c\x3c\x6f\x35\xd1\x6b\x08\x4a\x5a\x4b\xe0\xda\xe4\xb0\x20\x22\xa4\x28\x60\x8d\x35\x31\x4d\xfe\x64\x6e\x08\xfe\x42\xb2\x6a\x94\x0f\xfe\x9a\x2f\x6e\x52\xb3\x7b\x3b\x4b\xcc\x02\x76\x5e\x5b\x8a\xe6\x3c\x7b\x7a\xf3\x58\xa1\x27\x71\xb4\x5e\x04\x9d\x23\x98\xd5\xb7\x72\xf2\x08\x8f\x0a\x8b\xed\xf5\x84\x45\xc9\x8b\x8d\x9f\xf1\xcb\x86\xdc\xd5\xa3\xf1\x7a\xb5\x6e\x4e\x3f\x4e\xc8\xb7\x8f\x0a\xc6\x79\xc2\x71\x8d\x0a\xb6\xb2\xef\x7c\xb9\x82\x1d\xd0\x13\xa2\x7e\x41\x3c\xed\x28\x16\xec\x24\x64\x2d\x4d\x10\x40\x78\x35\xf0\xb2\xbb\xf0\x9f\x35\x8e\xdb\x87\xe3\x87\xcd\xcc\x8d\xd9\xb8\xaa\x38\xd2\xbd\x1c\x4f\xd3\xf6\xcf\xe1\xe3\x3e\x8a\x81\x51\x09\xb8\xbf\xd0\xd4\x70\x84\x9d\xb7\x7f\x45\xd9\x45\xf6\xa4\x01\xa6\x7a\x0d\xd1\xda\x0b\xf3\xfb\x89\x4d\x9d\xcb\xc0\xdd\xf8\xe7\x96\x8a\x6c\x47\xbc\xa9\x7e\x28\x41\x8e\xe7\x55\x29\x36\x5a\xe2\x1e\xa5\x87\xdd\x93\x71\x6b\x3d\x36\x07\xc1\x1e\x29\x8f\x8c\x52\x61\xf7\x84\xf7\xda\xd9\x8a\x49\x79\xf7\xaa\xff\xc8\xde\x17\x0c\x37\x7c\x92\xde\x2a\x74\x90\x5c\x96\xdc\xa5\x84\xa1\xa7\xc5\x0f\xa8\xba\xbc\xd7\xa2\x4b\xb4\x7f\x49\x42\xe1\x21\x46\x51\x68\x8b\xa0\x93\xb5\xde\x7d\x3f\xbf\x04\x9a\x64\x7f\x9d\x27\x44\xbc\x2c\x92\xb8\x9d\xe8\x97\xb6\x06\x39\x52\xf8\xa9\x7a\xa3\xac\x80\x72\xdb\xb0\x45\x9a\x45\x3d\x22\xf1\x91\x50\x68\x8d\xa8\xbf\x18\xa1\xef\xc9\xcb\x17\xa1\x8c\xbb\x49\x53\x85\x4c\xd6\xa2\xd0\x2d\x02\x08\xd4\xba\x67\xf1\xa9\xb0\x9d\x7d\x05\x2f\x17\x79\x6e\x11\xc2\x2d\xc7\xd6\xb4\x9e\x90\xbd\xa4\x3b\x55\x89\xa5\x1f\xe9\x57\xf4\xcd\x92\x5f\x0c\x9e\xb8\x4c\x62\xc9\x74\x40\x5a\xc4\xd3\x98\xef\x72\x9f\x89\xe6\xb2\xee\x26\x9a\x85\x0e\xe0\x9b\x8d\x3f\x05\x6e\xf0\x44\xf7\x39\xfc\x75\x48\x98\x3d\x9b\xe7\x8b\x1e\xb2\x88\xe3\xa2\x58\x5b\x4b\xbc\xf4\x14\x9c\x5b\x39\x55\xf2\x0a\xee\xd6\x79\x49\xc6\xc3\x9f\x44\x11\xe2\xa5\x88\x3b\x8c\x8b\x22\x11\x75\xce\x55\x61\x1a\x3a\x69\x7b\x87\x80\x89\x36\x6e\xdc\xc8\x37\x61\x7e\x6e\x06\x5e\x1f\xf6\xda\x3e\x9c\x7b\x1c\xef\xb4\x90\x71\x6d\xf0\x5b\x4d\x05\x92\x17\x64\x8c\x39\x5e\x32\x9a\x5c\xaa\x29\x11\x2f\x62\xff\x16\xdc\x14\x6d\x65\x9f\x84\xdc\x84\x6c\x76\x7d\x76\xab\xa0\x86\x5d\x9f\xd0\xc5\x3f\xc6\xee\x09\x11\xf3\xbe\xb0\xf7\xbb\x2d\xe0\xd9\xb1\x4f\xda\x7b\x70\x57\xb2\x2f\x58\x7c\xe6\xf0\xd9\xce\xf5\x26\xc9\x5c\x51\x5d\xe9\x6b\xb1\xaf\xc8\xba\x48\x28\x4a\x15\xa6\xf0\x2d\x84\x6a\x41\x3b\xab\x4c\x70\x54\x60\x99\x15\xce\xff\xc0\xc7\xb7\xc9\xf8\x33\x79\x3f\x82\x07\x78\xe1\xbc\x9d\xab\xda\xb8\x2c\xee\x41\x7b\x0f\x8e\x8a\xf3\x77\x38\x4e\x3e\x24\xd9\x35\x39\x62\x7f\xed\x2a\xd3\x1d\xd1\x56\xf5\x3b\x85\x49\x08\x15\x95\x70\x76\x09\x1a\x54\xf6\x8c\x30\xfe\x1d\x45\x79\xc6\x06\xfe\x44\xb9\x4b\xdc\x35\xde\x06\x69\x5d\xd0\x6e\x2e\x26\xfe\x6f\xe5\x10\xa7\x4d\xb4\x72\xd6\x7d\xf2\xa2\x60\xd5\xf0\x33\xa4\x23\x37\xae\x92\x14\x6d\xad\x9c\x60\x98\x22\xd4\x96\xdf\x97\x0d\x13\x5c\x2c\xad\x61\x03\xfc\x7f\xc5\x1b\x68\x0e\xfc\xe5\x86\x2b\x69\x31\xbc\x1c\x5d\x7c\xac\x33\xb7\x5e\xdd\x17\x38\x8a\xf3\x44\x79\x6b\xc5\x79\x8e\x9d\xec\xd8\xac\x54\x72\x83\x78\xc7\xf0\x5f\xec\x32\xfe\x68\xf3\x1a\x91\x6d\xab\x46\xfb\x52\xe8\xd6\xd4\x27\x7e\x22\x48\xab\xef\xc5\x87\xf1\x55\x35\x08\x25\x9c\x77\xb0\x72\x66\x6a\x03\xf7\x47\x99\x7a\x6b\x27\x77\x95\xe9\xcc\xfa\xc3\x1c\xba\xae\x66\xf9\x10\xd9\x5e\xb4\x78\xe6\x25\xf6\x6d\x59\xd4\x08\x0b\xf6\x52\x01\xad\xdc\x45\xf8\xaa\x9b\xab\xf9\x21\x1c\xd7\x11\x2d\x1e\x21\xf0\x68\xf9\x84\x2d\xe1\x27\x37\x46\x17\x8a\x79\xe2\x5a\xce\xae\xaf\xdc\x03\x95\xe0\xd6\xa9\x9c\xaf\x65\x0b\xd7\xaf\xe3\xb8\x1b\xb7\x2f\x4f\x24\x0b\x35\x2b\x66\x96\xb1\x4d\xf2\x92\x11\x33\x89\xe7\x82\xbf\x65\xa1\xc2\x43\xfd\x6d\x9a\xd5\x82\x47\xbd\xde\xa2\x2d\x82\x51\x9d\x52\x54\xc4\x5f\xd8\xaa\x2f\xf8\xc8\x0b\x6a\x4c\xdd\x55\xc0\xa5\xd7\x3c\xdb\x52\xc3\xa9\xa9\x18\x1f\x70\x9b\x7c\x58\xdc\xba\x7c\x1a\x39\x4d\x7b\x7f\xa6\x9c\xbd\x4e\x61\x18\xb1\x89\x20\x85\xeb\x4b\xa2\x4c\x16\x79\x8c\xa2\x29\x06\xff\xfc\x12\x81\xa3\x4e\x56\xd0\x0f\xaf\xd1\xdc\x28\x7c\x91\x57\xa0\xb6\xa3\xfa\x27\x3f\x56\x6d\xa0\x0d\x6e\xfe\xac\x48\x64\xec\xf2\x3d\x2f\x4b\x64\x2d\x5d\xdc\x22\x09\x84\x66\x4d\xf3\x15\xcd\x46\xe2\x00\x40\xe0\x86\xfe\x57\x7c\xdc\x88\x16\x86\xaa\xe4\xfa\x21\x8a\x1b\xbf\x59\x37\x8b\x3a\x13\x3a\xaa\x29\xa4\x4d\xc9\x1b\x5e\xb4\x9f\xbe\x2a\x99\x50\x7e\x64\x50\x37\x97\x28\x6c\x98\x77\x7c\x65\xb2\xf9\xe0\xae\xc5\x98\xc4\x0e\x1e\x39\x6d\x99\xf0\x2f\xf2\x1a\x00\x04\xb3\x31\x8f\xe2\x25\x86\x5f\xb4\x00\xe5\x7f\xfa\xcd\xb4\x4f\xfc\x85\xda\x66\x7a\x0d\xb4\x5e\x63\xc5\x48\xcd\x95\x17\x25\x32\x83\x93\xa7\x28\x8d\xac\xa8\xcd\xbe\xf2\x43\x20\xe1\xbb\x51\x7a\x0f\x3a\xbc\x38\x52\xfc\x08\x99\x39\x6d\xb6\xf0\x22\xda\x0a\x00\xfc\x6f\x58\xa5\xb1\xde\x30\x09\xfc\xab\x68\xd5\xe5\x41\xb9\xdc\xcf\x9a\x1b\xd0\x10\xb8\x4c\xbd\x0e\x76\xc9\x31\xa8\x0c\x70\xfd\x8e\xd5\x8a\x7b\x48\x48\x24\x21\x9f\x88\x8e\xf4\x39\x29\xf5\x46\x0f\x2e\x1e\x29\xde\x82\xc9\xa7\xb9\x08\x43\x71\x0c\x00\xf8\x0c\xfc\xa0\x81\xa5\xb7\x27\x62\xe5\x85\x5a\x25\xb1\x83\xb3\x57\xfd\x87\x48\x62\x4d\x2e\xca\x26\xa2\xb3\xf5\xca\x0b\x44\x52\x52\xb8\x62\x2e\x21\x8a\xe8\x91\x25\x13\xc7\x7d\x96\x48\x4c\xc4\x6f\xd7\x26\xd1\x20\xdb\x7d\x9a\xbd\x60\x3f\x9b\x01\x00\xbc\x77\xc4\x0f\x9d\xab\x8e\x23\x18\x26\x45\x35\x0f\xf9\x4d\xec\x9f\xea\x4d\xfc\x75\x0c\x9e\x6a\x80\x77\x20\xcb\x47\x39\x9b\x17\x99\x38\x4f\x4e\xe7\xfe\x17\x3e\x28\xed\xe3\xb6\x7b\xc3\xe2\x6f\xdc\x58\xd7\x50\xd1\x4c\xce\x97\x69\xf6\x82\xd9\x1c\x3a\xb0\x92\x17\x46\xae\x50\x2b\xb5\x06\x55\xa7\xe8\x83\x66\x94\xb2\x0b\xd7\x14\xd1\x15\x25\xb4\x04\xe5\x3d\xf9\xee\x8c\x18\x85\xaf\x6c\x59\x02\x4b\x66\x94\x8e\xda\x14\x27\x79\x2c\xbe\xbc\x2e\x47\xbc\x50\x84\x2c\x2a\x17\x46\x08\xad\x6d\xdf\xf1\xb7\xf2\xd3\x80\x2a\x2e\xc9\x79\xa7\xb2\xd3\xce\x2a\xcd\x11\x94\xaa\x29\xc5\x6a\x34\x55\x75\xc3\x58\x4f\x89\x55\xae\xd3\x57\xa6\x71\xe5\x26\xad\x22\xfe\xaa\xf4\x9b\x9a\x1e\xfa\x5e\x12\xa8\xf2\xf2\xda\x24\x12\xcb\xcf\xba\xdc\x12\xf4\x4a\x17\xdb\xea\x79\x47\x44\xeb\x80\x27\x9c\x17\x3c\x48\x31\x5f\x53\xd9\x00\xf0\x6a\xd5\x63\x6b\xb3\x60\x44\x45\xa9\xea\x29\x90\x28\x2e\x99\xff\x97\x7a\x47\xee\x5a\xfa\x25\x6e\x8b\x54\x68\x7a\xbc\xb1\x42\x7c\x4d\x5f\xee\xe9\x2a\x9a\xaa\x19\xe6\xfc\x49\xe0\xa7\x9c\x63\x3b\x93\x17\x25\xb9\x31\x6c\x18\xa7\x90\x7f\x54\x1e\xa6\xa1\xb4\x46\x72\x2f\x16\xdd\x6e\x82\xa0\x26\x55\x50\x3d\x2d\xff\x84\xa2\xb2\x26\x28\xd5\x49\xf6\xb5\xe2\x5d\x6c\x87\x34\xa2\x2c\x63\xe3\x14\x71\xb1\xa9\x62\x6d\x97\xf0\xba\x8e\xe2\xac\xe6\xff\x51\x7d\x98\xfa\x96\x37\x4e\xfa\x67\x98\x2d\xc7\x49\xe0\x2b\x2b\xd5\x04\x74\xbe\xe0\x3a\x16\x35\xb4\x3d\x82\x2c\x54\x36\xcd\x25\xf9\x2e\x8a\xf4\x86\x79\xbb\x8c\xb2\xee\x9a\x82\xd8\x55\xd2\x91\x15\xec\x90\x66\x71\x58\xe9\xfa\xb5\xdb\x84\xa4\x41\xea\xbc\x85\x5f\xa9\xa6\x4f\xbd\xcd\x6d\x97\x3d\x1e\xb6\x91\x3c\x2a\x90\x0a\x7a\x6b\xfd\xf2\x74\x58\x5e\xd5\xe9\xfc\x3e\x9a\xac\x22\xaa\xe0\x6e\xe6\x89\xb2\x21\xca\x94\x24\xdf\x92\x45\x54\x66\xd4\x54\x63\x26\xed\xef\xfa\x41\x1d\xc1\xd8\xe3\x46\x51\x67\xb0\x8c\x0b\x76\x2b\xe7\x43\xe6\x89\x4d\xd2\xa3\xc8\x0d\x00\x10\x89\xb0\x2c\x41\x58\xcd\xe1\x42\x3b\xcc\xa6\x6a\x33\x65\x3c\xcd\xcb\x7c\x87\x3a\x22\x93\x55\xb6\x93\x66\x95\xf8\xad\xf8\x1c\x7d\xed\xe6\xab\xc6\xc9\x0c\xe9\x7a\x8e\x6e\x25\xcb\xda\x2d\x5c\xed\x0c\xd6\x2f\xd8\xac\xf8\x00\xa7\x4d\x1c\x94\x9a\xd0\x08\x00\x10\x65\x61\x2a\xfe\x8d\x9a\x40\xea\x51\xb4\xa5\xf2\x06\x4d\x42\xbd\x6f\x4e\xa3\x47\x67\xda\x97\x7e\x63\xb8\x24\xd6\x16\x67\x33\x1d\x36\x4b\x0d\xbd\xac\xc0\xf5\x1b\xb4\x77\x40\x99\x9b\x43\xd1\x3d\xe8\xd9\x02\x3f\x45\x17\xb2\x7d\xe2\x69\x69\x2a\xfa\x0d\x00\x44\x1e\xd8\x13\xde\xd3\xea\x18\x30\x04\x39\x54\xf1\x1f\xb8\x97\xf2\xad\xbc\x02\x5a\x98\x11\x5d\xea\x0a\x95\x6f\xff\x62\xaa\x80\x3d\x22\xdf\xea\x3f\xc2\xdf\x03\x0e\x69\xe7\x20\x57\x56\x9d\x2b\x5a\x85\x36\x2d\x98\xaf\x98\x8d\x15\x4d\x7c\x29\xb9\x85\xeb\x01\x40\xd8\x81\x3f\xe3\xbe\xaa\x22\xb1\x1f\xf0\x85\x0a\x47\x7c\x0e\x65\x64\xd9\x10\xbe\x26\x9d\x59\x92\x80\x47\x6e\x5f\x61\xbc\x86\x93\x91\x3e\xfa\x65\xf8\xb5\x00\x57\x4d\x1a\xe1\xbd\x2a\x5b\xc5\x25\x4a\xe7\xff\x93\x83\xec\x61\x93\x2c\x24\x5e\xec\x5d\x00\x20\x1c\xcf\x9e\xcc\xa1\x54\x0e\xf1\x5c\xa0\x34\x33\x8d\xfb\xb0\x60\x6f\xd9\x54\xae\x24\x6d\x73\x71\x2d\xd7\x2b\x61\x85\x71\x1e\xe7\x6f\x44\xa2\x0e\xe3\xdc\xf7\xcf\x57\xf7\x72\x4e\xad\x7c\xa5\xbc\xc5\xa9\x9f\x7f\x5a\x76\x89\xc3\x9e\x64\x27\x36\x72\x96\x00\x80\x20\x9d\x5c\xc7\xde\x59\xf1\x4c\x7e\x8e\x85\x96\xeb\x65\x1f\xf3\xde\x96\xae\x93\x0d\x4f\xed\x30\x1d\x97\x8e\x8d\x3f\x6e\xf0\x92\xcc\x0c\x5f\xa0\x35\x8a\x3d\xfc\x28\x45\x57\x45\x51\x2b\x57\x2b\x7e\x0a\x43\xe7\xe7\x4a\xbf\x0a\x96\x4e\x5a\x2c\xda\xc7\xbb\x04\x00\x7c\x21\xe7\x2a\x1e\x5b\x11\x62\xf4\x64\x94\x96\x7d\xd6\x57\xe6\xfa\x97\x18\x74\xc3\x77\x39\x98\xec\x34\x11\x71\xbb\xf5\xe2\x22\x6d\xd8\x4b\xcd\x0b\xe5\x0d\xdf\xcc\x22\x67\xc5\xf0\x15\xd9\x8a\xcd\xd2\xbf\xf3\xde\x4b\x23\xc4\x97\x26\x59\x88\xec\x85\xeb\x01\x80\xf7\x94\x37\x0f\xad\x36\xbf\xac\x22\x69\xbf\xca\x64\x15\x81\xd9\x75\x25\x0e\x65\x5f\x77\xd6\x19\xab\x4b\x84\xb1\xa3\xf4\xe3\x4c\xc3\x43\xdb\x34\xf9\xfa\x74\x9f\xed\xaa\x4e\x8d\x79\xb9\x40\x7e\x51\x25\x9b\xe7\x2d\x19\x92\x7b\x4d\x3c\x24\x2c\x16\xe3\x00\xc0\x4b\xe4\x7b\x20\x2f\xcc\x75\xf5\x11\x34\xbf\xb2\x2d\x35\x67\xb3\x3e\x17\x7f\xac\x5a\xb4\x13\x30\x66\x9b\x33\x62\xf2\x75\x17\x4b\xf9\xa1\xce\x9a\x65\x26\xdc\xfb\x95\x8a\xaa\x5f\xbf\xdc\x49\x2e\x53\xb7\xce\x7d\x27\xc1\x15\xa7\x26\x96\x08\xa3\x25\x2c\x00\xe0\x4d\xe4\xd7\x20\x61\xe6\x94\x66\x2a\xb5\xa9\x6c\x5a\xc3\x40\x56\x4a\xf1\x9e\xda\xab\xc9\xb0\xd1\xb9\xea\xf4\xd6\x1f\x3a\x81\xd9\xb0\xf1\xb0\xfa\x51\xe9\x2a\x6f\xa3\x6a\xae\x51\xb5\xec\x7f\xf2\x15\x5a\x72\xee\x31\xc9\x4c\xd5\xcc\x89\x6a\xc1\x07\xe9\x3a\x00\xe0\xd6\xf3\x5f\x52\xbf\x76\x3e\xcc\x27\xb3\x25\x6d\x64\x01\x37\x25\xbf\x79\x51\xa1\x22\xae\xbb\xfe\x02\xe5\x50\x78\x52\xcd\x26\xda\xfc\x00\xb4\x42\x43\xef\x59\xdd\x58\x5a\xc1\x04\x5d\x62\x8c\xb9\x20\xc5\xae\x5c\xf3\x0d\x96\x58\xd7\x29\x37\xa1\x6a\x00\x90\xd4\xe0\xb3\xa8\x07\x3a\xe3\x0b\x8f\x65\x6f\x6b\xb3\xa6\x54\xa6\x6c\x6a\x3a\x48\x15\xc4\x29\xea\x73\x68\xc2\x70\xef\xea\xf7\xf4\x3d\x01\x3b\x2b\xd6\x31\xa7\xae\xd6\x95\x6e\x66\x55\xb9\x84\x1b\x9d\xa0\x6d\x76\x35\x9a\xfd\xc8\x62\xeb\x21\xe5\x4c\xf4\x25\x00\x48\x50\xdc\x99\x8a\x74\x5c\xa1\x39\x67\xcf\x6a\xd5\xd0\x9e\xa7\x4c\x6b\x8a\xa2\x57\xc5\xed\xac\x1f\xc1\xa0\x87\x4f\xae\x96\x33\x99\x01\xde\xe6\xfb\xac\x9a\xd5\x48\xc9\x37\xf0\x8f\x8b\x9f\xe1\x26\x4c\xb3\x6b\xd2\xb0\xd0\x61\xd6\x8f\x14\xf7\x30\x06\x00\x48\xfc\xf0\x6c\xca\xdb\xf6\xdb\xa0\x4f\x56\x49\x4b\x0b\x58\xba\xd3\xd0\x88\x82\xbf\x62\xdf\xd4\xad\x84\x38\x9b\x3a\xaa\x0e\xc1\xcb\xfd\x5f\x9b\xa7\x21\xc3\x57\xaf\x2b\x71\x43\xbe\xbb\xcc\x33\xcc\x47\xbf\xd8\xf5\xaa\x2f\xe3\xc0\x18\x7b\xc5\x7a\xfc\x19\x00\x88\x9b\x88\x08\x4a\x70\xbb\x05\xc6\xce\xfc\xdd\x7c\x0e\x33\xee\x1c\xde\x60\xc0\x7a\x62\x33\x6a\xb7\x60\x8f\x37\xf9\x54\xbe\xc4\x57\xf8\x0b\xcb\xd7\xe3\x25\xee\xef\x8b\xd3\x09\x7b\xe7\x5f\xfa\x9d\x44\xbd\xdd\x3e\xb5\x1d\x7b\xcd\x98\xed\x72\x35\x5b\x0a\x00\xa2\x6f\xec\xac\xc2\x88\xb6\x00\xee\x92\xcc\xa9\xcd\x56\x9c\xe7\xc9\xab\xea\x2f\x70\xcc\x31\x1d\x35\x52\x4e\x41\x58\x65\xe5\x7c\x4e\xbc\x3f\x50\x86\x71\xb6\xb8\x73\x4d\x15\x9c\x44\xe7\xfd\xba\x2a\x4e\x8e\x5d\x6f\x51\x0a\x87\x31\xc6\x24\xbb\xcf\x59\x01\x00\x22\x1f\x92\xc8\x7f\xdf\xba\x44\xaa\x4d\x3f\xd4\x34\x5e\xf2\x3e\xe9\x75\xdd\x3d\xc9\x92\xad\xa2\x6a\x8d\x78\x77\x68\x45\xc5\x02\x51\xa3\xdf\xa2\x52\x42\xf8\xd5\xed\xa1\xb1\x5e\x18\xe0\xbc\x53\x5b\x2f\xe0\xd8\x35\xaa\xb2\xf8\x2d\x63\x6e\x4b\xdf\xf2\x60\x00\x10\x6e\xe4\x3c\xce\xdb\xde\x52\xa0\x1d\x4a\xdb\xda\xb8\x49\x03\x25\x76\xd5\x4d\x57\x4f\xdb\x92\x51\x75\x4a\x55\xb5\xb1\xdc\x1c\xab\x5c\xe1\x1b\x56\xd2\x2b\xef\x77\x5b\x62\x78\x24\x5b\xe9\xf4\x4a\xf3\x48\xa2\xb0\x43\x94\xf5\xa2\x03\x63\xbe\x48\xdd\x04\x12\x00\x10\x28\xb8\xdf\x73\x57\x37\x1f\x2b\xdb\xb3\xdb\xbd\xa1\xbb\xe4\xe1\x76\x55\x2d\xdf\xf4\x24\x3a\xae\x6a\xb9\xe1\x58\x48\x6d\x79\xbf\xce\xe8\x53\x58\x62\xaf\x49\x5a\x05\x19\xa2\x8b\x86\x3b\xed\xd2\x84\x2a\x0a\xed\x9c\x94\x63\xa5\xa6\x31\xef\x25\x15\xa2\x1d\x00\xc0\xff\xcb\xbb\x9d\x33\xd0\xcc\xad\xfc\x9b\xda\xd5\x90\x63\xbe\xb2\x7d\x62\xad\x4f\x19\x3f\xea\x51\xe5\x93\x92\x69\x21\x9e\xe5\x99\x46\xbd\xcf\x94\xe2\x8b\x7a\x60\xd5\x52\xc3\x28\x4d\x80\xd3\x12\xf5\x6f\x95\xb7\x9d\xa5\xa2\x5f\xf6\x6c\xcc\x17\x49\xa4\x78\x29\x00\xf0\x5b\xf8\x6e\x39\x91\xcd\xbe\xb5\x75\xa9\x41\x0d\xf3\xaa\xdd\x13\x1a\x6a\x3e\x54\xd4\x44\xf1\x2a\x95\x65\xdf\x83\x5f\x94\x8f\x2d\x59\xea\x7d\xa9\x98\x6a\xdc\xb8\xf2\x9f\xbe\x51\xe7\xe6\x34\x51\xad\x2b\x3a\x69\x37\x4c\x11\x21\xff\x33\x76\xa2\xf8\x99\xf8\x2a\x00\xf0\xfd\xf9\x59\xd9\x9b\xfa\xf2\x0a\x3c\x77\x8d\xe8\xbe\x51\x38\x7f\xdb\xec\x8e\x75\x14\xdb\xc8\xa3\x2d\x7c\xaa\x67\xe0\xdb\x86\x52\x9a\xce\xab\xb4\x86\xce\x58\xb8\x1c\xaf\x18\xc1\x7c\xb6\x70\x46\x49\x28\xf8\xc8\x56\xa3\xf7\x87\xff\x8e\x7e\xa3\xfa\x83\x3e\x01\x00\xa9\x19\x4f\xcd\x76\xdd\xf3\x86\x92\x91\xf2\xb2\x3b\x8d\xea\xba\x6d\x6c\xfb\x15\xea\xcf\xc8\xae\x96\x05\xb4\x77\x81\x0f\x1b\x7c\x18\x53\xbd\xb4\x35\x33\x99\xd4\xe5\xb0\xb9\x8b\xf5\x6f\xa1\x7d\x89\x05\xd4\x67\x5b\xae\x1f\x81\xa8\x2c\x27\xaa\x8e\x63\x8b\x01\x40\x5a\x80\xef\xca\x06\xf6\xe4\xd2\xfa\x52\x8e\x76\x7d\xa4\x27\xc6\x7f\x68\xcf\x62\x8c\x8a\x2c\x6e\xde\xcb\x38\x19\x78\xba\xfe\x16\xf3\x88\x17\xa7\x7a\x2f\xeb\xfd\x72\x8a\x39\x06\x0a\x59\x68\x5f\xdc\x06\x1f\xb6\xad\xd7\x0d\xa0\xf1\x96\xcb\x54\x1c\xac\x15\x00\xa4\xcb\xf1\x92\xac\xea\x5e\x1a\xc8\x4e\xa1\x74\x0d\x07\x2f\xc6\x57\xb6\xf1\xa1\x85\x91\x5b\x9a\x1e\x42\x8d\x81\xca\x7a\x4b\x38\xce\x2b\xa6\xea\x0d\xe2\xba\x3c\xa6\x5c\x8a\x2e\x58\x38\xc3\xf4\x01\x73\xb6\x3d\xa0\x1b\x83\x7b\x5b\xd2\x94\xf7\x89\x31\x00\x20\x51\x11\xac\xac\x15\x3d\x24\xa6\x4a\x19\xd9\x39\x09\xab\x8b\xf7\x69\xd5\x62\xfd\x11\xbf\x1b\xbf\x61\xcf\x03\x03\xeb\x1c\x71\x4f\xaf\xe9\x55\xe3\xf0\xba\xe5\x8b\xca\x3a\x88\x25\x0b\xc7\x9b\xe6\x11\x87\x6d\xef\x68\x37\xb2\x13\x2d\x0f\x2b\x17\xb0\xab\x00\x40\x7c\x95\xad\xc8\x24\xbb\x3b\xb8\xd6\x3b\x93\x3a\xfc\x39\x47\xe2\xea\x5b\xf6\x73\x58\x11\xac\xc6\xb9\x9c\xb0\x0d\x37\x6a\xa3\x39\xde\x9e\x83\x95\x6b\x39\x9e\xcb\x9e\x96\xde\xe5\x84\x2e\xf8\x6c\x8c\xe1\x64\xda\x7e\xd4\xf0\x38\x84\xd5\x58\x45\x3a\xc7\x03\x00\xc4\x93\xc8\xf2\x8c\x2d\x5d\x1d\xd2\xb1\xc9\x41\xed\xbe\x92\x84\xd8\xaa\xe6\x3d\x62\x63\xb8\xa2\xc1\x46\x74\x7b\xc3\xb8\x1a\x7f\xd1\x72\xcf\xe9\x15\x2e\x42\xd1\xb2\xc2\x92\xcb\x82\x27\x0b\xf6\x19\xc2\x04\xbe\xd3\x00\x35\xc6\x47\xad\x52\xe4\x19\xbc\xed\x00\x20\xb2\xe1\xbc\x49\x5f\xd1\x79\x48\x73\x78\xc7\xaa\xb6\x44\x75\x5a\x4c\x5d\xd3\x2d\xd5\xdf\x4d\xb5\xf5\x2b\x95\xa5\xeb\x7d\xab\x77\x28\xd6\xaf\xcd\x32\x87\xc9\x1e\x2f\x7d\x55\xfc\x5b\x0a\x2d\xa0\xe9\x69\xe2\x5f\xd3\x86\x17\x35\x88\x42\xad\x8a\x65\x66\x81\x17\x00\x08\x37\x73\x9f\xa6\x39\x76\x8e\x29\x9d\x9b\x14\xd4\xda\x5c\xec\xb5\xf5\x78\xd3\x12\xa3\x57\xd8\x95\x3a\x52\xef\x1e\x80\x56\x35\x68\x17\x79\x1c\x29\x37\xab\xa7\x2c\x4d\x2b\x4e\x50\x3e\x5b\x60\xa7\x3b\x27\x17\xdb\x5e\x2f\x1a\x26\x79\x6c\xd5\x2b\x1b\x26\x7c\x04\x00\x82\x3e\x5e\xd7\xee\xa6\x8e\x93\x15\x63\x13\xaf\xb6\x26\x95\xdd\xdb\xba\xab\xf1\x76\x89\x26\x8c\x51\xe7\x6c\xf2\x0f\x70\xa9\xda\xa4\x7f\xe6\x81\x96\x07\x69\xb1\xa5\xcb\x8b\x47\x15\x7d\x9e\xff\x4b\xc7\x54\x2e\xb6\xbd\xa4\xaa\x93\x8d\xb3\x3a\x27\x6d\x16\x95\x02\x80\x60\x17\xdf\x62\xb7\x77\x07\x51\x9d\x98\xc8\x6c\xb5\xaa\xf8\xb4\x75\x52\x23\x56\x9e\x1f\xb6\xac\xf6\x44\xc9\x23\xff\xb7\x95\xff\x33\xf9\x79\x6c\x2e\x7b\xa0\x57\x2e\xb5\x31\x55\x69\xfa\xe6\x7f\xd2\x59\xab\x94\xb6\x2f\x54\xee\x72\x4b\xab\xff\xa4\x3e\xe2\x95\x00\xc0\xff\xce\x5f\x91\x3a\x7d\xdf\xc4\xc2\x19\x09\x27\xfb\x13\x0a\xef\x46\x7d\xe8\xd1\x52\xda\x43\x6e\x76\x98\xa8\x07\x7d\x53\x5a\x76\xd2\xad\xdc\x79\xf5\xf7\x18\xf2\x45\xff\xaa\x47\xb0\x82\xe7\x50\xcb\x6e\x41\x3e\x93\xdf\x1a\xb7\x20\x51\x23\x05\x6a\x12\x1b\x07\x00\x32\x14\xa7\xa7\x8e\x1b\xd4\x50\x3d\x12\x8e\xf5\xbd\xa2\xde\x8c\xfa\xd8\xb3\x84\xc6\x0f\xb9\xdd\xe1\x4e\xdf\xed\x9b\xde\xfc\x8f\x01\xbb\x4b\xea\xd9\xcc\x73\xae\x56\x55\x6d\x60\xf4\x1c\xa2\x4c\x06\x5b\x4e\xfe\x6b\x1c\x8f\x5c\x1f\xd9\xa5\x0e\xc0\xc2\x01\x40\x16\x88\xe7\xed\xfa\x31\x68\x4b\x87\x12\xfa\xfa\x40\xfa\xcf\xa8\x57\xdd\x47\x19\xdc\x90\x6b\xed\xa7\x98\xcb\x7c\x53\x9b\x0d\xac\x19\xee\x92\xfa\x99\xa0\x8f\xeb\x84\xaa\x70\x48\x31\x47\x5a\xb6\x12\xb1\xb2\x99\x6c\xd8\x8f\x6a\x47\x5e\x2f\xfa\x8e\x0d\x01\x80\x0c\xc0\xeb\x76\x9d\xde\x3b\x03\x1a\x96\x50\xb4\x87\x0d\x79\x44\x9d\xe9\xba\x00\xb1\x42\xfa\xdb\x9e\x41\xef\x7c\xc3\x9a\x0e\xc0\x1a\x77\xbc\x2e\x10\xd9\xe9\x3a\xb1\x12\x41\xa3\xe6\x94\x96\x66\x63\xdb\x6d\xd6\x1a\x86\xe3\xd9\xa3\x16\x14\x05\x13\x33\x01\x40\x1a\x4b\x90\xbb\x64\x03\xd6\xd8\x8b\x84\xf8\x5e\x10\x7b\x13\xa5\xef\xbc\x88\xbd\x0f\x91\xb6\xbe\xc5\xa7\xf8\xba\x34\x9e\xc7\x53\xdc\xd3\x6a\xe3\xf1\x13\xae\x23\x2a\x54\x44\xf0\x9c\xfa\x12\x39\xf1\xc8\x26\x59\xbf\x9a\xcd\x1c\x45\x51\x71\xd9\xf5\x00\x20\x51\xb3\xf5\xbb\x66\xf6\x3b\x71\xbd\xb6\xbd\xee\xd1\x73\x1e\x46\xad\xea\x78\xce\x91\x84\xac\x6e\x1d\xcd\x89\xf3\x79\xda\xf0\x9a\x13\xec\xbe\xac\x86\xce\xf1\x59\xf4\x3f\x73\x0b\x27\x74\x4e\x75\x71\x37\x27\xdf\x06\xd4\x65\x72\x88\x51\x7d\xca\xfd\x9c\x65\x00\x20\x3e\x41\x96\xa6\xcc\xe8\x5b\x2d\x79\xbe\xcd\xaa\x5b\x2c\x99\xb9\x39\xaf\xfd\xb8\x38\x34\x58\xd0\xfc\x48\x24\xf3\xd9\x54\x7f\x54\xf8\xc2\x6d\xa0\x3a\x42\xe8\xbf\x48\x5f\xae\x10\xd4\xcc\xd1\x99\xb4\x82\x09\x36\x9d\xda\x30\x7e\xf4\x68\x67\x45\x2b\xcf\x13\x00\x44\x07\x38\x6f\x76\x66\xee\x99\xa8\x59\x14\x1f\xda\x85\x17\x75\x47\xb6\xb4\x9d\x55\xad\x0d\xba\xda\xf4\x4c\x71\xcf\xbb\xad\x6e\x48\xae\x76\x5b\x53\x95\x20\xf3\x59\xb4\xb6\xac\x4a\xf2\x74\x0e\xd5\xd8\x28\xe6\xda\x9c\xd7\x64\x08\x9f\x8c\x06\xe5\x37\xf8\x9f\x01\x40\xf8\x91\x7b\x3b\x99\xde\x1b\x52\x32\x2a\x4e\xda\xd9\x6d\xb2\x88\x1c\xd3\x66\xa1\xff\x18\xe4\xd5\x34\x5d\xfb\xdd\x7b\x5e\xed\x57\x0d\xb0\xea\x48\xa5\xbe\x68\xa4\xcb\xa3\xd2\xf7\x8a\xef\x73\x42\x0c\x9f\x64\xc7\x6d\x6e\xa8\x3b\x24\xbe\xa3\x3b\xe4\xcb\x85\x54\x00\x10\x6e\xe1\x89\x77\xfc\xec\xf9\x57\x5e\x12\xe7\xda\x99\x50\x1a\x1f\x71\xac\xb5\xbc\x78\x64\xe0\xaf\xc6\x0e\xc3\xd1\x75\xcf\x6b\x65\x3a\x62\x95\xb6\x72\x95\x66\x8d\xcb\xa1\x52\xb5\xea\xfa\x1c\x6f\x83\x56\xe1\x6f\xf3\x50\xbd\x59\xba\x69\xf4\x65\xd9\x0d\xd1\x0c\x00\x10\xfc\xe1\x9d\xdd\x21\xec\xe9\xac\x34\xc5\xde\xed\xf8\xcf\xec\x18\x21\x6f\x5d\x59\x5a\x1e\x78\xb6\xd1\xb7\x78\xc1\xba\xc3\xb5\x53\x0d\xe5\xab\xa0\x8a\x43\xba\xa9\x2e\x7b\x4a\x1d\xd5\xf9\x73\x36\x19\xe6\x2a\xb9\x53\xac\x8b\xee\xca\x96\x59\x8e\x91\x65\x8a\x2a\x01\x40\xa0\xe3\xfd\xbe\xf4\x93\x3e\x39\x67\xe8\xe8\x39\x7a\x63\xde\xc4\x5e\x01\x23\x32\x7f\x7b\xdd\x52\xc6\xfb\x82\x46\xdd\x3b\x66\x05\xc5\x86\xd7\xcd\xda\x45\x2d\xa7\x1c\x02\xfd\xe9\x41\x89\x7b\xa0\x75\xcc\xf9\x1b\xee\xc3\x49\xe0\x54\xe7\xf7\x48\x0b\xbc\xd8\x52\x8c\x85\xa1\xc3\x2f\x8d\xa3\x39\x15\x64\x1e\xf9\x4b\xbb\x5a\x98\xd2\x73\x84\x2e\xa5\x64\xd7\x32\x19\x01\x54\x9a\x2e\x82\xf1\x97\x56\xc2\x9b\xc6\xbc\x47\xbf\x49\x71\x63\x5d\x64\xae\x4a\x74\x07\xef\xb1\x06\x37\x64\xc3\x93\xa0\x18\x67\x03\x42\x47\xac\x2c\x93\x30\x27\x94\x79\xd1\x89\xba\x96\xe6\x7e\x64\x3a\x6d\x14\xed\x62\xf7\x57\xda\x10\xbd\xb4\xa6\x99\xae\x67\xec\xd0\x0a\x19\x05\x4c\x6f\x6e\x01\x33\x96\xe5\x5e\x58\xcb\xda\x06\x06\x6e\xef\x06\x59\x10\xb8\xfe\x07\xb4\x17\x1e\x70\x0e\x46\x96\xa1\x56\x96\xde\xe8\x17\x6c\xe4\xb9\x1b\x85\x7d\xf0\xdd\x43\xc3\x29\x2a\x64\x58\xe7\x5f\x2a\x1b\x99\x53\xf5\x8d\x96\x84\x6c\xd7\x58\xd2\xc3\x90\x6e\xce\x3c\xc6\x26\xd4\xbe\x40\xc1\xcc\x42\x4b\x12\xba\x59\xd5\xd8\xfc\xf5\x4e\x10\x80\x75\x38\xdd\x82\xd5\xb8\xb7\xe5\x72\x94\x81\x6f\x3b\xf3\xa9\x60\x39\xe7\xd4\x81\xd0\xc2\x85\x9c\xfc\x8e\x25\x94\x05\x9c\x31\x95\xa1\xd4\x59\xe4\xde\x22\x0e\xcd\x81\xc4\xd8\x27\xe8\xbe\x64\x54\x7e\x3a\x83\x41\x2e\xdd\x26\x67\x5e\x20\x47\x05\xec\x06\xfd\xd9\x8f\x9d\x18\xd0\x6b\x76\xb1\xa5\x3f\xf2\x82\x38\x31\x74\x2d\x4f\x23\xdd\x3a\x98\x95\xdf\x22\x49\x68\xbd\x59\x70\x41\x9c\x66\xf6\x2a\x7c\x26\x22\x95\x7b\xa9\xa3\x85\xad\xc4\x1a\x9a\xaf\xe0\x4e\x9e\x1d\x5d\x2e\x18\x13\xef\xcb\xb4\xe2\xcf\xf7\x37\xb2\xc4\x3c\x3f\xa7\xa9\x50\x28\x77\x82\xe5\x4e\x24\x89\xf4\x38\x16\x9a\x3b\xce\x38\xd8\xc7\xc9\x73\x32\x8c\x68\x9a\x9b\x1f\xa8\x0b\x2c\x79\x53\x40\xd3\x50\x64\xe7\x0b\xbb\x8b\x4c\x68\x2f\x75\x84\x72\x30\x07\xa0\x51\xe5\x47\x62\xef\x32\x86\x49\x6b\xfd\x76\x32\xeb\xc4\x3b\x1c\x09\x90\x2b\x38\x69\x29\x82\x3b\xb9\xdb\x0f\xa9\xb3\x6b\xeb\x6f\x74\xbf\xc9\x79\x55\xf3\xac\x7e\x78\x9e\x6b\xd5\x52\xd3\xd4\xfc\x2c\x73\x94\xc4\xb7\xa0\xbf\x34\x05\x2e\xa4\xcc\x31\x45\x65\x59\x51\x6b\xf5\x13\x63\x52\xe8\x81\x6a\xa5\xaf\x0b\x73\xb4\xe2\xa8\xc3\x6d\xd6\x7f\x92\x62\x4b\x1d\xec\xc7\xcf\x3d\x00\x64\x5d\xdd\x93\xdd\x59\x99\x63\xdb\x75\xbe\xa6\x3a\x37\xa6\x7d\x9a\xfe\x46\x5e\x69\xb3\x87\xc8\x31\xff\x5b\xfd\x52\x90\x2c\xcc\xad\xfa\x98\x11\x4e\x1d\x5e\x9e\xb6\x15\xa0\x75\x98\x68\x3e\x6b\x19\xa4\x76\xba\x43\x2c\x4b\xa9\xf0\xb1\x2c\x87\x5e\x0b\xd7\xec\x9f\x9a\x85\xed\x4f\xea\x38\x92\x7d\x78\x20\xae\xfa\x50\x2e\xd0\xeb\xa4\xfb\x9d\x17\xdc\x71\x59\x18\x97\x5f\xd1\x12\xc8\x3a\x58\x38\xad\x9e\x95\x6e\xa6\x74\x56\x85\x6d\x81\x69\x3b\x4b\xab\xbd\x9f\x32\xdc\xf4\x6c\x07\x37\x56\xa8\xf2\x9c\xe5\x7e\xa8\x5d\x78\x73\x1f\x3d\x6b\xe5\xd1\x1d\x1d\xf3\xb2\xa9\x07\x87\x55\xcf\xc9\x69\xdb\x9b\xaf\xdb\x99\xfb\xb6\xb7\x47\x70\x34\x3f\xa0\xa3\x87\xb5\xba\x60\x4f\xf3\xee\x74\x27\x4a\x44\x6d\xcd\x16\x67\xea\x6f\x73\x94\xf7\x61\xfa\x79\x23\xc5\x61\x1d\xf3\x95\xea\x9d\xd5\x68\x68\xb3\x68\xd6\xb9\xb1\xcc\xc4\x9c\xdd\x07\x77\x31\x0f\xe6\xee\xef\x64\xb0\x96\xe7\x4f\xac\x2a\x64\xb5\x15\x64\xa8\x09\x70\x4d\xe1\x6d\xb2\x19\x1c\xa2\xd2\x0b\x1c\xa1\x7c\xfa\xd2\x04\x36\xbc\x98\x39\x65\xbd\x3d\x32\x06\x9c\xe6\x74\x1a\xb5\x87\x37\x5a\xae\xc5\x40\x74\xf5\xd9\xb9\x0c\x69\xfe\xf7\x03\x5c\xc6\xaf\x82\x1f\x1d\x1d\x4c\x94\x32\xbe\x72\x90\x35\x8e\xea\x50\x74\x8d\xd5\x4a\x0b\x27\x27\x83\xa1\xf4\x9a\x7c\x23\xf8\x97\x69\xb5\xed\x0b\x74\x85\x55\x15\x50\x09\x9f\x80\xc2\x9d\x32\x91\x37\x88\x9d\xe5\x14\x2c\x0e\xad\x3a\xb3\x9a\xde\x48\x6d\xdb\x5f\xc5\xf0\xa0\xc5\xb5\xff\x8f\x71\x9a\xbe\xbc\xe2\x1b\x33\x93\x61\x51\x34\x8f\x65\xc3\x78\xca\x2e\x60\x1d\x61\x7e\xc8\x1f\x0f\x4a\xc0\xc9\xdb\xf2\xa0\x02\x68\x6b\xc0\x5c\x98\x09\x37\x38\xcd\x42\x9a\xd1\x49\xa3\x5f\x61\xce\x98\xf3\xa9\x29\xb4\x99\xb0\xe7\x60\x1b\xed\x20\x9c\xd3\x36\x9e\x0e\xc2\x66\x73\x2c\xc3\x05\xfe\x9f\x72\x0f\xe3\x39\x12\x40\x2c\x62\xf6\x22\x07\x73\x7f\xb0\xca\xd0\x88\x78\x06\x58\x85\xbe\xf5\x8f\x81\x4e\x60\x3a\xc7\x06\xc4\x16\x5f\x37\xfa\x22\xda\x83\x53\x4f\x8e\xa5\x0c\x70\x80\x81\x27\xd4\x1c\x72\xa0\xc5\x8d\xb6\x8c\x4c\x2b\xab\xa5\xfd\x22\x17\x2a\x56\xd0\xaf\xb1\xbf\x63\xd7\x18\x7d\xec\xff\xe5\xdc\x62\x76\xb3\xaf\xc5\x81\xac\x8b\xec\x53\x7e\xfb\xa0\x11\xec\x43\x8e\x79\x70\x3e\xdb\x60\x39\x06\x5d\x48\x3c\x3d\xfa\xa7\xd0\x55\x12\xd9\x37\x89\x32\x52\x0c\x37\x5e\xa7\x7c\x14\xe9\x4a\x8a\xa8\x37\x85\xa7\x64\xc9\xb4\x73\xc2\x51\x68\x28\xfd\xa8\x20\x2e\x5b\xcb\xb8\xc6\xaf\x89\xdd\xc8\x1a\xcb\xbb\xe5\x07\x80\x9b\x78\x13\x1d\x67\x42\x67\xb9\x16\x96\x9e\x88\x8e\xdc\x7a\x50\x9f\xdf\x60\x50\x75\xaf\x2e\x10\xe9\x5e\xd5\xb9\x15\xe6\x69\xbd\x8c\xc9\x94\x4c\xb5\x48\x5c\x4c\xa5\xa9\x2e\x40\x0f\x68\x22\xe5\x84\x4c\x09\x7d\xaf\x7c\xcd\xd6\x47\xcc\x51\x52\x2f\x9f\xdb\xac\x6c\xb1\xad\x43\x19\x34\x4c\xd0\x64\x89\xc3\x0f\xb9\x79\x83\xef\xf3\x42\xeb\x02\xda\x07\xf2\xa3\xaa\x91\x6a\xc7\x82\xad\x15\x8f\x75\xc5\x85\x09\xe5\x8b\x85\x4e\x94\xc2\x92\x54\x56\x33\xb5\xc2\xc8\x48\xaf\xa0\xbd\xd6\xc5\x6d\xc9\x60\x84\x16\xfd\xf3\xee\x61\x0e\x29\x76\x38\x8c\x03\xa9\x92\x5d\x96\x46\x38\x93\x9f\x33\x90\x9d\xcb\xeb\xa9\x6c\xcd\xc9\xe3\x74\xba\x56\x0c\xe5\x93\xad\x46\x4d\x72\x41\x51\xe3\x23\xfe\xa4\xc2\xce\x3a\x80\x71\x98\xf2\xae\xf2\xc5\xee\x57\xb4\x90\x32\x6e\xf4\x58\xfa\x1e\xe3\xfe\x75\xc7\x99\x1b\x34\xaa\x85\x4a\x70\x84\xfc\x8d\x65\x23\x3c\x59\xb8\xa0\x9f\x99\xeb\x32\x48\x6f\x11\xe4\x2d\xee\x33\x99\x1f\xe7\x2f\xe9\x56\xab\xb9\x05\x5e\xed\xe9\xbc\x80\xc2\xc4\xa6\xbf\x0c\x80\x52\x5c\xb7\x6d\xb7\x0f\xf5\x7b\x65\x6c\x94\x80\x9e\x5e\x72\x77\x1d\x83\xf1\x4d\xf7\x72\x61\x2e\xeb\x90\xb2\xc0\xf2\x34\x74\x55\x78\xa8\xef\x54\xce\xed\xc3\x3b\x9a\xef\xe5\xde\xd9\xbf\xcc\xbc\x2e\xef\x4e\xff\x50\xd1\xff\xf2\x1f\xf7\xac\xe6\xb6\x14\xfc\x69\xdf\x41\x07\x29\x1e\x4d\x6b\x52\x4f\x52\xd5\x35\x35\x51\x2b\xe9\x16\xe5\xf8\xba\x50\x86\xc6\x70\x71\x21\x93\xb5\x43\x25\xb7\x9a\x06\x15\x8a\x46\x9d\xfc\x02\x1e\xce\x99\xbc\xb7\x19\xfc\x95\x9b\xd5\xea\x0c\x79\xe6\x1d\x2d\xe7\x41\xda\x82\x25\x8a\x77\xd0\xcf\xc2\x36\x3c\x0f\x4e\xa2\x86\xe4\x06\xc2\x57\xe8\xd6\x71\x7f\x91\x58\xc6\x4f\xff\x89\xc8\x77\x70\xa4\x63\x2c\x7a\x1a\x0e\x19\xad\xc1\x5e\xa0\xa1\x27\x2d\x59\xbf\xf2\x15\x03\xd7\xc0\x80\x02\x75\x4b\x1a\x68\x28\xec\x2c\x3b\x0f\xfe\xa2\xdc\x54\xf8\x42\xf9\xb4\xb1\xd8\x65\xe8\x01\x3d\x3d\x67\x1f\x9c\xce\xb8\x13\x97\x8b\x00\x2c\xd8\x8f\x44\x06\xa0\x55\x0e\x5f\xd1\x72\x64\xca\xe8\x0c\xec\x0c\xda\x7a\x62\x12\xcb\x93\xea\xda\xff\x95\xa5\xa4\xde\x6f\xd6\xb3\xbe\xd3\x8e\x94\x8d\x05\x13\xe8\xd5\x72\x19\x78\x8b\x51\x84\xad\x80\xb6\x33\x6b\x73\x96\x41\x9f\x58\x57\x62\xbf\xc0\x15\x90\xa3\xdf\x2c\x24\x07\x96\x39\x0c\xa2\x3b\xd1\xf1\xa3\xb7\x60\x66\x6c\xed\xb1\x39\x8c\x4a\xa8\xa4\x6f\x2e\x73\x32\x74\xa5\xf1\x09\xb3\x18\x9e\x59\xc2\x60\xcd\x86\x77\xc9\xe6\xb3\x7a\xe1\x33\xc8\x3b\x70\x0b\x12\x93\x3d\x13\xb2\x44\xbe\xc6\x8e\x82\xae\xa2\xcd\xbe\x5b\xe0\x63\x58\xae\x43\x10\x72\x0d\x77\x1d\xbd\x18\x5b\x8d\x83\x87\x3f\xd1\x77\x93\xab\x7b\x83\xe9\xb7\xc9\x61\x0d\x00\x23\x9d\x3d\x68\x3a\xc3\x04\xd8\x32\x49\x33\xb3\x95\x5d\x08\x57\xb3\x76\xb2\x73\xb3\x2c\xc0\x45\xec\xc2\x98\x69\xd0\x18\x36\xee\x73\x12\x1e\xce\x96\x3b\xcc\x40\x16\xb3\xc9\xd1\x30\x5a\x45\xbc\x38\xf0\x95\xfa\x4a\xbc\xa9\x8b\xa0\x09\x44\xc6\x5a\x03\xdd\x47\x78\xc8\xd0\x47\xff\x20\x9c\x2a\x7a\xc6\xe8\x12\x14\x40\x73\x99\x20\xff\x52\xc6\x51\x56\x0c\x7f\xf9\xd6\x11\x60\x18\x8f\xf4\xb1\x85\x22\xb8\xe7\x16\x5e\x80\xa5\x9c\xff\x8d\xee\x46\x27\x93\xb1\x7b\xdb\x28\xd9\xfa\xd4\xb6\x6e\xaa\x8d\xf6\x4c\xd5\x38\xea\x11\xcd\x62\x6d\x09\x4d\x50\x54\x2e\x58\x49\x4f\x52\x8d\x60\x1e\x67\xf8\x29\x12\xd3\x86\x98\xeb\x64\xe6\x68\x15\x6b\xa3\xe4\xa8\xb7\x05\x98\x23\x3a\xb8\x30\x05\x3a\x20\x40\x2c\x47\x21\xf1\xdc\x8c\xbe\x19\x85\x53\x6b\x1a\x9a\xc3\x0b\x1f\x57\x59\x99\xc7\x52\x5a\xcc\x8a\xa2\x67\x54\xa4\xcc\x82\x7b\x9a\xb6\xa3\x78\x3b\xbd\x9c\x1e\x6f\x90\xa7\xbe\x62\xe4\x68\x35\x51\xb3\x99\xf2\xa2\x14\xaf\x57\xac\x21\xf9\x9b\x05\x4f\xa0\xc5\x92\x59\x96\x6b\xe1\x9b\xfc\xb8\x9e\xca\x82\xc4\xae\x8b\x0d\x7f\x0a\x67\xb6\x93\xa5\xed\x85\xf7\x5a\x26\x2a\xdb\x29\xdd\x0d\x5c\xb2\x9f\x5a\x59\x73\x92\xda\x4f\x6b\xa8\xb8\xb2\xcb\x93\x7e\xaa\xd4\x10\x79\x8c\xf1\xdb\xf0\xcb\xf3\x27\x2b\x58\xfd\x67\x41\x2a\x78\x40\x2e\xb3\x0c\x83\x51\xe1\xb0\xee\x9a\xfc\x3f\x03\xbc\x86\xc9\x05\xc7\x7a\x2f\x97\x9c\x28\x14\x77\x7e\x56\x9c\xa7\xec\x68\xfd\xc0\x7e\x4e\x0d\x6f\xec\xa2\xfc\xa0\x6d\xad\x5d\x99\xa2\xa4\x33\x2b\x12\x22\x7d\x18\xcd\x25\xd6\x9e\xf5\xcc\xdf\xba\x90\x05\xbe\x20\xac\x1c\x65\x99\x0b\x7b\x0b\x4d\x5d\x2f\xf3\x9b\x0e\x6e\xa9\x4f\x2e\xa0\x0c\x46\x97\xcc\x2a\xf4\xe8\x9b\xae\x58\x44\x19\xdd\xd5\xc6\x8e\xa4\xbc\x6b\xfd\x47\xc9\xa3\x7e\x6a\x1c\x96\x32\x9d\x6e\x53\x6d\x8c\x78\xc5\x08\x2e\xab\xf0\x84\x98\x46\x83\xc3\x82\x0d\xe0\x34\x95\xbd\xe5\x00\x74\x43\xf8\x60\x3f\x88\x8f\xcb\xae\xed\x78\x83\xbd\xc8\xf9\x5e\x13\x85\x1d\xc9\xcb\xd6\x07\x61\xc7\xf3\x87\x84\x5b\xb0\x6b\x85\x91\x2c\x1c\xfb\x1f\xe5\x65\xfa\x28\x7c\x38\xad\x27\x9a\xc0\xa7\x30\x5a\xd7\x65\xe1\x7e\xac\xe3\xf3\x3f\xe0\x65\xb0\xf3\xc8\x32\x22\x10\xf5\xde\x57\x81\xb9\xe7\xbd\xeb\x70\xc5\x9c\xf2\x7f\x56\x9b\xb0\x71\x85\xcb\x74\x7a\xcc\x89\x12\x2a\x68\xc0\xc2\xa8\x22\xe6\x23\x2c\x87\xf6\x2c\x8d\xc0\x4a\x18\x59\x51\x5f\xb1\x93\xac\x59\x5e\x77\xf1\xb1\xe0\xb3\xf9\x12\x1c\x81\x5f\x8f\xcc\x23\xdc\x50\xfd\xe0\x7e\x34\x85\xb2\xad\x3d\x19\xcd\xa1\xce\xa9\xba\x89\x26\xd0\xa6\x6b\xaf\xa2\x62\xda\x2b\xfe\x37\xf4\x00\xfd\x39\xd3\x0f\x7d\xc3\x1c\xb5\xfb\x2b\xb6\x88\x15\x14\xc5\xc5\xb2\xc0\x4e\x2f\x08\x1b\x82\x97\xcf\x0f\xc7\x83\x91\xeb\x23\xa3\x88\xc9\xd8\xb4\x01\x15\x62\x01\x4e\x6e\x4d\x45\x66\x82\x9c\x8a\xb7\xc8\x12\xf0\xba\x66\x39\x92\x0e\x6d\xe4\x49\x90\x16\xe8\x06\xfd\x2f\xf2\x11\x86\x52\x1f\xa2\xc1\xc8\xca\xcd\x55\x68\x1d\x6a\xeb\x79\x02\x5b\x84\xfe\x99\xf7\x04\x3b\x86\x3d\x1d\xe9\x8d\xb7\xe3\xe1\x7d\xd7\xa0\x6a\xc2\xd8\x7c\x15\xba\x4b\x48\xcd\x41\xf0\x34\x82\x52\xd4\x0e\xa7\x12\x3b\xb8\x2b\xe1\x41\x22\x85\x76\x06\xb1\x21\x18\xbb\xae\x23\x18\x61\x8c\xbc\x84\x3c\x21\x2e\x7a\x7a\xa2\x2c\xf6\x88\x79\x07\xb1\x79\x6c\x97\x91\x0a\x7c\x0e\xd1\xdf\xf3\x1e\x2c\x11\x56\x37\xda\x82\x17\x85\x16\x65\x13\xa0\xc9\x82\x0c\xe5\x01\xa8\x80\x7f\x9a\xe4\x43\x37\xf9\x9e\xd4\x38\x38\x80\x37\x90\x52\x09\xef\xe7\x79\x46\x3c\x40\x96\x72\xf7\xac\x6d\x40\x8e\x70\x9d\xe7\xa9\x51\x82\x43\x8c\x7c\x8c\x89\x48\x87\x8e\x07\xcc\xaf\x9a\xc7\xb5\x0d\xac\x4d\xea\x3a\xd3\x31\x56\x75\x51\xac\xec\x02\x38\x59\x79\x1f\xff\x04\x2a\x14\x19\x85\x33\xa1\x49\xb2\xb7\xc9\x47\xa0\x1a\x69\x4a\x38\x01\x2f\x13\x9f\xf2\xb8\x08\xdf\x14\x0d\x9b\x97\x89\x54\xf2\xff\x8c\x52\xa1\x6d\x5c\xe7\xd6\x3a\xc6\xc3\xca\x7d\x55\xe9\xcc\x35\xe6\x9d\xfa\x4f\xcc\xa2\x32\x17\x89\x17\x6b\x6c\xf1\x21\xb4\x92\xa5\x33\x06\xe5\x5b\x83\x8b\x74\x7b\x92\x7e\x83\x97\xd4\x7f\xc3\xfe\x40\x98\xca\x76\xcd\x3e\x78\xad\xec\xd3\xdc\xc7\xc8\x14\x31\x7d\x54\x0f\xba\x82\x3f\xbc\x79\x14\x63\x62\xbb\x77\x85\x33\x23\xaf\x25\x40\x5b\xca\x38\xdb\x38\x4f\x34\x8a\x19\x59\x7b\x16\xd6\x31\x1f\x56\x45\xe6\x2e\x61\x11\xe5\xd5\x89\xb1\xe0\x8a\xe2\xee\xd0\x7e\xf0\x8d\x3e\x6f\xf5\x71\x68\x7f\xd1\xb1\xb9\x89\x70\x9d\xac\x67\xd4\x49\xe4\xac\xc0\xd4\x64\x43\x3f\xdc\xdb\x66\xf6\x67\xd8\x77\x45\x6b\xda\x19\x70\xdb\x09\xa1\x03\xe3\x4f\xf3\x08\xe8\x08\x53\x5e\x3f\x21\x27\x97\xe5\x5a\x75\x7b\x7b\x0b\xeb\x41\xf9\x96\x50\x57\xd0\x6c\xda\xb1\x3a\x1b\x62\x68\xbe\xce\x5d\x0d\xef\x52\xcc\x1e\xf5\x0c\x11\x09\x97\x34\xee\xa0\x23\x83\x41\xe5\x32\xfa\xa5\xbe\x12\xf5\x1f\x86\x4b\xf7\x1e\x01\xca\xa8\x6b\x37\x42\x0e\xcc\xe5\xcd\x6b\xb3\xef\x33\xcf\xd4\x49\xb6\xaf\x62\xa1\x95\xd0\xc6\xe3\xa0\x4f\xc9\xad\xd5\x6b\x20\x1b\xdd\xe1\xb9\xee\x30\xa0\x74\x1d\xbd\x08\x59\x20\x64\x74\x7e\xe6\x56\x67\xbd\xab\x43\xb9\xcb\x73\x92\x8a\x73\x38\x47\x72\x4f\xcb\xe7\x73\xf2\xf3\xbd\xf0\x77\x9c\x79\x05\x17\x0b\x6e\x92\x17\x28\x68\xf2\x6a\x92\x4f\x8b\xde\xb4\x9a\xf4\x60\xc4\xad\x99\xcf\xfe\xc4\x42\x67\xbf\x62\x5f\x82\xbe\x0d\x9f\xc3\xfe\x83\x4e\xe8\xf4\xe3\xbc\xcb\x1b\x57\x7b\x85\xc3\xcb\xdf\x68\x3a\xc3\x99\x5b\xc0\x91\x89\xc8\xfb\x85\xed\x78\x12\x59\x45\x1d\x5e\xb0\x95\xdc\x49\xcb\xd9\x71\x98\x74\xa0\xff\x0a\xbb\xc5\x7e\xc3\xdc\xb3\x7a\x88\xbd\x1f\x54\xcd\xee\x64\xb7\xc2\xed\xc3\xc7\xb1\x5f\xa1\xbb\x3b\xd8\x1c\x9f\xc2\x4d\xb5\xb3\xc9\x3b\x94\x38\xd3\x1c\x92\xa0\x26\x4b\x1f\x90\x91\x34\x3f\xec\x30\x39\x9f\x1e\x9e\x3f\xc4\x7e\xc3\x80\x77\x04\xb1\x0f\x30\xcf\x84\x21\x6c\x03\xe8\xb7\x9a\xc6\x46\xa1\xf3\xb3\xb9\x6c\x18\x51\x0f\xb7\x66\x1f\x47\x1f\xb6\x5d\x66\xff\x60\xfe\xab\x66\xb0\x9b\x59\xa0\x81\x64\x67\xb3\xde\x49\x18\xec\x0d\x20\x1d\xe5\xb0\x9d\x20\xdb\xbc\x46\xf6\x70\xe8\x62\x52\x04\xf1\x0a\xae\x09\xed\x24\xee\x23\x22\xf7\x7d\xc4\x5b\x94\x33\xdb\x91\xf8\x8b\x15\x0d\xb7\x64\xa7\xe3\x93\x5a\xc7\x10\x06\xdc\xa1\xb2\x9b\xc8\xc0\x97\xe8\xbe\x12\x5e\xb8\x9b\x78\x2c\xb1\x0a\xf7\x47\xfc\x88\x99\xf8\xb6\x5c\x11\x31\x0d\x57\x27\x6e\x25\x46\xe2\x97\x37\xfe\x20\xe6\x12\x8e\xee\x3e\xc4\x06\x82\x36\xdb\x9a\xd8\x4d\x1c\x1b\x1e\x4b\xdc\x21\x72\x9b\x30\x3c\x97\xdf\x65\x4e\xc5\x73\xf8\xb1\x9a\x5e\x7c\x27\xef\xb9\x70\x22\xbe\x8d\x97\x0b\x89\xf0\x04\xee\xdf\x9c\x31\x78\x3c\xb7\x66\xbb\x2d\x9e\xc2\x8d\xd8\x68\x8d\x33\x38\xaf\xdc\x86\x70\x05\x87\x63\xff\x09\x3f\xc4\x19\x3e\xfc\x0c\xb1\x96\x7d\xa1\x6e\x08\x9b\x52\xd4\x5b\xf2\x0b\xb3\x53\x15\xa9\x0c\x98\xad\x32\x9d\xb7\x11\x9b\xa5\x98\xc5\xb2\xc3\x5c\x65\x97\x33\xdf\x61\xde\x52\xf1\xb6\x68\x2c\x41\xb2\x22\xb8\x1b\x23\x45\xfd\xab\x5e\x60\x6d\xc2\xf9\xf6\x0d\xd8\x07\xfe\xb6\x11\x41\x78\x21\xe7\x60\xf5\x0e\xd4\xbe\xfc\xba\xf1\x1b\x6a\x5f\x7a\x5a\xfe\x04\x9d\x57\xdc\x47\x5e\x46\x97\x19\x85\xf4\xa7\x68\xb0\x3e\x28\xfd\x2b\x9a\xa9\xf9\x14\x57\x81\xea\x8a\xe0\xa0\x6d\xe8\x19\xc5\xa9\x95\x5f\xb0\x31\xd2\xff\xd9\x6f\xc0\x62\x45\x2d\x23\x4c\xd8\x1d\x9e\xa4\x72\x24\x22\x6c\x6e\xd0\xb7\x23\x60\xc3\x07\x69\x03\x82\xd5\x4d\x21\xf6\x22\xea\xea\x91\xd4\xaf\x48\xbb\xf9\x62\x9a\x1b\x72\xbd\x34\x3b\xd6\x16\xb5\x36\x9e\x0c\x9c\x84\x86\x69\x4f\xac\xf8\x81\x6a\x54\x8c\x59\x87\xd1\x97\xd2\x43\x23\x3a\xb0\x02\xc1\x44\xf3\x1f\x64\x43\xe7\x1e\xdd\x01\xc4\xab\xad\x59\x72\x04\xf1\x6a\xa6\xe0\x8f\x90\x88\xfa\xdf\xd4\xc5\x48\x56\xcd\xd6\xdd\x28\xa2\xac\xc8\x8d\x61\x21\x47\x4a\x3d\x36\xc8\xd0\x11\x06\xcd\x0a\x0d\x1a\xa9\x96\xce\xd2\xa2\x35\xf2\x69\x23\xce\x62\x4e\x82\x6a\xf3\x12\xc4\x6a\xcf\x57\x1d\x00\xff\xe9\x6e\x93\x4c\x82\x7f\x76\x2c\xc4\x3d\x91\x11\x2d\x71\x14\x1d\x62\xd7\x10\x9e\xfa\x15\xf1\xac\x7e\x1f\x33\x12\xc9\x34\xaf\xd9\xb0\x1c\xa9\x37\x7d\x5b\x91\x88\xbc\xd7\x06\xcd\x52\xa1\xfe\x0a\xfb\x91\xa3\xd1\xc3\x82\xb7\xb5\xbd\x92\x11\x59\xde\xc5\x43\x62\xb7\xec\xfd\xca\x66\x51\x42\x6e\x30\x77\xa1\xb0\x26\x6f\x88\x71\x40\xf0\xae\x20\x2d\x83\x14\x2c\xa2\x38\xc6\x1d\xe7\xa7\xd1\xc6\x04\xee\xe6\x55\x33\xe6\xad\x48\xe7\x3e\x62\x85\xd8\x29\xb9\xcb\xa0\xcb\x40\x0e\xe7\x1c\xf2\xb4\x76\x94\x38\x3e\x77\x77\xf1\x0a\x91\x31\xcf\xa0\xb4\x13\x9e\xca\x7f\xc3\xa9\x16\xce\x2e\x5c\xc2\x08\x11\x30\x28\xfa\x8c\x89\xfc\xc3\xb4\x51\x71\x3b\xf9\xe3\xe8\xd5\x81\x4e\xbc\x44\x66\xc1\x8a\x85\xdc\x36\x30\xdc\x8e\xc2\x1d\x0b\x93\x00\xc8\xe9\x45\xdd\x6a\xd2\x45\xad\x05\x75\x26\xa5\xf0\x6f\xa1\x5e\x81\x09\xd7\x52\xfa\x39\x13\x04\x65\xd4\x66\xfa\x61\x01\x40\x1b\x4a\xd7\xf1\xe3\x18\x23\x62\xbf\xf0\x5a\x98\xe9\x1b\x9e\xf3\xc6\xb2\x9e\x2f\x7f\xcc\x2d\x84\x50\xbb\xad\x9c\xdb\x48\x02\xa0\xe0\x28\xd0\xb6\xaa\xff\x09\x09\xc6\x63\xe3\x1c\xc1\x1d\x26\x53\x3e\x5f\xb0\x86\x35\x89\x7d\x8d\x5f\xcf\x6a\xa6\x35\xf2\xed\xc0\x5d\x69\x46\x1e\x0e\xb9\xc7\xda\x71\x9f\xc0\x0e\x1b\xc2\xb9\xbb\x90\xc9\xcb\x77\x70\x9e\xa0\xb3\xec\x96\x72\x76\x60\x61\xc0\x39\xce\x42\xec\x51\x65\x84\x20\x16\x3d\xa0\x3f\xcb\xdf\x8f\x7e\x95\xd6\xf1\x17\x63\x33\x09\x98\xd7\x84\xf9\x50\x29\x3c\x57\x8c\xb9\x9b\xcd\xad\xc2\x4e\xc7\x38\x73\x67\xe0\xcb\xd7\xd7\x72\x1a\x71\xf5\x72\x80\xb3\x1a\xff\x65\xb7\x94\xdc\x4f\x64\x0d\x0b\x26\x25\xc4\xf2\xf2\x0f\xfc\x4d\xbc\x49\x5a\x1a\xef\x24\xf7\x98\xb8\x8d\xe7\xc5\xa5\x61\x7b\xb9\x47\xb9\xd3\x0b\x5f\x73\x23\x38\x67\x53\x17\x71\xae\x70\x8c\x5b\x47\x71\xb6\x71\x72\x02\xee\x92\xef\x39\xcb\x97\x95\x92\x7c\xf2\xbd\xdd\x32\x72\x12\xa9\x1e\x76\x86\x7d\x9f\x8d\x97\x2c\xe2\xcd\x53\xda\x17\xc5\x73\x75\x8a\x38\xc1\x29\xae\x8d\x1c\x42\x1c\x39\xd5\xb2\x84\xfc\x66\xce\x1a\xa9\x77\x8a\x3b\x79\x46\xe2\x14\xbd\x9b\xdc\x29\xb6\xf0\x37\x90\xa3\x84\xfd\x4b\x8f\xb0\x9b\x05\x5b\x67\x3c\x60\x07\xf1\xf6\x5b\x38\xb2\xed\x39\x89\xc6\x22\xae\x5d\xc9\x6b\x85\x94\x53\x6d\xfa\xc2\x5b\xc7\x59\x6d\xf4\x06\xaf\x90\x67\xf5\x81\xb9\x46\x32\x4d\xeb\x93\xbc\x9d\x1c\xa1\x76\xdc\x7c\x8e\x5d\xa7\xfc\xe0\x17\xc1\x8e\x97\xb3\x96\xdc\x60\x5b\x49\xce\xcf\xa0\x10\x3d\xc2\x5b\x16\xf1\x84\x92\x37\x56\xbf\x80\xb3\xb3\xfe\xb6\x8c\xe0\x8c\xa9\x45\x38\xf3\xc9\xae\xaa\xcf\xcc\xfb\x64\x58\x85\x4b\xf6\x05\xf6\xf3\x32\xef\xa4\x03\x6c\x51\xf1\xbc\xc8\x0c\xf6\x12\xfd\x79\xdf\x69\xc4\x63\xcd\x8c\xc5\x77\x09\x9d\x72\xd6\xf4\x37\x44\xa0\x64\x9f\x05\x93\xb0\xe3\xf3\x74\xeb\x38\xeb\x5a\xbb\xa4\x35\xe4\xdd\xa6\x4f\x64\x30\x89\x37\x00\xcc\xc9\xe4\x94\x9a\x9b\xd9\x53\xd9\xad\x95\x64\xd2\x54\xf6\xa6\xb2\x97\x11\xd7\x88\xf7\xc5\x63\x7c\x0c\x44\xa5\x6e\x70\x31\x8b\x88\x2e\x9a\x32\x7d\x90\x00\x64\x80\x45\x11\x7e\x51\x30\x45\x2b\xe2\xcc\xee\x3a\x29\xf9\x4c\x76\xb5\xf7\xb3\x4b\xc8\xe0\x96\x3c\x06\x8d\x7d\xbd\xe1\x4b\x96\x90\x9d\x55\x1b\x90\x68\x64\x03\x95\x9e\x11\x79\x44\x79\xe9\x03\x1f\x3f\x22\xd4\xf0\x6f\xf1\x6a\xfc\xab\x7a\xef\xf4\x0e\xdc\x2c\xfb\x63\x71\x1a\xcf\x10\xa4\xa9\xdd\xb4\x47\xb3\x6c\x44\x2d\x9a\xa0\x6c\x29\x9e\x5e\x74\x25\xe7\x0f\x6d\x94\x2a\x3f\x8f\x93\x7e\x5d\x09\x14\x2c\xdb\xf6\x40\x0e\x16\xfe\x17\x56\x24\x7d\x4c\xfd\xe6\xf9\x5b\xe2\xc9\x98\xe1\x5c\x2c\x22\x59\xc9\x53\x3c\x05\x47\xa0\x1f\x00\xc0\x0f\x47\x81\x22\x93\xd6\x21\xe7\xa6\xc8\x49\xdd\x99\x37\x0f\xfb\x5c\x14\x94\xbf\x8b\x5a\xae\x7c\x5f\xd0\x9a\xce\x50\xa8\x28\xf3\xb7\x09\xe4\x53\xa9\x1d\x61\xeb\xa5\x12\x7a\xae\xe7\x71\xf1\x07\xe6\x46\x67\xaa\x28\x1c\xdc\x30\x65\xb5\xa0\x18\x96\x00\x00\x7f\x29\xba\x4e\xf5\x49\x23\xc9\x3f\x28\x34\xa8\xed\x0b\xee\x60\x74\xd5\x40\xe1\x3b\xaa\x83\x92\x46\xf9\x95\x6e\xa5\x98\x4d\x5b\xb9\x6d\xa1\xac\x99\x2e\x0b\x7d\x2f\x75\x61\x4e\xf0\x94\x88\xab\x58\x75\xce\x61\xa2\xb1\x50\xfc\x94\x15\x82\x34\x24\x0c\x00\xf8\x16\x68\x9d\xf2\x94\x3a\x8e\x6e\x12\x50\x8a\xc6\x33\xa2\xd1\xad\xca\xb3\x8c\xbf\x94\xf9\x0a\x01\xb3\x27\x6d\xbe\xdc\x93\x25\x8e\x8f\x95\x5e\x05\xf1\x50\x1f\x49\x32\xa4\xf1\xb4\x15\xbd\x85\x2b\x9c\xc7\x0b\xf3\x91\xd3\x53\xfc\xf8\x57\xb0\xa9\x00\xc0\x03\xb1\xfd\x8a\xed\x45\x99\x70\x3b\x7f\x9e\xca\x06\x71\x42\xc6\x2b\xce\x22\xec\x82\x9f\x72\x0d\x72\x76\xf7\x74\x59\x34\xba\x22\x2e\x43\xf2\x03\xed\xdc\x48\x15\xab\xb1\xe0\xb5\x7c\xd1\x1a\xec\xa6\xd3\xa0\xe0\x0c\x4e\x9d\xb2\x9e\xef\x43\x4c\x00\x00\xee\x2b\xfc\x9f\xec\x8a\x2a\x8e\xe4\x71\x95\xca\xd9\x24\x05\x52\xc8\x9f\x91\x9b\xf2\xcb\x64\xdd\xa4\xd3\xae\x67\x52\x88\x9c\x1c\x1b\x2b\x71\x25\xa7\x85\x88\x45\xe7\x49\x07\x8f\x27\x42\x82\x5c\xe4\x54\x20\x98\x4d\x2e\x9d\x12\xc6\x33\x92\x13\x01\x80\x1b\xc0\x0e\x12\xdf\x55\x26\x4a\x0f\xb2\x5f\x28\xa6\x4a\xdd\x59\x0b\x64\xb7\x25\x82\x5c\xa6\xb4\x49\xdc\x9e\x32\x42\x42\x13\xdd\xd9\xda\x23\x5e\x2a\x1a\x17\xbc\x42\x78\x4f\xb8\x76\xcd\x23\x81\x41\xb0\xc1\xf1\x12\xdf\x97\xbf\x6e\x8a\x03\x77\x88\xfb\x0b\x00\x38\x10\x67\xac\x10\x56\x64\x19\xd6\xe1\xc5\x72\x4f\xdd\x6d\xfa\x4f\xd9\x04\x6d\x72\x36\x2a\x79\xa8\x3e\x90\xec\x2f\x6e\x2a\x9a\xb2\x65\xbe\x28\x4f\xb9\x3d\xf0\xb6\xd0\x41\x2e\x5e\x7d\x95\xff\x42\x4a\x38\xce\xe4\x19\xc5\xe1\x36\xb7\xb9\x4b\x04\xc7\x00\x80\xbc\xcb\x35\xf2\xc3\x15\xa3\xab\x0c\xa8\x4a\x76\xb4\x22\x9d\x36\x46\x2a\x2e\xb7\xcf\xec\x92\x6c\x2f\xd9\x97\x54\x25\x76\x32\x79\x47\xb5\x08\x3f\xe8\xf5\x1b\x0c\x82\x56\xcd\x21\xf7\x7d\xfc\x3c\x95\xda\x61\x1d\xcf\x4e\xee\x68\x93\xce\xe9\x15\x6f\x06\x00\x32\x91\xf7\x90\x97\x2f\x6f\xaf\x3f\x8e\xf4\xc9\x88\xda\x68\xaa\x97\x34\xaa\xaa\x27\xe3\xa3\x64\xae\xf9\x77\xe2\x67\xd1\xab\x32\xbb\xa8\x09\xc2\xce\x62\x8b\x0d\x13\x05\x05\xfa\x76\xf7\x60\xbe\x8b\xfa\xf3\xc2\xfb\xdc\xcb\x8a\x57\x36\x9e\x9c\x3c\x09\x05\x00\xc8\xf1\xfc\x54\x6e\xbf\x3c\xa1\xc5\x17\xb1\x94\x79\x36\x1a\x28\x5a\xe9\x94\xba\x81\x8c\x6d\xe2\x7b\xd5\x7b\x12\x73\x45\x15\x15\xe4\x66\xa3\x70\x77\xd9\x88\xf5\xed\x82\xd9\x26\x3f\xb7\x6f\xbc\x0b\x3a\x60\x61\x25\x97\xaa\xca\xb0\x59\xc1\xb1\x96\x6e\x03\x00\x76\x35\x7f\x00\xb7\xab\x38\x97\xb5\x86\x91\x5d\xae\xca\x6e\xce\xf5\x2a\x8d\xcf\x5d\x99\xf2\xaf\xd8\x29\x6f\x20\x6e\x8c\xe1\x61\x41\x7e\x18\x55\x97\x4f\x09\xf5\xd9\xa3\xbe\x4b\xdb\xb6\xec\x87\xca\x81\x21\x9b\xa3\x96\x87\xb2\x9e\x8f\x7b\x2a\x89\x81\x21\x00\x10\x6a\x50\x14\x3b\x51\xb1\x38\x67\x1f\x63\x7a\xd9\x7f\xb9\xff\x72\xde\x96\x9c\xc9\x8f\x49\xe9\x33\x35\x14\x34\xc7\x0e\x19\x28\x94\x45\x61\x1e\x3a\x2b\xea\x65\x1f\xbe\x9a\x4d\x6f\x58\x76\x5b\x79\x9b\x69\x98\x23\x92\x4f\x00\x1b\xc6\xfd\x96\x38\xc0\x2f\x00\x40\x98\x8b\x96\x61\xe9\x66\x65\x7e\x1a\x7d\xb0\x2c\xa3\x00\xca\x51\x97\x78\x15\x56\xa4\xa4\x9a\x16\x51\x8e\xc7\x62\xfa\x3f\x34\x9b\xd0\xaf\xda\x52\xba\xd8\x27\x42\x6d\xc7\x74\x5a\xb6\x47\xc9\x65\x5d\x9e\x83\xcb\x4e\x41\x25\xe3\xc7\x8b\x5f\x20\x72\x00\x10\xae\x42\x3f\xa3\x50\xb9\x91\xf6\x84\x76\xa7\x34\x8b\x5e\x9d\x7d\xa0\x38\x8e\x91\xb2\xb3\xda\xe8\xcb\x5c\x1a\x73\x4d\x3f\x99\x35\x27\x34\x45\x33\x08\xba\x79\x5f\x29\xda\x00\x65\x2f\xcb\x56\x9c\x84\xb5\x73\x32\x65\x0b\x91\x4b\xe3\x97\x8b\xb7\x60\x4b\x00\x40\x50\x8d\xfd\x40\xd2\xcb\x60\x28\x8b\xfa\xbc\x24\x07\x7a\x99\xb5\xcf\xb4\x1d\x8e\xf9\x3f\x0e\xed\xfa\x2f\xaa\xc4\x51\xe3\xf8\x01\x01\xc5\x02\x45\x54\x40\x05\x11\x15\x44\x09\x09\x41\x52\x1a\x94\x4e\xe9\x1a\xa6\x3b\xcf\x99\xee\xee\x61\x86\xee\x94\xb2\xbb\x50\xd7\x46\xb1\x6b\x8d\x35\xd7\x76\xed\xf6\xbe\xbe\xf7\x7f\x78\xde\xcf\x4f\x9f\x8a\xfd\x96\x34\xe8\xaf\xfc\x69\xf5\x2b\x98\xd9\xa9\x43\x86\x5b\xcc\x5f\x51\xe1\x3a\x2c\xeb\xa8\xff\x74\x8d\x15\x9b\xe5\x9e\xa1\x24\x72\xe2\x66\x17\xc9\x86\x38\xbf\x01\x40\xfc\x93\xbb\x1a\xf2\x6d\x69\xe2\x52\x89\xc3\x4d\x0c\xae\x06\xd1\xdf\x80\xe7\x2a\xcb\x0f\x9b\x6b\xb9\x96\x3c\x1f\x53\x22\x77\x4f\xca\x03\x83\x15\xf7\xbf\x48\x95\xb6\x85\x17\xe6\xd7\xac\x8e\xe5\xb1\xdd\xbd\x15\x87\x79\x47\x66\x8b\x64\x53\x78\x17\x01\x40\x9c\xc3\x2b\x61\x78\x35\x23\xe5\x00\xfe\x62\x23\x4a\xc6\xaa\x9b\xb4\xa0\xa5\x6f\xca\x5c\xeb\xcb\xa5\x45\x39\x47\x8c\x51\x92\xb3\xc9\xc3\xba\x3f\x92\x84\x08\x8b\xa6\x5b\x7c\x70\xcd\x7f\xaa\x74\xf1\xa2\x25\x37\xe5\x97\x45\xa8\xd9\x46\xa9\xa7\x10\xfd\x3f\x9b\xfc\x37\xb4\x29\x4d\xc7\x8c\x49\xd8\x6b\x0d\x4d\xfa\xf7\x30\x4f\x73\xbb\x6e\xa2\xc4\x64\xd2\x6a\xb9\xd9\x75\x06\x9c\x66\x4d\x12\x4b\x17\xaa\x9a\x5c\xdf\xa8\x7e\xa8\xac\x5a\x13\xa2\xd4\xcb\x4f\x2c\x41\xca\x17\x49\xff\xcc\xe6\x48\x18\xe2\x5b\x00\x20\x3c\x29\x4c\xa0\x04\x34\x4d\x69\x9d\x89\x59\xdd\x30\xb5\xb9\xb0\x06\x34\xdb\x36\xf2\x8b\x67\x1b\xbf\x5a\x04\x59\xf6\xfa\x9b\xf5\xd8\xc4\x04\xed\x16\x63\x78\xb8\x5e\x5d\xa9\x7b\xb0\x3a\x4f\x39\x4d\x13\xb6\x78\xb7\x4c\xa7\xcc\x9c\x1d\x24\x7e\x2f\xb3\x03\x00\x61\x94\xa8\x9a\x5c\xdd\x38\xde\x79\x1e\x8d\xb5\xfc\xd5\x7e\xb2\x7a\xbc\x7e\xbc\xd5\xb2\xb9\xce\xb8\xbd\x39\x39\x93\xa2\xd7\x35\xdc\x4e\x38\xaa\xad\x36\xc7\x86\x7b\xaa\x17\x19\x69\xbe\x9f\x15\x87\x74\x19\x8b\xd1\xb2\x0d\xaa\xab\xb3\x67\x8a\x7b\x65\xff\xb3\xf9\x4e\x74\x9a\xb4\xa3\x91\xd7\xfb\x0c\x75\xd6\xc2\xeb\x6e\xad\x5e\x55\x4f\xeb\x5c\x5e\xf4\xc0\x58\xdd\x66\xcc\x04\xf4\x11\xcd\xb7\x12\x2a\xb4\xb3\x1a\x9e\x85\x5d\x51\x9d\xac\xdf\xef\xbb\x5b\x51\x6e\x70\x5b\x1c\x29\xbd\xa3\x59\x3c\x7b\x81\x38\x4a\x7e\x16\x00\x04\x3c\xb1\x3b\xda\x6d\xf8\x35\xf2\x67\x8d\xdd\xe0\x7b\x74\x55\x31\xa2\xef\x3f\xcc\xf9\xec\xd5\xdd\xef\x71\x99\xc9\x15\x1d\xe7\x09\x76\x51\xce\xad\x08\xe2\xdb\xc0\x47\x8d\x93\x94\x99\xcb\x97\x9b\x01\x5a\xe9\x82\x25\xfa\xaf\x8c\xc9\x69\xb3\xd5\x67\x99\x81\x00\x20\xef\x64\xaf\x41\xed\x1b\x2e\xc3\xc4\x57\x1f\x1b\xc4\x62\xd9\xc5\xeb\xfb\x68\xb8\x83\xd9\x36\xdd\x1c\x82\x63\x72\x74\x47\x25\xd1\x14\xf9\xbd\xd5\x86\xbc\x31\xf0\x52\x23\x99\xba\x76\xf9\xd2\xfa\xad\xf4\x0d\x0b\x7c\xf5\xbb\x41\xdc\xb4\x50\xb5\x81\x29\x02\x00\x39\x81\x1d\x8c\x4a\x1b\xba\x88\xdb\x5a\x4d\x1e\xf8\x17\x7f\xb4\x18\xe8\xfd\x46\xb8\x96\x75\xb5\x7b\x1a\xf1\x6b\xf2\xbc\xf6\x77\xe4\xac\xc8\x9b\x2d\x8d\x94\x1b\x81\x7b\x1b\x67\xd3\xe4\xcb\x5d\xea\x0b\x18\x45\x0b\x42\xf5\x70\x28\x6e\x5a\x91\x7a\x23\xcb\x01\x00\xe4\x7e\x6c\x06\xca\x6e\xcb\x30\x79\x5f\xf5\xec\xfe\xbb\x14\xd4\x66\x49\xaf\x0d\x75\x49\x56\x45\x97\x2b\xf5\x77\xd2\x58\xfb\x74\xba\x6d\xa4\xa8\x79\x3f\x63\x6d\x20\xd4\xb0\x0e\xe4\x7b\xfd\x34\x69\xa1\xeb\x0b\xd2\x74\x3b\x58\xb1\xd3\x9a\x55\xfd\x6c\x3e\x00\xc8\x34\x9c\x6a\xa4\xf7\x60\x0f\xe3\x68\x55\x46\xdf\x3d\x30\xa5\xe8\x5e\x8f\x1d\x78\x3c\xf3\x4c\xa7\x27\x94\x91\xe4\xd7\xe6\x0a\x7d\x8b\x74\x6e\x9a\x64\x1e\x0e\xf4\xb2\xe4\xb1\xda\xbc\x6e\x19\x0f\xb1\x65\x0b\x8a\xb4\xef\x38\xf4\x69\x0f\x95\xaf\xb9\x3e\x00\x20\xbd\xc6\x15\x20\x62\x07\x4e\x72\x58\x95\x82\xde\x77\x1c\x5d\xd1\xaa\xee\xb9\x9c\xf6\xcc\x95\x1d\x21\x9c\x89\xc4\x8e\xd6\xb5\x5c\xe7\x88\xa6\xc6\x57\x5c\x4c\xc0\x31\x33\x8d\x7b\xd9\xab\xd7\xf0\x9a\x97\xb2\xa0\x54\xeb\xcf\xdb\x6d\xef\xad\x0c\xe6\x5d\x02\x00\xa9\x1b\xaf\x19\x6e\xd5\xdf\x21\xb5\xae\x88\xee\x99\x94\xa8\x0b\xde\x74\x7e\x95\xb8\x66\xcc\x6a\x5f\x28\xde\x91\x30\xd6\xe2\x2c\x2e\x5d\x7f\xb9\xe1\x86\x78\x6a\xc0\xea\x7a\xa4\x68\x97\x57\xbe\xfe\x1f\x51\xe9\x82\xcd\x1a\x6f\xe1\x33\x7b\x8a\x22\x42\xb8\x08\x00\x24\x2b\x04\x76\x30\xbf\xbe\xdd\xda\x0b\x65\x27\xbb\x9f\x6b\x1e\xe4\x8f\x77\xce\x55\x3f\xdd\xf4\xb3\x2d\x40\x75\x2b\xfe\x48\xf3\x1a\xe5\xc5\xf5\x76\x96\x2f\x8a\x03\xfe\x2a\x93\x51\xde\xb8\xec\xbd\x7e\x96\xac\x62\x41\xb8\x7a\xb3\xe4\xad\x7d\xb3\x1c\x14\xaf\x00\x00\x31\x42\xb8\xac\x36\xa2\xf7\x41\x43\x43\xe9\x48\xb7\x97\x65\x7e\x9e\xb1\x23\xbf\x9e\xb7\xf1\x59\x2b\xc5\x78\x21\xee\x74\x13\xd9\x30\x37\x7c\xb5\x65\xa3\x6e\x83\xdf\x4d\xe3\x17\x4d\xde\x32\xb4\x0e\xa3\x5a\x33\xff\xa1\x6a\xaf\x7c\x8f\xbd\x49\xf6\x50\xf2\x09\x00\x44\xd7\x44\x53\x6b\x14\xbd\xa2\x96\xad\xa5\x2e\x5d\x67\x9a\x5e\xe5\x39\xb4\xff\x6a\xb4\xdf\x48\x68\x75\xb1\xcc\x8c\xab\x68\x5a\x60\xfa\x13\x76\xd9\xfc\xd1\x70\xc3\x4f\x63\xec\xd3\x29\x96\x85\xe8\xe6\xab\x3f\xcc\x1f\x57\x55\x2a\x7e\xdb\x9b\x65\x6a\xe9\x09\x00\x10\xf1\x45\x75\xd5\xaf\x7b\xbd\x3b\x56\x97\x34\x76\x61\xda\xd6\xe6\xf6\xb6\xb7\xb6\x38\x6d\x9c\xd7\xb2\xbb\xf1\x4e\x9c\x53\xe3\x98\x45\x1e\x66\x34\x6b\xea\x9d\xfd\xca\x8d\xf1\x06\xea\x32\x57\xed\xa8\x96\x39\xff\x80\xf2\xbd\xca\xc9\x7e\xbb\xcc\x43\x46\x00\x00\xd1\x5c\x51\x5f\x35\x66\x7b\x19\xaa\xab\xd8\x30\xb6\x0a\xfd\x32\x67\xd9\xd0\xbf\xd8\xc8\xd4\xb4\x01\x2d\x6e\x77\xcc\x8f\x5e\x5b\x02\x3c\x34\xa9\x33\x88\x94\xe9\x7b\xbe\xd5\x83\x82\xf3\xb0\x69\x98\xa0\xfd\xe5\xb4\xcc\x14\x0a\x46\xda\x16\x69\x49\x4c\x0e\x00\x28\xcc\x6c\x62\x75\xe0\xb6\x5b\x98\xc9\xe2\xba\xd1\x51\xec\x7f\x39\xb6\x43\x14\xfc\xc2\xd4\xb5\x03\xee\x84\x9a\x98\xd7\x3d\x0d\xc4\x87\xa1\x11\x1d\x17\xc8\x8d\xbe\xa7\x5b\x8e\x52\x85\x1e\xf6\x0d\x20\xbd\xc1\x29\xc2\xf8\x1a\x3c\x6f\xab\xd6\xae\x65\xfe\x05\x00\x8a\x0a\x36\xb6\xea\xc5\xb6\x7c\xfc\xb2\x62\xbf\xd1\x40\xc2\xe2\xec\xbf\xb7\xfc\x22\x2e\x49\x75\xea\x1f\x26\xad\x8b\xb9\xdc\xe3\x4d\x56\x86\x7a\x77\x54\x51\xe7\xf9\x1e\x6c\x29\xa1\x9d\xf6\x98\xde\xb0\x88\xd1\xee\x94\x69\x6c\x82\x0c\xb6\xa3\x9a\x67\xac\x04\x00\x50\xb8\xb0\xfb\xab\xb6\x6f\x0d\x21\xff\xb3\xf9\xf5\x88\x07\x45\x9e\xad\x1b\xfc\x49\x0d\x4a\x39\xdd\xb7\x9b\x36\x37\x46\xdd\xbd\x81\xbe\x28\xe4\x7d\x3b\x8f\x91\xee\xdb\xd2\xcc\x03\xbb\x3c\xac\x2d\x59\x4c\x6b\x27\x82\xe1\x6f\x16\xcd\xf6\x97\x66\x1d\xbb\x07\x00\xe4\x58\x8e\xbc\x6a\xd6\xd8\x42\xc6\xc4\xe6\xf2\xe1\x79\xe0\xc6\xec\x85\x03\x5f\xc0\xfd\x29\xa5\xbd\xfb\xa0\xe4\x98\xa0\xae\x8d\xd0\xb7\x90\x81\x36\x0d\xf3\xb8\x2f\xbc\xc9\xc8\xea\x77\xff\x69\x26\xb1\xdb\x9d\xd4\x06\x47\x4e\xbd\x5d\xa6\x9a\xc2\x8d\x06\x00\xd9\x30\xb7\xb7\x12\x39\x1a\xc4\xc9\x28\x3a\x33\xb4\x94\x53\x96\x65\xec\xff\xc9\xc1\x25\x3f\xed\x39\xce\xe9\x8a\x9e\xe8\x2c\xe5\x7c\x0a\xc9\x6d\xed\xe2\xe6\xf8\xfa\x34\x0e\x71\x8f\xba\x3f\xaf\x37\xf3\x92\x9c\x7a\xf4\x89\xbc\xfd\x76\xed\xaa\xed\xbc\x6b\x00\x20\x7d\xce\xdb\x55\x91\x3b\xe2\x20\xc9\x2a\x3c\x31\xf8\x59\xfc\x6f\x66\x4f\xdf\x05\x31\x27\x79\x6e\xb7\x49\xec\x15\xed\xd2\xb1\x46\x74\x2f\xf8\x44\x0b\x4b\xd4\xb0\xea\xaf\x06\x9d\xa8\xc8\xfd\x94\x09\x12\xb9\x39\x9d\xd6\xad\x11\xee\x9a\x6a\xa7\x1c\x14\xfc\x00\x00\xc9\x33\x81\x63\xf9\xcc\x61\x40\x73\xbc\x60\x74\xe0\xa3\xfa\x5c\xc6\xbe\xde\xcb\xaa\x33\x49\xd1\x5d\x0d\xca\xc9\xa8\xaa\xf6\x20\xc5\x83\xe0\xd5\xcd\x4a\xf9\xe3\x55\x79\x96\x21\xd9\x43\x77\x9d\xd1\x22\xbd\xe8\x34\xa1\xcd\x92\x30\xa7\xa6\x2a\x6e\x8b\xae\x03\x80\xc4\x4b\x38\xbd\x2c\x60\xc8\xc9\x02\xe4\x9f\x1e\x98\x57\x4f\x4f\x9f\xec\xf9\x65\xbc\x95\x88\xe8\x3c\x6e\x88\x8b\xec\x6a\xab\xd4\xf5\x07\x89\x9b\xce\x6a\x7e\xfa\x4c\x98\x7f\xab\x23\xdd\x43\x0d\xcf\x94\xe9\x4e\x7d\x9a\x4e\xb9\xcd\xd4\x5a\xc5\x7a\x09\x07\x00\xc4\x0a\xe1\xa3\xd2\x91\x2d\x23\x4d\xa7\xf3\x0b\xfb\x47\x1a\xfe\xa4\x63\x7b\xea\x2d\xae\x89\x33\x3a\x4b\xea\x23\x23\x73\x5b\x3f\x1b\xb3\x83\x62\x9b\x10\xfa\x62\x1f\xb3\xb9\x57\xbb\xc1\x7d\x81\x41\xa1\x7a\xe1\xd4\xad\x49\x54\xf8\x4d\x65\xc8\x1f\x4a\xd7\x03\x80\x38\x44\x14\x5e\xba\x7e\x4b\x52\xeb\xb7\xbc\x4f\xfd\xf1\xcd\xbf\xd3\x17\xf6\x78\x37\x3e\x49\x38\xd5\xf1\xc2\x72\x21\xd2\xb5\x55\x50\xdf\x13\xe4\xdc\xf8\xd5\x58\xe7\xc3\x34\x47\xe8\xa7\xb8\xcf\x36\xb8\x69\x32\x9c\x86\xd4\x97\x95\xde\x53\x3b\xe4\x24\xe9\x35\x00\x10\x9d\x14\x51\x4a\x96\xed\x7e\x81\xae\xcd\xcd\xd8\xd1\x80\x91\xa6\x7d\xd9\xea\x8b\xdd\x1b\x57\x39\xac\xc5\x7b\x84\x13\x06\xf6\x10\x4e\x04\xac\xed\x51\x90\xfa\x56\xe4\x75\x38\x50\x0e\xbb\x21\x9b\xd3\xe8\xce\x0e\x26\x73\x18\x28\xb2\xfe\xa1\x7b\xc5\xec\x02\x00\x25\x9e\x2d\x2e\x99\xb5\x9b\x88\xe5\xe6\x46\xec\xf0\xc2\xb1\xd2\x9e\x8d\x1d\xc6\x8b\xe3\x8a\x86\x97\x12\x8e\x84\xe3\x06\xd2\x48\x81\x01\xc1\x3d\xcb\xc8\xff\xac\x28\x6e\x1f\xa3\x9e\x70\x63\x36\x7d\xa0\xdf\x75\x18\xab\x7f\x01\x4d\x9d\xe2\xaf\xeb\x63\x3e\x00\x00\xe5\x5a\x36\xab\xf8\xd5\xae\x2f\xf8\x23\xb9\x4b\xb6\x8f\x12\x1a\xd3\x26\xc6\x36\x11\xd9\x71\x29\x43\xc3\x24\x49\x78\x4d\xff\x0d\xf2\x44\x80\x7f\xf7\x4e\x6a\xe6\x8a\xb2\xf6\x44\xda\x6f\x37\x69\x93\x8e\x71\xc7\xe1\x54\xbd\x0e\x3a\x3e\x25\x43\x57\xc0\xda\x0c\x00\x8a\x27\xec\x9d\xc5\x87\x76\x5e\xa5\xc4\xe6\x7c\xd9\x66\xa2\x4c\xa6\x8d\x8c\xae\xa7\xa2\xe2\x3c\xb6\x6c\xa5\xc5\x84\x47\xf5\xbd\xa2\xc7\x07\xcc\xeb\x9a\x60\x10\x56\xe4\xb5\xc1\xc0\x71\x37\x4b\xe3\x7e\xa6\x9f\xc3\x47\xd3\x19\x56\xc3\x94\x2e\x6d\x33\x7b\x0c\x00\x14\x81\x1c\x6d\x71\xc6\x8e\x4e\x70\x71\x4e\xd3\x56\x3a\xc8\x4a\xab\x1c\x59\x03\xfe\xbd\xe1\xee\xe0\x16\xa8\x3a\xdc\xae\xf7\x35\x73\x8e\xff\x8b\xce\xcb\xcc\xeb\x2b\x22\x5b\x31\xac\xbd\x6e\x9d\x0d\x97\xd8\x7b\x1c\x97\x18\xdf\x71\xfa\xa7\x7c\xd7\x4c\x70\x63\x00\x40\x5e\xc7\x1d\xd8\xfc\x76\xfb\x36\x0e\x26\x27\x7a\x0c\xe2\x60\xd3\xa6\x0f\xaf\xe4\x90\x36\xe8\x06\xb6\x70\xba\xc3\x4e\xf6\x7c\xe0\x7c\xf1\xdf\xd7\x71\x87\x9b\xb9\x62\x51\x0b\xc8\x3d\xe8\xd6\x69\x79\xc9\x4b\x75\xdc\x60\x74\xe3\xed\xb1\xc9\xd4\x00\xbc\xf3\x00\x20\x6b\xe2\xed\x2f\xfa\xb8\x4d\x21\xfe\x9a\x8d\x1d\x8d\x13\xeb\x53\xab\xb6\x3c\x14\x7b\xc5\xfe\xe8\xaf\x15\x4d\x84\xa5\x76\x6f\x15\x69\xfd\x8b\xdb\xbb\x44\xe9\xcb\x9f\x36\xa7\x8b\xe6\xb9\xf5\x9a\x0f\x09\x9f\x3b\x0a\xf5\xef\x85\x52\x9b\xd3\xaa\xe7\x82\x5b\x00\x20\x55\x0b\x66\x17\x85\x6f\xcd\xd2\x2c\xcd\x3a\x30\xb2\x48\x3d\x3b\x65\xef\xe0\x79\xe5\xb7\xd8\x9a\xbe\x6c\xe5\xf4\x75\xa7\xba\x3a\x15\x3e\x7e\x1f\xdb\x5a\xe5\x91\xcb\x3b\x9b\x0a\x64\xe9\x6e\xf5\xf5\x67\xa4\x05\x8e\xc3\x7a\x1b\x89\x93\xed\x52\x95\x83\xc8\x08\x00\x92\x71\xe1\x94\x42\xf2\x58\x4a\xfd\xdd\x2c\x9b\x61\x0f\xd3\xba\x14\x87\x81\x9b\x06\x55\xcc\xd9\xde\x0a\xfd\x94\x75\x91\x9d\xdb\xb4\x6c\x3f\x4e\xeb\x09\xf5\x9b\xe5\xf1\x8d\x66\x55\x96\x5b\x5d\xfd\x74\x85\xc2\x71\xab\x2e\x55\x06\xb3\xcd\x57\xc2\x24\x4e\xff\xef\xe2\x50\xa1\xfb\xe8\xb5\xc6\x92\xcc\xdd\x43\x5b\x2c\xcc\xe4\x53\x03\xd5\xf5\x9a\x18\x45\xcf\x33\xe3\xf8\x3a\xdb\xce\xf5\xfa\x77\x7e\x59\xad\x85\xba\x85\xcb\x3d\x1b\x43\x34\xab\xdc\x8a\x4d\xfd\x2a\x2b\xc7\x83\xda\x67\x72\xb2\x2d\x4d\x69\x2f\x39\x08\x00\xe2\x49\xd1\x8c\x82\x6b\xa3\x55\x2d\x49\x99\xb4\xa1\xb5\x4d\xe1\xc9\xda\xfe\xc7\x0d\x6e\x31\x25\x3d\x75\xe6\xf9\xa1\x0f\x3b\xf6\x98\xec\xfd\xc2\x5b\x6e\xeb\x3f\x2e\x77\x6e\x38\xa6\x1d\x77\xab\x35\x05\xaa\xe3\x1d\xef\x6a\x09\x8a\x42\xdb\x2d\x8a\x06\xe9\x26\x00\x10\x57\x8b\x92\x8e\x2e\xc2\x85\xd7\xfc\xde\xb1\x1c\x1f\x00\x3b\xdf\x3b\x40\x58\x06\x97\x5b\x94\x44\x17\x24\x28\xe3\x93\x96\xa1\x15\x0c\x06\x39\x03\xdb\x51\x77\x9a\xd2\x82\xbf\x93\x3b\x8d\x36\x9f\x54\x1a\x39\x4a\x3f\x4e\xf9\xed\x79\x0c\x1c\xa6\x1f\xb6\x79\xc9\x9a\x02\x05\x1e\xfe\x8e\x0d\x82\x8b\xb7\x47\xe3\x02\x91\x8e\x3d\xff\xe0\x43\x50\x0a\xf3\x0d\x42\x3c\x26\x5c\x7a\x8f\x88\xc2\x4d\xa1\x3f\x25\x6d\xc1\x5f\xa9\x4b\xa4\xcc\x21\x1e\xcb\x31\x51\xbb\xc8\xef\x22\x93\xe9\xb5\xb4\x30\x4f\x21\x58\xc5\x30\xdb\x5c\x62\x9e\x81\xfa\x0e\x3d\xc5\xf8\xa0\x83\xb7\xa5\x61\x43\x30\xd4\x1e\x47\x5c\x0a\x76\xd4\x3c\x07\x4f\xc4\xbb\x48\x7d\x09\xdb\x09\x6d\xf4\x54\x92\x1d\xc9\x07\x76\x8c\xcc\x27\x5f\xcc\x71\xa3\xae\xa0\x0e\x44\x3c\xa2\xfd\xa4\x9b\x3d\x13\xc1\xd9\x60\x83\xcd\x31\xa6\x8c\x19\x71\xe0\x34\x6a\x29\xe9\xda\x58\x0e\xba\x9c\x2c\xee\x8a\xc2\xf4\x50\x7c\x4d\x74\xec\x1b\xea\x0c\xf1\x71\x7c\x26\xcd\x8a\xe6\x48\x38\x49\xb7\xad\x3d\x44\xaa\x65\x2c\xca\x0e\xa3\xac\x06\xd3\x22\x56\xd3\x96\x41\xb2\xa5\xff\x30\x0a\x99\xe7\x6d\x8e\x43\x9f\x58\xf5\xfb\xee\x21\xd6\x41\xe3\x23\x34\x64\x23\x74\xbf\x83\x8b\xfa\x06\xfd\x31\x3c\xc4\xc0\x99\x39\xa2\x22\xec\x2b\xe6\x5e\xca\x25\xbc\x94\xb5\xa2\x66\x8c\x98\xcc\x6a\xcf\x4a\x20\x07\xb2\xbd\xd7\xf3\xa8\x49\xec\xed\x4b\x0d\xf4\x46\x8e\x9f\xcd\x13\x28\x9f\x33\x73\x4f\x73\x5d\x8b\xd0\x6e\x88\x03\xff\x23\x18\x6c\x3b\x8c\x24\x0a\xe2\xf4\xa9\x68\x2b\xfe\x6f\xc1\x0b\x4c\x3f\xff\x34\x59\x85\xab\xe4\x9b\xab\xdb\x08\xd1\x7c\x44\x66\x3e\x29\x95\x1f\x16\x7e\x83\xc2\xe0\xdb\x2c\xcd\xa2\x3d\xe4\xb5\xdb\x2e\x06\x77\x72\x15\x3b\xfd\x6b\x03\x74\xa9\x03\x31\xb0\x5b\xda\x99\xcd\xbb\xe0\x6c\xf5\x39\x8d\x06\xb9\x56\xd5\xc6\x63\xa3\x7e\x2b\x89\x44\x22\xe6\x81\x22\xa2\xf2\x26\xee\x99\xec\x5d\xfa\x6f\xe2\x02\xa9\x26\xec\x16\x99\x20\x99\xe1\xf1\x84\x66\x2b\x4a\xb7\x2d\x66\xfc\xe6\x1f\xdc\x9a\x5c\x4d\x69\x13\xf6\x9c\xaf\x5d\xdd\x52\xda\xd0\x0b\x7b\xde\xe4\xab\x3c\x0d\x1f\x6f\xb0\xe2\x4c\x45\x8e\xd6\x9f\xc1\xa7\xa2\x77\x19\x49\x15\x76\xd8\x7f\x74\xef\x37\x19\x09\x6b\x35\x91\xeb\xce\x92\xb6\x2a\x53\x3d\x2a\xa8\x58\x99\x9d\xad\x88\x21\x12\x9e\x1b\x19\xaa\x8a\x1d\x3e\xd0\x55\x5a\x63\x35\xd8\x63\xce\xaf\xbd\xd0\xc7\x95\x77\xd4\xed\xed\xae\x60\xd9\x21\xf6\x77\xb8\x61\xe9\xa8\x9b\x2d\xdd\x65\x38\xac\x5b\xc3\xbf\x1b\x0b\xf0\x12\xd3\xcd\xd0\xef\xa4\x45\x3a\x9c\xfb\x67\xca\x77\xa5\xca\xb6\x9f\xe1\x2f\xb6\x0c\xef\xab\xdc\xb9\x23\xb8\x93\x5e\x2d\x1b\x9b\xa8\xe7\xd5\xd6\x0c\x27\xc8\x2e\xd5\x65\x0e\xec\x64\xc6\x23\x72\x7b\xde\x63\x4e\xa1\xa8\x1d\xff\x95\x5e\xc6\x1c\x69\x69\x4b\x7b\x88\x0f\xb0\x3c\x0e\xdd\x45\x3c\x6f\x38\xea\x7e\x8f\xb2\x47\x3d\xdb\x76\x92\xfe\x59\xb2\x61\x78\x4e\x65\xec\xde\x23\x1d\x37\xab\x97\xee\x5a\x68\x7a\x59\x3b\x65\x5b\x9c\x2c\x1e\xf6\x62\x24\x17\x3a\x02\x7f\x39\xb8\x02\x93\x89\x9a\xd9\xb3\xa5\x14\x8b\x29\x68\x3f\x97\xd6\x81\x3b\xd5\x44\x09\x6d\x23\xd6\x99\x3a\xdd\xdf\x51\x36\x6b\xd6\xd8\x2d\xa6\xb7\x48\x1a\x0f\xd4\x10\xd4\x35\x5b\x46\xbf\x13\x93\x61\x9a\xce\x27\xa4\xa9\xf0\x22\xd3\x42\xd2\x15\x64\x8e\xb8\x82\xbc\x0b\x8d\xa2\x6e\xa5\x0c\x61\xd5\xb5\x35\xd4\xbf\xf0\x57\xb3\xa7\xd0\x6d\x48\x55\x11\xf3\x18\x04\xea\xcc\xa5\x7f\x43\x0b\xe8\xcf\x6d\xee\xb0\x56\x40\x8c\xfd\xe5\x78\x21\xdc\x67\x74\x21\x21\x13\x31\xde\xe9\x49\x5c\x8a\x4a\x35\xd6\x91\xec\x31\x53\x44\x87\xc8\x36\xd8\xdb\xd4\xa5\x14\x47\xfc\xae\x9a\xc7\xd4\x18\xe2\xd6\x2c\x0d\xcd\x44\x7e\xbe\x7e\x1b\x63\x3e\x2d\x76\xa9\x09\xbc\xc6\xd8\x6f\xb3\x8f\xf9\x05\x7a\xb4\x2f\x1b\xc7\x42\x9d\x1d\xf1\xc6\x6f\xc6\xb8\x74\xe4\x13\xa2\xb0\x15\x86\x3e\x62\x14\xee\x86\x68\x36\x69\x13\xa1\x96\x22\x26\xe3\x88\xdf\x6b\x2a\x28\xdb\xc9\x63\x59\x0b\x69\x6e\x54\xcb\xfa\x5c\xfa\x76\x7a\xe3\xd2\xcd\xa0\x18\xdc\x69\xd3\xcd\x3c\xc8\x24\xec\xc9\xc7\x30\x49\xe1\x43\x49\x58\x39\xd9\xa6\xcd\x80\x6b\x27\x1f\xd3\xcf\xc7\xef\xa7\x6c\x11\x6c\x25\xfc\x4b\x1d\x21\xe7\x90\x02\x68\x87\xaa\x4b\xc8\x0d\xf4\xc7\x99\x61\xd4\x95\xa0\x77\x78\x3b\xed\x01\xc4\xf1\xf8\xc4\xb8\xc6\xfc\xdb\xc6\xc2\x0c\x60\x1d\xde\x95\x8d\xda\x09\xfe\x1c\xac\x44\xdf\x82\x62\x5a\x26\xb1\x76\x10\x53\xcb\xc7\xc5\x41\xb7\xf8\x29\x78\x13\x33\x9d\x34\x9f\xf0\x83\x79\xa1\x2a\x97\x24\x64\x95\x64\x14\x51\x02\x59\xdf\xc3\xed\x68\x76\xec\x76\x8f\xfd\x8c\x85\x9c\x10\x9b\xcb\x90\x96\x13\xb2\x63\x15\x72\x81\x20\xb4\x9f\x88\xda\xc8\xff\xaf\x79\x26\x5a\xc3\xef\x50\x3f\xc7\xfc\xcb\x47\x73\xff\xc6\x95\xf0\x93\x08\xb7\xf0\x7f\xf3\x57\x57\x26\x13\x79\x7c\xe7\x74\x0a\x79\x23\xef\x77\x18\x92\xba\x9e\xf7\xc0\x43\x4c\xaf\xe1\x75\xd8\x2e\x05\x5f\x72\x77\x8d\x1d\xa9\x3b\xa9\xf5\xea\x89\x46\x84\x68\x1c\x1a\x9c\x91\xdd\xaa\x77\xca\x18\xb4\xbb\xf2\x36\x5b\x84\xd9\xa9\x38\x81\x3b\x8b\xab\x90\xf7\x97\xab\x09\xab\x65\xe0\x26\x2f\xd2\x62\x69\xe8\x3a\x16\x65\xad\xf8\x8a\xc7\x4a\x9a\x58\x14\x6e\x8b\x06\xd7\xf2\xaf\x0d\x3b\xc0\x9c\x5a\x7d\x3b\x5e\xd5\xe9\x9b\x97\xd5\x2f\x44\x2c\x68\x9c\x23\xd3\x22\xb7\x5b\x6c\x99\x9e\xe8\x5a\xd3\x73\xcc\x76\x6c\xb0\x61\x6b\xe9\x69\xfc\x0a\x5d\x56\xda\x71\x62\xb8\xfa\x70\x28\x93\x4c\x52\xbc\x77\xdf\x47\x7d\x22\xbd\x6d\xbb\x85\xb1\x4d\x78\x65\x10\x53\xf3\x70\x68\x49\x1b\x15\x86\x1a\xf0\x33\x9c\x81\x5b\xf7\x06\x48\x90\x88\xb1\x2e\x7f\xd0\x07\x45\x69\x9f\x8e\x7a\x81\x29\x6e\xde\x59\x12\x8e\xab\x6d\x58\x9c\xaa\x26\xa8\x4d\x21\x21\x23\xa4\xfb\xda\x4f\xee\x05\x54\xbc\x32\xd1\xf6\x2a\x23\x4f\xac\x19\x10\xd5\xc0\xb7\x49\x5b\xf5\xb5\x3f\x47\x37\xe8\x5f\xd5\x35\x6e\xf9\x5b\xdc\x84\x48\xe9\xc7\x32\x50\x28\x87\xee\x09\x54\x14\xfa\x5b\xfb\xbb\xe2\x2e\xdc\xb4\xe6\x13\xa9\xae\x84\x70\xcb\xda\x10\x04\x49\x6b\x08\x77\x8f\xa7\xfa\xa8\x0e\xd9\x59\x33\xe6\x4b\x82\xfb\x9f\xd4\x4c\xd9\x63\xdf\xf2\xa1\xb6\x65\x07\x4f\x9f\x55\xb7\x7e\xec\xb4\xd8\x1e\xfe\x68\xe8\x3b\xfd\x31\xb2\xbf\xff\x2d\xf2\x24\x5a\xd7\xdd\x58\x1c\x8d\xed\x68\x7b\x94\x72\x0b\x3f\xd9\xb8\x3b\x24\x8b\xe4\x63\x72\x74\xdf\x4c\x39\xa5\xbe\x6e\x97\x47\xdf\x27\x91\xee\x56\x93\xbe\xd6\x54\x6c\x31\x90\x79\xb0\xf4\xd6\xa7\x14\x27\xf8\x72\x1d\x91\xb2\x03\xe9\x2b\x98\x4a\x25\xa2\xd3\x48\x5b\x68\x51\x58\x62\xd5\x6e\xba\x37\xfe\x68\xc6\x16\xc6\x1a\x52\x76\xb8\x2f\x58\x4a\xb5\xf7\xd0\x41\xa7\xe8\xdf\x6c\x8a\x59\x66\xa8\x65\x57\x3d\xf1\x63\xdd\xa5\xc1\xdd\x24\x1d\x82\xdc\xea\x4d\x0e\x45\xd9\x69\xff\x22\xbf\x45\x4f\xf0\x61\x94\xe3\xd8\x5e\x92\x2b\xb5\x07\x2f\xad\x5a\x47\xeb\x21\xaa\x33\xd6\xd3\x8f\x92\x27\xc3\x2e\x82\x76\xb4\x60\x8f\x0c\x48\xc6\x38\x6e\xb3\x9e\x85\x61\x02\x3b\x95\x84\xf7\xa8\xaa\x81\x8b\xc4\x4e\xf4\xc1\x96\x0a\x52\x09\x76\xa6\xd6\x8e\xec\x8d\xd3\xf0\xf6\x52\xe6\x10\x3c\x89\x7c\xaa\x1d\x71\xbc\x72\x27\xcd\x95\xcc\x4f\x3f\x43\xdf\x48\xa5\x85\xd1\x19\x7d\x74\xa9\x87\x2b\x14\x01\xee\xb3\x59\xc5\x0a\x62\xca\xb7\x8f\xe2\x3e\x12\x5b\xfb\xa7\xe0\x6f\x92\xf8\x4d\xfd\x84\x13\xe4\x5c\x35\x48\x1c\xa5\xc4\x70\x4b\x49\xbb\xa8\x1b\x09\x19\xe4\x0b\x34\x64\xc5\x76\xaa\x1d\xbd\x6d\xd3\x7b\x5a\x09\xe3\xeb\xba\x09\xfa\x6d\xa8\xd6\xfd\x34\xa8\x67\xde\xb1\xf1\x63\x0e\xb1\xae\x6e\xd5\x62\x73\xc1\xd0\x5e\x67\x5c\x2c\xd8\xda\xf0\x14\x1f\x05\xbe\x57\x3e\x27\x24\x40\x65\xec\x9f\x44\x14\xf4\x37\xde\x95\xd4\xc9\xc4\x94\x0f\x93\xbf\xb2\xa6\x6f\x72\xa3\x62\x58\x47\xd6\x45\xd3\x6d\xd9\x4c\x77\x13\xe3\x06\xc7\xd7\x06\xc7\x9c\xce\x49\x1c\x15\xa3\x77\xf2\x61\xdd\xab\x31\x87\xf9\x21\x96\x25\xd8\xeb\xbc\x2f\x8a\x7c\xdc\x57\xde\x4d\x56\x23\x21\x8c\x77\x1c\xfb\x0f\x51\xce\xdb\x57\xd6\x47\xfa\xc1\xdb\xb5\x31\x8e\xa2\xe0\xed\x0c\x1d\xa6\x45\xf0\xc6\xdc\xe1\x8c\x65\x3c\x95\xcd\x31\x08\xc9\x3d\x36\xe4\x8a\xe4\xa9\x7f\x74\xd8\xa2\xf6\xaa\x67\x99\xd6\xa1\x3f\xaa\x1c\xa5\x07\xb0\x21\xca\xb9\x50\x3a\xae\x41\x31\x17\x7d\x9f\x30\x57\x3e\xa3\xe4\x33\x71\x48\xfa\x25\xf5\x2b\xb9\x42\x72\x31\xe4\x1c\x35\x54\xac\x74\x77\xa2\x27\x8a\x9c\x6d\x17\x81\x43\xfc\xeb\xfd\xdd\xf0\x1b\xcd\x13\x2d\x57\x91\x1e\x8d\x8f\xf5\x19\x28\xb2\xe5\x9d\xd8\x0d\x7d\xd1\x6c\x45\xff\x86\xcd\x30\x01\xc8\x2b\xb8\x97\xfa\x47\xc5\x91\x84\x7e\x6d\x57\x4a\x07\x89\xad\x0e\x0a\xbe\x46\xa1\x28\xb4\x4b\xb6\xd1\xba\xa4\x6d\xb6\x30\xd0\x53\x78\xb2\xe7\x5b\xdd\xf0\x20\xd8\x94\x8f\xb0\xea\xdb\xa6\xf9\x89\xac\xe9\xbe\x2e\xf8\x82\xba\xdc\xf1\x89\x36\x15\x53\xdb\xfa\x0e\xe1\x84\x9b\xdf\x74\xa0\x68\x37\xfe\x5f\x4b\x5a\x32\x86\x78\xd5\x28\x0e\xb6\x23\x3f\xd2\x12\x97\x6c\xa2\xf9\x2a\xde\xd8\x1a\x19\xc7\xc4\x94\x1e\xb7\xba\xb8\xb1\x4b\x8d\x64\x78\xf3\xf0\x98\xc6\x05\xf1\x6b\x10\x2d\xf0\x46\x61\xfa\xdc\xa8\xc9\x18\xa0\xab\x05\x5e\x87\xdd\xd5\xf6\xb0\xc8\x03\xaf\x6e\xba\x9b\xf4\x9d\xc8\x35\x93\x82\x8e\x92\x4d\xfa\xfe\x25\x61\xd4\x27\xaa\x72\xdb\x71\x06\x4f\x32\xbf\x5b\x08\x7b\xbb\x2b\xa5\xe1\x1a\x3c\x61\xdb\x3d\x35\x0d\xd1\x31\x9a\xc0\x37\xa0\xec\xb7\xd4\x53\x8e\xa1\x9b\xfa\x46\xea\xde\x61\x33\xba\x38\x85\x87\xf0\xcb\x5b\xdf\x27\xed\x25\x2e\x6c\x78\x19\xd4\x4b\xf6\x33\x52\x97\xa4\x50\x85\x6a\x92\xdd\x5c\x86\x87\x04\x31\xbc\x8b\xe1\x54\xfd\xa4\x53\xc1\x58\x5f\xfb\xa5\x7e\x8c\x81\xa9\x7b\x2f\x1b\x67\x5c\x44\xbc\x80\x9e\x81\x09\x68\x2b\xcc\x4a\xf0\x08\x36\xa0\xe4\x1e\x94\x8f\x97\xa6\x2a\xa1\x97\x24\xcf\xe0\x33\xcc\x7e\xca\xfd\xc5\x65\xac\x56\xfa\x6b\xeb\x36\xf6\x37\xa8\x6b\xe8\x03\x7d\x76\xdd\xfa\x8e\x4b\xf4\x34\xf8\xcf\x7a\x2b\xba\x1e\x39\x22\x5b\xc0\x70\x40\xd7\x40\x89\x8c\x16\xec\x7a\xb4\x05\xf4\xc3\xaf\x28\xa9\x04\x6f\x10\xc3\x53\x17\x43\x52\xb2\x2a\x98\xcc\x2c\xa6\xfe\x5e\xec\xce\x42\x30\x86\xac\xd9\xec\x9b\xd0\x8f\xa1\x15\xb4\x59\xc8\x1d\x1d\x33\x69\x65\xe8\x15\xa6\x18\xda\x41\x8c\x4c\x5a\x4a\xcf\xc6\xfe\x02\x5b\xe8\xef\xf1\x66\xd4\x1f\x86\x85\x18\x5f\x7c\x1f\xcc\x21\xcf\x4b\xd9\x05\xcd\xa7\x2e\x0d\x5e\xce\x04\xe8\x09\x8b\xbe\xb2\x3c\x40\xb3\x35\xc4\xee\x66\x72\x06\x9e\x51\x62\x08\xed\x6d\x00\x65\x3f\x91\x67\x80\x53\x63\x49\x85\xe2\xd3\xd4\x57\xe4\x72\x46\x2c\x6d\x80\x22\x40\x4e\xd0\x31\xd4\x1d\x9b\xef\x30\x92\xe9\x56\xc9\xef\xc1\x35\x0c\x71\x90\x05\x8a\x81\x66\x2f\xda\xc5\xe4\x30\x87\xad\xbb\xd8\x4b\x58\x27\xfb\x53\x48\x63\xf4\x9f\x2d\x35\xe4\x60\x06\x59\x77\x96\x7c\x9e\x71\x43\x94\x43\xa9\x07\x37\xd3\x3e\x52\xf1\xe0\x47\x44\x1f\x2d\x13\x6a\x2e\xba\x4f\x4f\x61\xe6\x27\xfb\x32\x92\x58\x41\x41\x0b\x40\x12\x7b\xce\xa2\x66\xe8\x2c\xfb\xa5\xf5\x0b\x16\x8f\xe3\xd7\xbb\x99\xe8\xc9\xfd\xdd\xd4\x40\x3c\xcd\x7d\xa0\xf5\x25\xe1\xb9\xdb\x05\xd7\xc8\x9b\xb9\xa3\xd4\x2e\xca\x46\xee\x6e\x38\x44\x4d\xe4\x9e\x2a\xbc\x4f\x2b\xe4\x3e\x4c\xaa\xa2\x23\x78\xf6\x6b\x5b\x19\xa3\x3c\xbf\x45\x5c\xc8\x95\x17\x35\x25\x89\xf9\x90\xdb\xdd\x79\x05\xf7\x51\xf9\xdd\x42\xc7\x9f\x56\x06\xa9\x2a\x08\x3d\x8a\x12\x5e\x1e\xb1\x5f\xce\x21\x63\x48\xfb\x65\xbd\x30\x15\xf9\x86\xf4\x54\x41\x1c\x75\xa6\xe4\x41\xe2\x72\x5a\xb2\xf8\x7d\xe0\x4d\xfa\xa0\xe8\xc9\xa2\x4c\x30\x48\xd8\x37\xe5\x32\xd3\x91\xdf\xd7\x36\x86\x8d\x68\x5c\x6e\x62\xe3\x82\x2d\x34\x79\x03\x3e\xb0\x7e\x0f\xfb\x32\x21\xc3\xf8\x89\x18\x44\x64\x1b\xbc\x6a\x1a\x49\xfb\x74\xd1\x79\x6d\x94\xd9\x9a\xb0\xf8\x4b\x54\x8c\xca\x21\xe0\x19\xed\x85\x7c\xd4\xed\x31\xa3\x5e\x6a\x63\xe3\x00\x49\x85\xbc\x96\x10\x4c\x5d\x5f\x81\x61\x25\x36\xa6\xfb\x2f\x69\x25\x2e\xa8\xd3\x9d\x39\x8e\xaf\x6c\x03\xf1\xe9\x84\xf6\xe6\x1d\x55\x4f\x88\x6f\x1a\x8e\xe6\xae\x20\x17\xd6\xd7\xc7\x8d\x52\xce\x19\x16\x07\x38\xd3\xca\x35\xf9\x6e\x2c\xc6\x22\xc5\x4a\x9b\x18\xc8\x55\xec\xd1\x1c\x83\x7e\x39\x1c\xaf\x8f\xc1\xdc\x18\x24\x4a\x24\xd8\x8b\x7d\x20\xf4\x09\xf7\xbb\x1b\x8b\xd3\x13\x62\x3a\x82\xaa\x22\x89\x86\x96\xf1\x1c\x13\xe9\x77\xe3\xd4\xb8\x68\x0a\xd3\xf4\xda\xff\x0c\x6d\x8e\x8e\xec\x56\x4d\xbf\xae\x94\xd8\x20\xc0\xeb\xe2\x83\x4d\x72\xb4\x78\x5b\xb9\xae\x1e\xc3\x18\x2d\x11\x3f\xc3\x52\x86\xbc\xa0\x4a\x5c\x5b\xff\x38\x6e\x3a\xfe\x4e\x8f\x57\xe5\x5f\xc4\xd5\x1d\x31\x39\x81\xa4\xc6\x16\xdb\x0d\x5f\x28\xf3\x2d\xd9\xfe\x03\xd4\x61\x43\xa0\x1b\x86\x4e\x52\xe9\x6d\xb6\x81\x04\xc9\x9c\x2e\x11\x5b\x5b\x7d\xd2\xf2\x17\x9b\x52\x3b\xa6\x22\xb1\xab\xea\x0c\xbc\x55\x6c\x02\x42\x45\x06\xd8\x4a\xd4\x58\xed\x7f\xec\x21\xcc\xa3\x7c\x1c\xfb\x36\x3e\x2d\xbe\x97\xe3\x40\x7c\xec\x7f\x8a\x53\x4a\xd9\xe2\x62\xe2\x5c\xa3\x9f\x03\x72\xb8\x7b\x21\x71\xe7\x05\x56\x13\xec\x6f\xcb\x7c\x96\x09\xae\x51\x5e\x60\x35\x23\xc3\xb8\x1a\xd6\x51\xd4\x7b\x12\x96\xf5\x0e\x73\xb5\x16\xcb\x5e\x86\x3b\x93\xf7\x9d\x5d\x4b\x78\x19\x9f\xc1\x1e\x23\x47\xfb\x0b\x38\x73\xa9\xfb\x5c\x88\x9c\x2e\x06\x07\xc8\xe0\x9a\xa1\x1b\x9d\x33\x98\x83\xc8\x79\xe6\x72\xe6\x1e\x94\x5e\xb9\x84\x79\x1d\x63\xcd\x79\xc0\x72\xc4\x32\x88\x17\x59\xb9\x78\x97\x9a\x87\xac\x7a\xc2\xd5\x3c\x3e\xeb\x5f\xd2\x9e\xb8\x4f\xec\x64\xca\x49\xff\x78\xf6\x21\xda\x47\x97\xcd\x9c\x72\xb0\x02\xa8\xe2\xd6\x30\xf3\xdb\xe7\x80\xf7\xf0\xc3\x26\x0d\xe4\x45\xe8\x93\x63\x20\x3c\xd1\xc8\xc6\x40\xe3\xa4\x01\x82\x92\xe9\x4e\xbe\x5d\x7d\x8c\xc9\xa2\x7a\xe6\xaa\x98\x2f\x68\xb2\xb8\x78\x16\x9c\x31\xd3\xef\x0c\xdb\x06\x1c\x70\x59\xc3\x3e\xce\xac\x02\xcc\x9c\x07\x2c\x7d\x6b\x09\x23\x8b\x36\x6e\xf8\xc1\xe8\xa7\xa7\x4b\xdf\x81\x00\x7d\x82\x35\x0f\xc4\x30\x60\xf8\x62\xf0\x09\xe8\x5c\xb5\x03\x2a\x07\x6f\xe5\xf4\x43\xcf\xa0\xed\x1b\x0c\x4c\x09\xb3\xdd\xaf\x82\x15\xcd\x32\xbb\x2c\x61\x3b\xb1\x0d\xc0\x2b\x4e\x3c\xfb\x63\xb3\x92\x3e\x8d\x93\xa6\x4f\xa6\x97\x70\x2a\x24\x65\xf4\x03\x9c\x5a\x68\x0b\x23\x9a\x03\xe2\x1c\x19\x17\x38\xcd\x95\x26\xb0\x9c\x73\x25\x7b\x00\xfc\xc5\x75\x8c\xbd\x0a\x6d\xe7\xe6\xaf\xf9\xc1\xe4\x72\x9b\x5d\xa6\xb2\xe0\xdc\xf3\x56\x09\xec\x6e\x6e\x5e\xc3\x52\xaa\xb5\x7c\x97\x26\x8c\xca\x95\xfb\x0b\x4d\xb4\x69\x32\x0d\x63\x25\xad\x5f\x7a\x07\xfd\x90\x9e\x2b\xf5\x2d\xef\x65\x58\x4b\x58\x59\x8e\x8c\x71\xf1\x89\x98\x4e\xd0\x22\xfa\xb5\x66\x3d\xc4\x17\x79\x2e\xbc\xcc\x94\x09\xe7\x59\x9d\x60\xfd\xcd\xdf\x68\xfa\x42\x26\x9b\xab\x95\xe9\x14\x47\xd3\x47\xde\x47\xca\x0e\x23\x8e\x7a\x92\x8a\xd4\xdf\x47\x9e\xa0\xad\xd6\x25\x94\x9e\xa7\x7d\xd5\x98\x33\xc4\xf4\x6b\xaa\x89\xe8\x3a\xc6\x31\xc5\xcd\xd5\x15\xe0\xb8\x6c\xdf\x42\x0e\xf4\x50\x92\x66\xbd\x92\x15\x25\x5c\x6a\xd8\x4f\x6a\xed\xba\x21\x77\x23\x2f\xef\x68\xe1\x5c\x27\x4f\xb6\xa5\x91\x27\x29\xa6\xe6\x47\xf0\xdf\xd4\x9a\xc6\xf2\x92\x75\xb4\x58\xf3\x68\xfa\x2a\xba\x9f\xf1\x7c\x54\x2a\xc3\x57\xd7\xe8\x2b\x07\xc3\xd4\xcb\x16\xce\x81\x10\xf2\x78\xeb\x5c\xe6\x69\xd1\xa8\xfe\x16\x29\x78\xa0\x49\x16\x49\x3a\xd7\x37\x9b\x33\x85\xcc\xe8\xae\x25\xcf\xa4\x44\x74\xb4\xc0\x37\x51\x67\xb6\x6e\x29\x6e\xa0\xbe\x6a\xe2\x6d\xea\xa6\xdd\xb3\xcc\x8f\xbc\x43\xbf\x6b\x4c\xf1\x0d\x67\xbc\xd2\xfa\x2c\x78\x07\x79\x28\x0c\xd6\x24\x26\x47\x9c\xa4\x0f\x24\xde\x1d\x31\x49\xeb\x49\xd0\x96\x73\x6c\x18\x79\x65\xff\x2d\x12\x8b\xfc\xb8\xe7\x48\xdd\x79\xca\xb6\x4e\x7c\xb1\x0f\x55\xd3\x7a\x73\x53\x2a\x8d\xdb\xf8\x21\xb2\x9e\xce\xaa\x37\xf9\x3a\x32\xe4\xba\x1b\x0b\x3e\x81\x87\x94\x66\xeb\xbd\xcc\x79\xe2\x4e\x73\x8f\xf0\x62\x35\x52\x75\x53\x98\x5d\x5b\x2e\x28\x14\xfc\x53\x97\x4c\x1b\x17\x18\x10\xc9\xa8\x02\x41\x2a\x0a\x5f\xe6\xc0\xff\x81\xd9\x96\x51\xcb\xdf\x85\xf7\x8a\xca\xe5\x33\x88\xc7\x56\x15\xf3\x93\x29\x32\x67\x39\x3f\x84\xbe\x17\x00\xf8\x12\x08\x67\xb6\x17\xfc\x03\xc3\xa8\xe2\x05\x02\xf8\x4a\xfe\x49\x81\x1f\xe2\x06\x2d\x8a\xff\x06\x65\x41\xde\xe6\xef\xc6\x08\x4a\x5b\xf8\x4c\x9c\x20\xfd\x0f\x3f\x89\xb0\x3d\xca\x9e\xbf\x84\x6c\xbf\x6a\x15\xdf\x9a\x2a\x75\xa6\xf3\xad\x19\x25\x00\xc0\xaf\x82\xf6\xd4\x57\xf1\x3f\x23\x0c\xca\x0e\xfe\x4e\x94\x13\xdf\x87\xcf\x44\xab\xa9\x7d\xfc\x74\xec\x54\x64\x26\x7f\x19\x6e\x6b\xa9\x07\xef\x33\x01\x4c\x37\xf2\x26\x49\xd8\xc8\x63\xbc\xfd\x14\x9e\xcf\x6f\xde\x56\xda\x4e\x67\x2c\xef\x28\x18\x00\x00\x7c\x3f\xe6\x6a\xe3\x18\x8f\x88\xbb\xa7\x98\xc7\x4b\xc4\x3f\xe1\xee\xe5\xb9\x13\xee\x53\xaa\x78\x8e\x24\x6b\x44\x00\xcf\x9a\x1c\x5f\xe2\xce\x7d\x4d\xe9\xd8\xb4\x87\x7b\x8f\xe6\x1e\xe9\xc5\x7d\x48\xef\xf5\x19\xe4\xfe\x02\xb3\x9d\xab\x79\x2b\x98\x1e\x00\xc0\x1b\x66\x55\x1a\x36\x71\xee\x52\x5b\x65\x23\x9c\x2b\xb4\x68\x4e\x01\xe7\x34\xed\x12\xd9\x93\x73\x96\xce\x83\x3b\x70\xae\x32\xe2\x8b\x97\x71\x6e\x82\x2b\x36\xde\xe1\x3c\x80\x16\x45\xc8\xb8\x76\xcc\x85\x3e\x39\xdc\xf5\xac\x15\xce\xb5\x5c\x88\x1d\x09\x00\xbc\x59\xec\xfd\x3a\x0d\x7b\x88\x75\x4a\xba\x98\xad\x63\x7d\x65\x7d\x61\xf3\xd9\xae\xc4\x3b\xec\x46\x76\x1a\xec\x2d\x7b\x2f\x5b\xb5\xd9\x9d\x7d\x99\xfd\x78\xa3\x35\xfb\x23\x27\x6d\xfd\x77\xce\x1a\xce\x88\x8f\x2b\x87\xc0\x5d\xe0\xcc\xe2\x1c\xe2\xd6\x01\x00\x37\x83\xeb\xa2\xe6\x31\x3b\xa5\x62\x51\x14\xf3\xa4\x34\x0c\x8a\x62\xbe\x91\x9c\xc2\x53\x58\x8b\x25\xb1\x35\x17\x59\x39\xe2\x9d\x85\x1b\x59\x0a\x71\x58\x2a\x91\x75\x44\x34\x12\x7e\x99\xbd\x48\xe4\xe4\x5d\xc8\x66\x0b\xe1\xce\x1b\xd8\xff\x08\x44\x00\xc0\xa9\xe7\x5b\x2b\x0a\xa0\x32\xe3\x6e\x7e\x0d\x24\x34\x10\xe8\xdb\xa1\x9d\xfa\x05\x58\x4f\xe8\xb3\xf6\x50\xd5\x19\x66\x8c\x66\x73\x3e\x87\xa9\x56\x3d\x49\xfe\xce\x7c\xa4\x2c\x09\xeb\x60\x65\xc8\xdb\x56\x4a\x58\x87\xa5\x87\xe7\xfd\xcb\x8e\x14\xcb\x81\x25\xec\xcf\x82\xbd\xb2\x68\x30\xb7\x7d\x1d\xb7\x10\xec\x68\xad\xa6\xee\x01\x5f\x34\x97\xa2\xb3\xa1\xd0\xc6\xb0\x4a\x5f\x48\x6e\xfe\x92\x37\x1b\x7a\x6a\xd2\x24\x1d\x67\x6e\xd2\x7f\x5e\x57\xcf\x3c\xac\x9d\xb5\x62\x1b\x2b\x5c\xf9\xef\x3c\x16\xeb\x84\x2c\x0f\xc8\x66\xd3\x44\x41\xd2\x30\x70\x4e\xcf\x30\x87\x02\xe6\x74\xc9\x28\x6f\xc0\x96\x8e\x40\x54\x23\xf8\xac\x75\x6b\x85\x04\x5a\xdf\x6c\x9f\xcb\x81\x1a\x1a\x7c\x93\x36\x32\xad\xeb\xe7\xae\xf3\x63\x52\xf4\xe6\x15\x15\xcc\x37\xea\xc9\x79\x05\x2c\xb6\x5c\x0b\xd0\xd8\xcb\x45\xa7\x25\x30\xc6\xfd\xc1\x1a\xf6\x51\x70\x6e\xbf\x0d\xa5\x00\xcc\xe9\x41\xa1\xe6\x80\x96\xce\x96\x8a\x39\xe0\xe3\xb6\x96\x5c\x57\x28\xb6\xb9\x28\xf1\x17\x34\x68\x39\x17\xfa\x9a\x39\xdf\x78\x6a\x85\x3f\x53\xad\x45\xcf\xcb\x67\xb9\x2a\x54\x40\x1f\xeb\x90\x78\x85\xa8\x59\xb3\xbc\x1a\xce\xdc\xab\xb6\xae\x4d\x25\x39\x2a\x3f\xd5\xad\x81\xab\x94\xb6\x88\xd5\xa5\xb1\x8a\x39\xa8\x92\x2c\x7f\xf9\x74\xcc\x60\xdc\x13\xe9\x4f\x7c\x40\x10\x5c\xf2\x94\x78\xcf\xd3\x4f\x3c\x41\xd9\xe7\xd0\x29\x3a\x4c\x7f\x06\x00\xa2\x59\x90\x4a\x64\xa7\x4e\x80\xb9\x32\x83\x54\x51\x75\x13\xc4\x36\x65\x32\x82\x0f\xf7\x50\x20\x51\x29\x25\x77\xe4\x52\x4c\x64\xe6\x0d\x99\x16\x97\x13\x67\x91\x6a\x09\xcd\x41\x01\x12\x25\xd9\xd6\x73\x81\x58\x42\x6d\x70\x68\x13\x29\x18\x18\x00\x10\x3e\x86\xc6\x85\x35\x2a\x18\xfc\x1d\xd4\xa9\x64\x22\x99\x44\x0f\x45\x03\xea\x57\x5d\xbf\xfc\x22\x46\x56\x82\x91\x7d\xc7\xc5\x67\x52\x64\xb3\x09\xcb\xe3\xe2\xa5\x6e\xa4\xe0\xb5\xbf\x24\xab\x28\xa5\x4b\x7f\x89\x83\x69\x03\x0e\xbd\xa2\x24\x70\x15\x00\x08\xb7\x30\x7d\xf8\xf7\x94\xb3\xb0\xfb\xc1\x0c\x45\x00\xee\x2e\xfe\xad\xbc\x16\xff\x19\xd6\x24\xeb\x25\x06\x16\xf3\xa4\x0f\x49\xaa\x8c\x6e\xe9\x74\xca\xf4\x0d\x46\x89\x2f\x75\x68\xad\x40\x9c\x4d\x4f\x5f\x7a\x49\xc4\x02\x9d\x1d\xc6\x85\x9d\xd0\x7b\x00\x10\xce\x61\xa5\xf1\x3a\xe4\x63\xe4\x97\x8c\x39\xb2\x47\x94\xed\xb8\x11\x99\x1b\x15\x59\xcb\x90\xe2\x68\x11\x9b\x05\x92\x23\x74\x9f\xf4\x23\xe2\x6f\x8c\xa0\xd8\x4b\xe2\xd5\x60\xd1\xda\xa9\x22\x1a\xc4\x5f\xda\x28\x3c\xc8\x3c\xe4\x30\x29\xf8\xca\x7a\x0d\x00\x02\x12\xbb\x91\x5b\x29\x63\x43\xfd\xb4\x4b\xd2\x7e\xe8\x0d\x96\x25\x79\xc8\xf4\xad\xa9\x93\x24\x32\xd5\x45\x5c\xf1\x00\xf3\xf7\xa6\x47\xa2\xcf\x2c\x7d\xac\xbd\x68\x1d\xdb\x27\x50\x2f\x6c\x65\x5f\x5c\x8a\x16\x7c\xe3\xd0\x1c\x5e\x09\xe2\x38\x1f\x00\x80\x3f\xc1\x79\xc5\x1a\x97\x1c\x14\x35\x52\xd0\x12\x7b\x11\x1c\x9d\x2c\x86\x8b\x5c\xab\x10\xa2\xbf\x85\x93\x05\x17\x45\x99\x42\xed\xc6\x4a\xe1\x0e\x61\x6e\xf4\x55\xa1\x83\x70\x7e\x40\xbf\x40\x2e\x38\xef\xf1\x82\xff\x53\x40\x75\xb8\xc5\xaf\xe1\x4f\x02\x00\xef\x35\x6f\x2f\x14\x24\xc6\x69\x21\x92\xb3\xe8\xa2\xc6\x82\x5c\x2e\x4a\x50\xab\x2b\x44\xc2\xa3\x2a\x79\xfe\x22\x61\x82\x12\x4a\x7d\x25\x38\xa4\xa8\x8c\xea\x10\x84\xca\xd7\xfa\x1f\xe0\xef\x91\xde\xf5\xc8\xe0\x87\x48\xea\x1c\x7a\x78\x3b\x44\x72\x00\xe0\xc5\x09\x12\x18\x5e\x22\x55\x93\x2b\x61\x95\xf0\x57\x43\x03\x1c\x23\xa4\x9a\x5f\x96\x3d\x12\x02\xf5\xde\xb9\xa3\x02\x85\x31\x33\xa5\x4f\xe0\xac\xcf\x89\x34\xf2\x5b\xb4\x01\x7e\x97\xf8\xcb\x55\x27\xdc\x75\xbc\x01\x85\xab\x43\x12\x2f\x50\x6a\x05\x00\xdc\xc3\x42\x23\x3d\x41\x14\xd6\xee\x88\xaf\x10\xf6\xb5\x26\xd7\x6d\x13\x7a\x35\x67\x96\x85\x0a\xc6\x1a\xc3\x72\x5d\x05\xa1\x16\xab\x14\x4f\xfe\x49\x53\x4b\xe4\x4a\x7e\x8e\xc1\xd6\x8f\xcc\xbb\xa9\x9d\xe3\x9e\xc8\x2b\x56\x5e\x74\xf0\xe2\x3e\x95\xb9\x02\x00\x97\x28\x9a\x47\xd3\x08\xff\xeb\x2e\xc4\x1d\x14\x16\x77\x16\xd7\x2d\x15\x5c\x6d\x5f\x51\x7a\x40\x50\xd4\x72\x36\x67\x84\x7f\xb7\x29\x2e\xf9\x14\x1f\x6d\xe1\x45\xdc\xe7\x7d\x31\xf1\xfc\xc2\x79\x74\xfd\x1c\x77\x17\xee\x67\x75\x9c\xc3\x72\x2e\x47\x6e\x03\x00\xdc\xa9\x22\x34\xd1\xd0\x88\xaf\xee\x40\x8a\x2c\x07\x6a\xd5\x95\xe7\xcd\xd3\xea\x18\x85\xe5\xa6\x02\x04\x94\x1e\x6f\x30\xa1\x46\xe3\x94\xba\x11\xac\x43\xe8\x09\xcd\x18\xbe\xdf\xc7\x4e\xd5\x40\x82\xb9\x4c\x2a\xd0\xd4\x1c\xfb\x3d\xb2\x08\x06\x16\x00\x24\xb1\xcc\xc5\x44\xd7\x86\xe3\xb0\x85\x48\x2f\xcb\x8c\xba\xab\x95\xbc\xfa\x22\x84\xae\x70\xbe\xf1\x00\xaa\x62\xd3\x1f\xc3\x2c\x4c\x59\x5c\xa6\x2e\x08\xa7\x08\xad\xd7\xc4\x12\x5e\x7a\xbf\x52\xad\x27\xd7\xb9\x5c\x52\x2c\xa1\xcd\xb4\xbf\x21\xfd\xc5\xb8\x0e\x00\x92\x99\xcc\x75\x04\x4b\xc3\x42\xf8\x1e\xc4\x1e\x73\x29\x32\xa1\xd2\xdb\x34\x80\x9a\x2c\x18\x37\x7a\x61\xb0\x9b\xb6\xe9\x79\xb8\xf5\x71\xb3\xb4\x5b\x09\xa1\xa1\x15\xea\xd3\xa4\x2a\xef\x4b\xca\xab\x94\x16\x97\x49\xf9\x29\xda\x2f\xfb\xb7\xd2\x9d\x20\x1d\x00\xc4\xe7\x99\x32\x3c\xd2\x7c\x14\xf3\x1d\xbe\xb5\x7e\x19\x2e\xac\x22\xce\xa8\xc1\x63\xf2\xbf\x18\x6c\x08\x87\x36\xd9\xe9\x10\xa4\xe0\x0d\x74\xcd\x00\xf9\x4a\xc8\x53\xd5\x25\x6a\xbd\xb7\x48\xf1\x91\x9e\xed\x72\x56\x3e\x15\x5c\x3b\xdd\x5d\x3a\x9d\xe9\xf4\xff\x2d\x8a\x16\x77\xb0\x1e\x41\x32\xd4\x4d\x18\xef\x90\x45\xe5\xf1\x86\x54\x4a\x79\xbe\xa3\xee\x02\x35\x77\x63\xb8\x36\x9e\x86\x88\x3d\xa9\x36\xd1\x5b\x42\x72\x95\x13\x8c\x57\xde\x61\x0a\x07\x28\xd6\xe5\xa8\x2c\x82\xd9\x33\x7d\x93\x24\x9b\xf5\x04\x00\x44\x1c\xf6\x59\x2c\xd9\x14\xcf\x38\x08\xdb\x62\x18\x00\x7d\xca\xc2\xf5\xf3\x40\x6d\x9e\xab\x76\x04\xf2\x4c\xab\xd6\xf8\x42\xe7\x62\xed\x55\x32\xa6\x26\x78\xb7\x62\x92\x55\xbd\xf2\x9e\x7c\x0d\x3b\xd6\x65\x9b\x94\xcc\x59\x3a\x9d\x2d\x6e\xe0\x1c\x04\x00\xe1\x71\xee\x74\x34\xcb\xc0\xe3\x3f\xab\xf9\x4f\x3f\x93\x7f\xab\xe4\x80\xb6\x91\x7f\x34\xe7\x94\x66\x3d\x7f\x67\xea\x7a\xd5\x39\xfe\xae\x98\x69\xca\x58\xfe\xe1\xa0\x57\xf2\x76\xfe\xb9\x95\x85\xb2\x59\xfc\x0b\x2e\x34\x49\x1d\xff\xe0\xf4\x6e\x51\x17\x3f\x13\x00\x04\xb7\x79\xfd\x48\xa4\x3e\x59\xb9\xab\x7a\xbe\xf6\x6f\xe5\xd4\xcd\xef\x34\x42\x45\x6c\x76\x82\x7a\xa9\x5c\x9b\xfc\xaf\xf2\xa0\xec\x5a\xd4\x53\x45\xbc\x6c\x6e\x10\x20\xdb\x2b\xdd\xb0\x62\x87\xd4\x5f\x92\xe7\xe2\x2e\x36\x8b\xc3\xa6\x77\x0a\x1f\x09\x77\x00\x80\x60\x29\xff\x17\xfc\xb9\x0e\x5e\x1f\x54\xa9\xd6\x02\xc6\x9f\x45\x46\x75\x9b\xa1\x37\xf3\xa3\x2a\x5d\x1f\x9f\xf4\x97\xe2\x8d\x76\x32\xf2\x85\x5c\xa1\x89\x5f\xbb\x56\x36\x57\x65\x5e\x61\x2b\x51\x2b\xfa\x17\xea\x44\x3f\x65\xa8\xe9\x44\x61\x9e\xf8\x0a\x00\xf0\x2d\x42\x57\xf8\x1a\xed\xab\xc6\xbe\x8a\x27\x9a\xfa\x86\x35\x85\x1f\xd5\x71\x66\x6d\x26\x5c\xf9\xd6\xf4\x4f\xd2\x26\x85\xc1\xe8\x12\x29\x90\x07\xe9\xd7\x04\xde\x93\x1e\xd3\xba\x2c\x3f\x2c\x09\x57\x8d\x2d\x2c\x10\x0d\xc8\x9f\x4c\x2f\x12\x4e\xfd\xff\x16\x25\x5d\x28\xac\x33\x68\xc1\x56\x46\x45\xb1\x26\xa0\xf9\x42\x21\x5d\xf5\xa4\xf1\x6b\xc6\x4f\xa5\xa6\x61\x46\xe2\x47\xc5\x9a\xfa\x9f\x91\xeb\x65\x93\xc6\x23\x81\x5b\xa4\x35\xfa\x8c\xe5\xf5\xe2\xab\x1a\xca\xc2\x70\x51\xb4\x72\xd5\xf4\x2a\x41\xab\xb4\x1e\x00\x78\xff\x08\xef\x94\x6f\xeb\x8d\xae\x89\x2f\xc4\x74\x8d\xc3\x96\x64\xd6\x77\xc4\xc3\x81\x64\xaf\xd6\x73\x48\x9b\x68\x9f\xe6\x40\x74\x4c\xf0\x91\x86\x52\xec\xc8\x2a\x7e\x7d\x09\x21\x7f\xc9\x45\x43\x08\x39\x64\xce\x37\xcd\x33\x5a\xa4\x4d\x8c\x52\x03\x2e\x03\x00\x59\x18\x73\xb2\x9c\xd0\xd3\x0c\x63\x16\x86\x76\x2d\x82\xfb\x65\x62\xdb\x3b\x11\xff\x26\xfd\x68\x0d\x45\xed\x8f\xb6\x6b\x1a\xc2\x1c\x0b\xee\xb5\x3c\xc0\xfd\x59\x45\x30\x3d\x27\x12\x96\x5c\xd4\x5f\xa6\xcc\x99\x3b\x4b\x63\xa4\x5d\xb6\x81\x2b\x53\x40\x1c\x00\x48\x7f\x30\x27\xcb\x97\x75\x7f\x81\xdf\x2a\xf8\xd4\x49\x47\x22\x32\x03\xda\x7e\xa2\x3e\x25\x9d\x69\xe9\xc4\x34\x44\xdd\x6c\x72\xc7\x51\x82\x79\x96\x32\x82\x68\x55\xa1\x89\x40\x1a\x5f\x32\xa1\xaf\xa3\x2e\x9b\xeb\xa1\x09\xa1\x77\xd8\xa8\x15\x9f\xc1\x0f\x00\x20\xdd\xca\x72\x28\xdb\xd0\xa5\xc2\x1c\x2a\x88\xec\x08\xc0\xbe\xcb\x68\x69\xbd\x82\xf7\x4e\x4a\x6c\x66\x11\x34\x51\xe8\x46\x3b\xd2\x92\x60\x6f\x73\x36\xf9\xfa\x2a\x17\x23\x89\xba\x73\xc9\x0e\x1d\x8b\xde\x3c\x37\x52\x5d\x07\x36\xd9\xdc\x50\x44\x30\xab\x01\x40\x6a\xcd\xfa\x5c\x7a\xae\x33\x94\x78\x2a\x7f\xa8\xed\x25\xe9\x5c\xfa\xab\x96\x06\xf2\xe1\xc4\x81\xa6\x0c\xca\x64\xe4\x53\xcb\x13\x9a\x5d\xd0\x81\xfa\x48\x7a\xb1\xcf\x19\x03\x92\x71\x66\x49\x93\x56\x09\x65\xcc\xcd\x55\x29\x99\x97\x6d\x97\xc9\x89\xec\xd9\xff\xd3\xcd\x59\x54\xba\xb8\xc3\x96\x5e\x9d\xf7\xb2\xf5\x00\xfd\x5b\x7a\x70\x33\x8a\x21\x49\xb4\x6e\x5c\x0d\x46\x47\x16\x99\x2f\x40\x4e\x41\x89\x26\x7f\xe8\x87\x0f\x51\x0f\x67\x7e\x5a\x42\xd3\xb4\xb3\x67\xcd\xad\x55\xee\xe2\xcc\xb1\x25\xc9\xfa\x38\x87\x01\x40\x0c\x71\x13\x8b\x69\x6d\x28\xee\xf6\xdc\xb1\x16\x4f\xee\xe4\xa6\xe4\xc6\x47\xdc\xa7\x09\xfe\x96\x6d\xbc\xd9\x11\xdd\xf5\x95\xbc\x94\xb5\x63\x86\x5b\x3c\xa9\x8f\x9d\x6e\x15\x6f\x62\x49\x8a\x1a\xcd\x5f\x3c\x97\xae\xd0\xf1\x63\x6d\x27\xa4\x2d\xfc\x69\x00\x20\x02\x79\xfb\x36\xcf\x6b\x05\x64\xb0\x9c\xda\xa6\xbb\xd2\x6f\x1b\x3d\x1a\xb6\x49\xa1\x78\x5f\xb3\x58\x6a\xb3\xfe\xb8\x69\x83\xc4\x18\xf8\x53\x7f\x46\xe2\xe6\x0d\x6a\x83\xc4\x8d\x8b\x7f\xa9\x18\x62\x87\xb9\x68\xf9\x90\x28\xd2\x6e\x8a\xe4\x9c\x70\x0e\x00\x08\x77\xf3\x6f\x16\xbe\x6c\x7e\xaa\xfb\x9a\x1d\xdf\x78\x5b\xfb\x2e\xcd\xce\xb2\x5f\x73\x2b\x2e\xb0\xde\xa4\x3e\x15\xfe\xce\x98\xa7\x1a\x0d\x8c\xd3\x7d\x51\x0a\x56\xbe\xd4\xd0\x14\x31\x8b\x0d\xca\xe3\xb2\x33\x73\xd7\xc8\x7e\x48\x3e\xda\x39\x4a\x56\x89\xee\x00\x80\x70\xa9\xe0\x4c\xe1\xe6\x66\x86\xe9\x6e\xd6\xb1\x46\x98\xb1\x25\x55\x6f\x49\x33\x24\x6f\x38\x59\xef\xa5\x7b\x1b\xde\x68\x78\xac\x95\x07\x7c\xd7\x69\x35\xd3\x57\xee\xd0\xb8\xa8\xb0\x8b\x51\x4a\x98\x42\x32\x77\xa1\xac\x45\x16\x66\x37\x5b\x7c\x4d\xdc\x03\x00\x82\x2b\x42\xcf\x82\xbf\x9b\x1d\x1b\x56\x67\x15\x34\x7c\x32\x1f\x4b\x0d\x31\xdf\xa8\x8f\xdc\xc0\x35\x8d\x18\x87\xc3\xcb\x0d\x68\xc3\xd4\x80\x09\x9d\x9b\x2e\x7e\xa5\x59\x3d\xa2\x29\x5c\x5c\xa6\xf8\xa8\x9a\x39\xd7\x55\xb6\x4a\x9e\x65\x17\x28\x86\x49\x8a\x01\x40\x50\x2b\x04\x0b\xc2\xb6\xb4\xd5\x1c\xcb\x5c\xd5\x7f\x0f\x26\x4f\xd6\xf6\xce\x86\x97\xc4\xb0\xbb\x62\x91\x85\xeb\x80\xf6\x44\xb4\xce\x6f\x75\x8b\x35\xce\xca\xab\xa7\x41\x4e\x18\x72\x79\x67\x7a\x48\x6e\x98\x1d\xad\x9f\x45\xeb\xb0\xda\xaa\x5e\x06\x62\x00\x40\xbe\x94\xe5\x50\x30\x7f\xf0\x13\xec\x69\xe6\xcc\xfe\x30\xb8\x38\x99\xd2\x43\x44\xfa\xc5\xc0\x3a\x47\x50\x3f\x42\x5f\xb5\x1d\xc6\x5a\xfb\x79\x34\x8b\xf0\x71\x5e\x5d\x0d\xf3\x88\x7b\x5c\xbe\x98\x98\x94\x9a\xd9\x9b\x75\x3b\xe9\xcb\xad\x6e\xaa\x6e\x82\x83\x00\x20\x7b\xc0\xb2\xcb\x7f\x3a\xb8\x09\xb1\x36\xe3\x9f\x3e\x3d\x72\x38\x39\xbd\x7b\x12\xbd\x3a\x26\xbe\x73\x3e\xe6\x54\xe8\x85\xb6\x00\x5c\x8f\xdf\x8c\xa6\x3f\x84\x3d\x5e\x16\x8b\x85\xf4\xdd\xe5\xb7\x69\x3a\x15\x3e\x9b\xa8\xcb\xa2\x3f\xb5\xb6\x52\x71\x21\x2f\x00\x90\xe9\x58\x11\xf9\x05\xfd\x8f\x31\xb7\x33\x2a\x7b\x13\x71\x56\x49\xb7\xba\x9a\xf1\x7e\xd1\x0f\xdb\x5f\x11\x2c\xa1\xfc\xd6\xb9\xa4\xd5\x6b\x2e\x37\xbe\x21\xbf\xf2\xa2\x9a\x4d\xd4\x4b\x2e\x3f\x8c\xae\xf4\x53\xb3\x5b\xb4\x0c\xf0\x8c\x75\xae\x72\x1f\x93\x0f\x00\xd2\x1b\xec\x85\x79\xef\xfa\x20\xe2\xa5\xf4\xc7\xdd\x9f\x48\xfb\x92\xf2\x3a\xab\xc8\x6d\xd1\xd8\xb6\x43\x94\x3d\xa1\xee\xcd\x6f\xa9\x5f\xd6\x48\x1a\xae\xd2\x73\xbd\x92\xea\x25\x8c\xf3\x2e\x3f\x0d\xee\x50\xf5\xec\x63\x1a\x23\xf3\xb9\xf5\xb0\xe2\x31\x7b\x09\x00\x48\xed\x39\x61\x79\x3e\xbd\x29\xf4\xb9\xe9\xe1\x5d\xc7\xe9\x3d\x89\x7f\x75\x04\x31\xc2\xa3\xde\xb5\x36\x30\x7e\x87\xec\x6e\xba\x06\xfe\xb3\x26\xd8\x72\x1c\xba\xec\xe5\x60\x62\x33\x6f\xb9\x7c\xd6\xaf\x62\xdb\xcd\x7e\xa8\xde\xc1\x71\x98\x32\x55\x31\xf7\x7f\xab\x96\xac\xe7\x96\xe5\x06\x77\x0f\x71\x67\x6c\x22\x76\x2e\xe7\x2e\x4f\x5c\xd4\xd6\xce\x8d\x88\x2a\x68\x71\xe2\x52\x43\x22\x1a\x4b\xb9\xc7\x56\x5f\x35\x57\xf3\x9c\x97\x5d\x36\x86\xf2\x88\x2e\xef\xb4\x2f\x79\x77\x1d\x5c\x54\x3c\xfe\xec\x29\x54\xd9\x0f\xde\x63\x00\x10\x87\xf0\x76\xe7\xac\xec\x5a\x23\xcd\xdc\x48\x6b\xbf\x20\xb9\x93\x10\xd9\x5a\x21\x29\x8f\xb4\x34\xdd\x14\xff\x0a\xb6\x34\xf8\x89\x07\x57\xe7\xd5\x27\x8a\x33\x96\x31\x0c\x6b\x45\xaf\x5d\x2e\x6a\xde\x88\x24\x0e\x41\x4a\xb5\xf0\xd2\x94\xa3\x32\x4f\xc1\x38\x00\x88\x50\xfc\x83\xd9\x73\x3a\x1d\xb5\x59\x69\x50\xdb\x1e\x4d\x66\xfc\xe6\x96\x2c\x75\x42\xc4\xc5\xc6\x8b\xaa\xcc\xa0\x37\x16\x5f\xe5\x66\xdf\x13\xa6\x0a\x45\xfe\x32\x7b\x3d\x42\x1e\xe3\x22\xd3\xac\x92\x7e\x76\x58\xa4\xb8\x24\xc9\x9e\xf2\x54\xca\x10\xd5\x02\x80\xf0\x86\xa0\x3e\xcb\xd4\xd1\x62\xf8\x9c\x36\xa3\x2d\x4a\x7f\x28\xee\x67\xf3\x65\x1d\x35\x82\xd5\x98\xa3\x8d\x0e\x1a\x36\x8f\xa9\xff\xf8\x6a\x8d\xaf\x55\xa3\x9e\xff\xe8\xad\x95\x09\x2e\x44\xf5\x49\xb9\xce\xc1\x45\x81\x93\x42\x36\x36\xd2\xc5\xe2\x95\x00\x20\x14\x08\xbe\x66\xad\xe8\xf0\x33\xcf\x4a\xdd\xd1\x7a\xdc\xb4\x25\x6e\x67\x73\x8e\x71\x6d\x44\x42\xc3\x84\xfe\x64\x10\xcf\xbc\x4a\xb7\xc9\x97\x60\x24\x68\x0e\x78\x5e\xd2\x69\xd4\xf6\x2e\x24\x75\xa6\xe2\x8b\xc3\x1a\xf9\x67\x19\xdb\xc6\x5f\x32\x24\x9e\x04\x00\xe1\x7c\x61\x6a\xe6\xac\xb1\x15\xb5\x99\x29\xf6\xc3\xeb\x60\xdf\x63\x15\x83\x01\xf0\x5d\x61\x87\xfa\xdc\x91\x7d\x01\xad\x5d\x37\xd1\x37\xbc\x13\xdb\xc3\x71\x09\xee\x45\xcd\x9b\x09\x2f\x9d\xe5\x96\x78\xf2\xdd\xe9\x77\x0d\x3f\x68\x77\x01\x40\xa3\x01\x45\x00\x20\xff\xc0\x9a\x9f\x69\x37\x4a\xaf\x43\x24\xff\x19\xd2\xc3\x5f\xc4\x72\x06\xcc\x48\x66\xd8\x8e\x5e\x15\x3a\x2a\xc0\xd2\x95\x8e\x8d\xf0\x4e\x6a\xdb\x8b\x07\xdd\xab\x9b\xfe\x21\xbe\x74\x6e\x31\xdf\xa0\xb4\x4d\xff\x65\x68\xa6\x17\x02\x80\x26\x1a\x3c\x04\x00\xf2\x11\xd6\xb4\x8c\x8f\x23\xa7\x10\x83\xc9\x2f\xb6\xbc\x40\x4d\x89\x85\xf5\x7f\x45\x63\xc3\xda\x7b\x3e\x62\x7e\x06\xc8\x3a\x0f\xe2\x2e\x7b\x47\xb5\xf9\x11\x1e\xba\xd7\x34\x55\x92\x97\x39\x0f\x9b\xab\xa8\x8d\x33\x5c\x0c\x81\x8c\x59\x00\xa0\xbe\x07\x05\x00\x80\xbc\x80\x15\x91\xb1\x63\xb8\x02\xbb\x34\xb9\x7d\xd0\x84\x0b\x88\x9d\xdf\xb7\x13\xbf\x29\xac\xac\xfb\x28\x61\x6b\x40\x7e\x47\x03\x29\xc1\x7b\x71\xeb\x7c\x8a\xb5\x7b\x61\x63\x1e\xf5\xb9\xf3\xe1\x7a\x38\xfd\xc5\x8c\x8d\xfa\x0c\xf0\x3e\x30\x55\x3d\x93\x29\x04\x00\x99\x9e\xed\x9c\x51\xb2\xe5\x2e\x69\x4e\x72\xf8\x40\x18\xe9\x52\xcc\x9e\x5e\x06\xb9\x33\x6c\x66\x97\x86\xb2\x37\x60\x7e\x3b\x91\xfa\x7d\xe5\xbb\xe6\x2f\xf4\x42\xf7\x84\x86\x18\xc6\x25\xe7\x09\x53\x2d\x44\x9a\xc1\xd0\x55\x30\xdf\x01\x95\xaa\x35\xec\xf9\x00\x20\x3d\xc0\x09\x4e\x67\x0c\x0e\xd0\xad\x93\x3a\xfb\xa7\xd0\x95\x31\xd9\x3d\x49\x0c\xb7\x75\xbb\x3a\x61\x8c\x07\xfe\x17\xda\x72\xc0\xd3\x2b\x8f\x34\xdd\x87\x0e\xb9\xfb\x5a\xfc\x99\xa7\x9c\xaf\x1b\xeb\x58\xbf\x67\xf4\x68\xa9\x1c\x6b\x60\x97\x32\x9f\x33\x0a\x00\x92\xd7\xdc\x82\x74\xff\x81\xa9\x9c\x1d\x49\xf1\xbd\x65\x9c\xa3\xd1\x8f\xba\xba\x39\x67\xd7\x15\xb5\x5f\xe4\x4e\xf7\x97\xb4\x9c\xe5\xd6\xae\xd4\x34\x12\xb8\xe3\xee\x0b\xeb\xff\xe6\xf9\x38\xbf\x37\xb8\xf1\x7a\x66\x7c\xd3\x04\xf1\xee\x5a\x05\x2b\x02\x78\xff\x7b\xfb\xdb\xbc\xce\x4d\xe4\x3e\xac\xa4\x31\xd1\xdc\xfd\x52\xe2\x18\x9d\xd2\x99\x25\x96\x86\x5e\x69\x13\x8a\x83\xfd\xdd\x9a\xe5\xa2\xf7\x2b\x63\x1a\x92\x44\x83\x4b\x5e\x9a\xce\x89\x2a\x9c\x3f\xe9\xe7\x88\x66\xcd\x0c\x52\xaf\x15\x12\xac\xea\xe5\xe9\x02\x26\x00\x88\x67\xf0\xdb\x37\xe2\x7a\x53\x34\xf3\x12\x8e\x76\x1d\x51\xdb\x47\xb5\x74\x78\xa9\x80\xd0\x88\xd6\x0a\xe5\x62\xbf\xe6\x26\x9c\x22\x76\xc5\x35\x4b\x9a\xbc\x78\x49\xb3\xf1\xad\xac\xce\x79\x52\x17\x23\x8d\x9c\x19\xad\x42\x8a\x8f\x5a\x5d\x96\xb5\x0a\x7f\x03\x80\x88\x22\xc0\x6f\xb4\xe9\x99\xd0\xf3\x13\xea\xba\xd6\xeb\x62\xa2\xf2\xda\xcd\x9a\x6f\x21\x7f\x5a\x2e\xab\x6f\xfa\xa1\x1a\x1f\xab\x76\xad\x18\x33\x9f\x57\x4a\x97\xf0\x8c\x7c\x45\xa2\xf3\x19\xed\x55\xd9\x9e\x99\x19\x2a\x40\x72\xc9\xea\x93\x2c\x46\xb4\x1d\x00\x44\xcb\x05\xa7\xd3\xfa\x7b\xf2\x4d\xd5\x09\x1e\x9d\xbb\x0c\x5f\xa3\x3c\xda\xed\xf4\xc2\x90\x9b\x2d\xb1\x3a\x7f\xbf\xcc\xc6\x6c\xcd\xd5\x15\xed\xe6\x78\x35\x66\x09\xd3\x68\xab\x7c\xe6\x7c\x5d\x5b\xa8\xb0\x9e\x49\x50\x8a\xa4\xe3\xd6\x3e\xd2\xb3\xe2\x2c\x00\x10\xee\x13\xda\x8f\xe4\xc1\x3f\x94\x5c\xee\x54\x21\x7d\xca\xe3\xeb\xf3\x51\xc5\x95\x23\xb2\x42\xf4\x8e\x9a\x0d\x10\x1e\xbb\x0a\xf6\x09\x6d\xc4\x4d\x20\x9a\x4b\x7c\x08\xed\x68\x54\xca\x09\xd2\x18\xae\x31\x78\x26\x15\x20\xbe\x5a\x54\x48\x6f\xa3\x96\x5b\xe5\x40\xc7\x18\xb4\xe1\xdc\x3a\x55\x45\x56\xc7\x16\xf8\x3f\x55\x54\x93\x1c\x19\x56\xd3\x2c\xed\x44\x6d\x83\xbd\x01\x2f\x60\x52\x11\xe5\x68\x5b\xdc\x34\xd4\xb1\xe2\x31\xfc\x17\x6c\x4a\x4a\x11\x69\x19\xc1\x33\x68\x94\xa2\x21\x2f\x59\xb4\x94\x1e\x4f\x0b\xb4\x8a\x82\x78\x8c\x67\x43\x49\xb0\x55\xd5\xef\xda\x0f\xd6\xb5\xd4\x9e\x37\xee\x44\x2c\xac\x1b\x95\x3c\x40\x8e\x21\xc6\xc1\x15\xe8\x3a\xd4\x1b\x14\x09\x1b\x8b\x9d\x55\x1c\x84\x4f\xc5\x67\x24\xbf\x24\x6a\x89\x57\x82\xf2\x29\x4e\x14\xba\xdb\x7b\xda\x3d\xfa\x1a\xab\x10\x28\x10\x64\x0d\x86\x56\xb7\xa1\xa0\xd6\xdb\xb5\x31\xe8\xeb\x06\x5b\xd8\x1f\xec\x62\x71\x15\xfc\x0c\xae\x83\x7e\x1d\xb9\x95\x10\x8d\xcc\x40\xef\x27\xde\xdc\xbc\x01\xfb\x81\xac\x4e\x5e\x42\x80\x51\x31\x6b\x77\x91\x9d\xe9\xe5\x6e\x1d\xb4\x19\x60\xa5\x55\x1c\x28\x84\xee\xf6\xcf\xa8\x5c\x47\x0a\x6c\x99\x56\x6d\x4f\x9e\xa6\x2b\xae\x79\x47\x9e\x14\x3e\x86\xbd\xa0\x9c\xa4\xc9\x11\x36\xd4\x2b\x88\xd5\xa8\x08\xda\xfd\xa2\x0c\x4c\x27\xfd\x57\x52\x01\x3e\x0a\x0c\x5f\xeb\x49\x9a\x0f\x71\xdd\xca\xa9\xc1\xcc\xa3\x56\x6c\xc6\x69\x56\x75\xef\xca\xb2\x57\x50\x65\x53\x60\xc5\x5b\x68\x9f\x66\x7b\xf5\x34\xe8\x99\x00\x59\xeb\xcf\x4c\xa5\x46\xd5\xd1\x98\x87\xe1\x33\x11\xd7\x59\x01\x85\x15\xe8\x3a\xd6\x50\x62\x3d\xce\x87\x1d\x1a\x68\x21\xae\x64\x1f\x75\x0b\xa7\xc0\x38\x3e\x56\xfb\x18\x4b\xd8\xcf\xbb\x52\x4b\x36\x4b\x37\x58\x1a\xcb\x70\x92\xbd\xaa\xf5\x15\x66\xc9\x4a\x9e\x77\xd5\x5b\x71\x27\x79\x5d\x2d\x52\xbc\x0c\x96\x5c\xf7\x5b\x64\xc9\x7f\x8a\x3c\x2e\x9a\x92\x80\xc5\x1c\x12\xd6\x06\x5c\xc6\xbf\x15\x6c\x75\xfd\x4c\x46\xf1\xcf\x58\xfb\xd3\x73\x78\x2b\xda\x23\x8b\x76\x9b\x3e\x99\xce\x97\x78\x1b\xe9\xf2\x5d\x65\x3a\x83\x0d\xfb\x5e\xe5\x42\x9d\x8a\xb8\xa6\x7a\x5c\x3b\xab\x86\x0f\x93\xaa\x09\x79\x58\x04\x5b\xb9\x27\x3e\x11\x3d\x28\xbf\x1a\x30\x1d\x3f\x43\x7a\xc2\xb5\x97\x74\x44\x0c\xb3\x66\xd3\x2e\x09\x52\x5b\x9e\x16\xdc\xee\xca\x30\x68\x36\x93\x3b\xe6\x4a\x15\xa5\x4e\xad\x47\x98\x77\xca\x0f\x34\x97\xe1\x73\xab\xc4\x0d\xf7\xaa\xee\xd7\xe2\xcd\xfe\xb9\xd3\xe1\x0a\x63\x5a\xdc\x7a\xd4\x5d\x9d\x97\x3f\x0c\x07\x53\xed\x76\xad\x21\x25\xcb\x26\xac\xcf\xd0\x58\x22\xaf\xe6\x8f\x05\x9b\x06\x34\xfa\xbd\x45\x8f\x7a\xff\x93\x9c\x28\x91\x74\x07\x31\x97\x96\x87\x74\xd4\xe1\xfa\xab\xa6\xb6\x92\xab\x92\x6a\xbe\x37\xc5\xe5\xc8\xe1\xee\xe6\x89\x0d\xf7\x51\x1c\xe3\x74\xff\x75\x38\x27\xcd\x7f\xae\x65\x24\x1b\x45\xbc\xf5\x2f\x5a\xb2\xe8\x6a\x73\x7a\xfe\xb3\x91\x27\x7a\xaf\x22\xea\x96\xef\x92\xf8\x92\x39\xfd\x4f\xa0\x81\xb2\x23\x3d\x47\x71\xa1\x95\xfa\x4e\x78\xe5\xd3\x1a\x49\xeb\x89\x9c\xa8\xba\xb1\xc6\x89\x0d\x3b\x51\xf3\xea\x41\xff\x20\xec\x56\xdd\x61\x57\x2e\x71\x4c\x59\x3a\x25\x8f\xfa\x4b\x1c\x34\xb8\x14\x15\x5a\xb2\xb5\xf5\x2c\x7a\x5d\xb9\xaf\xfe\x36\x26\xae\xd2\x20\xf6\xc5\x62\x6a\xd6\xd0\xeb\x71\x3b\x60\xff\x22\xa7\x11\xbc\x11\x96\xa2\x2f\xc4\xd3\x68\x42\xd2\x13\x72\x2b\xae\x77\xad\x91\x3a\x42\xb2\x75\xab\x67\x4c\xa3\x1a\xac\xf2\xa0\x67\x8c\xa3\x03\xab\x11\x93\x15\x6e\x2d\x6f\x90\x9f\xab\xd2\xf4\x0b\xd0\x4b\x6b\x48\x22\x08\x83\x83\x9d\xa3\xbd\xc7\xde\x40\x6c\x40\xb0\xf1\x48\xd4\x58\x11\x8b\xe8\x85\x8d\x49\x62\x93\xe7\x11\x96\xaf\x4d\xa1\x46\x91\x03\xdd\x6a\xe9\xdb\x69\xe5\x56\xf1\xd0\x20\xe8\xdb\xef\x0b\xc7\x57\x0f\xb4\x4c\x43\xec\xad\xd5\xe8\xd2\x50\xd6\x75\x74\xe1\x61\x34\x11\x61\xa0\x65\x61\xbe\xa3\x4e\xc2\x5f\xe2\x7a\x31\x6f\x8b\x6c\x08\x2c\x7c\x64\xd2\x3c\x92\x88\x78\x21\xf0\x2b\xe5\x24\x45\xe4\x16\x45\xcf\xa2\xe7\x5b\x45\x40\x15\xe0\xc1\x5e\x57\x98\x0d\x6a\x76\x93\x67\x1d\x05\x0d\x6a\x2c\x08\x6b\xcc\x29\x41\x0c\xb2\x01\x97\x43\xb5\x42\xa7\xe3\xbf\xd7\x9d\xc1\xae\x20\x76\x16\xce\xc5\xfb\x92\xeb\x12\xd3\x89\x15\xd4\xc2\xc0\x72\xf2\x05\x7a\x95\xeb\x57\x9a\x10\xe4\x5a\x15\x80\xbb\x99\x0b\xbb\x67\x55\x77\x10\x3b\x1b\x0a\x6b\x93\x49\x7a\xd5\x7f\x75\x56\x64\x34\xef\x24\xfc\x04\x05\x49\xde\x87\xec\xa3\xf2\x60\x5b\xd0\xc3\xb4\xe6\x02\x4f\xec\x5d\xfa\xd9\x04\x1d\x21\x12\x74\x0d\x98\x20\x5d\x85\xa8\xae\xc7\xa9\x63\xcc\x6b\x56\x0d\x8c\x3f\x2c\x4b\xa7\x5b\x25\x05\x3c\x63\x96\x56\xc7\x42\x6b\x95\x19\xb5\xcb\x21\x22\x37\xab\x6e\x0e\x74\x87\x44\x42\x2c\x62\x16\xd5\xaa\x51\x69\xcc\xdb\xf9\xa1\x98\x5e\x16\x22\xfe\x06\xde\x97\x3d\x3d\xa0\x98\xf8\x8c\x3d\xe2\x6a\xa1\x3c\xe1\x04\x5b\x3d\x65\x64\x73\x5c\xda\x28\x65\xe7\x25\xe5\xa6\xa9\x15\x87\xc4\xff\xc9\x5e\x56\x1d\x15\xb3\xd8\x1e\x35\xb7\xc5\xd6\x04\xa8\x6e\x81\xc8\x58\x7d\x1d\x01\x8a\xdc\x72\xcf\xa0\xa7\x0a\xdb\xe3\xf6\x63\x8f\x0b\x17\xf9\xb7\x11\x76\x08\x44\xae\x54\xf2\x53\xfe\xb8\x35\x8e\x2e\xe0\x25\x35\x57\x97\x14\x1b\x6f\xea\x37\x96\x69\x0c\x38\x09\x58\x71\x52\xbf\x08\xfa\xb7\x7a\x96\x76\x37\x8e\x53\x4b\xd3\x6c\xac\x5a\x04\xb7\x53\x9d\xce\x29\x45\x9e\x50\xae\xda\xd0\x86\xd9\x2a\xaf\xf3\xbb\x8f\xbf\x28\x05\x5d\xbd\xc9\x61\xe2\x78\xeb\x13\xb4\x1f\x82\xfc\x86\x37\x9b\x35\x1d\x0f\x35\x1f\x4b\x5e\xb6\x4d\x88\x92\xcb\xb3\x5b\xda\x18\xcf\x2a\xf7\x34\x65\x63\xb6\xd5\x6c\xb0\xbc\xac\x90\xc0\x3e\xd5\x97\x64\xdb\x20\x6e\x18\x2c\xb1\x2d\xe8\x7f\xb5\x26\xbf\x58\xfc\x2a\xd5\x46\x97\xd7\xa4\xfd\x32\xfd\x14\x27\x5a\xa7\xc8\xc3\xf2\x7b\xb3\x75\xbf\xbd\x66\x61\x49\x79\x8f\x51\x08\x95\x9d\xee\xfc\xc6\xf0\xad\x0c\x69\x4f\xc4\xd8\x55\x9f\x68\x41\x96\xbf\x87\x09\x1a\x8b\xb3\x64\x08\xac\xd9\x3e\x36\x1e\xad\x30\xa0\xfc\xe6\xe1\xae\x69\x18\x2e\x2f\x48\x14\xf9\xcf\x29\x1b\x69\x08\xd1\x19\x4b\x41\x51\xcb\x70\x86\x9a\x57\xfc\x7e\x50\x2e\x78\x57\x96\xd7\x67\xa1\x8f\x55\x8c\x77\xab\xd1\xcd\xd5\x59\x1d\x19\xe5\x66\x98\x43\xcb\x85\xac\x0d\xf0\xdf\x0d\xbf\x62\x5d\xd1\xee\xa6\x0b\x7e\xb3\x71\x64\x5d\xa4\xeb\x0c\xd2\x22\xa5\xc3\x94\x2e\xda\x5c\xf1\xb2\x9e\x03\x18\x73\x89\xbe\x71\x12\x0b\x2f\x9f\xab\x59\x81\xcb\xab\xa4\xf0\x4f\xe1\xd3\x6b\xe6\x53\x40\x02\x1e\x76\xb5\x6e\x3d\x71\x1f\x42\x56\xc0\x21\xaf\x46\x23\x13\x0e\x52\x4e\xe3\xba\x02\xce\xd1\x5a\x48\xd3\x5d\xe9\x8c\xbd\xd4\x61\xe0\x13\xb3\x80\xf1\xa6\xfb\x32\x3a\xa8\xfc\x59\xc3\x4f\x8c\x5f\xd5\x12\x35\x06\x1b\x54\x93\xc8\x5f\x8c\xcb\x85\xf5\x91\xff\xc6\x37\x22\x3c\x60\x63\x84\xdf\x28\x63\xc1\x54\x92\x1a\xeb\x9f\x50\x44\x89\x27\xb8\x04\xc8\x69\x01\xe4\x00\xd7\x8d\x0c\x18\x8d\x08\x3c\x66\x2e\x06\x73\xba\xee\x23\xaf\x54\x57\x34\x2c\x46\x7d\xa9\x4d\x57\xf5\x61\x9c\xea\xd6\xf3\x60\xd8\x12\x44\x19\x79\x1d\xee\x28\xca\x04\x73\x27\xc4\x60\x4e\xe6\xab\x88\xcf\xf0\x4b\xe2\x3f\x90\x77\x13\xf7\x07\x44\x53\x0f\x52\x38\xae\xcb\x18\xd3\xe8\x35\xc0\x23\xe8\x3a\x78\xbf\xe3\x34\x5c\x89\xec\x30\xaf\x45\x9c\x47\x2f\x54\xbc\x41\xf9\x61\xb0\x9c\x87\x68\x03\xf6\x0f\xf1\x25\x76\x11\x7e\xb4\xe6\x37\xee\x34\xb1\x32\xaf\x89\xd0\x4a\x5e\x1b\x1f\x42\x6a\xa0\x06\xf9\x6f\xa5\x9c\xa1\x67\xbb\xbc\xa5\xc7\x80\x62\xab\xd9\x90\x1f\x33\xac\xed\x6f\x98\x0f\xd1\xc1\x84\xab\xdb\x42\x72\x96\xa7\x23\x22\xc9\xd6\x6c\x02\xf2\x24\xc5\x96\xd0\x8f\x66\x52\x97\x57\x3f\xc4\xe6\xd2\x36\xe5\x8e\xe2\x73\xe9\xf2\x38\x0e\x11\x64\xbc\xf2\x0f\x24\x5f\x81\xca\x5c\xfe\xa2\xe1\x98\x97\xad\x4a\x40\x26\x6b\x5b\xcb\xdf\x35\xee\xa0\x9f\xa1\xa7\x76\x37\x38\x20\x1d\xa9\xc3\x83\x9f\x98\x3f\x11\x8b\xa1\x1a\x7c\x0d\xf2\x0b\xf4\xbc\xea\x14\xfa\x33\x93\x99\x73\x0c\xb7\x98\xe5\xb2\xe1\x1c\x01\xcd\xba\xe8\x77\x8a\xf4\x9c\x2d\x77\x19\xa4\xf6\x72\x7c\xad\x46\x18\x17\x38\xfe\x4d\xa8\xca\x1a\x31\x4d\x17\x55\x1d\x22\xf6\x12\x57\xd4\xce\x17\x9d\x01\xef\xc2\xde\x8a\x8a\xb1\x20\xfc\xbb\xf0\x5b\xa5\x1b\x6a\xb5\xd0\x9c\x5d\x89\x91\x08\x03\x62\xf7\xe2\xa7\x0a\x4e\xf8\x39\x13\xf7\x0a\x52\x5d\x24\x94\x01\x7e\xaf\xf5\x06\xfa\x4f\x5e\xb6\x25\xb7\x7c\x99\x61\xb7\x5a\x57\xe9\xa6\xaf\x10\x02\xd5\xde\xba\x35\xf4\x6d\xb5\xab\x35\x37\xd0\xf2\xba\x0a\x35\xb7\x1c\x87\x38\xa2\x72\xce\xfc\x85\x4e\x55\x18\x63\xba\xb0\x5f\x65\x6f\xd6\x94\x10\xae\x4b\x3d\x5d\x12\xc9\x5f\xc5\x73\xac\x5b\xe9\x44\x41\x96\xe9\x68\x29\xaa\x1d\xaf\xf4\x28\xd7\xb4\x72\x79\x7f\x55\x1e\x69\xa6\x52\x77\x57\xdf\x6f\x8c\x44\x9e\x86\xad\x35\xbf\x2d\x7d\x04\xdf\x65\x62\x67\x6c\x45\x55\xe9\xef\x44\xf7\x63\xd7\x6a\xbe\xac\x3e\x44\x58\xab\xbc\xea\x62\x47\x06\x65\x89\xd6\xcf\xe8\x73\x44\xf6\xc6\xc9\x92\xfb\xbd\x1c\x45\x74\xb9\x6d\xf7\x6a\xee\x7f\x95\xeb\x3b\xf6\x50\x7e\x54\x57\xb6\x2d\x44\x2e\xab\xdd\xd7\xbc\xb9\x34\x07\x9e\xd0\x80\xca\x08\x43\x7e\xaf\x8f\x8e\xce\xc4\x5c\xd3\x1f\x5d\xad\xc7\xdf\x55\x7f\x74\xb1\x21\x07\xc9\xfb\xa7\xb8\xd3\xae\x8a\xb6\x1a\x57\x96\x40\x5b\xc6\xe4\xed\x65\x4d\x03\x0e\xdc\xf2\x8a\x33\xbd\x1b\x28\x50\xd5\xdb\xae\x74\xc4\xbe\xda\xc4\xf6\x35\x25\xdf\xea\x2e\x37\x4f\xa6\xbf\x47\xaa\x1a\x56\x44\x7b\x63\x30\x26\xd7\xd5\x0a\x3c\xa4\xdd\xe6\xb2\x92\x74\x55\xb1\x7b\x0a\x8d\x06\x89\xed\x9b\xff\x22\xd6\x94\x80\xfa\x0a\xe2\xb7\xb2\x37\x12\x25\x89\x5f\x59\x0b\x75\x90\x73\xab\xff\xc3\x5e\xa5\x44\xc1\x7a\x2a\x57\x52\x23\x10\x65\xd9\xb3\x69\xc5\xe8\x94\x98\x47\x74\x0d\x4e\xb0\x7a\x90\xf1\x8e\xf8\xdf\x02\x0e\xd4\x48\x1d\x06\x00\xd6\x61\x70\x5a\xd3\x67\xc2\x92\xf2\x1e\x5d\x0f\xe1\x52\xe5\x6d\xf1\x13\x22\x58\x33\x17\xfc\x4d\x42\xc0\x2a\xb1\xe1\x64\x22\xfc\x4a\x45\x1b\x45\x8e\xda\x94\xd5\x40\x3d\x86\xf9\x14\xa3\xa5\x3b\xe2\x5f\xac\xa6\x32\x54\x64\xfb\x05\xd5\xd0\x46\x1a\x1c\x00\x58\x2a\xb0\xa6\x69\x11\xee\x4e\xd5\x7b\xed\x5d\xfc\x50\xcd\x4b\x71\x08\x01\x0f\x7b\x02\x66\x10\xb9\xf0\x8f\x18\x33\xa9\x1b\xb5\xaa\x62\x36\xf9\x0a\x06\x96\xb5\x84\xea\x85\x9b\x88\x59\x4b\x53\x10\xa1\xd5\x01\x8c\xc5\x94\x8d\x0b\x52\xc1\x8f\xf4\x2c\x00\x60\x25\x82\x2f\x2d\xcf\x30\x1d\x88\x23\xea\x7f\xb1\x4d\xa8\x74\x61\x29\xce\x8c\xde\x4d\x3f\x81\x3f\x85\xcd\x42\x6f\x22\xce\xc1\xcf\x28\x7b\x4d\x42\x13\x2e\x66\xae\x22\x3f\x23\xed\x8e\x86\xa8\x74\xca\x35\xdf\x33\xf4\x60\xba\xc3\x82\x05\x60\x28\x58\x05\x00\xcc\x6e\x66\xa4\xb9\x14\x95\x49\x58\xa1\xaa\x45\xb3\x88\x5e\xfc\x0b\x98\x11\x92\x33\xad\x0c\x67\x4f\xf6\x43\xcd\xc1\xb3\x29\xd5\xa5\x37\x88\x00\xb5\x3d\x63\x03\xa9\x97\xf6\x39\xea\x32\xa5\x9c\x01\xfa\x22\x69\x89\xd0\xac\x05\x8e\x0c\x14\xb3\x0b\x58\x02\x7d\x61\x8d\x9a\xa2\x10\x39\xf4\x71\x85\x14\xd9\xc3\xa8\xe2\xc5\xa2\x9e\x32\xce\x53\x3e\x63\x10\x60\x29\xe2\x2a\xce\x06\xb2\x2a\x39\x86\x1f\x86\x46\xd2\x0b\x88\x14\x26\x32\x6a\x19\xb9\x90\xb5\xc1\x77\x2a\xb5\x92\xed\xb9\xc0\x86\xde\xc9\x7e\x01\xd0\xa1\x8d\x1c\x0f\xbd\x19\x76\x54\xd8\x21\x5b\x01\xf7\x11\x12\x39\x56\x88\x4e\x61\x30\xe9\x25\x2a\x5b\xf0\x01\x3e\x05\xb3\x50\x70\xa0\x78\x0d\xf6\x3f\x01\x67\x93\x3d\xfe\x85\x20\x26\xd2\x87\xf8\x43\x60\xbd\xaa\x9a\x12\xca\xdf\x37\xff\x25\x6d\x90\x9f\x68\xe5\x02\x52\x78\xeb\x34\xb7\x6a\x04\xba\x28\x71\x23\xcc\x53\x1b\xc0\xdc\x5e\xf7\x97\xc6\x93\x70\x0d\xd1\xa2\x9e\x02\xf3\x45\xa9\x94\xf7\x8a\x0c\x18\xad\xa2\x37\x6d\x17\x6e\x97\xbc\x30\x62\x01\xe1\x83\xf4\x85\xcf\x56\x72\xa1\xa4\x74\xfe\x20\xf5\xbb\x48\x6e\x85\x65\x3c\x12\x2c\x51\x1d\xa9\xfa\xd0\x32\x24\x54\xd6\x0c\x37\xdd\x05\x07\x61\xa4\x86\x4f\xb8\x6f\x70\x98\xf9\x4f\x0d\x0f\x49\x34\xbd\x2d\x74\x43\x9b\x0c\x7b\x53\x99\xd8\x3b\xba\x82\xf5\x01\x84\x50\xf5\x4e\x9f\xb9\xa4\x5d\x8a\xeb\xf3\x31\x54\x9a\x54\x67\x75\x84\x41\x17\x1e\x55\x1e\xab\xaa\xed\xaa\x10\xec\xa8\xf1\xea\x48\x62\xbc\xa8\xfd\xd0\x66\x83\x4b\xad\x7b\xd9\x3c\x5c\xfd\x0f\xe2\x57\xa3\x7f\x81\x1e\xed\x63\x16\xa4\xda\x63\x41\x63\x4b\xf8\xdf\xf8\x7b\xba\x1a\xef\x7b\xa4\x1a\xd5\xbd\xf9\xb5\x54\x7f\xd9\x23\xab\x0f\x8c\x50\x51\x95\xd2\xa6\xf2\x53\x7f\x82\x60\x6e\xf5\xee\x9e\xd7\x8c\xba\x5a\x49\x17\x1c\x7b\xb9\x8e\xd5\x7e\xb0\x1a\x42\x68\x5a\x1e\x15\x44\xa0\x0e\x34\x9e\x4f\x39\x85\x75\x30\xe3\xc3\xfb\xf1\x14\xc3\xa0\xf7\x15\xe2\x6f\x8d\x6a\x3e\x87\x32\x29\x7f\x65\x9d\x40\xbf\x21\x3a\xa2\xff\x8f\x76\xae\xc4\x5f\xb6\x8a\xee\x52\x76\x88\x7d\x8e\x4e\xae\x0c\x27\xb1\xe8\x1f\xab\x8f\xd4\x15\x30\xe4\x30\xc2\xe6\x5c\xd0\x17\xb1\x36\xed\x2b\xf8\x0c\xed\xbb\x1e\x09\xed\xc5\x55\xad\x7c\xcb\x1c\x26\x4e\x38\x3d\x61\xdd\xa5\x9a\x01\x80\x23\x62\xfc\xd1\x87\x52\xb5\xe5\x39\x52\x36\xcd\xba\xd2\xc8\xf6\xa5\xf1\xaa\xcf\x13\x1f\xd2\xdd\x60\xce\xb0\xe3\xf4\xb3\x70\x49\xd1\x25\x86\x08\x35\x33\x4d\x0a\x16\x61\xfe\x5a\xef\x06\xc5\xe2\x77\xaf\xdc\xcd\x4c\x27\x5d\x75\xfa\x9b\x65\xa2\xc5\x01\x00\x27\x0f\x4c\xd7\x91\x28\xf9\x55\x8d\x92\x13\x94\x57\x35\x3a\x16\x8f\xaa\x82\x49\x88\xe1\xb4\x58\xb8\x1e\xe6\x4d\xb7\x43\x9e\x2a\x4a\xa1\xdf\xc0\xcc\x49\x9b\xcb\x18\xc7\x29\xc3\xcf\x82\x47\x89\xeb\x56\xaa\xa0\x87\x94\x99\x4e\xb7\x58\xb1\x74\x4f\x00\xe0\x38\x81\x13\x9a\x63\xa4\xa5\x08\x3f\xf1\x6c\xd2\x2b\x64\x0f\x74\x9e\x7c\x04\xed\x8c\x3f\x45\x69\xc2\xec\xad\x79\x4d\x95\xe1\xd8\x85\x6b\x69\x5c\x42\x7e\xea\x4a\xba\x9e\x94\x1b\xbe\x92\xb1\x9b\x02\xae\x4c\x85\xac\x68\x47\x9c\xce\x33\x65\xa0\x17\x00\xb0\xe9\x4c\x47\xb5\x23\xfe\x3d\xde\x56\x28\x21\xbc\x22\xac\x00\xd1\xc4\x67\xc4\x10\x9c\x8c\xf4\x82\x54\x51\x7d\x99\x02\x90\x7b\x0b\x22\xa8\x8b\x29\xdf\x53\x8a\x68\x79\x34\x5c\x98\x91\xde\x4b\xff\xb3\xd2\x1a\x9c\x0f\x0e\x38\x9d\x82\x8e\x31\xf3\x00\x80\x75\x9e\xc5\x51\x46\xe1\xa6\xd3\x98\xfc\x77\xf8\xc5\xf4\x85\x0c\x7b\x82\x1f\x7d\x00\x9b\x42\xcc\x63\x64\x55\xed\x21\x69\xc1\xd9\xf9\xf1\xe4\x0b\xe0\xad\x64\x39\xd5\x1b\xda\xbd\xee\x0f\xad\x93\x39\xb0\x62\x1b\x63\x1d\xab\xcf\x69\x1c\xfc\xc3\x96\x01\x00\xcb\x9d\xfd\x42\x36\x8a\x3e\xc2\xdf\xcd\xd5\x62\xae\xf3\xb7\x52\x27\x70\x36\xfc\x26\xf4\x06\x7c\x1e\x9f\x55\xf1\x8a\xb0\x97\x8f\xcc\xdd\x4e\x5a\xc9\xcf\x4f\x8a\x22\x8f\xf2\x13\xd6\xd9\x51\x73\xf8\x7e\x2b\x16\xd2\x9d\xf8\x4e\x4e\xc3\xa0\x3d\xef\x38\x00\x30\xd3\xb8\x9f\x24\x33\x90\x64\xf5\x45\xf6\x1c\xd4\x4d\xd5\x3b\x32\x1b\x13\xa3\xb2\x41\xae\xc6\xee\x54\x3a\x97\xcf\xc7\x47\x2b\x96\xe6\x2c\x24\x5c\x93\x2f\x4a\x78\x4e\x92\xc8\xec\x42\x01\x4a\x96\xe4\xf2\x72\x3c\x6d\x9d\x58\xe0\x44\x63\xe4\x09\x1f\x02\x00\xd4\xcf\x9f\x10\xfe\x05\x7f\xdf\xb8\x1d\xfa\x83\x64\x35\xcc\x25\xea\xd0\xd6\xe6\x52\x38\x16\xa3\x35\xb5\x95\x2a\x71\x81\x86\x73\x59\xe3\xf8\x67\xba\x2b\xf1\x17\x88\x7b\x35\xbb\x42\xdc\xc9\x4d\xaa\x02\xaf\x09\x6a\xa3\x7c\xdc\x29\x8c\x7e\x51\x32\x0e\x00\x50\x90\xb0\x4c\xf0\x14\x4e\x68\xf7\x84\x82\x11\xdf\x5a\x63\x08\x37\x51\x8a\xe6\xe0\xba\x53\x18\xb7\x46\x97\x92\x6f\xd8\x71\xf3\xdd\xac\x78\x3c\xd7\x44\x89\x47\x10\x8b\xf5\x37\x82\x27\xc9\xf1\x9a\x7f\xbd\x0c\xd4\x54\xe5\x56\x27\x6f\xba\x4c\x66\x0b\xb8\x81\x6f\x85\x5f\x05\x71\x70\xfb\xee\x49\xb0\x0b\xa1\xe9\xdc\x4d\x28\x40\x79\xb6\xa3\xea\xf2\xd1\x63\xad\x40\x49\x03\x36\xaf\x09\x93\xf9\x09\xef\x6c\x69\x8b\x0f\x20\x7c\x30\xe9\x83\xfb\x48\x7f\xeb\xdd\xbc\x04\x94\x87\xea\x4c\xa7\x20\xba\xb7\x7c\x2a\x40\x05\x25\xa2\x72\xa9\x3b\xeb\x4a\x49\x10\xfb\x39\xeb\xdf\xb2\xbd\x94\x0c\xd6\x93\xca\x95\xc8\x7e\xf6\x8c\xea\xbe\xf2\x00\x76\x0c\x2c\x3f\xfb\x5f\x36\x84\xf0\x4c\x28\x61\x9f\x40\x7b\x07\x73\x39\x9e\xb8\x7c\xcf\x1b\x9c\x26\xe2\x21\x47\x7f\x6e\x1c\x55\x0f\x00\xbc\x5a\xc6\x3b\x09\x92\x79\xb2\xdc\x95\x9d\xc4\x7c\x5e\x59\x45\xde\xc5\x9a\x5a\xdd\x8c\x9c\xcf\x8a\xab\x7d\x50\x36\xc8\x52\xc0\xb3\xb3\x71\xac\xdb\xc8\x47\xf1\x1f\xd9\x11\x98\x2d\xc1\xeb\xd9\x63\x78\xb3\xe7\x7e\x4e\x34\x69\x97\xa3\x27\xe7\x0f\xcd\x17\x00\x78\x7e\x60\xa8\x78\x00\x3a\x50\xb5\x92\x65\x81\x5e\xd5\xac\x25\xcf\x65\x7a\xc3\xc2\x11\x20\x93\x02\xdf\x50\xb6\x80\x79\x09\xc9\xc8\x7a\xc3\x0a\x41\x5f\x8e\x17\xb3\x86\x70\xa5\x41\xef\xd9\xc1\x44\x5b\xcf\x56\xf6\x75\xf2\xdf\x8e\x7e\x9c\x21\xda\x0f\x00\xe0\xbe\x06\x87\x84\x4f\x18\x9d\xf0\x6c\xe8\x2b\xe3\x27\xe2\x0f\x51\x06\xd6\xa1\x04\xf0\xa5\xe0\x3d\x8c\x5f\xc9\x1b\x08\x86\xfd\x93\xf9\x0c\x7a\x8d\x7f\x15\xd7\xcb\x14\x93\x80\xa0\x6a\x56\x30\xc5\xdb\x13\xc9\xfa\x46\xa3\x39\x26\xb0\x3f\x30\x5e\x03\x00\x37\x1b\x7a\x25\xa8\xa1\x89\x71\x33\xc0\xdd\x74\x47\x7c\x14\x61\x33\xbd\x8d\x50\x51\x37\x9b\x11\x41\x6c\x28\xfe\xc1\x78\x42\xfa\x2f\xd3\x09\xd4\x53\xaa\x36\x7c\x86\x36\x52\xdf\xad\x7d\xc3\x5c\x4e\xd7\x7a\x86\xb3\x9c\xc0\x54\xc7\x2c\x76\x20\x73\x06\x00\x70\x7a\x59\x05\x7c\x2f\xca\x08\x75\x1e\x23\x8f\xba\x99\xfa\x0f\x7e\x15\xf5\x1d\x4d\x56\xfb\x83\x36\x4a\x4f\x29\x9e\x4a\x87\x18\x1e\x19\xd1\x8c\x44\x70\xfa\x86\x14\xd0\x03\x9a\xbe\x16\x84\x3c\x98\xf3\x3d\xed\x99\x21\x2c\x7f\x47\x0a\xab\x92\xed\x0f\x00\xec\x1b\xec\x53\x1c\x31\x29\x9b\x7b\x98\xb6\x80\x3c\x87\xfb\x18\xf3\x95\x7c\x9f\xfb\xbd\xfa\x0f\xe5\x38\xcf\xaa\x28\x95\xba\x97\xe7\xbc\x69\x2f\x6d\x94\xb7\x26\x76\x0a\x7d\x27\x2f\x35\x50\xc9\xb8\xc3\x2b\x5b\x2a\x80\x9c\x79\x58\xc7\xcd\x4c\x3c\x2f\x1e\x00\xd8\x73\xb9\xbb\x98\x8f\x09\xc9\xca\x64\xb2\x9c\x18\xa7\x10\xa3\x46\x48\x81\xf2\x9b\x95\x6f\xc9\xeb\xe4\xae\x05\x10\x25\x5d\xb6\x79\xe3\x32\x2a\x52\xaa\x8a\xde\x41\xb3\x48\xb6\x05\x68\xe8\xf7\xc5\x7b\x3c\x1e\x83\xeb\x45\x9d\x8e\x4b\xa1\x03\xc2\x00\x00\x60\x61\xf9\x58\xf0\x2e\x7e\x8a\x99\x46\xdc\x8d\xff\x53\xbf\x04\xf1\x90\x38\xcd\x38\x54\x91\x4f\x5a\x6a\xf0\xc9\x9f\x4f\xde\xa8\x33\xa5\x7e\xa0\x48\x35\xf7\xa3\x0e\x53\xaf\xaa\xed\xfd\xc7\xe9\xfe\x8a\xff\x3c\x62\x19\xed\xb2\x76\x87\x7f\xa0\x50\xf1\x33\x00\x60\xbe\x13\x3c\x07\x6d\x70\xc8\xe6\xed\x84\xaf\x78\x46\x93\x23\x22\x98\x50\xdf\x90\x54\x7e\x80\xb8\xcd\x8c\xce\x33\x92\xee\x9b\xc8\xa9\x62\x8a\xa7\x21\x37\x0a\x41\x85\x74\xb6\xfe\x20\xed\x96\xba\xc6\xc3\x8e\x91\xa9\xa0\x38\x9c\x01\xdf\x48\xdd\x00\x80\x39\x28\xe4\x31\x2a\xb0\x2f\x3b\x42\x09\x08\xbc\x5d\x5b\x01\x7c\x2f\x21\xa0\x25\xa5\x3c\x97\x98\xd2\xb4\x3c\x2f\x9a\x44\xb1\xdc\x4a\x8d\x23\x1f\xa8\x2f\x8e\x5a\x4f\x9d\x6f\xe8\xf4\xcf\xa7\x51\xb4\x3c\xf7\xd7\xf4\x97\x2a\x6b\x87\xbb\xa0\x54\xe6\x0a\x00\xcc\xf5\xc2\xff\x68\x99\x92\x6d\x25\xe9\x38\x57\xc9\x92\xb2\xcb\xb0\xb5\xe2\x96\xca\x4d\x25\x42\xb1\x5f\xf5\xa9\x6c\x57\xd1\x09\x18\x25\xf1\x9b\x28\x13\x91\x16\xbe\x5f\xf8\x37\xba\xdc\x77\xb3\x10\x8f\x6b\x72\xc3\x0b\x67\x91\x1c\xa6\x9f\x17\x9c\xa3\x5e\x01\x00\xc1\xbf\x60\x28\xb5\x47\xdc\x5b\x3e\x15\xab\x11\xfb\x55\x66\xd4\x1e\x15\x9d\xa8\x56\x95\x38\x8b\x30\xb5\x17\xb3\xb6\x8b\x5c\xe0\x09\x89\xad\xc2\x3d\xc8\xc7\xe1\x18\x61\x11\xe6\xa0\xaf\xb7\x10\xc0\xef\x71\xab\x11\xec\x20\x3d\x9d\xfe\x50\x20\xa0\xe5\x02\x80\x60\x0c\xac\xa3\xbc\x14\x35\x55\xbe\xc0\x7c\x12\x45\x56\x7f\xa8\x8d\x17\x3e\xaf\xfd\x52\xdc\x24\xdc\x02\xb7\xca\x8a\x15\x22\x91\x1b\x12\xc3\x85\x2e\xe8\x91\x70\x17\xc1\x39\x5c\xfa\xaa\xef\x02\x19\xd1\xde\xad\x50\xb0\x89\xfc\x61\xfa\x07\x81\x1f\x7d\x06\x00\x08\x90\xe0\x19\xf2\x16\xc1\x40\xdd\x20\x7a\x9b\x80\x83\x48\xac\xb1\x12\x94\x22\x6f\x6e\x16\x09\x82\xd0\xe6\xcc\x6c\xc1\x6c\x2c\x33\x01\xc1\xff\x1b\x2f\x0c\x43\xf1\x87\x89\xbb\x56\xa9\xf8\x12\xf2\x47\xb7\x58\x3e\x89\x56\x36\xc3\x99\x4f\x63\x5c\x01\x00\xfe\x09\xe8\x3d\xc9\x93\xf7\x0b\xd3\x88\xaa\xe5\x4d\x62\xbf\x56\xbd\xe3\x0d\xe3\xe3\x8a\x14\xbc\x2e\x42\x63\x06\x89\xd7\x42\x9a\x13\xdf\xcf\x93\x91\xfb\xd6\x9d\xe7\xd1\xa8\xa5\xab\x02\x79\x6c\xfa\x32\x37\x1f\x9e\x1a\xb4\x9d\xb1\x96\xb7\x13\xba\x08\x00\x7c\x67\x56\x2a\xe1\x14\x77\x03\x39\x0c\xb9\x9a\xbb\x9c\xe2\x52\x79\x85\x3b\x97\xf2\xaa\x50\xc2\x5d\x4e\xbd\x9e\xae\xe2\x46\xd2\x6e\xc7\xdd\xe3\xc6\xd1\x3f\xae\xf3\xe1\x6e\x04\x97\xfb\x5c\xe4\x42\x10\xd2\xcd\x91\xbb\x95\xb9\x7f\x46\x36\xf7\x2d\xeb\x2a\x00\xf0\xd0\xec\x6e\x7c\x02\xeb\x5f\xb6\x13\xbc\x82\xf5\x83\x0d\xaf\x98\xc2\x9e\xcb\xee\xcb\x1f\x67\x17\xb1\xff\xd9\xf8\x9a\xdd\xcc\xf1\xdb\x40\x61\x9f\xe5\x48\x43\xbe\xb1\x7f\x73\x9e\xf9\xd8\x72\xe2\xb9\x69\xae\xbb\x38\x5a\x6e\xe7\x0c\x18\xe7\x03\x77\x0b\x00\x70\xa9\x5c\x2a\x66\x37\xf4\x46\xba\x15\x16\xce\x5c\x23\x0d\x2f\x7d\xcd\xe4\x4b\x76\xe4\xad\x62\x1e\x91\x24\xa4\x75\xb3\xe6\x88\xaf\xc4\x16\xb3\xea\xc4\x85\x21\x33\x59\x13\xa2\x8b\xde\xe5\x6c\x5f\xd1\x3a\xd7\x14\x76\xaf\x90\x3c\x23\x8f\xe3\x27\xc8\x01\x00\xce\x5f\x7c\x1b\x54\x2b\xb8\x43\xbf\xaf\x06\x0d\xfe\xd0\x1d\x2f\x61\x41\x99\xda\x2d\x39\x27\xa0\x11\x8d\x38\x15\xcb\x74\x52\x67\xc7\x14\x30\xc5\xaa\x29\xc1\x99\xcc\x5f\x8a\x86\x95\xdb\x59\x0c\xd9\x07\x97\x03\x6c\x6b\xa9\xcd\x0c\x57\x76\xbb\xe8\x20\x00\x70\x62\x04\x65\xc8\xe7\xe0\x72\x33\xa5\xfa\x30\x08\xd5\x47\x14\x3f\x00\x6f\x1b\xef\xe4\x44\x40\x11\x86\xba\x94\x1f\x50\x8f\xee\x56\xf4\x67\xa6\xbb\xd6\x27\xd8\x96\xd9\xad\xce\x5e\x49\x61\x79\x28\x57\xbb\xc8\x59\xa3\xb2\x2d\x33\xec\xd9\xb9\xe2\x0b\x00\xc0\xfe\x28\x78\x86\xac\x64\x8c\x36\x49\xab\x63\xc1\xe9\x8d\x6e\xc5\x38\x90\x60\x11\x66\xdf\x05\x27\xea\xcf\xa7\x6c\x85\x82\x8d\x1f\xa3\x0f\x41\x3b\xf5\x6f\x82\xee\x33\xa3\xb4\x7b\x57\x16\x32\xf7\xaa\x17\xbb\x90\x59\x49\x8a\xf9\x33\x9c\x58\xaf\x24\x07\x00\x80\xad\x11\x66\xd5\xbc\xd0\x8f\x96\x3c\x28\xbd\xab\x23\x94\x67\xe7\x7d\xd5\x46\x55\xee\xdf\xb4\x59\xe3\x52\xb3\x2e\xde\x4d\xf5\x12\xf6\x22\x3c\x4d\xd9\x85\xb8\xe4\x27\x53\xa4\xa3\x3f\x2f\xbd\x23\x7b\x89\x8f\x77\x7a\x2e\x15\x91\xfe\xb2\x65\x49\x82\x68\x28\x00\x10\x2f\x00\xaf\xd5\x18\x75\xdb\xcb\x93\x4a\x45\x5a\x59\xa5\x24\x6f\x44\x53\x5b\x7d\x62\x93\xa3\xba\x18\x36\x2b\xee\xba\x2a\x09\xae\x0c\x77\x50\xce\x42\xc5\xf8\x6d\x96\x9f\xc2\xae\x59\x7a\x52\x06\x11\x22\x9c\xde\x4b\x57\x92\x19\xb6\xad\xe2\x7f\x69\xe7\x01\x40\x74\x07\x7c\x5a\xe3\xaf\xdd\x5d\x79\xb5\xd4\x5d\xd3\x51\xfd\x34\xaf\x50\x2d\xab\xfd\xb6\xf1\x80\xaa\x19\xee\x10\x27\x51\x36\x21\xcb\xc2\xce\x2b\x88\xe8\x07\x7e\xcb\xe4\xe1\xb8\x86\xa5\x23\x32\x80\x88\x72\xfa\x2a\x39\x42\xa9\xb5\x3d\x26\xd6\xd3\xd1\x00\x20\xd2\x42\x61\xd5\xd3\x35\xab\x61\x3f\x4a\x9c\xd5\x0b\xe0\x67\x73\xab\x55\xcb\x91\xb8\xb4\xe7\xca\xf5\xe8\xf8\x0d\x37\x14\x49\xd8\xf8\xb0\x75\xf2\x10\x3c\x7a\xcd\x88\x6c\x3e\xf1\xc8\x52\x8a\xe4\x37\x65\xd1\x3c\x40\x7c\x9f\x66\xb6\xfd\x24\x9a\x04\x6d\x01\x40\xf8\x88\x19\x5b\xf9\x48\xb5\x11\x2d\x2d\x06\x94\x70\xcc\xcf\x1c\x94\x42\x80\x2b\x4f\xb3\x97\x6f\xc7\xdf\xda\x30\x47\x76\x93\x48\x5f\xa7\x91\xde\x27\x87\xae\x59\x2e\xb9\x45\x9d\xbf\x34\x48\xfc\x92\x3e\x6d\xde\x54\xd1\x27\xd0\xce\x2e\x50\x64\x05\xdd\x03\x00\xa1\x27\x4b\x5c\x71\x4c\xd1\x4f\x44\x16\xfd\x92\x9f\x27\x99\xb3\x09\xb2\xf7\x64\x59\xea\x32\xd9\x7a\x4a\x67\x6c\x92\x94\x4e\xbd\x11\xfa\x40\x62\xa6\x2f\x5f\xdd\x2a\xee\x63\x28\x3d\x5e\x89\xee\x41\xd3\xe6\xcd\x14\x39\x31\x05\x76\x08\x61\x28\x6b\x0f\x00\x08\x50\xec\xb3\xe5\x65\xb2\x52\xc8\x52\x68\x92\xf6\x32\xe7\x66\x2d\x97\x7c\x62\x8a\x53\xac\x24\x05\xac\xa9\x31\xb9\xe2\x6d\xac\xc6\x50\x67\xd1\x67\x76\xe8\xea\x29\x22\x7f\xf6\x1d\x0f\xb3\x50\xc4\x91\x38\x7d\x13\xdc\xe6\xce\xb1\x3b\x2a\x58\xca\x4d\x05\x00\x7e\x0d\x97\x52\x2a\x93\xc8\x45\xd3\x0b\xa6\x8a\x9f\x0b\x1f\x65\x9c\x12\xe7\x08\x4f\x24\x9d\x17\x9d\x15\xb6\x47\xa7\x89\x22\x85\xdc\x90\x50\x61\xb7\xb0\xc8\x37\x5f\x68\x25\x5c\xe5\xb1\x42\x80\x17\xbc\x73\x3a\xc3\x7f\x22\xa0\xdb\x5d\xe0\xe7\xf0\xbb\x00\x80\xd7\xc7\x9b\x2c\x99\x23\x5e\xa1\x5e\x9d\xd7\x2c\xea\x53\x49\xd3\x05\x22\x6f\xe5\x99\xc4\x6d\xc2\x51\xa5\x75\x54\x85\x30\x50\xb1\x36\x98\x22\xd8\x27\x4f\x5f\x75\x4c\x10\x2e\xcb\x71\x1f\xe1\xef\x94\x2e\x72\xc2\xf0\xc3\xc4\x1a\xbb\x71\xde\x1e\xe1\x21\x00\xe0\x2d\xe2\x7f\x2e\xc6\x8b\x1a\xf4\x84\xbc\x19\xa2\x25\x3a\x75\xfa\x14\xe1\x90\x56\x9e\x98\x2c\x0c\xd2\x40\x51\xf6\x82\xfd\xea\xe2\x60\x7f\x41\xba\x6a\xc9\x2a\x1d\xff\x8e\x62\xdc\x5d\xc8\x2f\x92\xcf\x75\x4a\xe3\xdd\x97\x02\x76\x63\xbc\x3a\x51\x1f\x00\x70\xaf\x0a\x60\x9b\xdf\x8a\x16\xd7\xbb\xe4\xb6\x09\xfb\x4c\xb6\x9b\x06\x84\x21\x86\xb3\x09\xbf\x05\xfb\xf5\x82\xc8\x6b\x82\x58\x9d\x7b\xf0\x74\xfe\x6d\x4d\xe3\x2a\x36\x9f\xa8\x7a\xee\x4e\xe5\xbd\x52\x9c\x77\x8a\xe3\x11\x64\x71\x76\x67\xb8\x3f\xc5\x2c\xe0\xff\x28\x2c\xeb\xb7\xa8\xf3\x36\x0a\x7f\x30\x50\x01\x51\x90\x12\xa4\x3b\x14\x29\xe9\x06\x29\xe9\x18\x18\x98\xee\xee\xee\xef\x74\xd2\x6d\x77\x77\xd7\x9a\x6b\xf7\xda\x9d\x6b\xac\x5d\xeb\x5a\xef\xf5\xfe\x03\xe7\x7a\x7e\xb8\x9f\x73\x6e\xa0\x62\x42\xa7\xea\x2f\x2e\x70\xef\x50\x55\x69\x46\xa7\x20\x6f\x97\x0c\x0d\x7b\x63\x0a\x73\xde\x0f\x26\xe3\x8e\xa6\x5e\xee\x4f\x27\x6a\x13\x9a\x7b\xc7\x52\x24\xe1\xd3\xbb\x36\xd3\x37\xfa\xe9\x1c\x95\xec\x70\xb7\x77\xd6\xcb\xbc\xfd\x60\xad\x19\x2f\x4a\x06\xc0\xf0\x5b\xda\x59\xbf\x62\xfe\x64\xe4\xb6\xaa\xe6\x91\x18\xf4\xa3\x12\xd6\x50\x09\x6e\x46\xce\xc9\x01\x11\x81\x91\xba\xae\xaf\x8b\xf4\x5f\x42\x46\x0f\x95\x7a\x28\xdc\xb9\x2b\x9a\x71\xd8\xcf\x68\xbf\xc2\xfe\x32\xd9\xc5\xca\xe0\x97\x81\xb3\xe6\x69\x22\x01\x00\x86\x3d\x52\x4b\x3d\x73\xd4\x0d\xe3\x59\x15\x38\x9c\x8f\xf3\x2e\xc9\x18\x64\x11\x22\x72\xba\xfa\xf7\x92\x8a\x52\x25\xbd\x8f\x28\xcb\x12\x3c\xba\x4f\xd3\x73\xc3\x5e\x77\xf6\xb1\x5c\xfd\x8c\xf6\x7a\xee\xb8\xc9\xc1\x96\x5f\x02\x0f\xf0\xd9\xb4\x4d\xf4\x05\x00\x03\x51\x7a\xac\x6e\xe1\x30\x9e\xf0\x57\x25\x6c\x70\x1b\x49\x5b\xac\x1e\x00\x94\x8c\xec\x9f\x7d\x75\xb4\x88\xd4\xf1\x3d\x26\x46\x7e\xfc\xae\x2e\x23\xcb\x10\xb6\xd9\x41\xe2\x7c\xf1\x13\xd8\x0a\xf8\xa2\xc9\x25\x96\x29\x22\x67\xa7\x52\xe3\x03\x09\x16\x00\xfd\x0a\xd9\xa6\xda\xcf\x83\x2b\xa8\x97\x2b\x96\x0e\x78\xd0\x2b\x8b\xce\xf7\x09\x18\x07\xb2\xd1\x3d\x37\x59\xad\x29\x9a\xee\x28\xce\x8c\xf8\xda\xce\x0c\xee\xef\x30\xaa\x7d\xa6\x60\x9c\x1f\xd9\x1a\x23\x8a\x99\x4c\x34\xfb\x49\xf2\x9d\x86\x8d\x40\xe6\x09\x80\xee\xaa\xfc\x7e\xcd\xb7\x01\x6f\x76\x59\xf9\xc5\x3e\x2b\x07\x51\xe4\xd7\xf3\x8d\xcb\xcd\x3a\xd8\xcd\xe6\xed\x4c\xfe\xb7\xf3\xa2\x20\x20\xee\xb1\xfd\xb3\x70\x20\x2c\xc4\xfa\x53\x1c\xe3\xd7\x68\xf1\x96\x3c\x9d\x6c\x30\x45\xc9\xd4\x4e\x6f\x0d\xd1\xf2\xd3\x00\xe8\x26\x2b\x3d\xaa\xff\xee\xbd\x2d\xee\x28\xbb\xd9\xc3\x96\xb8\x15\x96\x74\xfd\x96\xec\xc8\x72\xed\xb4\x4b\x19\xc9\x14\xc7\x44\x59\x4e\x9c\xc0\xd6\x20\xf7\x0a\xbd\x6d\x81\xe4\xff\xfa\x55\x98\xb6\x28\xde\x4c\xde\x6b\xb8\xa5\xdc\x34\x06\xaf\xfb\xad\xf2\x05\x00\xfa\xa1\xea\x99\xb7\xa6\x67\x8a\xfa\xcb\xdc\xeb\x5d\xbb\x34\x6e\x05\x6d\x9d\x78\xcd\x8c\xcc\x72\xc7\x38\x4d\x76\xd2\x9f\xb6\x01\x0d\x2e\xf6\x83\x75\x9c\xc6\x1a\xaa\x30\xb7\x6b\x36\xfa\x85\x1a\x47\x34\x67\x26\x5f\xd4\x5f\xd5\x2c\x1e\xb3\x55\x37\x43\x13\x06\x00\x94\xac\x3e\x50\x75\xb0\x6b\x83\x39\xae\xf4\x76\x27\xca\x74\x30\x5f\xea\xf0\x30\x15\x65\x40\xb6\xc3\xc6\x0b\x49\xb1\x56\xac\x11\x1e\x2b\x30\x7f\x34\x5c\x0d\x8d\x34\xb1\x0c\x05\xbe\x8f\x0d\x87\xf5\xec\xc9\xdb\xf5\xee\xba\xda\x31\x37\xb4\x2c\xe8\x1f\x00\x34\xf3\x35\x5b\xaa\x12\x3a\x7f\xdb\x5e\x95\x92\x1c\x87\x6c\x95\xf9\x7e\x76\x95\xb5\x3f\x23\xd9\x96\x6c\x79\x38\xfb\x95\xe5\xba\x25\x22\x76\xae\x59\x64\x6e\x08\x1d\x67\x1a\x63\x22\xf9\x5e\x30\xb4\x19\x23\x27\x6f\xd4\xad\xd1\x77\x8e\xb9\xa1\xf5\xd7\x6e\x01\x40\xd3\x06\x8d\xab\xdc\xd2\x89\xee\x0a\x28\x9d\xe4\x88\xef\x6c\xc9\xbb\x6c\xfb\xe4\x10\xa4\xff\xb4\xae\xb0\xdb\x67\x9f\xb2\x54\xd8\x06\x62\x93\x4c\x1f\xad\xba\x90\x9f\x46\xab\xa5\xc6\xf7\x8a\xfe\xa1\x69\xed\xe4\x03\xba\x64\xc3\xfa\xb1\xe3\xa1\xb5\x3a\x16\x00\xea\xf7\x10\xbe\xe2\xaf\xa5\xc9\x1d\x5f\x8a\x97\x2c\xfa\x82\xca\xcc\x79\xb5\x60\x2b\xc6\x9e\xb6\x7e\x54\x8e\x77\x9f\xe5\x32\x1c\x46\xbc\x18\x15\x3d\x00\x51\xce\x04\x2e\xed\xdd\xc5\x18\xe7\xe5\xd5\x75\x95\x6d\x9e\xb4\xc8\x7e\x8f\x1f\x0e\x80\xe5\xa9\x48\x0b\x80\xf1\xae\xf4\xaf\x8a\xad\x4b\x72\x50\x53\x8a\x75\x8b\xa6\x61\xe2\x73\x2e\xcd\x7f\x8c\x6b\x4e\xeb\x1d\xf9\x83\xb0\x72\xe6\x87\x21\x09\x79\x4e\x94\x5f\xff\x53\xda\x98\xc0\x85\xbd\x71\xcc\x09\x5e\x01\x5d\xad\x9c\xea\x49\xc7\xec\x02\xfe\x52\x00\x2c\x0e\xd1\x2e\x00\x8c\x3d\xd2\x23\x15\xda\xc5\xc5\x98\x86\x62\xf8\xc2\x99\xb8\x8a\x9c\x75\xf3\xa7\x10\xe6\xa5\x51\x87\x7f\x93\xe8\x33\xcf\x0f\x9e\xa0\x5c\x8c\x02\xfd\x45\x74\x76\x60\x4f\x4f\x2f\xab\xd4\x2b\xb8\xf3\x0a\xb7\x6a\xd2\x3d\xdb\x6f\x41\x07\x00\x96\x18\x71\x3c\x00\xc6\x4c\xe9\xe7\xf2\x13\x0b\xfb\x09\x37\x8a\x36\xcd\x1f\x26\xe9\x72\x3c\x46\x06\x28\x99\xa9\x9f\x86\x3a\x69\x09\x33\x45\x03\x24\x46\x5d\xe4\xa1\xde\x2f\xac\xc5\x81\xac\x6e\x04\xd7\xdf\x6b\xba\x63\x2f\x7f\x95\x8b\x8b\x6d\x82\x28\x1d\x00\x73\x95\x44\x07\x80\x81\x29\xbb\x5c\xde\x30\xff\x12\xf5\x40\x51\xd4\xc8\x77\x7a\x44\x36\x34\xec\xc5\xe8\x49\x95\x0c\x06\xb2\x32\x66\x4e\xeb\x9f\xc8\x99\x18\x29\xee\x59\xc3\xfd\x16\x58\xd6\x15\x26\x70\xf1\x8a\xb1\x8f\x8a\xf2\x5c\x52\xac\xe3\x24\x2d\x00\x98\xd0\xb2\x68\x00\xf4\x03\xf2\xef\x65\x98\xd1\x06\xd6\xc5\x42\xda\xb0\x9c\xfd\x2e\xeb\xed\xe0\x02\xae\x77\xca\x7f\xfd\xbb\x79\xa4\x84\xf5\xbd\xdb\xf8\xf7\x22\x67\x75\x13\x84\xe4\xc0\x19\x8e\x77\x62\x57\xaf\x24\x9b\x56\x72\xd7\x05\x67\x71\x91\x41\x00\x18\x15\xf2\x0b\x00\xe8\x8e\x29\xe3\xe6\x2e\x1a\x0e\x16\x6d\x2d\x38\x38\x88\x13\x23\xb2\xe0\xfd\x8b\x25\xe3\x52\xd4\xbd\x97\x24\x97\x12\xea\xbb\x9f\x49\x77\x45\xbc\xeb\x3c\x20\x5b\x15\x38\xd6\xce\x91\x2f\xf3\xaa\xb2\xfa\x29\xb6\xba\xec\x34\x6d\x53\x9a\x40\xa5\xa1\x4e\xf9\x1d\x00\xed\x56\x55\x5f\xe9\xbe\xc1\x1c\xd5\xd9\x82\x71\xfd\xa3\xaa\x37\x99\x07\x7a\xff\x55\xbb\xa4\x80\x9e\x1c\x75\x71\xfc\xd7\x2e\xac\xda\x12\xb1\xc2\x41\x50\x5f\x98\x71\xd1\x36\x57\x33\xcd\xab\xca\xfc\x4d\x53\xe7\xf2\xd1\xb8\x44\x53\x01\x36\xeb\x71\xea\xbb\x00\x40\x7f\xab\x17\x95\x1c\xeb\x3f\x64\xe4\xe5\x47\xf4\xcd\x34\x46\x66\xfc\xea\xe9\x31\x9c\x48\xee\xe8\x7a\x6a\x10\xc4\xd3\x3b\xc3\x0c\x11\x11\x05\xf6\x12\xfd\xa9\x19\x9d\xd6\x4a\x7d\xbb\x57\x94\xd9\x4b\xb7\xdd\xe5\x83\xe1\x82\xf6\x38\xb8\xa6\xdb\x06\x29\x01\x80\x1a\x34\xc2\x92\xe6\x7e\x77\xeb\xf8\xbc\x63\xbd\x5a\x8b\x2a\x63\x4d\xf7\x07\xf3\xf3\x64\xdf\xae\x2a\x33\x2c\x3e\xcd\x61\x36\x1d\x8d\x08\xb0\x1d\x30\x05\xcd\x60\x5b\xae\x1a\x91\x5e\x81\xa6\x15\x86\x6a\x97\x1f\x06\x9c\xee\x1d\xf8\x57\xd7\xa4\x2d\x07\x00\x02\x9a\x9b\xc5\xdf\xfa\x28\x0e\xf7\x3c\x49\xcf\x13\x3b\x22\x83\xdb\x0d\xb7\x0d\x26\xbd\xeb\xdc\x6c\xbd\x1e\x1f\x66\xff\x60\x75\x8b\x98\x6a\x9b\x6d\x89\x9f\x21\xb0\xc0\xcc\x11\x5e\x71\xa6\x68\xe3\x2e\x57\x2f\xfd\x73\xfd\x7f\x4e\x79\xda\x3b\xda\xdf\x00\x68\x96\x40\x59\xc5\x5e\x2b\x2d\x08\x56\xce\xdd\xe5\xe1\xa8\xbe\x39\x69\x4b\xd6\x63\x2e\x24\xe6\x2f\x4a\xc5\x57\x45\xff\x9c\xdf\x45\x72\x0d\x19\x19\xee\xa7\x8e\xf7\xdb\x3a\x80\x63\xe4\x4d\x9d\xd2\xeb\xc3\x3e\xef\xbc\xa4\x73\x2b\x1f\x03\x80\x2d\x57\x34\x08\x80\x69\xa1\xf4\x5e\xd1\xbf\x2b\x46\x51\xfc\x9c\xd3\xcb\x4a\x30\x82\x39\xb1\x8b\xef\xe0\xac\x89\xc9\x0b\x05\x84\x1b\xd1\xef\x46\x1f\x92\xf1\x21\x83\x43\x1f\x69\x49\x7e\xbb\xfb\x2f\x31\xd3\xa7\x46\xf4\xf4\x73\x0c\xce\x47\x3a\x0b\xf9\x97\x00\xb0\xde\x17\xfd\x09\x80\xa9\x5e\x7a\xa2\xe8\xe2\xf2\xb5\x98\x65\x39\x6b\x97\x62\x71\xba\x39\x9e\x8b\x5d\x08\xe2\x44\xdf\x05\x5b\x49\xbd\xd1\x37\x47\x67\x52\x3e\x85\x58\x86\x2a\xe9\x03\x7e\xbb\xfb\xe7\xb0\xe8\x53\x93\x7a\x26\x71\x15\xce\x0f\x1c\x27\x04\x1a\x00\xac\x02\x71\x1a\x00\xc6\x8f\xd2\xcf\x45\xe1\x4b\xdf\x13\xbe\xe5\x78\x2d\x3e\x4a\x1a\x4e\xeb\x59\xa8\xa5\x94\xcf\xda\x3b\x3f\x9d\x96\x15\x3d\x3a\x7c\x84\x81\x09\xc1\x0e\x7c\x61\x6d\xf7\x5b\xd3\xfb\x95\x9b\x32\xb5\xa4\xeb\x39\xff\xdc\x84\x69\xf6\x63\xa2\x1a\x00\x2c\xf6\xff\x53\x6d\x0c\x91\x9d\x2f\x7c\xb0\x24\x9a\x7a\x29\x7b\xcb\xa2\x30\x7a\x60\x5a\xd8\x02\x67\x86\x7a\x16\x72\xe4\x14\x2b\x36\xba\x69\x08\xcf\xfe\x1d\x32\xa7\x7f\x15\xf7\x8b\xdf\x68\xcf\x1e\xc1\xe4\xa9\xcd\x9d\x47\x44\x95\x13\x4a\x6c\xbb\x25\x18\x00\xcc\x43\xb2\x40\x00\x0c\x45\xf2\xef\x05\x5f\x16\xed\x62\xd9\xb3\xdd\x17\x6c\x60\x6f\x4e\xdd\x32\xda\xc7\xb9\x3d\xcb\x69\x98\xc0\x4b\x8b\x9e\x3c\x38\x95\xbf\x23\x64\x52\x1f\x46\x58\xe1\x67\xeb\xd6\x8a\x3e\x4f\xc5\x3b\x56\x4a\x2e\x4c\x10\x5a\xb7\xcb\x24\x00\x98\xb6\xc8\x0f\x01\xa0\x67\x28\x63\x0b\xb4\x0b\x0c\xa2\xea\xac\xe5\xa3\xdd\xa2\x67\xa9\x2d\xc3\x9d\x62\xfd\xcc\x7d\x83\x42\x09\x32\xea\x61\x7f\x96\xb4\x31\xf8\x73\xcf\x56\x59\x83\xdf\x60\xe7\x6f\x39\x6a\xea\x88\x3d\x45\x21\x9b\xf0\xc4\x52\xab\x44\x03\x60\x14\x29\x6f\x02\xa0\xab\x55\x19\xf3\x5f\x8d\xda\x94\x9f\xb3\x92\x87\x77\xa9\x7c\x52\x27\x0c\x5e\x55\xcd\x99\xa9\xec\xbf\xa4\x52\x47\xed\xeb\x5d\xa7\xba\x13\xfc\xb8\xbb\x52\x9d\xe9\x37\xec\x38\xac\xee\x9d\x7a\xd4\xe6\xac\x7e\x36\x31\xd7\x9c\xa4\xfe\x0e\x80\x41\xab\x5e\x0c\x80\x56\xa9\xd6\xe7\xbd\x1a\x7e\x6d\x98\x91\x89\x19\x8a\xd7\xdf\x4f\x41\x0f\xb4\xeb\x07\x12\x3e\xf5\x91\xf4\xf0\xa8\x9a\x9e\x46\x7d\x64\x70\x67\x57\x80\xee\x85\x1f\xdc\x7e\x44\xd7\x3f\x75\x93\xd5\x4f\xe7\x31\xb1\xc5\xd4\xac\xad\x02\x40\x7f\x1a\x4a\x00\x00\x7a\xa5\xa9\xca\x5b\x34\x9c\x6a\x36\x66\x4e\x1f\x14\x99\xdd\x52\x02\xfb\x37\x99\x0c\x09\x87\x7a\x0f\x98\xa6\x44\xc5\x76\x6f\x31\x8e\x04\x0b\x3a\x2d\x46\x7f\xbf\x0a\xfb\x5c\x83\x68\xea\x26\xcb\x32\x7d\xe7\x44\x8a\xf1\x99\xee\xff\x8b\x49\x82\xde\x00\x00\x2d\xd1\x6c\xce\x43\x0f\x19\x6d\xf4\x8c\x47\x03\x67\xac\x47\x93\xdf\xf4\x8f\xb7\xba\x25\x2c\xe9\xf5\xb6\x90\xa3\xfc\xba\x5d\xcc\x87\x82\x99\x8e\xf7\x66\x67\xbf\x2a\xdb\x21\x53\xe8\xd4\x23\x96\x20\xc3\xe3\x89\x0e\x23\x5e\x8f\x04\x40\xf7\x49\xbb\x10\x00\xa8\x08\x72\x1b\x5d\x83\xa9\x6b\x6a\xe9\xfa\x81\xbd\x00\xab\xd6\x6f\xc6\xe3\xe0\x29\x92\x25\xc4\x48\xc4\x3c\xfa\x6e\xb2\x2f\xda\x84\x7c\x42\x4d\xc4\xfd\x55\xbb\x82\xae\x27\x55\xe7\xb5\xb1\x0a\x69\x91\xf1\xf3\xb8\x69\xac\x00\xef\xaf\x02\x1b\x2f\x01\x00\x89\x4a\x78\x6f\x64\x33\x6a\x19\xec\x46\x57\x00\xa6\x18\xae\xd3\xdd\xc7\xfe\x40\x44\x88\x5f\xe1\x9f\xa3\xbe\xd0\xfd\x88\xbf\xb1\xaf\x90\x2d\x94\x5c\xc2\xfb\xda\x78\xda\x1e\x4a\x48\x1e\x60\xf6\xd1\x57\xc6\xbd\xe7\x6c\x64\x17\x7a\x1f\x13\x84\xf1\xbe\x03\x20\x49\x17\x55\x0f\x6f\x47\x7c\x6e\x57\x75\x26\xa3\x76\x23\x1e\xea\x26\x61\x46\xd1\xd9\xe2\x58\xdc\x5a\xec\x09\x1a\x97\xf0\x94\x20\x44\x1c\x27\xcf\x25\xa7\xd5\x6c\xa6\x3e\xa3\x05\xe4\x0e\x33\x1e\x32\x2b\xe2\x16\x70\x02\x39\xdd\xde\xdd\xfc\xcd\xfc\x0f\x00\x88\xef\x8b\x9e\x0c\xde\x87\xef\xc3\x6e\xb5\xb3\x3a\xce\xe3\x97\x43\x58\xe4\x6f\xa2\x49\xb8\x15\x53\x45\xee\xa2\xc6\xe3\x8e\x50\xf7\x76\xac\x21\x12\xe9\xef\xab\x8f\x51\x4a\x59\x95\x39\xcf\xe9\x22\xce\x99\x38\x17\xd6\x67\x3e\xd5\xbb\x8a\x77\x50\x14\x00\x80\xd8\x4f\x52\xdf\xbf\x06\x76\x9d\xda\x6e\xed\x82\x4f\xa1\x9d\x57\x5f\xe8\x20\x33\xe6\x08\xea\x90\x6f\x99\xdb\xc8\xff\x62\x96\xb1\xab\xdb\xe7\xe3\x0d\x9c\x77\xf3\x1e\x92\x56\xf0\xd6\xe7\x24\xd2\xbc\x04\x96\x58\x2b\xf3\xac\x48\xee\x1d\xce\x3d\x25\x61\x03\x20\x2a\x97\x3e\xed\xdd\xd5\x3c\x9e\x6b\x35\x5f\x87\x31\x78\x54\x55\x79\xdb\x77\x7e\x2e\xef\x4b\xc7\x3e\x41\x0c\xe9\x1c\x6a\x95\x30\x1e\x3e\x84\x3d\x26\x4a\x9c\x37\x91\x18\x2c\x2e\xcd\x36\x50\xfe\x94\xf0\x62\x67\x30\x76\x48\xd7\x79\x7b\x71\x1e\xc8\xfe\x02\x40\x68\x94\xab\xba\x7d\xea\x5b\x55\x71\x46\x4c\xd3\x34\x55\xbc\xfc\x7b\xcb\x3f\xaa\x70\xce\xc3\xb6\x0f\xaa\x04\xc2\x67\x44\x94\xaa\xb8\x6d\x22\xda\xa6\xaa\xaf\x3c\x83\x4f\x54\x61\xb2\x96\x92\x83\x54\xdc\x98\xa5\xf4\x26\x95\xd2\x7b\x0c\xfb\x82\x0a\x0f\x80\x60\x9b\xf2\x82\x63\x6d\x4d\x9b\x8d\xab\x8f\xaa\xc7\x58\x95\xd2\x4f\x4d\x1a\x8b\x91\x3d\x01\x76\xc8\xbc\x02\x5f\xd3\x9e\x68\x3a\x0a\x5b\x8a\xbc\x62\x3c\x5d\xb1\x11\xbb\xc3\x70\x24\xf3\x0a\xf1\x91\x7e\x71\x4c\x12\xad\x45\x87\xf3\xfa\xc0\xf6\x85\x9e\x02\x20\x98\xa3\xfe\xcf\x76\x62\x5e\xda\xd0\x7b\x6d\x5b\x6d\xc7\x60\x9b\x24\xa7\x61\x65\xff\x2a\x26\xaf\x65\x5a\xef\x13\xec\xbd\xb6\xad\x3d\x53\x5b\x38\x08\xa8\x6b\x7a\xf9\x71\x4c\x8f\xfd\x7b\x66\x1e\xe1\x9b\x75\x5d\xcc\x58\xea\x88\x39\xd6\x7b\x02\x6b\xc4\x90\x06\xd2\xf8\xef\xa0\xfb\xd6\xd7\x55\xac\x85\xf7\xa1\xe1\x9a\xd1\xf9\x8f\xc4\x9d\xf5\x2f\x46\x4e\x31\xae\x36\x13\x87\x96\x60\xeb\xda\xbc\x07\x90\x2d\x4e\x1d\x9f\x7b\xdf\x97\x0b\x30\xde\xdd\x75\x99\x5e\x84\x1e\x07\x23\x66\x3c\xb5\xd8\x3a\xcf\x3b\x9a\xd5\x61\x5c\x0a\xc4\xfc\x33\xda\x3e\x2b\xaa\xf2\xc9\xb2\xa7\x50\x50\xcd\xa4\x25\x43\xe2\x98\xfa\xc6\x45\x71\x0c\x71\xd3\xd5\xf9\x9b\x31\xbf\x5b\xad\x23\x53\x9a\x4f\x76\x70\x07\xb3\xca\xdb\xd0\xf3\xfb\x22\x32\xa7\x10\x62\xbb\xf6\xc4\x24\x51\x1e\xda\x27\x79\xe3\x58\x53\x4c\x3b\xc1\x0d\xbe\x4d\xfb\x65\xf0\x1c\x6e\xa8\xa9\xdd\xce\xc2\x3f\x82\xd5\x42\x24\x62\x05\x3c\x49\xb8\x98\x74\x13\x31\x8f\x0a\x28\x43\x68\x5b\x87\x98\x06\xe1\xee\x54\x77\x33\xd6\x90\xda\x73\xb6\xb0\x63\x69\x59\xb1\x3f\xb8\x0f\x59\xd9\xde\x15\x82\xcf\x3c\x1c\x00\x92\x95\xa2\xe8\x81\xa7\x98\xe7\xb0\x33\xb6\x41\x5c\x3b\x9c\xab\x59\x8a\x7f\x81\x98\x2a\x78\x47\x5c\x8a\x7a\x4e\x21\x90\x8d\xd8\x27\xed\xef\xa9\x43\x84\x37\xd5\x33\xe8\x0f\x29\x51\x39\x35\x2c\x88\xbe\x29\x76\x2d\x17\xc9\x86\x7b\x07\x09\xba\xf9\x71\x00\x48\xd0\xa2\x9e\xfe\xb7\xe8\xdc\xf6\x76\xeb\x4e\xcc\x55\xc4\x5e\xf5\x15\x9c\x05\x3d\x4d\x30\x87\x40\xc5\xae\x23\x1f\x27\x71\x09\xe8\x76\x3c\x65\x05\x39\x6a\xde\x0a\xba\x27\xcd\x27\xfb\x35\xf3\x0a\xb3\x3a\x16\xc9\xb9\xc8\x59\xe1\xf5\x41\x10\x26\x98\x01\x80\xc4\x45\x1c\xd5\xfb\x05\x11\x8e\xc5\x98\x5f\xa0\x9c\xf0\x18\x55\x32\xfa\x17\x71\x1e\xef\x04\xce\x87\xdc\x4e\x32\x10\xe0\x54\x2b\xbc\x9e\x74\x8e\x7e\xb6\xea\x30\x55\xc2\x4a\xca\x2e\x64\xb0\x39\x47\x62\xee\xb0\x37\xf2\x05\x5e\x07\xf8\x69\xa2\x5c\x00\xc4\xe5\x12\x47\xf7\x17\x78\x32\xe5\xad\x29\xb8\x63\x2e\x8d\xab\x58\x8c\x94\xd2\x9f\x72\x09\xe8\x93\x4c\x2a\xb1\x05\x57\xca\x76\x6b\x9b\x4b\xf8\xc2\xd9\x5b\xf9\x90\x7c\x9f\xa7\xcf\xea\xa3\x7b\x0a\x04\x31\x24\x96\x45\xa4\xf0\x5a\xc8\x2b\x91\x58\x00\x10\x29\x64\xfe\x5d\x63\x60\x5c\xce\x4f\x03\xa1\x6d\x17\xf7\xbd\xdc\xaf\x23\x98\xf7\x17\xc7\x15\xb9\x98\x7f\x82\x90\x80\xa9\x13\x5c\x6d\x2d\xc6\x67\x09\xff\xae\x74\x21\x21\xc4\xee\x99\xef\xa8\x27\x25\x75\x31\xe3\x98\x62\xe9\x62\x2f\x2b\x17\x23\x7b\x08\x80\xf0\x0f\xf9\x3a\xbb\xa6\xf1\xac\xb2\x5a\xe7\xd6\x82\x53\x72\x25\xcf\xda\xbc\x94\x66\x96\x4b\xfb\x7d\xe5\x42\x1c\x16\x79\x43\x79\xac\xe5\x10\xd6\x55\xf9\xb4\xfc\x06\x41\xa8\x72\xc9\xf4\xa3\x44\xab\xd2\xa2\x07\x19\xd3\x55\x1d\x5e\x03\x9c\x2a\x15\x1a\x00\xc1\x13\xe5\x07\xab\x57\xdd\x2b\x6b\x9b\xe6\x7e\xe3\x7e\x8b\x55\xf4\x6f\xcb\x6a\xf3\x6e\x46\x51\xdb\x66\xd3\x33\xcc\x89\x8e\xe7\x26\xdf\x66\x3c\x1a\x66\x4c\x2b\x3b\x8e\x07\x86\xb9\x19\x4d\xa4\x7f\xf4\x85\xd1\xc9\x74\x7f\x5d\x84\x97\x83\xed\x80\xce\x00\x1f\x01\x4a\x33\xc9\x1c\x54\xb3\x77\x70\xa9\x7a\x6c\xfd\xae\x81\xd9\xc2\xf4\xa6\x2b\x7d\x4b\x68\x5b\x5a\x9d\x7b\x3e\xa0\xf1\xed\xd4\xee\xd4\xa6\x7c\x94\x73\x67\xeb\xdc\x27\xd8\x7b\xf6\xb6\xf4\x3f\x49\x63\xac\xf1\xd1\xe3\x69\x08\xd3\x29\xaf\xd5\x6c\x37\xfd\x2f\x60\x11\x78\x42\x37\x4d\x75\xd5\x6f\x17\xf0\x55\x25\x75\x9f\x46\x17\x0b\x74\x4d\xbe\xc3\x6b\x69\xd3\x60\xad\x83\x43\xa8\x3b\xf0\x33\xfd\xcc\xc6\x2b\x48\x51\x6f\xd0\xdc\x41\x2c\xba\x6b\x51\xfa\x7c\xe2\xb0\xfd\x5e\xf4\x04\x9a\xb3\xe5\x9e\xd7\x09\xd6\x19\x23\x06\x9c\xe7\x3f\xd7\x1a\x8d\x67\xaa\x91\x4b\xc9\xca\x93\x75\xa8\xc5\xc5\x82\x69\x8d\xea\x05\xff\x51\xb7\xb5\x1c\x1f\x1d\x44\xd9\xe0\xf9\xc3\xee\x8d\xf3\x11\x1f\x06\xe0\x73\xe5\x98\x27\xbd\xa4\xf4\x85\xc4\x84\xae\xf0\xe8\x54\xea\x52\x5b\x8f\xf7\x44\x96\xc4\xc4\x76\x8a\xe1\xaf\xd4\x3e\xef\x3d\x4e\xf8\xd6\x84\x37\x6f\x20\xf9\xc1\xea\x95\xcf\xc9\x30\xf8\x6c\x1e\x9e\xb2\x13\x51\x45\x72\xa1\x55\xa1\x2d\x6d\xe7\x18\xee\xb8\xdb\x55\x99\xac\x09\x24\x54\xd6\x06\x4e\x2d\x2d\x37\x06\xc9\xbb\xc8\x2a\xf7\xca\x11\xae\xe6\xa9\x00\x90\xfa\x8a\xda\x7a\x9e\xe0\xab\x61\xfb\x4d\xf7\x09\x83\x70\x94\x32\x9e\xf8\xbb\xe3\x5f\xee\x7e\xb2\x01\x75\x8d\xc8\xa7\x16\x62\x2f\xb7\x55\xd0\x63\x08\xf7\x2b\x4f\x30\x4b\x29\x81\x59\x75\xec\x0d\xf4\x75\x31\xde\xbc\x7a\x36\xd6\xcb\x47\x38\x97\x5f\x08\x80\xe4\x2f\xd1\x81\xee\x6f\xd8\x65\xed\xe9\x26\x67\xbc\x0f\xa2\x57\x41\x26\xac\x40\xbd\xe2\xba\x91\x9a\xb1\x16\xc2\x0d\x4a\x0a\xa1\xb8\xf5\x30\x2d\x9b\x3c\xb9\xb2\x99\x21\xa5\x8d\xcb\xfc\xc4\x1e\xc3\x2c\x88\xbe\xc0\x3d\xc9\x59\x39\xed\x93\xe0\x96\x60\xd6\xff\xf7\x42\x5c\xd3\x79\x07\xb5\x01\x3b\xd5\x30\x13\xd3\x86\xf7\x97\x9d\xc5\x45\x11\x3d\xd9\xcb\x09\x6e\xe4\x50\xfc\x32\x52\x24\xb5\x05\xb6\x83\xc2\xa0\x2f\xac\x10\xd2\x5e\xb0\xdc\x32\x6b\x99\xab\x39\xeb\xa2\x5b\x38\xeb\xf9\xcc\x69\x17\xf9\x9f\x44\xe5\x00\x88\x8f\x4a\x36\x3b\x3c\x3b\x36\x53\xd4\x3a\x29\x72\x39\xcd\x43\x9a\x85\xde\x4e\xef\x65\x95\x62\x4f\x33\xa7\xe3\x78\x04\x7f\xd6\xd1\x96\x75\xa4\x05\x1c\x79\xf9\x10\xb5\x85\xd7\x98\xb1\x96\x51\x27\x68\x8c\x7a\xcb\xb6\x8b\xe8\xd3\xf6\xf0\x27\x48\xec\x00\x88\xbe\xcb\x32\x6d\x7e\x70\x27\x0e\x13\x3a\xd0\x11\xc3\xe5\x89\x37\x22\x19\x3c\x12\xe3\x1f\xf4\x3a\x3e\x0a\x5b\x81\x4b\x10\x08\x9b\xd7\x10\xfe\x16\xf6\x97\x1d\x25\xdf\x10\x9d\xc9\x70\xa7\xbb\x4a\x42\xa2\x86\x58\x0a\xa9\x7e\xda\x7a\x5e\xb4\xec\x36\x00\xa2\x3c\xf9\x9f\xe6\xbd\x2d\x44\x05\x5d\xad\x6a\xbd\xad\xd8\x26\x1c\x68\x27\x2a\x5e\xd2\x7e\x20\x3e\x2b\x27\xa1\xad\xe8\x43\xca\xdc\xa6\x24\xdc\x11\x25\x6b\xee\x08\xf1\x3f\xe5\xda\xf4\x02\x2a\x4b\xf9\x2a\x2a\x8d\x19\xaa\x4a\x98\xf6\x07\xd7\x43\x55\x09\x80\x10\xa3\x02\xc6\x8a\xc6\x65\x96\x6c\x25\xba\xa5\xc8\xdc\xcb\xff\xa3\xf5\x97\xe9\x21\xb5\xb0\xfd\x9c\x29\x18\xf9\x03\x79\xcd\x88\x6d\xb8\x8f\xf5\x36\x0c\x96\x76\x12\xcc\xfa\xc3\x73\xf4\x94\x74\xdd\x8d\xc8\xeb\x8c\x30\xed\xcd\x69\x07\x39\x8d\xd0\x02\x00\x04\x37\x34\xce\xfa\xbc\x7a\xe2\x40\x95\x9c\xd7\x94\xd7\xf7\x8b\xfb\x09\x36\xab\xb7\x87\xbc\x15\x1e\xd9\xfd\x15\xb1\x0c\xd1\xda\x55\x5f\x7f\x04\x7d\xcc\xd1\x5d\xb2\x1d\x4f\xb6\x6d\x49\xfb\x8f\x3c\xcf\xb2\x28\x72\x2d\x9d\x64\x42\x4e\xbb\xcd\x3e\xa7\xdf\x03\x98\x02\x1d\x74\x4c\x27\xaf\x1b\x99\x3f\x4e\xb6\xbd\x51\x3a\xd2\xc2\xcd\x68\x11\x0c\xe9\xc8\x5e\x6d\xe2\x01\x23\x22\xa8\x63\x4f\x9f\xb0\xbe\x15\x9d\xda\x53\x5a\x42\xc6\xbd\xec\x7c\x96\x76\x89\xf4\xd8\x5e\x1a\xb9\x9e\x3e\xc5\x42\x9e\xf6\x95\x6d\x33\x7a\x81\x4d\x82\x66\x2d\x53\xe7\x54\x37\x6e\xf1\x63\x59\x7a\xc3\xa3\x85\x4f\x39\x07\x9b\xef\xcf\x3f\x4c\xda\xd2\xfa\x74\x84\xdf\x71\xa5\x23\x7e\x68\x42\x7d\x18\x6a\x63\x3f\xbf\xa4\x1a\xc7\xe8\x59\x9e\x76\x85\xc4\xef\x84\x22\xaf\xd2\xd6\xda\xa6\x79\xa5\xb1\xd3\x4d\xc1\x4e\xae\x82\x29\xda\x4b\xd6\xc5\xd4\xde\x26\x81\xe6\x09\x4d\x0c\xc3\x88\x1c\x74\x29\xbc\x90\x6e\x61\x6c\x44\x54\xa2\xb7\xb2\x5c\xd0\xca\xa6\xb1\x6c\x1d\xee\xfc\xdc\xc9\xdc\x59\xa4\x96\x39\xb9\x7c\x17\x5a\x4a\x44\x9f\x30\x86\x55\xec\x61\x11\x77\xf1\x3a\x01\x90\x19\x44\x90\x65\x2d\x25\x10\xb6\x54\x13\x40\x9d\x01\xaf\x11\x7e\xa0\xa5\x77\xbc\xa7\x7d\xa4\x77\xa2\x76\xa3\xa3\x99\x93\xb1\xeb\x1a\x4d\xac\xd5\x84\x3d\xa5\xcb\x39\x7c\xf2\xcf\xb4\x27\x3c\x2e\xdd\x1e\xd1\x21\xd8\xc2\xae\xf5\xe0\x8a\x53\xf9\x25\x00\xc8\xe6\x8a\x6e\x9b\xd7\x90\x56\xc3\x3f\xa9\xab\xc8\x87\x10\x68\x61\x31\xe5\x5f\xd4\x9f\xb4\x3a\x1a\x13\x5b\x8d\xea\x63\xb8\x10\x9c\x1a\x27\x32\x4f\x90\x2e\x94\x66\xb0\xb7\x52\x2f\xa6\x39\xb8\x97\x98\x3e\x11\xa1\x82\x59\x1c\x8b\x07\x46\x74\x5e\x10\x03\x80\xf4\xab\x18\x67\xbc\x80\xbf\x8c\xe9\x51\xf6\x12\x03\x70\x03\xfc\xcd\x24\x03\xc1\x4c\xf9\x42\xc9\x26\x2d\x43\x32\x69\xd3\x28\x8f\x1a\x5c\x18\x2e\xf4\xd4\x12\x22\x2b\x91\xb9\x35\xf5\x39\xc7\xc4\x21\x85\xff\xc1\x0f\xe2\x17\x78\x54\x08\xdf\x89\x66\x03\x20\x2d\x94\x1c\x30\x84\x60\x5e\x92\x2f\x29\xc6\xe3\x18\xd4\x0e\x5e\x1a\xc1\x9f\x76\x85\xbc\x88\x34\x91\xc1\x40\xe4\x53\xfc\x59\xb1\xf5\x4e\xb4\x4a\xf6\x87\x62\x13\x63\x35\xf7\x6e\x6a\x1d\x3b\x87\xff\x35\x9c\xc5\x9b\x24\x4a\xf4\x28\x15\x4e\x96\x50\x01\x90\x40\xb2\x12\x9d\x12\x35\x83\x6d\x92\xb1\xd1\xaf\x38\x0a\xce\x61\xec\x15\x2e\x8d\x54\x83\xff\xc2\x53\x75\xf8\x90\x72\xf9\x9b\x6a\x7f\x53\x96\x0a\x9e\x16\x6d\xa3\xa7\x89\xd2\x52\xf6\x31\x7f\x8b\xd7\x84\x47\x73\x81\x34\xc5\x63\xae\x20\x49\xb6\xee\xff\x9f\x25\x3f\xa3\xb9\xd2\xfe\x52\x76\x47\xe2\x89\xb8\x2d\xcf\x61\xad\x45\xfd\x27\xb7\x10\x18\x58\xa4\xfc\x22\x9c\x8d\xff\x5b\x11\x5d\x33\x4a\xea\x52\xc8\x0b\x47\xa9\x14\xc5\xad\xe4\xef\x0c\xa6\xb2\x28\xec\x0a\x7b\xad\x72\xbb\x07\x9a\x1f\xa4\xfc\x06\x80\xe8\xa9\xf2\x9d\x6a\xa4\xf5\xb6\x69\xa6\x68\x52\x7b\x9e\x71\x15\xe3\x02\x62\x87\xd1\x0b\x77\x08\x5d\x6d\xd0\xb4\x7e\xc2\xb9\xea\x3f\x54\xb7\x11\xde\xe9\x1b\x0b\xe6\x53\xc6\xea\xd6\x27\x57\xd3\x73\xb4\x1f\xc3\x54\xac\x75\xda\x59\x1e\x58\x1e\x02\x8a\x02\x40\xd4\xac\xbe\xa9\x18\x6c\x79\xd9\x7b\x4c\x50\xd8\x06\xef\x59\x42\x4f\x6e\x7f\xd5\x0d\xc7\xce\x43\xae\xed\xfc\x02\xdb\x80\xe9\x76\xe8\xe7\x95\xe3\x97\xd9\xbe\xe7\x9f\x24\x3d\xb3\xc2\x92\x4e\xd3\x6a\xcd\xf2\xb0\x2a\xe6\x47\xa3\xcc\x43\xce\xbd\xa2\xf7\x07\x40\xf8\x01\x82\xe4\x5b\x5a\x92\x87\x53\xf9\x92\xd6\xa5\x83\x7b\x69\x96\xf6\xa4\x81\x40\xcc\x2e\xc4\x8f\x3e\x38\x6c\x26\xfa\x7d\x0f\x54\xf5\x08\xef\xd9\x65\xcf\x57\x92\x48\x0e\x56\xd2\x72\xea\x53\x9b\x6b\x58\x39\x73\xc4\xcc\xf0\xe8\xe3\x3a\x0c\x04\x00\x84\x07\xb4\xd1\x72\xd7\xe6\x0d\x0b\xae\xf3\xde\xb5\x4e\x9d\xef\x4f\x0b\x84\x0f\x8e\xa4\x61\xda\x11\x84\xa1\xa8\x96\x27\x68\x54\xff\xe7\xaa\x0d\x38\x4b\xef\xd2\x7c\x2c\xf1\x79\xb7\x7f\xd2\x6a\x2a\xd7\x91\x19\x46\x66\xa6\x5a\x5d\x3d\xce\x70\xe7\x18\x69\x00\x08\x99\xda\x4e\xa8\x9a\xf5\xbe\x49\x2f\x89\x66\x77\xc3\x28\xac\x5a\x4e\x1b\xbc\x0c\x7f\x8f\x9b\x87\x28\x6d\x5b\xc2\x2b\x41\xf3\xaa\xfb\xf9\x44\xdc\xd1\x82\x56\xc1\x26\x52\x7d\x52\x90\x28\x99\x16\x11\x52\x22\x7e\xc1\xca\x70\x6f\x91\xde\xe5\x59\x01\x50\xc0\x44\x16\x8d\x85\xc9\x84\xf5\x8a\x79\xac\x3c\x78\x2a\x73\x27\x3b\xa1\xe3\x0a\x7e\x2e\x27\x19\xd5\xdf\xe6\xc9\x85\x61\x75\xd5\x7e\xbc\x61\x42\x7f\xfe\x6b\x81\x13\xf9\xd1\xec\x4b\xc2\x65\x74\x66\x88\xb7\x58\xcc\x4e\x75\x2f\x97\x9a\xf9\x49\x00\x28\x82\x44\xd7\xd4\x07\xe9\xff\xc0\x4f\x88\x76\x32\x5e\x22\x62\x98\xce\x2c\x27\x94\x01\xb7\x94\x1d\x8a\x75\x6b\x55\x70\xf0\xf8\x43\xf3\xfa\xb9\xc7\x48\x03\xf9\x0a\x7e\x25\x75\xc9\x6c\xad\x70\x12\xe3\x79\xf0\x4b\xd1\x77\x0e\xc6\x3d\x57\x1a\x2d\x98\x08\x80\xfc\x8a\xb8\x45\x79\x93\x5a\x8a\x99\x22\x1c\x4b\x23\xe3\xfc\xe8\x7c\xfa\x7a\x82\x1b\xb6\x88\xe9\x4a\x8a\x87\x55\xb3\xcc\x14\x4e\x95\x83\x13\x4c\xbb\x9c\xb7\x8c\x7b\x9b\x89\x49\x7c\xce\x3f\xcf\x09\x0c\x5e\x2c\xfc\xc4\x1f\xef\x9e\x2e\x69\x10\x39\x01\x20\x0f\x97\xac\x51\xa0\x49\x3c\xd2\x0b\x7e\x27\xf9\x1a\xc5\x4a\x0b\xa6\xb6\xd2\xbc\x30\x6e\xb4\xb7\xf4\xfd\x2d\x73\x18\x2b\x98\xc6\xca\x05\x2c\x0e\x1b\x9f\x7b\x87\x83\xe5\x92\x13\xb1\x3c\x3b\xbf\x37\x98\x28\x78\x26\x7c\xe4\x5e\x2c\xe6\x4a\x66\x02\x20\xc3\xca\x66\xca\xb6\xe3\xbf\xb2\x5a\x79\xbe\x44\x09\x1b\x47\xb9\x48\x0e\xe7\x90\x50\xb7\x28\x6f\xb8\x5d\xcd\x51\xb4\x1b\xbc\x6b\x15\x9b\x19\xd7\x05\x31\xb9\xfe\xac\x6f\xc2\xfe\x59\x8f\xb8\x6d\xe2\x98\xe0\x44\xfe\x63\xc9\x65\x77\x98\x68\x44\x86\x04\x40\xba\x52\xbe\x56\xc2\xc7\xac\x91\x16\xb0\x5f\xe3\x44\xd2\x6d\xa4\xcb\x84\x76\x99\x27\x72\x0a\x09\x27\x13\x37\xf6\x53\x6c\xb2\xf7\xe5\x28\xda\x79\x39\x3d\xc7\x83\x99\x26\xff\x38\x2b\x85\x7d\x4e\x61\x0f\xfa\x9b\xd7\xad\x8c\x73\xa7\x0b\xad\xca\x4e\x00\x24\x27\x94\x07\x45\xb1\xc8\xef\x06\x4f\xe6\x2b\xf4\x0f\xfd\x02\xa2\x0b\x6e\xba\x3e\xa4\x43\x40\x68\xd2\xed\x6a\x98\x45\xda\xaa\x6b\x28\x4b\xa0\x26\x6a\x9f\x66\xcf\xa0\x5f\xd2\xf2\x67\x76\xb3\xe6\x43\x3f\x83\x46\xb9\x7d\x10\xc7\x5d\x21\x38\xac\x19\x06\x40\x12\xa1\x1e\x14\x14\x74\xdc\xed\xf6\x61\x64\xa2\x7c\xba\xa6\xe3\x35\x18\xbc\xe3\x5d\xfb\x74\xdc\x61\xfb\xc1\xfa\x71\xc4\x22\x9b\x66\x6e\x2a\xf9\x95\x35\x35\xab\x83\x76\xc0\x7c\x61\xa6\x07\x73\x97\x69\x6e\x10\x82\x73\xdf\xa0\x73\xb7\x09\xd2\x75\x24\x00\xc4\xfb\xa0\x58\xbe\xb5\x23\x78\xa0\x8e\xee\x40\xc2\xfb\x7e\xe0\xee\xa3\xb7\xf5\x2a\xe1\x0e\x9c\x7f\xf7\x87\xba\x2e\xc2\x8a\xae\xc6\xd2\xeb\x64\xa4\x63\x61\xd6\x74\x5a\xa1\xed\xcf\x84\x57\xcc\x79\x96\x3d\x41\x8d\x1c\xa3\x09\xe3\xbe\x88\xff\x4e\xbf\x1c\x00\xb1\x1a\x3a\xcb\xf7\x6c\xef\x1c\x39\x49\x0f\x40\x1c\x1d\x9e\x8d\xe3\xa3\x83\x06\x99\xf0\x74\xac\xa1\x7f\xa8\xae\x86\xe0\xd5\xbb\xbc\x74\x0d\xe9\x7a\xf7\x40\x96\x13\xf5\x58\x67\x5b\xc2\x4b\xc6\x6d\xdb\x95\x20\x2a\x27\xcc\xfc\xde\xfd\x2c\xbf\xdf\xb0\x12\x00\x71\xac\x36\x53\xec\x10\x1c\x6e\x3a\xc6\x3a\x20\x4c\x80\xf5\x13\x31\xc2\x4d\x70\x62\x87\x55\x94\x8d\x68\xab\xff\x26\x7a\x88\x86\xe6\x2e\x17\x2f\xc4\xfd\x95\x95\x24\x91\x90\x48\xf1\x1b\xa4\x7d\xb4\xd4\x80\xf5\xb2\x1b\xac\x62\x97\x8f\x8a\x1a\xde\x00\x00\xaa\x02\xd1\xa8\x68\x19\x9f\x07\x1b\x60\xfe\xe4\x7f\x83\x27\x11\x4e\x08\x86\x3b\xce\xb4\x7f\x12\x16\xa0\x8c\xf5\x14\xd1\x18\xac\x60\x6e\xa4\xe8\x2e\xc1\x96\x79\x5c\x7c\x95\xfc\x20\x1e\x27\x75\xa3\x93\x03\x1c\x32\x1a\x3b\xd1\xe5\xad\xfc\x27\x3f\x1e\x00\x95\xb3\xe8\xae\x70\x3d\x2f\x12\xde\xc5\x4c\xe5\x1d\xeb\xf8\x42\x08\xe5\xab\x50\xf0\xf6\x46\x41\x01\xe6\x5e\xdd\x25\x61\x10\xbe\xbf\x74\xb1\xc8\x9b\xc4\xcb\x6c\x14\xc7\x52\x2d\xf1\x21\x12\x09\xe3\x62\x00\x57\xfa\x81\x53\xe3\xf2\x56\xbe\x88\xff\x19\x00\xe5\x3e\x71\xb3\x60\x2c\xdb\x86\xde\x44\xef\xe3\xc0\xb1\x6b\x70\x36\x6e\x19\x7e\x7e\xdb\x3b\x5e\x09\xf1\x70\xed\x7c\x7e\x07\xc5\xa3\xa4\x57\xa0\xa7\x41\x19\x3c\xe1\x59\x66\x78\x9c\x5d\x5c\xc9\x7e\x1a\x50\x24\x79\xcf\xbb\xe5\xf2\x5b\x76\x5e\x78\x07\x00\xe5\x24\xc9\x7c\x1e\x89\x71\x81\x14\x49\xcb\x64\xde\x25\x9f\xc2\x22\xd8\x2e\xd4\x8e\xd6\x7b\x9c\x5c\xba\x57\xcd\x62\xae\x85\xf1\xb6\xf8\x00\xef\x29\xeb\x49\xfa\x31\x41\x07\xe7\x57\x5c\xa8\x68\x2a\x3f\x3f\x20\x50\xfc\x42\xb8\xc4\x35\x44\xfa\x4e\xfc\x15\x00\x45\xa5\xcc\x9b\xeb\x43\xcb\x64\xc6\x51\xbe\xd2\x2d\xac\x4a\x4c\x2e\xe3\x25\x1b\x07\x3b\xcb\xaa\xe5\x2c\xaf\x5e\xc3\xbe\xc0\x1b\x57\xf4\x0f\xb7\x95\xcf\x4f\x9f\xce\xfb\x25\xf8\x1d\xbb\x57\xf0\x48\xb4\xc9\xff\x87\xe8\x85\x44\xe4\xda\x20\x9d\x22\x9b\x0e\x80\x5c\x21\x77\xb0\xee\x93\x5b\xc4\xdd\xa4\xbf\x29\x9b\x24\x3e\xa8\x26\x5a\x82\xa4\xb7\x25\x8c\x7e\x56\x1a\x34\x6f\x0e\xd3\x28\xdd\x53\xb8\x95\xdd\x2c\x43\xcd\x09\xe7\xe6\xc8\xa7\xc6\x06\xf2\xdb\xe5\xb7\xfc\x0f\x0b\x17\x28\x16\xbb\xb2\xc5\xbf\x95\xd1\x00\xc8\x96\x2b\xed\x8c\x1d\x04\x8b\x76\x35\x71\x0c\x69\xb6\x96\x84\xd8\x48\x7e\xad\x0d\x6c\x5a\x42\x3d\x04\x3d\xaa\xfc\x87\xbe\x09\x5a\x5f\xd0\xcf\xdc\x01\x09\xd2\x8a\xd9\xb7\xa0\xac\x18\x0b\x2f\x06\x72\xf6\x57\x09\x16\x69\xb6\xb8\xaa\xc4\xe9\x9a\x09\x00\x48\x7f\xa8\xab\xe9\x6e\xb8\x51\xc7\x5c\xbc\x88\x40\xb6\x13\x3b\x0a\x49\xf3\x6c\xac\x46\x3c\x25\xcb\xca\xaf\x78\x46\x2b\xb3\xb0\xf2\xf7\x32\xa4\x66\x7c\xea\x28\xeb\x9c\xa9\x38\xc6\x8b\x5b\x6e\x9c\xe8\x9f\xc5\xff\x47\x6f\x76\xd5\x8a\xd6\x6a\x37\x00\x20\x35\x6b\xce\xd0\x08\xd8\x6b\xbd\xf9\xb8\x9b\xf8\x8d\x3d\x1e\xed\xab\x89\x4b\xbb\x8e\x37\x3c\x21\x0f\x75\xf2\x2b\xd4\xd4\x0d\x0e\x8f\x7c\x0a\xfd\x9d\x6d\x59\x2a\x8e\xd5\x6c\xf5\x8e\x7e\xcb\xb9\x6f\x6e\xf7\x8f\xe3\x0f\x18\xab\x5d\xed\x22\x8c\xee\x1e\x00\xd2\x0a\x88\x46\xfd\x84\xcd\x1e\xd4\xe2\x18\x78\xbf\x01\xef\xf6\x02\xa2\x67\x9f\xa1\xa1\x8f\x3c\xa1\xe7\x4d\x45\x39\x35\xa8\x3b\x27\xbf\x84\x4e\xed\x94\xa4\xd6\x32\x6f\xd9\xad\xd1\xaf\x39\x2c\x2b\xda\x3f\x83\x3f\xdb\x74\xd1\x75\xab\xc8\x49\x7f\x1b\x00\xc9\x1b\xe8\x3e\xb9\x48\xc5\x6f\x0e\x42\x2f\x51\x15\xc2\x3e\xb5\xd6\xaa\x52\xe1\xc7\x6a\x31\xaa\x54\xc4\xc6\xd2\x93\xaa\x62\xf4\xa5\x6c\x8b\x0a\x83\x0f\x9b\x5d\xa7\xea\x24\xed\x0e\xaf\x53\xdd\xa3\xf5\x78\xbb\xa9\xcb\x59\x1b\x9d\x03\xd4\x8f\x79\xaf\x01\xd0\xdc\x10\xfd\x20\xed\x52\xfa\xc3\xf6\xa1\xfd\x94\x9e\xf0\x36\xd8\x35\x65\x74\xc7\xe7\x9a\xe7\xca\x62\xd4\xba\xd2\x36\x25\x0b\x3b\x98\x1d\xa7\x5c\x49\xd8\x36\xdb\x49\xf9\x86\x32\x25\x3c\x50\xd5\x46\x5f\xe9\xed\xa4\xba\xc3\x96\x3a\x47\xab\xbb\xf8\x44\x00\x34\x23\xe2\x48\x52\xa8\xfc\x10\x5c\x83\xd2\xc9\x1f\x75\x3c\x87\x95\x2b\x7c\x51\xb5\x35\x64\x45\x0d\xe6\x72\xc9\x7d\x45\x2f\xde\x91\x75\x58\xf1\x84\x24\x4c\x5c\xaf\x2c\xa5\x0e\x87\xbd\x53\x9e\x62\xbc\xf3\xfa\xac\x22\x70\x94\xce\x29\xea\x24\xc1\x74\x00\x34\x35\x62\x33\xe1\xa2\x34\x05\x9d\x87\xcc\x94\xf6\x62\x53\x5b\x5c\x64\xe3\xf1\x89\xd5\x95\x32\x1a\x11\x55\xfc\x54\xf6\x80\x7c\x30\xf3\xb5\x1c\x49\x2b\x49\x04\xf2\x57\x8c\xef\x61\x06\xc5\x28\xfb\xb2\xd7\x43\x25\x99\x77\xd7\xb9\x59\x85\x16\xde\x06\x40\x3d\x2a\xd9\x81\xa7\x88\xde\x10\xa7\x76\x7c\x10\x93\x48\x67\x9a\x81\xf8\x6f\x8a\x66\x5e\x8b\x44\x41\xab\x2d\x9e\x24\x0d\x67\x94\x64\xa6\x4a\xcf\xb2\x5a\x67\xb1\x65\x3a\x4e\x5f\x58\x96\x9c\xc0\xfb\xe6\x75\x45\x81\x16\x4a\x9d\x21\xa5\x4e\x7c\x1d\x00\xd5\x6d\x59\x00\xf6\x91\x60\x07\x9d\xd1\xbe\x47\x58\xcc\x38\xd6\xf8\x41\xf8\x84\xe5\x59\x85\x17\x2d\x63\x0b\x8a\x66\x89\x85\x9c\x6f\x19\x2a\x49\x39\xaf\x6f\xe6\x7d\x69\xac\xa0\x2a\xf4\x8d\x2c\x53\x94\xe2\x75\x5a\x8e\x95\x84\x3b\x1f\x51\x2c\x97\xde\x03\x40\xe5\x2f\x37\x60\xbc\xb9\xe7\x85\xd3\xe0\xae\x3c\x91\xf0\x5e\x43\x31\x1f\x26\x72\x54\x7c\x10\x14\x8a\xe7\x15\x3c\x15\x36\x4b\xc2\xd2\xe9\x22\x9c\xd4\x69\xa6\x9b\xd8\x28\xfd\x18\xca\x94\x1c\x90\x3b\x79\x8d\xc8\x3c\xe5\x3f\x9c\x3f\xcb\x1d\x8a\x8d\x00\x28\x83\x95\x38\x54\x01\x3b\x56\x4d\x6f\xa5\x70\xbc\xd5\xa4\xba\x8f\x5c\x7f\x75\x53\xf9\x61\x5e\x9a\x1a\x95\x7f\x83\xaf\x50\x73\xe7\x2c\x15\x6c\x54\x1b\x13\x90\x22\x3f\xf5\xc2\x50\x5f\xb1\x58\x7d\xd8\x4b\x26\x9d\xac\xde\x34\xc1\x57\xb6\x4b\x3d\x0f\x00\x05\x4b\xf5\x1f\xe2\x0d\x33\xc4\x92\x07\xf3\x60\x55\x9b\x7b\x6b\xb7\xb3\x95\xa6\xc7\x65\x8b\x39\xfb\x4d\x79\x79\xbf\x78\x53\x8d\x7d\x69\xd7\xf8\x5a\xc3\xb3\xf8\x5b\x42\x17\x43\x4c\xc8\x2a\xd1\x42\x7d\xb5\xd7\x5c\x49\x8b\x2e\x6a\x42\x8c\x2c\x02\xda\x0c\x80\xfc\xab\xa6\x0e\x11\xc2\xd0\x38\x56\xb6\x70\x98\x8b\xec\xa7\x6b\x63\x59\xd7\x6c\xf7\xca\x12\x39\x5e\xd6\xd7\x79\x1b\xb9\x74\xcb\xeb\xb4\x21\xde\x6b\xf3\xd3\xf8\x2d\x02\xbd\xe9\x68\x88\x43\x94\x68\x64\x79\x15\x88\xbf\xeb\x8f\x4d\x48\x90\x5e\xd7\x1e\x06\x40\xbe\x5d\xf3\xa4\x43\xce\x18\xdf\x43\x6e\xfe\xc2\x9c\xd6\xcd\xa8\x39\xc5\x2a\xe9\x6a\x9c\xfb\x0f\x5b\xd9\x19\x9e\x07\x71\x2e\xd9\xef\xa4\x29\x78\x1d\x36\x63\xfc\x6a\xfe\x2f\xab\x7b\x48\x8f\x70\x87\xb9\xc6\xab\x41\xdc\x65\x9c\x35\x01\x26\xe5\xe9\xfe\x7f\x43\x0b\xd4\x01\xab\x34\xff\xd9\xfc\xb2\x4e\x6a\x0e\x6d\x1d\xa9\xf0\x37\x19\xda\x5b\x0b\x53\x8d\xb7\x90\x85\x19\x47\x8c\xb3\x31\xd4\xc4\x73\x06\x0b\xfe\x44\xd4\x38\xfd\x63\x32\xd5\xff\x98\xbe\x80\xde\xe2\x2e\xd5\xad\x63\x4b\x9c\xba\x74\x85\xfc\x45\x00\xe8\xa6\x8a\xb7\xb6\x9c\x35\xad\x69\x8d\xae\xf3\x34\x4d\x86\xef\x2a\x3f\x61\x54\x22\x1a\x0a\x9e\x1a\x5e\xa3\x27\x67\xc8\x0c\x48\xdc\xb8\xc4\x5e\xfd\x45\x62\x62\xe4\x0d\x7d\x01\x65\xc4\x7f\xb3\x6e\x37\x63\xae\x3b\xa4\xcb\xe1\x84\x3a\x6d\xd2\xbe\xe4\x7f\x07\x40\x7b\x56\x7c\xb8\xa5\xd8\x68\x85\x77\xd6\x2e\x36\x7c\x41\x8c\x29\x27\x1b\xb8\x28\x59\x41\xb7\xfe\x27\x76\x42\x46\x9c\xde\x88\xbf\x94\x58\xa7\x77\x27\x9d\x8b\x5c\xa9\xeb\xa7\x8d\xf5\x5f\xa8\x8b\x64\xb2\xdd\xcd\xda\x23\xdc\x09\x4e\x17\xb5\x46\x41\x1f\x00\x5a\xb9\xc4\xbd\x19\xa1\x0f\x45\x1d\xac\xf9\x43\x77\x12\x73\xbb\xac\x5b\x27\xc5\xfd\x9b\x7f\x4e\x17\x4b\xcc\x4d\x57\x6a\x6f\x91\xb7\xcd\x3a\xa6\x35\xd1\x9a\x23\x73\xb5\x73\x98\xb1\xfe\x54\xe8\x3d\x67\x86\xfb\x10\x74\x88\x3f\x7b\x8c\x07\xb4\x5e\x34\x13\x00\xe8\x90\x74\x46\xd3\x14\xed\x24\x42\x7c\xf5\x7a\x68\x17\x69\xe2\xdc\x7d\x10\x8f\x7c\x27\xdf\x15\xaa\xa4\x9e\x9a\x73\x05\x8a\xa2\xdf\x9f\x95\xa9\xf9\xc6\x9a\x1e\x71\x53\x73\x8e\x23\xf7\x2f\xd3\xec\xe2\x4f\x72\x5f\xab\xd9\x2e\x5c\x38\xa6\x45\x73\x48\xe2\x02\x80\xe6\x1f\x19\xb7\xe1\x8d\xfa\x29\x6d\xc2\xbc\xbd\xea\xb5\x74\xa8\xf4\x6f\xb5\x86\xf1\x25\xaf\x42\xad\x64\x69\xe7\xc4\xa8\xd5\x9c\xe4\x99\x9b\xd5\x22\xee\xaf\x08\x81\x9a\xc5\xff\xdb\x3f\x54\xad\x15\x39\xbb\x1f\x52\x6f\x94\xf8\x8c\x19\x51\x3f\x91\x3e\x07\x40\x13\x23\x3f\x56\x7f\x55\xf1\x82\xf7\xbd\x8a\xab\x78\xc5\xbf\x53\xb2\x5b\xf1\x51\xb0\x3f\x77\x86\x32\x55\xb8\x25\x2d\x40\x29\x14\x1d\x4c\xb8\xae\x5c\x2e\x7e\x10\x7e\x49\x79\x47\xea\x3d\xfd\x82\x6a\x92\x8c\xe2\xbe\x57\xd5\x20\xef\x1f\xf3\x55\xb5\x57\x21\x01\x40\x1d\xa1\x94\xd4\x3e\x97\xd9\x14\xe9\x95\x7e\xb2\x65\x0a\x61\xf1\xa8\xec\xba\x62\x7b\x4e\x99\x3c\x56\x39\x29\x95\x29\x1f\x55\x72\x13\x8a\xe5\xff\x2a\x6f\x85\x63\x14\x14\x55\xf9\xf4\x3e\xc5\x09\xd5\x0e\xf7\xed\xca\x52\xd5\xab\xb1\xa9\xca\x1b\xaa\x0b\x00\xa8\xc8\xaa\xeb\x35\x47\x25\xf3\xf5\xdf\xca\xbf\x48\x1e\xea\x0f\x14\x8d\x48\xd3\xf4\x9c\x6c\xb9\xb4\x5f\x1f\x9d\xf2\x5c\x06\x74\x77\xe3\x9f\xcb\x1c\xba\x9e\xf0\x4c\x79\xa4\x2e\x6b\xba\x4a\xfe\xa7\xf6\x80\xfb\x29\x85\x12\xfa\x6f\x2c\x53\x99\xa2\x79\x03\x80\xf2\xa1\xc6\xb9\xa6\x54\x7c\xd5\x32\xbe\x1c\x92\x44\x98\xbb\x8b\xa2\x25\x56\xb3\x4b\x76\xa8\xe4\x8d\x49\x96\xb2\x42\x8a\x34\x3e\x8d\xdf\x23\xfd\x61\xac\x08\xf7\x97\xad\x30\xf4\x4d\x67\xc8\x61\xfa\xe5\xee\x27\x15\xc1\x3a\xca\x58\xbe\xe2\x29\x74\x0f\x00\xe5\x12\x8d\xa4\xfa\x95\x38\xc1\x2e\x2b\x4f\x10\xeb\x6c\x0f\x0a\x6f\x88\x3f\xd8\x62\xb3\x9e\x4b\x1a\xad\xf8\x14\x48\x72\xd4\xd2\x19\xbf\x52\x4a\x33\x6f\x0c\xf7\x95\x85\x9a\xd6\x4d\x17\xca\xee\x1a\x5b\xdc\x6f\xcb\xb7\xe8\x37\x8d\x1d\x51\x40\xda\x2d\x00\x28\x4b\x34\xef\x4b\xb7\xf5\x9d\x6c\x51\x17\x04\xf7\x56\xb5\xe5\x65\xbe\xe9\x7e\xd8\xe1\x92\x32\xb1\x0b\x42\xfe\x8c\xdf\xdd\xe9\x83\x4d\x89\xf0\xb2\x0f\x11\x96\x06\x9c\xb4\x4d\xa2\xb4\x78\xf6\x5a\x90\x0c\xfc\x44\xa2\xe9\x14\xc7\x08\x80\xb1\x41\x00\x01\xa0\x7f\x21\x31\x97\x76\xf6\x8e\xb6\x0e\xe5\xbf\xed\xc9\x68\x4f\xce\xdc\xdb\xf5\x0c\x71\x23\xf9\x4e\xe7\x02\xf4\x68\xfc\x80\xa3\x02\xb7\x24\xfc\x87\xed\x3e\xf1\x51\xc0\x41\x2b\x81\x8a\xf5\xec\x35\xff\xc5\x4c\x9c\xa8\x32\x35\x72\x5d\x00\x30\x7c\x12\x1c\x04\x40\xbf\x50\x22\x2d\x45\xf5\x50\xe1\x77\xf3\xb7\x76\x87\x21\x9a\x33\xe5\x9d\x4f\x51\xd7\x93\x57\x3b\xb6\x61\xe9\xf1\x14\x3b\x8f\x50\x1a\x7e\xcf\x16\x44\x86\x07\x6c\xb0\xec\xa6\xad\xf6\x1c\x34\xe7\xb2\xd2\x27\x0e\x18\x2f\x73\xcf\x03\x60\x30\x09\xb3\x01\xd0\x97\x4a\xb6\x95\x74\x77\x15\xa2\xba\xf2\x27\x75\x7a\x62\x0e\x64\xbc\xb6\x7f\xc1\xbd\x4b\x4e\xb0\x3d\x23\x56\xc5\x8f\xb3\x9e\x26\xdf\x09\xef\xb7\x0c\xd1\x16\x07\x68\xcd\x2d\xcc\x5e\x4f\x87\xc9\x99\xb3\x7c\xe2\x41\xc3\x51\xfe\x1f\x00\xe8\x17\x88\xd6\x01\xa0\x93\x4a\x57\x15\xbf\xb2\x7f\xc4\x6f\xcf\x6b\xb6\x8f\x23\x9a\x33\x8a\x6d\x93\xc8\x8c\xa4\x51\xab\x3f\x55\x1c\xe7\xb0\x84\xd2\x37\x87\xe7\x9b\xa7\xb0\xa6\x05\xd4\x1b\xdf\x71\xe6\x7b\x3a\x0c\x7f\xf2\x9b\x27\xbe\xd0\xaf\x11\x7e\x03\x40\xb7\x4a\x82\x05\x40\xbb\x54\xf6\xb4\x78\x8c\x2d\x90\xf2\x39\xb7\xdb\x1a\x48\xd3\xa7\x2f\xb0\x24\x30\xfc\x92\xdc\xcc\x1d\xcc\xb3\x71\x01\x26\x1d\x7b\x79\xd8\x2b\x63\x0f\x77\x49\x40\xa8\xa1\x87\xbf\xd7\xd3\xa6\x77\x88\xdc\x26\xf9\xea\x06\x25\x39\x00\x68\x0f\xc8\x42\x00\x80\x6e\x28\xa2\x0b\x0f\x9a\xa3\x38\xbf\x73\x46\x4c\x38\x9e\xdf\x9c\x07\xc6\x75\xfc\xe4\xd9\x78\xe3\x44\x01\x32\xd6\x6a\x40\x0b\x57\x86\x19\xf5\xcb\xc4\xce\xfe\x6f\x74\xb7\x24\x22\xcf\x3e\xed\x4f\x99\xf3\x24\xbc\x36\x56\x4e\x02\x00\x52\x2a\x04\x00\x68\xfe\x50\x6e\x2c\x38\x6a\x38\x2c\xad\xc8\xfe\xd3\x10\x2a\xbd\x3d\x27\x4b\x6f\x95\x91\x12\xdf\xe8\x7e\xc9\x41\x6c\x96\x4e\x22\x5f\x17\x56\xa6\x7d\xa1\x20\xfb\x9f\xd4\xd6\x2a\x23\x3c\x07\xa1\x0d\xca\xdb\x93\x16\x40\x9e\x2a\x14\x00\x9a\x7e\x95\x1e\x00\xf5\x67\xd5\xc3\x82\xc9\xba\x4f\xd0\x9c\x6c\x67\x5d\x1b\xd4\x94\x06\x69\xaf\x43\x1d\x89\xcd\x5a\x14\x44\x8b\xb9\x01\xbd\x83\xa4\x61\xce\x90\x0e\xea\xf1\x5f\x03\x85\x40\x3d\x9e\x03\x9a\xd5\x10\x6d\xd2\x5e\x4d\x1a\x34\x19\xf8\xaa\x6f\x6b\xf0\x00\xa8\x71\xea\xc7\xf9\x64\x5d\x90\xfe\x72\xd6\xb0\xb6\x5b\x7f\x30\x2d\x51\x1b\xa4\x1f\x48\x9c\x0c\xad\xd1\x93\x63\x56\x41\xb9\xfa\x9c\xd0\xb7\x9a\x87\x7a\x67\xff\x65\x1a\xbb\x6e\x8b\xe7\x72\x4d\xb4\x2e\x74\xd2\x6d\xf5\x49\x6d\x03\x48\x57\xeb\xa0\x34\x00\xd4\x91\x9a\xbc\xbc\x9b\x5a\xac\xe9\x49\x56\x16\x74\xcf\xb4\x39\xf5\x0b\xc4\x35\x61\x67\xbd\xd5\xfc\x30\x39\xc7\x74\x69\xcc\xc6\xa5\xa1\x6f\x35\x45\xc6\x78\xff\xed\x1a\x27\x83\xd9\xf3\x94\x7a\x89\x7e\x91\x8b\xaf\xba\x52\xc7\x06\x42\xb5\x0f\xf4\x05\x00\xd5\x69\xcd\x9a\xdc\xf7\xc3\x97\x5b\xee\x64\xac\x1a\x9a\xd8\xd6\x9b\x7c\x7d\xa0\xa0\x03\x99\x80\xed\xeb\x46\x35\x47\xf6\xf5\x9c\xc3\xf6\x04\x59\xbb\x5e\x11\x27\xfa\x7c\x70\xbc\xa6\x1c\x75\xdf\x63\x3b\xce\xb8\x3f\xbe\xdb\xb2\x9b\xf3\x1d\x00\xd3\x7e\xc1\x5d\x00\x0c\xfb\x25\x37\x73\xcf\x0d\x6d\x68\x7d\x91\xa1\x19\xf8\xd6\x2e\x49\xde\xde\x5f\x89\x9c\x91\x50\xd6\xbb\x09\xfd\x24\x52\xdb\xfd\x1b\xf7\x26\xc8\xd0\x35\x9b\x94\xee\xf3\xcd\x51\x46\xfd\xc3\xfd\xa0\x2d\x83\x39\x3c\x7e\x93\x25\x97\xcb\x00\xc0\x04\x17\xfe\x9f\x6d\x9a\xe4\x8f\xdc\x45\x83\xba\xf6\xf0\x8c\x86\xfe\xbf\x11\x8e\x64\x5d\x5f\x0d\xda\x2d\x21\xa2\xe7\x38\x76\x59\x24\xa9\x3b\x96\x00\x05\x09\x3b\x99\xe4\x25\x3e\x9f\xed\x43\xb4\x7f\xdd\x4f\x5b\x17\xb1\x7a\xc6\x9f\x32\xef\xe2\x85\x03\x60\xfc\x5b\xa8\x00\xc0\x30\x59\xf2\x2e\x37\xb8\x3f\x03\xb5\x33\xfd\x66\xef\x29\xcc\xa5\x64\xbf\x1e\x04\xee\x47\xfc\xa9\xae\xaf\x44\x74\x64\x64\xa7\x92\xfc\x23\xa8\xda\xfe\x84\x76\xd6\xe7\x85\x2d\x85\x79\xd6\xfd\x82\x85\xc4\x79\x3c\xfe\x3f\xd3\x22\xfe\x6f\x00\x0c\x5f\x44\xb7\x01\xd0\xe7\x4a\xaf\xe7\x28\x7b\xc7\xe0\x15\xe9\x45\xdd\x47\x88\xd8\x24\x7d\x97\x94\x5c\x17\x5f\xd7\x99\x4c\x25\x45\x9c\xb2\x5f\xa3\xaf\x0f\x9a\x62\xeb\x60\x05\xfb\x9c\xb3\x9c\xe6\xec\x72\xbf\x6f\x0e\xe5\xcb\x9c\x13\x8c\x72\x51\x04\x00\xfa\x7f\x25\x7a\x00\x74\x18\xf9\xd4\xec\x4b\xdd\x33\x28\xbd\x73\x16\x77\xde\xa5\xc5\xcf\xfe\xd7\xb1\x9c\x7e\x3e\xee\x96\x5d\xcc\xec\x8c\x60\xdb\xb2\xd9\xe2\xc0\x6b\x96\xbb\x5c\x93\xcf\x4e\x33\x95\xbf\xc3\xfd\x9d\xf1\x89\xc8\xc7\x99\x60\xc0\x4a\x1a\x00\xd0\x3b\xcb\xd2\x01\xd0\xf6\x29\x2a\xb3\x16\x3b\xf2\x38\x05\x69\xe7\xed\x89\x5c\xfa\x6c\xb6\x2d\x82\x37\x1a\x87\xb3\x06\xf1\xef\x45\x04\x58\x5c\x84\x79\x81\xab\x4c\x0f\x44\x7b\x7c\xb6\x1a\x97\x49\x0a\xa6\x04\x1b\xe6\x4a\x1f\x3b\x5f\xd4\xbd\x94\xb7\x03\xa0\x3d\xa8\x60\x00\x00\x71\x94\x47\xb2\x9c\xad\xf7\x24\xe1\x69\xa5\x96\x97\x92\xf3\x89\xbf\x2d\x4e\x52\x51\x5c\xa0\x79\x9a\x6c\x66\xf8\x6b\x53\x88\xec\x4b\x60\x97\x31\x42\x7e\xd5\x67\xa7\xc1\x5f\xb1\x66\x4a\x89\xee\x8d\x52\x3d\x21\x4c\x7b\x58\x15\x01\x00\x74\x54\x85\x00\x40\xb3\x42\x75\x21\x73\x85\xf9\x3f\xf5\x96\xd4\xc3\x66\x4f\xf5\x93\x44\xa1\x29\x5b\xe3\x19\xbb\xd6\x88\xd6\x94\x85\xaf\x33\x18\x35\xc6\x40\xa2\x7e\x8b\xe6\xa0\xcf\x2a\xdd\x6d\xcd\xfd\x29\x48\xed\x6d\xcd\xbd\x09\x38\xe8\xae\x66\x35\x00\xd0\x24\x4d\x20\x00\x1a\x6f\xf5\xae\x4c\x2f\x73\x88\x2e\x32\x15\x67\x2a\xd4\x45\x25\x26\x1b\x45\xba\xe0\x58\xb1\x61\xb9\xce\x3f\xdc\xa8\x3f\xaf\x9b\x1e\x08\xd3\xbb\xe8\x5c\x7c\x96\xeb\xca\xb5\x37\xa7\xb0\xb5\xed\x5a\xe1\x04\x2b\xc4\x84\x6e\x00\xa0\xd9\xa0\x79\x0b\x80\xfa\xb2\x26\x3c\xa3\xd7\xd4\x61\xf4\x4a\x9d\x6a\xd4\x1b\x3e\x26\x3a\x1b\x0e\x19\x8e\xc6\xa2\xf5\x2f\x0c\x7d\xe1\x1c\xfd\x34\x03\x26\xb0\x43\x87\x31\x78\xf9\xec\xd3\x6e\xd1\xcf\x9f\x32\x1f\x3a\xaf\x7b\x3c\xe1\xbc\xe6\x1f\xed\x2b\x00\x34\x79\xd0\x5a\x00\xd4\x2a\x8d\x24\xbd\x7d\xa1\x2f\x6c\x76\x72\xd1\x7c\x97\xb6\xbb\x09\x9b\x47\x40\xc7\xd2\x28\xdb\xd0\x34\xd4\x50\x48\xe4\xc0\x44\xec\xb5\xe9\x8b\x7a\x2f\x13\xeb\x3d\x17\x75\x8b\xa8\xee\xae\x69\x8e\xa7\xcc\x99\x63\x27\xda\x98\xdc\x12\x00\xcc\xbf\x84\x13\x01\x30\xb2\x24\xdf\xd3\xe7\xcc\xff\xda\x36\x27\x39\x6a\x14\xb4\xef\x4d\x18\x1e\x76\x43\x36\x47\xa9\x06\x93\x30\xfe\x21\x11\xfd\x99\xf8\xa8\xe9\x2b\x7b\x7d\x48\x7c\xcf\x2d\x5d\x17\xa8\xbf\x5d\x2b\x1d\xcd\xcc\xbb\x63\xa3\xad\xaf\xb9\x6b\x01\x30\x0f\x08\x67\x02\x60\x9c\x2e\xb9\x92\x3e\x7e\xf4\x6a\x3b\x3d\xe9\xfb\xf0\x27\xc4\x89\x04\xe1\xd0\x34\x74\x76\x14\x65\xa0\x1c\x7b\x21\xc4\xaf\x0f\x43\xd8\x34\x7d\x45\x4f\x1d\xf9\x8a\xe7\xbe\xae\x19\xf4\xd9\xae\x1d\xf6\x3d\xac\xb3\x63\x8b\xad\x18\x5e\x0b\x00\xe6\x20\xe1\x20\x00\x86\xdd\x92\x9f\x73\x2e\x0f\xe3\x51\x6f\x92\x76\x0d\x1e\xc3\x7c\x48\x88\x1f\x08\xc5\xbb\x47\x25\xf6\x89\x89\x82\xe0\x8f\x3d\x5b\x29\xde\xd3\x07\xbb\x8e\xd2\xde\x78\xfe\xe9\xd8\xc2\xfc\xe2\x2a\xb0\x49\xb9\x53\xc7\xf2\x2d\x05\x82\x30\x00\x4c\x11\xa2\x97\x00\xe8\x9f\x4a\x1f\xcc\x99\x3d\x58\x8c\xc7\x27\x25\xf6\x1f\x27\x36\xc4\xaf\xed\x2b\x25\x97\x44\x9e\xe9\xd9\x41\x45\x07\xaf\xef\x76\xa3\xaf\x9b\xce\xe8\xcc\x60\xc5\x79\x1e\xb0\x97\x72\xce\xba\x5a\xad\xb3\xf8\x3d\x63\xd7\x9a\xbd\x45\xd9\x00\x18\x43\x24\x8e\xff\x93\x29\x0f\x48\xfb\xa3\xbf\x8a\x02\x9f\xbd\xae\xf7\x21\xf5\x53\x7c\x62\x8f\x80\xbe\x20\x92\xda\xf5\x93\x49\x0a\xa6\x76\xb2\xd8\xf0\xe9\x15\xf6\xdd\x5c\xb1\xe7\x6e\xeb\x63\xfe\x26\xd7\xa5\xe6\xd7\x22\xdf\xb1\x4f\x8d\x1f\x25\xed\x00\x18\x62\x64\x99\x00\xe8\x66\x2a\x60\xa9\xf3\x7b\x34\xec\x7d\x89\x3f\xbb\xb3\x39\x9f\xe2\x6e\x75\x7e\xe0\xcd\x8a\x4c\x70\x8c\xf2\xd5\xc1\xe5\xf6\xd9\x82\xf7\xd3\xab\xac\xeb\x44\x2a\xcf\x9b\x96\xa9\x12\x4f\xd7\xb7\xa6\x62\xe9\xb1\x71\x24\x03\x53\x5e\x05\x80\xee\x9a\x82\x00\x80\x76\xb2\xf2\x48\x2a\xba\x2b\x42\x5c\x9e\xb8\xcb\xf1\x41\x32\x26\x6e\xbe\xfd\x4f\xc9\x81\xc8\x09\x36\x9b\xd4\x14\x9c\x61\x2d\x92\x51\xa6\xb7\x9a\xdf\xca\x61\xd3\x9c\x4c\x36\x45\x86\x5b\xae\xe1\x99\x32\x6e\xdc\x43\xfd\x1c\xe5\x2b\x00\xb4\x97\x55\xd9\x00\x40\x19\xaa\x63\xa9\xb5\x8e\x70\x15\x94\x48\xb7\x8f\x51\x9d\x88\xcb\xb2\xfe\xa3\x76\x89\xd8\x6d\x39\xa1\x86\x07\x3b\x99\xfb\xd5\x3b\xa7\x67\x99\x58\x1a\x67\xcf\x9f\xc6\x3c\x4d\xae\x1b\x41\x7f\x52\x83\x18\x9f\xae\xab\xd4\x54\x00\xa0\x9d\xa6\xbe\x0b\x80\x66\xa3\x7a\x30\xe5\xbc\xbd\x18\xba\x92\x18\x64\x8b\x81\x9e\xc4\x8d\xb7\x06\x40\xef\x22\xfa\xcc\xdf\xb5\xae\x41\x2f\x4d\x97\xb5\x33\xa7\x27\x19\x0f\x6a\xd3\xa7\x39\x19\x96\x6a\x43\xdc\x54\xfa\x02\xe8\xd1\x78\x9c\xf6\x3a\x44\x07\x00\xda\xa1\x59\x09\x80\x86\xaf\x7e\x9b\xd2\x6e\x13\xe9\x57\xce\xba\x69\x45\xeb\x3b\x63\x1f\x59\x60\x7a\x4e\x84\xda\x9c\xa1\x27\x04\x3d\x31\x79\xea\xdb\xa6\x67\x19\xdd\xf4\xb1\xd3\x7c\xf5\xbf\x75\x7f\xb9\xad\xd2\x6d\xd4\x95\x8c\x5f\xa0\x6d\xd1\x4a\x00\x80\xca\x20\x0a\x00\x9a\x19\x1a\x76\xef\x02\x64\x76\x7d\x82\xd9\x07\x75\xba\xa9\x44\x59\x88\xe1\xc3\x9a\xb9\x83\x38\x22\x7c\x05\x71\x06\xc1\x86\xf4\x6f\x3d\x48\xba\x85\xd9\x50\xe9\x4a\x65\x11\x38\x99\xb5\x0c\x15\x65\x28\x7a\x0a\xfb\x28\xe3\x8a\xe7\x3f\x7c\x11\x37\x0e\x00\xf1\x45\x61\x64\x8f\xae\xa3\xbd\x69\x89\x29\x1d\x39\x0d\x26\x52\xb0\x51\x2f\xe0\x95\x9c\x7b\xd8\xf1\x88\x3a\x82\x12\xdf\x8a\x16\xb7\x26\x12\x2f\xe2\x8e\x57\xf4\x52\xba\x49\xf9\x19\x5f\xe8\x47\x69\x9e\x51\x3b\xd8\x29\xcc\x6f\x9e\xfb\xf9\x93\xb8\x5f\x00\x10\x1b\x85\xbd\xdd\x78\xb8\xaa\x35\xdd\x58\xd3\xd1\x0e\xff\x4b\x3e\x88\x44\x22\x70\x9c\x19\xe8\x95\xe8\x10\xfc\x75\x5c\x30\x6e\x0c\x6c\x11\xe1\x30\xd1\xb9\xc2\x9b\xbc\x9a\x32\x27\x63\x80\xf6\x8b\xbe\x39\x0a\xc7\x1a\x62\x97\x78\x1a\x79\x5d\xbc\x97\x00\x88\x13\x44\xf1\x9d\xcc\x96\xef\x28\xa4\x5e\xdb\x96\x80\xd1\x48\xdf\xb7\x6b\x70\xf3\x59\xeb\x90\x13\x08\x77\x71\xfd\xe8\x43\xe4\xc2\x16\x13\x6e\x23\x75\x7f\xf9\x4c\xe2\x43\x06\x22\xfd\x33\x95\xcd\x8e\x8e\xfc\x8b\xd9\xce\xf3\xf2\xac\xe4\x76\x0b\xa7\x02\x20\x42\x8a\x17\xd9\x89\x8d\x4b\x89\xef\xb5\xfb\x5b\xdc\xc8\x8b\x25\x9c\xd6\x51\x6a\x39\x13\xd6\x4e\xa0\xfd\xc2\x72\x90\x38\xc6\x5f\xcd\x26\xcc\x08\x6b\x57\x59\x13\xc1\x87\xb3\x37\xbd\x88\xfc\x86\x77\x3f\x12\xcd\x08\x10\xce\xf0\x8c\xe5\xd8\xc4\x78\x00\x84\x5a\x69\xb1\x55\x5f\xc7\x61\x4d\x80\x7c\x1a\xfd\xd8\xb1\xa2\x1f\xcd\x4f\x38\x95\x0c\x8f\xd6\x57\x5c\x06\xa6\xad\x23\x96\xb7\xbe\xa9\x17\xb5\x82\xff\x6e\xae\x19\x47\x14\x56\xce\x59\x46\xd2\x8a\x0e\x46\x3a\xd1\xde\x4b\x4a\x3d\x83\xd8\x23\xd2\x63\x00\x08\x0e\xca\x1e\x9b\xdd\xe6\xb5\xcb\xf0\xaa\xfd\xb5\x2d\xb2\xed\x82\x33\x0d\x52\xb9\x13\xcd\xb7\xf9\xaa\x7c\x2e\x6a\x41\x1b\x51\xbe\xa0\x31\x02\x91\x2e\x7f\x5d\xca\xc6\xcc\x53\x94\xa5\x3d\x23\xec\x57\xac\x8e\xd8\x4c\x95\x29\x5d\x3c\x13\x59\x0a\x65\x35\x00\xfc\x17\xca\x6c\xc3\xe2\xf2\x2f\x26\x8c\x62\x60\x5e\x85\xf1\x04\xef\x51\xed\x11\x63\x0c\x05\xdd\x88\x31\xe8\x91\x7e\xb0\x4c\xfd\xdf\xf5\x8f\xdb\xeb\xf5\xe9\x25\x32\xd4\x26\x9d\x22\xad\x14\x4f\xd2\x6e\x8f\xa0\x53\x58\xd0\x55\xcf\x2c\xe6\x31\xcd\x1f\x00\xf0\xb9\x6a\x92\x7e\xda\xdc\xe1\xbe\x65\x72\xaf\x4a\x9f\xde\x36\x2e\xb7\xfa\x60\xf7\x2f\xf2\xe4\xfa\xce\x2e\x65\xc7\xb3\xe6\x11\xc7\xa7\xba\x4f\x6d\x8f\xed\x35\xc5\x57\x91\x02\xab\x25\xf5\x35\x8e\x65\x1e\x8d\x10\x93\x57\x1b\x21\x4f\x35\xb3\x58\xef\x0c\x00\x3f\x1d\xaa\xd7\x91\x4b\xb7\x8d\x34\xc9\x48\x15\xe9\x43\x3b\x38\x0f\xe6\xbd\x1e\xf8\x4c\xb2\xd6\x5d\xec\x9f\xd6\xc1\x6b\x7a\xdf\x1b\x58\xb7\xac\x6d\x5e\xf7\x84\xe2\x0d\x88\x77\x8e\x93\xa9\x4f\x71\x93\x6c\x95\x11\xcb\xc9\x75\xe6\x51\xcf\xdd\x4c\x17\x03\x0b\x00\x7e\x80\x76\x82\xf6\x5b\xa9\xf3\xa2\x30\xe9\xc7\x72\xf3\x82\x22\x8e\x69\x5e\xd1\xe8\x4c\x52\x5e\x5d\xe2\xd0\x8f\x8e\xb4\xa6\xf6\x81\x75\x75\xaa\xd6\xc3\x7d\xc9\xc5\xcb\x10\xbc\x6e\x6d\xea\x07\xec\x32\x07\x14\xf1\x80\xf4\xd1\x5a\x35\x6d\x22\xe3\x98\x51\x05\x00\xef\x85\x96\xd9\x79\x0a\xcd\xaf\x4f\xd5\xaf\xc2\x5c\x6f\xaa\x91\xb9\xe2\xe0\x30\x24\x6b\x29\xc1\x17\xbe\x11\xc7\x25\xb9\x20\xc3\x5b\xda\x29\xf1\x98\xdd\xe5\x4e\xb4\x2e\x82\x26\x7d\x2d\x13\x4f\x59\x17\xb9\x87\xc3\x66\xbc\xf3\x2c\xe0\x3f\xe4\x22\x00\x10\x7f\x15\xd2\x1d\x67\x90\x0b\x9a\xfa\x75\xe7\xd1\x31\x30\x86\xb4\x18\x73\x13\x9e\xcb\x7c\x8f\xfb\x03\x51\x81\xbd\x4e\xb8\x8b\x16\x36\xff\x45\x8e\xc2\xfd\x59\x66\xa3\xee\x20\xcd\x4d\x6f\x64\x6c\xa0\xcd\x88\xe4\xb1\x1f\xb3\xa6\x7a\xce\xe0\xf3\xff\x6f\x11\xe2\x4d\xc2\xeb\xf6\x03\x1d\x27\x5b\x7d\xb5\xaf\x90\x32\xf8\x56\x09\x0f\xdd\x82\x28\x60\x66\x62\x89\x68\x17\x6c\x06\x7e\x0d\xf6\x63\x73\x15\x69\x06\xe1\x67\x99\x0f\xe5\x32\x25\x6d\xce\x77\xfa\x2b\xfa\x8e\xc8\x24\x76\x15\xbb\xd5\xe3\x0b\xef\x17\xdf\x0b\x00\x71\xb3\x88\x69\x3d\xd2\xd6\x82\x8a\x82\xc2\xda\x61\x98\x1a\xd1\x1d\x84\x12\xc7\xa4\xff\x85\xba\x48\xd8\x86\x71\xc2\xb6\x92\xa7\x37\xe5\x13\xa6\x51\x17\xce\x9d\x43\xf6\x62\x94\xcd\x41\xd0\x88\xec\xb0\x88\x9d\xac\x69\xbc\x30\x8f\x33\xbc\xb1\xc2\x14\x00\x44\x66\xf1\x3d\xf3\xc9\x96\x49\xc4\x41\x35\xa6\xb5\x82\x5c\x27\x84\xc1\x37\x51\x9d\x68\x2a\x44\x3e\xed\x20\xea\x1e\x7a\x1c\x63\xa4\xb1\x10\x37\x89\x65\x2a\xc5\x11\x6b\x39\x83\x69\xbb\x29\xaf\x78\xe7\x23\x4a\x18\xb7\x84\x41\x1e\x1b\xb9\xe3\xc5\x4a\x00\x84\x3b\xa4\x62\xe3\x9b\x86\x57\x4c\xbb\x72\x5f\x33\x85\xb5\x8f\x7f\xbf\xd5\x95\xfd\x8c\x9a\x0e\xbf\xca\xf5\x44\x9e\x44\x5c\xe6\xb5\x37\xd4\x60\x02\xf8\xeb\x4a\x06\xf1\x2b\x85\xde\x69\x01\x64\x83\x68\x51\xf8\x0b\xfa\x76\x49\xa6\xc7\x52\x8e\x9f\xf4\x12\x00\x82\xcf\x72\x77\xbd\xae\xe6\x81\x74\xb1\x5c\x5a\xbf\x41\xe6\xc2\x3d\xdb\xb4\x44\xc6\x22\x37\xc2\x8e\xca\xfe\x40\xf8\xb5\xfb\xcb\x23\xea\x5e\x22\x77\xc9\x8d\xc5\x56\x6c\xbf\xfc\x73\x2a\x8b\x78\x4c\xc1\x0a\xdf\x46\x2b\x50\xfc\xe3\x71\x82\xf5\x55\x59\x05\x80\xc0\x57\x89\xd2\xe6\x56\x29\x8d\x14\x29\xbf\x66\xa1\xe1\x05\xc7\xa9\xfe\x89\x01\x47\xdc\xdc\x5c\xa7\xbf\xd0\xbe\xbc\xf5\x83\xbe\xa4\x76\x47\xc7\x75\xdd\x9a\xa2\x45\xe8\x1f\xba\x09\x29\x57\x08\x5c\x2d\x3c\x9c\x4e\x4d\x85\x06\x3c\xee\xb3\x32\xff\xdf\x93\xfc\x61\xb5\x44\xb3\xb0\x62\x6a\xaf\x40\xfc\x74\x1e\xb1\xa7\x94\x65\xac\x7d\xd4\x3d\x96\x80\x6c\x94\x76\x0e\xc0\xc5\xb0\x5a\x47\x68\xcd\xb9\x76\x82\x6d\xa0\x08\xa0\x0e\x59\xde\xa5\x68\xf1\x42\x73\x58\xb8\x89\x42\x35\x46\x79\x46\x33\xb7\xe9\x2e\x03\xc0\x6f\x85\xaa\xd4\xef\xcb\x63\x87\x3d\xc5\x39\x55\x86\x41\x33\xf3\x75\xad\x47\xff\x63\xfc\xdd\x86\xfd\x7d\x3e\xf0\xc9\x2d\xcb\x7b\xd2\x6b\xd4\xf0\x33\x5d\xb9\x85\xd7\x50\x59\x8e\xc0\x14\x09\x7e\xb2\xf5\x68\xf8\x06\x8a\x87\x79\xb6\x67\x07\x53\x6c\x98\x0d\x00\x3f\x03\xfa\x4f\xad\x28\x93\x2c\xb8\x24\x3a\x55\x79\x7d\xfe\x18\xa6\xad\x06\x3f\xe2\x82\x77\x34\xf8\x0d\xbe\x6d\xbb\xda\x32\xb9\x7f\x57\x0d\x1a\x9e\xdb\xdb\x51\x78\x15\xb9\xb7\xeb\x62\x8a\x0d\xb7\xd4\xfe\x29\xfc\x19\x79\x9b\xe5\xba\xe7\x06\x66\xa2\x31\x07\x78\xf3\x9d\xb4\x68\xeb\x71\xec\xd9\xfa\x7c\x68\x0c\xde\xb9\xa9\x5d\xb4\x90\x40\x85\x11\xe8\x6c\xe2\x07\xf8\x36\xb4\x96\xbc\x1b\x19\xd3\xb8\x87\xba\x15\xb3\xbf\x74\x13\xfd\x15\xc1\x9c\xb6\x9b\x65\xa4\x6c\x8a\x48\xe0\xa2\x98\xc0\x23\x45\xd0\xcb\x95\x00\x20\xa1\x08\x47\x2c\xb7\xd1\x3f\x9a\x2c\x9a\x44\x2c\x0e\x86\x13\x3e\xc0\xbd\x87\xcf\xa4\x9d\x22\xac\x40\xe4\xa1\x3e\x90\x7a\xd0\xac\xc6\x4c\xca\x76\xdc\xc1\xd2\x42\xba\x37\xa9\x28\x8d\xc8\xbc\x4a\xf3\x0d\x7f\xc5\xb9\xc6\xf2\xf5\x98\x21\x88\xe3\x65\x01\x20\x09\x13\x39\x99\x9f\xa3\x12\x61\xdf\xd4\x4d\xe8\x83\xf0\x4e\xa1\x3f\x56\x88\x08\xa0\x05\xe1\x1b\x51\xef\x51\xed\x44\x12\xf6\x5e\xc3\x0e\xf2\x16\xc2\xcb\x92\xcb\xb4\x4c\x4a\x74\x9a\x07\x33\x80\xbe\x36\x7c\x03\xa7\x88\xdd\x36\xf5\x3b\x7f\x37\x3f\x0a\x00\xf1\x59\x51\x9f\xf1\x69\xfb\x45\xe4\x6b\xa5\x03\xb1\x12\xe3\xcf\xef\x42\x2d\xc7\xe5\x52\x4e\x60\x8e\x11\x74\xc8\x24\x7c\x08\xe9\x6d\xfd\x0e\xe2\x16\xaa\xb0\xf8\x17\x45\xc3\x88\x4b\x15\xd3\x17\xb1\xdd\xc3\x0b\xd8\x1e\xbc\x19\x53\x1f\xf1\x8e\x0a\xf3\x00\x10\x3b\x8b\x7f\xeb\xff\x6b\xed\x26\xe6\xca\x2f\xc3\xd7\x93\x7e\xf2\x9c\x3b\x5e\x53\x76\x91\x79\xa8\x02\x9a\x00\x31\x19\x73\x93\xd1\x5a\xb7\x0b\xbf\x85\x55\x5b\x1c\x4b\x3a\xce\xa1\xa4\xdc\xa5\xc5\xf3\x36\x87\xdd\x66\xde\x17\x7a\x4e\x3d\xc7\x3d\x2b\xd6\x00\x20\xca\x90\x0e\xe8\x22\x9a\x8d\x4c\x0f\x59\x02\xec\x01\xab\x82\x63\x86\x23\xd9\x4a\x52\x6c\xc7\x63\xce\xa6\xf6\xcf\xa8\xcd\xbc\x31\xb5\xc7\xb1\x67\xf8\xc8\x22\x2c\x31\x54\x70\x2d\xa5\x92\x72\x4a\xc4\x0d\xb3\x33\xf6\x4b\xc2\xa6\x1e\xe7\x3c\x90\x9e\x03\x40\x28\x94\x47\x6b\x4e\xd6\x5b\x24\xd7\x25\xa0\x29\x41\xda\xc1\xea\x6d\xf9\x22\xbd\x41\x80\xb5\xdd\x96\x25\xc3\x1b\x11\x63\x65\x2b\x6b\x68\x68\xb6\x7c\x7a\x61\x07\xde\x5f\x3e\x92\xbc\x82\xec\xae\x88\x0b\x43\xd0\x2b\x15\x7f\x4c\xfd\x97\x7d\x48\x99\x0e\x80\x60\x48\x49\x53\xad\xac\x99\x65\x60\x88\xfc\xeb\x83\x0c\xce\x8c\x27\x4d\x69\xfa\x41\xdc\x11\x18\x4b\x3f\xad\xf5\x19\xfc\xa9\x6e\xb8\x3a\x1f\x39\xa4\xf3\x2a\x90\x60\x2d\x5a\x4b\xb2\x27\xf1\x0f\xe8\x5b\x58\x18\x2d\x0f\xaa\xf3\xf0\x61\xfd\xd4\xc8\x01\x10\x78\xab\xb9\x8a\x4f\x55\x9b\x7a\x0a\x05\xf2\x9a\x87\xdd\x09\x74\x44\x43\x6a\xd7\x58\x2c\xa7\x79\xc8\xb1\x1a\x76\xaa\x2d\xd7\x5e\x31\x0f\x85\x08\xb7\xde\xc8\xbf\x83\xa9\xb2\xd4\x26\x1d\x27\x1c\x36\x2d\x0a\xcb\xa2\x0a\x0c\x87\x3d\xb0\x2c\xa1\xae\x1b\x00\xfe\x19\x28\x4d\x51\x54\x79\x6a\xf0\x14\xff\x7a\xcd\x98\x81\x16\xda\xbe\x7a\x7c\xdf\x69\xcc\xeb\xa6\x6b\xbd\x53\x61\xa8\x56\x7b\x77\xd5\xbc\x69\x1d\xc6\x4e\x66\xfe\x56\xf4\x51\x3b\x23\x69\x0f\xa1\xd1\x9a\x1c\x06\xa7\xce\x30\x1d\xf4\xe8\x62\x65\xe8\x9f\x02\xc0\x5f\x05\x3d\x94\x9f\xa8\xf4\x99\x2f\xe1\xe3\xab\x1b\x46\xf6\xd3\xea\xeb\x76\x0f\x3d\xc0\xcc\x6f\x9a\x3d\x70\x0b\x16\x05\x7b\xd7\xb7\xaf\xea\x53\xfb\xe7\x1e\x4d\xfe\x06\x74\x5e\x97\x77\xd2\x25\xfc\x13\x3b\x22\xac\x9f\xb2\xd7\x82\xf4\xb8\xc3\x7c\x6d\x78\x0d\x00\x9f\xaa\x2d\xd7\x6e\x22\xb5\xd6\xb3\xa4\x70\x72\x6b\x13\xc4\x46\x53\x54\x30\x13\x61\x07\xf5\x11\xfc\x30\xbc\x82\xce\x41\xc6\xd7\xb8\x31\x23\x30\xfb\x0a\x16\xb0\xa7\x10\xcc\x49\x34\x6e\x16\x65\x65\x48\x37\x7f\x0f\x73\xbc\xfb\x7c\x91\x8a\x6b\x03\x40\x7a\x57\xf8\x27\x74\x81\xb0\xb3\x69\x44\x32\x9f\x78\x03\xc6\x64\x1d\x21\x87\xc1\x33\x08\xa1\x94\xd5\x88\xd9\x6d\x47\x68\x6d\xe8\xa6\xea\x41\x46\x32\x6e\x79\x41\x06\xab\x98\x94\x90\x34\x9d\xd3\x47\xfd\x15\xd2\xc8\xcf\x60\xb9\xb8\x3b\x44\x33\x78\x05\x00\x48\x87\x44\xa1\x9a\x67\x78\x2f\xd8\xdf\xe2\xab\x04\x18\x5c\xcd\x9a\x41\x3c\x82\x98\x8a\xb7\x92\x89\xa8\x93\x6d\x59\xd4\x2c\xec\x86\xea\x20\x7a\x06\x61\x6f\xfe\x35\x26\x93\xfc\x6b\xf6\x09\xf6\x33\xba\x3e\x24\x88\xb7\x9e\x5d\xe8\xae\x14\x6e\xe6\x87\x02\x20\x2d\x17\xad\x53\x07\xa1\x2f\x21\x75\xa2\x4c\x6c\x13\x7a\x3d\x63\x35\xee\x37\xf6\x3c\xae\x82\xf0\x86\xe0\xdf\x1a\x47\x76\x21\x75\xcd\x4b\xa5\x56\x53\x83\xf3\xbd\xe8\x7f\xd2\xef\xce\x9e\xc5\xd2\xb0\xfe\x0a\x3e\xca\x35\x73\x3f\xb9\x13\x05\x27\x85\x31\x00\x48\x6c\x12\x0f\xa5\x08\xb1\x84\xb0\x52\xb0\x0e\x85\x22\x21\xe8\x19\x98\x0a\xca\x64\xcc\x4f\x9c\x8c\x7a\x07\x36\x86\x70\x93\x7e\xa1\x2a\x8d\x8c\x62\xfe\x95\x57\x40\x0b\xe0\x80\xc4\x85\x4c\x7f\x1e\x32\x58\xc1\x41\x09\x1e\xb8\xd3\xf8\x37\xc4\x58\x00\xc4\xc7\xa5\x4b\xe5\x3b\xe1\x66\x46\x02\x3f\xa0\xc3\xc1\xc4\x52\xaf\x22\xf7\xb0\x06\xd0\xfb\x30\x31\xec\x07\xcd\xcf\x70\xc7\xb8\x95\x95\xf9\x44\x33\x6f\x5f\xae\x84\x02\x09\xe6\x25\x4e\xa7\x1f\x16\x39\x07\x97\xb0\x8b\xc5\xb7\xdd\x45\xbc\x77\xd2\x25\x00\x88\x9d\xe4\x49\xd2\xfc\x96\xf3\x62\x36\xe7\x7e\x9b\xaf\xc4\x99\x7c\xbd\xdd\x26\xe9\x42\x7e\x46\x96\x4b\xa7\x34\xb5\x63\x66\x4b\x97\x96\x7f\xc3\x97\xca\xe6\xe4\x68\x48\x5d\xb2\x9b\xb3\xa4\xb4\x69\x72\x6b\xb0\x2f\xf3\x86\xa2\xce\x7d\x15\xf7\x8a\xe2\x35\x00\xa2\x08\x25\x42\x1c\xda\xe8\xd0\x99\x59\x9f\x5b\x52\x74\xb9\xa4\xc0\xd6\x1f\xda\xe7\x08\x72\xfb\x57\x6d\x57\xa3\x13\x2a\x54\x5b\x50\x76\x07\x2b\x83\x9e\x64\xaf\x21\xba\x41\xa6\x99\xdf\x29\xa7\xa0\x88\xa0\x8f\x8c\xd3\x9a\x6d\xee\x17\xb8\x2e\x9a\xa9\x00\x08\xfb\xd5\x55\xc2\x35\xf5\xf1\x9d\x6f\x99\xe6\xc6\x5f\x8e\x7f\x09\x7f\xb4\x7c\xb1\xbf\xea\x48\x82\x07\xda\x8e\xd5\x7f\x46\xf0\xad\x03\x65\xe3\x31\x63\x2d\xf0\xec\x29\xf8\x33\xe6\x49\x33\x37\x90\x8f\x19\x2d\x41\xdf\x18\xce\xfa\x17\x53\x3c\x38\x6a\xed\x37\x00\x84\xf9\x9a\x8f\x82\xbb\x75\xf5\xfd\xa9\x8c\x07\x8d\x91\xbd\xaf\x08\xb3\x5b\x42\x7a\x0c\xed\x3b\xda\x5a\xbb\xc7\xd4\x77\x76\xec\xef\x64\xcd\xdd\x87\xc6\xda\xcf\x65\x3d\xc2\xe7\xda\x5c\x67\x2e\x25\x37\x58\x26\x06\x4f\xa1\x6f\x30\x5e\x9c\x92\xcd\xc9\xd7\x17\x00\x20\xf4\x80\x46\x04\x85\xb5\xab\x86\x37\x32\x70\x0d\xc2\xa1\x08\xfc\xd5\x66\xe6\x80\xb4\x9d\xd9\xba\xae\x6f\x7d\x7d\x5b\xc7\x8c\x9e\xa3\x73\x47\x51\x67\xba\x4e\x66\xdd\xc2\xed\x72\x2c\x9e\xb9\x97\x74\xd3\x16\x13\x3c\x8f\x5e\x61\x26\x4d\xd1\xb1\x5f\x1b\x4a\x00\x10\x9c\xd3\x4e\x94\x9e\xa5\x6f\xa9\x5f\xc8\x79\xcf\xa0\x34\xad\x26\xb7\x32\x5b\x61\x2b\x90\xb9\x2c\x2a\xfc\x52\x23\x89\xbd\x0c\x99\x52\x76\x9a\xf3\x1b\x73\x30\xdb\x83\x67\x25\xd8\x13\xe4\x02\x1c\x65\xf9\x0c\x89\x48\xc6\x74\x76\xb5\x48\xfe\xe2\xf6\x00\x20\xdf\x21\xbc\x2d\x9d\x46\x1b\xd7\xb4\x88\x53\x48\xfb\x00\xa3\x91\xf6\x33\xdc\xe1\xb3\x10\x2b\x98\xc5\x88\xe0\x86\xdb\xac\x05\xe8\xa2\xb2\x5a\x4e\x10\xae\x33\x6b\x15\xf7\x1c\x29\x20\x61\x16\xff\x04\xf5\xe5\x8c\x62\xd1\x18\xe6\x4f\x57\x95\x44\xc4\x4b\x03\x40\x2e\x12\xc5\x48\x6a\x28\x30\xd8\x9f\x6c\x33\x55\x02\x6f\x21\xf9\xd0\x8e\x76\x3c\x44\x4c\x60\x78\xa1\x06\x1a\xca\x98\x5d\x58\xc5\xdc\xf3\xec\x54\x82\x3d\x2b\x87\x3b\x9e\x7c\x33\xfe\x11\x3f\x84\x8e\x99\xe1\x29\x54\xb0\xa3\x5c\xb9\x12\x0f\xfe\x24\x00\xe4\x71\xa2\xb5\x22\x3e\x31\x13\xe9\xcf\xbc\x41\x9a\x8f\x2e\x26\xd8\x28\x91\x58\x4c\xfb\x56\xea\x1f\xf8\x2d\xf5\xa1\x74\x35\x69\x66\xe9\x45\x26\x9e\x72\x22\x93\xc6\x16\xd0\xfb\xe3\x2b\xb9\xe7\x58\x3d\x01\x67\x04\x04\xee\x51\x57\xba\x38\x59\xf0\x1b\x00\x99\x40\x32\x4e\xf0\x0d\x97\x84\xbf\xc8\xa0\xe3\x4f\x13\x97\xe2\xf3\x89\x56\x32\x02\x0e\x91\x49\xd4\x8c\xba\xc9\x54\x2a\x3d\xab\xe4\x09\xdd\xc6\xac\xcb\x58\xc3\xbc\xcd\xee\x89\xbb\xc0\xe1\xf0\xc6\x06\x2c\xe0\x97\x08\x16\xb8\xea\x44\x65\xe2\x99\x00\x48\x37\x4a\xbb\xf9\x95\xe8\x5a\x7a\x38\xed\x2b\x76\x06\x03\x8f\xfd\x85\xf7\x60\x2e\x6e\x6b\x27\xc6\xb2\x7e\xd7\x8e\x23\x53\x38\xaa\x92\x31\xd4\x13\xbc\x89\xe9\xef\x19\xf5\xfc\x1d\x71\x48\x76\xa4\xb0\x33\x40\xca\x9b\x25\x36\xb8\xae\x10\x62\xa5\x68\x00\x24\xff\xc8\xa7\x73\xfd\x3a\x36\x0b\xbf\x50\xbe\x20\xf7\x88\x46\x31\x91\xe8\x57\xe2\x58\xd8\x4e\x5c\xad\xf8\xcf\xea\x61\xc2\x4d\x89\xb4\xe8\x1a\xd9\x28\x4d\x4a\x9f\x4a\xc3\x4a\x7f\xc4\x5e\x67\x4a\x64\x8f\x03\x1a\x38\x27\xe5\x17\x5d\x2f\x0a\xca\x15\x36\x00\x24\x93\x95\x29\x6c\xa7\xb6\x4e\xc8\x44\x9e\xd1\x7e\x0f\xaa\x41\x99\x90\x70\x68\x42\x4b\x19\xfa\x3f\xcd\xb5\x79\x08\xdc\x31\xcd\x96\xc2\x4b\xc4\xdd\x1a\xdd\x9c\x0a\xca\x6d\x4d\x47\x2c\x91\x31\x53\x93\x13\x50\xc4\xde\xa5\x99\xe0\x36\x86\x2f\x55\x3b\x00\x10\xf3\xd5\xae\x4c\x2d\x2c\xd4\x8e\x27\xee\x6c\xdb\x63\xeb\x42\x66\x77\x10\xad\x43\xcd\x91\xa8\x04\xcb\x92\x2a\x1a\x36\xd8\xbc\xbc\x70\x0a\xa1\xcc\xb4\x34\xed\x20\x79\x89\xb1\x2b\xd6\x9f\x3e\xcb\x40\x0a\x98\xcd\xfa\xa6\x1f\xe7\x96\xc1\x7b\xad\xad\x07\x40\xec\xa1\x59\xc4\x78\xdb\x52\xd3\x23\x23\x26\xb4\x3e\xe9\xae\x43\xec\x68\x1f\xe9\x1a\xd3\xb4\x13\xc9\x74\x6c\xab\xf2\xc2\x30\xec\x8d\x05\xe7\xf1\x6b\xad\xef\xd2\xfa\xc8\xbe\x16\x76\xac\x1b\x6d\xbf\xe9\x54\x40\x31\x6b\x89\xe1\xba\x1b\x9a\xb7\x5a\x67\x07\x40\x74\x1b\x2a\x65\x68\x9b\x57\x0f\x5c\x21\x1c\x6f\x4d\xe9\xc7\x22\xe0\xf0\xd7\xbd\xe7\x9b\xd8\x88\x63\x3d\x69\x95\x8f\xd1\x67\xba\xf4\x05\xdb\xf0\x5e\x8e\xf3\x69\x9d\xa4\x2e\xdb\xdb\xd8\x10\x5a\xa9\xe5\x4a\x80\x88\x95\x6d\xc2\xb8\x2d\xe1\xd5\xe9\xff\x9f\xd0\x0d\xed\xe1\x60\xb8\x55\x0d\x63\xc8\xb7\xb8\x4f\x9a\xde\xa1\x56\xf1\x96\xc3\x6e\xb5\xc4\xf2\xdb\xe1\x3f\xaa\xbe\x0b\x52\x91\xb0\x42\x2f\xe1\x4c\xcc\xc3\xb4\x70\x51\x35\x61\x73\x74\x89\xf8\x18\xe5\xa8\x9f\xa7\x94\xc9\x0c\x9a\x58\x21\x9f\xc7\x5d\x05\x80\x72\xa5\xf0\x5f\xb6\x91\x7d\xb5\xe9\x0c\x39\x98\xd3\x09\xd3\xa2\x26\x73\x59\xf0\x8c\xe6\x4e\x5e\x19\x22\xbc\x8a\xc6\xcf\x45\xcf\x2d\xe8\x12\xc0\x71\x7d\xa9\xbb\x85\xc3\xa4\xc8\xa8\x6f\xe2\xd9\xd4\x8f\xbe\xdf\x24\xdf\x58\x93\x26\xce\x93\x7d\xf9\xbf\x81\x28\xe9\xa2\x0c\xd6\x62\x16\x1a\xb6\x8f\x04\x67\x67\xc0\x0b\x90\x64\x4e\x5a\xc7\x91\xa6\x97\xdc\x78\x94\xb8\xf2\x0c\xaf\x08\x8b\x2f\x70\xe1\x2b\x09\x92\xd4\x62\xc1\x7d\xf2\xb9\xa8\x2d\xa2\x6e\x7a\x8b\xef\x2d\x89\x98\x1d\x3e\xb1\x4c\xd6\xcb\x77\x02\x40\x19\x2c\xda\xcc\xb8\x42\xe7\x22\x2e\x12\x56\x32\x74\xa8\x97\x1d\x67\x99\xfb\xb0\x4e\x8d\x06\xd6\x17\x3c\xac\xa2\x97\x53\x4f\xbc\x9d\xf7\x83\x7b\x92\xa2\x4d\xc1\xf1\xf1\x74\x4c\x54\x80\xb0\x8a\x45\xf4\x5d\x2d\x26\x71\x57\x4e\x6c\x93\xee\x14\x3c\x05\x40\x41\x14\xff\xa6\xb3\x29\x3c\x7c\x11\x1e\x49\x3d\x4e\xf8\xdd\xbe\x8c\x9e\x43\xda\xd1\xc0\x67\xec\xa0\x2c\x2a\xef\x63\xd5\xd3\xb6\xe4\x45\x72\xc6\x30\xee\x25\xef\xe4\xde\x64\xa7\x46\xee\xe6\xff\xe0\xee\xf1\x85\x44\xd5\x02\xdc\x44\x95\xe4\xac\x18\x00\x20\x5f\x28\x85\xa8\x4f\x88\xab\x68\xd3\x71\xee\xe4\x44\x3a\x1e\x6e\xa3\xdc\x64\xac\xaf\x67\xd0\x3a\x59\x61\x65\x4b\x19\x24\xf6\xbe\xdc\x36\x56\x1d\x17\x9b\xec\xcd\x41\xf0\xe3\x23\xd1\xbc\x9d\xc2\x08\x5f\xa6\x30\x57\x9c\x36\x71\xb7\xf8\x6f\x69\x38\x00\xb2\x5b\x72\x27\x8a\x2b\x2e\x41\xc0\xc1\x94\xe3\xef\x08\x03\x5b\xef\x11\xf7\x08\x0f\xd6\xbe\x23\xef\x10\xc9\xe7\x22\xa9\xd7\xc4\x8d\x39\xd5\x8c\x29\x92\x94\xa4\x2a\x16\x43\x1a\x1d\xf1\x9e\xeb\x2a\x2b\xf4\x45\xf1\x6f\xca\x5b\x26\x7e\x15\x9d\x54\xcc\x06\x40\xfa\x41\x39\x91\xf8\x1d\xed\xa4\x6e\x43\x19\x30\xbf\xd5\x05\x30\x02\x3e\x4c\xed\x5f\xb3\x92\xd8\xa1\xf6\x2e\x2d\x23\xef\x53\x07\x64\x13\x69\xd9\xea\x88\xd9\xf3\x19\x0f\xd4\x49\x11\xbd\xec\x7d\x6a\x98\x6f\x1d\xef\xa4\x1a\x36\x29\x51\xf8\x9f\x7a\x12\x00\xd2\x26\xd5\x69\x42\x0f\xe2\xb5\xe5\x18\x32\x13\x3d\xce\xe2\xdc\x92\x88\x2d\x36\x27\x55\x2f\xc6\xcf\x37\x31\x4a\x84\xa4\x40\xe3\xca\xac\x03\x94\x4b\x86\xc7\xb3\xc3\xe8\x9b\x0c\xd3\x22\x6a\x58\x47\xf4\x59\xbe\xf9\x3c\x57\x5d\xd0\xa4\x66\x21\x19\x5a\x0b\x80\xe4\xb9\x66\x1e\x61\x0c\x62\x4c\x67\x0f\x62\x1b\x6a\xa6\xc3\xdc\xbc\x11\xa3\xb0\x63\xaa\x73\x70\x0f\x6c\xf3\x4a\xe2\x88\x54\x6b\x78\x96\x9e\x92\x6a\x99\x90\xf8\x83\x1e\x61\xba\x10\x51\xc0\x6a\x30\x2a\x7c\xab\xb9\x5b\xf5\xb7\x27\x71\x85\xa1\xda\x9b\x00\x48\x36\x69\xde\xe2\x07\x3a\x0a\x7a\xd7\x23\x6a\x91\xe2\x1e\x72\x73\x1b\xfa\x7a\xf7\xd8\x79\x3f\x70\xd9\x9d\x2b\x4b\x9c\x09\xa7\x1d\xa9\x59\x5c\xf2\x22\xdb\xf1\xc4\x9f\xb4\x25\xd6\xd4\x88\x5a\xe6\x1d\x33\xdf\x97\xce\xad\x36\xb6\x4c\x5a\x29\x38\xa1\xfb\x0b\x00\x09\x12\xa2\x62\xf6\xc8\x0e\x37\xf4\xc2\xb3\x65\xd7\x9a\x79\x0d\x6e\x72\xcf\xd6\xc6\x0a\x96\xbc\xa8\x9d\x54\x30\x47\x6e\x42\xee\x9b\x83\x92\xbf\xc4\x16\xc6\x2f\x56\xe0\x89\x53\x83\x2b\x95\x9e\xd4\x24\x8f\x6b\xca\x47\xcc\x81\xb1\x07\x54\x2f\x79\xae\x00\x68\xaa\x45\x24\x4c\xa0\xb4\xbd\x39\xb2\x6d\xbd\xb4\x0b\x76\xa1\xde\x2e\x7d\x0e\x97\x97\x7f\x94\x65\x20\x50\xf9\x87\x65\xa3\x68\x55\xda\x77\xf9\x0c\xdc\xc5\xf8\x3a\xf9\x0e\x12\x3e\xd8\x53\xa1\xa6\xe5\x7b\x9c\x52\x32\x59\x88\xb1\x47\x54\xbd\x3c\x0d\x00\x9a\x29\xa2\x2e\x34\x5f\xfc\x11\xf6\xb0\xcd\x43\x52\x06\x6f\xa9\x1f\x27\xd9\xd7\x71\xa9\x9c\x2b\x8d\x44\x19\xf3\xcb\xa5\xab\xb1\xfc\xb4\x01\xd9\x5c\x42\x77\xdc\x4f\xd9\x0f\xf2\xeb\xa0\xbf\xe5\x8f\xe9\x26\x8f\x83\x8a\x37\x6c\xe4\xd8\xb3\xaa\x44\x7e\x32\x00\xea\x23\xa2\x4f\xa8\x58\xe1\x64\x84\x06\x76\x56\xb8\x0a\x35\x58\x7b\x52\x84\xc4\x6c\x2d\x6b\x15\x4f\xc0\x7b\xe4\xd5\x8a\x8f\x13\x97\xa6\x1e\x95\x0c\x53\x10\x71\xcd\x52\x1d\xbd\x3a\x48\x23\x5b\xcc\x22\x7b\xac\x93\x3f\xe0\xee\x1e\xfb\x4e\xd9\x2c\xf8\x08\x80\xda\x4d\x12\x81\x78\xce\xe3\xe1\x5a\x5a\x96\xf0\x67\x11\x62\x6a\xce\x08\xc6\x10\x7f\xce\x65\x09\x1e\x93\xff\xcb\x95\x0a\xef\xd0\xc2\x53\xbd\x44\x8f\x19\xf4\xd8\x4b\x92\xb1\xac\x47\x41\x85\xd2\x06\xae\xdd\x63\xa9\xec\xa4\xa0\x61\x5c\x8c\x82\x2e\x7a\x0f\x80\xaa\x48\xda\xdb\xc1\x62\xdf\xa4\x2c\x6a\x16\x71\xf6\xd3\x3c\xab\xaf\x71\x0f\xd2\xb5\xa5\x76\xde\x55\xa6\x5f\xce\x7a\xc1\x38\xd6\xa5\x14\xba\x30\x87\xb3\x24\xb6\x41\x64\xe3\xf5\x05\x4d\x90\xb8\x0b\x8e\x79\x2c\x97\xee\x16\xfd\x3b\x8e\x2b\xd7\x49\xbe\x03\xa0\x54\xc8\x27\xc1\x37\x30\x4c\x3c\xef\xc6\x6b\xcc\x41\xfe\xf8\x79\x8d\xac\xcb\xfc\x27\x25\xb9\x9c\x30\xc1\x5f\xd9\x3d\xdc\x3e\xe1\xfd\x64\x23\xdf\x5b\xf4\x2d\x66\x8d\x60\x9b\x24\x2e\x70\x9b\x88\x2e\x35\x7a\x2c\x94\x34\xca\xce\x8c\x3b\x2c\x43\xcb\xcf\x01\xa0\xd0\x2a\xde\xb4\x7e\xa7\x6e\x50\x94\x36\xe0\x68\x2f\x14\x94\xaa\x18\x46\x99\x42\x5b\x9c\xc3\x3c\xaf\xf8\x23\x6b\x07\x5b\xae\x74\x4d\x7a\xc8\x9d\xa3\x44\xc6\xc4\xf0\x83\x95\x7b\x03\x95\x42\x4f\xd5\x6c\x8f\x35\xe2\x1c\x15\x6f\xdc\x6f\x29\xa4\x22\x01\x20\xbf\xa1\x82\x60\x17\xc9\x5c\xc3\xfd\xfa\x7c\xca\x63\x03\xa9\xd2\x9b\xc6\xd6\x3f\x2a\xaa\x66\x78\xeb\xf9\x59\x63\x99\xf7\xf4\x63\x93\x2a\xd8\x57\x75\x23\xd1\xa7\xb9\xcf\x75\xd1\x81\xf9\x82\x19\xda\x15\x1e\xcb\x45\x52\xe8\xc1\xf8\xd9\x92\x57\x9a\x93\x00\xc8\x89\xea\x47\xb0\x74\xd2\x80\x35\xad\xee\x30\xc5\xd3\x62\xac\x58\x4a\xdd\x68\x3e\x56\xf8\x95\x0e\x37\x4f\xca\x3c\xc9\x8c\x36\x95\x24\x85\xb2\x13\x8d\xfa\xe8\x2d\xdc\x56\xc3\xb6\xc0\x0c\xfe\x0a\xfd\x5e\x8f\x4d\xa2\x40\x9d\x78\xfc\x5c\xc9\x12\xe8\x06\x00\xf2\x78\x8d\xb0\x65\x2f\xf1\xa1\xe3\x79\x1d\x9c\x8c\x75\x4c\xab\xa8\xa6\x3a\xdb\x83\x0b\x0f\xd0\x36\xd9\x22\x33\x57\x31\x64\xd6\x19\x49\x53\x59\x5d\x16\xaf\xe8\x6d\x9c\x93\xa6\x77\x81\xe5\xfc\x18\x63\xa7\xc7\x65\xe1\x76\xfd\xbd\xf1\x1a\x49\x91\xf6\x0c\x00\xb2\xbf\x34\x5f\xeb\xab\x0c\x6e\x8d\x35\x95\xab\xf5\x23\x2d\xa1\xc5\x74\x7d\x61\x1b\xc8\xbe\xa1\x3b\xd9\xe1\x93\x72\x48\xd7\x86\x62\xc6\x27\x6a\x7f\x63\x7f\x86\xde\xd6\x6e\x24\x5e\xf3\xad\xd2\x52\x68\x93\x5c\x4f\x6b\xf3\x58\x5c\x00\xb4\xe5\xbc\x2b\x00\x68\x1d\xe2\x94\xba\x53\xba\x3f\x9b\x2d\x95\xd9\x3a\x42\x6b\x56\xb1\x97\x2e\x08\xfe\x31\xdb\xa0\x3d\x8e\xb8\x9b\x22\xd5\x72\x31\xe3\xe2\xbe\x68\x93\xf1\xb8\xd0\x2d\xd0\x2f\xf2\x58\xdf\x14\xe8\x2a\xed\xb3\xeb\x55\xe8\x14\xdb\x17\x00\xe8\x35\x3f\xee\xff\x39\xe2\xfc\xba\x1c\xad\x02\xf6\xb1\xe2\x98\x36\x01\xae\x2e\xda\x0a\x7d\x41\xf8\x66\x27\x43\x3b\x51\xd7\x52\x62\x20\x08\x7b\x39\x6e\x27\x84\x20\x82\x50\x0d\x54\x48\x61\xf8\x06\x41\xe9\x8c\x40\xd7\xdb\x50\x19\xfb\x1b\x00\x90\x8e\x7f\x18\x00\xe8\x8b\xd8\x56\x5b\xac\xbe\x80\x08\x2d\x7f\xaa\xde\x8a\x6a\x2f\x7c\xad\xde\x88\x19\xc9\x12\xaa\x97\xe1\x27\x27\xab\xd5\xcb\x88\xdb\xe3\x12\xd5\x1b\x29\x96\xd0\x60\xf5\x11\x7a\x9f\xcf\x6b\xf5\x3f\xac\xd3\xae\xaf\x35\xc9\xbc\x10\xe0\xa5\x99\x2f\xec\x00\x00\x4a\x93\x2c\xaa\x01\x4a\x2e\x96\x57\x76\x5f\x89\xc5\x4b\x0a\xa3\x94\x0c\xa2\x24\xf3\x88\xb2\x8f\xdc\x97\xf4\x50\x79\x82\x7a\x27\x76\xbb\xf2\x37\xa3\x32\xe4\x9c\xaa\x88\xf5\xd4\xe7\xae\x6a\x3e\x77\xb7\x9b\xb3\xda\x53\x60\x07\x04\xf5\x3a\x71\x36\x00\x1a\xbc\xf4\xdb\xbc\xcf\xb2\x4f\xe4\x9a\xb9\x5f\xe5\x93\x29\xff\x14\xe0\xe5\x05\x34\x6b\xa6\xa7\x7c\x90\x51\x9e\x54\x26\xff\xc6\x8a\x8b\xcd\x53\x20\x39\xf1\x21\x2a\xc5\x59\x5e\x8d\xcf\x05\x65\xa3\x60\xbb\x5b\x94\xf2\x87\xd8\x19\x1c\x50\x1d\x93\x06\x03\xa0\x5e\x24\xef\xa8\x32\x88\x37\xb0\x7f\x97\x6e\x12\xff\xcb\x0d\xc9\x0f\x95\x08\x79\x59\x19\x6e\x92\x6f\x7c\xf4\x6c\xb6\x74\x54\xb0\x3c\xa6\x5f\x56\x22\x02\x21\xae\xb2\x6f\x62\xb6\xcf\x12\xf9\x16\xa9\xbb\x5b\x91\xc2\x2e\xd3\x39\x05\x2b\x1d\xf2\xed\x00\xa8\x06\x95\x53\x2b\x63\x04\x0f\xa4\x89\x25\x3a\x21\x52\xba\x2a\xaf\x54\xf8\x43\xe6\x99\x5e\x27\xda\x22\x1b\x4c\xbc\x2f\xd6\xca\x67\xc7\x04\x4a\xe8\xf2\x9b\xc1\xc7\xa5\x70\x85\xce\xc7\x28\x6b\x55\x16\xbb\x31\xe5\x2c\xe5\x65\x27\xa9\x62\x95\x6a\x12\x00\xca\x7b\x2a\x41\x45\x18\x6f\x23\x74\xb1\x78\x94\x0f\x83\x4e\xe5\x4a\x04\x81\xd0\x86\x39\xf3\x05\x9f\xa0\xa1\x44\x84\xf0\x01\x64\x8d\x3e\x21\x7a\x07\x69\x82\x6d\x12\x7f\x88\xe1\x23\x94\xd6\x42\x05\x6e\x6a\xd9\x52\xcd\x6d\xa7\x43\x0a\x27\x4d\x34\x00\x4a\x84\x7a\x45\xf9\x3e\xee\x0d\xc3\xc5\xe2\x0c\x9e\xd9\x60\xcb\xf5\xe4\xb7\x19\x52\xe7\x34\x0a\x66\xeb\x6f\x27\xc6\x0a\x83\xf5\xea\xe8\x0d\xa2\x22\x7d\x6c\xb0\x4c\xac\xd5\xed\xf3\x91\x49\x2e\xeb\x42\xdd\xfa\x65\x45\xda\x4a\xa7\x87\xf2\xad\x50\x08\x00\xca\x30\x4d\x68\x39\x9d\x1b\x6d\xc9\x29\x7a\xc9\xbd\x69\x3e\x93\x73\x81\xb7\xce\x5c\x34\x27\x89\x2f\x35\x6d\x4b\x0c\x13\xe0\x4c\xd3\xa3\xb7\x08\x87\x8c\xea\xe0\x6e\xd1\x73\xc3\x51\x9f\x11\x49\xb5\xfe\xac\xdb\x11\xe9\x65\x5d\xcf\x98\x68\x79\x8b\x16\x00\xa0\x38\xaf\x59\x52\x90\xd9\xb5\xbd\xf1\x7d\xd6\xa3\x4e\x45\xcb\xf5\xd4\xb7\x0e\x64\xdb\xb9\x59\x58\x7b\x66\xc7\xdb\x68\xb6\x6d\x0a\x1a\x16\x32\xdb\xf2\x0c\xf7\x9f\x5f\xa3\x79\x27\xe9\xe9\x94\x63\x26\x0a\x3d\xdd\xb9\xd4\x38\x97\x3d\x00\x80\xa1\x82\x7f\x06\x00\x3d\x46\x12\x92\xff\xab\x93\xd1\x32\x3e\x6b\x85\xa3\xbe\xf5\xcf\xd4\x9d\xf6\xaa\xf6\x81\x59\x69\xb6\x7c\xa4\x25\xba\xde\x9a\x80\x39\x1a\x12\x68\x09\x24\xa4\xfb\xd5\x98\x9d\xc9\xaf\xa7\x1c\x35\x5e\xa5\xff\x72\x46\x1a\x4e\x72\xbc\x01\xd0\x3f\x17\x8c\x05\x40\xef\x25\x99\x92\xbf\xd3\x11\xda\x5a\x96\x85\xb4\x87\xc0\x9f\xa6\xf2\x6d\x29\x88\xee\x59\xce\xd6\x2c\x74\x5b\x74\xb4\xa5\x08\x87\x0f\x71\x32\x57\x12\x37\xf8\x15\x98\xe6\x51\x53\xa6\x9c\x30\xa6\x31\xc7\x39\x73\x0d\x05\x9c\x6b\x00\xe8\x45\x02\x35\x00\xba\xbd\x92\xb2\xfc\x31\xd6\xfd\x1d\x4f\x33\xff\xb4\x5c\x44\x95\xa4\xfc\x30\xff\xc0\x6c\x9a\xd9\x67\x4e\xc3\x67\x45\x9d\x35\x31\x88\xdf\x83\x8f\x1a\x97\x50\x3e\xf9\x85\x1a\xce\x33\x42\xa6\x1c\xd1\xbf\x61\xb3\x9c\xe7\xeb\x43\x78\x27\x01\xd0\xe9\x85\xef\x00\xd0\x7e\x90\xe6\xe5\x05\x99\x73\x30\xdf\x33\x7e\x99\x4c\xf8\xc9\x29\xed\xc6\xeb\xc4\x84\x99\x93\x8d\x99\x64\x42\x14\xda\x30\x42\x3d\x17\x2c\xd2\x7f\x65\x10\x7d\xbf\xeb\x6b\xd9\xb1\x53\x4e\xeb\x86\x78\xc1\xce\xe7\xb4\x5f\x84\xe3\x00\xd0\x9a\xc4\x1b\x00\xd0\xce\x90\x19\x72\xb3\x8c\x9e\xa4\xdc\x8c\x22\x03\x8a\x32\x2e\xf9\xb0\xfe\x28\xf5\x6a\x82\x55\x3f\x8f\xbe\x23\xf2\x3f\xdd\x55\xe6\xc1\xe0\x14\x5d\x2b\xfb\x83\xef\x1d\xed\x0d\x5e\xe9\x94\x6b\xda\x4a\xc1\xf5\x09\xe3\xa1\x2b\xe2\x4a\x00\xa0\x3e\x29\x17\x00\xa8\x41\x7e\x3e\x27\x5e\xbb\x9b\x15\x92\x8e\xd3\x56\xb3\x95\xc9\x5e\xd0\x47\xce\xdd\xf8\xcf\xd0\x66\x5e\x4e\xa4\x09\xa2\xf3\x77\x04\xbd\x85\x66\x09\xeb\x7c\x4f\x68\xde\x88\x7e\x4c\xf9\xaa\x19\x94\xfc\x8f\xbd\xf7\x7a\x8a\xc2\x89\xbe\x07\x1b\x41\x11\x10\x50\x41\x50\x82\x92\x41\x72\x54\x04\x09\x22\x08\x48\xce\x19\x86\x30\xcc\x0c\x4c\x60\x72\xce\x01\x18\x72\x36\x8b\x59\x14\x51\x14\x23\x98\x31\x62\x40\x45\x31\x60\x46\x45\x45\x72\x06\xed\xad\xcf\xb7\xea\xb7\x5b\x5b\xb5\xff\xc1\x7e\xef\x4b\x57\xbf\xf4\xc3\xb9\xa7\xfb\x9c\x87\xae\x73\x1f\x29\xe7\x0a\x63\xd8\x4c\x00\x84\xc1\x9c\x47\x00\x08\x37\xf2\x10\x9e\x61\x82\x39\x7a\xe6\x86\xb3\x82\x4b\x0c\x47\x27\xa9\xa0\x94\x31\x63\xd3\x20\x40\x33\x3b\xcd\x83\x04\x51\xac\x23\x6b\x6f\x0b\xfc\xd9\x87\x74\x4f\x0b\x3c\x38\xbb\x97\xab\x0b\xec\xb9\x7b\x94\x5b\x05\x2e\x3c\x22\x00\x82\x14\xde\x77\x00\x04\x38\x7e\xb5\xc7\x1e\xde\x18\xdf\x6b\x83\x1a\xef\x02\xbf\xca\x71\x82\xb7\x9f\xff\xc6\x66\x0d\xaf\x5e\xb0\xce\x7c\x29\xef\x88\x00\xbd\xb6\x9e\xd7\x21\xb8\xa9\x7b\x9c\x37\x20\x54\x5e\x6e\xc6\xd7\x12\x5a\x29\xf7\xf1\xc3\xff\xe3\x33\x7f\x9f\xe0\x05\x00\xfc\x2f\x82\xbd\x1e\x8a\xbc\x15\xa2\xa7\x6e\x87\xb8\x9f\x44\x63\x8e\x27\xb8\x8f\xc5\xca\xd6\x3f\xb9\x9d\xe2\x15\x66\xdf\xb9\x2f\xc5\x16\x6b\x6b\x79\x8b\xc4\x36\xba\xe7\x79\xdb\xc4\x7a\xcb\xfd\x79\x45\xa2\xb7\x4b\xb5\x78\x7d\x22\x0c\x00\xfc\x40\xe1\x31\x00\xf8\xc7\x84\x4b\x36\xf1\xb8\x11\xd2\xd7\x6e\xa1\x5c\x23\xe9\x3b\x47\x26\x57\x53\x7a\xdf\xba\x9b\xbb\x58\x7a\xcc\xac\x9b\xab\x26\x15\xae\xdd\xcb\x8d\x91\x06\xeb\xbe\xe0\x36\x4b\x06\x96\xf3\xb9\x73\x92\xb8\xa5\x64\x5e\xaa\xb8\xe8\xbf\x5b\x29\xca\x03\x80\x9f\x26\x4c\x73\x3f\x5b\x77\x24\x76\x8b\xcb\xc1\x5a\xe3\x04\x4b\x7b\x9f\xea\x1d\xc9\x4e\x56\x3a\x55\xb6\x69\xd1\xc6\x17\x2a\x8e\x23\xee\xeb\xab\x97\x9b\xe6\x10\xb5\xfa\x4b\x4b\xd0\xc8\x65\x7e\xf2\xeb\xd8\x1b\x8a\x97\x8a\xcd\x88\x5a\x00\x14\x36\x51\x5d\x01\x90\xd9\x31\x05\xee\x79\xb5\x79\xf1\xdb\x5c\x08\xd5\xf3\x49\xca\xf6\xda\x55\x65\x29\x3f\x2d\x61\xa5\x5b\xfa\x7b\xe3\xa3\xe5\xf7\xb3\xd6\xea\xab\x97\x25\x23\x77\x6b\x0d\x96\xbc\xc1\xa4\x2e\x0b\x96\xdb\xe0\xa8\x8a\x6f\x8a\x0e\x11\x25\x00\x14\x6e\xa5\xa6\x01\x20\x7d\xc7\xcc\x74\xd7\xa9\xb1\x4d\x64\xb9\x38\x54\x3d\x4f\xd1\xb7\xfb\x52\xc9\x4e\x7b\x6d\xf9\xa9\xc2\x15\xb1\xc7\xb8\xa2\xec\x63\xf6\x69\x3d\x58\x2a\x43\x29\x6a\x0d\x97\x18\xe6\xd5\x2c\x8b\x29\x2e\xc6\xe7\x2b\x4e\x15\xe9\x90\xdc\x01\x90\x3d\xa6\x3e\x05\x40\xca\x65\x96\x6d\x3c\x5c\x79\x22\x75\xce\xf9\x71\x05\x2d\x23\xde\xae\xb6\x3c\x24\xf3\xa1\x65\x4d\x99\x73\x4e\x8a\x71\x76\xa9\x1a\x6a\xbd\xde\x0f\x79\x5f\x9e\x83\xd6\x44\x71\x23\x2e\x7f\x59\x5a\xd1\xd6\x82\x0e\x25\x2b\xd9\x30\x45\x1b\x00\xe9\x4b\xba\x03\x00\x92\x56\x16\x7b\x43\x6f\xb9\x67\xe6\x63\xe7\x35\x65\x6e\xd9\xbf\x6d\xa7\x4b\x9d\x72\x0d\x2c\xf5\x4b\xbc\xd0\x08\xe3\x45\x72\xcf\xbc\x97\x7a\xcd\xc5\xce\x38\x81\x56\x5f\x91\x41\x41\xec\x32\xa2\x6c\x80\x1c\xa3\x94\x2a\xed\xa0\x79\x01\x20\x79\xc6\xf8\x04\x80\xf8\x2d\xfb\xfa\x06\xe3\xd2\x25\xb9\xaf\x9c\x78\x25\x1a\xe8\xd3\xb6\x05\x72\xd3\xbc\xdd\x16\x67\x8a\x63\xb1\x32\xa3\xcb\x45\x14\xfc\x7e\x3d\x61\x61\x75\xc1\x80\xd6\x33\xd9\x11\x72\xe4\xb2\x32\x69\x1d\x75\x58\xa9\x5e\x52\xcd\x28\x00\x40\xfc\x8a\xb5\x03\x00\xb1\x0a\x17\xb8\xb9\x17\x3d\xc1\x63\x1c\xbb\x8a\xd4\x08\x7d\x36\x83\x85\xc9\xc4\x78\x8b\x40\x59\x1b\xa9\xcb\x08\x27\x5b\x42\xc9\xd0\xcb\x95\xa6\xd1\x56\x69\x7d\x90\x9c\xa6\xbf\x5c\xd6\x2d\xee\x65\x76\x2c\xd6\x13\x2f\x65\x73\x01\x10\x09\x38\x6f\x01\x10\x0e\xf0\xb8\xae\xc7\x64\x2a\xb4\x60\xc7\x44\x29\x99\xee\x6c\xb3\x43\xf2\x87\x61\x6a\xb1\x5c\x92\xcf\x54\x31\x8a\x17\x7f\x63\x2d\xd3\x43\x8a\xc9\x6c\x2b\xad\x39\xb1\x02\x67\xa3\xfa\x52\x11\x92\x1b\xb7\x98\x21\xec\xe6\x05\x02\x20\x64\xf3\x7a\x01\x10\x1a\xf2\xab\x5d\xdd\xc4\xbd\xdc\x9b\x0e\xfd\xe2\x24\xde\x06\x1b\x33\xd1\x38\xef\x84\x79\xbb\x48\xc6\x5f\x65\xe4\x2a\x32\xe5\xef\xd0\x8b\x10\xf6\x0a\x96\x68\xcd\x09\xeb\x04\x18\xf5\xcd\x42\x4f\xc1\xf9\xc5\xcf\x05\xbf\x05\xaf\x00\x10\xdc\x11\xec\x03\x40\x50\x2f\x90\xb8\xf4\x89\x86\x84\xb6\x0e\x47\x45\x34\x21\xc1\x7a\x4a\xb4\x5a\x78\xce\x7c\x87\xb0\x55\xf8\xdd\x68\x8d\x30\x56\x64\xa5\x17\x2a\x34\x10\x85\x6b\xab\x0b\xc6\x44\x59\xea\xe9\x82\x33\xa2\xd0\x25\x9a\x02\xba\x68\x29\x00\x02\xac\x90\x04\x80\x20\x41\x30\xea\x22\x15\x99\x49\xb4\x1c\xb0\xc2\x66\x89\xab\xf5\x6b\x61\xb8\x24\xd6\xbc\x50\xf0\x4d\x92\x6a\xb4\x5c\x20\x91\x14\xe8\x65\x0a\x72\x24\x89\xda\x5e\x82\xed\x12\x4b\xf5\x46\xc1\x1a\x71\xfb\x12\x24\x7f\x4c\xbc\x16\x00\x81\x82\xc8\x09\x00\x81\xa6\x70\xbb\x73\xd4\xce\x67\xb1\x42\x3b\xc2\x0e\xad\x84\x6c\x2b\x74\xbd\x77\x32\xc5\xe4\x68\x6d\x55\xda\x5e\x83\x23\xd5\x8f\x32\x57\xea\x48\x2a\x27\x73\xee\x68\x8e\x56\x28\xa1\x3b\x54\x56\x94\x3e\xc1\xad\x51\x90\xc9\x1f\x13\xf3\x00\x28\xfa\x44\x25\x00\x20\x7b\xcf\x3c\xed\x34\xbb\xe3\x70\x3c\xcf\x2e\xa0\x7e\x34\xc9\xdb\x6a\x7b\x9d\x7b\xaa\xa9\xc9\xce\x9a\xbd\x19\x86\x06\x07\xab\x7e\x67\x65\xe8\x54\x56\xda\x20\xfb\x97\x2b\x96\x47\x60\x9a\x54\xd6\x97\xba\xe3\x3a\x15\x0e\xcb\xb7\x11\xbb\x00\x28\xa2\x52\xcb\x01\x90\x15\x31\xc5\x4e\xf5\x0d\xa4\xc4\x93\x76\x9a\x75\x8f\x52\x42\xac\x4c\x6a\xad\xd3\x97\x9a\x14\x55\xef\x47\x3c\x37\x38\x58\xa5\x90\xdd\xaf\x53\x57\x91\x80\xf2\x5b\xbe\xba\xac\x3a\xef\x8d\x8a\x57\x49\x1d\xbe\x55\xe1\x5a\x71\x1b\x89\x06\x40\xe1\x1c\x75\x1a\x00\x99\x25\xf3\x84\x53\x56\x6d\x77\x9a\x9e\xed\x87\x9a\xec\x8c\x02\xcb\xb1\xaa\xb9\xcc\xf7\x26\xe9\x95\x7b\x73\x68\x06\x25\x15\xb6\xa8\xed\x3a\x75\x65\x27\xf2\xd2\x96\x3b\x94\x6a\xe2\x1a\x55\x32\xe4\xa1\x05\x53\x0a\x43\x45\x22\x4a\x00\x00\xb2\x79\x7a\x38\x00\xd2\x78\x56\xa5\xe3\xc9\xea\x82\xcc\x8b\xb6\x3e\x55\xeb\xb3\xfb\x2c\xf3\x2b\x06\x72\x57\x19\x4f\x97\x9f\x44\x67\x1a\x6c\x2b\x4b\xcd\xfb\xa0\x43\x28\x81\xb8\x1d\xcb\xad\xe5\x25\x05\x14\x15\x5a\xd1\x2f\x32\x7d\x91\x45\x61\x20\x2d\x1b\x00\xe9\x08\x63\x16\x00\x09\x93\xdd\xe3\xb8\xb6\xd2\x36\xb7\xda\xe6\x52\x85\x12\x9a\x61\x31\x58\xf6\x25\xaf\xc0\xb8\xbe\xb4\x13\x8b\x32\x50\x29\xd9\x81\x2f\xd6\x89\x92\xa7\x15\x7c\x5d\xbe\xbe\x78\x25\x39\x4e\xa5\xa6\xb0\x86\x0a\x17\xe5\xca\x74\x18\x45\x00\x48\x06\x59\x2d\x00\x88\x1b\xb9\xab\x1d\xe2\xca\xb4\x70\x03\x36\x76\xa5\x9a\x84\x3c\x8b\x7d\x25\xba\x05\x33\xc6\xd9\xf2\x75\x24\xb6\xfe\x48\xb1\x21\xc5\x48\x07\x51\x64\x40\xfd\xbd\x3c\xa9\x50\x8b\x7e\x51\x65\x44\xfa\x80\xd9\xb2\x68\x5c\x22\x64\xf3\x00\x10\x57\x70\x7e\xfc\xe7\xc7\x78\xc5\x0e\x9a\xf2\x00\x2a\xcd\x7a\xbc\xb8\x80\x46\xb6\x20\x14\x1d\xa7\xd3\x8d\xb7\x17\xf6\x30\x18\xfa\x43\xb2\x59\x66\x95\x0e\x57\xe6\xcc\x6a\x5f\x5e\x27\x45\xb3\x7b\x55\x23\x25\x51\xdc\x95\x8a\x5c\xf1\x66\x9e\x09\x00\x22\x31\xef\x3e\x00\xc2\xd3\xfc\x6a\xfb\x57\x85\xdf\x39\x0d\xd6\x27\x0a\x37\x72\xad\x2c\xcc\x64\x3b\xb9\xed\xc6\xab\xa4\x7d\xbc\x6d\xfa\x4f\xa4\xeb\x78\x1f\x74\xd8\x92\x42\x3e\x66\xf9\x19\xf1\x08\xff\x83\xea\x0e\xb1\x9e\x60\xbb\xe2\x84\x28\x48\x50\x0c\x80\xf0\xbe\x00\x03\x80\xd0\x5d\x10\x6f\x7f\x59\x36\xc6\xff\x6c\x5d\x27\x0b\x12\x78\x5b\x28\x4a\xcf\x0b\xf6\x1b\x03\xc9\x82\x60\x5a\xff\x86\x24\x58\x98\xac\xc3\x16\xdf\x16\xee\x5e\xde\x29\xf6\x14\xde\x53\xbd\x29\x2a\x14\xf6\x28\xb9\x09\x5f\x09\xcf\x01\x20\xc4\x0b\x3d\x00\x10\xfc\x13\x74\xda\xd7\xc8\x0c\x45\x27\xad\x69\x52\x8a\xe8\x9b\xf9\x77\xc9\x47\xb1\x81\xd1\xb8\x64\xbd\x38\x52\xff\x86\x98\x23\x16\xe9\x94\x8a\x95\xc4\x15\xcb\x3f\x89\xaa\xc4\x1c\xd5\x71\xe1\x88\x78\xb3\x12\x51\x18\x2f\xba\x0b\x80\x50\x49\xa4\x0c\x80\xa0\x59\x18\x51\x32\x9e\x22\x08\x27\x0b\x9f\xa4\xe9\x45\xb5\xd2\xe9\xe9\x77\x62\xff\x60\x0d\x10\xbd\x89\xb9\x19\x30\xdb\x32\x55\x29\x66\x09\xb2\x31\xe3\x99\x7f\x0f\x3a\x2f\xbb\xc7\xf5\x70\xfe\x7d\xb4\x8f\xe9\x3a\x42\x34\xf6\xec\x72\x5b\x72\x1a\xd1\x0f\x00\x86\x0e\x95\x2f\x9f\x49\x22\x46\xfd\x11\x2c\xa4\x38\xc6\xfe\xa2\x1d\x4a\xd3\x4e\xe8\xcf\xcf\xce\x88\x4d\xd1\xcc\x48\xcf\xec\x49\xcf\x8a\x66\xe4\x70\x33\xbf\xfb\x27\xa0\xe8\xc8\x7d\xae\x5b\xf3\xe6\x31\x2d\x26\x77\xf0\x97\x71\xdd\xcb\x15\x48\x3f\x48\x6a\x00\xd0\xef\x51\x87\x8b\xbf\x24\x20\xe2\x24\x02\xdb\xa4\xf0\xc4\x6d\xd4\xfb\x29\x88\x14\x85\xbc\x83\x69\xcf\xd3\x3e\xa6\xb7\x23\xb8\x88\x9f\x51\x3f\xb3\xe3\x72\xcc\xb7\xbe\xcf\xe5\xa1\xaa\x5d\x7e\xe6\x99\xe7\x07\x99\x90\xf1\xab\x08\x6b\x34\x6f\x90\xf0\x24\x08\x00\x1d\x4b\x93\x17\x76\xc5\x54\xa6\x36\xf2\x82\xe3\x1e\xa5\x0f\x50\x2c\x13\x37\x65\xae\xc7\xb8\x24\xff\xc9\xae\x4b\xe3\xa6\x7d\xce\x35\x8b\x7c\x95\xb9\x1c\xfd\xd2\x6f\x26\xa7\x3c\xff\xac\x8b\x2f\x9a\x8d\xbf\x68\xfc\x1b\x7b\x87\x38\xa0\x29\x21\x22\xa9\xe6\x00\xd0\xf6\x33\xd4\xa4\x13\x11\x1d\x39\x86\x9c\x43\xd1\x81\xc8\x19\xd2\x85\x38\x25\xd4\x2b\xd4\x68\xa2\x22\xe6\x7c\x2a\x26\x65\x6b\xfe\xa5\x88\x2f\xe9\x77\x71\x4f\xfd\xac\xb2\x76\x16\xa8\x39\x37\xe6\xbe\x26\xe5\x1b\x8b\xf3\x29\x94\x61\x4d\x7c\x41\x3c\x9d\x01\x00\xf5\x2e\xf3\xa2\xc4\x2c\xd4\x0c\x6b\xc0\xd6\x0c\x9f\xc5\xd1\x88\x09\x51\x7f\xf1\xdd\xb9\xd7\xe2\xb6\x16\xac\x4d\x41\x25\xde\x27\x96\x46\x28\xa4\xee\x25\x2b\x6c\xc1\x22\xae\x53\x6a\x9c\x75\x91\x61\xb4\xad\xc6\x2e\x79\x6e\x8c\x65\x9a\x54\x42\x02\xb3\x17\x00\xca\x2c\x3b\x53\xf8\x32\x70\x3f\x63\x23\xa3\x6f\xfb\x13\xc6\x03\xc2\xd6\x70\x17\x66\x72\x4e\x7f\xd4\x1b\xe6\xa3\xa4\x07\x71\x37\x58\xf1\x61\x6d\x49\x13\xac\x3e\x5f\x66\x3a\x93\x4d\x76\x92\x64\xe7\x72\x56\x1b\xab\xa1\x4f\x72\x3a\x35\x0f\xe3\x1d\xb9\x69\x00\x50\xac\xb8\xf7\xf9\x79\x5b\x1f\x49\xbe\xd1\xee\x07\x22\x24\x75\x38\x5e\x88\x95\x64\x6b\x76\x54\xc4\x3a\xf1\xb3\xc4\xbc\x98\x24\x31\x36\x74\x6f\xc2\x27\xd1\x94\xcf\x99\xd4\x4b\x22\xbe\xd3\x8a\xcc\x59\x91\xa2\xd1\x38\xaa\x5a\x48\xd6\xec\xc3\x15\x08\xee\x01\x40\x6e\xe3\xcf\xf0\x16\x6d\x51\xad\x1c\xa3\xe2\xfc\xdf\x56\x0c\x60\x37\x04\x7d\x2c\x7f\x91\x65\x15\xb6\xa2\xac\x30\x21\x27\x4a\x5e\xea\x1e\xf2\x39\x3e\x54\xde\xeb\xb3\x2d\x25\xb3\x18\xe1\x38\x8d\x18\x2e\x7c\x60\xec\x91\x7b\x4b\xa6\xbc\xdc\x17\x3b\x23\xfe\x0b\x00\xb9\x54\xf8\x8a\xbb\xd3\x77\x75\x7d\x1e\xe5\xd3\xd6\xc1\xba\xd5\xf9\x5d\x41\x4a\x35\x8d\x99\x5d\xa1\xdb\xab\xa6\x12\xb4\x22\xdf\x54\xfa\x84\x9c\x8d\x3b\x5d\x4e\xf4\xf1\x48\x7e\x53\x2a\x71\x5a\x82\x28\x91\x67\x19\x33\x73\xf1\x45\x2b\x96\xcb\xb1\x77\xa4\x08\x00\xc8\x5c\x51\x39\x37\xc3\x27\x79\xd7\x1c\x85\xb7\xd5\x76\x27\x3d\xbf\x22\x30\xa2\xa1\x25\x73\x4f\xc8\xc1\xba\x8b\xf1\xa3\x91\xbe\x35\xc7\x43\x5a\xe2\x4c\xab\x04\x3e\x49\xc9\x29\x15\xd6\x4e\x8e\x08\xfb\x52\xa9\xf1\xbb\xdc\x55\xc5\x57\x96\xff\xc4\x96\xc8\x70\x00\x90\x53\x45\xff\x8a\x52\xd3\x4e\x87\x97\xf3\x44\x19\xfa\x51\xf7\x29\xdb\x11\x27\x62\xff\x62\xec\xb3\x64\x89\xa4\xb4\x98\x9c\xfd\xa9\x2b\x22\x8f\xe4\x0e\x66\x7c\xf0\xbb\x8f\x91\x65\x7f\x73\x01\xd8\x23\xe8\x08\xe3\x0f\x84\x79\xec\x73\x4d\x29\xf9\x16\x91\x08\x00\x63\x03\xf5\x5e\x61\x6a\x4a\x73\xd4\x00\xf7\x54\x9a\x5f\xec\x57\xb2\x20\x43\x29\xa1\x0f\xcd\xcb\x5c\x96\xa2\x96\x7a\x3d\x3b\x36\x3d\x2b\xd2\x08\xf9\x2c\xf3\xa7\x5f\x3c\x7a\x27\xf2\x88\xf3\xf1\xfc\x8f\x98\x2b\xc6\xd5\x04\x14\xee\xb7\x26\x82\x1c\x4d\xda\x08\x00\xfd\x0f\xcd\x45\x16\x9d\x74\x3c\x2e\x97\xd3\x9d\x82\x49\xb4\x22\x9d\x49\x4b\x4d\xfe\x84\xba\x97\x51\x95\xd6\x95\x6a\x9c\xa5\x84\xf8\x18\xb1\x33\xa7\x25\xc7\x70\xcb\x67\xd4\x61\x54\x95\x73\x64\xfe\x8a\xfc\x70\xe3\x20\xfc\x3d\x82\xbd\xa6\x13\xe9\x0d\xd9\x1c\x00\x7a\x2d\xed\xa1\x24\x3a\xee\x6d\x2a\x97\xad\x96\x30\x9c\xde\x49\x34\x4d\x76\xc9\x5c\x92\x9b\x9f\x7a\x3e\x9b\x98\x3c\x99\x41\xc9\x5d\x1c\xde\x90\x45\x46\x77\x6c\x51\x43\x5e\xcd\x3f\xe0\x74\x1a\x43\xc4\x9f\x33\x7a\x80\xe3\x11\xc7\x35\x17\x11\x5f\x51\xfd\x01\xa0\x3d\x64\xf8\x8b\xb2\xa2\xed\xb2\x7b\x98\x89\xb1\xc5\xc8\x36\x42\x73\x82\x2e\xaa\x0e\x69\x9e\xd4\x87\x61\x26\x7d\x4a\xfd\x92\x2f\x0a\x3b\x8c\x70\xc1\x1d\xf4\xf5\xc9\xee\x26\xfc\x76\x5a\x83\x7a\x45\x4a\x31\x42\x63\x9d\x29\xc3\x1a\x13\x05\x5d\xf4\x0a\x00\xa8\xe3\xcc\x9f\x82\x83\xe1\xcd\xf9\xe7\xe8\x77\xa3\xa2\x70\x2b\xf0\xdb\x62\xad\xf0\x84\xec\xe1\x04\x3b\xc2\x9d\xc4\xf7\xc9\x24\xa2\x77\xe8\xed\x74\x2d\xd2\x75\x1f\x69\xe6\x3f\x0a\xc2\xb1\x3e\x37\x92\x66\x6a\x64\x9d\x37\xc3\x50\xd2\x54\x25\x3c\x61\x0e\x00\x40\x5d\xcf\x2e\xe7\x45\x6d\x77\xa1\x17\x53\x0f\x87\x59\x33\xec\xb0\xb1\x91\x49\x8c\xc7\x59\xb6\x31\x77\x99\x21\x09\xe1\x09\x54\x66\x7f\x88\x24\x85\xc6\x62\x79\xef\xc9\xb8\xc5\x36\x73\x54\xcf\x21\xb0\x3f\x1a\x69\x62\x0a\x38\x47\x34\x5d\xf1\x27\xb9\x89\x00\x50\x62\xb8\xfd\x1c\x97\x6d\xa1\x12\x0d\xf2\x9d\xe0\xd3\xe2\xae\xbc\xd6\x30\x7f\xb1\x0c\x71\x26\x4a\x5d\x6c\x16\x37\x1f\xb7\x4a\xf4\x74\x3b\x3d\x09\x2d\xc2\x7b\xbd\x4f\x5f\x2a\xd2\x74\x38\x9e\xbd\x58\x78\xca\x68\x09\x3a\x4e\xe8\xa1\x49\xc3\xfd\x10\x34\x01\x40\xee\x13\x2c\x62\x5d\xdb\x4a\xaf\xf8\x4a\xca\x08\x34\x2e\x1f\xc0\xa4\x6d\x9f\x2f\xfb\x9c\x51\x14\x3e\x57\xda\x14\xa7\x10\xe3\x5d\x42\x08\xee\x4c\x78\x22\xb7\xf0\xa2\xa7\x36\x17\x3d\x72\x28\xcf\x9c\x2a\x8c\x31\x0a\x47\x49\xa5\x2d\x9a\x5f\x70\x68\xf1\x7d\x00\xc8\xa7\x84\x4f\x59\x7e\x7e\x92\xba\x50\xe2\xbb\x6d\xce\xb5\x0a\xe8\xdf\xdb\xd7\x56\xef\xc8\x58\x1f\xee\x50\xa5\x18\xdb\x16\x2d\xaf\xc8\x0a\x6e\x48\xb0\x29\x3b\xed\x85\x4f\x35\x2a\xf9\xec\x70\x30\x53\x5e\xfc\xc9\xa8\x0e\xb5\xbe\xb0\x65\xb9\x03\xce\x59\x6a\x06\x00\x79\xa7\x48\xc4\x1c\xdd\xd2\xb9\xb3\x87\xc8\x0e\x20\xef\x08\x43\x1f\x0b\x46\xd5\xd7\xa7\xcf\x84\x49\x6a\xdb\x62\x1b\xa2\x7e\x56\x77\x04\xd7\xc5\xef\xaa\x6c\xf5\x92\xa7\xec\x2d\x67\x3b\xf4\x64\x5a\x94\xfc\x35\x1a\xca\x7d\x51\x1c\xba\xbc\x14\x3b\x26\xb3\x05\x80\x5c\x20\xfa\x23\x91\x64\xcc\x86\x1f\x63\x2b\x65\xba\x45\xfd\x28\xf8\x99\x75\x39\x4e\x3d\x77\x71\x0e\x22\x91\x93\x8c\xcb\x0d\x49\x5d\x13\xbe\x14\x4d\xcc\xe8\xf7\x65\xe5\x7d\xcc\xfe\xe3\xa4\x8b\xeb\x44\xc7\x18\x45\x17\xfc\xc6\x7e\xd6\xc0\x53\x18\xc4\x0a\x00\x18\x4d\xd4\x71\x71\x45\xfa\xe2\xa8\xef\x2c\xdb\x0c\x46\xec\x97\x02\xab\x4c\xc3\x84\xe7\x48\x44\xd6\x58\xca\xe2\xa4\x8f\xc8\xa5\xe9\x88\x30\x39\x2a\x35\xb3\xdf\x57\x03\x33\x83\x3c\xec\x78\x0b\xa7\x8c\xb9\x60\xa4\x51\x90\x8a\x9b\xd0\x48\xa6\xa8\x92\xc2\x00\x60\x64\xd3\x92\x45\x35\xa9\x2b\xe2\x82\x99\x21\x69\x67\x12\x95\x09\x39\x19\xc2\xe4\x6b\x39\x17\x33\x05\x69\x17\x92\xc2\xb3\xaf\x21\x9e\x86\xa9\xe5\xfa\xe4\x68\xfa\x1c\xc2\x2c\x45\x15\x3a\x62\xb1\x3e\xf9\x01\xeb\x1e\x10\x6e\x10\x9c\x35\x36\x92\x6b\xc9\x1b\x00\x60\xa8\xd3\xfe\x08\x4e\x24\xfa\xa7\x26\xd3\xf7\x24\xbb\xa5\xef\xc7\xfd\x4a\x4d\x40\x7c\xca\xc6\xa5\x37\x65\x07\x27\x3a\x65\x6e\x46\x7e\x0a\xd5\xcd\xd1\x44\xef\xf6\x7e\x87\xb2\xce\x97\x39\xf4\xe6\x1d\xc7\x1f\x5c\x97\x84\xe7\x12\x87\x35\xd6\x90\x1a\xa8\x61\x00\xd0\xb7\x31\x90\xbc\x7d\xb1\x37\xb3\x4b\xa9\x6f\xe2\xc7\x90\x04\x2c\x36\x29\x0e\x15\x99\x65\x91\xf2\x11\xb3\x31\x41\x3f\xfd\x42\x7e\x60\x88\x45\xe6\x3b\x1c\xc1\x7b\x39\x32\x90\x70\xc3\x21\x10\xa3\x43\xf2\x5e\xa7\x84\xdb\x48\xf9\xaa\xb1\x82\x58\x4d\xaf\x01\x80\x46\x66\x2d\xe1\x0c\x47\x25\xe4\x07\x51\x82\x63\x9e\x63\x9b\xf2\xfe\xc5\xf3\xf1\x6a\x88\xa1\x24\x1f\x02\x3a\x7e\x55\x6a\x54\xc1\xcf\xed\xfe\x19\xb7\x49\x54\xaf\x84\x6c\x36\xc5\xcc\xfe\x21\xaa\x9e\x3a\xbb\xf6\x09\x56\x81\xfe\x47\xc3\xa0\x60\x0f\xf3\x13\x00\xd4\x93\xec\xa3\xac\xdd\xa1\x43\xb4\xd7\x24\xf7\x88\x56\x7a\x19\xc6\x36\xfa\x14\xc3\x2b\xc3\x27\xee\x23\xe3\x4e\x6c\x75\x52\x16\x33\x3f\x58\x23\xcd\x85\xa5\xb5\x99\x9e\xb9\x9d\xf5\xc4\x3e\x0c\xd9\xc1\xde\xbf\xf6\x46\x1e\x87\xc3\xd2\xc8\x24\x50\xb9\xfe\x00\x50\x5e\x70\x87\x19\x0f\x82\xc6\xc4\xce\x05\xa5\xa1\x56\xa2\xbf\xa8\xa6\x88\x4a\xd1\x9d\xb4\xe7\x31\x36\xa2\x82\x98\xd0\x04\x15\x91\x7d\x90\x5a\x8a\x9d\xf0\xb3\xe7\xf5\x8c\x1d\xc2\x1d\x76\x43\x39\xb1\xc2\xc8\xb5\xd7\x31\x08\xc1\x94\x46\x13\xbe\x59\x20\x04\x80\x92\xc2\x9f\xa2\x6f\xdb\xa6\x5e\xfe\x94\xb0\x3a\xb8\xba\xec\x6b\x6e\x50\x58\x60\xe9\xef\xd4\x93\x51\xab\x4a\xee\x44\xa7\xc4\xd9\xc8\x1b\x03\x53\x93\x4a\x8b\x89\x9e\xc9\xe9\x1b\x8a\x9c\xed\xde\x64\xfb\xca\x7a\xd7\x2d\x41\x57\x48\xc3\x34\x57\xe3\x6d\xc4\xc5\x00\x50\xd6\x09\xaf\xd0\xda\x02\xd6\xd4\x5a\xe3\xeb\x83\x8e\x56\xf7\x23\x9f\x84\xa2\xab\xca\x52\xb7\x47\x6e\xab\x54\x8d\x5e\x19\x8b\x2f\x17\x04\x3a\x27\xf6\x97\xfe\xf2\x0c\x4f\x3b\x56\xb2\xc9\xee\x4f\xd6\xd3\xe2\xa4\x75\xdb\xd1\xae\x85\x5b\x34\x33\x70\x93\x92\x77\x00\x50\x94\x45\x18\x5a\xa8\x7f\xd2\x8e\x13\x78\xaf\xc0\x9f\x0d\x6b\x91\xc2\x90\x33\x75\xac\x54\xdd\x88\x86\x9a\x53\x51\x53\x31\x0f\xab\x1e\x07\x3a\x26\x86\x57\x7c\xf4\xcc\x4b\x33\x2a\xeb\xb2\x37\xce\xca\x2a\x21\xad\x3b\x88\x7a\x5b\xf4\x5a\xf3\x2a\xee\xac\xf4\x23\x00\xe4\xd7\xa2\x1e\x0e\x21\x87\x1e\x3e\x4e\xce\x44\x4a\xa3\xf5\x31\x17\x72\xef\xc6\x79\x64\x24\xa2\xb7\x25\xee\x88\xf5\xc7\x2c\xa4\x5a\x05\x61\xf2\xdf\x67\xfc\xf1\xa4\xe2\x60\xf6\xb8\x6d\x57\x01\x07\x1d\x6c\xd0\x41\x0e\xc6\x0e\xa8\x3d\xa1\xe5\x13\x0f\x00\xc0\xb2\xa2\xe9\xb1\x8f\x64\x1d\x8b\xd6\x27\x9d\xc9\xfe\x18\xa7\x8c\xd1\x43\x06\x25\xfc\x49\xef\xca\x1d\x4c\x59\x1a\x73\x1f\x7d\x2f\x3d\x2e\x70\x21\xaf\x27\xf3\xa5\xa7\x2e\xce\x14\x59\x6f\xcb\x21\x3c\xc4\xec\x35\xe0\x93\x6e\xe2\x06\xd5\x3a\x69\x8a\xa4\x68\x00\x98\xfd\x34\x06\xeb\x05\xa2\x37\x0e\x45\x9c\xce\xda\x90\xa8\x87\x66\x64\xdf\x4b\xbe\x9f\xee\x89\x2c\x4b\x6b\x8c\x09\x42\x95\x22\x4e\x05\x96\x62\x3a\xb3\x07\x3d\xda\xb1\x9e\xa8\x5c\x5b\x67\x82\x7a\xbe\x89\x41\x30\xc9\x9e\xb0\x4e\xad\x8d\x5a\x43\x76\x01\x80\x59\x45\x57\x66\x1a\xa5\x99\xa6\x2a\x16\xd0\xd2\xbb\xd3\xfd\x51\x56\x88\x16\x84\x28\x4d\x3b\xeb\x49\xd6\x78\x74\x08\xd2\x0c\x59\xbd\xed\x3c\xaa\x09\x1d\xe5\xb1\x2c\x8f\x90\x1f\x60\xd3\x84\x2b\xc7\xe3\xf5\xc7\x0a\xe6\x88\x4f\xd4\x0e\x51\x0e\x52\x37\x02\xc0\x78\xc1\xa0\xd2\x25\x49\x47\xb3\xd5\xf0\xa3\x29\x95\x39\x1f\x91\xf7\xd2\x9a\x73\x2f\xa7\xf4\x20\x74\xd0\x2d\x51\xf6\x59\x97\xf2\x1e\x05\xdc\x40\x96\xe0\xc0\x26\x3f\xf4\x5e\x42\xa6\x8d\x11\x56\x95\x38\xae\x7f\x81\x70\x9d\xd2\xa6\x76\x86\x7c\x94\x4e\x01\x80\xb1\x84\xb5\x92\x7a\x38\x7e\x73\x5e\x26\x2e\x23\x11\x97\xdf\x95\x43\x4b\x7e\x82\x73\x4d\x3e\x94\x26\xc0\x1f\x8b\x34\x46\xa0\x0b\xbc\xfc\xdf\x64\x4b\x89\xef\xdd\x8b\x72\x3f\x91\x0f\x5a\xb7\xe6\xd5\x51\xeb\xf4\x4b\xf0\x55\xf4\xe3\x6a\x77\x48\x17\x98\xe7\x01\xa0\x6f\x61\x37\x91\x73\xa3\x46\xa9\x75\xf9\x91\xb1\x12\x5a\x4c\x56\x7d\x42\x20\x5d\x2d\x71\x3e\x39\x9a\xde\x16\xde\x96\x56\xc3\x60\x6c\x3d\x9f\xa9\xce\xf4\xda\xd8\x96\x73\x97\xb5\xc6\x7a\x03\xfa\x1e\x5b\x55\xbf\x04\xb7\x9c\xb3\x62\xd9\x2a\x62\x05\xe7\x1f\x00\xb4\x5c\xee\x27\x62\x76\x38\x4b\x48\xc7\x48\xa3\x92\x84\x09\x99\x20\x16\x2d\x74\x4e\xa8\x4d\xb8\x2a\x5c\x1c\x26\x4c\x09\x15\xfc\xf2\xbb\x91\xa1\x2b\xb8\xb3\x51\x39\xdb\x44\x70\x74\xfd\x38\x2a\x57\x50\xa6\xbf\x33\x7f\x4c\x90\xb1\x2c\xab\xe0\x96\x40\x0f\x00\xea\x47\xfe\xb3\x82\xe8\x90\xa2\xd2\x33\xe8\x94\xf0\x0b\x25\xaf\x33\xee\x46\x6b\xc9\x27\xe2\xa5\x71\x7b\x8b\xe7\x43\xf7\x26\x65\x15\x2b\xf9\xad\x49\xc3\x15\x29\x6f\xd8\x9f\x79\x45\x06\xd7\xf7\xe4\x06\x4a\x9f\xeb\xf7\xe6\x9b\x49\x84\xcb\x1e\x15\x78\x88\x66\x01\xa0\xee\x14\x32\x09\x4d\xdb\x6b\xaa\x1e\xa3\x5e\x87\x75\x56\x1e\xcd\x48\x8b\xb2\xae\xc8\x8f\xb7\x8b\xed\x2c\x5f\x13\x9a\x94\xb8\xb7\xf4\xda\x96\xa1\xd4\x6b\x25\x88\x0d\x15\x99\xa6\xc5\xbf\xd7\x7f\x45\x3e\x29\xf2\x35\x58\x96\xd7\x25\x4b\x57\x57\x21\x40\xc9\x66\x00\xa8\x74\x91\x31\xc1\x3a\xf8\x59\xbd\x01\x8a\x15\x06\x6a\x2f\x66\xac\x8d\xcc\xad\xd9\x14\xaf\x10\xab\x52\xb5\x37\xd4\x37\xe1\x4f\xc5\xc8\x96\x5f\xa9\x6b\xcb\xbd\x37\x1c\x46\xd4\x95\xe6\x5b\x9b\x23\x93\xe5\x09\x06\x99\x79\xd8\xc2\x41\xf5\x6c\xc2\x79\xa9\x37\x00\xd4\x2d\xa2\x5a\xf2\x28\xa6\x2b\xc2\x2b\xdf\x2f\xaf\x2c\x3a\x29\xf3\x7d\x7e\x7d\x1c\x36\x51\x15\x7b\x37\xf1\x4a\x98\x1c\x6f\x91\xba\xc5\x2f\x8c\x70\x2e\xe3\xef\x06\x15\x22\x3d\x07\x58\x2d\x26\x1f\x44\x47\xaf\x6e\xa7\xad\xc4\x8e\x2c\xbd\xcb\xb8\x4f\x3c\x01\x00\x67\x19\xcd\x99\xec\x8b\x1a\x8b\x76\xce\xdb\x85\x1e\x8e\xd3\xcd\xf4\xcd\xb3\x4b\x18\x4f\xa0\xe5\x0b\x52\x96\x84\x42\xdc\x92\xf4\xc8\x2d\xcf\xf1\x1d\x99\x8f\xdc\x0e\x15\x9c\x40\x96\x5a\xb6\x93\xe6\x31\xb5\xab\xa5\xd4\x2a\xdc\xd7\xa5\x9d\x0c\x24\x29\x04\x00\xf6\x03\x9a\x98\x24\xcd\x5d\x1d\x17\x8e\x19\x40\x45\x26\xfc\x43\xec\x45\x5f\x4f\x3e\x1c\xff\x2e\xcf\x35\x8d\x1d\x8a\xcf\xff\x88\x28\xd9\x12\x8f\xbb\x9a\xfd\xd0\x6d\x13\xe1\x39\x2a\xc8\x12\x4f\x0a\xce\x57\x59\x9d\x4a\x55\x22\xa8\x2e\xbd\x42\x5f\x20\x1b\x01\xc0\x66\xd3\x55\x0a\x2e\x66\xf1\x52\xce\xa0\xfd\x73\x56\xa6\xfd\xc9\x30\x43\xf6\x20\x4c\xe3\x2a\x51\xfb\xb3\x1a\x42\xa2\x31\xbb\x90\x9e\xbe\xd9\xf9\xb7\xd0\x8a\xae\x64\xbc\x51\xbe\x92\xc5\xd7\x82\x0f\xf8\x4d\xab\xd7\x91\xfb\x88\xc7\x96\x5e\xa3\x6b\x51\x57\x03\xc0\xba\xcd\xc0\x13\x3c\x33\xbc\xb2\xfc\x73\xfb\x11\x73\x39\x1e\x69\x5f\xb3\x46\x72\x75\x62\x31\x48\x65\xb4\xee\xf6\xad\xa8\xb0\xbc\xad\x3e\x5c\xcc\x35\xac\xcc\xe5\x12\x36\x07\x3f\x6b\x81\x27\xa0\x88\x87\x74\xa7\x49\xcd\x14\xf6\xd2\x77\xb4\xb5\xf4\x6d\x00\x30\xe7\x59\x4a\xb8\xe2\x94\x21\x0c\x07\x49\x4a\x9b\xce\x1b\x48\x6d\x45\xd8\x63\x43\x62\x22\xb2\x4a\x71\xcf\x82\x03\x90\x6b\x08\x5c\xef\x23\xa8\xa7\x44\x57\x17\x8d\xbc\x76\xb2\x96\xc5\x32\x3c\xa0\x5a\xe9\xf6\x10\xa5\xf4\xe4\xa5\x90\xea\xc4\x64\x02\xc0\xdc\xc0\xae\xcd\xc7\x24\xcc\x52\x3c\xb3\xeb\x92\x1d\xa9\x8a\xc9\x30\xf5\x18\xb5\x2d\xea\x79\x46\x32\x8d\x19\xb4\x28\xcb\x97\x9e\xea\x75\x08\x19\xcb\xd8\xea\x1c\x87\xde\xcf\xdc\x66\xde\x86\x75\x61\x15\xe8\x7e\x29\x58\xca\xde\xa3\x12\x47\x51\xe3\x1c\x03\x80\x91\xc8\x6d\xc7\x94\xc4\xa6\xf0\x2b\x33\x7f\xc5\x8f\xf0\xc5\x49\x75\x49\xd7\xf8\xd9\x91\x75\xa9\x1d\xfc\xb4\x6d\x53\x19\x83\x7c\xd4\xe6\xa7\xd9\x31\x7c\xa2\xd3\xf5\xdc\x51\xbe\xc4\x9c\x96\xd7\xc5\x6f\xd5\x9d\xc7\xff\xe4\x5f\x57\x69\x22\x6f\xe2\x1f\x02\x80\x7e\x97\x5f\x87\x4e\x8c\x92\xca\x03\x10\x6d\xb1\x94\xe2\xd2\x44\x6c\x02\xb7\xe8\x62\xc4\x9e\xe4\xe3\x85\xbf\xb7\x39\xa4\xab\x15\x1a\x6f\xf6\xc8\x3c\x23\x4b\x73\x42\x20\x2b\xa5\x55\xe6\xe9\x98\x36\x49\xc7\x6a\x1b\xfc\x5a\x71\xb3\xea\x22\x52\x8b\x28\x0d\x00\x3a\x59\xb8\x1e\xf5\x23\xf2\x60\x85\x17\x22\x2c\xa6\xb8\xdc\x2e\x71\x49\xfc\xee\xd2\x7f\x11\x21\x49\x2f\x4a\xfa\x02\x26\xd2\xb6\xc9\xcf\x6e\xd6\xce\x5c\x54\x5c\xed\x14\x93\x33\x5f\x94\x6e\x8e\xc6\x6c\x2e\x54\x5f\x1d\x85\xbb\x2f\xa5\xa8\x6e\x20\xe1\xc5\x35\x00\xd0\x83\x85\x4f\x51\xfb\x23\xc6\x6b\xc8\x08\x95\xe8\x87\xd5\x06\x09\x0f\xe2\xde\x57\x1e\x8b\x30\x4b\x32\xa8\xf0\x0a\xf8\x9a\x5a\x57\xd6\xb9\x59\x07\x91\x55\x1a\xe7\x84\xce\xc1\xca\xef\x99\xef\x42\xdf\x29\x56\x5d\xdd\x88\xcb\x91\xcd\xa8\x16\x93\xd6\x4a\xfe\x3b\x41\x5d\x14\x92\xf7\x8c\x60\x1f\x71\x37\x0b\x4b\xf8\x1d\x7d\x2d\x09\x59\xd0\x1b\x77\x31\xd2\x8e\xd8\x9c\x38\xb7\x2d\x96\x74\x32\x95\xe5\xf9\x90\xdc\x8b\x70\x74\x0c\xa3\xba\xe4\x38\x99\x2a\xd3\x20\x9a\xab\x5d\xcf\x5c\x8a\x5b\xb3\xb8\x85\x1d\x48\x7c\x00\x00\x4f\x91\x96\x9e\xa7\x8c\xab\x8a\x96\x65\xb6\xe3\x49\x71\xdb\x13\x1f\x12\x84\x89\xcb\x23\x6a\x0b\xd8\x29\x6b\x03\xda\x89\xfb\xd3\x51\x9e\xfe\xa4\xd1\xcc\x2f\x0e\x7d\x14\x32\xf2\x90\x49\x07\x2d\x0b\x73\x42\x9b\xca\x28\xc5\xcd\x2f\xbe\xc8\x1a\x20\xa5\x02\xc0\xed\xa4\x35\x62\xdc\xf2\x47\xe3\x70\x08\x88\x9d\x4c\x54\x48\xb4\xc4\x5b\x26\xd7\x85\x0f\x13\xfc\xd2\x08\x01\x06\x05\x25\x08\xb1\x47\x3b\x69\x51\x76\xa7\x03\x86\x7c\x02\x15\x64\x42\xa4\x5e\xce\x5f\xa6\x1d\xc7\x50\x22\x68\x2d\x3e\xce\x92\x92\x4d\x00\xe0\x52\xe9\xfa\x28\x3f\xf4\xa9\x14\x76\x86\x3b\x66\x3c\xed\x68\xbc\x2c\x1f\x95\xf1\x22\x4c\x82\x7d\x91\x15\xb6\xf5\x33\x1e\x9d\x33\xbb\xa9\xb9\xc0\x1c\xf5\xd8\xbe\x94\xb4\x3c\xef\xad\xf1\x4f\x4a\x1a\xde\x40\xdb\x8a\xf6\x8d\x58\xb3\xf8\x2a\xf3\x00\x55\x19\x00\xce\x0d\x06\x31\x57\x1f\x99\x9b\xf9\x3b\x5d\x25\x77\x38\xfb\x6c\x1c\x06\x7d\x00\xc9\x0f\xa5\xe7\x25\xa0\xca\xfc\xbe\x61\xdd\x31\x0f\xdc\xdf\xe2\x3d\xb0\x46\x76\xdf\x0a\x30\xf8\x63\xc6\x85\xa4\x49\x22\x46\x5b\x8d\xda\x4e\x89\x58\x3c\xc8\x38\x4d\x37\x07\x80\x3d\xc3\x5c\xc8\x89\xc9\x4a\x47\xd7\xa6\x9e\xcc\xd1\xc6\xfc\x8d\x4d\x41\xce\xe6\xa3\x42\x18\xa8\x49\x9c\xd2\x96\xe9\x3c\x43\xfc\x03\x77\x6d\x6c\x46\xc1\x6e\xbb\x50\xfc\x53\x52\xad\xb1\x0b\x71\x07\xe5\x91\xd6\x3f\xca\x6e\xfa\xea\x25\x0e\xf4\xdb\xcc\x20\x00\xd8\xae\x6c\x59\xd6\xe7\x74\x7f\xd2\xe7\x14\x3b\x84\x1f\xb9\x31\xfa\x43\x56\x01\x25\x65\xbb\x7d\xce\x2d\xea\x16\xdf\x6f\x28\x1f\x5a\xc0\x46\x0f\xcc\x47\x7a\xac\xed\x59\x6c\x0b\x83\x67\x34\x4d\xb8\xcf\xfc\xa0\x6d\x40\x36\x62\x3b\x2f\x29\xa7\xed\xe4\x24\x00\xc0\x8a\xe0\xee\x40\x0c\x26\xb7\x72\x77\x25\xed\x4a\x03\xdc\x86\xa8\x43\x19\x5c\x6e\x69\xb0\x51\x96\x2e\xf7\x8c\xef\xe2\x9c\x8f\xdc\xfe\x0d\x72\xd4\x0b\x9e\x89\xed\xc6\xbc\x69\x5e\xbe\x51\x17\x3e\x85\xf7\x4e\xdb\x8f\xf8\x97\x6f\xbe\xe4\x07\xf5\x26\xdf\x0e\x00\xe6\x79\x7e\x5a\xc6\x91\xc4\xdc\xc2\x9e\x44\x6c\xf2\x8d\x42\xf3\xc8\x8a\xb4\x28\x19\x3a\xc8\x17\xb1\x52\xfa\xd8\x27\x3d\x5b\x51\xba\x71\xc3\xb2\xdc\x0d\x92\xb3\x36\xdf\x31\x7b\x24\x96\x46\x67\x71\xc1\xe2\xfd\xda\x39\xc4\x0d\xa2\x3e\x65\x17\xaa\xb3\xf0\x2e\x00\xcc\x04\xc1\xe7\x0c\xfb\x84\xf8\x52\x56\xe2\xa2\xa4\x47\x25\xd2\x48\x87\x54\x9a\x9c\x1d\x38\x9b\xe1\x5b\x5c\xe6\xe3\x94\xe5\x5d\xb4\xdb\x6d\x18\x59\x54\x78\xd5\xe6\x2d\x66\xa9\xac\xdb\xa8\x03\xfb\x42\xfa\x42\xbb\xb0\xe0\xbd\xa4\x52\x39\x9b\x32\x2c\x1a\x03\x80\x69\x25\x2c\x4a\x7f\x17\xcf\xa8\xcc\x4b\xb8\x96\xa4\x50\xe1\x1d\x31\x99\x72\xb5\x6c\x36\xb0\x37\xbd\xb8\xf4\x81\x8f\x55\x66\x59\x89\xdc\x6d\x22\x67\x40\x9e\x65\x33\x8c\x66\x15\x1b\x1b\x7d\xc5\xa6\x14\xb6\x6b\xdf\x2a\xe0\xc8\x96\x28\x1f\xa0\xec\x15\xff\x01\x80\xf1\x55\xb4\x34\xe5\x1e\x03\x13\x59\x1a\x1b\xc9\xb8\x14\x93\x13\xba\x89\xe9\x10\x1f\xbc\xf5\x23\x53\x94\xc4\xf3\x98\x64\x8e\xa7\x4e\x3a\xd1\x59\x95\x88\xc3\x96\x16\xec\xf0\x9c\x83\xfa\xf9\x9c\x48\xf4\x82\xc6\x05\xae\x00\xb7\x5f\x21\x8d\x37\x4c\xf2\x04\x40\x70\x8d\xf6\x3a\x65\x35\x6d\x32\x46\x3b\xe6\x32\x3d\x29\xee\x72\xc8\x25\xfa\x40\x22\x76\x6b\x36\x23\x35\x85\xec\x21\x64\x0c\xa7\x5f\x74\x5a\xc5\x3c\x9d\xe5\x68\xf1\x8a\x55\x85\x1c\xd7\x77\x67\xb7\xe5\xa9\x69\x1c\xe3\x2a\xe3\x33\x15\xb2\x79\x0d\xa4\x73\x00\x08\xc4\xf4\xc5\xc9\xe9\x54\x6e\xdc\xbd\x98\xd5\xd4\xa9\xc4\xcd\x21\xf6\xb4\x5d\xc9\xd7\xfc\xfa\xe9\xb6\x69\x0d\x1e\x8b\xe9\x5f\x11\xcd\x8e\xa7\x18\x77\xb3\xc7\x2c\xc4\xcc\x07\x28\xb6\xbe\x06\x5b\x3d\x3f\x4a\x63\x17\x47\x40\x40\x28\x10\x78\x8e\xe4\x1c\x00\x04\x6e\x74\x6c\xd2\x1a\x92\x47\x4a\x78\xd4\x6b\xb2\x62\x1a\x39\x78\x8e\x3c\x92\x71\x68\xcb\x23\x4a\x77\x96\xd9\x26\x75\xea\xd3\x9c\x77\x0e\x1f\x69\x23\xa8\x6b\xe6\x9f\x19\x4e\x79\x7d\x7a\x67\x98\xe7\xf0\x2e\x1a\xc5\xec\x1c\xe2\x45\x85\x06\x6e\x18\xd5\x02\x00\x3e\x97\x71\x38\x51\x81\x10\x90\x69\x19\x79\xaf\x60\x53\xf6\xa2\xe0\x65\xc4\x98\x9c\x01\xdf\x61\x12\x15\xa5\xe2\xee\x47\xbe\x84\x49\x72\xd8\x4c\x5d\x95\xdf\x65\x8e\xa1\xd5\xe2\x09\x7a\x0c\x46\x04\x31\x4e\xa3\x88\xe5\x49\x89\x54\xe8\xe5\x24\xd3\xd7\x03\xc0\x6b\x65\x19\xc6\xef\xc6\xfa\xa3\xd2\x23\x4e\xe3\xe8\xe8\x8f\x41\x76\xf8\xc7\x79\x48\xdf\xb5\x05\x0e\xd8\x75\x1b\x25\xc4\x56\x3c\xb0\x3f\x42\xde\x4e\x98\x33\xfb\x47\x55\x22\x19\xe8\x85\xd0\x26\x28\xc5\x1a\xb5\x4c\x3d\xda\xd8\x22\x33\x36\x8e\xe9\x0a\x00\x77\x94\xbd\x3b\xf6\x3b\x5a\x5a\x70\x34\xdc\x0a\xf3\x9b\x78\x6a\xdb\xb7\x7c\x12\xe9\x94\x8f\x0a\xce\x90\x7c\x6b\xc3\x11\xfc\x2f\xca\x94\xdd\x6c\xc1\x1b\x9a\x97\x59\x09\xe9\x37\xfd\x80\xde\x7a\xaa\x35\xd3\x57\xe3\x36\xbd\x91\xd5\xb9\xa8\x90\xe5\xcd\x51\x05\x80\x33\xcf\x15\xc7\x24\x23\xb1\xac\xd6\xd0\x1f\xb9\x7f\x58\x43\x01\x6f\xd0\xfb\xd8\x16\xde\x96\x79\x85\xec\x62\xb7\x31\x6c\x03\x1b\xda\x11\xf1\x2f\x38\x32\x33\x37\xa2\x2b\x77\xb5\xde\x4a\x72\x07\xf7\x85\xc6\x24\x8d\xc5\xcb\x5e\xf4\x83\x99\xc6\x3b\x08\x00\x27\x9e\xbf\x2e\x7a\x63\xd6\x98\x64\x65\x48\x6f\xce\x7e\xf1\x25\xff\xaf\xb9\x7c\x71\xa2\x57\x16\x5a\x2e\x5e\xee\x96\x95\x77\x55\xf4\xd8\x6e\x29\xce\x55\xb4\xcf\x74\x92\xd0\x23\xc2\xe8\x29\x90\x8e\x89\x9c\x34\x0d\xa9\xa7\x84\x77\x15\x3d\x18\xb7\x85\x0a\x00\xb0\x07\x05\x85\x51\xaf\x33\xdf\x16\x25\x87\x08\xb2\x8f\x15\xde\xf1\x97\x23\x8f\x14\x1a\x7b\x19\xa3\x2e\xca\xca\xdc\x36\x61\x26\xa4\x33\xb6\xc3\x58\xb1\x94\x66\xfa\x8b\xe0\x29\xf9\xaa\xa7\x46\xb2\x95\x6c\xd6\xf4\xa2\x46\x8a\x93\x14\x91\x0c\x96\x48\x0b\x00\xf6\x05\xa1\x7e\xd4\x4e\xc4\x58\xc9\xbf\x90\x80\xac\xd7\x25\x9e\xfe\xd1\x39\xbf\xe5\x39\x5e\x20\xf7\x6f\x71\x8d\x9b\x03\xc6\xab\xe8\x8a\xed\x44\xfe\xdb\xc2\x09\xd3\x39\xfc\x91\xc2\x95\x7a\x76\xc4\x66\x99\xb2\x26\x81\xf2\x53\xd2\xa1\xd8\xc4\x30\x11\x2b\x03\xc0\x2e\x10\xd6\x84\xbc\x13\x9d\x89\x72\x0b\x08\x17\x21\x63\x0d\xbc\xed\x45\x9b\x13\x56\x6e\x78\x2f\xfc\x9d\x1c\xe8\xa0\x25\x3c\x99\x76\xc7\xa2\x57\x58\x97\xc9\x32\xfc\x29\xac\x44\x72\xb5\xe6\x84\x07\x30\x83\x2a\xae\xc2\xd7\xf8\x0a\x00\x44\xe1\x64\x5d\x00\x44\x90\x7e\x23\x24\x4e\xe8\x1b\x43\xf2\x7f\x2f\x54\x8f\x77\xf6\x7a\x2e\xf8\x97\x04\x36\x94\x08\x1e\xa5\x2e\xb3\xef\x12\x34\x67\xa4\x58\xec\x17\x9c\xcf\xfa\x60\x78\x53\xf0\x2c\xf7\xa4\xd6\x6f\xe1\xa2\xbc\xd7\x2a\x9b\x85\x29\x04\x07\x00\x84\x63\x64\x3c\x00\xa2\x6b\xf4\xae\xed\x9d\xfc\x87\x71\x7d\xfe\x08\x7e\x6b\x22\xdd\x2b\x9f\x7f\x39\x65\xdd\x06\x37\xfe\x81\x74\x45\x7b\x36\xff\x70\xa6\xa5\x05\x82\xdf\x95\xc3\x31\xac\x15\x2c\x46\x6b\x69\xbd\x15\x24\x62\x17\xa9\xf8\x0b\x9e\x17\xac\x00\x40\x58\x48\x51\x06\x40\x84\x63\xe8\x05\x37\x73\x9e\xa5\x2c\xdd\xca\xe4\xfc\x48\x8b\xd9\x7c\x8e\x6b\x98\x71\xdc\x8d\xcf\x0d\xcf\xf2\xb2\x7b\xce\xad\x41\xaa\x9a\xf7\x71\x27\xd0\xca\x86\xee\xbc\xdc\x7c\x1f\xad\xcb\xbc\x49\xfc\x79\x95\x64\xfe\x19\x92\x3b\x00\x82\x1d\xd4\xa3\x00\x08\xcf\x31\x5d\x83\x38\x2c\x6b\x84\x9f\x9f\x8c\x15\x95\x85\xdc\x0c\x58\xfb\x72\x64\xae\xef\xd9\xcb\x72\x6f\xdb\xf9\xb3\xcb\x31\x4e\xe6\x14\x8e\x59\xfe\x03\x83\x59\xce\x13\x7c\xa5\xd6\x49\x6e\x15\x71\x9f\x0a\x8b\x27\xa6\x1c\x07\x80\xdf\x48\x2f\x02\x40\xf0\x9d\xb5\x33\xb0\x96\x1e\x9e\x6b\xb2\xe5\x3a\xfd\x0c\xea\xb5\x67\x32\xc3\x15\x53\xe7\x1a\xc8\x78\x93\x4f\xb5\xbd\xc9\xac\xc3\xf1\xcc\x75\x58\x19\x84\xe3\x06\x77\xd8\xde\xc4\x59\xad\xa3\x1c\x37\x4a\x83\xca\x51\x6e\xd2\xff\xcc\xb5\x69\x65\x52\x01\x10\xac\xe3\x28\x04\xf4\x92\xdb\xf0\xf5\xbe\x39\x14\x7f\x42\xbf\x47\x32\x65\x81\x68\xe7\x42\xa7\x7e\x24\x31\x6d\x2d\x68\xef\xc8\xdf\xcc\x9a\xe8\x93\x54\x9c\x41\x31\xd3\x9c\xbe\x5c\xeb\x04\x2b\x8f\x31\xa0\x32\xc2\x7e\xcb\x3a\x04\x00\x97\xc4\xd1\x04\x80\xaf\xc7\xbd\x1e\xb0\xba\x00\x47\xbf\xe3\xb3\x9b\xe8\xc7\x48\xd8\x54\x46\xf2\x61\xf4\x3b\xbf\x24\x27\x30\x2b\x6c\xce\x50\x4a\x58\x11\x66\xc9\xd4\x3f\x6c\x4b\x83\x4c\x7a\x1e\x67\x89\xd6\x05\xc6\x24\x57\x55\xd5\x8b\x75\x82\x3b\x00\x00\x47\xca\x43\x01\xc0\xcb\xe1\x5b\xf9\x2b\xe1\x26\x04\x1e\xde\x2d\xf8\x59\x41\xac\xfb\x9d\x02\x0b\x41\x96\xb3\x27\x31\x59\x40\xb6\x09\x22\x9d\x12\x94\x99\xad\xa2\x04\x0a\xda\x0d\x36\xd3\x16\x09\xde\x68\x5d\xa5\xbf\x16\xcc\xab\x52\x98\x2f\x05\xc3\x60\x3d\xbb\x57\x50\x0f\x00\xf7\xb7\x00\xb9\xb5\x03\xb7\x52\xe2\xec\x8d\xc4\xaf\x91\x2c\x73\x67\x13\x42\xc4\xaf\x9d\x97\x16\x88\xc5\x47\x6d\xac\x89\x1f\xc4\x34\x33\x65\x72\xb9\x38\xc1\xc0\x83\x9a\x25\x36\xd4\x7a\x4c\x4f\x10\xbd\x52\x6d\x60\x52\x44\xa9\x20\x99\x5d\x26\xac\x00\x80\xdb\x26\x18\xdd\x2a\xc7\xa6\x14\xd6\x7a\xbb\xe1\x52\x0b\xbd\xdd\xb7\xe3\xe5\xb2\x57\x4e\x43\x84\x9b\xb2\x02\x1b\x0b\xe2\x5a\x99\x92\x99\x06\xe9\x83\xf4\x88\x41\x28\xa5\x53\x6a\xa4\x35\x44\x7b\x2e\xe1\xab\xde\x65\xaa\x88\x0f\x83\x6a\xb6\x9b\x08\x05\x00\x97\x20\xc4\x79\xc6\x95\xc2\xa8\x9f\x1b\xd6\x97\x82\xd8\x5f\x8e\xb8\x12\xc3\x04\x68\x6d\x2d\xb7\x48\xf1\x37\x95\x17\x3b\xa7\xbf\x30\x68\x2c\x4a\xc8\xda\xbf\xca\xb4\x90\x97\x7b\x5e\xdd\x58\x26\xcb\xf7\x56\x0a\x96\x3e\x22\x74\x03\x20\x0d\xa0\xb8\x02\x20\x79\xce\xe8\xf1\x54\x28\xd9\x13\x33\xe7\xf6\x55\x7e\x29\xfe\x95\xa3\x43\xf1\x58\xd2\x9d\xf5\x0b\xc5\xda\xa9\x7d\xa6\xd8\x22\x4f\x84\xa7\x41\x79\x21\x37\xfb\xcd\x2a\x63\xd9\x4d\x54\x87\xba\xb9\xf4\x17\x56\x51\x09\x21\x0d\x2e\x08\x05\x40\xf2\x85\x92\x07\x80\x44\xc6\xe8\xf0\x38\x28\x77\x8d\xf7\x74\x2b\x2b\xc6\x25\x4e\x38\x0c\x14\xdd\x48\xb9\xb6\xfe\x71\xe1\x54\xfa\x49\xd3\xc0\x42\x8f\xcc\xf7\x06\x74\xd9\x0e\x64\xe4\xaa\xd5\xd2\x19\xcc\x22\x75\x1b\xe9\x16\x9c\xb2\x12\x45\x72\x85\xb8\x0c\x00\x09\x81\xf2\x1d\x00\x89\x23\x63\xc2\x43\xad\xb0\x32\xf9\x8e\xdb\x0a\xd9\xeb\xb4\x08\x87\x12\x99\x4f\xc6\x97\xf5\x78\xe9\xe5\xac\x72\x93\x49\xe9\x26\x24\xcd\xc0\x5f\xd2\x85\xde\xb9\x6a\xb1\x04\x91\x3f\xa6\xee\x24\xfe\x4e\xa0\x28\x35\x8a\x4b\x49\x10\x00\x31\x93\x96\x0c\x80\x98\xc8\x1c\x76\x1f\x90\xf4\x66\xbc\x70\x75\x91\x44\x67\xad\xb2\x1f\x17\x7f\xcc\xc9\xb4\x1a\x11\xcb\x73\xdb\x4d\x6a\xc5\x5e\x98\x40\x83\xc5\x62\x80\x55\xd3\xfe\x23\xba\x87\x9f\x57\xf7\x15\x71\x48\xe6\x4a\xaf\x44\xb1\x54\x1f\x00\x44\x34\x86\x21\x00\xa2\x46\xb6\x9f\xbb\xaa\x28\x1e\xa9\xe3\x22\x14\x7e\x41\xa9\xd9\xa3\x84\x95\x98\xa5\x56\x3c\x21\x26\x5f\xc5\xc4\x5b\x18\x86\xdb\xa8\xff\x5c\xe8\x4d\xa8\xd7\xfe\x20\xdc\x48\x5a\xad\x1e\x2f\x34\xa0\xbc\x5f\xac\x2b\x34\xa2\xcb\x01\x10\xb2\x98\xbf\x00\x10\x3e\xe5\xd4\x6f\x74\xe4\x55\x63\x5f\x3a\x5f\xe3\x91\xf0\x58\xbb\xfb\x3c\x5c\x81\x82\xd5\x12\x1e\x87\x28\x32\x1e\xe6\xed\x20\x9b\xeb\xb7\xf2\x9e\x53\x86\xb5\x7f\xf2\x57\xd3\xee\xa9\xd7\xf1\x03\x18\xcf\x16\xd7\xf2\xcb\x59\x57\x01\x10\x58\x70\xa2\x01\x10\x74\xf0\x1c\x37\xe4\xb3\x49\xd4\x65\xce\xe6\x6c\x19\x4d\xd5\x2e\x86\x7d\x99\xae\x68\xd9\xca\x9e\xa6\x4f\x1b\x5f\xe5\x6c\x63\x2a\xe8\xef\xe5\x9c\x67\x6d\xd4\xfe\xca\xf5\x64\xe7\xaa\x9f\xe5\xde\xe4\x1c\x58\xfc\x8e\x97\xcd\xbd\x04\x00\xdf\x8d\x47\x05\x80\x3f\xcb\x47\xbb\x35\x31\x6d\x39\xaf\x9d\x0a\x99\x01\xdc\x64\xdb\x1e\x66\x05\xf7\x99\x65\x3c\xf3\x3b\xcf\xd7\xf8\x38\x2b\x8f\x77\x55\xbf\x90\xf5\x97\x1f\xa2\x3d\xce\xbe\xc8\x7f\xa2\xfe\x93\x53\x21\xb0\x5b\xb2\x96\xcb\x13\x70\x00\xe0\xd1\x04\x48\x00\xf8\x74\x01\xd3\xcd\x89\xe1\x23\xc8\x71\xda\xcc\x48\x13\xb4\xd9\x1e\x63\x1c\x11\x4c\x5a\x7a\x30\x17\x09\x6d\x8d\xab\x99\xc5\x42\xaa\x7e\x39\x6b\x93\xf0\xf8\xaa\x95\x6c\x6d\x61\x97\xc6\x3a\xf6\x3f\x61\xef\x12\x29\x77\x89\xf0\x3c\x00\x3c\x63\xa1\x17\x00\xfc\x6d\x82\x4f\xae\xb7\xe9\x0c\x31\xca\x71\x8a\x5e\x21\xae\xb3\x95\xd1\x7b\xc4\x2d\x96\x76\x0c\x67\xf1\x15\x63\x0e\xe3\x94\xb8\x53\xff\x08\x53\x28\x6e\x5f\xb5\x99\x45\x12\xd7\x68\xe0\xd8\x58\x71\xe8\x92\x09\x8e\x54\xf4\x12\x00\xee\x75\x91\x02\x00\x7c\x45\x61\x90\xab\x46\xd5\xcb\x68\x07\x07\x9b\xca\xd2\xb8\x0d\xd6\xba\x15\x9b\x13\xf3\xcd\x42\xcb\xe6\x53\x2e\xae\x75\x2b\x3d\x9f\x11\xa9\x3b\x50\xc2\xcb\xb6\x58\x61\x20\xdf\x82\x0a\x50\x99\x2d\x7a\x9c\xff\x6a\x91\x7e\xe1\xfe\x82\x74\x00\x64\xbb\x29\xad\x00\x48\xf7\x32\x03\x5c\x0e\x54\xca\x62\xed\xed\x07\x2b\x42\x13\xb4\xd7\xff\x28\xd7\x4b\x36\x36\x73\x2e\xfd\x93\xe6\xb3\xd6\xb2\xe4\x3a\xe2\xa8\xee\x2f\xf9\x91\x9c\x88\x15\x16\xc5\x22\xf4\x66\x55\xd5\x22\x27\xac\x7c\x91\x47\xe1\xea\x82\x47\x00\xc8\x5c\x29\xbd\x00\x48\x43\x99\x6b\x5d\xac\x2a\x9c\xe2\xd3\xed\x0f\x97\x2b\x27\x59\xad\x6f\x29\x1d\x4e\x5d\x66\xa6\x5b\xf2\x32\xfd\xdf\x5a\x7d\xf9\xad\xac\x0d\xba\xdf\x8a\x6f\x21\x2f\xac\x70\x29\x6a\xc7\x50\x55\xf5\x0a\x8b\x71\xfc\x45\x51\x32\x09\x91\x07\x80\xf4\x2a\x35\x08\x00\xc9\x18\x33\xd4\xf9\x76\x29\x35\xb9\xcb\x3e\xbe\x04\x9f\x96\xb6\x9e\x29\x67\x22\x96\x98\xbe\x2d\xde\x97\x75\xcd\x70\xb4\xa8\x13\x79\x46\xb7\xb7\x70\x0a\xfd\x6d\x85\x4f\xa1\x29\x36\x4c\xd5\x51\xe6\x4c\xe8\x59\x24\x90\x46\x90\x53\x01\x90\xdc\xa2\x9d\x04\x40\xe2\xc0\xf2\x72\x7a\x5a\x7c\x3f\xa3\xc5\xae\xa2\x68\x28\x73\xc1\x6a\xa0\xc8\x3c\x27\xcd\x34\xaf\x90\x9e\xdb\x69\x78\x50\xf6\x10\x93\xa1\x7b\x5c\x66\x83\xdd\xb8\xc2\x4d\x5a\x4c\x70\x57\x0d\x94\xdc\x22\x61\x16\x5d\x90\x68\x50\xe5\x00\x88\x2f\x33\x72\x00\x10\xa7\xb2\xe5\x4e\x1a\x85\xde\x39\x27\x6d\xc7\x65\xa2\xdc\x0e\xab\x1c\xe9\x07\xf4\x5b\xd3\xc5\xd2\x94\xbc\x5f\x86\xe9\x92\x77\x38\x0b\x5d\x99\x04\x43\xd8\xb7\xc2\x59\x3c\x43\x72\x51\xcd\x13\xa7\x50\x97\x2a\x02\xd1\x2b\xfa\x6d\x00\x44\xe7\x58\x16\x00\x88\x64\x9c\x5e\x47\xa2\xf8\x28\xd6\xda\x16\x2f\x36\xc7\xbd\xb3\x9c\x11\xdd\x24\x54\x9a\x5c\x16\x11\x88\xeb\x0d\x5d\x44\x66\xa4\xaf\xba\xc5\xc2\x19\xca\xc3\x15\xa9\xc2\x1e\xda\x79\xd5\x4e\x21\x97\xf1\x52\xb1\x5a\xe8\xc1\x7a\x05\x80\x30\x9e\x43\x07\x40\x48\xe0\xc5\x3b\x0c\x09\x68\x14\x65\x5b\x35\x81\x2b\xd5\xd4\xf2\x9c\x40\x93\xb6\xd5\xa4\x92\xff\x93\x9e\x60\x68\xc1\x7f\xc2\x10\xe9\x36\xf0\x3f\x30\x9f\xad\x90\xf3\xe7\xd9\x5a\x6a\x2b\xf9\x23\x1c\xbc\x92\x1a\x7f\x96\x7b\x08\x00\x41\x30\x8f\x09\x80\xe0\x24\x5f\xe4\x90\xca\x1d\x67\xe7\xdb\xd4\x72\x7b\x38\xba\x96\xc9\xdc\xd7\x9c\xdb\x26\x31\xdc\x47\xdc\x64\x43\x03\xee\x67\xde\x32\xdd\x9d\x3c\x2d\x5e\xf3\x8a\x66\x1e\x86\xef\xa7\x96\xc2\x3b\xcd\x7f\xae\x44\xe3\xab\x0a\x36\x01\xc0\xdf\x29\x08\x00\x40\xe0\x2c\x40\x3b\x78\x70\xe6\x79\x8f\x6d\xd8\x9c\x3e\x7e\x90\xa5\x27\xe7\x2b\xbf\xd3\x64\x13\xe7\xab\xc0\xcc\x70\x25\x67\x41\xd0\xa0\x7b\x94\x1b\x28\x18\x5d\xf1\x80\xdb\x2a\xf4\x52\xab\xe1\xad\x11\xe6\x29\xdd\xe4\xd5\x0b\x89\x00\xf0\x03\x84\xfa\x00\xf0\xa7\x05\x9f\x1d\x0c\x39\x96\xc2\x16\x9b\x74\xce\x62\x91\xb2\xa5\x09\x47\x4d\x94\x64\xb2\x89\xb3\x44\xb4\xc3\x50\x91\x63\x20\x7a\xa6\x7b\x9d\x23\x13\x8d\xac\x98\xe2\x2a\x8b\xc6\xd5\x3e\x72\x85\xa2\x97\x8b\xed\x78\xab\x44\xff\xf3\x0f\x44\xd8\x0f\x00\xff\xa2\x30\xdc\xee\x57\xdd\xaf\xe8\xf4\xf5\x9b\x6b\x31\x71\x79\x66\xcd\xd5\x37\x12\xdb\xd7\xf9\x55\x05\xa4\x2e\x5b\xb3\xab\xe2\x6a\xc6\x29\xad\x67\xe5\x9b\xb3\x4b\xd5\xf7\x94\x9e\x44\x9d\x55\xb6\x97\x3f\xc2\x06\x00\x9f\x62\xf7\x82\x4e\x00\x0a\xef\xff\x4f\xf2\x40\x28\x53\x68\x97\x5e\xdb\x12\x1b\xbb\x7e\x71\x8d\x43\x42\x80\x59\x61\xd5\xe1\x64\xd4\x3a\x97\x4a\xaf\xb4\xe2\x35\x8d\xe5\x0f\x11\x93\x5a\x5f\xcb\xb2\x73\x8e\xa9\x5f\x2c\x19\x44\xef\x51\x0e\x93\x3b\x60\x7f\x81\xe4\xa2\x93\x44\x53\x00\x0a\x11\x54\x3d\x00\xa4\x0b\xcc\x38\xdb\x7b\x35\xf9\xf1\x2c\xab\xce\xaa\xe1\xa4\x18\xb3\xe4\x4a\x41\x6a\xe8\x3a\x93\x8a\xf5\x19\xde\x6b\x0e\x96\x3d\xce\x62\x69\x0d\x95\x0a\x72\x17\xab\x3f\x2a\x31\xc3\x3c\x52\x46\x15\x17\xe2\x5e\x02\x62\x91\x16\xf1\x31\x00\xb2\x8f\x54\xc9\xff\x24\x8a\xb0\x6d\x6b\x2b\xeb\x92\x5f\x59\x1d\xa8\x08\x4b\x23\x99\x05\x95\x6b\x21\x2c\xd6\x69\x96\x4e\x65\x7d\x5b\xb3\xab\xe4\x19\xf2\x93\xd6\xbc\xbc\x0d\x63\xa2\x3e\x5e\x2c\xc7\xd6\x29\xd7\x14\x59\x16\x18\x83\xfd\xb2\x97\xe4\x7d\x00\x48\xfb\x68\x1f\x00\x90\x74\xb3\xb2\x6c\x1e\x96\x8d\x65\xec\xb5\x9c\x2a\x7d\x91\x39\x66\xda\x5e\x72\x3f\x27\x6b\xed\x51\xf9\x8b\xdc\x67\x6b\xe2\x8b\x5f\x63\x28\x5a\x6f\x8a\x7e\x60\xd3\xd4\x87\x0a\x87\x08\x18\xe5\x66\xd9\x05\x52\x23\x78\x23\x2d\xa7\xde\x04\x40\xf2\x98\x51\x01\x80\x78\x92\x7d\xc2\xc6\xa4\x24\x35\x27\xd3\x32\x53\x9e\x97\x2b\x33\xf5\x28\x2e\x46\x5f\x5f\xbb\xbd\xe8\x4a\xde\xeb\x35\xc6\x85\x03\xb8\x75\x5a\xb7\x0b\x4d\x09\x4d\xea\x63\xb2\x54\x52\x90\xf2\x53\x69\x38\x75\xbd\xc2\x5a\x49\x38\x7d\x08\x00\xf1\x2d\x56\x02\x00\x62\x53\xce\x5f\xeb\x4b\x85\x7f\xf2\x9b\x2d\x97\x15\x1a\xe3\x48\x26\xd3\x32\x02\xc1\x77\xad\xb1\xf4\x49\xc1\xcf\x35\x2b\xa5\xf6\xa4\x0b\x5a\x1f\x24\x2d\x94\x56\x0d\x57\x89\x13\xad\x79\xe9\x26\x31\x8a\xf1\x5e\xe1\x8a\xe8\x04\x6b\x10\x00\x51\x06\xa7\x16\x00\x91\x3a\x2f\xd7\x3a\x4f\xd2\x44\xf6\xb1\x78\x29\x31\xa7\x50\x4c\x7a\xc5\x97\xa9\xad\x6b\x75\xc5\x5b\x69\xef\xd7\x18\x8b\x9e\x33\x4c\xb4\xd5\x45\xb5\x4c\xa6\x86\x44\x94\xce\xba\xb7\xf4\xb4\xb0\x87\xb3\x65\x51\xac\x30\x89\x5b\x07\x80\x30\x86\xc7\x00\x40\x18\xc1\x27\x58\xab\x08\xfb\x59\x41\x16\x25\xc2\x46\xb6\x81\xc9\x41\x21\x85\x3d\x64\x38\x2b\xd4\xe5\x34\xad\x59\x2e\xe8\xe2\x62\xb5\x8d\x04\x57\x79\x16\x1a\xed\x82\x76\x5e\xb7\x8a\x8e\x40\xca\xe7\x2f\xfa\x25\x48\x17\x28\x02\x20\xd8\x25\x30\x01\x40\xf0\x56\x10\x65\xed\x2b\xf8\xcc\x95\x5b\x1c\x10\xec\xe1\xd9\x98\x54\x0a\xe8\xbc\xc7\x86\xa3\x02\x33\x7e\xc2\x9a\xe5\xfc\x7e\xfe\x57\x6d\x07\xfe\x80\x20\x51\xa3\x8f\xbf\x20\xb8\xac\x12\xcc\xff\x25\x54\x53\x74\xe0\xff\x16\x3a\x01\x20\xd8\x2a\x58\x00\x40\x70\x58\xd0\x65\x4d\x13\x00\x41\x98\x45\x1b\xff\xa2\xe0\xb1\x09\x9f\x5f\x2d\xdc\x6e\x38\xc8\xf7\x15\xb6\xac\x59\xc9\x57\x16\xad\xd0\x0e\xe4\xaf\x11\x45\x68\x2a\xf2\xbd\x44\x34\x15\x29\x3f\x54\xc4\x54\x64\xf1\x0b\x44\xe1\x00\xf0\x3f\x0b\x1f\x01\x20\x48\x17\xc6\x00\xa0\x00\x16\x01\x45\xa0\x04\x16\x83\x25\x40\x19\x2c\x05\x2a\x40\x15\xa8\x81\x65\x40\x1d\x68\x00\x4d\xb0\x1c\xac\x00\x2b\x81\x16\xd0\x06\xab\x80\x0e\xd0\x05\xab\xc1\x1a\xa0\x07\xf4\x81\x01\x30\x04\x6b\xc1\x3a\x60\x04\x8c\x81\x09\x30\x05\x66\xc0\x1c\x58\x00\x4b\x60\x05\xd6\x03\x6b\x60\x03\x6c\x81\x1d\xb0\x07\x0e\xc0\x11\x38\x01\x67\xe0\x02\x5c\x81\x1b\xd8\x00\x36\x02\x77\xb0\x09\x78\x00\x4f\xb0\x19\x78\x01\x6f\xe0\x03\x7c\xc1\x16\xe0\x07\xb6\x02\x7f\x10\x00\xb6\x81\x40\x10\x04\x82\xc1\x76\x10\x02\x42\x41\x18\x08\x07\x11\x20\x12\x44\x81\x68\x10\x03\x62\x41\x1c\x88\x07\x09\x20\x11\x24\x81\x64\x90\x02\x52\x41\x1a\x48\x07\x19\x00\x01\x32\x41\x16\xc8\x06\x39\x00\x09\x72\x01\x0a\xa0\x01\x06\xe4\x81\x7c\x80\x05\x38\x80\x07\x04\x50\x00\x88\x80\x04\xc8\x80\x02\xa8\x80\x06\xe8\x80\x01\x98\x80\x05\xd8\x80\x03\xb8\x80\x07\xf8\x40\x00\x84\x40\x04\xc4\x40\x02\xa4\x40\x06\x0a\x41\x11\x28\x06\x72\x50\x02\x4a\x41\x19\x28\x07\x15\xa0\x12\x54\x81\x6a\x50\x03\x6a\x41\x1d\xa8\x07\x0d\x60\x07\xd8\x09\x76\x81\xdd\x60\x0f\xd8\x0b\xf6\x81\xfd\xa0\x11\x1c\x00\x07\xc1\x21\x70\x18\x1c\x01\x47\xc1\x31\x70\x1c\x34\x81\x13\xe0\x24\x68\x06\xa7\x40\x0b\x38\x0d\xce\x80\x56\x70\x16\x9c\x03\x6d\xe0\x3c\xb8\x00\x2e\x82\x4b\xe0\x32\xb8\x02\xda\x41\x07\xb8\x0a\xae\x81\xeb\xe0\x06\xb8\x09\x6e\x81\xdb\xa0\x13\xdc\x01\x77\xc1\x3d\x70\x1f\x3c\x00\x0f\x41\x17\x78\x04\x1e\x83\x27\xe0\x29\xe8\x06\xcf\xc0\x73\xf0\x02\xf4\x80\x97\xe0\x15\xe8\x05\xaf\xc1\x1b\xf0\x16\xbc\x03\x7d\xe0\x3d\xf8\x00\x3e\x82\x4f\xe0\x33\xf8\x02\xbe\x82\x7e\xf0\x0d\x7c\x07\x3f\xc0\x00\xf8\x09\x7e\x81\xdf\x60\x10\xfc\x01\x43\x60\x18\x8c\x80\x51\x30\x06\xc6\xc1\x04\x98\x04\x53\x60\x1a\xcc\x80\x59\x30\x07\xe6\xc1\x02\xf8\x0b\xfe\x01\x08\x00\x50\x50\x58\xb4\x48\x51\x51\x49\x69\xf1\xe2\x25\x4b\x94\x95\x97\x2e\x55\x51\x51\x55\x55\x53\x5b\xb6\x4c\x5d\x5d\x43\x43\x53\x73\xf9\xf2\x15\x2b\x56\xae\xd4\xd2\xd2\xd6\x5e\xb5\x4a\x47\x47\x57\x77\xf5\xea\x35\x6b\xf4\xf4\xf4\xf5\x0d\x0c\x0c\x0d\xd7\xae\x5d\xb7\xce\xc8\xc8\xd8\xd8\xc4\xc4\xd4\xd4\xcc\xcc\xdc\xdc\xc2\xc2\xd2\xd2\xca\x6a\xfd\x7a\x6b\x6b\x1b\x1b\x5b\x5b\x3b\x3b\x7b\x7b\x07\x07\x47\x47\x27\x27\x67\x67\x17\x17\x57\x57\x37\xb7\x0d\x1b\x36\x6e\x74\x77\xdf\xb4\xc9\xc3\xc3\xd3\x73\xf3\x66\x2f\x2f\x6f\x6f\x1f\x1f\x5f\xdf\x2d\x5b\xfc\xfc\xb6\x6e\xf5\xf7\x0f\x08\xd8\xb6\x2d\x30\x30\x28\x28\x38\x78\xfb\xf6\x90\x90\xd0\xd0\xb0\xb0\xf0\xf0\x88\x88\xc8\xc8\xa8\xa8\xe8\xe8\x98\x98\xd8\xd8\xb8\xb8\xf8\xf8\x84\x84\xc4\xc4\xa4\xa4\xe4\xe4\x94\x94\xd4\xd4\xb4\xb4\xf4\xf4\x8c\x0c\x04\x22\x33\x33\x2b\x2b\x3b\x3b\x27\x07\x89\xcc\xcd\x45\xa1\xd0\x68\x0c\x26\x2f\x2f\x3f\x1f\x8b\xc5\xe1\xf0\x78\x02\xa1\xa0\x80\x48\x24\x91\xc8\x64\x0a\x85\x4a\xa5\xd1\xe8\x74\x06\x83\xc9\x64\xb1\xd8\x6c\x0e\x87\xcb\xe5\xf1\xf8\x7c\x81\x40\x28\x14\x89\xc4\x62\x89\x44\x2a\x95\xc9\x0a\x0b\x8b\x8a\x8a\x8b\xe5\xf2\x92\x92\xd2\xd2\xb2\xb2\xf2\xf2\x8a\x8a\xca\xca\xaa\xaa\xea\xea\x9a\x9a\xda\xda\xba\xba\xfa\xfa\x86\x86\x1d\x3b\x76\xee\xdc\xb5\x6b\xf7\xee\x3d\x7b\xf6\xee\xdd\xb7\x6f\xff\xfe\xc6\xc6\x03\x07\x0e\x1e\x3c\x74\xe8\xf0\xe1\x23\x47\x8e\x1e\x3d\x76\xec\xf8\xf1\xa6\xa6\x13\x27\x4e\x9e\x6c\x6e\x3e\x75\xaa\xa5\xe5\xf4\xe9\x33\x67\x5a\x5b\xcf\x9e\x3d\x77\xae\xad\xed\xfc\xf9\x0b\x17\x2e\x5e\xbc\x74\xe9\xf2\xe5\x2b\x57\xda\xdb\x3b\x3a\xae\x5e\xbd\x76\xed\xfa\xf5\x1b\x37\x6e\xde\xbc\x75\xeb\xf6\xed\xce\xce\x3b\x77\xee\xde\xbd\x77\xef\xfe\xfd\x07\x0f\x1e\x3e\xec\xea\x7a\xf4\xe8\xf1\xe3\x27\x4f\x9e\x3e\xed\xee\x7e\xf6\xec\xf9\xf3\x17\x2f\x7a\x7a\x5e\xbe\x7c\xf5\xaa\xb7\xf7\xf5\xeb\x37\x6f\xde\xbe\x7d\xf7\xae\xaf\xef\xfd\xfb\x0f\x1f\x3e\x7e\xfc\xf4\xe9\xf3\xe7\x2f\x5f\xbe\x7e\xed\xef\xff\xf6\xed\xfb\xf7\x1f\x3f\x06\x06\x7e\xfe\xfc\xf5\xeb\xf7\xef\xc1\xc1\x3f\x7f\x86\x86\x86\x87\x47\x46\x46\x47\xc7\xc6\xc6\xc7\x27\x26\x26\x27\xa7\xa6\xa6\xa7\x67\x66\x66\x67\xe7\xe6\xe6\xe7\x17\x16\xfe\xfe\xfd\xf7\x0f\xc2\xff\xed\xff\xff\xdf\xfb\x8f\xcb\xa5\x38\x03\x00\x80\xa2\x92\xf1\x7f\x62\xf0\xff\xae\xff\x8f\xbd\xc2\x22\x05\xf0\xbf\xaa\x21\x80\x42\x28\x82\x62\x28\x81\x52\x28\x83\x85\xb0\x08\x16\x43\x39\x2c\x81\xa5\xb0\x0c\x96\xc3\x0a\x58\x09\xab\x60\x35\xac\x81\xb5\xb0\x0e\xd6\xc3\x06\xb8\x03\xee\x84\xbb\xe0\x6e\xb8\x07\xee\x85\xfb\xe0\x7e\xd8\x08\x0f\xc0\x83\xf0\x10\x3c\x0c\x8f\xc0\xa3\xf0\x18\x3c\x0e\x9b\xe0\x09\x78\x12\x36\xc3\x53\xb0\x05\x9e\x86\x67\x60\x2b\x3c\x0b\xcf\xc1\x36\x78\x1e\x5e\x80\x17\xe1\x25\x78\x19\x5e\x81\xed\xb0\x03\x5e\x85\xd7\xe0\x75\x78\x03\xde\x84\xb7\xe0\x6d\xd8\x09\xef\xc0\xbb\xf0\x1e\xbc\x0f\x1f\xc0\x87\xb0\x0b\x3e\x82\x8f\xe1\x13\xf8\x14\x76\xc3\x67\xf0\x39\x7c\x01\x7b\xe0\x4b\xf8\x0a\xf6\xc2\xd7\xf0\x0d\x7c\x0b\xdf\xc1\x3e\xf8\x1e\x7e\x80\x1f\xe1\x27\xf8\x19\x7e\x81\x5f\x61\x3f\xfc\x06\xbf\xc3\x1f\x70\x00\xfe\x84\xbf\xe0\x6f\x38\x08\xff\xc0\x21\x38\x0c\x47\xe0\x28\x1c\x83\xe3\x70\x02\x4e\xc2\x29\x38\x0d\x67\xe0\x2c\x9c\x83\xf3\x70\x01\xfe\x85\xff\xe0\x7f\x05\x00\x80\x0a\xff\x16\xfd\x55\x5c\x50\x9a\x5f\x3c\xb7\x64\x56\x79\x66\xe9\xb4\xca\x94\xea\xa4\xda\xc4\xb2\x71\xf5\x31\x8d\x51\xcd\x91\xe5\xc3\x2b\x86\x56\xfe\xd1\x1a\xd4\xfe\xbd\xea\x97\xce\x4f\xdd\x81\xd5\x3f\xd6\x7c\xd7\xfb\xa6\xdf\x6f\xf0\xd5\xf0\xcb\xda\xcf\xeb\x3e\x19\x7d\x34\xfe\x60\xf2\xde\xb4\xcf\xec\x9d\xf9\x5b\x8b\x37\x96\xaf\xad\x7a\xd7\xbf\xb2\x7e\x69\xd3\x63\xfb\xc2\xee\xb9\xfd\x33\x87\x6e\xc7\xa7\x4e\x4f\x9c\x1f\xbb\x3c\x72\xed\x72\x7b\xb8\xe1\xc1\xc6\xfb\xee\xf7\x36\xdd\xf5\xb8\xe3\xd9\xb9\xf9\xb6\xd7\x2d\xef\x9b\x3e\x37\x7c\xaf\x6f\xb9\xe6\x77\x75\x6b\x87\x7f\x7b\xc0\x95\x6d\x97\x03\x2f\x05\x5d\x0c\xbe\xb0\xfd\x7c\x48\x5b\xe8\xb9\xb0\xb3\xe1\xad\x11\x67\x22\x4f\x47\xb5\x44\x9f\x8a\x69\x8e\x3d\x19\x77\x22\xbe\x29\xe1\x78\xe2\xb1\xa4\xa3\xc9\x47\x52\x0e\xa7\x1e\x4a\x3b\x98\x7e\x20\xa3\x11\xb1\x3f\x73\x5f\xd6\xde\xec\x3d\x39\xbb\x91\xbb\x72\x77\xa2\x76\xa0\x1b\x30\xf5\x79\x75\xf9\xb5\xd8\x1a\x5c\x35\xbe\x8a\x50\x59\x50\x41\x2c\x27\x95\x91\x4b\x29\x25\x54\x39\xad\x98\x5e\xc4\x28\x64\xca\x58\x52\xb6\x84\x23\xe6\x8a\x78\x42\xbe\x40\xc0\x17\xf2\x44\x5c\x31\x47\xc2\x96\xb2\x64\xcc\x42\x46\x11\xbd\x98\x26\xa7\x96\x50\x4a\xc9\x65\xa4\x72\x62\x45\x41\x25\xa1\x0a\x5f\x8d\xab\xc1\xd6\xe6\xd7\xe5\xd5\x63\x1a\xd0\x3b\x50\x3b\x73\x77\x21\x77\xe7\xec\xc9\xde\x9b\xb5\x2f\x73\x3f\xa2\x31\xe3\x40\xfa\xc1\xb4\x43\xa9\x87\x53\x8e\x24\x1f\x4d\x3a\x96\x78\x3c\xa1\x29\xfe\x44\xdc\xc9\xd8\xe6\x98\x53\xd1\x2d\x51\xa7\x23\xcf\x44\xb4\x86\x9f\x0d\x3b\x17\xda\x16\x72\x7e\xfb\x85\xe0\x8b\x41\x97\x02\x2f\x6f\xbb\x12\xd0\xee\xdf\xb1\xf5\xaa\xdf\xb5\x2d\xd7\x7d\x6f\xf8\xdc\xf4\xbe\xe5\x75\x7b\x73\xa7\xe7\x1d\x8f\xbb\x9b\xee\xb9\xdf\xdf\xf8\x60\xc3\x43\xb7\x2e\xd7\x47\x2e\x8f\x9d\x9f\x38\x3d\x75\xec\x76\x78\x66\xff\xdc\xee\x85\x6d\x8f\xcd\x4b\xeb\x57\xeb\x7b\xad\x5e\x5b\xbe\xb1\x78\x6b\xfe\xce\xac\xcf\xf4\xbd\xc9\x07\xe3\x8f\x46\x9f\xd6\x7d\x5e\xfb\xc5\xf0\xab\x41\xbf\xfe\x37\xbd\xef\x6b\x7e\xac\x1e\xd0\xfd\xa9\xf3\x6b\xd5\x6f\xed\x41\xad\x3f\x2b\x87\x56\x0c\x2f\x1f\xd1\x1c\xd5\x18\x53\x1f\x5f\x36\xa1\x36\xa9\x3a\xa5\x32\xbd\x74\x46\x79\x76\xc9\xdc\xe2\x79\xa5\x05\xc5\xbf\x8b\xfe\x29\x40\xf0\xbf\x1c\xf8\x5f\x0e\xfc\xf7\x12\xf8\x25\x6d\x35\xd3\x2d\x85\x30\xc8\x25\x30\xdb\x70\x35\x84\xd1\x35\x21\xfe\xe6\x00\xc2\x14\x8b\xed\x34\xab\x58\x08\x11\xef\x22\xd6\x38\xde\x84\x10\xb9\x37\xea\xd5\xc6\x60\x08\x51\xdf\x12\x74\x7d\x4f\xc0\x63\x68\x90\x3a\xb2\x1d\x0f\x17\xa1\xb4\x73\xf4\xe2\x2f\xfd\x63\xa0\x82\x31\xe7\x32\xf6\xfe\xed\xc9\x25\x91\x77\x63\x4c\xff\x9a\x66\x4b\x85\x56\xc4\x0f\x0b\xed\x88\xda\x92\xd3\xb4\xe8\x05\x85\xf4\xa8\x86\x4c\xee\xd6\x79\x66\xca\x9b\x03\xe3\xc2\x73\xf3\xa1\x49\xcc\xa6\x6f\xa2\xf1\xb9\xc7\x09\x2b\xdb\x2e\xc9\xf8\x73\x4e\xb1\x53\xd7\xdf\xc8\xcb\x66\xdf\x47\x2b\x3d\x3a\x5c\xea\x3d\xdb\x16\xa1\xfe\xa6\xb7\xf4\xe8\x6c\x74\xa8\xce\x6f\xb3\xf2\xd0\x59\xbf\xed\xe7\xc6\x2f\x96\xfb\xcc\x7e\x0c\x7e\x30\xd1\x20\x37\x9f\xab\x0c\x3a\x3f\x59\x2b\xb5\x9e\xfb\x16\x64\x3f\xa5\x2e\x6a\x1a\xc9\x08\x16\x4d\x6d\x13\x85\x0d\x44\x6f\x2f\x9c\xaa\x17\xba\x7f\x72\x08\xd9\x38\xbd\x99\xe7\xf8\xfa\x4b\xa8\xfb\x74\x03\xe7\xf8\xb3\xfa\xb0\xbd\xd3\x9d\x1c\xeb\x07\x17\x23\x88\xd3\xef\x39\x2e\x9d\xed\x11\xcd\x33\x54\xc6\xcb\x9b\x8b\x22\x1d\x66\x2e\xd2\x31\x10\xfa\x99\xfa\xbd\xd3\x8d\x84\x30\x98\xb7\xed\xa5\xa1\x0d\x84\x71\x09\x81\xfa\x26\x21\x10\xa6\xe2\x82\xbb\xac\xbc\x20\xcc\x46\x87\x3f\x70\x7a\x0d\x21\xaa\x3a\xb2\x6d\xc3\x14\x9c\xc5\x86\xc4\x9f\xdb\x9a\x0b\x5b\xf3\xda\x52\x82\x82\xbf\xc3\x65\xf9\xc8\xcc\x8e\xf8\xd2\x7f\xd9\xe8\xfd\x68\x7b\xc4\xa9\xbf\x87\x50\xb3\xa4\xba\x7c\xc6\xc2\x00\xb2\x96\xd7\x45\x09\x5e\xd8\x9c\x45\x29\x29\x62\x3b\xcd\xa7\x21\xa8\xf5\xdf\x45\x6f\xe6\x66\xd3\x35\xf7\x5f\x90\xbe\x9b\x23\xa7\xcc\x1e\xef\x2e\xae\x9b\xd3\x4e\x3c\xdc\xf6\xa9\xe4\xf5\x6c\x7b\xdc\xa5\x1b\x98\xb2\xdb\xb3\x3a\x31\x06\x8f\xcf\x54\xa5\xcc\xfc\x88\xf8\xf2\xee\x72\xd5\x9d\x19\x87\x30\xc4\xa0\x65\x9d\xc7\x4c\x53\x48\xf5\xd8\xfb\x6a\xe5\xd9\x77\xc1\x4f\x27\xaa\xe4\x3e\x73\xda\xc1\xf4\x89\xaf\x45\x2d\x53\x39\xc1\xe9\x93\x72\x69\xeb\xaf\xee\x10\x95\xc9\x27\x52\x8f\x2f\x3f\x43\xba\xa6\xb0\xa2\x8a\xde\x4b\xe1\xdd\x53\x4b\xa5\xe5\xcf\x1a\xc2\xfb\xa7\xfe\x0a\xee\x3e\xec\x8b\x2c\x9b\x56\x15\x82\xbb\x36\x91\x7f\xa6\x6b\x78\x9b\x6f\x64\x45\x9d\x98\x59\xce\x3e\xd9\x71\x37\x7a\xf1\x0c\x96\xd9\x04\xe1\xd6\x5c\xbf\xcd\xba\xf5\x10\x86\xb3\xb7\x32\x0d\x72\x20\x8c\x2f\x0f\xb4\x31\xf9\x04\x61\x26\x32\xa8\x74\x7d\x30\x84\xc8\xd1\x90\x32\x07\x3b\x08\xb1\xfd\x11\x2d\xee\x9f\x20\xc4\x5f\x8e\x39\xe9\xbb\x15\x3e\x23\x2c\x4f\xf8\x1c\xb8\x13\xae\xc0\x57\x23\x74\xe3\x39\xff\xc2\xf2\x3e\xa3\x0e\x64\xad\xfd\x8b\xc8\x5f\x8f\x7f\x89\x0f\x5f\x68\x43\x1d\xe2\x58\xd2\xb6\xcf\x77\xe5\x1c\x28\x1e\xe1\xbb\xcf\xbb\x64\x5e\xab\xed\x97\xb8\xce\xe5\x66\xf4\xed\x7b\x2e\xdf\x38\xe7\x97\xea\xda\x94\x27\x9f\x9a\xdd\x99\xf4\xb0\x8d\x5a\x61\x3b\x33\x14\x7f\xe3\xe6\x68\xf5\x8f\x99\xb7\xd1\xef\xbb\xd5\xab\xcf\x4e\xff\x88\x4c\xfb\xf8\xaa\x41\x38\x7d\x38\x6c\xf1\x68\xde\x8e\x45\x33\x46\xa1\x09\x63\x7a\x75\xbe\xb3\x49\xdb\xab\xc7\x7b\xcb\x9a\xff\xcf\x3a\xb2\x2f\x24\x7a\x62\x97\xfc\x71\xbf\x69\x58\xc2\x04\x2c\xee\x7b\x9f\x15\xb6\x63\x72\x4a\xca\x79\xee\x11\xd9\x31\x79\xb4\x70\xe1\xd1\x40\x24\x73\xea\xa6\x88\x79\xf7\x49\x74\xca\xd4\x41\xf1\x9e\x5b\xb7\xa2\xcf\x4c\x1b\x0b\xf5\x3b\xf4\x63\xe4\xd3\x37\xb9\x9f\x2f\x81\xd8\xc8\x19\x25\x4e\x15\x84\x01\x1f\xfc\x2a\x56\x1f\x86\x30\xfc\x91\x5f\xb6\xfe\x21\x08\x93\xd4\xfd\xef\x1a\x37\x41\x98\xb5\x38\x70\x93\x95\x3e\x84\x98\xb8\x50\x7d\xa7\x3b\x10\xe2\x8f\x84\x53\xdc\x1d\x20\x24\xab\xc7\xe8\xf9\xb1\xe0\x39\x32\x35\xa1\x62\x7b\x23\x5c\x43\xd1\x49\x8b\x8f\x4f\xf9\x67\x43\xf8\x89\x84\x39\x99\x7f\x7d\xb1\x10\x4b\x22\x54\x2c\x6c\xc8\x7b\xc0\xac\x67\x2f\x9b\x4f\x43\x99\x14\x66\x88\x3e\xcc\x9d\xcc\x3e\x5f\xd3\x5a\x94\x35\x3b\x8f\xb8\xb6\xdf\xac\x6c\xc3\x6c\x51\xda\xeb\xa6\xcc\x4a\xc5\x19\x71\xaa\xd1\xb9\x57\xf5\xea\xd3\x9f\x13\x6b\x6f\xf6\xef\x34\x99\xb6\x89\xdd\xfb\x62\xc5\x1e\xdb\xa9\x7b\x91\x15\xdf\x7c\xf7\x6e\x99\xea\x08\x0f\x1a\x31\xda\xd3\xff\x7f\xe3\x41\x0a\xf9\x32\x56\x51\x93\x30\xb1\x2b\xe4\xc1\x78\x7e\xc5\xf8\x8f\xd6\x70\xda\x78\x74\x55\xf2\x27\x87\x88\x75\x13\xde\x65\xf7\x7a\xae\x44\x45\x4c\xdc\x2a\x75\x7f\xac\x1e\xdd\x32\xe9\x2f\x0f\xbb\x9b\x10\xf3\x68\xb2\xbb\x48\xf9\x86\x28\x6e\xd3\x94\x72\x61\xec\x55\xc7\x38\xdb\xa9\x53\x92\xe5\x17\x57\xc6\xef\x9a\x5a\x10\xdd\x69\x3d\x96\x70\x7e\x3a\x5d\xf0\x07\xc2\x80\xaf\xde\x4f\x75\x56\x41\x18\xd5\xba\xa5\xcf\x60\x0b\x84\x69\x36\xfe\x22\x53\x03\x08\x91\x33\x81\x14\x6b\x2f\x08\xf3\x75\xb6\x2d\xb5\x86\x10\x92\x39\x61\xda\x9b\xd6\x41\xc8\xc8\x0f\x5f\xf0\x89\x82\xd7\x19\x2d\xb1\x43\xdb\x01\x5c\x46\x7b\x9d\x5a\x95\x40\xf8\xe7\x42\xed\xcb\x9a\xcd\x49\x5a\x18\x26\xec\xc3\x56\x92\x7d\xe7\x1f\xe1\x2e\xd0\xce\xf1\xae\xce\x8d\x61\x24\x92\xdf\x32\xaf\xb9\x0c\xe4\x60\x65\x9a\x7c\xff\xac\x59\xb6\xc2\x3e\xcf\xea\x9e\x99\x62\x04\xe6\xd8\xbf\xfa\xa8\xe9\x0f\x69\xae\x6d\xeb\x76\xde\x99\x6a\x4b\xb6\xbe\xd5\xb5\x3f\x69\x0a\xc4\x79\xbd\xda\x7b\xe0\xfd\xe4\x89\xa8\xad\x3f\x3e\x1f\x2c\x9f\xfc\x13\x81\x1c\x9a\x6f\x1c\x99\xfa\x1e\xae\x31\x92\xba\x47\xf5\xff\xe0\x31\x68\x1c\x5e\x3d\xb6\xad\x8e\xfc\xa9\x37\xf2\xec\xd8\xe5\x5a\xc2\xcb\xf7\xd1\x4f\xc7\x13\xaa\xf7\x3e\x75\x88\xd9\x3d\xb1\xbe\x02\x7b\x2f\x38\xf6\xd2\xa4\x62\xc9\xec\xf5\xa1\x78\xca\x64\x86\xbc\xbd\x23\x33\xc1\x79\xb2\xb1\xb8\xf5\x02\x21\xb1\x64\x6a\x51\x91\x61\xeb\xaa\xa4\x91\xa9\xc0\xc2\xa5\xcd\xd8\x64\xc6\xd4\x77\xf1\x10\x84\xc1\xaa\xbe\xfc\xd5\x5e\x10\xc6\x5e\xf5\x81\xfa\x8f\x21\xcc\xbc\xe7\x57\x60\x32\x04\x21\x86\xb4\xcd\xd3\x9a\x0a\x21\xfe\x43\x60\x99\xfd\x2d\x08\x69\x07\x82\x0f\xbb\x75\x43\xc8\xaa\x89\xb8\xe8\xa7\x0c\x3f\xf2\xb6\x45\x6d\x0d\x24\x43\x67\xee\xc1\x44\x46\x9c\xcb\xbf\x0d\xcc\x8e\xcc\x75\x39\xd9\x0b\xa3\xd4\x42\x4c\x31\x59\x30\x8f\x23\xbe\x25\x9a\x0a\xcf\xce\x21\xb1\x19\x22\x47\x39\x72\x16\x87\x59\x52\x7e\xa4\xca\x76\x66\x17\x52\x6d\xcf\x8a\xfa\x0d\x33\x2a\x99\xfb\x8e\x65\xec\xf4\x9c\x06\xe9\x9d\xe7\x86\xf6\xe1\x26\x7b\x93\x9b\xee\x78\x1e\xc2\x4d\x46\xc5\xfd\xe9\x8d\x3c\x02\x26\x18\x51\x39\x83\xbf\x8e\xed\x9c\x3c\x10\xf1\x64\xa8\xfc\x60\xfa\x14\x29\xfc\xf4\xf0\x85\x7d\x59\xa3\x7e\x11\x1b\x47\xb2\xf7\x24\xf7\x3f\x8d\x72\x1c\x8d\xdb\x79\xe1\x2d\x35\x66\xd3\xe8\xef\x1d\x76\xdd\xf7\xe2\x78\x63\x11\x0d\x21\x0f\xce\xc7\xeb\x8c\x8b\xaa\xaf\xdf\xd2\x4e\xf8\x35\x3e\x58\x85\xbf\x72\x39\xc9\x71\xe2\x7c\x79\xf0\x45\x44\x92\xcb\x24\xae\x44\xf9\x0c\x37\xc5\x70\xb2\xbd\xf8\xf7\x49\x79\x4a\xeb\x14\x56\xb6\xe3\xf0\x5c\x5a\xe5\xd4\x4d\xa9\x0d\x84\x21\xea\x9b\xf1\x3a\x8b\x21\x4c\xb4\xf4\x71\x30\x08\x83\x30\x2b\xdc\x57\xcf\xe8\x31\x84\x58\x6b\xbf\x39\xcb\xf7\x10\x52\x34\xfd\xa7\xec\xfe\x40\xc8\x1a\x0b\x4c\x71\xbd\x0f\xa1\x00\x17\x6a\xe2\x73\x16\x9e\x13\x67\x46\xe5\x87\xd4\x42\x67\xe1\xa3\xf8\x27\x71\x59\xff\xb6\xf2\xcc\xd2\x5f\x67\xf7\x2e\xcc\x32\x4f\xa3\x52\xc9\x31\x73\x43\xa4\xdf\xa4\xf5\xd2\x9e\xb9\xe5\x04\x6d\x1e\xa7\xf4\xca\xcc\xd5\xfc\xcc\xd2\x91\xba\xc2\xe9\x72\xf4\xba\x9d\xb7\xf7\xb8\x4e\x91\x72\xe8\xc7\x48\x07\xf6\x4e\x0e\x23\x72\xda\xbc\x0f\x35\x4d\x06\xa4\x3c\xee\xf4\x3e\xaa\x3d\x7e\x2c\xbe\xaa\xcf\xed\xe4\xc3\x09\xf5\xa8\xa9\xc1\x98\xa6\xf4\x89\xc9\xc8\x2b\x7f\x76\x1d\xa1\x4e\xb6\x44\x5c\x1d\x6a\x3c\x68\xfc\xe3\x56\x34\x6e\x38\xac\xf1\xf5\xbb\xef\x71\x01\xc3\x8d\x8d\xf2\x27\xe4\x44\xce\x48\xf2\xbe\xbe\xfb\x31\x49\xda\xa3\x82\xdd\x4b\x6e\x69\x26\x25\x8d\x7d\xad\xfb\xd6\x7e\x25\xf9\xf6\x78\x5e\xed\x8a\xb6\x97\x29\x0f\x26\x52\x2b\xb7\xb5\x74\xa4\xf1\x27\xce\x56\x68\x37\xb1\xd3\x1d\x27\x99\x25\x8d\x47\x1a\xd2\xf3\xa6\x1c\x8a\x5c\x1b\xc7\x32\x42\xa7\xce\x48\x6f\x41\x18\x16\xb9\x59\x4f\x87\x02\x61\xda\x2e\xaf\x69\x43\x43\x08\x73\xf6\x79\x1f\x31\xf2\x80\x10\xff\x78\xcb\x4a\x8b\x3b\x10\xd2\xf7\x6d\xed\xb2\xd7\x84\x50\xb0\x65\x9b\xbf\xdb\x18\x84\x92\xcd\xdb\x91\x3e\x6a\xf0\x5b\x11\x2f\x2c\x3f\x10\x0b\x9d\x0a\x3f\xc6\xf2\xe3\x0e\xfd\x5b\x2d\xb5\x49\xbd\x93\x1b\xb6\xf0\x4d\x28\xcb\x59\x44\x41\xce\xaf\x64\xca\xf0\x81\x92\x3f\xb3\xb9\x14\x77\xfa\xa3\x2a\x9d\xe9\xf2\x02\xd3\x22\xf7\x3d\x31\x53\xc7\xf3\xa9\xf5\xaa\x8d\x3f\x27\x9b\x73\x6f\x1e\x51\x3a\x12\x3d\x11\x96\xbd\xee\xdc\x9e\x13\x2f\xc7\xaf\xa4\x36\xdf\x9b\x69\x46\x8d\x2f\x49\x88\xeb\x5b\xd6\xe2\x31\x56\x13\xf3\xf7\x97\xe7\x69\xf7\xf1\xef\xd1\xb6\x83\x7a\x27\x14\xff\xb0\x62\x96\x0e\xfe\x3d\xf6\xf2\x63\x64\xdc\xe8\x9f\xd9\x23\x1d\x2f\xc8\x89\x6f\x86\x76\x1c\x16\xde\xdf\x91\xdc\x3d\x3c\xd7\x58\x72\xf3\x4a\x6a\xf4\xc8\xc9\x7d\x92\x2b\x31\x69\x0a\x63\x56\x3b\x63\xdb\x46\xd3\x97\x8f\x3d\x69\x50\x6e\x79\x9f\xf1\x74\xdc\xbe\xee\xd1\x71\x57\x04\x7b\x22\xaf\xf2\xea\x61\x29\x62\x76\x12\x94\x3b\xee\xbb\x95\x95\x3c\x59\x51\x72\x63\xb7\x72\x96\xf5\x14\xab\xd0\x0e\xc2\xe8\x83\x1e\xa7\x75\x16\x20\xcc\xf8\xe7\x19\xa6\x5f\x02\x21\x7a\xd3\xe6\xd4\x75\xbe\x10\x92\xe5\x5e\xa6\x66\xfa\x10\xb2\x2f\xfa\xa2\x6c\xd2\x21\x94\x66\xfb\x7b\xba\xa1\x21\x2c\xaa\x0f\x96\xfb\x3a\xc2\x57\xe5\x31\xa1\xeb\x83\x06\xa1\x6d\xd9\xbb\x68\x6a\xbc\xc1\x3f\xff\x12\x98\xa4\x99\xa3\xbf\xf0\xae\x28\x23\x73\x0d\xe5\xeb\xdc\x59\x7e\x0f\xd6\xb3\x68\xc9\xcc\x05\x7a\x00\xf5\x4a\x5d\xd6\x14\x24\xe7\x8b\x5f\xec\x77\x9f\xec\xc5\xcd\xd4\xdc\x3e\xfc\x7a\xe2\x0e\xfa\xc8\x21\xd8\x14\x36\x5e\x94\xfd\xbc\xed\xe2\xa9\xf7\x63\xa2\xf4\xd0\x7b\xcf\x5a\x17\x8d\x3c\x4d\x78\xf8\xe5\xc7\xf9\xe6\x31\x85\xd8\xbb\x3f\x71\xad\x11\x63\x7e\x31\xb8\xdf\xaa\xa7\x74\xfa\x37\xc5\x8b\x7e\xbf\x3b\x79\xae\x67\x77\x32\x79\xb0\xe5\x44\xd0\xc3\x8a\xd4\xe4\x21\xe5\xa3\xcf\x6f\xe0\x32\xfc\x87\x76\x1e\xa9\xbb\x3c\x92\xb1\x66\xe4\xd4\xbe\xc1\x73\xfa\x88\xf1\x51\xcf\xbd\x01\xcd\xcf\xb2\xec\xc6\xd6\xee\x72\x3f\xda\x9c\xed\x3a\xbe\xa6\xbe\xfa\xc0\xaa\x9c\x98\xf1\x77\x35\xf5\x7b\x9f\xe4\x98\x4e\x3c\xa8\x90\x36\xdc\x41\x9e\x9b\x44\x94\x8e\xd7\xee\xcd\x9d\x9b\x24\x97\x5e\x82\x30\xc6\xdf\x3d\x77\x95\x10\xc2\x8c\x5e\x8f\x04\xbd\x26\x08\xb1\x16\x9e\x1a\xeb\x02\x21\xa4\xb1\x3c\xff\x98\x76\x41\xc8\x9f\xf0\x66\x5b\xd7\x40\x58\x74\xde\xf7\xb3\x53\x27\x84\x15\xb6\x01\xfa\x9e\xb3\xf0\x59\x75\x4e\x88\x5a\x70\x06\xb4\xaa\xf3\x89\x58\x88\x47\xfe\x8b\xaf\x89\x88\xfb\x90\x6d\xbc\x70\xa1\x62\x26\x1d\x4f\xcb\x9b\x23\x16\x2d\xa0\x2b\xe4\xaa\x33\xee\x9c\x16\xf2\xdf\x1d\xa4\x29\x0d\x5a\x8b\x50\xe1\xd0\xab\x09\x22\xb1\xb8\xca\xff\xc4\xd8\xf8\x76\xec\xe2\x03\xc2\xd3\x81\xa3\x17\x50\x1b\xce\x16\xb6\x71\x87\xbb\x11\xab\x1e\xd9\x5f\xbe\x30\x94\x92\x34\xd0\x1f\xd0\x31\x3b\x82\x8f\x9f\xf9\xe1\x7c\xe1\xec\xc0\x54\xc2\xf1\x81\x99\xb3\xd3\x6f\x4d\x93\xab\x7f\x5d\x3b\x1d\xf1\xc8\x31\xdd\xeb\x77\xfb\x29\xec\xcd\x01\xc4\x81\xc1\xa1\x13\x35\x97\xde\x66\x25\x0c\xe5\x1e\xdd\xdd\x32\x8e\x44\x0e\x1b\x1c\x7e\x7e\x1c\x99\xfb\x68\xc4\xf0\xc0\xad\x43\x2e\xa8\xce\x51\xa5\x7d\x4f\xf6\x5d\x40\x9b\x8c\xad\xde\x35\xba\x4b\x8a\x5e\x3f\xee\x57\x9f\x5f\x87\xc7\x14\x8e\xbf\xa8\x75\xab\x5e\x87\x09\x9f\xe8\xae\xe8\x2b\xe3\xe7\x75\x4f\xda\x96\x87\x43\x18\x27\xd8\xa8\xbd\xca\x02\xc2\xec\xb3\x9b\x12\xf5\xa6\x21\x24\xdc\xd8\x64\xbd\xb6\x08\x42\xce\xd8\xc6\x23\xc6\x1a\x10\x4a\xf4\x3d\xbe\x5a\x62\x20\x2c\x3b\xed\x73\xd5\x79\x03\x84\x35\xf5\x5b\xf7\x7b\xee\x87\x23\x0d\x20\x28\x76\xdb\x39\x18\xb3\x2b\x20\x4c\x23\x26\xf9\x1f\x6e\xd7\x99\xe8\x6b\x99\xdd\x0b\xcf\x6b\x77\xa7\x9a\x52\x3d\xe7\xa6\x2a\xc7\xb3\x6b\x64\x1a\x33\xca\xe2\xe1\x82\xd6\x9d\x7b\x27\x7d\xd8\x32\xd6\xe1\x63\xf8\xf1\x28\x5a\x7e\x89\xc2\x69\xd4\xe8\x60\x81\xeb\x9e\x33\x6d\xde\xc3\xb9\x79\x9e\x67\x4f\xb7\x5f\xfa\xe3\x90\xe9\xf3\x8c\x72\xa3\xfb\x8f\x5d\xca\x9e\x2f\xbb\x6e\xb8\x0d\xe3\x13\x33\xbf\x3d\xb8\xfc\xa2\xaf\x29\x6d\xc7\xf7\xca\xcb\x46\x8f\x63\x10\xf7\x06\x9e\xb7\x75\xde\x0c\xce\x7e\xfa\x6b\x73\xeb\x97\x8b\xc3\xc8\xfa\xdf\xa3\xa7\x5e\x9c\x7e\x95\xfb\xf8\xcf\xd9\x26\xdb\x63\x16\x98\xae\xa1\x2d\xc7\x7a\x1b\x31\xf9\x5a\xc3\x45\x87\x55\x77\xc9\xb1\xaa\x23\x57\x1b\x8d\xea\x89\xd8\xa0\xd1\xde\x3d\x9b\xaa\xda\x70\x71\x63\x0d\x3b\x29\xe5\xd7\xb1\x9f\xc7\xcf\xd7\xfe\x91\xf7\xe1\x75\x26\xd6\xd4\xc4\xca\xbc\xf1\x8d\x93\xaa\x15\x6b\x21\x4c\x8a\x77\x33\xd3\xbe\x04\x61\xee\xb4\xbb\xad\x5e\x3f\x84\xe4\xef\x1b\xb6\x18\xbc\xfa\x7f\x70\x28\x9e\xd9\x54\x63\xd9\x01\x61\x95\xc6\xe6\x76\xfb\x5f\x10\xee\x1c\xf2\x41\x6f\xd4\x86\x70\x7f\x5d\xc0\xda\x80\xa5\xb0\xe2\x50\x7e\x10\x31\xfc\xf1\xbf\xd2\xc3\x4b\x22\x16\x65\xbc\x5b\xb8\xbd\xef\x6e\x22\x93\x7a\x6a\x6e\x67\x43\x7a\xe6\x93\xa2\x5b\xd3\x17\xca\xc7\xb0\x8b\x77\x67\x4d\x44\x0a\x79\x8c\xe1\x93\xc4\xd1\xf3\xec\x33\xd2\x03\xe7\x0d\x86\xef\x53\xca\x76\x4e\xb4\x6b\x0e\xde\xc5\x0a\xce\x7b\xdd\x6a\xfa\xd9\x9c\x63\xd7\xb3\xe4\xfe\xf7\xdf\xbe\xe9\x05\x1f\xbf\xdc\x59\xfc\xe5\x5a\xfa\xcc\x97\xe3\x37\xea\xba\xc7\xb3\x83\xfb\xdf\x5d\xb5\xbf\x39\x9f\xbb\xf8\xc7\xc7\x8b\xb4\xf3\x41\x79\x2e\x03\x4f\xce\xbf\x6e\xde\x90\x9f\xf9\xdb\xee\x4c\xe2\xc1\x8f\xb8\xc6\xc1\x6b\xcd\xc4\x7d\x91\xb8\x91\xa1\xb5\xc7\x6b\x77\x74\x12\x74\x86\xed\x8f\x10\xaa\xfb\x0b\x12\x47\xb6\x1d\x58\x28\xdd\x43\x8a\x1f\x55\xdc\x5f\x5e\x34\x4e\xca\x18\xb3\xda\x9d\x5d\x18\x4b\x5c\x3b\x9e\x55\xcf\x12\x3d\x25\x21\xc6\xe7\x6b\x15\x78\x61\x64\xab\x89\x17\x95\xfe\x10\xa6\xdc\x73\x33\x5c\x15\x01\x21\xba\xd6\x45\x51\xe7\x19\x84\x0c\xac\x5b\xb1\x21\x12\x42\x51\xbf\x2b\x7d\x9d\x1d\x84\xe5\x21\x1b\x5d\xcc\x27\x21\x6c\xc8\xf1\xf0\xb7\x63\x41\xb8\xff\x9d\xf7\x6b\xf7\x26\x08\x8f\xdc\xf0\xe3\xf8\xb5\xc3\xc6\x13\xc6\xdb\xf4\xc2\x32\xff\x95\x9f\xd4\x0b\x7d\x99\x51\xfa\x57\xa7\xe9\x4c\x4c\x09\x71\x64\xee\xdd\xc1\x27\xa9\x0d\xb2\xa2\x69\x93\x1d\xe5\xe8\xdb\xfb\xd2\xc7\x3f\x54\x2c\x25\x75\x9f\xda\x34\xa2\x2c\x98\x14\xd0\xaf\xa0\x07\x0f\x32\x63\x77\xcc\xdd\x66\xfd\x0c\x24\x76\x9c\x9d\x79\x58\xfc\xcd\x0b\x75\xa8\x37\xef\x99\xdd\x80\x53\xf6\xb2\x77\x35\x5d\xa7\xba\xaf\xa0\x17\x7f\xfc\x7c\x77\x65\xc7\x28\x2e\xf8\xcb\x83\x9b\x3d\xe7\x8e\xe3\x97\x7f\xfb\xda\xe1\x79\xfc\x44\xc1\xa6\x01\xc4\x45\xff\x46\x3c\x29\xe0\x67\xff\xb9\xe9\x5d\xc9\xa4\xbd\xbf\x27\x5b\xde\xd7\x68\x51\x26\x07\x7f\x34\x53\x2a\x52\x29\xfb\x87\x24\xc7\x1e\x96\xa4\x50\xb2\x47\xb4\x0f\xbe\x90\xd6\xd3\x9e\x8e\x50\x0f\x1c\x16\x91\xa9\xbf\xc6\x34\x77\x7f\x16\x58\x53\x2f\x8d\xf5\xef\x68\x64\x4b\xe9\x21\xe3\xf8\x7a\x0a\x73\x9c\xba\x30\x51\x5b\x45\x80\x30\x63\xcc\xc5\x42\xfb\x25\x84\xd8\x5a\x17\x9f\xd5\x8a\x10\xb2\x1a\x5c\x69\x06\x9f\x20\x2c\xd4\x76\xd9\xb2\xf6\x37\x84\xd5\xeb\xdc\x14\xcd\xec\x20\xdc\x77\xc6\xed\x9c\xd5\x13\x08\x8f\xee\xf0\x70\x74\xbe\x0f\x61\x8b\xb7\xcf\x32\x9f\x6c\xf8\xe4\xec\x63\xbf\xd2\xe0\xba\x7f\x4f\xda\x4a\x83\x26\x52\x4a\xfe\x26\xb6\x7d\x88\x70\xc4\x1f\x9a\x57\x6b\xe1\x24\xfc\x94\x9c\x9c\x3e\x77\x0c\x95\xc9\xdb\xb5\x30\x6e\xb1\xab\x1b\x9f\x7a\xfa\xcd\x90\x4e\xf1\x71\xde\xca\xeb\x9f\x06\x7a\x45\xa3\x15\x2d\x5d\x3d\xfd\x65\x8c\x83\x67\xd6\xbd\x58\xf7\x55\x33\x5f\xbf\x27\xa9\xe7\xd6\x4b\x0d\xec\xd8\xeb\xdd\xdd\x1b\x6e\x1a\x14\x20\xde\x7f\x78\x70\xaa\x35\x86\x42\xfa\xd4\x73\x47\x7a\xe8\x1b\xed\x57\x3f\xf6\x7a\xc5\xce\x9f\xcc\xb2\xef\xb8\xf6\x77\xb5\x07\x98\x09\x03\xbd\x17\xae\x96\x2b\x30\x1f\xfe\x76\x6a\xb5\x2e\xea\x62\xbd\x19\xa4\x9f\xfa\x24\xbd\xc0\xda\xf1\xa7\xf7\x84\x82\xf0\x3c\xab\x7d\xd8\xfb\xc8\x75\xde\x5f\xd6\xd2\x91\x93\x8d\x90\xfb\x8d\x59\x3b\x4a\xde\xe7\xc6\x3e\xcb\x78\x38\xf6\x6b\x47\x3d\xfb\x03\xbd\x64\xdc\xbe\x41\xc8\xd8\xc5\xa0\x4f\x34\x54\x65\x43\x98\xd5\xe9\x74\x55\x1b\x05\x21\xfe\x94\x93\xb3\xce\x79\x08\x05\xb5\x8e\x24\x3d\x17\x08\x4b\x5b\x1d\x47\x0c\x0f\x40\xd8\xf0\xc6\x39\xdf\x64\x0b\x84\x87\x82\x5d\xbe\x5b\x26\x40\x78\x4a\xdf\x4d\x6c\xbb\x13\xc2\x0b\x4a\x9e\x24\x8f\xbb\xb0\xaf\xfd\xb9\xaf\x5f\x50\x38\x54\xed\x18\x0b\x68\x4e\x90\xff\x15\xdd\x58\x15\xb2\x07\xbb\x7d\xee\x6f\x7b\x7e\xcc\x1b\x89\x68\x9a\x7e\xfe\x49\x2a\x7b\xf7\xcd\x31\x69\xf3\x35\x14\xa9\xf5\xd6\xe0\xf7\x3d\x6f\x68\x2b\x6e\xdd\xea\x3f\x52\x72\xb9\xd8\xf5\x45\x78\x5f\xa4\x68\xac\xa5\xe9\x43\xd0\x1b\x36\x5d\xab\x2b\xf4\xfd\xae\xab\x03\xac\xbd\x3d\xcf\x5e\xda\x9e\x38\xc1\xbd\xf7\xf6\xd3\x93\xac\xdd\x85\x82\x8b\x1f\x23\xee\xa3\x6a\x1e\x0b\xf7\x7f\x31\xbd\x3d\x57\x5e\xc6\x1f\xf8\xbe\xa4\xe3\x4b\xb1\xb7\xc0\x65\xc0\xf4\x92\x54\x6a\xca\xbb\xfb\x5b\xa1\xf5\x81\xa8\x9b\xbf\x63\x30\xb2\x25\x95\xff\x8b\x5f\x37\xe4\x7b\xbc\x9b\x8f\xe3\xe2\x86\x43\x8e\xd4\x73\xd6\xf3\xbe\x8c\xbc\x68\x24\x32\x2f\xf1\x89\x63\x2b\x77\xbf\x67\x8c\xf3\x1e\x8d\x9d\xd9\x49\xa7\xc6\x09\x42\x26\x5c\x6a\x0c\xa8\x57\xb9\xe2\x89\xb6\xca\x3e\x08\x91\x07\x9c\xea\xb4\x47\x20\xa4\x7c\x77\x88\xd4\x21\x42\x28\xbe\xe3\xf0\x57\x8f\x0a\x61\xe5\x29\xc7\x00\xc3\xbb\x10\xee\x99\x75\x7c\x65\x9c\x0e\xe1\xf1\x4b\x4e\xb5\xe6\x66\x10\x9e\x3d\xec\x66\x60\x87\x80\xb0\x7d\x7e\xe3\x7d\xb7\x25\x10\x76\x26\x7b\x2d\xdd\xda\x0c\xa3\x1f\x6e\xde\x22\x8f\x96\xfe\xbd\xd6\x95\x17\xb4\x09\xa3\x3e\x2f\x7e\x58\x19\x4e\xe7\x33\x66\x54\xee\x67\xc7\x51\x1a\xae\x8e\xaf\xbc\xb6\x3a\xe3\xd7\x69\x9b\xdf\x97\xce\x6d\xc2\x65\xdd\xb1\xff\x7c\xf5\xd0\xa8\xc0\xa3\x57\xf4\xfc\x46\xe5\xd1\xa6\xad\x3f\x8a\xda\x6f\x94\x7c\xef\x54\xf9\x5a\x7c\xcc\x43\xee\xd0\x4d\x78\x33\x53\x47\x90\x5f\x78\xa3\xfe\x6c\x49\x65\x6c\xb1\xf3\x87\xa5\x0f\xa9\xa5\xe4\xa2\x6d\x9f\x77\x77\x8e\xc8\xd6\x14\x7d\xfb\x9e\xde\xe1\x26\xae\x2c\x34\x19\x98\xbe\x70\x40\xc0\x2c\xac\xfb\xad\xd6\xba\x9f\x7b\xb2\xf0\xd0\xe0\x7c\x33\x99\xbd\xbc\x30\x66\xe8\xd9\x31\x05\x26\x59\xf6\x6d\x78\xfe\x90\x1f\xfd\x97\x94\x33\x9a\xb8\xaf\x90\x56\x2a\x5b\x35\x3a\xb3\xc7\x99\xe2\x27\xa3\x8d\x5b\x34\x14\x12\xbb\xa4\xfb\x27\x8e\x57\xfe\x25\xfa\x4a\xcb\x26\xc6\x2a\x9a\x20\xc4\x28\x39\xba\x6a\xd7\x43\x48\x5f\x6b\xcf\xd1\xb1\x86\x50\x76\xc0\x96\xa5\x8b\x84\xb0\x76\xca\x7e\x83\x81\x17\x84\x87\x42\x6c\xe4\xfa\xfb\x20\x3c\x5d\x6a\x3b\xb1\x6e\x27\x84\xed\xca\x0e\x83\x16\x76\x10\x76\x96\xb8\xa6\x3a\x9a\x41\xf8\xc4\x66\x93\x8b\x97\x39\x6c\x7e\xb5\xc2\xeb\x45\xe8\xda\x7f\xfe\x6f\x67\xb6\xb6\x64\x8e\xcf\xbf\x7d\xb7\x3f\x78\x88\x7d\x78\xc6\xf1\x9d\x6e\xe4\xba\xba\xde\xb1\xe7\xaf\x36\x25\xae\x3a\xbd\xea\x57\xef\x53\x69\xb6\xca\x5d\xd4\xfb\x85\x4e\x5d\x2a\xa1\x4f\xe1\xa6\x5a\xd3\xd8\x41\xa7\xb1\xc7\x07\x16\x1f\x87\x37\x5a\xbe\x3d\xa8\xfa\x72\xa4\xbb\x7b\xe9\x5b\x3f\xb9\xfb\xfe\x7f\x6f\x72\xbb\x33\xa4\x88\xbd\xdc\x0f\x07\x1e\x24\x08\xfb\xeb\x73\xfa\x53\xaf\x0f\x0b\x4c\x6b\x25\xdf\x99\xed\xaf\x38\x5a\x35\x59\x3f\xff\xb5\xa9\x33\x7b\xaa\x83\x07\x15\x5b\x46\x19\xda\x55\xd6\x7f\x76\x9f\x10\xd3\xf9\xe5\xf7\x87\x6e\x1d\xd3\xa2\x74\x54\x2c\x1e\xa1\x1d\xe0\x51\x94\xca\x6e\x8e\x06\xec\x3b\x4e\x8a\x2f\x6d\x1a\xab\xd8\xd9\x45\x78\x53\xea\x3b\xa1\x52\x73\x02\xdf\x58\x96\x3c\x81\xae\x9a\xc7\x5d\x2b\xb9\x35\xe9\x51\xee\x0a\x61\xfe\x65\xdb\x2f\x2b\x59\x10\x72\xb6\x59\x57\x68\x35\x40\x28\x6f\x5e\x9f\xa2\x3d\x04\xe1\xce\x10\xab\x63\x3a\x12\x08\x9b\xda\x2d\x36\xae\xea\x86\xf0\x02\xc5\xea\x8f\xde\x13\x08\x6f\x07\xdb\xf2\x8c\x0f\x43\xf8\x44\xd3\x49\x6a\xab\x0c\x61\x6f\xf3\xc6\x1f\x9e\x10\xfe\xfa\xd4\xe7\x89\x0b\xbc\xfb\xaf\xfa\xa7\xa3\xef\x6c\xda\x85\x05\xf1\xd0\xce\x80\x6a\xca\xb5\x99\xab\xe3\x19\xdb\x53\xaa\xac\xc6\x97\x0f\x92\xa2\x0e\x9d\x52\xfb\x9d\xfa\xc5\x3c\x15\x74\x56\x3d\x3f\xff\xea\x32\x61\xf3\x4b\x6e\x53\xcb\xdd\xdc\xea\x5f\xfd\x15\x25\x17\x1e\x5c\xb8\xbb\xe5\x73\x2b\xbf\xe5\x81\xd6\xf3\xf5\xbd\x4d\xdc\x23\x97\xfc\xdf\x76\x3c\xf1\x63\x97\x9e\xb6\xf9\xb4\xee\xee\x65\x56\xf9\xb1\x53\x5f\xbb\x6e\x1c\xa5\x7e\x3a\x32\x38\xe0\x7d\xf1\x1c\x55\xf3\x60\xc2\x2f\xbd\x73\x34\x4a\xc4\x9e\xfb\x83\xbc\x53\x68\x52\xfd\x9e\xed\x7f\x3e\x34\xb1\x49\x71\x0d\xe1\xc3\x65\x87\xd3\x0a\xc6\xea\x4f\x8e\x1c\x68\xbc\x8a\x3b\xdc\xf0\x75\x2c\x66\x17\x19\xfb\xaa\x6e\xd7\x78\x7a\xfd\x76\xac\x4a\xad\xeb\x84\x79\xf5\x5c\xfe\x64\x95\xde\xc4\x40\xc5\x8e\xbc\xcf\x95\x2f\x27\x45\xff\xf9\x28\x42\xa5\xad\xf3\xca\xe3\x10\xf2\xd5\x2d\x1f\xae\x28\x83\xb0\xf2\x96\xf9\xa2\x15\x79\x10\xee\x87\x00\x00\x00\xe1\xa9\x70\xd3\x5f\x5a\xc9\x10\x5e\xfd\x6c\xdc\xb3\xa2\x1b\xc2\xae\x59\xb3\x93\x3a\xf6\x10\xf6\x3e\xb2\x57\xb0\x50\x80\xb0\xdf\xdb\xa9\xda\xee\x23\x84\xc3\xab\x36\xad\xf3\xab\x82\x76\xf3\x2f\xbc\x15\xe3\xf6\x2c\xdc\x9e\x15\x6c\x1d\x27\x29\xcd\xdc\x99\x58\xb3\xdd\xb9\x72\xe8\xd7\xc2\xe0\x85\x18\x79\xf3\xbd\x9e\xf7\x3f\xee\xa5\xbf\xbf\xc2\xbc\xb6\xe3\x63\x2d\x61\xff\xc3\xec\x5d\x2b\x5e\x87\x16\x6b\xf6\x3c\x90\x80\x67\x7a\x77\xde\xbe\x13\x52\xcf\xbe\xae\x7e\x39\xfc\x22\x86\xb4\xaa\x9b\xdf\x47\xfd\xbf\xf8\x78\xcb\xa8\x2a\xbb\x76\xfd\x1b\xbb\x03\xec\x0e\xc0\x00\x51\xc0\x20\xa5\xa5\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\x25\x24\x25\x05\x11\xa4\x44\x11\x14\xc5\x40\x04\xa4\x59\xac\xee\xf3\x1d\xcf\x46\xf4\xbe\x9f\xbd\xff\xef\xa7\xdf\xb8\x3e\x9e\x73\xcd\x39\xaf\x6b\xac\xe3\x37\x8e\x61\x25\xc7\xa1\xae\xac\x59\xf6\xde\x79\x07\xff\x96\xc7\xf3\x73\x1d\x0f\xec\x79\x9f\x69\x2e\xa6\x36\x27\xda\x1f\xa8\xac\x5d\xe1\xae\x33\xb1\x13\x2d\xe5\x5b\x63\xa9\xe2\xb0\x5e\x2e\xf1\xd8\x38\x55\xe2\x66\xed\x9b\x3f\x80\xa8\xce\x97\xb0\xa2\xcb\x3b\x8d\xdc\x9d\x65\x6e\x31\x92\x53\x85\xba\x9e\xb6\xdb\x72\x47\x66\x34\xaa\x37\xd9\xc3\x1c\x97\xd9\x89\x96\x4c\xa4\x37\x37\x49\xe7\xc7\x30\xc6\x0a\x9b\xcd\xa5\x96\x62\x3a\xa3\x2c\x00\x1c\xaf\x30\xeb\xd0\x39\xfe\xe7\x7b\xe9\xe6\x01\xda\x02\x80\x64\x4e\x06\x71\xda\x73\x00\xa5\xce\x5b\xeb\xd0\xcc\xba\xc5\x81\xf6\x2d\x7e\x4c\xdc\xe2\x4c\xcb\x0d\xc6\xb3\xbc\x00\x1b\x06\x77\x2f\x33\xce\x01\x50\x09\x1c\x42\xbc\x67\x81\x8b\xbc\xfc\x78\x4a\x19\x4f\x7e\x84\xef\x11\xc1\xb8\xdd\x5a\x91\x42\x93\xa5\xbe\xc4\x0c\x4f\xd2\x22\x02\x55\x05\x0b\x28\xbd\x1f\x57\x0f\x1a\x08\xd4\xcd\x54\x07\xcf\x13\x1c\xee\x77\xbf\x4c\x90\xf9\xbe\x11\x92\x35\xf4\xda\x27\xe8\x9b\xf8\x33\xf2\x48\x81\xad\xdb\xd7\xa7\xd3\xca\x23\xfe\x96\xb3\x33\x22\xdf\x8e\xbf\x0e\xb4\x48\x7b\x87\x9f\x3b\xd5\xf5\xd1\x92\xda\xe7\xfd\x8b\xf1\xf9\x0d\x8b\xc9\x8e\x86\xe5\xd8\x7a\x4f\xcb\xb6\xa6\x4f\x2b\x0b\x35\x5c\x96\x8c\x75\x0e\x6b\x6b\xe5\x65\xe6\xb1\x35\x9c\x1b\xb5\x45\x2c\xe6\x34\x55\xbb\x11\x8b\x79\x27\xcd\x0e\x97\x09\x21\x5d\x33\x0c\xcd\x5e\x17\x3d\x46\x92\xd2\x1c\x4d\x17\x0a\x5a\x51\x9f\x92\x26\x4c\xe8\x0b\xa2\xd0\x5f\xe3\x04\x4d\x8e\xe4\x84\x62\x3a\xa3\x6e\x1b\xcb\x65\xef\xc3\x9a\x86\x8d\x03\xb8\x46\xde\xee\xa1\x9d\x01\x08\x95\xa4\x99\xfa\xcf\x7c\x69\x1f\xb6\xe6\xac\x08\xa5\xd1\xfc\x0f\x3b\x1c\xb6\x9e\xdf\xfc\xd8\xe2\x57\x4f\x1a\xed\xff\x10\xe9\xbf\xf5\x0c\x59\xb7\xc4\xce\x4a\x01\x50\x7f\x72\x14\x3d\x56\xa5\xb6\x90\xd9\xf9\x6d\xb5\xf7\xaf\xdb\x12\xcc\x9f\xf4\x3b\x35\x4f\x9f\xc2\x9e\x95\xbd\x14\x61\x3e\x30\x8c\x6c\x57\xfb\x9a\x69\xd4\xe4\xb9\x2e\x6e\x84\xaa\x3a\x54\x62\xbd\x82\xb0\xa9\x79\xa6\x18\xe5\xb5\x70\x25\xa0\xfe\xc5\x2d\xaf\xac\x9f\x7e\x15\x32\x7d\x61\x16\xb1\xb3\x47\xbf\x04\xbe\xca\x36\xf1\x99\xe3\x9d\x15\xec\xf1\x37\x1c\x9f\x1d\x9b\x37\x6d\x4f\x31\xac\xff\xc8\xbb\xb8\xde\xa8\x66\x7c\x62\x30\x61\x25\xa3\x86\xcb\xb8\xbd\x67\xd7\x9a\x6d\x85\x93\x71\x52\x7b\xd8\xc6\xee\xe2\x61\x93\x8b\x4d\xa7\x10\x32\xf9\x23\x46\xf8\xfa\xb7\x9b\xb3\x59\x77\x8d\x17\x9f\x16\x23\x9f\x64\x4c\x1b\x73\x55\x20\x51\x51\xc9\xa3\x86\x1f\xca\xdd\xd0\x15\x71\x73\x46\xf4\xc5\x1c\x18\xfd\xe8\x7a\x03\xdf\x22\x12\x56\x28\x9c\xdb\x40\xbe\xa0\x0b\xdb\x1b\x52\x0a\xe0\x6e\x72\x83\x72\xec\x23\x40\xb4\xf5\xd6\x5c\xb9\x7e\x5b\xac\xdb\xb3\x35\xef\xcb\xdf\xbf\xff\xe4\xbd\x2d\xce\xaf\x6c\x91\x32\x41\xe3\xfc\x3f\xeb\x00\x37\xae\x9f\x0c\x00\xa0\xe2\x39\x44\x79\x19\x91\xfc\x64\x17\xfe\x64\xcd\x33\x33\x25\x44\x7e\x51\x1f\xdb\xc8\x31\x7a\x9c\x8c\x9c\x5e\x50\x71\xc7\x47\xb4\x97\xc6\xad\x24\xdf\x6a\xa9\x4d\x0e\x23\x52\x41\x6b\xd6\x93\xf5\x23\x76\xfd\xd5\xcd\x61\x1f\x97\x86\xfc\x1e\xb5\x2a\x7a\xb8\x2f\xde\x2a\x38\xda\x9e\x6a\xe9\xbd\x10\x3d\x1c\xdf\xf9\x5a\x9f\xf8\xab\x60\xfe\x63\x9b\xab\x0e\x61\x69\x6d\xf1\x49\xd3\x6e\x5d\xcb\xd9\x43\x4b\xf8\x7a\x49\x7d\x96\xc9\xe7\x2b\x25\x4f\x43\xf5\xaf\x8d\xfc\x5a\x83\x32\x16\xfd\xf3\x7d\x8a\x88\x1b\xf9\x19\xfa\x0d\x9d\x63\x9b\xc2\xd9\x08\x7d\xc9\x36\x21\xa4\x56\xfa\xaa\xfe\xed\xa6\xcf\x28\xf3\xe4\xf7\xfa\x7c\xf5\xe3\xe8\x87\x09\xe1\xfa\xd7\x6a\x26\xd1\x3f\x62\x93\xf5\xfd\x2a\xdb\x30\xde\x51\x53\xfa\xf8\x32\x77\xcc\xd7\xc8\x8b\x7a\xca\x25\xdf\xb0\xb8\x60\x59\x00\xbf\xc5\x6b\xc8\xc3\x41\x00\x09\xd7\xb6\xe6\x2b\xfc\x7d\x2f\xb4\xfc\xdc\xe2\x30\xdb\x16\xa7\xb5\xb7\x88\x0c\xfb\xbd\x0f\x80\xc6\x66\x8b\x4c\x7a\x17\x3e\x63\xda\xa8\x3f\x39\x24\x79\xd1\xf3\xef\xc8\x43\xfc\x93\x6a\x1a\x13\xe9\xc4\x75\x31\x09\x0b\xd2\xcb\x74\xfc\xa0\xdc\x92\x97\xd8\xb3\x78\xcc\xaa\x66\x64\x0c\x7d\x91\x2e\xca\xd0\x38\x23\xa3\x32\x59\x02\x91\x6b\x97\x55\x5c\x1f\x88\x5e\x37\xf0\x1a\xaa\xe6\x70\xf3\x5c\x19\xce\xec\x6e\x38\x6d\x71\x6b\x99\xf2\xa2\xb2\xf1\xb0\xee\xc8\x52\xf2\x42\x58\x13\x52\x13\xb5\x2a\xbc\xdc\x59\xf3\x5a\xf3\xc6\xea\xec\x8a\xc9\x53\x1a\x4d\x8b\x79\xe5\x55\x42\xf9\xa6\x66\xf3\x94\xdb\xc6\xb3\x82\xc3\x5a\x1e\x63\x29\x9b\xc7\xb3\x9b\xb5\xe2\x86\xee\x23\x6f\xa5\x7f\xd2\x76\x7d\xf9\x0a\xf9\x3d\x55\x49\xfb\x6d\xd7\x59\xd4\x68\x62\xad\x76\xf2\xf3\xfd\xe8\xf5\x98\x11\xed\x8e\xa6\x64\x8c\x77\x94\xa4\xf6\xea\x33\x41\x0c\x39\x7c\x5d\x87\xb3\x46\x11\x1b\x16\x2a\xa1\x85\x7d\x2a\x8d\x93\x0f\xc0\x00\x04\x9d\xa1\x09\xfc\xcf\x3c\xa9\xac\xff\x3e\x0f\xdd\xe5\x5b\xcf\xef\xc6\xb6\xb8\x10\xbf\x45\xaa\xed\x3f\xd7\x81\x90\x02\xc0\x3c\x79\xf5\xdc\xe2\x30\xf5\x07\x87\x0b\x2f\x7e\x2a\x9b\xa2\xc3\x9f\xac\xd0\x39\x28\x4d\xaa\x14\x1b\x33\xb6\x6a\x6d\x21\xe0\xe4\xe3\x9c\x06\x2a\x08\xb8\x04\xcd\xb6\xe0\xe2\x2c\x6b\xec\x05\x23\xb3\x18\x93\x18\x37\x54\xb6\xad\x44\x86\x9b\x5f\x09\xa2\xcb\xf3\x47\x71\x91\x73\xdf\x46\x67\xf2\xa5\xb2\x17\x16\x3a\x1b\x37\xeb\x4d\xcb\xdf\xea\x72\xad\x6b\x4d\x7e\xab\x68\x51\x67\x58\x77\x5c\x3b\x5c\xfe\x48\xed\xf4\x86\xc8\xda\x72\x49\x98\x4a\x27\x42\x61\x63\x6f\xc1\xbc\xea\xc2\xfc\x47\xc4\xb9\xdc\xaf\x6a\x3a\xd3\x9e\x9b\x23\x19\xdc\x6a\xeb\x13\x3a\xc8\xee\x94\x69\x8d\x43\x43\x04\x54\x4f\x22\x83\xc6\x97\x7e\x13\xf4\x89\x78\xa2\xfa\xf2\x8b\x19\x4c\x69\xc4\x5b\xf5\xac\xce\x19\xac\x52\xa8\xaf\x46\x40\x9b\x37\xd6\x24\x54\x41\x3d\xb3\xa5\x05\x27\x13\xe0\xa8\x3e\xdb\xd0\x87\xeb\xf5\x25\x01\x44\xde\xfa\xf7\x79\x68\x58\xda\x62\x3f\xcb\x16\x3f\xaf\x6d\x11\xf5\xf1\xcf\xfc\x5a\x34\x34\x54\x13\x80\x0b\xa3\x7b\xbd\x56\x43\x00\xee\x9c\xbd\x4e\x3b\xad\x01\x7b\x38\xe4\xb9\xbf\x8c\x5e\xa3\x64\x0a\x58\xcb\x15\x76\x22\xc8\x16\xe2\x4c\xba\x87\x6b\xdd\x88\x1f\x15\x58\x6c\xa2\xf2\x35\x08\x17\xb4\x0e\x7b\x39\x24\x0d\xe3\xd4\x8d\xa5\x42\x29\x61\xcc\x98\x0a\x9b\xc6\x78\x21\x4f\x22\x0a\xe5\x3e\x99\x2e\xed\x70\x07\x75\x27\xae\x20\x4b\xd7\xec\x0d\xd2\xaa\x7c\x28\xa7\x52\xb7\x01\x31\x3e\x38\x59\x78\x53\xed\x01\x22\xf9\xd7\xae\x02\x7b\xa5\xe1\xcd\x77\x88\x9c\x6c\x71\xc5\x11\x64\xca\xa6\x75\xc6\x23\x85\x36\x94\x31\x52\x2c\x65\x40\x49\x74\xd1\x0d\xd9\x95\x9c\xae\xf4\x60\xe6\x04\xfa\x5e\xec\x57\xe5\x37\x1f\x33\xd1\x96\xb1\x1a\x2a\x97\xdf\xb2\x63\x2c\x22\xf7\x2b\xff\x1a\x8a\xc4\x5a\x85\xb0\x29\xcf\xf5\x47\xe2\x76\x05\x32\x2b\xbf\xec\xa9\xc1\xf5\xfa\x5e\x50\xb9\xd4\x15\x81\xdf\xed\xdd\xad\xd2\xda\xd6\x8c\xe7\xf7\x8a\xfd\x7b\x1e\x4a\x79\xb7\xd8\x99\xfd\xef\x7d\xb0\xc8\xfd\xcf\xf9\xa1\x04\x80\x46\x87\x86\x66\x99\xfb\x7f\x72\x40\x9a\x99\xb3\x00\x2c\xb7\x18\xe2\xde\x05\xc2\x25\x8e\x40\x2e\xf7\x5e\x3f\xea\x59\x81\x7d\x12\xab\x8d\xea\xe4\xcf\x12\x3b\x34\x69\x4b\x8d\x49\x31\x8a\x34\x66\x84\x74\x31\xa2\x92\xd6\x01\xa7\x5d\x31\x36\x84\x1b\x86\x2b\x5e\xa4\x80\x57\x38\x59\x6b\x4a\x58\x95\x6b\x03\x36\xc1\xd5\x3f\xea\xbd\xed\x2d\xec\x81\x48\xd6\x58\x1f\xd3\x87\x18\xc1\x7c\x8d\x84\x6e\x9d\x9f\x68\x99\x0e\xf6\x64\xb4\x2a\x1e\x95\x3a\x25\x95\x1a\xa6\x78\x11\x75\x7e\x93\x90\xb6\x57\xbe\x15\xcd\x88\x3a\x99\x68\x29\x27\x83\x61\x45\xdf\x8d\x71\x97\xbb\x86\x91\x43\xcb\x45\x7f\x95\x7d\xb7\x4e\x87\xf1\x0e\x2b\x91\x2b\xfb\x29\x88\xe5\x0b\x76\x94\x3f\x31\xfd\x15\xfb\x2b\x40\x53\x3e\x6f\xe2\x3d\xce\xd9\xb7\x44\x41\xee\x6d\x34\x2e\xcb\xf7\x90\x62\xd8\x90\x1e\xae\xcb\xa7\x44\xd1\xa8\x3f\x18\x2f\xed\xe9\xac\x60\xfd\x52\x8b\x70\xc9\xe5\x09\x40\xa6\xdd\xef\x7b\x51\xf7\xf7\xfb\xf1\xe0\x16\xbf\xfc\xbe\x37\x71\xb1\xff\x5c\x87\x0d\xcb\xad\xf9\xbf\x8c\x6c\xf1\x7d\x11\xc0\x9d\x4d\xfa\xee\x3e\x23\x50\xe1\x90\x7a\xb8\xdc\x62\x4e\x95\x12\xe4\x14\x7b\x5b\x19\x4b\x51\x96\xa8\x57\x91\xcd\x09\x25\x3b\x28\xbc\xd3\x5b\x4e\x78\x4c\x92\xd6\x9c\xb2\xd2\x0c\x25\x10\xed\x0d\xef\x3a\x0e\x7b\x33\x11\xb8\xad\x0e\x79\xbd\x73\x22\xe2\x36\x5c\xe4\x83\xaf\x5b\x47\xe3\xb4\xc2\x24\xc3\x5c\x4c\x46\x71\x0a\xa9\xf3\x61\x2a\xba\x2c\xd8\xb4\xda\x73\x91\xfa\xea\x2c\x98\x17\x03\x92\x31\xce\x8a\x3b\xb1\x3b\xbf\xd3\x44\xd6\xc8\x16\x63\x2a\xd0\x35\x51\x67\x65\x28\xd8\xab\x98\x3b\xe1\x35\xd2\x07\x70\xae\xd8\xd4\x00\x5e\xa9\x01\x5c\x01\xb6\xcf\x9f\x4b\x5a\x65\xe3\x19\xee\x92\xef\xa0\x8c\xd8\xaf\x0e\x9c\xa4\xaf\x8c\x8c\xee\xb7\x79\xfc\x0d\x8f\x26\x99\x77\x9f\xb8\xf1\xde\x6e\x04\x59\xdd\x09\x5b\xfc\x33\xd7\x65\x59\x8b\xb1\x59\x02\x83\x33\x8f\xac\xf4\xc8\x19\x42\xa2\x83\x0f\x40\xd1\xe3\xad\x39\x3b\x56\xfe\xbd\x0f\x96\xef\xfd\x99\x9f\x86\x86\x06\xc7\xb1\xc5\x1f\xaa\x5b\x9c\x2c\x03\xb8\x1c\x79\x24\x6a\xe0\x27\x00\x4b\x26\xfd\xd2\xf3\x21\x08\xe6\x38\xc2\x9e\x59\x13\x42\xad\x15\xa8\x15\x32\x2e\x4c\xa6\xa4\x49\x8e\x29\x16\xa4\x70\x53\x8e\x2b\xd2\x6a\x94\x47\xdd\x20\x21\x35\xc1\xa4\x26\x70\x07\xc9\xd0\xe0\xb1\xd5\x61\xd7\x0a\x62\x98\xc5\x8c\xa3\x84\xdd\x2f\x42\x81\xd3\x17\x8f\x73\x16\xce\x04\x8d\xc0\x57\x5e\xe7\x8c\x62\xf0\x1f\x92\x9c\x7d\xd9\x75\x6f\xe2\x83\x8a\x9c\xfd\x5a\xd5\x95\xf1\x3b\x5a\xe5\x03\x26\x95\x76\xe3\xec\xde\xee\x0d\x7a\x27\xeb\x8c\xbb\xb0\x24\x17\x7c\x5a\x2a\x1b\xd7\x89\x9d\xf5\x4b\x90\x5c\xc7\xb3\xe0\xd4\xbd\x7f\x4a\xd2\xe3\x9f\xe2\x66\x3c\x1a\x25\x98\x08\xc2\x78\x3f\x97\x01\x09\x76\x54\x1c\x7e\xca\xe9\x93\x04\x76\xc5\x1b\x8f\x73\x4a\x90\x64\x9b\xfb\x45\x50\x75\xb0\x95\x94\xfa\x16\x4c\x18\xb0\x6d\x91\xac\xf9\xbc\x9f\x80\xb4\x79\x29\xb9\x34\xb1\x4c\xe4\xb7\x7a\x0f\x50\xf3\xfb\xbb\xa0\xff\xdb\xef\xef\xa3\x6b\xff\xbc\x0f\xa9\xfe\x5b\x73\xff\xfa\x7d\x0e\x26\xd8\xb7\xd8\xfb\x75\x8b\xed\x0b\x00\x2c\x5e\xd7\x59\xeb\xcc\xc1\x9e\x2b\xf9\x41\x5e\xf1\x47\xd8\x25\x60\xf7\x58\x2f\x23\x80\x7a\x5f\xf2\x8c\x24\x21\xd6\x96\x92\xa0\x80\x56\xda\x0c\xe1\x26\x97\x69\x7a\xea\xf6\x78\xf9\x92\x50\x86\x27\x4d\x48\x8e\xaf\x48\xa9\x66\x68\x0b\x15\xeb\x1e\xd2\x11\x7b\x7d\xdb\x93\xa6\xce\xc4\x36\xbf\x7e\xfb\x19\x43\x1b\x22\x6b\xf4\x9a\xf3\x8c\xce\x41\xc2\x6c\xf6\x88\x6b\x99\x9a\x3b\xa1\xbe\xc6\xc9\x8d\x5b\x29\x8a\x20\xd2\xad\xe8\xc1\x2f\xb7\x8f\x70\xe1\x7d\x81\xc7\x19\x49\x0c\xe1\xf2\x32\xd9\x2d\x44\x22\x8d\xb0\x13\xcf\xed\xe6\x2f\x1e\x41\xc8\xc7\xcf\x3a\xf1\x8a\x0d\x13\x0f\x11\x94\xec\xef\x8b\x5a\x12\x07\x88\xe7\x2d\x53\x45\xd5\xf0\xc5\x44\x6e\x8b\xd7\x62\x87\x11\xd1\x44\x4e\x4b\x09\x51\xec\xd2\x5d\x62\x91\x99\xa3\x98\xf5\xcf\x46\x62\xbb\xd9\x5e\xb1\xbe\x6f\xb7\x89\x4b\x26\xbf\xfe\xde\x07\x1f\x76\x6c\x71\xb3\xeb\x9f\xfb\x60\xfd\xd2\x16\xa7\x76\x6e\x71\x60\x7d\x8b\x9d\xc3\x00\x97\x5b\x8f\xf4\x3e\x53\x02\xb8\x7b\xec\x5a\x62\x69\x03\x0c\x71\xec\x67\xd9\x93\x1d\x0e\x5c\x02\xb9\x5c\x3f\x13\x4f\x53\xdb\xc4\xa3\x85\xf9\xc2\x37\xa8\x87\x14\xce\xc8\xcc\xf9\x55\x51\x74\x35\x6e\xa9\x0e\xbb\x2a\x91\x5f\xe8\x4f\xe9\x2c\xda\x0e\x93\x2f\x98\x0d\x18\x5b\x5a\x48\x92\x70\x76\x45\x26\x8b\x26\xf1\x24\x2f\xaf\x34\x4b\x7f\x7d\x75\x52\x60\xd8\x51\x4b\x36\xed\x73\xc4\x0f\x69\x51\x76\x6e\x6a\xbb\x89\xeb\xc5\x68\xdb\x1b\x8a\x54\x62\x68\xd3\x67\xfb\x28\xb9\xd7\x44\xae\x57\x07\x1c\x10\xd2\x3b\x89\xb7\x3f\x46\x38\x88\x8a\x4f\x10\x05\x56\xae\xd9\x99\x88\x1d\x20\x3a\x13\x7a\x6d\xae\x88\xee\x25\x12\x88\xf2\x16\x3b\x9f\x5c\x21\x59\x10\x07\x4c\x74\x9e\xec\x25\xb9\x10\x27\x8c\x71\xc2\xc9\xe4\xf3\xa4\x60\x3d\x1e\x91\x83\xb8\xab\x24\x4b\x7d\x29\xe1\xea\xf5\x61\xd2\x1b\x1d\x5e\xe1\xdc\x95\x36\xd2\xaa\xb6\x2c\xc0\xf0\xef\xf7\xe5\xaf\xba\x7f\xce\x8f\xfa\xcd\xaf\x63\x5b\x1c\xf9\x7d\x1e\xda\xda\xb7\xd8\xd0\x0e\x70\x5d\x9d\xf6\x7b\x45\x1b\xc0\xdd\xd6\xab\xf8\x5c\x31\xc0\x3e\x5c\xbc\xd5\x9e\xdc\x06\xde\xfc\x43\x0f\x56\x22\x5f\xc3\x2e\x71\x1d\xbe\x8c\x80\x12\xaa\xba\x42\xbf\xc4\xa0\x07\x8e\xb2\xac\xfe\x50\x0e\xe9\xf0\x95\xe2\xae\xbb\xa6\x52\x6a\x85\x24\x7f\x37\xb1\xd0\xb6\x37\x0b\x25\xb7\x5a\xb5\xe8\x3e\x32\x4c\x25\xc7\xba\x35\xe8\x73\xe8\x1d\x26\xdf\x0a\x7a\x67\x7c\x4f\xd3\x9d\x7c\x22\x6e\xde\xb8\x5d\xe5\x3b\x69\x35\xf7\x9a\x49\xb5\x22\x96\xd4\x50\x11\x6d\xc6\x2e\xc7\x44\x32\x68\xab\xb6\xb8\x26\x6d\x43\xa2\x1d\x62\xb4\xfc\x21\x51\x49\xda\xff\x89\xd9\x92\x4f\x74\x8a\xc4\xb0\x7a\xc9\x5c\x48\x84\x4c\xf2\x27\xbc\x31\xce\x17\xe1\x21\x8d\x93\x1e\x19\x8c\x0a\x8b\x93\xb9\x49\xa5\xba\xb4\x42\x71\xe4\x50\x12\x56\x4b\x50\xd0\x8a\x8c\x25\xdb\xa8\x2e\x08\x74\x92\x9b\xc9\x75\xca\xda\x02\x48\x4c\x33\xf9\xa9\x72\xc5\xdf\xf7\x22\x25\xf7\x3f\x24\x1d\xdc\x9a\x73\x36\x7e\x8b\x6f\x6d\xb6\xd8\x5d\xbe\xc5\xda\x0b\x5b\x2c\xd8\xbd\xc5\xdc\x6f\x00\xb7\x8f\x9d\x79\x91\xea\x03\xf0\xc8\xed\x26\x57\x74\x34\x0c\x3f\x76\x61\x99\x0c\x3e\x07\xcc\x12\x07\x79\xe6\x3d\x33\xa8\x93\xf2\xd2\x42\x97\x9d\x1b\xa8\x8e\xaa\xe6\xe2\x5a\xd6\x09\xd4\x7d\x3a\x99\xb2\xd2\x66\x6d\x94\x10\xa3\x6a\xe5\x5e\xe3\x15\x8a\x90\x65\xad\x3a\xb3\xfe\x57\x8a\x92\x23\x97\x5a\x8a\x4e\x28\x79\xd3\x37\x5a\xfb\xac\x86\x3e\x79\x31\x1c\xa3\xad\xa6\x72\x99\x5c\x97\x76\x51\x57\x4e\xb1\x88\xac\x56\x38\x67\x60\x24\xdb\x4c\x56\xae\x63\xd6\xff\x28\xe5\x47\x96\xed\xdc\xa3\xaf\x21\xa1\x4e\xa6\x1d\xea\x34\xf8\x22\x46\x4f\xa6\x99\x4a\x33\xa8\x17\x09\x24\xb3\x2d\x65\xeb\xed\x11\x6e\x22\x5f\xc1\x05\xe8\xdd\xfd\x33\xbf\x3c\x19\xc8\xee\xaa\xc1\x02\xf9\x14\x3e\x72\x9b\x12\x9a\xdf\x91\x52\x48\xb9\x21\x57\xc6\x7f\x94\xd2\x43\x11\x93\x15\x06\x58\xdf\xba\x1f\x02\xb6\xe6\x5a\x1c\xff\xaf\x7b\xe0\xc3\xef\xdf\x5f\x6c\x8b\x25\xb4\x5b\xcc\x17\x02\xb8\xf2\xee\x88\x67\xda\x2c\x00\xb3\xfb\x39\xbb\x78\x5a\x40\x73\x39\xdd\xd6\x09\x2d\x80\xb9\xc7\xca\xcc\x0a\xbe\x13\xe0\x25\xba\xf4\x30\xcb\x95\x07\xae\xc8\xce\xf2\xfe\xb2\x1b\xa3\xb6\xaa\xee\x11\x46\x98\xcf\x52\xed\xb5\x90\xe2\x7c\xc6\x24\xea\x31\x03\x46\x99\x4c\xc3\x3d\x94\x55\xb3\x87\x72\x15\xba\x83\x94\x6a\x87\x39\x25\x35\xad\x34\x4a\x96\xe7\x01\x65\x29\xb5\x01\x8a\x53\x48\xa8\xea\x2d\x25\x4f\x8a\x5f\xfc\x75\x15\x4d\x79\x2c\x85\x23\xeb\xbd\xba\x98\xac\x1d\xe5\x61\x11\x51\x7d\xb7\xd4\x1b\xca\xd1\xda\x41\x0d\x26\x89\x38\xf2\x8f\xf6\x9f\x9a\xf6\xa2\xd1\x64\xf4\xe0\x2e\xf5\x79\x91\x3d\x64\xd2\x14\x97\xda\x88\xf0\x5d\xf2\x8b\x85\x00\x8d\x5c\xa1\x14\x72\xf5\xe6\xb0\xe6\x01\x81\x57\x14\x36\xf2\x53\x65\x4f\x7e\x16\x4a\x0b\xe5\xb1\x6c\x03\xdf\x4d\xea\x5e\x4a\xbc\xd4\xa5\xc7\xbb\xa8\xaa\x94\x5f\x62\xfc\x00\xdc\xd6\x42\xb2\x74\xb2\x00\xc2\x33\xc2\x83\x67\xdf\x02\x48\x19\x89\x8f\x5d\x89\x03\x50\x8e\x95\x9c\x66\x8c\x02\xd0\x7a\x2d\xed\xc4\xf4\x1e\xc0\xd0\x54\x9e\x8e\xfd\x17\x80\x71\x81\x0a\x27\x8f\x03\xa0\x4d\xb8\x34\x66\x85\x69\xc0\xce\x44\x46\xbf\x49\x36\x9b\xfa\xc9\x04\x65\x1a\xaf\x61\x47\xd5\x37\x31\xb6\xdd\x34\x70\xa1\x0c\x1a\xca\xfa\xec\xb2\x64\xa4\x1c\xd1\xef\x09\x97\x74\x44\x92\x6d\x74\x39\x92\x2f\x7b\xa8\x92\x16\xb4\x1e\xe4\x6b\xfb\x1e\x27\x75\xaa\x07\x54\x70\xfa\x71\x93\x2e\xa9\xb2\x35\x5d\x0d\xde\x4d\x1c\x50\x56\xef\x7c\x16\x2a\x41\x74\x57\x38\x3c\xbc\x19\x86\x24\x7c\x93\x2d\xfe\xec\x16\xe5\x4b\x40\x49\x79\x2e\xc5\x45\x32\x12\x06\x25\x96\xd1\xee\x91\xcf\xff\xdb\xff\x20\xde\x11\x33\xc0\xce\xfa\xde\xda\xc0\x49\x1c\xc3\x36\xfa\xa1\x17\x4a\x25\xbc\x71\xc9\x5e\xb9\xdf\xaf\x4b\x1a\xe3\x56\x3c\xaf\x7f\x08\x93\x3e\x89\x03\x4f\xcd\xb7\x3a\x32\x9c\x78\x66\x8f\xfe\xc1\x59\x59\x19\xbc\x8b\xbb\xf5\x1f\x0f\xe4\xae\xfc\x5e\xfc\x2b\xb7\x03\x00\xdc\x37\x04\x33\x69\x71\x7f\xd7\x41\xf6\x88\xa8\xf0\xe5\x60\x00\xd5\xdb\xe2\x95\x0c\x0c\x00\xba\x9b\x92\xc0\x34\x0e\x60\x4c\x27\x17\x76\xff\x01\x80\x79\x84\x92\x15\x4f\x30\x6c\x58\x31\xab\xbd\x16\x91\x07\x6f\x2b\x79\x1d\x07\x59\x39\xea\x88\x19\xaf\xc9\xb8\xa6\x08\xf5\xa2\xb9\xb6\xb5\x8a\x31\x82\x92\x60\x6c\xe1\xf9\xc1\xba\x93\xbc\x60\x78\x39\x34\xc6\x39\x84\xcc\xad\x17\x99\x18\xe5\x25\x4c\xea\xd2\x16\xcf\x6d\xf6\x73\x23\xb6\x6a\x1d\xaf\x88\x0a\x8b\x22\xaa\xa9\xcb\x34\x32\x47\x90\x08\x83\x2a\x3d\xdd\xcb\x31\xc6\x04\x2d\xc5\x92\xd1\x9a\xb8\x4c\x02\xad\x9c\xfd\x97\xc4\xf8\x5a\x3c\x56\xda\x74\xf5\x78\x7c\xc4\xff\xcb\x87\x41\x5f\x93\x90\xc2\x6c\x04\xbd\x5d\x3e\x29\x99\x87\x15\x0c\x9c\xff\x71\x43\xfa\x0e\xd6\x22\x70\xe0\x23\x4e\x46\x1c\x77\xd0\x8f\xf4\x6e\x56\x36\x1b\x77\xd9\x7f\xc7\xb0\xa3\x5c\x3a\x2e\xd8\xf7\x4e\x3f\xbf\xfc\x4d\x1c\xd9\xab\xb1\x47\x40\x7e\x0d\x2f\xef\xb9\xbb\xa3\x56\xe1\x1c\x7e\xc6\xb5\x02\x80\x87\x57\x20\x95\x4e\x15\x40\xcc\x4e\x84\xfb\xbc\xf1\x5f\x1f\x44\x93\x53\xcc\x94\xa1\x15\xc0\xc0\x41\x62\x8a\xa9\x1f\xc0\x8c\x43\x3a\x89\x8d\x15\xc0\x5a\x41\x51\x80\x57\x13\xf0\x36\xe3\xaa\xac\xc2\xed\x60\x63\x55\xab\x83\x92\x4b\xa5\x3e\xb7\xfc\x66\x9c\xaf\x35\x4a\xd9\xb0\x3c\x64\x75\xc1\x8c\x85\x22\x6a\xa6\xe3\x16\x63\x4f\x43\x4e\x34\xa6\x0f\x5e\x71\x9b\x25\xf9\x1a\x1e\x4c\xa4\x0f\x18\x23\xae\xea\x3a\xe6\x1d\x0c\x15\x20\x1a\x6b\x05\x54\xfa\x46\xa0\x09\x3f\xd5\xab\x9a\xf7\xc4\x5c\x27\x24\xab\x5e\x7f\xb1\x23\x76\x18\xbf\xa4\xf8\x79\xac\x35\x51\x0d\x1f\x21\x17\xfc\xbd\x21\x69\x1c\xb7\x2a\x3d\x8f\xd0\x4c\xf5\xff\x6f\x1f\x06\x9f\x27\xf1\x09\xdd\x16\x91\xb2\x8a\x95\x52\xc5\x3c\x08\xbf\xf1\xf3\x83\x74\x38\xa6\x31\x54\x7e\xfa\xa4\xac\x0a\xe6\x4d\xa8\xf7\xfb\x44\x39\x01\xac\x6d\x50\xfb\x48\x9d\xc2\x05\xac\x51\xb0\xff\x2b\x50\x38\x85\x0b\xf2\xcd\xeb\x89\x52\x64\xc6\xe5\xfa\x2a\x75\xdc\x53\x3a\x83\x23\x7a\x87\xb5\x38\x2b\x09\xe1\xb3\xdd\xc7\x01\x1e\xb7\xf1\x99\x9e\x60\x07\x10\xcb\x16\x2e\x39\xbf\x0f\x40\x29\x51\xe4\xd9\x15\x3d\x00\x6d\x1b\x51\x02\xa3\x28\x80\xb1\xab\xf8\x28\xf3\x09\x00\xab\x7b\xd2\x01\xf7\x35\x01\xec\x50\xf2\xb1\xbc\xec\xb0\xe4\xd4\xa7\xdc\xf8\xa4\x07\xdc\x1c\xc5\x35\xcb\xe5\xcc\xa8\xaf\xed\xae\x1a\xb2\x68\xc9\x52\x7a\xad\x32\x2c\xa3\x2d\x2c\xc8\x93\x96\xd9\xce\x6b\xce\x95\xe4\x5b\xa6\x88\xc0\x73\x5e\x6f\x49\x17\x8d\xd9\xe3\x5a\x82\x29\x44\x11\xfd\xbc\x9c\x8e\x28\x1e\xc2\xba\x36\xae\x42\x37\x46\x8c\xa0\xac\x79\xbb\x91\x1c\xbf\x81\x2f\x53\x53\xea\x79\x96\x5c\x88\xbf\xa5\xf4\xf9\x6d\x40\xea\x34\xee\xbd\xdc\xab\xd9\xb9\xb4\xbe\xff\x97\x0f\x83\x6c\x93\xfa\x8e\xaa\x89\x5d\x5e\x70\x92\x31\x45\x87\x45\x61\xbe\x71\xca\x4e\xa0\xbf\x44\x52\xdf\xff\x94\x0f\xc5\xf8\x85\x17\x8f\x68\x29\xf2\x62\x9a\xc2\xaf\xbe\x6a\x53\x32\xc0\xb2\x85\x9e\x78\xf1\x59\xc9\x1a\xb7\x3f\x60\xa4\x9d\x47\x79\x12\xf7\x28\x80\xb9\xd9\x4c\x25\x02\x57\xe1\xfb\xa5\xfe\x80\x0a\x05\x2f\xef\xc5\x0e\xc0\xbf\x83\xaf\xfa\x04\x0a\x40\xea\x90\xd0\xd0\xf9\x2c\x00\x65\x59\xc1\x82\x4b\x3b\x01\xf4\x2e\x8a\xd8\xd0\x7f\x02\x30\x63\x13\x37\x62\xde\x04\xb0\xce\x93\x7c\xc5\xf6\x1e\xc0\xa9\x5d\xb6\x80\xa7\x0a\xc0\x65\x4a\xf1\xb4\xd0\x2b\x70\x76\x15\xd2\xb8\x22\x87\xa3\xd6\xbb\x9c\xd1\x3f\xa9\x73\x89\x52\x68\xf7\xd6\xe2\x8c\x95\x24\x39\xc3\xfa\xa9\xe3\x4b\x57\x34\xa9\xdd\x62\xce\x17\xe9\x97\x41\x34\x31\x1d\x8c\x15\x89\x74\x27\x64\x1b\xed\xcb\xca\x8d\x9b\x24\x9c\xd0\x1b\x2b\x6d\x48\xda\x87\x3f\xaa\x73\xad\xc1\x20\xbd\x6b\xdb\x87\xc1\xfe\x50\x96\x9f\xac\xce\x89\xc1\x7a\xcb\x67\x2e\xe4\xe6\x56\xfc\xb7\xff\x81\x4f\x95\xaa\x41\xf6\x26\x7a\xaf\x34\xcb\x50\x90\xa8\xc4\xca\x6f\x9a\xf2\xbe\x28\xc7\x84\xd0\x0f\x4f\x14\x39\x51\x6d\xf1\x33\xa3\x4e\x4a\x39\xe8\xd0\x98\x6f\xfd\xdd\xca\xdf\x31\x7b\xa2\xf0\x3d\xe2\x2a\x4a\x98\x77\xe1\x7a\xed\x4c\xaa\x5d\x58\xfa\xb0\x4b\x0d\x3d\xea\xc5\x58\xaf\x90\x81\x9a\x14\x8d\x26\xec\xcf\xa0\xe9\xaa\xb3\x1a\x9c\xb8\x3e\x5f\x3c\x80\x50\x1a\xdf\xb7\x53\x57\x01\xa4\xf0\x7c\x82\x67\x92\x00\xd4\x6e\xf3\xa7\x5f\x94\x05\x30\xac\x16\x66\x65\xa0\x05\xb0\xfc\xfc\x04\xcb\x34\x02\xe0\x80\x13\xf3\x60\x7d\x0c\xe0\x4e\x27\x93\xc9\xfb\x0e\xc0\xcb\x59\x5e\x54\x38\x17\xca\xbc\x58\x54\xf6\x4b\xb3\x53\x2b\x3d\xec\x75\xd5\x74\x46\x29\x99\x2e\x16\xa6\x7e\xd6\x3b\xc8\x12\x76\x23\x76\xb7\x3c\xa6\x88\x3f\x6d\xf7\x79\xad\x85\x86\x12\xcf\x9b\x3b\x44\x3f\x89\x4e\x23\x70\x19\x3f\xcc\x9c\x4e\xd4\xc5\x7b\x1b\xec\x2c\x7d\x96\x5a\x82\xeb\xd2\xd1\x6e\x94\xc9\x74\xde\xf6\x61\x30\x11\x2a\xb6\x53\xe7\x8a\xf0\xdb\xde\x03\x56\x57\x76\x68\x23\x2b\xb7\x6f\x7b\x3d\x36\x88\xb2\x6b\x9b\x7b\x32\xcf\xce\x92\xe5\xe3\x91\xba\x29\xdd\x9f\x38\x15\x97\x90\x3e\x29\xd8\xb7\x3b\x95\x2f\xa3\xd2\x12\xd6\x5f\x1f\x52\x69\x45\xdf\x88\xa3\x74\xff\x54\xa7\x47\x0b\xc7\xef\x7d\x7e\x58\x43\x0e\x43\x13\xb3\xe3\xd9\x8c\xe6\x3a\x46\x25\xaa\xef\x29\x68\xe9\x62\x2f\x84\xd3\x57\xd6\x6a\x55\x63\xb3\x42\x2a\x4a\xa5\xb5\x25\x70\x0c\x81\xab\x00\x22\x77\x78\xbf\x9d\x54\x04\x90\x4f\xe4\x3b\x7d\x76\x01\x40\x23\x9c\x7f\xe1\x92\xd9\x5f\x0f\xc2\xfa\x8b\x50\xec\xcd\xa7\x00\x2e\xe8\x27\x29\xf7\x6a\x00\xbc\x7a\x24\xc5\xb9\xba\x01\xfc\xba\x65\x6f\x08\xbd\x81\x0a\xff\x65\xc5\xd7\xd2\x7a\xd4\xef\xfe\x97\x34\x77\x6a\x8e\x53\x86\xbd\x8e\x1a\x4e\x58\x7c\x27\xdf\x70\x3a\x63\x83\xf4\x92\x26\xfa\xdb\x61\x3d\x65\x23\xac\x08\x52\x56\x5d\x11\xe6\x89\x87\xf0\x5e\xa6\x88\xf4\xbb\xa9\x54\x5c\x81\xe1\xb3\xd2\xa4\xac\x50\x6c\xb6\x9e\x79\x03\x36\xdf\x0c\x93\xa7\x45\xdb\x87\x29\x76\xc5\x30\xa8\xac\x4e\x9d\x2f\xe9\x40\xcb\x2b\x64\xad\xd6\x97\x3f\xf9\xef\xf5\x58\x94\x55\xa0\x47\x84\x66\xfb\x7d\xd6\x57\x96\x47\x6c\x66\xad\xbd\xf9\xae\x76\x7c\xd3\x3d\xb3\xb5\x1f\xa5\x7e\x15\x99\x9d\xda\xf6\xe2\x8d\x46\x08\x8a\x36\x85\xa3\xed\xb9\xc6\x30\x5a\x3e\xfe\xfa\xb3\xaf\xda\x07\xd0\xe5\x71\xfb\xaa\x7d\xb5\x37\x30\xe1\x51\x37\x2b\x6e\xe8\x1c\xc1\xb2\x84\x1f\x2e\xfa\xa0\x6b\x82\x8d\x0d\x95\xcb\x8f\xd2\x13\xc3\x0e\x84\x88\x03\x88\xca\x73\x99\xd0\x75\x03\x28\xee\xe7\xbd\x70\xe6\xeb\x3f\x3c\x88\x90\xc7\xa7\xae\xd2\x01\x38\x9c\x16\xbc\x7c\x73\x00\xc0\xa3\x5c\x24\x98\x75\x2f\x80\xdf\x0e\x89\x8f\xdc\x68\x80\xa0\x55\xe9\x97\xc2\x67\x20\x39\x7c\xaf\x02\x8d\xac\x24\x75\x3c\x98\x5e\xfd\xb9\x56\x17\xa5\x21\x40\x5e\xdf\xdb\x4a\x80\xf4\xc9\x83\xd5\x6a\xdd\x57\x99\x30\xe3\xbc\xe1\x7c\x3a\xa6\x13\xef\x65\x5b\x18\xf6\x38\xed\x38\x4e\xc1\x92\x2f\x05\x9f\x13\x8e\xd9\x30\x79\x5f\xca\x59\x7c\x0a\x23\x6b\x10\xd7\xd0\x5b\x1a\x8b\xbe\xa7\x1d\xd6\x9f\x52\x99\xbf\xed\x81\xa0\xf4\x14\xe7\x56\xb4\xab\xe9\xd1\x04\xf9\xc6\xb5\xfc\x12\xc3\x55\x7f\x45\x96\x75\x91\x22\xc4\x97\x76\x15\xe2\x7a\x5d\x51\xee\xbb\x4b\xea\xb5\x1b\x36\x05\x4b\xaf\x63\x35\x8d\x10\x9a\x79\x3c\x2f\xf8\xb4\x06\x37\xfd\xb3\x82\x9f\x37\x6b\x77\x23\x03\xd3\xf0\x0d\x8c\x3a\xf9\xa8\xb8\x24\x64\xf5\x4e\x3d\x6d\xf4\xbd\x84\x94\xd2\x36\x7d\x2e\xf4\x6a\xac\x73\xe1\x0d\x83\x12\x0c\x73\x8c\x6f\x4e\xb1\x41\x05\xf6\x4e\x78\x65\xba\x9a\xd1\x6e\x6c\x7e\xa8\x1f\x80\x38\x2f\x0f\xf7\x49\x4b\x00\x25\x09\x6e\xb9\xd3\x0b\x00\xfa\x72\xdc\xe9\x17\xf6\x01\x58\xc5\x3c\xb6\xbe\xe6\x0f\xe0\xa2\xc2\x7f\xf1\xe6\x79\x00\x1f\x6f\xa1\xb8\x7b\x67\x01\x42\x98\x44\x3b\xb9\x34\x00\x22\x34\x24\x79\x04\x57\x21\x27\xea\x98\x5c\x92\x4c\x3e\xf5\x6b\x64\xad\xca\x37\xad\x07\x94\xf2\xf0\xdb\x3a\x5d\x56\x2b\xe4\xe3\x7e\x19\xe6\x47\xbc\xe3\x08\x7d\xae\x99\x4e\x5e\xb1\x11\xb8\x4e\xc7\x85\x80\x77\x59\x42\x58\x5f\x6b\x62\x92\x4a\x41\x3b\x86\xcb\x3c\xae\xd0\xa5\xcc\xe8\x8f\x0f\x73\x42\x27\xe0\xf5\xae\x9a\xa5\xcd\x58\xb5\x3d\xb3\x9f\x1b\x58\xb7\x7d\x18\xe4\x5e\xc5\xa1\x95\xc5\xca\xfa\x1f\x08\xd5\xec\x55\xb7\xca\x0b\xef\x53\x35\xf6\xae\x1b\x95\x30\xbd\x96\xd3\x6e\x5a\x37\x2d\x79\xdd\x5d\xab\xcb\xb0\xf1\xaa\xa0\xbf\x39\x52\x0f\x85\x80\x1c\x54\xfd\xac\xfe\x35\x24\x53\xc6\x40\x95\x8a\xc1\x33\xe4\xa7\x34\xfd\x92\x65\xc3\x12\x54\x69\xb2\x70\x7e\x96\xd1\x5b\xb4\x44\x42\x43\xd6\x6e\x63\x73\x8c\x6c\xcc\xad\x34\x2e\xe3\x4f\x18\x54\xe4\x85\x24\x3b\x93\x75\xac\x60\x78\x15\x80\x64\x3e\x17\xef\x89\x57\x00\xaa\x1e\x1c\xc8\xd3\x07\x01\x8c\x0a\x39\xf3\xcf\xcb\x03\xd8\x9d\xe7\xe1\xbe\xea\x04\xe0\x29\xc1\xeb\xca\xf8\x06\x20\x88\x89\x6f\xf1\x8e\x3b\x40\x24\xa3\xb0\xea\x23\x0d\x80\x98\x40\x09\x51\xa1\x66\xe8\x4f\x48\x96\xea\x97\x54\x87\x9d\x09\x3d\x8a\x02\xea\x3f\x28\xe5\x71\x17\x34\xe7\xac\x90\xe4\x43\x61\x71\xc6\xb6\xde\x5f\x08\xc1\x7e\x57\xec\x9a\xe3\x1d\x70\x42\x2e\x2f\x7d\x59\x72\xc6\x30\xa5\xf6\x7b\xe3\x8f\x97\x74\xa2\x6f\x59\x36\x15\xd8\x55\xcd\x23\xc7\x4c\x76\x36\x8a\xd6\xa5\x6e\xee\xd4\x63\x1d\x2a\x6c\xde\x8b\x38\xa0\x16\xb2\x50\xdc\x82\xdc\x94\x51\xe9\x59\xb4\x69\x18\x9a\x1f\x50\x7b\xb1\xb4\x59\xf7\x7c\xf2\x86\x96\xdd\x4a\xf0\xd3\x90\x21\x01\xdd\xbd\xab\xc9\x55\x37\xbb\x51\xfa\x17\xd6\xf7\x96\x99\x3f\x97\xd0\x5f\xd8\x70\x2c\xe2\xa8\x3d\x61\xac\xb5\xf1\xbd\x50\xb2\x9c\xcd\x64\x13\x31\x92\x67\x50\xa4\x63\xd2\x82\xd4\xce\x68\xce\x0d\x35\x79\x81\x2a\x4f\x4e\x4a\xef\x36\xbf\x81\xea\x4e\xb6\x4c\x29\x33\x3f\x80\xce\x8d\x2f\x4a\x48\xb1\xa0\xc3\x9c\x88\x2d\x8a\x5d\x36\xe7\xc0\xde\x88\xd0\x07\x90\x7d\xfe\xe8\x06\xdd\x28\x80\xd6\xbe\x87\xfc\xa7\x38\x01\x4c\x49\x9c\xec\xe7\x57\xfe\x73\x1e\x38\xf5\x2e\x33\xfe\xf5\x20\x42\x99\x79\x83\x98\xb4\xfe\xfa\x20\xa9\x53\x22\x96\x7c\xef\xe0\x5d\xea\x27\x89\x4a\x09\x73\x2a\x2e\x1d\x2d\x4f\xab\x91\x48\xe9\x4c\xe6\x54\x0f\xb1\xdc\x20\xe1\x62\x0f\x18\x4c\xfa\xa4\x12\x4c\x43\xf7\x58\xa7\x26\x88\x62\xc5\x3c\x2d\x3c\x98\x0b\xcb\xd0\x2a\xce\xc8\xc8\xa4\x2a\x4b\x64\xba\xed\xab\x9c\x92\xfa\x9f\x9b\x3b\xcd\x90\x0d\xb4\xcd\xc3\xeb\x0d\xfa\xf5\x6f\x18\x3b\xbe\xad\xbd\xd4\xec\xfb\x69\xd3\x55\xb4\xb1\xa9\x56\xbe\x10\xd0\x2a\xf0\xc9\x50\xc7\xe7\xd7\x8f\x66\xed\xe1\x6b\xfa\xd9\x4b\xaf\x9f\x45\x77\x97\x1b\x89\xae\xc8\xd6\xb2\x35\xbb\x1b\xaf\xae\xed\xa9\xfc\x5e\xb5\x60\x16\xb6\x6e\x57\x76\xb6\x6c\x97\x39\xcf\x86\x77\xd1\x5a\x81\x82\x85\x10\x22\x2a\x3f\x36\x83\x6c\x95\xb8\xc9\x9d\x6b\x94\xca\x60\x25\x87\x8c\xce\xf0\x4e\x70\xb6\x2e\x45\x9d\x4a\xf3\x8c\x0d\xb2\x9a\x44\xeb\x24\x1e\x8a\x14\xb0\xb9\x89\xee\x8b\x97\x0d\xed\xb6\xfe\x8a\x19\x8d\x32\xf9\xc7\x3a\x4c\xdd\x0f\x3b\xc9\x00\x60\x8e\x7f\xe0\x78\x96\x01\xc0\x75\xf4\xd1\xce\x4b\xd6\x00\x81\x5a\x9c\xd3\x0c\xdc\x00\x91\x9d\xdc\xaf\x6e\x97\x00\x24\x39\xf3\xe6\xde\xab\x05\xc8\xd4\x14\xbe\xc4\x77\x1b\xe6\x72\xd3\x44\xcb\xc5\x5e\x52\x09\xf9\x0d\x32\x61\x1a\x9a\x94\xd9\xdc\x83\xca\x62\xe6\x54\x52\x63\xda\xb4\x6e\xac\xdf\x3b\xc2\xee\xf8\x3b\xe6\xcd\x49\x2d\x98\x4f\x81\x8f\x5d\xa6\x8a\x07\x91\xbf\x3c\x38\x43\x7b\xea\xd6\x37\xf7\x3a\x3a\x64\x3e\x6d\xe1\x5b\xff\x65\x75\xe2\x19\x6b\x27\xc3\xca\x57\x43\xa6\xf7\x34\x7d\x7b\x57\xe3\xb4\x83\x7e\xb4\xf7\x8c\xcd\xd4\xe9\xb6\xfe\x7c\xd1\x55\x38\xc2\x62\x94\xb2\x60\xda\xc6\xd3\xd5\x6b\x3a\xbb\x28\xd2\xdc\xd0\x74\xd5\xbc\x68\x59\xe4\x99\x52\x75\xaa\x45\xdf\xaa\xf1\x53\xda\x6d\x0f\x24\xbb\xdc\xa6\x66\xfd\x47\xa9\x68\xaa\xac\xdd\x31\xc4\xbe\xc2\xe7\x49\x18\x5b\xa5\x4d\xd1\x5c\xf3\xd8\x0e\xbb\x74\xe4\xe9\xac\x90\xc8\x75\xbb\x10\x94\x70\xea\x72\x68\x9d\x7d\x14\x6a\x2e\x59\x29\xd8\xc6\x7e\x07\x7a\x34\x5e\xcc\x4f\xd0\xc1\x02\xe3\x18\x23\x01\x20\xff\xed\x41\x3a\x9d\xf4\x5f\x0f\xc2\xf6\xde\x7d\xc4\xb9\xc3\x00\x5e\x71\xf7\xe5\x2f\x6c\x00\x84\x5d\x7b\xe0\x71\x55\x0f\x20\x71\xf5\x51\xf3\x8d\x0e\x80\xcc\x97\xbc\xbe\xec\xba\x00\xf9\x79\x02\xfb\x79\x84\x00\x4a\x7b\x84\xcf\x88\xc4\x81\x71\xf9\x67\x71\x69\x05\x02\x85\x58\x96\x2a\x5f\x6b\x16\x49\xbe\x53\xcc\xac\xee\xe0\x25\x45\x60\xce\xa4\x37\xde\x95\x58\x84\xc6\xc4\xd4\x39\x54\x95\xbf\xd8\x3c\xec\x27\xe6\xdf\xd2\xc2\xbf\xbe\xe2\xd6\x9b\xd2\xd3\x99\xbc\xc2\x67\x7f\xa5\xfe\x66\xbf\xce\xaf\x4d\x63\x99\xa9\xfe\x11\xfe\xf9\x01\x03\xa9\x6f\x75\x03\xcc\xa3\x3c\x66\x35\x3f\x9a\x5e\xde\xe8\xe2\xb3\x32\x98\xbb\xda\xad\xf4\x8c\xdb\x26\x7c\x01\xdb\x76\xb8\x0c\x61\x37\xb8\x74\xb0\xa9\x37\x0f\x61\xff\x65\xe5\x71\x5d\x66\x3a\xc6\xf1\xde\xea\xbb\xea\xe8\xa4\x04\xa7\x3d\xeb\xb7\xca\x5f\xc7\x7e\x73\x3a\xb4\x31\x58\xd4\x16\xd1\xe6\x7c\x05\xf1\x26\x5f\x2b\x62\x97\xd3\xb5\xcd\xaa\x1c\x9e\xc0\x01\xe7\x0f\xc8\x8c\x8c\x7e\x7f\x5f\xe7\x50\x94\x7b\x2a\x9f\xcf\xa2\xd3\x0c\x3a\x3e\xc1\xcb\x43\xdd\x79\x16\x23\x13\x7b\x1c\x40\x09\x7f\x9f\x9b\xee\x22\x80\xc9\x6e\xb6\x81\x93\x68\x00\x07\xec\x7d\x9e\x73\xda\x00\x3e\x3a\x6c\x3e\xe7\x03\x00\xa2\x98\xd8\xdd\xaf\xd0\x02\xa4\x38\xde\x6f\xa7\x37\x04\xc8\x3f\xc0\x69\xc6\xe2\x0d\x50\xc6\xff\x58\x90\xb3\x17\xe0\xe9\xa6\x60\xb8\x48\x17\xc8\xd7\x0b\x88\xd6\x29\xb1\x51\x0f\xd7\x1b\xc8\x38\x98\x4a\x93\xa5\x6a\x3e\x29\xdb\x7a\xbc\xc2\xcf\x95\xdc\xd5\x3f\x93\x7c\x16\x3d\x99\x3e\x6b\x9d\x59\xc1\x8c\xd8\x15\xea\xea\xb3\xa7\xcd\x65\xf9\xbd\xdf\x5a\xbc\xf7\x40\xd3\x42\x9f\xcb\xcb\xba\xf2\x31\xed\x39\x37\xf3\xaf\x1f\x94\xc6\x7d\xdf\xdf\xb6\x72\x9d\x3e\x35\x7a\xbc\xbb\xc4\x8e\xfa\x6d\xe9\xf5\xcd\xa7\xd5\x4e\x03\x3f\x8f\xf7\x8c\x14\xf7\x3b\xcf\xcf\x7f\xee\xe8\xc9\xbe\xe0\x7a\x6a\xd1\xa1\xc5\x2d\x79\xd3\x8d\x7d\xd9\xf1\xd9\x62\x5c\xab\x9b\xc4\xaa\xcd\xd3\xcf\x51\x93\x6e\xaf\xd7\x22\x2b\x07\x83\x73\x3d\x36\xd7\x9b\xcb\x8c\x02\xeb\xdd\xa3\x11\x2a\x85\x57\x7d\xeb\x3c\x6a\x11\xd4\xbc\xaf\xde\x1b\x6e\x23\xc8\xc6\x0c\xdb\x6d\xff\xc3\x73\x8f\xeb\x41\x74\x78\x42\x99\xfb\x45\x57\x77\x8c\x4a\xcc\x22\x80\x2a\x9a\xfd\x36\xdd\x51\x00\x93\x72\xb6\x95\x53\x8f\xfe\x7a\x10\xc1\x45\xec\x13\x97\x86\xfe\xe1\x41\xf8\xb1\x1d\xbf\x16\x0f\x50\x2a\xf9\xf0\x14\xd3\x0e\x80\x1a\x36\x2e\xcb\xfb\x04\x80\x26\x66\xfe\x72\xe1\x09\x48\x6c\xb7\x13\xca\x92\x65\xa7\x6a\x74\xca\x4a\xec\x37\x98\x21\x3b\xb5\xaf\xca\xef\x72\xab\x23\x08\x35\xac\x68\x2c\x27\xf0\xa2\x75\x2a\x03\x4c\x9a\x2b\xbb\xd7\xcb\xd2\x36\x5d\x2f\x76\x09\x2e\xbc\x0f\x27\x44\x5c\x1b\xcb\x9b\x39\xe7\xfb\xb8\x56\xee\x53\xc1\x67\x11\x47\xb7\xb7\x47\x3f\x69\x75\x90\xdc\xaf\x7f\x1c\x7b\xf7\xa6\xf2\xba\xf7\xfe\x2f\x6f\x87\x5f\x65\xfb\xfa\xf6\xcd\x14\xf7\xcb\xa4\xd5\x79\x97\xcc\xb5\x75\x0b\xc6\xb2\xfb\xc6\xfd\x92\x69\x13\x08\xd7\xf3\xfd\xbc\x94\xda\xc4\x19\x2c\xe2\x7b\x69\x65\xba\x36\x25\x88\xd5\x3b\x7e\xcd\xb2\x4a\x3c\xe0\x9d\x57\xf2\x7a\x41\xd9\x53\x3f\x67\x2f\xd8\x78\x51\x7c\xc1\xc7\xda\x8b\x69\x93\x37\x17\x3c\x77\xf8\x28\x22\xc3\x33\xcf\xbb\x13\x3c\x27\x51\xfd\xc9\xb0\xed\x7f\x38\xb3\xf8\x3c\xc2\x84\x45\x63\x01\x34\x77\xb2\x25\xd0\x29\x00\x58\xa0\xef\x39\x9e\x64\x01\x70\x37\x62\x95\xfe\xcf\xfd\x10\xea\x72\xf7\xee\x39\xfa\xbf\x1e\x44\x81\x26\xdb\x9e\xeb\x85\x00\xd5\x5d\xac\x05\x0c\x09\x00\x4d\xa8\x07\x08\x96\x45\x80\xae\xd3\x3c\x46\x8f\x7d\xa1\xab\x4f\x88\xbf\x43\xb2\x8e\x9a\x32\x50\xf5\xa4\x5d\x97\x9d\x9c\xda\x9f\x26\x3d\xee\x32\x45\x90\x7d\xd9\xab\xdc\x1c\xcf\x8e\x6e\xec\x2c\xd1\x99\x29\xaf\x5e\xf3\xaa\x36\xb1\x65\xeb\xd9\x33\xc7\x92\x3d\xe1\xff\xe3\x3d\x62\xaa\x2e\x42\xb1\x92\x79\xf6\x6e\xd7\x97\xe0\x9c\x41\xd2\xf7\x1b\xc5\xa5\x61\x27\x27\x86\x27\xcb\xd3\x27\x43\x37\x3e\x7f\x7d\xd3\x10\xf7\x3e\xb4\xea\x7b\xcc\x6b\x8e\x68\xc5\xe0\x4b\x3f\x3d\x7a\x7a\x42\x1f\x84\xd1\xfd\xda\xd5\xb6\x10\x44\x08\xe6\x5b\xea\x6b\x1c\x0c\x28\x08\xbc\xb7\xca\x5a\xf3\xd4\x27\x2b\xb8\x70\xfd\x70\x85\xb1\xd7\x78\xd0\xcb\x0d\xef\xe2\x35\xf7\xf2\x90\x00\xc4\x7c\x3e\xbd\x6b\x47\xc8\x1d\xe4\xe5\xac\x02\xd7\xa2\xc0\x45\xe4\x58\x3a\xca\xb9\x34\x70\x37\xfa\x42\x52\x80\xd3\x81\xc0\xcf\xe8\x96\xf8\x57\x8e\xfb\xfd\xe7\x30\x95\xd1\x82\x00\xba\xb7\x59\x3f\xd1\x35\x01\x58\x1b\xde\xf1\xa1\x93\x04\xf0\xe1\x62\x56\x39\xe9\x01\x10\xc5\xcd\x5c\x71\xc6\x1a\x20\x9d\x93\x25\xf6\xe2\x05\x80\xd2\xe7\x2c\xeb\x57\x6c\x00\xea\x6d\xef\xd5\x31\x1c\x05\xe8\x14\xbb\xff\xe4\x4e\x18\x40\xbf\x05\x87\x3d\x07\x2d\xac\x8d\x05\xf0\x0e\x89\x22\xa8\xb8\x89\x74\xc1\x11\xf5\x7b\x64\xcc\xd4\x65\xf1\xc3\x0e\x9c\x84\xa1\x0f\x48\xd9\xa6\xa8\x65\x74\xe2\xfb\x62\xd5\xb7\xe5\x3c\x6b\x8a\x43\xbb\x0d\x0d\x5f\xe4\xfc\x38\xfc\xfc\x92\x2b\x4c\xb1\xb5\xbf\x2f\xd6\xce\x1a\x59\xc8\xcc\xaf\xc8\xb3\x7b\xe5\x3b\xdb\x96\x30\x99\xbb\xf9\xfe\xf2\x47\xbd\xe8\x6f\x69\x15\x9f\x2b\xde\xcc\x87\xc5\xa5\x64\xcf\xec\x1b\x50\x0e\x78\x99\x44\x9a\x37\xeb\xa4\xf8\xf1\x25\x7c\x5a\x64\x6e\x15\xf7\x0a\x4b\xb8\xb4\xc2\x56\x7f\xc1\x73\x28\x66\x69\xf5\x5d\xf5\x5b\x77\x64\xec\xad\x35\x6a\x85\x95\xeb\x40\x74\xd7\xc6\x97\xa2\x64\x97\xbc\x28\x0d\x04\x35\xef\x99\xd3\x74\xd4\x23\xe4\xa9\xac\x5a\xc7\xa5\xf0\x9d\x28\x8f\xd4\x5b\xf6\xea\x11\x3a\x68\xef\x84\x56\xbb\x77\x61\xd2\x18\xde\x58\x01\xdb\x8b\x61\x7d\x18\x64\x64\x0f\x80\xfe\x22\xcb\x1a\x2d\x13\x80\xbd\x3b\x93\x30\xad\x00\x80\x7f\x29\x73\xc2\x29\x15\x80\x84\xbb\x8c\x8b\x74\x46\x00\x79\x6c\x37\x22\x4f\xae\x03\x3c\x9d\x67\x2c\x38\x15\x06\xd0\x6a\xc4\xdc\x71\xe5\x32\x40\xbf\xe9\xdd\x61\xc6\x75\x80\xb1\xfa\xfb\x63\x6c\x3b\x01\x3e\x4f\x71\x09\x0a\xb0\x01\xd7\xec\x3b\x3e\x50\xbe\x48\xf1\x59\xf4\x14\xb9\x6b\xb9\x41\x20\x2c\x9f\x94\xb4\x8a\xc8\x40\x7f\x5c\xbb\x23\xd7\x56\xf2\x7c\x65\x65\x4e\x4a\xf3\xcc\x8b\xd4\xd1\xc1\x4f\xfe\xb6\x23\xe3\x2a\xa5\x2c\x23\xec\xb1\xa4\x19\xc9\x28\xc3\x81\xb5\x01\xe5\x19\x44\x90\xe0\x73\xb1\xc9\xdb\x13\x9f\xfd\x84\xeb\x2e\x7d\xf1\x1c\x39\xed\xb3\xb7\x34\x63\xf6\xca\xcb\x7c\xf7\xee\xe2\x81\x05\xf5\xf6\xd7\xae\x1f\xf3\xbe\x2d\x25\x37\xbe\x76\x15\xcb\xbe\xb7\x22\x50\xd7\xee\xc2\x93\xee\xb1\xc6\x59\xe5\xee\xf4\x3d\x75\xff\xfa\x72\xa9\xfd\xb6\xff\xe1\xc0\x90\x64\xbe\x69\x9d\x43\xb4\x8f\x49\xb0\x42\x2a\x64\x96\xda\x30\x25\x8c\xa3\x2f\x26\x3d\xb2\x5e\x8a\x4b\x45\xbf\x8a\x17\xb7\x9a\x8b\xa3\xc1\x58\xc6\xf0\x5a\x8e\xc5\xb6\x61\xa8\x91\x1a\x00\x26\x37\xee\x4e\xd3\x35\x02\x38\xe3\xef\x2c\x9d\x94\x03\x08\xf6\xb9\x29\x4b\xbb\x09\x90\x34\xc8\xe0\x4f\xfb\x04\xa0\x64\x72\x27\x3f\x0d\x0d\x40\xe3\xa3\x2b\xcd\x47\xab\x00\x7a\x03\xe9\x69\x4e\xc4\x01\x8c\x46\x31\x5f\xba\x2a\x00\xf0\xb9\x89\xf5\x08\x13\x17\xc0\x82\xf7\xc3\xfb\x8f\x86\x21\x0e\xf1\x95\xb7\x41\xee\x30\xa5\x9b\xf8\x59\x70\xc1\xec\x25\x71\x37\x66\x40\xdc\x31\xbc\x66\x2d\x64\x63\x5a\x9e\xab\xb0\x7c\xc2\x75\xa9\x43\xe7\x4e\xd3\x66\xbb\xcc\x6c\xae\xed\xe1\x57\x11\x99\x97\x3e\x1f\x08\xbb\x3f\xde\x1a\x38\x31\x51\xde\x9d\x32\x75\xd5\xf5\xd0\xe4\x9d\x0f\x5f\xc6\x35\x5c\x76\xf5\x56\x7e\x6b\x7e\x6d\xed\xbc\xda\x5c\xf8\xf3\x46\x8f\x83\x23\x5b\x9d\xe6\xaf\xb2\xd6\x16\x87\xa6\xca\x93\xcb\xd7\x1a\xee\x3a\xec\x2c\x41\xac\x50\x6b\x82\xec\x2c\x0a\x2d\xd7\x79\xca\x1f\xd9\x3c\x2f\x18\xdb\x48\x2c\x02\x9b\xae\xec\x46\x04\x31\x4f\xc5\xba\x25\xb3\x13\x49\x9f\x75\xda\x8a\x31\x63\x0c\x25\x95\xea\x61\x79\x2b\x6d\x09\x2d\x95\xf8\xc8\x42\x39\xd5\x05\x73\x34\xb6\xcb\x5c\x2a\xb5\x05\x13\x1a\xed\x6e\x2e\x9b\x48\xc5\x4a\x86\x37\x01\x98\x95\xb3\x4c\xd0\x59\x03\xb8\x62\x6e\xd9\x1c\x1f\x07\x08\x7f\xb0\x93\xee\x3f\x73\x67\xdc\xde\xb5\xef\x9f\xb9\x6f\xfb\xcb\xad\xff\x73\x47\x5b\x68\x82\xff\x27\xef\x3a\xb0\xe3\xee\xff\x78\x00\xe2\xcc\x9a\xd7\x76\x00\xa0\xe3\xd8\x15\xee\x5d\x05\x32\x75\x17\xf7\x47\xf1\x5e\x4a\x15\xb1\x5b\xe8\x84\x79\xce\x06\x09\x3b\x2e\x8e\x0c\x7a\xff\xb9\x1e\xc9\xa5\x38\x92\xc5\xf2\xf2\xee\xda\xb0\x1e\x67\xd5\xb7\x6a\xf3\x45\x35\xdb\xb2\xb6\x37\xf1\xce\x3f\xe2\x82\x79\x5f\x3f\xf6\x69\xfd\x96\x50\xdf\x39\xf2\x78\xdb\x03\xb1\x7e\xfd\xc1\xe2\x7b\x58\x7f\xa2\x55\xc9\x00\x79\xde\xae\x23\xd1\x4a\xe5\x45\xc1\xe2\xc9\x16\x1e\x2b\xaf\x16\xfc\x72\x45\xbd\xb1\xd5\x9e\x67\x46\xab\x4d\xd5\xd7\x2d\xde\x3d\x0d\x5c\xa7\x94\xb8\x5b\x74\x55\xf8\x21\xe8\x0b\x26\xcc\x05\x4a\xdf\x6d\xbe\xcb\x9a\x37\xf3\x2a\xd2\x45\x5d\x4d\xfd\x60\x4a\x2c\x38\x80\xc2\x26\xe9\x99\x32\xe5\xfd\x40\x57\xc6\xf3\x9a\x56\x66\x35\x60\xa4\x63\x2c\x4d\x5e\x65\x5a\x62\x77\x46\x2c\x1a\x1b\xa7\x7f\xc2\x62\x82\x7f\x01\x58\xed\xb8\x81\x38\x32\x0e\xe0\xf5\x93\xbe\xf0\x88\x2f\x40\xcc\xf7\xad\x79\xb7\xbd\xa0\x67\xa1\x34\x2d\xff\x97\x07\x31\x87\xde\x22\x26\xf9\x7a\xee\xf1\x4d\x00\x80\xbb\x13\x8c\xc7\x00\x49\x41\xf3\xec\x91\x70\xde\x0c\x22\x52\x85\x3a\xcd\xf4\x67\xf6\xe1\x7c\xa4\x2e\x04\xf0\x0c\x77\xa3\x5d\x95\xcd\x13\xb3\x9b\x66\x36\x3e\x19\xfc\x2c\xdd\x5b\xb8\x7f\x35\xc4\x36\xac\x6e\x3a\x8a\x6d\x41\x20\x60\xa5\x7b\xc1\x73\x71\x8e\xa5\x62\xf7\x4b\x79\xf3\x81\x59\xda\x6f\xd3\xaf\x82\x8c\x8c\xe7\xdf\xfc\x5c\xee\x32\x30\x7c\xfb\x55\xe1\xd7\xc1\x56\x5d\x23\xf4\xd8\xa3\xe5\x73\xf5\x5f\x8c\x27\x5f\xdd\x58\xbd\x5f\xdd\x6f\x62\xd9\xb9\xbe\xd6\x51\x5e\x6d\x8c\x6f\xc9\xde\x78\x51\x18\x6f\xcc\xde\x40\xbf\x69\x91\x3d\x6f\x5c\x56\x13\x87\x7c\x94\x79\xc8\x98\xa1\xca\x1f\xc5\x97\xba\xc3\xc8\xbf\x3c\x17\x2d\x98\xd0\x69\x14\x5f\xd2\x86\xfe\x10\xf7\xd0\x30\xa5\xf0\x15\x66\x33\x62\xd1\xd0\x3d\xff\x21\xd6\x27\xec\x8e\xa1\x4e\x2e\x1f\x76\x21\x64\x0f\x80\xdd\x1c\x03\xed\x61\x75\x00\x7f\xb5\x9d\x57\xff\x33\x57\xa2\xfb\xef\xdc\x97\x6b\x8b\x6d\x26\xbf\x3d\x88\x9a\x7f\xe7\x9e\x7f\x7c\x18\xb8\x80\xd9\xab\xfc\x1f\xb2\xbe\xbc\x5d\x80\x34\xa0\xf4\xf3\xbc\x93\x7a\x39\xab\x4d\xea\x14\x3e\x68\x30\xff\x8e\x85\x70\x50\x6a\xc9\x3d\xb8\x6b\x0d\xb3\xa1\x2a\x1e\x2d\x53\x7d\x0c\x19\x6b\xf8\x28\xbb\x24\xc3\x66\x23\xc2\xb6\xb2\xfc\x4e\xc8\xf1\xd5\x3e\xef\x2f\x75\x6f\xdd\xc6\x96\xdb\x72\xb8\x9a\xda\x2d\xae\x2e\x9e\x1b\xb2\x6d\x0b\xd1\xbf\xbf\xc8\xb5\xe0\xf6\xfc\x92\xb6\xdf\x0a\xed\x92\xc7\x33\x3a\x1d\xdd\x19\xf5\x15\xab\xa7\xe9\x7a\x4c\x13\xc9\xab\x1f\x2a\x79\xf5\xce\x0d\xd9\x6c\x38\x14\xd6\xe8\x1d\x7a\x29\xbf\x79\x3b\x67\xaf\xde\x62\x47\x27\xf2\x68\x06\x41\x2f\xaf\x55\x1f\xf5\x20\x25\x56\x8f\xb6\x51\x12\x6d\x12\x1f\xa5\xb7\x50\xdb\x86\x9e\x88\x7d\xa9\x97\x5f\x3d\x84\x89\x89\xb2\xd0\xd7\xaa\x60\xc2\x4c\x47\x1e\xd5\xd3\x2e\xcd\xc6\x8e\x87\x9c\xd4\xbb\x56\xbc\x81\xe3\x0c\x5c\x01\x70\x66\xba\xfa\xe2\xa0\x08\x40\xe8\xef\x1c\x63\x3b\xf7\xdd\xce\xfb\x7a\x59\xff\xbd\x0f\x16\xf9\xff\x95\x7f\x03\xc0\xe5\xb4\x03\xe3\xd8\xfb\x80\x65\x75\x67\x4a\x9b\x23\x52\x0f\xf0\x14\x88\xcf\x4d\xfc\x20\xdf\x10\xb9\xa8\x8b\x7f\x59\x48\x20\xcb\x98\x3a\x8e\xd4\x1b\xe2\x46\xd5\x92\x03\x07\xf3\x7a\x31\x5a\x86\xbf\xe2\x51\xf1\x5d\xc8\x04\x5b\xc3\x9c\x5c\x3f\x1c\x42\xd9\x2b\xae\xf4\x90\xcb\xc9\x75\x7c\x0a\xb9\xf2\xb6\x79\xc8\x5a\x7b\xeb\x44\xf5\x77\x9d\xf7\xab\xcc\x33\x17\x6b\x93\xd5\x11\x6b\x13\xab\xc6\x95\xb7\xd5\xd2\xd7\xbf\xaf\xf9\x95\x7e\x50\x7b\x36\x7f\x79\x23\x22\xff\xab\x86\xe8\x54\x17\x62\x3c\x87\x4e\x93\xeb\xed\xcc\x66\x47\xe6\x39\xcd\xa6\xc1\xdb\x48\x7c\x4a\x96\xe6\xd7\xde\x2e\xf4\xd5\x78\x9c\x16\x43\x97\x14\x7a\x38\x96\x5e\x73\xf4\xb9\x0e\xe6\x47\xc4\x29\xad\x83\xcd\x67\xb0\x0a\xa1\x54\xad\xa5\x67\x96\x58\x9f\x50\x51\xad\x95\x9a\x5e\xdc\xd9\xa0\xab\x9a\xb7\xab\x29\xf8\xbb\xde\x03\x00\x1e\x96\x5b\x73\x6d\x9f\x87\x42\xc4\x16\x5b\x93\xff\xbd\x0f\x66\x6e\xff\x5f\xf9\x37\x9e\x1f\xe0\x5a\xfd\x31\xb5\x5f\x4d\xb0\x7a\x6f\x9e\x89\xfe\x03\x89\x1a\xca\x9d\x2f\x54\xd7\xaf\x45\xfe\x2c\x52\xa1\xde\xd7\x62\x42\xba\x2e\xb3\x62\xe9\x5b\xf6\x86\x20\xa0\xf6\xd3\x73\x5f\xda\x49\xdc\x75\x23\xd1\xf0\x23\x11\x8f\x30\xd6\x36\x0c\x09\x7a\xde\xbb\x50\x4c\x1e\xf5\x59\xc9\x8e\x9c\xc8\x23\x09\x89\x79\xcf\xcd\xd9\x36\xbd\xab\x12\x0a\x4e\xeb\x5a\x22\x98\x47\xd3\x8a\x79\x54\x93\x37\x2a\xd7\x55\x8a\xef\x29\xdb\x6e\x2a\x23\xce\xe6\xb2\x28\xc1\x66\x05\xc2\x31\x7b\x4e\x59\x72\x91\x65\x73\x23\x6d\x4e\xc5\xe8\xab\x39\x92\x9c\x2c\xa3\xda\x3e\x11\x85\x4a\x4d\x94\x50\x3d\x3c\x66\x88\x46\x45\x6b\xa9\xd2\x0f\x46\x61\x3e\x85\x0b\xaa\xd6\xf7\x29\x60\xb5\x42\xd6\x54\x8f\xbf\x90\xc1\x49\xfb\xaf\xab\x0a\x75\x30\xe3\x86\x7d\x45\xd4\xdc\x5a\x5c\x71\xb3\x3e\x54\xd5\xe2\xe6\x0f\x78\x0d\x2f\x06\x80\x80\xdf\xe7\x60\xdb\x87\xa9\xde\xb7\xc5\x9e\x8f\xff\xf6\xe3\x7e\xe7\x3d\xdb\xf3\xf7\x6c\xe5\x39\x73\xbb\x00\x76\x1c\xa3\xa1\xf9\xf4\x01\x3e\xb3\x06\x30\xef\x1f\x66\xa3\x36\xf0\x9c\x16\x88\x6f\xcf\xa3\xb8\x8a\x24\x29\x86\x3d\x5d\x26\xcd\xcb\x5a\x18\xcb\xe6\x14\x10\xd3\xd4\x6f\xdb\x57\xc6\xa5\xe0\x3f\x1b\x36\xf8\xcc\x6e\xfb\x0f\x6e\xf6\xd8\xd3\x6e\xb7\x62\xe5\xed\x2c\x31\x12\x91\xef\x12\x99\x4c\x8d\xd1\x4d\x85\xf6\xc9\xdc\xba\x9a\xa8\x8e\xce\x98\x34\x7d\x55\x15\x94\xdd\x74\x7f\x2a\x61\xdb\x7f\x50\xd8\x83\x5a\x45\x7e\x48\x72\x90\x9b\x43\xf7\xa2\x9e\xc7\xc5\xc9\x4d\xaf\x6b\xa3\x8b\xa2\x86\x14\xce\xfd\xe4\xc1\xf0\x45\x64\x28\x28\x7f\xb9\x89\xa5\x0b\x99\x56\xf0\x9e\xbc\x8e\x5d\x09\x78\xae\xc8\x3a\x2a\x86\x8b\xf6\xcd\x53\xba\x35\x08\x38\x57\x3f\x0d\x45\x93\x57\x27\xf1\xee\x1e\x8e\x4a\x2f\x5f\xcc\xe0\x35\x3c\x03\x94\x4f\x76\x2c\xe2\x1b\xdd\x5d\xff\xfa\x30\xdb\xf7\xe2\xf6\x3e\x78\xf3\x7b\x5d\x7e\xfe\x5e\x07\xb8\xff\xaf\xfc\x7b\xe5\xb7\x07\x61\x0d\x40\xef\x7d\x52\x6b\xf4\x22\x7c\x66\xa3\x61\xea\xea\x3e\x4b\x7d\xce\x3b\x2b\xf0\xba\xae\x86\x7a\x5e\x18\x23\x89\x2d\xd2\x20\xa7\xc8\xf1\xe9\x5e\x4d\xe1\x20\xc5\xa9\xcb\x99\x7f\x09\x17\x27\xd2\x19\x36\xb8\x24\x7a\x33\x12\xae\x59\x29\x79\x7b\xfe\x2f\xff\x21\x1f\xfb\x26\xf3\x78\xe4\xa9\x6d\xff\x41\xad\x02\x53\x3c\xf8\x26\xe6\x93\xc2\x3b\x8c\xce\x5c\x50\x4c\xc6\xb6\xff\x20\x3d\x86\x45\x60\xf7\x07\xf3\x4a\x87\xe2\xae\x63\x1f\x07\xd1\x4b\x4b\xa3\xf2\xb0\x3d\xfe\x91\x32\xee\x8b\x5f\x70\x87\xfd\xf2\x65\x62\xbe\xa3\x71\x08\x4f\x9c\xac\xd3\xe7\x8f\x38\x82\xd7\x39\xb9\xeb\xef\x9b\xf1\x86\x1e\x3b\xe4\xe6\xdf\xc8\xe2\x33\xdc\xc8\x72\xb9\x43\x21\x04\x06\xe7\x3c\x39\x6a\x7f\x36\xc1\xd0\x89\xe5\xef\xbd\xb8\xbd\x0f\xb6\xdf\x0b\xdb\xb9\xe7\x3f\xce\x41\xc8\x3f\xf2\xef\xcf\x5b\x1c\x7c\xb2\xc5\x9e\xbb\xb0\xc6\x4a\xbd\xb5\xd2\xd0\x0f\x0c\x3c\x1f\xb8\xc5\xcb\xb8\xa9\xea\x22\x78\xf1\xf3\x99\xa6\x94\x73\xf2\xbb\xd5\xf1\xb1\xd7\xc9\xb7\xd4\xe7\x8d\x22\x03\x19\x49\xa1\xfa\x65\x16\x13\xee\x23\x44\x7f\xf3\xaf\x8e\x7e\xf6\xec\x84\x71\xc7\xcb\x6e\xcf\xb6\xfd\x07\xc3\xf7\x04\xc1\xc4\x60\x2f\x07\xed\x59\xbc\x77\xd9\x3d\xbf\x36\xb5\x3c\xdc\x87\xf6\x8f\x81\x15\x0a\x95\xb8\xce\xf7\xfe\x01\xc3\x32\x6f\x71\x5a\xcb\x98\xc0\xe8\x3f\xfe\x83\x2f\xde\x19\x57\xec\x75\x6d\xdb\x7f\x90\xa4\xc1\xdb\xe3\xc8\x1e\x07\x25\x7e\xac\x7d\xc6\x7f\x70\x7e\x22\x69\x31\xcf\x49\xb8\xef\x68\x28\x19\x35\x63\x43\x08\xb4\x0f\x97\xb2\xfb\xf4\x99\x90\x63\xcf\x21\x55\x37\xc1\x46\x20\xd8\x60\xa5\x0f\xbf\x15\x20\xde\xb4\x9e\xfd\xbb\x0f\x9e\x4b\xfc\xf6\x40\x2e\x6f\x71\xd5\xe4\x9f\xf9\xf7\x26\xe2\xdf\xf9\xf7\xa8\xd2\x16\x5f\x32\x00\xd0\x7b\x9d\x7c\xd8\xbc\x0f\x56\xd9\x75\x6e\xdf\xae\xa4\x07\x05\xde\x87\x1c\xc6\x39\x63\xd4\x0e\x91\x11\xa1\xf8\x84\x6e\xca\xb4\x2c\x55\xfe\x54\x58\x31\x99\xaa\x36\xa0\x49\xf4\xb6\x22\xdf\xd7\x8f\x35\x8a\x75\x92\x23\x55\x99\xa9\x99\x67\x6c\xfb\x0f\x66\xc6\xc4\x0f\xde\xcb\x76\x14\x83\xaf\x44\xab\xe8\x70\xa7\x2b\x5a\x3f\x88\x0f\x72\xcc\x9d\xb9\xd4\xe8\x08\x43\x35\x3f\x5d\xbd\x15\x1f\x10\x2a\x5e\xcc\xb8\xea\xcb\xa6\x11\xf6\x7e\x48\xf2\x70\x96\x62\xc7\xc3\xf2\xb8\xbb\xa6\x38\x86\x60\x88\xcf\x77\x46\x88\xcd\x13\x28\x04\x11\xfb\x6c\x31\x41\xa2\x2a\xa1\xc8\x76\xa7\xa8\x39\xf1\x35\xf1\x82\x65\xac\xa8\x18\xa6\x9e\x68\x60\xde\x2f\x46\xbb\x9a\x46\xb4\xb0\x38\x2c\x26\x3a\xd7\x4b\xec\x34\x5d\x14\x4b\xff\x71\x97\xf8\xc6\x34\x45\x6c\xea\x0b\x07\x11\x4c\x14\x00\xaa\x8f\x6e\xcd\xfb\x2a\xea\xf7\x7d\x68\xf2\xcf\x73\x40\xc0\xfc\xce\xbf\xf3\xfe\x2b\xff\x2e\xd8\x62\x0b\x1b\x00\x63\xc2\x69\xc1\xaa\x0f\x00\xac\x28\x86\xba\x7c\x0f\x28\xe6\xce\x60\x5d\x4a\xb1\xa3\x52\x9e\x9c\xe3\xcb\x8b\x04\xaa\xbd\x8c\x8d\xf8\x65\xbf\x14\x4a\x92\x1a\x4e\x59\xcc\x55\x8a\x72\x54\x8f\x47\x33\xc2\xf6\x1d\x59\xda\xf4\x8b\x61\xd0\x1f\xff\xe1\x00\xa9\xde\x73\xc6\x3c\x4b\x5f\x81\x64\x1f\xd6\x6e\xf9\x5a\x13\x41\x32\x4d\xf1\xb5\x1c\x50\xbd\x40\xba\x54\xb2\x6a\x1d\xb7\xed\x3f\xc8\x76\x13\xdd\xfb\xc7\xed\x50\x52\xaa\x44\xe6\xe9\x47\xf6\xc4\xff\xf6\x1f\x9e\xec\x23\x39\x13\xdf\x1b\x93\xb7\xbd\x07\x91\xfd\xa4\x45\x92\xac\xc1\x4e\xe1\x32\x32\x1d\xc9\x4b\x2f\x44\xf8\x05\x2a\x97\x54\xa8\x1b\x2d\x82\x5b\x59\x23\x19\x18\x5c\x15\x31\x5f\xe0\x24\x8d\xeb\x04\xfc\xf5\x81\xb6\x3d\x90\xdf\x5e\xdc\x6f\xff\xe9\xd7\xd5\xdf\x1e\x54\xcd\xbf\xf3\xef\x36\x09\x80\xab\x1c\xc7\xe2\x8a\x4f\x00\xd0\x3c\xa0\xa1\x29\x7c\x05\xc0\x7e\x99\x41\x3d\xcd\x1e\x6a\x78\x25\x59\x15\x62\xc5\x80\x53\x84\xc4\x9d\x1b\xa4\x44\x7d\x29\x13\x2c\x4c\xef\xb5\x87\x7a\x45\x95\x4f\xe6\x94\xc3\x5d\xca\xa0\xce\x2d\x85\x42\x4b\x0c\x45\xd8\xa8\x52\x0d\xcc\x58\xc9\x63\x56\xa6\x3a\x3c\x86\x89\xe4\x2a\xd7\x00\xbd\x3d\x3a\x65\xe4\x98\xc0\x71\x7d\x6e\x4d\x4f\xf2\x83\xd8\x40\xa3\x28\x15\x65\x32\x6b\x76\xad\x11\xbb\x42\x37\xe9\x7b\x55\x8c\x49\xb0\xdc\x19\x52\x52\x6b\x86\x59\xb0\xe4\x2c\x29\x73\x88\xd5\x94\x55\x7c\x8a\xe4\xf9\xf1\x82\x69\xa4\xa8\x20\xc9\x70\x35\xdc\xf4\xa1\xc8\x3c\x29\x98\x38\x67\xec\x24\x9c\x43\x3e\x43\xf2\xd7\xd3\xf9\x5f\xde\xc3\x57\xca\x6d\x72\xb1\xf2\x7b\x81\x05\xe2\x1e\x72\x89\xf2\xa4\xe0\x75\x94\x35\xb9\x58\x85\xf6\xaf\x07\xf2\x0f\x2f\x8e\x86\x86\x66\xcd\xf7\xdf\x1e\x4c\xbf\xdd\x16\x9b\xc6\x01\xfe\xf3\x9d\x5d\xe6\xb0\xf5\x5c\x74\x1a\x80\x81\x9f\xae\x3e\x83\x07\xe0\xde\xa9\xcb\x27\xe2\x62\x00\xc9\xd5\x7c\x3b\x36\x54\x03\xa2\x85\xd5\xee\xa3\xbd\x7b\xe1\x9e\x54\x22\x4f\xa3\xf3\x27\x6a\x81\x72\xfd\x13\x5f\x1b\x46\xea\x19\xed\x49\x19\x3b\xd3\xd7\x94\x29\x83\x69\xf9\x28\x23\x47\x4a\xab\x99\x81\xa2\x8a\xfe\x11\x8a\x8d\x63\x96\xaa\x81\xf6\x49\x0a\xbb\x6f\xb1\xc6\x03\xf5\x44\xca\xde\x88\x40\xad\xe3\xca\x43\xe4\xc9\xd4\x9b\xda\x6f\xe4\x57\xc9\x6b\xf9\xb2\x5a\xba\x32\x24\x72\x45\xcd\x7e\x9d\x08\x29\x26\xb2\x47\xfb\x98\x6e\x8b\xf8\x45\xb2\xfe\xf0\x57\xdd\x3e\x51\x15\x32\xdb\x67\x56\xbd\xd7\x22\xec\x64\x95\xc5\xef\x3a\xcd\x42\x6b\x64\x0b\x82\x80\xb6\x99\xe0\x2a\xf9\x15\x99\x5b\xfd\xad\x00\x23\xc5\x8c\xfc\x4b\x91\xf5\xbf\xbd\x87\xc7\x53\xd4\x8b\x94\x0a\xc9\xc3\x7f\xbf\x0f\xff\x6f\x0f\x66\x28\x75\x8b\xcf\x7b\xb7\x58\x71\x79\x8b\xd9\xbf\xcf\x47\xa6\x29\x00\x43\x2e\x1d\x7d\x82\x1f\x00\xeb\xfe\x4b\xa1\x11\x47\x81\xc8\x3d\x74\xab\xd7\xef\x39\xf4\x08\x31\xdc\x3b\xe7\x96\x09\x46\x92\x08\x8e\x1a\xbb\x11\xea\x8a\x12\x42\x20\xde\x62\x07\xf5\xa9\x46\x9a\x88\xaf\x91\x00\x95\x5d\xff\xbb\x54\x8c\xbe\x10\x55\xd0\x44\x4c\x12\xaf\x2b\x4c\x21\xd9\xde\x96\xbb\xa9\x69\x43\x59\x70\xbf\x28\xef\xa1\xe6\x41\x79\x1a\x38\xa1\x64\xa4\xd4\x45\xb1\x8d\xb7\x53\x65\x90\x4f\xa2\x24\xa6\x09\x29\x73\xc8\x4e\x50\xf6\x97\x78\x6a\xa0\xa4\x34\x29\x8c\xb5\xbf\xd4\xcf\x8b\x33\x52\x98\x3b\x5e\xa9\x31\x8b\x5a\x93\xb1\x83\xbe\xea\x2f\xb7\xfd\x07\x21\x0a\xf9\xc3\x7c\xad\x7a\xaf\xa0\x3e\x85\x61\xfd\xb1\x0a\x17\x3f\x9e\xe2\x4a\xc6\x29\xc4\xf0\xd5\x50\xbe\x51\x4c\xa5\xd1\x8f\xad\xa8\xdc\x94\x41\xf1\x1c\x5e\x1d\x6a\x00\xf5\xd4\x93\xf3\xdb\xe7\x60\xdb\x83\xf9\x79\x60\x8b\x6f\x7e\xfc\xf6\xa0\x7e\xef\x83\xa7\x6f\x7e\xfb\x2f\xe8\x2d\x66\x1d\x03\x38\xff\x69\x1f\x47\x08\xff\xd6\x73\xe4\x00\x00\x5b\xfb\xa5\xf5\x40\x1e\x00\xce\x31\xfa\x59\x77\x43\x58\x13\x3c\xce\x64\xef\xc0\x0b\x25\x12\x0a\x6c\x9f\x2c\xd9\x40\x51\x41\x9e\xf3\xad\x49\x35\x75\x55\xdd\x53\x80\x45\x9f\x4c\xcd\xd3\xdd\x2b\x42\xd0\xdb\x43\x8d\x32\x64\x17\x35\xd1\xea\xa4\x5a\x59\x0d\x8a\x7f\x54\x0b\xa2\x7a\x3a\x73\x8a\x3f\x54\xe1\xa3\x8a\xf9\xb4\x49\x3d\x56\x60\xa0\x4a\x87\x1f\x90\x9c\x91\x97\xa2\x20\x12\x02\xe4\xca\x65\x77\x51\xfa\xb2\x92\x15\xa2\x24\x09\x94\x97\x25\x43\x0a\x37\xc5\x6f\x53\xda\xeb\x0f\xc9\x93\x9e\x0c\x53\x3a\xda\x45\xe5\x2d\x44\xcc\x29\x5e\xaf\x5b\x14\x3f\x09\xd6\x50\x7a\xc6\x43\xe4\x68\x05\xfc\x28\x75\xdf\x93\xe4\xcc\xf9\x59\x29\x6f\x56\xe6\x64\x9a\xf9\xef\x51\x9a\x89\xb5\xb2\x3d\xbf\xd7\x21\x9b\xf7\x20\x35\x85\xca\x24\x72\x04\x80\xf5\x96\x08\xfd\x91\x43\x00\x3c\x0c\x82\xd3\x74\x39\x00\xa2\x82\x4f\x8c\xcf\x8f\xff\x6f\x1f\x44\x87\x43\xc6\xfd\x4e\x37\x80\x41\x9b\x22\xf7\x43\x45\x00\x13\x2e\x55\x2a\x5f\x10\x34\x9a\x5e\xd2\xb9\x22\x71\x1a\xc4\x8c\xb9\x0c\x17\x15\xa2\xa9\xcf\x4d\x68\x2d\x1d\xb4\xa6\xa8\x5c\x86\xa2\x6e\x0d\xc6\x8f\x28\x21\x06\x6c\x81\xee\x36\xa1\xe4\x09\x9d\xef\x09\x1a\x2e\x2a\x64\x56\xcd\x8f\xb9\xcb\x5e\xf6\x24\x82\x5a\x4f\x85\x8d\xcf\x25\x52\xb4\x4a\x55\x83\xa6\x7f\xc8\x1f\x0f\xe4\x8b\x7c\xcd\x90\x6c\xc8\x71\xa2\x83\xcc\xc8\xa7\xb1\x30\xeb\x3f\x1e\xc8\x7f\x79\x0f\xa4\x93\x62\x33\x58\x85\x00\x2e\x6c\xb4\x98\x37\xee\x81\x77\xca\x4a\xa8\x38\x02\xa7\xe3\xed\xf7\x33\x5a\x72\x37\x2e\xcb\xab\x71\x7a\x9f\x54\x30\xae\xd3\x2b\x71\x02\xa4\xef\xe1\xe9\x3d\x52\x46\x99\x64\x02\xf0\xf6\xee\x92\x03\xc5\x32\x73\x78\xac\x8b\x60\xaf\x87\x1c\x07\x9e\xe2\xe2\xd1\x35\x22\xa7\x4e\x30\x75\xfc\x09\xf0\x80\x2c\x7c\xfd\x98\xe5\x5f\x0f\x62\x7b\x1d\xe4\xeb\x9e\xa4\x5f\xd9\x01\xa0\xb9\x5f\x5c\x8e\x31\x06\x40\xef\xb2\xcc\xfa\x5d\x55\x00\xa3\x76\xf9\xce\x07\x19\x00\x66\x27\x54\xe8\x1f\x1f\x85\x69\x8b\x59\x0d\xf3\x27\x54\x60\xb6\xb8\x64\xf0\x4c\x99\x99\xea\x6e\x7e\xc3\x0c\xa3\x67\x4b\x59\x34\xe9\x72\x66\x37\x7f\x44\x51\x31\x64\x0c\x94\xb3\x6b\x27\x2b\xeb\xdf\x8d\xbf\xee\x29\x43\xc2\x69\xef\xc9\x29\xf5\x09\x23\x71\x68\x10\x2a\x68\x83\x0a\x89\x2d\x6a\x6d\x0d\x32\x61\x0f\x88\xfe\xca\xc1\xdd\x4c\xe1\x4a\x84\x5f\x0a\xed\xa3\x2e\x51\x08\x42\x93\x6c\xfa\xf4\x74\x74\x10\xc1\x5f\xaa\x77\x25\x35\xe6\x34\x61\x58\xe2\x17\xda\x2b\xb2\xfa\x8f\x0f\xf3\x9b\x88\x26\x09\x1f\x2c\x5f\xa0\xdd\x5c\xb8\x14\x1f\x36\x2d\xc0\xff\x2b\x5e\x5a\x08\x3b\xe1\x5f\xf7\xe1\x81\xcc\x65\x9c\xb9\x0f\x71\xcc\x46\xf6\x12\x6e\xd0\x9b\x7b\x30\x4f\xce\x15\xf7\xcd\xfb\x5e\xdf\x51\x79\x2e\xfc\x13\xcf\xb3\x5d\x0a\x0a\x07\xf1\x4f\xdd\xbe\x3f\x1f\x56\x60\x22\x3c\x76\x36\x03\x78\x70\x58\xd0\xe3\x68\x1c\x80\xc0\x03\x61\xfe\xd3\xb7\x00\x24\x5a\x44\x1e\x5e\x78\x08\xa0\x88\x7b\xa2\x76\xe5\x19\x80\x86\xa8\x84\xf3\x0d\x5d\x00\xe3\x30\xc9\x05\x96\x1c\x00\xb3\x12\xd9\x0b\xf7\x9d\x00\xac\x1d\x95\x35\xf8\x9b\x60\xc6\x3a\x4a\xfd\xd0\x93\x29\x78\x64\xf5\x56\xff\xb0\x52\x35\xd5\xdd\xe2\x89\x99\xa8\x5e\x30\x65\xd0\xcc\xd3\x81\x6c\x91\x49\xc6\x18\x4f\xf9\xad\x38\xbd\x22\x7d\x34\x54\x8b\xfd\xe2\x3b\x4a\x0a\xd1\x55\xcb\xa2\x0b\xf0\x24\xa6\x69\xcd\x96\xd3\x87\x27\x12\x95\xd5\x4b\x1a\x1e\x45\x5e\x24\x0c\xaa\x44\xbe\x28\x8f\xd1\x27\x68\x2b\xe6\x8c\xf6\xc7\x25\xe3\x5f\xcb\x79\x7e\x93\x4e\x34\xc1\xcb\x49\x2b\x23\xd6\x92\xb9\x09\x9a\x92\xf1\xa8\x4f\x31\xc5\xdb\xfb\x02\xad\x28\x69\x89\xfe\x1c\x21\xb5\x6c\x24\x15\x8c\x71\x0f\xdb\xf5\xfd\xb5\xcc\x13\xcc\x9b\xd0\x0b\x7f\xfa\x50\x18\xe4\x94\xb1\xaf\x03\x28\xaf\xab\xe4\xdf\xe0\xf8\xfd\x48\x7d\x5f\x14\xd8\x70\x05\xbe\x3b\xba\xec\x15\xe6\xf1\x8f\x3d\x5b\x9e\xc7\x29\x59\xe3\x39\xbc\x1e\x35\xad\x2b\x79\xe2\xdb\xdd\xaf\x00\x70\xaa\x0a\x90\x8f\x0f\x00\x08\xe4\xf3\xa3\x4f\x71\x02\x48\xed\x13\x1a\x3f\x9f\x0f\xa0\x8c\x12\x3d\x7e\xed\x36\x80\x5e\xe6\x93\x9f\x8c\x09\x00\x26\x20\xa1\x7d\x27\x08\xc0\x7a\x46\x66\xec\x11\x33\x80\xad\xbd\x02\xf1\xb1\x21\x4c\xdb\x27\xa9\x3e\x17\x1d\x06\x36\xfb\x52\xdd\x03\xca\x8e\x54\x15\x6b\x59\xd3\x16\x83\x91\x3f\xfd\x28\xbd\x66\x07\xbd\x51\x2e\xbd\xa4\x3c\xa3\xcf\xd1\x48\xff\x46\x22\x59\xff\x4c\xa6\x6d\xc8\x57\xe2\x5d\x1d\xc6\x32\xad\xa8\x2c\xc2\x94\x86\x66\xe3\xe3\x98\x40\xc2\x39\xd5\x86\x9e\x0b\x09\x3f\xf0\xcb\x8a\x8e\xef\x84\x13\x05\x70\xe3\x72\x91\x3f\x37\xd3\xda\xff\x78\x0f\x4b\x52\x8f\x50\x5c\xf1\x1e\x7f\xfa\x50\x82\xa5\xac\xd0\x61\x51\x4c\xdb\x7d\x28\xd3\xe7\x64\x57\x31\xda\xe1\xaf\xde\x51\xe5\x17\x30\x49\xe1\x7a\xc3\x86\x0a\x7b\xb0\x95\x41\x74\x2f\xab\x94\x58\xb0\xb5\x41\x91\x5d\xb2\x4a\x99\x38\x1d\xff\x13\x6d\xb4\xca\xa2\xb8\x46\x5f\xb5\xc6\x9b\x2a\x67\xf1\xfc\x5e\x96\xb5\xa5\xaa\x4a\x78\x7d\xcf\x79\x00\x6e\x11\xbe\x42\x5a\x71\x00\x21\x0d\xfe\x5b\xa7\x78\xff\xf6\xa3\xa8\x73\x0b\xea\x5f\xe6\x01\xd0\x1f\x17\x8d\xbb\x31\x01\x60\x11\x2e\xf1\xe0\x2e\x3d\x80\x6d\xa3\x54\xdb\x03\x59\x00\xe7\x5d\xb2\x13\xbc\xcc\x7f\xbc\x18\x2e\xd7\x93\x5a\x66\xca\x8a\x54\x4d\x47\x46\xa3\x7e\x03\xa0\xc8\x59\x8f\x59\x0b\xdb\xce\x93\xef\x5a\x96\x7b\x9e\xf5\xd2\x25\x52\xcd\xf2\xc3\x9b\x43\xe6\x88\xe7\x0d\x87\x33\x34\xa2\xbd\x08\x91\xba\xd5\x65\x67\xe2\x77\x10\xee\x68\xba\x36\xd1\x24\x6c\xfc\xe9\x45\xe1\x53\xce\x1c\xef\xcc\x7a\x83\xbb\x2f\x97\xfd\xeb\x41\x26\x0a\x27\x2f\xe3\x85\x40\x66\x4c\x6e\xfb\x30\x98\x0e\x29\x04\xea\x40\x42\xc8\x76\x1f\xca\xd7\x66\xf9\x23\x28\x74\x9c\xd4\xbb\x22\xc5\x7a\xb4\x6a\xac\xc3\x90\xb0\xd2\x0c\x9a\x1a\xf5\xb5\x6f\x43\xd9\x13\x53\x12\x0e\x5d\x2d\x2a\x26\x58\xe1\xd0\x87\xed\xfb\x55\x48\xd8\xac\xe0\xf4\xc6\x00\x35\x01\xdc\xb9\x40\xe9\xda\x4a\xb5\x28\xdc\xb0\x6f\x70\xd9\x17\xcd\x42\x5c\x85\xdf\x5b\x00\xee\x1a\x5e\x24\xed\xe9\xff\x1f\x0f\xa2\x5e\x10\x49\x9f\xf9\xb7\x1f\xc5\x61\x40\xe2\x14\xbb\x2a\x80\xfb\x1b\x99\xef\x8f\xdb\xe1\xb3\xe7\xa2\xe2\x4b\xb1\x16\xb8\xef\x59\xa5\x51\xae\x4c\xa6\x8a\xbb\xf8\x1b\x96\x18\x3d\x20\xe3\x1d\x4e\x58\x95\x3b\xe2\x48\xb3\xd6\xee\xee\xa9\xbe\x47\x89\x51\x16\x4e\x61\x7e\x11\xaa\x84\x01\x63\xc3\x34\xf3\xd8\x97\xf8\x69\x7d\xc6\xb2\x1d\xc9\x46\x7f\x7a\x51\x5e\x6b\x60\x5e\x9e\xc8\x45\xff\xe9\x45\xd1\x95\x67\x5a\x67\x2d\x4a\xfd\xe3\xc3\x98\xc9\x68\x6d\x9e\xc8\x50\x59\x95\x94\x5d\xda\x9c\x4b\xa5\xcc\x3c\x52\xd0\x40\x8a\xa4\xea\x4c\x94\x28\x29\xa1\x58\x93\x34\x87\x7f\xa8\xec\x42\xbd\x4f\xb8\xf7\x2a\x57\xf5\x10\xda\x29\xb6\xbf\x7b\xbf\x2a\x06\xc3\x13\xe5\xdd\x9c\xa3\xe1\x8b\x31\x8f\xba\xd3\x48\xab\xbe\x88\x7d\x12\x3a\x57\xd5\xaf\xe5\x8d\xf5\x09\xe5\x29\xaf\xd7\x32\xc0\xd1\x07\x8e\x96\xd8\x6a\xc9\xe0\xfa\xfd\x04\x01\x1e\xd3\x3f\xa6\xa3\xf3\xf9\x9b\xff\x6f\x7b\x10\x3a\x2e\xfc\x8b\x97\xdf\x03\x98\xbd\x11\x0c\x64\x30\x01\xb0\x1f\x15\xaa\xbb\x1d\x05\xe0\x5a\x21\xfe\xe4\xfe\x3b\x00\xcf\x56\x69\xca\xe3\x80\x3f\xfd\x28\x2c\x7e\x34\xea\xa7\x54\x72\xa9\x1a\x5e\xbb\xf4\x1a\x0c\xfd\xc9\xeb\x2e\x2a\x16\x4f\x9d\x32\x49\x52\x0e\x22\x4e\xe7\x02\x57\x88\x0c\x56\xd1\x21\xca\xd1\xc2\xf8\x5e\xb3\xe4\x14\xa5\x14\x6d\xfc\x11\x43\x9b\x12\x9e\x8c\x87\xb8\xa3\xba\x69\x8d\x77\x73\x6f\x60\x06\x35\x97\xfa\x5a\x8a\x5a\xfe\x78\x20\xdb\x3d\x20\x8b\x72\x36\xeb\xa8\x82\x83\xa8\x8b\x72\xca\x1b\x43\xb9\x9a\x3f\x69\x15\xcf\x22\xbe\x66\x65\x7d\xb0\x50\x91\xd9\x3c\x96\xd5\xfb\x66\xaf\x2a\x13\xd2\x26\x8d\xa6\xaf\x5d\xbd\x06\xd9\x9e\xaa\xd7\xdd\xa7\x5e\x8c\xda\x4c\xf0\x6e\xf1\xd3\x98\x47\xe3\x62\x9e\x3c\x7b\xa2\xe5\x80\xb9\x19\x5d\x5b\xdd\xa8\x7d\x14\x43\x0e\x9f\x2c\x37\xd5\x7e\x8d\xf5\x08\xf5\x2b\x7a\xa9\x33\x8f\x9d\x08\x9e\xc8\x57\xd0\x99\xc2\x05\x07\x9c\x02\xe0\xdd\xcd\xbb\x9b\x36\x05\x40\xf2\x1a\xef\xdd\x53\x29\x00\xca\x4b\x3c\x85\x67\xf5\x01\xf4\x05\x78\xba\x2f\xee\x01\xb0\xf6\xe5\x3f\x4a\x9f\x06\xe0\xb4\x2a\x74\x8d\x89\x0b\xc0\x4b\x5f\xb4\xe6\xc1\x0e\x80\x00\x61\x09\x5d\x1e\x7f\xd8\x0c\x5e\x90\xdd\x23\x7a\x0e\xb4\x82\xa4\x94\x27\x15\xbd\xa9\x26\x01\x1e\xda\xb9\x86\x17\xc8\x93\xde\x11\xa6\xa9\xce\x4b\xdb\xfd\x28\x84\x52\xdb\x82\x80\xf8\xb8\x7c\xdc\xa6\x65\x75\x22\x47\xe6\x2d\xec\x0f\x13\x96\xa2\xc1\xbc\x08\x8c\x8d\x01\x7d\xa3\x61\x09\x75\xbb\x17\x05\xed\xa5\x52\xf2\x65\x57\xb9\xd9\x76\x0f\xc8\xf6\x7a\xfc\x32\x54\xf2\x5d\xe7\x2b\xd6\xfa\x34\xa1\xb2\xb9\x11\x95\x8f\xde\xee\x43\xe9\x77\xd0\x98\xd9\xd4\xcc\x6a\xe8\x3a\xa8\xe5\x87\x94\x4d\x0f\x6b\x79\xa6\xad\x8e\x92\x49\x1e\xae\x75\xd0\xe5\x44\x9f\x48\xf8\x59\xd9\xa9\xbb\x86\xee\x89\xdb\x57\xb6\x5f\x4f\x0c\x63\x12\x4d\x9f\x97\xaf\x8f\xc6\x5e\x0c\x9f\xcb\xcd\xd4\x3f\x89\xed\x0f\x31\xfb\xeb\x81\xf0\x7a\xf2\x7a\xd0\x62\x00\xa4\x5c\x78\xca\x4f\x65\x01\x68\x86\x73\x09\x9f\xbd\xf7\xd7\x0b\xb2\x6b\xe7\xfd\x7a\xdd\x12\xc0\x2d\x8b\x1f\x7d\xfb\x38\x40\xc0\x55\x21\x1c\x9b\x21\x40\x48\xb6\x58\x1a\xcf\x1e\x80\xc8\x1e\x49\xac\x08\x1b\x58\x45\xef\x57\x38\xac\x10\x4c\x35\x0b\xe3\xd2\x64\x36\x3c\x43\x46\x04\x1d\x31\xba\xee\x84\xfb\xd3\x8f\x72\xd2\xf1\xa9\xb7\x74\x92\x08\xce\xc0\x3a\x2c\xbe\x20\x87\x1f\x63\x6a\xd6\x51\xd4\x55\x9a\x82\x2e\x30\x92\xae\x9f\xa9\x08\x43\x85\xe9\xac\xbe\x3a\xf0\x54\x66\x73\x51\xd5\xf3\xa7\x6b\xfd\x06\xea\x80\x92\xd6\xf2\xec\x53\x57\x84\xb2\xe2\x8f\x55\xf9\x8a\xc2\x6f\xd2\xaa\xe4\x35\xd6\xf2\xfb\x6f\x39\x34\xcf\xae\x1b\x96\xe8\xf5\x95\x68\xfb\x6e\xd4\x16\x0c\x74\xf6\xe9\x64\x22\x7a\x73\x2d\x5a\xfa\x74\x9d\x36\x5f\x67\x22\xeb\xf8\xf5\xd6\x91\x9d\x69\xb1\x15\xe6\x06\x63\x28\xf1\x94\xca\x62\x75\x83\x1f\xe8\xa0\x78\x9f\x3c\x6d\x23\x0b\xf4\xfb\x38\x91\xac\xab\x46\x7e\x98\x57\x91\x9f\xd2\xec\x8c\x77\x60\x95\xc3\x2f\x27\xef\x30\xce\xc7\xf6\x85\x2c\x02\x08\x64\x71\xef\xa3\xad\x04\x90\xd6\xe6\x70\x38\x71\x0c\x40\xc7\x9a\x6b\xd7\xd9\xf1\xbf\x1e\x84\xe3\x27\x5e\xb5\xeb\x18\x00\x9f\xef\x3c\x8a\x8c\xad\x00\x41\x02\x82\xb4\xf7\x52\x01\xa2\x8a\x85\x73\x38\x62\x01\x62\xeb\x25\x6f\x3c\x61\x04\xab\xb8\x33\xf2\x3b\x15\xf2\xa9\xca\xb1\x73\x6a\x29\x46\x42\xe4\xfa\x88\x16\x03\x46\xd7\x94\x3f\xfd\x28\x7c\x6e\x21\xae\xaf\xd3\xd9\xb0\xba\x0e\x3a\x91\xbe\x85\x86\xe8\x5a\x4b\xc6\xfc\xc1\x8a\x8e\xff\xd5\x8b\xc2\xa3\xc6\xbf\xb0\xd2\xa2\xb4\xdd\x8b\xf2\x53\x55\xcd\x7b\xe5\xc8\x53\xec\x84\xb5\x66\xc1\x6a\x5c\x65\xd1\x80\x92\xee\xd1\x35\xdf\xf2\xc2\x6e\x5a\x3d\xc5\x75\x7c\xb1\x5b\xd3\x55\xc3\xe0\x0d\x9b\x22\xcf\xda\x05\xc3\x02\xc4\x4a\x6e\x4a\x85\x9e\x51\x00\xf2\x76\x26\x47\x21\xc9\xb8\x1b\x75\x36\xb5\x37\x3b\xd6\x94\x17\xf5\x23\xa9\x36\xdd\xcc\x6c\x37\xda\x2f\xe1\xdc\x76\x0f\x4a\xd2\x0e\x33\x16\x4c\x5b\x94\x79\x5c\xb8\x99\x1a\xd6\x3e\x6c\x0a\x40\xd8\x93\xab\x8a\xee\x1e\x80\x7c\xca\x03\x34\x9d\x1b\x80\xae\xe5\xa3\x17\x67\x44\x00\x2c\xf7\x73\x3c\x3e\x8f\x00\x70\xf9\xc2\xad\x74\xad\x0f\x20\x30\x9d\xc7\xe0\x66\x00\x40\x94\xf1\x63\x61\x16\x77\x80\x04\x1d\x21\x24\x97\x38\x40\x0a\xbd\xa8\x82\x60\x14\x38\xa6\x6d\x4a\x8f\x29\x9c\xa2\x26\xa5\x46\x28\x69\xe9\x35\x91\x7f\xc4\x97\xeb\x04\x39\x57\x11\x0b\xc2\x9b\xcd\xef\x86\x17\xe1\x86\xbd\xa6\x5d\x54\x32\xdf\x63\x4e\xba\x18\x87\x9d\x2c\x97\x44\x09\xd8\xdc\xcb\x25\xd5\xba\x6e\xf7\xa2\x20\x1e\xe9\x79\x8f\x44\xb7\x7a\x6d\x70\xaa\xd7\xcc\x7b\xb7\xb9\xae\x3a\xa9\xe1\x7e\xe9\x37\x07\x4c\x95\x6b\xbb\x2c\x09\x34\x30\x0f\x6e\xea\x2d\x2d\xff\xa8\x1d\xeb\xb2\x33\x8c\x59\x35\xa8\x56\x68\x7c\x62\x4c\x58\x6b\x29\x5f\xab\xae\x34\xf5\x5e\x87\x12\x89\xe2\x59\xf3\xcc\x8d\xf9\xc2\xf2\xdc\x67\x16\xbe\x9b\xac\xb9\xda\x19\x1f\x2c\xa5\x91\x17\xb3\x4e\xa4\x66\x59\x44\xa1\xfc\x52\x92\x12\x9f\x58\xd6\xa3\x69\x92\x22\x63\x2f\x59\x9d\x40\xcf\xc4\xd5\x45\x8c\x5a\x55\x63\x4a\xa3\x4f\x87\x7d\xb0\x62\xc5\x6a\x84\xc7\x00\x3c\xc9\x7b\x54\x79\x1c\x09\xa0\x30\xfc\xe0\x1d\x5d\x05\x80\x81\xe8\x83\x82\xd3\x8a\x00\xb6\x02\x0f\x12\xce\x15\x03\x78\xd6\x3d\x90\xbc\xf8\x1c\x20\x28\x9d\xab\x82\xb1\x1c\x20\x76\x8e\x7b\x83\xd9\x04\x20\xc5\xf9\xb1\x2d\xdb\x30\x40\x56\x8a\x88\x91\xa0\x3c\xd4\xe6\x7c\x12\x5f\x93\x56\xa6\xb6\xe4\x2d\xca\xe9\xeb\x78\x92\xe7\x33\xc7\x35\xdc\x9d\x8d\x89\xf1\xf1\x17\x4c\x76\x47\x5c\xc6\x5d\x0d\xa9\x72\xa8\xce\x0d\x43\xdf\xf4\x70\x0c\x7c\x52\x7d\x75\xb3\xc0\xc1\x3d\xf3\x73\x93\xe0\x86\xad\xa5\xe1\xb3\x87\xed\x45\xab\xdf\x0d\x4e\x8f\x2f\xf5\xc4\x6d\xf7\xa2\xcc\xf0\xe8\xb8\xcd\xeb\xb4\xbb\x0d\xe5\x19\x26\x2c\xee\x69\x7e\xd1\x2d\x65\x72\x79\xa9\xbd\x81\xe3\x59\x9a\x79\xf1\x0a\x5b\xdd\xb1\xca\x68\x8b\xaf\x6b\xfb\xab\xd4\x8a\xef\x59\x76\xae\x87\x95\x5d\xca\x46\x5a\xcb\x6d\x0c\x14\x69\xa4\xdd\xb3\x79\x8d\xc8\xcd\xaf\x4c\xa1\xb7\xce\x41\xee\xc9\x4a\x8a\xbb\x6c\x53\x8c\xba\x95\xc6\x1d\x99\x6f\xdb\x85\x1a\x4e\x2e\x0f\x35\xb1\xf3\x44\xc7\x26\x18\x86\x1c\xb0\xcd\xc3\x68\xc6\x94\x06\x50\x6d\xa7\x31\x10\xe9\x07\x20\x7d\xe1\x11\x0d\xdd\x49\x00\xb5\x14\xf6\x11\xba\x02\x00\x13\x31\x76\x89\x53\x56\x00\x4e\x07\xee\x9b\x9e\x1b\x01\xf0\xe5\x7f\x38\x72\x45\x1b\x20\x52\xe8\xa1\xfa\x75\x25\x80\x64\xa9\x47\x73\x37\x2d\x00\xb2\x29\xbc\xc1\xf7\x25\x01\x0a\xa5\x04\x99\xf9\x24\xe0\x5d\x99\xe2\x93\x73\x12\x7a\xd4\xee\xb2\x35\xe9\x76\xed\x71\xca\xfe\x22\x0b\x95\x2f\x8e\xed\xc4\xdc\xcc\x49\x7d\xa5\xf0\x28\xdc\xc9\x78\x26\xeb\xba\xdc\x6e\x64\x91\xbf\xb1\xb7\x48\xfd\xc7\x0d\x3b\x37\xe5\x14\x86\x8e\x2b\xab\x51\x36\xd3\xcf\xea\x5e\x4a\x2c\xdd\x34\xe6\x98\x74\x1a\x5c\x9f\xdb\xa7\x8f\xfa\xfe\xf6\x95\xfd\x70\x83\xd9\xb9\x59\x54\xcf\xce\xce\x32\x0b\xf5\x05\xf5\xb6\x8d\x7a\x43\xeb\x6b\x8b\x09\xcd\x11\xe5\x37\x6d\x8f\x2d\xdb\x3d\x33\xca\xb3\xb2\xbf\xb9\xba\xa3\x26\x3d\x3d\xdf\x81\x65\xed\x59\xe5\xae\x64\x19\xfb\xa5\x0d\xf3\xe2\xc9\xb8\x02\x87\x35\x84\x44\xe1\x9e\x98\x65\xfb\x95\xcd\x80\x9c\x8e\xb0\x13\x8e\x91\xc8\xc2\x8c\xb8\xc0\x46\xa7\x02\x94\x42\xea\x27\x7f\x11\xa7\x5b\x68\xf1\xc4\xe7\xde\x96\xce\x27\xd0\xdf\xe3\x8f\x7b\xf2\x3b\xb5\x62\xf2\xa3\xdd\x01\x64\x7d\x1f\x6e\xd0\x65\x03\x68\x8c\xdc\x3f\x76\x42\xf1\xff\xf0\x20\x4e\xb3\xbb\x5e\xe2\x01\x88\x93\x61\xe7\xba\xf2\x1e\x20\xe3\xf3\x43\xb6\x1b\x65\x00\x85\x3a\x1c\xfc\x77\x34\x00\xaa\xb2\xf8\x42\x1e\x5f\x81\xa5\x3a\x7a\xa1\x6b\x62\x5c\xd4\xa9\xda\x51\x09\x9c\xd6\x09\x8a\x50\x8d\x8e\x82\xa3\xdd\x02\x31\xa6\x5c\x5a\x4b\x3c\xbc\x1a\xbb\x9e\x39\x62\x7e\x33\xcf\x68\xf3\x63\x24\x8f\xbb\x4e\x63\xc9\x1a\x93\xf7\x9d\x84\x67\xbd\x3c\x4b\x0f\x1c\x93\xeb\x79\x86\x5a\xe6\x07\x4c\x87\xa7\xee\xbc\xe5\x19\x77\xb0\x5c\x99\xa6\x0e\x7f\xe8\x02\x5b\xde\x19\x5c\xdf\xfc\xd3\x4d\x47\x81\x39\xbd\x6e\x83\x92\x3a\x47\xc3\x5f\x75\xad\xb3\x99\x0b\x2e\x21\x4b\xe6\x4d\x62\x29\xbb\x5c\xc2\x57\xda\x6a\xf3\xe2\xcc\x5d\xa8\x6b\x01\x95\x63\xd1\xd7\x5d\x8f\xad\x97\x97\x59\x86\x20\xdd\xc4\x11\xfb\x8a\x2e\xfe\xf1\x40\xe6\xdc\x7e\x21\x77\x67\x9f\xf1\xae\x70\x0b\x43\x6e\xa6\xbb\x79\x26\xb9\xfa\xa1\xe9\x93\x6c\x3c\x54\x5c\xcf\xa3\x3f\xc5\xb3\xbb\x07\x3b\x8f\x60\xe2\xa2\x47\x00\x64\xf1\xf7\xc7\x69\x75\x01\x74\x3e\xb2\x95\x9f\xe0\x06\xb0\x3e\xcd\x86\x3d\xdd\x07\xe0\xf1\x9d\xad\xed\xdc\x1c\x40\xc8\x26\x7b\xca\xa5\x4f\x00\x49\x87\xd9\x88\x57\x5d\x01\xf2\x07\xd9\x08\xf4\xd3\x00\x65\xef\x1f\x31\xde\x61\x01\xa8\xd3\xe5\x09\xe5\xfc\x06\xd4\x26\x3b\x01\xde\x27\x72\x54\x4a\xfb\xa8\xe8\x43\x75\x53\x4a\x5c\x9b\xa7\xf4\x8c\x15\x86\xf8\xb4\xe9\x98\x6a\x42\x98\x00\x36\xbc\x72\xc0\x90\x2d\x9f\xb4\xc9\x97\x41\xe3\xb8\xa3\x39\x68\x29\x23\x24\x24\x7c\x74\x48\x79\x4e\xd0\xa3\xae\x26\xed\x7d\xde\x74\xbd\xdd\xa1\xf7\x3c\x1f\x6e\x75\x2e\xbb\x3c\xfe\xac\xf6\xa6\xa4\x3a\xcc\x9d\xf9\xbb\xc5\xc0\x7c\x2e\x87\x97\xf0\xcf\x3d\xbd\x02\x69\x3c\x5e\xcc\x0b\xf7\x3b\xf4\xe3\xed\xbc\x77\x2f\x5a\xb7\xf4\x85\xbf\xf1\xc6\x2d\x7f\x7b\x76\x2a\xb4\xc8\x6b\x60\xb5\xe0\xa9\x73\x60\x90\xf7\xb1\xf5\xfd\x15\x9e\xfe\x5e\x5e\x3c\x1b\xba\x25\xda\xbe\xae\x5e\xed\x08\x87\x82\x41\xef\x1e\x8f\xa7\x48\xba\xac\xb9\xed\x3e\x14\x8f\x49\xb7\x38\x34\x57\xd2\x11\x77\x7a\xf7\x72\xf4\xab\xf8\x24\xd7\x6a\xf7\x54\x8c\x57\xcc\x7d\x00\x79\x34\xbb\xc6\xf1\xef\x00\xfa\x5e\xac\x1f\x4f\x3c\x04\xb0\x19\xbd\xa3\x45\xe7\x0c\xe0\xdb\x77\xc7\xe9\xd4\x38\x40\x54\xf7\x5d\xde\xf3\x8a\x7f\x3d\x88\xe2\x5b\xac\xf2\xd7\x85\x00\xea\xb4\xef\x0f\x32\xf9\x01\x3c\x1f\x7c\xd4\xcb\xae\x0d\xd0\x5d\xcf\x77\x58\xc4\x06\xdc\xfa\xbb\x05\x79\xe4\x48\x94\xd8\x57\x74\x92\x42\x56\x31\xc4\xc1\xde\x0a\x45\xa6\x90\x3e\x6c\x5c\xbb\x92\x16\x39\x9f\x13\x61\x5c\xf5\xd3\xb2\xb6\xf5\xf3\xc2\x58\xea\xe5\x80\x13\x63\x29\x93\x37\xc2\x9c\xca\x76\x7c\xfe\xd0\x69\x1a\x10\x3d\xba\x30\xbd\x5c\x6c\x11\x3c\xfa\xf1\xea\xfb\xd3\xe9\x34\x21\xa9\x5f\xc2\x46\x7c\x63\x71\x21\x81\x3f\x68\x5e\x6d\x46\xba\x06\x55\xcc\x5f\xee\x6a\x09\x13\x0a\x50\x59\xf4\x69\xe9\x0d\x62\x09\xf4\x5a\xa1\xa9\xef\xf7\x4f\x0e\xbc\xb0\xba\x51\x5d\xe0\x77\x28\xa0\x6b\xfd\x54\x85\x9c\x77\x8e\xff\x35\xc4\xad\xc2\x0e\xcf\xbd\x81\x82\x9b\x47\xf3\xd2\xdc\x47\xfd\xed\x90\xb2\x99\x38\xb7\x0b\xfe\x7d\x28\xc6\xb4\x1c\x97\x0b\x7e\xa2\xe8\xa4\x04\x07\xa7\x74\xdf\x6e\x8c\x5d\x8c\xa9\xe3\x69\xdf\x0f\xd8\x0b\x91\x07\x00\x14\xbd\x58\x73\x8f\x9f\x07\x30\x36\x63\x51\xa1\xb5\x00\x70\x7a\x70\x77\xef\xc9\x35\x80\x80\x86\x5b\x15\x74\xaf\x00\xe2\xe3\x6e\xf1\x9c\x6c\x06\xc8\xb5\xbc\x7d\xe3\xcc\x0c\x40\x55\x13\x4b\xf5\x15\x12\x40\xd3\x5b\x56\xd3\x1b\xfb\x00\x7a\x66\x1f\xe4\xb2\x9e\x05\x18\xe2\xe6\x3e\xc8\x77\x13\xec\xde\x7e\xe3\x9f\x93\xf7\xa0\x1e\x9a\x48\x7a\xe2\x6a\xb2\x83\x88\x99\xe0\x90\x11\x0b\x72\xc7\x86\x8c\xb6\xaa\x9e\xcc\x8b\xdf\x28\x7b\xd9\x69\x78\xb4\x4d\xef\xe3\xbd\x67\xc7\xdd\x3f\x8e\x76\x3d\x77\xcd\xdf\x91\x6a\x34\xbd\x33\xdf\x2b\xed\xdd\x20\xff\x0c\x5d\x92\x7f\x8a\xe9\xe4\xc2\x44\x5c\x54\x53\xb2\xfa\xd7\x13\xc3\x8d\x61\xc9\xf1\x53\x3f\x88\x7d\x3c\x81\x91\xf1\xae\x0b\x37\x3b\x62\xfc\x32\x63\xef\x2f\x09\x34\xfd\xf4\x51\x89\x22\xaf\x34\xd4\x7e\xf7\x4a\x8f\x94\x59\xf3\xaa\x24\x7b\xe8\x46\x6a\xaf\x6f\x96\xa6\xb8\x0b\x85\xbb\x20\x1e\x17\xea\xb8\x26\x86\x7d\xd8\x74\xca\xbd\xe8\x4c\x08\x53\x42\x06\x67\x1e\x71\x24\x87\x3a\xa0\x3e\x26\xe7\x39\xbc\x09\x49\x44\x57\xc6\xe3\xec\xdd\x42\xd0\x18\xde\x58\x09\x3b\x97\x20\x6e\xac\x42\xf8\x2f\x00\x95\xc4\x7b\x97\x8e\xbd\x04\x30\xa5\x65\x19\xfa\xcf\x7d\xe9\x6a\x7c\x47\xee\xe4\x31\x80\x10\xfe\x9b\x53\x74\x09\x00\xa9\x91\x37\x2d\x4e\xb6\x01\x14\x0f\x30\xe6\x9d\x8c\x00\xa8\x5b\xbb\x7d\xf6\xbc\x11\x40\xb7\x05\x73\xda\x95\x97\x00\x83\x21\xf7\xbc\x6f\xc6\x03\x4c\x7e\x7b\xd8\xf4\x48\x04\x10\xdf\x2a\x78\x8c\xc4\x6e\x53\x75\x7f\x32\x0b\x89\xe8\x3b\x92\xaa\xe6\x5f\x88\x3b\x79\x37\x63\x57\x16\x3c\xe5\xf6\x67\xb3\x2c\xe8\x4c\xb7\x6b\x4d\xb5\xdc\x1e\x10\x1a\xd5\x72\xc8\x79\x6d\x59\xaa\xfb\xa2\x25\x46\xf3\x83\x69\xac\x7d\x1b\xfe\xd5\xe9\x2f\x69\x41\x6f\xeb\x47\x3f\x36\x8c\x5f\xf5\x5f\x2d\xa3\xfd\x96\x31\xc8\xed\x73\xa5\x98\x73\x16\xd9\xcb\xef\xb9\x3f\x77\xfd\x97\xf5\xf3\x4a\x0f\xfd\xcc\x3d\x4b\xd5\x8d\x75\x6e\x07\xd3\xb4\x57\xa5\x6b\x8e\xbb\xa8\xa6\xdc\x5f\xbf\x57\xde\xec\x6c\x99\x74\x7d\xc3\xae\xf8\xa3\x53\x70\xfc\x4b\x44\x73\x7e\xba\x83\x43\x02\xcb\xe6\x74\xb6\x85\xbd\x5d\xdc\x4d\x24\x29\xfd\xd8\x76\x0f\x8a\x6d\x43\x64\x11\x66\x57\x9c\x80\x75\x70\x94\x3d\x66\x2e\x12\x69\x2d\x13\x4e\xc5\x06\x86\x8d\x02\x68\xfc\xba\x2b\x74\xfc\x20\x80\xd9\xcc\xed\xa5\x63\x41\x00\x9e\x6d\xb7\x2d\xe9\xa4\x01\xa2\x16\xae\x1f\x3b\xb2\x0e\x90\x79\xf3\xba\xfe\xb1\x17\x7f\x73\x9e\x76\xb1\x2b\xf9\x47\xbf\x02\x0c\x74\x30\x08\x9d\xf2\x04\x78\xff\xeb\x0e\xc3\x75\x43\x80\x99\x63\xac\xde\xcc\xda\x00\xcb\x58\x2e\x1b\x61\x56\x2a\x01\x23\xcc\xf7\x51\x5d\x80\x34\x8e\xe7\x7c\x52\xe4\x99\xb3\x71\x13\xe9\x28\x13\x9b\x3e\x3a\x01\xab\xf7\x35\x0b\x6b\x83\x5a\xc3\xe7\x15\xac\x03\x5e\xd4\x64\xec\x9b\xde\x0c\x49\x7b\xbb\x2b\x60\x69\xea\x4e\x6b\xdb\x84\xb1\x2b\x71\xe4\xcc\x27\x9d\xb1\x18\x17\x42\xa7\xf1\xf7\xbe\x7e\x84\x93\x75\x43\xee\x7c\x40\xe7\x69\xc7\x7d\x4f\x67\x17\x73\x9b\x8b\x1c\xc2\xcb\xcf\x2e\x2f\xd6\x4b\x39\x1c\x29\x52\x5a\x1d\xa8\xb6\xb5\x6b\xcd\x2b\x5a\xff\x58\x6a\x69\x77\x34\x27\x78\xe3\x57\xd1\x7e\x9b\xc0\xcc\x95\xcd\xec\x9c\xd3\x36\x69\x69\x48\xa4\x5a\xa6\x91\x15\x21\xf5\x3e\xaa\x31\x79\xca\x2a\x2b\x45\x13\x7d\x31\xe9\x92\xc5\xcb\xa4\x78\x8c\x7b\xf4\x47\x8b\x53\x89\x57\xb1\xe7\x22\x5a\xcc\x0f\xc7\x7d\xc1\xed\x09\x9e\x02\xd0\x39\xcb\xfc\xe4\x68\x11\x80\xcd\x87\xdb\xe1\xc7\xb9\x00\x7c\x7d\xe8\x07\x8f\x20\x01\xe2\x4f\x5f\x5d\x3e\xc2\xf7\x37\xf7\x6d\x72\xdd\xe1\xfa\x7f\x79\x10\x33\xfe\xf4\xfd\x27\x53\x01\x36\xc6\xee\xb0\x5d\x5b\x02\x20\xf7\x3c\x9a\xe3\x61\xa1\xf6\x93\xc5\xf8\x85\xb5\x04\x37\xc6\xf0\x4d\xa2\x69\xee\x3a\xd3\x8c\x68\x3f\xf9\x73\x09\xca\xbd\x67\x36\x1a\x75\x9c\x4b\x66\x2b\x46\x97\xcd\x6c\xfc\x9a\xcf\xc4\x7d\x9c\x33\x0d\x50\x7d\xa9\xe3\x8d\x9b\xc1\x3e\x3d\xf9\xba\xde\x5a\xe9\x3b\xe7\x17\xf4\xd0\x1d\x8b\xaf\x13\xa4\xd9\x0f\x3d\xfb\x2d\xd9\xfa\x13\x7e\xb1\xb6\x12\xad\x04\x3b\x48\x4b\x52\x8d\xf1\x96\x6e\xcd\xeb\x2b\xaf\x6b\xfc\x2d\x23\x6b\x5a\xd7\xaf\x95\x5f\xb0\x8c\xaa\x70\xdd\xc8\x28\x2a\xb6\x70\x2c\x4b\x46\x7c\xca\xb3\x31\x0f\x2b\x3e\x82\x54\xce\xdc\x6d\xce\x9c\x7f\x10\x15\x94\xa2\x61\x76\x25\xd7\x03\xed\x9c\x20\x64\xaa\x93\xfd\x0a\xc3\x15\xd3\x6a\x7a\x2c\xc3\x0c\x4b\x17\x91\x6f\x92\x97\x9e\x86\xb5\x0f\x6b\x37\xd6\x48\x33\xc1\xf1\x05\x69\x02\x18\x32\xdf\x9e\x3a\x1a\x02\xe0\xd8\x7f\x1d\x71\x68\xe2\xff\xe8\x41\x08\xde\xca\xf7\x3b\xec\x69\xfe\xd5\x0b\x32\x93\xb2\xe5\xc5\xa0\x14\x76\x5c\xdd\xfa\xbf\xfb\x36\xdb\xb9\x5a\x00\x38\xf0\x88\xc4\xc3\x8a\x30\x20\x9b\xf0\x7f\xd7\x7c\xf5\x2d\x9b\xf0\x5e\xac\xc4\x61\x7e\xa8\x11\x5b\xa5\x90\x10\x16\xd7\x90\x8d\xec\xd0\x25\x67\x45\xe7\x66\xae\x87\xda\x24\x57\xdd\x0b\xef\x5e\x1a\xf2\x6d\x6e\x95\xf5\xd0\x59\x7c\x50\xc0\xd8\xee\x69\xe1\x30\xaf\x33\x6e\xd8\xbd\x62\xe0\xfe\x4b\x70\xde\xb1\x5d\x52\x1f\xf1\xed\xee\x62\x56\xe3\x90\x61\xd0\xdb\xb3\x2b\x97\x6b\x1f\x18\x57\xf4\x0e\xaf\x42\x65\xa1\xd1\x72\x97\xff\x7a\x47\x49\x82\xd1\xc5\xd6\x3d\x08\x5c\xae\x9c\xa1\x5a\xa3\x3c\x52\x3b\xe3\xa1\xb1\xc1\xd3\x5b\xc8\xd6\xf4\x73\x86\x56\x55\x66\x68\xf1\x04\x3f\x43\xb9\xb2\x10\x0c\x63\x4c\xc9\x76\x0f\x88\x61\x5a\x01\x1b\x96\x2f\xdc\xd6\xd0\x38\x4f\x14\xfb\x2c\xf4\xa4\x01\x7d\x36\x12\x57\xed\x5f\x04\x60\x72\xe7\xba\xf2\x81\x49\x00\x2f\xd9\xab\x1f\x0f\x9d\x00\x88\x7e\xb4\xb5\x0e\xdb\x79\x5f\x7d\xd0\xbf\x73\xcf\xed\xfc\x7b\x8d\x89\xe6\xbf\xfa\x30\x98\xed\x2f\xfd\xda\x7c\x42\x5d\xe5\x38\xcf\x6b\xf4\x7d\x83\xb2\x97\x7f\x44\xe5\xce\x58\x2e\x71\x51\x5c\xcf\x32\xa6\x43\x1d\xbf\x43\x29\xde\xff\x6d\x19\x0f\xe6\xb8\xbe\x5c\x22\x4d\xd2\xea\xe6\xa2\xcd\xb7\x7c\xda\x40\xca\xc6\x11\xcf\xb1\xca\xdb\x2e\x12\xeb\x47\xd3\x03\xab\x67\xcc\xd1\xab\x0c\x9d\x82\xf5\xb7\x74\x92\x97\xb9\x17\x53\x1b\x05\x34\xaf\xaf\x2e\xac\x58\x54\x63\xb4\xbc\x7f\x3c\x5b\x9d\xaa\x08\xd3\x8a\x9b\x5a\x5a\xff\x51\xd4\xa5\xdd\x31\x8c\x42\xfc\xca\xf1\xd3\x61\x7f\xf5\x63\x73\x29\xf3\x88\xee\x81\x4e\x1c\xea\x60\x0a\x5a\x27\xe3\x79\x3d\x9a\x3d\xe1\x8e\x6e\x44\xe3\x1c\x3a\x35\xae\x40\x57\xb9\xae\x02\x13\x12\xa5\xa7\x2b\xf6\x54\x12\xcb\x1c\xce\xab\x83\xab\x3c\x87\xfd\x19\x1c\xa5\xa3\x5a\x5e\x81\xb3\x0e\x88\xd3\x3e\x52\x22\x82\x0f\xf2\x3a\x0b\x60\x5e\x78\x40\xe2\x3f\x73\xf8\xb8\x6c\xcd\xf5\xc7\x87\xf9\xaf\x1e\x84\xb7\x7c\x5b\x9c\x5f\xdd\x22\x99\xb2\xbd\x0e\x3b\xf1\x34\x34\xa8\x3e\x00\xe6\x85\x6b\x3b\x67\x1f\xc1\xf5\x47\xec\x9c\xcb\xef\xc4\x29\x6a\x02\x83\x8a\x01\x3d\xbc\xa4\xb7\x12\xe2\x46\x55\xb5\x0e\x84\x7c\x65\x25\xd7\xe5\xec\x4f\x38\x67\x7d\xc6\x10\x42\xd4\x1c\x66\xbf\x75\x6c\x12\x8b\xcf\x25\xa4\x8f\xc7\x66\xae\x80\x53\xfc\x66\x55\xfc\xa1\x82\x3b\x66\x18\x44\x77\xed\xa9\xa2\x74\x1d\x9b\x0d\xb6\x49\x86\xb2\x0b\x6a\x27\x36\xc4\xd6\xd6\x4a\x7c\x95\x47\x36\x0f\x6d\x8c\xe4\xf1\xaa\x04\x2f\x3d\x44\x94\x67\x97\xab\xb1\x7f\xb9\xbc\xf9\x26\xe3\xc6\x7f\xf7\x5f\xa8\xdb\xf7\xef\xc5\x1c\x8a\xf6\x55\x7f\xf1\x42\x16\xf3\x31\xfc\xbb\x3a\xa5\x9d\x0e\x9b\x14\xa2\xa0\x31\xdf\xca\x8b\x8d\x0b\x49\xd4\xc8\x6b\x64\xc0\x69\x06\x68\x6b\xf8\xd7\x9f\xc6\x7d\xf7\x75\x52\x77\xac\x39\x89\xef\xf5\xd8\x05\xe0\xac\x7b\x49\x6d\x9f\xd7\x5f\x1f\x26\xc7\x63\x8b\x0d\x15\x34\xff\xea\x09\xfa\xbf\x7b\x10\x50\x73\x00\x17\xc8\xfb\x66\xe6\x58\x00\x98\x5f\x5c\x7b\x3f\xc9\x4e\xa5\x72\xee\xe2\xf1\x7c\x59\x49\x41\x0a\xc4\x48\x8d\x35\xa2\xc9\xf9\x12\x1d\xda\x7e\xc5\x87\x89\x3f\x94\xd7\x6c\xd6\x53\x4e\x13\xe8\xf4\xba\xbc\x39\x43\x54\x71\xff\x1f\x63\x7f\x19\x55\xd5\xfa\xbe\xef\xc3\xe8\xb6\x15\x14\xb1\x13\x2c\x50\x50\xa4\xbb\x9b\xc5\xa2\xbb\xbb\x1b\xe9\xee\x6e\xa4\xbb\x44\x40\x42\x04\x14\x41\x29\x15\x93\x50\xb1\x0b\x90\x96\x5c\x1d\xf3\x7a\xc6\xde\xb2\x70\xeb\xfe\x7e\x7e\xcf\xff\xd5\x35\x1c\xbc\xba\xa7\xf3\xbe\xe7\x1a\xf3\x3c\xe6\x71\x72\x38\x05\xc5\x19\xac\xf3\x0f\xed\x18\x52\x62\x50\x66\xae\x2d\x3b\x26\xb0\x72\xf7\x55\x3e\x13\xf2\xca\x54\xef\xad\xfc\x6c\x9d\x6f\x2b\x6c\x13\x77\x0b\xea\xfe\xe4\x1f\x34\x84\x17\xf6\xaf\xa6\xa4\x75\x6b\x26\x8f\x15\x61\x64\x53\xd0\x9a\x31\x1f\x3a\xb0\xba\xf1\x95\x5a\x7c\x2f\x2d\x70\x27\x63\x2e\x69\x35\x3f\x3f\x80\xeb\x8a\x94\xd2\x6a\x7a\xf4\x1a\xef\x17\xea\xa2\xbd\xb3\xef\x2e\xfe\x4d\x70\x80\x56\xe8\x7d\x84\x70\xd5\x9f\x41\xfb\xf6\x5d\x63\x42\x91\x3f\xab\x8e\x67\x3b\x23\xe1\x8d\xef\x2c\x80\x9f\xef\xcf\x75\xfd\xe9\xc3\xa0\x79\x51\x68\xe7\xe1\xef\x1c\x08\x2d\xf7\xfa\x72\xe7\xe7\x1c\x35\x01\xb8\xb0\xc2\xac\xf3\xe8\x0b\xa8\x0b\x6c\xe5\xe7\xba\x9d\x8a\x98\x4b\x5e\x91\x8f\xba\x9e\x44\xdd\x8c\x72\xd4\x27\xe6\x77\x52\xf6\x6b\x4b\x59\xd5\x27\x71\x90\xa6\x4d\xb5\x5c\x3f\x06\xdf\x21\x90\x1c\x7f\x04\xfb\x5d\xa1\x27\xc8\x78\xc5\x44\xb0\x38\xd7\xe0\xef\x46\x9f\x88\xd6\xb0\x0e\xc4\x7d\x29\x4c\x8c\x2f\x35\xc9\xc1\x05\x36\x7b\x25\xbc\xd7\x3b\x86\x8d\x7d\x96\x92\x22\xa3\x6e\x87\x95\x9d\x1f\x4d\x4e\x52\x3d\x8b\xfb\x0b\xcb\x10\x2f\xb3\xce\x3f\x34\x60\x4e\xe3\x9c\x22\x0c\xd1\xf7\x67\x2f\xe2\xda\xc3\x6d\x54\x15\xc7\x2c\xf0\xa2\x21\x14\x35\x9d\xf7\x6f\xf0\x7e\x21\x67\xd5\x4c\x47\x80\xa0\xe7\xaf\xa9\x7e\xe0\x79\x26\x21\xdb\xef\x84\xba\xc3\xe3\xed\x84\x25\x9f\x43\xea\x7c\x0f\xc2\x89\x0e\x5e\x4c\x6a\x39\x7d\x87\x89\x33\x6e\xf9\x00\xd1\x7b\xd7\xee\x83\x35\x2e\xaa\xb5\xf9\x77\x1e\x68\x9d\x03\xf9\x67\xbd\x34\x0e\x66\x7c\xf6\xe7\x1c\x5e\xcb\xff\x1e\x9b\x03\x5c\xdc\x76\xfa\x40\x47\x2a\x24\xf3\x27\x72\xbd\xbc\x61\x84\xdc\x91\xac\x97\x7a\x59\x42\xa6\x36\xa0\x4e\x6b\x14\x67\x1e\xa4\x14\x68\x53\x4d\xef\x46\x1f\x21\x47\x98\x19\x38\x8c\xff\x87\x7f\x08\x25\xc6\x85\x47\xfb\xbf\x5e\xe7\x1f\xb0\x84\xb0\xea\x0f\xa1\x15\xba\x54\xfc\x64\x57\x66\xc4\x65\x0d\x7b\x7c\xce\xeb\xf7\x11\xd1\x68\x15\xbc\xc5\xc2\xa1\x08\x41\x94\x0b\xfe\x23\x7e\x63\xc8\x9b\xff\xf0\x0f\x11\x4b\xa9\x04\x09\xdf\x39\x65\xd4\x54\x1b\x91\xd1\xeb\x24\xea\xf0\x37\x7b\xe2\x39\x4f\x2a\xaa\xe1\xfd\x41\x62\x80\xc7\x45\xd4\xd3\xd7\x49\xc4\x21\xb7\xdd\x2a\xa2\x43\x0f\x49\x5b\x5d\x9e\xaa\xb4\x3c\x1d\x25\xc9\x38\x1b\xfc\xba\x0f\x6a\x6a\xff\x5f\x1c\x08\x92\xfd\x7b\xfe\x3d\x7a\xf9\xe7\xec\x37\xf9\x39\x3b\x57\x01\xd8\xc7\x4e\xbe\x6c\xbc\x07\xc5\x02\xb9\x97\xef\x54\xb8\xc1\x46\xc9\x8f\x62\x29\x57\x73\x10\x6f\xa5\x54\x05\xcb\x04\x2d\xaa\x8f\xf6\x05\x1d\xdb\x10\x5b\x4a\x94\x29\xa7\xb9\x9e\x17\x96\x9c\x67\xa7\xec\x20\xea\x64\x4f\xf6\x74\x9b\x73\xac\xb3\xdb\x4a\xa6\x0b\x72\x72\x2d\xb7\xe8\x25\xa5\x25\x56\x7b\xd2\xd1\xf8\x07\x5d\x63\xe2\x7c\xd3\x36\x6f\x4f\x8d\x12\x62\x65\x9f\x96\x8f\x31\x5a\x89\x18\xf2\xd6\xd6\xe7\xa8\xd2\x02\xd1\x69\xe1\x8b\xb7\xb0\xa2\x2a\xb1\x97\xb8\xc5\x53\xf1\x7f\x7a\x1f\x8e\x2c\x8e\x90\x84\x1d\xa5\x15\x2e\x4f\xab\x90\xae\xda\xad\x28\xd8\x8d\x1d\x20\xbd\xb6\x45\x2b\x48\x7e\xf2\x22\xb3\x59\x7d\x53\x94\x7f\x3d\x4b\x16\xb4\x7a\x0b\x50\x68\xfe\x3b\x0f\x44\xf3\x81\xfc\x6b\x1f\xd0\xd1\xd1\xfd\x70\xff\x7f\x7b\x20\x9a\x54\x00\x2e\x58\x1f\x25\x57\xd9\x00\x81\x57\x81\x4d\x3c\xb7\x19\x42\xc4\x13\x79\xe3\x93\x53\x90\x1e\xa5\x8f\xd2\xc4\xc8\x70\x2a\x5e\xeb\x89\xda\x09\xbf\x33\x54\x59\x93\x0b\xfa\x47\x5c\xcd\x29\xe5\x36\xae\x66\x8c\x0e\xcf\x29\x1c\xce\xf7\xac\xde\x59\x97\x53\x36\xfa\x0d\xdb\x54\x9a\xc5\x92\x6f\xc5\xb2\xdb\xbb\x18\x56\x90\xbd\xae\xbe\x70\xd4\xd4\xb9\x4b\xbe\x5c\xad\xe3\x34\xa3\x81\x23\x2d\xb5\x4a\xbb\x70\xa3\x11\xd2\xdd\x47\x47\x5c\x46\x94\x07\x49\x0e\x1f\xce\xbb\x9d\x56\x20\x91\x0a\xe6\x55\x9d\x0b\xd6\xbd\x0f\x12\x64\x43\x52\xbb\xcd\xe7\x75\xee\x21\x97\x72\x98\x1c\x61\xa6\xb8\xee\x7d\x18\x5d\x94\x22\x77\x98\xcc\xcb\xf4\x4f\x37\x90\xf1\xc6\xdb\x65\xb2\x26\xce\x53\xb8\x0c\x99\xff\xeb\x03\xf9\x7d\x1f\x2c\x1b\xff\xee\x83\x79\x9a\xbb\xc6\x3f\x88\xfe\x9c\xcd\x71\x00\x27\xe9\xe9\x6f\x5e\xeb\x06\xe0\x08\x38\x1e\x5a\x50\x09\x08\xdf\x28\xeb\xfb\xb4\x78\x28\x95\xd8\xc5\xf5\x3d\xe6\x19\x70\x28\x32\x88\x0c\x04\xc9\x20\xa1\x9a\x77\x15\xd2\x3d\x0d\x90\xed\x86\x4f\x54\x15\x1d\x26\xa8\x06\x56\xb5\xba\xb3\x36\x6f\xa8\x1c\x0e\xdf\x0d\x4e\x59\x1e\xa0\x4c\x5f\x79\x6c\x6c\x6d\xa2\x42\xe9\x0e\x37\x37\x65\x33\xf0\xa4\x58\xa6\x1e\xb7\x68\xd3\x06\x8a\x59\x81\x8b\x85\x83\x86\x1b\xe5\xc0\x75\xbc\x55\x2a\x9a\x48\xee\xe9\xa8\xb4\xe9\x56\x6e\x26\xb7\x3f\xf6\xb7\xe1\x57\xdc\x4e\xce\x7e\xaf\x6e\x63\x21\xb7\x4c\x8e\x9d\x97\xb6\xc6\xad\x7b\x1f\xd8\x28\x8a\xe4\x5b\x26\x59\xff\xe1\x1f\x24\xa8\x66\x94\xcf\x9a\xa9\x92\x8f\xf1\x1b\x28\xed\xda\x7c\x12\xef\x97\xe3\xa9\x07\xd5\x03\x7e\x3d\x17\xdf\xad\xf9\xa1\x7e\x7a\x20\x68\xe7\xc0\x37\x87\xdf\xf3\xef\x7b\xe8\xb5\xfc\xfb\x03\x00\x9d\x31\x1d\x5d\xc9\x9a\x2f\xa5\xf0\x29\xc0\x79\xec\xa1\xe0\x4c\x03\x00\x3e\xa6\x33\x96\x71\x0f\xe1\x91\xf8\x87\x4b\x7a\x61\x2f\x40\x4e\x69\x87\xf0\x06\xef\x6b\xb0\x47\xed\x9d\xf8\x1e\xe7\x45\x24\xc9\x60\xb3\x7c\x23\x8d\x7f\xb0\x9c\xa3\x8e\xda\x76\xab\x0f\x99\xd3\x51\x33\xdd\xeb\xb5\xe3\x8c\xf3\xa8\xd2\x41\xb9\xfa\x81\xfa\xb1\x54\xf6\xd8\x72\x03\x17\xed\x1e\xca\x52\xd6\x2b\xa3\x56\x0d\x06\xca\x6a\x49\xb4\xd1\x09\xb4\x00\x85\x52\xd7\x6d\x78\x06\xb5\x87\xe2\xd2\xb9\x68\x76\x44\x61\x88\x12\xf3\xa4\xcb\x44\x4f\x2e\x9e\x92\xfa\xa6\xce\x58\x5c\xc6\x8b\x72\x7d\x32\xcc\x30\x5a\x5a\x8d\x52\x43\x78\x66\xb8\x41\x8a\x91\x7a\x80\x92\xa6\x93\x23\xd1\x4d\x8d\xa7\xee\x54\xef\x16\x5f\xa5\x3e\xa6\xaa\xa3\xc7\xc5\xd9\xfe\xf1\x1e\x9c\x14\xdb\x84\xe8\x52\x27\x15\x64\x7e\x71\x71\x8b\xda\xff\xcc\xb8\xb5\x73\xe0\xcc\xef\xe7\x60\xf7\x8d\x9f\xb3\xa9\xfb\xe7\x2c\x6f\xfa\x39\x8b\x0e\x03\x1c\xaf\xd8\xf1\x22\x23\x18\x80\xf5\xf3\xbe\xa4\x84\x77\x00\xbc\xcc\xcc\x4f\x22\x5e\xc3\x92\x58\xc8\x05\x7a\x7f\x17\x28\x91\xaf\xe1\x76\x75\x2f\x04\x05\x35\x41\xa1\xb7\xf6\x2a\xc8\xac\x9e\x81\xa4\xb3\xd5\x1e\xa4\xc2\x78\x44\x76\xc4\xac\x0a\xd1\xb7\xfe\xae\x54\x69\x7c\x1d\x91\x71\x7e\x8a\x12\xd0\x9f\x45\x0e\xf8\xf9\xa2\x71\x3a\xfc\xc8\xe1\x70\x49\xf4\x80\xd6\x65\xea\x60\x62\x87\x46\x94\x5a\x07\xb5\x3b\xbb\x4a\x03\x87\xfa\x48\xbd\x53\x11\xa6\xf1\x50\xe9\x23\xd5\xa1\xe9\x9d\x36\x55\xa1\x8d\xaa\x7a\x97\xa0\x53\x26\xa7\x41\x95\x1d\x78\xa4\x63\x2a\x13\x46\x15\x7e\xad\xa9\xc3\x2f\xa5\x41\xb5\x1a\xd7\xd3\x1c\x92\x62\xa2\x72\x2e\xd7\x6a\xb7\xfe\xc7\xfb\xc0\x8d\x28\x53\xdf\x29\x7c\xfa\x95\xfb\xff\xbe\x0f\xe6\x54\xd7\x7c\x40\x8f\xd6\xce\xc1\xb5\xe7\x62\xcb\xda\xdf\xab\xaf\xfc\x9c\x39\xf3\x3f\x67\xdc\x1a\x17\x13\xbc\x76\xbd\xa2\xf6\x01\xf0\x71\x31\x9f\x0f\x3a\x0b\x20\x96\xc0\x1a\xef\x25\x0b\x23\x72\xc7\x2f\x6a\x3a\xa2\xa1\x44\xc5\x8d\x9b\xcf\xf6\x31\x1c\xd1\xe9\x17\xc5\x9a\xa3\x90\x2f\x46\xe5\x92\x0f\x8d\x6b\x91\x41\x0b\x49\xe9\xad\x86\x4c\xc8\x1d\xfb\x39\x99\x59\xfd\x5d\x48\xba\xc7\x16\xf9\xdb\xda\x97\x90\xe8\x40\x23\x85\x62\x8d\x7a\x04\x15\x53\xa9\xbc\xa0\x6a\x86\xe8\xa6\x50\x94\x4f\xab\x3c\x43\x76\xe7\x75\xa2\x1f\x28\x51\x90\x9d\x15\x16\xe8\x38\x85\x7e\xea\xa7\xc6\x36\x35\x03\x1a\xff\x20\xd3\x41\x6d\x7d\x58\xae\x7e\x49\xea\x2e\xb5\x7c\xf4\x82\xba\xa5\xd4\x4e\x6a\xd4\xb7\xed\x1a\x76\xe2\xce\x54\xd2\xc2\x45\x54\xa6\x58\x39\xc2\x46\xbe\xab\xe4\xf6\xdf\xeb\xf0\xd3\x0b\x44\x3b\x07\x3e\xa4\xfc\x9c\x03\xf4\x3f\x67\xdb\xb7\xdf\x39\x98\x82\x9f\x3d\x3a\x74\xc9\x5f\x7e\xce\xb0\xb5\x7f\x87\xa7\x00\x30\xcb\xed\xbc\x14\x74\x14\xe0\x92\xd1\x01\xf0\x9e\x00\x10\x3d\x73\x3a\xc3\x35\x17\x16\x64\x55\x2e\x9c\xb3\x63\x86\x4e\x54\x30\xa7\x94\x79\x39\x64\x68\x18\x72\x4f\x1a\x5b\x82\x9c\x3e\xa7\xd0\x06\xc3\xcb\x70\xd1\x38\x45\x64\x8b\x1e\x33\x9c\xb4\xd9\x25\xda\xa4\xa3\x81\xe0\x5c\xde\x49\xd2\x6b\x1a\x23\x4b\xde\xd7\x24\x6b\xd4\x05\x90\x17\x21\x77\x64\x36\xa3\x1b\x91\xe6\xb8\x3c\xd9\x21\xe5\x79\xa4\x38\xa3\x56\xae\x53\x71\x16\x09\x2e\x8c\x55\xb0\x97\xaf\x43\x7c\xab\xf8\x15\x5c\x64\x9f\x20\xb6\x0d\xc1\x0a\x24\x19\x05\x44\xa8\x23\x56\x89\x20\x95\x83\x70\x3c\x10\x56\xbe\x20\x61\x8c\x18\x3c\x8f\x51\x30\x14\xa7\x43\x4c\xdf\x56\xc8\xf7\x89\xe5\x20\xe2\x93\xe3\x8a\x7c\xa2\x16\x88\x27\x66\x8b\x5c\xca\xaf\xeb\x70\xce\x40\x86\xb4\x4d\x02\x80\x47\x5e\x0a\xcb\x20\x09\x20\x29\x22\xa3\x70\xe0\xf2\xbf\x38\x08\x09\xa5\x2d\x2c\x6f\x00\x0c\xa2\x51\x33\xe7\x19\x01\x4c\x5b\x54\x67\x39\x15\x01\x2c\x8a\xb5\xee\x0a\x28\xc2\xaa\xd5\x90\x61\xa0\xf4\x30\xa4\x5a\x77\x98\xc5\xa1\x00\x36\xd9\x08\xd9\xfc\xa5\x6b\x89\x38\x59\x9f\x72\x47\x2c\x36\x50\x97\xcc\x9f\x87\xe4\xda\xab\x50\x75\x4d\x88\x49\x3b\xdd\x5e\x51\x6e\x18\xb6\xe6\x8f\xf9\x3c\xa0\xb0\xe8\x4d\x5c\x6b\x0e\xec\x23\x87\xeb\xe4\xb6\x2c\x87\x7d\x22\x6b\x6a\x2e\xdc\x93\x09\x5f\x24\x1f\x52\xe7\x79\x22\x1c\xc9\x43\xaa\x41\x67\xbf\x45\xa2\x3f\x90\x38\x50\xc7\x67\xba\xe2\xd2\x48\x8a\x4a\xac\xd8\x8b\xb1\x62\x34\x0f\x08\x39\x53\x61\x27\x7e\x6b\xb0\xc0\xea\x71\x85\x02\x7c\x70\xe0\x85\xe9\x18\xa5\xd3\xf8\x9c\x40\xab\xaf\x2a\x4a\xf1\x04\x0d\xdf\xf8\xb7\x7d\x28\x43\xc2\x69\x7f\xc5\x41\x92\x4a\x3d\x21\xda\x37\xfe\x89\x31\xda\x8b\xf0\xda\x7b\xaa\x7f\x59\x75\x0f\x51\xc0\xab\xb9\x3b\x50\xb5\x83\xe8\xeb\x89\xea\xcc\x51\x63\x23\x76\xbb\x87\x01\xb0\x49\x4b\x1f\xde\xf6\x1d\x40\x50\x4a\xaa\x6a\xcf\x04\x80\xf4\x84\xf4\x8b\x83\x2f\x00\x94\xbe\xca\xf1\x1c\xdb\x06\xa0\x39\x2b\x3f\xcd\xc2\x04\x60\xf8\x4a\xe9\x1d\x6b\x34\x80\xf9\x0f\x95\xf9\x4b\xcc\x00\xd6\x1f\xd4\xb1\x7c\x39\x7f\xf6\xe5\x20\x73\xb6\xe1\x36\x6c\xfa\x1c\x88\xb2\x6d\x80\xcb\x1b\xcb\x0c\xea\x13\x4b\x99\x60\x06\xc7\x83\xeb\x3d\x39\xac\x26\x3a\xb9\x8d\x81\x93\xe4\x64\x83\xd1\xea\xd9\xb0\x1f\xe4\xbd\xba\xdd\x2d\x9d\x51\xee\xa4\xc7\xda\x7c\xf7\x8e\xc6\xf0\x93\x4c\x35\x7c\x9f\x1e\x8b\xeb\x24\x6d\x57\x35\x7d\xef\x9c\xa0\x49\x4c\x41\xc5\xcf\xdb\x27\xd5\xff\xc9\xc3\x10\x1c\x15\xb5\x70\x62\xe1\x9f\x17\x96\x95\x2a\x71\xc6\xe1\x4b\xe3\x5b\x50\xf5\xb8\xd0\x08\xd6\x77\xe3\x2a\x27\xf0\x91\xc1\xdb\x69\x1e\x90\x67\x1c\xaa\x6f\xf1\xa3\x41\x17\x1e\x9e\x55\x4b\x26\x68\xfa\xe7\xd3\xfa\x70\xba\xe2\xd4\x26\x89\xea\x5e\xb9\xed\xb1\xea\x5f\x88\xd7\x3c\x72\x01\xd8\x7d\x25\x9f\xec\xe0\x02\x10\x54\x97\x44\xf6\x3c\xf8\x75\x1d\x68\x5e\x10\x1d\x36\x79\x29\x16\x67\x00\x93\x21\xc5\x74\xd6\x6c\x00\x1b\x1f\x94\xc3\xa5\xfb\x00\x0e\x0d\x1a\x72\x42\x2c\x40\x74\xbe\xae\x9b\x27\x13\x05\xf1\xce\x51\xc6\x26\x68\x17\x64\xdc\xae\xc6\xfa\x8b\xfe\x1b\x44\xdc\x6e\xd8\xa9\xc7\x6a\x3f\xd5\xc7\x86\x3d\x40\xd5\x05\x4b\x69\xb5\x34\x8a\xed\xf7\x49\x22\x2f\x9a\x66\xe5\xc8\x07\x7f\x27\x0d\x1b\xe5\x5e\xb3\x8c\x79\x4f\xd2\xd3\x57\xbb\x75\x2a\x9e\x44\xbc\xaf\x53\xd2\x5d\x9a\x5c\xb5\xee\x45\x91\x54\xad\xfe\xfc\x35\xd5\x9a\xd6\x7f\xf2\x67\x2f\xce\x32\x87\xd2\x1c\xf6\x79\x54\xcf\x94\x38\x4a\x0b\x77\x32\xf2\xcd\x27\x45\xf4\x4d\xec\x54\xf4\x8b\xd7\xd7\x55\xdf\xe1\x8c\x22\x29\xcf\xe8\xd4\xaf\xe0\x66\xc3\xcb\x68\x1e\x90\x3f\xfb\x70\x5a\xcd\xb5\x52\x08\x8f\x7c\x3f\x35\x17\x6b\x6f\x22\x1e\xf3\xfe\x02\xc0\x5e\x2c\xd9\xba\x43\xf2\x17\x17\x24\xc3\x27\xbd\xe5\xa0\xe5\x7f\x7b\x62\x2c\x1a\x15\x94\xd9\x36\x03\xd8\x35\xa1\x78\x39\x9b\x00\x5c\x38\xd4\x98\x04\x2f\xae\xf7\xe5\xe4\xba\xc9\x18\xc6\xa9\x44\x20\x33\x2e\x82\x96\x5b\xf4\x81\x3a\xe5\xb4\xd3\x71\xa3\x5d\x0c\xf5\x88\xdd\x1b\x3f\x5e\x8f\x55\x0a\xb3\xf5\x9b\x98\xc5\xa0\xf3\x64\x05\xf3\x85\x6c\x9d\xc8\x14\x52\x99\xb1\x4a\xf5\x9d\x38\x15\x62\x85\xc1\x83\x5b\x72\x29\xd3\xc4\x2c\x5d\xe6\xee\x1d\x29\x83\x84\x4f\x9a\x9f\x06\x29\x19\xa5\x04\x43\xb5\xe8\xaf\x23\x59\x6f\xd6\x3d\x20\x69\xca\x92\x98\x73\x49\x92\x04\x73\x65\x76\x8c\x5b\xe2\x86\x59\x36\x95\x1a\x4c\x44\x62\xcf\x37\x35\x74\x03\x56\x30\x8e\xfc\x76\x58\x75\x1a\xfb\x28\x66\xe8\x45\xb5\x06\x0f\x96\x1c\x13\xff\xd8\x4e\xc3\x1e\xd7\x17\xd1\xd8\x27\xac\x29\x83\x47\x85\x9d\xec\x0a\xd6\x7a\x82\xb7\x0d\xfd\x41\xeb\xc3\x69\x46\xe9\x44\x11\x42\x02\xb6\xdc\x08\xd5\xdd\x4e\x18\xf5\xdb\x0c\xc0\x29\x2a\x61\xb8\xb3\x0b\x40\xc4\x50\xac\x84\xb1\x0c\x40\x3e\x59\xc2\xfa\xc0\x0d\x00\x0d\x55\xa9\xb0\xa3\x2f\x01\x8c\xcb\xa5\x71\x2c\x96\x00\x56\x4a\xb2\x69\x67\x1f\x01\x38\x4e\x29\x78\x71\x54\x01\xb8\xfb\xa0\xb2\xf9\x4e\x00\x5c\xe9\xd4\xd8\x22\xc9\x0d\x8d\x5e\x38\xbd\x78\x14\x1d\x02\x1e\x22\x66\x7e\x7a\xdf\xa9\x73\x2e\x27\xec\x3f\xd9\x05\x51\x46\x1d\x29\x57\x58\xaf\xe4\x91\x6f\xdb\xb5\x47\x96\x87\x3e\x22\xb5\x59\x6d\xbe\xca\x18\xb7\x87\x74\xd9\xf4\xaf\x4a\x7c\x62\x21\x51\xd8\xf0\x76\xcb\x5c\x7a\x11\x21\x57\x2f\xa4\x27\x30\x0b\x08\x47\xb4\x1a\x86\xaf\xe4\x30\xaf\x73\x20\x7f\xf4\xe2\xac\x58\xa9\xa0\x57\x55\xd3\xf2\xbf\xf3\xa8\xee\xc7\x5c\x48\xee\x7b\xf7\x52\x5d\x1d\x13\x9d\x44\x18\xcc\xd7\x54\xc6\xee\x4c\x14\x18\xf0\xd0\x6a\xc2\x06\xc6\x67\xf6\xa8\xeb\xa0\xb0\xaf\xe2\xd4\xba\x50\x3a\x3c\xb8\xca\x28\x09\x5a\x1f\x4e\x63\xa0\xbe\x03\xde\x26\x6c\xba\xfe\x9e\x5e\x22\x41\x21\xb0\xe5\xda\xa4\xfe\x18\xc1\x3b\xe0\x33\x00\xb7\x96\x98\xcf\xae\xf1\x5f\x1c\x84\x82\xba\x78\xe1\x01\x4b\x00\xad\x5e\xb1\x86\xc3\x05\x00\xa6\x49\x92\x31\x27\x9f\x03\xd8\xb9\xc9\xc6\xb3\x66\x00\xb8\xe6\xc9\x55\x73\x70\x01\x78\x51\x94\x09\xfc\x32\xeb\x7d\x39\xc5\x7e\xf7\x74\x4d\x54\x7a\x91\x1f\x3e\xaa\x26\x0f\x0c\x9c\xa9\xcb\x57\x98\x6d\x14\xed\xaa\x29\xf2\x6e\x02\xee\xba\x01\x74\x64\x4b\x47\xa5\xb0\xc0\x88\x62\xd2\x39\x1b\x72\x7a\x42\x92\x30\xf1\xb0\x79\x7a\x65\x7e\xc6\xd2\xba\x17\xe5\x8b\x7e\x41\xcf\xc7\xbc\xcb\xb8\x97\xda\x0f\x5e\x29\x16\xcd\xe2\x36\xaa\x91\xe7\x3e\x96\x76\xfc\xe9\x45\x99\x3e\xac\xe6\xb8\xa2\x79\x35\xed\x53\xb4\x46\xf0\x4a\x4f\x56\xca\xc8\xac\xe6\x87\xd5\xe5\xb4\x73\x8f\xbb\x75\xf8\x30\xe7\x52\xbf\xf4\x54\xea\x62\x30\x0d\xc9\x98\x3f\xfb\x70\x9a\x84\x0c\xd9\x71\x9a\x31\xef\xaf\x5f\x37\xba\x84\xdf\x1d\xc9\x53\xcd\x6d\x74\x00\xdf\x15\xea\x56\xd1\x65\x74\x89\xc0\x1c\xcc\x07\xc0\xf3\x59\x34\x93\xde\x0f\x40\xfc\x90\xe8\xde\xbd\x97\x00\x50\xa7\xc4\x4e\x1c\x88\x02\xd0\x6e\x11\x09\x3f\x24\x00\x60\x81\x93\x64\x63\xbe\x0b\xe0\xe4\x21\xfd\x8a\xd5\x02\xc0\x63\x48\x6e\x3b\xc7\x0a\x80\x1f\x87\xe2\x37\xbe\x04\x80\xe0\xa7\xe8\x31\xa9\x2d\x70\x3f\x78\x41\x73\x59\xd9\x04\x59\x08\xe1\x36\x34\x35\x18\xa0\x3e\xf4\x73\xb7\x66\x75\xdc\xb4\xee\x47\xa9\x70\x39\x17\x7a\x29\x2e\x9a\x78\xd7\x6e\x5f\xba\x6d\xea\x59\x82\x99\x65\x40\x45\x7c\x8e\x23\x5e\xda\xd4\xb3\xa5\xa8\xe8\xc8\xba\x17\x25\x41\xc7\xf5\x2d\x53\xc5\xea\xba\x07\x24\x54\xb5\x68\xf1\x71\xf1\xc9\xa5\x12\x35\x91\xa5\x98\x82\x89\x6f\x1f\x35\x06\x97\x3d\xf2\xc2\x5e\x6b\x69\xc7\xae\x6c\xca\x65\x7b\xc6\xa0\xd3\xb9\x2a\x9a\xd9\xd3\x4b\xd2\x23\xad\xd6\x67\x04\x74\x69\xe8\x5b\x62\x6a\x53\x34\x6f\x8b\xea\x93\xb0\x16\x89\xdc\x8d\x1f\x8c\xaa\xb0\xa9\x09\xaf\xeb\xf6\x1b\x4d\xe2\xec\x62\x6e\x57\x9d\x31\x61\xc4\x11\x23\x17\xcb\x99\x4c\x2a\xf0\x8a\x11\x06\x45\x31\xa6\xc3\xf8\xec\xb0\x41\x00\x9e\x19\x21\x8e\x5d\xc3\x00\x92\xef\x84\x4b\xf7\xee\x05\x40\x2b\x89\x1e\x38\xe0\x0e\xa0\x7f\x4f\xd8\xeb\x50\xfe\xbf\x7a\x62\xbc\xc4\xe3\x4e\xf7\x01\x78\xaf\x4a\x57\xb3\x0f\x00\x04\x39\xca\x1f\xe1\x69\x02\x88\xcc\x42\x6d\x93\xe8\x85\xb6\x68\x59\xf5\x12\x94\x13\x82\x8d\x8a\xd1\xcb\x36\x48\xa0\x7e\x09\x55\x34\x8f\x70\xd8\x49\xd9\xe5\x93\xe9\x9c\x18\xe4\x4c\x32\x75\xe7\x0b\x48\x4d\x70\x20\xcc\x38\x52\x93\x56\xb2\xfc\xf1\x15\xd6\xfe\xe5\x87\x0a\xb2\x71\xb2\x66\x2d\xb7\x9a\xcb\x77\x63\x83\x0d\x91\x07\x0f\xab\xb6\x61\x4a\x75\x6c\x3e\xaa\x5e\x1b\xc0\xa4\x68\xc8\xff\xd8\x7e\x4d\xf8\xcf\x5e\x9c\x37\x6d\xba\x6c\x8b\xf3\x25\x03\xcf\x64\xf4\x9d\x97\x37\x14\x56\xf6\xed\x35\x14\x5d\xc6\xe6\xe5\x76\x8a\x1a\xa5\xad\xdc\xce\xc6\xb5\xb9\x18\xdb\xac\x5e\xcd\xac\x6d\xfc\x6e\xc2\x86\xa9\x48\x55\xae\xad\x32\xa5\xc3\x6a\x26\xa9\xd2\xfa\x70\x8a\x7f\x98\x35\xe0\xa6\xa2\x6a\x8a\x94\xcd\x74\xf0\xd6\xe1\xf8\x9c\x69\x8b\x0b\xf8\xab\xe1\x47\x01\xf8\x5e\x08\x3e\xa2\x2f\x07\x90\xc2\x0b\xf2\xee\xc1\x01\xa8\x76\xf1\x9f\xdf\x3b\xf4\x8b\x83\xb0\x2b\x11\x1c\x3d\x7a\x13\xc0\x23\x4e\x24\x8a\x25\x1b\x20\x90\x53\x72\x86\x7d\x08\x20\x5c\x47\x76\x92\xd7\x06\x20\xae\x48\x31\x4e\xdc\x1a\xde\xc4\x2f\xa0\xd3\x14\x5b\xe1\x54\xdc\x84\x76\xb6\x6e\x2b\xf5\x5e\x14\xd1\xb4\xd1\x71\x84\x3c\x1a\x90\xe9\xa4\x10\x12\x40\xbc\x76\x65\xd0\xdb\x3d\x55\x9d\x70\xc4\x25\x2e\x51\x31\x4f\x1e\xe7\x6e\xf7\xa9\x44\xa0\xec\x2d\x96\xc9\xa2\xf0\x56\xe2\xb5\x38\x0c\x8f\x71\xe6\x43\xf3\xda\xf4\x95\x3e\xdd\x0d\xdf\xde\x35\x2c\xd2\x78\x98\xb9\x0f\x5a\xe6\x3f\x98\xae\x35\x7d\x4c\xd3\x45\x2d\x38\x55\x86\x0d\xd6\x19\xe8\x2e\x4a\x94\xe7\xf5\x47\x19\xef\x5c\x3a\x52\x6a\x74\xb7\xd7\xf4\xc0\xd2\x4a\xd1\xdb\xd6\x09\x53\xbb\x15\x8d\x5c\x4c\x93\xb9\xe9\xf7\x55\xfb\xac\xbe\x9a\x0e\x73\xe2\x2a\x25\xa3\x86\xd6\x87\x53\x94\x61\x39\x88\xcd\x4a\x6c\xa6\xf5\xe1\xe4\xf0\x58\x6f\xc7\x99\xc6\x2e\x66\x58\x58\x33\xe3\x75\x22\x06\x00\x84\x45\x84\x95\xf7\xfc\xfd\xbb\x29\x4f\x28\x6a\xef\x77\x00\x4d\x01\xfe\xc7\xfb\x0e\x03\x98\x3e\x12\x70\x3b\x38\x0b\xe0\x98\x24\xb0\xeb\xc8\xf4\x2f\x0e\x22\xe4\xb5\x58\x2e\x1b\x16\x20\xce\x5e\x4a\x90\xfb\x1c\x40\x52\xbb\x7c\xac\x18\x3b\xcc\xa4\x1e\x44\xed\x51\x10\x84\x7d\xe9\x5a\x1a\xd3\x7a\xed\xd4\x3b\x49\x99\x46\x39\x4e\xc7\xc8\x6f\xa2\xee\xda\x5a\x87\x5c\x23\x1e\xf3\xe3\xbc\xa2\x9c\x31\x8f\x67\xf6\x68\x8a\x19\x2a\xce\xc1\xca\x3b\x1d\x2b\xd4\xbc\xa6\x80\x39\x66\x75\xfd\xe6\x62\x5d\xd9\xca\x6b\x93\xac\x81\xdb\x8d\x03\x4b\xb3\xba\xa8\xa9\x6f\xad\x47\x56\x4a\xb5\xe6\x66\xd1\x8d\x5b\xc7\x3c\x74\x87\xe7\xf7\xd7\xb1\x0f\xa7\x1a\xed\xfc\xc1\x78\x5d\xfb\x61\x89\x49\xea\xc2\xf9\xea\xd2\xae\x61\x33\xfd\x45\x9d\x0a\xfd\x36\x71\x73\xca\x92\x72\x69\xf0\x8d\x7c\xcb\x07\xcb\x81\x85\x25\xd7\xb2\xac\x04\x57\xde\xe6\xa4\x57\x1c\xb3\x72\x5e\x1d\xcf\x34\xfc\x4f\x1f\x8e\xbc\xad\x21\xf6\x7d\x42\x7b\xba\x83\xad\x30\x2e\x35\xf6\x4c\x4a\x8f\x1d\x0f\xee\x46\x4c\x1e\x80\x50\x81\xd0\xd6\xdd\xce\x00\x4a\xd5\x02\x8a\x7b\x15\x01\xb4\xc9\xbc\x07\xf6\xce\x03\x58\x85\xf3\x2d\x1e\xc4\x03\xb8\x8a\xf3\xdb\x1e\x35\xfe\xe5\x05\x89\x3c\x2c\x1c\x7d\x2e\x0b\x20\x49\x40\x7c\xf6\xb2\x32\x40\x46\xb1\xf4\x77\xa1\x97\xf0\xf1\xea\xb2\x52\xa0\xa2\x1b\x1c\xca\x15\x53\x73\xd3\xf3\xa1\xbe\xcb\xf4\xd6\x47\x3b\xe4\x50\xf6\x24\x4e\x59\xba\x04\xd5\x11\xa6\x42\x4b\xdc\x17\xb2\xac\x71\x19\xde\xdc\xe1\xf8\x32\x03\x0c\x9d\xcb\xe7\xfc\x67\xf5\x65\x2b\x99\x36\x55\x2d\xa1\xcd\x7e\xff\x78\x51\xaa\xda\xb6\x2f\x2e\xe8\xd5\x4f\x06\xdf\x56\x9a\x69\xd1\x2b\x9f\xbe\xd7\xe2\xf7\x2a\xc1\x84\x65\x86\xdc\x9c\x31\xb0\x6c\xb6\x77\x7e\x4b\xfd\xc0\xbd\x83\x16\x73\x3f\xe8\x6b\x1d\x5a\xf6\x5a\x67\x2d\xb8\x56\x3f\xa9\x5b\xb5\x49\x5c\x5c\x2a\xe7\xae\x3a\x6a\x77\x6e\xe9\x4b\x89\x78\xc9\x03\xbb\x0f\xcb\x84\x02\xab\xfc\x66\xfb\xec\x95\xd5\x9c\x96\x6c\x01\x07\x99\xd5\xfe\x2c\xa7\x0c\x47\x87\x93\x98\x37\xa9\x1d\xc9\x62\x8e\xfd\x58\x99\xe4\xf1\x04\x11\x47\x79\x9c\x48\xfc\xe1\x98\xfd\x4e\x15\xb8\xc4\xd8\x34\x00\xd1\x7c\x7e\x3f\x86\xa7\x00\x68\x3f\xbe\x7d\x8c\xc3\x00\x7a\x0a\xbc\x4a\x4c\xf9\x00\x36\xf3\x3c\xd1\x07\xae\x02\x78\x62\x79\xf9\x8e\xa4\x00\x04\x3f\xe2\x6f\x61\x16\x01\x48\xf0\x13\xbc\x73\xae\xef\x5f\x3d\x31\x62\x52\x8a\xc2\xac\x80\x29\x5c\x94\xf7\x90\xd7\x84\xb3\xc5\x67\xd0\xec\xba\x51\xd4\x89\xfc\x62\x1d\x4f\xfb\x55\xf2\x97\xac\x06\x33\xed\x10\x33\xc2\x48\xac\xbd\x8b\x74\x16\x06\x2b\x1a\x60\x13\xf4\xe2\x5a\xd4\xca\x8a\x87\x7b\x76\x71\x53\xdb\xd2\x35\x7b\xaf\x96\x4d\xed\x8b\x0b\x99\xe6\x51\x83\x8c\x5d\x5c\x0b\xcc\x86\xe2\xe3\x4b\x5d\xe5\x1f\x4b\x4d\x3a\x26\x5d\xee\x38\x0d\xcc\x5a\x7e\x99\x36\x6c\x63\xec\x9a\xb2\xb6\x9e\x9d\x6a\xd2\x6a\xd9\x62\xa7\x3b\xcf\x76\xc3\xab\x56\xcb\xfe\xf3\x8f\xa9\x9a\x47\xe5\xfb\x1d\x5b\x17\x25\x2b\x27\x0a\xce\x38\x57\x2d\x31\x97\x8b\xe4\x5c\x72\xd9\xbb\x7c\xa8\x18\x97\xd9\xe9\x5c\xbe\xe2\x92\xbf\x33\x6d\xd1\xa9\x64\xf5\x55\x96\x76\x42\x85\xeb\x61\x0c\x6b\xe6\xa1\x58\x67\x97\xb7\xd8\xd3\x29\xa5\xd1\xce\x2e\x87\x71\x1b\x13\xcc\x22\xdb\x9c\x01\xe7\x13\x47\x0f\x20\x26\xc2\xf7\x99\xa1\x14\x40\x95\xc8\x17\xbc\xd7\x0d\xc0\xd8\x8a\x7b\x96\xe9\xef\x73\x01\xcd\xc5\xb4\x6f\x06\xc0\xa7\x82\x4b\xe8\x50\x31\x40\xf8\x2b\x5e\xa7\x13\xaf\x00\x52\x3a\xf8\xb8\x4f\xbb\xff\xea\x89\x29\x96\x14\x1b\xe0\xdf\x06\x50\xf9\x59\xda\x59\xfa\x1c\xa8\x56\xd7\x28\x45\x68\x25\x20\xbb\xaa\x7a\xd5\x57\x6d\x5b\xc8\xed\xc5\x07\x8d\x77\x87\xa6\x11\x46\x33\xa5\xec\x6e\x67\x0d\xad\xf7\xe4\x5c\xf2\x6e\xcf\x14\x6b\x1b\x5e\x70\x76\x46\x37\xdd\xbd\x17\x36\x17\x68\x49\xf7\xaa\xba\xff\xf3\xf8\x25\xb3\x6f\xdf\x1c\x7b\x1f\x3d\x73\xb4\x5e\x9e\x98\xee\x92\xeb\xd2\xb3\x7f\x37\xb9\x72\xa7\xe1\xe6\x1d\x47\xae\x99\x81\x96\xc2\x6b\xee\xce\xb8\xb9\xe2\x46\xe3\x92\x63\x6e\x07\xe7\x31\x75\xc4\x7c\x43\xd7\xc5\x85\xee\xea\xde\x4c\xbc\xfb\xd9\x25\xfa\xf2\xb6\xb4\x8d\xee\x89\xcb\xfb\x4a\x84\x13\x2b\xdd\x53\x57\xdc\xf2\x25\x68\x7d\x38\x51\xdb\x3c\x0c\x30\xdc\x99\x3b\x42\x8d\x3c\x53\x30\x6f\xd3\xce\xd3\x7c\x28\xc1\x0f\xdd\x5d\x71\x4a\xf1\x4c\x00\x52\xa1\x3c\x9d\x0c\x4e\x00\xea\xcd\x3c\x07\x19\x95\x01\x4c\xde\x73\x95\x30\xf1\x01\x38\x3f\xbf\xdc\xbb\x7f\xf2\x17\x07\x11\xcb\xc0\x5d\x75\x82\x0f\x20\x43\x99\xfb\x23\x8b\x2d\x40\xc1\x75\x3e\x0f\xd6\x04\x80\xca\x24\x91\x24\xde\x50\x80\x1b\x37\xc5\xbf\x88\xf7\x43\x6e\x23\x51\x76\x0e\xfd\x1d\xe1\x6b\xa4\xa0\x4f\x59\xcb\x52\xb6\xd7\x96\xe9\x66\x07\xe9\x12\xee\x14\x75\x5b\xb9\x5d\xd5\x5a\xc5\x27\xaa\x5f\x09\xae\xff\xb8\xc8\x14\xf0\x2a\x75\x5b\xd7\xc5\xb9\x5c\x77\xfe\xc6\x85\x07\x39\x53\xee\xd6\x3e\xef\x5e\x3c\xbf\x34\xc2\x67\xdf\xf0\x39\x7e\x80\xa5\x53\xd1\x85\x34\x66\xd1\x9b\xde\x78\xc3\xad\xfd\x3b\xb5\x93\xad\x6a\x8f\x47\xf0\x74\x7b\x5b\x7e\xb1\xb2\x27\xcf\xec\x40\xf3\x70\xce\x56\xaf\xf3\xf3\x03\xf5\x4d\xe9\x3b\xbc\x60\xc1\xa8\x46\x34\x99\xf3\xca\xbd\x45\xde\xaa\xfa\x58\x01\x1f\xf4\x92\x48\xb9\x6d\xd4\xc8\x15\xca\xf2\xa7\xc2\xac\x30\x01\xef\xd6\x95\xb1\xdc\xda\x90\x1d\xde\x51\xab\xd5\x57\xa3\x68\x7d\x38\xfe\xfa\xde\xee\xd8\xad\xa9\xa6\xbe\x69\x57\xb2\x71\x3b\x12\x6c\x01\xa4\xe2\x79\xee\x32\x38\x03\x68\x39\x73\x89\xed\x69\x02\xb0\x78\x74\x79\x81\x29\x15\xc0\xb5\xfc\x12\x7e\xdf\x23\x80\x90\x7b\x1c\x61\xfb\x3f\x01\x24\x9d\xe5\xcc\x39\xba\x08\x90\x77\x90\xeb\x11\xcb\x2d\x80\x8a\x2f\xdc\xb9\x67\xa3\x7f\xf5\xc4\xdc\x32\x12\xcd\x13\x2d\x81\xc6\xdb\x27\xa4\x1d\x50\x64\xc4\xe8\x4e\x93\xd2\x57\x8b\x09\x8a\x72\x9b\x8d\x26\x93\xbf\x3f\xc1\xaf\xce\xc8\x34\x21\xdb\x77\xd5\x3d\x9f\xcf\x95\xa7\xe1\xe1\x7c\x4e\xe4\x86\xe8\xc9\xbe\xda\x29\x71\x9f\x93\x0d\x59\x2f\xe2\xdf\xea\xbb\xaa\xbf\xce\x7d\xd9\x70\xdf\xc2\xb3\xf5\xa3\xcc\xb3\xad\x0d\xcc\xde\xc4\xaf\x4f\x1e\xd4\x97\x9a\xf8\xd5\x4c\xd8\xdd\x6f\xcc\x21\xf9\xf3\x4d\x25\xde\x49\x4e\xaf\xf5\xf7\x9e\x21\xde\x3a\x95\x20\x1a\x70\x7f\x8e\xd8\xc8\xb5\xde\x87\x63\x15\x88\x5e\x20\x55\xe7\x86\x1a\x05\x68\x2e\x19\x95\xef\x0b\xd1\xf3\x3f\xf5\xef\x3e\x9c\x80\x55\x9f\xe7\xab\x9f\xb2\x4a\xfc\x83\x7c\x26\x31\xe9\xe9\xa1\x34\x1f\x8a\xcf\x23\x9f\xbf\x70\xbb\x12\x8c\x00\xe4\xe6\x78\xfa\x76\x1b\x01\xe8\x8c\x72\x6d\x66\xa4\x07\xb0\xe1\xbe\xcc\xc0\x54\x01\xe0\x15\xcc\x19\x78\x40\x11\x20\xec\x25\xc7\x96\xfd\x83\x00\x69\x76\x1c\x01\x87\xd1\xbf\x7a\x62\x6a\x35\x2e\x8f\x9c\x31\x00\x68\xe1\xe3\xdb\x7d\xd1\x15\xa0\x53\x5f\xe8\xb6\x10\x3f\xbc\xef\x63\x95\x60\x50\x74\x44\x6a\x1f\xd8\xc9\x0d\x99\xec\xa7\x64\xf5\x46\xa1\x3f\xf9\x1c\x26\x8c\x74\x4c\xeb\x9b\x67\xb6\xad\xbc\xac\xfd\x6e\x37\xd0\xd4\x32\xbe\x29\x6b\x32\x24\xf9\x01\xe6\xb9\x4c\xdc\x9e\x92\xe5\xa1\xab\xf7\xb2\x42\xdc\x9e\x22\xa3\xe6\x35\xec\x61\xed\xef\x44\x86\x22\x73\xf7\x47\x12\x3e\x91\x9e\x78\xa4\xf3\x87\xe3\xc7\x77\xf6\x7a\xc6\x4b\x45\x54\x4f\xfa\x74\xee\x8d\xa5\x0b\xbb\x38\xc3\xd2\xa6\x1a\xc5\x1c\xda\x36\x67\xdc\xf4\x25\xec\x46\xa8\xe9\x8f\x57\xb5\xfb\x42\xc6\x42\x58\x16\x6d\xab\xc4\x83\xe7\x82\x46\x96\x9c\xca\x3e\x06\x9e\x0a\xd9\xb8\xdc\x54\xa4\x4e\xeb\xc3\xf1\x69\x0c\xb6\xc1\xc8\x66\xbc\xfb\xd3\x87\xe2\xb5\x2f\x30\x01\x67\x1f\x17\x0e\x80\xba\xc6\x5d\xbc\x7b\x06\x40\xef\xcb\xa5\xe5\x3d\x87\x01\xec\xab\x2e\x06\xec\xd5\x07\xf0\x0b\x3b\x9f\xbb\x97\x09\x20\xf6\x11\x9b\x0e\x93\x1b\x40\xf6\xc5\x0b\x3b\x0f\xe6\x01\x54\x1d\x65\x5d\x3d\x68\x01\xd0\x88\xbe\x58\xc3\x9c\x0d\xd0\x29\xc3\xc9\x7f\x96\x1b\xe0\x81\x3c\xff\x0e\x9e\x07\x00\xcf\xe6\x44\x26\x65\x9a\x91\xf7\x43\x5d\xd2\x33\x86\x9b\x28\x8f\x86\x55\x94\x3e\x79\xd9\x12\x5a\x9e\xca\x68\xa5\x64\xd6\x2c\xf4\xdc\x1f\x36\xaf\x69\x62\x1f\x1e\xbe\xd1\xee\x5b\xd7\x7b\xad\x35\xb9\xb0\x23\x53\x6d\xa8\xbf\xb4\x35\xeb\x62\xe7\x87\x37\x7a\x99\xea\x19\x6f\xdf\xf0\xbd\x3c\x99\xa4\x9f\x36\xf4\x79\xd7\x13\x93\x58\xc6\x14\xe9\x71\xcf\x9e\xb6\x08\x99\x94\x92\xa9\x7d\x1d\xf5\xa1\xcf\x92\xe8\x67\x26\x6f\x59\x87\x54\xc7\x75\xcc\xcd\x35\xea\x04\x39\xc7\x56\xfd\x18\xae\xdd\xee\xbf\x12\x7b\x69\x31\xab\xf2\xaa\x6f\x52\x2c\x7e\xe9\x65\xa9\x3e\xad\x0f\xc7\x9b\x29\xea\xcc\xaa\x76\xf6\x88\xd7\x8b\x88\x25\x8c\x6a\x46\x89\x27\x6f\xc4\x03\xec\x99\x94\x7e\xf7\x97\xe1\xde\xb8\x83\x09\x47\xdc\xbe\x86\xe5\xe0\x5a\x62\x66\x00\x54\xf4\x2e\x63\x76\xef\xfd\x95\xff\x3b\xa9\x71\xd4\xee\x15\x02\x08\x3e\xc6\x5a\xc3\xc8\x02\x90\xc2\x7c\xd6\x9b\x31\x06\xa0\x70\x81\x65\x13\x43\x12\x40\xdd\x5f\xa7\x82\x19\xdd\x01\x3a\xce\x9c\xbd\x73\xe0\x3e\xc0\x03\x73\x8e\x10\x96\xcf\x00\x83\x77\xb8\xa6\x2e\x6e\x06\x78\xe7\x22\xf8\x5c\xbc\x19\x24\xbf\x0e\x4a\xec\xd2\xaa\xa4\x8c\x8c\xeb\xcb\x07\x7a\x9e\x21\x4c\x7c\x7b\x85\xbe\x9a\x2e\xf8\x25\xe3\xb5\xb8\xb1\x68\x6d\x7b\x6f\xe0\x23\x92\x7b\x53\xd7\xfe\x2a\xb9\x0e\xa3\x04\xb5\xa7\x35\x69\xa2\xad\x9a\xad\x1b\x46\xac\x22\x39\x1b\x39\xde\xe9\x0d\xf1\x86\x5e\xad\x36\xfd\xba\xf5\x11\x7d\x50\x5a\x19\xfb\x44\xea\x7d\x13\x7f\xbe\x22\xcd\xe9\xca\xf6\x4d\xbe\x2c\xf9\x43\x73\xfb\x9b\xb9\x7d\xb2\xb2\x13\xe7\xbf\xd7\xbb\x79\x6f\xce\x4a\x5d\xc8\xbb\xe6\x73\xc5\x2d\x7d\xc7\x12\x7d\xf9\x5b\x8f\x1f\xa9\xc3\xcb\xcb\x85\x27\x3d\x9e\x26\x53\x56\xa2\xf2\x96\xdd\x6e\x25\x3d\x5a\x25\x67\x8e\xbb\xaa\x25\xef\xc1\x54\xa6\xfd\x70\x99\x89\xff\x86\xcd\x48\xca\x72\x1e\x88\x3b\x8f\xf3\x8d\xdb\xe5\xb4\x1c\x77\x1a\xf7\x26\x66\x33\x80\x6a\xc8\xc5\x68\xfa\x60\x00\xf3\xd5\xf3\xa2\xf4\xd3\x00\x1e\x21\xac\x16\xbb\x4f\x00\x44\x88\x9c\x96\xa5\x5f\x01\xc8\xca\x64\xd6\xa1\xdf\x07\x50\xd9\xf6\xf3\x3d\x26\xad\x1f\xe5\x61\x11\xdd\xe8\x3f\x79\xc7\x2d\x96\x50\xc6\x76\x80\xcf\x3c\xec\xb1\x2c\xc1\x00\xb3\xae\xbc\x96\xbc\x4f\xa1\x07\x7b\x42\xe4\x1e\x8a\x48\xb5\x21\x99\x49\xd7\x39\xa5\xcf\x7f\xc0\x5e\x57\x1e\x49\x50\x19\xae\x9d\x67\xd0\x77\xae\xd8\x70\xeb\xf9\xb7\x54\x27\xce\xb6\x8d\xd9\x2a\xaf\x23\x23\x9f\x3f\xb8\x1c\xf1\xfa\xe5\xab\x1b\xf4\x4f\xcf\x7b\xb9\xbd\xb0\xf9\x30\xfb\xec\xb4\x57\x6a\xd7\x85\xb1\xcd\x7d\x62\x1e\x5f\x5a\x32\x26\x5f\x75\x58\x7a\xe8\xd7\xcf\xcd\x04\xdd\xaa\x72\xf7\xbc\x36\x32\x37\xd2\x30\xe7\xfa\xa1\x4a\xf4\xc7\xc0\xf5\x80\x75\x0f\x48\x7e\x91\xc6\xd2\x64\x49\x8e\x8b\x75\x1e\x7a\xe5\x68\x81\xb4\x93\x7e\xee\xe0\xaa\xf3\x55\xbc\xe3\x8f\xab\xbd\x18\x8b\xf4\x49\x47\xb7\xac\xdd\xd8\xcd\x29\x64\x07\xba\x4c\x49\xec\x74\x42\xbd\x3d\xa4\xf5\xe3\x9c\xe2\x0e\xda\xf5\xa4\x8a\xe3\x65\x23\x03\x01\xb4\xfe\x62\x77\xa6\xdf\x01\x60\x73\x81\xad\x9a\x81\x1d\xc0\x47\x92\xe5\xce\x4e\x59\x80\xb8\xc3\x3f\xd7\x9b\x6f\x4f\xf7\x9b\x07\xe1\xcf\x3e\x88\xb1\xb5\xeb\xb2\x24\xc8\x32\xbd\x27\x19\x00\x66\x2f\x5f\x62\x93\x81\x55\x2a\x56\xe4\x2f\x25\xe7\xf9\xc7\xa4\x67\x32\x95\x0e\x72\x6f\x00\x1f\xa8\xf2\x3d\x7c\xaa\x7b\xeb\xea\x31\x03\x42\x1e\xba\xba\x66\x41\xd8\x51\xa5\x6e\x38\x91\x7e\xba\x24\x64\xa6\x63\x29\xc0\xee\xfb\x44\x95\x65\xf7\x79\x87\xd6\xb1\xc1\x77\x0d\xfd\xb6\xb6\x01\xef\xc4\x27\xee\x76\xa9\xd9\x09\x3e\x79\x3c\x1d\xd9\xfa\xc1\xee\xd5\x7d\xdc\x9c\x48\x63\x91\x9d\xdb\x1d\xec\x0f\xf9\x5a\x01\x7b\xdf\xa6\xe9\xc5\xcd\x55\xe2\x76\x84\x1b\x9b\x97\xec\x4b\xfb\xec\xce\xd4\x64\xac\xec\xcf\x1f\xb4\x0d\xac\x5a\x58\x3d\x91\xdd\x47\xeb\x81\xb1\x65\x29\x3e\x82\x65\x4c\x71\xb5\xb9\x56\xa8\x8a\x6d\x4c\x0c\xb0\x5e\xcc\xc3\xe3\x42\x63\xcd\xac\xea\x73\x0d\xf1\xa6\x11\x05\x96\x63\x79\x9b\xf1\xb9\xe1\xf2\x00\x06\x23\xac\x8a\x3b\x73\x01\x9c\x4a\xcf\x65\xd0\x57\x00\x04\x07\xd2\xb5\xfe\xbd\xae\x34\x97\x9f\xeb\xa3\xf9\xef\xd7\x3d\x08\x5c\xbf\xe7\xdf\xbf\x7a\x41\x4e\x3a\xee\x98\x80\x30\x80\xcb\x84\x0b\xfe\xf3\x97\x10\x76\xe1\x32\xf9\xa5\xf7\xb7\xc9\x2b\x32\xf5\xe6\xc1\x0f\x6f\x13\xa8\xaa\x35\xfe\x8d\xcd\x87\xb1\xf5\x46\xc1\x29\x81\x79\xab\xcb\xb7\x9d\xd0\xa5\x59\x91\xc6\x0b\x9b\x82\xf6\xdd\x40\xf9\x7c\x9e\xf7\xcd\xdf\xda\xac\x69\x5f\x32\x9b\xd8\xd7\xd0\xba\xcb\x34\x6a\x26\x62\xea\x65\x1b\x83\xf1\xd0\xc4\xd8\xec\xa3\x46\x26\xd3\xa0\xd1\x93\x3f\xb6\x5d\xcf\x36\xf3\x78\xb2\xbc\xb8\xb3\x82\x60\x9e\xdc\xcb\xb5\xa4\x55\xba\xdf\x5c\xeb\xae\xd3\xca\xde\x3c\x8a\xf9\xe3\xd6\x92\xd5\x3d\xd9\x4a\xe6\x2e\x37\xd1\xab\x90\xe1\x61\x7e\xa3\xbe\x1f\x43\x49\x61\x37\xfb\x5a\xcb\x80\x5d\x8a\xcf\x31\xd7\xad\xe6\xc1\x39\xc5\xca\x9b\x97\x57\xec\xc2\xbd\x8d\x3e\x66\x76\xbf\x2c\x1f\x1f\x16\x7e\xc5\xcc\xbf\x78\x8e\xb0\x3b\x44\x08\xc0\xcc\xfc\xd4\xf3\xed\x61\x00\x5e\x86\xc7\xcd\xb7\xba\xfd\xca\x7d\xff\xf4\x61\xfc\xc9\x81\xcc\xdb\xfe\x3b\xff\x46\xf2\x00\x98\x15\x77\x05\xcf\xbf\x05\x02\x67\xeb\xf9\xf4\x0f\xae\x88\xa0\x48\x8b\xfc\x87\x27\xe9\x94\x72\xd9\x34\xc3\x97\xb7\x47\x49\x57\x55\x29\xae\xd8\x2a\x4e\xfc\x27\xa3\xe5\x48\x96\xf4\x2c\x2c\x9d\xc3\xb7\x4c\xf6\xe0\xd1\x15\x21\xff\xc0\x12\x59\x2f\xf6\x65\x87\xf4\xe1\xf2\x7d\xf6\x45\x8b\xab\x4d\xb6\xd5\x92\x26\xd1\x0b\xd2\x6f\x3b\xae\x7f\xa6\xf9\x2f\x74\xc7\x67\xbe\x2e\xca\x96\x05\xe8\xc9\x7d\xc9\x5e\xa6\x2f\x78\x6e\xf0\x72\xc4\x62\xf9\x4e\xfe\x1e\x43\xb7\x27\x6e\x2b\x53\x57\x5f\x18\x62\xfa\x1a\x56\xc7\xd3\x29\x86\x42\xf7\x77\x62\xf9\x92\x4e\x18\x50\x3b\xae\xe1\x8e\xc4\xbe\x33\x52\xbf\x35\x8f\x33\x8b\xe9\x37\x1a\x6a\x7a\x8f\x7b\x1e\x55\x6d\x7c\xa1\x3e\x10\x6f\x10\xfe\xdc\x70\xa6\xee\x0c\x81\x39\x58\xc0\x50\xad\xc6\x80\x30\xe0\x7f\x11\xc0\xaa\x71\xbb\xef\xdf\xeb\xa1\xf9\x30\xd2\x34\x7f\xce\x72\xf2\xcf\x79\x87\xfc\x3b\x0f\x34\x11\xff\x73\xfe\x7c\xdf\x4f\x3d\x0f\x40\xd7\x41\x47\xf7\x63\x3b\x00\xf3\x21\x06\x83\x0f\xe3\x00\x97\xf4\xce\x0d\x3c\x9b\x45\x1a\x85\x97\x24\xdb\x3b\xc7\xa9\x66\xb2\x37\xb4\x22\xeb\x87\xc9\x91\xea\x1b\xed\xa6\xf3\x72\x88\x4d\xc6\x0a\xbe\x1d\xb1\x4f\xf0\xbd\xf6\xd8\xa8\x1f\x7e\x7b\xb1\xbd\xbe\xda\xa9\x38\x77\x69\xec\xf6\x84\x3d\x99\x7a\xb6\xd1\x98\x8d\x55\xca\x39\x52\x26\xcb\x2b\xdf\x7b\xbf\xe4\x17\xe9\x60\x97\xc7\xbe\xbf\x2d\xac\xd3\xf4\x5d\x79\xbd\xdc\x94\xcb\xae\xa1\xb3\xe2\xb6\xf2\x38\xb3\x5b\x73\x71\xe2\xc3\x6a\x71\xfa\x01\x2d\xe7\x0f\x2f\x31\x2d\x49\x5d\xda\xbd\x23\xcb\x58\xde\x84\xaf\x3a\x92\xcf\x8e\x63\x89\xb1\x1e\xda\x85\x8f\x22\xf0\x5b\x22\xb6\xea\x4c\x75\xff\xc0\x2b\x87\x2d\xea\xe2\x3b\x23\xf0\x36\x61\x05\x3a\xa2\x77\x56\x09\xe9\xfe\xa9\xba\x02\xb7\x5e\x11\x9e\xfb\x69\xeb\xa6\x37\xbf\x23\x6e\xf7\x99\x03\x70\xfc\x4a\x67\xf0\xf7\xba\x22\xe7\x7e\xbf\x0f\xd6\xfb\x30\xfe\x6f\x0e\x64\x2d\xef\x9c\xcb\x5f\xcb\x3f\xdf\x03\x9c\xb4\x62\xf0\x7b\x91\x00\x70\x31\xe5\x4c\xe0\x7d\x4d\xd8\x28\xfc\x40\x74\x2b\xcd\x03\x51\x36\x4d\xb1\x56\x0f\x33\xe7\x4e\x5f\x26\x61\x8c\x5a\x5c\xc5\x43\x17\x89\x1e\xf6\xb1\x01\xca\x7f\xf2\x0f\x36\xdb\x70\x5f\x0b\xce\xc7\xd7\x98\xc8\xe3\xb4\x5a\x14\x13\x73\x75\xf7\x61\x55\x87\xbf\xa7\x6e\x53\x37\xc4\x7c\x5f\xfc\x94\x7a\xfa\x4f\xfe\x01\x3d\xf8\xa3\x03\x27\x1f\x99\xa6\x2a\x36\x1e\x80\x3f\x13\xea\x43\xe3\x1e\xd4\x2f\x8d\x0c\xe0\x97\x03\x3f\xa8\x5f\x7a\xd1\x48\x70\xf4\x67\xd3\xa0\x7f\x1c\x4d\xb8\xea\xe7\xa4\xde\xdd\xbf\x44\x14\xbd\x62\xa0\x21\xdc\xfd\x84\x18\xe8\x39\xae\xc1\xd7\x59\x41\x5c\x70\xfb\x0e\xe0\x33\x42\xf7\x9b\x17\xe5\x4f\x0e\x84\xb6\x0f\x96\xdd\xe8\xfe\x8f\xef\xbf\xdf\x93\xd6\xf8\x87\x84\x35\x0f\x84\x17\x00\x67\xe1\xb9\xb8\x96\x48\x40\x09\x7b\x09\x98\x57\xb5\x23\x7a\x72\xb6\x8a\x7c\x39\x2f\xa9\x8a\xea\x9b\x75\xf1\xf1\x31\x64\xac\x51\xa5\x4d\x61\xe0\x11\x12\xd8\x90\x5c\xbd\xd7\xf9\x07\x4b\xe2\xfb\xd0\x06\xdf\x94\x75\xfe\xe1\x23\x21\xf0\x9a\x62\xe8\x7d\x9d\x55\x82\x51\xd7\xb7\x50\x3d\xf5\x11\x7c\xc1\x5b\xef\x08\x39\x15\x15\x7c\xe4\xea\x54\xf8\x01\xd4\x39\xc2\x76\x3c\x77\x70\x8f\x72\x36\xc1\x06\x9f\x19\x18\xa9\x1c\x84\xd1\xc4\xe3\xfd\x9d\x51\x69\xd3\x47\x08\xea\x7e\xf4\x28\x81\xb1\xcf\x04\xdc\x95\x73\xa8\x17\x1f\x8e\x13\xb5\x3d\x2f\xa0\x46\x5f\xff\x45\x7c\xe3\x3a\xad\xe2\x3d\x74\x9f\xb8\xe8\x1a\x8c\xd6\x7b\xca\x49\xda\xed\xb2\x8c\xde\x34\xc0\x4b\xf2\x72\x3a\xf9\xcb\x8b\x52\xb0\xf0\x3b\x07\xf2\xe2\xff\xfc\xfe\x9d\x96\x7b\xfd\xe9\x81\xe8\x35\x00\x60\x5e\xde\xf3\xa4\xf5\x33\x00\x67\xed\x99\x86\x1a\x71\xf0\x13\xc6\xf1\x9a\x14\xc4\x23\xf7\xe4\x6c\xa4\xa3\x68\x3d\x18\xe1\xee\x94\x71\x43\xaa\xb1\xaa\xb7\x1a\x85\xc9\x3a\xcb\xfa\x85\x73\x02\x19\xed\xfa\xd5\x69\xce\xce\x96\xbc\x21\x30\xcb\x35\xdb\xfc\x1b\xa9\x37\x89\xdf\xdd\xc3\xc8\x8d\xa4\x52\x34\xee\x15\xa9\xb3\x42\xda\xda\x14\x78\xa5\x46\xbd\x8a\x58\xf3\xe8\xa4\xcf\x5f\x68\x7e\xa2\xe2\x87\xbd\xbe\xb6\xca\x8c\x04\x0c\x26\xc8\xef\xc0\x9a\xf7\xa1\x58\xc1\x90\xa4\x44\xcc\x72\x75\x58\xf7\x3e\x84\xad\x46\x92\x8c\x1c\x18\xd7\xfb\x2e\xea\xc6\x86\x48\x0d\x76\x91\x8a\x9f\x3f\x94\x92\x8a\xed\xbd\x15\x1f\x8f\x0e\x90\x08\x36\x53\x8a\x53\x2f\x87\xc9\x27\xad\x5f\xfe\x3a\x0f\x6a\xc3\x7e\x3f\x0f\xbf\x28\xac\xe5\xdf\xaf\xe8\xfe\xdd\x87\x42\xfd\xdd\x03\x71\xaf\xfa\x97\x07\xe0\x14\x9a\x11\x7b\x7d\x16\x80\x53\x8c\xe5\x7e\x21\x05\x5e\x0a\x96\x73\x44\xa6\x7f\x82\xcb\xb2\x6c\x22\x3b\xe3\x36\x22\x22\xea\x27\x51\x0a\x81\x06\xd4\x52\x83\x18\xad\x76\x77\x4e\xca\x13\xab\x7a\x13\x07\x7b\x4e\x4a\x92\xb3\xa0\xf9\x76\x6b\x1f\x0a\x9b\x6f\x9f\x35\xbf\xa9\x3d\xe5\x7c\x34\xda\xfa\x9c\xa1\x1a\x39\xf3\xaa\xb7\x83\x90\xce\x24\x59\xa2\x8a\xcf\xc9\x53\x43\x89\x4c\xdf\xe6\xe7\xcc\xa9\x52\x44\x66\x1e\x08\x72\xf4\x51\xbe\x48\x8a\xf9\x64\xe9\x7a\x40\xe1\x1a\x29\x62\x59\xc1\xe5\xb8\xfc\x36\x12\x81\xa4\xe6\xb0\x53\x6e\x1b\xf9\x0a\x69\xc4\x66\xc3\x3a\xff\xb0\x89\xac\x45\x1e\x30\x9e\x93\xb9\xb0\xca\x47\x1e\x33\x56\x95\xa9\x9a\xed\x24\x2f\x1b\xb3\xca\xe0\x26\x72\x29\x3b\x8d\xa2\x64\xf3\x3e\xdf\xa4\xec\x36\x6a\xfa\xc5\x07\xde\xdd\xfb\xfb\x3e\xc0\x59\xfe\x73\x0e\x9a\xad\xf9\x70\xd6\xee\x83\x97\x6b\x3c\x48\xcf\x9b\xb5\xfc\xfb\xf9\x5a\x0f\xc4\x15\x80\x0d\x47\xe9\xe8\x4a\x07\x01\xb8\xe9\x4f\x3f\xcc\x8a\x84\x45\xc1\xfa\xf3\x3d\x09\x47\xc1\x5b\xc6\x9c\x6f\x34\xe4\x31\xb2\x8a\x76\x93\xdc\xe1\xbd\x11\x11\xd3\xdf\x80\xf2\x72\xa4\x50\x1b\xcd\x27\x35\x87\x6d\xcd\xa8\x27\x1d\x9c\x0c\x6a\x2d\xf4\xa9\xac\x5e\x6e\x06\x55\xc6\x75\xd4\x3d\xa1\x1b\x0d\xbb\xf4\x8b\x28\x4d\xc9\x55\xa6\x39\xda\x4e\x94\xb4\xfc\x56\xb3\x80\xff\xf0\x0f\xcc\xe4\x6f\x8f\x7b\xad\xea\xe4\x3f\x91\xf1\x1f\x8e\x58\x7c\x91\x33\x23\xdf\xfd\x71\xda\x8a\x59\x66\x89\xbc\x4a\x36\x30\xaf\xfa\x4f\xdf\x03\x8d\x7b\x10\x24\xcb\x53\xc6\x34\x1d\x25\xd9\x57\x6f\x51\x70\x1a\x7d\x12\x9f\x7f\x7c\xa2\x9e\x52\x3f\xf0\xeb\xb9\xf8\xcc\x6a\xed\x79\xf8\xb3\x1f\x6b\xad\xef\x62\x46\xfd\xf7\xfc\xfb\xc1\x5a\xef\xc3\xad\x90\xdf\xf3\x6f\x5a\x0f\x44\xf6\x49\x80\x4b\xc8\x71\x95\xe4\x8d\xb0\x2a\xac\x76\x3e\x3c\x9c\x0a\xf9\x32\x18\xee\x87\x7e\x1e\x20\xa7\xc2\x2a\xbc\xd9\x6d\x13\xd2\xaa\x1b\x2e\x7b\xda\x56\x0d\x31\x34\xc1\x2b\x39\x5a\xca\x52\x71\xb6\x47\xd5\x0e\x99\x31\x50\xeb\x3d\xa4\xb4\x94\xd7\x7b\x1f\xfa\xa9\x5e\xd1\xc9\xba\xe7\x34\xad\xa8\x6e\x59\x02\xba\x74\xea\x4a\xd4\xc3\x25\xf7\x0c\x02\x68\xfc\x83\xb2\x00\xe5\x59\x87\xbf\x91\x85\xc2\x7d\x4a\xcd\x40\xa6\xf1\x41\xd9\x3e\x4a\xc7\x3b\x1e\x43\x37\x19\x11\x4a\xf5\x4c\xa8\x61\xb2\xd4\x43\xca\x27\xc2\x79\xbd\x15\x49\x7b\xaa\x06\x65\x50\xeb\xec\x7f\x72\xff\x35\xee\x41\xd4\x97\x72\x06\xd9\x2e\x57\x0c\xd0\x5d\xf6\x73\xfd\x5f\x6d\xff\x7d\x0e\x2c\xac\xf1\x1f\xef\x0a\xd6\xf2\xef\xb5\x7d\xd0\x2e\xf7\x7b\xfe\x9d\xb7\xc6\x4d\x65\xeb\x02\xb0\x08\x30\x1c\x4f\xf1\x07\xe0\x48\x39\x34\x15\xbd\x08\x20\x5c\xc7\x1a\x14\xa8\x05\xef\xa4\x9e\x71\xd4\x79\xb4\x40\x28\xaa\x98\x4f\xd1\x81\x13\xb8\xb4\xa2\x44\x34\xad\x6a\x90\x41\xc3\x9b\xd2\x1b\xcc\x6c\x90\x68\x8b\x19\xf9\xfb\xc6\xda\x88\xa1\x53\x9f\xd2\xa0\xc1\x6e\x44\xf1\x8a\x3f\xea\x90\xee\x69\x84\x29\xd4\x46\xf5\x9c\xe6\x43\x64\x63\xbc\x8a\xea\x82\x9a\x0d\xf5\xed\xd5\x05\xf5\x81\x75\xfe\xc1\x92\x5a\x7d\x83\xa4\xc9\x2f\xff\x8e\x9a\xd6\x61\xa6\x59\x28\xfb\x9a\x6a\x3b\x60\xac\xf5\x51\x8a\x4a\x2d\x78\x7d\x49\xfd\xa9\x54\x21\x55\x6e\x62\x54\xfb\xa0\xc4\x32\x35\x66\x05\xa5\x3e\xb7\xc6\x7f\x4c\x88\xf9\x22\x02\xd4\x07\x8a\xfd\xb4\x9c\x5b\xa4\x14\x69\x44\xe4\xa5\xef\x00\xbc\xfe\xf8\x73\xfd\x44\xbb\xbf\x27\xe6\xfa\xef\xe7\xe0\x3a\x07\xb4\xd6\x07\x53\xfb\x63\x8d\xff\x58\xfb\x7b\xee\x28\xc0\xd1\x33\x5b\x23\x23\xce\x00\xd0\xdd\xa1\xa3\x8b\xfe\x0a\xc0\x21\x76\x60\x32\x78\x3f\x80\xc0\x1d\x66\xe2\x15\x6b\x00\x49\x3e\xd6\xbb\x2e\x5e\x30\xac\xa0\x7b\x51\xdb\xb6\x07\x6c\x35\x32\xf9\x29\xe6\x49\xb0\xc9\xa0\x4b\x9c\xdb\xc8\x0b\x99\xb2\x48\x91\xf4\x36\x18\x41\x3e\xd9\x1e\x97\x72\xd6\x93\x44\x6e\xba\x6f\x93\xad\xd7\x72\x46\x5a\xfc\x4f\xc8\x76\x6b\x3c\x41\xdc\x22\x0d\x14\xc7\xd1\x01\x48\x72\x52\x9b\x3c\x15\xa5\x85\xd8\x66\x8f\x29\xfd\xa5\xa4\x87\x70\x94\xf7\xa0\x1e\xcb\x9f\x40\xf8\x1a\xce\x28\xf7\xca\x9a\x23\xf4\x77\x56\x54\x74\xa4\x19\x10\xfa\x87\x4e\xa8\x47\x92\xd5\xc8\xce\xc1\x39\x94\xbb\x78\x27\x72\xe6\x23\x49\xe9\xae\x58\x3a\x22\x34\x13\xab\xe8\x27\xd6\x81\x9c\x24\x9a\x2a\x0d\xd3\xae\x83\xb0\x11\x42\x40\xb2\xc4\xfb\x69\x3c\xd8\x7a\x1f\x4c\xc9\xff\xcd\x01\x35\xac\xfd\xbf\x97\xd6\xfd\x9c\x99\x6b\xfd\x28\x31\xa7\x7f\x4e\xbf\x40\x80\xbf\x7f\x8f\x07\xda\x00\x9c\x13\xd8\x9d\x7e\x25\x11\x80\x27\xe8\x08\x8b\xdb\x1c\x80\x44\xe7\x59\x1b\xfb\x53\x30\x2b\x4f\xbd\x60\x60\xd9\x07\x95\x6a\x47\xb8\x74\x8c\xbf\x81\xac\x3e\x83\x10\x27\x8d\x7f\xd0\x5d\x84\xb3\xd6\xa3\xa2\xb2\x5a\x6e\xc0\xe3\x64\x2b\x92\xa3\x51\x02\x4c\x5e\xcd\xe2\xfc\x6a\x69\xc8\x62\x30\x9d\xe4\x4b\xb4\x3c\xd2\x1a\xaf\x2d\x1b\xad\xfc\x18\x69\x4c\xf7\x94\xed\x57\xe4\x45\x1a\xf3\x1e\xc8\x06\xcb\x95\x22\x2d\xe5\x01\x32\x53\xb2\x0a\x48\x50\xc3\x25\xf9\x56\x29\x7d\xa4\xac\x7d\x87\xec\x31\x49\x3c\x62\xda\xab\xa4\x90\x4c\xe3\x1f\xc4\x6e\x23\x4e\x6f\x5f\xca\x33\x88\x1a\x23\xe1\x93\x79\xb2\xd7\x45\x5c\x90\x9a\xc5\x8b\xd2\xc5\x22\x5a\xc8\x7d\x6a\x8b\xd4\x28\xed\x1c\xa0\xf1\x80\x23\x3d\xff\x83\x03\xf2\xfe\x39\xaf\xae\xf5\x45\xc5\x07\xfc\xce\xc1\x04\xdd\x03\x38\x61\xb5\x9d\xd1\x67\x03\xc0\xf9\x03\x8c\x6c\xae\x46\x00\x9c\x72\xfb\xc6\x1c\x4f\x03\x88\x7d\x60\xe1\xb3\xba\x0d\x20\xe7\x78\x2e\xdd\xec\x0c\xbc\x40\x33\x73\xac\xe8\x5b\x40\xb9\xd6\xb5\xcb\x37\x75\xde\x43\x9a\xde\x18\xb7\xbd\xf6\x10\xb8\x98\x5f\xe0\x47\x69\x0c\x80\xa7\x6d\x25\xbf\x8a\xda\x12\x68\xb8\x33\x0a\xb9\xa0\x03\x00\xed\x43\x12\x1a\x53\x71\x87\x43\x61\xaf\xc5\xa8\x4a\x39\x70\x22\x0e\x2d\x16\x28\x5f\x0b\xcc\xe9\x07\xc4\x0e\xc9\x51\x91\xb9\x7c\x13\xc9\x34\x59\x25\xe4\x49\x65\x9f\xb4\x86\x14\x17\x82\xad\x1b\x95\x10\x91\x94\x40\xde\xde\x4a\x91\xec\x15\xcf\x44\x9e\xdd\xaf\x93\x3a\x28\x16\x82\x3c\x7e\xa4\x29\x45\x27\xba\x1b\x19\x78\x75\x48\xf2\xa9\xf0\x27\xe4\xcd\x97\x20\x89\x1e\xe1\xa3\xc8\xdc\xb4\x85\x78\x19\xc0\x89\x15\xb9\xf6\x4d\x8b\xbf\x38\x08\x3e\x49\xe9\x1b\xbb\x7d\x00\xa4\xb7\x4b\x61\x0e\xac\x02\x28\xf7\x2a\x4a\x9d\x78\x0d\xa0\x99\x89\x92\x3d\x4b\x07\xa0\x7f\x45\xc5\xe5\xfc\x3e\x00\xb3\x27\x1a\x1a\xdc\x73\x00\x16\xad\xba\xf2\xc2\xdf\xe1\x93\xa5\x81\xb1\xa7\x6c\x17\x18\x5b\x5e\xb3\x52\x50\xfb\x82\x7c\xb0\xd2\x70\x9a\x37\xf8\x8c\x98\x9b\x57\xf9\x73\x5a\xb2\x50\x7b\x4d\xd8\xe3\xa5\x1c\x9f\x50\x37\x1b\x1d\xc9\x8e\xf1\x52\xa4\xe4\xe9\xb1\x56\x45\xfa\x6a\x93\x11\x6d\x85\x96\xd5\xa0\x74\x72\x9b\xc6\xfc\x3d\xcf\x90\x22\xb2\xb2\x9a\xf1\xd3\x89\xf0\x38\xf2\x06\x95\xa9\x77\xec\x91\x17\x49\xb7\x95\x23\xa6\xd1\x51\x65\xa4\x1b\x8a\x71\xd8\x7b\x51\x5a\xe4\x62\x79\x3c\xfe\x60\xd0\x7b\x72\x88\x3c\x0f\xbe\xdf\xef\xc3\x72\xbe\xfc\x14\xe1\x92\xef\xe6\xa9\xc3\x8a\x96\x04\x79\x5f\xd9\x4f\xb9\x4a\x19\x84\x42\xef\xb7\xa3\x4d\xca\x6f\x08\xcd\xde\x1f\x86\x38\x51\x8e\x44\x56\x2f\x91\xc7\xcd\x2a\x39\x44\x3d\x4f\xef\xfe\x6e\xf4\x04\x51\xd3\x93\x70\x3f\x5a\xf5\x28\xf1\x9d\x5b\xca\xdd\x67\xaa\x77\x48\x5b\x5c\x63\x00\x4e\x7d\x95\xd5\xdc\xd2\x08\xc0\xbe\x51\x0a\xb7\xe3\x1c\x80\xd0\x4d\xa9\xd3\x8c\xd9\x00\xd2\xd1\x52\x5f\x0f\x32\xfc\x8b\x83\xd0\x53\x38\x7a\x0a\x05\x60\xa4\x86\x42\x9f\xd7\x00\xb0\x32\x54\x63\xe1\x96\x06\xb0\x26\xea\xb0\x88\x24\xaf\xf7\xe5\x38\x5b\xa7\x5b\xf0\xaa\x3e\x43\x86\xad\x3d\x1c\x45\x0c\x0d\xd6\xfd\x28\x1a\x66\x10\xeb\xe8\xbe\x81\xd2\x69\xb2\x35\x4b\xdf\x47\x91\x72\x48\x9f\x50\x39\x13\xc4\x41\x2e\xd7\x89\x6a\x39\x19\xfa\x84\x7c\x54\xf3\x45\xb7\x57\x64\x26\x69\x50\x5d\xf3\xd9\xf1\x68\x23\x92\x2d\xfa\xec\x27\xe1\xd8\x54\xe2\x63\xe5\xa6\xc5\xf8\x04\xe2\xba\x07\x04\x51\xdc\x84\xe3\x0e\x1f\xc7\x05\x29\x64\xe2\x4f\x05\x51\xe7\x0e\x29\x7e\xc7\x7b\x05\x6d\xfd\x66\xad\x1c\x87\x8f\x0f\x52\x7d\x8f\x41\xa9\xe2\xc7\x02\x5a\x46\x98\x54\x7c\x08\x26\x7e\x16\x7f\xf6\xe1\x74\x3f\x55\xdb\x4b\x94\xf3\xaa\xec\x50\x55\x2f\x21\xda\x7b\x5d\xb8\xbd\x4d\xed\x35\x69\x93\xeb\x67\x00\x96\x06\x69\xfa\xcd\x3f\x00\x38\x16\x24\x0f\xee\x78\xf0\x6f\x0e\x42\x8a\x7c\xd0\xf0\xbf\x3d\x31\xa6\xad\x4a\x52\x6c\x7d\x00\xd6\xea\xaa\x77\xb9\xd5\x00\xec\xb5\x35\x8b\x84\x2f\xaf\xf7\xe5\x18\x39\xb0\x99\x0d\xab\xd7\x21\x25\x76\x81\x76\xbb\x4d\x76\x51\xc1\x46\xfa\xca\x39\xbb\x5d\xd4\x6d\x96\xf2\x51\x18\xaf\x7d\x14\x5f\x53\xba\x2c\x4d\x3f\x3c\xf9\x96\xa1\x69\xa5\x70\x68\xe3\x3a\x0f\x63\xa7\x2d\xd2\xfd\x21\x8e\x42\x32\x57\xaf\x7f\x71\x34\x2e\x82\x98\xac\x4a\xf7\xa5\x27\xd9\x82\xe8\xae\x3c\xb4\x5c\x9a\xcc\x4b\x44\x94\xf2\x30\xfd\xf1\x4a\xb4\xeb\xb1\xd8\xa7\x94\x81\x53\x8d\xe0\xa0\xf9\x50\xde\xdb\xa8\xe4\xe1\x59\x42\xe5\xd6\xfb\x70\x4e\xaa\xd9\xe1\x6f\x04\x8b\x3e\x34\x57\xbb\x4f\xe0\x0c\xf0\xa2\x71\x30\x9d\x69\xea\xa1\x44\xf6\x2b\xb5\xb7\x64\xb4\xb6\x13\x2f\x78\xab\x36\xed\xd4\x1c\x22\x0e\xbb\x2f\x03\x9c\xc9\x92\xfa\xb1\x95\x1f\x80\xeb\x95\x84\x1d\xfd\x5f\xbf\x38\x08\xd9\x18\x89\x4d\xfb\x9f\x03\xa8\x79\x4a\x6f\x3e\x9a\x05\x60\x70\x48\xee\xdd\xa9\x5b\x00\x96\x9b\x15\x84\xd8\x8e\x02\xd8\x2d\x28\x2f\x72\x06\x00\xb8\x30\x68\x32\x8a\x66\x02\xc1\x65\x58\xf7\xbc\x4c\x03\xa8\xb9\x84\x98\xea\x6a\x6e\x42\xfc\xec\x3b\xec\x52\xcd\x82\xd7\xfd\x28\xfd\x36\x4c\xe1\x2c\xde\xcf\xc8\x9f\xcd\xa3\x33\xff\x0a\x49\x26\x1f\x34\x4e\x2c\x9f\x88\x1a\x5d\xe7\x61\xde\x6a\x13\x7b\xd9\x93\x26\x89\xb1\x1a\xf7\x07\xc9\x29\xc6\xc4\xad\xaa\x9c\x63\x39\x69\x65\x84\x6c\x54\xe3\x4a\x4f\x46\x18\x8d\x87\xf9\x5f\x3e\x94\x75\x0e\xc6\x5f\xfd\x0b\x2e\x33\x32\x74\xbd\x0f\xe7\xbd\xe6\x41\x7c\x61\x88\xde\xdd\x27\x9a\x5f\x08\xe7\x02\x03\x69\x7d\x38\x34\x0e\xa6\xde\x4a\xe7\x1d\x71\x9f\x8f\x07\xc0\xe9\x41\x09\xb1\x2d\x79\x00\x3c\x83\xe2\xba\xf4\x4f\x01\xc4\x93\xc4\x87\x99\x9e\x03\x28\x92\xc5\xa7\x0e\x1e\x06\xd0\xfa\x22\x99\x74\x14\x03\x60\x3a\x2b\x3d\x79\x4a\x14\xc0\xa6\x58\x61\xe4\x42\x18\x80\xb3\x9f\xd2\xcd\xcb\xea\x00\x9e\x52\xaa\xcf\x84\x29\xeb\x5e\x10\x4b\xaf\x4d\x46\x97\x35\x0e\x20\x09\xae\x1d\xd6\xcc\xa6\xa4\x75\x3f\x8a\x87\x1d\x67\xa8\x86\xff\x16\xb2\xb9\x15\x4b\x9a\x45\xc4\x13\x52\x94\xa9\x7c\x39\x57\x3c\x6a\x9d\x87\xd9\xa9\xf3\xa6\x5f\x2d\xe3\x20\xa1\x41\x53\xee\xa5\x65\x66\x2e\x41\x56\xd5\x7b\x52\xfa\xea\x2e\xc2\x71\x15\xa3\x95\x03\x57\x35\x68\x3e\x94\xc5\x33\xa8\x09\x8c\x66\x92\xd4\x58\x01\xfa\x05\x66\x3c\x21\xee\xad\x9d\x5a\x30\xd6\x39\xae\xe6\xb9\x90\x66\x0c\x56\x3f\x7e\x7a\xe0\x93\xa6\x06\x4e\x39\x5a\xbd\xa7\x47\x2b\x07\xf7\x28\xf2\xc2\x7f\x38\x98\xb5\x3e\x1c\x1a\x07\x53\xfd\x5c\x7f\x13\x91\xce\xd7\x00\xe0\xcc\x09\xf1\xf3\x5b\x4a\x00\x04\x64\x44\xbf\xec\x96\x00\x10\x97\x10\x39\xc6\x58\x0f\xa0\x52\x24\x36\x75\x30\x06\x40\xa7\x5f\xe4\xcd\xa1\x67\x00\x16\xb2\x92\x0b\x2c\x42\x00\x8e\xe7\xe4\x9e\x5f\x90\x07\x70\xfd\xac\x90\x7c\xa9\x17\xc0\x3b\x03\xbd\x5b\xd8\x02\xc0\x9f\x4d\x6d\x51\xca\x05\x4c\x7c\xe9\x0d\x6a\x34\x6e\x23\xd6\x57\x58\x2d\x33\x2c\x52\xd7\xfd\x28\xdc\x0e\xc9\x41\xa2\x81\x0a\x64\x4e\xeb\x93\xa9\x66\x51\xa6\xa4\x63\x66\xfe\x65\x45\x49\x12\xc4\x13\x46\xc7\x5b\x9c\x32\x0c\x08\x9c\x7a\xd2\xfd\x31\x39\x0a\xf8\xfb\x9a\xcb\xa3\x62\xb9\xdf\xf1\x97\x54\xd3\xe7\x45\xf2\x07\xf0\x9d\x2a\x13\xcb\x49\x39\x41\xd8\x71\x15\xef\x15\xb7\xac\x5d\x34\x1f\xca\x87\x04\xf5\x1f\xab\xf5\x69\x9d\xc3\x35\x9a\x39\x18\x87\x94\x83\x4f\x08\x5a\x2c\x58\x93\x78\x12\xad\x0f\xa7\xd3\x48\xd7\x11\x77\x34\x96\xaf\xcd\x48\xcf\x1a\xd7\x10\x15\xd9\xe8\xad\x77\x07\xdf\x15\xf2\xbe\x8e\x59\xff\x1d\x7e\x29\xf8\x47\xcd\xbc\x7e\x28\xc1\x37\xa0\xa7\xe2\x80\x81\x0a\x71\xbb\xaf\x06\x00\x9b\x9d\xb8\xd4\x36\xdf\x5f\x1c\x04\xed\x3a\xa8\xd9\x8a\xf5\x1c\x52\x04\x30\xbc\x2e\x7a\xf0\x48\xcc\x7f\x7b\x62\xbc\x4a\xe5\x5c\x2f\xe9\x02\x04\x08\xa2\xa8\x22\x29\x00\x81\x65\xaa\x61\x92\xd5\x60\x12\x98\xa1\x37\xa4\xb9\x09\x49\xf4\xab\x32\x8b\x31\xcb\xa7\x32\x79\x56\x3b\x5a\x7a\x4c\x92\xaf\x3a\x77\x05\x1c\x09\xeb\x24\x15\xdb\xb6\x25\x1f\x8a\x1b\x22\x2a\x59\xee\x2b\xe9\x4a\xff\xb4\xce\xc3\xa0\xf5\xbd\x1e\x28\x14\x9e\xc1\x3d\xd1\xe2\x7f\xaf\x52\xf4\x88\xd6\x03\x83\x97\x40\x67\x2e\xbd\xcf\xbf\x3c\x37\xaa\x26\xb2\x7c\x3d\xe7\x07\xcd\x87\xf2\x3a\x5d\xf3\xfa\x6a\x4c\xfa\x6b\x9a\x0f\xa5\xef\xac\x6e\x1a\xa6\x24\x85\xa5\xeb\x92\x9e\x34\xd6\x39\xa1\x86\xc6\xc1\x34\xef\x31\xa4\xc7\x09\xc6\xea\xd7\x15\x18\xae\xe2\x5e\x44\x85\xd3\x38\x98\xf2\xa7\xc6\x3a\xf8\xfe\x50\xdf\x62\x16\x63\x3b\x42\x62\xc0\x67\x80\xf3\x38\x51\x89\x6d\xdf\x7e\x71\x10\xb2\x9c\x42\xa3\x7b\x7d\x01\x34\xba\x04\xa7\xf7\x7b\x01\x18\xdf\x15\x91\x3d\x12\x0c\x60\x17\x24\x1a\x7b\xf2\x3c\x80\xeb\x73\xa9\xbd\xe7\x1e\x00\xf8\x31\xc9\x3e\xe7\xac\x06\x08\xbe\xa8\x38\x2c\x28\x09\x10\xd1\x84\xde\x21\xfd\x08\xa2\x22\x4c\xb5\x6e\xa9\x59\x20\x49\xc1\xd3\x26\x17\xcd\xba\xa9\x5b\x7d\x05\xed\x35\x3c\xcb\xc8\xe2\xee\xae\xde\x7f\x45\x3a\x12\x97\x1c\xca\x12\xae\x26\xdf\x27\x18\x58\x73\x97\x58\xe6\x54\xe1\xbd\x4d\xcd\x6f\x7e\x2a\xdc\x8b\x4b\x35\x38\xfb\xb0\xb1\x64\x0a\x6b\xa8\xcd\xf5\x29\xb6\x32\x1a\x9b\xa0\xf6\x63\xc1\xb5\xfc\x31\x8d\x0b\x9a\xc8\xd5\x64\x59\xf2\x28\x62\xa0\xf9\x50\x9e\x7a\xeb\x8e\xad\x04\x64\x13\xfb\xfb\xf4\xad\x57\x96\xaf\x86\x75\xae\x1a\x18\x63\x0e\xa5\x91\xdb\x77\x1b\x34\x62\xb9\x92\xb8\x1b\x3b\x8d\x4c\xb0\xf7\xe3\xc7\xeb\x62\x8c\x6d\x70\x3b\xe3\x0a\xab\x46\x4c\x1a\x70\x31\x31\x66\xa5\x7e\xa6\xc7\xf1\xc6\xe1\x54\x1a\x07\x93\xe7\x6d\xda\x45\x30\x0a\x42\x03\x70\xb2\x0b\xf7\xef\x58\x02\x10\x3a\x23\xb4\x7f\xb7\x1e\x80\x7c\x8d\xd0\x86\xbd\xb9\x00\x9a\x39\xfc\x8f\xf6\x5d\x06\x30\x4f\x14\x42\x8e\x64\x02\x38\x24\x08\x4d\x1f\x57\x01\xb8\x32\x23\xaa\x77\xba\x05\x20\x68\x49\xca\xf2\xa2\x00\x40\x24\xbb\x1c\x4e\x60\x23\x40\x9c\xb0\xf2\xa0\xb4\x12\x24\xc7\xe9\x6a\xb0\xa9\x7e\x44\xd2\xa2\xb2\x0d\x15\xcc\x7a\xa8\xdb\x43\xce\x58\x93\x3d\x5f\xac\xfb\x51\x5c\x9c\xd9\x63\x47\xd3\x2f\xe3\x6f\xda\xfa\x16\x6d\x2c\xb0\xc0\x29\x99\x61\x5b\xa6\xca\xe9\xb0\xfe\x86\xc7\x07\xb2\x2a\xa9\x18\x7b\x6d\xe1\x6f\x55\x35\x1e\x18\x6b\x8d\xd0\xf9\xe7\xd7\x16\xe7\xf5\x35\x1e\x2f\x74\x97\x9b\x7c\x38\xaf\x13\xb1\x98\x5b\xda\x4c\xf3\xa1\x3c\xb8\x6c\x78\x7c\x39\xb4\x40\xac\x73\xc8\xa8\x6f\xc5\x25\xf7\x44\xbb\x9d\x31\x7a\xd5\x2e\xcb\xbc\x29\xda\x24\x1f\xc3\x9f\xce\x57\x6b\x68\x9a\x8c\x65\x4c\x4e\xaf\xf4\x35\x2b\xc4\x3e\x4a\x30\x2a\x7d\x6d\x7e\x08\x87\x8e\x7d\x59\x74\xd1\x7c\x37\x7e\x6f\xe4\x50\xae\xbb\xc5\x71\x7c\x78\x78\x52\x96\xbe\x85\x33\xe1\x74\xf0\x14\xc0\xe5\x4f\xc2\x5a\x3b\x4b\x01\x44\x14\x05\x55\x77\x7b\x00\xa0\x0e\x0a\x1c\xd9\x1b\x03\xa0\xa7\xc3\xf7\x7e\x5f\x27\x80\x65\xbe\x40\xe3\x61\x1e\x00\x97\x8f\x02\x81\xc7\x14\x01\x7c\x4f\x09\x8b\x9e\x3a\x04\x10\x46\x92\x38\xcb\x3e\x01\x10\x1f\x22\xd5\xcd\x13\x04\x90\x28\xaa\x7c\x40\xfa\x0d\x84\xa7\x6c\x56\xcb\x56\x1b\x43\x82\x12\x6d\xf5\xb7\x98\x23\x14\x62\xa4\xb3\xe5\x4b\xaf\x02\xd2\xb0\xbf\x93\xdb\x91\x18\x1c\x21\xca\x3d\x3f\x72\x7b\xf6\x08\xee\x9d\xfd\x6a\xfe\x42\xc9\x17\xac\xb1\x45\x50\x4b\x7b\x35\x1a\xb3\xd1\xf0\xe1\xb3\x9b\x75\xfb\x56\x16\x75\x1c\xc7\xb5\x1b\x84\x68\x3c\xcc\x57\xd0\x79\xfd\x23\xbb\x7a\x84\xe6\x43\x79\x88\x35\xaa\x5d\x6c\x2f\x4b\xfc\xd3\x87\xd2\xa8\x63\xce\xb3\xf2\x2c\xc7\xe4\xfa\x61\x8b\xdd\xab\xa3\x99\x8a\xe5\xa3\x96\xd7\x31\x4e\xe9\x74\xc5\x93\x56\xdb\xb1\xe7\x92\xef\xe7\x79\x5b\xd5\xe3\xe8\xe3\x03\x73\x5c\xad\x78\x70\x1d\xd1\x94\x8c\x2c\xab\x5a\x7c\x58\xf8\x50\x5a\x88\xd5\x1b\xfc\xab\xd0\x25\x00\xae\xa3\x82\x0a\x3b\xcd\x7f\xe5\xff\x68\x75\xde\x77\x8c\x15\x00\x06\x11\x3c\x8f\x99\x1e\x02\xd8\x0a\xf2\x75\x1f\x4a\xfc\x6f\x4f\x4c\xf4\x47\x11\x36\x36\xdb\x5f\x3d\x31\x99\xa7\xe5\x66\x25\x2a\xa0\x3a\xeb\xa2\x8a\x00\x7a\x1f\x92\x93\x29\xa3\xed\x62\xe6\x4d\xdd\x95\x6c\x68\x2a\xe0\xf9\x95\x64\x19\xda\xea\x72\x3e\xc1\x04\xff\xdc\x9b\x2f\x78\x7b\xfe\x07\xec\x84\x33\x57\x8e\x7f\x65\xca\x3a\x0f\x93\x6b\x9c\xff\x2c\xad\x29\x9c\xd6\x8b\x33\xcd\xa4\xdb\x38\xeb\xd8\x68\x3e\xfa\xd4\xb0\x66\xae\xbf\xfe\xfe\x23\x8c\xa9\xee\x8f\x6d\xd7\xf1\xeb\x3e\x94\x3a\x0b\x8d\x25\xde\xd2\xe1\x1b\xe5\x56\x71\x4b\x73\xc5\x8d\x35\xaf\xac\x2e\xac\x24\xe4\xde\x2b\x3f\x69\xed\xb1\x1a\x79\x75\x4b\xd1\x19\x1b\x11\x8c\x66\x7a\x53\x6e\xa4\xcd\x7b\xec\x89\x94\x4b\x99\x23\x76\x62\xd8\xb0\xa4\xb0\x34\x92\xdd\x6e\x9c\x64\xdc\x40\xea\x31\x5b\x47\x1c\x3e\x8a\x92\xe0\x69\xa7\x85\x8f\x0d\x5f\x04\xe0\xad\xe3\x9f\xd9\x75\x07\x40\x8a\x9b\xef\xcd\xee\x00\x00\x55\x03\xee\x67\x7b\x72\x01\x8c\xc7\xb8\x0d\x99\xa2\x01\xec\xb3\x78\xfe\x3a\x30\x0c\xe0\x9b\xca\x1b\x70\x6c\x37\x40\xc4\x09\x7e\x65\x16\x46\x80\x04\x41\x81\xdc\xb3\x97\xff\xd5\x13\xb3\x5b\x7a\x42\x2c\x0b\x1e\x14\xb0\x28\x4e\x2a\x47\x21\x5d\x05\x86\xea\x1d\x26\x9c\xd4\x43\x19\x88\x51\x97\xa7\x31\xe9\x6a\x9c\xbc\x7d\x44\x1c\x19\xb7\xe4\xef\xe4\xe7\x5f\x62\x88\x79\xe2\xfa\xed\x6a\xe7\x75\xbf\x15\x57\x5b\x8d\x9b\xca\x37\xff\x5a\xea\x37\x21\x0f\x32\xb4\x55\x2e\x29\xe8\x5d\x9a\xa4\xb4\x5f\xfa\xa8\x6c\x54\x36\xfd\xb9\x65\xfa\x49\x89\xb9\xe8\xac\x76\x33\x4f\xb7\x86\xc5\x9b\x79\xf3\x7a\x31\x9a\x0f\xa5\xae\xd6\x8e\x79\x61\xa4\x6a\xac\xf2\xba\xfd\xee\x25\xe3\xb2\xbd\xc5\xaf\x1c\x78\x97\xf5\x8b\x1e\xe6\xa9\x3b\xb0\xad\x90\x73\x4a\xaf\xde\x73\xd0\x5e\xfd\x90\xc5\x90\x61\xec\xb0\x82\xb1\x4d\xef\x4d\x0e\x75\x1c\xc2\x72\xa4\xa8\x26\x30\x3b\xe2\xb1\x73\x09\xad\x34\x0e\x26\x6a\xde\x29\x00\xf7\x35\xfa\x21\x00\x6f\x0f\xdf\xa6\x5d\xd6\x00\xd2\xe7\xf8\x86\x76\xd7\x03\xa8\xdf\xe0\x39\xcc\xa8\x0c\x60\xce\xcc\x75\x9d\xe9\x1e\x80\xcb\x5e\x6e\xd4\x41\xe5\x5f\x3d\x31\x31\xf7\x79\xe5\x98\xb7\x00\xa4\x57\x0b\xec\x3a\xf7\x02\x20\xef\xb8\x50\xef\x45\x14\x40\xe9\x43\xc9\x42\xd1\x2b\xf0\xb6\xd2\x53\x2e\x4f\xf1\x03\xf2\xa0\xac\x59\x35\xd8\x38\x9f\xba\xab\x80\xa2\xef\xe3\x79\x97\xa4\x91\x21\x67\xdd\x92\x30\x87\x53\x0e\x95\xf0\xc9\x2c\xaf\x5b\x95\xf3\x7a\x95\x16\xd0\x98\xb6\x54\x6f\x4f\x6e\x2e\x6b\x9f\x59\xe0\x32\x43\xbf\xfc\x7a\x8f\x69\x4a\xc4\xf8\xc8\x84\x4a\x97\xec\x60\x83\xc5\xc4\xe4\xd0\x1d\xee\xee\x66\x9b\x6d\x33\xe8\x5b\xbc\xad\x4f\xed\xf6\xcc\xd9\x37\x1a\xfd\xe9\x43\x29\xda\xe5\xb4\xba\x44\x57\x9e\x9b\xb3\xd7\x85\x7b\x79\x67\xc9\x19\x1a\x07\x93\xf4\xd6\x35\x6d\x55\x36\x7b\x94\xc6\xc1\xc4\xf4\xb8\x7a\x63\x90\x54\xad\x48\x21\xd7\x74\xec\xeb\x44\x74\x84\x9e\xcb\x47\x9c\x45\x5c\x68\xf0\x94\xeb\x13\x1c\x35\x5a\x09\x80\x4f\x85\x37\x76\x97\x11\x80\xdc\x1d\x5e\xab\xdd\x75\x00\xda\x4f\xb8\x5e\x32\x1a\x03\x58\x8a\x5e\xee\x65\x8a\x03\x70\xd7\xbb\xdc\x72\xa0\x06\x20\x2c\x99\x6b\xfc\x68\x1b\x40\xe2\x09\xae\xc1\x13\x72\x00\x39\x3e\xdc\xdc\x2c\x1f\x7f\xf5\xc4\x54\xab\x8b\x45\x09\x8e\x01\xd4\x8e\x4b\x9b\xc8\x1d\x82\x8d\x75\xe3\xca\x3b\xf5\xe3\xa8\x5c\x55\x6d\xda\x41\xee\xf3\x24\xde\x7c\x45\x8b\xab\x89\x65\x38\xce\xf8\xe7\x1e\x8e\x15\x22\xcb\x9f\xfc\xf4\x13\xef\xdd\xca\x5e\xe8\x73\xea\x6d\x22\x76\xa5\xcd\xe9\x99\xd7\xbe\x5d\x7e\x40\xff\x72\xbf\x8d\xea\xb7\xd1\xde\x5b\x3d\xfb\x1d\x8c\x26\x70\x5d\x05\x2d\x5b\x9c\x37\x4f\x6f\x69\xbf\x75\x5d\xd5\xa5\x6c\xd6\xf8\x66\x5c\xa9\x9f\x9b\xd0\xbc\xe1\x8d\x82\x3c\x0b\xf7\xd0\x1f\x4b\xd7\x15\xb3\x0c\x3d\x36\x2e\x6a\x56\x1d\x4f\x35\xf4\xa8\x5c\xca\x28\x63\x48\x64\xf2\x68\x59\x9e\x2e\x44\xc5\x8e\x79\xd8\xaf\x32\xe4\xbc\x8a\x9e\xf3\xb0\x58\xad\xba\x6a\x47\xe3\x60\x42\xd2\x3d\xe9\xb1\x6a\xc9\x78\x1a\x07\xe3\xf7\xce\x23\x1d\xb7\x12\x9d\x09\x20\x7a\x92\x0f\x18\xbc\x00\x14\x4f\xf1\x32\xee\xd9\x00\xa0\xa7\xc6\x59\xbf\xc7\xef\x17\x17\x44\xf3\xa3\x84\x3f\xbe\xe8\x7a\xd0\xea\x5f\x3d\x31\x6b\x1c\x44\xd5\x1b\xde\x7d\x6c\xca\x00\x0d\xf4\x22\x87\x04\x2e\x00\xb4\x10\x24\x86\x65\xae\xc3\xe1\x5b\x6d\x0a\x42\xba\x43\x54\xf5\x66\x61\x75\x53\xb7\xd3\x24\x95\xea\x39\x63\x9b\x84\x62\xec\xcb\x2c\x70\xbe\x5d\x39\xba\x38\x1d\x72\x30\x46\xaa\xe3\xe9\x58\xd3\x95\x8a\x5a\x89\x3e\xc3\xd7\x15\x2e\x74\x83\x06\x8f\x8f\xf6\x0a\xbb\x6e\xfd\x32\xf0\xb0\xfd\x26\xb7\x3b\x69\xbc\xb7\xdb\xb6\xda\xc1\xd3\x73\x4a\xef\x4e\x51\xbe\x9f\xcf\xe5\x99\xad\x6d\xec\x57\x63\xbc\x77\xcf\x4d\x34\x5e\x48\xdf\xe6\xad\xf0\xc3\xa5\x8e\x2e\x61\xaf\xef\xa6\x85\xae\x6b\x7c\xd1\x2a\xbe\xf7\x16\x57\x2b\x2c\xa3\x6e\x79\x97\x2d\x87\x17\x2d\xd0\x38\x98\xc0\x68\x5f\xd4\xaa\x6b\xf6\x95\xff\x70\x30\xc3\x57\x04\x71\x7f\x25\xc4\xf8\x1c\xf5\xb2\xc2\x2d\x44\xd7\x01\x08\xdd\xe0\xb6\xde\x25\x08\x80\x62\xbf\xac\xc2\xe0\x0b\x60\x54\x7a\x99\x89\xb1\x04\xc0\x69\xeb\xa5\x14\xa6\x46\x00\xff\x6c\x8e\xe3\xfb\xc2\x01\xe2\x74\x2f\xc8\xfc\xfd\x7b\x22\xfb\x13\x7b\xd3\xe1\x22\x80\x0a\x14\x7b\xc2\xd1\x62\x80\x1b\xd8\x4b\x77\x59\x96\x00\xda\xf9\xf9\x02\x38\x85\x00\x3a\x53\xc5\x8c\xa5\x62\x40\xfb\x1e\x46\x26\x49\xb3\x84\x6a\xdd\x59\xa7\x32\xe6\x32\x40\xe2\x6b\x0b\xd6\x3b\x99\x70\x0d\xab\x53\x6d\x60\xb3\x54\xdd\xf1\x39\x39\x7d\x57\x30\xef\x5d\xc6\xc7\x43\xd1\x3b\x0a\x5f\x3f\x68\xe8\xbc\x1f\xb4\xda\x3b\xf4\xd4\xee\x06\x77\x80\xc6\xa7\x1d\x4f\xad\x0a\xef\x05\xdf\xff\xe6\xd5\x4f\xca\x1e\x0e\x12\xfb\xee\xd3\xf5\x3e\x85\x3b\xe8\xf9\x74\x67\xfb\xe1\x58\xb1\xe0\x95\xd9\xbe\x9b\xa6\x51\xb7\x83\xa2\xe7\xdf\xd5\x7f\x8b\xe0\x0e\x0c\x5b\x48\xb8\xb6\x1a\xda\x1b\x50\xb1\xf4\x57\x85\x44\xc8\x81\x80\x9d\xcb\xdc\x25\x2c\x81\x11\x01\x1e\x2b\xf1\xf9\x87\x02\x6e\xf8\x2e\xae\x36\x5f\x35\xf4\xcb\xf7\xf3\xc5\xe4\xa4\x5b\xf9\xb4\xf8\xa5\x60\xfd\x93\x85\xbd\x31\xbe\xde\x38\xa6\x04\x91\x2b\x29\x3e\x63\xb8\xe7\x31\x96\x00\x62\x95\xdc\xfb\x77\x8d\x00\xa8\xd6\x5c\x66\xdd\xcd\x00\x60\x9e\x7e\x21\x83\xa1\x07\xc0\x2d\x8d\x83\x7b\x6f\x0d\x40\x28\x3d\xeb\x13\xc6\x64\x80\x14\xcf\xb3\x5f\x19\xc9\x00\x45\xc9\x67\xf3\x99\x6a\x00\xea\xd2\xcf\xb6\xed\xb7\xfe\xd5\x8f\xd2\x1d\xcb\xcd\xc5\xce\x01\xf0\x98\x51\xd0\x57\x98\x09\x52\x06\xb9\x24\xac\x55\x95\xa8\x2f\x9e\xf3\x2b\x54\xda\xf3\x93\x22\x1e\x33\xaa\xaf\xc4\xc6\x4e\xf3\x75\x98\x9a\xc7\x55\x1e\x7b\xae\x5f\x2b\xe6\xdd\xd7\x7e\xe1\xa6\x75\x5e\x77\xda\xd1\x87\xc2\xa5\x0c\xe9\x23\xb7\xcc\x9f\xcb\x65\x0a\x26\x7d\x78\x47\x1c\xfc\x9a\x74\x30\xf1\xdb\x57\x93\x87\x33\xd1\xdf\x12\x35\xbf\xa7\x77\x3d\x8c\xb8\x19\x6f\x33\x7d\xbf\xfd\x48\xf8\xc5\x98\x23\x73\xfb\x9b\xe3\x83\x27\x63\x72\x7f\x70\xd6\x8d\x05\x56\x44\x1f\x5d\xbc\x50\xb5\xe8\xff\x30\x1a\xbd\x24\x5f\xae\xf8\x3f\xfb\x70\x1c\xc3\xfc\xb1\xc7\x52\x56\x3d\xbd\x43\x51\xd8\xd1\x44\x47\x0f\xc9\x90\x57\xb8\xc0\xb8\x83\xee\x7f\x85\x1e\xc2\x61\xa2\x63\x01\x64\x4d\xb8\x58\xe9\xcb\x00\x34\x9d\x2f\xda\x33\x9c\x00\xb0\x42\xb1\x12\xe9\x1d\x00\xbc\x5c\xd8\x2e\xee\x61\x00\x88\x71\xdf\xb2\xf4\x8f\x07\xa1\x86\x99\x61\x17\x11\xa0\x7a\x79\x2d\xef\x29\x39\xf9\x82\xe1\x3d\x40\x5f\xd6\xa9\x2a\xa6\xe3\x00\xcf\x25\x38\x72\x4e\xf5\x00\xbc\xe9\xe1\x11\xbe\xfc\x0c\xf0\x9f\x16\x45\xe4\xe4\x2b\x91\xa3\x63\x32\x32\x82\x56\x23\x98\xa0\xcf\xfb\x54\xce\x45\x3e\x7b\xe7\x31\xb8\x60\x54\x5c\xf4\xb1\xab\xb3\xb7\xc0\xad\xbf\xb9\xab\x8c\xb9\x75\x3c\xce\xb7\x67\x63\xaa\x6a\x23\xb6\x5e\xf3\x51\x4f\xf8\xf1\xfa\xdc\xf7\xdd\x4f\xcb\x83\xee\x56\xf9\x8f\x3d\xeb\x0d\x0c\x38\x59\x6a\x37\x39\xdc\x31\xed\x77\xad\x40\x62\xe6\xe9\x2d\xf3\xff\x78\x40\xe6\xd2\x26\x16\x1f\x57\x74\x7a\x9d\x4c\xa3\x5f\x66\x2b\xd9\xec\xc1\x9d\x1a\xb2\xe2\x9d\x7f\xd6\x43\x23\x71\x6e\x55\x3b\xbb\xd9\x8d\x3d\x89\x1e\xe3\x91\xfe\xc9\x6d\x63\x5c\x13\x56\x2d\xf9\x8b\x4b\x40\xdc\x65\xdc\xd9\xf8\xdb\x4e\x8f\x63\xe6\xf0\xe7\xa2\xb4\x9d\x5e\xc7\x7c\xc6\x9f\x89\xb2\x02\x90\x0f\xbf\xe4\xb5\x2b\x1f\xc0\xe0\xc4\xf9\x13\xbb\x8a\x01\x1c\xde\x9d\xe1\xdc\x59\xff\xab\x17\x24\x69\x2d\xd7\xa4\xe5\x1c\x4d\x9b\xe9\x8c\xff\x9e\xbd\x6b\xef\xfb\x47\xe2\xe8\x6e\xff\x93\x7f\xce\x9e\x96\x65\x02\x80\x99\xb3\x17\xd3\xce\xb2\x02\x60\xbe\x0b\x6e\x91\x10\x43\xd2\x29\xac\x12\xb1\xc6\xde\x93\x7b\x96\xfc\x95\xea\x03\x29\x4f\x2b\xbe\x5f\xd1\x7b\x7b\x35\xac\x31\xe5\x7d\xbf\xe3\xad\xeb\x1f\x33\x6a\x86\xe2\xc2\x57\xee\x7c\x0e\xf7\x7f\xbe\xf1\xda\x8d\x6e\x4d\xcf\xce\x27\xf7\x5e\xaf\xf4\x9f\x70\xed\xeb\x39\x3e\x31\xdf\x35\xe4\xea\xd7\x66\x3a\x7d\xb7\xed\xb8\x4b\x78\xd3\xbd\x39\xa5\xa6\x1d\xae\x16\x35\x5c\x3f\xc4\x6a\x89\x2e\xe9\x95\x9a\x0b\xd8\xaa\x49\xe7\x90\xd2\x47\x4b\xf5\xa5\x4a\xce\x9f\x0b\xf7\x2d\xdf\x2c\xbc\xeb\xb4\x25\xbf\x63\xf5\x4c\xce\x01\xc7\xb2\x1c\x3d\x0c\x7b\xc6\x63\x87\xc0\xab\x66\x58\x81\x94\xbf\x1c\x7c\x33\xec\xb1\x1f\x13\x16\xd7\xf9\x8f\x0b\xa9\x97\xf0\xb1\xe1\x64\xdb\xae\x94\x04\xfc\x70\x98\x32\x80\x72\x35\xdb\xc7\x1d\x86\x00\xa6\xf6\x67\xb5\x76\x50\x01\x5c\x1f\x9f\xca\xda\x79\xf0\x97\x0f\xe3\xea\x25\xba\xdf\xbe\x7b\xa6\x79\xbf\x69\xf9\xf7\x97\x4d\x3f\x7d\x18\x2b\xda\x3b\xca\x7f\xbe\xf7\x67\x2b\x3d\x74\x83\xc2\x80\x60\x04\x4e\x8b\xb2\x4f\xaf\x50\x5a\x25\xee\xe9\x6f\x7b\xa5\x46\x1c\x56\xba\xe3\xf9\xa0\xab\x0f\x27\xac\xcb\x95\x30\x5a\xa1\xb7\xdc\x6d\xb7\xb5\xf4\x44\xcc\xc0\x6c\x62\x50\x64\xd3\x84\x8f\xe5\x2c\xba\xec\x76\x5b\xbd\xdd\xe4\xd4\xc0\x20\xc3\xdd\x5d\x96\xbc\x9f\x28\x53\xee\xed\x3e\x56\x31\x83\x30\x2b\xd5\xec\x46\xf3\x5f\x58\x67\xde\x8d\x5d\xdc\x54\xf9\xd4\x7a\xe5\x96\xce\x52\x41\x49\xbf\xf5\x4a\xc3\xd0\x32\xbe\x80\xce\xba\xba\x36\x76\x95\x2d\xdb\xc1\xba\xa9\xfa\xd6\x2a\x92\x41\xb5\x1e\x2f\xa7\x60\x9a\x53\x11\xab\x37\xa5\x99\xd8\xae\xc4\x1d\xd6\xbc\x45\xa7\x70\xa2\x71\x15\x56\x06\x05\x71\xb8\xa5\xa8\x69\xcb\x85\x3c\x2d\x7c\x74\x78\xa3\x45\x59\x8e\x1b\xc1\x3c\x28\x03\x40\xad\xfd\xec\xd2\xf6\x20\x00\x1b\xc2\x29\xa1\xed\xef\x7e\xe5\xbe\x49\xcd\xbf\xdf\x07\xb4\xdc\xf3\xd1\x6e\xba\xdf\xbe\xff\x5e\x3c\x42\xcb\x3d\xb6\xec\xa6\xa3\x23\xee\x03\x60\x23\x1f\x79\x36\x5d\x00\x3c\x7c\xb9\x02\xef\xdf\xc8\x53\x6d\x24\xaa\x35\xbc\xfb\xfc\xc9\xf4\xca\x9f\x1c\x55\x1a\x5a\x08\xfa\x7a\xae\xa1\x45\x39\xb2\xd8\x5d\x76\x17\x32\xba\x43\xc3\x97\xb5\xfc\x51\xe5\xd9\x5e\x87\x96\xce\x64\x3b\x57\x5b\xda\x7d\x5f\x48\x6e\x4f\xaa\xf5\x36\x7a\x3d\x5f\xff\x3d\xf1\xc6\xa4\xe1\x9e\xa9\xc8\xf9\xc7\xd7\x2d\x8c\xb6\xbd\x8b\x5f\xbc\x5c\xde\x62\x14\x35\xf8\x6d\x09\x57\xb4\xc7\x18\xf5\xf0\xcb\x8a\x6e\xae\x96\x89\xed\xbd\xd6\x55\x95\xac\x61\x93\xa1\xdb\xcf\x30\xe2\xe9\x1b\x4d\x26\x5b\x6a\xb1\x5c\x49\xaf\x4c\x1c\x9a\x6e\xe3\x36\xc4\xcd\x9b\x24\xd7\x75\xe1\x5e\x44\x7d\xa7\x79\x2f\x4c\xa5\xab\xf6\xe2\x73\xc2\x7a\x4c\x22\xca\xb7\x10\x6c\x82\xe8\x4c\x4e\x96\xb4\x11\xc6\xfd\xc6\x01\xf4\xfb\x4e\x09\x6c\x73\x06\xb0\x0f\xda\xf8\xcf\x39\xf0\xff\xb5\x0f\x63\xf6\xfc\xbf\x39\x10\x6c\x24\xc0\x56\x29\x3a\xba\xa9\x52\x00\x36\xb6\xa3\xfc\x6f\x16\x80\x9f\x5f\x54\xa0\xec\x11\x8a\x3a\x23\xb9\x53\x65\xe7\xad\x76\x0a\x0b\x2a\xc7\x22\xa5\xec\x0b\x49\x50\xaf\xc8\x4b\x2f\xd9\x0d\x3f\x60\x2b\x12\x55\xed\xff\x10\x2b\xe4\x23\x93\x11\xe7\xc6\x82\x39\x98\xe6\x9d\x13\x64\x1b\xb0\xd2\x57\xfb\xac\x50\xd8\xf8\xc9\xf2\xcb\xa7\xcd\xc5\xa6\xda\xb7\x96\x4f\x2c\x7e\x29\x26\x68\xed\x5f\xb6\x5e\x36\xc9\x8b\xd0\xe1\xf8\x56\xb5\x62\x99\x1d\xae\xab\xf5\x96\x7b\x55\x30\xb3\x42\x87\x32\x78\x1b\xb3\x98\x64\xa7\xbb\xfd\x71\x21\x76\x32\x16\xd1\x1b\xec\xf9\x8a\x3b\x1e\x6b\xa8\x17\xd4\xc5\x88\xdf\x15\x91\xae\x1f\x71\x5b\x0b\x2f\x15\xde\xa0\xef\x74\x6b\x0a\x3f\x18\x52\xa0\xd7\xd2\xec\x42\x28\xf6\xef\x34\x38\x71\xe3\x38\xa1\x30\x60\x87\xc1\xb1\xeb\xaa\x44\x16\x9f\x01\x00\x8b\xb9\x13\x31\x5b\xe6\x00\xae\x24\xaf\xe5\xff\x43\x6b\x1c\xc8\x9a\x1f\xa7\xc3\xf6\xf7\x7d\x30\x99\xbb\xb6\xfe\xc0\x7f\xe7\xbf\xe3\xaa\x00\x1b\xe2\xe9\xe8\xde\x46\x01\xb0\x9d\x3e\x5a\x31\x10\x07\xa1\x7c\x92\xdc\x09\xb7\x5d\x11\x05\xa9\x7d\x0a\x98\x9a\xdb\x94\x7b\x2a\x6f\x8c\xe9\xb3\xe7\xc9\x55\x7a\xda\x76\xd4\x68\x11\x62\xbf\xcd\x26\xdf\xcf\xeb\xfd\x17\xae\xf8\x2d\xf1\x42\xf1\x28\x9b\x3d\x38\xd9\x62\xe9\xa4\x67\xc6\x8a\xd8\x27\x77\x34\x53\xb6\xe8\xb0\x63\xae\xbd\x2b\x4e\xbf\xa1\xbe\x1f\x53\xb4\x9a\x99\x26\xa2\x9a\x80\xed\xc4\xf4\x26\xb4\xab\xbe\x9e\x1f\xc7\x96\xc4\xee\x54\xb3\xfe\x66\x8e\xbb\x16\x61\xa2\x11\x3b\x9a\x86\x6b\x89\x78\xad\xe1\x33\x6c\x83\x77\x0c\x3d\xa1\x19\xfb\xc4\x0c\x7f\x2f\xb8\x8a\xd6\xfb\xa1\xf9\xa5\x7b\x85\xd0\xed\x3b\xa9\xd9\xd2\x59\x44\xd4\xb9\x22\xa0\xf5\xe2\xb6\x24\xd1\xe2\x0a\xab\xd6\xc1\x56\x4e\x12\x9d\xdb\x4b\x00\xeb\x9e\x9f\xeb\xa2\xdd\x07\x79\xba\xbf\x73\x20\x03\x6a\x6b\xe7\xc0\x5a\xfe\x47\xae\xfa\x7b\x12\xbf\xff\x5c\xff\x77\x86\xb5\xfc\x77\x2d\x07\xe9\x67\x03\xd8\x49\xa0\xa3\xbb\xcb\x0b\xad\xbc\x79\x97\x50\xf5\xef\x91\x27\x92\x8a\x92\x3d\x45\xaf\xa9\x85\x2a\x82\x9a\x65\xc9\xea\x14\x36\x03\x11\xab\xb4\xe0\x51\x32\x8f\xd5\x8c\x73\x17\x8d\x7f\xb0\xd7\x22\x26\x46\x12\xfd\xef\x58\x1e\x21\xe0\xb3\x39\x83\xe5\x8c\x34\x08\x76\xf5\xd2\xa1\x54\xed\x65\xfc\x64\xff\x52\xf8\x3d\x75\x21\xfc\xd1\x2f\x81\x51\xad\x2a\xdb\xf1\x3e\xb8\xec\x70\x51\x94\x14\x9e\x80\x67\x0e\xe1\x50\xfe\x8a\x51\xc5\xdf\x0a\xdc\x8c\x9a\x9c\x2e\x24\x30\xfa\xa7\xab\x68\x7f\x35\x26\x64\xfb\xbc\x52\x89\x7a\xab\x4f\x14\xf1\xda\x81\xbe\x32\x12\x4e\xd4\xf1\xec\x42\x17\x3c\x9b\x22\x3e\x71\x7b\x85\xd6\x78\xfc\x88\xc4\xe5\xb2\x01\x1d\xf4\x80\x9f\x14\xeb\xd8\xac\xb6\xef\xfe\x53\x92\xb3\xd3\x04\x80\x57\xe2\xef\xf7\x01\x8d\x03\xe9\x5e\xe3\x60\x68\xdf\xbf\xff\xf4\xbf\xff\xd9\x87\x32\xba\x96\x7b\x3d\x88\x00\xf8\xfb\xb9\x71\x77\x1c\x80\xb5\xfa\x70\x50\xc3\x05\x98\xe2\x79\x7b\x7e\xb0\x4c\x0d\x0e\x4a\xd6\x88\x5e\xcc\xc8\x45\x6c\x51\x9b\x15\x1d\xa3\x33\xa8\x72\x7a\x1c\x7a\xaf\xfc\xf6\x50\x64\x2c\x8d\x2c\x97\x9d\xb7\x93\x1d\x5d\x17\x1d\x67\x6c\xcd\xc9\x9b\x83\xeb\x5d\x83\xcc\x33\x49\xed\xc9\x28\xf7\x7e\xc3\x61\x92\x62\xc9\x2d\xaf\x78\xed\x9b\xc4\x99\xd6\x6a\x6f\x61\xb5\x4d\xc4\xb7\xcf\xd0\x57\x0c\x50\xc1\x44\x9f\xf1\x03\xde\xe5\xff\xe9\xbd\x58\xe3\x1f\x14\x0e\xad\x9c\x21\x1d\x77\x24\xaf\xfb\x1e\xfe\xe0\x1e\x94\xf8\x47\xbd\x48\xaf\xec\x8e\x28\x25\x0d\x36\x93\xcf\x5b\xf7\x2a\xbd\x7c\xfa\x98\xac\x6d\x95\xf2\x5f\x0e\xa4\x7d\xed\x79\x40\xeb\x03\x59\xf3\x02\xd5\xfc\xfe\xfd\x37\xcd\x03\x41\xfb\xfe\xb9\x0b\x03\x70\xb4\x7a\x7b\x46\x23\x19\xe0\x1c\xcf\x01\xbb\x0a\x32\x10\x79\x43\xd9\x78\xb2\xdf\x40\xa0\x04\x2f\xef\x87\x04\x6b\xe4\xa9\x72\x91\xb4\x63\xf0\x49\x2a\x59\xd7\x44\x6d\x8b\x87\x2b\xf5\x90\x85\x99\xe1\x76\x1a\xff\x60\x55\x41\x61\xf1\x7f\x64\xed\x67\xba\x97\x72\x32\x26\xcc\x3a\xc2\x40\x8e\x5c\x9f\x23\x67\xaf\xa4\xbd\x9f\x6c\x7c\xbd\xd1\x51\x4c\x4d\x8f\x2c\x7d\xd7\xd9\xf1\x94\x0a\x23\x69\xf6\xf9\x63\xa7\x69\xc5\x6c\xd2\xfd\x89\x77\x4e\x93\xf2\x3a\xa4\x61\xd2\x59\x47\x99\xff\x78\x1f\x7a\xc8\x2a\x64\x2f\xb3\x11\x99\x57\x2b\x47\xc8\x95\xa6\x31\x32\xc5\x73\x1d\xe4\x79\x63\x55\xd9\xc0\xf1\x5a\xf2\x77\x63\x9c\x0c\xf2\x39\x99\x22\x6b\xd0\x2e\x17\xfe\xe6\x26\x85\xc9\x68\xf5\x97\x0f\x84\x96\xff\xd3\xf6\xc1\x04\xf7\xbf\xf3\xef\xc5\xb5\xef\xd9\x3f\xe0\xd7\x7a\x10\xae\xff\xee\x81\xa0\xe5\xdf\x95\xd5\x00\xac\xbc\x07\x74\xf3\xa4\x00\x78\x83\xce\x4a\x24\x17\xc2\x3d\x71\x06\xce\xb3\x11\xb5\xc0\xa1\x14\x2d\xf2\xd1\xb7\x01\x49\xd5\x3e\x2e\x5f\xe4\x5c\x40\x7d\x6b\xba\xac\xde\x6d\xa3\x42\x55\x76\x88\xd6\xbb\x67\xde\x41\xdd\xef\x5d\x65\x18\x64\x0c\x94\x6f\x61\x31\xc6\x7d\x7a\x18\xca\x9d\x94\x15\x53\x6e\x2d\x7b\xca\xf5\x42\x07\x53\x0b\xb5\x14\x8a\x59\x7d\x91\x79\xbe\x8a\x00\x19\xb9\x97\x6c\x25\xa7\xf8\x91\x4c\x78\xf1\xd9\x32\x46\x5e\x82\xfc\x62\xfc\xb8\xe5\x8a\x2c\x2b\x79\x05\xf7\xd9\xfc\x99\xf4\x7b\x8a\x3d\x79\xd4\xd8\x7a\xdd\xf7\x90\x4c\x95\xa5\xf4\x6a\xd5\xfd\xc9\x3d\x48\x3e\xf9\x61\x4e\xf9\xa8\xb5\x5d\x2a\x74\x92\x9f\xf2\x5c\x6b\x01\xa0\x6c\xcd\x8f\x75\xbf\x92\xee\x37\x1e\x8c\x8a\xa2\xfb\x57\x0f\xc4\xe7\xb5\x9c\xf7\xf9\xda\xfa\x3b\xd7\x38\x80\xba\x96\xdf\xf3\xef\xfc\x8d\x00\x67\xb3\x99\x4e\xa7\x49\x01\xf0\x1c\x61\x26\xc7\x1c\x82\x1f\xa2\xcf\x2e\x58\x04\xba\x80\x97\x62\x2e\xbf\x86\xbb\x38\x6c\xd7\x74\x10\xf7\xb5\x6b\x41\xb4\x4d\xc2\x95\xde\x59\x7e\xa4\xbe\xb6\x5d\x54\x1f\x33\x35\xa7\xf6\x79\xd8\x68\x9e\x33\x48\xa1\xbe\x0c\xb4\xd6\x08\xd5\xcd\xa7\x66\xc6\x14\x68\x17\x68\x72\x52\xed\xae\x2a\xe9\x6a\xab\x0e\x53\xd5\xcb\x36\xeb\x2e\xa2\x2e\x52\x59\x9b\xdc\xf4\x28\x8a\x1f\x28\x4b\x5d\xdf\x0d\xaa\xe5\x5a\xa9\x74\xcf\xca\xf4\xcf\xca\x3c\xa7\x3c\xfd\x72\xd8\xc0\x47\x0a\x47\x59\x5d\x48\xd3\x53\x92\x7c\x40\xe5\xa2\xdc\xd0\x0e\xf8\x0f\xf7\xc0\x89\xa0\xa8\xef\x15\x86\x45\x73\xa8\x09\xc8\x5f\x72\xf3\x62\xa9\xd8\x45\x6a\x87\x92\x1c\xc0\xad\xd7\x74\xbf\xf1\xb1\xab\xff\xac\xe7\xcf\x3e\x98\xc1\x35\x0f\xca\xfd\xb5\xfd\xd1\x98\xb1\x96\x7f\xaf\xe5\xc1\x05\x8f\x01\x8e\x3c\xd8\x7a\x26\xf5\x30\x00\x33\x89\x9e\x3d\x8e\x0b\x80\xeb\xfb\x71\xff\x10\x77\x00\xd1\x08\xd6\x13\x5e\x24\xb8\x27\x1f\xc8\xe9\xe5\xf4\x1a\x1c\xd5\xc4\xf8\x67\xac\x4b\x91\xcf\x06\x69\x52\xdb\xff\xd3\xfb\x70\x1c\x09\xbd\xd2\xa6\xf0\x5d\xe7\x1c\x72\x3e\x4c\x4c\x65\x4e\x83\x1b\x39\x93\xb8\x0f\xbd\x07\x4d\xa5\xae\xe6\x72\xa9\xa1\x68\xfc\x83\x62\x3c\xb5\xb9\xc9\x48\x23\x52\x2e\x80\xda\xd7\x79\x42\x7d\x8b\x4c\x04\x35\xf3\x69\xb1\x46\x9e\x14\x37\xb5\xe9\xed\x73\xb5\x6b\x92\x12\xd4\xd4\x19\x19\xf5\x9a\x7f\x7a\x1e\xf8\x54\xbb\xd7\xfb\x2e\xd6\xf2\xfe\xf5\xdc\xdf\x10\x21\x20\x57\xc5\xbb\x7f\xed\x83\x19\xfc\x3f\xf3\xc1\xda\x39\x28\xfc\x3b\x07\xd4\xbb\xe6\xc7\x68\x91\x5c\xcb\xbf\x91\xb5\xfc\x7b\xcd\x7f\x10\xd7\x00\xf0\xf7\xef\xcf\x20\x22\xc0\x56\x7f\x3a\xba\xd0\x11\x80\xcb\xaa\x87\xef\xfb\x3e\x02\x10\x3d\x7d\x46\xcc\x8d\x09\xde\xcb\xad\x72\x58\xd9\x31\x40\xbe\x2a\x3d\xb7\xbf\xf9\x3e\x10\xd5\xdb\x20\x04\x46\xb6\xb0\xc3\x04\x11\xeb\xd2\x4f\x47\xe6\xec\x12\x25\x33\x74\x14\x91\x97\x1e\x49\xd2\xe9\x9a\x4f\x91\xa7\x7e\xc6\x32\x1c\x6a\xc2\x48\x7b\xe4\x3d\xd9\x18\x95\x97\xc8\xd5\xe4\xaf\xf2\x01\x4a\xf3\x48\x78\xee\x7d\x05\x55\x05\x2b\xc4\xa5\x22\x53\x71\x9f\xdc\x7e\x44\xa1\xa9\x41\xa9\x56\xe6\x24\x22\xd5\xa1\xaf\x14\x23\xe5\x8c\x9c\x7a\x54\xa0\x5c\x2c\xb1\x80\xec\x7b\x25\xa1\x3c\x2c\xd6\x83\xc8\x7d\x5b\x54\x58\x14\x7d\x86\x98\xcd\xbb\xc9\xfb\x8b\x06\x23\xfe\xc8\x2e\xb9\x68\x11\x6e\x64\x00\xb1\x90\x32\x15\xce\x43\x66\x91\x18\x89\x48\x80\xcf\x56\x74\xff\x87\x07\xe3\x4d\xdb\xda\x73\xc0\x71\x8d\x03\xdb\xfb\x73\x5e\xd3\x5d\xf3\x60\x8c\xfd\x9c\x49\x9b\x7f\xce\xd0\xf0\xb5\xa9\x0d\xc0\x6c\xbe\x93\xde\x67\x16\xe0\xc2\xee\xbd\x2c\x1e\xa9\x00\x42\x32\x27\xff\x72\xf8\x0c\x20\x63\x74\x8e\x6c\x15\x0f\x77\xd0\xe7\x38\x0d\x8d\x57\x20\x51\xcb\x9a\x87\x4b\xff\x33\xa8\x1a\xc9\x08\x9a\xe9\x9a\x81\x80\x15\x5e\xf8\xab\x66\x1a\xc8\x38\x79\x08\x1b\xd1\xf8\x07\xd5\x5d\x70\x20\xa8\x54\xfc\x38\xaa\x0f\x99\x8f\x1d\x95\x5c\xa6\xf1\x0f\x0a\x06\xc8\xfd\xfc\x51\x19\x1b\xd9\x79\xa4\xb7\x42\x4e\x7a\x4c\x86\x1d\xa9\xbe\xf1\x41\xf6\x92\x94\x2d\x92\x76\xe7\x8c\xdc\x1e\x09\x66\xa4\xbc\x4f\x58\x26\x56\x3c\x05\xf1\x18\x7c\x21\x47\x14\xed\x41\x92\x3f\x34\xca\xee\x13\xc9\x47\x2a\x67\x76\x49\xf7\x8b\x5c\x40\xda\x56\x7b\xa5\x66\x85\x0f\xc3\x66\xa4\x42\x8c\x4a\xe3\x60\x96\x0d\xff\xf0\x60\xfc\x0f\x0e\x28\x3f\xf8\x77\x0f\x46\xc4\xc8\xcf\xe9\xbd\xe6\xc3\x70\x98\x01\xf8\x4b\x81\x8e\xce\xed\x26\x00\x5b\xc0\xee\x2a\xc7\xdb\x00\x42\x27\x8e\x75\xda\x68\x01\x48\x6f\x3b\x5d\x6f\xda\x0a\x4b\x4a\xaf\xcf\x6f\xd5\x6b\x82\x67\xea\xca\x1c\x57\x74\xea\x21\x4b\xaf\x95\x7b\xbf\x56\x01\x44\x9b\x1d\xe1\xdd\xaf\x7e\x19\x92\x6d\xf9\x78\x16\xd5\x6c\x40\xcf\xbd\x54\x90\xa8\xb2\x05\x5c\x7d\x76\x0a\xf0\x28\x33\x82\x41\x48\x97\xd0\x76\x25\x4e\x60\x89\xdf\x2f\x26\x48\xe3\x1f\x64\x77\xc3\xc9\x7c\x01\xd1\x79\xe9\x3b\xb0\xbd\xdc\x4b\x9c\x57\xb2\x0d\xc1\xdd\xe8\x93\xd8\x25\x6e\x07\x0c\xad\x62\x62\xe7\x45\xdf\xc3\x96\xfb\x75\x62\x68\x91\x1c\xd8\x32\x40\x10\x3b\x2c\xdc\x8f\x60\x46\x4f\x8a\x6f\x17\xe6\x40\x96\xbe\x65\x89\x0b\x09\xe9\xc0\xae\x99\x0d\xa2\xa5\x34\x1f\x0e\xed\x1c\xfc\xff\xc7\x01\xa5\x6d\xfa\x39\xa3\xe3\x7f\x4e\x7f\xd6\x9f\xd3\x79\xf5\xe7\x34\xb7\x03\xa0\x63\xa4\xa3\x73\xc8\x05\x60\x75\xa2\x9f\xb5\x31\x01\xe0\x7f\x71\x78\xbf\x79\x11\x80\xc4\xea\xc9\xe7\x06\x6a\x00\xf2\x23\xa7\xbd\xb5\xc8\x80\x45\xa3\x58\x0d\x35\xee\xc2\xb0\xb6\x18\x7b\x85\x5a\x2b\x3c\x31\x12\xbf\xc8\x8f\x96\x80\x37\xa6\xf9\x1c\xbc\x2a\x1c\xd0\xe4\xc8\x78\x79\x0a\x95\x0d\x29\x9e\x1b\x79\x4d\x95\xba\x21\x30\x40\x85\x9f\x53\xbe\x06\xd2\x42\x87\x78\xbd\x64\xef\x40\x54\xec\x07\x3e\x1b\x19\x25\x70\x48\xf7\x15\x48\x90\xda\x0b\x0e\x79\x5e\x02\x9a\x92\x74\xa0\x5b\xb6\x4f\x30\x47\xe2\x2d\x1c\xaf\x4b\x16\xf5\x12\xad\x03\xd4\xcd\x56\xc1\x57\x22\x93\x70\xb1\xeb\xb6\x70\x8b\xf0\x34\x5c\xee\x9b\x13\x56\x15\x02\x38\x3b\xb8\x43\xf8\x8b\x60\x3a\x48\x8e\xfe\x10\x24\x02\x6c\x9c\x93\xac\xfb\x7b\x5f\x9c\x36\x97\x7d\xbf\x85\x00\xc0\x7e\x4d\xaa\x63\x87\x13\x80\x08\xab\xd4\xe8\xde\x22\x00\x69\x29\x99\xae\x83\x0d\x00\x2a\xda\x8a\xdc\x27\xdd\xfe\xc5\x83\x7c\x42\x63\x2f\x60\x01\x4c\xef\x68\x69\xf0\x8e\x02\x98\x37\x1b\xcc\x48\xf8\xc2\x4d\xf3\x3e\xb3\x78\x45\x5b\x90\xb2\xf0\xb1\x97\xd0\x8c\x47\xee\x99\x8d\x78\xbb\x1b\x3b\x23\x22\xc6\x59\x51\x0d\xd6\x85\xd4\x68\xc3\xd3\x99\xd5\x2e\x4d\xd4\x53\x3a\x83\x15\x3f\x3c\x9e\x52\xca\x35\x43\x5a\xca\x7d\x42\x29\xba\x6a\xb6\x3d\xad\x7e\x0f\xc9\x73\xe8\xdc\xe7\x6a\x41\x87\xc8\x1f\x95\x5f\x7c\xd8\x16\x88\x27\xfb\x28\x3a\xfc\x78\x1a\x12\x4a\x1e\x91\x2f\xc4\x5b\x06\x9e\xa0\xb8\xcb\xf9\x13\x14\xbc\xf3\x09\xed\x72\xaf\x08\xea\xde\x65\x4b\xc7\xe5\xc6\x88\x5b\x3c\x72\x26\xee\x2b\x2c\x13\x5e\x78\xe1\x3f\xf1\x2b\xd6\x12\xd9\x3d\xf7\xbf\x2a\x53\xaa\x26\x26\xb9\xef\x7d\xe1\xa4\xdc\x43\xac\x77\xab\x7d\x58\xa7\x72\x9c\x38\xe9\x5a\xdc\xcf\x8a\x5a\x26\x89\x39\xf3\xdc\xdf\xa2\x82\x23\x99\x3a\xe5\xdc\x61\x45\x0b\x93\xbe\xd8\xe1\x01\x36\x7a\x8b\xff\xd3\xb7\x4a\xe3\x41\xb8\xbe\x4a\x1d\xa0\x37\xfa\x17\x07\xf1\x55\xe6\xf1\xa1\xa1\x7f\xf1\x20\xb6\x4a\x61\x67\x0a\x00\x8c\xc8\x2a\xbc\x17\xae\x01\x58\x76\xab\x8f\xf1\x5e\x02\xb0\xc4\xeb\x7b\x48\xd0\xc1\x7d\x4b\xbc\xc9\x77\x85\x72\x60\xb2\x9a\xb5\xad\xd7\xc9\x43\x8a\x2d\x6e\x7b\x09\x99\x72\x23\xdb\x4c\x9d\x22\xa6\xec\xb8\xa9\x92\x46\x1f\x33\x78\xdd\x5f\x50\x5e\xe9\x3e\xa8\xd4\xf1\xfe\x8b\x72\x4e\xfb\xd4\x4d\x24\xf0\x12\x79\x44\xfd\x6a\xaf\x76\xb0\x1f\x39\x0e\xbd\x3a\x98\x15\xaa\x4f\xe6\x44\x69\x7e\xd1\x08\x77\x22\xe1\x14\x67\x17\x31\x11\x8e\xe4\x38\x85\x13\x38\x7c\x70\x26\x65\x9b\xbc\x28\xbe\xd1\x5f\x05\x63\x2d\x7f\x8d\x70\xd0\xd7\x74\xe6\xab\xc2\x0b\x82\x91\x4f\xf4\xd7\x4b\x4a\x0e\x04\x7b\x1f\xdc\x9b\x50\x65\x0e\x02\xce\x0b\x3b\xcc\xa1\x3c\x45\x54\xf1\x3c\xfb\x98\xa0\x62\x44\x74\xf4\x18\x7b\x20\x85\x3e\x47\xcc\x73\x5f\xea\xee\x45\x87\x10\xf1\xae\x99\x77\x67\x55\x37\x91\x94\x9d\xbd\xdb\x86\xd0\x54\xd2\xff\x8f\xb0\xb3\x8c\x8a\xb2\xfb\xfe\x3e\x8a\x82\x01\x8a\x85\x09\x88\x22\x18\x74\x77\x77\xd7\x0c\xdd\x0d\x43\x77\x77\x77\x48\x37\x52\x52\x0a\x02\x02\x0a\x18\x18\xa8\xa0\xa2\x22\x2a\x18\x20\x06\x4a\x33\x3d\xb3\x9f\xa5\x32\xa2\xf7\x7d\xff\x9e\xff\xab\xbd\x5c\xcb\x17\x9e\xed\x35\xe7\x5c\x33\xfb\x73\x3e\xdf\x71\x67\x57\x80\xed\x0b\xd2\xdf\x7f\xf4\x81\xc2\x41\x08\x9c\x91\xab\xd8\x75\x7c\xa3\x0f\x4a\xbe\x0a\x5b\x0f\x3d\xfd\x0f\x1e\xa4\x56\x53\x91\xf3\xf8\x1f\x79\x39\x9e\x88\x2c\x29\x0c\x34\x3a\xf5\x9a\xaf\xa8\x0b\xc1\x6e\x07\x4d\xfb\x78\x44\x03\x19\x65\xaf\xea\x55\x66\xfd\x85\x74\xd3\x3a\x3f\x9a\xdf\xb5\x82\x74\xc4\x3c\x3d\x1b\xe7\x83\x22\xc6\x1b\x67\x55\x4b\x06\xf1\x11\xb7\x19\x7a\x74\x30\x85\xc9\x13\x34\xf4\x4a\x6e\x89\x46\x7f\xc7\xd7\xe8\xd0\x3f\x6d\x4f\x40\xe2\xaf\x69\x32\xbd\x75\x8b\x5b\xc4\x8b\xa8\x39\xac\x9e\x4c\x1c\x5a\xe7\x60\x66\x08\x77\x94\xdb\x31\xba\xa1\x49\xf3\x95\x2a\x38\x4c\x77\xc8\x99\x0f\x93\x6a\x57\x31\xd3\x21\xb4\xaf\xe4\x34\xb4\x30\xf8\x10\x6e\x0a\x07\xf3\xb0\x58\x4b\x08\xdb\x1c\xf0\xe8\xb7\x0f\x46\x50\x7b\x14\x17\xe0\x63\xd8\x37\xaf\x13\x82\x6b\xf7\xc2\x52\x38\x98\x76\x19\xdd\x52\xbc\x1d\xca\x05\x60\xc7\x80\x34\xeb\xcf\x3e\x08\xc8\xb8\xd2\xdc\x03\x10\x24\xcb\xa4\xef\xaa\xdf\xe0\x20\xd4\x44\xe5\x1d\x0e\x37\x03\x18\x3e\x57\x50\x64\x2e\x05\x30\xed\x51\xf2\x3e\x49\x05\x60\x4b\xaf\x16\x7f\xb6\x6b\x23\x2f\xc7\x45\xda\x90\x46\xf2\x2b\x3c\x70\x3b\x60\xf2\x58\xa5\x19\xb6\xba\x1c\xb5\xa3\x41\xf6\x92\x4d\x1d\xf0\x1e\x3b\x6c\xba\x48\x19\xb6\x6b\x11\xac\x28\x12\xb1\xda\xea\x54\x16\x75\xa0\x21\xe1\xa3\xe9\xd3\x2a\x54\x04\x3d\xc1\x1f\xb1\xd4\x21\x12\xad\x82\x27\xea\x35\x0e\x65\xc7\x69\xe1\x0d\x75\x84\x9f\x85\x25\xa5\xe3\x99\x34\xb9\x67\x9c\x92\xa5\xff\xe9\x85\x59\x4d\x57\xed\x46\xdb\x47\x23\x3f\xeb\xab\x27\xa2\xf3\xa3\x45\xdf\xe6\x6b\xd4\x60\x68\x23\xbd\x5e\x64\x68\x62\x30\xbe\xe1\xad\x23\xda\xda\x06\x98\xb1\xb0\x3d\x43\x5b\x75\xde\x63\x75\x82\x6f\xfe\xe6\x60\xda\xf4\x0e\x63\xdf\x05\x34\x52\x7c\x30\x14\x0e\xa6\xb5\x42\xbf\x0d\x4f\xe7\xa9\x0f\xb0\xe3\xa3\x64\xd6\x8f\x3e\xb0\x1f\x96\x66\xa4\xf5\xdb\xe0\x20\x64\xae\x4b\xdf\xdd\x2f\x01\xa0\x41\x2f\xe9\xc1\xb8\x15\x00\x61\x21\x97\xc2\xa4\x0f\x60\x75\x4c\xd1\xfd\xe4\x04\x80\xa3\x9a\xea\x95\x73\x6f\x01\x50\x55\x9a\xbd\x82\x91\xbf\xf3\x72\x9e\x78\x32\x18\xbd\x57\x29\x82\x6d\xa8\x60\x1b\x73\xe4\x27\xf2\x09\x97\x93\xae\xc1\xf6\xde\x24\x05\xfb\xd1\x70\x16\x2f\x2b\xa2\x80\xcd\x62\xfa\xe6\xd0\x78\x42\xac\xb9\x70\x65\x5b\xb4\x0b\x3e\xd1\xe8\xdd\x15\xee\xa4\x02\xbc\x9e\xfe\xca\x10\x36\xd9\x1c\x57\xab\x33\xff\x22\x34\x5d\x14\xa7\xaf\xc9\x38\xc7\x96\xa1\xf9\x3b\x27\x69\xdd\x0b\xf3\x4d\x58\x23\x7d\xed\x64\x52\xf2\x87\x33\x9a\x15\x6b\x5f\xe2\xad\x26\xa8\xb4\x86\xd1\xc9\x31\x3d\x8f\xa5\x74\x14\xd1\x98\x68\xea\x7b\xa7\x74\x6f\x62\xcc\x22\xad\x6f\x05\xeb\xc9\x61\x46\xc3\xa9\xff\x97\x0f\xa6\xe5\x90\x61\x1c\x2e\xd1\x57\xb6\xa1\x0f\xe1\x83\x1b\xf4\xfe\x0a\xc0\xd4\x28\xb7\x89\x1a\x07\x70\x66\x8b\xe4\xbb\x6d\x19\x00\x42\x46\xe2\xe5\xf4\x0f\x00\xe4\xb6\x4a\x4d\xec\xdf\x06\xa0\x39\x23\xd1\xc5\xb8\x1b\xc0\x84\x5f\x66\x95\x09\x01\x60\xa3\x29\xfb\x85\x55\x04\xc0\x35\x4a\x99\xf6\x6c\x37\x80\xa7\x89\xfa\x6d\x01\xc4\xef\xbc\x9c\xdb\xbe\xcf\x91\x25\x6a\xfc\xb0\xd9\xeb\xa3\x55\xaa\x51\x37\x69\xc1\xad\xc0\x25\xdd\x89\x8b\xb4\xd7\x29\x27\x78\x87\x8f\x36\x61\xc5\x76\x34\x6d\x29\xfc\x29\xe1\x84\xc5\xc7\x72\x88\xcb\xc6\xcd\x9b\xa8\x74\xcc\xa7\xcd\xe3\xaa\x0d\x6e\xdd\xbd\x97\xb1\x0b\x3b\xab\xdb\xfa\xd2\x31\x9b\x80\xb5\xd3\xda\xfd\x2d\x32\x6f\x2b\xc5\x0b\xb3\x2a\xa6\xde\xb5\x9a\x97\x52\xfd\x99\x53\xd3\x61\xed\x60\xf2\xe1\x89\x32\x1d\xfe\x35\x54\x52\xde\xe3\x5b\xba\x2d\x6b\x6b\x09\x51\xc3\xb2\x7a\xd3\x68\xbd\xf8\xbd\x37\x3e\x19\xec\xc4\xec\x89\x8e\xfd\x5f\x3e\x98\x56\x1b\x44\x24\x76\x31\x50\xa1\x2e\xc6\xe8\x31\xee\x78\x40\x44\x6d\x21\x92\x80\x2b\xf0\xd5\x04\x60\xde\x23\x73\x65\x0b\x23\x00\xd7\xaa\xa4\xeb\x8e\x86\x7f\x73\x10\x94\x9c\x18\x53\x90\xdc\x71\xa4\xe0\xdf\x3c\x88\x9f\xbb\x0a\x3f\x1f\xcb\xef\xbc\x9c\xf1\x20\x17\x83\x19\x95\x77\x94\xdc\x20\xd2\x57\xcf\x59\xa7\x18\xa7\x9b\xc4\x6e\xd7\x49\x7f\x57\xff\xcf\x84\xcb\x0e\xe7\x93\x92\xa3\x0e\xe3\x2f\x58\x75\x94\x5d\x49\x0a\xc0\xbd\x33\x61\xba\x32\x98\x2e\x87\x25\x19\xbe\xbf\xfb\x2d\x47\x0e\xcb\xa9\x3b\xff\xfa\x65\xfe\xd9\x7f\xe6\x24\x7d\x3f\xa3\x65\xbc\xa2\x9e\x7d\xe0\x9d\x94\x0e\xd3\xaa\x74\xfa\xbd\xe7\x3b\xf4\x6c\x56\x2f\xa4\xdd\x78\xb0\x5f\x7f\x70\xad\x38\x69\xe8\xf6\x01\x43\xd7\xb5\x89\x44\x18\xd8\x6c\xf8\x10\x9d\x15\x97\xd1\x5d\x86\x54\xc6\x30\xc4\xa8\x5e\x46\x18\x51\x61\xee\x46\x44\x53\x7c\x30\x0d\x75\xc6\x8e\xd8\xf4\x10\xd1\x5a\x69\x63\x2d\x1c\x73\xc0\x85\x4a\x55\x13\x0f\x9c\x93\xdf\x02\xc0\xf1\x4c\x99\x2d\x5b\x39\x01\x38\x4d\xc4\x55\xb6\x57\x00\x88\x3d\x13\x1b\xda\xfd\xea\x0f\x0e\xc2\x5e\x3c\x81\xf1\x21\x80\x75\x86\x78\xdd\x51\x76\x00\x17\x01\x89\x06\xe6\x69\x00\x6f\x46\x39\x66\x8e\xbb\x00\x41\xf2\x8a\x4b\x3c\x0b\x00\xe1\xbc\xea\xef\x25\x72\x7e\xe7\xe5\x88\x85\xae\x19\x2f\x19\xb6\x92\xc6\xfd\x2b\x1c\xd8\x5c\x18\x88\xd9\xa8\xaf\x3e\x69\x81\x8a\x84\x5d\xce\xa8\x84\xbc\x78\x5b\x3c\xab\x35\xb9\xac\x2a\x4d\x00\xb7\xcb\xf4\xcd\x95\x88\x9c\x36\xec\x2e\xe4\xbe\xfb\x02\x05\x8f\x30\xfe\x7a\x36\x53\x07\x8a\xf7\x50\xf8\x8f\xd5\x5d\x5a\x22\x4b\xc4\x7c\xda\x99\x36\x9d\x0f\xcb\x95\x79\x19\x13\xe1\x7a\x2f\x56\x4c\x72\x74\x1f\xd5\x19\xee\x59\x3d\x95\x59\x7a\x07\x85\x30\x58\xbd\x93\xce\x35\x40\x83\x74\x5e\x3b\x9f\xdc\xd3\xe5\x68\x9c\x89\xde\x9c\xc4\x72\xf9\xab\xc9\x55\xb4\x64\xa2\x60\x53\x83\xc9\x20\xc6\x39\x7a\x5f\xfd\x3d\xd3\x7a\xcc\xc5\xc8\x87\x35\xa7\xcc\xba\x31\xa4\x88\xc3\x15\xa9\x66\x4c\xd8\x89\xa0\xfb\x25\x3c\x66\x1f\x71\xa2\x01\x91\x00\xcc\x1a\xe2\x68\xea\x0f\x00\xbc\x78\xb1\xa2\x9d\x69\x00\x92\x2e\xa2\xf1\xbb\x9f\x00\xa8\x57\x8a\x49\xee\x1b\x02\x40\x44\x89\xec\x3f\xc0\x0e\x60\x2b\x2b\x1a\x7c\xf8\x0e\x00\xca\x4d\x92\xff\x78\x12\x80\x3f\x56\xfa\x0a\xfb\x14\x40\xf8\x59\xf9\x37\x3c\x96\xbf\xf3\x72\xd6\x62\x1b\xb4\x35\x94\x06\x81\x29\x4a\xd5\xf8\x20\xf2\x01\x69\x22\x64\xd4\xb6\xd9\x45\x8c\x48\xef\x65\xef\xd9\x17\x76\x18\x5f\xe9\x7a\x31\xce\x25\xe9\x12\x2e\xc3\x4e\xa5\x44\x27\x8b\x9f\xc2\x05\xa1\xd7\x90\x84\x07\xaf\xca\x6a\xd7\xbe\xe9\xd3\x4e\xdb\x56\xe5\xa0\xfd\xb4\x5b\x16\x7a\xca\x8d\xbe\xef\xd5\x19\x59\xbc\x59\xa2\x31\x19\xa1\x7f\x71\xa9\xbd\x70\x7c\x34\x0d\x51\xb5\x1c\x91\x5f\x79\x67\x0a\x79\x6b\xa5\x21\x47\x95\x92\x0b\xd4\x73\xc4\x84\x76\xed\x6c\x9a\x50\x7b\x91\x69\xe4\x5a\x5d\x8a\x40\x13\xb3\xd9\x14\xda\x35\xa1\xa9\x8e\xd5\x22\x07\x1d\x9f\x60\x47\xf1\xc1\x94\xbf\xb4\x38\x83\x3d\x14\xde\x52\x9c\x61\xc9\x8f\x75\x08\x85\x02\x75\xcb\x83\x58\x62\x90\x36\x00\x2b\xab\x78\xec\x56\x3a\x00\xbe\x3e\xe1\xe7\x3b\x1d\x00\x64\xe4\x45\x26\x18\x58\xfe\xe0\x20\x90\x42\x6c\xfb\xaf\x02\xd8\xf7\x89\x8c\x1d\x9e\xdf\xe0\x20\x42\xd4\x24\x03\x4e\x8d\x6c\xe4\xc4\x24\x92\x94\xee\x89\xa9\x02\xa4\xb0\x69\x30\x2a\x6e\x07\xa1\xa4\x04\xc3\x93\x08\x47\x12\x29\xb2\xd5\xea\xaa\x53\x0e\x61\xce\xbf\xd2\x3d\x2c\x3c\x13\x7f\xcc\xfd\x62\xf4\xd1\x34\x6f\x6c\xb7\x43\x6e\xb1\xc8\xf9\x54\x0c\xab\x65\x62\x07\xb9\xec\xe6\xda\x84\xd1\x85\x91\x85\xea\x95\xd5\x65\xbd\x95\xcf\xe6\xb5\xf7\x56\x3f\xe8\xcc\xcd\x97\x57\x0b\x7f\xb8\x61\xe0\xb5\x50\x50\x29\xf0\x2c\x0b\x99\xbc\xe8\x5e\x2e\x70\xaf\xd5\x44\x66\x49\xa9\x64\x6a\x90\xd3\xd4\x7b\x39\xb5\xc0\xbd\x67\xd0\x4c\x60\xa5\x20\xd7\xa3\xfd\x9d\x39\xd7\x6a\x76\xa6\x6f\x13\xd1\x42\x73\xcd\x33\xb5\xa5\xf6\x9a\x25\x76\xed\x75\xf2\xa7\xca\x65\x2b\x4d\xf4\xa5\xf8\x9b\x14\x1f\x4c\x31\x9d\xd5\x1b\xcc\xed\xc8\xef\xf9\x7c\xd6\x38\x0c\x29\xe2\x5a\xae\xb7\x35\x02\xdb\x1f\x72\x10\x80\x35\x41\xf4\xc1\xd6\x3d\x00\xc2\x06\xc2\x2e\xf4\x76\x00\xb2\xcb\x42\xed\xbb\x8d\x37\x38\x08\xb3\x24\x81\xf7\xfb\x0d\x01\x5c\x56\x44\xb7\x1f\xad\x07\xf0\x9d\x15\x96\x3b\xf6\x02\x20\x6a\xaf\xe8\xd7\x93\x69\x00\x89\x9d\x92\xd3\xe7\x82\x00\xd2\x45\x15\x10\x22\x6f\x01\x9b\x71\x5f\xdd\x4f\x69\x14\x38\xd3\x5f\xeb\xfb\x23\x8f\x91\xe6\x93\xb6\x9a\xfb\x3a\x47\xff\xf6\xc4\x34\x78\x09\x46\x18\x67\xc6\x62\x66\x9c\x6f\xe7\x5f\x2b\xb6\x43\x8b\x59\x87\xb5\x5f\xaf\x36\x5a\x2d\x31\x7e\xf8\x38\xa7\xc1\x7d\xa5\x4f\xbf\x74\x6e\xd3\xc5\xfe\x6f\x67\x0d\x36\x7f\x77\xaa\x6b\x9c\x90\x35\xda\x35\x5f\x71\x61\xd7\x43\xa4\x29\xfb\x42\x68\x35\xf5\x2d\x6a\x33\xae\x25\x89\x52\xeb\x5e\x03\x8b\x4d\xcb\xa7\x8b\x0c\xdb\xa5\x2d\x93\x56\xb8\xce\x57\x37\xbd\xb1\xea\x5a\xa5\xca\x71\xad\xfd\x60\x1d\xbc\x8a\xcb\x90\xaf\xac\xb4\xe9\x58\x0b\x4f\xdb\x5c\xba\x6c\x93\x8e\xb6\x49\x2c\xa7\xe4\x22\x9d\x97\xb3\x45\x61\x92\xa2\x93\xb2\x33\x6d\x2f\x60\x4f\x46\xd0\x66\x64\xd9\xdd\xc7\x8a\x86\x57\x03\x70\x7c\x16\x1d\xa5\x2d\xd8\x98\xff\x2b\x96\x08\x0a\xec\xd6\xdf\xe0\x20\xac\x96\x05\xd8\xf7\x3f\x07\x40\xe5\x09\xc8\x1c\xa2\x06\x08\x4e\x15\x56\x67\x8e\x07\x88\xdd\x23\xfc\xee\x04\x1d\x40\xda\xb8\xb8\xc1\x99\xbb\x00\x39\x5b\xe5\x77\x8b\xee\x06\x38\x4f\xad\x72\x42\x61\x3f\xc8\xe6\x8d\xea\xb8\x1b\x0e\x90\xe6\x32\x64\x4d\x88\xce\x9d\x84\x9b\x31\x1f\x9d\xe2\x23\xcd\x71\x9b\xfc\x4c\x82\x5d\x73\x9b\xd0\x6f\xdc\x6a\xf2\x1e\x56\x7c\x5e\x93\xb1\xe5\x6f\xd7\xae\x9b\x5c\x29\x31\x31\x7b\xfa\xb6\xd9\x85\xe2\x85\x79\xd7\x63\x94\x3d\x37\xda\xbc\x73\xd4\xcd\xcc\xee\xbb\x4b\x03\xea\x66\x82\x65\xeb\xbc\x6f\xed\x72\xdf\x56\x2b\xf3\xc5\xd3\x95\xed\x97\x73\x6c\xac\x96\xcc\x4a\xdf\x37\x23\x6d\x26\x97\x03\x0b\xa7\x6a\x5e\xd9\xdd\x59\x09\x39\x7f\xa4\x3c\xda\xbe\x6b\x55\x35\x7b\xa4\xd8\xc5\x41\x76\x95\x94\xd1\x5d\xc0\x6b\xff\x66\x6d\x25\xe5\xd0\x6f\x1f\x8c\x8e\xc3\x1c\xc6\x2c\x66\x24\xb5\xdb\x11\x85\x69\x8c\x66\x49\xae\x75\x50\xc3\xc6\x87\x4e\x03\x9c\xee\x17\xce\xa3\xad\x03\x10\x29\x13\x4c\xa3\x7b\x0a\xa0\xc2\x2a\xd8\xcb\x70\x0e\x00\x11\x28\x20\xb4\xd7\xf3\x0f\x0e\x82\x91\x8f\x8a\xf1\xc7\x7e\xc0\xc0\x1f\x79\x34\x18\x20\xb9\x46\x60\xec\xb8\x3a\x40\xce\x37\xe1\x2e\xf6\x6b\x00\x85\x4e\x52\xe7\xf8\x33\x00\x4a\x0f\x2a\x72\xc8\x31\x83\x4d\xc9\x63\xcd\x53\xfa\xc6\xe4\x1d\xf9\xd2\x48\x5d\xa7\xfd\x84\xd9\xd4\x74\x3b\x96\x88\x33\xd8\xcc\xa0\x5e\x7f\xcd\x7c\x24\xfa\x8c\xc7\xdd\xac\x9b\x35\xe6\x2b\xab\xf6\x66\x97\xfb\x9a\x35\x96\x2a\x4d\xdb\x5e\xf0\x75\xc4\x7c\xbe\x67\xcc\xf0\x39\xad\x83\xf8\x6c\xcc\xbc\xe6\xab\xc3\xa5\xe8\xa1\x97\x56\xf7\xbe\x39\x34\x7d\xee\xd5\xb5\x59\x9d\x97\xab\x23\xb6\xae\x38\x38\x2c\x1c\xbb\xf0\xb4\x01\xe3\x70\x63\xb1\xbd\xa2\xa3\xaa\xcc\xe9\xce\x52\x58\x19\x7b\x99\x80\x53\xfe\xf2\xfb\x82\x8f\x05\x6f\x9d\xbd\x57\x46\xf2\x78\x73\x3f\x3a\xd3\xaf\xd1\x67\xb4\x64\x14\xb8\x14\xae\x25\xa7\xc5\xa4\x89\xbb\x84\xa2\x39\x92\xfd\x12\x3b\x5d\x4f\xa0\xa7\xe2\x6f\x25\x30\xb9\x72\x62\xf8\x63\x31\x71\x22\x2e\xfd\x98\x3b\x51\xb5\x00\x5c\x76\x42\x16\xdb\x0d\x37\x38\x08\x75\x07\xde\x5b\xbb\xf2\x00\x90\x56\xbc\x0e\x0c\x37\xfe\xcd\x41\xc4\xda\xf2\x04\x1d\x1e\x03\x48\xb7\xe6\x3b\xca\x44\x06\x28\xa2\x15\x38\x7c\x32\x04\xa0\xbc\x5b\xbc\x97\xf7\x3d\x40\x55\xb2\xbc\x88\xec\x36\x70\xaa\x79\xab\x96\xa5\x37\x4c\x82\xf2\x55\x03\x2f\xa7\x44\x42\x65\x9e\x84\xb5\x42\x54\x3c\x76\x6f\xcc\x45\x6f\xa9\x22\x8b\xd5\x2b\xbe\x3b\xd3\xf9\x1b\x67\x96\xb9\x1d\x67\x2e\xf7\xb4\x7f\xfd\x4a\xb2\x78\x3e\x2e\xd8\x93\xf4\xd2\xcb\x72\x72\xf6\xda\xd5\xb5\xa1\x4c\xbb\xcf\x9f\xf3\x3a\x2f\xf7\x84\x38\x7c\x9d\x3b\xd6\x46\x6a\x0d\x73\x16\xfd\xbe\xa9\x49\xa1\xf6\x95\xab\xf9\xbc\x5c\xfd\xc7\x2a\x2a\x57\x8f\x85\x91\x9a\x23\x85\xd4\xa8\x89\x45\x62\x05\x22\xd7\xd1\xfd\xf8\xb2\x68\xf1\xdb\x2c\x57\x54\xd7\x0a\x32\xdf\x3b\xed\x3a\xea\xc9\xaa\x7a\x8e\x6b\x92\x97\x7b\xda\xda\xb6\x4c\x26\x8a\x0f\x26\x6e\x27\xca\x12\xdd\x9c\xf0\x25\x8a\xcb\x5d\x04\x73\x26\x4e\x39\x9c\xc5\x3d\x10\xd3\x1d\xcd\x0a\x70\xae\x84\x7f\x6a\x9b\x32\x80\xd4\x73\x41\x3e\xfa\xd9\x3f\x3c\x08\xab\x5c\xdd\x0c\x3e\x00\xae\xef\x38\x3b\xf7\x72\xfe\xc1\x41\xd8\x71\x6e\x3f\xa8\x02\x90\x87\xe6\x16\x3e\x26\xb5\x91\x13\xd3\x90\x23\x44\x73\x36\x05\xa0\xa9\x46\x3a\x4e\x8a\x15\xf2\x5a\xfc\x94\x1a\xb4\x15\xc9\x8c\x17\x9b\x74\xa4\x1d\x77\x12\x06\xaa\x74\x4c\x07\x22\x05\x31\x5d\x19\xcb\x28\xda\x12\xa7\xef\xd4\xa1\x9a\x71\xfc\x6d\x74\x53\x24\x1f\xba\xfa\xde\xee\xf3\x4f\x2b\xdc\x68\x87\x5b\xae\x9b\x0d\x81\xf3\x89\x19\x81\xfe\xd9\xee\x93\x6e\x34\x9f\x0c\x7b\x0e\x36\x1d\x71\xbf\xf3\x25\xfd\x8a\x6f\xa5\xa7\xd7\xde\xb9\x4b\x6d\x8e\xc5\x66\x5e\x1c\xdf\x27\x1a\xe3\xfe\x4f\x0e\x46\xdf\x9b\x7e\x05\x72\x67\xff\x97\x0f\x86\xc2\xc1\x04\xed\xf3\x1a\xc5\x78\xc5\x0c\x03\xf0\x26\xf1\x21\xb6\xaf\x02\xc8\xce\xf3\xe6\xd1\x5d\xde\xf0\x20\xd8\x54\x9e\xf5\xde\xf5\x12\xc0\x2b\xe8\xac\xc2\x1e\x59\x80\x48\xf7\xd3\x0c\x7b\x5e\x03\x64\x75\xb3\x17\xef\xdb\x0e\x50\x4e\xcb\xee\xb2\xbf\x0a\xa0\xa1\x8f\x6b\x2b\x73\x12\xc0\xa5\x97\x7c\x97\x38\x58\x00\xba\xd7\x44\x4f\x0b\x96\xc2\x78\x1f\xb5\x6c\x8e\x6a\x37\xd9\xf0\xea\x4d\x75\x31\x5b\x15\xc2\xf3\xcb\xcf\x0c\x87\xc2\xdf\x2f\x75\x55\x1d\x73\x38\x51\xc2\x39\x61\x96\x71\x28\x54\xb7\xcd\xf0\x4e\x77\xf4\xc7\xe2\x93\xbd\xe1\x3d\x47\x43\xe0\x3a\x76\x30\xb1\x55\xd1\x7f\xe7\xfb\xd2\xdb\xda\x55\x88\x40\x9d\x8f\x5c\xfd\x5c\x05\xd3\x41\x15\x9f\xf7\x5e\x75\xc8\xa6\x09\xca\xff\x3a\x77\x79\x24\xed\x71\x60\xfd\x77\xc5\xa6\xcc\xc4\x53\x41\x45\xf3\x57\xea\x2d\x7f\xe7\x01\x5d\x0a\x6e\x5b\x24\x57\x4c\x86\x2d\x04\x3e\x5c\xbe\x52\xe4\x11\x1a\x12\x50\xbc\xf2\x38\xef\x19\x85\x83\x09\xe2\xf4\xbf\xb5\x16\x92\xce\x1f\xa8\xe9\x4f\x8d\xde\x95\x62\x10\xb0\xd3\xcf\x18\xdd\x9f\x70\xd9\xcf\xd5\xf7\x35\x26\x3a\x06\x05\xc0\x4d\xe4\xd9\xbc\x8d\xbc\x31\xff\x47\x2c\x9c\xcd\xa3\xdf\x0c\xe0\x78\x93\xbd\x83\x7e\x3b\x40\xc0\xf5\x93\x38\xfa\x13\x00\xc9\xd5\xb4\x88\x1f\xdf\x43\x0a\xef\xb1\x12\x77\xf3\x03\xd4\x03\xcb\xe2\x2e\x61\x80\x8e\xfd\x27\x97\xf7\xbd\x05\xb8\xf6\xed\x9c\x19\xcb\x51\x80\xa1\xdd\x02\xed\xdc\x5f\x00\xee\xf3\x49\x1e\x55\xd8\x4a\xbe\x30\x7c\x45\x71\xda\x42\x06\xaf\x75\xfb\x8d\x8e\x72\x58\xef\xfb\x90\xce\x4a\xab\xd4\x82\xa3\xf7\xee\xd4\xbe\xf2\x43\x34\xdd\x6e\x5d\xcd\xa7\x4e\x2f\xe9\x73\x2c\x9b\xc8\xa8\x68\xbb\x7d\x33\x28\x7b\x34\xe9\xe6\xb3\xa6\xbb\x74\x29\x25\x89\x4e\xd3\xbe\x37\x86\xe2\x5b\x13\x9a\x3e\x65\xf5\x5c\x8b\x65\x89\xd3\xfc\x6a\xde\x61\x1a\x69\x1d\x57\xf8\xed\x5d\xf3\x9d\x70\x62\x0c\xe7\x7c\x65\x7d\x7d\xe8\x85\x98\xa3\x8b\xc7\xab\x9f\x04\xe7\x47\x11\x96\xda\xcb\x94\x02\x65\x23\x71\x2b\xaa\x05\x74\xfe\xc3\x91\xda\xab\x62\xb9\xb4\x14\x0f\x8a\xef\xed\xb0\x81\xb5\xb1\xd4\x30\x9f\xaa\xb0\xad\xe8\xc8\xa4\x6d\x5e\x0f\x43\x55\x31\xae\x31\x18\xcf\xdc\xd0\x4e\xcc\x68\x54\x1d\x80\x68\x09\x6f\xc4\x4e\x4e\x00\x4d\x73\x2e\x16\xba\x8f\x00\xe6\x06\xec\x3e\x3b\xdd\x00\xdc\x73\xd9\xd8\xe9\x98\x00\x22\x1f\x6e\x4d\xff\xb1\xfe\x1c\x59\xa6\xb3\xdb\xb3\x36\xe6\x9e\xed\x97\xd6\xe7\xbf\x91\x9b\x22\x7f\xd4\xe1\x71\x36\xa1\x03\xe1\x00\x63\x7e\xdc\x25\xec\x33\x00\x6f\xb6\x88\x88\x8a\x63\xe1\xf0\x7b\x09\x99\x76\x24\xc3\x5c\xf4\x0b\x07\x0d\xb7\x00\x93\xa7\x1f\x86\xf7\x99\xb6\x67\x25\x5d\x6d\xe9\xe7\xf6\x38\x57\x1b\x54\xbe\xe5\x72\x4a\x02\x4d\xe7\x74\x9a\xe2\xc5\xc5\xc6\x8b\xd7\x75\xa3\x6a\xea\xd7\x1e\xeb\x0d\xde\x0d\x26\xd4\x3c\xfd\x78\xe9\x3a\x6b\x90\x6a\xd9\xcd\x2f\x02\x9d\x57\x03\x0a\x8a\x6e\xcc\x3d\x6b\x53\xf2\xbf\x7d\x5e\xed\xfb\x64\x63\x93\x9f\x53\x8e\xe7\x42\xc3\x85\x93\xbf\xf9\x8f\xe7\x19\x2b\xcb\x92\x25\x5b\x29\xfc\x87\x97\x71\xb2\xc5\x6a\x58\xf6\x55\x8f\x8e\x24\xf3\xb5\xe4\xb4\xfb\xee\xc5\x89\x9b\xd0\x46\x49\xbd\xee\xb4\xf1\x39\xe8\x99\xf8\x87\x6e\xe8\xb8\x9d\x98\xea\xe8\x22\x57\xa9\xd8\x79\xac\x41\xb8\x3b\x80\x8c\x3b\x77\xef\xce\x04\x00\x6d\x2b\x8e\xed\xdb\x3f\x01\xd8\x95\x9e\x38\xb5\x3d\x19\xc0\xef\x1e\x0b\x76\xfb\x95\x8d\x1c\x04\xca\xfd\xf7\xe6\xf5\x79\x70\x7f\xe2\x2f\xfe\x83\x32\xff\x7d\xf3\x69\xc7\xe0\xcf\x39\xf0\x00\xc7\xe5\x23\x9e\x00\x2b\x4a\x02\x67\xf9\xec\xd6\x2a\x57\xcf\x48\x0e\xe9\x08\x4c\x7e\xf8\x9c\xa8\xaa\xe9\xfe\x7a\xc8\x72\xaa\x1a\x39\x9c\xf8\xea\xe2\xca\xf3\xed\x2e\xfa\x65\x16\x99\x1e\x0f\xec\x23\x27\x5b\x65\x22\xde\xdd\xf3\xac\x49\xec\xdc\xea\x43\x1c\x7a\x75\xbf\xef\x6a\xac\x5b\xf9\x60\xf4\xa7\x77\xdd\xed\x6e\x2c\xdd\x5d\x73\xb4\x97\xfc\xdd\x74\xda\xa6\xbf\x8b\x5d\x1c\x74\x7d\xd7\xc8\xb8\x10\x7c\x61\xaf\x6b\x49\x4d\xc2\xd2\xe9\xf2\x00\x57\xee\x4a\xae\x65\xd5\x62\x23\x17\x86\xb2\xc9\x95\x98\xf3\x5e\x2e\x6c\x45\x77\x57\x5d\xb2\xcb\x9d\x51\xf9\xfd\x6b\x7e\x69\x8f\x9d\xfa\xf2\x8c\xd1\x6a\x49\x2d\x2e\xd4\x59\x97\xd1\xee\x49\xbb\x1c\xfd\xb3\xaa\x31\x99\xd1\x37\x1d\xb7\x66\x38\x61\x59\x23\x1c\x1c\xcf\xa5\xb6\x60\x93\x42\x97\x01\x14\xee\x9c\x0d\xd8\x71\x0e\xc0\x58\x93\xed\xc2\xf6\x51\x00\x87\x86\xad\xf5\x54\x7f\xe4\x61\x64\xaf\xaf\xbf\x4e\xec\x57\xed\xa1\xf9\x55\xef\xaf\xe7\x60\xbc\x59\xbf\xff\xbd\xe1\x81\x3f\xae\x44\x77\x12\x3d\x01\xc0\xcb\x7e\x66\x68\xa6\x88\xbc\x57\x22\x5e\x35\xf0\x09\x82\xe0\xa6\x44\xb0\x33\xe8\xf1\x58\x61\x32\x78\x18\xbe\xaf\xe2\xc0\x9c\xb8\x83\x67\xce\x5c\xac\xdd\x4c\x64\xc8\xd0\x85\x62\x3f\xee\x69\xba\xf2\xa9\x8b\x5d\x4e\x93\xef\xd7\x86\x8a\xda\x0e\x59\x2e\x4f\x7d\xfd\xaa\x7d\xa9\xc8\x5a\x68\xf4\xfd\xf7\xb3\x8d\x09\xd6\xec\x43\x6b\x0b\x5d\xd5\x54\x36\xdc\xd7\x95\x97\xe8\xcb\xfa\x6d\x43\x3a\x0f\x2c\x1f\x2c\x16\xb5\x69\xba\x14\xbc\x52\x93\x77\xd8\x96\xba\xa9\x62\x35\x30\xab\xce\xf6\x50\xbd\xc3\x9a\x5a\x1a\xc1\x26\xa2\x86\x80\x96\x4f\x12\xb7\x69\xae\xdc\x83\x9e\x89\x23\x51\x72\x4f\x6c\x3e\x16\xdd\xc7\x7c\x88\x4c\xb0\x39\x50\x98\x82\x75\x0b\x53\xb0\x9a\x28\x38\x85\x3b\x12\xf8\x1c\x40\x3d\xe9\x14\xd7\xb6\x40\x00\x4b\x0c\x33\x07\x0d\x0a\xc0\x67\xfd\x9e\x77\xe2\xfa\xfc\xb7\xdc\xef\x57\xfd\x9d\x87\xa1\xfc\xab\xbe\xf2\x5d\x5f\x3f\xe7\xef\xdf\xfd\xdd\xa9\xa8\x56\x59\x01\x58\x86\xe9\xb9\x67\x36\xc1\x02\x4f\xf3\x99\xa6\xa7\xad\xe4\x6c\xf1\x69\x79\xa9\x41\x41\x62\xb7\x72\x92\x69\x7b\x93\x1b\xde\xc6\xe0\xae\x77\x7c\x9e\x27\xa6\xcc\xce\x2d\xde\x2e\x94\x6f\x75\x6f\x20\xa9\xe0\xb6\xc7\xa9\xe5\xee\x42\xee\x32\x6a\xbb\x8b\x4b\x79\xdd\x81\x95\x72\x26\x25\x0b\xab\x6f\xc9\x35\x80\x34\xfe\x12\xb9\xf0\xaa\x22\xd6\xe8\xf8\x24\xfd\x52\x4b\x51\xa1\x49\xd4\xe3\x7d\xcb\x5e\x05\x36\xa6\x74\x77\xfd\x56\x6e\xe4\x98\x99\x2a\x0f\x96\xad\xce\xa4\xa7\x9a\x9e\xe9\xab\x5d\x1b\x4f\xe6\x30\xdb\xd1\x75\x10\xad\x97\x40\xa6\x78\x2f\xcc\xee\x37\x1b\x61\xd2\xa2\x6a\xcd\x50\x8d\xe2\x58\xde\xb0\x6f\x94\xfc\x13\xb3\xb4\xea\x2a\x1c\x63\xa0\xbb\x19\x5f\x85\x0f\xae\xd6\xb7\x15\xc0\xe0\xf4\xf1\x23\x34\xf5\x00\x76\xeb\x7c\x07\xe5\x39\xc8\xfb\x4a\xf5\x37\x07\xb2\xce\x07\x3c\x67\xa4\xfa\x27\x07\x42\x45\x45\xb5\xf0\x65\xfd\x1e\x3c\x11\x80\x79\x8e\x3e\x79\x8c\x1d\x80\x9b\x97\x9d\xea\x66\x3f\x6c\x17\x03\x09\xbb\xcb\x45\x24\x23\x95\x5a\xc3\xe6\xf2\xdb\x84\x87\x06\xcf\x1c\x4f\xa7\x44\xe3\x1e\xda\x06\x07\xc6\xf8\xb3\x62\xc2\xfd\x95\x13\xae\xb9\xb6\xa0\x0d\xb2\xd2\xd2\x3e\xd8\xd2\xac\x0d\x34\xbc\xcc\xdc\x6a\xb2\xb2\xda\x70\x57\x26\xa7\x57\x5f\x79\xa5\xe4\xfb\xbb\xf3\x27\x74\x0d\x57\x9e\xad\x04\x65\x5d\xd7\xcb\x9b\x55\x5f\xf5\x49\x97\xfc\x9d\xfb\xc1\xff\x04\x83\x46\xc4\x9f\x32\x94\xbb\x5f\x89\xfe\x1a\x13\x65\xf8\xf4\xb6\x05\xc6\x3c\x4a\xc7\xe0\xc6\xe0\x07\xac\x69\x48\xb8\xa1\x51\x9f\x23\xf6\x6e\xd0\x3e\x44\x73\x27\x09\xfb\x21\xb0\x1b\x71\xa0\x3d\x1e\x97\xe6\x8b\x40\x2c\xb7\x3a\xe1\xae\xf8\xf8\x22\x43\x2f\x3a\xe1\xf0\x5e\xcd\x00\x16\xc1\x47\xfb\xb6\x24\x02\x78\xae\x3f\xe7\x29\xa7\xa9\xfe\xe2\x40\xae\x9d\xfe\x7b\xfe\xfd\xf1\xd3\x9f\xeb\x5f\xde\xf4\xf7\xef\xfe\x4f\x97\x00\x98\xcb\xe9\xbb\x6f\xcb\x01\x70\x3f\x3e\x95\xd1\xb9\x1d\xc4\xc5\x1f\x8a\x16\x5f\x98\x24\x9f\x50\x26\x6b\x28\xe7\xb1\x11\x1f\x19\x74\x9b\x57\xc4\xb8\x13\x0c\x6d\xa4\xdd\xe2\xbc\x1c\x70\x83\x3e\x9c\x41\x82\x4e\x2f\x71\x9b\x92\xdc\xc2\x91\x36\xd4\x58\xfb\xd2\xaa\xa8\x5b\x26\x4a\x98\x91\xae\xb2\xd8\x13\x06\x5b\x31\x87\x9e\x26\xc7\x17\x6b\x39\xa1\x1b\x56\x9d\xe2\x67\x28\xfc\x83\xe6\xc5\x05\x2f\xf4\xe7\x48\x8c\x96\xd4\xcc\x37\x4c\x49\x58\x85\xd6\x8b\x57\xa3\x58\xdd\x20\xbc\xf6\xa7\xb1\x00\x6c\x62\x10\xa3\x8e\xe1\xa3\x4d\x38\x6a\x7f\x03\x9d\x5d\xf7\x6c\x71\xa5\xde\x81\xba\x0c\xb7\x36\xe3\x7a\xbd\x56\x75\xb9\x06\x86\xf0\xd4\x9e\xfb\x74\x7d\x7a\x05\xf0\xfe\xa8\xcd\xba\x6d\x5d\xda\xf8\x7e\x17\xf4\xc6\x73\x10\x55\x42\xf5\x17\x07\xd2\xce\xb1\xbe\x0f\x04\xfc\xaa\xef\x63\xff\x6b\xfe\xfb\xb6\x73\x7d\xfe\xb9\xb0\x7e\xff\xd7\x08\x80\xea\x13\x15\x55\xd7\x27\x00\x9e\x7e\x36\x12\xc5\x03\x51\xf4\x9a\xdc\xa4\x1c\xaf\x30\x46\xc9\xc1\x08\xe5\x20\xaa\x59\xdf\xb0\x6d\x43\x8d\x12\x94\x3d\xb2\x51\x1c\xf6\xee\xf8\xd5\x98\x40\x4f\x6a\xcb\x0c\xbc\x57\x5e\xbc\xcf\x90\x71\x03\x8e\xd4\x60\xea\x6f\xa2\x7f\x13\x57\x38\x60\x1d\xb0\xa4\xb5\x88\x93\x1f\x0f\x09\xbc\xaf\xd6\x81\x63\x5c\x9b\x0f\x64\x51\xdb\x87\xd3\xc3\xa6\xfb\xbb\xa8\x34\xe3\x68\x70\xbe\x9e\x8e\xaa\xa7\xe6\x93\x70\x37\xdd\x9f\xa9\xc9\x4e\xc7\xe2\xbe\xb8\x3b\xab\xad\xbd\x29\xc1\xef\x43\x95\xab\x4f\x3f\x5b\xc0\xcb\xb9\xdd\x56\xb7\x7b\xfc\x19\x7f\xcb\x79\xb3\x46\xd0\x83\x33\xf8\x61\x67\x6e\x8d\xb9\x3b\xcc\x84\xad\x8e\x85\x1a\xe4\x9b\x22\x04\x0d\xfb\xe8\x8d\xfd\x80\xe2\x03\x69\x68\xa3\xfa\xcb\x03\xf1\xb7\x0f\x05\x33\xf0\xf7\xfc\xf7\x9f\x39\x00\x5d\x53\x00\xc7\xb5\x76\xc7\x5c\x2c\x00\xe0\x31\x3f\xb1\xbb\x34\x12\x6e\x8b\x75\x71\xd3\x67\xf2\xc3\x3e\x65\x69\x29\xfd\xe8\x6c\xb2\x86\xbe\x80\x7a\x92\xaf\x0f\x49\xc8\xaa\xcf\xf8\x26\x85\x7f\xb0\x49\x25\xca\x87\x1f\xb1\x93\x35\x4f\x25\xbc\x4a\x5b\x73\x5c\x30\xc2\x13\x02\x4a\xc9\x2e\x68\x7d\x6b\x82\xd4\xa5\x0b\xae\x0b\xda\x08\x3c\xf6\xe6\x67\x14\xbb\xfa\x76\x7c\xf7\xeb\x2c\xd4\x65\xe5\x05\x7c\xf7\x6a\xab\x9b\x2e\xc5\xfb\xa0\xb8\x46\x08\xc7\xbf\xb1\xef\xa0\xe4\x5c\x28\x36\x7c\x17\x25\x04\x58\x5b\x29\x15\x7e\x1c\x21\xd8\xda\x78\x2a\xb5\x4d\xf6\x12\x7a\x2d\x5f\x29\x3b\x8e\x87\x13\x86\x2d\x2f\x28\x3f\x1c\x0b\x23\xbc\xb5\x3c\xa9\x34\xf3\x98\x91\x68\x68\xb2\xb6\xc1\x81\x94\x47\xfe\xaa\x7d\xeb\xfc\xdb\xf3\x75\x1f\xc4\xb2\xc8\x8f\x4a\xa8\x5d\xe7\x80\xb2\xd6\xe7\xbf\x55\xeb\xf3\xdf\xf5\xf9\x5e\xfb\xfa\xe7\xa2\x7a\x1a\x80\x4a\x70\xc3\x03\x91\x3b\x08\xaf\xc5\x1d\x38\x69\x12\x1e\x83\xab\xd2\x5e\xe1\x8f\x21\x61\xe4\x47\xba\x75\xf2\x35\x1e\xba\x64\x06\xf3\x30\xad\x71\xfb\x49\x92\xbd\x0b\x23\x32\xde\xf2\x1c\xc9\x38\xf0\x83\x91\x9f\x69\x10\x89\x2a\x7e\x97\x99\x0d\xb2\x8c\xd8\x91\xf3\xd4\xd2\x48\x4f\x87\x98\x72\x21\xd4\x4a\x4d\x8b\x99\x68\xdc\xf9\xc9\xda\x52\x7d\x17\xf1\xec\x50\xbd\x8d\xb0\xf2\x0c\x01\xfd\x9a\xca\xe6\x9b\xe2\x7d\xc2\xc7\x05\x49\x9b\x64\x4a\xde\x85\x5c\x37\x71\x82\xa8\x63\x4c\x23\x9b\x45\x52\x20\x0e\x1a\x74\x53\x72\x2e\x64\xe3\xe6\xab\x88\xdf\xf4\xf5\xe4\x78\x3f\x8d\x10\x5f\x1b\xa8\xcb\x5d\x7b\xaf\x4a\x9c\x34\x08\x92\x47\xbe\x19\x23\x3e\x33\xa4\x07\xc8\xd5\xa6\xfa\x8b\x87\xa2\xf8\x50\xbe\xfc\xca\x85\x5a\xf7\xe1\x7c\x5e\x9f\x63\xbe\x50\x5f\x9f\xff\xa2\xfe\x9e\xff\x52\x3c\x10\x15\x38\x00\x96\x0b\xf4\xf2\xb9\xd7\x00\xce\x36\x1c\xbc\x93\x22\x09\x20\xba\xc0\x7e\x29\x52\x1f\x5a\x14\x3a\xf9\x58\xfd\xa8\x40\x4c\x3b\x49\x7c\xc9\x19\x47\x6e\x31\x29\x52\x0c\xb5\xe1\x27\x33\x3a\x4a\x6b\xd9\x9b\x17\x91\x96\x7c\x22\x74\x9e\x1b\xf7\x91\x86\x22\xf8\xf5\xb9\x11\x36\xa4\xb4\x14\x7e\xc3\xb7\xba\xb3\x24\xbb\x22\x15\xa4\x91\x56\x1b\x89\xb5\xfe\xb6\x71\x97\xda\x20\x89\xbd\xeb\x9c\x51\x9f\x72\x1d\x89\xf6\xce\x73\xe3\x33\x8a\x12\xc4\xcf\x2f\xf3\x8d\x73\xe5\xb9\x89\xf3\xdf\x0e\x1b\x65\xfc\x5f\xdc\x83\x94\x38\xce\x92\xf4\x44\x95\x47\xd2\x64\x89\x81\x4c\xaf\x64\x23\xd5\xff\xf5\x0c\xe9\x96\x1a\xcd\x06\x0f\x75\xdb\xfa\xef\x7d\xe0\xd7\xba\xbe\x35\xfd\x37\x07\xf4\xaf\xf9\xef\x7a\x1f\xce\x17\x01\xb0\x54\xd3\x39\x27\xcf\x03\x70\x8c\xed\x13\x8c\x76\x01\x10\x39\xcc\x9a\x1f\x98\x08\xef\xe4\x23\xce\xcd\xa2\x5e\x40\xae\xa6\x9c\x80\xa3\xfd\x2d\xf2\x8a\x71\xae\x4c\x9d\xa5\x3a\xf9\x92\x75\x91\x02\xce\x24\x8f\x1c\xe3\xf1\x48\xa5\x08\x71\x8f\xec\x15\xcc\xa3\xfa\x56\xdf\x9e\xac\x11\x77\x57\x1d\xb4\xe7\xc9\xbc\x59\xe7\x35\x55\x34\xdd\x49\x73\x65\xb7\x74\x42\x55\xbf\x93\x37\xd7\x93\xb4\x46\x95\x53\x49\x83\xdd\xa1\xba\xae\x8a\xd6\xa4\x92\xa1\x7a\xbd\x60\xf9\x4d\xa4\x82\xe7\x11\xba\xcb\x32\x38\x52\xdb\xac\xb8\x8e\xbc\x34\x8e\x74\x07\x3b\xa5\x05\x52\x38\xf2\x3e\x52\x85\x7a\xf8\x6f\xdf\x03\x0f\xf9\x3e\xd9\x56\x0e\x29\x76\x11\x8e\x91\xaf\x49\xb6\x8a\xb3\x13\x04\xc8\xf9\xd2\x99\x00\xd7\xd6\xfb\x30\xb1\xe7\x57\x25\xa2\x7f\xd4\xc5\xd7\xbf\xd6\xf5\xa6\xe9\xff\x3f\xff\x2d\xb5\xfc\x55\x33\xd6\xff\x4c\xc9\x81\x88\x61\x07\xe0\x08\xdc\xd3\x14\xf2\x0c\x40\x84\x96\x25\x96\xe2\x3f\x70\x41\x40\x8b\xc6\x23\xde\x09\xeb\x2b\x60\x82\xd8\x2a\x72\xf5\xb7\xf7\x60\x88\x4c\x74\x19\x97\x09\x37\x58\x23\x7f\xf6\xc9\x90\x63\xd3\x53\x21\xdf\x0b\x2b\x55\xf0\xd3\x2a\x24\xdf\x4b\x48\x55\xb0\xd3\x38\x4b\x2e\xcd\x61\x57\x9a\x55\xb5\x25\xc7\x95\xb5\x28\x63\x95\xfa\xc9\x81\x0d\xd7\x54\x64\x14\xc3\xc9\x27\xba\x95\x34\x6c\xe5\x58\xc8\xfa\xb7\xb6\xa8\x0a\xc8\x5c\x20\x8b\x3e\x7e\xa0\x46\x27\x6d\x44\x16\x9a\xfc\xa4\xfa\x44\x8a\x81\xac\x37\xb7\xa0\x22\x4e\xe1\x1e\xc4\xbf\x92\x5f\x92\x7d\x65\xc3\x29\x7d\x10\x65\x04\x17\xd8\x2d\xca\xb4\x71\x1e\xfe\xe2\x60\x30\xfc\xff\x7f\x0e\xa8\x79\xee\x1f\x1e\x88\x75\x2e\x24\x7e\xdd\x1f\x11\xb0\xbe\x7f\x04\x65\x01\x9c\x62\xde\x25\xef\x8b\x04\x10\xfc\x78\x94\xd3\x2d\x01\x40\x36\x9d\x2d\xdb\x8e\x17\xd0\x2a\x25\xa7\x7b\xcc\x15\xa0\x46\x6f\x9a\x77\x81\xc2\x3f\x18\xba\x01\xd2\xde\x4e\xd4\x4f\xf7\x03\x20\xdc\x0f\x88\x62\xb5\x96\x00\xe1\xd7\x2e\x26\xa3\x25\x01\x0c\x91\x85\xd2\x59\xea\xc5\x40\x95\x84\x93\x39\xaf\x72\x8d\xbc\x9a\xab\x26\x7b\x4a\x29\x86\x3c\x5e\x9e\x2a\x77\x55\x81\x83\x3c\xdc\xa8\x2e\xcf\x24\xb7\x9b\x7c\xb7\x63\xbb\xdc\xb4\x0c\x92\xdc\x77\x7d\x41\x5e\x48\xca\x8f\x7c\x6d\xd8\x50\xee\x26\xc5\x73\x20\xd1\x44\x6e\xfe\xe0\x2c\x2f\x23\x71\x96\xdc\xb9\xb8\x59\x6e\x9a\xc2\x3d\x88\xda\x82\x19\x50\x89\xae\x50\xbc\x48\x14\x1f\x0e\x25\x17\xeb\x37\x07\xb4\xfe\xf9\x68\x9b\x59\xdf\x07\xd7\xf3\x60\xf2\xae\xae\x73\x30\xdb\x7f\xd5\xd0\x75\x7f\x44\xc8\x0c\xc0\xb1\x06\x5a\x43\xaf\x07\x00\x27\x5d\x76\xce\xa1\xa4\x00\xf8\x07\x0e\x5a\x3a\x8a\x00\x48\x73\x1f\x3f\x6e\xf5\x1d\x40\x85\x9d\xbd\xc7\x18\x09\x6f\xb4\x7d\xce\x0e\x1b\x4a\x40\x1b\x62\x94\x47\x49\xf7\x35\xb4\x5a\x22\x78\xe5\x74\x0f\x42\x80\x2b\xa7\x30\x8b\xd6\x27\x08\xf0\x1c\x13\xb6\xd6\x88\x03\xa7\xa0\x04\x91\x67\xaa\xfd\xe0\x14\x15\x21\xf2\x5d\x65\x06\x4e\xa7\x71\x49\xb6\x2a\x9e\x05\x99\xf3\xac\xe2\x57\xe5\x8d\x41\xb2\x94\x49\xfc\xb2\x1c\x35\x9c\xac\x75\x92\x14\x93\x26\xc3\xfe\xcb\xdb\x24\x5f\x4a\x1d\x85\xfd\x7d\x1e\x92\xc9\x12\x7a\xc0\x3c\x84\x90\xc8\x94\x40\x92\x97\x1e\x27\x4b\xab\x8a\x99\xc2\xf1\x89\x73\x12\x27\xc4\x36\xc1\xd1\x8f\x1f\x24\x8a\x45\x39\x41\x61\xb9\x5c\x2c\xf7\xb7\x07\x03\xbd\x7e\x0e\x0c\xfe\x83\x03\x3a\xf1\xab\xd6\xae\xfb\x71\x0a\xa6\x7f\xd5\x54\xb7\xbf\x39\x98\x08\x13\x80\xa3\x2e\x34\xaa\x8e\xeb\xfc\x9c\x05\x02\x60\xbb\x0a\x15\x95\xfd\x10\x00\xd7\xe6\x3d\x9c\x36\xda\x00\x12\x17\x8e\x1d\x32\xbb\x0b\xa0\x68\x78\xe2\xb0\xe1\x3b\x40\x6b\x3e\xe3\x40\xe8\xe6\xc0\x7b\xfd\xc5\x33\x3d\x3a\xfb\xe0\x85\xc9\xf4\xb9\xfb\x5a\x5d\x70\xdb\xe6\x2e\xb7\xa3\x46\x2c\xf4\xb8\x90\x78\x69\xd4\xf7\x40\xb9\xaf\xab\x00\xad\xca\x66\x68\x0a\x8e\xe7\x7b\xaf\x54\x07\xc9\x71\x9c\x42\xbb\x15\xa9\x20\x28\xcd\x5e\xd8\x4a\xfe\x14\x78\xe7\x51\x0b\x0f\xcb\xb2\x80\x7f\xf1\x92\xb0\x9e\xb4\x13\xd8\xd7\x2a\x8b\x18\x4b\xed\x04\xd3\x96\x6e\x91\x29\xf1\x15\x70\xe8\x2a\x10\xbe\x22\xfe\x02\x24\x6f\xd8\x88\x45\x8a\x29\x81\xd6\xfd\x72\x51\x76\x91\x19\xb0\x1c\x63\x16\xfe\x20\xaa\x07\x52\x53\x3a\x62\xea\xdf\x03\xff\xff\x1c\x50\xdd\xfa\xba\x8a\x7c\xfe\x9b\x83\x09\x14\xfd\x55\xdd\xf8\x7e\x55\x2b\x03\x00\xaa\x2b\x54\x54\x76\xc5\x00\xcc\x03\xb4\x02\xe6\xa5\x00\x1c\x41\x74\x0c\x66\x42\x00\xc2\x4e\x8c\xb4\x08\x5f\x00\xb9\x8f\x4c\xfe\xfa\x86\x00\xea\x01\x27\x9f\x68\x0b\x01\x49\x57\x90\x9d\x4a\x6b\x1f\xac\x20\x5f\x9e\x66\xd1\xe8\x84\x0f\x56\x37\xce\xd1\xab\x4a\x01\xda\xae\xeb\xcc\x01\x95\x16\x98\x70\x0f\xe3\x24\x2a\x35\xc2\x6b\x9f\x29\x4e\x9c\x02\x35\xbc\x0b\xce\xe6\x4c\x95\x97\x84\xdb\xb1\x9b\x78\xd2\x64\xbf\x41\x7b\xaa\x33\x1f\x9f\x54\x24\x8c\x64\x5b\x71\x7b\x4a\xd9\x40\x63\xf1\x07\xbe\x41\x89\x09\x68\xab\x64\xe2\x3b\x2a\x21\x03\xb9\x8d\x53\x02\xfa\x22\x5f\xe0\xda\xa5\x55\x9e\x0c\x91\x3a\xa8\xed\x45\xf0\x79\x8b\x5c\x87\xc4\xdb\x47\x04\x9e\x08\x3f\x87\xa4\x47\xc6\x02\x57\x7e\xfc\xeb\x15\x15\x7e\xec\x0f\xd4\x22\xd2\x3f\x73\x17\x59\x63\xe5\x05\xb6\x4e\x02\x70\x49\x2b\x2c\xed\x4c\x06\x10\x67\x97\x2b\xde\x83\xd9\xe0\x20\x34\xec\x54\x47\x59\x32\xff\xe0\x41\x46\x74\x4a\x39\x87\x00\xcc\xdd\x11\x0b\xc2\x37\x00\x67\xd1\x61\x5e\x28\xc7\x0a\x2d\x16\xab\x0e\x36\x6a\xc5\x20\x6e\xbe\xea\xb3\x68\xc8\x48\x7e\x65\x7a\x2e\x6a\xcc\x4c\x8d\x1c\x82\xa4\xc9\x1e\xb5\xd1\x23\xb5\x1b\xee\xab\x76\x73\x73\x20\x85\xe8\xcc\xb6\x37\xb8\x87\x90\xa8\xb5\x38\x6e\x4e\x79\xe3\x89\x57\xd4\x9f\x3e\xc6\xfa\x45\x13\x4b\x55\x23\xa6\xf2\xfd\x26\x89\x55\xca\x47\xe7\xa7\xfd\x76\x13\x5f\x2b\x36\x60\x3f\x78\x97\x93\x64\x14\x26\x70\x3e\xee\x9d\xd8\x32\x05\x07\xfc\x16\x97\xe9\xef\xf5\x8a\x2f\x71\xaf\xdd\x9e\x4f\xc7\x2a\xbd\xc2\x1f\x74\x9d\x7a\x73\x48\x45\x15\x07\xa8\x53\xcf\xb8\x55\x2e\xe1\xa3\x9d\x9f\x3e\x36\x56\x19\xc5\xdf\x73\x7c\x7f\xf7\x96\x1a\x03\x81\xc6\x21\xee\xb6\xac\xda\x61\x82\x8e\x9d\xc1\x20\x8f\xda\x51\x42\x8d\xf5\xe5\xbe\xb3\x6a\x6f\x08\x8f\xac\x72\x7f\xf4\x41\xfe\xca\x8f\xf5\xef\xf0\x90\xf6\xfa\x51\x4f\x1b\xc9\x57\x6c\xa7\x02\xe0\xcb\x91\x35\xa3\x67\xd8\xe0\x20\x54\x3c\x15\xc5\x8f\xd8\x03\x68\xd3\x2b\x2b\x30\xc7\x01\x20\x8a\xd4\x5a\xd9\xde\x01\x98\x5d\xd7\x7a\xc8\xa9\x0f\x60\x15\x60\x40\x10\xe6\x03\xb0\xd6\x33\x1d\x91\x8d\x87\xf3\xd6\xc9\xb6\x52\x1a\x3c\xc0\x6f\xe9\xe7\x75\xdc\xd0\x96\xdc\x6b\x56\x1d\xe9\x62\xc1\x4b\x3e\x61\x9c\x9d\x75\xd8\x71\x3f\xe9\xbc\x61\x4b\xf5\x2e\xd4\x0d\x12\x8d\xee\xb7\x2b\xed\x3e\xbe\xc4\x76\xad\xfe\xdb\x72\xfe\xec\xc4\x3a\x75\xd7\xb1\x06\xbf\x45\xe2\x09\xd5\x95\x0f\xac\xc1\x3c\xc4\xd3\xca\xc9\xcb\x5f\x82\x74\x88\xf9\x4a\x7c\xd8\x70\x3f\x51\xd2\x11\x45\x0e\x9c\xa4\x27\xf7\xd2\x23\xa5\x83\x38\x47\x8f\xc9\x2f\x3e\x4a\x43\xb8\x7a\xf7\x86\xb7\x72\x2a\x5e\xb8\x2a\x8f\x8a\x71\x7a\xd5\x08\xdc\x5b\xf7\x88\x51\x5e\x35\x2c\x6e\xcd\x3d\x62\x98\x4e\x3d\x01\x2f\xe1\x36\x72\x7b\x9f\x86\x10\x3e\xd5\xe5\xd1\x20\xa8\x7f\xc3\x2f\x3b\x5e\xbb\xd6\xa7\xe1\x43\xe0\x70\xd0\xec\x8e\xd0\x98\x24\x84\xda\xfe\xb4\x63\xc9\x4c\xff\x58\xff\x4e\x1f\x29\x9f\x1f\xf5\x94\x81\x4c\x1f\xad\x36\x80\x50\xad\x8c\xf4\xae\xef\x00\x52\xda\x32\xfb\xf6\x9d\x04\x50\x29\x55\xa8\x3d\x42\xfb\x07\x0f\xb2\x4d\x55\xe7\x54\x3a\x80\x15\xb3\xd6\x3c\x37\x12\xc0\xf6\xb2\x3e\x42\xf8\x00\x2c\xdb\xce\x99\x2e\xca\x3f\x86\x04\x9b\x66\x1b\xa4\xa6\x0a\x6c\xb6\x2e\xf2\xdc\x6b\x54\x4a\x0e\xb2\x3c\x1d\x9e\x64\xb3\x89\x34\x6a\x76\x2e\xbd\xd4\x55\x8c\x64\x8f\x64\xaa\x3c\xe1\x49\xf5\x9b\x0b\xf2\xd6\xd6\xbf\xfd\x3c\xb0\x81\xc8\xa8\xe1\xf2\x3c\x20\x84\x87\x50\xa2\xe6\xf9\x31\x3a\xfc\x22\xc5\x07\x43\x3c\xac\x7c\x14\x73\x3f\xa8\x95\xc2\x03\x7d\x4f\x57\x76\xc0\xce\xf9\xc4\xcc\x20\x55\x02\x70\x27\xbc\x6f\x4c\x54\xa9\x85\xe3\x0e\xfb\x4c\x3c\x55\x55\x77\xc4\xb9\x7b\xb3\x3d\x14\x53\xff\x84\x1b\xf7\x28\x1e\xea\xd2\x68\xc6\xf3\xa2\x82\x6f\x30\x68\x1e\xc5\x47\xb8\xfa\x5e\x3f\xa9\xf9\x12\x5f\xea\x32\x4a\xe1\x81\xda\x8f\x69\x8b\x13\xc4\x1c\xc2\x7e\xf4\x41\x3a\xea\xc7\xfa\xe9\x74\x7e\x71\x10\x1c\x9b\x64\xbe\x6d\xdb\x0d\x20\x3a\x22\xb5\xc8\xa0\xf3\x07\x07\xb1\x53\x7e\xf8\x48\x09\x00\x62\x51\x51\x89\x65\x01\xc0\xcc\x42\xe5\xfd\xa9\x1e\x00\x5b\x2b\x4d\x65\x6e\x56\x00\xc7\x58\xbd\x60\x11\x73\x20\x38\x26\x18\xbf\x91\x77\x86\x48\xfb\x12\x6b\x03\x2d\x25\xf2\x1b\x3b\x2e\xd4\x69\x93\x31\xb2\x98\xf5\xb3\x90\x29\x7b\x24\x29\xdb\x9c\x2e\x43\xce\xfd\x34\x69\xa7\xd1\xa3\x0a\x3e\x9f\x8f\xc4\x10\x03\xd9\xf6\xde\xa0\x03\x84\x39\x1d\xb3\x3b\xcc\x61\x7e\x04\x77\x4d\x91\x97\x21\x91\xf7\x09\xd2\x6a\xb9\x9f\xab\xa2\x62\x09\x16\x2a\x8e\xe8\xbe\x88\xef\x04\xb4\xb2\x19\xa6\x20\x78\x86\xc2\x03\xfd\xd3\x8b\xf3\x9c\x4e\xe3\x08\xb6\xdf\xbf\x6e\xd4\x41\xa3\x10\x77\xda\x57\xfd\xde\x36\xad\x93\x38\x15\x5f\xda\x9b\x29\x5a\xf1\xb8\x41\x2f\xba\x6b\xbd\xda\xc9\x38\xb2\x47\x5b\x0f\x59\x5b\x0b\x6f\xef\xf6\xb4\x3d\x55\xa7\x0d\x7f\xc9\x05\xdf\xfa\x58\xa7\x9f\xb0\xdb\xe9\xd4\x8f\x3e\x48\x31\xff\x58\x3f\x65\xfe\x7f\xa6\x48\x4a\x63\xdb\x9b\x0d\x0e\x42\x9e\x55\x7a\xe9\xc0\x76\x00\x0d\xac\xb4\xdc\xc1\x5c\x00\x63\x71\x39\x6b\x66\x09\x00\xab\x62\xa5\xe9\x53\xd9\x00\x0e\xa0\x66\xce\x19\x0b\xe0\xe2\xa5\xc3\x2a\xf4\x1d\x00\x75\x04\xc9\x2f\xef\x0e\x99\xce\xf9\x16\xcf\x35\x93\xc8\x37\x1c\x7a\x9c\x93\xcd\x98\x48\xcb\x76\x12\xc1\x8c\x4e\x2b\x24\x6d\x8b\xcb\xe9\xb4\x5e\x67\x88\x71\x26\x76\x15\xab\x41\x8a\xbf\x7d\x41\x61\xba\x32\x77\x5a\xa3\x78\xf1\x6b\x9a\xef\x26\xae\xc4\x46\xe3\xaf\xab\x2d\xcd\xc5\xc5\x21\xf0\x3d\xaa\xfe\x6b\xa3\xb1\x38\x0a\x0f\x34\x97\xa0\xba\x88\xb1\x08\x8b\x9c\x16\x52\x6b\xc6\xbc\x0f\x61\x98\xa8\xd3\xa8\xc2\xbc\x0a\x21\x3f\x09\xd4\x7c\x80\x95\x0f\x3e\x36\xec\xa0\x65\x8b\x9d\xf4\xbf\x7c\xeb\x9a\x76\x09\x8e\xc9\x2f\xba\xff\xa1\x8e\x31\xce\xd1\x67\xba\x97\x5e\xa7\x04\x37\xe5\xf9\xac\x3d\x40\x77\x0d\x2f\xe9\x5e\xd8\x36\xa7\x27\x8f\x77\x43\x19\x35\xd6\xea\xd7\xe1\xeb\x5c\x7f\xbc\x25\x74\x4b\xfa\xfe\xe4\xc4\x46\x65\x3e\xd3\x48\xfc\x07\x07\xf1\x49\xf2\xc8\x7e\x3a\x00\xbd\x28\x89\xcf\x07\x33\x36\x78\x10\xdb\x66\x05\x5e\xb6\x3d\x00\x2e\x49\x6a\x82\xdc\x27\x01\xdc\xe7\xb4\x0c\x85\x99\x7e\xe7\x06\xa5\xa0\xd2\xcd\xf5\xb5\x6c\xc8\x8d\x4e\xf5\x8e\x6d\xe6\x41\xa4\x59\xfb\xe0\x00\xac\xb3\x2f\x69\xa7\xd5\x83\x94\x52\x5f\x5a\xa2\x92\x69\x74\xc5\x89\x90\x56\x42\x0a\xe2\x51\x3b\x3e\x2a\x17\xbf\xac\x77\xe4\x2e\x39\x2e\x1a\xef\xa8\xc5\x3e\x29\x9a\x98\x87\x5b\x55\xd7\x5a\x0c\x4b\xbe\xfd\x4f\x1e\x68\x16\xad\x3e\x86\xce\x88\x8e\x7b\xb3\x4f\xf3\x24\x86\x2f\x62\xe8\xb7\x17\xc7\x5b\x1b\x30\x6f\xc2\x18\x87\xec\x74\x5e\x61\x95\x82\xf1\x03\xcd\xba\x81\xd8\xdb\x81\xdc\x3d\x0f\xf4\xce\xe2\xa4\xfc\x9c\x3a\xf7\xe9\xa5\xe2\x2e\x79\x27\x51\x78\xa0\x66\x1b\x83\x73\x78\x36\x8f\x9b\x75\xaa\x86\x4c\xf8\x14\xd4\x36\x80\x2d\xc6\x12\xa2\x3f\xfa\x70\xbc\x40\x7a\x75\x2b\x37\x00\xef\x43\x71\xd8\xd9\x0d\x20\xce\x20\xbe\x89\x61\x1b\x80\xb2\xae\x98\xc3\xde\x01\x00\x03\x35\x71\x1d\xc6\x59\x00\x0b\x7f\x99\xcf\xcc\x63\x00\x8e\x4d\x72\x83\x6c\x7c\x00\xa8\x30\xe5\x5d\xe7\x2e\x03\x78\x77\x69\xec\x15\x3a\x02\xe0\x97\xaa\x5f\x2c\xdf\x0d\xc9\x5e\x61\xa6\x75\x5a\x0f\xc8\x25\x6e\xa3\x0e\x0c\x16\xd7\x49\x37\x1d\xf3\xfd\x8e\xba\xd2\x11\xa7\x6d\x98\x93\x30\x7e\x4d\x04\x8c\xf9\xd6\xb2\xba\xf0\x44\x3c\x09\xd9\x75\xc5\x27\x7e\x07\x3e\x5e\xcf\xef\x3e\x39\xb1\x01\xd7\xa9\xd5\xf2\xee\x44\x9a\x36\x4e\x5e\xbd\x63\xa5\x3b\x43\xe6\x9f\x3c\xd0\xff\xe5\xc5\xe9\x1f\xd1\xb7\xc2\x2c\x86\xe5\xf4\xc6\xe9\x7f\xc5\xea\x87\x84\x77\xba\x1b\x24\x63\xef\x06\xbe\x6e\x55\x40\xb0\xe0\x98\x02\xf6\x5e\xf4\x44\xd0\xe0\xda\x7c\xd4\xea\x5f\x20\x6c\x71\x1f\xbd\xbe\x5d\x40\x22\xaa\xf1\xb2\x1e\x1e\x00\x5b\x8c\xc4\x46\x7f\xf2\x93\x2a\x92\x6f\x69\xd8\x00\xf8\x76\x88\x2e\xee\x0c\x00\x90\x4a\x12\x3b\xc9\xe0\xf2\x07\x07\x71\x4e\xcc\x8b\x71\x18\xc0\x5a\x47\xbc\xf0\x28\x2d\x80\xab\x80\xb4\x0c\xeb\x14\x80\x8f\xbb\x7c\xe2\x59\x06\x80\x80\x46\x55\x25\x81\x27\xbf\x73\x83\x72\xfc\x8f\x1b\x9b\x68\x45\x92\x53\x3d\xf3\xec\x3a\xac\xa8\x48\xfe\x2e\xc9\xde\xea\xee\xe9\xc4\x0c\x3b\xef\x84\xc2\xa0\x1d\x84\x38\xcb\xcd\x25\x6b\xd1\x11\xbf\x7d\x41\x0f\xf5\x6b\x87\xaf\xa5\x3d\xc4\x1d\xd0\x56\x7e\x7f\x3b\x4b\x0f\xfb\x4c\x03\xb1\x72\x24\x9b\x6a\x2d\x40\xfd\xc2\xaa\x57\xaa\xe0\xec\xa2\xe6\xfb\xd5\x99\x14\xce\x37\x3c\xda\xe1\x6b\x91\x89\xf0\xb8\x48\xb7\x6b\x0d\x9d\x10\x71\xdf\x58\x2f\x10\x7d\x3d\xe6\xe9\x0d\x1e\x83\x1e\xf4\xa3\xd8\x03\x7d\x12\x86\xcf\x31\xc2\xd1\xe7\xba\xd4\x0c\xf1\x18\x74\xf8\x8e\xb6\x57\x48\x36\xac\x47\x48\xf2\xc5\x73\x48\x05\x9c\xb8\x7f\x66\xdd\x02\x72\x1e\xe7\xe6\xe7\x56\x55\x6b\x7c\x0e\x77\xc9\xe7\x69\x79\xb7\xb1\x3f\x8e\xf8\xe3\xed\x97\x26\x5f\xec\xe4\xcf\x73\x22\x56\x3c\x9c\xe6\x09\x80\xe0\xb8\xc8\x28\x1d\x01\x40\x26\x42\xf4\x00\x83\xf6\x06\x07\x61\xac\x2b\x7c\xf5\x40\x39\x80\xbd\xba\x48\xd6\xe1\x5c\x00\x0f\x36\x89\x85\xe3\xaf\x01\xfc\x7b\x65\xde\x9f\x16\x00\x08\xe9\x52\x4e\x11\xf0\x01\x08\xcf\xd7\x3a\x2e\x93\x07\x79\xa1\x49\x88\x2e\xad\x47\xe4\x18\x3f\x67\x9b\x36\xab\x77\x24\x55\x54\x17\xaa\xcf\x53\x9e\x28\xed\x70\x2b\x16\x1b\xba\x05\xbf\x64\x35\x58\x92\x9b\xc0\x85\x3f\x68\xb2\xa3\xa3\x28\x75\x04\x77\xd0\xc0\xf1\x61\x6e\xb6\xe5\x6f\x4f\x90\xad\x06\x6e\x39\x28\xb7\x67\x5e\x59\x8b\x66\xc5\x36\x2b\xff\x37\x0f\xb4\x59\xcf\x6e\xf5\x42\xda\x8d\xe1\x1d\x06\x8c\x6b\x39\x49\xa4\x1b\xa1\x08\xf6\xb5\xe9\x44\x62\xdf\x36\x04\x01\x5d\x12\x57\xd8\x25\x8d\x1c\xc4\xd0\xc7\x78\xb5\xe5\x19\xb9\x62\xde\x46\xec\xba\xf8\xd2\xd8\x1b\xcb\x19\x16\x52\x5b\x6a\xc2\x82\xbd\x1a\xac\x59\xa5\x6e\xb2\x84\xa3\x0f\xd4\xaf\x08\x36\xe1\xc3\x95\xfa\x46\x95\x32\x98\xd4\xe2\xbe\x7b\x3b\x00\x30\x1d\x92\x9a\xa0\x8e\x06\x38\x75\x49\x34\x8f\xa6\xed\x3f\x38\x88\x1e\x61\xf6\xbd\x8f\x00\xcc\xee\x0a\x31\x1d\xd0\x01\x70\x04\xd1\x73\x47\x3e\xfe\x9b\x07\x89\x7c\xac\xe0\xc3\x17\x00\x10\x33\xa0\x51\x20\x2b\x06\x8d\x51\x9f\xf4\xef\x68\x9a\x92\x6b\x42\xae\x5a\x60\x2c\x55\x49\x3b\x3c\xca\x50\x45\x3e\xb4\x84\x27\xce\x13\x51\xf1\x11\x93\xf8\x34\x9b\x9c\xa2\xe2\x64\x11\x9c\x8d\xa9\x47\xc7\xdb\xac\x2a\x6c\x82\x41\xfa\x68\x60\x5e\x1f\xc6\x41\xdb\x77\x2e\xb7\xa8\x09\x23\xa3\xd9\xba\xf4\x31\x9f\xed\x63\x97\x4e\xfb\x72\x5e\x5e\x0b\x85\x07\xa2\x78\x71\x28\x3c\xd0\x75\x19\x23\xe9\x35\xb7\x94\x56\x8a\x17\xa7\xcd\xcf\x94\x1f\xed\x9f\x70\xae\x71\xd6\x14\x8b\x61\x89\x79\x51\xf7\xd4\x34\x10\xf3\x2d\x42\xa3\xba\xce\x74\x0a\xeb\x13\x2a\x55\xa6\x60\xf6\x15\x3b\x1d\xd4\x58\xcc\x65\xf6\x09\x67\xe5\x1f\x51\xd0\x67\x36\x8e\xbb\xe1\x33\x09\xc0\x74\x52\x32\x92\xda\x07\x80\x43\x4f\x38\x97\xf6\xf0\x1f\x1c\xc4\x55\x11\xa1\x3d\x74\xff\xe6\x20\x5c\x27\x04\x50\x07\xfb\x00\x02\x1e\x09\x6f\x66\x42\x01\x44\x76\x4a\x1e\xe0\x30\xfe\x83\x8b\xa9\x57\xdd\x24\x39\x0b\xad\x09\xd1\xba\x71\x9a\xa7\xc8\xa9\x91\x33\xe6\xa6\x56\x1f\x88\x33\xfe\x1e\x2e\xc3\x7e\x54\x84\x10\x37\xc9\xf0\xb7\xd1\xfd\xb8\xe7\xf6\x47\x0b\xfa\x33\xac\xb0\x97\xcc\xf7\x74\xec\x3a\x4f\x83\xc9\x37\x0c\x7b\x82\x2c\xde\x8a\x96\xd0\x26\x2c\x38\x57\xf8\xcf\x2b\xeb\x04\x2d\x3e\x2f\xfe\x3e\x85\xd7\x83\xa5\xb5\x82\x0e\x0a\x0f\x74\xb7\x1e\xf9\x64\xc5\x33\x97\x7f\x00\x65\x34\xb8\x5a\x99\x61\xf9\xaf\x7c\x28\x0a\x0f\x84\x30\x57\xc6\xb0\xc5\x2c\x54\xcc\x5a\xb4\x60\x9a\xa3\x78\x4a\x07\x2c\x86\xb0\xfc\xe1\xec\x85\xed\x16\xb3\xd8\x67\xc1\x0a\xe7\x2f\x5b\xc6\xe0\xf6\x07\xf6\xe6\x4e\x59\x8a\xe0\x42\xfc\x19\x00\x98\x69\xc5\x48\xd4\x57\x00\xce\x36\x0a\x8e\x6c\xe3\xfc\xc3\x83\xc0\x2e\xc8\xc8\x40\x03\x80\xf4\xe7\xcb\xde\x93\x06\x60\x77\x93\x3f\xed\x80\x12\x80\x67\x0d\x3f\xfa\x50\x02\x40\x48\x82\x10\x2b\x53\x16\x40\xcc\x8c\x98\x10\xdb\x38\x40\x8a\xa8\x34\x35\xf7\x61\x80\x34\x7b\x65\x33\xc9\x56\xb8\x9b\x9e\xa7\xb5\x4d\x9d\x97\x5c\x93\xc8\x62\x3c\x64\xd9\x42\x9c\x0b\x93\x70\xb4\xf1\xdb\x8a\xbf\xef\xc9\x1c\x62\x94\x28\x8f\x8b\x76\x20\x9f\x67\xce\x2a\xc3\x3c\xb2\x40\x75\x8c\x17\x9f\x46\x23\x11\x66\xcf\x72\x2a\x11\x6b\x97\x74\x7a\xe7\x6b\xaa\x0f\xce\xb4\x1a\x1c\x5e\x70\xab\xac\xa3\xf0\x40\x77\xa7\x4d\x2a\x96\xb8\x4a\x55\x07\x4e\x9b\x56\x2c\x37\xe5\x93\xba\xbf\x98\x4d\xac\x14\xe4\x26\xb5\xe1\x2d\x78\x57\x8b\x32\x03\x28\xf9\x50\x35\x65\x56\x31\xe8\xad\xc9\xe7\x2a\x8c\xad\x7a\xd1\x0f\xe3\x25\x4b\x1d\xac\xac\x30\xa9\xd1\xcc\x85\x06\xd6\xfb\x31\xc4\x88\x8b\xb9\xf7\x6d\x24\xb1\x7a\x61\xa3\xd9\x75\xd6\xa5\xd8\xc5\xa0\x77\x59\x7c\xd6\xa7\x70\xc6\x01\x27\x00\xf6\x59\x0b\xbe\xff\xb1\x3f\x70\x79\x0b\x5e\xdb\x2e\x0f\x20\x49\x12\xaa\xde\xe5\x07\xa0\xc5\x25\x48\xbb\xe7\x10\x80\xb1\x3c\xef\xd5\x3d\xe6\xff\xe1\x83\x38\xcc\x3b\x7a\xe4\x0a\x40\x72\x8e\xe0\x17\xd6\x02\x80\x4c\x2f\xc9\xb2\x1f\x7d\xc8\x3d\x2d\x5f\x2d\x56\x05\x0f\x73\x3a\x35\x78\xd4\xde\x93\x5b\xd2\x1f\x23\xe6\x2d\xf9\x89\xcf\x63\xeb\xec\xd4\xfc\xf7\xe0\x85\x7d\x27\xfc\x6c\x53\x8d\xb1\x89\x2e\xb5\xd9\xb7\xf3\xef\xa0\xaf\x58\xb9\x77\x84\x55\xac\xad\x51\x21\x4d\xc7\x85\xea\x5c\xe7\xe2\x0d\x3a\xbf\x0d\x37\x64\xbe\xec\x30\x2a\x9a\x97\xad\x55\x19\x8e\x35\xbd\xb0\x90\x5b\xf5\x78\xc0\xd9\x7c\x79\xf1\x49\xf9\xd1\x7f\x7a\x71\xea\xe3\x6c\x6c\x56\xb7\xe7\x44\x54\xad\xd8\x60\xd7\xb6\x65\x9c\x2b\xab\xb7\xa3\x5d\xf3\x4e\xb3\x2a\x12\xb6\xdb\x8d\x76\x4b\xcc\xc9\x2b\xb4\x7b\x8f\x86\xb8\xb2\xcc\x44\xfb\x27\x98\xa2\x68\x8b\x4c\x46\x3b\x34\x96\x2e\xa2\x29\x6d\x93\x5d\x3d\xb6\x2f\xc4\x3b\x91\xc3\xfe\x2a\xee\x5c\x60\x13\x00\x8b\xb4\xc8\x8b\x2d\xfb\x01\x78\x3e\xf2\xdf\xdd\xbe\x08\x20\x35\xcd\xaf\x4f\x47\x04\xd0\x6e\xe4\x3b\xbc\xbb\x02\xc0\xfc\x2e\x37\x17\x43\xca\x46\x1e\x04\x85\x83\x48\xf0\xe7\xe6\x3e\x7c\x12\x20\x4b\x82\x8f\x99\xb9\x03\xa0\xe0\x9b\xd0\x22\xc7\x69\x80\x92\x62\x69\xb2\xc8\x5e\x98\x2c\xbd\xa2\x12\xa6\xea\x46\x6e\x2f\x18\xd2\x17\xb4\x78\x4f\x9c\x48\x37\xb7\x24\xfb\x11\x71\xcf\x43\xd1\x5e\xb1\x19\x62\x18\x1f\xf7\x99\x74\x87\xd2\x8f\x8b\x86\x76\xab\x6d\x9f\xeb\xa4\x3f\x39\x9b\xfb\x3c\xed\x6f\xce\x7c\xe5\x6d\xca\x39\xc7\xd0\xea\xf3\x80\xde\xe2\xdd\x37\xbf\xa6\xa0\xeb\x09\xd6\x98\x79\x86\x7a\x54\x7b\xbe\x5d\xd6\x82\x7d\xcd\xd5\x8b\xaf\x1d\x18\x16\xab\x2a\x5e\xd7\x30\x38\x72\x2d\x9f\x2c\x2e\x2a\xef\x74\xb8\xbb\x52\x90\x37\x51\x34\xec\xb4\x77\xf5\x68\xce\xf0\x79\x4e\xc7\xa5\x35\x44\xba\x42\x96\xbc\xb3\xcf\x5a\x4f\x6a\x5c\x1a\xce\x39\x10\x1d\x94\x78\x2b\xc5\xc4\x09\x8d\x51\x8a\x45\x25\x05\x3a\x65\x61\xc6\xa2\x24\x63\xf3\x9c\xa3\xb1\x0e\x61\x13\x31\xe2\x4e\x6f\xb1\xef\x83\xaf\x01\xb0\xd6\x09\xb4\x6c\x69\x07\xe0\xbb\xcd\x47\xbd\x43\xfc\x0f\x0f\x82\x22\x57\xf9\x2e\x11\x00\x7b\x7b\xae\xa1\x3d\x7d\x00\xde\xb3\xa7\xe7\x7e\x9c\xa3\x31\xd6\x1c\xc3\x7b\xf7\x00\xa4\xb7\x70\x74\xec\xbb\x0a\x50\x28\xca\x95\x71\xec\x28\x40\x15\x81\x8f\xed\xc4\x0a\x40\x5d\x9c\xc4\x5d\xa1\x26\x80\x86\x32\xf9\x05\x25\x3e\xf2\x6a\xcd\x65\xcd\x41\x93\x3a\xe2\x54\x31\x93\xc9\x98\xdf\x45\x5c\x70\xd2\x45\xb7\x53\x59\x23\x9f\x16\x02\x57\x63\x1b\xaa\xcb\x5e\x79\x7b\xce\x5f\x50\x6b\x12\x1a\x4d\x70\x5e\xbe\xd3\x7f\xf9\xfc\x9d\x07\x76\x81\x9f\xd3\x3b\x3b\xae\xd6\x39\x26\x7f\x9d\xb8\xd4\xde\x12\xed\xc2\xf3\x2d\xad\xb9\xe0\xc2\x90\x6b\xda\x7c\x48\xbd\x74\xd9\x01\xb7\x85\x05\xa8\x2e\xc9\x1f\x45\x91\x96\x14\xcb\x4d\x28\x3e\x98\x8c\x01\xd4\xfb\x95\xce\xbc\xef\xa9\x54\xa8\xa7\xab\x03\x59\x36\x89\xdf\x51\x8f\xd6\x52\xd2\x1a\x63\x75\xdd\x93\xd0\xda\x49\xef\xa2\xaa\x3c\xe8\xd1\x97\x13\xde\x44\x3c\x71\xb7\xc0\x38\xc4\x60\x22\x52\x51\x4a\x98\x4f\x91\xc4\x60\x05\x77\x24\x36\x35\x8c\x01\x80\x9d\x97\xdf\x83\x46\x0c\x40\xe8\x13\xaf\xe1\x8e\x0b\x00\x2a\xe3\x5c\x68\xba\x5c\x00\xd3\x3b\x67\x85\xe9\xb3\x36\x3c\x08\x21\x6f\x4f\xa0\xe9\x46\x00\x52\xc6\xb6\x55\xfc\xf8\x1c\x15\x5c\x62\x95\xde\xa5\x03\x50\x75\x8f\xfd\xfc\x8f\x73\xa4\x65\x99\x8b\x81\x25\x02\xe0\xf2\x65\xa1\x46\xee\xa3\x00\x9d\xd4\xd2\x1c\xb2\xba\xb0\xb7\xc3\x50\xa5\xd7\x48\x87\xf8\xae\x49\xc8\xe0\xae\xdf\xf1\xaf\x07\x4a\xc2\xec\x13\x33\xe2\xc7\xc6\x53\x22\x82\x13\x6a\xf6\xde\x8c\x89\x34\x28\x10\x69\xa3\xeb\x32\x0c\x92\xeb\xd5\xe9\x54\x69\x3e\xe7\x73\x7d\x92\xa6\xc7\xaf\xba\xdb\x27\xf7\x73\x6f\x57\x6d\x11\x83\x9f\xf8\x1c\xf7\xa5\xe5\x9c\x1e\x3f\xd3\xef\x61\x17\x1f\xa4\xbf\xf5\xbb\x32\x4f\xaa\x33\x4e\x8e\xf1\xd3\x5b\x1c\xac\xcc\x48\x60\xf3\xdb\xb6\x4c\x53\xb2\x12\x4d\xf4\xf3\x59\xd9\x53\x30\x13\x71\xcf\xef\xc0\xaa\x50\xee\x9e\x90\x36\xff\x13\xab\xa3\x59\x96\x21\x58\x9f\xe7\x6b\x6f\x52\xd5\x82\xce\xf8\x22\xd1\x86\x49\xd3\x01\x67\x7d\x9e\x61\x68\xe3\x99\xfc\xef\x7b\x5f\xc2\xe4\x47\x2f\xfb\x76\x7a\xf5\x61\xed\xc2\x77\x03\x70\x1e\xe0\x0d\xdb\xc6\x0a\x20\x65\xc4\xf5\x6c\xc7\x2d\x00\xad\xe0\x33\xe1\x3b\x0f\x02\x58\x15\x9c\xe2\xd9\x49\x07\xe0\xf5\x91\x35\x63\x47\x3a\x40\x74\xf4\xa6\xe8\x1f\xeb\x3f\x9f\x7c\x74\x6c\x9b\x04\x40\xe5\x18\x55\xf7\xcf\x7b\x9f\xc1\x2c\xf4\xf4\x99\x00\x3d\xcf\xd8\x54\xf6\x3f\x04\x18\x1c\xe7\xc6\x9c\x0a\x06\x18\x9a\x11\x4d\x14\xb3\x01\x8d\x3b\x7b\xe4\x9d\x0d\xf6\x2c\x19\x5d\x3f\xa3\x1d\xe8\xe5\xf1\xea\x62\x9b\x89\xe5\xb3\x94\xca\x5b\xbe\x55\x19\x3e\x45\x15\x4e\x4d\x6e\x39\xb9\x29\xdf\x2e\x1d\x29\xd1\x4d\xb5\x6d\xe6\xed\x8e\xcf\xbc\x13\x7f\x63\x74\xb5\xef\x43\x52\x7f\x0c\x7a\xb6\xa7\x2f\x29\x2e\x22\x26\xfb\x2b\xed\x15\xce\x68\xa9\xe8\xcd\xdf\xde\x35\x3f\x8c\xb4\x88\xfc\x36\x1f\xd1\xb0\x3f\x6c\x38\x52\x72\x11\x51\xcd\x46\xc9\xc1\x09\x2e\x09\xf3\x5c\xa1\x2a\x14\x0f\x74\x09\xb5\x5f\x45\xe5\x9c\x0e\x10\x0a\x35\x5b\xdb\x92\xe9\xe6\xaf\x18\x72\x74\xed\x66\xea\x13\xdf\xd6\x60\x55\x74\x6d\xa2\xb8\xb7\x46\xf0\x22\x26\x2c\x26\xcd\xfb\x5c\x60\x2e\x96\x2a\x32\xca\x13\x1b\x28\x89\x8d\x0e\xb3\x05\xe0\x79\xcf\x5d\xb1\x0d\x00\xe4\x3e\x9c\xf5\xd9\x3e\x03\x60\x90\xc6\x36\xb0\x5d\x13\xc0\xd1\x95\x09\x4d\xf3\x7e\x23\x07\x21\x0d\xf7\xab\x96\xf9\x50\xfd\x75\xef\xf5\x9a\xf7\xaf\x7a\xcf\x8d\x29\x8b\xce\x1c\xe0\xf1\x55\x0e\xed\x23\x12\x00\x13\xa6\xfc\xea\xdc\xd3\x38\xe2\x2b\x39\x29\x56\x8d\x90\x69\xb6\x91\x5e\xf5\x3d\x2e\x4d\x0f\x35\x6f\xdd\x32\x89\x8f\xcd\xe8\xf8\x7a\xb5\x17\xd5\x58\xa4\x5c\xec\xd4\xb2\x35\xf6\xf6\x45\xe3\x64\xa3\xba\xd7\xb5\x5f\xda\xad\x22\x1a\x6a\xa6\x87\x8f\x76\xb6\x05\x9e\xac\xc4\x7f\xc6\x74\xf1\xfa\x3f\x2a\x41\xcd\xbd\x6a\xe3\xf2\x43\x14\xc4\xce\x9f\x6a\x18\xf2\x6d\xc8\xa3\x5b\xa8\xbf\x70\xd4\x47\x39\xcb\x7f\x29\xb3\x2c\xdd\x3b\x22\xfd\xea\xf2\xcd\x42\x82\xd7\xf5\xd4\x0b\x2b\x5d\xe7\xf7\xff\xe6\x3f\x18\x13\x17\xd6\xe6\x52\xde\xbb\xb7\x24\x28\xa1\x03\x92\x0e\xbb\xcb\xc5\x6d\xc3\x1c\x8d\xab\x46\xd1\xc5\x22\x30\xd7\xa2\xb7\xba\x89\x45\x17\x63\x2d\xc3\x79\x5d\x96\x23\x6f\xe2\x4e\x04\x09\x02\x08\x7c\x3a\x17\xbb\xcd\x0e\x40\xb5\x9f\xed\x24\xed\x20\x80\xf9\x23\x16\x6a\x9a\xa7\x00\xee\xc1\xbf\xd6\x47\xc9\x41\xa0\x78\x10\x28\x3e\x8c\xde\xf5\xfe\x50\x72\x41\x26\x12\xa8\x7e\x7e\x5f\xfb\x28\xcd\xd2\xb5\xcb\x09\x60\x69\x3f\x57\x26\x5b\xe6\x5c\xda\x17\x94\x58\x8d\xc2\x85\x17\x07\xdf\x7e\x55\x8e\xb0\x39\x38\x20\x39\x5e\x84\x90\x0e\x89\xab\x43\x8e\xbc\x75\x3a\x9f\xe5\x97\x26\x36\x14\x1d\x3e\x51\x6d\x17\xa6\x7e\xd3\xae\x92\xad\x71\xb7\xb7\xc5\xe0\x99\xdb\x57\x5a\x98\x9d\x0d\xfb\x93\xe7\xa4\xda\xea\x9c\xb5\x3a\xbf\x7c\x1f\x6c\xc0\x38\x67\xb4\x8a\x2e\xb4\xd5\x70\x39\x47\x36\xf0\x2e\xe9\x94\xf5\x39\x67\x55\xf7\x2e\x57\x17\x4e\x3a\xd3\x55\x6c\x5d\x79\x92\xb7\xcf\x49\xa1\x94\x6f\xf5\x7d\xa6\xad\x93\x4a\x41\xe9\xda\x78\xca\x5b\xa7\x9e\x3c\x53\xb4\x7a\xd2\x45\x47\x89\x5c\x7b\x0c\x7b\xdc\x16\x87\xb5\xcc\x18\x0c\x26\xd2\xda\x01\x95\x3e\x82\x0d\x08\x33\xb4\x27\xa6\x62\xb1\xdf\x82\x1d\xed\xf3\x93\x89\x38\xcb\x00\x37\x00\xc9\x31\xf6\x3e\xda\x02\x00\x6d\x3b\xa6\xbb\x5b\x96\x00\x6c\x3f\x6f\x72\xa1\xfa\x8f\x3c\x0c\x4a\x2e\x4a\xf7\xf4\xaf\x4a\xc9\x83\xa0\x70\x10\x73\xf5\xbf\x2a\xf9\xc8\x11\x87\x2d\xf4\xcb\x99\x00\x67\x82\x8f\x65\xbe\xa5\xc1\x7b\x0a\x5f\x10\x97\xbd\x4f\x5a\xa6\x53\x70\x43\xfa\x77\xa4\x7f\xcd\xd2\x5b\xf5\xbc\x57\xfc\x75\x86\xc1\x2e\x30\xfe\x7e\x14\xd7\x9b\xf1\xe0\x43\x85\x2e\xde\x0b\xaf\x11\xa5\x62\xe5\xd7\x1c\x73\x5e\x1d\xbe\x71\xa8\x7a\xd6\xa2\x7f\x62\xeb\xec\x54\x6d\x8c\xc5\x96\x51\xda\x05\x62\x65\x81\x25\xdb\xed\xf1\xa5\xc0\x92\xc7\x96\x97\xae\xe5\x2e\x7f\xce\xcf\xb3\xca\xe9\x4c\x5a\x19\xcf\xc1\x5b\x65\x5f\x92\x5c\x9d\xcb\x30\xb0\x66\x6b\x24\xae\x3d\x4e\x91\xb4\x62\xa9\x6b\x44\x7f\x8f\x0b\xb3\x4e\xaf\xca\xc7\xb0\xc5\x26\x58\x19\x56\x28\x62\x19\x22\x78\x2c\xef\x95\x3e\xc1\x36\x85\x84\x5a\x0d\x17\x79\x63\xef\x05\x4f\x59\xf6\x14\x70\xe2\xa2\xfc\x77\x5b\x9e\xcb\x97\xc7\x3d\xf1\x79\x06\xa0\xc4\xc7\x7c\x7e\x4b\x2f\x80\x99\xd9\x31\xb7\x2d\x0b\x1b\xcf\x01\x85\x07\x2a\x0b\xfe\x7b\xfe\x3d\xb4\xfe\xb9\xa0\xf8\x30\xe6\x4c\xa9\xfe\xb8\x07\x3f\x9f\x0b\xb0\x77\x99\x8a\xea\x6d\x34\x00\x87\xfd\x11\xbd\x91\xb7\xe0\x22\x64\x27\xc8\x78\xad\x81\x84\x91\x9b\xd5\xdc\xd6\xe0\x4e\xdc\xaa\xd3\x63\x17\x92\xcd\x8b\x3d\x60\x1d\x10\x9c\x12\x58\xb6\xd2\xe6\x9f\x95\xb6\xc9\xe5\xf1\x4a\x40\xa1\x5b\x8e\xa6\xe5\xf8\x0a\x4b\x5f\x57\xfe\x6b\xe4\xb9\xe5\xe6\x77\xcd\x45\x6f\x0c\x66\x3f\x07\x2c\x8b\xe4\xdf\x30\x9c\x7c\x1d\xb9\xd2\x95\xad\x82\x78\xf0\xb8\x61\xf5\x53\x5a\xf4\x6f\xef\x05\xd3\x0d\x7b\x74\x6e\xdc\x17\xa3\xc7\x7d\xb5\x98\x43\x31\xb6\x46\x9d\x5d\x0a\x98\xa5\xf0\x2e\xe3\x8b\x97\x4a\xb1\xba\xa1\xd7\x4c\xee\x35\x3d\xc5\xc6\x86\x0c\x18\x4f\x34\x3c\xc6\x69\xf8\xb7\x18\x6b\xd7\x9d\xc6\x3d\xf3\x26\x1b\x8f\xd4\xec\xc6\xd3\x7a\x35\x9b\x70\x55\x3c\xc1\xab\x79\x4c\x02\xa8\x3c\xdb\x31\xf1\x63\x3d\xb6\x9f\x37\xfd\xfc\x7d\x32\x6c\xfd\xff\xf7\x9f\x1c\x08\xc5\x83\xf0\x9c\xe7\x57\xfd\xca\xfb\xe7\xfa\xbf\xad\xcf\xbb\xa7\xd4\x00\x8e\x9c\xa1\x31\x1a\x61\x06\x38\xa5\x7c\x90\x71\x60\x37\x54\x08\x31\xf3\x72\xb7\xfa\x91\x03\xe5\x65\x95\xc6\x4b\x3a\x89\x18\x5d\x5e\x53\xd7\x84\xef\x04\x01\xab\x06\x54\xa6\xcf\x19\x9c\xbc\xf7\x95\xd0\x4a\x47\x05\x2c\x67\x36\x75\x4c\x88\x85\x0b\xc6\xb6\xb9\x35\x81\x19\x19\x89\x1e\xb9\x73\x2f\x71\x41\xe7\xd1\xda\xd2\x1c\x4b\x8a\x9c\xd6\xdb\x15\xc1\xb5\x92\x84\x0e\x1d\xba\x8f\x65\x68\xf3\xd8\x7a\x1d\xd5\x37\xbb\x30\x66\x11\x57\x29\x79\x1f\x7a\x52\x0f\xa2\xb0\xf2\x21\x56\xfa\x6a\xb7\x9f\x60\x33\x82\xbe\xeb\x97\x0e\x18\xe1\x76\xf9\x2f\xea\x67\xf4\xe5\xe3\x62\x7c\xe9\xf4\xd5\xba\xea\xf1\xa7\x3c\x1a\xf4\x39\x3b\xce\xe2\x53\xdc\x1e\x1a\x2a\xb6\xee\xc2\x9b\xb8\x57\x1a\x6e\xbb\xf8\x0d\x3f\xe8\x5a\x04\xa0\xff\xee\xd7\xba\x3c\xd6\xbd\x30\xa9\x8a\x7f\x7f\x0e\xae\xfd\xc3\x83\xf0\xa9\xf6\xcf\xf9\x27\x25\x0f\xe4\x75\xf9\xaf\x3a\xbc\x3e\xef\x1c\x78\x07\x70\x8a\x99\x51\xf9\x92\x2d\x7c\x14\xa8\x3d\x4b\x53\x15\x08\x3b\xe5\xf6\x48\x6d\xcf\x6a\x25\x4d\xe8\x78\xe8\x8a\x47\xf0\x13\x43\x2c\x03\xac\xfb\x51\x63\x04\x45\x8f\x3c\x14\xaf\x5d\x36\x1e\x91\xcc\xe7\xfb\xda\x6c\x06\xf7\xb6\x72\x4b\x40\x19\x62\x18\x17\xdd\x89\x0a\xe2\xd4\xe5\xc5\xed\x1f\xc9\x08\x2e\xd2\xd8\x87\xad\x5f\xa4\x0d\xd1\x51\xeb\xc1\xce\x63\xd9\x82\x76\xa8\xef\x58\x48\xc1\x96\xf9\x57\xaa\x6f\x99\xdd\x89\x33\xf2\x46\x68\xf0\xbc\x39\x87\x4b\xf1\x2a\xd4\xc0\x3c\xfb\x88\x7b\xe0\xa9\xa0\xe9\x3c\xf2\x1a\xcf\xe2\x2e\xaa\x49\xbe\xcf\x89\xb7\x72\xab\xd7\x0a\xbf\x75\x15\xdf\xe0\x32\xa4\x4d\x3b\xb0\x13\x3f\xe9\x6c\xa9\x15\xd4\xd7\x4d\x30\xb0\x6f\xd2\x5a\xed\x76\x21\xc4\xd9\x49\xfd\x9b\x03\xa1\x70\x71\x94\xfb\xef\x0f\xd7\xf9\xc0\xe9\xf5\xbf\x47\xfe\xc9\xcd\x2c\xac\xcf\x71\x5e\xcf\xff\x63\xfe\xb9\x3e\xef\x68\xe7\x04\x60\x2f\x3e\xc8\x76\x21\x1f\x96\x04\x17\xcf\xec\x3c\x4f\x06\x6b\xd9\xfb\x22\x5c\x09\x53\xe4\x50\xed\x2a\x95\xfc\x40\x73\x92\x8b\x79\x23\xd2\x8c\xc2\x3f\x58\xd7\x12\x69\xa3\x7d\x1c\x82\x4c\xa6\x08\x4d\xe7\xaf\x3a\xdb\x1a\xbe\x25\x88\x36\xb4\xb9\x25\xe9\x22\xf1\x6f\xae\x1d\x74\xf7\xd3\x70\xc4\xe7\x3c\xbf\xec\x21\xa2\x72\x1e\x9f\xb0\x54\x89\x5a\x55\xa6\xc1\xe3\xf0\xba\x2e\x9b\x95\xb6\xe3\x9d\xf1\xaf\xec\x9f\x29\x85\x2c\x70\x13\xb6\xd9\x7d\x55\xb6\xf9\x68\x48\x60\xb4\x03\x95\x73\x53\xd4\x84\xd3\x76\x2f\x95\x89\xe3\x97\x09\x79\xd6\x99\x2a\x03\x4f\xa5\x09\x95\xd6\x21\xaa\xdb\x1e\x6e\x23\xcc\x5a\x9a\xaa\x2e\xdd\xdb\x4a\x98\xb4\xc4\xa9\x4e\xdf\xda\x45\xe4\x31\x17\x06\xf0\x5d\xcf\xfd\xa1\x78\x20\x9a\xd7\xd7\x3d\x94\xf4\xab\x52\xee\x7f\x13\xef\xfe\xa8\x4b\xd8\x5f\xeb\xfc\x9d\x87\x22\xb7\x3e\xff\xac\x59\x9f\x7f\x2a\xac\xcf\xbf\xfa\x01\xd8\x3c\xf6\xf1\x14\x7c\x02\xe0\x6b\x67\x65\x49\x53\x87\x1a\x59\x26\xbe\xab\x91\x12\x64\x8c\xd6\x21\x99\x01\xaf\x20\x32\x97\x69\x96\xa6\x22\x85\x7f\xb0\x10\x24\xc9\x85\xca\x18\xc7\x19\x67\x12\x6f\xa6\x7d\xb1\x98\xfc\xed\x7d\xd0\x23\x06\x35\x1f\xb6\xaa\xd5\x38\x4d\x3c\x70\xe3\x8d\xad\x94\x4a\x39\x61\xe1\x45\xb7\xad\x93\x12\x1d\xe1\xf5\x77\x33\x1b\xb2\x82\x03\x91\x9b\x50\x64\x19\xfb\x3b\xef\x82\x88\x2d\x26\xca\x1a\x77\xc9\x55\xcc\x57\x11\x33\x91\xdb\xe5\x15\x66\x9b\x88\x69\xc8\x28\xf9\xeb\xef\xc6\x88\x79\xc8\x00\x05\xd5\x89\x09\xe2\x45\xc4\x9a\x82\xc7\xf3\x28\xe2\x7d\xc3\x4f\x8a\x3a\x8f\x37\x11\xef\x20\x2c\x36\x72\xa2\x6a\xd6\xbd\x17\x14\x0f\x04\x65\xfe\x8d\x4e\xa1\xfa\x2f\x0e\x68\x7d\xbe\xd7\x4f\x99\x7f\x9e\xfb\x55\xcb\x57\xd7\xe7\x5f\x0b\x00\x27\x86\x18\x8e\x64\x0c\x02\xf0\x5d\x66\x9e\x8a\x3d\x0d\xb3\xd2\xf2\xe7\x84\x03\x0c\xc1\x53\xfd\x86\x70\xab\x2b\x37\xb9\xd7\x38\x41\xe1\x8a\x75\x15\x59\xdc\x9e\xa0\x81\x34\x3d\x4b\x22\x04\x9a\xea\xd8\x20\x26\x49\x4f\xe2\x8a\xf4\x72\xf4\xb7\x90\x4a\x73\x9c\x0c\xa6\xb5\xb3\x48\xe6\x55\xdb\x90\xe6\xea\x78\x12\xd7\xa5\x31\xa3\x1e\x95\x18\x22\xf9\x96\xb0\xf1\x2d\x45\x4f\xe2\xc2\x0b\x1b\x63\xeb\xff\x93\x7b\x88\xc4\x8d\x91\xfa\xd5\x76\x49\x9b\x2c\x89\x90\x92\x34\x32\xa5\x6d\xbe\x7c\x20\x15\xab\xcf\x4a\x6f\x9f\x3e\x4c\x1a\x56\x7d\x2d\x23\x39\x35\x49\xca\xd7\xf0\x07\x28\xcc\xa4\xfa\xcb\x87\x32\xb6\xce\x01\xce\x4f\xfd\xa8\xd8\xcf\xff\xe0\x80\x74\xff\xe6\x80\x2e\xaf\x73\x0f\x94\x1c\x00\x8a\x07\x22\xfe\x3d\x00\x75\x09\x15\x55\xbc\x33\x00\x9f\xd8\xb1\x1d\xa1\x71\x00\x52\xfe\x1c\x7c\x9e\xab\x70\x55\xd5\x81\x67\xc9\x91\x03\x4e\x22\x8a\x25\x15\xcd\x97\xc8\x37\x6c\x96\xe5\x49\xc6\x5b\xc9\x39\x5e\x64\xe5\x06\x83\x87\x64\xaf\x08\x7a\xd5\x57\xba\x0f\xc9\x6a\xc9\xb2\x1a\x74\x5a\x5e\xe4\x33\xe7\x8b\x35\x23\xd4\x77\x90\x96\x6a\xdd\xb4\x9f\x2b\x87\x90\xd6\xda\xbf\x68\x61\x15\x5d\x49\x6d\xb7\x62\x74\x1b\xe5\xe9\x49\x35\x63\x95\xba\x81\x3f\xb9\x07\x59\x1d\x85\xdf\xdc\xc3\x2f\xdf\x43\xe9\x3f\xf3\x1d\x28\xbc\x83\xd8\xbb\xd5\x73\xe4\x22\x69\x3e\x31\xe2\xf7\x6a\x72\xb6\x74\xdc\xc6\x7b\xe1\x83\xf5\xf7\xa4\x4f\x3f\xcf\x05\xd2\xfa\xf3\xff\x31\xec\x1f\xf3\xdf\x57\xeb\xf3\x5f\xed\xbf\xe7\xbf\xf9\xeb\xbe\x9c\xa4\xf5\xbe\x24\xee\x00\x60\xb5\xa6\xbb\x16\xee\x09\xc0\xaf\x7c\x94\xcf\xa7\x13\x40\x3c\xe8\xf8\x05\x97\x3b\xf0\x52\x75\x0f\x27\xca\x46\x1e\xbc\x0c\x2c\x84\x3e\x98\xb6\xc2\x61\x8b\x2f\x92\xcd\x88\x5c\xd8\xee\xc6\x2e\x5d\xa0\xef\x4e\x7e\x1c\xf4\x4a\x7e\x46\xbb\x85\x3c\x12\xf3\x5a\x1e\x34\xf7\x91\x3b\xd3\x26\x15\x83\xd5\x4c\xc8\x79\x85\xdd\xca\x1c\xca\x40\x76\xa8\x1d\x56\x75\x53\xc0\x92\x8d\x3b\x5a\x54\x53\xe5\xe4\xc8\x46\x37\xc2\x55\x56\x29\xdc\x83\x14\x9e\x2c\xfb\x8e\x56\x55\x54\xd2\x91\xec\xb3\x48\xab\x14\xf3\xbb\x0f\x5d\xe4\x19\x72\xa4\xcc\xa4\xd8\x49\x10\x21\x4f\x48\xb0\x8a\xee\x01\x57\x60\x10\xdd\x2d\x74\x0a\xde\x41\x36\xaf\x14\xc0\xad\x7d\xbf\xd6\xff\xfe\xc6\x9f\xe7\x20\x25\x0f\xe6\xf7\xfc\xf7\xfa\x3a\x07\xb6\x9e\x87\x51\xbf\xe3\x6f\x0e\x26\x6d\x9d\x17\x88\x58\x9f\xfb\x46\x28\x00\x1c\x97\xd8\xf1\xd4\xcf\x0a\x80\xf3\xf0\x3e\x17\xd4\x1b\x00\x71\x07\xe6\x3a\xfb\x66\x00\xa5\x16\x0e\x65\x0b\x36\x28\xd7\xfb\xc8\x17\x88\x50\x84\x2c\x13\x07\xfe\x1a\xfd\x1c\x70\x70\x6c\x12\xb1\xd1\x49\x03\x75\x1f\x6a\x71\x5a\xcd\xc7\xa0\x10\x72\x46\xbc\x53\xfd\x1e\x9c\x8d\xe5\x90\x2c\x56\x3d\x47\x86\xac\x0c\x99\x10\xa5\x7e\xf2\x74\xe9\x19\x59\x50\xd0\x27\x4f\xd5\xed\x95\x05\x59\x43\xf2\xdc\x65\x61\x99\x6a\x99\x83\xe4\xfe\xfe\x59\x39\x92\xd4\x11\xf2\xe3\x7b\xaf\x65\x13\x24\x0f\x90\xaf\xbe\x64\x90\x6b\x14\x0f\x27\xbf\x9e\xbd\x2c\x93\x2c\x8e\x26\xdf\x5c\x3d\x2c\xa7\x25\x16\x00\x1c\xe4\xbb\x92\x07\x44\x24\x21\x03\x44\x85\x06\x85\xe2\x60\x0c\x62\xf8\x78\xfe\xe0\x60\x7e\xee\x83\x94\xf9\xf7\x4b\xbb\xbf\x39\xa0\xab\xec\x7f\x73\x40\xa5\xeb\x5c\x48\xd6\xfa\xf3\x10\xbb\xee\x43\xf0\xcb\xfb\x55\x9d\x94\x00\x36\xd1\x52\x51\xa1\x4e\x03\x70\x54\xec\xf2\x71\x7c\x00\x20\xda\x7d\x94\xcb\x86\x11\x40\xf1\x12\xdb\x45\x63\x19\x78\xa5\x5d\x7e\x76\x5e\xff\x21\x5c\x47\xaa\x70\xcd\xeb\x5c\x83\x46\x5b\x0e\x3e\x3a\x6d\x1c\x04\xa1\x7a\x85\x19\x35\xf0\x10\xe0\xbf\x43\x38\x57\x35\x18\x22\xc2\xe3\x85\x88\x2a\x9a\x60\x92\x80\x11\xdb\xa4\x78\x1c\x6c\x33\xaf\x89\x1e\x57\xf0\x85\x53\x25\x89\x92\x28\xd9\xb7\xc0\x5f\x53\x28\x21\x28\xdd\x09\xc7\x2f\x99\x48\x6e\xa5\x70\x0f\x14\xbf\x81\xf8\x7e\x60\x19\x25\x48\xc8\x8a\xad\x02\xd5\xd4\x61\x29\x45\xd1\x3c\xe0\xfc\x7a\x4e\xbc\x43\x64\x0f\x04\xa2\xf7\x0b\x7b\x09\x0f\x40\x0d\x68\x0b\xa2\x28\x1c\x0c\x65\x1f\xa4\x9c\x03\xc3\xf9\x7f\x73\x40\x4d\xeb\x73\xfe\xf2\xf5\xdc\xa4\xec\x80\x5f\x35\x61\xe4\x57\x0d\x7e\xf2\xab\xa2\xd6\xcf\x0b\xab\x14\x80\x4d\x28\x2a\x2a\x87\xb7\x00\x1c\x17\xe8\x13\xac\xfa\x00\x04\x0a\x0f\xd0\x98\x35\x02\xc8\x6d\x63\x26\x18\x52\x01\xa8\x9f\x61\xd3\xd2\xb9\x07\x5f\xf5\xf5\x4e\x17\x69\x27\xc0\x13\xf3\x6a\xce\x72\x8d\x7b\x70\xc7\x31\x89\x3b\x5b\xcd\x03\x86\x51\xb4\xdc\xbe\x2a\x51\xd0\xe3\x8f\xe0\x8d\x57\xe6\x83\xfc\x28\x06\x81\x0f\xf2\x8a\x70\x2d\xee\x02\xaf\x86\x5c\x12\xa4\x66\x07\x09\x5e\x96\x36\x83\xea\xc2\x30\x7e\x77\x49\x6f\xa8\xa8\x52\xe4\x0f\x97\xf8\x04\xe1\x4d\x77\x84\x98\x7e\x73\x0f\x16\xa0\x37\xe0\x2f\xba\x45\x4c\x15\xb4\xee\x37\x88\x72\x89\xb8\x81\xd3\xf3\x31\x61\x51\x61\x23\x88\x78\xe7\x24\xf8\x44\x68\x01\xd2\xbe\xec\x17\x64\xa7\xf8\x70\x28\xe7\xc0\xa3\xc2\xbf\x39\xa0\xd6\xec\x75\x0e\x88\xff\x6f\x0e\x28\xa9\xfb\x57\x0d\x5b\xdf\x27\xbc\xd7\x9f\x13\xfb\x75\x5e\xc6\x68\x3d\x37\xc6\x3a\x03\x80\x3d\x97\x6e\xa7\x59\x2c\x00\xff\xb1\xbd\x2b\x86\xb4\x00\xe2\xab\x07\x03\x75\xb7\x01\x28\xb7\xb3\xf8\x6b\x21\x00\xb4\xf5\xd8\x54\xd5\x17\x01\x8c\xb7\xb0\xc7\xa9\xf1\x02\xde\xaa\xe2\xb4\x84\xb2\x1c\x80\x7d\x2d\x87\xbe\x0a\x07\x8c\x79\xc5\x73\xdd\x56\x88\x87\xd9\x80\xd4\x73\xb3\xf2\x27\xe1\x75\x78\x0d\xd7\x09\xd9\x7e\x78\x14\xff\x8e\xbb\x4e\xfa\x05\xdc\xcc\x54\xe7\xa9\x91\x78\x0b\x4f\x0a\xa8\xb9\xa9\x29\xdc\x83\x98\x1e\x0c\xd6\xdf\xe3\xb1\x16\x35\x85\xeb\x2d\xc0\x13\x2f\x72\x12\xba\xbb\x07\x78\x66\x44\x0e\x40\xe9\x0d\x2c\xff\x7e\xa1\x51\xa8\x79\x38\xc8\x17\x2b\x48\x86\xe6\xe7\xad\xbc\x44\x4a\x2e\xd6\xff\xe2\x80\x6a\x72\xfe\xde\x07\xff\xc9\xc1\xf8\x5e\xf9\x55\x5d\xd6\x73\x62\x2c\x3c\x7f\x55\x5b\x11\x80\x63\xee\x5b\x6d\xb5\x6a\x01\xe8\x38\xa9\xa8\x0c\x4c\x00\xce\xb2\xd2\x69\xe8\xaa\x02\x88\x14\xef\x67\xd0\x94\x07\x90\x77\x3b\x52\xa0\x2e\x07\xa0\x36\xcb\x52\xab\x1a\x0c\x60\xd0\x79\x42\x4a\xc5\x16\xc0\x14\xd8\x74\x55\xb6\x02\xd8\xfa\x70\xf0\x28\xd1\x02\x38\x63\x39\x5e\x2a\xc8\x02\xc9\xab\xfd\xcc\x7e\xb9\x4d\x00\x01\x8f\x4f\xcf\xc8\xa8\x00\x2e\xa2\xf2\xcc\x43\xa9\x49\xc0\xc5\xd6\x9d\x99\x92\xe8\x01\x4c\x1a\xcf\x59\x7a\x89\x1d\xf0\xe1\x7c\x39\xa7\xa6\xf8\x56\x78\x5d\x2a\xc2\xf9\x4d\x34\x17\xc6\x2f\xf8\x72\x71\x0b\x77\xc2\x54\xb3\x17\xa7\xa9\xe0\x65\xf8\x76\xc5\xf8\xec\x07\xc1\x7e\x98\xb8\xd6\xc7\x79\x59\xe0\x3a\xbc\xbf\xb9\xcc\xf9\x93\x06\x54\x91\xa0\xfa\x49\xb9\x29\xe4\xfc\x17\x07\xc1\x6f\x2a\x5f\x4f\xff\xf9\x0f\x1f\x84\xb9\x52\xe9\x91\x84\x3f\x78\x10\x39\xed\xcd\x1c\xe9\x00\x46\x8b\x06\x1f\xf8\xa4\x01\x4c\x0f\x9b\x3e\x91\x38\x0a\xdf\x4c\x15\x1c\x30\x0a\x44\x18\x34\xbe\xe7\x99\xa8\xa6\x08\xae\x48\xf3\x88\x5e\x3d\x7d\x32\xd9\x20\x3a\xb3\xd0\xc4\x90\x5c\xa7\xf3\xb6\xf2\xb3\x65\x13\xf9\xa4\x96\x56\xbb\xb1\x83\x15\xe9\x8d\xba\xc6\xcd\xa7\xce\x06\xa4\x7a\x95\xf3\x63\x49\xae\x9c\xa4\x20\xa5\xd1\xf7\x38\xb7\x47\xa4\x28\x85\xe1\x15\x1e\xb7\xfd\xa4\x65\x79\x69\x7c\xb0\x23\x03\xd9\x4a\x8e\x9d\x70\xd8\x66\x33\xe6\x9b\x1c\x03\xc1\xd4\x4a\xf4\x9b\xa5\xfc\x0e\x82\x95\xd5\xd0\xf4\x9c\xc2\x39\x82\xbe\xf5\xfd\x49\x21\x85\x58\x42\xae\xd5\xf6\xe7\x46\x8a\x67\x09\x23\x16\xe1\xa3\x06\x8a\x8f\x08\x68\xf3\x80\xfb\x99\x4a\x48\xe2\x69\xb3\x2d\xb7\x55\x94\x86\x89\x66\x26\x9e\x83\x89\x2a\x54\x44\x39\xd3\x1b\xd7\xf2\x95\x43\x89\x75\x48\xc2\x8f\xf5\x2b\xed\xfa\xd5\x07\x19\xbe\x1f\x75\xf7\x0b\xd9\x9f\xbf\x3b\xb1\x97\xc9\x8d\x6c\x3b\x06\x20\x24\x27\x6b\xb7\x0b\xb3\xd1\x07\x65\x39\x25\xfb\x23\x4f\x01\x74\xc7\x54\x03\x59\xf3\x01\x90\x28\x2d\xc9\xd3\x33\x00\xc6\x37\xf5\x7b\x79\x2d\x00\x4c\x9d\x4c\x39\x25\x76\xc1\xbc\x59\xb7\x0d\x28\xec\x87\x7a\xd3\x4c\x0f\x06\x0d\x41\x10\x32\x36\x8b\x70\x42\x9c\x25\xcf\x1a\x16\x67\xd8\x98\x4e\x90\xed\xf5\x32\x2b\x69\x6c\x6d\x7f\xf7\xa1\x5e\x7d\xe0\xf6\x49\xd7\x7b\xa4\x4c\x95\xfa\x67\xc3\x6e\x92\xa4\x60\x25\xd9\x59\x1a\xb7\x72\x92\xac\xe2\x66\x0c\xab\x7b\x23\x29\x49\x41\x18\x37\xe5\xda\x40\xe9\xc7\x52\xb3\x7c\x11\xfe\x85\xdd\xd7\x59\x23\x45\x16\x7c\xbf\x43\xe4\x7b\x21\x45\x65\xc2\x66\xbb\xe6\x71\x84\xd2\x0a\x9e\x64\x5f\xf4\x64\xaf\xf2\x56\x02\xca\x06\xf9\x00\xaf\xcc\x4b\xb8\x6a\x09\x77\xec\x54\x7a\x08\xa5\xd6\x7e\x37\x0e\xa9\x08\x13\x39\xcc\x3a\xae\x1f\x55\x79\x4d\x94\x36\x63\xe9\xb1\x51\x59\x21\x06\x9b\xec\xfb\xb3\x0f\x52\x3f\xe7\x9c\x4c\x8f\x64\x79\xa9\x49\x1b\x1c\x84\xc8\x05\x59\x1d\x06\x49\x00\x99\xef\x32\xbb\xf7\xfb\x03\xa8\xbf\x93\x2f\x3c\xe2\x08\xa0\x5f\xa4\x7c\xe0\xb8\x20\x80\x31\x8d\x46\x02\xc7\x17\x00\x0b\x71\x9d\x6c\x1e\x71\x00\xf3\x33\xc6\x04\xf1\x2b\xf0\xcc\xf2\xba\x65\xa9\xd2\x26\xc8\x30\x6f\x77\xbb\xaa\xb5\x19\x4e\x9b\xbc\x09\xbd\x8e\xf8\x4a\x6e\x44\x86\xa7\x67\x5b\x16\x90\x35\xf4\x85\x2a\x2e\xd8\xdd\x27\x7d\xd5\x56\x6f\x57\x72\x56\x24\xf1\x6a\x8c\xdf\xd9\xe9\xb9\x44\x62\x56\x75\x19\x6f\xf6\xc4\x92\xe8\x95\x9e\x7e\x79\xe4\xb5\x93\xf8\x52\xb1\x15\x3b\xe9\x3d\x40\xaa\x92\x27\xe1\x37\xbb\x14\x61\x55\x15\x94\xf1\x47\x5d\x84\xe7\x16\x14\x1f\xe2\x37\xbb\xbe\x98\x8e\x51\xa2\xc7\x87\x3b\x0d\xbc\x2a\x50\x6e\xc4\xa3\x9c\x71\xcf\xea\x94\xa3\xf1\x18\x87\xcd\x8f\x76\xab\x3c\x23\xd0\xd9\x7f\xbd\x3b\xa1\x7a\x86\x60\x6c\xdb\x7b\x03\x54\x2f\x11\xaa\xac\x2b\xfa\x45\xd4\xb4\x08\x7d\x56\x84\xab\x08\xb5\xa7\xc4\x6d\x16\x39\x9d\x63\xea\xc6\xc4\x7d\x16\x26\x1b\x7c\x14\x55\xb7\x14\xdb\x7f\x71\x10\xc2\x89\x52\xb0\x9b\x09\x40\xbe\x40\x7a\xea\xc0\x71\x00\x8d\x65\xf9\xa6\x23\x2f\x00\x0c\x57\x94\x19\x58\xcf\x00\x98\xf6\xa9\x2e\xb3\x27\x01\x58\x59\xe8\xf8\xf0\xea\x02\xd8\xd0\x23\xaf\x48\xec\x80\x11\xcb\x6f\x96\x18\xa5\x12\x70\xb2\x24\xb8\x9a\xe9\x2c\xc1\x61\xd3\x95\x10\x24\x72\x96\x1c\x6a\xac\x91\x7a\xdd\x46\x92\xf4\xdc\xf0\x52\xf9\x1b\x97\xc7\xa4\x14\x9d\x8c\x8e\x9d\xa8\x01\x4a\x1f\x88\xb7\xd4\xf8\x5e\x46\xf8\x16\x10\xfb\x94\x5d\xbe\xf6\xfa\x8a\x10\x5b\x95\x36\x63\x2b\x7d\x0d\x28\x5c\xd4\xf2\xbc\x62\x30\xae\x03\x55\x38\x5b\xaf\xf4\x12\xf7\x02\x15\xfb\x36\x51\xb9\x03\x47\x72\x5b\x7e\x11\xa2\x52\x8b\x37\x70\x3d\x30\x02\xaa\x03\xf8\x58\x17\x81\x7b\xd9\x6a\xaa\xf8\xb7\x8e\x03\xb7\x88\x6a\x33\x04\x7a\x87\xe2\x81\x4a\xf5\x74\x82\x80\x7d\x6d\xef\x4b\x0d\x26\x82\x87\x2d\xb1\xab\x44\x63\x17\x61\xc4\xea\xf5\xa5\x2b\x1a\x76\x44\x1e\xf3\xfa\x8d\x7d\x81\xc2\x41\x30\x1d\x92\x9a\xa4\x8e\xde\xe0\x20\xc4\xa7\xc4\x77\x32\xc8\x00\x28\x72\x4a\x4e\xed\xd7\x07\xd0\xcd\x91\x66\x3c\x34\xfb\x07\x0f\xb2\xa2\xf4\xf4\x54\x3d\x80\x6d\x9e\xb6\x3b\xef\x67\x00\xfb\x2a\x84\xa8\x84\xf7\xef\x1c\x29\x8a\x37\xe8\xbb\xf9\x78\xf0\x41\x93\x0e\xb2\xbb\xc9\xa1\x94\x10\x1b\x34\xe9\x3a\x82\xb3\xbc\xc2\x75\x81\xc4\xa1\xfb\xa9\x43\xdc\x9b\x91\xf8\x42\xd3\xfd\xde\x01\xdf\x7c\xa2\xa7\x9a\xca\x1b\x87\x80\x2a\xa2\x84\x72\xeb\x62\x56\x60\x2f\x85\x8b\xc2\x1f\x53\x7c\x8a\x5d\xf3\xd6\xfd\xfe\x4c\x99\x06\xc7\xea\x4d\x33\xad\xaf\x62\x84\xd3\xf2\x6a\x9c\x78\xaa\x7a\x09\x17\xe5\x49\x1a\x73\x50\xdb\x86\xc3\xba\xd3\x0d\xcf\xa9\x27\xe3\x4f\xa2\x7c\xef\x74\xab\xbf\xc2\xbb\xbb\xa6\xdc\xd0\xd5\x88\xc7\x5f\x76\x1e\xbd\xd6\xa1\xf1\x8a\xb0\xc5\x31\xac\x2b\x59\x33\x86\x60\x61\xf7\xad\x43\x55\xf3\x29\x21\xc3\x16\xd5\x76\x5e\x4b\x8b\x70\xdd\x86\x7a\x83\x8f\xa2\x26\x8b\x73\xff\xe4\xe5\xce\x4a\xb3\x6f\x35\xff\xdf\x1c\x04\xc5\x8b\x61\xb6\x4b\xa6\x93\xe9\x2e\x80\xcd\x47\xa5\x1e\x76\x17\x00\xc7\x36\x0d\x33\x1e\x24\x80\x13\x4e\xff\x8a\xf8\x7e\x98\x70\x68\x36\x53\x54\x2a\x01\x19\xdb\x61\x87\x78\x7d\x03\xf2\xa0\x55\x85\xff\x7d\x73\x53\xb2\xb0\x69\x7e\xf2\x73\x7b\x34\xa9\x02\xc9\x59\x26\x8a\xb2\x22\x51\xeb\x05\xb5\x2f\xf8\x94\x13\x53\x34\xd1\xf7\x0d\x03\x22\x09\x68\x75\xfa\xc9\xe9\x90\x2f\x04\xac\xf2\xe7\xe5\xfc\x60\x32\x71\xaf\xf2\x19\xcc\x40\xd0\xc2\x4a\xb0\xb2\x3d\xd6\xca\xbf\xe1\xf3\x67\x15\x5f\x6c\x9b\x9f\xc7\x64\x9b\xea\x27\x2c\xd1\x57\xe7\xf9\xb0\xba\x36\x8e\xd1\x57\xfe\x51\x94\x46\x13\x0e\xe9\x73\xe6\x9e\x90\xe6\x31\x5c\x9f\xe7\xf5\x1b\xb2\x9a\x24\x3c\x8b\xbb\x79\x5f\xb4\x96\x0f\x3e\xdd\xd5\xa9\x3b\x52\x7b\x13\xfe\x96\x33\xa9\x83\x53\x5b\x85\x70\xc4\xd1\xb7\xa5\x5a\xfb\x23\xc1\xdb\xee\x7d\x23\x9f\x8e\x35\xa1\xcb\xa6\x7b\x83\x8f\xa2\xc9\x17\x7b\xfe\x93\x83\x68\x97\xe4\xa4\x91\xd9\xe0\x20\x28\xb9\x18\xea\xc9\x62\x3d\xfb\x19\x00\x0c\x55\xc4\x77\x30\x12\x36\x78\x10\xfb\x1a\x85\xde\x53\x01\x1b\x5c\x8c\xeb\x88\x6e\xb7\x18\x3d\x7c\x72\x95\x35\x2e\x54\x9c\x07\x46\x87\x28\xfb\x53\x88\xd3\xe4\x2c\x1b\x8c\x6f\x9a\x15\x03\x69\xce\x82\x27\x51\xd3\xf9\x3e\x49\xdd\xe8\x7d\xa9\xae\x97\x24\x31\x53\x7f\xbe\x7d\x21\x50\x9e\xb0\xa8\xad\x3b\x7c\x34\x6c\x3f\x21\x48\xdd\xe5\xbd\x61\x04\x91\xa0\xa5\x72\x1e\x4d\x13\x19\x4a\xf1\x46\x2d\xac\xa8\x48\x62\x8f\x05\x16\xcd\x18\xab\x7e\xc4\xca\x06\x56\xbd\xda\xa6\x1e\x84\x8d\x0a\x78\xf1\x58\x58\x93\x06\xfb\xc2\xdf\xe9\xfe\x09\x2d\x4e\xdc\x71\x5f\x32\x85\x87\xea\x3f\xa1\x5d\x8d\x1b\xf6\x3a\x76\xd5\x5a\x47\x0b\xcf\xe3\x9e\xd2\x71\x45\x97\x15\xef\x88\x12\x6c\x8b\xd2\xe5\xc5\x8f\x3b\x2f\x37\xa9\xea\xbe\x24\x30\x38\x19\xd7\x1b\xe8\x9d\x21\x58\xda\xaf\x6d\xf0\x51\x34\xb5\xa2\x01\x3f\xcf\x89\x55\x91\x3a\xda\xfd\xff\xe6\x20\x34\xfd\x84\x5a\xf6\xac\x6e\x70\x10\xb6\xe3\xe2\x85\x47\x9f\x00\xb8\x54\xc9\x87\xb1\x8b\x02\xb8\xd7\x29\xb7\x70\xd1\x02\x78\x72\xe9\x44\x88\x33\xc0\x37\xf7\x61\xe4\x67\xc5\x2f\x40\xef\x22\x60\xdb\x87\x94\x25\x87\xda\xef\xf0\xd2\xb7\xde\x4b\xaa\xb3\xd2\x8c\xf7\x46\xed\x25\xe2\x4c\xec\x4a\xd2\x7d\xaf\x12\xe5\x0c\x9e\x76\x6c\x0a\xe1\x21\x94\x6a\xf7\x3f\x88\x89\x98\x26\x6c\x55\x2f\x9d\x19\x8b\x09\xc6\xaf\xa8\x32\xa2\x4f\xc4\x88\x52\xf2\xc2\xbe\xd4\xa8\xa9\x60\x4c\xc3\xae\x4d\x6e\xd1\x60\xc7\x74\x86\x16\x3f\x3b\xa0\x79\x13\xf3\x2d\x04\x86\x89\xda\x07\xb1\x6e\x41\x05\x94\x9c\x30\x0a\x0f\x75\x35\x50\x77\x10\x97\xef\xb3\xa5\xc3\x5f\x2f\x1f\xf7\xd6\x4b\xa5\xed\xb5\xde\x33\xbc\x88\xfb\x7c\x63\x9c\x81\x1a\xde\x1b\x95\x5f\xa7\xa6\xff\x09\xbf\xe8\x7c\xa3\xfa\xa4\x81\x34\x41\xc5\xf1\xe8\x8f\x3e\x48\x5c\xfb\xb9\x2f\x30\x4b\x71\x53\x07\x6f\x78\x10\x84\xf7\x08\x8b\xd0\x8b\xff\x07\x07\xd1\x29\xfc\x94\xb1\x10\xc0\xfe\xa6\xc8\xd3\xc3\x0b\x00\xee\x3b\xa4\x03\x4e\x72\x00\x78\x8b\x2a\x19\x73\xed\x06\xf0\x75\xd4\x5c\x10\x9d\x80\x55\xef\x38\xc3\x15\xc5\x40\x60\x46\x85\x5a\xe7\x22\x2c\xc9\xb2\x8e\x9c\x9e\xd4\x76\x92\xa4\x78\x1b\xbe\x98\x20\xf7\x04\x62\x8b\x69\x67\xf1\x87\x80\x21\xc2\x73\xc3\xd9\x0e\xbb\x88\x1d\x84\xa3\x3a\xbe\x8f\x8e\xc7\xac\xe1\x63\xd4\x07\x3f\x3f\x4f\x38\x43\xe1\xa2\x96\x18\xd5\x2a\xd0\xfb\x62\x75\x67\x12\x34\xa4\xd1\x85\xd1\x61\x13\x56\x9a\xd3\x18\xc6\xc8\xfc\x91\x73\xda\x13\x98\x94\xf0\x91\xbb\xfb\x74\x0f\x62\x3e\x86\xf1\xdf\x90\xd5\xfd\x8e\xd5\x0d\xd9\xd2\xeb\xa3\x67\x80\xdb\xef\xef\xdf\x79\x4e\x3f\x0e\xa7\xe8\x97\x42\xe1\xa1\x1a\xfd\x0c\x6d\xf0\xbb\x3d\xcf\xd7\x65\x1a\x7e\xc0\x4b\x79\xd8\xd7\xb0\x18\x4a\xe3\x27\x5d\x0a\xaa\x72\x0c\xfa\x09\xbc\x8e\x3f\xdf\x22\xc5\x57\x7e\xf6\xe1\xb4\xc4\x23\x6a\x57\x80\xd3\x20\x3c\x4e\x7b\xef\x8f\x3c\x08\x29\xc1\x2d\xbb\xcd\x00\xf4\x2a\x04\x34\xf7\x54\x02\x58\x6d\x17\xd2\x65\x54\x07\x70\xd1\x17\xb5\x39\x7a\x1f\xc0\x2b\x4b\x5c\x8b\x05\x0b\x10\x70\x52\xee\xed\xd9\x49\x80\x20\x1f\x75\x3e\x91\x16\x58\x09\xa0\x31\x30\x50\xa2\x87\xb3\xde\x28\x8b\x55\xc4\x76\xd2\xaa\xcb\x25\xb7\x34\xc7\x79\xd2\x51\x3b\xae\x18\x71\x1f\x69\x22\x9f\xf9\x97\x22\x9f\xd0\x04\x82\x1f\x62\xb9\x43\x22\x5a\x13\x9f\xa8\xcb\x33\xf2\x39\xd1\x1c\x77\x57\x43\x67\xee\x7b\xaa\x30\x56\x57\x0d\xb5\x26\x90\xa8\x40\xc9\x0b\x9b\x54\xd5\x6a\x5f\xfb\x14\x3f\xf2\xf4\xb5\x8e\x32\x3a\x39\x56\xe4\x5e\x93\xee\x08\x46\x26\x92\x70\xd3\x5d\x5f\x04\xe3\x1b\xa9\x70\x8d\xc7\xe0\x20\x06\x1f\x96\xd8\x39\x6f\x10\x82\xed\x0b\x62\xb9\xa4\x69\x18\x8a\x3b\x1c\x40\xd7\xf4\x04\x51\x8b\x93\xf1\x37\xac\xd7\x44\x32\xe2\x3a\x7c\x1c\xaa\x45\x90\xab\xf8\x5d\x5e\xbb\xcb\x92\x8d\x86\xf0\xd6\xee\xaf\x4b\xdc\x8d\x6c\xf1\xb7\x5c\x7f\xbe\x2d\x8b\xfe\xf4\x56\x53\x38\x88\x7f\x7a\x10\x54\xad\x04\x35\x18\x78\xff\xe0\x20\x76\xf3\xb9\xed\x17\x03\x70\x1b\x14\x4c\x3d\xb4\x06\xe0\xff\x46\xdc\x80\xf5\x36\x40\xa8\xbb\x4c\xd8\xd9\x9d\x00\x11\xfe\x2a\x34\xc2\xa7\x01\x1b\x96\xa2\x5b\xae\xb4\xf9\xb7\x37\xe8\x35\xaa\xc9\xc5\xdb\x59\x8a\xf8\xc9\x21\x20\x72\x8f\x9f\x1e\xe1\x81\xe5\x50\xc1\xa7\xc8\x53\xf8\x59\x23\xdd\x0e\xf9\xf8\x47\x38\x9c\x6e\xd9\x13\xe3\x54\x69\xdc\x29\x0d\xbe\xa5\xf3\x99\x87\x16\xd7\x34\x2a\x56\xe5\xd2\xdc\x3f\x60\xb4\x08\xab\xcd\xa9\x89\xcf\x79\x74\x07\xd7\x0e\xa4\x14\x52\x78\xa0\x9b\x18\x83\x31\x34\x2a\x7e\x3b\xc5\x8f\xd4\xe5\x84\x48\xc6\x34\x46\xbc\xa1\xe4\x84\x35\x71\x23\x3f\x61\x47\x83\xcc\xea\x32\x8d\x1e\xe1\x8e\x07\x44\x57\xb5\x19\x73\xe0\x2e\xf9\x3c\x2e\xa7\x35\xf1\xc4\xf5\xfa\x0c\x94\xe8\x1a\xcf\xe1\x95\x3d\x6e\x17\xf1\x18\xdb\xe2\xaf\xba\xfd\xb4\x2d\x0a\xf3\xfe\xe8\x03\x65\xfe\xcf\x2d\xc2\x9f\xbf\x5d\x1a\x40\x72\x8c\xdf\x9b\x6e\x1c\x40\xe3\x21\x7f\xcc\xee\x77\x00\xa6\x6c\x3c\x9d\x7b\x18\x36\x38\x08\x6f\xb4\x80\xc4\x61\x73\x80\x50\x27\x11\xef\xe3\x46\x00\x31\x85\x12\x36\x1c\xd1\x00\xb1\x8d\x8a\xcc\x82\x16\x00\xb1\x77\x34\xeb\xe4\xef\x83\x58\x44\xa9\xd1\x6b\xc3\xfb\xa4\x25\xbf\xe3\x0e\xaa\x4e\x75\x44\x4f\x17\x8d\x90\x6f\x41\x6b\x04\x15\xeb\xf9\x7c\x44\x6c\x06\x7e\xaf\xf1\xd4\x15\xf1\xd4\xcf\xb8\xfd\x7a\x71\x63\xcf\xb2\xf7\x60\x05\x35\xc5\x97\x85\xf3\x86\x3f\xca\xea\x20\x56\x68\x72\xc6\x5f\x2e\xeb\x7d\x59\x71\xca\x61\x7e\xe4\x6b\x50\xb6\x9a\x90\x3e\x75\xbb\x03\x21\xbe\x26\x90\x2a\x75\x4d\x0a\xb9\xbc\x36\x92\x34\xd4\xd9\x67\x94\x87\xbe\x1c\x17\xda\xa2\x6a\x12\x80\x91\x8f\x1e\xaf\x7f\x63\x5a\x8d\x69\x8c\x7c\x5c\x43\x36\x0d\xc6\x3a\x84\x86\x55\xf6\x9a\x96\x62\xa7\x82\x0a\x4a\xa5\xcd\x24\x70\xba\xfe\xf7\x0b\xe9\xcd\xc6\x71\x9d\xbe\x7c\xf9\x5c\xa6\x24\xbc\xa2\x27\x73\x76\x8f\x59\x3e\xbe\x1e\x25\x0d\x40\x15\x25\xf8\xf3\xbc\x60\x1e\x11\x52\xa2\xee\x03\xe0\xef\xe0\x8d\xd9\xc1\xbd\xe1\x41\xd0\xb9\xc7\x7d\x7f\x97\x3f\x80\xf5\x26\xee\xa4\x3d\x6e\x00\x28\x5b\xce\xf0\xbd\xea\x00\x81\xf6\xdc\x87\x0e\x4c\x02\x44\x8b\xf2\x1f\x3b\xc6\x0c\x90\x1c\x20\x7a\xe4\x54\x09\x40\xda\x69\xd9\xed\xfc\x54\x00\x29\x8f\xd4\xfb\x15\x1e\x81\x62\xe2\x71\x43\x2e\x43\x1d\xd2\x83\xd0\x5d\xb6\xcf\x5c\xde\x12\xde\xbb\x77\x07\x9c\x08\x07\x7c\xbe\x3d\x7f\xee\xee\x64\x6a\x9c\x98\xe9\x6c\x87\x7b\x76\x0b\xa6\x57\xbf\x60\xbc\xa3\xf0\xeb\x5c\xb7\xee\xd9\xc5\x2b\x25\x05\x13\x1a\x06\x33\x4b\xc5\x45\x91\x8f\x6e\x23\xd5\x97\xed\x0a\x78\x6e\xb2\x1a\xa7\xaf\xf8\xe5\x86\xf5\xf6\x98\x3c\x58\xd5\xcd\x3a\xd1\xde\x64\xa6\xb7\x76\x2a\xad\xf3\x5f\xf9\x58\x28\xcb\x2f\x68\x62\x1c\x6b\x99\xaf\xa5\x05\x66\x34\x32\x92\x92\x8f\x95\xf7\xc9\x4a\x0a\xfb\x3d\x68\x24\xa7\xc8\x12\x8d\x73\xf4\x6f\xc8\x90\xb2\x2a\xc0\x8d\xfb\x34\xa5\xef\xb4\xbc\x8b\x57\xf1\x74\x06\xd8\xa2\xc6\x4f\xfa\x79\x4e\xe4\xf1\x27\xd0\x58\x01\x08\xac\xf1\x0a\xef\x50\xfc\xb7\x07\xc1\x6e\x99\x7d\x90\xae\x79\x23\x0f\x22\xd2\xfb\x6c\xf0\xfe\x7d\x00\xc9\x21\x3c\x3b\x8f\xf4\x02\x64\xd3\x0b\x5a\x9f\xdc\x06\x70\x9e\x49\x3c\x97\x8b\x15\x20\xff\xa5\xa2\xab\xf4\x13\x30\xcc\xe2\xd2\xb5\x30\x50\x20\xf5\x27\x3c\xb0\xf8\xea\x3a\x49\xd0\xf7\xe3\xf0\x52\x8e\xe9\x44\x8b\xba\x78\xa5\x8f\x65\xe2\xbe\xfa\xdb\xca\x34\xeb\x17\x1d\xfc\x90\x63\x66\xf6\x88\xab\xe2\xc4\x6b\x7b\xa4\xfa\xfc\xad\x9a\x80\x61\x84\xa9\xd9\xc2\xbb\xca\x87\xfd\xef\xcd\xbf\x2e\x92\xca\xe2\xba\x4a\x2d\x99\x96\x91\x85\x2f\x9a\xc7\xad\xb9\x57\xfc\xf2\x06\xea\x4d\xac\xaf\xaf\x06\x65\xfd\x3f\xc2\xfe\x3a\x2a\xaa\xf7\x7b\xff\xc7\xc7\x42\xec\x2e\x44\x52\x90\x90\xee\x1c\x66\x86\x18\x60\xe8\xee\xee\xee\xee\x2e\x03\x41\x44\x41\x40\x54\x54\x2c\xc4\x00\x51\x11\x51\x11\x11\x05\x95\x50\x50\x10\x03\x45\x44\xa4\x67\xe6\x9c\xb3\x7f\x0b\x98\x31\x9e\xaf\xf7\xe7\xf7\xfd\x6b\x2f\x5c\xb8\x16\xfb\x3e\xe7\xbe\xcf\x99\xb9\x1e\xfb\xba\x72\x2a\xf2\x9d\xa8\xd3\x1c\x79\x2d\x27\x6e\x39\x9b\xcd\xa8\x66\x3a\x31\xfd\x70\x8e\xa4\xb9\x64\xcc\x3a\x26\x27\x30\xfd\x70\xf2\x8e\xbb\xd8\xcd\x1d\x8c\x49\xc8\xd9\xe1\x7c\x93\xaa\x12\xb1\x25\x8b\xc5\x39\x9a\x7a\x36\x54\x29\xad\xdc\x25\x90\xda\x17\xfc\x06\x60\xcd\x73\x09\xff\xf9\x75\x10\xd2\x15\x9f\x59\x99\x05\xa0\x58\x2d\x2a\xbc\x3a\x0e\x40\x4f\x50\x98\xb2\x96\x05\xc0\xb6\x9b\xaf\x6b\x0d\x1b\x80\xdf\x16\x9e\xeb\xab\x91\x3f\x79\x10\x99\x87\xf6\x7e\xdf\x48\x02\xc8\xbf\xb2\x6f\x6c\x6b\x1d\xc0\x89\x75\x62\x2a\x1c\x1d\x7f\xf2\x72\xca\xcb\xd4\x58\x95\x88\x10\x50\xaa\xac\xab\x6d\x64\x86\xd6\x1d\xf9\x66\x79\xdb\x47\x64\x72\x4f\x8a\x9b\xd7\xf7\xd4\x55\x1f\xa6\xc2\x56\x26\xfd\x2c\x6c\xed\x0a\xf3\x3b\x5c\x3e\x7b\xd2\xa8\xad\xdc\x63\x73\x53\xd9\xe9\xda\xe6\x72\xa7\x86\x8f\xed\xe7\xf5\xea\x8a\x9c\x6f\x8c\x89\x54\x19\x5c\x2a\x75\x93\xfd\x79\xb1\x72\xc5\x99\x72\xf7\xaf\xe3\x43\x65\xfb\xcb\x96\x7b\x5c\x9a\xd0\x3f\xce\x5e\x5c\xea\x29\x33\x19\x5d\x98\x59\x70\xc3\x13\x3f\x75\xf7\xd0\xee\xc3\x85\x5e\x9b\xa7\xb7\x1c\xa8\x3c\x30\xe2\x29\x37\xc3\x9f\xe5\xc8\xf4\x81\xc9\xc8\xf3\xf4\x99\x3d\x9b\x44\x49\x59\xe6\x55\x3f\xc7\x92\x20\x9c\x90\xe1\x75\x78\xae\x31\xfa\x7c\xc2\x37\x0f\x84\x8a\x8f\x30\x8a\x1d\xf1\x18\xa5\x3e\x0c\xb9\x0a\xb0\x49\x4c\x74\x81\xa7\x65\xea\xff\x78\x03\x61\xd2\xaa\xcf\x00\x46\xdf\xf8\x28\xab\x3c\x01\x5c\x47\x78\x54\x57\xdd\xfb\xe3\x83\x90\x06\x2c\x97\xe7\x7f\xff\xc8\x11\x8e\xe5\xab\x0b\x00\x4a\xc6\xb8\x97\xaf\xcf\x05\xa8\x3a\x2f\xb0\x6a\xc7\x4b\x80\x4b\xb2\x62\xb7\x79\x75\x00\xae\x8c\x28\xde\x95\xe3\x81\x1b\x57\x14\xd4\xc5\x74\x2f\xcc\x26\x9c\xd9\x6e\x2c\xe0\xd9\xf8\x31\xb2\xf0\xb3\x4b\x66\xf2\xd9\xe7\xd9\xe9\x05\x11\x4d\x45\xec\xf7\x1a\x63\xa5\x0a\x64\x4e\x5d\xaa\xdd\x1d\x76\xed\xc6\x93\xf3\xbc\x17\xb8\x02\x0f\xf4\x70\x5d\xea\x2f\xbf\x1b\x20\x3b\x4a\xba\xd4\xcb\xcc\x03\x3a\x22\x1e\xd8\xfb\xf3\x75\x65\xd4\x81\x9e\xc0\xd6\x5f\xba\x27\xa3\xb3\xaa\x82\x28\x13\x45\xc5\xd5\x19\x19\x81\x4a\x93\xaf\x0b\x0a\x93\xf9\x83\x38\xa7\xba\x0e\x89\x25\x72\x05\x1a\x4e\x37\xe7\xd4\xc5\x94\x06\x1d\x9d\xd1\xca\xe2\x8e\xb9\x14\xd0\x3a\xbb\x21\x75\x38\xfa\xa8\xff\xd4\xec\xd9\xa4\x9c\x28\x82\xdf\xd7\x39\xb3\x38\xf7\xb0\x43\xfe\xd6\x73\x43\x51\x83\xc1\xa6\xfe\xb6\xd4\x88\xb0\x21\x00\x5e\x4c\xcc\x7f\x85\xd0\x1f\xfd\x5f\x73\x1d\x7f\x22\x6b\x21\x80\x8d\x21\xcf\x72\xd6\x7c\x00\xaf\xe1\xe5\x11\xb8\xbf\xe6\xdf\x99\x73\xbf\x4c\xfd\xf7\xc2\xa5\x25\x0b\xf3\x0a\xd7\x1d\x39\x5f\xaf\x7f\x09\x70\xa7\x4c\x70\xfb\xee\xcb\x00\x4d\x17\xa4\xc4\x45\xd4\xb1\xad\x4d\x39\xaa\x63\x5a\x07\xbf\x7e\xbb\xb9\x96\x32\xe4\x1a\xf0\x7a\xf7\xf9\xab\x76\x92\x71\x97\xee\x79\x95\xf4\x06\xde\xc8\x87\x2a\x9b\x83\x3b\x32\xf1\xa7\xf1\xc7\x2e\x67\x4a\x9e\xa3\x5c\x5c\x7e\xc0\x38\xf9\xd9\xd3\x0d\x57\x0d\xd2\x4a\x13\xe2\x47\xdc\x6a\xf5\x92\x83\xe3\x43\x46\x69\x17\x33\x13\x7e\xc5\x99\x8f\xc1\xd9\xf4\x38\x8d\x38\xd5\xf1\x8b\xe5\xf4\xe8\xbb\xb1\xc9\x13\xb6\xc7\x5b\xa2\xae\x47\x27\x4e\xc6\x1d\x95\x8b\xf4\x8a\xd2\x9c\x8a\x3e\x3c\xc2\xcc\xbf\x09\x0f\x0a\x6b\x9e\x21\x64\xe9\x85\xd8\x85\x37\xcc\x1a\xa7\xc4\x85\x70\x84\x29\xcd\xd6\x27\xf1\x07\xaf\x0d\x95\x9c\x33\x89\x4b\x08\x22\x84\x64\xce\xdd\x8e\x1e\x0f\x68\x0d\x11\xa3\x6a\x45\xa8\x01\xf0\xbb\x0b\xcc\xae\x30\x03\x50\xdc\xc5\x8f\xac\x74\x02\x30\x14\xe4\xc4\xad\x68\x01\x70\x5c\xb3\x22\x63\xbe\xbf\x30\x86\xee\x99\xb9\x6b\xb1\x16\x17\xe2\xfe\xe1\x20\xea\x0e\x33\xf4\xaf\x82\xe5\x22\x0b\x73\xb0\xdb\xb9\x9a\x36\xde\x00\xe8\xaa\x17\x39\xc2\xb7\xfd\x67\x73\x47\xa4\xa2\x3b\x21\xa7\x6f\xe3\xe3\x73\x64\x37\xfb\x15\x8f\x1e\xdf\xf9\x61\x81\x85\x3f\xbc\xb2\xe9\xda\xa4\xf7\xd3\xdc\x03\x45\xcb\xab\x5e\x24\xc5\x9f\x8c\x4d\xef\x3d\xb5\xa4\xc2\xe5\xec\x85\xd8\x77\x65\x22\x0f\xd9\x2e\x28\x87\x19\x97\x14\x7c\x69\xba\x18\x17\x5c\x5b\x3c\x36\x96\x5a\x55\x18\xdc\x5c\xa0\x31\x2e\x74\xca\x35\x28\xe8\xb0\xc8\xaf\xbe\x12\xaf\xc0\xf4\x03\xb8\x49\xc5\xa2\x8d\x01\x27\x72\x0e\x4d\x99\xe5\xdb\x05\x04\x65\xfa\x4c\x0b\x1e\x28\xf2\x7b\x96\x6e\x3a\xe3\x96\x19\xe8\xc7\x9f\xda\x36\x03\x69\x4a\xbf\xb9\x8f\xe3\x49\x2f\xe7\xc4\xe2\x8d\x98\xdc\x87\xf7\xcf\xb8\x21\x2a\x5b\xa4\xbf\x57\x58\x5c\x3c\xb5\x2a\xb4\x02\x40\xb0\x80\xff\xe4\x8a\x08\x00\x82\x25\xb7\xe7\x8a\xfb\x00\xa6\x92\x6b\xc6\xe6\xfb\xf1\x1e\xc4\x59\xe1\xfe\xca\x41\x60\xea\xdf\xcc\xb9\xd7\xba\x02\xdc\x3f\x7e\x10\xdd\x6a\x8b\x75\x28\x6d\x17\xb6\xe2\xe2\xb4\xe7\x67\x07\x01\xd5\x3d\xda\x43\x72\x03\xe6\xb2\x56\x0a\x9f\x9e\x93\x7a\x46\xd4\x39\xcd\xd8\xeb\xd7\xbc\x28\x35\x39\xe8\x47\xad\xe8\x6a\xb9\xeb\xd6\x9f\xba\x34\xb3\xa7\xf1\x58\xcc\xcd\xa3\x5e\x51\x6f\xef\x98\x97\x4c\x94\xc6\x05\x38\xdf\x8e\xbf\xbf\xa6\x42\xd4\xa3\xb7\x4e\x6f\xa8\xa9\xb2\xde\xed\xd1\xb5\xe7\xe3\xbe\xe5\xd1\x6e\xf1\x17\x2b\x27\x78\x8f\xfb\xb9\x59\x9e\xed\x9c\x2c\x2a\x68\x74\xe7\x2f\x77\x9d\x3a\x74\xe8\x9a\xdb\x68\xe9\xb6\x69\x97\xdc\x11\x37\xf7\x63\xb7\x66\xd2\x32\x74\xdd\x8d\x0a\x47\x67\x4e\xa5\x3f\x71\x97\xca\xdf\x34\xeb\x99\x5c\xe8\xfa\xfd\xe0\xf3\x39\x93\xb8\xbd\xae\xab\xf2\x66\xe6\xa6\xa2\xb8\x5d\x2a\x72\xe8\x54\xf7\xf0\x7d\x2e\x45\x59\xc6\xd4\x67\x21\xce\xce\xcf\x33\x66\x69\x8a\x81\x92\x00\x12\x7e\x9c\xfe\xcb\x6e\x03\x90\x56\xaf\xe5\x9f\xef\xc3\xfe\xe8\x62\x3f\x4c\x0e\x84\xb9\x0f\x2a\x18\xf3\xdf\x37\x92\x99\xd7\x1f\xf7\x0f\x07\xb1\x38\xff\x38\x97\x36\x95\xb6\x89\x8c\xc3\x7d\x75\x9c\xda\xcb\xeb\xb0\xcd\xa6\x5b\xf2\x67\xb4\xa4\xa6\xb8\xda\x83\xab\x5f\x87\xd5\x4c\x74\xf2\x2f\xd9\x7c\xc8\x36\xf8\xee\x92\x72\x54\xa0\x2f\xd9\xa9\x22\x8a\x2b\x8e\xbb\x4b\x2b\x7c\x2c\x97\x3b\x20\xfd\xd5\xd7\x62\xa1\xfc\x24\x37\xd9\x97\x66\x77\x36\x1c\x2d\xb7\x8b\xef\x14\x7c\x7f\xb2\x58\xda\x3a\xe3\xd9\xbe\x89\xb8\x22\x4f\x9b\x9b\x0f\xdc\x27\xcf\x1e\xd9\x6d\x5b\x7e\x9b\x77\xaa\xe6\xc0\x3b\x5b\xad\xeb\xea\xd3\xd4\xcc\x21\x3b\xf9\xcb\xc6\x33\x19\xe9\xda\xcc\xbc\x13\x3b\x83\x33\x36\xb3\xb3\xf1\x89\xcc\xbc\x13\xdb\x2f\x27\x57\x50\x65\xc3\x1f\xdb\x85\x9e\x58\x4f\xf5\x09\x8b\xb2\x97\x39\xa6\x48\xcd\x0e\x6d\xb2\x5b\x57\x58\x4a\x53\x0f\x88\xb7\x93\xcd\xaf\xa4\x15\xf8\x09\x02\xa8\x3c\xe1\x28\x59\xae\x00\x60\xd0\x81\x9b\xf9\x5b\xff\x67\x72\x20\xcc\x1c\x04\xe6\xfc\x37\xd3\x07\xa0\x7b\x09\xee\x2f\x0e\x62\xae\x8b\x9a\x3e\x5f\xbf\xce\x02\x2c\x1f\xc4\xe1\xde\x0e\x01\x70\x68\xad\x85\xb6\x55\x00\xa2\x6a\x7c\xce\xb7\x7a\x69\x5e\xca\x53\xaa\xb5\x95\x42\x53\xde\x94\x7c\x0b\x95\xdc\x86\xb1\x69\xbb\x1f\xbe\x7d\xa1\x11\x23\xe9\x21\x9c\x09\x4e\x1e\x5e\x23\x89\x85\xe2\x69\xf7\xec\x24\xbe\x91\x6f\xd1\xb3\xed\xcc\xb4\xbf\xb9\xf7\x49\xe5\x09\x1a\xc5\x7d\xea\x9a\xba\x9d\x8b\x33\x56\x7f\x53\x35\xdd\x91\xe1\x64\x72\xe7\x45\xd4\x8c\x43\xda\x6e\x53\xd3\x16\x9b\x59\xc9\xa4\x75\xa6\x56\xf7\xbf\xcc\x6d\x8a\xd5\x32\xf3\x6d\x90\x99\x33\x8a\xd9\x6e\x6e\x75\x9d\x32\xd7\x11\xa9\x65\x3e\x70\x19\xa3\x6a\x86\x85\x59\x04\x56\xb3\x53\xb3\x43\x3a\xcc\x9f\x56\xb5\xd2\x84\x03\x6c\x2c\xe4\x2a\x07\x68\x11\x7e\x44\xf3\xd0\x8a\x0e\xda\x0f\xaf\x33\x16\x5b\x4f\x72\xd1\x39\x3c\x25\x00\xf0\x35\xcb\x29\x0b\x1c\x48\x36\xee\xff\xaf\x1f\xc8\x6f\x0e\x24\xf1\xef\xfe\x11\x22\x6c\x5c\xe8\x9f\x31\xf7\xde\x7d\x91\xa1\x7f\x88\x00\xec\x61\x59\x73\xfc\xf6\x5d\x00\x91\x1c\x1e\x8e\x0b\x05\x40\x51\xd6\x91\xab\x3b\x76\x0e\xe3\xd2\xe9\xa3\xac\x4f\x55\x45\xd2\x6c\xd2\x1c\x05\xfc\x43\x69\xd5\x01\x7d\x41\xa2\xce\xe2\xd4\xae\x43\x9b\x23\xfc\x2c\xef\xcd\xd1\xaf\xd0\x63\xd7\x19\xbd\x9c\x0b\x6c\xdf\x15\x37\x44\x49\x98\x7d\x3b\x56\x9f\xe0\xa8\x5b\x3e\xfe\x63\x36\x26\x36\x8f\x62\xfa\xe9\xec\x9c\x68\x14\x17\xe5\xeb\xdb\x91\xb9\xb6\xb0\x2e\xfd\xa5\x9d\x24\xaa\x44\xc8\x53\xfd\x84\xa7\x40\x2d\x0a\xf2\x35\xd8\xf1\x70\x90\x3a\x1e\x40\x36\x5c\x7e\x2f\x8e\x26\xe5\xd7\x60\x70\xe1\xb6\x10\xad\xc1\xeb\xa9\xc1\xd4\x0d\xbf\xf9\xcf\xd9\x86\x56\x35\x07\xe9\x5a\x6e\x75\x86\xbe\x97\xa6\xe9\x87\x5c\xdc\x8d\xc8\xe7\x7f\xd0\xcf\x3b\xdf\xff\xc3\x81\xfc\xf6\x81\x60\xe6\x81\x30\x7c\x61\xee\x32\xf8\x8f\xdf\x1c\xc8\xa2\xfe\x89\x2e\xf6\xcb\xf4\x01\xe8\xdd\xb8\x58\x1f\xdb\x31\xf4\x9f\x76\x80\x3d\x87\xd7\x0a\x5f\xcc\x06\xd8\xff\x98\xe3\x56\xe9\x46\x38\xaf\xb4\x5b\x3c\x35\xf7\x3b\x76\x55\xa7\x5a\x7d\x67\x8c\x38\x9a\x61\x2d\x65\xfa\xdd\x4b\x11\xd1\xf1\xbd\xed\x5c\xed\xb0\x9b\x5e\x9d\x99\xec\xd9\x60\xc1\x42\x57\xab\xe8\xf4\x29\x30\x2a\xa6\x95\xd6\xff\x0c\x38\x44\x79\x4a\xd3\xed\x7c\x13\x78\x8c\xac\x41\x93\x1f\x2f\x0b\x30\x63\xe6\x5d\x68\x89\xff\x94\xa2\xc9\x79\xbb\x68\x9d\xfe\x44\xa1\x1d\xf7\x64\xf9\x9d\xf3\x61\xf2\xda\x86\xf6\xc3\xdd\x5f\x3b\xf6\x79\x00\x5d\xdd\x65\x44\x67\xfb\x93\x38\x7a\xa4\x73\xae\xce\x8f\xe6\x28\x7a\xae\xb3\x98\x76\x75\xe3\x4d\x44\xd8\xf6\xa0\x8e\x7e\x43\x18\xa2\x6e\xf3\x45\x57\xe6\x66\x06\x62\x69\xe3\xf1\x87\x03\x49\x61\xf0\x5f\x27\xf1\xb8\x7f\xf4\x6f\xa6\x0f\xc2\xe7\x07\x0b\xf5\x18\x2c\xe4\xe3\x7c\x7b\xc2\xe8\x9f\x75\xb1\xb6\x30\x74\xaf\x5b\xef\x19\xf3\xaf\x33\x00\xcb\x95\x71\xb8\x93\x00\x20\x58\xb6\x33\x20\x3f\x1e\xde\x28\xbe\xda\x2f\x93\xdc\x0b\x24\xb2\x9b\x22\x67\x08\x3b\xe6\x6c\x71\x4e\x5b\x87\xc9\x3f\x30\x73\x2f\xcc\xc2\x91\xe2\x22\xb2\x83\x8a\x61\x00\xe2\x71\x7e\xbf\x63\x90\x2e\x20\x2c\x8d\x5b\x9d\xe7\xc8\x7b\xe8\x7d\x5d\x3b\x5c\x14\x35\x7c\xe8\xe5\x3f\x43\x5c\x26\x7f\x73\x0f\xde\x54\x4f\x64\x93\xb5\x27\x49\xe7\xc7\x46\x64\x89\x4d\x0c\xc9\xea\xf3\x32\x44\xc5\xaa\x54\x7d\xf7\x3b\x17\x44\xd3\xea\xaa\x7a\x64\x8f\x11\xe2\x6d\x79\x46\xfd\x5e\x27\x3f\x72\xc2\x62\x83\xfa\xec\x33\x0a\xd2\x6c\x56\xab\x31\xfe\xf8\x24\xd2\x62\xf6\x41\x23\xac\xd9\x15\x5d\x6b\xc2\x05\x10\x55\xf1\xef\x3e\x60\xea\xdf\xad\x4c\x1f\x04\xaf\xc5\x8a\xee\x99\xaf\xa3\x0c\xde\xa5\xf7\xd5\x62\x6d\x2d\x59\xac\xf5\x0f\xfe\xd5\x3f\x2b\x76\x02\xb0\x3f\x5a\xcd\x5a\xd0\x02\x20\x54\xb0\xe3\x7d\x26\x2b\x80\x82\x03\x7f\x7a\x74\x16\xe4\x6b\xed\x96\x3a\xe3\x33\x81\x7d\x30\xdf\x46\x10\x74\x24\x62\x04\x37\x2d\x9d\x39\x2b\x7d\x74\x26\xea\x92\xc1\x59\x93\xef\x68\x49\x1e\xbb\xe9\x2a\xfd\x59\xd4\xff\x64\x91\xd9\x69\x5d\x17\x54\xf1\xb2\xb9\x05\x5e\xab\x13\x5d\xde\xa4\x69\x59\xce\xe4\x1e\x7e\xe7\x5c\x34\xa3\x92\xc8\x65\xd3\x10\xd5\x19\xf4\x09\x6a\xa0\xf7\x53\x35\x67\x6e\x2d\x1a\x44\xc9\x50\xcd\x1e\x0b\x46\x93\x74\x7f\xe0\x89\xc3\xcf\x50\x4f\x3d\x02\x3e\x75\x50\x09\x8d\xa3\x1c\x56\xb3\x79\xf3\x12\x0d\xd4\xf3\xc2\xdf\x7a\xdd\x8a\xd6\xe9\xa8\xab\x55\xbc\xe0\x42\x2f\xeb\x00\x40\xb6\xdf\x62\x9f\x55\xaa\x8c\x73\x90\xa1\x7f\x33\xfd\x50\xa8\x0b\xfe\x49\x63\x0c\x3d\xab\xef\xdb\xbf\x1c\x50\x03\x63\xbe\xbd\x3a\xe9\x5f\xfd\xf7\x68\x0c\xc0\xee\x3e\x56\xfd\xec\x3d\x00\x82\x9b\xb6\x46\xc4\x8f\x02\x28\xe4\xf2\x5e\x0a\x36\x87\x2e\x0d\x0d\x91\xad\xee\x91\x60\x64\x3c\x2d\x7f\xcb\x96\x05\x7b\xe3\x74\x9e\xe0\x62\xee\x8e\x1d\x0c\xdb\xa0\xf9\xc3\x70\x1c\x4b\x4c\x95\xd3\x1a\xd1\x2b\xc3\x74\xf2\x35\x74\x9a\x74\xe2\xb1\x3d\xe5\x3c\x94\x26\xad\x65\xe8\x58\x8d\x9e\xbe\x97\xba\x20\xfa\xe6\x7e\xba\xfe\x2d\x42\x1d\x7a\xaa\x9b\x68\xe8\x88\x1f\x44\x6b\x86\x45\x0c\xb8\x55\xe5\xb0\x25\x68\xae\xae\xc9\xef\x5c\x07\xa9\x85\x5c\x07\x27\x25\xf2\xdc\x45\xcc\x80\xc8\xa5\x28\x38\x31\x89\x65\xe1\x59\x94\xc8\x5f\x13\x31\x53\x42\x9b\x92\xc7\xd0\x4f\xcc\x9a\x70\x40\xa9\xff\x5d\x11\x66\x4a\xc4\x01\x94\xc5\xfe\x7b\x0e\xf4\x30\xd6\x61\x51\xff\xfd\x2f\x07\xf4\x8c\xc6\xd0\x3f\xc7\x19\xfa\xe7\xe5\x7f\x39\x18\x66\x0e\x00\xd3\x07\x22\xb1\x0c\x60\x5f\xd8\x26\xff\x08\x37\x00\x39\x7d\x8e\x16\x9f\x78\x40\xd4\x57\x0b\x84\x3b\x35\xc3\x69\x83\x1c\x09\x3d\xcb\x8f\xa0\x60\xbf\x4c\x51\xcb\x04\x00\x17\xb8\x04\x1f\x65\x70\x19\x9b\x88\x35\x53\x3b\x46\x29\xc1\x1e\x64\x51\x49\x37\xb5\x65\xb0\x3b\x85\x2b\x49\x2f\x35\xca\xb1\xda\x53\xd1\xa4\x61\xd2\x32\xac\xe8\x6a\x86\x06\x2b\x61\x3f\xe6\x78\xbf\x57\x2b\x59\xf5\x1c\x16\xf8\x82\x5b\x73\xad\xca\x3e\xcc\xee\x93\x9d\x66\x89\xd2\x10\x76\x68\xfa\x92\xfa\x4a\x25\x0b\xec\x3e\x66\x49\x78\xa5\x60\x08\xa2\x58\x87\xd2\x69\xb9\x53\x10\x07\x7c\xb2\x3d\xb2\x6b\x10\x5f\x70\x90\xda\x29\xbb\x7b\x9a\x0c\x64\xe9\x2d\xb2\xdf\xbf\x3f\x05\x36\xd9\x34\x80\xeb\x27\xff\x3d\x07\x17\x7d\xc1\xa6\x97\xfc\xab\xff\x3e\x67\xdc\x0f\xf7\x18\xfd\x5e\x6d\x63\x70\x30\x57\xff\xd5\x7f\xd3\x79\x17\x6b\xf8\xcc\x62\xbe\x58\x58\x1e\x00\xf7\xe5\x35\x9c\xfe\xf6\x00\x52\xb9\x3b\x4f\xb8\x3b\x01\x10\x8b\xf7\xd6\xd8\xbe\x80\x6e\x3d\x92\x70\x3f\x93\x7f\x30\xfc\x02\x01\x5e\x06\xb2\x37\xf5\x64\xc0\x2a\x0c\x91\x1f\xd6\x89\x02\x95\xa4\x18\x25\x11\xa6\xcf\x81\x86\x07\xac\x3a\x96\xa9\x7a\x90\xd8\x81\xfd\x3c\xd3\x85\xff\xc0\xe4\x1e\x54\x8f\x60\xcf\x1a\xab\x09\x3b\x94\xa3\xb1\x97\xed\x97\xd5\x4c\x94\x64\xb1\x97\x7d\xd7\xd5\x76\x2a\xa0\xd8\xcf\x51\x67\xd5\x24\x05\x65\x10\x43\x47\x95\x72\x98\x3e\x0f\x4c\xde\x41\x7a\x23\x00\xd4\x8b\xe4\x49\xb2\x03\x00\x55\xf0\xaf\x73\x60\x78\x81\x7f\xa0\x32\xb8\x27\xa6\x0f\x44\x27\xc7\xbf\x1c\x10\x33\x0f\xe5\xbf\x1c\x4c\x36\xe3\xfa\xc7\x74\x2c\x56\xff\x0d\x8b\xd5\x2f\x0b\x80\xf3\x33\xeb\x0f\xf7\x77\x00\x92\xf2\xdb\x2a\x7f\xe7\x3f\x28\x00\xe8\x88\xf0\x37\x19\xdd\x80\x0e\xd3\x52\xe1\x4e\x7d\x1f\xa8\x77\xf6\x13\x2b\xd2\xe9\x87\xf3\x01\xdb\x25\xba\xc8\x89\x70\x34\x4a\x58\xaa\x5d\x33\x16\x12\x53\x36\xc8\x3c\x21\x7d\x03\xff\x03\xce\x72\xfb\x08\xef\xc0\xe6\xd8\x67\xf9\x40\x35\x6e\x20\x9c\xe6\x53\x5c\xaf\xd2\x00\x4a\x57\xf5\x14\xb7\x29\xa7\x03\xf7\x1d\x71\xa5\x5c\xc5\x33\xb0\xbf\x65\x8d\x62\xba\xfc\x69\x20\x76\x89\xc9\x7f\x94\xa3\x82\xe6\x87\x24\xf9\xbb\x72\xec\x10\x30\xb9\x46\xf6\x11\x93\x77\x90\x59\x09\x9f\xa0\x50\x6c\x42\xf2\x33\x00\x7c\x10\x7a\xf8\xfb\x1c\x64\xec\xf7\x61\xae\xff\x9b\x03\xba\xce\xe0\x24\xff\xc7\x07\xc1\xeb\xdf\x7d\x10\x2c\xbe\x58\xdd\x9a\x19\x75\x07\x00\xc7\xc5\x95\x9a\x8e\xd1\x00\x22\xa1\x1b\x2f\x5b\xdf\x07\x50\xaa\x62\x5b\x6d\xaa\x05\x40\x36\xe1\xb9\x66\x30\x09\xdf\x8c\xf7\x08\x5c\xd0\x7d\x0f\xc3\x76\xfd\x42\xba\xda\x8d\xd0\xee\x9d\x29\xba\x4b\x63\x12\xde\x04\x3b\x8a\xec\x51\x7f\x03\xf7\x62\x05\xc5\xf7\x12\x2f\xc0\xdd\x14\x71\x71\x25\xfc\x01\x68\xca\xa5\x8b\xb5\xab\x5a\xc3\xf1\xe3\xc1\x52\xc2\x4c\xee\x41\xe1\x22\x5c\xb8\xb8\x4e\x02\xaf\xb8\x06\x42\xea\xfa\x64\x8e\xcb\xe7\x40\xd4\x83\xb5\xd2\xb3\xb2\x75\x90\xf5\x7c\xb5\x54\x81\xcc\x67\x38\xd0\xa7\x2f\x15\x22\x13\x09\xc5\x5f\xd2\xa5\xd6\x48\xb7\xc2\xc3\xa9\x55\xe2\xa3\x32\xb2\xf0\x1e\x0e\x88\x7b\x32\x39\x98\xef\xc7\xff\x1f\x1c\x90\xf3\xbf\xcf\x81\xe3\xc8\xbf\x1c\x4c\xea\xf6\xc5\xfa\x5f\x1f\x08\xa6\xfe\xef\xd4\x0d\xc0\xad\xcb\xfa\xc0\x3a\x1b\x40\x78\xcd\xfa\x25\x66\x5b\x00\xe4\xbe\x6c\x4b\x33\xa4\x02\x68\x98\x72\x5c\xa4\x3c\x07\xd0\xf3\xe5\x75\x21\x7f\x02\xb0\x6c\xd8\xfb\x42\x2b\x1e\x50\x97\xd7\x02\x86\x1a\x8e\x40\xf7\x7e\x2d\xb8\x86\x34\x05\x23\xa1\xcb\x84\xad\x08\x74\x18\x8c\xa5\xef\x3f\xab\xa6\x02\x2f\xd3\x3d\x44\xf7\x29\xdd\x86\xd9\xdc\x7d\x42\x6b\x94\x8a\xe0\x55\x51\x95\xc8\x0b\xc5\xfb\xd0\x58\xfe\x42\xec\x80\xc2\x4e\x78\x70\x4e\x5b\x4c\x40\xce\x03\x1a\xae\x1b\x89\x65\xca\xbe\x85\xcb\x77\x95\xc4\xcb\x65\x37\xc3\xb9\x16\x7e\x89\x3d\xd2\x3b\xa1\xa5\x63\xb9\x68\x96\xb4\x03\xd4\xf5\xb7\x89\xe3\x25\xeb\xe1\xeb\x97\xaa\xfd\xbf\x7e\x32\xae\x77\x2f\x63\x3f\x3c\x61\xf8\x9c\xd4\x31\xee\x87\x0b\xaf\x17\x2b\x33\x0f\xe5\x37\x07\x53\xba\x58\xa3\x7f\x2d\xd6\x00\x59\x06\xf7\xc0\xb8\x9f\xcc\x22\x17\xab\xd5\x28\x00\x3b\xba\x42\xd9\xd4\x02\x60\x9f\xeb\xea\x77\xfa\x5a\x00\x92\xec\x1b\x77\xe8\xa4\x03\xa8\x86\xed\xd8\xab\x4d\x03\xd0\x7e\xcc\x69\xa7\x19\x04\x60\xca\xc6\x95\xaf\xae\x0e\x60\x7b\x8f\x67\x19\x71\x0c\xc0\x6d\x23\x2f\x9d\x18\x0a\xe0\xa7\xcf\xdf\xac\xf6\x00\x20\x2c\x48\x60\x9d\xaa\x32\x40\x1c\xef\xbe\x1f\x2a\xd7\x81\x9a\x2a\x2c\xf8\x46\x29\x16\xe6\x72\x7b\x04\x27\x15\x09\x30\x5a\x78\x47\x58\x4c\xbe\x0d\xbe\x95\xba\x0a\xfb\xca\xa0\x80\x9e\x8e\x13\x14\x92\x9e\x04\xea\x45\x73\xc1\x04\xe9\x50\xf8\x76\xeb\x94\xf0\x7e\xe9\x00\xe8\xbd\xcf\xb1\xff\x89\x64\x0a\x4c\xb4\x18\x09\x05\x4b\x6e\x81\x89\x0e\x6e\xa1\xf3\xcc\xe7\xc0\x7f\xfd\x80\x98\xb9\x58\xbf\xfd\x70\xb4\xfe\xc3\xc1\xb4\x33\x38\x18\xc6\xfb\x03\xd3\x0f\xc5\x9a\x51\x8d\x18\x1c\x21\x89\xc1\x91\xe8\x9f\x04\xe0\x7d\xc3\xaa\xa0\x5d\x0b\x20\xca\xb6\xf6\x87\x06\x0b\x80\x02\x65\xb3\x26\xb1\x11\x80\xf8\x72\x47\x08\xa1\x19\x80\xf2\x96\x6d\x0b\xf1\x12\x80\x65\x38\xc7\x77\xb5\x8f\x00\xf6\x63\x9c\xe7\x09\xdc\x00\x6e\xcb\x79\x78\x55\x6f\x01\xf8\x7b\xf0\xee\x50\xbd\x06\x10\x16\xc3\x77\x56\xf9\x2d\x40\x8c\x24\xdf\x01\x45\x14\x20\x29\x9a\x2f\x42\x3e\x0b\x20\x7b\x8c\xcf\x5f\xae\x06\xe0\xf0\x6a\x7e\x21\x39\x1c\x40\xb1\xe1\xbe\x12\x99\x0d\x00\x15\xaf\xf6\xb1\x49\x07\x00\x9c\x53\xdb\x77\x4f\xea\x00\xc0\x55\x69\x81\x7d\x52\xe6\x40\xbf\x75\x55\x50\x5f\x52\x00\xa0\xf1\xb9\xc0\x42\xd7\xda\x0e\x8b\xba\xff\xbf\x1c\xc4\x5a\x03\x15\xe2\xdf\x1c\x84\xf4\x5a\x42\xec\xfa\x43\xff\xcb\x41\xe8\xf4\xe8\x08\x72\x45\x02\x18\xda\x1a\x78\xee\xa3\x01\x98\x84\x5a\x1c\x11\x77\x07\x30\x3d\xe3\x7c\x48\x61\x05\x80\xe9\x57\xff\x1f\x44\x31\x78\x61\xbc\x22\x81\x5b\x9b\x07\xf2\xf5\xdf\x1f\xb4\xd0\x6f\x01\x5b\xdd\xe4\xb2\x7b\xc6\xdf\x60\x07\x39\xbd\xe6\xb8\x85\x0d\x56\xa3\x79\xab\x99\xcd\x8e\x1b\x6b\x22\xe1\xbb\xe4\x6c\x5a\xb0\x03\x84\xbe\x61\x1f\x7b\x0f\x2c\x5f\xad\x67\x7a\xb3\xbd\x11\xf6\x01\x7f\x89\xde\x67\xed\x0b\xc2\xaa\x77\x11\x5d\x73\x87\xe9\x71\xd5\x26\x24\xc8\xcc\xf0\xc7\x98\x6a\x32\x52\x6f\xfc\xee\xd3\x26\x35\x43\xc4\xdb\xfc\xc0\x3b\x16\xb5\x15\x48\xab\x89\x58\x57\x0c\xe1\x2e\x52\x64\xd6\xf0\x82\x93\x50\x8d\x7c\x33\x6e\x79\xe6\x4a\x70\x44\xd9\x0d\x6f\x3f\x3e\x42\xb8\x8b\x92\x0d\x84\x1e\x48\x10\x5d\x50\x33\xfd\x81\xc6\x30\xe2\x0e\x34\x8d\xb2\xe0\x16\xa6\xb5\x66\xb1\x7f\x86\xfe\xcf\xd0\xf9\xd8\x3b\xd5\x14\x96\x25\xfc\xc5\x41\x5c\x50\xd3\xdb\x88\x07\x50\x1d\xc7\xb7\x6f\x35\xfe\xb3\x0e\x4c\x2e\xc6\xb0\xda\x70\xad\xc0\x53\x00\xb3\x10\x73\xaa\xa4\x0f\x80\xb9\x87\xe3\x23\x45\x3c\x20\xe6\x29\xbe\x1f\x48\xda\x70\xd7\xe4\x6a\xec\x5b\x9d\xc3\x10\x65\x68\x97\x57\x60\x78\x19\x78\xf4\xec\xca\xb8\xcd\x27\xb1\x01\xed\x2f\x35\xda\xd6\x1f\xb1\x23\x9a\x1d\x8f\x74\xed\x1f\x60\x1e\xea\x59\xdd\xc2\x8e\xd7\x30\x7b\xa2\xff\x30\x38\x7e\x62\xf2\x2f\x58\x0f\xbe\x9d\xfe\xcc\x7a\x96\xf6\x0d\xcf\x8d\x88\x59\xe4\xff\x62\x53\x13\xa6\x63\x56\x6f\xbe\x45\xaa\xa9\x20\xca\x96\xb8\x81\x87\x84\x00\x44\xc6\xf2\xcb\xdb\x1d\x04\x01\xe4\x80\xd9\xa3\x97\x45\xa4\x95\x88\x85\x65\x5c\xbb\x0e\xd1\x13\x79\x66\xca\xd5\x6a\x40\xbc\x86\x7c\x37\x61\x7f\x98\x46\x22\xa1\xcb\x8d\x9d\xee\x65\x90\xf0\xa8\xa1\x81\xcd\x1d\x12\x89\x1d\x0d\xd5\x7b\xff\x17\x17\x94\x48\x5a\xf8\xfe\x01\x77\x4f\xe9\xd1\xff\xc5\x41\xc8\x8b\x2a\x9f\xda\x50\x0d\x80\x6f\x52\x6d\xdb\xaa\x0a\xa0\x7d\x83\xa8\xb9\xab\x09\xc0\x70\x40\x0b\xe3\x16\x03\x30\x1d\xd7\xef\x12\x7c\x0e\x60\x76\xc7\x2c\x57\xe2\x2d\x80\xe5\x33\x7b\x1e\xa5\x3b\x00\xe6\x9f\xbc\xc7\x88\x3e\xf0\xc8\x74\x77\x74\xa3\x76\x3d\x18\x1b\x2b\xe7\x6e\x32\x39\x8c\x51\xf5\x03\xcb\x38\xad\x4e\x60\x8d\x3a\xe9\x35\xc7\x6d\x7b\x30\x4f\xad\xb4\x47\xb1\x4e\x9c\x98\xb8\x7a\xd7\x1b\x7f\x97\x08\x6c\x09\x69\xd7\x68\xa2\x9b\x23\x46\x21\x58\xd1\x50\xa7\x51\xec\x39\xfe\x0b\xbd\xd1\xc6\x9d\x7a\x13\x3f\x48\x1f\xb0\x4e\xf9\xd1\xaa\x56\x45\xff\x66\xdd\xf5\xf9\x0a\x81\x4c\x07\xeb\xec\x77\x56\xc4\x3d\xc8\x36\x6b\x62\x17\x4a\x6c\x46\xf0\x56\x32\xcf\xef\x92\x1c\x90\x60\x8b\x9b\x4f\xa6\x48\xdd\x48\x85\xb9\xf2\x23\x75\x75\x7b\xa4\xc6\xec\x5d\xd3\x16\xf5\x69\xe4\xb1\x19\xe5\xce\x7d\xf5\xaf\xe8\x4a\xe3\x17\xb7\x26\x35\x36\xa0\x6a\x86\xc7\xff\xe6\xa3\x16\xf5\xff\xdf\x3e\x08\xcc\x3c\x88\xc7\xca\x1c\xab\xb7\x03\x28\x12\x15\x55\x37\x4a\xfc\xe1\x20\xf4\x9f\x11\x5d\x76\x57\x02\x18\x7b\x68\x9a\x71\x59\x02\x58\x38\x51\x0a\x05\xae\x01\x58\x1e\x33\x2b\x97\x7a\x06\x60\x15\x6a\xfb\x4e\xa9\x1e\x7e\x59\x06\x78\xdd\x55\x5f\x06\x47\xcd\xbd\xa2\xf7\xe9\x95\x83\xbc\x89\x7d\x0e\xc1\xcc\x1d\x9b\x30\x58\x5a\xda\x67\xbd\x1e\x0b\xa3\x70\xd7\x70\x39\xad\xc2\x38\xc9\x21\x8f\xcb\x5d\xdf\x63\x7b\xd5\x1f\xf6\xe1\x5c\x59\x31\x16\x62\xef\x58\xbd\x1b\x27\x3a\x41\x54\xa1\x45\xb9\xaf\xc7\x2a\xd4\x7c\xe9\xb1\x76\xb7\xa7\x8e\x13\x54\xe8\x2e\x0e\x7b\xbe\xb1\x11\xf5\xe8\xde\x0e\xc5\x03\x27\x48\xeb\xe8\xa5\xf6\xb1\xbd\x40\xa2\xd2\xab\xec\x4f\xbd\xcc\x53\xd7\xa4\x8f\xdb\x06\x3e\x0d\xd0\x68\xa1\xcf\xd8\xf6\x3e\x72\xd4\xf8\x8c\x10\xac\x6d\x9b\x52\x35\x5e\x23\xa9\x16\xc8\xdd\x49\x0d\x5f\xa4\xdb\xb4\xaf\xae\x50\x4b\x18\xa9\x37\x8f\xba\xd1\xab\x99\x8d\xae\x32\x91\xfd\xfb\x5c\xf8\x57\xff\xe7\x62\x53\x39\xbd\xfc\x1d\x80\xf8\x3b\x45\x93\x35\xe5\x7f\x38\x08\x0d\x9a\xb2\xe6\xd6\x30\x00\x43\x44\xcd\x92\xad\x15\xc0\xac\x83\x74\x9d\xd3\x09\xc0\x4a\x5b\x37\x53\x20\x17\xc0\xa6\xdb\x58\x53\xa2\x06\xc0\xc6\xd2\x26\x4b\xc5\x0b\xde\x58\x47\x7b\xee\xd5\xdc\x0d\xf9\x16\x85\x11\x67\xf4\xda\x80\xcb\x94\x3f\x87\xdf\x62\x1d\xf6\xd0\xd0\xb9\x54\xc8\x76\x16\x23\x51\x0e\xd5\x2e\x77\xa9\xc3\x96\x92\x4f\xb7\xbc\x76\xd7\x47\x5b\x35\x8e\xbd\xdb\xe1\xa9\x8b\x9e\x25\x65\x4e\xac\xf1\x0a\x60\xf2\x50\xb4\x2f\x84\x57\xb4\x6e\x17\x8b\x9f\xe2\xc4\x5c\x1a\xe6\xfc\xf2\xb3\x14\x29\x99\xbe\xcb\xb9\xb4\xbf\x4e\x9d\x8b\x6e\xeb\x48\x7b\x75\x49\xa3\x93\x6e\xe0\xbc\xe7\x79\x91\x46\x15\xbd\xde\xfe\x61\xab\xb4\xe6\x05\x7a\x93\xfd\xc7\xe6\xa7\x5a\x6b\x91\xe5\xb6\x3d\x8d\xe7\xb5\x08\x88\x8a\xf5\xdc\xed\x42\xad\xeb\x48\x98\xd5\xde\x1b\xd7\xc8\xdb\x90\xcb\x16\x02\xd7\x22\xc8\xd2\x48\xdf\xe2\xd3\xed\xdf\x73\x81\xe5\x8c\xfc\xc2\xf7\xcf\xcc\x3c\x08\xa9\x6f\x0a\xfb\xd7\x76\x02\xa8\x50\x14\xfc\x37\xa6\x00\xe8\x18\x29\xde\xdc\x5a\xf5\x87\x07\xb1\xfc\x49\x6a\xe7\xaa\x05\xb0\xd7\xd3\x76\x9c\xbf\x1f\x1c\xc7\x8d\x56\x4b\x69\x00\xd8\x1b\x59\xa1\x2a\xf7\xa1\xce\x6e\xa7\x3b\x27\xb9\x0d\xdc\xac\x3a\xc2\x0f\x1b\x89\x61\x5f\xcc\x6d\xb2\xce\x58\x37\x63\xb9\x46\x4f\x4b\x6e\x3b\x4a\xfd\xe6\xc4\xda\xb4\x05\x5a\xd7\x7b\x0e\xa2\x65\x1a\x9d\xef\x07\xbd\xf7\xa2\xce\xa4\x5b\xb3\xba\xbe\x1a\x68\x1b\xb1\x84\x86\xf7\x68\x9f\x5d\x4d\xec\xa4\x05\xbb\xdf\xf8\x9a\xab\x7e\x8a\x66\xee\x79\xf0\xc3\x7d\xf5\x1a\xda\x13\xb7\xc4\xdf\x5c\x18\x5d\xb3\x8e\xbe\xdd\x55\xbc\xb5\x51\x6b\x9a\xae\xee\xa2\xfe\x28\x84\x4c\xa4\x27\x3a\xa5\xde\xb7\x27\x5f\xa1\x3f\x70\x38\x78\x87\x97\xdc\x8c\xac\xb3\xdb\x52\xe7\x48\xae\x42\xac\xad\x1d\x6a\x0f\x6b\x5f\x43\xbc\xad\xb7\x5f\xe2\xd3\x31\x43\x6e\x58\xc4\xfd\xbd\x0e\xbf\xf5\x7f\xe1\x65\x51\x00\x82\x9b\x15\xf6\xb0\xee\x04\x90\xae\x96\xfd\xb6\xb6\xfe\x0f\x07\xa1\xf3\x51\x7e\x72\x4b\x15\x80\xb9\xa6\x12\x71\x67\x02\x80\xad\x00\xc1\x91\xb3\x16\xc0\xe9\x8a\x96\x8e\xc0\x0a\x00\x17\x6b\x03\x6e\x49\xe2\xef\x5c\xb1\x2a\x07\x3e\x17\x2b\xed\x97\xa0\x63\xe3\x13\x26\x61\xc2\x89\x7d\xb4\x08\xcc\x58\x6f\xfd\x15\x73\x34\x7e\x55\x12\xe1\x7c\x1e\xc5\xf4\x57\xd7\x4c\x79\x10\x51\x3f\x1d\xcd\xd6\x4a\xbf\xbd\xa8\xbe\x66\xec\xa0\xad\xdf\x39\x94\x4d\x5d\x76\x2e\x20\x40\x14\x65\x25\x09\x50\xc7\xbc\x55\x7e\x6d\x53\xb7\xa2\x0e\xfb\xe0\x3f\x47\x6a\x10\x68\xaa\x5e\xe9\xfd\x9f\x34\x1d\x68\xf6\x5e\xb2\x5d\x42\x5a\x2e\xb4\x3c\x4f\xbb\xf6\x04\xb2\x3d\xad\xdd\x7d\xfa\x49\x0a\xf9\x11\x7d\xb3\xdb\xe6\xa6\x02\x6d\x7b\x7a\xa0\xb3\xfb\x1d\xaa\xf6\x04\xbd\xc2\x69\xd5\xad\x39\x9d\x43\xf4\x1e\x07\x9f\xeb\x31\x3a\xe1\x08\x9f\xed\x83\x4b\xd7\x74\xa7\x10\x75\xdb\x75\xd5\x86\xba\x99\x48\x9e\x95\xce\x5f\x7c\xd4\x7f\xf5\xff\x46\xd9\x03\x2b\xcf\xfe\xd1\xff\x89\xfc\x32\x1d\x1b\x2e\xfe\xe1\x20\x2c\xab\x15\x13\x76\x96\x02\xd8\xa7\xa8\xfa\xec\xe9\x01\x70\x49\xd1\x2c\x11\xe0\x00\xf0\x90\xd2\x13\x93\x98\x03\x70\x53\x30\xc7\x54\x53\x20\xcf\x29\xd0\x89\x53\xf7\x2a\xec\xb5\x7b\x15\xdc\x60\x76\x12\xab\xb5\x32\x4d\xcb\xb0\xeb\xc0\xc4\x4d\x45\x4e\x38\xbb\xa9\xa3\xb7\x0d\x56\x5c\xb3\xf0\xce\x40\xb9\x75\x1a\xda\x9e\x07\x5a\x22\xbd\x9a\x53\x9f\x7e\x06\xeb\x32\x7d\xb3\xa8\x26\xea\x72\xd4\x40\xff\xd5\xa3\xf7\x35\xde\x50\xcd\x02\x6e\x0c\x1e\xd4\xfc\x42\x6d\xf3\xd3\x67\xfa\x44\x75\x14\x92\x31\x1a\xd1\x67\xf3\x93\x59\x9d\x06\x9a\x9a\x4f\xc3\x83\x2c\x9d\xf7\xb4\x97\x1e\x67\xef\x09\xeb\x4a\xd2\xd9\xdd\x0e\xd7\xe7\xea\x56\xd0\x1d\x5d\x0e\xd7\x2a\x50\x0c\xe8\xb7\x1c\xa7\xae\xdc\xd7\xe3\xa6\x3f\x76\xac\xae\x1e\xd3\x5b\x86\x70\xd9\x1d\xa8\xd2\xd5\x53\x44\x02\xad\xef\xfe\x79\x5f\xf8\xaf\xfe\x2f\x74\x5e\xfa\x35\xeb\x7e\x00\xb9\x40\x99\xba\x75\xa6\x00\x9a\x5d\x32\xb8\x8d\x44\x00\x23\x51\x19\x96\xcd\xe7\xfe\xe2\x41\x9c\x14\x6b\xd8\x5d\x01\x3c\xba\x48\xe1\xfc\x39\x00\x5e\x72\xba\x57\x24\xf8\x01\x3c\xf3\x4c\x23\x55\x76\x43\xbe\xcb\x45\x87\x77\xba\xc5\xb0\xc7\x41\x21\x70\xb3\xd9\x5b\x2c\xdd\xba\x33\xf5\xbc\xa3\x1f\xda\x65\xce\x7f\xbc\xcc\xab\x07\x0d\x32\x98\xba\x36\xe6\x37\x88\xbc\xd6\xb5\x7c\xf6\x2b\xc4\x1f\x39\xa3\xc5\xf1\xe5\x67\xa8\x24\x72\x5a\x63\xdb\x5c\x7e\xc8\xb5\x89\x61\x8d\x1b\x73\xc3\xc1\x52\xc3\x49\x9a\x63\x54\xbe\x20\xdf\xfe\xf5\xda\x3c\x54\xd6\x10\x6e\xa6\x4f\xd4\xd3\x20\xdd\x31\xea\xa1\xc0\xb6\x87\x8f\x74\x9b\x68\x04\xdf\x75\xcc\xbc\xb8\x3a\x54\xcf\x95\xf6\xda\xd3\xe4\xc6\x79\xbd\x06\xfa\x1a\xf7\x27\x57\x0f\xea\x2b\xd1\x1d\x5c\xf5\xab\x5f\xeb\x57\xd3\x2f\x39\x0d\x56\xbd\xd3\xcf\x42\x36\xd8\xc7\x9f\x8e\x34\xb0\x41\x78\xec\xff\xe2\x26\xff\xab\xff\xef\x5f\x2a\xdd\xc1\x5a\x0b\xa0\x70\x49\xd2\x75\xad\x3c\x80\xce\x76\x29\xbb\x8d\xcb\xff\x70\x10\x0e\xe6\xd2\xc5\xdb\x5e\x00\x78\x6a\xca\xf7\xed\xfe\x06\xe0\x73\x1d\x4f\xe6\xcd\x04\x08\xd0\x27\x93\xc4\x46\x00\xfc\xd6\x1b\x6f\x52\x3e\x02\x27\x3c\x64\xed\xde\xea\x1a\x63\xcf\x5d\x64\xfc\x56\x5b\x77\x60\x46\x76\x12\x49\xe0\x62\x8e\x5e\xb5\xc0\x17\xbb\xf8\x54\xa0\xeb\x8c\x64\x6b\x1d\x83\xa5\x90\x58\x8a\x60\xbb\x5f\xf8\x4b\x64\x95\xd6\x99\xef\x73\x51\x17\xa9\xcb\x35\x09\xb3\x53\x11\x43\xdf\x68\x64\xfc\xdc\x9a\xc8\xc4\xc1\xc7\xda\xa4\x39\xff\xf0\x47\x4c\x9f\xa8\x67\x74\x8a\x27\x95\x35\xd4\xf4\xb1\xbb\xde\x65\xaa\x5c\xc8\x91\xc6\x01\xfd\x0c\x6a\x79\x90\xd0\x6d\x2d\x03\x56\xda\x16\x7f\xe2\x8d\x4e\x83\x5a\x9a\xb1\xef\x85\xab\x4e\x06\xb7\x68\x5f\x3d\xcd\xaa\x23\x0c\x2f\xd0\xd9\xdc\x81\xc9\x43\x55\xca\x1b\x45\xd2\x2f\x3b\x7b\x9f\x24\x19\x8d\x21\xcb\x1d\xb2\xfe\x9c\x0b\xff\xd5\xff\xc5\x97\x8b\x77\xac\xaa\xfe\x2b\x07\x01\x91\xd8\xb1\xe1\x0a\x80\x55\x8a\x98\xc0\xc6\xc3\x00\x6e\x24\x89\xd9\x6d\x02\x00\xbe\xa2\xb2\x07\xd9\xbe\x03\x04\x22\x2a\x37\x78\xdb\x01\x42\xef\x69\x70\x8a\x46\x00\x04\xcf\xea\xf7\x28\x25\xc1\x61\xff\xdd\x36\x46\x94\x1f\x58\xbd\xdb\x1d\xaf\x8d\x36\x37\xb0\x6d\x0e\x31\x09\x2d\xee\x7e\xa8\xbd\x95\x5c\xd1\xcb\x80\x00\x24\xd6\x64\x6d\xad\x51\x04\x4a\x1f\xa3\xdc\xec\xdc\x12\xd3\x49\xdf\x46\x76\x9b\x30\x4d\x72\x1c\xa7\x93\x93\x67\x57\xc4\x6f\xfb\xa8\xa7\x73\x75\x76\x7f\xbc\x5e\x8f\x0f\x25\x72\xb6\x32\x36\xae\xfd\x89\xbe\xc4\x2c\x35\x46\xfc\x37\x0f\x75\xd2\x30\x60\xee\x47\xb8\x64\xfd\x25\xc3\x31\xaa\x4d\x48\xe1\x75\x2f\x23\x56\x2a\x35\x20\xf8\x0a\xab\xb1\x21\x8d\xc7\xbf\xf4\x7c\xa6\x89\x06\x2d\xd8\xf7\xe0\xe9\xb3\x26\x85\xb4\x61\x2f\xc1\x53\x7c\xa6\x2b\xe8\xab\x3d\xf9\xcb\xb6\x98\xee\xa4\x5b\xb9\x5d\x39\x7e\xcd\x94\x97\xde\xe2\xbc\x72\x7e\x1d\x14\x96\x2d\xbc\x37\x30\xf4\xff\xbd\xd6\x92\xb7\x57\x1c\x03\x90\xe0\x97\xd8\xb3\x5a\x08\x40\xdd\x58\xf4\xd5\x5a\x6f\x00\xe3\x1b\x22\x27\xd7\x53\x00\x1c\xf4\x45\x8b\x37\x99\x01\x78\x69\x89\xec\xd8\x2c\x0c\x10\x5c\x28\x6d\xc4\x76\x10\x20\x72\x44\xfe\x04\x57\x3f\x40\x8c\x88\xda\x0f\xe1\xd7\x00\xd1\xf2\xba\xa8\xd2\x01\xb8\x1e\xbe\xd3\x3c\x4c\xa7\xe9\xb7\x7f\x52\x99\xcb\x97\x18\x3b\xdf\x3d\xc8\x7b\x9b\xc6\xa3\xd6\xa1\x5f\x10\x16\xd3\xd0\xda\x5d\xb1\x86\x74\x36\xbd\x8e\xd7\x3c\xc9\xe7\x68\xde\xe4\x89\x69\xfb\x74\xf5\xcf\x25\x14\xf6\xe9\xfb\x69\x63\x6f\xc4\xf5\xa5\x67\xe4\x53\x43\x5f\x6c\x30\xe4\x98\x39\x99\xb2\xee\xb7\x3f\x12\x66\x2c\x33\x8b\xc5\xca\xdc\x2c\x30\xe5\x98\x33\x8f\xbe\x70\xd5\xde\x4c\x70\xae\x2d\x92\xf3\xe2\x09\x33\x6b\x2a\x21\x4c\xee\xff\x8b\x03\x2a\xf6\xb0\xd0\xa7\xb3\x78\xbe\x28\x7c\x62\x36\x4c\x7f\xe6\xbc\x63\xe1\x5c\x30\x9e\xef\x9f\xa9\xff\xef\x5f\x2f\x1e\xce\xca\x01\x20\xeb\x2e\x7a\x7d\xf5\x6a\x00\xed\x55\xc2\x97\xd6\x1c\x01\xb0\xe4\x16\xb0\x5b\xbb\x14\xc0\x6d\xa5\xe0\xc9\xf5\xaf\xff\xe4\x62\x44\x4b\x8a\xe5\xee\xe8\x06\x48\x5a\x2a\x6d\xc4\x11\x0b\x90\x5a\xac\x7c\x5d\x68\x29\x40\x8a\xb9\x66\x87\x7c\x24\x34\xc6\x8d\x19\xff\xd2\xb1\xc3\x8e\x84\xca\x39\xe9\xd9\x77\xa1\x92\x9e\x5e\xe1\xbc\x81\x1d\x88\x92\x83\x5b\x7e\x7f\x8c\x22\xf5\x94\xc5\xc6\x6b\x39\x29\xb7\x26\x58\x8c\x2c\x3b\x5f\x64\xaf\x1e\xe5\xd1\x5b\x35\x79\xeb\xc0\xa7\x5e\x2d\xc3\x4b\x53\x39\xb9\xf4\xf6\xa5\xc6\x35\xd3\x1a\xd9\xba\x0f\x7a\xcd\xac\xa6\xe3\xb3\x46\x98\xbe\x40\x37\x04\xcc\x3f\xce\xee\x4f\x7a\x79\x69\xce\xd2\x65\xf6\x62\x82\x5d\x55\x8f\x95\xe2\x9c\x61\x4c\x5b\xe5\x76\x2b\x0a\x75\x55\x84\x51\x59\xbb\x95\x2d\x35\x31\x54\xab\x84\xc5\xea\x0a\xf5\x7b\x50\x68\x31\xa7\xf5\x3e\x1a\x7f\x40\x5f\x21\xd9\x9a\x9b\x76\xce\x77\xe3\xe1\x49\x1b\x07\x5a\x8d\xcf\xe8\x81\x59\x1b\x1e\x3a\x97\xa7\xff\xfc\x3a\x48\xb6\xce\xf7\xcf\xd4\xff\x85\x33\x84\x9d\x56\x2a\x03\xe0\xf5\x84\xae\xad\xaa\x04\x30\xbc\xbe\x4f\x6e\xb5\x01\x80\xfd\x28\xcf\x3a\xd6\xb9\x3f\x79\x10\x51\x97\x78\xef\xae\x33\x00\x48\x8e\x14\xdc\xb9\x45\x1f\x20\xeb\x96\x98\xf5\x6e\x4e\x80\x3c\x1b\x79\xf2\x3e\x4e\x80\x03\x53\x04\x4b\x19\x17\xe8\xc9\x1a\xd3\x3b\x44\xbe\x81\x65\xc4\x5f\xb3\xa5\x3a\xee\x42\x52\xfc\xd9\x02\xbe\x87\x5f\x1f\xd7\x72\x0f\xcc\x91\x4d\xd6\xfd\xb2\xd4\xc1\xf7\xfc\xae\xec\xd9\x77\x35\x56\x0d\x2d\xd4\xc3\x61\x3d\x24\xb3\x0d\xdf\xa4\x8e\xee\x6c\x15\xb6\x58\x32\xf1\xb3\x50\xa9\x51\xc8\xf2\xd1\x24\x76\xd8\xe0\xd6\x1b\xeb\x8d\x53\x4f\x0e\x70\x5e\xf1\xb4\xf1\x9c\x7e\x9a\x75\xf5\x9c\xbd\x1d\x61\x46\x31\xa3\xa3\x92\xd7\x2e\x6c\x56\x38\x79\xb2\x34\xdd\xbe\x73\xf6\x68\xe2\x8b\xff\xf2\x2f\x47\xd6\xd9\x23\x54\xe3\x70\xf1\xdf\xfc\x8b\xb6\xbd\x1c\xcd\xd7\x5f\x23\xfb\xa9\x7d\x0b\xed\xa8\xdf\xd6\xcc\x35\xf6\xcd\xb4\x09\x6f\x25\x00\xdc\x06\xf1\x85\xcf\x59\x1c\x8e\x22\xd4\x65\x9c\x00\x62\xcf\x04\x6e\xb3\xf4\x00\x90\x36\xf2\x49\xae\x2c\x07\xb0\xdc\xc5\xbb\x65\xfe\xf3\x85\x5b\xdf\x9e\x18\x96\xa8\x3f\x1c\x44\xf2\x79\x8e\xe5\xab\x54\x00\x0e\xac\xe2\xd9\xb3\x5e\x0e\xa0\xd0\x41\xb0\x6a\x07\x0b\x40\xf1\x0e\xa9\x93\x7b\x65\x01\x4e\xe4\x2b\xf5\x4b\x9c\x84\x2f\x45\x2b\xc9\x0d\x5a\x79\x18\x7b\x9e\x87\xf9\x63\x87\xde\xef\x1f\xe2\xf7\x79\xba\x47\xdc\xe9\xb7\x0e\xba\x9c\xf0\x35\xf3\x42\x47\xa5\x0f\x4b\xa9\xdf\xe1\xb0\xc7\x53\x6e\x9a\x77\x32\x8b\x7e\x34\x8e\x38\xda\xf5\x37\x96\x78\xdc\x5a\xe3\x40\xf9\x65\x55\x52\x7e\x29\xc2\x29\x78\x22\xf8\xd8\xa7\xb3\xed\xce\x72\x93\x35\x05\x2b\xcb\x3c\x5d\x6e\x4f\x9d\x3a\x24\x7c\xfc\x96\xcb\xad\xe9\xc6\x6c\xf4\x68\xba\xeb\xe9\x19\xd9\xcc\x96\xfc\xed\x6e\x4b\x66\xb0\xd4\x3b\x07\x5e\xb8\xee\x9b\x5b\x11\xff\x36\x47\xd9\xb5\x66\x2e\x3c\x56\x3a\x53\xdc\xb5\x92\xca\x12\x59\x91\x56\xec\x1a\x4b\x4d\x0e\xb3\x4d\x2e\x75\xc5\xa8\x1d\x21\x2a\x49\x32\x2e\x5f\x69\x76\x01\x1c\x09\xf7\x5c\x92\x68\x57\x7d\x0b\x00\x58\xf4\xf7\xb7\xcf\xaf\x03\x1f\x5d\x80\x67\x05\x27\x80\xc2\x08\x5f\x05\x4b\x07\x00\x65\x27\x17\x0f\xcb\x06\x00\x07\x85\x3d\xb1\x2b\x68\x00\x7e\x61\x4b\x45\xfe\xd6\xfd\x72\x19\xdf\xeb\x17\x9b\xb2\x47\xcd\xaf\xc7\x29\x5d\xee\xe0\x0d\xf1\x00\xe7\x84\x84\xd8\xd9\xb2\x00\xaa\x57\xc9\x1c\xd9\xcf\x0b\x70\xce\x9b\x80\x90\x96\x8c\x8d\x94\x9e\x33\xac\xb6\x6b\xe9\x17\x3b\x94\xef\x54\x1a\x76\xb7\x75\x53\xb2\x7d\xd8\xe9\xec\x93\xb7\xf3\xa3\x38\x0e\xdb\x1e\x0d\xb9\x72\x38\xc4\xfd\x6a\x69\xc9\xe7\xb3\xe0\x7f\xb0\xe3\x78\x85\x73\xd9\x6b\x1f\x8b\x9f\x19\xa7\x37\x16\x75\xfb\x2d\x19\xff\x59\x96\x9a\x4f\xf5\x53\x9e\xd0\x3a\x5e\xc5\xf4\x3f\xc9\x3a\xe2\xf7\x70\xea\xe4\xe1\x15\xe9\x81\x7e\x82\xd3\xb7\x73\x9a\x99\xf9\x3f\x09\x53\x7e\x7b\x67\x55\x53\x5e\xc6\xbd\xf4\x7d\x36\xdb\x93\xe8\x14\xb3\xc7\x57\x72\xee\x44\x4c\x65\xd4\xa0\x2f\xfb\xdc\x40\xd4\x68\xd4\xa4\x77\x26\xd5\x23\xdc\x28\x82\xe2\x95\x43\xe3\x0f\xfc\x1a\x76\xc9\xab\x81\x66\x11\x10\x08\xb0\xfe\xb1\xc0\xd0\x7c\x3f\x4c\xfd\x5f\xed\x2c\xd7\xbe\x15\xdc\x00\xa6\x84\x35\x03\xf3\xff\xee\xc1\x98\x7b\x67\xea\xdf\xcc\x1c\x80\xa2\x6e\xdc\x3f\xfa\x5f\xcd\x06\xb6\xa4\x95\x59\x00\x75\x2d\x3c\x45\x9b\xb3\x00\xee\xae\x11\x8d\xdc\xbb\x75\xf2\x70\x5d\x81\xb2\x94\xaa\xc7\x60\xf8\xe5\x34\xdd\xdd\x56\xce\xed\x7c\x95\x79\x36\xd9\x41\x5e\xf5\xb8\xa2\x32\xff\xaf\xe9\x0d\x95\x6d\x39\x52\x69\x56\xc7\xf8\x8e\x0a\xa5\x7e\xaf\x1c\x2c\x9b\xce\xa1\x26\x2a\x3d\xdc\x7f\xfa\x60\xea\xd2\xd8\xd0\xcf\x35\x55\x9d\x89\x42\xd1\x53\x3f\xcf\x9d\xf6\x89\x33\x8e\x2e\xfb\x15\x7e\x52\x38\x66\x73\x14\x3a\xf1\xf5\x58\x69\xd4\xed\xc8\xf8\x29\x96\x23\xa3\x91\xec\xe1\x91\xd3\x66\x79\x5f\x23\x56\x86\xdd\x99\xc1\x65\x17\x85\x15\x84\x76\xcd\xbc\x4e\x57\x0c\xbd\x1b\x92\x30\x1b\x9a\x5c\x1f\xa2\x18\x7c\x79\x4e\x3c\xde\x22\xd8\x28\xf0\xf2\xdc\x87\xa8\x91\xc0\x9f\x81\x8f\xa8\x46\xe1\xd3\x01\x52\x81\x77\xa8\x7d\x21\x9c\xfe\xf9\x01\x81\x34\xe5\x40\x12\x00\x8f\xc8\xbe\x17\xcb\x26\xfe\x57\xff\xb7\x65\xf8\x7c\x30\x75\x4f\xe6\xdc\x2f\xd3\x0f\x83\xd9\x7f\x2d\x63\xfe\xf7\xfe\x81\xc5\xfa\xf4\x25\x5b\xdc\xca\x0b\x73\x5f\xdb\x0f\x0a\x14\xec\x71\xff\xb2\xb6\xc5\x52\xce\x4d\xfe\xc4\x2b\xce\x46\x3b\x4d\x9c\xf1\x85\xc6\xc4\x9b\x99\x66\xa8\xf7\xc9\xf3\x7d\x17\x31\xcf\x0f\x89\x5c\x47\x9c\x4e\xb5\xc6\xff\xca\xd7\x4e\x95\x28\x15\x2f\x15\x3f\xfe\x36\x3a\xe6\x78\x6b\x23\xf7\xc9\x84\x90\xac\x63\x3e\x83\x21\xe5\x1f\x03\xa3\x0a\x1d\x7f\x69\x9f\xf4\x0f\x68\x3c\xfc\x6d\xa2\xaa\xd8\x30\x60\x6b\x1e\x7d\x6a\xc5\x91\x5a\x7f\xaf\x9c\xa4\xa9\xa9\x83\x49\xfe\xeb\x33\xca\x66\x70\xd9\x91\xcc\xbc\x17\xdf\x7d\x29\xf1\xb3\xe7\x93\x42\x98\x7e\x1f\x3e\x1c\x09\x7e\x73\x4f\xa2\xf3\x7e\x73\x1f\x5a\xb1\x89\xd4\xbe\x10\x7e\xaf\xa5\x31\x79\xb4\xad\x41\x69\x5e\x6c\x91\x21\xb4\x58\x7f\x17\x00\x9e\x76\x4e\xd1\xa5\x77\x01\x94\x83\x77\x5b\x2d\x4d\xfa\xa3\xff\x7b\xfa\xe0\x2c\x71\x7f\xcd\xbf\x33\xe7\xbf\x99\x3e\x00\xd7\x19\xf9\xe7\x4c\x0e\x60\x51\xff\xa0\xb7\xf7\xdf\xd8\xf4\x11\x87\x1b\x99\x7b\x8b\xf2\xee\xdc\x7e\xe8\x8d\x56\xf7\x5e\xc9\x1c\xf1\xca\xc7\x9f\x5e\x8c\x13\x14\xb4\x3f\x5c\x7b\xff\x84\x60\xe4\xe9\xbc\xb1\xe4\x57\x93\x81\xcb\xd1\x08\xf7\xb4\xb4\x7a\xbe\x28\x4a\x36\x7b\x84\xea\x4d\xde\x62\xa7\xc3\xa6\x7e\xe5\xb5\xd0\x60\x5c\x48\x76\xcf\xbb\xb6\xbf\x3f\xbf\xe8\x94\x8b\xe0\x15\xfc\x04\x1c\x1d\x70\x79\x77\x2e\x6b\x6a\x53\xfe\x31\x17\xfe\xd3\x52\xd3\x0e\xb9\x37\x5d\xd0\xd2\xd9\x19\x91\xcc\x61\x17\xab\x13\x99\x33\xe3\xa9\x5f\x5d\x04\x8e\x86\xcf\x8e\x24\x84\xba\x88\x1f\x91\x98\x0b\x8a\xd5\x76\x2e\x39\xd4\x45\x65\x8d\xcc\x70\x49\xc9\xf5\xa3\x3a\x84\x1b\x3b\x9b\x66\x4f\x53\xa9\xc1\xab\x9d\x5d\x33\xc5\x69\x26\x01\x61\x4e\x03\xe9\xaa\xb4\x7a\x5f\x0b\xc7\x8f\xa9\x15\x74\x31\xcf\x3c\x00\x91\xa9\xdd\x63\x4b\x85\x01\x08\x45\x4b\x89\xff\x70\x20\x0c\xdd\x93\xa9\x7f\x57\x04\x32\xae\xbf\xd0\xbf\xfd\xbf\x5a\xf0\xc7\xa7\xfd\x18\x5c\x98\x8f\x1f\x95\x1b\x16\x66\x79\x81\xc3\xbd\xf7\xfb\xaa\xb3\xa7\x6e\xfd\x8d\xf6\x9c\x4f\x03\x22\x31\xfb\x56\x34\x58\x0e\x6e\x51\xfe\x84\xef\xaa\x0a\x7e\x33\xa7\xc7\x6e\x71\xe2\x70\xfd\xab\x0e\x07\x65\xbf\xad\x51\x83\xcf\x85\x43\x29\x09\xb5\x7e\x02\xcf\xf8\x0b\x23\xd2\xc5\x5d\x0e\x3e\x7d\x78\x8b\x2d\x3b\xd0\xd6\xb9\x35\xbd\x37\x3e\xf7\x9d\x45\xff\x13\xe3\x69\x5c\x6e\x9e\x65\xe6\x7d\x9d\xe9\xb9\x4c\x39\xab\xcf\x75\xca\x33\x07\xd3\xf2\xad\xf9\x6b\xee\xcc\x46\x26\x3e\xb3\x11\xad\xd6\x9d\x45\xe2\xb7\xda\xac\x3f\xfb\x78\xae\x36\xaa\xd5\x46\xe0\x94\x2f\x95\x14\xae\x68\x23\x77\xf2\x36\xf5\x76\xc8\x6e\x9b\xa9\x13\x46\xd4\xaf\x41\xe3\x36\x45\xc7\x48\x34\x0f\x7f\x3d\x1b\x9e\x42\x07\xda\xa0\x77\x99\xf5\xec\x11\x31\xba\xa0\xa7\x9e\xf5\x97\x83\x73\xf4\x54\x37\x33\x00\x49\xdc\x0a\x98\xef\xe7\xbf\x3e\x10\x4c\x0e\xa4\x84\xa1\x7f\x32\xf5\x5f\xa6\xfe\xd9\xb5\xc0\x81\x20\xbe\x9f\x77\xce\xd7\x1f\x5a\xa3\x0b\x1c\xc8\xfb\xb2\x89\xb2\x05\xfd\x83\x73\x96\xb8\x8b\x75\x79\xe0\x83\x3b\x53\x97\x05\x0c\xd8\xaf\x5c\xcd\x1d\x5f\x27\xdf\x23\x3d\x52\xaa\xf3\x5d\x4e\x9b\x4d\xb7\x3a\xe3\xd7\x17\x19\x1b\x55\x27\x9e\x20\x8e\xa1\x3d\x81\xd1\x21\xce\xae\xdf\x3e\x44\x1e\x3e\x13\x75\xca\x66\xdb\xe0\xe3\xda\x5f\xf1\x4b\x4d\xf9\x06\xee\x76\x05\x26\xde\x36\xf0\x1a\xf8\x31\xd3\x99\x94\x67\x40\xef\xfa\x3e\x7b\x39\x4e\xd1\x88\xb3\x0d\x99\x23\x46\x9b\x19\xb1\x3e\xca\xa6\xae\x09\x2b\x31\xde\x70\x4f\x92\xea\x13\x12\x6f\x7c\xb7\xce\x9f\xfa\x24\x48\xd5\x64\x6b\xed\x4a\x9a\xb2\xbf\x98\xa9\xe2\xa5\x2c\x9a\xb7\x1f\xb7\x69\xe0\xf9\xbb\xb4\xbb\xde\xf7\x4c\x4a\xce\xea\xd3\x4d\xdc\xe8\xa6\x32\xa7\x48\xf4\x0c\x57\x67\x33\xa9\x32\x0b\x7a\x86\xeb\x01\xd3\x2d\x25\x4d\xc8\x5a\x87\x1e\x00\x22\xe3\xba\xfe\xce\x85\x09\xff\xf7\x1c\x60\xfa\x20\xdc\xbf\xfb\xf7\xf5\xc7\x46\x87\x17\xce\x85\x31\xff\x9f\x0b\xba\xe0\x07\xb1\x39\xa3\xf9\xfa\xf2\x04\xb6\xc0\x0d\x3c\x8c\x05\x58\x37\x8d\xc3\xdd\x1c\x07\xe0\xed\xda\x42\x3b\x9b\x0b\xe3\xd2\x67\x04\x39\x0b\x42\xd1\x5c\x0d\x3d\xd5\xea\x84\x76\xea\x37\x0b\x17\x93\x74\xef\xb8\x99\x83\xbe\x55\x6e\x3b\xec\xfd\x67\x72\xf3\xfa\x7d\x9e\x9b\x36\xcf\x9c\xbf\xf2\x2a\x90\xac\x37\x34\x93\xde\xa9\x15\xb2\x49\x9b\x67\xf6\xfe\xf4\xc9\xd0\x75\xda\x02\xa3\xda\x54\x9b\xc0\x6e\xed\x97\x1f\xd6\x52\x3b\xfc\xc9\x3a\x87\x7a\xf6\xd2\x14\x7c\x06\x75\x7d\x5f\xec\xa1\x25\x78\x6b\x50\xf2\x9e\x68\xd2\x4e\x7a\x3d\xa6\x4c\x3c\x70\xa5\x4d\x7b\xd8\x52\x5a\xef\x96\xd0\x5d\x5d\x26\xf4\x0e\xdf\x92\xa5\x9f\x75\xde\xa4\x8f\xaf\x75\xa4\x37\x3a\xb9\xea\x9d\xbd\xf2\x05\x11\xb6\x2b\xd0\xbb\x50\x7d\x1f\x09\xb3\x1e\xd7\x7b\x79\x4e\x1b\xa9\xb2\xda\x0a\x60\xce\xb8\xfe\x61\x8c\xfb\xff\x20\x63\xfe\x9f\xa9\x7f\xff\xdf\x1c\xc8\x78\xd9\xc4\x8b\x05\xfd\x4f\x94\xbe\xf0\xfb\xaf\x45\x19\xfa\xd7\xbb\xc5\x7a\x2d\x15\x60\x29\x1d\x87\x3b\xc7\x0f\xc0\x33\xba\xe9\x7c\x71\x2c\x80\xd4\xc5\xbd\xa2\x59\x6b\x20\x88\x34\x2e\x2b\x17\xb1\x1a\x0b\x36\xb3\x25\x9b\xb8\xc9\xa2\x36\x9e\x1d\xe6\x9f\xad\x0b\x90\xe1\xf4\xf5\xb6\xe1\xc6\x85\x88\x61\xa5\x9f\xd3\x39\x8a\x0c\x1d\xbb\x57\xe4\xa2\x49\x76\xa2\xe7\xf4\x0e\xba\xf5\x69\xc8\xd1\x53\xa7\xed\x5d\xab\xd4\x75\x67\x97\xd0\xf5\x9c\xd4\xd4\x1f\x8c\x60\xf4\x44\x47\x6e\xf5\xfa\x0f\x63\xf4\x0f\x76\x52\x1a\x4f\xdf\xb4\xd2\x87\xec\xce\x69\x92\x5e\xe6\x21\x3b\x6c\xf7\x68\x19\xb5\xb5\x22\xdc\xb6\x02\x5a\x71\x8f\x1d\x10\x27\xeb\x95\x5a\x65\x4d\xd3\xc8\x51\x4b\x29\xb2\xeb\x9d\x7c\xe4\xaa\x45\x84\xd6\xb9\xfa\x3a\x74\xb9\xe9\x0e\xb2\xc3\xf5\x43\x28\x97\x09\x1f\x80\x67\xff\xbf\xfb\xa0\x82\xf1\x1c\xa8\xbb\xbf\x58\x5f\x30\xee\x93\xe1\xe3\xf3\x75\xb2\x79\x7a\xbe\xe0\x3e\xff\x80\x85\xe7\x43\x17\x63\x0e\xf6\x61\xfd\xbf\xfa\x5f\x65\x11\x00\x2e\x19\x87\x3b\x61\x04\xc0\xed\xbe\xbe\x25\xaf\x03\x40\xea\x20\xd7\x70\x7c\x2f\x34\x11\xc3\xc5\xf8\x02\x12\xb0\x6f\xa6\x7c\x6a\x17\x1d\x77\x61\xda\x6e\x4b\x74\xa2\x2c\x57\xa1\xdd\xf1\x2f\x8c\x8c\x0c\x8f\xa0\xf9\x45\x44\x53\x39\xdd\x75\xa8\xcd\x25\x33\xb3\x57\x9a\xbf\x50\xa1\x07\x89\xe6\x03\xea\x2b\x10\x7a\xaf\x82\xc5\x33\x02\x0d\x79\x33\x39\x6b\x29\xa5\xe6\x84\x9a\x20\x9d\x26\xeb\xf0\xf7\xa7\x9f\xa1\x5b\x0c\x53\xd5\xb4\xbe\xef\x44\x37\x18\xa2\x6a\xa1\x1f\x23\x51\x61\xc3\xcd\x6a\xb5\x7d\x1f\x50\x8a\xfe\x2f\x42\x52\x97\x25\xaa\x63\x60\x4e\x54\xe8\xd8\x88\xea\x1a\x1c\x21\x94\xb5\x25\xa3\x85\x14\x07\xc2\xc4\x63\x51\xf4\x9a\x2e\x91\xd8\xde\x94\x80\x5e\xd3\x3d\xf4\x67\x1f\x14\x1f\x62\x9c\x83\x0c\xff\x87\xa7\x8c\x3c\xa0\x8f\xd5\xf3\x75\xf6\xed\x9c\xd5\x82\xfe\x39\xcb\xe0\xa0\x18\x7a\xff\x63\x86\xee\x73\xb3\xfa\x5f\xfd\xb3\x34\x0d\x60\xd7\x87\x15\x0d\x07\x7d\x00\xb8\xf8\xd7\xba\x24\x3f\x03\x10\xaf\x64\x7b\x1a\x6e\x09\x93\x04\x25\xc1\x56\xcf\xa7\xe0\x61\x78\x46\x16\xb5\xa1\x62\x9f\x1d\xcf\xaa\xe5\x98\x6d\xc5\xca\xc3\xef\x6b\x7c\xd5\x77\xc5\x42\x72\x43\xc8\x79\xda\x43\x98\x72\x99\xab\x2e\x0b\x93\x7b\x20\x15\xa1\xfd\xcd\xda\xfa\x81\x04\x49\xf4\x6a\x6f\xbb\x41\x15\x7e\x1b\xfa\xf4\xe7\x6b\xbd\x6e\x15\x71\x4c\x07\x7d\xab\xd5\xfd\x3b\xdf\x22\x66\xe6\x3b\x46\x20\x3e\x55\x96\xfd\xd1\x84\xed\x54\xef\x54\xe6\xf8\xf4\x08\x13\x27\xdd\x54\xfa\x3e\x60\x80\xe9\x12\x7d\x55\x12\x7a\x71\x18\x9b\x86\xb4\xca\xdb\x97\x21\x18\xbf\x7a\x9b\xb2\xd1\x73\x2e\x2c\x11\x3f\x0b\x70\x98\xeb\xdf\x73\xe0\x11\x83\x87\x58\xd4\x7f\x69\xf7\x67\x1d\x70\x7f\xf9\x20\x30\x39\xa8\x16\x4b\x06\x07\xf4\xfd\x5f\xfd\xb3\xf8\xc8\x62\xcd\x7a\xbb\xa8\xfb\x27\x1e\x04\xd8\x94\x8d\xc3\x45\xeb\x02\x88\xbe\xdf\xb1\xcb\xaf\x12\x40\x95\xca\x7b\xc9\xc5\x0c\xce\xeb\xc7\x88\x0f\x59\x86\x81\x9a\xfd\x72\x85\x1b\x46\x03\xc0\x1d\xe4\xa6\xc2\x49\x71\xc0\x20\x65\x18\x7f\x99\x5c\x83\x3d\x38\xba\x8a\xe4\xae\x61\x83\x35\x9c\xca\x26\xb9\x11\x9d\xb1\xb2\x6b\x04\x75\x2f\xb5\x6c\xcc\xbd\xb9\x4a\x8b\x45\x65\x0c\x0b\xee\xda\xa9\x71\x4f\xe9\x3d\x56\x3c\xac\x43\xb2\xfe\xcd\x3b\x68\x82\x38\xf6\x52\x29\x53\x0e\xc0\x0f\xb6\xc8\xf5\xcb\xc9\xcc\x65\x00\xb7\x6c\x89\xdc\xeb\x9f\x1b\xb1\x19\xf9\x27\xf2\x4b\xbe\x0e\x62\x3f\x14\x24\xe5\x76\x7d\xdc\x00\x5b\x65\x6f\xcb\x3f\xec\xdf\x81\xbd\x57\xdc\x0a\x70\x26\xe8\xdf\x73\x70\x91\x83\x41\x5f\xcc\x38\xcf\xd7\xef\x78\x48\xc2\xfd\xe5\x83\xf0\x9b\x03\xca\x61\xe8\x9f\x3f\xfe\xd5\x3f\x99\x39\x00\xcc\xf9\xef\x58\x2d\x00\xce\x0d\xab\x4a\x03\x65\x01\xf6\x97\x6d\x59\xe7\x31\x0d\xa0\x32\xcc\x15\x65\xa7\x0a\x5f\x75\x0d\x05\xbf\x9b\xe6\xc1\x71\x2b\x92\x44\xad\x81\x31\xc4\xf8\x04\xcb\x74\xea\xf2\x82\x51\xec\x6b\x85\xca\xdf\xf9\x0e\x09\xc0\x75\x2c\x49\x79\x98\xa0\x0d\x42\x95\xca\x4a\xaf\x7f\xe7\x3a\xa8\x60\x5f\x9a\xb3\xf0\xfa\x4a\xa7\xb1\xa1\xce\x52\xbc\x8a\x42\x3f\x86\x0c\xf9\xa8\xa4\xca\x3f\x00\xd1\x69\x19\x25\x96\xdf\xbc\xc3\x24\x3c\x80\x40\x49\xfd\xdf\xbc\x43\x32\x8d\x07\x5e\x0b\x7d\x97\x54\x9f\x2c\x86\x16\x61\x19\x49\x8e\xef\x87\xa1\x41\x38\x01\xa0\x9e\xc1\x83\x31\x73\x81\x16\x39\x98\xb1\x0f\x70\x6e\xbe\xf6\x8d\x2e\xf6\xc3\xf4\x41\xb8\xc3\xd0\x3d\x2f\xdd\xff\x57\xff\x64\xea\xbf\xa9\xa9\x8b\x95\xe9\x03\xe1\xf6\x0b\x60\xb9\x2d\x0e\xe7\x79\x1c\x40\xf0\xfc\x06\x57\xa7\x17\x00\x0a\x63\x6c\xf7\x2d\xa3\x00\xc8\x2d\x7c\x38\x43\x07\xe8\x33\x5b\x26\x54\x42\x51\x84\xa7\xae\x26\x22\x73\x64\x43\xa8\x09\x2d\x97\x20\xa9\x0f\x41\x45\xf2\x66\xc9\x1f\x24\x23\x88\x3e\x60\x29\x2b\xa2\x76\x1e\x02\x8b\x9b\x64\xef\x31\x73\x1d\x94\xbc\x21\xec\xaa\xbe\xcc\x25\x85\x09\xb0\xbe\xaf\x26\x67\x2f\xdf\x0d\x26\x6d\xc3\x72\x57\xe4\xa6\x80\xd2\x7f\x44\x5e\x55\xb6\x1d\x02\xbf\x2f\x91\x55\x66\xf2\x0e\xd2\xef\x61\x04\x4e\x88\x65\x49\x1e\x07\x80\x11\xa1\xad\xe2\xbd\x00\x00\xfc\x02\xa2\x6f\xb0\xf9\x77\x49\x9f\x3f\xe7\xe0\x22\x07\x33\xc1\xe8\xfb\xb7\xfe\xcb\x98\xff\xbf\xcb\xc8\x47\xba\xc2\xd0\x6d\x4f\x31\x7c\x40\x0a\x6a\x18\xfa\xef\x1e\x86\xfe\xcd\x38\x1f\x7c\x18\xba\xb0\xed\x76\x00\x9c\x35\x0e\xe7\x6c\x06\x20\x60\xbf\x2e\xde\xba\x05\x40\x2e\x6e\xfb\x3d\x93\x51\x00\x0d\x7b\xce\x41\xbd\x14\x00\xc3\x70\xbe\x70\x1d\x5f\x18\x75\x2c\x12\x5a\xa9\x51\x0b\xe3\xbe\xa3\x42\x16\xcc\x7c\x07\x42\x04\x3c\x4f\x91\x16\x3d\x80\xcf\x86\xa6\x5c\x4c\xec\x89\xf2\x4d\xb8\x53\x2c\x27\xbe\x4d\xb1\x11\x6e\x55\xb2\x8b\xeb\xca\xcb\xc3\xbd\xcb\x81\x62\x3e\xb2\x37\xa0\xee\xf6\x19\xb1\x27\x72\x78\x48\x6f\x0d\x90\x1a\x94\xd9\x08\x17\xba\x54\x24\xb6\x49\x67\xc3\xf5\xa1\x23\xe2\xef\xa4\x65\xe0\xd5\x44\x87\xd8\x79\xa9\xcf\x00\xd0\x28\xb2\x57\x92\x08\x00\xd3\x82\xba\xcc\xf5\x60\x72\x30\x33\x8c\xeb\xfc\x81\xc1\x75\x30\x39\x20\xa6\x0f\xc2\x55\xc6\xf5\xff\x7f\xf9\x20\xc4\x33\xfe\x1f\xd3\x07\xc2\x65\xed\x62\x75\x7d\x0c\xb0\xbb\x63\xc5\x1a\x6b\x3e\x00\x5e\xef\x55\xea\x26\xf7\x00\x24\x92\x37\xf6\x1b\x0c\x01\x10\xfb\xd9\x15\x75\xaf\x01\xe8\x9f\xe7\x99\x22\x0b\x01\xd8\x44\xf2\x51\x34\x9a\x01\x3c\x0a\x04\x36\x10\x4f\x00\x35\xa4\x49\xf0\x28\x3e\x09\x20\x86\x28\xf0\x54\xa5\x08\xe8\xa9\xb2\x82\x37\x95\xb9\x61\xe4\x40\x8b\x70\xaa\x62\x05\x0c\x16\x0d\xed\x0f\x52\x88\x84\xe7\xa7\x2e\x89\x6e\x65\xfa\x1a\xc8\x04\x40\xcf\xad\xbe\xfd\x5f\xa5\x9b\xe0\x45\xd3\x29\x91\x4a\x26\xef\x20\xd5\x0a\x2d\x6f\xdb\x45\x3f\x31\x79\x07\x49\x15\x80\x89\x0e\x61\x29\xe6\x7a\x20\x8a\xf0\x0c\xf7\x37\x07\xf4\x1f\x3f\x20\x66\x2e\x16\x33\x17\xea\x98\x15\xe3\x1c\x60\xf0\x3f\x49\x8c\xf5\x09\x67\xec\x03\xa6\x0f\x04\x53\xff\xb7\xcb\x01\xd8\xfd\x69\x79\x95\x7a\x1e\xc0\x6a\x4d\x1c\x4e\x7f\x1a\x40\x74\x60\xbd\xbe\xb6\x1e\x80\xd2\xd7\x6d\xeb\xb4\x34\x00\xb4\xb7\xb2\x8f\x6a\x64\x00\x98\x3b\x70\x9d\x23\x99\x03\x38\x25\xf3\xa0\x6a\x4e\x00\xbe\x99\x7b\xc5\xf0\xee\x00\x61\x42\xfc\x96\x2a\x12\x00\x31\xd5\xfc\x5c\x4a\x11\x00\x29\xa1\xfc\xf5\x0a\x8d\x00\x79\x2f\xf6\x8d\xc8\xfb\x03\x1c\x9d\x12\x98\x90\x79\x02\x50\xc6\xb3\x2f\x5c\xfa\x26\xc0\x79\x79\x01\x17\x69\x36\xa0\xd7\xa4\x09\x1a\x4a\xe9\xc0\x54\xc3\x8c\xd0\x0a\xc9\x0c\x98\x7c\xcc\x22\x44\x91\xdc\x08\x13\x9d\xc6\x42\xf7\x24\xbe\xc1\x54\xdf\x7d\x61\x1e\x89\x3a\x80\xd1\x4c\xa1\x82\x61\xc6\xdf\xcb\x7c\x0f\x7a\xb4\xec\xdf\xf7\x80\xaa\xa0\xc5\x7a\x42\xf3\x3f\x1c\x0c\x63\x3d\x22\xa5\x16\xab\x1f\x37\x83\x7f\x61\xf8\x6a\x99\xe2\x17\xab\x36\x83\x33\x55\xdb\x0b\xc0\x3a\x84\xc3\x69\xff\x04\x10\xa2\xad\x31\xd4\x60\x05\x50\x20\x6d\x26\x12\x56\x00\xa8\x15\x6d\xab\xc0\x77\x01\x18\x9c\xdd\x95\x83\xbf\x0d\x60\x99\xcd\xee\xa1\xaa\x0c\xe0\xf2\x8d\x63\x4c\x45\x1b\xc0\xa7\x95\xeb\xaa\xf2\x66\x80\x90\x8f\x3c\x02\x8a\x86\x00\x31\x6f\x78\x5e\xc9\x7f\x03\x48\xb9\xcd\x7b\x49\xd6\x19\x20\xc7\x9c\xa7\x57\x56\x0a\xe0\x88\xcb\xde\x77\x32\x51\x00\x27\x8f\xf2\x0f\x4a\xbd\x06\x38\x3d\xc7\xbf\x49\xf2\x17\xc0\xc5\x10\x7e\x2f\x49\x17\x80\x9b\x2e\xfb\x52\xc5\x07\x01\xee\xbd\xe6\x0f\x10\x6b\x07\x78\xc2\xc3\xf7\x4c\xec\x25\xc0\x4b\x6e\xfe\xcb\xbf\x9f\x83\xa6\x8c\xe7\xe0\x81\x7f\x9f\x83\xcc\x5c\xa8\xc3\x0c\xde\x27\x83\x91\x17\x13\x53\xf6\xef\x3e\x70\x0f\xfd\xf7\x3e\x30\x58\xfa\x2f\x07\x22\x37\x02\xb0\xa4\x0e\x87\xd3\xf0\x00\xd8\xc7\xce\xfa\x70\xfe\x3a\x4b\xbc\x5c\x4b\x53\xde\x0b\xa0\xd4\xb6\x29\x40\xa1\x15\x40\xeb\xe1\x16\x6e\x45\x23\x00\x63\xdd\xed\x64\xa5\xa3\x00\xb6\x25\x6c\x78\xf9\x55\x00\x4e\x56\x3b\x2f\x2b\x76\x01\xf8\xcd\x70\xfc\x52\xd8\x05\x10\x48\xe7\xe0\x93\x5b\x02\x10\xe5\xce\x11\x21\xe3\x01\x90\xa4\xc4\xf1\x4d\xc6\x0c\x20\x0b\xe1\x96\x94\x0e\x04\x38\xec\xca\xb3\x5e\xd2\x16\xa0\x28\x8f\xeb\xa7\x24\x0e\xa0\x3c\x84\x27\x52\xc2\x15\xe0\x5c\x10\xaf\x9e\xf8\x32\x80\xab\xcf\x79\xfa\xc5\x9e\x02\xd4\x1b\xf2\x7e\x14\xe3\x02\x68\x3c\xcf\xbb\x40\x43\x51\x70\x8b\xfa\xc5\xbf\xbe\x20\xff\xe3\x83\xa0\xa6\x3a\xcd\x3a\xf6\x87\x83\x50\x93\x26\xe1\xb7\x0b\x00\xa8\x37\x6a\x49\xb0\x55\x01\x90\x33\xf5\xac\xb8\x76\x01\x50\x3e\x98\xe7\x09\x24\x01\xe8\xe9\x38\xfd\x14\x5b\x02\xa0\x77\xda\xef\x9b\xac\x1d\x00\xc5\x29\xf6\xbb\xca\x31\x00\xed\x8a\x5c\x94\x78\x1e\xc6\x35\x5f\x94\x56\x68\xce\x40\xbd\xfa\xfa\x1a\x0d\xdd\x1a\xa8\x20\x44\x3c\x58\xa6\xe7\x06\xb9\x78\xa3\xd7\x9d\xfa\x74\x38\xa4\x72\x71\x38\xc5\x80\x13\x12\x55\x52\xe7\x5e\x18\xb1\x43\x9b\xb2\x3d\xaa\x4a\xb9\x07\xa0\xf8\x06\x7d\xa0\x85\x9b\x6e\x53\xe2\x47\x2f\x91\xb7\xfd\x98\x50\x52\x42\x6f\x6b\x9d\xff\xcc\xa7\xf4\x06\xbd\x41\x56\x7c\x5f\xa9\xd4\x8a\xf6\x6b\x9e\xef\xdd\xaf\x5c\x80\x76\x6b\x69\xbf\x7c\xad\x1c\x8a\xe1\x34\xbc\xda\xe2\x55\x74\xb1\x35\x1a\x94\xc7\xa7\x54\xf7\x62\xac\x1a\x77\x1f\x2e\x57\x59\x8e\x19\x10\x59\xee\x77\xab\x5a\x63\xa2\xea\x0b\x77\xb9\x4e\xc5\x7f\x78\x98\x05\xfd\x7f\x49\x98\x12\xdb\xdf\x7a\xa7\x50\x88\x8a\xcf\x2a\x35\x00\x85\xd5\xaa\x7c\x1b\x63\xff\xac\x83\xc6\x53\x8d\x28\xb6\x9b\x00\x3a\xf9\x14\x0b\x6e\x7f\x00\x3d\x65\xe3\x3b\xfc\xbf\x00\x0c\x2e\x3a\x2d\x93\x08\x00\x30\xd0\xf3\xdf\x26\x3f\x08\xa0\x87\xc6\x4e\xa9\x59\x02\xe8\x3c\xcb\xdd\xa0\xae\x0f\xaf\xb4\xbe\x94\xa2\xda\xe9\x70\x4a\x7d\xfa\x6a\xa4\x5e\x24\x04\x11\x2b\x1e\xd4\x18\x8e\x82\x27\xbe\xb7\x47\xc9\x28\x0e\x5c\x54\xa3\xbf\x06\x1b\xf3\x80\xa7\xca\x17\x44\xc4\xf8\x2d\x5c\x57\xbe\x8f\xee\xd6\x57\x42\xdc\x94\x24\xd0\xd3\x64\xe7\x49\x7e\xa5\xb3\x68\x9e\x76\xc9\xb7\x60\xe5\x08\x34\x5c\x07\x1d\x1c\x52\x11\x44\x23\x75\x8d\xdf\x4a\xa9\xdc\x47\x93\x74\x89\xaf\xf2\x55\x97\xa2\x67\xb4\xbf\xb7\x23\xaa\x9b\xd0\x17\x64\xd1\xd6\xdd\xaa\x25\x68\xbf\x56\xdf\x43\x37\xb5\x9d\x68\x83\x76\xcf\x03\x82\xaa\x34\x26\xa8\x8e\xbf\x3b\xa7\xea\x86\x91\x48\xeb\xfe\x2f\x2e\xe8\x5f\xfd\x9f\x43\x43\xe9\xdc\xb2\xef\x00\x62\xc2\x8a\x0f\x57\x8f\x03\xc8\x9b\x2b\x99\x6c\x08\x01\x20\x18\xe3\x2d\xb7\xad\xfd\xc3\xc5\x50\x3e\xe9\xd2\x78\x50\x00\x03\x5f\xe3\xdd\x02\xdd\x00\x46\x21\x0e\x03\x52\x4b\x00\x8c\x0a\x7c\x43\x94\x64\x01\xf4\x27\xa3\x3e\xe2\x27\xe1\x0b\x25\x37\xe7\x9d\x56\x3e\xb4\x90\x13\x4a\x4b\x75\x4a\x20\x40\x33\xed\xaa\x95\x91\x09\x04\x13\xe3\x9b\x09\x86\x2f\x40\x56\xad\xae\x37\xd0\xb4\x11\xc4\xf1\x5c\xa3\xfa\x66\x2e\xe0\xac\x82\x20\x27\x4d\x14\xa1\x52\x65\x39\xba\xc4\x80\x32\x77\x51\xf9\x15\xca\xa1\x4f\xf8\xc9\xae\xc2\x89\x0a\xe8\x8b\x7e\x7e\xa7\x32\x80\xf2\xea\xbf\x7a\xff\x51\xa5\x1f\x35\xa7\xfc\xea\x99\x56\xd5\x40\x83\x29\x3b\x3b\xea\xf0\x99\xa8\x8b\x9e\x42\xdb\x49\xd5\x4c\xb4\x8d\x7c\xe4\xb1\x13\xfe\x15\x7a\x53\x7b\xea\x01\x01\x9f\x80\xfe\xd0\x0a\xbc\xd7\x88\x3f\x89\xad\xd4\xd4\xbe\xfd\x45\xcd\x18\x5b\xa3\x69\xb1\xb0\x1f\x54\xfe\x2f\x2e\xe8\xbf\xfa\xbf\x38\x4d\xa1\x78\x4d\xee\x1f\x0e\x82\x78\x4c\x75\x60\x1b\x37\x80\x76\x16\x09\x61\xa3\x02\x18\xdc\xd2\x0d\xe7\xed\x06\x30\x1c\x31\x7c\x20\x58\x05\x60\x9c\x6a\x67\x25\xd9\x0e\x60\xfc\xd1\x53\x54\x91\x02\x60\x78\x2a\x4a\x94\x68\x09\x03\x7a\x4b\x72\x52\xc9\xaa\x50\xa9\xb3\xa1\xa4\x59\x2f\x1b\x0c\xb5\xf8\x6a\x2c\x4c\xb2\x61\x2f\xe9\xc3\xa3\xe7\xe6\x5b\x31\x94\x90\xf2\xf6\xb0\xa5\x12\x08\xe0\xf9\xc7\x48\x66\xa3\xa0\xa0\x7a\x10\x71\x30\x2b\x81\x5c\x15\x3b\xe4\xbd\xe1\xa5\xe9\xa3\x2a\xae\xc8\xb4\xe1\xc6\x11\x0f\xd5\x4a\xe4\xb1\x71\xc6\xd0\x7e\xbc\x0d\xf2\xcc\xf8\x66\xdf\x21\xbc\x3e\xba\xd6\xd0\xeb\x55\x09\x7e\x0e\x15\x36\x28\x7a\xde\x83\x6f\x46\x3d\xf4\x04\x5a\x0d\xd4\x6c\xd0\x18\x4a\xe1\xc3\xfd\x6a\x2e\xe8\x65\x9d\xa4\xc6\x23\x84\x5f\x68\x2e\x25\xaa\x41\x95\xb0\x1d\xfd\x4c\x36\xab\xeb\x22\x94\xa0\x9f\xc9\x71\x7f\xf3\x51\x8b\xb9\x49\x4c\x9d\x8f\x9d\x4f\x45\x70\x29\x0d\x80\x3b\x5d\xbe\x6d\xc5\x26\x00\x89\x6a\xb9\xf8\x35\xb1\x00\x8a\xba\x0a\x37\x37\xfc\x04\xd0\x78\xa9\xdc\xbd\xf5\x31\x80\x2e\x91\x08\x6c\x3d\x00\x86\x75\xe4\x03\xdc\x65\x00\xc6\x2c\x86\xdf\x85\xfc\x01\x4c\xc7\xad\x57\x48\xdd\x03\x30\x19\xf4\x34\x57\xea\x03\x30\xf2\x88\x88\x26\x46\xc1\x1d\x03\xc1\xac\x72\x5d\x15\x88\xd7\x55\x2e\xdd\x6b\x18\x09\x12\x64\xf1\xab\xce\x66\x17\x81\x93\x34\xf0\xd8\xcd\xdc\x01\x96\x10\x0c\xfb\x2e\x5a\xd0\xb1\x8f\x6a\xb8\x5f\x76\x56\xd3\xb0\x4b\x95\x8e\x88\x59\x78\xd0\xbd\x54\x6e\x20\x0f\x8d\xfa\x27\x58\x55\x25\x90\xbb\xc6\x29\xc3\xbc\xf8\x0d\x48\x83\x09\xdf\x80\x0f\xfe\x25\xd2\x64\x62\xd3\x6b\xa7\x86\x47\x86\x8d\x65\x3b\xea\x08\x91\xc8\x27\xe3\x81\xff\xe1\xc2\x96\x13\x26\xd0\x40\xbd\x93\x77\x0f\x13\xa5\xd1\x42\x8a\x78\xfd\x71\x62\x04\x7a\x5d\xe7\xd7\x0d\x32\xb1\x1c\xed\xd7\x56\xf8\x5f\x2e\x88\xa9\xf3\x31\xf5\x7f\xbe\x1f\x32\x43\x2c\x71\x7f\xf2\x20\xf0\x61\xf2\x5f\x37\x36\x02\x90\x95\x95\x14\xb7\x7a\x03\x18\x7c\x51\x33\x62\x73\x03\x30\x56\xd0\xd2\xe3\xde\x0b\x60\x7a\xdd\xa0\x59\xa8\x1a\xc0\xfc\xaa\x45\xa9\xb4\x3d\x80\xb9\x97\x9b\xa6\x4a\x14\x8c\x9b\xe4\x85\x1f\xd0\xc8\x84\x06\x03\xc9\xac\x63\xba\xda\xe0\xad\x3b\x53\xf2\xcc\x68\xf4\x37\x2f\x37\xac\xfe\xae\x85\x60\xf5\x1a\x7b\x47\xa8\x7a\xcf\x6f\xcd\x8b\x35\xa8\x91\x67\x1a\x6c\x49\x20\xa1\x7a\x0e\x31\x35\x5f\x35\x47\xc2\x6f\x46\x48\xe6\xe3\x3f\xa2\xf0\x0d\x88\x8e\x05\x7e\x68\x4e\xed\x20\xe2\x60\xb1\xb6\x4f\x84\xe0\x8f\xf8\x5a\x6c\x7f\x15\x4f\xb4\x46\x92\xcc\x5b\xda\x49\xc4\xaf\xc8\x79\xb3\xe3\x2d\xf2\xa4\x32\xe4\x89\xe9\x9d\x66\x3d\x52\x3e\x8a\x33\x2e\x67\x72\x61\xb7\xab\x49\xcf\x51\x67\xfd\xee\x9b\x56\xea\x3b\xd1\x4c\x3d\xa3\x9a\x27\xa4\x6a\xf4\x95\xf6\xc8\xff\x9e\x0b\x4c\xfd\x7f\x63\x92\xcc\xba\xf9\x2a\xa0\x21\x33\xbd\xd2\xf5\x0f\x07\xc1\xf4\x83\x60\xe6\xa4\x30\xfd\x62\xcc\x6a\x35\x9d\xb9\x1f\x01\x58\x5a\xe9\xf5\x0b\xe5\x03\x58\xc8\x58\x2c\x95\x2e\x01\xb0\x48\x74\xd9\xad\x92\x02\x03\xa6\x10\xb6\x5c\xf3\x07\x94\x1b\xd2\x32\x6e\xe8\xa5\x82\x39\xe5\x46\x89\x9b\x89\xeb\xef\x75\x78\xa0\xe1\xf0\xc4\xcd\x76\x15\x76\x9a\x68\x35\x50\x67\x47\xc6\x8e\xab\xe5\x51\x3f\xda\xb3\x62\x80\x37\x40\x58\x2d\x3b\x26\x82\xd4\x2c\xe8\x83\xd6\xef\x86\x9b\x09\x3e\xf4\x37\x36\xad\x03\x64\xa2\x00\x7d\xce\x46\xba\xfb\x09\xf1\x20\xa2\x61\x39\xd2\x69\x4f\xf2\x44\x74\xac\x76\xb5\xd6\x90\x3e\x21\x47\xcc\x9b\xff\xcb\x85\x35\x6c\xd0\xe0\x43\x37\x1a\xa7\xdd\xdc\xa7\x29\x86\xee\x32\x8e\xbe\x96\xae\x29\x87\xea\x1a\x46\x5f\x0e\xd2\x48\x42\xcf\x50\x42\xfe\x5e\x87\xc5\x73\x01\x97\x28\x53\xfb\xb7\xfe\x2f\xe4\x20\x79\x63\x65\x2b\x80\xbc\xa9\x94\xc1\x5a\x57\x00\x8d\x9f\xd2\x97\x36\x0c\xfe\xe1\x41\x98\x5c\x8c\xb5\x22\x69\x80\x5b\x1b\xc0\xa6\x44\xf7\xa0\x60\x23\x80\xb5\xad\xd9\x03\x19\x5e\x00\xab\x2e\xa7\x32\xfc\x10\x3c\x33\x3f\x13\x42\x21\xa7\x40\x9a\xb1\x41\xfa\x5b\x83\x13\x20\xac\xaf\x7a\x22\xc9\xdc\x05\xab\xd5\x39\x75\x8d\xc7\x2e\x05\x8b\xd2\x4c\x6c\xdd\xef\xb8\x03\x73\x20\xce\x0c\x7d\x74\xfc\xfe\xdb\x2f\xeb\x89\x5a\x03\x3d\xcd\xee\xfe\xd8\x13\x82\x15\x3d\xdf\xae\xe7\xe3\x39\xe2\x20\x3d\xdc\xa1\xb0\xaf\x9c\x24\x4c\x6f\xb3\xe3\x78\xa5\xa6\x1e\x4f\x7f\x69\x97\xd8\xd6\xa5\x61\x8f\xe0\x6c\x6d\x7e\x73\x61\x9b\x34\xe5\x91\x40\xcb\x9e\xbb\x3e\x9a\x12\xc8\x45\xf3\xea\x9b\x45\x5a\xfb\x91\x5e\x33\xdd\xda\x36\xad\x5d\x28\xab\x49\xd0\x65\x1a\x59\x11\xdd\x64\x62\x57\xdd\xa9\xe5\x8c\xfa\x1a\xb8\xfe\xc3\x05\x2d\x9c\x13\x4b\x70\x52\x46\x0b\xcf\x09\x39\x19\xab\x65\x89\x00\xa2\x9d\xe2\xc1\xab\xf8\x01\x94\x44\x25\xaf\xaf\x3d\x0b\x40\xe6\x91\xde\xb4\x71\x09\x80\x61\xbd\xd4\xaf\x4d\x3d\x00\x96\xb5\xf2\xb0\x23\x04\xc0\x3e\x57\x2d\x9d\xb3\x1d\xc0\x71\x40\x3b\x5b\x88\x0f\xc0\xbe\xde\xc4\x48\xba\x1b\x68\xb6\x09\xf6\xa2\x04\x89\xdf\xbe\x62\x0e\xa6\xcd\x29\x88\xb1\x37\x86\x1a\x9c\x3e\xb1\xd6\xca\x0f\x2b\xd7\xf9\x75\xcd\xd7\xbe\x18\xd3\xd6\x9c\x7c\xda\xe3\x5c\x80\xad\x26\x95\x7c\x89\x73\x5b\x85\xf1\x10\x1e\xd3\x1a\x5d\x86\x7e\x95\x12\x4b\x68\x5d\x2e\x93\xc3\xb2\xa4\x53\xb4\xef\x2e\xc8\xfb\x02\xf5\x1f\xb4\x2f\xae\x4f\xbb\x29\x1a\x4e\x74\x1d\xe7\x4d\xcf\x06\x34\x8b\xe9\x29\x8e\xaf\x5a\x5c\xb4\x0e\xd1\x8b\x1c\xf3\x1f\x64\x6b\xf5\xd1\xfb\xec\xa3\x98\x3e\x59\xb7\x6e\x93\x51\xc4\xc0\xfa\xc3\x75\x2f\xf2\x73\xe4\xa8\x25\xf1\x72\xa7\xf6\x0e\x64\xc8\xcc\xbf\xba\x4a\xdb\x0e\x65\x31\xdd\x7e\xf6\xa4\xce\x1e\x54\xd4\xb8\xea\xef\x73\x61\x71\x3f\xac\x48\x95\x98\x9b\xaf\x3c\x23\x92\xbb\x56\xb0\x00\x48\xca\x8b\x7d\x5b\xf5\x0e\x00\x1f\x29\x7a\x6d\x4d\x2a\x00\xc5\x42\x7c\x6a\xc3\xe6\x3f\x3c\x88\xdd\x4e\x99\xb2\xed\xac\x00\xae\x7a\x2a\xfb\x39\xae\x02\xb8\x69\x68\x7d\x12\xf2\x02\x70\x21\x18\xda\x4b\x75\xc0\x88\x7d\x8a\x9d\x36\xf1\x2d\x9c\xb4\x39\xe1\x7b\x48\xf7\x29\x08\x5b\x6c\x4e\xce\x34\xdf\x8c\x3d\x31\x3a\x53\xbc\xc6\xf6\x3e\xa6\x45\xa9\xbb\xc6\xed\x92\x80\x0e\x68\x0d\xb7\x0f\x7b\x34\xa1\x19\xea\x27\x47\xa4\xbc\x27\xa8\x43\xa4\x7d\xb4\x5d\x5e\x12\x23\xd2\xea\x71\x34\x3d\xcf\xbb\x83\x3d\x1a\xfd\x34\x8a\x57\x64\xf7\x37\xad\x08\x9a\xbd\xd7\x8d\xe7\xef\xc8\x2b\x69\x9d\xee\x35\x2d\x26\xe4\x19\x3a\x9b\xeb\xd7\x26\x5f\xed\x1a\xba\x85\x8b\x26\x93\x87\xaa\xc3\xe9\xe4\xd2\x7b\x1d\x5c\x6b\x8a\x75\x65\x11\x41\xdb\x76\x26\x0f\x75\xde\x4e\xb7\x0f\x29\xb5\x6c\x3e\x53\x4b\xd1\x43\x1e\x5b\xe8\x55\x56\x53\x88\xc8\xa8\xd9\xd3\xbf\x79\x18\x99\x84\xf9\xba\xfe\x86\x84\xfa\xc2\xb9\xa0\x22\xb6\x9e\xa5\x00\x40\x6e\xb5\x68\xd1\xea\x1d\x00\x1a\x29\x22\x4b\xd7\xd4\x00\x18\xf2\x09\x57\xad\xbd\x0e\x60\x53\x2e\xbe\x65\x53\x19\x80\xdb\x72\x89\x96\xad\x53\x00\x5e\x16\x0a\x1b\xd8\xfd\x00\x7c\xc2\x49\xbb\xf7\xdd\x00\xf0\x7a\xaf\x77\x58\x7a\x7e\x7d\xa6\x2c\x31\x82\x33\x38\x3b\xd4\x79\x89\x19\x4a\x61\x3f\xac\x39\x13\x8e\x59\xb3\x62\xe1\xa6\xeb\x8a\x72\x9c\x52\xd0\x5f\xfa\x3c\xd7\xdc\x3d\x3e\xa3\xc1\xda\xcb\x5f\xf8\xf9\xd6\xa1\x5b\xd5\xe9\xe3\xc7\x02\x0a\xc6\x63\x34\x62\xa9\x6a\x01\xe8\x87\x68\x2d\x3c\x35\x23\x40\xaa\x67\x80\xfc\x95\x7a\x34\x20\xeb\x85\xac\xf6\x04\x75\xd6\xcf\xbf\xa5\x5b\x77\x27\x4d\xd6\x97\xf3\xfe\x11\xdd\x01\xda\x29\x2f\xfb\x06\x0e\xca\x49\xda\x67\x8f\x93\x37\x79\xf5\x08\x74\x01\xb7\x87\x57\xdf\xe9\x1d\xa7\x67\x39\x3f\xbd\x68\xa6\x2f\x40\x6f\x71\x1c\x3a\xa7\xa4\x5f\x89\xe0\x1c\x56\x55\xda\x19\xb0\x20\x06\xb6\x26\xe5\x51\x06\x3b\x90\x74\x6b\x4a\xe9\x1d\x83\x25\xc8\x7d\xcb\x35\x7f\xf6\x03\x0e\x27\xb9\x73\xe1\x7c\xf4\xdc\xcf\xb3\xa0\xff\x2b\x0a\x38\xb0\x48\x01\xa8\x6c\x10\x2c\x66\xed\x01\xd0\x56\x15\x4c\x59\x1d\x07\x60\x4e\x13\xf4\x5d\x1b\x0d\xe0\xdc\xb3\xff\xc1\xc6\x1a\x00\xaf\x1c\xb1\xb4\xad\xfc\x00\x81\xa8\xcc\xbd\xdd\x89\x00\x21\xcf\xf0\x2d\xfb\x74\x00\x82\x2e\x90\x47\x24\x57\x03\xf8\x50\xcd\xde\x10\x9a\x41\xd4\x75\xad\xab\xb6\x89\x37\x56\x69\xf7\x2b\x26\xc0\xde\x03\xdb\x6a\x7e\xb6\x70\xca\xbd\x91\x99\xb7\x88\xbc\xd1\xd9\xfa\xf2\x6e\x30\x8d\xda\xa4\x69\x34\x9d\x14\x61\xf3\xd9\x9a\x7c\x62\xce\x38\x62\x7b\x2f\x45\xe7\xce\xdc\xc1\xf0\x92\xe7\xbe\x14\x8d\xb9\xb1\xd0\x1f\x8f\x4f\xe9\x55\x52\x65\x42\x4a\xef\x09\x1b\x38\x50\x23\x82\xc3\xeb\x73\x0d\x92\xa9\x73\x01\x1c\x35\x1b\x8c\x62\x69\x52\x7e\xd3\x17\x67\x8d\xd6\xd3\x3a\xbd\xf4\xcf\x95\x18\x0d\xd2\x97\x7b\x8c\x9f\x76\x32\x7a\x46\x8f\x72\x95\x29\xdf\x64\x5c\x44\xbf\xe8\x7c\xb9\xf4\xae\x91\x39\x22\x6b\x77\xee\x84\xb5\x51\x2d\x62\x6a\x5b\x5e\x54\x6c\x84\x47\xee\x58\x16\xfd\xd9\x0f\xb8\x34\x51\xd6\x85\xf7\x86\x11\xe1\x6f\x4b\xa3\x00\x24\xc5\x04\xe8\x2b\xe5\x00\x88\xec\xfb\x14\x58\x03\x01\x8c\xf5\x78\x87\x59\xaf\x00\x38\xc4\xf2\x68\xaf\x12\xfd\x93\x8b\x11\xcc\x29\x6c\xb7\x39\x18\x20\xd2\x44\x22\x72\x17\x09\x20\x76\x42\xee\x0c\xf7\x7a\x80\x98\x22\xf5\x14\xf1\x19\x80\x70\x47\xc3\x70\x35\x37\x10\xf1\xf5\x76\xdc\x64\x6a\x80\x69\x38\xfb\x85\xd7\xbb\xc4\x23\xe6\xd6\x9a\xf9\x77\x7d\x61\x32\xd2\x34\xe9\xb2\x46\x58\xf8\xa8\xa9\x41\x76\x5b\x5d\x4c\xc8\xf0\x0e\xdd\xc7\xdf\xab\x12\x5e\xf4\x9a\xe8\x29\xcc\xb2\x24\xae\x69\x9b\x33\x20\xcf\x9e\x8c\x4b\x6d\xb6\x32\x9c\x9c\xc5\x62\xbe\x34\xf4\x1a\x5d\x9f\xbb\x11\xd1\x77\xc3\xd0\x44\x6f\xee\x4b\xc4\x9a\x2b\x97\x4c\x57\x51\x1d\x42\xc5\xce\x8d\x9b\xa9\x51\x9f\x05\x1d\x3a\x73\xcf\x14\x68\x7a\x7e\x33\x27\xbf\x99\x9b\xd0\xae\xf8\x18\x97\x96\x9b\x8b\xd2\x3e\x78\xb5\x1e\x3b\x6a\xae\x4c\xf7\x75\x73\x66\xf2\x2f\x47\xf6\x98\xe7\xd1\xbf\x38\xe9\x1c\x42\xcd\x4e\x20\xc6\x76\x8a\x7f\xb8\xa8\x15\x67\x85\x23\x17\xb8\xa0\x6b\x02\x19\xcb\x1f\xfd\xd1\xff\xb5\x65\xb9\x14\x56\xbc\x03\xb0\x6c\xdb\xe3\xb5\x22\x74\x7e\xff\xef\xd1\x61\x21\x03\x04\xb3\x71\xeb\xcf\xdf\x1f\x4c\x5f\x8c\x94\xd5\x82\x47\xb6\xf4\x01\x64\x1c\x92\x3a\xcd\x99\x04\x90\x71\x4d\x75\xa3\xc8\x5e\x80\x14\x82\x2e\x1b\xfe\x32\xf0\x47\x5c\xb1\xb1\x32\xbb\x39\x1d\xe0\x75\xc3\x3f\xc4\x6b\xf0\x9b\x95\x8b\x60\xe6\xc1\xb0\x75\x03\x98\x1d\xdb\xe9\xf0\x38\xdf\xde\x30\x8b\x8f\x4d\xdd\x29\xb9\x2f\xd7\x9b\xfc\x1a\x2c\xcd\x18\x7f\xf2\xde\xc4\x7d\xba\x28\x13\xbd\xeb\x67\xd6\x35\x83\x4f\x77\xbe\xf1\xcb\x62\xc5\xcc\x4c\x32\xf5\x52\x85\xd5\xea\x59\xcf\xc4\x09\x26\xff\x72\xaa\xda\x7a\xd9\xdc\x8b\xc8\xc1\x93\xf1\xd6\x6c\x54\xaf\x30\xdc\x89\x15\xd6\x96\xd4\x97\xc1\x0a\xff\xf5\x7f\x39\x18\x60\x33\x42\xeb\xf5\x6e\xcd\x5b\x62\x73\x8b\x2e\xe9\x31\x9a\xc3\x63\x6d\x41\x6f\x76\x1e\xce\x22\x59\x73\x20\x4b\x1d\x17\xd2\xc9\x45\x73\xe6\xfb\xdf\xf0\x62\xdf\xbb\xf9\xba\x4f\x88\xe7\xe9\xfc\xe7\x4b\x55\x59\xae\xcc\x15\xbb\x01\x0c\xa5\x37\x2e\x7c\x1e\x75\x34\x5e\x29\x37\x5f\xfd\xa2\x96\x2e\x70\x02\xd1\x96\x2b\x36\xcc\xd7\xcc\xe0\xb5\xf1\x0b\xfa\x4f\x26\xcf\xd2\xf5\x1a\x00\x47\x56\x8a\x94\xee\xe6\x06\x28\x5c\x22\x6f\x25\x78\x0f\xe0\x50\xa5\x46\x8c\x4a\xf0\x74\x54\xba\x8b\x69\xbf\x99\xfd\xa7\xfc\x28\x76\x77\x23\x9f\x47\xdd\x1e\xfe\xfc\x71\xf1\x31\xc5\x6d\x71\x9e\x66\xc5\x21\xa9\xbe\x0f\x5a\x9c\x27\x6e\xb1\x66\x57\x34\x60\xf6\x47\xba\xee\x1e\x64\xbb\xc9\x65\x33\x31\x39\x95\xbf\xa6\xda\xdb\x5e\x62\x7a\x55\x5e\xd5\x99\x43\xf6\x6d\xd3\x48\x96\x32\x33\x07\xe9\xc4\x5e\x87\xee\xd9\xc3\x49\xab\x0a\xd3\x9d\x34\x67\x91\xf8\xf6\x7c\x23\xa7\x83\x73\xc1\xb1\xeb\x99\xf9\x47\xd9\x27\x9c\x94\xa8\xaf\x83\x07\xb2\xd2\x1c\x3f\xd2\x76\x07\x0e\xa4\x67\x39\x71\xd0\x42\xfd\x49\xc9\x2e\x4e\xca\x34\xaa\xb7\x60\xf2\x7a\x87\x62\x7a\x88\xfb\xa6\x84\x87\x0e\x4d\xf4\x8b\xae\x3b\xe7\xd7\x41\x30\x79\xe1\xfd\xb1\x99\x2f\x70\x69\x08\x80\xd4\x4e\x8e\xce\x65\x27\xfe\xe8\xff\x16\x9e\x4b\x57\x2d\xe8\xdf\xae\x8b\xfa\x37\x93\x83\x60\xea\x3e\xcc\x1c\xf4\xd2\xa7\x6c\x33\x2b\x33\x00\x2a\xb7\xf2\xed\xd9\xd2\x08\x70\x46\x53\xfc\x15\xaf\xea\x9c\x64\x79\xa7\xea\x0f\x45\xe9\x2f\x71\x47\x83\xf4\xeb\x4c\xec\xba\x8c\xb2\xcf\x39\xbc\xf7\x16\x6e\x2e\x8e\x97\x0a\xe1\x88\xdf\x7b\x73\x6b\x18\x35\xef\x5e\x56\x49\x75\x6d\xe0\xfd\xea\x63\x87\xb8\x2a\x1b\x7d\xad\x9f\xe2\x0b\xfa\x4b\xf9\xbd\x38\x47\x6c\x8e\x6d\x39\xfa\xcc\x6b\xeb\x64\x5d\xc1\x89\xc3\x52\xde\xac\x53\x67\x0f\x9d\xce\x55\xf7\xae\x9f\x4e\xcf\x2d\xcf\x5a\xe5\xbd\x7d\xa6\x28\x43\x3e\x5d\xd6\x6b\x7c\x56\x2b\x25\x21\x59\xc6\xeb\xe8\x9c\x72\xdc\x10\xd3\xf7\x24\x3e\xc0\xf3\x0d\x55\x2a\xe2\x0c\xd3\xf7\x24\xa6\xd7\xfd\x31\x4d\x3b\xe0\x59\x24\x97\x07\x89\x76\xc5\xb7\x36\xc2\xc8\xc3\x9e\xf6\xc8\x97\x25\xf4\x8b\x7b\x26\x5d\xdf\x23\x0e\x60\xa5\x01\xef\x42\xde\x0d\x53\xff\x97\xf3\x5d\xe3\x32\xff\xb3\x0e\xc3\xd7\x9d\xa9\x7b\x32\x75\x3f\x26\x07\xc1\xec\xbf\x0c\x18\xfa\x07\x61\xc9\x83\x05\x1d\x08\xd8\x83\x56\xc7\x20\x0d\x37\xcf\x08\x3e\x60\xbf\x3c\xc2\x77\xe5\xbe\x82\x93\xac\x7c\xef\x9d\xaa\x02\x72\xba\x7e\xec\xe3\xe8\xd2\x28\xab\x40\xb7\xe2\xda\xd1\xfc\x4c\xdf\xc8\x68\x8d\x72\xd1\x8c\x0d\xc9\xf2\x39\xd7\x8f\xf0\x27\xa5\x96\xb5\x1f\xa9\xca\x7a\x15\x27\x70\xef\xe1\xb1\x94\x64\xd7\xa8\xdb\xef\x85\x4e\x04\xc5\x99\x44\xae\x99\x08\x38\x1e\x13\xa3\x1c\xe1\x3b\x99\x53\x48\x8f\x32\x09\x67\x9f\x7a\x7b\x48\x3c\x02\x0d\xad\x9f\xee\xcc\x49\x0f\x9b\x08\xdd\x3f\xf3\x32\x9d\x14\xc6\x19\x34\x31\x5b\x91\x74\x2d\xe4\x71\xd0\xa9\x39\x89\x78\xbd\xe0\xd6\x80\x9f\x73\x7d\xd1\xeb\x82\x32\xfc\x7b\xa8\xa1\x61\xd4\x80\x0b\x01\x27\xa8\x9f\x83\x3b\x03\xae\xf8\x49\xd0\x48\x81\xac\xfe\xb6\x3e\x93\xb4\x76\x9f\x3b\x7e\x15\x3e\x57\xe8\xcb\xbc\x30\x80\x0d\x5d\x1c\x0b\xb9\x1f\x82\x53\x1b\x9e\xcc\x57\xb5\x87\x4b\x16\xb8\x39\x9b\x72\x9c\xf5\x7c\x0d\x18\x5d\xec\x93\xe9\x87\x91\xcf\xd0\x7f\x99\xfa\x1f\x53\x07\x6f\xf8\xb4\x50\xbb\x1f\xbf\xdf\xca\x8a\xc3\xfd\xa8\x68\x1e\xd8\xbb\x72\x87\xd7\x3b\x85\x7b\x4f\xa4\x5e\x8b\x8d\xb5\xf9\xd5\xb1\x90\x64\xc9\xab\xea\x7e\x5e\x39\x65\x32\xee\x20\x73\x66\xc5\xd9\x2f\xee\x3e\x21\xa7\x0f\xa9\x95\x06\xc4\xd0\xd2\xa6\x93\xbc\x8f\xf9\x1f\x1b\x3a\x30\x14\x99\x56\x78\xa7\x9e\x98\x7f\x3c\xa8\xed\x48\xf4\xdb\x8d\x05\x43\x7e\x49\x87\x91\xc9\x8f\x05\x22\x7e\xe9\x79\x43\x53\x6f\x0f\x8e\xfb\x36\x66\xd7\x4e\xff\xca\xbe\xee\xbb\x26\xa3\x66\xe6\x63\x5a\x8b\x4f\x5a\x9a\xe6\x6c\x41\xd2\xb0\xcf\xe6\xe4\x4d\x73\x16\x71\x16\xde\xda\x89\xa7\xe7\x06\xa2\xa6\xbd\xee\xc5\x2b\x50\x83\xc3\x37\x79\x49\xc7\x5c\xa6\xe1\x82\x77\x79\x96\x46\xdb\xd0\xec\x02\xac\x3d\xc6\x22\xef\xd3\x1e\xfa\xee\xf5\x38\x1f\x51\x41\xa3\x7b\x3b\x78\xb4\x87\x7c\xa4\x7b\xb8\x37\x02\x70\x7c\x61\x3b\xb1\x64\x33\x80\x64\xfb\x72\xbb\xf9\x7e\x0c\x75\x17\xfb\xf2\x64\xf4\xc7\xd4\xfd\x98\xba\x57\x85\x12\xee\x1f\x3f\x88\xc6\x05\x4e\x02\xd3\x6b\x5b\xb8\x2f\x7e\x92\x3a\xb7\xaf\x8a\xc6\xe1\x06\xb1\x4e\x21\x0e\xcd\x8d\xf6\x1d\xc7\xda\xd9\x45\x3d\x05\xd8\x1b\x63\x5a\x7a\x55\x79\xf0\x8f\x2e\x1e\x6a\xb2\xd3\x7f\x60\x7e\xf4\xd8\xd2\xdb\x86\x4e\xda\x3e\xe1\xc9\xac\xb5\x3b\xc2\x6d\xe2\x72\x42\x8f\x5d\xdd\x58\x48\x4e\xe3\xf0\x39\x73\x79\xcb\x0d\xcb\xcc\x2f\x6e\x02\xd5\x73\x5d\xfe\x39\x96\x8e\x07\x2e\xbc\x9f\xf6\xcb\xe5\x71\xb2\x39\x3d\x3a\xc3\x9f\xd9\xe8\xe4\x5a\xbe\x72\x76\x65\xaa\xbc\x63\xd7\x89\xe7\xb3\x58\xfc\x23\xa7\x8a\xa2\x80\x39\xc7\xd8\x7c\xa7\xc4\x23\x4b\xa9\xbb\x23\x26\x1d\x6b\x0f\x95\x51\x6f\x87\x5c\x76\x72\xc8\x3d\x45\x5b\x17\xe4\xe3\x44\xc9\x3a\x4f\x0b\xf7\xb7\x72\xf4\xcf\xa8\xa7\x4d\x78\xc7\x38\xbc\x4d\xbb\x41\x37\xf5\x20\x38\x5a\xa6\xe4\xd2\x83\xdc\xf5\x1d\x68\x89\xd3\xf4\xe7\x2e\x1b\x00\xf8\x2b\x56\x17\xcc\xf7\x43\xca\x5b\xec\xeb\xbf\x1c\x48\x2e\x23\x07\x85\x39\xff\x5c\xc3\xf2\xb7\xfe\x85\xb6\x3d\x5f\x98\xff\x1f\x2b\xe8\x5a\xe0\xa8\x06\x5f\xf7\xb9\xce\xd7\xae\xf5\xef\x45\x77\x49\xac\xbc\xf0\x48\xb0\x2f\x56\xe0\x0c\xc7\xcf\xda\xee\x1e\x29\x05\x37\x59\xbf\x0a\xc5\xce\x5f\x3a\xbb\x28\x19\xb9\x1f\x9f\xf9\xdb\x26\x3a\x19\x84\xa7\x3d\xbe\x1f\x74\x24\xe4\xb1\xf7\xe1\x47\x72\x87\x65\xa2\x57\x38\xf9\x37\x0f\xd7\x5c\x8f\xc3\xac\x6b\x1f\x24\xbc\x6c\x48\x3c\x6c\x2e\xd1\xf4\x7d\x72\x53\x92\xa9\xb9\x54\xc3\xc4\xec\x9b\xb8\x1f\xe6\x1f\xaf\x8f\xce\x25\x44\xeb\x59\x5c\xbf\xbc\x83\xba\x21\x1c\x2c\xd7\x9d\xdf\x43\x3d\x18\xd2\x66\x79\xa7\xf2\x1a\x95\x16\xc4\x6a\x69\x59\x2e\x4c\x4b\xf5\x5b\x6f\x59\x5b\xc2\x46\xeb\xf3\x4e\xb1\xe2\x3c\x66\x40\xe7\xf1\x34\xb5\x9c\x2a\xcc\xa3\x87\xbb\x15\x59\x3a\xe6\x4f\xd0\xfb\x9d\xd7\x59\xfa\x1f\xec\x44\xb8\x1d\x0a\x2d\x0b\xf2\x02\x11\x7d\xbb\x71\x00\x59\xc6\x75\x35\x69\xc7\xfd\xc3\x81\x64\xde\xc2\xfd\x9f\x1c\x48\x53\xe3\xc2\xf5\x1f\xed\x5c\xd8\x17\x3f\xb7\xbe\x59\xd0\xff\x3e\x3c\x1f\xf8\xb5\xf0\xbd\xb7\xde\xe7\x7b\x0b\xfa\x5f\xf6\xf7\x63\x9b\xfc\x71\xb8\xdb\xee\x23\x9b\x78\x8a\xb6\x71\x9e\x4f\xfa\xd2\x2f\xbd\x53\x38\xbe\x88\x7f\x48\x55\x23\x91\xa0\x9b\xfc\xf9\xdd\x6b\x4b\x41\xb3\xd7\x7e\x01\x6f\xfa\xfd\xc2\x3d\xa2\x9c\x77\xbd\x59\x97\x77\xc2\xaf\xc4\x8a\xad\x97\xf7\xb2\x4e\xd0\x80\x71\x62\x0f\xf1\x79\x75\x28\x41\x9f\xbd\x7b\x76\x5c\x2e\x4c\x4a\xaf\xaa\x93\x9b\xea\x10\x7c\x50\xff\x74\xeb\x4a\x6a\x5d\xe0\x09\x83\xdd\x0f\x76\xd3\x24\xfd\x12\x0d\x62\x1b\x44\x68\xd7\xbd\xa6\x7f\xfb\x5c\xd4\x5c\xc5\xd1\x0d\xdc\x72\x8c\xcc\xab\x77\xd3\x73\x5d\x1a\x8c\xd5\xce\xee\xa7\xdf\x72\x8e\x30\xb2\xaa\xb4\x42\x44\xed\x25\x8d\x78\xcb\x7e\x21\x71\x36\xea\x46\xd4\x92\xbb\x48\x96\xf5\x77\xa3\xc9\xe3\x69\xc8\x75\x2b\x12\x00\x99\x71\xde\xb9\x3e\x61\x9c\x03\xcf\x17\xeb\x51\x46\xdf\xbf\x39\x10\x46\x5d\xe4\x40\x7e\xbd\x78\xb7\xc0\x43\x7c\x1c\xfd\x94\x3a\x5f\xbb\x7d\x46\xa2\x17\xfa\xe7\x18\x7f\x3b\x5f\x1b\xfa\x67\x6f\x2e\x0d\xc2\xe1\xae\x12\xa9\x73\xec\x1e\x6b\x56\x96\xc1\x0c\x26\x1a\xcd\xb5\xfa\xc0\xba\x49\x57\xb5\x56\x99\xd5\xd1\x1e\x3f\x9b\x4c\x9a\xb5\x37\xba\x9b\x8f\x7e\xf6\x8a\xb4\x7a\x66\xa3\x3c\x7a\x21\xcb\xdf\x71\x8d\xb1\xc5\xa8\xc9\x85\x60\xd7\x43\xba\x5d\xa3\xab\xdb\xc4\x3c\x56\x6a\xd5\x8c\x9a\x8f\x7e\xf4\x5c\xa6\xd9\xff\x25\x9c\xf6\xca\x7d\x97\x96\x60\xff\x4d\xba\xb2\x8b\xba\x56\xed\xeb\x1e\x7a\x9c\x53\x16\xb9\xb7\xad\x8e\x7e\xde\xb1\x98\x7c\xe2\x71\x18\xb2\xc1\x4e\xea\xb7\xcf\x05\x52\xdf\x87\x88\xd9\x3e\xd1\xb9\x74\xc3\x13\xc9\xb5\x72\xd6\xbd\x7e\x75\x02\x29\xb4\x32\xd5\xd5\xba\x14\x84\x7c\x36\xdf\x4f\x91\x3a\xa7\x87\x2e\x31\x53\xa1\xa4\x9f\x39\x8b\xee\x32\xb5\x06\xb0\x66\xf8\xbf\x44\xd6\x33\xce\x81\xc9\xc5\x7a\xce\x02\xf7\x2f\x07\xb2\x70\xfd\xa7\x2e\xbd\x5f\x38\x37\xbf\x28\x7f\x5d\xd0\x83\xdf\x6c\xfa\x49\x5c\xd4\xff\x66\x16\xf6\x4f\xa3\x3e\x5a\xb2\xa0\xff\x31\xe6\x59\x4f\x6f\x07\x60\xd3\x66\xb9\x5b\xb8\x0e\x40\xe8\xc3\x4e\x42\x9a\x21\xfc\x54\xee\x12\xe2\x0e\x7e\x0b\xfb\x0d\x2e\x2b\x51\x1d\x4f\x60\x8a\x6e\xab\x75\xad\xcc\xd5\xd1\xe6\xd4\x08\x63\x75\xbd\x5b\xa8\x6d\xe5\x2b\x73\x25\xad\x62\x84\xde\x8c\xb3\x1c\x26\xf5\x21\xf5\x83\xf5\xd6\xfb\x08\xed\x48\x27\xa2\x69\x69\x43\xb8\xfb\x0b\x43\x42\xcd\x11\xe2\xc6\x61\x0d\xe4\x98\x19\x46\xcc\x78\xcf\x81\x34\x98\xad\x20\xbe\xeb\xd6\x44\xbe\x99\xa4\x92\xe8\x2f\x4c\x90\x8f\xa6\xfb\xd5\xe3\x5a\xb9\x51\x16\x93\xf5\xea\xc2\x0f\x83\x51\x5d\x43\x45\xf5\xf2\xc6\x9d\xa8\x8f\xc1\x46\x8d\x63\xb7\xf5\x51\x3f\x03\x82\xe6\xd2\x9b\x62\x68\x86\xbe\xa6\x06\xf9\xda\x33\xf4\x85\xce\xaf\x3f\xfb\x80\xe9\x03\x51\x29\xbb\x58\xef\x30\xfc\x91\x16\x39\x98\xe9\xf7\x03\x0b\x7d\x0d\xbb\x2c\xf6\xdf\xc7\x35\xb1\xc0\x13\xbe\x38\x40\x5b\xb8\x6f\x9a\x7a\x16\xfb\x66\xe6\x61\x54\x30\xe6\x9d\xf3\x29\x00\xab\xab\x70\xb8\xcc\x66\x80\x7d\x7d\x5b\xd6\xc7\x88\x00\x28\xa5\xef\xbd\xe3\x6d\x01\x45\x94\x49\xc9\xaf\x36\x6d\xd8\x67\xc7\x71\xb5\x44\x13\x0d\xec\x68\x2c\xbf\x66\x81\xee\x14\xa6\x53\xe4\xae\x53\xa8\x01\x18\xd7\xd5\x67\xba\xcf\x88\xec\xd8\xd2\x16\x17\x0a\x19\xff\x0e\xfd\xf4\x6e\x2f\x65\x4e\xb5\x09\xed\xa6\xfa\xe8\x91\x94\x67\x90\xaf\xe8\x57\x2d\x11\xe5\xa6\x5f\x4f\xd0\x49\xcd\x0a\x95\xd5\x5f\x0f\xa3\x13\x9a\x8f\x54\xb6\x0e\xee\xc3\xd6\x6a\x5c\x52\xe5\xeb\x8d\x44\x67\xb4\x96\xa9\xce\xbc\x2c\x45\xc7\xb4\x2e\xa9\x26\xb6\x1f\xc2\xf6\x6a\xb0\xe1\xf1\x4f\xf8\x31\x3e\x0d\x6d\xbc\x75\x33\x1e\x23\x92\x7e\xa9\x99\x37\xe6\x61\x52\xea\xe3\x00\x89\x8c\x75\x28\x65\xcc\xfd\xdf\x62\xbc\x2f\x3c\x5f\x78\x4f\xa0\x4e\x0f\x2d\x3c\x27\xbf\xbd\xf8\xb6\xc0\x01\xbd\x4f\x9c\x8e\x5f\xd0\xff\x38\x90\x85\xfb\xe8\xbf\x79\x18\x95\xd4\xc5\x7a\x84\xf1\x73\xf2\x18\xc0\x92\x64\x1c\x2e\xbe\x18\x60\xdf\xe7\x4d\xc9\x81\xd5\x00\xf2\x33\x1c\xbe\xae\xeb\xa1\x5d\x97\x2c\xe2\x68\x21\x03\x76\xb6\x3f\xe5\x8c\x0d\xba\x41\x3c\xb4\x46\x79\xa7\x76\x1b\x46\xcd\x95\xc5\x23\xea\xdd\xd8\xeb\x0a\x6b\xc2\x13\x42\x08\x56\x79\x53\x84\x04\xaa\x57\xb1\xe2\x96\x66\xd2\x84\x72\x13\x96\xd7\x77\x45\x7d\xab\xd2\x79\xac\x64\x4a\x81\xe4\xa8\x70\x01\xd8\xb1\x3b\xca\x97\xe5\xbf\x23\x1e\x58\x9f\xe2\x3b\x79\x9f\x89\xa5\xd8\x80\x22\x49\xbe\x76\x64\x1d\xf6\x42\x11\x53\x58\x3e\x74\x1a\x7b\xa2\x64\xaf\xe0\xdb\xe7\x8d\x3d\x56\x3a\xa8\xf0\xa9\x3b\x0b\x6b\x52\x9a\x54\x3c\xdc\x41\xc0\xee\x28\xdb\x28\x66\xb7\xc9\x60\x9d\x4a\x52\x00\x85\x35\x8b\x7d\x5f\x63\x3c\x17\x5b\x17\x9e\x93\xe8\x8f\x0f\x4e\xf3\xf5\x47\xcf\x8f\x9e\xf9\x3a\x50\x35\xcd\x3f\x5f\x5f\x25\x2d\xf2\x10\x4c\x0e\xe8\x46\xe3\xbf\x1c\x4c\xd1\x20\x43\xff\x66\xcc\x89\x87\x33\xf4\xcf\x10\x04\x60\xef\x99\x75\x9a\x9e\x5b\x01\xa4\x9d\x76\x34\xd8\x9d\x06\xd0\xda\xc7\x77\xcd\x84\x0b\xae\x5b\x78\x8b\x4e\x52\x8c\xa0\xd4\xcf\x49\xb2\x9f\xcc\x02\xae\x29\x2c\xf2\xdc\x24\x19\xa0\x1c\x4d\x55\xb8\xae\xa6\x07\xa2\x67\x6f\x29\x79\xa9\x04\x01\xdf\xcd\xed\x4a\x71\x4a\x01\xc0\xfe\xf0\xb5\xd2\x55\x05\x6b\xe0\x7a\x23\xac\xc4\x23\xcf\x03\xaa\xdf\x79\x14\x8e\xfc\xe6\x1d\x04\x60\x10\x0e\x89\xab\x4b\xd9\x60\x69\xd0\xb6\x9f\x4f\x8a\x75\x5a\x08\xae\xef\x6f\x94\x16\xf9\x6e\x0d\xb1\xe2\xab\xa4\xd2\x3e\x6b\x42\x8e\xe8\x05\xe9\xe4\x01\x79\xf0\x13\x3f\x27\xf5\xf9\xad\x02\x24\x89\x6d\x00\xb8\xc0\x78\x4e\x3e\xb4\x5a\xac\x03\x0b\x7d\xfe\xda\x33\xb6\xb0\x2f\x86\x9c\xe7\x44\x16\x9e\x83\x84\x45\x1e\x82\xe9\x03\xf0\x5f\xfd\x8f\xa9\x7f\x32\x7d\x10\xe2\x18\xdc\x80\x1f\x1f\xc0\x12\x19\x1c\xce\x5b\x02\x80\x47\x71\xb5\xb6\x53\x05\x80\x74\xef\xf6\x08\x0b\x16\x00\xd2\x3b\xce\x47\xfa\xed\xf0\xdd\xf4\xaa\x40\x87\x4e\x2c\xbc\xf4\x30\x11\xf1\xd0\xa8\x82\xc6\xa8\x18\xf1\xa5\x6a\xa3\x70\x2d\xc7\x53\x42\x42\x35\x03\x0a\x8e\xff\x90\x3a\xad\xb2\x0a\xe2\xcf\xee\x95\x51\x50\x3c\x02\x21\x37\xf2\x64\x2e\xc9\xab\x40\xf4\x43\x65\xe9\x37\xb2\xbe\x90\xfe\x9a\x2e\xf5\x53\x66\x1c\xb2\x3f\x8f\x4a\x73\xc8\x6e\x81\x2a\x6a\x8e\x54\xaa\x54\x2f\x00\x34\x89\x2c\x97\xa8\x02\x00\xd8\x37\x26\xa6\x07\xb1\x00\xbc\x1c\x62\xdc\x33\x75\x00\x7b\x55\x45\x9d\x7f\x9e\x02\xe0\x2d\x15\x2d\xfd\x9a\x0e\xb0\xb7\x08\xa0\xd1\x7c\xb1\xff\xb7\x95\xf3\x75\xb2\x72\x74\xe1\xf9\xff\xd9\x9b\xb6\x7b\xbe\xf6\x30\xe6\xf8\x5b\x18\x7e\x28\xbf\x7d\x00\xfa\xff\xe5\x60\x98\xfa\x6f\x32\x83\x03\x08\x66\x70\x32\x2e\x0c\x6e\xc2\x75\x25\x00\xf7\xa3\x55\x7a\xcc\xfc\x07\x93\x0a\x00\xd2\xbe\x3d\x6f\x75\x13\x00\x0c\x03\x79\xf3\xb5\x74\x00\x9c\xec\xf9\x81\x74\x03\x7e\x05\xf7\x0b\xe5\xaa\x9d\x84\x8f\x89\x85\xfb\x8d\x55\xda\xa0\xe3\xe0\x51\x51\x19\x25\x65\x78\x59\x6c\x2a\xd2\x2d\x3f\x0d\x4f\xcf\x7a\x88\x3a\x30\x7d\x0d\x64\xce\xc1\xbd\xa6\x6d\x62\x92\xd2\x4a\xd0\xd2\x3e\x21\x9a\x27\xcd\x02\x4d\x03\xb3\x62\x55\x52\xbb\x61\x64\xcc\x4c\x24\x46\x8a\x05\x00\xde\x09\x6f\x14\x97\x9f\x5f\x8f\xbd\x1d\x22\x4f\xe6\x2b\xe7\x47\xe1\x0d\xff\x3f\xba\xce\x3a\xae\xa9\xb7\x7f\xe3\x53\x2c\x14\x49\x03\xe9\x6e\xd8\xd8\xd8\xd8\xd8\xc8\xd1\xdd\x8d\xa0\x20\x08\x8a\x22\xa0\xa2\x62\x2b\x28\x76\x60\x60\xb7\x22\xd8\x81\x8a\x81\x08\x62\x81\x89\xa2\x62\x81\x98\xa0\x28\x4a\x6c\x3b\xd7\xef\xc5\xd9\xa6\xf2\xfc\x9e\xe7\xaf\xeb\xf5\xe5\xeb\x1f\xbb\x3f\xbb\xe3\xec\x5c\xef\xfb\xfa\xf4\xaa\xda\x3b\xd3\x79\x3d\x33\x80\x31\xe3\xa4\x1c\xcc\x6f\x9a\x38\x17\xeb\x03\xba\x37\xf7\xea\xb3\x04\xf1\xe7\xaf\x91\xe4\xc0\x48\x39\xa0\x12\x09\x17\xf5\x9f\x39\x00\xd2\x7e\x20\x33\xab\x24\xfe\x7f\x5b\x5f\xdf\x37\x26\x08\xd0\x34\x1d\x98\x15\xe2\x05\x58\xd9\xca\x9f\xf3\x99\x0e\xd8\xed\x1e\x51\xeb\x71\x1b\xf0\x1d\xa9\xb5\xd8\x4d\x19\x88\x79\xab\x97\xe1\x7c\x01\x98\x9c\x64\xb8\xd9\xa1\x1b\x98\xe5\x60\x9c\xc0\x8b\x01\x96\xee\x33\xd9\x6e\x57\x0a\xc1\x9a\x40\xd3\x12\xb6\x39\xb0\xe5\xa2\xa9\x1a\xb3\x0d\x82\x03\x6b\x4d\x63\x98\x8a\x68\x3d\x49\x31\xbb\xfe\xc7\xdf\x5f\x86\x6f\xb7\x4e\x9b\xdd\xa1\xf7\x43\xfb\x33\x0f\x73\x43\xeb\x0f\xe8\x6e\xfa\x66\xee\x68\xdd\x0a\x74\x34\x9b\x79\xd1\x1e\x92\xdc\x87\xba\xe5\x3d\xb2\x1e\x5f\xcd\x9e\x90\xf5\x98\xd3\xd3\x2a\xde\xff\xbf\xa0\x87\xac\xc3\x8b\x65\xe8\xc3\x01\x5d\x92\xf0\x70\xc7\x26\xf5\x3d\x07\xa4\x1c\xcc\xf2\x45\x62\xcd\x95\xcc\x93\xa9\x12\x6e\x6c\x1c\x21\xd6\x90\x25\x00\x65\x01\x85\xe2\x9e\x0b\xf4\x6f\xa1\x50\xfc\x8c\x01\x63\x0c\xb5\xf5\xe8\x01\xd8\xa9\xca\x73\xf8\x6c\xc0\xb5\x46\x35\xcd\x25\x1b\x08\xdf\xab\x35\xdc\x71\x3e\x90\xf8\x44\x47\xcd\xbe\x3f\x90\x29\xab\x57\xc0\x3d\x09\xcc\x99\x6c\xe0\xc6\x71\x04\x96\xb0\x0d\x78\xb6\xc9\xc0\xea\x03\x86\x23\x98\x02\x60\xcb\x4c\xc3\x5f\x8c\x16\x60\x1f\xd5\xb0\x82\xe1\x0e\x1c\xdb\x67\x9c\x48\x17\x01\x65\x61\x26\xcf\xad\x77\x02\x37\xa6\x9b\xe4\xd2\x06\x01\xf7\xf7\x19\xb5\xd3\x36\x02\x2f\x73\x4d\x56\xd0\x82\x80\x4f\xef\x8d\xeb\x69\xbe\x40\x67\xb6\xd1\x1c\xaa\x41\x6f\x1d\xf4\x0a\xdb\xde\x76\x91\xcf\x47\xaf\x8c\xc5\x9f\xfb\xae\xa4\x0f\xd0\x15\x49\x9f\xb8\xff\xc5\xc1\x14\x48\xe6\x81\x34\x0f\x45\xda\x0f\x24\x45\xd4\x77\x1e\xf8\x4b\xce\x51\x47\x49\xae\x8c\x3b\x07\x30\x88\x1d\xbc\xce\x25\x16\x60\x3c\x94\xdf\xe4\xb8\x16\x70\x71\x1e\x69\xcb\xf5\x03\xfc\x9b\x46\x0d\xe1\x1d\x03\xe2\x1a\xd4\x57\x71\xab\x81\x49\x5a\x5a\x9d\x9c\x45\x40\x36\xa1\x7d\x8b\x5d\x08\xcc\xad\xd7\xcd\xb5\x75\x01\x96\xec\xd2\xed\x61\x66\x01\x6b\xd2\xf5\xea\xe8\x7e\xc0\xa6\x37\x3a\x67\xa4\xfe\x3e\x6d\x32\x70\xa4\x58\xcf\x8c\x7a\x1f\x38\x5d\xa0\x3f\x90\x5a\x07\x5c\xa5\x19\x5c\xb1\x6a\x07\xaa\xdf\x1b\x70\xad\x0a\x81\x07\xdb\x0d\x66\x58\xb9\x01\x8d\x5e\x06\x8e\x56\x35\x40\xeb\x54\x83\xb5\x6f\x53\xc5\xfb\x9f\xb4\x2f\xd8\x7f\x72\x40\xd2\x3c\x1c\x29\x07\xb3\x5a\xd2\x2f\x6c\xb1\x84\x1f\x9d\x29\xc9\x51\x91\xf2\x50\x09\x92\xfe\x31\x61\x19\x92\x71\x4b\x72\x54\x38\x6e\x00\x85\x41\xa1\xb8\x19\x03\x46\xdc\x21\x21\x0e\x79\x80\x35\x4d\x6e\x91\x5d\x39\xc0\x6d\x51\x3c\x63\xeb\x06\x78\x9c\x52\x2a\xb4\x3d\x0e\x84\x7d\x1b\x39\x56\xca\x3d\xb0\x7c\x80\x34\xc3\x31\xeb\x59\xaf\x81\xec\x47\x9a\xb2\x36\xe9\xc0\xac\x5f\xea\xbf\xe9\x09\xc0\xe2\xfd\x1a\x3c\x7a\x2a\xb0\xf2\x94\xd6\x34\x69\x3d\xac\x13\x80\x1d\xf2\x3a\x2d\x56\x2a\xc0\xfe\xe3\x5a\x8a\x96\x2e\x40\xe9\x22\xad\x34\x2b\x3a\x50\x36\x40\xd7\xdd\xaa\x3f\x70\xed\xa3\xde\x28\x0b\x53\xa0\x66\x98\xf6\x33\x8b\xa3\xc0\x23\xa6\xae\xab\x94\x03\xba\x2e\x59\x0f\x7f\x38\x20\xc9\xf7\x59\x44\xc1\x7f\xe5\x60\xa4\x3c\x98\x74\x1d\x4c\x98\x20\xd6\x28\x49\x3e\x4e\x80\x42\x5f\x0e\x84\xd5\xfb\xff\x4f\x53\x28\xbc\xa5\x80\x66\xaa\x4c\x21\x27\x13\x30\x0f\x95\x55\x60\x09\x00\x56\xf4\xf0\x39\x8c\xf5\x80\xf3\x2c\x79\x4b\xfa\x44\xc0\xb7\x4e\xe1\x91\x75\x0a\x10\xfe\x46\xc9\x95\xf6\x03\x88\x5f\xa9\x7c\x9d\xe1\x07\xa4\x0e\x1d\x55\x66\xfd\x16\xc8\x54\x1e\xbd\x9d\xfa\x0e\xc8\xd1\x18\xad\x4f\xdd\x08\x2c\xc8\x53\x3d\x60\x71\x19\xc8\xdf\x34\xda\x86\x7a\x03\x58\xcf\xd7\xd8\x66\x95\x00\x6c\x31\xd3\x30\xb2\x2c\x01\xf6\xe8\x6a\xb4\x59\x04\x01\x87\x93\x35\xc6\x99\x27\x03\xc7\x4b\x34\xe8\x66\xeb\x80\xf3\x81\xea\xdd\x66\xfe\xc0\xb5\x87\x1a\xf3\x7b\x3f\xa5\x9f\xc4\xcf\xfb\x1f\xbe\xf7\x26\xce\xb3\x5e\xd5\x29\xb1\xdf\x3c\x50\xfd\x6f\x1e\x04\xe3\xad\xb3\x85\xfc\x44\x80\xeb\xea\x2a\x54\xc9\x03\x9c\xa7\xfb\x29\xab\xf1\x01\xbe\x75\x38\x57\x7b\x10\xe0\xae\x9d\x30\xd6\x48\x01\x70\x4f\x9a\x5c\x6a\x21\x0f\xb8\x3e\xca\xdd\x60\x7d\x1c\xe0\x6f\x5e\x51\x64\x6b\x0d\x38\x9f\xd8\x91\xc4\x9b\x0b\x38\x8e\x3d\x36\xc7\x71\x3b\xc0\xd3\xbc\xf6\xd4\x31\x13\xb0\x7b\xfe\x88\xef\xfc\x04\xe0\x54\xbc\xdf\xe9\x12\x0d\x70\x56\x08\xdc\x5c\x36\x02\xb6\xcf\x89\xcd\xbc\xd3\x00\xab\x9a\xa8\xe7\x78\xff\x62\xb2\x0e\x11\x55\x9c\x6f\x6d\xfa\x4c\x11\xf1\x8e\x6d\xd2\x72\x98\xb5\x9d\xb8\xcb\x99\xfd\x3a\x91\x75\x82\xa8\x67\x77\x35\x6c\xb6\x2d\x24\x2a\xec\xc6\x3e\xfa\x60\x7b\x89\xa8\xe3\x9c\xba\x17\x68\x9b\x4c\x74\xd8\xae\xbb\xc5\x64\x6f\x22\x5e\x72\x3c\xab\x4e\xd8\xde\xc6\x20\xd6\xa1\x0a\x7d\xf6\x63\xa2\xc7\xf6\xe8\xbf\x3c\x8c\x7b\xf4\x7f\xf3\xbd\x07\x0c\x67\xcb\x91\xfe\xff\x71\xee\xa8\x81\xc1\x80\x39\x78\x0a\xb2\x97\x00\xdb\x43\x8e\x43\x15\x7e\x02\x5c\xaa\x4b\x93\xf2\x27\x80\x9f\xe8\x23\xaf\x3e\x18\x70\xdd\x12\xea\xa7\xbd\x18\x70\x57\x88\x9f\x62\xb8\x11\xf0\xc8\x9d\xb4\xc4\xa2\x01\x70\xfb\x34\x87\x45\xdf\x00\xb8\xba\xaf\x50\x67\x8f\xf8\x5b\x07\x27\xab\x63\xdd\xce\x9b\x00\x07\xd5\x8a\x93\xae\xf9\x00\x37\xe6\xc9\x40\xfe\x1e\x80\x33\xe5\xc3\x37\xe7\x62\x80\xd3\x24\xd2\xe3\xef\x05\xd8\xab\x88\x34\x07\xa1\x68\xb0\xad\x0b\x71\x82\xcb\xfd\x39\xc4\x76\x0b\xb1\x9e\x57\xf6\x79\xbe\xed\x2e\x62\x13\x6f\xe1\xbb\xf1\xec\xc1\xc4\x06\xde\xfd\x46\x3a\x9b\x45\x14\xf1\x56\x3d\xbe\xcf\x89\x24\x96\xdb\x3f\x7d\xb0\x86\x7d\x81\x38\xc9\xdd\x74\x67\x3c\xa7\x90\x28\xe5\xe9\x55\x8b\x38\xde\x44\xad\x9d\x67\xa5\x19\xfb\x14\xf1\xcb\xb6\xfd\x5a\x2d\x7b\x02\x64\x59\x7d\xea\xf0\xff\x7c\x6f\xd2\xd7\x18\x3a\x96\xf5\x98\xac\x03\x8f\x63\x33\x40\x08\x50\x3d\xb8\x4e\xc3\x94\x00\xdb\xdb\xdc\x85\x0a\xcc\x7f\xf8\xa0\x93\x3e\xcb\x34\x6c\x01\x8f\xfc\xe0\x49\xba\x71\x80\xd7\xf6\xb8\x89\x26\x93\x01\x2f\x5a\xda\x75\xab\x6d\x80\xc7\xd2\x59\x77\x6d\xe8\x80\xdb\x9a\x15\x7a\x76\x6e\x00\x7f\xd2\xf6\xd5\x8e\x53\x01\x27\x9d\xe3\x55\xce\x8f\x00\xfb\x17\xd7\x67\xb9\xf2\x00\xee\xfc\xfa\x1a\xd7\x1c\xc0\x8e\xfe\x79\xb2\xab\x0b\x60\xe7\x24\x6a\x77\x6d\x00\xd8\x6b\x88\x54\xc7\xfe\x5d\x0f\x6c\xaf\x11\xab\xec\xe5\xda\x07\xb2\x43\x88\x34\x87\x17\x1f\x3c\xd8\x2e\x44\xae\x83\xcc\x9b\xab\xec\x22\x22\xd7\x41\xbf\xc1\x98\x93\x46\x64\x39\xb4\x3f\xfa\x6a\x67\x4f\x24\x3b\x7e\xa8\xfd\xc5\x89\x20\x0e\xf0\x66\xdc\x5a\x68\x97\x40\x6c\xb1\x9f\x53\xa5\x6a\xa7\x4d\x5c\xe4\xee\xa9\xf0\xb5\x9b\x40\x54\x73\xd5\x2e\x2f\xb2\x93\x21\x3e\x72\x34\xf0\x5f\xb8\xa0\xff\xf0\xbd\xfb\xb3\x78\xbd\x2a\xf5\xff\xad\xd5\xd9\x1e\xc3\x12\xfe\x72\x31\x4e\xd7\x1d\x3f\x8c\xb4\x03\xdc\x2b\x3c\x56\x6a\xf8\x03\x5e\x4b\x02\x87\xeb\xe9\x03\x5e\xb2\xb1\x79\xc6\xe3\x01\xaf\x8d\x13\x0f\x5b\x0d\x00\xbc\xc6\xe6\xd4\xb1\x52\x00\xf7\x1d\x05\x25\xdc\x67\x00\xbf\x65\xfb\x73\xa7\xe5\x80\x53\xfd\xf1\x5f\xfc\x79\x80\x43\xc4\xf5\xd7\x6e\x5b\xd0\xcd\x73\x7e\xaa\xed\x7e\x1c\x3d\x5c\xe7\xd6\x3d\x1e\x42\xc0\x2e\x4d\xd4\xec\x36\x05\x60\xcb\x13\x05\xf6\xb1\xbf\x16\x72\x1c\x08\x6b\xe7\x9b\xad\x0a\x9c\x01\x84\xa7\xd3\xd9\xe6\x3d\x9c\xbb\x04\xdd\x45\xb6\x91\x6f\x37\x98\xe0\x3b\xa7\x3c\xb9\x66\x57\x4c\x78\x3a\x67\x3d\x30\xb5\xab\x23\x62\x9c\x0e\xdc\x09\xe0\x4e\x22\xc6\x3b\x2d\xae\xb6\xe3\xaa\x11\x6b\x1c\xd8\x15\x1c\x9e\x2a\xb1\xcc\xa1\xe5\x8a\xba\x5d\x0e\xf1\xc4\xce\xe3\x62\x24\xf7\x28\x71\x83\xbb\xad\x77\xbc\x5e\x91\x7d\xeb\x20\xf1\xbd\x25\xf7\xde\x95\x4b\x6d\xc8\x3e\x29\x86\xeb\x59\x56\x83\x12\x01\xc6\x23\xdb\x39\x72\x59\x7f\xb9\x18\xa7\xdd\x8e\x1d\x23\xd9\x80\x7b\x89\x5b\x9d\xba\x37\xe0\x3d\x28\x40\x53\xcf\x0a\xf0\x95\x8f\x7e\x68\x7a\x07\xf0\x19\x33\xb1\x3f\xb5\x10\xf0\xde\x35\x73\x9b\xed\x0e\xc0\x23\x61\xd9\x1d\x9e\x0e\xe0\x9a\xb8\xfd\xb0\x73\x2a\xe0\x7c\xf0\x84\x85\xdb\x34\x74\x3a\x64\xdc\x98\xe8\x9e\x81\xd7\xbc\xda\x86\x1c\xcf\xcf\xf8\xc6\x9d\xf7\xed\xbb\x57\x3f\xc0\x2e\x55\xf4\xde\x2d\x5d\xc0\xe4\xec\x25\x54\x5d\x84\x3f\xc7\x73\x2e\x13\x2a\x7c\xdf\x4f\x57\xed\x58\x84\x2c\xff\xf7\xbb\x54\x4e\x3b\x41\x77\x51\x7d\x7e\x9d\x6b\x40\x8c\xe4\xb7\x3d\xf2\xe6\x0d\x23\x94\x5d\xa7\xdd\x6b\xe7\x45\x10\xc6\xfc\x7d\x35\xba\xbc\x61\x44\xac\xb3\xa2\x94\x0b\xbb\xca\xe0\x95\x10\xf3\x1d\x97\x5e\x32\xb6\xe7\x12\xf9\x8e\x81\x65\xcb\x78\xd5\x44\xb1\xfd\x7f\xe5\x82\xfa\xde\x7b\xd7\xdc\xcb\x32\x95\xf1\x07\x4c\x0e\xd2\x67\x0d\xd6\xfe\xcb\x41\xf0\x1e\xb3\x3b\x15\x8d\xfe\xe6\xc5\x78\x54\xb9\xe5\xa8\x67\x01\x3e\x8d\xbe\x9b\xf5\x4e\x02\x7e\x9a\x91\x22\xb3\x7e\x80\x1f\x25\xd9\xca\xba\x1f\xe0\xfd\x60\xfa\x3d\xd6\x2b\xc0\xf3\xe8\x72\x2d\x87\x42\xc0\xed\xdb\xb6\xb5\xfc\x9f\xf8\xe1\x12\x77\xbc\xd0\xfd\x2e\xea\x1c\x0b\xaa\xce\x78\x3d\xc2\x39\xfb\xe2\x17\xdb\x7d\xd5\x50\xcd\x0b\xf8\xf1\xd9\x57\x0b\xb0\x6b\x14\x55\x78\x28\x75\x2d\xb5\x4b\x14\xbd\x73\x5b\xd7\x36\x98\xeb\x27\x3a\xeb\xf1\xe1\xfd\x13\x6e\xb4\xe8\xa1\x7b\xbd\x94\x8f\x7b\xaa\xc9\x3b\x2c\x7a\xe6\xc1\xbc\x7f\x84\xb7\x9a\x18\xea\x36\xf8\x36\xc7\xc1\x43\xd4\xec\x91\x2c\xe5\xe3\x2a\x64\x1c\x8c\x09\x26\xff\xe0\xe5\x65\xf6\x2f\x89\x38\xe7\x7d\x65\x84\x7d\x00\xb1\xd1\xa1\xe4\x2c\xc5\xe1\x0a\x31\xcf\xc9\x81\xac\xc3\x1b\xf1\xf8\x9d\x36\x52\xfe\xe1\x61\xfa\x6d\xa0\x93\xf3\x42\xb3\x8c\x91\x21\x43\x05\xcc\x53\xac\x05\x43\x7a\x7f\x2d\x1e\xb7\xd9\x27\xe7\x05\x38\x08\x99\x5f\x15\x64\xff\x72\x31\xbe\x3f\xf9\x6b\xd4\xdf\x03\x7e\xa3\x7d\xcd\xf5\x5d\x00\xff\x25\x61\x6a\xa6\xb3\x80\x00\xd7\xa4\x56\x06\x1b\xf0\x0b\xc9\xde\xcd\xe9\x02\xbc\x1f\xe6\xa7\x39\xa7\xe3\x8b\xc7\xb6\x6d\xcb\x3c\xd2\x50\xcd\x3f\x7d\xe2\xa1\xf7\x16\x9c\x76\x0a\xac\x6a\xf6\x11\x62\xb5\x43\xd0\xab\x4c\xff\xdf\x38\xc4\x7b\xdd\x69\xe5\xbf\x14\xe0\x06\x89\xb6\x79\x96\xff\xe8\xe0\x29\x89\xd2\x7d\x06\x7f\xac\xe4\xe5\x8a\x72\xbc\x5b\xdf\xd2\xec\x07\x88\xe6\x7b\xff\x6c\xd0\xb7\xbf\x2f\x5a\xea\xa3\xfd\xf0\x9d\x43\xba\x68\xbd\xf7\xab\xbb\x16\x0e\xdf\x44\x27\xbc\x5e\xd6\x6c\x73\x38\x2f\x7a\xe1\xd1\xfe\x87\x0b\x73\x70\x64\x12\x5a\x6e\xa3\x2f\xe8\x39\xe9\x10\x06\x6e\x9a\x67\xb9\x4e\xb6\x84\x2b\x7f\xc7\x89\x6b\x4e\x54\x62\xb2\x33\x79\xba\xbb\x07\xfe\xc7\xbe\x40\xde\x7b\x1f\xd4\x42\xf5\x23\x7d\x8d\x48\xda\xdd\x01\xe7\x00\xea\x6c\x6a\x89\xac\x27\x60\x77\x9b\x7e\x4c\x6e\x5d\xef\xbe\x6f\x53\xa0\x90\xf1\x0f\x17\xa3\xe5\xb4\x54\x6d\x37\x10\xbc\xc1\xc7\xd5\x90\x02\x04\x67\x85\xc4\x5b\x5c\x07\x82\x93\xc7\x9f\x65\x0d\x02\x02\x9e\x67\xbe\xe2\xdd\x02\x7c\x99\x79\xd7\xf8\xab\xf1\xc5\x43\x54\x64\xe5\x31\x11\x25\xae\x95\xc7\x3b\x7c\xcf\x21\xdf\x59\xb7\xc6\x2e\xc0\x0d\xb9\x0e\xcb\xde\x14\x07\xfa\x20\xd3\xfe\xaa\xf0\x7c\xb0\x83\x94\x8f\x6b\x5b\x64\x1f\x2b\x52\xf5\xff\xd0\x1c\xea\xa0\x22\xd2\x0e\x50\x95\x72\x61\x4f\x72\x1d\xb5\x45\x81\x7e\x55\x52\x2e\xac\x66\x9b\x93\x95\x68\x95\x4f\x9d\x94\x0b\xbb\xf2\xda\xe9\xa3\xe8\x96\x57\xde\x45\x59\xe7\x15\xa2\x17\x9e\xef\xcf\x8f\x72\x1e\x46\x28\xba\x47\x9e\x9c\xef\x92\x44\xc8\xbb\x3f\x3a\xe6\xe4\x3c\x8f\x08\xe6\xbb\xfe\xef\xf5\x20\xa7\x61\xe5\x43\xee\x0b\x0f\x2c\x77\x0f\xdc\x06\xd0\xf2\xac\x56\xcb\x2a\x03\x8e\x51\xd4\x4a\xb9\xfe\x80\x57\x35\x3d\xf8\xdf\x7e\x31\x21\x09\x3c\x63\xd5\x00\x20\x7c\xbc\xc7\x38\xfd\x7e\x40\x98\x4a\xd0\x4e\x8b\x8f\x40\x68\x53\x42\x3f\xdb\x5d\x40\x88\xd3\xd4\xed\x8e\x3d\x80\x5f\xca\x92\x41\xfc\x2e\x5c\xf2\xe6\x6e\xa5\xf9\x6c\xc2\x74\x77\xc3\x93\xe6\x81\xcf\x11\xe0\x12\x73\x4b\x27\xc4\x0e\x74\xc7\x6d\xcd\x47\xc2\x74\xe1\xe3\x10\x28\x9c\x1d\xba\xa9\xdd\xcf\xe1\xba\x70\x65\xe8\xbc\x96\xa7\x8e\x2b\x85\x1b\x42\x2b\x1b\x0b\x9d\x9a\x85\x73\xc3\x79\xff\x99\x17\x76\xab\xc1\x85\x2b\x92\x09\x1e\x72\xfd\x88\xcb\x47\x91\x75\xe0\xfc\x3f\x3c\x94\xc8\xa5\x5b\x54\xe0\xfb\xee\xdc\x29\x3e\x4f\x74\xdc\x67\xfc\x09\x2d\x7e\x9b\xe8\xb9\x57\x49\xa9\xb1\xab\xbf\xe8\x8b\xa7\xe0\x08\x9f\x5f\x4e\x58\xba\x1d\xc7\x3f\xf9\x30\x9c\x41\x62\x15\xfb\x9d\x4a\xee\xe6\x64\x9e\xb3\xf9\x2d\xf3\x53\x83\x13\x00\x56\xa7\x69\xe3\x10\x23\xc0\x25\xd7\xd2\x73\x58\x18\xe0\x9f\x4a\x6d\x95\x7f\x03\x84\x74\x31\xec\x94\x35\x80\xa8\x08\xbb\xb5\xaa\xaf\x81\x58\x6f\xfe\x65\x5d\x02\x88\xbe\xe2\x3f\xc3\x62\x39\x10\x39\x21\x76\x24\xe7\x04\x10\x16\x35\xd9\xd0\xa9\x01\x77\x83\x2c\x16\xbe\xf2\x5a\x81\xf5\x3e\x0f\xb7\xfc\xf0\xff\x06\xbe\xc7\xca\x93\x23\x42\xd3\x31\x94\x1f\x79\x57\x2e\x62\x2f\xd1\xe8\xb4\xe7\xe3\xf3\x68\xe3\x1e\x75\xc7\x04\xe1\xe8\xc8\xd9\x9f\x0d\x9c\x4e\x09\x87\x44\x35\xff\xe1\xa1\x94\xf9\x71\xc2\xa1\x31\x36\x75\x99\xfc\xcd\xc2\x88\xc8\xf2\x1a\xba\x6b\xb9\x70\x52\xe4\x9c\xca\xa3\xae\x67\x84\x27\xc3\x04\x57\xd4\xdc\x16\x08\x6b\xc3\xcc\x2e\x28\xba\x65\x8a\xd4\x83\x99\x67\x72\xdd\xde\x8b\x9c\x03\xef\x1c\xeb\x70\x9f\x2c\x9a\xe6\xdf\x56\x5c\xe0\xde\x2d\x5a\xef\x57\x7a\x88\xea\xfe\x43\x74\xd5\xe7\xd0\xfe\x67\x1e\x71\xa2\xdb\x3e\x9c\x7f\xd7\x83\x98\x03\xa1\x44\x5a\xf4\xeb\x55\xad\x71\xe6\x2e\xfd\x3b\xff\xde\xfb\x96\xf6\xbf\xf7\x7c\x6f\x9c\x20\x1b\x07\x04\xd1\x4d\x5b\x86\xbd\xfe\xcb\x83\xc4\x97\x33\x39\xa3\x92\x81\xf1\xfe\x4e\x6a\x3a\xf7\x80\x84\x52\x9f\x18\x0b\x7d\x20\xee\x75\x84\x17\x67\xd3\x9f\x3c\xad\xc3\xa1\x94\x79\xb3\x7c\xa7\x20\xd4\x7f\xd2\x66\xd3\x90\x95\x44\xb7\x97\xd9\xc9\x8f\x51\xde\xc4\x09\xd7\x5d\xb5\xa9\xb1\x6d\x44\x86\xf3\xba\x6f\x57\x12\xfa\x7f\xdf\xe6\x42\x11\xd0\xc6\x29\xbc\xd5\xe7\xcf\x14\xc4\x26\x1c\xae\x3f\xe4\xe6\x24\x08\x1a\x57\x57\xeb\xed\x06\xc1\xee\xf8\xd3\x37\x4f\xbb\x5f\x13\xd4\x8f\x75\xad\x78\xea\xd1\x29\x78\x3d\x36\x5e\xca\x01\x9d\xad\xf3\x8a\x12\x46\x45\xef\x3c\x99\xe0\x25\x27\xbc\x18\xde\x51\xb2\xd5\x2b\x52\xd8\x15\x7a\xe0\xd0\x54\xef\x7a\x61\x4f\x68\xeb\x81\x48\xaf\x56\x91\x4f\xd0\xb8\xbd\x5b\xbc\xfb\x89\xa6\x05\xdc\xde\x71\xcf\xab\x47\x74\xde\xf7\xe8\xff\xe7\x40\x64\x97\x9b\x90\xfe\xa6\x6e\xbd\x61\xb6\x4c\x09\xc0\x50\xd6\xdd\x34\x60\x2f\xc0\x77\x32\x98\x33\x38\x18\x08\xa0\x19\x70\x86\x2c\x02\xa2\xd7\x19\xae\x18\xba\x17\x18\x7f\xda\x2c\x4d\xa1\xdf\xdf\x7e\x31\x69\x7c\xee\x52\x6d\x4d\x20\xf5\xae\xbb\x99\xd9\x0a\x20\xb1\x35\xb4\xd0\x6e\x30\xae\xc7\xed\x4c\x3c\xe4\xb1\x1c\x53\x23\x0e\xcd\x16\x05\x56\x60\x70\x50\x68\xe1\x98\xc8\x0a\x62\xa7\x8f\xf9\xc9\x6b\x63\xaf\x77\x6d\xf7\xb0\xac\x55\x4a\x5a\xf2\xf3\xbe\x6b\xca\xd7\xa9\x13\x47\xbf\x1f\xef\x16\xd7\x43\x4f\xfd\x5c\x7f\xce\x23\xa9\x67\x52\x6a\xe8\x5d\x1d\x2f\x9f\x9e\x95\xa9\x06\x55\x84\x57\x7d\x4f\x73\xf2\x1d\x69\x9f\xb8\x0b\x3e\x3e\x45\x82\x89\x89\x81\xa7\xed\x7d\x7d\x04\x65\x09\xad\xa5\xb2\xbe\x07\x85\x7a\x71\xc9\x47\x66\xfb\xde\x13\x26\xc4\xf0\x0e\x34\xfb\x05\x08\xf3\xa2\xda\xf6\x96\xf9\xdd\x16\x1e\x8a\xbc\xb7\xf3\x9b\x5f\x89\xf0\x67\x58\xcd\x36\x1f\xbf\x02\x11\x27\xb8\x69\x4b\xbc\x9f\xb5\x28\x27\x50\xe9\xef\xbe\x48\xa1\x58\x92\x3c\xb5\xd2\x62\x03\xf2\x9e\xbf\xf1\x43\x3d\x2b\x99\x0e\xc0\x6e\xbb\x2e\x6b\xe0\x18\xc0\xfb\x80\x66\xd2\x80\x99\x40\x54\xa6\x56\xc2\x20\x3d\x20\x71\x8b\x36\x7d\xf0\x32\x60\xd2\x6e\xa3\xf5\xc3\xf7\x01\x19\x59\x96\x73\x55\x3e\x00\xd9\x69\x8c\x02\x35\x1f\x20\x5b\xcf\xe9\x84\xc9\x32\x60\x8a\x89\xff\x31\x36\x13\x07\x12\x2b\xc7\xb6\x78\x0f\x82\x6e\x6c\xe8\x8c\xec\x70\x9d\x5f\x2a\xe1\x47\xd6\x98\x24\x0c\xf8\x5a\x17\xb4\xe3\xc8\xac\x94\xfb\x2d\x5c\xbf\x88\xaa\xac\xf4\xfd\x6f\x44\xde\x8c\xa6\xfe\xd3\x4a\x9e\x1e\xf6\x56\xef\x12\x64\xdd\xbf\xbd\xc1\xd7\xb4\x3b\x63\x5a\x69\x85\x81\xdf\xe7\xee\x2b\x19\xb6\x97\xd2\xfd\xe7\xf6\x98\xa6\x2f\x39\x7d\x31\x50\xa7\x27\x79\x32\xf3\xd8\xdc\x40\xf7\x9e\xcf\x13\x13\x8e\x2c\x08\xa2\x08\x18\xc9\xfe\xfb\x57\x04\xed\x11\x2c\x4c\xfc\xbc\x77\x64\x90\xa9\xe0\x75\xc2\x19\x29\xff\x52\x54\x1e\x64\x26\x5c\x18\xfd\x7c\xd3\xdc\x60\x5d\xe1\x9e\xa8\x6b\x1b\x2a\x83\xb4\x44\x72\x61\xa1\xeb\x65\x82\xec\x45\x46\xa1\x2e\xf8\x93\x07\x42\xa1\x18\x3a\xf7\xaa\xfa\x71\x9d\xea\x7e\xab\x01\xab\x67\x6a\xe7\xfb\x15\x01\x76\xd3\xe4\x88\xde\xbf\x07\x7c\x1e\x4e\xf6\xdf\x1b\x9b\x3d\x24\xb9\x57\xd3\xce\x0d\xed\xdf\xab\xd2\x5c\x0c\x29\x0f\xb2\x80\x49\xbd\x33\x26\x03\x58\x10\x60\xb7\xc4\x70\x33\x30\x3b\xc9\xf3\x32\x6b\x9d\x30\x2e\xc3\x2a\x8a\xe5\xe3\xd0\xfa\x69\x82\xd3\xe4\x49\x71\xef\x9b\x6c\xe2\xa7\x2f\xdd\x3f\xd1\xff\xb9\x59\xb4\xc1\x6e\xfd\x8c\xd1\x0f\x8f\x85\x5d\xbb\x74\x79\x86\xe6\xdd\xf3\xc1\x1e\xcf\x36\xce\x76\xbe\x49\x04\x6a\x76\x5e\x9d\x3b\xfc\x52\x74\x70\x61\x57\xcc\x6c\xab\xd3\x67\x43\xaa\xbb\xbe\xce\x1c\x54\x3a\x30\xcc\xb3\xdb\x6e\xfa\xf8\xc3\x86\x61\x77\xba\x4f\x65\xc6\xec\x9d\x1a\x3e\xb1\x87\x3d\xe5\xe6\x0e\x84\xef\xea\x39\x35\xc9\x55\x9a\xfb\xb2\xd9\x35\x3c\x4d\xb0\x38\xe9\xc0\x46\xd3\xf0\xd7\x82\x73\xe3\x05\xeb\xbe\x84\x0f\x16\x1a\xc4\xf7\x5f\x55\x18\x41\x17\xba\xc5\x7d\x5c\xf1\x32\x7c\xbc\x70\x6b\xf4\xe6\xe5\xa6\xe1\x49\xc2\x87\x91\xe4\x5b\x17\x4b\x92\x13\x1b\x42\xd5\x11\xff\x9e\x82\xfa\xa0\x7e\x11\x00\xa3\x6c\x18\xd9\xf7\xc1\xed\xbe\x0c\x79\x8e\x48\xef\xfd\xa6\x48\xfa\x1a\x4f\x97\xf4\x01\x59\xa0\x37\x90\x3c\x77\x97\x8f\xd2\xf4\x97\x95\x03\x56\xcb\x1a\x0f\x51\x51\x05\x56\x67\x33\x42\x75\x04\xa2\xb6\xe5\x15\xce\xbf\x6c\xc2\xbe\x7e\x9f\x3f\x2d\x78\xb1\xcf\x94\xc6\x1d\x59\xd7\x13\xbf\x24\x78\xdd\x9f\x9f\xb6\x68\xf6\x8d\xa9\x06\xd5\xec\x09\x3e\x85\x11\x33\x27\x5d\x3e\x9d\xb0\xf9\xa4\xc3\xdc\x49\xe7\x57\xc7\x6e\xa9\x9d\xbe\xb0\xe1\xd4\xd1\xa8\x8b\xad\x5f\x97\xbc\x3a\xf2\x34\xfa\x79\x27\x6d\x51\xe6\xde\x0f\xb1\x9e\x9d\x55\xf3\xa7\x6e\xdf\x1a\x67\xdc\x95\x3b\x27\x64\xcb\x8f\xb8\xa4\x2e\x51\x0e\xb5\x30\x30\xf6\x79\xf7\xd5\x2c\xd9\x75\x77\x63\xdf\xf5\xf0\xa6\xae\x5c\xb5\x24\x8e\xe8\x99\x91\xfe\x6b\x79\x7d\xdc\xab\x9e\xee\xd4\xaf\xcb\x99\xb1\x6f\x04\x21\xc9\x1d\x4b\x97\xc7\x6d\x10\xac\x4d\xfa\xb9\x28\x3e\xce\x53\xd0\x3d\x8e\xbe\xf0\x76\x4c\xb9\x30\x21\xce\x75\x01\x2f\xba\x5d\x58\x1a\x6d\xf0\x77\x1e\x28\x19\xa8\x2a\xf6\xaa\x59\x80\xfc\xf1\x5e\xb5\x7b\x4b\x79\x40\xf9\xe7\xfe\xbb\x94\x83\xc8\x96\xf8\xc1\x52\x0e\x40\x9a\x07\xb0\xb9\x70\x90\x3b\xe9\x83\x0c\xd5\x72\x1a\xb6\x14\xd8\x95\x68\xfe\x40\xdd\xb7\xad\x78\xcb\x74\xee\x47\xfa\xc4\x57\x5e\x6b\x6a\x7c\x87\x79\xd1\x6a\x59\x4b\x27\xc7\xf9\x8d\xdd\x7d\xf9\xc7\xac\x0f\x19\xc9\xd3\x44\x27\xb3\x32\xd7\x16\x38\xe5\x76\x1c\x3a\x94\xfe\xeb\xe0\x92\xc5\x33\x77\xab\xa7\xde\xad\x44\x7e\x6b\x91\x6e\xf2\x83\x77\x6e\x05\xbf\x36\x5e\x9a\xf0\xfd\xd7\xef\x02\xe3\xd5\xbb\x52\xdc\x7f\x1f\xcd\xdb\xb3\x62\x4b\xf2\x82\xce\x43\x0b\x2d\x96\x8f\x9a\x70\xb7\x6b\x72\x6e\xfe\xe2\xcf\xc9\xbf\xba\x3e\xcf\xca\x59\xac\x3a\x61\x76\xf7\x86\xec\xf6\x05\xab\x92\x3e\xf4\x98\x64\x5c\x98\xcb\x9d\xe0\xd6\x93\x9f\xde\x3c\x67\xe4\x84\xa4\x9e\x3b\x93\x6e\xcf\xda\x9b\x34\x5c\x10\x9e\xc2\x9e\x59\x9d\xb8\x5d\x50\x9c\xe4\x9e\xfd\x2e\xf1\xac\xa0\x6b\x5c\xd6\x74\xee\xb8\xf9\xc2\x09\x71\xb6\x00\xa5\x4e\x9d\x9c\x07\x5a\x76\x8a\xef\x7b\xd5\xfa\x0d\x85\xcc\x3f\xf0\x96\xa5\xf4\xf1\xbf\xa5\x79\x18\xd2\xf1\xaf\x96\xdc\xfb\x2d\x9a\x4a\xe9\x93\x8b\x71\xc2\x7b\x94\x31\x85\xd2\x1e\x5a\x9a\x66\x98\x31\x9a\xf6\x56\xf3\xd0\x5c\x66\xbb\x95\xee\xfd\x9a\xdd\x56\x6e\x6d\xae\x87\xae\xf1\x36\x2f\x08\x7f\x18\x6d\x73\x2c\x66\xd5\x86\xd4\x4f\x53\x3c\xb7\x5b\x2c\xb6\x98\xf7\x71\x7e\xd2\x5a\xff\xb9\xd8\x36\x26\xdf\x3c\x7f\xfc\xac\xee\xb2\x7b\x2b\xb0\x20\x6a\x46\x73\x7d\xfb\x1a\x8d\x39\x26\xd9\x9f\x3a\xee\xac\xcd\xcc\x49\xc8\x0e\xff\xf5\x60\x45\xde\x8c\x83\x59\x71\xbf\xcf\xe5\x35\x4a\xb9\x8f\xec\xfd\x19\x13\xbb\x82\xe7\xe6\xfe\xe1\x3e\xd6\x4c\xf9\xde\x9d\x3e\xc3\x74\x2a\xd2\xe7\xf6\xe8\x4c\x53\x9a\xd2\x38\xf9\x60\xcf\xda\xf4\xd2\xf4\x3b\x93\xf2\x7b\x44\x69\xa6\x93\x2f\x4d\x1a\x2e\x08\x48\xc9\x98\x3c\x2a\xf5\xa7\x60\x4b\xd2\xeb\xb4\xfb\x13\x9f\x08\x44\xe3\xcc\x00\x85\x90\x51\x4e\xbd\x9f\xdf\xa4\x7a\x20\x79\x7e\x3a\x49\xfa\xfc\x47\x8a\xb9\x8e\x3f\xbe\xdf\x02\x3f\x4a\x9f\x7b\xf0\x7f\xfa\xe3\x48\xea\x73\x8e\xec\x1b\xf1\x03\xe5\x06\x72\x93\x29\x94\xa6\xca\x8b\x0f\xb5\xf7\x2b\x9d\x7a\xcc\x3d\x97\x45\x6d\x33\x6e\xb8\xe1\x74\x62\xb5\x93\x9c\x83\xe1\xa9\x0b\x47\x0c\x82\x1c\x42\xd5\x76\x6b\xed\x71\x4a\x3c\x94\x52\xbd\x72\xe6\x96\x59\x39\x75\xb3\x76\xcd\x9b\xbb\x61\xde\x46\xff\x45\x7b\x66\x68\xad\x53\x3d\xad\x94\x17\x31\xb5\x67\xf5\xf9\x07\xad\xcb\x36\x4c\xf2\x59\xf5\xad\x7d\xd7\xf2\xf4\xb4\xea\x82\xcc\xdf\x4d\x4b\xcb\xd2\x64\xf2\x2f\x74\x5e\x5c\x20\x4a\x0d\x5c\x22\xe8\x9a\x9b\x9b\x30\xb1\x75\xe1\xb5\x6e\xd3\x9c\x7e\x13\x4f\xcc\x0f\xea\xde\x95\x5d\x3f\x71\x66\xee\x94\x1e\xcd\x69\xbc\x94\x8c\xd9\xdf\x7a\x76\xa4\xc7\xa6\x38\xe4\x7c\xea\x69\x4b\x7b\x90\xdc\x31\x63\xa9\xc0\x37\xe5\xd4\x84\xcc\xe9\x8f\x05\x97\x12\x1f\x4e\x18\x99\x95\x23\x54\x48\x38\x9d\xf4\x3d\xb3\x40\x48\x8d\x9f\x03\xa8\x55\xc8\x91\xbc\x97\xd4\xff\x97\x72\x20\x29\x32\x62\xcd\x95\xe4\x5f\xac\x36\x15\xab\xb4\x1f\x42\x89\xe4\xfe\xef\x45\x92\x93\xfa\xfe\xb0\x82\xf4\xbf\x9a\x5a\xab\x6f\x51\xaa\x29\x94\xa7\x79\x35\xfd\xd5\xb4\x86\x72\x6b\xc6\xde\xf8\x69\x5a\xa3\x33\xa4\x6c\xf4\xb5\x81\x76\x37\x59\x05\x07\xfd\x2e\x4e\xf5\xb9\xeb\xf3\x68\x7d\xe7\xe9\xd3\x63\x17\xc4\x5f\x9f\x57\x52\x52\x95\x35\x65\x5a\x65\xe6\xb0\x23\x8d\x6b\xf3\x67\x0d\x4b\x2d\x3c\xd4\x71\x7c\x5a\xee\xd3\xc4\xbc\x03\x8f\x6a\x5d\xe7\x07\xc4\x53\xf7\x1f\x6f\xb5\x5a\x30\x74\xac\xd5\x9e\x61\x5d\xae\xb9\xcf\xc7\xf2\xb6\xcf\xef\x6a\xcd\xb9\x3d\x76\xda\xe6\xd6\xee\xf9\xd3\x15\xc6\xfa\x6e\x94\xef\x51\x9c\xa6\x3a\xb6\x65\x2d\xaf\x27\x66\x4a\xf7\xd8\x77\xab\x2e\xf7\x1c\x9d\xbc\x75\xec\xba\xe5\x1b\x05\xbc\x94\x9e\x78\xed\xbc\x04\xc1\xb4\x64\xa7\xb8\xea\x25\x26\x02\x62\x9c\xc3\xd8\xc8\x85\xcb\x84\x5a\x09\xa3\xe2\xae\xcf\x7f\x2c\x4c\x8e\x0b\x8c\x9b\x38\x8f\x29\xdc\x1e\x63\x08\x98\x4b\xf2\x4d\xf8\x02\xb1\xc6\x4b\x7c\x1d\x29\x07\xb2\xc2\x95\xd2\xc7\xff\x94\x70\x10\x07\xaf\x90\xfe\x76\xfb\xa4\x2a\xf2\xbd\x7f\xd3\xfa\x3b\x24\x0f\x50\x7f\xe4\xbe\x1a\xf9\xde\x7b\xc2\x93\x8d\x23\xda\x28\x94\xf2\x4f\x0f\xcf\xeb\xef\x1a\x3d\xab\xe4\x58\xed\x23\x66\x80\xe5\x94\x6d\xd4\xdb\x29\xee\x2b\x5c\x06\xe5\xbf\xab\x62\x46\xcd\x08\x1f\x93\xf9\xea\xda\xc0\x29\x21\x29\x2f\x53\xee\x5e\xf1\x58\xb9\x7b\x8a\x5c\xbc\x6f\x79\xd3\xd1\xc7\x99\xfd\x23\x3b\x2f\x65\xdf\x46\x36\x3b\x74\xd7\xc5\x96\xcf\xf1\xd9\x6d\x21\xdf\xcf\x8f\xec\x9e\x99\xb5\x3f\x34\xe7\xc4\x8d\xee\x9e\x0c\xf7\x30\xb5\xa3\xea\x3d\x09\xe9\x6b\xc3\xa8\x07\x8e\xf4\x7c\x49\x9d\x1b\xf6\x7b\xf7\x59\x01\x35\x65\x69\xd8\xce\xed\x3d\x82\xbd\x89\x67\xc2\xf5\xb6\xd2\x05\xcf\xc6\xb5\x85\xa7\x6e\x32\x16\xca\x25\x18\x84\x75\xae\xef\x16\xa6\xc5\x6e\x0b\xab\x5d\xab\x25\x2c\x8d\x96\x89\x30\x5c\xa9\x2a\x3c\x1f\x75\x39\xec\x77\x41\xa5\x68\x68\x38\x0d\xb0\x95\x7c\xdf\xd2\xf3\x20\x43\xc2\xc1\x2d\x93\x70\x2f\xdb\x26\xf5\x19\x3f\xae\x92\xbe\xd7\x0f\xde\x2d\xd2\x07\x6f\xbe\x20\xbe\x0f\xfc\xcc\xfb\x09\x79\x2f\xfe\x4e\xf0\x73\x92\x07\xb9\xb2\xf9\xf5\xab\xc1\xa6\x14\xca\xc9\x9e\x37\x06\x9a\xb1\xf2\x51\x7b\x1d\x1a\xd7\x51\xe9\xfa\x6a\x6b\x5f\x3d\xf7\x75\x5e\x6b\x7b\x72\x6e\x65\xfd\x98\xd0\xa5\xde\xef\x53\xaf\x3f\xf8\x95\xda\x1e\xeb\x11\x3f\xe2\x01\x7b\xd9\xcf\x71\x5f\xc2\x8f\xdc\x8f\x38\x7c\x3a\xd9\x24\x30\xb7\xce\xff\xe6\x85\x89\x51\xbe\x93\x6b\x2f\x7e\xa8\x4a\xf5\xf2\xe1\xdd\x59\xd9\xf3\x2c\xe5\x84\xcf\xb8\xaa\x30\x01\x3f\x69\x8d\xef\x95\xcb\x17\x04\xc9\x89\x2d\xbe\x77\xce\xbb\x08\x5e\x25\x0c\xf2\xf3\x3c\xf9\x5d\xa8\x15\xf7\xc3\xbf\xe2\xe8\x73\xa1\x55\xdc\x59\x69\xbe\x85\xff\xdd\x7d\xeb\x84\x15\x91\x9e\xfe\x17\x76\xb7\x09\xdb\xc3\x63\xfc\x3b\xb6\xbf\x15\x19\x87\xd2\x02\x26\x6c\x8d\x17\x79\x05\xd7\xf9\x63\x73\xb4\x68\x56\xe0\xf6\xbf\xfb\x61\xda\x01\xc9\x3e\x20\xa9\xc7\x16\x49\x5f\x20\x29\x07\x72\x95\xe4\x21\x7e\x0a\x6f\xbf\xa2\x90\xfc\xc3\x43\xd2\xff\x6c\x48\x6b\x20\xfb\x83\xdc\x93\x7d\xed\xd1\xab\xd7\x66\xbf\x97\x27\xdf\x7b\x5f\xf8\x42\xed\xd5\x23\xb7\xbf\xed\x52\xf3\xa6\x50\xb6\x2c\xfe\x3a\xc5\xa4\x46\xb5\x3c\x3f\xf5\x53\x03\x4f\xd6\x82\x97\xfd\xa0\xe5\x40\xc0\x31\xc7\x81\xe3\x87\x37\xd5\x4e\xb8\x1f\xa0\x11\x71\xb1\x69\xe2\x92\xa6\xd0\x4f\x01\xb3\xdf\xb5\xec\x2f\x8f\x52\xf3\xca\x7d\x17\x7b\x23\x21\x66\xbb\xdb\xb2\x77\x05\xcd\xfb\x62\x03\x5c\xfd\x5e\x3f\x13\x6a\xc4\xe8\xb9\xbe\x7d\x9a\x2a\xf4\x8a\xfa\xe2\x16\x5a\x67\x2f\xcc\x8f\xf8\xed\x16\x76\xcb\x5d\x58\x1b\x96\xea\xbe\xf8\xfa\x52\x61\x7d\xd8\x42\xf7\x83\xe5\x9b\x45\x63\x82\x45\x1e\x13\xcf\x6b\x88\x18\xc1\xda\x1e\xcd\xa7\x8a\x45\xc1\x81\x02\xaf\x90\x92\x66\x51\x58\x10\xdb\x6b\xd4\x91\x91\xa2\x75\xfe\xab\xbc\x46\x1f\x0c\x12\x9d\xf1\x1b\xe8\xf1\x78\xdf\x3a\x62\x88\x67\x2d\x30\x56\x24\x1e\xe7\x1c\x0f\xb1\x6e\x40\xdf\xfd\xef\x0a\xe9\x73\xfd\x52\xbc\x43\x7e\xef\x1f\x27\x3f\x21\xfd\xff\xe7\xef\x5e\x92\xfb\x49\x1d\xbd\x89\xec\xa3\x52\x49\xff\x4c\xfa\xe5\xe7\x96\x7d\xaf\xea\xd5\xc3\xe7\x7f\x93\x75\xdd\xae\x26\x3c\x20\xfb\x9d\x42\x59\x13\x27\x7c\xae\x1b\x27\xdf\x6f\x5e\x4f\xcf\x15\x66\xad\x0e\x27\x5d\xb5\x6b\x8c\x37\xcb\xfa\x77\x4c\xc1\x6f\x7e\x42\x9d\xb3\x45\xd0\xde\x4e\x85\x05\xa3\x3d\x0c\xbc\xf2\x3b\xcd\x76\xd3\x7c\x78\xfc\x5d\x9d\x29\xd7\x26\xf8\x6d\x73\xec\xec\x6c\x7c\x6b\xec\x1f\xee\xf0\xe2\xb7\xbf\x28\xda\x6f\xb1\xc3\x89\x2f\x25\xa2\x05\xbe\x4a\x0e\x37\xdf\x0a\x44\x7b\xbd\x6f\x3b\x52\x1b\xce\x88\xce\x7b\x6b\x3a\x7e\x7b\x78\x57\x74\xc1\xdb\xcb\xc9\xe0\xce\x3a\xd1\x3b\xcf\x2d\x8e\x1f\xab\xeb\x09\x45\xf7\xe9\xce\x9c\x6b\x67\x88\x01\x1e\x19\xce\xe7\x2e\x95\x11\xa3\xdd\x0f\x39\xaf\x2d\x53\x26\x78\xae\x8d\x2e\x31\xa7\xe3\x09\x57\xd7\x52\x97\x92\xe3\x29\x44\x34\xff\x20\x90\x2d\xf1\xfd\x57\x6b\x4a\xce\x3f\x09\xff\x21\xe6\x60\xba\x95\xee\x91\xdf\xf7\xc7\x7b\x4f\x48\xff\xbf\x71\xc6\x9b\xc8\x5e\x7d\x50\xf7\x81\xf4\xc5\xab\x9e\xb7\x92\x39\x31\x17\xad\xc5\x5c\x44\xe9\x49\xc1\xbb\x5e\xdd\x29\xf1\x39\x57\x8d\x11\xe7\x40\x2c\x0e\x03\x34\xd7\x0c\x79\x92\xdd\x06\xd0\xf5\x54\xdb\x27\x44\xe1\xb7\xfb\x75\x93\x9b\xe1\xe6\xc8\x8e\x79\xc9\xf4\xf5\xcb\x80\x73\xce\x05\xbb\x7a\xf7\x55\x44\xf7\xa6\xcd\x8e\x67\x9c\x5a\x88\xda\x53\x4f\x9c\x73\xec\x87\x10\x57\xee\xd9\x3a\x2f\xe3\x5a\x10\xe5\x2d\x91\xce\x91\x76\x79\x44\x1b\x51\xe0\xe8\xc5\x39\xd8\x39\x85\x38\x62\x9f\xcc\x09\xf8\xba\x83\x38\xcd\x3b\x6a\xa7\xd3\x04\xa2\xd0\xc1\xdf\x2e\xe9\xe5\x00\x62\xbb\xc3\x40\xbb\xee\x27\xa3\x88\x22\x07\x77\x6e\x5e\x5d\x16\xb1\xcd\x21\x85\xeb\x73\x6b\x35\x71\x85\x37\x8f\xcb\xac\x72\x20\x1e\x73\xd9\xbc\x69\xd7\x0e\x10\x15\xbc\x1d\xdc\x0f\xe5\x1a\xc4\x67\x3b\x43\x20\x5f\x92\x03\xb3\x47\xc2\x87\x5e\x20\xc7\x2d\x0c\xb8\x47\xee\xff\x5f\x5f\x3f\x23\xf7\xc7\x37\x91\xef\x48\xae\xf4\x11\x3e\x93\x5a\xa3\xda\x4e\xce\xfb\xcb\xd9\xdd\xef\x7b\xf5\xa4\x96\xd8\x17\xdb\x23\xf1\xc1\xd7\xd5\xf5\xf5\xfd\x66\x36\x00\xea\x1d\x83\xa6\xa4\xc5\x03\x56\x9f\x55\xae\x8e\x2d\x06\xf8\x0d\x7a\x75\xc1\x43\x71\x3d\x42\xc9\x72\x99\xf7\x4c\x1c\xc9\x30\xb4\x6e\x74\x1d\x88\xf9\x2b\x4c\x99\xf5\x8e\x11\x88\xd8\xb7\x86\x3d\x9e\x1b\x8f\x80\x0b\x61\xec\x08\xce\x48\x78\xdf\xdd\xc0\x8e\xfa\xd3\xc7\x21\x04\xb3\x7a\x3c\x59\x27\xa4\xbc\x83\x8d\x47\xd7\x04\x6c\xa4\xba\xda\xec\x6f\xad\x40\x86\xb5\x0c\x73\xfe\x7b\xc0\x8f\x31\x8a\x69\xfb\xaa\x0d\x11\x74\x2b\x96\xf6\xb3\x4c\x38\x33\xf6\xb3\x98\x0f\x7e\xc1\x9b\x21\x67\xf3\xb9\xd6\x0d\xd3\xa9\x2d\xac\x27\x35\x97\xe0\x4f\x7f\x09\x6c\x93\x3c\x17\x9c\x9d\x29\xd6\xbb\x24\x07\xf2\x6d\x53\x03\xf9\x5c\xf4\xee\x6d\x13\xb9\x1e\x9e\xc6\xb7\x92\xe7\xc6\x6d\xc1\x2f\xb2\x8f\xdc\x55\x49\x9f\x04\xa9\xff\xb5\x5f\xe2\xfb\x6e\x92\xdc\x77\xcf\x93\xe4\x82\x48\x73\x20\x26\x06\x02\xf2\x5a\x14\x4a\xe2\x62\xc0\x4a\x5f\xe9\x7a\xc4\x34\xc0\xb1\x41\x23\xc3\x2f\x17\xc2\xe0\xb5\x46\x99\x1e\x8d\x68\x4a\x73\x36\x3f\xe1\x52\x8a\xaa\x85\x49\xd4\x1c\xfb\x39\x28\xdf\xa4\x4a\x33\xe2\x5c\xc7\x99\xc3\x17\x68\x13\x6c\xf7\xa2\xb8\xac\xc6\x5a\x8e\x35\x09\x45\xb7\x3e\xd0\xbd\x6c\x80\x43\x2f\xbc\xac\x73\x6d\x66\xe1\x66\xbb\x2d\x2d\x95\xd1\x09\xe0\xb2\x65\xa0\x34\xc7\x80\xca\xe9\x0e\x05\x0c\x86\x51\x37\x7d\x5f\x0b\x18\x36\x49\x39\x07\xab\xa5\xef\xbe\x00\x06\xfb\xa9\xd3\x5e\xac\xc4\x57\xa3\x71\xd6\x6a\x4f\x8a\x50\x63\xca\x03\x8e\x8b\x39\xb1\x85\xb7\x02\xc9\x73\x60\x47\x03\xf9\xfb\xe1\xfd\xf5\xf7\xa4\x3e\x4b\x68\x25\xb5\xf6\xad\x98\x83\xba\x4e\x03\x79\x3e\xfe\xe9\x87\x71\xa7\xaf\xff\x29\xcd\x41\x90\xde\xff\xfe\xd3\x07\x22\x0c\x90\xf5\xa0\x50\xa2\xb5\x01\x53\x05\xb9\x93\x41\x77\x00\x5e\x87\xaa\xb7\x57\x06\xe0\xbf\x50\xa7\xd9\x6d\x30\x90\xa8\x66\x18\xeb\x48\x00\x33\x3f\x98\x8c\xe6\xa6\x42\xb4\xe2\x88\x69\x26\xdb\x1e\x1d\xdb\x03\xcd\x5c\x6d\x07\xa3\xb1\x78\xbf\x45\x2a\xa3\x06\xbf\xce\x5b\x98\xfe\x64\x14\xe0\xd5\x4d\x0f\x8b\x60\xfa\x61\x34\x3d\xeb\x6f\x91\x66\xfd\x0b\xf8\xb2\xc4\xfc\x4f\xae\x83\xd4\xc7\x36\x7f\xdc\xab\x1a\x8e\x66\x72\xdd\x2f\x00\xb5\x89\x66\x0a\x3f\x7a\x67\x66\x86\x59\xdd\xe7\x29\x80\xe6\x66\xb3\x2f\xcd\xb2\x80\x16\x5d\xca\xc1\xfc\x56\x12\x8f\xff\xc3\xce\x66\xf2\xb9\xe0\x85\xd7\xb7\x52\x72\x1f\x5c\xdf\x45\xee\x07\xd7\x3f\x12\xe4\x7e\x7a\x4e\xe2\x87\x1f\x96\xe4\x23\x6d\x93\xf8\xe2\xab\xea\xfb\xae\x03\x69\x1f\x04\xe9\xfd\xff\xb1\xf7\x01\xb5\x87\x32\x35\x21\x0d\x80\xf1\x80\xa1\x9b\x7c\x86\x02\x6c\x81\xca\x2e\x57\x67\xc0\xf3\x8b\xda\x06\x97\xc1\x40\xdc\x76\x1d\x7b\x87\x08\x20\x93\x6f\xa0\xc2\x59\x01\x2c\xfc\xac\xdf\x68\x1b\x0f\xac\xcd\x33\xdc\xcc\x34\x01\x76\xaa\x19\xf9\xda\x6c\x02\x0e\x9d\x34\xae\xa7\x3f\x01\xce\xe5\x9a\x38\x49\xfd\x7d\xeb\xa1\xc0\xa3\x68\x13\x11\x6d\x24\xd0\xf4\xcd\x78\x0b\x35\x1c\xf8\x91\x6c\x68\x2e\xad\x87\x94\x73\x30\x0e\xed\xd5\x11\x55\xba\xc7\x7b\x55\xee\x85\x41\xf1\xef\x3a\x40\x39\xb7\x27\xa1\x9e\xe4\x25\x3f\x9b\x35\x91\xfb\xe3\xeb\xa2\x9f\xfc\x5e\x7d\xb8\x43\x40\xe6\x44\x55\xa5\xa1\x0f\x07\x54\x1c\x82\x3e\x1c\x8c\x34\x07\x40\xea\xff\x4a\xfb\x81\x4c\x34\xec\xeb\xfb\x7a\x4a\xfa\x44\xf8\xc9\x02\x7a\xdb\x06\xa7\xba\x1d\x06\x6c\x54\x14\xd2\x9c\x12\x00\xd7\xc2\x51\x19\x0e\x3a\x40\xc4\x06\xb5\x4a\xee\x34\x20\x35\x4f\x4b\x97\x7d\x1f\x98\x45\xd7\x09\x63\xa6\x01\x79\x49\x3a\xc1\x7f\xee\xf1\xc7\x03\x45\x5e\xba\x1b\xff\xdc\xdf\xa7\x03\xa7\x46\xea\x47\x49\xef\xed\x5b\xfe\x02\xee\x4d\xd1\xd7\xb7\x9c\x0f\x34\xec\xd6\x7b\x66\x65\x0f\x7c\x9a\xad\x7f\xdf\xf2\x3a\xd0\xf5\x46\x97\xf9\xa7\x1e\xb3\xc8\x7a\x88\xa4\xf5\x68\x8b\x6d\x7a\xd1\xfb\xf9\xde\xee\xfd\x4e\xae\xf7\xfa\x85\x22\x92\x8f\xfc\x4f\x0e\xe8\xa8\x84\x87\xfc\xc3\xc1\xb8\x8a\x55\x9a\x87\x32\x47\xc2\x47\x49\x73\x20\x12\x52\xc4\x1a\xfc\xa6\xaf\xef\xed\x76\x0d\xd0\x5c\x31\x80\xed\x72\x01\xb0\x16\x0e\x3f\xc5\xab\x03\x1c\x97\x2a\xd7\xb0\xde\x03\x01\xfd\x55\xc6\x30\x6f\x01\x63\xd9\xa3\x94\x58\x6b\x81\x0c\x7b\xf5\x99\x36\xcb\x81\xb9\xcb\x34\x29\x74\x47\x20\x4f\x41\xa3\xc4\xfa\x01\xb0\xf6\xb5\x56\x19\xcd\x07\xd8\xe6\xa2\xad\x4d\x3d\x09\x1c\xe4\xeb\x2c\xb2\x8c\x04\x8e\x87\x68\xdd\xb3\xe4\x03\x97\xc6\xe8\xb8\x9b\xcf\x03\x6e\x66\x6a\x55\x4a\x7d\x7d\x73\x63\xe0\xf5\x4f\xad\x6b\xe6\x01\x40\xab\xaa\x16\xc3\xfc\x1e\x20\xb8\xa9\xa9\x66\xba\xbb\xb7\x0e\xaa\x53\x9b\x58\xdf\x48\x5e\xb2\xfe\xad\x40\x81\xf2\x0f\x07\x24\xed\x07\x52\x7a\x0b\x7d\x39\x18\x09\x17\x58\xa0\x21\x56\x69\x2e\x90\x94\x87\x92\xf6\x03\x91\xce\x03\x5f\x09\x47\xe4\x20\xa9\xa3\x53\x25\xa0\xe9\x21\x53\xc5\x7d\x08\x58\xd0\x64\x6f\xd8\xca\x01\xec\x08\xf9\x41\x36\x39\x80\x57\xa8\xa2\x9f\xd4\xef\xb7\xde\x0c\x24\x2b\x8e\x38\x64\xfd\x10\xc8\xbe\xa1\x6a\x69\xf5\x0e\x98\xb3\x66\x54\x9b\xd5\x0a\x60\xa9\x9d\x6a\xa1\xe5\x30\x60\x55\x9b\xea\x59\xf3\x17\xc0\xe6\x61\x63\x06\x58\x8c\x05\xf6\x4c\x52\x8f\x32\x7f\x0b\x1c\x55\xd6\xb0\x31\x8d\x02\xce\xe6\xa9\xe9\x99\xc9\x03\x57\x6f\x6a\xc8\x9b\x9d\x05\xee\xa8\x68\x56\xf7\xfe\xfd\x89\xb6\xfa\x2f\x53\x0f\xe0\xf5\x79\xf5\x52\x93\xe9\x40\xab\xe1\x98\xc9\x2f\xdc\x41\xe6\xe5\xdd\x91\x70\x1c\x7f\x38\x20\xc9\xfe\xbf\x57\x92\x73\xf2\x27\x0f\x46\xd2\x17\x6a\xe1\x07\xb1\xce\x48\xec\xcb\x81\x8c\x95\xec\x9b\x21\x01\x62\xf5\x90\xf4\x0d\x62\x8f\x13\xab\x7d\x35\xa0\xde\xd2\xff\xad\x4d\x39\x60\x34\x6e\x50\xbe\x75\x3d\xc0\x68\x1e\xfa\x8c\x6e\x07\xf0\x75\x87\xdf\xb3\x76\x04\x82\xe5\x15\xa9\x56\x2a\x40\x6c\xa8\xa2\xb6\x25\x07\x48\x39\xa6\xb4\xdb\x52\x11\xc8\xec\xaf\x92\x61\xe1\x0c\xcc\x3a\x31\xc2\xc2\xcc\x10\x58\xf0\x4d\x65\x99\x59\x10\xb0\xa2\x60\x64\xa6\x99\x0b\xb0\xc9\x7e\xb4\x5a\xaf\xee\x98\xa6\xca\x30\x5d\x01\x1c\xec\x52\x3d\x6e\xcc\x03\x4e\x8c\x1e\xf5\xd2\xb8\x19\xb8\x90\xa7\xba\xca\x88\x03\x54\x6c\x1c\x55\x6f\x22\x0f\xdc\xed\x18\xd3\x68\xbc\x0f\xa8\x4f\x19\x13\x7e\x2f\x5a\xfc\xf9\xae\x48\xf6\xbf\x13\x37\x25\xe7\x60\x56\xdf\x73\x60\xb5\x24\x3f\x6c\x89\xe4\x1c\x9c\x25\xe1\x3c\xa6\x2c\x15\x6b\xe2\x0b\xb1\x46\x4a\xfa\x69\xf9\xe7\xf6\x5d\x0f\x36\x92\xba\x9a\xa7\x02\x03\xda\x29\x14\x86\x1e\x60\x90\x32\xf0\x80\xd5\x0d\xc0\x6a\xd3\x90\x3b\x96\x5b\x01\xde\xfd\xa1\xb3\xcc\xbf\x01\x5e\x3e\xc3\xb6\x59\x3c\x01\x22\xa6\xc9\x4f\x33\x5e\x01\xc4\xe5\xcb\x8d\x30\x01\x90\x32\x4b\x7e\x91\x69\x05\x90\x11\xa8\x38\xd3\x78\x01\x30\xe3\x86\xc2\x11\x93\x65\xc0\xbc\x55\x4a\xa7\x4c\xbe\x02\xcb\xd7\xa8\x5c\x33\x59\x08\xac\xcf\x1d\x71\xc4\xf8\x2a\xb0\xa5\x76\x44\xb9\xd1\x2b\x60\xf7\xbd\x11\x55\x46\x8b\x81\xe2\xfb\x23\xb3\x0d\x4f\x01\xa7\x1e\x8d\xb4\x32\x20\x80\x0b\x8f\x47\xdc\x36\xd8\x0c\x54\xec\x18\x41\xae\x76\xff\xb7\xe2\xf7\x93\xde\x7b\xff\xbb\xdf\x2b\xf6\xbd\x87\xfa\xb1\x84\xe4\xfb\x9a\x7a\xee\xca\x01\xa6\x7f\xfb\xa4\x58\xbd\x71\xd5\x92\x4b\x04\x58\xd7\x7d\x35\x94\xf3\x01\x4e\x5a\xe8\xc3\x51\x7b\x00\xbb\x96\xf8\x5a\x75\x25\xc0\x9e\x35\x79\xa6\xee\x22\xc0\x7e\xff\x9c\x5d\xc6\x3b\x00\xee\xb9\x15\x0e\x66\x3f\x00\x76\xf9\x76\x15\x8b\xc9\x00\xdb\xae\x24\x92\x76\x0b\x60\x76\x5c\x39\x6a\x5d\x00\x30\xd9\x0f\x52\x19\x95\x00\xa3\xa4\x29\x97\x3e\x1c\xb0\x09\xec\xe2\x32\x94\x01\xba\x3a\x8e\x59\xb0\x00\xda\x6b\x3c\x35\x0d\xe9\xec\xa4\x59\xa3\xd6\x54\xa9\x2d\x97\x7a\x15\x55\x26\xbf\xde\x57\x5a\x6f\x41\x9e\xa5\xdb\xdb\x4d\xd4\xdd\x28\x37\xc1\xf3\x69\xb4\x0a\xec\x36\x1f\xfa\xd8\xc6\x7a\x0d\xd6\x59\x98\xd4\x16\xd1\x7a\x70\xc8\x6c\xc2\xed\xb7\xb4\x12\x9c\x36\x8d\xad\xae\xa2\x9d\xc3\x05\x93\xd7\x95\x8d\xd4\x36\xdc\x33\x26\xd3\x61\xfc\xc5\xf7\x16\xff\x97\xdf\x2b\xf1\xbd\x87\x3e\x66\x92\x79\xbe\x52\x1e\xc4\x74\x00\xef\xcd\x90\xd5\x80\x75\x7f\x97\xa8\xe1\xc6\x00\xf3\x91\xd7\x4a\xa5\x08\x80\xa7\x16\xea\xa5\xba\x00\xe0\xca\xc4\xcb\xa8\x7d\x01\xec\xa7\x4c\x52\xd2\xe5\x01\xf6\x7a\xb3\xe7\x19\xad\x01\x78\xea\x05\x41\xe6\xa6\x80\xdd\x89\xa2\x46\xaa\x16\xc0\x96\x29\xed\x4f\xdb\x06\xb0\x6c\xae\xfa\xd0\xa9\x64\x1d\x26\x31\xaa\x00\x9b\xcc\xf7\x2e\x0c\x11\xc0\xe4\x09\xd6\x32\x59\xd2\x3a\x10\xde\xb4\xc7\xa8\x33\xdd\xd5\x71\xd5\x5a\x09\xc5\xe6\xd9\x5f\x27\x5b\x9b\x62\x8b\x05\xab\xf9\x3a\xdd\x00\xd3\xad\x66\xbf\xd2\xa7\x1b\x60\xa6\x95\xcd\xd3\x48\xba\x1a\xe6\x5b\x6e\x7a\xe8\x45\xf7\xc6\x42\xcb\xa9\x77\xd3\xe8\x0f\x30\xcf\xf2\xcc\xad\x45\xf4\x01\xd8\x62\x7e\xba\x9a\x6d\xdd\x88\xbd\x66\x1f\x2a\xd8\xd6\x04\x8a\xcd\xc8\xd5\xe0\x97\x41\xe9\xc3\xc3\xfc\xe9\x7f\x30\xe1\x5f\x9f\x4f\xc1\xdf\xe6\x29\x59\x07\x37\xf6\x92\x01\xed\x80\x79\x02\x6f\x84\xec\xcc\xbf\xfd\x83\x38\x9d\x1e\x87\x55\xd2\x01\x2e\x82\xca\x46\x1f\x00\xec\x63\x63\x65\xd4\x85\x80\xc3\xa0\xb4\xfe\xba\x39\x80\x7d\x69\xce\x53\xa3\x2d\x80\xfd\xac\x02\x7d\x4b\x39\xc0\xee\x4b\x51\x18\xd5\x07\xb0\xe3\x94\xaa\xda\x9c\x05\x6c\x6f\x5c\x6d\x66\xe6\x03\xac\xc4\x47\xb7\x58\x0f\x00\x66\xf4\x07\x2b\x56\x24\xc0\xcc\x15\x3d\x67\x6e\x07\xe8\x55\x28\xb4\xfc\xd2\x9d\x42\x9f\x8a\x3c\x2b\xa7\xf6\xf3\xf4\xd7\x98\x40\x1b\xf8\x49\x95\x4e\xc1\x1c\x2b\xfa\xdb\x22\x7a\x21\x26\x52\xe3\x1a\x95\xe9\x35\x98\x40\x5d\xf6\x44\x8e\x51\x8c\x70\xda\xa1\xba\x8f\x8c\x0d\x48\xa4\x5e\x97\xd6\xa1\xfa\x15\xbd\x0b\xf9\x96\x6a\x95\x46\x8c\x3c\x2c\xb6\xcc\xbd\xfa\x84\x9e\x85\x7d\x66\xe4\xa9\xf6\xff\x78\x98\x3e\xfd\x0f\xfe\xdc\xf3\xdd\x4c\x27\xef\x7d\x4b\x79\x10\x8b\x28\x3b\x0f\xd9\x5d\x00\xf3\x80\xa3\x83\x7c\x2b\x60\x27\xe3\xb1\x41\x65\x6a\xef\x3a\x08\xa8\x1b\xdd\x09\x38\x22\xf6\x8a\xd6\x46\xc0\xe9\xd6\xc4\xa3\xfa\x8d\x80\x93\x49\xce\x19\xd3\x1d\x80\xc3\xdb\xe5\xe7\xac\xbe\x03\xbc\xdc\xa2\xd5\xd6\x1d\x80\xdd\xbd\xd2\x69\xcc\x36\x80\x5d\x7c\xad\xc0\xb6\x77\x5e\x34\x3f\x0e\x60\xab\x01\x4c\xfe\x27\x45\x96\x15\xc0\x2c\xc4\x28\xe6\x59\x80\x3e\x17\xdb\x2d\x23\x7e\x37\x30\x9c\x91\x40\xdb\xda\x56\xcf\x38\x02\x57\xfa\xe8\x96\xb7\x0c\x4f\x04\x58\x5b\xbc\x3e\xcf\x08\x46\x10\xad\xed\x99\x9e\x4d\x0a\x38\xf4\x23\x8f\x34\x6d\x86\xc2\xdf\x9a\x51\xbb\x9f\xe9\x06\x26\xc3\xa0\xe6\x02\xd3\x02\x5e\xd6\x8f\x6e\xa4\x30\x5a\x30\xd3\x2a\xab\xa2\xd0\xe6\x12\x26\x51\xe7\x94\x27\x31\x47\x23\x8b\x4a\xa6\x45\xfd\x27\x0f\xd3\x97\x03\xa1\x50\x68\xa4\xef\xa9\x45\x65\x86\xca\xe4\x02\x46\x4e\x36\x43\x06\xa5\xfd\xe5\x62\x6c\xf9\xbc\xd7\x0a\x8e\x00\xd7\xc5\xb5\x47\x65\x09\xe0\x70\xd3\xdf\x55\x75\x3f\xe0\xf4\x25\x6a\x8f\x96\x3b\xe0\xbc\x2a\xe5\xbe\x41\x24\xe0\xac\x3a\xa3\xd1\x4c\x16\x70\x4a\xcc\x6f\xa5\xa5\x03\xf6\xda\x45\x7b\x18\xf2\xff\xd4\xe1\xf1\x75\x79\xf6\x78\xc0\xf6\x72\xfd\x0b\xbb\xed\x00\x4b\xd0\x7a\xc5\xae\x15\x60\x05\x12\xdf\x6d\xdf\x0a\x4f\xd9\x8c\x81\x1f\xdd\xe4\xe7\x40\x9b\x79\x30\xb6\x19\xf9\xf9\x99\xcd\x1b\xa8\x30\x2d\x9b\xac\x6c\x1c\x40\x65\xf8\xbd\xa8\x66\x36\x10\x60\xcd\x78\xdc\xc5\xdc\x8c\x31\x36\x1f\xee\xc7\x32\xd9\xb0\x66\x04\xdf\x31\x63\xde\x05\x95\xb1\xa3\x3a\x87\x79\x14\x7c\xfa\xb8\xeb\x91\x2c\x0d\xb8\xd1\x63\xaf\xaa\xb1\xe4\x11\x6c\x3d\xff\x12\xd3\xe6\x35\x72\xad\xc2\xf0\x4f\x4e\xce\x7f\xf7\xbd\x65\x26\x8b\xf3\xde\x35\x17\x5b\x5f\x92\xe9\x07\x18\x2f\xa2\xef\x1a\x54\x06\xd8\x1c\x64\xbe\x94\x5b\xf4\x0f\x1f\x24\xe1\xa4\xf8\x07\x7d\x35\xd5\x77\x00\xfc\x53\x91\xad\x3a\xcb\x00\xd7\xa1\xc9\xe7\x8d\x36\x03\x2e\x2d\xd3\x53\xcc\x4f\x03\x4e\x7b\x96\x65\x59\x0f\x02\x1c\x73\xb7\xde\x65\xdd\x05\x78\x13\x8f\xe9\x72\x42\x00\xce\xb3\xeb\xd5\x76\x4f\x00\xf6\xa8\xa7\x22\x6e\x29\x60\xbb\xfc\xfb\x69\xde\x0a\x80\x95\x43\x7c\x60\xc7\x76\x8d\x61\x06\x60\x18\xf3\xb7\x94\x8f\xfb\x50\xcf\xbc\x49\xb4\xd9\x26\xbe\xfa\xc8\x3a\x45\x3c\x65\xb7\x3e\x5b\x69\x3b\x9a\x78\xc6\x16\x3d\x60\xdb\x56\x11\x4f\x39\x4e\x77\x0b\x6d\xe7\x13\x1d\xb6\xbb\x6f\xaa\xb0\xcd\x89\x0e\xdb\x07\x95\x3e\xb6\x33\xa1\xc6\x8c\xbf\x9a\x6a\x5b\x08\x13\x9b\x1d\x97\x4e\xd9\x7e\x04\xd5\x86\x7f\x7e\xbd\x2d\x05\x91\xd6\x64\xfe\xc3\x9f\x7c\x18\x95\xbe\xeb\xc1\x3a\x9c\xdc\x1f\x03\xcc\x5b\x7a\x55\xda\xf7\xdd\xca\x9b\x56\x38\xa4\xeb\x2f\x17\x63\xf7\x80\x73\x40\x71\x30\xe0\x7c\xcf\x69\xdd\xc8\x6e\xc0\x4d\xd5\xd3\x4a\xdd\x03\x70\xdf\x17\xfa\x41\xb7\x08\x70\x77\x4b\x52\x37\xfe\x00\xb8\x95\x65\xbb\x5a\xbd\x04\xf8\xfd\xf3\x2a\x18\xef\x01\xa7\x86\x22\x16\x27\x1d\xe0\xdd\x3b\x96\x6c\xc7\x01\xb8\xb4\x1b\x31\x0e\x93\x00\xf6\xa7\xe7\x8b\x1d\x5c\x00\xdb\x1f\x3f\x2f\xd9\x5f\xc3\x57\x56\x1e\xf1\x96\x7d\xe8\x47\xa5\xed\x40\xe2\x04\x77\xd8\x27\x19\xdb\x42\x62\x1b\xcf\xf3\xed\x1c\xdb\xdf\xc4\x56\x5e\x5e\x43\x35\x47\x9e\x58\xe0\xa0\xff\x28\x9b\xb3\x8f\x58\xec\xe0\x7a\x6f\x27\xa7\x87\x58\x6f\x7f\xb8\x66\x9c\x9d\x2b\xb1\x8f\xf7\xa1\xb2\xce\x8e\x4d\x5c\xe1\xce\xba\x42\xb0\xbf\xa1\xbf\xad\xd7\xa5\x32\xbb\x21\x44\x3b\xbb\xe8\x3c\x97\xa3\x02\x03\xa6\xc7\x19\x4f\xce\x47\x68\x30\x05\xf8\x87\x03\xe9\x9b\x7f\x20\xf5\x3b\x15\xce\x98\x5d\x26\xeb\x50\x6b\x7e\x68\xc0\x0d\x80\x76\xc2\xaa\x45\xd6\x0e\xb0\x8d\xa6\x3d\x18\x36\xe6\x6f\x4e\x8a\xdb\x42\x7b\xc6\x88\xcf\x80\xe7\x55\xcf\x34\x2d\x5d\xc0\x7b\x60\xf0\x32\xfd\x32\xc0\x53\x38\x3e\xd7\x8c\x01\x78\x3c\xc9\xdc\x48\x7b\x09\xb8\x69\x2c\xdd\xcb\x3a\x02\x38\xff\xdc\x3a\xc4\xae\x19\x70\xb8\x77\x5c\xd6\x61\x2f\xc0\xed\xaa\x76\x72\x6a\x01\x38\xdd\x8d\xbb\x9d\xcf\x4b\xb9\xc9\x1e\x0a\xdb\x81\x98\xe6\x90\xf7\x55\x81\x63\x4f\xd8\x3b\x7b\x35\xf9\x72\xbe\x12\x34\x17\xeb\x46\x2f\xce\x79\x22\xc4\x69\xf5\x13\x7f\xbb\x53\x84\x97\xf3\xa4\x7b\xf9\xdc\x75\x84\xbf\xf3\x8a\x5b\xef\xec\x16\x12\xeb\xec\x9b\x2b\x5f\x71\x2f\x13\x4b\x1c\x7e\x5d\xd5\xe2\x4e\x27\x4a\x79\x95\x52\x1e\xac\x6c\x89\x5d\x19\xd1\xca\xa1\x9c\x56\xe6\x7d\x26\xee\x70\x8b\x4a\x7f\xf1\x52\x08\x01\xfb\x30\xfe\x5f\x1e\x88\x74\x5f\x94\x39\x6f\x3e\xb8\x57\x35\x64\x4d\x37\xf5\x1f\x04\x18\xfb\x18\x3f\x1c\x38\x0f\x60\x2e\x31\xbb\x30\xc4\x17\xb0\x4f\xb4\x6a\x19\xc6\x07\xdc\x46\x32\x58\xf2\x6f\xfe\x72\x31\xfe\x73\xf8\xb3\x34\x92\x00\xdf\x33\x01\x75\x06\x42\xc0\x37\x20\xde\xc6\x22\x06\xf0\x89\x9f\xea\xca\xf8\x01\xb8\x57\x2d\xbe\xc9\x8e\x05\xf8\x17\xb6\x5c\x74\x50\x04\x9c\xfa\x1f\xfb\xea\x6c\x0d\xd8\x8f\xbf\x79\xcb\xb5\x13\xb0\x7b\xf9\x4e\xdb\x6d\x0c\x60\xa7\x23\xea\x71\x9d\xd8\x7e\xd8\x2e\x5b\xd4\xe2\xb6\xe0\x7d\x3d\x37\x4a\xf4\xd0\xfd\xd1\xcb\x77\xdc\x0a\xd1\x07\x77\x93\x27\x6b\x78\xd5\xa2\x97\x1e\xa3\x6b\x2b\x79\x1b\x89\x51\xae\x8b\x6e\xeb\xf3\x7e\x12\x86\xfc\xdf\x95\x0c\x07\x1a\xa1\xe7\xba\xfe\x6a\x91\xc3\x0c\x82\xc1\x7f\x76\x49\xc6\xbe\x8e\xc8\x74\x5a\x7b\x2e\xdf\x41\x87\x58\xee\xb8\xf8\x44\x87\x43\x10\x51\x62\x7f\xfc\x98\x8e\xc3\x38\xe2\x2a\xaf\xb8\x78\x94\xc3\x0e\xe2\x09\x77\x26\xfe\xe1\xa2\xfe\xf8\xde\x62\xbf\x53\xc3\x90\xcc\xc9\xd1\x59\xad\xff\x4d\x86\x01\x98\xff\x34\xb8\x37\xb0\xf7\xbc\xef\x31\x3e\x3e\x38\x1f\x70\xd9\x60\x5a\x29\x7b\x14\xf0\x31\xa7\xf9\xca\xcf\x04\x02\xe3\x99\x2b\x94\x6b\x81\xa0\x14\xa7\xbd\xea\xa6\x40\xe0\x59\xdf\xf5\x86\x71\x40\xe0\xc8\xa8\xc1\x96\x61\x80\x5f\xf3\xe4\xd5\xcc\x0f\x80\xf7\x90\x85\x47\x79\xab\x01\xb7\x4d\x5b\x34\x9c\xc3\x01\xe7\xbd\x27\x9c\xdc\x32\xd1\xe2\xe0\x71\xeb\x94\x07\x81\xa7\x3c\xe6\x87\x61\xde\xc6\x02\x1f\xee\x6d\x51\xb6\xf7\xca\x4f\x73\x78\x1f\x44\xe1\xbe\xe9\xaf\x58\xf6\xbb\x44\x93\x7c\x07\x3e\xc9\x75\xd8\x2c\xca\xf4\xb5\xab\x3d\xe5\xa8\x25\x5a\xe3\x13\x50\xf3\xdc\xb1\x41\xb4\xdd\x67\x70\x65\x91\x93\xbc\xe8\x86\xd7\xc4\xcb\xa1\x4e\x19\xa2\x6f\x1e\xc7\xca\x1e\x3b\xdd\x25\x86\xba\xaf\x3e\x33\xc2\xa9\x8c\xb0\x73\xb5\x3f\xa1\xee\xac\x47\xf8\xf3\x23\x4b\xcc\x9c\xf7\x10\x09\x2e\x85\x87\xbe\x38\x6f\x23\xf2\x9d\xf2\x0f\x52\x9d\xd5\x88\x83\x0e\xa7\xff\x3d\x1f\x18\x01\xa4\xc6\x99\xcc\x22\xd7\x83\xa2\xae\x59\xaf\xea\x35\xea\xb8\xc8\x0c\x07\xac\xb3\xb4\xa7\xc9\x5c\x02\x9c\x66\xe8\x8f\x1f\xb4\x02\xf0\x0d\x32\x92\x95\xd5\x04\x82\xdf\x99\x6d\x95\x5b\xfe\x37\x27\x25\x72\x26\xf7\xfd\x98\x52\x20\xe2\xb0\xe7\x5d\x83\x5f\x40\x68\x4d\x18\x9b\xb6\x18\x08\xfa\x95\x92\xc7\xce\x03\xfc\x12\xe6\x55\x39\xe5\xa0\xdb\x73\x7b\xe1\x7d\xf7\xe1\xa8\xe3\x2f\x38\xe1\xed\xf5\x04\x87\x1c\x8f\xdd\xdd\xe8\xdb\x41\x84\xda\x17\x7d\x79\x17\x50\xf9\xbd\xd1\xc1\x59\x78\x39\x78\xf9\xeb\x0f\x8e\x77\x84\x57\x42\xa6\x3c\x31\x72\x1e\x22\xbc\x1f\x92\x74\x2f\xc7\x45\x43\xf8\x2a\x24\xac\x7a\x17\xdf\x41\xf8\x39\x24\xf6\xea\x25\xfe\x17\x91\x5a\xd0\x35\x69\x9f\xbc\x73\x36\xae\xae\xa2\x85\x7e\x47\x4f\x8a\x5c\x6f\x89\xb6\xf9\x1e\x2f\x31\x76\xdb\x2e\xba\xec\x93\x7e\x58\xd6\x2d\x5d\xf4\xdb\xb3\x7c\xbf\xc8\xf5\x05\x41\x75\x6b\xd8\x33\xc7\x75\x27\x11\xcb\xcf\xdd\xb9\xce\xf5\x34\x31\xc3\x85\xfc\xd5\x2c\xe6\xe3\xa4\x3c\x10\xc5\x5f\x8f\x7c\x7e\x50\x8b\xd7\xda\x4f\xf9\x01\x98\x72\x35\xf7\xf5\xdf\x06\xd8\x7d\x53\x7f\xdd\xff\x12\xe0\x29\xd2\xda\x3c\xb0\x1f\x10\x7c\x5a\xe7\xc8\xa0\x36\x20\x7a\xb5\x41\xd1\x50\x79\x20\x7e\xb6\x65\x81\xe2\x0e\x60\xdc\x54\xdb\x19\xaa\xc7\x80\x04\x37\xfe\x03\xfd\x73\x40\x6c\x63\xe0\x33\xda\x5a\x20\xfc\x46\xe2\x65\x5e\x13\x10\x48\xcc\x9e\xcb\x6f\x42\xbe\x4f\xd4\xc6\x18\xef\x47\x5d\x0c\x0f\xeb\xd2\xe4\xa0\x49\xed\x3b\x5d\x75\x6e\xea\x86\x1f\xfb\x2a\x72\x7e\xde\xe4\x1e\x85\xf7\x17\x9d\x57\x0b\x9a\x62\x56\x3f\xfe\xc6\x7f\x27\x68\x8b\x8d\xb9\x7d\xca\xad\x54\xd0\x13\x7b\xfc\xc6\x41\xb7\x9b\xc2\xf0\xa8\x6d\x57\xe4\xdd\x6b\x85\x39\x91\xe5\x65\xe9\x1e\x91\xc2\x13\xe1\xcf\x4f\x3e\xf5\xf8\x22\xfc\x1d\x1a\x75\x8c\xe5\xa9\x27\xd2\x0b\x2e\x3e\x5c\xe6\xb9\x52\x34\x36\xd0\x7d\x7f\x89\x67\x8f\x68\x89\x7f\xe5\xde\xbd\x9e\x1b\x44\xa7\x7c\x37\xef\xbc\xec\xb9\x59\xf4\xde\xdb\xb9\xe8\xbd\xe7\x3d\x42\xce\x73\xec\xe6\x37\x9e\xc5\x04\xd3\xdd\x93\xdc\x17\xa7\x89\xeb\x60\x46\xe6\x0b\x0e\x29\xd4\x20\xe7\x83\xd4\xff\xb7\xe6\x2b\x28\xf5\xfe\xb7\xc3\x01\x39\xf2\x39\xc2\x77\xf1\x30\xb2\x5e\x31\x31\x1a\x93\x06\x7c\xfb\xcb\x83\x4c\x54\x32\x0a\x97\xeb\x04\x26\x8f\xb2\xfe\x3d\xea\x06\x30\xc9\xdf\xfe\xb4\xee\x69\x20\xd9\xce\x67\x69\xef\x73\x63\x6c\x64\x5c\xac\x93\x6f\x67\x53\x84\x7d\xd6\x4b\xef\x4b\x6d\xa6\xc1\x85\x2b\x4e\x85\x74\xb7\x64\xf8\xbb\xed\xdf\x17\x23\xf3\xba\xd3\x7b\xfd\x95\x47\x09\xfa\x2f\xb2\x3c\x2e\x3f\xbf\x98\x78\xf1\x69\xb0\x7b\x5a\xf7\x8d\x64\xe5\x9a\x4e\xcf\x7c\x81\x76\xd2\xa6\x2b\xa5\xde\x73\x04\x01\x89\x35\x17\x54\xbd\x1b\x05\x47\xc6\x0d\x3b\xd5\xe6\x53\x2b\x68\x8a\x8f\x2d\x1d\xeb\xeb\x27\x64\xc4\x5e\x38\x3c\xc0\xb7\x43\x98\x15\xbd\x6e\x9f\xba\x1f\x43\x58\x11\x71\x70\xf7\x5e\xbf\x71\xc2\xe6\xf0\x80\xed\x0e\x7e\x73\x45\xe6\x21\x99\x45\x4b\xfd\xf2\x45\xee\xc1\xfe\x85\x8a\x7e\x85\xa2\x22\xff\x1d\x1b\x72\xfd\x52\x44\x17\xfc\x0c\xd7\xdd\xf0\xad\x14\x7d\xf1\x2e\x26\xf7\x03\xd3\xde\x71\xf5\x9b\xa4\x49\xed\x55\x25\xc3\xd1\x64\x4e\x8e\xa1\x82\xbc\x17\xe9\x7b\xfe\x18\xd8\xde\xab\xee\xf7\xfb\xf7\x90\xbe\x57\x3d\x85\xe4\xd0\xc7\x7f\xec\x47\xe6\x04\xa4\x27\x8a\xeb\x22\xe5\x41\x72\x16\x98\x6e\x51\x56\x01\x66\x7e\x65\x5e\xd0\xcc\x02\x32\x0f\xbb\x79\x5b\x1e\xff\xb9\x22\xb5\x7f\xf8\x12\xe7\x1f\x2d\xfb\x13\x72\x52\x3b\x83\x33\x5f\x4e\x8b\xd9\xb3\x48\x26\xb6\xdf\x63\xa3\x70\x6c\x4b\x4b\xcc\xb8\xdb\x18\xc2\x39\x9b\x9d\xaa\x77\xb3\x34\xa0\xf3\x3e\x26\x0b\x2a\x0b\xfc\x3e\xb4\x6d\x9e\x9a\x79\xd1\x3e\x80\xd5\xd3\x7f\x4a\xd5\x89\xca\xc0\xc3\x3d\x05\x93\x02\x8e\x86\x06\xc5\xf4\xbc\x9f\x78\xf3\x80\x4f\xf0\x13\x81\x52\x4a\xd9\xee\xac\xe0\x32\xc1\xd6\xc4\xd0\xed\x15\xc1\xbf\x05\xcd\x09\x0d\x5b\xda\x42\xac\x85\x56\x63\x79\x85\xc7\x82\x6f\x09\x57\x45\xef\x5c\xef\x1a\xa2\x2c\xbc\x11\xb9\x64\xcd\x95\x10\x8e\xb0\x2d\xfc\xf1\x4a\xff\xe0\xb1\xa2\xf0\x60\x9f\x82\xfa\xe0\x5c\x51\x5a\xd0\xc4\x7c\xd9\x60\xba\xe8\x8c\x5f\xeb\xdf\x79\x40\xa1\x8c\xde\x40\x9e\x0f\x2f\x95\x8a\x7a\xd5\xea\xb3\xcc\x36\xd2\xff\x96\xf4\x79\x90\x72\x10\xe3\x0b\x28\x7d\x7c\x70\x69\x2e\xc6\xa2\xaf\x43\xc9\xdf\x23\x79\x77\x75\x2e\xca\x19\x02\xf9\x16\x56\xc5\x63\x6a\x3b\x86\x2d\x74\x75\xb8\x6c\xa9\xd7\xfc\x3a\x27\x27\xe0\xb8\x73\x4b\xfd\xf2\x29\x13\xc7\x59\x86\xa5\xdf\xd6\x4c\xae\x9b\x39\x29\x51\xe6\xda\x99\xf1\x8a\xeb\x54\xd2\xde\x96\x09\xe3\x6e\x1f\xbd\x99\x71\xfd\xd4\xab\x68\xfe\xcd\x98\xec\x96\x63\xfe\x11\xc7\x9b\xf9\x33\x57\x1c\x7e\x14\xe1\xd1\xdd\x6f\x26\x75\xf7\xd1\xc8\x17\xdd\xeb\xb2\x2a\xb6\xb9\x47\x65\xf5\xa8\x65\x68\x6c\x0e\x8b\x3a\xd3\xb3\x6c\xf2\xef\x0d\x5b\xa3\x2a\x7a\x7a\x52\x17\xae\x49\x8d\x4e\x14\x78\xa6\x28\xae\x3a\x1a\x55\x20\x38\x9d\x98\xb2\xec\x72\xf4\x58\x61\xbf\x84\x0b\xf9\x53\x22\xdb\x85\x99\xb1\x51\x4b\xb7\x44\x7a\x09\xaf\x44\xf9\x2c\x5a\x11\x59\x2d\x6c\x89\x28\x5e\xf0\x29\xd2\x5e\xa4\x13\x66\x34\x4f\x23\xd2\x48\x14\x15\xbc\xf9\xef\x3c\x90\x63\x29\xac\xee\x55\xe3\x17\x03\xc8\xef\xd9\xee\xb1\x78\x7c\xfe\x2b\x28\x7d\x38\x88\x29\x0d\x62\xcd\x95\xf4\x49\x91\xe6\x82\xac\xf5\xa3\x90\xfc\xcc\xe6\x17\x63\xbc\x65\x04\xbf\x92\x37\x59\x19\x47\x8f\x52\x78\x9f\xba\x36\x95\x9d\x65\xf6\xb3\xfe\xe6\xb2\x06\x2f\x43\xc7\x9a\x9b\xc7\xe6\xef\x8a\x5e\x13\x72\xa9\x2c\x79\x7a\x46\x7a\x76\x72\x50\x49\xfe\x54\x66\x9e\x59\x46\xc1\xbe\x8c\xb4\xef\x7b\x5c\x67\xbc\xdc\x4e\x4b\x61\x5d\xb6\x9d\xc3\xdd\xd4\x9d\xe4\xd4\xd0\x34\x4f\x76\xfd\xd6\xf1\xe5\x9d\x1f\xe6\xa7\xae\xe2\x27\x72\xbb\x4a\x67\x57\x2d\x5b\x9b\xb8\xba\x3b\x7a\x46\xfc\x92\xee\xc4\xb2\xee\xc6\xcc\xba\x45\x47\x12\x27\xf6\xf8\x4f\xcd\x5b\x60\x34\xfe\x5e\xcf\xe3\x49\x13\xe6\xbe\x1b\xaf\x2c\x08\x4a\x09\xcd\xd5\x19\x57\x29\x28\x4a\xaa\x9b\x9d\x9b\xe0\x24\xd4\x89\x7f\x35\xf3\xeb\x38\x96\x90\x1a\x1f\x3a\xf3\x67\xbc\xa1\xb0\x28\x66\xe4\xf4\x8e\xb1\xbb\x84\x6f\x22\x75\xb3\x4e\x8c\xe5\x89\xf4\xc2\xc8\x5b\x53\xa3\xc8\x79\xaf\x7e\x5d\x96\xcc\x59\xa4\x4b\xc6\xeb\xd6\x22\xd6\xb8\xba\xbe\xdf\xff\x5c\xc9\x7d\x6f\x69\x7f\x98\xc2\x12\xb1\xee\x3a\x44\xbe\xf7\x3e\x70\x70\xba\x02\x8b\x42\xf9\xe0\xb8\xdf\x4a\x37\x45\x79\xcc\x33\xa7\x5d\xe9\x74\x47\xa3\xe2\x5b\x3a\x5b\xb9\x2e\xf7\xb8\xc1\x17\x96\xae\xb3\x09\xf5\x09\xb8\x71\x44\x7d\xd9\xd6\xe4\x17\xe3\x97\x6f\xd1\x9e\xd7\x3c\x67\x71\x96\xf3\xca\xee\xd9\xbc\x4d\xab\x66\x2f\x5f\x32\x6b\x46\xd5\xa9\x6d\xf3\xb3\xe7\x19\x67\x95\xd7\x5d\x5f\x74\x72\x56\xf4\xb4\x13\xad\x4d\x4b\x34\xa7\xb7\x4e\x33\xe9\xbc\xb1\xe0\x4d\xd6\xbc\x8c\xf3\x5d\x39\xb9\x6b\x32\x57\x4f\x39\xd0\x1d\x36\xa3\x6e\xda\x86\x29\x1a\xdd\xa5\xd9\xe3\xa7\x7e\x9a\x7c\xa4\x27\x61\xaa\xee\x94\xf1\x93\x0a\x7a\x3e\xa6\xbd\x49\xff\x99\x06\x81\x5a\xaa\xcd\xe4\x77\xa9\xa7\x05\xab\x27\x38\x4d\x0a\x4f\x0d\x10\x3c\x1e\x7f\x36\xf5\x66\x4a\x93\xd0\x67\xac\x61\x6a\x43\x72\x88\xb0\x30\xc6\x72\xe2\xd7\x09\xda\xc2\x77\x11\x6d\x80\xac\x99\xac\xb8\x5f\x94\xc4\xff\x97\x72\x20\xe1\xaf\xc4\x9a\x26\xa9\x4b\xee\x4d\x4a\x1f\x0e\xa0\x68\x8a\x58\x0f\x92\xbe\x66\x87\xa6\xd8\x0f\xfe\xb0\xf4\x64\xf3\x80\xfb\x14\xca\xf3\xd0\x53\x86\xea\x29\xc3\xea\xef\xdc\x3a\x16\x64\x7e\x5e\x27\xaa\xfc\xf4\x11\x16\xef\x3c\xd3\xa8\x64\xf6\xde\x43\xfe\x8a\x5e\x51\x45\x2f\xb7\x45\x24\xb4\xc4\xae\x58\x76\x7c\x43\xc4\xf4\x82\xf4\xcb\x73\xdc\x56\xbf\x5c\xf3\x6e\xc6\xd9\xac\x8c\x95\x09\xa5\xbe\xb3\x3d\xd3\x8f\x16\x38\xdc\x2e\xc9\xdd\x98\xba\x65\x59\xdd\xc7\x85\x73\xa7\xa7\x9c\xcd\xfb\xd4\x75\x6d\xf6\xfe\x94\xd4\xc5\x75\xdd\xd1\x33\x8a\x93\xdf\x2c\x78\xd5\xfd\x3b\x33\x3c\x79\xef\x3c\xb7\x9e\x09\x53\x95\x93\x53\xe6\x44\xf5\x3c\x9b\xb4\x24\xb9\x7f\xce\x17\x81\xc3\x44\xe3\xa4\x9f\x33\xa7\x0b\x8a\x93\x26\x4d\x18\x9c\x5d\x25\xf8\x3e\xee\x5d\xd2\xfe\xcc\xf7\x42\x66\x3c\x2f\x51\x6d\xda\x07\x61\x51\x0c\x7b\x7c\xfd\x34\x45\xe1\xc5\xa8\x8f\xe3\x8b\xa6\x94\x09\x3b\x23\x9c\x01\x75\x65\xf1\x7c\xb6\x95\xf0\x0d\x52\x0e\x64\xc2\x5c\xc9\xfa\x97\xf8\x7d\x2b\xe5\xc5\xba\xcd\x5d\xac\x47\x48\x1e\xe6\xe7\xa1\x93\xe4\x7c\x79\xdf\x74\x9e\xe4\x85\x1a\x16\x97\x93\x1c\x41\xdd\xfe\x6b\x2f\x54\xb3\x29\x94\x6b\x8a\xe5\xc5\x86\x91\x63\x46\x9e\x68\x29\x5b\xc2\x7a\x6e\x79\x7a\x37\xf5\x74\xba\xa7\x8f\x73\xfa\x6a\x56\xa9\x4a\x4c\x5c\xe8\xd9\xd9\xcf\x0e\x36\x66\xc8\x4d\x78\x3b\x75\xf0\x3e\xe1\xca\xc1\xe9\xf4\x14\xf6\x5e\xe5\x23\xce\x19\x6f\xc7\x39\xec\x4e\xad\x7e\x9e\xa5\x11\xa7\xb1\x8b\xf6\x5e\x2b\x4b\x18\x93\xb3\x43\xb5\xbb\x21\xd3\x2f\x26\x7e\xab\x67\x4f\xf4\x94\x92\x58\xd9\x8d\xd9\x3d\xe7\x27\x09\x62\xa7\xaf\x1d\x2e\x18\x9d\x3a\x24\x86\x58\x35\x5e\xb0\x60\xc2\x9a\x58\xb5\xe5\xed\x82\x07\xe3\x2b\x63\x7e\xe4\xd5\x09\x8d\xe2\x0f\xc6\xee\x58\xd4\x28\x8c\x8b\xdb\x11\x43\x2c\x58\x23\x3c\x11\xed\x1f\x33\x69\xde\x02\xe1\xaf\x88\x71\xd1\xfa\xb9\x6d\x22\x9f\x90\x95\xd1\x1d\xb3\x2f\x89\x02\x43\x02\x00\x12\x73\xea\x3d\x0f\x1e\x48\xf6\x01\x89\xff\x3d\x43\xf2\xdf\x2b\xa9\x94\x3e\x1c\xc4\xd1\x63\xe4\xf7\x3f\xef\x1c\xd9\x2f\xa7\x65\x83\xd8\x0f\x6e\x70\xbd\x4e\xfa\xe2\xf7\xfc\xab\xcb\x49\xdf\x67\xf4\x1d\xeb\x61\x33\x29\x94\x33\x27\x6e\x8f\xd4\x6a\x56\x7c\x7d\x60\x71\xf5\x51\xda\x6b\x43\xed\x8d\x1d\x95\xe6\x2e\xaf\xd8\x1b\x16\xbd\xbf\x12\x1a\xd6\xe9\x93\x34\x55\xfd\x82\x7d\xda\xf7\xd8\x5d\x49\x07\xcf\xaf\x5e\x16\x30\x7e\x65\x6c\xf9\x39\xcd\x83\x1a\xc9\x1e\xe1\x67\xce\x54\xdf\x08\x9f\x38\x33\xf8\xe2\xe9\xf7\xef\xe4\x53\x19\x41\xc3\x4e\x05\xf6\x60\xa2\x46\xd0\x91\x92\xf5\x82\x90\x09\xbb\x83\xa3\x0e\x3e\x14\xec\x4d\xa4\x05\x1f\xdf\x3b\x40\xd0\x91\x30\x23\x38\x7b\xa7\x81\x30\x38\x4e\x21\x64\xdd\xd6\xd1\xc2\x19\x31\xef\x43\x66\x14\xea\x0b\x6f\x46\x9e\x0a\x35\x5e\x47\x08\x5f\x45\xbc\x0c\x55\x5f\x13\x20\x52\x0a\xab\x08\x69\x5c\x69\x25\x0a\x0a\x6e\x0b\x39\xb3\xec\xab\x68\x65\x20\x27\x98\xc8\xd7\x17\x55\xfa\xad\x04\xb8\x71\xe2\xf1\x45\xff\x10\xeb\x34\xc9\x7e\xb0\x4c\x32\x2f\xa4\xfe\x67\xe9\xe9\x5e\xfd\xf5\xf4\x02\xe9\x7b\xb5\xb4\x5e\x25\xdf\xbb\x3e\x2f\xac\x26\xf7\xc9\x7b\x27\xef\x90\xfe\x77\xc5\xfc\xfb\xe4\xbc\x3a\x63\xf1\x84\x41\xfa\x3e\x13\x9f\x96\xa8\xfe\x1e\x84\xa2\xd7\x8f\x45\x66\xc6\xea\x6b\x0b\xe6\x3d\x1c\x60\x6f\x6d\x55\x9c\x93\x5c\xbb\x26\x70\x9f\xd3\xf5\x09\x07\x6e\x6f\x48\xa6\x06\xc5\xc4\x5c\xbc\x75\x6e\x89\x7d\xf8\xe5\x90\x1f\x35\x97\xf7\x4e\x8e\x3e\xe8\x6f\x7e\xf3\xf4\xb5\xb9\x71\xfd\xbd\xad\x6e\x52\x5f\x6b\xc6\x9d\xf1\x4c\xad\x3e\x29\x54\x8b\xbd\xe1\x79\xf9\x9a\x9c\x30\x25\x9a\xed\x45\xbb\xa8\x2f\xdc\x1b\xc9\xf1\x8e\x3b\xbd\x51\x58\x1e\xb1\xdc\xfb\x51\xa9\x40\xf8\x3b\x6c\x82\x8f\xe6\x61\x05\x91\x7d\xf0\x7a\x9f\xdf\xfb\xc7\x8a\x3c\x83\xdd\x7d\x79\xbb\x47\x8a\x72\x02\x9d\x7d\xfb\x6d\x5f\x2e\x3a\xe5\xb7\xc9\x77\xca\xd6\x74\xd1\x2d\xdf\x75\x3e\x41\x9b\xae\x12\x23\x3d\x4f\xfb\x4c\xdc\xa8\x4e\x58\x7b\x04\xfe\x5d\x07\xd2\x7d\x60\x71\x93\x58\xb7\xa4\xfd\xfb\xfd\xff\xa6\x89\xc7\xff\xe9\xa1\xb8\x3f\xd0\xcb\x90\x5b\xe4\xbe\x59\x97\x56\x37\xa6\x57\x6f\x04\xd7\x93\xf3\xe3\xdc\xc7\xe7\x7a\xe4\xf8\x8d\x5e\x93\xf5\xdd\x15\xd7\x6c\xae\xf0\x96\x42\x59\x5b\xf3\xee\x95\xbe\x9a\xf2\xd0\x05\x87\xdf\xec\xb7\x95\x35\x60\x4f\x55\x7d\xa5\xee\xe3\xc9\xbc\x14\xb7\xe2\xc5\xaa\x71\x27\x5d\x3b\x42\x65\x9e\xf7\xcc\xff\xe0\x3d\xde\x97\xf5\xfc\xf8\xce\x43\xfe\xa3\xdc\x73\x9e\xf3\x2f\x6f\x08\x1c\xeb\x52\xdb\xf0\xea\xe5\x82\x20\x4d\x67\xbf\x86\x4b\xc2\x69\x81\xda\xce\xf7\x1e\x72\x45\xc1\x01\xc6\x2e\xc3\xee\x0c\x14\x2d\xf2\xf3\xe3\xcb\xde\x18\x23\x5a\xe5\x47\x73\xf9\x76\x65\x93\xa8\xda\xfb\x14\xdf\xf4\x42\xa4\xa8\xd5\x6b\x20\xbf\xf8\xf4\x03\x62\x98\x47\x05\xbf\xf2\xd8\x6a\x82\xed\xb6\xcd\xed\xc8\x91\x7c\x42\xcb\xc3\xc3\xed\xf7\xc1\xd5\x04\xcd\x7d\x9a\xdb\xc2\xbd\xdb\x89\x14\xfe\x1a\xf7\xf1\x3b\x2d\x89\x2c\xfe\x08\x20\xd1\x59\x72\x0e\x48\xe6\xc1\x26\xc9\xf3\xc1\x51\x32\xff\xa6\xf3\xa2\x98\x03\xfb\xfc\xb9\x8a\xe4\xc6\x1a\xb5\xc4\xb9\x40\x0f\xb4\x1e\x90\xb9\x21\x55\xd3\x9e\x91\x7d\x53\x2e\x34\xbf\x26\xfd\xdf\x63\xb4\xf7\x64\x5e\xcc\xee\x13\x9f\x49\x5f\x64\x9d\xf1\xb7\xca\x5e\xcd\x5f\xde\x3e\x4e\x3d\x7b\x88\xea\xcc\xf0\xef\x43\x68\x72\x63\x96\x24\x97\xb4\x0a\xdd\x02\xcc\x46\x86\x7b\x7d\x5d\x1a\x3b\x97\xad\xee\x67\xf3\x35\x71\xf6\x37\xfb\xc5\x6e\xfb\xbf\xde\x2a\x32\x75\xd6\x71\x32\xfe\x7a\xfa\x82\x1c\x9f\xc7\xdb\xf3\xf5\xc0\xb3\x93\xfc\x46\xee\xb8\x56\xfd\xee\x39\x2e\x75\x5c\xbb\xf7\x16\x44\x9c\x73\x04\x37\xbd\x91\x4e\xa4\x3a\x3d\xe4\xfe\x7e\x12\x43\x4c\x75\xba\x2c\xed\xe7\xc1\x5b\x70\xf3\x21\xb1\xd5\xa1\xd2\xde\xe6\xfa\x71\x62\x9b\xc3\x1b\xde\xa7\xcb\x0f\x88\x0a\x5e\xa5\xa3\x6c\x99\x17\xb1\xd5\x31\xc3\x41\xe6\x8c\x2c\x51\xcf\x7d\xec\x30\xe2\xf8\x4d\xa2\xcd\x6e\xa6\x43\xe3\xd1\xd7\xc4\x37\xbb\xd5\xc0\x2c\x09\x0f\xb4\x4e\x72\x1e\x1e\x8e\xed\x55\xa1\xfa\x25\x72\x3e\x7c\xa5\x57\x91\x3c\xc4\x6b\xff\x5a\xd2\xef\x7e\x58\xf2\xe4\x75\xaf\xde\x5c\xfe\x92\xec\x17\x51\x9e\xde\x14\xdd\xab\x27\x6f\x7e\x22\xf5\x40\xe5\x77\xd2\x1f\xdd\xc2\xef\x20\xcf\x8f\x65\xd9\x02\x92\xa3\xc8\x5d\x0e\x28\x8e\xa3\x50\xa6\x5c\x05\x8c\x57\xcb\xdf\x8e\x37\xc2\x7b\x07\x37\xcd\xdb\x01\xed\x90\x0b\xd7\x36\x6b\xf6\x48\xc4\x95\xec\x2d\x34\x19\x27\x47\x14\x6e\xb4\x66\x54\xd9\xb5\x63\xfa\xa9\x9f\xcc\x22\xf6\x00\xc4\x3d\x78\xc0\xfa\xc5\x3a\x8c\xdc\xef\x6d\xcc\x8b\xac\xf1\x02\x27\xf8\xd9\xe8\xb2\xfc\xbf\xad\x03\xcb\xa6\x8d\xf9\xb8\xe5\x2c\x9c\x19\xaf\x99\x9f\x5e\xd5\xc2\x99\x71\x9e\x15\xfe\x74\x15\x78\x36\x32\xb6\xda\x0f\x72\x40\xb5\xf9\x64\xeb\x7c\x27\x1b\x5c\x1b\x1b\xdb\xa5\x55\x75\xe0\x33\x4a\xd8\xbe\xd7\xce\xc0\xd1\x46\xdd\xb6\xf4\xf2\x1d\x44\xd1\xed\x39\x5a\x65\x49\xf0\x62\xec\x05\x56\x8e\x10\x8f\xff\x80\x9d\x58\xcb\xc9\xf9\xff\x8d\x53\x2d\xce\x41\x3a\x21\x1e\xff\x93\x3c\xf1\xf7\x7e\xab\xee\x35\xc9\x0d\x5e\xf5\x6f\x21\x7d\xe1\xb3\xe3\xda\xc8\x7f\x57\x3c\xb0\x83\xe4\xc7\x76\xcc\xe8\x21\xff\xbe\x76\x04\x0e\xf6\xea\x3c\x13\x89\xef\x99\x08\x0c\x5e\x4d\xa1\x24\x8d\x07\x0c\x66\x0c\x33\x8a\xa0\x03\x76\xb1\xa3\xdb\xbd\x77\x03\x81\x6f\xf5\xba\x5d\x3d\x80\xc9\x7c\x93\x64\xfb\x8d\xf8\x9e\xbf\xd8\xec\x23\xbb\x1d\x4f\xf7\x16\x5b\xda\x33\x9f\xe3\x46\xf9\x2c\xab\xdd\x8c\xdd\xa8\x7d\xbc\xd8\x4a\x85\x2e\x44\xf3\x27\x25\xcb\x4c\xfa\x6d\x00\xcd\x66\x8b\x69\x9b\x05\x3b\x01\xa3\xb9\x34\xaf\xef\x07\xf1\xdb\xd8\x9b\x46\xf9\xa8\x85\x2f\xc6\xfe\x34\x8d\x37\xf7\xf0\xd6\xf8\x38\xad\xa6\xe1\x2c\xea\x4c\xea\x69\xdf\x1f\x7d\xc7\x5d\x93\x47\xb4\x8e\xda\xd9\xa8\x33\x49\xa3\x4f\xbe\x9d\x86\xb3\x66\x87\xad\x57\x55\xe9\xa3\xd6\x24\x1d\xd8\xad\x28\x1e\x7f\x19\x99\x93\xf4\xbd\xfc\x06\x99\xf7\xd3\xf4\xe1\x01\x59\x8f\xa7\xeb\x25\x1c\x58\xbf\xa6\xc5\xe4\x39\xf0\xf6\x8b\xd8\xff\x66\x7f\x27\xf7\xcf\x92\x4b\x9d\x62\xff\x6f\xad\x98\x0b\xd8\x28\xf1\x33\x97\x24\xf4\xf5\x3d\xe3\x43\x80\xde\xdf\x25\x31\x2c\x40\x2f\x7c\xc8\xa5\x40\x05\x80\x79\x58\xb9\xcc\xa3\xf7\x97\xdb\x4e\xad\x11\x4e\x05\x40\xd2\x0b\xdd\x79\xdc\x27\xc0\xdc\x1e\x43\x7f\xd6\x15\xa0\xf0\x83\x91\x0f\xe3\x08\x70\xf4\x8e\xf1\x58\xeb\x72\xe0\x9a\x8c\x89\x9c\x75\x14\x50\x57\x6a\xea\x4a\x1b\x06\xbc\xa3\x1b\xaf\xa4\x29\x00\x3d\x7c\xc3\xb5\x7f\x72\x0c\x36\x0b\xe5\x00\xb5\x4e\x73\xcf\x9f\x4c\x40\x73\x81\xf9\xea\xcf\x72\x80\xd6\x67\x73\xaf\xa6\x50\x40\xeb\x85\x85\xc9\xcb\xdb\x80\x4e\x9e\x85\x7e\xfd\x67\x40\x27\xc7\x72\xfe\x43\x3b\x40\x6f\x27\x70\x26\x85\x3c\x07\xbf\x54\x11\xe4\x73\x90\xc1\x03\x72\xdc\x0d\x97\x5f\x90\x5c\x64\xed\xcb\x66\x73\x72\x1f\x18\xfe\x95\xe4\x9f\x2e\x85\xff\x26\xd7\xcd\x49\x25\x11\xf9\x3c\xb5\xff\x42\x5f\xff\x73\xb9\xa4\x2f\xca\x2c\x49\xdf\x84\x89\xfb\xc4\x2a\xee\x14\x4e\xa1\x84\xbc\x07\xb4\x8f\x0c\xca\xf2\xda\x07\xd0\x8f\x29\xcc\x70\x3e\x06\xb8\x97\x8f\x86\xf4\x9e\x3f\xfb\x0e\x90\x7d\x5e\xeb\x17\x6b\x05\x50\x50\xa6\xf7\xda\xba\x0a\xd8\x39\x4a\x77\x1f\x8d\x0b\x94\xae\xd5\xdb\x4e\xf5\x02\xca\x33\xf5\x57\x58\x29\x02\x77\x1c\xf4\x8d\x2d\x77\x03\x2f\xd3\xf4\x47\x5a\x56\x00\xdf\xb6\xeb\x25\x59\x2e\x20\xeb\x11\x69\x42\xe6\x5c\x8c\xfc\xa0\xb7\xaa\x57\xe5\xb5\x0c\x65\x3a\xe2\x01\x95\x20\x83\x8f\xad\xe7\x00\x95\x76\x83\x45\x2d\x0d\x80\x0a\x61\xf0\xe6\xcd\x25\x60\x44\x5b\xb7\x52\xe5\x71\x0a\xc9\xc1\xdd\x97\x23\xcf\x81\x71\x62\x0e\xee\xc1\xd4\x16\xf2\x39\xb1\xfa\xda\x37\xf2\xf9\xf9\x4a\xbf\xae\x98\x5e\x3d\xbd\x07\xde\x94\x7f\xee\xc1\x6f\x95\xf8\xda\xab\x94\xfb\xfa\xdf\x19\x12\x5f\x57\x7a\xff\xdf\x5f\xc2\x09\xb9\x2b\x03\x4a\xa0\x50\x9c\x2b\x01\xcb\xe1\xc3\x94\x79\x22\xc0\x65\xa8\xca\x7a\xb6\x0f\x10\xf6\x7c\xe4\x6d\xdb\x50\x20\x7d\x90\xba\x0f\x23\x1a\x98\x77\x45\x43\x99\x36\x1a\x58\x7b\x46\xe3\x90\xd5\x05\x60\x57\x8a\xe6\x0f\xcb\x2a\xa0\x64\x93\x56\x97\x85\x1d\x70\xbe\x43\x2b\x51\x7a\x6f\xdf\xdc\x1f\x78\x9a\xa5\x3d\xc6\x5c\x17\x68\x71\xd7\x4a\x37\x8f\x06\xba\xab\x34\xf6\x19\xef\x20\xeb\xc1\xd2\xfd\xde\xab\xc3\xa9\x5a\x53\x7b\x75\x48\xa5\xdc\x13\x82\x24\x55\xe4\xd6\x74\xda\xf6\xea\x97\x43\x75\x1c\x72\x1f\x0c\x16\xf7\x07\x7a\xb8\xe0\x3d\x79\x6e\xdc\x8a\x6f\x27\xc7\x7b\x35\x58\xbc\xde\xcf\x4a\xf2\x11\x0e\x4b\x7c\xe0\xed\x23\xd0\x37\x07\x40\xa2\xd3\x9b\xc5\x9a\xf2\x48\xac\x11\x12\xff\xf7\x4f\xfe\xc1\x41\x60\x08\x87\x42\xe1\x7e\x01\x4c\x02\x86\xe8\xd8\x3a\x02\xf6\x23\x15\x8c\xe8\x47\x80\x80\x2d\x8a\xab\x68\xd6\xc0\xb8\x56\xe5\xb3\x56\x02\x20\x5b\x66\x64\x8e\xe5\x04\x60\x49\xe0\x68\x47\xf3\x34\x60\x43\xe1\xe8\x76\x73\x0b\x60\xc7\xf0\x31\x4c\xd3\x66\xe0\x88\xdd\x98\x89\xa6\x59\xc0\xd9\x39\x6a\x7c\xd3\xc1\x40\xe5\x72\xb5\xe7\x26\x99\xc0\xfd\xb1\x6a\x4b\x4d\x38\xc0\x2b\x7f\x35\x45\xe3\x73\x40\xeb\x43\x55\x73\xa3\x48\x40\x14\xae\xf2\x49\xef\x11\x39\x3f\xa2\xb5\x67\xf4\xea\xd0\x61\xf2\x3b\x41\x26\x3d\xbc\x39\xf1\xa2\x54\xbc\x0f\x7c\x20\x3f\xe7\xdd\xf2\x9f\x23\xc9\xe7\xa1\x5a\x01\xb9\x6f\x9e\x93\xcc\x77\x69\x1e\xce\x1f\x0e\x46\xa2\x79\x92\x79\x21\xcd\x41\x90\x72\x20\xf1\x92\x7e\x1a\x41\x92\x5c\x25\x97\xe5\x62\x65\x5a\x00\x83\x07\x52\x28\xb6\x6d\x80\x11\x67\xd0\x83\xde\xf5\x6f\x6b\x20\x67\x4b\xdb\x0f\x78\x29\xca\x8f\xb4\x74\x05\x62\xd2\x14\x26\x59\xa8\x00\x93\x7e\x28\xe5\x9b\x47\x01\xb3\x95\x54\xa6\x99\x16\x01\x79\xe7\x54\x3a\x4d\x6f\x03\xeb\xbe\x8d\x6c\x35\xc9\x03\xb6\xfb\x8c\x52\x34\x8e\x04\x0e\x2d\x19\x35\xc6\x78\x1a\x70\xaa\x6c\x74\xbc\x51\x2a\x70\x79\xc5\xa8\x57\x86\x5b\x81\x9a\xab\xa3\xf8\x86\xfb\x80\x27\x07\x47\xa5\xea\x9f\x05\xde\x35\xab\x68\x1a\xf8\x02\xdf\x34\x94\xdf\x1b\xca\xf7\x8e\x5f\x69\x92\xf6\x19\xb2\x1e\x51\x0d\x2b\x3e\x90\x79\x6a\x75\x05\x3f\xc9\xe7\x81\x1b\x51\x22\x92\x03\xfd\xc3\x01\x49\xf6\xb9\x5d\x12\xae\x67\xc3\x75\xc9\x3e\x20\xcd\x43\x91\xcc\x8f\x4c\x75\x09\x07\x92\xdd\x77\x1e\x78\xb7\x88\x95\x97\x2e\x56\xcb\xb5\x40\xbf\x35\x14\x0a\x43\x0b\xd0\xcb\x1a\xd0\x4e\x5b\x0c\x30\xfc\x86\x32\x2c\xdc\x00\xe7\xbd\x43\xb7\x9a\x0d\x05\x42\xec\xe5\x54\x4d\x6c\x80\x71\x67\x86\xab\x99\x0c\x04\xa6\x85\x2a\xb8\x19\xf7\xfe\xd2\xcb\x57\x54\x36\x59\x09\xe4\x9b\xa8\x0c\x34\x5a\x04\xac\x7e\xa9\xac\x67\x58\x09\x14\x95\x2a\xd7\x1b\xca\x01\x7b\x8f\x29\xb7\x1a\xdc\x06\x4a\x9b\x54\x8e\xea\x5b\x02\xe7\xdf\x28\x4f\xd0\x53\x07\xae\xdb\x29\xcd\xd0\xe7\x00\x77\x05\x2a\xa3\xf5\x55\x81\x86\xdd\xca\x65\xba\xa5\x40\xf3\x22\x45\x73\xbd\x5d\xc0\x8f\x24\x45\x93\xfb\xc7\x7f\x92\xcf\x3f\xd5\xad\x62\x1e\xe8\xe2\x18\xf1\xe7\x2d\x95\xe4\x3f\xed\x96\xf0\x0c\x85\x92\x7d\xae\x40\x15\x7d\x78\xb0\x19\x12\x5e\x2a\x55\x92\x87\x12\x1f\xd8\x97\x03\x71\x2b\x13\xab\x6d\x87\x58\xcd\xb6\x02\x94\xbb\x14\x8a\xd5\x19\x40\xf3\x9b\x4c\x3f\xb3\x1b\x80\xf9\xb4\x41\x5d\xc6\x0b\x01\xee\x9b\xc1\x17\x8d\xbf\x00\xbe\xcb\x64\x09\xe3\x1b\x40\x2c\x55\x6e\x88\x41\x07\x90\xb2\x79\xd8\x29\x83\x36\x20\x33\x61\xb8\xac\xe1\x74\x20\xf7\xae\xfc\x5d\xc3\x55\xc0\x12\x05\x85\x87\x86\x73\x80\xd5\x85\x4a\xa3\xf5\xbf\x02\x9b\x7f\x2a\x6e\xd5\xd7\x01\x76\x31\x15\x67\xeb\xe5\x02\x87\x4f\x29\xae\xd7\x5d\x04\x9c\xcc\x53\x1c\xa0\xd3\x0c\x5c\x0a\x50\x38\xaf\xf3\x0e\xa8\xee\xa7\xf0\x4b\x67\x00\x50\xb7\x44\xbe\x56\x37\x15\x78\xa1\xaa\x18\x2d\xe5\x80\x2e\x4d\x16\xeb\x31\xc9\x7e\xb7\x77\x7a\xdf\x73\x40\xba\x0f\x2e\x92\x70\x1f\x39\x99\x7d\xd7\x81\xb4\x3f\x92\x74\x1e\xf8\x49\xfe\xbd\x93\x24\x47\xc8\x46\xb2\x5f\x1a\x49\x72\x84\xf4\x64\x80\xe1\x02\x0a\xc5\xf8\x01\x60\xd2\x3e\xb0\xdc\x30\x0b\x60\x8e\x1b\xc4\xd4\x8f\x01\xf8\x9b\x07\x5d\x37\xd8\x09\x84\x8e\x96\x35\xd2\x4d\x02\x62\x2b\x86\x58\xe8\x3a\x01\x29\xf3\x65\xf5\x74\xd4\x81\x8c\x39\xb2\xa6\x06\x33\x80\x59\xa2\xe1\x3b\xf4\x5a\x81\x45\x43\x87\xbb\xe8\x8f\x00\x56\xec\x90\xcf\xd4\xb9\x0d\x6c\x18\x25\xf7\x4b\x8f\x0f\x6c\x5f\xaa\x10\xa0\x17\x03\x1c\xe8\x51\xb4\xd5\x56\x03\x8a\x13\xe5\xee\x6a\x7f\x07\xce\xcc\x96\xf7\xd0\x3e\x0a\x5c\xf1\x93\x77\xd3\xae\x02\x6e\x66\xc9\xe7\xfd\xcb\x81\x48\xef\xfd\xf7\xcd\x03\xf9\xeb\xf3\x89\x7d\xae\xc1\x99\x2c\xd2\xf7\xd6\x54\xb5\x6f\x90\x59\x08\xe8\xbd\x71\x0d\x1e\x74\x1c\x30\x9b\xe6\x73\x68\x58\x00\x60\xb9\x3f\xc4\x57\x3e\x09\xa0\xad\x89\xb7\x51\x3e\x06\x58\x27\xa4\x75\x8d\xfc\x0e\xd0\x8d\x67\xab\xa8\xb9\x03\xf4\x61\xcb\x83\x35\x7f\x01\xd6\x03\xb7\xfa\xeb\xac\x07\xa8\x86\xc5\x1c\xdd\x22\xc0\x8a\x5f\xae\xa1\xef\x0b\x58\xdc\xbc\x57\xaa\x77\x1d\xb0\xd4\x7b\xd3\x65\x20\x0f\x58\x5c\xee\xd0\xd7\xeb\x0f\x98\xaf\x05\x34\x8f\x01\x26\xbf\x80\x31\x06\xbf\x0f\x98\x0e\x01\xd4\x5e\x7f\xe3\x9a\x52\x01\x8d\x41\x1f\x87\x99\x4d\x04\xb4\xaa\xde\x72\xcc\xae\x01\xda\xc5\x2f\x57\x99\x6e\x02\x34\xcf\x3d\x39\x6e\xf6\x09\xd0\x6e\xbe\xcf\x32\x8f\x03\x74\xa6\xdc\xa5\x98\xa5\x02\x5a\xbb\x6a\x82\xcd\x29\x80\xb6\x5f\xe5\x31\xb3\x8d\x80\x96\xe3\x7f\xe3\x40\x9c\xc7\xf5\xf1\x7b\xa5\xfe\x8e\xc4\xf7\x1d\xd2\x66\xf3\x95\xac\x83\x3e\x6f\xbe\x4c\x26\xa0\xef\xed\x5c\x3d\x68\x17\x60\x36\xd9\xcb\x78\xe8\x57\x80\x3a\x2e\x78\xab\x42\x08\x60\x1d\x15\xe7\xad\xfc\x14\xa0\xbb\xa7\xa9\x8f\x9a\x0f\x30\xb4\x66\xeb\xa8\xbb\x00\xf4\x2d\xcb\x97\x69\x1d\x02\xac\x79\x5b\xa7\xf6\xce\x52\xda\xc0\x62\x03\xbd\x46\xc0\x52\x50\x3e\x50\xaf\x1e\xb0\x78\x51\x1b\xa6\xd7\x0e\x58\xca\xbd\x5d\xa9\xff\x16\xb0\x64\xfe\xce\xd3\xdb\x2f\xad\x83\xe0\xa5\xd9\x4b\x40\x33\xb9\x63\xb4\xe9\x5d\x40\x63\xfd\x97\x53\x66\x31\x80\xd6\x94\xe6\x1f\xe6\x54\x40\x27\xec\x75\x92\x99\x23\xa0\x75\xbf\x61\xbd\xf9\x2b\x40\xf7\xc8\xe3\xb5\xe6\x19\x80\x4e\x65\xad\x8b\xc5\x5c\x40\x8f\x7d\xbb\xc7\x7c\x34\xa0\x7d\xb0\xfa\xb1\xb9\x3e\xa0\x3d\xe1\xfa\x4a\xf3\xc5\x80\xf6\x16\xb2\x0e\x7a\x92\x3a\x48\xee\xfd\xf7\xcd\x03\xf9\xfb\x5e\x5f\xec\xf7\xc9\x17\xd9\xe8\xf7\xaa\xd6\x60\x8e\x48\xe6\x0c\x60\x18\xe2\x78\x69\xb0\x3f\x60\xbe\xc3\xfd\xcd\x30\x2a\x60\x3d\x28\x68\xa2\xa2\x3a\xc0\x88\x8b\xbb\x36\x22\x1d\xb0\x19\x9a\xba\x70\xf4\x4b\x80\x51\x9f\xa3\xab\x9e\x03\x30\xe2\xf3\x6f\x69\x6b\x00\xf4\xd4\xad\xe1\x7a\xe9\x00\xed\x6c\xf1\x0a\xfd\x6e\x80\x5a\x7b\x79\xb0\xa1\x10\xb0\x5a\x59\xd7\x6d\x34\x1a\xb0\xda\xd6\x74\xd1\xe8\x2b\x60\x95\xda\xc3\x35\x28\x02\x2c\x5c\x01\x6d\xa5\xae\xe1\xe6\xc7\x01\xed\x75\xed\x1b\x2d\x86\x00\xba\xc3\x3e\x3d\x37\x3f\xdd\xab\x4d\x1e\x16\x4b\x01\xbd\xc6\x97\x17\xcd\x87\x00\x3a\xac\xfa\x1a\x8b\x1a\x74\xeb\xb3\x1e\x9a\x59\x3c\x45\x97\xfe\xa8\x7b\x26\x96\xf2\xe8\xd4\x57\xaf\x71\xb3\xe0\x01\xba\x7e\x37\x12\x2c\x36\x02\xba\x73\x2a\xa8\xe6\x3b\x00\x6d\x32\x07\xe3\x0f\x07\x22\xd1\xbe\x79\x20\xd2\xfb\x9d\xfd\xbb\xac\xc9\x7c\x67\x29\x0f\xa2\x93\x6e\xbb\x6f\x40\x01\x60\xa4\xca\xab\x1f\x1c\x08\x58\xce\x72\x97\x1d\x86\xde\xf1\x07\xe8\x2a\x8d\x02\x98\x83\xa3\xc7\x8e\x68\x00\x58\x65\x29\x0d\x63\xaa\x00\x56\x48\x0e\x4b\xab\xf7\x69\xda\x7b\x19\x45\x37\x1b\x60\xd8\x6f\x4d\xd2\x5f\x07\xd0\xcf\x1d\x1d\x68\x6c\x0a\xd0\x36\x5c\xfe\x6e\x9c\x09\x50\xe5\xef\xb7\x1a\x6b\x02\x56\x67\x5b\x34\x8d\x55\x00\xab\x1b\x82\x97\x86\xea\x80\xc5\x7c\x40\xfb\xf8\xef\x40\x0b\x0d\x40\x67\x5f\xeb\x0b\x8b\x75\x80\x5e\xfa\x47\x25\x73\x00\xba\x67\xde\x8c\xb6\xcc\x44\x9b\xc1\xa1\x86\x12\xab\x01\x78\x63\xb8\xed\xd1\x78\x2b\x2b\xbc\x32\xdc\x58\x1b\x6e\x19\x81\x76\xfd\x53\xb7\xad\x2d\x16\x02\xba\x5f\xaa\xce\x5a\x6e\x42\x87\xbe\x57\xc5\x46\xcb\x07\xe8\xd0\xb7\xb8\x42\xb1\xcc\x87\x48\xcf\x1e\xff\x85\x03\xe1\xa5\x53\xfa\xf8\xde\x62\x9f\x6b\x00\xd3\xca\x8e\xf2\x4f\x1e\x84\x7e\x0d\x6b\xdf\xc0\x6b\x80\xd9\x47\x6e\x3f\x59\x4d\xc0\x5a\xd6\x55\x67\xf8\x02\x80\x79\xc8\xcf\x43\x59\x1d\x60\xfd\x8e\x5a\x3b\x6a\x14\xc0\x56\x48\x56\x56\x9b\x0e\xd8\x5e\x9a\xa1\xac\xf5\x09\x60\xad\xcc\xf7\xd5\xbb\x05\xd8\x3c\xd8\x32\xcf\x70\x09\xc0\x70\x3d\x7a\xd0\x84\x06\x58\x6f\xbf\x52\x6c\x9a\x08\xd0\x8e\x3d\xda\x6d\x36\x1b\xa0\x3e\xfc\x18\x66\x1a\x09\xd0\x34\xf0\xd3\x38\x4e\xb8\xca\x52\x1b\xd0\xbd\xd8\x7e\xc5\x4a\x1e\xdd\x86\xaa\x9f\xe7\x5a\x79\xe2\xbd\xd1\xc8\xa6\x17\x96\xef\xf0\xc1\x30\xb7\x71\x93\x55\x31\x1e\x1a\x09\xeb\x43\xa9\x4c\xdc\x34\x3e\x73\x7f\x26\x95\x83\x3b\xc6\x6e\x77\xaa\xac\xd6\xe0\xa5\xe1\xf6\x9b\xea\xd4\x2f\xa8\x31\x9e\x5b\xd9\x49\x3d\x83\x07\x46\xa5\x57\xfc\xa8\x67\xf1\xdc\xf0\x69\xb9\x83\xe5\x2d\x08\xf5\x48\xea\x55\xca\x81\x48\x73\x82\xa4\x3e\x9f\x78\x1d\x48\x7d\x1e\x39\x2b\x8b\x06\xb2\x0e\x4e\xd6\xe3\xfa\xbf\x03\x8c\x36\xd2\xf3\x06\xc5\x03\xd4\xc3\xec\x84\xa1\x15\x00\x43\xdf\xf1\xe5\xf0\xeb\x80\xed\x6c\xaf\x7b\xca\x69\x00\x3b\x3e\x7c\xe7\xa8\x68\x80\xa3\x9d\x54\xa1\x3e\x10\xb0\x4b\xca\x0e\xd6\xb5\x01\xd8\x93\xf3\xce\x1b\xfc\x02\x58\x86\x5b\x8d\x8c\xb7\x00\xcc\xa5\x47\x8f\x99\x37\x03\xf4\xe6\x6b\x4a\xe6\x5d\x80\xf5\xfc\x27\x93\x2d\xbc\x01\xeb\xfe\x5f\x2b\xcd\x6f\x01\xb4\x25\x68\x31\x09\xea\x94\xa5\x96\xa3\xc1\xc4\xe8\x6b\x03\xf5\x2a\xae\x9b\x0e\x7f\xdf\x42\xbd\x8b\x0b\xa6\xf1\xaf\x06\x5a\x47\x62\xb5\xc5\xac\x67\x39\xb4\x4b\xd8\x6b\xf6\xf2\x91\x06\xad\x08\xc5\x66\x46\x77\x23\xac\xed\xb1\xdf\x6c\x67\xcd\x50\x5a\x21\x2e\x98\xdc\x97\x72\x71\x57\xab\x69\xda\xb8\x6f\x54\x75\xe9\x2c\xcd\x18\x4f\x8d\x4c\xcb\xce\xd0\x22\xf0\xdc\xf0\x27\xfe\xe1\xa2\xfa\xe6\x60\x48\xe7\x41\x3f\x05\x73\xf2\xef\xf2\x37\x4c\x48\x1e\x44\xf7\x9d\x55\xc5\x80\x24\xc0\x34\x8f\xca\x19\x2c\x07\xd0\xf3\x59\x3f\x86\xdd\xf8\xcb\x07\x71\xd6\x7b\x5a\xab\x04\xfd\xe5\xe6\xec\x87\x27\x9a\x69\xa9\x03\xdc\xb9\x99\x4d\xba\x5f\x00\xbb\xa7\x4b\x04\xc6\xb9\x00\xbb\x78\xcb\x18\x33\x00\xcc\x4d\x25\x7e\x16\xe6\x00\xe3\x49\x45\xbd\xd5\x68\x80\x5e\xff\xf4\x02\x35\x1c\xa0\xcf\x6b\x57\xa1\x0e\x05\xac\xf5\x50\x6b\xda\xf1\x43\x48\x7b\x87\x12\x73\xea\x87\xd9\xd6\x97\xb1\xc8\x72\xdb\xdb\xc3\xd6\xef\x31\xd7\xf2\xc9\x8b\xc5\xf4\x24\x64\x5a\xad\x79\xa4\x65\x33\x08\x01\xd6\xe6\x77\x3b\x19\x39\x98\x4c\x1d\x53\x73\x94\xa1\x89\xf9\x96\x27\x6f\x14\x30\xa6\x62\x91\x65\xa1\x94\x07\x2b\xd7\x67\x68\x60\x97\x79\x78\x99\x3f\xbd\x11\xc7\xcc\xd4\xcf\x9c\xa2\xf7\xc7\x4d\xe3\x3e\xfd\x71\xa4\xe7\x83\xf4\xbe\xb7\x25\xe9\x67\xf6\xe3\x1b\x90\xf3\x40\xfd\xa9\x51\x6e\xbf\x47\x80\xfe\x73\x13\xab\x01\x73\x00\x4b\x0f\x8b\xc4\xc1\xf7\x01\xc6\x0d\x06\x65\x58\xca\xdf\xdc\x1c\x7b\x9a\xab\xee\x88\xb9\x80\x93\x7a\x60\xb6\x5a\x3c\xe0\x58\x93\x30\x45\xbb\x0c\x70\xd4\xca\xa8\x31\xa4\x03\xbc\xc6\xc5\xd3\x7b\x9f\x92\xed\x36\x6c\xde\x69\xd9\x5b\xbf\x0b\x25\x09\xd4\xf7\xbd\xf5\xa8\x3c\x6f\xdd\x01\x30\xbe\xbd\x50\xa2\xab\x02\x8c\xb4\xdf\x2f\x69\xcf\xbb\x1d\x18\x29\x48\xa0\x95\x7f\x65\x33\xb8\x08\xb6\x1e\xf9\x2e\x80\x01\xb0\xe9\x47\x9f\xb7\xd9\xec\x81\x05\x63\xc1\xe3\x71\x4c\x0d\x98\x31\x2e\xd6\x8e\x60\xf1\xa0\xca\xd4\xbb\x25\xc7\x52\x81\x15\xa3\xba\xf2\x13\x2b\x1e\x6c\x86\xcb\x1f\x0e\x6a\x29\xeb\x10\x02\xad\xab\xca\x66\x33\x27\x62\x96\x55\xf1\x69\x45\xe6\x18\xac\xb7\xb8\x71\x6c\x25\xcb\x15\x2b\x2c\xb7\xfc\xbb\x1e\xfe\xf0\x0f\xe4\x3a\xa0\x74\x19\x92\x9c\xe0\x60\x6d\x3d\x32\x37\x49\xbd\x5b\xf7\x5c\xbf\x13\x80\xc9\x30\xc3\x3b\x03\x15\x01\xeb\x10\x13\x8f\x41\x2f\x01\xf6\x36\xda\xbc\x61\x16\x80\xa3\x8b\x6d\x83\xa2\x36\xe0\x5c\xe9\x64\x31\xf2\x0c\xe0\xca\xf7\xbd\xaa\x11\x0a\xf0\x77\xc4\x96\xea\x76\x00\xce\x87\xa6\x28\x18\xcb\x00\x4e\x43\x16\xa9\x5a\x26\x01\x3c\xb9\x4d\xbf\xa9\x2f\x00\xce\xde\xd2\x02\xc6\x55\x80\xd5\x59\xf5\x88\xe9\x0f\x30\x27\xbf\xb6\x65\xf6\xce\x93\x39\xa2\xdd\xcc\x3d\xed\xdf\x99\x61\xe8\xc7\x8a\x6e\xf6\x65\x85\x10\x2f\xd9\xab\x9e\x8f\xb0\x8d\x24\x6e\x71\x5e\x3e\x5e\x68\x9b\x4a\x34\x70\x86\xdf\x6b\x64\xab\x13\x0d\x1c\xbf\x1a\x39\xf6\x22\xa2\x99\xfd\x40\x9a\x8f\x75\x95\xcb\x3e\x8e\x21\xac\x27\x17\xbe\x71\x82\xa1\xc0\xda\x7c\xf6\x2b\xe7\x12\x54\x59\xe6\x27\xd5\x38\x6b\xc1\xb4\xf1\x2b\x3d\x67\x7b\x00\x99\xd4\x8a\xe2\x00\xb6\x39\xa6\x53\xf7\xe3\x1f\x1e\xc8\x86\xf2\xef\x3c\xe8\xaf\xab\xed\x4f\x9e\x0f\x5e\x9a\x11\xbd\xaa\x57\xac\x79\xa8\xbf\x27\x60\xc1\xd4\x75\x93\x01\xc0\xd9\x68\x34\x67\xb0\x16\xe0\xf4\xde\x5c\x76\xe8\x40\xc0\xed\x12\x9d\x90\x6f\x06\x3c\xc7\xf0\x88\x91\xcb\x00\x4f\x45\xcf\x45\x9a\x67\x01\x0f\xf7\xc8\x4b\xfa\x2f\x00\xb7\xa4\x34\xae\xe9\x19\xc0\xf9\xfb\xfc\xf5\x56\x5d\x80\xa3\x5e\x61\x8b\xcd\x02\x80\x3b\xb5\x74\x9e\xad\x39\xc0\x5e\x70\xf3\x0e\xc7\x0c\x60\x75\x37\xcb\xdb\x25\x8a\x94\x6c\x15\x88\x72\xbb\x9d\x9f\x8a\xd8\xde\xc4\x0c\x87\x80\x97\xa1\x9c\x26\xc2\xdf\xe9\xd9\xc3\x9f\x76\x2f\x09\x7f\x67\xe7\xbb\x9d\xdc\xa1\x44\xaa\x93\xd2\xcd\x1b\x5c\x7b\x62\x81\xa3\x4c\xc5\x7d\x2e\x9d\x38\x68\x3f\xfc\x72\x7f\x9e\x23\xb1\xd3\xfe\x76\x99\x12\x8f\x45\x5c\xe3\x76\x9d\x29\xe7\x6e\x24\x3e\x71\x66\x1d\xe3\xf3\x96\x12\xbf\x39\x94\xa3\x05\x3c\x5f\x0c\xb7\x5d\x75\x48\xc8\xf5\x06\xd7\x66\xdc\x7e\x53\x5e\x20\xd8\x36\x75\xff\xc7\xd7\x7b\x87\x35\xb5\x7c\xdf\xc3\x47\xe9\xbd\x23\x10\x42\x27\xf4\xde\x7b\xef\x1d\xa4\x0b\x8a\x0d\xbb\xa0\x62\x6f\x58\xb1\x61\x03\x15\x14\x44\x50\x10\x15\x0b\xa0\x80\x28\x08\x2a\xa8\xa8\x28\x88\xbd\x61\x57\xec\x0a\x8a\x90\xb3\xde\x27\x93\xe4\xde\xeb\xe7\xf9\xbe\xbf\xbf\xd6\x13\xae\xb9\xb0\xe7\xcc\xde\x33\x73\xd6\x9a\xb5\xff\xbb\x4f\xe0\xcd\x03\x4a\x6f\x3b\x19\x87\xb5\x6a\xc4\xef\x5e\x4d\x5c\x4d\x94\x3a\x02\xb0\x76\x33\xee\x8c\xb8\x03\xd8\x86\x30\x59\x02\x14\xe0\x59\xae\x65\x20\xa4\x0d\x04\x36\xe9\xe9\x8a\x5c\x00\x22\xa4\xcd\xcf\x4b\x87\x02\x11\xcb\xec\x0d\xe4\xd9\xff\xea\x83\xc2\x18\x31\x13\x0d\xf4\x80\xa0\x4b\x93\xe3\xcd\xa4\x00\x7f\xa9\xa5\xb3\x6c\x26\x01\x5e\xb1\x79\xf7\x1c\xae\x03\x6e\xf1\xc7\x37\xba\x8c\x1b\xfa\xe6\x32\xe2\x8a\xba\x47\xfe\x2f\x4d\xa7\xb3\x2f\x66\x7a\xa7\x7f\x5b\xe0\x44\xd3\x42\xbe\x42\xcf\x4e\xba\x2c\x63\xbf\xf5\x17\xe9\xf6\x72\x53\x66\x3f\x0e\xf0\xea\x08\x73\xdb\xc5\xa6\xfd\x86\x2e\x0f\xb9\x8b\xd2\xf2\x7e\x8e\xcd\xce\xee\x03\xb4\xb6\xef\xeb\xb3\x59\xee\x6d\x74\x94\xf7\x86\x5a\x78\x78\xd0\xd3\xbd\x12\x4f\xce\xf5\xd8\x42\xaf\xf3\x54\x38\x6a\xee\xe9\x40\x17\x7a\x98\x54\x64\x79\x16\xd2\xc7\xdc\x03\x0e\xa9\x78\x04\xd3\xaf\x9d\x8f\x1d\x18\xeb\x11\x4e\xc3\x89\x51\x7c\xc5\xa3\x0b\x82\x8e\x9f\xfe\xbb\x4f\xe2\xf6\x7f\xa0\x28\xe6\x29\x0e\xf2\xef\x7d\x6b\x6a\xc9\x93\x3e\x29\x16\x23\xa4\x48\xbd\x74\x3e\x21\x45\xea\x65\x50\xa9\xfa\x4a\x81\x5e\x20\xf2\xbd\xe6\x5b\xe1\x04\x20\x2e\x8a\xf5\x43\xfc\x3d\x90\x40\x5b\x3d\x92\x0f\x01\x12\xe4\xdc\x87\xd5\xd5\x80\x98\x0d\x61\x6c\xce\xba\x18\xe1\x97\xd6\x63\x35\x05\x08\x1a\x5e\x14\xe9\xb0\xff\xd7\x77\xff\xb0\x6d\xda\x1e\xd6\x5f\x9f\x7a\xff\xa9\xf8\xe3\x67\xd1\x17\xec\xe9\x7e\xe1\x79\x50\xd1\x9b\x66\xf7\xcc\x47\x89\xa1\x6d\x2f\x8d\xdc\xde\xfe\xbe\x14\x1e\x72\x67\x9e\x47\x0d\xdb\x36\x42\xed\xca\x03\xaf\xb3\x6c\x8b\x48\x83\x16\x35\x6f\x59\xf6\xbc\xb0\xec\x46\xca\xbb\x9a\xbd\x27\xd4\xfa\xf4\x67\x9f\x11\xec\x8b\xc1\x73\x4e\x59\xf9\xf8\xb3\xfb\x02\x6b\x8f\xad\xf5\x99\x4b\x2b\xfb\x37\x54\x64\xf9\xf6\xd0\x4a\x01\x9a\x65\x4b\x7d\x53\xe9\x28\x5f\xa1\x03\xfa\x3e\x97\xe9\x65\x5e\xbb\x8a\x46\xf9\xb4\xd2\xa5\x1e\xd9\x85\x93\x7d\xae\xd0\x67\xdd\xcd\x77\xff\xf0\x19\x4f\x3f\x70\x25\xef\x62\x2c\x79\xf3\x41\xbb\x9a\x8b\x5c\xde\x57\x61\xac\xf4\x63\x0e\x1a\x39\x89\x5c\xe0\xa0\xdd\x33\xee\x7b\x4c\xef\xcf\x5c\x3f\x88\xa8\x37\xa2\x84\x1f\x4f\x6e\x65\xac\x11\xf4\x04\xc6\x79\x69\x2d\x12\x55\x06\x26\x64\x98\x58\xcb\x9c\x00\xc6\x1b\x39\xbe\x55\xd3\x00\xc6\x0c\x07\x4e\x32\x10\xf8\xf3\x3b\xb6\x28\xe9\x9a\xdd\xf0\xd7\xf1\x51\x17\x32\xae\x7b\xfc\x78\xcb\x08\xfb\xbe\xfe\x7b\x60\xc8\xb3\xde\xe0\xe0\xfd\xb7\xc2\x8b\x1f\x9c\x0b\x70\xab\xdf\x1a\x33\xef\x0e\xdb\xf7\x43\x57\x71\xdc\xbd\xdb\x3e\x3e\x27\x3e\xdf\x4c\x68\x6f\x2f\xf3\x7d\x37\x9c\x9e\x70\xf2\x5c\xb8\xff\xf5\xe1\xfc\xf8\x13\xa7\xdf\x05\xa4\x0c\xdf\x8b\x9d\x70\x32\x37\x00\x6c\xe1\x98\x4b\xc7\x16\x06\xce\x61\x9b\x46\x27\x57\x0c\x04\x5e\x64\x8f\x8d\x8c\x28\xed\x0b\xbc\xc2\x3e\x14\xe6\x5c\xdc\x19\xb4\x92\x7d\x3e\xd4\x77\x2f\x33\xf0\x17\x2d\x10\x78\x6f\xb7\x64\x90\x0c\x6d\xe5\xbf\x23\xef\x6c\xe0\x79\x3a\xce\x77\xcb\x4e\xc1\xc0\x76\x7a\x8a\xcf\xbe\x6d\xb3\x03\x9d\xe8\x3c\x2f\xa2\x33\xe7\xeb\x1f\x54\xc9\xbe\x41\xac\x4c\xc6\x89\xec\x17\xcf\x8a\x5c\xe7\xa0\x65\x12\xf5\x17\xff\xcb\xd7\x01\xf0\xfb\x42\x4c\xb2\x10\x22\xba\xc2\x99\xb7\x15\x88\x5e\x20\x63\xa5\x6e\x83\xa4\x11\x30\x3b\xd9\xf2\xb2\xf2\xf2\x41\xd1\x69\xc6\x5e\x4f\x59\x5f\xfb\x98\xe3\xed\x63\x22\x9d\xa2\x9e\x85\x27\x6f\x98\xcc\x0e\xa8\xbf\x2b\x19\x3f\x6d\x79\x64\xe4\x82\x9b\x4a\x31\xeb\x76\x2d\x8a\x9f\xd4\xbe\x21\x92\x3a\xd1\x3c\xa6\xa4\x55\x33\xcc\xfb\xea\x9a\x71\xd6\x4d\xa3\x43\x92\x5e\x4b\x8c\x1f\x5f\xff\x2a\x64\xf5\xd0\xa2\xf1\x17\x8f\x6f\x0c\x33\x18\x7a\x36\xf6\xee\xe1\x3b\x61\x1d\xc3\xa6\x29\x11\xa5\xb9\xe1\xd5\xc3\xf3\x92\xde\x16\x9f\x0c\xcf\x1b\x6e\x8b\x6f\x2a\xdc\x1b\xfe\x73\x98\x1d\xbb\x77\x8f\x68\x78\x03\xdb\x3e\xc6\x3a\xdf\x22\xbc\x9a\x9d\x1e\xa5\xbc\xfd\x49\x78\x20\xfb\x58\xd8\x83\xad\x22\xe1\x55\xec\xb6\xd0\xaa\x4d\x1f\xc3\x3e\xd0\xd2\x41\xc2\x39\x67\xc2\x85\x69\xdb\x00\x99\xb5\xb5\x61\x33\xe9\xe9\x3e\xe4\x76\x8d\x26\xb9\x6f\x30\xd2\x5a\x9a\x9c\x2b\xe4\x5c\x04\x89\x3f\x0c\x9f\xff\x76\xe6\xf1\xbf\x61\x65\x5c\x4c\x32\xe6\x22\xbf\x2f\x04\xdf\x17\x62\x71\x9e\x10\xd1\x21\xaf\xc8\x66\x94\x0a\xef\x1f\x34\x5e\x9e\x6e\xf4\x52\x31\xe6\x43\xfc\xc2\x21\x97\xe9\xac\xd2\xc7\x2d\x99\x47\x42\xb7\x39\x99\x74\x06\x4f\xb9\x9b\x9a\x10\x32\xf9\x52\xc6\xf8\x43\x73\xaf\xc4\x07\x35\x9a\xa5\xee\xde\x5c\x94\xfa\xbc\x36\x22\x69\x5d\x79\xe2\xc4\x88\xe3\x71\xf1\xe9\x17\xa6\x4d\xb1\xad\x7c\x1e\x2b\xf7\x68\x78\xda\x85\xf2\xe5\xa3\x25\x06\x77\x4d\xef\x2b\x9e\x19\x3b\x65\x48\x64\xca\x8a\x3d\x3b\xe2\x8c\x86\xe6\x4c\xb2\xca\x1f\x1d\xa7\x30\x74\x63\xbc\xda\xb6\x9b\x71\xd4\xb0\x67\xca\x9f\xdc\xd8\xd8\xec\xe1\x9d\x49\x67\x37\x32\xe2\x92\x86\x5b\x12\x05\xd7\x7b\xc4\xb6\xb0\x55\x62\xe3\xd7\xea\xc6\xba\xb2\xe3\xa2\x37\xaf\xba\x3d\xfa\x02\x7b\x67\xc4\xd9\x95\xf2\xb1\x92\xec\xda\x70\xfd\x65\x6a\xa3\x9f\xb2\xdf\x87\x2c\x5b\x16\x10\x53\x4d\xcb\x04\x11\xdd\x20\x57\x07\x23\xb8\x71\xe4\x12\x0e\xea\xee\xe4\xc6\xe5\x30\x89\x8b\xfc\xfb\xdf\xc9\xa5\x5c\x9c\xba\x8f\x8b\xfc\xfe\x28\x2b\x79\xbc\x60\x0e\xf1\x85\xff\x93\xb9\x4d\x54\xae\x8f\xa2\xfa\xcc\xb6\x38\xea\x7a\xca\x25\x3c\xbe\x90\x13\x65\x7b\x47\x6f\xd4\xcd\xe6\xec\x41\xbf\x93\xf6\xe5\x2d\x2a\x8b\x19\xf1\xfe\x41\x61\xd5\x77\x32\xea\xa6\x25\x24\x1b\x54\xfc\x9e\x9e\xb2\x2a\x7c\x62\xfe\xfe\xc8\xf4\xc5\xfb\xbc\xa6\x6d\xdc\xe3\x3d\xd1\xfa\x4c\xe1\xac\xea\x9d\x31\x69\xab\x6e\x17\x65\x66\x6d\x4d\x18\xfb\xfd\x73\xf6\x9c\x7b\x9b\x0c\xc6\xde\xfc\xe3\x30\xfb\xe7\xba\xf3\x63\x5f\xfe\xb9\x36\x7d\xf3\xea\x0f\xe3\x44\x86\xd4\xa7\xfc\x5c\x79\x6c\x6c\xf1\x50\xe1\xc4\x33\xcb\x3e\x8c\x9d\x3c\xd4\x9f\x36\x7f\x49\x5f\xaa\xf3\xf0\xd4\x94\x11\x8b\x3d\x52\xee\x0e\x1f\x4a\xda\xb3\xf0\xc1\x98\xb6\xe1\x5f\xf1\x7a\x0b\xe6\x8c\xb9\xc2\x56\x8c\x7d\x3e\xef\x53\xf2\x15\xf6\xec\xa8\x53\x73\x75\x93\x96\xb2\x9b\xc3\x5a\xe6\x2e\x4a\x5c\xca\x7e\x1c\x4a\xce\x17\xa2\xe4\x3c\xc1\x5c\xc5\x8d\xe7\x1f\x1d\x08\x4f\x07\x94\x20\xc5\x7b\xfe\xbc\xbe\x10\x0b\x79\x3e\x10\x6b\x29\x2e\x6e\x23\xfc\xd5\x2f\x85\xdd\x44\x17\xf0\xe1\xc3\x3e\x63\xd1\x3d\x14\xf5\xa4\x75\xef\x31\xa6\xa7\xe4\xd3\xce\x9f\xbb\xab\xcc\x85\x34\x97\xb7\x7c\xd8\x61\xe7\x61\x65\x3d\xaf\xfa\xd3\x26\xbd\xc8\x6f\x7e\xa1\x65\x47\x57\xaf\x9d\xb0\x31\xde\x21\x4f\x7a\xf1\x86\x05\x6f\xd2\x57\x6e\xd8\x30\x7f\xc3\x0e\xab\x59\x17\xb3\x57\xcf\xb5\x3d\x76\x6e\xae\xf6\x92\xd8\x8c\x35\x57\xf4\xe6\x5b\xcf\x7f\x34\xab\xf0\xd5\xb2\x05\x35\x73\xeb\x67\xde\x1f\x9c\x38\x7f\x7a\x66\xc8\x8c\xe6\x3f\xba\x19\xec\x59\x9f\x67\x6c\xfe\xb3\x75\x66\xed\x2c\xf1\xe9\x5e\x43\x22\x53\x1f\xcf\x9c\x33\x35\x6b\x68\xe3\xa4\xb4\x19\x95\x53\x32\x86\x1e\x8f\x9f\xc2\xd7\x7b\x4c\x6f\x9e\x94\x37\xbc\x21\xf9\xf4\xd4\x9c\x49\xc1\xc3\x37\x12\x9e\x4d\xe9\x9a\x90\xcb\x66\x8d\xee\x4b\xdf\x39\xfe\x03\x3b\x31\x7a\x53\x7a\x6a\x5a\x37\x7b\x5d\xe4\x14\x40\x44\x90\x1b\x0f\x3f\x0f\x3c\x3c\xb9\x18\xcb\xeb\x07\x33\xc5\x86\x17\x3f\xaf\x1f\x02\x9f\x07\xcf\x23\xf7\xc2\x7f\xc6\xec\x23\xe3\xf3\x2e\xa3\x94\xf0\xa2\x8f\xd7\x56\x5c\x22\xef\xfd\xff\x1c\x59\xad\x32\x47\x70\xe2\xc5\x33\xe5\x73\x0c\x42\x55\x57\x9c\xf6\x3f\x50\xef\x64\x65\xfa\xb9\x5c\x74\x9f\x6f\x70\x99\x47\x4a\xfe\xa9\xfc\x92\x94\xed\x51\x5b\xd7\x94\xe6\x06\x65\x7e\x1b\x2f\xbc\x50\x66\xc3\xa3\x4d\xcc\x69\x9f\x33\x4e\xad\x2f\xab\x90\x9d\xb5\x60\xba\xe0\xda\x57\x17\xd3\x32\x5a\xd3\xed\xd7\xe8\x3d\xdb\x9c\xb9\x68\xe2\xe7\xd5\x31\x7f\xec\x33\x66\x4d\xbc\xb4\xe2\xfe\x9f\xba\x19\xd9\x13\x99\xcb\xf6\x0d\x19\x4f\xb9\x31\xc1\x7e\xc9\xab\xa1\xfc\x49\xfa\x13\x82\x17\x36\x0e\xbd\x1d\x6f\x3b\xfe\x60\xd6\x8b\xe1\x98\x54\xe6\xf8\xe2\xb9\xcb\x86\xb7\x24\x5f\x4d\x33\xce\xbc\x31\xdc\x1f\x3f\x3e\x6d\xe6\xec\x2c\xb6\x5a\x6c\xe3\xb8\x93\xb3\xcd\xd8\xee\xa3\xd5\xc6\x75\x4e\xf7\x65\xaf\x8a\xec\x19\x27\x3f\xed\x02\xfb\x50\x84\x12\xa0\xce\xd3\x3b\x39\xf0\x7c\x0e\xf8\xfc\xf7\x44\x9e\xcf\xfb\x42\x5e\x5d\xc8\x51\xe7\xe2\x6e\xc2\x77\xff\x54\x39\x90\xc0\x8d\xff\x30\xc9\x87\xc7\xce\xc7\x09\x2f\xde\x79\xae\x9a\xe4\xcb\xe5\x31\x75\x46\x32\xe9\x14\x55\xf7\xb0\xb6\x5a\xab\x48\x7e\x62\xe5\x8a\x93\x83\xd6\x59\xfa\x31\x05\xcf\x8e\x65\xfa\xd6\x3b\x4a\x6f\xb0\x2f\xef\x8c\xff\x10\xec\xb6\x80\x79\x80\x31\x23\x39\xa9\x70\xfa\xef\x62\xd7\xf5\x1a\x69\x3d\x13\xe7\xed\x1b\x5b\xb6\x7e\x52\x42\xea\x83\xc2\x8e\xe6\x2d\xe9\x6b\x93\xee\x16\x2c\x7d\x9c\x3d\x25\x30\x21\xa7\x20\xf2\xcf\xfa\xf4\xfa\x84\x3f\x79\x46\x43\x7b\x26\x2e\x48\xf0\xd9\xce\x1c\x96\x1e\x17\x90\x38\x7b\xf3\xcb\x61\xa3\xb1\x69\x89\x93\x72\xde\x0c\xaf\x4e\xfe\x96\xa8\xb7\xb6\x6d\xf8\x76\x42\x57\xc2\xd5\x55\xd7\xd9\x8c\xd8\x23\x09\x9f\x56\x6e\x67\xbb\x8d\xd6\x4f\x78\xb8\x6c\x34\x7b\x51\xd4\xe4\x84\x51\x4b\x74\xd9\x0d\xe1\x1e\xf1\xbd\x8b\xce\xb3\xef\x86\xb6\xc7\xc7\xce\x3f\x4a\x2b\x05\x2d\x05\x2c\xfb\xb9\xf1\x05\xb1\xb8\x38\x8e\x37\xdf\xe7\xdf\xfb\x3b\xfe\x42\x6e\xff\x0b\xe9\x83\x64\x7c\xde\xcd\xe0\xea\x80\x1e\x35\xd6\x90\xf7\x8d\x9d\x9f\x1b\xc8\xb8\x5c\x92\xe5\xea\x42\xea\x72\x5b\x2a\x46\xce\xa0\xa8\x63\xd7\x5b\x5d\xd4\x52\xc4\x75\x8b\xfd\x9b\x23\x4c\x47\x30\x27\xe7\xe6\x36\x5e\x71\xbf\x67\x51\xb3\xcc\xa3\x6e\x6d\xb4\x85\x97\xd2\xb4\x97\xd5\x5d\xe9\xb2\x51\xf3\xd2\x46\x9f\x92\x5a\xed\x13\x1f\x9c\xf8\xf4\xc4\xbe\x12\xbd\xa4\xcf\xa3\x4d\x8f\x27\x9c\x7b\x9b\x22\x18\x99\x52\xe5\xf6\xa0\x28\xe5\x56\x78\xc8\xb1\xfe\xdf\x6a\x29\x4e\xe1\x8b\x2b\x86\x86\xd7\x25\x65\x45\xc8\x96\xa9\x0f\x9f\x4d\x28\x88\xc8\x2b\x3a\x3f\x3c\x18\x67\x14\xb1\xae\x20\x83\xed\x1d\xa3\x1d\x71\x7f\x97\x24\x3b\x3d\x2a\x27\xd2\x7a\x7b\x0d\xbb\x20\x22\x26\x52\x29\xb7\x9b\xdd\x1e\x66\x10\x69\xbe\x29\x88\xfd\x23\x78\x28\xd2\x21\xe7\x24\xad\x10\x14\x1d\x79\x7e\xed\x26\xda\x28\xd0\x3e\xd2\x65\xd5\x57\x3a\xc1\x6f\x27\xe0\xc5\xd3\xbb\x24\x5f\xe0\xd5\xff\x1b\x7f\xcf\xff\x42\xe2\x77\x3f\x70\x9c\xeb\x07\xf4\xce\xe4\xc4\x58\xf2\xfc\x85\xb8\xfd\x21\x6e\x6b\x9c\x27\xbc\xcf\x65\xe9\x16\xa2\xaf\xab\x7f\xdf\xf6\x9b\x83\x47\xc1\xd5\x85\x94\x3e\xef\x34\x55\xfc\x42\x51\x3b\x67\x5f\xdf\xab\xaf\xa0\xd8\xb5\xfa\xc6\x35\x1d\xc7\x55\xac\x84\x39\x8f\xdb\xdd\x42\x97\x38\x8c\x4d\xd3\xb8\xb8\x73\xbc\x8e\xff\x9d\xf8\xe1\xd6\xf3\x2b\xd4\x43\x9e\x47\x36\xb7\x54\xed\xd3\x8c\xc8\x0d\x71\xb9\xb0\xbf\x21\x36\xea\x66\xc0\xa2\xe6\xd7\x77\x43\xa3\x73\xfc\xb6\x37\x1f\xeb\xb7\x89\x7a\xe4\x6f\xd4\xd0\xc3\x8e\x8d\x9c\xe6\xbf\xa1\xb6\x9f\xbd\x24\xfc\x63\xc0\x9c\xe3\x2f\xd9\xbb\xc3\x7e\x06\xec\xa8\x1c\x60\x77\x84\x94\x07\x4c\x3f\x78\x9f\x16\x0f\x2c\x09\xd8\x5e\xf2\x8b\x36\xf7\x7f\x19\x78\xb6\x48\x98\x36\x0b\x60\x04\xae\x29\x58\x4b\x27\xfa\xb6\x07\x7e\xca\xff\x44\x67\xf8\x14\x06\xae\xde\xb1\x8c\x2e\xf6\xfc\x15\xe8\xb5\xb5\x9b\x3e\xef\xa1\x00\xc4\xaa\x71\xe3\x9d\xc5\xd3\x01\xad\xe6\xf5\x47\xd9\x43\xd6\x8b\x81\xc7\x15\xa4\x5e\xbe\xef\xac\x26\xbc\xd6\x13\x8d\xb3\x04\x6f\x47\x72\x7d\x71\x2e\xbf\x6e\x23\x9f\xcf\x2a\x76\x90\x3e\x42\xc7\xf3\x6f\x11\xfe\xe3\xc0\xbd\x1e\x32\xbf\xf2\x0e\x3d\xd4\x16\x5a\x43\x51\x1b\x8c\x1e\xfc\x66\x16\x4b\x5c\x5f\x94\x73\x7f\xb2\xd5\x09\xf5\xb6\xa9\x0a\x77\xed\xfd\x37\x98\x29\x24\x94\x77\xb7\xa5\x48\xbb\xb0\x22\x2e\x76\x2b\x2c\x3e\xeb\xc9\x0a\xac\xec\x3a\xb4\xc7\xc9\xe7\xb8\x8f\xd7\xed\xc1\xd3\x1d\x7e\x75\x1e\xf5\xb7\x57\x75\x67\xfb\xaf\x72\x97\xba\xed\xf0\xad\xcf\xaf\xd2\x9d\xba\x7e\x8e\xf6\xf4\x29\x75\x57\x6f\x6b\xa7\xc7\x7a\x1b\xbb\x0f\x36\x37\xd0\xd3\xbc\x5e\x79\xd8\x36\xf4\xd0\x1b\x3c\x93\x3c\x4d\x6b\x9d\xe8\x5c\xcf\x44\xcf\xe9\x27\x36\xd2\x15\x1e\xa2\x5e\xf2\x47\x42\xe9\x7a\x77\x67\x2f\xeb\xf2\xb3\xf4\x4d\x57\xda\x6b\x67\x69\x07\xfd\xcc\x55\xca\xfb\xd2\xfe\x31\xf4\x3d\xd7\x4b\x5e\x7b\xf7\xda\x42\xde\xf1\x29\x90\x7e\x9a\x1b\x77\x76\xcb\x7f\xf3\x7f\x48\x9c\x9b\xf7\x1f\x1b\x6a\xb9\xbe\xef\x96\x8d\x84\xc7\xef\x8a\xba\x48\x7c\x2e\xda\x77\x5e\x23\xf9\x72\xee\x72\xe7\x04\x0e\x9e\x8a\xec\x21\x7e\x4a\x87\x36\x3d\x24\x3e\x5b\x7b\x14\x9f\x92\x3a\xb1\x61\xfe\xab\x29\x84\xef\xb8\xfc\x4e\x62\xd4\x61\x8a\x9a\x5d\xfb\xc6\xd6\xe8\xa1\x02\x6b\xdc\x88\x57\x17\x3c\xee\xeb\x2c\x8a\xbc\xf0\x32\x24\x7e\xbc\xc5\xe8\xc0\x49\x2f\x97\x66\xf9\xd8\x1a\x7b\x45\xbd\x1c\xbf\xb3\xcc\x21\xdc\xd5\xf6\xa5\xfe\xa9\x2a\xa7\x00\xc7\x6f\x2f\xba\x3b\x17\x3b\xb1\x1d\x56\xbf\xb8\xf9\xb9\xc8\xc9\xc4\xe1\xf6\xd3\xad\x34\xed\xa8\xec\x70\xe4\x5e\x0d\x64\xed\xff\x38\x8e\xbb\x35\x0b\xe2\x0e\x59\x8e\x65\x57\x9b\xa0\x6c\x7f\xc9\x49\xf6\x62\x2e\x34\xed\x43\x9d\xb4\x9b\x4a\x61\x69\xe7\xe9\x74\xb6\x21\x06\xf6\x76\x12\xce\xb6\xb5\xba\xf0\xb4\x5d\xee\x32\xfe\x44\x17\xec\xed\xc6\x39\x57\x1c\x6d\x41\x92\xf5\x35\x17\x97\x8a\x6f\x48\xb5\xde\x05\x2c\xe9\xfd\x6f\xfd\x67\x33\x2b\x6a\x39\xf8\x79\x4f\xcd\x7d\x0e\xf6\xae\x68\x22\x7c\x7e\xcf\xd4\x76\x22\x28\xbb\xfa\xf1\x06\xa9\xa7\xe7\x3f\x74\x91\xf5\xb5\xf6\xe4\x43\xa2\x7f\x38\x3c\xf3\x29\xd9\x4f\x15\x45\xbe\x7c\xcf\xc1\x6d\x3e\xef\x89\x8f\x44\xf6\xf8\x2f\x0a\x1c\xcc\xd4\xfb\xf9\x44\x68\x0a\x45\x4d\x0e\xe9\xdf\xab\x95\x2b\xb6\x37\xde\xb9\xdf\xcc\xe1\xcd\xa8\xfc\xa0\xd1\x3f\x3d\x23\xcb\x75\xd7\x79\x4d\xe8\xf7\x9d\x55\x65\x70\xc2\xf9\x62\x7f\xcb\x96\x1b\xc6\xe7\xec\x6e\x0d\xb0\x8e\x95\x98\xc6\x58\xf7\x0e\x08\x5c\xfb\x68\x36\xd2\xaa\x76\x60\xc6\x87\x02\x53\xa6\xd5\xaf\xef\x97\x71\xd3\xf8\x80\x95\xe8\xfb\x8b\xe8\x31\x0a\xb7\xba\xd0\x5b\x86\xb3\xc6\x5f\xad\x8e\x3e\xc8\xc1\x59\xe3\x4d\x56\x55\xdd\xca\x38\x6f\xac\x67\xbd\xe1\xfa\x22\x9c\x34\x61\x58\xbf\x6a\xbb\x8f\x53\x26\xa2\x36\xd3\x5b\x2e\xe1\x84\x89\xad\x4d\xe5\xb9\x21\xd4\x1a\xdf\xb0\x55\x6c\x48\x45\xad\x71\x8f\x6d\x58\x6d\x1b\x1a\x8d\x03\x80\x6d\x3f\xc9\x38\x94\x97\x13\xfd\xcf\x37\x26\xf7\xf9\xbf\xe8\xe5\xea\xc0\xee\xf6\x5e\x21\xf3\xa2\x63\x69\x27\xa9\x13\xad\x39\xf7\x88\x7e\xaa\x6e\x07\xb7\x5f\xd2\xd1\xe8\x5e\xe2\x9f\x71\x80\xf5\x96\xf8\x03\xe4\x9f\xfa\x4c\x74\x85\x1b\x34\x7e\x14\x73\x70\xb1\x27\x97\x27\x4e\xe7\xdd\x83\x4f\x39\x0a\xa8\x96\x8d\x1c\x15\x61\x07\x58\x9a\xca\x68\x78\x97\x02\x41\x27\x55\xcb\x5d\x95\x81\xc9\xcd\xcc\x87\xf6\x4b\x81\x35\x89\x5a\xb0\xba\x08\x1c\x08\xd1\x19\x6d\x21\x0a\x9c\xef\xd5\x8d\x25\xf7\xf7\x3f\xea\xdc\x37\x53\x03\x7e\x58\x69\x5d\x32\xb5\xc3\x7b\x80\xa9\x6a\x32\xee\xe7\x55\x80\x39\xcf\xc4\xbb\xaf\x06\xd0\xf0\xfe\x47\xe7\x70\xf1\xb1\x38\xa0\xbd\xc3\x54\xab\xa7\x0e\xd0\x9a\x69\x3a\xb6\x33\x0d\xd0\x2a\x32\xb3\xba\x16\x09\x68\x1f\x34\xbd\xdb\x16\x0a\x68\xb5\x98\xdb\x5d\xa8\x04\x74\x92\x80\x43\x5c\x1d\x68\xd5\x69\xd2\x17\xeb\xed\x5d\x6e\xde\xdf\x9f\xc8\xf5\x45\xba\x21\x7f\x3b\xf4\xbf\xf1\x37\x3c\x7e\x4e\x74\x10\x27\x8a\xb9\xbc\xf8\xa1\x6d\x1f\xc9\xb8\x15\x7e\xe2\xf6\x0d\xda\x5a\x3c\x48\xf4\xa5\xab\x63\x41\xf6\x57\x19\x3c\x5e\x33\x65\x01\x17\x23\x9e\x02\x32\x6a\x14\x15\x20\x0b\x98\xf4\x48\x84\xbb\x59\x03\x3e\xf3\x14\x95\x1d\x86\x80\x94\x77\xa3\xaa\xad\xcf\x03\x8b\x15\xd4\x22\x2c\xee\x03\x3b\x7f\x31\xa5\xcd\x02\x80\x63\xc7\x34\x22\x4d\xdc\x80\xd6\x39\x1a\x23\x8c\x83\x81\xbb\x5e\xcc\x39\x46\xad\xc0\xfb\xb9\x8c\x97\x7c\x1f\x03\x3e\x6f\xab\xfb\x7c\x60\x39\x20\x37\x45\x5f\xf9\xe3\x65\x40\x31\x4c\xbf\xe3\x55\x1b\xa0\x2c\xaa\x7f\xf8\xd9\x72\x40\x59\x97\x25\x70\x7f\x15\xa0\xfc\x96\xd5\xd7\x75\x17\x50\x09\x62\x95\xdf\x3c\x02\x8c\x7a\xf4\x6b\xa8\x9a\xcc\xfb\xb7\x17\x9a\xc9\xfa\xff\x68\xd7\x35\xa2\x83\xe9\xf4\xef\x22\x71\x5d\x6e\x7d\x44\x78\xef\x73\xba\x2f\xc9\xcf\xab\x8b\xde\x93\xf5\xf4\xf0\xd7\xaf\xe4\xf3\x7e\xfc\x26\xf1\xe6\x4d\x62\x13\xbd\x0c\xdf\x07\x61\x21\x8f\xff\x4d\xe7\xf1\x7a\xa3\x79\xbc\x9e\xb7\x3f\x20\x14\x4b\x51\x9e\x3e\x80\xc1\x45\xd1\x99\x0e\xb6\x80\xbb\xbd\x4c\x9a\xb5\x1e\x10\xb7\x5e\xee\xb8\xc5\x5e\x60\xd6\x07\xc5\xef\x7c\xdf\x7e\x63\x4f\x60\x5f\x89\x8a\x82\x61\x32\x70\xa2\x4c\xc5\x99\xf5\x15\x68\x89\x1f\x75\xdd\x40\x1f\xe8\x3c\xa6\xb2\xc7\x40\x03\x78\x51\xa7\xa2\xcf\x8a\x00\x06\x8e\x29\xbe\xd5\xcd\xe3\x8c\x87\x4c\x0a\x5f\xe7\xa0\xb1\xf1\xd7\x3e\x40\x5c\x5d\xe9\xd6\x0f\x72\x93\x5d\x53\xef\xed\x27\x40\x72\x91\xe6\x84\xde\x24\x40\xca\x5f\x4b\xf6\xd1\x31\x40\x7a\xe5\x87\x80\x66\x72\x9e\x7c\x6a\x75\x8d\xe4\x7b\xb7\x69\x0f\xd1\xfb\xb5\x7d\x7c\xcc\xbd\xff\xae\xfb\x9a\xf8\x63\xd5\xd6\xf6\xe5\x52\x84\xff\x1d\xd0\x25\xeb\xe1\xb6\x3f\x73\xa8\xff\xfa\xa1\x18\x73\x71\x19\xcf\x07\x84\x7f\xff\x3d\xd5\xef\x6f\xbe\xd3\x49\x0c\x18\x51\x4f\x51\x8e\xeb\x01\xed\xab\x42\xfa\xd6\xa3\x01\x47\x15\x89\x0e\x0b\x71\x20\x72\xa6\xf4\x06\x93\x91\xc0\x44\x1f\x99\x69\x46\x57\x80\xa5\xba\xf2\xd3\x0d\x57\x02\x5b\x07\x14\x83\x59\x0d\xc0\x81\x3d\x8a\xd5\x7a\x34\x70\x62\x92\xa2\xb8\xbe\x14\x70\x5e\x5b\x49\x46\x77\x23\x70\x6d\x8f\xc2\x4a\xdd\x47\xc0\x93\x35\x0a\x25\xba\x1a\x40\xdf\x4e\xb9\x3c\x5d\x7b\x00\x69\x32\x3a\x7c\x9d\x83\xcc\x20\x57\xe7\x20\x68\x04\xc2\x65\x8e\x54\x18\x20\x77\xf4\x84\xd8\x5f\x48\x4f\xfb\xe7\xcb\xaf\x11\x9d\xd3\x9d\x9c\x1e\x12\xdf\x35\x83\xa7\xc4\x17\xe5\x42\xdc\x6b\xe2\x03\x54\xa7\xf0\x85\xec\x1b\x4e\x38\x0d\x90\xfd\x56\xf9\x65\xae\xfe\xab\x60\x19\xfe\xf2\x01\xe0\xfb\x20\xcc\xe3\xf9\x26\xf0\x7d\x20\xe2\x79\x7a\x11\x3f\x1e\xff\x6f\x13\xcd\xd3\x41\x58\x00\x5a\xe7\x04\x17\x99\xcd\x03\x6c\xec\x45\x07\xf9\xf7\xfc\x0d\x33\x80\x94\x4b\x92\xc7\x0d\x1e\x01\x73\x16\xc8\x44\xb0\x16\x01\x6b\x32\x64\x6b\xf5\x16\x03\x3b\x77\xc9\x9e\xd4\x65\x01\x07\x54\x64\xab\x74\xca\x80\x63\xb9\x72\x22\xda\xa5\x40\x7d\x8b\x6c\x8e\xd6\x1b\xa0\x4d\x54\xe6\x8f\x16\x0d\x74\x3b\xca\x8a\x6b\x9b\x03\xaf\x0a\x64\x96\x68\xd9\x03\xdf\xa3\x25\xdf\xf1\x75\x0e\x8c\x23\x1c\x14\x92\x15\x56\xe3\x8e\x0b\x95\x82\x2a\x0e\xde\x73\xec\xe6\xea\x3f\xbe\x3d\x23\x7e\x48\x17\x1d\xdf\x11\x3f\xa8\x86\xd6\xef\xe4\x7c\x75\xb2\x6e\x50\x8f\x83\x15\x3c\x1d\xc0\x3f\x3a\x18\x9e\x3e\x80\xef\x87\xc2\xf7\x41\xf8\xc7\x07\x82\x37\x0f\x22\x79\xfa\x18\x8f\xdf\x3c\xfd\xc3\x66\x2e\x5a\x7c\x01\xd4\xe3\x47\xce\x32\xfc\x02\x98\x7e\x13\xce\x61\x5d\x05\xbc\x85\x45\x75\x59\xa7\x80\x78\x4d\xf1\x5a\xed\x27\x40\xba\xa2\xd8\x1a\x3e\xaf\xad\xab\x08\xe4\x14\x48\x33\x75\x46\x02\xf9\xfe\xd2\x69\xda\x5e\x40\xf1\x18\xe9\x89\xda\x4c\xe0\x88\xb2\x8c\x9a\xe6\x54\xe0\xb4\xb9\xd4\x11\x8d\x28\xe0\x82\xaf\xe4\x4e\x4d\x17\xe0\xe6\x52\xa9\x76\x4d\x01\xe0\x91\x8d\x94\xaa\xc6\x44\xe0\xbd\x95\x44\x02\x73\x37\x30\xa0\x24\x26\xc8\x2c\xe4\x8c\x83\x48\x9d\x58\x0b\x77\x3c\x3a\xdf\xf7\x12\x5d\xd4\x65\x39\x6e\xfc\xe7\xc4\x7e\x90\xbf\xb3\xa6\x62\x98\xeb\x0b\xc6\xcb\xf3\xff\xd5\xc1\xf0\xeb\x00\x5f\x07\xc2\xaf\x87\x13\x79\xe3\x92\xc0\xd3\x09\x05\xcf\xe6\xa2\x33\x0f\x4d\x05\x80\x11\x4a\x14\xa5\xd3\x07\x48\x49\x52\x14\xcb\x10\x30\x2c\x16\xb2\xd2\x89\x07\x9c\xd5\x84\xe6\xe9\xca\x02\xe1\xbf\x44\x5a\xb4\x07\x80\xb4\x11\xa2\xfd\x5a\xe6\xc0\xac\x34\x31\x61\xad\x23\xc0\xb2\x83\xe2\x8f\xb4\xda\x81\x0d\x01\x92\x32\x9a\x2f\x81\x1d\xf5\x92\xc2\x9a\x1e\xc0\x3e\x37\x49\x25\x0d\x7b\xe0\xd0\x1f\x89\xb5\x9a\x93\x81\xea\x03\x52\x9b\x98\xbe\x40\x63\xb6\x84\x36\x73\x31\xd0\xf6\x51\x62\x05\x73\x2a\xd0\x15\x2b\xe1\xc2\x7c\x00\x3c\xaf\x90\xb0\x57\xaf\x05\xfa\xa2\x45\xbb\xd4\xc7\x02\x83\x9d\xc2\x5f\xae\x64\xf4\x11\x1d\x54\xd3\xea\x9f\x44\xff\x54\xc7\xf3\xb9\x39\xca\xcb\x77\xbe\x0e\x86\xaf\x07\xdc\xc8\xf3\xcb\xe0\xeb\x40\xe6\xf1\xfc\x2d\xa6\xf2\x7c\x33\x52\x79\x7d\xd4\xa2\x6d\xb8\xf8\x4f\x3f\x94\x22\x2e\x1a\x8e\xe5\x22\xd3\x03\x10\xbd\x4b\x51\x3a\x67\x01\x3d\x96\x40\x27\x27\x8f\x6d\x8f\x09\xbc\xd7\x7c\x04\x04\xca\x09\xad\xd0\x32\x06\x12\x75\x44\x94\x99\xdb\x80\xc9\x72\xc2\x63\x99\xa3\x81\x39\x02\x22\x32\x1a\x1a\xc0\xb2\xe5\xa2\xc5\x1a\x53\x81\x75\x2f\xc5\x0e\x68\x74\x02\xdb\xc7\x89\x77\x33\xb3\x80\x42\x09\xb1\x41\x8d\xf9\xc0\xa1\x5e\x89\x9b\xea\xc9\x40\x55\x92\xd8\x16\x75\x3b\xe0\x8c\xba\xd8\x6e\x75\x16\x70\xe1\x97\xd8\x21\xf9\x2e\xa0\xcd\x9b\xa2\x18\x55\xc0\x9d\x25\xa2\x45\x8c\x50\xe0\xb9\x8a\xc8\xec\xe6\x70\xee\xf3\xaf\xcf\xc3\x12\x0e\x1e\x4b\xc1\x5f\x3a\x98\x7f\xfc\x50\x8c\xff\xae\x03\x0b\x78\xfa\xc8\x19\xdf\xb9\x38\x41\xec\xef\x79\xc0\xf7\x85\xf1\xe0\xf9\xe9\x58\x45\x71\x51\xbf\x8b\x8b\x8a\x3c\x9d\x8c\xa6\x2a\xa0\xa5\x3b\x72\xb3\xa4\x3d\xa0\xf9\x80\xa2\x98\x56\x80\xe7\x44\x81\x83\xa2\x63\x01\xcf\x3a\x8a\x62\xa6\x02\xa9\x4d\x42\xb5\x52\x77\x80\x71\xdf\x28\x4a\x26\x0e\x98\xf6\x88\xa2\xd4\xbd\x80\x25\x2f\x84\x9b\x24\xea\x80\xc5\xd9\x14\x25\x36\x03\x58\x25\x4f\x51\xea\xde\xc0\xee\x0a\xd1\x4c\xc6\x12\xa0\x44\x59\xe4\xa1\x84\x08\x50\xdc\x47\x51\x92\x82\x40\x65\x25\x45\x31\x26\x03\x8d\xb5\xa2\xcb\x19\xc1\xc0\xc5\x2a\xd1\x58\x11\x45\xa0\xd5\x80\xfb\x5e\x92\xaf\x03\xf9\xbf\xfb\xc2\xfc\xcb\x77\xf2\x79\x1e\xae\x0f\x80\x00\xd3\xd1\x9e\xf0\x7d\x33\x3d\x4c\xc8\x7b\x9c\xe0\x60\x07\xc1\x14\x40\x43\x30\x2a\x43\x28\x08\xd0\x75\x49\xfd\x2e\x56\x0d\xb0\x32\xa7\x1d\x95\x4a\x05\x58\xd2\x0b\x37\xc9\x08\x03\xac\xd0\x9c\x5d\x72\xd9\x80\xbe\xc9\xee\xab\xf2\xa9\x80\xfe\xb9\xc3\x52\x8a\x6f\x00\xdd\x3f\xf5\x3f\x15\xcd\x01\x5d\x95\x6b\x56\x0a\x0d\x80\xce\xcf\x27\x47\x15\x02\x00\xdd\xec\x2f\x57\xe5\x6b\x00\x9d\x34\x40\xba\x0a\xd0\xe8\x00\xc4\x75\x07\xf6\x6a\x96\x00\x92\x4b\xbf\x06\x6a\x8e\x03\x24\xef\xbd\x2b\xe4\x64\x84\xd4\x8e\x17\x7a\x5a\xcb\x01\x99\x6d\x8f\xfd\xb5\x4e\x01\xb2\xfa\x77\x95\xb5\x01\xc8\x9b\x76\x25\x68\x87\x00\x72\x9e\x37\x28\xad\x13\x80\x6c\xe6\x95\x4b\x3a\x6e\x80\xfc\xea\xb6\x50\xcd\x74\x40\x9a\x54\xfb\x7f\x74\x20\x3c\xfd\x03\xdf\x07\xe3\x7f\x74\x20\xfc\xf7\xfb\x7c\x1f\x80\x44\xfb\x0a\x32\x0e\x8d\xae\xbf\xc8\x38\x84\x06\x1a\x0a\xba\x02\x5a\x13\xa2\x46\x0b\x97\x02\xfa\xc9\x29\xed\xe2\x6f\x00\xfd\x9a\xa9\x71\x92\xe5\x00\x4b\x7f\xc1\x55\x69\x36\xc0\x7a\x92\xc3\x92\x1b\x06\x58\xd9\xbb\xe3\x15\x9a\x00\x96\xc7\xe1\x64\xa5\x5c\x40\xef\x78\x43\xba\x92\x36\xa0\xb7\xaf\x23\x57\xe9\x19\xa0\x6b\xf3\x94\xa5\x50\x04\xe8\xe5\xfc\xd0\x53\x78\xc0\x1f\x07\x36\xa5\x75\x1a\x90\x62\xfe\xb8\xae\x95\x0f\x48\xeb\x7c\xfc\xa9\x9d\x02\xc8\xf4\xbf\x9e\xad\x53\x00\xc8\xa7\x3c\x9b\xa9\x73\x1a\x90\x7f\xf6\xe0\xa4\x76\x17\x20\xd7\xd3\xfd\x44\xd7\x0e\x50\xe8\xeb\x7c\xad\x6b\x0a\x28\xf4\x5e\x6b\xd5\x5d\x05\x28\x06\xb7\xbf\xd0\x49\x05\xe4\x8f\xb4\xfe\xd1\x9d\x0d\x28\x10\xf5\x16\xdf\x0f\xe4\x7f\xf5\x0f\xfc\x79\xf0\xb7\x0e\x84\x8f\x7c\x5d\x8c\xfa\x3d\x8f\x99\x02\x0b\x00\x2d\xbb\x80\x01\xa1\x73\x80\x76\x5d\xc4\x7a\x11\x2b\x80\xa5\x99\x3c\x49\x42\x0e\x30\xf2\x4f\x7f\x2c\x43\x01\x06\xe3\xe6\x87\xc8\x5c\x05\x0c\x1f\xaf\x1f\x52\x78\x03\x18\xb5\xec\x6e\x1b\x35\x05\x30\xd8\x76\x78\xdd\x28\x4b\x80\xb5\xe5\xec\xb2\x51\xa7\x01\x96\xca\x8d\xe7\x2a\x8a\x80\xfe\xc1\xe7\x8d\xa3\x8c\x01\xfd\xf5\x3f\x8f\x29\x59\xf2\xc7\xe1\xd7\x26\x1d\x09\x40\xa6\xe1\xab\x94\x2e\x05\xc8\x0b\xbc\xdf\xad\x1b\x03\x28\x30\x5f\xbc\xd0\x39\x08\xc8\xe7\x3f\x1e\xaf\xfb\x0c\x50\xac\xb9\xa7\xa5\xe7\x06\x28\x8d\xbd\x7d\x48\x2f\x06\x50\x5a\x7f\x3d\x47\xf7\x25\xa0\xf8\xf0\xca\x0f\x3d\x03\x40\x49\xff\x52\x8b\x9e\x3e\xa0\xc8\xbe\x70\x4e\x4f\x03\x50\x24\xee\x88\xc1\x55\xff\x77\x3e\xf0\xe7\x01\x3f\x7e\xde\x7d\x5f\x1e\xf2\x75\x31\x7c\x7d\x10\x5f\x27\xc5\x3a\x1b\xee\x27\x56\x0b\x18\x48\x27\x4e\x94\x48\x05\x8c\x7f\xa6\x7b\xc9\x6a\x03\x46\x4f\xe7\x5b\xcb\x3d\x04\x4c\x44\xd7\x3b\x29\x7d\x05\x8c\xd7\xee\x16\x53\x31\x02\x8c\x75\x2a\x4d\xd4\x36\x01\x86\x93\x1a\x93\xd5\x12\x00\x03\xe7\xce\x08\xd5\xdb\x00\xcb\xe6\x45\xc8\xa8\x7e\xc0\x20\x6c\xf0\xfa\xa8\x10\x40\xf7\x31\x20\x7b\xef\x67\xaf\xde\x3a\x40\xa1\xe1\x63\x91\x9e\x31\xa0\xa8\xf6\x46\x4d\x7f\x16\xa0\xbc\xe3\xd9\x5e\xfd\x3c\x60\x94\xe1\x83\x6e\x7d\x16\xa0\x5c\xd5\x7d\x4a\x3f\x11\x18\x25\xda\xa9\xa1\xb7\x17\x50\x7a\x7f\xb5\x9d\xd5\x0c\xa8\xf4\xb6\x45\xe9\xd7\x02\xa3\x9c\x5a\x2b\x58\xd5\x80\xca\xec\xa6\xb9\x7a\x55\x80\xd2\x64\xfc\x47\xff\xc0\xcf\x07\xc7\xd4\xbf\xf9\x4e\x3e\xcf\xc3\xf5\x41\x10\x78\x66\x3a\x8e\xf0\x5d\xa7\x2c\xa7\x90\x71\xd8\xe2\x78\x55\x60\x06\xa0\x93\xe5\xf9\x49\xd8\x14\x30\x50\x08\x3e\x2b\x36\x0b\x30\xb9\x1a\x5f\x23\x2d\x08\x98\x8a\x4e\xca\x96\x2d\x02\xcc\x9e\x67\x85\x29\x19\x01\x26\x6f\xd6\x19\x2b\x17\x01\x26\x0a\xbb\x0a\x54\xea\xff\x33\x0e\x1f\xce\x65\x32\x2c\x01\x43\xed\x5b\x49\x0c\x37\xc0\x20\xf3\x55\x3b\x67\x3c\x0c\x8b\xe8\x1c\x95\x93\xc3\xaa\xac\x69\x80\xd2\x81\x6f\x16\xac\x7e\x40\x45\xe4\x5d\x89\x81\x16\xa0\xaa\xd6\x7b\xc7\xd0\x0a\x60\x78\x3c\x9a\x6c\xa8\x09\x30\x42\xee\xbe\x30\x88\x06\xd4\x24\x6e\x25\x18\x96\x00\x8c\xe1\x8e\x20\x23\x55\x40\x3d\xbb\xed\xb1\x61\x2c\xc0\x50\x68\xdd\x66\xa8\xc5\x39\x8f\x34\xfd\x34\xec\x07\x18\x93\xcf\x89\x18\xce\x03\xd4\x48\x97\xc8\xff\x3f\xfd\x83\xd5\x0c\x2e\x9a\x54\x52\xff\xd1\x41\x88\xe6\x1b\xf9\x91\xf8\x73\xac\xe4\x47\xfe\x01\x34\x6e\xdb\x85\x08\x9c\x07\x0c\x34\xdd\xd8\x22\x2f\x00\x13\xab\xc0\x06\x09\x2f\xc0\x74\x20\x36\x4b\x7a\x0c\x60\xd1\x33\xfe\x95\xfc\x27\xc0\xc2\x69\x6e\x83\xb2\x08\x60\x6e\xb4\x26\x53\x65\x17\x60\x76\x63\xb7\x80\x3a\x67\x9c\x94\x8f\x6c\x62\x26\x03\x26\xc9\xe7\x7f\x6b\xfc\x06\x8c\xb2\x6e\xff\x66\x4e\x06\x8c\xfa\xde\x7f\x64\xd6\x02\x46\x0f\x39\x7f\xf7\x2f\x17\xc3\x93\x80\x9a\x45\xdf\x27\x23\x49\x40\x5d\xf9\xe5\x4e\xa3\x23\x00\xb3\xea\x69\x1a\x89\xf3\xc9\xfd\x5d\x46\x6b\x01\x66\xe1\xed\x66\xe3\x32\x40\x33\x84\xaf\x8b\x6b\xdf\x62\x7c\x14\xd0\xa8\x6b\xbd\xc9\x39\x91\x69\xe4\x36\x2d\x36\x9d\x0c\x68\xad\x39\xe7\x65\xac\x09\xa8\xf7\xd4\x35\x19\xab\x01\xea\x64\x37\xf0\xbf\xfa\x87\x7f\x78\x6f\x1e\xef\x6b\x48\xfc\x0f\x46\xfc\xd0\x53\x25\xf9\x50\xcc\x22\xf5\x94\x79\xc5\xb4\x7d\xe4\xdd\x7f\x75\x31\xc6\xdf\x9d\x21\xa6\x05\x98\xa7\xfa\xb6\x4b\xba\xfd\xab\x17\xb3\x46\x9a\xa7\xe2\x1f\xc0\x7a\x5c\x66\x8a\x4a\x3c\x60\x39\x79\xf5\x78\xb5\x1a\xc0\x62\xfe\x2e\x07\xe6\x0b\xc0\x5c\xf2\x88\xb4\x16\x05\x98\x5a\x36\x3d\xd7\x1a\x03\x18\x9f\xb9\xf3\x48\x73\x3b\x60\x22\xf0\x69\xa4\x66\x26\x60\xdc\x08\xa8\xab\x7c\xdb\x60\x1c\x01\x30\x6f\xbc\xa9\x30\xb1\x07\xb4\x22\x9e\x9e\x35\xf1\x07\xb4\x4a\xef\xc3\x74\x3e\xa0\x53\xd7\x75\xdc\x34\x0b\xd0\xc9\xbc\xd1\x61\xea\x0d\x68\x77\x5c\x89\x35\x95\x00\xb4\xe8\x8b\x06\x66\x0d\xf8\xa9\x6b\xdf\x7c\xdf\xe4\x32\xa0\x79\xba\x71\x99\xd9\x15\xb0\x75\x82\xeb\x6c\x4d\x73\x01\xcd\x1b\xa7\x83\x4d\x8a\x01\x0d\x23\x4e\x9c\xde\xcd\xd4\x5f\xba\x30\x0b\x9e\x8e\x92\xcf\xf7\x71\x79\x4f\x91\x5f\x9a\xc4\xd7\x5f\x21\x46\x97\xf4\xc7\xd0\x39\x6d\x24\x24\x68\x0b\x98\x2a\x59\x2e\x15\xd5\x06\x2c\xca\xed\xc5\xc4\x53\x00\xeb\xd5\x5e\x71\x52\x8d\x80\xdd\xa8\x70\x6b\xb9\x5f\x80\xdd\x60\x6a\x9d\x72\x15\x60\x37\x71\x56\x89\xda\x2c\xc0\x66\x43\x76\x0f\xb3\x1e\xb0\x5a\x9a\x7f\x47\x2b\x11\xb0\x88\x38\xb2\x45\xfb\x2d\x60\xf6\xa6\xc5\x5b\x77\x0a\x60\x7a\xfc\xbe\xb9\xae\x16\x60\x5a\xf0\xfd\x97\xf6\xb3\x3f\xe1\xa6\x1f\x01\xed\x53\x1f\xb4\xcc\x55\xf1\x5e\xff\xec\xb3\x57\xe6\xba\x78\xa6\x4f\x3f\xa0\xcc\x57\xe2\x2e\x6b\x45\x57\x83\xf9\x5d\xdc\x66\x35\x5f\xaf\xb7\x88\xc5\x75\x03\xb5\xf6\x23\x16\xe9\xb8\xcd\x3a\xd4\x3a\xc5\xa2\x04\x3d\xac\xe8\xe6\x09\x16\xe2\x78\xa5\xf7\xba\x91\x61\x5e\x8a\x6f\xba\xbb\xce\x38\x5b\x68\xe0\x9b\xee\xb6\x1a\x17\xf3\x3c\xd0\x3a\x8e\xc7\x9b\xcd\x7f\x00\xda\xe4\xcc\xf5\xbf\xfa\x07\x6e\x1e\x50\x94\xf6\x19\x2e\xaa\x07\x72\x50\xb2\x50\xed\x1a\x99\x07\x15\xcc\xd3\x23\xc5\x01\xd6\x1d\x5d\x0b\x41\x33\xc0\x8c\x61\xdc\x23\xe2\x01\x58\xbf\xb2\x9a\x26\x9e\xff\x6f\x7f\x31\xa7\xd2\x10\x45\x45\x0d\xc0\xd9\x3d\xc9\x44\xa5\x13\x70\xdc\x38\xbd\x5b\x7d\x1f\x60\x1f\xb3\x32\x5e\x6b\x0e\x60\x2b\x96\x3f\x5d\xb7\x00\xb0\x9a\x74\xe4\xa5\xbe\x12\x60\x81\x8b\x52\x06\xae\x80\x79\xd6\xa3\x66\xd6\x0e\xc0\xc2\x71\x30\x88\xb5\xfa\x7b\xb2\x45\x03\x6e\x18\x16\xbf\x1c\xb2\xf4\xc3\x31\xe3\xb1\x0f\xb6\x59\x7e\xc6\x3e\x93\x84\x2e\x39\xab\x6c\xe4\x9b\x74\x5f\x7f\x67\xd5\x84\x3d\x26\x95\xed\x12\xd6\x7b\xb0\xd5\x74\x5a\x4b\xa8\xf5\x26\x14\x9b\x44\x9d\x77\xb7\xae\xc7\x41\xe3\xc7\x0d\x4f\xad\xaf\xe3\x98\x71\x54\xed\x5c\xeb\xf3\x68\x34\x92\x3f\x15\x6c\xad\x8d\x1b\x06\x13\xaa\x46\x59\x3b\xe0\x2e\xab\xa0\x32\xcd\x66\x1a\x6e\x1a\x14\xfc\x77\x7d\xe4\xd7\x43\xfd\x01\xea\x3f\xfc\x3f\x45\x29\x93\x7d\x96\x7c\x9b\x32\xf9\x39\xdf\x0f\xc1\x6c\xb9\xc6\x4c\x01\x0d\xc0\x76\x8b\x7e\xbf\x70\x2a\xe0\x3c\xd3\x6c\x8b\xb8\x19\xe0\xba\xcb\xb1\x89\x73\xca\x75\xf7\xf4\xeb\x50\x3a\x0c\xb8\xe7\xc4\x19\x33\x44\x00\xd7\x8c\x29\x15\x9a\x13\x00\xa7\xe9\xcb\xc5\x74\x63\x01\xfb\xa3\x79\x0b\x59\xdf\x00\x9b\xa1\xa3\xf5\x46\xc9\x80\xb5\xc0\xe5\x75\x26\x41\x80\xe5\xa5\xe7\x0f\x4d\xa6\xb3\xaf\x5b\x1d\xa4\x4b\x4c\x9e\xbc\x5f\x64\xb3\x14\x81\x56\xb5\x8f\x3c\x6c\x5e\xc0\xd7\xea\xee\x6d\x6b\x3b\x33\x58\xda\xa4\x76\x18\xda\xa5\xc2\xd5\xfa\x4c\x9b\x9b\xdd\x09\xf8\x58\xa7\x5e\x38\x63\xef\x86\x00\x6b\x37\xbe\xfe\xe7\xcc\x09\x07\x3b\xc4\x59\xe5\x54\x3b\xd8\x17\x62\xbe\x85\x55\x55\xaf\xbd\x18\x76\x98\x09\x55\x3e\xb6\x6f\xc7\x4e\x33\xbd\x0a\x61\xfb\x31\x38\x64\x52\x56\x36\xdd\x5e\x1c\x75\x9c\x1a\xf1\xef\xfe\xc0\x8c\xd7\x1f\x47\x53\x90\x8b\x8a\xdd\x1c\x94\x5a\x23\xc7\xa4\xfe\xe3\x03\x60\xf4\x9d\xeb\x07\x61\x6d\x21\x4f\x7c\x22\xdc\x55\x35\x5b\x04\x5b\x00\xef\x91\x46\x1d\x62\x85\x80\xdf\x76\x5b\x31\x99\xd9\x80\xef\x53\x4f\x7f\xe5\xf3\x80\x4f\x57\x94\x1a\x73\x1f\xe0\x99\x31\xf1\xa4\x76\x3f\xe0\xb6\x78\xc9\x04\x4e\x4d\x77\xfa\xb9\x53\xca\xc4\xfe\xcf\x7a\x87\xa3\x95\x6f\x2c\xbe\xfd\x6c\xb1\x97\x6b\xc9\xb6\xb9\xff\x75\x85\x9d\xe0\xc3\x31\xf6\xf2\x1f\x07\xec\x5c\x07\x0e\x38\x68\x3d\x93\xb7\x7f\x4c\x77\x3a\xa5\x74\x69\x3b\x4e\xa5\x1b\x9d\x07\xae\x84\x38\x31\xe9\x9b\xce\x6e\xad\x2b\x9d\x15\xe9\x6b\xce\x97\xcf\xbb\x3a\x15\xd2\x03\x8e\x26\xf5\x0d\xce\x13\xe9\x01\xc7\x49\x7c\xff\x9f\x13\x2d\xce\x4d\xd0\xb0\x1f\x75\xa4\xc7\x39\x18\xbe\x36\xdb\x2b\xf4\x9d\x53\x10\x6b\x3d\xab\xec\xa9\xd3\x76\x64\x59\x7c\x2f\x99\xed\xd4\x8b\x15\x16\xe1\x45\xe5\x4e\xae\xd8\x6d\x16\xf3\xdf\x79\xc0\xcf\x03\x2e\xef\x2b\x30\x42\x9a\xec\x9b\x65\x6b\x45\xf2\x39\xa8\xcf\x14\x22\xfe\x72\x7c\x3f\x04\x17\x29\xf1\x46\x0e\x06\xdc\x54\x3b\x31\x72\x23\x10\x7a\x48\xfb\x93\x88\x04\x10\xc1\x30\x6b\x95\x3a\x07\x84\x25\x38\x8b\x28\x89\x00\x41\x8b\x43\x0a\x39\xa7\x26\xff\xe0\x71\xf2\x2c\xc6\xa0\xa0\xcf\xb8\xac\xc7\x66\x95\x5f\x73\x3d\xdb\x36\x3d\xb1\xdd\xfc\xfe\xa1\xbb\x65\xe9\x71\xa7\xe7\xaf\xf6\xb9\x7c\x3e\x3b\xd3\xad\xe5\x39\xe5\xbc\xac\xeb\x87\x67\xf6\x93\x11\x4e\x7f\x3e\x53\x5e\x6f\xef\x68\xb8\xc4\xd2\x56\xde\xd7\xda\x2d\x5c\xef\xd2\x9e\xde\x27\x9a\x2e\xba\x5d\xa5\xe3\xbc\xbe\xd4\x5f\x76\xab\xa0\x37\x78\x24\xd6\x2c\x74\x3f\x4b\x6f\xf2\xc8\x3b\x21\xec\xbe\x93\xae\x76\x9b\x75\x64\xac\xfb\x39\xba\xd3\xe5\x4e\xb9\xaa\x87\x31\xfd\xc2\xf9\x49\x99\x99\xfb\x4b\x9a\x76\x52\x2d\xae\x77\xbf\x0f\xa6\x83\xfe\xbe\x2d\x1e\xa2\x60\xd9\xe7\x16\x14\x78\x8c\x80\x93\x9d\x4f\xfe\x05\xf7\x35\x48\xb6\xbe\x4f\xd6\x83\x8b\xdc\xf8\x19\x47\xb8\x28\x4b\xf6\x09\xe2\xab\x04\x48\x7d\xd4\x51\x1a\x41\x74\x32\x16\xe4\x7e\x2a\xe0\xf8\x96\x8b\xbe\xd4\x88\x2c\x0e\x46\xbd\x17\x23\x7d\x22\xe2\xc1\xf0\x11\xe8\x02\x92\xac\xf4\x19\xe2\xd1\x40\x42\xa2\xad\xb7\xc2\x3d\x78\xc6\x74\xfb\xfe\xd6\xfc\xf5\xbd\x20\xfc\x47\xfc\x03\xb3\x8c\x77\x5f\x43\x47\xcc\x9c\x68\x2f\xf3\xdc\x2b\x90\xbd\xfa\xb0\xdb\x84\x07\x63\xfd\xbe\x14\xde\xf2\xd1\xee\x3e\xea\x33\xa9\x3a\x29\x60\x7b\xa7\xb5\x57\x42\xc7\xc8\xe0\x2d\x1d\x3b\x3d\x9d\x5e\xa7\x85\xfa\xb4\x75\x78\xbe\x65\xcf\x0f\x65\x37\xca\x78\xc7\xb1\x8f\x84\x44\xd7\xf4\x7a\x0f\xb2\x1f\x05\x25\x1d\x5b\xe8\xeb\xc5\xee\x0f\xcc\x3e\xfc\xd9\xd7\x90\xd6\xf2\x9f\x79\x68\x9a\xaf\x0d\xed\xe3\x7b\xa2\x64\xb9\x6f\x22\x3d\xdb\x7b\xda\xbe\x78\xdf\x4b\xf4\x46\x2f\x85\x82\x0a\xdf\x08\xfa\x94\x7b\x47\x7e\xbd\xaf\x26\x7d\xdf\x35\x63\x67\x80\xcf\x1c\x9a\xed\x2c\xb4\xdd\xd1\x27\x10\xb2\x8e\x0d\xb9\x73\x7d\x94\x61\xe4\x40\xde\x9e\x68\xf3\xea\xa4\x42\x36\xc1\x72\x01\x77\x0e\xaa\x8d\xe4\xc6\xcb\xbf\xff\xcd\xf7\x83\xe0\xfb\x21\x44\xe7\x70\x31\xe9\x1b\x17\x27\x66\x4b\x92\xf3\x56\x7a\x8b\xfa\x5b\x61\x63\x5a\x65\xb2\x8b\xe9\x4e\xb9\x8d\x5f\x1e\xa7\x75\xb9\x3b\x68\x0b\xbd\x0c\x49\x5e\x1c\x71\xdc\xca\xed\xfe\xa2\x38\xcf\x09\xc5\x6e\x79\x9d\xd5\xd1\x6d\x8b\x27\xf8\xcd\x6f\x7f\x1e\xb1\x61\xfb\xb5\x90\x8f\x2d\xf5\xa1\xcb\x2b\xeb\x22\x4f\x9c\xbb\x1c\x34\xdc\x9a\x39\x5a\xb0\x41\x29\xd0\xf9\x71\x54\xec\xf7\x33\x53\x02\x8e\x0f\xc6\xc6\x6d\xa9\xda\x12\xd8\x3f\x8c\xd1\x21\x87\x2c\x83\xd5\xd8\x7e\x51\xa7\x4a\x52\x83\x4d\xd9\x1b\xc3\xcf\xef\xd3\x0e\xbe\xc7\xae\x0c\x5b\xb8\xc7\x28\xf8\x0d\xfb\x49\x88\x68\xfe\x9a\xe0\x1f\x6c\x3a\x28\x63\xbb\x67\x70\x05\xed\xee\x6f\xb0\x35\x3e\x38\x80\x1e\xe7\xeb\xb5\xa9\x30\x68\x80\xde\xe1\x95\x9e\x53\x1d\xf4\x8a\x3e\xe5\xb1\x29\x67\x4c\xe0\x30\x7d\xc3\xad\x7d\x6d\x70\xa0\x1d\x3d\xe4\x7c\xee\xdf\x3c\xa0\x28\x01\x82\x32\xbc\x3e\x07\x2c\x1e\xbf\xc9\xe7\x7f\xf9\xf1\x8f\xb6\xa5\xfe\xe2\x41\xa7\x85\x73\x31\x33\x9c\xca\xa6\x28\x7a\xe9\xc2\x65\x8a\x59\x14\xf5\xc5\x32\x6b\x92\x7e\x87\xac\x41\xef\x9e\x8c\x67\x0e\x4b\xb4\xcc\xef\x0c\x4c\xfb\x12\xf8\xdd\xf2\xed\x95\xd2\x09\x93\x92\x4a\xbc\x66\x37\xcd\x4a\x65\x65\x4c\x0d\x4d\x3c\x7d\x2b\xa9\x2c\x47\x3f\x26\xe0\x84\x40\x3c\xab\xe4\x64\x42\x46\xa5\xdc\xe8\x05\x0d\x9b\xc6\xb8\x1e\x7c\x1c\x1d\xda\xed\x99\xba\xe9\x40\x47\x94\xea\x17\x91\xb1\x59\x7b\x6b\xa2\x86\x87\x5d\x52\xf6\xe4\x97\x44\x47\x0c\x57\x26\x2e\xd9\xd6\x13\xdd\x31\xfc\x25\xae\x25\x37\x2e\xba\x91\xad\x3d\xfa\xe0\xc6\x8e\xe8\x6c\xf6\xb4\xa8\x29\x1b\x94\xa2\xe6\xb0\xab\xc3\x7e\xad\xdb\x1b\xd5\xce\xee\x08\xbd\xba\x2a\x2c\xaa\x8a\x96\x0a\xca\x58\xf1\x3a\x6a\x2c\xed\x10\x60\xb0\x7c\x72\xa4\x14\x3d\xc7\xe7\xf2\x92\x49\x91\x93\xe8\x4d\xde\x31\x8b\x62\x23\x14\xe9\x8b\xee\xe4\x6d\x92\x14\xf1\x07\x1a\xf1\x9a\x1b\x8f\x0e\x8f\xd7\xb1\xe5\xe9\x80\xfc\x2f\xf3\xe2\xe7\xe9\x40\xf8\xf7\xa0\x67\xf3\x7c\x40\xb8\x7a\x80\xc1\xfe\x95\x0e\x1c\xfc\xdc\xb8\x36\x4f\x82\x4d\x51\xbd\x39\x6b\x4e\x68\x3a\x49\xde\xb9\x33\x79\xe5\x32\xcb\x12\xe6\xfc\xf6\x2d\x4b\x98\xde\x46\xe6\x85\x67\x97\xce\x53\x8a\xf9\xe5\x71\xa4\x4a\x60\x86\xf6\xe4\x63\x91\x76\xa5\x1d\xe9\xeb\x96\xd1\x89\x54\xe1\xcd\x09\x3f\x77\x53\xa9\xb5\x79\x76\xe3\xde\x9e\xb4\x1b\x7f\x72\xab\x5f\xea\x8c\x6b\x41\x93\xe2\x37\x3d\x18\x73\xf7\xb5\xd8\xe4\x13\x39\xfe\x63\xf6\x0f\xad\x98\x94\xb1\xfa\xed\x98\xfd\x43\xbf\xd3\x1c\x56\x9a\x8e\x49\x18\x9e\x9c\x22\xb3\x7c\x64\x72\xd3\x70\x5d\x62\xdb\xd2\xb5\xc9\xfe\xc3\x9f\xe3\xe7\x2f\x3a\x94\xf4\x8a\xed\x3c\x5a\x67\xfe\xe6\xa4\x3b\xec\x05\x51\x11\x0b\xcc\x12\x97\xb0\xf7\x47\x44\xce\xcb\x4c\x38\xc5\x7e\x1f\xb2\x77\x4e\x44\xdc\x35\xda\xd7\xbf\x28\x73\x47\x5c\x31\x1d\xe3\xd7\x3a\x5b\x2b\x6e\x12\xbd\xd0\x87\xdc\xc2\x1a\x51\xc3\x89\x47\x89\x17\x3f\x9f\xff\xf6\xe6\x7d\x8e\x0f\xe6\xcd\x7b\x9e\x3e\x86\xcf\x03\x2f\x27\xf7\xb9\x7e\xd5\xe4\x90\x7b\x8e\x7d\xd1\x5b\xc8\xbc\x79\x2e\xb7\xc3\x7c\xa4\x3d\x45\xdd\x79\x95\xc7\x50\x8d\x17\xee\x6e\x3f\xbc\x4d\xd2\xe8\x80\x0a\xfb\x6c\xec\x26\x37\x97\x3c\xe3\x3d\xc7\x8a\xd7\x3a\x86\xe5\xb8\x0a\x16\xcf\x58\xae\x39\x4e\x24\x74\xcb\xd6\x8a\xf9\x3e\x73\x7b\x93\x5f\xae\x1d\x98\x33\x69\x8b\xe6\xf8\x4d\xcb\xe7\xcd\x1e\x53\x7e\x3e\x5d\x6c\x61\xf2\x8c\xe1\x0b\x43\xd3\x98\xf3\x8c\xa6\xcb\x3d\x2a\x9a\x3e\x3f\x33\x71\x5a\xe2\xef\x6f\xd3\x8f\xcd\x4e\x9d\xea\x36\x94\x98\xae\x3a\xe3\xc7\x94\xbc\xa1\xeb\x13\x04\x66\x18\xa5\x8b\x0c\xdb\x8f\x1d\x31\xdd\x60\xb2\xe2\xf0\xca\x31\xb2\xd3\xe4\x27\x2e\x1c\x7e\x15\xff\x98\xaf\xf7\x98\x12\x98\x76\x9e\xbd\x30\x4a\x7d\xca\x88\x71\x1b\xd9\x87\xc3\x9b\x26\x9e\x1f\x17\xc7\x7e\x1b\x32\x6f\xe2\xcb\xb1\x8a\xb4\x44\xd0\xca\x09\x87\x52\x13\x69\x9b\x00\x4f\x40\x2c\x96\xfa\x3f\x75\x20\xa3\x8f\xfe\x1d\x7f\x56\x0d\x17\x57\x91\xf1\x19\xb0\xd9\x4c\xee\xf9\xbd\xef\xe4\xf2\x81\x4f\xc3\x0a\x9a\x38\xd8\x35\xa1\x88\xdc\x87\xbd\x3a\xb2\xd4\x52\x61\x34\x45\x35\x6e\x2c\x3e\xa4\xf3\x5d\x61\x7c\xd5\xe7\xc2\x9b\xb6\x77\xf4\xee\xed\xdf\x95\xff\x3a\x40\xc0\xde\x75\xdb\xcc\xad\x17\x93\xa4\x02\x5c\x56\xee\xd8\x60\x35\x4b\x3f\xee\xfd\xbc\x3d\x6b\x25\xd6\x79\x8e\xdd\x39\xf3\xf0\xaa\x81\x12\xf6\x04\xd9\x29\x41\xd9\x4a\xe7\xc4\x27\xb9\x4d\x5c\xb2\xa2\xf8\x9e\xff\x64\xb5\xf1\x1a\x2b\x34\x7e\x3c\x9f\x74\x30\x4d\x67\x69\xff\xd0\x8f\xb4\xd6\x71\x55\x8b\x86\x86\xe3\x52\x30\x4e\x6b\xc1\x9e\xe1\xc3\x49\x55\xe3\xa6\x65\x85\x0e\xdf\x48\xd4\x1f\xbb\x61\x8e\x34\xdb\x6e\xf4\xa6\x54\x64\x54\xb2\x27\x45\x47\xa5\x16\xce\x52\x66\x1f\x88\x48\x4b\xbd\x31\x43\x94\x7d\x2e\x6c\x30\xe5\xea\xd4\x3b\x34\x15\x9c\x3e\x26\x73\x2a\x8b\xb6\x0e\x38\x38\xc6\x7e\x72\x15\x9d\xe8\x17\xfd\x6f\x1e\x38\x0e\x70\x31\xd2\xe3\xef\xf9\x9f\xc5\xab\x8f\xeb\x54\x38\xd8\x6f\xb1\x8d\xab\x7f\x99\xb7\xe7\x2e\x45\xf8\xef\xfd\xe4\xfd\xda\xed\xd6\x83\xa4\x60\xb4\x59\x55\x2e\xe6\x60\x63\x78\x55\x82\x48\x18\x45\x9d\xb8\x72\xec\x9a\x7a\xbc\xe4\xc4\x52\x8b\xca\x75\x66\x60\xfe\xda\x59\x7c\x28\xc7\xb3\xd6\xc2\x6b\x75\x53\xc9\xf1\x98\x1f\x1e\xfd\x73\xa9\xbd\x4b\xa6\xf8\x47\xe4\x4e\x99\xba\xe7\xe0\xaa\x31\x71\x67\xd3\x12\x77\x7d\x2e\x5a\x95\xa4\x92\xdc\x97\x9f\x56\x5f\x3b\xc6\x2c\x61\x54\x9e\xc0\x9d\x95\x29\x62\xb1\x37\x76\x16\x7e\xf5\x1b\xb3\x28\x56\x69\xdb\xa7\xe1\x8b\x89\xf2\xb1\x4b\x36\x81\x2d\x11\xa7\x13\xbb\x70\xc3\x6c\xb6\xd3\x68\x56\xec\x87\x75\x12\xec\xb1\xd1\x0b\xe2\x04\x57\x25\xb3\x77\x47\x3c\x8d\x63\xac\x90\x62\xb7\x85\x6d\x89\x73\x59\x92\xc1\xfe\x15\xa2\x14\x2b\xbd\xb8\x9e\x36\x08\x9c\x1f\xbb\x75\x81\x16\xed\xef\xdf\x32\xfa\xc6\xbc\x46\x7a\xa1\x4f\xc7\xe8\xbe\xb9\x69\xf4\x5a\x1f\x49\xc0\x92\xe7\xf7\x10\xfc\xf4\xef\xfa\xc7\xef\x07\xc1\xed\x87\x30\xb0\x7f\xa7\x27\xf7\xf9\x17\x69\x70\xe3\x2f\x23\xdf\xbb\x2d\x59\x49\x7c\xf1\xdb\x18\x27\xc8\x7d\xd8\xb3\x8b\x6a\xb6\x71\xf0\x78\x4c\x3d\xe1\x35\xcb\xd3\x1b\xb7\xab\x8c\xa7\xa8\x5d\xb7\xeb\x2e\x18\xe8\x28\xe7\xe6\x28\xd5\xae\x70\x5e\x6f\xb0\x73\x41\xc7\xc9\xb7\xe1\xa6\x0e\x97\x27\x3f\x39\xb6\x76\xfc\xf7\x00\x87\x94\x23\x47\x6a\x96\xa7\x84\x96\xc7\x1d\xac\x1c\x5d\x40\x47\x0c\x47\x59\x1f\x76\x3d\xbd\x32\x6a\x28\x6c\x7b\x85\xd0\xad\xf3\xd1\x8f\x42\x66\x97\xaf\xf8\xb4\x2b\x7a\x56\x48\x48\xd9\x44\xf6\xfc\x48\xcb\x50\x99\xe2\x24\xf6\x9e\xf0\x9b\xa1\x01\x85\xc6\xec\xb6\xd0\xd3\xa1\xab\xf2\xaf\xb0\xfb\x83\x97\x87\x7c\xdf\x11\x4c\xdb\x04\xf8\x87\xfc\xc8\x6d\xa5\x93\xfc\xcc\x42\xcf\x6f\x3c\x48\xcf\xf2\x35\x08\x2d\xcc\xb1\xa6\x37\x79\xcf\x09\x7b\xb1\x46\x8c\xde\xee\x6d\x14\xa6\x92\x9d\x4c\xb7\x78\xd8\x85\x2e\x59\x5e\x4b\xbf\x73\xad\x04\x7c\xbf\x72\xe3\xe5\xfb\x02\xf1\xf3\x9f\x1b\xff\xef\xe7\xf9\x84\xef\x7b\x3f\x67\x7f\x35\x37\xfe\x8a\x2f\x24\xfe\xce\x63\xe4\x3e\x7c\xdb\xa7\x5a\xc2\x03\x37\x8a\xd7\x6f\xe0\xe0\xc9\xa6\x26\xa2\x07\x28\xdb\xc1\xf5\x49\xd9\xb3\xb9\xcd\x50\xfc\x3d\x45\x6d\x7a\x78\x59\x48\xf3\xb0\x74\xf0\xd2\xb7\xad\x97\x6d\xf2\x34\x7a\x66\x7c\xbd\x20\x19\xf0\xc3\x7c\xfd\x98\xea\x73\xf9\x29\x9f\xdc\xa6\xc5\x7c\x6a\x7c\xb2\xa8\xc7\xab\x38\xcc\xf0\x6c\xcb\x2e\x3b\x3f\xe3\x80\xd7\x0d\xd7\xaa\x1d\x03\x4c\x7d\xfd\xeb\xbf\xde\x1c\x11\xf0\xd2\x7b\x5c\xbd\xcf\x87\xc9\x01\x13\xbc\x06\xce\x28\xd3\xae\xbe\x5f\xf9\xfd\x3b\x7c\xc4\x8f\xcc\xa3\xe7\x7b\xbb\xfb\x2a\x1e\x3a\x45\x2f\xf1\x36\xf3\x4d\x3d\x60\x4e\x17\x78\x96\xfa\xdc\x29\xd2\xa1\xaf\xb9\x35\xf8\x8e\x2a\x28\xa0\x9f\xba\x6e\xf6\x7d\x96\x7f\x90\x7e\xeb\x2a\xeb\xe7\xbc\x43\x89\x1e\x74\x1e\xf0\x13\xcc\xed\x82\xb2\x93\x98\xdf\x93\x4d\x6a\x60\x3a\x1e\x00\xe2\x1d\x79\xf5\x9f\x37\x2f\xd6\x90\xfc\x18\x6c\xdd\x45\x9e\xeb\xc7\x43\x07\x88\xef\xcd\x93\xce\x4a\x32\x4e\xdd\x92\xd5\x44\xe7\x70\x45\xb1\x81\xe8\x49\xcf\xed\x3f\x4f\xe6\x43\xf5\xca\xd6\x27\x1c\xac\x90\xbb\x12\xc3\xc1\x42\xad\x0e\xc2\xff\x6f\x2a\xbc\x45\xea\x46\xf6\x93\x2e\x4a\x55\x50\xf0\xea\x9c\xd0\x5b\x3e\xa6\x4a\xca\xf2\xe3\xcb\x6e\xc6\x78\xad\xd0\x1f\x15\x33\xf3\x7a\x4c\x42\xb8\xb5\x4a\xc8\xac\x8e\xbc\x2c\x61\xfb\x0b\xbe\x67\x3a\x02\xb7\x5f\x72\xfa\xe8\x91\x7b\x6d\x62\x55\x9f\xcb\x0e\x57\xe5\xab\x6f\xae\xb5\xbb\xa6\x38\xa7\x5c\x5d\xf5\xf6\xb1\xcb\x7d\xe7\x90\xf6\x0d\xf4\x7b\xa7\x5b\xce\xbd\x17\x1e\xd2\x3f\x9c\x52\x9d\xaf\x34\x26\x43\xd6\xa1\xd2\x75\xd5\x69\x25\x9a\xed\x64\xe5\xb2\xe3\xe4\x21\x98\xd9\x0d\xb9\xae\x3d\x7a\x00\x16\xf6\x2a\xae\xfd\x15\x96\x70\xb1\x1b\xe3\x5e\x56\xea\x0f\x73\xfb\x75\xee\x81\xc5\xe9\x08\xb1\x9d\xe7\x36\x75\xaf\x15\x66\x59\xdd\x71\x73\xda\xe3\x89\x15\x96\x59\xff\xfa\xa1\x64\x13\xdd\x30\xad\xc5\xd5\x81\x7c\x36\x2d\x25\xe3\xf0\xec\xc9\x51\x92\x2f\xdd\x7d\x35\x64\xdd\xbc\x76\xfb\x1c\xb7\x0f\xd0\x8d\x16\xd2\x57\xa9\x06\xed\x84\xdf\xaf\xec\xbc\x4e\x78\xef\xe2\x30\x6e\xdc\xdb\xbe\xf6\x90\x7d\xc6\x2a\xcb\x87\xc4\x2f\x20\xcb\xec\xc9\x80\xd4\x58\x8a\x4a\x6f\x7e\x12\xaa\xfb\x56\x2a\x3f\xe1\xc7\xe3\x68\xe7\x68\xc6\xa9\xe0\x37\x8f\x74\xa2\xe3\x0c\x12\x7c\x74\x1e\x31\x67\xe7\x9a\x4c\x77\xad\x7f\xc4\xda\xa2\x62\x1e\xe5\x28\xfc\x70\x7a\xe5\x23\x4b\x55\xdb\xb6\x87\xf6\x6d\x9f\x2c\x2b\x6d\xec\x1e\x7c\x7d\x25\x66\xf1\xc7\x66\xea\xfd\x2f\xd8\x6a\x36\x68\xe3\x7a\xfb\x3a\x0a\xcd\x84\x6c\x76\x76\x64\xa2\xd0\xf4\xb3\x6d\xc7\x65\x2d\x6c\x34\xf7\xb3\xf5\x69\xf6\x41\x99\xa9\x9f\x9d\x5e\xc3\x3b\x14\x9b\x5e\xb1\xab\xa9\xbd\x8e\x03\xa6\xa5\xf6\x91\x27\xea\x71\xd0\x74\xa1\xfd\xf2\xa3\x21\x38\x6e\x52\x6e\x5f\x51\x71\x04\x75\xc6\xbf\x1c\xdc\x0f\x4e\x44\x9d\xc9\x48\xfe\xfa\x07\x70\x9f\xff\x97\xdc\x32\xb2\x6f\x7e\xa1\x5d\x65\x4e\x11\xfd\xc3\x19\x52\x47\x3b\xc2\x9b\x08\xff\x7f\xc1\xfa\x12\x19\xaf\xd3\x2b\xae\x12\x9e\xfc\x68\xf8\x4d\x32\x0f\x0e\x64\xf4\x90\x79\xb3\xcb\x92\xeb\x17\xb1\x61\x1f\xd7\x27\x65\x31\xe3\x15\xe1\xc3\xd3\xd9\xef\xc9\x7c\x4b\xf9\xdc\x67\xa6\xb6\x59\x70\x45\xc4\xd8\x0f\xbd\x56\x7b\xe4\xed\xbd\xd3\x3e\x4c\x0b\x91\x51\x3f\xec\x22\xfd\xe1\xc2\x94\x71\x9a\xfd\x76\xc6\x7d\x41\xeb\x95\x74\x8e\x5b\x56\xf7\xb9\x1d\xfc\xad\xc7\x34\xbb\xda\xb7\xa3\x75\x87\xde\x7c\xd3\x39\x7d\x61\xcf\x2d\x74\xab\x4c\x3f\xf7\xed\x05\xb4\x3d\x4c\x4f\xbf\x18\x0b\x68\xa7\xf2\x75\x0e\x66\x3b\xef\x54\x03\x3a\xf7\xcd\x16\xdd\xe8\x06\x74\xe2\xcc\xe6\x5f\x59\x02\x68\x7f\x31\x2f\x6b\x8d\x03\x74\x1d\x2d\xa6\x36\xa9\xe1\x8f\xee\x57\x8b\xab\x0d\xb2\x18\xd2\xbd\x65\x19\x59\x2b\x86\x21\xdd\x6e\xcb\xaa\x93\x02\x60\xeb\x1e\xe1\xeb\x60\x7e\xa0\x8c\xcc\x83\x57\xfe\x55\xd1\x1c\xbc\xd7\x5d\xd7\xcd\xc1\xeb\x9b\x9b\x49\xdc\x2d\xdf\xdb\x48\x1c\xf5\x3f\xb9\xfd\x72\x8e\xe7\x77\x93\x38\xcb\xfa\xee\x93\x38\x0b\x36\x3d\x21\x79\x93\x7b\xfc\x25\xd1\x91\x65\x9f\x7a\x4b\x74\x56\x73\x8a\x3e\x91\xfc\x49\x13\xfb\x49\xf4\x74\x51\xcc\xc1\x2b\x12\xe6\x14\xe5\xf7\xed\xcf\x02\x03\x11\xb1\x78\xa7\xc3\x43\xde\x5e\x1f\xe4\x83\x6d\xbc\x87\x9b\xc7\x8d\x56\x32\x34\x17\x60\xdf\x59\xb1\x6f\x54\x98\xd1\x7b\x3a\xaf\xd8\x59\xc5\xc6\x20\x0a\x56\xe7\x36\xa9\x38\xb1\x82\x41\x3f\x8a\x1a\x15\xcf\xba\x0d\x0c\xfd\x51\x7c\xc8\x4a\x19\x48\x03\x94\x24\xf5\x0f\x7f\x2a\x04\x94\x64\xf4\xfb\x5f\x6b\x02\xca\x9e\xfa\x5f\x9f\xf4\x02\xca\xfb\x59\xb7\xee\xb6\x01\x2a\xea\x06\xb3\x6f\x1d\x02\x54\x85\x0c\x6e\x5d\xbb\x04\xa8\x66\x1a\x96\xb7\x8d\x01\xd4\xe6\x19\x55\xb6\x1c\x00\x18\x45\x46\xe3\xcf\x7d\x01\xd4\x1e\xf4\xf7\x94\x12\x1f\xbd\xb7\xa6\xc7\x35\x39\xf8\x70\x73\x3d\xd1\x53\xde\x34\x6d\x21\x3a\x97\x4b\x93\xaf\x12\xfd\xd7\xd9\xc6\x4e\x12\xd7\xc9\x85\x3d\x84\xf7\xaa\x28\x7e\x4c\xf6\x1b\x45\xfb\x7a\xc9\x3c\xda\xf1\xe9\x0d\xc9\xaf\x9c\x99\x1f\x49\x9d\x5d\x52\xfe\x7d\x3d\x07\xa7\x0f\xff\x22\xfb\x90\xe4\xfd\xdc\x3e\x2a\x7c\x9e\xcf\x4d\x13\xd0\x9c\x28\xb8\xc6\xfa\x38\xe0\xf4\x4c\x32\xc0\xcc\x00\x88\xbf\x21\x7d\xda\xe8\x12\x30\xcf\x47\x4e\x83\xd5\x0a\x6c\x1b\x94\x3f\xa2\xcb\x06\x8e\xdc\x94\x5f\xa8\xb3\x0e\xb8\xe4\x29\x2f\xa5\x23\x0c\x3c\xaa\x95\x33\xd2\x49\x03\xbe\x1f\x90\xe9\xd0\xde\x48\xfa\x57\x1c\xd3\xd8\xff\xbb\x00\x10\x57\xd3\x18\xfa\x9c\x01\x48\x9c\xd0\xcc\x7b\xb3\x1b\x90\x32\xd1\x0c\x7b\x56\x02\x48\xf9\x68\x3d\xbf\xdf\x0e\xc8\xd4\x6b\x0d\x74\x3b\x03\x32\xd0\xaa\xbb\x79\x16\x90\x69\xd2\x3e\x7a\x35\x11\x90\x1b\xf9\xe1\xd9\xf1\x65\xd4\x7f\x75\x70\x72\xad\x24\x0f\xda\xfd\xb9\xbe\x40\x8d\xe6\xb7\xc9\xf3\xad\x69\xba\xbf\x86\x83\x47\x26\x3c\x23\x71\x96\x2c\x7f\x45\xe6\xc9\xee\xa7\x1f\x6a\xb8\xf3\xe0\x5b\x26\x77\x1e\xf4\x93\xf9\x35\xdf\x92\x2e\xa2\xfe\x73\xff\x3f\x86\xc7\xef\xf1\xef\xfd\xdb\x2b\x03\xea\xd6\x23\x0f\x9b\x1d\x01\x6c\x4b\xc4\x7c\x0c\x17\x01\x11\x2c\xf1\x32\xd6\x51\x60\xda\x22\xa9\x40\x9d\x9d\xc0\xea\x1b\x52\x7a\xda\x87\x81\x7d\x42\xd2\x25\x5a\xbb\x80\xea\x3d\xd2\x83\x9a\x09\x40\x9b\x9e\xd4\x6f\xcd\x60\xe0\xfe\x1a\xa9\xdd\x9a\x7a\xc0\xbb\xd5\x92\xd3\xb5\xf4\x01\xd0\x12\x52\x8c\x39\x9c\x71\x11\xac\x93\x1e\xc1\x1e\x45\xce\x0c\x51\x3f\x48\xc7\x06\xf1\x91\x7d\x84\xa9\x65\x6c\xee\xbd\x00\x88\xb4\x4a\x1f\x78\x4a\x9c\x1c\x18\xa9\x77\x9b\x01\x51\xd1\x67\xef\x1b\x1e\x73\xfe\xae\x9e\x11\x97\x49\xbf\xbc\xf6\xaa\x8e\x36\x0e\x9e\xef\xe4\xea\x01\x4e\xa7\x3d\x22\xeb\xe7\x71\xe6\x4b\xb2\x0e\x96\xbd\x7d\x47\xea\xe3\x5e\xad\x2f\x24\xee\xed\x1a\xfd\x44\x0f\x97\xd3\xce\x26\x7d\xa7\xf8\xfc\xf7\x4c\xde\xfd\x7f\xbe\x1e\x88\xef\x7f\x60\xaf\xc6\x45\xa3\x40\x40\xd6\x84\xa2\x0c\xca\x01\xf3\x52\xe1\x20\xdd\xaf\x80\xff\x5d\x91\x64\x3e\xcf\xad\xed\x0f\x2c\x3a\x2f\x3e\xa4\xd9\x0d\x6c\x1d\x25\x51\xa9\x19\x02\x1c\x54\x90\x2c\x57\x7f\x05\xd4\xfc\x14\xcf\x62\xaa\x02\xad\xcf\xc5\x87\xd4\xf7\x02\xb7\x14\xc5\x59\xea\x6e\xc0\x73\x13\xd1\xcf\xea\xbb\x80\xef\x43\x22\x3f\xf8\x3a\x07\x91\x3a\x9e\xce\x81\xa2\x79\x1d\x8d\xfa\x9f\x72\xf1\x33\x97\xb9\x3d\xf7\xf6\x12\x07\xef\x29\x5c\xf6\xe0\xd6\xc1\x1b\xa4\x2e\xb6\x5a\xde\x25\xf3\x81\xaf\x03\xe3\xeb\xa0\x2a\x8a\xb9\x3a\xa8\x62\xf6\x0f\x72\xae\xda\x7d\xe0\x0f\xd1\xa5\xf3\x7d\x00\x56\xf6\x70\x71\xae\xd2\xdf\xfc\x7f\xec\x8a\xbf\x79\x6f\x8b\xd3\x5c\xd4\xf9\x05\x88\x0d\x52\x94\x4e\x3c\x60\x98\x2e\x28\xa8\x71\x1c\xf0\x14\x13\x8c\xd7\xec\x01\x12\xde\x0b\x3f\x61\x2e\x05\x66\xca\x0b\x77\x33\x33\x81\x55\x47\x44\xd3\xd4\x67\x01\x79\xbd\xa2\xcb\x18\xce\xc0\xc1\x91\x22\xe5\x6a\xbd\xc0\xa9\x40\x91\x6c\xb5\xe7\xc0\xf9\x39\x22\xe5\x0c\x65\xa0\xe3\xb2\xc8\x4b\x86\x31\xf0\x50\x40\x64\x03\xe3\x2c\xf0\xc1\x51\x24\x83\xe1\x01\x0c\x67\x09\xbe\xe6\xeb\x1c\xa8\x2d\xff\x8c\xcb\x47\x2e\x0e\x3c\xe3\xe0\x8d\x15\x37\xc9\x73\x6e\x5d\x76\x97\xbc\x68\x68\xd8\xfa\x8c\xd4\xc9\x93\x5f\xdf\x92\xfc\xaf\xd4\xf8\x42\x74\x43\x07\xbe\x0f\x10\x9d\x75\xc1\x36\x36\x79\x1f\xb3\x8d\xd7\x1f\xe5\x9f\xbe\x38\x3c\xfe\x7b\xba\xf7\xdf\xf3\x20\x82\x17\x3f\xbf\x1f\x8a\xc9\x09\x2e\xaa\xd9\x00\x23\x07\x29\x4a\x23\x00\xd0\xb5\x18\xb9\x88\xb9\x1d\x70\x29\x11\xd8\xcc\xfc\x0c\x44\x25\x0b\xe9\xaa\xcf\x00\x26\x8f\x11\x5a\x26\x57\x0c\xcc\xb1\xa4\x28\xe9\x4a\x20\xdb\x9d\xa2\x64\x07\x81\x1d\x71\x14\x25\xb7\x1c\x28\xbe\x4c\x51\x6a\xaf\x80\x13\x4c\x91\xc5\x9c\xf1\x68\xb8\x2e\x52\x22\x97\x0d\xb4\xde\xa7\x28\x69\x7d\xe0\xc6\x01\x8a\x92\x7c\x0d\x3c\x5a\x44\x51\x52\x07\x81\xbe\xcf\x14\x25\xb1\x1f\xf8\x13\x43\x51\x23\x47\xf0\xc7\x83\x8b\x97\x7d\xef\x91\x75\xe2\xec\x89\xa7\x24\x9f\x6b\xa2\xdf\x13\x7f\xc1\xa3\xc3\xdf\x88\x7e\xee\x60\xdf\x9f\x40\x0e\xee\xab\xe6\x7e\x6b\x3b\xcf\x0f\x88\xef\x87\xb2\x84\xf7\x7c\x67\xf7\xf1\xf8\x7f\x9e\xff\x03\x5f\x0f\x14\xc8\xcb\x13\xc7\xfb\x5c\x34\xe4\xf5\x59\x52\xe4\xf9\xc5\x48\x79\x01\xb2\xb7\x28\x4a\x52\x13\x30\x7c\x46\x51\xe2\x62\x80\x9b\x29\x45\xa9\x75\x03\x29\x47\x05\x36\xcb\xac\x02\xd2\xad\x29\x8a\x31\x03\x58\x21\x2d\x2c\x3e\xf2\x0f\xb0\x22\x8d\xa2\x24\x28\x60\x6b\x20\x45\x89\x9f\x02\x0a\xb4\x28\x4a\x6c\x3d\x50\x36\x96\xa2\x84\x4f\x03\x55\xa3\x28\x4a\x34\x17\x68\x48\xa2\x28\xb1\x2e\xe0\xd2\x77\x8a\x12\x9d\x03\xdc\xce\xa2\x28\x89\x61\xe0\xd9\x68\x8a\x12\x49\x05\xfa\xf4\x29\x4a\xf0\x10\xf0\x27\x83\xa2\x9a\xf7\xf7\x12\xdd\xeb\xe9\x53\x7d\x44\xef\x79\x62\xc7\x4f\xa2\xab\xae\xd4\xe2\xea\xa0\xf8\x3a\x98\x1d\x3c\x7f\x14\xbe\x1f\xca\xb2\x1d\x7f\xe7\x41\x3a\xaf\x9f\x50\x0a\xcf\x27\x28\x2a\xeb\xef\x7c\xb0\xe5\x8d\xbe\x3e\x2f\x4b\xf9\xfa\x07\x61\x4f\x40\xf4\x1a\x45\x09\x6c\x00\xd4\xc3\x29\x4a\xd0\x0b\xb0\xd9\x4c\x51\x02\xd3\x00\xff\x40\x8a\x12\xda\x0b\x24\x3e\xa1\x28\xe1\x29\xc0\x54\x77\x8a\x12\x28\x05\xb2\xa6\x53\x14\x7f\x3c\xa8\x1c\x20\xa7\x8a\xa2\x54\x7b\x81\xe2\x87\x42\x0c\x11\x47\xa0\xc4\x81\xa2\x46\x2c\x02\x2a\xaa\x29\x4a\x2d\x02\x38\x9f\x26\xbc\x87\xf3\xdc\xcf\xee\xe3\xfe\x9e\xf6\xa7\x14\x35\x62\x2d\xd0\x15\x40\x51\xc2\xea\xc0\x73\x1f\x8a\xaa\x9f\xf1\x89\xf8\xe3\x9d\xec\xeb\x27\x7a\x98\x23\x61\xb8\x4e\xfd\x57\x07\xc3\x8b\xeb\x7f\xfd\x50\xfe\xc9\x03\x9e\x1e\x2a\x8d\xfe\x7b\x1e\xf0\xeb\xa2\x87\x27\xfe\xd2\x81\xe8\xf2\xf4\x52\xf2\x26\x5c\x1c\xf1\x1a\x18\x79\x82\xa2\x46\xbc\x04\x46\xb5\x53\x14\x25\x07\x98\x14\x50\x14\x95\x04\xb8\x69\x52\x94\xc0\x15\x20\xf2\x2e\x45\x09\x64\x02\xa9\x2f\x29\x6a\xe4\x00\x30\x9d\xd7\x31\x75\x0e\xe7\x09\x3a\x02\x4b\x7d\x39\x0b\x1b\xb0\xde\x91\xa2\x54\x5f\x03\xfb\x9a\x84\xe4\x39\xff\xbd\xf0\x13\x45\x51\x76\x40\x29\xef\xc4\x70\x84\x77\xb2\x3e\xc3\x73\xd0\x6b\x1a\xa0\xa8\x11\x59\xc0\x35\x5f\xee\xfb\xb8\x30\x1e\xaf\xc9\xe7\x39\xf9\x7c\x2f\xff\xde\xff\xff\xea\x40\xf8\xc8\xff\x39\x97\x07\x1a\xd1\xe0\x7b\x93\x83\x62\xa9\x11\xe4\xbd\xb7\x8c\x6d\xf2\x2b\xc2\x7b\x44\x4e\x59\xcc\x41\xc6\xd2\x85\x1b\x84\x06\x00\x35\x7a\xdd\x7c\x61\x17\x80\x91\xbc\x2b\x5d\x64\x2f\xa0\x3e\xbb\xdc\x5a\xec\x26\xc0\xb8\x7b\xa6\x52\xac\x10\x50\xeb\x6c\x3f\x2a\xaa\x05\xa8\xed\x7b\x28\x2c\xe2\x0d\xa8\x09\x7c\xcc\x10\x3c\x09\x28\x0d\x70\x7e\x17\x20\x4e\x94\x7a\x03\x01\x92\xa5\x1c\xfc\x52\x24\x49\x7a\xd2\x7f\x58\x22\x41\x9c\x5d\x5e\x79\x49\xbc\xe3\xe0\xd3\x55\xc2\x93\x38\xf8\xd0\x9a\xb3\x62\x50\xd4\x9d\xfd\x12\x24\xb3\x6f\xfc\x50\x2b\x00\x44\x2a\xae\x34\x32\xa4\x00\xd1\x75\x97\x1b\xd4\x36\x01\x22\xc7\xf0\x1f\xff\x07\x3e\xcf\xc9\xef\x03\xe2\x3c\x93\xfa\xbf\x74\x20\xff\x20\xef\xe7\x75\x2e\xad\x1c\x14\x5a\xe6\x43\xfa\xe7\x48\x59\x84\x11\xfe\x53\xf5\x5a\xf2\xc9\x91\x41\x00\x23\x3e\x3d\x4b\xb0\x05\x60\x6e\x5d\xb0\x5b\xe4\x05\xc0\x34\x5d\x97\x23\x5a\x09\x30\xae\xe6\xf5\x88\xca\xfc\x3b\x0e\xea\xf3\xeb\x96\x70\x62\x54\x6b\xba\xf2\x49\x84\x06\x18\x66\x8f\x5c\x45\xad\x00\xb5\xc6\xcf\xd7\x85\x95\x00\xb5\xc9\x80\xc0\x02\x7a\x94\x0c\xe1\x22\x7f\xb6\x4b\x1e\xe0\xe0\xc7\x24\xe9\x10\x12\x7f\x98\xda\x20\x20\x92\xfc\x6c\xac\xda\x63\x40\x64\xde\xa3\xef\x52\xc4\xb9\xe9\xee\x15\x09\xa2\x58\xea\x5a\x25\x45\x3a\xbb\x75\x58\xa9\xeb\x00\xe2\xa6\xed\x5b\x19\xd7\x01\xb1\xda\x8b\x3b\xd4\x19\x80\x38\xf9\x7f\x06\x1f\xa2\xfe\x9f\xfa\x87\xff\x5b\x07\xc2\xd7\xc5\x8c\x78\xe8\xd8\x44\x9e\xd3\x41\xef\x28\x0e\xca\xc5\x86\x12\x9e\x94\xc1\x4a\xec\x15\xb8\x01\x30\xe7\x4d\xee\x12\x5e\x01\x30\x7f\x66\x6d\x17\x95\x05\x98\x79\x6b\x2b\xc4\x28\x80\xa9\x96\xdf\x28\x56\x09\x30\xab\xcb\x17\x4b\x8c\x03\x98\xca\xf5\x25\x12\x63\x00\xc6\xc3\x6b\x8b\xc4\x5a\x01\x46\xe8\x13\x4b\xd1\x10\x80\x31\xe5\xbb\x90\x70\x3f\x7f\x1c\x7e\x5b\x71\x2a\xa8\xd0\xd4\xaf\x4c\xb9\x2f\x9c\xbf\xe5\x6d\x35\xc3\x0e\x10\x59\xd7\xbb\x99\x21\x0a\x88\x94\x3e\xde\xc1\x18\x0f\x88\x2e\xef\xb9\xaa\x3e\x1d\x10\x4f\xe9\xbe\x24\x4f\x1c\x8c\xae\x17\xa9\x1b\x01\xe2\xd6\x57\xea\xd4\x5b\x01\x09\x95\xcb\x3e\x8c\x69\x80\x98\x56\xcb\x1b\xc6\x1a\x40\x8c\xa8\xbf\xf9\xba\xa8\x7f\xf4\x40\x3c\x5e\x87\xdf\x0f\x85\x1f\xbf\xe5\xdf\xf7\x9f\x13\x2d\x48\x3f\x84\x91\x65\x76\xe4\xde\xab\xe4\x39\x0f\xc2\x67\xa8\xf6\x86\x9e\x18\x71\x0f\x60\x74\xc5\x17\x0a\x3a\x01\x4c\xc5\x89\xb7\x85\x65\x00\x4d\xcd\x79\x83\xa2\x34\xa0\x79\x71\xcd\x15\x71\x00\x1a\x07\xf3\x4f\x4b\x8c\x06\x98\x07\xcb\xb7\x49\x44\x01\xcc\xcf\x0d\x62\x92\x4b\x00\x0d\x87\xeb\xe3\xa4\x54\x01\xf5\x33\xcf\x46\x8a\x73\xc6\xc7\x63\xa0\x41\xcc\x18\x50\xeb\x02\x04\xc7\xff\x98\xaf\xbe\x94\x13\x67\x5f\x96\xfa\x67\x40\xec\xe9\xab\x1b\xcc\x70\x40\xfc\xdd\xd3\x48\xe6\x61\x40\xe2\xfa\xfd\x83\xcc\x10\x40\x62\x43\xd7\x22\xcd\x91\x80\xb4\x5a\x67\x3c\x33\x0e\x90\xb8\x7f\x6d\xbb\xc6\x6c\x40\x2a\xbd\x4d\x8b\xd9\x0d\x48\x6e\x6f\xf5\x66\x9e\x01\x24\xd3\x9a\xbc\x99\x93\x00\x89\x97\x24\x1f\x5a\xa9\xff\x53\xff\xf0\xb7\x0f\xc6\xbf\xfc\x2f\x9f\xff\xe3\xea\x42\xc4\x67\xda\x92\xba\xa0\xb0\xc9\x9d\xf4\x41\x67\x14\x05\xbd\x12\x88\x04\xd4\x0f\xc4\xde\x10\xac\x06\xb4\xad\x26\x7c\x14\x7d\x03\x68\x0f\xce\xf5\x97\x50\x01\xb4\x3b\x57\xf7\x4b\xb6\x03\x5a\xdf\xf3\x37\x49\xd5\x01\xda\x3a\x15\xc5\x32\x0b\x00\x4d\xfb\xb3\x5a\xd2\x46\x80\xa6\xd6\x8d\x3a\xe9\x18\x40\x63\xce\x8b\x16\xc9\x62\x40\x53\xed\x8f\xad\x84\x3b\x3b\x9d\x29\x03\x88\xda\x7c\xde\xce\xd9\x71\x48\x2c\x7b\x73\x45\xc3\x02\x90\x1c\xf9\xcc\x5f\xd3\x06\x90\x7a\xff\xe0\xb3\x56\x05\x20\x6b\xde\x3d\x57\xcb\x0e\x90\x39\x77\x33\x5f\xeb\x35\x20\x7b\xf6\x5a\x8c\x96\x24\x20\x93\xd7\xa6\xa9\x15\x0e\xc8\x3c\x6b\xf9\xa9\xad\x0d\xc8\x3e\x6d\x0a\xd3\xdc\x04\x48\xd7\x34\x8e\xd2\x9c\x0f\x48\x2f\xc7\xff\xd1\x27\xea\x1f\xbe\xd3\xe8\xef\xb8\xb9\x3a\x08\x4a\x82\x55\xc2\x41\x41\x1b\xe3\x72\x0e\x4a\x97\x58\xb3\x38\xa8\x6e\xe4\xba\x78\xe4\x4f\x80\xb9\xcb\x3f\x54\xd0\x1f\xd0\x59\x16\xdd\x20\xf2\x05\xd0\x0e\x49\xbb\x28\xda\x0c\xe8\xa8\x65\x2a\x89\xff\x00\x74\xaa\x57\xbd\x97\xca\x02\x74\x95\xf3\x85\x65\x9e\x02\xda\x0d\x15\xcd\xb2\x86\x80\xb6\xfd\xd9\x6e\xd9\x73\x80\x96\x4b\x67\x99\xcc\x6d\x40\x6b\xfe\x9b\x75\x32\xa6\x80\xb6\x32\x20\x39\xfc\x6b\xaf\x96\x38\x20\xf9\xe9\xc3\x59\x2d\x67\x40\x3a\xb7\x77\x8d\x76\x3f\x20\x77\xfc\x51\x85\x36\x1b\x90\xa7\x7a\x56\xe8\x34\x02\x0a\x8e\x9d\x2f\x74\x8d\x01\x85\xa7\x7c\x3d\x58\xdb\x53\x9d\x25\x80\x7c\x47\x2b\x4b\xe7\x16\xa0\x30\xaa\xc9\x50\xe7\x0a\x20\xdf\x7b\x76\x91\x2e\x13\x50\xd0\x38\x73\x4c\x47\x09\x90\x23\xab\x39\xdf\x1f\xe8\x7f\x75\x30\xfc\xf8\xf9\xfc\x37\xff\xfe\xb7\x36\xd1\x41\xf0\xfb\x63\xc8\x3f\x32\x23\xdf\xd7\x74\x77\xb8\x2b\xa8\xf8\xaf\x4e\x4a\xaf\x2f\x52\x45\xf4\x17\xa0\x3f\x34\x76\x96\xc4\x6a\x80\x75\x28\x43\x58\x3a\x10\xd0\xbf\x90\xdd\x24\x2b\x01\xe8\xb5\xe5\xd5\xcb\xe5\x01\xba\xad\x15\xc3\xf2\x9b\x01\xdd\x79\xe7\xde\x2b\x34\x02\x3a\x49\x5d\x7b\xe4\xeb\x01\x1d\xef\x0f\x7b\xe5\x26\x71\xb5\x09\xd2\x9a\xdf\x8e\xe8\xa8\x01\xb2\xeb\x5f\x39\xeb\xad\x01\x94\x82\xf9\x7a\xb0\xbb\x4c\x7d\x3f\x40\xf9\xfd\xad\x45\xfa\x05\xc0\xa8\xb4\x6b\xd7\x58\xc5\x80\x4a\x63\xbb\x9d\xde\x53\x40\x59\xb9\xe5\xa2\xfe\x26\x40\xf9\xf2\xf9\x32\xfd\x4c\x40\x79\xdc\xd9\x1e\xfd\x62\x40\x79\xda\x99\x79\x7a\x9d\x80\x92\x48\x75\xa9\xde\x11\x40\x71\xc3\x7f\xeb\x22\x7f\x1e\x98\x4e\xfe\x3b\x7e\x4d\x5e\x9f\x35\xae\x0e\x42\xe8\x23\x83\xac\x5f\xb2\x41\xda\x61\x24\x0f\x5a\x8d\x8f\x8e\xf8\x09\xe8\xd8\xdb\x6c\x16\x7c\x0d\xe8\xf7\xb9\xbf\x13\x59\x08\x18\x7d\x0b\xed\x96\x70\x04\x4c\xb6\x8d\xf9\x2e\x7d\x19\x30\xb6\x9d\xa9\x2a\xbb\x03\x30\xec\x5a\xe9\x2b\xbf\x8f\x73\xaa\xd8\xc9\x56\x8a\x02\x58\x9a\x87\x8b\x94\x66\x01\x7a\x77\x9a\x26\x2a\x1d\x02\xf4\x1c\x7a\x54\x94\x92\x01\x3d\xc7\x2f\x2c\x85\x7b\x7f\x0e\xeb\x15\x02\x0a\x22\x1f\x16\xb0\xc4\x81\x51\xb6\x4f\xb3\x0d\x73\x00\xc6\x87\x9e\x2f\x86\x17\x01\xf5\xd8\xff\xd5\x41\x5d\xfe\xca\x39\xc1\xa9\xcf\xb9\x70\xda\x98\x53\x8b\x55\x9b\x18\x46\x8e\x00\xa3\xb6\xc1\xd4\x50\x13\x50\xad\xaa\x3d\x66\xb4\x06\x60\x68\x9c\xb4\x37\x7a\x08\x30\x84\xab\x96\x18\xc9\x02\xaa\x25\x64\x1f\xc0\x5b\x2f\x2c\x79\x75\x92\xaf\x83\xe1\xc7\xaf\xca\xdb\x27\x70\x75\x00\x12\xfb\x95\xb9\xfe\x20\xb5\x8c\xd6\x11\x13\x00\x1d\x23\x9d\x12\x81\xad\x80\xc1\x68\xb3\x02\x61\x06\x60\x92\xea\xd4\x29\xa6\x0b\x98\xcf\x0a\x9c\x22\xf9\x16\x30\x7b\x96\xe0\x26\x93\x09\x98\x7e\x98\xda\x26\xaf\x00\x98\xee\x5e\x41\x29\xf5\x01\x26\x79\x3b\x7b\x54\x6e\x02\x86\xef\x0e\xb3\x55\xbe\x02\x06\x99\x17\x2a\x55\x67\x00\xac\x9b\x0f\x52\x54\x1d\x00\x03\xad\x81\xc9\xa3\xd6\x7c\xdf\x6e\x38\x1e\x50\xf3\x7d\x71\xd1\xe8\x26\x67\xcd\xb9\x77\xdb\x54\x08\xd0\x7e\xd9\xb9\xd2\x54\x0f\xd0\x3e\x7d\x75\xa5\x49\x3f\xa0\xf5\xb3\x4d\xc8\x34\x1f\xd0\xae\xfc\x47\xff\x23\x6d\x0a\x40\x7b\x44\x9d\xa1\xc9\x7a\x40\x23\xb0\xe6\xb8\x69\x15\xa0\xb9\xf0\x44\xa9\xa9\x12\xa0\x31\xe2\xe8\x1e\xb3\x99\x80\xa6\xeb\xe1\x06\x33\x09\x40\xc3\xfe\xbf\xf3\xc0\xa4\x81\x37\xef\x79\xbc\x2f\x8f\xf7\x0c\x57\x08\x21\x79\x30\x55\x86\xe8\x46\x95\x34\xe4\x49\x5d\xd0\x5a\xa3\x7a\x82\x9a\x09\xb0\x5e\x68\x3e\x16\xb0\x04\x4c\x0f\x18\x55\x08\x5f\x05\x2c\xcf\xd9\xd6\x89\x17\x02\x36\xe9\x3e\x22\xd2\x1b\x00\xeb\xf3\xa3\x65\xe4\x2e\x03\xd6\xe1\x93\xf7\x29\x9d\x02\x2c\x19\x4b\x27\xab\x5c\x03\xcc\xce\xef\x78\xc4\xe0\x8c\xdb\x84\xca\x5f\xea\x51\xec\x55\xc6\x51\x2d\x01\x1a\xa1\xbf\x77\x18\xfb\xdf\x5f\xa7\xe5\xdd\x1f\x69\xfc\xfb\x7b\x8f\x56\xe5\xfb\xc3\xa6\xc5\x80\x4e\xe7\xc3\x52\xb3\x77\x78\xa1\x3f\xbb\x53\xcb\x22\x1b\x6d\x06\x47\xda\xdf\x59\x3c\xc7\x15\x83\x35\x17\xfb\x88\x0f\xd2\xb1\xf3\x55\x96\xa1\xb8\xcd\x6a\x6c\xf0\xb0\x1c\xc6\x4d\x03\xf5\xd3\x3a\x16\x79\xf8\xa4\xa7\x72\x32\xcb\xd2\x1a\x9f\xf4\xcc\x8f\xed\xb1\xf4\xc2\x4f\xdd\x95\x95\xfe\x16\x83\xa0\x75\xa6\x1f\x5a\x62\xb9\x00\xd0\x89\x2d\x35\xb2\xc8\x03\xb4\xd2\xff\xbb\x1e\xea\x7f\xe2\xa2\x5a\x1c\x17\x15\xe6\x73\x91\x7b\xff\x5b\xe6\x8c\xe8\x5c\x0e\x6a\x54\x88\x93\x71\x30\x10\x95\x2a\xe2\xa0\xe5\x35\x45\x45\x0e\x3a\x84\xeb\xac\x11\x8a\x03\x9c\x98\xe6\x9f\xc4\x77\x00\x4e\x19\xae\xb3\x65\x83\x39\x9f\xc3\x0b\x15\xeb\x00\x07\xe7\x09\x12\x2a\xcf\x00\xdb\x2d\x8b\x62\xd4\xd7\x0e\x9a\x59\x3f\xca\x3d\xaf\x9d\xf1\xfd\x9e\xd5\xca\x83\xeb\xf4\x4f\x7e\x9a\x6a\x39\xff\x6c\xb1\xe1\x9f\xf7\x1b\x2c\x0e\x74\x69\x18\x5f\x7a\x63\x66\xd1\xda\x17\x69\x52\xf8\x2c\xc6\x4a\x0b\x79\xa6\xf2\xb7\xc7\x58\xf7\x61\x8e\x79\x61\xdb\x68\x5b\x65\xcc\xb4\x30\x6b\x76\xb5\x1d\x87\x25\xe6\x61\x0d\x7b\xec\x28\xac\x30\xb7\x3a\xb3\xc8\x2e\x15\xd9\xe6\x2a\x27\xf7\xd8\xde\xc7\x7e\x93\x33\xc7\x4e\xd9\x05\xe0\xa0\xc9\xcc\xc3\x46\x76\xe5\xa8\x32\xee\x3c\xa4\x60\x57\x8d\x3a\x63\x91\x03\xe1\x76\x45\xb8\x64\xf8\x60\xff\x18\x5b\x36\xee\x18\x8c\xdd\x5b\x67\xb3\x1a\xdf\xf4\x82\x49\x1e\x78\x52\x7f\xe9\x80\x78\xfc\x3f\x25\x4a\x7c\xe6\xc4\x78\x3c\x1f\xdf\x07\xdf\x60\x3f\xf7\xb3\xd5\x75\xae\x1e\xc4\x71\x8e\x04\xd1\x5b\x7a\x15\xa8\xd7\x73\x4e\x31\x3e\x1f\x0c\xbd\xc4\xf4\x00\xef\x1b\xf6\x22\x32\x5f\x01\x8f\xca\xc0\xb5\xa3\xe6\xfe\xf1\x70\x1f\x35\xe6\x0f\xf3\xfb\x37\x53\xd7\xdd\x99\xcf\xf5\x6e\xbf\x8f\x71\x6e\x5f\x1f\x6f\xdc\xf0\xe2\x97\x63\x7f\x51\x92\xc5\xd6\xa7\xc2\x0e\x16\x35\xfd\xd6\x7f\x1e\x3c\xb2\xfb\xdc\xe1\x69\xe7\x7f\xb7\xd2\x6e\xc6\xcb\x3b\xf6\x89\xdd\xeb\xec\x27\x61\x84\xfd\x8a\x36\x23\x87\x7e\x1a\x0e\x3a\xe7\x06\x9c\xc4\x20\x66\xff\x8e\xef\x7b\x73\x32\xdc\xa9\x02\x0e\xb6\xf6\x47\x3d\x5d\x84\x61\x69\x27\x5d\xb1\xc2\xb9\x0a\xa1\x36\x8c\x83\xfe\x4e\xad\x98\x6d\x39\xa5\x64\xae\x53\x1e\xd6\x98\xdf\xde\x17\xe1\x34\x0d\x05\x66\x46\x05\xcd\x4e\x3b\x71\xc0\x74\xd3\xae\x43\x8e\x6c\xd4\x19\xef\xcf\x33\x77\xb2\xc4\x79\x63\x72\x9b\x44\x87\xf7\xfc\xb9\x3e\x20\xfc\xe7\x2f\xc4\xe3\xb7\x55\xc7\x72\x91\x1f\x3f\xdf\x0f\xc0\x79\x36\x17\x7d\x97\x8c\x24\x3e\x4b\x61\x59\xb2\x5b\x39\x18\xa9\xa8\x39\x20\x1c\x0e\x84\xcf\xb5\x98\x2d\xbd\xbb\x7f\x67\xf0\x57\xcf\x21\xb5\x3b\x1f\xa6\x07\x7c\x1b\x1d\xa8\x9f\xd8\x9b\xe1\x2f\x39\xd5\xc5\xf4\xe5\x83\x6a\x9f\xa3\x2b\xec\x6d\xd2\xba\x86\xbc\x5c\xf2\x77\x38\x6e\xbe\x31\xc6\xc3\xe8\x98\xb4\xeb\x96\x2b\xfd\x6e\xd3\x2f\xee\xf0\x08\xb9\x7c\xd1\x35\xf0\xb1\xba\x67\xc5\x45\x17\xd7\x94\x5f\xd7\x3d\xef\x36\xd4\xb8\xbb\xd1\x33\xbc\x04\x4f\x09\xb9\xb7\xd2\x45\xee\x07\x2b\xcf\x78\x14\xd2\x67\xdd\xfc\x0e\xb6\x7a\x46\xd1\xd7\x5c\x57\x1e\x58\xeb\x51\x48\x0f\x38\xd5\x17\x5d\xf1\x94\x83\xa0\xe3\x97\xc2\x9b\x9e\xb2\x50\x75\x28\xda\xed\xe3\x31\x07\xee\x76\x42\x3b\x8b\x3d\x9a\x11\x6e\xf3\x7d\x5b\x87\x5b\x27\x56\x59\x34\xe4\x1e\x76\xab\x43\xae\xf9\xd9\xcd\x63\xdc\xf2\xb1\xcf\xac\xe4\xbf\x75\x50\x94\x77\x9e\xa0\x88\x3f\x90\x1c\x8f\xdf\x62\xf1\xfa\xa1\xd8\x14\x70\xd1\x9d\x37\x3f\xf8\xbe\x10\x7c\x3d\x48\xc2\x4f\x01\x52\x57\xc7\x76\x8d\xfa\x48\x51\x3f\x76\xa6\xb0\x0c\xe3\xa5\xc5\xdf\x52\x89\x07\x9d\xbd\x18\xeb\x1e\xf9\x8d\x8e\x0a\xb5\x32\x1e\x75\x7b\x4d\x64\xc9\xd8\x6f\xb6\xaa\x57\x2d\xc2\xbe\xcc\x57\x72\xf1\x6b\x79\x1c\x62\xbd\x79\xb3\x97\xd0\x39\xdd\xc0\xe9\x65\xd7\xfd\xc2\xea\xdc\xfc\x7d\x1a\x33\x02\x33\x6b\x6e\xf8\xee\xee\xbe\x1b\x6c\x70\x4a\xc2\x57\xf0\x73\x5e\x70\xfb\x91\x63\x7e\xd6\xec\xde\xa0\xa3\x65\x5a\xfe\xbe\xb4\x54\x40\xcf\xbe\xab\xfe\xd9\x74\x88\xef\xa5\x82\x16\xff\xcd\xf4\x54\x1f\xa3\x5d\xb3\xfd\x55\xe8\x02\xcf\xb9\x3b\x42\xfd\x03\xe9\xb3\xee\x5b\xb6\xa6\xf9\xdd\xa1\x9f\xbb\x9a\x6f\x7e\xe8\x77\x8a\x1e\x74\x2e\xda\xf0\xc9\xef\x05\x24\x9c\xd2\xd7\x6b\xf8\xbe\x87\x9d\xfd\xa4\xb5\x0c\x9f\xf3\x48\xb4\x29\xcc\x2e\xf6\xb9\x87\x99\xd6\xe4\x5d\xa6\xac\x36\x2f\xfe\x60\x72\x4e\xe2\xf9\x7b\xf0\xf9\x5f\x1b\x25\xea\x2f\x1d\x40\x98\x39\x17\x13\x79\xfd\x1f\xc6\x13\x1f\x70\x7a\xe5\x14\xc2\xef\x7d\x3f\x3e\xf3\x93\xcc\x24\x8a\x7a\xfd\x7c\xc6\x66\xed\x27\x92\x11\x0f\x22\xa6\xbc\xb4\x49\x53\x4b\xb9\x31\x77\xc2\x80\xdf\x48\x23\xdb\x96\xda\x94\xe3\xf1\x72\x8e\x7b\xea\xcb\x12\x33\x66\xd4\x7b\x6b\x9e\x4c\x8b\x0b\x5e\x5d\x1c\xe8\x54\xb9\x3f\x66\x7e\xe1\x9b\x30\xbd\x83\xba\x91\x4f\xab\xef\x44\x6e\x29\xb1\x0c\xbf\xdf\x91\x1c\x7d\x65\x1f\x1d\xd6\xf4\x5a\x3b\xa6\xba\x50\x2a\x7c\x04\xdb\x21\x46\x62\x67\x42\xf8\x2a\xf6\xe6\x88\xd4\xdc\xf0\xf0\x59\xec\x47\x21\x47\x36\xbe\x08\x4f\xa6\x25\x83\x4c\x73\x44\xc2\x97\xd3\x66\x01\xcb\xf8\x3e\x27\xab\xfd\x42\x0f\xd3\x45\x5e\xd2\xd9\x66\x61\x5a\x74\xb9\xe7\x86\x65\xfb\x43\xb7\xd3\xf7\xdc\x26\x2f\x99\x10\xea\x49\xff\x70\xd9\xb0\x44\x37\xb8\x14\x2a\x8e\x4f\x16\x2c\x09\x51\x87\x89\xc3\x4a\x4e\xfc\x23\xfb\xa9\xff\xe8\x40\xb4\xba\xb9\x68\xf9\xe0\xef\xf8\xf9\x3c\x38\x9f\x07\x9d\x42\x78\x8c\xc1\x97\x99\xe4\x3d\xe6\x17\xff\xf9\xe4\xdf\xbd\x72\x5c\x32\x55\xe8\x21\x45\xdd\x2f\x5e\x1a\xcd\xf0\x15\x65\x5c\x77\x59\xf8\xc5\x74\xe6\xa8\x63\xcd\x9f\xe6\xb1\xdc\xad\x59\x3f\x6b\x9e\xce\xb2\x8b\x4c\xb1\xbf\x51\x61\x91\xee\x3c\xfe\x96\xdf\xcb\xa2\xce\x09\xc1\x8b\x6a\xc3\xd8\xbb\xfc\xc6\x49\x6d\x3f\x10\xe3\xb2\xf5\x67\x4a\x60\xe5\xb7\x78\xd5\x4d\x3e\xc9\xd2\xad\x87\x13\xaf\xac\x6f\x4e\x5c\xfb\x68\x30\x89\x5e\x3b\x3a\x51\xe2\xb7\x7c\x52\xc7\xca\xdc\xc4\xa0\xe1\x5f\x71\xc3\x4b\x6f\x25\xbc\x66\x47\x47\x0f\x2c\xd9\x91\xa0\xc7\x5e\x1f\x39\x6f\x51\x60\xbc\x0a\xbb\x27\x74\xef\x82\xc0\xd8\xf7\x34\x23\xf0\x6d\xd6\xa2\x38\x0d\xda\x2c\xa0\x77\x6e\xe5\xe8\xe7\xf4\x34\xdf\x29\x99\xd1\x31\xfd\x74\xb1\x97\x63\xc6\x50\x8c\x35\x7d\xda\xe3\xf2\xec\xec\xe8\xa9\xf4\x5d\xb7\xcd\x33\xbd\xa3\xac\x20\xe4\xcc\x39\x8b\xc6\xf3\xea\x80\x25\xf5\x97\x0e\x84\xaf\x83\x88\xe6\xcd\x0f\x3e\x0f\x3e\x93\xe8\x00\x7e\xcb\x2e\x24\xf7\x37\xfb\x5a\x97\x13\x1f\xf0\xe7\xd6\x6b\x08\x9f\x73\x57\x3e\xa7\x84\x83\xd7\x8f\x6f\xfe\xad\xdc\x41\x51\xcd\xdb\x72\xe2\xf5\x83\x14\x1c\x6b\xc4\xd6\xc8\x38\xa4\xe9\x0a\x97\xab\xac\x50\x0a\x2a\xb1\x11\xda\xd3\xb9\xf0\xe3\x18\x23\xef\x59\x9b\x18\x99\x27\x67\x7f\x8c\x92\xca\x66\xcf\xca\xc8\x51\x8b\x8f\x5c\xbc\x6c\xfa\xad\x92\x67\xc9\xf5\xf3\x2e\x4d\x5d\xd6\x70\x2b\x75\x5b\xa6\x5a\x7a\x64\xf7\xc9\xb1\x8f\x67\x65\x4d\x9e\xfd\xf9\xf1\x38\xd1\x19\xf3\x26\xd5\x0f\x67\x8e\xa9\xff\x5f\xbd\x47\xfa\x9f\xf1\xea\xec\x8c\xa8\x65\x93\xe7\xa7\x09\xb1\x6b\xc2\x8d\x26\x36\x8c\x4b\x60\xbf\x0d\x99\x3b\xc9\x31\xd5\x84\xd6\x09\x0c\x9d\x18\x92\xa2\x4c\x87\xf9\x5d\x1d\x3f\x90\x9c\x4f\xaf\xf3\x9e\x30\x3e\x3a\xa9\x8f\x2e\xf6\x7c\x39\x5e\x20\xb1\x99\x3e\xe7\xfe\x11\x90\xb6\xe2\xc6\x67\xca\xf3\xfb\x77\xd7\xe2\xc5\xbf\x94\x8b\x69\x3c\xbd\x58\x06\xe1\x2d\x06\x56\x2f\x25\xef\xf1\xde\x7f\x5b\x4b\xf8\xcb\xa7\xba\x1b\x89\x2e\xa2\x1b\xdb\x48\x7e\x5c\xb9\xcc\xe5\xc7\x9a\x23\xf7\xec\x97\xd8\x45\x51\x35\xc9\xbb\xa5\x34\xf2\xa4\x8e\x96\xe7\xef\xdc\x6e\x99\xc7\xec\x2a\x30\xdb\x9a\xe9\xa3\x6d\x76\x67\xe3\xcf\x8d\x23\xe2\x8c\xdd\x66\x2f\x35\x5a\xe3\x39\xb5\x2e\xa4\x33\x63\x78\xa5\x4c\xb6\xc9\xe8\xe2\x69\x7e\xcb\x5d\xf7\xaa\xc4\x63\x22\x96\x4e\x3f\x3d\x2a\xf1\x7b\x5a\xca\x92\x91\x37\x9b\x93\x5e\x8c\x55\x5c\x6c\xf0\x7e\x7f\xd2\xee\x94\x81\x45\x13\x86\xdf\x25\x50\x29\xba\xf3\xcd\xd8\xc1\x31\x07\xc6\x74\xce\x7d\xc8\x5e\x19\x25\x39\x66\x69\xe6\x51\xf6\xa9\xf0\xd2\x14\xeb\x59\xa3\xd9\x37\xc3\x98\xc9\xef\x66\xc8\xd2\xaa\x41\x8a\xc9\xc1\xd3\x5e\xd0\xae\x01\x3a\x49\x9f\xa7\xec\xa4\x27\xfa\xb6\x25\xbe\x9e\x7c\x87\xde\xe9\xf5\x28\x69\xd6\x04\x47\xfa\xb8\x07\x3b\xd1\x78\xfc\x03\xfa\xa6\xdb\x8b\x7f\xeb\x80\xd3\x04\x2e\x86\x2b\xfe\x1d\x3f\x57\x07\xd0\xbf\x71\x05\xf1\x75\x78\xbf\x6f\x03\xf1\xc9\x79\xd2\xb9\x9d\xbc\xcf\xeb\x9a\x96\x7f\x8a\x1b\xff\x3e\x52\x1f\xce\xb5\x73\x75\x21\xa7\xbc\x0f\xba\x70\xf0\xf0\xaa\x43\x85\x2a\xbb\x04\xdf\x17\xb6\x94\xc6\x18\x85\x8e\xf2\xdb\x22\x50\x7c\xce\x35\xc7\xc0\x6f\xb9\x4b\x61\x4d\xc4\x67\xfb\xd6\x59\xc5\xf9\xbd\x13\x65\xfd\x5c\x26\x56\xed\x64\x2c\x8b\x0b\x35\x4d\xa9\xd9\x5e\xb9\x7b\x79\x84\x74\x42\xc3\x56\xfa\xd4\xd6\xa8\xa0\xd1\x6f\x73\xbf\x74\x34\x46\x33\xa2\x9b\x73\xf5\xdf\xfc\x8c\x16\x8a\x1e\xb5\x45\x9e\xbd\x35\xe2\x57\xb4\x64\x4e\x00\xfb\x5e\xe8\xfa\xe8\xdc\x35\xcb\xd9\x83\xc1\x0f\xa3\x7d\xb2\x0b\x68\xc3\xc0\xa8\xe8\x90\xe5\x17\xe8\x10\xff\x99\x51\x89\x4b\x2e\xd3\x39\xde\xdd\xd1\xbb\x17\x4e\xa6\x37\x79\x1f\x8e\x96\xcf\xda\x40\xd7\x79\x7c\x8e\x7c\x39\xf7\x0a\xfd\xd2\x75\x20\xb2\x3f\xa3\x81\x66\xbb\x18\x45\x6d\x99\xc5\x82\x88\xf3\x6c\xc0\x9a\xe6\xd5\xff\x37\x7f\xcf\xff\xb9\xe4\x1e\xe3\x40\xd7\x4a\xf2\xde\xfa\x7d\xe7\xe6\x53\xdc\xf8\xb9\xcf\xbb\xab\x88\x1b\x77\x7b\x31\x37\xee\xf3\x9d\xe5\x84\x0f\x3b\xf5\xf3\x08\xa9\x33\xe5\xaa\xc7\x49\xdf\x8b\x7d\xb3\xaa\xe3\x64\x9e\x53\xd4\x56\xd7\x93\x22\x3a\x7a\xb2\x21\xd9\xfe\x55\xf3\xec\xf6\x68\xde\x9c\xa3\x74\xc4\x2e\xe8\x92\xf9\xaf\xf1\x8e\xe5\x5a\xa9\x85\x6e\x49\x89\x5b\x0e\x1e\x5e\xa4\xe8\x1d\x15\x3d\x5c\x96\xb2\xf3\xad\x5f\x7e\xd8\xe5\x52\xd6\x71\xfb\x80\xb8\x60\xf7\x03\xe2\x57\x6e\x05\x4e\x0c\x54\x2f\xb1\x7e\x39\x33\x50\x38\x60\xc1\xfe\x93\xb4\x87\xff\xc8\x80\x2f\x85\x09\xf4\x44\x5f\x95\xc0\xc4\xfc\x14\x3a\xc7\xdb\x3e\x30\x7f\x87\x2a\xbd\xdf\xf3\x45\xa0\x7a\xee\x07\xfa\xaa\x7b\x7c\xd0\xfc\x0d\xdd\xf4\x6d\xb7\x2f\x81\xfb\xd6\x1d\x05\xe5\xdc\x1d\x94\xb1\x26\x99\x86\xf3\xe7\xa0\x9e\x15\xbf\xa1\xea\x64\x1d\x24\xbe\xdc\x1b\x76\x0e\x4a\x81\xf3\x97\x9c\x41\x94\x6d\xdf\xbf\x7a\xb8\x7f\x74\x20\xdc\xfa\xd7\xba\x8a\xf0\xd8\x1f\x96\xe7\x12\xfe\xf2\xe9\xb5\xdd\x93\xb8\xf3\xbf\x98\xec\x1f\xda\x1b\x0f\x3e\xe4\xc6\x7f\x94\xf0\x96\xa7\x3e\x9e\x20\x7d\x71\x0e\x0b\x9f\x26\xff\x6e\xef\xb9\x7a\xf2\xdf\x73\xf5\xce\xe7\x8e\x78\x43\x51\x6b\xd2\xce\x17\xa8\xf5\x8a\x7a\x65\x5d\x6e\x4c\x34\x5f\xa6\xa2\x39\xb9\xbb\xfe\xa9\x8f\x0d\x6b\x75\x7c\xe9\xe9\x4f\x89\x8a\xb6\x12\x11\xbb\x4f\x4b\xcd\xab\x76\xb4\x0a\x92\xac\x65\x6d\x93\x73\xd1\xf6\xb5\xae\x51\x3e\xf2\xcb\x8d\xe1\x59\x53\x6d\xd3\x46\xb9\x7d\x74\x3f\x72\x6a\xdd\xf3\x41\xb7\x2c\xf7\xe4\x53\x31\x6c\xb6\xcb\x49\xf7\xea\x23\xc3\xf4\xa0\xd3\x3b\x8f\x85\x87\x5e\x40\xd0\x69\xaa\x47\xc9\x81\x3d\x50\x73\x14\xf0\x8c\xdc\x57\x04\x43\x07\x07\xcf\x83\x7b\x76\xc1\xc9\x5e\xd3\xf3\x57\xbe\x0b\xfc\xed\xbc\xbd\x96\x6e\x3b\x84\x58\x5b\x23\x2f\xa7\x2d\x85\x98\x6e\xbd\xc0\xeb\xd3\xc6\x60\x64\x5a\x6b\x7a\xcb\xad\x97\xc4\x0a\xcb\x6f\x40\x22\xaf\x4e\x66\x9c\xe1\xe0\x50\x4a\x36\x79\x9e\x1f\x97\x6f\x23\x75\xf0\x59\x5c\x21\xc9\x83\x1e\xb1\x52\x92\x3f\x57\xe7\x57\x12\x5f\x87\x66\xf7\x13\x64\xfc\x6a\xe3\x4e\x93\x7e\x52\x95\x3f\x1a\xc8\xf7\x8a\x77\x35\x91\x71\xda\x61\xd0\xfa\x8e\x83\xab\x4f\xb6\x7b\x73\x70\x51\xd3\x55\x5a\xc1\x86\xa2\xa6\x15\x5e\xc9\x60\x4d\x97\x55\x1d\x23\xd2\xf6\xd2\x55\x89\xd9\x13\xae\x78\xe9\x4b\x4c\xb0\xd1\x5b\xff\x05\x97\x16\xcf\x66\x9a\xd5\x7a\xba\x5f\xfc\xb0\x69\xaf\x65\x9d\xcb\xe4\x8b\x11\xe5\xcf\xac\x3d\x1d\x0d\x5a\xf7\xb6\x26\xda\xc8\xd8\x7b\xb7\xe0\x49\xa9\xf5\x7a\x7b\x91\x96\xa7\x43\xee\x96\x65\xf6\xdb\x1a\xa7\x62\x89\x45\x99\xc3\xe8\xd3\xcb\xb0\xcc\xa2\xc4\x61\xfa\xc9\x52\x6c\x36\xdf\xea\x30\xe1\xe8\x16\x14\x99\x99\x3a\x1a\x55\x68\xa0\xd8\xcc\xd1\x31\xbe\x4c\x08\x47\x4c\x47\x3b\xa9\x17\x1f\xc4\x31\x53\x07\xa7\x65\x85\x1f\x50\x6b\x72\xd0\xe9\xc4\xee\xd5\x38\x6f\xfc\xd8\xe9\xda\xce\x32\x5c\x35\x6a\x07\x66\xf0\xfa\x83\x71\x9f\xff\x97\xe2\xed\x64\x5e\x3c\xaf\xda\x4b\xf4\x1d\x3d\xa7\x0e\x12\x5f\xad\x6b\xf2\xc7\x88\xcf\xc9\x85\x93\x5c\x5f\x9c\xd3\x2f\x1b\xc8\x78\x1c\x33\xe0\xc6\x7d\xe0\x2c\xb7\x6f\xce\x2e\xcb\x2b\xc4\x1f\x60\x43\x27\x97\x27\x5e\xfc\xe9\x36\x59\x57\xa7\x0e\xdf\xf9\x29\x70\x8f\xa2\xc6\x16\xf4\xc8\x30\x7b\x45\x7d\xa2\xf6\xdd\x19\x65\x9b\xa6\xb4\xcc\x77\x43\xb7\x7d\xe8\x51\xcd\x56\xb7\x94\xee\xe0\xa9\x91\xba\x9a\x0e\xf3\xba\x0d\xd6\x4d\xd4\x3f\x60\x63\xd3\xb5\xaa\x34\xd6\xc0\xdb\x92\xea\xb2\x68\xda\x6e\x50\x6c\x9e\x79\xbb\xec\xc1\x80\x81\xb9\x79\xd4\xed\x9d\xbf\xc2\xf4\x13\xcd\x73\xae\x33\xc0\xd6\x65\x5b\x8c\x68\x33\xc1\xa0\x9e\xab\x45\xfe\x85\xc9\xe8\xd7\x5b\x6d\x29\x73\xf6\x0e\xfa\xf5\xb2\x2d\xad\x4f\x47\x63\x48\xf7\xa1\xd5\xa5\x93\xb6\xf8\xa4\x1f\x6f\xf5\xfa\xe8\x6c\xf4\xeb\xed\xb1\xba\x57\x11\x02\xb6\xee\x51\xeb\x8f\x65\xbb\xf0\x4b\x2f\xdd\xda\xbe\x64\x35\xa0\xd3\x88\xf2\x95\x95\x24\xfe\x73\xdb\x48\x1c\x2f\x4f\xec\x23\xf7\xb9\xef\xed\xe0\xfa\xe2\x5c\xbb\x5e\x45\xf4\x51\x2d\xcd\xa7\x89\x0e\xa0\x6e\x47\x23\xd1\x8d\x1c\xb7\xe4\xf2\xe2\x07\x8b\xdb\x89\xff\x45\xc1\xc5\x0e\xe2\x07\xb0\x75\x07\xb7\x7f\x48\xf6\x1d\xee\xbd\xf9\x39\xb7\x1e\x90\x3e\x0a\xe3\x4e\x3d\x23\xeb\x52\x6c\x4c\x2f\xad\x38\x9e\xa2\x02\xd4\x7b\x5d\x4c\xe2\xa5\xe6\x3a\x0f\xf4\x2e\xf0\x1b\xa5\xec\x6a\xbb\xae\xf7\xcf\xf8\x4c\x55\x19\x0b\xad\xde\xa1\x95\x2e\x0c\x69\x13\xd1\x17\x01\x45\x31\xea\xb2\x86\x89\xbd\x0f\x1a\xf6\xa9\x47\xb2\xde\xbc\x90\xb8\x9b\xc4\xc8\x63\xf5\xf5\x7e\xf9\xc1\x56\xbd\x66\xa0\xfa\x38\x18\x50\x99\x6a\xb0\xae\x27\x18\x50\x35\x33\x68\xe8\x9c\x05\xa8\xce\x32\xf8\x7d\xb5\x09\x50\x3d\x60\xd8\x78\xf1\x3b\xa0\x96\x61\xc8\x6e\xca\xe7\xa0\x51\x63\xc3\x49\x80\x21\x61\x5c\x56\x7b\x00\x60\xb4\x9a\x18\x9e\x2c\x00\x18\x83\x26\xcd\x47\x57\x02\xea\x72\x3f\x3c\xb6\x11\x56\xe4\xf5\xa6\x7d\xa4\x2e\xdc\x3f\xcf\xf5\x05\xb9\x69\x79\x8a\xc4\x73\x29\xba\x81\xf0\xdf\x0d\xad\xcd\x64\xfd\x38\x11\x7f\xf9\x15\xa9\x83\xd3\xae\xee\x25\x75\xf0\x6a\x27\x39\x7f\xec\x58\x79\x87\xf0\xc0\xeb\x6b\x1f\x92\x7a\xb9\xe8\x0d\x97\x27\x9e\x36\xf0\x82\xec\xbb\x93\x54\xde\x91\xf1\xf0\xbd\xf0\x39\x7b\xc4\x0c\x8a\x72\xb5\xf8\x72\x50\x73\x40\xe8\xb0\xd5\xa8\xaf\xe2\x2e\xc7\xa5\xd6\x9b\x84\x7e\x0b\x4c\xb2\x93\x59\xce\x6a\xfd\x2e\xb7\xb0\x40\xf6\x9e\x6e\xe8\xf7\xd2\x5d\xa7\xe4\xc6\x6b\x4b\xfc\x50\xa9\x79\x24\x67\xa7\xf9\xfc\x87\xfd\x6d\x19\xd9\x68\xcd\xeb\x3f\x1a\xbe\x78\x4a\xcf\xd2\x7c\xf9\xf9\x33\x20\x79\xff\x1f\x9d\xc3\x89\x67\x16\x80\x54\xa7\xb6\xc8\xbd\xa7\x80\x4c\xbf\x56\xc1\xed\x9b\x80\xcc\x66\xad\xb7\xd7\xfd\x01\xd9\x91\xda\x4b\xdb\x62\x01\xd9\xf3\x3a\x8e\xad\x66\x80\x5c\xa1\x8e\xca\xb9\xbb\x80\x9c\x9f\xde\x8a\x7a\x27\x40\x51\x9a\xaf\x03\x7c\x78\xfc\x30\xd1\xb9\x75\xfa\x9f\x22\xf3\xfd\xd2\x43\x6e\x9f\xa4\xc6\x46\xee\x73\xaf\x76\xe5\xe9\xa0\x9e\xdc\x24\x7a\xb9\xfd\xe8\xe6\xdd\x7b\xbe\x4f\xfc\x22\x36\xe1\x31\xa9\x13\xd9\x35\x2f\xc8\x7e\x6c\x6e\xe5\x1b\xe2\x47\x36\x89\xe7\x17\x32\x9a\xfa\x4e\xfa\x27\x79\xc8\x0d\x12\xdd\xad\x85\x2f\x0c\x65\xd3\x28\x8a\x35\x19\xb0\x90\x16\x7a\xa7\x23\x0f\x44\x14\x88\x84\x68\x8e\x01\x66\x75\x89\x66\x32\x47\x02\x9b\xfb\x45\x0f\x31\x56\x00\x95\x93\x45\x5d\x19\x6e\xc0\xe5\x3b\xa2\xae\x6a\xc3\xc0\xf3\x21\xe1\x6e\x86\x02\xc0\x0e\x14\x5c\xaa\xbc\x6b\x98\x74\x5a\x50\x8e\xf9\x9e\xc7\x41\x25\xfd\x0f\x3a\x1c\x64\xec\x7e\x2e\x0c\x88\x7c\x61\x04\x3c\x38\x07\x88\x34\x33\x2e\x74\x1f\x00\x44\x2f\x29\x3a\xdc\x26\x67\x6c\xf5\xf2\x6b\x82\x80\x78\x0c\x73\xe2\x65\x5f\x40\x62\xfc\x93\xce\xc3\x64\x1e\x74\x59\xd5\x70\xf5\x1f\xe3\xce\x93\x7a\x71\xae\x89\x1b\x7f\x6d\xc2\x55\xa2\x37\x3f\x6a\x76\xeb\x17\x07\x4b\x7b\xb9\xba\x80\xc2\x4f\x8f\xc9\xf7\xb6\x95\x3d\x27\x79\xb5\xee\xd3\x1b\x32\x6e\x4b\xf6\xf7\x91\x79\x33\xdb\xf1\x1b\xe9\xbf\x96\x26\xf6\x8b\xe8\x2a\x23\xbe\x0c\x93\xfe\x4a\xce\x3c\xfd\x83\xae\x36\x20\x74\x83\xa2\x34\x5f\x01\x06\xfe\x02\xd6\x4c\x01\xc0\x3f\x57\xe0\x1d\xe3\x09\x30\xb1\x5c\xf0\x1d\x63\x24\xb0\xf2\x9e\xd0\x21\xb5\x72\x60\xaf\xa4\xf0\x74\xd5\xf5\x40\x8d\x91\xe0\x14\xd5\x6d\xc0\x35\x25\x81\xcf\x4a\xc7\x81\x27\xb9\x14\xa5\xb8\x15\xf8\x62\x4d\x51\x32\x1f\xb9\xbc\xf5\x88\xb5\x34\x61\x10\x05\x46\xfe\xd4\x27\xbf\xa9\xeb\x23\x79\x17\x3d\x62\xf0\x35\xe1\x6a\x04\x98\x4f\xc9\xdd\xdd\x91\xca\x0f\x48\x67\x0e\xc1\xdc\x3b\x56\x1c\xec\x09\xad\x25\xfc\xfe\xd5\x0f\xdc\x7a\xd7\x54\x74\x89\x3c\xdf\xd3\xa7\x3a\x48\xdd\x3c\xbe\xb6\x7b\x37\x07\x0f\xc9\x3d\x20\x79\x52\x94\xf5\x8c\xf0\xa0\x79\xa7\x5e\x11\x1e\x74\x53\xf4\x07\xf2\xbd\xec\xd0\x2f\xa4\xbf\x4c\xd6\xf1\x9f\xe4\x1c\x36\xb5\x73\x90\xb0\x8a\xc9\xfb\xb9\x7c\x69\x10\xcf\x27\xc7\x86\xd7\x0f\x82\xb1\x9f\x8b\xea\xba\x80\xae\xc4\x88\x76\xc5\x32\xc0\xe5\x01\x45\xc9\x0d\x03\xf1\xe5\x14\x25\x37\x08\x64\xae\xa4\x28\x59\x25\x20\xe7\x31\x45\xc9\x9c\x01\x4a\x02\x28\x4a\xaa\x0e\xa8\xe9\xa3\x28\xc9\x03\xc0\xe5\xff\x8f\xb2\xf7\x8e\xcb\xf1\x7d\xff\xc7\xcf\xf6\x9e\xd2\xde\x4b\x7b\x2f\x0d\x8a\x32\xa2\xb2\x42\x84\x64\x8f\x48\xc8\x8c\xac\x28\xa2\x21\x23\x54\x56\x89\xa6\x11\x1a\xa2\x88\xca\x48\xa8\xcc\x54\x66\xc3\xc8\xca\xa8\xe3\xf7\xe8\x38\xcf\x2b\xf2\x7a\xbd\x3e\xef\xef\xcf\x3f\x4f\xd7\x5d\xdd\xf7\x7d\x1c\xd7\xb9\xae\xf3\xf9\x3c\x9f\xc7\x0e\x42\x44\x4b\x01\xaa\x3f\x10\x22\x76\x12\xe0\x85\x35\x21\xa2\x15\x00\xdf\xc4\x09\x21\x7b\x39\x5e\xff\x17\xab\xe4\xf0\x99\x9d\xdc\x6f\xa5\xe8\xff\x8a\x39\x37\xd4\xe3\xef\xdd\x94\xa6\xf1\x97\x0e\xbb\xbe\x83\x8e\x83\x37\x71\xfe\xcf\xee\x7a\x30\x8b\xae\x07\x1e\x27\xe2\x7c\x20\xd2\x84\xe3\xe8\x5e\xb9\xd7\xe8\x13\xb6\xcb\xa1\x4d\x93\xb6\x83\x4f\xe8\x43\xb6\x36\xb0\x03\xe7\x99\x25\xe3\xba\x70\xfe\x9d\xc1\x78\xee\x71\x4c\x0f\xc0\xf1\xde\xa6\x4c\x07\xa0\x10\x4c\x51\xaa\x0c\xa0\x6f\x27\x21\x12\x91\x00\xd6\x6e\x84\x88\x96\x00\x8c\x98\x4d\x88\x88\x34\xc0\x0c\x71\x42\x84\x72\x01\x56\x2f\x22\x44\xe8\x33\xc0\xae\x31\x84\x08\xf4\x07\x48\x09\x27\x44\x50\x17\x20\x27\x89\x10\x61\x2d\x80\xe2\x4f\x84\x08\x59\x01\x54\x9a\x11\x22\x50\x0f\xf0\xa8\x92\x10\xfe\x7d\x00\xcd\x77\x98\xce\x61\x1e\xe9\xd1\x39\xfc\x33\x2f\x6d\xc5\xdd\x78\x4d\xa6\x1c\x75\xe6\xf9\xa2\x77\x30\xae\x9c\x6b\x35\x68\xa8\x78\xb2\x8a\xfa\x60\x1d\x69\x78\x89\xed\x20\xf1\x54\x33\xf6\xff\xf8\xf4\x4f\xd8\x1e\xa2\xda\x68\xbd\xa8\x8d\x03\x3b\xb1\xdd\x70\xfc\xf7\xfc\x70\x8a\xfe\x53\x29\xfa\x30\x9f\x10\x4e\x17\x65\x7c\x04\x7a\xf1\xfe\x02\xd7\x01\xc4\x22\xe9\xf7\xd4\xb6\xf8\xcd\x73\xf3\xde\x07\x18\xdf\x46\x08\x7f\x20\xc0\xa2\xed\x94\xdf\x0f\xf7\xa1\xfc\x75\x1c\x53\xc4\xa7\xe4\x50\x3c\xc9\x76\x86\x38\x1e\xfb\xaa\x30\xc5\xbb\xcb\x28\x36\xb2\x27\x07\x74\x78\x98\xd2\x5b\xff\xc1\xe5\xa5\x30\xa8\x0a\xd7\xc7\x67\x80\xea\x41\x4e\x79\x53\xdd\xe3\x71\x99\xd7\x38\x3f\x1e\x52\x7f\x87\xe3\xff\x9e\x19\x54\xff\x15\xdd\xf9\x13\xe7\x87\x88\x6b\xc0\xd6\x07\x14\x39\x5f\x9c\x19\xfe\x14\x7d\x99\x0e\x60\xa8\x2f\x45\xbb\xdd\x14\xb9\x3a\x20\x1c\xef\x4f\x26\x00\xf0\x31\x45\xaf\x46\xf7\x48\x62\xfd\xbb\x02\xa6\x17\xab\x6c\x36\x9d\x87\x62\x68\xf7\x93\xbf\x3f\xc0\x16\xe6\x00\x1a\x3f\x86\xe2\x21\xb6\x12\x4e\x2b\xa4\x78\x9a\xfd\xfc\x12\x53\xce\x57\xb2\xb8\xa9\xb2\x13\xe0\x0d\xab\x24\xfa\xb5\xe1\x77\x3e\xf2\x1a\x1e\xe1\x7c\x91\xd5\xd6\x88\xf1\xa6\xb9\x34\xe3\x75\x52\xe7\x07\x95\x6e\xdc\xef\xfe\x1d\xfb\x45\xec\x11\xc0\xfa\x7a\xdb\xb4\xe9\xf7\xe7\x7c\x81\x38\x1d\xc8\x5c\xa6\x6f\xf0\x67\xf7\x9d\xf3\x85\xe9\xd1\x81\x30\xdf\x10\x4e\xff\x20\x7d\x83\xe5\xe1\x01\x00\x6f\x3e\xfd\x3e\xca\x6c\xe7\xcb\x92\x55\xb8\xe3\x4e\x00\xf9\x75\x3f\xa9\x6c\x04\x58\xd0\xbd\xf2\xf5\x03\x58\x3d\x80\xbe\x1e\xe1\x4c\x91\xab\x88\x87\x7a\x87\xcd\x00\xc7\x77\xd3\xeb\x6c\x96\x97\xfc\x04\xd6\x4e\x1e\x51\xac\xba\x4e\xf3\xf9\x6c\x30\xbd\xee\x1e\xe1\x4e\xf7\x7b\x81\xeb\xe3\xf4\x3b\xb4\x4e\xda\x61\x91\x8f\x38\x6f\x1e\x0c\xea\x44\x8c\xaf\xa7\xdf\xf7\x6f\x3f\x94\x50\xe6\x13\xc2\xe9\xa1\xa6\xcf\xeb\xdd\x0e\x38\x5f\x18\xae\x3f\xf4\xe8\xc3\xd8\xdf\x49\xb1\x7a\x5a\xb8\x13\x56\x48\xdb\x85\x22\x73\x38\x34\x4e\xa7\xe8\x36\x8f\xf6\x93\x31\x86\xbd\xdb\x45\x30\x7b\x22\x5e\xdd\xc1\xf2\xc1\x1c\x23\x77\xb2\x1d\x94\x7d\xac\x3d\xa5\x54\xff\x7b\xbf\xe1\xda\x49\xf9\x6e\xaa\x1f\xb9\x7f\x81\xee\xc7\xfd\x5d\xf7\x81\xd3\x3f\xf4\xf8\x60\xb0\xf3\xce\x7f\xeb\x40\x38\x7d\x04\xf7\xfb\x9c\x8e\x84\xf3\x17\x99\x88\xfb\xdb\x44\x60\x56\x0c\xee\x77\x6d\x0b\xa9\xeb\x46\xde\x9c\x8d\x6e\xdd\xc8\xef\x1b\x8b\x3c\x81\x80\xdd\x11\x53\x7c\xfd\x78\x2e\xfa\x24\x93\x0d\x25\xb8\xdf\xcb\xdb\x76\xbf\x96\xbe\xcf\x2b\x76\x7e\xec\xd7\x18\x42\xba\xf6\xd0\xff\x7f\x02\x8a\xdd\xab\x13\xfc\x9d\xc5\x14\x9f\xdf\xa2\xf8\x44\x89\xa0\xc3\x4b\x6d\x1f\x7a\x5d\xcd\x38\x89\xdb\x36\x04\x7b\x6e\x85\x26\xbd\x2e\x63\x5c\x1e\xfc\xe1\x7b\xd0\xa3\x7f\x60\x3c\x0e\xa7\x77\xb1\x63\x71\xf5\xe8\x40\xd6\xf7\xce\x07\xa7\x9b\x61\x7f\x1f\x3e\x92\xf2\xe6\x93\x26\xd0\xbc\x98\xce\xc0\xf7\xe7\xdb\xba\xe4\x68\x37\x0a\x29\x6d\x42\x7e\x54\x68\x7b\x1c\xd6\xb9\x16\xe6\x3d\x82\x3e\x0a\x02\x5b\x4e\xe3\x77\x13\x0c\xb8\xfa\x1a\xf3\xb4\xa3\x16\xf9\x73\xbe\x98\xb7\x78\x9e\x9a\x17\xf5\x1e\x3f\xd9\x19\xcb\x8f\x6a\x14\xdf\x56\x53\x7c\x71\x8a\x07\x57\x26\xcf\x85\xe8\xf5\x23\x4f\x72\x05\xd7\x05\xb2\xf4\xba\x4a\x9f\x60\x05\xbc\x9b\xb2\x3c\xab\xba\xb1\x5c\x9b\xa0\xbf\x58\x69\xdc\xef\x3c\x70\x7e\x28\xae\xbb\x7b\xb7\x03\x2e\x7e\xee\xdc\xf7\x5f\x3a\x90\x9e\xbc\xb0\x7c\x4d\x74\x63\xb9\xf7\xc4\x38\xc9\x98\x71\xc8\x87\x08\x2c\x9a\x81\x7c\xb1\xd0\xe4\x10\xe4\x0b\x45\xdf\x6d\x5c\xd6\x8d\xe2\x8b\xe2\xb0\xbd\x88\x3e\x3e\x8a\xe7\x65\x45\x17\x9f\x45\x3f\x6c\xd1\x8e\x32\xe4\x89\x84\x06\xd7\x61\xfd\x01\xc1\xd8\x56\xd4\xd9\xf0\x60\x0f\xfb\xae\x44\x70\x44\x7e\xf7\x91\x07\x1d\x79\x5e\xfb\x92\xf9\xdd\xd8\xd0\x48\xe3\x7c\x72\x93\x14\xfe\x6b\x3b\x10\xa2\x3f\xe7\xe2\xbf\xe6\xca\x87\x33\xd6\xe5\x56\x5e\x75\x2e\x0f\x5c\x7f\xe8\xf1\x43\x11\xea\x1d\xbf\xe5\x50\xd2\x5b\x07\x60\xd8\x3b\x1f\x9c\x5e\x84\xf2\xc5\x3c\x8e\x43\xae\xe0\xf7\x77\x1e\xfb\x0e\xe3\x69\x0f\x44\x5f\x78\xd1\x75\xc1\x9f\x30\xfe\x94\x0d\xc8\x23\x4b\x9e\x8c\x7b\xd3\x8d\x52\x7b\x8f\xe1\xe7\x4b\x0c\x3a\x67\x80\xaf\x07\xdd\xc0\x7e\x2a\x7e\xf0\x09\xea\x09\xc4\x8d\x3f\x9c\xc2\x7c\xa2\x52\xf3\x8b\x94\x00\x3a\x92\xb5\x84\xf2\xe3\xd9\xf4\xa6\x1a\xbe\x8f\xdd\xf8\x2c\x5a\x08\xe3\x79\xe8\xc2\xa7\xdf\x8d\xf7\x52\x04\x05\x30\xfe\xf3\xa2\x66\xd8\x0f\x96\x08\xe2\x88\x5d\x96\xc2\x87\xca\xd6\x2b\x67\xf8\x91\xd3\xbc\xf4\x44\x68\x07\x97\x87\x41\xf2\x7f\xb5\x03\x8b\xbf\xe2\xbf\x4e\x7a\xeb\x3f\x04\xff\x2d\x1f\x3c\x6a\xfd\xb1\x8f\x0a\xac\xf0\x40\x5d\x8c\xe8\xe4\x31\xa8\x1b\x11\xff\x10\x80\xfd\x43\xea\x72\x30\xfa\x9d\xcb\x18\x6d\xc0\x3a\x02\x32\xdf\xe2\xd0\x5f\xa6\x8f\xec\x31\xf4\xcb\x97\x1b\x72\x1e\xfb\xbe\xcc\xfb\x0a\xac\xb7\x21\x63\x5b\x8f\x7c\xb2\xf4\xb7\x2f\x9d\x84\x74\x3d\x12\xc6\x1a\x15\x1f\x64\x44\x51\xf7\xf5\x6a\x92\x28\x2a\x39\xeb\x83\x44\x71\x64\xae\x1d\xad\x7c\x1a\x40\x28\xfa\xc1\x30\x31\xf4\x68\xef\xd1\x83\xe5\x2b\xaf\x07\x10\xda\x75\xf5\x91\x72\x14\x80\x50\xc6\xe5\x42\xe5\x6d\x00\x42\xe9\x85\x4f\x94\xdf\x00\x08\x0f\xbd\xe8\xa0\xfc\x00\x40\x58\xf5\xcf\x71\xee\x1f\x3a\x18\xd6\xb6\x38\xfe\x9b\xd3\x01\x70\xc8\xbd\x6e\x8a\xe3\x09\xdf\x3c\xdb\x7c\xf2\x87\x4e\x4a\xb2\xce\x07\xdb\x95\x6c\xda\x54\xe4\x45\xe5\x1f\x05\x23\xff\xa7\xb4\x6d\x43\x0c\xdf\x66\x00\xa5\x4b\xf1\x53\xf8\xdf\x00\x28\x8d\x4a\xb5\xe0\x0f\x02\x90\x6f\xbe\x90\x85\xbf\x27\x72\xcb\x06\xd1\xb4\x11\xdf\x57\xde\xf8\xd7\x38\x42\x3a\xec\x65\x71\xc6\x6e\x11\x93\x43\x07\xc3\x7a\x6b\x15\x6f\x00\x61\xc7\xba\xe3\xca\xef\x01\x84\x5a\xaa\xdb\x55\x0a\x00\x44\xe6\x73\xf1\x97\xeb\xaa\x4c\x01\x10\x11\xe0\x74\x50\x97\xbb\x54\x56\x03\x88\xd8\x15\x11\x95\x4d\x00\x22\x8e\x17\x4f\xa9\x84\x01\x88\xe8\xe6\x19\x2a\x5f\xe9\x7e\x1e\xfb\x73\x9c\xfb\x5b\x07\xd3\xe3\x83\xc1\xce\xbf\x73\x3c\x38\xd5\x81\x70\xba\x10\x81\x3b\x86\xf8\xfb\xa2\x9e\x56\xf6\x78\xdf\x0b\x07\xe0\xcf\xe5\xb0\x60\x1d\x80\xf2\xe8\x29\xb6\x7c\x9a\x00\x2a\x8a\x8b\x86\xf3\x37\x03\x28\xd7\x86\x13\x81\x74\x00\xe5\xb8\xf8\x3e\x82\x13\x01\x94\x87\xa5\x1e\x13\xbc\x08\xa0\xd4\x90\xbf\x45\xd0\x1f\x40\xe9\x6b\x95\x8a\xa0\x17\x80\x52\xe3\xeb\x20\xfe\x12\x80\xee\xb8\xc8\xae\x0f\x83\xba\xe3\x10\xf2\x68\xea\x54\xc9\x06\x10\x8e\x7e\xb4\x5c\x5d\x00\x40\x3c\xec\x9e\x9d\xda\x6d\x00\xf1\xa0\xdb\x92\x6a\xaf\x00\xc4\x8f\x97\xef\x51\x8f\x04\x90\x88\xba\x96\xae\x9e\x06\x20\x91\x79\xf9\x84\xba\x23\x80\x84\x68\x61\xbb\xba\x02\x80\xf8\x8d\x0b\x44\x5d\x13\x40\x3c\xfb\x9c\xbd\xfa\x38\x00\xf1\xda\x9c\x0d\xea\xc2\x00\xe2\x1e\x7f\x8e\x07\x5c\x3f\xe0\xce\xbd\xeb\xb0\x3c\x70\xfc\x2f\xc7\x83\x73\x3c\xa0\xea\xa8\x6e\x14\xe9\xd2\xc1\x7a\x08\xd2\x19\xe6\xe8\x9b\xa3\xdc\xe6\xec\xcc\xeb\x00\xa0\x66\xe3\xf9\x89\x7f\x0a\x80\x9a\xa0\xdf\x25\x01\x67\x00\xb5\xfc\xf9\x2f\x85\x04\x01\xd4\xde\xac\x4b\x11\x2e\x01\x50\x3d\x1c\xb7\x45\xb8\x19\x40\xd5\x26\x35\x43\x24\x12\x40\xe5\x7c\xe1\x70\x91\xad\x00\x2a\xa2\xf7\x5c\x84\x87\x02\xa8\xf8\xb4\x74\x08\x8d\xfb\xa9\xac\x6a\x0a\x20\x34\xe0\x6d\xa9\xfa\x0f\x00\xf1\x17\x4f\xbf\x6a\x9c\x01\x90\xcc\xbc\xaf\xa4\x99\x01\x20\x3d\xe5\x56\xa6\x66\x1b\x80\x74\xd9\x8d\x9d\xda\x03\x00\x64\x37\x5d\x9d\xa2\x35\x17\x40\xc6\xab\xd8\x5d\x3b\x1e\x40\x36\xbd\xc0\x1d\xfd\xb4\xa4\xf3\x12\xb5\x47\x00\xc8\xd4\x9d\xe9\xa7\xcd\x07\x20\x33\x2c\x5b\x5d\x6b\x1a\x80\xb4\xcb\xa9\x75\x9a\xf9\x00\x52\x8e\xf0\x2f\x7e\x30\xdc\xfd\xe7\xce\xff\x73\xe7\xbf\x19\x0f\xce\xe9\x21\x92\xfb\x9e\xc7\xf8\x23\xd4\xb0\x7f\xab\xac\x33\x16\xe1\x79\x04\xa0\xee\x6c\xd7\x97\x2f\x1a\x40\xa3\xaf\x47\x38\xff\x2f\x00\xcd\xc7\xe3\xfb\x0b\xf9\x01\x68\x2d\x9a\x03\x22\x6b\x00\x34\x5f\x85\x49\x8b\xb9\x01\x68\xa4\xc6\xde\x17\x97\x02\x50\x9f\x9f\x36\x51\x7c\x18\x80\xda\xaf\x4b\xd6\xe2\xd9\xf0\x4d\x2d\xeb\x41\x87\xf8\xb8\x4e\x3e\xf5\xcd\xef\xea\xc5\xfd\xda\x23\x35\x83\x00\x24\xa5\x1a\x75\xd0\x1f\x2b\xff\x41\x82\x6e\x01\x80\xbc\xea\xcd\x71\xfa\x73\x01\x14\x57\xfd\x97\xfe\xe7\xa2\xaf\x9e\x2f\x40\xdf\xb6\xb3\x2f\xf5\xce\x00\xc8\x4b\xe4\x4a\xea\xd6\x03\xc8\xa5\x67\xbc\xd0\xb3\x07\x90\x3b\x9b\xee\xa9\x2f\x0d\xd0\xd7\x3f\xf5\x8e\xee\x69\x80\x3e\x2b\xff\x8c\x9f\xeb\xf7\x5c\xfc\xb2\xa8\x7f\x21\x13\x24\x58\x7f\xa0\x3c\xb0\xa0\xbb\xe8\x56\x8c\x7f\x91\x54\x32\xf9\xa3\x5e\x8a\xa6\xa0\xd6\x2b\xde\x56\x00\x9d\x2e\xf3\x45\x02\x46\x00\x7a\xf1\x03\xbb\x84\x96\x00\xf4\x73\x19\x7d\x57\x34\x04\x40\x7f\xe2\xcc\x44\xf1\x65\x00\xba\x17\x57\xf3\x48\xaa\x01\xe8\x28\xc7\x5c\x91\x9a\xf7\xe3\x80\x8e\xc5\x71\x37\xd9\xd0\xcf\xc9\x3a\xde\xf9\xee\x7d\x05\x3f\x1a\xea\xf8\x56\x6d\x90\x77\x69\x7b\xa4\xf3\xe8\xcd\x08\xf9\xe8\xb7\x3e\x7a\x3b\x00\xe4\xb7\x3c\x4c\xec\xb7\x03\x40\x79\xe6\x6d\x73\x83\x9f\x00\xaa\xa1\xd7\xd2\x0c\x37\x01\xa8\x96\x5d\x8a\x31\xf2\x00\x50\x1b\x5e\xc0\x6b\x68\x04\xa0\x32\xe6\x5c\xa7\xd1\x25\x00\x35\x72\x7a\xa4\xe1\x4e\x00\xe5\xa6\x8c\x4e\x63\x05\x00\xd5\x81\x27\x93\x0c\xc3\x00\x94\x6e\xa5\x7a\x1b\xd6\x01\x28\x1d\x3b\x66\x6f\xd8\x9d\xc7\x9b\x49\xdb\x8d\x8c\x00\x14\x71\x2f\x82\xd3\x3f\x70\x3e\x20\x2c\x7e\x22\xc6\xe6\x0d\xea\x03\xc0\xc3\x78\x1d\xc9\x26\x5e\xab\x6e\x54\xbc\x26\x88\xba\x64\x9d\x6c\x29\x5c\xe7\x18\x7c\x55\x9b\xc6\x1b\x0e\x60\x7c\xdf\xe0\xb1\x60\x10\x80\xe9\xac\xfe\xa2\x22\x4d\x00\xa6\x45\x23\x37\x48\x0c\x00\x30\xee\x08\x38\x20\x95\xd3\x91\x6a\xdc\xb0\xdc\x55\x6e\xf1\x87\x4f\xc6\xdb\xa3\x74\x14\x9b\x5b\x5c\x8c\xca\x92\xde\xa9\xba\xbe\x9a\x69\x24\x7b\xd6\x4a\xfd\x56\xe3\x1c\xc3\x73\x15\xfe\x9a\xf1\xf5\x0b\x0c\x2f\x34\xdc\xd3\x52\x7c\x1a\x61\x54\xd5\x39\x41\x73\xcc\x9d\x4a\x93\x68\xe8\xd2\x5e\x74\xf5\x9e\xe9\x59\xf8\xa4\x13\x58\x68\x6f\x96\x02\xef\x75\x2e\x9d\x77\x34\xdb\x0d\xdf\xb4\x9b\x7a\x7c\x6f\x74\xcd\x47\x43\xa7\xf6\xbc\x93\x53\xcd\xc2\x00\x34\x37\xa6\x2e\x30\x5b\x0d\xa0\x51\x7c\x64\x8d\x59\x3d\x80\xc6\xa6\xe4\xe9\xe6\xd2\x00\x1a\x3a\x07\x2b\x4c\xf7\x02\xa8\x16\xee\x1f\x64\xba\x0f\x40\x55\xe2\xcf\x71\x80\x6b\xff\x5c\xfc\x64\x0e\xc6\x2f\x46\xe3\xe7\xfc\x10\xd4\x36\x53\xe4\xea\x43\x70\xfe\x20\xd6\x39\x32\x3f\xbb\xd1\xae\x58\xeb\x87\x80\x1c\x80\x9d\x90\x95\xad\xd8\xca\x5f\x86\xb6\x61\x1e\xe6\xd2\x45\x1f\x7f\xd9\xf1\xfb\x39\x28\xa8\xbd\xed\x6f\x1b\x1e\xb4\x4e\xf5\x7e\xa3\x9b\x8d\xfb\xc6\xab\x5a\x79\x8f\xbf\x59\x9b\xec\xbd\xa2\xf7\xae\x56\xcf\xf2\x61\xe6\x44\x83\xc6\x7b\x83\x2c\x6a\x4b\x8f\x1b\x35\xdd\xf9\x60\xb1\xfc\xd1\x49\xe3\xf6\x5b\x57\x2c\x1a\x3f\x67\x1b\xa7\x5d\xe3\xb3\x5a\x05\x7b\x8d\x1f\x5e\x7c\x67\x9d\x0e\x89\xc6\x8f\xce\x58\x5a\x87\x42\xae\x11\xc9\x58\x69\x2b\x0e\xe9\x46\xbf\x4e\x5c\xb5\x7e\x0e\x37\x0c\x8c\x8e\x95\xd8\xfc\x84\x52\x83\x07\x87\xc3\xad\xeb\xe0\xa9\xfe\xa0\x43\x53\x6d\x96\x41\x83\xbe\xc4\x81\x19\xd6\x6f\xa0\x4d\xf7\xca\xde\x8b\x36\x23\xa0\x5d\xd7\x7b\xf7\x40\xeb\x16\x00\xed\x67\xb1\x1d\x56\x19\x00\x9a\x59\x7f\x8e\x7f\x12\x6c\xfe\xa4\xe7\xff\x39\xfe\x57\x92\x3d\xb5\x72\x3c\x38\x77\x1e\x9e\xd3\x83\x38\xbc\xa1\x38\xd0\x58\x08\xdb\x91\xfb\x09\xe5\x40\x5e\xfd\x0e\xc3\xc1\xcf\x8c\xcd\xc5\xa6\xb7\x4e\x75\xbb\xe4\xd2\x4f\xde\xb5\x71\x8e\x6b\xc6\xa8\x47\xea\x46\x8f\x84\x06\x9e\x9d\xa5\xa4\x1b\x57\x5d\xe5\xf2\x76\xf5\x46\x23\xf9\x9b\xe3\x9d\xad\x62\x78\xcc\x2a\xaf\x8b\x3a\xae\x3f\x5e\x69\x15\x50\x52\xdf\x5f\xa4\x70\x80\x4d\x43\xf1\x61\xfb\xae\x7b\x8b\xed\x94\x8b\x6c\xed\xeb\x5a\xbd\xed\x86\x5e\x90\x73\xe8\x02\x6d\xdb\x80\xac\x93\xfd\x7f\x81\xbd\x8d\x67\x6a\xa7\xe3\x28\x98\x60\xe5\x79\x38\xcc\xc9\x02\xa6\x59\x3e\x39\xb4\xdf\xa9\x0e\x66\x5b\x6e\x3b\xa0\xe8\x58\x04\x5b\xcd\xee\xef\x13\x76\x9c\x06\x07\x4c\x4d\x76\x1f\xef\xff\x0d\x72\x8c\x67\xc4\x2a\xf7\xff\x06\x97\x8c\x8c\x76\x4a\xf5\xdf\x05\xb7\x0d\x76\x6d\x7f\xed\x70\x0c\x1a\xf4\x0f\x46\xae\x77\xc8\x85\x37\x7a\x2f\xe1\x0f\x1d\x14\xcf\xe9\x5e\xf1\x33\xfe\x57\xbd\x8e\xa2\xc9\x3a\x16\xf7\x67\xf6\x34\xc8\x7c\xf1\x87\x32\x3f\x74\x2f\x3c\xbf\xf2\xf5\xf9\xb8\x8d\xb2\x93\x09\x69\x56\x1e\xa7\xa8\xab\x24\x9a\xf9\x6c\xfa\xe8\xa9\x76\x13\xe5\x4f\xdd\x9b\xea\x35\x62\x18\x9f\x8e\x4b\xc5\x32\xcf\xbb\xfe\x7a\xc6\x3b\x4a\xce\x0f\x3b\xb3\x24\xd5\xb2\xb2\x50\x70\xc8\xbc\xad\x09\x76\xbf\xf2\xa6\xb9\xf3\x27\xc9\x3b\xd6\xe6\x1e\x1e\xa4\x76\x76\x97\x4b\x72\x66\xa7\xeb\xe9\xca\xf2\x81\xa3\x4f\x0d\x1c\xf8\xeb\x85\xd4\xc0\x92\xf4\x69\xae\xab\xba\x52\x06\x34\xa4\x0c\x71\x9b\xdc\x75\xc7\x79\xd9\xfe\xd6\x41\xbe\x5d\xaf\x9c\xdc\x13\x4a\xdd\x5e\x83\xb4\x43\x64\x9c\x8d\x5b\x1d\x18\xd9\x5d\xdb\x95\x35\xc8\x1c\x6c\xec\x0c\x76\x68\xb9\x69\x42\x80\xd5\xc3\x6d\xdf\xdc\x54\x20\xc4\x72\x7e\xc4\x0b\x57\x63\x88\x36\xd7\xde\x6c\x37\x70\x31\x1c\x37\xe9\x08\x7f\x30\xe0\x1e\x14\x1a\x5d\x5f\xf7\x79\xc0\x69\x28\x33\x7c\xf2\xbb\xff\x73\x3a\x18\xa1\xf7\x2c\xfe\xfe\x14\xcd\xd9\x2e\x89\xd3\x70\xb6\x2b\xc0\xe9\x21\x30\xee\xae\x31\x13\x71\x77\xa3\x7d\xeb\x54\xcc\xcb\x1b\x87\x19\xb1\x22\x7b\x08\x79\x72\x65\xa6\xaa\x9a\xbf\xb0\xca\xdd\x3e\xd3\x05\xcd\x35\xfa\xea\x5f\xeb\x9c\x42\x5c\x1f\x6b\x0f\x2d\x50\x9a\xb0\x74\xac\xbe\x85\xd1\xe9\x3e\xe3\x92\xe6\x6a\x38\xb8\x9d\x7c\x3e\x3a\x6f\xdd\x05\x97\xa7\xc7\xac\x7c\x22\x13\x16\x0d\xba\x93\xac\x3a\xb2\x23\xc3\xc9\x23\x2d\xb1\x61\xc4\xa0\xd2\xb4\xa1\xb5\xfb\x34\x86\xbf\x7d\xdc\x3a\x6c\xd3\x1e\xa3\xe1\x55\x5f\x2f\x0d\x33\x8c\x35\xf7\x54\xe9\x1a\xed\x21\xb9\xdd\xc2\x33\xba\x6b\xcb\x20\x87\xad\x8f\x3d\x67\x74\x65\x0c\x7c\xbb\xc5\x6a\x78\x63\xd7\x3d\x97\xd5\xe1\x30\xfc\x6a\xd7\x4f\xc7\x27\xeb\xbe\x0d\x37\x01\x25\x87\xb2\xb5\xb3\x87\x35\x82\x95\x5d\xf3\x9a\xd5\x43\xf7\xc1\x68\x9b\x8d\xab\x06\x0f\x9d\x08\x33\xad\xc9\xf2\x81\x43\x16\x40\x94\xf9\xf9\x65\xe9\x43\x92\x20\xca\xfc\xf4\xef\xf8\x79\x59\xbf\x57\x55\xe9\x1d\xbf\x0b\xdb\xe5\xf0\xac\xa1\x38\x1e\xf3\xf0\xa3\x2d\x00\xf7\xa7\xde\x85\xcd\xc3\x73\x3c\x2f\x92\x83\x1e\x77\xe3\x23\x9f\x25\xfb\xba\xb1\xea\x71\xa8\x98\xd2\x49\x42\xae\x8a\x06\x7f\xef\xd7\x2e\xeb\x7c\x21\x65\x61\xa3\xa3\xa1\xa6\x66\xa6\xf6\x9c\xae\x91\x21\x66\x41\x87\x27\x06\x0a\x4c\xbd\xee\x3c\x68\x5f\xfc\xd4\xeb\xcb\x95\x06\x2f\x8e\x0d\x9d\xdc\xb6\x63\xfc\xb0\xc5\xdb\x57\xfb\x2d\x3e\x9a\x33\x52\x37\x62\xdf\x84\x0d\x05\x9e\xde\x67\x37\x0d\xf2\xbd\x77\x6f\xaa\x4f\x6e\xf8\x3b\x5f\xc7\xb6\x0d\x3e\x45\x61\x6e\xbe\x99\x9d\xe5\x5e\xea\xab\x62\x7d\x5d\xba\xa4\x87\x2f\x0f\x9d\x31\x2e\xaf\x6b\xe4\x10\x9d\x50\xd9\xb1\x0b\xba\x96\x0f\x3e\x1f\xf2\x7e\xec\xcc\xae\x44\xb7\x90\x10\xa1\xd1\x09\x5d\x55\x2e\x9f\x83\xef\x8d\x8a\xe8\xfa\xec\x14\xbd\xc8\x79\x94\x0a\xf4\xe9\xef\xb9\x70\x89\xcf\x5a\x30\xb5\xf7\x5a\x90\xe5\xb5\x0e\xc6\xdb\xa8\xce\x4d\x1e\xf9\x08\x96\x59\x46\xfd\xee\x07\xf2\x11\xbd\xdb\x3f\x17\xbf\x97\x38\xc5\xc9\xe8\x57\xdd\x71\x6d\x36\xb6\x8b\xd6\x4d\x8b\x71\xff\xa6\xa1\x68\x39\xfa\x77\xd7\x1e\xa2\xbb\x22\x37\x37\xac\xc7\xfa\x30\xa5\x36\x9b\x14\xa4\x26\x10\x72\x7e\x63\xf8\x09\xcd\x52\x89\xaa\x53\x47\xc3\x14\xad\x25\x55\xc7\x25\xe7\xae\x2c\xf3\x08\x30\xca\x8d\x77\x5d\x3a\x7c\xa2\x6e\x7f\x12\x61\x17\xe4\xb8\xe0\xd0\x90\x53\x61\xd9\xf3\x55\x37\xc9\x8c\x9c\x1c\x7a\x73\x4e\x42\xe2\xf7\x51\xd1\x4b\xa4\x67\x6d\x39\xc3\x3f\x76\x52\x90\xf7\x8c\xec\xca\x63\xe3\x5a\xe6\xdf\x0a\xdc\xfe\xa2\x60\xdc\x8f\x79\x8a\x81\x91\x9d\x9e\x63\x47\xcf\xd6\x9f\xae\xdf\x79\xd6\x5b\x79\xd6\xe3\x69\x89\x9d\xad\x23\xec\x66\xc4\x4e\x5d\xd0\x65\x35\xd4\x7b\xa6\x81\xff\x9c\xae\x40\xf7\x44\x4e\xef\x31\x5d\x63\xd2\x9c\xae\xf3\x03\x6d\xa7\xdf\x9a\xb8\xa1\xeb\xa1\xf3\xf7\x80\x07\x13\x8e\x75\x7d\x76\x92\x9d\x52\x30\x3e\x1f\xb4\xec\x4f\x4f\x29\xf5\x9d\x01\xf6\xb6\x1d\x00\x12\xac\xee\x8f\x01\xeb\x07\xce\x32\x14\xbd\xa5\xc8\x1f\x3c\xf8\x37\xbb\xf9\x1e\xdd\xd8\xa2\xb3\xac\xb9\x1b\x9f\xed\x5f\x8b\x3c\xd8\x83\xfb\xf4\x7c\x7c\xa5\xea\x56\x3c\xef\x5b\x7c\x62\x3b\xe5\x3f\xe7\xec\x4a\xe6\xf7\x22\xe4\x54\x72\x8c\xb0\xb2\xb4\xd0\x82\x64\xd3\x1d\x65\xc6\xa5\x0a\x0e\x71\x69\xdb\x2a\x07\x14\xeb\xd5\x6e\x19\xb4\x39\x70\xf4\x7b\x9b\xa1\x2b\xf6\xad\x57\x9b\x35\xcb\xad\x70\xe1\xeb\x35\xc3\xd6\x4e\xf5\x74\x9a\xbd\x76\x55\x74\x82\x87\x97\xdf\xf4\x79\x2b\x05\xb3\x84\x7d\x46\x4c\x29\x0d\x5d\x52\xf6\x79\x94\xea\xe4\x65\xcb\x77\x3d\xb7\xf7\xf9\x36\x69\xe9\xf2\x13\x3f\x3b\xbc\xe7\xfb\x7d\x0b\x71\xef\xec\xf2\xcc\xf1\x1b\xb0\x38\xb3\xcb\x61\xe8\x72\xbf\x6d\x0b\xbb\xba\xc6\x7a\xbc\x9c\xe8\x31\xff\x59\xd7\xce\x41\x63\x26\x8a\xcd\x1d\xd9\x95\xe3\xaa\x31\xd1\x70\xd6\x8d\xae\xeb\x03\x36\x4d\x70\x9b\x39\xa2\xeb\xad\xb3\xc9\xf8\x73\x81\xb3\x41\xc0\x51\xd3\x37\x3f\xe0\x13\xe8\xd8\x3f\xf4\x35\x9d\xb6\x0e\x1c\xec\x2c\xff\x45\x07\xc2\xe2\xa7\x3a\x90\x6f\x71\x41\xc8\x47\xb4\xc0\x4a\xac\x0b\x51\xff\x74\x23\xce\xa3\xf7\x67\xd3\xfa\x48\xe5\xd7\x77\x22\x6f\x57\xec\xbd\x1b\xf7\x2f\xcf\xe6\xec\xc3\x3c\xa6\x4b\x26\xe2\x39\xf8\x94\xbd\x49\x63\xfb\x7c\x26\x24\x7e\xce\x01\x63\xdd\xf5\x32\xc3\x22\x06\xed\x53\xb1\x2f\xd7\x28\x5a\x39\x68\x77\xcc\x88\x8d\xa6\xdf\xe6\x5d\x8a\x91\x9e\xd6\xe4\x74\x3c\x60\x5a\xf4\xe9\x95\x32\x6e\x77\xfd\x3e\xef\xd0\x8c\x2d\x76\x6f\x18\xd7\x15\x95\x77\xf2\xe9\x90\xdb\xa3\x67\x45\x2e\xb8\xaa\x31\xb4\xc8\x47\x64\xdb\xfe\xa7\x7c\x43\xe7\x7a\x0f\xdc\xe6\xd1\xb1\x65\x88\xa8\xf7\xd6\x4d\x9f\xbb\xc2\x07\x3b\x7a\xf3\x87\xbf\xe8\xca\x74\x5d\xe1\x15\x12\xd6\xd5\x55\xeb\x52\xe1\x3d\x6d\xf5\xd6\xae\xe7\x2e\x56\xde\x13\x43\x3b\x80\x38\x09\x7b\x1d\x5b\xbe\x1a\x94\xfb\xab\x78\x8f\x0c\x59\x08\x7a\x0e\x23\x46\x76\x06\x8b\x83\xb7\xad\x8a\x57\xca\xc2\xf9\x30\xd9\xfa\xb3\x57\xbf\xf9\x19\xb0\xc8\x6a\x2a\x80\x0d\xdb\x25\xf4\x64\xe7\xfe\xa7\xe2\xf7\xff\x59\x10\x8c\xfb\xd7\xad\x3a\x6b\xf0\x3e\xd7\x7b\x6f\x41\x5d\xc7\x3d\xd8\x89\xbb\xe1\xe5\xea\x71\xd4\xff\x60\xff\xbe\x29\x34\xfe\x24\xf4\x45\x3f\xc9\x43\xf5\x01\x87\x22\x8e\xa3\x8e\x2a\x2e\x36\x3d\x4d\xf0\x2b\x21\x5b\x8b\x4f\x74\xa8\x36\x89\x1a\xac\x56\x4b\x8d\xb6\xd8\xab\xd8\xb1\xd0\xec\xe8\x29\xf7\x2f\xfa\x77\xa7\x8c\x4e\xb1\xf4\xfb\x68\xd3\xdf\x77\x50\x52\xd6\xd2\xbb\x0e\xcf\xbc\x5f\x1c\xda\x10\xdd\xe2\x94\xef\xa9\x75\xd0\x3d\xcd\xd0\xe5\xd0\x90\x7d\x07\xe4\x2e\xdf\x1c\x10\xee\x3e\x3b\xd1\xee\x51\xdf\x01\x23\x07\xaf\xd8\xff\xfd\x8b\x88\x73\x9e\x7b\xdf\x84\xf4\xae\x9f\x8e\xb9\x83\x8f\xc7\x86\x83\x8e\x83\x90\xbb\x58\xf4\x13\xb0\xb2\x27\xee\x9f\x22\x13\xc1\xc9\x6e\xa9\x47\x6c\xc4\x34\x18\x6c\x5b\xef\x31\x7b\xa3\x1b\x04\x58\xa7\x7b\xc8\xad\xbf\x00\xcb\xac\x78\xdd\x3f\xad\x2d\x80\x08\x8b\x10\x0f\xb3\x55\xc6\x90\x60\xae\x35\x78\xd8\x8a\x89\x70\xc1\xf8\xd1\xef\x79\x8f\xb6\xff\x5f\x02\xc1\xc8\x4b\xb5\x2e\x0e\xc3\xf5\xc2\x33\xb7\xad\xa3\xf1\xfe\x8f\x8f\xc1\xdd\xee\x1b\x02\x7b\x5a\xe9\xfd\xa7\xbc\xe8\x39\xf3\x23\xc8\x87\x9f\x1a\x7c\x02\xfb\x49\xca\xa8\x53\xd8\x2f\xe2\x21\x07\xdb\xcb\x96\x37\x67\xf1\xbc\x7b\xd8\x8f\xbc\x27\x0a\x2d\x84\x2c\x72\x3f\x2b\x6b\xf0\x4d\xe6\x4d\x80\x63\x6e\xed\x00\x7d\x0d\x83\x31\x5a\xd9\x13\xc6\x99\x18\x4f\xf3\xfc\x96\x35\x6f\xb1\xa4\xf9\x58\xf7\xbb\x99\x51\x91\xfb\x2d\xbf\xba\x2a\x64\x6c\x3d\x5a\x65\x9d\xe9\xbc\xef\xd4\xc5\xa2\x07\x36\xbe\x8e\xd1\xa7\x44\x6a\xd3\x6c\x34\xfa\x37\x9d\x8c\x6a\x37\xb3\x3a\xeb\xb8\x28\xf5\x23\x2c\xb3\x78\xe3\xb8\xe1\x70\x33\x6c\x35\x0f\x76\x4a\x3a\xd8\x0a\xdb\xcc\x63\x9d\xe4\xf7\xbb\x42\x8a\xe9\x46\x67\xed\xdd\xcb\xe0\xa8\x69\xb0\x73\x54\x8c\x02\x64\x99\xac\x73\x5e\xb2\xe3\x0a\x14\x1a\x9b\x38\xcf\x8c\xd2\x83\xeb\x46\x66\xce\xdf\xb6\xac\x84\x2a\xc3\x61\xce\xf9\x9b\x94\xe1\xb1\x81\x16\x37\xfe\x81\x77\x30\xf2\x37\xef\xe3\xc2\x30\xbe\xe7\xeb\x22\x71\xf7\xb8\x26\x2b\x1e\xf5\x51\x15\x6b\x12\xf1\xfe\x17\x9f\x4c\xf9\xd9\x8d\x79\x33\xa9\x3f\x4a\x46\x4e\x06\xfa\x06\x1d\xbe\x9d\x8b\x3a\xcb\x3d\x5a\x79\xb8\x6b\xbc\x7d\x54\x3e\xd6\x45\x59\xeb\x78\x09\x7d\x04\x16\x45\x5e\x39\x2f\x72\x9a\x90\xc0\xec\x2b\x82\x9a\x79\xa2\x17\xc6\xd5\x17\x27\xda\x1d\x57\x58\x3a\xb4\xb9\xa8\xc5\xeb\x8d\xd6\x77\xd7\x17\x45\x21\xf3\x12\xf4\x26\x38\x29\x17\x7e\xde\xdc\xda\xaf\xc4\xae\xac\xd0\x32\x79\x9f\x61\xa0\xf5\xdc\x82\xc4\x7c\x4b\xc3\x0a\xcb\x84\xfc\xc6\xfb\x63\x0c\x23\x2d\x95\xf2\x27\xbc\x6b\x32\x70\xb3\xcc\x38\xdf\x17\x1a\xf5\x97\x59\xc9\xe6\xdc\x86\x37\x7a\x2d\x56\xd2\x19\x47\xe0\x83\x9e\xbc\x55\x6b\x9a\x0f\xbc\xd7\x73\xb6\x7a\x70\x64\x0d\xfc\xd4\x15\xb6\x31\x49\x9a\x0d\x9f\x74\x3f\xda\x5c\x4c\x1c\x09\x5f\x75\x33\x6c\xf9\xf7\x8c\x81\x5f\xba\x22\x36\x5f\xe3\x57\x02\xe8\x38\xd8\x06\xec\x92\x05\xd0\x8e\x87\x13\x8b\x70\x37\xfb\xfd\xd9\x75\xb8\x3e\x6c\x58\x41\xc7\xb9\x9a\xc0\xdd\x38\x6f\x54\xfc\x38\x88\x3c\xf8\xa5\xaf\xb4\xbd\xe7\x25\x9d\x44\xde\x3b\x53\x23\x07\x77\xd1\x8f\x34\xd0\xb8\xf7\x3b\xe6\xe3\x78\xbb\x73\xe7\x25\x3c\xff\xba\x21\x98\xfa\xa4\x84\xb4\x5d\x47\xbe\x7f\xfa\xb2\x4a\xe4\x0d\x27\x66\xdd\xba\xa8\x64\xc2\x93\x3a\xfc\xd5\xcd\x19\x66\xba\x52\xed\x2e\xf7\x2b\x53\x87\xca\x28\x09\xdb\xbb\x57\x1e\x9c\x31\x40\xe5\x92\xe5\xa7\xca\x55\xeb\xd7\xa8\xdd\x34\x7d\x5b\xa9\x7e\x80\x4f\x43\xc2\xe8\x79\xc5\x9e\x73\x47\x34\x2c\x0d\xc7\x55\x0c\xad\x5a\xad\xde\x61\x50\x58\xde\xd2\xb2\x4e\x6d\xa6\x61\xe8\xf5\x00\x00\x95\x5c\xa3\xd8\xcb\x43\x01\x54\xef\x1a\x09\x14\xc4\x00\xa8\x24\x19\x55\xe7\xe9\x01\xa8\x9a\x19\x1f\xce\x91\x03\x50\x8d\x32\x19\x78\xaa\xfb\xe7\xa7\x4d\xae\xa4\x1d\x06\x50\xbd\x63\x1a\x7e\xd4\x18\x40\x4d\xc4\x74\x4b\xf2\x7e\x00\xd5\x25\x66\x5a\x07\xa3\x01\x54\x53\x3f\xbd\x5d\x8f\xf7\xb1\x69\xd3\x76\xe4\xb1\xea\x42\x13\x90\x05\xb9\xc5\x74\x6f\x25\x16\x69\xa8\xeb\xb9\xf0\x21\x0b\xc7\x8b\x6c\x99\x33\xc8\x2e\x1c\x6f\xb9\x88\xfc\xf5\x41\xe6\x13\x12\xf7\xac\x14\xc7\x97\x88\x11\x65\xbf\xba\x71\xb5\xf3\x4d\x1c\x37\x17\x92\x2a\x64\x13\x26\xb9\x3d\xc0\xfa\x22\xc3\xd3\xeb\x5e\x89\xae\x20\x64\xc0\x98\xba\xfb\xba\xa7\x45\x78\xad\x75\xeb\x60\x40\x9b\xf4\x4a\x53\xaf\x87\xd3\xfc\xd7\xc8\xee\x34\x28\x78\xb8\x62\x55\xa8\x9c\x88\x9e\xf1\xc3\xa5\x09\x99\x72\x67\xb5\xb3\x1f\x6e\xc8\xdd\x24\x97\xa3\x65\xf7\xd0\xf6\xa6\x67\x9f\x56\xcd\x9a\xba\xf6\xd7\x9f\x65\x37\x68\x0d\xae\x55\x00\x90\xf6\xd2\x72\xad\x12\x01\x90\x0e\xd6\x5a\x56\xa1\x07\x20\x5d\xa0\xb5\xf7\xda\x64\x00\xe9\x27\xda\x0b\x8a\xe7\x01\xc8\x94\xe9\x18\x5f\x4c\x04\x90\x5d\xa5\xbd\xe3\x1c\x1f\x80\x4c\xa8\x9e\x43\x76\x10\x80\x9c\x8f\x5e\xc2\xa9\x57\x00\x72\x8b\x75\x03\x4f\x5c\x02\x90\x2d\x7a\x3d\x77\x07\x9e\x5b\x7f\xd4\x87\xfa\xa2\xdc\xce\x4a\xc6\x75\x73\x69\x5c\x3a\xea\x02\x2f\x6e\xa7\xfd\x3c\xe7\x1a\xad\x13\x95\xae\x45\xeb\x44\x25\x7d\xa5\xf7\x3b\x61\x52\x19\xf2\xfd\xdb\xd3\x29\x7b\x16\x9e\x4b\x79\xc2\x65\x84\xea\x23\x66\xc6\xd7\x21\x0f\x3c\xd6\xe7\x19\xae\xcf\x9c\xab\x9b\x50\x97\x6a\x55\xfa\xca\x5c\x69\x2f\xcf\x70\x83\xf1\xaf\x6c\x6c\x1e\x89\x48\xe9\xb8\xbc\x9e\x36\xf6\xa6\xa8\xa2\xc6\xf6\xd7\x8f\x96\xdc\x11\x3d\xac\xfa\xf1\x4d\xe6\x2e\x7f\xd1\x24\x15\xa7\x37\x31\xa7\xb6\x88\x0a\x2a\xdb\xbe\x15\xb8\xde\x2c\x9c\xa1\xf4\xf3\xcd\xee\xa6\x2c\xa1\x3e\xca\x0b\xdf\x8c\x01\x10\x50\x57\xfe\x51\x1f\x0c\x20\xf8\x46\xc5\xa4\x2e\x0d\x40\x28\x49\xc5\xa1\xfa\x29\x80\xd0\x3b\x55\xb9\x9b\x51\x00\x22\xcb\x55\x23\xae\xab\x00\x88\x9a\xa8\x8e\xbb\x52\x01\x20\xf2\x5a\x6d\x77\xd1\x01\x00\xb1\x78\xf5\x8e\x0b\x36\x00\x12\xfd\xd5\xa7\x9c\x09\x03\x10\xf7\x79\x3c\x83\xfa\xe2\xdc\xad\xa4\x75\xe1\xca\x9c\xe9\x38\x57\x28\x77\x06\xdb\xc7\x19\xef\x7c\xd4\xd5\x9e\xbc\x5b\x8c\xf7\xf9\xf0\xfa\x6b\xb8\x4e\xda\x7b\xb6\x1c\xf5\x1c\xbb\xe2\xee\xe0\xdf\x6f\x9e\x75\x0f\x7d\x82\x56\xf1\x51\x9f\x94\xa0\x59\x4f\x31\x8f\x53\xef\x37\xe0\x3c\xe2\xb5\xfb\x35\x8e\x27\xf6\xfe\x6d\xf8\xf7\xda\x16\x9f\xaa\x05\xf7\x13\xa2\x3a\xec\x8b\x4f\xbf\x6d\xbc\x8b\x94\x92\xbe\xb6\x0d\x3f\xc4\xc3\xab\xa8\xd5\xb1\x7c\xde\x12\x42\xfa\x1e\xfe\xbe\x65\xeb\x0b\x42\xfa\xf0\xfd\xb0\x39\x66\x49\x88\x74\xf3\x8f\xbc\xcb\x0f\x09\x91\x52\xfe\x29\xf6\x54\x8d\x10\x89\x29\x3f\xbe\xfc\x94\x24\x44\x6c\x54\x3b\x56\x0e\x10\x21\xcd\xc8\x5f\x08\x7f\x69\x42\x65\x81\x50\xec\x13\xf4\x75\x10\x96\xac\x41\x7d\x83\xf0\xaf\x2a\xdc\xd7\x14\x98\x55\xb9\x15\xaf\x65\xcb\xf0\xe4\xb5\xc0\x83\x12\xdc\xf7\xaf\xbe\x7a\xc4\xeb\xcf\xf8\x8b\x46\x9d\x35\xc5\x79\x20\xb8\x10\xfd\x0e\x32\x03\xa9\xfe\xeb\x98\xe7\x0d\xd4\x53\x1e\xf8\x74\x1b\xc7\xd3\xb8\xaa\x6a\x56\x17\xaa\x16\xd7\x55\xeb\xd3\x9e\xe0\x7c\xba\xfc\x72\x23\xfa\xa6\xcc\x4d\x79\x85\xe7\x12\x26\x49\x35\xe3\x38\x33\x7c\xf5\x07\x5c\x97\xd8\xe4\x7e\x43\x5d\x84\x8a\x25\xa0\x7e\x40\xe2\x06\x80\xfc\x7e\x42\xc4\x5e\x02\x38\xba\x13\x22\x6a\x06\xe0\xf7\x98\x10\xe1\x6c\x80\x95\xd1\x84\x08\x2e\x02\xd8\xbd\x99\x10\x01\x2f\x80\xac\x5d\x84\xf0\x7c\x01\x28\xdb\x48\x08\x5f\x05\xc0\x73\xc6\x57\x76\x48\x93\xdf\x7c\xbe\xff\xa7\xf1\x88\xa4\xb9\x82\x62\xd3\x7d\x8a\x4f\x99\x33\x49\x0d\x75\x1c\x88\xb8\xcb\x7e\xef\x56\x2d\xee\xeb\x1f\xca\xc2\x71\xae\x18\xf2\x98\xff\xc5\x25\x6c\xb7\x59\x21\x65\x02\xdd\x98\x1a\x7f\x13\xd7\x07\x49\xf7\xef\xe2\xbc\x92\x50\x5e\x83\x3e\x2a\xd1\x1a\x8f\x51\x87\xbc\x29\x8e\xf2\xe3\x6b\x16\xbe\x44\x3f\x9c\xc5\x71\xcd\xa8\x17\x9b\x39\xe5\x3d\xe6\xd3\xb7\xeb\x33\xe6\xc1\xdd\xef\x3b\x3e\x8f\x59\xaa\xd3\x4f\x57\xf8\x4c\x51\xe0\x2a\x80\x44\x3e\x12\xee\x60\x32\x89\x9e\x73\x1f\xe1\x44\x08\x8f\x08\xc0\xbc\xf1\x8c\xdf\x2e\x22\xbd\x78\xed\x33\x8c\xff\x2c\x67\xd7\x4f\x43\x09\x21\x5b\x01\xda\xce\x93\x3f\xf8\xfc\x1f\xcc\x99\xa1\x9d\x31\xb3\xcd\xe1\xbd\xf3\xf2\x8c\x5d\xd7\xa2\x57\xf1\xe5\x59\x79\xe8\x07\x77\x51\x86\xd6\x89\xca\x59\x78\x1d\xd7\x91\x27\x82\x68\x9d\x2c\x4e\x07\xb5\xaf\xed\xa1\x42\x37\xc6\xc8\x3d\x45\x7d\x58\xa4\xfa\x0b\xfc\x76\xeb\x0e\xbd\x9e\xdf\x8d\xa1\xeb\xda\x66\x77\xe3\x82\xb5\x9f\x44\xbb\x31\x80\x74\xe0\xf8\x38\x66\x4f\x17\xce\x43\x6e\x6f\xe8\xa7\x72\x3e\x18\x9c\xfe\x81\xf8\x01\x08\x75\xbf\xe3\x44\x00\x03\xe6\x6c\xe9\x51\x4a\x71\x3a\xdb\x01\x5a\xc5\xae\x39\x5e\xfb\x38\x5b\xf9\xe3\x9d\xdb\x02\x70\x9d\x55\x42\xbc\x5f\x40\xf1\x25\x7b\x22\xfa\xe1\xfc\x67\x5e\xbe\x7f\xa1\xf8\x91\x39\x58\x34\x33\x85\xc2\x0b\x64\xb2\xf3\x7f\x5d\x46\xdd\xf0\x99\xf4\x72\x54\x8d\x9c\xec\xba\x83\x75\x23\x39\x1d\xd4\x81\x85\x8f\x70\x1c\x8c\x7b\xff\x1c\xef\xff\xf6\xab\xaf\x71\xfd\xbd\xa5\xf4\x1d\xfe\x9c\xf3\x05\x5a\x52\xf9\x15\xc7\xcd\x39\x47\x7e\xa1\x8f\xd4\x64\xa6\xff\x19\xc9\xfc\x52\xb8\x7a\x28\x86\x92\x14\x65\x99\x3f\x08\xee\xfc\xcb\x92\xdf\x3a\x10\x02\x30\x80\xe9\x14\xc6\x33\x7e\x7a\x71\x1c\xc5\x4d\x19\x14\xf7\xb1\x9d\x31\x4e\xef\x80\x3c\xf6\x16\x80\x12\xa6\x13\xa8\x62\xfa\x86\x7a\xa6\x13\x69\xb7\xf8\x33\x1f\x3d\x79\xe1\x63\xed\xe5\x6e\x37\x9e\x2d\x28\xc7\x3c\x64\x4c\xac\xc2\xf9\xff\x78\x7b\x1d\xea\x62\x0f\xa9\x53\xdd\xdf\x9e\x84\xa6\xab\x74\x3c\x7c\x8b\xad\x30\x52\xeb\x23\xb6\xff\xf5\xbf\x3e\x57\x74\xe3\xca\xc1\x9d\x58\x9f\x33\x88\xc5\x35\x9d\xf9\xc1\x70\x7a\x20\xae\x3e\x90\x2d\xd3\x03\xe9\xb2\xdf\x93\x4e\xf8\x9d\x07\x7e\xe6\x70\xa7\xc1\x76\xba\x1c\x98\xd3\xa3\x0f\x73\x84\x9c\x39\xbd\x77\xbb\xd8\xc1\x1c\x00\x13\xdb\x7a\xe7\xe3\x34\xbb\xee\xe1\xf5\xd9\x4e\x59\x1d\xab\xa0\xc9\xe9\x3f\xbe\xf5\xff\x67\x5e\xb2\x9c\xef\x62\x7c\xa9\x6d\x0f\xb7\xd3\x7e\x50\x8f\xfb\x07\xfb\x4b\xa9\x1e\x26\x6e\x57\x1b\x9e\x3f\xd8\xee\xfd\x09\x5b\xdd\xa6\xc3\xdf\x71\x5d\xc0\xf9\x02\x85\x8c\xa5\x38\x9b\xd5\x49\xe2\xda\x01\xe7\x0b\xe3\xc6\xf2\x61\xb5\x0a\x7a\xe9\x1f\x24\x63\x7e\xe7\x81\xb7\x91\xf4\xd2\x81\x58\x33\x9d\xcb\x30\xa6\x73\x98\xcc\xe2\x0c\x66\xfd\x61\x03\x6b\x3f\x31\x03\x7b\xe7\xe3\x18\x7b\x42\xcc\x66\xed\xa7\x47\xff\x51\xdf\xbb\x9d\x3c\x8d\xa5\xd8\x72\x93\x62\xe7\xa8\xee\x71\x80\xea\x3e\x8f\x6c\x6b\x40\x7d\xe0\x81\x29\x6f\xb0\x7d\x24\xac\xff\x88\x3e\x48\xbb\xe4\x3a\x70\x3d\xbd\x2d\xa8\x13\xf3\xd5\xa3\x03\x61\x3a\x18\x4e\x07\x12\xf0\x92\x22\xe7\x0f\xc4\xe9\xe3\x7a\x74\x20\x4c\x3f\xa4\xf1\x90\xa2\xc4\x13\xe8\xad\x03\x21\x00\x0a\x6c\xc7\xcf\x8c\xb5\x63\xb7\xcd\xbd\xfb\xc7\x6c\x16\x57\x28\xfb\xf9\x26\x16\x6f\x8f\xfe\xe3\x10\xc5\x14\x36\x4e\xfc\xad\xff\x28\xf6\xee\xdd\x4e\x1e\x30\x07\xde\x46\xae\x1e\x0c\x3b\xbf\x39\x88\x69\x22\x38\xfd\xc3\xdf\x3e\x18\x7f\x23\xe7\x8f\xc0\x9d\x0f\xe7\x74\x20\xa3\x98\x8e\x62\xd2\x32\x8a\xb3\x9d\x29\x2e\x65\xe7\x83\x37\x64\x50\x8c\x65\x9f\x77\x78\x1e\xc5\x1c\xf6\x79\x57\x8c\x28\xde\x1b\x40\xf1\x25\xe3\x1b\x7f\xc4\x13\xf2\x73\x3e\xe9\xad\x7f\x60\xef\xd1\xc8\xf6\xd8\x9f\x32\x3d\x44\x1d\xd3\x87\xdc\x67\x7b\xd0\x77\x18\x57\x7b\x73\x38\xc5\x32\xf6\x99\x7f\xea\x1f\x3c\xe8\x39\xfe\x7f\xe8\x1f\x7a\xd7\xc3\xf9\x6f\x1d\x08\x77\x3e\x9c\xd3\x0f\x78\xb1\x9f\x33\x3d\x0c\x99\xc9\xce\xc7\x87\xf8\xb0\x3c\xc8\xfe\x7b\x1e\x72\x59\xde\x4a\x4c\x28\x3e\x60\xaf\xbf\x3e\x4b\xb1\xbb\x45\x76\xb0\x33\xc7\xef\xb2\x28\xbe\x62\xdc\xcb\x73\x56\x9b\xe0\xb1\x28\xc5\x9a\x28\x8a\x77\xd9\x3d\xbd\x79\x9b\x62\x39\xfb\xcc\xab\x8c\xab\xba\xec\xf2\x3b\x0f\xff\xd0\xc1\xb0\xf3\xde\xd6\xac\x5e\x8c\x55\x39\xe9\xc5\x83\xff\xad\x03\x71\x9c\x40\x91\xf3\xd1\xf0\x64\xda\x1d\x5f\x16\x7f\x20\x8b\x63\xc9\x5a\x8a\xe1\x33\x28\xc6\x04\xfd\x95\x87\x51\xec\x1e\xb1\x7b\x57\x93\x42\xb1\x99\xe9\x32\xe0\x04\x21\x5f\xd9\x3d\x69\xee\xfc\xab\x1d\xa8\xf7\x6e\x07\xd5\x2f\x29\xde\x66\x6d\xfe\x6f\x1d\xd0\x95\x7a\x8a\x45\x6f\x7e\xe7\x61\xd0\xd9\xde\xed\x80\xd3\xc1\xfc\xed\x83\xf1\x9f\x3a\x90\x86\xde\x79\xe4\xfc\x45\xc6\x1e\xa4\x38\xad\x83\xe2\x22\xf6\x7b\xeb\x0f\xfe\x95\x07\x1b\x8a\x67\xd8\xfd\xb8\x56\xd2\x3b\xa6\x77\xc9\x84\x00\x3b\x63\xdc\xbe\x95\xe2\x1b\x39\xd6\x0e\x38\x1d\x10\xbb\x7e\xa0\x44\xb1\xca\xfd\xaf\x7e\xf0\x9e\x6c\xc6\xb6\xf6\x92\xea\x61\x8a\x58\x9e\x0a\x96\xfc\xce\xc3\x3f\xea\xa0\xb8\xf6\x8e\x97\x3b\xff\xce\xf1\x7f\x46\xdf\xd8\xcf\xaf\xf7\xce\x07\xa7\xa7\xe2\xfa\x07\x37\x4e\x4c\x65\xef\xbf\x90\xea\xd2\x36\xae\x5b\x87\x38\x39\x86\xfe\xdd\xa6\xc3\xc7\x58\x1e\xbc\x29\x5e\x4f\x62\xb1\x31\x4d\x4f\xfb\x33\x42\x7e\xb5\xf4\xee\x0f\x4d\xad\x54\x07\xc6\xe9\xc1\xb8\x7e\x50\xcd\x6a\x61\xdd\xcc\x27\xe8\x68\xf5\xb7\x0e\xea\xd2\x63\x82\x23\x76\xa1\x22\xd5\x8b\x5d\x18\xfc\x3b\x0f\xff\xe5\x03\x62\xf4\x85\x22\xc7\xff\xea\x46\xb0\x6b\xf6\xfd\x0c\x38\x5d\x0c\x7f\xaf\x71\x83\xd3\x49\x85\x7b\x51\x7e\x4c\x60\xf2\x4d\xc4\x3b\xf3\xb1\x9e\x0c\x6f\x5c\x18\xd5\xc7\x3d\xdd\xc5\xda\xff\x61\x36\x96\x9d\x13\x41\xdc\x7c\x83\x7e\xee\xc5\x67\xdb\x10\x6d\xbf\xc9\x13\xf2\xed\x16\xd5\x45\xbd\x7d\xcd\xf3\x1c\xdb\x81\x18\x11\xc7\x36\xe3\xce\x87\xfa\x98\x6a\x1d\x41\xfe\x6e\xbc\x95\x21\x90\xda\x8d\x37\x2e\x09\x62\x7e\x4a\xaf\xf3\xdb\x77\x63\xb1\x29\x7f\x34\xde\xff\x5a\x5e\x9c\xc9\xce\x1b\x0b\xa2\xc2\xf5\xac\xbb\x40\x12\x97\x07\xae\x1d\x70\xe7\xfe\x8d\x4f\x51\xd4\x61\xf7\x9b\xd3\x7f\x70\x3c\x30\x87\x9c\x3f\x08\xf3\x4b\x21\x96\xac\xbe\x90\x23\x3d\x17\xfb\x6e\x18\xea\xfe\xf8\x6e\x4c\xc4\xfb\x2e\x50\x30\x0f\xdb\x95\xf0\xfb\xb5\x38\x7e\x08\x6b\xee\xc2\xbc\x0b\x95\x1f\xd9\xdc\x8d\x82\x8b\xf2\xf0\xef\x05\x79\x6f\xe2\xbc\xc3\xff\xa4\x49\x01\xff\xfe\x73\x97\x29\x21\x1f\xb7\x0a\x96\x77\xbf\xf7\x0b\x31\x11\xbc\xcf\x8f\x82\xc4\x51\x1f\xc3\xf9\x21\xdd\x4c\x17\xc7\x99\xfb\x86\x97\x18\x3e\x3f\x5d\x95\x92\xc0\x27\x98\xe2\x42\x09\x74\xf6\x2a\xf0\x14\xc3\xeb\xf3\xf2\xe2\x78\xa6\xfd\xf4\x14\xf1\x90\x6e\xcc\x91\x17\x0b\xe2\xf2\xd0\xa3\x7f\xe8\xd3\x3b\x7e\x2e\x5e\x8e\xff\xe4\x78\x60\x0e\x55\xb8\x7c\xa0\xfe\x85\xab\x23\xc4\xe9\x83\x84\x33\x3c\xcc\xba\x51\x7c\x95\x2f\xfa\x69\x89\x7f\x99\xf3\xac\x1b\x25\xbb\xd6\x60\xbb\x97\xbc\xb2\x8b\xd6\xd7\x10\x3c\x8a\x9a\x47\xf1\xb3\x17\x31\x0f\xe2\xa3\xef\x60\x1f\x10\x9b\xf6\xc6\x8d\x90\x5f\x93\xc5\xf1\x39\xa8\xd9\x52\xd6\xa6\x1b\x9f\x46\xcb\x61\x05\xc0\xbb\xc7\x95\xef\x00\x08\x7d\x2c\xaf\x53\x8e\x01\x10\x3a\xc5\xf9\x61\x5d\xae\x54\x89\x06\x10\x19\xdb\xa3\x7f\xda\xa2\x9c\x04\x20\x54\x7a\x36\x4f\xb9\x04\x40\xa8\x39\x57\x5c\x79\x37\x80\xd0\xb6\x0c\x1b\xd5\x61\x00\x22\x8f\xd3\xef\x29\x7f\x02\x10\x7a\xfd\x67\x3f\xd0\x67\xf3\x9d\x86\x78\xef\x78\x39\x1f\x04\x19\xa6\xb3\xe4\xce\x83\x73\xaf\xd3\xdf\x13\xf2\xd1\x41\x3d\x84\xf8\x0c\x2b\x9c\xf7\xa5\x47\x0c\xc2\xb1\xbc\xcf\xf1\xb1\x38\x9e\xc8\x19\xcc\x42\x3d\xa0\x5c\xc4\x6a\xac\x9b\xd1\x97\x2f\x46\x00\xaf\x4f\x1d\x9f\x48\xc8\x2f\x77\x05\xc1\xee\xc7\xce\x6f\xbf\x14\x8f\xdc\x71\x20\xe4\xf3\x3b\xa5\xbc\x97\x6b\x09\x69\x8f\x55\x46\xdd\x64\xc3\x3a\x15\x49\x00\xa1\xac\xfb\xfa\x6a\x2e\x00\x62\x89\x95\xf6\xea\xd9\x00\x12\x45\xa5\xe9\xea\x43\x00\x24\xf4\x2f\xb5\xab\xed\x01\x10\x37\x2c\x10\x55\x17\x01\x10\x4f\xcf\x3b\xa8\x96\x09\x20\x2e\x79\x7a\x8e\xda\x71\x00\xb1\xa7\x59\x5f\xd5\x6a\x00\xc4\xbe\x9c\x7c\xa0\xde\x9d\xe3\xcf\xa9\x3f\xd5\xf5\x00\xc4\x9a\x8f\xc6\x69\xf8\x02\x48\xc8\xfe\x39\x0e\x68\xfe\xea\x1d\xbf\x34\xd3\xdb\x72\x3e\x00\x7c\xf1\xbd\x91\xbe\x2e\xbc\x4c\x1a\xf9\x7e\x4e\x17\xd3\xd7\xdc\x18\x7d\xd4\x94\x6d\x9d\x77\xf3\x64\x00\x28\xaf\xf2\x7e\xc8\x7b\x14\x40\x79\xd2\x0c\x41\xbe\x65\x70\x45\xe9\xfd\xca\xa9\xfc\x3c\xdf\x72\x55\x04\xb7\x57\x09\xf9\xb5\xef\x54\x39\x9c\xdc\x2e\x52\xd1\x96\xa8\x2a\x78\xe6\x81\x58\xce\xdb\x7b\xaa\xd3\xca\xf9\xc4\xdf\xbe\x3a\xaf\x7a\xbf\xde\x44\x62\xf8\x8b\x56\xb5\xc2\x8e\x3c\xf1\xd8\xba\x7a\x8d\x7c\x00\xc9\xb6\x9b\x7e\x5a\xf7\x00\x64\xa0\x74\x8b\xd6\x13\x00\x99\xe7\x85\x01\x3a\x83\x01\xfa\xcc\x3f\xff\x46\x5b\x13\x40\x26\xef\xf4\x03\xed\x0e\x00\xd9\xe0\xec\x7d\xda\xab\x00\x64\xf6\x9f\x8c\xd6\xba\x03\x20\xbd\x28\xed\xb6\xb6\x08\x80\xf4\xaa\x63\x92\xda\x17\x00\xa4\xdf\x1d\xde\xac\x75\x08\x40\x6a\x65\xd2\x18\x2d\x37\x00\xc9\x4a\xf8\x47\x1d\x14\x42\xa4\xcb\x7b\xc7\x4b\x26\xfc\x89\xfc\x6c\x35\x2f\x72\x88\x60\xfb\x91\xdd\x26\x84\x7a\x2a\xa5\xaa\xbe\xb8\x3e\x50\xd7\xd7\x39\xcf\xbb\x06\x40\x63\xbf\x9d\x32\xbf\x32\x80\xa6\xe0\xf0\x19\x02\xa5\x1d\x8b\xb4\x05\xa7\xf4\x11\x09\xfe\x30\x48\xc7\x69\x89\x88\x84\xcf\xdb\x23\x3a\xc9\x5b\x46\x4b\xe7\x37\x7d\xd4\xc9\xdc\xbf\xb1\x4f\x6a\xfd\x02\x9d\x75\x99\x69\x7d\x2b\x1e\x5f\xd5\x71\x2d\xf9\xa1\xa0\x58\x77\x5e\x67\x52\xdd\x17\x85\xa3\x35\xa7\x74\xf9\x3e\x3a\x28\xe8\xdd\x4e\xd7\xb7\x01\x50\x74\x29\x9d\xdd\x4f\x16\x40\x89\x3f\xff\xa5\x41\x28\x80\xf2\xa8\x33\xed\x06\xd6\x00\x4a\xae\xd9\xfd\x0c\xa2\x01\x94\x0c\x4f\x6d\x30\x70\x06\x50\xf4\x49\x6d\x30\xd2\x06\x50\x56\x38\xaa\x6d\xe0\x00\xa0\x60\x9d\xf4\xda\xa0\x06\x40\xc1\xf7\x60\xa2\xc1\x74\x00\xf9\x55\x89\xc3\xf4\x6f\x03\xc8\x05\xee\xf5\xd1\x9f\x05\xd0\x67\xfb\x9f\xfd\x9f\xbb\xff\x7f\xc5\xcf\xf8\x4f\x7e\x56\x0f\x45\x9a\xf9\x62\x70\xfe\x18\x1a\x1b\x28\xea\xeb\x8b\x61\xdd\x1c\x43\x51\x55\x17\x5e\xf9\xce\x6c\xc3\xd9\xa6\x67\x84\x64\xda\x6f\x9b\x0c\x72\xcb\x10\x17\x7c\x3b\xd5\xf4\x94\xaf\x87\x74\x47\x43\x91\xe9\xb7\x79\x0a\x7d\x23\x1f\xab\x9b\x2e\x0f\x7b\xa3\x94\xf8\x20\xd8\x24\x29\x6e\xa1\xea\xc3\xaa\xe5\xc6\x9f\x53\x3f\x6a\xc4\xdd\xcc\x35\xb6\x2e\xb4\xd2\xf2\x28\x3f\x6c\x74\xb7\x5a\x54\x5b\xf9\xfa\x3c\xa3\x5f\x6f\xdf\x6a\x3d\x2d\xbd\x60\x62\x03\xa0\x79\xfb\x42\x98\x69\x08\x80\x96\x6f\xf6\x4e\xb3\x0e\x00\x6d\x83\xf4\x57\x66\x67\x00\x34\x2f\x1c\x5f\x6e\xf6\x01\x40\xd3\x32\x25\xc3\x82\x07\x40\xf3\x64\xd2\x14\x33\x23\x00\xb5\x6b\x89\x4d\xa6\xcd\x00\xaa\xd7\xf6\x4a\x9b\xd9\x00\xa8\x4e\x8a\x3f\x6f\x2e\x0f\xa0\x9a\x17\x9b\x6c\xea\x04\xa0\xac\xb9\x33\xd0\xf8\x3b\x80\xa2\xda\x9f\xfd\xfc\xdf\xe3\x17\x64\x4f\x81\x72\xcb\x29\x6a\xad\x64\x71\xb3\xd7\x39\x5e\xdc\x12\xf7\x9d\x7e\x2a\x3b\xc4\xca\x95\x11\xf2\xae\xac\x7f\x85\x7e\xb9\xf0\x81\xa6\x14\x87\x2a\x87\x5f\x32\x9d\x8f\x0a\xfa\x8f\x1f\x59\xa1\x90\x51\xdd\xe4\xd0\x10\xf0\x44\xf5\x5d\xe5\x3b\xfb\xba\xe5\x1b\xb5\xd2\xaf\xdd\xb4\xdb\x1c\x75\x4e\x2f\xeb\xf2\x57\x5b\xfd\xe4\x9b\x06\x57\x0b\x33\x6c\xc4\xcf\x29\x1a\x0b\x5c\x3c\x6d\x2d\x56\xb9\xc4\x44\xe9\x7c\xb0\xd5\x85\xc6\x95\x26\xd6\x79\xd2\xd6\xf3\x3b\xdd\x8d\xbe\x66\xec\xb7\xd9\x01\xa7\x8d\x6c\x8e\x36\xd9\xc6\x43\x91\xe1\xa6\x43\xa7\x6d\x4b\xe1\xb6\x81\x78\xe2\x54\x5b\x7f\x78\xaa\xbf\x79\xef\x15\x9b\x07\xd0\xa2\x27\x11\xff\xc9\xd6\x09\x3e\xea\x46\xc4\xbe\xb7\xd1\x01\xd0\xde\x16\x2d\x66\xeb\x00\xa0\x1d\xbd\x5d\xc0\xfa\x3d\x80\xe6\xfc\xad\xc6\xd6\xfc\x00\xea\xe3\x36\x0f\xb6\x0e\x01\x50\x97\xf8\xdf\xf1\x2b\x9c\xa5\xc8\xf1\xa0\x5c\xdc\xf6\xed\xe4\x0f\x5e\xfc\x6b\x03\xf5\x89\x68\x1d\x3d\x3c\x56\xbc\x8d\x90\x06\xfe\x11\x8e\x1a\x2f\x85\x22\x6b\x74\x86\x75\x59\x7e\x90\x15\xbf\xc9\xe3\x71\x65\x70\xa4\x6a\x63\xe9\x31\xf7\xd0\x09\x75\x3a\x41\x85\x8b\x07\x35\x2d\xfc\x68\x50\x9b\xd7\xd7\xf5\xe7\xc6\xcb\xa6\xa1\x39\x99\x03\x4d\xf6\x8d\xb1\xec\x9b\x21\xe2\xb2\x2f\xf3\x85\xf5\xc9\x13\x73\x9c\x43\x4b\xc1\x36\xf8\xf8\x55\xa7\xa3\x8f\x5a\x6d\x1f\x1c\x53\x72\xba\xf4\x79\x90\xad\x5a\xd2\x2a\xe7\x7c\xf0\xb1\x9e\xb4\x57\xcd\x25\x0c\xe6\x58\x16\xc6\x7e\x75\x11\x86\x28\x33\xd8\x75\xd7\xf9\x38\x24\x9a\xee\xd9\x5e\xed\xec\x0c\xa7\x8d\xc3\xb6\xb6\x38\x77\xc0\x05\x63\xd1\x2d\x2b\x9c\x72\xa0\xda\x60\xee\xa6\xd5\x4e\x0a\xf0\x5c\xbf\x2d\xbc\xb2\xff\x47\xf8\xa2\xbb\x3b\x6c\xa0\x23\x3f\x74\xe9\xac\x5e\xa3\xe3\x10\x0f\xa0\xa5\xff\xcf\xf8\x79\xd3\x7b\xc7\xcf\xdd\x77\x8e\x07\x1d\x80\xfb\x12\x5d\x5e\x43\xf0\x29\xbe\xdd\xcc\x07\xf7\x5d\xdf\x38\x8e\x43\xff\xf7\x67\x43\xfd\x6c\xf9\xde\x11\x72\x7f\xb4\xff\x2c\xa5\x44\xbe\x13\xe5\x12\x7e\x23\x8d\xd6\x4b\x8f\xbf\xb4\xcd\xf7\xb3\x73\x9c\xaa\xe2\x59\x8b\xd1\x53\xbd\x1b\x0d\x56\x9c\x7a\xef\x13\x38\x23\xcf\x7c\xc4\xf1\xbe\x23\x7f\xad\x3a\x6e\xe3\x9f\x74\xdb\xf3\xf9\xae\xa3\x0e\xdb\xf7\xbf\x1c\x56\x7e\xbc\xcc\x29\x32\xe1\xd3\x50\xde\xc2\xa9\x2e\xb3\xe2\x3e\x79\x3c\xbd\x67\x3e\xa0\x7f\xac\x9c\xc7\xec\x96\xfd\x2e\x4f\xa2\xbf\x0c\xb1\xe9\x6a\x72\xee\xb3\x4d\x78\x88\x01\xc8\x39\x3c\xdd\xc4\x3f\x44\x07\xfa\xdb\x39\x85\x97\x78\x98\xc1\x24\xeb\xe3\x61\x5b\x3c\xac\x60\x91\x95\xdc\x9a\xeb\xee\xd9\x10\x6e\xb1\x79\x55\xfe\xe0\x1d\x70\xd0\x8c\x77\x45\xe4\xa0\x6c\x38\x63\xfc\x6a\xb9\x93\x5b\x08\x54\x1a\x4e\x5e\x26\xe7\x76\x10\x6e\x1b\xf6\x59\xb2\x61\xa0\x10\xb4\xeb\x09\xff\x8e\x9f\x30\x97\x4f\x45\xf6\x94\xcf\xe9\x00\xec\xd9\xee\xc6\x60\xe4\x6d\x7f\x26\xf9\x60\x5d\x8c\xf7\x45\x13\x71\x57\xe4\x45\xfc\x54\xdc\xb7\x7e\x24\x32\x13\xf7\x77\xab\xa4\xe7\xe2\xfe\xde\xf5\xad\x0b\x47\xc8\xe6\x12\x52\x68\x30\xcf\x40\x27\x54\x62\x61\xae\xed\xac\x57\xb6\xa7\x94\x1e\xa7\xce\x9e\xfe\x61\xe8\x4f\xfd\x43\x07\x22\xfd\xcf\x4e\x5a\x6a\x3d\x31\x3e\xcc\xef\x73\xf0\xa6\xfe\xa7\x77\x6c\x9d\xb0\x25\xe2\xed\x00\x8f\x88\x8b\xbe\x6e\x87\xf6\xba\x15\x6f\x54\x19\xbb\xe0\xec\x08\x77\xd3\x75\x3b\xc6\xf0\x57\x0e\xf3\x98\xbe\x76\xfa\x68\x95\x26\x37\x0f\xdf\x35\x64\xf4\xba\x2e\x99\xc1\xdf\x43\x23\x46\xdd\xef\x3a\x37\xf0\x6a\x48\xe3\xa8\xd9\x5d\x4d\xce\xb9\x8b\xe3\x7c\x3e\x82\x58\xff\x17\x8b\x9f\x7a\xa7\x80\xb6\x83\xc1\x22\x5e\xaf\x18\x70\xb7\x8d\x5e\x10\x3b\x72\x01\xcc\xb5\x3a\x34\x9f\x77\x84\x1a\x6c\xb1\x90\x9b\xfb\x6e\xf8\x53\x38\x68\xfa\x65\xf6\xee\x61\x2f\xe0\x8c\xf1\xa1\xd9\x1e\x43\xcd\xe1\x86\xe1\xfa\xdf\x79\x90\x0d\xea\x7d\xff\x1d\x6c\x29\x52\x1e\xf8\x67\xff\xb1\xd8\x3e\x5a\x98\x2f\x42\x83\x3e\xf5\x83\xa9\x93\x0e\xa2\xfc\x57\xc9\x12\xe4\x85\x4b\xa7\x2d\xc7\xfa\x10\x17\xcf\xad\x4a\x15\x76\x26\x24\x3b\x77\xd5\x60\xd5\x29\xc2\x45\xc7\x7c\x42\x8d\xcc\x26\xc8\x5b\xec\x57\x0b\xf1\x73\x13\xd4\x71\x8a\x8e\x08\xca\x18\xc7\x6f\xb1\x22\xfc\xfb\xdc\xa8\x39\x6a\xce\xf7\x57\xd9\xcd\xca\x0b\x7b\x35\xc8\x3a\x64\xc3\x8c\x75\x09\x4e\x43\x46\x06\xd9\x4f\xf7\xca\x18\x3c\xec\xda\xbc\xd9\xd3\x12\x4a\x73\x3d\x87\xcf\xbe\x3a\x75\xe2\xe3\xa5\x9e\x53\x67\x79\x4e\xb5\xfd\x72\x63\xf8\xe8\x19\xfe\x53\xa6\x75\x8d\xf1\x58\x31\xdd\x61\xf2\xf3\xae\xdd\x6e\xcb\x03\xb2\x27\xa9\x76\x95\x0c\x58\x3e\xf5\x89\xdf\xf9\xae\xa7\xce\xdb\xa7\xad\x98\x70\x00\x78\x1d\xa5\xfd\xdf\x8c\x7f\x06\x7a\xf6\x63\xfd\xd3\xc6\x7d\x80\xa1\x36\x59\x93\x0c\xc6\x09\xc1\x6c\xcb\x2e\xbf\x67\x63\x96\x43\x98\xf9\xd7\x49\x3e\xa3\xed\x61\xbb\xd9\x75\x00\x71\xb6\xdb\xa7\xcb\xf4\x70\x8e\xac\x1d\x0c\x47\x7f\x98\x9f\x26\x13\x91\xef\x6d\x49\x9b\x89\xe7\x11\x9f\x8b\x2e\x44\x1e\xa6\xc6\x82\xd6\x09\xb9\x99\xb3\x1a\x7d\x50\x4a\x2c\xb0\x39\x90\xbc\x06\x5a\x37\x26\x63\x7c\x04\xee\x73\x1e\x4b\x8b\x3c\xa8\x40\x08\xd9\x5b\xb3\x25\xa3\x9f\x8c\xcc\xe6\x1d\xa2\x1b\xed\x1c\xad\xd4\x2f\xae\x0f\x5e\x37\xd5\x2b\xdc\xf8\x4e\x48\xee\xaa\xca\x80\xb7\x0e\xc3\xe6\xae\x09\x5d\xb3\xc2\xc2\xd5\x2e\xd0\x77\xd9\x85\x5d\xfe\x83\xfb\x4e\x99\xbf\xd4\x3e\x2d\xc0\xfd\x93\x5f\xe5\x92\x97\xc5\x3e\x1e\xf5\x13\x96\x04\xdf\xaa\x5d\xe2\x71\x63\xbc\x47\xf0\xaa\x0f\xa7\xdd\x37\xfb\xbe\x5d\x6c\xd2\x95\xe8\x76\xda\xd7\x60\x21\x4f\xd7\xcd\x01\x53\xc6\x8d\x98\x37\xb7\xeb\x9b\xd3\xb4\x71\xc3\xe7\xb8\x82\x68\xff\x2f\x63\xaf\xcc\x9c\x07\xc6\xf6\x0b\xc6\x6a\x06\xf6\x81\xa1\xb6\xfd\xc6\x8c\x0d\x18\x09\xd3\xac\x65\xc6\x3a\x4c\x1d\x0e\xd3\xac\x7e\x8e\x96\xf5\xe7\x87\x28\x73\xc5\xd1\x3b\x26\xf1\xc3\x2e\xb3\x88\xdf\xe3\x3f\xd7\xfe\x47\xa0\x3f\x4c\x47\xf5\x64\x6c\x07\xad\x3f\xe7\xe0\x6e\xd7\x73\xab\x10\xdc\xcf\x7f\x10\xbc\x9a\x9e\x7f\xdf\x1a\x8e\xbb\xa9\x97\x9f\x45\xe0\x75\x5e\x4c\x14\xf2\x9c\x19\xa6\xbb\x70\xb7\xec\xb0\x79\x1c\xee\xbb\xed\x69\x4f\xc8\x10\x8b\x27\x64\x7b\xd9\x6e\x43\x8d\x38\xb1\xc2\xf5\x82\xb1\xdb\xac\x0d\x94\x9c\x42\x06\xef\x1c\x33\x54\x58\xdf\x70\x66\x41\x54\xf2\x64\x07\xab\x13\xfe\x3c\xdb\x86\x85\x74\x39\x6c\xf1\x2d\xd8\xca\xb3\x3d\xd9\x49\x77\xb4\xdc\x96\x15\x47\xbf\xbb\xf4\xf1\x5a\xb8\x39\xb8\x70\xbe\x4b\xe7\x08\xb3\x4d\xd6\xf7\x43\x5d\x5e\x79\xaa\x6e\xcc\x69\x8b\x70\x2e\xf7\xf4\x08\x7f\x03\xc2\x8e\x33\x87\x1f\x0a\x9b\x05\x16\xf6\x61\xc3\x97\xac\x1a\x09\x3e\xb6\xf2\xc3\x4f\x85\x96\xc3\x64\x1b\xe5\xe1\xf3\x96\x9e\x82\xa5\x56\xfa\xc3\x3b\x82\x1d\x61\x9d\xa5\xce\xf0\xf1\x8b\x42\x21\xc6\x7c\xf1\xf0\x09\xf3\x27\xc1\x71\xd3\xf9\xc3\xb2\xe6\x8e\x82\x3c\xe3\xd4\x61\x0a\xb3\x7f\x40\xa9\xd1\x04\x00\x5b\xde\x5e\xed\xbf\xd0\x1f\xf7\x2b\xdf\x8d\x9f\x8f\x71\x3d\x2f\x5e\x86\xbb\xc4\x0f\xcc\xd6\x61\xbd\x8f\xca\x0d\x11\xb8\xfb\x77\x79\x1d\xdd\x35\x3e\x5b\x1d\x83\xfe\xee\xa7\x5e\x25\xa0\x2e\xe6\xf0\xfa\xfd\x38\xbf\xee\x19\x76\x08\x77\x17\xb7\xdd\x3d\x8c\xef\x13\x9e\x71\x64\x92\xe2\x1b\xbe\x4d\x21\x65\xc9\x87\x8c\x27\xca\x3e\x99\x55\x71\x88\xdf\x55\x44\x63\xd5\x44\xc1\x44\x21\x5f\x21\xe3\x33\xa3\xa6\xee\x2b\x5d\xb4\xcc\xfc\x8e\xe7\x92\xbd\x45\x5b\x8f\x59\x2d\xf3\xb8\xbb\x67\x53\x4a\xa8\x8d\xf5\xa0\xfe\x09\xe7\x2f\xf6\xb5\x69\x77\x15\xdf\xbd\xf3\xae\xa1\x4d\xed\x40\xf9\xf8\x17\xcd\x7e\xd6\xf7\x07\xea\xc7\x6d\x87\x95\x96\x9e\x03\xdb\x77\x7c\x82\x2d\x16\x43\x06\x0a\x44\x6e\x84\x63\xa6\xbb\x07\x16\x6d\x71\x86\x0c\x93\xb7\x03\xf7\x6c\xb4\x80\x02\xe3\x8d\x03\xb7\xad\xfb\x04\x37\x8c\x4c\x5c\x3b\x56\x03\x94\x19\x85\x0c\x0c\x59\xb9\x16\x9e\xf7\xdb\xeb\x7a\x7a\xf9\x69\x78\x62\xc0\xe3\x3a\x65\x69\x00\xbc\xd6\x3f\xcf\xc5\xdf\xf9\xd4\x1f\xc7\xc9\x77\x0d\x0b\x71\x00\xa8\xff\xb8\x02\x77\xbb\x6b\xa2\x36\x60\x7b\xa9\xa8\x8b\xc4\x5d\xce\x62\xa0\xf7\x3b\x4f\x2b\x81\xd6\xfb\xce\xa1\xbb\xc5\x47\xfb\xa7\x60\x5d\x87\x7d\x83\x8f\x22\x9f\xb5\x63\xe2\x09\xdc\x6d\x0e\x63\x7e\x21\x4b\x35\xb2\x16\x4a\xd6\x12\x32\x3b\x38\x53\x5a\x67\x8d\xf8\x7a\x3f\xeb\x53\xfc\xfd\xc5\x15\xcf\x8c\x9c\x7c\xe2\x8e\x8f\xb6\x4e\xa4\x47\xd2\x09\xd9\x79\x9a\xfa\xb7\x06\xbe\x4c\x73\xd8\x34\xd3\x70\xb0\xd3\xce\x54\xbf\x83\xf1\x46\x2f\x1c\x84\x8e\xaf\x3c\x57\x68\xec\x6b\x0b\xc7\x0e\xdf\xfa\x62\xec\x6c\xdb\xf7\x18\xef\xeb\x63\x46\x16\xb6\xe3\x8f\xfa\x43\x6d\xbf\x3a\x3b\xde\x43\xa2\x50\xdf\xcf\xd4\x6e\xe1\xbe\x40\x78\xad\xbf\xce\xee\xc1\x6e\x0f\x68\xd3\x7b\x65\x1f\x1f\x93\x00\xef\xf4\xee\xd9\x3d\x8e\x96\x05\xd0\x79\x6e\xff\x60\x5b\x2e\x80\x4e\xb5\x5d\x61\x84\x1c\x80\x56\xa1\xc3\x92\x8d\x3f\x01\xb4\x6b\xec\x9d\xd7\x97\x00\x68\xae\x07\x98\x8c\xbb\xb9\x1f\x4b\x82\x02\xbb\xb1\x71\xca\x4a\xd4\x07\xd6\x4e\xdb\x8c\x6c\xca\xad\xe2\x68\xdc\x25\x2f\x91\xa7\xa7\x46\xcf\xcf\x4a\xc4\xba\x30\x59\x4f\x92\x71\x1d\x79\xec\x1c\x65\x97\x12\x9d\x4f\xe0\xb8\xb9\xb3\x21\x03\xd9\x93\x8d\x4f\x73\x91\xdf\x5a\x36\xfe\x1c\xce\x1f\x33\x06\x5f\x4c\x24\xab\x08\x99\x2c\x7c\xb1\x59\x25\x52\xe0\xa1\x57\xe8\x85\x20\x8b\xe7\x32\x25\x6e\x71\x79\x1d\xc3\xe2\x55\x24\x1c\x3f\xe7\x6d\x9f\x11\xa9\x96\x6e\x7b\xec\x5c\xfb\xba\x0d\x1a\x45\x96\xd1\xe7\xe6\xef\xdb\xa2\x25\x62\x36\xf7\xec\xcd\xd3\x63\xb5\x16\x99\xec\x3e\xf3\xb3\xe2\xbb\x96\xad\x71\xea\x99\xbd\x2f\x78\x34\x89\x89\xdc\x99\xf9\x00\x6a\x7b\x4d\xc5\x32\x86\x02\xa8\xbd\x35\x1d\x98\xda\x08\xa0\x36\xce\x54\xe7\xe8\x38\x00\xd5\x44\xb3\x23\x49\x31\x00\x6a\xc7\xcd\x4a\x12\xad\x00\x54\xbf\x9b\x35\xec\x59\x0e\xa0\x3a\xc3\x7c\x7a\xdc\x1e\x00\x55\x2b\xf3\x8f\x3b\xf7\x03\xa8\xf2\x58\x98\x6f\x7f\x09\xa0\x72\xa6\x7d\xcf\x42\xf4\x7f\x7a\x91\xbb\xea\x12\x1d\xff\x37\xa3\xde\xe1\xb6\x24\xf5\x85\xb9\x12\x4c\xf9\xf0\x0b\xf1\x87\x90\xe7\xc9\xbe\x46\xeb\x85\xa4\x3a\xd3\x7a\x39\x07\x7e\x65\x22\xfb\x16\xab\x9e\x83\xba\x99\xad\x7b\xf3\x50\xef\xb1\x3a\xfe\x22\xae\x27\x16\x92\x4b\xc8\x32\x4c\x72\x2e\xc1\x75\x89\x77\xc8\x35\x90\xd1\x24\xc4\xcd\xfb\x9a\x7a\xbf\x26\x31\x0d\xbb\x6d\x57\xbd\xdd\xac\x65\x5f\x5a\xac\xb9\x1a\x30\xc5\x5c\xee\x8d\x71\xc1\x55\xdd\x95\x17\xe5\xe7\x19\x08\x5d\xe5\x8d\xcf\x51\x70\xd5\x9b\x59\x9a\x9c\x79\x50\x61\xa1\x4e\x76\x69\xff\xeb\x4b\xe4\xdb\x74\xe4\x4b\xee\x37\x90\xbe\x2d\x3a\xa6\x25\x9b\x7f\x1d\xe9\x33\x5f\x57\xa1\x20\x11\xa0\x4f\xa1\x4e\xfc\xb9\x7a\x00\xd9\xab\x7a\x03\x72\xba\x00\xe4\x42\xf5\x12\x4f\xbd\x04\x90\x5b\xa6\xfb\x3c\x2d\x0f\xa0\x8f\x9d\xfe\xac\x23\x8d\xdd\x6b\x62\xfd\x67\xc9\x0e\x00\x72\xb1\xfa\x39\x07\xe2\x00\xfa\xbc\xeb\x97\xb9\xf7\x06\x80\xdc\xc6\xd7\xef\xd7\xa0\x7f\x5e\x9d\xdf\x16\x3c\x45\x7c\x47\x3a\x06\xe7\xc1\xd2\xb8\x7d\xc8\x26\xe4\x2b\x51\x3d\x48\x4e\xfd\x71\x1c\x3f\xd3\x92\x28\x2f\x9e\xe4\x95\x8b\xeb\xc8\x84\xc0\x3c\xac\x0f\xb0\xdd\xb5\x00\x79\xd2\x70\x42\x59\x82\x65\x43\x4a\x31\x1f\x33\x8b\xae\xa3\x5f\xdf\xd8\x21\x95\x69\xdd\xe8\xb2\xa8\x2a\x9a\x47\x8f\x10\x5b\xc1\xbb\x96\x6a\x77\xf8\x6b\x8c\xbe\xde\xd5\x71\xd8\x2c\xe6\xaf\xaf\x74\x77\xfc\x78\x49\xf1\x3b\xda\x2a\x77\xa3\x42\x92\x24\xa2\x34\x24\xef\x96\xef\x5c\x2a\x71\x54\x4d\xe2\x6e\x4a\xba\x86\xc4\x58\x95\x2b\x77\x47\x95\x2e\x16\x5f\xa0\x62\x5b\xf5\xfc\xa9\xbf\x58\x1f\x15\xaf\xaa\x0d\x1d\xfd\x44\x74\x55\x45\x2b\x8e\x02\x88\x04\xa9\x34\x5c\x13\x03\x10\x19\xa0\x6a\x50\xdc\x02\x20\x72\x5c\xad\xe2\xe2\x32\x00\xb1\xab\x6a\x37\xcf\x69\x01\x88\x9d\x50\x1f\x95\x5d\x06\x20\xae\xa2\x71\xf2\xe4\x45\x00\x89\x50\x0d\xbf\x34\x2d\x00\xf1\x17\x1a\xfe\x47\x53\xba\xe7\xcc\xc7\x49\x5b\x51\xe7\x53\x15\x44\x7d\x61\xae\xc9\x24\xe2\xf8\x9f\x9f\x79\x04\xf5\xf4\x39\xcf\x4e\x20\x9f\x95\x7e\x27\x1b\xfb\x7d\xca\x83\x73\xd8\x4f\xf6\x3a\xe6\xa3\xae\x23\x3a\xf8\x12\xbe\xbe\x85\xaf\x14\x59\xc7\x55\xc5\xd7\x51\xe7\xb0\xb0\xb2\xf2\x42\x37\x4e\x0d\xaf\xba\xdd\x8d\x23\x2f\x3e\x40\x5f\x3e\xdb\x92\x87\xa8\x43\xeb\xb7\xf4\xa9\xac\xcc\x48\x42\xd4\xbf\x3d\x2d\x35\x7d\xc9\x9f\xa1\xb2\xea\x59\x94\xd7\x75\xfe\x63\x4a\xb3\xea\x2d\x17\xf2\xf3\x6d\x50\xd6\xa8\x6f\x88\xea\x4b\x88\xc2\xc7\xfa\x1f\xc7\x6a\x08\x91\x5f\x5d\x5f\x5e\x7c\x89\x10\x39\xf5\xfa\x85\x0f\x2f\x13\x22\x6b\x59\xaf\xf5\x79\x10\x21\x52\x3f\x1f\xe1\x7e\x94\x94\xee\xfd\x3e\xdd\x28\xf6\xf3\x36\x9e\xa0\x16\xb7\xbc\x81\x75\x1d\xc4\x1c\xae\xe2\x7e\x9d\xb8\xf4\x25\x3c\x6b\xa2\xbc\xf5\x7c\x04\x80\x60\xa7\x48\xc2\x39\x3c\xf7\x28\x9c\x9b\x8b\xfb\x51\xd5\x8b\xe2\x05\x71\xfd\x27\x7a\x10\xc7\x89\x22\xf5\x63\xc8\x16\x9f\x81\x53\xd8\xfe\x4f\x8e\xcc\xc5\x76\x72\xc4\xf8\x3c\xe6\x67\xff\xa5\x22\x6c\x07\xb1\x5f\xa8\x2e\x62\xdb\x25\x1a\xf7\xba\x81\x15\x38\x5e\x2e\x3d\x56\x85\xe3\xc5\x9c\x85\x94\x27\x9f\xd0\x52\x87\xfc\xf8\x90\xc5\x4f\xb0\xdd\x59\xaa\x53\xde\x4c\x21\xf8\x2d\xce\x4b\x32\xd6\xcd\xd5\x1a\x9f\x09\x91\x48\x6b\x15\x75\x2d\x24\x44\xf4\x41\xeb\xe5\x69\x27\x08\x11\xde\xd5\x16\x1e\x96\x4f\x88\x60\xff\xb6\x47\x89\x4e\x84\xf0\x3d\x68\xfb\x79\xce\x9e\x10\x5e\xb9\xb6\x8e\x3b\x6f\x08\x21\x8b\xdb\xb6\xb5\xa0\x02\xb8\x99\x07\x9f\x0d\xa6\x36\xe2\xf9\x43\x42\x9e\xe0\x19\x23\x12\x51\xc3\x78\xdc\x2a\xca\xa8\x4d\xae\xf8\x80\x38\xe5\x5a\x59\x37\xf2\xd4\x5e\xd1\xc5\xeb\xfc\x42\xd4\x45\x94\xab\x1f\x42\xdf\xaf\x4b\x55\xa9\x38\x1f\x9e\x53\xcc\x9c\xdc\x8d\x99\x36\x67\x51\xef\x70\x7c\x60\x01\xfa\xdd\x1c\xca\xbd\x82\xeb\xc4\x78\xd7\x6b\x38\x7e\xee\x18\x4f\xd9\xb1\x8d\x0d\xb7\x71\xdd\xb4\x72\x6e\x35\xea\x44\x82\xe6\x53\x5d\xc8\xf4\x79\x8f\x91\xb5\x1d\xd3\x46\x7d\x33\xdc\xd6\x53\xff\x04\x93\xcb\x2d\xd8\x6f\xfa\x9a\xb4\x2f\x22\xf8\xaf\x63\x81\xd8\xc9\x6e\xfc\x3e\xc8\x0a\x99\xd3\x1f\x8b\xc6\xe1\xeb\x3f\xaa\x96\xe2\x0a\xff\xe7\x91\x58\x5c\xe1\xfd\x34\xcd\x5c\x85\xd8\x58\x2e\x8f\xe8\xd2\x84\x7f\xf7\x43\x13\xf0\x13\x3e\x30\x26\xf5\x2d\x3b\x81\xdf\xc0\x4e\xd6\x3f\x76\xa1\xf8\x40\x9f\xe5\x85\x39\x15\xdc\x64\x79\x2a\x6b\xef\xc6\x2b\xc1\x69\xd8\x2f\xce\x3b\x64\xd2\x3a\x48\xa3\xf3\x50\x0f\x99\x56\x74\xe9\x6e\x37\x26\x5b\x52\x7f\x94\x3d\x31\x37\x14\xe9\x7c\x70\x1b\xcf\x23\x44\x7c\xac\xc6\xe7\xce\x30\x75\xaa\x0f\x58\xea\x4d\xf5\x01\xf3\xd4\xeb\x71\x7c\xf5\xbf\xfe\xa2\x12\xc7\xc5\x06\xea\x8f\xe3\xf2\xe8\x1d\xd6\x6d\x34\x6a\xfb\x82\xfd\x4a\x8e\x50\x9f\x14\xdc\xd1\x63\xfc\xa3\x09\x5b\xe1\x7b\x31\x1e\x77\x3e\xe3\x71\xb7\x2e\xa4\x78\x98\x55\x02\xe5\xf8\xdb\x6a\x76\xee\xbd\xb9\x1f\xf9\x93\xcf\x9f\x4f\xf1\x03\xf3\xbb\x78\xc3\xb0\x81\x55\xaa\x79\xcc\x7e\x5e\xc3\xc3\xf2\x82\x8c\x75\x8f\x0e\x2c\xe8\xbc\x22\x1d\x07\x2e\xe3\xbc\x97\x32\xf1\x9a\x52\x37\xee\xab\xaa\x40\xbe\x37\x66\xd9\x1d\xe4\xf7\xa3\x5e\xd7\x60\x7d\xad\x0d\x2b\x1f\x62\x9e\x56\xd6\xd7\xe3\x38\xb1\x38\xa0\x11\xf3\x37\xf3\xe2\x1b\x5c\x87\xfb\xc5\xb4\xe1\xfd\x1f\x31\xf6\x03\xce\x1b\x4e\xb2\x5f\xf1\x39\xcd\x70\x1c\x60\x3b\x91\x61\x7e\x18\x98\x07\x55\x8a\xfd\x18\xdf\xeb\x71\x81\x22\x77\xbe\x7f\x0d\x73\x42\x4d\x60\xbe\x1e\x1c\x7f\x5b\xcc\x2a\xe0\x55\xb3\x6b\xaa\x50\x00\xf8\x4a\x9d\x41\x4f\xd0\x4f\xf8\xca\x18\xf6\xf7\x3a\xff\x9e\x97\xa7\xa8\xd0\xf9\xad\x03\xa3\xed\xfe\x68\xd3\x0d\x9c\x17\x0e\x5c\xbe\x85\xeb\x84\x84\x79\xf4\x53\x76\x0a\xd6\x61\x7c\x9b\x8b\xa8\x2e\x62\x6d\x50\x03\xaa\x12\x96\x76\xbc\x42\x1d\xc8\x42\xd2\x86\xf5\x82\x02\x02\xa8\x6f\xc4\xf8\x28\xea\x32\xe1\x79\x97\xd6\x0f\x72\x98\x44\x3f\x55\xaf\x94\xa2\xe4\x3d\xf8\xa7\x0e\x64\x3b\xc5\x01\xcc\xc7\xc2\x8f\xbd\xbe\x84\xe9\x60\x22\x47\x51\xe4\xf4\x41\x9c\xbf\xc3\x65\x56\x31\xb5\x8a\xb5\x1f\xd4\x09\x11\x80\xb6\xe2\x3f\xdb\x49\x4f\x3d\x9c\xc0\x7f\xcb\x4b\xe6\xd7\xab\xb8\x6e\x3c\xfe\xa2\xc2\xbd\x1b\x0f\xbd\xad\xc2\x76\xb1\xe7\x45\x0d\xf6\xdf\x58\xa6\x07\x89\xbc\xf3\x1c\xdb\xc9\x86\xa8\x57\xb8\x8e\x5c\x25\xdb\x82\x9f\x1e\x7c\xfd\x1d\xce\x2b\x73\xaf\x7d\xc6\x73\x08\x53\x3b\x7f\x60\xff\x18\xdb\x01\x12\xdd\xe8\xc1\x7a\x61\x8f\x0f\x06\xf3\x4f\x91\x94\x81\xff\xd4\x81\x70\xce\xb7\xa3\x59\xbc\x73\xd8\x0e\x50\x18\xbb\xe6\xf4\x41\x5c\x3f\x39\xbd\x86\xb5\x0f\x53\x8a\x9c\x6e\xaa\x86\xe9\x01\x5e\xb2\x3c\xfd\xe9\xff\x41\x48\xe7\x9d\x3f\xf3\x92\xba\xaf\x1c\xf7\x55\x52\x4c\xab\xb0\x95\xed\x3b\x57\x8b\xbd\x2f\x2e\xe9\x19\x8e\x1b\xdb\x6f\x35\x62\x7f\xdf\x32\xe3\x0d\x8e\x83\xeb\xbd\xdf\xa1\x7e\x30\xd4\xa2\x1d\x9f\xbf\x16\x6d\xe8\xc0\xfc\xcc\x92\xec\x42\x7f\x19\xbf\x4b\xf4\xdd\xbd\x99\x4f\xca\xc0\xb7\xd0\xcb\x07\x43\x73\x11\x45\x09\x51\xf8\x87\x0e\x44\xf5\x06\x45\xdb\x72\x8a\x9e\xcc\x01\x74\x3a\x6b\x17\x21\xac\x9d\x44\x28\xb1\x7e\xc2\xf4\x0b\x47\x99\x6e\x22\x8b\x8d\x33\x17\x98\x0f\x06\xe7\x13\xd3\xa3\xff\x60\xba\x87\xb6\xd3\x14\xbb\xfe\x18\x57\x8e\x58\xdc\xc3\xd6\x74\x60\xc6\x23\xec\x8d\xbb\x0b\xea\xf1\xfb\x45\xdf\x7e\x89\xe3\x26\x57\x1f\x2d\x3c\xf7\x3d\xce\x27\x6b\x32\x3b\x94\xb1\x3f\xdc\xea\xfa\xd1\x8d\xf3\x07\xd2\x78\x02\x92\xa0\x97\x1e\x88\xab\x0f\xe4\xc8\xfc\x72\x4c\x4b\x28\xaa\x4e\xa3\x28\xea\xf0\x3b\x0f\xa4\x92\xa2\x32\xf3\xb5\xb1\xe4\xa3\x38\xd8\x9f\xe2\x78\x76\x1f\xe7\xb1\xfb\xbc\x86\xf9\xa2\x44\x6e\xa2\xb8\x8f\xf5\x87\x94\xdb\xe4\xdf\xf5\x1f\x69\x14\x2b\xd8\xeb\x75\x2c\x4f\x4d\xf6\x14\xdb\x07\x92\x5e\xbc\x2c\xa7\xe7\xe8\xa9\x07\xc3\xb8\x64\x8e\xcf\xe6\xb0\x47\x07\xc2\x78\x51\x37\xc6\xdb\x73\x3c\xf7\x68\xc6\x9f\x4f\x66\x5c\xfb\x6c\xe6\x07\xbd\x8c\xed\x8b\x6f\xda\x45\x91\xd3\x3f\xa4\xcc\xa1\x98\xcd\xde\xef\x8a\x39\x45\x4e\xbb\xf0\x82\x71\xb1\x3f\x0e\xfe\xd6\x3f\xb4\x51\xae\x98\xbc\x0c\xa1\xf8\xac\x8b\xe2\xc3\x99\x14\x7b\xfc\x2f\x18\xd7\xc8\xf1\xde\x37\x58\xcc\x1c\xef\x5b\xcc\xf6\xa8\xe1\xff\x87\x0f\x08\xc7\xff\x71\x3a\x10\x2e\x4f\xdc\xdf\x71\xf9\xf4\x66\x9a\x04\x3f\x76\x4e\x7c\xe6\x2b\x8a\x21\x8c\x1f\xde\x40\x79\xdf\x1e\xde\x9f\xcb\x03\xa7\x87\x29\x61\x9c\x35\xa7\x65\x79\x75\x94\x62\xe7\x9d\xff\xd6\x3f\x3c\x66\xf7\xa0\x87\xf7\x66\x1c\xfb\x2d\xf6\x5d\x6f\xb0\xcf\xe6\xf4\x0f\x97\xcb\x28\x16\x15\xff\xce\xc3\xff\xf2\x01\xe1\xf8\x5f\xcb\xb1\x0c\xe7\xf4\xce\x87\x23\xd3\x03\x70\x3a\x10\xae\xde\xce\x04\x76\x3d\x93\xf9\x4b\x2c\x59\xce\xf2\xc0\xf4\x0e\x31\x01\xbd\xf3\xd0\xa3\x87\x61\x9f\xff\x80\xbd\x7f\x33\xd3\x3c\x74\xaf\x97\xda\x5b\xe9\xff\x5f\x4f\x61\xed\x60\x11\xc5\xff\xd2\x01\x55\x3c\x66\xf1\x33\x7d\x44\x8f\xfe\xe3\x5f\xf4\x0f\xdc\xfd\xe4\xda\x7b\x4f\xfc\x2c\x0e\xae\x0e\x44\x8f\x1f\x46\x49\xef\xfc\x70\x79\xe3\x74\x14\x43\xdf\x53\x1c\x9b\x40\x71\x3a\xeb\x37\x7f\xeb\x40\x76\xb1\xf7\x3f\xcc\x78\xd3\xdc\xd5\x14\xaf\xb2\x98\x6a\xd9\xcf\xdb\x5c\x08\xe9\x64\x67\x4c\xdf\xdb\xb3\xbe\x72\xa5\x77\x3b\xe8\xd1\x7f\xfc\x8f\x7e\x70\xe9\x06\x8b\x7f\x0d\xc5\xf3\x2d\xbf\xf3\xc0\xe9\xbd\x38\x1d\x50\x4f\xfd\x07\xd6\x9e\x0d\xe7\x32\x5c\xdc\xfb\x9a\xe3\xc7\xff\x4b\x07\xc2\x8d\x13\x9c\x0e\x64\x11\x6b\xc3\x61\x8c\x47\xdd\xc9\xf2\x92\xb2\x97\x62\x8f\x1e\xe6\x19\x45\x4e\x07\xf2\x71\xd9\xef\x71\x81\xeb\x0f\xcf\xb9\x5c\x5d\xa5\xd8\xa3\x83\x62\x63\x11\xa7\x83\xfa\x7b\x1c\x28\x28\xe8\x1d\xff\x99\x71\xbf\xf3\xc0\xdd\x4f\xee\xfe\x9a\xb0\x7e\xca\xf1\xdf\x7a\x43\x28\x72\x3c\xa8\x6e\x2c\xc5\x7e\x1f\x7a\xb7\x13\xae\x9f\x70\xe3\xe6\x48\xc6\x13\x4e\x66\xfd\x6d\x01\xd3\xcb\xad\xcd\x67\x79\x60\x7a\xb0\xc3\x8c\x6f\x3f\x03\x54\xff\x73\xfd\x1d\x21\xb0\x86\x69\x9e\x6e\xd2\x31\xe1\x73\x33\xfd\x1d\xce\x1f\xe9\xf1\xbb\xde\xfd\x80\x1b\x07\xfe\xd6\x81\xfd\xaf\xf8\x73\x02\x7e\xe7\xa1\x47\xff\xc0\xe2\xe1\xf4\x2f\x9a\x8c\x07\xd7\x60\xf9\xe1\xfc\x10\x38\xd4\x48\xef\x9d\x2f\x73\xd7\xde\xed\x8b\xeb\x1f\xdc\x38\x31\x8f\x7d\xce\x6a\xa6\xab\xd9\xc9\xc6\xc3\xc3\xb3\x08\x81\x05\x84\x9c\x3d\x4b\xdb\xff\x8d\x6b\x84\xfc\xfc\x41\x35\x80\x3f\x9c\x09\xf9\x6a\x4d\xc8\x7b\x96\x5b\x6e\x5c\xe4\xfc\x80\x38\x1d\xd8\xdf\xfa\x9f\xe2\x4c\x7a\x5d\xb8\x8c\x07\x2b\xfe\x9d\x3f\xc0\x83\x1e\xf6\x67\x2e\xf2\x60\x05\xc4\xac\x1a\xfa\x7b\x27\x7f\x50\x7d\x10\xfc\xa1\x7f\x30\x60\x3a\x39\x4d\xd6\x1e\x38\xfe\x57\x5e\x9b\xa2\x1c\xcb\xa5\x3c\xcb\x0f\xe7\x0b\xc2\xd5\x4d\xe1\xfa\x0b\x37\xbf\x70\xf3\x10\xa7\x17\x9b\xc5\x78\xf3\x95\xec\xe7\x3b\x76\x13\xd2\xbd\x96\x49\x99\xd8\xfd\x94\x49\xf5\x51\xdf\x56\x11\x72\xdd\x8f\x90\x2f\xc1\x84\x3c\x19\x4a\xc8\xa7\x17\x84\x7c\x4e\x20\xe4\x6d\x0d\xd5\x05\x3d\x39\xcc\x57\x84\xfd\x60\x11\xd5\x01\x95\xaf\x12\xc2\xca\x8f\x25\xd9\xa2\xd4\xff\xe7\xb3\xc8\x9a\x6e\xcc\xb7\x15\xc4\xf3\x04\xe7\xd6\x0a\x62\x85\xbc\xd3\x2e\x22\x78\xa6\x3f\xab\x8f\x08\x2a\x9b\x4f\x96\x0b\xe2\x75\xda\x66\xc1\xb5\x5c\x1e\x38\xfd\x83\xd6\xf5\xde\xf1\x71\xfc\xaf\x14\x6b\x8b\xa2\x1b\x7a\xa3\x2c\x1b\x83\x39\xbd\x80\xe6\xac\xde\x79\xe5\x74\x95\xcc\x5f\x4c\x60\x3a\x9d\xe3\x2f\x87\x4e\x26\xe4\x57\x39\xaf\x6e\x54\x1c\x21\xdf\x86\x0a\x38\x1e\x6a\x23\xa4\x3d\x5a\x68\x67\xae\x26\x21\xef\x65\x44\xf4\xae\xe5\x12\xd2\xba\x5a\x54\xe0\xd1\x73\x42\x9a\xd5\x45\x0f\xb7\x9b\x10\xd2\x60\x2b\x81\x4a\xe4\xfb\xe5\x92\x78\xbe\xa4\x62\xa0\x2c\xea\x9f\x4a\xda\xfb\x44\x60\xdc\x2d\xca\x36\x00\x42\x82\x17\xfc\x65\xd0\xe1\xf0\x74\xbd\x52\x07\x80\xe0\xd2\x1c\x57\x29\x7c\xbe\xe4\x74\x2f\x69\xf1\xca\x3f\x00\x84\x9e\x1c\x3b\x2a\x29\xd6\xfd\xfa\x11\x4f\x09\x33\x2e\x0f\x5c\xff\xe7\xee\xbf\x24\x6b\xbf\x7f\xeb\x3f\x78\xbf\xf4\x46\x41\x36\x8f\x4a\xb8\xfe\x99\x0f\xde\xed\x7a\x98\x4f\x01\x4d\x3b\xec\x17\x42\x33\x3d\xcf\x13\xd2\x99\x27\xba\x69\x6a\x23\x21\x5f\xb7\x4a\x99\x2e\xd5\x21\xe4\xc3\xf0\x3e\xe2\x5b\x03\x09\x69\x19\xdf\xf7\xee\x81\x01\x84\xbc\x7a\xa7\x70\x35\x6b\x3a\x21\x4d\xf9\x8a\x2d\x25\xdf\x08\x79\xbe\x45\xa9\xae\x76\x21\x21\xcf\x52\x94\x07\xbf\xd3\x24\xa4\x6e\x8e\xd2\x52\x00\xde\xd5\x95\xb2\xca\x5e\x00\x42\xfd\xae\xf0\xa9\x7c\x05\x10\x79\x9f\xef\xa5\x72\x12\x40\x64\xde\x59\x65\x95\xc7\x00\x22\x3b\xb2\x07\xa9\x0a\x01\x88\x1c\xe1\x74\x3f\x5c\xdc\xc7\x89\xca\x05\x00\xe1\x5b\x87\xc7\x2b\x5f\x06\x10\x72\x4f\x5a\xa5\x22\x00\x20\x14\x79\xa0\x42\xb9\x06\x40\x08\xf7\x64\x54\x8e\xfe\x7b\xfc\xbd\xf5\x1f\x7f\xf3\xc1\x3d\xbc\x70\x36\xc1\xb1\x5b\xc4\x54\x12\x7d\xb2\x24\x4a\xd4\x51\x0f\x25\xdd\x62\xf9\x8a\x90\x8e\x4a\xf9\x80\x21\x43\x09\xf9\xa0\xad\x74\xde\xef\x22\xef\xf3\x37\x9f\x54\x06\x05\x49\x08\x4e\x6b\x5c\xa6\x6a\x1a\xbe\x4b\xc4\xe8\xa9\x9a\xea\xd1\xdd\xe6\x62\xab\xeb\xaa\x54\xef\xa7\x1d\x90\x70\x7c\xd0\x47\xf5\x46\x41\xbd\xa4\x53\x75\x1f\x35\x81\xaa\xfd\x92\x4f\xee\xd4\xab\x05\xbc\x3a\x24\x19\x7b\x5b\x42\x7d\x1b\x80\xc4\xa6\x12\x71\xac\x07\x56\x79\x21\x50\x6b\x1c\x80\x74\x51\xae\xbb\xe6\x47\x00\xa9\x27\xa7\xaa\xb4\x06\x03\x48\x35\x9e\x50\xd0\x72\x07\x90\x3a\x78\x34\x58\x3b\x14\x40\x3a\x21\xf9\x89\x56\x0b\x80\x54\xda\x21\x21\xcd\x62\x00\x49\xad\x7d\x4b\xb5\xbc\x00\x24\x7d\xf6\xea\x69\x14\x02\x88\xef\x8a\x4f\xd0\x18\x09\x20\x56\xf5\x67\xfb\xff\x8f\xf8\xff\x8a\x9b\x9f\xad\xf2\x39\x3e\x90\xab\x17\x22\xd7\xc4\xbf\x8f\x10\x18\xad\xf4\x55\x61\x0c\x21\x9f\xa5\x34\x64\x0d\x5f\xf2\x15\x35\xeb\x6b\xe7\xbb\xe4\x08\xcd\x68\x38\xa3\xdb\x3c\x3a\x50\xcc\xfa\xd1\x1a\xbd\xa7\x33\x4f\x4a\xe6\xdd\xf7\xd0\xd7\x5b\xf9\x50\x56\xf4\xf6\x6e\x7d\xf1\x1d\x6f\xe4\xde\x56\xf4\xd7\xdb\x93\xf2\x44\x1e\xca\x66\xea\xf5\x3d\xe7\xa2\x18\x58\x3a\x5b\xf7\x56\x85\x8e\x92\xca\x15\x7d\xdd\x27\xf5\x0d\x4a\x3c\xc5\xd7\xf4\x0e\x74\xfc\x54\xb8\x97\x77\xba\x9f\x34\x80\x22\xc9\x0c\xeb\x57\x0c\xa0\xd0\x96\xea\x6b\x10\x06\xa0\xf0\xe5\x70\x87\x81\x2f\x80\x82\xc9\xc1\x5b\x86\x46\x00\x0a\x73\x12\x3f\x19\x08\x03\xf4\xad\xdd\x7b\xa7\xdf\x70\x00\xb9\xf8\xdd\x69\xfd\x78\x00\xfa\x3c\x88\x39\xa6\x57\x0f\x20\xab\xba\xb3\x50\x5f\x02\x40\x56\x64\x87\xbd\xde\x68\x00\xe9\x1f\xff\x0f\xf1\xb3\xa7\x61\xd1\xbd\x14\xfb\x1e\x63\x4f\x87\x6c\xf7\x44\x0b\x9f\x7e\x7f\x7e\xd3\xc5\xba\xbd\x1f\x62\x4d\xcd\xa4\x12\x08\x79\x59\x69\x7e\x41\x5b\x5e\xe0\xdb\xe3\xcb\x16\x2a\x36\xa7\x25\xc4\xee\x79\x5b\x4e\x1e\xb6\x5f\x26\xa5\xf2\x86\xe5\x53\xff\x61\xf2\xaa\xd7\xa6\x59\xea\x07\x47\x2a\x3d\x2e\x5e\x6c\xb1\x61\x8b\x9c\xda\xbc\xfc\x6a\xf3\x99\xfb\x1f\x6a\x92\xbc\x33\x66\xeb\xb3\x9c\xb5\x9e\x9f\xa9\x31\x8d\x2b\x3d\xa4\x7d\x23\x77\xa4\xe9\xb8\x87\x13\x75\xfa\x64\x77\x98\x2e\xfd\x68\xa6\xd5\x79\x52\xdb\xac\x13\x40\xcb\xe4\x70\xb2\x79\x02\x80\xe6\x88\x03\x33\xcc\x4f\x03\x68\x68\xec\x79\x6b\xfe\x0b\x40\x7d\x43\x7c\xa6\xb9\x0a\x80\x6a\x7e\xcc\x5c\xb3\x6a\x00\x95\xdc\xe8\x14\xb3\x58\x00\xe5\xaa\xa8\x3d\x66\x8a\x00\x4a\xe9\x5b\xab\x4c\x4f\x02\x28\x1e\xde\x2c\x6f\x12\x0f\x20\x5f\xb6\x51\xdb\x74\x26\x80\x82\xd5\xff\x11\x3f\xd3\x01\x48\xf6\x61\x71\xb3\xa7\x5f\x7d\xfa\x34\x98\x6a\x8c\xbc\xcf\xd7\x25\x36\xa8\x07\x69\x81\xfe\xc8\xff\x35\x46\x0e\xb8\x20\x64\x45\x48\xdd\xce\x41\x76\x2a\x13\xf9\xc5\x6f\x6b\xbb\x2e\x36\x35\x96\xb8\x7d\x35\x61\xc0\x92\x81\x43\x14\x46\x14\xd6\xb8\x3c\x19\xbb\x5b\xd5\xe5\xdc\x4b\xe7\x86\xb9\x72\x9a\xb5\xd9\xcf\x9c\x82\xc3\xb4\x75\x6f\x9e\x1c\xee\x68\x13\x37\xc8\xc0\x3e\xd5\xdc\xe1\x62\x9a\xa6\xd1\xf2\x23\x31\xf6\x27\x0a\x27\x1a\xff\x4a\x51\xb4\x6b\xab\xe6\x37\xd9\x97\x64\x61\x77\xfd\x6d\x90\x89\xf4\x41\x2b\xfb\x78\xb8\x60\x34\x72\xf7\x5c\xfb\xcb\x50\x65\xa0\xbe\xd3\xc5\xc1\x1f\x9e\xea\x77\x45\xa5\xd9\x6f\x86\x76\xdd\xe2\x08\x6b\xfb\xd3\xf0\x4b\x67\xcf\xe6\x4e\xbb\x2b\x00\xda\x72\x1b\x8d\xec\xfc\x00\x34\x4b\xd7\x4f\xb6\xcd\x01\xd0\xb0\x5d\xeb\x65\x1b\x07\xa0\x6e\xbb\xba\xca\x46\x00\x40\xd5\x74\x65\xa8\x75\x3a\x80\x8a\xd5\xff\x11\xff\x77\x8a\xea\xac\x1e\x86\x11\xee\x5b\x75\xb9\xd8\xe2\xf5\xc7\x11\x03\x71\x3f\xff\x55\xdb\x10\x7c\x5a\x7e\xba\x6c\x24\xfe\xdd\xfd\x2b\x3e\x46\xdd\x58\xf9\x71\xdc\x9c\xbe\x1b\x09\xb9\x62\x31\x3a\x42\xef\x81\xb8\xfc\x79\x21\xef\x12\x07\x25\xf9\x9d\x99\x1e\x23\xc4\x3c\x57\x69\x45\x1c\x7f\x34\x3c\x72\x9a\x96\xfe\xfd\x64\xc3\xa1\x35\xcb\xe2\x8d\xa3\xf6\x07\x7b\xd4\x46\x49\x98\x1b\xee\x8e\x72\xef\x97\x3c\xc3\x8a\xc4\xec\x1c\x74\xea\x6c\x97\x75\x7d\xf4\x0b\x37\xff\x4a\x55\x9b\xc3\xdb\x6f\xb9\x56\x35\x14\xda\x2c\x8e\x8a\x71\x1b\xf6\x73\xa9\x55\xe7\xe6\x8f\x6e\xf6\x10\x61\x7e\x6b\x7d\x97\x6b\x16\xa4\x99\xb4\xac\xd9\xe1\xba\x1d\x8a\x8c\x9e\xac\x7a\x3e\xf0\x01\xdc\x34\x1c\xb2\xc2\x61\x60\x2e\xd4\x19\x88\x2c\xcb\x18\x10\x01\xad\x7a\xe9\x4b\xd5\x5d\xac\xa0\x53\x27\x21\x78\x9f\xcb\x22\x00\xed\x77\x8b\x4e\x3a\x4f\x00\xd0\x92\x5f\x74\xda\x71\x32\x80\x86\xcc\x3f\xdb\x3f\x17\x3f\xc7\x83\x5b\xa2\xab\xe7\xaf\x85\xce\xa8\xff\xf8\xb0\x68\x28\xf2\xb6\x2f\x0e\xf8\x60\x3b\x78\xd4\x46\x77\x07\xaa\x82\x26\xa3\x5f\xf5\xf5\xf7\xd3\xf0\x7d\x2e\x4d\x0a\x3c\x26\x96\x4f\xc8\xd9\x21\xd3\xaf\xa9\x17\x0a\x37\xa5\x7f\x9c\xfa\xcc\xd2\x55\x6e\x55\xf2\xc9\xc9\x07\x07\x2f\xd1\x38\x91\x30\x63\x82\xbc\xef\x07\x63\xf9\xe8\xb7\xbe\xbc\x0b\x36\x59\xec\xdf\xba\x74\x4c\xed\x86\x48\x9b\xe7\x1b\x2e\x8f\x7a\xbe\x77\xb3\x83\x6e\x98\x8a\x8f\x51\xa6\xb7\xe3\xd8\x55\x67\xbc\xf2\x4b\xf7\x38\x45\xac\xf0\x1b\xf9\xec\xd1\x08\xa7\xb3\xcb\xcb\x46\xb6\xb6\x1f\x73\x3c\xb3\xd4\x7e\xe4\x5e\x30\xb7\xb7\x5b\xbc\x67\x44\x0d\x4c\xb0\x91\x0b\x92\xf3\x14\x82\x4d\x16\x3e\xf3\xaf\x78\xce\x83\x28\xf3\xdd\x73\x7d\x86\xd5\x41\x86\xc9\xbc\x39\x1b\x87\xde\x83\x02\xa3\xea\x59\xf7\x86\x5a\x40\xb9\xe1\x88\x59\xdb\xdd\x33\xa1\x49\x7f\x56\xe0\x7a\x77\x07\xf8\xa8\x9b\x34\xbd\x68\xb0\x09\xfc\xd2\x19\xf0\x3b\x0f\x12\xaf\x7a\xc7\x4f\x79\xf0\x9f\x47\xdc\x70\x7f\xf6\x9d\x9e\x37\xf2\x9e\x8d\x47\x27\xe0\x2e\x50\x1d\x2f\xd5\x83\xdc\xca\x9d\x89\x7e\x28\xa5\x3f\xe7\x21\xcf\x9d\xdf\xb6\x08\x77\xc3\x72\x96\x04\x8f\xe1\x71\x26\xe4\x44\x66\xc8\x11\xc5\x4f\xbc\xbe\x87\x78\x16\xf3\x1b\xc6\x4a\x57\xc6\x39\x2d\x14\x71\x1e\xa8\x1a\xb8\x75\xc9\x9c\x4a\x9f\x05\x06\x3e\x6b\xea\x67\x04\x07\xae\xb5\xbe\xb1\x6c\xec\x74\xa3\x95\x17\x1d\x2e\x04\xbd\x9a\x26\xba\xcb\xd6\x79\xda\xdc\x0e\xff\x3b\xc7\x8f\x0e\x38\x37\xb3\x75\x72\x40\xa1\x93\xab\x5f\x60\x88\x1f\xdc\x53\x71\x4d\x08\x28\xf5\xcb\x68\xbe\x32\xf0\x51\x80\x97\xdf\xb2\xae\xfb\x2e\xce\x53\xde\x4c\x58\x0f\x32\x0e\x0f\x26\x77\x8c\x0f\x05\x6b\x3b\xd3\x49\x4b\x7d\xc3\xc0\xdb\xfa\xab\x9f\xe7\xb8\x39\x30\xdb\xf2\xed\xc4\xa6\x31\x02\xb0\xcd\xac\x61\xe2\xbc\x51\x83\x20\xc5\xe4\xf0\x44\x15\xef\x2f\x90\x63\x2c\x3a\x41\xd8\x6b\x0f\x94\x1a\x0a\x8d\xf7\x1f\x31\x06\x1e\xeb\xcf\xfc\x3d\xfe\x71\xf1\xdb\xe0\x2e\xd9\xaf\x35\xf4\xf4\xe0\x3b\x0b\x5a\x1f\xa7\x21\x78\x0a\x8e\x13\x75\x27\x67\x63\x3f\xb8\x19\x18\x84\xbe\x38\x25\x0d\x4b\x70\xbe\xb8\x50\x44\xeb\x04\x65\x27\xd1\xdd\xe5\x63\x83\xc3\xf0\x54\xd4\x81\x8d\xe1\x99\x52\x47\x09\x89\x99\xb6\xae\x5c\xeb\x8d\xb8\xee\x16\xfe\x35\xb5\xb6\x03\x14\x1d\x57\x8d\x5b\x39\x6d\x58\x8d\xae\x4a\x90\xc7\xb2\x18\x7f\x53\xf3\x15\x33\xbe\x2f\x71\x0f\x21\x76\x2d\x53\x5a\x16\xbf\x8d\x8c\xed\x9f\xe8\xe7\xb0\x68\x52\x4a\x81\xd3\x54\xdf\x88\x20\xb5\xf3\x35\xce\x96\x63\xfb\x2f\xf8\x71\xbb\xc2\x79\xc2\xe8\x5b\x0b\x36\xbe\x96\x75\x1a\x33\xfa\xe4\x82\x4d\xa0\xec\xf0\x75\xd4\xf5\xb9\x04\xdc\x6d\x93\x47\x79\xce\x52\x81\x00\xeb\x91\x3e\x21\x33\x74\x60\xa5\xa5\xe6\xa8\x29\xd3\x56\xc3\x06\x0b\x2b\xef\x21\x53\x6a\xe0\x98\x49\xbd\xf7\xf3\x49\x00\x27\x4d\x24\xbd\xad\xfc\x12\xe0\x82\x51\x82\xd7\x8a\x09\x53\xe0\x86\xc1\xe9\x11\xcf\x7d\xaf\xc2\x13\xfd\xd1\x7f\xc7\xdf\x79\x67\x38\xee\x82\xb6\x15\x8d\xc7\x71\xb1\xf1\xc5\x74\xd4\x81\xd5\x36\x2d\x40\x9e\xb7\x12\x96\xe0\x39\xd6\x2b\x4a\x2b\x71\x77\xfd\xfc\xb4\x75\xd4\xff\x9f\x9f\xea\x60\x8e\x95\x50\x5d\xc8\x7e\x99\x28\x3c\x27\x1c\x1d\x10\xad\xc5\xb7\x93\x90\xcd\x4e\xd1\xa9\xca\x20\xb8\x79\xc5\xbd\xa8\xfb\xa6\xaf\xfa\x18\x2c\xb8\xb3\x4d\xc4\xad\x43\xfd\xea\x34\xaf\xcd\xbb\xc6\x8f\x35\x32\x1d\xff\x6b\xe3\xfd\xa0\x9d\xe6\xc1\xa3\x27\x6d\x48\xd9\x92\x69\xe5\x32\xb2\x2a\xbc\xef\xa1\x50\x1b\x9e\xe1\x5a\xeb\xf9\xce\x6e\xb5\x49\x1b\x72\x33\xec\x43\x65\xa8\xcd\x45\x8f\x25\x61\x63\x9b\xd6\x59\xdf\xf3\x08\x0f\xf3\xee\x3c\x61\x59\xe6\xa1\xba\x2a\x0e\x76\x9b\xdb\xbb\x1b\x2d\x3f\x07\x67\x4c\x06\xbb\x5f\x0e\xe1\x87\x42\xe3\x69\xee\xd7\x16\x47\x41\x99\x91\x8f\xbb\xc3\x42\x15\x78\x68\x60\xe9\x1e\x3f\xb7\x0b\x9e\xf7\x1b\x32\x78\xc3\xec\xcf\xf0\x41\x6f\xe8\xe0\x51\x33\x00\x7e\xe8\xbc\x18\xcc\x33\xfd\x17\x80\x76\xc5\x6f\x1d\xc8\x30\xbc\xff\x9c\xfe\xab\xa1\x78\x26\xee\x63\xd7\xf6\x5f\x8c\x7c\xf6\xcd\x75\x2b\x90\xc7\xbb\x32\x2f\x0c\x77\x53\xcf\x37\x6d\xc6\xf9\x32\x6b\x4b\x94\x01\xc6\xef\x17\x8d\xf9\xdc\xff\x3a\x76\x69\x37\xee\xd4\xda\x8d\xfd\x65\x83\xd8\x3e\xe4\xf5\x56\xf2\x1e\x50\x90\x7d\x48\xc8\x02\xf1\x7d\x2f\xf5\x5e\x4a\x04\x4d\x2d\xdb\x73\xc5\xb1\x53\xf1\xeb\x18\x8f\xf8\x36\x9f\xef\x3a\x3f\x46\xf4\x8b\xab\x9e\x7b\xb7\xdf\x52\x8f\xa8\xd8\xd7\x1b\xb2\x0d\x9b\xdc\x64\x62\x8a\xf6\x3f\x31\x9e\xeb\x92\xb2\xab\x23\x37\xd2\x44\xd7\x69\xd2\xce\xba\x1b\xa7\x4c\xa4\x1c\x0d\x77\x8a\x3e\x8f\x34\x76\x76\xe4\xdf\xa9\xf6\x23\xd1\x50\xd3\x31\x35\xd2\x13\xea\xfb\xc5\x3b\x26\x6f\xe1\x83\x36\x7d\x4d\xc7\x80\x0d\x1a\xf0\x43\x37\xda\xf1\xc8\x3a\x0d\x00\x9d\x46\xa7\xac\xd5\xfb\x00\x74\x5a\xfb\xb7\x87\x7e\x07\xd0\xac\x76\x3a\xb4\xf4\x05\x80\x56\x92\xe3\x9b\x25\xe3\x00\x34\x45\x1d\x57\x2f\xf6\x05\x50\xff\xce\xe9\x40\x3e\xae\xf3\x43\xb6\xac\xe1\xe3\xec\xa1\xdd\x58\x13\x13\x82\xf3\xc2\xcd\xea\x35\xd8\x1f\x4a\x8a\x37\xa1\x6e\xec\x82\x34\x65\x11\xb2\x6c\xa2\x71\x37\xfc\xd8\xe5\x78\xe4\x6f\x12\x83\xf7\xe2\x29\xeb\x58\xad\x03\xc8\x6f\x6f\xae\x4b\xc2\x7d\xfc\xd0\x28\xea\x1b\x31\xd7\x27\x35\x4c\xa0\x9a\x90\xa9\x09\xa9\x96\x6a\x2f\x85\x36\x8f\x91\x39\x36\xde\xda\x5e\xb6\x70\x88\xf3\x91\xf9\xc3\xd3\x54\xe7\x0c\xbc\x7e\xf8\xf6\x8c\xa1\x1a\x12\x8e\x81\x87\x55\xc3\xfa\x6a\x69\xda\x0d\x49\xd1\x4b\x48\xd7\x5e\x69\xd5\x92\x1c\x9b\xc5\xa3\xdd\x6a\x71\x3f\x29\xe5\x5a\x96\x76\xb5\x79\xee\xa1\x6f\x4f\x03\xb5\xbe\x98\x17\x1c\xba\xf2\xf5\x87\xa6\xad\xc5\xe2\xfd\x33\x00\xd4\x9f\x5b\xac\xde\xbd\x0e\x40\xad\xc9\x42\x30\xa6\x04\x40\x75\x97\x95\xd8\x0e\x51\x00\xb5\x7b\x96\xd7\xb7\x25\x00\xa8\x5e\xb0\xb2\xdc\x1c\x0c\xa0\x6a\x65\xa5\x1b\x7e\x0b\x40\x65\xa8\xd5\x8b\xb0\x64\x00\x95\xe1\x56\x66\xab\x97\x03\x28\x55\x7f\x1e\x38\x11\xcf\xb3\xbf\x74\x9a\x83\xfc\x54\xed\xab\x65\x74\xfc\x5b\x11\x86\x3a\xaf\x92\x28\xea\x0b\x73\x61\x73\x34\xf2\xbd\x59\x1f\x63\x91\x35\x3a\x3e\x7f\x2f\xf5\x7f\x48\x3e\x88\xe7\x78\xe3\x02\x52\x1e\x74\xe3\xd6\x4c\x5a\x37\x67\xcd\x1e\xaa\x0b\x09\x92\xcd\x18\xdf\x8d\xfe\x5a\x39\x94\xd7\xd0\x3a\xe3\x24\x3f\x95\x10\x8f\x79\xb9\x63\x8c\x9e\x8b\x17\x38\x2e\xce\x31\x18\xd4\x2c\xb7\xdf\x26\x32\xfb\xd6\x94\xd7\xf2\x35\xe6\x07\xb3\x47\xaf\x78\xaf\xe8\x63\xfc\x2e\xab\x26\x76\xa1\xd2\x4c\x83\x8e\x2c\xb7\x93\x2e\x4a\xfb\xfb\x29\x64\xc6\x95\x44\x29\x8d\xd7\x57\xca\x78\xf3\x28\x5b\x71\xbe\x5e\x47\x46\xe2\xa7\x1b\xf2\x07\xf4\xdd\x4f\xcc\x07\x90\x7b\xc5\xe9\x1b\xfa\x75\x26\x05\x02\xf4\xbd\xd8\xaf\x3a\x71\x0c\x40\x5f\x1e\x83\xb0\x84\x4c\x80\xbe\xf2\x06\x9e\x71\x13\x00\xe4\xe6\x18\x2e\xde\xe9\x0c\x20\xf7\xcd\xe0\x6d\xd4\x69\x80\x3e\xaf\x0c\xf3\x23\x4a\x00\xe4\xfa\xbc\x3a\x3d\x1f\xdb\xfb\x43\x8b\xe5\xc8\x47\xdd\x6e\xa0\xba\xb7\x92\x0f\x91\x38\x4e\x5c\x54\xdc\x85\x3c\x4d\xf6\xb5\x3d\xe8\x6b\x90\xba\xf8\x00\x9e\xeb\x4e\x36\xa5\xee\xf2\x09\x81\xa9\xc8\xba\x44\x1d\x4a\x67\xe7\x3b\x33\xd1\x67\x67\x69\x62\x2e\xb6\x9b\x59\x99\xe7\xd0\x67\x68\x1c\xc9\x47\x7e\x7b\xd0\xc4\x4b\xc6\x42\x49\x84\x38\xac\xba\xc4\xaf\x75\x4c\xb0\xd3\xec\x6c\xd1\x14\x27\x55\x89\x20\x43\xa3\xa2\xa0\x09\x0a\x92\x79\x7a\xbe\x45\xf2\x21\x0e\x52\x4f\xb5\x3e\x17\x69\xef\xb8\x26\xdd\x4f\xe3\x62\x61\xe4\xf1\x6a\x69\x25\xf5\x3e\x85\xfd\x2e\x05\x4b\x4d\x57\x1b\x53\x10\x5e\xab\x2a\x39\x4b\x4d\xbd\x40\xe7\x43\xb6\xf8\x11\xb5\x4d\xe7\x4f\x00\x88\x4d\x55\x6b\xc9\x0d\x04\x10\xcb\xd6\x18\x72\x2a\x01\x40\x42\x52\xfd\xe1\x09\x7e\x00\xf1\xa9\x1a\x2f\x8e\xae\x01\x90\x18\xa2\x71\x22\x79\x18\x80\x78\x81\xe6\xb3\xc4\x95\x00\x12\x27\xb4\xfc\xf7\x4e\xec\x9e\x23\x35\x97\xc6\x7d\x02\x10\xdf\xff\x70\x3b\x3d\x15\x5a\x35\x7d\x03\xf6\xf7\x6b\x25\x91\xc8\x2e\xe7\x1f\x8d\xa7\x75\xa0\xd4\xf7\xa1\x0e\x20\x5d\x3d\x19\x79\xea\x14\x2b\xaa\x03\x4a\x78\x75\x02\x1b\x4e\xf4\xb5\x2c\x64\x0d\x36\xc5\xe5\x22\xdf\xb1\x32\x95\xf2\xc4\x0b\xd2\x69\xdc\x53\x6e\xd0\x7a\x1a\x23\x37\x95\xa2\xde\xd0\x6e\xea\x75\x7c\x7f\x93\xc0\x8a\xbe\x0a\xaf\x08\xd1\x9e\x58\x5e\x60\x79\x41\xf0\xa2\xba\x67\x85\xa1\x4f\xba\x90\xb6\x8a\x6e\x85\xdf\x82\x76\xc1\x24\xa5\xb5\x15\xbb\xb7\x9e\x17\xf8\xaa\x98\x5f\x31\xfb\x70\x1a\x7f\xbe\xb2\x51\x45\x4e\xc1\x67\x12\xa1\x58\x5b\x21\x73\x7f\x3e\x21\x0a\x76\xe5\x31\x6d\xcb\x09\x91\x3b\x57\xd6\x8c\xcf\x48\xab\x2f\xa3\x43\x7a\x9f\x82\x02\x3c\x6f\xa4\x54\x7c\x76\x26\x80\x80\x9d\xb4\x5e\xee\x64\x7c\x96\x54\x3c\x99\x05\x20\x94\xa5\x62\x93\x7a\x04\x40\xe8\xbc\xf8\xd9\x63\x78\x6e\x47\x45\x36\xa9\xfb\x79\xd3\xfe\x1e\xd0\x7a\x70\x65\xce\xd1\xb8\x4e\x2e\x0c\xda\x8d\x75\x60\x4e\xf7\x3b\x30\x84\xc5\x8f\x7c\xcb\x91\xcf\x27\x50\x17\xb7\xbf\x3a\x0b\xd9\xd6\x58\xc9\x5c\xec\x2f\x5b\xf5\xa8\x1e\x66\xed\x94\x7c\x1c\x27\x97\xd4\x50\x5d\xc8\x2c\xf7\x12\xcc\xef\xf8\x98\x32\x5c\x6f\x0c\x29\xa8\xc4\x75\xa6\x85\x54\x15\x9e\x9b\x56\x0e\x7a\x30\x4c\xb0\x90\x90\xbe\x6d\x35\xa2\xfd\xfc\x09\x91\x1d\x53\x73\x64\xc8\x30\x42\xa4\x56\xd4\x92\x19\xf3\x08\x91\x48\xad\x55\x0f\x1f\x42\x88\x68\x57\xad\x70\x62\x2e\x21\x22\x23\x6b\xf2\xcf\x0e\x22\x44\xc8\xa6\x26\xe0\x96\x24\x21\x02\x33\x1e\xb4\xbd\x72\x20\x84\xaf\xec\x7e\x07\xae\x89\xc9\x6d\x8b\x6e\xe4\x11\xbd\x81\xfb\x4d\x7c\xb3\x4a\x71\x9f\x89\x4f\xb0\x88\xf2\x9a\xe1\x17\xe5\xe9\xef\x9d\x3d\xd5\x8d\xfc\x4a\xd9\x94\x61\xba\x9a\x21\x88\xfb\x39\xa1\xd1\xc8\xa2\x15\x9b\xee\x45\xb6\xe7\x6c\x6d\x12\xfa\x98\x64\x4c\xa3\xf7\xfd\x68\x1c\xd5\x01\x1d\xf0\xa1\x3a\xa0\x38\xeb\x73\xa8\x83\x8b\xbc\x43\xf9\xe1\x8d\xfc\x97\xf0\xf7\x56\xc4\x51\x7d\x40\x10\x2f\xd5\x85\x04\x10\xaa\x0b\x19\xa3\x79\x1b\xd1\x95\xf9\xa4\x18\x25\xd5\x21\xdb\x26\x73\xe8\x19\xf2\x82\xfc\xfd\x1a\x26\xca\xa3\x73\x42\xa3\x88\x3d\x32\xc2\x8d\x33\x26\xe0\x08\xdd\x78\x64\x39\x32\x69\x8d\x33\xe3\xd0\x79\xa7\xd1\x22\x03\x57\x6a\x0d\xb9\x65\xe8\x6c\xf6\x3c\xe7\x19\x76\xe1\xe7\x3b\x7f\x22\xe3\xfc\x90\x31\x66\xf7\x33\x59\x5e\x18\x9f\x5b\xce\x1c\x27\x4a\xa9\xee\x61\x72\xf1\x50\x7a\x5d\xc0\xf2\x92\x87\xf9\xbb\xf4\x6c\x0f\xf5\x01\x6a\xa0\xfd\x3d\x93\x87\xd6\x09\x3a\x76\x32\x03\xef\xf7\xa1\x50\x5a\x27\x2a\xe1\x7e\x3e\x3e\x5f\x46\x57\x15\xa1\x1f\xc8\xe6\xa3\x25\xa8\x13\x59\xdd\x56\x86\xec\x6a\x70\x6d\x39\xb2\xb5\xb3\x63\x6f\x63\x3b\x98\x9c\x70\x0f\x7d\x51\xbc\x4a\xa9\x3e\xc2\x49\xf3\x31\xaa\x18\xfa\x7d\x68\x40\x1f\x25\xc9\xc6\xd7\xa8\x2f\x21\xa4\x25\x4d\x0a\x57\x5e\xad\x26\xd6\xc8\x18\xb6\xbe\x1a\x83\x0e\x12\xad\x99\xc1\xd8\x52\x5b\x9b\x77\xe0\x08\xdc\x36\x9d\x2a\x35\x5a\x73\x2e\xe3\x09\x87\x16\xa8\xc3\x6f\xdc\xe2\xfd\x11\x47\xf0\xd7\x8c\xcf\xaf\x67\x3c\xee\x23\xe6\x83\x71\xdf\x8a\xe5\x85\xf1\xff\xe5\x8c\xdf\xbd\xc6\x98\xe6\x2b\x58\xa1\x80\x8b\x3f\x7b\x16\xf5\x83\x4a\x6d\xcb\x46\x3d\x4c\xb2\x1c\xad\x13\xb5\x37\xae\x00\xf5\x73\x31\x87\xaf\x14\xd3\xf9\xe0\xea\x0d\x3a\x1e\x56\xe0\xdd\x08\x6d\xb8\x8d\x3c\xff\xc2\xe2\x6a\xd4\xd7\x06\x36\xd4\xe0\xfc\x31\xde\x82\x56\x9b\x18\x7e\x87\xf2\xa5\x0e\x43\x1b\xf1\x75\xdd\x11\x6f\x71\x5c\x91\x58\xf2\xc1\x9f\xe6\xe1\xab\xa3\x18\x66\xf8\x9b\xb5\x29\xbe\x73\xc7\x60\x2f\xec\xa1\x1d\x59\xf3\xf1\x1d\x3b\xee\x45\xe0\x9d\xf9\x5e\x72\x18\x15\x56\x1d\x42\x17\xb1\xfd\x7c\x5f\x54\x8d\x4f\x42\xdf\xe2\x9a\x71\xc5\xf7\x85\xe9\x19\xda\xd6\x51\x7c\x15\xff\x7f\xe7\xe5\xce\x70\x8a\x15\x58\xc3\x3c\x77\x2d\x1d\xe7\xd3\x17\xe7\x22\xcf\x7f\xf8\xf5\x05\xd4\xad\x24\xba\x5e\x42\x16\x95\xf3\x43\x8a\x3a\x72\x1d\xfb\xcb\xa6\xa6\x5b\xd9\xb4\x1d\xdc\xc5\xf1\x6f\xa9\x40\x2d\xea\x0d\xe7\x2d\x7f\x88\xf3\xec\xd4\xb1\x4f\xf1\xfd\xc6\xfa\xd0\x2a\x24\xee\x02\xaf\x91\x4d\xb5\x21\x2d\x38\x2f\x69\x6f\x69\xc7\x76\x20\x4e\x7e\x28\xd1\x3c\x00\x08\x32\xde\xdf\x40\x8b\xe2\x10\xa6\x77\x99\xc1\x78\xec\x30\xe6\x80\xb8\x8f\xd5\xab\xc8\x66\x4e\x78\x65\xec\x84\xd4\x53\xb6\x13\xf4\x09\x57\x00\x1c\x9f\xff\x45\x84\x62\xab\x37\xcb\x8b\xe4\xbf\xe7\xe5\x01\x56\xee\xc8\xb0\x3a\x8b\xf3\xfc\xd1\x80\x7c\x5c\x3f\x1f\x4c\xb8\x82\x75\xc4\xe2\x5d\xa9\x2f\x50\xb4\x46\x05\xfa\xcb\x6d\x5d\x72\x17\xaf\xd7\x1d\xb9\x8f\xf1\xaf\x70\x7c\x88\xd7\x41\x75\x54\x75\x31\x4b\xb6\x01\xe7\x1b\x7f\x99\xd7\xc8\x83\x8f\x92\x79\x8b\xf9\x19\x64\xf1\x1e\x75\xeb\x56\x03\xbe\xa0\xdf\x8c\xf6\xd4\x9f\x38\xfe\x4a\x58\xc0\x3f\x74\x20\x7a\x8c\xe7\x76\x63\xd7\x93\x53\x29\x2e\x65\xba\x97\x1d\xcc\xcf\x80\xd3\x3d\x70\x7c\x36\xe7\x63\xc0\xe9\x3f\x5a\xc7\x53\xa4\xba\xa9\x5f\xac\x1e\xd0\x27\x16\x7f\xeb\xba\x7f\xcb\xcb\x71\xc7\x22\x7c\x70\xe4\x74\x50\xfb\xaa\x2a\xd0\x57\x2b\x56\x96\xf6\xf3\xc8\x11\x77\x71\xbd\xb4\xd1\x82\xfa\x21\xad\xe9\xf7\x04\xf5\x10\x21\xe1\xf5\xc8\xa6\x2f\xb0\x7d\x85\x55\x38\x02\x2d\x9a\x71\xbc\x9c\xb8\xfb\x1d\xae\xb3\xbc\xac\x3f\xe2\x5d\x76\x45\x26\x8a\x10\x8b\xb2\x2e\xd4\x99\x68\x1e\xa7\x9f\x2e\x62\x0a\xff\xd4\x81\x30\x7e\xde\x71\x12\xc5\x71\xcc\xaf\x61\xde\x5b\x8a\x9c\xff\x45\x02\xcb\x43\xda\x3b\x8a\x9c\x5e\x8a\xd3\x7f\xd4\x31\x1d\x49\x53\x33\xc5\x2f\x4c\x27\x41\x3f\xf1\x47\x3e\xc5\xf6\x3d\x7f\xe6\x25\x39\xaf\x14\x9f\x2f\xf6\x6f\xaf\xc4\x4f\x8d\x55\xbf\x8d\xf3\x7e\xf4\x94\x5a\xac\x42\x12\xe1\xfc\x18\x47\xa7\x75\x9a\xf5\x38\xef\xaf\x88\x7b\x81\xf9\x08\x16\x7f\x83\x7e\x8c\x73\x0a\xdf\xa1\xbe\x78\x9a\x0f\xda\xb8\x13\xdf\x01\x5f\x71\xd4\x1b\x71\xaa\x13\x75\xa5\x03\x74\x00\x9f\x53\xcc\xcd\xe9\xa7\xaa\xb1\xbb\x21\xca\x0b\xff\xad\x03\x61\x8e\xb8\x9c\x5e\x6c\x3a\x8b\x9b\xf3\xbf\x88\x64\x7e\x49\x07\x02\x29\x9e\x62\xfd\x25\x9f\x55\x98\xbe\xca\xf4\x0d\x55\xcc\x4f\x84\xf3\xff\x68\x65\xed\xa9\xab\xf5\x9f\x79\x39\x78\xfe\x16\xf6\x83\x84\xe0\x6a\x9c\xf7\x77\xfe\xaa\xc3\xac\x46\x79\x3d\xc3\x75\xf6\x86\x88\x06\xd4\xbf\xac\x0d\xa2\xba\xb7\x65\x5d\xad\xb8\x4e\x0a\x12\xf9\x88\xba\xd1\x99\x36\x54\x6d\xe3\x7f\xeb\x27\x8e\x5e\x3d\x3a\x10\xaa\x62\x24\x8e\x73\x29\x72\x75\x92\x54\x98\x6e\x44\x64\xc5\xef\x3c\x10\x76\xf2\xe3\xbf\xea\xe3\x4c\x12\xa5\x18\x34\xbe\x77\xbb\x88\x61\x27\x67\x92\x98\x0e\xe4\x64\x5b\xef\xfe\xc2\xf9\x7f\x54\xb0\xd7\x39\xfd\xc7\x4b\xe6\xaf\x82\xf5\x93\x58\x3e\xe0\x8f\xba\x0f\x3d\xbc\x37\xe3\x8c\xff\xd6\x7f\xfc\x97\x0e\x64\x10\xe3\xd8\xb8\xba\x2a\xa3\x18\xef\xe5\xcf\x78\xab\x39\xc9\x14\x39\x1d\xc8\xc6\x0a\x8a\x9c\x0e\x24\x99\x69\x10\xb2\x1a\x28\xb7\x5f\xdc\xfd\xbd\x52\x09\xa9\xda\x44\x5f\x7f\xc1\x7c\x41\xbe\xf3\x11\xf2\x2d\x8d\xfe\x9f\xe3\x7b\x1b\x18\xa7\xf8\x98\x79\x91\xfc\x43\xff\xc1\x38\xd6\x1b\x02\x14\x4b\xaf\x51\xbc\x6c\x45\xb1\x88\x9d\x4d\x86\x3f\x74\x30\x4e\x7f\xf1\xf8\x7f\xeb\x3f\x7a\x74\x20\x5c\x1d\x14\xa6\x03\xe1\xf8\x7e\xce\x57\xc4\x87\xd5\xdb\xe1\x7c\x51\x66\x1d\xa0\x18\xc2\xea\x08\x6c\x60\x75\x6f\x38\x1d\x48\x32\xfb\xfd\x9c\xdd\x84\x40\x3c\x21\x97\xbb\xbf\xbb\x1b\x21\xd5\x66\x84\x80\x0a\x21\x2f\x1e\xd1\x9f\xff\x52\x21\xe4\xd3\x68\xfa\xff\xd7\x2c\xa7\x9c\xfe\xa1\xa7\xfe\x09\xfb\x2e\xb7\x19\x0f\x5a\xa1\x4a\x91\xd3\x3f\x5c\xfe\xce\xe2\x67\xfa\x87\x7c\xb9\xdf\x79\xe0\xf8\x37\x2e\x2e\x2e\x4e\x2b\xf6\x1e\xe6\x13\x7b\xa3\xc5\x5f\x3a\x01\x4e\x07\x32\x88\x79\xb3\xfc\x97\x0e\x24\x84\xf1\x7d\xe1\x2c\xfe\x98\xc1\x84\x40\x09\x21\xdd\x2b\xf7\xce\xbb\x84\x64\xbb\x51\xcd\xcb\xe5\x1c\x42\x7e\x7d\x20\xa4\x3a\x98\x90\x9f\x15\x84\xbc\x74\x24\xe4\xd7\x42\x42\x3a\xd5\x7e\xfb\xc2\xbc\x10\x66\xed\x80\xd3\x3f\x88\xb0\xf8\x39\xff\x0f\xa6\xff\xb8\xc6\xda\xe6\xdf\xfa\x8f\x42\x96\xbf\x3f\xf5\x0f\x5c\x3f\xe8\xd1\x3f\x70\xfc\x3f\xd3\x7f\x70\x3a\x08\x4e\x0f\xc0\xf1\xe2\x7f\xeb\x40\xb8\x7a\x22\x5c\xff\xf0\x65\x6d\x71\x3a\xd3\x2c\x2d\x66\x79\x09\x67\xf7\x74\x57\x1c\x21\x5d\x0a\x84\x24\x4f\x20\xe4\x87\x05\x21\x59\x16\x84\xfc\x88\xa6\xfd\xa2\x23\x83\x90\xbb\xad\x84\x74\x44\x13\xd2\xdd\x9f\xbf\x97\x10\xd2\x55\xd7\xbd\x8a\xec\xdd\x1f\x38\xfd\xc3\xdf\xfa\x8f\x32\xc6\x2d\xff\x2f\xfd\xc7\xbf\xe9\x1f\x2c\x03\x7a\xc7\x69\xc0\xfa\x71\x8f\x0e\x82\xe9\x01\x38\x3d\x08\x97\x1f\x4e\x27\xe4\xc4\x78\xef\x1e\x3f\x10\xf6\x59\xd3\x58\x7e\x38\x1d\xc8\x3a\x6b\x8a\x3b\x1b\x08\xf9\x79\x9c\x90\xa4\x6b\x84\x7c\xef\x24\x24\xdb\x8a\x90\xaf\xb7\x09\x29\x76\x25\xe4\xdb\x34\x42\xaa\xdf\x11\xf2\xf5\x05\x21\x6f\xf8\x08\xf9\x92\x4b\x08\xc8\x11\xf2\xd6\x83\xfe\xed\x13\x36\xe6\x70\xfa\x07\xce\x07\xe7\x1f\x3a\x30\xef\xff\x3b\xfe\x9c\x8b\xbf\xf3\xc0\xf5\x7b\xee\xfe\x1b\x30\xbe\x5b\x9b\xf1\xd7\x1c\x0f\xce\xe9\x01\xb4\x2e\x53\xd4\x65\xfc\xaf\x31\x8b\xff\x1f\x3a\x90\xbf\xc6\xcb\x05\xe9\x54\xe7\xb1\xe6\x2d\x21\x3f\xe3\x08\xd9\x91\x4b\x48\xc7\x64\x42\x0e\x36\x10\xf2\xe5\x00\x21\x99\x6b\x09\x69\xf7\x22\xa4\xe8\x0e\x21\x1f\x3d\x08\xb9\xab\x4e\xaf\x5f\x5b\x12\xf2\xe1\x1c\x21\x5d\x5f\x08\x69\x62\xf1\x71\x7a\x28\x4e\x07\xf5\x0f\xfd\x8b\xf7\xbf\xb7\xff\xb3\x6c\x2e\xe0\xf4\x0f\xa7\xbc\x7f\xe7\xa1\x47\xff\xc0\xd7\x3b\x4e\x4e\xef\xc1\xf1\xe0\x1c\x72\xbc\x30\xa7\x7b\xe0\xf2\xd1\xa3\x03\x61\xf7\x6a\xf8\xb8\x3f\xc6\x89\x9b\x84\xcc\x0d\x22\xa4\xd3\x93\x90\xd5\x2b\x08\xf9\x96\x4a\x48\x94\x01\x21\x9f\x2a\x09\x49\x8c\x21\xe4\xe3\x0e\x42\xba\x9f\x6c\xdb\xb6\x13\x52\x98\x4c\xc8\x3b\x11\xaa\xf5\x69\xd9\x49\xc8\xcb\xed\x84\xb4\xfc\x20\xa4\x6b\xf1\xef\x71\x91\x6b\x07\x15\x0a\xbd\xe3\xff\x5b\xff\x95\x37\x99\xdd\x7f\xe6\x49\x95\xc5\xb8\xdc\x93\xac\x5d\xa5\x5d\xff\x9d\x07\xe3\xf4\xbf\xe2\x67\x71\x72\xfa\x0f\x8e\x07\x96\xcd\xed\x7d\xcd\xfd\x9c\xf3\x0d\xe1\xfa\x0b\x37\xce\x0e\x66\x3a\xb7\xb1\xe9\x84\xfc\x3a\x47\xc8\x4c\x1f\x42\x3a\xc2\x09\x59\x7e\x9a\x90\x4f\x43\x08\xe9\x7e\x7e\xfa\xa0\x47\xc8\x7e\x19\x42\x5a\x27\x12\x72\xb2\x1f\x21\x6f\x73\x08\x29\x0c\x27\xe4\x8d\x2f\x21\x77\x4d\x69\x0e\x5e\x18\x12\xf2\x4a\x85\x90\xce\xcc\xdf\xfa\x48\x6e\x3e\xb8\x56\xd0\x3b\xfe\x7c\x15\x8a\xe7\x58\x7c\xb9\x4c\x27\x93\xb9\x8c\xe2\x09\x56\x6f\x2d\x95\xf9\x71\x1d\xc9\xa2\xaf\xff\xd9\xfe\xb9\xf8\xb9\x3a\x20\x9c\xfe\x83\xe3\x81\xff\x46\x29\xe6\x8b\xc5\xe9\x64\xb8\x7c\x98\xb2\x7c\x76\xcf\x43\x9d\xad\x54\x4f\xf9\x4d\x80\x90\x69\x06\xb4\x1e\xdc\x92\x3b\xd4\xf7\x67\x53\x1c\x21\xcd\x57\x09\xd9\xb3\x96\x90\xd7\x52\x84\x9c\x58\x43\xc8\x8b\x72\x42\x0a\xde\x11\xd2\xa8\x45\xc8\x9d\xb1\x84\x3c\xf7\x21\xe4\xc5\x63\x42\x9e\x5d\x26\xe4\xd7\xcd\xdf\x75\xc1\x6e\x78\xf2\xce\xc6\xf6\xdf\xc2\x8b\xfa\x97\x0b\xc6\xbc\xb8\x62\x3b\xbd\x4d\x60\x10\x6d\xf7\x82\x23\xb1\xdd\x7f\xe5\x43\xbf\xc5\xb4\xc7\xbc\xe8\xaf\x72\xd4\x82\x17\xcf\xa1\xa4\xd4\xf0\xa1\xe2\xfb\xe0\x17\x7e\x7e\x2e\x0f\x5c\xfb\xe7\xee\xb3\x38\xf3\xaf\xfa\x77\x1f\x8c\xdf\xc8\xfd\x5c\x74\x1b\x6b\x1f\x16\xbd\xfb\x49\xf7\x78\xd1\x21\x41\xc8\x90\x7b\x54\xf7\xe8\x17\x44\x48\xdb\x74\x9e\x80\x85\x5b\x08\x79\x5d\xcd\xdf\x10\x3e\x81\x90\x26\x7e\xa1\xab\xf1\xd3\x09\x79\xf6\x48\x54\x2c\xd5\x89\x90\xc7\x4b\x44\x1f\x5c\xdc\x4c\x48\x5d\x9e\xd8\x8e\x5b\x3b\x09\xa9\xf1\x15\x97\x6d\x5c\x4a\xc8\xfd\x54\xf1\x88\x1f\x81\x84\x54\x28\x4b\xa1\x53\xe1\x65\x3d\x99\xa5\xd8\xef\x27\xcb\xe0\xf3\x64\x4e\x85\x14\x9e\xbb\xc9\x38\x2c\x89\xf5\x45\xd3\xe5\xa5\x70\x3f\x86\xd3\xbd\x1c\x1e\x2c\x89\x4a\xe6\x43\x1b\xc5\xbf\x76\xe3\x81\x74\x31\xac\xeb\xbb\xf7\x87\x58\x33\x97\x07\xee\x7e\x72\xf7\x99\x27\xf7\x3f\xe2\x27\xff\x81\xec\xe7\x9c\x5e\x48\x29\x92\x90\x8e\x85\xbc\x3c\x26\x21\x84\xbc\x1f\x24\xb2\xc3\xb5\x98\x90\xd7\x47\x25\x1b\xc7\x5d\x22\xa4\x41\xbb\x8f\xe7\x5c\x3f\x42\x1e\xb7\xca\x07\xad\x0d\x27\xa4\x96\x28\x05\xc6\x88\x10\x52\xdd\xa4\xa4\x70\x24\x99\xe7\xfe\x9d\x3e\x8a\x91\xe7\x8c\xf9\x12\x6f\x8e\x52\x5c\x5f\xee\xca\x2f\x54\xfe\x58\x71\xff\xd3\x62\xfe\x91\x37\xa6\x2a\x7e\xf9\xdc\xc5\x57\x70\xf9\x99\x52\x0e\x80\xc0\xdb\xbc\xb1\x2a\xfa\x00\xc2\x31\x99\x1d\x2a\x21\x00\xc2\x65\x9c\xee\xe5\x48\x8a\xf2\x77\x00\xa1\x13\x29\x87\xd1\x17\xc7\xf5\xe0\x29\x15\x2d\x00\xa1\xc4\xfd\x17\x94\xeb\x01\x84\x14\x13\x96\x2b\xb7\x03\x08\xfe\x8a\xfb\xa4\xdc\x09\x20\xf8\x36\x66\x84\x8a\x38\x80\x60\xdd\x9f\xf7\xff\x3f\xe2\x9e\xf0\x1f\x38\x87\x3d\x25\xb1\x53\x13\xfc\xf8\x7c\xf6\x45\x41\xe2\xa4\xcc\x4f\x42\x9a\x3f\xf5\x3d\xa7\x9f\x40\x48\x23\xbf\xb2\x8a\xe3\x34\xde\xa9\x8f\xc4\x55\x4f\x7a\xcd\x17\xb8\x74\xcf\x45\x5d\x34\xc0\x56\x78\xf9\xad\x05\xea\xb7\x96\x5e\x10\x13\xbe\x21\xaf\x61\xbd\x75\xb5\xc4\xac\xd2\x4c\x0d\xdd\xc4\x67\x52\xca\x97\x47\xa9\x57\x64\x2d\x96\x96\x2f\x8a\x54\x5f\x5f\x12\x27\xbd\xb5\x40\x59\x7d\x7d\xad\x8a\xf4\xda\x8b\xb3\xd5\x9b\xdb\xd6\x48\x55\x9d\xdb\xab\x71\x0d\x40\x32\xed\xd4\x60\xcd\x12\x00\x29\xd7\x63\xb3\xb4\xbc\x01\xa4\xa6\x24\x25\x69\x2d\x01\x90\x12\x4c\x14\xd4\x1a\x08\x20\x39\x67\xcf\x7b\x6d\x55\x00\x29\x9e\xf8\xa7\x5a\x76\x00\x12\xe5\xb1\x43\x35\xfd\x00\xc4\x33\xa3\x07\x68\x06\x00\x88\x8f\x8b\xbc\xab\x51\x09\x20\xb6\x6c\xeb\x77\x8d\xf7\x00\x62\xf3\xff\xdf\xe3\xe7\xfd\xff\x28\x7b\xef\xb8\x9e\xdf\xef\x7f\xfc\x18\x4d\xed\xa5\x3d\x25\xed\x81\x54\x22\x24\xa3\x48\x85\x64\x54\xb2\x52\x4a\x49\x65\x25\x4d\x4a\x69\x2a\xed\x45\x11\x9a\x0a\x95\x8c\x92\x8c\x52\x88\x32\x8a\xc8\x56\xb2\xb7\xeb\x77\x7b\x9e\xeb\xf1\xe0\xc5\xfb\xfd\x7a\x7f\x3f\xbf\xd7\x3f\xe7\xf5\x6c\x79\x9c\x73\x9d\x6b\x3c\xce\xfd\x7e\xdd\xcf\x56\xf8\x83\x0f\x22\x82\x3a\xad\x5f\xf7\x4b\x62\x7d\x76\xb0\x44\x16\xeb\xf4\x4f\xb9\x55\xc6\xf2\x7b\x00\x74\x2b\xa8\xef\x57\x58\x3e\x2c\xf4\xc6\x6d\x0d\x6d\x83\x12\xde\xe2\x2b\xdf\x34\x47\x4d\x9f\x2c\x30\xf1\xfc\x33\x2d\x95\x45\x8f\x84\x9b\x4e\x67\x6b\x59\xae\xf3\x15\x1b\xac\x09\xd4\xac\xda\x71\x5f\x72\x7f\xd5\x3d\x4d\x89\xbd\xc3\x47\x76\x97\x7f\x1d\xe3\x76\xf0\x81\xcc\x9a\x92\x7b\x1a\x6d\xa7\xe4\x64\x17\x1d\x49\xd2\x58\xd6\xde\x24\xbb\xa1\x38\x5d\x63\xe7\x93\x63\x32\xfd\x87\x12\xc7\x04\x90\x7b\xd2\xb3\x72\x8f\x6a\x2e\x22\x44\x7a\x44\xda\x16\xcd\x00\x42\x46\x8a\x27\x45\x68\x76\x13\x22\x15\x1f\x2f\xa1\x59\x46\x88\x64\x6b\xac\x85\xe6\x76\x42\x24\x55\xa2\x77\x6b\xb4\x10\x22\x3e\x2c\x32\x49\xa3\x9a\x10\xb1\xf9\x11\x4b\x47\xaf\x21\x44\x64\x60\x87\x97\x86\x2c\x21\x22\xb7\x83\x1f\x8c\xda\x45\x88\xd0\xce\xff\xb7\xff\xc3\x99\xb7\x41\x31\xbc\xb7\x4c\x0e\xc9\x60\xdd\xf2\x43\xa7\x1a\xde\x4f\x7a\x55\xae\x89\xef\xa7\x0f\x4b\x0d\xf0\x7d\xf5\xb6\xd9\x38\xee\x21\x27\x00\xda\xa3\x4c\x9f\x8d\x3c\x09\x70\xc1\x72\x42\xe3\x98\x8d\xfc\xba\xf5\x81\xc6\xa7\xcc\xfa\x44\x93\x8e\x0f\x9d\x00\xb6\x5f\x24\x5b\xca\x92\x8c\xd7\xad\xd4\x93\xc9\x2c\x6e\x1f\x1f\xb8\xa9\x5a\xfe\xe7\x81\xb0\x71\x69\xb1\x63\x94\x3e\xe5\xad\x1b\xbb\x34\xaf\x48\xe5\x73\x56\xb9\x51\x4a\x55\xaf\x5a\x40\xc6\x12\xc3\xc2\x4b\xf7\xd5\x6e\xa7\xe5\x1a\x4e\xbd\x5f\xa4\xb6\x61\x9f\x87\x61\xe1\xa7\x57\x2a\xcf\x13\xcd\x8d\xea\x08\x51\x4e\xda\x1d\x38\x56\x90\x10\x25\x93\x9d\x6a\x46\xfa\x84\x28\x28\x87\x85\x1a\x4d\x27\x44\x7e\x5e\x88\x94\x41\x26\x21\x32\x3f\x82\xea\x0c\x7a\x08\x91\xd9\xbc\x6d\x92\xfe\x0f\x42\xa4\xad\x36\xfb\xea\xb9\x12\x22\xa5\x16\xb8\x57\x6f\x1b\x21\x92\xb7\xfd\xa7\xe9\x2e\x22\x44\xc2\xe5\xbf\xf8\x6f\xf6\xe7\xb8\x8f\xa4\xb7\xa3\xac\x55\xb0\x1e\xf9\x36\x44\x1f\xeb\x6b\x4f\xbd\x26\x20\x6e\xd7\xfd\x63\x32\xea\x04\xdc\x20\x96\xf8\xf5\x2b\x67\xac\x10\x0f\x6e\x04\x6b\x53\xa1\x2e\x80\x1a\x07\xeb\xa1\x2a\x92\xbc\xb3\xcb\x5e\xcc\x9c\x38\x76\xa3\x68\x41\x51\xd6\xf4\x40\xab\x7a\xd9\xb3\xb9\xa5\x96\x5e\x4b\xdc\x94\x26\xa6\x6f\x9c\x26\xee\x63\xa6\x36\x2d\xf9\xf6\x94\x98\x88\x80\xd1\x45\xf1\x5a\x16\x12\xe9\x93\x34\x27\xc4\x8c\x9b\x74\xb1\xe4\xbd\xd6\x40\x94\xa7\x79\x46\xa3\x91\x76\xc3\x4e\x05\x73\xbe\xae\x9d\xda\x67\x22\xda\xcc\xa5\x5e\x57\x6a\x9d\x0c\xed\x31\xf7\x23\xb7\xc6\x88\x07\x39\x98\x2f\x23\x2f\xd4\xdf\x6c\x5e\x34\xd1\x92\x10\xb5\x29\x01\x73\xcd\x1e\x13\xa2\xd2\xe6\xf7\xcd\x4c\x92\x10\x65\x1d\xdf\x2e\xd3\x9d\x84\x28\x3e\x5f\x3f\x6d\xc2\x13\x42\xe4\xc3\xbd\xde\x4d\x88\x26\x44\xee\xd2\xba\x97\xc6\xd5\x84\xc8\xd6\x78\x64\x8c\x3b\x49\x88\xb4\xc3\x7f\xce\xf7\x11\xe9\xd4\x2a\x60\x15\xe0\xe7\xd6\x31\x58\x87\x7b\x3d\x30\x1e\xab\xe3\x8f\x1b\xb0\x5c\x0f\x77\xcc\x67\x22\xef\xe3\x5a\x9b\x2d\x56\x47\x9a\x3d\xe7\xe3\x3d\x96\xd3\x21\x8e\x58\xbf\xac\x9e\xb5\x78\x38\x17\x3f\xc0\xd1\x86\x25\x57\x65\x5d\x87\x7b\x16\x1c\x59\xf4\x43\x67\x88\xb0\x53\xda\xb7\x85\x2e\x93\x8f\xcb\xec\x8c\xeb\xb3\x8f\xb6\x77\x55\x3b\x17\x35\x63\x5e\xee\x9a\x4d\x63\xf4\x43\xef\xcc\xfd\xb1\xed\x87\x8e\x5e\x90\xf5\x9c\xa9\x89\x6e\xfa\x3a\x9b\x45\xac\x0f\x15\x85\x18\x3a\xf8\x47\xcd\x1e\x7b\x8a\xc7\x68\xb9\xdf\xe8\x59\x96\xd7\x0a\x8c\x8a\x7c\xc3\x66\x09\x3d\x1b\x65\xf8\xc5\xa7\x71\x96\x3f\x89\xd1\x3f\xe4\x35\x62\x46\x19\xa9\xd6\xce\x5d\x3b\xd1\xaa\x8f\x5c\x1d\xd3\xbf\x26\xd5\x6a\x06\xb9\xa3\x11\xba\x4a\x70\x7a\x20\x79\xa1\xbe\x6b\x45\xb4\xa5\x13\xf9\xac\x56\xef\xf6\x64\x8a\x07\x21\xca\xfb\x5c\xaf\x4f\x89\x22\x44\xe9\xb5\xab\xa4\x85\x29\x21\x8a\x01\xce\xe9\x93\xf6\x13\x22\x1f\xfd\x3b\x0e\x7f\xfa\xff\xa3\x0d\xe1\x19\x18\x30\x37\x47\xbe\xcf\xc3\xde\x99\xf4\xfe\xb3\x83\x3d\xea\x27\xb5\xf1\x2c\xc2\x7b\x8b\x17\x36\x3a\xe3\xe7\xba\xba\xe5\xd8\xf7\xa0\x22\x7f\x15\xf2\x1e\x0e\x3e\x73\xc7\xf5\x24\x6f\x9e\x67\xa4\x38\x3f\x40\x4a\xc6\x5a\xe5\x51\xfe\x23\x5e\xc4\xcc\x5f\x3d\x7d\x42\x95\x54\x74\xa8\xe0\x0a\x75\xeb\xab\x2a\x3a\x81\x73\x5c\x64\x9d\x2b\xb4\x5d\x7c\xe6\x2f\x33\xd9\x18\xad\x7f\xcf\x43\x63\x89\x46\xf4\x9a\xb1\xd2\xab\xa6\x3b\x6d\xce\x9d\x39\xbe\x76\xb9\xe2\x22\xa1\xaa\xe7\x13\xf4\x9d\x53\x17\x1e\xbf\x7c\x78\x42\xc6\xd2\xa7\x0b\x87\xf4\x4e\x36\xfe\xbe\x34\x64\xa1\xc1\x57\xdd\xf1\xf2\x8b\x57\xcd\x5f\x48\xfc\x0d\xaa\x1c\x7f\x3a\x8c\x25\x09\xba\x3f\x1c\xf9\xed\x34\x48\x89\xf6\x84\x05\xd1\xf3\x82\x48\xad\xe6\xf1\x85\xa3\xe7\xa6\x92\xcb\x63\xc4\xe7\xf7\xda\xcc\x26\x8f\xd4\xf5\x1c\x9c\xad\xf3\x49\xbf\xda\x3d\x7b\xcd\x59\x5b\x09\x51\x71\xb5\x33\x9a\xe9\x49\x88\x32\xff\xef\xfc\xa7\xfe\x7f\x1f\x30\x64\xc6\xdf\x02\xeb\x6d\x8f\x5e\xcc\x41\x7e\x60\xe7\x97\x85\x58\x35\x6f\xc9\x76\xc6\x5b\x72\x8d\xae\xab\x11\x9f\xaa\x35\xf7\xc0\xdf\x2b\xdf\x40\x79\x30\x45\x6f\x36\xf4\x71\x6c\xe6\x60\x00\xc6\x29\x49\x7f\xb3\x2c\xcf\x63\x80\xa8\x17\x9b\xbe\xca\x5f\xe7\x31\xda\x7e\x25\x60\x99\x81\xa6\xd8\x2e\xbf\x3e\xbf\x10\xcb\x6b\x0a\xf2\xee\x05\xeb\x9f\x2f\x72\xd1\xf0\x72\x69\xf6\xd2\xf3\xaa\xd0\x13\x58\x3c\xd2\xf3\x44\xf8\x4f\x83\x03\x0b\x12\x3d\x96\x64\xcc\x32\xb2\xb3\x1f\xb2\xd6\xa6\x3c\x64\xac\x95\xed\x2e\xf7\xf1\x17\xae\x8c\xf5\x9d\xab\xba\x66\x46\xf7\x6e\xa3\xfa\x39\x27\xd7\xcc\xfa\x50\x62\xf0\x66\x4e\xee\xca\x23\x24\x4b\xf7\xa7\xcd\xa9\xe5\x97\x49\x95\x76\x98\x0d\x9f\xf3\x7b\xd2\xac\xb9\xd8\x7a\xe2\xd2\xeb\xa4\x53\x23\x68\x76\xca\x12\x79\xf2\x70\x34\xff\xec\x67\x8b\xd4\xc8\x33\x75\xee\xd9\x32\x0b\xf9\xc9\x07\xb5\xf9\x33\x23\xe6\xaf\x27\x44\x65\xec\xac\xd3\xf6\x55\x84\xa8\x24\xb3\xfe\x93\x43\x06\x78\x9b\x6b\x70\xc3\x34\xac\xc3\xf6\x4d\x76\xc0\xea\x5e\xa7\xeb\x52\x8a\xff\x3b\xad\xc4\x75\xa3\x31\x09\xcb\x73\x70\xd2\x61\x03\xe6\x41\xd9\xb2\x40\x1c\xf7\x22\xf3\xad\x58\x2d\xcd\xca\x0d\x46\xfe\x58\xa2\x62\x28\x56\x0f\x23\x5e\x44\x60\x7e\x6c\x9f\xb3\xcb\x4c\xea\x38\x80\xef\x9c\x88\x89\x63\x7c\x04\xaf\xad\x1e\x19\xda\x66\xfe\x52\xda\x75\xf1\x96\xe0\x01\x7b\x33\xd5\x54\xfb\xd6\xed\x26\x6b\xc5\x35\xa6\xcc\x99\x1b\x24\xb0\xa3\x4c\xb3\x70\x66\xff\xd6\x27\xa9\xa5\xda\x76\xd3\xad\xb7\xb4\x1c\x7d\xaa\xfd\x64\xea\xbb\xcd\xe7\x1b\x77\xe9\x68\x4f\xf1\xdc\xcc\x7f\x47\x42\x3b\xc0\xa2\x7f\x53\xd7\x5b\x51\xcd\xcb\x53\x16\x07\xec\x20\xbd\x1a\x11\x53\xec\x37\x2c\x23\x03\xea\x8f\x2c\xac\xbc\x13\x09\x51\x73\xb0\xe8\xf7\x7c\x46\x88\x1a\xbf\xc5\x64\xf7\xc3\x84\xa8\x68\x5b\x28\xad\xe6\xac\x17\xaa\x93\x97\xae\x34\x27\x44\xb1\xc9\x42\xc6\x75\x3e\x21\x8a\x8a\x93\xc4\x5c\x36\x13\x22\x2f\xc0\xfa\xff\x46\xc1\x0a\xf1\xa9\x87\x7d\x0e\x88\x6b\xb3\xfc\xa7\x96\xf2\xb5\x1b\xe8\xf8\x6f\xc0\x7a\x73\x8d\x78\x00\x56\x45\xcb\xe7\x07\x61\x75\xb0\xf0\x65\xe8\x03\xf4\x7f\x30\x12\xeb\xb1\x49\x29\x51\xa8\xae\xbe\x4b\x31\x16\xd7\xd5\x2d\x31\xb4\x8a\xe8\x1d\x9f\x2c\xc5\x9f\x0c\xb0\x72\x42\x92\xa9\xf2\x3a\xde\xe2\x45\xd1\x09\xca\xe3\x4b\xc5\xb5\x6c\xfa\xf6\x5c\xb1\xae\x95\xff\x68\xe5\xb2\x47\x68\xe5\x50\xa5\xda\x29\xea\x31\x64\x9b\x93\xca\xed\x89\x47\x62\xb4\x93\x55\xd4\xa4\x4c\x82\x77\x0f\x2f\x7e\xab\xd6\x6c\x2c\x1e\x6d\x72\xb6\x41\xed\xcc\xb8\xb3\x51\xce\x9d\x73\xd4\x14\xc6\xcd\x8a\x92\x1e\xb8\xa8\x92\x3e\xee\x69\xe4\x37\x42\x94\x52\xc6\xdf\x09\xd9\x44\x88\xd2\x98\xf1\x3b\x82\x96\x11\xa2\x50\x3c\x7e\xf5\x96\x0c\x42\xe4\xaf\x8d\xf7\x0f\x74\x24\x44\x7e\xc8\xb8\x0b\x1b\x8d\x08\x91\xdd\x39\x5e\xc1\x77\x3a\x21\xb2\x92\xe3\x7c\xbd\x1e\x11\x22\x9d\x35\xee\x8b\xa7\x0b\x21\xd2\x7e\xef\xcb\x67\x60\xf5\xfb\x49\xf3\x42\xc4\x37\x3b\x7b\xdd\x50\x28\xaa\x2d\xcf\x0b\xf1\xab\xc6\x47\xfe\x88\x47\x9c\x8c\x0f\x42\x9c\xa7\x5c\x24\x14\xf5\xca\x0f\x8a\xee\x42\x94\x25\xbb\x2d\x16\xd7\xd7\xe4\xb4\x38\xac\x0a\x47\xbd\x4c\x46\xde\xd4\xf6\xef\x14\x2f\xf4\xc9\xcd\xc0\xf3\x95\xcb\xd5\x1c\xdc\x4f\x16\x25\xe5\xde\x97\x31\x1d\x52\x69\xbd\x28\x3b\x4d\x37\x58\xb0\xc4\x62\x63\x96\xfc\xf4\x51\x92\x03\xa6\x31\x99\x07\x9c\x73\xa4\x0d\xc7\x79\x64\x0e\x0b\x8c\x95\xa9\x34\xd8\x96\x61\x11\x2f\x26\x7b\x45\xd7\x3d\x3d\xae\xc8\x58\x4e\x55\xdb\x2e\xed\x54\xfd\x7a\x39\x11\xcd\xc1\xb4\xf1\x1d\x96\xb2\xd3\x35\xd3\xf7\x95\xbe\xcc\x96\x1e\xd0\x9a\x9c\xca\x4f\xc8\x48\x5e\xad\x65\x09\x61\x84\x48\xcd\xd2\x1a\x13\x63\x42\x88\xe4\x04\xed\x49\xbb\x9c\x08\x91\x2c\xd4\x36\x8c\xb0\x21\x44\x52\x54\x7b\x5f\x88\x19\x21\x12\x75\x3a\x96\x41\x33\x09\x91\xd8\xaf\x1d\xc9\x89\x93\x78\xb0\xce\xa2\x40\x4f\x42\xc4\xf3\x9e\xd9\x2c\xc0\xf9\x7f\xc7\x67\x15\x56\x7d\xdb\x1d\xa8\x8a\x7a\x43\x2f\xe5\x7d\xd5\x14\xed\xc0\x2a\x71\xd9\x97\x48\xc4\xe1\x8a\xfa\x63\x50\x17\x24\x27\x2c\x01\xf9\x2f\x29\x62\xf4\xb6\x71\x0c\x49\xc7\x73\x45\x08\x64\xe1\xfc\xf1\x87\x5c\xfc\xbd\xd5\x8d\x07\xb0\x3a\xbc\x70\x07\xe5\x85\xcc\xfc\x79\x64\xaf\xa0\x2d\xc0\x24\xbe\xc3\xfe\xa3\x5a\x79\x37\x1a\x3d\x28\x0e\x9f\x64\x2a\xf4\x55\x37\xb3\xd8\x7a\xd1\x25\x91\x1c\x4d\xa3\x43\x2f\x36\x8c\x15\xcd\x55\x3f\x79\x28\x69\x77\x85\xd8\x64\x35\xad\x83\x0f\x0b\xf6\x88\xd9\xa9\xf8\x1e\xb4\xaf\xc9\x17\x03\xe5\x05\x45\x99\xed\xaf\x45\x35\x95\x6e\x14\xc9\x3d\xbb\x27\x7c\x58\xd9\xa3\x50\x95\x10\xc1\x4f\x2a\xe2\x39\xb1\x84\x08\x8d\x57\x09\x4d\x37\x22\x44\xc8\x58\xa5\x34\xa5\x84\x10\x21\x09\xd5\xd0\xc4\x06\xce\x39\x49\x65\x70\xcf\x51\x42\x04\x13\xd4\x46\x44\x4f\x23\x44\x48\x5d\x4d\x66\x67\x1c\x21\x82\x4f\x54\xb3\xc2\x75\x08\x11\x94\xee\xce\x5a\x83\xa8\x47\xbb\x0b\xe5\xbd\x9d\x77\xa0\x7a\x40\x35\xa2\x94\x0f\x51\xf1\x32\x0a\x6f\x8f\x16\xb7\x51\x5d\x98\x5c\xdb\x64\x3c\x71\xa4\xae\x4c\xc7\x75\x64\xcf\x0a\xda\x2f\x28\x3c\x29\x1f\xd1\x92\x2d\xc3\x0a\x99\x3e\x28\x87\x10\xff\x71\x19\x53\x82\xeb\xc4\x5c\xfd\x0a\x8c\xb3\x71\x1f\xad\xaa\xeb\xbb\x1f\x7f\x29\xe7\x39\x4c\x66\xf4\xd4\xe3\xbe\xe3\x2e\xf1\x46\xa9\x54\x1c\x5f\x6e\xbf\x99\xcf\x5c\x71\xd1\xf1\x25\xeb\x1e\xf2\x79\xc8\x0d\x1c\x37\xd8\x29\xcf\x37\x59\x56\xbf\xba\x25\xe7\x16\xaf\xaf\x8c\x7a\xf5\xbe\xe3\xe9\x3c\xc6\xd2\xd7\xaa\x5a\x5b\x3f\x73\x4b\x48\xf7\x57\x79\x3d\x31\x1a\x76\x45\x56\xb6\x6a\x11\x21\xf0\x45\x26\xec\xe8\x1d\x42\x86\x3a\xc8\xca\x1f\xb4\x24\x84\xab\x47\xf6\x71\xc1\x73\x42\x78\x14\xe4\xc4\x73\x82\x08\xe1\x19\x2f\xa7\x9a\xc1\xb1\x8a\xb2\x3d\xa9\xbb\x09\xe1\x8e\x93\x0b\x4d\xaa\x26\x84\x67\x92\xdc\xad\xb8\x3e\x42\x78\xfc\x3a\x8c\x28\x6a\xd6\x5c\xbf\x1d\xe3\x51\xef\x13\x89\xcf\x5f\x31\x18\x83\xf8\xef\xe1\x49\x49\x58\xfd\xcf\x77\xa4\xfd\xa1\xd2\x04\xb2\x70\x1f\x8d\x5f\x9d\x8f\xaa\xfb\xbb\x0a\x0a\xf1\x7e\x77\xd0\xcb\xc3\x78\x7e\xd8\xd0\x58\x82\xf1\x5b\x55\x53\x81\x78\x86\x63\x68\x35\xc6\xd5\xea\x74\x2d\x7e\xd6\x2f\xa1\xb7\xd3\x95\xa5\x1a\xb2\x84\x12\x00\x64\x85\x1a\xae\x6b\x97\x0d\x79\x25\x2d\xd0\x98\x6f\xad\x07\x20\x71\xb1\x31\x6f\xf5\x5d\x00\xb1\xe9\x8d\x09\x21\x0b\x01\x44\x46\x37\x4e\x4b\x8f\x06\x10\x9a\xda\xd0\x50\xe1\x0f\x20\xe0\xd9\x20\x71\x89\x0b\x80\xff\xe6\x39\xff\x5e\x2e\x00\x3e\xb7\xb3\x85\x5f\x2a\x01\x78\xcb\x6b\x6f\x71\xce\x84\xdc\x3a\xd5\x96\x68\x97\x94\x23\x92\xc2\x25\x72\x14\xfb\x3e\x70\x0f\x3f\x78\x9d\x63\x87\x5e\xdd\x8f\xfd\x40\x86\xce\xca\x75\xc3\xef\xe7\x66\x5e\xc4\xf7\x78\x6f\x7a\x6b\xfa\x94\x37\x45\x95\xab\xdd\xe2\x11\x15\x3a\x62\x9b\x82\xe3\x5c\xa0\x9e\x81\x28\x6b\x46\x3f\xc5\xc5\x13\x07\x0b\x51\x7d\x22\xba\x8d\xe1\x01\x8d\x2e\xd3\xe6\xd8\x80\x8e\x4a\xc4\xc5\xd7\x2d\xaf\xc6\x38\xb8\x1e\xac\xc1\xfd\xd3\xce\xe5\x34\xf2\x1c\x2c\xe6\x51\xdc\x50\x2b\xbe\x19\xf1\x31\x11\xb1\x56\x3c\x87\xf2\xed\x6d\x7d\xad\x70\x0f\x80\xeb\xf4\x55\x57\xf3\x38\x80\xa1\xdd\x57\x23\x17\x63\x64\xaf\xd6\x04\x20\x73\xf7\xaa\x4d\x02\xe2\x4f\xad\xc7\x8a\x11\xc7\x6c\x75\x69\x40\x45\xa6\x16\xe3\x3b\xc3\x39\xf6\x8a\xc6\x5b\x64\xb2\x35\xc7\xd3\xb3\xf1\x39\x06\xcf\x3e\xc5\xe8\x3c\x9c\x60\x6c\x25\xa3\x2c\x5f\xc2\xdc\x34\x2f\x66\xf0\xe0\xc2\x33\x1c\x7b\xba\x60\x17\xe2\xd8\xac\x0e\x54\x89\x28\x45\x95\x0b\xdd\x29\x0f\x28\x2b\xf7\x00\xf2\x15\x92\xd2\xa8\x0e\x52\xcc\x94\xa3\x88\xdf\x87\xb5\x97\x23\xcf\x6e\xab\x5c\x35\xce\x07\x9f\x12\xca\x0b\x59\xd5\x52\x8f\xf8\xa6\xd3\xbb\x06\xcc\x1f\x9b\x29\x4d\x18\x0f\xb3\x49\x14\x37\x54\x6f\x6c\x43\xdc\x77\x44\xf1\x4d\x44\xa5\x00\x3a\xc3\x24\x50\x6f\xbf\xf3\x85\x71\x34\xda\x24\xba\x62\x75\x26\xf9\xe2\x8a\xd2\x79\x26\x16\x9f\xac\x53\xfc\x00\x32\x75\x3a\xcd\xeb\x31\x13\x6f\x19\xdc\xc4\x88\x77\x94\xbf\x44\x25\xcc\x1b\xea\xd4\xaf\x16\xa6\xe3\x40\x33\x83\xac\x35\x30\x37\xcb\x4f\x6b\x50\x7b\xb2\x86\xda\x2a\x86\x2f\x52\x8e\xef\x16\xc7\x7b\x93\x70\x7f\x2b\x9b\x9d\x81\x7e\x14\x7d\xca\x3f\x86\xeb\xc0\xc1\x43\xb8\xff\xed\x8b\x2f\x41\x16\xc2\x1e\xdf\x72\xe4\x13\x46\x36\x56\x61\x5e\x04\x6f\xaa\x95\xa1\xeb\xe1\x29\x7c\x5a\x2f\x9e\x06\xc4\x43\x97\x57\x5c\xc0\x75\x73\xc1\x85\x8b\xf8\xfe\x31\xe3\xe0\x55\xc4\x01\xc7\x4d\xbd\x8e\xf9\xa5\xb2\x99\xea\x85\xf0\x29\x52\xb4\x1e\xe0\xc1\x67\x31\x44\xce\x1f\x94\x18\x61\x46\xf6\xf2\xcd\xc3\x99\xd9\xbb\x83\x9e\x54\x7a\xf9\x76\xe1\x7d\xee\x5e\x8f\x7c\x8c\xdc\x83\xe0\x93\xb8\x42\xdf\x3f\x74\x15\x57\x9a\x9e\x76\xda\x89\xa5\x47\xe4\x07\x8e\x68\x97\x08\xf5\xef\x3a\x83\xe3\xb6\x32\x9d\x07\x2e\x32\x1d\x07\x1a\xc5\x99\xb8\x30\xdf\xaf\x45\xe4\xb9\xdc\x3e\x13\xd1\xf5\x43\xa5\x05\x98\x7d\x79\x27\x8b\x11\x3d\x4f\xb3\x2e\x43\xd5\x91\x44\xee\x63\xf8\x5e\x19\xd5\x50\x83\x3c\xeb\x90\x8a\x7a\x64\x29\x6c\x5e\x7d\x0e\xdf\x2f\x7d\xaa\xce\x63\x9c\xdc\xad\x2f\x21\x9b\xc5\x59\xb5\x05\xfb\x62\xd8\x5d\xbf\x86\xef\xe1\x53\xc5\x6e\x62\x5c\x0c\xb8\x6f\xe3\xba\xa0\x98\xda\x83\xfb\x33\xf7\x00\x55\x23\x00\x78\xa1\x21\x84\x27\xb0\x17\x9b\xf5\x30\x1f\x5e\xa4\xe2\x74\x80\x97\xb9\x6b\x70\x47\x7f\xf1\x23\x14\xf3\xe3\xa5\x6d\x26\x9e\x64\x5f\x18\x57\x20\xc3\xfd\xc5\xdc\x4b\x59\xd4\xf6\xe2\x4e\xfe\x5c\xf1\x33\x32\x5e\xfb\xf6\x52\xff\x7a\x18\xbd\x8f\xae\x9a\x3f\xe3\x72\x95\x61\x1c\x5c\x52\xa1\xf6\x3c\x7e\xbf\x58\x71\x3f\xa2\xa8\xf9\xca\xc5\x78\xeb\x3e\xc3\xbc\x02\xc7\x29\x59\xe0\x04\xfa\xb1\x67\x45\x3d\xb3\x1f\xd0\xbe\x31\xdb\x15\xcf\x23\x6f\x30\x40\xf1\x12\x9e\xbf\xd7\x15\xb7\xa2\x9f\x2b\xee\xb4\xe3\x7e\xea\xe4\x70\x13\xd7\x45\x9b\x79\x9d\xb8\xbf\x4c\xb6\xbf\x87\xfa\x49\x7a\xbd\x54\x37\x43\x41\xf1\x09\xee\x33\xdc\xf2\xfd\xc1\x34\x0e\xef\x35\x46\x20\xd3\xe0\x83\x9b\x16\x22\xef\x1f\x4b\xe9\x89\xe6\xc3\x72\x37\x8c\xfc\xc7\x28\x7a\x62\xfb\xd8\x9b\x8a\x27\xf7\x8f\xdc\x25\xf8\xf3\x1f\xa5\xce\x63\xc6\x7d\xe8\xb8\x8b\x23\xf1\x2e\x74\x00\xf3\xe9\x0d\xc3\xf7\x79\xc1\xf4\xc5\x61\xe3\xd2\xcd\x20\xed\x9d\x6f\xa9\xbd\x31\xf3\x9f\x71\x39\x20\x4a\xf5\xbf\xb2\xa6\x56\x22\xbe\x9d\xd2\x51\x2b\x0d\xff\xd0\x43\xda\xf5\xae\x11\x51\xe7\xe0\x1f\xcd\xc8\x97\xde\xbc\xb7\x05\xf5\xa5\x7c\xe5\xdb\x70\x5e\xac\xcd\xbb\x89\xf1\x72\x7e\xd7\x89\xfe\x2e\x70\xba\x83\xea\x0a\x2c\x1f\xc8\xdc\xa6\x0f\x79\xd8\xba\x2b\x5e\xe0\xfc\x93\xab\x7e\x8d\xfa\x8d\xdc\xb7\x3e\x8e\xa5\x71\xf8\x99\xcd\x85\x6f\xae\x3f\x33\xe8\x8d\x1e\x42\xa6\x30\x4a\xa7\x4b\x29\xbf\xa1\x28\x30\x9a\x7e\xde\xf3\x83\xda\x03\x0c\xee\x7f\x8a\xc1\xbb\xaf\x33\x78\xf6\x73\xe6\x0d\x81\xfa\xc7\xea\xc4\xbc\x61\x78\x20\xb4\xaf\x14\xc0\xa3\xfb\x7f\xc6\xe5\xf6\x2a\x8e\xcd\x49\xfd\x0f\x1e\x14\x9e\xb3\xa3\x3b\x2e\xe0\x7a\x11\x6e\x74\x05\xdf\x33\x83\x4a\xdb\xb0\xcf\x28\xdb\x1f\x6c\xdd\x97\x4e\x7c\xca\x55\x6e\x77\xf1\xf7\x96\x7c\xb8\x8f\xeb\x87\x7d\xe3\x23\xcc\x83\x19\x3e\x4f\xf1\xfb\xa6\x9e\xfd\xb8\x5f\xea\x00\x3a\x07\x72\x3d\x5f\xc6\xd3\x79\xf1\xf3\x01\x8d\x03\x21\x5c\x0c\x0f\x46\x99\x79\xf3\x35\x67\x74\x2b\x16\x30\x7a\x10\x5e\x0c\x6f\x21\x9c\x51\x84\x4d\xf7\xa4\x96\xd5\xbd\x38\xc7\xe8\xc6\xdc\x60\x70\xfc\x3e\xa6\xff\x09\xe5\x09\xfd\xad\x13\xc3\xea\xe7\xb0\xba\x42\x34\x5f\xd2\x2d\xea\x71\x96\x25\xf5\x34\x20\x1f\x2a\xb6\xe2\xe2\x3d\xcc\x83\x69\x94\x0f\x13\x02\x37\x50\x1f\x68\x8b\x50\x17\xfa\xb9\xa1\xed\x2e\x7e\xdd\x63\x13\xed\x17\xe5\xb6\xad\x0f\xbb\xd8\x38\x75\x3e\xc5\xa7\x9f\x97\xf4\x12\xcf\x4b\x96\x26\x03\xf8\x94\x26\xd3\x29\xcb\x40\x07\x91\x5a\xe4\x3f\x60\xfe\x70\xc5\x92\x7f\xe5\x81\x98\x30\x7c\x86\xb9\x5c\xd4\xae\x6c\xa2\x96\xed\x8f\xc3\xe6\x05\xab\x7b\x51\xc9\xe8\x5b\x9c\x67\x78\x13\xed\x4c\x9e\xfc\xe2\x7f\x30\xbc\x09\xaa\x54\xf3\x4b\x27\xe6\x8f\xb8\xa4\x48\x34\xe1\xae\x13\xdf\x73\x99\xf6\x05\x8b\xbc\x86\xeb\x57\xe8\xfd\x9b\xc8\x77\xd9\x36\x78\x1b\xdf\x33\xfc\x2f\x77\xe3\x7c\xf0\xee\x7a\x84\xfb\x9e\xfb\xa9\xa7\xb4\x3f\x94\xe3\x4b\x64\x21\x2d\x8a\x7f\x8d\xbb\xbb\x6d\xec\x07\x7c\xff\x9c\xd6\xfb\x05\xcf\xd3\x26\x4c\x3f\xa0\x31\x1b\xa8\x95\xb6\xa1\xf6\xbf\xc5\xe1\x6f\x1e\xc8\xdf\xfd\x71\x7c\x18\x1b\x39\x13\xfe\xe0\x07\xb1\xf3\xe4\x18\x93\x0f\x67\x99\x3e\x49\x57\x18\x9e\x0c\xcb\xff\xf8\x95\x27\x4c\xbf\x25\xfa\x04\x94\x57\x46\xfe\x81\x53\xff\xcd\x7f\x60\xfb\xa0\xb0\x38\x38\xfb\x99\xfd\xbe\x99\x0d\xb5\xd3\x98\xfb\xf9\xb3\x19\x5e\x80\x7d\x04\xb5\xce\x0c\xe6\xb8\x96\xe9\xef\x11\x30\x94\xda\xb0\x46\x80\x1f\xae\x00\xf1\x0f\xe9\x7d\x66\xce\xc9\xfc\x73\x2c\xc0\xe1\x07\x00\x1f\x6a\x29\x16\xf9\xbe\x05\xa0\xf9\x32\xc0\xfb\xcb\x00\x5d\xce\x00\x5f\xa7\x02\xbc\x15\x04\xf8\xc0\xdc\x9d\x66\xf1\xde\x9e\xaf\xd4\xb2\xfc\x87\xff\xe0\x7f\x30\xfc\x90\xf3\x0c\x7f\xe4\xac\x29\xb5\x2c\xff\xa3\x96\xc1\x05\xc9\x7f\xe1\x3f\xb0\x7e\xb3\x7d\x30\x58\x1c\xdc\x90\xf1\xf3\xdf\x78\x20\x33\x19\xac\x99\xe5\x81\x2c\x3e\x4d\xed\xaf\xfe\x38\xc5\x94\xd7\x11\x66\x00\xf0\xe5\x2e\xc0\x9e\x6d\x00\x9f\xa5\x00\xb2\xf8\x00\x3e\x0e\xe1\x9c\xf0\x00\xde\xfe\x04\x38\x91\x04\xf0\x76\x3d\x40\x73\x1d\xc0\xdb\x73\x00\xb7\xcd\x00\xde\x07\x03\xf4\x37\x00\xbc\x61\x62\xfe\xf8\x04\xb5\x77\x19\x5c\xef\x06\x83\xf3\xb3\x78\xdf\xc5\xe7\x8c\xff\x6c\xff\x97\x7f\xe1\x7f\x1c\x0f\xfa\x1d\x07\xd3\x11\x7f\x8e\x37\xeb\xb7\x3e\x73\x5f\x5f\x9f\xe1\xb1\xb0\xfa\x17\xfa\x8e\x7f\xc6\x83\xc5\xfb\x59\x1e\xc8\x5c\x26\x8e\xbf\x78\x20\x0f\x39\xbb\x02\xc5\xf3\x7e\x18\x70\xd6\x1c\x80\x4f\x89\x00\x9c\x37\xf6\xf7\x47\x38\x7b\x35\xc0\xbb\x42\xce\x1e\x0e\x30\xb0\x07\xa0\x7a\x1b\xc0\xeb\xa7\x34\x0e\x03\xb5\x00\x5d\xe7\x01\xde\xac\x03\xe8\x4f\xfa\xad\x0b\xf3\x88\xe1\x58\xb0\x78\x27\x9b\x07\xbf\xf8\x1f\x4c\xbc\x58\xfe\xc7\x69\x66\xdc\x7f\xe1\xdf\x8c\xaf\xff\x8b\xff\xc0\xfa\xad\xc5\xe0\xb8\x5a\x63\x18\xcb\xdc\xeb\xfe\xc5\x7b\x98\xf9\xe7\xef\xff\xe2\x81\x30\x79\xb3\xc0\x9d\xe2\xfc\x6e\xab\xe8\x3c\xf0\x89\x07\xf8\xf2\x08\x60\x7b\x20\xc0\x7b\x6f\x80\xdd\xa9\x00\x6f\x22\x00\xd2\xae\x00\x0c\x5e\x07\x38\xe4\x0b\xd0\x3f\xc8\x39\xe3\x02\xbc\x74\x00\xb8\x90\x0c\xf0\x6a\x39\xc0\x9d\x8d\x00\x2f\x9e\x02\xbc\x9c\x09\xf0\x9c\xc1\xed\x59\x5d\x1c\x96\x0f\xd5\xc2\x60\xad\x6c\x1f\xa4\x7f\xf5\xff\xc1\x9f\xfe\x97\x9b\xff\x8e\x03\xcb\x7f\x60\xfd\x67\xf9\x1f\x2c\x4e\xf9\xb7\x55\x67\xfe\x6d\x96\xf7\xc0\xc6\xcf\x54\x98\xda\xe9\xe7\x28\xcf\xcb\xde\x87\xf2\xbe\x5c\xfa\x01\xbe\xf6\x03\x78\x55\x00\x7c\x74\x05\xd8\x36\x19\xe0\xed\x73\x80\xa8\x66\x80\x81\xb7\x00\xfb\x56\x03\xbc\x54\x05\x28\x3c\x09\xf0\xcc\x19\xa0\xca\x11\xe0\x69\x1d\x40\x53\x0c\xed\x0b\x75\x3b\x06\xe0\x59\x2e\x40\xff\x26\x80\xc7\x4c\x4e\xde\xee\xf9\x33\x0f\xd8\x75\x80\xd5\x96\xf9\xb7\xf1\x67\xf9\x0f\x65\x4c\x6f\x8b\x23\x33\x7f\xc7\x81\xcd\xff\xbf\xfd\x67\x79\x1f\x6c\x3f\x8c\x5f\x76\xf8\x9f\xf1\x60\xf3\xe3\x0f\x1e\x48\x28\xc0\x5c\x0f\xca\x69\x5a\x9a\x0b\xf0\x69\x1e\xc0\xda\x0d\x00\xef\xba\x39\x67\x31\x80\xfe\xcf\x00\x3b\xcd\x01\x5e\x1c\x06\x48\xf1\x00\x78\xfa\x0e\xe0\x80\x33\x40\xdf\x59\xaa\x0b\xf2\xa8\x95\xc6\xa1\xcf\x1e\xa0\xcb\x01\xe0\xd1\x21\x1a\x07\x96\x0f\x74\x93\xe1\xbf\x5c\x89\xf8\x73\x1d\x64\xfd\xff\x35\xff\xb7\x53\x5b\xa9\x4e\x6d\x29\xc3\xf5\xfb\x5f\xfc\x07\xe5\xf7\x7f\xfa\xfb\xb7\x0e\x06\x6b\x59\x7d\x08\x16\x27\x67\xe3\xa1\xff\x94\x5a\x33\x2b\x80\x9f\xf7\x01\x66\xfb\x00\x7c\x3e\x4b\xfb\x47\x7d\xe0\x02\x58\x2d\x06\xc0\x39\xfb\x72\x8e\x47\x2f\x6e\x02\x84\xbf\x04\x78\xfc\x0c\x20\x29\x95\xf2\x5c\x0a\x7a\x01\x1e\xf6\x02\x70\xde\xe4\x7a\x77\x02\x5c\xe8\x07\xb8\x7f\x16\xa0\xab\x1e\xa0\xa7\x0b\xe0\x55\xfd\xef\x75\xb1\x8d\xd1\x45\xb9\xc0\x70\x13\x58\xfd\x93\x5a\x46\x93\xa9\x8a\x19\xd3\x4a\x46\xc3\xaa\x84\xe1\x34\x14\x33\xf9\xf0\x8b\xff\xb0\xfb\x77\x1c\xd8\xf1\xff\x9b\xff\xc1\xf2\x3e\x84\x99\xdc\x11\x66\xb8\x07\x62\x0c\x8f\x8e\xc5\xc9\xd9\xdf\x43\x3d\x11\x5b\x80\x71\x15\x00\xdf\x9c\x01\xa6\xc5\x00\x7c\x0c\x05\xb0\x57\xa4\xfe\x2f\xaf\x00\x78\x51\x0c\xc0\x79\x9f\x7e\xd2\x0f\x10\x3a\x0a\xe0\xe1\x59\x80\x84\x41\x80\x07\x46\x00\x05\x06\x54\x0b\xe5\xd8\x78\x80\x3b\xdf\x01\xce\x5f\x01\xb8\xfd\x08\xa0\xf3\x18\xc0\xed\x06\xba\x5f\xdc\x62\xf6\xde\xcb\x4c\x8f\x2e\x76\x1f\x60\xc7\xff\x58\xdf\x9f\xf3\x9e\xe5\xfd\x1c\x62\xc6\xbd\x90\xf9\xfd\xfc\x2b\xd4\x66\xdf\xfa\x1d\x07\x76\x5c\x59\xbd\x13\xd6\xef\x7f\xeb\x83\xc2\xea\x5f\xfc\xd2\x05\x69\x67\xf2\xa8\x00\xe0\xc7\x51\x00\x9d\x3b\x9c\xd3\x1a\xc0\x44\x39\x80\xd7\xc7\x01\xac\x0b\x39\x6f\x95\x00\x4b\x67\x00\x3c\x31\x07\x58\xf7\x1d\xa0\x37\x1b\x20\xe8\x21\x40\xf7\x67\x80\xb8\x38\x80\x3b\x29\x9c\x77\x7d\x80\xce\x3d\x00\x15\x8a\x00\xb7\x82\x00\xce\xeb\x01\x74\x04\x53\xfd\xa4\x1b\x09\x00\xfd\x4f\x7e\xf3\xa1\xce\x33\xeb\x20\xcb\xff\x61\xd7\xbd\x5f\xbc\x9f\xb9\x7f\x8d\xbb\x01\xe0\xfd\xa4\xdc\x75\xf4\x73\x26\xa3\xe9\x94\x56\xf0\x3b\x0e\xec\xf8\xb3\xfc\x96\xff\x17\xff\xe3\x6f\x8b\xf1\xd2\x02\x90\x14\x07\xf8\xf4\x1d\x40\x35\x1a\x60\xf0\x38\x80\xd1\x47\x80\x17\x1f\x00\x2c\xcd\x00\x1e\xaf\x02\x58\xb8\x19\xe0\x41\x26\xc0\x9a\x3a\x80\x6e\x25\x80\x2d\x15\x00\xb7\xf5\x00\x62\x9e\x01\xdc\x1c\x09\x90\x7d\x8c\x72\x47\xcb\x7e\x02\xb4\x1b\x01\x34\x56\x03\x5c\x15\x02\xe8\x6c\x04\x68\x99\x0c\xf0\x6a\x1d\xc0\x45\xa6\x47\x53\xfd\xf1\xa1\x58\x57\xa9\x5a\x30\x14\xef\x5d\x1c\x5d\x3d\x1c\x3b\x9c\x1e\xcc\x1c\x76\x0e\xfd\xce\x1a\x82\x9d\x4f\xf3\xd2\x86\x26\xe2\xb8\x5b\x0c\xfd\x82\x7e\x3b\xc3\x62\x8e\x4d\x65\xd6\xcd\xc4\x5e\xa8\x65\xe3\xf0\xff\xf4\xff\xdf\xf8\x1f\x40\xf7\x03\xce\x7f\xdf\x0a\x01\xf8\x46\xd3\x73\x8f\xf4\x3c\x80\x97\x2d\x00\x9a\xf6\x00\x9c\xb3\xec\xc4\xf9\x00\xf7\x15\x87\x34\xdb\x26\x00\xdc\x16\xe4\xd6\x77\x4b\x03\xb8\xf1\x84\xcf\xc9\xff\x33\x40\xdb\x70\x01\xe9\x28\x51\x80\x2b\x36\x82\xc1\x99\x23\x01\x9a\x5f\x08\xad\x2f\xd9\x0a\xd0\x24\x27\x2c\x7d\xb6\x0c\xa0\xe1\x91\xb0\x71\x87\x0d\xc0\xd9\xaf\xc2\x32\xcf\x65\x00\xce\x4c\x14\xc2\xe7\xae\xaa\x16\xae\x42\xff\x43\x45\x90\x0f\x53\xb8\x59\x0c\xeb\x2f\x79\xa9\x42\x58\x7f\xca\xdc\x27\x84\xfd\x95\xd2\x93\x04\x51\x27\x28\xc5\x44\x10\x19\xdd\x89\x6f\x04\xf0\xde\x56\xdc\x53\x7e\xd4\xa5\x8d\x95\xe4\xd5\x64\xe3\xf0\x1f\xfe\xff\x2f\xbf\xff\xb2\x54\x6d\x12\xe0\x9d\x33\xb5\x2f\x7d\x86\x78\x0a\x74\x01\xf4\xbe\xe6\x8b\x50\xde\x0f\x70\xbb\x4f\xf8\xc0\x78\x5b\x80\xeb\x77\x24\x2a\x67\x5b\x00\xb4\xdc\x91\x0e\x5c\x56\x05\xd0\xac\x2b\xfd\xc1\xc7\x6b\xe8\xa5\x06\x57\x19\xc5\xb0\x2d\x5c\xca\xf5\xa5\x32\xf3\x53\x1c\xb8\xaf\xd7\x46\xcb\x68\x1d\xd2\xe7\xf1\x3a\x11\x23\xa3\x52\xe7\xcd\xf3\xbc\xda\x44\x46\xb2\x6d\x24\xcf\x85\x63\x7b\x64\xf4\x1e\x5d\xe6\xd1\xab\xb4\x93\xc9\xfc\xb6\x9d\x7b\x5c\x71\xb3\xec\x07\x42\x78\x9e\xb3\x7a\x2f\xac\xce\x4b\xea\x76\xd9\x7e\x42\x78\x86\x25\x05\xcb\x29\x12\xc2\x23\x12\x9f\x25\x77\x98\x10\x9e\xd4\x98\x9f\xb2\xdf\x08\xe1\x8e\xdc\xbd\x40\x4e\x87\x10\xee\x23\x91\x67\xe5\xa2\x09\xe1\xee\x08\xfb\x26\xe7\x44\x08\xb7\xef\xff\xc1\xff\xff\xca\x83\xf9\x2a\x43\xfb\xa5\xbc\xce\x11\xc0\xb7\x98\xc7\x8f\x44\xb0\xde\xd4\x7d\x4d\xd2\x73\xf8\x63\x80\x8e\x37\xf2\x0d\x32\x47\x01\x5a\x26\x2a\xfa\xea\x68\x0e\x4f\x3e\x7f\x41\xf9\xb1\xc5\x2e\x1e\x87\xd3\x12\xaa\xf3\xe6\x8f\xe5\x17\x3a\xa9\xa1\xda\xb9\xc6\x47\x60\xdb\x31\x4b\xd5\xb2\xad\x31\x42\x09\xa5\x69\xaa\xa5\x71\x7c\x22\x31\x47\xf8\x54\xc7\xe7\x2f\x13\x6d\x3e\xf8\x40\xa5\xa1\xea\x98\xd8\x8e\xc2\x7c\x95\xe5\x17\xf7\x8b\x15\xee\x4f\x50\x59\x7c\xaf\x53\x6c\x76\x81\xab\xca\xb1\x77\x85\xa2\x0a\xd9\x41\xaa\xf1\x84\x88\xa8\xa4\x78\xaa\xbe\x22\x44\xb8\x2c\xbe\x50\xf5\x2c\x21\x42\x0f\x63\x4c\x55\x6d\x09\x11\xfc\xb2\x6b\xaa\xca\x25\x42\x04\x45\x22\x87\xa9\x3c\x26\x44\xa0\x3f\xb4\x45\xf9\x15\x21\x23\x4e\xec\x90\x51\x11\x22\x64\x44\x7c\x90\xa2\x52\x0c\x21\x7c\x9f\xb7\x2c\x51\x9a\x49\x08\x5f\xd0\xff\xd5\x6f\x52\xc4\x83\xef\x8f\x1f\xf4\xc5\x11\xef\x7c\x69\x21\x87\xbf\xd1\xab\xaf\x82\x75\x97\xdb\x5e\xa3\xf1\xbe\x6b\x7b\xae\x26\xde\x43\x6a\xee\xd3\x57\x14\xf5\x01\x38\x1d\xab\x3f\x4e\x2d\x82\xfb\xdb\x71\x75\xbd\x3e\xe3\x7d\x02\x45\x65\x13\xf5\xeb\xad\xcd\x44\xf8\x8a\x47\xea\x1f\x72\xd1\x13\xd7\xde\x9f\xad\x2f\xee\x37\x51\x72\x30\x27\x51\x2f\x71\xa7\xa3\x74\x68\x46\x8a\x6e\x6a\x86\xbd\xec\xc4\x7d\xd3\x74\xae\x97\x3c\x96\xf3\xdb\x7b\x4d\x07\x1a\x86\xc8\xf5\x24\xdd\xd7\xde\x78\xcb\x5b\x2e\x22\x31\x57\x3b\xf6\xd5\x5c\xd9\xd8\x78\x4b\x9d\x55\x84\x48\xd7\x45\x4b\x6a\xd7\x13\x22\xd5\x1b\xa6\xa2\x73\x8e\x10\xa9\xa4\xe0\x01\xed\x4a\x42\x24\xde\x6e\x2b\xd6\x7c\x4a\x88\x58\xed\x96\x45\x5a\x3e\x84\x88\x5d\xd9\x24\xac\x69\x4c\x88\xe8\xb2\x8d\x95\x1a\x19\x84\x08\x87\x6f\x10\xd2\x10\x24\x44\xa8\xcc\xbb\x64\x74\x03\x27\x6e\xff\xee\xff\x10\x46\x07\x40\x18\xfd\x1a\xbc\x29\x87\x75\xcc\xa7\xee\xea\x58\x50\xe9\xd6\xd1\xc3\x3a\xfc\x4d\xff\x71\x58\x2d\x68\x71\x32\xc5\xea\x48\xc3\xba\x49\x47\x38\xb6\xd6\xc2\xe2\x3d\xef\x14\x80\x8a\x8a\xa9\x27\xe5\xb5\x87\xef\x3a\xb4\xd8\xa2\x41\x6f\xa5\xe0\x84\xdc\xee\x49\x17\xa6\x8a\x48\x34\xa6\x7b\x4f\x52\x5f\x18\x2f\x9d\x98\xec\x6b\x6e\xe2\xf1\x40\x8e\xc4\x69\x9a\x3d\x0c\x4e\x56\xbc\x1b\x9d\x6b\x7a\x2a\xd9\x58\x65\x76\x64\x8c\xc9\xfe\x83\x12\xaa\xed\x61\x05\x13\x76\xd6\xb9\xa9\x25\x85\xec\x32\xbe\xd2\xd6\xa3\x56\x18\xfc\xd2\xb8\xe4\xb1\x8b\xea\xe7\x60\xc9\x09\x8e\x3f\x7a\x55\xb8\x37\x3b\x4c\x30\x24\x44\xf1\xd2\xc6\x4f\xc6\x0a\x84\xc8\x7b\xf9\x26\x8c\xf7\x21\x44\xf6\xfa\x7a\xa3\x71\x99\x84\xc8\xac\xf3\x9a\x37\xf6\x24\x21\xd2\xa3\x3c\xd7\x1b\x71\xe2\xd4\xe5\xfe\xde\x70\x0b\x21\x92\xe3\x56\xbf\xd6\xf7\x27\x44\x5c\x67\xe5\x01\xfd\xe1\x84\x88\xb9\xfe\x2b\x0f\xa8\x48\x62\x36\xfa\xbf\x5a\x05\xab\x3d\x8f\x1b\xa8\xdf\x77\x52\xa8\x0e\xcc\x75\x65\x0b\xbc\x9f\x72\xb1\xdd\x0a\xef\xb1\x9d\x91\xb0\x46\x5c\xb3\xfa\xd2\x5c\xda\x07\x61\x8f\x1d\xd6\x2f\x0a\xd7\xcd\xff\x28\xf9\x13\x20\x73\x96\xfd\xb4\xd1\xb7\x46\x0c\x4d\xbc\x69\x7b\xd4\x74\x9f\x78\x4f\x54\x9d\xcd\xda\x39\xfb\xe4\x4b\xc3\x74\xac\xad\xdc\x96\x2b\x9f\x0f\x9a\x37\x2b\x29\xd0\x6b\x94\x6c\xe0\xf7\x99\xbc\x31\x7e\xa3\x6f\xfa\x55\x59\x65\xe5\x7e\x1a\xd3\xe2\x33\x63\xfa\xea\xaa\x4c\xad\x61\x5e\xd7\x2c\x67\x5e\x5a\xae\x65\xb6\x8e\x7f\x5a\x6b\x4f\xb1\x66\x85\xe7\x9c\x69\xef\x3e\xae\xd5\x78\xe7\x1e\x32\x2d\x87\x0c\xaa\x0f\x5d\xf9\x61\xca\x7b\x42\x54\x1e\xaf\xd8\x64\xa1\x45\x88\x52\xa6\x6b\xec\xe4\x2d\x84\x28\x0c\xba\xa4\x4d\xda\x42\x88\x7c\xcd\xb2\x04\x73\x20\x44\xb6\x65\xd9\x38\xd3\xcb\x84\x48\xdf\x77\xf2\x37\xd5\x23\x64\xa4\x83\xd3\x17\x13\x21\x42\xa4\xb2\x7f\xfb\xcf\xc3\xdc\x96\x93\xc6\xfb\xd8\x83\x93\x47\x63\x5d\xee\xb1\xa4\x31\xd6\x99\xee\x98\x4f\xc1\xaa\xf1\xd5\xef\x33\x91\xef\x71\xe1\x8d\x1d\xe6\x41\x5d\x33\xe5\x45\x54\xa9\x3a\x61\xf5\xa8\xf8\xfa\x32\xac\x06\xe5\x1d\x71\x45\x7d\xe3\x7d\x73\xdc\xde\x8c\x48\x05\x88\x33\x77\xdb\xaa\x64\xc7\x93\x16\xa1\xed\xf2\xc9\xc8\x59\x54\x69\xab\xe9\x32\x03\xab\x78\xd9\xd5\xbe\x36\x4e\xc7\x9d\x2e\xa8\x55\x7a\x54\x2d\x12\x58\x2f\xae\x91\xb0\xf2\xc3\xc2\x99\xe1\x67\xb5\x2e\xba\x9a\xce\x0f\x4e\x7b\xa8\xf3\x63\xe9\x44\x07\x9b\x92\x1e\xbd\x2c\xa7\x4c\xbb\xe6\x86\xe7\x7a\x1f\x1c\x73\xed\x66\x75\xcd\xd2\xeb\x58\x78\x77\xde\x8f\xd7\x42\xba\xb3\x16\xd4\xce\xeb\x26\xc7\xb5\xc6\x3b\x84\xdb\x2a\x90\x36\x8d\x59\xf6\x8d\x36\x27\xc8\x93\x51\x19\x76\x2d\xd6\xbe\xe4\xad\xea\x57\xdb\xdc\x59\xeb\x08\x51\xb6\xb0\x1d\x3b\x23\x82\x10\xc5\x2d\x73\x07\xad\x78\x08\x51\x18\x63\xd3\x31\xbd\x84\x10\x79\x29\x1b\xa9\x69\xea\x84\xc8\x3c\xfd\xe5\x3f\xc3\xff\x7a\x63\xa3\x8d\x75\xb7\xc7\xa2\x66\xb8\x0e\x76\x2d\x9e\x81\x7d\x8a\x5b\x2f\xd9\x22\x5f\xe4\xfc\x90\x45\xc8\x0b\xa8\x13\x76\xc6\x7a\x5d\xb9\xdf\x0a\x63\x8e\x3d\xe4\xb1\x06\x71\xed\x9c\x6c\x4f\xac\xc7\xee\x75\xf4\x46\xb4\x21\xaa\xcc\x27\x03\x62\x00\xc2\x34\xfd\x64\x64\x96\x40\x67\xe0\x92\xf5\x75\x5a\xa7\x04\xfd\xd7\xfd\xf4\xb2\x9c\x9c\x26\x75\xcd\x6d\x9f\x87\x9e\xc3\x0a\xe5\x51\x8b\xcd\xd7\x3c\x73\x5f\xa8\xfe\x74\xfe\xeb\xd5\xa9\xdb\xdf\x8c\x71\x9c\xe7\xb9\x2a\x38\xf9\x83\xe6\x2b\x9b\x27\x2b\x57\x14\xaf\xd6\xba\x34\xdb\x65\x85\xcb\x69\xa2\x2d\x32\xf3\xbe\xdb\xba\x0e\x3b\xad\x82\x99\xc2\x6e\xdc\x2f\xee\x6b\x8e\x9a\xa9\xb3\xfc\x0b\x79\x38\x3a\xcf\xea\x83\xb3\x3b\xf9\xa4\xd6\x6d\x75\x7f\x71\x06\x21\xaa\x26\x56\xb0\x68\x2b\x21\xca\x89\xd3\xbf\x2c\x18\x20\x44\x69\x8f\xa5\xbf\x83\x29\x21\x0a\x16\xd3\x27\xdb\x2d\x21\x44\x61\xfc\xb4\xa1\xb6\x17\x08\x91\x7d\x30\x75\xeb\x9c\x59\x84\xc8\xec\x27\x44\x1a\xeb\xf0\x2c\xff\x8b\xe5\x3f\xdd\x6e\xb0\x41\x3f\xdb\x4a\x1c\x91\xef\xd1\xf8\xce\x99\xde\xff\x6f\x58\x89\x3f\x57\xbe\xdc\x13\xf5\xad\x0f\xad\xf0\xc6\x3a\x7f\x6e\xd8\x46\xfc\xf9\x14\xb7\x40\xac\x63\x47\xb7\x6d\x41\x74\x66\xbb\x64\x10\xd6\xbb\x37\x8e\x0a\xfe\x22\xb4\x07\x60\x6d\xd3\xf6\x18\xd5\x47\x7c\xe3\x9c\x3f\x6f\x0b\x98\xb0\x4b\xac\x70\xbe\xf9\x16\x21\x9b\x57\x72\xb5\x73\xf8\x36\x65\xac\xf0\x52\x3a\x38\xa3\x23\x30\x7f\xcb\x7e\x95\x8e\x69\x61\x01\x5b\x12\x46\xaa\x8d\x9b\xfc\xd2\x3f\xaa\xf0\xad\x5a\x8b\xf9\xb2\x8d\x91\x75\xf9\x6a\x0f\xcc\xfa\xfd\xe2\xaf\x39\xaa\xed\x34\x33\xf4\x93\x79\x5a\xa5\x3a\xcb\x2c\xc8\xcf\x9a\x10\xa5\x17\xa6\x37\xbc\x3b\x08\x51\xe8\x31\x93\x5f\x7b\x93\x10\xf9\x5c\x93\xbd\x6b\xbe\x13\x22\x5b\x61\xea\xb5\xb2\x87\x10\xd9\x28\x93\x1b\x6e\x6e\x84\xc8\xd8\x99\xd6\xb9\x0c\x27\x44\x46\x6e\x42\xf5\xd2\x44\x42\xa4\x6e\x4e\x10\x5c\x7c\x88\x10\xc9\xce\xdf\xfc\xb7\xa9\xe8\x57\xe7\x17\xdb\xc7\xd4\xff\xc5\xa8\x7f\x72\x9e\x7f\x39\xe2\x14\xbf\xf8\x3f\x2e\x3e\xa8\x07\x74\xe8\x40\x00\x56\x0f\x73\x42\xa8\xbf\x7b\x83\xb7\xdb\x73\xec\xee\x9e\x50\xac\xd3\xef\x08\xa5\x3c\x98\x0d\xe5\x51\x58\xcf\x5c\x69\x18\x93\x38\x74\x1d\xc0\x52\xbf\x98\x2e\xd9\x57\xc3\xc1\x6e\x48\xf4\x79\xfd\x8f\x42\x62\x56\x96\xbb\x4a\xad\x66\x48\x1d\xb3\x58\xbf\x8b\xdb\x79\x8f\x0c\xbf\x99\xcc\x4e\xbb\x00\x03\xd9\x30\x63\x99\xc8\x85\xb1\x5b\xe5\x8e\x19\xdd\x8b\x88\x29\xc8\x96\xd7\x35\xf0\x0b\x2f\x3f\xe9\x23\x2f\xaf\xf7\x33\xec\xee\x55\x05\xb9\x03\x7a\x6b\xc2\x36\xf5\x5d\x92\xcd\xd7\xab\x0b\x1b\xf1\x83\x4b\x3a\x59\x5f\x6e\xfb\x04\x42\x46\x6e\xd2\xb7\xde\x44\x08\x91\x8a\xd1\x73\xf7\x27\x84\x48\x8e\xd2\x4f\xdb\xb0\x82\x10\xc9\xf5\x7a\x89\x3e\xe6\x84\x48\x28\xeb\x6e\x5c\xb7\x91\x10\xb1\x60\xdd\x32\xf7\xe7\x84\x88\x81\xfe\x8e\xd5\xfc\x84\x88\x5d\x7d\x3a\x60\x89\xfb\xff\xdd\x12\xaa\x9a\xdd\x56\xe8\x82\x28\x6b\xd3\xb0\xd5\xc3\xe8\xf8\x33\xfa\x3f\xcd\x01\x94\xff\x71\x85\xf6\x47\xca\x49\x0d\xc6\x2a\x71\xaa\x71\x18\xd6\xa5\x63\x5a\x77\x22\x2e\x13\xfa\x7a\x37\xd6\x7b\x03\xf4\xf6\x20\x3a\xe7\x5e\x9d\x84\xf3\x65\x91\x6b\x2a\xe2\x21\x73\x4f\xa6\x9d\x15\x4d\x07\x98\x66\xb4\x4f\x5b\xc3\x9a\xcf\xcc\x44\x32\xe5\xc2\xe4\x70\x11\x7d\xa3\xc2\x14\xff\x45\x95\xa2\xcf\x75\x1f\xee\xfd\xe8\x3b\x55\x1c\xb4\x26\xee\x0d\x89\x0a\x13\xbf\xaa\xb1\x26\xb9\x28\x97\x4b\xfc\xa3\xba\x47\x52\x43\xb5\x8d\x78\xcb\x28\x89\xa4\x21\x57\x26\x88\xeb\xaa\x6d\x4a\x5c\xdd\x5b\x2b\x26\xab\xb6\x37\x51\xfb\xab\xad\xc8\xb4\x51\x11\xb1\x0b\x09\x11\x7e\x30\x4a\x7f\x57\x04\x21\x42\x64\x94\x44\xb8\x3c\x21\x42\x2b\x46\x25\xed\x38\x4d\x88\x90\xbb\xba\xe8\xb6\xef\x84\x08\x2d\x55\xcf\xde\xfc\x00\x3f\x4f\xf2\x7f\x4b\x88\x60\xda\x28\x93\x0d\x1d\x84\x08\x78\xde\xad\x72\x88\xa2\xe3\xef\x8a\xbc\x9f\xa6\x06\x3a\xee\xb5\x69\xbe\x88\x6b\x54\x28\x6e\x46\xbe\xcf\xa1\xa7\x3b\xb0\x4e\x9f\x5b\x4a\x75\x12\x52\x57\x46\xd1\x3e\x30\x85\xb4\x6f\x4c\xc4\xe3\x44\xbc\x85\xbf\xa5\x31\x05\xf9\x0e\xde\x8d\x69\x18\x5f\xd7\x79\x14\x8d\x9b\xb7\x3c\x0f\xeb\xe0\xe6\xab\x0e\x18\x0f\x3f\x06\x30\x4e\x69\xff\x13\x45\xd3\xe1\x11\x5a\x83\xfb\xb9\x8d\x6b\xf9\x47\x8c\x1e\x5d\xf0\xd9\x3e\x73\x84\x80\xea\xcc\x82\x0c\xcf\x9b\x23\xb6\x2a\xd9\x16\xcc\x0e\xbf\x33\x22\x49\xc1\x34\xff\x64\xa6\xce\x88\x79\x72\x7b\xf3\xad\x2a\xee\xf0\x6f\x97\x6d\xcc\x2b\xbd\x08\x7c\x27\x65\xe7\xe6\x0d\xef\x39\xc0\x1b\x2c\x6b\x97\xeb\xf1\xf1\x39\xf7\x80\x1c\x4f\xe6\x24\x42\x78\x40\xce\x3f\xc5\x83\x10\x1e\x3b\xb9\x88\x44\x09\x42\x78\xb4\xe5\x25\xf6\x8c\x20\x84\x27\x47\x3e\x33\x7a\x3c\x21\x3c\x9f\xe4\xab\x22\xc7\x12\xc2\xd3\xa6\xc0\x1f\x1a\x48\x08\xcf\x63\xf9\xee\x60\x0d\x42\x78\x82\xaf\x8b\x2c\xc7\x71\x6c\x8a\x59\x87\x7e\x9e\xca\xf2\xc7\xfb\xee\x55\xe5\x41\xc8\x73\x38\x3c\x27\x0c\x71\xb8\x7c\x2e\xaa\x0f\x92\xf6\x28\x0e\xe3\x13\xf7\x86\xf2\x9e\x22\x1b\x69\xf5\x3c\xa8\x35\x1d\xc7\xdf\xf7\x65\x16\xe2\x3e\xab\x1b\xf3\x70\x5f\x71\xb2\xa4\xfa\x09\x33\x06\x8a\x11\x27\x31\xa8\x2c\x45\x5d\x1d\xf5\xf4\x72\x55\x09\x4f\x00\x85\xbc\xb2\xeb\x7a\x5b\x87\xcb\xc9\x6e\x2d\x97\xb0\x91\x1b\x96\x2a\xd3\x5c\x3e\xda\x5d\x15\x9c\x47\xae\x2a\x5f\x1b\xb2\x02\x40\x72\x61\x59\x79\x9a\x34\x80\xf8\x94\x32\x87\xd2\xcb\x00\xa2\xd5\xa5\x6b\xce\x7f\x02\x10\x26\x25\x2b\xee\xba\x00\x08\x4d\x3e\x5a\xfc\x76\x0e\x80\xc0\xd7\x62\xec\x15\x38\x62\xef\x7e\xbc\x77\xc0\xfb\x24\x07\x79\x0d\xbc\x3f\x33\xc2\x39\x96\xe7\xdd\x3e\xd4\x3f\xe0\xbe\x9c\x84\xfd\x7c\xb9\x37\xc7\xa1\xa2\x38\xd7\x96\x18\xc4\xbb\x2e\x7c\xf7\xc6\x7c\xaf\x8f\xa4\x3c\xa0\x2a\x0d\x9a\xef\x47\x6e\x51\x3e\xc4\xfe\x24\xda\x1f\x2a\x3d\x26\x01\xe3\x92\x98\x45\x51\xc6\x68\x45\x8a\x8f\xef\x90\xcc\xc1\x79\x14\xd0\x9e\x8f\xf3\xc1\x73\x47\x11\x76\xa9\x70\xf1\x2f\xc6\x7d\xd3\xee\x7e\x09\xe2\x77\x16\xf3\x28\x6e\xaa\x35\xea\x38\xf2\x06\xc4\x1e\xd6\x49\x0f\xbf\x02\x20\xf4\xbd\x6e\x9f\x5a\x21\xc0\x88\xb2\xba\xca\x29\xe5\x00\xbc\x56\x75\x47\x97\x8d\x01\xe0\x8a\xad\x6b\x0c\x2c\x05\x18\x16\x58\xb7\x37\xfe\x10\xc0\x10\xcd\xda\x87\x07\x51\xb9\xa5\x56\x89\xde\xc0\x3f\xf9\xfd\x26\xae\x60\x27\x5a\x5f\x22\xfe\x71\x9c\x39\x13\x97\x79\x50\x7b\x98\xe1\x3b\x14\x31\xb8\x4d\x01\x83\xef\xe6\x50\xdc\x73\x59\x3a\xea\x94\x42\x78\x2a\xe2\xc1\xa7\x0b\x36\x23\x4a\x7a\x5c\x87\xf6\x87\x3a\xba\x94\xe6\xfb\xfe\xa4\x38\x8c\x4b\x66\xce\x5e\x8c\x43\x52\x51\x1a\xe6\x7b\x8c\x40\x36\x9e\x2b\xc3\x56\x16\x20\x2a\xbb\xf9\x4e\x21\x9e\xa7\xd7\xe7\x1e\xc2\xdb\xc8\xab\x86\x95\x22\x01\x75\xf1\x30\xea\xb7\xf5\xde\x6a\x5c\x2f\x4d\xd6\xd6\x22\x2a\xa5\xd6\x74\x1a\xe3\xc5\xdf\x71\x9e\x6e\x4c\x70\xc1\x79\x24\xea\xcc\x37\x65\x4d\x40\xc5\x85\xa6\xb8\x05\x88\x94\x36\x3d\xf2\x5d\x85\xd6\x7c\x37\xe2\x9f\x4d\x52\x05\xee\x74\xe7\xaa\x41\x9c\xbf\xd1\xb5\x1d\x67\x68\xc3\x8a\xa7\x88\x90\x9d\xeb\xfc\x89\x38\x57\xdd\x08\xea\xef\x71\xc6\xef\x0a\x46\x07\xe3\x28\xc3\x8b\x38\xc4\xe0\xff\x07\x18\xfc\x37\x8f\x87\x63\x4f\xb8\x86\xa1\x8a\x40\xe9\x8a\x18\x86\x1d\x92\x88\xf8\x55\xee\x14\xda\x27\x28\x65\x45\x16\xc6\x65\xcf\xfd\x02\xcc\x83\xc8\x0f\x45\xa8\x33\xc7\xf2\x80\xfc\x83\x4b\x91\x6f\xe8\xd1\x56\x89\xeb\xe1\x72\xf1\xe3\xf8\x74\x0e\x2f\x6b\xf1\x3c\x69\x25\x54\x8f\x7c\x80\x71\x40\xf9\x30\x8a\x5d\x17\xf0\xe7\xb9\xe7\x5d\x79\x4c\xe3\x70\xd5\x40\x0a\xf9\x2c\x57\xeb\xc6\xd1\x93\x9a\xb9\x3d\x2a\x6d\xb4\x56\xac\x43\x26\x6b\xeb\x8e\x48\x5c\x81\x5a\x3b\x73\x70\x05\x6a\x1d\x5e\x85\x3c\x87\x96\x33\x57\x50\xa1\xe1\xca\x41\xda\x69\xe6\xb2\xd5\x47\x3c\xd9\x5d\x30\xa5\xfe\x9d\x7d\x41\x6d\x3d\xa3\x7f\x70\x42\x99\xfc\xc1\x8b\x29\x2d\x65\xf2\x26\x04\xeb\x37\xbd\x34\xef\x8b\xfa\x93\x91\xaf\x93\x57\x9e\x85\xfb\xe2\xbe\x26\xaa\x0b\x13\xbf\x9c\xce\xef\x9d\xe6\xc5\xb8\x3e\x04\xa7\x96\x60\x5c\x02\x7b\xe9\x78\x7b\x8b\x55\x21\xca\xb8\x5a\xac\x4e\x9d\x63\x97\x5a\x50\x9e\x80\x6d\x19\x1e\x4b\x61\x4a\x05\xed\x23\x63\xe0\x40\x6f\xe3\xcb\xd9\x5f\x45\x2f\x87\xad\xbe\xd1\x4a\xe3\x70\x4b\x45\x1c\xef\xf9\xdf\xba\x60\x84\x8c\xfe\x5b\xda\x73\x91\x1f\x73\xab\xd7\xfd\x14\xb5\x61\x18\xa7\x5b\x06\x14\xdf\xbd\x35\xa6\x0c\x19\x19\x37\x2b\x2e\xe0\x4e\xdd\xd1\x7a\x0f\x77\xac\x1b\x64\x10\x7f\xaf\xdd\x99\xfa\x77\x85\xd1\x7d\x68\x66\x3a\x0a\x9c\x63\x74\x53\xea\xed\xa8\x3d\xc9\xfc\x1c\xd5\x8b\x29\x6e\x4b\x0d\xa1\xfe\x67\xe2\xba\x96\x3e\x58\x80\xeb\x62\xc2\xa9\x22\x7c\x8f\xdc\x1d\x42\xf9\x6e\x61\xef\x2b\xf0\x3e\xfc\xd6\xa6\x6a\xe4\xcb\xf8\x19\xd7\x1a\xd2\x3c\xa0\xbc\x10\xd7\x62\x8a\x3a\x2f\xf4\x6d\xc2\xb8\xcd\x6e\xbb\x88\xf1\x9a\xa8\xd8\x82\x79\xa4\xb3\xe8\x1a\xc6\x43\x7a\x09\xed\x4a\x31\x64\xc3\x1d\xa6\x72\xd1\xf3\x45\x14\x23\x77\x9f\xd0\x37\x98\xfb\xb6\xb4\xdf\xc3\x03\x23\x8a\xef\xde\xb7\xdd\x4e\xbf\x7f\x3a\x05\x57\xf0\xfb\xad\x47\x83\xe9\xd7\x69\x86\xf5\x18\xdd\xc2\x93\x6e\x77\x5b\x3f\x76\xfa\xb9\x27\x41\xfd\xbb\xc5\xcc\x8b\x6b\xfb\xa9\x6d\x61\x78\x53\xcd\xa1\xd4\x36\x1c\xa6\xf6\xf4\x4f\x8e\xdd\x9f\x94\x83\x3c\xe0\x0c\xf3\xfd\x38\x3b\x93\x53\x0e\xe3\x7e\x10\x5b\x51\x8a\xeb\x59\xc4\xb9\x63\xc8\xeb\xd9\xee\x58\xb3\x84\xe6\x01\x1d\xef\xf5\x06\xe7\xc2\x38\x76\x8d\x3f\x1d\x6f\x67\x45\x3a\xde\x0e\x03\x2d\x88\xb2\xce\x7c\x77\x0d\xe3\x31\x21\x89\xa2\xf1\x9a\x8a\x9d\xb8\xba\x49\xf5\xd2\xbe\x22\xb0\x98\x66\x33\xc0\xd3\x12\x21\x9c\xef\xcf\x24\xb4\x31\x2f\x9e\xd9\xce\x40\xe6\xde\x73\x1b\x57\x7c\xb2\x67\xd2\x9b\x90\x0f\xf5\xec\x41\x02\x32\x55\x9e\x5b\x1f\xc4\x13\xee\xb3\xf8\x53\x19\xf8\xfb\x39\xed\x78\x22\x7e\xfc\xe8\x11\x8e\xd0\x13\xe5\x6f\xc8\xdc\xea\x65\xd6\xcb\xbf\xe3\xd2\xce\x74\xa4\x68\x29\xa7\xf6\x22\xde\x41\xc9\xda\x56\x88\xcf\xb3\x77\xe7\x51\x64\x99\xc4\x5d\xa6\x28\x7a\xd4\x8a\xe3\x88\x6f\x87\x54\xd4\x61\x1f\xb4\x2d\xc3\xce\xe1\xbe\xba\xe1\xe7\x79\xd4\x8b\xf3\xb4\xb8\x88\x2c\x9c\x15\xba\x57\xbe\x53\xb7\xda\x31\x1e\xb6\xdf\x3b\x30\x9e\x53\x7f\x76\x22\x8e\x3e\x7e\x07\x1d\xf7\xd1\xef\xef\x7f\xe2\x58\xf1\xb2\x3e\x61\xea\x3f\xe5\x85\x70\x4e\xf4\xfc\x38\x23\xdf\xea\x6b\xe0\xfc\x7e\x67\x4b\x3b\xdc\xbe\x8b\x58\x8a\x4c\x81\xb7\xa9\x7e\xf8\x17\xde\xe7\xd2\x15\xec\x5d\x42\x3e\x4e\xb9\xb7\xc6\xc7\xb7\xd2\xdf\x6f\xc1\x15\xe9\x4d\x7f\x2f\x9e\xfc\x06\x9b\x3f\xa0\x32\x47\x7f\x30\xc1\x27\x7e\x3a\x83\xfa\xdb\xcb\xac\x9f\xf7\x18\xfe\xc3\x2d\x66\x7d\xb8\x86\x7c\x42\x96\x07\x95\x50\x56\x85\xfc\x61\x56\x0f\x29\x3c\xe9\x34\x8e\xc6\x76\xfb\x46\xf4\x27\x20\xbc\x19\x9f\x7f\x7d\xd8\x15\x3c\x4f\xba\x6b\xb4\x23\xbb\xc0\x25\x95\x8e\xb7\x63\x02\xf5\x7b\x0e\xdc\xc1\xf5\x72\x0a\xf4\xe0\x3a\x6b\xd4\xde\x8b\x7c\x90\xd1\xe9\x54\x3f\x42\x52\xb0\x7f\x0d\x9d\x17\x6f\xe9\x02\x02\xdf\xbd\xb8\x91\xef\xf1\x63\x8c\x0a\x76\x12\xfa\xb1\xdd\xfc\x1b\xc7\x12\xdb\x85\xb4\x6f\x89\xed\x7a\x46\xff\x62\x27\x32\x0d\x7e\x66\x67\xe1\x89\xfe\x67\x1b\x1d\xb1\x1f\x6d\x17\x90\x5f\xf5\x33\xae\x9b\xe1\x0b\xbc\xc3\x3c\xf9\xc6\x30\x0d\xde\x17\x53\xdb\x2f\x46\xed\x53\xd1\xff\x16\x97\x24\xe1\xe3\x78\x2e\x60\x79\x50\x3b\x9f\x9c\x45\x9e\x57\x08\xde\x94\x07\xd8\x72\xfa\x0a\xae\x67\x7e\xf9\x57\xf1\x3c\xe0\xf9\xe3\x3a\x9e\x87\x56\x59\x52\xfe\xd3\x32\x6f\xaa\x17\x32\x7f\xde\x7d\xdc\x2f\x67\xeb\x52\x1e\xd4\xa4\x37\x8f\xf1\x7d\xc5\xa0\xe5\x39\xce\x97\x51\x0d\x83\xc8\x72\x93\x58\x44\x79\x21\x70\xf6\x5b\x1d\x8d\xc3\x6f\xfe\x83\x02\xa3\x6b\x62\x32\x9d\xda\x79\x0b\xa9\x5d\xc3\xe8\x9e\x6c\xed\xa1\x36\xe9\x1c\xfc\xc1\x7b\xa8\x0d\xa3\xf6\x4a\x06\xb5\xbf\xfa\x04\xad\x85\x7f\xf0\x3f\xd8\xb8\xbc\x63\xd6\x87\x57\x4c\x87\x1a\xaa\x2b\x14\x3f\xf6\x34\x8e\x5b\xf4\x8d\xc6\x39\x34\x0f\xe8\x3c\xdf\xe6\xd8\x82\xb3\x31\xd0\xe0\x06\x66\x97\xcf\x29\xaa\x03\xb5\x56\xb0\x0b\xed\x72\xb8\x87\xe3\xbb\x58\x8c\xfa\x6d\xdf\x48\x55\x36\x66\x5a\x3f\xc7\x6c\x35\x0f\xe8\x47\x7e\xa9\x81\xeb\x5b\xe4\x5b\xab\x85\x7f\xc6\x7d\x56\x52\xe5\x07\xae\x13\xc3\x5e\x92\x7f\xe5\x81\x8c\x75\xa0\xd6\x3a\x88\x5a\x17\x43\x6a\xd9\xfe\x38\x94\xf1\x4b\x48\x06\xc3\x8b\x3a\xc2\x74\x56\x66\xf9\x52\x6c\x3c\xba\x18\xbe\xd5\x7f\xe7\x09\xfd\xa9\x13\x43\xfe\x5b\x1f\x18\xa6\xb6\xff\x1f\x7d\x50\x98\xcf\xff\x2f\x1e\x88\x03\x83\xb5\x2c\x63\xf0\xff\xb5\x76\x00\x5f\x8f\x02\x6c\x0c\x05\xf8\x94\x44\x71\xff\xb7\x04\x20\xc6\x81\x93\xad\x00\x29\xc7\xe8\xbd\xe6\xfd\xa6\x14\xef\x2a\x3b\x05\xf0\x22\x95\xea\x1f\x3c\xf7\x07\xb8\xba\x1b\x80\x33\xab\x38\x79\xff\x22\x0e\xe0\xed\x77\x8a\x07\x91\x7f\xf4\x3d\xb8\xc1\xdc\x57\xfe\xd5\xff\x84\xc1\xda\x7e\xe9\x7f\xfc\xc5\xff\xa8\x61\x6a\xd3\x55\x57\x7f\xe3\x38\x7f\xfb\xcf\xf2\x3f\x58\x9e\x83\xde\xde\x3f\x3f\xb3\x71\xf9\x8f\xfe\x1f\x2c\x0f\x84\xb9\xd7\xbd\xc4\x1c\xe0\xfb\x7d\x80\x35\x72\x00\x1f\xbb\x01\x36\x2c\x07\x78\xa7\x05\xc0\xd9\x07\x07\x72\x00\x38\x27\xd7\x17\xa5\x00\x9c\x13\x2b\xc7\xcf\xbc\xab\x00\x4f\x2d\x00\x4a\xbf\xd3\x3b\xdd\x9c\xf1\x7d\x32\x15\xa0\xf5\x07\xc0\x13\x5d\x80\x9e\x6e\xfa\x73\xef\xea\xfe\x0b\xff\xe1\x1e\xb5\x57\x98\x67\xbf\x10\xc6\xf8\xcf\xf4\x8b\xa8\x67\xc6\xaa\x86\xb1\xd5\x0c\x26\x7b\xec\xf5\xef\x38\xfc\x07\xff\x81\xc1\x6b\x59\x5c\x9f\xc5\xb3\xd9\xcf\x6c\x5c\xd8\xfc\x30\x63\xc6\x84\xe5\x81\xd8\x32\xf8\xd8\xa2\x24\x80\xcf\x43\x01\x56\xf4\x02\x7c\x50\xa0\xfa\x0f\x6f\xda\x00\xb6\xf6\x03\xbc\x6a\x05\xd8\x55\x00\xf0\x24\x15\x20\xf1\x19\xc0\x63\x7e\x80\xdc\xcf\x00\x7d\x8b\x01\x4a\x35\x01\x1e\x99\x02\xd4\x07\x02\x3c\xb4\x07\x68\xb9\x0e\xd0\xf7\x9e\x73\xc2\x00\x78\x74\x04\xe0\x9d\xd9\xef\x3e\x20\x2c\xee\xcd\xe6\xc1\x2f\xfd\x0f\x06\xab\x64\xf1\x6f\xd6\xff\xe3\x8c\x0e\x44\x05\x83\x8b\x96\xc6\xfd\x8e\xc3\xaf\xfe\x17\x0c\xb7\x40\x93\x99\x27\xac\x0e\x02\xdb\x0f\x82\xfd\xcc\x7e\x9f\x8d\xc7\x1f\x3c\x10\x6b\x80\xd9\xa3\xa9\xbe\xc9\x82\x0a\x9a\x07\xae\x36\x00\x83\x77\x00\x3c\xb3\xe9\x3c\xd8\x22\x0e\xf0\x32\x12\x60\xa7\x3f\x40\x9f\x04\x40\x22\xc7\xdf\x5b\x9c\xb3\x3c\xc0\x43\x39\x80\x52\x2f\xea\x33\x67\xe5\x7e\x90\x0c\x70\x75\x1b\xc0\xfd\xad\x00\x3d\xd2\x00\xbd\xfa\xf4\xae\x3c\x8b\x7b\xb3\x7d\x50\x2e\x75\x30\xfe\xdf\xff\xdf\xfe\xb3\xe3\x5f\x1a\x49\xed\x3f\xf9\x0f\xac\xff\x2c\xfe\xcf\xe2\xf8\xac\x0e\xc2\xdf\xf6\x17\x0f\x84\xf9\x79\x43\x26\x5f\xcc\xa6\x52\xbc\x7b\x86\x3f\xed\xdf\x61\xe7\x0d\xf0\x36\x06\x60\xe9\x49\x80\xc1\xc5\x00\x1e\xaa\x00\xcf\xca\x01\x02\xf8\x00\x1e\x5f\x03\x08\x7b\x05\xf0\xd0\x1c\x20\xfe\x14\x40\xcf\x07\x80\xec\x40\x80\x9e\x5e\x80\x12\x4f\xba\x16\x70\xe6\xc5\x3d\x17\x80\xd6\x20\xfa\x99\x13\x9b\xee\xc9\x34\x0e\x9d\xa6\x94\x6b\xc2\xe6\xc1\x05\xa6\x3f\x0e\xab\x7f\xf2\x2b\xff\xe7\x50\x5b\xc9\xf4\x1c\x29\x65\x34\x88\x0e\x33\xbd\x39\x0e\xb6\xfc\x8e\x83\x36\x83\xef\xb3\xf8\x3f\xcb\xf3\x60\xf1\x7c\x69\x56\x07\x83\xc9\x7f\x39\xe6\x7e\xbf\x9a\x1a\xb5\x3a\xab\x7f\xe3\xfd\x5f\x32\x39\x67\x07\xfa\xac\x9c\xf3\xf1\xdb\x5b\x00\x8b\x9a\x00\x5e\x86\x02\xac\x16\x02\x78\x1a\x0a\xb0\x71\x3a\x40\xef\x51\x80\x1d\xa1\x00\xf7\x97\x00\xc4\xf5\x03\xdc\xe5\x07\xc8\x3c\x05\x70\xa7\x94\xea\x61\xdc\x8e\xa1\x71\xe8\x5a\x0e\xd0\x2a\x0a\x70\xeb\x30\x40\x4f\x3e\xe5\x4a\xbd\x6f\xfb\xad\x0b\x74\x31\xe8\xcf\x75\x90\xf5\xbf\x2a\xf9\x2f\xff\x99\x67\x66\xf9\x0f\x07\x73\xa8\x2d\x68\xf8\x1d\x87\x5f\xfe\x33\xfc\x0f\x96\xe7\xf1\xab\x0f\x0a\xc3\x7b\x12\xd3\xf8\xf3\xeb\x6c\x5c\x38\xf1\xf8\x79\x1f\x40\xb7\x16\xe0\xb3\x35\x80\x69\x23\x5d\x07\xac\x62\x00\x5e\xf6\x03\x38\x28\x51\xed\x23\xd7\x79\x74\x4c\xbd\x77\x00\xf4\x64\xd3\xf5\xf2\x4e\x2f\x00\xe7\x9c\x78\xab\x98\xf2\xc5\x3a\x62\x00\x8a\xcd\xa9\xce\x43\x8d\x26\xc0\x8d\x37\x00\x2d\x0e\x00\xd7\x32\x01\xba\xbb\x01\xd9\xbc\x1f\x7b\x7f\xe7\x41\x23\xa3\x3d\xc5\xf6\xbf\x61\xfd\x2f\xeb\x66\xf2\x9e\xd9\x47\x7e\xf1\x1f\x98\x31\xce\x67\xd6\x95\x9c\x21\xbf\xe3\xc0\xfa\xff\x1f\xfc\x0f\x06\x07\x67\xf5\x00\x58\x2b\xc8\xec\x8f\x2c\xef\x81\x13\x8f\xef\xa2\x00\xa3\xfd\x01\xde\x3b\x02\x18\xc5\x03\x0c\x6c\x03\xb0\x28\xe6\xbc\x3d\x00\xcc\x5d\x43\xf9\x2e\xcb\xbc\xa9\x2f\x9e\x11\x80\xa7\xce\xad\xe6\x00\x37\xdb\x00\xa2\x15\x01\x3a\xea\x00\xd2\x1b\x01\xda\xa3\x29\x6f\xee\xea\x4c\x80\x1a\x33\x80\x36\x57\x80\x56\x7d\x80\xd6\x04\x80\xfb\x9c\xff\x77\xa3\x6b\x6e\x33\xa3\xfb\xc1\xf6\x01\x63\xf3\xbf\x8c\xd1\xe8\x61\xf9\x0f\x7f\x8f\x7b\x1e\xa3\x71\x95\xc9\xf4\x72\x4a\x7b\xf4\x3b\x0e\xbf\xf8\x0f\xff\xc2\xff\x60\xf5\x20\x58\xcb\x7e\x9d\x67\x04\xc5\xfd\x39\xef\x8b\x1f\x13\x00\xe4\xe5\x01\x06\x25\x01\xb4\x08\xc0\xb3\x26\x80\x09\xe5\x00\x8f\xc6\x00\x70\xde\x9b\x38\xf3\x7f\x91\x19\xc0\x6d\x27\xca\xa7\xbc\xe9\xc6\x79\x67\xa3\xe3\xbe\x2b\x07\xa0\x4d\x01\x60\xdf\x6e\xea\x27\x27\x0e\x97\xbb\x00\x6a\x95\x00\x2e\xd9\x71\xde\x88\x00\x2e\x7c\x07\xe8\x89\xa3\xbd\x94\x3e\xc6\x31\x5a\x5b\xff\xe0\xbf\xb1\xeb\x1e\xab\x7b\x72\x80\xf1\x37\x8f\x19\xcb\xec\x8d\xd4\x66\x30\xe7\x8e\x54\x66\x6d\xdf\x1b\xfc\x3b\x0e\xac\xff\xff\x27\xfe\xc3\xa1\x3f\xed\x77\x17\x00\x2e\x31\x80\xf7\x67\x00\xc4\xe7\x01\xbc\x2a\x07\x50\x59\x01\xf0\x78\x05\x80\xc1\x74\x80\x9e\x22\x00\x0b\x2d\x80\xae\x38\x00\xbb\x3c\x9a\xd7\x6e\x62\x00\xed\x12\x00\x7e\x56\x00\x9c\xb7\xb4\xf0\x78\x80\x4b\x63\x01\x52\xc6\x02\x34\x9b\x00\x1c\x74\x06\x38\x2f\x05\x70\xd2\x13\xa0\xe1\x16\x3d\x13\x9c\xe3\xcc\xa5\x1f\xf4\x6c\xf5\xbe\x1c\xa0\xe6\x10\x7d\x26\xb6\x17\x1d\x9b\xf7\x2c\xdf\x89\xe5\xfb\x64\x24\xff\x77\xbf\xe3\x99\xde\x57\xb1\xab\x7f\xc7\xe1\xff\x17\xff\x81\xf1\xff\x07\x73\x9b\xe6\xc3\x26\x6a\x07\x54\x00\xb8\x97\x50\x5e\x9f\x94\x01\xc0\xfd\x56\x00\x0d\x65\x80\xae\x64\x00\x13\x51\x80\x1b\x53\x01\x66\x87\x03\x5c\xbd\x0d\xb0\xd4\x1f\xe0\x72\x15\x80\x77\x25\x40\x33\x0f\x40\x48\x17\x40\xa3\x37\xa4\x26\xeb\x03\x9c\x15\x1e\x72\xa6\x70\x32\x40\xfd\x84\xa1\x96\x27\xb2\x01\x6a\x5f\x0e\xad\xbe\x7c\x00\xa0\x66\xd8\xd0\x1d\x3d\xe3\x00\x4e\xc4\x0e\x1d\xf7\xee\x16\x40\x45\xfc\x30\x27\xf4\xdf\x7d\xd8\x71\x1c\xf7\x84\xe1\x58\x77\xcb\x34\x19\x1a\x88\x7e\x4f\x18\xa2\x83\x7e\x2b\x0d\x43\x9d\xcd\x04\x66\x7f\x88\x65\xb4\xae\xa2\x55\x28\x2f\x66\x67\xca\xef\x38\xfc\xff\xe1\x7f\xb0\xfe\xd3\xde\xaf\x00\x03\xae\xd4\x3e\x31\xa7\x96\xb3\xfe\xf1\x87\x02\x74\xcd\x06\x90\x1b\x03\x70\xad\x6a\x58\x98\x5e\x1f\xc0\xe5\x87\xbc\x2e\xd3\xdc\x00\xce\x7f\x10\xe0\x72\xe4\x06\x38\x73\x4d\xe8\x95\x07\x2f\x40\x5d\x8a\xc8\xcb\xa0\x83\x00\x27\x2e\x8a\x2d\x8e\xaf\x00\xa8\x8a\x11\x7b\x56\x30\x12\xa0\xe2\x88\xf8\x82\xaa\x59\x00\x65\x7e\xe2\x93\x9a\x17\x02\x94\x84\x8b\x0f\xbf\x93\x0e\x70\xa4\x41\x2c\xeb\xb5\x07\xc0\x21\x45\xb1\x0e\xce\x33\xe5\x76\x89\xa1\x5e\xce\xbe\x67\x62\xd8\xf1\x34\xc9\x49\x08\xeb\x2b\x71\x0d\x22\x58\x77\x88\x29\x12\xc4\xfa\xe4\xae\x56\xa1\xdd\x1c\x1b\xa9\x2b\x90\xcf\xb1\xa1\x6f\x46\x20\xbf\x3c\xf8\xd4\x08\x91\x5f\x71\xf8\x3f\xf8\xff\xb3\x9c\xf1\x7f\x0b\xb5\xfd\x8c\xca\xee\x93\xef\xf4\x2d\xe9\x9e\x2f\x2f\xbe\x67\x75\xbc\xe6\xc7\xfb\x15\x2d\x1e\xa2\x5c\xe2\x39\x00\xe7\xbf\x49\xed\x1b\x33\x0e\xe0\xf4\x10\x99\x8d\x13\xf7\x0f\xc9\x3b\x31\x56\x8e\xdb\xb6\x60\x78\x58\xc5\x0d\xb9\x63\x6e\xa5\xdc\xb6\x25\xc3\xe5\x47\x06\x88\xf1\x0e\x3d\x74\x50\xde\x3e\x6a\x19\x5f\x5c\x21\xc8\x5b\x67\xaa\xf0\x1f\x2d\x50\x90\x1b\x28\xc9\x1f\x21\x9b\x9b\x2e\x57\x76\xf6\xf2\x08\xf3\xec\x4b\x72\x5b\x3b\x24\xf8\xef\x64\x39\xca\x85\x3e\x4b\xe2\xe7\xcb\xf4\x92\x7b\x44\x08\xef\xee\x64\x49\x79\x03\x42\x78\xbd\x62\x7a\xe5\xad\x08\xe1\x15\xda\x79\x59\xae\x93\x10\x9e\xc9\xe1\x3b\xe4\x2a\x09\xe1\xbe\x1f\xb2\x4e\x6e\x2d\x21\xdc\x4b\xb6\xcf\x94\x7b\x40\x08\xf7\xe1\x2d\x49\x72\xfb\x08\xe1\x56\xda\xb4\x5f\xce\x8f\x10\xae\xae\x8d\xa5\xb2\x03\x84\x70\xf1\xfd\x0f\xff\x29\x0e\xae\xc5\xf8\x6f\x30\x14\xf1\xde\xe7\x8a\x28\xeb\x0d\x0f\xaf\x8b\x61\x35\xac\x33\x49\x06\xab\xa8\xd7\x14\xe5\xf1\x6d\xaf\xb9\x4e\x19\xab\x8c\x67\xe6\xa8\xfd\x1c\xa1\x0c\x70\xfc\xf6\x68\x6d\xc5\x51\xc3\x3e\x97\x7e\x1e\xfd\xda\xf0\x18\xaf\xfd\xa1\x75\x63\x94\xad\xdc\xf8\x5f\x15\x84\x8e\x49\x5c\x2c\x29\xe8\x93\xed\x3c\xc6\xdb\xab\x54\xb8\x24\xad\x53\xe3\x45\x48\xae\x68\xda\xde\x73\x1a\x8e\xc9\x3f\xc4\x25\x13\x0f\x8c\xce\x3d\xa8\x2a\xc1\x1d\x6f\xaa\xfe\xaa\x76\x9b\x84\xf7\x9e\x91\xea\x01\xad\x6f\x25\x66\xc6\xc4\xa8\xcf\x7b\x38\x55\x3c\x6e\xf7\x41\xf5\x9b\x5f\x52\xc4\xe4\x23\x52\x46\xdf\x23\x44\x74\xe5\xf6\x81\xd1\x63\x08\x11\xbe\xba\xe5\xb9\xba\x23\x21\x42\x71\x81\x9a\xa3\xb4\x08\x11\x54\xf0\xd7\x52\x73\x20\x44\x60\xdc\x86\x39\xaa\x2b\x09\x19\x31\x7a\x7d\x93\x4a\x1c\x21\xfc\x53\xd6\xad\x54\x11\x26\x84\x2f\x6a\xdd\x04\xe5\xa9\x84\xf0\xbe\xfe\x0f\xbf\x59\x2b\x08\x88\x63\xbf\x6f\xe4\xe9\xa3\xfe\x4b\x20\x2f\xa2\xfb\xba\x22\xd6\xf7\x3b\xbe\xaa\xe3\xd7\x5b\xe5\xb4\xf1\xbe\x73\x43\xaf\x21\xce\x98\x5a\x73\xbc\x1e\x0e\x15\xd5\xe3\x8f\x0e\xe9\x00\x38\x1c\x67\x16\x2e\x1d\x02\x90\xf7\x71\xc2\x43\x4d\x09\xbe\xc5\xe9\xd2\xc6\x55\xe6\xe2\xc2\x7e\xc9\x43\x8c\x83\xec\x12\xc4\xb2\xf7\x2c\x1b\xdf\xbf\xca\x4d\x32\x60\xd7\xd7\xf1\xba\x9b\x0f\x48\xf3\x87\x7b\x8d\x53\x8f\xad\x92\x1d\xbe\xe3\xec\x58\xbe\xbc\x25\x72\x4b\x82\x4a\x8c\xf4\x8f\xbd\x90\x37\xdc\x1a\x61\xb8\xaa\xb9\x59\xde\x61\x73\xa3\xa1\xe4\xdd\x8f\x72\x5d\x9b\x52\x0d\x5d\xdf\x0e\x97\x8d\xf5\x6f\x35\x6c\x23\x44\x7a\x87\xcf\x50\x83\x93\x84\x48\xe9\xac\x9b\x6d\xc0\x4f\x88\x44\xf3\xda\x26\xdd\x1a\x42\xc4\x3c\xd7\xbc\xd4\x6d\x27\x44\x4c\x69\x95\xb1\xce\x71\x42\x44\x2e\xaf\xac\xd2\x76\x22\x44\xb8\xc6\xad\x49\x8b\x8b\x10\xa1\xad\x2e\x9b\x35\x33\x08\x11\x3c\xf2\x5f\x78\x30\x78\x5b\xf2\x9d\xad\x10\xbd\xff\xbe\x57\x01\x57\xc2\x7b\x5e\x1a\x78\xbf\xf5\x46\x93\x21\xd6\xa7\x2f\xb5\x99\x62\x1e\x9c\x21\x93\xd0\xff\x13\x8f\xa6\x61\xd5\xb0\xd4\x60\x3a\x56\x0f\x0a\x45\x67\x62\x7d\x22\xeb\x94\x75\x82\x50\x13\xc0\x5e\xae\xd9\x45\x2a\x55\x3c\x13\x76\xdf\x9e\x99\x37\x2e\x4d\x58\x2e\xcc\xcd\x4a\x71\x66\x84\x94\xe7\xb6\x2f\xd3\x4d\x97\x71\xc9\xdc\x0a\x54\xb7\x14\xf1\xdd\x2f\x7f\x77\x83\xd4\xd4\x93\x91\x4e\x4a\x0b\xbc\x1e\x4e\x59\x95\xbe\x52\x45\xd2\x23\xdf\x42\xb2\x64\x81\xaa\xb2\xbb\xe6\xe4\xa1\xe7\x82\x55\x43\x56\x9b\x4c\xf2\xb9\x79\x4f\x55\x7f\xd5\xb2\x49\xb3\x5f\x1a\xaa\xf0\xad\x3c\x37\xe9\x21\x21\x8a\x5d\xae\x16\xe6\x22\x84\xc8\x55\x39\x1b\x9a\x1d\x25\x44\xe6\xd1\xe2\x1a\xd3\x40\x42\x46\x3e\x71\xaa\x9f\x10\xc7\x89\x8f\xe3\x11\xe3\x5b\x84\x48\xca\x2d\xf8\x34\x7e\x14\x21\xe2\xc1\x0b\x7e\x8e\xb3\x20\x44\xac\x6f\xfe\x5e\xc3\x6c\x42\x44\xba\x7e\xfb\xcf\x85\xbc\x96\xb7\x5b\xc4\x76\xd0\xf1\x47\x1a\x14\xdc\x8e\xd1\x63\xfa\xdf\x98\x25\xd2\xbc\x9f\x86\x55\xb2\xfa\xb6\x59\x38\x0f\xaa\xaa\x6c\x51\x37\xe8\x68\xb9\x03\x56\xd7\x0a\x74\xe6\x63\xbd\x32\xed\xbe\x23\xe2\x22\x71\x6e\x8b\x3d\x87\x2f\x03\xd8\xf9\x6a\x49\xb9\xec\xb2\x61\x96\x41\x27\x9d\x9c\x74\x0d\x04\x12\x37\xfa\x2d\xfc\x3e\xc5\x47\xe2\xa0\xa7\xd0\x7c\xc5\xf9\xd5\xf2\x27\x57\x9e\xb4\x6f\x5e\x1b\xa5\x3c\xda\x45\xd3\xce\x72\xfb\x25\x35\x99\xc5\x61\xb6\x45\x49\xbb\xd4\x0d\x17\x5e\x98\xbb\xb4\xa8\x6c\xf4\x21\x87\x81\x39\x42\x75\xa3\x34\x26\xdb\x7d\xb0\x99\xd2\x56\xa5\xa1\x65\x27\x6e\x9d\xf4\x18\xd4\x3f\xcc\x7b\x69\x63\xfe\xbd\x55\xed\x9e\xad\xe4\x6c\x6e\x42\x94\x77\xdb\xec\x98\x39\x9c\x10\x85\x76\x6b\x93\xe9\xee\x84\xc8\x59\xcf\xde\x6e\xb9\x99\x10\xd9\x05\xb3\xbe\x4d\x0d\x25\x44\xba\x76\x66\xaf\xc5\x01\x42\x46\x8a\xcf\x48\x9b\xbc\x94\x10\xc9\x1b\x56\xda\x93\x94\x08\x91\xc8\x66\x79\x50\xef\xcb\x47\x22\x2e\xf5\xf4\xdd\x68\xc4\x5f\xee\x7c\x37\x7e\x4c\xe7\x3d\xe5\xc1\x5c\x30\x9f\x4d\xef\x3f\xcb\xdb\x62\x5d\xff\x18\xa1\xdd\xe7\x8b\x03\x96\x60\xf5\x27\x6f\xb5\x0b\xd6\x5d\x53\x13\x56\x20\xfa\x12\xeb\xba\x1a\xf3\x25\x74\xa8\x3b\xaa\xb1\x6f\xee\xf1\x78\x26\x7a\x17\x60\xfd\xdd\xb5\x92\xea\x0b\xf9\x0c\x57\x0d\xae\x19\x66\x9a\x22\xba\x77\xa9\xc1\xca\x90\xb9\xaa\x32\x79\xf3\x77\xbb\x79\xba\x3d\x52\x2c\xb4\x5d\xb1\xdc\x7d\xb3\xa4\xf2\xad\xd9\x1f\x5d\x5d\xf6\x54\xa9\x4e\x9f\x51\xe0\x22\x5b\xb0\x53\x4d\xd1\xb2\xd3\xd9\xe5\x84\x8a\xda\xdc\x69\x63\x96\x05\x5f\xa9\x56\xe3\x9f\x3a\x71\x69\xe7\x83\x0f\xaa\xdc\x53\x95\x96\x5e\xfb\x3c\x4d\xe9\xc5\x94\xc8\xc5\x23\x09\x51\x30\xb5\xa8\x5c\x98\x4d\x88\xdc\x52\x0b\x9e\xf9\x43\x08\x91\xf9\x3a\x59\xc3\x6e\x13\x21\xd2\x11\x93\xac\xe7\xee\x25\x64\x24\xd7\xa4\x75\xd6\x65\x84\x48\x59\x9a\x1f\x9e\xd5\x4e\x88\xa4\xa9\xd9\xe6\x99\xce\x84\x88\xaf\xff\x68\x20\x83\x55\xde\x67\xe6\xb4\x1f\xd6\x1d\x73\x33\x9c\x0f\xd7\x7c\xad\x10\xaf\x68\xda\x62\x8b\x68\x5a\x5d\x89\x23\xae\x0f\x95\x16\xcb\xa8\xee\xb7\x22\x55\x11\xce\x5f\x41\x6f\x9b\xa6\x76\xaf\xc3\xfa\xe5\x1e\xb1\xf5\x58\xe7\x0c\x53\xd9\x80\x7d\x51\xfc\xeb\xfc\xf1\x96\x98\x87\xc0\x26\x3b\xee\x16\x80\xe5\x2f\x36\x89\x28\xc8\x0e\x7f\xe7\x18\x11\xa0\x68\xf8\x53\xb0\x7e\xce\x29\xbf\xee\x19\xdb\x24\x4b\xac\xee\x6f\x18\x58\x76\x5b\xfa\xe9\x94\x9e\x0d\x62\x1b\x43\x64\x2b\xcd\xe3\x7d\x27\x45\x1f\x93\xbb\x67\x3a\x76\xfd\xb7\xdc\x91\xf2\x9e\xc6\xb9\xeb\xf9\x8f\x3d\x91\xdf\x36\x5e\xca\x5b\xeb\xe2\x3d\xf9\xd9\xe3\x44\xbd\x72\xba\x3b\xe4\xec\xc7\xf6\x79\x79\xbd\x8f\x93\x89\x1b\x7b\xd9\x73\x16\x21\x23\xd7\x8e\x3d\xb9\x7a\x25\x21\x52\xda\x46\xc5\x2b\x16\x10\x22\x91\x6f\xd4\xe7\x1a\x46\x88\x84\xa6\xd1\xe4\x65\xe5\x84\x88\x8b\x18\x06\x2d\xfe\x4a\x88\xe8\x7b\xc3\xda\x45\x07\x09\x11\xcd\x33\x68\x58\x50\x4b\x88\xc8\xea\xa7\x75\x7a\x06\xf0\x0f\xfe\x53\xbb\x37\xed\x8f\x73\x7e\x31\x1d\xef\xba\x92\xa5\x88\x5f\xb3\xfc\x9f\xe2\x89\x94\x17\x90\x4b\xbc\x11\xb7\x49\xdd\xed\x8b\xfc\xa9\x38\x99\x00\xc4\x73\xc2\xde\x6c\x39\xce\xb1\x9b\x24\x82\xb0\x6e\xeb\x39\x74\x07\xe6\xc7\x52\xa5\x70\xac\xf7\xcf\xcf\x8e\xf4\x91\x5c\x0f\x30\x6b\x52\xb8\x83\x66\x37\x5f\xf1\xe4\xf1\xa1\x31\x16\xa9\x22\x9f\x4d\x56\x85\x8e\x5d\xb4\x57\xec\xc8\xd8\x8c\x90\xe8\xf5\xf5\xe2\xcf\xf4\xcf\xee\x78\x19\x79\x46\xe2\xa6\xce\xc5\x1d\x32\x99\xd9\x92\x56\x5a\xae\xc1\x2a\xe5\x0f\x24\x65\xc7\xdc\xda\x3e\xb6\xe9\x9a\xc4\x61\x8d\x77\x41\x15\x77\x79\xc5\xaf\x6a\x9c\x09\x9a\xf5\xe6\x96\xd8\xb4\x31\xcb\xb7\xf4\x13\x22\xd2\xa9\x91\xe9\x5f\x40\x88\xb0\xd7\x18\x07\x9f\xcb\x84\x08\x5b\x8e\xd9\xe7\x55\x42\x88\xd0\xcf\xd1\xdd\x9e\x5b\x08\x11\xf4\x18\x23\xbe\x66\x37\x21\x82\xd5\x1a\x37\x57\x2e\x21\x44\x50\x62\xf4\x83\xe5\x95\x84\x08\x48\x74\x07\x4e\x71\xa2\xf9\x6f\x83\x78\xde\x85\xbb\x8e\x88\x16\xd5\x79\xba\xe2\x38\x56\x84\xaf\xc1\x2a\x68\xf1\x95\xf5\xe8\x57\xde\xd5\x8d\xb8\x0e\xa6\x59\x52\x7c\x3c\xee\xec\x36\x5c\x0f\x23\x96\xef\xc0\xaf\x6f\xf5\x0f\xc7\xfd\x63\x7d\x5e\x24\xa2\x6f\x6e\x7c\xbb\x71\xbe\xd8\xd5\xc4\x61\xbc\xa7\x45\x24\x2e\xe4\x93\x05\x30\xdd\x9f\x70\x46\x85\x8b\x6b\x93\x81\x49\x7c\xb2\xc9\xd6\x11\x86\xda\x7a\xf1\x2e\xf6\xaf\x05\x56\x8f\xfe\x1c\xf7\xda\xe3\xa6\x20\xbf\x5a\x65\xdc\xa2\xd0\x2c\x41\x4f\x15\xa3\x3d\x75\xfb\x5e\x0a\xae\x50\x1a\xb7\x47\xae\xa4\x48\xa0\x4f\x51\x33\x96\xab\xe1\x89\x80\x97\xc2\xdc\x98\x9d\x5d\xba\x23\x9c\xe5\x49\x8c\xca\x40\x2b\xdf\x17\x85\x94\xa8\x0b\x84\xf0\xbe\x53\x98\x14\xbe\x94\x10\x5e\x53\x85\xc5\x3b\x84\x09\xe1\xe5\x52\x2c\xdd\x36\x8a\x10\xde\x7e\xc5\xc3\x9b\xa6\x13\xc2\x9b\xa6\x18\xe4\xcf\x4d\x08\xaf\xae\x42\xac\xef\x7d\x42\x78\x34\x14\xae\xaf\xdf\x4d\x08\xcf\xb8\x9b\x43\xe6\x21\x7a\x72\x49\x71\x09\x9e\x08\x4f\x6d\x5a\x89\xd5\xe1\x4a\x7f\x4f\x44\x53\x8f\x0c\xf5\xc3\xfa\x7a\x41\x2f\xe5\x83\xa4\xe9\x06\xe1\xfc\x89\x6f\x0a\xc3\xf1\xdf\xa5\x43\xfb\xc6\x04\xf9\x52\x7e\x84\x9f\x44\x2c\xde\xfb\x5d\xe3\x9f\x80\xe8\x8a\x53\x57\x32\xe6\xc3\x2c\xb3\x34\xbc\xad\x6e\xd4\x9f\x85\x55\x63\xed\xa7\xd9\x35\xd2\x35\x00\xaa\xd9\x59\x97\x0c\x62\xb8\x3a\x15\xc3\xb2\x5a\x6c\xcc\xb8\x7e\xc8\x85\x66\x15\xac\x4a\xe6\x4a\x96\x49\xca\x5a\xb2\xdd\x6e\x78\xa2\xf4\x93\x2c\xfd\x14\xf1\xa1\x67\xa4\x13\xb2\x84\x8f\xa8\x03\x8c\x14\xce\x1c\x7b\x36\x04\x40\x72\x6f\xc6\x82\x9b\xd7\x01\x24\x66\xa5\x9f\x7b\xf9\x16\x40\xec\xca\x3e\xd4\x75\x10\x59\x90\x88\x67\x01\x81\xb6\xd8\x3b\x68\x83\xa3\xf0\x1e\xb3\x40\x53\x24\xea\x32\x0a\xde\x0b\x45\x1d\x84\x11\xf9\xc1\x78\xbf\x57\x60\xf9\x56\x3c\x4f\xb2\xfe\x9f\xde\xb5\x1a\xeb\xeb\x55\x8e\xde\xc8\xeb\x3a\xba\x8b\xea\x00\x15\x8c\x0b\x42\x7e\x44\xfa\x99\x10\x5c\x17\x12\x06\x22\x11\xaf\x8e\xba\x1e\x8d\xf9\x10\x02\x74\x9c\xfd\x2b\x68\xd7\x7d\xcf\x62\xca\x0b\x71\xb9\x99\xb6\x9f\x63\xed\x37\x51\xbd\x90\xa9\x67\xf3\x71\x1e\x69\x8b\x14\x22\xaa\x20\x33\xf3\xd0\x3d\xfe\x0f\x00\x92\xc6\xc5\x36\x1a\x9f\x00\x44\xe7\x15\xbb\x58\xee\x01\x10\x7c\x57\x3c\xce\xb9\x0f\x60\x84\xf6\xa1\xc7\x81\x71\x00\xbc\xad\x87\xf2\xe2\xd6\x03\x70\x67\x1d\xbc\x79\xa0\x0c\x60\xf8\x60\xd1\xd3\x5a\x67\x80\x61\x0b\x8b\x46\xb7\xbb\x01\x0c\x79\x52\x28\x82\x67\xfa\xa6\x03\xa1\x3f\x90\xa1\x96\xc3\xe0\xd9\xe9\x09\xd4\xa6\x50\xfc\x66\x49\x22\xa3\x1c\x1e\xcb\xe0\xff\x51\x0c\xbe\x17\xd9\xc8\xb1\x67\xcb\xd7\xe2\xfe\x57\xcd\xe7\x87\x78\xc3\x51\x23\xca\xfb\x3a\x60\xb9\x03\xf9\x81\xd9\x2a\x3b\x11\xdf\x4a\x51\xa4\xa8\x5a\x4c\x2b\xe5\x45\x84\x4d\x48\x2a\xc4\x7d\xe0\xdc\x3e\x44\xe3\xd7\x27\xa7\x23\xca\xb2\x4a\x34\x1b\xe3\xe5\xe4\x40\x79\x02\xd6\x53\x0a\xf1\xeb\xa6\xd7\x0f\xa3\x7a\x85\x5a\x79\x29\x7e\x9d\x2f\xe2\x18\xe2\x22\x43\xd5\xaa\xcc\x65\x91\xb7\x50\x35\xc1\xc4\x9d\xee\x44\x0b\x31\x62\xc7\x7c\x7c\x90\x61\x52\xd9\x1f\x85\x33\xb4\x72\x08\x45\xe0\xcb\x07\xaa\x91\x89\x56\xf6\xea\x0a\x76\x78\x2b\x4d\x79\x80\x08\x63\x69\xe9\x27\xc4\xbb\x8b\xcf\x50\xff\x0e\x64\x50\x9b\xc7\xe0\xbb\x59\x0c\x62\x92\xc6\xf4\x39\xd8\x3b\x8c\xda\x04\xd4\x0f\x39\x91\xe4\x8f\xeb\x63\x69\x37\xd5\x05\x39\xa8\x1e\x8e\x38\x55\x4e\x44\x34\xa2\x44\x7b\x2b\xe2\xf0\x5c\x10\xbb\x3e\x09\xcf\x05\x11\xe7\xf6\xe1\x53\x6f\x3b\x9b\x81\x79\xe3\xf7\x35\x07\x71\xe0\xb5\xf2\xf9\x78\x02\x77\x6d\xa5\x7d\x44\xec\xb7\x53\xbd\x10\x2b\xcf\x52\x9c\x77\x46\xb6\xb4\x6f\x90\x42\xdb\x71\x8c\x03\x57\x46\x1d\xde\x17\x07\xa8\x0f\x94\x46\xfc\xea\xd4\xfe\xf1\x88\xcf\x9e\xca\xa5\x8c\xb5\x53\x4d\xeb\x10\xf7\x3d\xe5\x18\xfe\x01\x57\xac\xfd\x99\xc8\xbc\xa8\xed\xa7\x9d\x59\x6a\xb9\x9a\xb1\x73\x42\x4d\x4c\x37\x9e\xf0\x4f\xec\x19\xc4\x27\xaa\x36\xa6\xfe\x95\xad\x23\x7f\xf2\x62\x18\x5b\x70\x8b\xda\x1c\x86\x5b\x9e\x81\x71\x29\xcb\x61\xfc\xaf\xdf\x89\xe7\x86\x9c\x93\xb1\x38\xce\xa9\xbd\x89\x18\xed\x3d\x7e\x29\x88\x22\x45\xc6\x50\xfd\xa3\xed\x59\x39\xa8\x0f\x12\xb8\xb5\x00\xe7\x8d\x17\x14\x21\xda\xb8\xc2\x80\xf2\x23\x9c\x1c\x4a\x70\x1f\x9e\x83\x1d\xa1\x01\x26\x4f\xae\xc6\xd1\xd5\x6d\xac\xc5\x78\xca\xd6\xd5\x23\xca\x04\x7d\x8d\xe2\x34\x0e\x4d\xf1\x52\x88\x78\x36\x35\x8c\xc5\x95\xfa\xfc\x83\xb9\x88\xb4\x36\x19\xb9\xe3\x49\xac\x49\x94\x02\xc2\xe7\x93\xf7\x61\x66\x35\x36\x1d\xc5\x0e\x15\x8d\x49\x0d\xf8\xce\xdb\x60\x70\x8b\xb1\xaf\x10\x81\x3c\x2b\x40\x6b\x03\xb5\xcc\xb8\x57\x8f\x25\x7f\xf0\x62\x4a\x98\x8e\x03\xbf\x78\x31\xcb\x09\xd6\x2d\xe9\xfa\x96\xe7\xb4\x07\x51\xe2\xb4\x89\xc9\x38\xee\x09\x24\x1d\xd9\x47\xd1\x33\x72\x90\x37\x1c\xd6\xbb\x1f\xf3\x64\xf3\x1d\x3a\xde\x3e\x49\xc5\x88\x2e\x7a\x28\xd2\x3c\x77\x6e\xa3\xbc\x90\x05\xfc\x55\x78\x0e\x9f\x39\xe3\x24\xee\x23\x26\x77\x28\x6e\xaa\xa9\x7b\x16\x79\x36\x92\xfb\x9b\xbe\x50\xff\xe9\x7d\x72\x80\xd6\x1d\x12\xf4\x4d\x65\x87\x21\x9e\xbc\x5a\x1c\xad\x11\xbf\x6d\x79\xb4\x12\x23\x7c\x85\x6c\xc5\x7f\xb1\x35\x84\x2a\xf6\xb4\x94\x1f\x42\x5e\x44\xcb\xb0\x7a\x71\x6a\xaf\x23\x32\x79\xf9\xe3\x33\xfc\xf9\x4b\x81\xdf\x70\xa6\x9e\x67\xee\xb1\x9f\x39\x46\xed\x29\x46\xff\xe0\x04\xd3\x71\xa2\x92\xd1\xc9\x28\xdd\xce\xb1\xf9\x3f\x12\xf0\xd6\x77\x7a\x23\xe5\x7f\x25\x49\x67\xe0\xf9\x39\xd6\x31\x9f\x9e\x07\x7a\x0f\xe0\x0d\x93\x20\xef\xc3\x88\x36\xfa\x1d\x3c\x7a\x96\xe6\x41\x25\x8e\xef\x8a\x5e\x3a\xde\x8b\xab\x4e\x20\x6e\x39\xef\xd3\x29\x3c\x4f\x4d\x4f\x39\x87\x78\xe6\x78\x8b\x46\x9c\xb5\xa3\x27\x51\x5e\x88\xf8\xbc\xab\x1b\xa9\xff\xb4\xbf\x02\xc0\xcd\x73\x62\x88\xe3\xde\xac\xa4\x27\xf8\x8e\x47\x33\x51\x89\xe2\x56\x10\x55\x34\xeb\x78\xb4\x19\x77\x9e\x8e\xf2\x38\x5c\x79\x6f\x96\x1c\xa0\x9f\x0b\x6b\x50\xb9\xe5\xc6\xc1\x56\xe4\xc9\xdc\x20\x0f\x31\x4e\xed\xcd\x6f\xf0\xc9\xae\xf6\x52\xdc\xff\x32\xe3\x6f\x13\x83\xf3\x9e\x7b\x4a\x6d\xbd\x21\x13\x17\xdc\x3f\xb2\xdb\xd2\x91\x85\xb1\xf7\x64\x36\x3e\x5f\x6c\x38\xed\x03\xf7\x0f\x1e\x10\xfa\xb9\x69\x39\x1d\xef\xf5\x3d\xc7\x68\x3f\x20\xdd\x13\xe8\xaf\x4b\xfc\x29\xdc\x47\x1d\x0d\xce\xae\xa4\xf3\xa1\x11\xf3\x66\x4a\xc5\x45\xcc\x72\x23\x86\x17\xa2\x96\xdc\x8e\xbf\x27\xaa\xda\x51\x42\xfd\xbf\x3d\x48\xed\xbd\x66\x51\xec\x68\xd7\xed\x4f\x15\x0e\xbb\xdb\xa6\xd7\x50\x4b\x19\xeb\x3d\x73\x37\xda\x52\x1b\x43\x6f\xba\x64\xe5\x21\xaf\xac\x5b\x91\x2a\xd5\xdc\x93\x68\xae\xa3\x9f\x29\xee\x7f\xb7\xe9\x2d\x32\xd9\x6e\x33\x3c\x87\x8e\x72\x82\x9f\xdb\x99\x4e\x14\x57\x18\x1d\x90\x0b\xcc\xbc\x69\x40\x1e\x44\xea\x57\xaa\x87\x14\xd7\x4b\x79\x50\xd1\xea\x47\x70\x75\x0e\x1d\x4a\x75\x71\xb6\x0a\x1e\xc3\xf5\xc0\xff\x4c\x2d\xf2\xea\xbc\xea\x4e\xa1\x5a\xd1\x2a\x87\x33\xb4\x4f\x98\xe2\x79\x2c\x48\xcc\x2f\x6a\xfe\xc9\xb1\xb3\x36\x5c\xc6\x71\x36\x6f\x6d\xc3\xf3\x82\x81\x77\x07\xfe\x7d\x95\x4a\xda\x4f\x45\x38\xf7\x2e\x83\xf7\xd3\x3e\x32\x00\x4f\x6a\x05\x31\xf2\x4f\xf8\x34\x90\xf7\xf3\xf8\xc1\x54\x3c\xa1\x3e\x69\x76\xc2\x4c\x7c\xba\xdf\x17\x9f\xec\x89\xf9\x4e\xfc\x17\x9f\x16\x52\x45\x9b\xc7\x91\xe5\x58\x0b\x7b\xd2\xdf\x84\x23\xf9\x98\xa7\x13\xbf\xff\xe8\xdd\x33\xe4\x4f\x3c\xec\xa5\x1d\x78\x7a\x18\xde\xe0\xed\x35\xd4\xde\x64\xd6\x87\x3f\xe3\xf2\x37\x0f\x2a\x72\xe4\x31\xe4\x33\x6c\x57\x3c\x81\xf3\x25\x50\xa5\x0e\xf9\x8f\x3e\xd3\xce\xe0\x7d\x8c\xb5\x2e\x0d\xc8\x17\x72\x3b\xdb\x8c\xe3\xbd\xc4\xae\x05\xf7\xd9\x79\xf9\x57\x71\x5d\x9d\x31\x70\x1d\x9f\xc6\xb4\x91\xaa\x1a\xe9\x9e\xbe\x8d\x71\x52\xae\xa0\xfa\x40\x02\x37\x1e\x1a\x50\xff\x9f\xdd\xa3\x76\xa0\x7f\x04\xfe\xa5\xd7\xaf\x47\xe1\x09\xfe\xcd\x81\x49\xc8\x03\x7a\xa3\xb0\x10\x9f\xe8\x4d\xa0\x17\x9e\x70\x07\xe7\x53\x66\xdf\x1b\xbb\x34\x7c\x23\x1c\x94\x3c\x82\x27\xb4\xd7\xcf\xcf\xa0\xed\xaf\x6f\x47\x3e\xc0\xe0\xd8\xe7\xf8\x77\xfa\x25\x3e\xe3\x93\xbd\x98\x4b\x70\x66\xf6\x31\xfd\x93\x7a\x2e\x33\x71\xf1\xfa\x67\x5c\x62\x2b\xca\x91\x9f\xc1\xea\x21\x85\x4c\xab\xc5\xe7\xdf\xe2\x7d\x1a\xf9\x0f\x7e\xef\x1a\x71\x5c\xbd\x7d\x2f\x22\x5f\x64\x8d\x39\xed\x17\xe5\xd2\xde\x86\xff\xca\xa2\xfc\x1b\x78\x9e\x66\xfb\x64\x4d\x6b\xec\xc2\x7c\x98\x50\x77\x0f\xfb\x93\x69\x77\x3d\xc0\xfc\x52\x78\xf8\x04\xeb\x59\x82\x11\x54\xc5\x05\x80\xb2\xdb\x00\xbe\xac\xe3\xc2\xfd\xee\xeb\x68\x25\x8c\xc7\x17\x33\x13\xf4\xf3\xbb\xad\x1d\xe5\xb5\x98\xac\xc1\x15\xe9\x6b\x4d\x10\xf6\x97\xfa\x56\x97\x8c\xf3\xe4\xab\x5e\x21\xae\x8f\x5f\xaf\xd6\x62\x84\xbf\x39\xb7\xf1\xe0\xe7\xfe\x5e\xec\x78\xf9\x2d\xe7\x13\xae\xb7\x1f\x77\x53\x7f\x07\x97\x51\xcb\xea\xc4\xfc\xd2\x15\xc2\xb8\xec\xba\x72\x1c\x4f\x25\xe1\xfa\xa7\x91\x35\x12\xe4\x72\x16\xf3\x36\xb0\xf7\x02\xae\x17\x3e\x3d\x97\xf1\x9c\xec\xa1\xd8\x52\x42\xe7\xc3\x0d\x3c\x0f\x38\x07\xdc\x42\xb6\xde\xc2\x15\xb4\x4f\x96\x75\x14\xc3\x07\x3a\x76\x1f\xf3\xc8\xb8\xa7\x0f\xdf\x33\x74\x8c\x9f\xe3\x7a\xab\x68\xdf\x8f\x6a\x37\xc2\x5e\x83\x09\xd4\xff\x4f\xc6\xd4\xfe\xe2\x81\x14\xc9\x32\x7d\x7f\x7e\xf1\x40\x18\xbd\x13\x57\x86\xe7\xc1\xf6\xc7\xd9\xcd\xe8\xa6\xe4\x68\x50\x5b\xb9\x8b\xda\xf3\xbc\xd4\xde\xc4\x9d\x89\x84\x3e\x76\xa6\x9f\x3f\xa2\xb2\xd7\xcf\x10\xea\x37\x1b\x97\xd7\xcc\xb9\x92\xea\xc4\x90\x7f\xf2\x1f\x98\x1a\x3f\x8b\x7f\x1b\xf6\xfc\x69\xff\xe6\x3d\xfc\xcd\x03\xb1\x2e\x04\xf8\x96\x4a\xef\x31\x7f\x3a\x0d\xb0\x64\x80\xea\xd8\xaf\xf6\xa4\xf8\xe6\x7a\x03\x80\x17\x63\x01\xb6\xf4\x51\xbd\xfa\x88\x1a\x80\x87\xb5\x00\x09\x0a\x00\x0f\xf8\x01\x32\x4b\x28\xee\x77\xc8\x1b\xa0\xfb\x21\x40\xb5\x2f\xd5\xfb\x38\xcf\xdc\xef\xbe\x71\x10\xe0\x3e\x17\x40\xdf\x4a\x80\xfb\xb6\x00\x1f\x7c\x01\xee\x32\xf8\x35\x8b\x7b\xb3\xfc\x87\xf3\x4c\x9d\x9e\xbd\xf7\x7d\x8a\xc1\x39\x58\xfe\x47\x35\x83\xeb\xb1\xf8\xe7\x3f\xfd\x62\xf9\x1f\x2c\x9e\xcf\xe2\xe0\x3a\x7f\xe1\xfc\x7f\xc4\x23\x94\xe1\x81\x1c\x02\x98\x31\x09\xe0\xfb\x77\xaa\x67\xff\xb1\x17\x60\x71\x23\xc0\x40\x14\xe7\x9d\x13\xe0\xf9\x63\x80\x75\xb6\x14\xe7\xdd\xec\x00\xf0\xe8\x06\x40\x78\x3e\xc0\x83\x3b\x00\x71\x29\x00\xf7\x57\x01\x64\x5e\xa3\x78\x5f\x61\x0c\xc5\xb9\x39\x71\xb8\xf7\x05\xe0\x7c\x35\xc0\xdd\x2a\x80\xeb\xa9\xd4\xf6\xdd\x00\x78\x10\x4c\x31\x84\x5b\x63\xe9\xbf\xdd\xc2\xe0\x7b\x2c\xff\xe1\x17\xff\xe3\x2f\xfe\xcb\x7f\xe0\xdf\x91\xbf\xe3\xc0\xfa\x65\xc0\x68\x8b\xfc\xe2\x7d\x54\xfc\x69\x75\x6c\xff\x8c\x0b\xfb\x7b\xa6\x39\x54\xdf\x60\x6a\x25\xc0\xe7\xc3\x00\x36\x95\x00\xef\xc6\x71\xf6\x52\x80\x81\x5e\x00\xce\x39\xe0\xa9\x27\x80\x47\x18\xc0\xa3\xef\x00\x01\x62\x00\x0f\xae\x03\x84\x6e\x03\xb8\x77\x06\x20\xd6\x16\xe0\xee\x58\x80\xf4\x61\x00\xb7\xeb\x01\x8a\xcc\x01\x6e\x8b\xd2\x7b\xff\x5d\xe7\x00\x1a\x85\x00\xba\x6a\x00\x6e\x38\x02\xdc\x11\x06\x78\x9c\x00\x70\xd7\x14\xe0\x6b\xed\x6f\xdc\x9b\xcd\x83\x46\xa6\x5f\xcc\x2f\xfe\xcb\xbf\xf9\xcf\xde\x03\x3f\xf7\x3b\x0e\xac\xff\xbf\xf8\x1f\x0c\xef\x83\xe5\x39\xfc\x6d\x59\x9d\x08\x96\x37\x63\x6c\x40\xef\xf5\x4e\x6a\x03\xf8\x94\x02\x30\xb3\x84\xf6\xb1\xb0\xf3\xa6\x38\x9f\xb3\x2a\xc5\x79\xd6\x0c\x00\xf4\x36\x00\x6c\x8c\x04\xe8\xd6\x01\xd8\xfe\x18\xe0\xce\x33\x80\x58\x1e\x80\x5b\x06\xf4\xce\x75\xc7\x21\x80\xfd\x03\x00\x1d\xca\x00\x15\x05\x14\x07\xe5\x9c\x48\x3a\x62\x00\x3a\x84\x00\x3a\x8e\x02\x3c\xca\xe0\x9c\x0a\x68\xce\xb5\x31\xfc\x20\xb6\x0f\x10\xdb\xff\xe3\x17\xff\xe9\xf2\x5f\xfe\xc7\x32\xfe\x33\xbc\x87\xa2\xde\xdf\x71\x60\xfd\xff\x9b\xff\xc1\xf2\x20\x14\x8e\x32\x9f\x19\xde\x07\xcb\x7b\xf8\x15\x8f\x05\x00\x5f\xb6\x00\x98\xd4\x00\xbc\xad\x05\xb0\x8c\x01\xe8\xd7\x05\x98\x73\x95\xea\x5b\x38\xb9\x51\x5d\x87\x15\xbd\x00\xdd\x4b\x01\x7c\x7e\x70\x76\x2d\xda\x17\xa5\x73\x31\x40\xb4\x0e\xc5\x3d\x39\x71\xb8\x31\x0d\x80\x73\x92\x69\x6f\xa2\xcf\xde\x7e\x1f\xa0\x21\x14\xa0\xdd\x1b\xe0\x7a\x36\xb5\x7d\x5e\x00\xed\x0e\xb4\x8f\x14\x9b\x07\xe7\x18\xec\xbd\x8e\xc9\xdd\xea\x59\x7f\xfa\x5f\xc2\xe4\xc3\xdf\xfc\x87\xfd\x53\x7f\xc7\x81\xf5\x9f\xf5\x9b\xe5\x35\xb0\x3c\x88\xbf\x2d\xfb\x7d\xa5\x0a\x80\xef\x36\x00\x1a\xe7\x28\xde\x3f\x76\x3a\xc0\x9b\xb9\x00\x93\x7c\x00\x9e\x99\x01\xcc\x88\x05\xe8\x1b\x07\x30\x3f\x91\x73\x9a\xa1\xf3\xe3\x4e\x2c\x80\xd7\x7d\x80\x9b\x47\x01\x36\x27\x03\x5c\x7b\x4c\x75\x41\xda\xb9\x00\xf6\x3a\x51\x6e\x5c\xc1\x6e\x80\xab\x7c\x00\x9c\x13\xec\xd5\x20\x80\x46\x57\x8a\x79\x5f\xef\xa7\xb6\xef\x2c\xc5\xc5\xbf\xfa\xff\xe6\xc1\xd4\x6b\xfe\x99\xff\xe5\x0c\x3f\xe4\xc8\x05\xc6\x6f\x66\x6c\x0b\x99\xbe\x4a\xbf\xf8\x0f\x21\xbf\xe3\xa0\xfc\xfd\x4f\x3f\x59\x7d\x0b\xd1\x00\xc6\x32\xdc\x22\x56\xff\x82\xe5\x83\x48\xbf\x07\xf8\xa1\x03\xa0\x5c\x40\x79\x1f\xda\xa1\x00\xaf\x8c\xe8\xfa\xf9\xb8\x0b\x60\x5a\x34\xe5\x73\xcd\x4b\xe2\x9c\x9e\x01\x96\x35\x03\xdc\xfa\x06\xe0\x11\x40\xe7\x75\x20\x27\xaf\x93\x00\x22\xc5\x28\xe7\x85\x73\x2e\xb8\x72\x08\xa0\x60\x2c\xc0\xa5\xc5\x00\x15\x5b\x00\x2e\x19\x02\x34\x58\xd0\x3e\x60\xd7\xf7\xd3\x3e\x38\x4f\xfa\xa9\xc5\x1e\x53\x0c\x7e\xcd\xe2\xff\xec\xf8\x1f\xbe\xf4\xdf\xc7\x9d\xe5\x01\x64\x31\xbd\xbd\xd2\xfd\x7e\xc7\x81\xf5\x9f\xf5\x9b\xd5\xb7\xe0\x66\x34\x68\x58\xdd\x0b\xee\x25\xd4\x0a\xe4\x01\xfc\x7c\x00\x20\xd2\x01\xf0\x69\x02\x80\x74\x04\xc0\x80\x01\x80\xaa\x01\xc0\x93\x3c\x00\xfd\x3d\x00\x9c\x53\xe3\xc4\x53\x80\x6c\x53\xeb\x10\x80\x2e\x11\x80\x45\x12\x00\xd7\xe5\xe8\x3e\x7a\xd5\x1c\x80\xf3\xde\x70\x39\x9b\xea\x49\x5d\x74\xa4\xfd\xd5\x9a\xc3\x01\xf2\xc5\x00\x9a\x86\x01\x94\x3b\x00\x34\x25\x00\x34\x1a\x01\x34\x5c\xa7\xfd\x93\x38\xb9\xf1\x54\x07\xa0\x51\x01\xe0\xfb\x35\x80\x5a\x9b\xbf\xfc\x67\xd6\xbd\x42\x86\xbb\x98\xcf\xe4\x47\x36\x33\xd6\x19\x0c\x6f\x66\x1f\xc3\xff\xd8\x5b\xf2\x3b\x0e\x62\xcc\xfe\xf8\x37\xff\x03\x71\xf0\xbf\xf8\x0e\xff\xe4\x3d\x0c\x77\x06\x78\x6b\x0c\x20\xb4\x17\xe0\xa5\x2d\x80\xec\x24\x80\xbe\x06\x00\x0d\x2f\x80\x6e\x1f\x80\x71\xd5\x00\x9d\xbd\x00\xd3\x1e\xd1\xf9\x6e\x77\x01\xa0\xd5\x03\x60\x79\x1d\xc0\x65\x65\x00\x5f\x4b\x80\x0b\xc2\x00\x3b\x72\x01\xce\x5b\x00\x24\x58\x00\x34\x44\x01\xe4\x39\xd1\xde\x51\x65\x25\x00\x67\x16\x03\x34\xbc\x06\x38\x1d\x42\xd7\xc6\x7a\x43\x80\xa7\x57\x01\x4e\xbd\xa4\xf9\x70\x2c\xe3\xcf\xf1\x3f\xc0\xf0\x00\x7f\xe9\x7e\xbc\xfb\xef\x7e\x27\x31\xfa\x28\x2c\x1f\xe0\x9f\xe3\xfe\x07\xff\xe3\x5f\xfc\xa7\x5c\xe5\xdf\xbc\x87\xfe\x01\x80\x61\x46\x74\x3f\x10\x71\x00\xb8\x7f\x10\x40\x71\x0c\xc0\x6d\x67\xda\x27\xe7\x86\x3a\xc0\xc4\xe5\x00\x57\xa3\x00\x6c\x0e\x02\x5c\x3c\x0e\xb0\xb4\x02\xa0\x49\x94\xf3\xee\x0e\x70\xae\x0e\x60\xbb\x21\xc0\xe9\x8f\x00\x7b\x76\x00\xd4\x15\x03\x64\x77\x03\xd4\x6c\x06\x28\xbd\x03\x70\x72\x26\x00\xe7\x0d\xfe\x78\x2f\xc0\x0d\x5b\x80\xea\x76\x80\x27\x93\x00\xaa\x19\x2d\xa2\xa3\x4c\x2e\x1f\xd0\x63\xc6\x9d\x99\x27\x69\x0c\x7f\x92\xe5\x7d\x24\x30\x5c\xcf\x78\x66\x0d\xdc\xcd\x70\x5e\x77\x6d\xfa\x1d\x87\xff\xc9\x7f\xf8\x2b\x0e\x5f\x86\x51\xfb\x46\x85\x5a\xda\x65\x96\xae\x03\x5c\x3c\x00\xb7\x4f\x02\x48\x04\xd3\xfd\x4e\x2d\x19\xa0\x35\x86\x9e\x33\x9a\x3b\xa8\xae\x54\x43\x2f\xc0\xc2\x1d\x00\x67\x24\x01\xdc\x8d\x00\xea\x74\x01\xb6\x98\x02\x9c\xe8\x02\xd8\xdd\x0f\x50\x6d\x01\x90\x15\x0e\x50\x79\x0d\xa0\xe4\x01\xed\xf3\x75\x76\x26\x40\x99\x1c\xc0\xf5\x3a\x80\x52\x29\x80\x27\x4d\x00\x47\xf3\x00\x7e\x00\xc0\x01\x86\x2f\x99\xc5\xe8\xac\xa5\x30\x3a\x39\x89\xcc\x7c\x61\xf9\x2e\xbb\xaf\x51\xcb\xf2\x3e\xc2\x19\x1e\xea\x8e\xcf\xff\x88\xc3\xff\xc1\xff\xaf\x0c\xff\xe3\x8d\x3a\xb5\xec\xed\x09\xda\x75\x17\xe0\x6e\x01\xb5\x37\x98\xf9\xc5\x59\xd7\xa5\xa7\x03\x34\x17\x00\x68\xb6\x01\x34\x98\x03\x98\x5b\x01\xd4\x73\x83\xd8\x3c\x0b\x80\x13\x17\x87\xc9\xae\xb0\x06\x38\xb6\x9b\x4b\x3e\x60\x3d\x40\xd9\x4d\x6e\xdf\x28\x01\x80\xa3\xa9\x3c\x06\xe9\x3f\x00\x8a\x8b\x78\x2a\x8f\x94\x00\x1c\x1c\xc5\xf3\xac\xbe\x0f\xa0\x70\x0a\x4f\x5a\xbb\x01\xc0\xfe\xe3\x3c\xe6\x8f\x5e\x01\x14\xac\xe2\x3e\xfc\xe5\x2d\x40\xe6\x36\x5e\xec\xbb\x9c\x9c\xc8\x8d\x7d\x90\xe2\x5c\xb9\xf0\x1e\x52\xb4\xe8\x70\xec\x97\x14\x39\x74\x38\xd6\x9f\x42\xfa\x87\x4c\xe4\xd8\xe0\xb2\xa1\xd8\xf9\x72\x3b\xcf\x10\xac\x5f\x6e\x5e\x03\x35\xff\x97\x38\x7c\xdd\xcb\xf8\x1f\xc8\x8c\x7f\x26\xb5\xbd\x1f\xa9\xbd\xc3\xf0\x60\x6e\x58\x53\xdb\x12\x0c\x58\xf7\x3d\xaf\xce\xe5\x29\xb8\x0e\xe0\x54\xc7\x08\x59\x15\x3f\x80\xe3\xee\xc2\x9a\xe3\x2f\x02\x94\x6f\x10\xfb\x3a\x3b\x09\xe0\x48\x84\xe4\x52\xe7\x31\x00\x07\x17\x8e\x54\xf1\x75\x06\xd8\x7f\x44\x7a\x53\x78\x09\x40\xde\x22\x99\xf9\xa9\x73\x00\xb2\x2f\xcb\xb8\x1e\xe2\x9c\xb5\xc7\x4b\xb7\xd6\x9a\x02\xa4\x4f\x93\x1e\xdd\x52\x0f\xb0\xaf\x78\xe4\xcb\xfb\x1d\x00\xa9\x32\x23\x9d\x3e\x8c\x01\x48\xdc\x28\x85\x3a\xbc\xbb\xf5\x25\xb0\xce\x10\xf1\x51\x02\xfd\xdc\xa1\x2c\x7e\x96\x63\x83\x46\x89\x60\x3d\x76\xf3\x29\x11\xd4\xd1\xf1\xf7\x15\xc6\x78\xf8\x15\x0b\x22\x1f\xc6\x37\x8a\xaf\xf4\x7f\xc5\xe1\x07\xe3\xf7\x1b\x26\x0f\x9e\x67\x33\xfe\x6f\xa2\x6f\x87\x5d\x15\xbc\x58\x1d\x6a\xab\x12\xc6\xae\xd2\xcd\x03\xe2\xf8\xd6\x7c\xd6\x99\xf6\xcb\x39\xde\x2f\xfd\x84\x6b\x24\x40\x99\xbb\x42\xb6\x4c\x32\x3c\x38\xf8\x42\xb1\x47\x27\x67\xf8\xba\xfc\x43\xca\x81\x53\x56\x71\xaf\xc9\xfc\xac\x32\x6f\x01\x17\xaf\xc3\x3e\x21\x95\x50\x77\x1d\x7e\x48\x3a\xaf\xb2\x64\xeb\xb5\x11\x61\x71\xed\xca\xdf\xf7\x74\x09\xec\x8f\x79\xa1\xbc\x3c\x2f\x5c\x70\x4e\xb4\x86\xd2\xbb\x63\xdc\x82\x15\xbb\xe6\x2a\xad\x69\xfa\x2c\xb8\x33\x72\x97\x92\xe8\x6d\x19\x81\x57\x11\x8e\x4a\x96\xfd\xad\x02\x62\xa1\x35\x4a\xb5\x84\xf0\x17\x6d\xf3\x54\x4a\x26\x84\x6f\x20\x50\x4d\xf1\x13\x21\xbc\x83\x1b\x3e\x29\x46\x11\xc2\x6b\xb2\x3e\x5d\x41\x87\x10\xee\x4e\xaf\xf9\xf2\x49\x84\x70\x6b\x7a\x9e\x97\x1f\x4a\x08\x57\xa2\xfb\x16\x79\x13\x42\xb8\xa2\x56\xab\xc8\xc9\x11\x32\x7c\xf9\xdf\xfe\xff\x8c\xfd\xd3\xff\x17\x85\x43\xf1\xf6\x64\x8f\x81\x10\xe2\xbc\x37\xf5\x46\xa2\x0e\x6b\xab\x87\x12\xbe\x77\x37\x2d\x55\x41\xbf\xeb\xa2\x35\xb0\xfa\x51\xb9\x4b\x0b\xdf\x96\x8b\xdb\x74\x51\x17\xa3\x40\xd2\xc0\x47\x34\x14\x20\xbd\x56\xbf\x4b\x2d\x90\x7b\x58\x92\x92\xfe\x2e\xe3\xf7\xfc\xaf\x63\x97\xe9\xa7\xdb\xcc\x15\x5c\xbf\xf3\xa2\x7e\x90\xcb\x5b\xe1\x2b\xa1\xb5\x7a\xdd\x7e\x85\xa2\x6d\xdb\x95\xf5\x6c\x76\x06\x8a\xe7\x6d\x39\xac\x3b\x39\xbd\x45\xa2\x3e\x30\x53\x67\xc9\xd1\x62\xc9\xe5\xfe\xae\xda\x69\x67\x2e\x49\x26\xfa\xed\xd5\x16\xbd\xa1\x29\x69\xb0\xc1\x4d\xeb\xf3\xd3\x0c\x89\xc9\xbe\x77\xb5\x23\x7e\x9e\x15\x5b\xbb\xee\xb4\x56\x29\x21\x22\x79\xee\x2a\x63\x2e\x11\x22\xb4\x65\x95\xdc\x18\x1b\x42\x04\x8b\xdd\x1c\x47\xfb\x11\x22\xc0\xb3\x7c\xcc\xe8\x39\x84\x8c\x68\x72\xf1\x18\x35\x9e\x10\xfe\x09\xcb\x8c\x54\x93\x09\xe1\x7d\xef\xf4\x5a\xe5\x22\x21\xbc\xaa\x7f\xf3\x7f\x7e\x8d\xbf\x22\x1f\xd6\x4d\xba\xdb\x24\xb0\x5c\x7a\x6b\x02\xad\x92\x5c\xce\xd6\xc4\x3a\x4a\x83\x80\x11\xde\xcb\xac\x69\x30\xc6\xfa\x4b\xd9\x6a\x53\x8c\x60\x91\x39\xe5\x85\x64\x6f\x98\x8c\xb8\xcd\x5e\xd1\x29\x5f\x79\x0a\x00\x62\x23\xa7\x79\xca\xdb\x0d\x2b\x0d\x0f\x9e\xe2\xab\xaf\xc9\xff\x78\x9b\xd5\xe4\xbb\xd3\xc6\x8b\xfc\x0c\x30\x9d\x3c\xc1\xf1\x90\x78\x9f\xef\x50\xf3\xaf\x9e\x2f\xa4\x16\xae\x33\x9b\xf8\x78\xc7\x14\xe9\xdd\xee\xa2\x66\x8f\x93\x87\xc9\x4e\x59\x59\x6f\x5a\x51\x64\x23\x37\xde\x6d\x8c\xc9\x91\x9a\x36\xb9\x42\x57\x25\x13\xbe\xd6\x99\x72\xbb\x9c\x5f\x4c\xb8\xd9\xbb\x50\xf6\xba\xb3\x9f\xc9\x88\x4f\x09\x32\xfc\x4b\xa3\x27\x4c\x21\x44\xaa\xdc\x49\x6e\x5c\x3c\x21\xe2\x9d\x7f\xf3\x3c\x1c\x64\xf5\x3f\x11\x22\x1c\x61\xd7\xae\x97\x4d\x88\x50\x80\xed\x19\xbd\x0c\x42\x84\xc4\xe6\x1c\xd0\xae\x24\x44\x40\x8a\xf5\xff\x03\x2f\xe0\x73\x3f\x6f\x14\xc4\xea\xdf\xdd\x2a\xda\x1f\xe4\x06\xd1\xc0\xba\x49\x73\xc9\x58\xc4\xb5\xce\x96\x53\x7d\x8c\xaa\xf2\xa9\x58\xbf\x3d\x5a\x6e\x85\x3b\x48\xa1\xd7\x2c\xac\x2a\x66\x16\x51\xf5\xe9\x44\x1b\xca\x93\x88\x6c\xb2\xc7\x3e\xe7\xc1\x6f\xe7\xd7\x49\x2a\x01\x04\x18\xd8\x27\x68\x78\xf2\x86\x78\x4d\x98\x17\x3e\x91\x57\x38\x71\xa5\xcf\xdc\x95\xb6\xd6\x52\xe1\xce\xfb\xe6\xf0\xae\xe8\x93\xf1\x71\x0a\xb3\xee\xdc\xd4\x26\x6f\x32\xbf\x69\xb6\x6d\xec\x48\xc5\x11\x76\x0a\x33\x1f\xe5\x0e\x2a\x2d\x98\xab\x37\xe3\xc6\xb1\xa3\xca\x32\x36\xa6\x56\x83\xcd\x73\x95\xc7\xce\xfe\x66\x65\x76\x37\x45\xc9\x63\x76\xbe\xd5\xf8\x37\xa3\x15\xae\xcf\x16\xb6\xe2\x25\x44\x6e\xd1\x0c\x89\x69\xbb\x08\x91\xde\x66\xd9\x32\x45\x8b\x10\xa9\x31\x96\x2a\x93\x4a\x08\x91\x70\x9b\xf6\xde\x5c\x8a\x10\xf1\x65\x53\x89\x99\x0c\x21\xa2\x83\x53\xe7\x9b\xf4\x13\x22\x2a\x67\x71\x7c\xc2\x02\x42\x84\x6f\x7f\xce\x1f\x82\x3b\xe0\xf3\x2b\x52\x58\xed\xec\x0e\x57\x46\xfd\xfa\xeb\xe1\xfa\x58\x25\x6c\xae\x9f\x88\xd5\x9f\x7a\x45\xca\xfb\xa9\x76\x9b\x8d\xf6\x08\xb1\x45\x54\xa5\x20\xd2\x01\xef\x33\xa7\xfb\x39\x62\x5e\x24\xaa\x2c\xc1\x78\x45\xfa\x39\xe3\xed\xc3\x2d\x6e\xae\xb8\x6e\xfa\xe8\xbb\xf5\xf0\x07\x02\xac\xf9\xea\xe6\xa7\x14\xcf\xe5\xe6\x1c\xea\x5a\x31\xb6\x41\xe0\xc2\x02\x47\xe7\x86\x99\xfb\xc4\x6f\xcd\x9d\xb3\xf4\xe3\xb2\x8d\xd2\xca\xb3\xec\x96\x4a\xfb\x89\xc8\x7c\x9e\x2e\xbb\x44\x6f\x97\xa6\xdc\xec\x29\x39\x8b\x6d\x33\xeb\xe4\x05\x27\x3d\x74\x1a\x57\xd6\x24\x6f\x6c\xae\xb1\x68\x41\x63\x97\xbc\xf2\x44\x2e\xc7\xf2\xce\x1f\x72\xee\x66\x21\x8e\xae\xfd\x86\x32\x77\xcd\x0e\x2f\x3c\x47\xc8\xc8\x6d\x26\x3f\x1c\x3c\x09\x91\x5c\x62\x72\x77\x9e\x00\xc7\xff\x09\xeb\x6c\x2e\x12\x22\x96\x6f\xfc\x7d\xb6\x12\x21\xa2\x75\xe3\xc9\x8c\x5b\x9c\xf9\x33\xfe\xbd\xe5\x57\x42\x84\x3f\x8d\xbb\x36\xf5\x1b\x21\x42\x2f\x9f\xe5\x4a\x61\xf5\xb3\xbb\x5b\x1d\x71\x9b\x6b\x8a\x34\xcf\x9b\x9d\x69\xd5\x98\xe5\xff\x54\x0c\xce\xa3\xf8\x37\x71\xc4\x7a\x7b\x81\x21\xc5\x87\xd3\x56\xbb\x22\x3e\x1e\xef\xb3\x02\xeb\xb4\x91\x8d\xee\xb8\x7e\x6c\x65\x74\x33\xbc\x19\x75\x76\x57\x29\x1f\x54\xa7\x5f\x7c\x69\x83\x83\xb4\x11\x80\x6d\xc3\xfa\x73\x3a\x63\xf9\xe2\xad\xd4\xbd\xee\x4d\x39\x27\x32\xdb\x42\xd5\x4b\x6a\x91\xa4\xd8\x4d\xb3\x51\xeb\xb6\x79\x2f\x96\xd0\x33\x1e\xe5\x59\x1b\x3e\x4a\xd2\xc8\xe8\xb9\xc7\xc5\x34\x23\xc9\x93\x06\x9e\x6b\xb3\x8e\xc6\x49\x36\xe9\x95\xbb\xd7\x9d\x6d\x93\x8c\xd2\x4d\x73\x9f\xd5\xd1\x2b\xf1\x58\x57\x66\xcd\xd9\x17\xc3\xc5\xf7\xe9\xda\xad\xf1\x22\x44\xd4\x4f\x27\xc5\x6d\x07\x21\x22\x3c\x3a\x51\xce\x17\x08\x11\x76\xd4\xbe\xb3\xc4\x8a\x10\xa1\x39\x5a\x77\x17\x7d\x21\x44\x70\x8e\xd6\x13\x47\x61\x42\x04\xb9\x35\x67\x3b\x34\x10\x32\x22\x55\xcb\x71\xde\x42\x42\x46\x1c\xbe\x6f\xab\x8d\xf3\xfe\x86\x8e\x09\xfa\xd7\xfc\x75\x3a\xea\x1e\xd5\x67\xd1\x7e\x50\xbf\xf8\x3f\xd7\xa9\x6a\x70\xbe\xbd\x1b\xe2\x35\xfb\xaa\x56\xe1\x3a\x99\xb0\xd7\x73\x14\xf5\xdf\x1b\xab\xcb\x5b\x5f\xf9\x62\x75\x75\x83\x2e\xc5\x4d\x57\x3e\xdd\x84\x55\xe4\x05\x99\xdb\x50\xbf\x7b\xb6\xc8\xf6\x07\x82\x13\x01\x2c\xee\x05\xdd\x54\x0b\xe1\x7a\x6e\xec\xbd\x6d\xbe\x69\xe9\x88\xd7\x86\xe3\xb7\x29\xdb\xfb\x0a\x5a\xe9\xb4\x6f\x6d\x5c\xeb\x28\x34\x4e\xd3\x78\xcb\xe7\xe0\x1e\xa1\xc6\xd1\x06\x5b\x36\xef\x4d\x11\x7a\x30\x4a\x6c\x73\x64\xf1\x68\xa1\x1a\xd5\xc0\x4d\x29\xf5\x85\x42\x26\x2a\xdb\x02\xdf\x5f\x17\x14\x0c\x55\xfe\x19\xe8\xf2\x54\x59\x60\xb9\xca\xd4\x40\xad\x9f\xfe\xfc\xad\x2a\x81\xbe\xd7\x08\xe1\x37\x51\x7e\xbb\xee\x15\x21\x7c\x8b\x95\x06\xd7\x1e\x27\x84\xd7\x41\x65\xc1\x6a\x57\x42\x78\xbf\x28\xd7\xad\x90\x24\x84\x77\xaa\xf2\x5e\x97\x70\x42\x78\x6e\x28\xaf\x5f\x96\x44\x08\xcf\x9e\x0e\x27\x73\xac\x2b\x5f\x52\xa4\x7d\xa1\xea\xa3\xed\xf7\xe0\xba\xff\x74\x31\xa2\x44\x87\x6f\x2f\x47\x1d\xa0\x82\xb1\xee\x88\xa6\xa6\x3d\xa2\xfc\x9f\x84\x41\x5f\xe4\xcd\x45\x33\xfe\x06\x9b\x6c\xc6\xea\xea\x46\xee\x6d\xb8\xbe\xb8\xaf\x0b\x46\x3c\x78\x89\x6c\x18\x9e\xbc\x6c\x24\x29\xfa\x60\xfc\x6a\xb7\xc9\x10\x49\x00\x83\x8e\xdd\xb3\x65\x0f\x0e\x79\xa6\xd1\x18\xbd\xde\x68\x09\xf7\xa0\xda\xc2\x68\x27\x9b\x28\x9e\x48\xa5\xd2\xa8\x2f\x2b\xbd\x78\xd2\x15\x78\xa3\x76\x6d\xbd\xc1\xb3\x4e\xf6\x67\x94\x70\x22\x37\xf7\x29\x99\x9c\x5d\x09\x45\x73\xb8\x72\xa5\xdf\xed\xfc\x5c\xa7\x33\x7c\x82\xf4\xc0\x4e\xab\xb6\x67\xc3\x24\x65\x7e\xee\xf4\x78\x2c\x03\x20\x5d\x19\xe9\xf1\xad\x03\x60\x64\x4a\x48\x26\x67\xef\x93\xdc\xba\x15\xf1\x7c\xb1\xc5\x81\x2d\x68\x2b\x37\xd6\x73\xac\x88\x8e\x2f\xea\x44\x88\xf2\x78\xe1\xfd\x6e\xa1\x9c\xb5\x88\xff\x5e\xd6\xb7\x46\xde\xca\xe9\x54\x3a\xee\xc7\x88\x33\xee\x8f\x47\x1c\x57\x61\x42\xef\x7f\xe9\x89\xdf\xcf\x48\xda\x80\x79\x9e\x14\x12\x80\x75\xfd\x68\xc5\xad\xe8\x57\x08\x50\x9c\x38\x70\x68\x28\x56\x8b\x3d\x0b\x22\xd1\x6f\xd7\x29\xd1\x08\x4f\x39\x4c\xa2\x7c\x81\x69\x5b\x13\x30\xce\xba\x66\x7b\x11\x4f\x56\x16\x4f\xcd\x15\x11\x02\x90\xf9\x90\x7a\x45\x6b\xee\x10\x97\x91\x3b\xf7\x29\x58\xed\x03\x90\x80\xd4\x46\x17\x5d\x00\x51\xc5\xd4\xd0\x80\x97\x00\xc2\x8a\x29\x97\x63\xef\x00\x08\xac\x48\x51\xcf\xef\x00\xe0\xdf\xbe\xd7\xe2\xf8\x5a\x00\x3e\x85\x64\xe1\x2b\x73\x01\x78\x62\x92\x2c\x1f\xe8\x02\x70\x9b\x24\xa6\x7f\x1c\x0b\x30\x7c\xf7\x9e\x30\x7c\x57\x0c\xde\x85\xbc\xe3\x21\x89\x61\x14\xef\xbf\x13\xc2\x85\xf6\x44\x10\xc5\xf7\x96\x6e\xa6\xb8\xbf\xa5\x3f\xea\xf1\xb1\xfe\x57\x7b\xb8\xd1\xf5\xbf\xca\x03\xfb\x37\x14\xf4\xfa\xe2\xb8\x67\xbe\x0e\xc0\x7c\x4f\x26\x5b\x71\x1f\x8d\x2e\xa0\x7e\x87\x0e\x0d\xc3\xfd\x74\x73\xfb\x4e\xac\x8a\xaf\x37\xa0\xdd\xe6\x57\x26\xc5\x21\xfa\xea\x64\x9b\x88\x7f\x67\x0e\xd0\xfe\x39\x66\x12\xe9\x88\x77\x8c\xd6\xcd\x46\x7e\xa6\xc0\x8f\xfc\x4f\x43\xd5\x00\x78\x1f\x15\xa8\x2b\xde\x03\x18\xfe\xbd\x40\xd3\x6c\x3e\xc0\x90\xf2\x02\xde\x05\xd8\x91\x28\xbf\xd3\x1b\xf1\x99\x7c\xe5\x48\x1c\x99\xbc\xed\x59\xb8\x12\xe5\xda\x52\xdc\x3f\x67\xd8\x05\x44\xa0\xb3\x15\xe9\xcd\xe9\xac\xa6\x37\xf8\x0e\x98\xc1\x9c\x85\x92\x99\x7b\xbc\xf1\xcc\x7d\xff\x18\x06\xcf\x8b\x62\xf0\xde\xf0\x18\x6a\x43\x1c\x39\xf6\xf8\xf3\x95\x78\x2e\x2c\x5d\x41\x79\x5f\x45\xfe\x14\x4d\xcc\x66\xc6\x3b\x99\x50\xbf\x63\x0e\x86\xa1\x5e\x41\xb8\xed\x4e\xdc\x4f\xb6\x26\xc7\x20\xaa\xb0\x21\x2b\x0e\x9f\xc2\x43\x31\x19\xe7\x83\x73\x5b\x2a\xe6\x81\xfd\x26\xca\x13\xb0\x8c\xa7\x7c\x18\xa3\x76\x84\x35\x40\x31\xa7\x10\x79\x37\x5c\xf3\x0f\x33\xb8\xf7\x11\x22\x83\x3b\xec\x51\x71\x63\x6e\xfc\xec\x60\x8f\xb8\xf7\xe1\x7e\x4f\x3c\x91\x1d\x9e\x4b\x3b\x53\x15\xdb\xa5\x21\x32\x76\xe8\x4a\x09\x66\xd6\x21\xde\x06\xe4\x43\x14\xc5\xdc\x4a\xa5\x4f\xfe\x12\x57\xb8\xc2\x49\xd4\x3f\x96\x17\x93\xc1\xe0\x98\xa9\xda\xd4\x26\x31\xb8\xde\x1e\x86\x0f\xb3\x7b\x28\x41\xfd\x07\x7a\x7b\xfa\xa0\xe5\x26\xc4\x67\xb3\x03\x82\x10\xbf\xdc\x67\x42\x75\x80\xe2\x8d\x76\x61\x9e\x47\xba\xc7\x08\x72\x6c\xd0\xf1\x78\xc4\xbd\x03\x3c\x92\x31\x0e\xde\x8d\xfb\xb0\x9f\xde\x8a\xde\x4c\xfc\xb9\x45\x49\x94\x0f\x33\xc7\x28\x1f\xd7\x87\x49\x17\x0b\x51\x8f\x4e\xdf\xec\x30\xbe\x99\xc9\x58\x96\xae\xa0\xfe\x1f\x5b\x48\x6d\x95\x1d\x65\x68\x1f\x23\x54\x07\xe3\x98\xbe\x2d\xde\x94\xaf\xfc\x41\x19\x89\xc7\xe4\xb7\xe3\x3d\xfe\x63\xf3\xf6\x22\x93\xa4\x32\xa4\x18\xff\x42\x85\x5a\x3d\x9e\x74\xcb\xbd\xaf\xe3\x99\xbf\x2c\xf9\x09\xee\x6c\x65\x13\x7e\xe0\x48\x14\xc7\x51\x3f\x0f\x30\xfd\x2f\xf2\x99\xfb\xdd\xd9\x0c\x0f\x22\x9d\x9f\xfc\x83\x37\x54\x5c\xb3\x15\xf7\x7f\x56\x07\x69\x5f\x12\xe5\x7d\xc5\x27\x51\x9e\x5b\xb4\x62\xc2\x72\xba\x0e\x24\xe1\xf7\x37\x55\xa5\xe2\x7a\xe8\x53\x94\x89\xf7\xb7\xdd\x47\x53\x3e\xcc\xb2\xee\x02\x3c\x97\x3a\x7c\xa7\x7d\x83\x58\x5d\x1c\x93\x73\x25\x78\x0e\x19\xe3\x5d\x89\xe7\x0a\x89\xa7\xd5\x94\x07\x02\xb5\x0c\xde\x5b\xaf\x28\x85\x3b\xf5\x29\x5f\x43\x44\xfa\x4e\x79\xd3\x93\x58\x5d\x1d\xe5\x3f\xd4\x35\xd2\x4e\x6d\x75\x3f\xe8\x0a\x53\x37\xbb\x10\x77\xe0\x5a\xf3\x1a\x44\x48\x6b\x02\x5a\x50\xf7\xa0\x46\xf4\x21\xf2\x41\x4e\xea\x7c\x40\x05\x83\x2a\x46\xd7\xa0\x8c\x99\x17\x47\x0e\x52\x7b\xb0\x80\xda\xfd\x49\xff\xcc\x9b\xbc\xf2\x50\x9c\x0f\xe9\xa2\xbb\x30\xba\x89\x1f\xf6\x20\x2f\x2c\xfa\x6c\x92\x2e\x20\x1f\x94\xf6\x03\xdb\xba\x27\x03\xfd\xf2\x0b\xca\xc5\x7d\xd5\xd3\x90\xf2\x03\x96\x5f\x2d\xc4\xb8\x39\x39\x50\x1e\xd0\xdc\x4b\xa5\x98\x17\x53\xed\xcb\x70\x34\xc7\x7b\x50\x7e\x84\x9a\xe1\x49\x44\x2d\x45\xbc\xeb\x19\x7c\x93\xaa\x58\x00\x9c\x4f\xa6\xba\x28\xe7\x85\xf5\x31\xcf\xcf\x5b\x52\x05\xbb\xc6\x24\x57\xdc\xd1\x1b\x9f\x52\x3c\xaf\xa1\x97\xae\xb8\x8d\xff\x1f\x63\x5f\x1e\x57\xe3\xda\xbd\x7f\x35\x4f\x94\x92\x21\x43\x64\x16\x51\x99\x89\xcc\x73\x83\x90\x0c\xa5\x41\x88\x52\xc8\x9c\x06\x19\x4b\xa8\x14\xa2\x28\x43\x42\xa9\x84\x26\xcd\xa1\xa8\xcc\x43\xc7\x94\x99\x64\x38\xe6\x73\x38\xcf\xef\xf3\xac\xf5\x6c\xa9\xf7\xbc\xef\xef\xfb\xc7\xf9\xac\xb3\xb7\xdd\xde\xcf\xba\x87\x75\xdf\xf7\xba\xae\xfb\x5a\x59\xb1\x84\x7f\x17\x46\xb2\x22\x47\x41\x15\xdf\x48\x2f\x30\xbe\x4f\x15\x5d\xf2\x9d\xde\xd3\x3d\xf8\x1c\x69\x5e\x64\xec\x65\x2b\xe3\x0b\xfd\xd2\x8b\xf9\xc1\xf6\x28\xdd\xd3\xd8\x1b\xc3\xfd\x1e\xb6\x78\x07\xf1\xf9\xb6\x9a\x46\x92\xda\xc8\x86\x8e\x51\x87\x40\xb8\x37\xd7\x0b\x92\xf1\x80\x16\x19\xb3\xdf\x73\x2e\x33\x3f\x62\xd6\xbd\x44\xc2\x89\xa7\xa4\x48\xba\x38\x3e\xa7\x89\x1f\x30\x78\x49\x3a\xe9\x45\x19\x5f\x63\xbf\xdb\x1e\xcb\xa5\xf1\xa0\x35\x90\xf5\x42\x80\x52\x49\x0f\xe4\xb2\x6d\x63\x8a\x14\x97\x4d\x7b\x10\xa2\x7a\x39\x79\x54\x21\xdb\x59\x84\x2c\x5f\x12\x96\x50\xa4\xb9\x64\xc9\xcc\x9d\x4b\x02\x47\x9c\x4b\x86\x29\xc4\xab\x2a\xfd\xc9\xca\x04\x25\xfa\xb7\x98\x01\x59\x51\x4d\xbc\xaa\x0b\x7f\xfd\xa0\xf1\x53\x38\x8c\xfd\x95\xb5\x8b\x8c\x2f\x24\xd3\xd1\x61\x5e\x4c\x84\x6d\x38\x11\xca\x43\x96\xec\xa2\xde\xd8\x34\x3a\x9a\x4e\xdc\x7e\x36\x5c\x5d\x62\xb5\xd1\x11\x3a\x77\x2c\xee\x96\x40\x71\x72\x81\x3f\xf3\x80\x9c\x83\x52\x48\x6f\xcd\xee\x63\x1a\x8d\x9b\x49\xcb\x32\x68\x1d\x18\x3d\x38\x9b\x78\x76\x03\xdf\xe6\x52\xfb\x19\xad\x64\x5e\x48\xeb\x1a\x66\x6b\x68\xb4\xba\xdc\x99\xfd\xbf\xba\x8f\xed\xb5\x67\x8d\x69\x66\x5d\xe3\x00\x8b\x1b\xbe\x5c\xd1\xf4\x86\xcb\x74\x62\x28\xde\xf8\xe1\x49\x2b\xf8\xf5\x43\xeb\x5f\x91\x35\xdc\x43\xfe\xdf\x50\x48\xa4\xf9\x71\x3d\x20\x8f\xf8\x52\xd7\x4c\xaf\xd3\x8a\x76\xad\xed\x73\xba\xdf\x5f\xf1\xf1\x0b\xfd\x62\x19\x61\x8f\x40\x49\x57\xf6\xbb\x48\xaa\x9f\x94\x57\xc4\x36\xeb\x08\xe5\xeb\x06\xec\xc9\x21\xff\xa3\x63\x08\xe7\x0f\xf0\x62\x1e\xd0\x1a\x2d\xee\x6f\xef\x9b\x27\xa8\xdf\xdc\xcb\x53\xa8\x1f\x5d\x0b\x79\x9c\xdb\xeb\xa7\x53\xe6\x65\xea\xb9\x2c\x62\x75\x4d\xd4\xe4\x3a\x59\x23\xc2\x78\xbc\xf7\x0b\xbb\x40\xfb\xeb\x6e\x56\x5c\x2f\xaa\x95\x75\x39\x7d\x8f\x7a\x97\x6b\x52\x06\xe7\x8e\x3c\xdb\x3f\xb2\x1a\x91\x72\x42\x65\x06\x9f\x64\xef\xb9\x33\xc3\xf9\x5e\x35\x9f\x58\xee\xeb\xbb\xf3\xeb\x1f\xeb\x34\xf9\xf3\x3c\x53\xff\x88\x49\x20\x05\x8f\x3f\xe2\xb2\x89\x2f\x55\x99\x59\x4e\x27\x9a\xca\x61\x55\xa4\x1c\x7a\x67\xcb\x9f\xf4\xfe\x4d\xbf\xbf\xe9\x49\x64\x75\xa5\x64\xf5\x93\x4a\xa4\x4a\x1c\xc5\xc4\xb3\x0c\x16\xe2\xa8\x1b\xd6\xdb\xc4\x53\xab\xad\xdd\x79\x82\x58\x8c\xcb\xab\x92\x69\x76\x7a\x9d\x4d\x23\xde\xb1\x5b\x45\x06\xad\x6a\xce\xc6\x99\xd4\x8f\x33\xa7\xf2\x38\xb7\xd9\x5e\x40\xe7\xb4\xf1\x9b\xcf\x4b\x3a\x20\x25\xf4\x7d\xbd\x51\x46\x7c\x80\x2e\x4d\xae\x52\x6f\xb5\xec\xc8\xfa\x38\xea\xdb\xef\x06\xb3\xff\x0f\xa5\x9b\x4d\x4f\x9e\x68\xd2\xbf\x3c\x09\xeb\x40\x3b\x90\x27\x1b\x07\xd3\x09\xee\x69\xf8\x64\x7a\xa2\xa7\x5d\x99\xe1\xf9\xb4\x92\x57\xf0\x27\x6e\xac\x58\xf7\xe4\x24\x33\x78\x1e\x57\x9d\xa1\x76\x79\x32\xbb\x94\x7a\xe2\x71\xd2\x3d\x1a\x99\x0f\x8f\x72\xee\xf4\x61\x3c\x6b\x09\xcb\x74\x62\x6e\x4b\x71\xf3\xda\x3f\x6c\xb9\x4e\x90\x8c\x07\xe5\x5f\x78\x92\xe2\xfc\x6a\xb3\x54\x8a\x17\x4b\x13\xb8\x0e\xde\xc2\x84\x4c\xfa\xd5\xb9\x6f\x73\x68\x15\x77\xf8\x59\x40\xab\xfd\x0c\xa7\x8b\xc4\x27\xb3\x1e\xc1\x51\x6a\xac\x43\x19\xeb\x80\xe8\x5f\xa5\xef\x33\xa9\x61\x3e\x50\x67\xf3\x3b\xa4\x86\xd5\x7c\xdd\x3d\x8a\xfe\x2a\xd9\x8f\xa4\x9b\x5e\x2f\xa4\xf5\xe2\xcd\x6d\x75\x7a\xa7\x66\x7e\x3b\x5a\x99\xdf\x24\xb3\xc2\x6b\x4d\x23\x2b\x9a\x1f\x35\xbd\xe7\x90\xbf\x6f\x97\xae\xa6\x13\x7c\xf5\xdf\x1c\xc9\x6b\xe6\x73\x3d\xad\x37\x72\xa9\x14\x17\x6b\x52\x2f\xd0\x8c\xae\xbe\x7c\x9b\xda\xef\x8d\x6f\x35\xf3\x1b\x2a\xbe\xd2\xdf\x3d\xff\x20\x10\xcf\xac\x4a\xaa\x13\x24\xd3\x89\xe1\x76\x59\xf7\x3e\x85\xce\x95\x3e\xc5\xcc\xef\x5c\xfe\x3e\x83\xe2\x82\x97\x07\x8f\x73\xb7\x0f\xf9\x74\xae\x72\xf9\x54\x57\x17\xc8\xb6\x5d\x19\xe5\x1d\x2c\xab\x58\x17\x68\x64\x31\xfb\x3d\x60\xc9\x2d\xba\x98\x64\xec\x71\x97\xf6\x19\x9d\xbe\x3c\xa2\x7c\x4d\xf3\xf7\x4f\x89\x57\xa3\xda\xea\xe5\x39\xf6\xff\xad\xb4\x5e\x7c\xe9\xae\x4c\x15\x71\xbf\x86\xf1\xcd\x9f\x2f\xb7\xfa\x50\x7f\x7e\xd3\x9d\x40\xb9\xd0\xef\x87\x66\x53\xdc\xfb\x3e\x8c\x95\x1e\xbf\x04\xb3\xe2\xd9\xb7\x16\x5c\xe9\xef\xdb\x10\x5e\x99\xbe\x9c\xe3\x0a\x6e\xdf\x3e\xdd\xa2\x1d\xee\x57\xd5\x67\xf4\xf7\x9f\x92\x3f\x53\x66\xec\xa3\x54\x89\xe6\x97\x1e\x4a\x09\xdb\xaa\x63\x42\x3d\xfe\xc3\x2f\xfe\x87\x84\xfb\xff\xd2\xbf\xb0\x97\xde\x1f\x5a\xf7\xf3\x03\x47\xfd\x86\xf7\x5f\x02\xc6\xe4\x01\x1f\x5b\x03\x96\x95\x40\xf5\x29\x60\x9a\x0a\xf0\xc2\x00\x70\x3c\x02\x3c\x7e\x0f\x2c\x1c\x01\x3c\x78\x08\x78\x1f\x64\x1d\x0f\xbf\x32\xa0\xd2\x00\x08\x0a\x03\x6e\xaa\x02\xe1\xfb\x19\xef\x8c\x7e\x06\x5c\xcf\x02\x4e\x24\x03\xe2\xe8\x4a\xb7\x67\xcc\xff\xa2\x01\x70\xd3\x0b\xb8\xab\x00\xaa\x5e\xf4\xdc\x10\xb8\xa5\x00\xfc\xf0\xac\xc5\xbd\x2f\x4a\x77\xaf\x65\xfc\x07\x19\xff\xe3\xac\xe4\x53\xfd\xfb\xef\x89\x7b\x6a\xf3\xf6\x32\xff\x65\x7e\xcb\xf4\x2e\x64\xba\x06\x32\xdb\xd3\x8e\xf3\xd8\x26\x46\xb5\xed\x41\x78\xbf\x3e\xf0\x29\x11\x18\xd1\x1f\x78\xd7\x18\xb0\xf0\x07\x5e\x5e\x06\xa6\x3a\x02\xcf\x4c\x01\x87\x2f\xcc\x73\x99\xfb\x99\x71\xbe\xc5\x6f\x80\xbb\x7f\x03\x6b\x67\x03\xb7\xae\x02\x9b\xaf\x00\x57\x6e\x01\xa1\x81\x8c\x7b\x8a\x2b\xf5\x15\x47\xe0\x58\x34\x70\x25\x1d\xc8\x78\xc6\xb8\xf7\xc5\x1a\xe0\x6a\x29\x70\x27\x1d\xb8\xb2\x12\x78\x31\x03\xb8\xe6\x0b\xfc\xf4\x01\x2e\x49\x77\x92\x65\x3c\x18\x19\xff\x21\x7d\xd9\xff\xf6\x5f\x86\x7f\x0b\xbf\xf1\x1f\x64\xfe\xcb\xf0\xfc\x5f\xfa\x17\x92\xed\xfa\x13\x10\x2e\x03\xdd\x03\x81\x9f\xdb\x01\x93\xdd\xb5\x78\xff\x87\x97\x80\xb9\x0d\xf0\xa6\x1b\x30\x56\x9b\xef\xf5\x4e\x2a\x04\x1e\x3b\x01\x33\xdb\x02\x0f\x55\xb8\xee\xc3\xdd\x1d\x80\x97\x39\x70\x47\x03\xf0\xf1\x00\xc4\x59\x25\xee\x60\x2b\x46\x03\x3b\x8a\xb9\xff\xf7\x0b\x40\xc5\x00\xe0\x84\x1d\x50\xbe\x94\x6b\x19\x54\x84\x89\x3b\x03\xe0\x72\x25\x70\xcb\x0e\xa8\x70\x07\xaa\xf5\x80\x2b\xed\xe9\x6e\x61\xed\x38\x90\xf0\x2b\x19\xee\xf9\x1f\xfe\x0f\xab\xeb\xff\x51\xab\xda\x76\x90\xf1\x1f\x3a\x49\x7a\x0f\x32\x1e\x40\x7b\x83\x7a\x56\xfc\xcd\x83\x40\x97\x55\x3c\x0e\xc4\x85\xe1\x73\x0f\xa0\x57\x26\xf0\x6e\x0c\x30\xa0\x86\x71\xce\x91\x4e\xc0\xd3\xf1\x5c\x07\xe4\xc1\x15\x71\xaf\x09\xfc\xf1\x91\xf9\x0f\xb7\x05\xe6\x49\x5d\xdf\x08\xac\x12\xfd\x97\x07\x02\xd3\x00\x71\xcd\x0b\xdd\x27\xee\x96\x80\x7d\x1e\x40\xa9\x39\x90\x50\x0d\x94\x76\x04\x32\x14\x80\xcb\x69\x40\x69\x7f\xe0\xf2\x20\xa0\x72\x25\x70\xd9\x08\x78\xf3\x00\x28\x0d\x03\xfe\xf1\xa9\xd5\x3f\x90\xcd\x83\xfa\xfc\x97\xe3\xf9\x75\xfd\xff\x9f\xfc\x07\x89\x43\x21\xd3\xbf\x90\xf1\x1c\xea\xd8\xa3\x80\x81\x1b\xd7\x35\xe8\xf4\x16\xf8\x68\x09\xf4\x30\x06\xde\x64\x00\x7d\xce\x00\x2f\xa2\x00\xf3\x07\x40\xd5\x15\x60\x9c\x3e\xcf\x83\x29\x29\xcc\xf3\x11\x0f\x2a\xd7\x06\x03\x6e\x71\x8c\xf3\x7b\xa7\x30\x8f\x63\xdd\x16\xee\xeb\x6d\x55\xc0\x45\x0f\x6e\x07\x71\x15\x16\x57\xb2\xe2\x67\xc0\xd9\x85\xc0\x45\x2f\xa0\xe4\x1a\x20\x06\xf5\xca\x56\xc0\xc5\xa6\x40\xb5\x12\xe3\x65\xc2\x06\x20\x57\x9a\x17\x67\xab\xeb\xf9\x2f\xd5\xb9\x88\x97\x74\x83\x0e\x49\xf7\xe0\x63\x25\x5d\x84\x98\x7f\x6a\xdb\x41\xc6\xff\x68\xfe\x5f\xea\x9f\xc8\xf8\x10\xe2\xeb\x7f\x7e\x02\x7a\x13\x81\x6f\x83\x80\xd6\x17\x81\xf7\xee\x40\x17\x6b\xe0\xd5\x32\xc0\x64\x1c\xf3\x5e\x06\x68\x02\x0f\x9c\x80\x91\x63\x58\xd7\xc3\x4a\x03\xb8\x96\x0f\xcc\x98\x00\x94\x7d\x06\xe6\x7e\x00\x2e\x8d\x05\x96\xee\x06\x4a\xf4\x00\xff\x04\xe0\x42\x2f\x60\x9b\x01\x50\xd4\x15\x88\xb2\x05\x8a\x87\x03\xc7\x95\x81\xc2\x20\x20\xe3\x10\x50\x34\x06\x28\xdd\x06\x14\x8d\x07\xee\x45\xf0\xe9\xa4\xfa\xa8\x78\xaa\x60\x2d\x92\x0c\x9d\x7f\xf7\x5f\x36\xee\x7f\xf1\x1f\x24\x5d\x84\x7d\x52\xad\x0f\x19\x0f\x40\xf8\xad\xfe\xcb\x2f\xfe\x87\xc4\xfb\x90\xf1\x20\x34\x55\x00\x61\x0d\xa0\x71\x10\xf8\xa9\x05\x68\x5f\x63\x6e\x92\x2e\xad\xe2\x80\x7e\x24\xf0\xfc\x01\xd0\xf5\x15\xf0\x48\x13\xe8\x65\xc5\x78\x9f\x18\x3f\x6f\x76\x07\xc6\x55\x00\x15\x73\x01\xdb\x93\xc0\xc5\x0b\xe2\x9e\x1c\x38\x1f\x0d\x78\x66\x03\x45\xcf\x00\xdf\x58\xe6\x35\x6c\x4d\x01\xc4\x5d\xd9\xde\x5e\x40\xae\x3d\x70\xd4\x90\x75\x0e\x32\xb4\x99\xf7\x54\xe2\x0b\x9c\xbb\xcf\xdf\x2d\xbe\xff\x2e\xad\x96\x0f\x97\x66\x54\x77\xfc\xcb\xc6\xfd\xaf\x7e\x97\x78\x2f\x7b\xa5\xfe\xdf\xed\x2e\xe1\xe1\xd7\x6a\xdb\x41\xa6\xeb\xa1\x29\xf1\x28\x65\xbc\x0f\xe2\x41\xc8\xf0\x5e\xe9\xf5\xd7\x27\x80\xea\x3d\xe0\xc3\x3e\x40\x33\x0d\x10\xf7\x2a\x4d\xdc\x80\x27\xcf\x81\xb6\x76\xc0\xfd\x7d\x80\x51\x2a\xf3\xbe\xfa\x3b\x01\x57\x9b\x00\x23\x73\x01\x71\xb7\x31\x79\x24\xd7\xbc\x99\x6d\x03\x14\x0c\x01\x16\xde\x01\xf2\x0d\x81\x35\x65\x40\xf6\x13\x60\xf3\x43\xe0\xdc\x1c\x60\xcf\x35\xd6\x4c\x3a\xd6\x53\x3c\x55\x73\x5d\xb1\x4c\x6f\xa0\xc4\x8b\xed\xfd\xa9\x40\xa6\x1e\xf0\x2e\x14\x38\x2b\xf1\x1a\x92\x2c\xeb\xfa\xff\xab\xdf\x7b\x49\x7e\x4b\xbc\xa1\x08\x49\x57\x28\x4c\x1a\x2f\xbf\xf3\x1f\x64\x7a\x27\xa4\xf7\xf1\x7f\xe4\x3d\x88\xbb\x20\xb9\x54\xe0\xc5\x61\xa0\xe1\x4a\xc6\xfd\xf5\x0a\x99\xe7\xd7\x41\x1b\xb8\xd1\x19\x30\x99\x04\x5c\x8e\x02\x86\x2c\x00\xce\x7f\x03\x26\x8a\xa7\x9c\x06\xac\x8f\x22\x9e\x42\xc5\xfd\xf2\xb9\xa9\x1c\x2f\x33\xaa\x58\x57\xeb\xcc\x53\x60\x97\x29\x70\xe6\x05\x70\x54\x19\x10\x77\xf5\x67\x07\x30\x87\xb0\xe4\x21\x70\x6a\x1f\xf0\x47\x22\x90\xb2\x13\x78\x3b\x01\x48\x2a\xf8\x77\xff\x65\xe3\xfd\x97\xdf\x35\x75\xfd\xde\x2a\xc5\xc2\x2d\x8e\xb5\xed\xf0\xbf\xfc\xff\x0f\xde\x83\xa4\x9a\xf8\x4a\xaa\x22\x5a\xa5\x0a\xc8\x6f\xe0\xb1\x2a\xb6\xc7\x8d\xb9\x40\xcb\xd3\x40\x79\x15\x20\x9e\x9b\x2e\x16\x8b\x67\x2e\xa0\xc0\x19\x18\xd3\x88\xfd\x9f\xea\xc7\x63\xdd\xb5\x10\x38\x73\x17\x58\xe6\x05\x9c\x1a\xce\x3c\xa9\x94\xfb\x40\xa4\x01\x70\x72\x3e\xf3\x28\x13\x0b\x98\x03\x22\xee\xa9\xc4\x18\x7a\x7c\x02\x70\xb7\x1a\x38\xf6\x11\xa8\x09\xe4\xda\x63\xe2\x33\x1e\x18\xce\xbe\xec\x39\xc7\x36\x5c\x1a\x1f\x3b\xc6\xb3\x0d\x96\xf6\x51\x9b\x24\xbe\xd8\x06\x29\x9e\x04\x84\xd5\xb6\xc3\xff\xf2\x5f\xa6\x7b\xf1\xd1\x92\x6d\x75\x57\xb6\x4f\x5d\xd9\xde\x97\x70\xf1\x5b\x4f\x00\x05\x6d\xa0\xe2\x09\xa0\x3d\x8f\xfd\x6f\x13\x0f\x14\x5a\xb1\x3e\xca\xb9\x0a\xd6\x53\x4a\xff\x07\x98\x34\x18\x38\x95\xc0\xfc\xa0\x93\x31\xc0\x62\x7d\x20\xd1\x4b\xdc\xe3\x03\xc7\x63\x81\x9d\xb9\xc0\xd1\x44\xae\xa7\x75\xe4\x19\x70\x7a\x1d\x70\xf8\x12\x70\xb1\x3f\x70\x28\x13\xa8\xfc\x0e\x1c\x0c\xe3\x31\x19\xf3\x53\x1a\xf7\x12\x97\x51\xc6\xff\x08\x3e\xc4\x56\xc6\xfb\x58\x27\xed\xa7\xfc\x25\xfe\x8b\x8f\x14\x17\x56\x05\xff\xef\x76\xf8\xe5\xbf\x2d\xdb\x1a\xe9\xb6\xc4\x0b\x4e\x12\xe0\xa1\xf4\x77\x77\x24\xde\xc3\x55\x29\xcb\x54\x62\x0e\x28\xbe\xe7\x38\xae\x9b\x02\x64\x25\x02\x1d\xd7\x72\x9f\x8a\xe3\x22\xe5\x05\x30\xae\x08\x48\xdc\x04\xcc\x2c\xe2\x3d\x82\xc7\xdf\xc0\x91\xe3\x80\xdf\x47\xe0\xe0\x2a\x20\x34\x1c\x38\xf0\x0d\x38\xa8\x0d\xc4\x8c\x07\xd2\x3c\x80\xe8\x21\xc0\x05\x1d\x60\xef\x22\xe0\xce\x1e\x20\x6a\x20\x50\x13\x02\xec\x8a\x07\x84\xf7\xc0\x76\x49\x37\x67\x8b\x54\x33\x31\x50\xaa\x75\xe8\x23\xe9\xc4\xac\x96\xce\x04\x2b\xdf\xb3\x5d\x2e\x69\xe9\x2d\x79\xf0\xbf\xdb\xe1\x6b\xfb\xba\xfe\xbf\x54\xaa\xe7\x7f\xb8\xe4\xbf\x34\x1e\x4a\x64\xd9\xb6\x24\xb6\x99\x65\x80\x5a\x02\x90\x56\x00\xb4\x5c\x00\x24\x39\x2b\xb6\xef\x21\xae\x63\x47\x54\x32\x87\x7b\x02\x07\x4f\xa8\x8f\x9b\x7a\x1f\xd8\xef\xd4\xa0\xeb\xfc\xe7\xc0\xde\xe4\x86\xe3\xd6\x14\x03\xbb\xc7\x68\x76\x15\xd7\xcf\x88\x67\x9a\x6b\x0f\x0c\x05\xc2\x17\x35\x3c\x9b\x12\x09\x84\x8e\x68\x18\x58\xb8\x1b\xd8\x7e\xb2\x41\xd2\xcd\x74\x60\x9b\x4a\x03\xc7\x57\x26\xc0\xd6\xbc\x06\x10\xa2\x80\x0d\x2d\x35\x28\xcf\xe6\x7b\x5b\x9d\x78\x31\x2b\x8f\xaa\x4d\x13\xad\x77\x90\x32\xe1\x37\x8b\x07\x2a\x3d\x13\xed\xa2\x44\x25\xaa\xb3\xe4\xa1\x2d\x4f\xf7\x15\x17\xc8\xc9\xd9\xfd\x5b\x3b\x7c\x73\x94\xe2\x60\xfc\x7f\xf1\x5f\xba\x55\x75\x45\x5b\x8e\xfe\xef\x42\x8c\x12\xe9\x02\xe4\x0a\xea\x94\x4d\x4b\x1f\xd1\x90\xf2\x2b\x49\x49\x9a\x74\x8e\x8f\xf7\x6b\xbc\xbc\xf1\x46\x20\xb6\x7b\xb3\x2d\x5d\xf4\x80\xbd\xa6\x7a\xab\x07\x45\xcb\x0d\x8b\x48\x6a\x31\xcc\x4a\x53\xa1\xc1\x8e\x7b\x2d\xae\x3a\xbd\x57\x5c\xb4\xb5\xb0\xc5\xcb\x65\x5d\x95\x96\x6e\xce\x6a\xf1\x7a\x53\x91\xf2\x94\x0d\x97\x5b\x1c\x8d\x6a\xa1\x5c\x1e\xe8\xd0\xc2\xfc\x44\x3b\xe5\x1b\x01\xdd\xf5\xfe\xca\x99\xa4\x9c\xea\x97\xa4\x97\x76\xe5\xa2\x72\x27\x5f\x67\xbd\x8d\x4f\x9b\x2b\xf5\x5a\x3b\x49\xef\xec\x5f\x9a\x8a\xe6\x2b\x1c\xf5\xbe\x09\x82\xc2\x3b\xaf\x5b\x7a\xe9\x82\xa0\xd0\x66\xe1\x6e\xbd\x4f\x82\xa0\x60\xb9\xc0\xa1\x49\x7b\xd1\xc7\x79\xae\x3a\x3d\x44\x3b\xb7\xb7\xf6\x4a\xd1\x3a\x6d\xd4\x1c\x2a\xda\xd9\xab\x1b\x90\xce\xf3\xaf\x79\x20\xe3\xbf\x48\xeb\xc2\x8b\xe5\x75\xfd\xbf\x1d\xa6\x42\xd9\xae\xb2\x14\xae\x07\x54\xac\xd0\x94\x70\xef\x73\xfa\x7a\x94\x3d\x4b\xb3\xd6\xa7\xfc\xdd\x71\x81\x75\x23\xe2\x34\xda\xd3\x2d\x88\x3d\x45\x9d\x94\xd5\x0f\x00\x61\x93\x3b\xef\x6f\xfd\xb7\xc2\x80\x60\xdd\xce\x77\x4d\x16\x2b\x0b\x1b\xe6\x74\x71\x1a\x95\xa3\xfa\xca\x5f\xb7\xcb\xe1\xe9\xf3\xd5\xcb\xd7\x68\x76\x99\xeb\x7e\xb0\x81\xdb\xf2\x4f\x9d\x33\xfc\xfb\x36\xcc\x5c\xea\xd6\xe9\x7d\xf8\x00\xcd\xa3\x5e\xab\x3b\xf5\x3f\x7c\x44\x6b\xc8\xa2\x46\x1d\x03\xd3\xf5\xb5\xdc\xdc\xdd\x3a\xdc\x2b\x7d\xa0\xd5\x6e\xa1\x56\x87\xfd\xf7\x6b\x34\x37\x2c\x30\xea\x70\xea\xcf\x9f\x0d\xc7\xcc\xeb\xd7\x61\x8f\x20\x68\x84\x38\x2b\xb4\x1f\x2e\x08\xea\xaa\x0e\xaf\x0c\xce\x0a\x82\xea\xa9\x19\xb9\x6d\xe3\x05\x41\x25\x76\xba\xb9\xfe\x0f\x41\x50\x5e\x61\xbb\x5d\x7f\x8b\x20\x28\x7d\x9b\xaa\xdd\xba\xa3\x20\x28\xfe\x3d\x39\xb0\x55\xa6\x20\x28\x46\xc9\xe2\xc0\x2f\xfe\xcb\x1a\xb6\x0f\x3c\x15\x29\x7f\x76\x53\x4e\x93\xee\x2d\x5d\x1a\xda\x9c\xb2\xea\xf9\x0f\x0d\xa8\xbf\x33\x0a\x38\x8b\x96\xa2\xcf\x01\x23\x3e\xdb\x94\x74\xeb\x63\x6a\x7a\x53\x3e\x2b\x32\xa9\x2f\xe5\x33\x82\x47\xf5\x3b\x25\x27\x9e\xa5\x5a\x0d\x52\x68\xb6\x16\xf0\x91\x1f\x60\xd6\x75\x8a\x8a\x95\xf7\x90\x7e\x3f\xcd\x9e\x35\x18\xbd\x28\xb2\x5f\xe2\xa4\xee\x9a\xc7\xdc\xa6\xf5\xfd\x7b\xce\xfb\x46\xc5\x73\x0a\xfb\xaa\xaf\x7c\xaa\x13\xe3\x78\xa9\x4f\xfb\xad\x21\xba\xed\xed\x0f\xf6\x56\xd9\xbf\xb6\x49\x83\x19\x0f\x7b\x29\xa5\x76\x68\xe2\x65\xf7\xc5\x74\x5e\x71\x93\x26\x21\xd3\xce\x9b\x3c\xbb\x33\xbe\x89\xaa\x6d\xbe\x49\xda\x9b\xcc\xc6\xc9\x53\x3f\x99\x76\x17\x04\xed\xb3\x36\x41\x3d\x4f\x0a\x82\x96\x87\x65\xb2\xd1\x23\x41\x68\x78\x58\xc6\xf3\x18\x9f\x68\x78\x51\x10\x34\x26\x8c\x1b\xdf\xe5\x93\x20\xa8\x77\x19\x33\xa9\xf3\x56\x41\x50\xeb\x35\x46\xb1\xe3\x07\x41\x50\x75\x91\xf9\xff\x66\x1d\xdb\xfb\xde\x1a\x84\x57\x5f\x0f\xd0\xa3\x5b\x90\xa5\xdb\x0c\x28\x2b\x92\x53\xd3\x9d\xf2\xf5\xe9\xe3\x4d\x09\x25\x48\xda\x30\x80\x6e\x13\xc7\xf7\x32\xa3\x7c\x65\xb4\x3e\xab\x0c\x87\x0b\x6c\xb7\x54\x8c\x26\xbe\x88\xef\x97\xb1\x94\x4d\x5d\xb6\x73\xfc\x97\x86\x53\x01\x0f\xbf\xf1\xc7\xda\xe9\x2a\x4d\x9c\x53\x33\xf6\x7d\x9f\x8d\x1a\x56\xb3\xf2\xc6\x18\x8d\x3d\xad\xad\x3a\xad\xd9\xe8\x31\xf6\x16\x8d\x13\x6d\x3a\x8e\xfc\xba\xd8\xb7\xc9\x3d\x8b\x63\x23\xee\x6d\xc8\x6c\x56\x34\x5e\x79\xf8\xf6\x3d\xa6\xcd\x85\x31\x5d\x87\x2d\x3a\xd1\x47\x2f\x63\xe4\xd3\xa1\xbe\xb9\xde\x7a\xcf\x46\xcc\x32\x3f\x7e\xed\xa2\x9e\xdd\xf0\x7c\x73\xe7\xe7\x67\x9a\x0f\x1f\x21\x6f\x7e\xe9\xe7\xd4\xa6\x06\x43\xb3\x06\xc7\x0b\x42\xe3\x94\x21\x7b\x07\xae\x17\x04\x6d\x1b\xb3\xbc\xfe\x7d\x04\x41\xeb\xa0\x99\x51\xdf\x13\x82\xa0\x99\x3e\xf0\x40\x9f\x66\x82\xd0\x70\xdf\x80\x4b\xa6\x3d\x05\xa1\x41\x93\x7e\xf9\x26\x3d\x05\x41\x63\x74\xb5\xb1\x1c\x65\xb1\xee\xeb\x6b\x3e\xe6\xfe\x6f\x45\xe3\xbe\xb4\x6d\x17\xbe\x1d\x9b\xcc\xfd\x9a\x16\x3b\x88\x6e\x3f\x25\x9e\xe3\x6c\xf2\x2f\xfe\x4b\xdc\x44\x7a\x3f\xec\x91\x15\xdd\x0f\xdf\xdc\xca\x86\x6e\x5f\xfa\x46\x4e\x21\xbc\x6b\x49\xc2\x34\xca\x22\xb9\x4e\x9b\xfe\x8f\xfc\x7d\x60\xb6\xf6\x4c\xfd\x16\x0a\x72\x87\xa7\xbe\x9d\xbe\xc8\xe8\x99\xea\x1d\x8b\x59\xd3\x12\x86\x2b\x69\xbe\x1c\x9d\x67\xbb\xc8\xf6\xa4\xce\xbc\xe1\x8a\x53\x93\xdc\x9b\xeb\x2a\x0d\xce\x9e\x72\xca\xbf\xbc\x89\xdc\xc0\x31\x53\xd4\x76\x7e\x6e\x92\xd8\xef\x90\xcd\x8f\xa3\x2b\x9b\xbc\xea\x73\xd8\x46\x37\xeb\x55\x93\xa2\xde\x4b\x27\x0d\xaf\x18\xda\x64\x5c\xaf\x62\xeb\xbc\x27\xa6\xba\x83\x7b\x05\x5b\xa7\x7e\x5f\xa6\xd3\xdb\x34\xd8\x52\x5d\x10\x1a\x75\x34\xd9\x3e\xbe\x9f\x20\x68\x96\x99\x28\x8d\x5e\x22\x08\x0d\x4b\x7a\xc6\x8e\x4c\x10\x84\x06\xd9\x3d\x07\x0f\x2b\x14\x84\x06\x6a\x3d\xbc\xcd\xbb\x0a\x82\xc6\xc0\x1e\x3e\x66\xf2\x82\xa0\x9e\xfd\xf0\x68\x63\xca\x8a\xdd\x48\x6e\x4f\xbc\xb7\x12\xcf\x9e\xc3\x51\x87\xff\xc3\x7a\x30\x89\x8d\x98\x0f\x72\xb0\xaf\x25\xdd\xb3\x8a\xfa\x60\x43\xe3\x26\xdc\x68\x1a\xf1\x1a\x36\x8f\x9b\x49\xe8\xa2\xef\xbc\xd9\xc4\x34\xf2\x86\x33\xfd\xdd\xbc\x3b\x73\x28\xdf\x6f\x77\x7b\x3e\xdd\xfb\xb3\x5a\xe3\xb6\xb8\xd1\x79\x60\xb4\xdf\xfc\x21\x1d\xef\x2b\x7d\x19\xbc\x70\x6e\xea\xc0\x42\x8d\xec\x7e\x79\x73\x67\x4e\x72\x68\xb8\xc3\xf4\xab\xeb\x87\x79\x5d\x35\x83\x7a\xba\xb9\x1a\xf8\x44\x6a\xb9\x76\xb7\x9a\x33\x38\xd4\x56\xab\xb0\xeb\x73\x97\x05\x87\x4d\xb5\xca\x3b\x3f\x73\xde\x94\xfe\x87\xd6\xbc\x4e\xc5\x4e\x8f\x2e\x0f\xd5\x7c\xd3\xa9\x93\xd3\xc0\x47\xd3\x34\xd5\x3b\x3e\x73\x2c\xfd\xd2\xa6\x81\x77\xc7\x03\x0e\x62\x7c\xf8\xd2\xe1\xf4\xf4\x48\x41\x50\xbb\xd9\xa1\x6a\xea\x51\x41\x50\x5b\xd5\x61\x82\x4d\x94\x20\xa8\x5e\x6e\x7f\xda\xba\x8f\x20\xa8\xf6\x6f\x7f\xd5\x62\xb7\x20\xa8\xa2\xfd\xaa\xf1\x25\x82\xa0\xb2\xf9\x46\x72\x47\x8a\xf3\xa5\x93\x7a\xd1\x7d\xe6\x9c\x9f\x83\x89\x31\x79\xda\x89\xfd\x4e\xf4\xb0\xa2\xfb\xde\x71\x9b\xa7\x66\x92\xff\x0d\xed\x28\x5e\x86\x4e\x71\xa0\xb8\x18\x64\xe1\x4c\xf3\xc0\xf7\x04\xeb\x26\x78\xfb\xba\x11\x0e\xe4\x56\xc1\xd9\x76\xfb\xd1\x9e\x74\x7b\xdd\x72\xdb\x52\x5a\x51\x87\x68\x2d\xdf\xa4\x64\x0e\xf4\xfd\xb9\x7c\x52\x6b\x4d\xf9\xec\x1e\x5d\x96\x75\xea\x15\xa2\x92\xdd\x35\x79\x99\xdc\x84\x95\xaa\xe7\x3a\x36\x5e\xd6\xd4\xe9\x9d\xea\x77\x83\xaf\xde\x16\x2b\xe5\xd5\xba\xb6\x99\xbf\xf4\x6b\xc8\x9f\x6a\x0d\x5b\x3b\x2c\xd5\x8f\x7d\xa3\xba\xa2\x95\xe6\x92\xe5\xa7\xef\xa9\x3c\x6c\xd9\x7b\x71\x6a\x89\xb3\x4a\xeb\x16\xa9\x8b\x1b\xdc\x2f\x53\xee\xd4\xc2\xc9\x6b\xe7\xc7\xd6\x8a\x97\x5a\xac\xf4\x58\x24\x08\x0a\xaf\x5b\x38\xcd\x77\x12\x04\x85\xad\x2d\xd2\x5d\x96\x08\x82\x42\x86\xde\x3b\xc7\x0d\x82\x20\xef\xd7\xe2\xba\x7d\x1a\xbd\xbf\x6e\x86\x83\x20\x28\x34\x68\xe1\x3e\xed\x1f\x41\x90\xbf\x53\x1a\x3b\x88\xf2\xaa\xb9\x29\x23\x29\xff\x7c\xda\x8d\x6f\xc9\x1d\x97\x78\x30\x87\xde\xcf\xd4\xe1\xfe\x77\xa4\x9d\x75\xa8\xef\x1c\xba\x8f\x1a\xb4\xde\x8d\xd0\x78\xff\x31\xee\x74\xdf\x73\xb9\xf1\x62\x49\xf7\x9f\x89\xc6\x4e\xfe\x2b\x68\xc7\x39\x05\x8c\x9b\x8f\x48\xe6\xac\xbb\xf1\xcc\x75\xb4\x12\x77\xda\x19\x58\xd4\xb8\x00\x68\xa3\x17\xd8\xac\x5b\x9c\xc2\xe4\x96\x4b\x03\x47\x8c\xea\x24\xff\x4d\xcf\x25\x70\x83\xfd\x31\x39\xb3\x66\x06\x81\x2e\xde\x71\x80\xee\x8b\x40\x9d\xa0\x22\x40\xe7\xe8\x3a\xc4\x3c\x02\x1a\x6d\x09\x18\x90\xba\x0c\xd0\x1a\xee\x3f\xf1\xbc\x3b\xd0\xf0\x8d\x5f\x93\xca\xa5\x40\x83\x43\xbe\x66\xef\xdc\x01\x8d\xe9\x3e\x8a\xe2\x3a\xa8\xf2\x6d\x39\x71\x22\x55\x0d\x17\x53\x7e\x5e\xad\xef\x22\xe2\xdd\xaa\x0e\x59\x30\x85\x6c\xd7\x79\xcd\x45\xab\x28\xb8\x90\xce\x7f\xee\xe4\x31\x84\x3f\x9c\xf6\xb2\x8a\xe3\xf9\x3f\x8d\xe2\xda\x61\x4d\x46\x17\xf7\x4d\x98\x43\x68\x7b\xb8\xad\x1b\x55\x5b\x0f\xf2\x5f\x44\xf9\x6b\xff\x6b\x8b\x09\xbf\x58\x39\x62\x39\xb5\x93\xe7\xd4\xd5\x5c\x0f\xa8\xca\x87\xd0\xa6\xe9\x23\xfd\x49\xf7\x7c\x22\xd6\x53\x9e\x7b\x90\xcb\x26\xe2\x15\x75\x56\xdf\x4a\xe3\xad\x71\xfc\xf6\x03\x2a\x9d\x00\xad\x8e\x3b\x1a\xb4\xeb\x09\x68\x0c\xde\xa1\x65\xb6\x1f\x50\x79\xb9\xfd\xf8\x54\x37\x40\xb1\xd1\xf6\x30\xf7\x19\x80\x7c\xcf\xed\x2a\x81\xb4\x97\xd9\xd6\x61\x37\xdd\x87\x0f\xe9\x72\x82\x2a\xa6\x6f\x35\xcc\x27\x64\x21\xe8\xcf\x9b\x34\xd2\xb6\x7c\x78\x4d\x4f\xb4\xb9\x82\xef\x75\xaf\x93\xee\xb9\xaf\xad\x60\xbb\xaa\x90\xed\x0a\x49\x0f\x62\xa9\xc4\x87\xf0\xa4\xf6\x3a\x53\x35\xd9\x8a\xe3\xff\x4c\xba\xa7\x79\x64\x91\x0b\xa1\x84\xd1\x15\xcc\xf3\x0a\x17\x16\x51\x7f\x06\xfd\x5c\x4c\x28\xe2\xba\xa0\x15\x54\x65\xdf\x27\xcc\x87\x56\xd8\x25\x6d\x99\x68\x3d\x5f\x77\x1d\xcd\x0f\xfb\xe8\x0d\x84\xd3\xd8\x0c\x0e\xa2\xbc\xff\xa8\x98\x10\x8a\x93\xbd\xca\x42\x09\xb5\x6f\x93\xb0\x93\xe2\x89\x72\x49\xd4\x10\x5e\xa1\xa2\xce\xea\x51\xa4\x8d\x9a\xd6\x9b\x74\x1e\xa2\x26\x59\x11\xf2\xb3\xe7\xd4\x7c\xc2\xaf\x76\x07\xf8\x11\x32\xb2\x3b\x83\x95\x46\x76\x85\x31\xee\x1f\x11\x96\x4d\x38\xc6\xce\x14\xde\xd3\xef\xf4\x7d\x46\x5c\xef\x70\x4b\xc6\x6d\xb6\xcb\xb3\x9f\x5b\x24\x5c\x77\x83\x84\x57\x04\xdc\xae\xdb\x3e\xab\x09\xef\x4c\xaa\x72\xa0\xe7\x8d\x8f\x72\x0d\xe6\xf5\x8f\xe7\x75\x44\xca\x12\x66\x4b\x14\xb2\x1e\xce\xc6\x1a\x1f\x8a\x17\x3e\x65\xfe\xc4\x5b\xf0\x4e\xe1\x7a\x41\x0b\xb6\x73\xfd\x18\xe7\x76\xc1\xd4\x1b\xb6\xe5\x21\xb4\x7f\x9a\x68\xc7\xba\x19\x83\x57\x70\xdd\x20\xa3\x1e\x7b\x68\xbf\xa5\xf7\x2e\x86\x1b\x6e\x5a\x9c\x84\x5f\x1c\xac\x66\xfe\xc3\xc1\xcc\x5e\xc4\xb8\x8b\xab\x9a\x48\xed\x10\x97\xc4\x0a\x54\x71\x49\x6b\xb2\xd9\x86\x52\x24\x8b\x75\x3d\x4c\xed\xb3\x3f\x80\x11\xf4\xfd\x33\xca\xa8\x7d\xa2\xad\x1f\xd1\x19\x78\xdf\xfb\x4f\x34\x03\xa3\xf4\xd8\xcf\x9d\x4f\xd8\x6e\x97\x70\xfe\x10\x89\x07\xf2\x4b\x17\xc5\x9d\xcf\xed\x8c\x9a\xed\xb7\x5c\xcc\xad\x2f\xe9\x00\xed\x98\xb0\x86\xe6\xc9\xa6\x34\x7f\x7a\xdf\x37\x72\x3d\xe9\xe4\xac\x88\x65\xd4\xd9\xd3\x34\x84\xf6\x53\xae\xeb\xb6\x13\xde\x3d\xeb\x5c\x38\xad\xb3\xd6\xe7\x19\xae\x1d\xbd\x7a\x0f\xad\x1f\xfd\xc7\x44\xd3\xbc\xeb\x3c\x27\x96\x9e\x56\x17\x87\xa5\x3a\x28\xc7\xa5\x13\xec\xf1\xb2\xe6\x0f\xf9\xb5\x29\xf3\x5f\x6a\x26\xd0\x8a\x75\xec\x8b\x33\xad\x4c\xc7\x62\x57\x10\xd3\xe4\x98\x5c\x08\xb5\x68\xc2\xc2\x58\xc2\xfb\x8f\xee\x3f\x4d\x4f\x12\x9f\x7d\x91\x46\xdc\x11\x33\xe6\x07\x1d\xf1\x7e\x47\xb8\xf0\x21\xe9\x3e\xf7\x7e\xa9\x1e\xc8\x5e\x69\x3c\xec\x92\xee\xb7\x87\x2b\x49\xed\x43\xaf\x0f\x28\x2c\xa1\xb8\xbf\xab\x78\x15\xb5\xfe\x8e\x56\x6b\x69\x5e\x6f\x89\x63\x7d\x94\x80\x95\x8c\x1e\xad\x9a\x15\x4c\xb7\xa9\x97\x8e\x08\xa5\xd6\x76\xd3\xdf\x49\xef\x3b\xda\xed\xa2\xfb\xc9\xb6\x55\x7b\xa8\xb7\x26\x1a\xc4\xd0\xf8\x1a\x6a\x1a\x4b\x74\x8e\xde\x38\x42\x81\xb3\xbd\x56\x02\x8d\x0f\x6d\x9d\x24\xe9\x9e\x7b\xea\x0b\xb6\xa7\xca\x9a\x13\x22\x76\x6a\xba\x31\x8d\x87\x53\x96\x63\xe9\x09\x4e\xed\x9b\x4d\x0c\xbd\x53\x33\x96\x11\x92\x98\xba\x70\x0b\x31\x4a\x52\x2a\xa2\x49\xfb\x31\x45\x3f\x99\x99\x9d\x15\xe7\x09\x41\x4f\xaa\xba\x49\xed\x72\x32\xb1\x9a\x18\x29\x27\xfb\xf3\x99\x21\x21\x96\xfd\x3d\x2c\xd5\x39\x88\x95\xce\x54\xbf\x78\x31\xd4\x3e\x51\x66\x5c\x6d\x24\x3c\x60\x1d\x45\x9b\x60\xcb\x8d\xf4\xbc\x81\x8e\xc1\xd4\x5f\x3e\x0e\xec\xb7\xf7\xb3\x9d\x14\x37\xdc\xcf\xed\x22\x3e\x8b\xeb\x78\x46\xd5\x66\x79\xc4\x10\x2f\x66\x0a\x78\x9c\x8f\xf5\x38\x42\xe8\xbb\x59\x13\xe6\x85\xf4\x74\x65\x3e\x8c\xbe\x3f\x3f\xb5\x46\xc0\xe9\x9f\xec\x7f\xa6\x74\x63\x21\xbb\xb8\x29\xb5\x4c\xb6\x15\x57\x76\xcb\x8a\x19\x45\xf1\x30\xbb\x11\xf3\x1f\xb2\xbe\x2e\x5e\xc1\xef\xf3\x0c\xcc\xac\x61\xe6\x55\x66\x4d\x12\x31\x1c\x33\x82\xf3\x69\xc7\x92\x51\x70\x83\x96\xb8\x0c\xbd\x97\xd4\xa3\x67\x07\x7c\xe3\x76\x34\x14\xfe\x0f\xbc\x98\x9d\x29\x5c\x85\x27\xc4\x7b\x0b\xa1\x82\x1b\x94\x59\x0f\xc8\x37\x32\x9c\xa3\x6b\xf0\x6e\x9a\x0f\x5e\x7d\xf6\xd2\xf9\x72\xde\xa3\xfd\xc4\x52\x73\x88\x8c\x25\x9e\xbd\xdd\x04\xee\x6f\xcb\xa2\x63\xd4\x1e\x23\xce\x26\x12\x2f\xb0\xdf\xe1\x14\x62\xb9\x18\x6e\x3e\x45\xdf\xd3\x72\x78\x3a\xb5\xa3\x9a\x7e\x8e\xc4\x7f\x28\x90\x32\x19\x45\x23\x9a\xd0\x8c\x29\x6c\x6c\x44\x0a\x22\x05\xf7\x47\xd0\x4e\xa4\xe0\xfd\x74\x7a\xb2\xc2\xfe\x8b\x68\x5d\x28\xa8\x62\xc5\xaa\xc2\x30\xc6\xfd\x0b\x4d\x8f\xd1\x91\xae\x20\x29\x9b\xf8\x1e\xf9\x91\xe5\xf4\x4b\xf9\x6e\x8f\x89\x99\x91\xf3\x85\xcf\x8c\xe7\xf4\x79\xfd\x48\x97\xf8\x52\x69\xe9\x42\x1d\x5e\xcc\x71\x41\xb4\xdb\xc3\xb6\xd1\xb7\x6f\x8c\x08\xa5\x5e\xf0\x4b\xe0\x5f\x59\x15\xbc\x97\xf6\x05\x8b\x7f\x32\x0f\x68\xe1\xd6\x38\x62\x29\xcd\x79\x1e\x4f\x27\xd1\x59\xdd\x8f\xb5\xe1\x71\x90\xc8\xf7\xfd\xaf\xa6\x90\x0e\xc6\x50\xb0\x7e\x42\xef\xb0\x33\x64\xbb\x78\x70\x35\x86\xe6\x13\x72\x08\x8d\x55\x0e\x2a\x1a\xc1\xfe\x97\x48\x3c\xb1\xd2\x9e\xba\xb4\xf3\x2a\x79\xd6\x6d\x2c\xbd\xb6\x1e\x4e\x95\x59\x4a\x87\xd9\xd2\x4e\xb4\xd4\x67\x01\x8d\x83\x4b\xf1\x1c\x60\x2f\x99\x70\x45\xa3\xd2\xce\x47\x68\x5c\x94\xfa\x67\x9c\x62\xcb\xca\x23\x25\xfa\xac\x34\x71\x7e\xe9\x2b\xfa\x85\xf3\x6b\x39\xb7\x5a\x20\xd5\x3f\xc9\x95\xf4\x50\x32\x9e\x09\xbf\xf1\x62\x82\x6a\x22\x69\x1d\x5c\x77\x60\x0f\xcd\xce\xff\xc6\x03\x9a\x77\x84\xf9\x01\x8e\xe0\xf9\x6d\xd7\x92\xc7\xf9\x24\x49\x9d\x64\xcc\xb3\xb3\x34\xaa\xcd\x3c\x78\xbc\x9b\x3c\xca\xa5\xf3\x45\xc7\x2f\x5c\x4f\xa5\xe9\xa7\xf3\xc4\xde\x52\x5a\x58\x2a\xdd\x68\xb9\xe2\xc1\xf6\x9a\xbf\x0e\xe9\x3a\x5c\xd5\xea\x42\xef\x5c\xb9\x6b\x4e\xfd\x7f\x2d\x72\x32\x7d\xc3\x35\x4f\xae\x9b\x74\x6d\x13\x33\x75\xaf\x59\x6f\xa7\x93\xcd\xb5\xce\x07\xab\xd9\x9e\xa6\x11\x7a\xd5\xf3\x3c\xb5\x4f\x79\xd5\x4d\x1a\xa1\x57\x66\x54\x53\x84\x2a\x37\xfe\xca\xba\x1f\xb2\xfa\x49\x57\xd9\x16\xdc\x17\x7e\xe3\x0b\x6d\x74\xda\x37\xec\x77\xff\x57\x9a\xb3\x0a\x8d\xd7\x75\x9e\xdf\x6e\x1f\xd8\x6f\x97\x4f\xc9\x94\x81\x9b\xe5\xc1\xe3\x7c\x9a\x76\x3a\xed\x87\x26\x7c\x60\xbf\x47\x8e\x3c\x47\xfb\xab\x01\x23\xf3\x09\x65\x37\xde\xc7\x3c\x81\xf6\xd5\xa5\x34\x0f\x9a\xe6\x95\x13\x3b\x45\x49\x47\x96\xc1\xbb\x25\xad\x9b\x77\x2a\xb5\xc9\xbf\xca\xdc\xce\x14\xe7\x2b\xcd\xcc\x68\x3c\x54\x66\x5a\x53\xbb\x54\x3a\xbb\xd0\x8e\xa3\xf2\xf2\x4a\x62\xec\xde\x9d\xbb\x35\x9e\x3f\xc7\xba\x5a\x95\x12\x63\xe3\xae\x42\xbe\x17\x7f\x2f\xff\xc2\xed\xe2\xe7\x33\xf8\xf5\x27\xca\x2d\xfe\xd2\x43\xd1\x62\x7b\x49\xd2\x11\xba\x48\xfa\x49\x01\xef\x0e\x11\xcf\x65\xcd\x90\xa3\xc4\x0f\xf2\x9e\x77\x7c\x2c\x8f\x03\xd6\x7f\x9a\xef\x91\x46\x4f\xe3\xd4\x3e\x9d\x74\x04\xa7\x0f\x64\xbe\xdf\x14\xe4\xd0\x2a\x37\x21\xb4\x90\x32\x78\xc3\x8d\xd9\xef\x7e\x73\x2e\xd2\xf7\xf4\x68\x77\x89\x7e\xa5\x9d\xf4\x54\x8d\x4d\xb9\x8e\x8e\xfc\x63\xae\x27\x03\x3c\x28\x67\x5b\x75\x4e\x93\xf8\x2f\x55\x7e\x1d\x88\x91\xf8\x38\x69\x00\xc5\xc5\xc7\xc6\x13\x73\xd9\x72\x8a\xec\xf1\xdd\x65\xf2\xfc\x39\x5e\xb9\x1f\x1b\x73\x85\xb3\xc7\xbd\x92\x68\xfc\x54\x39\xe5\x12\xdf\xf6\x51\xda\x15\x8a\xaf\x0f\x8f\x3e\x22\x06\xca\x83\x3d\x6f\xa9\x3d\xee\x5b\xff\x45\x3d\x56\xb9\x94\xfd\xbf\xd9\xe9\xf7\x76\x59\xeb\x79\x8c\xfa\x6f\xf9\xfe\x44\xca\x33\x78\x1d\x3a\x45\x4f\xb5\xa0\xea\x0c\xcd\x13\x57\x9d\x2c\xd2\x29\xb5\xaf\x38\xc7\xbc\xb0\x8b\x85\xe4\xbf\x55\x18\xcf\xf3\x71\x0f\x38\x33\x39\xe4\x0b\xfb\xdd\xb7\x71\x39\xe9\x8b\x18\x15\xb2\xdf\x06\xea\xec\x77\x63\xab\xca\x1f\xdc\x0e\xf7\xa5\x8c\xc7\x33\x49\x17\xe4\x95\x3e\xeb\xc3\xbc\xee\xda\x96\x56\x92\xea\xfb\x7d\x28\x6e\x56\x0b\x5c\x47\xab\x7a\x8c\x3d\xc5\x89\xea\x30\x5e\x37\x5e\x77\x5e\x4f\x3b\x93\x37\x23\x76\x13\x43\xa9\x5a\xf7\x18\x29\xa2\xbe\xd2\xc8\xa4\x5c\xfa\xab\x0a\x7e\x92\x97\x2e\xf7\xd2\xf9\xfb\x6b\x48\xb9\xec\xf9\xcd\xaf\xf4\x3d\x4f\xc2\x7e\xd2\xdf\x3f\xb4\xe1\x76\xa8\xf4\x14\xea\xf1\x1f\x4c\x24\x2c\xf0\x97\xee\x45\x20\xeb\x5c\xf4\x34\x65\x6b\x32\x0f\xf8\xe7\x4f\xa0\xcf\x28\xe0\xaf\xeb\xc0\x40\x5d\xc6\xfb\x87\x44\xd6\xe2\xdc\xcf\xcd\x80\x89\x29\x7c\xaf\x79\x4a\x0a\xf0\xe0\x01\xe0\x60\x02\x54\xb6\xe4\xba\x28\x37\x26\x03\x8b\x76\x00\x57\xa7\x02\xab\x76\x88\xb3\x57\x3c\x09\x00\x97\xed\x80\x90\x12\xa0\x34\x09\xd8\xa3\x0d\x94\xde\x00\xc4\xc8\x74\xe9\x00\x70\x2a\x14\x28\x9d\x02\xe4\xaa\x01\xa5\xdf\x81\x72\x73\xe0\x52\x10\xf0\x40\x93\xf9\x00\x7f\x2e\xad\xd5\xc1\x28\x92\xea\x1a\x9c\x93\xb8\x1c\xe9\x9f\x24\xdc\x4f\xc2\x6a\x53\x9e\xb1\x3d\x61\x55\x17\xff\x16\x7e\xe7\x7f\x24\xd4\xe5\x01\x74\xcb\x60\x6b\xf8\xb4\x96\xf7\xf0\x63\x0d\xd0\xa3\x0a\xf8\xfc\x16\xe8\x33\x17\x78\x2b\x00\xfd\x9b\x31\xbe\x37\xcc\x0d\x78\xf6\x0c\x18\xdf\x9f\xf1\xad\x49\xd7\x81\x3f\x7c\x01\xf1\xc4\x7a\xf3\x36\xe0\x52\x0d\x54\xbc\x06\xdc\xed\x18\xef\x5e\x6e\x0c\x94\xdd\x06\x02\x07\x72\xbe\x3b\x58\x60\xdc\x53\x5c\xb1\x2e\x36\x03\x0e\xf5\x02\x2e\x94\x01\x29\xfb\x18\xc3\xc9\x4b\x06\x4a\xbc\x81\x0a\x45\xa0\xe4\x3e\xf0\xd0\x9c\xf1\xf2\x8f\x89\xc0\x45\x09\xa3\x97\xf1\x60\x32\x25\xfc\x46\xc6\x7f\x48\x5e\xf6\xbf\xf1\x7f\xe1\x77\xfe\xc7\xff\xd0\xbf\xf8\x27\x1a\xe8\xfc\x89\xeb\x7b\x74\xad\x00\xfe\x34\x07\x8c\x2b\x80\x1a\x6d\x1e\x4f\xcf\xe2\x01\xb3\x86\xc0\x13\x79\x60\xa4\x1f\x70\x3f\x06\xb0\xb0\xe7\xfc\xfe\x34\x47\xc6\x37\x66\xdb\x00\xe5\x01\x80\x5b\x05\x50\x9a\x0e\x78\xa7\x31\xde\xef\x9f\xc2\x7e\x8a\xed\x50\xac\xcd\x3a\x10\xc5\x57\x81\x43\x36\x7c\xdf\x3d\x65\x0a\x50\x7c\x12\xc8\x8b\x66\x3e\xc0\x95\x06\xc0\xf9\x31\x9c\x43\xbe\xb8\x15\xf8\x73\x1f\x70\x7e\xa3\x34\x0e\x24\x1c\xf3\x4c\xd0\x7f\xc1\xff\xf3\xea\xfa\xff\x6f\xfc\x07\x19\xdf\x43\xa6\x77\xf1\xbb\xfe\xc5\x3f\xe6\x40\x9b\x64\xe0\xdb\x57\xa0\xf3\x33\xe0\x5d\x16\xb7\xc7\x1b\x4d\xc0\x44\x81\xf1\xfe\xfe\x33\xf8\x7e\xf7\xf0\x06\x40\xe5\x37\x60\x42\x1f\xe0\x86\xb9\x18\x53\xf9\x7e\xff\x2c\x0f\xa0\xf4\x01\x30\xcf\x0a\x28\x69\xc6\xf7\xfd\xcf\x1b\x01\x7e\x43\x81\x82\x4a\x60\xcb\x25\xa0\xc0\x5e\x3c\xe3\x01\x05\xf3\x80\x83\xcf\x81\xbc\x1c\xe0\xe4\x09\xc6\x85\xf2\xac\x81\xfc\x4e\x7c\x57\xbc\x30\x96\xe7\x5e\x91\x23\xf0\xb1\x57\x6d\xfd\x83\xf4\xdd\x5c\x27\xe5\xbf\xf2\x1f\x86\xd7\xc3\xc1\x7f\xe3\x3f\xc8\xfc\xff\xc5\xf7\x90\x78\x00\xbf\xeb\x5f\xfc\xec\x08\x34\xff\x56\x5b\xdf\x41\xa6\x73\xf0\x52\x9c\x2f\x93\x78\x1e\x18\x2f\x61\x9c\x73\xe0\x60\xe0\xf6\x73\x60\xf4\x45\xe0\xda\x4d\xc0\xea\x13\x70\x29\x04\x98\x1e\x0c\x5c\xf8\x08\xcc\x71\x02\x8a\xce\x00\x5e\xba\x40\x51\x0b\x60\xad\x11\x90\x77\x12\xd8\x5c\x06\xe4\x8e\x07\x76\xfe\x60\x9d\x1f\x71\xa7\x7e\xae\x02\x48\x6e\xc5\xb8\x7f\xbe\x1b\x90\x67\x04\x5c\x15\xff\xfd\x03\xf0\xd8\x00\xc8\x1d\x01\xfc\xf9\xe6\xb7\x3a\x20\xed\xea\xce\x7f\x99\xff\xf5\xf9\x0f\xd1\x7f\xd6\xc5\x83\xc9\x6f\x29\x96\x34\x1d\x5a\x97\x07\xa0\xbd\x84\xdb\x56\x5b\x8f\xf1\x6e\xf1\x58\x27\xe3\x3d\x88\xed\xd0\xca\x03\x78\xee\x08\x74\x2c\xac\xc5\xfb\xef\x74\x02\x7a\x57\x03\x37\x86\x01\x43\x7b\x01\x15\x07\x18\xe7\xbe\x58\xce\xf8\xae\xd8\x7f\xce\xc6\xcc\x5f\x10\xb7\x0b\x39\x3e\xc0\xaa\x5c\xe0\xdc\xdf\xc0\xa6\x4b\x8c\x03\xee\xcc\x05\xc4\x55\x2a\xce\x58\x3c\x45\x70\x6d\x87\x8c\xa7\xac\x09\x90\x15\xc3\x73\x2c\xeb\x35\xf0\x44\x8f\x71\xe3\x6f\x1a\xc0\x19\xc9\x1f\x99\xfe\xcf\x2f\xff\x35\xeb\xf6\xbb\x8c\xff\xb0\x27\xad\x2e\x1e\x2e\xfc\x0b\xff\x43\xc6\x03\x90\xe9\x5e\x88\xf6\xf3\x03\x40\xc3\x17\xf8\x10\x0a\x68\xe6\x02\xaf\x34\x01\xdd\x44\xa0\x6a\x05\xe3\xdb\x7f\xbc\x63\x9e\xd0\xad\xa7\x80\xf1\x58\xe0\xca\x01\x60\xe0\x1e\xa0\xc4\x92\xf5\x94\xce\xbb\x03\x93\x97\x33\xee\xe7\xb0\x1d\xc8\x4a\x07\xdc\xae\x03\xe9\x8a\xc0\xb2\xdb\x8c\x7f\x8b\x27\x9d\x33\x49\x80\x78\xb2\x3b\x63\x00\xc4\xba\x01\xe2\xae\x2d\xa9\x86\xf1\xff\x9c\x1b\xc0\xd9\x93\x7c\x97\x5e\x8c\x7f\x55\x6e\x8c\x9b\x7e\x2f\x00\x52\xbb\xd7\x9d\xff\x07\x15\xeb\xf6\xfb\x6e\xe9\xde\x7f\xc4\xc3\x7a\x78\xb8\x69\x6d\x3b\xc8\xfc\xae\xc3\xfb\xa8\xc7\x7b\xf8\x28\xfe\x7b\x6c\xad\xde\xc3\x8b\xc3\x40\x03\x2d\x9e\x0f\xba\x29\xc0\x9d\xe9\x40\x9b\x3e\xac\x55\x21\xc6\x8d\xcb\xf6\x40\xaf\xef\xc0\xf9\x33\xc0\x50\x03\x40\xdc\xeb\x59\xac\x01\x72\xfe\x02\x66\xb6\x02\x32\x22\x81\x79\x79\xc0\xe9\x1d\x80\xb8\x0d\x3e\x65\x04\xac\xd3\x64\x4d\x98\x1d\x1e\xe2\x29\x88\xf9\x83\x29\xdd\x59\x0f\x43\x6c\x8b\x1c\x43\x20\xe5\x13\x73\x29\x4f\x8e\x03\x1e\xb7\x10\x4f\xdb\xc0\xa7\xbf\x81\x63\xfe\x75\xfb\x7f\xdf\x48\xb6\xbb\x5c\xff\xdd\x6f\x19\xff\x21\xd8\xba\xb6\x1d\xe4\x3f\xfc\x0f\xde\x83\xc4\x06\xaf\xcf\x7b\x78\x56\x20\xee\x89\x98\x07\xd6\x40\xd2\x3b\x10\xcf\xcf\xe2\x3c\x68\x37\x87\x39\x5d\x3d\x9e\xb1\xa6\xc9\x80\x42\xe0\xdc\x06\x60\xec\x59\x20\xbd\x0d\x30\xd5\x8b\x79\x1d\x2e\xa6\x40\xb2\x2e\x20\xee\x8f\x12\xdf\x71\xbc\x4c\x74\x16\xcf\x7e\xc0\xb1\xce\xc0\xbe\x62\x20\xc1\x12\x38\x51\xc5\xeb\x5c\x8e\x3f\x70\xcc\x07\xb8\xd6\x15\x48\xa8\xe1\x79\x21\x9e\x7a\xbe\xfe\x36\xff\x65\xfc\x17\xd9\x78\xdf\x91\x57\xd7\xef\x2d\x15\xff\xce\x07\xf8\xff\xf1\x5f\xbe\xe4\xb2\x7d\x7b\x8d\xad\xac\xde\xc7\xfd\xdd\x6c\x65\xa7\x84\x0a\x79\x40\x3d\x0e\x28\x35\x06\x9a\x27\xb3\xff\x62\xdc\x38\x17\x00\x98\x56\xf3\xb8\x1f\x5e\x05\xa4\x5e\x61\x5d\xa9\xc4\x60\xc0\x21\x9a\xfd\x73\x4f\x01\x8e\x36\x07\x7c\xbc\x58\xd7\x22\x38\x0a\x38\x14\x00\xec\xd3\x05\x0e\xc7\x02\x49\xb9\xc0\xc1\x76\x1c\x33\x0f\x46\x02\x57\x15\x80\xb8\xcd\xc0\x93\xd7\x40\xac\x1d\xf0\x75\x05\xb0\x57\x1a\xff\x11\xd2\xda\x17\x22\xd5\x89\x91\xf1\x5d\xea\xf3\x3e\xfc\xfa\xb3\x5d\xdb\xf6\xdf\xdb\x41\x86\x77\xca\xf8\x2f\xef\xd7\xb3\x7d\x29\xbd\xfe\x85\x7b\x3f\x60\x7b\x5d\x7a\x5d\x2a\xee\xbe\x17\x02\x85\xed\x80\x86\x6f\x80\x73\xcf\x80\x96\x73\x80\x74\x2d\xc0\xd0\x02\x48\x3d\x09\x0c\xb2\x02\x12\xf3\x80\xf1\x26\xac\x21\x37\xc3\x0c\x38\xd2\x03\x58\x10\x0c\xc4\xe9\x71\xfd\xa4\x03\xb6\x40\x50\x24\x10\x63\x01\x44\xd5\x70\x6d\xb1\x13\x76\xc0\xde\x18\x8e\x89\x51\x83\x78\x0f\x22\xfe\xdb\x93\x19\xbc\xf7\xfc\x1a\x56\x3b\xee\xb7\x9a\xd6\xf3\xdb\x4d\xf2\x77\x39\x5b\x19\xef\x43\xc6\x7f\xf0\x3e\xf0\xef\xed\xf0\x6d\x0e\xdb\x77\x8f\xd8\xca\x74\x3f\x64\xfe\xff\x01\xc9\x7f\x29\xbb\x58\x2e\x65\xd9\x8a\x4f\xb0\xcd\xd9\x06\xc8\x6b\x31\xb7\x4b\xdb\x13\x48\x59\x0e\x18\x74\xe6\xda\x60\xa6\x83\x81\xf8\x39\xc0\x48\x03\x20\x2e\x89\xf7\xdd\x31\x2b\x00\xd7\x07\xc0\xde\xbf\x80\x15\xc1\xc0\x1e\x45\x60\x73\x21\xb0\x6b\x17\x10\xb5\x0b\x88\xf0\x63\x2e\x50\xb8\x09\x90\x7d\x0d\x08\x3b\x04\x94\xbb\x71\x2c\x7d\xac\x06\x6c\xaf\x02\xbe\x4c\x04\x82\x4a\xeb\x8e\x73\x19\xdf\x45\xc6\xfb\xf0\x96\xd6\x13\x2f\x69\x1d\x59\x24\xed\xb3\xdc\x51\xb7\x1d\xea\xf3\x7f\xde\x6a\xb2\x7d\x2c\xcd\x87\x7b\x4e\x6c\x6f\xbe\x91\xfc\x97\xe6\xc3\x05\x86\x7b\x90\x6f\xc1\x36\x5d\xca\xb2\x24\xb7\x03\x94\x02\x81\x63\xf2\x40\x53\x03\xe0\xd0\x77\xa0\x6b\x20\x6b\x01\x0d\x7a\x0c\xec\xfd\x0e\x58\x3e\x03\x76\x2d\x95\x9b\xe3\x14\x0b\x84\x57\xca\x47\x78\xb7\x15\xe7\xb3\x82\xc3\xc6\x35\x40\xc8\x1f\x0a\x09\xbb\x75\x81\xe0\x2e\x0a\x6e\x09\xa6\xc0\x96\xb1\x0a\xc8\x3c\x0c\x6c\x0a\x93\x1f\x7f\xd9\x18\xd8\x70\x41\xee\xca\x83\x35\xc0\xfa\xa1\x72\xc1\x7f\xe6\x01\xfe\x1b\xf1\x81\xfc\x96\xf8\x60\x4b\xbe\x23\xe0\x77\x7f\x17\x48\xba\x41\x6e\x5a\x6c\x5d\xa5\xf1\xe2\x14\x58\xb7\x1d\xfe\x1b\xff\xe7\x41\x24\xdb\xdb\x7d\xeb\xfa\x7f\xb1\x25\xdb\xbc\x67\x20\x9c\x3f\x5d\x4b\x81\xb2\xe8\xc9\xe5\x4a\x94\x4d\x8b\xf7\x52\xa2\xd3\xde\xfe\x00\xd5\x7b\x0d\x5e\x02\x7b\x06\x36\x78\xd9\xb6\x0a\x08\x8f\x69\xd4\xbc\x8f\x01\xb0\x2d\x44\x67\xea\xd8\x1a\x20\x68\x7c\xe3\x4b\xb3\xe6\x03\x1b\xed\x74\x63\x3d\xad\x80\x75\x6f\x9b\x38\x04\xbc\x00\xfc\x7e\x36\x99\x1c\xfe\x37\xb0\x76\x55\x13\xe7\xc3\x5b\x80\x35\x53\x74\x6f\x9c\x6d\x01\xac\x0a\xd7\x1d\x78\xf1\x22\xb0\xe2\x6d\x63\xf7\xca\x27\xc0\xf2\x70\x9d\xf2\xb7\x61\x80\xb7\xb3\x36\xe1\x36\x1e\x97\xb5\xa8\xae\xfd\x3c\xf3\x86\xef\x45\xeb\x62\xd8\x80\xee\x73\x3a\xd6\xa8\x59\x89\x76\xd6\x2b\xd5\xb1\xa2\x9d\xd9\x4c\x85\x70\x1c\xbb\xf9\x4a\xf4\x39\x19\xff\xa5\xbe\xff\xf7\x7d\xfe\xdd\xff\xf3\x7a\xaa\x84\x6b\x9d\xd3\x6f\x40\x38\xc7\xe9\xde\x8d\x29\xef\x98\xe8\xd5\x94\xf2\x7b\x07\x73\xf5\x48\x37\x20\xea\x73\x0b\xca\x0a\x85\x3a\xb7\x6a\xa7\xf0\x09\x08\x1e\xdc\xe6\x91\x9e\x23\x10\x78\xbf\xad\x4d\xb7\x87\x0a\xe7\x7d\x5b\x18\x0c\x1a\xaa\xa8\xd4\x7e\x65\x8d\xc1\x81\xc9\x11\xca\xde\xde\xce\x06\xfb\xe6\x66\xab\x1c\xf6\x9a\x6b\x30\x62\x55\x99\x6a\xac\xfb\x83\xb6\xe7\xb7\x9e\x50\x73\x5a\xa0\xdd\x56\x37\xe6\xb8\x5a\xf6\xbc\xcc\x36\x5e\xc9\xb1\x6a\xb7\x5c\x3f\xe8\xdf\x2d\xb8\xac\x76\x60\xce\x61\xfd\x69\x37\x07\xa9\x69\xbb\x14\xe8\x2b\xbd\x8c\x53\xed\xe4\x22\xa7\x6f\xf3\xcf\x74\xe5\xbf\x1d\x7c\x5b\x4f\x12\x04\xa5\xc2\xe9\x69\xad\xe6\x0b\x82\xe2\x85\x29\x87\x5a\x45\x0a\x82\x62\xc4\x64\x5b\xbd\x8b\x82\x20\xf7\xda\x26\xb6\xc9\x1a\xd1\x6f\xab\x38\x5d\xc2\xf3\x2c\x15\x1b\x91\x4e\xe9\xfb\x0b\xec\xdf\x4b\xfb\xba\xfe\xdf\xf4\x62\xbd\x9b\xcb\xc9\x6a\x7c\x2b\xb0\x4a\x9b\x6c\xd6\x90\x16\x94\x77\x3a\xb5\xa5\x0d\xe1\xe4\x09\xb7\x3a\x12\x0f\x22\x36\xaf\x0b\xe5\xb1\x77\xcf\xe9\x46\x79\x86\x6d\x35\xac\xc2\xbc\x5e\xaf\x27\xe1\x1b\x3e\x93\x4c\x9e\x36\xd2\x01\xbc\x87\x98\xe4\xb7\xb7\x50\x9c\xee\xfe\xc8\xc4\xb0\xdf\x28\x55\xd7\x79\x76\x26\xe6\x13\xac\xd5\xad\x9c\xe7\x18\x47\x3b\x3c\xd0\xf8\x68\xff\xb6\x67\xf5\x12\xbf\x86\x6b\x66\x68\xf5\xec\xb3\xe1\x81\x66\x89\xad\xd0\xc3\x72\xf7\x66\xad\x63\x53\x36\x18\x59\x1f\x3b\xd5\x48\xd7\xc6\xa1\xbb\xd7\x39\xc5\x46\x4d\xac\x85\x6e\x57\x2b\x02\xb4\x72\xad\x1e\x75\xf3\x7a\x7c\x41\xf3\x9e\xd5\xc9\x6e\xb3\xbe\xc9\x35\x1c\x63\xa1\x6c\xe8\x2b\x08\x1a\x7e\xe3\xcc\x3b\xd7\x08\x82\xda\xc1\x31\x3b\x3b\x99\x0a\x82\x6a\xf8\xc8\x3e\xed\xdf\x09\x82\x4a\xfb\xe1\x79\xed\x2d\x05\x41\x39\xcd\xfc\x98\x81\xbc\x20\x28\xcd\x37\xff\xdc\xe6\x9b\x20\x28\x7e\x93\xf1\x5f\x64\x71\xf0\xe6\x24\x55\xda\x21\x5c\xf2\x6a\x44\xf8\x53\xfe\x0a\x7d\xe2\x7d\x9c\x0d\x6c\x4f\x79\xdc\x64\x0d\x43\xc2\xad\x64\xfc\x97\xfd\x42\x3f\xba\xb0\x1c\xf1\xa5\x3f\x65\x7d\x42\xe4\x07\x51\xf6\x78\x9d\xcb\x10\x8a\xb0\x2b\x02\x86\x12\x3a\xe1\x6e\x3a\x7c\xa8\xd2\x1b\xc0\x75\xdd\x08\xc7\x96\xfb\xe5\xf5\xec\x87\x0c\x6f\xdd\x73\x89\xca\x81\xa9\xd1\x43\xff\x1a\x7e\xbf\xc1\x02\xab\xd7\x43\xa7\x4e\xeb\xa4\x19\x31\xc1\xca\xbc\xd7\x42\xb3\x46\x81\x63\xfa\x0f\xe9\xe3\xd7\x43\x67\xc8\x88\x5e\x83\x95\xc3\x6c\x1b\x5b\x0c\x35\x37\x6b\x78\x58\x57\xb7\xc9\x90\xe6\x03\xcf\x9d\xdd\xac\xdb\xdd\x6c\xee\xc0\x1e\xa5\x1d\x74\x35\x07\x79\x0d\x58\x77\x7f\x55\xe3\x6e\x83\x26\x0c\x08\xfe\x50\xa1\x9d\x3b\x48\xa5\xff\x5e\x41\xd0\x5a\xd2\x5f\xab\x4f\x94\x20\x34\x9c\xda\xf7\xb8\x69\x8e\x20\x68\x14\xf6\x8a\x34\x31\x11\x04\xf5\xed\x26\x3f\x7a\x9a\x09\x82\xda\x7a\x93\x30\xa3\x33\x82\xa0\x7a\xdf\x24\xce\xf0\xb5\x20\xa8\xdc\x78\x28\xc8\xd1\x4e\xe9\x56\x95\x3a\xe1\x57\x97\x2c\x9b\xd3\x6d\xa7\x7c\x6b\x03\x42\x53\xd3\x2b\xba\x92\xfe\x45\x52\x15\xd7\x41\x3a\x52\x33\x88\xc6\x49\x8c\xbf\x39\x65\x91\x22\xdc\x46\xd2\x7d\xf8\xad\x29\xa3\x09\xb7\x08\x5c\x3a\x9e\xfe\x7d\xa5\xb3\x05\x65\x91\xdd\x35\xad\x59\xdf\xb9\xc4\x86\x74\xa0\x6d\x4d\x27\xd7\x34\x1e\x0b\x58\x5c\xb1\x29\xea\x1c\xac\xe4\x3f\x2a\x7b\xd2\xe2\x41\x7f\xaa\x47\x9a\x6f\xb0\x8e\xb5\x2e\x69\x38\x75\x60\xb6\x75\x27\xd7\xed\x9a\xeb\xfb\xfe\xb0\x9a\xbd\x7a\xa4\xd6\xd6\x5e\x9b\x2d\xc3\xb6\x0d\x68\xa4\x6e\x7c\xc3\xc2\x23\xd6\xb2\x51\x97\x1e\x85\x13\xb3\xd2\xfa\x35\x6a\x64\xb4\x72\xc2\x9f\x17\x1a\x68\xe5\x75\x5f\x33\x61\x5c\x65\x0b\xcd\x37\xdd\xde\x8f\xff\xfb\xad\x46\xc3\x9d\xdd\xcd\xc7\x3d\x16\x04\x8d\x4a\xc3\x57\xa3\xcd\x04\x41\x7d\x7f\x97\x6f\xc3\x67\x08\x82\x9a\x61\x97\x3b\x43\x32\x05\x41\xf5\x60\x67\x9f\x41\x15\x82\xa0\x92\xd6\x79\xf5\x80\x28\x41\x50\x59\xd2\xf1\xaf\x7e\x0e\x82\xa0\xbc\xef\x76\x7f\x6d\xca\x8e\x96\x6e\xd3\x27\xfc\x21\xf7\x43\x67\x1a\xe7\x67\x5d\x59\x17\x24\xa9\x6a\x30\xa3\x67\xab\x86\x52\x5e\x7e\xdf\xd9\x31\x74\x7f\x2f\x3c\x69\x22\xad\x10\xc1\x82\x15\xcd\x93\x80\x50\x5e\x38\x96\x57\xd9\xd2\xe7\xdc\x53\xa6\x13\x5e\x3a\x3b\xc1\x9e\xfe\x7e\x52\xc5\x6c\xc2\xfd\x46\xb5\x76\xfa\xa0\x5a\x06\x0c\xce\x73\x2a\x6f\x63\xa7\xa0\xda\x67\xa8\xe3\xda\xde\x11\x2a\x7f\x1b\x1b\x3a\x4e\x1c\xff\x49\xad\x65\xb7\x08\xc7\xd6\x8e\x49\x6a\x45\x5d\x14\x66\x9f\x59\x76\x55\x7d\x40\xc7\xc6\xb3\x35\x83\x3c\xd5\x1d\xda\x5d\x71\x18\x15\xd3\x58\x7d\x98\x41\x17\xfb\x96\x29\xdd\xd4\xde\xb4\xf9\x3a\x6b\x42\xd1\x08\x35\x0f\xfd\xcf\x33\xcb\x6f\x4f\x51\xdd\xae\x1f\x38\x73\x5d\xf5\x70\x95\xed\xfa\xd3\x67\x7c\x12\x04\xe5\x66\xad\x47\xda\x0e\x15\x04\xa5\x06\xad\x9d\x26\x79\x08\x82\x62\x59\xeb\x59\x16\xc5\x82\xa0\x18\xd2\xea\xc1\x78\x3f\x41\x50\xd4\x6c\x75\x6a\xac\x9a\x20\x28\x5c\x69\xe5\x37\x72\x9f\x20\x28\xf8\x5f\x12\xda\x91\xbf\x79\xc9\x26\xb4\x13\x38\x1b\x36\x90\xd0\xc6\xa4\x5c\xd6\x83\x39\x1c\x3c\x8e\x76\x4c\xfb\x16\x5b\xd1\x3a\x10\x6e\x6e\x43\xb7\xaa\x83\xe3\x59\x27\x63\x5d\x95\x3d\xc5\x8d\x95\xcb\x66\x53\x15\x72\x8f\x87\x2e\xc4\xab\x72\xd1\x9d\x4b\x79\x70\x5b\x63\xc6\x4f\xc7\x1e\x75\x27\x3c\xa8\x77\x7b\x4f\x5a\x69\x8c\x52\x3c\xbf\x37\x8d\x05\x3a\xaa\x7a\x36\xe8\xfe\x5d\xb1\x6f\xdb\x37\x9e\x63\x46\x7e\x54\x0c\x6b\xed\xed\x39\x61\x66\x91\xa2\x47\x8b\x52\xcf\xe6\x8b\x8b\x14\x52\xf5\x5c\x16\xf9\x6f\x6a\x2c\xef\xaf\xd7\x7b\xd1\x93\x7d\x2d\x81\xa6\xe7\x3d\x1e\x26\xdd\x00\x9a\x6c\x73\x7f\x9d\x7f\x03\x68\xfc\x79\xe1\x1f\x37\xae\x01\x3a\x8f\x17\xe4\xbc\x8c\x04\xb4\xd7\xba\x95\xff\xfc\x01\x68\xe9\xcd\xa1\x7b\x99\x9a\x49\xb3\xf7\xd0\x19\x2a\x6e\x66\x8c\x68\x1b\xe6\xd8\x91\x55\x2f\x9b\xba\x9f\xde\x1f\x6a\x43\xba\xc5\x05\xd7\x4c\xa8\xbf\xce\x56\x0c\xa6\xe7\x3f\xd9\x7f\x34\xad\x7f\x47\x9e\xb3\x2e\x4a\x74\x05\xf7\x73\x64\xd0\x74\x52\x99\xde\x6a\x61\x4f\x3c\xaa\x40\x47\xbe\x85\xbe\xea\xe9\x5c\xca\x0e\x2f\xda\xe2\x46\xed\xe6\x5a\xc8\x78\xf9\xcc\x44\x2f\xf2\xdf\x72\xf0\x12\x8a\x1f\x43\xb6\x2f\x27\xb4\xd6\x50\x67\x15\xe1\x1d\x2d\x2e\xf8\x24\x69\xcc\x03\x9a\xaa\xad\xd5\xe8\xa8\x06\xe8\x68\xaf\x35\x18\xa2\x01\x68\x7e\xf6\xc9\x99\x7a\x04\xd0\xb0\xf1\xf1\x5c\x78\x16\x50\x3d\xe6\x83\x80\xc9\x80\xb2\xd3\x1a\xcb\x48\x5d\x40\x71\xcd\xea\xe0\x84\x29\x80\xfc\xf3\x55\xe3\xb2\xb7\x00\x72\x19\x2b\x87\x5c\x51\x03\xe0\xbf\xc2\xe8\x09\x21\x93\xcb\x07\x7e\x23\x86\xd3\x62\xa9\xee\x87\x3b\xd8\xce\xcb\x66\x3b\x47\xba\xc7\xeb\x2c\xdd\xe7\x74\xe8\x22\xda\x33\xd7\x98\xdf\x76\x32\x6c\x22\xe5\xa7\xe3\x13\x6d\x58\xff\xe0\x99\x1d\xc5\xff\x08\xaf\xd9\x94\x4d\xdf\x6a\xea\xe2\xc8\xfd\xcf\x6a\x04\x6b\x5a\x2d\xa4\xb8\xb8\xf8\xc1\x22\x8a\x0b\xf3\x1d\x96\x50\xfb\x38\x34\x5a\x46\xf7\x7b\x6d\x5e\xac\x24\x94\x61\xf4\xe0\x35\x74\x6b\xbd\xaf\x31\x6f\x4c\xdb\x19\x33\x5f\x40\xb5\xcb\x66\x52\x71\x97\x5f\xb7\xa5\x8d\x1e\x33\xec\xc6\xf6\x26\xc5\xeb\xcd\xb3\x2c\x99\x71\x65\xe9\x4a\xf7\x0e\x37\xb9\xfb\x10\xae\xbb\x51\x2d\x94\x90\xc4\x0d\xbb\x0e\x53\xdd\x8b\xf5\x49\x19\x84\xe7\x06\xea\x5e\xa6\x9b\xe4\x01\x3f\x1e\xd2\x7d\x5e\xff\x94\x3f\x29\xd2\xfb\xb6\x61\x3f\x57\x4e\x67\xbb\xb4\x8c\xad\xd7\x27\xa9\x7d\x52\xd8\xba\x5d\x17\xed\xc9\x27\x16\xf4\xed\x47\x22\x6c\x09\x65\x8f\x69\xce\xf3\x39\xe2\x91\x0b\xf5\x63\xc8\x64\x37\xc2\xb5\x36\x14\xb2\x4e\xc6\xea\x1f\xdc\xcf\xde\xbe\xde\xaf\x45\xbb\x30\x60\x25\x6d\xb5\x9d\xdb\xad\xa1\x75\xc2\xae\xa9\x1f\x8d\x8f\x89\x4d\x03\x08\xe7\x1c\x3a\x8d\x75\x61\x7a\x86\x6d\x21\x1e\x51\x8b\xc1\x5b\x59\xe7\xff\x43\xa8\xa4\x5c\x17\x76\xb5\x39\xad\xb4\xe1\x23\x7b\x11\x93\x26\x4c\x8f\x75\x0f\x76\x54\x38\xd3\x59\x2e\xb4\xdb\x2a\xaa\x8f\xb1\xc3\x91\x2b\xd0\xec\x18\xc1\x95\x56\xb6\x5d\x3d\x4d\x7b\xde\x90\x66\x17\xe8\x97\x82\x13\x2a\x09\xc7\x08\x2e\x7b\xcb\xfc\x18\x5f\xf6\x33\x50\xe2\x3d\xf8\x8d\x64\xeb\x23\xd5\xbd\x58\x29\xb5\x87\x77\x22\xe5\x2d\x76\x71\xbf\xef\xdf\x3d\x9b\xb2\xfc\x91\x1b\xe6\x12\x7a\xbc\xcd\x85\xc7\xf7\xa6\x41\x5e\x34\xaf\x7d\x4d\x96\xad\xe4\x38\xb8\x8a\x70\xbe\x45\x27\x7d\xc8\x6f\x17\x17\x3f\xfa\xd5\x99\xd7\x02\x69\xe7\x39\x49\x6f\x23\xad\x0b\xa3\x4d\x83\x68\x07\xd6\x6f\x53\x08\xc5\x8f\x4e\x35\x3b\x08\x9d\xd3\x4d\x89\xf0\x62\xff\xf7\x8e\x66\x1b\xd5\xa3\x39\xed\xd9\xf7\x8e\x33\x21\xa4\x39\x6a\x09\x57\x2c\x8b\xca\x72\xa4\x06\xd9\x53\xc8\x8a\x34\x7b\x82\x83\x08\x49\xd9\xb3\x80\x99\x05\xbb\xc2\x4e\x12\x03\x6f\x57\xff\x22\x42\xda\x22\x37\x33\x52\x12\x61\xf6\x8a\x22\xd9\xce\x94\x1f\x74\x26\x90\xf1\x3f\x82\x24\x3d\xf3\x8d\xd2\x7d\xff\xc0\xfe\xbf\xb7\xcf\x81\x6b\xcc\x3a\xd9\x15\xe8\x46\xf8\xf4\x8e\xc9\x5e\xd4\x9f\x32\x1d\x20\xff\x14\xf6\x7b\x95\x82\x1f\xe3\x7d\xfb\x59\xa5\x64\x9e\xd6\x7a\x8a\xa7\xb3\x15\x36\x53\x3b\xd9\x4a\xea\x0c\x13\xb1\x8d\xf0\x99\xa1\x08\xa3\x89\x60\xda\x21\xc2\x81\xe7\x43\x14\xed\x2f\x35\x1f\x47\x9b\xb3\xff\x07\xfb\x4b\x36\xac\x19\x21\x7e\x71\x9b\x8d\x09\x97\x89\xbb\x3f\x86\x15\xaa\x9c\x79\x64\xc6\x25\x2d\x89\x66\xbb\x89\x10\xe6\xd8\x14\x56\x1e\x89\x6b\x9e\x44\x11\xea\xc0\x86\x5c\xda\xe1\xc4\xd4\x5c\xa5\xbd\x70\x8c\xc5\x53\xba\x31\x1c\x1d\xfb\x85\x56\xfe\x5f\xbc\x98\xd7\x6c\x43\x97\xb3\x65\x3d\x1d\x99\x2e\xca\x1e\x77\x0f\x3a\x07\x84\xad\x5a\x42\xbc\xf0\x20\xcf\x15\xc4\x52\x5a\xb7\x83\x55\xf5\x57\x05\x07\x78\xf1\x3c\xd8\x48\xb3\x6f\xc1\x8b\xcd\x5c\x07\xa6\xdd\x56\x6a\xa7\xe9\x6b\x59\x1f\x66\x52\x49\x18\xa1\x51\xa3\xdf\x32\x5e\x3e\x68\x20\xf3\x61\x7a\x18\x33\x0f\xa8\x75\x0d\x8f\x66\x75\x9b\x23\x52\x06\xe3\x84\x35\xdb\x63\x57\x9a\x11\x12\x7c\xdc\xd2\x78\x24\xbf\x1e\x4d\xbf\x70\x6c\xca\x4c\xc2\x6f\x8f\x99\x2e\xa2\x96\x3d\xe6\xcf\xcc\x94\x84\x6b\x91\xf4\x8d\x09\x15\x8c\x3c\x1f\xf5\xc8\x22\x1d\x95\xf8\x45\x65\xb4\xa3\x89\x8f\x79\x44\xf1\xe4\xc8\xee\x3f\x69\x3c\xfd\x07\x2f\x46\xd2\x8f\xd9\x2d\xd5\x07\x09\x27\x1c\x3c\xfc\x16\xf3\x80\x42\xb4\xb9\x2e\xd6\x86\xc2\x75\xf4\xbc\x6b\xf7\x6d\xa0\x1d\xf6\x72\x63\x46\x13\x17\x19\xf0\xec\x9c\xe7\x1a\xca\xf5\x0e\x3c\xc2\xe9\xe4\x39\xf5\xe1\x6e\xca\x54\x4d\xcc\xdd\x4b\xe3\x7e\xd8\xc3\x18\x62\x25\xf4\x37\x8b\xa5\xf1\xd2\xb5\x86\xfd\xd6\xdb\xca\x4f\xad\xac\x9f\x38\x89\xfd\x4f\x95\x74\x30\x4e\x59\x72\x65\xbf\x53\x96\xbc\x13\x4f\xbd\xc3\x8c\xdd\x94\x0a\x3b\x8a\xd0\xa9\xa7\xdc\xc3\xf9\xfd\x00\xda\xf1\xa5\x58\x73\xbd\x83\x14\xfd\xc3\xcc\x7f\xc9\x3e\x43\xb8\x78\xf2\xf4\x52\x42\x56\x93\x8e\xdf\xa3\x9d\x6e\x52\x15\xdf\x20\x4f\xec\xf9\x0f\x31\x14\x12\x66\x0b\x75\x78\x31\x71\x12\x0f\x20\xa6\xa5\x68\xb7\x19\xf8\x86\x49\xfe\xd3\x5f\xf9\x0d\xdd\x44\x71\x6c\xc5\x8e\xad\xc4\xca\x58\x7c\x3d\x8c\x32\x31\x32\x1e\x90\x73\xd5\x6e\x5a\x37\x66\x64\x31\x3f\x62\xd2\x8a\x68\x52\x2b\x18\x57\xc1\xf5\x73\xcc\xad\x98\x0f\x63\xfa\x36\x81\x46\x69\xc7\x03\x27\x68\x9f\xd5\xcc\x91\x6f\xa3\x2b\x6a\xa7\x49\x99\x3d\x19\x1f\x26\x2b\x86\xf9\x30\x59\x31\x46\xd4\x13\x99\x9e\xc3\x68\xeb\x9a\x51\x30\x95\x66\x6c\x66\x8d\x1b\xc5\x8b\x8c\x93\x6b\x69\xe7\x9a\x99\xc5\xcc\xbb\x4c\x6f\x66\xe0\x64\x14\x30\xf3\x20\x63\xc1\x05\x62\xf8\x9e\x0d\xbb\x4d\x3c\xb3\xb3\xe3\x5f\x51\x4f\x9c\x09\xfc\x8b\x72\x48\xa9\xaf\xf9\x6c\x2d\xe3\xc5\xfc\xaa\xa3\x74\x98\xf2\x74\xe1\x1b\x68\x5f\x10\xe0\x15\xfc\x81\xe7\xc1\x36\x8a\xde\x4b\xbf\x45\xd0\x7e\xda\x63\xe4\x6e\xfa\x56\xd7\x60\x46\x97\xed\xaf\xed\xa7\xa7\xb4\xad\x8a\x23\xff\xad\x62\xe3\xa9\xf5\x47\x05\x33\x4f\x60\x40\xce\x09\xd6\x43\xb9\xc0\x2a\x4f\xed\x1d\x4f\x13\x8e\xac\x13\xc3\x7a\x02\xf2\x8f\xb3\xa5\x38\x29\xe3\xc3\x14\x18\xeb\x12\xf2\x5d\x18\x66\x48\x23\x2d\x7f\xcd\x90\xed\xfc\x3e\x33\x1a\xf3\xbd\x5c\x69\x1d\xcd\xef\xc1\x91\xaa\xc0\x98\x75\x0f\x0a\x8c\x19\xf7\xcf\xcf\x4f\xa6\x3a\x39\xf9\x6a\x05\x77\x41\x8a\x60\x1c\x27\x72\x0f\x3d\x53\x07\x9d\x8c\x99\x4b\x9f\x2d\xad\x13\xe9\xaa\x6c\x7f\xe9\xe8\x90\xce\x56\x60\xff\x10\xaa\x9e\x22\xe3\x01\x2d\xaf\x62\x1d\x24\x4f\xdb\xbd\x34\x2e\xe6\x3b\xc4\xd0\xfe\xd8\xf1\x5a\x2c\xf5\xeb\xcc\x4e\x47\x28\x4e\x4c\x6e\x91\x40\x51\x7a\xbc\xe7\x09\x5a\x37\x86\x3e\x39\x49\xb3\xbc\x5f\x70\x2a\xc5\x09\x23\x9d\xb3\xd4\x1e\x6d\xe2\x33\xa9\x5e\xef\x2f\x7d\x1c\xdf\x02\x49\x37\xa9\x44\x9a\x1f\x25\x15\x3a\x74\xc3\xa1\xb4\x33\xf3\x40\x2e\x96\x0d\x69\xcb\xef\x5b\x3b\xb1\x65\x06\x6f\x89\x37\xcf\xe0\x8b\x0e\x5b\xc8\xaf\x8b\x67\xa2\xa8\xc7\x4a\x3a\x26\x91\xfe\x47\xc9\xea\x7c\xd2\x8f\xb8\x90\x5c\x4e\x7c\x8a\xf3\x35\x1c\x27\x8a\x0b\xde\x52\x86\xa4\x58\xef\x1f\x52\xbc\xc9\x97\xf4\x40\xce\x49\xf3\x22\x9d\xf6\x17\x32\x1e\xd0\x8a\xeb\x7b\x88\x77\x2f\xe3\x01\xb9\xfb\xb2\x0e\xd2\x5c\xef\x78\x5a\x9d\x1c\xbc\x13\x68\x54\x4e\x73\x3c\x41\xb3\xd5\xba\x3a\x99\xfc\x1f\x73\x24\x95\xd6\xcb\x21\x31\x67\x28\xff\xd0\x3b\x37\x83\xf8\xb8\x5d\xf5\xd9\x6f\xfd\xed\xf9\xb4\xea\x35\x9a\x51\xcc\xc2\x83\x29\xa5\x52\xa6\xaf\x42\xca\x6c\x5c\x35\xd0\xa6\x7d\xc0\x15\x8f\x4e\xe4\xd7\xd5\x6b\x83\x28\xe2\x54\x9c\xe4\x1d\xed\x55\x17\x47\xaa\x77\x73\xd5\x9b\x19\xcb\x57\x46\x6c\xa4\x9d\xf9\x95\xd4\x3d\xb4\x92\x5f\x29\x3e\x4e\x33\xb2\x7c\x42\x26\x3d\x61\xc5\xe0\x32\x62\x00\x57\x8c\x7e\x40\x23\xb7\xdc\x98\xf5\x30\x2e\xdb\x32\x2f\xa6\xa4\x82\x73\x6f\xc5\x52\x4d\xde\x7c\xd2\x9f\x5b\xd3\x62\x1f\xf1\x9e\x96\x5d\x89\xa5\x68\x22\xe3\x01\xcd\xf7\x38\x46\xf1\xc1\xc5\x31\x91\xd6\x85\x19\x11\x27\x29\x0e\xda\xea\x9e\xa6\xf7\x2d\x74\x58\x8d\x64\xe4\xe7\x74\xe2\x13\x0e\xae\x60\x16\x46\x6f\x49\x0f\xc9\xb0\x75\x31\xf1\x65\x5b\x37\xba\x40\x71\x44\xb3\xf7\x65\x29\xd3\x7b\x45\xca\xfc\xc8\x32\xdd\xb7\xbf\xb3\x3e\xcc\xad\x2a\xe6\x81\xdc\xaa\xe2\x8a\xb7\xb7\x1b\x8e\xa7\x13\xdb\x1d\xd8\x13\xe3\xf2\x4e\x25\x2b\xdc\xdd\x0e\x0b\x24\x1e\xd9\x9d\x11\x91\xb4\xd2\xdf\x39\x7a\x84\xf6\xd1\xb7\x9f\x30\x43\xe7\xd6\x9b\x12\x6a\xa7\x5b\x1d\xef\xd0\xb8\xb8\x59\xf3\x8a\x56\xea\x1b\x69\x9f\xe9\x7b\xaf\xd9\xfc\xa0\x48\x20\xab\x2b\xc5\x75\x82\x96\x07\xc6\xd1\x2a\xeb\x75\xfd\x28\xf1\xc2\x3d\x56\x26\x12\xdb\xc2\x75\xc7\x49\x5a\xbd\x1c\xc1\xfd\x3d\x5d\x87\xe7\xb7\x4d\x54\x06\x8d\xb6\x09\xc7\x73\x88\x2f\x3e\xfc\x7a\x1e\x45\xa9\x81\x81\x05\xb4\x9f\xee\xf9\x93\xeb\xe8\x74\x56\x2c\xa5\x55\xab\xd5\x6c\xd6\xc7\x69\xa8\x73\xf5\x4d\x5d\xff\xef\xad\x64\xfb\xd0\xb2\x21\x29\x79\x3d\x6c\x6f\x40\xcc\xfc\x47\x27\xfa\xd0\x7e\xe2\xa1\xc0\x8c\xff\xaa\xfc\x19\x14\x61\x1f\x3d\x59\x44\x4a\x99\x55\xc3\x02\x42\xd9\xf2\x4c\x7e\x18\x70\x90\x66\xe4\xc3\xa3\xa7\xe9\xc9\x1f\x0d\x3d\x4f\xbf\x78\xbf\xe2\x06\x45\xe4\x87\x36\xac\xc0\x72\xef\xc2\x47\x9a\x89\xf7\x0d\x04\x9a\xd1\x77\xb6\x0b\xf4\xc4\xd7\x47\x08\xff\x85\xff\xd0\xfd\x47\xad\xfd\xd9\x1d\x30\x8c\x04\xfe\x2a\x02\xba\xcf\x93\xf0\xfe\xbc\xdf\xf0\x7e\x01\x18\xe0\x03\x3c\x76\x01\x86\xa6\xb0\x9e\xff\xd8\x16\x40\xe5\x2b\xf1\xac\x0d\xdc\xb0\x16\xdb\x10\x28\xd3\x01\x1c\x1d\xc4\x28\x00\xb8\xad\x00\x2e\x08\x8c\x63\x15\x37\x01\x7c\x8a\x81\xfc\xa3\xc0\x86\x1c\x20\xef\x07\x10\x6a\xce\xf9\xff\xfd\x9d\xf9\x3e\xfb\x71\x4b\xc6\x03\xc5\x11\x58\x54\x02\x5c\x18\x21\xce\x7a\x6e\xd1\x82\x5b\x40\x95\x17\x70\x3e\x8b\x71\x4e\xd9\xbd\xf7\xfa\xf5\x1f\x92\x4d\xfe\x37\xfe\x2f\xfc\x56\xe7\x84\xf4\x2f\x02\x80\xce\x52\xae\xbb\xd3\x41\x6e\x87\x8e\x9b\x81\xef\xf3\x18\xd7\x7e\xbb\x01\x30\xba\x07\xbc\x8e\x06\x4c\xdb\x03\x4f\x9f\x01\xfd\xa6\x71\x3e\x6b\xb0\x3e\xf0\x87\x3d\x30\xea\x21\x70\x73\x14\x60\xd9\x00\xb8\xe2\x00\x4c\x0d\x04\x2e\xbd\x07\x66\x8f\x00\xce\xdf\x05\xe6\x45\x01\x85\x63\x00\x2f\xe7\xdf\xf0\xee\x55\x5c\xff\xa1\xc0\x00\x08\x1f\x0a\xe4\xdb\x03\xfb\xc5\xf7\x13\x81\xe3\x23\x80\x9c\x68\x6e\x87\x5c\x81\xdb\x40\xf4\x57\xdc\x47\x8b\xed\xf3\xac\x80\xdb\xeb\x6b\x18\x88\xb5\x25\x3e\xfb\xd9\xbe\xff\x9b\xff\x70\x78\xeb\x7f\xf2\x1f\xea\xf3\x3f\x7e\xd5\x01\x49\x01\xfe\xfa\x07\x68\x9b\x02\x7c\x9e\x0f\xb4\xab\x02\xde\x0d\x00\xba\x94\x00\x2f\xdd\x01\x71\xbd\x7f\xba\x1e\xe8\xed\x0b\x3c\x68\x0b\xf4\xb7\x07\x6e\x9f\x02\x86\xf9\x01\xd7\x26\x00\xe2\xb8\x2e\x9f\x00\x4c\x9e\x00\x94\x1a\x00\xf6\x1d\x81\xe2\xcf\x7c\x9f\x39\xff\x19\xe0\x69\xca\xfe\xaf\xae\x01\x72\xda\xb3\x2e\xc8\xb9\xb1\xc0\x8e\x5d\x8c\x55\x44\xeb\x33\x76\x73\xcc\x9f\xed\xd9\x99\x8c\xef\x17\x07\x03\x39\x7b\x80\x5b\x3b\x18\x2f\x79\x6e\x06\xe4\xf7\x04\x7e\xd8\x32\x3e\x2e\x8e\x07\x99\xfe\x7f\x7d\xfc\xff\x90\xa4\x61\x70\xa0\xfc\xbf\xf3\x1f\x64\xbc\x8f\xdf\x75\x2f\xfe\xea\x0f\xb4\xf8\x00\x7c\x34\x05\x5a\x77\xf8\xad\xbe\x43\x39\xd0\xe5\x0c\x73\x10\xc4\x7d\xe0\x1f\x4d\xb9\x3d\x6e\x24\x03\x66\xeb\x99\xff\x33\x4a\x1d\xb8\x3c\x13\xb0\x1a\x08\x5c\x90\x03\xa6\x0f\x03\xf2\x6f\x03\xce\xaf\xd8\x9f\x05\xd1\x40\x76\x0e\xb0\xd2\x15\xc8\xea\x28\x9e\x0c\x81\xb3\xb6\xa0\xca\xa6\x19\xcf\xb8\x1d\x32\x0e\x30\x86\x99\xee\xc8\xe3\x21\xbb\x35\x70\x71\x3b\x90\xfd\x83\xb5\x55\xc4\xef\x79\x91\xc8\xed\xf4\x77\x1e\x70\x66\x54\x3d\xfc\x5f\xea\xd3\x43\x81\xff\x07\xfe\x43\xbd\xfa\x27\x4d\xdb\xfd\x27\xdf\xe1\xfd\x66\xa0\xe9\xd9\xda\xfa\x0e\x32\x9d\x83\x07\x76\x40\x57\x3b\xe0\xce\x19\xc0\xd4\x87\xeb\x3b\xf4\x1b\xc8\x38\x97\x18\x2f\x2e\xee\x07\x26\xfa\x02\x45\xd3\x81\xa9\x6e\x3c\xae\x1d\xb3\x80\xcc\x10\x60\x41\x5b\x20\x3d\x11\x58\xe6\x0f\x9c\x59\x03\x04\xe4\x01\x69\xc5\x40\xc8\x6d\x20\xed\x36\x10\xf5\x12\x48\xcb\x03\x8e\x5e\x00\x4e\xab\xf1\xbd\x7f\x31\x16\x9e\x8f\x04\xce\x74\x00\x6e\xef\xe4\xb6\x79\x21\x00\x62\x14\xff\x1d\xff\x97\xf1\x9f\x64\xfe\xef\x5f\x57\x97\xff\xf0\x8b\x07\xf0\x1b\xff\x41\xa6\xfb\xa1\x53\xc4\x7c\xb0\x06\xc9\xc0\x3f\xfe\x80\xa6\x00\x7c\x0e\x04\x34\xb5\x80\x77\x5a\x40\x23\x73\xe0\x45\x0c\xeb\x3d\xc8\x74\x0e\x2a\x53\x81\x76\x46\xc0\x2d\x67\xc0\xf0\x0a\x70\xd5\x08\xe8\x9d\xc7\x38\xcf\x20\x73\xa0\xe8\x3a\x30\xe6\x34\x90\x1b\x0b\x4c\xea\x08\x64\xeb\x02\xf6\x2b\x80\xf4\x06\xc0\xbc\x6c\x66\xdd\x2f\x7e\xc0\xf5\x0d\xc4\x13\x7c\xe2\x23\x60\x8b\x35\x90\xe4\x05\xec\x1a\x0b\xa4\x04\x33\x16\x7a\x32\x01\x38\x7d\x1b\x48\x36\x06\x8a\x0b\x81\x53\xba\xc0\x9d\xdb\x40\xea\x30\xe0\x55\x33\xf1\x74\xc2\x7d\x27\xc3\xff\x65\xe3\x5f\x36\xee\x7f\xe9\x20\x48\xfc\x87\x9d\x92\x0d\xfb\x2d\x3e\x10\xff\xe3\x08\xa0\xfe\xbc\x96\x07\x41\x78\x77\x4a\x2d\xef\xe1\x4d\x32\xa0\xf8\x07\xf0\x7c\x1d\xa0\xf6\xba\x96\xf7\x20\xc6\xaa\x16\x65\xc0\x55\x2d\xa0\xdd\x2d\xa0\x6c\x11\xd0\x73\x1b\xf3\xb6\xfa\xdc\x07\xf2\x33\xb9\x3e\x4c\x66\x2a\x60\x21\xf6\xe9\x77\x60\x7a\x6b\x20\x4d\x1e\x70\x6d\x0d\x24\x16\x03\x8b\xaa\x80\x24\x33\x90\xd2\xed\xb1\x2f\xc0\xe6\x62\xe0\x68\x39\x63\x9b\x62\x1b\x1c\x9c\x09\x1c\x5b\x03\xa4\x9d\x03\x8e\x1b\x01\xc5\x6e\xc0\xf1\x04\xe0\x56\x24\x70\x42\x13\x78\x79\x13\x38\x3e\x14\xf8\x3b\x91\xb9\x86\xbf\xfb\xff\xab\xdf\x43\xeb\xfa\x2d\xc3\xc3\x65\x75\x30\x84\x7a\xfc\x0f\x19\xde\xff\xbf\x78\x0f\x8a\x36\x40\x65\x43\x40\xf5\x27\x70\x33\x10\x68\xac\x0f\x5c\x2d\x00\x5a\x66\x03\x25\xaa\x40\xc7\x00\xf1\x94\x00\x18\xdb\x03\x39\x8f\x00\x33\x6b\x8e\x71\x63\x5b\x01\xa9\x2e\xc0\xe4\x97\x40\xa2\x1d\x30\x3b\x54\xc2\xfd\xc5\xd3\x4e\x28\xb0\xd2\x09\x38\xf2\x03\xd8\x14\x07\x1c\x5a\x0f\xec\x4c\x01\x8e\x44\x00\x87\x9f\x72\x0d\xa5\x53\x62\x9c\xaf\x06\x8a\x07\x02\x47\x6a\x38\x3e\xc4\xbb\x03\xaf\xf4\x81\xc3\x23\x81\x9f\xef\x6b\xc7\xff\x9e\x4e\x75\xf9\x1f\xbf\xfc\x96\xe2\xe5\x66\xe5\xba\xb8\xf8\xff\x97\xf7\x70\x93\xed\x2f\xde\xc3\xfb\xba\xbb\xa1\xab\xfa\x80\xf2\x60\xa0\x64\x09\xa0\xb3\x80\xf5\x5e\x5a\x5f\x07\xce\x99\x03\x5d\x1b\xb1\xe6\x51\xbf\x58\xe0\x54\x3c\x30\xbc\x92\xeb\x97\x58\x3e\x60\xff\xed\xf5\x79\xfc\xce\x2f\x66\x2e\xd4\x72\x63\x20\xf6\x3b\xaf\x1b\xb1\x1e\x40\x84\x2b\xb0\xff\x20\x70\x68\x27\x70\x20\x97\x63\xc1\x81\x29\xc0\xf9\x96\x40\xec\x4a\x71\x27\xc9\x5a\x53\xe2\xbe\x79\xbf\x25\x63\xd5\xb2\x3a\x28\x61\xd2\xfc\x08\x3e\x59\x97\xf7\xb1\xde\xfc\xdf\xf9\x00\xff\x31\x0e\xea\xd7\x3b\x91\xc6\xc1\x53\x53\xa9\x1d\x14\xd9\xca\x78\x0f\x97\xfb\xb1\x15\xd7\x32\xe5\x1f\x40\x9e\x2a\xa0\xdb\x85\xfd\x6f\xab\x09\xa4\x58\x03\x46\x5b\x81\xe3\x57\x00\xb3\x26\x1c\xf3\x26\x24\x00\x87\x32\x80\xe9\x7a\xec\x87\xab\x37\xd7\xf1\xf1\x9e\x0d\xec\x9b\x08\xac\x57\x05\xf6\xda\x01\xe1\xa9\x40\x94\x37\xf3\x28\xf7\xe6\x71\x2c\xdc\x13\xcc\xbf\xb5\x47\x1b\xb8\x7d\x80\x6b\xb0\x55\x7f\x07\x76\x8f\x60\x8e\xa7\x8c\xf7\x23\xe3\x7f\xc8\xfc\x96\xf1\x3e\xea\xf3\x1f\x64\xf6\x57\xbd\x0f\x23\xb6\xf5\x75\x3f\x9e\x4b\xe3\xe1\x5e\x28\xdb\xff\xd0\xbd\x98\xc5\x36\x5f\x3a\x4d\x67\x6a\x01\x6a\x3f\x99\xe7\xd4\xd4\x98\x39\x1c\x1d\x0b\x81\xa3\xba\x40\x9f\xce\xc0\xc1\x01\xc0\xc8\x0c\x20\xfa\x25\x30\xd9\x06\x88\xca\x07\x9c\x7d\x81\xdd\xc3\x81\x25\x7e\xcc\xa5\x5d\x57\x05\xec\x5c\x00\x84\x45\x01\xe1\xf1\xcc\x7d\x09\xdb\xce\xf3\x22\xcc\x9b\xc7\x43\xa8\xbe\x78\xc2\x00\xc2\xda\x02\x35\x9a\xc0\xb6\x7b\xac\xf1\x25\x1b\xef\xb2\xfe\xae\xef\xf7\xe2\x9a\xba\xfc\x07\x99\x95\xf1\x1e\x7e\xe9\xdf\x48\x7c\x87\x17\xd2\xad\xc2\x5f\xfc\x17\xa9\xfe\xcb\x55\xa9\x1e\xce\x65\x89\x1f\x51\x28\xd5\xcb\xc8\x92\xbe\x27\x55\xaa\x3e\x7c\x42\x19\x68\x90\xc4\x1a\x2f\x62\xdc\x88\xed\x01\x74\x5f\xce\x1a\x59\x83\x2b\x00\xf1\xac\x68\xf9\x09\x88\xf0\x02\x66\x6f\x01\x42\xdb\x02\x8b\x9e\x01\xdb\x0d\x01\xff\x0b\x40\x88\x37\x10\x3a\x17\x08\xb6\x04\x62\x6f\x03\x41\x16\xc0\xa9\x21\x1c\x43\x8b\x2a\x81\x4d\x5f\xb8\xc6\xe0\xc6\xb3\xc0\xab\x9a\xda\x79\x2e\x1b\xe7\x32\xbf\xbd\x3c\xea\xfa\xbb\x60\x3b\xdb\xb9\x92\x7e\x94\x8b\xc4\x13\xfa\x55\xf7\xc6\x93\xed\xeb\x4d\xf5\xfc\xbf\x2e\xcd\x03\x69\x9c\x94\x49\xf3\xa3\x68\x03\xdb\x73\x3f\xd8\x9e\x91\xda\x4f\x76\x0b\xed\x50\x7b\x5e\x6f\xc4\x71\xaf\xad\xcf\xe3\xbb\xc3\x48\x20\xc2\x06\xe8\x93\x05\x84\xae\x06\xc6\x36\x06\xb6\xee\x05\xa6\xff\x04\xb6\x54\x03\x0b\xab\x80\x4d\xad\x01\x5f\x33\x60\xbd\x1b\xb0\xfd\x05\xb0\xae\x2d\x70\xe0\x29\xe0\x77\x01\x48\x6d\x03\xac\x5d\x0b\x14\x1c\x06\x7c\xd2\x80\x1b\xdb\x81\x35\x2d\x81\x17\xda\xc0\xaa\x4c\xe0\x47\x33\x60\xa9\xc4\x9f\xf6\x90\xc6\xc3\x7c\xdd\xba\xfe\xce\x96\xf6\x97\x0e\x52\xbd\xb5\x19\xd2\xde\x49\x56\xf7\xe7\xcd\xa2\xba\xfe\xdf\x95\x6e\x17\xde\x90\xec\x2f\xfe\x43\x73\xb6\x7c\xca\x06\xce\x48\x71\x33\x59\xfa\xfb\xa3\xd2\x3c\xd9\x9f\xc0\x76\x57\x5b\x40\x79\x13\x10\x3a\x47\x7e\x51\x8b\x19\x40\xf0\x71\xa5\xa2\x1e\x06\xc0\xc6\x3d\xaa\x3d\x87\x05\x01\x01\x59\xea\x2d\xa7\xe4\x00\x6b\xf3\x35\xd4\xe7\x85\x00\xab\x3d\x35\xb6\xae\x6e\x01\xac\x98\xa4\x71\x66\xab\x02\xe0\xfd\x5e\xc3\x33\xda\x1f\x58\xb2\x4d\xbd\x32\x69\x1e\xe0\x55\xaa\x3e\x35\xf7\x22\xe0\x69\xa5\xe6\x73\x75\x0a\xe0\x71\x5a\xf5\xf1\x93\x13\x80\xbb\x8f\x6a\xc8\xd7\x23\xc0\xfc\xae\x2a\xa4\xdb\xee\xf4\x55\x49\x53\xb4\xf6\x36\x0a\x87\x44\x6b\x27\xb5\xcf\x54\x69\x5c\xd8\x48\xe7\x10\x6b\x69\x2f\x2d\xe3\x7f\xc8\xf8\x3f\x32\xff\xeb\xf3\x7f\xce\x4b\xb7\x47\x72\xae\xca\x11\xaa\x72\xa6\x4a\x99\x4e\xc3\x49\x21\x5c\x27\xe7\x48\x8d\x16\xe5\x67\xf6\x39\x68\x53\xa4\xdd\xe9\xab\x4d\x33\x66\x4b\x7a\x63\xaa\x87\xb0\x6e\x5f\xd3\x66\x3a\xc6\x80\x4f\x96\xde\xa0\x4e\x0f\x81\xe5\x9f\x5a\x0c\x1f\x38\x45\x6e\xdd\x12\xad\x16\x85\x16\x5f\xe4\x1d\x3d\x1c\x5a\x1a\x39\x56\x2a\x0c\x77\x7b\xd1\xe2\xc5\xd2\x1c\x85\xb3\x73\xc3\x5a\xec\xdd\xd8\x57\xb1\xa1\xcb\x5f\x2d\x46\xed\x36\x50\xec\xeb\x94\xa5\x57\x96\x10\xad\xf0\x75\xf6\x13\xbd\xf5\x59\x7d\x15\x4e\x38\xdc\xd2\x1b\x54\xa6\x22\xff\xd2\xc1\x54\x6f\xdc\xc3\xb9\x72\x33\xec\x63\xf5\xfe\xf9\x68\x0e\xdd\x19\x13\x9a\x93\x0e\xef\x94\xd7\xba\xa4\x87\x62\xad\xaa\xd3\x4a\xb4\x13\x3f\x68\x2e\x13\xed\xb8\x73\x0d\x48\xe7\x7f\xec\x3b\x75\xe2\xc7\x8c\xee\xa3\xb2\x41\xb4\xf5\xf9\x3f\xf5\xfd\x2f\x9a\x2a\x47\xd9\x81\x2c\x2d\xe6\x05\xa4\x5e\x69\x4c\x79\xa5\xe3\x13\x9a\x51\xbe\x3f\xae\x8a\xeb\xa6\x44\x45\xb4\xa1\x91\x12\xaa\xdf\x81\xb2\xef\x9b\xd2\x58\x47\xc0\xc7\xa3\x33\xfd\xdd\x52\xa5\x2e\x85\xaa\xa9\x62\xbf\x19\xb6\x6a\xdd\x57\xee\x8b\x6b\x54\xd7\x62\x13\x13\xa5\x2e\x8e\xaa\x86\x36\xa3\x3a\x2a\x1f\x98\x19\x63\xd8\x6e\xba\x8e\xaa\x9a\x6d\x75\xd7\x2d\xee\xf2\x6a\xfa\x93\x17\x77\x39\xe7\xd7\x46\xbd\xa9\xb5\x61\x97\x96\xa1\xc9\xea\xf7\x2d\x0e\x76\x6e\x72\x30\x48\xa3\xcb\x84\x2d\x9d\x56\x9c\xee\xa8\x31\x75\xdc\xcb\x8e\xbb\x2e\x98\xa9\x0b\x63\xbf\x74\xec\x7d\xd7\x41\x7d\xfd\x58\x93\x0e\x97\xde\x54\xa9\xb9\x8f\xc9\xed\x90\x2b\x08\x2a\xcf\x47\x1a\xb5\x73\x16\x04\x65\x77\x19\xcf\x63\x70\x9f\xd6\xae\x82\xa0\x10\x35\x70\x4d\xab\x58\x41\x50\xd0\x1d\x10\xd4\x32\x5a\x10\xe4\x03\x07\xa8\xb7\xf0\x16\x04\xb9\xfc\x5f\x71\x20\xa0\x9e\xff\x36\xcc\xfb\xc9\xac\xe1\x3a\x48\x29\xfb\xf4\x29\xdf\x7a\xb4\xbc\x23\xe5\x1b\xf7\x07\x18\x7e\xa5\x71\xdf\xdf\x98\xb2\x48\xdb\x1d\x8d\x69\x85\xdd\x68\xc6\x3c\x09\x9f\xa5\x7d\x08\x5d\xf1\x2a\xee\x4f\xf9\x1a\x97\xf9\x03\x28\x12\xd9\x9b\x98\x69\x35\xb1\x03\xa6\xfa\x0f\xea\xdd\xb5\x9d\x62\xaa\xe5\xe2\x81\x33\xcd\xf2\x54\x83\xc6\xf5\x1b\xa8\x34\xc9\x4d\xdd\x6b\x64\xdf\x01\x0d\xe7\x7c\xd6\x78\x63\x7e\xaf\xff\xb4\x95\x3e\x0d\x1d\x07\x7d\xee\xb7\x2f\x78\x8f\xe6\xc6\x01\x4d\xfb\xba\x46\xff\xa9\xd5\xa1\xaf\x4f\x1f\xdb\x93\x7f\x6a\xcd\xec\x2d\xf4\x6e\x52\xd0\x55\xab\x5d\xaf\x3f\x7a\xf9\xde\xd8\xa0\x79\xb8\xd7\xda\x5e\x83\x5e\xac\x6d\x98\xda\xeb\x48\xaf\xd9\x3f\x9e\x6a\x3c\x31\xc9\x37\xde\x21\x08\xea\xe8\x79\xc8\x68\xb2\x20\xa8\x2e\xee\xee\xd9\xad\xa5\x20\xa8\x0c\x32\xbc\xd9\xe5\xbe\x20\x28\x4f\x30\xec\xde\x79\xb5\x20\x28\x5d\xe8\xfc\xae\x43\x8d\x20\x28\x9e\xbf\xed\xcb\x3c\x90\xb2\x40\x15\x42\x55\xf3\x1f\xea\xd0\x0c\x49\x3f\xd3\x8a\xfa\x33\xa5\xa2\x23\xf3\xbe\x8e\x74\xa7\x6c\xe7\x7e\x81\xf1\x71\x19\xff\x65\xbb\xfe\x00\x1a\x41\x1b\x56\x0e\x21\x9c\x6b\x6d\xe3\xe1\x84\x53\x2d\x76\x19\x4d\xb8\xbf\x6b\x21\x67\x95\xa6\x2d\x1d\x47\x3a\xf7\x13\xfb\x4f\x54\xd4\x08\x06\x46\x2d\x9f\xa8\xd0\xf6\xbe\xfc\xad\xc1\x1f\x27\xf4\xef\xe3\xa1\xa2\xd6\xef\xe5\xf8\x33\xe3\x93\xd5\x5a\xf6\x72\x1a\x6f\x33\x7b\x8c\xba\x4a\xcf\xb0\x71\x21\x4b\x77\xab\xa7\x76\xd7\x1b\xd7\x62\x93\x93\x86\x62\xd7\x1b\x63\xbe\x47\xf9\x6a\x0c\xe9\x7c\x6f\x8c\xf1\x89\x57\x1a\x9d\x3b\x75\x1a\x3d\x3c\xb7\x8b\x7a\x72\xc7\x2e\xa3\x66\x5e\x5d\xac\xde\xba\x83\xf5\xc8\xbb\x4f\xb7\xab\xb5\xee\xd0\x71\x64\xd6\xb7\x57\x2a\x37\xdb\x1f\x1c\xd6\x4d\x10\x94\x0f\x1b\xac\x1a\xec\x27\x08\x4a\x4e\x06\x5e\x03\xfa\x0a\x82\x92\x62\x9b\x0f\x7d\x2d\x04\x41\xb1\x8f\xfe\xf6\xde\x13\x04\x41\x61\xb3\x7e\x8a\x49\x81\x20\x28\x2c\xba\x9c\xcc\xb7\xc4\x0a\x8c\x9b\x13\x8e\xf5\x8b\xff\xa3\x6d\x48\xd9\xc1\x23\x66\xfd\x18\xff\xae\x18\x48\x7c\xa0\x5d\x03\x87\x11\xcf\x61\xdb\xc1\x51\x94\x6d\xdf\xd0\x62\x1c\xb5\xcb\x1a\x2b\x0b\x8a\x34\x4b\x2c\xad\xa5\xfa\xd6\x93\xa8\xff\xa7\xaf\xb2\xa5\x9d\xc9\xc4\x71\x76\x84\xb6\x0d\x9c\x30\xe3\x01\x2e\x03\x7d\x5a\xce\x4c\xd5\x33\x00\xba\xc7\xcd\xd8\xd0\xa3\xb5\xe2\xa5\xce\xe9\x33\x96\x8c\x8c\x57\x72\x69\x7f\x6c\x86\xf3\x8c\x0e\x4a\xa7\xda\x6e\x9e\xfe\xc4\x53\x5f\xa9\xa4\xf5\x8d\xe9\x23\x02\xb7\x2a\xad\x6e\x59\x6a\x77\x77\x57\x53\xc5\x67\x2d\x5c\xec\x2c\x8e\x29\x28\x36\xd3\x3b\x34\xed\x56\x76\xa1\xc2\x48\xbd\x89\xd3\xda\x56\x0c\x93\x2b\xd0\x73\xb2\xfd\xfc\xb8\x2f\xd0\x7c\xec\xd4\x0b\x5f\xac\x80\x26\x7f\xda\xd0\x3d\xde\xc6\x27\x2d\xe8\x5e\x9a\xb6\xe7\x38\x07\xd1\x36\xaa\x1e\xdd\x5d\xb4\x5a\x41\xc3\x73\xe9\xf5\xa6\xa1\x1b\x45\x2b\xe3\x3f\xc9\xf4\x7f\x4e\xa6\xf5\xa1\xbc\xe1\xd1\x09\x52\xfd\x27\x49\xff\x26\xe2\x06\xa3\x8e\xdb\x35\x2d\x48\x3f\x68\x43\xe1\x24\x9e\xff\x7a\xb6\x74\x02\xf1\xa6\xaa\xc4\x80\xdb\xe8\x59\x74\x3b\x7b\xd6\x05\x07\x42\x21\xac\x2f\x38\x12\xfa\x30\xbc\xe3\x1c\x42\x19\x7a\x04\xcd\xa3\xfb\x80\x06\x51\x6e\xe3\x35\xd7\x03\x2d\x9f\xcd\x2f\xeb\xd4\x57\x6e\x96\x5e\x2b\xb7\x65\x43\x6a\x80\x26\xf3\xdc\xb6\x4e\x75\x00\x74\x5a\xbb\x8d\x5d\x70\x02\xd0\x5a\x3c\x7f\xb9\x9f\x0b\xd0\xe0\xe1\xbc\x94\xf0\x19\x80\x86\xe6\xdc\xd2\xc3\x95\x80\xda\x4c\xd7\xa7\xe9\x2b\x00\xd5\x39\x73\xce\x5f\xea\x00\xa8\x8c\x76\xc9\xbf\xff\x0d\x50\x56\x77\x2e\x17\x07\x9e\x52\x53\x47\xd2\x85\x52\xb0\x98\xf1\x53\xb4\x72\x9b\x6d\xfb\x91\xcd\x9a\x4c\xf1\x53\x4e\xc5\x2a\x52\xa0\x98\x60\xe1\x26\xda\xcc\xe2\x1e\xe4\x47\x72\xf1\x00\xca\x5a\x26\x2c\x1b\x3a\x8d\xd7\xbd\x31\x94\x35\xdd\x35\x9b\xfd\x0e\x99\x3c\x39\x9b\xfd\x9f\x46\x9f\xf3\x69\x35\x93\xc6\xcb\xb2\x71\x8e\xa4\xde\xe0\xa6\xef\x42\xe3\xc6\x31\xc5\x95\xda\x63\x6a\xcf\xf9\x74\xcb\x74\xac\xdb\x42\x1a\x47\xfd\x42\x17\x51\x7b\x74\x68\x42\xd7\x02\xa1\xa5\xb6\x5c\x5f\x41\x0d\x50\xef\xbf\x5c\xaf\x55\x38\xa0\xdc\x73\x79\x9f\x3e\xd3\x00\xf9\x65\xcb\xfe\xb0\xa0\x9b\x94\xcb\xca\x5d\x28\xff\xbc\xac\xf1\x2a\xc2\xff\xbd\x87\x6f\x23\x4a\xca\xd2\x35\xb1\xf4\xfe\x92\x7d\x69\xb4\x32\x2d\x1e\x72\x9e\x98\x8c\x9e\xaf\x2a\x19\x81\x9c\xf2\x86\x66\xb2\xbb\x74\x7f\x79\xae\x03\x5b\xe7\x2d\x6c\xed\x25\xdd\x87\x59\x8d\xd9\xda\x39\x89\x36\xa5\x62\x70\x3b\xee\x7f\xd6\x39\xda\xff\xcf\x44\x9a\x17\x91\x55\x93\x69\x87\xb0\xad\x66\x06\xe5\xf3\x37\x5e\x99\x45\xfa\x30\x6b\xf5\x59\xff\x66\x69\xbc\x2b\x3d\xc5\xc2\x86\xf3\x69\x1e\x38\x1d\x5e\x48\x78\xe8\xb4\x4f\x1e\xd4\x0e\x16\x79\x4b\x08\xd7\x1f\x0a\xc6\xcd\x8d\x3d\x56\xd2\xdf\xb5\x7a\xb3\x86\x7e\x47\x51\x3b\xa0\x27\x47\xe4\x00\xa3\x66\xf3\x41\xc8\xba\x09\x8d\x40\xbf\x80\xf1\x14\xb1\xfc\x12\x9c\xc8\x1f\xbf\x32\x66\xd2\xf8\x9e\x09\xa2\x7b\xeb\xbe\x96\x31\xc4\xcc\x5a\xbb\x2f\xb9\x9a\x57\xa4\x22\xc2\x2b\x56\x47\xdc\xa4\x0a\x25\xab\x82\x5f\x50\xbb\xac\xd2\xf9\x41\x91\x69\xe9\x79\xf6\xd7\xe3\x18\xdb\x05\x12\xde\xeb\xca\xf5\x62\xe0\x42\x36\x61\xf9\x04\xe2\xad\xc4\xaa\x4d\xa6\x1d\xe2\xae\xcb\xd3\x08\x8f\xd8\x31\xde\x9e\xe6\xf5\xa6\x9e\xce\x34\xce\xd7\x6a\xcd\x23\x7c\x6b\x79\xd5\x42\xda\x59\x2e\x32\x58\x44\xe8\x81\xab\xc2\x62\x7a\xda\x99\x89\x4b\xa9\xdf\x27\x7d\x63\x5d\x98\xd1\x03\xb8\x8e\xcc\x40\x5d\x5f\xd2\x53\xea\x6a\xb4\x8e\x4e\x2c\x4d\xfc\x36\x48\x3b\xf2\x2d\xd2\x4e\x36\xe8\x0b\xe3\xbc\x41\xf2\xc6\x64\xb7\x2c\x1f\xab\xcb\xff\xce\x15\xa9\xb6\xac\x59\x4a\x88\xd1\x16\x7d\x56\x56\xd9\x14\xc7\xf7\xfd\x37\x3e\x38\x41\x67\xa3\x8d\x66\xb9\xe4\xcf\xfa\x70\xd6\xba\x0b\xac\x7e\x4a\xf8\xd7\xba\xa4\x2f\x84\x9c\xc9\xf8\x1f\x32\x5d\x94\x65\x1b\xd9\x2e\xe9\xc2\xd6\x53\x4d\xb4\x71\xdd\x27\xff\xe0\xfe\xe7\x7a\x58\xdb\xaa\x18\x66\xd9\xec\xcc\xfa\x20\xfe\xb6\x0b\x13\xd8\x7f\x4f\x62\x61\x2c\x32\x5b\x4c\x3b\xed\x79\xee\xcb\xa9\x1d\x66\xdb\xac\xa2\xfd\x84\xed\x7b\xd6\x4f\x98\x48\xb7\xef\xc4\x71\xc0\xb8\xb1\xc9\xab\x8d\xd4\x1e\xed\x6e\x05\x13\xbf\x44\x4b\x37\x44\xc2\x71\xc2\xa5\x15\x3b\x7c\x7f\x73\xe6\xc1\xfc\xec\x49\xca\xe7\x61\xfe\x3c\x32\xc3\x8a\x67\x52\xbb\x84\x45\x7b\x11\x03\x21\x4c\x71\x3d\x31\x1a\x43\x97\xb2\xe2\xc4\x0e\xad\x04\x3a\x13\x6f\x4f\xc8\xa2\x91\x17\x92\x52\x46\xbf\x1c\xb2\xe3\x11\xf1\x63\xb6\xfa\x72\x1d\x8c\x20\x79\xae\x77\x20\xd3\x45\xf1\x97\xea\xd9\xaf\xf5\xfc\xbd\x7d\xa2\xcc\x98\xef\x26\xd3\x01\xda\xb2\x73\x01\xe1\x2f\x81\x61\x9e\x84\xef\xfa\x28\x7b\xd3\xac\xf4\x06\xd7\x8d\x59\x90\xbf\x86\x98\xa7\xce\xed\xfc\xa8\xb7\x66\xb8\x07\x10\xee\x69\xed\xba\x9e\xc7\x81\xfa\x26\xd2\xd1\x1a\x74\x84\x79\x21\x3d\xc3\x58\x47\x41\xbf\x2d\xeb\x48\xa8\xe5\xcb\xf8\x30\xfb\xa4\x93\xfe\xde\xc1\x3c\x1e\xf6\x66\x1b\xd1\x8a\xb3\x77\xed\x48\x42\xd8\xa2\xbc\xed\xa8\x7f\xa3\x22\xdc\x09\x51\xde\xb3\x84\x99\x37\x7b\x82\xc3\x09\xa7\xdc\x53\x78\x84\x56\xe2\xdd\xdb\xce\x52\xe4\xd9\x35\xb0\x44\x8d\x7b\xb4\x72\x1d\xdb\x1a\x9a\xe1\x11\x6a\x42\x1d\x5d\x94\x60\x69\x7c\x6c\xce\x61\xbb\x7e\x27\xe7\x6b\x98\xd7\x17\xbc\xdb\x83\x66\xe5\xba\x2a\xae\x13\xe4\x73\x81\x51\x55\xef\x94\xd5\xc4\x17\xf2\x70\xf6\xeb\x24\xda\x39\x9f\xb8\x1e\x96\x4c\x0f\x67\x0a\x36\x53\x7c\x98\x60\x13\x4c\xfb\x89\x61\x83\xb7\xd3\xce\xb4\xaf\x31\xf7\x77\x57\xfd\x5d\xd4\x7e\x7a\x3a\xac\x17\xa2\xb4\x39\x5a\xca\x68\xc8\xf8\x30\x71\x9b\x9b\xd1\x3c\x3f\x18\x66\x44\xfd\x18\x77\x9f\x57\xa8\xb8\xcd\xb6\x92\x75\x5b\xc1\x96\x95\x97\xe2\xaa\x42\x69\x26\xc6\xf6\x60\xa5\x95\x58\xfb\x53\x84\x57\x1d\xd8\x52\x4c\x3b\xfc\xfd\x41\xb7\x69\xfc\xc4\x2c\x7c\x41\x8c\xaf\xe8\x8a\xef\xb4\x62\x47\x49\xfd\x1f\x29\xd5\x7f\x08\x13\xd8\x86\x04\x52\xbe\x6a\xe4\x62\x3a\x61\x6e\x48\x5b\x46\x3c\x30\x7f\x42\x13\x80\x15\x61\x7e\xd4\x1e\x9e\x61\x3c\xbe\xe7\x25\x4a\x7a\x38\xef\xb7\x12\x1f\xc0\xee\xf1\x56\xda\x47\x4c\x8a\xe6\x7e\x1e\xe3\xce\xec\x8c\x41\x6b\x76\xd1\xec\x36\xa9\xd8\x43\xed\xd4\xc1\x29\x9a\xe6\x91\xee\x81\x58\xfa\xbc\x42\x38\xe3\xa7\xb5\x7c\x98\xe3\x8a\xcd\x98\xff\x12\xdd\x9d\xc6\xf5\xb1\x3b\xc3\x98\x07\x13\x3d\x95\x66\x5a\x82\xef\x5c\xe2\x0b\x1d\x6b\xbb\x3a\x84\x6d\x08\x31\x75\x8f\xf5\x8d\x21\x65\x95\xa3\xfb\x4f\x12\xf3\x20\x41\xbf\x90\xce\xc2\xf1\x9d\xaf\x51\x64\x8b\xcf\x78\x4e\x2b\xc0\x11\xbd\x4f\x84\x13\x1f\x92\xf8\x1f\x32\x5e\xcc\x3e\x49\x27\x66\x37\xf1\x00\x36\xa5\xad\x64\x3d\x2c\xa9\x1e\x98\x4f\x27\xd6\x7b\x5a\xfc\x75\x13\xeb\x5f\x7c\x08\xa6\xf9\x32\xe7\xe9\x36\x42\x17\x67\xe4\xec\xa0\xd6\x9e\x3a\x2e\x82\xf6\x51\x16\x93\x77\x53\x2f\x0c\xeb\xc1\xfc\xa7\xfe\x9f\x98\x07\xd4\xa3\x8a\x59\x1a\x06\xce\x07\xc9\x6f\x9d\x96\xf1\x79\xec\x77\x92\xb4\x73\x4f\xbd\x0e\x1a\xbf\xa9\x5f\x9a\x52\x9d\x93\x54\x8b\x6e\x34\x8f\x53\xbb\x0d\xa1\x95\x39\xc5\x9a\xf9\x0f\xa9\x7a\xbc\x12\xa7\xca\xad\xa4\x91\x99\x5c\xc9\x0c\x9d\xd4\xce\xfb\x08\x07\x4d\xf6\x38\x41\xfe\x26\xd5\x9c\xa3\x08\x94\x64\x5f\x46\x38\x66\x92\xd9\xc3\x19\xfc\x7b\x1f\x88\xe1\x7d\x42\xe2\x81\x1c\xad\xe6\x78\x51\x97\x17\x13\xe0\xe6\x4f\xe7\xa5\x35\xfb\x99\xdf\xb7\x4c\x9f\xe3\xb8\x8c\x07\x24\xab\x8b\x35\x3b\x96\x79\x21\x76\xd3\xf7\x10\xbb\xc2\xda\x81\xf9\x30\xe3\x26\xc5\x50\xe6\x65\x68\x65\x1c\xcd\xd2\x3e\x89\x87\x28\x9e\x1a\xfa\x33\x2f\x44\xdf\xf2\x04\xc5\x19\xad\xe2\xe4\x46\xec\x7f\x9a\x74\x32\xcf\xfc\x00\xda\xa1\x64\x46\x34\xe1\x93\x5c\xc7\xae\x12\xef\x65\x30\xcd\x83\x8c\x61\xd6\xd4\xb2\x19\x87\x98\xb1\x9a\xf1\x65\x19\x55\x9c\xc9\x2c\xde\x44\x4c\xcf\xf4\x73\x5c\x4f\x2b\xe3\xfb\x71\x8a\xd8\x19\xda\xac\x4c\x70\x36\xec\x12\xfd\xe2\x99\xaa\x3f\xe8\xf5\x69\xbf\xd7\xd4\xf2\x67\x02\xfe\xa6\x13\x51\x4a\x81\x40\x0a\x92\x89\x52\x1d\x8c\x63\x54\x07\x62\xed\x86\x4d\x74\xf3\x60\x85\xe3\x56\xda\xff\xfd\x37\x1e\x90\xbd\xe7\x3e\xe2\x35\xd8\x6e\x3c\x40\x6a\x23\x96\xc6\xdc\xdf\xa3\x76\x1c\x26\x16\x97\x4c\x17\xc7\x34\xf9\x04\x65\x22\x3a\x0f\x3f\x49\xe3\xa7\xc5\x5b\x56\xa9\x68\x30\xec\x8c\x34\x0e\x64\x7c\xa0\xdc\x97\x7c\x83\x25\xdf\xad\x09\xcd\xc8\x82\xc6\x9d\x69\x5d\xcc\x4b\x34\xa3\xad\x56\xde\x6c\x0b\x8a\x17\xf9\xb7\x67\xd3\x8a\x93\x9f\xb3\x84\xe2\x48\x7e\xe6\x7a\xaa\x07\x93\xef\x15\x49\x8a\x35\x79\x73\x8f\x50\x5c\xcd\xfd\x74\x96\x3e\x9f\x97\xcc\x4a\x0c\x39\xd1\xb7\x69\xfe\xe4\x8c\x7a\x49\xbc\xca\xec\xfd\x5f\x69\xfe\x64\x4a\xeb\xc5\xd9\x30\xc6\xfd\x53\xa9\x3e\xce\xea\xad\xcc\x6b\x5c\xf2\x17\xcf\xef\x5f\x3c\xa0\xd8\xbd\x54\x47\xca\xb1\xfd\x7e\x3a\x77\xcd\xc8\x3b\x48\xbd\x62\xb3\x2d\x9e\x32\x76\xe3\xbf\x30\xef\x6b\x44\x58\x12\x45\xad\x81\x3d\x4e\xd2\xf8\xe8\xa9\xc1\x7e\x77\x2a\x63\xbf\x9b\x7f\xce\xa0\x79\xa6\x11\x74\xae\x29\xfb\x2f\xab\x17\x75\x61\x22\x8f\x87\x92\xe5\x3a\xf4\x97\x17\x5b\x76\xa6\x9d\xfb\x45\x0f\xae\xec\x7a\xd1\x63\x02\xcd\x8b\x0b\x59\xb3\x68\x47\x5e\xe2\xe8\xb5\x93\xdf\x0f\xa0\xf8\x78\xb1\x78\xa7\x2e\xdb\xc3\xc4\xe8\xb9\xb8\x28\x8d\x76\x3a\xe7\x3d\x8b\xe8\x09\x8b\xcf\x5f\x27\x1d\xaa\xa2\x39\x55\x34\x5f\x8a\x0b\x3e\xd2\x88\x2e\x7c\x2d\x90\xae\x48\x9e\x92\x40\x71\x83\xf9\x42\xcb\x36\xd6\xe5\x01\xb9\x6d\xd8\x4f\x51\x46\xc6\x03\x9a\xe5\x70\x84\xe2\xa3\x6d\x15\xf7\xb7\x55\xd6\x09\xea\x85\xb1\x01\xc9\x94\x8f\x19\x0a\xd6\x49\xe9\x7b\xf2\x34\xad\xb7\x46\x85\x99\x34\x9a\x3b\x84\x67\x93\x57\xcd\x77\xe7\x53\xd4\x53\xfd\x5a\xb4\x84\xfd\x2f\x49\x63\x5b\x21\x65\xf8\x2a\x82\xb4\x29\x42\x95\x57\x71\xc6\xa2\xac\xba\xdf\x53\xfe\xf7\x71\x94\x2b\xac\xf8\x8b\xf9\x0f\x57\xe0\x4e\x23\xb7\xec\xe6\x5a\xda\x7f\x56\xa8\x87\x52\x4f\x94\x27\xed\xa7\xf9\x5e\xde\x3d\x85\x76\x68\xe5\xa1\xf9\x94\x5b\x2e\x37\xbe\x4a\x4c\xf8\xf2\xa5\x55\xd4\x13\x97\x84\x1a\xbe\x59\x62\xf9\x83\xc6\xdb\xc5\x2b\x3c\x2e\xb8\x7e\x92\x57\xf5\x3e\xda\xad\xb9\xfb\x72\xfd\xbb\xb9\x6f\x0f\xd3\xfe\xd8\xe1\xe7\x51\x8a\x7f\xd3\x0b\x4f\xb0\x6e\xa0\x54\x1f\x6b\xe2\xfe\x53\x34\x0f\x46\x15\x72\x7f\x0f\xca\xce\xa0\x75\xa1\xf7\x96\x2c\x9a\xd5\xdd\xf3\xf2\xe8\x57\x0c\x9e\x16\xd2\xac\x6d\xa2\x7c\x81\x76\x3b\x6a\x0f\x2e\x49\x19\x4e\x19\x1f\x48\x96\xf9\xbf\x95\xd4\x88\xc6\xf3\x2d\xe3\x76\x14\x91\x6e\xde\xee\x43\xcf\x7d\x33\x73\xcc\x68\x7e\x7f\x5a\x32\x5b\xe6\xcd\xdd\x32\x5e\x43\xfd\x7c\xab\x2a\x84\xda\xed\xd6\xd6\x18\x9a\x2f\x37\x1f\x25\x52\xfb\xdd\xbc\x99\x4b\x19\x91\xeb\x1f\xb8\x72\xcd\x0d\xfb\x7b\x74\x42\xba\x1e\x5f\x4d\x2b\xf8\xd5\x0a\xae\x13\x53\x5e\xc5\x3c\xa1\xb2\x0b\x32\x3c\x4b\xc6\xff\x30\x7c\x5a\xcb\x83\xf8\xbb\x0a\xe8\x92\x06\x7c\x8c\xe7\xd7\x35\x1b\x01\xc3\xf1\x40\x75\x77\x71\x6f\xf4\x1b\xde\x7f\x00\xe8\xbf\xbb\x56\xd7\xff\x8a\x07\xdf\x57\x95\xd5\xb1\x2f\x79\x03\x4c\xb9\x56\xab\xe7\x9e\xff\x4e\xdc\x83\x00\xd9\x6f\x01\x77\x4f\xc6\xa9\x57\xcc\x04\xb2\x86\x03\xeb\x8c\x81\xac\x30\x20\xc4\x99\xef\xbd\x46\x56\x01\x99\x97\x80\x83\x4f\x6a\xef\xbb\x67\xc5\x00\x39\x6d\x81\xac\x3c\xe0\xd2\x0c\x20\x4b\x8b\xef\x92\x9e\x2b\x02\x5e\xbe\xad\xad\x03\x92\xee\x58\x8f\xff\x90\x5f\x0f\xff\x97\xf4\x0f\x64\xf7\xc0\x7f\xe7\x7d\x90\xde\xc5\x4f\xa0\x43\x23\xe6\x7f\xb4\x8d\xab\xe5\x3d\xbc\x1d\x2e\x9e\x11\x80\x97\x56\x40\x77\x05\xe0\x91\xd8\x1e\x3d\x81\xca\x1f\x80\xa9\x3f\x70\x4b\x13\x18\x70\xa1\xb6\x1d\x2e\x69\x03\x63\x0f\x70\x7d\x0a\x1b\x25\xe6\x73\x4c\x6f\x02\x88\x7d\xe5\x1c\xc4\x78\xbd\x78\x52\x39\x73\x17\x58\xfa\x09\x38\xed\x04\xf8\xfa\x01\x69\xff\x00\x5b\x46\x30\x66\x13\xe1\x07\x9c\xf9\x06\xc4\x7d\x02\xce\xae\xe4\x76\x38\x3b\x93\xef\xf5\x66\x64\x02\x97\xdf\x03\x99\xeb\x80\x7b\xd1\x1c\x7d\xab\x53\x6a\xeb\x80\x9c\x92\xf0\xcc\xa4\xa0\x7a\xf8\xbf\x84\xff\xc6\x8d\xad\xc7\x7f\x38\x0a\xb4\x4b\xaf\xe5\x7d\x88\x31\xb4\xd5\x00\xe0\xfb\x62\xd6\x79\x78\xa7\x0e\xb4\xdd\x09\xbc\x5e\x09\x18\x6c\x02\x9e\x99\x03\x9d\x97\xb3\x26\x49\xd7\x3c\xe0\xee\x26\xa0\xa7\x27\x70\xd3\x8d\xeb\xe5\x94\xd7\x30\x3e\x51\xba\x86\xef\xf9\x17\x35\x02\x2c\xe4\x80\x3c\x1d\xc0\xf6\x13\x90\x73\x05\x70\xf2\x03\xce\x5a\x03\x6e\x6d\x19\xc3\x5e\x1a\x2f\xee\x22\x98\x1f\x94\x6a\xc6\x9a\xe4\x29\xad\x80\x9d\x72\xc0\x29\x1b\x20\xae\x17\xe3\xd9\x49\x35\x8c\xe5\x88\x63\xe8\x4c\x10\x50\xe6\xce\xaf\xef\x16\x00\x67\x1b\x01\xd5\xb3\xb9\xfd\xfe\xce\xab\xe5\x01\xd5\xf7\xff\xff\xc2\x7f\x10\xed\xcf\xd6\x8c\x43\xc9\x78\x0f\x1f\xf6\x01\xcd\x55\x78\x1c\xb4\x28\x06\xaa\xec\x81\x36\x6d\x98\x07\xd5\xbe\x3f\xe3\x9c\xdd\xac\x80\x1b\xd7\x01\x93\xc3\xc0\xe5\xd1\xc0\x80\x49\xc0\x85\x1e\xc0\xb0\x7f\x80\x7c\x39\x60\xfc\x55\x20\xf7\x28\x30\x55\x07\xc8\x08\x01\xc4\x13\x4d\x9a\x2e\x30\xd7\x8c\xef\xfb\x7a\x15\xf3\x7d\xef\xd5\x43\x81\x44\x0b\xf1\x24\x09\x24\x35\x03\xc2\x8d\x80\x93\x11\xc0\x81\x34\x20\xa9\x37\x70\xe2\x1a\x70\x32\x9b\xfb\x3c\xf9\x06\x70\xf9\x3a\x20\xae\x4e\xf7\xac\x80\xd4\x3d\xc0\x9b\x4b\x40\x6a\x30\x20\x74\xff\x0d\xff\x97\xc6\xff\x7e\x09\xd7\xda\x2b\xdd\x67\xfd\x37\xfd\x07\xd2\xfb\x90\x78\x1f\x32\xfb\x49\x1d\xd0\x8a\x01\xde\xef\x00\xb4\x5f\x01\xcf\x77\x02\x8d\x67\x03\x8f\x7c\x81\xe6\x5f\x80\xbb\xf7\x81\x36\xc1\xc0\xad\xf7\x40\xa7\x30\xa0\xfc\x29\xd0\x7d\x0f\x70\xb1\x0c\xe8\xa3\xcf\xab\xe3\xa0\x6c\x20\x67\x1e\x30\xa6\x03\xf3\x5b\xac\x2f\x00\x69\x6d\x81\xe9\x4f\x81\x93\x69\x80\xb3\x38\x6f\x1f\x00\xee\x69\xc0\x09\x67\x60\x55\x04\xd7\x2f\x09\x8c\x00\x12\x5c\x81\x50\x4f\x20\xde\x05\x88\x6e\x0a\x1c\xb3\xe0\xbb\xd1\xc7\x3f\xb1\x56\x86\xf8\xff\x97\x04\x20\x31\x00\xf8\x43\xe0\xd7\xd5\x02\x70\xc2\x14\xf8\xb9\x0f\x88\x1f\x5d\xcf\xff\x7f\xea\xf1\x1f\x1a\xd5\xc5\x83\xc5\xff\x74\x52\x38\x2e\x34\xdc\x03\x7c\x9d\x0d\xa8\xfd\xc3\xba\xe6\x2a\x47\x80\xea\x3c\x40\x2d\x09\x78\x3e\x1b\x50\xbf\x01\xdc\xef\x0e\xe8\xec\x02\x6e\x19\x00\xcd\xc2\x80\xab\xf7\x01\xfd\x81\xb5\x75\x1e\x2e\x6c\x00\x7a\x5a\x00\xb9\xa1\x8c\x73\x67\xa5\x02\x23\xda\xb3\x56\xbf\xb8\x1f\x10\xfb\x73\xaa\x1f\xe3\x5e\xe2\xfc\x90\xe1\xfe\xf1\x02\xe8\x44\x7b\xc4\x9b\xf1\xcd\x23\x72\xc0\x0e\x7b\xe0\xa0\x1b\x63\x81\x87\x67\x01\xc7\xdb\x30\x4e\x98\x35\x04\x38\xea\x00\x94\xeb\xb0\xbd\xe7\x00\xc4\x9f\x00\x5e\xbf\x07\xe2\x25\xfe\x43\xac\x42\xdd\xfe\xff\x55\x07\xc3\xbf\x2e\x0f\x40\x86\x87\x0b\x92\xde\xc7\x3f\x31\x80\x9c\x31\xeb\xbf\xc0\x13\x78\x9b\x09\xc8\x2f\xad\xc5\xbb\x1f\x9f\x04\x14\xcf\xd7\xf2\x1e\x6e\x3f\x01\xb4\x03\x99\xff\xd2\xf4\x03\x70\x21\x1a\xd0\xbf\x02\x14\xbc\x02\xba\x1c\xa8\xd5\x3b\x38\xdb\x0e\x30\xbb\x0f\xa4\x0e\x00\xc6\x2d\xe5\x7a\x16\x53\xc0\xfc\x0e\x71\x7e\x1c\xee\xc5\xb8\xff\xa1\x1d\xc0\xf2\xd9\xac\x09\x23\xb6\xc3\x81\x79\xc0\xb6\x4a\xe6\x73\x89\xed\x10\x97\x04\x24\xca\x01\x07\x63\x81\xec\x53\xfc\x39\x71\x3c\x88\xf6\xbe\x3e\xaf\x29\xef\x4e\xd5\xc6\x7f\x99\xff\xb2\xba\x2f\x3b\x96\xd4\xe3\x01\x58\xfd\x3b\xff\x41\x86\xfb\xbf\xd7\x61\xfb\xf6\x1e\xdb\xfa\xbc\x87\xbb\xab\x6a\x57\x7f\x85\x42\xe0\x72\x32\xa0\xf9\x98\xf9\x4f\x4d\xab\x80\x73\xef\x81\x76\x5a\x40\xe6\x65\xc0\xe8\x0e\x90\x1a\xcd\xf5\x1e\x8e\xb7\x04\x86\x69\x00\xf1\x1d\xc5\x3d\x39\xd7\xaf\x98\xae\x03\xc4\x35\x05\xe6\x2d\xe7\x3a\x16\x4b\x7e\x02\x31\xdd\x01\x7f\x05\x20\xda\x13\xd8\x16\xc2\x96\xfe\x93\xf4\x0f\x44\x9b\x55\x08\x44\xbf\x01\xca\x82\x81\x98\x48\xe0\xc1\x21\xd6\x4b\x10\xd7\xb6\xbd\x7f\xd5\xe5\xbf\xc8\xfa\x7d\xf3\xfd\xba\x7e\xfb\xd5\xe3\x03\xfc\x07\xef\xa1\x1e\xff\xa5\x3e\xef\xe1\x56\x10\xdb\xcb\x12\x9e\x7b\xbe\x31\xa0\x38\x92\xf9\x5f\x62\x7b\x64\x66\x01\x7a\x39\x1c\xff\x3b\x64\x00\x27\x26\x00\x3d\x1f\x03\xf1\xd9\x80\x99\x07\xeb\x5c\x88\xf3\xe3\x80\x1d\x30\x6d\x20\x73\xe2\xe6\x8c\x66\x3d\x87\xc5\xfa\xc0\xee\xc7\x80\xef\x38\x60\x77\x14\x10\x72\x1c\x88\xec\x09\x44\x3d\x07\x22\xef\x03\xc7\xaa\x80\x5d\xc5\x40\xf6\x64\x60\xb7\x36\x50\x16\x00\xec\x7a\x0c\x54\x39\x01\xbb\x6d\x80\xcf\x83\x6b\xe7\xbd\x4c\x07\x62\xe3\x84\xba\x7e\xff\x37\x1d\x88\xff\x9f\xee\xc7\x7f\xab\xf7\x71\x59\xda\x15\x16\xac\x66\x9b\xbd\x08\x90\x3f\x09\x9c\x0a\x00\x1a\x79\xf0\x1a\xd7\xca\x03\x38\x3a\x03\xe8\x5a\xc4\x7c\x17\x71\x5d\x15\xfb\x76\xa4\x39\xb0\xa7\x17\x30\x69\x05\x10\xb1\x12\x70\x88\x02\x76\x36\x07\x3c\x0c\x99\xc7\xe3\xe3\x01\x84\x16\x02\x5b\x27\x01\x3b\xca\x80\xa8\x01\xfc\xfa\x84\x35\xf3\x1e\xb2\x5b\x01\x61\x53\x80\xf2\x11\x40\xd8\x64\xe0\xb1\x16\xb0\x63\x3a\xf0\xa5\x55\xed\xb8\x5f\x3f\xbe\xae\xdf\xab\xbd\xeb\xf1\x20\x1e\xd5\xe5\x03\xd4\xe7\xbf\xd4\xc7\xfd\xef\x3e\xaa\xbb\x0b\x96\xe9\x5e\x9c\x97\xda\x29\x47\x8d\xed\x59\xde\x96\x23\xf1\x2d\xa0\xa4\xc3\xfe\x37\xde\xcf\xe3\xbf\x6d\x39\xd7\x6d\x32\xf6\x00\xf6\x14\x02\xe6\x56\xc0\x4e\x07\xc0\xc2\x0f\xd8\x56\xc3\xd8\x7b\x48\x03\x60\x81\x0f\xb0\x55\x8e\x75\x41\x82\xc3\x81\xa0\x4d\x40\xd0\x7a\x20\x6a\x28\xb0\xe5\x27\xf3\x8b\x37\x7e\xe6\xbd\xe5\xa6\x23\xc0\xe5\xb9\xc0\xa6\xd1\xc0\xc3\x17\xc0\x86\xbb\xc0\x47\x3b\x20\xe0\x36\x73\xde\xd6\x1c\xa9\xeb\xf7\x2f\xdd\x8b\x84\x7f\xe7\x41\xd4\xd7\xbd\x78\xb6\x96\xed\x1f\x12\xef\xe3\xa6\xa4\xf3\x51\x21\xa9\xea\xca\x74\x1f\x0a\x02\xd9\x66\x36\x60\x2b\xe3\x7f\x1c\x95\xd4\x35\xc5\x53\x9a\x4a\x23\x1e\xf7\xcd\x92\x79\x8f\xdc\xc5\x83\x75\x3c\xc4\x78\x11\x72\x12\x18\x53\xc1\xfe\x4d\x33\x05\x36\x1c\x03\xe6\x7a\x02\xeb\xcd\x80\x15\xdb\x39\x56\x6e\x2e\x06\xc4\xb3\xa5\xd8\x76\xfe\x76\xac\x9d\xe3\xfb\x05\xc8\x9a\x09\xac\xdd\x07\x94\x5e\xe1\xb1\xf3\xc0\x1f\x58\x33\x05\xf8\xb3\x2f\xb0\xf2\x53\x5d\xfe\x87\x4c\xef\x43\xe6\xaf\x4c\xf7\xc2\x41\xd2\xc8\x9a\x25\x7d\xee\x6d\xeb\x7f\x9f\x07\xb7\x25\x3f\xaf\xc8\x4e\x89\xd2\x7c\x28\x94\xea\xa1\x64\x3a\xb0\x3d\x25\x7d\x5e\xc6\xff\x38\x2c\x55\x21\xe6\xd3\x1b\x10\x51\x0c\x34\x74\x01\xb6\x2f\x04\xda\x58\x01\xc1\x7f\x01\xc6\x0f\x81\x0d\x4f\x80\x61\x1e\xdc\x7f\x36\x5f\x00\x3f\x2b\x60\x8e\x2b\xb0\xc6\x19\x58\xa6\x06\xac\x3a\x0b\x6c\x2c\x01\x56\x0c\x04\x76\x6d\x03\x96\x77\x61\x5e\xad\xb7\x2d\x20\x9e\xe4\x97\xa4\x02\xa5\x2f\x58\x6b\xe8\x8f\x44\xc0\x2b\x13\x78\xf7\x06\x58\xb4\xa5\xae\xdf\x8e\x95\x75\xfd\x9d\x26\x71\x86\xa7\x6e\xaa\xcb\x83\xa8\x3f\x0f\x2a\x97\xb2\xbd\xe6\x5f\xcf\x7f\xe9\x73\xe7\xe2\xd8\xca\xf8\x1f\xb2\x2c\xdb\x51\x5d\xb6\x32\xfe\x47\xa4\x0b\xdb\xad\x59\x80\x5c\x63\x60\xd3\x37\x40\xf7\x06\xb0\xce\x1e\xe8\xbc\x0b\x58\x9b\x03\x0c\x8c\x00\x56\x9d\xc0\x64\x8b\xc3\xc0\xb2\x21\x72\x0e\x8e\xf2\xc0\xe2\x22\x79\x83\x25\x76\xc0\xa2\x3b\xf2\x3d\xd7\xf7\x01\xdc\x67\xcb\x95\x45\x1c\x04\x16\x4c\x97\xeb\x79\x64\x1c\x30\x5f\x13\x7f\x9c\xb9\x06\xcc\x5d\x04\xc3\x8b\x5d\x00\xd7\x36\xc0\xdd\x43\x80\xcb\x57\xe0\x8d\x06\xe0\x3c\xa0\xae\xdf\xb6\x76\x92\xbf\x2d\xd9\x4e\x94\x78\xd5\x13\x76\xb3\x1d\x23\xed\xbb\xeb\xf3\x5f\xae\x8f\x64\x5b\x9a\x54\xd7\xff\x6c\xe9\x76\xdd\xe9\xac\xba\xfe\xc7\xbf\x54\x18\x47\xfe\x9f\x53\xa5\xac\x40\x64\x95\x1a\xe1\xc6\x5b\x5d\x35\xc8\x06\x36\xd4\xa0\xfc\xec\xaa\x6f\x0d\x36\x6b\x98\x00\xde\x23\xb5\x82\xda\xd8\x01\x9e\x9d\xb4\x8f\xf6\x4a\x05\x16\xf8\x35\x6e\x3a\x66\x0b\x30\xd7\xb2\xf1\xd7\x19\x29\x80\x73\x8c\xae\x83\xc7\x24\x60\x76\xaa\xee\x60\xbf\x58\xc0\xbe\x6b\xe3\x6f\xa1\x01\xc0\x8c\x8a\xc6\xc9\x71\x2b\x01\xbb\xbc\xc6\xba\xa7\x1c\x81\x69\xd6\x3a\x86\x45\x39\xc0\xd4\x93\xda\x6b\x6e\x3e\x00\xa6\x58\x36\x1a\xf2\x52\x09\x98\xdc\x4b\xab\xf4\xc7\x16\xc0\xb2\xbc\x21\xe5\x61\xc7\x59\x69\x90\x5e\xf7\xc8\x87\x2a\xca\xa2\x1d\xde\x4f\x89\xf4\xfd\xcd\xdb\xc9\x7d\x14\xa4\x3b\x02\xa2\xad\xec\x2d\xc5\x81\x17\x75\xfd\x2f\x92\xf4\x92\x32\x6b\x58\x17\xe4\x94\xa0\x42\x68\x42\x62\x5e\x03\xc2\x3f\x0f\x6b\xea\x10\x0e\x11\x7d\x9d\xab\xb1\x87\xc7\xeb\xd1\x8a\x13\xec\xd3\x92\xf2\x99\xfe\x29\xfa\x34\xa2\x96\x57\xb1\x5d\xa0\xd1\xe6\x9c\x5c\x3e\x30\x67\x62\xbb\x09\xcd\x9a\x00\xf6\x45\xed\x66\x19\x46\xca\x1f\xb2\xdb\xd4\xbe\xd5\x90\x74\x85\xa3\x93\xe3\xdb\x0f\xb5\xb1\x51\x8c\xb6\xda\xd9\x5e\xce\x35\x58\x69\xed\xc4\x26\xed\x56\xad\x9c\xaf\xdc\x67\xec\x47\x83\x6b\x41\x97\x94\x33\x46\xfb\x1a\xe8\xee\x9b\xad\x22\x37\xb2\x55\xdb\xb5\x89\x31\x2a\x2d\x86\xa7\xb5\x09\xc9\x35\x57\xbe\x3a\x6c\x41\x1b\xc5\x2b\xd9\xca\x1e\x43\xbd\xf5\x57\x3d\xd1\x52\x4a\x31\x7f\xaa\xaf\xf9\xb5\xb7\xe2\x9e\xc1\x96\xad\x15\x04\x41\xc1\xbd\x7f\x66\x4b\x7d\x41\x90\x37\xe9\xb7\xb1\x69\x07\xd1\xdf\xde\xdf\x1b\xd3\xfd\x55\x53\x85\x46\xbb\x44\x6b\x1c\xab\x39\x59\xb4\xb7\xa4\x7d\x94\x8c\xff\x51\xec\xcc\x7e\x67\x05\x2b\x13\xce\x75\xea\x01\x57\x53\x4e\x94\x6f\x4a\x3b\x8b\x5f\xfc\x97\x0f\xed\xa8\x05\x43\x97\x75\xa1\x2c\x51\xd0\xa4\x6e\x84\xeb\xf8\x3f\x63\x82\xcd\xf2\xc9\x3d\x09\x47\x5f\x50\x63\x4c\xb7\x65\x66\x8d\x33\xa1\x9d\xd9\xe4\xcd\xbd\x8e\x37\x4c\x07\x2c\x34\x7a\x6b\xb5\x1b\x2f\x3f\x6b\xf4\xca\x5e\x2b\xfa\x1a\x29\xcd\x18\xd6\xa3\x57\xc0\x04\x15\xe5\x87\x66\xc3\x7b\xa9\x39\x44\xa8\x1a\xf6\x6f\x60\xda\x69\x71\x81\xda\xb0\xde\x86\x26\xb9\xeb\x13\xd4\xad\x4d\xe6\x1b\xaf\x8d\xcc\x51\xff\xa3\x27\x7a\x06\x1f\x5d\xab\xa1\x64\x64\xd5\xc3\x29\x73\xa2\xfa\xe5\xee\x9d\x8d\xce\x5f\xfa\xa6\xee\xd6\xcd\xcf\x48\xfb\x41\x1f\xb5\x94\x6e\xe3\xba\xdf\xf9\xe0\xa7\x1a\x6a\xe8\xda\x2d\x41\x10\x94\x1f\x74\x19\xdd\xa5\x9b\x20\x28\x5d\xea\x68\xd2\xb1\xa5\x20\x28\x46\xb4\xfb\x7f\x94\x7d\x77\x54\x55\xd7\xf3\xfd\x06\x6c\xd8\x45\xb0\xa1\xd8\x11\x0b\x82\x5d\x10\x14\x05\xb1\xa0\x74\x11\x44\x10\x50\x54\x90\xde\x41\xa5\x09\x48\x2f\x8f\x22\xa2\x54\x95\xa2\x82\x80\x88\x1d\x0b\x96\x58\x31\x1a\x6b\x6c\x58\x62\x12\xa3\xd1\x24\xfa\x31\xb1\xf0\x5b\x77\xe6\x3e\x10\x4c\xd6\x77\xfd\xfe\xc8\x3a\x01\x9e\xef\xbd\x39\x77\xce\x9c\x39\xb3\xf7\xd9\xf3\x61\x98\x6b\x53\x93\x5c\xf1\xb0\xc1\x43\x0a\x9a\x9a\xe4\xfa\x0f\xc9\x18\x3c\xb5\xa9\x49\x36\xb7\x99\xff\xf2\x5c\x96\xbe\xf7\xd1\x1e\xdd\xa8\xde\xb6\x7f\x58\x3f\xaa\x7e\x4a\xfb\x1f\xe5\x37\x8d\xa2\x5b\x4e\xd9\xdf\xf1\x6d\xd3\x14\x4f\x0d\xba\xdf\x1e\x6b\x31\x99\xea\x9b\xe1\x97\xb8\x7f\x8c\xff\x23\xe6\x85\xb8\xa6\xcc\x24\x8f\xb2\xdf\x3f\x8b\x75\xef\x1f\xcc\xa6\x6e\xc9\xb3\x7f\x35\xd0\x96\xcb\x02\x74\xe6\xce\x1d\x33\x60\x34\x32\x27\xff\x64\x10\x35\x3e\xbd\xdd\x50\x8d\x70\x03\x37\x83\x81\xed\x93\xc7\x6a\x19\x8c\xb2\x7e\xd4\x61\xf2\xa8\x40\xfd\x6a\xb7\x9f\x3a\xa4\x8c\x70\xd1\xef\x12\x1e\xde\xa1\x66\xe8\x2f\x73\xec\xd3\x5d\x3b\xe4\x0d\xe9\x37\x7b\xd9\xae\x90\x0e\x4e\x2a\x19\x7a\x67\x0f\x2e\x6e\xff\x6e\x50\xde\xac\x57\x17\x4c\xda\x07\x0f\xbc\x37\xab\xc7\x8f\x66\xed\xce\x0e\xd4\x99\x99\xf8\x7a\x81\xdc\x0f\xca\x5b\x75\x4d\x9a\x9a\x64\xf3\x07\xac\xd5\xea\xd4\xd4\x24\x53\xd2\xff\xd8\xe4\x1f\x9b\x9a\x50\xaa\xf4\x7e\xc2\x66\xe1\xf9\x2b\x79\x6a\x90\xee\x41\xef\xb1\x63\x49\xc7\x59\xaa\xff\xd3\xcc\xff\x89\x56\x21\x3c\xaa\xec\xc1\x48\x39\xb6\x9f\xd5\xd6\xb3\x2e\x4c\xa6\xaa\x66\xca\x21\x2d\xaa\xf3\x6f\xf6\xd1\x21\x9d\x9c\x30\x47\x7d\xaa\x9a\x06\xd8\x71\x37\xfa\x75\x7a\xf3\xe9\x7d\xec\xdf\x1b\x11\x5a\x6f\x51\xc6\x7a\x02\x06\xef\x4c\x29\xf2\x4c\xba\x6e\x41\x28\xe6\x98\xbe\x96\xe1\xbd\x14\x80\xe1\xe6\x96\x33\x46\x0d\x92\xd5\x51\xb9\x67\xb9\x53\xf7\x17\xd9\xe5\xca\x8b\x2d\x73\x2c\xaa\x64\xde\xf6\x3f\xb8\x64\x9c\x8b\x3d\xd0\xe7\x2f\xcb\xfc\x8d\xba\x40\xef\xab\x16\x25\xa9\x63\x01\x85\x28\xf3\xc7\x45\xfb\x80\x9e\x67\xcd\xee\xd5\x44\x02\x3d\x9c\x4d\xcf\x9c\x8b\x05\xba\xcf\x32\x59\x7e\x27\x06\xe8\xfa\x87\x71\xc1\xcb\x09\x40\x57\x1d\x63\xea\xdf\xde\xb9\x7a\x3e\xe1\x76\x9d\x24\xfa\xfb\x84\xb1\x7d\xac\x1e\xe1\x16\x1d\xa2\x75\xa9\x0f\x46\xfb\xbe\x5a\xa4\x87\x70\xe8\x18\x77\x5d\xd8\x1f\x3a\x94\xbb\x08\xb8\x8f\xdd\x87\xaf\xf4\x6f\xb6\x4c\xd7\x21\xbf\x4f\x6e\xe4\x2e\xeb\x31\x3a\x6c\xef\xc6\x5f\x8c\x68\x67\xf0\x7f\x66\x4c\xb7\xab\x5d\x3f\x9b\xd3\x7a\x71\xdc\x64\x41\x71\x63\xe9\x44\x2b\xaa\x63\x2e\xea\xbd\x8c\x22\xad\x4e\x90\x1d\xe1\x81\x6a\x73\xed\xa9\xfa\xdc\x67\xaa\xd3\x9c\x0e\xb1\x40\xaf\x74\x27\x1f\x95\x72\xa0\xdb\x26\xa7\xcc\xa9\xe9\x80\x7c\xaa\x93\xc3\xe2\x6e\x40\x87\xf5\x8e\x0f\x9d\x26\x02\x72\xe9\x8e\xb1\x01\x37\x00\x99\x3e\x8e\xf2\xf1\x74\x33\xd4\x41\x25\x97\x90\x81\x15\xed\xf7\x11\x8e\x61\x77\xf9\x14\xc5\xf0\xe5\x7f\xfe\x40\xc8\xa4\xed\xb3\x17\xe4\x81\xcb\x4a\x3f\xd2\xfd\x78\x2b\x91\xf7\x60\x26\xea\xb8\x33\xef\x03\x58\x20\xf2\x20\x0c\x09\xef\xab\xde\xac\x46\xb7\x60\x77\x87\xb3\x5a\x72\x61\x7b\x2d\xaa\x76\x66\x67\xb0\xca\x7c\x9a\x82\x21\xd5\x9f\xe3\x4c\x17\x13\xef\x23\x1c\x66\xf4\xe9\x81\x12\x2b\x9a\x3f\x0f\x5f\x6b\xca\xac\x56\xfe\x65\x4b\x55\xf8\x65\x9f\xb8\x8f\x8a\xc9\x51\x07\xca\x34\xf4\x25\xab\x48\x91\x69\x42\xc3\x6a\xca\x50\x06\x0f\x74\x25\x14\xa5\x63\xb2\xc7\x1f\xbc\x22\x3d\x35\x95\xe8\xcc\xe2\x91\xa6\x41\x75\x67\x8f\xfe\xf3\xa9\xc2\xeb\x21\xc7\x9d\x39\xdc\x27\xf9\x92\xe7\xb9\xe5\xc5\x52\xdd\x76\xdd\xdf\x39\xb4\x32\x5d\x1b\xf6\x12\xb3\xc6\xe5\x1e\x2b\xc6\xbb\xa8\x5c\xa7\x4f\x58\x53\xf4\x94\x22\xb9\xf3\xf9\xf7\xc4\x68\x70\xd2\x64\x7b\xed\xc4\x79\xb0\x51\xe0\xd1\x4a\xbc\xe7\x6e\xa1\x24\x8c\xbb\x37\x33\x0f\xa8\xa0\x64\x36\x65\x4c\xd9\x0b\x59\xff\x27\x75\x32\xf3\x22\xe2\x54\x2c\xf6\x70\xfc\xb7\xa6\x8c\x21\xa8\xca\x96\x70\x0d\xcf\x89\x2b\x08\x6d\x74\x56\x60\x1e\x8c\x9d\xba\x33\x65\xa2\xe6\x2f\xd6\x90\x8e\x8e\x61\xee\x5a\x7a\x2a\xda\x61\x6e\x84\x07\x8c\x7e\xee\x4d\xbc\x99\x3e\x0f\xfd\xb8\x6e\x6f\x13\x2c\x9e\x6c\x83\xd2\x95\x68\x86\x83\xfe\xd2\xa0\x1d\x29\xe8\xb0\x21\x7d\xa3\x20\xf3\xe5\x54\xf9\x0e\x7c\xed\x45\x08\x7a\x40\x23\x2b\x89\x04\x68\x32\x72\xec\x7f\xb2\x8c\xde\xc1\xdf\xf9\x18\xe1\x5c\xbe\x65\x57\x48\x07\xdd\xe7\xfb\x47\x84\xc0\x78\x7b\xbe\x25\x8f\xf6\xc8\x67\x7b\x5d\xc4\x79\x58\xa5\xcf\xa3\xa3\x38\x1f\xcc\x8f\xd9\xd1\x6e\x2e\xbd\x5b\xf6\x0d\xee\x0f\x24\x09\xb7\x20\xbe\x46\x5c\xc3\x52\xc2\xb1\x22\xbc\xec\x68\x3d\x07\xd9\x38\xd2\xb7\xf3\x68\x64\xbb\xd7\xba\xb3\xea\xbc\x7d\x8a\x0b\xe5\x09\x56\xf1\xcc\x83\x59\xb4\xc8\x8b\x50\xba\x39\x3d\x7c\xa9\xca\x3e\xc9\x24\x80\x36\x90\x61\x6f\xf8\x76\x76\x8f\x8a\x8d\xfe\x6c\x7f\x84\x78\x7f\x33\xe2\x36\xef\xbc\x91\x9a\xea\x74\x2f\x3d\xfc\x98\x3e\x7d\xff\x08\x3f\x1b\x8a\x50\x91\xeb\xdc\x69\x85\x45\x84\x47\x44\xb3\x47\xa6\x3b\xf3\xc8\x4a\x02\xa1\x29\xb5\xa4\xb0\xb2\xd1\x8c\x73\xbe\x0d\xee\xac\x18\x1e\xf2\xea\x37\x52\x3e\x0a\xf1\x6b\x22\x44\xc6\x5f\xd4\x71\xf7\xfc\xa3\xa9\x95\x6e\x0c\xcf\x4f\xce\xff\x8c\x79\xff\xcf\xb1\x22\xfb\xe2\xc3\x97\x13\x0e\x2d\xd5\xc1\x09\xd9\xbb\x92\x56\xa5\x8f\xd6\x1a\x42\xd3\x5c\xb3\xf8\x7a\xb2\xd3\x25\x2f\xfa\x16\xd6\xbe\xac\x52\x61\xf6\x90\x79\x02\x73\xdf\x05\x53\xc6\xad\xad\xb5\x81\xe2\x84\xfa\x9d\x30\x3a\xb1\xab\xcc\x8c\xa4\x13\x4b\xe7\xb0\x18\x11\xef\x8d\x17\x99\xab\xf1\xb9\x7d\x52\x79\x64\xdc\x3f\x5e\x4d\x9f\xce\xfa\x71\x97\x96\x12\x1f\x24\xbe\xce\x95\x76\xaa\x38\xf5\x8d\x64\x4f\xfc\xfd\xb4\x8b\xf4\x73\x27\x46\x16\x63\x47\xd5\xd0\x19\x20\xe6\xd5\x19\xfa\x7b\x8c\xde\x4d\x52\x6c\x89\x9e\xfb\x82\x98\x1b\x9b\x24\xef\x45\x25\x03\xb6\x7b\xfd\x10\x1e\x03\x6e\xf1\xe8\x47\xfa\x29\x92\xa5\xac\x03\x94\x24\xcb\x34\x95\xc8\x46\xd6\x85\x09\xd1\x61\x5e\x84\x1f\xdc\xe9\x04\xe6\x96\xe1\x4d\xeb\x60\xb5\x78\xcb\xda\xee\x62\x10\x6d\xa8\xd2\xbe\x50\x0b\x53\x18\x2f\xd7\xab\x62\xd4\x6d\x4a\x18\xab\x56\x8c\x6e\x60\x36\x4f\xdf\x3f\xe3\x88\x37\xd4\x3e\x20\x49\x3c\x89\x65\x88\x15\x8e\xf4\xc2\x3e\x84\xc3\xa4\xaf\xe3\xcc\x23\xdd\x66\x36\xbd\x83\x24\xc7\x92\x32\xb3\x74\x37\xf6\x3c\xc9\x65\x66\x24\x48\xca\x93\xe8\xf5\x69\x0d\x8c\xac\x4b\x16\xb3\xb2\x40\xea\xa4\x93\x84\x8b\x25\x37\x7e\x4f\x7e\x94\xac\xf3\x84\x76\xea\x64\xb9\x77\x74\x86\x8a\x17\x75\x0e\x62\x86\xf2\x28\xed\x17\x14\x7a\x97\xea\x35\x1a\x4e\x74\x12\x88\xd1\x61\xbe\x57\xe8\x3c\x7e\xde\xd2\x7e\x58\x9e\xc7\x02\xe8\x69\xac\x3d\x14\x44\xf1\xcd\xa1\x8a\xfb\x05\xd9\x44\x32\x3f\xc2\x78\x37\xf3\x23\xe6\xcd\x8a\xa1\x8c\x7b\x86\x57\x2c\x9d\xe0\x35\x16\x24\x90\x82\xe1\xb0\xc6\x14\xd6\xb7\x5f\xc2\x28\x1c\x9a\x32\x1f\xb1\xfd\xdb\x16\x33\x83\x75\x5b\x97\xbe\x14\x99\xb7\xb9\x8d\xa5\x0c\x24\xc7\x68\x26\xc5\x8b\x9c\x93\xe6\xb4\x83\xe5\xbc\x5a\x45\x4a\x44\xdb\x36\x06\x51\x7c\xc8\xd1\x89\x63\x9e\x8c\x27\x2b\x31\x6c\xdd\xb8\x87\xf5\x63\x0e\xd4\xd1\x98\xdd\xff\x2a\x3d\x99\xec\x59\x8f\xc8\x03\xb3\x62\xdf\x50\xc4\xcb\xbc\xd4\x44\xfa\x10\xa9\x22\xce\x9d\xb0\x87\xc7\x38\x7f\xae\xd7\xb8\xd1\xf3\x0e\x0b\xf1\x24\x36\x41\xd0\x2c\x7e\xde\xde\x17\x82\xe9\x69\xb8\xac\xd8\x40\xfb\xc6\x4a\x09\xf3\x9e\x6c\x2d\x36\x91\xe3\x58\x44\xb0\xdd\x46\x25\x71\xb4\x7f\xcc\x96\x49\x22\xb6\x81\x96\x1c\xdb\x3b\xee\x5d\x3a\xe5\x97\x83\xcb\x32\x09\xcd\xee\xe9\x9e\x23\x9e\x50\x72\x45\x1e\xc8\x8e\x97\x32\xc4\xe3\x2a\x7c\xc4\xbc\xa0\xa2\x9a\x31\x97\xe8\xf7\x8a\x33\x29\xee\x15\xc5\x9a\x31\xef\x25\xcc\x69\x18\xff\xcc\xcc\xbb\x16\x9d\x18\x56\x22\x29\xb8\xca\x67\xfd\x42\xa7\xc3\x74\xd6\xcd\xbf\x72\x91\x3c\x35\xef\xda\x3d\xc2\x47\xf3\x23\x5e\xd1\xbf\xcb\x6d\xe0\x7e\x07\x52\x5e\xcc\x16\x51\x0f\x43\x42\x3c\xca\x88\x20\xb6\x3b\xe4\x6c\x00\xed\x07\xbe\xdd\x58\xff\xc8\x3d\x2d\x82\xbe\xff\xaa\x0f\xec\xdf\x2b\xba\xc4\xd2\xae\x2d\xd5\xc3\x31\x91\x24\x53\x5e\x31\xcf\x3f\x8d\x56\xf7\x4c\x65\xe6\x01\x4d\x78\x98\x45\xfe\xa0\xe6\xce\xac\x36\xe5\x99\xb9\xc4\x66\xe9\x7a\xa8\xd0\x85\xed\xdf\x79\x80\xc7\xb2\x37\x32\xc4\xeb\x28\x33\xe5\x38\x59\xd6\x30\x86\x74\x20\x76\xdf\x61\x25\xb7\x32\x53\x13\xd6\x83\x69\x70\xf4\xe2\xd1\x87\x66\xb2\xec\x41\x14\xe1\x97\xbb\x87\x64\x92\x9d\x65\x2a\x1c\x2f\x4b\xcf\xd6\x52\xa7\x8d\x92\x21\x67\xa9\x26\x52\xdc\xff\x16\xe9\x41\x14\xbf\x7a\x41\x3b\xf4\xae\xf3\xef\xa8\x2f\xc2\x0e\x91\x27\xd5\x9a\x17\xb3\xc1\x99\xfb\x9f\x05\x0c\xe5\x83\xb6\xa7\x62\x14\xcd\xea\x9a\x1e\x31\xb4\x4e\xa4\x7a\x38\xcb\x5e\x27\xd3\xa7\x59\x94\x30\x0f\x68\x91\x51\x06\xe5\x95\x06\xb2\x5b\x28\xee\x69\xeb\xf2\xf3\xd6\xf8\x3d\x97\xe2\xac\xaa\x1f\xb3\x97\xfa\x25\xee\xa4\x89\x96\xff\x5c\xda\xe6\xa4\x5e\xa5\x22\x43\xaf\xa8\xcc\xef\x4b\xcf\xb5\x3a\x9c\xf5\x40\xaa\x3c\x66\x50\x7c\xac\x1a\xba\x98\x3c\xac\xaa\xdc\xfe\x2e\xbf\xde\x4b\x91\x47\xee\x93\x53\xb5\x3d\x9d\xf2\x8d\x4a\xf7\x22\xfa\x66\x15\xaf\xaa\xc9\x0f\x2a\x74\x4e\x11\xf2\x5c\x1e\x76\x9d\xf8\x36\xe5\x8b\x9e\x10\xf3\xb3\xa2\xcb\x1f\x94\x11\xef\x2d\xff\x42\xa3\x94\x17\xc3\x3a\x3a\x81\x12\xe6\x7d\x79\x55\x45\xd3\x2e\xed\xfa\x38\x81\xf2\xe1\x55\xce\xcc\x73\xb3\x6b\x90\xa4\xb0\x1f\x64\xd0\x7c\x98\xa9\xe7\xd0\x6a\x9b\xf7\x78\x1b\xbd\x5e\xcf\x39\x8f\xe2\xbe\x54\x17\x47\x63\x7a\x31\xed\x56\xc3\x52\xb9\xaf\x88\x52\xd8\x1e\x9a\x75\x79\x95\x7d\xe2\x0d\x8e\xfd\xd5\x3c\x1e\x36\x00\xc5\x85\x23\xfd\x15\x29\xef\x39\xa4\xcf\xcc\xe6\x43\xe9\x5a\xe4\x17\x87\x4f\xb3\x9e\xd6\xc1\xbd\xcb\xc9\xef\x0f\x3d\xf7\xa0\x95\x7b\xb8\x73\x28\xfd\xfd\x90\x4d\x0a\xd5\x42\x0e\xbd\x29\xa0\x6f\x78\x70\x0c\xeb\x49\x1d\xca\xe0\xbb\x62\xb5\x9a\x0d\xcc\x87\x39\xf1\x78\x06\x7d\x6e\xd3\x6f\x0b\x79\xfc\x44\x3b\x41\x55\x2a\xcf\x43\x39\xf1\x8e\x7d\x7b\x70\x1c\x77\xab\x6a\xcd\x03\x72\x54\x60\x1e\x90\xad\xe2\x56\xf2\x17\xcb\x2a\xee\x13\xb5\xf8\x4e\x01\xe5\x49\xf3\x46\xb2\xea\x82\x6e\xee\x2e\xf2\xbe\x89\x79\xcc\x0b\x19\x5b\xc9\xfa\x30\x43\xc4\xe7\xae\x30\xb8\x8a\xf2\xb1\xf6\x7d\x6b\x44\x25\xdb\x66\x3e\xcc\x2a\x19\x5a\x29\xa7\xfa\x29\xd2\x27\x9d\xb4\x52\x25\x3f\xa8\xdb\xc5\x4c\xfe\xba\xcf\xac\xa7\x75\xa2\x89\xf9\x0f\xa7\xda\xad\xcb\xe1\x9f\x39\x52\x9f\xb8\xc3\x9d\xfa\x4e\x56\xf2\xbe\x71\xbc\x81\x99\x67\x75\xef\x8f\xb3\x1e\x8c\xf7\x05\xf2\xc0\x63\xf6\x9c\x4f\x1c\xef\xf3\x2b\xe5\x1f\xc7\xdc\x39\x4e\x1c\xde\xc6\xeb\xa2\xb6\x42\x98\x0f\xcf\xbc\xd6\x7d\xc1\x56\x99\x6f\xa5\xe7\x6c\xe7\xbf\x8d\xfe\xb5\x4d\x7d\x01\xf1\xa1\xcc\xdc\x78\xb7\x5e\x70\x6a\x17\xed\x4a\x06\xea\x65\x14\x2f\xa5\xba\x38\x1a\xc7\xf6\xd1\xeb\xd4\x0a\xaa\x69\xd5\x0e\x6a\x38\x40\x2a\x1f\xbd\xf2\x0f\x51\x7d\x46\xce\xfa\x88\x98\x47\x9f\x12\x2b\x1c\xe7\xc4\x4a\xe8\xf9\x3c\x56\x3a\x3d\xa7\x33\x9c\xfc\xf5\xec\x69\x56\x7c\x3c\xd7\x63\x1e\xad\x97\x73\xbe\x4b\xc9\x93\xce\xa6\xac\x25\x7b\xcf\x1b\x06\x27\xf0\xeb\x79\xdf\x38\x77\x3b\x87\x6a\xa3\xe7\xd2\x77\x53\x46\x77\xf6\xdd\xe1\x77\xfc\x3e\x17\xa9\x02\x54\x9f\x7f\x9b\xf2\xef\xd3\x8d\xcf\xe8\x66\x45\xbd\xe6\x5b\xaa\xb9\xd6\x27\xf2\x3c\x70\x9f\x20\xb7\x53\xd9\xe4\xef\xab\xdf\x6e\xa7\x28\xed\x30\x31\x8f\x76\x2d\xdb\x8b\x45\x94\xad\x58\x64\x17\x53\x74\x31\x3e\x53\x46\xbb\xd0\x02\x95\x72\x5a\xd5\xcd\xba\x38\x95\xfb\x29\x6a\x4d\xd4\xa8\xa5\xf8\xaa\xfa\x23\x57\xae\x07\x35\x70\x05\x53\xaa\x8f\xd3\xae\xfa\x54\x95\x68\xbf\xb8\x2e\x2e\x9b\xf0\x78\x55\xb3\x27\xe5\xc3\x57\xa3\x87\xd3\x0e\x7d\xd9\x7c\x12\x75\xe2\xb9\x5c\x69\x40\x33\x78\xf9\xa4\x15\xf9\xef\x15\x6b\x67\xda\xd2\xaf\xfa\x06\xd2\x0e\x76\xa5\x7a\x33\x3d\x91\x2b\x6e\x5b\x68\xfe\xae\x04\x96\x12\x3f\xfd\xf2\xea\x5a\xaa\x29\x5d\x29\x3f\x47\x35\xc6\x4b\x9f\x6e\x12\xf3\xf3\x42\xc3\x63\xf2\xe4\x8b\xdf\xff\x4e\x27\x85\x0b\xc1\x1f\xe9\x64\x74\x7e\xa6\x14\xd7\x53\xbb\x08\x7c\xee\x0e\x0c\xaf\x6e\xe9\x6f\xf1\xb6\x03\x30\xbc\x3b\xf0\xd2\x1c\x50\x7d\x0b\xbc\x58\x00\x8c\xc9\x03\x1a\xd5\x59\xf7\xe1\x47\x4b\x40\xb3\x1f\x70\xf3\x07\xee\x8b\x22\xd5\xf5\xbf\x5c\xc9\xfc\x87\x73\x3a\xc2\x9c\x01\xa7\x74\x01\x93\x1f\x80\x13\x31\xa0\x9b\x09\x47\xe7\x70\xbf\x83\x03\x62\x7f\x7f\x29\xde\xbd\x6f\x0e\x20\x9c\x38\x84\x59\x16\x32\x92\xbd\x23\x80\xa4\x18\xa0\xbc\x17\xb0\x75\x25\xf3\x01\x84\xfd\x71\x7f\x1d\x70\xc0\x0b\xa8\xb5\x07\xce\x87\x01\x35\xe5\x7c\xb7\xbc\x26\x14\x78\xd0\x00\x1c\x38\x0e\xbc\x89\x04\x0e\x28\x00\x5f\x36\x03\x15\x71\xad\xf1\xff\x1d\xc6\x6d\xf0\xff\x4f\x2d\xf8\x26\xf1\x3f\xee\xb0\x8e\xc1\xfb\x01\xc0\x90\x3e\xc0\x1f\xcb\x58\xff\x42\xca\x7b\x78\x92\x06\x8c\x74\x03\x1e\x74\x07\xd4\xde\xb6\xe0\xfd\xc2\x38\x31\x0b\xb8\x3a\x0f\x98\x7a\x0b\xb8\xe0\xc9\x35\xbf\xfa\x4a\x40\x38\xa9\x0a\xde\x20\xc4\xbb\xc3\xdf\xb3\xae\xfd\x01\x19\xc0\x6e\x5d\xcb\x3c\x54\x0c\x00\x3c\x46\x03\xbb\xdf\x00\x81\x85\xc0\xee\xb9\x40\x84\x2a\xd7\xa6\x13\xb6\x03\x7b\xb4\x80\xad\xae\x40\x85\x2c\x50\xbc\x12\xd8\x73\x94\xef\xc8\x0a\xd1\xe7\x54\x20\xb0\xff\x2c\xf0\x43\x28\xff\xee\x71\x17\xa0\xfa\x31\xf0\xe6\x32\x50\x2d\xea\xb5\xb7\xc5\xff\xdb\xf2\x1f\xa4\xf7\xe0\xa5\xbc\x8f\x4f\xca\x40\xff\x67\xcc\x7b\x18\x60\xc6\xbd\xf3\x95\x67\x00\x3f\xbd\x02\x94\xf3\xb9\xcf\x89\x8a\x1a\xf0\x63\x0d\xf3\x63\x04\xfb\x47\x0d\x04\xae\xfb\x32\x4f\xe8\x52\x23\x30\xe9\x4f\xee\xeb\xa2\xa5\x00\x9c\x52\x00\xe6\x24\x00\xc7\x03\x80\x85\xef\x79\x1e\x84\x3c\xb9\xda\x05\x58\x76\x03\xa8\x28\x06\x56\xf5\x04\x76\xfb\x31\xc6\x50\xba\x18\xf0\xb7\x66\xbc\x3e\x6c\x07\xeb\xbd\x27\x18\x03\x25\xde\x40\x56\x05\x50\x16\xc0\xf7\xdd\xcb\x1a\x80\xea\x3d\xc0\x9e\x6c\xee\x0b\xb2\xf7\x22\x70\xcd\x1c\xd8\x6b\x03\x3c\xfc\x1d\xd8\x5b\x09\xfc\x2e\x01\xf6\x16\x33\x0f\x42\x8a\xff\x17\x88\xf5\x58\x69\x1f\x84\x7f\xe3\x3f\xf4\xd1\xe4\xbe\x37\x42\x3e\x23\xe5\x7f\xbc\x6c\x02\x7a\x9b\x00\xcf\x8f\x03\x4a\x26\xc0\xc3\x64\xa0\x5f\x10\xf0\x63\x1e\x30\x48\x05\xb8\x51\x08\x0c\x53\x69\xc1\xfb\x2f\x8e\x01\x34\x67\x01\x67\x32\x84\xb3\x05\xf7\x2f\xd1\x6d\x00\x0e\xde\x05\xe6\xd6\x01\xd5\x9b\x00\xe3\x09\xc0\xbe\x3f\x19\xdf\xdd\x6b\x0d\x38\xde\x69\xc1\xfd\x77\xfc\x0f\xf0\x1d\x03\xec\x74\x00\x42\x73\x81\xa2\x2f\x40\xdc\x6f\x8c\x67\x67\x3a\x01\xbb\xbc\x19\x1b\x29\x7e\x05\xec\xcf\x03\x4a\xca\x81\x93\x3f\x03\xbb\x73\x80\x1b\x3d\x80\x52\x7f\xe0\xa1\xe0\x4f\x3d\x81\xbf\xc6\xb6\xac\x03\xa9\xfe\x89\xd4\xfe\x6c\xb7\x7f\xe7\x3f\x48\x79\x1f\xff\x53\x07\xba\xaf\x64\xfe\x4b\x97\x3a\xe0\x65\x29\xd0\x3d\x01\x78\x72\x02\xe8\x69\xd0\xc2\x7b\xb8\x63\x03\xf4\x19\x00\x7c\x1f\x06\xf4\xaf\x04\x2e\x66\x71\xff\x9c\x73\x62\xff\xa0\x93\xa1\x80\xe6\x4a\xe0\x88\x1f\xeb\xc5\x08\xeb\x76\x76\x35\x20\x64\x0f\x46\x26\xac\xdf\x60\x49\xba\xb7\x80\x9d\x67\x0b\xee\xbf\xc3\x0e\xf0\xd9\xc9\x38\x60\x38\xf8\x1e\x70\xac\x3b\x90\x5f\x02\x64\xaa\x02\x85\x5e\x7c\xdf\xbd\xc8\x05\xa8\x5a\x0f\xec\x58\x09\x9c\x5e\x08\x94\xa8\x01\x37\x9e\x01\xbb\x36\x00\x4f\xb6\xf1\x7c\xfd\xb5\xf3\xab\x3e\x10\x22\xf7\x2b\xdb\x89\xc7\xb6\x3a\x08\x49\x22\xee\xf7\x71\x17\x20\x7f\x06\x78\x1f\x0b\xb4\xf3\x64\xfd\x97\x4e\x72\xac\x83\x23\xfb\x10\x78\xb6\x10\x68\x9f\xd8\xc2\x7b\xb8\x15\x0b\x74\xeb\x0c\x5c\xd1\xe6\xf9\x3b\xf7\x09\x50\xae\x60\xfe\xcf\x50\x59\xe0\xa8\x1c\x30\x26\x96\x79\x4a\x93\x85\x6c\x6f\x38\xa0\xbb\x16\x28\xfb\x8d\xf9\x52\x25\x23\x01\xb3\x7a\xa0\xf0\x47\xee\x97\x53\xf0\x14\x70\xf6\x01\x72\x35\x00\x8f\x2f\x40\xae\x03\xb0\x7e\x01\xb0\xad\x9c\xe7\x61\xdb\x72\x20\xbd\x82\x39\x10\x3b\x6c\x81\xfc\xcb\x40\xcd\x55\xc6\xf9\x4f\xc7\x03\x85\x9f\x81\x9b\xaf\x81\x82\x50\xe0\xe9\x8a\x96\x3e\x10\xd2\xf8\x27\xb5\x5f\xfa\xdc\xa5\x38\x78\x5b\x1e\x80\x14\xef\x7e\x2b\x9c\xaa\x43\x81\x5f\xc5\x2a\x51\x2b\x9c\xaf\x0a\xb8\xd3\xc0\x7f\xff\xfe\x03\xd0\xfe\xf3\x57\xbc\x87\x37\x40\xef\x24\xe0\xf8\x43\x40\xd8\x86\x0e\xbe\x64\xbc\xbf\x5a\x19\x50\x1f\x05\xec\xbe\x0b\x4c\x9f\x05\x94\x6c\x64\x5d\x10\xc1\xef\x8d\xd5\x85\x53\x0f\xf3\x62\x72\xea\x98\x17\xb3\xd5\x0b\x70\x3b\x01\x64\x1f\x05\x82\x7f\x02\xb2\xef\x01\x9b\xbb\x00\x5b\x36\x01\xe9\xaf\x58\xe7\x60\x67\x06\xb0\xf5\x29\xf7\x4e\xc9\x55\x61\xfd\x03\x61\xbc\xe9\x02\x6c\x8b\x02\x9e\x65\x00\x79\x83\x59\xd3\xa5\xd9\x7e\xd1\x2f\xa4\xba\x1f\x52\xbb\x23\x45\x3f\x08\x2d\x6b\x8d\x77\xbf\x11\xef\xab\x4b\x79\x0f\x4f\x4f\xf3\x78\x6f\x07\x8f\x52\xde\x03\xd5\xf9\xaf\x72\xff\x2a\xb9\x7c\xe0\xf4\x75\x40\x5e\x9d\x31\x68\xc5\x8d\x40\xf5\x5f\x80\xca\x18\xa0\x5c\x1e\x50\x2d\x00\x4a\xfb\x03\x13\x57\xf1\x3a\x17\xf6\x91\xdc\x07\xbc\x9f\x6e\x9b\x03\x58\x4c\x07\xb6\x48\xf8\xee\x79\x96\x2d\xb0\xee\x36\x90\xa9\x01\x04\xeb\x03\x92\xed\x40\x74\x02\x6b\x49\xa5\x7f\x00\x24\xcf\x80\x42\x3f\xbe\xc5\xb3\x5f\x88\x6f\x53\x81\xd3\x55\x8c\x1f\xff\x50\x09\x6c\x79\x0a\xfc\x2c\x8c\x2f\x81\xa6\x87\x2d\x7d\x50\x62\x9f\x88\x3c\x80\xff\x43\x07\xe2\xbf\x74\x3f\x9a\xfb\x5d\xcc\xe0\x51\x8a\xfb\x5f\x12\xe7\xa5\xbe\x98\xc7\xba\xcd\x80\xec\x0d\xd6\xf1\xe9\xa2\xde\xa2\xfb\x50\x5a\x01\x0c\xbe\xc2\x7a\x0f\x63\x4b\xd8\x4f\xa7\xcd\xe6\xe7\xaa\xff\x94\xbf\xbf\x59\x03\x90\x96\x01\xd8\x1e\x03\xd2\xba\xb3\x7e\x50\x72\x7f\x20\x60\x32\x6b\x27\x45\x39\x00\x49\xdd\x59\x07\x22\x39\x11\xd8\xa1\x0b\x24\x85\x01\xfb\xe7\x00\x49\xc2\x9e\x14\x0c\x24\x77\x01\x7e\x98\xc2\x3f\xff\xd4\x1f\x48\x9d\x07\x7c\xbe\xdf\xc2\xfb\x91\xf6\x3f\x59\xbf\xb4\xb5\xdd\x7e\xd6\xad\x71\xf1\x37\x11\xad\xfd\x40\xca\x7f\x69\xeb\x07\x52\xbd\x83\xf3\xa2\x2e\xc4\xa9\xbe\x3c\x1e\x11\xf1\xcf\xea\x43\x80\xcc\x14\xde\xf7\x3b\x7f\xe1\x78\xd7\x37\x9d\x71\xdf\x11\x87\x80\xad\x2b\x80\x09\x27\x81\x8c\xab\xcc\x7f\x48\xf9\xc8\xba\x20\x89\xe6\x80\xb5\x39\x10\x57\xcc\x3d\x29\x62\x0f\x01\x7e\xdd\x81\xb8\xae\x40\xd4\x77\x40\x4c\x3a\x20\x49\x07\x62\x4e\x02\x45\x4b\x80\xa8\x7b\x40\x65\x04\x6b\xa7\x9c\x59\x08\xc4\xa8\x00\x3f\xd8\x02\xd1\x1e\xbc\xc7\x0b\x73\xf7\xf1\x4f\x20\x54\xec\x33\x17\x7c\x8b\x47\xdf\x86\x36\x3c\x08\xb4\xe6\x41\x34\xf3\x5f\xa6\xb7\xf6\x83\xb6\xfc\x97\x8b\xa7\x44\x3f\x10\x75\x2f\x8e\x89\xb8\x7e\xed\x3a\x1e\x2b\xc4\xf7\x11\xd6\xbf\x10\x4f\xf2\x3c\x81\x1e\x9b\x81\xad\xcf\x80\x81\x4a\x80\xe4\x13\x30\xfa\x15\x90\x3c\x94\xfb\x06\xc5\xa9\x70\xdc\x8c\x6e\xe0\xfd\x23\x32\x9a\x75\x41\x22\x5c\x98\x1f\x14\xee\x01\x44\x44\x00\x61\xc6\xcc\x99\x10\x46\x61\x6d\x85\xce\x62\x45\xd7\x8d\x89\xc0\xe9\x9f\x59\x63\xe8\xa6\x23\xb0\x41\x91\x7d\x79\x83\x3c\xf0\x45\xeb\x5f\xf8\x1f\xa2\xdd\xab\x8e\xb7\xe6\x41\xd8\x1d\xfb\x77\xdc\xff\xee\xef\xe2\x3a\x68\xd3\xf7\x45\xca\x7f\x39\x2e\xaa\x0d\x73\xef\x6c\xa0\x4a\xd4\xcf\x68\xe6\x7f\xdc\xe6\x71\xcb\x78\x40\x6e\x12\xaf\x67\x61\x5f\x49\x5c\x01\x0c\x7d\x04\xc4\xcd\x06\x26\xcd\x02\x36\xa5\x00\xb3\xf7\x01\x61\x73\x00\xd3\x4e\xdc\x23\x68\x85\x39\x10\x74\x0f\xf0\x78\x05\x04\x17\x02\xe1\xb6\x40\xa0\x22\x90\x9a\x0f\x04\x34\x02\x85\x61\xac\xcd\x27\x7c\xa6\x6f\x04\x6b\xcb\x09\x3f\x0b\x71\xd2\xe7\x2e\xf0\x62\x02\xe0\xab\xc7\x71\xb2\xd9\xee\xda\xd6\xbc\x0f\xa9\xee\xc5\xd2\x42\x91\x07\x31\x9e\x47\x29\xff\x45\xa4\xbf\x34\xf3\x5f\xa4\xf6\x4b\xf9\x2f\xa7\x52\x78\x3c\x28\xde\x1a\xd8\x2f\xce\xd3\x5e\x3d\xd1\x0f\x44\x5e\x50\xae\xe8\x3f\x12\x2e\x1e\x20\x21\x1f\xe8\xd8\x85\xfd\xb5\x9f\x23\xe7\x06\x63\x27\x02\x21\x8f\x00\xed\x47\x40\xa0\x12\x60\xe4\xc6\xf6\xd8\xd6\x03\x5e\x76\xc0\xba\x93\x80\xe7\x67\x20\xf4\x21\x6b\x4b\xa5\x29\x00\xee\xed\xb8\xaf\x98\xab\x0a\x50\x79\x8d\x35\x0b\x4f\xdd\x06\x56\xbf\x06\xbe\xd7\x06\x9c\x83\x80\xa7\xd3\x00\xe7\x5f\x59\x57\xcc\x61\x71\x6b\xbb\xa5\xf6\x9a\x1c\x10\x79\x10\x55\xad\x79\x10\xff\x17\xff\xe5\xb4\xa8\x7f\x72\x34\x4f\xb4\x5f\xca\x7f\x91\xf2\x1f\xc4\xdb\x46\x79\x62\xdc\x94\xf2\x3f\x92\xc5\xd3\x75\xa4\xf8\xba\xf5\xc7\x81\xee\xe6\x40\xa0\x16\x30\xf4\x08\xe0\xf3\x1c\x98\x74\x01\xf0\x78\x0b\x18\x06\x00\xae\xc3\x81\xa5\x5f\x80\x35\x4b\x01\x97\x89\xc0\x2a\x27\x60\xfd\x6f\x80\xe3\x1b\x20\xf1\x13\xb0\xe2\x37\x20\x6f\x00\x60\x57\x04\x94\x5f\x07\x96\xe7\x02\x75\x77\xd9\xce\x6b\xee\x80\xcd\x6e\xa0\xb1\x0e\xb0\x9e\x06\xfc\x15\x09\x58\x8a\xe7\x06\x63\x91\x37\xb6\x40\x8c\x0f\x86\x03\x78\x14\xce\x82\xc2\x38\x4b\x8c\xa7\xff\x17\xff\xe5\x58\xc1\xbf\xdb\x5f\x2c\xf6\x8d\xca\x6f\x62\x9e\xc0\x16\x4f\x1e\x53\xaf\xc9\x52\x55\x35\xe6\x9e\x0c\x9d\xab\x37\xb8\xcb\x12\x4a\xe7\x3d\x5d\x6e\x42\xbb\x09\xc0\x3a\xdb\x0e\x4b\xfb\x8d\x03\x56\x2f\xe8\xe4\x32\x6e\x34\xe0\x58\xdc\x59\x73\xd6\x2f\x80\xdd\x80\x2e\x16\xe6\x0d\x80\xcd\x89\x2e\x29\xce\x81\x80\x55\x44\x97\xdc\xc0\x5d\x80\xc5\x4f\x5d\x56\xc7\xa5\x03\x66\x11\x9d\x6f\xe4\x24\x00\x26\xb6\x9d\x4d\xf6\x0c\x06\x16\xe7\xcb\x67\x1c\x7d\x03\x2c\x4a\xe8\x74\xfe\x72\x1c\x60\xa4\xd2\xf1\xf1\x83\x27\xc0\x82\x3f\x3b\xbc\x7b\xd3\x05\x98\x3f\xb5\x7d\x01\xd9\xab\x23\x4b\xf7\x96\xa5\x7c\x0f\x2d\x31\xaf\x9e\xa6\xcd\xe3\x64\xf1\x9e\xc2\xff\xc5\x7f\xa9\xb1\x02\x55\xcd\x2a\x9c\xb8\xca\x5e\xfc\x8a\xfb\x00\xe5\xbe\xed\x46\xd5\xa4\xac\xd8\x1e\x54\x0d\x48\xbc\xae\x40\x11\x34\xca\x9c\xc7\x90\x57\xac\xc6\xec\x51\xcc\x55\xd8\x95\x06\x7d\x09\x5d\xb0\x9d\xd6\x3f\xb2\x67\x47\x60\xc9\xae\x01\x4d\x23\x86\xe1\x80\xe9\x0c\xe5\xbf\xa7\x2b\xcb\x2c\x30\xba\x34\xd0\xd0\xe8\xbe\xcc\x8d\x79\xbf\x0c\xb4\x58\x01\xd9\xa5\x06\x3e\xca\xff\x78\x4b\x64\xf7\xcd\x1e\xaa\x5c\xbc\xa9\x41\xf6\xdd\xcc\xb3\xca\x3d\x32\x43\x65\xff\xd1\x79\x36\x20\xa9\xd8\x5f\xf6\xc1\x0c\xeb\xfe\xff\x3b\x98\x20\xeb\xa5\x3d\xb2\x7f\xf4\x77\x47\x64\x4e\x6a\x35\xf4\x8f\xbf\xa7\x85\xd0\xe9\xcf\xfa\xbd\xff\xcd\x0e\x98\xb6\xb1\x6f\xac\x60\xdf\xc4\x13\xbd\x49\xcf\x7d\xfc\xbe\x1e\x29\xc2\x38\x6e\x4c\x37\xd2\x43\x50\xbb\x2c\x4f\xf8\xbf\x9a\x43\x87\x19\xc2\xd8\xcc\xff\x30\xfd\x77\xfb\xf7\x56\xca\x93\x87\xec\xaa\xef\x4e\x55\x33\x29\xff\x45\x92\xc5\x7c\x90\x04\xcd\x21\xb4\xe3\x46\x2d\x64\x9e\x44\xf0\xc3\x51\xc4\x0f\xf1\x48\x1f\x49\x55\x93\x55\x8e\x6a\xf4\x07\xab\x76\xa3\xf9\x7e\xdf\x8d\xb1\x9b\x3a\x68\x03\x06\x0b\xc6\x95\x2a\xc7\xa2\x62\x66\x97\x71\x97\x34\x5e\xca\xc9\x4f\x7f\xaa\xde\xc1\xc0\xa0\xdd\xe0\xc9\xce\xe3\xfc\xac\xdb\xb5\xef\xaf\xd9\x71\xec\x2d\xd7\x9f\xdb\xff\x39\x4e\x6f\xec\x92\x8d\x7b\x3b\x9c\x1e\xed\x3f\xc6\x2b\xe5\x66\xc7\x3e\xa3\x2c\x47\x97\x15\x5a\x77\x54\x19\x19\xaa\x56\x50\x1d\xdd\xe1\xd9\x88\x45\xa3\x7e\xaa\x7f\xdf\x61\xfb\x70\x63\xd5\x4b\x37\x57\x76\x90\x1f\x76\x58\x75\xdd\x8b\xc4\xf6\x8b\x87\xc5\xa9\x2a\x7f\x74\x6c\x37\x6d\xc8\xb4\x61\x8d\x4d\x4d\x72\xed\x54\x86\xab\xfc\xd3\xd4\x24\x3b\x7d\xa0\xdd\xc0\xdd\x4d\x4d\x32\xdb\xfb\x9f\xee\xff\x57\x53\x13\xd6\xf4\x9d\xda\xe7\x93\x30\x0f\x67\xc4\xbc\x51\xca\xff\xa9\x39\xd4\x89\xf0\xc7\xdd\x17\x7b\x12\x4e\xfb\x95\xfe\x0b\x55\x8b\xa5\xfc\x97\x84\xca\x31\xdc\xf7\x7b\x9c\x26\xe9\xfa\x07\x5d\x9b\x40\xf8\x9d\xa7\xc3\x64\xca\x34\x9c\x15\xb8\xba\x66\x1d\x3e\x8d\xfc\x60\x61\x90\x16\xdd\xd6\xd7\xba\xa7\x43\xb7\x6c\x27\xfc\xae\x5b\xa7\x70\x05\x18\x1b\xaf\x7b\x62\x54\x81\x6c\x77\xd5\x6d\x33\x7b\xeb\xce\x97\xbd\x37\x2c\x4a\xf7\xad\xb9\xb5\xdc\x88\xc1\x43\x74\x03\x56\x6b\xca\x0d\x19\x18\xa6\xdb\x21\xf8\x82\xec\x83\x01\xb6\x3a\x4f\x12\x0f\xc8\xaa\xf4\x0f\xd0\xb1\xcd\xbb\x8f\x47\xfd\x16\xce\xf8\xa9\xd2\x11\xe8\xf3\x4e\xfb\xdd\xa9\x68\x40\x29\x5e\xeb\xf7\xeb\x3f\x00\x8a\xee\xd3\x2f\x3d\x2b\x00\x7a\x8f\x9a\xf6\xe7\x07\x05\xa0\x97\xcd\x64\xea\xfb\xd1\x63\xa0\xe6\x5a\x61\xec\x36\x6d\xac\xad\x30\x76\xb1\x1f\x3d\x55\x18\x3b\x45\x8c\xa4\xbe\x0f\xc7\x1b\xe4\x88\xb7\xb2\x3f\xb2\x1b\xd5\xdb\xf6\xac\xea\xd7\xb3\x95\xfd\xca\xaa\xc4\x8b\x49\xd9\x35\x9e\x6e\x9b\xc6\x35\x4c\xa4\xe7\x1a\x39\x79\x2a\xa1\xf1\xc1\xaf\xb4\xe9\x3e\xab\x97\x9c\xee\x13\xb6\x9f\x37\x90\x65\x47\xf5\xa9\x3a\x68\xb2\x69\x2e\x65\xee\x7a\x66\xf3\x89\x57\xa1\x7e\x7c\x21\xd5\xfb\x55\xde\x2d\x0e\x91\xef\x05\xf4\xcf\x34\x1e\x39\xa4\x0b\xa0\x64\x66\xbc\x7d\xea\x5b\xa0\x57\x92\xb1\xfa\x22\x89\x10\x53\x17\xbf\x76\xec\x04\x74\x29\x5e\x3c\xc5\xbf\x23\xd0\xa9\x69\x91\x6b\xec\x38\x61\xef\x31\xca\xcf\x59\x0f\xb4\x5f\xbe\xf0\xc0\xde\x51\x80\xdc\xd3\x05\x8b\x8f\x2f\x07\xe4\x54\xe7\xfb\x37\x0c\x07\x64\xfc\xe6\xa5\x3d\xfe\x5b\x08\xe0\x86\x81\x7f\x52\x7d\x57\xff\x38\xd7\x21\x67\x8a\xf8\x8d\xb6\xa8\x6f\x3f\x55\xd4\xfb\x9f\x44\xf7\xbd\x6b\x0e\x28\x51\x5d\x56\xca\xff\x29\xfc\x61\x14\xa1\x69\xd9\x85\xe3\xa9\x1a\x9a\xea\x37\x85\x22\x46\x9c\xa9\x36\xd5\x61\x23\xcf\xcc\xa4\x7a\x6b\xd0\x5b\x7d\xe2\x05\x79\x39\xcd\x23\x74\xde\x39\x81\xf5\x51\x96\x7b\x2d\xa6\xb8\x61\x1e\x6b\x42\x78\x8d\xfe\x52\x73\x8a\xc0\x53\xbe\x58\x50\xe6\x3a\x5c\x77\x29\x65\x60\x5d\x57\xda\x52\x15\xb6\x83\xbc\x6d\x76\x9f\x4a\x40\xe6\xb2\xed\xbe\xf1\xc4\x0c\xb0\x5d\x3e\x97\xea\xf1\xcb\x6e\x2c\x27\xed\x3a\x9b\x6b\x7c\x5f\xd1\x66\x7f\x14\x31\x48\xac\x97\x6c\x21\x04\x6e\xe9\xc3\x52\xc2\x39\xad\x4e\x1e\xa1\x08\x65\x79\xe1\x12\xfd\xdd\xf2\xf3\x43\xaa\xb0\x5a\x98\xbc\xa5\x64\xc0\x6c\x31\xdb\xbb\xc8\x8c\x47\xc3\xf1\x3c\xea\x8b\x78\x96\x1e\xc5\x49\xa9\xfd\x3b\x9c\xd5\xc9\xfe\xad\x06\x93\x69\x7d\xa4\x35\xe8\x50\x66\x14\x7f\x69\x26\xf1\x17\x22\xbb\x72\x3f\xa4\x90\x4c\x23\xaa\xa2\x7a\x37\x18\x13\xae\xb7\xe6\xa4\x39\xcd\xba\xfd\xac\x25\x54\x7d\xb7\x5c\x63\x43\x71\x74\x7e\x1d\xeb\x28\xe8\xaa\x33\x3f\x64\xdc\x55\xc6\x91\x07\xe8\x3a\x11\x9c\x2b\xd7\x6f\xb5\x18\x91\x56\xbf\x56\xe4\x4a\xb1\x27\xeb\xdb\x3b\xd7\x1b\x50\xec\x5e\x1d\x6c\x43\x8c\x25\xe7\x35\xee\xe4\x59\xab\xec\x18\x41\x5e\xa5\x9e\x41\xf5\xfb\x95\x3d\x76\xd1\x13\x70\x6a\xe4\x8e\xfa\x0e\x5f\x78\xaf\x73\xa8\xfa\x91\x72\xc1\x15\xeb\x7e\xa3\xbd\x50\xaa\xff\x61\x2d\xe2\x9a\x96\x22\xde\x6f\xe2\xc0\xe3\x62\xc2\xb3\x8a\x1a\x27\x12\x3f\x6c\x5b\x91\x16\x8d\x69\xa2\x1e\x4c\x42\xe3\x5c\xba\xfd\xb8\xa9\x87\x11\x31\x2b\xd7\x6b\x99\x12\xde\xed\x33\xc1\x82\xd6\x87\xcb\x36\x6b\xda\x61\x1c\x5d\x96\x13\xaf\x6c\xa9\x84\xfb\x21\x2d\x02\xdb\xab\x2f\x59\x49\xfe\x3f\xe9\xd3\x6a\xba\xcf\x38\x22\x7d\x2d\xed\xc0\x0a\x5a\x8c\x23\x03\x5e\xe2\xcd\x06\xaf\x3a\x9e\x07\x4f\x09\xdf\x73\xf7\x7a\xc4\xdf\xc0\xeb\x2d\xd7\xeb\xbd\x1c\x59\x79\xc3\x73\xdf\xc6\xdf\xf8\x75\x69\x94\xe3\xb8\x87\x31\x72\xe4\x31\xae\x86\x3c\xd0\x5d\xe3\x2c\xe1\x3b\xeb\xca\x6e\x51\xfd\xda\x25\xf0\x27\xf2\xa3\xb5\xef\xff\xa1\x5c\x51\xca\xff\x58\x71\x9a\xc7\x65\xaf\xbf\x9e\x9f\xed\x6f\x67\xd1\x73\x4b\xcf\x9e\x4b\x5e\x99\xa4\xd1\xac\x83\x43\xa8\x42\xc8\xab\x25\xdc\xff\x02\xb6\x84\x53\xad\xeb\x60\x4f\xeb\x64\xa5\x03\xeb\xa3\x2c\xdb\xe4\x4c\xf1\xcf\xec\xd9\x5a\xc2\xb9\xa4\x3c\x98\x19\xc7\x98\x07\xa3\x1e\xe6\x41\xaf\x53\xc9\x63\xfd\x8c\xae\x87\xfc\x45\x9c\x33\x48\xc4\xbd\x43\x14\xfb\xd0\x8a\x09\xae\x1f\x4b\x19\x47\xc8\xec\xd9\x74\xbf\x32\xb8\x6e\x09\x8f\x87\xd7\xe4\xf2\xdf\xd7\x13\xa2\x1c\x9c\x99\x4c\xfc\xa0\xe0\xd4\x7c\xfa\xa4\x20\xab\x7d\xa4\x44\x1e\xd0\xc8\x8a\xe2\x7e\xe5\xdf\x13\x73\xc5\xef\x44\x23\xad\x6c\xdf\xe9\x7f\xd1\x7a\x91\xf2\x3f\x5c\xcb\x79\x74\xbe\xc9\xa3\x13\xf5\xe5\x93\x64\x31\x0f\x26\xa1\xc9\x94\x50\xf5\xa8\x6b\xd6\x14\xff\x37\xbe\x5d\x4e\xdf\xc2\x5f\xc1\x9e\xd6\xb7\x1b\x9c\x28\x1e\xae\xd6\x59\x4d\xaa\x14\x76\x45\x2e\xb4\x1e\x96\x48\xdc\x08\xaf\x31\xd2\xf3\xcc\xe5\xd5\xc6\xea\xeb\x53\x35\x03\x08\x2f\x1c\xad\x12\x28\xea\x3f\x04\x13\x4f\xa6\xc3\xce\x50\x31\x43\x8f\x14\x53\xf9\x4d\x12\x25\x8a\xd4\x11\x57\xc7\xd0\x9e\x1d\xd9\xc8\x1d\xca\x22\x53\xcd\x17\xf1\xcf\x7c\xdf\x3f\xe2\x42\x20\xe1\x31\x91\x13\xe2\x88\x99\x12\xf1\x6c\x1b\xe1\x7c\xe1\x55\x7b\xc8\x5f\xc2\x8c\x8f\xd1\xbc\x84\x5e\xbb\x4a\xc8\xf3\xc6\x3d\x0f\x28\x32\xaf\x7f\xfd\x5a\x9e\x9f\xe8\x17\x56\xf6\xa9\x66\xfb\xbd\x0f\xf3\xe8\x4e\xf7\x7a\x93\x77\x58\x52\x1c\x88\x3e\x6c\x4d\xdf\x2b\x34\x8b\xfd\x3a\xa0\x71\x15\x9d\xa8\x3c\x34\x57\x7f\x62\xfb\xf9\x36\xad\xc3\x09\x0f\x7a\x2a\x56\x03\x3c\x68\x7f\x30\xfe\xcd\x8f\x4e\xe0\x73\xeb\xd9\x5e\x9d\xc4\x60\xea\xb7\xa3\xe9\xce\xe8\xdb\xb0\x46\xe6\x49\x28\x4a\x33\xec\xaa\x98\xb5\x6c\x7f\x7c\x16\xa8\x1f\x4e\x7c\x0a\x67\x24\xf1\x59\xcc\x03\x89\x4f\x9a\x49\x08\x6b\xc2\x15\x33\xf2\xff\x04\x63\x66\x22\x25\x18\xfb\xd3\x37\x88\x53\x8f\x21\xcf\x4b\x30\xdf\x4a\x88\x74\x5c\xef\x62\xfa\x86\x71\x0d\x8c\x18\xc6\x1c\xb9\x40\xaf\x8b\xae\xbb\x93\xcc\x9e\xfd\x6b\x07\x7c\xc5\x8b\x89\xd8\xc7\xf6\x4b\xfb\x05\x05\x2f\x13\xc6\x38\x15\x3b\xe2\x43\x49\x75\x80\x82\x47\xac\xa5\x3c\xc1\xcb\x86\xd7\xf1\xda\x97\xec\xd7\x2b\x27\xfa\xb2\x2e\x94\x7d\x00\x55\x6e\xcc\xc3\x83\x48\x4f\x67\x91\xcc\x7a\x3a\x99\xe9\x8b\xfc\x88\xa9\x9a\xe1\xb4\x1e\xc6\x16\x45\x51\xdf\x9c\x21\x74\x63\x02\xe8\xf6\x28\x21\x92\xed\x4f\x11\xfd\x21\xfd\x83\x2c\x9d\xe1\x32\xac\xfa\x90\xff\x66\x18\x8d\x61\x86\xd6\x22\xc6\xfd\xd3\xeb\x4d\xe8\xf9\xa5\x5f\x71\xa4\xb3\x8f\x24\x97\x3d\x2d\x7d\x4a\x14\xad\x7b\xc9\xfb\x4c\xe6\xcd\xe4\x72\x5f\x14\xc9\xcb\x5a\xba\x49\x9f\xb6\xfd\x1c\xf9\x4b\x72\xe3\x4d\xfa\x7d\xf2\xdb\x9f\x86\xd3\x98\xf6\x37\x21\xb1\x09\x45\x6c\x7f\x4c\x3a\xdf\xc9\xda\x44\x71\x32\x1c\xab\xe9\x53\x82\xef\xbb\xd2\xc6\xe1\x6b\xee\x79\x8c\xd7\x81\x0f\xcd\xee\x2a\xf3\x00\xb2\xdf\xee\x61\x30\x45\x1b\xa9\x1e\x8e\x89\x47\x38\xe5\x91\x86\x7e\xfc\x9c\x75\x03\x59\x27\x65\x42\x22\xab\x54\x8c\xca\x4f\xa4\xbc\x61\xa0\x3e\xf3\x61\x3a\xff\x93\x26\x2a\x59\x66\x89\x19\xec\x76\x77\x19\xaa\x81\x6d\xeb\xc2\xfe\xb0\x2d\x8f\xf5\x1f\x72\xf6\x6a\xd3\xf3\xcd\xb9\xcc\xba\x07\x39\x1f\xec\xb9\x93\xe5\x07\x4f\xc2\x27\x73\xd2\x23\x88\xdf\x90\x73\x52\x22\xcb\xaf\x2b\xa2\xb3\xe0\xd6\xe0\x6a\xf2\xc0\xec\xc3\xf5\x5a\x20\x9e\xc7\x35\xd2\x91\xc9\x2a\x78\x4c\xca\x4f\x59\xde\x6f\x09\x89\x94\xf2\x62\xd2\x44\x5e\x65\x22\xe9\x33\xae\xcf\x71\x27\x96\x9d\x6f\x81\x37\xb1\x51\x3c\xc7\x31\xdf\x6b\xb5\x4b\x08\xed\xde\x0e\x55\xcc\x7b\x92\xea\xe1\x98\x4f\x88\xa2\x0a\x8d\xd1\x3f\xb1\x14\xef\xe6\x68\x26\x90\xdf\x4f\xaf\x4c\x22\xfe\x9b\xa6\x01\xab\xb7\x0c\x4f\x67\xfc\x58\xe9\x4e\x16\xf9\x5b\xc7\x63\xac\x93\x02\xe4\x89\x37\x34\x0a\x9d\x64\xc9\xd3\x0a\x1f\x31\x4f\xac\xa8\x91\x71\xff\xc2\xbd\x5a\xc4\x18\x28\x1c\x6f\x44\x29\x59\x61\x15\xe3\xfe\x45\xb1\xee\x14\x61\x8a\xb2\x43\x99\x2f\xa3\xc9\x08\x7d\x51\x6c\x3e\x7d\x83\x42\x79\x3e\x03\xe6\x37\x31\xde\x5d\x20\x77\x95\x32\xdf\xbc\x57\xac\xa5\x98\xe7\xf7\x9a\xe2\xce\xf6\x07\x1f\x28\x0e\x35\xf3\x62\x52\xb8\x5e\xc7\x7c\x18\x4f\x2b\xe6\x3f\xad\x7d\x29\xf6\xc5\x52\xe4\xfe\x50\x6d\xf5\x70\x4c\x24\x6c\xf7\xbc\x3f\x53\xa8\xe2\xa0\x7b\x31\xf5\x3c\xbe\xd2\xc5\x19\x93\xc7\xcf\x7b\x08\x58\x27\xa5\xb7\xc9\x76\xd2\x51\x69\xef\x50\xb8\x9f\xed\x97\xf2\x61\x4a\xaf\x70\x07\xd7\xdd\xca\xbc\x2e\xca\x1a\xd8\x1f\xca\x4c\xb5\x28\x2f\x2a\xcd\x5f\x40\x91\xb8\x6c\xbb\x2d\x65\xf0\x65\x1b\xd6\x51\x5c\x28\x1b\xb7\x81\x14\x8b\xca\x54\x98\xa1\x52\xd6\xc0\x3c\xa9\x92\xf9\x65\xa4\x54\x50\xf2\xfb\x11\xda\xe1\x8b\xf3\x2f\x52\x8d\xac\x58\x87\x71\xff\x5d\xa9\x3f\x93\x7f\xec\x7a\xf7\x37\x29\x20\xb6\xe6\xc5\xf8\x0c\xe1\x78\xe6\x36\x31\x82\xa2\xb3\xb3\x52\x14\x79\xdb\x8a\x1c\x7e\xde\x36\xf3\x98\x07\x64\xea\xce\x7c\x98\xf9\xee\x69\xf4\xad\x0d\x0c\x98\x17\xa2\x9d\xc6\x7a\x21\x13\xa2\x98\x07\xa4\xa6\xb7\x9d\x76\x2d\x95\xc1\x85\xf4\xf7\x5e\xf5\x3b\x69\x1f\x6a\xb7\xaf\x54\xec\x07\x23\x3d\xb9\x57\xf6\x93\xa5\x48\x5b\x39\xb0\x0f\xe9\x80\x55\x2e\x53\xa3\x4c\xac\x32\x68\x1a\xc5\xc9\xca\xa2\x05\xc4\x58\xde\xf7\x27\x67\x66\xfb\xb4\xb8\x83\xdf\xbe\x05\x41\xa4\xff\xb3\x6f\x3a\xaf\xc0\xca\xea\x9c\xf1\xfc\xf7\x12\xd2\x95\xa9\xd0\xac\xa5\x9d\xab\x3c\xe1\x2c\xed\xa7\x7b\x2b\x6f\x51\xc6\x5c\x3e\xf6\x39\xf9\xc1\xde\x41\x7f\x92\x45\x7b\x22\x98\x07\xc2\xbc\x18\x4f\x09\xb3\x54\xd7\x76\x68\xdd\x17\x4b\xca\x03\xb2\x6a\xe4\xe7\x6c\x7c\x90\x79\x4f\x0b\x4e\x6e\xa5\x79\x9b\xf5\x23\x3f\xe7\x69\x2b\xb8\xbb\x99\x46\x56\x11\x85\xfb\x51\x73\x58\x0f\x48\xf9\x4a\x09\x3d\x95\x1e\x9f\xcb\xc4\x7d\xa2\x5c\xcc\x17\xa4\x7c\x98\x43\x81\xb2\xa4\xb0\x72\x70\x99\x12\xcd\x7c\x6d\xaa\x2a\x3d\xff\xda\x46\x3e\xa1\xd5\xa6\xce\xa3\x1b\x2e\x07\x67\xb2\x7e\x52\xad\xe6\x1a\xe2\x3b\xd4\x1e\x0f\xa0\x1d\xa7\xd6\x29\x9a\x15\x12\x25\xcc\xaf\x3d\x70\xb9\x98\x2c\x38\xf0\xe8\x00\xcd\x4b\x4d\xe5\x69\xb2\xa0\xfa\xf3\x35\x8a\xc7\x07\xe4\x9f\xd0\x49\x60\x7f\xd9\x9b\x05\xf8\xba\x4f\xd0\x43\xaa\x5f\xe6\x25\x50\x45\x65\xd5\x0f\x29\x94\xe7\xda\x6f\x92\x90\x0e\x9a\x8d\x67\x26\xad\x5a\xf3\x94\xad\x14\xef\x16\x3b\x6e\xa7\xd5\x35\xb7\x9e\xbb\x14\xe9\x3e\x2c\xb8\xc8\xeb\x81\x6f\x64\x8d\xb7\x2f\xa5\xa7\x3b\xbc\x6a\x37\x45\xf1\xfe\xfa\x15\xf4\xfc\xbb\x6b\x56\x71\x3c\x08\xdd\xff\x33\xdb\x2f\xe5\xc3\x1c\x6f\xe0\xf8\x50\x37\x5a\x91\x22\x73\x5d\xf8\x08\xaa\x05\xd7\x65\x4d\x21\x4f\x3c\xf6\xa7\x01\xff\x7c\x6a\x09\xe5\xc9\x27\x4d\xb9\xf3\x5b\x9d\x87\x1f\x9d\x3f\x8e\x6f\x67\x26\x57\x5d\x58\x26\xed\x0f\xc7\x1f\xec\xa0\x95\x5a\xb7\x78\x3f\xe5\x11\xc7\xdc\x39\xaf\x3a\x1e\x70\x9d\xf8\x63\xc7\x0e\x3e\xa2\xf7\x3b\x36\xf6\x77\x9a\xa7\xc3\x8f\x3e\xb0\x2e\x8f\xdc\x97\xcf\xff\xc2\x03\x5a\xbb\x95\x58\x46\x4b\x25\xb9\xac\x83\x52\x93\x4f\xd1\x4a\xda\x1f\x4b\x7f\x21\xdb\xad\x7d\xb4\x84\x9e\xde\x14\x15\xe6\x3f\x8d\x5b\x53\x41\x59\xef\xf0\xe9\xcc\xea\xec\xa3\xb0\x9f\xbc\xb1\xcb\xbb\x83\x3b\x5b\xdb\x7f\x42\xbc\xd9\x77\x56\x44\x90\xce\xf9\xf6\x22\x7f\x3d\x77\x76\x38\x7d\xf2\x99\x3e\x93\x28\xff\x39\xb3\x62\x0e\xd5\xf8\xce\xae\xe1\x7c\xea\xac\xeb\x4a\x3a\x57\x9d\x51\xf7\xa1\x27\x72\xb6\x17\x77\x7a\x3b\xf3\x20\x9d\x78\x24\x67\xdf\x70\x9e\x7d\xd6\xa0\x8a\xce\x27\xf5\x59\x75\xb4\x03\x9e\x99\x77\x85\x5e\x57\xbf\xe2\x3e\xe9\xf3\x9d\x92\x7f\x2e\x9c\x47\x71\xba\xf1\x7f\x64\xd1\xc9\x3b\x9f\xb7\x31\xae\x37\xa2\x84\xef\x04\x0f\x0d\x6a\xe9\x6f\xf1\x8b\x0a\xeb\x2c\x4b\x79\x0f\xf7\xdd\x00\x55\xbf\x96\xbe\x06\xd7\x3f\x31\x1f\xe4\xea\x75\x60\x52\x11\x70\x3e\x96\x75\xfd\xeb\x1f\x30\xce\x7d\x22\x02\x98\x9b\x00\x1c\xd1\xe4\x9a\xe8\xfe\x26\xae\xcf\x57\x6b\x00\xb6\x79\x7c\x17\x53\xc8\x58\x9a\xf5\xed\xb3\x00\x9f\x2c\x60\xe7\x3d\x60\xfd\x31\x60\x67\x27\x20\x26\x9e\x7f\x2f\x11\x7e\x7f\x89\x6b\xc0\x25\x27\x81\x3d\x8e\xc0\xee\x5c\xe0\x70\x02\xb0\xbb\x08\x38\x67\x0f\x94\x3b\x01\xb7\x67\xf1\xfd\xf1\xa7\xda\x40\xb9\x33\xf0\x56\x0e\xd8\xfd\x0a\xf8\xf2\xdb\xb7\xf8\x7f\x5b\xfe\xc3\x87\x2e\x80\x4a\x38\xf0\x87\x26\x30\x70\x38\xcf\xc3\x40\xf7\x6f\x79\x0f\xcd\xfd\x1d\x44\x9d\x83\xef\x43\xb9\x6f\xce\x65\x3b\x40\xc3\x98\xfb\x9c\x4c\x0e\xe5\xfb\xcd\x5a\x0a\xc0\xf1\x55\xc0\x9c\x61\xc0\x81\x06\x21\xa6\xb0\x96\x87\x99\x0a\x50\x5e\x02\xd8\x94\x00\x7b\xde\x02\x4e\x3a\xc0\xae\xe7\xc0\xda\xf3\xc0\x8e\x32\xc0\xcb\x05\x10\xa2\xcc\xfa\x99\x7c\xaf\x9d\x74\xee\xb7\x01\x29\x27\x81\x22\xb1\x3f\x4a\x71\x5f\x60\xaf\x06\x50\x62\x02\x1c\x0e\x65\xbc\xff\x9c\x2c\xeb\xc5\xdf\x4a\x66\x1c\xe9\xd9\x00\x60\xef\x13\xe0\x9f\x53\x40\xb1\x78\x87\x5d\x7a\xff\xbd\xad\xfd\x52\xfe\xc3\xff\xa6\x01\xfd\xa2\x5a\xfa\x7c\xfc\xac\x08\x08\xfb\xd8\xf3\xbb\x80\xa2\xee\xb7\xbc\x87\xeb\x3b\x81\xc1\x3f\x72\x3d\x6f\x44\x4f\x40\xc8\x61\xc7\x6a\x02\xf5\xc3\xb9\x2f\x4a\xdd\x62\x60\x4a\xf5\x57\xf7\xfc\xfd\x80\xb9\x0a\xc0\x1e\x2b\xe6\xc5\x94\x18\xb3\x5f\xec\x7c\xc8\xb8\xff\x8e\x3c\x60\xcd\x00\xa0\x30\x09\xf0\x1e\xc2\x78\x3f\xf5\xf9\x97\x63\x6d\xfe\x7c\x77\x20\xe5\x32\x50\x30\x09\xc8\xfd\xc2\xda\x20\xbb\x3f\xb6\xe8\xfe\x0b\xef\x73\xbe\xc7\x57\xfd\x0f\xaa\x80\x9f\xec\x79\x5e\x3e\xee\x02\x76\xc8\xb5\xe6\xff\x48\xf9\x1f\x52\x1d\x00\x29\x0e\xde\xac\xfb\x71\x05\xe8\x15\x0a\xfc\xac\x0c\xf4\x78\xf6\xdf\xbc\x87\x86\xfe\xc2\x99\x09\xb8\x3c\x05\x50\x79\x07\x9c\xb9\x0a\x8c\x8c\x07\x4e\xd5\x02\xe3\xa6\x01\x47\x5f\x02\x93\xd4\x79\x1d\x68\x6f\x62\x7d\x0a\x21\xc0\xec\x2e\x03\x16\xf5\x60\x3f\x17\xe6\xa1\x20\x98\x71\xff\x42\x6f\xc0\xf9\x3a\xb0\xbd\x2b\xe0\x16\x02\x6c\xdf\xc9\xfd\x1f\xb6\xab\x02\x9b\x6a\x80\x6d\xfd\x81\x94\x01\x2d\xf7\xfe\x85\x5c\xa1\xd4\x9d\xef\xc9\x1f\x76\x65\xff\xb9\xa0\xc2\x38\xe2\xdd\xd3\xc0\xae\xeb\xcc\x61\x11\x7e\xfe\xf8\xe7\xb7\x7d\x30\xa4\xfc\x8f\xb6\xfc\x87\xbf\x66\x03\x5d\xab\x80\xd7\x6f\x01\xf9\xe1\xc0\xcf\xf9\x40\xe7\x6b\x40\xa3\x0b\xd0\x79\x0b\x70\x57\x1b\xe8\x16\x04\x5c\x5f\x04\xf4\x50\x69\xe1\x3d\x5c\x68\x04\xfa\x0b\x51\xe6\x3a\xfb\xc9\xd1\xd7\xc0\xc8\x54\xa0\x76\x06\x30\x7e\x2a\x50\xa5\x0e\x4c\x9d\xc5\x7e\x3a\x43\x58\xef\xa3\x01\x83\x7b\xcc\x69\x31\xab\x07\xf2\xb4\x01\xeb\x76\x40\xce\x2f\x80\xa3\x2a\x90\xf3\x00\x70\x77\x66\x4e\x58\xe0\x53\x40\xc8\x4a\x36\x4d\x04\xb6\xfa\x00\xa9\x46\x40\x4e\x26\xb0\xfd\x2c\xb0\x6d\x12\xdf\xfb\xcf\x1d\x07\x1c\x99\x07\xe4\x46\x03\x17\x87\x30\x8e\x7e\x5b\x07\xc8\xd7\x07\x7e\x4d\x06\x0a\xd4\x99\x17\x24\xb5\x5f\x62\xd2\xda\xfe\xd8\x5b\xad\x79\x00\xd4\xef\xa4\x8c\xe7\x50\xd8\xc7\x5e\x08\x51\xfe\x86\x88\xef\x1c\x03\xee\xec\x10\x42\x2e\xe3\x9c\xed\x6e\x30\xef\xa1\xf3\x19\xe0\xac\x25\xd0\x4b\x88\x03\xa6\x7c\x7f\xfb\x70\x67\x40\x25\x91\xd5\xe3\x46\x3e\x06\xca\xbd\x00\xcd\x49\xc0\xce\xbf\x80\x69\xcf\x80\xc2\x1f\x80\xd9\x3f\x02\xb9\x21\xc0\xc2\xd9\xc0\x36\x25\xc0\xaa\x0b\x90\xf9\x0e\xb0\xcb\x00\x32\x6f\x00\x42\x9e\x94\x99\x05\x04\xac\x63\x3c\x38\x22\x0c\xc8\x70\x17\x4e\x4c\x40\x7a\x00\xb0\x4d\x0e\xc8\x8a\x06\x76\xc7\x02\x39\xfd\x81\x63\x1f\x81\xad\xb6\xc0\x85\x47\x80\x90\xc5\xdd\xd3\xe1\xf1\xe5\x32\xf6\xff\xcf\x0f\x5a\xec\x4f\xde\x23\xda\x2f\xdb\x9a\x07\x20\xe5\x3f\xbc\x55\x67\x5c\xf6\xff\xe4\x3d\x08\xd9\xc0\x6c\xe0\xbc\x70\xe6\xbf\xf7\x15\xef\x41\x9d\x79\x54\x35\xd6\x40\xbf\x4e\x40\xf9\x0b\x60\xc8\xcb\x16\xbd\x83\x9d\xe6\xc0\x14\x6f\xee\xd3\x21\x9c\x23\xb7\x2a\x01\x86\x3f\xb1\x26\x92\x59\x03\x90\xa1\x06\xd8\xcd\x03\x24\x99\xcc\x0f\x4a\x53\x01\x7c\x8d\x81\xd4\xc9\x40\xd8\x1b\x20\x55\x9f\xf5\xa4\x52\xf7\x00\xdb\x72\x00\xc9\x2b\xd6\x05\x91\xe8\x02\x87\xdd\x81\xf4\x27\xc0\xc5\x46\x40\xc8\xf2\x1e\x34\x08\xa7\x2b\xe0\xad\x1f\x90\xae\xdf\xda\xef\xdb\xea\x5f\x6c\x10\xf9\x52\x52\x3d\x84\xb6\xba\x1f\x6d\x79\x0f\x3f\x8c\xe2\xb1\xb9\xdf\xc7\x7a\x40\x46\xf6\x2b\xbc\xbb\x11\x90\x57\x01\x2a\xec\x81\x5e\xd7\x79\xed\xf6\xeb\xc9\xfe\x3f\xb2\x9e\xe3\xdd\x78\x75\xbe\xb3\x2f\xec\x23\x99\xee\xc2\x19\x9d\xf5\x1c\x8c\x1b\x81\x44\x3b\xc0\xda\x0e\x88\x9f\x04\xac\x9c\x0b\xc4\xc5\x30\x27\x21\x4e\x1f\xd8\x98\x03\xc4\x5d\x11\x4e\xca\x40\xfc\x54\x20\xc7\x08\x48\x98\x0d\x94\xe9\x02\x42\xb6\x7f\x58\x1b\x48\x1a\x0e\x5c\x9c\x0d\x24\x3d\x03\xee\xbf\x04\xe2\x5f\xb1\x6f\x4b\xed\x97\xea\x40\x48\xf9\x1f\xff\xa5\x03\x21\xf5\x83\x9f\xa6\xfd\xbb\x1f\x34\xeb\x5e\x88\xf3\x74\x4a\xec\x93\x71\x4c\xec\xb6\x5c\x29\xde\x7f\x2e\x2b\x04\x3a\x74\x66\xdc\x5f\x58\x2f\xf9\xbb\x81\x81\xbd\x80\xad\x1e\x80\xaa\x2e\x90\x71\x02\x98\x34\x0f\x48\x75\x05\x66\xaa\x01\x09\x8d\xc0\x82\x1b\x2d\xb8\xbf\xf0\xbc\x1c\xaa\x80\x4d\x15\x80\x7b\x24\x10\x75\x06\x10\x4e\xf8\xd1\x67\x58\x13\x42\xc8\xfe\x85\xb9\x8c\x32\x00\x4a\x4f\x73\xaf\xad\xc3\xbd\x78\xbc\xf0\x00\xd8\xb4\x01\xb8\xf7\x23\x10\xf5\x17\xe7\x0d\x52\xbf\x5f\x6f\xc2\xfb\xe6\x7f\xf5\xc3\x90\xe2\xe2\xdf\xe8\x7e\x88\xb8\x65\x73\xdf\x97\x5f\x79\x3c\xb3\x5b\xcc\x06\xe3\x78\x3c\x24\x9e\x12\x2a\xc4\x7f\x2f\xed\xba\x5b\x38\x17\xe8\xb8\x1f\xc8\xb9\x0c\x28\xbe\x63\xdc\x7f\xb0\x09\xaf\x71\xe1\x00\x92\x20\x61\xfe\x43\xb4\x1b\x30\xd7\x0d\x88\xb0\x07\xcc\x94\x80\x8d\x9f\x19\xc3\x5d\xff\x14\x70\x95\x07\x36\x46\x73\x9f\xb5\xd0\x2c\xbe\xc9\xb5\xd1\x87\xb9\x14\x1b\x3e\x01\x65\xc1\xc0\x86\x52\xe0\xb0\x07\x73\xa9\x84\xfd\x42\xf8\xf9\x7e\x09\xff\xfd\xcd\xa7\x16\xde\x8f\x90\x83\x37\xfd\x4b\x1f\x10\x69\x3f\x0c\x29\x0f\xa2\x2d\xff\xe5\xe6\x32\x31\x1e\x88\xf7\xdf\x29\x1e\x08\x7e\x20\x56\x93\x9a\x75\x1f\x44\xdc\xbf\x42\xe4\x81\xec\x14\x79\x11\x5b\x45\x5c\x3c\x43\x0e\xe8\xe4\x0a\x24\x1e\x06\x94\xee\x00\xf1\x6a\xc0\xc8\x74\x20\x72\x37\x30\x31\x19\xa4\x6a\x3c\x3b\x0c\x58\x3f\x0a\x58\x5c\x0b\x04\x75\x05\x6c\x67\x01\xfe\x0d\xcc\xb3\x15\x9e\x5f\xb0\x02\xe0\xaf\x0e\xc4\xa9\x03\xfe\x1a\x40\x76\x3a\xe0\x67\x0f\x94\x39\x00\x3e\xb9\xc0\xc1\xa3\xcc\x17\xb8\xa4\xc5\x31\xe5\x81\x0a\xe0\xf3\x0a\xf8\xe3\x37\xc0\x3b\xef\xdf\xed\x96\xf2\x3e\xda\xf2\x20\xda\xe2\xfe\xcd\xeb\x40\xd4\x07\x39\x23\xf2\x1a\x8e\x7f\x10\xe3\x41\x9b\xbe\x27\xcd\xfc\x0f\xb1\x0a\xbd\x45\xbc\x65\x41\x87\xcd\x50\x20\x76\x35\xd0\x6d\x13\x10\x19\x0f\x0c\xfc\x8e\xf9\x2b\x63\x4d\x80\xa0\x01\xdc\x67\xcc\xe7\x20\x6b\x30\x78\x2f\x11\xce\xb6\x80\xc7\x4d\xc0\xb9\x0c\xf0\x50\x04\x02\x35\x00\xf7\x30\x20\x6e\x03\xe0\xae\xc0\xeb\x42\xf0\xe3\xdd\xa3\x00\x97\xcb\xc0\xa1\x21\xcc\x83\xb8\xf8\x02\x58\xfb\x12\xb8\x9f\x0f\xac\xad\x05\xde\x1c\x03\x56\xe5\xb5\xb6\xdb\x46\xa1\x35\x0f\xc2\xec\x71\x6b\x1e\xc4\x7f\xf2\x5f\x44\xfe\xe0\x09\xa9\x1f\x88\xf3\x52\x25\x3e\xf7\x3d\x22\xcf\xa3\x48\x5a\x65\xd3\xe6\x31\x5d\x7c\x9f\x84\x2b\x3c\x86\x53\x4f\x5e\x20\xc4\x19\xe8\x1d\x08\xf8\xd5\x01\x23\xf6\x03\x9e\x27\x99\x5f\xe9\x1e\xc4\xf9\xe6\x5a\x42\xa0\x00\xe7\xdf\x80\x95\x87\x98\x73\xec\x1f\x06\x38\x2d\x05\x36\xcf\x04\x9c\x46\x02\xd9\x95\xc0\x8a\x81\x40\xf1\x51\xee\x39\x55\x9b\x0a\xd8\x96\x03\xdf\xd9\x03\xb6\xf9\xbc\x6f\xda\xfe\x0f\x78\x9d\x01\xd8\xf4\x65\xfb\x2c\xac\x5a\xdb\x2b\xd5\xbd\x68\xcb\x83\xf8\x4f\xfe\xcb\x1c\x1e\xa5\xfc\x17\xee\xba\x0b\xec\xfd\x28\xc6\x03\xb1\xda\xf8\x0d\xff\x43\x9c\x97\x18\xb1\x9f\x50\x88\x18\x37\xbc\x13\x00\x79\xe1\x4c\xd5\x07\x50\x5e\x0c\xac\x36\x00\xc6\x75\x02\x56\x4e\x05\x66\xde\x05\x56\x1c\x00\x4c\xb5\x81\xe5\x47\xf8\xfc\xb5\x2c\x16\xf0\xcd\x01\xac\x67\x02\xd1\x07\x99\xa3\x9e\xe9\x0f\x58\x8c\x03\x8a\xed\x01\xd3\xf7\x40\xad\x1b\x60\x1a\x04\x9c\x9f\x07\x98\xbc\x06\xee\x8c\x04\x8c\x47\x00\xbf\xa6\x01\x8b\x77\x00\x5f\x4e\x01\x86\xaf\x5b\xdb\xab\x53\xd0\x9a\x07\x21\xe5\x3f\x5c\x13\x6f\xd5\xb6\xe5\xbf\x1c\xc9\xe4\xf1\x1b\xfe\xc7\x3d\x1e\x0b\xf6\xf0\x98\x2d\x56\x99\x52\xc5\xbc\x23\x56\x8c\x1f\x61\x56\x3c\xfa\x9e\xe1\x71\x6d\x1d\x8f\x4e\x56\x80\x42\x27\xc0\x2e\x14\x18\x39\x1d\xb0\x3e\x2a\x33\x61\xfa\x52\xc0\xd2\x5c\xd6\xdb\x68\x39\x60\xfa\x50\x36\xc7\xee\x39\xb0\xd8\x42\xf6\xbd\xe7\x4d\x60\xe1\x45\xd9\xef\x22\x0e\x01\xf3\x2d\x65\x3d\x24\xbb\x00\xc3\xd1\x32\xe7\x76\xa8\x02\x06\x7d\x65\xe6\xee\x5f\x08\xcc\x39\x0b\xe3\xfa\xb3\xc0\x6c\x07\xe0\x87\xc9\x80\x9e\x29\xf0\xfc\x57\x60\x96\x39\xf0\x77\x3f\x60\xc6\x95\xd6\xf6\x6a\x8a\xe7\x8a\xf1\xab\x78\x1c\x23\x9e\x37\xda\xf2\x5f\x8e\x3e\xfe\x77\xfb\x77\x8b\x7c\x99\x66\xfe\x8b\x76\x27\xea\x03\x93\xe2\xde\x81\x4e\xfd\x71\x2a\xcc\x93\x08\xef\xd8\x95\xf0\x3c\xff\x17\xdd\xa8\xca\xe4\xa2\xde\x9d\xfe\xbe\xfc\x5c\x4f\xaa\x0a\x98\x5d\xea\x59\xdc\xc9\x1e\x58\xb4\x5f\xe1\xf0\x20\x45\x60\xde\x0e\x45\xb3\x09\xca\x80\xbe\x81\xd2\x08\x03\xe1\xfb\xc7\x2a\xf9\x59\x2f\x02\x74\xb4\x94\xcc\x5d\x85\x9c\xc3\x52\x49\x71\x63\x7b\x60\xaa\x44\xf1\x6e\x72\x02\x30\x39\x58\xd1\x32\x7f\x12\x30\xf1\x70\x6f\xdf\x7d\x05\xc0\x04\x1b\x05\x87\x93\x36\x80\xc6\xc7\x5e\x13\xae\xbd\x07\xc6\xd7\xf6\x54\x7b\xa2\x04\xa8\x4b\x7a\x68\xfd\x55\x03\x8c\xd5\xea\xa6\x21\xd8\xa9\xfa\xa7\x3c\xd5\xa7\x87\xbb\xb7\x7f\x23\x8c\x43\x46\xcb\xfe\x24\x8c\x83\x86\xc8\xb4\x13\xc6\xb6\xfc\x97\xb6\xfa\x37\xcd\xfa\x2f\x25\x9d\x58\x07\xa2\x91\xfb\x01\x25\x2d\x63\xb5\xe5\x98\x57\x7d\xe8\x36\xf1\x06\x8b\x7e\x54\x9f\xf3\xfd\x32\x90\x18\x74\x2e\xc3\x54\x48\x17\xc1\x2e\x90\x71\x64\x53\x83\xa1\x54\x85\xd4\x7b\x3b\x9c\x56\x8a\xb6\xfe\x88\x26\xc5\x5e\xc0\x64\xcb\x91\x7a\x6a\x8b\x64\xf4\x34\x4a\x47\x9e\xd0\xf9\x5b\xe6\xef\xb1\xf6\x23\x7f\x34\xd3\x95\xad\x1b\xa5\x3a\xb2\xdb\xca\x47\x72\xf3\x46\xc8\x8c\x08\x0f\xa8\x90\x3b\x37\x54\x77\xc4\xd8\xd8\xdb\x72\x67\x06\x0f\x1e\x3e\x20\x67\x88\x5c\xe6\xa0\xa8\x61\x16\xbb\x6f\xcb\x2d\x1e\xa8\x31\xf4\xf8\xb1\x0e\xb2\x4f\x94\x75\x86\xe2\xf2\x1f\xb2\x0e\x03\x62\x87\x18\x3e\x5c\x20\x73\xb6\xff\x97\xc1\xdf\xbd\x49\x94\xe9\xd2\x7f\xa7\xca\x0e\xc1\xce\x3e\x37\x07\x24\x09\xa3\xc2\x41\xa5\xb7\xc2\xd8\xf3\x76\x6f\xea\xef\xde\xfd\x53\x8f\xb9\xc4\x7f\x10\xe3\xa4\x94\xff\xb2\xcf\xbf\x03\xed\x9c\x3b\x23\xbb\x91\x87\xb7\xd5\x7f\x49\xfe\x75\x30\xf1\x1e\xa2\x4e\x0d\xa7\xf9\x59\xbf\x40\x95\x76\x12\xdf\xc4\x31\xb4\x32\x5c\x54\xf8\xf6\xa1\xfd\x0f\xe3\xb9\xaf\x71\xca\x04\xaa\x3b\xcd\x6d\x37\x89\xea\x5a\x93\x8f\xf1\x86\x3c\x6a\xe8\xd4\xf1\x9d\x1f\x02\x43\x77\x4e\x6d\x1a\xb2\x04\xfb\x07\xb5\x9f\x56\x3a\xb5\x33\xee\xf7\x3f\x32\xad\xda\xe8\x10\xcc\xfb\x64\x4f\x5b\xbe\x22\x1f\xe8\x7d\x6e\xea\x33\x1f\xe1\x2c\x2c\x37\xd5\x3c\x5a\x0f\xe8\xfe\x6e\x4a\xc8\x16\x05\xa0\xeb\x97\xc9\x11\x25\xcf\x80\x2e\x7e\x93\x7c\x0e\x3d\x01\x3a\xf7\x9d\x68\x7c\xe1\x67\x40\xbe\xef\x84\xfc\x1f\x27\x02\x9d\x46\x6a\x36\xfe\x76\x0e\xe8\x18\xaf\x91\x2c\xd8\xd9\x7e\xd6\x18\xd2\xb3\x97\xfd\x45\x75\x0e\xd5\x25\xad\x87\x25\x70\x7d\x52\x85\xee\x7d\x4b\xf5\x7f\xca\x37\xcb\x93\x3f\xef\xfc\x4e\xc1\x95\xed\x1f\x40\xdf\x3b\xd3\x6b\x18\x55\x89\x13\xd7\xa8\x51\xdd\x32\x66\x26\xdb\xb7\x5e\x61\x02\x65\x52\xbe\x11\x93\xa8\x2a\xe6\x1a\x3e\x95\xea\x72\xf6\xef\xb5\x68\x67\xb1\x0c\x9d\x41\x33\x3c\xdf\x9e\xbb\xb3\x6b\x3d\x99\x4d\x38\xb1\x9a\xab\x3e\xa1\x6d\xbd\x25\x86\x03\x65\x26\x00\xdd\x4f\x19\xe6\xf6\x7d\x0f\xc8\xdf\x9f\x37\x7d\xfc\x5a\xa0\x83\xb6\x61\x95\x41\x57\x40\xf6\x57\xc3\xd5\x36\xc2\xc1\xb6\xa7\x61\x6f\x37\x42\xd8\xe7\xee\x09\xa7\x3a\xb6\xc1\x70\x09\xed\xdd\xfa\x2e\x3b\x09\xf7\x9b\xe3\x74\x80\xf6\xf6\xd9\xd3\xcf\x53\x05\x54\xaf\xd7\x6d\xfa\xe4\x99\xaf\x7e\xa5\xbd\x4d\xd7\xef\x13\xc5\x28\x2d\x57\xb6\x7b\x92\x88\xeb\x69\x88\x75\xfb\x71\x4b\x85\xb1\xdc\x49\x91\xf0\x2a\x29\xff\x65\xdb\xf1\x21\x84\x1e\x49\x66\x8e\xa1\xef\x9b\x78\x9d\xfb\x21\x45\x65\x4c\xa2\xaa\xe0\xc6\xef\xa6\xd1\x0e\xe9\xf7\x59\x97\x50\x67\xd7\x94\x39\x34\x2f\x0e\x55\xfa\xb4\x6e\x96\x2a\x1a\xd0\x89\x65\x91\x2d\xab\x2e\xcf\x72\x5b\x48\x71\x44\xf3\xf4\x22\xc2\x8b\x54\xee\x9b\x12\x1a\xd1\xc9\xdd\x3c\x97\x9f\x80\xa5\x46\x2f\xe6\x25\x98\x31\x7e\x61\x61\x39\x9b\x2a\xa0\x16\x26\x5c\xa7\x36\xaf\x64\xdc\xdf\xdc\x91\xef\x6d\x9a\x35\xa4\xd1\x3b\x9b\x3c\x29\xa2\x4f\x36\x29\xda\x4f\xb8\xc6\xe2\xea\x7a\xaa\x14\x2f\xaa\xba\x49\x15\x67\xa3\x2b\x9c\x2b\x1b\x99\xfc\x43\x67\x00\x43\x51\xbf\x7b\x76\x3f\x1e\x75\xae\xf0\xa8\x45\x7d\x1f\x8a\x2d\x07\x51\xca\xb3\xad\xbf\x1a\x01\x9a\x92\x87\x13\xe9\x5e\x76\x62\x15\xdb\x1d\x9d\x3a\x83\x9e\xe3\xc6\x4b\xb3\x68\x3e\xfc\x2e\x1a\x50\x15\x78\x9d\xd2\xbc\xb9\xc2\xb8\x52\xde\x88\x50\x00\x9b\x77\xc6\x54\x5d\x35\x8d\x32\x27\xbc\xcb\x90\xdb\x45\x60\xda\xab\x25\x94\x89\xa8\x29\x2c\xa5\x1d\xb8\xcf\xbd\x65\x54\x6d\xc7\x2a\x7b\xb1\x8e\xbf\x62\x78\x6f\xaa\xc3\xdb\xab\x8d\x21\xbd\x71\xbb\x06\x3d\xd2\xa7\xb7\x0f\xb7\xac\xe2\x9f\xd7\x12\x42\x60\xe7\xb9\x9e\x62\xd7\xf2\x02\xee\xa0\xb1\xdc\x9d\x2b\xe7\xcb\x8e\x72\x6e\xbf\x2c\xfb\x14\x31\x38\x96\xf9\xf1\x99\x60\xa9\xe4\x09\x7d\xb2\x55\xe3\x7b\x1a\xa5\xfc\x0f\xe3\x46\x1e\x17\x88\xba\x07\x73\x9f\x35\x51\xff\x0b\x46\x99\x33\xac\xa6\xd0\xab\x93\x14\xa7\x13\x33\x38\xca\x5c\x8f\xe2\xc1\x46\x95\xb9\xe4\x7d\xfe\x2e\xac\x2e\xee\xee\xc5\xb7\xae\x57\x3d\x33\xa7\xea\xf7\xb2\x6a\x2b\xba\xbf\x6d\x31\xcf\x86\xec\x6c\xe6\xc1\x98\xd9\x91\x35\x1a\xf9\xac\x6e\x32\xe4\x96\x13\xf9\x41\xb7\xea\x55\x8e\x6c\xbf\x8b\xb8\x53\xad\x1d\xc8\x3c\x90\xb5\xee\xec\x0f\x6b\xdd\x67\xe6\xf1\x68\x31\x8b\x5f\xc7\x8a\x2a\x6b\x4c\x82\xe8\x13\xd6\xcc\x8f\xe7\x4e\xeb\x09\x7c\x93\x7a\xf5\x80\x3d\x65\xfc\xf3\x71\x32\x65\x55\xfa\x15\xaa\xa4\x3b\xdd\x7a\x48\x1e\xed\xe8\xf4\x9a\xfc\x6a\x85\x09\xeb\xb8\x4b\xf9\x1f\x4b\x62\x79\x34\x3f\x43\x75\xaa\x2a\x2d\xc2\x5d\x12\x27\x32\xbf\x2b\x66\x22\xeb\xe0\x84\xde\x58\x44\xfe\x1c\xa0\x69\xc6\xdd\x77\xfc\xac\x28\x4e\xac\xb2\xb1\x26\x2f\x5c\x11\xcf\x6a\xeb\x4b\xce\x33\x4f\xa0\x2d\x0f\x66\xaa\xd5\x6a\xea\x9f\x35\x26\x7c\x0d\xf9\x53\xff\x07\xae\x74\xe3\xa5\x63\x85\x87\xc8\x4c\xf5\x39\x0b\x3a\xeb\xfa\x84\x2b\xd1\x3a\xf0\x8e\x1d\x4d\x3c\x20\x1f\x63\x1d\x7a\x85\x8f\x1a\xeb\xfc\xfb\x84\x3b\x51\xce\xe6\xdd\xc0\xf7\xfd\xbd\x15\xa2\xe9\x1b\x7a\x1b\x6d\xa1\x33\xa1\x57\x45\x29\x45\x74\x2f\xf7\x23\x34\x2f\x1e\xfb\x18\xf7\xf7\xe8\xf3\x23\xe1\x3e\xeb\xae\xfc\x42\xeb\xc4\x75\xfa\x47\xca\x8d\x57\xf7\x64\xfb\x1d\xc4\x38\xc1\xbc\xa1\x94\x83\x73\xe9\xb9\xc7\xae\x58\x4c\x7d\xfb\xc3\x61\x46\xef\x1e\x98\xb7\x94\xe2\x84\xe7\xf9\x65\x34\x41\x6b\xc5\x3e\x50\x0e\x35\x8e\x84\x4b\xd8\x28\x38\x93\xbd\xa6\x9d\x99\xf7\x63\x98\xbe\x96\x70\x4e\x9d\x54\x57\xc2\x8b\x27\x2c\x77\x27\xff\x1a\xd6\xce\x93\x9e\x8a\xe2\x55\x4e\x30\x65\x35\x83\xc4\x9d\x39\x64\x3b\xeb\x1e\x84\x78\x2a\xd2\x4a\x5b\xdf\x55\x8d\x19\x58\xcb\x74\xea\xf8\x67\x13\xc2\xb5\xd7\x0f\x71\x20\xfb\x43\x3e\xf9\x90\x27\x86\xfc\xb1\x89\xce\x7e\x21\x7e\x99\xdc\x1f\x68\xf6\x4e\x8a\x8f\xc1\x0a\x35\xc4\x54\x09\xd2\x3f\x4b\x3b\x57\xe0\xf4\xdb\x3b\xd9\x93\x5f\x50\x1c\xf5\x23\x6c\x02\xf0\x7e\xc8\xf6\xbb\x55\xf1\xb8\x96\x78\x10\x9b\x4f\x9a\x92\xf7\x45\x74\xb2\xa2\xef\x17\xa2\xc3\xe8\xb2\xf7\x76\xd6\xfd\x91\xf6\x83\x5a\x19\xb4\x86\xbc\xca\x56\xec\x07\x65\xe1\xb6\x8e\xe2\x88\x91\xba\x9b\xd8\x0f\x87\xfb\x05\x4d\x6d\xf4\xa6\x79\x1c\xf3\x25\x80\xf9\x40\x83\x83\x28\xdf\xe8\xa1\xb8\x21\x87\xed\x0f\x17\x95\x3b\xa3\xf4\x19\xcf\x8a\xa8\x55\xa2\x95\x12\x79\x6b\x34\x21\xe3\x91\xf1\x33\xe8\x1b\x45\x3e\x58\x4c\xf7\xf4\xa3\xb2\x57\x10\x6e\xbf\x49\xe2\x29\xe1\x31\x82\x10\xe3\xc8\xc6\x34\xe6\xc9\x84\x15\xd2\x7c\x46\xdc\xaa\x22\x9e\x43\x84\xf2\xe9\xa1\xfc\x44\xbf\xa7\x75\x12\x3a\xab\x91\x7e\x0e\x35\xfe\x83\x56\xaa\x94\xff\x11\x64\xce\xa3\xdf\x2e\x61\x8c\xf0\xb2\xd5\xf8\xda\x7e\xdf\x92\x95\xb4\x1f\xb8\x61\x35\xed\xa8\xab\x3e\xb8\xd2\x89\x63\xf9\x13\x37\x42\xc5\x2c\xe1\x41\xab\xd5\x38\xd3\x87\xd0\xe5\xb9\xf5\xfe\x74\x52\xd5\x19\x18\x48\x27\x95\x09\x2a\x7c\xfb\x7a\x54\x3e\xf3\x05\x94\xc7\x85\x51\x7e\x21\xff\x30\x6a\x09\xdb\x1f\x2b\x66\xe0\x09\x15\x8c\xf3\x36\xf3\x61\x52\x18\xf7\x4f\x88\xd0\xe6\x71\x1e\x1f\xe5\x12\xab\xb8\x83\x4f\x42\x93\x3b\x31\xd3\x12\xe5\x42\x29\xe2\x24\x18\x33\xb3\x22\x3e\x2b\x8f\x2c\x88\xbf\xcb\x67\xe0\xb8\xc7\xc7\xe9\x89\xc6\xa9\x5f\x21\x4f\xdc\x3c\xe4\x01\xf3\x63\x44\x5e\x4c\xd4\x5f\x7f\x7b\xf0\xfc\xf1\x3c\x70\xbf\xa0\x6f\xfa\x61\xbd\x65\xfe\xcf\x6a\x23\x37\x5a\xcf\x0e\x1e\xde\x14\x0f\x6c\x52\xfd\x88\x37\x69\x36\x34\x80\x9e\xe7\x82\xdc\x10\xda\xbd\xf4\xae\x32\x2f\x64\x9a\x73\x18\xed\x1b\xe3\xdf\x30\x2f\x64\xe8\xf7\xcc\x87\x51\x74\x88\x65\xdc\xff\xb7\x84\x0d\x6c\x7f\x33\x1f\xa6\x86\x71\x7f\x29\x1f\x26\x5d\x4f\x8d\x78\x1a\x92\x99\xd3\x69\xc6\xd3\xaf\x2c\x24\xcf\x92\xec\x5a\x46\x99\x5d\xc6\x20\x57\x3a\xeb\xa5\x0f\x5d\x4f\x67\xd9\xf4\xd1\x89\x64\xaf\xe4\xee\x76\xe2\x4d\xa5\x3d\xdc\xcd\x8c\x67\xd9\xa3\xb4\x13\xa5\xf9\x5f\xa4\x8e\x97\xc9\x8d\xb7\xc9\xde\xe4\xee\x54\x83\x46\x52\xd5\x07\xfa\xa6\xf1\x9f\x9b\x28\x1f\x61\x5e\x4c\x80\x26\xeb\xe1\x78\x99\x8b\x3c\xa0\x60\xd6\x79\x5a\x39\xc1\x97\xa2\xf0\x72\x13\xe6\x3d\x59\x44\x84\x90\x7f\x2c\x12\xfb\xc7\xcc\xad\x8f\xa4\xf9\xd3\x71\x67\x55\x8a\xc9\xe5\x9b\xe9\x5b\x8d\x8d\x8f\xa3\xa7\x36\x78\x7e\x22\x45\xc1\x5e\x0d\x8c\x9b\xcb\xf5\x48\x13\x4f\xb6\x52\x3e\xcc\xb6\x15\x72\x74\x96\xc9\xf9\xd0\x87\x5e\xb1\xad\x66\x14\xad\x83\x1c\x9d\x69\xb4\x2f\x6c\x2d\x9f\x47\xf8\x6f\xce\x01\xd6\x4f\xda\x9a\xc0\x3b\x4c\xce\x77\x21\xcc\x87\x79\x1b\x4b\xaf\xdf\x5a\x9f\x4d\x9f\xbc\x75\x4d\x09\x65\x34\xd9\x57\x6a\x89\xa1\x96\xfd\xdd\xf9\xdd\xfc\x79\x3f\x50\xfc\xd9\x32\xfd\xa7\x55\xf4\xf3\xf6\xbf\x68\xde\x5a\xf3\x62\xbc\x93\xbc\xf6\xe2\x2b\x1e\xd0\xca\x9a\x20\x52\x67\x5a\xee\xce\xea\x3c\xd6\x33\x42\x49\x91\xd7\x7c\x13\x3f\xe7\x05\x1d\xb9\x8b\xd5\x9c\x46\x3e\x59\x4e\x3f\x10\x47\x27\xd0\x09\xef\xf9\xc6\xc5\x28\xb0\xb7\x2a\xff\x91\x4e\x5e\xd8\x23\x3f\x83\xd4\x28\xb0\x7b\x6b\x7f\xb6\x3f\x5f\x3c\xc1\x15\x8e\x67\xe6\x7e\xe1\x5e\x8e\x93\x3b\x14\x47\x51\x0d\xb0\xf0\x02\xe3\xfe\x05\x27\x0c\x89\xbf\x51\x24\xcb\x4a\x56\x85\x4e\xab\x29\xd4\x16\xc9\x07\x10\x0f\xaa\x30\x3b\x86\x22\x74\xa1\x4b\x26\x21\xc7\x45\x43\x77\x51\x46\x53\x28\x5f\x43\xfa\x1a\xf9\x7a\xac\x87\x91\x37\xe6\x1a\x79\x74\x5e\x6e\x23\x21\xf1\xb9\x0d\xaf\xf9\xc4\x10\xf0\x89\xd6\x47\x4e\x36\xd5\x29\x6b\x03\xe9\x5f\xaf\x7e\xcb\x76\x3b\x6e\x0a\xa3\x57\xd9\xd4\xb3\xdd\x96\xe0\xbe\x39\x8b\x2f\x70\xdf\x1c\x03\x6f\xe6\x85\xe8\x78\x27\x53\x25\x77\xea\xfd\x54\xca\x72\x35\x46\x32\x4f\x62\x84\x41\x16\xf1\x85\xa5\x7d\xa2\xba\x4e\xca\x35\x6d\x6d\xff\xce\xe3\x3c\x96\x0e\x6c\x4f\x35\x8b\x32\x15\x25\xaa\x79\x96\x5e\x61\x1d\x8c\xb2\xed\x53\xe9\x1b\x94\xba\xcf\xa5\x88\x5c\xfa\x72\xc9\x5e\x1e\x9d\x3b\xf1\xef\xfd\x98\xff\x92\x17\xf1\x23\xff\xfb\x0c\xfa\x84\x12\x37\x66\xdc\x94\xa4\x54\x12\x13\xa5\xf8\x15\xe3\xfe\xc5\x3a\x0d\xb4\xae\x76\x39\xdd\xa7\x5a\xc2\xae\x13\xbf\x91\xa7\x17\x2b\x7f\xa4\x27\xc4\xbc\x98\xb5\xee\x1b\x69\xb7\x5a\x15\xbd\x89\xa2\xa9\x94\x07\x64\xd5\x18\x47\xe7\x05\x33\x05\xb6\x7b\xe1\xfb\x14\xca\x17\xe7\xa4\xa6\x53\x3e\xa4\x3d\x3e\x9d\x9e\xd6\x24\x93\x6c\xd2\x8f\x1b\x93\xc7\x59\xcd\x30\x4d\x56\xe7\xe8\xeb\x90\x4f\xac\x8c\xce\xda\xd2\x8a\x55\x89\xa8\xe8\xba\x57\xac\x78\x56\xe8\x74\xa0\xe7\x5b\xd1\xa8\x44\x7c\xb1\x7d\xce\x23\x29\x6f\xde\x67\xc8\x7d\x40\xf6\xb9\x1a\x10\x36\x50\x71\x92\x33\xd3\x7d\x5d\x56\x76\xe7\x7f\xc7\x8a\x4e\xfb\x96\x47\xd0\x4e\x55\x31\x34\x95\x32\xdd\x0a\x91\x27\xb5\xb7\xbe\x7c\x28\xbf\xee\x18\x69\x8e\x97\x7b\x5d\xa2\x9e\xdb\xe5\x23\xef\xf1\xdf\x57\xfc\x4c\x7f\xdf\x13\xf1\x8e\xe6\x6f\x37\xe5\xdb\x6b\x66\xb0\x2e\x8c\x83\x52\x1c\xc7\xc3\xfa\x64\x7a\x95\x65\x68\x1a\xb1\x72\x16\xdd\x63\x7d\x18\x43\xdd\x0c\xe2\x03\xea\x61\x2b\xb1\x96\xb5\x12\x99\x95\x34\xc1\x73\x3b\x45\xad\x31\xe1\x9c\xed\x0f\x2e\x28\xa2\x6c\x50\xb1\xe3\x2e\xf2\xce\x4e\xee\x65\x62\x1f\xbd\x66\x7d\x9c\x8e\x3c\xd6\xca\xca\xb1\xde\xcb\x6c\x45\x9a\xa1\xda\xfd\x23\xe8\xc6\x43\x6d\x23\xf3\x1f\x6a\xfe\xd1\x27\x7e\x57\xed\x38\x73\xe2\x45\xd4\xde\x62\xdd\xa0\x83\x53\x3d\x89\xa9\x51\x1b\xcb\xb5\x9e\x03\x8f\x92\x29\xc3\xa9\x1d\x99\x4b\x9e\x58\xbb\x66\x2f\x31\x7c\xf7\xbb\x1c\xa2\xf9\x3d\xa0\x70\x81\x6a\xa7\xfb\xf7\xdc\xa2\xe7\x5f\xb3\xee\x27\xda\x47\xf6\xdf\xf9\x8b\x4e\x3c\xd5\x97\x3f\xbf\xfb\x6f\x1e\x90\xe9\xc0\x4c\xca\x42\x16\x61\x1b\x21\x1b\x86\xca\xb9\x94\x17\xea\x26\xe5\x52\x9e\x34\xb5\xb1\x90\xec\x94\xf6\xc9\x52\x5b\x51\x4c\x7e\xa5\x72\x7a\x0f\x3d\x4d\x85\xd7\x7b\x28\x7a\xc9\xab\x54\x8a\x48\x47\x73\xbf\xa8\xf6\x3c\x4a\xf9\x30\xc7\x1f\xb0\xc4\xef\x71\x95\x61\xf4\x4e\xc7\xba\x4c\xb8\xc7\x7f\x9f\xed\xcd\xa3\x29\x75\x6a\xaa\xfb\x9e\x33\x9a\xe3\x0d\x1e\xf4\xba\xe3\x01\x1b\x29\x5f\x3c\x66\x1f\x4f\x4f\xea\x98\xa8\x50\x75\xbc\x61\x37\x3d\xd9\x63\x47\x0e\xd1\x13\x3b\xf2\xea\x2c\xf9\xd1\x11\x9d\xeb\xc4\xff\x38\x3a\xb2\x91\x98\xf2\x47\x92\x5e\x91\x92\xda\xe1\x9a\x8f\xa3\x80\x3f\xc2\x19\x5f\x78\xb5\x16\x50\xc9\x02\x9e\xd7\x00\xca\x07\x80\x46\x05\x40\xe5\x15\x70\x77\x17\x30\x64\x1d\xdf\x91\x1c\x9e\xfe\x15\xde\x7f\x17\x18\x9d\x02\x9c\x1d\x02\x68\x5a\x30\xef\x61\xb2\xf0\xae\x3f\x00\x5a\x8f\x81\x9a\x89\x80\xde\x21\xa0\x42\x0e\x98\x57\xce\x7a\xc6\x8b\xac\x5b\xf0\xee\x1d\xb7\x81\xe5\xcf\x81\x1d\xdd\x01\xe7\x2b\x40\x41\x17\xc0\xe3\x17\xbe\xf7\x2d\x64\x60\x05\x95\x8c\xd1\xe4\x3e\x07\x12\x6a\x81\xdc\x54\x20\x2b\xbc\xe5\xde\xff\x0e\x5f\xa0\xf2\x77\x60\xc7\x52\xa0\x4e\xe4\x89\x5c\x3a\x2c\xf6\x3f\x70\x07\x4a\x1e\x03\xbf\x85\x02\xa5\x33\x81\xcf\x3e\xc0\x4e\x91\x07\xd2\x16\xff\x96\xf2\x1f\x7e\xdf\x05\x0c\xd0\x65\x2c\x6c\x80\x1f\xf0\x2c\x9e\xf5\x0c\x1e\xb8\x03\x7d\xff\x02\x6e\x27\x01\xca\x6e\xc0\xf5\x64\x60\x90\x0c\x70\x45\x0d\x18\xaa\x09\x9c\xf3\x05\x46\xbc\xe5\x3e\x17\x63\x4d\x80\xba\x1a\x60\x62\x30\xe3\x7c\x42\xbc\xaf\x2e\x04\x74\xbf\x03\xf6\x1c\x02\xe6\x94\x01\xa5\xf3\x81\x45\xa3\xbe\xc2\xfd\x87\x00\xcb\xa6\x00\x79\x65\xdc\x07\x63\xdb\x31\xc0\x35\x57\xd8\x45\x01\xbf\x13\x3c\x1f\x11\x61\xc0\xf6\x0d\x40\xe2\x55\x20\x67\xb8\x70\x16\x02\xb6\x1f\x01\x8a\x36\x72\xd4\xad\x52\x01\x8a\xba\x03\x27\xd4\x81\x42\x55\xe0\x52\x09\xb0\x73\x21\xf0\x70\x20\xf7\x3f\x10\x6c\xda\x75\x08\x68\xf2\x01\xf2\x23\xff\xdd\x7e\x29\xff\xe1\xf7\x69\xcc\xfb\x90\xea\x5e\x3c\x39\x01\x28\xd9\x03\x8f\x2b\x01\xe1\x1c\xd8\xac\xf7\x20\xf6\x77\xb8\x10\x09\x0c\x38\x0a\x08\x39\xfc\x30\x75\xe0\xd4\x23\x60\x54\x11\x70\x34\x00\x50\x1f\x0f\xd4\x9c\x00\x26\xa6\x00\xe5\xef\x80\xe9\xe3\x19\xf7\x17\x96\xef\xce\xd1\xc0\x7c\x77\xa0\xe0\x16\x60\xea\x08\xe4\xc7\x08\x27\x64\x60\x9b\x25\xe3\xfe\x5b\x77\x02\xae\xdd\x80\xec\x47\x8c\xcd\x64\x2f\x64\x2c\x2b\xeb\x05\x10\xa7\x00\x64\x4f\x07\x32\x0a\xb9\x2f\xfc\x8e\x89\xcc\x83\xa8\xf2\x64\x7c\xfb\x88\x0e\x90\x6f\x0e\x08\xf9\x63\xbe\x33\x70\xef\x11\xf7\x50\x79\xdd\x1d\x28\x74\x66\xfc\xff\x9b\x3e\x18\xb3\x5b\xe3\xc0\x82\xfd\x3d\x8d\x98\xff\xd2\xf5\x3c\xf0\xe8\x03\xd0\x39\xe5\x5b\xde\x83\x54\xe7\xe0\xbc\x2b\xa0\xe4\xc4\xf6\x0f\x70\x01\x8e\xae\x05\x06\x47\x00\x07\xaa\x00\xd5\x99\xcc\xfb\x10\xd2\xfa\x3d\x12\x61\x2f\x01\x8a\x4f\x30\x5f\xaa\x68\x3f\x60\xb8\x12\xc8\x4b\x01\x16\x27\xb0\x3d\x4b\xc2\x80\xac\x72\xc0\x6e\x1b\x90\xb5\x99\x4f\xe2\x59\x9a\x8c\x4d\x09\xd9\x96\xb0\xf1\x64\x3c\x05\xe2\x9e\x03\x99\xb7\xf9\xbf\x2d\xc3\xb9\x07\xc6\x16\x27\x60\x5f\x31\x63\x3b\xc2\x9a\x14\xe6\xe5\x7b\x15\xe6\x0e\x3d\xcc\x02\x72\x4f\x02\x7f\x24\x7f\xd5\x07\x42\xb4\x3f\x59\xc4\xb5\xe2\xc5\xbe\x49\x51\xba\xe2\x3c\x8c\x03\x3a\xda\x03\x4f\x1a\x01\x39\x7f\xe6\x01\x09\xf9\xcd\xdd\xd3\x80\xb0\xaf\x09\xef\xdd\x41\xb7\x85\xf7\x50\x5f\x07\x74\xcf\x07\x4e\x84\x02\x0a\x45\xc0\xa1\x01\xc0\x80\xf1\xc0\xfe\xeb\xc0\xb0\x89\xc0\x1e\x23\x40\xcd\x1b\x28\xf9\x13\x98\xa0\x00\x14\x8d\x04\xa6\x9b\x03\x05\x27\x81\x39\x6f\x80\xec\xe3\xc0\xfc\x81\x8c\xd3\x9b\xe7\x32\xee\xb3\xbc\x0e\x90\xf8\x01\x42\x9e\x94\x14\x0b\x78\xfc\x04\xa4\x96\x00\xeb\x7f\x07\x52\xe3\x58\x0f\x43\x12\x05\x64\xee\x07\x24\x6e\x40\x51\x2c\xcf\x13\xe9\x1f\x14\xf1\x3c\x6c\x79\x02\x7c\xff\x9e\x71\xe5\xa7\xb6\xc0\xd6\x1e\xc0\xfb\xc3\x2d\xf6\xb7\xe5\x7f\x6c\x5a\xda\x9a\x07\x20\xc5\x79\x9f\x89\xd5\x91\xfb\x42\x56\xf8\x92\x75\x70\xf0\x15\xef\xe1\xdc\x5b\xe6\x85\x9c\x3a\x0e\x74\xcc\x07\xea\x02\x81\x6e\x8f\x80\xfd\x47\x80\xde\x75\x40\xc5\x27\xa0\xdf\x71\xc6\xf9\x86\x86\x31\xee\x3d\xf6\x13\xe3\x7d\x53\x5c\x58\xd7\x42\xc7\x1b\xc8\xba\xce\x3a\x42\xcd\xb8\xff\x1b\xc6\xf3\x92\x9c\x18\x83\x4c\x30\x66\x2c\x2f\x51\x1f\x58\x3f\x12\x48\x52\x05\x62\xbd\x80\xf8\x46\x40\x92\x0b\x24\x98\x03\x85\x0a\x40\x62\x19\x50\x71\x97\x71\x23\x61\x1e\xd2\x54\x80\xab\x3a\xac\x17\xf1\xb4\x9c\xf1\xe5\xf7\x8d\x40\xb2\x21\xf7\xc6\x8a\xed\xd0\x9a\xff\xd1\xb6\x0f\x86\x74\x1e\x1e\x87\x32\x1e\x79\x47\xc4\x33\x6f\x94\x02\x58\xfa\x2d\xef\xe1\x64\x2e\x20\xdb\x03\x38\xb4\x17\x68\xdf\x0f\xd8\xf7\x12\xe8\x52\x22\x64\x25\x80\xa2\x3b\xe3\xde\xca\xc7\x5a\xf4\x0e\x72\x03\x00\xcd\x73\xdc\xe7\x42\xab\x1e\x48\x5b\x0c\xe8\x0b\xb1\x4f\x8e\xf5\x62\xe2\x82\x80\x25\x41\x40\x54\x57\xc6\xea\xa2\x37\x02\x6e\x72\xc0\xa6\xe7\x40\x40\x3c\xb0\xb9\x08\x88\x89\x01\xa2\x53\x80\xb4\xe7\xa0\xec\xb6\xd0\x0e\x88\x93\x00\xd5\x95\x40\xfc\x2d\xe0\x74\x77\x20\xbe\x04\xb8\xe6\x02\xc4\xcf\x03\x84\xfc\x39\xf1\x57\xe0\x7f\x8a\x40\xec\xcf\x6c\x67\x44\x57\x91\x07\xf0\x1f\x3a\x10\x52\xde\xc3\xfd\x54\x1e\xff\x8b\xf7\xd0\xdc\xef\x43\xe4\x7f\xd4\x0c\xe0\xb1\x5c\x06\x68\xd7\x93\xf5\x6e\xba\x5a\x33\xef\xa5\xf7\xbe\x16\xbd\x83\xcc\x06\x60\xcc\x06\x8e\xcb\x42\xbc\x48\x9a\x00\xcc\xcc\x63\xdd\x83\x05\x2a\x40\xe4\x5b\xc0\x6c\x18\xef\x0d\x76\xaf\x80\xb0\x12\x60\xad\x22\x10\xe6\x05\xf8\xdf\x07\x22\xc7\x01\xd1\xdd\x01\xe1\x34\x9b\xe6\xc9\xba\x08\x82\x8f\x45\x5c\x03\xaa\x7a\x01\xe1\xa1\x40\xdd\x17\x20\xd2\x12\xb8\x36\x18\xd8\xf4\x3f\xe0\x69\x0f\x20\xf2\x3a\x73\x42\xa5\xbc\x9f\x66\x1e\xc0\x89\x36\xfc\x87\xb2\xd6\x78\xf7\x37\xbc\x87\x36\x7a\x07\xcd\xba\x17\x6a\x62\x56\x28\xde\x2a\x6a\xc6\xbb\xc7\x03\xb2\xed\x38\x4e\x75\x3f\x09\x64\x8d\x03\xfa\x66\x01\xa9\x85\xc0\xd0\xde\x40\xbc\x19\xc7\xcf\xe8\x7a\x60\xfa\x0e\xb6\x47\xff\x29\xb0\x51\x8e\xfb\xe5\x6c\xd8\xcf\xfb\x47\x60\x0d\x63\xbc\x81\xb9\x80\xef\x24\xe6\xaf\x6c\xd2\x06\x36\x08\x3e\xaf\x02\x08\x67\xcd\xfc\x37\x40\x88\x16\x50\x35\x14\x08\xd6\x00\xea\x4c\x99\x2b\x71\xcd\xbe\x45\x07\x62\xa3\x1e\xf0\x51\xc8\x45\xe2\x5a\xf3\x3f\xa4\x76\xaf\xb6\x6f\xcd\x07\x90\xfa\x41\x5b\xdd\x8b\xef\x44\xbc\xfa\x1b\xdd\x0b\x29\xee\x2f\xde\x07\x2f\x16\xf1\x0f\xa9\xde\x41\x46\x28\xe3\xdb\xc9\x4d\x40\x57\x51\x8d\x57\xb9\x18\x88\x0c\x00\x46\x9e\x00\xc2\x8c\x80\x89\xd3\x19\xff\x17\xf6\xd3\xc0\x32\x60\x61\x16\xa8\xcb\xb7\x95\x26\xe0\x6d\x05\x38\x5d\x67\x1e\x83\x4f\x16\xe0\xf3\x9e\x35\x03\xfc\x32\x00\x49\x3f\xc0\xbf\x3d\xf7\x98\xf1\x35\x02\xaa\x87\x03\xbe\x2b\x80\x53\x3f\x02\xbe\x5f\x80\x1b\x25\xbc\xd7\x3c\x73\x03\x7c\x7b\x02\x7f\x7f\x6e\x79\xee\x6b\x45\xfd\x24\x47\x11\xef\xb7\x2d\x17\x47\xb1\xbf\x5c\x5b\x3f\xf8\xa6\xef\x0b\x9f\x9a\x71\x58\xec\x9e\xd9\xb6\xef\x89\xf4\xf4\xd8\xac\xfb\xb0\x98\xc7\xf8\x1c\x40\x36\x14\x88\x6e\x0f\x28\x38\x00\x61\xea\xc0\x60\x75\x20\x24\x1e\x18\x9f\xc0\x76\x0b\xf1\xc2\xab\x13\x60\x98\x0e\xaa\x72\x59\x94\x00\xee\x2e\x3c\x0f\xae\xef\x01\xcf\x4a\xc0\x43\x93\x6f\xb4\xb9\x09\xef\x9d\x04\xb8\x09\x39\x41\x10\xb0\x2e\x02\xa8\xaa\x03\x5c\xc3\x81\xd3\x9a\xcc\xc9\xbd\xae\x03\xac\xbd\x09\x3c\x1f\xc1\xaf\xff\x3c\x08\x70\x9a\xd2\xda\xee\x65\x62\xdf\x41\xb3\xe7\xad\x79\x10\x37\x87\xb7\xf1\x03\x69\xdf\x17\x31\x4e\x7c\xc3\x7f\xd1\x6c\xed\x07\x52\xfe\x47\x96\xb8\x4e\x52\xed\x78\xdc\x2c\xf2\x89\x36\xde\x03\xe4\x03\x01\xe1\x74\xdf\xe7\x17\xc0\xdb\x0e\x18\x61\xc4\xbc\x0e\x21\x0f\x77\x35\x63\xde\xd8\xea\xd9\x80\xc9\x65\xc0\xb9\x9e\xf5\x83\x9c\xe2\x78\x0e\x1c\xab\x39\x36\x38\x89\x7a\x18\x0e\x12\xa0\xc0\x04\xb0\x3f\x0a\x54\x8e\x05\xec\x83\x81\x93\xa6\x80\xfd\x66\xce\x79\x85\x58\xfb\xec\x06\x60\xa7\x0a\x7c\xfc\x1f\x60\xd3\xa7\xb5\xdd\x52\x1e\xc4\xc2\xef\x5a\xf3\x20\xbe\x17\x79\x0a\xff\xc9\x7f\x39\xc2\x63\xa5\xa8\xab\xb4\x47\xd4\xff\x28\x12\xf1\xfe\xb6\xfc\x8f\xc4\x35\x3c\x46\x32\x2c\x82\x20\x23\x1e\xbd\xf4\x81\x1e\x73\x00\x17\x7f\x60\x90\x3f\xb0\xca\x1c\x18\x77\x12\x70\x38\x06\xe8\x74\x04\xec\xfa\xf3\xfe\xb1\xdc\x9d\x6d\xb1\x3e\x0f\xea\x3b\x6a\xdd\x05\x08\xfd\x13\x58\xf2\x18\x48\x3e\x0a\x58\xd6\x71\xaf\x2d\x8b\xe7\x40\xa5\x11\x60\xf6\x8a\xb9\xac\x66\x96\xc0\x8d\x08\xc0\xec\x3a\xe7\x42\x26\xa9\xc0\xff\x24\x2d\x76\xb7\xe5\x41\xe8\x8a\xf9\xa5\xce\x2e\x1e\x9b\xd7\x81\xc8\x8f\x3a\x25\xda\xd9\xcc\x7f\xf9\x8b\xc7\xbd\x22\x2f\x6e\xd7\x8f\x3c\xe6\x8b\xbc\xa8\x2c\x91\x77\x28\xe5\x7f\xc4\x8a\x55\xa7\x8d\xa2\x7f\xf9\x8a\x71\x66\x75\x24\x20\x57\x08\x38\x2a\x00\x4a\xdd\x00\x5b\x33\x40\x75\x06\xb0\x34\x0b\x98\x1a\x01\x58\xba\x73\xde\x6d\xb6\x17\xb0\x91\x07\x4c\x56\x00\xae\x9f\x81\xc5\x1a\xc0\x86\xa1\x3c\x47\xc9\x11\xc0\x02\x33\x20\x6f\x0c\x30\x3f\x1b\xa8\xb8\x09\x18\x7e\x04\x4e\xd4\x02\x73\xdf\x01\xd7\xa2\x00\x03\x59\xe0\xf1\x05\x40\xff\x67\xe0\xaf\x62\x40\xef\x26\xdb\xa9\x2d\x3e\xf7\xc9\x22\x3f\x4e\x53\xec\xab\xa5\x2e\xea\x6d\x35\xaf\x03\x51\x3f\xe9\x3f\xf9\x2f\x6d\xfa\xdf\x34\xf3\x3f\xbc\x79\x8c\x9f\xd4\xda\x0f\x02\xc4\x79\x71\x17\xd5\xcb\x1d\x65\x79\xb4\xea\x07\x74\x51\x02\xcc\xba\x03\x83\x4e\x00\x8b\x9e\x02\x9a\x42\xac\x94\x01\xf4\x4b\x81\xb9\xbf\x02\x4b\x4e\x01\x73\xf6\x03\x6b\x6e\x03\x7a\x16\x40\x88\x22\x6b\xb3\xc5\xbf\x05\x66\xd8\x03\xdb\xe5\x01\xed\xde\xc0\x9e\x99\xc0\x34\x5f\xe0\xa8\x16\x30\x55\x0b\xb8\xdc\x13\x98\xfc\x09\x78\xa0\x0e\x4c\xba\x0a\xfc\xee\x06\x4c\xd0\x61\x3b\xc7\x8a\x7a\x39\xa3\x44\x7e\xed\x70\xb1\x4f\xe9\x10\xb1\x9f\x4e\x33\xff\xe3\x3f\xf4\x5f\xa4\xfa\x27\x52\xfe\x4b\xce\xef\xad\xed\x97\xf2\x5f\x22\x4e\xca\x52\x1d\x2b\x64\xb6\x1c\x55\x39\x3c\xd2\xdb\x53\xe1\xd7\x59\xa9\x03\xd5\x1f\x96\xd6\x75\xa4\xea\xe0\x7c\xfb\x4e\xf6\xf8\x09\x98\xf3\xb4\xb3\xa7\x92\x0d\xa0\xfb\xa6\xcb\x8f\xa3\x97\x02\x5a\x11\x5d\xcf\xe9\xca\x03\x53\x24\xdd\x92\x4c\x77\x01\x13\xbb\x74\x9b\xb4\xb2\x3b\xa0\x21\xd3\xf5\x99\xff\x30\x60\x5c\xef\x6e\xca\x31\x67\x81\x31\x63\xbb\xb6\xdf\x32\x1f\x50\x9b\xd1\xc5\xb8\x44\x02\xa8\xfa\x76\x8e\x39\x58\x05\x8c\x1c\x24\xbf\xfc\xbb\x9e\xc0\x88\xee\x9d\x94\xef\xe4\x01\xc3\x1e\x76\xb4\xfc\xe5\x31\x30\xf4\x63\x07\xdf\x4f\x9f\x80\x41\x17\xe5\xa8\x0e\xa9\x2c\x8b\x49\xc2\xa8\x24\xee\x97\xbd\x72\x79\xfc\x2f\xfe\x47\x5b\xfe\xcb\xd6\xac\x8e\x54\x3d\x4e\x3d\xdb\x99\xaa\x1e\xf1\x29\x5d\xe9\xf7\xe1\xa1\x0a\xa7\xf9\xf9\xb3\xc3\x78\x28\x30\x2f\x64\xa5\x84\x51\x89\xa5\x69\x7d\xa8\x5e\xb3\x08\xdc\x67\x43\xfb\x82\x32\xf1\x2c\x34\x7e\x1e\xf8\xa9\xab\x31\x30\x26\x49\xa5\xd3\x90\x1b\x58\x30\xf2\xa1\x4a\xf8\x94\x43\xc8\x1f\x5a\xad\x52\xb3\xe0\xa3\x4c\x7b\x95\x4e\x2a\xe6\x76\xe3\x64\xcc\x95\x97\x0c\xfa\xe2\x59\x29\x33\xa4\xbf\xb5\x8a\x7b\x64\x7b\xa0\x6f\xa7\x41\x61\xe9\x4e\x80\x92\xd9\xc0\x0d\xc2\xd9\xba\xb7\xb7\x72\x59\xcd\x78\x40\x61\xc2\x80\xa4\x33\xd5\x40\xaf\xce\xfd\x93\x6f\x1a\x01\x3d\x3b\xf4\xf3\xff\x29\x1f\xe8\xd1\xbf\xef\xb3\xbf\x57\x00\x5d\x4f\x2a\x52\xdf\x8b\x4e\x6b\x7a\xfa\xd1\xe8\xdb\xa5\x86\x47\xf9\x27\xc2\xf8\x5f\xf6\x17\x58\x77\xa4\x48\xb9\x75\x68\x77\xc2\x35\x53\x5e\x2a\x52\x55\x35\xae\x81\x75\x5f\x36\x3a\x0c\xa4\x08\xe0\xef\x35\x98\x7e\xef\x06\xae\x26\xad\xac\x1a\x41\x3a\x1a\xd6\xa7\xd4\xe8\xd6\xe9\xe2\x28\x35\xaa\xf3\xe9\x61\x0c\x45\x9e\xf1\xf1\xe3\xa8\xfa\x3c\x50\x7b\xfc\x05\xd9\xcf\x40\x5f\x57\x8d\xa2\x7e\x8f\x00\x85\xed\x9a\xc1\xe3\x6d\x80\xee\xcf\x35\x97\xeb\xc7\x03\x5d\x82\x34\x2a\x96\xc6\x03\x9d\xd2\x34\xc6\xba\xee\x07\xda\xbf\x1d\x7f\x7e\xa3\x1a\x20\x57\x36\x7e\x52\xca\x20\x40\x66\x8f\xba\x4d\x3e\xed\x49\xe3\x50\x49\xf7\x18\xc7\x2a\x9e\xa2\x58\x3d\x7a\xdf\x75\x5a\x83\x6a\x2f\x9e\x10\xce\xa7\x36\xe0\x1d\xd5\x6b\x47\xfc\xcd\xb8\xcd\x90\x50\x1e\x07\x88\x7a\x18\xfd\x32\x85\x71\x9f\xc8\x77\x2b\x8e\x6e\x4f\x91\xb0\xd0\xa5\x17\xd9\xb3\xe5\xa9\x12\xe1\x2e\xc9\xe3\x06\x11\xca\x1a\xa3\xc3\x76\x6e\x78\xac\x4a\x76\x06\x68\xaa\x51\x06\xe1\x11\x3a\x96\xea\x71\x4e\x77\x27\x50\x24\x59\x96\xae\x49\x38\xa7\xe9\x79\xe6\xbd\xe8\xcf\x67\x7e\xc8\xe4\x2a\x6d\x42\x73\x47\x18\x68\x53\x55\xba\xbb\x8d\x2e\x45\x20\x39\xc3\x59\xcb\x7b\xd2\xde\x3d\xab\x4c\x95\xea\x71\x33\x1b\x74\xc9\xd3\x66\xbe\xb2\xa0\x51\xd7\x62\x0d\xdd\xbc\xd7\x6d\x58\x4f\x6f\xa9\x33\x3c\x91\xb8\x6d\x33\x3e\xe6\xd1\x37\xd6\x3e\xba\x8f\x56\xa0\x56\xfd\x09\xb2\x6b\xfa\xe1\x6b\xf4\xcd\xa6\xeb\x34\xf2\xcd\xd2\xb8\xbf\x68\x1e\x26\xbe\x67\xbb\xc7\x6f\xe0\x71\xb4\xd8\x0f\x63\xe4\x21\x61\x2c\x53\xe9\x4e\xe8\x5a\x7e\x23\xfb\x71\xc6\xcd\x41\x54\x2d\x4d\x7a\xc4\x76\xc7\xbc\x62\x34\x3e\xfc\xa4\x26\x55\x49\xfd\x9d\x26\x91\x9f\x78\x34\xb2\x5e\xc6\xaa\x5a\x46\x9f\x96\xe9\x68\x53\xbd\xdb\xf4\x1c\xf3\x5f\xe6\xad\xd3\xa3\x8c\x4a\xab\x9b\x3e\x2d\x98\x31\xd7\x58\x1f\xa5\x5f\xd3\x3c\xaa\xf7\xb6\x73\x5c\x28\x32\x30\x8d\x4c\x98\x41\x66\x14\x37\x8a\xce\x30\x46\x56\xba\x54\x77\x34\xea\x68\x4e\x8a\x33\x0b\xd7\xaf\xa6\xb3\xcc\x02\xb3\x20\x9a\xc9\x05\x0d\x5c\x49\x5f\x60\xc6\x3d\xdb\xe6\x15\x95\x13\xe2\x62\xf8\xf7\x71\xc2\x47\x0d\x7f\x64\xed\x1f\x83\xfb\x8f\x68\xc5\x1a\x64\xfe\x41\xca\x4d\x7a\x27\x44\xfe\xc7\x79\x1e\xa7\x69\x8b\xfc\x18\xd2\xb1\x2e\x0c\x53\xa6\xfa\xeb\x16\xc9\x30\x5a\xd7\x29\xce\xac\xca\x11\xfd\x52\x93\xec\x0b\xd3\x9c\x42\xf6\x04\xc9\x68\x71\x1f\x98\x37\xba\x14\x39\x57\x1f\xd5\x23\x74\xc1\xce\xd9\x80\xd0\x39\xcb\xeb\xf3\xe9\x29\x18\xfd\x62\x44\x19\x83\xae\x38\x4e\xf0\x30\xa6\x75\x33\xc2\x91\x75\x15\x14\xb6\x58\xcc\x63\xfb\x97\x8a\xf7\x9c\xad\xe2\x14\xe8\xcc\x62\xd5\x34\x8a\x72\xf6\xa5\xe9\x33\xa8\x12\x6c\x55\x60\x4a\xdf\xc4\x4a\x9d\x91\xe6\x25\x8f\x18\x39\x5e\x12\xc3\xb1\xd9\xd2\x7a\x2b\x31\x98\x2c\xc5\x8a\xb8\x45\xd9\x11\xfa\x26\xe6\x9d\x2f\x52\x9d\xd6\xd4\xfd\x2e\x7d\x82\xa9\xd5\x6f\x34\x1f\xc6\x8d\xac\xb5\xb9\xe0\x06\xdb\x3f\x47\xe4\x47\xcd\x24\xfd\xea\xcc\xa0\x71\x54\xed\x4e\x6e\xe4\x7e\x50\x31\x3a\xec\xcf\xe1\xef\xb5\xe8\xdd\x82\xeb\xf4\x68\x7e\x3c\x0b\x0d\x69\xd6\x57\xdb\xb3\xca\xb8\x7d\x0a\xdb\x69\xb5\x92\xf5\x51\x8c\x87\x99\x13\xfe\x69\xa0\x6f\x41\x19\x87\x94\x07\x33\x26\xcf\x9a\xd0\x6b\xe5\xbd\x36\x84\x3a\x76\x36\x66\x7e\x08\xe0\x20\xee\xb0\x0e\x47\x15\x28\x47\x5b\xf1\x7a\x14\xe5\x1e\x8e\x1a\xbc\x72\x1c\xac\x16\x53\x64\x71\x10\xf7\x5c\x07\xf8\x12\xb7\xd5\xfe\x45\x14\x31\x4f\x56\xec\xc9\x22\x7c\xd2\x7e\x11\x73\xdc\xed\xcc\x0e\x90\x72\x89\x9d\x0a\x9f\x09\xec\x54\x6e\x13\x7e\x63\x5b\xf5\x82\x70\x0a\x9b\xfa\x7f\x48\x3f\xc0\xea\x12\xdb\x6f\x36\x8b\x47\x23\xe2\x89\xa5\xba\x4f\xa4\x4c\x58\xaa\x83\x13\x0e\x4e\xa4\x42\x44\x3e\x88\xe7\x31\xd6\xc9\x58\x9b\x63\x42\x68\xc8\x8a\x03\xe6\x3f\xf1\xbb\x5a\x50\x5c\x30\xeb\x6b\x43\xa8\xe2\xbc\xe3\xac\xbe\x2e\xe5\xc1\x68\xae\x60\x94\x7a\xe4\x5c\x27\xf2\x93\x3e\x9a\xab\x28\x03\x97\xcb\x5d\x23\x66\x60\xeb\xc4\xfa\xbd\x6b\x96\x02\xe1\x0d\x2e\x0d\xa3\xc8\xcf\x5d\x65\xb9\x03\xd7\xba\x4a\x66\x54\xb9\x7e\x5c\x41\xf6\xaf\x33\x66\x66\x81\x6b\x38\x2b\x2c\xb8\xca\x4a\x68\xaf\x73\x51\x29\x5a\xc5\x63\x35\xf3\x63\x5e\xd7\x93\xfd\xab\x75\xae\xd3\xcf\x2b\x25\x8d\x32\x3c\xbe\x25\xbf\x70\xbc\xc3\xf6\xdb\x6a\xf0\x68\x4d\x7a\x29\x71\x1f\x66\x71\x1f\x20\x30\x1f\x24\x24\x73\x11\xe1\xf3\xbe\x39\xa6\xc4\x4a\x71\x31\x61\x96\x92\x53\x23\xab\xb5\xd8\x8d\xb4\xa5\x55\x6b\x09\x7b\x9a\x9f\x85\x29\x6d\x78\x30\x4d\x7c\xeb\x76\xec\xbb\x35\x94\x91\xa8\x5c\x5f\x4b\x7e\xd5\xe3\xa4\x9b\x3a\xdb\xed\x25\x2a\x38\xfa\x5e\xe3\x29\xf7\x99\xd5\x9b\x72\x33\x3f\x8c\xa2\x9d\xd9\xd7\x98\x19\x3a\xbe\x43\x98\x89\xe4\x57\xb6\x9c\x70\x59\x3f\x6b\xee\xc0\xe3\x3b\x6f\x23\xad\x4c\x9f\x94\x64\x1e\x83\xf3\xe8\x13\x7c\x6e\x56\xd0\x93\xf1\x89\x3a\x41\xef\xeb\xdd\xf9\x2a\x29\x76\x78\x34\x3e\xa6\x79\x74\x1f\xff\x3b\xcd\xab\x5b\xf9\x17\xaa\xb9\xac\xe9\xd2\xf4\x95\x2e\x4a\xc4\xa6\x05\xf4\xaf\x36\x38\x99\x90\xbd\x3e\x79\x56\xf4\xbc\xdc\x60\x4d\x95\xba\x55\xe6\xfc\x2d\xec\x3c\x1d\x08\xdf\xb2\xd2\x74\xa2\xf5\x63\x32\x6b\x0d\xad\xb6\xb9\x8f\xd6\xd2\x73\xd6\x71\x77\x65\x7c\xcb\x87\x6f\xe5\xab\x96\x78\x52\x7c\x1c\xd0\xc3\x9b\xf6\x85\xce\xaf\xc4\x83\x0c\x82\x45\x05\xd4\xf5\xeb\x18\xc7\x09\xd9\xae\x48\xfb\xdb\x06\x13\x55\x3a\xdb\x85\xfc\x30\x9d\xe2\xe6\xfa\x7c\x5e\x81\x1b\x4c\x99\x71\xb5\x51\x6b\x1d\x31\x95\x36\x0e\x63\xbe\xd8\xfa\xe8\x04\x1f\xfe\xf7\x39\xb4\x4e\xd6\x8f\xda\xc3\x1d\x7d\x5e\x71\x4e\x18\xe2\x77\x89\xec\x0e\x88\xbf\x43\xeb\x2a\xf0\xe3\x2f\xb4\xee\xfc\x4f\xbe\xa7\x38\xe4\x23\xf2\xe6\xdc\x5f\x08\xe3\x86\xd3\x16\x84\x8e\x07\xac\x5b\x36\x86\x66\xef\x89\xfd\x63\x7c\xc5\x83\x71\xa8\x62\x75\x96\xa5\x4e\xab\x89\x3f\x66\xb6\xc6\x95\x78\x0d\xcd\x3c\x98\x89\x9e\xb4\x8f\x4e\x53\xf4\xa1\x4f\x1b\x6f\x1e\x40\x27\x93\xa1\x77\x38\xaa\x29\x56\x85\xd0\x04\x74\x3c\xbc\x51\xcc\x4c\xc3\x44\x7f\xd8\xa4\x2d\x47\x19\x56\x94\x67\x1f\xe6\xbf\xa4\x32\xce\x1b\xd9\x38\x8d\x79\x2f\x72\xf3\x28\x27\x8f\x56\xb0\xa1\x6f\x10\x25\xc3\x0a\x2d\x51\x19\xac\x44\xb2\x69\x62\x2c\xed\x9f\x9b\x16\x65\x13\x93\x33\xe2\x42\x31\x59\x10\x71\xbb\x96\xfb\x02\x19\x9f\xa1\x4c\x36\xdc\xee\x07\x5a\xf9\xff\xc2\x8b\xa1\x9c\x21\xb0\x94\xea\x74\x76\xcb\xc9\x1f\x3c\xc3\x98\xcf\xe6\xa2\xb2\x8a\xf2\x05\x27\x91\x17\x61\xbb\x7c\x1d\xcd\xf6\x92\xae\x9e\xb4\x9b\x19\x37\x7a\xd3\xb7\x32\xf4\xf3\x23\x6f\xd6\x19\xe8\x4f\xf9\xf2\x24\x93\x60\xda\x17\xd5\x7e\x5d\x4f\xfb\xe2\xa0\xcb\x1b\xe9\x7d\xa4\xba\x30\x72\x59\x31\xa2\x60\x52\x9c\x78\x93\x21\x31\xb4\x1d\x79\x9c\x94\x0f\x93\x18\xa2\x4a\xb8\x5b\xe2\x09\x9e\x87\x84\x0f\xf3\x89\x39\x10\xdf\xc8\x3c\xca\x04\xe3\xd5\x14\x81\xe2\x1f\xf0\x0c\x27\x34\x31\x5f\x2c\xa1\x22\x93\x98\x16\xf1\xb9\x3b\xc9\xee\x38\x95\x6a\xf2\x9f\xb8\x86\xfa\x5d\xc2\x18\xf3\xb0\x81\x3c\x74\xf3\xf1\x47\xe4\x07\xd1\xf5\xaf\x89\x1f\x12\x7d\xe8\x23\xf1\xaa\x98\x17\xe3\x23\xbf\x8a\x78\xd2\xeb\x5e\xb9\xd0\xfa\x5d\x65\xc4\x5f\xd7\x4e\xc5\x93\xf2\x00\xeb\x59\xbe\x94\xa5\x99\xfc\xee\x4f\x7c\xda\x79\xc7\x02\x09\x85\x9d\x75\x3d\x84\xde\x65\x7a\xfb\x0d\xb4\x7f\x6a\xac\x0a\x27\x6f\x54\xf5\x8b\xa6\xf8\xa0\x6c\x18\x4d\x27\xf8\x6e\xd5\x71\x22\xee\x9f\x20\x9e\x5c\x9a\xf9\x30\x7a\xed\x08\xa7\x96\xe4\x72\x86\x9a\x6e\xcc\xfe\x90\xde\xc4\x1d\x0b\x33\x9c\x0d\xc9\xee\xe6\xbe\x49\x03\x79\x45\xa6\xdf\xf0\xa3\x15\x99\x7e\x85\x95\x49\xd2\x23\x98\x69\x91\xbe\x9a\x95\x17\x24\x77\x2b\x69\x3e\xd3\x3e\x9d\xa0\x9a\x59\x9a\x0a\xf7\x0d\x4a\xd3\x7c\x48\x2b\x38\xb9\xdd\x0b\xc2\xd5\x93\xb7\xfc\x4d\x0c\x2f\xe6\xc5\xac\x2b\x73\xa5\x78\xe7\x5c\xef\x4e\xbb\xb5\xa3\xa3\x1f\xcd\xe2\xb2\xd9\x01\x64\x8f\x45\x49\x30\xe9\x1b\x2c\xa2\xce\xbf\x80\xa1\x2e\x27\xde\x7a\xe2\x73\x9e\x7c\x35\x8a\x02\xe5\xb8\x2a\xe6\x0b\x0c\x3b\xc0\xa8\x6b\x9f\x82\x04\x62\xbd\xc9\x37\x30\x2a\x0f\x48\xc4\xcc\x35\x5b\xcc\xe4\x73\xde\xb6\x23\x7f\xdd\x1a\xab\x44\xf1\x3d\xc7\x67\x24\x2b\x7a\x2d\x98\x42\xff\x32\xe7\x00\x77\x38\xcb\xd1\xb1\xa0\x78\xb9\xf5\x9c\x13\x3d\xef\x9c\x79\xde\x94\x57\x6d\x93\xe1\xfb\xfe\x39\x27\x53\xc9\xf3\x72\x32\xf3\x88\xc9\xb1\x75\x65\x39\xf3\x67\x7c\x8e\x53\x44\xdf\xa2\x7d\x81\x74\x93\xb6\x24\xdc\xa6\x3c\x3c\xab\xf1\x45\x13\x8f\xac\x1f\x94\x51\xd5\x14\x01\xac\xb5\xf7\x21\x3e\xa8\xa3\x97\x1f\x45\x1d\x29\x0f\xa6\x59\x0f\x47\x2e\x34\x8b\xfd\x80\x55\xcd\x66\xcb\x32\x1f\x66\xc6\xee\x38\xfa\xf4\x09\x89\xac\x93\xa2\x66\x96\x44\xab\x6e\x08\xd2\x28\xab\x93\xf6\x89\xea\x78\x8c\xf9\x02\x8c\x3c\xe1\xdf\xf8\x30\x2e\x4a\xf4\x9c\x0a\x9f\xa8\x52\x5e\x54\xa8\x30\x99\x6a\x39\x45\x43\xf5\x4d\xf9\xf5\xac\xe8\x55\x70\xc8\x81\x76\xa4\x42\x53\xcf\xcf\xfc\x7b\xfe\x86\x52\x9d\x98\x42\xf9\x6d\x79\xfc\x7b\xce\xab\xf2\x23\x58\x43\x37\xdf\xe6\x2c\x79\x7c\xae\xff\x0d\x7a\x22\xb9\x43\x1b\x89\x57\x94\xbb\xfd\x0d\xe5\xdd\xb9\x9e\x9f\x03\x5a\x78\x40\x2b\x9c\x19\x45\x5f\x3a\x25\x8c\x76\x19\xf3\x58\x7e\xde\x46\x11\x31\x94\x57\xcc\x9b\x1a\x47\xf9\xf6\x2c\x93\x44\xfa\x79\x9a\x76\x32\xc5\x3f\x8d\x95\x12\x72\x10\xd5\xce\x19\xe4\x85\x03\x3d\x32\xe9\xd4\xa3\x90\x9c\x4d\x51\xb0\x7d\x62\x4e\x41\x6b\xfb\x77\x3a\xf3\x58\xda\xab\x03\xbd\x63\xe9\x54\x25\xaa\x79\x95\x5e\x19\x49\x71\xac\x74\x20\xf3\x1f\x4a\x1f\xcf\xa1\xb3\x7d\xe9\x22\xee\x1f\x55\xfc\x96\x15\xbd\x8a\x5f\xb1\xe7\x96\xbe\xdc\x48\xeb\xbe\xc4\x2d\x9e\x74\x73\x4a\xae\xe4\x90\x7f\x94\x1a\x95\x52\x3c\x2d\x4e\xaa\xa5\x7f\xbf\x2b\xe1\x34\xcd\x5f\xf1\x18\xee\x1b\x54\xdc\xff\x31\xd5\x0e\x76\x4c\xfb\x95\xe2\xc4\x0e\xc9\x07\x33\xc0\xc1\x39\xcc\x88\xd7\xc1\x26\xd2\xc9\x59\xe2\x15\x43\xe7\x07\x13\x49\xc2\x64\xf6\x03\x5e\xd7\x73\xf6\xa5\x92\xdf\xcc\xb0\x97\x90\x7f\x4c\xae\xca\x22\xef\x1c\xfb\x90\x79\x5f\xc3\x2b\x59\xd5\x4a\x79\xf7\x76\x7a\xba\xbd\xd4\x0b\x68\xdf\x90\xf3\x93\x56\xf0\x9a\xf9\x30\x62\xbc\xa8\x18\xda\x9e\x3c\xa4\x62\x34\xc7\x87\x8a\xe8\xe1\x54\x03\xaa\xd0\x99\x48\xeb\xb7\x1c\xdc\xe9\xb2\x22\xd6\x84\xf6\xbf\x0a\x23\x3b\xda\x71\xca\xd7\xaf\xa3\xc8\x5e\x9e\xc0\x0c\xc5\xf2\xab\x9b\x29\xcf\x2e\x77\xe5\x6f\xb2\xb7\x66\x07\xbd\xbe\xfc\xc2\x7e\x7a\x12\x7b\x8c\x4f\x32\xef\xe5\x1a\x97\xc6\x76\x7f\xbe\x4f\x19\xf4\x9e\xed\xbf\x50\x4d\x75\x4f\xc4\x87\x41\xad\x78\x40\x94\x95\x5a\x98\x33\x1f\x64\xb1\x4b\x2a\xed\x8f\x86\xbf\xa6\xd3\xbe\xa0\x37\x27\x93\xd6\xc3\x74\xbb\x2d\xa4\x3e\x35\x71\x1d\xf7\x4b\x1a\x6b\xc2\xbc\x98\x11\x06\x45\x74\x9a\xe9\xaf\xc0\xbc\x98\xee\x2b\x77\xd1\xbd\x13\xb9\xca\x52\xb1\x52\x23\x3d\xd9\x57\x8b\x1d\x91\x0f\x5c\xe3\x75\x71\xe0\x04\xe7\x51\x07\x1e\x0d\xa7\xef\x5d\xf3\x74\x02\xcd\xd8\x01\xf9\x59\x64\x77\x4d\xcf\xc5\x34\x5f\x35\xea\xb6\x64\x48\x4d\xbe\x2b\xed\x33\x07\x9c\x83\x6a\xf9\x75\x31\x54\x53\xab\x39\x91\x71\x84\xdf\x6f\xa7\xd8\x17\xa9\xaa\x81\x47\xbe\x6b\x57\xa5\x72\x81\x56\x76\x75\xee\x5d\xe6\xc1\xf4\xfc\x59\x8f\x7f\xff\x76\x10\xf0\x4b\x03\xeb\x60\x3c\xd1\x04\x06\xbc\x06\x1e\xfe\x06\xf4\xbf\x0d\xdc\x99\x09\x28\xef\xe0\x7a\xfe\x40\x53\xe0\x92\x1e\xa0\xb2\xf1\x5b\xbc\xff\xd8\x7d\x60\xf4\x0a\xe0\x50\x57\xee\xd7\x5e\xb9\x01\x98\xfa\x06\xd8\x7d\x16\xd0\x8e\x6c\xd1\xf7\x2f\x0c\x03\xe6\xef\x03\x84\x58\x66\xe2\x09\x6c\x1b\xc9\x78\x45\x8e\x23\xe0\x30\x08\xd8\x72\x06\x58\xb3\x92\xf1\x6f\x2f\x2f\x20\x7b\x1d\xb0\x61\x03\xeb\xd6\xc7\x28\x02\x99\x77\x81\xe4\x1c\x20\xfb\x12\xeb\x1f\x6c\xdd\x02\x94\x9c\x07\x72\x23\x80\x83\x12\x21\x7a\x70\xe7\x9d\xa2\xd1\xc0\xad\x9f\x79\x15\x36\x06\xf2\xf8\xc7\xa8\xaf\xf0\xff\x2f\xff\xce\x7f\x78\xe1\x09\xf4\x79\xd8\xc2\x77\xb8\xbf\x11\xe8\xa7\xf1\x2f\xbc\x87\x42\xa0\x7f\x12\xf7\x37\x18\xe8\x0e\x1c\x7f\x03\x0c\xeb\x01\x1c\x7a\x0c\x8c\x74\x05\xaa\x1b\x81\x71\xf7\x04\xef\x05\x26\x96\x03\xa5\xfb\x81\x69\x45\x2d\xfa\xfe\xf9\xc6\xac\x5f\x9e\xf3\x86\xfb\xd9\x37\xe3\xfe\x9a\x80\x70\x12\xc9\x18\x0c\xac\xd6\x03\x32\x82\x58\x17\x24\xfd\x57\x20\x64\x14\x90\x61\xc1\x18\x58\xfa\x3d\x20\x25\x8b\xef\xc7\xe6\xd8\x33\x5e\x28\x9c\xaf\xb2\xb3\x81\xda\x76\x40\x8e\x25\x50\xff\x33\x90\xb7\x99\x75\xbd\x73\x55\x80\xc6\x5f\x81\xfc\x09\xc0\xfb\xee\x2d\x7d\x40\xda\xda\x2f\xe5\x3f\x48\xf5\x2e\x1e\x95\x02\xdd\x6e\x31\xde\xdf\x7d\x18\x70\x73\x28\xd0\x53\xf9\x5f\x78\x0f\xd5\xdc\x37\xe5\xd8\x58\x40\xf9\x19\x50\x3b\x14\x18\x36\x80\xfb\x7c\xa8\xa6\xb5\xf0\x1f\x76\xd5\x73\x6d\x58\x3a\x0f\xdb\x77\x02\x06\xb3\x80\x2d\x19\xc0\x42\x6d\x20\x3d\x0c\x30\xdb\x06\x64\xfe\x0e\x2c\xcf\x01\xd2\x35\x01\xe7\x13\x40\x62\x95\x70\xa2\x02\xd2\xf2\x81\x90\x3a\x20\x75\x21\xdf\x55\x4f\xed\x09\x24\xe7\xb3\xc6\x7b\x8e\x0e\x90\x31\x10\x28\x0d\x6c\xe9\x7f\xb0\x35\x15\x38\x3f\x89\xfd\xec\x8e\x39\xb0\x7d\x30\xf0\xd3\x27\xe6\xd9\x7c\x38\x06\x64\xab\xfe\xbb\xfd\x31\x62\xdd\xfa\xd9\x43\xa0\xd3\x6c\xe0\xde\x5c\xa0\x63\x31\x70\xe7\x0d\xf7\xe5\xff\x9a\xf7\x20\xcc\x43\xfd\x0d\xa0\x9b\x1d\x70\xf4\x32\xd0\xe3\x00\xf7\x96\x17\xe6\x43\xda\xe7\x61\xaf\x1d\x30\x7c\x02\xb0\xc3\x1c\x50\xbd\x06\xe4\x9f\x02\x34\xfe\x01\xb6\x15\x01\x53\x36\x00\x39\xc3\x00\xbd\x72\x20\xa3\x14\x98\x67\xc8\x18\xbe\x99\x0a\x90\x5c\x00\xd8\xe8\x00\xc9\x71\x80\xd3\x1b\x9e\x07\x21\x93\x8b\x73\x01\xfc\x5d\x80\x24\x59\xc6\xf5\x92\x2c\x80\x14\x35\x20\xb1\x07\x90\xa3\x08\x24\xf5\x07\x8a\x1f\x70\x0f\x80\x83\x85\x40\xfa\x25\xe0\x7c\x39\xdf\xa7\xbf\x35\x14\xc8\x3a\x0f\x3c\x7f\x00\x6c\x39\x09\x7c\x92\xfd\xd6\x7e\xa9\x0e\x82\xb4\x1f\xc2\x63\x2b\xa0\xdd\x32\xe0\xbe\x10\x7b\x4e\x02\x37\x1f\x31\xfe\x4f\x35\x9d\x93\x22\xbe\x77\xed\x5f\x78\x0f\x11\x40\x4f\x21\x1e\x78\x03\x7d\x7b\xb4\xe0\xfd\x52\xbd\x83\xbc\x59\xc0\xd8\x32\x7e\x76\x13\xf3\x98\xf7\x20\xf8\x85\x64\x13\x60\xb8\x09\x48\x72\x11\x62\x71\x0b\xee\x1f\x9d\x03\xd8\xe7\x02\xd1\xbd\x80\xb5\x46\x40\xd4\x2d\xe6\x07\xc5\xd6\x01\x91\x11\xcc\x05\x49\x0a\x03\x62\xf7\x03\x39\x69\x40\x6c\x29\x50\x32\x0d\x88\x7b\x03\xd4\x4c\x00\x12\xca\x38\x76\x49\xfa\x03\x77\xac\x80\xa4\x6d\xc0\xf3\x58\x20\xb5\x16\xf8\xa7\xfb\xb7\xf6\xb7\xc5\xc1\xa5\xfd\x4e\xee\x06\x73\x14\x97\xf2\x1e\x2e\x1d\xe6\xf1\xfc\x55\xfe\xbd\x94\xf7\x70\xf8\x2f\xa0\xbd\x3d\xaf\x83\x4e\xee\x8c\x6f\x75\x7f\x03\x94\x28\x02\x7d\x43\x81\xbc\x5c\x8e\x1f\x5b\x63\x99\x57\x97\x39\x00\xd0\x98\x08\x48\x94\x18\xcf\x4c\x8a\x05\x66\xc7\x02\xb1\x03\x5b\xe3\xfe\xe1\xa2\x5e\x4c\xc4\xdf\xc0\x1a\x43\x20\xbc\x0e\xf0\x09\x04\x22\xbb\x03\x61\xa1\x40\x94\x0d\x90\xf4\x08\x10\x72\x48\x61\x7f\x8c\x8c\x03\x8a\xdd\x18\x0b\xaf\x7e\x0f\x44\xbb\x02\xf5\xbf\x02\x51\x93\x80\xeb\x73\x5a\x74\x20\x12\x4a\x80\xcf\x0d\x2d\xfc\x17\x21\xf7\x12\xce\x57\x6d\x75\x20\xfe\x7f\x79\x0f\x07\x84\xbd\xea\x40\x4b\x9f\x87\xe2\x1d\x40\x27\x35\xd6\xad\xe9\x36\x8a\xf9\x58\xc2\x7a\x91\xea\x1d\x48\xde\x02\xa3\x7f\x01\x12\x17\x02\x93\x3b\x02\xb1\x2b\xf8\x6e\x71\xa4\x3c\x30\x57\x07\x08\x2d\x04\x8c\x9f\x03\x1b\x34\x01\xeb\x5c\xd6\xe9\x58\x95\x21\x9c\x06\x01\xef\x06\xfe\xde\xc2\xff\x87\x0e\xe7\x13\x4a\x98\x23\xb0\x35\x01\x08\xf5\x04\x4a\x84\x7f\x3f\x15\xd8\xff\x16\x08\x0b\x00\xce\xe4\x00\x11\x5a\xdc\xc3\x47\x98\xa7\x5f\xc6\x00\xe1\x17\x81\x7f\xfe\xf7\xad\x0e\x84\x54\xff\x42\x8a\x87\x3f\x68\x27\xfa\xc1\xff\xc1\x7b\x38\xaa\x21\xce\x83\x88\xeb\x36\xf3\x1e\xbe\xe7\x51\x88\xcf\x82\x7f\x6c\xd9\x0b\xf4\xba\x01\x48\x66\x02\xfd\x06\x00\xf1\x8b\x80\x21\x97\x80\xa8\x26\x40\x7d\x03\xaf\x75\xad\xee\xdc\xc7\x62\x4e\x02\x10\x74\x1d\x58\x58\x04\x04\x5a\x03\x4b\x7e\x67\x1c\xcc\x49\x13\xc4\x7a\x17\xe2\x65\x80\x03\xb0\x3e\x10\x08\x54\x00\xe2\xf7\xb2\x16\xc2\xd6\xeb\x40\xd0\x61\xa0\xe4\x0f\x60\xfd\x2d\x8e\x55\x41\x2f\x81\xf3\x36\x40\x70\x3d\x73\x9a\x84\xd3\xc1\xeb\x57\x2d\xf6\x7f\xc3\xff\x68\xd3\x0f\xa3\x2d\xef\xe1\xf2\x54\x1e\xcf\x04\xb7\xf6\x83\xb6\xba\x17\xdf\xf4\xbb\x10\xf5\x0e\x52\x2a\x81\xf6\x47\x99\xdf\xd4\x2b\x16\xd8\x54\x0d\x0c\x48\x67\xde\xca\xa8\xae\xc0\xfa\x55\xc0\x24\x7b\xb6\x57\x88\x17\x7e\x67\x81\xf9\xe7\x00\xaf\x3a\xc0\xfc\x05\xef\x99\x2b\xaa\x01\x77\x2f\xc0\xe5\x21\xe0\xf1\x1e\x08\xba\xc1\xf7\xe4\x05\x7f\xf0\xb5\x63\x7f\xf0\xe9\x0c\x94\xe6\x73\x1f\x8c\x83\x97\x01\x9f\x1e\xc0\xf9\xd7\x80\x4f\x0a\x70\x57\x0e\xf0\xab\x01\x5e\xab\x00\xbe\x95\xcc\x8f\x92\xf2\x3f\xa4\x76\xaf\xf0\x17\x79\x00\x31\x3c\x4a\xfd\xe0\x9b\xbe\x2f\x83\x79\xfc\x06\xf7\x97\xae\x87\x36\xfc\x8f\x4c\x91\x17\x92\xec\x0b\xc0\x86\x7b\xfc\xc8\xab\x70\xd5\x45\x29\x95\xe3\xd1\x10\x00\x7e\x1d\x78\x5f\xf5\x11\xe2\xc5\x51\x7e\x3e\x73\xdd\x00\xf7\x3b\x80\xd9\x1a\xe6\x33\x2c\x77\x07\xd6\x8c\x06\xd6\x96\x02\xae\x1e\x40\xc8\x0d\xfe\x7d\xdc\x36\x91\x6b\x9a\x04\xb8\x2e\x02\xca\x3c\x79\x3c\xd4\x08\xb8\xdc\x03\x2e\x85\x02\xeb\x1a\x81\x07\x39\xcc\x9f\xf8\xed\x61\x0b\xff\xc3\x49\xd4\x87\x59\x96\xc8\xa3\x54\xff\x42\xca\x07\x68\xdb\xf7\x45\x8a\xfb\xd7\xc9\x8b\x7e\xa0\xcf\x63\xd5\x9e\xd6\x7e\x50\x24\xda\x9d\x63\xc1\xa3\xb4\xef\x87\x14\xf7\x17\xe2\x99\x8c\x37\x10\x28\x01\xe4\x45\x6e\x8b\x10\x37\x3c\x1a\x01\xd5\xb3\xc0\x3a\x09\x30\x45\x16\x58\x53\x0e\xe8\x9d\x00\x9c\x56\x0a\x67\x3a\xe6\x39\x2c\x53\xe1\x71\xad\x3b\xe0\x34\x81\x75\xb5\x1c\xac\x79\xcf\xb0\xeb\xc1\x39\xa6\x9d\x3a\xef\x51\xf6\x1a\xc0\xc1\xa7\xcc\x15\xf8\xce\x9e\xff\x7e\x4f\x07\xb0\x33\x03\x5e\xbd\x01\x6c\x35\xd8\x1f\xac\xbb\xb0\xbd\xa6\xbd\x5b\xf3\x20\xa4\x7c\x80\xb6\xfc\x97\x53\xa2\xfe\xc5\x91\x61\x6d\xfc\xe0\xff\xe0\x7f\x88\xdd\x98\x11\x27\xe2\xc0\xeb\x45\xdc\xd8\x37\x09\x90\xfd\xc0\xcf\xbb\xd7\x33\xc0\x79\x23\x30\x58\x0f\x70\x58\xc4\x7e\x61\x37\x1c\xd0\x32\x00\xec\x74\x81\xf9\x05\xcc\x91\x5a\x3a\x11\x58\x76\x0f\x58\x13\x0b\x2c\x7d\x02\x04\xa6\x01\x4b\x1a\x98\x5b\x66\x35\x00\xc8\xb6\x01\x96\x80\xb9\xba\x96\x55\xac\x97\x63\x19\x0c\x5c\xec\x26\x9c\x93\x79\x1e\x84\xf1\xb5\x0e\x60\x16\xd5\xc6\x6e\xa9\xfe\x45\x68\x6b\x1e\x44\xb3\xee\x43\x5b\xfe\x4b\x53\x6b\xfb\xdb\xfa\x41\x33\xff\x43\xe4\x79\x24\xa9\xf2\x28\xed\x7f\x22\xd5\xbf\xf0\x10\x7f\x5e\xb5\x0a\xe8\x74\x01\x58\xa1\x01\xf4\x7d\x05\x2c\x3b\x0d\xa8\xba\x02\x96\x56\x9c\x77\x5a\xe8\x02\xfa\x15\x80\xc9\x31\xe6\x97\x9a\x6e\x67\x6e\x8c\xb1\x1f\xfb\xd4\xe2\x23\x40\xec\x41\x60\x61\x05\x90\x3d\x84\x75\x3d\x4a\x8d\x58\x4b\x44\x38\x5f\x18\xa6\xf3\xb3\x9c\x3b\x8d\xe7\x61\x6e\x3d\xf0\xb2\x1d\x30\x37\x0f\x68\x5a\xd2\x62\xaf\x96\xa8\xf7\x30\x31\x4b\xd4\x81\x10\x79\x21\x67\xc5\xbe\x2e\x75\xff\x88\xeb\x40\xb4\x4b\xca\x7f\x91\xe2\xbe\xbb\xc4\xbe\x6b\xdb\x45\x7d\x88\xb6\xfc\x8f\xcd\x62\x57\x51\xf1\xe5\x08\x10\xd7\x91\x8b\xf8\x77\x5b\xf1\x0f\x96\x4f\x81\x6e\x05\xac\xa1\x35\xb8\x04\x58\x78\x1b\x50\xbf\x0b\x2c\x94\x03\x66\x09\x39\x56\x1a\xeb\xae\xe9\xbf\xe4\xb5\x31\xfb\x0e\x73\xa9\x66\x79\x71\xcc\xd1\x55\x07\xb2\xde\x00\x33\x82\xb9\x47\x9f\x96\x02\x50\x3b\x1a\x98\x5e\xce\xf3\xa0\xe5\xc6\x1c\xd0\xa9\x8d\xc0\x2f\x60\xfd\x0b\x21\x7f\x90\xda\x3b\x5a\xdc\x37\x46\x8a\xba\x83\xc3\x56\xf2\x78\xaa\x0d\xff\xa3\x4a\xac\x9a\xed\x11\xe3\xc2\x2e\xe9\xbe\x28\xaa\x69\xfe\x27\xff\x43\xea\x07\xb3\x45\x3f\x10\xe7\xd1\x59\x54\xdb\xb4\x16\xf9\xba\x46\x5e\x80\xdc\x1b\xc0\xd0\x1f\xe8\xdb\x15\x98\x6d\x08\xa8\x3d\x07\x66\xf6\x00\xb4\x5f\x00\x33\x5e\x30\xcf\x76\x5a\x2d\xe0\xe0\xc8\xbe\x22\xe4\x11\x13\x43\x80\x4d\x76\x80\xa6\x29\xf3\xee\xd5\x97\x02\x3b\x07\x00\xe3\x66\x02\x35\xff\x8f\xbd\xf7\x0e\xab\xf2\x5a\xde\x40\x5f\x45\xb1\x83\x20\xd8\x80\x2d\xa8\x58\xe9\x8a\x85\x22\x45\x05\xe9\x55\x90\xde\x41\x90\x2e\x28\xd2\x9b\x22\xa0\xa2\xa0\x28\x28\xa0\xc6\x6e\x2c\x58\x63\xec\x41\xa3\x31\x2a\xb6\x58\x12\xa3\xc1\x12\x93\xd8\x63\xaf\xdf\x7d\xf6\xcc\xb7\x41\xf1\x78\xcf\xef\xfe\x7d\x4f\x9e\xe7\x3c\xeb\x80\x9b\x6f\x7f\x6b\xad\x99\x59\xb3\x66\xde\x79\xa7\x33\x30\x4c\x1d\x68\xc8\x01\x86\x04\x01\x17\x2d\x80\xc1\x2f\x80\xbb\xbd\x00\xed\x4c\xe0\xcd\x0e\xee\xd5\x24\x9d\xaf\xba\x88\x1f\x94\xda\xee\x4f\x71\x10\xad\xf1\x2f\xb2\x28\xc1\x1a\x71\xbf\xbf\x86\xff\x98\xa7\xf8\xf9\xfc\x65\x38\xa0\x14\x31\xfa\x14\x6d\xc8\x63\xb0\x28\x1f\xee\xc3\x79\x1c\xaf\x05\x5a\xb9\xb1\x43\xdb\x0e\xef\xf6\x2b\x30\x32\x46\x2e\x5d\xab\x11\xd0\x2f\x6d\x37\xc3\x78\x22\x30\x7c\x50\x7b\xfd\x49\xf3\x80\xc1\xc9\xed\x3d\xfc\x7c\x80\x81\x21\xed\xfb\xc7\xd9\x03\x5a\x17\xdb\x9d\xc9\x3e\x07\xf4\x2b\x6a\x37\xae\x6c\x33\xa0\x51\x2c\xb7\xac\x6e\x3f\xa0\xb6\xba\xed\xb5\x6d\x89\x40\xdf\xa0\x36\xbb\x0f\xe7\x00\x7d\xc2\xe0\xd7\x28\xf5\xf5\x4f\xf0\xdd\xb1\xe7\x3b\xe0\xe9\x71\x40\xe5\x5b\x9e\x6f\x77\x75\x71\x14\xfb\x94\x76\x17\xf1\x73\x5f\xe3\x3f\x59\x2d\x66\xdf\x64\x5d\xd8\x17\x16\xb5\xa1\x6c\xc1\xbc\x2e\xf2\x84\xa0\x29\x28\x92\xa7\xbc\x4e\xfa\xbf\x1d\x69\x85\x92\x6c\xba\x12\xc2\x6a\x6a\xbb\x6e\x94\x45\x0a\x0a\x57\xa0\xc0\xb7\x67\xb6\x12\x59\x12\x9b\xfd\xca\x84\x38\x1c\x5d\xde\x83\x34\x48\x3b\x4a\x75\x4a\xbb\x09\x80\xe6\xd0\x9e\x1b\xfa\x0c\x05\xd4\x4a\x7b\xf5\xd7\x7d\x0c\xf4\x5a\xd3\x6b\x82\xb5\x37\xa0\x32\xa6\x97\xce\xe4\x6b\x80\xd2\x88\x9e\xc7\xa7\x4e\x00\x14\xbe\xeb\x99\x99\x3e\x01\xe8\xaa\xaa\xfa\x77\xe9\x1c\xa0\xb3\xb2\xaa\xfe\xf2\x3f\x80\x8e\xb1\x2a\x4a\x9b\xdf\x03\x1d\x0c\x94\x9f\x1c\xe8\x0d\xb4\xbf\xab\x6c\x78\x7a\x02\xd0\xee\x99\x52\xbb\xeb\x57\x81\x76\x9d\xbb\x07\x3f\x9a\x0d\xc8\x85\x29\xd6\x49\xe7\xdb\x46\xa5\x5b\x95\x74\xec\xf0\x4b\x47\xea\xcb\xdb\xe1\x95\x3c\xf1\x83\x7c\x75\xfe\x12\x39\xaa\x92\x5b\x78\xbc\x0b\x45\x6d\x8a\x2f\x2a\x50\x9c\x2d\xf7\xb9\x0a\xc5\x31\x65\xf8\x97\xc4\xf2\x5e\x9c\xf7\x89\x57\xa3\x38\x5e\xe0\x10\x35\xca\x36\x7a\xd6\x6b\x52\x7c\x7a\x52\x1c\xf3\x68\x98\x6a\x0f\xa4\xfc\xe8\xd0\xc9\xda\x84\x4c\x55\x2d\x19\x44\x12\xd7\xd5\x71\x88\x76\xf7\x46\xa0\xc3\xc6\x21\x35\x83\x74\x00\xb9\x8b\x43\x76\x9a\x4a\x25\x26\x73\x48\x2f\x17\xca\x9c\x0c\xce\x0d\x23\x44\xc9\xe0\x95\x33\x28\xe3\x34\xb8\xdd\x5c\x8a\x27\x0d\x7c\x51\x4d\x92\x35\xe0\x3e\xbf\x7b\xff\xd4\x7d\x94\x41\xd0\xca\xf9\x99\x3a\x65\x6b\x6a\xfe\x46\x32\xdb\x6f\xcd\x03\x8a\x98\x4a\x16\x71\xbd\x7f\x9f\x64\xce\x63\xa9\x88\xf5\xdd\x4a\x35\x82\xf0\xe5\xfc\xab\x8a\xbb\x50\x55\xed\x22\x89\x22\xed\x73\xc9\x10\xe6\x81\xc9\x13\xd4\xe8\x24\x99\xd5\xc0\x7c\x19\x49\x9a\xfd\xa9\xda\x30\x4a\x51\x9b\xa2\xcc\x81\x75\x43\x28\x3b\xeb\xa9\x35\x8c\x4e\x4c\x07\x77\x1d\xc2\xff\x58\x82\xf3\xe8\x86\x12\x03\x3a\x71\xfa\x6d\x19\x41\xb3\xea\x9c\x67\x9c\xc3\xdf\x38\xba\xb0\x2b\x21\xaa\xc6\x28\x0d\xa0\xfc\xd5\xa8\x26\xce\x6f\x8e\x32\x70\xa6\xfa\x65\xe3\x1c\xce\x5b\x18\xb7\xe1\xfc\xcd\x48\xcc\x21\x19\x35\x3a\xb7\x8c\xe2\x72\x46\xe6\xdc\x39\xdc\xe0\xd6\x5e\xaa\x7b\xd3\x8f\x38\x49\xf5\xa9\x7a\xe5\x57\xc9\xd7\xd5\x2b\xbd\x4f\xf3\x1d\xbe\x91\xf3\xfe\x43\xc4\xfa\xee\x01\x62\xdd\xbf\x84\xfa\x29\xad\x4a\xec\xc0\x59\x03\x6d\x25\xda\xa7\x05\xba\xbd\x29\x4a\x58\xa2\xa9\x9e\xcd\xfa\xaf\x4d\x6f\x95\xde\x87\xab\xaf\x93\xb2\xb9\x4b\x45\x74\xb0\x1e\x7d\x4b\x90\xbb\x11\xc5\x6d\x27\x27\x8e\xa4\x6c\x8b\x93\xd6\x18\xb2\x8c\x56\x23\x4d\xc8\x23\x1b\xf5\xc4\x94\xb2\xb7\x83\xcb\xcc\x89\xdd\x44\x55\x8f\xa3\xaf\x10\xf9\x43\x00\xeb\xbf\xbb\x11\x22\x60\x82\xca\x00\xe2\x3d\x18\x5f\x3d\x96\xe2\xe9\xd6\x26\x4e\x54\x8f\x37\xde\x3d\x84\xe2\xec\x56\x39\xc9\x1f\x78\xe4\x4c\x91\x55\xa7\x4a\xe2\x78\xb2\x78\xba\x96\x90\x3b\x16\x79\x7b\x29\x12\x3e\x2e\x97\x7d\x21\xb3\x1f\x2f\x8b\x15\xc7\xf7\x48\x2e\x4c\x9e\xbe\xa6\x19\x8d\x36\xe2\xf9\x1b\xd6\x08\x9f\xf0\xa2\x54\x35\xf4\xa2\x28\xff\x42\x79\xcd\x57\x24\xff\xd9\xda\xf4\x2d\x79\x8f\x86\x93\x3e\x64\x94\x1b\xd0\xbc\xa6\xab\x1a\x52\xbe\x2b\xe6\xde\x28\xca\xa6\x04\x4f\x37\xa1\xf5\x9b\x92\x37\x8e\x3c\x4f\x97\xf2\x71\xc4\x93\x30\x31\xd2\x9a\x3e\x67\x12\x33\x91\x78\x3f\xf4\xd2\x6d\x89\xc7\xbd\x9f\xcb\x24\x8a\xb2\x76\xbb\xe9\x28\xe2\x1f\x9c\x44\x84\xb2\xb3\x9f\x22\xdd\x5d\x9c\x9b\xf8\x9b\x9d\x5e\x8c\x26\xe3\xea\xbc\xcd\x81\x7c\x78\x97\xf8\x20\x75\xfe\xf7\x44\x3a\x73\x9c\x94\xf3\xc8\x87\x73\xca\xa8\x20\xbc\x80\xe3\x94\x35\xa4\x3f\x0e\x79\x3b\x49\x7e\xec\x6b\x1b\x48\x6f\xec\x24\x17\xcc\x78\xbc\x4b\x91\x68\x1b\xf3\x67\xa4\x17\x32\xfc\x87\x85\xc8\x7f\x60\x42\xf8\xa8\x45\x92\x81\x94\x5d\x2e\x4e\xd7\xa1\x2e\xdf\xf9\x37\xf4\x49\xba\x32\xbb\x18\x53\x36\x21\xf9\x9e\x19\xf1\xe0\x4c\x5b\xc4\x38\x98\x50\x2d\xee\xda\xe2\x2b\xc7\x3c\x30\xae\x71\x94\x44\xc2\x24\x4b\x7b\x42\xb1\x8c\xab\x75\x22\x79\x1f\xf9\xbb\x33\x65\xe5\x06\xc5\xba\x90\xc7\xde\xab\x82\xab\x51\xe5\xaf\x4d\xfe\xc8\xf3\xf7\x16\x19\xed\xa6\x1c\x55\xa2\x7d\xf2\x69\x60\x1e\xef\x29\x47\xb9\xae\xd9\x47\xd9\x9e\xce\xec\x29\x57\xfc\x29\x4f\xed\xa3\x1e\x47\xf3\xf1\x89\xcd\xf1\xe4\xcf\x2d\x24\x9f\x7e\x8a\xfb\x4a\xb2\x13\x9e\xf5\x5b\xc9\x64\x79\x19\x1c\x16\xfb\xe0\x70\x3e\xcf\x53\xac\x29\x70\xaf\x79\x48\x7f\xef\xb6\xf0\x23\xc5\xb1\x19\xff\x01\xd8\xec\x94\x8e\xa5\x96\xfa\xb4\x8a\x32\x1e\x9c\x8c\x48\x53\xda\xc7\x54\x65\x4b\x92\xe7\x04\x25\x5b\x5a\x8f\x88\x09\xf6\xb4\x9a\xfe\x3f\x32\x2a\x61\x72\x9a\x0b\xd9\x41\x47\x78\x50\x55\xb9\x0c\x07\x33\x66\x8f\x17\xed\xaa\xae\xb1\x37\xcd\xaa\xdf\x36\x3f\x7a\x4e\xf7\x45\x01\xa4\x57\x6d\xa2\x43\xba\xf0\xfc\x43\x7e\x02\x65\x06\xc2\x16\x28\xd3\xca\x84\x55\x6a\xd3\xdd\x24\xb4\x98\x99\x78\x42\x9b\xb8\x03\x53\x68\x89\x2f\xd5\x61\x87\x4d\x9a\xb6\x99\x7f\x9f\xe9\xc0\x9f\x9b\x47\x15\xb1\x21\xd1\xcb\x99\x89\x5c\x9f\x31\xcf\x21\x9d\xf6\x13\x32\x27\xf0\xfc\xcf\x64\xa1\x03\x35\x7f\xa3\xbb\x63\x80\xdb\x7d\xf2\x95\xfc\x5d\xde\x10\x76\x7e\x8a\xd8\x2f\x87\x79\x63\x0a\xca\xd9\x2a\xc9\x78\x70\x66\x04\x30\x0e\x26\x3e\x6a\x12\xd9\x89\xa8\x91\xae\x94\x9f\x09\x92\x77\x27\x3d\xf0\xbe\x3d\x99\xf2\xfb\xae\x6b\x98\x7d\xdf\x66\x89\x1f\xe1\x61\x64\x38\x18\x23\xcb\x00\xca\xf7\x0d\xae\x0b\x21\x8f\x4b\x4d\x9b\xad\x5c\x57\x44\x8a\x00\x08\x19\x2f\x4c\x6c\x63\x1b\xca\x0c\x4d\xdb\xc8\xf9\x8b\x69\x1b\xb9\x03\x5b\x6c\x36\xcb\xc3\xb4\x33\x36\x94\x29\x8a\xad\xf7\x66\xfc\x46\x3d\xff\xe5\xb4\xf7\xb3\xe8\xe4\x8a\x35\xe2\x8a\xf3\x69\xeb\xab\x14\xf8\xef\x37\x90\x5d\x89\x4e\xdd\x45\x76\x25\x26\xf7\x04\x59\xfa\x28\xcd\x4b\x84\xc7\x8b\xcc\xb9\x4b\x9f\x8b\x68\x78\xbe\x06\xcd\xf8\x0f\x19\x2f\x4a\x76\x0d\x67\x53\x53\x13\xed\xc8\x5a\xc7\x97\xbb\xd1\x4d\x6a\xaa\x1c\xf7\x83\x92\xe1\x60\x7c\x45\x9e\x0c\xb7\x46\xee\x9f\x62\x5f\xc9\x78\x18\x6b\xe3\x50\xfa\xf7\x31\x21\xe1\x94\x6d\xd6\xa9\xe7\xec\xbc\xd6\x96\xa9\xb4\xab\x2a\xe2\xbc\xe5\xdf\xc4\xfd\xc4\xf3\x9f\x2e\x22\xb8\xa7\xaf\x6f\x4b\x48\x83\xe9\x06\xcc\x93\x93\x02\xb6\xc8\x29\x60\x84\x56\x0a\x78\x47\x52\x3b\x79\x91\xc5\x49\xcd\x89\x94\xf0\xef\x53\x69\x27\x52\xac\x0a\xbf\x61\xc9\x5d\x42\xf6\x75\xba\xf3\x37\x46\xfc\xef\xec\x13\x25\xdd\x38\x42\x96\x3b\x69\xc5\x39\x8a\xa1\x24\xc6\xfd\x41\x92\x19\x5f\xf2\x88\xf4\x28\x2e\xfa\x03\x75\xb0\x89\xa2\xbe\x41\x69\x16\xce\x64\xc7\x13\x26\x7b\x10\xfe\x71\x6a\x8a\x0f\x49\x55\xd8\x2a\x96\x63\x19\x0e\xc6\x13\xa1\xf4\xb6\xce\xa5\x8c\x0b\x99\x68\xc2\xf3\x35\xcb\x8f\x26\x29\x1d\x19\xc7\x2c\x4f\x43\xd4\x39\xfb\x28\x51\x8f\xa7\xd3\x4d\xa9\x91\xad\xbc\x5c\xe5\x4c\xb1\xe3\xab\xac\x4f\x52\x56\x82\x1c\xbd\x4f\xa6\x86\x0a\x8d\x19\x9a\x6c\x27\xb3\x12\x8c\xe9\x09\x99\x71\x13\x72\x78\xe4\x7c\x77\x56\x63\x18\x7d\x63\xc6\xa3\xa4\x43\xfc\x7b\x66\xa0\xc8\x98\xb6\x88\x62\x49\x99\xf7\x57\x31\xbe\xc3\x75\x1b\xc9\x41\xba\x19\xf3\xdb\xcf\x6a\x38\x4d\x76\x77\x46\xd3\x35\xc2\x47\xa5\x55\x3d\xa8\xe2\x75\x7d\x45\xf9\x6f\xe6\x45\x49\x01\xa3\x4d\x62\x2a\xb9\xdf\x57\x84\x6a\x10\x49\x69\x50\x28\xe3\x61\xa6\x28\x45\x51\x1e\xce\x4d\x8e\x79\x42\xec\x24\xd3\xe8\xe6\x60\x59\x1b\x4f\xdb\x36\x66\x28\xf7\x91\xd1\x73\x48\x22\x79\xd2\x5e\x37\x83\xd8\xbb\xfa\x34\x30\x2e\x44\xc1\x60\x96\x98\xe7\xce\x12\x99\x70\x73\xc5\x1b\x4d\xe1\x18\x39\xf2\x34\x0a\x14\x54\x88\x59\xa4\xc0\x68\x10\xd9\xb9\x82\x72\x46\x66\xce\x96\x9b\x40\xf8\xae\x02\x39\x5e\x87\x42\xdb\x60\xb2\x23\xb3\x95\x19\x89\x52\xa8\x94\x43\x99\xc4\x42\xb1\xf3\x4c\x81\x5e\x2d\x79\xbc\xf9\x4d\xdc\x79\x20\xdf\x60\x1f\x69\x74\xde\xd0\x13\xd4\xe1\x2b\x17\x97\xe9\x9b\x73\x15\xee\x91\x87\x98\x63\xf9\x5c\x64\x86\x92\xfa\x57\x71\x46\xc1\xb4\xef\x11\xca\x22\x0e\x48\xe4\x85\xf1\x89\xe7\x79\xbb\x1e\x8d\x25\x6b\xe3\xe8\x98\x48\xfe\xd4\x44\x8b\xe9\x74\x8a\x99\x9d\x99\xc1\x3c\x20\x03\x66\x32\x2f\x4e\xed\x2c\xd2\x83\xfe\x06\xcc\x17\xa2\x1a\x9d\x45\xe7\x6b\xe7\xb2\x7c\x91\xe1\x75\x4e\x38\x8f\x25\x95\x3c\x96\x3a\xcb\x93\xde\x36\xe3\x61\xea\x07\x91\x05\x99\x67\x36\x82\xfb\x21\x19\x8c\xa7\x7d\x6c\xee\x9b\x94\x17\x44\xdf\x54\x2a\x30\x5f\x4e\x69\x5e\x36\x49\xe0\xbc\x33\xf3\xc9\xbf\x98\x97\xbd\xfc\x0f\xfe\xfd\x26\x42\xe2\x95\xe4\xee\xa5\xf5\x28\xd6\x3a\x46\xff\x3e\x37\xf0\x12\xe5\xd1\xe7\xac\x68\x22\x1e\x89\xc2\x7f\x1f\xf0\xfa\x6e\x7a\x3b\x1f\x88\x99\x15\xc5\xd6\x36\x3a\x86\xee\x0d\xfe\xf2\x8c\x87\x69\xe6\xc3\x79\x90\x4c\x11\xeb\x49\x17\x66\x92\x96\x5a\x37\xf1\xfe\x8e\x4d\xca\xa4\x53\xdb\x20\x2e\x87\xba\xbe\xe9\x88\x37\x2e\x49\x35\xf7\xc5\x52\x4d\x2a\x22\x69\xef\xf0\xf8\xbf\xe1\x61\x2a\x9c\x7b\x2a\xf2\xc8\xf2\xb0\xf8\xe0\x88\x0a\xfe\xd9\x8a\x78\x0b\x2a\xea\xdc\x48\x5e\x2a\x8e\x07\xd1\x1b\x2c\xce\x66\xdc\x5c\x45\x1d\x9f\x1b\x8b\xd7\x94\xd2\xef\x2b\x22\xab\xe8\xce\x58\xf1\xf7\x06\x1a\xcb\xaf\xed\x26\x7f\x63\x91\xa4\x81\xce\x8b\x05\x0e\x67\x49\x92\xcb\x62\xaf\x93\xa7\xb4\xf0\xf9\x63\x5a\xcf\x05\x06\xef\xe6\x4b\xed\x20\xe3\xbd\x82\x46\x24\x91\x67\x2d\xc3\x01\xc9\xf8\x70\x64\x38\x98\xf1\x7e\x7c\xa3\x34\x97\x30\x7a\xd1\x38\xad\x80\x9e\xa2\x77\x77\x36\x49\xd7\xc0\xae\xcc\x1b\xa2\x76\x80\xbb\xb5\x28\x85\x31\x9f\x42\xbb\x9e\x65\x22\xef\xc5\x62\x19\x73\xa7\x0c\x0f\xb3\xbf\x3d\xe5\xf7\xab\xcd\xf8\xa6\x52\xe5\x37\x90\x3e\x51\xbd\xc4\x88\x5c\x92\xea\xd3\xec\x79\x56\x99\xb0\x27\x52\x6d\xe6\x4f\xe7\x41\xf5\x6a\x46\xe4\x55\xfd\x9c\x76\x8d\x3f\x5f\x44\xf3\xaa\xb6\xe2\xbc\x7f\xd5\xfe\x35\xc4\xbd\x5d\xe5\xb1\x83\x3c\x9f\x65\xe1\x87\x99\x31\x72\xeb\x19\xd2\xa3\xca\xa6\x5f\x29\xff\x5d\x19\x76\x8f\xf4\xa4\xd2\xe0\x65\x13\x10\xfc\x36\x85\x70\x1f\xbe\xdb\xd3\x7a\xb2\x1c\x70\x24\xc9\xc5\x2e\x9b\x6e\xca\x36\xfb\x99\x07\x48\x86\x03\x1a\x3b\x6f\x0e\xe9\x8d\xac\x3f\x94\xce\x81\xf9\xe4\xdd\xf5\x6f\x62\x2d\xed\xb5\x7b\x21\xbd\x65\xd7\x3f\x2b\xc8\xae\xb4\x49\x5a\x2c\x46\x2c\x97\x8b\x37\xf7\x5a\x31\xa2\xb7\x32\xbb\x3d\xf7\x45\x92\xe1\x61\xf2\x07\x10\x1e\x7c\x55\x27\x43\x11\xcf\x62\x41\xdf\xbc\x2a\xd4\x89\x2c\x6b\x6d\x99\x1f\xd9\xfd\x3a\x81\x4f\xa0\x55\x9d\x98\xc1\xa7\xee\x69\x21\xe1\x8b\x56\x6e\xe0\x8e\x26\x75\xdb\x57\x4d\xe1\xcf\x6d\x2d\xc1\x27\xfd\x93\x6a\x3c\x4f\xd2\xf7\xac\xb8\xfc\xcb\x39\x1e\xef\x90\x1c\xd6\x6a\xfe\xab\xd9\x82\x03\xf2\x2e\xcf\x26\x9e\x0a\x37\x09\x7b\xad\x0e\x2e\x8c\x7b\x1a\xbf\x63\x0e\xa1\x11\xc6\xbd\x62\x7c\xc4\xa8\x2d\xf3\xe8\x74\xd2\x2f\xe7\x48\xd4\x10\xf5\x45\x74\x2a\x6b\x76\xaf\x20\x94\xaf\x6a\x0e\x77\xf7\xea\xea\xba\x8c\xa4\xbb\x8d\xaf\xec\xe6\x2e\xc3\xc3\xac\x15\x23\x1e\xeb\xd6\xcb\x13\x57\xfa\x86\x38\x55\xf2\x93\xd6\xd9\xf6\x27\xfd\x5f\x5f\x6b\x40\xb8\xfb\x75\x0f\xc6\x91\x27\xbe\xf6\x2e\x87\x80\xd7\xcd\xf5\xa1\x9b\xde\xba\x65\x7c\x52\xad\xb3\x4a\xa1\x37\x59\xd7\x27\x9f\xe6\xbb\xe6\x40\x19\x7d\x70\x6d\x51\x2d\xe9\xc1\xba\x87\xdf\x52\xee\x61\xed\x75\xee\x9f\xb4\x76\xe1\x49\xf2\x1b\xbe\xa9\xba\x40\x37\xdf\x35\xe3\x99\x37\x67\xf5\x3e\xe9\x3d\xcc\xd7\x2a\x9f\x70\xe0\x1e\x4f\x19\x7d\xe6\x9c\x3c\x97\x9e\x32\xc9\xa4\x84\x22\xf7\x56\x6d\xe6\x13\x8a\xcb\xc4\x97\xf7\x59\xd6\x1f\x4a\xd7\x7f\x31\xdd\xa3\x06\x8f\xae\xa2\xc8\xa4\x86\x64\x19\x55\x30\xaa\x58\xad\x20\xfb\xd0\xe9\x4a\x2d\xdb\x43\xef\x55\x97\x78\xde\xad\xf1\x30\x5b\xfe\x60\x79\xd8\xb2\x56\x85\x90\x69\x5b\x83\x06\x12\x8e\x72\x4b\xa2\x3e\x79\xa6\x5b\x32\xcd\xe9\x2f\xbe\xfd\xc7\x81\xee\x51\x5b\xf6\x73\x4c\x6b\x6b\x97\x48\xd2\xb4\x6f\x83\x59\x83\xb7\x74\xcd\xa3\xfb\xd5\x66\x61\x3e\xcd\x6b\x4b\x27\xce\x25\x7c\x5b\xb0\x89\x10\xf2\x9b\xf3\xf6\xd2\xe7\x36\x3b\x1f\x0f\xe5\xf1\x3c\xf9\xd7\x9b\x3e\xfc\x71\x9c\xff\xee\x51\x53\x4b\x9f\x8f\x5f\xf5\x00\xd5\x74\xe0\x72\x12\xd0\x5b\xa9\x05\xf7\x70\xca\x00\xe8\xbd\x1d\x68\x58\x0c\xa8\x3d\xe1\x9a\x72\xe9\xb1\xfc\xbd\x1a\xa0\x75\xb5\xa5\xbf\x81\x2c\xdf\xbf\x7e\x14\x60\xd0\x86\x6b\x4d\xa5\x7e\xa1\x8c\xdf\xbf\x3a\x83\xeb\x77\x97\x8e\x07\xec\x5f\x02\x8b\x03\x00\x77\x0b\xa0\x62\x10\xe0\x37\x1a\x98\x9f\x08\x84\x9c\x00\x16\x1d\x02\xe2\x42\x80\xb2\xe5\x40\xea\x20\xa0\x62\x35\xc7\xbc\x16\x94\x00\x73\x4f\x00\x0b\x8f\x00\x15\xdb\x39\xff\x2f\x95\xb0\x25\xa1\x9c\x5b\x5a\x7a\x04\x38\x38\xb9\xa5\xff\xc1\xf2\x71\x1c\xaf\xad\xb9\xc5\xfd\x0f\x6a\x73\x81\x0f\x4f\x5a\xfa\x80\x54\x38\xf3\x58\x1a\x20\xe6\xbb\x45\xfc\xc7\x95\x68\x40\x49\x17\xb8\x38\x1b\x50\xaa\xfa\x1c\xf7\xa0\xb2\xa5\x05\xf7\x70\x50\x97\xf9\x43\xf6\x44\x00\x1a\x91\xc0\xd6\x50\x40\xeb\x23\xb0\x51\x17\x18\x7c\x8c\xfb\xb6\x48\x6f\x6c\xb2\x3a\x7f\xd9\x3a\x2c\x0b\x06\xac\x0d\x00\xa9\x0e\x4b\xef\x0d\xe5\x72\x80\xdb\x37\xc0\xfc\x1a\xc0\x6b\x14\x50\xfa\x14\x08\xf2\x02\x4a\x7d\x80\xe8\xa1\x40\x71\x28\xc7\x25\x4b\x0b\x01\xa9\xa5\x2a\xf9\x16\x98\xf3\x1e\x28\x2d\x00\xca\x5f\x32\x5f\xc0\xea\x26\x60\xfe\x15\x60\x93\x74\x5d\xbb\x02\x07\x87\x01\x4b\xb4\xb8\xff\xc1\xb2\x07\xc0\xf5\x95\x40\x55\x67\xe0\xfe\x06\x60\xd9\x62\xe0\xfd\x92\x96\x3e\x20\x0b\xc4\xb8\xad\xac\x0f\xc4\xf5\x11\x5c\x7f\x7c\xb9\x09\xe8\xbc\x9a\xf3\x5b\x9d\x97\x7e\x89\x7b\x90\xca\xc1\xa7\xb8\x87\x7a\x45\xe9\x1d\x12\xf8\x36\x10\xd0\x48\x00\xd6\x0d\x03\xfa\x6b\x31\x7f\xcb\x50\x5d\x5e\x7f\x83\x38\x46\x0b\x8e\xb1\x00\x96\x1a\x01\x96\x6e\x2d\xeb\xd0\x3a\xef\x5f\x34\x1a\x08\x98\xc9\x31\x69\xa9\xfe\x17\x26\x00\x89\xc7\x81\xc2\x3d\x9c\x03\x90\x5a\x65\xe9\xff\x66\xcf\x00\x16\x1e\x07\x4a\x12\x80\x95\x2b\x81\xf9\xae\xc0\xd6\x00\x60\xde\x7e\x60\xbf\x0b\x50\x66\xc5\x35\xd9\xe5\xf7\x80\xeb\xca\xc0\x12\x17\xe0\x89\x0e\xe7\x9d\x3f\x56\xb6\xcc\x5f\x86\xff\x90\xf1\x20\x5c\x7d\x0b\xc8\x67\x01\x97\xb6\x03\xd2\xf3\xfc\x6c\x13\xf7\x03\x91\xfa\x60\x1d\x1d\x5b\x70\x0f\xdf\xef\x07\x3a\x05\x73\x3c\xb3\x5b\x03\x73\xb3\x28\xd7\x32\xa7\x76\xcf\x09\xc0\xaa\x9b\x80\xfa\xa1\x16\xbe\x83\xaa\x3b\xc0\xb0\x97\x40\x65\x09\x60\xf4\x0e\x28\x77\x05\xcc\xe2\x38\xef\x3f\xa1\xec\xeb\x79\xff\xdc\x6c\x20\x4c\x05\xc8\xda\x06\x4c\x6b\xe0\xbc\x75\xfa\x74\xa0\xe0\x07\x60\xce\xdf\xcc\x9d\xb3\x48\x02\x14\x3e\x00\x6a\x1a\x18\xcf\xb0\xa9\x06\x90\xde\x35\xf6\x2e\x04\x8a\xcd\x81\x53\xeb\x80\x79\x17\x80\xdf\xbb\x30\x5e\xe4\x9f\x31\x5f\x9f\xbf\x2c\x0f\x7c\x4d\x8c\xcb\x37\xe3\x1e\x0e\x33\xcf\x83\x0c\xf7\xb0\xff\x34\x8f\xfb\x3c\x81\xb6\xbb\x19\xff\xd2\xfe\x0a\xe7\x92\x3a\x7f\xfc\xa4\xcf\x83\x33\xc7\xc2\xab\x4a\xb9\x4f\xcc\xe2\x0b\xc0\xe0\x0b\x40\xf9\x02\x40\xbf\x08\x98\x6f\x0c\x8c\x35\x06\x8a\xc5\xfa\x76\xa9\xb7\x31\x29\x4e\xea\xfd\x32\x5f\x4c\xf6\x1a\x60\x8a\x01\x90\x79\x1c\x08\xc9\x01\x32\x94\xb9\x8e\x35\x7b\x25\xf7\x34\xc8\xce\x64\x8c\x48\xb6\x21\xaf\x83\xf4\x34\xaf\xbd\x09\xe4\x06\x30\x07\x49\xbe\x02\xf0\xfd\x71\xb1\x0f\x44\x23\x50\xe8\x09\xfc\xfa\x13\x30\x07\xc0\xc3\x63\x2d\xf3\xcf\xbe\xc7\xf8\x07\x19\xfe\x43\x86\x03\x90\xf1\x7e\xfc\x7f\xc6\x3d\x3c\x04\xda\xed\x6b\xc9\xf7\xaf\xc8\x03\xba\xeb\x02\x95\x01\x40\xcf\x85\xc0\xa2\x87\x40\x7f\x0b\x60\xde\x40\x60\x98\x13\xcf\xdf\x58\x02\x14\xe4\x03\x66\x4a\xcc\x81\x23\xb5\x9b\x19\x7f\x02\x4e\x01\x9c\xaf\x9f\x9c\xc3\x79\xfd\xe0\x7a\xee\x7b\x10\x9d\x00\xcc\xb8\xc0\xf8\xa0\x59\x13\x80\xd9\x16\xc0\xac\x5f\x80\x45\x8a\x40\x46\x07\xe6\xc6\xc9\x38\x00\x6c\x29\x07\x32\x6c\x80\x7d\x77\x98\xe7\xe3\xd4\x04\x20\xc7\x1d\xb8\x61\x01\xe4\x5e\x07\x9e\xd9\x33\x4e\xe2\xe3\x83\xaf\xf3\x40\x34\xf7\x3b\x11\xf3\x77\xcd\xf9\xee\x44\x71\x1d\x44\x16\xac\x3d\x62\x1c\x57\xb6\x0e\x52\x39\x40\x3d\xf3\x7d\xb4\xd9\x03\x54\x66\x01\x1d\x0f\xb1\x1e\xaa\x88\x5e\xb4\xd4\x9e\xce\x89\x00\x06\x14\x00\xb9\x11\x8c\x13\xca\xba\x08\x18\xdf\x06\x66\x5d\x00\x2c\x15\x99\xbf\xc1\x7e\x27\x90\xdc\x08\xb8\x3f\x64\x1e\xf8\x80\x07\x40\xe2\x0f\x40\xe4\x5b\x20\xe5\x5b\xc6\x08\xa4\xfe\x01\x14\xee\x06\x52\x43\xf9\xac\x98\xb1\x0d\x58\x59\x00\xcc\x18\x09\x6c\x19\xc1\xfb\x7a\xc0\x85\x7b\xeb\x48\xed\xe4\x4c\x47\xe0\x77\x05\xc6\x90\xbc\x51\x6a\xe1\x81\x68\x8d\xff\x88\x9c\xf2\x79\xde\xff\xd4\x14\x71\x1d\xc4\x3a\xe4\x43\x62\x1e\x53\xc6\x7b\xd1\x9a\xef\xa0\x39\xdf\x2d\xea\x8f\x8c\xf7\x61\x5e\x3e\xd0\xc5\x05\x28\x3a\x00\xa8\x9a\xb5\xf4\x7b\xc8\xe9\x06\x0c\xbd\x01\xa4\x05\x03\x52\x7f\x31\x35\x8d\xcf\x91\xe9\xfa\x80\xad\x13\xd7\xf6\xbb\x94\x03\x71\x23\xb8\x0f\xc6\xb4\xf5\xdc\x0b\x60\x9a\x09\x73\x3a\xc4\x37\x01\x05\x56\x80\xf4\x76\x5b\x5e\x03\x24\xde\x04\x56\x99\x02\x49\x91\xc0\xb6\x6d\x40\xb2\x33\x70\xe8\x1c\x90\x78\x10\x38\x1b\xc7\x75\xe5\x4d\xf5\x40\x8a\x17\xf0\xe6\x07\x20\x61\x0f\xe7\xbd\x9b\xfb\x61\xdc\xe7\x51\xd6\x17\xe2\xbf\xe9\xc3\x57\x79\x2f\xc4\xfc\x97\x0c\xff\xd1\x9c\xef\x6e\x04\xda\x84\xf2\x99\x2f\x3d\x87\x32\x0a\x80\x5e\x63\x80\x54\x0f\x40\x4b\x0f\x90\xde\x99\x87\xbb\x00\x71\xf3\x81\x51\xa9\x40\x6c\x36\x60\xbd\x0b\x88\xb8\xc3\xb5\xec\x11\x0d\x8c\x2f\x8d\x48\x06\xc2\x23\x80\xf0\x0d\x40\xe2\x36\x20\x62\x00\x90\x7b\x13\x08\xb3\x02\xca\x8c\x38\xaa\xb5\xea\x1c\x10\xfd\x11\xa8\x5f\x03\x84\xdf\x04\x0e\x4a\x80\xf0\xf1\xc0\xcf\x82\xf4\xfe\x08\x34\xdd\x04\x62\xbd\x98\x07\x22\xdc\x82\xd7\x21\xc0\x55\xc4\x41\xcc\xe5\xd1\xeb\x1d\x8f\x67\x44\xdc\xc3\x4f\x22\x6b\xea\x21\x31\xef\x2b\xc3\x3d\xc8\xe4\x40\xd6\xf7\x64\xad\xd8\x4d\x55\x86\xff\xa8\x14\x47\x59\xbe\x7b\xb6\xb8\x6e\x52\xbd\x95\x1b\xc8\xbc\x07\x4a\x12\x3e\x03\xd5\xd5\x81\xe8\xa3\x80\xf6\x21\x20\xa2\x11\x30\xd2\x04\x82\x4e\x02\x26\xe6\x8c\x7f\xb0\xab\x01\x42\xba\x01\x5e\xfd\x19\x3b\x17\xda\x04\x04\xfe\x0c\x24\x25\x03\x7e\x52\x9b\x59\xc4\x38\x07\xe9\x9a\xfb\x6d\x01\xea\x74\x01\xff\x40\xf6\xa3\xfc\xa6\x02\x07\x2d\x00\xff\xbe\x40\xe3\x2e\xc6\xa6\xde\x6a\x02\xfc\xcf\x02\xcf\xf6\x00\xfe\xa2\x9d\x6c\xee\x03\xd2\xf4\x39\x1e\x40\xa6\x07\xad\xf3\xfe\x5f\xeb\x7b\xd2\x1a\xff\x51\x21\x66\x63\x9a\x79\x1f\x44\xbb\x9b\x21\xa2\xa8\x13\xe3\x80\x8e\x27\x81\x98\x89\x80\x6a\x23\xf3\xb1\xf4\x73\x61\xde\x8a\xe1\x55\x80\xef\x4a\x60\xf4\x61\xc0\x57\x05\xb0\x51\x61\xfc\x83\xa7\x1b\xe0\xdb\x0b\x08\xd5\xe1\x3e\x26\x52\xbd\xf0\x7c\x03\xe4\xea\x02\x1e\x7f\x01\x0b\xad\x5a\x78\x20\xdc\x05\x60\x6b\x1c\xe0\x31\x0c\x38\x1a\x0d\xb8\x57\x02\x17\x2a\x79\x94\xae\x83\xe7\x52\xe6\x4f\x6a\x3d\xef\xd6\x38\x08\x19\xfe\x45\xd6\xff\x47\xc6\xfb\xd0\x1a\xff\xb1\x46\xfc\x5c\x8d\xc8\xa2\xf8\x05\xfe\x63\x06\x8f\xb2\xbc\xbf\x8c\xff\x62\x9a\xad\x54\xb8\x80\xb0\x4a\xa0\xab\x13\xe0\xbf\x86\xfb\xd2\x79\x29\x03\x83\x6c\x01\x8f\x8f\x80\xd1\x33\xc0\xad\x06\xb0\xb8\xc0\xd8\x39\xe7\x3c\xce\x79\x07\x53\x57\x7e\x20\xee\x26\xe0\x74\x84\x9f\x6d\xff\x91\x7d\x6b\xc7\x2d\xc0\xea\x0c\x60\xd2\x1a\x60\xbb\x3d\x60\x97\xca\x5c\x77\xb6\x91\xc0\x45\x45\xfe\xf9\xee\x0f\x3c\x4a\xd7\x61\xa2\xed\xe7\xb8\x0f\x19\x0f\x84\x0c\x07\xc1\x5c\xe8\x5f\xe7\x3f\x69\x2d\x07\xcb\xc5\xa8\x7b\x79\x6e\x2b\x7d\x10\x79\x32\xbe\xe0\xbf\x10\xfb\x89\x50\xb4\xb7\x9e\x71\x1f\x52\x3d\x71\x4a\x64\xb9\x70\xd4\x07\xf4\xa4\x3a\xf1\x01\x30\x77\x03\x26\x79\xf0\x39\x3a\xde\x8f\x71\x52\xd6\x3d\xf8\xbe\x61\xd5\x16\xc8\xed\x00\xaa\x45\x28\xaf\x05\xcc\xc3\x81\x55\x21\x80\xa9\x3d\xb0\xf5\x29\x60\xfa\x1d\xf7\x32\x32\x7d\x05\x9c\x37\x05\xcc\x87\x00\xb7\x7e\x01\x4c\xd2\x81\x57\x07\x5b\xe6\xab\x2b\xf2\xa9\x0d\xf8\xf5\x73\x1c\x44\xb3\x1e\x88\xfc\x27\xdb\x44\x3c\x88\x8c\xff\x64\xad\x2a\x8f\xb5\xe2\x6d\xf1\x6b\xf8\x8f\x3c\x31\x4b\x25\xe3\xbf\x88\x17\x79\x44\x42\x45\x7d\xf3\x0c\xe2\xd1\xae\x91\xf1\xca\xb6\x03\x80\x3e\xdf\x03\xd6\x11\xc0\x90\x6a\xe6\xa0\x1b\x6d\x02\x98\xd6\x01\x93\xce\x00\xa3\x77\x00\xbe\x66\xc0\xa8\x1f\x80\x58\x2b\x60\x64\x3d\x90\x95\x0e\x8c\x88\x03\xca\xb2\x01\xa3\xa9\xc0\xca\xb5\x80\xde\x40\x60\x9b\x01\x30\xac\x0c\x38\x94\x0b\x0c\x7f\x01\x9c\xd5\x01\x86\x16\x02\x37\x57\x01\x83\x15\xb9\x77\x9e\x6c\xbe\x9a\x43\x79\x54\x7b\xfc\x39\x0e\x62\xef\x76\x7e\xbf\x2f\xf8\x4f\x44\xfb\xf0\x7f\xc5\x7f\x7c\x0d\xff\x10\x20\xf6\x91\x71\xb5\xe3\xd1\x4a\x7c\xde\xd8\xde\x80\xa2\x1d\x30\xf2\x35\xa0\xf9\x1a\x30\xfc\x8d\xf7\x4c\x7f\x3a\x60\xb3\x10\x18\x9e\x0f\x78\xdf\x03\x86\x36\x32\x56\x6e\xb0\x0f\x90\x31\x19\x18\xe8\xce\x18\x6c\x4d\x37\xc6\x92\x4b\x65\x4a\x7a\xd7\x95\xe4\x03\x07\x7e\x01\x34\x86\x02\xa7\x77\x71\x0d\xc5\xef\x8d\x40\x9f\x97\xc0\x93\x2b\x40\x4f\xad\xcf\x79\x2f\xba\x2f\xe7\x51\x7a\x67\x92\x8e\x5f\xf0\x9f\xc8\xf8\x5f\x64\xfc\x27\xb1\x9f\xcf\x7f\x7e\xdd\x7f\x9e\x7f\xb2\xa8\x37\x32\x1e\x94\xd0\x0b\xcc\x9f\xe1\x23\x46\xab\x1d\x45\xfe\x31\x33\x11\x57\xa5\xf3\x0e\x90\xcf\x00\x86\xaa\x01\x7d\x8d\x81\x81\x8b\x18\x1f\xa4\x69\xc1\xfc\x9d\xea\xc9\x80\xa7\x3c\xd0\xe7\x20\x10\x19\x04\xf4\xfc\x13\x98\x39\x13\x50\x51\x00\xe6\x8e\x02\x94\xd6\x01\xcb\x12\x80\xee\x93\x80\xf5\x57\x00\x85\x1e\xc0\x5e\x25\xa0\xeb\x6d\xe0\xc4\xdf\x40\x97\x2a\xe0\x6a\x30\xd0\xf9\x07\xae\x31\xe9\x7c\x03\x78\x9f\x0f\x74\x4e\xe4\x79\x77\x2e\xfb\x7c\xfc\x82\xff\x44\xb4\xfb\xb2\x28\x52\x85\x88\xb7\x9d\x7f\x8b\x47\x59\x1f\xa4\xac\x19\x20\x34\x42\xaa\x7e\x5b\x9a\x69\x6c\x76\x7b\xca\x8a\x44\x68\x74\xa4\xa8\x90\xaf\x59\x67\xca\xba\x39\x3b\x74\xa0\x68\x99\x55\x48\x67\x3a\x59\x0c\x1b\x29\x78\x0c\x8d\xc6\x6e\x14\x85\x57\x3d\xa8\xd8\x5b\x29\x0e\xe8\x2e\x28\xae\x1c\xd4\x07\xe8\x7a\x59\xf1\x8a\x49\x0e\xd0\x69\xae\xe2\x52\xe7\x81\x80\xbc\x99\xa2\x6b\x70\x0c\x20\x97\xae\xf0\x77\xb2\x74\x4f\x5e\x29\x24\x15\x50\x9c\xb2\xdb\xf5\xc5\x14\x8f\xef\xfa\x03\xd7\x6d\x76\x31\xd9\x45\x79\x9d\xce\x17\x8e\x53\x7e\xbf\xe3\xc9\x4b\x14\x9f\xef\xf0\xe2\x2e\xf9\xc6\x1d\x7e\x7e\x4d\xf1\x97\x76\x22\xff\x41\x5b\xca\xf7\xb6\xe9\x81\x03\xd2\x7b\xd6\xd7\xf0\x2f\x8b\xbd\x79\x2c\x35\x63\xd6\xf1\xd9\x9e\x1d\xa9\xba\x32\x4b\xb1\x1b\xc5\xed\x52\xbb\x2b\x92\x05\x8d\xa9\x54\x22\x89\x08\x49\xe3\x68\xab\xaf\x19\xe7\xcf\x9d\x9b\x7a\x53\xfe\xd8\xba\xa9\x2f\xfd\xdd\x28\x83\xbe\x14\x4d\xd3\xae\xd4\xa0\xa8\xb1\xd2\xc5\x7e\x74\xa2\xb4\x59\xa0\xb9\xa9\x23\x65\x92\xb4\xdc\xfb\x91\x4f\xa6\xd5\x6f\x14\xf1\xca\xf6\x73\x71\x20\x86\x04\xc9\xc3\x20\x7a\x92\x24\x32\x89\x74\x51\x32\x84\x23\xc4\x1a\xd3\x97\xd0\x57\xaa\x99\xac\xa1\xbd\xeb\xf3\x74\x27\xc5\xb7\xfa\x34\x1c\xa3\xc8\x5a\xef\xd0\x4b\x94\x61\xeb\x55\x7a\x87\x90\x19\xaa\x39\x2f\xc8\xa6\xf7\x78\xcf\xeb\xd0\x7d\xc2\xa7\xa3\x6c\xfe\x2b\x44\xb9\xa8\x10\xe4\xe9\x7d\xe7\x29\x32\x0f\x4c\x81\x91\x12\x65\xcd\xd2\x1f\x72\x35\x59\x6a\x62\x1f\x8a\x8e\x4d\x5b\xdf\x87\xde\x2a\xe4\xaa\x3a\xad\x87\x6f\x45\x7f\x66\x5b\x48\xe2\xec\x9c\x8d\x39\x57\xa5\x9a\xa8\x0c\xa1\x7c\xc7\xf0\xbc\x61\x54\x9d\xdd\x37\x4b\x87\xf2\x65\xf2\xab\xf5\x8c\xf9\x1b\xf5\x4c\x3a\x53\x86\x44\xef\x86\x56\x24\x8f\xa3\x48\x07\x75\xe3\xec\x48\x46\xf5\xc2\x02\x49\x06\x75\x3b\x71\xbd\xbf\x6e\xa7\x3c\x8a\xdb\xea\xa0\x82\xf2\x40\xc3\xce\x71\x27\xe9\xc1\xaf\x76\x90\xc4\x0d\xae\xfb\x81\x32\x8f\xda\x13\xcf\x91\x8f\xa8\xed\xd4\x44\x67\xc0\xc0\x8e\xcf\x49\x3e\x34\x45\xfe\x07\xb5\xa3\x3c\xf6\xa6\x75\x58\xf1\xbe\x1d\xe1\x17\x16\xd7\xb3\xbc\xca\xf0\x2f\xf9\x4d\x7d\x29\xca\x9d\xb1\x9b\xf1\x2f\x29\x6e\xfd\x28\x4f\x2f\xe3\x81\x09\x97\x63\xfa\x06\xbf\x2d\xc3\x68\xbd\xdc\x73\xb9\x1f\xd0\xa4\x13\x7a\x34\xff\x71\xb9\x9c\x3f\xd7\xff\xd9\xb8\x9a\xbf\x7d\x34\x69\x98\x92\x9b\x89\xa8\x59\xa6\xa2\xe5\x31\xad\xeb\x46\x36\xd8\xe4\x91\x26\xd9\x2a\xd3\xc6\x91\x54\x8f\x6b\xaa\x66\x47\x4f\x34\x99\xe3\x47\x4f\x32\x9d\x14\x4f\xf5\xfc\xa6\x16\x9c\x39\x30\x51\x5b\x48\x99\xf9\x31\x01\x75\x24\x61\xc6\x7a\x8c\xfd\x36\xbe\x7a\x84\xee\x4a\x23\xeb\x1b\xe9\xce\x38\x72\x26\x71\x4a\xc2\xe8\xf1\x13\xda\x49\xfd\x2d\x8c\x0f\xd2\x01\xaf\xc3\x60\x1b\xe9\x58\xfe\x50\x95\xf6\x71\x5e\x7d\x5f\xb1\xca\x5c\x42\xd1\xcd\x2c\x89\x36\x65\x91\x64\x3c\x30\xd3\x9e\x32\x0f\x4c\x44\x83\x21\xe7\x3d\x6d\x46\x51\x7c\xd7\xfd\x12\xa3\x36\x1c\xf2\xc6\x52\x36\xc2\xb2\xc0\x9c\xec\x83\x71\x0e\xe3\x25\x86\x4a\xac\x68\x96\x7d\x1f\x31\x0b\x73\xa7\x87\x13\x45\xc4\xae\xad\x36\x8f\x13\xbb\x29\x50\xe6\xc0\xc6\x4a\x93\x32\xec\x13\xef\x8f\xa4\x27\xda\xac\xb3\xa5\x95\x9a\x68\x32\x85\xf6\xdf\xa6\x5b\xcc\x4b\xfe\xf7\x0c\x42\x5a\x4c\x6c\x98\x4f\xeb\x63\x93\x52\x4b\x79\xcc\xf1\x37\xbe\xa5\xb3\x6f\xc2\xe6\x83\xe4\xe3\x59\x95\x9e\x22\x5b\x6f\x75\xef\x3a\xd9\x76\xcb\xfa\x07\x5a\xbc\x43\x1f\x69\x06\xb2\xbe\x41\xcc\x1b\x33\xaf\x9e\xfb\x5b\x15\xdc\x1e\x44\xd1\xdb\x2c\xb7\xa1\xf4\x2d\x33\xff\x34\xa0\x13\x4e\xc6\x03\x13\x79\x87\xf1\x01\xfe\x2a\x26\xa4\x37\x1e\x57\xcd\x09\x37\xe1\x28\x56\x59\x4e\xa8\xb0\xa6\xac\x99\xc9\x12\xee\xc2\xae\x77\x63\x12\xd9\x11\xad\xeb\x76\x74\x22\xf7\xd8\xc8\x7c\x1a\x72\x95\xce\x22\x0f\x84\x9b\xd8\xc9\xd3\x35\x4e\x91\xde\xd3\x4d\xb9\x3f\xed\x97\x1b\x61\x3f\x01\xb7\xc3\x36\xf4\x46\xee\xb3\xa6\x90\xcd\x72\xbb\x13\x4d\xf2\xee\xbe\x86\xeb\x36\xdd\x1a\x4a\x28\x86\xe4\xd6\x58\x4d\x3b\xe4\x3a\x9e\x71\x52\x2e\x43\xbf\x27\x4d\x74\xfa\x78\x72\x38\xbf\xe1\x15\xd2\x1b\x07\xcb\x7b\x54\x6b\x62\x97\xfd\x8a\xe2\xfd\xb6\xd5\xbc\x0e\xcc\x1b\x33\xc7\x4c\x8f\xb4\x33\x4b\x97\x71\x4e\x33\x13\x8d\xe9\xaf\x13\x76\x33\x3b\xc9\xd4\x53\x16\xb4\xea\xc1\x46\x13\xe8\x86\x25\xeb\x87\xe4\x72\x9b\x71\x3e\xb6\x16\x76\x94\xb7\x90\xe1\x60\x0c\x6f\x38\xd3\xee\x0d\xfe\xc3\x95\xb2\x76\x6a\xd3\xdc\x29\xcb\xac\x78\xdb\x4b\x9c\xbf\x8f\x78\x22\xfb\x8a\x37\x5c\x9f\xfb\xca\xb4\x15\xbe\xc7\x59\xe3\x7c\x17\x8c\x20\x49\xf2\xad\x1c\x4f\x12\xe7\xfb\x68\x32\xc9\x89\xef\x3f\x11\x94\x31\xf7\xcd\x4f\x25\x15\xf6\xb9\x39\x9b\xea\x36\x7d\x9f\x56\xd2\xfc\x7c\x1a\xd6\x92\xbc\xf8\x58\xec\xa6\x5a\x11\xef\x47\x0d\x54\x43\x31\xf9\x26\xdf\xa9\xbd\x24\x4d\xc4\x07\xee\xb1\xed\x11\xad\xab\xac\x6f\x90\x53\x9a\x74\xcc\xfd\x99\xab\xeb\xd3\x92\x4c\x69\xf5\x13\xbf\xb3\x26\xcf\x27\xc6\xd9\x86\x76\x25\xc4\x6b\x12\xe9\xb7\xcf\x8f\x4c\x04\xe0\x21\xef\x42\x4f\xb7\x93\x30\x3e\xa2\x19\x07\x73\x54\xc4\xc1\xdc\xf5\x25\xfd\xd7\x0a\x61\xcf\x41\x35\xda\x9f\xac\x5f\xc7\x77\x81\xa2\x87\x11\x36\x90\xc7\xd0\xa6\x36\xc4\xcb\x1f\x56\xae\x4c\x3e\x5b\xf8\x8a\x01\xe4\x5b\x84\xf7\x63\xcb\x12\x66\x32\x9e\x7f\xde\xe7\x4e\x3e\x6e\xf8\x88\x30\xca\xa4\x87\x07\xb0\x81\x09\x1f\xcf\x3e\x4c\x58\x79\x39\xc9\x45\xe8\xb1\xba\x27\xfc\xdc\x6d\xdc\xc1\xc5\x84\xed\x44\xf0\xea\x33\x64\xd9\x83\xa9\x07\xb7\xf4\x26\xca\xf8\x39\xff\x33\xef\x28\xe6\xe8\x43\xbc\x49\xb3\x1a\x2c\xc8\xca\x24\x49\x26\x10\x8b\x44\x2c\x38\x7b\x14\xee\xe0\x44\x72\x1d\x60\xc3\x38\x18\xcf\x13\x8c\x6f\x72\x36\xf0\xe6\xfe\x68\x26\x9f\xf3\xc1\x8c\x0c\x64\x1c\xcc\x50\xb5\x20\x7a\x9e\xfa\x99\x50\xca\xca\x29\x35\x32\x4f\x4a\xdb\x5b\x53\xb5\x78\xfe\x31\xac\x88\x88\xd3\x6f\x4b\x79\x25\x19\x1e\x26\xb6\x7e\x00\x9d\xb8\xb1\x5e\x23\xe8\x9c\x8c\xed\x68\x45\xbe\x6d\xfc\x7e\x77\xd2\xd4\xb8\xab\x21\x94\xcf\x89\x0b\x4c\xa4\xf9\xc6\x47\x72\xc6\x31\xb6\x9e\x7d\xfc\x69\xef\x6b\x18\x3f\x83\xcd\x24\xa1\x71\xa1\x9c\xcf\x8b\xa5\x78\x04\x10\x33\xf8\x57\x42\xf8\x45\xed\xbe\x47\x19\xb5\xc8\x47\x2f\x37\xa2\x19\x17\x33\x7d\x19\xf7\xfb\x92\xf5\x83\x8a\x4c\xf1\x60\xb4\xcc\xec\x29\xa4\xe7\xde\xe6\x53\xc8\x5f\x72\x3b\x15\x40\xfb\x3b\xe9\x47\xee\x03\x65\x95\xc4\xac\xfb\x63\x42\x42\xf9\x74\x3b\x10\x4e\x75\xe1\x03\x56\x45\x51\x7d\x7f\x6f\xef\x18\xb2\xca\x5d\x2f\x32\x5e\x02\x85\x09\x62\xbe\x77\xba\x78\x93\x4b\xe9\x29\xc7\x1d\xc9\xa6\xa8\xd0\xbe\xcd\xd0\xe2\x75\x48\x89\x37\x22\x4b\x9d\xf2\xb3\x35\x9d\xf7\xa9\x70\x25\x0d\x9c\x61\xc0\x18\xe5\xd4\x9c\x78\x4b\x1e\x19\x61\x90\xb2\xba\x64\x07\x7f\x6e\x39\xd9\xdb\xd4\x13\x1b\x69\xe5\x53\xb0\x87\x3b\xbd\x38\x1f\x23\x4b\x9f\x5c\xc4\xbd\x66\x93\x1a\x6f\x91\x5e\x24\x8c\x79\x44\x77\x9f\xb8\x0f\x1f\x94\x80\xb8\xf5\x9e\x74\x1e\x46\x94\x7a\x27\xb1\xf4\xf8\x72\xdf\x83\x3b\x81\xb4\xfa\x1e\xc9\x21\xc4\x77\xe1\xb0\x31\x9c\xbb\x6e\x29\x47\x91\x35\x36\x4b\x8b\x22\x0f\x7a\x64\x3d\xe3\x24\x86\x36\x32\x0e\xa6\xff\x98\x78\xda\x2d\x95\x11\xcc\x93\xd2\xe9\xdb\xe9\xe2\x4d\x6d\xa6\x88\x40\xcf\x78\xc4\x63\xa6\x7a\x3b\x5a\xe9\x2c\x1b\x15\xd2\xfb\x8c\x3a\xae\xef\xce\x3c\x63\x44\xbe\x5d\x96\x84\xaf\x7a\x59\xf7\x5c\x0f\xf3\xe7\xfd\x69\x3d\xb2\xc4\x95\xcd\x76\xce\x88\xe5\xb1\xf8\x5b\xfe\xfc\x32\xb2\x1b\x59\x2b\xd6\x25\xf0\xcf\xbb\xb8\x0f\x53\xc6\x51\xca\xdc\xa6\x9b\x9d\x27\xc9\xfd\x12\x17\xf3\xa2\x1e\x88\xb6\xf1\xa7\x9b\x51\x98\x51\x30\x59\x97\x00\x49\x38\x45\xa2\x26\x17\x30\xae\xcb\xf9\xc9\x54\xfa\x56\x3b\x09\xf7\x47\xb2\x9c\x31\x8d\xbe\x7d\x74\x56\x3c\xdd\x54\xf5\xa7\x25\x93\xf6\x0e\xd6\x9c\x4e\x52\xaa\xf1\x31\x85\x50\x5d\xca\x4e\xb3\x68\x57\xe4\xcd\x33\xc4\x1b\x49\xb6\x78\x93\xcb\x17\x23\x17\x05\x45\xf2\xc4\xc0\xd3\x8c\x87\x29\xe7\x75\xc8\x6f\x32\x24\xcb\x54\x58\x61\x49\x76\xbd\x60\xaf\x13\x69\xd2\xec\x64\x7f\xfa\xc6\xd9\x0d\xd1\xe4\x1f\x16\x5e\x4d\xcb\xe3\xcf\x33\x3f\xca\x6c\xe5\x4a\xda\xff\x82\xfb\xab\x4f\xf0\xf3\xea\xc9\xb2\x17\xe8\x1e\xa2\x3b\x53\xde\xdc\xd3\xc4\xb3\x90\xf7\xdd\x6f\x14\x7b\xcc\xc3\xdf\xdd\x68\xbd\x1a\x5f\x04\xb4\xe0\x60\x02\xb4\x23\x08\x07\x3a\xc5\x82\x79\x61\xdc\x94\x19\xef\x24\xe3\xc3\xb1\x2e\x66\x14\xa7\x79\x23\xcb\xf5\x28\x03\xee\x93\xa4\xdb\x6d\x16\x45\x68\xfa\x0b\x8c\x0f\x51\x1b\x97\x45\xf8\x10\xc5\x0a\xf6\x76\xda\x5e\x2c\x10\xf1\x2f\x73\xc5\x48\x4e\x33\x1e\x26\x4f\x9e\x62\x9d\x32\x3c\x4c\xe9\xf6\x01\x84\x8f\x2e\x15\x0c\xb9\xb3\x99\x97\x25\x59\xd4\xf9\x8e\x4e\x84\x07\x99\x57\xcf\x27\x4c\xe9\x56\xee\x33\x37\xdf\x6f\x46\x31\x7f\x9e\x99\x39\x4a\x05\xf6\x2f\x4b\x85\x3a\xee\xab\xe4\xb6\x85\x4e\xae\xd2\xc3\x8c\x93\x2a\x96\x70\xcd\x4d\xd1\xc1\x8b\x94\x91\x2e\xaa\xbd\x43\xb1\x94\xa2\xa5\x4f\x47\x02\xc1\x47\x19\x4d\xe0\xa7\xcd\xf3\x6e\xc6\xc1\x88\x7c\x38\xb6\x07\x53\x49\xde\x2d\x6f\x30\xbb\xdb\x58\xe5\x0c\xd2\x42\xc3\x84\x4c\x5a\xaf\x21\xda\x39\x74\x13\xd1\x1a\x95\x47\xe8\x24\x95\x7a\xb6\xe2\x5d\x77\xcf\xa1\x53\xbd\xad\xa2\x6c\xde\x0b\xc4\x7e\x49\xe5\xeb\xc5\xf1\x50\x07\xee\x7f\xd4\x8c\x87\x19\x48\x1a\x55\x21\xb0\xa7\xb6\x38\xce\x82\xbe\xa9\xc2\xdc\x91\x90\x6a\xe5\x6b\x19\xa9\xb8\x58\x23\x8a\x24\x6c\x71\x36\x33\xf4\x54\xe4\x71\xc6\xbe\xe2\x29\xf7\x1f\x2c\x3f\x57\x4b\xb5\x96\xb2\xfe\x49\x8b\x8e\xee\x25\x3b\xbb\xc8\xf5\x04\xc9\xcf\x82\xa6\xf3\x34\x93\xb2\x69\x4d\xe4\xb7\x2e\x28\x79\x90\x01\xf8\xc7\xb1\xb7\xda\x9a\x0f\xc7\x5e\x9d\xe5\xda\xa6\x6f\x26\xf9\x53\x66\x3f\x66\x53\x24\x66\x54\x13\x5f\xcc\x64\xfd\xa1\x06\xcd\x9a\x4d\xb7\x1b\xc9\x60\xee\x0f\xa5\xb2\x85\xf1\x21\x1d\x8b\x5a\xe3\x80\x5a\xe3\x61\x96\xeb\x74\xa0\x3c\x7f\x95\x92\x0a\x79\x30\xcb\xb5\xd9\x7f\x58\xde\xd5\x80\x0c\x43\x55\xa9\x39\x59\x9e\x6a\x2b\x07\xd2\xc8\xea\xee\xde\xdc\x5f\x29\x85\x11\x7b\x55\x3f\x26\xd3\x11\x56\xfd\x1b\xf3\xc4\x2c\x57\x2f\x63\xbc\x4c\x14\x33\x71\x54\x3d\xd8\x48\x12\x29\xeb\x9f\x54\x59\xf2\x03\x33\x29\x8e\x39\x47\x33\x5a\x66\x71\x93\x34\xb4\xb2\xed\xdf\xf5\x80\xf7\x76\x5e\x55\xf7\x5c\x66\x65\x6a\xe6\xc3\x79\x94\x43\x56\xc9\xb2\x9e\xf7\x79\x6c\x54\x21\xdd\xfe\x46\xac\x2c\x22\xeb\xae\x53\xcf\xf3\xd5\xee\x5c\x4a\xda\xaa\x56\x37\x9f\xe4\xa6\xfb\xf2\x32\xda\x95\x0e\xa6\xe5\x62\xc6\x70\xb1\x98\x09\x68\x8d\x87\xa9\x13\x78\x1d\x9a\xf1\x30\x23\xfb\x93\x47\xba\x2a\xdf\x80\xce\xcd\x55\x7f\x98\xd1\x0e\xd5\x39\xd8\x91\x45\x5a\xd9\xdf\x8b\xf6\xbd\x76\x75\x18\xcd\xbf\x6e\x73\x22\xdd\x9f\x6a\xcb\xb2\x44\x7c\xcc\x3c\x11\x4f\x53\x4d\x96\xad\x4e\x7d\x2d\xf9\x9d\xb5\xf1\x3b\x48\x22\x6b\xfd\x8e\x50\xec\xb5\xe6\xe2\x19\x42\x82\xd5\x68\xfd\x4a\xeb\x5d\x33\xe3\x2f\x15\xc0\xb3\x20\x9d\xea\x06\x9c\xb5\xb2\x48\x3a\xed\x9e\xe4\x91\x9d\x9b\x28\x76\xf3\x1b\x97\x54\x44\xb7\xda\x31\x28\x26\xbb\x2f\xeb\x0f\x35\xec\x46\x19\x9d\x9f\x03\x2a\x16\xd1\xae\xf5\x3d\xb6\x98\xac\x5b\x77\xcf\xc5\x84\xea\x68\xf7\x42\x96\xd9\x58\xfe\x87\x6c\xde\x3c\x7e\xb3\x96\xc7\x75\xb7\xe4\xc9\xc2\xac\x37\x56\xa1\xf3\x6c\xfd\xb4\xfe\x74\x6e\xac\xb7\xe3\x4a\x85\x75\x4d\xa6\x74\x22\xad\x7b\xc8\xf8\xe2\xb5\x31\xcc\xf0\xb6\x76\x42\x08\xb9\x38\xeb\xfa\x70\x0d\xdc\xda\x29\x19\xe4\xf9\xae\x7b\x5a\x42\x7f\xbf\xee\x34\x7f\xf3\x9a\xe7\xcc\x50\xb2\x36\x66\x3b\x3d\xe7\x9b\x77\x07\x88\x19\x6f\x4d\xc7\x53\x84\xab\xfa\xe6\xcd\x35\xc2\x61\xad\x36\xb8\xd5\x04\x5c\x9b\x00\xa8\x64\x03\xe7\x1b\x19\x07\xf1\xb3\x25\xa0\xd4\xf0\x25\xee\x61\xff\x7e\xee\x67\xb0\x53\x00\x7a\xf9\x01\x5b\xe2\x80\xbe\xfd\x3e\xe9\x6f\x10\x0e\x0c\x0e\x07\x56\x59\x03\xba\x37\x81\x6a\x77\x60\x64\x4f\x60\x99\x3b\xd7\xb7\x57\x4e\x04\xac\x47\x01\xe5\x66\xad\xf2\xfe\xfd\x80\xc9\xfd\x38\xde\xed\xff\x23\x50\xa4\xc3\xb9\x9c\xfc\x0c\x60\x5a\x35\x73\x60\xcc\x30\xe0\x51\xaa\x89\xcd\x75\xff\x73\x80\xa5\x7f\x02\x25\x85\x9c\x53\x91\xfe\x6e\xa7\xf5\x97\xfd\x0f\x96\x1a\x01\xb7\xcb\xa5\xda\x00\x3c\x4d\x01\x96\x9c\x05\x84\xf1\x2d\x7d\x20\x4a\x1a\x79\x94\xf1\x5e\x34\xb6\x65\xfc\x43\x6b\xdc\xc3\xc1\x27\x40\xf7\x27\x8c\x7b\xe8\x7e\x8b\xf3\xfd\x3d\x7b\x00\x52\x1b\xd4\x67\x1b\xb0\xfe\x31\x20\x59\xcb\xf8\x17\x6d\x65\x60\xc5\x59\x60\x68\x35\x50\xbd\x0a\xd0\x3f\xc6\xf9\xce\x51\x4d\x9c\x93\x34\xbf\xc8\x79\xff\x89\xb1\x40\xf1\x4e\xc0\x3e\x09\x28\x94\x07\x5c\x95\x38\x26\xef\xd5\x04\xe4\xaf\x01\x42\x04\xce\x6b\x4b\x2d\x78\xfe\x58\x60\xc6\x42\x20\x3f\x13\xc8\x53\x6e\xa9\xfb\x9f\xe3\xce\x96\xa6\x48\x1b\x58\x7b\x08\x98\x7b\x1c\xd8\x31\x1f\x28\xb1\x00\x0e\x5b\x71\xff\x88\xb3\x06\x5c\x5f\x7b\xfb\x08\xb0\x44\x02\xbc\x12\x80\x85\x3e\x8c\x83\x90\xcd\x5f\x96\xff\xbf\xdc\x04\x74\xba\x08\x9c\xff\x81\xeb\x90\xbf\x86\x7b\xd8\xbd\x05\x50\xd8\x06\x6c\xe9\x0d\x28\x4e\x64\xcc\x81\x6a\x23\xf0\x4d\x39\xe3\x41\x9a\xf9\x0e\x1a\x78\x3d\x96\x06\x00\x3a\xbf\x03\x15\xaa\x1c\x7f\x2d\x2d\x67\xb9\x28\x9e\x0e\x58\xfd\xd2\x2a\xef\x5f\xc6\xeb\x30\xe5\x09\x90\x9d\x0b\x84\x84\x72\x7e\x56\xea\xa1\x49\xbd\x8f\xe4\x97\x40\xf6\x25\x20\xc7\x19\xc8\xeb\x02\xcc\xef\xd2\xc2\x7f\x90\x97\x01\xac\x5e\xd7\xd2\xff\xa0\x60\x27\x70\xd8\x1d\x98\xd3\x87\xf3\x7b\x73\xed\x80\x9b\xdd\x58\xfe\x5e\x56\x02\xc5\x57\x81\x8f\x1f\x3e\xe9\x83\x21\xf2\x20\x5c\xda\xce\xf9\xd9\x9f\xeb\xb9\x2e\xfb\xc7\x7c\xa0\x6d\x7f\xe0\xd0\x02\xe9\xd9\xdf\x82\x7b\xa8\xd7\x05\xda\x2e\x07\x36\x3f\x05\x3a\xcf\x95\x6a\x1f\xa0\x20\xb0\xd6\x2b\x49\x80\x6a\x35\xa0\xcf\xb4\x16\xbe\x83\xb2\x21\x80\xf6\x3c\xce\x7b\xeb\x19\x00\xc5\x5d\x81\x51\x8a\x40\x41\x3b\xce\xef\xe6\xb4\xe1\x1c\x45\xa6\x0a\xe0\xd4\x09\x98\x25\xc7\xfd\x83\x66\x0d\x04\x82\xd4\x80\xb4\x23\xc0\xd4\x4c\x60\x56\x19\x30\x7d\x23\x90\xee\xc0\x58\x81\xcc\xdd\xc0\xbc\x37\x40\xc6\x33\x5e\x87\xcc\x24\x60\x4d\x14\x90\xb3\x11\xd8\xb9\x11\xc8\xfb\x1e\x38\x7a\x05\x90\x7a\x2f\xa7\xcf\x02\x85\xcf\x81\x5b\xca\xcc\xad\xf2\xef\xea\x4f\xe6\xdf\x5b\xe4\x41\x28\x6e\x55\xdf\x2d\xe6\x17\xfe\x1b\xee\x61\xad\x35\xd0\x26\x0d\xf8\xa6\x08\x90\xfa\x83\xb2\x3e\x0f\x4b\x8e\x00\xd2\xfb\x52\xc5\x7b\x40\xed\x08\x30\x2f\x88\x6b\x26\xe7\x64\x03\x83\xfd\x81\xc2\x3b\xc0\x88\x1f\x81\x3c\x79\xae\x3d\x95\xe5\xfd\xd3\xb4\x00\x3b\x4b\xc6\x38\xb8\x5d\x66\x5c\x42\x80\x04\x98\xfe\x8c\xfb\xc4\xa4\x80\x73\xdc\x29\x3d\x80\x8c\x46\x60\x96\x54\x1e\xa6\x00\x69\x29\xc0\xd2\x06\x60\x96\x1a\xb0\x4e\x17\x98\x75\x07\xd8\x31\x18\x48\xfb\x15\x38\xe4\xc8\x38\x87\xd3\xbf\x02\x99\x27\x38\xbf\x97\x33\x12\x78\xbe\xab\x05\xff\x92\x7a\x85\xe5\x40\xd6\x0f\xe2\x0b\xbe\x07\x31\x3a\xf2\x35\xdc\xc3\xfa\x05\xe2\xe9\x57\xc6\x75\xec\xb2\x7c\x7f\x79\x01\xd0\xf5\x08\xe7\x16\x54\x45\x2c\x93\xda\x01\x20\x77\x31\x28\x92\x97\x5d\xc3\x35\xb5\xe9\x29\x9c\x53\x6b\xe6\x3d\x48\x03\x6c\x57\x03\xc9\x86\xcc\x17\x13\xd7\x00\x4c\xe9\x0e\x24\xdc\x97\xfa\xba\x80\xf4\xb6\x22\xfd\x5f\xe2\x5a\x20\xcb\xac\x85\xff\x20\xf1\x04\xcb\x43\x6a\x5f\x60\xc3\x7b\x60\xa6\x29\xb0\xab\x84\x6b\xe2\x8f\x2b\xb1\x6d\x95\xee\x71\x5a\x77\xe0\xee\x1a\x20\xe3\x04\xf0\xee\x44\xcb\xfc\x5b\xf3\x40\x9c\x16\xeb\xfa\x65\xf9\x5e\x19\xef\xc5\xbe\x9d\xa2\x3c\x88\xa7\xfd\x56\x59\x9f\x87\x7d\x3c\xca\xf2\xdd\x15\xb2\xae\x9a\x23\x00\xb9\x3b\x40\xd1\x1f\x40\xe7\xc7\x7c\x8b\xe8\x79\x83\xf5\x4f\x43\x02\xcc\xd8\x04\x0c\x32\x07\x52\xb2\x01\x43\x37\x20\xa9\x0d\x60\xaa\x08\xc4\x8f\x04\x26\x84\x00\xf1\xdb\x00\x17\x15\x20\xd6\x1d\xf0\x71\x61\x1b\x19\xda\x04\x44\xd9\x01\x71\x01\x8c\x0f\xc8\xac\x03\xe2\xc7\x03\x25\x2f\xb9\x5f\xc2\xd2\x5d\x40\x7c\x2f\x60\x6d\x0a\x90\x50\x07\xec\xce\x01\x12\x7d\x80\x13\x1a\x40\xfc\x43\xe0\xe2\x18\x20\x39\x17\xb8\xe7\xcc\x55\x1f\x1f\x73\xbf\xc4\x7f\xc8\xf8\x10\x64\xb8\x87\x86\x75\x9f\xeb\x43\x73\xbe\xbb\x15\xef\x85\x2c\xcf\x59\x25\xd6\xf3\xcb\xf2\xbc\xa5\x43\x79\x2c\xbc\x0e\xc8\x1f\x60\x9b\xa6\xac\xc2\x72\x2d\x3d\x77\x93\xcb\x00\xad\x05\x8c\xf7\x18\xee\x02\xc4\x5c\x60\x5c\x61\x4c\x7f\xc0\x5a\x1e\x08\xf3\x63\xbb\x19\x5e\x01\x78\xe4\x01\xa1\xdb\x80\xa0\x3c\x20\xcc\x0e\x88\x55\x04\xc2\x35\x80\xf4\x67\x40\xc8\xaf\xc0\xdc\x3b\x40\xe8\x6d\x60\xc9\x1d\x20\x22\x08\x58\xf3\x1d\xff\xfd\x8e\x0f\x40\x58\x18\x73\x7c\x45\x3a\x00\x97\x2a\x81\xb8\x7b\xc0\xfd\xcc\x2f\xfb\x61\xf8\x8b\x3c\xf7\xb2\x7e\x18\xad\xf9\x4f\x0e\x98\x7d\xae\x0f\x5b\x44\xbe\x8f\xff\x86\xff\x28\x15\xeb\x96\x9b\xf3\xdd\x5d\x81\x4e\x09\x40\x92\x84\xed\xe8\xb4\x6d\x9c\x53\x8c\x1c\x00\x0c\x7c\x0f\x84\xe8\xb1\x9f\x11\x18\xc4\xe7\x88\x74\xef\xa5\x7e\x45\x40\x14\xe0\xa6\x01\xf8\x4d\x63\x3b\xe1\xeb\xcb\xe7\x46\xe0\x6d\x20\xdd\x19\xf0\xb7\x60\xcc\xa0\xf4\xae\xb1\x64\x27\xe0\x77\x96\xf9\x72\x7c\xf5\xd8\xb7\xf1\x5d\x00\x1c\xeb\x03\xf8\xb7\x03\x7e\x39\x0c\xf8\x1d\x00\xfe\x7c\xc8\x5c\x2b\xd2\xf9\x7a\x3f\x07\x84\xaa\x4f\xfa\x80\x88\x78\x00\x59\xdf\x97\xd6\xbc\x17\xff\xad\xef\x89\x0c\xff\xd1\xdc\xf7\xe3\x8f\xcf\xd7\x21\x55\xc4\x57\xc5\x7b\x01\x5d\xf6\x00\x11\x95\x80\x6a\x08\x10\x1c\x05\xf4\x7b\x0f\xf8\xab\xb3\x5c\xf8\xcc\x04\x46\xeb\x72\x1d\xbc\x75\x13\xe0\x51\x07\x8a\x88\x79\x8f\x06\x02\x9c\x80\xc9\x12\xd6\x11\x4f\xa9\x8d\x2c\x06\x3c\xb6\x30\xe6\xd0\x5d\x7a\x5e\xec\x00\x3c\x16\x32\x76\xcf\xcd\x10\xd8\xa3\x00\x78\x1c\x00\x4e\xc6\x31\xff\xc3\x2f\xd1\x80\x47\x15\x70\x4f\x60\x8c\xa6\x54\x1e\x5c\xb6\xf3\xbc\x27\x89\x7c\x28\x13\xed\xc4\xbc\xbf\x8c\xf7\xe2\xff\x98\xf7\xaf\x12\xbb\x2e\x57\xb4\xe1\xb1\x35\x0e\x46\xc6\xfb\x90\x20\x66\x29\xa4\xf2\xdd\xc6\x18\x08\x34\x64\x7e\x25\xe9\x3e\xf6\x91\xbe\xef\x33\xe6\x55\x72\x9b\x0f\x18\xde\x00\x9c\xbb\x31\x8f\x90\x83\x0b\xeb\x87\x73\x0a\xe7\x46\x1d\x36\xf2\x3a\x38\x35\x00\xe9\xc7\xf9\xe7\x12\x4d\xc0\x41\x17\xa8\x5a\x05\xd8\xac\x63\x5e\x10\x5b\xad\xcf\x79\x20\xec\x1a\x81\xcb\xb1\x80\xdd\x2a\xe0\x9f\x35\x80\xad\x21\xfb\x91\xe3\xf7\xfe\x67\x1c\x84\xac\xef\x49\x6b\xfe\x93\x8d\xe2\x7e\x7f\x81\xff\x50\xfa\x5c\x1f\x64\xf8\x0f\x59\xdf\x8b\x59\x62\x76\x46\xc6\x7f\x21\xcb\xfb\x7b\x1d\x04\xda\x6b\x01\xae\x6f\x00\xe5\x8f\x80\xe3\x47\x40\xf2\x11\xb0\xfb\x07\xd0\x91\x00\x36\x97\x81\xb1\x6b\x98\xa7\xc4\x2e\x01\xb0\xd6\x05\x26\x67\x30\xd6\x32\xa2\x14\xb0\x0a\x00\x66\xd5\xf0\xcf\xd2\xb3\xc8\xc2\x01\xa8\x0a\x02\xc6\x0d\x01\xd6\xfb\x03\x66\xbf\x03\x7b\x2d\xf8\x0c\xfa\x49\xc4\x68\xfe\xf6\x1e\x18\x97\x0b\xdc\x77\x06\x4c\x03\x00\xe1\x74\x0b\x0e\x62\xe8\xde\xcf\x71\x10\x5f\xe3\x3f\x59\xfb\x0b\x8f\x32\xfe\x13\xd9\x6d\xb1\x35\xfe\xa3\xc8\x9a\x47\x59\xde\x3b\x55\xc4\xcf\xc5\xa4\xf1\x18\x20\xe6\x8f\xdd\x73\x19\x07\x62\x57\x03\x74\xda\x02\x8c\x5f\x03\xf4\x5a\x03\x8c\xeb\x03\x0c\xdc\xc1\xef\x2d\xf5\xbf\xcd\xd6\x32\xc7\xc7\xe8\x72\xe6\x3c\x19\xed\x09\x44\x75\x04\x0c\x2f\x32\x07\x90\xc1\xaf\xbc\x0e\x86\x07\x81\x65\x6a\x80\xde\x5b\x60\x83\x0b\xa0\xdb\xc0\xbd\x1e\x75\x44\x1f\x60\x78\x36\x70\xf9\x0e\x30\xcc\x97\xd7\x61\xf0\x52\xe0\x83\x02\x30\xe0\x0e\xcf\x5b\x52\xcb\x63\x9f\x86\xcf\x79\x0f\xb6\x87\x7e\x2e\x07\x32\xf6\xcc\x1a\x11\xcf\x50\x79\x99\xc7\xe6\xfe\x2f\x9b\x3e\x97\x83\x2f\xf8\x2f\x44\x1c\xa2\xef\x36\x1e\x9d\xc5\xf5\x35\x17\x9f\x3f\xb6\x0d\xd0\xfd\x3e\x9f\x19\x9a\x00\xf4\x2e\x02\xba\xd1\x80\x7e\x19\x60\xa5\x09\x0c\x33\x60\xce\x10\x1d\xf0\xbd\x6b\xa8\x84\x7d\x0e\xed\x3e\xc0\x9c\x0a\x60\xe0\x76\xf6\xe1\x07\xf4\x01\x36\x9c\x00\xfa\xd5\xb3\x3c\x48\x7d\x59\xe9\x3a\x68\xa4\x32\x37\x98\x7a\x0f\xe0\xfe\x76\xa0\x4f\x2f\x40\x68\x0f\xf4\x14\xf9\xf6\xa4\xb6\xfb\x53\x1c\x44\xbd\x05\xbf\x57\x6b\xfe\x13\x19\xfe\xa3\x32\x8c\x47\x19\xfe\xa1\x54\xc4\xd7\x7d\x81\xff\x10\xfb\x4b\x35\xe3\x1f\xe6\xf3\x38\x45\xd4\x23\x3b\xd1\x3f\x33\x11\x79\x41\x74\xb7\x01\x1d\x9e\x00\xda\x7b\x80\x9e\xb9\xc0\xc0\x62\x60\x58\x0c\xa0\xa5\xcf\x38\x6c\x89\xf4\xde\xb1\x85\xb9\x31\xc3\xca\x01\xb5\xdb\x40\xea\x49\xa0\x77\x28\x30\x7b\x1a\xa0\xfa\x33\xb0\x64\x34\xd0\xc3\x01\x58\x13\xc0\xfc\x16\x52\x99\x56\x54\x01\x8e\x97\x01\x8a\xa7\x80\xcb\x66\x80\x42\x31\x70\xaf\x16\xe8\x9a\x09\xbc\xb9\x03\x28\x28\xf2\xbc\x5b\x8f\xcd\x7a\x20\xeb\x2a\xdd\x0a\xff\xd1\xac\x07\xa2\x5f\x51\x68\xff\xf9\xfc\x9b\x71\x40\xa2\xbd\x9d\x2a\xda\x4f\x7f\xf1\xbc\x70\x3d\xc1\xa3\x8d\x88\x03\x19\x29\xea\x8d\x96\xa8\x87\x6a\x3b\x01\xa5\x7a\xa0\xd7\x1d\xbe\x9f\xf5\x58\x05\x8c\x0d\x07\xba\x6f\x03\x1c\x1b\x19\x83\x19\x98\x0b\x74\x3a\x09\x24\x9a\x01\xed\xe7\xf1\x99\xd4\xbe\x3d\xb0\x28\x04\x68\x37\x1e\x58\xf5\x00\x68\x23\xdd\xd3\x7d\xdc\x23\xf1\x88\x18\xe1\x38\x27\xee\xdd\x2d\xb1\x83\xfc\x33\x51\xf6\x3f\x34\x02\x72\x45\x80\xe0\x0c\xc8\x1f\x67\x3f\xfb\x6b\xf8\x8f\x25\x22\xde\x69\x9e\x78\x0e\xc8\xf0\x1f\xb9\x16\x9f\xcf\x3f\x41\xe4\xdf\x8a\x96\xb4\xa5\x3c\x8e\x8c\x07\xc5\xcb\x80\xbb\xd6\xdb\x9f\x6b\x4b\x9a\x61\x2e\x69\x47\x51\x26\xbd\xef\xda\x51\xd4\xa4\x4f\x32\xe3\x0b\xba\x74\xe9\x10\xdb\xa9\x2b\x20\x3f\xa1\x63\x37\x8d\x0b\x40\xdb\xd0\x8e\x8a\x46\x14\xe9\xed\xd8\xd9\x86\xe2\x8a\x1d\x7c\x7c\x29\xb2\xd7\x61\x78\x1c\xc5\x5f\xda\x7b\x65\x53\x84\xb3\xbd\x32\x57\x84\xc9\x7d\xc3\x9d\xa1\xe5\x1c\xb6\x52\x85\x75\x9b\x05\x87\x28\x42\xd8\x26\xfa\x8c\x68\xdb\x7e\xe7\x3d\xcb\x7e\x2c\x9e\xed\x82\xe8\x33\x0a\x1b\x5a\xc6\xd6\xf8\x8f\x25\x7d\x5b\xcd\xdf\x8c\xf1\x3d\x39\xce\x3c\x8f\x19\x4d\x72\x14\x77\x4b\x78\x26\x4f\x27\x6d\xd4\x8b\xae\x94\x85\x0b\xfc\x93\xf1\x21\x5e\xc5\xdd\x29\xaf\xe9\xe0\xa5\x44\x9a\x61\x59\xdf\x83\xa2\x5f\x86\x8d\x3d\x48\xa2\xb4\x6e\xaa\x92\xc7\xae\x60\xd0\x4b\x44\x66\xf5\x6e\x2f\x4f\xc8\x88\xde\x9d\xd5\x69\xad\x7b\xab\x8f\xa0\x38\x75\xaf\x36\xb6\xff\xf2\xe8\x4b\xf1\xfc\x9e\x06\x1c\x39\x57\xfd\x29\x87\x64\x49\xe5\x75\x19\xed\xa1\xf2\x24\xae\x80\x52\x5e\xb8\x95\xfe\x5d\xf1\xe8\x41\x9a\xb7\x62\xf0\x69\x8a\xac\x29\x04\x5e\xa7\x88\xa8\x42\xde\x23\x8a\xd3\x76\x8b\xe6\xf9\x77\x6e\xcb\xf9\x4d\xf9\xc5\xd2\xb1\x46\x94\xa1\xc5\xe9\x5c\x7d\x5f\xf6\x67\x1b\xca\xbf\x14\x4b\x3a\xd1\xd3\xf2\x8e\x74\x21\x4d\x99\xe1\xaa\x48\xf8\x85\xb8\x02\x25\x3a\x41\xa3\x9e\xab\xd0\xfe\x07\xbe\xec\x45\x78\x10\xef\xe7\x6a\x54\x0f\xec\xdc\xc4\x78\x09\xeb\x26\x4d\x7a\xab\x51\x17\x39\x4b\x35\xb8\x76\x00\x89\x8a\xea\x72\x6d\x92\x07\xb9\x89\x83\x45\x89\x1b\xa4\xd9\x91\x2a\xb6\x06\x25\x68\xd0\x93\x07\x2d\xe1\x7a\x3d\xed\x39\x36\x14\x3f\x1b\x68\xe9\x43\xbc\xcb\xda\xca\xac\xaa\x03\xf7\x65\x52\xe4\x74\x60\x08\xf3\x56\x6b\x25\xad\xa0\x1d\xd1\x3a\xc2\x75\xbc\x9a\xf5\xbc\x0e\x92\xdc\x53\x14\x39\x54\x9b\x76\x95\xe2\xfb\x6a\x6a\x7f\x53\x9c\x5e\x3d\xe9\x03\x61\xc1\x7a\x89\x7c\x20\xcc\x8b\xb2\xe4\xa8\x1c\x45\x33\xe7\x2b\x31\xfe\xa5\xf0\xa2\x12\xc5\x25\x73\x32\x79\x1f\x9b\x79\x60\x7a\xf6\xe5\x3e\x20\x8f\xd4\x8e\xb2\xfc\x73\x74\xd9\xdb\x44\x9b\x2c\x9f\x8b\xca\x10\x3a\x59\x26\x36\x0c\xa7\x28\xe0\x58\x65\xe6\x0d\x19\xee\xa2\x47\x6f\xab\xe1\xa8\x4f\x63\xb7\x43\x46\x62\x1f\x14\xb1\xcc\x17\x46\xfa\x9d\x19\xa7\x51\x29\xa1\x33\x78\x84\x0b\xc7\xed\x47\x6c\xe4\x3a\xf7\x11\xae\xde\xf4\x0a\x23\x56\xc7\x14\xb2\x64\x71\x85\xa1\x61\x43\xc9\x3d\xe9\x68\xb0\xbc\x9a\x24\x54\xef\xbb\x4d\x94\xa7\xd0\x31\xda\x4b\x31\x04\x1d\xab\x13\x34\xff\x61\xe7\xb8\xb6\x62\x58\xa7\xbf\x68\xc7\x86\x04\xbd\x26\xb9\xd0\x16\x71\x52\xcc\x8b\xb2\x60\x49\x57\x3a\xe1\x8a\x36\xab\x50\x56\x2c\x77\x4a\x6f\xaa\x0a\x9e\x69\x27\xa1\x13\x40\xc6\x03\x13\xb9\x86\xf1\x20\xc1\x13\x75\x68\xbe\xde\xb6\xba\xe4\x21\xb8\x9e\x30\x24\x2d\x9d\x58\x6a\x28\xd6\xb9\x8e\xa2\x13\xd6\x68\xf8\x18\x42\x90\x0e\xdc\x68\x42\xd5\xcb\xaa\xeb\x4d\x29\x9b\x29\x6f\x6e\x2e\x7a\x64\xe6\xa9\x3c\x8e\xcb\x65\x3c\xcc\xb8\x5c\x09\x21\xc7\x2c\x8d\x0c\x49\x52\x2c\xa9\x3e\x03\x18\xe7\xe4\x49\x79\xbb\x71\x43\x18\x93\x6a\x89\x99\x8f\xf8\xf3\x73\xe9\x4d\xcc\xe2\xb8\x7e\xd5\x6c\xff\x3a\x5a\x1f\xd3\xc9\xbb\xc9\x46\x9b\xec\x3f\x4e\xcf\x19\xdb\x70\x99\x32\xcc\x63\xe5\xef\x12\x8e\x6c\xd4\x65\xae\xeb\x1e\xb1\x91\xf5\x43\x7f\x0c\xe1\x1f\xf6\xf7\x24\x4f\x20\xd7\x44\x93\x10\xe6\x69\x47\x99\x95\x23\x49\xc2\xfd\x81\xa6\x06\xeb\x91\x9e\x07\x4f\x37\xe2\x2c\x79\x03\xe3\x04\x5c\xe3\xb8\x5f\x8e\x9d\x84\x71\x21\x96\xe0\xf9\x19\x5f\xb5\xa4\x3c\xc7\xd0\x46\xe6\x7f\xe9\xe7\x32\x81\xec\x8a\x62\xf0\x44\xca\x97\x61\xb7\xad\x98\xbf\x98\x24\x7a\xec\x36\x8f\x14\x18\x9f\x21\xe1\x44\xb8\x5d\x23\x77\xe6\xb1\x77\xb6\x0e\xe4\x9f\x3d\x08\x7b\x69\x37\x35\x2c\x93\x7f\x4e\x21\x0d\xb3\xaf\x2c\x24\x4d\xb6\x2f\x64\xe6\x78\x3b\x09\xe3\xa4\x6c\xde\xef\xa4\x37\xb4\x39\x7e\x94\xf2\xbf\x13\xba\x37\x92\x64\x8e\xdf\x75\x93\xd6\xc7\xda\xe0\x11\xc5\xef\x3f\xef\x1b\xf4\x05\x0f\x4e\x83\x01\xe5\x79\xa7\xad\x60\x1c\x4c\x68\xd8\x58\x42\x94\xcb\xfa\x21\x79\xdc\x60\x9c\x80\x0c\x07\x63\xbd\x66\x22\xd7\x77\xde\xe2\x6e\x15\x32\x1c\xcc\xc0\x0a\x7b\xba\xa9\xf5\xba\xcf\x38\x82\x2e\xc6\xce\xe2\xc9\xe4\x26\xca\x83\x9b\x18\xb9\x70\x7b\xa0\x40\x2b\xe9\xb9\x45\x93\x98\x03\x3c\xd6\x1b\x90\xa4\x78\xd8\x58\x92\x6f\xe6\x39\x99\x39\xb8\x3c\xaa\x83\x29\x63\xe4\x59\x9f\x44\x6f\xea\x99\x9d\x4b\xfa\xe4\xb1\x8d\x7d\x7c\x8f\x09\x2b\xbd\x78\x87\x36\x6d\xe4\x71\x3f\xf9\xc0\x2e\xe5\x3f\x53\x1e\xc8\x55\xeb\x57\xca\x87\x38\x6f\xbb\x4f\xf8\x11\xc7\xbe\xaf\xa9\xf2\x9e\xfb\x06\xa5\x57\x18\xd1\xa7\x52\xdc\x58\x5f\x63\x3e\x98\x12\x0e\x22\x42\x99\xb3\xcd\x01\xc6\xd6\xb4\x4e\x93\x77\x4e\xa4\x7d\x74\x6e\xe2\x2e\x25\x13\x0f\xf1\x3c\x65\x38\x18\xe3\x1c\x57\xda\xdf\x61\x1f\x3d\x68\x17\x35\x3e\x78\xd0\x03\x7a\x6c\x64\xdc\x44\x3b\xb3\x29\x62\xdf\x03\x19\x0e\xc6\x3f\x8e\x4f\x22\xbf\x3a\x25\xd2\x6f\xbf\x23\x9a\x64\x79\xfd\x5d\x99\x61\xc9\xff\x84\xa5\x37\x7f\xce\x85\xbe\x39\xe0\x66\x20\x59\xb0\x00\x49\x1c\xe5\x2d\x03\x16\x70\xde\x3f\xa0\x66\x3e\x9d\x40\xfe\x7b\xab\x49\x6f\xfc\x5c\x36\x46\xf2\xf7\xec\xa5\x7c\xa0\xaf\xe3\x09\x92\x17\x1f\x65\xd6\x0f\xef\xf2\x5b\x24\xc9\xde\xf7\x9f\x7d\xc2\x8b\x92\x1a\x6d\x4a\x9e\x71\x6c\x88\x25\x59\xa3\xc8\xf2\x09\x94\x6d\x0d\xca\x9b\x44\x1e\x8f\xf7\x0d\xe6\x83\x71\x9f\xeb\xb2\x1b\x9f\xe0\x60\xac\x94\x79\x7e\x32\x1c\x8c\x7e\x17\xee\xd6\x31\x48\xce\x77\x2a\xa8\x5b\x99\x2f\x69\x6f\xb7\x1c\x91\x17\xa6\x5b\x88\xe8\x51\x85\x8b\x11\xbf\x70\x39\x39\xca\xbb\x84\xbd\xe1\xbe\x51\x11\x0d\x8c\x8f\x8a\x68\x30\xa4\x27\x46\x9a\xf1\x4e\x84\xad\x62\x89\x8a\x5c\x12\x48\x75\xca\x11\x9b\xf8\xdc\x88\x34\xe3\xbb\x6d\xa4\x59\x09\xc9\x4b\x44\xc0\x32\x3a\x99\xc3\xd6\xae\xa1\x75\x0b\xdb\xbd\x8b\xe4\x3f\xcc\x82\x6b\x2a\x42\x9f\x70\xed\x51\xa8\x36\xf3\xe6\x04\x07\x3f\xa4\xf5\x0c\xac\x7c\x7f\x02\x48\x28\x67\x3d\x8e\xca\xb5\x23\xb6\x96\xe0\xd9\x8e\x54\xcf\xec\x53\xca\xf2\xeb\x39\xd8\x93\xea\x92\x1d\x0f\x33\x0e\x66\xbc\x1f\xef\x67\x6b\x1c\x8c\x8e\x55\x08\xdd\xcc\xb5\xf4\x38\x7f\xde\xd3\x20\x9c\xce\x97\x4e\x8d\x91\xe2\x8d\x43\xc6\x0b\x13\x23\xde\xec\xe2\x87\x32\x62\x31\x6e\x5e\x0f\x7a\x52\x9c\x9e\x16\xbd\x57\x5c\x8e\x01\xf9\x6a\xb1\xe2\x5d\x24\xae\xc0\x91\x7c\x99\xc4\xfb\xfe\xf4\x97\xf1\xc7\x18\x71\x11\xff\x30\x8d\x2c\x7b\xc2\x9a\x22\xc6\xcd\x44\x2f\x5e\xc7\x7f\xbf\x9a\x76\x24\xee\x6a\x3d\x65\xea\xe2\x82\x0e\x0f\xe5\xe7\x9d\x69\xc3\x23\xfb\x55\xd1\x8a\xf7\xc9\x0f\x89\x52\x7c\x95\x29\x7d\x3b\x47\xca\x6b\x86\x95\x8b\x38\x18\x6d\x4f\x9a\xa7\x97\x81\xaf\x15\xeb\x01\xa3\x0e\xbe\x86\x83\xd1\x5f\x1b\x49\x3f\x6b\x3f\x88\x24\x34\x8e\xfa\xf2\xa9\x14\xa1\x68\xe6\x85\x29\x8a\x17\x6f\x62\x32\x5e\x98\x54\xf1\x06\x92\x32\x8b\xfb\x80\xc8\xf0\x30\xa9\x9d\x58\x1e\x52\xf5\x0d\xc8\x0e\xa4\x1c\x1e\x47\x86\x73\xc6\x5d\x47\xba\xe3\xa4\xe6\x70\xbe\x7b\xc6\xb1\x28\x7a\xe3\x19\x4d\x33\x08\xd9\x98\x7a\xb3\x70\x3c\x8f\xcc\x89\x3a\xb3\x7c\xe5\x76\x7e\xee\xe6\xb1\xf4\xfb\xad\x07\xc8\x52\xa7\x6c\x39\x45\xeb\x33\xdd\xfd\x32\x65\x64\x93\x33\xef\x32\x23\x92\xc9\x23\x03\x20\xdc\x67\x0a\xd9\xc5\xa0\x17\xcc\x6f\xe4\x6b\x15\x44\xe8\x21\xf7\x4e\xad\x70\x30\x0d\x9c\x65\x36\xbb\x19\x45\xf8\x5a\x19\x0e\x66\x78\x5e\x0c\xd9\x89\xfe\xcb\xe2\x68\xff\xfb\xf8\xc4\x53\x04\x4f\x31\x3c\x91\xd6\xa3\x4d\x4e\xeb\x3e\x49\x99\xe2\x39\x91\x25\xe1\xbe\x0f\x59\x8d\x3d\xd6\xf0\xcf\xbc\x0e\x99\x67\xf4\xc9\xc7\xcd\xd8\xc2\xf2\x90\x51\xc7\xb8\xda\xac\xbb\xbc\x0e\x99\x71\x11\x24\xef\xd9\xb9\x29\x64\x5f\xb2\xdc\xf2\x98\x4f\xc6\x77\xc1\x32\xfe\x7d\x2d\x49\x6e\x96\xc3\xc6\x20\x7e\xde\x77\x14\x4b\xcb\x0c\x3c\x21\xf2\xc6\x5c\xa0\x1d\x9d\xd5\x70\x93\xf8\xc8\x18\x17\x13\x72\x24\x90\xce\x7b\x3f\x9d\x10\xf2\x07\x3c\x3f\x44\x50\x76\xd4\xf9\x09\xb3\x0b\xd8\xd4\x4c\x25\xef\xcd\x5a\x2b\x96\xbc\xba\xb1\xca\x8c\xfb\x31\x88\x4b\x24\x3b\x32\x54\x92\x44\x7e\x91\xa6\x06\xcf\xb7\xe7\x93\x19\xf4\xbc\x2e\x2e\x19\x94\x6d\x6f\x5b\x90\x25\x56\x2e\xe5\x88\xfa\x21\xc3\xc3\x14\xbe\x96\x27\x7e\xb8\xd9\xaa\x2a\x64\xc7\x66\x2b\xb3\x5e\xe4\x37\xe9\xd3\x9d\xa5\xb0\xab\x19\xad\x58\xc1\x5e\x3b\x35\xfe\x9c\x37\xd9\xc9\x39\x56\xe1\x37\xf1\x29\x4f\x8c\x5e\x36\x69\x64\xe1\x96\x79\xa4\x5f\x85\x3f\x54\x11\xce\xb6\xf0\xea\x7a\x5a\x9f\x82\x89\x3b\xb9\xcf\xd2\xf8\x06\xd2\xd8\xbc\x2b\xe7\xc8\x42\xe5\x85\xfe\x4e\x3b\x99\x97\xf3\xd7\x3b\xc0\xff\x72\x24\xeb\xc1\xd9\xff\x8c\x83\x19\x5f\xce\xfd\x82\xcc\x25\x49\xf4\x57\xa3\x0c\x66\xd0\xfc\x74\xd7\xa5\x91\xfd\x1f\x34\x2c\x8d\x4e\x7b\x0d\x09\x5b\x2d\xe5\x7e\x99\x64\xad\x3a\xc6\xc9\x22\x95\xb2\x79\x7f\x0d\x0f\x53\x2a\xa8\x9c\xe1\x91\x3d\xf0\x52\x41\x9f\xde\x77\x7e\x27\xf3\x74\xfe\x9c\x1d\xed\x5f\x49\xd3\x64\x9a\xff\x3c\xf3\x50\x65\x7c\xc2\x13\x33\x6f\x0a\x9f\x1b\x25\x35\xcc\x27\x35\xcf\x68\x99\x11\x3e\xe9\x9f\x54\x5a\xb7\x93\xfc\xb0\x52\xe7\xa3\x74\x8f\x29\x29\x3b\x4b\xe7\xc6\x9c\x84\x2b\x74\x9f\x63\x5c\x8c\xf7\xaa\x68\x9a\x97\xdb\x9a\x18\x92\x46\xe7\xa6\x24\x92\xba\x49\x0e\x8c\x0b\xb1\xcc\x4e\xa5\x08\xf5\x18\xe3\x34\x8a\xe0\x19\xfc\x98\x41\xf2\x3e\xec\x71\x26\xdd\xea\xb4\xf4\xb2\xd9\x8b\xd7\xc9\xa1\x7f\x57\xfc\x96\xd9\x39\xe4\xcd\xe7\x3c\xfc\x7c\xde\x0b\x44\x05\x59\x24\x46\x26\x2a\x86\x76\xa4\x23\x47\x86\x87\x59\xac\xc0\x7a\x51\x21\x18\xd0\x93\x17\x4b\x4c\xe9\x8d\x2a\xf4\xd9\xe3\x5a\xf4\xdc\x83\xc6\xf2\x73\xa1\x64\xb1\x2a\xce\x30\x33\x93\x8c\x27\xa6\xe2\x1d\x77\xec\xa9\xb8\xb0\x94\x4e\xbe\x0a\xf7\x6f\xe8\x9b\x9b\xfb\x27\x3d\x39\x44\xeb\xbc\x48\x72\x82\x34\x7d\x41\xd3\x2f\xa4\x77\x0b\x3a\xde\xda\xf7\x29\x1f\x4e\x0a\x45\xee\x5b\xf3\xe1\x98\x9a\x67\x90\xbf\xd9\x8c\x83\x11\x38\x02\x33\x54\x92\x4f\x76\xb4\x9f\xc3\x6c\x5a\xb7\x5e\x41\x73\xe8\xef\xba\x8d\xe0\x5d\x91\xab\x60\x7e\x98\x4f\xf0\x30\x22\x6f\x92\x0c\x0f\x53\xd5\xd0\x91\xf6\xa5\x5a\x8d\x6f\xa0\xd5\x6a\x5a\xa4\x41\xd5\x25\x7c\x23\xa9\x36\x33\x25\x79\xa8\xee\x6c\x4b\x12\x56\xb5\xd1\x9d\x24\x6a\xd9\x37\x81\xb4\x33\xd5\xae\xb1\x74\x5f\x58\x7a\x65\x26\x9d\x13\xd5\x2a\x73\x07\xf3\x73\x99\xa9\xa3\xaa\x61\x15\x3d\x6f\xe9\x98\xcd\xe4\x9f\x2f\x0b\xde\x47\x71\x88\x65\x9b\x7e\x22\x46\xaf\xca\xb0\xf3\x64\xb1\x2b\x7f\x6d\x4a\xfc\x92\x0f\xc7\xc6\x9c\xfb\x80\x59\x22\x97\xfc\x87\xb1\x4f\x18\x7d\x64\x1c\xc9\xf3\xd5\x2f\xe7\x55\xd7\x7e\x57\x42\x0b\xd3\x6f\x04\xf7\x49\x52\x3d\x34\x9f\xd6\xad\xd3\xda\x32\xae\xc0\x39\x5b\x2e\xe2\x45\x2b\xc5\x48\x45\x33\x1e\x46\x8c\x60\xc8\xf0\x30\x75\x96\x8c\x97\x5b\x59\xd6\x9f\x2c\x53\x5d\xa2\x2e\x9d\x83\xb5\x45\x8c\x6c\xae\xcb\xb2\xa1\xb1\xb6\xd0\x8d\xec\x65\x4d\x23\x77\x30\xac\x7b\xca\x08\xbe\xba\x65\x33\x69\x7d\x6a\x73\xf9\xdc\xa8\xd3\x64\xff\xb2\xf6\x74\x0d\xbd\x69\xcd\x33\xe6\x5b\xab\x6d\xb3\x97\x4e\xb6\x9a\xdf\x8f\x51\x5c\xa3\x26\x81\x73\xbb\x2b\xe6\x4a\xcf\xd1\xf3\xe7\x01\x25\xad\x4f\x70\x0f\x87\x00\x85\xba\x16\xdc\xc3\xde\xb1\x40\xf7\x1f\x5b\x78\x0e\x36\x35\x49\x7d\x03\x60\xed\x30\xa0\xd7\x0e\xe6\xa2\xe8\xf7\x14\xa8\xb9\xc4\x79\xcc\xca\x4d\x80\xf4\x46\x56\xf1\x4c\xba\x66\x40\x59\x2d\x30\xe2\x29\x50\x9c\x01\x8c\x29\x06\xe6\x26\x71\x9e\x62\xf6\x3e\x8e\x4b\xe7\x2b\x73\x3e\x8f\xf0\x0f\xba\x40\x6e\x2c\x10\xac\x00\x64\xec\x06\xa2\xd6\x01\xe9\x22\xf7\x77\xae\x78\xd2\xe4\x47\x03\x25\x8a\x40\xce\x7a\x60\xa1\x0a\x90\x1f\x05\xd4\xde\x06\xf2\xca\x80\x0d\xea\x40\x41\x09\xb0\x3b\x02\x28\x5a\x07\x1c\x3b\xc6\x31\xdd\x0b\x66\x9c\x13\xbd\xfb\x43\x4b\xfe\xbf\x64\x37\x20\x28\xb7\xf4\x81\x68\xdc\x05\x74\xd1\x05\x4e\x1c\x04\x3a\x3b\x03\x3f\x5c\x00\x3a\xe9\xb6\xe0\x1e\x76\xd4\x00\x9d\xf3\x80\xad\x96\x40\x17\x03\x60\xb3\x33\xa0\x9c\x02\x48\x7d\x36\xa9\x5e\xd7\xad\x07\x7a\xef\x01\xaa\x94\x18\xff\x20\xdd\x7d\xe9\x8d\xa5\xfc\x30\x30\x7c\x35\x20\x95\x1e\xbd\x26\xa0\x78\x32\xf3\xfb\xe7\x6b\x4b\x6f\x36\x40\xc1\x29\xc0\x76\x1a\x90\xb9\x95\x6b\x4b\xa5\xd2\xe8\x29\xe6\x3f\xa4\xfb\x9d\x71\x01\x88\xd2\x02\xd2\x12\x80\xf8\xb0\x96\xbe\x07\x99\x7d\x81\xd9\x7f\xf2\xb8\xf0\x04\x90\x33\x1b\xa8\xbd\xd4\xc2\x7f\x90\xe3\x0c\xec\xda\x2e\x3d\x0d\xb8\x9e\xb3\xc0\x10\xb8\xa8\x0e\x94\xaa\x02\xf7\xf3\x80\x79\x83\x81\x0f\x13\xbe\xec\x83\x71\x56\x01\x68\xf7\x84\x73\xc4\xed\x26\x00\x87\x8a\x18\xf7\xf0\xdd\x76\xa0\xc3\x70\xa0\x3e\x1b\xe8\xb0\x18\xf8\xb6\x03\x20\x6f\x0c\xac\x1d\x01\x48\x6f\xea\xad\xfb\x3c\x2c\x19\x0e\xf4\x99\xd8\x82\x7f\x28\x7e\x0a\x68\xdf\x03\x0a\x2f\x72\xcc\x59\x6a\x55\x46\xba\x01\xb9\x8d\x80\xe9\xdf\x40\x56\x03\x20\x75\x6f\xd2\xc3\x00\x07\x75\x40\x2a\xdb\xee\x7e\xc0\x4c\x25\xc0\x4f\xc2\x38\x80\x70\x9f\x4f\xfa\x1e\x24\x03\xb3\xf2\x98\x1f\x61\x76\x03\x90\xb6\x88\x79\x41\xd2\xab\x00\xa9\xfc\x67\xd8\x00\x1b\x8e\xf3\x7a\xee\x9e\xc9\xeb\x26\x95\x87\xdc\xfd\xc0\x2f\xca\x40\xa1\x1a\x70\xef\x0e\x90\xdf\x03\x78\xe3\x07\xe4\x8c\xf9\x9c\x07\xe2\x54\x08\xf7\x3f\x39\x7a\x96\x79\x30\x9a\xfb\x1b\x48\x98\x0f\x63\xab\x19\x8f\x9b\x2d\x99\x27\xa4\x4e\xe0\xfe\x29\x32\xde\x87\xca\x85\xcc\x0f\x22\xe3\x3b\x28\xe9\x01\xf4\x9e\x00\xcc\x39\x08\x68\xbe\x03\x0a\xae\x00\x43\xc3\x18\x97\x61\x98\xcc\x79\xff\x51\x4d\x2d\xf8\x87\x99\xeb\x39\x96\x3d\xbd\x3d\xe0\xf2\x1d\x10\x77\x18\xf0\xba\xcb\xf5\xf0\x61\x46\x40\x7c\x5f\x20\xfa\x32\xe3\x14\x66\x96\x03\xc9\x27\x81\x42\xa3\x16\xfe\x83\xd4\x2b\xc0\x8a\xe3\xfc\x9c\xcd\xeb\x81\xf4\x7c\xe0\xfb\x14\xe6\x53\x38\xd9\x9b\xd7\xf9\xf2\x0f\x40\xd6\x53\xe0\x9f\x06\x20\xf3\x30\xf0\x06\xbc\x9e\xd2\x75\x48\x11\xf3\xde\xc7\xef\xf2\xfc\x9b\x71\x0f\xb2\x7c\x77\x2b\xdc\xc3\x3a\xf1\x96\x28\xcb\xf3\x56\xfe\xc2\xfd\x51\x16\x75\x05\xda\xf7\x00\x4a\xcf\x30\xdf\x81\x54\x0f\x55\x25\x2d\x7c\x07\x52\xab\x2b\x3d\x07\xa4\xdf\x2b\x95\x8b\xb4\xa5\x80\xb1\x2f\x90\x72\x82\x6b\x57\x93\xdd\x01\x9b\x44\x20\x41\x45\x7a\x23\x06\xa4\x97\x34\x0f\x17\x20\xae\x13\x10\xf2\x3d\x10\x3d\x1b\x98\x1a\x08\xc4\x34\x71\xee\x3c\x7e\x1d\x50\x18\xcc\xf9\xe3\x85\x71\x40\xc2\x16\xa0\x46\x07\x48\x0e\x04\x36\x3d\x03\x12\xae\x00\x7b\xb3\x80\x14\x3b\xe0\xa7\x15\xc0\xf4\x0b\xc0\x95\xed\xbc\x86\xff\x58\x02\x33\xd5\x01\x41\xba\xee\xdd\xb9\xfe\x5f\x86\x03\x68\xc6\x3d\x88\x71\xf6\x7d\x87\x78\x6c\xc6\x3d\xc8\x78\x2f\xbe\x82\x7b\x90\xe5\x79\x8b\x8b\x01\xf9\x73\x40\xde\x4d\xb6\xb7\x59\x17\x01\x95\xdd\xac\xef\x92\x5a\x20\xf5\x02\x30\x78\x01\xef\xb3\xf4\x3e\x19\xfb\x2f\x30\xa6\x00\x88\xf3\x00\xac\x12\x81\xd8\x1d\x80\xe3\x81\x96\x75\x88\x28\x05\x02\x33\x81\xf0\xd3\x40\xd4\x64\x20\xa2\x10\x48\x51\x6c\xe1\x3f\x88\x78\x0c\x2c\x68\x07\xc4\xdf\x04\x56\xcf\x05\xe2\x6d\x80\x6f\xff\x05\x62\xa7\x00\xfb\xd6\xb2\x6d\xfd\x49\x02\x24\x3c\x00\x7e\x2b\x04\x92\x74\x81\xa7\xd2\xf5\x52\x07\x3e\x9e\xfe\xa4\x0f\xc8\x0a\x31\xdf\xdd\x0a\xf7\xb0\x4f\x3c\xed\x76\x88\xdd\x01\x65\x79\xde\x6f\x8e\xfc\xe7\x75\x68\x9d\xe7\xcd\x4b\x63\xbe\xa1\x59\xb3\x01\xe5\x19\x9f\xf4\x7b\xd0\x02\x34\x8f\x00\xd3\x2c\x81\x61\x99\x40\x44\x13\x60\x54\x06\x44\xce\x07\xa4\xf7\xa9\x90\x61\xc0\xc4\x52\x20\xf4\x17\xa9\x4f\x0b\x84\x16\x73\xde\x5f\xd6\xff\x21\xd8\x8b\xe5\x21\x38\x0b\xc8\xdb\x0a\x04\x7c\x07\x94\x9e\x05\x42\xdb\x03\x35\x61\x40\xf0\x3a\xae\xeb\x0d\x35\x66\x6c\x9f\xf4\xd6\x2b\x5d\x87\x90\x69\xc0\x2f\x8f\x80\x69\xab\x81\xe7\xd1\x2d\xf8\x0f\x59\x1f\x10\x19\x1f\x82\xac\xdf\xc7\x81\x95\xad\xf4\xa1\x15\xef\xc5\x17\xf8\x0f\xb1\x5e\x59\xc6\x77\xd0\x9c\xef\x7e\xca\x78\xaa\x14\x0b\xa0\x73\x3f\x20\x6e\x29\xd0\xe3\x29\x10\xf5\x2f\xa0\x56\x0b\x84\xef\x00\xb4\x6d\x80\x80\xbf\x01\x9d\x46\xc0\xef\x35\x30\x7a\x17\xe0\x7b\x89\xf9\xa5\xfc\x06\x00\xce\xc9\x80\xef\x53\xc0\xf7\x38\xa8\x0a\x42\x2a\x13\xbe\xb1\xc0\x74\x5d\xc0\x27\x06\xc8\x6b\xcb\xb9\xf0\x85\x6b\x00\xef\x1d\xc0\x0a\x75\xc0\x47\x1b\xd8\xb4\x03\xf0\x7d\x0d\xec\x3f\x01\xf8\x65\x02\xa7\x72\x00\xdf\xbe\x8c\x8d\x0c\x70\x03\x9e\xd4\x01\x7e\x9a\xac\x0f\x3e\x3d\x45\xfc\x83\x88\x83\x90\xf1\x1d\x7c\xc1\x7b\xf1\x95\xbe\x27\xad\xf9\x0e\x9a\x79\x1f\xc4\xdb\x75\x33\xef\x83\x0f\x20\xbd\x4f\x4e\x3d\x01\x28\x3c\x05\xc2\x43\x18\x5f\xe8\xf7\x16\xe8\x97\x0d\x78\xc7\x00\x43\xbb\x00\x5e\x47\x80\x11\xba\xcc\x91\x23\xbd\x98\x4f\x9e\xc9\xb9\x7f\x8f\x6d\x8c\xa7\xf4\xcc\x02\x22\x26\x00\x1e\x8f\x59\x1e\xdc\xaf\xb3\x2f\xe1\x36\x13\x58\x20\xf6\xb7\xa8\x1d\x06\xb8\xd9\x02\x5b\xf6\x02\xee\x8e\x8c\x13\x73\x3d\x0d\x48\xef\x11\x6e\x12\xe6\x15\x73\x8b\xe4\x3e\x31\x6e\xb7\x3e\xe7\x81\x90\xe1\x20\xfe\xaf\x38\xa0\xaf\xe1\x3f\x4a\x44\xfe\x98\xd6\xbc\x0f\x71\xa2\x7d\x09\xac\x64\x7c\x9d\x74\x5f\x15\xde\x03\x93\x7f\x64\xfe\x07\x0f\x6b\x60\xe0\x6d\xc0\x63\x24\x60\x78\x01\x70\x1a\xc8\xbc\x20\xf6\x73\xb9\xff\x9c\xfd\x45\xf6\x27\x1c\xbd\x80\xf0\x27\x80\x7d\x07\x20\x39\x05\x98\xe4\xc7\xd8\x49\xbb\x8b\xcc\x03\x31\x69\x3f\x63\xd6\xa4\x77\x90\xad\x06\xcc\x15\x70\xf0\x1d\x60\x9f\x08\x9c\x8f\x05\xec\x0d\x81\x3f\x6c\x99\x4f\xe2\xd5\x27\xfd\x4f\x2c\x9e\x7e\x8e\x83\x90\xc9\xc1\xd7\xfa\x9e\xd4\x89\xeb\x21\xc3\x7f\x7c\xc1\xfb\x20\xae\x1f\x57\x5d\xb4\xe0\x60\xa2\x3b\xf2\xe8\x23\xf2\x28\xb8\x9d\x01\xda\x39\x73\x9f\x8f\x1e\x2e\x8c\x79\x91\xfa\x19\xb6\x4a\xc0\x50\x13\xee\xdb\x21\x3d\x4f\x27\x5c\x05\xc6\x5f\xe6\xde\x6b\xd2\xcf\x8e\x9b\x04\x04\xc9\x01\x96\x91\x6c\xeb\x2c\x4d\x58\x2f\xa4\x3e\x69\xf9\x33\x3e\x7b\x57\x9e\x05\xcc\x3b\x72\xce\xde\x2c\x14\x38\xbc\x97\x7b\x31\x49\xfd\x66\x8b\x05\xc0\x1d\x2f\xe6\x8d\x78\x55\x0e\x8c\xf3\xf9\x9c\xff\x62\xe8\x00\x31\xef\xff\x5f\xf0\x2f\xcd\x72\xd0\x0a\xff\x31\x6f\xaa\xa8\x0f\x32\x1e\x14\x91\xef\x22\x49\x8c\x3a\x85\x89\xf8\x42\x1f\xb1\x3f\x97\xd3\x00\x1e\x6d\x6e\x72\xee\x56\xfa\x5e\xbd\x97\x31\xde\x41\xea\x8f\x9b\xcd\x01\x0c\x1f\x00\xa6\x07\x00\xab\x1c\x60\xf4\x53\xc0\xd5\x1d\x18\x3d\x0a\x08\x72\x60\x3c\x44\xb2\x26\x30\xc2\x05\xc8\x1b\xc0\xbd\xb8\x16\xbe\x04\x46\xe8\x30\x46\xc3\x20\x13\xd8\xa6\x0c\xe8\xf5\x00\x0e\x36\x02\x3a\xab\x81\xb3\x0d\x80\xde\x13\xc6\x57\x0f\xd1\x02\x9e\x67\x03\x83\x55\x45\xfc\x47\x2b\x1c\xc4\x17\xf8\x0f\x71\xbe\x32\xfc\x47\xf5\xc0\xff\x2c\x07\x73\x63\x78\x6c\xcd\x7f\x11\x27\x46\x63\x9b\x71\x30\xe2\x79\xe4\x20\xae\x9f\xd9\x8f\x80\xdc\x08\x60\x74\x1b\x40\xb9\x3f\x30\xc2\x10\xd0\x68\x04\xf4\xce\x03\xc3\xbd\x00\xbd\x9b\x80\x99\x3a\xdf\x4d\x5c\xca\x01\xbd\x5e\x40\x88\x32\x73\x2e\x25\x7e\x03\x68\x4f\x04\x72\xdd\x18\x53\x54\x56\x0e\xf4\x7f\x08\xd4\xad\xe0\xb5\xdc\x3e\x1e\xd0\x3c\x0b\x1c\xaa\x01\x34\xeb\x81\xc6\x2d\x40\xbf\x1b\xcc\x0b\xa2\x2e\xf2\x48\xc9\x70\x1f\x2a\x0b\x3f\xc7\x41\x7c\xb5\xff\xcd\x7d\x51\x0e\x5a\xe1\x3f\x8a\x83\x3f\x97\x83\x66\x1c\x8c\xc8\x83\x32\x4d\xe4\xbf\xe0\x9e\xfc\x8c\x69\xc1\x27\x59\x9b\x51\xe2\xdf\xe9\x5c\x07\x3a\xd9\x03\x83\x72\x81\x9e\xd3\x81\x81\x5d\x19\x5f\xd9\x7f\x1b\x30\x26\x82\xb9\xc8\xa4\xba\x33\x60\x0c\x10\xb4\x11\x50\x4b\x07\xe2\xa3\x99\x9b\x2b\x37\x18\x50\xad\x06\x16\x46\x02\x3d\x8d\x98\xd3\xad\x67\x1e\xb0\x2d\x06\x50\x6a\x04\x0e\xde\x05\x14\x7e\x06\xce\xd6\x00\xdd\x0d\x80\xdb\xfe\x40\xf7\x95\xc0\xab\x20\x40\x31\x5f\xe4\xbf\xa8\xf8\x7c\x6c\x8d\xff\xa8\x13\xcf\xcd\xff\x2b\xfe\x43\xd6\x07\x47\x86\x7f\x90\xf5\x81\xf1\x15\xed\xa5\x8c\x07\x44\xd6\xdd\x60\xa4\x78\xbe\xf4\x13\xab\xf8\x24\xd2\x7b\x9b\x26\xd0\xdb\x81\xf9\x2c\x55\xb2\xb9\x9f\x94\xf2\xf7\x80\xed\x5f\x40\xf7\x4b\x80\xdf\x2b\xa0\x8b\x1a\x30\x6d\x0f\xd0\xa9\x91\xef\x5b\x1d\x52\x81\x05\x55\x40\xbb\x9b\x40\x8d\x05\x20\x1f\x00\x6c\xed\x23\x75\x08\x81\x83\xb5\x40\xdb\x81\xc0\x69\x91\xeb\xe5\xc6\x03\xc6\x24\xfd\x2b\x9d\x6b\x16\xf0\x5a\x17\xe8\xe0\x0d\x08\xab\x80\x0e\x06\x80\x60\xff\x09\xfe\x43\x64\x55\xfe\x02\xff\xd1\x9a\xff\xa2\x35\xfe\x43\x8c\x3a\x46\x8a\x38\x21\x19\xfe\x61\xb2\xc8\xe2\x6f\x2f\x62\x0e\xc6\x89\xd9\x2c\x7d\x71\x3d\xd4\x44\xfe\xbe\x6e\x79\x40\xc7\x78\xa0\xb3\x0a\xa0\xe6\x01\x74\xea\x0c\x18\x0d\x01\xe4\x3e\x00\x13\xf6\xf1\xdd\xc7\x4b\xe4\x60\x89\x11\x39\xdf\xd2\xc5\x2f\x99\x27\x7e\xc7\x0a\x1f\x1e\x37\x8b\xb2\xb7\xbf\x86\xc7\xd3\x0f\x78\xbc\x2e\xee\xe1\xe3\x65\x3c\xbe\x16\x7d\xc0\x0f\xa2\x0f\x20\x6c\xf8\x0f\xf8\x0f\x31\xeb\x24\xc3\x3f\xcc\xfe\x93\xc7\x6c\x71\x5d\x64\x38\xa8\x44\x31\xaa\x34\x55\xfe\xf3\xf9\x4f\x11\xd7\x4d\x86\x83\x19\x7f\x9f\xb3\x56\xdc\xb3\x1f\x18\xd2\x99\x47\x55\x31\x7a\xfb\xc9\x7f\xd9\xbd\x5e\xf1\xff\xd1\x13\xcf\x1e\x6b\x71\xf4\x12\x9f\x15\x6d\x2b\xbe\xc3\x72\x1e\x4b\x44\xcc\xc2\x72\x91\xab\x67\xa3\x38\xbf\xef\xc5\x67\x9f\x14\x7d\xe0\x6b\xe2\xde\xfe\x23\x46\x08\xdf\x89\x7b\xf7\x29\x1e\xe4\x6b\xf8\x97\xa2\xb7\x8c\x87\xc8\x11\xe7\x9b\x26\xda\x8b\x24\x09\x4f\x39\xa6\x88\xf1\x2e\xe1\x4f\xda\x51\xbc\xde\x57\xd2\x91\xe2\xfd\x1e\xcb\x3a\xee\x05\xe5\xbd\x3a\xd1\x5b\x98\x39\x74\xa6\xbc\xaf\xce\x4d\x05\x8a\x42\x6a\xd2\xed\x03\xe8\xbc\xb2\xfb\x22\x7e\xa2\x62\x60\x3b\x8a\x47\x2b\x14\xf5\x21\xdc\x87\xc2\x56\x7d\xfa\xe6\x6e\x4b\xc7\x13\x06\xa9\x5b\xbd\x17\xad\x87\xc2\x2d\xce\x88\x28\x18\x70\x05\x5d\xb7\x68\x8e\x7c\x76\x45\x35\xd9\xb0\xce\x79\x8c\x71\xeb\xb8\x71\x2f\xc9\x9c\x7c\xc2\x8f\x34\xb7\xf6\x72\xbf\xd0\xba\xc8\xbd\xbd\x4b\x79\x42\xb9\xd3\x9c\xdf\x6d\xd3\x97\x47\x8c\x20\xfc\x83\x01\xbc\x3f\x9d\x7f\xb1\xb8\x9f\x79\x47\xda\x52\x3c\x3e\xdd\xac\xdd\x12\x9e\x7f\x7b\x7a\x9b\xe8\x54\x05\xfa\x7d\xb8\x83\x22\x57\xe1\x9b\xa9\x10\x8b\x89\x9b\x84\x71\x12\x93\xd4\xfb\x50\xf5\xac\xc5\xc6\xde\x94\xff\x35\xb8\xd3\x87\xa2\x6a\x03\x2a\xfa\x91\xa5\x54\x9e\xab\x2e\xee\x9a\x44\x8c\x5b\xaa\xf7\x91\xa7\xbc\xac\xc6\xe8\x3e\x14\xb9\x93\x0c\x61\xdd\xd1\xe8\x60\x4d\xf3\xd3\x68\xf4\x22\x5b\xae\xa6\xc8\x91\x75\x35\x8f\x99\xb4\x67\x7d\x1f\x15\x91\x9e\xf4\xe9\xb9\x94\x6c\x52\xef\xe7\xeb\xe9\x6c\xeb\xd9\xb4\x7b\x26\x8f\xc7\x29\x1e\xa9\x42\xfc\x62\x80\x4a\xfd\x1d\xae\x34\xce\x7e\xc9\x15\x75\x22\x2f\x4a\xb7\xeb\xd2\x71\xe1\x06\xde\xf7\xb9\x2e\xcc\x2e\x9e\xe3\xdc\x81\x3c\xcc\x0c\xd3\xce\xd4\x6d\x24\xb9\x92\x71\x21\xb1\x8a\x3d\x29\x9a\x18\x56\xde\x8b\xe6\xef\x53\xa8\x4e\xeb\xe7\x36\xbb\x1f\x55\x07\x3b\x6c\x64\x5c\x88\xd5\xc2\x01\xc4\x07\x60\x9c\x36\x98\xa4\x6e\x88\x2b\xe3\x07\xfa\x1e\x19\x4e\x37\xd9\x2e\x1b\x87\x8b\x48\x34\xd1\x11\xc7\x50\x11\x79\x33\x6c\x88\x1a\xd9\xd4\x61\x7f\xe9\x92\x6d\x1e\xf6\xa7\x25\xc5\xa5\x87\x19\xba\xd3\x19\x34\x24\x28\xdc\x9d\x3f\x9f\x4a\x99\xc6\x61\xb9\xcc\x1c\x3e\xb4\xfb\x12\x3a\xe3\x07\x59\x33\xd6\x71\x80\xc9\x0e\xd2\xe1\x01\xc7\x8f\x50\x64\x58\x2b\xf4\x1c\xfd\x5d\xff\xae\xcc\x0b\xd2\xef\xcc\x13\xba\x4b\x32\xfe\x03\x50\x27\x9e\xff\x66\xfc\xcf\xaa\xee\x94\x2d\x4c\xb7\x54\xa1\x28\x66\xf2\xc4\x9e\x14\x7f\x9e\xe6\xdc\x87\x10\xd8\xa1\xe3\xb4\xe8\x26\xe6\xb7\x8e\xe7\xeb\x36\x75\x08\x59\x7c\x47\x71\x3e\xd6\x5b\x75\xc8\xea\x8c\x2e\xe7\xdd\xd4\x01\xa3\x7b\xb4\x8e\x18\x91\x74\xf6\xe8\x60\x4c\x59\x68\xb9\x8a\x51\xe2\x49\x6d\x2c\x7a\x28\xc6\xa7\xba\x30\x83\xc8\x0d\xb6\x9d\x63\xca\x74\x69\xe5\xc7\x54\x30\x8f\xf7\x18\x25\x37\xda\xff\xd1\x45\x21\x94\xbf\x18\x3d\x2a\x99\x34\xcd\x78\x7d\x1e\x69\x96\x71\x28\xfb\x76\x23\x1e\xd7\x52\x6c\xc4\x50\xc2\x77\x03\x23\xe7\x43\x54\x2f\xaf\xdb\x78\x8a\xea\x14\x75\x43\x7f\xa5\xcf\xeb\x75\x7d\x40\xeb\x21\xeb\x1b\x34\x54\x42\x75\x5a\x53\x55\x29\x8f\x35\xab\x94\xe7\x3b\xfd\xa3\x3a\x45\x8f\x65\x3c\x30\x11\x0d\x3c\x4f\xff\x1f\x39\x9a\xee\x65\x60\x48\xd9\x56\xe7\x30\x23\xf2\xc0\x26\x3e\x36\x26\x85\x30\x97\x8c\xa2\x13\xc1\x60\xa5\x09\xfd\xfd\xa0\x47\x9c\x95\x53\x8b\x35\x23\xf9\x52\x34\xb4\xf8\x9b\xe7\x6d\x21\x7a\x1a\x16\xa2\x75\xb3\xb4\xef\x46\xbe\x86\xb5\x81\x06\xbd\x9f\xd5\x37\x3a\x14\x7f\xb6\x9c\x61\x4e\x79\x18\xab\x1d\x4e\x54\x09\x3a\xde\x24\x98\x38\x11\xc7\xdb\x26\x50\x1c\xde\xe2\x60\x36\x69\x96\x65\xd6\x02\x42\xda\x58\xca\x71\x7c\xda\x12\x8c\x93\xb2\xf4\xde\x4f\x16\x6b\xdc\xb9\x53\xb4\x1e\xe6\xfd\xaf\x50\x3e\xc7\xcc\xf5\x6f\x7a\x33\xd3\x91\x2f\xe9\x1c\xe1\xbe\x41\xe9\x3b\xb4\x08\x21\x97\x52\xdf\x9f\x4e\xbe\xf8\x0b\xba\xb4\x4f\x11\xcf\xb8\x8a\x32\x70\xcf\x48\xc2\x07\x79\xf7\x67\x1e\x18\xd7\x1f\xc7\xd0\x5f\xb7\xc6\xc1\x8c\x16\xf3\xe6\xc3\xcf\x4c\xa4\x2c\x82\x66\x3d\xa3\x9b\x54\xa6\xd8\x90\x5c\xc9\xaf\xb6\x13\xed\x82\xfd\x35\x1e\x1d\x96\xb3\x65\xb2\xaf\x55\xa0\x15\x76\x70\x91\x90\x65\x71\x78\xad\x4b\x79\x0d\x27\xfd\x71\xb4\xd2\x8e\xf5\x4e\x24\xef\x8e\x87\x19\x41\xe0\x14\xcd\x77\x38\x47\x64\x8c\xe3\xbf\xe3\x8c\x89\x23\xb8\x7e\xd5\xfe\xdc\x06\xb2\xe9\x0e\x86\xdf\xd1\x3a\x4e\x0a\x6c\x20\x39\x99\x14\x77\x81\x24\x73\x62\x56\x13\xe1\x0d\x6c\xef\x3e\x7b\xc6\xeb\x2b\x38\x03\x29\x5a\xc3\xe8\xfd\xe2\x9b\x78\xde\xd1\xba\xa3\x49\xea\x02\x7e\x32\x26\x29\x9c\xf2\xc8\x8c\x4e\x6f\xb7\x1a\x4b\xda\x2d\x3b\x5d\x6b\x5a\x75\xeb\xa4\x09\xa4\x65\x26\xaf\xed\x68\x9e\x86\x6d\x1d\xe8\x26\x31\xc8\x9c\xf1\x12\x7d\xa3\x9d\x68\x5d\x14\x9f\x39\xe7\xb3\x3e\xb8\x89\x9e\x87\x87\x28\x07\x5e\x12\x50\x9e\x7b\xb2\x9e\x22\xd9\xaf\xc9\x45\x12\x62\xdc\x98\x1c\xca\x7a\xe1\x35\xdb\x8c\x10\x7a\x93\x1b\x1d\xe8\x09\x93\x7b\xfb\x12\x42\xc5\xab\x38\x86\xee\xb8\x5e\xba\x69\x84\x50\xf3\x04\x57\xdc\x7a\x19\x2c\x25\xcb\xe4\xb1\xf1\x9b\x31\xfc\x3d\xdc\xd7\xde\xd3\xeb\x28\xad\xab\xbb\xdd\x59\xc2\xc3\xb8\xfd\xf6\x1b\xe9\x9f\xcb\xc1\xfb\xb4\xf3\x4e\xc3\x5e\xef\x02\x92\x4e\x1a\x13\x0a\x21\x6a\x8b\x29\xc9\x6f\x88\xf6\x38\xb2\x0f\xbe\x47\xac\x49\x1a\x3d\x3d\x6d\x08\x7d\xe1\x3c\xdd\x81\xb4\x6b\xe2\x0b\x07\xca\xaa\x9b\x9b\xbb\x90\x7e\xb4\xc6\xc1\xf4\x6f\x62\x7c\x88\x6a\xb4\x27\xe5\x85\xbb\x36\x33\xab\xf9\x24\xf3\xe8\x27\xe6\x71\xfc\xe3\xda\x50\x9e\x2d\x60\x10\xe3\x40\x02\x1a\x39\x14\x16\xd0\xa8\x4b\x16\x35\x60\xaa\xc9\x1c\xfe\x99\xeb\x79\x03\xe6\x4f\xa1\xbc\x70\x90\x65\x94\x05\xff\x3e\x95\x4e\xa2\x40\xfd\x02\xd2\xff\xc0\x5c\xb6\x13\x01\x37\x56\xd2\xdd\xc7\xff\x04\xdb\x89\x00\x2b\xc6\x11\xfa\xdf\xff\x99\xbf\xbf\xee\x0a\x9d\x64\x7e\xda\x7f\xd2\x49\x37\xc5\xfd\x65\x09\x10\xa3\x36\x8e\x22\x2f\xa1\x2b\x27\x92\xa7\x13\x20\x61\xdc\x8f\x57\x93\x33\x7d\x9b\xab\x92\xb3\x15\xfe\xdf\x70\x30\xf5\xde\xb4\x2e\x83\x35\x99\x27\x45\x23\x98\xf9\x24\x54\xc0\x52\x2c\x6f\x1e\x2c\x7a\x2b\x32\x1c\x4c\x64\x7b\x71\xf4\xe5\x13\x39\x22\x4b\x89\x3c\x8d\xc8\x47\x9a\xa4\x79\x11\xa7\xf4\x48\x53\x23\x57\x98\x51\x9e\x33\xaa\xce\x9e\x16\x28\x22\x99\x11\x37\x91\x15\x61\x3b\x78\x9c\x4e\x7f\x1f\xd5\x85\x5d\xbc\x48\xab\xb2\xd1\xf4\xb9\xfb\x2b\xe8\x9c\x0c\xcf\xd8\x44\xeb\x14\x11\xbb\x2f\x96\xc7\x93\x64\x27\x9a\x71\x31\x17\x6f\xd1\xf3\x42\x42\x1f\x35\x49\xed\x20\xcf\x3b\xf0\x92\x13\x45\x56\x7c\x8c\xdd\x48\x8a\xdc\x16\x7b\x12\xea\xd2\xd1\x8d\xbb\x15\x59\x37\xf1\xbe\xb6\xc6\xc1\x0c\x5b\x1d\x94\xc8\x72\xc0\x7d\x91\xfa\x28\x33\x3e\x44\xe1\x48\x38\x69\x77\x5b\xdd\x66\x1c\x8c\x8c\x17\x46\xec\x0b\x13\x5f\xd2\x9e\xde\x2f\x2e\xab\x07\xad\x5c\x5c\x9d\x26\x9d\xf7\x89\xb6\x7a\xb4\x62\xf1\x0f\x4d\x69\x27\x12\x0c\x6d\x19\xaf\x11\xc5\xf9\xee\xc4\xf1\x8c\xb8\x49\x72\xe3\x0c\x7c\xc2\x96\x2c\xfa\xc6\xf8\xaa\x52\x3a\x91\x13\xea\xd8\x37\x8c\xdf\xbb\x8e\x90\x1a\xf1\x4d\xbb\xe9\x0d\xe2\x0d\x1a\x68\xa7\xe2\x02\xce\x91\x1e\xca\x70\x31\xb1\x78\x70\x06\x08\x99\xc1\x68\x34\xdf\x09\x8c\x83\x99\x3c\x60\x0a\xa1\x67\xbe\x8e\x83\x09\x21\xaf\xde\xe0\x18\xbf\xcd\x60\xcd\x08\xf2\xab\xfa\xcd\x61\x76\x0a\x19\x0e\xa6\x73\x5e\x34\x69\x23\xb2\x13\x44\xef\x76\xba\xe8\x59\xcb\xf0\x30\x33\x0c\xe4\xe9\xa4\x49\xd5\xef\x41\x08\xec\x94\xd5\x8c\xc0\x9d\x29\xd1\x25\xbd\x9f\x59\xce\xcc\x63\x69\xe3\x27\xd1\xf9\x91\xb6\x78\x32\xe5\x83\x67\x29\x87\x32\xc3\xd1\xb9\x44\x3a\xe9\x67\x1e\xc9\xa4\xbb\x5e\x6a\xce\x5c\xd2\xd0\x19\xdb\xb8\x76\x2c\x6d\xfc\x5a\xee\xbf\x14\xbf\x8d\x62\xce\x29\xf5\xcc\x9b\x93\x9a\x72\x9a\x76\x28\xf9\xfc\xd5\xc5\xbc\x9e\xb7\xde\x4b\xf5\xc0\x8f\xf6\xdd\x6b\x8e\x3f\x79\xb5\xae\xea\x9c\x4d\x76\x70\xe7\xfd\x1d\x5f\x1d\x41\x37\x02\xd3\x40\xf6\xe6\x9a\x71\x30\x1e\xd3\x08\x75\x33\xc0\x3f\x8e\xec\x68\x5f\x07\xc6\x87\x28\xd7\x32\xaa\xaf\xc3\x91\x64\xd1\x5f\x9c\xf1\x2d\x8f\xb3\x44\x1e\x04\x19\x1e\x26\xe3\x48\x07\x9a\x6f\xd6\x82\x1e\xf4\x97\x59\x0e\x9a\x84\x5b\xc8\x4a\xe0\x13\x3a\x53\x7d\x2c\xdd\x93\xb2\x9d\x6d\xc9\x4f\xcc\xae\xf4\xa4\xf3\x24\x3b\x37\xb8\x9e\x7f\x3f\x8d\xde\x30\xcb\x6d\x16\x9d\x0f\x59\x2b\x98\x89\x22\xcb\x6d\x31\xe3\x64\x1a\x57\xd1\x79\x9c\x25\xd9\x72\x9d\xbf\xf7\x00\xed\x54\x86\xe2\x49\x8a\x11\xa5\x9b\x5d\x26\xbd\x9a\x95\xd5\xf4\x0f\xe0\x3d\x86\x6f\x48\x6e\xf1\xa1\x24\x9d\xce\x5d\xa3\x68\x75\x27\xde\x9c\x4a\xa7\xd3\xb8\xca\x18\xd2\xb6\x31\xdd\x19\x17\x62\x98\xce\xbc\x30\xc3\x72\x99\x27\x45\xf3\xac\x88\x83\x69\xe2\xbe\x41\x0a\x09\x33\x49\x5f\xe4\xfb\x65\x88\x9e\x7a\xce\x0b\x71\x6c\x8d\x87\x19\xdf\x91\x56\x44\x86\x87\x29\x1c\xa3\xc5\xf8\x97\x7b\x3a\x84\xab\xcd\xdf\x31\x96\x2c\x6b\x61\xf4\x44\xba\x0b\x17\x34\x71\xbf\xa0\xd9\x59\x8c\x1f\x2c\xf4\xe1\x37\x2b\x6c\x3b\x63\x1b\x3f\x6f\x36\xc9\xcd\x6c\xe5\x72\x7a\xa5\xd9\x0d\xcc\xb4\x30\x5b\x99\xf9\xd6\x0a\xc5\xbc\x7f\x7e\xf1\x31\xc2\x57\xe5\x37\xb1\x9d\xc8\xad\xbf\x91\x0b\x78\x3e\x8c\xa4\xfb\x8f\x4b\xd2\x54\xf2\x66\x65\x7d\xa1\xac\x0d\x78\x7f\xcd\xe2\x12\xe9\xed\x46\x6d\xe3\x3e\x49\x7a\xde\x33\xb8\x5f\xda\x73\xee\x02\x29\xd1\xe4\x3e\x49\xbd\x46\x30\x1e\xa6\x9b\x1e\xdf\x4c\xdb\x36\xe6\x8a\x78\xa8\x42\xd1\x7f\x6a\x8d\x87\x99\xdf\x96\xf3\xfe\xa5\x86\xaa\xc4\x57\x53\x6a\xcb\x06\xa4\xe4\x89\x0e\x9d\xeb\xf3\xea\x79\x1d\x4a\x05\x1b\xc2\xb1\x94\xe6\xb9\xd1\xbe\xcf\x3b\xcc\x79\xff\x79\xf5\x31\x74\xff\x94\xf1\xc4\xcc\xab\x2f\x64\xfc\x8b\xb0\xf0\x08\x8f\x5c\x53\x56\x2c\x59\x4f\xf7\x96\xe2\x07\x7b\x98\x27\xe6\xc6\x31\x67\xfe\xfd\x19\xd2\xdc\xa2\xc4\xab\x81\x80\xcb\xed\x69\x14\x51\x74\xb0\x4c\x20\x3b\x60\x33\x20\x99\x22\x8f\x96\x48\x11\xef\xcb\x1c\x69\x19\x29\x56\xe2\x0d\xfb\x2e\x83\x6e\xc1\x03\x4f\x64\x91\xfe\xa8\x67\xf2\xbc\x55\xc4\x08\x4d\xe7\x5a\x59\xa4\xa2\x48\xed\xf3\x79\xb7\xc6\xc3\x2c\x6a\xec\x48\x9e\x65\x85\x33\xaf\x43\x85\xbb\x16\x7d\x62\x71\x20\x23\xb7\x2b\x1a\xc6\x8a\x78\x19\xf6\xc8\xca\x57\xb9\xd0\x49\x5c\x7e\x9f\x4f\xa2\xc5\x1a\xac\xa1\x8b\x1d\xf8\xbe\xd1\xcc\x13\x93\x5f\x46\x3b\x58\x7e\x6d\x39\xd5\x63\x94\x3b\xad\xa3\x37\x5d\x24\xa9\xa7\xbf\x2b\xcf\xfd\xe1\x21\xff\xcc\x7d\x08\x17\x34\x5d\x11\x00\x27\x97\x64\xf2\x2a\x6c\xbb\xf0\xfe\x8e\x2f\x67\xfe\x9f\x71\xb9\x99\x62\x1f\x98\x2c\xd2\x52\x83\x80\x1c\xfa\x59\xd6\x1f\x4a\xeb\x26\xa3\x9b\xd5\xb4\xb9\x1b\x66\xf7\xdf\x8a\x48\xba\xbf\xde\x27\xea\x3f\xe0\x61\xc8\x42\x57\xed\x57\x21\xfc\x47\xd5\x42\xcd\xb3\xfc\x7b\x1d\xee\x93\x54\x36\x86\x4e\xd8\xaa\x2b\x13\xc8\xcf\x58\x76\xd7\x95\x3c\x9d\x6a\x0d\x7f\xc2\x87\x57\x59\x46\x91\x04\x57\xed\x9a\x4e\xfb\x5a\xb5\x24\x8f\xec\x41\x75\xf9\x7c\xd2\xfb\xaa\x0e\xdc\xa7\xb4\xea\x23\xe3\xa4\x96\xaa\x6d\xa3\x3e\x4a\x95\x25\xec\x4f\x54\x1a\x9c\xdc\xce\xe3\x25\x9a\x71\x9b\x36\x6d\xdb\xca\xc9\xb5\x6b\xd7\xbe\xbd\xbc\x7c\x87\x0e\x1d\x3b\x76\xea\xd4\xb9\x73\x97\x2e\x5d\xbb\x76\xeb\xa6\xa0\xa0\xa8\xd8\xbd\xbb\x92\x92\xb2\x72\x8f\x1e\x2a\x2a\xaa\xaa\x3d\x7b\xf6\xea\xd5\xbb\x77\x9f\x3e\x7d\xfb\xaa\xa9\xa9\xab\x6b\x68\x48\x24\xfd\xfa\x69\x6a\x6a\x69\xf5\xef\x3f\x60\xc0\xc0\x81\xda\xda\x83\x06\x0d\x1e\x3c\x64\xc8\xd0\xa1\xc3\x86\x0d\x1f\xae\xa3\xa3\xab\xab\xa7\xa7\xaf\x6f\x60\x60\x68\x68\x64\x34\x62\xc4\xc8\x91\xc6\xc6\xa3\x46\x8d\x1e\x3d\x66\xcc\xd8\xb1\x26\x26\xa6\xa6\x66\x66\xe6\xe6\xe3\xc6\x59\x58\x58\x5a\x5a\x59\x59\x5b\x8f\x1f\x3f\x61\xc2\xc4\x89\x36\x36\xb6\xb6\x93\x26\xd9\xd9\xd9\xdb\x3b\x38\x38\x3a\x3a\x39\x39\x3b\xbb\xb8\xb8\xba\xba\xb9\xb9\xbb\x7b\x78\x78\x7a\x4e\x9e\xec\xe5\xe5\xed\x3d\x65\x8a\x8f\x8f\xaf\xaf\x9f\x9f\xbf\x7f\x40\x40\x60\x60\x50\x50\x70\x70\x48\x48\x68\x68\x58\x58\x78\x78\x44\x44\x64\x64\x54\xd4\xd4\xa9\xd1\xd1\x31\x31\xd3\xa6\xc5\xc6\xc6\xc5\xc5\xc7\x27\x24\x24\x26\x26\x25\x25\x27\x4f\x9f\x9e\x92\x92\x9a\x3a\x63\xc6\xcc\x99\x69\x69\xb3\x66\xa5\xa7\x67\x64\x64\x66\x66\x65\x65\x67\xe7\xe4\xe4\xe6\xe6\xe5\xe5\xe7\x17\x14\x14\x16\xce\x9e\x3d\x67\x4e\x51\xd1\xdc\xb9\xc5\xc5\x25\x25\xa5\xa5\xf3\xe6\xcd\x9f\xbf\x60\x41\x59\xd9\xc2\x85\x8b\x16\x95\x97\x57\x54\x2c\x5e\xbc\x64\x49\x65\xe5\xd2\xa5\xcb\x96\x55\x55\x55\x57\x2f\x5f\xbe\x62\x45\x4d\x4d\x6d\x6d\x5d\xdd\xca\x95\xab\x56\xad\x5e\xfd\xcd\x37\x6b\xd6\xac\x5d\xbb\x6e\xdd\xfa\xf5\x1b\x36\x6c\xdc\xb8\x69\xd3\xe6\xcd\xdf\x7e\xbb\x65\xcb\xd6\xad\xdb\xb6\x6d\xdf\x5e\x5f\xbf\x63\xc7\xce\x9d\xbb\x76\xed\xde\xbd\x67\xcf\xde\xbd\xdf\x7d\xb7\x6f\xdf\xf7\xdf\xef\xdf\x7f\xe0\xc0\xc1\x83\x87\x0e\x1d\x3e\x7c\xe4\xc8\xd1\xa3\x3f\xfc\xd0\xd0\x70\xec\xd8\xf1\xe3\x3f\xfe\x78\xe2\xc4\xc9\x93\x3f\xfd\x74\xea\xd4\xcf\x3f\x9f\x3e\x7d\xe6\xcc\xd9\xb3\x8d\x8d\xe7\xce\x9d\x3f\x7f\xe1\xc2\xc5\x8b\x97\x2e\xfd\xf2\xcb\xe5\xcb\x57\xae\x5c\xbd\x7a\xed\xda\xaf\xbf\xfe\xf6\xdb\xf5\xeb\xbf\xff\x7e\xe3\xc6\xcd\x9b\x7f\xfc\xd1\xd4\x74\xeb\xd6\xed\xdb\x77\xee\xdc\xbd\xfb\xe7\x9f\xf7\xee\xfd\xf5\xd7\xdf\x7f\xff\xf3\xcf\xfd\xfb\x0f\x1e\x3c\x7c\xf8\xe8\xd1\xe3\xc7\x4f\x9e\x3c\x7d\xfa\xef\xbf\xcf\x9e\x3d\x7f\xfe\xe2\xc5\xcb\x97\xaf\x5e\xbd\x7e\xfd\xe6\xcd\xdb\xb7\xef\xde\xbd\x7f\xff\xe1\xc3\xc7\x8f\xc4\x4c\xfb\xbf\xfd\xff\xdf\xfe\xff\x6f\xff\xff\xb7\xff\xff\xdb\xff\xff\x5f\xee\x3f\x10\x17\xc9\x1d\xf7\xe4\xda\x69\x01\x62\x5d\x71\xf3\x7f\xff\xe1\xe7\x36\x6d\xdb\xd0\xff\x69\x0b\x39\xb4\x43\x7b\xc8\xa3\x03\x3a\xa2\x13\x3a\xa3\x0b\xba\xa2\x1b\x14\xa0\x88\xee\x50\x82\x32\x7a\x40\x05\xaa\xe8\x89\x5e\xe8\x8d\x3e\xe8\x0b\x35\xa8\x43\x03\x12\xf4\x83\x26\xb4\xd0\x1f\x03\x30\x10\xda\x18\x84\xc1\x18\x82\xa1\x18\x86\xe1\xd0\x81\x2e\xf4\xa0\x0f\x03\x18\xc2\x08\x23\x30\x12\xc6\x18\x85\xd1\x18\x83\xb1\x30\x81\x29\xcc\x60\x8e\x71\xb0\x80\x25\xac\x60\x8d\xf1\x98\x80\x89\xb0\x81\x2d\x26\xc1\x0e\xf6\x70\x80\x23\x9c\xe0\x0c\x17\xb8\xc2\x0d\xee\xf0\x80\x27\x26\xc3\x0b\xde\x98\x02\x1f\xf8\xc2\x0f\xfe\x08\x40\x20\x82\x10\x8c\x10\x84\x22\x0c\xe1\x88\x40\x24\xa2\x30\x15\xd1\x88\xc1\x34\xc4\x22\x0e\xf1\x48\x40\x22\x92\x90\x8c\xe9\x48\x41\x2a\x66\x60\x26\xd2\x30\x0b\xe9\xc8\x40\x26\xb2\x90\x8d\x1c\xe4\x22\x57\xc8\x13\xf2\x85\x02\xa1\x50\x98\x2d\xcc\x11\x8a\x84\xb9\x42\xb1\x50\x22\x94\x0a\xf3\x84\xf9\xc2\x02\xa1\x4c\x58\x28\x2c\x12\xca\x85\x0a\x61\xb1\xb0\x44\xa8\x14\x96\x0a\xcb\x84\x2a\xa1\x5a\x58\x2e\xac\x10\x6a\x84\x5a\xa1\x4e\x58\x29\xac\x12\x56\x0b\xdf\x08\x6b\x84\xb5\xc2\x3a\x61\xbd\xb0\x41\xd8\x28\x6c\x12\x36\x0b\xdf\x0a\x5b\x84\xad\xc2\x36\x61\xbb\x50\x2f\xec\x10\x76\x0a\xbb\x84\xdd\xc2\x1e\x61\xaf\xf0\x9d\xb0\x4f\xf8\x5e\xd8\x2f\x1c\x10\x0e\x0a\x87\x84\xc3\xc2\x11\xe1\xa8\xf0\x83\xd0\x20\x1c\x13\x8e\x0b\x3f\x0a\x27\x84\x93\xc2\x4f\xc2\x29\xe1\x67\xe1\xb4\x70\x46\x38\x2b\x34\x0a\xe7\x84\xf3\xc2\x05\xe1\xa2\x70\x49\xf8\x45\xb8\x2c\x5c\x11\xae\x0a\xd7\x84\x5f\x85\xdf\x84\xeb\xc2\xef\xc2\x0d\xe1\xa6\xf0\x87\xd0\x24\xdc\x12\x6e\x0b\x77\x84\xbb\xc2\x9f\xc2\x3d\xe1\x2f\xe1\x6f\xe1\x1f\xe1\xbe\xf0\x40\x78\x28\x3c\x12\x1e\x0b\x4f\x84\xa7\xc2\xbf\xc2\x33\xe1\xb9\xf0\x42\x78\x29\xbc\x12\x5e\x0b\x6f\x84\xb7\xc2\x3b\xe1\xbd\xf0\x41\xf8\x28\x48\xff\x03\x20\xb4\xf9\xd8\xf6\x83\xdc\xfb\x76\xef\xda\xbf\x95\x7f\xd3\xe1\x75\xc7\x57\x9d\x5e\x76\x7e\xd1\xe5\x79\xd7\x67\xdd\xfe\x55\x78\xaa\xf8\xa4\xfb\x63\xa5\x47\xca\x0f\x7b\x3c\x50\xb9\xaf\xfa\x4f\xcf\xbf\x7b\xfd\xd5\xfb\x5e\x9f\x3f\xfb\xde\x55\xbb\xa3\x7e\x5b\xe3\x96\xa4\xa9\xdf\x1f\x9a\x37\xb5\x6e\xf4\xff\x7d\xc0\xf5\x81\xbf\x69\xff\x3a\xe8\xda\xe0\xab\x43\xae\x0c\xbd\x3c\xec\x97\xe1\x97\x74\x2e\xea\x5e\xd0\x3b\xaf\x7f\xce\xa0\xd1\xf0\xac\xd1\x99\x11\xa7\x47\xfe\x6c\x7c\x6a\xd4\x4f\xa3\x4f\x8e\x39\x31\xf6\x47\x93\xe3\xa6\xc7\xcc\x1a\xcc\x7f\x18\x77\xd4\xe2\x88\xe5\x61\xab\x43\xd6\x07\xc7\x1f\x98\xb0\x7f\xe2\xf7\x36\xfb\x6c\xbf\x9b\xb4\xd7\x6e\x8f\xfd\x6e\x87\x5d\x8e\x3b\x9d\x76\x38\xd7\xbb\x6c\x77\xdd\xe6\xb6\xd5\x7d\x8b\xc7\xb7\x9e\x9b\x27\x6f\xf2\xda\xe8\xbd\x61\xca\x7a\x9f\x75\xbe\x6b\xfd\xd6\xf8\x7f\x13\xb0\x3a\x70\x55\xd0\xca\xe0\xba\x90\xda\xd0\x9a\xb0\x15\xe1\xcb\x23\xaa\x23\xab\xa2\x96\x4d\x5d\x1a\x5d\x19\xb3\x64\xda\xe2\xd8\x8a\xb8\xf2\xf8\x45\x09\x0b\x13\xcb\x92\x16\x24\xcf\x9f\x3e\x2f\xa5\x34\xb5\x64\x46\xf1\xcc\xb9\x69\x45\xb3\xe6\xa4\xcf\xce\x28\xcc\x2c\xc8\xca\xcf\xce\xcb\xc9\xcd\xcd\xc9\xcb\xce\xcf\x2a\xc8\x2c\xcc\x98\x9d\x3e\x67\x56\x51\xda\xdc\x99\xc5\x33\x4a\x52\x4b\x53\xe6\x4d\x9f\x9f\xbc\x20\xa9\x2c\x71\x61\xc2\xa2\xf8\xf2\xb8\x8a\xd8\xc5\xd3\x96\xc4\x54\x46\x2f\x9d\xba\x2c\xaa\x2a\xb2\x3a\x62\x79\xf8\x8a\xb0\x9a\xd0\xda\x90\xba\xe0\x95\x41\xab\x02\x57\x07\x7c\xe3\xbf\xc6\x6f\xad\xef\x3a\x9f\xf5\x53\x36\x78\x6f\xf4\xda\x34\x79\xb3\xe7\xb7\x1e\x5b\xdc\xb7\xba\x6d\x73\xdd\xee\x52\xef\xbc\xc3\x69\xa7\xe3\x2e\x87\xdd\xf6\x7b\xec\xf6\x4e\xfa\xce\x76\x9f\xcd\xf7\x13\xf7\x4f\x38\x30\xfe\xa0\xf5\x21\xab\xc3\x96\x47\x2c\x8e\x8e\xfb\xc1\xbc\xc1\xec\x98\xe9\x71\x93\x1f\xc7\x9e\x18\x73\x72\xf4\x4f\xa3\x4e\x19\xff\x3c\xf2\xf4\x88\x33\x46\x67\x0d\x1b\x0d\xce\xe9\x9f\xd7\xbb\xa0\x7b\x51\xe7\xd2\xf0\x5f\x86\x5d\x1e\x7a\x65\xc8\xd5\xc1\xd7\x06\xfd\xaa\xfd\xdb\xc0\xeb\x03\x7e\xef\x7f\x43\xeb\xa6\xe6\x1f\xfd\x9a\x24\xb7\x34\x6e\xab\xdf\x51\xbb\xdb\xf7\xcf\x3e\xf7\x7a\xff\xd5\xeb\xef\x9e\xff\xa8\xde\x57\x79\xd0\xe3\xa1\xf2\x23\xa5\xc7\xdd\x9f\x28\x3e\x55\xf8\xb7\xdb\xb3\xae\xcf\xbb\xbc\xe8\xfc\xb2\xd3\xab\x8e\xaf\x3b\xbc\x91\x7f\xdb\xfe\x5d\xbb\xf7\x72\x1f\xda\x7e\x6c\x23\xe0\x7f\x32\xf0\x3f\x19\x90\x5a\x02\xb3\x1c\x8b\x02\xe5\x93\x82\x60\xdb\xd1\x72\x43\xaf\x1d\x82\xe0\x36\x68\x82\x8e\xc6\x1b\x41\xf0\xad\xb3\xdd\xaf\x6d\x26\x08\xc1\x5d\x1d\xd5\x75\xb6\x0b\x42\xa4\x86\xcb\xdd\x91\x4f\x04\x61\xea\x70\xcf\x47\xe6\x45\xc2\x91\xe8\x32\x3f\xb9\x49\xd3\x05\xb3\x98\x1e\xc1\x55\x1e\x1d\x3e\xce\x9c\x3a\x29\xea\x74\x50\xc6\x87\x0b\x51\x6d\x92\xcb\xa2\x47\x7c\xe8\x18\xbe\x30\xe7\x66\xb2\xf0\x7e\x70\x98\x5c\x49\x53\xc6\xbf\xef\x36\x07\x2b\x2d\xa9\xcd\xb5\x7a\xfb\x4f\x60\x8f\x95\xdd\xe6\xd8\xbf\x5d\xed\xfb\x6a\x53\xf4\xdc\xe1\x6f\xcd\xbd\x1f\xee\xfe\x50\xf2\xcd\x9b\x3b\x9e\x2f\x8e\xde\x9f\xb7\xf4\x8d\x9d\xfb\xca\xb3\xa3\x16\x76\x7c\x3d\xc4\x75\xcc\x8d\xc7\x95\xaa\xaf\x9a\x9c\xac\x1e\xed\xaa\xbc\xf8\x7a\x9d\xc3\xd2\x7f\xaf\x95\xf7\x79\x33\xcd\x3e\xed\xd9\xd3\xf9\xa3\xdf\x0e\xb4\x0b\x7a\xfe\x66\xae\xe5\xdb\xba\x49\xb5\x2f\x36\x16\x1e\x78\xde\x79\xd2\xeb\x97\x66\xf9\x63\xfe\x51\xb1\xaf\x7b\x69\x95\x7f\xf7\xc6\x39\xc7\xc1\x2f\x4f\xe4\xfe\x7d\xe5\xb9\xe3\xe0\x57\x3f\x64\xec\xba\x18\xee\x34\xfc\xd5\x89\x8c\x17\x3f\x0f\x76\xfa\xf7\xf5\xac\x34\x93\x63\xbf\xb9\xbc\x7c\x6d\x3f\xeb\xde\x11\x07\x97\x17\xaf\x1f\xcc\x50\x16\x04\xcb\x9e\xe3\xb2\x55\x86\x08\x82\x5d\x57\xcb\x5f\x7a\x67\x08\x82\xe7\x40\xeb\x58\x8d\x3a\x41\x08\x34\xb5\xf9\x30\x48\x4d\x10\x22\xa2\xec\xb6\xeb\x54\x0b\x42\x8c\x9d\x73\x2f\xe3\x36\x82\x10\xeb\xe0\xe1\x6a\xfe\x56\xf8\x2e\x1e\x3e\xa5\x76\x6b\x04\xbd\xb8\xbd\x41\x49\x9e\x81\x1f\xfd\xa3\x0b\xa2\x1e\x85\xe8\x7e\x98\x1b\xb3\x39\xde\x22\x36\xfe\xfd\xd1\x28\xff\x4c\xe7\xd4\x13\xef\x8e\x46\xac\x2d\x7a\x94\x33\xf7\x9d\x52\x68\xc4\x62\x93\xd9\x93\xde\xfa\x04\x2d\xae\xbb\x59\xb2\xf8\x6d\x7b\xff\xc0\x4d\x33\xe6\xad\x7c\xe3\xec\xdb\x6b\xf7\xe4\x45\x4a\xaf\x7f\xf0\x2a\x6f\x98\x5f\x71\xf7\xd5\xf7\x9e\xd6\xe7\xa3\xab\x2c\x5e\x75\x71\x93\x6f\xba\xba\x42\xe9\xe5\x01\xe7\x49\x4f\x34\x57\xdc\x79\xdd\xce\x31\xfb\xe9\xb3\x25\x7f\xbc\x69\xe3\xa0\xf2\xcc\xb7\xec\xae\x6c\x3d\x5e\x2e\xb2\x1f\xfe\xfc\x40\xf1\xee\x07\x3f\x39\xb4\x79\x31\x67\x4e\xe9\xad\x74\xc7\x2b\x2f\xb6\xcf\x29\xb8\x66\xee\x9c\xf0\xb2\xeb\xec\xc0\xf3\x73\x5d\x26\xbd\x3c\x9c\xaf\x7d\x46\xc9\xe5\xc8\xab\xe1\xb9\x2a\x27\xcc\x5c\xe7\xbe\x5a\x95\x75\xe1\xf0\x25\xb7\xfd\xaf\x35\x32\xa2\x0e\xca\xbb\xb5\x79\xfd\xc7\x8c\xf5\x82\x30\x6e\xe7\x38\xd5\x1e\x05\x82\xe0\x60\x3a\x2e\xa2\x57\xb2\x20\x78\x19\x5a\xc5\x6b\xcc\x15\x84\x90\xe8\x09\xcb\xb5\xe5\x04\x21\xf2\xac\xdd\x7c\xdd\xa1\x82\x10\xfb\x87\xd3\x02\xe3\xb3\x82\x90\x90\xed\x76\xcf\xfc\xa3\x70\x75\xfa\xc4\xc9\x17\x6d\x7d\x04\xa3\xa4\xeb\x01\x33\x3d\xd3\x3f\xda\xc4\xff\x1a\x71\x3d\xf4\xf7\x0f\xfa\x71\xfa\xb1\xdf\x25\xfa\xbc\x1f\x1f\xf3\x32\xed\xb7\xf4\xf9\xef\x5c\xa3\x6a\xe7\x6c\x28\x70\x78\x1b\x1a\xd1\xae\x3c\xbc\xa4\xf8\xcd\xd6\x90\x9d\xb5\x19\x65\x76\x6f\x0c\x03\x63\x37\x1e\x2c\x37\x7e\x7d\xcc\xcf\x76\xd7\x9f\x8b\x67\xbd\x7a\xef\xfd\xb1\xc1\x78\x59\xfa\xab\x81\x9e\x4e\x97\x02\x57\x58\xbf\xd4\x73\x5b\x72\xfb\xf5\x4a\xe7\x97\xe5\xce\x05\x8f\xef\xd4\x1c\x7e\xa5\xed\xb4\xf7\xc9\x9e\xea\xfd\xaf\x23\x1c\x5e\xfc\x9b\x59\xb1\x41\xb6\x1e\xcf\x5c\x1c\xaa\x9f\x5d\x5b\xa0\x71\x5b\xd7\x79\xde\xf3\xc1\xf3\xdf\x5c\x9f\xea\x5c\xf9\x22\x74\xee\xfc\xcb\xf1\x2e\x0f\x5e\xcc\x98\xbb\xe2\xec\x08\xb7\xa1\x2f\x7b\xce\xc1\x71\x0b\x77\xe3\x97\x1f\xf2\xf6\x1f\xfe\xc7\x63\xd7\xab\x4e\x79\xbf\x7d\x7f\xcf\xe3\xfc\xab\xb3\x59\x1b\xf7\x1a\x79\x76\x78\x6d\x97\xfe\xaf\x20\x58\x55\x9a\xc5\xf4\xf0\x10\x04\xa7\xeb\xa6\x1f\x7b\x16\x0b\x82\xf7\x6d\xcb\xed\x1a\xb9\x82\x10\x3a\xd8\x52\xd0\x5a\x25\x08\xd1\xd7\xed\xec\xf4\xa2\x05\x21\x31\xc4\x71\xd9\xa8\x39\x82\x30\xdd\xc3\x79\x8a\xc9\x6b\xe1\x72\x5a\x90\xc7\x23\xdb\x7f\x84\x11\x29\xbf\xfb\x4b\x3c\x57\x7e\x1c\x3f\xdd\x3d\xec\x44\x98\xfb\xfb\xdf\x13\xda\xc5\x19\x4c\x7f\xfd\xee\x52\x5c\xd4\xcc\x5e\xd9\x69\x6f\x37\xc7\xf8\x17\x9e\x9f\x1b\xf1\xe6\x4a\xe4\x9e\x45\x2b\x17\x44\xbc\xb1\x0c\x9d\x5d\x7b\xb5\x5c\xeb\xb5\x76\x88\xe2\x06\x9b\x65\x4b\x5e\xc5\x07\x14\xef\xf6\x58\xa1\xfe\xb2\xd0\x47\x38\x66\xb4\x72\xec\xcb\x7e\x9e\x37\xae\x84\xad\x1a\xf7\xa2\xbb\xbb\xed\x9f\xa9\x6b\xfd\x5f\xaa\xba\xe8\x3f\x1e\xb1\x52\xbf\x79\x3d\x7a\x38\x9d\x7b\xb2\x62\xb9\xc6\xcb\xe1\x8e\xa7\xfe\xc5\x92\xd3\x7f\xad\x77\xee\xfa\xac\x70\x61\xfc\x0d\x7b\xd7\xb7\xcf\x3a\x55\x38\x5e\x8e\x75\x93\x3c\x5f\x34\xbf\xcd\xe9\x89\xee\xd7\x5e\x38\x95\xe8\x1d\x7f\xe7\x99\xfd\x22\xae\xa4\xdd\x61\xef\xc9\xe9\x2f\x7b\x17\x75\xfb\x3e\x65\xf2\xc1\x97\xd7\x0a\x1c\xf6\x5c\x99\x7c\xfd\xd5\xb4\xdc\x09\xdb\x7b\x7a\x07\xbd\x3a\x9b\x1d\x23\x08\x36\x0f\x4d\x7b\xf4\x78\x21\x08\xee\x36\xe6\x4e\xbd\xaf\x08\x42\x60\xa2\x85\xa3\xa4\x56\x10\x22\xfa\x59\x0c\xd4\xfc\x4b\x10\x12\x4d\x6d\xba\xe8\x66\x08\x42\x6a\xaa\xdd\xcc\x91\x7f\x0a\x42\xda\x59\xa7\x9b\xe6\xfb\x85\xfd\x59\xaa\x1e\x53\xed\x97\x09\xbd\x32\xed\x7d\x1e\x7a\x77\xfe\x68\x34\xab\x53\x48\x71\x78\xc5\xfb\xc7\xa9\x3a\xd1\x07\xa6\x97\xbe\x0b\x4f\x54\x49\xf9\x31\xdf\xe0\x6d\x4c\x5c\x5e\xce\xc1\x92\x91\xaf\x4f\xc7\x04\x2d\xb8\xb6\x64\xc8\xab\xdd\x91\x1a\x35\x3f\x2d\x77\x7c\x15\x16\xfa\x62\x7d\xd7\x15\xe7\x5f\xfa\x05\xbe\xdd\xe3\xb4\x6a\xc9\x8b\xc9\xbe\xaf\x7f\x9c\xbd\x76\xc7\xf3\x68\x2f\xf3\x5f\x75\x36\x9c\x7a\xf6\x97\xfb\xd0\x07\x1a\x1b\xdf\x3e\x4f\x77\x0b\x7d\xf0\xe0\xff\xa1\xeb\x2c\xc3\xaa\xce\x9b\x87\x8f\xba\xeb\x9a\x18\xd8\xdd\x22\x08\x02\x06\x4a\x77\x77\x77\x77\x77\x77\x77\x77\x4b\x48\x28\x0d\x22\x20\x29\x20\x20\x21\x20\xa2\x48\x8a\x74\x9e\xee\x33\xcf\xb5\x37\xba\xbb\xf7\xfd\xdf\xe7\xd5\xe7\xfa\xf1\x6e\x86\xf9\xce\xf7\x5c\x67\x3e\x67\x7e\xc5\x09\xbf\xf2\xf0\x8b\x9b\x69\xb2\xac\x08\xc9\x74\x8e\xf9\x0c\xf9\x1e\x44\x44\xfa\xed\x89\x47\x0a\xae\x28\xc5\x84\x94\x61\x69\x25\x09\x54\x4e\xfc\x6c\x9f\xa7\x32\x3f\x9a\x29\xb6\xa7\xe3\xbc\x0a\x1d\x46\x2f\x22\xb7\x69\x5b\xb5\x16\x93\x19\xbe\x50\xcb\xa6\x3e\x8a\x59\x0f\xeb\xad\xec\x50\xcf\xc4\xbe\x09\x6a\x28\xb3\xd3\x18\xc2\x5d\x08\x58\x06\x10\xfb\x8d\xc3\x84\x6e\x0c\x40\x31\x98\x63\xff\x99\x0e\x00\x3d\x1d\xae\x86\x4b\x9b\x00\xa6\xfd\xbc\xeb\x37\xea\x00\x6c\x55\x85\x52\x19\x39\x00\x3c\x38\x45\x56\x1e\xb6\x00\xf8\x6a\x4a\xc5\xf2\xb6\xc3\x98\x7f\xab\x5c\xb2\x58\x23\xdc\xf1\xed\x56\xdb\xa7\x72\x97\x7a\xd1\xc7\x57\x37\xc5\x98\x48\xae\x71\x5f\x31\x33\x75\xe1\x20\x4e\x38\x9e\x77\x50\x0e\x89\x20\x58\xd8\xd5\xfb\xc4\xc5\xdf\xc5\x73\x5b\x3d\x88\x8e\x4d\xf3\xc3\x39\x9a\xdd\xcb\xb8\x99\xd5\x81\x0d\x36\xea\x7b\xa1\xf8\x5c\x14\xdd\x6c\xf0\x7b\xdd\x44\xe9\x3e\x14\x56\xeb\x7d\x4f\xd3\xcb\x60\x64\x93\xaa\xdc\xb4\x78\xa5\x30\xd2\x51\x89\x61\xed\x68\x65\x15\x6a\x4d\xe1\xce\xc6\xf5\x52\x04\xe6\xac\x5c\xc4\xe6\x40\xe1\x57\xd4\xa8\x6c\xd1\x36\x67\x1e\xd7\xe2\x0b\x05\xc7\xed\x89\xdc\x1b\x93\xbe\x4a\xdc\x3b\xc4\xcc\xde\xe1\x0f\x2a\xb7\x90\x7b\xd3\xe2\xde\x3f\x50\x53\x45\x1a\xa4\xe6\x75\x54\xaa\x49\xa1\x5a\x13\xf8\x9b\xee\xab\xff\x40\xeb\xc6\x2e\xd4\x0f\x69\xb0\x62\xee\x44\x79\x55\x3c\xd5\xe2\xc1\xc4\x46\x6c\x96\xd2\x6b\x7d\xc0\xca\x85\xca\xe7\xab\xeb\x8c\x60\x8b\x82\xd7\x00\x24\xb9\xd9\xad\x4f\x76\x01\x28\xdf\x61\xcf\x38\x6d\x0b\x60\x9c\xc7\x73\xff\xda\x35\x00\xcb\x65\x6e\xe6\xeb\xba\x00\x8e\x9f\xf9\x9b\xee\x55\x02\x78\x3f\x16\x09\x78\x54\x0f\x10\x30\x29\x99\xcd\xa7\x04\x2b\xa1\xfc\xd2\xb5\xa2\x97\xe1\x49\xc8\x43\x25\xa2\xb2\x20\x95\x23\xd8\x5a\x73\xdb\x28\x94\xfc\xd6\x77\xc5\xd8\xc4\x65\x3f\x31\xd3\x65\xd6\xfe\x60\x98\x0f\xbe\xc4\x69\xda\x1d\x92\x47\x71\xfa\x76\x0a\x61\x89\xd9\x02\x58\x66\xcb\x33\x69\x23\x05\x2c\x18\x3e\xd3\x63\x45\xd8\x62\x56\x54\xac\xc1\x64\x03\x7d\x79\x39\xf2\x8e\xf6\x5c\xbf\x51\x0d\x13\x42\x53\xcd\x68\x66\xb0\xee\x28\x22\x44\xd9\x7e\xa5\xad\x76\x1f\xea\xae\x22\xeb\xfa\xd1\x72\x1a\x34\xab\x7c\xf7\x46\x48\xc9\xfb\xb5\xab\x8a\xcc\x9b\x43\x45\x31\xd3\x3c\xca\xf1\x5b\xe8\xfc\xfa\x51\x21\x55\xde\x1d\xf3\x1c\xcb\x5e\x43\xf5\x78\xc4\x99\xac\xe4\x8e\x59\x8d\x6e\xc4\xb7\x8c\xa3\x6f\x8e\x69\xa5\xa1\x0e\x26\x2f\xd4\xbe\xd0\x7e\x80\x6a\x4a\x7c\x50\x6e\xac\x73\x17\x9d\x11\x9b\x52\xbc\xa3\xd3\x8e\xf1\x89\xcc\x78\xde\xad\x77\x04\x7b\x2d\xac\x36\x67\x45\xf7\x23\x76\x22\x98\x06\x40\xf2\xed\x63\xab\x13\xcf\x01\x54\xbf\x3e\x36\x3e\x15\x06\x60\xac\xf5\x4c\xfa\xa2\x0d\x80\x5d\x35\x87\xf2\xb5\x23\x00\x6e\x51\x7c\x41\x0c\x8c\x00\x7e\xdf\x84\xaf\x3c\xf2\x02\x08\x5d\x13\x97\xe1\xd5\x84\xe9\x88\xb3\xd2\x7c\x62\x8f\x40\x22\x72\x47\x81\x55\x11\x41\xbd\x1d\x59\xa8\xfe\xd5\xf8\x0d\xb9\x30\xa4\xd2\xa0\xdc\xf5\x1c\xd1\xd6\x4b\xca\xe6\x6d\x38\x02\xf7\xd6\x4d\xd3\x55\x29\xf3\x1c\x56\xc4\x49\x24\x68\x27\x7f\x0c\xbd\x61\x2b\x95\xa4\x5c\xb2\x86\x2a\xb2\xa8\x2f\x10\x2b\x9f\x43\xe0\x8d\x45\x5f\xc7\xd7\xfa\x6d\xaf\xe9\x4e\x0c\x84\x37\x1a\x6e\xb9\xaa\x6f\x2d\x7c\x7e\x5b\xbd\x83\x50\xe1\x5f\x5e\xaf\xdf\x8b\x68\x57\xbe\xbe\x7a\xbc\x86\x63\xfb\xaa\x52\xe2\x5a\x5e\x85\xd1\x9c\xa4\xea\x9d\x0d\xe3\x32\xb3\x31\x1e\x75\xf4\x66\x7a\x71\x61\xdf\x94\x66\xe3\xd6\x70\xa1\x61\x3b\x9b\x76\xe5\x36\x35\x8f\xd8\x24\xa8\xe3\x8a\xa0\xcb\x76\xa9\xe1\xd5\xe3\x43\x90\x32\x3c\x5e\x3a\xea\x1f\x40\x09\x24\x97\x15\x3b\xeb\x2b\xa1\x4f\x25\x48\xe5\x9f\x33\xb8\x8f\x9e\x8f\x99\xcf\x9a\x32\x3c\x87\x49\x89\xac\x4a\x8b\x37\x9c\xc2\xde\x0d\xa3\x02\xc8\xbe\x7f\xf4\xec\xc4\x10\x80\x8e\xee\xc3\xc8\x53\x9d\x00\xe6\x39\x8f\x89\xe7\x5f\x02\x38\x24\x3f\x65\xbc\x62\x02\xe0\x6d\xc6\xfd\xf0\xee\x12\x40\x50\x20\xff\x02\xab\x1e\x40\x54\xba\x48\x0c\x37\x3d\xec\xc4\x7c\x91\x18\x14\x89\x00\xa5\xf8\x9b\x72\x07\x15\xc5\xa8\x87\xe3\xdc\xd4\x7c\x4c\x2f\x92\x9f\x47\x1f\xd3\x45\xba\x72\x10\x8d\x83\x5f\x5b\x3c\x8d\xd0\xc6\x55\x78\xa6\x38\x37\x66\xba\xa0\x5f\xba\xa5\x06\xb0\x96\xed\x41\x79\x3b\xce\xc6\x16\x57\xb4\x20\x7f\xb3\x0e\xcd\x37\xa8\xfd\xb4\x8d\x32\x1b\xad\x33\x6c\x3a\xba\x59\xa5\x1f\x3c\x7c\xb2\x2d\x75\xf3\xb6\x66\xf1\xf7\xd8\x76\xf1\x2d\x26\x0d\xc6\x1f\xfb\x5a\xbc\x76\xb2\x55\x5e\x2f\x3b\xbf\x3e\xbb\x8c\x52\xfb\x7d\xe5\x47\xed\x93\x71\x23\x2d\xe1\xb5\xa4\xaa\x3d\x7d\xf7\x75\x2f\xaf\xaf\x94\x9f\xeb\x68\xd4\x4d\xd9\x5c\x2b\x2e\x6d\x5c\xd3\x8b\xd9\x0e\xcd\x5f\xaa\x1c\x34\x3c\xbe\x93\x9b\x5b\xf8\x52\xd2\x50\x1e\xd1\x9e\xd9\x50\xc8\x60\x84\x47\xe6\xa5\x65\xe7\x65\x18\xd3\xa1\x82\x93\x8f\x67\xbc\x31\xe1\x47\xab\xc5\xd7\xa6\xf0\x9a\xa4\x60\x04\xa3\x63\x13\xc2\x4c\x99\x31\xe3\x11\x73\x00\x8a\x3c\x8f\x8c\x4f\x36\x02\xe8\x74\x3f\xb2\x3c\x1d\x02\x60\x19\xf5\x88\x7c\x5e\x0a\xc0\x95\xe1\x09\xf1\x4a\x14\x40\x10\x23\x87\xce\x9d\x4e\x80\xc8\x68\xde\x06\x56\x2e\x80\xd8\x37\xc2\x86\x5c\x3d\x80\x4b\xfe\x21\xa6\x20\x42\x03\x56\x69\xf7\xa4\x76\xe4\xc3\xa9\x5a\xa9\x28\xa5\xa3\x06\x1d\xe4\xea\xa4\x76\xad\x18\x97\x18\xa2\x55\xf4\xaa\x89\x66\xc4\x7d\xdc\x6f\x81\x41\x0e\xb8\x5c\x3a\xd4\x84\xb7\xb4\x27\xb6\x5c\x12\x41\x72\x7b\x12\x59\x5c\xc7\xb6\xa3\xef\xc0\x99\x7d\xa7\x91\x63\xf3\xaa\xd5\x9e\x7a\xa3\x8e\xfe\x55\x6f\x23\x89\x4f\x7c\x7d\x22\xeb\x74\x3a\xb5\xb3\xf9\xdd\x76\x9b\x03\x1a\xaf\x17\x3c\x5b\xc3\x37\x5e\xab\x63\x7e\x7c\x6a\xde\x99\x94\xd6\xd9\xb3\x44\x7e\xa3\xf0\xe1\x93\xde\xe4\xaa\x64\xed\xeb\x76\x35\x03\xf5\xf5\x95\xf2\xf0\xd7\x56\xc6\xf1\x1b\x5e\xaf\x8c\x2a\x6a\x4c\x6c\xb7\x74\x8b\xef\x15\x4f\x9b\x7a\x6e\xf7\xe4\x6f\xe7\xcb\x9a\xd1\x22\x4e\xe7\xa4\xe7\x24\x98\x59\x22\x90\x99\xc1\xa9\x13\xe6\x61\x28\x86\x94\xcd\x78\x13\xcb\x47\x28\x44\xe2\x68\x0c\xc1\x62\x10\x3d\x14\x47\x13\xfd\xc8\xc2\x1d\x63\x15\x7d\x11\x40\xb5\xfe\xe1\x7b\x3a\x35\x00\x23\x3b\xb6\xee\xd3\x59\x00\xb6\x0d\x8f\x4e\x9c\x8f\x03\xf0\x62\x7c\xcc\x71\xe5\x06\x40\xc8\xf0\x53\xab\xdb\x77\x01\x62\xcd\x39\xab\xee\xd7\x00\xa4\x70\xf1\x5b\x3d\xc5\xc3\x72\x3a\x4e\x74\x4c\xd4\x1d\x4c\xf3\x6a\x25\xbc\xe5\xbf\x51\x19\xf3\x9c\x15\x2e\x19\x73\x93\x73\x73\x8f\xa8\x7d\x75\xa5\x23\x3a\xa6\x7a\x18\xdc\x0e\x5f\xc0\x1d\x8f\x42\xda\x70\xe7\x4c\x22\xf3\xfc\x4c\xbc\xc4\xaa\x7f\x6c\x27\xfb\xc4\x86\x08\x35\xb7\x6e\x3e\x76\xbb\x9e\x3e\xdb\x79\x74\x8d\xc6\x6e\xbb\xe6\x43\xdf\xa1\x25\x15\xd3\x89\xb1\xae\x61\xed\xe5\xf7\x86\x55\x93\x94\x01\xbf\x35\x37\xdd\xf4\x99\xbe\x9e\xb1\x59\x53\xbd\xec\xef\xa7\x3a\xba\x07\xc5\x0d\x2b\x16\xe7\x9a\xc5\xda\xb7\x4d\xd8\x57\x4e\x37\x1c\xa8\x0b\x37\xab\x5f\xb3\xaa\xc6\xbe\x22\x5b\x58\xad\xd7\x56\x6c\x15\x59\x59\xaa\x6c\x16\x95\xb6\xe5\x3c\xb1\x3e\xb0\xf5\xe9\x85\x41\xba\x83\xf5\xeb\xed\xad\x7c\x54\x72\xa9\xb5\x37\x42\x32\x47\x22\xde\xd5\x9a\x80\x14\xca\x68\x89\x72\xb4\x51\x45\x05\x24\x7f\x0e\xbd\x6a\x9b\x84\x96\x4e\xf0\x0f\xba\x6b\x9b\x88\x39\x1f\xb3\x08\xa0\x96\xc9\x5a\x71\xf2\x2c\x80\x29\x86\x6d\xfe\x4c\x34\x80\x83\x34\x6b\xed\xb9\xfd\x00\x3e\x23\x8f\x0e\x5d\x4e\x02\x88\xba\xfb\xf8\x8f\x1b\x9e\x00\x49\x41\xcf\x8a\x18\xfd\x01\xb2\xb9\xb9\x6b\x1f\xbb\x00\x14\xcc\x0a\x64\x0b\x1c\x02\xfd\x22\xb4\x38\xbd\x02\x2b\x35\xb1\x64\x40\xda\x5c\x57\x9d\x3c\x58\xf2\x40\xf9\x77\x27\x3c\xf1\x74\x5e\xb5\xae\x58\x94\x2a\xf6\x73\xea\x90\x79\x61\xee\x22\x52\x3f\xda\xc2\x19\x51\xd3\xb3\x81\x09\x4c\x0a\x9c\xec\xec\x5a\x13\xf3\x9e\x4c\x39\xde\x3b\xf1\xe3\x77\xd7\x90\x5a\xe2\xd8\xca\x7c\x80\x75\xf6\x28\xe3\xc4\x85\xc5\x6d\x93\xe8\x2f\x46\xc3\x98\x95\x0c\x03\xeb\xa9\x3b\xfd\x5f\x47\x7e\x37\xb3\x9c\x55\xea\xd9\x69\xa3\x58\x5e\x5e\x78\xd9\x7e\xa5\x2e\xc0\x8a\xb4\x14\xdd\xf4\xb9\x8c\x6c\x13\xb6\xb2\x5d\xbf\x9c\x57\x6a\x37\xb7\x86\xaa\x56\xc8\x3a\x6a\x37\xbb\x51\xf9\x6a\x2c\x85\xdf\x5e\x71\xcb\xa6\x78\x26\x7e\xd9\x5e\x71\x7b\xbb\xe0\x5e\xa4\xa9\x23\xc7\xce\xa7\x3c\xee\x70\x26\x07\x76\x24\x73\xa6\x44\xc0\x61\xa7\x52\xe4\x66\x9a\x9b\xcf\x9c\x53\x13\x6a\x3c\xa9\xde\x0b\xe7\x44\x87\x7e\x13\xd7\x0d\xa0\xa5\xc5\x26\x49\xa7\x05\x60\x7e\x89\x05\x73\xfa\x19\x80\xcb\x02\xab\xd9\xb9\x49\x80\xc0\x4f\x6c\xc9\x97\x65\x00\x62\x06\x1e\xa6\x5e\x37\x05\x48\xdf\x78\x52\x41\x3f\x09\x50\xb4\x87\x63\xfa\xa1\x35\x40\x99\xa6\xc0\x0d\x21\x19\xf0\xad\x92\x15\xce\x90\x1d\xa1\x26\x54\xe9\x49\x8a\xea\x32\x93\x7b\xea\x0e\xca\xab\x39\x7d\x22\xf2\x95\x2e\x6a\x1a\x47\x7c\xc5\x46\xbc\xb8\x67\x74\xf0\xf9\x29\x44\x54\x96\xbb\x2d\xb2\xde\x69\xcd\x3d\x8a\xcb\x3f\xba\xd7\x7d\xf1\x6b\x18\x57\xd4\x8f\x11\xd9\x99\x48\xdf\xb9\xca\xf2\x6f\x39\x53\x39\xce\xaf\x3f\x48\x4f\x87\x7f\x0f\xb7\x44\x8f\x65\x8d\x27\x8c\x65\x59\x5f\xf8\x7a\x7a\xb8\xa4\xa5\xdf\xc1\x6d\xfa\x69\x7f\x43\x45\xb7\xf3\xc7\xb9\xe2\xee\xb9\xa2\x12\xe7\xc7\x8b\x0f\x5b\xf7\xe7\xd4\x38\x57\x2e\xbf\x6e\xfc\x3d\x25\xd6\xa5\x75\x8d\xbe\x36\x31\xfe\x90\x0b\x6e\xe3\x5e\x45\x74\x64\xb5\xab\xf0\x26\xb6\x34\x22\x8c\xc7\xb5\x75\x6b\xf1\x45\x6b\x50\xab\xab\xe4\x8e\xed\xf3\x16\xdf\xb3\x6e\xca\x88\xea\x6c\x19\x2f\x59\xd7\x50\xd4\xd1\xb4\x3f\xbc\x8e\xb8\x1e\x47\x19\xa5\x64\x7b\xc8\xb9\xa8\xa0\x65\x13\x8a\x01\xf4\xe4\x58\x8a\xe8\xfe\x00\xb0\x0e\x62\x31\x3d\xdd\x01\xe0\xb9\xc4\xb4\xef\x74\x2f\x40\xf8\x6d\x56\xcd\xcb\x7c\x00\x49\x19\x2c\x25\x57\xef\x03\x3c\x47\x3d\x16\xbe\x77\x06\xa0\xcc\xf8\x69\x3b\xab\x37\x40\xe5\x07\xde\x07\x7c\x3a\x30\xf9\x3a\x92\x5f\x55\x2c\x80\x5a\xd5\x74\x50\xec\xb1\xf6\x65\x8a\xe0\xdb\x20\x69\x2d\x5b\x6e\x22\xcf\xeb\x3f\x54\x1f\x46\x98\x63\xa5\xab\x66\xf5\x1e\x3d\x5f\x42\x9c\x7d\x41\xb0\x9c\x79\xdd\xb1\xea\x95\x35\xe6\x61\xd6\x6f\x39\x67\x12\x2b\x1d\xe5\xfc\xd5\x7f\xe2\x53\xa8\x79\xd5\xcd\xef\xf8\x71\x9c\xff\x8d\x0e\xe2\x8f\xe0\x09\x8c\xab\xef\x87\xf8\x69\xf3\x36\x9c\x87\xd9\xa7\x43\xe3\x98\x8a\x6b\x5e\x5e\x93\x5e\x43\x23\x05\x65\x5e\xd9\xb3\xe2\xbd\xe2\xc9\xef\x7c\x8b\xbe\xe3\x3b\xfd\x13\x12\xbc\xf2\x97\xa8\x4d\x9f\xc2\x95\x7d\xa8\xab\xc7\x5f\x5b\x85\x2e\x7b\x37\xaf\x15\xd7\xe4\x07\xb2\x78\xc5\x6d\x5a\xbc\x14\xf3\xe7\xf7\x1c\xdc\xaa\x2a\xf6\xf7\xbb\xe4\xc1\xb9\x73\x27\xff\xbd\xf7\x39\x77\x0c\xe2\x43\xd6\x8e\x97\x94\xdb\x77\x64\x6c\x3a\xb8\x75\x7b\xb1\xa1\x02\x52\xae\xba\x5d\x70\x97\x45\xe7\xc4\x0b\x01\x18\xd0\xb1\xde\xa5\xfb\x00\x60\x73\xfc\x7e\xdc\xc9\x57\x00\xbe\xd2\xcc\x89\xe7\xf6\x00\xc4\xb0\x30\xa2\xcf\x49\x01\xa4\x45\x30\x6b\x5c\xa6\x07\x28\xbe\xcb\x36\x7f\xe7\x1d\x40\x55\xe2\xa3\x8f\xf7\xe5\x00\x1a\x52\x38\x77\xb8\xcc\x80\xd0\x6a\xcb\x33\x20\xfc\x9e\xba\xd6\x7d\x54\xa8\x42\x5d\x9d\x62\xfb\x1e\x2d\x41\x63\x35\x4a\x9c\xea\x3d\x24\x17\x1c\xb4\x86\x75\xeb\x28\x52\xc7\xe7\x99\x6c\x4f\x37\x5f\x32\xbe\xd4\xb4\x7f\x85\xa3\xea\xb5\x43\xf6\x40\xf6\xd4\x62\xf1\xa1\x20\xc9\xe9\xea\xbe\xb9\x8c\xdf\xcb\x7e\x6c\x7e\x1d\x52\x8c\x79\xdb\x20\xb1\xd6\xd7\x3a\x13\x1e\xdb\xf5\xf9\x3b\xb2\x84\x31\x62\x62\x58\xea\x1b\x4d\x66\x75\x98\xda\x97\x8b\xa3\xa7\xe2\x49\x21\xd8\x19\xae\xfe\x7b\xd1\x91\x41\xc7\xbf\xef\x74\x56\x86\x6f\xf8\xe3\x97\x0c\xdf\xb2\x87\x70\x07\xf0\xad\xcc\xbd\x9e\x0d\x7c\xe2\xf7\x65\x3d\xb9\x4a\xc2\x37\x30\x60\x68\xd3\xec\xa5\xb8\xb7\xb7\x5f\xc3\xb6\x55\xd1\x1d\x0f\xb5\x80\xac\x9d\xce\xbc\x22\xb7\x8a\x00\x55\xc4\x68\xd6\x80\x0b\x7d\x00\x1f\x8a\x2f\xf5\xae\x33\xb7\xdf\x02\xfa\x7c\x62\x9c\x63\xaf\xaf\x2d\x86\x39\x26\x0b\xc0\x84\x96\x99\xee\xa4\x24\x80\xb3\x3e\x53\xcf\x69\x7a\x80\x40\xd9\xfb\xcf\xce\x78\x03\xc4\xaf\x31\xf2\x9f\x63\x07\xc8\x99\x64\x0a\xba\xac\x0d\xf0\xea\xc9\x83\xf3\x37\xee\x02\xbc\xf6\x66\x0b\xbe\xf7\x16\xa0\xdd\xfa\x59\x05\x87\x29\x6c\xf6\xf9\x72\x87\x8b\xcc\x01\xfd\x47\x55\x7e\x1f\x65\x4e\x4a\xe3\x04\x5e\x78\xc3\xac\x87\xc4\x3f\xde\x25\xa5\xe1\xff\x3b\xee\xc2\xa7\x9b\x8a\x36\x59\xdc\x3b\x2f\x46\x4a\x35\xc9\xaf\xbb\x97\x07\x47\xd6\x8d\x95\x06\x0a\xbf\xb8\xf5\x52\xdc\xef\x7e\x3f\xd8\x51\x57\x36\x9a\x47\x42\xba\xb6\x1d\x29\xa1\x2d\x62\x41\x96\x16\xcf\xe6\xeb\xb5\x78\x2e\xb7\xa5\x63\x32\xe9\x07\x63\xa6\xe2\xe3\x9f\xa4\x04\x4e\x98\x8e\x4e\x47\x08\x24\xa6\xcf\x64\xf7\xf9\x07\x47\x26\x30\x2d\x9c\xe9\x94\xf6\x17\x8a\x95\x5a\x4e\x69\x4c\xf5\x41\x46\xe1\xd7\x1e\xd4\x56\x7a\x9f\x8c\x9c\x58\xdf\xae\xe4\xf7\xbc\x1b\xf1\x63\x33\xb9\xac\xdc\x2d\x3a\xe2\xe6\x76\x78\x61\xa5\xb3\x42\x64\x05\xe2\x54\xae\x81\xe3\x5c\x84\x2f\x52\x28\x83\xe8\x60\x1e\x1e\x88\xd2\x48\x29\xb0\xeb\x0b\x33\x44\xfb\xc6\x57\xda\xa1\x82\x2f\x63\xd8\x62\xdc\x01\xcc\x59\xee\xf7\x9e\x58\x05\x70\xa3\x61\xe8\xa2\xdb\x0b\x10\x7a\xff\xae\xfe\x49\x0b\x80\x94\xe0\xdb\xfd\x27\x09\x00\x45\xf7\x6e\xe7\x9f\x4a\x03\xa8\x71\x63\xa8\xbc\xd4\x07\xd0\x5a\xc2\xfc\xee\xd6\x10\xc0\xfb\x59\xb6\x3e\xa6\x1c\x80\xb1\x2b\x1c\x1a\xfc\xfa\x90\x3f\xa3\xca\x2d\x29\x7d\x80\x2a\xb8\xf0\x50\x20\x5b\xff\x33\x69\x75\xdd\x5d\xf4\xb2\x87\x36\xce\x7e\x4b\x54\xaa\x2b\x0d\x83\xa8\x5a\xcb\x54\xb4\xaa\xb9\xbd\x72\x79\xfa\xa3\xde\x8b\x0f\xe5\x93\x59\x1f\x3e\x39\xe7\xcf\x76\x75\xbc\x2b\x5b\xcc\x9b\x43\xda\x56\x1f\xad\x39\x5f\xae\xb6\xed\x9a\x78\xf0\x5d\x6d\x47\xcf\x8f\xa1\xf0\xf8\xc6\x13\xc3\xda\x93\x19\x41\x32\x65\x4a\x93\xf2\xc3\xc7\xfd\xda\x0a\xfb\x66\x8b\xdf\xbf\xf2\x46\xe7\x70\xfc\x08\x6b\x73\xf7\xa8\xcb\xf6\x5c\xb6\x68\xac\x77\x67\x48\xc7\xac\x7e\xab\xe3\x73\x69\x4c\x15\xdd\x88\x2e\xd7\x73\xbe\x95\xbc\xba\x75\xae\x04\xe7\x98\x1d\x8f\xde\x91\x7e\x4e\xb2\x77\x8d\xdf\x40\x14\x64\x3f\xb3\xbb\x18\x9b\x88\xa2\x4d\x7d\x6b\xa3\x14\xb3\x88\x66\x4b\x58\xb6\x76\x8e\x16\xc0\xfc\x11\x7b\xd5\x32\x21\xa6\x14\x53\x14\x75\x11\xc0\xbc\x8b\xe1\xfa\x31\x2a\x80\x47\xc2\x2d\x47\xda\x7d\x00\x91\x7e\x37\x4f\xd3\xce\x02\x64\xe2\x6e\x5d\x3e\x31\x0a\xf0\xea\xd1\x1e\xa0\xa1\x01\x68\xcc\xbc\xdd\x70\xa6\x06\xa0\x8b\x81\x91\xeb\x6a\x0d\xc0\x28\x0f\xb3\xc2\x1d\x41\x80\x19\xc1\x27\xd6\xcf\xb8\x00\xb5\x2e\xc5\x31\x22\x5a\x45\xad\x44\xef\xe3\x1d\xd7\x7a\x46\x66\xc0\x57\x0b\x1f\x72\x4d\xc0\x3d\x46\xd2\x48\x89\x65\xec\x41\x7c\x5b\xfb\xa4\xf8\xb8\x3a\x76\x55\x6f\xd6\x57\x67\xb4\x8f\x76\xea\xd6\xe0\x8c\xe3\xcd\x99\xfd\x5d\xd8\xca\xeb\x99\xc7\x76\x1a\xb3\xe3\x5a\x9f\x35\xdd\x58\x55\x0d\xbb\x3e\x70\xb2\xb7\x65\x76\xc4\xa7\xed\xe3\x8d\x8f\x7c\x5f\x75\xdd\xed\x3b\x2a\x26\xf1\x83\x6f\xdd\x12\xeb\x84\xe7\x86\xbb\xfd\x9c\xd3\x2b\xde\x2f\xea\xb6\x78\x39\xa9\x95\xc8\xae\x14\xbe\x6e\x71\x50\x2f\xb4\x5e\x77\xaf\x44\xd8\xc5\xe4\x7f\xdc\x94\x2a\xc3\xdb\xba\xe5\xb8\x6c\x6b\x14\x7e\xb4\x89\xcd\x20\xed\x6c\xe7\x46\x5a\x33\xa6\x3f\x46\x0a\x66\x14\x59\xa2\xd2\xef\x23\x29\xa9\x9d\x16\x23\x29\x2d\xe8\xc7\x09\xcf\x2d\x9e\x24\x5d\xc6\x5c\x8d\xf1\x33\xeb\x4a\x8c\xc5\xa0\x23\x2c\x00\xac\xf7\xdf\x76\x39\xba\x0f\xc0\x27\xfe\x96\x2f\x6d\x02\x40\x6c\xde\x75\x0c\x2d\x27\x40\xde\xc9\xbd\x02\x7f\xc6\x5f\x63\x79\xf5\x3d\x6d\x29\x40\x27\x3d\xcd\x9b\x3f\x9f\x3f\x9d\xdd\xe3\xf7\x27\xa7\xee\x30\xe0\xae\x79\x00\x2c\xf7\xb3\xbe\x62\xbe\x0e\x40\x4a\x7b\x6a\xc8\x77\x87\xba\x48\x76\xe4\x59\x54\xcf\xf8\x2b\x0f\x93\xc8\x19\x49\x9b\x14\x8b\x5f\x79\x58\x72\x98\xe9\xd7\xb3\xed\x17\x1a\xbd\xfe\x49\xd2\xbe\xf6\xcb\xad\x92\xad\xfe\xd5\x98\x0f\xf3\xc2\x51\x0c\x7d\x16\xdd\x3b\xf3\x1b\xde\x62\x63\x6a\x1f\x2d\xbe\xde\x75\x2e\xfe\x92\x3e\x8e\x1b\x93\xb0\xf3\x1b\x25\x4c\x5f\xe8\x57\xb1\xb3\x7b\x67\xf9\x3d\xbf\x83\x6c\x23\xd1\xc2\xb4\x54\xdc\xe4\x68\x6d\x52\xaf\xb1\xba\x59\x2b\x6b\x95\x5f\xe9\xbd\xa1\x56\xce\x67\x25\x53\x1a\xb5\xa5\x5a\x5c\x6c\x69\xfb\xa2\x72\xbb\xa3\xe0\x99\xf9\x7c\x41\x10\x22\x37\xab\xcd\xc2\x24\x27\x16\x19\x9b\x2e\x6f\x6a\x99\xab\x87\x3e\x93\x30\x6b\x2a\x9e\x6d\x81\x4e\x8f\xcb\x37\xde\xc8\x3c\x88\x19\x8a\x58\x35\xde\x4c\x23\x62\xd9\xc3\xe6\x01\x1c\x62\x6e\x2a\x1e\xb9\x00\x10\x90\xbb\x97\xf3\xcf\xf8\xe2\xff\x63\x8c\x00\xbc\x48\xde\x65\xe3\xf3\x5d\xf6\xdd\xde\xcd\xc3\xa4\x14\x4d\xd0\x9f\x5c\xa3\xec\xfe\x1d\xd7\xc3\x40\x7b\x69\x14\x80\x5a\xff\x54\x87\x77\x88\xba\x45\xf6\xe3\xe9\x53\xbf\x4c\x9a\xc1\x8b\x0b\xc7\x78\x3c\xc4\xbe\x40\xf2\x4b\x31\xa7\xff\xb1\xd0\xb4\x0e\x2a\x8f\x2b\x79\x86\x93\x17\x55\x0c\xcf\xb4\x0d\xbc\x56\x9d\xc5\x39\xa0\xfa\xf7\xa5\x51\xbf\xb8\x84\xbb\x7f\xca\x0e\xd1\xfe\x74\xfc\x0d\xe2\xcb\x84\xf3\x85\x2f\xe4\xcf\xba\xa3\x1f\x6d\x5c\xa7\xcb\xbf\x29\x0d\xf8\x99\xd9\x7f\x3f\x32\x8b\xec\xf6\x37\x4d\xfd\xca\xb0\x50\xde\xa6\x6c\xd6\xd8\x9f\xb7\xfc\xf4\x4d\xbb\x59\x44\xbb\xd1\x5a\x60\xb5\xbd\x59\x79\xa3\xc2\x86\xf7\x2b\x0f\x13\x44\x2d\xed\x76\x58\x81\xb7\x49\x59\x95\xdc\x8e\x43\x9e\x9f\x49\xf0\xcb\x41\x44\x45\xd6\x63\xe3\xde\x62\x2d\xd4\xe3\x14\x35\xa3\xad\xa2\x6a\xf4\xa9\x84\x52\xa3\x9b\xf9\x15\x18\xfa\xe8\x41\x23\xda\x3c\x05\x4c\x45\xa4\x9a\xa1\x71\xd6\x53\x6c\x7f\x70\x35\x80\x33\xc7\x8d\xa3\x87\x2d\x00\x42\x08\xbb\x79\x48\x37\xa0\xd1\xfc\x93\xaf\xea\x76\xe3\x7c\x6b\xbd\xcb\x8f\x25\xbb\x9c\x8b\xa6\x69\xf9\x93\x98\x1f\xbb\xcf\x00\x77\xe2\x4e\xb3\xfc\x95\x87\x06\x32\x1b\xaf\x8d\xd6\x01\xec\x18\x5e\x49\xe4\xaa\x87\xf4\x0f\x53\x74\xb8\xf4\xa7\x38\xe7\x91\x6b\xdb\x55\x6a\x5a\x45\xa7\xda\xe4\xd6\xb4\x8d\x4c\xeb\x75\x5f\x06\x2c\x26\x3a\x5c\x68\x4f\x8c\x1b\x98\xfb\x12\xf4\xb5\x4f\xcf\xcf\x6b\x46\xf4\x15\xfb\xc0\x3b\x9b\xa9\x69\xe3\x6f\x7f\x0c\xac\x99\x9d\xf8\xae\x38\xc7\xd5\xfd\xbb\xd1\xd1\x45\xd9\x05\xc3\x36\x63\xfd\xe0\x05\xe2\x92\x56\x63\x98\xa1\xd0\xf8\xde\xd5\xc3\x75\x8c\x86\xcc\x7d\xe3\x1b\xa2\xaf\x34\x0d\x6f\x77\xbe\xd9\x7a\xfa\x82\x6c\xe0\xd1\xf2\x65\x9b\xf8\xdc\xdf\x60\xbd\xe1\x06\x42\x36\xfb\x8c\xfe\x62\xed\x0a\xb2\x25\xb5\xd6\x40\xbe\x42\x00\xd5\x94\x38\xa2\xcf\x5c\x6e\x89\x4e\x88\x3b\xa3\xef\x5b\x6a\x81\x79\x14\x2d\xa6\x67\xf4\xe2\x0f\xac\x55\x28\x9f\x9e\x69\xc1\x32\x76\x30\x58\x16\xc0\xb5\x65\x2f\xf7\x9f\xf1\x44\x6c\xee\xc6\x95\x2b\x4b\xf3\xc7\x9f\xac\xfe\x59\x07\x5d\x2c\xbb\xfc\xdc\xbb\xcb\x95\xd0\x5f\xf1\xff\x5b\x1e\xf0\xaa\xa4\x61\xbe\x78\xdd\x95\x65\x1a\x82\x99\xc8\xb2\x93\xc0\x78\x24\xc6\x54\xce\x22\xda\xe0\x5d\x3f\x52\x41\xbd\x2e\x4b\xb8\xf6\xf0\xa6\x89\x31\xb5\xbc\x27\x8f\x7f\xfd\x8a\xfd\xa9\xba\xb4\xc8\x37\x4b\xf1\xfe\x07\xdb\x84\xbc\x23\x7e\x38\xe7\xab\x77\x6e\x5b\xde\xff\xae\xfb\xb9\xae\x5b\xc0\x68\xef\xa2\xea\x82\x75\x9b\xa2\x1e\xff\x0a\xd3\x92\x55\x23\xbb\xf6\x9d\xb5\xd8\x95\x9d\x5a\x53\xad\xc8\x25\xa5\xb5\xb2\x4a\x49\xdd\xa7\x9f\x8b\x37\xf8\x5e\x0e\xea\xec\x0c\xee\xd9\xda\x2e\x7c\xac\x6b\xd3\xe5\xb2\x93\x9d\x83\xd4\x59\x6c\xff\x88\xf8\x9c\x91\xa5\x17\xd2\x28\x8f\x34\x4f\x6b\xd7\xb1\x7f\xfd\x11\x2d\x10\xff\x87\xce\xf1\x5a\x4d\x0c\x7d\xf4\x6f\x3a\x05\x15\x33\x98\xea\x88\x2c\xed\xeb\x2f\xcd\x71\x27\x02\x9d\xb5\x49\x25\x4d\xb8\xcb\x81\x6a\x00\xbb\xef\x80\x02\x88\x7b\xbf\xcb\x22\xa1\xff\x3e\x0f\x1f\x2c\x76\x39\xb3\xb3\x4b\xcc\x1c\x8d\xf6\xff\xe4\x21\xf0\xf4\x25\xd2\x0e\x35\xe6\xe9\x17\xfe\xee\x95\x19\xb2\x29\x5f\xbc\xe6\x95\x49\x67\xc2\xa2\x98\x8c\x7d\x7d\xaf\x11\xce\x5a\x7e\x4f\xa0\xd5\xeb\x2d\x74\x82\xe6\xc5\x44\xc7\xe2\xcb\x08\x79\x93\xdf\x9e\x27\xa4\x1e\xd9\xfe\xc3\xce\xb7\xf4\x6b\x70\xdc\xba\xa6\xaf\x42\x5d\xa0\xeb\xe2\x1a\x5d\x0e\xa9\x41\xc4\xa2\x71\xc5\xb2\xeb\x6b\xd3\x5e\x5d\xe1\x95\xad\x65\xf6\x06\x27\xad\xd5\xb5\xd6\xd5\x1b\x35\x1b\x1a\x86\x1b\xb5\xeb\x0f\xcb\xc3\xd4\x0a\xb7\x8e\x6d\x14\x94\xda\x6b\x3c\x59\x38\xbe\x59\xfb\x62\x49\x23\x66\xc2\x69\x87\x36\x77\x4e\xf3\xce\x50\x23\xc2\x37\xf3\x8e\x66\x61\xdf\x25\xa4\x62\x1a\x97\x66\x5f\x97\x10\xea\x59\xd2\x88\xe6\xbd\x56\x61\x74\x5f\x0c\x93\xe6\xcd\xc6\x02\x4c\x51\x84\xa0\x46\xda\xeb\x6b\xd8\xc8\xe0\x2e\x8d\xb4\x9a\x3c\xdc\xe5\x80\x21\x4d\x93\xca\xab\x38\xf1\x80\x7d\x00\x81\xc3\xbb\xf1\xec\xfe\x62\x07\xe0\x95\xeb\x2e\x3b\xb4\x77\xf9\x29\xfe\xff\x57\x07\x7f\x92\x7a\x1f\x80\x89\xfe\xc6\xa1\xcd\x76\x6a\x0f\xfb\x1c\x4f\xd4\x34\x81\x6c\xce\xbf\xaa\xd9\xfe\xc1\x8e\xc4\x2f\x66\x6b\xba\xf1\xb6\x96\x70\x5a\x5e\xc1\xbd\xff\x15\x13\x36\x4e\xb3\x3f\xe2\x6e\x0e\x03\x0a\x69\x8c\x4e\xf5\x88\x59\x43\xb8\xdb\x91\x9f\x0f\xfa\x87\x6f\xe7\x7a\xf4\x94\x68\x3b\xa7\x6e\x29\xa4\x90\x5e\x5d\x31\x4f\xd9\xdc\xf7\xc6\xa7\x02\xa1\xa3\xb7\xa1\x30\x1d\x54\x29\xaa\x46\xdc\x1c\xd8\xd0\x2a\xe3\x57\x15\xdc\xbe\xb1\xd9\x53\x44\x54\x39\xb2\x43\xb7\xd5\x9d\xdf\xae\x5c\xb8\xfd\x76\x9b\xfb\x39\xbb\xea\xe1\xef\x26\x3b\xe5\xd9\x7b\x55\x1e\x4f\xd6\x22\xbf\x24\x1f\x55\x59\x1e\x3d\x8d\x5a\x89\xdf\xa7\x2a\x3f\x90\x82\xce\x88\x61\x52\x25\x77\x4f\x60\x34\x22\x69\xd4\x24\xda\x63\xb0\xc7\x42\x1b\xd5\xee\xb7\xa8\x62\x8b\x82\x06\x54\x87\xdf\x7c\xc6\x05\xfb\x9d\x57\x21\xbc\x9e\xc2\xb3\x79\x5d\x02\xd8\x5d\x66\x00\x90\x2b\xb3\xcb\x1a\xd4\x2e\xfb\x9f\xec\x72\xfa\x67\x9e\x70\x74\xff\x15\x7f\xca\x2e\x77\x1e\x03\x30\xf1\xdd\x3a\x3f\x1b\x4b\x1d\x7c\xaa\xc9\x23\xf5\x51\x92\x22\xc0\xcf\xaf\x18\xd0\xde\x47\xea\x16\x0f\x31\x3a\x5f\x1d\x4b\x3c\xa0\x90\xef\xd8\x5d\x78\x1e\xcf\xa2\x59\xee\xff\x30\xa9\x19\x2b\x62\x72\x38\xea\x7d\x68\x04\xba\xd9\x56\x24\xe9\xa5\x97\x0a\xd2\xdb\xd3\x32\x47\xc0\xe1\x0c\x62\x39\xc1\x34\x8f\xdf\xcc\x09\x71\xe8\x55\x5e\x7e\x91\xee\xcd\xed\x91\x81\x9a\x22\x37\x15\xf4\x76\xd3\x86\x74\xe1\x69\x25\x1b\x84\xd2\xce\xb9\x1c\x26\x45\x73\xe4\xe5\x9d\xcd\xcc\xcb\x0a\x9f\x91\xd1\x08\xc3\x74\x65\x05\x0e\x84\x12\x92\x3e\xc5\x44\x61\x64\xd9\x13\x25\x96\xa0\xab\xd8\x33\x7d\x1d\xcd\x1d\x33\xa0\x24\xf2\xc9\x12\x23\x1e\xa1\xa7\xb4\x35\x34\x85\x69\x09\x73\x55\xac\xff\x10\x83\x45\x06\x3c\x54\xba\xde\x9d\x8c\x8b\xf2\xbd\xa2\xc4\xd1\x3e\x82\xbf\xe9\x39\xa9\xd8\xd6\x9a\x8e\x2f\x72\xeb\xf8\xfb\x3c\xfc\xba\x1f\x7e\xf5\xc5\xb1\xee\x5d\xae\xd2\xfe\x5b\x1d\xa0\xaf\x02\x5c\xcc\xfa\x43\x6c\x41\x11\x80\xc9\xff\xf6\xb3\x4f\x55\xd4\xa9\xa7\x1b\xdc\x25\x5d\x38\x4a\x27\xff\x13\x99\x07\xf5\x53\x64\x1b\x89\x47\x3a\x0e\xc5\x63\xa4\xe3\x8a\x47\xad\xee\x66\xf4\x12\x92\xb5\x4e\xb8\x99\xc7\x1e\xc2\x5b\x1a\xed\xf5\xab\x09\x14\xc1\x96\x5a\x17\x44\xb2\xb9\x3e\xc6\xa4\xb9\x17\xc5\xf5\xd8\xf4\xa3\xc7\x62\xe8\x93\x04\x4d\xd4\xd0\xbc\x85\xaf\x52\x38\x75\x36\x90\xeb\x6d\xa5\x19\xe5\x2a\xf5\xc8\xd2\x19\xeb\x8c\x43\xf2\xd3\x28\x09\x24\x63\x0a\x97\xbc\x28\xaa\x09\x99\x9f\x24\x2d\xcb\x8a\x11\x42\x0b\x46\x9f\x96\xfd\x8c\x1e\x40\xbd\x8b\xd5\x95\xfd\x03\x7d\x1f\x1d\x19\x39\x2e\x3b\xbb\x76\x06\xf3\x28\x5c\x59\x2e\x62\x4e\x04\x7b\x30\xb8\x43\x2e\xe7\xeb\x1e\xec\x96\xbf\xbe\x9c\xdb\x98\x35\xae\xde\xfb\xa9\x1c\x66\x10\x87\xbf\xe8\xc9\x20\x67\xd0\x77\x0c\x8f\x74\x39\x20\xa7\xda\xc3\x4f\x10\x76\xa4\x02\xa4\x9b\xec\xc6\x57\xbd\xbd\xcb\xde\xc0\x5d\xee\xbe\x59\x0f\x80\xb8\xf9\xcf\xf8\xb1\x2c\xbb\x9c\x3f\xb2\xcb\x89\x44\x20\x3c\xb8\x45\x7f\xfd\xfd\x02\xb0\x3d\xdd\xfb\x54\xb7\xe9\x04\x05\x2f\xe0\x20\x75\xab\x62\x0f\x39\x56\x12\xa7\xfd\x22\x87\x42\xfa\xac\x98\x65\xdc\x9b\x50\x45\xc4\x69\x6a\xda\x5c\x09\x95\x20\x44\x1b\x95\xba\xeb\xf8\x3c\xc5\xbf\xb1\xd4\xf4\xbd\xe3\x38\x8e\x7b\xe7\x62\x1f\xcc\x60\xb5\x82\xe3\x0a\xbd\x19\x46\x6f\x34\x83\x75\xce\xee\x8c\x1c\xd2\x61\xc4\xde\xae\x7e\x1e\x95\xa9\x9a\x85\x99\xed\xcd\x8e\xea\x56\x38\x80\x91\x5e\x98\x8c\xde\x91\x95\xc6\x3c\x40\x33\x45\x7b\x48\xcb\x63\xd3\x30\x2f\x43\xe8\xa5\x36\xb0\x53\x18\x54\x50\x99\xe4\x18\x2e\x1d\xdb\xec\x67\x21\x75\x04\xcb\x83\xad\xf6\x6b\x96\x6a\x5b\x9f\xc4\xb1\xfb\xb8\x4a\x2d\x2f\xe4\xe2\x10\x1e\xe5\xd2\xec\x53\xb1\x78\x37\xd7\x09\x69\xa9\x89\x51\xfc\x0f\x67\x7d\xe9\xb4\x51\x75\x82\x98\xe3\x45\xa9\xae\xa1\x3d\xc4\xc3\xd6\x93\x7f\xf7\xc5\xff\xad\x83\x2d\x96\x7f\xc6\x4f\xb1\xd9\xe5\x0f\xe3\x5d\x7e\xc9\x05\xb8\x98\x72\xf0\x4e\x67\x34\x00\x8d\x16\x0d\xcd\x5b\x27\x08\x78\xd2\xc4\x56\x5d\x45\x4f\x55\x12\xa8\x13\x6d\x2e\xd8\xa6\x18\x48\xda\x2b\x9f\x4a\xae\x27\x47\x2b\x71\xe8\x3e\x88\xe2\x27\x7d\xd5\x58\x36\x89\xf4\x6f\x21\x59\xe9\x73\x58\xb4\xb8\x90\x89\x57\x2d\x8f\x3a\xdb\xd8\x0c\x11\xde\x3a\x6b\xb8\x69\x9b\xff\xc0\xe3\x83\xae\x7b\xe7\x1a\xe4\xe1\xbf\x24\x97\xfa\xd0\x69\x9b\xe3\x55\x5e\x94\xfb\x55\xab\x58\xe3\x8a\x3a\x14\x02\xdd\x15\xee\xe2\x1e\x8c\x17\x07\x2d\x48\x6f\xe0\xf4\xd6\x4e\x06\x78\x49\x8e\xe3\xd2\xb0\x4d\x7e\x76\x92\x8e\xb8\x2f\x58\xaa\xcf\x8e\x84\x1a\x3e\x0a\xf7\xd6\x23\x52\x9c\x97\xf0\x04\xef\xe0\x72\x45\x4c\x85\xd0\x42\xd8\xe3\x60\x29\x71\x64\xa7\x00\x1f\xea\x72\x49\x3c\x65\xa5\x90\xa0\x6f\xb7\x2c\xf1\xdb\xf7\x25\x42\x92\xed\x37\xf1\xd3\x53\xe5\x44\x67\xf3\x72\xf1\x94\x09\x41\x62\xae\x59\x13\x40\xe5\xa9\x9f\x75\xf0\x33\xfe\xef\x65\xff\x76\x0e\xd6\xd0\x3f\xe3\x9f\xdd\x65\x4f\xc9\x2e\xdb\x8e\x02\x30\x07\xdd\x52\xa8\xc1\x41\x34\xfb\x27\xb6\x6b\xc5\x55\xd4\x08\x41\x0f\xe1\x53\x99\xcf\xa8\xc7\x25\xac\xa4\x46\xa2\xbf\x53\x7c\x15\xe2\x94\xc6\x82\x96\xc9\x89\x1a\x64\xdd\x34\x4f\x7f\xd2\xa6\x01\x93\xc9\x63\x07\x35\x52\x8d\x69\xa3\x99\x8a\x65\x16\xe9\x9a\xc3\x41\x6b\x37\x53\x61\x62\xb0\x6f\x84\x43\x80\xfe\x38\x61\x3d\x4e\xc1\x65\x40\xeb\x2a\x21\xf9\x79\x82\x5b\x8e\x0a\x96\xa0\x5d\xd3\xe0\x2e\x2f\xef\x45\xd0\xef\x11\x73\x3b\x2c\xa3\x81\xcf\xfb\xf6\xca\xb3\x55\xf2\x26\x7e\x66\x63\xd2\xfd\xac\xd8\x77\x82\x35\xfe\xa5\xd3\x8b\x5f\x71\x8b\x56\x11\x2f\x10\x0c\x6d\xbb\x45\x35\x88\xe2\x84\x24\x1b\x73\x91\x63\x44\x36\xa2\x82\x19\x51\xe4\x0a\x6e\x2f\xd1\xdc\xcc\x4d\xc4\x7d\xfb\x10\x31\xd1\x34\x53\x44\x76\x29\x80\x74\xcc\x88\x51\xc4\xf9\xfb\x1f\xa4\x67\x86\x87\xfe\xae\x83\xcf\x51\x3f\xef\x45\xed\x7f\xc6\x8f\x70\xda\xe5\xf4\xf5\x5d\xf6\xff\xec\x8f\x8d\x9d\xbb\xac\x23\x00\x30\x9f\xbb\x71\xa2\xc4\x02\xbe\x3c\xfe\xca\x18\x9f\xad\x07\x4f\xf9\x2c\x9f\xad\xc6\x4f\x53\xdb\xc4\xec\x05\x56\xc2\x2e\x53\x8f\xc9\x4b\x48\x97\xfb\x3e\xa5\xfc\xae\x29\xa5\xb1\xe0\xca\x44\x0e\xd5\x8f\xd4\x13\xb4\x8e\x22\x0b\x9b\xbe\x32\xe8\x33\xcb\x21\xad\xdb\x9b\x9a\x18\x1a\x47\x90\x72\x3d\xac\xcc\x79\x74\xb7\x48\x6c\x11\x1f\xac\xc6\x34\x70\x44\x74\x7a\x84\x8d\xbd\x32\x9a\xb8\x56\xa2\x62\x73\x59\x7e\x95\x98\xdc\x78\xde\x76\x5a\x26\x88\x78\x7c\x80\xdf\xe1\x8d\x44\x3b\x51\xef\x1b\xca\x56\x55\xf4\x1b\x31\x66\x4b\xc6\x6a\x4e\x94\x96\x68\x4f\x68\xb7\x66\x15\xf6\x23\x71\x12\x53\x4c\x16\x84\x66\x49\xa1\xc4\x65\x23\x2d\x21\x35\x52\x37\x89\xde\x80\x5f\xd0\x97\x7c\x8b\x14\xad\xb3\x24\x80\x21\xcc\x93\xc6\xb5\x42\x04\x91\x68\x77\x52\xa8\xae\x9d\xa0\xf9\xba\x23\x79\xaf\x66\x10\xc0\xc0\xcf\x7b\x71\xe9\xbf\xfa\x00\xe1\xe7\x2f\x79\xe7\x3f\xee\x72\x78\x6d\x97\x2d\xc3\xbb\xac\xe7\x06\xb8\xd6\x7f\xfc\x60\xce\x2a\x00\x8d\x2e\x0d\x4d\x1e\x17\x20\x1e\x7f\xb8\x77\x3d\xd9\x0d\x1c\xf9\x7e\x7b\x9c\x17\x59\x0a\x97\x44\x0f\x72\x75\xf9\x0d\x52\xe3\xe5\x84\x44\x0c\xdc\xa4\x28\x2d\x1a\xf7\x14\xc4\xec\x18\x29\x2e\xba\x43\xca\x8d\x66\xc3\x64\x8c\x49\xaa\xa6\xa5\xc9\x04\x39\xc1\xa6\x54\x77\xd6\x60\x90\xec\xe6\x76\x55\xff\xa4\xce\x2d\xb2\x7e\x60\xb2\x3e\x41\x83\x91\xf4\x29\x91\xdf\x04\xa7\xbc\x4a\x7a\x9d\xa7\x6a\x1a\x23\xef\x47\x6a\xa8\xe0\x32\xf9\x24\x9d\x43\x12\xeb\xbc\x6e\x1e\x21\xf1\x99\x14\xfa\xc1\xd7\xa4\x57\xec\x3e\x49\x6e\x86\xde\x34\x4a\xd8\x99\x54\xb2\xf5\xd8\xb0\x45\x68\x80\x94\x48\x34\x31\xc4\x09\x66\x93\xcf\x92\xfc\x74\xb5\x05\x62\xc9\x21\x24\xac\x26\xbf\xc0\x09\x72\x03\x99\x51\x5d\x87\x7f\x9d\xdc\x43\xe6\x50\x1b\xe0\xdb\xa4\xdc\x24\xe7\x28\x1f\xe7\xd3\x24\x5a\x90\x27\x14\xbe\x03\x4c\x05\xfc\xdb\x39\x58\xb6\xdf\xe5\xc8\xe6\x2e\x3b\x7c\x77\x59\x73\x6d\x97\xf9\x3f\xfb\x65\x6e\x10\x00\x83\xf1\x79\xa7\x94\x70\x80\x87\x2d\x37\x3d\xa2\xf5\xa1\x8a\xf7\x00\x4b\x58\x90\x2a\x68\x88\xbc\x7e\xfa\xcc\x7d\x19\xce\x49\xb7\x73\xdb\x3b\xb4\x52\xf5\x54\xbf\x8b\x1b\x5b\x99\x50\xe9\xb5\xca\xa4\x3c\x4d\xb4\x28\x21\x46\x3a\x4a\xaf\x8c\xb4\x28\x22\x96\x49\xaa\x24\x3d\x76\x0a\xbd\xf3\x90\x7a\x8e\x66\x37\xe5\x91\xaf\x88\xfa\x35\xb5\x6c\x72\x55\x74\x91\x4e\xaa\xd2\x3d\xf2\x9b\x74\x07\xed\x25\xb9\x42\x72\xf4\x8b\x00\xdd\xd3\xd2\x29\x64\xeb\x9a\x1d\xdd\x7a\x89\x7d\x64\xcf\xf6\x2a\x1d\x35\xb1\x64\xf2\xc5\xa1\x63\xfa\xa2\x22\xa7\xc8\x77\xa6\x7e\xe8\xed\x17\x44\x91\x25\x36\x4f\x69\xa3\x7e\xc5\xcf\x1f\x44\xde\x20\x1b\xaa\x8a\xf2\x49\x51\x34\xc8\x5f\x15\xda\x78\x27\x28\xfe\x94\x7d\xf2\xa7\x78\xda\x28\x5f\x29\xfa\xd2\x4c\xdc\x31\x54\x56\x4a\x9b\xf8\x71\x80\xed\x81\x7f\xc6\xbf\xf1\xec\xe7\x3d\x90\xb0\xcb\xee\x9f\x1b\xcd\xeb\x43\x76\xf9\x82\x6b\x97\xa9\x3f\xfb\x45\x5a\x3a\x00\x93\xe5\xc5\x85\x58\x71\x80\x27\x62\xb7\x3e\x84\x98\xc2\x22\xb7\x06\xa3\x80\xf7\x43\x28\x12\xc2\xb1\xae\x38\x77\xc1\x7d\x19\x77\x4e\xbc\x35\x3f\x75\x56\x39\x96\x5f\xca\xec\x04\x35\x45\x63\x53\x78\xd1\xa0\x81\xaa\xa4\x4b\x15\xcf\xd1\x7b\x4e\x3d\x63\x6a\x2e\x6d\xaf\xf5\x8e\x7a\xd2\x76\x53\x9a\xac\x31\x42\x29\xf0\x54\x54\x9c\x53\x9e\xa1\xcc\x06\x16\xc9\x4d\x2a\x7c\xa7\xd8\x25\xbc\x51\x26\xca\xfd\x41\x51\xcd\xaa\x54\x79\x27\xfd\x96\xf2\xe8\x85\xbe\xea\x8e\x78\x1c\xe5\x59\x7d\xb4\xca\x8a\x08\x81\xf2\xb4\x83\x43\x45\x45\xd8\x92\x8c\x1f\xbe\xaa\x66\x28\xc8\x46\x39\xf3\xad\x51\xc5\x93\x5f\x95\xc2\xbd\xda\xac\x24\xca\xf7\x86\xc2\x89\x9b\x54\x3a\xc5\xdb\x42\x89\x20\x27\xca\xd5\xf3\x84\x50\xd6\x28\x8e\x52\xa6\xdc\x75\xd4\x3b\x94\x5a\xf1\x24\xae\x61\xaa\x11\x05\x23\x92\x08\xc0\x7e\x80\x77\xfc\xd8\x87\x7f\x78\x10\x17\x05\xee\x9d\x77\x01\x50\xb4\x15\xfe\x7c\x4d\x09\x40\xfb\xb8\xf8\xdd\xbb\x53\x00\xfa\x9d\x32\xf9\x2c\xd5\x00\x26\xfb\xe4\x87\xd9\xfd\x01\x6f\xde\xac\xda\x2b\xf8\x00\x8a\xcc\xc6\xb4\xaa\x24\x1a\xa9\xd3\x26\x3c\xc6\x5d\xea\x67\xa8\x97\x4c\xd3\xad\x97\x8c\xcf\x52\xac\x8d\x39\x3d\xa2\x6c\x0c\xc9\xfd\x06\x59\x21\xce\xce\x55\x24\xd0\xcd\x4e\x7a\xec\xad\x4d\x92\xd4\xbe\x9a\xbb\x14\x28\x4c\xda\xaf\x3e\x59\x36\x1e\x7c\x9d\x18\xa9\x1a\x59\x7f\x36\xcc\x91\x80\x54\x3e\xd1\xf1\x20\x8a\x87\xe0\xa2\xa0\x37\xf4\x7b\xcc\x32\x1e\x25\xab\x35\xfd\x26\x5e\x1f\x7f\x4a\xea\xe5\x4e\x72\x72\x2a\xe1\x9a\xc4\x22\x2a\x34\xf6\x12\xa1\x4b\x1c\x89\xb6\x8b\x98\xfe\xe5\x7f\x90\x4e\x89\xce\x63\xe5\xfd\xb9\x76\x8c\xc5\x3d\xb0\x52\x01\x4c\x4b\xbd\x12\x81\xd8\x11\x3f\xda\x6f\x23\x92\x68\x9c\xba\xf7\xd4\xe7\x6b\x52\xfb\xf0\x67\xdd\x07\x86\xae\xca\xb8\xe1\xba\xbc\xec\x7b\xff\x90\xc9\xc4\x47\xbb\xe2\xba\x8e\xc8\x44\x12\x2e\x38\xc5\xb4\xc6\xc8\x59\xe3\x77\x5c\xae\x00\xb0\x7b\x70\xb2\xd1\x92\x00\xf8\x7b\xb9\xdf\x9e\x7a\x00\x20\x3e\xc8\x1b\x77\x76\x14\x40\x45\x4f\xe8\xfc\x55\x34\x80\xce\x71\x71\x46\x7a\x4d\x00\xe3\x04\xe9\x58\xd6\x60\x00\xb3\x26\xb9\x3c\xf6\x14\x00\xcb\xf7\x2a\x57\x04\x68\x21\xce\xfa\x8c\xe6\x07\xa9\x45\x6a\x9b\xa5\x8d\x11\x8b\x66\x10\xf5\xb8\x79\x85\x85\x98\xb1\x09\x85\xd5\xd4\xd0\x4d\xda\x0e\x4d\xf6\x32\xba\x1e\x5c\xe0\xd6\x48\xb2\x35\x78\x1e\x7f\x27\x40\x9a\xf8\x49\x67\x25\xc7\x23\x84\x4c\x7c\xa0\x65\x50\x6a\x14\xe9\x4d\x68\x57\xd7\xad\xeb\x8c\xb9\x42\x60\x53\xb9\xd1\x69\x10\xcf\x82\x17\x52\x74\x1a\x51\x4e\xa1\xff\xcb\x87\x49\x96\xbe\x88\x50\x4a\x53\xfb\xcb\x87\xb9\xfe\x9f\x7c\x9c\x27\x4c\x88\x8f\xa3\xa3\x22\x34\x50\x49\xe2\x8b\x18\xd7\x10\x99\x55\x2e\xc9\x04\x4c\x56\x88\xe1\xf4\x84\xf4\x4d\xec\xb3\xa0\x63\x13\x1e\x32\x47\xb1\x19\x01\x3e\xbf\x3c\x98\x5e\x4f\x39\x47\x9c\xa7\x4f\xe6\xbb\x72\xf9\xc3\xb8\x1f\x5e\xde\xad\x4f\x15\xb4\xf0\x07\xbd\xf6\x34\x26\xc8\xa7\x10\x4e\x39\x87\xfe\x9d\x07\xc1\x48\x6e\xc1\x53\x46\x00\x32\x9c\x7c\x84\x0b\x4a\x00\xea\x1d\x02\xdc\x57\x93\x01\x0c\xe8\x44\x7c\xef\x2a\x03\x58\xdc\x96\x7c\xce\x9a\x06\x60\x25\x2d\x17\xf2\xac\x15\xc0\x36\x44\xf9\xb8\xe0\x1d\xf0\xb4\x5b\xd7\xa4\x95\x41\x52\xfb\x6c\xb9\x0c\x4e\x69\xb2\x53\xca\x2d\x23\x2c\xf7\x5b\x58\x91\x67\x2d\x78\x9d\x15\x9d\x44\xc9\x34\xa6\x95\xfe\xaf\xbc\xf9\x48\x37\x0d\x71\x71\xc7\x83\xde\x11\x19\xf4\x4f\x66\x3f\x89\x44\x13\x8a\xb5\xfd\x4b\x13\x63\x1f\xe0\xbb\x34\x05\xeb\x70\x49\x5e\x78\x63\xd5\xf4\x4e\x9e\x94\x9b\xbf\x7c\x18\xec\xbc\xdc\xd2\x02\x7f\xd6\x97\x5f\x3e\x0c\xee\xa3\x54\x1f\xa2\x38\xf5\x18\x3e\x44\xb2\x07\x59\x96\xf0\xfd\x97\x0f\xb3\x99\x2c\xb9\x84\x4e\x89\xbc\xb8\x50\x28\x55\x8d\xc9\x0e\x19\xfe\x4a\x92\x79\x87\xa9\x08\x7d\x36\xf2\x42\xee\x04\xf6\x49\xf0\xc9\xfe\x0f\x72\x44\xec\x87\x00\xf3\x1e\x46\xb9\x4d\x5c\xa2\x0f\x57\xeb\x19\xa5\xdf\x71\x8c\xfe\xec\x6f\xca\x14\xf5\xf1\xba\x1e\x62\xf5\xf7\x15\xed\xf1\x53\xae\xca\x00\x9c\xe9\x1c\x83\xc7\xc7\x01\x84\x1b\xb8\x16\x4e\xf5\x00\xc8\x75\xf1\x60\xcf\xe7\x03\xe8\x9c\xe5\xef\xb8\x36\x00\x60\x92\x2d\x72\xeb\xde\x7e\x00\x8b\x06\x71\x35\xe6\x4d\x00\x5b\x75\xa9\x0f\x4f\xd8\x00\x1c\xc7\x14\x3a\x04\x1c\x21\xc0\x25\x54\xcd\x56\x66\x9a\x3a\xe8\x30\xa3\x27\xae\xc9\x47\xe9\xb6\x4d\x34\x73\x35\x8f\x25\x1b\xdb\x64\xdb\x25\xbb\x7d\x21\xe9\x5b\xa8\xf9\x19\x04\x14\x11\xef\x9a\x7e\x8f\x7e\x16\xf5\x8c\xf0\xd4\xb0\x27\x73\x27\xc1\x00\xef\xa4\xe7\x55\xc2\x99\x32\x88\x5b\xd4\x7a\x5f\xcf\x96\x9e\x84\xfb\x43\x5d\xf6\xdd\x52\x76\x01\xd6\x40\x99\xf7\x53\x4b\xde\x05\xcc\x6b\xb9\x8f\xab\xe9\xf9\xbc\x7f\xf9\x1f\x27\xa4\xc7\x76\xd2\x33\xef\xe0\xda\xa4\xe6\x10\x71\xa9\xd6\x68\x36\x29\x39\xe4\x4e\xc2\xf1\xc5\x76\x99\x9b\xe8\xbd\x31\x36\x53\x7e\x72\x81\xa8\x91\xb8\xbd\xa3\x77\x14\x52\xd0\x72\x31\x41\x1f\x86\x15\xd9\x30\x77\x23\xd0\xdd\x1d\x0a\x5b\x58\xd7\xa0\xf4\xd6\x08\x65\x71\xac\x56\x70\xd5\x9b\x14\xe5\x15\xdc\xd9\x80\xa3\x75\x5e\x2a\x34\xb8\x36\x1f\xaf\xca\x4b\xaa\xfb\xf0\xb7\xbc\x2c\x00\x9e\x2d\x3d\x5b\x3e\xb6\x01\x20\x59\xcc\xd1\x71\xfa\x28\x80\xaa\x38\x97\xd0\xf9\x0c\x00\xfd\x26\xbe\x82\xeb\x97\x00\x4c\xae\xf1\x8f\xde\x3a\x0a\x60\x2b\x22\xe6\xc9\xc2\x0a\xe0\x72\x48\x62\x8b\xdd\x04\xc0\xfd\xb0\x1c\x1d\x7f\x0a\x14\x79\x34\x29\x4b\x48\x29\x50\x3f\xb8\x61\xb5\x73\x34\x5b\x29\x59\x8e\x2c\xa6\xa1\x96\x9d\xe4\xdb\x76\x68\xdb\x53\x9e\x5c\xc4\x01\xeb\x73\x3e\x6a\xa1\x22\x84\x5a\x73\xa5\xa8\xe0\x58\x4d\x7c\xa9\xb1\x45\xc6\x4c\xf2\x37\x9c\xbf\x81\x4c\x09\x7d\xd6\x5d\x6c\xa1\xce\x42\x3d\x7f\xde\x23\x0c\x46\xa3\xa8\xab\x2b\x7f\x15\x73\x48\x79\xfd\x4b\xf2\x0b\x26\xb4\xae\xfc\x9b\xf5\xed\x92\x63\xff\x3f\x1f\x66\x83\x5b\x76\x2f\x62\x20\x55\x63\x5a\x57\x81\x0f\x79\x21\x95\x73\xbc\x4a\x61\x12\xa5\x9a\x90\x33\xc8\xa5\xd8\x8f\xb6\x8f\x11\xe9\x21\x28\x2b\xa1\x4b\xa2\x6b\x5b\xbb\x95\xd7\x31\xdb\xa1\x9b\x0d\x64\xd5\x24\xac\x60\x48\x59\x9d\xa8\xda\x3c\x96\x27\x74\x5f\x25\x9d\xba\x30\x6e\x7f\x20\x6d\x89\x94\xfa\x12\x6e\xcb\x87\x1e\x80\x53\xea\xa9\xef\xb1\xc8\xbf\x3d\x08\xd5\x3c\x8e\xb4\x73\x06\xff\xf0\x20\xbe\xf2\xc1\x6d\x0f\x00\x87\x45\x11\xcf\x07\xba\x00\x6e\xaf\xc4\xef\x3d\xe1\x01\xf0\x93\x92\xe1\x17\xd4\x85\x08\x7f\x13\xc5\x51\x99\x71\x6a\xb3\x8f\xb4\x66\xaf\xf6\x3e\x4a\x88\xfb\x65\xe3\x0b\xd6\x67\xc8\x0c\x8e\xef\xad\x23\x3d\x1f\x13\x55\x6d\xfb\x3c\x63\x23\x8a\xf1\x3d\x56\x43\xe1\xaf\x93\x15\x70\x38\xd3\xc1\xb4\xfc\x74\x2c\xf6\xb3\x61\x75\xf1\xab\xdc\x17\x98\xd7\x7a\x6d\x75\xdc\x85\x75\xe8\x78\xcd\xc9\xf7\xb4\xa5\x7b\x50\xed\x2a\x19\xdf\x4a\x5e\x5a\xfc\xe5\x3d\x38\xca\x5b\x6c\x2c\x14\x97\xff\xca\x07\x82\x57\x36\x69\x9b\x90\x3d\xb1\xb0\x5f\xe1\xe6\xce\x78\x66\xf3\x17\x71\x45\x40\x74\xa6\xe1\x86\x86\x54\x2e\x23\x45\x53\xa3\xbb\x0e\xaa\x25\x22\x49\xc9\x7a\x6d\x35\x6a\x73\xa8\x81\x84\xdb\x6f\x24\xd5\x05\x31\xac\x51\x57\xab\x3b\x34\x34\x30\xab\x61\x9b\xaf\x70\x9a\xb2\x58\xb5\x90\xcd\xd2\xbd\x9a\x36\x38\xda\x40\xc1\xe7\x3f\xb4\xb9\x71\x01\xfe\x47\x01\xf8\xd1\xec\xee\xc7\xa3\x00\x64\xb4\x1f\x4f\x9d\x0c\x05\xd0\xb8\xc8\x2e\x71\x26\xf4\xff\xfa\x20\x6e\x67\x85\xce\x33\xd7\x00\xf8\x64\x8b\xb6\xb2\x6b\x03\xf8\xd3\x4a\x9f\xe2\xef\x86\x94\xe0\x41\xf9\xb7\x32\xa7\xa8\xe5\x81\xfb\x35\x18\xb4\x71\x94\x5c\x1f\x49\x03\x0e\xab\xab\xa4\x7e\xd7\x18\x2b\x8c\xcf\x30\x21\xcf\x69\xca\xd9\x3d\xd6\x17\xef\x69\x93\x1f\xca\x9d\x7a\x1c\xfb\xda\xa2\x2e\xd5\x3f\x2f\x17\x13\x60\x7a\xba\x70\xfe\x05\x1d\xda\xdb\x20\xa3\x4e\xb0\xec\x28\x92\xaa\x3d\xfc\xde\xa6\x92\x0b\x91\xa7\x9a\x34\x97\x59\x7b\xe4\x2f\x1f\xe6\x7f\xf2\xb1\x7a\x5b\x91\x67\xeb\xb7\x42\xf4\xb7\x61\xa5\x98\x1d\xd5\x9c\x03\xc3\x85\xaa\x73\x3b\x71\x39\x07\x7a\x97\xd5\xcf\x20\xd4\x32\x93\xda\x59\x35\xac\x91\xd1\xa9\xc6\x8d\x96\x9a\x62\xa8\xec\x44\xf5\x9a\x28\x4d\x0a\xba\x33\x26\xae\xfc\x93\xb6\x04\xe6\x8f\xe8\x98\x22\x56\xdd\x2b\x98\x85\xf0\xce\x82\x47\x3a\x6f\xb0\xc1\x21\x91\xd9\x46\x7a\x97\x71\x34\x41\xac\x00\xc2\x89\x8f\xdf\x1c\x37\x02\x50\xd8\xc3\x2e\x70\x4a\x07\x40\x57\x99\x3d\xfd\xdc\x23\x00\xf3\x0a\x4e\xdb\x2b\xe3\x00\x4e\x56\x5c\xef\x6f\xfd\x0e\xe0\x2d\xc0\xff\x9a\x69\x18\x20\xb0\x41\xf8\xf2\x63\x24\x40\xc8\x9c\xe4\x82\xa0\x15\xc4\x85\xd7\xc8\x45\xc9\xe4\x53\x9f\x87\x47\xa8\xce\xe8\x7c\xa1\xc4\x86\xbc\xd0\x99\xb0\xa6\x25\x05\xfb\x35\x9b\x2b\xfa\x9b\x11\xae\xb8\x70\x38\xcb\x27\x8c\xe0\x1e\x3b\x76\x05\x88\xe7\x5c\xc6\x20\x6d\x72\xe2\x11\x85\x5a\xe8\x13\xe6\x0d\x85\x67\x5f\x3d\x42\x2e\x1b\xef\xaf\x5d\xae\x12\xd8\x01\xdd\x53\xfd\xf0\xfa\xe8\xd6\x57\xf5\x80\x05\x54\x73\x26\x82\x41\x19\xb1\xc2\x5d\xc7\x87\xba\xa7\xf8\x60\xfd\xd8\x2b\xe2\xce\x39\x45\xa6\x8d\xfd\x65\x5e\x33\xbd\x2a\x5f\x36\x59\x4a\x98\x47\x63\xd5\xb6\xb7\x7a\x0a\x08\xef\x53\x35\x39\xb6\x57\xf3\xbe\xb4\x36\x68\xdf\xd8\x99\xce\x26\xbd\x7e\xa5\x6b\x8a\xd0\xcd\x8a\xae\xa2\xd5\x0b\x41\x1a\xa4\xef\x7d\x75\x5e\x8f\x17\x95\x91\x44\x5f\xc4\xa5\xcf\x8e\xae\x8a\xcd\xcb\x5d\x35\xa0\xc1\x78\x45\xd1\x66\xa9\x19\x34\x60\x56\x22\x2e\xa4\xa4\x1b\x46\x61\xdf\x06\x13\x01\xc4\x8e\x3d\xf9\xe3\xc4\x2d\x00\x45\xd6\xc7\x5f\xe9\x6a\x00\xf4\x86\x1e\xdd\x3f\x3d\x01\x60\x19\xf1\x84\xed\x82\x29\x80\xab\xda\xb3\xce\xeb\xf9\x00\x7e\x2f\xf9\xa7\x1f\xc4\x03\x84\x7c\x13\x0a\x7a\x92\x09\x10\xb5\x2c\x86\xe7\x7f\x07\xd5\x71\x04\xa9\x31\xa9\x9b\xd4\x8f\xf1\x27\x14\x3f\x69\x1d\xa5\xc4\x46\x89\x6a\x79\x5a\x5f\x20\xf9\x84\xde\x37\x31\xf0\x6f\xc0\x17\x78\x9f\x75\x18\x4f\xc6\x63\xf0\x6e\xcb\xde\x87\x0b\x59\xd0\xcc\xf6\x49\x09\x17\x5e\xfd\x86\x2c\xb0\x7e\xf2\x7c\x7f\x75\xc5\x4e\x8f\xd9\xcd\x5a\xa3\x86\xc8\x6d\x25\x3d\xe5\xc1\x73\xcd\x97\xb6\x4e\x6a\x28\x2c\x4c\xb7\xf4\x6e\xed\xa8\xd3\x2d\x9e\x6d\x96\xf8\xe5\x07\x2d\xb8\xab\x1d\x5a\x33\xa8\x7c\x33\xae\xa1\xf1\x63\x83\xe6\x15\xd3\xfb\x29\x9d\x84\x8d\xaf\x65\x7e\x1d\xc3\x3a\x4e\x5b\xd3\x85\x25\x0d\x8e\x7a\x9f\x77\x8e\x3c\x17\x2a\x9f\x34\x50\x44\x34\x65\x96\x97\x3c\x37\x34\x43\xda\xa6\x33\x17\xda\x18\x8a\xa3\xf2\x93\x4c\xb2\xbf\x1a\xf3\xa0\x6f\x26\x78\x67\xd0\x19\xb3\x63\xce\xc6\xf0\xa6\xe8\x1a\x27\x61\xba\x22\x4f\xc4\x2b\x98\xbc\xc3\x2a\x84\x99\x01\x88\xaf\x3f\x5a\x3f\xbe\x0c\xa0\xf2\xe9\xa1\xe7\xc9\x6d\x00\x23\xfe\x87\xc8\x33\x41\x00\x56\xd4\xc7\x35\x17\xd4\x00\x3c\x03\xd8\x27\xae\x8d\x02\x04\x8b\x73\x5c\xbb\x33\x01\x10\x19\xc1\xdb\xcc\xca\x0f\x10\x1f\x27\xea\xc1\xdf\x00\x1d\x29\x59\x12\x46\x12\x83\xd4\xf5\x14\x76\x79\x39\x0d\x4d\x4a\x48\x62\x8b\x7a\x89\xb5\x17\x29\x23\xd6\xde\x40\xc7\xaf\x0f\x9f\x1f\xd8\x6a\xeb\x9e\x72\x0a\x73\xc2\x33\xde\xf3\x7e\x09\x07\x32\xde\xc5\x35\x5a\xa9\xe6\xd6\x8e\x9e\x03\x5f\xf6\xa5\x46\xae\xad\x73\x96\x1c\x75\xca\x6d\xd2\x1b\xd7\x0d\x0d\x87\xda\xde\x85\x6e\x88\x68\x6d\xcd\x2b\x76\x86\x6d\x3d\xd0\xa0\xff\xb1\xbf\xc5\x65\x25\x4c\xe3\xec\x12\x7b\xa3\xf0\x84\xb9\xb6\xdb\x4a\x76\x5d\xe7\x87\xfd\xba\xf1\x6b\x13\x95\xd3\xbf\x3c\x90\x86\xcf\x86\xef\x36\x23\x4a\x45\xcb\xf5\x8c\x29\xdb\x77\x0b\xdb\x8b\x4f\x98\xc8\xef\xcc\xe4\xde\xcf\xed\x32\xad\x40\x9e\xcd\xd8\xcc\x88\x37\xfb\x88\xfc\x92\x76\x33\x65\xc1\x9c\x06\xd5\x9a\xe4\x1f\x9f\x66\x61\x8a\x56\x4b\x38\x10\x5d\x66\x51\x8a\x79\x12\x73\x25\x62\xc5\x42\x0a\x7b\x2c\x1c\x0b\x20\x45\x79\x14\x75\x42\x0f\x40\xb3\xe5\xe1\x49\xba\xde\x7f\x78\x10\x15\x0f\xdb\x2e\x1c\x02\xf0\x95\x7e\x5c\x76\x35\x18\x20\x9c\xfd\x69\xc0\x1d\x5a\x80\xd8\x61\xde\x91\x87\x22\x00\xa9\xe2\x42\x17\x79\x9c\xe1\x5d\x26\x5e\xec\xad\x44\x15\x75\x3d\xf7\x81\x8c\xba\x06\x3f\x25\x3e\x83\x43\xf5\x0f\xab\x25\x92\x6d\xda\x33\x5d\xd6\x80\xcb\xf8\x4b\x51\x01\x56\x9a\xe9\x0c\x68\x3d\xbf\x34\x77\xe9\x97\xcc\x88\x3d\x9e\xae\x61\x8c\x0d\x56\x5b\xa2\xce\x0e\x59\xde\x6d\x7c\x6b\x09\x76\x2f\xab\x07\xdf\x4f\xac\xb4\x9b\x3c\x19\x61\xe8\x9f\x5d\x9d\xd0\x8b\x9a\x5e\xec\xe5\xd8\xf0\xd2\xca\x99\xcf\xeb\x80\xa9\x3d\x7a\x35\x0b\x2a\x6d\xb9\x1f\x3c\x0c\x96\x97\xb5\xde\xb0\x34\x9f\x30\xf5\x5c\xbd\x50\xb7\x5a\xd7\x6d\x7a\x72\xbd\xab\xc2\xae\x4c\xcb\x42\x6e\xa3\xf9\xd5\xa3\x02\xb0\x58\xd9\x72\x29\x56\xc8\x4d\xb0\x20\x6d\xcf\xe6\xef\xa4\x2c\x58\x0f\xed\xd4\xe4\x99\x24\x95\x58\x25\x20\x59\x33\xb6\x63\xbf\x59\x3f\x41\x3d\x4c\x3d\x10\x7d\xd5\xfa\x34\xfa\x50\x62\x68\xe8\x4b\x1b\x37\x74\x5b\x9c\x4b\xe0\x65\x1b\x3c\xa6\x2c\xea\x2e\x80\xac\xd4\xc3\xbe\x13\x96\x7f\xfb\x51\x66\x52\x6c\x13\x67\x32\x00\x5c\xbd\x1e\x5e\xb8\x50\x02\x10\x78\xf0\xe1\xec\x95\x48\x80\x68\x5e\xf6\xb5\x3b\xa9\x00\x29\x2a\xdc\x0b\x6c\x6b\x00\xd9\x7c\xfc\xef\xb9\x0f\xc2\x48\xa1\x80\xf0\xa2\xb8\x15\x9c\x7c\x31\x28\x79\x52\x35\x93\xd2\x54\x54\xa5\x60\x60\xd1\x4c\x72\xc8\x41\x6b\xf9\xf8\x4f\xe2\x79\x32\x24\x8d\x67\xd3\xf8\xd0\x39\x91\xfa\x8e\xfa\x65\x4f\x36\x3f\x07\x90\x02\x8a\xdb\xc3\xd7\x7a\xbd\x4c\x52\x6b\xde\x77\x2c\x6d\x39\x5f\xab\x2e\x1e\x3e\xb2\x90\x69\xc1\x35\x7e\x79\x6c\x69\xf9\x8c\x51\xfb\xe4\x6f\x83\x9f\xbe\x9f\x33\x4c\x9d\x0e\xe9\x3b\x33\x3c\x6c\x62\x3d\x4f\xe8\x4c\x69\xe9\xb7\xa4\xfd\x91\xd7\xaa\x5f\x3d\x6f\x55\xbb\xfc\xed\xcd\x95\x12\x73\x9b\xb9\xd5\xc2\x3a\xc5\xe7\xb5\x36\x55\x1b\x4a\xe5\x05\x39\xce\x36\xaa\x9b\x5d\xa5\xf9\xc9\xf4\x76\x7d\xdb\x8f\x8a\xdc\xe3\x99\xed\xee\xec\x60\x73\xf3\xc2\x25\x1d\x6f\x22\x12\xb3\x93\xc2\x55\xec\xe3\x90\xa1\xe9\x5b\x41\x6b\x0e\xfb\x51\x89\xc9\xcd\x7e\x0a\x0e\x2c\xe8\x9e\x38\x4f\xaf\x2e\x07\x2d\x4c\x5e\x94\x2d\x80\xec\x0a\xeb\x95\x63\x0b\x00\x7a\xcb\x2c\x23\x74\x62\x7f\x7b\x10\x1e\x9d\xac\xc7\xcf\x3b\x00\x84\xbf\x60\x4b\xbb\x32\x0a\x90\xc0\xf7\x58\xe3\xd6\x4b\x80\xcc\xe5\x67\x6d\xcc\xfc\x00\x85\x2a\x3c\xba\xcf\xea\x01\x53\xb6\x22\x30\x2e\x72\x0f\x2e\x56\xde\x11\x4b\x52\xf9\x46\xc1\x55\xfe\x90\x79\x6a\x6a\x4e\xba\xff\xf2\xb8\x5a\x77\x60\x2b\xde\x28\x7f\xd4\x60\x7f\x2a\x1b\xea\x68\x5a\xbc\x6d\x64\x15\xef\x86\x57\x78\x86\x9f\xe8\xbb\x95\xe5\xd6\x60\xfb\xe8\xd4\xc1\x9d\x85\x3f\xdc\x9d\x6b\x04\xc7\x9d\x67\x25\xec\xf9\x87\x8f\x4c\x3e\xf8\xfe\xcd\xd2\xee\xd3\xb1\xf1\x53\xc3\xe3\xd6\xbe\x93\x6a\x43\xb7\x5b\xb7\x6c\x79\x67\x89\x3d\xfe\xd5\x8c\xf6\xd5\x0b\xc1\xed\x33\x2f\x72\x1c\x6f\x2e\x15\x35\x9f\xce\x9a\x77\xea\x5b\x7d\x52\x5f\x91\xca\xec\xb4\xb9\xae\x59\x15\x1e\x6b\xed\x72\x79\xd3\xfc\xe5\xe9\x08\x6f\x97\xef\x5b\x15\xc5\x06\xe1\x09\xce\x0b\xdb\x55\x85\xf7\x83\xac\x5c\x64\x10\x4c\xb9\x37\x7c\x2b\x5d\x2f\x23\x39\x32\x85\xbc\xc2\xdd\x4e\x23\xcb\xd2\x53\x3c\xd6\x5d\x1c\xd1\xc7\x12\xdf\xb9\xd7\x38\x25\x62\x34\xa3\x7b\x01\x54\xa4\x58\x9f\x9c\x10\x05\x30\xba\xc8\xe2\x4d\xf7\x16\xc0\x46\xe1\x81\xf1\x69\xba\xbf\x3d\x88\xc8\xd3\x6c\xfa\x57\xb6\x01\xd2\x26\xd8\xde\xde\xd8\x01\x28\x98\x7c\x4c\x62\xe8\x00\x78\xf5\x92\x53\x84\xfd\x37\x80\x5a\x24\xef\x17\xc1\x06\xe0\x7c\xed\x20\x4c\x52\xf2\xa2\xe4\xbd\x21\x4b\x1f\xb4\xe4\x21\xbd\x6b\xd8\xaf\xa8\xe8\x23\x8e\xa3\xd4\x3c\xd7\x6a\x4e\xa7\x41\x36\x14\x07\x9b\xeb\x54\x3f\x58\xdf\x4a\x51\xf2\xf0\xeb\xbe\xbb\x70\x2b\x9a\x26\x42\x7b\x3c\xff\x8b\x61\xa8\x46\xc5\xe6\x77\xbb\x2f\x78\xcf\xcd\x9e\x07\xf3\x49\xe3\x53\x2e\x74\x43\x77\xbe\x3d\x6d\xb9\xec\xe6\x3a\x61\x36\x2a\x5a\x96\xe0\x19\x31\x7d\xfa\x83\x41\x9e\x95\xa7\xee\xfc\x46\xd7\xc5\xcc\x38\xf7\xad\x45\xfd\x96\xb5\xd8\x08\xaf\xb9\x95\x0b\x6f\x7c\xa3\xdf\x79\x5a\xad\xfd\x5e\x77\x3e\x6c\xce\x53\x7c\xe3\x52\xc5\xd7\x20\xf0\x54\xde\x4c\x2b\x6b\xf5\xed\xf4\x28\xd8\xd9\x57\xc0\xeb\x33\xec\xce\x81\xe0\xca\x21\x7b\x6d\xb8\x0d\x20\xb9\x33\x79\x3c\x4c\xdd\x2f\xa3\xfc\x53\x6e\xbb\x37\xb9\xf9\xa0\xf7\x27\x6e\xb8\x96\xb9\xf9\x61\x0e\xc6\x2a\x01\xa8\x79\x33\xaf\x1e\x7f\x08\x60\xb2\xf7\x01\x82\xae\xf1\x6f\x0f\x22\x28\x98\x91\xee\x74\x22\x40\xdc\x97\x07\xbf\x5f\x52\x04\xc8\xe2\x65\x61\xbe\x26\x07\xf0\xf2\x00\xdb\xd7\xbb\x25\x00\xd5\x78\xf6\x02\xd6\x8f\x00\x6f\x72\x78\x8a\x05\x48\x90\xd4\x71\x87\xdf\x5d\x1a\xa8\x17\x3a\x71\x62\xad\x46\x9b\x24\xea\x3b\x8c\xec\x21\xcf\x34\x3c\x67\xc7\x79\x55\xc3\x14\x0c\x52\xa9\x51\xc2\xa0\xaa\xe6\xc8\xda\xa1\x8a\x59\x7b\xa9\x5e\xea\xec\x81\x6c\xe6\x90\x81\x6f\xac\xc3\x6c\x49\xe3\xa5\x67\xd6\x84\x3f\x1e\x8e\x2c\x68\xac\x5e\x0d\xe8\xd0\x0f\x5c\xe9\xb3\x9b\x0d\x2f\x26\x85\x4c\x8c\xa9\x4e\x5c\x4d\x1b\x09\xd9\x99\x9c\x19\xaa\x4d\x8a\x0f\xba\x35\x1b\xd2\xcb\x16\xd9\x1b\xf8\xe6\xc7\xf1\xf6\xea\xb0\xce\x00\xe1\x25\x6a\x13\x31\x28\x3e\x20\x74\x95\x52\x27\x12\xe8\xe1\x93\xb2\xc1\x51\x91\xe6\x7f\xc4\xfb\xc0\x96\x71\x89\xb1\x4f\x88\xb7\xc6\xf6\x7c\x41\xb9\x67\x8f\xb7\x37\xc2\x23\xe7\x9c\xfb\x27\x1f\x7a\xa4\x61\x46\x99\x2b\x9f\x4f\x31\xaa\x30\x39\xc6\x39\xda\xe7\x20\xba\x2c\xfe\x80\x93\x84\x17\x0b\xa6\x21\x6a\x3f\x80\x6a\x09\xc3\xfa\x51\x3f\x00\xcb\xfd\x4c\xb7\x4f\x46\x03\xb8\x5d\x61\xb4\xa6\xcb\x02\x88\x48\x65\xd8\x39\x13\x09\x90\xec\xc1\x74\xf4\x02\x1a\xa0\x40\x93\xd9\xf5\x6a\x20\x40\xa5\x34\x53\xce\xb5\x30\x80\x37\x3b\x0f\x47\xee\x27\x03\x74\x06\x72\x68\x70\x25\xc1\xc7\x0f\xa2\x3c\xf7\xc5\x85\xa9\xde\x1f\xe5\x84\x22\x74\xc5\xc8\x5c\x9f\x78\x24\x52\xdc\xc2\xf1\x3c\x23\x7e\x0a\xa1\x29\xb4\x48\xfa\x61\x09\xcd\x63\xd5\xc3\xab\x6f\xde\x8b\x9b\x9a\xf6\x9d\xfd\x66\xdc\x16\xed\x21\x3a\x7b\xee\x97\x07\xd2\xf1\x20\xaf\xe9\x65\xf4\x0e\xe7\x0b\xeb\x94\xc5\x2e\xf9\x85\xf4\x34\xc6\x04\xf2\xe8\xf2\x44\x7d\x4c\x66\xe2\xe6\x64\xff\x50\x4f\x64\x79\xf4\xd8\xec\xfc\xfb\xe2\x40\x4a\xec\x87\x45\xd1\x56\xf1\x40\xde\x88\x9c\xe5\x99\xc6\x83\x7e\x1e\x61\x49\x6b\xe5\x35\x61\x9e\x9d\xe1\x73\x9b\x81\x65\x8b\x9e\x32\xa1\x37\xb7\x1a\x8b\x65\xdd\xcf\x86\xfa\xef\xfc\x56\x70\xdd\xf5\x7a\x88\x1f\x22\x20\x7b\xd5\x69\x28\x84\x09\xb9\x99\x66\xe7\x58\x10\xac\x80\xea\x4d\x9a\x73\xb8\x16\xe4\x89\xee\x8e\xf3\xb5\xeb\x08\x14\xc3\xbc\x8e\xa4\x00\x68\x5a\x30\x5c\x3e\x9a\x09\x60\x73\xe4\x7e\xf4\xc9\x52\x00\xef\x7d\x77\x5d\x8e\x23\x00\xa2\x5f\xdd\x2e\x38\x51\x08\x90\xe5\x73\x7b\x8e\x6e\x1c\xa0\xb4\x9e\xbe\xe1\x1c\x1a\xa0\x7e\x9b\xf1\xde\xe5\x6d\x80\x0e\x60\xdd\x7b\x4f\x00\xe0\x03\x85\x9d\x9f\x9d\x04\x1b\x9f\xa6\xb9\x44\x44\xef\x53\x7b\xa6\x68\xf9\xf3\x34\x76\xc8\x63\x0b\x1c\x22\xbe\x0e\xd7\x09\x8c\x4b\x2d\x52\xf7\x63\x99\x50\xe7\x56\xfd\x14\x34\xcb\xcf\xac\x16\xcc\x7e\xd5\xb1\xef\xf5\x9a\xba\x39\x38\xe5\x78\x7b\xe6\xc0\x2f\x0f\xa4\xec\xe9\x6b\x99\xea\xde\xcd\xa0\x24\xec\xdb\xdf\xdf\x29\x2e\xfc\x88\xf4\x7e\xe5\x3d\xba\x33\xa1\x17\x6a\x9a\xa7\xfb\xad\x76\xd0\x32\x20\x37\xcb\x6f\x5e\xa3\xfb\x82\xd7\x4c\x16\x79\x71\xee\xed\xa2\x67\x62\x9a\xfa\x4a\x6a\x03\x87\x7b\x70\xe2\xf6\xfa\xcb\xca\x11\xd7\xf1\x84\xb1\x4d\xce\x97\x31\xce\x2a\x09\xbe\xdb\xfb\x5f\x30\x3a\xe9\xc6\x1e\xda\xa9\xc8\x6b\xb2\xf7\x8b\xe5\x46\xaa\x67\x24\xd8\x5d\x8d\x39\x86\xb2\x4d\x61\xb3\xb5\x89\xec\x44\xeb\x25\x30\x58\x3f\x8b\x1a\xc3\xf0\xc4\x5c\xb4\x8a\x88\x78\x88\xbd\x1d\xfe\x0a\x40\xdf\xf3\xde\x32\xad\x23\x80\xbd\xc5\xad\xaf\x47\x6f\x00\xf8\xcb\xde\x52\xa2\x7d\x0f\x10\x5b\x7a\x1d\x41\xcb\xfe\x0f\x0f\x22\xee\xd6\xad\x53\x74\x00\x2d\x8f\x6e\x77\x9c\xfd\x0d\xa0\x6f\xe9\xbe\xce\x8d\xb3\x00\x5f\xc6\xd9\xee\x32\x47\x00\xcc\x84\x73\x9c\x10\x7c\x06\xd2\x9b\x3c\xdc\x18\xc5\xf3\x94\x18\x82\xb9\x80\xb9\xf9\x22\x61\x15\x53\x20\x96\x1e\x6e\x86\x2a\xde\xe4\x92\x9b\x2b\xab\x5e\x8b\x9b\x3f\xa5\x7d\xad\xc7\x66\xea\xf6\xe0\xac\xe3\xf5\x99\xdf\x5b\xbc\x6b\x15\x32\x69\xb6\x88\x69\xf7\x3a\x4a\x5a\x3a\x96\xc5\x42\x08\x03\x9f\xfb\xa2\x66\x99\xbd\x07\x7a\x9f\x7d\x92\x19\xf7\xf0\xe8\x79\x53\x3a\xcd\xd2\xbf\xe2\x81\x7e\xc9\xf7\xfd\xca\xbb\x50\x57\xe7\x17\x17\x96\xd6\x9a\x12\x5d\xf4\x9f\xf7\xae\x8a\xd6\xdb\x3b\x7e\xc8\xf9\xb1\xc1\x52\xc1\x62\x2f\x94\x7b\x6c\x13\x51\xca\x62\x57\x9b\xd6\xb1\xc3\x92\xff\xd0\x96\x3b\xfd\xe1\x0e\xe4\xea\xd8\x1c\x4c\x61\x45\x86\xa5\x57\x58\x35\x26\x5d\x42\x0d\x24\x05\x58\xed\x4b\xa0\x43\x97\xc4\x35\x59\x9e\x89\x4b\xc7\x38\x47\x11\xcd\x53\x63\x66\xb0\xa1\xa1\xd1\x00\x86\x17\xef\xbe\x3c\xca\x04\xe0\xf4\xf0\x46\xe8\xe1\x57\x00\xbb\xbb\x4a\x00\x52\x4e\x5c\x2f\xa6\x4d\xfe\x7b\xce\xd5\x10\xba\x67\xf6\x9f\x1e\xc4\x28\xeb\x6d\xd5\xb3\xfc\x00\xf3\x7a\xf7\x17\x6f\x1d\x01\x58\x53\x7b\x2a\xc6\x5b\x00\x40\x3d\xc0\xd1\x2b\x16\x4e\xd1\x23\xaa\x0a\x34\x58\x0e\x10\xfa\x30\x6e\x62\x3d\x11\xc2\xa8\x07\x1b\x99\xf2\x5e\xaf\x12\x96\x6f\x7f\x6f\xd7\x5a\x7b\xf7\xaa\x7f\xe3\x73\x90\xc3\xc7\xf1\xd5\x12\xeb\xc1\x13\x51\x8b\xb3\x31\x11\xf6\xfd\x51\xef\x6f\xcc\x1f\xf6\xfa\x3e\x96\xfd\xb1\xee\xcb\xac\x23\xdb\xa4\xe0\xc4\xe0\xc8\x05\x07\x9e\x01\x91\xe9\xb1\x3e\x4f\xfb\xab\x2d\xf5\x3f\x68\xda\x2a\x6d\xbf\xd6\x2b\x2d\x6f\x36\x60\x6d\x06\x2a\xa5\xd7\x9a\xaa\x43\x6d\x68\x4b\x99\x36\x99\x5f\x5e\xb4\xd1\x28\xf8\xb6\x15\x55\xfc\xc8\xea\x64\xbe\xff\x8e\x47\xde\xaa\x65\x49\x6e\x29\xc2\x3f\x5b\xc1\xbc\x31\x7b\x05\x75\x25\x95\xce\xbc\x39\x23\x0f\xb5\x98\x38\x6f\x7e\x23\x8d\x19\xdd\x13\xb7\xc7\xcc\x30\xf9\x3b\xa6\x38\xf2\x9b\xe9\xde\xa4\x51\x6c\x68\xa8\x21\x80\x49\xcb\xad\x63\x87\xd9\x00\x5c\xdf\xde\x18\x39\x22\x0f\x10\xfe\x73\xfe\x9d\xae\xb3\xeb\x41\xbc\x54\xa2\x91\xfb\xe7\x9c\x67\xf8\xe9\xcf\x79\x97\x3e\xcd\x7f\xde\x5f\x8c\x28\x3b\x74\xf8\x3f\xdf\x6f\xde\x60\xcd\x67\xc4\xc1\x32\xe5\x07\xe7\x13\x09\x16\x0a\x03\xf1\xa8\x20\xbd\xcd\x1e\x02\x0d\xda\x5c\x7c\x3e\xd6\x63\xa9\x78\x2b\x40\x91\xa1\x38\x7d\xc8\x6b\xb9\x4e\x9f\xbf\x69\xbd\x5e\x72\xce\xc0\x71\x6f\x9f\x61\xda\xb5\xc9\xbd\x61\xd2\xa3\xef\x03\x1b\xc6\x4d\x9a\xf3\x27\x2c\x1c\xc7\xbe\xce\x4f\xc8\x8f\x54\xff\xf2\x40\xcc\x33\xbe\x8d\xcd\x7d\xee\x12\xb4\x90\x1a\x38\xb1\xa8\xfc\x36\xd7\x3c\xa8\xf3\xf7\xd5\x87\x75\xe9\xe6\xb3\xcd\x86\x6b\x1b\x55\xa9\x66\x5d\xf5\x79\x9b\x1e\xa5\x7d\xa6\x50\x31\xb9\xbd\x92\x6f\x66\x5a\x54\x16\x82\x10\xca\xfe\x60\x32\x5c\xe2\x8c\x94\x4f\x5f\x34\x99\xcc\x8f\x46\x55\x25\xf9\x19\x17\xe7\x61\xd0\xf5\xb1\x54\xe3\xac\x9c\x48\x0c\x4f\x74\x8c\x11\x7b\x56\x3e\x56\x31\x8c\xc9\xf0\x71\x66\x15\x96\x10\x54\x07\x60\x96\x7f\x68\xcf\x9f\x71\xb8\xf5\xef\xe5\xf8\x93\xbb\x6f\xf4\x05\xc8\xe5\xdb\x65\x2d\xe7\x4f\x0f\xa2\xe6\xff\xe3\x41\x4c\xef\xe1\xdd\xfd\x9e\xf7\x41\xf8\x9d\x6a\x68\xa1\x14\x73\x6e\x48\x91\xc8\x47\x09\xc5\x82\xc3\x76\x84\x95\x5a\xec\x45\xc9\x2b\x61\xe2\x9f\x44\x11\xe3\xca\xb4\xd9\xb7\x5a\x3c\x36\x46\x0c\x5c\x2b\xf0\xa5\x8f\x96\x2b\xec\xa6\xdf\xaa\xc5\x7a\x7c\xd7\x0b\xfc\xda\xb3\xe2\x3b\x32\x9b\x5b\xc6\xd2\x3f\x6a\xdd\x33\xc3\xf4\x6d\xf2\x43\x97\xc9\xbb\x05\x89\x79\xfe\x77\xa2\x06\xf9\x4b\x7a\x3f\x82\x5a\x58\x0d\x8c\xa7\x99\x96\xbd\x1b\x0c\x0d\x26\x3e\x3a\xad\x35\x57\x3d\x34\xe2\xeb\xb9\xb7\x61\xf2\x8a\xc9\xe8\x5e\x1b\xef\x96\xc6\x8b\x16\xc3\xb6\x46\xd1\x9d\x47\x79\x08\xa3\xc7\x35\x2e\x88\xf8\x2c\x35\x23\xe5\x0a\x49\xa4\x67\x1a\x18\x28\xbd\xc2\xa0\xf7\x24\xbc\x32\xd0\x2d\xf9\x8a\x9e\x88\x3d\xa8\xaf\x53\xf4\x03\x83\x0d\xaf\xd0\xd3\x28\x78\x83\x9d\x0a\xa6\xd1\xfd\x9e\x77\x13\x57\xe9\x67\x03\x60\x75\x7c\xef\x7f\xf6\xb7\xfb\x13\x68\x02\xfe\xcd\x0b\x6a\xde\xda\xe5\xe0\xcf\x79\xf0\xbc\xf9\xbf\xcd\xbf\xff\x24\xcb\xf2\x3d\x22\xa1\x80\x62\xcb\x95\x27\x1b\xba\x22\x42\x1c\x11\x7a\x64\xee\x34\x31\x8f\x53\x90\x66\x08\x98\xee\xe4\x47\xe1\xd5\x8e\x25\xbb\x56\xaa\xed\x38\x19\xb6\x14\x8a\x64\x6e\x6e\xe8\xda\x67\x56\xdb\x85\xa1\x56\xaa\x7c\x09\x4d\x1f\x3d\x8d\x97\x78\xf2\x99\xdb\xc2\x2c\x25\x17\x53\x06\x14\xdb\xaa\xf5\x3d\x96\x79\x17\xed\x9a\x65\x75\xad\x56\x3e\x2e\x9f\x6b\x68\xfa\xe5\x81\x68\xe7\xcc\xf6\xac\x2b\x97\x4f\x69\x5b\x8d\x51\xb6\x3c\x8a\x64\x75\x22\xfa\xb9\xb7\x37\x9e\x9f\xfc\xcb\x03\x11\x6c\x33\x42\x26\xa7\xb6\xea\xf8\x35\xde\x46\xb5\x25\x3e\xd0\x59\xab\xcd\x41\xe7\xc6\x46\x69\xb7\x56\x21\x30\x7d\x11\xbf\xeb\x68\xbe\xec\xc4\x9a\x86\x9e\xd2\x89\x2f\xa1\x62\xfb\x82\x6f\x6b\x5f\x2c\xb9\x89\xcb\xf6\x73\x05\x70\x3c\x71\xa9\x61\xff\x27\x80\xf0\x3d\xbb\xf1\x64\x2a\xd0\xfc\x67\xaf\xfb\xaf\x79\x5f\xd7\x9b\x9f\x75\x90\xb7\xcb\x4d\xb3\x7f\x9b\x77\x90\x35\x60\x9d\xd5\xf6\xfe\xad\xb5\x49\x8a\x3b\x37\xbf\x6c\xcc\xd7\x3d\xa4\x66\xa1\x60\x83\xbc\x5e\x1e\xc2\x6f\x32\x0f\xdd\x8d\xeb\x5e\x62\x96\xd4\xc7\xa2\x6f\xe6\x4f\xa2\x92\x8d\xfc\xd3\x26\xe2\xcf\xec\x70\xdb\x37\xbf\x38\x19\xe8\xb8\xb9\xe5\x75\xbb\x3c\xdc\x45\x73\x83\x92\x1e\x52\xb9\x68\x31\xb0\x56\xd9\xc2\x5c\xb7\xad\xa3\xb0\x96\xff\x43\xb0\xd6\x46\x53\x63\x1d\xb5\x66\x5e\x59\xaa\xda\xb1\xd5\xbe\xa9\x53\xcc\xad\xf6\x64\x83\xb4\x29\x57\xec\xaf\xfe\xc7\xf7\x17\x5b\x73\x05\x8f\xd4\xfb\xc7\x5b\x11\x87\xb3\xac\x34\x6e\x7d\x64\x43\xec\xa4\x6b\xa8\x2f\xf7\xb9\xa1\x5c\x12\x03\xd5\x4b\x3a\x73\xd0\xcb\xd1\xba\xea\x7d\xad\x76\x98\xf8\x08\x6d\x8d\xa3\x8d\xa7\xb0\x2a\x21\xaf\x35\x74\xeb\x62\xb1\x6b\x81\xa3\xea\xc2\x35\x6f\x70\x6f\x7d\x99\x35\x84\xcb\x07\xf0\xfb\xbc\xdf\x03\xb8\x56\xef\x71\xf8\xe7\x79\xf8\x35\xf7\x7d\xb3\xb1\xcb\x01\x95\x9f\x75\xf0\x85\x46\xeb\x4f\x52\xfe\xdb\x03\xb8\x08\x70\x6d\xfc\x28\xc3\xc6\x71\x78\xcd\x8a\x61\x7e\x37\xf5\x99\x42\xe5\x8a\x17\x1f\x18\x30\x23\x0b\x08\x1b\xeb\xf8\x37\x2d\x11\x9f\xca\x4a\xda\xbf\x2c\x6b\xc4\x9b\xa8\xb5\xf8\x06\xa6\x7d\xc1\xac\x19\x2d\xc4\xb8\x87\x57\xa1\xa2\xec\xc4\xd2\x47\xbc\x77\x10\x4b\x1e\xda\x79\x3e\x0e\x5f\x10\x47\x13\x07\x0b\x14\x4c\x9b\xb7\xd7\x6a\xe6\x5f\x88\x6a\xaf\x6c\x31\x4c\xb4\x95\x3d\x54\x79\xb7\x1d\xbc\xf5\xa0\xf0\x95\xf2\x93\x9d\xa6\x6d\xe7\x3c\xcb\xff\xf5\x20\x94\xe8\x97\x84\x91\x86\x29\x6c\xca\x42\xdf\xfc\x50\x16\x09\x29\xca\xfd\x63\xbc\x68\xb7\x18\x03\x15\x9a\xc1\x1a\x8c\x40\x04\x5a\xc5\xf6\xfd\x65\xec\xb1\x50\x59\x65\x42\x87\x14\xee\xa1\xbf\x8d\xca\x64\xab\x31\xee\xbe\x7f\xb7\x72\x55\x73\x12\xfe\x96\xd7\x6d\x15\x9e\xfa\x69\x7c\x89\x3b\x07\x40\x80\xd3\x7f\xfb\x30\xe5\x3f\xe7\xfe\x1d\x27\x77\xf9\xc5\x64\xd7\x8f\xdb\xd1\xfb\x37\x0f\x64\xb9\xfd\xe7\xfc\x93\x15\x2a\xd9\xae\x31\x37\x0f\x67\x50\x19\xb8\x6d\xc4\x6e\xb6\xa2\x28\x34\xc2\xed\xaa\x55\x55\x29\x24\x63\xd9\x07\x66\x15\xb9\x15\x84\x5e\xf5\x1c\x97\x96\xb8\x83\x38\x7b\xe3\xf7\x21\x11\x01\xd6\x58\x57\x1b\xcf\x28\x3e\x77\x7e\xf4\x84\x5b\x7b\x92\xaa\x6d\x08\x5a\x3b\xc6\x23\x45\xd9\x74\x1c\x65\x50\xf8\x32\x7d\x5b\x77\x2f\xb2\xb9\x5d\x28\xd3\x4c\xf9\x03\xd2\x66\x21\x3f\xa3\x58\xf1\x00\xd2\x14\xc1\x99\x8e\xfc\xe5\x3f\xc8\xe5\xa2\x9f\xa2\xee\x26\x9c\x96\x6d\x46\xcf\xa2\xbe\xc4\xd2\xc8\xff\xbe\x7e\x18\xcd\x14\x73\x57\x6e\x62\xfe\x37\x4c\x73\xa8\x98\x5c\xcd\xb7\x70\x6c\x6c\xa0\x88\xbc\xcf\x98\x3d\xee\x86\x5f\xb6\x7c\xff\x80\x20\x6e\xc1\xab\x50\xbe\xb3\xb7\x04\xaf\xe6\xf1\x87\xfc\x8b\x2e\x2f\xfc\x82\x4b\x87\x7c\x77\xfb\x6b\x82\xa0\x93\x1d\x40\xf8\xc1\xdd\xf8\xf2\x03\xff\xbb\x0e\x7e\xdd\x0b\xcb\x3c\xff\x76\x0e\xd6\x35\x76\x39\x7b\x01\xe0\x3a\xe1\xe4\xc1\x61\x0c\xb4\xb0\x5d\x65\x52\xeb\x74\xa3\x5a\xf0\x70\x0a\x2b\xd7\xea\x50\xe6\x84\x22\xa5\x27\x0b\xe7\xc8\x22\xb2\x48\x7d\xe6\x94\x33\xa4\xab\xea\x4e\x56\x85\xe1\x85\x84\xe7\x86\x6a\x6e\xad\xde\xd7\xf1\x09\x56\xb2\x7e\xd7\x1d\xbf\xe3\x5c\x5c\x87\x42\x36\xad\x36\xb1\x5f\xc3\xf7\x45\xf0\x1b\x3b\x62\x39\xb3\x5d\xa3\xf7\x68\x7f\xc6\xa4\xd5\x67\xc7\x3e\x50\x95\xc4\xd0\x0f\x1d\x8f\x25\xc9\x1f\x46\xa7\x6c\x9d\x89\xab\xfb\xcb\x7f\xc8\xc0\x1a\x63\x9c\x43\x39\xa5\xaf\x62\x9b\x30\xc3\xc1\x96\xbf\x3c\x08\xa9\xe6\x6d\x43\xec\x8c\xdf\x23\xe9\xe4\x45\x19\x9c\xa6\xcf\x59\x69\xe1\x99\x2d\xfc\x23\x77\x03\xe9\xbc\x89\x6e\xfc\x5b\x17\x07\x19\xb7\xd1\x0d\xfc\x90\x8b\xbc\x0c\xcb\x60\x1d\xc1\xc5\xe1\x9e\x0c\x43\x9f\x05\xe1\xbb\xad\xc1\xdf\x7d\xf1\xe5\xf7\x5d\xbe\x13\xdd\xe5\xd4\xcf\x3e\x48\xb0\xfe\xb7\xf9\xf7\xb7\x9f\x75\x30\xfa\x1a\xe0\x96\xe9\xe9\x99\x2e\x6e\x98\x63\xd5\x67\xb8\x51\x37\x0a\x6c\x9c\x57\x9f\xb1\x94\x5d\xa5\x1e\x12\x39\x29\x25\x94\x69\x48\x06\xb9\xbb\x1a\x74\xd1\x82\x24\x8a\xfa\xb6\x31\x6b\x90\x1e\x49\x5b\xef\x99\x25\x9b\x5b\x29\x81\x6c\x91\xee\x62\x65\xc7\x40\xe8\x70\x48\x76\x63\xb2\x38\x89\x9f\x09\xd2\xf5\x91\x35\x14\xc2\x7b\xa6\xe8\xf9\x99\x6a\x7d\xc6\x73\x97\xa0\xfc\xd9\x54\x4c\x71\x31\x9d\xfb\x03\x31\x0a\xbc\xb8\xdf\x3f\x3b\x05\xbf\x93\x4e\xc7\x9d\xdd\x5a\x0c\x1c\x97\x1c\xc1\x65\x60\xdf\xfa\x19\x49\xde\xc3\x1f\xc0\xb1\x78\x0f\xfc\xaf\xff\x20\xfe\x18\x7d\x13\x3f\xe0\x74\x4d\xbc\x6b\x9d\x96\x70\xd1\xa1\x40\x9c\xf0\xe3\x01\xc1\xdf\x4e\x46\xc2\x69\xfa\x22\x61\xd8\x26\x4e\x3c\x71\x42\x9a\x98\x6b\x56\x2f\x31\x36\x7a\x94\xe8\x6f\xb1\x07\x20\x27\xef\xbf\xeb\x60\x24\xeb\xdf\xfa\x21\x3e\xe9\xbf\xe7\xdf\x43\xe4\x5d\xb6\xfe\x3c\x1f\x6f\x08\x30\xc3\xd6\xcf\x10\xf2\x6a\x0c\x2e\x73\x27\x71\xde\xca\x39\x4d\x2d\x12\xb6\x11\xa2\x49\x7c\x4e\x89\x97\xfb\x4d\xb1\x31\xd4\x92\xdc\xa9\x7e\x50\x3b\xd1\x73\x98\x7c\x5f\x0f\x67\xf8\xc9\xa1\x9b\x94\x62\x8a\x36\x57\xb6\x62\x21\x1d\xb5\x77\xb3\x39\x6b\x5a\x45\x4c\xf4\xe1\x74\x38\xf9\xcb\x7f\xd0\x9c\x20\x5e\xce\xe1\x72\x9a\x55\xd9\x43\xc8\xa9\xed\x71\x75\x95\xdf\x4f\xd0\xef\x65\x74\xdd\x94\x9a\x25\x3c\x9d\x4e\x73\x2d\x91\x48\xc2\x4f\x23\x84\xdc\xbe\x89\xed\x10\x8c\xf1\x05\x4e\x33\x62\xb7\x08\x93\x84\xab\xf6\x39\xff\xc7\x7f\xb8\x86\xef\x24\xaa\x9a\xad\x8b\x74\x20\x4e\x13\x55\xcd\x95\x84\x71\xab\x82\x24\x3a\xc3\x1f\xa2\x56\xf3\x36\xc4\x69\x93\x8b\xa2\xcf\xbf\x35\x90\x2e\x19\x19\x01\x54\xec\xfd\xe9\x81\xd0\xd0\x68\xfc\xc7\x03\xd1\xfe\xb7\x3e\xb0\x94\xb7\xcb\x4f\xcd\x3f\xe7\xdf\x43\x3f\x3d\x08\x61\x80\x3b\xe1\x67\xdf\x94\xef\x00\x96\x0d\x41\x2f\xfa\x9c\x19\x72\x39\x2a\x58\xe5\x92\xb3\xa8\x68\x61\x5d\x5e\xce\xc8\x0c\xaa\xb4\x0c\x9f\xc4\x5d\xff\xe7\x94\x0e\x65\xbc\x3c\xce\x75\x3f\xb9\x5d\x2f\x40\x7b\xf5\x97\xff\x60\x5e\x4d\x42\xda\xee\x37\x39\x65\x1c\x4b\xca\xf3\xd0\x36\x7f\xa6\xd3\x44\x4a\x8f\x38\x65\xae\xa2\x3e\x4f\xd2\x48\x7b\x6f\x49\xa7\x1c\x4d\x3a\x5a\xc2\x61\x85\x93\x27\x12\xc3\x1a\xf5\xec\xf8\xa4\xcb\x88\x96\x03\x8f\x6c\xa9\xe2\x2d\xc4\x98\xd9\x2e\xeb\x06\xd1\x36\x62\xec\xb6\x8a\xd5\xb0\xf0\x17\xd2\x71\xa2\x99\x99\xa8\xb0\x2c\x49\x81\x58\x69\x72\xf5\x97\xff\x20\xb8\x45\x42\x93\x34\xf5\x32\x7f\xf9\x0f\x82\x91\xd8\x19\x52\x81\x8e\xa6\x40\xee\xf6\x24\x99\x49\xbd\x49\x70\x79\x25\x95\xb4\xae\xe5\xf6\xf7\xe7\x83\xbf\x3c\x90\xc0\xff\x9a\x7f\xb3\xfd\xf7\xfc\xbb\x6b\xe6\xa7\xff\x51\xb5\xcb\xc2\x2f\xbb\x2c\x78\x05\xc0\xd2\x78\x23\x36\x95\x0a\xed\x9c\x47\x98\x63\xa3\x62\x40\x50\xf8\xe8\xb3\x89\xe0\x22\xea\x80\x94\x8a\x40\xa4\x87\x16\xf5\x9e\x0a\x87\x54\xb0\xc3\x31\xca\x1b\x6d\x36\x85\x00\x73\x09\x0a\x8b\x11\x51\x6d\xc0\x24\x84\x3c\x64\xd5\xaf\xad\x62\x78\x9a\xac\xed\x96\x67\x40\xff\xcb\x7f\x50\x8f\x25\x33\xc6\x0b\x1a\x0e\x2b\xcd\x90\x0f\xe4\x4e\x19\x25\xca\x7d\x25\xfd\xa8\x50\x37\x66\x96\xfe\x42\xca\x79\xbb\x6c\x32\x29\x71\x81\x54\x35\x30\x66\x2c\x24\x6a\x4f\x0a\x9c\x6d\x32\x6e\x14\xbe\x44\x6a\xdc\xf1\x36\x3c\x26\x54\x4a\xca\x23\xed\x31\x0c\xfe\xcb\x7b\xb8\x49\xae\x22\xdf\x54\xcf\xe7\xcf\x23\x7f\x27\xab\xa9\x56\xff\xf2\x1e\x78\x11\x14\x77\x32\x51\xde\x91\x97\x15\x57\x4b\xe1\x91\xa9\x07\xf8\xf0\xf3\xfc\xff\xb7\x17\xf7\x57\x1f\xf0\xd8\x65\xdf\xe4\xcf\xff\x3f\xf3\x2e\x4b\x5d\x76\x99\xf9\x93\xe9\xc6\x00\x4c\x3f\x2e\xe5\xc6\xe9\x02\xe2\x59\xfa\xbd\x8a\x10\x0c\xc4\x09\xac\x3d\x4c\xf3\xf1\x80\x73\x92\x14\x6e\x1b\x27\x7d\x6a\x8a\xb2\x84\x08\xa3\xd5\x19\xaa\xba\x26\xab\x78\xa9\xf1\x75\x4a\x8f\x21\xb7\xbc\x85\x41\x08\xe5\xb3\x69\xac\xdc\xb4\xee\x69\x4a\xb8\xe3\x13\xe5\x93\x1a\xe3\x14\x2f\xef\x38\xe5\x5e\xd5\x5c\xca\x99\xc8\xe3\x1a\x52\x4a\xe6\xe4\xa5\x14\x79\x2d\x3a\xd9\x58\x32\xa9\x60\x56\x23\x4b\xfa\x38\x39\xa9\xa6\x54\xe7\x9e\x44\x10\x59\xa1\xe3\xa8\x2e\x5a\x14\x43\xbe\x3e\x72\x57\x6f\x4e\x78\x98\x7c\x71\x76\x4d\x4f\xec\xff\xf8\x0f\x74\x94\xd3\xe4\x58\xe5\xdc\x5f\xfe\x03\xcf\x12\x65\x90\xa2\x24\x5d\xcf\x63\x40\xc1\x50\x7c\x24\x97\xb9\x46\xa9\x86\x14\xb4\x48\xe6\xdf\x7e\xe4\xff\x78\x30\x07\x77\x39\xf8\xd3\xff\x78\x5b\xb3\xcb\xf2\xb8\x5d\x66\x67\xed\x32\xce\xf1\x27\x15\x01\x1e\xdc\xbe\xc4\x1e\x36\x09\xc0\x6e\x73\x4b\xca\x27\x09\xe6\xf9\xce\x32\x0e\xb8\x7c\x03\x3b\x09\xa7\x27\xe1\xb6\xbc\x40\xa3\xc8\xc7\x7b\xc6\x34\x93\xda\xa5\x2e\x26\xb0\xfc\xcb\x7f\xd0\x9d\xa2\xca\x19\x1f\x90\xb8\xa8\xf9\x96\xca\x65\xab\x24\x59\xa5\xae\x4a\x41\xbb\x77\xcb\xf6\xff\xf2\x1f\xe4\x3f\x53\xde\xc6\xb5\x2b\xa8\xc8\x3e\xa1\x84\x67\x92\x94\x1c\xa4\x82\x29\x81\x45\x1c\x4a\x1a\xff\xc7\x7f\x50\xa4\xd0\x0e\xbe\x50\xf5\xfe\x3f\xfe\x03\x0b\xc5\x0c\xb7\xa0\xc0\xc2\x2b\x4b\x29\xa7\xb0\xca\x32\xf1\xb0\x51\xf7\x51\xa2\x25\x05\x7f\x79\x0f\x9c\x4f\xa9\xef\xa9\x7a\xfc\x76\xff\x7b\x0e\x16\xfd\x7f\xde\x03\x3f\xeb\xbd\xf5\xa7\x0f\x53\x19\xb3\xcb\x3c\xd9\x5d\x66\xd1\x03\x5c\xe4\xf8\x63\x28\xc4\x76\xf7\x39\x54\x1a\x80\x7e\x86\x6e\xd8\x5f\x0c\x80\x5d\xfc\x7a\x97\x7b\x25\x00\xcf\x27\x7a\x26\x5b\x2c\x7c\x10\x59\x62\xde\x67\x4e\x07\xf2\xf2\xa3\x4f\x87\x8d\x44\xe1\xa4\xaa\x0c\xb7\x99\x8e\x35\xf5\x93\xf6\x29\x7e\x03\xed\x38\x6a\x86\xd1\x69\xe1\x02\x0d\x14\xd5\xcf\xf2\x93\x68\xbc\xf2\x12\x35\xdd\xd9\x4c\x44\x59\xf1\x2b\xd5\xdc\x27\x4a\x5c\x52\x9e\x85\xca\x11\x6e\x28\xf9\x43\x3a\x90\xfa\x20\x69\x52\xea\xbe\x24\x9a\xb2\x9c\xfb\x4a\xf6\xb9\x18\x1f\x95\xf5\x85\x98\xa4\x9e\x08\x3b\x85\x50\xfb\x4a\xba\x49\x88\x85\xf2\xb9\xbd\x41\x66\x5a\xa0\x91\xd2\x38\x20\x24\xfb\x86\xff\x14\xa5\x7c\x52\x46\xb6\x85\xf7\x22\x65\x61\xf9\xb2\x54\x3b\x8f\x34\x85\x80\x3e\x23\x99\xc5\x5d\x4b\xbd\x4b\xa9\x13\x8f\xf9\x2b\x0f\x8f\xa9\xbd\x54\x7d\x7e\x53\x00\x26\x51\x6e\xf2\xa1\x74\x00\x76\x67\x4e\x16\x5a\x3c\x00\xff\x32\xdf\xe1\xd3\x2f\x01\xa4\xc3\x05\xaf\x5e\xec\x04\x50\x39\x24\x42\xb8\xe1\x0a\xa0\x4b\x2b\x51\xcd\x10\x0e\x60\x10\x23\x3b\xcb\xd6\x0a\x60\x52\xa1\x7c\x9c\xab\x0c\xda\xcd\x1e\x69\xa6\x8b\x49\xc3\x33\x93\x0d\x83\x7b\x0a\xdf\xa8\x89\xa6\x07\xcc\x6a\xb4\x31\x14\x82\xb1\xb2\x93\xa0\xa9\x2a\x99\x6c\x98\x13\xa0\xed\x18\x42\xce\xd5\xd5\x8c\xcd\x72\x75\x22\x6d\x69\x39\x65\x75\x79\x8f\x93\x18\x35\x1e\x94\x0c\x05\xfd\x46\xa4\xaa\x20\x6a\x6b\x82\x0f\x10\x69\x94\xbd\xdb\x8c\x23\x77\x08\xf3\xf2\x1f\x06\x0d\xa2\xce\x11\x5e\xcb\x54\x7f\x33\x8d\x0a\xc5\x37\x4a\xa9\x6e\xd1\xc5\xaf\x11\x42\x25\xa4\xd1\x17\xa2\x5c\x09\x68\xf1\x12\x74\x7d\x78\xdc\x2f\x0f\x04\x5f\x22\x8a\xc6\x46\xfa\x31\x6e\x92\xc4\x99\xb0\xb3\xbe\xcc\x3f\xd8\x25\xd2\x70\x97\x7c\x92\xbe\xdd\x92\x3a\x8e\xd3\xf5\x7e\xff\xcb\x7f\x18\xe4\x91\x36\xc6\x7b\xbb\x62\x7a\x2e\xc8\x18\xe0\xd7\x9d\x5f\x76\xa2\x64\xba\x08\x37\x9d\x8c\x5b\x3f\xcb\x32\x10\xdc\x1d\xd4\x00\xee\x93\x38\x53\x0f\x9d\x03\xe0\xf4\xe3\xe5\x3b\x79\x13\x40\x08\xc5\xf3\xfc\x74\x05\x80\x1c\x0b\xdf\xbd\x0b\xba\x00\xea\x7d\xa2\x74\xb7\x1e\x02\xe8\x25\x49\xbc\x65\xd4\x06\x30\x39\x29\xd5\xc9\xf2\x1e\xc0\xac\x4f\xe9\x04\x57\x09\x4c\x5b\xfd\xae\x66\x2d\x72\x0a\x9e\x59\x8a\xe8\x31\x28\xea\x51\x13\x4c\x13\x4c\x0b\xb5\xe7\x29\x19\x66\xbc\x0e\x46\x96\x33\xe4\x66\xe3\x66\xbf\xdf\x5d\x6e\x93\x99\x0c\x78\xa2\x3c\x3d\xdf\x92\x0e\xe8\x1e\xcc\xea\x09\xb6\x23\x56\x69\x7e\x2c\x2e\x0d\x1d\x23\xe0\xd5\x36\xea\x9a\xa2\xb2\x09\x3a\x2a\xa2\xed\x33\x71\x0c\xf8\x0d\x05\xea\xf0\xcd\x04\x59\xfc\x1d\xd9\x98\xf9\xd5\x64\x02\x0e\x25\x95\x8a\x98\x4c\x11\x22\xd0\x48\x9e\x46\xa9\xc5\x6e\x10\x3c\x25\x74\xd1\x07\xa2\xfa\x7f\xed\x45\x41\x59\x8b\xf7\x61\x52\x82\xab\x7e\xed\x43\xf9\xe5\x81\x8c\x4d\xc8\x54\x61\x3b\xfd\x97\x06\x09\x32\xd9\xb8\x7a\xaf\xd1\xf7\x9f\xe4\x9e\xe2\x5e\x7b\x0b\x77\x5a\xc8\xdd\xc7\x87\xba\xfd\xe5\xc1\x34\x2c\xc9\x8f\x11\x1e\x3a\x0d\x03\x3c\xc8\xe0\x34\x3a\xcc\xf5\xb7\x07\x21\x76\x91\xe7\xfa\x19\x69\x00\x85\x2b\x7c\x67\x2e\xe0\x01\x34\x97\x84\x24\x6f\xe8\x02\x18\x7d\x16\x7f\xc4\xd8\x02\x60\xf6\x52\x72\x8b\xf5\x1e\x80\x0d\x8b\x42\x06\xcf\x03\x58\xb4\x0d\x54\x49\x13\x6e\x06\x31\x1b\x67\x9d\x7b\x0a\x69\x54\x7e\x2b\x26\x53\x69\x83\x0d\x8a\xbd\x05\xc1\x26\xde\x3a\x8c\x6c\x6b\x76\xdc\x3b\xd0\x9d\x96\xe4\x62\x24\x1b\x7d\x30\xe0\x14\xd1\x46\xdf\x22\xe3\x4d\xc4\x49\xe2\x55\x2d\xc9\xb2\x43\x91\x1b\xf8\xef\x9a\x0a\x75\x57\x12\x7b\xf0\xf5\xaa\xea\x1d\xe2\x49\x52\x7f\xed\x45\xf1\x95\x0b\x9c\x0f\x4e\x2f\xc5\x0e\xcb\x30\xef\x70\x66\x05\xe0\x6d\x25\x97\x90\x91\x89\x66\xbf\xf6\x80\xe0\x22\x24\xc2\xd1\xac\x51\x0f\xd7\xbf\x4a\x99\xa0\xed\x22\x71\xdf\x13\xa5\x5a\x30\xed\x21\x8c\x9f\xd3\x65\x8f\x62\x69\x83\x83\x87\x85\xe4\x69\x31\xb8\x90\xd8\xde\x2e\x79\x7a\xdc\x7e\x7f\xc1\x77\x3b\xf2\xec\xb8\x4e\x6f\x91\x96\x24\x45\x09\xdc\x0b\x1f\xcb\x86\x29\xc5\x1a\xbc\xaa\x47\x78\x15\x28\xa5\xe0\xd1\x2e\x00\xf0\xe8\xd0\xb3\xd6\x23\x14\x00\xee\x6f\xcf\xbe\x1d\x9f\x07\x90\x34\xe3\x1a\x3d\x63\x0c\xa0\x94\xc5\xb3\x7c\x61\x0a\x40\x4f\x49\x70\xea\x66\x2f\x80\x09\x9f\xa8\x28\x03\x23\x80\xd5\x63\xf1\x1e\x16\x11\x00\xfb\x1f\x72\x52\xdc\xa7\xa1\xcf\x09\xaf\xbc\x24\x36\xf6\xd7\x5e\x10\x79\xbb\x77\x46\xc5\x06\xfa\x94\x3b\xd6\x35\x56\x89\x76\xdd\x64\x5a\x8b\x2d\x0f\x0f\xaf\x58\x62\xa7\xd9\xc9\xf0\x67\xa1\xad\xc4\xc3\x86\xde\x69\xbf\x45\xad\xe2\xd7\x75\xb3\x4a\xe8\x12\x89\xf8\xbb\x5a\xdf\x6b\xe3\xd3\x18\x70\x46\xea\xc7\x3b\xbf\x67\xbe\xc7\xae\x2b\xc1\x28\x3e\xdb\x0b\x7b\x5d\xce\x61\xf5\x56\x9e\xc4\x5f\xde\xc3\x8e\x54\x06\xe2\x73\x8a\x22\xfe\x94\x94\x19\xf2\x40\x72\xe8\xce\x43\x29\x46\xd4\x54\x8c\xec\x82\x81\xac\x14\xca\x21\xfe\xe6\xa4\x84\x6c\x38\xe6\x50\x84\xe5\xe8\x5d\xf9\xa7\x18\x85\xf0\x92\xde\x5c\xc5\x10\x4c\x74\x38\x6b\xc7\x8e\x52\x0b\xf6\x68\xe8\xd9\xb7\x9b\x4a\x76\xb8\x9b\xfe\x9e\x8d\x06\x4a\x68\x9c\x8b\xef\xe7\x1a\x8a\x72\x2f\xfe\xbc\x97\x79\x39\x9d\xaa\x31\x5e\xc2\x33\x0d\xe0\x91\xd4\xd3\xca\x23\xcb\x00\xfc\x1a\xcf\x18\x4f\x68\x01\x48\x79\x70\xb1\x9e\x11\x06\x50\x59\xe4\x2a\x3e\xff\xe1\x1f\xfb\x51\x4a\x84\x38\xe8\x1f\x03\xd8\x9e\x11\x53\x7d\xb0\x02\xe0\x74\x5c\x86\x89\xf3\x3e\x4c\xba\x3a\x2b\x9d\x17\x0d\x06\x5e\x57\x23\x8d\x02\x45\x0a\xf5\xa9\x33\xad\x21\x87\xd1\x6f\xe4\x25\x9b\x75\xeb\x93\x8e\xb1\x24\x7f\xeb\x3c\xb7\xaf\xfe\xba\xc4\x00\x0b\x86\x10\xc6\xf0\x34\x82\x80\x71\x4c\xaa\x73\x02\x0b\xfe\x82\x7e\xff\x8b\xcc\xb4\x39\x1c\xbd\x8e\x6c\x9d\x5b\x76\x3a\xd6\x5f\xfd\x53\xd7\xfb\x3c\x3e\x8c\x81\xf2\xe6\x67\x28\xac\x43\xeb\xca\x87\x6c\xbc\x2f\xf9\x0d\xf3\x4e\x36\x6f\xab\xf5\xf9\xdb\xbf\xf2\x61\x2a\xad\x89\xa0\x4b\x57\x5e\xb9\x2b\x6b\x86\x94\x4f\x4e\x98\x6e\x93\x03\xd4\xcd\x84\x95\xb1\x30\xc5\x04\x14\x57\x22\x47\xbf\x9c\xd2\x36\x9a\x23\xd6\xf3\x5d\xa7\x72\x22\xe6\x5e\xa4\x5f\x5b\xa3\xf2\x28\x66\x38\x2c\xe0\xf5\x59\xd5\x54\x6c\x6e\xd0\xd4\x2f\xff\xa3\xac\x40\x3d\x01\x57\xee\x1b\xfe\x02\xaf\x91\x8f\x1b\xf1\x59\x07\x78\x6a\xfb\x54\x9f\x76\x0c\x40\x20\xf8\xe9\xf6\x89\x20\x00\x59\x1e\xce\x0f\x67\x06\x01\x34\xb6\x9f\xa9\x9f\xd3\xfd\xdb\x83\xb0\x3a\x25\x10\x7f\x57\x03\xc0\x39\x53\xb4\x99\xcd\x0b\xc0\x43\x53\x66\x2f\x0f\x0e\x90\xbe\x7a\xb2\x5b\xc2\x7d\x20\xeb\x73\x5d\x55\x58\xf1\x16\x95\xc7\x43\x46\xaf\xd4\x10\x45\x9e\x70\x44\x58\x74\x3a\xb9\x93\x1e\xd9\x2f\x3b\xd8\x04\x66\x13\x7c\xad\x0d\x82\x56\xe2\x2a\xf0\x42\xe6\xb7\x92\xee\xa4\x49\xe2\x14\x0c\x95\x5f\x98\x66\xb3\x60\xde\xe9\x4e\xbd\xb6\x2b\x34\x40\x6f\x6a\x9d\xe8\x5a\x2e\x8e\x45\x1b\x2a\xcf\x7f\x4b\x2c\x19\xf9\xb5\x17\xe5\xd7\x1e\x90\x5f\x79\x58\xbf\x2c\xbf\x7f\x7b\x33\xc7\x7e\x66\x40\xa1\x19\x21\x97\xc1\x31\xaa\xa3\xbc\x8d\x08\xcf\x78\xd6\xff\x5d\x25\x00\xb9\x9a\xfc\xb4\x2b\x59\x25\x0c\xad\x1c\x6b\xd4\x92\xa2\x96\x84\xf6\x88\x7d\xd0\xc0\xae\x6e\x8a\x51\x8e\xf4\xad\x94\xd6\x94\xc2\xcc\x86\x0b\xbe\xe4\xd1\xc8\xc5\x1d\x0e\x7c\x50\x80\xd2\x36\xc1\x1d\x0a\xcc\xcf\x1d\xd1\x36\xc1\x7d\xf4\x55\xfa\xf3\x96\x63\xdf\x7f\x74\x0d\x40\x30\x8e\x7d\xf0\xc4\xe5\x7f\x78\x10\x9b\xcf\x4e\x9d\xcf\xfa\x3b\x0f\xf6\x6f\xf8\x96\xef\xf6\x02\x78\x88\x8b\x3c\x60\x7b\x0d\xe0\x43\x16\x47\x71\x5e\x01\x82\x9f\xa3\x2c\xbd\xf0\x15\x50\x09\xe8\x52\xe6\x54\x98\xa7\x32\xf8\x49\xeb\xb8\x1b\x0b\x92\x7d\x3d\x08\x66\x15\x6e\xe2\xc4\x1e\x27\x3a\x87\x7d\xa1\x67\xf0\x58\x5b\x6a\x00\x6b\xd2\x39\xdc\x2b\x8b\xc0\xc4\x81\xcc\x42\x8c\xab\x69\x4a\xc1\xa7\x17\xe2\x18\x06\x7d\x54\xad\x48\x31\x33\xca\x4b\x9b\xef\x3d\x73\xb9\x1e\x52\x45\x75\x66\x6a\xb1\xaa\xf1\x97\x07\x82\x76\x93\x37\xda\x58\x2d\xce\x40\x3b\xc8\x7d\xdf\x8c\x2e\x2a\x59\x7c\xa2\xf8\x79\xcb\xbb\xa0\xe1\xcb\x61\xe5\xad\x9d\x23\xb9\x8a\x43\x37\xd4\x78\x76\x8a\xb3\x87\xbb\xb6\xd4\xf2\x90\x8d\x29\x86\xad\x36\xea\x1f\x51\xb6\x89\x23\x0d\x5e\x9a\xe7\xd0\x6c\x71\x33\x55\x4f\x35\x6b\x30\x8e\x91\xea\xa5\x1a\xda\xd9\x98\xb1\xf0\xa9\x22\x59\x1d\x75\xac\x68\x68\x63\x9e\xbb\x2e\x0d\x76\x2b\xc8\x36\x8b\x5e\xd7\x1e\x17\xe3\x7f\x0c\xe0\x99\xe4\x13\x73\xda\xa3\x00\x62\x6d\xec\x2c\x27\xf7\xfc\xed\x41\xe8\xb3\x3d\x76\x3d\x43\x00\xb0\xd6\xe4\xd0\xb9\x42\x06\x70\xe1\xe0\x5a\xb9\xf5\x19\xc0\x77\x58\xc0\x85\xe5\x00\x40\xf0\x17\xe1\xa1\xa7\xcc\x00\xe1\x8e\x92\x1e\x42\x4a\x20\x16\xe1\xac\x30\xa4\x74\x8a\xca\x1f\xdc\xaf\x99\x6f\xc4\x44\x0e\x0a\xd0\x34\xbe\xe0\x26\x40\x94\x72\x13\xb5\x67\x8c\x18\xc5\x73\x39\xac\xf9\x96\xa5\xd9\x62\xe9\x6d\x7d\x63\x39\x0a\xf4\xd1\xe5\xe6\x26\xf9\x71\xa5\x4d\xa8\x30\xc3\xd1\xba\x86\xf2\x69\xc4\xba\xae\xd8\xfb\xcb\xb5\x97\xb6\x03\xd4\x19\xbe\x7f\x6c\x6c\xfc\xdf\xbd\x28\xeb\xd1\x8a\xe3\x1b\xf9\xa5\xbf\x4d\x7e\x50\xfd\x7d\xeb\x71\x91\xf8\xd0\xa6\xba\xc0\x76\xd8\xf3\xaa\x9e\x46\x4d\xbf\xed\xcd\xbc\x89\x66\x56\xed\x14\x84\x77\xe6\x74\xc3\x4b\x6d\x63\x64\x42\xea\x58\x45\xbd\xde\x5e\xd4\xd9\x14\xd6\x52\x65\x7d\x3a\x54\x77\x62\x7c\xc1\x59\xfd\x6d\x74\x6f\xac\x4c\x4e\x87\xc1\x61\x4c\x53\xc4\x6a\xe6\x67\xfd\x72\x6c\x74\x48\x5b\x72\xb7\x21\x2f\xee\x68\x90\x00\x00\xe7\xc7\xc7\x6f\x69\xf9\xff\xde\x8f\xf2\xcb\x83\x30\x66\x61\xf7\x39\xdf\x0d\x60\x25\xc1\x2e\x75\xb1\x08\xc0\xfd\x05\xc7\xf1\x1b\x6d\x00\x01\x78\x3e\x0d\x66\x5b\x80\x70\x2b\x21\x37\xf6\xaf\x00\xd1\x77\x24\xec\x85\xde\x82\x7d\xec\x31\xd9\x5e\xf9\x8b\xd4\x73\x51\x5a\xea\x13\x26\x56\xe4\xb6\x70\x1a\x7d\x7e\x97\x43\xc4\x07\x3e\xfa\x36\x5a\x91\x1f\x70\x72\xae\x73\xee\x6b\xd9\x76\x98\xa3\x0e\x3e\xd1\x67\x4a\x4c\x90\xef\xac\x52\xf3\xf7\x56\x3f\x42\xf8\x9a\xf8\xd4\x9f\xad\xbf\xb5\xed\xab\x7f\xaa\xdf\xb0\xe9\xf5\xd6\x94\x3a\xeb\x0f\x62\x73\xe8\xce\x2d\xd5\xff\x47\xd9\x5f\x46\x55\xb5\xb6\xff\x1f\xa8\xee\xad\x58\x28\xa2\x62\x17\x06\x28\x28\x21\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\x20\xdd\x29\x28\xdd\x08\x8a\x82\xa2\x28\xa2\xa0\x82\x80\xa0\x48\xf7\x4a\x16\x8b\xb5\xae\x33\x9e\x9f\x2c\xdc\xba\x9f\xe7\xfc\xcf\x79\x75\x0d\xc6\xf0\xcd\x7d\x8f\x39\xef\xb9\x9c\xdf\xcf\xfc\x7c\x0d\x66\xfb\x5b\x72\x37\xd6\x55\x27\x17\x54\xeb\x12\xbe\xa9\x69\x3c\x59\xb2\x7e\x74\x76\x30\x46\x67\x7d\x39\xbc\x12\xdb\x3b\xad\xcf\xb3\xf2\xba\xfc\x5d\x57\x9b\xbe\xf5\xda\x70\x61\x41\x13\xca\x88\x75\x9d\xad\xe0\xcd\xa3\x1b\xc6\x5f\x36\xe2\x72\xf4\xcb\xba\x4c\xcc\x11\xa8\x74\xfa\x42\x7d\x93\x49\x14\x45\x72\x75\xce\xb4\x29\x11\x15\x9e\xf8\x32\xa3\xcb\x4c\x1a\xad\x1f\x8b\x49\xc3\x9b\xbe\xc7\xf0\x47\x16\x26\x8e\x99\x05\x63\xf7\x85\x96\x03\x08\x92\xb1\x87\x52\xa4\xfe\x9b\x83\xb0\xbc\xc8\x02\x67\xa2\x00\x5c\x82\xd9\x95\x2f\xf6\x03\xf8\xa1\xb8\x9f\xdf\xa4\x04\x88\x4a\xe6\xdf\x60\x64\x07\x88\x0f\x10\x36\x64\xff\x01\x90\xac\x26\xd9\x2d\x5a\x0d\x1e\xe9\x95\xb2\x5d\x8a\xed\x44\xb9\xb4\x5b\x6a\x46\x26\xd9\xdb\x41\x71\xa1\x86\xac\x9e\x1e\x5b\x67\x23\x3c\xad\xef\xc6\xc6\x63\xea\xbc\x15\x3c\x6d\x0a\xf2\x90\x55\x1e\x26\x11\x0b\xd5\xc7\x37\xf6\x38\xd6\xe4\x65\xb4\x88\xac\x8e\x58\x7d\x6f\x12\xef\xe4\x5a\x9e\x32\x65\x78\xcd\xd7\xfd\x69\xd9\x53\xb7\xe4\x5b\xf6\xb3\x83\x24\x2f\xca\xfc\x29\xad\x92\xd9\xe5\x96\xee\xf7\x15\x06\xcc\xf3\x93\x8d\x0e\x2f\x6e\x1a\xd6\x2d\x39\x57\x07\x75\x36\x19\xb5\xae\x68\x3f\x88\xaf\xff\x68\x1a\xb7\x1a\x51\xe6\xf7\xa8\xc2\xd4\x76\x5d\xa8\xf0\x50\xe9\xb4\xf9\xed\x0d\xb5\xdc\xa8\x02\x71\xf3\x65\x84\x63\x66\x64\x56\xaa\xe5\x05\xa4\xc4\x7d\x8d\xfb\xad\x96\x7d\xc8\xc5\x94\xe7\x49\xc7\xad\x78\xd1\x97\xe3\xdd\xe2\xf5\xad\x9c\xd0\x95\x31\xe3\xd1\xbd\x56\x9e\x18\xff\x88\x66\x00\xa1\x49\xb6\xa3\x14\xf7\x00\xe4\x03\x58\x46\x28\x25\xfe\xcd\x41\xb8\x87\xb0\x79\x5c\xec\x03\x08\xb1\xe7\x3c\x77\xbd\x0c\x20\x66\x9b\x67\x83\xbe\x17\x20\xc5\x5f\x88\x87\x43\x0d\x20\xf3\x88\xf8\x3e\x11\x26\x08\xcc\x39\x26\x73\x56\xf1\x04\x51\x27\x07\xab\xac\x66\xdc\xb5\x6d\x98\xde\xa6\xeb\xe5\x55\x8c\xab\x4f\x74\xb6\x38\x90\x20\x85\x39\x10\xaa\xe3\x6a\x5b\xbc\x81\xf8\xdb\x8f\x3f\xa8\xb5\x91\x62\x15\xe7\x26\x95\xd5\xdf\xa9\xb7\xd4\x6b\x3f\x5c\x5f\xde\x7b\x85\xc4\x81\x90\x3c\x20\x24\x4f\xcc\xa7\x3a\x43\xcb\x99\xd6\x0e\x86\x57\x16\xc6\xf3\xf3\xd7\x9b\x63\xda\x17\xcc\x57\x17\xaa\x1a\x12\xeb\x53\x2d\xac\x96\x05\x1f\xb1\x3f\x54\xb1\xa4\x5c\x99\xa8\x18\x2a\xfd\x6e\xa5\xb7\xb6\xb7\x34\x26\x57\xcd\x5a\x79\xe3\x48\xde\x7a\x3a\xb3\x6d\xfa\x86\x55\xee\x60\xf2\xb6\xad\x17\xe2\x49\x46\x7f\x7c\xbb\xed\x24\xb2\x25\xf5\x7b\x4c\xa9\xad\x1f\xea\x59\xa2\x52\xc4\x7b\xdb\x1f\xe8\xf0\xd8\xa7\xe1\x54\x36\xc5\x98\x98\x88\x44\x00\xf1\x07\xf7\xd6\x28\x8e\x02\xa8\x6a\xdc\xbb\x49\xe9\x05\x60\x2c\xcf\x6c\x76\xea\x20\x80\x3d\x17\x8b\xfc\x59\x1f\x00\xdf\x78\x96\xf2\x8b\xf1\x00\x51\xe7\xd8\x3c\xae\xdd\x00\x48\x5c\xe2\xce\xa5\xaf\x02\xc8\xd4\xe5\xfb\xc0\x4a\x01\x50\x30\x22\xec\x2d\xc8\x01\x4f\x4a\xd5\xc5\xc5\xa4\x17\x89\x89\x65\xac\xf2\x02\x06\x49\xdb\x2e\x45\x06\x9a\xec\x9e\xd5\xb8\xf4\x6c\x56\xe3\xc2\x84\x11\x74\x69\x62\x89\x03\x65\x69\xfd\xfa\xb9\xc0\xcd\x40\xc1\x76\x96\xe5\x43\x3e\x73\x69\x2a\x3d\x6b\xf3\x19\xae\x14\x35\xb1\xfd\xe8\x1f\x01\x96\xef\x3f\xe9\x7f\x70\x22\x79\x51\xbe\x29\x19\x6f\x7e\x4d\x7e\x19\xd6\xaf\x61\x3e\x3e\xad\xf9\x54\xa6\xe3\x8e\x75\xf9\xec\xc9\x8e\xf4\xda\x61\x9b\x8a\x05\x96\xa6\x93\xe5\x5a\x76\xd2\x4b\x46\x35\x84\x7c\x6f\x7b\xf4\xf2\xf2\xc3\xa3\x59\x31\x0e\x36\xab\xaa\x15\x14\x69\xa7\xed\xfb\xd7\xb3\x0b\x7a\x12\xe3\x1d\x7b\xd6\xbb\x0b\xf4\x63\x36\x1d\x9b\x11\x7c\x59\x84\x88\x7c\xa7\x2b\x48\xd9\xfb\x9f\x83\x27\x9d\x9e\xa2\xe4\x93\xd3\x82\x1c\x1d\xeb\xd0\x7c\xf1\xa2\x81\xb4\x0e\x73\x68\x64\x74\x2f\x80\x24\x91\xe9\xd3\x31\xad\x7f\x70\x10\x4e\x4c\xae\xff\xb9\x2f\x9c\xd5\x18\x7f\x9c\x36\xfd\x87\x1f\xe5\x0c\xeb\x01\x6a\x36\x80\xb4\x40\xf6\x65\xda\x4f\x00\x05\x09\xdc\xe7\x98\x7c\x01\xca\x9e\x09\xf6\x09\x14\xc1\x93\x87\x67\x45\x53\xa5\x27\x88\xd5\x35\xcf\xa5\x27\xf5\x52\x09\xa7\xaa\xc2\x94\xb7\x9c\xd0\xb8\xaf\x65\xf5\x7a\x2e\x71\x0f\xd1\x7e\x39\xa1\x56\x33\x65\x7c\xab\x3f\x62\x84\x7d\xaf\x74\xd6\xcd\xf5\x84\xd9\xc6\x25\xbd\x9d\x99\x5e\xf6\x91\xac\xc2\x0d\xdf\x99\x4a\x72\xa0\x1d\x1c\x19\x71\xfe\xe1\x61\x39\xf1\x49\xe5\x83\xff\x5b\x72\x3b\xfb\xb1\x8a\x37\x9e\x9d\x43\xf6\x94\xdf\x8a\x9f\xbf\xad\x9d\x72\x8c\xfa\xf1\xb8\x2b\xab\x44\xd4\xb9\x6d\x0e\xd7\x2a\x9b\xa3\xef\x12\xbf\x68\x5f\xdf\x9d\xbe\xd7\x65\x63\xf9\x5e\xb5\x52\xa2\xac\xeb\xd6\xca\xd2\x83\x94\x68\x2e\xb7\x92\xb5\xc2\x12\x9d\x28\x55\x57\x8b\xf5\xee\x82\xe8\x50\x3d\x37\xd5\x8d\xb7\x39\x43\x81\xd2\xee\x3c\x88\xf8\x4c\x9c\xdf\x51\x37\x31\xd4\x89\x94\x06\x6f\x13\xb7\x1b\xa8\xe9\xc4\xbd\x9e\x78\x57\x25\x74\x55\xac\x10\x80\xf4\x36\x53\xd1\xb1\x3c\x00\x4d\xd7\xbb\xce\x14\xbc\x00\x96\x57\x19\x8a\x4e\xde\xfc\xc5\x41\x84\xdb\x32\xf2\x9f\x17\x01\x48\xfa\xce\x1c\x71\x25\x07\x20\xcb\x95\x25\xfd\x46\x34\x40\xd9\x22\xa7\x09\x63\x33\xc0\x23\x13\x01\x2e\x01\x63\xf8\x50\x6f\x29\xec\x2b\xc5\x4d\xec\x6c\x3e\x25\x39\xaf\xeb\x49\x20\x6f\xd6\x50\x78\xe5\x34\x81\x9b\x6c\xfc\xa8\x69\x18\x77\x1e\x7d\xbe\x92\xd5\xb4\xb9\xbc\x70\x55\x21\xcb\xda\xcd\xe8\xc9\xed\x1f\x16\x31\x2b\x51\xa6\x43\xb5\xe3\xb9\xc1\x6d\xd5\x66\x13\xeb\x5f\x82\xbd\xa4\xfb\xd4\x27\x11\x43\xf4\xee\xe7\xde\x59\x7f\xb9\xd2\xf9\xd0\x43\x6f\x44\xfc\x3d\x4f\x55\xbe\xd7\x85\xaf\xab\x7d\xe5\x05\x0f\xbc\x36\xa6\x2f\x3f\x3b\x90\x15\xee\x89\x9d\x7d\xd0\xa1\x93\x3c\xee\xf5\x7c\x81\xa7\x69\x32\xe1\xb0\xd7\xc1\x25\xbd\xda\xc6\x28\x61\xaf\xbf\x57\x0a\x2a\xd3\x82\xe6\xbd\xcb\xd7\xb8\x4a\x07\x76\x3d\x20\x39\x9e\xeb\x1b\x83\x39\x5f\x7d\xed\x3d\x00\xf1\x24\x53\xd8\xdb\xcb\x63\x0f\xea\x68\xca\x80\x57\x8f\xfb\x7b\x94\x6b\xf2\x3e\x8f\x41\xd7\x79\xf4\x68\x8c\x0e\x80\x9c\x2c\xd3\xfe\x63\x2d\x00\x7a\x62\x77\xfb\x8e\xeb\xfd\xe2\x20\xbc\x85\xef\x50\x9f\x2a\x05\x88\x0a\xb9\x9b\x73\x8e\x1e\x20\xd5\x81\x51\xe9\x92\x27\x40\x31\x37\xb3\xe8\x75\x6b\x80\x47\xeb\xac\x64\x74\x32\x00\xcd\x2b\x5c\x41\x1c\x64\x30\xf1\xd8\x58\x90\x5a\x92\x17\x0e\x77\xe7\x88\x36\x6a\x38\x12\x44\x7b\xe6\x65\x78\xed\xdf\xe3\x26\xba\x35\x54\x2d\x63\x53\x50\x4d\xad\x2c\x06\x63\x15\x13\x2b\x2e\x95\x1e\x0e\xa7\xbb\x69\xbe\x05\x65\x70\x87\xdb\x7c\xde\x18\x42\x25\x54\x54\xb8\xcf\x46\x0d\x27\x87\xa4\x3d\x25\x9b\x79\xd5\x65\x14\x88\x18\x38\x38\xd6\xf7\x80\x2f\xe4\xfe\xc7\xf9\x61\xa3\xac\x8f\x21\x25\xe3\x88\xfe\xc9\x94\xaa\x60\xae\x6f\x95\x3d\x2f\x63\x1c\x83\x9e\xcc\x4c\x77\xb2\x46\xac\x04\x4e\xce\xdf\x69\x75\x0d\x9d\x09\x70\x58\x5c\xa9\xdb\x0a\x56\xf7\xb3\x59\xb1\xa9\x92\x0c\x0c\xf7\xa5\x5c\xa3\x28\x53\xf7\x8f\xf5\x91\x5c\x8f\x2c\xf4\xf4\xd5\xf2\x8d\xda\x70\xcc\x13\xf2\xa6\xf7\x61\x40\x1e\xcd\xd8\xef\xd1\xe6\x63\x80\x12\x4b\xfe\xec\x86\xf6\x91\x45\xd3\xc6\xf7\xb9\x1a\xfa\x18\xa3\x27\x62\xa4\x00\xe4\xe9\x19\x6d\x8f\x45\x00\xe8\xbf\xbd\xa3\x48\x51\x0c\x60\x8f\xbb\xed\x78\x5c\x1d\xc0\x3f\xf9\x96\xef\x89\xf3\x00\x71\xac\x74\x72\xa7\x35\x01\xb2\xfa\x69\x97\xa8\xe6\x01\xca\x4a\x19\x98\xae\xbc\x00\x68\x6c\x60\xae\xa7\x45\x01\x74\x04\x70\x08\xb1\xbc\x03\xe8\xa1\xe2\x15\x15\xaa\x82\x3b\x6f\xac\x84\xff\x56\x05\x82\xf5\x3b\x6d\x49\x0f\xdb\x47\x5b\xee\xef\x8a\x14\x54\x23\xa2\xd1\x1a\x6f\x9f\x69\x94\x96\xd2\xad\x88\x3c\x27\x33\xbb\xf8\x14\xbe\x92\x37\xbe\xf6\x55\x1f\xbf\xfd\xac\xb3\x6c\xb3\x70\x76\x03\xdd\xc3\x9d\x76\xa8\xf9\xd0\x52\x44\x09\x21\xad\xfb\xc5\xed\xef\x1a\x19\xf3\x71\xcc\xc3\x2b\x1f\x1f\x25\xcd\xc4\xd8\x8d\x75\xbc\xcd\x8f\x11\x8d\x6e\xfd\x16\xd1\x7b\x24\x5c\x20\x26\x78\x86\xad\xcb\x3b\x98\x2f\xca\x61\xe1\x64\xb3\x4e\x40\x70\x84\xfa\xd2\x60\x4d\xa1\x7f\x49\x68\xe4\x8a\x69\x95\xbc\x8f\x79\x28\x76\x4d\xaf\x54\x96\xe4\x43\xf1\xe0\x0b\x8d\x44\xfc\x9d\x73\x98\xe4\x43\x71\x51\x09\x2e\x43\xe5\x27\xb1\x38\xd3\x06\x3d\x40\xdb\xc7\x99\x39\x1f\x0e\x08\x45\x6f\x45\x37\x00\x28\x9f\x64\x78\x75\x6c\x1a\xc0\x38\x8a\xfe\xdb\xf1\xbf\x00\x9c\x39\x69\x2e\x1d\xe3\x01\x08\xe1\xbc\x65\x7d\xe2\x15\x40\xf2\x1d\xea\x77\xff\x39\x3f\x0a\xbf\xdf\xa4\x3e\x59\x08\x50\x43\x43\x4f\x7f\x69\x0f\x40\x47\xe4\x5d\xb7\x6b\x9c\x00\x2f\x0c\x58\x1e\x30\x9e\x03\x18\xbc\xce\x2d\x22\xa8\x0b\xbe\x23\x37\xf8\x9b\x15\x52\x09\xd8\xc9\x1c\xd1\xbd\x66\xb9\x5b\x23\xdf\x04\xa4\x5b\x42\x4a\xd1\x61\xdf\x5b\x95\x22\x8b\xf9\x96\x9f\xfe\xd8\xa3\x4d\xd1\x7d\x61\xbc\x60\x20\xd8\x59\x67\xc2\xb5\x7b\xbd\x8a\xba\x20\x0e\xa1\x59\xa9\xd2\xcc\x57\xd7\xbc\x12\x7b\xff\x54\xfd\xa7\x17\xba\xdf\x96\x62\xac\xca\x0f\x7e\xd4\x1c\x46\x46\x4c\x66\x59\x4d\xbc\x78\x5d\x14\xf4\x3c\xeb\xc7\xf7\x86\x67\xa3\x01\x6e\xe9\xf6\x33\x73\x8f\x37\x7c\x5f\x27\xdf\x59\x98\x69\x94\xf7\xae\x4d\xe8\x5e\x16\xa9\x56\xf4\xec\x88\x9b\x5f\xe5\xac\xe8\x72\x37\x8e\x3f\xbd\xd6\x50\x72\xca\x35\x32\x4e\x61\xe3\x74\xbe\x9a\xf3\x42\x4c\x32\x22\x22\x13\xe1\x14\x10\x1d\x89\xbc\x9f\x56\xe4\xf8\x3c\x92\x03\x15\x9b\xe4\x62\x97\x15\xf9\x0a\x8d\x8e\x7e\x60\xb7\x14\x6e\x88\x51\x8b\x7c\x09\xa0\x91\x45\xb7\x7c\xd4\xff\x57\xfe\xef\xae\x72\x6d\x88\xfc\xd6\x2f\x0e\x22\xdd\xea\xa6\xf6\x89\x5c\x80\xb2\x9d\xef\xd8\x1a\x71\x37\x68\x4e\x49\x00\x74\x5f\xbd\xd3\x40\xdd\x01\xf0\xee\x1d\x63\xf8\x2d\x35\x80\x31\x0e\x56\x04\xdb\x5d\x58\x99\x63\xe2\x39\x29\x31\x4b\xf4\x5d\x17\x15\x7c\xa8\xff\x01\x6f\x80\xcd\x11\x37\xf2\x37\x46\x27\xaf\xbd\x95\xb7\x2a\x92\x5a\xfe\xf0\xe3\x9c\x16\xe6\xe9\xd2\xc4\xdf\x83\x44\x07\xc2\xd8\x9d\x56\xca\xc7\xec\x69\x02\x8b\xc5\x99\xf2\x4f\x57\x1e\x6f\xcf\x75\x84\x8f\xbd\x59\x7c\x55\x38\x79\x39\xc0\xf2\x29\xf5\x47\xc2\xd0\x3b\xdf\xc2\xda\xac\xaf\x05\x7d\x44\x5f\xca\x32\xb6\xe9\x93\xdd\x38\x4f\xc3\xc2\xe5\xb9\xca\xb6\x93\x1e\x5c\xb9\x47\x16\x85\x1a\x38\xdc\x8e\x64\xdd\x5b\x7e\xf3\x30\xcf\x25\x20\x23\x63\xd5\xb8\xe2\x80\xd3\xbb\xfb\x14\xeb\x42\x45\x47\x1d\x93\x92\x17\x37\xe6\x72\x58\xec\xb1\x49\xbc\x48\xb1\xfb\xef\xed\xfa\x13\xa3\x51\x54\x29\x7a\xb6\xf6\x09\xe7\xd0\x57\xe2\x0b\x6d\x0f\xc6\x9e\x46\xe3\xa3\x7d\x6c\x74\x63\x74\x31\x4e\x91\xe7\x01\x34\xe2\x6f\x5b\x90\xc7\xfd\xda\x07\x9f\x74\xea\xe6\x23\x9f\x01\xa2\xaf\xef\x29\xf8\xcf\xba\x73\x77\x78\x88\x47\x0c\x3f\xf3\xcd\xae\xa9\xdf\xf3\xae\x51\xa9\xdb\xcf\x2e\xeb\x00\xcc\x8d\x31\xd7\x32\xd0\x03\x20\xcf\x72\xd3\x8b\x0b\x13\xcb\xb6\x2f\x08\xe4\xe9\x7e\xc3\x8b\x61\xbd\xc4\xa3\x03\xd8\xd1\x5d\xeb\x07\xe5\x99\x0a\x3d\x67\x50\xb3\x06\xda\xf2\x8f\x6b\x7b\x1e\x8d\xbd\x72\xcc\x7e\x57\x5c\x2e\xfe\x5e\x2c\x4a\x78\x6c\x26\xaa\xa9\x1f\xd5\xab\x3f\x89\xf1\x41\x0d\x0b\xbe\x37\x18\x61\x77\x2d\x19\x92\x1c\x41\xbc\x9b\x76\xb6\xe9\x15\x9e\xba\xf3\xe2\x94\x93\x54\x3b\xcd\xcc\xa9\xce\x0e\xa7\xb9\x1a\x97\xf9\x7b\x2d\xb1\x8e\xbe\x0f\xee\x2e\xe9\xd6\x9e\xb5\x1f\x28\xd3\x5f\xf1\xa9\x54\xb3\xbf\x59\x38\xbc\x26\x51\x82\xb4\x3b\x9c\x5b\xba\x41\x9f\x97\x6b\x83\xce\x91\x47\x30\x67\x0d\x59\xcf\x65\xd1\x20\xb5\xef\x73\x93\x7c\x28\x96\xb7\x52\x9f\x60\xf6\x44\xdf\x30\x47\xa5\x06\x60\xf2\xc2\x97\xcd\x86\x53\xc2\xb0\x72\x21\x37\x01\x74\x2c\x6f\x1c\x3a\x34\x08\x60\x8b\xa0\x7e\x72\x58\xec\x97\x07\x81\x94\xfb\x16\xef\xe4\xbc\x4d\x96\x7b\x5a\xfe\x2f\xe7\x50\xf8\xf9\xf7\xe7\x57\x3b\xef\xb9\xf7\xef\x70\x00\x21\xf4\xd9\x57\xde\xef\xfa\x30\x5c\xf0\xc3\x82\x74\x06\x0e\x5b\xdf\x31\x48\x09\x9a\x60\xd1\x59\xf9\x8d\x56\x45\xa9\x1c\x8d\x81\xe7\x4b\x4c\x7a\xcf\xeb\x13\xea\xe6\x7f\xe8\x3a\xba\x3c\xab\x4f\xbb\x3b\x5e\x1d\x71\xf8\x9d\x49\xb0\xc9\x68\x71\xc3\xf4\x87\x2e\xe7\xc1\x2f\xe9\x23\x94\x83\x2f\x6c\x9e\x4f\x16\x4c\x98\xbc\x8a\xb4\xec\x19\x7d\xfc\x5d\xab\xfb\xb1\xa5\x75\x7f\xe4\x1c\x47\x6b\xbb\xe5\xc3\xee\xc8\xc5\xe3\xf5\x11\x96\x6b\xad\x06\xcb\x89\x0f\x15\xac\xf8\xea\xe8\x56\x4d\xca\x39\xad\x6e\x3e\xbc\xbe\xf6\xa9\xa8\x9b\xc4\x81\x58\xd4\x96\x9a\x22\x42\x33\xb9\xcd\x06\x8b\x3b\x51\x7f\xa7\x1c\x36\x2b\xca\xaf\x41\x11\xe3\xdb\xcc\xe8\x72\xde\xa0\x87\xa3\x3b\x48\xfc\x87\x89\x76\xc6\x04\xd6\x26\x58\x16\xc0\xe8\x34\xb5\xc9\xc1\x1e\x00\x17\xa6\xcb\xd5\x07\x43\xfe\x71\x3f\x78\xfe\x9c\x95\x3b\x3c\xc0\xae\x17\x64\xe9\xe7\x9c\xda\xf1\x43\xe0\x3a\x49\xef\x79\x6f\xb5\x9c\xfd\x04\x40\x2c\xe3\xcc\x12\xcc\xdd\x1c\xc1\x4f\x09\x9a\x19\x08\xcd\xdd\xdd\x94\x93\x4c\xf4\x79\xf8\x9e\x88\x0a\x53\x0e\x4b\x9a\xed\xf8\xb1\x46\x67\x68\x5a\x8e\x2f\xc4\x2c\x2a\x3a\xf1\x34\x47\xc7\x31\xcc\x58\x04\xe5\x76\x87\x93\x3c\x18\xd6\xe5\x53\xc4\xf1\xd0\x97\x26\x66\x1c\x3f\x1c\xbf\x7b\x76\x5f\x20\x71\x10\x86\x5d\x93\x07\xe7\xe3\x1a\xa7\x8c\xd3\x07\xae\x2f\xa5\x57\x1f\x34\xd6\xef\xed\x5e\x3d\x54\x6e\x61\x2c\xdb\x15\xb7\xb6\x5a\x58\x60\x4c\xd3\xf6\x6a\x83\x35\x57\xfb\x5f\x1e\x90\xfa\xaa\x7c\x54\x69\xc2\x7b\xa3\xfb\xe5\x05\xe8\x90\x98\x09\xc3\xe8\x52\x0f\x8c\x6b\xc4\x55\x83\x4f\xc5\xfb\xb0\x9c\x21\x7b\x0d\x9a\xf2\xd3\xb1\x5f\x02\x3c\x00\x4c\x68\x8e\x3e\xfd\xcf\x3a\x5c\x9b\xf6\x0c\xed\xf9\x87\x17\x24\xf7\xcd\x4f\x2e\x88\xe4\x41\x20\x5d\x07\x5f\xca\x7f\x4e\x04\xdd\x9f\xf9\xef\xad\xa7\x67\x67\x70\x67\x88\x16\x5c\x56\x22\xbd\xb3\xb1\xdb\x3a\x82\x08\x9d\xd6\xe1\xb3\xb8\x1e\xa9\xaf\x2e\x34\xdd\x87\x30\x4b\xaa\x07\xc2\x27\x1f\x3e\x41\xb8\x19\x9f\xc8\x81\xf4\xd3\x6b\x03\x0e\x96\xe5\x3a\x61\xe9\xcb\x7b\xfc\xd2\xeb\x27\xbc\x82\x16\x4d\xb3\x7c\x9a\xb3\xac\x3b\xe7\x19\x7a\x33\xda\x43\x0d\xc4\xe7\x57\xe6\xd8\x5b\xdc\x75\xe9\x96\x94\x17\xba\xea\x4c\x48\x1e\x0c\x6d\xe4\xd4\xb7\x95\xa8\xf2\x30\xdd\x73\xc3\x4f\xd7\xcc\x8b\x44\x75\xa7\xfa\x4f\xaf\x13\x73\xb9\xf4\x82\x7a\x02\x37\x88\x99\xef\xf4\x64\x9f\xec\x43\xca\xa5\xbe\xd6\xcb\x6c\x55\x45\x79\x24\xee\xd7\xd3\x6e\x74\x40\xeb\xc4\x10\xf5\xce\xd4\xd5\xa0\x21\x72\x46\xb7\xa2\x9a\x0a\x33\x1a\x1a\xab\xeb\x5c\x49\x85\xcd\x0a\x74\xd2\x99\x28\x9b\xd8\xd4\xf6\xdd\x0f\x60\x79\xe5\xe7\x3a\x02\xaf\xfe\x9c\xa4\xdc\xb7\x7c\xea\xf7\xeb\x80\x94\x7b\xfe\xfe\xdd\xef\x6e\xfe\x19\x01\x70\xe7\xed\x35\xf6\x39\x2a\x62\x17\x27\xbf\xc0\xc1\x8f\xc1\x84\x53\x42\x94\x6a\x9c\xbd\xe2\xf8\x63\xd2\x16\xd6\x57\x1a\x6e\x6d\x86\xaa\x45\xfb\x73\x17\x64\xa0\x97\x8d\xa2\xe3\xcf\xc6\xfe\x8d\x3c\xea\xb0\x9e\xfd\x36\x50\x7f\x3d\xd9\xfb\x68\x29\xa7\x6b\xc0\x5a\x65\x2a\xb2\x7c\xcb\x62\x72\xf5\x79\xf3\xc7\x07\x9f\xf4\x4a\x56\xaa\xbf\xd4\x54\x85\x6b\xf4\xad\xb6\xaf\x68\x96\x2b\xa8\x93\xaf\x9f\x5a\xed\x2d\x7a\xa2\x66\xb0\x9e\xb5\xa6\x52\x30\xa9\x76\x69\xce\x71\x43\x27\xeb\x2e\xc9\x7f\xa1\xe1\xfe\x3e\x0a\x99\x97\xac\xa6\x29\xf7\xfa\x1e\xca\x24\x41\x4d\xa3\xe0\x85\x14\xda\x3f\x5a\x54\x23\xe0\x69\x10\x26\x38\x4c\x53\x63\xa2\x53\x1b\x33\x10\x32\xaf\xe1\xd3\xaa\x81\x7d\xea\xff\x4c\xa3\xa8\x31\x62\x93\xcb\xf7\xb4\xe6\xc1\x5a\xd6\xcd\x52\xaf\x22\x00\x7b\xea\x9f\xeb\x21\xf1\x30\x39\x01\x7b\xfe\xab\x0f\x63\x72\x61\xcf\xff\x17\x0f\xc2\xfc\x61\x00\xfa\x37\xd4\xcf\x47\x06\x88\x38\x8e\x77\x3c\xd5\x2f\x97\x08\x0d\x82\x4b\xf2\x8f\x9b\xc7\xf0\xdd\xb2\x1c\xa6\xf8\x72\xcf\x2d\x71\x35\x7b\xe7\xfb\xf7\xe9\x37\x15\x8c\x2e\x04\x5d\x0a\x55\x43\x7f\xb7\x6f\x4c\xe0\xf0\xda\x87\x2a\xf7\x5a\x49\x63\x73\x6c\x43\x8e\xc4\x61\x32\xd2\x2d\xc4\x11\x2b\x15\x07\xb3\x1f\xe9\xbd\x47\x18\xf4\x76\xe5\x24\xaa\x5f\x59\xc7\x2c\x2c\xe7\x4f\xef\xf2\x0f\xb6\xc8\x7c\x44\x58\x6a\x9f\x52\x14\x32\x0a\x61\x9f\x46\xab\xa4\xb8\xc2\x86\xcc\x49\x8c\x57\xa6\xff\xd6\x85\xaa\x8d\x35\x57\xf6\x18\xc5\xa1\x8b\x22\x45\x55\x86\xdf\xef\xc3\x9c\x0e\x0f\x53\x25\x7b\x5d\x89\x99\x0d\x8e\x56\x39\xf0\x62\x06\xbb\xe6\xdb\xa8\x5a\xff\x54\x0e\xbb\xe5\x3b\xae\xa2\xdb\xf9\x68\x73\xc5\x7d\x4d\x85\xae\x2d\x08\x17\xe0\x22\x04\xe0\x15\xf3\x73\x5d\x24\x1f\x46\x45\xf5\xcf\xd9\xb5\xf2\x7b\xee\xb9\x21\xf7\xcf\xf5\x6f\xa5\xec\xe4\x3e\x3b\xdf\xf7\x8e\xea\x03\xdc\x29\xbf\xee\xfb\xba\x05\xf8\x38\x24\x39\xec\x3b\x4a\x08\x68\x61\x3a\x59\x4e\x92\x07\x22\xe7\x0b\xde\x54\x6d\xcd\x0a\x15\x47\x86\x6b\x31\x4a\xf2\x3c\x10\x40\xb9\x59\x69\x73\x22\x20\xd0\xcd\x1b\x4b\xef\x7e\x39\x32\xc1\x4e\x11\x33\x11\x79\x3a\xfa\x8e\x29\x0a\x43\x9f\xbf\x3f\x4e\x54\x4f\x01\xad\xd4\xda\x94\x68\xac\xfe\x06\xf5\xfc\x83\x5c\x52\x8e\xd2\x3e\x94\xd4\xba\x76\x12\x46\x3e\x02\xdd\x85\xea\x89\x7e\x28\xcf\x8b\x46\xa2\xb6\xa3\x32\xe5\x8a\x30\x06\x68\x87\x08\x6d\x39\x5e\x04\x06\x73\x35\x74\xbf\xfc\xbd\x39\x2b\x4c\x5b\x50\x9c\x7c\xc7\x44\x05\x36\xc0\xef\x95\x82\xe4\xe7\x1a\xec\xb8\xef\x5e\x12\xf7\xa0\xa0\xf7\x86\x0a\x77\xc6\x75\x44\xc1\xaf\x8f\x1e\xe7\xe4\x5c\xa5\x70\xf6\x39\x6c\xed\xb7\x6f\xf9\x75\x2e\x92\x9e\x8f\x4d\x3b\xcf\x89\x81\x6f\xff\x8d\x03\xf9\x93\x83\xf9\x54\xfd\x73\x3e\xef\xdd\xf9\x0e\x9e\x06\x54\x39\xcd\xd9\x45\x6a\xaf\x12\xc5\x45\x8e\x4b\xc6\x16\x62\x08\xee\x32\x95\xaa\x3c\xc9\xab\xdb\x8a\xea\x8a\x46\x3d\xe1\xf6\x78\x55\x03\x2b\x1b\x47\x8f\xa6\x2d\x25\xeb\xc3\x2e\xeb\x8e\x82\xb8\x50\x97\x29\xaf\x59\x6b\x1d\xdc\x91\xe0\x26\x3f\xba\x7f\xf1\x0f\xdc\x58\xde\x9e\x1f\x61\xe5\x4a\x87\xb0\x47\xc6\x90\x61\xd2\xb2\x4b\x18\x22\xaa\x32\x94\x8c\xc4\x3f\x48\xbf\xdd\x14\xc1\x3a\xf8\xea\x91\xf8\x07\xc9\x35\xec\x8d\xcd\x97\xae\x27\xa4\xbe\xad\x3c\xdc\x1c\x75\x65\x93\x96\x99\x99\xc0\xb1\x3b\x0b\x4a\xbf\xfb\x2a\x8b\x8b\x75\x34\x91\x7e\x31\xf2\x68\xeb\x6f\x3b\x3d\x12\xf7\x20\xfd\xfd\x9d\xed\x56\x8d\xe5\xb3\x5f\xcf\xc7\x8a\xb7\x3b\x1c\x48\xc7\xcf\x49\xca\x3d\x7f\xe7\xa1\x48\xf9\xf7\xe8\x8e\xf7\xe0\xa5\xed\x8e\x07\x22\x0b\x80\xfe\xfa\xe5\x6d\x92\x07\xa2\xa4\x17\xf6\x0b\x5a\xf0\x49\x66\xb4\x11\xef\x49\x1b\xc8\x9c\x88\x9e\x23\x5c\x55\x7b\xa2\xa5\xe9\xcf\xbd\x7d\xcf\xa0\xc9\x24\xe6\x5f\xfc\x03\xf7\x56\xa5\x7f\xbc\x93\xae\xf1\x99\xad\x13\xf1\x99\x6e\x6d\x3a\x5d\x38\x44\xfe\x07\xf7\xa3\xea\x56\xb8\xf2\xfa\x9b\x1e\xb2\x4a\x37\x70\xca\x7d\x02\x9e\xea\x72\x37\x71\x87\xbe\x52\x78\x7e\x97\xde\xbb\x39\x8f\x6e\xf3\x54\xd9\xf5\x3e\xcc\xe2\xb6\x71\xa2\x8e\x85\x24\xfe\x41\x7c\x69\x2b\x14\x37\x64\x5b\x22\xce\x8b\xf1\xd9\xd2\xb7\x1c\x14\x47\x2f\x31\x6d\x45\x59\xd2\x8a\xf7\xfe\x18\xdb\x42\x9a\x31\x8a\x3f\xfe\xea\x88\x97\x37\x4e\x96\xe0\x19\xed\xc2\x1b\x1a\xf3\x02\xe4\xcb\xfc\x77\x0e\xe4\xf7\xef\xdf\xff\x5f\x1e\x88\xfa\xc7\x00\xf4\xa3\x97\x8d\xca\x5a\x61\x8e\x8d\x8b\x8e\x2a\x8b\x03\x24\x04\xeb\x38\x51\xf1\x74\xc4\x1e\xa9\x38\xe1\xde\x90\x2a\xc2\x1b\xd5\x4f\x4a\x9a\x9e\xf3\x84\xcb\x7a\xe5\x5a\xc3\xf6\x6e\xdb\xe6\xe6\x49\x46\x41\x56\xe6\xdb\x64\xf6\xd3\x66\x2a\x66\x48\xfc\x43\xaf\xab\x96\xfd\x86\x4c\xf8\xd2\xf0\xdb\x96\x38\xed\x68\xbc\x66\xfa\x29\x1b\x36\x12\xff\xa0\xe8\x8f\x27\x6b\xab\xb6\xe5\x92\x53\xdf\x0a\x79\x53\xe8\xc0\x25\xe5\xb1\x55\x36\xc5\x6c\x8b\x92\xb8\xbb\x95\x81\xaa\xb0\x15\x17\x3f\xbd\xb5\xb1\x25\x61\x25\x24\xfa\x10\x9f\x87\xdf\x63\x92\xfc\x3f\xbd\x0f\xf1\x28\x0a\x7c\xa3\xde\x8c\xe8\xa1\x65\x0d\x7c\xa7\xde\xaa\xf0\xf3\x99\x67\xdb\x56\x1a\x73\xff\xe0\x40\x76\x7c\x20\x33\x98\xff\x76\x0e\x92\xf2\xef\x81\x9d\xef\xfc\x3b\x77\xf2\xfe\x06\x5d\x80\xcb\xb2\xe4\x23\xa4\xfc\x3b\x7b\x12\x80\xed\x01\x6d\x55\xd2\x75\x48\x17\xd0\xbb\x57\x1e\x21\x05\x7f\x4b\xe5\xf0\xb7\xfb\x6e\x11\xc3\x95\xef\x49\x5c\x75\x9a\x27\x6c\xe9\xd8\x29\x9c\x20\xf1\x0f\x66\x4a\x84\x2b\x36\x71\x5a\x3d\x46\xbd\xdb\xe0\x6a\xae\x63\xaa\x57\xb6\x9d\x1d\xcc\x67\x50\xab\x25\xb0\x2d\x97\x98\x69\x1c\xb6\xcb\x3f\xc4\xe0\x37\xab\x1d\x4d\x1d\x65\x11\xf8\xfa\x27\x39\x66\x40\xe2\x1f\xc4\xad\xf0\xdf\xa7\xa8\x8c\xf5\xc5\xf8\xf0\xd5\xeb\xd7\x4d\x5c\x45\xfa\xb7\xff\xc6\xdb\x18\x52\xfe\xcb\xfb\x20\x49\xf8\x6b\xdb\x47\xdd\x54\xd0\x90\xa0\xba\xfd\x41\x85\x4c\x80\x71\xab\x86\xc0\x2b\xff\x54\xe0\x33\xd2\x8c\x70\x42\x31\xff\xd7\x73\x71\x8c\xf2\xb7\x73\x80\x76\xc7\x07\x93\xfe\x7b\xfe\xdd\xcd\xb8\x93\x7f\x37\xfe\x9c\x85\x8e\x3b\x1e\x88\x6b\x00\x74\x8f\xce\x3d\x4e\x61\x00\x60\x7b\x76\x53\x28\x6a\x02\x86\xf9\x32\xef\x6c\x06\xc4\x43\xa0\xb8\x2e\x1b\xad\xdb\x37\x38\xa2\x80\xe6\x37\xb2\xe3\x20\x6a\x68\x3f\x96\xfa\x60\x8a\x25\xe0\x8d\x9e\xca\x17\x1b\x1f\x20\xee\x37\xab\x92\x97\xd5\x4f\x23\xd4\x38\x5f\x55\xb9\xa3\xf3\x17\x21\xd4\xb7\x55\xcd\x46\x7d\x81\xc0\x19\x43\xa9\xd9\xab\x22\x4f\x38\x90\x5e\xaf\x9d\x45\xe2\x1f\x64\x43\xb7\x3b\xea\xb5\x74\xe3\xa5\x86\xb6\x53\x9e\x60\xf4\xac\x25\xe8\xb7\xfd\x07\xc6\xf4\x6c\xc4\x5c\xb6\x75\xc6\x41\x9f\x4c\x84\x79\x3b\x62\x35\x52\x27\x55\x28\x70\x7b\x0d\x6f\xa2\x71\xeb\x5f\xde\x87\x3f\xb8\x87\x5f\xfc\xc3\xfb\xcb\x3b\xbf\x8b\x88\xff\xdc\x87\x85\x1d\xef\xc7\xc7\xc9\xdf\xcf\xc1\xfa\x9d\x59\x92\xff\x73\xe6\x39\x00\x5c\xbc\x74\xe8\x64\x6a\x3c\xc0\xed\x95\x33\x17\xa2\x97\x00\xee\x2d\x5d\xd1\x0b\x2e\x06\xe0\x09\xa3\xb5\xf4\x74\x86\x1e\x51\x67\x86\x1f\x8e\xfa\xc0\xa3\x80\xe6\xee\xb7\x98\x00\x32\x75\x2e\x7e\x0b\xe3\x4c\xa2\xa3\x01\x99\xc4\x1a\x89\x7f\xd0\xa5\x25\xca\xdb\x5d\x90\xce\xd2\xe2\x27\x1e\xf1\x74\x97\x4f\x54\x8b\x25\xe0\x83\x23\x15\x8c\x95\xaf\x10\x46\xe2\x29\x94\xfe\x96\xd7\x24\x7c\xcc\x54\x53\xec\x97\xd1\x21\x54\x95\x49\x2a\x2b\x4a\x7d\x20\x28\xd6\x7f\x50\xff\x4b\x3c\x97\x60\xd7\xe5\xa5\x7a\x44\xa4\x96\x10\xd7\x7f\x5d\xe9\x87\xf0\x25\x82\xf3\xa8\xa1\xb2\xbf\xd0\x5f\x04\xdd\xf9\x30\x65\x0c\x89\x7f\xf8\x5f\xde\x87\x5f\xb9\xff\xef\xf7\xc1\x1a\xff\xef\xe7\xe0\x8b\xcd\x9f\xb3\x59\x6f\xc7\x83\x91\xf2\xbb\x07\x23\xfa\xc1\xcf\xe9\x1f\xf8\x73\x86\xf2\x00\x30\xeb\x5f\x58\xf4\x09\x06\xe0\x49\xbd\xb1\xe4\x6c\x0b\x53\xa2\xbc\xf4\x83\xd6\x9a\xd0\x2e\xad\xc7\x98\x60\xb2\x02\xfc\x6a\x37\xb9\x4f\xea\x77\x13\xb7\x75\xf6\xf2\x3f\xd0\x19\x21\x4e\x18\x15\x08\x9d\xd3\x8c\x23\x8e\x58\xd9\x0a\x2d\x6a\x38\x11\x93\x9d\x0d\xc4\x5b\x94\xe7\x89\x65\x3e\x79\x62\x69\x8a\x3d\x44\xbb\x70\x29\xc9\x6d\x39\x4f\xa2\x6c\x72\x8c\x74\x81\x8c\x24\xf1\x62\x6e\x80\xec\x24\x89\x7f\x10\x9b\x22\x9e\xa8\x2f\x91\xb5\x17\xf9\x42\xc0\x3c\x39\x27\xa7\x2c\xd4\x4b\xd8\xe8\xaf\x97\xdd\x14\x54\x24\xac\x7f\x6a\x93\x4d\xe0\x77\x26\x9e\x9d\x8e\x97\xbe\xc7\x67\x4c\xe4\x5c\xcf\x97\x8c\xe2\xbb\x41\x94\x23\x4c\x48\x54\x93\xf8\x0f\x6e\x67\x22\x92\x98\x20\x40\xfe\xe7\x39\x30\xe1\xfa\xc7\x39\x78\xec\x0f\x0e\x68\x67\x9f\xe2\x39\x7e\xce\xa0\xba\x9d\x59\x0a\x70\x25\xe3\x70\x9a\xd7\x4d\x00\x3a\xc4\x49\x19\xe7\x6c\x00\x4e\xc1\xcb\xf2\x76\x17\x01\x2f\x12\x76\x2b\xd9\xe2\x1a\xf4\x48\x7f\x66\x70\x37\x3a\x0e\x91\x4a\x03\x2c\x9d\xba\x2c\x20\xae\xc9\xcb\xb9\xa1\x6d\x0d\x54\xfa\xb3\x7c\xfb\x34\x4e\xc3\x55\x33\x32\xde\x3c\x95\x50\xa0\x74\xe0\xe2\xe7\x50\x74\x02\x0a\x0f\x1a\xfe\x44\x85\xc3\xc4\x8f\x41\x2c\xc2\xf7\x65\xa5\x89\x6f\xa2\xde\x88\x1c\x94\x22\x27\xf6\xa7\x4c\x0a\x7f\x97\xbc\x4a\x8c\xc8\x63\x11\xef\x10\xfb\x9b\x98\x57\xae\x20\xf6\x97\xb0\x1b\xb1\xac\x8e\x5c\xf4\x98\x10\x0b\x31\xb4\xa3\x59\x2c\x5f\x60\x93\x68\xf1\x92\x59\x7c\x8c\xbf\x84\xa8\x31\xb4\x20\x21\xc3\x6b\x4d\x4c\x9f\x08\x15\x09\xe6\xc9\x23\x16\x2d\xfc\x10\x9e\xe2\x46\x12\x7b\xd0\x71\x42\x3c\x5c\x9f\xe1\x24\xb1\x9e\x8f\x03\xe0\x3a\x35\x7f\x04\x19\x2f\xc0\x3d\x63\xde\xbd\xe4\x25\x00\xbc\xbc\x7c\xd6\x27\x4e\x00\x88\x67\x08\xf2\x9c\x11\x01\x50\xa4\x10\x79\x74\xe9\x26\x80\x96\xb8\xe4\xc1\x1b\x2b\x00\x06\xbe\x72\x9d\x0c\x8a\x00\x66\x37\x95\x62\xd9\xd3\x00\xcc\x5b\xd5\xb7\x05\x72\xa1\xd8\xfc\x8d\xde\x23\xe9\x12\xe2\x92\xd9\x94\x99\x9f\x26\x0d\x51\xdf\x6c\xc8\xfe\xba\x91\x3f\x21\xc8\xf4\x8a\xef\x15\xbb\xf0\xed\x0e\xc3\x91\x18\x4a\x77\xd5\xed\x9b\x7a\x77\x33\x69\x7c\x30\x78\x67\xed\x73\x65\xc4\xa0\xf7\xbb\x1c\x88\x83\x6a\xf5\x93\x33\x91\x43\xb8\x61\xe5\xbf\xdf\xcc\xc6\x7a\xef\x72\x20\x20\x93\xbc\xee\x98\x48\x85\x0b\x91\x56\x41\x9d\x8a\x4d\xdd\x32\x97\xdc\x44\x6b\x86\x9b\x90\x3c\x20\x28\x1e\x49\x27\x4c\x55\xc0\x87\xc5\x3e\xa9\xf7\x98\xfe\x80\xf1\xef\xb7\xa5\x1a\xb1\xdb\x5e\x5e\x23\x6d\x32\xc6\x9b\x57\xbd\xf4\xde\xdd\x91\xf3\xdc\x64\xf2\xea\xec\xa7\x91\x43\x6d\x7a\x7a\xf2\xf7\x8e\xca\xbd\xc6\xf1\xb8\x04\x3f\x79\xa1\x20\x89\x93\x77\xf1\xed\xe8\x51\xe0\xc7\x0d\x3a\x5e\x04\xa0\xb1\xe1\xfd\x72\xc0\x05\x80\xa9\x9f\xe7\xf0\x91\x56\x00\x9e\x24\xee\xde\xe3\xef\x00\x24\xaa\x05\x66\xcf\x18\x01\xa8\x9c\x16\x36\xbd\xc4\x0a\xa0\x47\x29\x6e\x7b\x03\x00\x8c\xa7\x64\x2f\x32\xb0\x01\x98\x86\x2b\x34\xb3\xb4\x01\x58\x7d\x53\x57\x15\x44\x43\x98\x0d\xbd\xde\x45\xb9\x64\x22\xca\xf2\x82\xe9\x59\x8d\x3e\xe2\x75\x4b\x13\x9b\x75\xd3\x08\x82\xbe\xd9\x53\xef\xbd\x0e\x7f\x6f\x47\x19\x07\x46\x2e\x7a\x8a\xe2\x2b\x0c\xe4\xd2\x73\x02\x35\xb7\x1a\x74\xc6\xca\x7d\x22\x7a\x70\x8b\x9a\x3d\x4d\xd1\xb1\x28\xdc\x9c\x9a\xe2\xd3\xfc\xd8\x78\x9c\xa5\x72\xce\x5b\xcf\x04\x89\x4d\x6b\x05\xd9\x6f\x8e\xa9\x2e\xbb\x5e\x14\x52\x1f\xcc\x8e\x07\x84\xc4\xc3\xac\x9e\x97\x96\x45\xaf\x86\x2a\xfd\x28\x90\x69\xc5\x70\x84\xc4\xfd\xc9\xc1\xf4\x1b\x29\xa4\x63\x23\xfc\xcf\x3e\x1f\x55\x9c\xc6\x22\x7d\x2f\x3d\xbd\xa2\x64\xb3\xc9\xe3\x5d\xdc\x8e\x57\xca\xd8\xfc\xee\xfe\xac\x49\x4a\x99\x09\x67\xea\x52\x0a\x40\x7b\x81\x87\xeb\x40\x2c\x00\x9b\x27\xaf\xd0\xb1\x7b\xff\xe8\x89\x79\xcc\xe7\x70\x7a\xf9\x57\x4f\x8c\x41\xb8\xd8\xfa\xcd\xfb\x00\x66\x4f\xa4\xf2\xee\xd4\x01\x58\xd3\xca\x25\xb0\x32\x03\xd8\x4d\xa9\x46\x09\x1d\x85\x47\x76\xaf\xb5\x99\xa5\xf3\x88\xb3\x36\xce\xc6\x5b\x5a\x27\x08\x58\x6b\x4a\xeb\x4a\xf3\x26\x02\xa5\xe5\x35\x8f\x19\x67\xe9\x6d\x1a\xb3\xab\xe1\xd7\x7d\x50\xf8\x0b\x46\x21\xf7\x2f\x84\x62\xb6\x2e\xe8\x6d\x96\xa6\xc7\xde\xc1\xc9\x6b\xe7\x34\xbc\x4e\xba\xb2\x39\xa3\xfe\xbe\x7b\x3d\xe5\xca\x2e\x07\xd2\xa2\x78\xf5\x1b\x2e\xc3\x09\x1b\x20\xc7\xbd\xc1\x96\x31\xb4\x59\x26\x93\x81\x18\x49\xbe\x4c\xda\x0f\xb4\x99\xf4\x63\x94\x4e\x4c\xfa\x3c\xbb\xac\x2a\xfa\x46\xe4\xe7\x09\x4e\xb9\x67\xe8\xaf\x61\x84\x4f\x85\x72\x5b\x98\x57\x41\x91\x6f\xc6\x15\x43\x31\x1d\xc1\xf7\x49\x7d\x38\xdd\x0f\x95\x16\xb1\x8f\xfd\xb2\xdb\x63\x55\xa4\x37\xa9\x7d\x6a\x1a\xed\x55\xda\x37\x3f\x79\x44\xff\xe2\x40\x6e\xd3\x71\xbc\x3c\x80\xfd\x95\xff\x0b\x99\xf0\xd0\x9e\x08\xfb\x07\x07\xe1\x24\xf0\xf1\xa2\x30\x80\xd1\x39\xd1\x5b\x37\xac\x00\x2c\x35\x24\xc3\xef\xd4\x00\x38\xa8\xc8\x7e\x64\xe7\x05\x70\x3a\xa1\xcc\x2b\x90\x0f\x8d\x8e\x73\x9a\xf1\xd2\x8a\xc4\x71\xa7\xb3\x86\xc5\xda\xb7\x08\x1f\xec\xa4\xad\x54\x2c\x1f\x6f\x77\xda\x38\xbb\x1e\x75\xcb\xc4\xe7\x5b\xb4\x85\xaa\x04\x56\x6e\x79\x99\xde\x48\xf9\x11\x35\x8e\xbb\x63\x78\xaa\xd4\x23\xd9\x79\x53\x5d\x57\xb7\xf1\x62\xfa\x19\x6c\x96\xe6\xfb\x67\xa9\x59\x45\xbb\xfd\x38\x24\x0e\xe4\x4f\x2f\x8a\xab\xcc\x24\x22\x29\x45\x6e\x69\x4d\xce\x0a\xe9\x99\x68\xf2\x4d\x4a\x3e\x0b\xe5\x19\x5b\xfc\x49\x46\x89\x0f\x15\x10\xa7\x31\x70\x40\x99\x19\x6d\x13\xe5\xf9\xd2\x40\x45\x10\xbd\x19\x41\xfd\x94\x55\xe5\x2d\x66\x25\xd8\xa9\xe3\x82\xda\x5d\x2c\x79\x30\x75\x73\x95\xda\x19\xec\x88\x5f\x67\xcd\x8a\xba\xf4\xa6\x96\xcf\xb1\xaa\x7e\x75\xd3\xcd\x75\x0f\x37\x00\xba\xb7\x9c\x8a\x07\xeb\x7f\xed\x83\x58\x04\x67\xe9\x89\xb3\x00\x8a\x1a\xbc\x3a\x67\xa2\x00\x74\x7a\x04\x30\x97\x85\x7f\xf5\xc4\xd8\x74\x89\x9d\xa4\xa3\x01\x70\x39\x2e\x73\x94\x6d\x0c\xc0\x6d\x59\x91\x5e\x20\x13\xea\x3d\xdf\xa9\x79\xc9\x5c\x26\x7e\x77\x13\xd0\xcf\xd2\xbe\x42\x78\xe7\x54\x66\xc1\x67\xc5\xbb\x7d\xd7\x81\xde\x89\xd6\x1b\x8f\xdf\x63\x93\x1a\xc8\x1d\xd6\x86\x5b\x37\xdf\x93\xdc\x1a\xd7\xba\x69\x6b\xf4\xba\xf4\xef\x74\x4a\xec\x2d\x7d\xe5\x46\xd7\xdc\x1c\x4c\xb4\x36\xdb\x73\xc7\x82\x9b\x24\x0e\x04\x7d\x4f\xb1\x67\x59\xa2\xc4\xed\x4f\x2f\xca\x7a\xb0\xbc\xcf\x86\x71\x46\xe5\xf4\x8a\xe2\x41\x44\x45\xaa\xdf\x78\xb8\xd2\x59\xa4\x52\x32\xc7\xfb\x41\x65\x67\x94\x6f\x5c\xfb\xcb\x00\x55\x24\x6a\x30\x76\xb5\x5b\x46\xfd\x3c\x5a\x29\x7a\xae\x3d\x58\xfd\x03\x86\x33\xbc\xad\xe9\x88\x86\x2b\x66\x3a\xc4\xa9\x56\x50\x23\x0c\xdb\x18\xb0\xaf\x92\x4a\x13\xbf\x79\xd4\x4f\xaa\x6c\x4b\x33\x6e\xf3\x89\xd7\x01\x80\x3b\x49\xec\x95\x87\x98\xfe\xbd\x0f\x4a\xf4\xec\xdf\x4e\xce\x00\x18\xaa\xf1\xac\x5c\x64\xfb\xc5\x41\x38\x26\x8b\x96\xd2\x7f\x05\xf0\xa0\x90\x52\x66\x4b\x05\xf0\xf5\x96\x0b\x11\x08\x25\xf5\xe5\x10\xc7\x7d\x7e\xe8\x7c\xd7\xfe\x4a\x48\xf5\x9c\x32\x45\xd8\xda\xe1\xc7\x1c\xcb\x1d\xd3\xfc\xe6\xb7\x4c\xed\xb6\xfc\x17\xa3\x0d\x36\xc7\xac\x5e\x25\x4c\xa4\xbe\xc3\xea\x9b\x5a\x14\x87\xe7\xee\xc3\x04\x1a\x90\x35\x05\x16\x4c\xa3\x6d\x75\x94\x7a\x29\x4a\xf5\x50\x99\xea\x42\xa3\x4a\x15\xe4\x24\x0e\xe4\x4f\x2f\x0a\x89\x03\x99\xa0\x50\x51\xdb\xb8\x9b\x35\xf1\x21\x42\xf5\x31\x22\xe4\xbe\xfa\x6b\x4d\x75\x77\xe4\xc9\xd4\xc4\xee\x00\x4d\x77\x64\x55\x72\x7a\xfb\x17\xcd\x28\xf4\xf9\x58\xd3\x06\x82\xd6\x2c\xba\x39\xea\x4d\x2d\xad\x56\x2c\xe6\x51\x28\xe2\x81\x8f\xf6\x17\xac\x70\xf0\xa9\xb2\x97\xda\x76\x58\x84\xff\xf5\xa2\xbd\x3a\x05\x9b\x5c\xbe\x75\x00\x4c\xa7\xd9\x4b\x0f\x97\x03\xf0\x1e\xe2\x64\xa1\x48\x00\x90\x39\xcf\x79\xfa\x24\xed\xaf\x9e\x18\x13\x6f\xbe\xd3\x97\x55\xfe\xdd\x13\xe3\xfb\x40\xec\x03\x8b\xf9\xae\x17\xa4\x2b\x98\x4a\xc9\x49\xba\x84\x38\x19\x3c\xaf\xf9\x55\x7b\x81\xd0\xe8\xbf\xdf\x68\xdd\xe6\x3c\x3e\xd3\x6d\xda\xde\x3d\xd0\x06\xf7\xc8\xa9\xcf\x87\x3a\x41\x79\x53\xd1\xe6\x7d\xfc\x9e\x0c\x0a\x8c\x88\xc5\xd7\xfc\x95\xa2\x87\x28\x30\x9a\x6f\xa4\x2a\x9f\x41\xd1\xe8\x1d\xec\x65\xaf\xfc\x40\xea\xc7\xf9\xd3\x03\xb2\x11\xad\x64\xb0\xf2\xaa\xf4\xca\xb7\x58\xd5\x3d\x6b\x1a\x85\xd4\x1f\x63\xd5\x46\xd7\x5f\xe7\x7c\xe8\xbf\xac\x79\x74\x23\x37\xcb\xe6\xf9\x90\x26\x1e\xd1\x7e\xdf\xf9\xb1\x92\xb6\x18\x32\x2f\x85\xa6\x25\x46\x3b\x1b\x15\x94\xe0\x4a\xf2\x80\x90\x38\x10\x52\x1f\x4e\x41\xb9\x5e\x06\x36\x39\xf0\x69\xb6\xa8\x81\x30\x76\x20\x20\x07\x80\x25\x87\xa5\xe0\x48\x01\x00\x9f\x2f\xdb\xc9\x63\xe2\xbf\x38\x08\xad\x51\xb6\x7e\x2a\xd5\x5f\x3d\x31\x76\xd3\xbc\x7f\x5d\x1d\xfd\x47\x4f\x4c\x86\xc8\xd4\x3d\x6f\x80\xd0\x31\xe9\x1b\xfc\x78\x68\x8b\x8c\x54\xd0\x96\x91\x21\xae\x47\xde\x57\xa7\xd5\xc2\x11\x3c\xc3\x82\x0d\xba\xed\x2f\xe2\x1b\x7d\x34\x6d\xb4\x02\x6a\x71\xf4\x6e\xe5\xee\x77\x92\x23\xb1\xca\x0e\x9a\xd1\x23\xb9\x09\x68\x0e\xab\xfc\x7c\x62\xb9\x37\x4a\xc9\xe4\x54\x43\x65\x65\x2f\x82\x4a\x5f\xed\x95\x54\xbd\xfb\xba\x86\xa6\xdc\xf7\xe1\x96\x3b\x1b\xab\xaa\x53\x0b\xca\x75\x29\xa4\xfd\x98\x7f\xab\x52\xb8\x52\x5d\x76\x60\x84\x4e\x23\x73\xd5\xb2\x64\xf0\xed\xba\xd6\xfa\x1a\x6b\xd1\x97\xe7\x06\x3a\x1d\xeb\x35\x79\x3a\x1d\x66\xba\x5f\x37\x70\x99\x84\xe6\x2b\x7a\x7b\x91\x7c\x69\x34\xd5\x7c\x06\x2a\xc8\x07\x29\xaf\x1f\xd8\x19\x48\xa2\x46\xe3\x1f\x14\x11\x0d\x4d\xd0\x8f\xa2\x11\x79\x14\x86\x73\x18\xcf\x08\xca\xac\xe3\x46\x9e\xd8\x7d\xa1\x22\xe9\xe3\x86\xc3\xd8\xae\xc0\xdb\xbf\xf6\x41\x48\x92\xbd\x96\x02\xfd\xff\xee\x89\xf1\x5d\xe2\x6b\xbe\xa5\xf7\xab\x27\x26\x3a\x4e\x52\x41\xe0\x1a\xf4\xc4\xcd\xcb\x51\x48\x7b\x13\xf1\xf1\x11\x2a\xf9\x5a\x3a\x84\xf4\x18\x05\xdd\xc7\xb6\x6d\x78\xfe\xd0\x2e\x4b\xd1\x90\x67\x9b\x32\x5e\x1e\x6e\x21\xe9\xeb\x68\xa2\x8b\x69\x44\x6f\xc9\x6d\xe4\x4b\xdb\xb1\xdc\x89\x47\x6e\x88\xbd\xe6\x54\x8d\x46\x0d\x4e\xeb\xa7\x0c\x95\x5f\xdf\x6f\x45\x93\xbc\x28\xeb\x41\xea\x13\x73\xf2\xcd\x4e\x6b\xfb\xd4\x34\x17\x5a\x6a\x9f\x8f\x9f\xd5\x12\x5a\xf2\x7b\x74\xef\x9d\xb5\xce\xe2\xf2\xfc\x83\xa5\x9e\x23\x7a\x2e\x6b\xe4\xc5\xeb\xed\x45\x06\x33\x6b\x23\x85\xfd\x8d\x38\x83\xa6\x8d\xfc\xec\xe6\xaa\x42\x23\x34\x22\x23\xc3\xb4\x9c\xc2\xb8\x06\xa9\x9a\x96\x56\x40\x66\x32\x8a\xb2\x4a\xa2\xcb\xfe\x62\xaa\x80\xbe\x1d\x37\x94\x69\x62\xf2\x1c\x43\x16\x55\x9c\x56\x6c\x52\x80\x99\x0d\xbb\x94\x7c\xc8\xa4\x13\x9b\x12\x64\x0e\xc0\x22\x75\xaf\xf5\xc8\x3d\x00\xb1\x0c\xd6\x72\x8a\xd7\x00\xca\x92\x2c\xb7\x29\x6b\x7e\xf5\xc4\x58\x96\xb0\xbc\x38\xe3\x0d\xe0\x71\x92\xe3\xec\xe5\xd2\x5f\x3d\x31\xd1\x2f\x04\x26\x98\xaf\xee\xf6\xc4\x0c\xa4\x98\x49\x8f\x4b\x3d\x20\xbe\x48\xf9\xa1\x72\x42\xb7\x9a\x10\x9d\x42\xa9\x35\x6a\x27\x8f\x2f\x8a\x79\x60\xb2\x1c\x18\xb6\x29\x16\x68\xe8\x84\xcd\x60\x46\x3d\xf2\x2c\x0c\x3e\xf3\x00\x87\x90\x71\x34\xc9\x3e\x51\x0f\x6b\x96\xd6\x64\x0d\x74\x1d\xb5\x2b\xcf\x8c\xa9\xdf\x5e\x7d\xe2\x45\xe2\x1e\xd6\xc2\x34\x05\x67\x16\xdb\x62\x67\xde\x6a\x19\xce\x93\x37\xa9\x0e\x93\xeb\xf6\x2d\x86\xd4\x0a\xf4\x8e\x19\x2c\x2f\x0b\x3f\x94\xea\x18\x35\x26\x5b\x69\xa8\xc8\x69\x2a\x30\xee\x5d\x3b\x51\x52\xf8\x30\xcf\x94\x69\xbd\x2b\xdf\xa0\x84\xc9\xec\x13\x82\x3c\x6b\x3e\xbf\xdd\x5c\x0f\x81\x4c\xf7\xcd\xb4\xb0\x18\x42\x3e\x4f\x55\xcc\x94\x32\x73\x42\xd3\xc6\x6d\x26\xfd\x65\xa9\x83\x4e\x8f\xa5\x89\x73\xb4\xcc\xc7\x48\x47\xd6\xc7\x70\x59\x52\x60\x8f\x84\xd6\x01\x70\x45\xb3\xfa\x1f\xbd\x0b\x20\xf1\xe2\x5e\x27\x05\x3d\x80\x4a\xfb\xbd\x19\xca\x8f\x00\x26\x0d\xcc\x5e\xa7\x2c\x01\x1c\x96\xee\xf9\x9d\xbd\xfd\xef\x9e\x98\x38\x17\xbe\x29\x46\x4e\x80\x34\x4f\xe1\x36\x6e\x04\x4c\x65\xe1\x24\x46\x24\xaf\x02\x63\x8e\x8b\x9c\xad\xda\x38\x21\x2d\x33\x46\x83\xdd\xb6\x03\xef\x94\xfa\xd6\x30\x25\xf8\x0c\xf6\x7d\x54\x8d\xbd\x62\xd6\x30\xd2\xd5\xef\xbc\x5f\x62\xf5\x87\x75\x2a\xb7\xd2\xfb\x1d\xed\xac\xcb\x7d\x76\x5a\x0d\x0c\xcf\x6a\x17\x8f\x9a\xde\xfb\xf0\xa9\x8f\xfa\xcf\x7e\x9c\xcf\x9a\x06\xed\xb3\xec\xed\x57\xfb\xbe\x19\x73\x2d\xec\x6d\x8c\xe9\xf0\x36\x53\x5e\x5c\xa9\x35\x68\xd4\x33\xeb\x59\x21\xab\x44\x55\x51\x59\xcc\xad\x5a\x96\xb3\x15\x4f\x58\x49\xaf\xb5\x14\xcb\xe4\xd6\x5b\xd5\x6c\xe8\xe5\x76\x67\xac\x5a\xf3\x21\xac\x32\x97\x53\x72\x6d\x96\x10\x73\x19\x37\xe3\x30\xb6\x64\x28\x8b\xa4\xef\xa4\x3e\x9c\xc8\x15\x9b\x4e\xf4\x50\x0c\xc7\x2f\x0e\x84\xe3\x13\xb3\xcc\x11\x53\x00\x69\x91\x7b\xfb\x29\xc4\x00\x34\xe2\x98\xa9\x28\xdd\xfe\xe1\x47\xf9\x93\x83\xd8\xe9\x89\x49\x33\xe6\x4e\xbd\xcb\x07\x90\x1d\x25\x38\xc5\xed\x0f\xf8\xa2\x8b\xa2\xdd\x62\x0f\x41\xa8\xcc\x43\x6a\x43\xd5\x8f\xf0\xaa\xa8\x5a\xe5\x92\xf5\x71\xbc\x5f\xee\x9c\xee\xab\xa0\x48\x6c\x79\x52\x87\xf5\x97\xec\x3a\x44\x73\xc8\x1e\xef\xe7\x75\x19\xab\x07\x7c\xb8\x92\x38\x9e\xee\x5f\xf4\x77\xbc\xdb\x40\xff\x12\x3f\xf3\xd0\xf2\xd4\xc7\x7d\x83\x81\xf3\xfd\xc6\xd7\xc6\x6d\x5e\xbb\x4d\x9a\x1b\xcb\x4f\x5d\xeb\x3d\xd7\xff\xc9\x6c\xf1\xc7\xd5\xae\x77\xed\x4c\xd6\xc1\xb3\xd9\xed\xe1\xb5\x44\xeb\xe8\xc5\xab\xf5\x1f\x1f\xdc\xb2\xb1\x58\x16\x7f\x14\x91\x3f\x64\x5f\xbf\xb2\xa7\xea\x5d\x66\x82\xbd\xd1\x9a\x6d\x49\xd1\xfd\xa3\x76\x6f\xd7\xb1\xf9\x9e\x29\x1c\x76\xef\x37\x3e\xe5\x68\x44\x8f\x3b\xf4\x20\xaf\xa7\xdb\x45\x09\x3a\x90\xa3\xf6\xa6\xf4\x84\xe6\x39\x0c\xa3\x46\x12\xa9\x02\x9f\x3b\xa6\xa2\x3d\xe3\x6e\x05\x91\xdb\x67\x60\xb4\x22\xeb\x01\xb8\x99\x98\xde\x1f\xc9\x00\x90\x15\x66\xfe\x42\x91\x06\xa0\xe3\xc4\x58\x46\x29\x05\x60\x25\xc1\x80\x3f\x59\x01\xe0\xbe\xc5\x98\x75\x86\x0e\x20\x54\x8c\x69\xf8\x82\x2f\x40\x22\xff\xbd\xf1\xab\xe3\xbf\x7a\x62\x4a\x84\x79\x2c\x58\xaf\x02\x54\x52\x08\x7b\x89\x2e\x82\x7e\xb5\xa0\xc4\x51\x65\x51\x02\xd4\x1c\x95\x57\xb7\xa0\xc0\x9b\x57\xc4\x68\x9d\x08\x42\x63\xad\xf2\x66\xcd\x82\x72\xfa\x36\xf2\xe3\x66\xdd\x3f\x37\xe9\x2d\x05\x06\x4e\xc4\x4e\xbe\x60\x9f\xb9\xeb\x45\xf3\x48\xe7\xc3\x8d\x6f\x4f\xed\xb8\x3e\x04\x7d\x7a\x32\x2b\x6c\x7e\x64\x64\xf4\x9d\xc1\xc0\x57\xeb\x81\x89\x47\xaf\xa2\x3a\xc1\xee\xf6\x77\x8f\x67\xba\xd5\xd3\x8e\x39\x33\xfe\x9d\x0c\x25\x1f\x9d\x24\xe6\x09\x4d\x5b\xf9\x49\x4e\x07\x96\xf8\x6b\xb3\xee\x6f\x3b\x3f\x5a\xa1\xaf\xca\x4a\xf2\x76\x79\xb2\x6a\x54\x41\x13\x3f\xe8\x8c\x5c\x9b\x2c\x76\x8d\x6a\x74\xa1\xde\x70\xce\x23\x0f\x91\x70\x1d\x42\xb8\x64\x69\x87\xfc\xed\x72\x15\x19\x7c\xff\x90\x3f\x8d\x2b\x1d\x4a\x33\xd9\xd3\xcf\xd8\x39\x00\x6d\x1e\x17\xe3\x95\xe9\xfc\x15\xc3\x14\x95\x07\xc0\x87\x64\xfa\xeb\xc8\x37\x00\x85\x3a\xa6\x41\x8a\x0a\x00\x83\x52\x7a\x36\x8a\x83\xbf\x38\x08\x1f\xde\xbb\x67\xa8\xda\x01\xa2\xda\x19\xad\x2e\x30\x01\xa4\x1d\x67\x1e\xbe\xfa\xf2\x1f\x3d\x31\x16\x9c\x0e\x4c\xcb\x00\xf5\xb7\x04\xf7\x89\xc8\x82\x63\x63\xb6\xd8\x01\xc5\x51\xc2\x66\x4b\xb6\xec\x71\x0b\x4a\x3c\x7f\xdd\x39\xf5\xa8\x60\x24\x56\xa2\xd2\xc0\xe8\x54\x2e\xfd\xfa\x87\x9c\xfb\x8e\x4b\x2d\x03\x73\xef\x23\x3b\x22\xe8\xdf\x0e\x4e\x85\xfa\x95\xd5\x44\x8c\x52\x92\xfa\x71\x3e\x4c\xb8\x64\x7e\x90\xf9\xac\xd1\xfe\xc9\x9d\xf2\xcb\xd2\x5b\xcc\xc3\x6c\x0f\xae\x29\x89\x17\x91\x45\x12\x1e\x43\x3f\xe4\x9f\x0c\x66\xa6\x79\x92\xcd\x8d\xb7\x7e\x48\x89\xf3\x14\x5f\xbc\xd9\x50\x1d\x77\xc5\x73\x74\x59\xa4\x5a\x37\xd2\xd1\xd3\x63\x55\xb9\x22\x2c\x78\xcc\xeb\xe0\x1a\xba\xd8\x28\xf0\x80\x67\xd7\xc6\xd5\x7c\x43\x7f\x6f\x0f\x0c\xe2\x52\x76\x8b\x0f\xd1\x5d\x04\x39\x92\x5a\xe3\x1d\xef\x71\x16\x89\x4f\x3d\xe7\x75\xd2\x2d\x13\x7d\x2e\x61\xbf\xa7\x80\x6b\x10\xba\x37\xa6\x1b\x40\x38\x8c\xd1\x82\xdc\x04\x40\xf9\x3d\xa3\x0b\x85\x23\x80\x71\x11\xc3\x55\xca\xb2\x5f\x1c\x44\xa0\x12\xad\x37\xa5\x3b\x40\x5c\x0b\x7d\xf7\x19\x02\x40\xf6\x47\xa6\xb6\xab\x48\x80\xf2\x8b\xcc\xa1\x37\x1e\x01\xd4\xcd\xb1\xdd\xbc\x2b\x00\xd0\x32\xc7\x97\x2c\x78\x07\xdc\x3a\x85\x44\x0e\x29\xca\x10\xcf\x74\xef\x93\xe2\x35\xa3\xc5\xfb\x75\x11\x94\x8a\x02\xf9\xb1\x21\x6d\x2b\xda\x98\x6c\xf5\xf5\xc2\x87\x95\xd6\x87\x5b\xcf\xfe\xa8\x48\x97\x0e\xb9\x38\xc4\xf9\xb9\x26\x26\xb1\x62\xef\x34\xe3\xa7\xb4\xc0\xe3\xcf\x3e\x4d\x23\xba\x5e\x06\xc8\xbf\x8b\xfa\x62\x5b\xa1\x12\xa4\x32\x92\xf8\x5e\x25\xff\x74\xe0\xb1\xaf\x3c\xaf\x50\x69\xf5\x01\x0f\xbf\x6f\x3d\xf3\x8b\x27\x0f\x88\x9a\x4d\xe8\x18\x88\x4c\x0e\x38\xb1\xa0\xda\xf4\x21\x4c\xd5\x8f\x76\xf9\x46\xf5\xbb\xe0\x0e\x9f\xd9\x55\x8a\x07\xe6\x01\xcd\xbe\xfb\xd7\xd2\x4a\x2a\xfc\xa4\x7d\x3e\x6f\x9c\xcf\xf7\xf4\x35\xf1\x32\x40\xe8\x65\x3d\xf3\x61\xf0\x30\x44\xde\x4f\x7b\xeb\x75\xd1\x93\x07\x65\x91\xcc\xe7\x2e\xe4\xd5\x88\xb6\x88\x4b\x71\x8d\xf2\x7c\x8a\x31\x8f\x8c\x03\x10\x33\x63\xf4\x21\xdf\x00\x50\x17\xa1\x8f\x38\x5a\x02\x60\xbe\x40\x7f\xea\x38\x1b\x80\xcb\xc0\x6d\xca\xe3\x9f\x01\xc2\xbe\xd1\x2e\x9d\x78\x0c\x90\x3c\x44\xd7\x7f\x66\x02\xa0\x60\x8d\x8e\xfe\x5c\xe0\x3f\x7a\x62\xec\x59\x39\xef\xb4\x03\x3c\x33\xe4\x52\xe0\xa6\x81\x8e\xbe\xbb\x02\x5c\xd2\x48\xa2\xce\x5b\x1f\xb1\x54\x23\x06\xfc\xd0\x5b\x4e\xb9\x4b\xbe\x45\xd8\xf0\x3e\x53\x75\xbe\xac\xf4\x75\xfa\xa7\x17\x8d\x07\x5a\x11\xdf\x1a\xeb\x6f\x7b\xb9\x7c\x36\x7c\x73\x28\x07\x5d\xe0\xb7\x1c\xd6\xdd\x9c\x7c\xb5\xdd\x66\x41\xaa\x94\x2a\x31\xb7\x9f\xed\x6b\x64\x7a\x4f\xac\xe1\x27\xe9\x61\xb6\x24\xb7\x48\xab\x09\xc7\x7e\x85\x58\xba\xc8\xc3\xdf\xd6\x7a\x4c\x22\x85\x43\x17\x66\xe5\x1f\xeb\x07\xa3\xc3\x7c\x16\x0f\x35\x52\x07\x76\x87\x7c\x5b\x66\xa8\xae\xf6\xd3\x08\x21\xae\x3a\x54\x70\xfb\xbe\x08\x64\x5a\x3f\x5c\x7c\xcd\xab\x24\x38\x66\xe3\x5e\x3e\xd5\x6e\x1f\x4e\x75\x20\x19\xea\x6c\x4a\xba\x6b\x4c\x80\x00\x6a\x3c\xf1\x9a\x8b\xb3\xff\x1e\x74\x75\xec\x3d\x27\x1e\xbf\xd7\x98\xe6\xf0\x71\x00\xa9\xb7\x77\x4e\x1d\x99\xff\x77\xfe\xef\xe9\x7a\x33\xe6\x58\x09\x40\x44\xc3\x5f\xe8\x7f\x72\x10\x15\x0f\x6f\x50\x9f\x64\x00\x68\x3a\x79\x2b\xf4\xfc\x29\x80\xae\xb2\x9f\x3d\x31\xaf\x43\xd9\xdc\x59\x2a\x60\x6e\xa8\x86\x37\x5a\x22\x85\xf8\x78\x64\x43\x98\x45\x27\x75\xdb\xfd\xdb\x1e\x89\x0a\xb7\x67\xd8\xde\xc9\x4a\x85\x94\xf4\xad\xf5\xbf\xc6\x63\xb5\x6e\xb7\x2a\x4f\x7d\x1e\x92\xb3\xc1\x7f\xc6\xf5\xd4\x55\xbf\xc8\x8e\x5d\x9f\x2c\xe3\x69\x7e\xd9\xa4\xb6\x34\x96\xd2\x50\x95\xd3\xff\x66\x62\x3c\xf6\x43\xa1\xef\x27\xcf\xa1\xd7\x11\x94\x59\xa9\x5f\x4d\x5f\x75\x86\x04\xa4\x46\x4c\xbf\x79\x4a\x0c\xf8\x96\xd2\x33\x8b\x69\x1f\xf5\x65\x48\xee\x58\xa4\x69\xa8\xf6\xf1\x8e\x7d\xbe\xdc\xf1\xe8\x94\xd7\xd9\x98\x89\xd5\xe2\xf2\x20\x0f\xda\xa8\xe6\xf5\x98\x42\x79\x17\x7c\xb4\x27\x82\x23\x9b\xc1\xa5\x2c\x62\x1a\x79\x3e\xbd\xce\x89\x3a\xd2\x10\xa5\x9c\xec\xed\xc4\x16\xe6\x87\xc2\x27\xf8\x3b\xe8\x87\x78\x63\xe4\x22\xb7\xec\x08\xc1\x79\x58\xaa\xd0\x57\x00\x32\x5f\xe9\xca\x8f\x78\x01\xe8\x1c\xbf\x79\xf8\xb0\x09\x80\xf5\x8d\x1b\x78\x72\x09\x00\xff\x43\xd4\x18\x72\x65\x80\x04\xca\x2b\x4d\x47\x10\xbf\x72\x9e\x1a\xa5\x2b\xd3\xc7\xf2\x00\x3a\xdf\x53\x0f\x53\xbe\x03\x78\xa5\x78\xfb\xd1\xa5\x02\x80\x4f\x7d\xcc\xfb\xe9\x51\x00\x93\x21\x5c\x8a\x42\xfc\x70\x79\xa1\x96\x7f\x49\x6d\x74\x7b\x1e\x51\x28\xaa\xea\xf8\x74\xd3\x1e\x59\x22\xfd\x20\x85\x6c\x9d\x71\x3e\x43\xcd\xb2\x85\xe3\x2b\xdf\x27\x84\xb5\xc0\xf0\x4a\x4d\x78\xcf\x48\x92\xe2\x4c\x6c\xca\x62\x8f\xf1\xd3\xc2\x99\xd0\x10\xce\xfe\x95\xb7\xa9\x63\x93\xfe\xb3\xed\x8f\x47\x72\x06\xa7\xfc\xce\x3f\x92\x9c\xf4\x7b\xd9\xed\x4d\x53\x71\x66\x7a\xeb\xa9\xac\x87\x7d\x01\x72\xfe\x49\x73\xad\xdb\x78\xee\xe0\xd2\xbe\x3a\x19\xd7\xd2\x8c\x86\x95\xf8\x4a\x7f\xe7\xd4\x74\xb2\x35\xcf\x92\x62\x27\xc7\x94\x82\x0d\x86\xbc\x31\x47\x89\x24\x63\x84\x6f\x26\xc1\xfe\x71\x62\x17\x32\x2c\xed\xa5\x9d\x64\x5c\x3f\x8a\x98\x20\x4e\xea\xc3\xb1\x55\x8a\x61\xc3\x1c\x8a\xe6\xb2\x1e\x8a\x4a\xc6\x1e\x0e\x9d\x03\x90\xf3\xbc\xcd\x7a\x78\x0d\xc0\xf0\x2f\x1a\x85\x23\x1f\x01\x9c\x6a\xae\xe6\x1d\x5a\xf8\x77\x3f\x4a\xe9\xf3\x9d\x9c\x63\xff\xef\x5e\x90\x51\xd9\x3d\x6d\xff\x99\x3f\xbe\xd3\xf5\x5c\xd9\x00\x40\x5c\x65\xbb\xc3\xfe\x11\x5a\x09\xb4\x3c\x44\x39\xb1\xed\x56\x9c\xb3\xe8\x01\x67\x1b\x2c\x06\xb9\x4f\x46\x2a\xed\xe5\x14\x7a\x89\x5b\xa3\xb5\xce\xef\xc9\x97\x69\x41\x1b\xe7\x1e\xa9\x6c\xa5\xcf\xf7\xa3\xae\x7d\xbc\x1f\xbe\x31\xf4\xad\xf5\xcc\xe8\x61\xcf\x8a\x4f\xa1\x43\x3d\x1f\x1f\x3b\xaa\x7f\x76\x1b\xab\x7c\xc3\xe5\xe4\xfb\x7c\xed\x5b\xe0\xf3\x15\x07\xc5\xc7\x37\x67\x2f\x76\x64\xdb\xc7\xd7\x07\x2f\xcc\x36\x78\xd9\x85\x55\x39\x2c\xcf\x54\x8d\xd8\x17\x96\x44\xaf\xd2\x54\x98\xd9\xbe\x2f\x1a\x5e\xfb\x51\x34\x6b\xeb\x9c\xa7\xbd\xa1\x93\xbb\x68\x1d\x99\x23\x86\x24\x4f\xb7\xb1\x7a\x97\xa5\x86\x5c\x4e\xe9\xb3\x3e\x95\x7e\x06\x15\x9e\xc4\x6a\xa9\x9f\x82\xc2\x1c\x8f\xfa\x6c\x11\x9f\x7c\x05\x33\x10\x86\x33\xaf\x4a\x0c\xc5\xfa\x07\xd3\x02\x28\x75\xdd\x2c\x38\x94\xf4\x8f\xfb\xe1\xd8\xd5\x33\x87\xaf\x00\xc4\x30\xff\x9e\xf7\x55\xef\xf8\xee\x9f\xef\xdb\xc9\x3d\x77\x38\x90\xd9\x8d\x9f\x7d\x18\x5b\x2f\x0e\xfc\x1f\x27\x00\x44\x66\x07\x7a\x79\xf0\x26\x48\xf0\x6e\x28\xdd\x40\x0d\xe0\x5a\x45\x7d\x1c\x61\xaa\x07\x2d\x2d\xf7\x3a\xee\x74\x9f\xd5\x9a\xa3\x4e\x78\x99\x75\xe5\xf3\x85\x50\xfb\x53\xad\x0c\xf1\x2f\xa7\x6f\x84\xe8\xf4\xe6\x04\x2c\x4d\x29\x55\x5c\x7b\xf5\xc6\x6e\xfb\x2b\xd9\x58\x5d\x3f\x91\xe4\xc1\x30\xdd\xfc\x7a\xf2\x47\x63\xe7\x1d\xf3\xb7\x6f\xfc\xe6\xf5\x9b\xaf\x98\x2d\x3c\xbf\xba\x34\xfd\xa8\xd5\x3c\xa0\xbd\x60\x65\xa0\x22\x6b\xb7\x0f\x46\xb0\x7a\x72\xe3\x4c\x9e\x90\xb9\x6a\xc5\x77\x44\x48\xe6\x79\xf3\xb3\xa5\x38\xa4\x46\xda\x08\xc9\x03\x62\x9a\x94\xdf\x8e\x8e\x8e\xa5\x34\xb1\xcf\x51\xc6\x74\x87\x7d\x27\x71\x20\xc6\x86\x19\xde\xd8\xd9\x00\x0f\x00\x4d\xc5\x6b\x25\x07\x0b\x01\x2c\x4e\xff\x75\xf9\x3f\xeb\xf8\x9f\xbd\x20\x3b\x5c\xc0\xae\x07\xe1\x5f\x3e\x8c\x7d\x4c\x7b\x76\x7d\x18\x08\x63\x82\x1d\xef\x8a\xc2\xdb\x6f\x37\xb6\xde\x89\x49\x5b\x1f\xea\x7f\x88\x4d\x51\xf8\x12\x2c\xdd\xf4\x1c\x59\xa3\xfb\x31\xdd\x3d\x37\x65\xf5\x85\x5d\x47\xa5\x4b\x78\xf3\x62\x9b\xff\xd7\xe6\x33\x5e\xd7\x16\x4e\xe7\x5f\x68\x4b\xb0\xb9\x3e\x77\xac\xef\xfc\xe3\x51\x12\xff\xb1\xdb\x83\xe2\x3e\x5b\xb4\x58\x59\x23\x6e\xe0\x3a\xd4\xb1\x3c\x50\x69\x60\xe0\xf1\x8a\x7f\xcd\xb1\xe8\xa9\xe1\xb9\xee\x07\xeb\xaf\xf2\x7c\x0c\xaa\x1e\xeb\x21\xe4\x32\x0f\x18\x9e\x6d\x9e\x40\xf2\xa4\x85\x1b\x1d\xae\xe5\x46\x51\x26\xf3\x18\xb4\x3d\xaa\x43\xab\xc6\x7a\x1b\xf8\x57\xee\xc1\xdc\x8c\x8c\xd0\xef\x2a\x93\xc3\xd2\x85\xdc\xd6\x1f\x2e\x6e\xc3\x26\x04\xed\xd7\xb3\x2e\x7c\xb6\xe9\xe5\x13\x0a\xa0\xf7\xfa\x72\x05\x59\x15\x80\xfd\x9d\x9f\xeb\x21\xe5\xbe\xd9\x3b\xfd\x37\xbb\x3e\x8c\x86\x9f\x73\x64\x27\xe7\x58\xe5\xfd\x93\x83\xb8\x2a\x74\x04\x36\x14\x60\x9d\x49\x94\x2e\x7e\xea\x07\x61\x82\xb7\x46\x46\x68\xf0\x11\xde\x55\xfc\x8d\xd9\xf3\xce\xbd\x38\x29\xc5\xb7\x9e\x06\x15\x0f\x31\x92\x7a\xc5\x31\x23\xc9\x0f\x11\x3d\x76\xd4\x39\x2f\x02\x47\xd7\xd9\xbd\xc5\xcb\x1c\xdd\xc6\xd7\xa8\x52\x16\x1f\x8c\x58\xed\x59\xb9\xde\x56\x52\x1d\xa7\x17\xb7\x1c\x32\xd9\x59\x5d\xaa\x25\xbe\x92\xb4\x7c\xb9\x12\xad\xc9\xbe\x6a\xba\x4c\xa8\x30\xd5\xd8\x98\xdf\x5a\xf5\x2c\xb9\xa9\x49\x35\xbe\xb6\xbe\x94\xe3\xaa\xd5\xfd\x5e\x02\xb1\x37\xf3\x90\xf6\xf2\xab\xdb\x88\x0f\xf7\xb9\xff\xa7\xff\xe2\x76\xa3\x21\x96\x3c\x84\x4a\x73\xb4\x6e\x7e\x93\xdc\x4f\x95\xe4\xbf\xd0\xa6\x7e\x70\x66\xf3\xa9\x97\x06\x80\xc1\x9e\x9f\xf7\xb9\xe7\xe6\x9e\xdf\xb8\xa8\xb2\x73\xff\xff\x70\x20\x1b\x44\x00\x6a\xec\xf1\xe0\x6f\x78\x98\x64\x12\xa5\x5b\xf8\xb0\x9f\x68\xc6\xb3\x2c\x3a\xf8\x04\xb5\x1d\x29\x21\xa8\x5b\x51\xcd\xba\xb5\xa5\xc4\x60\xeb\x96\x5d\xb4\x19\xa5\x2f\x15\xe0\x12\x15\x81\xe1\xb0\x71\x88\xb3\xf4\xbe\x84\xe2\xf0\x0a\x48\xa7\x71\x7c\x89\x3c\x9d\xf8\x21\xbb\xce\x42\x17\xf1\xa6\x42\x3b\x87\x51\x6f\x68\xc3\xfc\x35\x5d\xc1\x11\xb5\xea\x75\xbf\x55\xab\x42\x65\x15\x5a\x84\xc2\xc6\xb5\x2c\xd5\xdd\xfe\x0f\x9a\x35\x56\x44\x6a\xea\x07\x95\xbd\xd3\xc9\xc8\xde\xc4\x00\xd5\x82\x91\x18\x94\x71\xbc\xbd\xda\xa1\x77\x5d\xe8\xa8\x28\x47\x35\xba\xd7\x97\x30\xaa\x61\xb5\x6a\x0e\x3d\x65\x18\x62\xb0\xa9\xda\xdd\xa7\xdc\xd8\x6e\x7f\x7e\x92\xff\x42\x8d\xa9\x95\x6b\x73\xc0\x93\x4a\xed\x66\x23\x1b\x4e\xd9\x75\x18\xc0\xea\xda\xcf\xf5\x84\x31\xfe\x9c\xa4\x3e\x8c\xfa\xd6\xdf\x39\x90\xa9\x5b\xff\x2d\xff\x5e\xe5\xfd\x3d\xff\x1d\xfa\x0b\x3e\x31\x7d\xa5\xbf\xf3\xec\x00\x31\x8b\x8f\x56\x38\xb4\x61\x74\x7b\x53\xb2\x4a\x73\xa8\x78\x0c\xdf\xa7\x7c\xd6\x9c\x2c\x39\x69\x2b\x5c\xf7\xad\x53\x5b\x08\xdd\x66\xa8\x95\x59\xa0\x91\xdb\x5e\xec\x35\x0f\xc6\xc8\xe7\x24\xfe\xc1\xec\x34\x86\x2c\xdf\x3a\x6e\x5b\xcf\x16\x4d\xdd\xa6\x9b\x24\xa4\xfe\x1d\xc5\xfa\x91\x3e\x85\xa8\x98\x86\x12\x40\x32\x26\x21\x15\x46\x50\xaf\x91\xcf\x12\xcc\xe5\x6f\x62\xfe\x46\x1f\x8b\x12\x91\x9b\x47\x76\xa0\x43\x23\x2e\xcb\x9b\xcf\x3d\xc3\xc4\x06\xfb\x2b\x50\x4f\x51\x60\xb6\x02\x8b\x15\x24\x3e\x97\x62\xbf\xfa\x60\x15\x8a\xde\xcb\x6c\x9a\x79\x9d\x53\x3c\xff\x56\x77\x33\xcb\x73\xbf\xe2\xc5\x97\x51\x38\x5e\x57\x5a\x45\xad\xe7\xd7\x71\x99\x4e\xd3\x8a\x7f\x77\x79\x6d\xb1\xd8\x35\x03\xb8\x59\xfd\x7e\x1d\x94\xdb\xfe\xce\x81\x8c\xb4\xfd\x9c\xe8\x8c\xff\x96\x7f\x4f\x66\xfd\x9c\xef\xf1\x00\xd4\x97\x29\x99\x7b\x38\x61\x8a\xd9\x9c\x8e\x9e\xe4\x81\xa8\x58\x24\xfc\x90\x10\x92\x57\xc9\x48\xdb\xfe\xac\x34\xa5\x83\x8c\x26\xc7\x3f\xd3\xbd\x67\xe1\xe6\xa3\xb9\xe5\x61\x51\xef\xfc\xd2\x71\x11\x27\xe0\x4a\xe7\xf3\x64\x97\x7f\x18\xde\x64\xbb\x5f\x12\x7c\x46\x57\x70\x53\xb0\x32\x21\xe8\x88\x3a\x03\x56\xbe\x27\x25\x4c\x4c\x51\x1a\x7b\x68\xb2\x35\xec\x8c\x2c\x1e\x33\x84\x5e\x08\xfd\xfe\xbf\xf8\x07\x69\xd1\x35\x83\x4d\x3f\x77\x67\xe9\xb1\xd9\xb6\xcd\x4f\xae\x9d\x32\xe1\x93\x49\x38\x2a\x97\x58\x59\xf2\x91\x3e\x9c\x8d\x53\x83\xcc\xda\xfb\xc5\x2d\x0a\x3b\x1f\x19\x97\x81\x99\xad\x20\x6b\x6e\xd9\x03\x7d\x86\x5b\x6f\x2d\x85\x7f\xf5\x04\xfd\xc9\x81\x0c\x1e\xdf\xf3\x5f\xbe\x7f\xff\xd3\x03\x31\xd8\xfb\x87\x07\xe2\x20\xcc\xdd\x33\xbc\x9d\x55\x65\x09\x9a\x3c\xb9\xec\x5d\x39\xca\xc4\x58\xf1\x66\xb1\xc2\x04\x56\x42\xa5\xd2\x59\xe5\x9a\x90\x85\x6d\x3d\x5d\x43\xa3\x1e\x57\x34\xbe\xd7\xfc\xa4\x45\x0d\x89\x7f\x30\x5f\xdc\x1a\xf6\xdf\xe3\x78\x6c\x97\x7f\xb8\x86\x23\x14\xb2\xbb\xd5\xab\xd3\xe3\xc2\x1a\x0f\x7a\x5e\x57\x52\xdc\x44\xbc\x9e\xf6\x6e\x91\x3b\xb6\x49\x9c\xdc\xef\x75\x49\xca\x1b\x77\x72\x53\xd6\x83\x7c\x97\x7f\xd0\xda\x92\xc6\xa5\xd9\x1b\xef\x7a\x1f\xfc\xb0\xfa\x5b\xf7\xac\x29\x49\x7d\x17\x12\x4c\x73\xdd\x5b\xb9\x16\x5d\xe2\xa8\x29\x5e\xfc\x15\x53\x32\x09\xff\x51\x77\xbc\x8c\x31\x46\xe2\xed\xc7\x2a\xbc\xa5\x31\xef\xaf\xeb\xa0\x52\xe5\xe7\x7c\x71\xe1\xe7\xfc\xae\xf2\xcf\xf5\x93\xfa\x50\x66\x76\x7c\xff\x7f\xf6\x20\xb4\x3e\x00\xb8\x36\x73\x62\xfa\xa1\x06\x00\x63\xea\xb5\xf6\xfc\x5b\x90\xcd\x63\xc6\xfc\x32\x05\x88\x6b\xe2\x54\x02\x8f\x22\xfd\x89\xb7\x14\xdd\x65\xe5\xbd\x9b\x09\x4e\xda\x6b\x6a\x38\x87\xa0\xed\x60\x33\x6f\x43\x13\x2b\xcf\xed\xd3\xf6\xcc\xa6\xed\x66\xb4\xf8\x17\x5e\x73\x16\x13\x86\x17\xf0\x15\xe1\x3c\x96\xa3\xbb\xfc\x43\x34\xfe\x58\x05\x9f\x2d\x42\x31\x0f\xbf\xa7\xcd\xc7\xd6\x5e\xb6\x68\xab\xeb\x2d\x87\x9d\x96\x14\xf7\x56\xe7\x94\xb9\x2d\xab\xc4\xb1\xad\x90\xcd\x93\xb6\xcf\xc4\xcc\xf1\x12\x5b\xc5\xe6\xbe\xa2\x55\xf8\x7c\xfc\x1e\x93\x98\xff\xe5\x7d\x10\xd9\xb7\xca\xba\x7d\x52\xbb\x57\x84\x69\x3e\x66\x9b\x41\xfb\xa0\x88\xf3\xd4\xc0\xb6\x8e\x66\xc3\xaf\x9e\xa4\x3f\x3d\x10\xb8\x96\xff\x96\x7f\x7f\xda\xf1\x20\xf4\x7c\xfe\xc3\x03\x21\x06\xb0\x87\x75\xcf\x9e\xa2\x43\x00\xf7\x1a\x6e\xfe\x95\x76\x15\x16\x39\x91\x74\x7a\xd1\x39\x60\x27\x52\xc8\xee\x17\xe0\x4c\xfc\x2a\xbf\x57\xc8\xd9\x75\x8b\x78\x45\x73\x51\xee\x94\xcd\x51\xc2\x7d\xa3\x50\x55\xb2\x5d\xfe\xe1\x02\xe1\xba\xeb\x35\xad\x61\x5d\xc2\xf6\x60\x90\xaa\x9e\xbb\xe6\xe7\xed\xf0\x04\x72\x43\x71\x95\xb9\x6d\xaf\x5c\x73\x43\xa5\x5d\xfe\xc1\x00\xff\xf2\x29\xd2\x8c\x5e\xea\x32\xfe\xd5\x60\xa0\x29\x8d\xb8\x14\x7e\x6e\xea\x81\x31\x9d\x68\x28\x7e\x19\x71\xd4\x88\x75\xb7\xf7\x62\xc7\xfb\x20\x68\x4e\x50\xde\x1e\x54\xb9\xf8\xbf\xbc\x0f\x02\xb2\x1b\x17\x08\x22\xf2\xd9\x00\x35\x17\x7f\xae\x77\x60\xa7\x0f\xe7\x77\x1f\xca\x2a\xd3\x1f\x1c\xd0\x8e\x0f\xa4\x85\xf3\xe7\x2c\x17\xdf\xe1\x20\xea\x01\xae\xfa\x1f\xd3\x48\xaf\x07\x60\xd0\xb9\x38\x1a\xfb\x04\x80\x4b\xf9\xd6\xd1\xe0\x33\x50\x2a\xc2\xc3\xfc\xcc\x8b\x01\x94\x64\x24\xb9\x2e\x3b\xd8\x11\xeb\xd5\x6d\x45\x15\xcd\xd3\x89\x07\x0c\xe3\xe4\x8f\x1b\xfb\x12\x16\xcc\x9d\x14\xfa\xf4\x94\x08\x2b\x4e\x37\x15\x40\xfb\x34\xe1\x89\x8f\xa1\x72\xa0\xba\x37\x21\x21\xe2\x8e\x6a\xbf\xb2\x0c\xc1\x39\x55\x4e\x6d\x5c\x3e\x9a\xa0\x51\x68\xad\x9e\x28\xb3\x4e\x38\x55\x3d\xa9\xb9\x2e\x39\xb6\x4d\x78\xbc\xa1\x75\x43\x6c\x71\x7b\xeb\xcd\x1e\x4d\x0f\x11\xd8\x7e\x31\xb1\xa5\xd5\x2c\xec\xbb\xdd\xb5\xb6\xa1\xa5\x2b\x14\xb1\xbd\xb4\x6d\xac\xa1\xb4\xeb\x7d\x88\x22\x2c\x10\x9c\x65\x1d\xf8\x06\x89\x57\x08\x55\x52\x88\x7f\xf3\x0f\xcf\x76\xf8\xd0\xdf\x7d\x28\x48\xf9\xff\x9e\x7f\xb7\xa7\xed\xe4\xdf\x77\x7f\xcf\xbf\xef\x37\x00\x50\x37\x1c\x2b\x8f\x0b\x07\xb8\xdd\x42\x55\x1f\xce\x07\xc0\x61\x7c\xdd\xd6\x27\x13\x96\x04\x19\xe9\xaa\x9c\x0d\xc0\x52\xb6\x91\x83\xdb\xaa\x1e\xae\xa9\x1e\xe5\x75\x35\x36\x27\xbe\xd1\x71\x13\xbe\xb3\xcb\x3f\xb0\x11\x6d\xad\x2b\x24\x5b\x35\x90\x44\x7e\x8f\x69\x99\x67\x2a\xdd\x44\xde\x60\x23\x99\x31\xc5\x3a\x22\x63\x4c\xb2\xac\xb5\xdc\x17\xc2\x72\xe6\x25\x85\x2c\x99\x71\x42\x5f\x91\x96\xd2\x71\x49\x37\x42\x6b\xed\x05\x25\x66\x31\x0d\x42\x7b\x67\xa9\xa2\x99\x88\x2f\x21\xa5\xbf\x4b\x29\x4d\x48\x86\x50\x3e\xca\xa0\x78\x44\x30\x9c\x10\x34\xcf\xac\xa4\xc9\xaf\x4c\xc0\x60\xea\x65\x7a\x76\xb8\x87\xe4\x3f\xbd\x0f\xbf\xf8\x07\xd2\x7d\xf0\xf3\x79\x88\xcf\xfa\xfd\x1c\x24\x79\x30\x3a\x15\x7f\xce\xea\xfd\x3b\xfc\x47\xc3\x8e\x07\xe4\x28\xc0\xf9\x44\xb2\x86\x90\x53\x3f\xff\x0e\xc9\x04\xa0\xa9\xa4\xa4\xf1\x15\x07\x60\x4b\xbc\xac\xe9\x6a\x06\x20\x50\x43\x7b\xd1\x66\x1c\x7a\x25\xd1\x0c\xc9\xa6\x66\x10\xad\x28\xc4\xd2\x63\x98\x08\x27\x35\xb7\xf9\x2e\xeb\x18\xc1\x3e\xfd\x47\xfc\x1c\x5a\x47\x88\xa3\x96\x6c\x42\x7d\x6a\x43\xc4\x67\x4e\x1f\x45\xca\x94\xfc\x88\xcf\x7c\x0b\x44\x86\x14\x62\x88\x15\xa1\x42\x62\x36\xb2\xf7\x88\x31\x89\x85\xe2\x18\xa9\x55\xa2\x5b\xe6\xa2\xc4\xf6\x2e\xff\x30\x40\xa4\xab\x4d\x91\x11\x14\x2e\x26\x4a\x76\x2c\x4b\x91\x0b\xda\x12\x65\xfb\x98\x25\x15\x05\x2c\x88\xb4\x1f\x7b\xa5\x06\xf9\xa5\x89\x57\x7e\xdc\x91\xfa\xc4\xe7\x44\x64\x5b\x6b\x91\x7c\xc0\xeb\x47\xf4\x22\x92\x8b\x85\x91\xf6\xe1\x57\xee\xff\x3b\x0f\x46\xf2\x60\xbc\xbf\xf6\x73\x3e\xdd\xe1\xe3\x6a\x8f\xec\x5c\xff\x34\x3f\x67\xca\xce\xbf\x8b\x58\xff\x39\xbd\x4e\xfc\x9c\xde\x73\x00\x37\x5c\x8f\xfd\xed\xe2\x00\xc0\x60\x40\xc5\x64\x6f\x0b\x20\xb0\x78\xf3\x2f\x0b\x4a\xc0\x89\xcd\xdc\xca\x34\xda\x03\x75\xf2\x9f\x18\x41\x47\x10\x02\x55\xd7\x58\x8f\x68\xde\x05\x65\x5d\x19\xce\xdb\x6a\x1b\x20\x68\xd2\xcd\x7d\x5d\xa5\x11\xee\x59\xbf\xe1\x49\x57\x44\xc0\x59\xd7\x77\x7c\x53\xb2\x2f\xe0\x8a\x3f\x96\xcf\x59\xe6\x31\x71\x35\xa2\x47\xf0\x8b\xd4\x04\xb1\x2d\xe5\x8e\x28\x99\xb8\x21\x71\x24\x5b\x42\xa8\x5b\xb4\x9d\xd8\x55\x12\x24\x42\x25\xa2\x4b\x0c\xac\x6b\x16\x57\x10\xe2\x27\xc6\xb6\x9b\x8a\xb1\x09\xec\x25\x66\xf4\x3e\x17\x3d\xc1\x67\x4b\xcc\x1b\x4c\x10\x51\xe3\x55\x23\x66\x4d\x0c\x8b\x68\x73\x7f\x26\xbe\x9a\x0f\x10\xcc\xe3\x46\x13\xbb\x91\xf6\x42\x72\x5c\x41\x70\x93\xd8\xcb\xcb\xba\xeb\xc5\x7a\xfe\xfb\x39\xf8\xfc\xe4\x0e\x07\xb4\xf2\x3b\x07\x74\xdf\x64\x87\x83\x91\xdb\xe1\x60\x22\x7e\x4e\x5f\x5e\x80\x0b\x93\x64\x25\x66\x9c\x00\x7f\x37\xec\xd9\x63\x35\x04\x40\x37\x7f\x3c\xc2\x42\x12\x80\xfb\xe8\xc5\x18\x13\x27\x00\x31\x71\x1a\x19\x9d\x1c\x58\x93\x39\x73\x6b\x42\xfd\x20\xb4\x28\x4f\x30\x18\xab\x64\xc0\x03\xcd\x3a\x26\x1e\x25\x3e\x78\xa8\x37\xc6\xe4\xa4\x28\x09\x21\x16\xb5\xac\x8b\x72\x69\xe0\xef\x60\xcb\xd6\x28\xcb\x0e\xba\x9e\xbc\x9c\x8d\x52\x47\xc1\x34\x00\xc5\x79\x45\x7c\x08\xf4\x23\x6a\x38\x73\xc5\x2f\xc2\xa5\x14\x7d\x3e\x71\xd1\x42\xd8\x9b\xa3\xc5\xbf\x2d\x94\x09\x27\x4a\xcb\xf8\x1c\x05\xa2\x81\xaa\x5a\x8e\x77\x9e\x5f\x8a\x48\x6c\x6d\xe1\xbf\xc2\xe7\x41\x9c\x7e\x96\x2e\x10\xc9\xc3\x42\x24\x0c\x74\xf1\x25\x73\x0d\xc2\xf9\x61\x22\x4f\x22\x97\x11\x9c\x98\xb2\xe2\x3d\xc3\x69\x05\x2c\x4b\xe9\xdc\xb2\x00\x87\x1f\xf3\xfd\x5f\xef\xe4\xad\x0a\x7e\xf2\x83\x71\xff\xee\x89\x91\x60\x15\x9a\x3f\x5b\x04\xa0\x54\x25\xd6\x79\x25\x0c\x40\x3b\x52\x9a\x8e\xb6\x19\xc0\xd0\x4f\xfe\x09\xd3\x79\x00\x53\x0b\x55\x63\xee\x53\x30\x6d\x26\xa8\xfd\x45\x34\x0d\xa4\x4c\xbc\x4c\xd8\x94\x24\x89\xad\x66\xe9\x56\x0e\x3a\x43\x84\x35\x53\x7d\xf7\x97\x16\x44\x82\xba\xc1\x5a\x84\x8a\x43\xd7\x76\xb6\x1e\x79\x9a\x9b\x47\x3c\xbe\x51\x9b\xa9\xa4\x25\xe0\xc1\x2e\x07\x12\xad\xf2\xb4\x3b\x30\x62\x69\x4b\x4d\xf1\xcd\x5b\x54\xe4\x67\xdc\x0f\xb9\xa6\xaf\x19\x31\xd4\x38\x41\x19\x87\x35\x8d\xf8\xb0\x2d\x32\xa9\x38\xd4\x40\xd4\xa9\xad\x57\x92\xda\xe8\xd9\x10\x1f\x7c\x82\x04\x25\xf6\x2f\x3f\x75\xc4\x2b\x89\x01\xac\xbe\xcf\xfc\xdc\xb2\x14\x17\x36\xcb\x47\xef\x6b\xb9\xd4\xd6\x26\x9f\x27\xfd\x47\x4f\x99\xa9\x4d\x21\xcf\x81\x41\x6d\x99\xc6\xcd\x6d\x57\xc3\x57\x2f\x65\x53\x71\x6a\xce\xfe\x3d\x22\x72\x69\xb8\x30\xa7\xd4\x2e\x17\xb9\xe1\xad\xd3\x76\x23\xad\x5f\x14\x44\xb6\x6e\xda\xbd\x03\xf8\xbb\x84\xbd\xf7\x3f\xfb\x40\xe2\x20\xd8\x17\x78\x29\x8e\x7d\xff\xb5\x0f\xd2\xe6\x42\x8c\xe7\x98\xfe\xd1\x97\x73\x47\xca\xe9\x16\x17\x80\x49\x87\xec\x2c\x63\x29\x80\x05\x5a\x79\x88\x5b\x00\xc6\xac\xc8\xb5\x9e\x8b\xcd\x81\x92\x95\x8b\xe1\x31\x25\x73\x62\x8b\x85\xac\xb9\x8b\x4e\x16\x01\x67\x56\xe7\x12\x6a\xa1\xb0\x3d\x6b\xfc\x38\x8c\xde\x35\x74\xfb\xa4\x01\x4d\xea\x53\xdf\x2a\x3c\xb7\x8e\x59\xe9\xdf\x21\x0f\xb6\x4a\x35\x62\x1a\x0d\x22\x1a\x76\xfb\x71\x3c\x94\x88\xef\x1c\xe2\x5f\xe1\xf6\xcb\xc7\x4f\xcd\x24\x3e\xdf\x7c\x2d\x63\x8a\x3c\x92\x24\x88\x4b\x97\x66\x43\x31\xc5\x1e\xdd\xa2\x92\x72\x47\xfd\x88\x2c\x27\xf9\x50\x48\x1e\x90\x69\x7a\xe9\x6c\xac\x80\xdf\xe4\xe7\x16\xd9\x71\xac\x96\x3f\xf3\x20\xad\xbc\x22\x36\xd1\x2f\xa2\x9f\x56\x0e\xb1\xe9\xe5\xc9\xdd\xe3\xa6\x40\xdc\x54\xf5\xaa\x22\x79\x40\xda\x28\x14\x1f\xe1\x62\x9c\xa5\x9a\x02\x15\x46\xb6\xe4\x6d\x87\x01\x2e\x12\xb8\x6d\xff\x16\x02\xa0\x67\xe4\xd1\x3d\x24\xf9\x0f\x0e\xe2\x3d\x6f\xf1\xc9\x30\x00\xd9\x45\x81\x8e\xb3\x48\x00\x8d\x68\x91\x94\x2b\x1b\x00\x06\x04\xf1\x75\x9a\x31\x00\x8b\x20\x59\x6f\x66\x2e\x00\xeb\xf3\x8a\x4d\x9c\xf7\x01\x61\x3b\xa4\xbe\x26\xca\x02\x46\xb6\x22\xfa\xb4\x8a\x41\x44\x5d\xab\x10\x8b\x55\xa3\xbb\x84\x14\xcb\x05\x27\x15\x5b\xea\xed\x3a\xb3\xfb\x81\x15\xee\xb1\x78\x7b\x63\x91\xe4\x43\xc1\xca\x5b\x39\x7a\x99\xc5\x06\x91\x09\xbb\xfd\x38\x57\xd4\x86\x9f\x7f\x49\xca\xdc\xac\x54\xee\x7b\x1f\x9e\xd2\xb7\xc9\xaa\xc0\x3c\xcd\x91\x96\xfa\x27\xff\x81\xeb\x96\xc2\xa2\x6c\xa2\x51\xeb\xcb\xd2\x25\x68\xa6\x88\xf9\x69\x3d\x39\x32\xb4\x69\x04\xe6\x8b\x95\xbc\x04\x1a\x13\xd6\x36\xf4\x59\x5e\x11\xbb\x37\x30\xe4\x2d\x85\xc2\x33\x2c\x7d\xe0\xd9\xde\x97\x8a\xfa\xd8\x0d\xdf\x03\xa4\x3e\x9c\x3f\x39\x98\xda\x2c\x15\x67\x9c\xbf\x8b\x18\xc0\xe5\x4f\x3c\xb1\xfb\x6e\x03\xdc\xbd\xc8\x7d\xe8\xd0\x22\x00\x7b\x21\x7b\xea\xd1\x44\x00\xb1\x60\x9e\xc2\x93\x4b\xff\xf0\x41\x6c\x08\xfa\x5d\x76\x04\x30\xd9\x10\x1b\xa1\xf5\x00\xb0\x4a\x97\x62\x66\xa0\x05\xb0\xdf\x56\x48\xe6\xa6\xd8\xed\xcb\x51\x77\xfc\xa2\x9b\xa6\xf4\x86\xe8\x62\x1b\x6b\xf6\xc6\xf0\x02\x41\xc6\xa6\xd8\xbe\xce\x81\x6f\xfb\x84\x45\x72\x90\xbe\x6f\xca\x16\xc6\x94\x25\xb1\x3a\xfc\xf6\xd6\x7e\x03\xa3\x22\xb3\xd8\xb1\xcd\x0f\x3a\xe7\x9b\xae\xa4\x5e\xdb\x74\xd7\xb0\x7e\xe6\x9d\xd6\x85\x2d\x52\x29\x18\x16\xc8\xcc\xc1\x2c\x29\xa8\x2f\x92\xe5\x48\xec\xf0\x30\xc3\x9b\x4d\x32\xc1\x88\xd5\xa4\x27\x9b\xfb\xa4\x33\x50\xe4\xb1\xc3\x8b\x9c\xb2\x28\x14\x77\xdc\xc9\xa9\x13\xf2\x07\xd1\xb7\xa2\x4c\x86\xef\x29\xd6\xa3\x15\xa3\xa2\x07\x58\x94\x6e\x63\x4e\x87\xef\x79\xa1\xa3\x4c\x8b\x19\x0e\x8e\xea\xa6\x55\x8e\xc1\x7a\x05\xb0\xb4\xb3\xaa\x2a\x63\x1f\xf8\x67\x91\x3c\x20\x24\x0e\xa6\x52\x58\x9d\x0f\xc7\xe5\x96\x0a\x70\x25\x8a\xa3\x64\x1f\x23\x00\xa3\x17\x87\xfb\xe1\xf0\x5f\xfb\x20\xd9\xca\x73\xf9\x94\x37\x80\xaa\x04\x6f\xc7\xb9\x83\x00\x06\xfb\xf8\x79\x2f\x8d\x02\x58\xdc\x16\xe7\xbb\x6d\x06\x60\xff\x58\xbc\xf2\x6e\x2c\x80\xcb\xac\x6c\x0a\x67\x0e\x2c\xb9\xbb\xaa\x24\x89\x0d\x80\xb2\xdb\x4b\xed\x42\xe5\x40\xa2\xbc\xcb\x59\x93\x1c\xe3\x5a\xc2\x49\xbb\x44\x5b\x70\xca\xc4\xbf\xb5\xe6\xf5\x6b\xf5\x5f\xdf\xd2\x37\x8f\x89\xdf\x8a\xae\xda\x5c\x33\xe6\x28\x94\x4a\x3d\xba\x79\x58\xef\x66\x83\x75\xc6\x07\x2c\x9d\x66\x4d\x2f\x67\xce\x37\x4c\xa5\xaa\xfe\xa7\x98\xbc\x4c\xcc\x29\x05\xe6\x35\xe6\x02\xb6\x3f\x79\x98\x75\x61\x39\x05\x44\x6d\x8a\xcd\x77\xa4\x82\x1e\xd2\x2b\xe9\xe8\x08\xa7\x62\x07\x2a\x38\xee\xfa\xc0\x37\x65\x19\x34\x63\x74\x6a\x2f\x5e\xd5\x1f\x6d\x17\xbd\xaf\x9b\x5a\x35\x1a\xa3\x12\x56\xd7\x71\x4c\xb5\x12\xab\x16\xe8\xdd\x38\xa0\xee\x87\x75\x0a\x14\x25\xf5\xe1\x3c\xc0\x68\x1e\xdb\xf4\xf7\x0e\x29\x0d\xd4\xe4\xc1\x5d\x70\x6f\x00\xb8\x7e\x81\xfb\xe8\xfe\x01\x00\x56\x71\xce\xd3\xe4\x2f\x00\x78\x82\x39\xe8\x8f\x2d\xfc\xbb\x27\xc6\x38\x91\xaf\xf3\x72\xc1\x3f\x7a\x62\xd8\x25\xbe\x33\x2d\x01\x78\xfe\x90\x09\xe7\xfe\x0b\xc0\x0b\xa9\x58\x27\x22\x03\x26\x3e\x3c\x1a\xad\x4a\x91\x44\x29\xcf\x68\x23\x36\x13\x89\xed\x37\x8e\xa3\xb6\xa1\xae\x4f\xf1\xb7\xed\xf9\xbd\x3e\x84\x8a\xed\xf6\xe4\x58\x99\x28\x17\x72\xa6\xf3\x62\x0f\xe8\xf7\x34\xbc\xcb\x93\xc5\x1c\xd4\x6a\x78\x69\x58\xe4\x84\x3e\xaf\xa6\xf2\xc5\xb9\xb4\x1f\xe5\xad\x64\xbc\xbc\x5c\x9e\xfc\x67\x2f\xce\xc2\x3b\xc5\xf3\x1b\xbc\x99\x1d\x63\x52\xca\xac\x88\xc2\x34\xee\xc1\x16\xd5\x7e\xc4\x4c\xea\x77\x92\x0f\xa5\xfb\x9c\xfa\x49\xb4\x61\x74\xfe\x63\x53\x0d\x16\x74\x5e\x54\x2b\x89\x83\xd9\xf5\xa1\xdc\xd0\x12\xc3\xce\xfb\x33\x94\x31\x6a\x0b\x6f\x5e\xf5\x3b\x99\xdf\xae\xc3\xb7\xd9\xe3\xa5\xf4\x8b\x8f\x62\xad\x67\xdf\x4f\x9e\x00\x20\x64\xce\x7e\x88\xa2\xe0\x17\x07\xf1\xbf\x7a\x62\xdc\x3a\xc5\x4a\x18\x2b\x00\x7c\xe8\x25\x8f\xb1\x21\x01\x02\x6b\xe5\x36\x44\x4e\x80\x59\x30\x83\xea\x82\x52\x33\xd1\xda\x37\x58\xbf\xc4\xa8\x7c\xfb\x9d\x3b\xbb\xd5\x13\xd7\xd9\xad\x0d\xc7\x60\xf7\x9a\xb0\x79\x1c\x85\xad\x77\xd4\xbe\x94\x28\xac\xa3\x39\x6f\x5e\x57\xce\x13\xf4\xa8\x21\x63\x13\x73\xc9\x61\x54\x91\xce\xdd\xbe\x89\x8a\x0a\x64\x93\xfa\x81\x89\xa5\x2a\x3f\x64\xab\xb2\xcd\xd2\x97\xca\x2e\x74\x86\xc2\x97\xd5\xe0\xa2\xf0\x35\x11\xc5\xeb\x6b\x23\x79\x4e\xdf\xae\x28\xff\x58\x4f\xce\x19\x1e\x4e\x55\xf3\xd9\x30\xc8\x6a\x79\xbd\xa5\x61\x8d\xa0\xcf\xe0\xef\xae\xd1\x94\x45\x76\x25\x0b\xb5\xdf\xd1\xfa\x81\x32\x48\x98\x6e\xf6\xd4\x12\x40\xa7\x45\x4b\x93\x7c\x28\x95\x53\x3a\x92\x98\x17\xa1\x6d\xc5\x19\x7a\x47\xb1\x12\xc1\x32\x45\xc7\x74\xc2\x37\x85\x7d\x3d\xf2\x32\x75\xb6\x36\x4b\xbd\x19\x01\x68\xe8\xd9\xf4\xc9\xc2\x01\x58\x59\x59\xcf\x1f\x41\x03\x88\x86\xb3\xbe\xa4\xc8\x07\x50\xa4\x65\x91\xa5\x94\xfb\xd5\x13\x63\xc9\xc3\x81\xbf\x70\x06\xc0\xc5\x9f\x27\xf3\x9a\x2e\x80\xf7\x7b\xe1\x7e\x06\x46\x80\xc0\x50\x09\x36\x8e\x44\x80\xb0\xfb\xb2\x49\x22\x1f\xc1\x26\x12\xab\xcc\xa8\x14\x4e\xe4\x09\xf1\xd6\xed\x34\x75\xdb\x8e\xf0\xd3\xb3\xb0\xf4\x3c\xb6\x75\xcd\xd5\xdd\xa5\x38\xe6\xfb\x6e\x4f\x8e\x95\x95\x51\x76\x4f\x11\xd9\xae\x17\x85\x5a\xb7\xe6\xb5\x68\x75\x0e\xc2\x45\xfd\xd6\xf7\xb0\x5a\xf2\x3f\x79\x18\x92\x0f\x65\xd4\x54\x5d\x61\x4d\xb1\xb0\xf7\xad\xb0\xa6\xf7\x7a\x6d\xee\xe3\x9e\x2a\xad\x87\x1b\xf8\x4c\xf3\x8e\x4b\x3a\x0b\x88\xa7\xf7\x7f\x34\x08\xeb\x26\xa1\xb8\x12\x89\xb5\x7b\x75\xf9\xd0\x77\x62\xdb\x2a\x6e\xeb\xd3\xa3\x7b\xa3\x59\x8a\xd7\xf4\x15\x31\x69\xe1\x77\xf2\x0a\x0c\xac\xb0\x67\x43\x32\xb3\xb4\x0c\x96\xb0\xd5\x81\x16\xf7\xf5\x0d\x2b\x37\xcf\xf8\x5f\x00\xa0\xd5\x67\x79\x4a\xf6\x06\x80\x83\x8b\x95\x8b\x3c\x03\x40\x2c\x9d\xf5\x22\x85\x0f\x80\xb2\x34\x0b\x1d\x65\xed\xaf\x9e\x18\x5b\x61\x0e\xb9\x0b\x25\x00\xee\x16\x5c\x4d\xd4\x22\x00\x41\x17\x04\x02\xee\xd8\x03\x84\x6b\x88\xbe\x62\xef\x03\x88\xbd\x2c\xd5\x28\x5c\x05\x81\xb1\xcd\x8a\x67\x15\x70\x44\xcb\x98\x93\x9a\xd9\xc6\xe7\xb6\xcb\x43\x37\x4c\xac\xdd\x31\x5b\x7f\x7b\x4e\x38\x95\xc4\x4e\x63\x25\x9d\x2d\x43\x1b\x73\x9f\xa0\x8d\x6d\xae\x65\x7f\x29\x7b\xb7\xeb\x45\xc9\xd6\x9b\x7f\x23\xd5\xb0\xbd\x7e\x57\x43\x65\xf6\x73\x4b\x20\xe2\xa8\x6a\xcb\x82\x5f\x1d\xcd\x6e\x2f\xce\x31\x0d\x9e\x95\xbd\x15\xbd\xef\x58\xb5\xc3\x57\xa5\x4b\x3b\x7a\xc9\x74\x0f\xaf\xa1\x0b\x86\x3a\xbb\x74\xd1\x1b\x62\x39\x51\x4d\xfa\xfa\x83\x88\xdb\x99\xe9\xd5\x7b\x0c\xe6\x91\x1a\x69\x8c\xe5\xdf\x0c\x7d\x51\xfe\x89\xe6\x45\xb6\x46\xd1\x68\xba\xb8\xa0\x5c\x3f\x63\x5d\xf4\xe7\x68\x53\x12\x07\x93\xd6\x66\xfc\x10\xab\x12\xdc\x98\x28\x6e\xf2\x05\xfb\x35\xa0\x15\xe0\x96\xf5\x3d\x9d\x03\xfb\x01\xb8\xf0\x2c\xa8\xa3\x7f\x03\x48\xd9\xb3\x38\x51\x2c\x03\x68\xb4\xb0\xf4\x9d\xd4\x06\x30\x75\xbc\xd7\x4b\x95\x03\xe0\xd0\xc2\x4a\x79\x2e\xf1\x57\x4f\x4c\xe8\x23\x3e\x1e\xba\x1e\x80\x98\x38\x81\x16\x66\x5e\x80\xc4\x7a\xc9\x23\xc2\xb2\x10\x97\xc2\x23\x67\xa5\xb0\x9f\x28\x9e\xe8\xa5\x21\x66\x02\xdb\x7a\xd1\xa5\x46\x48\xaf\x71\xdc\x8b\x80\x1c\xfb\x0f\xf1\x4d\x98\x41\xf7\x76\xff\x63\x05\xe7\x90\x2f\x1c\xea\xd2\x93\x1f\x25\x6e\x44\x5b\x08\x35\xec\x6b\x3a\xb6\x76\xc6\xc0\x78\xf0\x41\xc7\x43\x52\x2f\xce\xfa\x86\xba\xd0\xdc\x52\xd3\x5f\xdf\xef\x68\xe6\x2c\x32\xd4\x2a\x7d\xe0\xd0\x15\x5b\x2a\x7b\xa4\xfc\xf2\x81\xfe\xa9\x15\xbd\x07\x7b\x3a\x9f\x19\xb8\xaf\x09\x15\x67\x91\x7c\x28\xd5\x12\x46\x63\x1b\x6b\x59\x5f\xca\x5a\x4d\x7c\x11\x73\xe9\x06\x05\x22\xa6\x33\xc8\xb6\x54\xf6\xec\x4f\xa6\x79\x28\x62\x7c\x21\xc9\x87\x92\xda\x6c\x9a\x8c\x29\x09\x4f\x4c\xfc\x6e\x76\x08\xcb\x1d\xe2\x1e\xaf\x6c\x9a\x87\x5d\x0a\xf0\x05\xb8\xbb\x97\xb9\xf7\x60\x39\x00\xdf\x77\x16\xcf\xa3\x71\x00\xb2\x3c\xf7\x3e\x1d\xa7\x03\xd0\x7a\xc8\x2c\x7f\xe2\x38\x80\x45\x21\x8b\xd0\xe9\x3e\x00\x97\xcb\x6c\xd9\x17\xb0\xff\xee\x89\x49\x5c\x16\xb4\x66\x7d\x0a\x90\xf6\x4a\x3c\x4b\xd8\x1b\x12\x32\x97\x64\xf8\xe5\x97\x89\xba\xe9\x48\xd5\xa3\xc6\xdd\xdb\x45\x29\x97\xf5\xec\x3d\x98\x70\x6e\xd1\xe7\xad\x83\x12\xe7\xd1\xd9\x3e\xf5\x5e\x9d\xa5\xef\x11\x21\xce\xf8\xd4\xa7\xf5\x32\x6b\xd7\xad\xef\x36\x14\x3f\x76\x5a\x8e\x36\x62\x1f\xca\x79\xa6\x4f\xe2\x61\x56\x72\x34\x5b\x67\x0f\xb4\x59\x7d\x62\xd2\x77\x9b\xdf\xd3\xcc\xdf\x97\x6b\xd8\xb3\x18\x56\x3b\xf8\x38\xc0\x44\x76\xd9\xf0\xa1\x4d\x93\x9c\xa9\xcc\xca\x5a\x05\x47\x55\x8d\xf9\xad\xb5\x84\x62\xdf\x52\x6b\x73\x86\x0d\xd7\xdc\xb3\xf9\x7f\x59\xa8\x23\x22\x33\xb9\xb2\x28\x2d\xe8\x91\x5b\x29\x3a\xf7\xa7\x2c\xc6\x51\x16\x49\x49\xc9\x03\x16\x38\xb4\x4e\x1c\x6f\x62\x85\x45\x01\xe6\x48\xd4\x54\x14\xd1\xea\x1e\xa6\x3f\xfc\x62\xb8\xb0\x95\x21\x36\x38\xf8\x16\x00\xb3\x2d\xb3\xf2\x61\x19\x00\x5e\x75\xe6\x1f\xe4\x3e\x00\xf2\xa9\xcc\xcc\x14\x95\x00\xba\x23\xf7\xf8\x4e\xda\x03\x58\x5d\x64\x42\x53\x71\x01\xb8\x4f\x33\x5b\x9e\xfd\x02\x10\x6a\xc2\x62\x7a\x59\xf7\xbf\xf4\xc4\x50\x0b\xfb\xf1\xeb\x42\x55\xb1\xad\x44\x88\x6c\x01\xd1\xa7\x90\x4b\x51\xd4\x70\x61\xdb\x2f\x2b\x53\x7b\xcb\x33\x10\x47\x9d\x64\x6f\xf1\x23\x19\x48\x3d\x39\xeb\x9d\x9e\x83\xf1\xbc\xad\x82\xcb\x43\x76\xaf\xea\xf7\x3d\xcb\x59\x38\x6f\xaa\xfc\x51\xe9\xf5\x91\xa5\x40\x7d\xca\x29\xbe\x1e\xdb\xa9\x32\xfd\xa1\xe9\xd2\xae\x8f\xfd\x19\xa6\xa7\x67\x2f\xb6\x7f\xdd\xed\xc5\x91\xb6\xd0\x59\xaa\xab\xae\xdc\xed\xc5\xa1\xb7\x56\x5b\xbb\x53\x7a\x71\xd7\x87\xe2\x6b\xf3\x65\x63\x20\x47\x35\x39\xc1\x96\x0e\x79\x2c\x3d\x3e\x7e\xc8\x76\x08\xd9\x9a\x3a\xb5\xeb\x43\x09\xb4\x7d\x89\x7e\x10\x4b\x45\xe2\x60\x02\xa2\xec\x72\xb0\xd7\x42\x1d\x01\x18\x85\x99\xfe\x3a\x24\x08\x20\x30\xc1\x98\x40\xbe\x07\x40\x51\x92\x21\xf4\x98\xe9\xbf\x7b\x62\x7c\x3c\x98\x08\xe7\xa2\x01\x22\x95\xee\x19\x5c\xe6\x04\x48\xcd\x64\x6e\xb9\x1a\x06\x90\x9b\xce\x05\x8c\x22\x00\xa5\xf2\x02\x19\xbc\x51\xf0\xa6\xb2\x4a\xd4\x45\xea\x39\x31\xa5\xe2\x8d\x9c\x95\x81\xd6\x76\x70\xb1\xbc\x46\x8d\xe7\x29\xdc\x85\x9c\x0d\x63\x6c\x32\x0a\xe5\x12\x3b\xec\xbc\x51\x39\xb3\xfa\xd6\xff\x50\x94\x57\x27\x7a\x21\xd7\x89\x50\xe7\xf4\x6a\x72\x06\x69\x1e\x36\x62\xfd\x6e\x79\x3e\xcb\xd8\x6e\x9c\xe6\xf5\xe8\x40\xae\xc5\xf3\x6f\x47\x7a\x78\xba\x6a\xac\xbe\xcf\x58\x3d\x7e\xd7\xb0\x6a\xf3\x66\x6e\xaa\x75\x6f\x25\x9d\x9d\xe2\xa2\x5c\x7d\x69\x7e\x98\xc3\x97\x65\xd6\xea\x23\x99\xae\x0e\xba\xab\x4f\xcb\x5e\x93\x7c\x28\x09\xe7\x1d\x33\x36\xd4\xf2\x54\x62\x83\x1d\x32\x10\xdd\x19\x08\x12\x07\x13\xb6\xdf\x91\x1c\x95\x9f\x74\x21\x78\xcc\xf1\x18\x9a\x29\xde\xdb\x2f\xc9\xb1\x00\x23\x10\x25\xe9\x57\x63\x9f\x88\xbd\x1e\xea\x0e\xc0\x84\x67\x8a\xfb\xcf\xef\x48\xd1\x68\x86\x67\xe4\x36\x00\xca\x8b\x77\x3a\x8f\x0e\xfc\xe2\x20\x9c\x8f\x31\x10\xa9\xa2\x7e\xf5\xc4\xc4\xdd\x67\xa6\xba\xbc\x0f\x20\x53\xf7\x9e\xdf\xb5\xc7\x00\x45\x33\xec\x9e\xf4\x42\x00\x95\x66\x7c\x17\xb8\x9e\x00\xba\xf6\xa3\x50\x98\xf8\x75\x62\x7f\xfd\x69\xa9\x22\x9d\x67\xdb\x25\x35\x3e\x2a\x74\xee\x9a\xb8\x9b\xe5\xd9\xfa\xc5\xc9\x0e\xc8\xd1\xf4\x54\xfb\x97\x8f\xb8\x97\xf2\xc3\x6e\x85\x6a\xf7\x6e\xcc\x84\x7b\xf2\x55\x3b\xbf\x8f\xf9\x7e\xdc\xb6\xf5\xc3\xc6\x27\xa9\x91\xef\x36\x01\x23\x01\x83\x3c\x4f\x65\x1d\x30\x5f\xcb\xfb\x22\xea\x96\x9d\x2f\x7d\x7f\xfb\xec\x66\x69\x86\xcb\xa5\xb9\xd3\xed\x0c\x79\x97\x5c\x6a\x16\x8a\x1a\xcb\x32\x92\x5c\x2a\x96\x3e\xd4\x48\x24\x4d\xba\x9e\x5a\x81\x07\xb2\xb1\x6b\xae\xdb\x6b\x57\x4b\x57\x23\xe6\x5d\x9b\x36\x0e\xe6\xdf\x0f\x33\x76\xbd\x8a\x60\xcb\x16\x0e\xe6\x77\x3d\x86\x64\x4f\x97\x21\x71\x30\xde\xf7\x5d\x2d\xd0\xac\xf1\x61\xde\xae\xce\x8d\x98\xa3\xd1\x2a\x1e\x54\x2e\xa2\x98\x82\x08\x55\x00\xd6\xa1\xbb\xe6\x87\x44\x00\xc4\x07\xef\xbe\x26\x57\xf8\x87\x07\x61\x87\x83\x70\x9d\xba\xfd\x83\xb2\xe9\x17\x07\x91\xb4\x48\x2f\x74\x96\x03\x20\x37\x9c\x99\x86\x7a\x09\xa0\x12\xc7\x22\x77\x4b\x0f\xa0\x3e\x8d\xa3\xfb\x1e\x27\xa0\x5a\xfc\x05\xb9\xc5\xf9\x89\xdf\x1e\xe7\x89\xe7\x6b\x5f\xde\xae\x68\x63\x54\x64\x76\xeb\xc3\x49\xd7\x4b\x6b\xdb\x25\x5d\x42\x2a\x97\xb2\x58\xf9\xd5\xfc\xb5\x90\x1b\xeb\x1a\x1c\xf7\x5a\x72\x6a\x4f\x20\x75\x55\xc4\xe8\xc0\x44\xaf\x4b\xdf\x9b\xc5\xf1\x6b\xdd\x0f\x3d\xd9\x3f\x06\x0f\x6b\xd4\x9a\x7b\x5b\x8d\x39\xbf\x0d\x2a\x1a\xf0\x96\xfc\xf6\xb9\x87\x39\xeb\xa1\xf7\xf0\x8f\xed\xae\xfa\x94\x3e\xef\x73\xf3\x29\x2d\x7a\x31\x43\xde\xf3\x4b\xec\x75\xb4\x24\x1f\x4a\xd8\x09\x4f\xc2\x1a\x73\xe9\x58\x40\x92\xf7\x99\x75\x87\xc2\xf7\x7e\xd5\x9e\xb0\xd1\x9d\x4b\xe5\x73\xc3\x53\x05\xa9\x71\xff\xa3\xb7\x81\xbb\x04\x4a\x21\xb9\xdc\x4b\xde\x6d\x08\xb5\x96\xf0\x96\xe4\x43\x71\xe7\x73\xbd\x86\x69\x0e\xff\x0a\xc0\x4d\xc3\xc8\x74\xf8\x0b\x80\xcc\x5e\x7a\xfa\x23\xb9\xbf\xfa\x51\x2c\xfd\xe8\xe6\x8f\xeb\x00\x78\xf7\xd2\x7e\x3c\xbe\x0c\x10\x55\x4d\x13\x4b\x89\x07\x48\xc7\xde\x6c\x3a\x79\x02\xa0\x5c\x91\x6e\xe1\x82\x1b\x40\x7d\x1c\xe3\xd8\x8d\x48\x80\xc7\x8c\xec\xd7\x99\x7b\x00\xba\x19\xf8\x32\x45\xe6\x80\xfe\xa5\xb8\xf0\xa2\x1a\x33\xe1\xde\x8b\x10\x99\x13\x0e\x81\x38\xd5\x5e\x65\x55\xb6\x84\x4d\x04\xae\xed\x90\xd1\x5a\x4d\xcb\x5c\x7a\x69\x9e\xa7\xff\x5b\xf8\x74\x23\x5e\xae\xec\xd2\x8f\xe2\xa7\x9f\xa3\x94\x7b\x8e\x4f\xbb\x54\x9d\x8a\x34\x19\xe4\xfd\x72\x3e\x4b\x20\xf2\xe0\x28\xf5\xe0\x44\x92\x4b\x58\xe2\xe4\xd3\x97\xd3\xd1\xdb\x21\xd7\x7f\xac\x3c\xa1\x8a\xb4\x09\x9c\x9f\x5b\x69\x25\xec\xfa\x50\xba\xfc\xaf\x2f\x4f\x3f\x7c\x19\x48\xe5\x6b\xb3\xc6\x59\xfa\x91\xc4\xc1\xf8\x8c\xfb\x68\x23\x4e\x64\x4f\x7b\xf1\xf9\xd9\x23\x96\x32\xe2\x3d\xaa\x7d\xf6\xa0\x4c\x92\x15\x77\x7d\x28\xa1\x9e\x03\x18\xb3\xc8\x14\xa7\x60\x9f\x6b\xd8\x5b\xa1\x76\x00\x5c\x01\x77\x53\x0f\x93\x03\xc8\x93\xd1\xf5\x1f\xf9\x0e\x60\xa4\x73\xeb\xdc\x51\x36\x00\x3b\xb2\x9b\xee\xff\x79\x8e\x06\x31\x5f\x8f\x3d\x76\xe2\x57\x3f\x4a\xfe\xcb\xeb\x3f\x28\x89\x00\xb5\xea\xd7\xec\x29\x5f\x02\xb4\xcb\xde\xbe\x77\x21\x0b\xa0\x97\x86\xe5\xf6\xdd\x6f\x00\x03\x77\xb9\xca\xf9\x25\xc0\xe5\xd3\x84\xc0\x51\xc5\x7b\x84\x90\xcf\x1f\xc4\xd3\x6c\x78\x71\x75\x23\x4e\xf2\x21\xb1\x81\x08\xd3\x61\x1b\xad\x6b\xb5\x5d\xb3\x9c\x6f\xae\x5b\xf1\xbf\x6b\x7a\xa1\x52\xbb\x96\x91\xb9\x86\x2c\xb0\x7b\xd8\xf7\xc4\x63\xd6\x2f\xd5\xa9\xe8\xc6\x3b\xad\x2f\xcb\xd1\xca\x39\xe3\x5f\x4a\x06\xc6\xc2\xed\xef\x3b\x4d\x15\xbc\x30\x08\x42\x26\xa7\xcf\xbc\xee\xe4\x0f\xb8\x95\x18\x3e\xdf\xde\x72\xcc\xef\x66\xdc\xc9\x25\x97\xda\x60\x1f\xa5\x28\x8b\x95\xcd\x07\x49\x5e\x6c\x91\xb7\xd7\x1e\x97\x1c\xf5\x3c\x15\xde\xbb\x3e\x5e\xc0\xeb\xa6\x1e\xc6\x8a\x98\xcd\x48\x72\xbd\x10\x3a\x80\xac\x4a\x33\x70\x5e\x0a\xf6\x43\x8d\x27\x9e\x71\xe2\x0f\xa9\x42\x9b\xc6\xc5\x39\x7e\x09\xa4\xc5\xe8\x45\xd6\x38\xd0\x04\x24\x63\x39\x42\x4f\x00\x08\x59\xdf\x6e\x3c\xf4\x9f\xdf\x4d\x11\x34\xf2\x87\x8f\x00\x98\x25\x5f\x2f\x3e\xdc\x03\xe0\xa6\x73\x75\xfb\x70\xea\xaf\xdc\x97\xe4\xbf\xaf\x28\xfd\xe9\x81\xe8\xa0\xfa\xe9\xc5\xe8\x1b\xbf\xba\x8f\xa2\x16\xe0\x03\x35\x9d\xd8\x95\xe3\x00\x5f\xef\xb2\x1c\x64\xda\x80\xd1\x39\x7d\x9e\x30\x29\x13\xe2\x2d\x04\x85\x90\x9f\x31\x71\x8b\x05\x43\x26\xc9\x10\x61\x84\x54\x5f\x1e\x54\x92\xaa\xc2\x7c\x91\xf8\xaa\x63\xa6\xdc\xaf\x57\xbe\xf8\x56\x23\x76\x66\x52\x3d\xda\xe5\x75\xf4\xcb\xab\xdf\xc8\x03\x6e\xbf\xa2\xfa\x50\xfe\x99\xde\x57\xa3\xa9\x63\x7c\xae\xdf\xc8\x9b\x58\x75\xf5\xfb\xb5\xe7\x41\x9e\x47\x4a\xfd\x66\x1f\x74\x5c\x71\x0f\xcb\xe7\x5e\x3c\xdc\x50\xbb\xeb\x01\x61\xcf\x70\x5a\xcd\x2f\x97\x71\x1a\x4f\x4b\x59\xd7\x2d\xac\x77\x5c\x4c\xe2\x46\xdc\xca\x96\x70\xa4\x4c\xc8\x43\x52\xa6\xd7\xdb\x27\xc5\x45\xa1\xcc\x92\x0f\xda\x33\xc4\xd8\xa0\xcf\xc4\x7f\xdd\xe5\x3f\xb8\xa3\xeb\xb0\x27\x43\xab\xad\x35\x22\x3e\x61\x53\x82\xbe\x03\x88\x8c\xd1\x8c\x1c\xfc\xcf\xff\x2b\x1f\x5e\x3b\x7a\x60\xee\xff\x87\x5e\x90\xd0\x9d\xfc\x9b\xd4\x0b\x22\xb2\xc7\xe5\xff\xde\x77\x1b\x51\x13\x28\x47\x00\x36\xca\xee\x6c\x5e\x97\x04\x20\x26\x72\xae\x09\xf5\x10\x2f\xe0\xb5\x85\xc8\x4d\xf2\xd1\x8c\x98\xd3\x92\x33\x11\x8e\x63\x57\xd7\xc9\x54\xd1\xc5\xf2\x8f\x5f\xcd\x6b\x5b\xc4\xb4\xb3\xdf\x8f\xfc\x5a\x1f\x7a\xf9\x4d\x7c\x80\xc6\x97\xd1\x96\xde\xf7\xf4\x4e\xa7\xc6\x06\x47\x75\xdf\x5d\xb7\x3f\x31\xe4\x3d\x29\xf5\x92\xdc\xee\x48\xcf\xed\x19\x87\xc7\x8d\x76\x92\x6d\xa7\xe7\x3f\x35\xbd\xb4\x5d\xac\xdf\xbf\xa4\x5d\x33\x64\xfb\xb8\xea\xf0\x4a\xfa\x83\x51\x1b\x87\xb2\x9a\xb5\xee\x62\x2e\x1b\xc3\x02\xd4\x86\x46\xee\x94\xf5\xcb\xdc\x13\x88\xc6\x8c\x57\xd6\x17\xb3\xd8\x91\x7d\xa9\x26\xbb\xfc\x47\x7c\x9a\x1a\xba\x36\xa6\xd9\x82\x3b\x85\x1e\xf3\x34\x9c\xd7\x9c\x3e\x65\x16\x4b\x15\x6a\x68\xba\x94\x30\xb0\xa9\xe2\x77\x03\x40\xca\xe4\xe6\xf3\x83\xf9\x00\x7a\xb2\x97\xab\xc9\x4a\x01\x6c\x3b\xff\xe2\xfd\xcf\xba\x48\x79\x1f\xe9\x3a\x78\xf8\x64\x27\xf7\xdc\xf1\x21\x90\x7c\x18\xdf\xb3\x7f\xf6\x21\x6c\x16\xef\x65\xf8\xf9\xbe\x97\x56\xe5\xb4\x0b\x00\x31\x89\x73\x49\xa8\x75\xfd\x30\xbe\x5f\x48\xd2\xd0\x6f\xdc\x6b\x93\x53\xba\xd7\xef\x40\x2f\x0b\xf2\xa1\x86\xff\xfd\xfb\x15\x6b\x2b\x71\xd6\xd4\x8f\x5a\xa3\x86\xe6\x06\x03\x93\x1f\x37\x7b\x1d\x9e\xa5\x2e\x7f\xf7\xa4\xd8\xda\x7e\xfa\xc0\xa7\xd1\x9e\x8b\xa4\x1e\x14\xa3\xbb\x93\x2d\x73\x6b\xcd\x62\xc6\x1f\x07\x2d\x17\x9f\xd4\xd2\x9a\x7c\xe9\x15\x5e\xc6\x55\xde\x37\x35\x79\x6c\xb4\xba\x56\xba\xdf\x64\xb9\xc9\x6f\x83\x2c\x8f\xdd\xf4\x6c\xcd\x02\x42\x30\xf3\xa3\xc9\x70\x15\x3f\xd2\x2f\x15\x6f\x42\x5d\xfe\x04\x55\x96\x80\x37\x69\x2c\x7a\x89\xd6\xff\xff\x10\x76\x96\x71\x55\x2e\xdf\xdf\xc6\x04\x03\xc5\x6e\x11\x03\x91\xee\xee\xee\xee\xee\xee\xee\x94\xee\x90\x2e\x29\x11\x09\x05\x09\x95\x12\x11\x94\xb0\x15\x50\x41\x45\x14\xa5\x6b\x77\xac\xe7\xa3\xec\x0d\x47\xcf\xf9\x3d\xff\x57\xeb\x83\xf2\x62\xcf\x30\xf7\x0c\xdc\xeb\x9a\xef\x95\x34\x68\x79\xe6\xfa\x2d\xa4\x55\x6c\x95\x45\x58\x09\x3f\x8a\x36\xea\xbe\x45\x79\xbe\x2d\xea\x6b\x98\x9f\x85\x55\x4e\x13\xda\x35\x58\x00\x40\x7e\x84\x26\xff\xd7\xe7\x37\xa3\xde\xe2\xfe\xab\xfa\x9e\xfc\xb3\xef\x4b\xf6\x20\xb4\xa4\x91\xfa\xdf\xa4\x5c\x18\xf2\xfd\xef\x3f\x3d\xf8\xbf\x2a\xd3\xea\xd9\xd9\x79\x66\x62\x13\xbf\x84\x58\xf9\x87\x42\x7c\x98\x04\x18\x51\x3c\x49\xc7\x6e\x55\x3e\xe8\x29\xd6\x88\x41\xf1\xea\x5f\x88\xb9\x90\x97\xb7\x52\xea\x78\xbc\xe8\x5c\xa4\xc4\x82\x57\xf0\xb7\xda\xad\xde\x9a\xf3\x56\x85\xcf\xeb\xef\xda\xef\x98\x9d\xe9\xae\xbc\x53\x6e\x92\x35\x23\xf8\x23\xfb\xae\xb8\xa1\xc5\x5c\xf3\x2c\x4f\x5d\x94\x81\xc6\xf4\xf0\xbc\xeb\x0d\x0f\x43\xdc\x48\xd2\x62\xfd\x75\x06\x63\xb7\xa1\x5b\x4b\x98\x22\x5e\xe3\xbc\xc7\x31\x2b\x0e\xb9\xa7\x4c\xb6\x76\x55\xae\x1a\x67\x45\x99\xa0\x5a\xfd\xd6\x1c\xd3\x14\x8d\x9f\xdf\x3d\x8e\x68\x4d\xe0\x36\xa1\xad\xbb\x89\xbc\x1d\xed\x61\xba\xa7\x86\x1e\x39\x72\x75\x90\xec\x3f\x31\x8a\xbb\xb1\x03\xed\x1f\x24\x67\x9c\x7d\x7d\x06\xfd\x24\x20\x0c\x40\x1b\x75\xe6\xf0\x76\x14\x80\x3d\x29\x07\xe5\x6f\x1f\x06\xf9\xde\x33\xd9\x8b\x32\x6a\xbd\xbe\x2f\xfc\xc9\x81\xe0\x8a\xd7\xeb\xbc\x37\x00\xd3\x27\xba\xf4\x0f\xad\xc4\x45\xbe\x11\x61\xf9\xa1\x23\xf8\x1f\x52\xea\x7a\xbd\x6d\x53\x38\x65\x95\x9d\xf6\x98\xf2\x78\xf4\x82\xa1\x70\xb0\x5f\x4a\x2a\x32\xd1\xde\x30\x31\x25\xe8\xc5\xaa\x65\x80\x52\x7e\xad\x7b\xff\x8a\x6c\xe6\x6c\xf1\x5b\x5b\xcc\xb2\x61\x83\xf2\x75\x57\xe3\xfa\xa5\xad\x6f\xc4\x2b\xdc\x75\xd2\x96\xbc\x16\x99\xae\x3b\x92\xfd\x1f\xda\x1c\x0b\x4d\x4b\x2f\x0b\xee\xeb\xec\xf8\xd2\xbc\x12\x96\xbd\x57\xd7\xe4\x6d\xee\xea\xcd\xf4\x29\x3d\x9b\x61\xfe\x35\x8f\x94\x29\x5d\xe8\xf7\x47\xd4\xc6\x2b\xea\xbd\xed\xae\x41\x2a\xc7\xf8\xea\xf9\x3d\x38\x82\x32\x0a\x9f\xd3\xe7\x69\x61\x46\xb5\x85\xd1\xe8\xd9\x35\x0a\xa1\xcb\x03\x52\xf5\x0e\x34\x14\x61\xce\xfa\x86\xea\x6a\xd7\x2d\x60\x8a\xbd\x4e\x03\x18\x55\x6d\xa1\xfc\x35\x1e\xcf\xf0\x3f\xd7\x01\x99\x07\x22\xf7\x3d\xc9\x1c\xc8\x8c\x2b\xc5\x7f\xdc\x7f\x26\xe7\x20\x7c\xb0\x06\x60\xa2\x3f\x37\x38\x44\x00\x01\x3e\x7a\xbe\x1b\xed\x67\x09\x1f\x25\x53\x55\x02\x6a\xe6\xf0\x5c\xaa\x32\x16\x89\x79\x4e\xd8\x70\xc3\x03\x1e\xb9\x31\x67\xd1\xb5\x76\x69\x61\x7a\xbe\x47\x91\x03\xbe\x0d\x09\x15\xce\x5d\x48\xd7\x44\xfb\x24\x57\x9b\xdd\x08\xb6\xf2\x9a\x74\x8c\xb1\xc7\x5a\x4a\x97\x77\x66\xa9\x76\xe6\x6a\xf7\x97\xeb\xd7\x24\xd5\x4b\xd7\xf8\x56\xe9\x33\x4e\xaa\xbd\x5b\x1b\x5a\x7d\x94\x6a\xa6\x46\xb9\xc6\xbc\x96\x98\xf8\x56\x8d\x30\xdd\x86\x70\x8d\x33\xd2\x38\xfe\xf1\x1a\x92\x31\x5a\x4b\xbd\x6b\x44\x10\x75\x38\xfc\x86\x06\xf7\xf3\x3b\xa8\xde\x90\x73\x64\xef\x87\xe6\x50\xcf\x20\x3a\x2d\x60\x9b\xe6\x60\xd7\x15\x34\xf8\x1a\x69\x7c\x7f\xe0\x87\x79\xe2\x41\xa3\xd1\xdc\x3a\x82\x15\x76\xf9\x06\xf0\xbb\x9d\x49\x01\x10\xd1\x4d\xf1\x27\x07\xb2\xfa\xe7\x73\x30\x59\x43\xf1\x1f\x39\x10\xe4\xfe\xef\x08\xa9\xdf\xd1\xef\x0d\x40\xa9\x4a\x41\xd1\x49\x03\xbe\xbc\x2b\x5c\x49\x0d\x0e\x44\x63\xc9\x16\x39\xd3\xe2\x4c\x02\x9f\xea\x76\x3d\xdb\x94\x5e\xdc\x92\x41\x84\x4d\x51\xa8\x33\x56\xc7\x36\xd7\xab\xcf\xe3\x09\xe6\x8c\x97\x4c\x70\x95\x03\x07\x7a\x20\xa6\x2b\x74\xd0\xca\x06\x4d\x9d\x5b\x19\x49\x34\x8a\x44\x3d\x6c\x40\x45\xf5\xe9\x88\xa2\xb6\x0d\x9c\x89\xc9\x51\x2b\x40\x46\x4e\x37\xc6\x06\x2b\xbf\x46\x2e\x20\x77\x5e\x95\xdf\xe0\x1f\x86\x7e\xf3\x0f\xc6\x4a\x11\x8b\x77\x51\x75\x41\xa1\x4a\x6a\xdf\xf7\xa2\x2b\x7c\x8f\x28\x5b\x8e\xbf\x45\x0f\xf8\x54\x2a\x2b\xbd\x4b\xc2\x84\x79\xc8\xa9\xdc\x7b\x51\x8f\xb1\xf4\x8c\x50\xd9\x32\xb4\x03\x4b\xeb\xe2\xa0\xd2\xd9\xc7\x85\xd5\x77\x3e\xa2\x92\xd4\x63\x86\xed\x76\x38\x0e\xe0\xee\xf2\xe7\x3a\xb8\x51\xb6\x5e\x1f\xc9\xaf\xd7\x8f\x91\xff\xd5\xff\x9e\x13\xf8\xef\xfe\x6f\x27\x11\x80\xb1\xef\xac\x71\xe3\x4d\x48\xe7\xbb\xcb\x31\x5c\x61\x41\xbc\x2b\x45\x2f\x59\x93\x75\x95\x80\x54\xd1\x57\x4d\x89\x35\xc5\x23\xf4\x0f\x19\x59\xf8\x75\xe1\x56\xad\x7e\xda\x52\x6c\xe4\x3f\xc8\x60\xa3\xc3\x12\x3c\x23\x37\xfc\x17\x87\x30\xdd\xe5\xc2\x7e\x06\xda\x73\x18\xd5\xfb\xd4\x01\xaa\x6a\x0a\x18\xc6\x97\x6f\xfd\x07\x94\xea\xd0\xed\x33\xb9\x81\xa7\x15\x42\x30\x07\xd1\x4a\x7e\xc7\xc8\xfc\x83\xbc\x08\x66\x08\x43\xe3\xb9\x5d\xce\x12\x5d\x8a\xa9\x70\x3d\x2c\xa7\x37\xd7\x8e\x95\x71\x3c\x2b\x1f\x34\x75\x11\x2b\xe4\xb8\x20\x1f\x3e\x71\x07\x9b\x69\x5f\x22\xdf\x35\x32\x80\x9d\xb5\x15\x97\x97\x7a\xc5\x88\xf3\xb6\xa4\x94\xf7\x7f\xb6\x13\x57\x6e\x5e\xb1\xb9\x0e\xc8\x1c\xc8\xff\x3f\x07\x62\x71\xe1\xff\x9f\x03\xd1\x44\x09\xc0\x4c\x71\xb6\xa2\xea\x32\x3c\xe3\xfd\xc2\x9c\x9f\xcb\x00\x46\xe2\xa6\x7c\xee\x49\xa2\xc4\x34\xa5\x35\xd9\x93\xa1\x63\x84\x1a\xbd\x7b\x5a\x97\xdd\xd1\xf8\x17\x56\x97\x4d\x98\xc8\xfc\x83\xd5\x57\x5c\x73\x88\xa8\x7d\xb0\xa9\x3a\xee\x49\xbc\xaa\x5d\x8d\x41\x04\x4e\x3f\x6f\xd2\xe9\xb4\xf6\x75\x1c\xcd\x2d\x2a\xe7\x4e\x35\x73\xec\xb7\x2e\x6f\x67\x84\x52\x36\xb6\xe9\x15\xda\x45\x4b\x9e\x0a\x9b\x35\x27\xf5\x0f\xef\xc5\x37\xdc\x2e\xac\x85\x7d\xc8\x86\xf7\xe2\x27\x0e\x89\x33\x31\x4f\x90\x7a\x80\xec\xc3\xa5\x9a\x51\x93\xb9\x07\xe9\xf3\xdf\xad\x71\x33\xc6\xa5\x52\x7b\x3e\xbf\xc2\x07\xeb\x39\x4b\xd1\x7c\xb0\xc1\xdf\xd2\x79\x0e\x90\xbe\xed\xcf\xfd\x70\xe0\xc3\x7a\xfd\xfe\xc7\x3e\xb8\xb6\xed\x4f\x0e\x68\xa3\xff\xcb\xb1\x5e\x6f\x69\x92\xfa\xdf\x2c\x00\x14\x79\x14\x14\x05\xd7\x01\xb8\x9e\x5f\x5c\x4e\xa1\x82\x72\xb1\x52\x8e\xfb\x57\x9f\x13\x09\x8a\xed\x62\xec\xbe\x05\x44\x7f\x1d\x23\x39\xbc\xcb\x05\x42\x81\xb9\xae\xd6\x1b\xeb\x29\x82\xa0\xd3\x19\xfd\x38\xf3\xb7\x78\x82\x6f\xb4\x51\xa4\xc9\x08\x3e\x2f\xe2\xa3\xd9\x43\xbd\x56\x7c\x76\xba\xac\x59\x96\x16\x33\xde\xbf\xa4\xc8\x5c\x58\xed\x27\x0e\x7d\xfb\xba\xb5\xaa\x92\x30\xfe\xd8\x43\x13\x4b\x46\xb9\x16\xfc\xae\x37\x32\x16\x99\x32\xd6\xb8\xd9\x1f\xdb\x2d\x2a\xa4\xd2\xf1\x74\x58\x55\x33\xaa\xbf\x73\x1f\xfe\x2f\xee\x41\x6c\xcf\xcf\x48\x82\x9b\xf2\xf8\xe6\xb9\xd8\x75\xfd\xcf\xf3\x70\x7d\x5c\x1b\x1e\x08\x52\xfe\xc1\x4b\xd2\x3a\x20\x7b\x10\xea\xbf\xac\xd7\x52\xa5\xf5\x9a\x1f\x02\x70\xd1\xec\xc0\x97\xf4\x5c\x00\x2e\x41\xba\xd0\x18\x26\xf8\x2a\x92\xcc\xe4\x11\xe4\x01\x2e\xf2\x0b\xbc\xaf\x3d\x44\x89\x1f\xb4\xd0\x12\x95\xf6\xcc\x44\x77\x63\x79\x79\x1e\xcb\x83\x84\x15\xdb\x27\x6a\x66\x26\x77\x08\x23\x1e\x2d\x1a\x8c\x06\xd2\x84\xfb\x21\x37\x34\xfb\x74\x90\x84\x94\xb8\x44\xed\x21\x8d\xf7\x04\xed\x1c\x1b\xbd\x33\x6a\x3b\x09\xa7\xca\xcb\x0c\x98\x95\xf8\xf0\xc8\xa6\xeb\x06\x44\xf9\x45\x7c\xf1\x23\x53\xe3\x27\xd2\x5f\xf0\xf0\x72\x42\x6f\x55\x4a\x15\x3f\xf0\xf5\x93\x81\xaa\xc4\x67\xfc\xe4\xda\x0e\xbd\xb7\x1b\xb9\x0f\x12\x84\x3b\x04\x5e\x55\xec\x86\xef\xe1\x2f\xee\x41\x98\x19\x3d\x49\x3c\x2e\xfd\x1e\xa0\x91\xb0\x3e\xee\xb7\x24\x6f\xd2\xba\x07\x82\xbc\x0f\x7e\x9b\x25\x71\x70\xa4\xfe\xf6\x43\x02\xa9\xff\x7b\x6e\xbd\x96\x91\x38\x91\xa2\x6d\x00\xa7\x9a\xa8\x02\xae\xda\xac\x7f\x1d\x5f\x08\xc0\x29\x7f\x56\x36\x34\x13\xf0\x22\xad\x0c\x77\xbc\xc7\xa1\x57\xa6\x91\x75\xcc\xb1\x0a\x5c\xd5\xbc\x78\x03\xad\xe5\x89\xdf\x0c\x3c\xc4\xb3\x4d\xef\x12\xbd\xac\x07\xe4\x77\x18\x9a\x13\x3d\x5d\xa5\xe4\xa3\xf5\x3a\x89\x0a\x7e\x91\x4a\x27\xb4\xa8\x88\xe2\x51\x2b\x4a\x85\x6a\x81\x44\xe9\x64\x6d\x25\x7e\x95\x73\x84\xc5\x02\x16\x35\x33\x45\x17\xc2\x54\xe5\x45\xb5\x38\x39\x24\xa1\xa6\x49\x57\xe3\x81\xb4\x1a\xe1\xf6\xa3\x69\xf5\x64\xc9\x97\x84\x94\x17\x2d\x1a\x79\x12\x0e\x84\xe0\x09\x6b\x8d\x51\x31\x3a\xc2\xd0\xfc\x3b\x95\x7e\x72\xee\x83\xf0\xeb\xdf\xe3\x2e\xf9\x9b\x7b\x10\x40\x03\x35\xf1\x96\x48\x0e\x40\x3f\x69\x7f\xf8\x93\x83\xf9\x39\x4c\x3a\x07\xc8\x3e\x18\x92\xff\xe2\x2e\x89\x03\xa8\x20\xad\x87\x6c\xd2\x7a\x88\x23\x7d\x7f\x90\xe2\x7a\x0d\xb3\x05\x60\x0b\x3e\xfe\xca\xaf\x06\x40\x78\xf5\xd2\x45\x67\x2f\xc0\x48\x61\x18\x9e\xdb\x78\xc2\x2d\x15\x0f\xf6\x7e\xb3\x0f\xc0\xaf\x67\x28\xa8\x61\x64\x07\xdb\x4d\x4b\x45\x79\x75\x5b\x61\xb7\xbd\x95\xa8\xb5\x36\x0f\x11\xed\x2e\x23\x46\x50\xff\x4c\xfc\x1a\x38\x22\x51\xaa\xaa\x42\x7c\x7a\x35\x50\xca\x68\x83\x7f\x28\x21\x7a\x16\x08\xca\x9f\x91\xcd\x24\xba\x56\xc5\xcb\xfd\x94\x71\x22\x72\xde\xf1\x54\x1c\x92\x48\x20\x9a\x76\xae\xc9\xdd\x14\x2b\x22\xea\x0c\x99\xc9\x55\x8a\x6d\x25\x32\x8d\x36\x2b\x84\x89\x3c\x23\xb2\x4f\xd7\xc9\xaf\x0a\x5b\x10\x3d\x57\xe3\x65\x92\xff\xe6\x1e\xf8\x11\x20\x4e\xfc\x2a\x98\x0f\xf0\x69\xfa\x8f\x7d\x70\xe8\xff\xe0\x80\x56\x49\xfc\xc7\xb7\xf5\x9a\x64\x47\x1a\x37\x35\x89\x03\x08\x07\x38\x43\x41\x39\xef\x13\x0f\x70\xa5\xe1\x40\x96\x5b\x12\x80\xe0\x56\x5a\x3a\xfb\x10\x00\x29\x77\xfa\x20\x8b\x54\x18\x56\x16\x61\xe1\x32\x3c\x02\x09\xda\xf7\xb9\xf6\xe8\xb6\x41\x88\x01\x3d\xb7\xb8\x56\x0c\x38\x58\x3d\xe7\xfd\xaa\x71\x09\x2c\x1c\x5b\xf9\xa6\xd5\x0a\x40\xc8\xeb\x8d\x10\xaf\xf2\x30\x30\x86\xa4\x08\xdf\x54\xf4\x81\xbd\xb1\x8b\xa2\x9d\xf2\xfc\x44\x44\x7a\xb6\xf8\x59\x59\x59\x62\x5f\xd1\xa0\xe4\x88\x34\x0f\xb1\xab\x2a\x46\x92\x20\x79\x8c\xd8\x78\xe7\xa4\x94\xa2\xf8\x5e\xe2\xed\x07\xdd\x52\x3b\x45\xba\x88\x6d\x4f\x5e\x4b\xee\x14\x5a\x20\x0e\xbf\x61\x16\x0f\x15\xbc\x49\x9c\xf8\xcc\x21\xa6\x21\xb8\x9b\x38\xb7\xf0\x40\xf4\xb6\xa0\x11\x71\x06\x33\x2a\x26\xc1\x5f\x0f\x2a\xc4\x65\x81\x61\x00\xfc\xef\xdf\x13\xff\x67\x0e\x06\x69\x3e\x6a\x5e\x93\xd6\xff\xd9\xf5\x9a\xb6\x85\xc4\xbf\x90\xd6\x87\x0f\x89\x1b\xb3\x77\x59\xaf\xce\x89\x00\x17\x3b\xf6\x5a\xd8\x7a\x00\x70\x54\x1c\x39\x64\x39\x09\x20\x5a\x47\xeb\x68\x7a\x00\x40\x2e\x92\x5e\x42\x77\x16\xa6\x54\x69\xaf\xdc\xd5\xd6\x82\x9b\xba\x43\x6c\x08\x32\xff\xa0\xb6\x0f\xaa\xac\x83\x39\x22\xc8\xfc\x83\xe2\x27\xf0\xf6\xb7\xe4\x1d\x96\x2f\x03\x97\xb0\xcf\x7c\xee\xb2\xe1\xa0\x17\x7f\x43\xe0\xa0\x8c\x3d\x30\x66\x7e\x12\x56\x90\x58\x03\x95\xfc\x71\x01\x6f\x89\x33\x40\x5b\x59\x22\x1c\x21\xa6\x07\x7b\x6f\xf7\x8b\x78\x8a\x28\xc1\xb1\x7b\x99\xc2\xda\x42\x66\xc0\xf4\xf0\xad\x60\x97\x20\x3f\x9c\x1f\x6e\x10\x3a\xc6\x9f\x0d\x12\xef\x22\xf8\xd7\xf8\xf9\x40\x78\x72\x54\xc0\x85\x8f\x0f\x2c\xe7\xf6\xf0\x49\x10\xbc\xff\x07\x07\xb4\x7f\xbd\xd6\x92\xf2\x50\x8a\x91\xeb\x35\x9d\xc4\xc5\xc4\x3c\xf8\x93\x83\x71\xf9\xb9\x5e\x2d\x1c\xd6\xab\xcd\x01\x80\xf3\x31\xbb\xe6\x2c\x92\x01\xd8\x2e\x1c\x3c\x61\xca\x04\x20\x94\x7a\x6a\xa7\x9e\x34\x80\x4c\x25\x5d\xb0\xe6\x25\x20\x2a\x0f\x5f\x42\xa8\xd5\xc0\x92\x7a\xe3\xe5\x6a\xd5\x04\x78\x6f\x48\xcb\xa4\xa9\xbc\x0c\xef\xcc\x7c\x98\x95\x95\x16\xa1\xcd\x61\x0f\xfb\x7e\x05\x2d\x68\xf4\x08\xe3\xd8\x2b\x17\x03\x37\xfc\x9f\x71\x8a\xcb\x72\x43\x42\x24\x1d\xf7\x0f\xa9\x4e\x48\x8d\xa7\xe2\x76\x15\xd7\x84\xfc\x8c\xdb\x5c\xb2\x62\x6f\x21\x24\xdf\x85\xa7\x58\xc4\x1f\x22\xcb\x35\xb9\x31\xc2\xf5\xe0\x5e\xd3\xcf\xcb\x2e\x18\x06\x7e\x77\xdf\xf2\x68\x0a\x1e\x01\xe3\xce\x14\x3e\x5e\xbe\x3e\x08\x7a\xc2\xc6\xdd\xca\xf7\x18\x4c\xdf\xb4\xf0\x8e\xf1\x5a\x41\xf8\xfb\x1b\xdc\x41\x00\x14\x7c\x82\x47\x7f\x3d\x17\x67\xf0\x62\x7b\xb6\x6f\x01\x60\xa8\x11\x31\xa2\xf2\x03\xe0\x19\x14\xd9\xb7\x2f\xee\x1f\x1c\x44\x95\xd4\x8d\x53\xe7\x00\xb4\x12\xe5\xc5\xce\x67\x02\x18\xfd\x54\x5a\x63\xd4\x03\x30\x8f\xd6\xdc\xc9\xad\x08\x60\xb5\x4f\xef\x9a\xc8\x13\xc8\xb7\x4a\x30\x4b\x56\x5c\x82\x0b\xd6\xbb\x6c\x18\xb5\x15\x89\x49\x96\x99\x9e\xc1\x66\xe2\x04\xa2\xd9\xf6\xc8\xed\x76\x8d\x04\x4e\xe3\xdd\x19\x6a\x1e\xf6\xf8\x58\x7d\x8b\xb2\x2a\xff\xc3\xb8\x2e\xed\xcf\x77\xb9\x43\x7b\x70\x0c\x1a\x0d\xbd\x27\xa2\xb6\x63\xf1\xaa\x1d\x2f\xcf\x45\xb5\x63\x87\x95\x05\x26\x94\xae\x86\x62\x96\x15\x55\x97\x32\xe3\x47\xb1\x0f\xe5\xed\x11\xef\xa3\xda\x71\x05\xb2\x78\xd4\xe1\xe0\x05\xdc\xa2\xac\x3d\x2a\x29\x90\x6e\xde\x53\xee\x1b\x6a\x3a\xe0\xc8\x37\x59\xf9\x20\xb4\x83\x6f\xf4\x78\xa3\x02\x13\xfa\xad\xb7\xfe\x5b\x49\x45\x33\xcc\x69\x2f\xda\x67\xd7\x94\xb6\x62\xe2\xdd\xab\x9e\x44\x29\xef\xc3\xdc\x73\x7b\xd2\xa3\xa1\x1c\x87\xe5\x70\x6e\xed\x78\xa6\x6c\x8d\x6d\xb1\x9f\xbb\x5f\xa8\xa2\x83\xbd\xed\x60\x01\xb0\xc5\x47\x30\xea\xd7\x3c\xd0\x7a\x8a\x7a\x6f\x2f\xdb\xe4\x20\xf8\x02\x85\x38\xf7\xe1\x00\xa4\x1e\x8b\x04\x1d\xce\x05\x50\x05\x09\xc4\x29\x53\x00\x83\x67\x72\x54\x17\x99\x00\x4c\xa5\x14\xdf\x33\xaa\xff\xc3\x97\x43\xd4\xf5\x16\xa3\x80\x1b\x76\x1c\x26\xf2\x8a\xea\x1b\xf9\x28\xca\xd6\x43\x1e\x22\x96\xf7\x09\x89\x16\x71\x11\x5e\x2e\x42\xf8\x2a\xd3\xe1\xb4\x16\x3f\x26\x1c\xd2\xf0\x48\xd9\xcf\x10\x57\xdc\x3e\xdd\xd1\xa6\xa4\xab\xa9\xd8\x4a\xcd\x9e\x5e\xc1\x58\x0a\xcc\x23\xf5\x84\xd7\x17\x93\xf2\xb0\x5b\x94\x27\xbe\x0c\x27\x30\x63\x7a\x14\xaf\xac\x1e\x49\x20\x60\xb3\xe4\x6f\x23\xf2\xa2\x0f\xe0\xe8\xe4\x06\x91\xd6\xe1\xaf\x11\xb3\x72\x0b\xc8\xef\xa1\x96\x64\x0e\x66\xf2\xb2\x42\x0b\x0a\x17\x10\x31\x12\xa9\xb4\x1f\xed\xef\x27\xf9\xbf\x38\x98\x6e\x05\xe5\x04\xac\x9d\x93\xd0\xbd\x5c\xd5\x63\xd8\x28\xc7\xf1\xe6\x05\xb5\xfd\xd8\x24\xc7\x09\x80\xad\x33\x02\xbf\xd7\x03\x99\x83\xf8\xdb\x13\x23\xd3\x2a\xfc\xf5\x70\x1f\x80\x7a\xaf\xf8\xa3\x53\xbb\x01\xf4\x03\x65\x54\xe8\xe6\x00\x2c\x22\x15\xb7\x32\x51\x00\xd8\x3e\x54\x5e\xe1\xb0\x07\xb0\xd7\xd7\x8e\x11\xd9\x0d\x2d\xf6\xc9\x46\x28\x05\xc1\x8d\x7c\x94\xad\x76\xb2\x6e\x43\xb6\x99\x04\x73\xab\x81\x50\x16\xb7\x23\x78\x5b\x73\xe1\x54\xc7\x80\x32\x5c\xb2\x51\xf7\xf5\xa2\x88\xdd\x1b\x5c\x10\xb3\x56\x6b\xaf\x7c\x42\x08\x46\x57\xbd\xe6\x6d\x56\xaa\x36\xfa\xa3\x4a\xd0\xf4\x85\x74\x17\xf4\x5d\xa5\xa8\x95\xb9\xf4\x3e\xb2\x1f\x08\xbd\x24\x9f\x8a\x58\x8d\x32\x5f\x44\x29\xec\x47\xde\x0d\x5b\x9b\xe4\x51\x12\x43\xce\x87\x0d\xbf\x9f\x55\x1a\x40\x5d\x0b\x4e\xde\xc8\x43\x21\x71\x30\x8f\x85\x54\x29\x30\xbc\x5e\x2d\x64\x0e\xe6\x3e\xbb\xfa\x2d\x8c\x9d\x17\x2f\x99\x83\xb9\x73\x5f\x7d\x0c\x6b\xec\x7c\x0b\x60\x1b\x27\xff\xc8\xaf\x79\x38\xd7\x2b\x50\xbf\xfd\x2d\x00\x87\xb3\x20\xd7\x9e\x8f\x00\x02\xdf\x05\xa6\xf7\xcf\x01\xc8\xd5\x0b\x57\x1f\xe1\x00\xd0\x78\x2a\x62\x7d\xbc\x07\xc0\x84\x55\x0c\x77\x76\x10\xc0\x26\x5a\xae\x9d\xd1\x00\xc0\x5e\x5d\x59\x99\xc3\x13\xc0\x85\x55\x33\x48\x44\x19\xda\x5c\x29\x0c\x12\x15\x2a\x88\x04\x17\x25\x0b\x7d\xbd\xe6\x8d\x7c\x14\x6a\x5b\xa1\x60\x1a\xcf\x1b\xf8\x9d\x96\x7e\xc9\x4c\x21\xf4\xd8\x4f\x26\x4f\xae\xd3\xc6\xe4\x63\x66\x0c\xce\xdd\xf5\x4f\xde\x8a\xa1\xd3\x9e\xee\xc3\xa7\x3b\xa0\x7b\x35\xce\x8e\x38\x67\x8c\xa2\x30\xaa\x9a\x3f\x3a\xb3\x8b\xd1\x2d\x4a\x11\x2b\x8b\xe9\x0f\xc8\x7e\xa0\x55\xac\xa2\xf6\x1a\x31\xae\xe2\xfb\x59\xe5\x10\x84\x71\xec\x77\xb2\x17\xe8\x4d\xa8\x1a\x15\xd2\x25\xea\xf6\xf0\x15\x35\x6b\x94\x59\xe8\x14\x39\x0f\xa5\xab\x5a\x1d\x8b\x8e\xf6\x7f\xf1\x2f\x0e\x26\x4e\xb3\x03\xf3\xd4\xe3\x62\xed\x67\xad\xa3\xd8\xd3\xae\x48\x80\x9d\x5a\xbc\xbf\xdf\xab\x6d\xf4\xff\xc9\x1c\x84\x32\x7f\xd8\xfe\x44\x00\x05\x6b\x81\xcf\x87\x3e\x6c\x7a\x62\x2c\xee\x8b\x97\xd3\x9d\x06\xb0\x33\x95\xb5\xbf\xd2\xb0\xe9\xcb\xf1\x44\xa9\xef\x12\xb1\x26\xfb\x72\x88\xa3\xee\x2f\xcc\x27\x0d\x2d\x09\x75\x4e\x09\x4e\x3b\x1d\x9d\xf1\xfd\xf6\xd1\x01\x4d\x3e\xfe\x1b\xbe\x20\x15\xb3\x67\x25\xb9\x09\x4b\x18\x47\x43\x85\xbb\xa7\xd3\xec\xd1\x16\xba\xdb\xfa\x73\xae\xe1\x50\xb5\x1a\xf3\xef\xcb\xf3\x0e\x90\xf9\x0f\xf4\x31\x65\xeb\x15\xea\x6b\x5e\x64\x2e\x68\x21\x48\x59\x63\x8d\x2a\xf9\xc6\x24\x9d\xca\xc0\x1a\x3e\xe1\xf0\xc8\x6d\x55\x24\x62\x31\xe6\x28\x99\x83\xe9\x7f\xa8\xb9\x15\x59\x1f\x25\xd7\x2d\xa9\x99\x87\xca\x09\xbd\xf6\xa0\x57\x73\x1e\x7d\x2e\xa8\xac\xe5\xac\x76\x00\x5a\x38\x48\x8f\xcc\xc1\xdc\xda\xab\xb3\x15\x53\xe8\x39\x54\xbd\x5d\xc7\x11\xf3\xc1\x83\x05\x60\xeb\x2d\xae\x92\x3f\xe6\xe1\x3c\x4f\xf2\x5e\x7e\x00\x89\x36\x3e\x31\x1a\x13\x00\x95\xa3\xbc\xef\x0f\x7e\x00\xd0\xb3\x14\x38\x71\x8c\xe1\x1f\x1c\xc4\x84\x38\xe2\x92\x07\x80\xc7\x88\xfc\x24\xe7\x71\x00\xff\x83\xaa\x3b\x45\x22\x61\xc0\xef\xa9\x76\x8f\x3c\x96\x38\xeb\xb3\xc5\xd4\xd5\x20\x8a\x50\xe7\x7e\xca\xbe\xd5\xb1\x0f\xaf\xee\xac\xe6\xd3\x15\x30\x8f\x1d\xb3\x5b\x8a\x5b\x8e\xa5\xc2\x94\x59\x74\x16\x57\xa4\xe6\xa2\xed\x8c\xc3\x9b\x8c\xb2\xef\xa3\x02\x75\x3f\x3c\xbd\x5e\x40\x81\x9c\xd0\x6c\xfd\xf0\xae\x48\x79\x83\xff\x20\x71\x41\x08\x29\xe5\x8e\x15\x89\xac\xd1\xe9\x65\x55\xe5\x55\x97\xb4\xc9\x8f\xe1\xea\x51\xab\x2f\xd3\xb6\xbe\x7c\xa6\xe9\xbd\x16\x94\xdc\xf9\x2f\x2f\x10\xaf\xb6\x15\x4a\x21\xbc\xa6\x35\x50\x87\x1e\x55\x1f\x5a\xd3\xb8\x43\x57\x09\xbd\x35\x84\x8a\x9c\x07\x73\xe3\x94\xde\x6e\x8c\xa1\xf7\x64\xe9\x73\xfd\x16\x4c\xbe\x57\x28\xc0\xb6\xed\x5c\x72\xbf\xe6\x81\x69\x27\x6f\x19\x55\x2a\x00\xcf\x3d\x1e\x99\x5f\xeb\x41\xe6\x34\x2f\x2d\xcd\x55\x00\x75\x56\xbe\x1d\x87\x3a\x00\x4c\xf9\x04\xcc\x4e\x18\xfc\x23\x1f\x85\x20\xd1\xc0\xe0\x00\xe0\xfb\x49\x4e\x9d\x33\x0d\x20\x38\x5b\x29\x48\x98\x1d\x9e\x87\xa4\x69\xaa\xc8\x8f\x13\x7f\x04\x7d\x35\x8a\x34\xdc\x47\x28\xf6\x55\xb1\x41\x3b\xbd\xc2\x75\xb8\x97\x7a\xb8\x84\x02\xd9\x17\x84\x5e\xb2\xe6\x2a\xb4\xce\xba\x8c\x8a\x36\xc1\x35\x55\x15\x34\x21\x35\xf4\x5d\x06\x18\x4a\x97\x11\x2d\x9a\x84\xcf\xb1\x65\x6d\x7f\xe7\xa1\x2c\x64\xab\xde\x5e\xce\xcf\x41\x8e\x9b\x69\x8a\xaf\x9c\xcc\x11\x7a\x43\xad\xa5\xbd\xaa\x91\x31\x32\x60\xa5\x3d\xb7\xc6\x9f\x1a\xf9\xa8\x51\x27\x0b\xc1\x94\xe8\xd3\x31\xae\x2b\x83\xf8\x1e\xc7\xd6\x72\x42\x2f\x07\x59\x7c\x75\xa2\x61\xbf\x81\x02\x6a\x47\xd4\xd1\x1a\x1e\x03\x69\xd4\xb7\x50\x11\x32\x07\x53\x56\x67\x10\x8c\xd9\xe9\xe7\x5a\x34\x60\xd8\x8a\x91\xf3\x59\x05\xa0\x74\xe3\xfc\xfd\x7e\x95\xc1\x9e\xd3\x84\x72\x07\x00\xef\x1d\xee\xa7\x7b\xbb\x00\xa4\x30\xdc\xe2\xfb\xf9\x36\x3d\x31\x1b\xb9\x18\x37\xf9\xd2\x4f\x9d\x07\xf0\x7a\x2c\x9a\x76\x69\x04\x20\xf0\x89\x0c\x25\x87\x0a\x40\x84\x95\xe2\x7e\xe1\x07\xd0\x1f\xd5\xad\xee\xa0\xf0\x89\x38\x17\x41\x63\x20\x66\xb8\x93\xe0\x19\x88\xb7\xce\x73\x3d\x8c\x0b\xf2\x68\xf7\xd8\x19\x21\x8a\x69\x73\x39\x76\xd5\x3c\x95\x03\x75\xdf\xf6\x49\xe1\xc9\x02\x3e\xa4\xa9\x99\xfb\xdd\xb5\xeb\x69\x08\x31\xfd\x85\x61\x93\xca\xfe\x35\x49\xad\xe4\xa9\xb9\xea\xef\x6b\x55\x1a\x97\xe6\x99\xab\x9e\x23\x30\x6a\x3a\x8b\x7b\x4a\xdb\xa6\xc2\x34\xad\x96\xb8\x8b\xe6\xc6\x54\xb5\x29\x97\x03\xf2\x88\xcf\x9e\xe9\x9e\x59\x91\xcb\x49\x7e\xcc\xa8\xe7\xbe\x9a\x9c\xf1\xbe\xa3\x4f\xdf\x71\x2d\x29\xe5\xfd\xdf\x5e\xa0\x1a\x7a\xa3\xe7\xc8\xf2\xe8\xc8\x0d\x0e\xa6\xd0\xc8\x1d\xcd\x1d\xfc\x94\xcc\xc1\xe4\x2a\x99\x0c\xa2\x97\xfc\x33\x01\xf6\x99\x73\xfc\xf6\x6f\x33\x29\x72\x05\x51\x09\x03\x08\x30\x73\x5d\xd9\x1b\x04\xa0\x18\xcc\xad\x4f\x73\x7b\xd3\x13\x63\x61\xce\xad\x7d\xf4\x14\x80\x6b\x2d\xff\xc1\x33\xa7\x00\xfc\x9e\x0b\x99\x5d\x28\x05\x08\xbf\x25\x31\xce\x96\x0e\x10\x3d\x2d\x27\x20\x98\x06\xcf\xe3\x84\x55\x83\x14\x74\x89\x53\xb1\x66\xba\xab\x86\x8d\x04\xe7\xf0\x35\x0b\x9c\x6b\x3a\xce\xce\xd7\xdc\xf5\x43\xe4\x69\x8c\x8a\x9b\x79\xc4\x70\xfa\x12\xca\xd6\x9e\x39\x5f\xbf\x88\x0a\xc1\x68\xf1\xb3\xc9\xe2\x06\xeb\x2a\x18\x74\xbd\xd8\x52\x83\x59\x99\xd4\x16\xf8\x71\xa8\x9e\x95\xec\x07\x9a\xdf\xae\xb9\x75\x41\xbd\xbc\x6b\xbc\x4e\x67\xff\xa2\xde\x75\xab\x97\x61\x7a\x86\x4b\xd1\xc5\x34\xfd\x82\xfa\x73\xcb\x3f\xf3\x22\xda\xcb\x8d\x4e\xac\xac\x5d\x43\xb5\x29\x19\xf6\xae\x09\xa4\xdd\xfe\xdb\x0b\x54\x61\x6a\x6a\x8b\xf4\x8c\xf9\x52\x7a\xc6\x54\x0e\x65\x10\x79\x80\xec\x05\xca\xcd\x32\x4b\x44\x33\x87\x44\x66\x7d\x30\xfb\x89\xbe\x15\x18\x01\x70\xda\x9a\x87\x7d\xeb\x5d\x00\x36\x41\x4e\xd5\x5d\xb9\x9b\x1c\x84\x8a\x28\xd7\x63\x9a\xb5\x4d\x4f\x8c\x2d\x2b\x57\xfb\xd1\xd7\x00\x1e\x1a\xbc\x39\xa7\x5d\x00\x82\x3b\x04\xd4\xcf\xcf\x00\x44\x67\x88\x64\x32\xe5\x00\x24\xee\x92\x31\x10\x64\x83\xcf\x29\x63\x4a\x31\x72\x78\x22\x32\x45\x4c\xeb\xbd\x41\x35\xc1\x2b\x76\xb7\x19\xab\xab\x11\x6e\x7f\xc8\x19\xe7\xa8\x68\x3a\xb4\x8d\x57\x4a\x48\x53\x8e\x1f\x92\xd5\xe9\x68\xee\xcb\x72\xf6\x8d\x7c\x18\x23\xa3\xa7\xcf\xf1\x77\x04\xfe\xf6\x03\x7d\xcb\xd4\x79\x32\x27\x5a\x13\xfd\x26\xdb\x80\x75\x7e\xb1\x2a\xe6\x89\x9a\x91\xee\x62\xc1\xf5\x77\x9d\xad\x26\xe7\x97\xc6\x8b\x70\xad\x63\xa6\xcc\xcb\xc8\x7c\x51\xb2\x17\xa8\x9a\xd3\x3c\x78\xcd\x31\xad\xbd\x4a\xd8\xec\x16\xc2\x30\xc9\xba\xb8\xc9\xa2\x14\x81\x88\xbf\x97\xff\xd9\xc2\x1c\xf9\xed\xea\xb7\xec\x7a\x8b\x8f\xa8\x88\x88\x82\x0c\x1f\xcb\x53\x68\xce\x90\xd2\x94\x0b\x56\x99\x68\xcb\xe0\x12\x80\x73\x81\x9c\x55\xdb\xd9\x37\x39\x08\x31\x06\x8e\xe0\xbd\x2f\x00\xd4\xd9\x38\x1b\x68\x66\x37\x39\x08\xb2\x27\xc6\x8f\x96\x53\xef\xc4\x0b\x80\x88\x55\xbe\xdb\xe7\xeb\x00\x12\xf8\x85\xaf\x31\x6f\x07\x48\xbf\x24\x29\xc4\xb7\x08\xab\x99\x5d\x0a\x17\x64\xb5\x89\x2b\x19\x69\x9a\x4e\x06\x28\x42\x55\x8a\x9e\x91\x90\xf3\x6e\x1c\x6d\x34\xad\xbd\xf7\xd5\x6e\x54\x87\x9f\x60\x80\x6b\xc1\xb9\xb5\x19\x37\x95\x2c\xfd\xea\xa5\x95\x8b\xb6\x6a\x4d\x3a\x4d\x5b\x96\x0e\x1b\x37\xbd\xb5\x6c\x4b\x59\xac\xd5\xdf\xf5\x9d\xee\xde\x91\xc5\xa3\x3a\x2f\x7f\x9e\x6a\x94\xf9\x10\x6c\x30\x36\xbb\xbf\xde\x66\x90\xd6\xe4\xf6\x5c\xe1\xad\xed\x3d\x0e\xa6\xd6\x0b\xed\x95\x7b\x5b\x03\xcc\x77\x2f\xdd\x2c\x39\x73\x87\xc3\x1c\xb5\xdc\x53\x60\x75\xf3\xb4\x65\xee\xca\x68\x4e\x58\x05\x9d\xe5\xd8\x2a\x2e\x63\xba\xe8\x83\xf5\xc5\xb5\xbe\xd4\x4c\x32\x07\x93\x6d\x64\x95\x88\x7c\x1a\xdd\x98\xde\x66\xdd\x8a\xe2\x8a\x4a\x4f\x76\xb4\x1e\x43\x11\xc3\xf6\x27\xa0\xad\x97\xd1\x8e\xc1\x71\x00\x17\x59\x38\xe7\x77\x24\x01\xb0\x13\xd9\x93\x77\xcd\x02\x88\x1f\x66\x49\xde\x73\x08\x40\xcb\x82\x43\x9e\xa6\x79\xd3\x13\x43\xe6\x20\x02\x0d\x38\x6d\x4f\x36\x00\xc4\x52\xf3\x9e\x3c\xaf\x09\x90\x5a\x2a\x30\xc5\x78\x09\x20\xdb\x4d\xb4\x82\x9b\x1f\x26\xf3\x10\xf2\x34\x72\x18\x38\x9f\xbf\xa4\x2a\xad\xdb\x45\x08\xbe\x66\x65\xc0\xee\x32\x87\x7d\x99\xf8\xc6\x56\x38\x96\x03\x75\x38\x50\xd6\xaf\xa6\xb8\x6a\x35\xc8\xeb\x73\x6a\x4d\x7d\xcf\x52\x98\x03\x75\x23\x65\x9b\xc7\x7c\xab\x29\xee\x9d\x65\x97\x14\xd9\x0f\x34\x79\xcb\xb0\x78\xfa\x41\x8b\xe0\xf3\x09\x33\xaa\x9f\xb5\x8d\x59\x8f\xb6\x9a\x4f\xce\xe9\xd6\xf2\xdd\x3b\x6b\x45\x31\xff\xa8\x3a\xa5\x41\xcc\x7a\x7a\xd1\xa6\x7c\xfc\x66\x9a\x75\xc8\xb2\x73\x11\xe5\x75\x1a\xdb\x84\x15\xbf\x3c\x9b\xa2\x46\xdb\xd4\x55\x8b\x6b\x4f\xf2\xa6\x6d\xa9\xd6\x6a\xd3\xf8\xb2\x70\x76\xc7\x11\xca\xc9\x1e\x69\x6f\x6d\xbb\x91\x6e\xb1\x6f\x12\x9a\xec\x5f\x23\x9f\xc5\x6c\x89\x3f\x68\x77\x07\x75\x23\x42\xfc\xaa\x86\x7d\x17\x9a\x21\x54\x13\xe0\xa2\x36\x67\xdb\x8e\x6b\x00\x9c\x37\xd9\x24\x76\xd5\x02\xc8\xa1\xd9\xbe\x50\x97\x02\xe8\xe9\xb0\x4d\xd1\x14\x03\xd8\x74\xb2\x4e\x1e\x1c\xfb\x47\x3e\xca\x55\x76\x8b\x13\x95\x00\x89\x47\x38\x2d\xce\x2e\x02\x64\x4d\xf1\x55\x33\x34\x01\x14\x4e\x89\x44\x71\xe3\x01\x4a\x9f\x49\x6f\x97\x32\x07\x81\x32\x55\x25\x53\x1d\x3a\x82\x79\xd1\x49\xdd\x7e\xb7\x43\xd8\x82\x2c\x41\xab\xb3\x71\xbd\xc8\xd5\xab\x08\x4f\xb3\x12\xd7\x15\x39\xdf\xba\xe4\xb7\x4d\x4c\x0b\x55\x8e\x9f\x9b\xfc\x3b\x5e\x91\xfd\x40\x33\x12\x26\x36\x5f\x52\x7b\x78\x5f\x57\x58\x84\x7c\xbb\xff\x40\xb5\xaf\xcc\x4a\xfc\xc7\xab\xe6\x43\x6d\x6c\xb6\xfd\x33\xc3\xb7\x47\xee\x28\xda\x89\xcc\x8d\xde\xca\xaf\xfc\xe4\x60\xba\xb8\xa5\x32\xa1\x58\xd9\xf1\xcb\x92\xe1\x75\xbd\x42\x67\x87\xce\xe5\xe6\xc2\xe8\x6b\x62\x4e\x74\x2b\xb3\xb9\x94\xa9\x48\x27\xe7\x35\xee\x8c\x96\xe4\x1a\xc7\x9b\x08\xde\x94\xb3\x89\xfb\x1c\xf1\x88\x86\xc4\x71\x32\x07\x13\x61\xec\xcc\x87\xd2\x89\x92\x0f\x3f\xec\x24\x80\xde\x1a\xa6\x0e\xc0\x30\xc1\xf1\x90\xf2\x0c\x00\xbf\x01\xfb\x85\xdd\x18\x00\x79\x29\x56\x02\x35\x27\x80\x41\x33\x53\xf3\x3e\x3d\x00\x3b\x1d\x66\x87\x03\x72\x00\xbe\xcf\x99\x3b\x0e\xc7\x00\x44\x59\xb0\x7d\x39\x29\x01\x90\x71\x98\xfd\xc7\xd9\xc9\x4d\x4f\x4c\xf9\x3b\x81\x40\xf6\x0c\x80\x1b\x9d\x12\x45\x12\x13\xa0\x56\xbb\x47\x7e\x97\x96\x05\xa1\xe7\xa6\x91\xc6\x21\x47\x61\xec\x64\xb1\xb5\xa9\x60\x8c\x1b\xf2\x60\x8a\xac\x9b\x57\x79\xf7\x92\x46\xc8\xae\xd8\xd3\xf7\x52\x67\x7d\xdd\x1b\x1a\x04\x1e\xff\x20\xfb\x81\x3e\xf2\x5a\xcd\x7e\x2a\xec\x3b\xdc\xcf\x65\x87\xf8\x3a\xd5\xe5\x76\xcf\xc0\x31\xe9\xfb\xf7\x7b\x0b\xb5\x48\xe7\xd6\x9f\x0f\x9b\xbe\x55\x1e\x74\xe9\x9a\x1d\xad\x7f\x57\xfc\xce\x25\x7f\x81\xa3\x5a\x2f\x3b\xd8\xf5\xcb\xd2\xb1\xb2\xc8\xcc\x7a\xd7\xcc\x65\xae\xe2\xdb\x29\x06\x6e\x9c\x2b\x9e\xf9\xe7\x12\x18\x5d\x5f\xac\x4e\x66\xc9\x93\x39\x98\x28\x03\x37\x36\x44\x78\x12\x32\x74\xda\x6d\x11\x29\x12\xaf\x18\xc2\xe4\x26\x89\x5c\x8d\x0e\x0b\xbc\xe5\xaa\x86\xfa\x1a\x7e\x06\x80\xe9\x3a\x6b\x2a\x65\xf3\x3f\x38\x88\x8b\xcc\xe7\xf7\x5e\xde\xe4\x20\x1c\x72\x19\x76\xed\x73\x04\x08\x2a\xbf\x9c\x4a\xf3\x12\x20\x31\xf4\x0a\xdf\xe1\x39\x80\x9c\x20\xe6\x07\x27\x91\x00\x65\xa3\x1c\xdb\xce\xa3\x00\x6a\x2d\x78\xcf\xb0\xb8\x01\x34\xee\x10\x55\x12\x33\x05\xff\xbb\xcc\xd2\x3f\xd4\xe5\x08\xcd\x77\x43\x55\x10\x8e\x1e\xd8\x91\x3a\x27\xfd\xde\x18\x65\xc4\xa7\x12\x57\x3b\x5c\x85\xdb\x02\xcf\x55\xa5\xf0\xce\xae\x94\xef\x5c\x7e\x98\x3a\xa9\x17\x0e\x9f\x91\x4e\xac\x6f\xf9\x5e\x7f\x7c\xbc\xe0\x36\xfd\x91\x77\xf0\x67\x63\x89\x77\xdc\x67\xe6\xbe\xa4\x1b\x05\x5e\x4b\xdf\xa2\x3a\x8c\x8a\x29\xbd\xdb\x7f\x0c\xb6\x94\xe4\xf0\x7a\x7f\x9f\x35\xbd\x1d\x91\xce\xe4\x23\x38\xef\x78\x6b\x57\xea\x1e\x6f\xba\x05\x4c\x95\xf1\x86\x17\xe8\xbd\x77\xe1\xca\x91\x82\xee\x7f\x71\x30\x92\xde\xf4\x08\xc7\xe4\x08\x7f\x41\x2f\x13\xa4\x4a\xfc\x6e\xbf\xcb\x9e\xaf\x90\xc3\x31\x26\xbe\x44\x0f\x01\x54\x64\xa4\x0d\x00\xf3\x3b\x56\x29\xaa\x13\x00\x22\x44\x26\xc6\x5d\xd5\x00\x1a\x1f\x18\xf5\xf7\x0a\x02\x58\x28\x30\x1c\xa3\xe6\x00\xf0\x70\xbe\x60\xbd\x77\x3b\x40\x14\xc7\x85\x85\x7d\xd5\x9b\x7e\x94\x52\xfd\x2b\x5b\x8e\x11\x00\x6a\xe3\x99\xac\x4f\xcf\x6c\x7a\x62\xda\x99\x85\x8e\x0a\x5f\x81\x96\x87\x45\xe2\x0e\x4a\x3a\x84\x6f\x3d\x0c\x0a\x6d\x76\x29\xd8\xc9\x8e\x2c\x2d\xb7\x68\x51\x04\x7d\xa3\x8e\x85\xeb\x0d\xe6\x59\x54\x21\xda\x8f\xb7\x17\x26\x1e\x45\x1d\xac\x76\xfd\xe0\xd2\x13\x11\xec\xf3\xa2\x76\x4c\xa1\xf6\x7e\x58\xed\x28\xd5\xcb\x2f\x45\x27\xc3\x11\x13\x7a\x4f\xdf\x66\x38\x85\xbf\xfa\x1a\xf4\xb0\x2a\x49\x33\x2c\x79\x5a\xed\xbe\x54\x5c\x4f\x48\xd3\x8c\x66\x93\xe7\x55\xea\x90\xe8\x39\xcb\x7a\xa6\x88\xec\x60\x9f\x05\xb1\xea\xd1\x0d\x2f\x50\x43\x00\xc5\x72\x77\xd1\xf1\xe0\x63\x7e\xdd\xab\x14\xb9\x82\x01\xf7\xfd\x43\xd7\x76\x66\xce\xf9\x3f\xf4\xdb\xb5\xf6\x35\x8d\xd2\xef\x84\x8f\x28\xf2\x68\x02\xbd\xaf\x8e\x37\x1f\xf2\x46\x2c\xab\x97\xa3\x4f\x14\x2a\x39\xf2\x32\x00\xfb\x4f\xa6\x18\x4a\x02\x80\x54\x3d\xc3\xe0\x2e\x13\x00\x1d\xa6\x8b\x65\xbb\x5c\x36\x73\x10\x02\x2e\x9f\x5b\xd8\x3d\x0f\x10\xb3\xb4\xee\x05\xc9\x33\x5d\xf7\x20\xdc\x72\xd9\xb2\xe7\xf7\xbd\xd7\xdc\x8b\x87\x0f\x8b\x6c\xfa\x51\x06\x9e\x71\x85\xb2\x25\xc2\xc2\x2b\x5b\x61\x7f\x59\x1c\x51\xf5\x6d\x9d\xb4\x81\xc5\x35\x9c\xc4\xdb\x1e\x65\xa3\x88\x1d\x08\xd9\xa1\x4f\xfa\x5b\x2a\xc3\x66\xae\x3c\x74\x73\x10\x7f\xa2\xd6\x91\x59\x19\x7b\x4d\xee\xb3\x54\xa1\x51\xe1\xc8\x40\xd1\x04\x2a\xbd\x21\x67\xe4\x9d\xed\x6b\x7c\x82\x6c\x56\xef\xc4\xe9\x01\xc1\x98\xc1\x94\x3d\x5f\x1f\x3e\xbc\x12\x31\x9e\x72\x6d\xda\xf6\x3e\x45\xa8\x77\x52\xca\x4c\x63\xa3\x5b\x48\x4d\xac\xe8\xfc\xd9\x5a\x9a\x40\x9f\x18\xbb\xc5\xf0\x8a\x51\x7f\xe5\xab\x1f\x97\x55\x8a\x1b\xfc\x18\xa2\x12\x56\xf4\xf3\x9f\xfa\x74\x45\xd6\xae\x1a\x67\xdf\xf5\x1a\x0e\x27\xac\x0d\xa6\x39\x7b\xe5\x84\xf1\x20\xb4\x93\x7f\x92\x73\x50\xdc\x58\x42\xa9\x50\x51\x91\xd6\xae\x34\xc1\xa5\x68\x9e\x50\x7e\x00\x0e\xc3\xcb\x0a\x3b\x23\x00\x14\x13\xe8\xe5\x77\xed\x04\x30\xf2\xbc\x40\xb3\x4b\x00\xc0\x41\x6d\x97\x0a\xc5\x3f\x3c\x08\x7f\xe7\x20\x90\xbd\x20\x8f\xfb\x28\xac\x7f\x73\x00\xcf\xe8\x74\x0f\x44\x00\x8c\xd5\xb1\x29\x31\x94\x00\x4c\x39\xf2\xd9\x08\xc7\xc3\x96\xc5\x78\x31\x0a\xbd\x3a\x5c\xc7\xca\x8c\xac\x4d\x50\x2c\xa2\x7e\x71\x4d\x55\xea\xfa\xc3\x57\x88\xa9\x65\x4b\xb6\x6e\xf7\xeb\x42\xef\x4c\x63\x45\xde\x7d\x08\x47\xbe\x78\x3f\x3c\xf0\x21\x2f\xf8\x76\x37\xe3\x68\xcc\x8b\xf1\x80\xcc\xa6\xad\x9f\xed\xfa\xd8\x7d\xdf\xd5\xbc\xf9\xd6\xd9\xfe\xde\x67\xa5\xdc\xe2\xe7\x81\xe6\x6f\xde\x49\x85\xdf\xe6\xe4\xeb\x70\x5e\x5c\xb9\xb0\xe0\x7b\xa3\xdf\x03\x97\xad\xbd\x44\x53\xd6\xe0\xde\x99\x19\xb2\x5c\x51\xc4\x48\xe6\x3f\xdc\x06\x92\x98\xd7\x8e\x66\x7a\xb8\x08\x24\xbd\x46\x88\xa6\x9c\x72\x1e\x4e\x88\x45\xac\x25\xdc\x70\x12\x8e\x97\x46\xce\x46\xa7\x39\x9e\x8a\x75\x47\x75\x86\x7f\xb7\x7f\x17\xd3\x87\x36\x0a\x61\x06\xe0\x77\xa2\x7f\x43\x79\x0e\x40\x65\xf6\xfc\x25\x4a\x39\x00\xcb\x38\x5a\x41\x4a\x9f\xcd\xbe\x2f\xd9\x83\xb0\x91\x8b\x62\xbc\x5e\x1f\x6a\x93\xfa\x5e\x6e\xeb\xf5\x8b\x0d\xa9\xff\xa5\x7a\xe1\xe6\x21\x11\x00\x62\x3e\xa7\x2d\x2b\x25\x9c\xc6\x3f\x14\x15\xd0\x2d\x59\x78\x82\x1e\x95\x4d\xf6\x8b\x1b\xa1\x5b\xbd\xa4\xd9\x9d\x53\xd6\x7a\x78\x2e\xc5\x46\xad\x01\x97\xfa\xf3\x6b\x62\xa4\x7c\xef\xb7\x00\xe1\x4f\x63\x6d\x13\x03\x6c\x4e\x27\x3f\x9f\x1a\x9f\x7a\xd2\xeb\x78\xf4\xf5\x91\xaf\x62\xdd\xc6\x8e\x85\xbd\x82\xd3\x69\x6d\x62\x8e\xf5\xf7\xb0\x33\x8d\x77\x84\x1c\x4f\x34\xd6\xce\x6b\xd6\x98\x38\xd2\xd4\xcc\x2d\xc6\x95\xbf\x74\xdc\x5f\x19\xb8\x04\xc5\x68\x07\x8d\x52\xec\x4a\x41\x1e\x95\xfd\x8b\xa2\x47\xab\x75\x59\xf7\xed\xf9\xf3\x5f\xaf\xd5\xa6\x59\xdb\x5b\x5d\x9b\x44\xdc\x48\xfc\x60\xeb\x96\x65\x86\xfc\x1c\x1d\x61\x2b\x93\xa1\x8b\xd2\x8e\xa2\xb2\xd6\x4c\x7f\x89\x16\x08\x69\xb6\x56\x4c\x9a\xc1\xec\xf4\x6f\x00\x10\xaf\xa1\xb5\xda\xfe\x64\xb3\xff\x6f\xf3\x6a\xeb\x12\xc5\x3f\xf2\x30\x32\x48\xf7\x5b\xc9\xf7\xdf\xc9\x39\x08\x64\x3f\x0e\x39\x0f\x03\xf1\x71\x3d\x17\x04\xe0\xac\xf5\xae\x34\x62\x12\x74\x72\x2e\xb0\xdd\x98\xf3\x24\x08\x89\x4c\x6b\x0a\x8d\xee\xc4\xb2\xc9\xf3\xba\xdd\xe9\x76\x43\x9a\xea\x9c\x8e\x9f\x29\xef\x5b\x7e\x62\x3b\x54\x82\x8b\x4e\x9d\x4b\x0c\x9e\xbc\xe3\xe8\x55\xfd\x33\xa9\x46\xb7\x4d\xd4\xe6\xfe\x74\xfa\x3b\xd3\x07\xc2\x66\x9e\x3f\x86\xa6\x0f\xb5\xf6\x9a\x1a\x7e\x3a\x33\xf3\xa2\x41\xc6\x7c\xdf\xf3\xe0\x79\xeb\xea\x09\x8b\xe4\x5e\x8f\xc5\xed\x15\x56\x16\xbb\xdb\x3d\x97\xf5\x0b\x9b\x2c\x15\x9b\xfb\x57\xa8\xf3\x75\x37\xfc\x27\xb7\x6e\xf9\xac\x35\xa6\xe6\x5b\x58\x57\x4d\x21\x1e\x26\xd4\x99\x1b\x96\xb7\x21\x3f\x46\x53\x98\x0b\x97\x8a\xa1\xa2\x22\x3c\xcc\xfa\x8b\x77\xa1\x0f\x85\xb2\x9a\xb3\xe4\x09\xa0\x6b\x02\x2b\xcc\xa8\x73\xb7\x60\xa4\x7d\xab\x01\xe4\x86\x69\x8f\xef\x60\x01\xd0\xfb\xb8\x9d\xf3\xd7\x38\xc8\x7d\x5f\x72\x2e\x0a\xf9\xde\x73\x33\x37\xc5\x1f\x39\x08\xe4\xbe\xd7\xea\xf8\x3f\xdf\xfb\x63\x8d\x01\xce\x5d\xa7\x4e\xff\x81\x85\x46\xce\xed\xac\x0b\x23\x75\x84\x9f\x22\xb1\x4a\xe7\x1e\x1f\xc4\xf5\xc8\x47\x59\x7d\xae\xc7\x63\xa8\x74\xc6\x82\x8e\x66\x03\x22\xd8\x36\x3c\xad\x36\x64\x69\xf9\x7b\xa0\x49\x69\xa8\xdb\xf5\xa5\xe0\xa2\xc3\x95\x07\x6c\x2e\x2c\x7c\xe9\xa4\xba\xc9\x62\xc8\x3f\xdf\x3c\x9d\x51\xd3\xa7\x5b\xb0\x58\xb1\xa0\x5e\x21\xa1\x5b\x37\xfd\x71\xf1\x4b\x49\x84\x3e\xc7\xfb\x1b\xcb\xca\x05\xac\x06\x9e\xcf\xcc\x56\x5e\x5e\x5b\x32\xc8\xe8\xe7\x5e\x3b\x93\xd6\x6b\xf0\xb8\xeb\x0d\x42\x27\xd1\x87\x9c\x7b\x61\xe4\x75\x57\x0f\x69\x1b\x73\xc3\x30\xf3\xb6\x0b\x2a\x20\x7c\xdc\x88\xe6\x16\x27\x9a\x3a\xa4\xce\xb0\xfb\xe6\x7e\x74\x58\x20\xd6\x30\xba\xb2\x02\x73\xd0\xcf\xd2\x70\xa4\x8c\x1b\xe3\xe0\xc3\x03\xa0\x24\x4f\xc9\xf3\x6b\x1c\x96\x3a\x14\x77\xff\xb9\x0e\xfe\xe6\x40\xc8\x1e\x84\xff\xe6\x40\xc8\xef\xfd\x27\x3b\x01\xa8\x52\x29\x28\x46\xb3\xe0\x01\xc7\x53\x96\xe2\x3e\x65\xa2\x9b\x88\xa7\xf4\xdb\x66\x37\xfc\x3d\x05\x41\x23\xc7\x32\x2a\xec\x43\x5d\x4a\xb7\xa3\xc9\x87\xd1\x61\xd6\x2d\xe1\x92\x7e\xa3\x08\xac\xef\x58\xca\xb8\xd3\x0e\x04\xd3\xb5\x0b\x19\x61\x56\xea\xab\x9f\xeb\x6d\x72\x7c\x0d\xee\xaf\x9e\x78\x21\x97\x47\xbd\xe1\xff\x20\x79\x3f\xd4\x1f\x2e\xf5\xaf\x26\xa5\xe5\x6b\xb6\x7d\xb9\xb4\x66\x96\x3c\xb3\xe1\xfd\xb0\x78\x7e\x02\x59\x16\xd5\xaa\xf5\xf4\xe9\x2e\x94\x44\x78\x81\xce\x96\x1e\x43\x54\x52\x98\x9e\xb6\x5a\xe7\x4e\xb4\x4f\x00\x51\x27\xb8\x4d\x0a\x5d\xeb\x8f\x26\xe7\x5e\x68\x8b\xde\xb1\xc3\x10\xdc\xe9\xb5\x8b\xeb\xcf\x61\xf9\x5c\xcb\x00\x7e\x3f\xe6\xbf\xd6\x81\xc5\x7a\x4d\x22\xe5\xfd\x57\x5c\xa6\xf8\x4f\x0e\xe4\xbf\x73\x10\x26\x49\x7d\xad\x77\x53\x00\xb4\x05\xfb\xa0\xef\x39\x2c\xb1\x6b\x30\x64\xb7\x66\x12\x07\x44\x3e\x89\xd3\xde\xb8\x48\x48\x55\x48\xd3\x6c\xbd\xd6\x88\x9b\xd7\x7d\x64\xe3\x18\x35\x89\x35\xb7\x7a\xe5\x65\xe8\x31\x81\x1e\xf3\x4e\x0b\xb5\xb3\xdf\x82\x16\x48\xaa\x8f\x14\xb7\x50\x44\x49\x96\x55\xc7\x4a\x19\x52\x22\x3b\xee\xe3\xe2\xd0\x5a\x12\xc8\x7d\xa3\x3f\x13\xde\xaa\x26\x20\xda\xd7\x7a\x12\x5a\x55\xc2\x91\x7e\x88\xb8\x98\xf7\xca\x7b\x90\x4a\xc8\xdb\xe1\xed\x2a\xd4\x73\xde\xc8\x95\xb0\x35\x95\xba\xcf\xa7\x50\x63\x41\xa1\xaa\xd7\x46\x0d\xd0\x4c\x81\xbb\x55\x27\x5f\x9a\xa2\x1f\xf9\x36\xaa\x16\x0c\x4c\x60\x52\x3c\x1a\x54\xbf\xf4\xbd\xc7\xbc\x75\x5b\x56\xad\xe8\xfe\x8c\x0d\x76\xd2\x56\x9b\x6e\xbf\x85\x75\x74\x66\x52\x5d\xbc\x2f\x89\x45\xdb\x3d\x03\xb0\x24\x79\x7f\xc8\xe7\xc2\xdf\x1c\xc8\x10\x89\x0f\xfb\x33\xff\x1d\x47\xba\xe7\x3d\x45\xea\x67\xbe\x7e\xb5\x5e\x7b\xb6\x01\x50\x44\x51\x50\xb4\x09\x01\xb0\xb9\x5f\xec\xa8\x59\x00\x2e\x11\x1e\x81\xf2\x82\x5c\xa2\xb9\x3c\xaf\xbc\x46\x22\x0b\xe1\xa2\x4e\xaa\x01\x63\x50\x04\x6e\xde\x92\xc5\x96\xc7\xa5\x06\xfb\xd4\x3d\xd5\x5d\xda\xa6\x01\x2b\x7b\x75\xc8\xdb\xc8\x34\x0d\xbb\x2d\xe7\x99\xcf\x57\x83\xb3\x18\xd9\xda\x92\x40\x51\xad\x1d\xe8\x4f\xbd\xd7\x83\xf2\x54\xf0\x68\xe7\x4f\x75\xc1\xcf\x15\x73\xd0\xd6\xa8\xcc\xa0\x38\x85\x1c\xcc\x56\xb4\xa0\x5f\xc4\x06\xff\x90\x84\x60\xc4\x5c\xf0\x78\x2a\xff\xea\x67\x37\xe6\xae\x6b\xac\x22\xed\xe7\x01\xcc\x6d\x37\x01\x85\x82\xb1\x50\xac\xb7\xc3\x77\xc5\x77\xaf\x76\x63\xc3\x1d\x77\x2b\x26\x0d\x4f\x61\xe7\x6c\xbf\x28\x74\x0f\xec\xc6\x05\x58\xda\x2a\x5a\xf5\xf2\xe3\x6a\x2c\x0e\xfe\x9b\x03\x21\xfb\x40\xc8\x39\x10\xe4\x7d\x00\xef\xfe\xab\x92\xfb\x3e\xd3\x1e\xeb\xf5\xed\x31\xd2\xfd\x5f\x52\x1e\xc6\xbd\x32\x00\x5a\xc2\x7e\xd1\xda\x35\x00\xf6\x67\x17\xef\x96\x1c\x84\x5c\xa1\x58\x0e\x4c\xfa\x37\xe2\x33\xb9\x39\x89\x45\xb2\x07\xc3\xfb\x0b\x7e\xca\xfc\x99\xb1\xb1\x83\x2e\x9e\xcd\x25\xc1\xaa\xc7\x2a\x07\x17\x13\x76\xd5\x91\xd6\xe4\x15\xce\x2c\xc5\xcc\x89\x5f\x6f\x1c\x77\xa5\x54\xda\xd9\x55\xb3\x0f\x7b\xbd\x39\xcb\xad\x55\x75\x27\xd6\x76\x60\xc0\x5d\x44\xe1\x03\xd6\xf7\xb3\xbe\xab\xad\xdc\x2e\x6c\x38\xba\xcc\xf9\xa5\xac\x3c\x76\x14\xcb\xe2\xb8\x97\xcc\x3d\x48\x23\x70\x21\xd8\x8f\xd6\x2d\x32\x97\x57\x92\x70\xd4\x56\xd7\xa4\x93\x7e\x32\xe3\xaa\x4d\xdf\x4b\xcf\x4d\x4a\xe3\x06\x4d\x30\x32\xba\x1f\x2b\x70\xdf\x4d\x34\x64\x8f\xbd\x4d\xc5\x11\x8d\x3f\xc9\x4a\x3c\x0f\xc1\x8b\x1b\x3e\xda\xe4\x03\x4b\x86\x29\xfe\x33\x07\x02\xc9\x4e\xf1\x1f\x39\x10\xe4\xfe\x6f\x5f\xf5\x7a\x6d\x26\xe5\x63\x54\x6c\x25\xdd\x03\xcf\x03\x60\x0f\xa5\x7b\x7c\xcd\x07\x3a\x84\xa6\x58\x17\xe2\x0a\x40\x47\x26\x8e\x3f\x33\xf0\x1d\x31\x42\x4b\x42\xce\xcb\x35\x91\xf0\xdd\x24\x4f\xfd\x00\x39\xff\xc1\x6c\x18\xff\x24\x48\xd6\xe4\xad\x61\x07\x7e\x38\xe6\x87\x49\xa2\x2e\x2b\xde\x39\xc7\xd7\x82\x46\xa3\x01\xcf\x75\xa3\xc5\x32\x55\x65\x0c\xbf\xab\xd5\xc2\x4a\x71\xc3\x7b\x11\x81\xeb\x9c\x94\xb7\x8a\x95\x9e\xc7\x15\x23\xa3\xac\x1e\x6e\xe4\x3e\x90\x7d\x17\xb3\xf8\x3e\xbc\xa0\xfe\x90\xf8\x32\xee\x28\xbe\x44\x67\xb7\x78\xf4\xca\x15\xfc\x84\xe6\x90\x78\xc8\xac\x3e\x9e\xa8\xd1\x2c\xae\x31\x95\x4a\x60\x53\xfb\x22\x36\x3b\xe1\x4e\x70\x51\xd1\xd9\xcc\x0b\x23\x3f\x07\xcf\x33\xfe\xab\xff\x3d\xd7\xfa\xdf\xfd\xdf\x36\x52\x7f\xbb\xfa\x0c\x69\xfc\xa4\x1c\x88\x6c\x5e\x00\x46\xe4\xf1\xa4\xc4\x02\x00\xfe\x95\xcb\x57\xc2\x4f\x42\xb4\xcc\x0c\x77\xaf\xb7\x1b\x71\x4e\xe3\x87\x78\x92\xc3\x3d\xa2\xb9\xf1\x51\x05\x8e\x0d\xfe\x81\x8f\xf0\xc8\x0b\xa9\xc9\xa7\xff\x95\x90\x1c\x21\xa3\x8d\xd6\x3e\x43\xb8\x9a\x72\x52\x87\x43\xdd\x88\x20\x51\x74\x52\x6f\x50\xb9\x8c\xb0\xbf\xb6\xd4\x40\x92\x9c\xfb\x20\x5b\x89\x7f\x36\x78\xd5\x50\x47\xea\x05\x7e\x78\x62\xc4\xc0\x41\x62\x10\xbf\xb2\x7c\x4f\x8f\x57\xe2\x10\xe1\x08\x3e\x55\xa7\xe4\x7f\xf9\x2e\x84\xfa\xf1\xae\x44\x3e\x29\x27\x61\xbd\xb5\x1f\xc4\x3d\x32\xee\x42\x2d\xf3\x68\x22\x8f\x94\xc5\xe6\xef\x05\x8f\xcd\x48\xfb\x00\xf6\x9f\xe3\x5f\x9a\xfd\x6f\x0e\x88\x9c\x03\x41\xee\xff\x16\x74\x90\x38\x80\x61\x80\x73\xb1\xd4\x9e\xe1\x0a\x00\x54\x40\x41\x11\x35\x0a\x20\x98\x46\x5f\xe4\x17\x0b\x9f\x25\x43\x99\xbe\x3b\x8f\x43\x86\xb2\x2c\x97\x87\xf5\x56\xd8\xa5\xf7\x5e\x74\x9b\xe9\x49\x62\x8e\xd5\x15\x99\x4e\x43\x1e\xa2\xad\x5b\xaa\x82\xb8\x8e\x37\xd1\x34\xc8\x47\x61\x4d\x93\x9e\xa8\x1a\x4d\xa7\xf8\x54\xb5\x9f\xc8\x94\xee\xa2\x1c\xad\x6c\x4e\xe8\x2b\xed\xd0\x10\x90\xbf\x41\xf8\x76\x2b\x51\x8d\x5e\xf6\x2c\xa1\xeb\x5e\x84\xba\xb1\xd4\x1d\x42\xf2\xe0\x09\x8d\xaf\xe4\xdc\x07\xb1\x32\x42\xdd\x5c\xb5\x9a\xf0\x6f\xee\x41\x69\xd3\x77\xf1\xbf\xb8\x07\xbe\xd7\xc4\xb7\x70\x82\x2f\x60\xf3\x39\xf8\xb8\xfd\xbf\xce\xc1\x7f\x71\x40\x7f\xe5\x40\x94\x90\xfa\xde\xa9\xed\xeb\x95\xec\x81\x88\xbc\x02\x70\x79\xfb\x01\xc9\xc0\xf7\x00\x3c\xcc\x67\x62\x3c\x9e\x01\x52\xd2\xe6\x8a\xac\x5d\x09\x74\x2a\x5d\x61\x3b\x63\x86\x02\x6d\x9d\x1b\xfc\x47\xc8\xfc\x83\x9e\x31\x71\xda\xb1\x4e\x1c\xa7\x15\x4f\x7c\xe1\x7b\x54\xf2\xa3\x9a\x0b\x71\x26\x64\x56\x82\x45\xf9\x0d\xb1\x2b\xfe\xa6\xd4\x8c\xe2\x09\xe2\xcd\x2c\x41\x19\x1a\x79\x29\xa2\xed\xf5\x63\xf2\x59\xb2\xfb\x88\x02\xf5\x14\x8a\x89\x52\x93\xc4\xb3\xf7\x23\x95\x6c\xc5\x6d\x89\x3a\x7d\xab\x72\x6f\xc8\xb9\x0f\x22\xf3\x44\xae\x29\x0d\xf9\xe7\xc2\x56\x44\xcf\x65\x94\x4c\xfc\xff\xe2\x1e\x78\x33\xa0\x06\x74\xb9\x56\x37\x7d\x28\xeb\xfb\x00\x6e\x37\xe9\x1c\x24\xf5\xb9\x5f\x5e\xfa\x93\x03\x6a\xe0\x25\x71\x40\xa4\xf3\x81\x9c\x03\x11\xe3\xb6\x5e\xfd\x49\x9e\x10\xbf\x2f\x00\x17\x0e\xef\x8d\x74\x6f\x05\x60\x5b\x3b\x82\x73\x10\x02\x10\x7b\x7f\x7e\xd1\xf2\x21\x60\xe4\x3c\x18\x74\x8d\xe4\xa1\x56\x23\x8f\x7d\x2b\x99\x7f\xd0\xec\x03\x7b\x9b\x0e\xbe\xc3\x6a\x5f\xc1\xc2\xe5\x3d\xff\x0e\x95\x8b\xa0\xe6\x97\x29\xd0\xa6\x34\x0a\xf4\xe1\xd7\x85\xbf\x2b\x34\xc2\xee\x84\x60\xd1\x71\xb9\xfd\xc4\xd9\xec\x62\xf1\x4a\x19\x51\xe2\xdb\x92\x57\x12\xef\x24\x4f\x13\xdf\xd6\xea\x49\xa8\x89\x8f\x11\x6f\xb7\x3a\x48\x31\x88\x64\x13\xdf\x3f\xf2\x11\x3f\x20\xbc\x95\x38\x3d\xd4\x2e\x8a\x17\xf4\x20\x22\xde\xcb\x8a\x2c\x0b\x5e\x21\xfe\xf8\x19\x20\xfa\x8e\xbf\x12\x38\xd7\x5a\x05\x3b\xc8\xdc\x03\x6f\x17\x94\x83\x2a\xb7\xf3\xdf\xfb\xc0\xf4\xe0\x7f\x73\x40\x77\xde\x93\xf6\x41\xd2\x7a\x20\xe7\x40\x90\x39\x98\x10\x12\x17\xe1\x46\xca\x89\x30\xef\x03\xd8\x62\x46\x41\x61\x17\x02\xc0\x12\x78\x70\x8f\x4d\x2a\x80\x88\x01\xed\x31\xd3\x73\x00\xb2\x52\x97\x28\xf4\x42\x60\x50\xdd\x9f\x39\x51\xf3\x1d\x3c\xd4\xd1\x66\x71\x57\x17\x82\x7a\xb3\x19\x76\x1b\x55\x45\xa8\xb5\x71\xe2\x38\xa0\xe4\x04\x15\xae\xb9\x9c\xea\x8a\x34\x10\xe1\x6f\xc3\x53\x26\x17\x0b\x3e\x11\x2f\x78\xbb\x65\x94\xc1\x22\x71\x9e\x5f\x44\x12\x09\xba\xd7\xaa\xf8\xbf\x4a\x50\x81\x58\x69\xbf\xa0\x96\xe8\x7b\x90\xad\x7e\x27\x10\x29\x72\x07\xe8\xef\xe6\x08\x05\x0b\x25\x03\x6f\xe7\x36\xc1\xfd\x02\x00\x22\xfd\x5f\x05\xb4\x04\xb2\xe0\xf2\x6b\x1a\xc1\x7a\xfe\x41\x60\xf8\x7c\x47\xb0\x96\x6f\x2f\xd8\xce\x68\xf0\x8e\xf0\xae\x40\x28\xf2\x1d\x2f\xf5\xdf\x5e\xac\xbf\x39\xa0\x26\xd2\xff\x57\x91\x72\xc3\xc8\x3e\x98\xa4\xb6\xf5\x1a\xee\xb5\x5e\x3d\xbf\xaf\x57\x5b\x12\x57\x68\x50\x07\xb0\xf5\x38\x05\x85\xe5\x31\x00\x86\x33\xd4\xf2\xc6\x05\x00\x3c\xcd\x47\x3e\x1a\x24\x03\x48\x9d\x38\x47\xa3\x39\x03\xa0\xb4\xf5\x62\x81\xea\x37\x98\xd7\xfa\xcc\x10\xa6\x22\x0a\xdf\x0d\x3d\x18\x0f\x2b\x25\xc1\x84\x85\x33\x53\x93\x42\x2d\x3c\x77\x64\x62\x79\x23\xdf\x0e\x37\x7c\xbc\x39\xc5\x64\x12\xe1\x61\x80\x16\xdb\x53\xa9\xd3\xd0\x12\x65\xcf\x8e\x92\xd8\x06\xf5\x49\x27\x38\x8a\xc5\xa5\x20\x2d\x0b\xc1\x7d\x46\x84\x13\x6e\x14\x8a\x72\xac\x08\x1d\x81\xf2\xaa\x06\xce\xad\x42\xfd\xe0\xd9\x70\x80\x67\x8d\x3f\x13\xae\xb5\x11\x39\x47\xf8\x7c\x20\xa9\xb7\x8a\xcb\x94\xcf\x12\x82\x86\x34\xb9\xeb\x78\x66\x20\xe3\x5d\x02\x17\x25\xcf\x31\x28\xff\x32\xcf\x79\x80\x9c\x0b\x36\xd6\xf1\xe7\x39\xd0\x72\x8f\x74\x0e\x90\xf2\x72\xf2\x49\xf3\x40\xf6\xc1\x44\x91\x38\x21\x9f\x0f\xeb\xd5\x81\xc4\x09\x99\x93\xd6\x85\x15\x23\xc0\x19\xc3\x9d\x57\x8c\x88\x00\x97\xb6\xee\xf6\xd2\xa3\x02\x60\x1f\x3c\x70\x58\x73\x05\x40\x6c\xef\x49\x29\xb5\x7b\x00\xf2\x3b\xcf\x05\x28\x75\x00\x28\x57\x9f\x3f\xae\x90\x0c\xa0\xf3\xf0\x22\x9d\xfc\x3e\x00\xe3\x8b\x97\x82\xe4\xf6\x03\x58\x06\x5c\x16\x91\x11\x05\x9c\x23\x9a\x61\x55\x7a\x0f\x7c\xf3\x11\x63\x22\x4a\x3a\xc2\x44\xf0\x3e\xe6\x37\x62\x2f\x60\x2a\x8a\x89\x59\x56\xf8\x29\x2c\x25\x04\x33\xfe\x14\x52\x82\xef\x99\x22\x4c\xe3\x42\xdb\xe1\x49\x91\x3e\xeb\x88\x80\x19\x3c\x2b\x57\x65\x3d\xcb\xc7\x01\x23\xb5\x27\x58\x68\xf8\x28\xa1\xe7\x6e\x3a\xeb\x22\x0f\x1e\x3a\x3a\xc3\xd9\x14\x79\x82\xa1\xb5\x8f\x97\xed\x39\xb7\x38\x3c\x7e\x56\xc8\x5a\xfb\xeb\x53\x8b\xb1\xfd\x7a\x2e\xfe\xe6\x20\x58\x4a\x85\x1f\xef\x4e\x07\xe0\x43\x08\xd5\xef\xd7\x05\x90\xb2\x95\xe8\x3b\x26\x0b\xa0\x2c\x26\x7d\xf2\xf4\x7e\x00\xad\x49\xa5\x5d\x97\x6c\x00\x0c\x0f\xab\x1d\x66\xfe\x0c\x60\x7a\x52\x27\x92\x4f\x1b\x08\xe6\xdc\x46\x9a\x12\xfc\x10\x64\x71\xdf\xd2\x50\x45\x9f\xb8\x6a\x7e\xc9\x83\x43\xff\x39\xd1\xc5\xf8\x55\x84\xb2\x45\x0f\xe1\x85\xe1\xa5\x34\x7a\xc7\x2b\x04\x0a\x5d\x54\xd9\x56\x2f\x39\x7c\x89\x66\x52\x53\x9a\x6f\x31\xfe\xb8\xda\xd1\xc7\x76\x81\x13\xb8\x76\xe5\x8c\xd7\x8d\x21\x96\xb8\x8f\x0a\x01\x93\xfa\x41\xc5\x38\x5e\xb9\x5e\x44\x51\x38\x0f\xae\x5a\xf6\x1b\x8a\x3e\x38\x02\x9f\x28\x23\x8b\x76\xf1\x2e\xc5\x28\x4b\xbf\xc1\x6c\x73\x87\x79\x9c\xcc\x4b\x8c\x98\x3b\xcf\x54\xa7\xec\x23\x4c\xa8\x1b\xf3\xf8\x61\x39\x71\xcc\xbc\x73\xe1\xeb\x1d\xf2\x0d\x58\x26\xa7\x8c\xa1\x76\x05\x61\x6c\x94\x83\xe1\xd3\xeb\x0a\x5b\xb0\x5f\x6d\x93\x7a\xcc\x14\x3d\xb1\x44\x5b\xc1\x8e\x44\xc5\x39\x9c\xa4\xb5\x7a\x9b\x93\x22\x01\x57\x67\xfe\x7b\xf7\x13\xa3\xfb\x35\xfe\xff\x93\x83\xe0\x10\x9d\x38\xf2\x13\x40\x7d\xa7\x34\xc7\x99\x54\x00\x7d\x2d\xb9\xc4\x8b\xdb\x01\x4c\x5f\x2a\xef\x67\xc2\x02\x98\x7f\xd4\x58\xe6\xb6\x01\xb0\x3a\x6c\xf0\x5a\x82\x1b\x42\x2c\x95\x2c\x42\x55\x2e\x10\x91\x16\xf7\x5c\x7c\xf5\xc5\x88\x0a\x66\x05\xc1\x2f\xac\xb2\x08\x81\x46\x33\xa9\x59\xae\x9c\xf8\x45\xbd\xb2\xd2\x61\xef\x1d\xf8\xe3\xda\x3c\x4d\x12\x41\x75\x38\x29\xf5\xa1\xbe\xf0\x48\x4a\x9c\x93\x72\xc7\xbb\x63\x61\x78\xdc\x49\x45\xf5\x6f\xf5\x11\x8f\x71\x27\xe4\x46\x91\x06\x11\x34\xe4\x79\x20\x73\x30\xcb\xa3\xb2\x31\x68\x57\x1f\x9b\x69\x25\xb9\x04\xf4\xa0\xd7\xc8\x67\x56\x79\x4d\xcc\x3e\xcf\xf2\x91\x8b\x0a\x8e\x18\x3b\xf7\xd9\x17\xdb\x14\xa9\x31\x6f\x5d\xf5\x07\xab\x14\x9e\x62\xad\x1c\x7d\x1f\x45\x29\x29\x62\xd3\x1d\x6e\x91\x39\x98\x07\x9e\x4a\xb3\xb8\x53\x36\x4f\x5a\x6a\x94\x4e\xe0\x06\xcc\x7f\x9f\x7e\x42\xbf\xdf\x37\x6c\xeb\xe2\x97\xf9\x55\x2f\xa8\x08\xef\xda\x79\x70\x93\x83\x20\xcf\x83\xbc\xb5\x88\xd2\x91\x57\x9b\x3c\x88\xe1\x67\x19\xc7\x0b\xbb\x00\xac\x98\x94\x5f\xb2\x09\x01\xd8\xdc\x56\x5f\xe5\x3d\x05\x60\xbb\xa2\x4f\x2b\x91\x06\x26\x36\x5c\x16\x29\xea\x7b\x88\xe3\x56\xe9\x4e\x52\x06\x75\xc4\x7d\x16\x67\x82\xed\x6d\x6f\x12\x38\x4c\xd8\x53\xfd\x3d\x3c\xf1\x19\xfa\x93\xa5\xe3\x7e\xf7\x71\x83\x3a\xfb\x9a\x84\x42\xad\x71\x67\x35\xf6\xf6\x0d\x45\x71\x61\xa7\x55\xac\x46\x5e\x5c\xdd\x8d\xe5\x54\xa2\x9c\xd9\x13\x67\x83\x2d\x93\xbf\x8d\xd8\x73\xf5\x36\x39\x0f\x06\x35\x2b\x27\x81\x12\x0d\x96\x98\xbf\x2c\x77\x17\x7d\xd0\x7f\xdf\x24\x51\xfe\x29\x3a\xc0\x57\xf5\xfd\x4d\x45\x3d\x74\xb8\xef\xe0\x6b\x5a\xc5\x10\x8c\xa2\xe7\xde\xa1\x04\xa5\x49\x8c\xbe\x27\x7b\x6f\xae\x72\x2e\x66\xd6\xb5\x84\xcc\xc1\x3c\xd0\x57\xa5\xc0\x1a\x3b\xa1\x5a\x69\x54\xf7\x61\x07\xec\x87\xef\xa4\xab\x16\xe1\x2e\xdb\xfe\x3e\x15\x05\x92\x7e\x8d\xff\x6f\x0e\x82\xab\x9c\x7f\x7e\x6f\x05\x80\x68\x0d\x7f\x28\x8d\x0e\x80\x92\xbd\xf0\xab\xa3\x36\x00\xba\x92\xe2\xfb\x4f\x5b\x02\x98\xa6\x4b\x5d\x3a\xaf\x07\x60\x63\xa7\x70\x9b\x39\x1f\xc0\xc1\x5e\x15\xc3\x73\x07\xc0\x31\x52\xf7\xb1\xe4\xc5\x8d\x9c\x98\x6a\x5b\x3b\xfb\x26\xe3\x5a\xc2\x7b\xab\xc4\x80\x44\x07\x76\xfc\x88\xf9\xc5\xc4\x07\x3e\x3c\xf8\x63\x86\x23\x25\x9d\xc1\xea\x1b\x5c\x90\xa7\x26\xd5\x13\xab\x38\x45\xac\x81\x0a\x62\xec\x4d\xdc\x29\x72\x3e\x0e\x99\x83\xd9\xf0\x23\x21\xe4\x2f\x23\x5f\x87\x7e\xf9\x3e\xa4\x18\x8a\x7c\x13\x46\xf8\xb8\x43\xa9\x1e\x15\x1e\xbc\xfc\x66\x55\xf9\x06\x6a\x22\x48\xfe\x59\x9c\x72\x0e\xba\xcb\xf7\x42\x7f\x82\x8a\x39\x46\xc0\xcb\xab\xbb\x52\x75\x1e\x63\xe4\x45\xdd\xe1\xa9\xaa\x8f\x21\xb8\xde\xdc\xe0\x60\x7e\xa8\xd7\x61\xed\x9c\x35\x1b\xa8\xd5\x3c\x71\x74\xb6\xbf\x4e\xc7\x56\x41\xcb\xdf\xeb\x61\x80\x4b\xf0\x0f\x0e\x62\x89\xe7\xfa\xde\x5c\x00\x09\x46\xfe\xb1\x03\xe7\x37\x7d\x39\x7a\x61\x42\xcc\xc7\x87\x01\x2c\x2f\x8b\x03\xdd\x75\x00\x5b\x71\x39\x39\x46\x26\x00\xa7\xf7\x2a\x58\x9e\x81\x8d\x7c\x14\x33\xa7\x72\xd3\x18\xf5\x62\x62\xb4\xbd\x82\x9d\x8b\x69\x0b\xc1\xcc\xf6\xaa\xbf\xb9\xeb\x12\xbe\xc6\x22\x2d\x1e\xe5\x8b\xc7\x55\x1a\xa7\x16\x77\x84\xab\x93\xb9\x20\xcc\xb2\xe6\xfd\xa7\xde\x89\x9f\x30\xd2\xaa\x4f\x26\x2e\xa5\x6a\xa1\x9f\x28\xd9\xae\xee\x4a\x57\xc0\x60\x14\xae\xaf\xb5\xc7\x3b\x93\xfd\x48\x1b\x3c\x10\x28\x75\x23\x3d\x22\x3d\xc7\x78\x94\x6b\x51\x12\xa1\x65\xe4\x5c\x9c\x27\xf9\xaa\x35\x68\x0f\xff\xb2\x87\xb9\xea\x3b\xd1\xad\x7e\x66\x1d\x54\xea\x7c\x18\x61\x6f\xd6\x16\x1b\x8d\x45\x8c\xa1\xd7\xbb\xc6\x0c\x0d\x6e\x2c\x9d\xab\x7d\x9d\x94\xe6\x3d\x2c\xa7\xab\x44\xf5\xbc\xa6\x23\xf6\xb9\xc3\xef\x7d\x92\xc7\xff\xd7\xf8\xf7\x8e\x70\xfb\xff\x93\x83\xe0\x1d\xe3\x7d\x4e\xdd\x0a\x20\x95\xc6\x37\x7c\xe0\x0c\x80\x7a\x00\x3f\xe6\x08\x03\x80\xe1\xa2\x80\xc1\x71\xb3\x7f\xf0\x20\x24\x5f\x8e\x9b\x81\xf2\x20\x2f\x27\xa0\xbd\x24\xb5\x8f\x48\xab\x80\xb9\xfb\x94\x31\xab\xc6\x7e\xa2\x84\x33\x8b\x9d\x8a\xe5\x1c\x41\xc6\xfe\x93\x77\x88\xdb\x37\xbc\xa2\x55\x57\x1c\x6d\x60\x15\x8e\xd6\x54\xb4\x98\xf5\x6a\x03\x96\xd2\x60\x7f\xd3\x52\x92\x00\x46\x58\x2b\x76\x90\x37\x2d\x06\x9d\xac\x66\xf6\x59\x24\xf3\xce\x46\x3e\x0e\x9d\xe2\xb7\xd5\xd8\xd4\x13\x64\x3f\xd2\x4f\x21\xa5\x4c\x44\x41\x8c\xed\xb8\x88\x4a\x07\xe2\x4b\xf4\xd2\x6b\x0f\xd5\x64\xe4\xcf\x88\x03\x43\x9c\x6a\x0d\x28\x83\xb0\x53\x8f\xea\x34\xf6\xa0\xa6\x82\x43\xba\xdc\x34\xd4\xd1\x96\x01\x77\xdb\x6a\x34\xcf\xa2\x51\xbe\xe6\x8d\x14\x5a\x35\x18\x1e\x1f\xe6\x5a\x3e\xed\x1c\x4c\xb1\x67\x4d\xf5\x4e\x6d\x0b\xac\xb0\xab\x6a\x65\x85\xd6\x3b\x6c\xb3\x63\xf3\xef\x79\x08\xfb\x3d\x0f\xac\x1c\x7c\xbf\xe7\xc1\x83\x77\x3f\x55\x15\x80\x40\x19\x5f\xcd\xbe\x4e\x00\x59\x0c\xdf\xa9\x03\xb1\x9b\x1c\x04\x39\x17\x83\x3c\x0f\x9e\xfc\x52\xd1\x4c\x3c\x00\xbe\x12\x8a\x6e\xbc\xfd\x00\x7e\x9e\xea\xef\x24\xfa\xc0\xd3\xa7\xcc\xc0\x53\x7d\x0f\x51\xc3\xbd\xd3\xba\xda\xd2\x0c\xbf\xe6\xf4\xc6\xc3\xc3\x8b\x03\xf7\xd6\x26\x31\xb6\x20\xf4\x23\x36\xdd\xdc\xa0\x30\x3e\x7e\x37\x46\xd2\xb0\xa2\x09\x93\xee\x8c\x3e\xa6\xdd\x3d\x5c\x92\x63\x8e\x0a\x50\xbb\xff\x8d\x2e\xaf\x00\xd5\xae\x3c\xb5\x9c\x94\x13\x8c\x8e\x51\xea\x5b\xa9\xc9\x98\x9c\xff\xa4\x1c\xbd\xba\x96\x42\xf3\x45\x5a\x35\x6f\x2d\x20\xa9\xe0\x0d\x8f\x06\xfd\x1a\x36\x91\x93\xcc\x03\x3d\x16\xd3\xe4\x41\x12\x22\x1e\x74\xdd\xd4\x8a\x42\xb1\x45\x6c\xb9\x57\xa5\x95\x81\xa6\x0b\x7a\x48\xce\xc5\xa9\x1b\xd2\xe9\x45\xff\xf4\x8b\xbc\xe9\xa9\x93\x85\xc9\xf7\x5c\xad\xb4\xd4\x21\x60\x08\xee\xc6\x65\xde\xba\x12\x58\x19\x57\xeb\xcd\x79\xa0\x21\xb2\xcf\xff\xaa\xcc\xc9\x5c\x8b\x54\x03\x00\xc2\x86\xdc\x15\xd4\xaf\x00\x94\xc2\x78\xb8\x0e\xb8\x03\xe8\xdc\xe4\x7e\x75\x28\x1b\xc0\xaa\x9b\x6f\xf6\xc4\xfd\x7f\xfb\x72\x02\xa2\x65\xdd\x38\xeb\x00\x82\xac\xd5\xcf\x49\xa9\x6f\xe4\xc4\xa8\x79\x5f\xb3\x9c\xb4\xbc\x87\x6f\x70\x6d\x71\x3d\xe5\x33\x80\x3b\xef\x50\x1e\x15\x70\xb5\x15\xd3\x68\x69\x5a\xd8\x9d\x2a\x8c\xf6\x35\x56\x6b\xca\xce\x36\x46\xf9\xeb\x54\x0c\x8f\xe6\x8f\x20\xe3\xd4\xd5\xa6\xeb\x8b\x2d\xc8\x7e\x24\x64\xa4\xf2\xab\xe5\x6f\xd9\x5c\xd3\x29\xaa\x53\x2b\x2b\x19\x40\xe6\x81\x5e\xf0\x6a\x12\xd6\x1c\x52\x38\xff\xce\xc5\xb9\xef\xad\xd3\x81\x1c\x8b\x52\xba\x1b\xac\x4b\x81\xea\x0a\x0d\xde\xc8\xc5\xd1\xd5\xd3\x40\xff\xf4\x1b\xac\xba\xa0\xf7\x19\xc3\xe0\xab\x5a\x2a\xa0\x1f\x8a\xe9\xf5\xd4\x2e\x62\xd5\x9f\xc5\x52\xba\x27\xfd\x9a\x07\xce\xd5\xdf\xbc\x5c\x3c\xf7\xeb\xed\x66\x00\x9c\xbd\xdc\xf4\x7b\x8c\x37\x7d\x39\xca\x04\xee\xa4\x03\xe6\x00\x06\x11\x5c\x3f\x0e\x8d\x03\x58\x8b\x71\xcd\x1c\x0d\x01\x70\x6f\x11\xe0\x3b\x3b\xb5\xe9\xcb\x09\x0d\x90\x3d\xc4\xdd\xb6\xe1\x0d\x0a\x89\x10\xd7\xb6\x51\x9b\x24\x8a\x06\xaa\x9a\xdf\xb4\x5a\xc5\x07\xbb\x49\xbb\x56\xfa\x8d\x63\xa7\x9d\xe8\x23\x3a\x62\x12\x30\x97\x6c\xb4\x73\xf3\x33\x66\x50\xcd\x26\x01\x77\xaf\xe4\x57\x23\xd3\x74\x90\x2f\xd5\x4b\xcc\x11\x3a\xea\xbc\x0b\x17\xca\xbb\xc8\x3c\xd0\x62\x81\xea\xca\xf2\xd1\xbc\x4f\x5f\x8e\x6a\xdc\x5a\x7e\x94\xab\xf1\x46\x43\xab\x77\xe5\x7b\x56\xc1\x80\xa6\x8e\xc6\xea\x72\x5a\x6f\xcf\x6d\xdd\x23\x88\x3d\x49\x97\xee\x5b\xea\x55\x22\xba\xe3\x59\xef\xf2\xe8\xfb\x22\x43\xa3\xeb\xc9\xb9\x38\x37\xd8\x0d\xc3\x51\x23\xa1\x8f\x2a\x82\x0d\x5d\xd1\x3a\x41\x1f\x4b\x76\x1b\xe9\xa1\xdf\xf9\x7f\x2f\x2c\x31\x74\xc2\xa4\x79\x53\xe4\xeb\x19\x5e\xc2\xe0\x3d\x28\x37\xe7\xe1\x3c\x91\xeb\xd3\x0e\x6e\x00\x36\x6b\xb6\x77\xbb\x64\x01\xc4\x96\x38\x18\xf7\x0e\x03\x68\x58\x70\xbe\x39\x20\xb3\xc9\x05\x91\x39\x08\xaf\x48\x5e\xcd\xd3\x83\x9b\xbe\x9c\x28\x16\x19\x4b\xde\xe3\x00\x31\x39\x4a\xc7\x25\xfa\x20\x30\x86\x4f\xb3\x5a\x5d\x9d\xc8\x1b\x4e\x65\xaa\x65\x5d\x8a\x37\xf1\x1b\x71\xbc\x17\xe0\xb3\xe1\x8f\x32\xb2\x0b\xcf\x09\xce\xe9\x44\xe6\x9b\xb9\x37\xfd\x28\xf5\x44\x6c\xd5\x2b\x78\xf5\xa6\x2a\x87\x9c\x07\x83\x78\xad\x16\xbf\xf0\xee\xba\xdb\x34\x9f\xc6\xed\x25\x81\xa2\x1b\xa3\x0c\xda\xf5\xcb\x2c\x05\xbc\x64\x1e\xe8\xd1\xa2\xde\xc2\x6a\x50\xa6\x44\xbb\xb1\x3e\x7a\x2d\x34\x95\xab\xf9\x99\x21\x07\x82\x3e\x29\x78\x83\x07\x32\x30\x4c\x47\x89\x44\x5e\x28\xe7\x32\x76\x40\x55\x87\x9f\x28\x91\x35\xae\x43\x0b\x05\x0f\x14\x9c\x36\x61\x41\xdf\x0b\x18\xc9\xc1\x9b\x6c\xc1\x28\xfa\x32\x67\xd5\x99\x18\x60\x6a\xbc\x6e\x01\xec\x98\x63\x77\xfe\x35\x0f\x17\xf3\x39\x0d\x76\x54\xfe\x23\x07\x41\x9b\xa3\x8b\x7a\x11\x40\x5b\x8f\xf3\xd2\x81\x80\xcd\x3c\x08\x27\x6d\xae\xe5\xe3\x6a\x00\x01\x57\xb8\x65\x4e\x2b\x00\x44\x9e\x13\x10\xbb\x58\x0e\x10\x8f\x94\x38\xc0\x79\x1d\x20\x29\x5d\x7e\x48\x42\x18\x7c\x12\x8f\x6b\x50\xab\x3f\x21\xf2\xc7\xe6\x18\x1d\xb3\x6e\xc4\x6b\x07\xef\xb6\x1f\x0e\x40\x63\xca\x3d\xa3\x03\xbe\xa6\x26\xa3\x6e\x39\x3a\x67\x6d\x29\xb8\x81\x98\x30\x0f\xb9\x2b\x57\x8e\x5d\x1d\xd3\x8f\x7a\xd3\x70\xcb\x84\xec\xcd\x5a\x0e\xd5\xb0\x99\x7f\x5c\xc9\x3c\xae\xa2\x93\xbc\xb0\x5a\xd6\xfa\x4a\x5b\xef\xda\xd2\xb1\x92\xa4\x7e\x23\x83\x88\x65\xc7\x02\xa7\xf6\x4f\x46\xcf\x57\xcc\x73\xd5\x5b\x4a\x8c\xfc\xd7\xe8\xd3\xcf\xfd\x2b\x17\x47\xcc\xf4\x3e\x32\x22\xa6\x88\xec\x87\x22\xe7\xe2\xe4\x74\x98\x86\xa0\xbb\x03\xde\x64\xed\x32\xdb\x82\x61\xf0\x93\x4d\x7f\x64\xca\x8b\x19\xf4\x9c\x00\xd8\xfa\x98\xcd\xee\x37\x27\x26\xca\x71\x71\xe7\x4b\x00\x3e\x02\x7b\xe4\x9e\x83\x9b\x1c\x84\xce\x05\xf6\x02\x9a\xf2\x4d\x0e\xc2\xcd\x98\x9d\xfb\x28\x05\x40\xc8\x21\x2e\x9b\xd3\x4e\x9b\xbe\x9c\x24\x59\xd1\x24\xb6\xee\x0d\x6f\xd0\xb5\xf4\x03\x2a\x63\xaa\x36\x44\x95\x64\x5d\x7d\x1d\xab\x12\xfc\xa5\x28\x71\xdb\xbd\x41\x9f\x30\x97\x7d\x33\x7c\xa8\x33\x8a\x91\x65\x2e\xe7\x32\x3c\xae\x53\xaf\xe9\x59\xe9\x37\x7e\xae\x69\x5c\x39\x61\xa0\x39\xfa\xe5\x4e\xcf\x8a\xa7\x36\xe3\xcc\xde\x86\x46\x32\x0f\xf4\xf6\x92\x81\xf1\x7c\xce\x8d\xe4\x7e\x46\xe3\x53\x8b\xb2\xe5\xdb\x3b\x0d\x4c\x7c\x96\x9a\x8b\x53\x5b\x96\x4c\x2d\x57\xa8\xf3\x96\x6e\x6b\x98\x2e\xaf\x5a\x67\x8d\x90\x73\x71\xae\x0f\x59\x38\x20\x2c\x92\x02\x8b\x27\xcc\xdf\x20\xf5\x62\x1f\x90\x73\x71\xb2\xdc\x2c\xb3\x51\xc5\x11\xfb\xd2\xbe\x5a\x8e\xa3\x99\x42\x3e\xa4\x1c\xb5\x1c\x43\xd7\x05\xb6\x25\xda\x5b\xfa\x63\x64\x7d\x5f\x02\xec\x16\x66\xfb\xfd\xf7\x05\xa3\x07\x5b\x38\xa5\xfd\x66\xff\x5f\x41\x86\xf9\xc2\x9e\xf7\x00\x7a\xd5\x8c\xb3\xd4\xe1\x00\x0e\x8d\x2c\x70\x10\x09\xe0\x63\xc1\xd2\xf7\xeb\xfc\x8c\xda\xc7\xc1\x74\x2a\x05\x20\x49\x9c\x3b\x95\x6e\x06\x20\x0b\x84\x6e\xb3\xbe\x04\xc8\x51\x90\x3e\x25\xea\x03\xf9\x79\x9f\x15\x3f\xaa\x52\x11\x55\xae\x31\xe8\x58\x58\x15\xe0\x8f\x25\x3e\xb2\xb4\x0d\x76\x45\xdf\x08\xa6\xf6\xd2\xb9\x36\x86\x28\x74\x8f\x4f\xa5\xad\x9c\x5d\xf9\x69\xc3\xdf\x64\x76\x5b\x6c\x89\xce\x30\xe3\xc3\x5a\x1b\xed\x02\xad\x6e\xce\x8f\xa0\xa6\xd1\xf7\xbe\x86\x88\x19\xc1\xdb\x65\x83\xdb\x4d\x96\xe6\xec\x6e\x15\x74\x9d\x32\x43\x2e\x38\x55\x09\x36\x0b\x5a\x04\x2c\xf1\x95\x0e\xd7\xf9\x5a\xae\x2c\xdb\x14\xae\x92\x73\x71\x8a\x89\x36\xdf\x57\x3d\xae\x05\x14\xca\x58\x47\xae\xad\xa6\x3c\xcf\x36\xb3\xc9\x42\xf4\x26\x1e\xc8\x3a\x62\x7d\x07\xd9\x16\xc3\x9c\x32\x6c\x53\x8b\x32\x8d\xbc\x9f\x78\xd1\xf6\x28\x6a\x26\xac\x20\x4e\xcd\x66\x14\x9d\x18\xd4\x1b\x2d\x6f\x2b\x81\x5e\x0c\xd0\x00\xa0\x66\x65\x34\xfc\x7d\x5e\x92\x38\x08\xd1\x30\x56\xb1\x3d\x17\x01\x94\xeb\xae\x14\xef\xd9\x03\x60\x46\xb8\x32\xb0\x8f\x6e\xd3\x8f\x12\xb2\xed\xb2\x2f\xcd\x32\x40\x7c\x14\x4b\xe1\x09\x26\x80\x2c\x19\x0e\xcf\x73\xc7\x00\x0a\x6e\xf2\xd1\x33\x1e\x07\x28\x6b\x17\xc9\xe6\x4b\x80\xae\x0a\x29\xd9\x74\xc5\x35\xa2\x7d\x89\xb7\x86\x90\x05\x01\x2f\x9a\xa3\x6e\x72\x24\x70\x01\xcd\x11\x4b\xe7\xda\x9b\x7b\x67\xf5\x93\xef\xd5\x38\x6c\x9d\xdc\xd2\x76\x87\x9c\x46\xe9\x7b\x3f\xe6\xfc\x8d\x2b\xbe\x14\xf4\x50\x7d\x60\x35\xbd\xfb\x6d\xf2\x7e\xd9\x80\x82\x25\xe5\x8f\xfa\x66\xd1\xf6\x5b\x36\xc2\x33\x59\x77\xf8\x6f\x53\xdb\xf9\xcd\x1f\xa9\x41\xdf\xc4\xdb\xdd\x5a\x58\xab\x4c\x28\x4d\x70\x3c\xbd\xc4\x76\xfd\x5d\xa1\xa6\x83\xf6\xca\xd6\x02\xf3\xec\x9d\x8e\xb9\xab\x3b\x73\x32\xd2\x73\x1d\xed\xd6\xf4\x33\xa8\xc8\x1c\x4c\x7c\x9d\xa3\x31\x52\x23\xae\x3a\xe6\x9e\x23\x3b\x6a\xdf\xd5\xf6\x28\x3b\x47\x71\xd4\x83\xf0\xb9\x48\x3e\x87\x6e\x34\x53\xa8\x62\xd8\xa2\x83\x00\x7a\x38\x50\x1d\x80\xe6\x0e\x83\xf4\xaf\x79\x60\xdf\xca\xf2\x8c\xaa\x19\x40\x82\x8a\xc9\x60\x37\xfb\x66\x0e\x82\xd5\xa9\xcb\xb7\xa8\x59\x00\x3c\xdf\xd3\xe7\xec\x6b\x04\x88\xfa\x70\x61\x0b\xf5\x0f\x80\x34\xc3\xcb\xa7\x0f\x45\x01\x14\xd3\x32\x27\x9c\xc2\x01\x54\xd2\x71\x3d\xbd\x5c\x09\x50\x7b\x58\x88\x8a\x57\x0b\x5e\xd7\x5f\x93\x52\x54\xb8\x4c\xcc\xab\xdf\xa9\x34\x60\xfa\x09\x4f\x5b\xb9\x5b\x5f\x3e\xe8\x1e\x6a\x3e\xdb\xc5\x9e\x23\x9f\x76\xd9\x26\x6c\x5f\x38\x6d\xcb\xd9\x39\x01\xb7\x7b\x0d\x62\xbd\xe7\x27\x27\xac\xae\x8e\xcb\x3f\x75\x7c\x7c\xc5\xf1\xf8\x64\xf2\x43\x54\x73\xa0\xcb\xfd\x6f\xbe\x1d\x94\x35\x78\xd7\xb8\x1f\x8b\xcd\xd3\xd7\xc3\xdd\x8f\xcf\xca\xdc\xf6\x2f\xf8\xe1\xa6\x31\x3f\x7f\x53\x24\x73\xd0\x9d\xb8\x18\x53\xe1\xbf\x91\x07\xb3\xcd\x7d\xef\x4a\x59\x9e\xd7\xff\xe5\x45\x0a\xa5\x74\x19\x41\x99\x46\x5d\x22\x73\x30\x7e\xc9\xae\x77\xd1\x66\x21\x8c\x00\xe7\x4b\x99\xc6\xb7\xdb\x01\x70\x49\x33\xac\x50\xea\x00\xc8\x1c\xa0\xa7\xa0\x12\x04\x30\xd0\xa4\xbf\xb4\xfb\x2d\x80\xe3\x20\xed\x6b\xaa\x72\x80\xe0\x95\x73\xaa\xbb\x9f\x00\x24\x38\x6f\x23\xfe\x9a\xb7\xfc\xc7\xe7\xee\xed\xdb\xb3\xe9\x47\x69\x58\x62\xb1\x3e\xa7\x06\xd0\xd2\xc8\xcb\xce\xee\x02\xf0\x80\x20\x2a\x22\x65\x4b\xbc\xf5\x00\xe4\xc6\x4c\x8c\xf0\x3b\x5a\x9a\x34\xdb\x83\x30\xa8\xb4\x5b\x0a\xe6\x82\x05\xa5\x8b\x96\x19\x67\xfc\x90\xed\x92\x1f\x03\x43\x7c\xaa\xdc\x87\xe7\x7a\x4e\xf9\xb8\x8f\x72\xbc\x14\xbc\xf5\xd8\xbf\xeb\x13\xf7\x13\xa1\x12\xba\x40\x93\xaf\x4e\x0f\xa3\x73\xa6\x03\xc2\xa7\xb5\xef\x6f\x4d\x8b\x0d\x98\x9c\x39\xd1\xf4\x3e\x31\xc1\xff\xd5\xdc\x54\x6d\x45\xec\x5e\xff\x77\x0b\x99\x37\x1e\x87\x8f\x05\xec\x58\xba\x55\x8a\x0b\xd3\xf7\xeb\x5d\x5e\x29\xd4\x0b\x8e\xf7\x3f\xb2\x52\x93\x97\x1d\x38\xeb\xeb\xb5\xb6\x3f\xf3\x51\x40\xa3\x77\x26\xc2\x28\xf9\x89\x5f\x83\x37\x2f\xf2\x60\x82\x80\xef\x21\xcf\x87\xa8\xc3\x57\xdf\x7a\x5f\xf2\x8a\x42\xd5\x47\xd8\x7b\xdd\x77\xef\x42\x5b\x84\xd0\x02\x5c\x20\x5c\xee\xdb\x1e\x02\xc0\xcf\x73\xb9\x8c\xd2\x09\x40\xf1\x07\x5d\xff\xce\x61\x00\xb3\x41\xda\x74\x4a\x4f\x00\x57\xba\xf5\xf7\x76\xe4\x3c\x8c\x4c\xa0\xf8\x83\x83\x68\x7a\x7e\xfa\xc4\xee\x2d\x00\x9d\x67\x2f\x1c\x3a\xe4\x0b\xd0\xa7\xce\xa6\x41\xff\x1e\x60\x88\xc8\x1f\x2e\x44\x0f\x34\x2f\x5d\x24\x9e\xe9\xde\xc7\xc7\xbc\x68\x53\x2c\xf3\x59\x44\x49\xf6\xbb\xe8\x2e\x16\x1e\x9c\x90\xbf\xfb\xd1\xf9\xfb\x7d\xa9\xe6\xee\x22\xfb\x8c\xc3\xcf\x03\x73\x07\x33\x22\x5e\x65\x8e\xee\x4e\x16\x4e\x67\x1d\xbf\x38\x58\x19\x27\x95\x5c\x32\xd9\xd5\xb3\x7a\x95\x37\xb1\xf4\x7b\xe7\x03\xc7\x70\xbd\xf8\xaa\x19\xcb\x26\x31\x32\xff\x11\xe2\x18\x95\xbe\x10\x77\x63\x29\x50\x3f\xb2\x70\xa9\xa7\xb4\xd2\xbf\x24\x7c\x6e\x45\xaa\x80\xd6\x8f\x3d\xf4\xd1\x6a\xe5\xb5\x78\x9f\xe4\xd0\x5d\x6b\x35\xe9\x54\xde\x8a\xc1\xec\x88\xd6\xa4\x9d\x9e\x4d\x41\x91\xc8\xcc\xd8\x3c\xf7\xd6\xa0\x21\x94\x5e\x94\x85\x5b\x6d\xa0\x03\x7a\x47\x98\xb9\xeb\xb3\x80\xed\xe8\xdc\xa0\x61\x80\x2b\x0d\x97\xbb\x76\xbc\x05\x90\xba\x42\x67\xb8\xe3\xeb\x66\xff\xdf\xea\xc4\x8e\xdf\x7f\x87\x07\xe6\xfd\xd9\xef\x2a\x51\xa3\xf8\x7d\x2f\xfe\x36\x29\xff\xa1\x5b\x65\xbd\xef\xfb\x6c\x69\xcb\xef\xbf\x4f\x46\xbd\x2f\xef\x38\x31\x02\xf0\x25\x95\x5b\x9a\x9b\x16\x4a\x7e\x96\x0b\x57\xab\x54\x10\x76\x2e\xbe\x92\xb6\x72\x2b\x9b\x0d\xfc\x11\xa5\x56\x94\xbd\xbd\xff\xf5\x68\xad\xf5\xa7\x3b\x31\x45\x02\x4f\x76\xc6\x64\xf4\xdf\x0d\x7f\xd9\x53\xfe\x74\xe5\x45\xa0\x7f\x53\xab\xc4\xa7\x9c\x7e\x33\xdf\xf2\xba\xf4\xa9\x85\x4e\x73\x9f\x73\x55\xc2\x3f\x1e\xb4\xe4\x7a\x7b\x16\x57\xce\x0e\x34\x48\x79\x1d\xc8\xff\x3c\x8f\xb9\xc9\xe3\x11\x92\x3d\xb1\x24\x58\x46\xeb\x1e\x94\xf9\x64\xb9\xad\x70\xe2\x6f\xfe\xc3\x99\x90\x64\x83\xf0\x4e\x3e\xee\x92\x1c\xdb\x8f\xe4\x8a\xf7\x74\x2c\x8a\xe3\x40\xd9\x44\xce\x38\xde\x8d\xb6\x43\x7d\x09\xa7\xb5\xaf\xbc\x5a\x88\x1e\x0c\xb4\x77\x90\x88\xda\x82\x1e\x0d\x3c\x0d\xc0\xd6\x7b\xe9\xfe\x8e\x41\x00\xd9\xe7\xb4\x17\x76\xd0\x6e\xe6\x61\xfc\xed\xc3\xc8\x79\x4b\x11\xf9\xab\xd6\x76\x50\xfc\xc1\x41\x0c\xf7\xff\xd9\xff\x9b\x17\x3a\xd5\x45\x75\x14\x00\xff\x94\xf9\x16\xdd\x09\xc0\x12\x29\x04\xbf\xc8\xff\x98\xe9\xc3\x3e\x90\xa6\x74\x40\xbd\xba\x8e\x14\x56\xdf\x13\xaf\xde\x74\x7b\x49\xca\x52\xb8\xe2\x41\x92\xe4\x0f\xc5\xd0\x9a\x07\x55\x9e\x5b\xa7\xf8\x3a\xed\x7b\xee\xd9\xd9\x7f\xc0\x4e\x22\xba\x93\xed\xd4\x87\x78\xa6\xa1\x05\x6b\x7f\xb0\x3b\x76\xe6\xe3\xed\x24\x7b\xc7\x66\xc6\xf9\xcf\xd5\x25\x76\x79\x0d\xca\x4b\x34\xd7\x3f\xd8\x55\xd6\xc4\x2c\x4b\x17\x0d\xda\xef\x2d\x5b\x5b\x99\xca\x79\x6d\xbb\x54\x12\xb6\xa6\x9d\x3e\x68\xbb\x98\x3f\x8b\xd0\x4c\x56\xb7\x65\xcd\xe3\x47\xee\x8d\xef\xb2\x99\xbc\xc6\x8a\x44\x5f\x45\x59\xf7\x64\x51\xa0\x6a\xc3\xf1\x64\xfe\xc3\x2a\x27\x79\x3f\x46\xdc\xef\xa2\xf5\xc5\x84\x87\x18\x7b\xdf\x0b\x00\x7c\xce\x67\x32\xb6\x19\x03\x28\xe9\xef\xf9\xfd\xf3\x34\xbb\xb3\x3e\x9e\x80\x44\x8a\x3f\x78\x20\xb2\x0f\xa3\x8d\xd4\xf7\x19\x4a\xff\x73\xfc\x2b\x97\xc9\xef\xbd\xf7\x5e\xa0\xa0\xc0\x72\x03\xb0\x4c\x5d\x94\x9a\x76\x20\x86\x0a\x04\x4a\xde\x7e\xe3\x8c\xdf\x21\x9d\x6a\x2e\xde\x71\x16\xbd\xa4\x11\x16\xd8\x5d\xfa\x7a\xcd\xd2\xfa\xd8\x35\xd7\x88\xd4\xc5\xfc\xc0\x81\x6a\x57\xb7\xd4\x79\xaa\x9b\x74\x0d\x56\xe6\x07\x66\xcf\x7d\xe4\x68\x4c\x34\xfc\x34\xa7\x35\x33\x5c\x5f\x64\x1c\x32\xa6\x3e\x8f\xaf\x4a\x33\xd1\x1d\xce\x5a\x3a\x58\x6a\x6e\x26\xd9\xe3\xbd\xcc\x5d\xf8\xc3\x34\xbb\xfd\xe6\xca\x5a\xb6\xa9\xd9\xee\xe6\xdb\x6b\x74\xe9\xf5\x66\xf6\xf5\x0b\x08\xa9\xa4\x76\x33\x89\x9a\x6a\xe4\xa5\xb8\x50\xb2\xf7\xc4\x6c\x5b\x59\x0c\xaa\x36\xdc\xda\x74\xbc\x78\x16\xad\x1e\x5c\x6d\x6a\x58\x28\x86\x9e\xf1\x1f\x37\xf5\xcc\xc9\xc7\x24\x78\xf7\x1a\x77\xe4\x20\xb1\x07\xdd\x27\x00\x78\x51\x54\x47\x7e\x7d\x7e\x72\xff\x9f\xbc\x0e\xc8\x3c\x50\x89\x12\xa9\xef\x47\xba\xf7\xfb\x84\x74\x0f\x9a\x9c\x03\xb0\xcc\xf1\x47\xff\xa7\x08\xe0\x94\xdf\xce\x67\xdf\x24\x00\x98\x24\xcf\x4d\xbc\x46\x10\xa7\xf9\x9b\x85\x97\x1f\x32\x11\x38\xa5\x7d\x75\x94\xeb\xb6\x62\x8b\x34\x0b\xdc\x92\xb3\x2e\xa0\x2f\x59\x9a\x46\xf2\x05\xcc\xae\x7d\xf7\x93\xca\xda\xef\x74\x65\x65\xa9\x58\xb5\x60\xcd\x6c\x7c\x59\xff\xd1\x8b\xd2\x24\xbd\x7d\x4b\x75\xd3\x2c\xd7\x0f\x6a\x2b\x2c\xbb\x2f\xf1\x16\x75\x69\x57\x7f\x2f\x5f\xfe\x9e\x4b\xab\xdb\x31\x62\xb9\xba\x3f\xcb\x58\x17\xf5\xec\xce\x9a\x5f\x4a\xbd\x5e\x68\xdf\x3c\xc2\x2f\xc1\x54\x2f\xa7\x0b\x8b\x4c\x88\xe6\xd6\x1b\xbe\xbf\x03\xa5\x1f\xb1\xdb\x60\x57\x63\x22\x6a\x22\xd4\x5c\xff\x59\x83\x13\xda\x39\xe8\xac\xde\xeb\x5a\x09\x8c\x98\xcf\x33\xbd\x89\xea\x04\x4c\xa3\xe7\x1b\x7d\xba\x8a\x54\xec\x11\x77\x0e\x7d\xe6\xeb\xc2\x58\x2f\x97\x28\x00\x89\x90\x6d\x83\xbf\xc6\x61\x4e\xf2\x80\x04\x71\x51\x18\xfc\x27\x07\x42\xba\xf7\x3c\x1a\xb0\x5e\xff\xe4\x40\xc8\xef\xbd\x27\xc6\x01\x7e\xed\x17\xaf\xb9\x00\x18\x1b\x69\x9f\xf6\x4c\x00\x33\xff\x57\xfe\xb5\xc6\xd3\x84\x57\x32\x97\x54\xcb\x8b\xcf\xe0\x15\x34\x85\x2d\x02\xe2\x88\x58\x03\x8b\x38\x2f\x37\xaf\xf7\xe8\x73\xde\xd9\x91\x18\xbb\x71\x14\x45\x66\x6d\x3c\x8f\x29\x13\xf2\xd2\x9d\xeb\x49\x05\x7a\x4a\x08\x86\x67\x34\xa9\x38\xf5\x73\x6b\x23\xcb\x55\xa9\xca\xaa\x8f\x10\x99\x6b\xd9\x89\xf1\xaa\xe3\x8b\xc6\x08\xc5\xb8\x44\xb5\x8a\x49\x04\x52\xf1\x2a\xbf\xfa\xe5\xb1\x44\xd4\xc5\xf0\x0b\x7f\xe7\x5e\x68\x9d\x7c\xc8\x8a\x2e\xf6\xef\xd6\x4c\x6b\x7f\x8e\x31\xf5\x42\x6a\x8a\xb7\x79\x63\xd0\x6e\x9f\x35\xf7\x37\x2b\x63\x4d\x5c\xf6\x68\xf2\xdd\xb1\xc5\x36\x39\x16\x69\x4a\xd7\x89\xe1\x0e\xdb\x35\xfd\x7b\x1d\x90\x39\x90\xbf\xbd\x30\xe4\xfb\xdf\x7f\xf6\x7d\xfe\xf6\x81\x90\xfb\x7f\x3d\xf7\x01\x18\x9f\x9c\xed\x69\xba\x03\x55\xbc\xa1\x6c\xe3\xe5\x99\xc4\x4c\x69\x63\xe9\xa7\x19\x4f\x09\xd2\x1a\x48\x3d\xd7\x70\x45\xdc\x63\xf3\x64\xbb\x62\xb7\x1d\x58\x55\x0f\x19\xef\xc3\xd6\x7e\x98\x86\xc4\x36\xff\x7c\x63\x15\x34\x54\x6a\x04\x07\xea\x7a\xa3\x7d\x1e\x58\x86\x8e\xa9\x2b\xa1\x0f\xbf\x23\x84\x45\x2a\xbd\x46\xe5\x21\x1f\x84\x3b\x2a\x36\xa1\xb5\x50\xe1\x41\x28\x45\x51\x74\x21\xea\x59\x20\x9d\x22\xdf\x8c\x18\x7a\xc6\x0b\xaf\xc4\x38\x69\x8c\xa1\xf2\x6a\xde\xf0\x7d\x7c\x78\x45\x85\x3d\xe2\xa2\xa8\x8c\x19\xd8\x83\x55\x75\x3e\xa3\x9c\xdf\xa7\x85\xed\xb1\xef\x52\x39\xff\xd0\x08\x8b\xb3\x93\x54\x6e\x6a\x1f\xc7\x05\x5a\x89\xaa\x24\xb6\xbe\xc0\x15\x5a\x5a\x02\x58\xec\x59\x1f\x57\x04\x69\x3d\x14\x54\xad\xd7\x16\xd2\xf9\xf0\x8c\x74\x6e\xfe\x77\x0e\xc2\x97\x5d\xeb\xf5\x39\xa9\xff\xd3\x41\xf2\xdf\xdf\xfd\x01\xc0\x60\x7e\x62\xf0\x86\x05\x3c\xe1\xa3\x64\xe1\xcb\xc1\xc2\x71\x29\x45\xe1\xdc\xb8\x7b\x44\x3a\xf5\x4c\xe5\x26\xbf\x63\x84\xc3\xa6\xf7\x0c\x65\x1d\x8c\xf1\x94\xae\x4b\x36\x2a\x16\x91\xb8\x98\xab\x3c\x8e\x47\x0c\xe5\x70\x0c\x79\x09\xce\xf7\x75\x18\xb0\x1d\xb5\x51\x6e\x9a\xea\x92\x58\xf6\x47\xc1\x9e\x3a\x4a\xc9\xd8\x23\x1f\x28\x3d\x4a\xe5\x4f\x60\x16\x51\x04\x8f\xa3\x72\xfb\xb0\x1e\x98\x6e\x17\x0e\x99\x0e\xdc\x19\xac\xaf\xdd\x47\x59\xce\x55\x5b\xec\x55\xbb\x11\xd9\x82\x9f\x4f\xb1\xbd\xb6\x66\xb2\xb1\x5f\x5e\xe3\x78\xac\x38\xe5\x64\xc7\xf6\xe0\x6c\x2d\x0f\xc8\xae\xbc\x19\xc3\x75\x99\x71\xc9\xf9\x0c\x8f\xe0\x30\x26\x89\x72\x11\x4f\x95\xf0\x7c\x46\xa1\x72\x49\x8f\xa3\xf0\x0e\x06\x3d\x9b\x1c\x48\xfa\xd9\x3f\x9f\x83\xfe\x67\xeb\xf5\x33\xdd\x7f\xf5\x7f\xc9\xf7\x7f\xff\xd5\xff\x74\x26\xf5\x7f\x45\x01\xb6\x4f\x52\x50\xe4\xb7\x03\xf0\xc4\x5f\xbe\x9c\xfc\x0c\x4a\xc5\x46\x39\xd0\x61\x25\xc4\x66\xb5\x60\x69\x06\x8f\x1f\x04\xac\x91\x8b\xda\xc1\x0d\xfe\x81\x09\x9f\x1a\x26\x66\xce\xa9\x3f\x82\x37\x4d\x9b\xb6\x18\xd5\x9e\xc0\x53\x95\x7c\xb4\xce\xdc\xc8\x7d\xc8\xc5\x15\xf6\xb5\xd8\x6a\xcb\x4d\xe0\xac\x27\xa6\x6c\xdf\x48\x4f\xe2\xaa\x90\x87\xac\x42\xa4\x4a\xf1\x47\x70\xa1\x66\xf6\x92\x68\xbc\x11\xee\xa9\xf1\x28\x99\x7b\x90\x18\x5f\x5b\xc2\x1b\xea\x8d\x4a\x6e\x9b\x35\xc0\x47\xe8\x3e\x90\x80\x29\x09\x7c\x93\x0e\xb5\xc4\xcb\x71\x27\x3c\x42\xf3\xa6\x44\xe8\x68\x01\x81\x43\x5d\x4d\xe2\xfd\xab\x1e\x82\xa2\x9a\xff\xe6\xb9\x48\xe6\xa1\xba\xdf\x53\xfc\xd1\xff\xc6\xdc\xa6\xf8\x87\x07\xe1\x6b\x15\xa9\xff\xb9\xe5\xaf\xfe\x67\x21\x89\x7f\xd0\x20\x71\x00\x1f\x01\xce\xd7\xd2\x70\xa5\xdb\x02\x70\xbb\x9d\x27\x5e\x75\x81\x47\xe2\x71\xac\x3f\xfc\xbf\xc3\x25\x95\x34\xe1\x48\x27\x35\xa2\xaf\x61\x86\x1c\x8a\xcc\x3f\x18\xed\x25\x0c\xf9\x6b\x6b\xbc\xfa\x97\xf7\xa2\x91\x70\xac\x72\x9b\x81\xa6\xe2\x33\xfc\xa7\x96\x6e\xc3\xa7\x72\xd2\xf8\xa7\x4f\xb2\x0c\xef\xc9\x78\xe1\x8d\x3e\x82\xe9\x4e\xc9\x35\x7c\xc6\x92\x81\xd1\x89\x7f\x71\x0f\x5d\x84\x31\x82\x85\x0a\x8b\x08\x0d\xc1\x9a\xf0\x45\x2e\x48\x94\x62\xad\x9a\x50\xa8\x58\x29\x1a\x32\xdb\x4e\x48\x56\xf2\x17\x95\x98\x72\x22\xb4\x2a\x34\x8b\x20\x3f\x7d\x20\x7c\x94\x3f\x00\x90\x4b\xf2\x5f\x90\xf3\x50\xc8\xfb\xc0\x0a\x8e\xe2\x1f\x39\x10\xdf\x49\xf7\xb6\xdf\x76\xfd\xc9\x01\x91\xfb\x9f\x64\x0e\xa6\x78\x0f\xc0\xc9\x2a\xca\x03\xe9\x07\x01\xce\x77\xee\x3f\x17\x43\x0d\xc0\xa6\x74\xf2\x74\x50\x14\xe0\x45\x1b\x19\x3a\x3c\x62\x21\x41\x11\xc7\xad\x60\xe3\x0e\x47\x74\xcb\x44\xa4\x4c\xca\x89\x8d\x16\xa3\x52\x28\xfd\x4e\xa2\x96\xb7\xb3\x62\xb8\x96\x03\xd1\x21\xac\x49\x41\x5d\xfd\x1e\x91\x3f\x61\x48\x69\x8d\x9c\xfb\xa0\x44\x41\x68\xbc\x41\xa1\xb1\x28\x7b\x89\xf0\xb5\x65\xaf\x6a\x87\x54\x3b\xa1\xa5\x2f\x46\xfd\xf2\x06\xf7\xf0\x91\x50\x35\x43\xaf\x76\x8d\x9c\xf7\xf0\x7f\x71\x0f\xfc\x08\x44\x08\xf1\xa9\x50\x06\xff\xd0\xe2\x39\xe2\xa0\x90\xe6\xe6\x73\x30\xa4\xff\x5f\xfb\xe0\xbf\x38\x20\xd2\xbf\xb7\x90\xb8\x80\xaa\xf9\x3f\xfb\xbf\x64\x0f\x42\x20\x0a\x80\xa2\x99\x82\x22\x74\x0c\x80\xfd\xf6\x89\x9f\xde\x0f\x00\x44\x98\x2f\x6a\x39\x26\x42\x87\xe2\x6e\x36\x09\x73\x3d\x88\xd1\x94\xe3\xfa\x6e\x58\x05\x54\x66\x23\xa2\x54\xba\x22\xc4\x8f\xae\x9a\x12\xaf\x35\x23\x88\x3d\x81\xbb\xa5\x5e\xaa\xb2\x12\x1f\x47\x0b\x48\x15\x6c\xe4\x3e\x08\x10\x3d\x0b\x4b\xe5\x8f\xc9\x9e\x23\x3a\x57\x3b\xcb\xfd\x94\xa6\x26\x8a\xb5\x1c\x51\x78\x25\x6e\x44\x34\x7f\xdc\x2c\xa7\xb2\xc1\x3d\xcc\x11\xb9\xa6\x5c\xe5\x5f\x08\x5b\x10\xbd\xd6\x5c\x64\x52\x85\xa4\x89\xbd\x44\x13\x89\x9c\x0d\xee\xe1\x24\xd8\xc3\x3e\xfe\xcb\x3c\xb1\xf0\x0a\x22\x38\xf8\xb8\x73\x60\x15\xaa\x58\xc7\x00\x1e\xcd\xac\x8f\x7b\x92\xf5\x9f\xe3\xff\x9f\x3e\x18\xdc\x7a\xbd\x49\xda\x0f\xf3\x3d\x49\xfd\x5f\xd2\xf7\x93\x73\x20\x82\x33\x01\x4e\xdf\xa2\xf4\xf5\x6e\x04\x60\xed\x3f\xf2\xdc\xe5\x21\x80\x60\x0f\xad\xaa\xd5\x57\x00\x59\xc5\xcb\xb9\xc6\x97\xe0\xa6\x86\x2f\xbb\xa1\xae\x2b\x84\x1b\x28\x70\xe1\xb4\xce\x81\xbe\x9d\x18\x7f\xb8\xea\x43\x30\x77\x5f\xe0\x17\x54\xd6\x03\xa9\x20\x17\xc1\x66\xc5\x93\x70\x3e\x46\x4a\x84\x57\xee\x2a\x6c\xcd\x90\x17\xe3\x97\x89\x21\x7e\x2d\xc4\x8a\xe3\x25\xf7\x11\x17\xab\xe7\xc4\xda\xc5\xf7\x11\xc7\xef\xf6\x88\xbb\x6e\x70\x0f\xc2\xc4\x97\x2f\xe8\xc4\xb5\xc9\x79\x0f\x02\x0d\x44\xc2\x4c\xb5\x48\x31\xd9\x73\xc1\x97\x0e\xe1\xc0\xc0\x7b\x93\x97\x07\xda\xc0\x86\x13\xcf\x1d\x00\x28\xa8\x61\x4d\x05\x78\x4f\x3e\x07\x18\xff\x79\x0e\xfe\xcb\x07\x43\xfa\xb9\xdf\xba\xb9\x5e\x8b\x7c\xfe\xe4\x60\xae\x1e\x20\xf5\xbf\x47\xfe\xec\xff\x3b\xe6\x01\xd0\xab\x51\x4b\x5a\x2b\x00\xf0\x10\x8f\x9f\x30\xc7\x00\xc8\xd0\x5e\xa2\xd1\xcf\x83\x2f\x2a\xcf\x19\xc5\x34\x9f\xc1\x43\x1d\x6f\x96\x40\xf5\xa3\x50\x6b\xde\xc9\xde\xa0\xf2\x0e\x62\x5d\x94\xb9\x3f\x28\x6a\x40\x8e\xd7\x37\xae\x12\xf9\x4e\xf0\x0e\xb5\xe4\x7d\x23\xbd\x0a\x51\xb1\x6a\x3c\xc1\x52\x75\xa0\x9e\xc5\x2c\xe0\x2a\x11\x03\x2a\x85\xf9\x02\x1e\x62\x99\x20\x5e\x75\x5f\x70\xaf\xd0\x0a\x58\xdd\x89\xe0\xdb\x47\xe6\x1e\x04\xf7\x00\xdf\xd3\x63\x02\x8d\xff\xca\x7b\xa0\x06\xbb\xd9\x01\xde\x31\x9e\x07\x70\x0f\x4b\xe0\xf4\xe1\xc9\x81\x17\x10\xc6\x61\x06\x80\x08\xfd\xf5\x79\x31\xa4\xbc\x97\xcf\x3b\xff\x07\x07\x44\xe2\x44\x4b\x48\xf3\x90\x41\x9a\x97\xbf\x7d\x28\x2e\x06\xeb\xd5\xb4\x0c\x80\xe2\x2e\x05\x85\x65\x3a\xc0\x85\x2f\xbb\x13\x4c\xf6\x02\xb0\x49\x1f\x90\xd5\xc7\x01\x88\xb5\x9d\x1e\xd7\x5c\x05\x50\x2c\xbe\x28\xae\xba\x06\xcb\x9a\xca\x97\x1f\x29\xab\xc3\x4f\xe3\x83\x57\xbe\x29\x68\xc0\xb4\xcd\x09\xc6\x55\x79\x05\x18\x70\xe3\x64\x4d\x93\x41\xc2\x0b\xef\x4c\xd6\x0b\x52\x05\xf0\x34\xc4\x85\x6d\x87\x44\x1b\x3c\x88\x69\x63\xb7\x11\x5b\x85\xca\xf4\xa7\x9c\x5a\x22\x22\x50\x97\x5f\xcc\xe1\x22\xc4\x00\x35\x15\x95\x1c\x01\x82\x77\x21\xbd\x4e\x82\xcb\xe5\x6f\xee\x81\xb7\x1b\x92\x86\xc4\xb9\x8c\x78\xee\x41\xce\xc8\x69\xce\x3a\xee\x29\xa8\xf9\xba\x9f\xa3\x9a\x47\x1a\x6e\x2d\x6d\xe3\x34\x21\xef\x83\x5f\x1f\xfc\x8f\x73\x30\x99\x74\x0e\x90\xe6\x25\xfb\xf0\x9f\x1c\x0c\xd9\x87\xe2\xf1\x6b\x1e\x0d\x28\x28\x6c\xf6\xad\x7f\xad\x4b\x9a\x37\xa3\x5b\x00\x67\x7a\x76\x7c\xd5\x3d\x04\xc0\x7c\x89\x7a\x49\xcb\x1a\x40\x70\xef\xd1\x62\x55\x09\x00\x99\xfd\x67\x6c\x94\x75\x01\x54\x53\x2f\x04\xcb\xbf\x06\x30\xa0\xbf\x38\x2f\x37\x09\x60\xca\x4c\xcf\x25\xeb\x07\x60\xf3\x99\xe1\x98\xf4\x7b\x98\xf1\x10\x60\x12\x92\xcc\x83\x05\xbf\x53\x8c\x58\x71\x65\xf8\x19\x7e\x86\xa9\x59\x4c\x12\xde\xc5\x3d\x62\x69\x11\xa6\x82\x6f\x69\x8d\xcc\xfb\x84\x2e\xc1\xab\xbc\x17\x2c\xe3\x02\xd2\x30\x56\xca\xcf\xb2\x85\xff\x1c\xbc\xaa\x8e\x62\x29\xe6\xbd\x09\x83\x4d\x7d\xac\x27\x78\x0d\xa0\xfd\xc1\x12\x9b\x23\x8f\x21\xb4\xf6\x2f\xb0\x8d\x71\x4d\xc2\xc0\xab\x0b\xac\x86\x9c\x05\x30\xf5\x3e\x97\xd9\xef\x07\xc9\x77\xf4\xd6\xe1\xaf\x73\xf0\x1d\xe9\x1c\x28\xff\x73\x1f\x4c\x7c\xfc\x27\x07\xe3\xad\xbb\x5e\xc9\x79\x28\xc6\x7d\xeb\x55\x83\xc4\x83\xc8\x06\x02\x6c\x71\xa5\xa0\x50\xfd\x0e\x40\x6f\xb2\xeb\x9a\x92\x2c\x00\x67\xe3\xfe\x17\x0a\xaf\x00\xc4\x6c\x8e\x65\xca\xa9\x03\xc8\xf6\x9c\x3e\x28\x63\x00\xa0\xce\x71\xf6\xa4\x94\x31\x80\xee\xcb\xb3\x3f\x64\x82\x01\x2c\x3e\x5f\xd2\x94\x4a\x04\x70\x70\xa2\xb7\x16\xa7\x00\x70\xb3\xb9\x38\x26\xea\x00\xe0\xf7\x94\x9e\x51\x24\x0b\x20\x34\xe3\x72\x85\xb0\x0c\x40\x0c\x91\x01\x2b\x18\x02\x90\x72\xea\xca\x36\x01\x76\xc0\x5e\xeb\xba\x72\x83\x2f\x0e\x88\x85\xe7\xae\xb0\x70\xf7\x00\x54\xe8\x5d\x96\xe7\x16\x05\xa8\xf5\x66\x70\xe4\xda\x0f\xd0\x6c\xc5\xe0\xc0\xd9\x07\xe8\xae\x3d\x57\x6e\x71\x9e\x05\xec\x63\xb8\x92\xfe\xeb\xd3\x8a\x3f\xfb\xb5\x3f\xfc\xcd\x41\x9c\x5f\x16\x51\xdf\xb9\x1b\x80\xed\xa3\xb0\xe7\x9e\x78\x00\x41\x10\x7d\x78\xa0\x0d\x40\x5a\x53\xf2\xf6\x71\x6e\x00\x15\x37\x59\xdd\xb3\xda\x00\xda\x2a\x4a\x26\x97\xe6\x00\x0c\x29\x34\x2a\xd9\x5e\x01\x18\x45\x19\xea\x09\x9f\x85\x77\x26\xd9\x16\x67\x64\xd4\x21\xc1\x28\xd8\x6d\xb7\x4a\x07\x91\x60\xe8\x10\xf2\x40\x7f\x96\x18\xaa\xc7\x9a\xe2\x66\xb1\x9f\xb0\xaa\x35\x52\xd2\x6b\xaf\x41\x88\x56\x33\xb8\xbb\xd7\x79\x95\x70\x42\xd9\xec\xf1\x36\x77\x2c\xfe\x9e\x82\xf5\x08\xd6\x7b\x27\x7e\x4e\xb6\xf6\xdb\x0d\x8f\x50\xbc\x95\x4c\x27\x32\xc4\x97\x8e\xa0\x2a\xd5\x8a\x89\x77\xa1\x21\x3c\x92\xac\xc7\x72\xdb\x5f\x40\xae\x48\xaa\x60\x3b\xac\x4d\x66\xb9\xa5\xfa\xb1\xf9\xb6\x4a\x5f\x3b\xa5\xcf\x63\x7f\x58\xeb\x8e\x3b\x4a\xbb\xe0\x38\x2c\xad\x5e\x07\xc9\xf4\xe0\xf4\x2d\x5e\x0c\x7b\xc8\xf2\xe1\x0a\xcd\xe6\x9e\x60\x65\x3d\x70\xa3\xa6\xfb\x1f\xef\x93\x8d\xc3\x1f\x35\xa6\xe9\x74\x90\xeb\xc5\xb3\x18\xd5\x3e\x48\x95\x3b\x80\x4f\xd3\xc3\xfe\x73\x1e\x04\x45\xfe\xd9\xff\xbf\x50\x28\x54\xbb\x93\x11\x80\x7d\x50\x68\xf7\x9e\x36\x00\x91\x3a\x91\xc2\x83\xab\x00\xb2\xb9\xe2\x42\xc7\xa4\x00\xd4\x1e\x4a\x7f\x3f\xbb\x07\x40\xff\x92\xe2\x59\xfa\xab\x00\x26\xcc\x6a\x08\xb6\x1a\x00\x13\x3b\x83\x2c\x61\x3f\xe8\x32\xf3\x35\x6b\x92\x3b\x0d\xae\x26\x1d\xce\x21\x6a\x85\xc4\x79\xa3\x6b\xc1\x27\x0c\xbe\x13\xb9\xf5\xeb\x53\xfa\x6d\x8e\x11\x6a\xb5\xa7\x4a\x35\x9d\xda\x09\x92\xea\xad\x8d\x39\x6e\x2b\xf8\x2e\x95\xfd\x7d\xe1\xde\x69\xf8\x1c\x85\xee\x91\xd7\x3e\x7a\xb8\x4f\x72\x6b\xb3\xf3\x41\x27\xf0\x3e\x32\x1e\x68\x15\x1f\x77\xc2\x61\x69\x6e\x0c\xb7\x9b\x13\x5e\x4f\xca\x0f\xd3\xe3\x14\xbd\x32\x20\xd5\x81\xa5\x77\x90\xfd\x31\x2e\xfd\x0a\xcb\xef\xe0\xfb\xe5\x9a\x74\x3b\xb6\xcf\xe6\xda\xd8\x16\x59\x16\x6c\xaf\xad\xf6\x73\x36\xf9\xed\xd8\x21\xdb\x8f\x83\xcf\xe5\xd4\x71\x7a\x96\x01\x8f\x27\xe4\x55\x70\xde\x16\x33\x0f\x67\xe5\xbe\xe0\xa6\x4c\x99\x1e\x1c\x53\xb8\x82\xdf\x6e\x12\x7b\x8f\x49\xce\x1e\x5f\xaa\xe7\xff\xcf\x79\x58\xe7\x20\xfe\x95\x83\xf0\x88\xff\x3a\xf5\x69\x00\xd1\x7e\xc1\xe9\x03\x8d\x00\x0a\x7b\x44\xa9\x8f\xc6\x01\x68\x1d\x95\xb4\x3e\xc3\x0d\x60\xc8\x27\xbf\x44\x2f\xbf\xe9\x0d\x32\xcf\xd2\xcd\x16\x8c\x87\x36\xb3\x19\xb3\x62\xb9\x3e\x50\x30\x37\x73\x58\xd1\xbc\x48\x6c\x36\xa9\x0c\x44\x9b\x28\x10\x69\x0c\xfd\x93\x4e\xda\x2e\x12\x0a\x75\x02\x4a\x1c\x9c\x23\xf1\x53\x1a\xf3\x8d\xdd\x5e\xdf\xf1\xe6\x2a\x3d\xfd\xef\xfc\xe9\xf1\xb4\x8a\x57\x3e\xb8\x04\xe4\xe2\xbe\xc8\x65\x2c\xe4\x05\xce\x90\xf9\x17\x7c\xb2\x8c\x24\xda\xc3\x3b\x11\x4d\x94\x0e\xc6\xc8\xba\x71\x93\x79\xa0\xaf\xa9\xb2\xd2\x98\x09\xe7\xd8\x8f\xbe\xb2\xe3\x58\x26\xc7\xe7\xaf\x6f\xca\xbd\xc2\x86\xda\xa3\x87\x4f\xca\x37\x62\x9b\xec\x86\x1f\x77\x2a\xf8\xe2\xa8\x6d\x3c\x7b\xdc\x15\x66\x71\x2c\xd6\x95\x0f\xcc\x14\x9f\xe3\x82\x2d\x7d\xff\x1f\x5f\xe7\x1d\x4f\xf5\xfb\xff\x7f\x1a\x1a\x2a\x95\xb4\x24\x44\x36\xd9\x7b\x6f\x8e\xbd\xf7\xde\x7b\xcf\x8c\xec\x99\x42\x28\xab\x24\x25\xd1\x40\x56\xa5\x42\x24\x4d\x49\x68\x28\x4a\x12\x59\xc7\x19\xaf\x73\xce\xf3\x77\xc3\x39\x54\xef\xcf\xf7\xf7\xd7\xf3\xf6\xbe\xf5\xfe\xe3\x5c\xcf\xf3\xba\x9e\xd7\xcb\x79\xdc\xaf\xc7\xa3\x79\x4c\x2b\x9f\x40\x67\xab\x52\x6f\x89\x62\x23\xd0\xda\xf6\xaf\xf3\x51\x14\xfd\x7f\x43\xb5\xc8\xa5\x3f\xfb\xb0\x96\x97\xf3\x56\xaa\x62\x4f\xfb\x3a\x07\x61\x26\xa4\xe4\xc7\x94\x06\x60\x9f\xa7\x36\x79\x3c\x1f\xc0\xd9\x49\x07\x7f\x22\x0b\xc0\xe5\x85\x99\x8d\x9c\x12\xdc\x74\xbe\x64\x17\xa0\xc5\x0a\xec\x4e\x32\x1e\xdf\x4c\x2a\x48\x29\xf6\x17\x22\x5d\x1d\x36\x10\x11\xeb\xed\x99\x1d\x1e\x34\xc4\xbd\xe6\x3d\x65\xf3\x41\x85\x14\x3e\x0a\xc1\xeb\xdd\xee\xe1\x8f\xee\x47\x2a\xb5\x9b\x3e\x0e\xc5\x34\x20\x27\x34\xc5\xe6\xe3\xe3\x33\xd6\xb8\x28\x2f\xb5\x64\xac\x7c\xe8\xeb\xf9\x9d\xea\x32\xd8\xb2\x10\x9e\x09\x46\x0d\x7a\xdc\xc1\xc0\x67\x1f\xf9\x35\x7d\x70\x7a\x81\x2c\x03\xd5\x9a\xb3\xb8\x67\x7e\x22\x2f\x9a\xb5\x52\xf1\x22\xde\xd5\x3d\x5f\xb5\x05\xf0\x31\x9e\xa3\x9d\x06\x5a\x44\x3c\xc1\xed\xd8\x03\x12\x4a\x18\xd9\xea\xc6\xd5\xb2\x4d\x67\x13\xa2\xe3\x62\xd4\x30\xab\xdd\x48\xd8\x6e\xfb\xe0\xb6\x30\xaa\x9e\x40\x67\x3b\xb8\x3e\x17\x28\xba\x37\x2d\x56\x78\x25\xa7\x97\xef\xac\xf8\xf5\x6d\x82\xff\xe5\x20\xd6\xf2\x72\x5c\xe5\x15\x8f\xa8\x01\x38\xbe\x53\x65\x65\xbf\x0d\xe0\x86\xd6\x71\x11\x7c\x01\xe0\xfe\xcd\xf8\xa9\x4c\x19\xdc\x71\xb7\xb7\xa9\xd4\xb2\x85\x8d\x2e\x83\xae\x3f\xcd\x0a\x49\xfe\x8e\x9d\xa1\x23\x8e\x07\x88\xf5\xb6\xce\xe9\xfe\xde\x19\x04\x8c\x45\x6e\xe9\x40\x70\xcb\x1a\x1f\x55\xad\x37\xd3\xab\x18\x1b\x8b\xc8\xa1\x68\x46\x6d\xe3\x7f\xe3\x1f\x6b\xe6\x2e\xe6\x25\x3e\xa1\xf0\x40\x94\xe7\x62\x86\xa4\x61\x8e\x3d\x16\x9e\x4c\xe1\x81\xde\x6f\xd4\xbe\x88\xbd\x1a\x46\xf5\x8a\x0a\x65\x82\x93\x0c\x7a\xd1\x5b\x8d\xaa\xc5\x5d\x0b\x38\xd4\xb5\x03\x35\x8d\xe7\xf4\x79\x4e\xe1\x81\x5a\x1f\xe9\x6c\x44\xd8\x5d\x73\x1a\x2e\xeb\xa2\x91\x3d\x6e\xd7\x6e\x6e\xd7\xa3\x47\x72\x9c\x9a\xaf\xdf\xd3\x0f\x45\xb2\x9c\xd9\xd6\xe7\x02\xa5\x0f\x74\x07\x84\x96\x56\xfa\x70\x4a\xf4\xea\xd6\xcf\x7f\x70\x10\xa9\xe2\x95\x7b\x8e\x03\x18\x95\x49\x35\xee\x57\x05\xb0\xbb\x2e\xf7\x8e\xc9\x16\xc0\xd5\x4c\x95\x9b\x43\x16\xc0\x53\x40\xdb\xec\x84\x13\x80\x67\xab\x51\xbf\x4c\x30\x3c\xf4\xcc\xb1\xde\xa8\x19\xbc\xe6\x1b\xc4\xeb\x9c\x1e\x5a\xe1\xf2\x9c\x98\x6c\xf7\x24\x8d\xdd\xb7\x96\x70\xde\xca\xb7\xc4\x36\x3c\x15\x79\x60\xaa\x54\x4f\x1d\xdb\x8f\xff\x65\xe0\xde\x3b\x9a\x94\x81\xcf\x44\x3d\xfe\x8a\x4d\x11\xc3\x9b\x68\x31\xa0\xe5\x53\xbe\x53\x78\xa0\x7f\xfd\x81\x28\x39\x59\xfd\x6e\x3a\xb2\x58\xa3\x88\x9c\x97\x8c\xa8\x2f\x38\xda\x90\xbd\x5d\x7b\x75\x6f\xe1\x1c\x82\xb2\x1f\x99\xeb\x19\xe1\x32\x02\x6b\xd7\x78\x28\x69\xbd\x16\x7c\x9a\xd7\xc4\xcd\x3e\xfd\x54\x64\x8b\xbb\x59\xcd\x15\xfd\x45\x44\xdf\x55\xa4\xba\x5f\x7f\x1e\x89\x71\x6e\x5b\x9f\x0b\xd4\x03\xa2\x2b\xf7\x0f\x8f\x1d\x11\x6b\xd9\xbc\x0d\x80\x7f\xbf\xc8\xbb\xad\xc8\x3a\x07\xa1\x7d\x57\x2c\x6f\xcf\x49\x00\xd3\x8d\x62\xa5\xf4\x08\x80\x83\xa9\xcc\xf4\x11\x31\x00\xf7\x5e\x85\xa9\x63\x0d\x00\xbe\x42\xea\x18\x7e\xde\xb5\xfc\xa4\x27\x7e\x6f\x2c\xd2\x35\xb3\x48\x63\x5e\x02\xce\xd5\x96\x47\x48\xd4\x6e\x07\x83\x34\xdd\x5e\x10\x05\x1d\x79\x92\x71\x81\xce\x04\x29\xeb\x9b\x25\x76\xd1\xbc\x6b\x7c\x54\xa0\xc1\xc3\xe7\x26\x69\x0c\xb8\x05\x1d\xea\xef\xb5\x19\x5a\xb8\x49\xad\x96\xc5\x2b\xe9\x9f\x28\x3c\xd0\x6c\x91\x96\xe5\x92\xe3\xa9\x86\x2f\x4f\x50\xc6\x4b\x33\x71\x2f\x28\x39\x59\x2f\x2b\x74\x6f\x61\xa9\xa2\xbe\xf4\x6c\xd1\x2b\xc6\x66\x87\x63\x3a\x77\xe8\x65\xe2\x0e\x87\x9c\xbe\x27\x67\x10\x83\x93\x08\x71\x68\x7e\xa9\x5f\x84\xdf\xec\xd7\x43\xf1\x05\xaa\xf5\x32\x3c\x82\x7f\xe8\x39\x50\x2d\x67\xf0\x15\x51\x71\x7d\x72\x25\xdd\xf0\x33\x62\xe6\x6a\xbb\x3e\x17\x28\xfa\x3f\x5b\x98\x98\xcb\xe6\x24\x00\x21\xbc\xd0\xeb\xed\x85\x00\x8a\x34\xe2\x49\x74\xf9\xeb\x1c\x84\x45\x80\x48\x17\x7d\x22\x80\xf3\x36\x89\x5f\x87\x52\xd7\x79\x90\x40\x0e\xf5\xbd\xfc\x58\x80\x60\x63\x3d\x0b\x69\x2c\xbc\x0f\x56\x33\xed\xd7\xb0\x24\x4d\xf9\x76\x3a\x36\x59\xcc\x11\xbb\x3d\xaa\xfc\x6b\x3d\x33\x09\xef\x9c\x65\x92\xca\x43\xf9\x90\x6e\xdb\xb0\x62\xbb\x38\xb9\x35\x3e\x2a\xc2\x88\xed\xc5\xc7\xd3\x2f\xb1\x24\x9d\xca\x9f\x99\x67\x7c\x28\xfe\x40\xd8\x68\x2d\x05\xb4\x65\xca\xa9\x9f\x6c\x28\x2f\x74\x51\x8a\xd3\x9a\x3f\xd0\x7e\x3d\x9b\xa5\xdf\xf1\x5f\x9f\xe5\xeb\x87\x60\xf2\x62\xfa\x28\x3c\xd0\xbd\x39\x43\x3c\xd6\x3b\xf2\x46\xd3\x77\xc3\x7e\x9c\x48\xc8\xcb\x3b\xfc\x46\x5d\xb8\x9c\xa0\x5a\x8a\x2f\x50\xb5\xa1\xd1\x63\x7c\x95\xd7\xe2\x15\x69\xe3\x36\x7c\xaf\xd7\xee\x72\x2a\x13\x40\xf6\xbb\xcf\xaf\xef\x87\x4d\xcc\xc2\x2b\xf7\xf5\xd8\xe9\x44\x7e\x6f\xbe\x00\x20\x18\x2e\x18\xb9\xad\x17\x40\x79\x58\xe4\xd7\xae\x3e\x00\x03\x39\x51\xde\x3d\xa3\x7f\xf8\xa3\x94\x89\xe1\x0f\xd5\x00\xf8\x8e\xc9\x6e\x60\x19\x02\x08\xdf\xa9\x3a\x73\xc2\x04\x20\xb2\x18\x65\x27\x2d\x04\xc3\xe1\xa1\x26\x87\x34\x92\x49\x98\xa0\x63\xf6\x06\x16\x27\x89\x85\xde\x31\x3e\x5b\xbd\x73\x08\x01\x6e\xdb\x4f\xf5\x45\x1e\x42\x58\x1d\x0e\x9d\xf7\x48\x6a\xc4\xb3\x5a\x5c\x6d\x88\xcb\x8c\xc6\xc9\x18\x49\xbd\x3a\x78\x46\x17\xab\xad\xf3\x7b\xba\x3b\x3f\x89\xe2\x0f\x34\xff\x18\xc5\xb0\x18\x9e\xa9\xf5\x95\x55\xf7\xd9\x22\x21\xe3\x00\xc5\x1f\xe8\x25\x9f\x81\xca\x52\x42\x62\x75\x37\x8b\x61\xe3\x12\xe6\x54\xe3\xc3\x00\xe3\xed\x18\xc3\x78\xfe\xe6\x1e\xe3\x62\xac\x42\x34\xc3\x9d\x5e\x13\x5f\x6c\x47\x04\x47\x1d\xb5\xc9\x19\x9c\x73\x88\xc8\xb5\xcf\xa6\xbe\xb8\xfb\x81\x70\xe5\xb1\xc9\x18\xde\xcc\xb7\xf6\x22\x62\xd2\x87\x9f\xf1\xe4\x2b\x95\x30\x2b\xc1\x3f\xf3\x4a\x59\xef\xc3\x96\xa3\x27\x56\xfc\x51\x38\x1e\x89\x30\xd3\xc4\x03\x08\x5d\x10\xaa\xdb\x1e\xf8\x3f\x38\x08\x2a\xa1\xaf\xf4\x5f\x01\x3c\x2a\x45\x9e\x1c\x88\x02\x08\x3a\x27\xc9\x7b\xd4\x0d\x20\x6a\xaf\xf2\xb4\x00\x0d\xc0\xc9\x23\x5a\x1e\x92\xb9\xf0\xe1\x64\xbc\xd1\x1e\x8d\x4b\xa4\x6f\xe1\x83\xb6\xb6\x56\xfb\x88\x51\xbe\x6d\x5e\x8b\xbe\x9b\x08\x6c\x1e\x0a\x71\x81\xd1\xb3\xf8\xb7\x8e\xb7\x0a\x53\x52\x59\x71\x69\x56\x1b\x1b\x84\x73\x4a\xb0\x11\xc6\x47\x5e\xfb\xe5\x2f\x62\x62\x75\x65\xe6\x44\x8a\x86\xb0\x55\xa8\xc2\xf9\xa1\xdc\xc3\x93\x61\x7a\x74\x0b\x16\x67\x59\x3f\xfe\xd6\x1f\x59\xa4\x3f\xdd\xf6\xc6\xdd\x50\x01\xad\x98\x8e\xef\xb6\x37\x56\x44\x63\x53\x59\x1f\x2e\x18\x63\x96\x1a\x12\xaf\xb6\xb2\x9b\xaa\x62\x78\x4e\x25\x51\x78\xa8\xba\x23\x66\x61\xd8\xd3\x91\xef\x29\x39\x61\x55\xba\x66\xd5\xb8\xd2\xe0\x3d\x15\xc7\xcc\x6e\xe1\xb9\xfd\x55\x4b\xf2\xcc\xcf\xe1\x73\x7c\x42\x2f\x98\x98\x37\xe1\x7b\xbd\x9a\xff\xe2\xc4\x56\xb8\x41\x8a\x0f\x82\xd8\x36\xc1\xde\xed\xb7\x00\x34\x25\x04\x8f\xec\xec\x03\x30\x4b\x3b\x31\xbc\xdb\x0f\xc0\xf9\xa5\xe0\x10\xfd\x02\x80\xdf\x4e\x61\xe5\x03\x71\x00\x11\xf2\x92\x2d\x2c\xdd\x00\x71\xe5\xf2\x47\xb9\xd1\x00\xa7\x5e\x69\x18\x48\x06\xc2\xef\x84\x50\x3d\x92\xba\x14\x69\x2a\x86\xda\x0a\x6d\xf9\x9b\xa8\x14\xd8\xe1\x49\xf4\x7f\x8b\x5c\xf3\x66\x3b\xf9\x21\x5e\x10\xcf\xe4\x42\x53\xa0\x97\xe5\x83\x1d\xb4\xbe\x54\x7f\x32\x9f\x01\xa3\x61\x82\xea\xbf\x51\x9c\x43\xe1\x81\x66\xc3\xf4\x2c\xe6\x32\x8b\x68\xc7\xa8\x0c\x42\xe7\xc3\xce\x59\x0f\x58\x18\x7d\x59\x70\xcd\x75\x7f\x2a\x67\xf2\x6a\x31\xf3\xf4\xfe\xc7\x6e\xa6\x17\xd1\xee\x19\xce\xad\x09\x66\x6f\x96\x24\x53\x5a\xee\x7c\xb3\x60\x5b\xfa\x99\xe8\x57\x77\xd8\xa2\x02\x93\x1a\x2f\x71\x7d\x8b\xc5\x65\xac\xe4\x49\xf9\x8a\x54\xab\x28\x6c\x45\xd4\xd6\x4b\x0c\x96\x5b\x71\x81\x21\xe5\x25\x5a\x96\x25\xb8\x1f\x81\x49\x45\xe1\x96\xc3\x78\x33\x3f\xff\x73\x5f\xad\x94\xf1\x19\x3e\xb8\xe5\x3e\x9c\xb8\xb7\xbc\xfe\xed\x1b\xf9\xf6\xfd\xa9\xff\x4b\xbd\xe2\x6f\xda\xce\x09\xa0\xcb\x26\x10\xb5\xf3\xd9\x1f\x3e\x08\x1a\x02\x08\xfd\x35\x80\x60\x1d\x41\xea\xfd\x77\x01\x62\xea\xc4\x4c\x8f\xd6\x02\xa4\xa6\x49\x5f\xe7\xb2\x04\x48\x8b\x51\x2d\x94\x38\x0b\x90\x61\x81\xf2\x50\xed\x26\x7d\x4f\xd2\xb4\x60\xb5\x4a\x23\xaa\x44\x9e\x72\xe3\x0d\xe0\x46\x18\xfd\x83\xc2\x7b\x93\xaa\x71\x16\x6e\x17\xf2\xf3\xcf\xde\xc6\xc4\xdb\xd6\x37\x64\x14\xf7\xa0\x1b\x4d\x3e\x0e\x39\x5c\x3e\x42\xf1\x4b\xfa\x97\x07\xea\x1b\x31\xab\x9f\xd7\x28\xac\x5b\xcb\xc9\xea\xb2\x78\xb3\xf8\x3b\x5b\xa4\x7e\xd6\x72\x12\xdd\x94\xfe\xf4\xfa\x45\x1b\xea\xa5\x80\x94\x9c\x2b\x9d\xb6\x3c\x4b\xcf\x93\x3e\x56\x88\xda\x88\x62\x66\x62\x63\x4b\x17\x6d\xaa\xb1\xe1\xd1\x4e\x14\x5f\xa0\x02\x23\x5b\x01\x5c\x74\xc8\x54\x9e\x89\x0d\x1e\x47\x0c\x34\x3b\xa3\x6e\x53\x87\x3f\xe5\x9b\xb0\xdc\x07\x81\x2f\xcb\xeb\xdf\x73\x97\x47\x7d\xb9\xf2\x13\xf9\x71\x5b\x23\x01\x94\x48\xfc\xac\xb4\x02\x00\x86\x0f\x78\xf3\x76\x4c\x01\x38\x46\x73\x4f\xec\x0a\x06\xf0\xdb\xc1\x97\xbd\xb7\x1a\x20\x0a\xc3\xb7\x67\x5f\x0b\x40\x32\x49\x38\x9e\xa9\x13\x20\xeb\x91\x24\x0f\x47\x27\x40\x8e\x89\xe2\x4d\xd1\x48\x98\xcd\x21\x6a\xfb\xa9\x67\x90\x48\x59\x93\x26\x2c\x96\xc7\x88\x6c\x89\xf7\x1d\x21\x70\x00\x2f\x1b\xa2\x11\x1c\x96\xc9\x8d\x95\xf1\xae\x38\xdd\x53\x94\x8e\xfe\xec\xf0\xb0\x3e\xe3\x32\x76\xa1\xd7\xf4\xe3\x27\xee\x1a\xb6\x69\x1b\x63\xb1\x5f\x6f\xae\x59\x0e\xa9\x9b\x6f\x9b\xb9\x5c\x49\xfd\x4c\xd9\x72\x62\x96\xfa\xa2\xd6\x63\x75\x2b\xdc\x5c\x61\x31\x5d\xcb\xb8\x4d\xca\x7c\x79\x61\xfc\xad\x1e\xdb\xc1\x05\xc8\xe5\xb9\xce\x63\xbf\x7f\xf1\xd9\xe9\x2f\x57\x84\xec\x8f\xa2\xc7\xd2\x1f\x5f\xec\xb3\x0f\x59\xba\x9c\xb2\xb5\x58\xc4\x21\x18\xa3\x9e\xd0\x4e\xc9\xc7\xca\x53\x72\x08\xc5\xb6\x44\x49\xe4\x50\x3b\x52\xe3\xa4\xc2\xb7\x65\x93\xec\xdf\xe2\xfa\x82\xa9\xd2\x9b\x1d\x4c\xf1\x4a\xfe\xcb\xe7\xa6\x85\x40\xe6\xf2\xfa\x59\x47\xf9\x46\x37\xc9\xad\xe7\xa3\x50\x72\x10\xcc\x4f\x73\xbb\xef\xc8\x5e\xf7\x41\x08\xee\x62\x23\xed\x78\x02\x90\xa0\xc8\x35\x42\x4f\x0b\x90\xe5\x29\x70\xf7\x30\x00\x9c\xf3\x14\xfe\x79\x4c\x0b\xa0\xa8\x43\xd6\x4e\xc8\x0e\xa0\xf8\x90\x5a\x8a\x8a\x25\x6c\x2b\xe4\x37\x10\xb4\xf0\x25\xb2\x9c\x6e\xb7\x35\x0d\xda\x89\xdf\x15\x67\xe4\x27\x93\xd5\xba\x54\x1e\x78\x28\x63\xc7\x25\x8e\x85\x69\x17\xc1\x3b\x1a\x37\x5c\xe7\xa8\xcd\x0f\x8e\x5f\x69\x58\xa4\x70\x30\x4f\x37\xd9\x89\xfc\x7a\x7d\x3d\xfd\x3f\x1c\xcc\x41\xa7\xf1\xb9\xf4\x12\xbf\x2b\x91\xce\x9f\xe7\x09\x85\xfb\x4b\x3f\xbb\xca\x2e\xb2\xe5\xc6\x15\x0f\xba\xa0\xd0\x7c\xd9\x1d\xe7\x10\x97\xd7\x4b\xf2\x69\x97\x72\x77\xb8\x9c\xc7\x08\x26\x5e\xce\x3e\xe8\xfa\x18\x73\xe3\xd4\x06\x8a\x1f\x4e\xda\x9c\xcb\x2c\xb6\x3b\x4a\x3a\x71\xbb\xeb\x6f\x9c\x5f\x28\x3e\xe1\xab\xeb\x7e\xdc\xfd\xe0\x2e\x80\x6d\xe2\x7c\xf4\x2b\xe7\x25\x59\xff\x17\x8f\xe7\xec\xdb\xa2\x09\x80\x2a\x64\x1f\xdb\x1a\x08\x60\xf7\x9c\xdd\x68\xbb\x1b\x80\x2f\xed\xce\xe6\xe5\xff\x2f\x56\xe6\x28\x66\x5b\x1b\x40\xe6\xa9\xcd\x2b\xba\x6f\x41\xf2\xf1\xde\xbd\x38\x80\x72\x2b\x01\xd3\xa3\x69\x00\x57\xf7\x88\xd5\xf2\x9e\x00\xb8\xfa\x4a\x31\x53\xe1\x12\x28\x55\x85\x6b\xcd\x99\xc4\x10\x8d\xca\x79\xcd\x94\xfd\xaf\xe1\x72\x4f\xf3\x7a\x58\x9d\x39\xbe\xd8\x1f\x61\x97\xb0\xbf\xda\x7c\xf6\xbd\xc7\xe4\x6d\xf9\x26\xc7\xaf\x68\x3b\xc9\xb1\xa0\x76\xc6\xae\x19\x97\xdc\x89\xde\xa6\x68\x8a\x1f\x4c\x2d\xc1\x43\x7a\x9a\xf7\xfa\x8b\xcb\x1c\x5e\xdf\x66\x1e\x57\xf9\x95\x59\x79\x1d\x9b\x1d\x2e\xcf\x2f\xe4\xf4\x7e\x39\xf7\xbb\x78\x28\xd7\xd7\x27\x62\xfe\x47\x11\xd7\x69\x9c\xd7\xf3\xc5\x17\x67\xa8\x32\x6e\x79\x87\xa2\xd3\xb3\x8a\x29\x3e\x30\x49\xe7\xbd\xbe\x60\xc4\x13\x27\xe2\x33\xbc\x9b\x31\x4d\xa7\xf6\xc6\x1e\xf7\x0a\xc3\xd6\x46\x73\x9f\x44\x79\xe9\xe2\xf6\x46\xe4\x45\x7a\x79\x7e\xc1\x35\x84\xf0\x02\xec\x22\x70\x65\xac\xfc\x3d\x41\xd6\xff\xa5\x4f\xb3\x71\x6f\xfe\x0a\x60\x64\x75\xac\x75\x2b\x2d\x80\x33\xc7\xce\x87\xcb\xff\x1e\x7a\x87\xf1\x01\xcd\x81\x3f\x72\x41\x2a\x98\xf2\xb7\x2b\x01\x5c\x6a\x60\xb6\xde\x79\x10\xa0\x26\x9e\xdd\x95\xbe\x13\xe0\xce\x26\xc1\xaf\x1c\xbb\x01\x1a\xa5\x65\x39\x64\x88\x60\x72\x57\x42\xcd\xcd\xe8\x09\x51\xe8\xf6\x25\x83\xda\x80\x48\xdc\xbe\xcb\xbc\x0e\xa7\x72\x49\x3f\x5e\x66\x5e\x0b\x47\xdf\x64\x7d\xdd\x7c\x52\xfd\x62\xf0\xfd\x88\xf6\x82\xc0\xc7\xef\xb2\xbb\x1e\x55\x67\x05\x97\x8e\x13\x1e\x98\x96\xfa\x85\x6a\xff\x38\xdb\xc4\x59\x30\x18\x2a\x3b\xa5\x70\xeb\x5d\x4e\x51\xe8\x9b\xe9\x33\xd7\x2b\x33\x6f\x86\xee\xff\x1d\x5b\xd9\x45\xc9\x03\x3a\xd5\x1e\x7a\x69\x3e\xf8\x82\x5d\xec\xc5\x50\xc6\x85\xfa\x73\x5a\x31\x2c\xc1\x3e\xe8\x0d\x39\x3e\x91\xb9\xc1\x3b\x96\x98\x32\x36\x44\x6c\x0a\xb2\x5b\x7a\x96\xe2\x41\xf1\x3f\x09\x99\x0e\xa8\xc1\xf2\xc4\x86\x07\x0f\xfb\x3f\xc0\x36\x45\xa1\x83\x8f\xf9\xd1\xe1\x7c\xc2\x84\x00\x98\x92\xb8\x0e\x6e\x88\xff\x43\xff\xcf\x63\xfe\xb2\x39\x12\xc0\x32\x80\xc9\x6e\x73\x04\x80\x67\xff\x06\x3a\xaa\x3f\xee\x3d\xff\xcb\x41\xd4\x0a\xac\xf2\x0f\xcd\xc9\xcc\x51\xbb\xce\x00\x74\x94\x73\x25\x33\x06\x02\x3c\x7d\x2c\xf2\x4e\x90\x1e\xea\xfb\x5c\xe4\x07\x50\x59\xc4\x98\xa7\x43\x5a\xee\x3e\x4c\xb3\x12\x0f\x7e\x9b\xfb\xe4\x34\xbf\x4e\xac\x39\xe7\x97\x79\xdd\xfb\x56\x5e\x61\xf3\x69\xb9\xf6\xc4\xc2\x89\xec\x2d\x1d\xa8\x9e\x9b\x19\x1d\xe9\x57\xbf\x3a\x75\x94\x25\x1b\xa4\x31\x4f\xa8\xb7\x9a\x27\x90\x92\x03\x7f\xd2\x34\x70\xc7\x7e\x48\xce\xfc\x35\x7e\xa3\x29\x26\x26\xbe\xe9\xb7\xcf\x15\x8e\x68\xa7\xf8\xcb\xb3\x0f\x2e\x36\x47\x3c\x8f\x53\x9f\xaf\x38\x5f\x17\xde\x16\xb3\x67\xe1\x75\xfe\xeb\xb5\xfc\x9b\xeb\x91\xe8\xa5\x3d\x19\xaa\xc1\x67\x22\x92\x97\x3e\xa4\xec\x09\xec\x8a\x38\x8f\x39\x9b\xb0\x37\x40\x2d\x6c\x1a\x1b\x72\xb2\xc1\x7f\x2a\xf4\x20\x76\x22\xb2\xc7\x3f\x25\x64\x23\x4e\x2a\xbc\x02\xe0\xd8\x2d\x36\x9b\x8d\x8f\x01\xc4\x99\x8e\x7e\xdf\x38\x00\xa0\x69\x4a\x1b\xb6\xa2\xfb\x16\xac\xae\x37\x94\xac\xf7\x66\x4c\xaf\xd6\x12\xb2\xcf\xf3\x8d\x98\xbf\xf5\xcf\x5e\x69\xb2\xfe\x71\x80\xc9\x9e\x76\x02\xe0\x63\x33\xff\xa3\xe3\x8d\x00\xdf\xe4\xa5\x32\x94\xdf\x60\xdf\x7c\x4f\x57\x39\xe3\x76\xf4\x43\xf2\x60\xa3\x91\x67\xaa\xf2\x03\x96\xde\x45\xb7\xd7\x15\x47\x2e\xc8\xb6\x75\x26\x3d\x6c\x1a\x4d\xb0\x6c\x9c\x68\x53\x7b\x58\x19\xfa\xee\xe6\xed\xf1\xf7\x0f\x4e\x86\x28\x55\x5d\x98\xd4\x6e\xd4\x0e\x9a\xb9\xd8\xfd\x4b\xbc\x8e\x3e\xb0\xa8\xd8\x77\xe6\x55\x55\x79\x40\x77\xc1\xc8\x6c\xdd\xc5\x6c\x7f\x4c\x9e\xc4\xbc\x40\x31\xab\x3f\x6b\xce\x8e\x85\xb6\xfc\x19\xdf\x2f\x59\x4f\x17\x7f\xe5\x94\xfb\x5a\x64\xa4\xa0\xeb\x33\x7f\xfb\x9a\xa4\xa0\x96\x4a\x53\x51\x3e\x5c\x49\x85\x98\xe0\x84\x6b\x5e\xe2\x49\x37\xb0\xa2\xb1\xdc\x5e\x61\xf1\x71\xd8\x81\x28\x51\xcf\x84\xb8\xd7\x38\xf5\x70\x15\xf7\xc5\xd8\x41\xdc\xaf\xa0\xab\x00\x6c\xe3\x47\x05\x36\x9c\x02\x90\x74\xd8\xbe\xe2\xb7\x67\x60\x41\x5d\xb0\x5c\x3d\x4e\xae\xae\xeb\xdf\x5c\x14\xca\xfd\xef\xb6\xcb\xab\xf5\x29\x61\xb5\x0e\xef\xa0\x5a\xf1\x4f\xf8\x15\xb1\x6d\x64\x45\x07\xbb\xc4\xf1\x60\x7f\x3b\xb2\x00\x1c\xe2\x82\x52\x4a\x13\x87\x09\x6e\x8a\x9d\xd6\x8a\x7d\x5e\xb3\x4f\xf5\x8a\xa2\x53\x6b\x5d\xbe\x2b\x3a\x1d\x2d\x40\xa7\x6f\x19\xe9\x8c\x41\xd7\xf6\x06\xc5\x0f\x67\x37\xee\x6a\x7c\xeb\x52\xde\x1f\xfe\x43\xf1\xee\x41\x97\xc6\x6e\xaa\xa9\xa7\xb5\x03\x6e\x9e\xad\x59\xd3\xdf\xae\x99\xbb\x9d\xbc\x85\x9f\x75\xbd\x58\xe9\xea\x53\xbb\x73\x9e\xe1\x42\x99\x6b\x74\xd5\xbe\x85\xda\x7c\x77\xd7\xab\x17\xd1\x8b\x8d\x39\x24\x57\x9e\x92\x3e\xf4\xdb\x8c\x36\x97\x5d\x17\x36\x2c\x7d\x4b\x16\x71\x6e\x2e\x10\xc1\xb4\xc6\x17\xba\xec\xc9\xad\xc3\x0a\xc4\xcc\x3b\x7b\x9d\x19\xc7\xb6\x44\xe5\x38\xeb\x64\x9b\xe1\x0c\xc2\x5a\x9c\x18\x33\xf9\xf0\x9b\x02\xdb\x1c\x6b\xd3\xa6\xf1\x81\x7e\xcb\x7f\x47\xb4\x30\xc5\x6e\xa4\x5e\xd1\xff\xbb\x97\x3f\xbf\x2d\xf9\x7e\x73\x04\xf6\xef\x7d\x40\xd1\xfd\xd6\x72\x51\xc8\x7e\x18\xc3\xfb\x56\xeb\xcc\xda\x3d\x70\xea\x4c\x2a\x2a\xb4\x29\x00\x7b\x22\xfd\xe4\xd8\x01\x70\x10\x4d\x10\x6d\x79\x95\x44\x8c\x51\x34\x30\x78\xd4\xba\x0d\x7f\x5f\x4f\xc6\xb7\xb8\x9c\x09\xb3\xdd\x81\x36\x4d\x3a\xa6\x74\x5e\x3d\xb2\xad\x9c\xc1\x8b\x6a\xd6\xa2\xc6\xe0\x0a\x93\x55\xc8\x0c\xf3\xf8\xdb\xea\xeb\x96\x8c\xe3\xb4\x33\x31\x95\x0e\x56\x6a\xef\x0a\x66\xa3\xca\xfc\xad\x51\xbd\x1b\xe7\x9d\x0a\x17\x6c\xf4\x1e\x1d\x59\x48\xce\xbb\x6f\x53\xde\xac\x8e\xde\x91\xad\x66\x73\xb9\x5e\x0c\x8d\x4d\xc3\xd9\xf4\xd5\x26\x2f\x8d\x26\xf9\xda\xf4\x5f\x1d\xc7\x74\xc7\xc5\xdb\x7a\x5c\xbe\x82\x15\x8c\x11\xb3\xc9\x29\xc7\xe1\xf6\x84\xd7\xd8\x14\x95\x32\xe2\x82\x43\x79\xad\xef\x16\xdb\xe3\x08\x81\x0e\xd6\x35\x85\x03\x78\x3f\xbf\x23\x56\x53\xe7\xc6\xf0\x5f\xbd\x72\x00\x44\xcb\x37\x09\x2d\x7f\x7e\x3d\x53\xaa\xbf\xf4\xff\x34\x83\xd5\x5a\x4a\xd6\x3b\x29\xf7\xbf\x7b\xc8\x3a\xe0\xc8\x9e\xd5\xfa\x77\x1e\x02\x45\xff\x19\x6d\x07\x60\xdb\x43\x9f\xf5\x4a\x03\xae\x88\x1c\x3a\xe1\xfe\x80\x8a\x24\xad\x28\xa4\x69\x5e\x6d\x4c\x50\xd0\x2b\x72\xe4\x3a\xeb\x83\x7b\x6f\xaf\x16\x36\x1b\xbe\x7f\x29\x2d\x74\x32\x13\xdc\x3a\xd0\x7a\x65\xad\x67\xcf\x5a\x0d\x2c\x7c\xeb\x51\x2c\x60\x34\xf2\x9a\xff\x3c\xd7\x5a\xb4\xc1\x60\x62\xce\x78\xc1\xec\x6c\x34\xc5\xf7\xc2\x58\x77\xe0\x09\xfa\x6e\x1a\x97\x71\xe3\x8b\x6d\x4b\x45\x89\x24\x53\xff\xce\xaa\x25\x52\x82\x8b\xe9\xc7\xfb\x07\x31\xc3\x31\xef\x4d\x7f\x35\x4b\x60\x4f\x46\x09\x9a\x2a\xd5\xdf\xc6\x99\x87\xb4\x99\xce\xd5\x5d\xc6\xd5\x06\x95\x9b\x6d\xbd\x1e\x86\x67\xf1\x4f\x31\x6b\xba\xd2\x8f\xf7\xf2\xcd\x35\xd5\xbc\xfc\x11\xd9\xeb\x61\x68\x1a\x7e\x91\x19\x71\x74\xed\x07\x50\x60\x58\x5d\x07\x85\x03\xf9\x3f\xfd\x40\xc8\xba\xd7\xfb\x4b\xff\x7e\xff\xcb\x75\xfa\xd1\x6a\x1d\x21\xfb\x21\xf4\x31\x00\xec\xc1\x50\x51\xb5\x33\x03\x46\xf0\x12\xe7\xef\xda\x4e\xd2\xb0\x42\xa1\xc2\xed\xe2\xbb\x44\x3b\x3d\x19\xd3\xce\x14\x09\xe4\xb4\x5d\xad\x67\x48\x40\x03\xae\x39\xb0\x23\xc2\xcb\xc5\x10\x5b\x9c\xb7\x2d\xee\x8e\xe5\x05\xcc\xef\x86\x9b\x09\xa1\x46\x36\x4b\xdf\xdf\x7d\x4e\xf1\xd6\x21\x2e\xbd\x46\x4f\x24\x4d\x51\xf8\x07\x9d\xa2\x9f\x99\x98\xa0\x18\x11\x5d\xd5\x4f\x78\xac\x48\xa4\xb3\xee\xec\xbb\x2e\xec\x8d\xb0\x49\xbd\xd6\x97\x57\x70\x9b\x42\x0f\xeb\xc7\xf4\xf0\xe2\x02\x83\x6a\xf4\x4a\x3a\x22\xf1\xca\x3e\xbf\xf4\x4b\xee\x6d\xc6\x9f\xf3\x1a\x33\x90\x6d\xba\x8b\xef\xf0\xbc\xad\x5f\x54\xaf\x8e\xd8\xb8\x8c\xeb\xf7\xdf\xbc\x8d\x14\x3a\xef\xd4\x67\xa8\x15\x46\x48\xf6\xfe\x7f\xf8\x81\x90\xe7\xdd\xe9\x2f\xab\x95\x72\xff\xfd\x01\x0f\xd5\xff\x87\x03\xa1\x7c\xff\x23\xfb\xc9\xfa\x17\x39\x27\xa6\x5d\x0d\x80\x95\x66\x77\xdf\xcd\x7a\x00\xa1\x6d\xc7\x2b\x2f\xca\x83\xb1\x7c\x8a\x44\x43\x4e\x03\x49\x43\xe7\x87\xb6\xee\xc9\x11\x42\xa7\x6d\xad\x6d\xa3\xf7\x51\xa4\xd2\xef\x93\xc7\x77\x47\x3a\x7c\x67\xe6\xdd\x00\x47\x8b\xb3\x78\x91\xaa\x8f\xc1\x43\x46\x02\xb8\x67\xed\x0f\x42\xa3\x74\xee\xe1\xca\x87\x7e\x84\x1e\xd0\x62\xc0\xe9\x63\xb3\x42\x83\x34\xd9\x71\xc3\x38\xe6\xc0\x32\x0d\x0d\x0c\x35\xae\xdb\xf7\x84\x46\xfd\xcf\x4d\x78\x05\xaf\x70\xcd\xd9\xcf\x85\x78\x63\xaf\x14\xad\xfd\x83\xb1\xf8\x17\xee\x12\x5a\x27\x5e\xc7\x21\xbc\x2e\x39\x5a\x93\xbd\x4f\x10\x7b\x67\x15\x6d\x91\xae\xaf\x48\x89\x63\xb0\x36\xcd\x23\x16\x04\x6f\x67\xa4\xd5\x79\x9f\x9e\xa0\x6f\x6d\xab\x35\xd9\x5c\x4b\xc8\xb0\xd4\x04\x70\xde\x4b\xf5\x17\x17\x57\xfe\x98\xea\x2f\xfd\x9b\x72\xff\xfb\x47\xd7\x9f\xeb\xff\x4d\xd6\x3d\xfe\x2f\x1f\x80\x6b\x09\x00\xd4\xd7\xa8\xa8\x2a\xda\x01\x04\xba\x99\xaf\xe7\x1f\x82\x2a\xb9\x9b\x42\x92\xc9\xb1\xa4\x69\xd4\x31\x45\xfd\x50\x17\xe2\x63\x6b\x1b\x23\x1a\xb7\x49\x42\xaf\x0f\xaf\x6d\x84\x1d\x3b\xc1\x31\xf1\x9c\x23\xce\xcc\x80\xb0\xab\xd8\xc6\x25\xd9\xe0\x09\xf2\xa1\x0e\xef\xea\xaf\x73\x03\x49\xe9\xa0\x77\xb7\xd0\xfc\x8a\x70\x7f\xd8\xe0\x81\xa8\xe1\x11\x46\x0c\xb5\xc7\x6e\x55\x3f\xa4\x0d\x39\xea\x54\xa4\x12\x47\x60\x47\xb2\xed\xbe\x2b\x93\x16\x1d\x90\x69\xeb\x4f\x2a\x13\x3f\x0a\x91\x29\x9b\x08\x95\xdd\xa3\xbf\x08\x91\xe6\xc9\x2a\xe7\x86\x77\x10\xce\x9a\xcd\xaa\x9e\x7d\x53\x4c\x28\x34\x67\x55\xdb\xf0\xa2\x80\x50\x65\xf6\x44\x65\xe1\xe9\x11\x22\xa7\xe1\x05\xb5\xc8\xae\xa3\x04\x8c\xf1\x22\x40\xb8\xcc\xdf\xfb\xe0\x96\xdd\x6a\xed\xbb\xb0\x5a\xc7\xbd\xa9\xfe\x97\x0f\x02\x59\xff\xec\xf3\x58\xad\xf7\xee\x90\xf5\x4f\x72\x1e\x08\x25\x07\xa0\x80\x0b\x40\x20\xe6\xc8\xad\x0c\x19\x18\x95\xad\xe2\xed\x38\x99\x0e\xda\xda\x76\x52\xd7\xfd\xb6\x93\x32\x2d\x32\xd5\xbb\x9c\x1a\x89\x63\x6e\x8e\x06\x4c\x56\x25\xc4\xf3\x27\x83\x4d\x3c\x8c\x97\x88\xfa\x67\x1b\xcc\xcf\xea\x5b\x13\xe9\x2e\x1b\x5a\xb6\xa3\xbe\x13\xe6\x6e\xa3\xac\x8c\x35\xda\x09\x95\x3d\xcf\x6d\x44\xd7\xb8\x87\x07\x84\xec\xc5\x9f\xd6\xac\x14\xee\x61\x2d\xef\x62\x2b\xc1\x8e\xa8\xa5\x27\xa6\x40\x3b\x2f\x40\x34\xd6\xfd\x2a\x7f\x64\x6a\x88\x58\xa5\x6d\xa0\xb0\xef\x6b\x23\x31\x13\xf5\x5c\x21\x7a\x24\x8c\x78\x01\xe5\xa0\x10\xf8\xae\x83\xd8\xaa\xbd\x47\x21\xa9\xff\x10\xf1\x85\x96\xea\xfa\x7b\x01\xe5\x3c\xec\xb2\x5e\xad\x9f\xc9\x73\x80\x84\x5e\xae\x0b\x7a\xff\x9b\x83\x7a\xc0\xf9\xb7\xfe\x59\x56\xbf\x5a\xb3\x29\x79\x08\x7e\x00\xfc\xc8\x61\xba\x53\x9b\x00\xa4\x4f\x1d\xcf\x0e\xe1\x80\x72\xcd\x12\x61\x1f\xf7\x8f\x40\x63\x26\x25\xef\x6e\xc7\x47\x2a\x72\x9a\x54\xab\xb2\x78\x4b\x92\x08\x53\xd2\xa1\x37\xbc\x4b\x12\x48\xfb\xa0\x93\xa1\xb7\x8f\x44\x53\xe0\xa1\x67\xac\x0d\xc4\xbe\x2b\xd4\x06\x6d\x1a\xaf\x88\x15\x0d\xe5\x46\x3b\x55\x0f\x13\x2f\x74\x6b\x1b\x06\x29\x5d\x26\x26\x8d\x70\x1a\x96\x2a\x10\x88\x29\x73\xaa\x06\x0b\xff\xe6\x5c\xc8\x72\x90\x4e\x93\xd8\x54\x3d\xa4\x73\x08\x8d\xa4\x04\x85\x0a\xe9\x5b\x0b\x04\x92\xaf\x62\xb2\x74\xcc\xaf\x4c\x52\x84\xc2\x27\x69\xeb\x6f\x22\xa4\x34\x85\x4d\x52\x37\x3e\xf7\x90\x6e\xcb\x36\xad\xef\x83\x07\xe4\xf7\xc5\x61\x97\xd5\x8a\x75\xa0\xfa\x5f\x1c\x10\x79\x1f\xb4\x93\xfd\x00\x6e\x05\x90\xf5\x4f\x0e\xb2\xfe\x4b\x5e\x7f\x42\xc3\x6a\x3d\x15\x05\xc0\xf9\x7a\xcf\x58\x44\x01\x80\x54\x27\x6b\xbf\xaf\x1c\x7c\x53\xab\xe1\x15\x70\x16\x80\x08\x43\x44\x4c\xd3\x7a\x0f\x09\xeb\x50\xa5\x20\x6d\x22\x4c\xc2\x05\x28\x29\xa0\xf5\x55\x48\xaf\x4f\xd1\x28\x7f\xd0\x71\x22\x35\x66\xa2\x55\xe3\xb4\xfa\x48\x69\x45\x69\xea\x33\xea\x26\xa4\xc0\xab\x47\x34\x6a\x55\xe9\x49\xa2\x4d\x62\xda\x8e\x14\xee\x41\x9e\x97\x64\x35\x58\xa7\x4e\x90\x2b\x24\x49\x4c\xbe\xd5\xcc\x97\x8d\x26\x45\x10\x8b\xd4\x52\xd7\xb8\x8f\x5a\x38\x42\x6a\x93\x6d\x16\x27\xc1\x79\x50\x11\xdb\x2f\x56\x07\x42\x10\x29\xd4\x24\x92\x83\xcd\x80\x5a\xfe\x6c\xb1\x8c\xd9\x22\x30\x11\xd9\x00\x50\x0f\x7f\xcf\x81\xf9\x1b\xcb\x15\x4f\xd6\x33\xc7\xc9\x3e\x06\xaf\x27\xff\xd6\x3f\xef\x90\x75\xe0\x4a\xf2\xbf\xe7\xf7\xfe\xad\x7f\xaf\xf9\x40\x78\x03\xb0\xeb\xee\x0c\x0c\xa0\x06\x90\x0c\x67\x6a\x76\xa5\x03\x50\x6e\x62\x57\xb7\x65\x85\xa7\x7a\xfa\xfc\x92\xa6\x49\x10\x6f\x1d\x29\x2a\x6b\x30\x0a\x9e\x5e\xa6\x12\xda\x14\xdf\x07\xed\x4b\xc0\x95\xf8\x4b\xf6\xa9\xfa\x26\x50\x3d\x7d\x42\x3a\x4d\x75\x14\x36\x14\x5b\xcb\x63\x94\x1b\x49\xc3\xd5\x6c\x4a\x6c\xff\x72\x0f\xff\xe6\x5c\x48\x7d\x26\x61\x17\x9c\xe4\x85\xff\xf5\x79\x10\x93\x86\x8f\x90\x2d\x18\x24\xc2\x0c\x00\x43\xbc\x3a\xc2\x4a\x00\x80\xe6\xd6\x04\xe8\x9d\xfe\x73\x0e\x52\xf4\xef\x09\x32\xef\xb5\xc6\x01\x91\xcf\x45\x4a\x1e\xca\xbf\x3e\x08\x19\xe4\xbe\xac\xf9\x40\x90\xf7\x8f\xa3\x03\xc0\x96\xef\x54\x54\x6e\xca\x00\x27\x0a\xe8\xbd\x1c\x59\x00\x14\x46\x98\x27\x2c\x25\x00\x8b\xda\xcc\x59\x66\x98\x0a\xbd\x66\x65\x7c\x4d\x7a\x3b\xe1\x96\xeb\x51\xc1\x62\xed\x12\xa8\x0a\x30\x13\xe6\xd2\xa2\x82\x84\x68\x03\xb1\x32\xd5\x57\x90\x9d\x8c\x88\x56\xa9\xd8\x80\xd7\x59\x2a\x89\x60\xa5\x74\xd0\x2d\x39\x23\x15\x44\xe1\x1e\x64\xbf\x80\x42\xc3\x16\xa9\x5a\xe9\x01\x50\x7c\xe8\x2f\x25\x27\x89\x06\x8d\x17\xef\x24\x13\x25\x6f\x82\xe8\x88\xa8\xd4\x6b\xc9\xcd\xa0\x3c\x69\x22\xa5\x24\x8e\x86\x38\x8c\x96\x38\xad\xd8\x37\xe8\x84\x20\x61\x6e\x0a\xff\x21\x6c\x06\x00\x0b\xdc\x11\x00\x5f\xeb\xfe\x9c\x83\x3f\xc9\xdf\xeb\x1a\x07\x44\x20\x73\x30\xf6\xe4\x73\xe0\x5f\x1f\x04\xf2\xbe\x39\x45\x9e\x17\xc1\xef\x57\xab\x6b\x07\xb9\x56\x03\x30\x89\xd0\x48\xdb\x77\x01\xf0\xab\xec\xf6\x34\x07\x00\xe9\xc7\x07\x4f\x1a\x9d\x01\xd0\x38\xcd\xaa\xa2\x53\x0c\x60\x58\x77\x5c\x00\x55\x06\x93\x76\xd4\x3c\x07\xb4\x0f\xc2\x63\xef\xf9\x13\xb2\xea\xb1\xf0\x24\x54\xf5\x04\xa7\x6a\x2b\xdc\x8d\x55\x17\x9c\x57\x8a\x81\x8e\xe4\x7b\x27\xaa\xe4\x9f\xc1\xc3\x9c\x0f\x27\xfa\xd6\xb8\x07\xb2\xdf\x83\x74\x16\x64\xdc\xfc\x25\xb2\x24\x19\x09\xb9\xad\x96\xc2\x24\x71\x12\xe4\x3f\x51\x10\xee\x14\x7b\x08\x25\x6f\x8c\x85\xf9\xc4\x62\xa0\xe8\xcb\x21\xe1\x5f\xa2\x9f\xe0\xce\x2f\x47\xa1\x02\xd1\x7a\x78\x8b\x2d\x14\x94\x14\x95\x00\x80\x06\xfe\x29\xca\x1c\xa4\x9c\x83\xef\xc9\xbe\x37\x14\x0e\xa8\x65\xcb\x6a\xad\x26\x73\x52\x94\x3c\x94\x35\x0e\x86\xfc\x3c\x44\x90\x7d\xc5\x28\x3e\x10\x76\xc7\x01\xa8\xac\xa8\xa8\x1c\x36\x00\x30\xd5\xd0\x70\x5a\x6e\x04\xe0\x79\xb5\xb3\xc4\x98\x0f\x40\xd4\x6d\x6f\x39\x85\x7f\x40\x35\x01\xe8\xb4\x1d\x3b\xa2\x99\x08\x60\x59\xca\xde\xaf\xce\x01\xe0\xd4\xc0\x61\xa7\x12\x0e\xe0\xf3\x88\xb3\x4e\x85\x13\x16\x42\x18\x78\x9c\x15\xef\xc1\x74\x8c\x29\x2f\x8f\x3c\x0d\x2c\x24\x6f\xe2\x29\x90\xb9\x04\x3f\xcf\x7c\xe5\xcd\x90\x2a\x86\x5f\x45\xc9\xbc\xac\x52\x83\xd0\x5d\x31\x25\xf0\x50\x22\x07\xfa\x6b\x84\xf9\x7d\xc5\x8b\xe1\xc9\xdd\x5d\x02\xd9\xa2\x37\xe0\xed\xc3\x5d\xfc\xc2\xa2\xdb\xe1\xd5\xd3\x69\xfe\x0a\x11\x19\x78\xf7\x8e\x9e\xdf\x5b\x98\x03\xe6\xbe\xb2\xf0\x3e\x16\xee\x87\xd9\xe9\x2a\xbe\x09\xca\x39\xf0\x7f\x71\x40\x37\xc8\x7c\x03\x25\x0f\x25\x8f\x9c\x97\x95\x8a\x59\xad\x51\x64\x1e\xca\x9f\xfc\xfc\x38\x65\xfc\xcd\x81\x68\xe9\xac\x56\xa5\xcf\x00\xdb\xe7\xa9\xa8\x50\xa3\x00\x27\x7a\x77\x29\x69\x69\x03\xc8\x79\xef\xdf\xa5\x11\x00\xa0\xa1\x74\xc4\x4a\x2d\x0e\xc0\x58\x9e\xd9\x5d\xf9\x17\x80\xcd\x47\x96\x5e\xe5\x53\x00\xae\x29\x6c\xad\xca\x8c\x00\x7e\x7a\x1c\xdd\x0a\xd2\x00\x61\xb6\x1c\x45\x72\x36\x00\x31\x2d\x9c\xbb\x65\xee\x02\x24\x93\x38\x27\x24\xeb\x01\xb2\xb8\x39\x36\x4b\x34\x01\x14\x65\x70\xb9\x8b\x65\x03\x94\xf6\x73\xf4\x88\xe6\x02\x5c\x8d\xe1\xec\x14\x09\x00\xb8\xf5\x8a\xeb\x90\xf0\x77\x80\x16\x4d\xae\x2f\xc2\x23\x30\xdb\xf1\x90\xe7\xb4\xf0\x0e\xc0\xf4\xc6\xf0\x50\x0b\xc5\x01\x61\x20\x84\x9b\x34\xba\x0b\xfe\xbf\x1c\xd0\x25\xf2\x79\x70\x8e\xcc\xfd\xa4\x93\xb9\x28\x0a\x07\x13\x44\xee\x97\x7b\xc5\xdf\x1c\x88\x7e\xe3\x6a\x55\x21\x9f\x2b\x12\xcb\x7d\x0c\xa5\xa2\x52\xff\x09\xc0\x53\xbb\xbd\x41\x29\x1b\x40\xbc\x99\x0e\x2b\xcf\x00\x20\x1f\x48\x2f\x23\x97\x0d\xa0\x7d\x64\xbf\xb8\x5c\x15\x80\xf1\xdc\x21\x39\xe9\x5b\x00\xd6\xe7\x0e\x89\xc9\x15\x03\xb8\xee\x3d\xda\x26\xfb\x15\xc0\x97\x9a\xe5\xb6\xf4\x55\x80\xd0\x36\x56\x59\xa9\xc3\x00\x27\x37\xb1\x26\x49\x38\x02\x24\x8a\xb3\x36\x4a\x6c\x01\x48\x0f\x60\x3b\x28\x56\x06\x90\x0f\xec\x69\x62\xca\x00\x17\x6a\x8f\x67\x8b\xb4\x03\x54\xd0\x1c\x57\x16\xde\x00\x70\xdd\x85\xbd\x50\x38\x12\xa0\x31\x85\x33\x46\xb0\x0b\xa0\xd5\xea\x78\xe1\x09\x15\x80\x4e\x03\xf6\xe8\xe5\x4f\xa9\xb6\x77\x55\xcf\xfa\xdf\x1c\xc4\xf1\x37\xb2\xf2\x5b\x8e\xad\x73\x10\xb2\x71\x0a\x89\x7b\x7b\x00\xd4\xd9\x55\x63\x0e\x1f\x05\xd0\x1b\xd4\xe4\x60\x09\x01\x30\x0a\xd5\x9b\xe7\x2a\x01\x30\xfb\x68\x76\x5d\x64\x11\xc0\xe2\x84\xc3\x7e\x59\x14\x7c\x37\x77\xf4\x25\xa8\x15\x41\xa5\x29\x6f\xf4\x67\x9d\x32\x30\x31\xac\xce\xce\x32\x8e\x22\xb5\xe9\xd7\x97\xcf\xd8\x06\x92\x62\x51\xa5\x77\x7c\x1d\x92\x88\xb3\x5a\x51\x5d\xcc\xee\xca\xc4\x45\xf5\x8d\xef\x96\xdc\x42\x89\xbf\x55\x42\x7f\x8e\xb8\x29\x13\x1f\x2b\xdf\xc1\x0b\x7b\x88\x92\x5c\x95\xf6\x21\x6c\x0e\x37\x49\x03\x0a\xaf\x91\x5e\xeb\xad\x98\x73\x0a\xc5\x84\x1d\x96\x1b\xa6\xf0\x8a\x0e\x84\x03\x96\xf2\x63\x97\x14\x5f\x11\x94\x2c\xb8\x3e\x16\x2a\xf1\x12\xdc\xcc\xb9\x06\x0a\x94\xbe\x11\x32\xcc\xd4\x5e\xd1\x29\x29\x12\xf0\x86\x0b\x4f\x07\x94\x07\x08\x23\xc6\xed\x4f\x98\x94\x8d\x88\x3c\x06\xd9\x8f\x52\x94\x5b\x89\xda\xfa\xa1\xf7\xf8\x95\xc7\x88\xf1\xba\x2a\x7f\xf5\x61\xe5\xf7\x37\xea\x64\x69\xd3\xe5\x7a\x78\x46\x66\x64\x83\xe8\xba\xfe\x2f\x16\x21\xab\xb4\x4b\x18\x40\x8e\x4e\xce\x64\x6f\x12\x80\x46\x84\x12\xc3\x41\x36\x00\x03\x6e\x8d\x00\x16\x67\x00\xd3\x1e\xfd\x61\x5e\x9b\xf5\x3e\x58\xce\xda\xbd\x93\xfb\x01\x4b\xe6\xd7\xbd\x7e\xa8\x5c\x87\x62\xd3\x85\xa8\x0f\xba\x06\x70\xd0\xf8\x41\xd6\x07\xf3\x7c\x52\x8d\x41\x6d\xd9\x36\x3b\x6f\xd2\x41\xdd\x96\xdb\xe9\xae\x44\xe2\xb8\x96\x60\xb7\xaa\x7b\x27\x31\x56\xbd\x6f\xf8\xb7\xf7\x3d\xa2\x93\x6a\xfe\x74\xaf\x4f\x00\x85\x7f\x21\x71\x2a\x35\xe3\xbb\x9d\x2f\x13\x26\x15\xad\x90\x33\xb6\x2c\x73\x9f\x15\xa7\x91\xcb\xb6\xf4\x13\x67\x94\x6e\x23\xed\x36\xad\x5f\x94\x94\x7c\x08\xec\x96\xbe\xc3\xee\xca\x27\x08\x62\x96\x8a\xaf\xa3\x54\x4e\x12\x54\x2c\x5d\x9e\x0d\xa9\x14\x13\xd2\xcd\xa9\xbb\x63\x54\xbe\x12\xee\x98\x5e\x7a\x7c\x58\x85\x86\x28\x64\x90\xf6\xf0\x88\x0a\x8a\x28\x6d\xa0\xd6\xaa\xaf\xaa\x4c\xd4\xd5\x7f\xfd\x67\x1f\xfe\xd6\xff\x29\x3e\x08\x3c\x0a\x52\xbb\xb7\xe6\xfe\xc1\x41\x9c\x95\x75\xa5\xd7\x07\x40\xb1\x29\x04\x1e\xe4\x06\x30\x62\x55\xdf\xc7\xb2\x01\xc0\x3c\x57\xa7\x83\x8b\x00\x60\xd9\x6e\x62\x25\xbc\x04\x60\x7d\xdd\xe6\xb6\x7c\x17\x74\x58\x61\x3c\xfb\x35\x8d\x20\xd0\xe2\x40\x64\xb3\x41\x06\x6c\x31\x19\xc8\xd4\xb6\x68\x21\x65\x18\xea\x94\x79\x39\x98\x93\xb6\xea\xe2\x6f\x17\xb9\xf5\x12\x53\xb4\x2b\x9f\xa4\xf9\xf0\x10\xcd\x34\xc4\x46\x04\x7c\x63\x88\xc6\xaa\x96\x73\x1e\x3e\x38\xe2\x29\x15\x4d\xdc\x1b\x2f\x22\x89\x4e\x09\x8d\xaf\x74\x69\xc3\x8e\x2a\xe5\x20\xbb\x1d\x4b\xa7\x0f\x28\x73\x20\x5a\x0e\xa1\xe3\x1b\x54\x76\x20\x76\x0e\x8e\x23\x9e\x2a\x0f\x90\x42\x3b\xe8\xbf\xa3\xb6\x13\x29\xb2\xcf\x7b\x69\xa2\xfa\x05\x99\xb5\xb9\xfb\xf4\x8e\xda\x26\x82\x82\xd5\xd1\x0e\x82\x5a\x3f\xc1\xd6\xd2\xb6\x7d\x42\xf5\x26\xe1\x87\xf1\x64\x9b\x8e\xda\x77\xc2\x67\x93\xea\xc6\x47\xea\x57\x88\x9b\x8d\xfd\xfe\xdc\x0f\xab\xfe\x28\x6b\x7d\xb8\x29\xc2\xf4\x27\x07\x41\xe9\x83\x6a\xa3\x14\xec\xad\x5f\xe7\x41\x8c\xfd\xd5\xde\xb1\x98\x00\x58\xef\xd6\xd6\xe5\x3a\x0a\x60\x23\x62\xbc\x20\xba\x05\xc0\x86\xc1\xfa\x9d\x7c\x23\x34\xdb\x44\xb8\xc7\x69\x4e\x81\x95\xe5\xa1\x48\x47\x23\x05\x52\xab\x39\x75\xe6\x26\xdb\x38\x92\x98\xb1\x42\x69\x9f\xcb\x22\xf1\xa6\xfe\xde\x3b\xcf\xbc\x69\x89\x11\xda\x0e\x3d\x39\x3e\x2d\x84\x9f\x1a\x35\x9f\x39\x02\x5f\x10\x16\x54\x5f\xa0\x99\x03\x7a\x28\x7d\x20\xfe\x56\x56\xc5\x87\xba\x09\xa2\xa3\x95\xa3\xf0\x77\x5d\x6e\x4d\x0c\xab\xd4\xe1\x47\x5c\x02\x47\x97\x54\x15\x91\x6d\xce\x11\xef\x93\xd5\xe8\x10\x55\x27\xd6\xd7\x29\x6a\xf1\x48\xbe\xfd\xd7\x67\x5c\x6a\x4d\xc8\x6f\x5b\xba\x8e\xcf\x1a\x1c\x08\xde\x56\xf8\x61\x80\xfa\x0b\x82\x81\xd5\xf1\x7b\x37\x35\x68\x08\xf1\x16\xa9\xcd\x12\x1a\x7c\x84\x76\x33\xd5\x06\x4e\x8d\x1c\xc2\x84\xc9\x3b\xf8\x0f\x17\x44\x9d\x27\x96\xf7\x3f\x39\x08\x94\xb8\xe7\xae\x9d\x00\x6a\xa9\x92\x57\xf6\x1e\x04\x30\x52\x95\x53\x39\xf8\x12\xc0\xf2\x91\xb2\x1c\xf3\x39\x00\xbb\xbb\x9a\xbb\x38\xc3\xd6\x73\xa4\xec\xc5\xac\xf9\x14\x85\xa1\xd4\xae\xd7\xd5\x06\xb5\x09\xd8\xac\x3b\xc3\xb3\xcd\xa8\x48\x69\x96\x3b\xd2\x48\x0e\x81\x24\x6a\x93\xf0\x52\x0e\xf7\xcb\x6b\x9c\x18\x03\x2a\xe4\xa9\x60\x00\x96\xd0\xae\x31\x30\x5a\x1d\x1c\x48\x08\x52\xcb\xc4\x04\x87\x9e\xa5\x70\x51\xc8\x27\x15\x29\xdc\xbc\x97\xe0\x4c\x85\x2a\x2f\x9e\xcf\xd3\x65\x9c\x56\x4d\x17\x6f\xec\x41\xfc\xe0\xa8\x36\x8c\xaf\x72\xa7\x79\xbb\x4b\xbd\x06\x3f\xef\x2a\xf5\x6c\x5a\x63\x1a\x39\xec\x92\xd6\x4d\xa7\x31\x85\xc4\x3a\x46\x3d\xbe\xab\x71\x1b\xf9\x66\x77\xf8\xc1\x3e\x4d\x43\xc2\x76\x5b\x5a\x0a\x0f\x55\x3f\xac\xf9\x9a\x50\x6e\xfe\xbb\xce\x4a\x4b\x82\x30\x66\x1a\xb2\x3e\x17\xa8\xe2\xa5\x0b\xff\xd4\xff\x29\x1c\x84\x20\x9d\x68\xf9\x76\x3d\x00\xd9\x62\xd1\xb1\x9d\x00\xa0\x7d\x51\xe2\xf2\xde\x76\x00\xe3\x64\x69\x9a\xfd\x8f\x96\xbf\x77\xc5\x4d\x47\x7d\x01\x1c\x16\x35\xdc\x38\xfb\x00\x9c\x6d\x0d\xde\x8b\x26\x00\x38\x21\x96\x55\x8a\xc3\x10\xee\x18\xe0\x6c\xa7\xfb\x0c\x36\xd9\x5e\x0f\x3d\x65\x8e\xa6\xf4\x81\x88\x33\x69\x2c\xf9\xe9\xb1\x6f\x8d\x13\xbb\xa5\xc3\xf6\x8c\x25\x64\x86\x20\xaa\x59\x3e\xa6\x10\x11\x47\x60\x57\xdf\x8a\x79\x1f\x61\x44\x58\x54\x0d\xc1\xd1\x04\x5c\x41\x37\xa8\x96\xe0\xbc\xfd\x7c\xa6\xb0\x6a\x49\xb8\x22\xdf\xaf\x5f\x76\xaa\x0b\xe2\x8f\x7a\x0d\xbe\xdf\xa8\x11\x89\x57\xf3\x72\x79\x7d\x48\x03\x83\xbf\xea\x3e\xfa\x94\x5d\x6b\x23\x7e\xda\x4d\xf9\x31\x56\xeb\x34\xa2\xec\x3c\x76\xff\xb2\xd6\x35\xe4\xba\x43\x65\x4b\x87\x56\x3e\x42\xb2\x1d\xac\xef\xd3\x3e\x4f\xe0\xb6\xb9\x56\x37\x85\xa2\x23\xb8\x5b\xe5\xd4\x86\x6a\x47\x13\xaa\x2c\x56\xd2\x64\x65\xdb\xa8\xfe\xe0\xa3\x28\xfa\x3f\xc5\x07\x41\xe8\x96\xb0\xdc\xf6\x5c\x00\x65\x94\xd8\x56\x3a\x8d\x75\x0e\xc2\x0c\x27\x61\xcd\x70\x1f\xc0\xbe\x4c\xe1\x34\xb3\x26\x80\xcb\x1d\x0d\x16\x6e\x25\x00\x37\x69\xdd\xcf\xc2\x7a\x00\x6e\x54\xe6\xcd\x8a\xa2\x6b\x3e\x52\x58\x7b\xb7\x20\x3f\x8b\x64\x92\xba\xb5\x60\xaa\xbf\x0b\x2d\xf1\x94\x39\x7f\xf1\x4b\xdf\xa7\x6b\x9c\x58\xa0\x4e\x4e\x1f\x77\xb8\x0e\x61\xbb\x66\xe6\xb7\xc1\xc8\xaf\x6b\x5c\x14\x99\x0f\x9b\x7b\xab\xf6\x1b\x3b\x18\x54\xff\xfd\x99\xfa\x2b\x9c\x66\x40\xfa\x08\xa2\x19\x8e\x73\x0b\xc8\xec\xb7\xd0\xd2\xc3\x0d\xf9\x22\x14\x7f\xa4\xae\x97\xda\x29\xf8\x2b\x1e\xc3\xed\x7c\x28\x36\x64\x9b\xdb\xe1\x56\x2e\x54\x1f\xa2\xea\x12\xd7\x44\x8d\xda\x86\x74\x3b\x30\xdc\xb2\xd2\x39\x4e\xa0\xb6\x0b\xa8\xcd\xd0\x39\x4a\x90\xb5\xb1\xbb\x76\x5a\x27\x91\x90\x64\xf9\xfe\xbf\xf3\xf1\x5f\x1f\x04\x11\x35\xe1\x5e\x5a\x49\x00\x95\xa3\x22\xc7\x77\x05\x00\xe8\x77\x8b\x4a\xed\x79\x01\x60\xe5\x23\x96\xc0\xa0\x02\xe0\x5c\x27\x4f\xcb\xac\x07\xe0\xce\xad\x2e\xc7\xed\x0a\xe0\xd5\xaf\x2b\x24\xca\x00\xe0\x21\x62\x56\xa0\x78\x18\xdc\x5d\xea\x1d\x4d\xf4\x39\x48\xb5\x8e\x98\xc0\x67\xb6\x92\xa4\xbd\xb6\x8c\xc9\x09\x6e\x6d\x44\x7b\xf3\xfb\xc5\x1d\xfe\x7a\x6b\x9c\xd8\x07\xdd\x4b\xcf\xdb\x4e\x9e\x43\x02\xb4\x78\x27\x77\xc6\xfe\xa0\xf4\x01\x5b\xa8\xbe\x0d\xcb\x13\x56\xf0\xcb\x46\x43\x09\x1b\x1e\x5a\xf6\x85\x59\xf3\x0b\xb6\x3c\x34\xfc\xdd\xb4\x36\x2b\x6e\x67\xb0\xdb\x8b\xe7\xa8\x03\xb8\xc8\xc0\x03\x3d\x73\xa8\x0a\xdc\x47\xbf\xdb\x8f\x75\x74\x74\xf1\xda\xde\xf8\xfb\x2f\x75\x38\xf0\xcf\x3d\x44\xee\xbe\xd2\xf5\x43\xb6\xba\x3d\xbd\xdd\xa0\xb7\x0d\x31\x76\xb9\x7c\x23\x5e\x4f\x0d\x69\x73\x34\xbc\x7a\x43\xef\x32\x61\x87\x5d\xc9\x95\x09\x3d\x31\x82\x9e\x8d\x20\xfc\x87\x8f\x5a\xd3\xff\xff\xf1\x41\x50\x3f\x29\x94\xb2\x4b\x16\xc0\x38\x54\xf8\xfe\x9e\x1b\xeb\x3c\x88\xab\x8d\x94\x2e\xa3\x1f\x80\xf7\x90\x22\x1c\x8f\x02\xf0\x99\x40\x6d\x16\x36\x00\xf0\x15\x33\x55\x54\x6a\x5a\xf3\x4f\x3a\xe5\x82\xf8\x2e\xd8\x47\x13\xe7\xec\xb9\x12\xf4\x3d\xac\x88\x07\x2d\x3f\x17\xe1\x83\x7c\xd7\x38\x31\x67\x3d\xbb\x97\xc7\xe2\xf3\xf1\x43\x5a\x29\xd3\x3b\x13\xdd\x29\x7c\xd8\x7c\xa7\xc6\x0b\x8c\x7d\xf4\xd8\x44\x9a\x16\x3d\xe6\x51\x54\xf8\x30\xa2\x5d\x86\xd5\x89\xd8\xff\xa6\x46\x87\x1d\x1b\x1e\x5e\xf3\x4c\x58\xe7\x19\x8e\x2e\x44\x87\x92\x97\x76\x5f\x47\xaf\x02\xf7\xd5\x3f\xb8\x69\x4a\x6f\x08\xef\xe9\xdd\xdf\x60\xab\x57\x89\xff\xe0\xe1\x71\x63\x9f\x01\x1d\x22\xe3\x3a\x70\x3d\x59\x5f\x06\xa9\x70\xb2\xbd\xf2\xcb\x40\x0e\xe9\x72\xf4\xb8\xc4\xa8\xdf\x43\xd0\xb7\x89\x5a\x39\x27\x18\x56\xfb\xb0\xaa\xff\xef\x0c\x17\x58\xf9\xfd\xfa\x5f\x1f\x04\x6d\xd1\x13\x93\xbb\x76\xaf\x73\x10\x94\x7c\x10\x2f\x4b\x89\x24\x46\x2d\x00\x3f\x2f\x79\x7a\x36\x45\x80\xe0\x4b\x9a\xb2\xc2\x1c\x00\x81\x35\x86\xae\xf2\x37\xc1\xc6\xf7\xae\x6d\xa3\x21\x0d\xc9\xca\x3d\xd1\x6b\xca\x31\x9c\x98\xe5\xf8\x29\xbe\xd6\x57\x98\x70\xd6\x86\xae\xc8\x22\x7c\x02\xa9\x37\x3d\x54\xff\x39\x8e\x07\x3f\xa6\xbf\xf9\x55\x6f\x52\x1a\x6e\x41\x5b\x6f\x36\x3a\xfd\x29\xee\x9a\xa6\xe6\xd2\xd1\x04\xcf\xa9\x3b\xda\x9b\x96\x12\x4f\x39\x7c\x7a\xa5\xc3\xb9\xd4\x1d\x3f\x39\x60\xa8\xcb\x89\x49\x8c\xf1\x7a\x76\x42\x6f\x0a\x33\x17\x5d\xdc\x11\xa4\x7f\x0b\x7b\x31\xfc\xd5\x9a\x3f\x92\x95\xa1\x1c\xae\x2a\xb0\xf1\xce\xbc\xc1\x10\x5e\xd2\xb7\x8e\xc2\x43\x5d\x7b\x64\x14\x8b\x7f\xee\x79\x9f\xc2\x43\x5d\x7a\x64\x14\x8a\x64\x3a\x3f\x2c\xfd\x6c\x54\x8b\x7c\x70\xdc\x0b\x7f\xf0\x51\xab\xfa\xff\xbe\xcd\x02\x2b\x3a\x1d\x25\x07\x81\xe2\x83\xa0\xe7\x28\xc0\xb6\xb3\x7f\x9d\x83\xa0\xf8\xa3\xf8\xd9\x88\x6e\x3d\xc4\x0f\x10\x5a\x24\x43\x77\x2c\x16\x20\xc2\x50\x9d\x47\xe8\x06\x40\x84\x85\xde\x0f\x05\x76\x08\x0a\x6e\xb3\x52\xd4\xff\x49\x3a\xe8\x39\xe5\x19\xe4\xf2\x8b\xc8\xe7\x7a\x28\xc6\x2c\xd0\x8a\x70\xc2\x76\xac\x70\x63\xf4\xc5\x35\x3e\xea\xab\x01\xf5\xdb\x93\x99\x8d\x38\x63\xed\xe2\x85\x97\xd9\xfd\x73\xa6\xda\xa9\x68\xe9\xd4\xba\xaf\x79\x3a\xf7\xd1\x0f\x53\x78\x07\x59\xf5\xcd\xd0\x1d\xa9\x5b\xfa\x3e\x18\x24\x2d\xb5\x25\x14\x3c\xe1\x35\x98\xc6\xe4\xc5\xca\x3e\x90\x34\xb2\xc1\x6e\x3b\x49\xdd\x5c\x6f\x44\xc2\x9e\x8e\x64\x5c\xf3\x47\xda\x63\x32\x86\x4b\x0e\x76\xba\xb6\xc7\x18\x8d\x77\xf4\xe5\xa3\xf0\x50\x65\x7a\xa6\x03\xf8\x49\xcf\xd8\x92\x3b\x26\x13\x88\xad\x6b\x4d\x91\x95\xe9\x1d\xa4\xc8\xf9\xdd\xfa\x7e\x58\xd3\xff\x7d\xf8\xda\x37\x31\x00\x88\xd8\xf0\x2b\x6d\x25\x02\x28\xc7\xf1\xb4\x6e\x3f\x02\x60\x9a\xca\xfd\x76\x47\xdc\x3a\x07\xe1\x4d\xc3\x7f\x7c\x6f\x36\x40\x48\x9d\x50\xd5\xc1\x2c\x80\x18\x75\x89\x0b\xac\x8c\xeb\xf9\x49\x71\x38\x5d\x7a\xa5\x1d\x90\x1d\x3d\x68\xfa\x49\xcf\x86\xc4\x1b\xa4\xe1\x32\xe2\x92\x4d\xe8\xf2\x08\x8f\x1c\x0a\x4d\x41\x7c\x1c\x63\xf3\xe6\x12\x9c\x70\x58\x4b\xe5\xfa\xb6\xac\xeb\xd8\x4e\x43\xc6\xc1\xc8\xdc\x35\x1e\x68\x1c\xd1\x9b\x5d\x08\x38\xbb\xe3\xbd\xa4\x41\xdb\x62\x42\x36\x5b\x9f\x9a\xd1\x10\x5a\x37\x43\xa0\x03\x6b\x92\x8a\xee\x4b\x53\xbf\xf7\xcc\x94\x7f\xa9\x3d\xb1\x81\x92\x13\x46\xf1\x05\xba\x9e\x6b\xd6\x80\x25\x84\x8b\x51\x7c\x81\x2e\x25\x9a\x6b\xe0\xb7\x06\xa8\x97\x6e\xb1\x50\xc2\x6b\xf8\x55\x51\x38\xa0\xc2\x61\x73\x05\x44\xc2\x5d\x21\xb7\xc9\x7c\x18\x29\x76\xd9\xbe\xbe\x1f\xd6\xf4\xff\xc3\x5c\xbf\x37\x19\x02\x88\x35\x70\x6b\x6e\xe9\x00\xd0\x2a\xe0\x1c\xdc\x76\x6b\xdd\x07\x61\x8d\x83\xe8\xe4\xde\xbf\x7b\x18\x20\x46\x91\x57\x6e\x9f\x0b\x40\xf2\xbc\x70\x1e\xd3\x20\x40\x26\x9b\x0c\x81\x37\x01\x20\x6d\x54\x33\x5f\xfe\x22\xa4\xa6\x38\x1a\x31\xe9\x1b\x92\xe8\x4f\x6e\x75\x18\x75\x33\x21\xec\xf2\x63\x0b\xd9\x75\x52\x1b\xef\xe9\xfa\xf1\x8c\x6a\x86\x39\xb6\xc5\xfa\x77\xbd\x4a\xfe\x2b\x0c\x8d\x91\xc3\x07\x9b\x92\x90\x5f\xef\xf5\x61\xb6\xb8\xf8\xc3\x10\xbd\xf1\xf3\xb9\x7b\x45\xf0\xec\x81\x19\xf3\x02\x75\xfe\xe3\x35\x0e\xe6\x89\xc5\x69\x34\x63\x96\xe3\xed\x47\x56\x56\xe8\xc9\xb4\xe9\x1a\x46\x2b\x27\x8c\x50\x82\x4d\x65\x9d\x35\x1a\x73\x21\xde\xfc\xd2\x37\xeb\x9d\xd8\xd8\x28\x62\x69\xaa\xb5\x01\x6e\x7f\xb8\x5e\x71\x90\x55\x04\xae\x29\x08\x7b\xee\x83\xb5\x1b\x9e\xcf\x7f\x38\x17\x6d\x6d\x8c\xcf\xf7\x79\x91\x43\x67\x3d\x8c\x9f\xf4\x52\xcd\x3e\x60\xb5\x88\xb8\xb8\x09\xaf\xef\x07\x8a\xfe\xcf\x95\xcb\x65\xb8\x79\x7c\x5d\xff\xd7\x4f\x62\x7d\xbf\x45\x03\xc0\x21\xee\x58\xe5\xb6\x64\x00\x9f\x25\xe6\xc9\xad\x3f\x00\xa2\x72\xd9\x83\x77\x6d\x04\x48\xd6\xe3\x7c\xba\x37\x19\xe0\xf4\x2e\xc1\x41\xa6\xf7\x00\x79\xbb\x25\x3d\xb8\x05\x01\xf2\xf4\x55\x0e\x48\x27\x41\xc1\x99\x2a\xdd\x39\x3d\x14\x69\x5b\x5a\xab\x75\x89\xfb\x71\x24\x38\x3c\xce\x8f\xe5\xd4\x23\x9c\xa0\xd7\x78\x66\x6f\xee\xfd\x25\xb4\xfd\xce\x7a\xab\xb2\x1b\x8b\x57\x8c\x7d\xc6\xee\x5d\x35\x1e\x8e\x33\x9b\x98\xf1\xac\xac\xee\xb9\x67\x25\x3c\x1b\x5e\xd6\x7f\xbf\xc0\x26\x62\xee\xd6\x85\xa5\x86\x7a\xdb\x94\x05\xb9\x73\xd2\x75\x47\xec\x1e\x2d\xd2\xe5\x6e\xbb\x7a\xc6\x9e\x1a\xed\x97\xf9\xfb\x92\x83\xfd\xf8\x12\x2a\x75\xb8\x24\xc1\x41\x01\xc3\x94\x58\x52\xf8\xc1\xe1\x2d\xe6\x41\x3c\x77\xee\x77\x47\x75\x6c\x68\xf4\xfc\xd9\x76\x07\x13\xdc\x96\x08\x95\xec\x6a\x07\x63\x5c\x6d\xf0\xd7\x4c\x26\x07\x5a\xfc\xf1\x80\xb8\xd4\x3c\xfb\x97\xf8\x06\x1f\xa9\x94\x04\x7b\x19\x64\x83\x67\x07\x00\xf5\x16\xfe\xcf\xcb\xeb\xa7\xe8\xff\x7c\xdd\x6c\xcf\x37\x7d\x02\x50\x09\x60\x1e\xdd\x2c\x05\x60\x9e\xc4\x5c\x42\xf3\x60\x3d\x07\x21\xec\x1a\x53\xf8\x96\x2e\x80\xc4\xaa\x0d\x8b\x2b\xfa\xe7\x73\x56\xe5\x9d\xa7\x01\xce\xb3\x72\x33\x1e\xd8\x00\x50\x6e\x26\xa4\x7c\x2c\x0e\xe0\x52\xb6\xdc\x61\x71\x4e\xb8\x5f\x6e\xa2\x41\x44\x71\x92\x98\x8b\x68\x4c\x55\xdd\xa8\x91\xa3\x29\x15\xee\x8f\x93\xfa\x96\x8a\x83\x02\x92\x2c\x4a\xf0\x13\x28\x0f\xeb\x1a\x8e\xab\x15\x23\xfb\xed\x69\xdf\x4f\xdc\xac\xec\xec\x70\x68\x99\x1a\xaf\xb5\x6b\x60\x77\x61\x9b\x09\xac\x6a\xac\xc9\x72\xbd\xf3\x7b\xa1\xe2\x44\x65\xa2\xeb\xf7\xb9\xc9\x62\xaf\x12\x63\xf7\xd1\xf9\xd9\xc2\xba\xf3\xa1\xee\xf6\x8b\x9b\xf3\x44\x28\x79\x48\x39\x0f\xdd\x73\x96\x34\xd3\xaa\xb3\x3a\xdd\xae\x62\x2c\x13\x26\xd3\xc2\xdd\xcf\x60\xfa\xe3\x65\x93\x87\xdc\x88\xd8\xd3\xd1\xdd\xa7\xcc\xdd\xdd\x70\xa2\xe1\x67\xe2\x87\x5d\xbf\xe0\xfa\x82\xed\x63\x43\x5c\x5b\xf0\x12\x01\xfa\x51\xea\x6e\xa5\xf8\x33\xbe\x2b\xb7\x8c\xd8\x88\x2b\xef\x4d\x14\xfd\x3f\xf5\xd8\x8a\xff\x81\xca\x56\xda\x95\xbf\xbb\x6d\xda\x36\x7f\xfc\x53\xf7\x8c\x7b\x4a\xf5\x97\xfe\x4b\xc9\xc5\xa8\x3a\xc1\x62\xb0\x2b\x09\xa0\x0e\xe1\x41\x8e\xdc\x05\xb8\xbd\x24\x3e\x27\x98\x08\x5f\xef\x7c\x57\x7a\xaa\xd1\x47\xda\x7b\x7d\x5e\x5f\xd2\x4d\x7c\x69\x43\x09\x9b\x7d\x79\x8a\xfa\x07\x4c\xaa\x6b\xf8\xd1\xf2\xa7\x4f\x59\xa3\x32\x2f\x7c\xab\xcd\x6a\x29\x0a\xda\xd2\x23\xdf\x18\x75\xcd\xc7\x3f\x69\x92\xa1\xb1\xb2\x64\x26\x60\xe0\x97\x4b\x6d\x49\x01\x67\xa0\xd3\x8c\xef\xd5\xb1\x33\x3d\x81\xa7\x66\x05\x2b\x4c\x33\x43\x03\xf9\xe6\x99\x8a\x63\x53\x3a\x03\x4d\x16\xfc\x0a\xf4\x12\xf7\x06\xcc\x2d\xd6\x9e\x19\xa3\xf8\x9f\xc4\x18\xf9\x37\x2d\x35\xa5\x3c\x3d\x29\xee\x57\x81\xf1\x4b\x78\x11\x71\xd1\xef\x23\xf6\x60\xec\x58\x44\x89\xcf\x10\xf6\x7d\x14\x53\x68\xb3\xcf\x0d\x9c\x6f\x98\x40\x70\xb4\x0f\x07\x0e\x13\xa4\x11\x68\xe5\xe3\x8a\x97\x09\x50\x07\xa0\x75\x64\xd9\xb3\x32\x17\xc8\xfa\xbf\xd4\x7e\xda\xfc\x15\xdd\x17\xbb\x79\x68\xb9\xba\x92\x39\x08\x8a\x0f\x02\xe5\xfe\x77\xb1\xd1\xea\x7d\xf8\x6b\x57\x56\x73\x51\xee\x5e\xdb\xa0\xb4\x5c\xef\x7b\xb0\xcd\xec\xcb\x01\xe8\xe4\x38\x31\xca\x99\x0d\xd0\x43\x27\x93\xa0\xc4\x82\x28\x77\xe8\x6a\xfc\x72\xe2\xf9\x7a\xa3\xfe\x95\x45\xf3\xa9\x87\xdd\xdf\x2b\x13\x7c\x91\x0b\x0f\x6b\x34\x72\xf3\x32\x5e\xde\xec\x28\x78\x95\x7e\xba\xe9\x65\xf3\x8f\x34\x9a\x24\xa3\xef\x2d\x6d\xc9\x09\x96\x89\xd4\x53\x2e\xb7\x9e\xc4\xbd\x39\x85\x9a\x6e\xb9\x6e\x1f\x63\x10\xbf\xf9\xf7\xe3\x4a\xba\xe8\x27\x31\x31\x73\x51\x65\x07\x23\xd5\x62\xcc\xe7\xa7\x8b\x52\xc2\xeb\xa2\xa9\x16\x9d\x73\x0d\xc2\x94\x22\x1b\xd0\xee\xd9\x79\xa1\x91\x61\x42\x4b\xb9\xa9\x97\x82\x1b\x42\x9f\x61\x9c\x12\x8f\x07\x55\x87\x44\x60\x77\xc4\x89\x06\x2a\x04\xe5\x62\xbf\x47\xf6\xf8\x17\x07\x5f\xc1\x29\x87\xbb\xf8\x4b\x07\x0c\xe2\x06\x82\x75\xfc\x8e\x04\x44\xe1\xc5\x03\x42\x00\x98\x38\x99\x09\x1b\xa8\xfe\x87\xfe\x4f\xfe\x1d\x9f\x92\x8b\x42\xd1\xbf\x8b\xc8\xb9\x07\xd7\xfc\x56\x6b\x13\xd9\x17\xe4\x49\x24\xd5\x8a\xaf\x6b\xff\x01\xda\x15\x1e\x75\x98\x85\x03\x7d\xa8\x15\xe0\x8b\xb6\xd8\x27\xc9\x63\x93\x03\xef\xbe\xab\x1c\xb4\x72\x78\x8d\x7a\xb6\xd5\xe8\x47\xc4\x4c\xe3\xed\xf6\x5c\x77\xd5\x3c\xba\x82\x37\x77\x12\x13\x02\xaf\x55\x27\x30\xdc\x30\xbc\xf5\xe3\x76\x41\xb0\x57\x35\xc3\xe4\xd1\xc6\x8b\x81\xfb\x2b\xf8\xa6\x99\x6a\x92\x02\xb8\x4b\x95\x7e\xcb\x5f\x11\xf7\x57\x2f\x7a\x3a\xb7\xbf\x7c\x97\x5f\x77\x9e\xef\xfc\xab\xa2\x8b\x7e\x27\x72\xb6\x2e\xca\xe6\xde\xf5\x13\xc8\xf4\x46\x1f\x38\xfd\xc9\x27\x28\xdd\x79\xc9\x26\x2d\xef\x5f\xdf\x0f\x4f\xfb\xc4\x41\x6c\x75\x34\xca\x73\x28\x7e\x07\x8e\x39\x42\xd7\x43\x2c\x4e\x04\xd7\x1b\x5c\xea\x21\x75\x72\x2f\x5e\x36\xc0\xc8\x63\x77\x94\x38\x3e\xdd\x97\x00\x70\x54\x86\xc9\x99\x9a\xb4\xae\xff\x1b\x1c\xa7\x3e\xb0\x5c\x3d\x8f\x51\xfd\x75\xff\x9d\xe2\x0b\x43\xf1\x01\xa0\x70\x10\x3d\xe4\xfb\xcf\xef\xc8\xcf\xcb\x37\x22\xf5\x0a\x3f\xb6\x98\xc4\xfa\x73\x37\xdd\xdc\xb1\x45\x75\xa1\x94\x13\x3b\x87\xa3\x7f\x26\x2b\x70\xeb\xff\x7a\xec\x31\xfa\x4c\xaf\xd0\x17\x5b\x15\xff\x5e\xc7\xe9\x58\x9a\x71\x4a\xf1\x4b\xc6\x93\xcc\x65\x3d\xc1\x12\x7d\xcf\x6b\x5a\xaa\x6e\xb9\xa4\xf6\xca\x8d\x53\xd5\xf0\x38\x73\x3d\x48\xfa\xad\x7b\xf9\x9e\x13\xe6\x6e\xdc\x9c\x5f\xc9\x0d\x17\xd3\x3a\xd4\x7c\x74\x11\x38\xef\xa9\x8e\x5c\x34\x3a\xeb\xe1\xdc\x50\xd1\x8d\xb6\xcb\x7a\xe6\xbc\xa7\x4c\x77\x29\x27\xe5\xb3\xd3\xe2\x05\x66\x8c\x5d\x42\x9a\x73\xcd\x39\x61\xcc\x54\x5c\x94\x13\xe4\xde\xc4\x9e\x8f\x36\x70\xaa\x3c\xc3\x8c\x63\x09\xff\xe1\x98\x91\xdd\x81\x7b\x1f\xf4\xcb\xb1\x28\xc3\x01\xaf\xe1\xdf\x6e\x7f\x35\xdd\x07\xbf\xe4\x65\x68\xbf\x94\xa2\x89\xc8\x79\xec\x04\xe0\x95\xd8\x59\xbc\xfc\xb9\x29\xfa\xbf\xed\xb7\xd5\x1a\xf6\xe6\xef\x39\x70\x91\xac\xf3\xdd\xed\xa0\xfa\x8b\x83\xa0\xf8\x41\xfc\x84\x3f\x7f\xff\x9f\xe5\x07\x38\x32\xb1\x2d\xf7\xb3\x14\x00\x7f\xcd\xf1\x8c\xbe\x7e\x52\x82\x0c\xa8\x38\x35\x6a\x2c\xfd\x40\x39\x3b\x6e\xbc\xe0\x34\xbb\xcf\x6e\x4f\xb4\x7c\xd4\xc4\xe4\x91\x70\xa9\xb3\xe0\xd1\xfc\xa3\xff\xea\xae\xf3\x4f\x2d\x73\x7f\xf8\x8c\x5a\x96\x8d\x9b\x7f\x18\x8e\x9e\x3b\x7f\x61\x87\x05\xe3\x2b\xc9\x05\x8f\x3c\x63\xcb\x83\x5d\x1d\x8b\x75\xa7\x65\x2c\x53\x1f\xa8\xa1\xdb\xd3\xa3\xad\x94\x1b\xae\x2e\xa1\x13\xf3\xad\xb7\xde\xa4\xc6\x44\xc5\xff\xb0\xd6\xac\x9e\xc3\x1e\x8f\xe1\xb3\xbe\x59\x49\x83\x7d\x17\xb9\x85\x92\x73\x62\x19\x57\xfe\x1e\x2f\xe0\x5f\x6f\x55\x7a\x21\x0c\x1f\xec\x3b\x60\x75\xa1\x90\x1a\x3f\xe4\xd5\x63\xa5\x90\xcf\x88\xa8\xb8\xbb\x5b\x32\xe5\xcb\x21\xd9\x2e\x43\x00\x42\x64\xee\xe7\x5f\x1f\x88\xff\x8b\x03\x79\x12\x4c\x5e\x7f\x0b\xd5\x1f\x1c\x00\x45\xff\xf9\x49\xbe\xd7\xfc\xc1\x04\xe0\xf0\xb7\x2d\xef\xfb\x36\x00\xf0\xa9\x1f\xdb\xda\x2a\x09\xb4\x32\xee\x32\xb7\xaa\xa2\x89\x71\xda\xf4\xc6\x89\xa7\x7d\x11\x0e\x9b\x54\x9f\x96\x60\x09\x6c\x50\x08\x47\x3c\xde\x39\x02\xb3\xad\x4c\x36\xed\xa6\x99\xdd\xd2\x86\x3e\xf7\xcc\x41\xfd\xdd\x68\x9b\x45\x9b\xac\x32\xfd\xdb\x93\x2c\xe8\xb0\x34\x46\x03\x9b\x0f\xcf\x97\x8a\x13\x66\x0c\x5d\xdf\x5c\xc7\x68\xc7\x75\xae\xf9\x5d\x1c\x79\x74\x0c\x5b\x16\xf1\xc0\xc8\xad\x0d\x70\x29\x41\x63\xc6\x82\x77\x51\xb8\xf7\x01\xbf\x8c\x93\x6f\x97\xe2\xa5\xfd\x8c\x8d\x7f\xd4\x14\xe1\x9b\xbd\x9e\x1a\xe3\xae\x09\x21\xdb\x3d\x2c\x8d\x32\xab\x98\x90\x4a\x67\x0e\xe3\x73\x17\x63\x91\x61\xc7\x53\xc6\x3f\x4b\xee\x13\xf6\xdb\x07\xaf\x3f\x07\x94\x3c\x10\xca\x3e\x28\x8c\x58\xad\x75\x5b\xa8\xfe\xe6\x40\xc8\xfb\x65\x7a\x70\x65\xfd\x64\x1d\xe3\x3f\xf7\xc0\x63\x00\x36\x65\x53\x51\xb5\x12\x01\x78\xec\x99\x0c\xae\xbf\x01\x77\x19\x0e\xb1\x2b\x45\xa7\x48\x16\x5a\xee\x9a\xe3\x89\x59\x84\x47\x56\x4d\xb6\xf5\xbe\xda\xc8\x0e\x7f\x6b\xbf\x7d\x0e\x7a\x78\xd1\xb3\x8b\x21\x15\xa6\x9e\x38\xcd\xe6\xac\xc8\x6c\x3d\x2b\xec\xc5\x91\x1b\xd1\x0f\xb4\x65\xb1\xa5\x98\x97\x51\x8c\x5a\x5e\x0b\xce\xd8\xe6\x90\x9b\xda\xfe\xdf\x9f\xe1\x76\x07\x4b\x68\x8f\x7c\xb8\x81\xbb\xe6\xdf\x8a\x2a\xea\x7f\x86\xdf\xe1\xeb\x8f\xfa\xf0\xec\x28\xfe\x8a\xa7\x85\x4e\x61\xd7\x49\xfc\x80\x87\xa8\x6e\x5b\xbb\x39\x7e\xce\xbd\x41\x57\xaf\x25\x04\xc9\x76\x7a\xaa\xf3\xea\xae\x15\x32\x6d\x9f\xa8\x5b\x7c\x6b\x8e\xc0\x68\xc7\xae\x9b\x5b\x77\x9e\xa0\x69\x93\xae\x7b\xb7\xba\x8e\x50\x60\x79\x77\xfd\x39\x08\x46\x56\xeb\xd9\x8d\xe4\x39\x48\xd6\xb9\xda\xc9\xe7\xc5\xdb\xde\xff\xf5\xfd\xff\xbb\xfe\x6e\xb2\x1e\xd8\x96\x08\x70\xf8\xda\x16\x42\xcd\x6b\x00\xae\x80\x83\xbd\x25\x42\xf0\x55\xa2\x8b\x67\x2a\x73\x02\x0e\x68\x70\xcb\x31\x47\xce\x10\x67\x2d\x76\xeb\x57\x7a\x78\x13\x3c\x7c\x85\x1d\x53\x6d\xe9\x09\x34\xe9\x3f\x5c\x9d\x4c\xf6\x22\x27\xaf\xb9\x79\x8a\xeb\xfa\x21\x82\x9d\x07\xbc\x24\xb4\xce\xe3\xef\x7f\x44\xfb\xd8\xaa\x6b\xe3\x07\xf1\x7c\x5e\xfb\x28\x79\x1f\x6a\x6c\xb3\x25\x08\x8b\xf3\x76\x75\xe1\x6f\xdf\x10\x36\xe7\x6c\x75\xae\x8f\x43\x48\xb6\x43\x80\x7a\xed\x40\x2b\xd2\x6b\xd7\xbe\xe6\x77\x61\xd2\x73\x96\xa0\x67\x75\x45\x43\xb1\x03\x45\x28\x31\xff\xa0\x5e\xfc\x00\x21\x10\x4d\xb6\x6b\x84\xb6\x8e\x10\xa9\x4c\x78\x35\xcc\x1a\x87\x89\x1a\x86\x3a\xeb\xf3\x30\xcd\xee\xef\x39\xd0\x4a\x3e\x17\x28\xfa\xef\xd4\x2a\x07\xa5\x41\x7e\xfe\xc9\xfa\xcc\x90\xea\xdf\xfa\x57\x93\xe4\xdf\xfa\x67\xe9\x2c\x00\xfb\xdc\xde\x89\x33\x33\x40\x90\x4c\xe3\xb2\x4b\x90\x04\x0f\xf5\xc7\x12\xbc\x01\x2f\x48\x5d\xa6\xfb\x55\x38\x9c\xd3\x89\x45\x9e\x9b\x4d\x68\x2c\x9d\x89\x01\xa7\xee\x99\x59\x1a\x3e\x23\xee\x2b\xf6\xb0\xfc\xaa\xbb\x9b\x90\x7f\xa7\xda\x8e\x5b\xf3\x01\xc1\xaa\x87\x60\x2f\xa0\xf6\x8a\xc0\xf8\x79\xdc\x41\x4b\x85\x8b\xa0\x89\x34\xd8\xe6\x2b\x5d\x24\x7c\x25\x58\x98\xdf\x56\x4c\x43\x6c\x09\x5d\xc6\xa7\x15\xc6\x66\x55\x89\x07\x0d\x42\x15\x8b\x27\x68\x88\x3b\x0c\x35\x14\xdf\x7c\xf2\x26\x8a\xe8\x63\xd6\xfc\x2e\xcc\xdf\x28\x12\x7d\x75\x27\x94\x0a\xfa\x1e\x13\xb3\x75\xee\x2a\x8e\x74\x17\x12\x3f\x6a\xd1\x2a\x1f\xee\x08\x22\x76\x68\x17\x03\xc4\x92\xf9\x8f\x0b\x64\x1e\x86\xa2\x7f\xff\x6f\x3f\x14\x8a\x0f\x3e\xc5\x07\xe0\x29\xd9\xff\xbf\x85\xac\x07\x51\x7c\x00\x28\xfa\x6f\xee\x31\x00\xf6\x43\xbb\x8b\x93\xf5\x00\xc4\x44\x58\x92\x23\x6a\xa1\x57\xe5\x9b\x80\xb2\x17\x33\x70\x1b\x9f\x92\x99\xb5\x6b\x20\x05\xbb\xf4\x6a\x6e\x36\xd3\x20\x19\x46\x79\x69\xd7\xe8\xdf\x25\xed\x3a\x83\xd6\x3b\x88\xca\x24\x3e\xa8\x14\x30\x8c\xd0\x78\x4f\xcc\x6d\x1c\x36\xea\x5e\xe3\x1e\xbc\x89\xd1\x9f\x3c\x0d\x47\x15\x82\x88\x57\xd0\x6d\xfa\xa7\xe4\x85\x49\x1b\x89\xd9\x28\x15\x4a\xce\x87\xac\x20\x5e\x82\x74\x50\x75\x48\xf6\xea\x4c\x04\x91\xa8\xce\x2b\xab\xf9\x63\x8a\xc4\xa4\x5a\x21\x13\xf9\x85\x8a\x64\xa3\x14\x23\x73\x75\x64\x23\xc9\x5d\x69\xab\xcc\x8b\x81\x71\x52\xb0\x62\x88\xac\xe0\xeb\x74\x52\x98\x62\xd8\x1f\x7e\x28\xe4\x39\xd0\x4d\xe6\x44\xff\xd6\x7f\xd7\x38\xa8\x3d\xff\x5b\xff\xa3\x70\x30\xc5\x64\xee\x21\x4b\x8a\xac\x7b\x21\x00\xb4\xe7\xa8\xa8\xa2\xaf\x01\x08\x86\x1c\x9c\x09\x38\x03\xa0\x38\xc1\x41\x74\xe1\x87\x24\x83\x17\xa2\x56\x56\x2f\x49\x88\xc3\x3b\x79\x12\x25\xf7\x42\x77\x80\xd4\x93\xfc\x41\xc5\xf9\x5f\xee\x41\x25\x84\x64\xdb\x18\xa4\xc9\xa7\xc8\x43\xb2\xec\x5e\xd0\x28\x94\xd7\x24\xa9\x0f\xf7\x6b\x52\xcb\x89\x93\x14\x17\xd2\x35\x59\x28\x7e\x17\xd2\x41\xa4\x05\x52\x8e\xc2\x0e\xc9\xef\xa0\x42\xfa\x2e\xed\x27\xb1\x15\x9f\x01\x27\xc4\xa6\x24\x0e\xcd\xb9\xc2\x41\xf1\x41\xf1\xa2\x9f\x2f\x81\x43\xec\x9e\xd8\xdc\x37\x3b\x90\x13\x65\x94\x60\xfc\xc8\x0c\x87\xc5\x75\xd7\xdf\x07\x28\x73\xf0\xe3\x0f\xaa\x3f\x38\x98\x59\x9f\xbf\xf5\xcf\x67\xe4\xfb\xdd\xf7\xe9\xfe\xd6\xff\x28\xfa\xe7\x5a\x1e\x08\x99\x8b\x39\x39\x07\xc0\x3c\xb6\xdd\x35\x68\x2f\x80\xc0\xf1\x7d\x8d\xee\x7d\x00\xf2\xd7\x59\xf9\xed\xe8\xe0\xb5\xae\x24\x5f\x24\x85\x7f\xd0\x43\x83\x9f\x9f\x93\xc4\x16\xd4\x43\x10\x89\xd3\x94\x41\x34\x2a\x81\x3d\x3b\x56\xf6\xb7\x9a\x0c\xd0\x9c\x0f\x95\xaf\x57\xb6\x20\x7d\xab\xde\xae\x68\xa3\xb8\x9b\xd4\xd3\x04\x4a\x37\x64\x09\xa4\x6f\x5d\x29\x0a\x06\x32\xfb\x48\xdf\xdf\xa5\xcb\x7f\x92\x5e\x22\x3d\x9e\x5c\x52\xda\x41\xf1\x79\xf8\xbf\x78\x07\x21\x0c\x69\x1b\x2c\x72\xef\x12\x6a\x40\x07\xc2\x47\xee\x2e\xc1\x82\x69\x76\xf8\xce\x25\x0c\xd0\x56\xf5\xf7\x39\xb0\xca\xc1\x50\xf4\xdf\x4f\x77\xfe\xd6\x3f\x1f\xf8\xad\xd6\x9b\xe4\x5c\x88\x35\x0e\x86\xfc\x5c\x24\x91\x75\x4e\x8a\x0f\x84\xab\x34\x59\x07\x3f\x03\xc0\xcb\xbb\xbb\xce\xd1\x07\x40\x8e\x81\xc9\xd7\xf2\x05\x80\xd6\x0c\x47\xb7\x21\x13\xf4\x99\xd3\xf0\xc5\xe8\x76\xc2\x65\x8f\x00\x61\x3a\xcd\xdf\x70\x29\x74\x42\xb8\x5d\xfd\x20\xc4\x25\x9d\x14\x1b\xa3\x70\x0f\x8a\xb3\xe0\x58\xec\x2c\x31\x21\x5f\x05\x7a\xd7\x9c\x25\x31\x32\x5f\xc1\xa8\xb1\x48\x52\x52\x6a\x0a\x50\x9d\x69\x92\x76\x52\x67\x80\xb3\xdf\x45\xfa\x8e\x44\x06\x98\x8c\x25\x4b\x0c\x88\x33\x40\xd1\x22\x93\xe8\x01\xf1\x9b\x70\x05\x0c\x45\x15\xfe\xe5\x1d\x4e\x2c\x2d\x3f\xe9\xec\xea\x7c\x77\x97\x2b\xd3\xc8\xbf\x1c\xcc\xbf\x1c\xd0\x2b\xf2\xba\x29\x1c\xd0\x6d\x72\x0e\x0a\x25\x0f\xe4\x5c\xc4\xdf\xfa\x2f\x45\xff\xf6\x21\xeb\xe4\x36\x73\x00\x54\x9b\xa9\xa8\x1c\x7e\x02\x70\x84\xef\xd8\x6c\xe9\x08\x20\x8e\x61\xc0\x19\x1f\x07\x50\xbb\xc7\x3c\xa6\x5b\x0d\x58\xe3\x60\xce\x1d\xda\x67\x60\xca\xc1\x88\x87\x4e\x5d\x00\x46\x03\xe8\xf9\x2c\x54\x0a\xa1\xef\xe4\x5d\x81\x5a\xc5\x70\x78\x9f\xc4\xc5\x7f\x46\x61\x18\xaa\xce\x62\x85\xe5\xff\xe5\x1e\xa4\x9a\x20\xab\x41\x51\xe4\x8e\x44\x21\x14\xb6\xdf\x14\x3e\xbb\xe6\xf3\x60\x01\xe5\x43\x27\x85\xf7\x8b\x89\xc3\xd5\xa9\x6e\x61\x8f\x35\xde\x61\x0b\x00\xb4\xf2\x87\x53\xfa\x21\x48\xbf\xd2\x8f\x04\x80\x1f\x2b\x9c\x24\x25\x0f\x66\x9c\x11\xfe\xbf\x1c\x50\x55\xd2\xdf\x73\x90\x92\x07\x42\xf1\x43\x09\x1a\xfa\x5b\xff\x37\x21\x00\x50\xc5\x53\x51\x59\xd3\x03\xb0\xe5\x6e\x0b\x37\xe6\x03\x10\x1c\xde\x6d\xac\xb7\x19\x40\xe9\xd3\xe1\x1e\xed\x6a\x00\x3d\x06\xd6\x27\xea\x08\x80\xf5\x2c\xbb\x91\xea\x6b\x00\xaf\x3d\x5c\xfb\x94\xaa\x00\x82\xd4\x38\x07\x15\x92\x01\xa2\xdc\xb8\xa2\xe5\x92\x01\x9d\xb2\x8b\x07\x25\x7b\x04\x26\x72\xde\xf1\x7e\x94\x7a\x01\x5f\x8a\x8d\xf8\xf4\x25\x17\xe1\x4d\x25\x37\x7f\xbd\xf8\x5b\x78\x7b\x53\x9e\x5f\x55\x2c\x1a\x9e\xb7\x7d\xe6\x7f\x27\x32\x02\xc3\x5d\xa3\x7c\xb7\x85\x3b\x60\xec\x4d\x1a\x9f\xb0\x70\x22\xfc\xf8\x62\xcb\x17\x2f\xec\x0a\xd8\xa9\x5a\xbe\x3d\xc2\xfc\x00\x98\x01\x9e\x08\xc1\x6f\xcb\x7d\xe0\x50\xa5\xcc\xc1\x1f\xfa\xab\xf5\xff\xe4\x80\xc8\x7d\xf8\x97\x83\xa1\xe4\x81\x84\x91\xf3\x71\xfe\xf5\x81\xb0\xbd\x0a\xc0\x78\x7b\x53\x9c\xd2\x28\xc0\x06\x6b\x2a\x2a\x54\x1d\x00\x8f\x3f\x2d\x4a\x73\x00\x40\x56\x9a\x81\x55\x39\x0e\x40\x2d\xe5\x20\x8f\xd2\x14\x80\x71\xfe\x91\x44\xa5\xb3\x00\x8e\x6f\x59\x1d\xe4\xe7\x00\x7c\xb6\x1d\x8b\x92\x9b\x02\x08\x8d\x62\xef\x90\x3b\x0c\x10\x27\xc8\xa9\x2e\xa5\x0c\x90\xa4\xce\xae\x22\xf9\x08\x20\x67\x96\x53\x51\xa2\x0e\xe0\x82\x25\xd7\x17\xb1\x3d\x00\x97\xae\x71\xd2\x8b\xee\x04\xa8\x99\xe0\x24\x51\xf4\x7d\xe1\x26\xc0\x3c\x74\xe4\xee\xa5\xf0\x0e\x82\x25\x00\xfd\x21\x5c\xa2\x82\x53\x00\x5f\x98\xb8\x55\x05\xdf\x02\xfc\x1a\xe4\xba\xf3\x6f\x1e\x0c\x85\x03\xa2\xe4\xa1\x50\xce\xc1\x7f\x39\x98\x14\x81\xd5\x4a\xf1\x43\xf1\x29\xf9\xfb\x39\x30\x25\xef\x17\x4d\x32\x1f\x24\x93\x0f\x40\xfd\x83\x8a\x4a\xbd\x00\x80\xf3\xf4\x36\x56\x65\x36\x00\x51\x3c\x1d\x97\x82\x22\x80\x22\xfb\x3e\x77\x59\x66\x00\x9d\x32\x06\xb4\xcc\x08\x80\xa5\xc8\x21\x7f\xd9\x70\x00\xe7\x0a\x26\x51\x19\x15\x00\x9f\x86\xa3\x58\xe9\x22\x80\x30\x1f\x56\x17\x49\x47\x80\x98\x6c\x56\x5e\xc9\x40\x80\xd4\x04\x76\x15\xd1\x69\x80\xac\x76\xd6\x20\xd1\xfd\x00\x45\x54\x6c\x9a\xc2\x45\x00\xe5\xfe\x6c\xbb\x84\x4d\x00\xaa\x92\xd8\xe5\x05\xcd\x01\x6e\xd9\xb2\xa9\x9e\xc0\x01\x34\x6b\xb2\x6f\xa2\xf0\x0e\x27\x88\x00\xcf\x37\x70\x9c\x13\x28\x04\x18\x90\x63\xaf\x1a\x9e\x23\xbf\x07\x7c\x24\xbf\x07\x90\x39\x20\x4a\x2e\x56\x29\xf9\x7d\xf1\x2c\x2d\xfc\xc5\xc1\x50\x78\xb0\x35\x3f\x14\xf2\x7a\xad\x4a\x57\xab\xde\xcd\xd5\xaa\x4c\x3e\x37\xc4\x45\x00\xa8\xea\xa9\xa8\xe4\xb5\x00\x98\x5f\x6f\x7a\x2a\xd3\x09\xc0\xf7\x76\xfb\x76\xc9\x9f\x00\x92\xa5\xbb\x48\x62\x93\x00\x2a\x9f\xe9\x7e\x8b\x6d\x02\xd0\xd3\xda\xd3\x2a\x56\x00\x60\x91\xb8\x2f\x41\xf4\x27\x80\x43\x06\x03\x46\xf8\x27\x80\x87\xcf\x7e\x25\xe1\x39\x00\xff\x85\x83\x74\x22\x16\x00\x51\x3e\x87\x89\x42\x78\x80\x04\x79\xc6\xe8\x13\x43\x00\xa9\xc3\x87\x63\x84\x3d\x00\xf2\xcf\xb1\xe8\x9e\xb8\x02\x50\xfc\xe5\xa8\x9f\xc0\x26\x80\x4b\xf5\x4c\xe1\xfc\x16\x00\xd7\x70\x4c\x6f\xf8\xf1\x00\x77\x44\x58\x98\x79\x9d\x01\x9a\x87\x99\xb4\x78\x17\x01\x3a\x74\x98\x57\xa6\xbd\xc6\x3d\xaa\xbf\x38\x90\x35\x7d\x6b\xe5\xf7\xfc\x23\x44\x69\x9f\x8d\x4a\xff\xe5\x20\x28\x3c\x88\xaa\x94\xea\xf8\xa1\x20\x00\xd4\x09\x9d\x1d\xac\x83\x00\xfa\x0f\x4c\xac\x79\xec\x01\x0c\xc6\xed\xab\x84\xb9\x00\x0c\x26\x7d\xcc\xa4\xd9\x00\xf4\x9f\x9f\x4c\x57\x91\x80\x7e\x5d\x9d\x2c\x03\x2d\x7b\x88\xd5\x2e\x2f\xe7\x31\xf0\x01\x45\x8d\xce\x5b\x31\x26\x97\x60\x9f\x6a\x74\xa7\x8f\x39\x1b\x09\xad\xbc\x7b\x50\xcf\xa2\x8d\x34\xab\xc8\xfc\x8b\xdb\xf2\x38\xb0\xca\x7f\x21\xc8\x98\x61\xe1\xa4\x5c\x09\xa1\xcb\xb0\x0e\x1e\xca\x66\x13\x05\x74\x83\x97\xc4\x65\xa3\x89\x2a\x3a\xbd\xbf\xee\xca\xcc\x11\xb3\xb5\xde\x8c\xcb\xcb\xea\x12\x4b\xb4\x02\x3f\x9e\x90\xed\x24\x56\x6b\xf1\x0f\xb2\xca\x86\x12\xc7\xd4\xaf\xbe\x3a\x25\x4f\x47\x6c\xd3\xda\xfa\x6c\x5e\x76\x80\x74\x54\x55\xf9\xc9\xa8\x9c\x10\x49\x58\x25\xe4\x51\x84\x5c\x2d\x49\x5d\xb9\xee\xbe\x8e\xfc\x7d\x92\xb4\x4a\xd1\xf2\x7a\xd5\x78\xff\xee\xc3\xdf\xfa\xff\xae\x64\x91\x15\x9f\x6f\x9e\xe7\x92\x06\x5b\xef\xac\xeb\xff\x8a\xfb\xe5\x63\xf7\x71\x01\x68\x1c\x57\xd5\x3c\x6c\x02\x80\x6a\xd0\x1e\x67\x8d\x06\x30\x68\x32\xca\xe2\xf1\x01\x30\x32\xb1\x6b\x11\xf1\x06\x30\x4e\xf0\x12\x94\x2d\x04\x30\x38\x7d\x52\x56\xd5\x1c\x7a\xf4\x18\x32\x0d\xb5\x55\xc1\x07\xe5\x53\xe6\x63\xf8\x14\xb8\x34\x0f\xdc\xbe\x62\x26\x09\x74\xaa\x8e\x5d\xf1\xe6\xde\xa4\x4a\x95\x83\x43\xf5\xb6\xa6\xa4\x6b\x8a\xb3\x33\x2f\x6c\x99\x80\x55\xfe\x13\x41\xd6\xec\x17\x18\xc8\x2b\x10\x12\x4c\x74\x09\x82\xb2\x0d\x44\x36\x5d\xc2\xbc\xa8\x6c\x1f\x51\x4c\x37\x6e\x72\x41\xce\x86\x28\xa4\xb7\xfd\xab\xa4\xdc\x43\xa2\xba\x6e\xfc\x88\x82\xdc\x10\x31\x18\xf5\xa1\xdf\x56\xde\x90\x78\x4e\xbb\xe5\xb9\x83\x82\x3c\x31\x1f\xc5\xd1\xf3\x54\xfe\x19\x71\x40\x53\xe2\x09\xab\xbc\x2a\x89\x46\xed\xc3\xc3\xe3\xf2\x3d\x24\x56\xd5\xb7\x6d\x78\x79\x43\x92\xb9\xf2\x41\xf8\x1f\x5c\xd0\xdf\xfa\x3f\x2b\xaf\xa4\xef\xa6\x6f\xff\xe5\x20\x94\x0a\x64\xbd\xe8\x8d\x01\xb4\xb2\x95\xb3\x0e\x4d\x00\xe8\x29\x6b\x0f\x1d\x3b\x0f\x60\x9c\x6a\x6c\xcd\x3f\x0f\x60\xf2\xc4\x96\x4f\xac\x10\xc0\x04\xe3\x89\x95\xaf\x06\x30\xcc\x8d\x8c\x50\xe5\x83\x6c\x03\xc3\xcc\x4b\xfa\x87\x41\x53\x67\xa1\x04\x67\xe2\x40\x42\xb4\x74\x6e\x8b\x5b\x0a\xae\xf5\xa1\x5c\x85\x6e\xb8\xc2\xf6\x32\xc9\x45\xa9\x72\xb6\xd9\xa1\x84\xf4\x48\x91\x0e\xa9\xb1\x39\x0c\x8e\x72\x40\x28\x31\x56\xc3\x7b\xc8\x59\x10\x7e\x1a\xd8\xce\x70\xc9\xe3\x09\x59\x26\x15\xe3\x33\xf2\xfd\x84\x51\xc3\xf6\xcf\x4d\xf2\xb7\x88\x0c\xfa\x3d\x83\x5c\x0a\xc1\x44\x5e\x7d\xb3\x97\x67\x15\x7e\x13\x4d\x75\x7f\xf7\x76\x2a\xdc\x26\xe6\xa1\x6c\xbb\xe2\x15\x63\x89\xc5\x28\xcb\x47\x31\x8a\xc9\xc4\xc7\x5a\xb7\xef\x77\x28\x74\x91\xb6\xa9\x2b\xb6\x30\x2a\x84\x91\x14\x55\x72\xe0\x3f\x5c\xd0\xbf\xf7\xff\x29\xfa\x3f\x5f\x82\xe8\x95\xad\x9f\xd7\xfb\xa0\x66\x2f\xfd\x84\xde\x12\x40\xbb\x5a\xf9\xf8\x21\x22\x80\x41\xb6\x06\x3d\x8b\xec\x7a\x1f\xcc\x1e\x59\x75\x89\xe7\x02\x98\xc5\x7a\x64\x28\x90\xe0\xb9\xc9\x87\xf0\x17\x9a\xef\xc0\xcd\x70\x24\x53\xc3\x88\x09\x8e\xea\x99\x94\x98\x99\x4b\x90\x46\xb5\x9a\x6f\xff\xb0\x7a\x45\x0a\xd2\x38\xf0\xe4\x91\x43\x1a\x49\x4d\x65\xe1\xe3\x35\x27\x7d\x92\xb4\xd2\xc7\xc5\x00\xa7\x1b\xa4\x87\x8a\x7b\x91\xeb\x36\xc7\x41\x4a\x3e\x9b\xe0\x60\x5a\x88\x89\x92\x57\x22\x94\x18\x17\x4c\xbe\x53\xdc\x47\xd0\x34\x4f\xf9\x2a\xa7\xb8\x99\x70\xce\x04\x3d\x72\x4e\x61\x8a\xf0\xd9\xc8\xaa\xdf\x53\xf1\x03\x61\xd6\x88\xef\x05\xa3\xd2\x5e\xe2\x11\x83\xf3\xdd\x93\x4a\x1e\x44\x5d\xbd\xf7\x1d\x7d\x4a\xee\xc4\x68\x5d\xaa\x76\x56\xa5\x4f\xc4\x73\x3a\x7b\x5a\x55\x94\xf9\x89\x6d\xda\x99\x77\x05\x95\x6f\x10\x5f\x69\x75\xc1\xff\xc9\x05\x51\xf4\x7f\xb6\x34\x91\x8e\xcd\x2e\x00\x22\x25\x22\x17\x69\x2f\x02\xc8\x94\x8a\x9f\xdd\x75\x09\x40\xbd\x4e\x7a\x84\xfe\x11\x80\x7e\xb8\x42\xde\xa1\x1b\x00\xc6\x99\x9a\x0a\xc7\xf2\xd6\x39\x29\x8b\x46\x8b\x7b\x12\x2d\x00\x16\x75\xae\x3d\x4a\x46\xf0\xd2\x94\x35\x6c\x40\xf3\x2c\x78\x18\x45\xa5\x1b\x19\x7e\x87\xbd\x7a\x03\xc5\xef\x2d\x76\x93\xb2\x50\x4e\x77\x14\xed\xdb\x48\x7e\xea\xa3\x3d\xc2\x0e\x2d\xa4\xbd\xaa\x6e\x9f\xd5\x5c\x9e\x12\x09\xca\xca\x58\x57\xd7\x02\x4a\x1f\x08\x5f\x14\xb4\x09\xf4\x16\xf1\xb3\xd7\x15\xa9\x08\xfb\x2c\xf7\x7d\x77\x51\x62\x26\xd0\x58\x89\x7f\x4c\x50\xd2\x24\xd8\x9a\x27\xbe\x3b\xa3\x54\x4c\xc8\x37\xed\x7a\x75\x59\x99\x8b\xd0\x60\xf2\xbd\xf7\xa3\xb2\x1a\x61\xd1\xa8\x94\xc2\x85\xb5\x97\x29\x13\x88\x46\xfa\x62\x6d\x18\xe5\x7a\x62\xb6\x4e\x6d\xb3\xa1\xea\x36\x62\xb0\x9e\x68\x7d\xa3\x8a\x10\xb1\x5f\xeb\xc9\xff\x3d\x17\xb6\xbe\x12\x4a\x5f\xae\x9c\x76\x22\x0f\x69\xfa\xd6\x7d\x10\x28\xb9\x18\x5a\x7c\x12\xcd\x7b\xfd\x01\x0c\x0d\xe5\x6d\x0e\x59\x01\x98\xe5\xaa\x2d\xb2\xde\x5b\xcf\xd3\xb2\xbc\x65\x51\x2c\xe9\x06\x60\x29\xee\x3c\xa2\x58\x0d\xa5\x16\x5b\x42\x3d\x74\x3a\xc1\xc8\xf8\x51\xea\x47\xe3\x30\xd2\x98\xfe\xc3\x92\xc7\xd6\xdb\x29\xbc\x1c\x89\x4b\xe3\xf6\xd3\xeb\x2e\xc6\x24\x66\xd5\x3d\xa3\x09\x2e\x4c\x6b\x9c\xdc\x79\xc5\x44\x24\xc0\x8e\x05\xcb\xa7\x98\x8b\x14\xd8\xf2\x4c\x59\x28\x1f\x41\x9c\xed\xeb\xc6\x98\x95\x96\x90\x61\x9b\xed\xc3\xcf\x95\x95\x08\x3c\x96\xd5\x6f\x48\xca\x08\xc1\xcc\x22\xad\xcf\x5e\xa5\x89\x10\x65\x5e\xf8\x04\xaf\x12\x4c\x18\x34\x61\x7e\x5c\xa8\x72\x9c\xc8\x6e\x78\xb8\xed\xb6\x6a\x0b\x91\xc5\xf0\x51\x4b\xa4\xea\x75\xa2\xb2\x81\x57\xe3\x05\xd5\x77\x44\x6f\xbd\x8e\x5b\x32\xaa\x54\xc4\x01\xad\xef\xff\x9d\x0b\x54\xf1\xa2\x2b\xfa\xcc\xbf\xfa\xbf\x98\xa3\x50\x19\xed\x21\x00\xa5\xcf\x62\x3b\xe9\x84\x01\x50\xf7\xc4\x7c\xf6\x5c\x02\x30\x91\x91\x26\x1e\xa8\x03\xb0\x7c\xa3\xb6\xf9\x98\x38\x80\x2d\x5a\xd7\x86\x9f\x06\xc0\x66\x9b\xb9\x8d\xa4\x2b\xcc\x5a\x8d\x3b\xb7\xaa\x9c\x80\x9b\xe6\x63\xc1\x37\x50\xbb\x41\xc3\x24\x3b\xe5\x8e\x89\x24\xa9\xd8\xb0\xab\xf8\x89\xbd\x25\x89\x55\x37\xf2\xf6\x57\xd7\x54\xe2\x7b\xcd\x3b\xbd\x6e\x1e\xe2\xc4\x4c\x35\xcd\x71\x5b\xaf\xf1\x35\x4e\x4e\x46\x29\x05\x3f\xee\xd4\xb2\x50\xaa\xcc\x8d\xc7\x3a\x35\xfe\x50\x56\x4e\x41\x6c\x1d\x98\x3f\xf9\xa8\x58\x22\x67\xed\x37\x0d\x0a\xa9\x3c\x42\x06\x6d\xb7\xbc\x54\x55\xfd\x86\xfc\xb6\x69\xee\x51\x53\xcb\x26\xf0\x59\xa1\x29\x5c\xd8\x03\x26\xb5\x1e\xc2\x3d\xd3\x99\x16\x17\x75\x45\xc2\x77\x93\x84\x86\x42\xf5\xd7\xc4\x1d\xc6\x82\xb7\xcf\xab\xf3\x12\xad\xf4\x07\x6a\x3b\xd4\x7e\x10\x8b\x75\x37\xff\xd9\x07\xca\x5c\xf8\xdf\xfa\xbf\xf8\x88\x10\x17\x2d\xf7\x3a\x07\x41\xe1\x41\x2c\xb6\x48\x5d\x3f\xd0\x0d\x60\x3b\xa6\xe8\xc2\xec\x07\x60\x3f\xa2\xa3\xcb\xf7\x12\xc0\xc1\xc4\x74\x41\x2a\x0c\x5e\xdb\x99\xd8\x93\xd4\x32\x21\xd6\xfa\x44\xc0\xa8\xde\x33\xd8\x6a\x86\x4f\xce\xb0\x48\x26\xc5\x19\xd9\x16\x7f\x76\x40\xaf\xf1\x72\xb1\x5a\x49\x7d\x42\x3e\x5a\x44\x4d\xb5\xf4\x89\xcb\xbe\xd7\x28\x7c\x18\xee\x83\xb2\x26\xbe\xdc\x95\x7d\xfa\x83\x4a\x0c\xbe\xc0\x4d\x62\xac\x4c\x15\x85\x1f\x74\xf9\x3a\xe4\xa9\x66\x81\xec\x77\x3e\xff\x7a\x4a\xad\x1b\x09\x76\xdc\xf4\xec\x96\xda\x2b\xe4\x93\x6d\x75\x17\x8b\xc6\x7e\x64\xd2\xf6\x71\xfb\xa0\x46\x38\x81\xc7\xba\xae\x2d\x5f\xa3\x84\xe0\x65\x19\xd3\x38\xac\x31\x49\xb8\x6b\xd6\x77\xe7\xb5\xc6\x4b\xc2\xb4\xc9\x8d\x5a\x46\x4d\x31\xe2\x09\x23\xde\xea\x61\x8d\x61\x62\x80\xbe\x09\xfc\xc9\x05\xad\xea\xde\x14\xfd\x5f\x9e\x67\x90\xea\x0f\xfd\x5f\x6e\xd7\x89\x69\xda\x9b\xeb\x1c\x04\xc5\x17\xc3\x7a\xa3\xf8\x9d\xfd\x06\xeb\x39\x52\x2e\x1f\xb5\x8a\xf8\x24\x00\x9c\xe7\x8d\x9b\x24\x5f\x43\x9f\x3d\xb3\xdd\x3b\xb5\x97\x60\x65\x7b\xcf\xcf\xdc\xd0\x80\xf4\xd6\x92\x27\xf1\xae\xf5\x03\x92\x90\x49\xd7\xf9\xcb\xae\x0a\xc4\x61\x3d\x95\x7a\x15\x0f\x84\x28\xa4\x2d\xfe\xdc\xc4\x3f\x9f\x30\xa9\xce\x3c\xf9\x2d\x30\x88\xc8\xa0\x2a\x84\x13\xf3\xb7\x9f\xb7\x50\x55\xc5\x7d\xf2\xf6\xfe\xa1\xae\x3a\x86\x97\xf6\x0c\xfa\xd8\xad\x1e\x81\x57\xf0\x3a\xb0\xe6\x13\x55\xad\x79\x18\x3f\xee\x26\xd8\xc5\xae\x75\x10\x91\x73\x1e\x6f\x2f\xd5\x6a\x40\x62\x9c\x0e\x51\x7c\xb2\x1a\x67\xb4\xf7\x12\x8e\xdb\x5c\xbb\x59\xaf\x5d\x41\x08\xb1\xc4\xdd\x88\xd3\x1a\x24\x7c\x34\x7d\x7d\x75\x4a\x5b\x87\x48\x67\x3c\x57\x29\xa5\x1d\x4f\x54\x34\x84\xff\xce\x05\x8a\xde\xc9\xea\xcd\xf7\x70\x13\x03\x80\xe0\x37\xde\xd4\x2d\xc4\x75\x1f\x04\xdd\x1b\x02\xd8\x5d\x7c\x00\x56\x8c\x82\xc6\x7b\xa2\x00\x1c\x5e\x88\xf2\x31\x0c\xae\xe7\x27\x79\x46\xa8\x0b\x2f\xbf\x3f\x78\x3e\x36\xdc\x2c\xf9\x1a\x3e\xb8\xfc\xb4\x0e\x52\x53\x05\x49\x87\xab\x5e\xbd\xc6\x31\xa4\x54\xeb\xb9\x53\x1f\x1d\x50\xc4\x4f\x66\x79\x45\xe0\x19\x40\xf4\xd0\xc7\xd7\xeb\xfb\xa9\x13\x9a\x51\x9b\x5f\x0e\x85\x78\x12\x0e\xa9\x0f\xcf\xf1\x46\x4c\xe2\xcd\xd5\x78\xb0\xb7\x82\x0f\xfd\x78\xa2\xc1\x8b\x1d\x0d\xe6\x1a\xdd\xa6\x31\x83\xd3\x0e\xdc\xb0\xe6\x13\xc5\xa9\x15\x82\xd7\xf6\xa6\xe9\x16\x42\x29\xe0\x25\x7c\x38\x1f\x79\xa0\x7c\xf1\xcd\x1e\xf9\x14\x1e\xaa\x31\x0a\xe5\x83\xf4\x3a\x1c\xbc\xe9\xa8\x73\x15\x99\xb3\x67\xba\xde\xaf\xeb\x48\x38\x6a\xdb\x58\xd5\xaf\xf3\x81\x70\xc6\x32\xea\xb2\xab\x4e\x0b\x61\xd0\xac\xb1\x7c\x40\x97\x91\x48\x6d\x7a\x18\xfe\xc3\xc3\xfc\x7b\xff\x5f\xec\x03\xa7\xe6\x96\x0d\xeb\x3e\x08\x86\x23\x3c\x16\x3b\xa4\x01\x6c\x4b\xf9\xdb\x77\xbb\x03\xb8\xa3\x85\xbf\xec\xcf\x06\xf0\xd1\x97\x22\x1e\x55\x06\x08\xac\x54\x76\xe7\x3e\x03\xe0\x77\x49\xf7\xa5\x84\x2c\xbc\xf0\xf2\xb2\x9c\xd3\x30\x23\x4d\xb9\xd4\xb9\x4f\x5b\x38\xad\xe5\xec\x85\x59\x9a\x16\x04\xf8\x59\x11\x2e\x1a\x9d\xad\x8f\x0a\x2b\x42\x70\x3a\xcc\xfd\xfa\xd1\xfa\x88\x94\x46\xc5\x52\x6a\xfc\x9e\x79\x6f\x0d\x0d\xcc\x9b\x48\xf1\x2f\x95\x5a\xec\x58\xf7\xb0\x0f\xef\x3a\x50\xdb\xb1\xb9\x61\x57\x9f\x57\xe8\xe4\x61\x3f\x85\x7a\x3c\x49\xd7\xe5\xc0\x05\x07\x4e\xb5\x0f\xe9\x46\xe3\xf7\xfa\x0e\xb5\x58\xe9\x75\xe3\x35\x7c\x1e\x35\x18\xea\x99\xe2\x71\xee\xd1\xb5\x4f\xf4\x2b\x11\x61\xb7\x6d\xff\x17\x07\x54\x26\xa5\x7f\x95\x90\x6b\x89\xbe\xc0\x62\xc0\x42\xe8\x31\x9f\xfb\xef\x7e\xa0\xe8\xff\x9c\xbf\x39\xab\x36\x97\x01\x48\x1b\x1c\xef\xa1\xf9\xb9\xee\x83\x40\xe1\x20\x5c\x46\x78\x55\xe8\xf0\x00\x7e\x9a\x27\xdc\x18\xf6\x02\x04\x21\xa2\x17\x0e\xcf\x01\x44\xc8\xc9\xef\xe5\x20\x02\x44\xe8\x69\x25\x8a\x9f\x81\x6f\x21\xc5\x26\x25\xea\xb2\xa4\x7e\x8f\x39\x97\x27\x56\x34\xc4\x21\x67\x89\x28\x75\x4f\x45\xe2\x56\x9b\xc3\x79\x2f\x82\x79\x90\x29\x93\xcc\xfa\x47\x31\x0a\x78\xd0\xcd\x7f\xc7\x92\xe8\x8e\xaf\xd5\x4c\x43\x3f\x48\x32\x1e\x37\x44\x45\x2e\x05\x27\xe8\xbc\x9b\xd0\xbd\xb3\x34\x13\x7f\xeb\x39\x4e\xaf\x14\xd3\x78\xf2\x4d\x97\x8e\x3e\x1a\x2b\x1d\xa5\x7a\x8f\x64\xb8\x15\xfb\x31\xac\xa9\x09\x6b\x28\x81\x0b\x09\xde\x78\xbb\xd5\xf0\x3c\x7e\x9f\xdf\x60\xcd\x66\x63\x07\xbc\x8c\x1f\xe7\x55\x55\x63\x79\x7c\xb3\x57\xe2\x65\x66\xa3\x34\xc4\xd9\x95\xa1\x7c\xd8\x28\x13\x69\x74\x72\xbc\x90\x63\xa2\x81\x3c\x72\x52\x3a\x7f\xc5\xe8\x18\xc1\xde\x06\x75\xee\x8e\xd1\x09\xc2\x4d\x4b\x85\x3f\xfb\xc0\xb3\x72\xaf\xfb\xe8\x0d\x8e\x88\x0d\xcf\x96\xdf\x9b\xd8\xd2\x37\x3d\x06\x50\xbc\xce\xec\xbc\xa9\x07\xc0\x80\x8a\x59\x68\xf3\xe7\x75\x0e\xc2\x6b\x98\x3d\x7e\x07\x0d\x40\xc8\x28\xf7\xf8\x9e\x46\x80\x93\xcc\x42\xd4\x87\xee\x02\xc4\x57\x4a\x7e\x60\xab\x01\x88\x1f\x51\x3b\x2a\x7a\x12\xe6\xe3\x1c\xf4\x67\xd4\x9e\x92\x06\x43\x76\xd9\x87\x58\xdd\x5d\xcb\x55\xe3\xb5\x1f\xcf\xe5\x88\x7e\x81\x9f\x34\xf7\xb8\x33\x96\xdc\x8a\x7b\xab\x57\x35\x7c\x2f\xb3\x73\x7a\x8f\x4e\xdc\x22\x73\xb6\xd9\xe0\x33\xfd\x51\xb4\x42\x7a\xe1\xd3\x7e\x23\x2c\xfa\x76\x9a\xeb\x63\x5a\xe3\xd6\xa5\xaa\xc4\xcf\xad\x1c\x26\xb3\x18\xf3\xf8\xb8\xb5\x7c\xb0\x33\x66\x72\xd8\x7b\x11\xb5\x57\x19\xcd\xb7\xe3\xac\x42\xbe\x56\xa0\xcc\x23\x71\x23\x81\x99\x65\x61\xe6\x99\x78\x33\x3f\x96\x0b\x7e\xe6\x91\xf8\x61\x2f\xc1\xa2\xad\xe6\xbb\x10\x45\xb7\xe9\xfc\x0c\xb3\x3a\xa4\xc5\xe9\x63\x0e\xda\x82\x0e\x79\xe7\x44\x73\xba\xc9\x8c\x48\x10\xb7\xf3\x5d\x7f\x0e\x36\x88\x1d\x5f\xf1\x5b\x64\xe3\x39\x36\xb0\xb1\x17\x40\x2c\xe9\xa8\xd3\xc6\x82\x75\xfd\xdf\x3a\x93\x11\xd9\x54\x02\xe0\x7e\x61\x93\xc3\x8a\xde\x51\xce\x7c\x7a\x9b\x0a\x40\xdc\x5d\xd6\xf8\x1d\x87\x01\x52\xe2\xf9\x77\x1f\xc0\x01\x64\x5d\x10\xa1\x67\xe1\x03\xc8\xca\x51\x10\x11\xfc\xb2\xe6\x13\xf3\x34\x9e\xdd\xaa\xd4\x46\x98\xd0\xe6\xef\xe6\x9b\x15\x6a\x85\x08\xb8\x32\x64\x8b\x24\x79\x63\x3e\x59\xb5\xdf\x71\xca\x51\x9f\xe1\x34\x36\x1d\xde\x5f\xb8\x71\x64\x9b\x31\xfb\xdc\x70\x91\x5b\xf7\x31\xf3\x83\x0b\x96\x79\x25\x6d\xa3\x96\x7c\x8b\xe1\x39\x56\xf5\xb1\x56\xed\x68\xfd\xcc\xc1\x9a\x40\xeb\xee\x25\xd7\x94\xfb\x57\x89\xd6\xb5\x18\xe6\x84\x99\x4b\x36\x36\xb6\xd8\x0d\xb1\xfb\x4a\xcf\xda\xa8\x61\x6f\x47\x4e\xaf\xe5\x41\xe9\xda\x94\xe0\xf0\x81\x2e\x67\x19\x6c\xca\xf0\xde\x7e\xdc\xa7\xf9\x6c\x9a\xf0\x9d\xde\x31\x99\xfe\x36\xec\x88\x8a\xbb\x67\x5a\x98\x8d\x21\x72\xda\xe5\x57\xca\x39\xeb\xbd\x84\x5d\x0e\xa8\x95\xe7\xa0\x6e\x79\x5d\xb4\x0e\x47\x57\x7c\x06\x39\x75\x8e\xd2\x6f\xa8\x5a\xd7\xff\xf5\xed\xb6\x9d\xa7\xfa\xc3\x07\x81\xa2\xfb\x51\xee\x3f\x67\xb8\x6c\xf0\x5b\xae\xb9\x25\xac\x45\xcb\xf3\xf3\x3c\x0b\x3f\x1b\x63\x37\x40\xf1\x13\x49\x12\x3f\x35\x40\x61\xa8\xfa\x4e\x65\x4b\xd2\xbb\x33\xf3\xc6\x6d\xd6\x4d\x04\xe7\xb8\x03\xee\x4c\x91\x61\x3f\x33\xfd\x7f\x9d\xaa\xcb\xa6\xfd\x68\xe0\x6e\x56\x39\x5f\x98\xf2\x7a\xdc\x81\xa5\x4f\xa3\x3c\xb9\xab\xce\xc6\xe5\x77\x44\x45\x70\x83\xa4\x7d\xf7\x5c\x77\x31\xe7\xf5\xdd\x8e\x1d\x0b\x6c\x05\x32\x15\xef\x9d\x2e\x2d\xfa\x9d\xf9\x5d\x3a\xee\x1c\x82\xe6\xcc\xee\x2e\xa4\x71\x6e\x5f\xca\x4a\xc1\xe5\x7e\x74\x39\x82\x91\x4f\xd4\x3a\x93\xe9\x1c\x82\x21\xc4\x92\x32\xad\x5d\x54\xb0\x25\xd1\x8a\xe9\x74\x4e\xe3\xb8\x53\xa1\xda\xa9\x67\x1d\xaf\xe3\xd9\x02\x6a\x13\x6f\x38\xfe\xc0\x97\xfa\x32\xc4\xa7\x3b\xd5\xe2\x5f\x79\xa7\xc4\xef\x70\xf8\x86\x58\xbb\xcd\xc5\x78\x3a\x1a\x23\x39\xae\xfc\xcb\x7d\xe0\x58\xf1\x53\x63\xcc\x66\xba\x49\xed\x06\x20\x48\x4b\xf7\x7a\xf9\xbf\x15\x77\x6f\x5e\x79\xcf\xb6\x10\x59\x5d\x2f\x45\xef\x89\xca\x5b\xad\x99\xe4\x9c\x03\xca\xfd\xd7\x0a\xd2\xc6\xe4\xe5\x5a\x9d\xc2\xbe\x99\x9e\x15\xe0\x46\xa1\xd0\x6f\x8e\x3c\x80\x9a\x6e\x79\x07\xd9\x71\xd2\x50\x65\xae\x2e\xb3\xb5\xe6\xe4\xa3\xfc\xcb\x76\xf3\x11\x54\xfd\x05\x89\x0c\xa1\xa2\x67\x72\x1f\x1f\x8a\x10\x3c\x77\xaf\xec\x40\x83\x7f\xc0\x9b\xfb\x70\x65\xb8\x9a\xd6\xab\x7f\xca\xaa\x46\xb2\xd8\xcc\x67\xfe\xf7\xf0\x65\xce\xfc\xab\xbe\xb4\x73\xe3\x25\x0c\xd9\x8a\x7e\xd3\xf3\xbf\x8b\x84\x33\x34\x7d\x5b\x17\x83\xcf\x3e\x4e\x7e\xe1\x8b\x42\xbf\xc9\x34\x4a\xfc\xe1\xd3\xb3\x94\x94\xfa\xe8\x94\x9a\xf7\x37\x4c\x4c\x82\x4b\xcc\x6b\x1f\x19\xec\xee\xb8\x8d\xd1\xa7\xbc\x59\xb0\xbf\x22\xf3\x22\xdd\xbc\x5e\xe0\xdc\xc3\x74\x22\x25\x3d\x22\xf0\x7c\x01\xb7\xc3\xb2\x3c\xf9\xf1\x76\xfe\xa2\xa1\x1a\xee\x5b\x91\x63\x1e\x10\x24\xe6\xe1\x8a\x08\x7a\x24\x2e\xf7\xe1\xb0\xe1\xf2\xe7\x67\xb6\xdd\x7b\x67\xb9\x8a\x73\x6d\x38\xb4\x5c\x75\x2c\x57\xd7\xe7\x74\x73\xb5\x86\x91\xef\xf7\x53\xf4\x5f\xca\xfa\x2f\x5f\x5b\xad\xb7\xf2\x57\xf9\x87\x96\xec\x23\xc5\xdb\x47\x00\x1e\xb2\x71\xa1\x19\x5f\x01\x3c\xea\x92\x98\x10\x1f\x9d\xd6\x6e\xfa\xaa\x3e\x6c\x56\x3c\xe8\x75\xbd\xd5\x82\x37\x38\xe2\x61\x60\x29\x87\xcf\xcb\xac\xcd\x55\x8d\xd9\x9d\xa9\x0a\x17\xb3\xf2\x67\x92\x97\x6e\x6e\xab\x3e\x9d\xaa\x15\xef\xf5\x61\xe7\x4d\x8e\x78\xf7\x58\xae\x19\x9f\x6b\xba\x27\xe7\x62\x76\xcc\xce\x5c\xa4\x8f\x3e\x1d\xcd\x35\xaf\x5b\xbc\x21\xe2\x6c\xf4\xc1\x85\x9f\xf9\x2e\x11\xbb\x22\x8e\x2d\xce\xe5\x3c\x09\x1b\x0b\x3d\xbf\x74\x28\x83\x91\xc2\x7d\x04\x33\x07\x03\x06\x1b\x57\x17\x38\x14\xcc\x8e\x2d\x8c\x7e\x16\x90\x1d\x98\x87\xd3\x0d\xa7\x0b\xb8\xe8\xf7\x1e\xd7\x1a\xb2\xc9\xbf\xd1\xb7\x0b\xcf\x13\xd0\xe5\xa7\xe8\x73\x01\xdf\xe6\x63\xe2\xed\xed\xfb\x18\xd1\x74\x6f\x02\xd8\xf6\x73\xff\xca\xfb\x34\xb7\xe5\x96\x0f\x54\x7f\xe8\xff\xd6\x8d\xe4\x7d\x40\xbe\xf7\xfe\x6f\x3e\x0e\x45\xf7\xa0\xe8\xe0\x0f\xf9\x57\xeb\xf3\xc2\xcd\x3b\x97\xeb\xc0\xcf\x63\xb9\xf4\x02\xf3\xf7\xfa\xef\x08\x5b\x0a\x32\x7f\xac\xeb\x8d\x54\x8a\xd1\x9b\xe8\x7e\xf8\x30\xc5\x10\xef\xbd\xa3\xee\xca\x5d\x56\x37\xf1\x24\x91\xbc\x98\xeb\x07\xe2\x5a\xcf\x67\xc7\x8f\x56\xbe\xb8\x7a\xbf\xe2\x6e\xc8\xb9\x4b\xc1\x83\x3a\x55\x2f\xfd\x0f\x97\x30\xcc\x6a\x5c\x7a\xee\xfb\xba\x88\x61\x9e\xb7\x98\xd6\x57\x3f\xf7\xd7\x42\x67\x7e\x9d\x0f\xcf\x99\xc3\xe8\xad\x39\xb4\xde\x49\x59\x99\x4b\xcc\xe9\xf7\x7c\x36\xa5\xfa\x2e\x2d\x24\xfb\xfd\x27\xef\x65\xec\x14\x2d\x76\x2e\x32\xe2\x5f\xee\xc3\x8d\x39\xba\x12\xff\xd5\x5b\xd8\xd5\x34\x12\x85\xd8\xb9\xef\x77\x25\x85\xef\x45\xc2\xdd\xa4\x00\x0e\xf1\xd0\xbb\x2d\x7f\x6e\x51\xb2\x8e\x45\xf1\x81\xa0\xec\x83\xf8\xd8\xd5\x4a\xd1\xbd\x28\x7e\x18\x94\x5c\x10\x8a\xfe\xf3\x9a\xac\x87\x7e\x19\xa1\xb2\xa1\xa2\x5a\x52\xfd\x41\x7f\x44\x68\x7b\xe2\x58\xcd\x58\x09\xff\x71\x4e\x93\x97\x53\x1f\x77\xcb\x5e\x50\xed\x68\xa9\x1f\xd8\xa4\xcb\xe1\xf0\xec\x62\x5c\x5f\xb6\xc3\x70\xe4\x7c\x12\x6d\x27\x43\x64\x51\xce\x78\xd0\xdc\xa3\xa8\xcb\x1b\x0a\x6b\xdd\x2c\xdb\x55\xfa\xf7\x97\xc8\x3a\xa4\xb6\x8a\xcd\x8b\x9f\x3f\xe5\xa8\x74\xab\x66\xe1\x7d\x9e\xa0\x43\x4d\x8d\x15\x5a\x2d\x6b\xd4\x21\xe3\x4a\xf8\x52\x48\x2a\x8b\xe3\xb9\x32\x34\x86\x35\xb1\xd1\x81\x54\x7c\x08\x4b\x1b\x1b\xe7\x50\x5e\x18\x85\xed\x88\xda\xef\xa8\x96\xbb\x80\x13\x09\x37\x76\xa8\xcb\xf1\xc4\x7d\x0f\x0a\xb3\x1f\xce\x4e\xc4\x7b\xf8\x5d\xb7\x67\xcd\xf0\xc2\x13\xbd\x76\x38\x50\xa7\x8c\x22\xdc\x1e\x0d\xf6\xaa\x49\x35\x48\xa1\x0b\xde\xee\x7b\xc2\x75\xe4\x8b\x93\x11\x00\x57\xf5\x86\x15\x3f\x13\xc5\xb6\xd5\x75\xd8\xd7\x53\xfd\xc5\x81\x50\x7c\x10\x2e\xee\xfe\x7b\xfd\x5d\xee\x54\x7f\xe9\xe0\x3f\xd8\x96\x2b\xda\x7d\x5e\x62\xe5\xf7\x6f\x73\xac\xeb\x41\x05\x2a\xaa\x77\x4b\x68\x69\xce\x8a\x23\x89\x1d\x27\x7e\xeb\x48\x3a\x49\x59\xd5\xee\x9c\x20\x69\xa9\x99\xbc\xca\xd7\xf9\x52\x6a\x73\xde\xf7\x79\xf8\xec\x48\x47\xc8\xfb\xc4\x7e\x0f\xd1\xe1\x85\xf2\xc2\xcc\x3d\xd6\x2d\x43\x35\x2f\xd9\x72\x6e\x98\xba\xbf\xed\x5b\x8c\x38\xad\x66\xfa\xe3\xe9\x43\xf4\x62\x6a\x83\x59\xef\x43\x64\xe9\x55\xe2\x45\x73\xfe\x96\x1e\xcc\xad\x38\x5a\x73\xc1\x3b\xa1\xd8\xfa\xc8\xe3\x16\xb2\x35\x93\xb8\x63\x61\x65\x16\xef\xaa\x6c\x70\x25\xc1\x39\x16\xfd\x15\x4e\xf8\xc3\x01\xdc\x96\x7c\x65\x6f\xf1\xee\x7e\x1b\x2c\x36\x5e\x40\x23\x7c\xee\x9f\xff\x1f\x61\xef\x19\xd5\xd4\xf6\x7d\x7f\x47\xb1\xa0\x34\x05\x54\x14\xe9\xbd\x07\x08\x25\x40\x12\x7a\xef\xbd\x37\x41\x44\x05\xa4\x08\x36\x54\x44\xc5\x8e\x22\x2a\xa0\x62\xb9\xf6\x06\x36\x2c\xa8\x08\x88\x05\x04\x1b\x28\x0a\x36\x2c\x08\x56\x44\x69\x49\xce\x7c\x06\x21\x07\x2f\x7e\xef\xef\xf9\xbf\x9a\x83\x3b\xee\x70\x64\xad\xec\xbd\x4f\x92\xf9\xd9\x73\x05\x4e\x2d\x98\xcc\x4e\x8e\x3d\x1c\xd0\xb7\xc3\x83\x7d\x7d\x96\x44\xa0\xca\x36\x0a\x67\x5a\xc4\x97\x00\xff\xdc\xbd\x9c\x98\x50\xce\x9f\x75\x30\xcc\x81\xf0\xeb\x26\xfd\xef\xbd\x4f\xf8\xfb\x3f\x7c\x64\xfd\xcd\xfc\x5c\x9c\x4e\x1e\x47\xd2\x73\xbe\x7f\xc7\xa0\xb6\xf3\x39\x90\xa7\xe9\x80\x60\x07\x85\x72\x77\x15\xa0\xd8\x2b\x71\xa6\xec\x12\x6e\xd2\xce\xe9\xc4\x1e\xcc\xe7\xbc\xb3\x5b\x6d\xff\x62\xc3\x92\x5e\xf1\xc0\xa6\x88\x96\xa4\x5b\xdd\xf1\xc9\xac\xb4\xd7\x91\x8b\x7f\xf6\xef\x16\x5b\x96\xeb\x73\xa5\xbb\xa0\xee\x7b\x56\xb9\x9b\xcc\xf7\xc8\x9e\x82\xac\x32\xb7\xae\xd7\xb1\xbd\x35\xcb\x04\xdd\x6d\x9a\x06\xfa\x76\x65\xac\xf2\xf0\xbc\x3f\xbb\x7f\x4a\xda\x3b\x8f\x17\xb7\x7a\xfa\x8b\x93\xff\xf1\x14\xb8\xb1\x78\xc0\x30\xa1\xcc\x73\xff\x65\x99\x81\x5d\xf3\x26\x79\x9e\x3b\xb7\x91\x3d\x25\xce\xdf\xf3\xf7\xa9\x77\xec\x95\x31\x13\x3c\xbb\x8e\xfb\xb3\x1b\xa2\x32\x3c\xcb\x0e\xe7\x72\x34\xc3\xcd\xbc\x54\x0e\x04\x71\xa2\x42\x9d\xbd\xa6\x16\xc7\x72\xf6\x04\x8b\x7a\x4d\xd8\xed\xcd\x79\x16\x70\x0b\xb0\xad\x1c\xaa\x67\xf6\xac\x21\xcd\xe2\xf7\xa5\x70\xf6\x90\x96\x48\x8e\x5c\xff\x64\xfd\x43\x1c\xc4\x00\x3f\xc7\xfa\x63\xf0\x90\x36\xf2\xef\x75\x57\x6d\x19\xba\xc7\x5a\xf6\x02\x50\x14\x9c\x7c\xe6\xc8\x33\xc0\x80\xa6\x92\x92\xbf\x04\xca\x36\xcd\xe6\x8d\x2b\x5e\x71\x1f\xf8\x07\x7b\xd9\xc4\x47\x73\xa8\x09\x73\x66\x5d\x0c\x4d\x60\x27\x6d\x73\x9b\x5b\xe0\x55\x38\xb0\xf7\xca\xf7\xa4\xad\xce\xc1\x03\xc2\x6d\xed\xc9\xf1\x0e\xc1\x03\x4e\xfd\xf9\x89\xf1\x0e\x77\xbf\x4c\x1a\x98\x3a\x6f\x9d\xa3\x41\xdb\xac\x81\xc5\xf1\x54\xc7\x07\xcd\x71\x03\x2d\xb3\x6f\x3a\x46\x3e\xac\x64\x67\x45\x9d\x75\x5a\x74\x77\x21\xfb\x64\xe4\x35\xa7\x65\x55\xce\x1c\xb1\xb0\x74\x67\xca\xf5\xf1\x1c\x56\x48\x9f\xb3\xf3\xa5\xd1\x9c\x4d\x41\x9e\x4e\xb5\xe7\xcf\x71\x5a\xfd\xb5\x9c\x9f\x95\xc8\x72\xde\xfb\xcf\x74\xbe\x79\x22\x84\xab\xe7\x33\xd5\xd9\xf2\xe8\x7e\x6e\xa2\x67\x00\x10\xc2\x7f\x9f\x17\xf1\xd7\xc1\xb6\xae\x21\x3d\xc1\xff\xbc\x40\xce\xc3\x78\xba\xe1\xbf\xea\xff\xd0\x39\xd2\xff\xb9\x65\xcc\xf7\xbf\xf8\x79\x08\x87\x36\x00\x93\x22\x29\x94\xc2\x01\x40\x5f\x42\xbe\x61\x5d\x18\xf2\xac\xa3\x0c\x13\x17\x9e\x27\x4e\xfa\x74\xdb\xb6\xc4\x18\x73\x13\xe2\xbf\xf9\xcb\x05\x36\x71\xa5\x72\x5a\x83\x6d\x3d\x9e\x71\x36\x1d\x37\x08\xef\x73\xec\xe7\x98\xd6\x8a\x45\xc6\xd9\x49\xb0\xfb\x3b\x6a\xa2\xc4\x6c\x0c\x38\xb6\xec\xd2\xb0\xab\xd6\xf3\xfa\xe6\x70\x24\x83\xbd\xac\x2f\x7e\xf6\xe2\xd8\x06\x4d\xb6\x49\x79\xd3\xc0\x09\x09\x3c\x6f\xb3\xfe\xf9\x0c\x4e\xb1\xff\x62\x1b\xd7\x47\x07\x39\xfd\x3e\xb2\x36\x07\xef\x8b\x73\xa5\xbd\xbe\xd9\x7c\xbf\xed\xce\xb5\xf3\x8c\xb3\x79\x7b\xf3\x08\x37\xdb\xed\x8d\xcd\xcf\xf2\x8b\xdc\xb3\x2e\xed\xb6\x9b\x2f\xdd\xe1\x5e\x73\xc9\xb7\xe9\x39\x5f\xc9\x85\xe3\xec\x3f\x9f\x8b\xc8\x1c\x08\xf2\x39\x40\xe6\x20\x34\x96\xfe\xbb\x7e\x72\x1e\xc8\xf0\x3c\x0c\xca\x90\xd6\x6c\x1d\xe9\x7f\x1d\xe2\xe7\xa4\x14\x51\x80\x99\x8f\x26\x1c\xdf\xd4\x06\xe8\xad\x97\x6e\xcf\x1c\x05\x30\x9e\xab\x5b\x26\xe6\x43\xc1\x8b\xb0\x38\x4b\xf2\x0f\x7e\xeb\x08\xd1\x2c\x33\xf7\x08\xb7\xfb\xdc\x1b\x7b\xca\xbd\x1e\x3b\x0a\x70\xb3\xca\x36\xf9\x6c\xb1\x9d\xcd\x75\xa9\xdf\xe4\xfb\xd8\xca\x89\xeb\xf7\x51\xde\x27\xc8\x72\x32\x37\x91\xf3\xcd\xeb\x03\x33\x9a\xfb\x9b\xbb\xdc\xa5\x9d\x71\xf2\x77\x3b\xf7\x9c\x53\x31\x73\x71\xe7\x55\xee\x36\x17\x67\xe6\xf3\x36\x2f\xee\x1e\x97\x49\x0c\x99\x96\x9d\x84\x8c\xed\x77\x06\xb7\xc9\x94\x98\x64\xf7\x94\x91\xfe\x50\x84\xb0\xb3\x31\x62\x54\xdd\x23\x88\x10\x6b\x47\x66\x6a\xcd\x35\x22\xc0\xfa\x10\xf3\xc0\xcd\x06\x62\x81\xd5\x22\x20\xab\x61\xe4\x39\x70\x99\x9f\x97\x34\x9c\x87\xc2\xf3\x3f\x39\x7c\xdf\x9a\xcc\x01\xf8\xbf\xee\xc1\x1f\xe1\xef\x8b\x9d\xb3\x86\x74\xcd\x4c\x60\x94\x2e\x85\x92\x35\x19\xd0\x3a\x31\x65\x5e\xea\x47\x80\x45\x55\xf5\x8d\xed\xc6\x09\x37\x5f\xea\x67\x92\x7f\xf0\x5e\x42\x3c\x58\x54\x6f\xdd\xe5\x12\x4c\x14\x6f\x0b\xb5\xab\x23\xb9\x07\xeb\x17\x84\x6d\xb9\xbd\x93\x13\xeb\x3d\xc1\x6c\x18\xef\xf8\x92\x91\x46\x78\xbd\xa3\x3b\xb8\x58\x34\x10\xd1\xdc\x89\xf6\x07\x86\x73\x1e\x76\x40\x81\xa8\xb4\x48\x32\x8d\xfc\x6d\x4f\x7c\xa0\x73\x4d\x5f\x7d\x66\x13\x77\xcc\x33\xe9\xd3\xdf\x1b\x10\xd5\xe6\xe7\xe9\xcf\x5a\xef\x11\x67\x2d\x6e\x99\xfe\x78\xf6\x83\x78\x4b\xff\x4a\x37\x7b\xac\x49\xb4\xd3\x8f\x99\x06\xd7\x97\x43\xdc\xf8\xfb\x1f\x1e\x8c\x7c\x0e\x90\xf3\x40\x86\x38\x18\x92\x83\xfa\x74\x7f\x64\xfd\x77\xf9\xf3\x81\x2e\x95\x8c\xf4\xff\x8a\xf8\x9c\x04\x39\x0f\x84\xcc\x81\x58\xb8\x12\x50\x5b\x2f\x76\x7f\x9e\x38\x60\x36\x55\xa6\x26\x32\x15\x2d\x2e\x1e\x5a\x1b\xfd\xc6\x60\x5d\x48\x94\xe1\x16\xf7\x7c\x04\xa6\x6c\x31\xfd\xea\xf8\x10\xcc\xb5\x2c\x73\x49\x3b\x61\x8c\x2a\x7a\xca\x9a\x60\x59\x86\x71\x27\x83\x98\xe2\xcc\x75\xc4\xa7\x72\x61\x56\x8a\x85\x11\xd1\x51\x7b\x89\xf9\x73\x38\xe7\x61\x2d\x26\x74\x7f\x67\x18\x0c\xcf\xb5\xc8\xc3\x09\xf8\x1b\xfe\x1c\xce\x77\xa8\xeb\xb5\x41\x95\x56\x8f\xc1\xbb\xef\xd3\x70\x42\xfb\xb7\x61\xd2\xa7\x73\xd8\xa6\x9b\x62\xd0\xf8\x26\x09\x7b\x75\x14\x0c\xda\x5e\x34\x60\x8f\xce\xb8\x3f\xe7\xc0\x9d\xef\xfc\xe7\x3f\x7f\x9e\x1a\x78\x3c\x54\x27\xdf\xd7\x23\x39\xa8\x61\xff\x8f\xcf\x01\x91\x1c\x0c\xe9\x7f\x0e\xcf\x03\xb1\x01\x28\x21\x14\x4a\xe2\x60\xdf\x4e\x53\x28\xf3\x37\x02\xca\xd7\x85\xa3\x62\x2f\x03\x74\x75\x69\xcb\xe0\x7c\xc0\xe1\x8d\x8a\x28\xc9\x3f\xb8\x34\xe2\xfc\xdc\x64\xea\x71\xfb\x7a\x14\x2f\xbb\x6e\xa8\x66\x13\x88\xd4\xdc\x1c\xe3\x4a\xd6\x25\x2c\xd8\x9b\x6e\xfc\x8f\xc5\x39\x2c\x3c\x5e\x61\xf4\xca\xec\x2e\x42\xae\x8a\x9b\x44\x99\x1e\x46\xe4\xbd\x14\xe3\xbb\xa6\x22\x70\x78\xe9\x68\xba\xd9\x44\x18\x71\x9f\x43\x8d\x9b\xff\x5f\xbc\x83\x8e\x69\xbf\x12\x20\xaf\xa3\x3b\xf9\x67\x30\xa0\x58\xa6\xc7\xe8\x18\x00\x54\x2e\x01\x95\xfc\xbc\x20\x72\x3e\x1c\x87\xf7\x3c\xf8\xc6\xcf\x41\x20\xfd\xcf\xff\xc9\x01\xe0\xcf\x85\x21\x39\x98\xad\x7c\x9f\x9b\x9c\x07\x42\xce\x41\x20\x7d\xdf\x59\xb7\x00\x85\xd9\x13\xc6\x87\x9c\x05\x0c\x8a\x24\x02\x7d\x6b\x00\x9b\x74\xd9\x8d\xae\x7d\x80\x8f\x90\xaa\xb6\xa3\x09\xd8\xd1\xc6\xea\xe1\x76\xe3\xf1\x30\x63\xb3\xae\x93\x25\x13\xad\xd9\x8f\x75\x64\x19\x0b\x71\x67\xbb\x91\x9e\x88\x05\x0b\x17\xf7\xb4\x50\x0f\x9a\x76\xa3\xe6\xd8\x18\xdd\x26\x93\x7b\x38\x76\x59\x53\x5f\xdb\x38\x1b\xfb\x6b\x2e\xeb\x97\x19\x55\xa2\xa0\x29\xda\x60\x0b\x6d\x32\x2a\xdf\x6d\xd6\x6b\xa6\xfd\x40\x6d\xef\x2f\xea\x5b\xc3\x30\x00\x8f\xb4\x5e\x0e\xf7\x61\xc1\xa0\xca\x99\xab\xbf\x19\xd4\x69\x34\xf5\x0b\x9c\x5e\x60\xda\x71\xa0\xd9\x99\xf2\x2f\x0e\xe6\x3b\xff\x9c\x1b\xe6\x80\xf8\x7c\xdc\xdf\x1c\xd0\x41\xfe\xf3\x21\x7f\xf9\x48\xff\x97\xf4\xbf\xc9\x1c\x88\x10\x7e\x6e\x4a\x88\x06\x30\x33\x71\xcc\x67\xaf\x13\x80\x96\xbb\xf0\x45\xcf\x14\xc0\x2a\x53\xda\xdf\x31\x1b\x70\xcb\x97\xbb\xe4\xa0\x0b\x44\x68\xa9\x74\x5a\x37\x01\x89\xc1\x6a\xc5\x96\x42\xe8\x5d\xd6\xae\x29\x6d\x31\x0a\x58\xfb\x4d\xbd\xc8\xec\x08\xba\xb7\xd5\x68\xa6\x9a\x6a\xe1\xf7\x1e\x5b\x4d\x35\xe3\x60\x7c\x3d\xf6\x48\xf3\x39\x6d\x0d\xbe\x5d\x58\xa0\x59\x6c\x68\x81\xaf\x95\xe3\x35\xef\xeb\x9f\x00\xa7\xfe\x97\x46\x89\xc1\x74\xfc\x78\xb5\x59\xab\xc0\x40\x18\xf8\x12\xae\xe5\x64\x10\x0c\x70\x72\x35\x15\xff\xee\x87\xda\xa9\x41\x9d\xe2\x46\x72\x30\xc3\x79\x40\xfc\xfd\xff\x37\x07\x54\xca\x7f\x5f\x0f\xf2\x79\x80\x1d\x0d\x23\xcf\x81\xbf\xe7\x81\x90\xeb\xc0\x87\xcf\x55\xd8\x2d\x05\x28\xdf\x28\x14\x0f\x11\x40\xf3\x9c\x50\xb7\xa3\x20\x60\xf2\x5e\x5c\xc7\x56\x18\x70\x70\x9b\xde\x62\x59\x0f\x04\x4e\x90\x51\x62\x14\x00\xb1\x8a\xb2\x37\x18\x1f\x81\x34\x6d\x65\x3b\x73\x65\x20\x33\x56\xd9\x99\xf4\xf9\x8d\x5b\x80\xad\xa7\x95\x7b\x8c\x6c\x80\x3d\x89\xaa\x02\x86\x3f\x80\xa3\x33\x54\xaf\x1a\x7c\x04\xce\xd6\xa9\xa5\xe8\x07\x03\xe5\xc1\xaa\xa5\xfa\xa2\xc0\x3d\x7d\xf5\x29\xd4\x38\xe0\x99\x94\xfa\x58\xea\x14\xe0\xdd\x05\xb5\x02\xbd\x58\xe0\x6b\x95\xca\x75\x3d\x23\x80\xdb\xa0\x64\xa8\x9d\xcc\xe3\x82\x42\xfb\x59\x43\xaf\x93\xe4\x80\x1e\x38\x0d\xe9\x30\x07\xc4\xe7\x02\x0f\xf3\x79\x80\xbf\x39\x98\x95\x1e\x23\xf7\x01\xc9\x81\x0c\xfb\xff\xfc\xf3\x82\x55\xca\xef\x07\x1b\x50\x7e\x33\xfe\x2e\x6b\x0b\xa0\x6f\x2b\x7c\xcd\xbc\x19\x60\x16\x4f\x26\xcc\x8c\x00\x8f\xa8\x29\xf1\xf4\x1d\x40\xe8\x3d\xa9\x13\x83\x7f\xcf\xfb\x2c\x73\xce\x24\x08\x58\x98\x27\x73\xd5\xd8\x14\x58\xd6\x22\x5b\x44\x7b\x05\xac\xb9\x21\xb7\x86\x56\x04\xe4\x3e\x56\x78\x61\xf8\x05\xd8\x2d\xa0\xf4\x40\x5f\x0f\xf8\xe7\xad\xe2\x14\xdd\x7a\xe0\xd4\x3d\xf9\x44\xdd\x4f\x40\x99\xb1\xa2\x24\xc9\x3b\xe8\x1c\x03\xee\x47\x2b\x6e\xd5\x8d\x05\x9e\x4f\x52\x9e\xaf\x93\x0b\xbc\x9b\xa9\xd8\xaa\x33\x0d\xe8\xf2\x93\xef\xf9\xc0\x9f\x0f\xf7\x64\x2c\xff\x73\x20\x7f\x0e\xd6\x79\x7e\x1f\x8e\xf0\xf3\xc1\xc8\x5c\x2c\xf2\x1c\x5c\x7d\x7c\xe4\xf3\x80\xe4\xa1\xa2\xf8\x9f\x2b\x7c\x2c\x87\xd4\x3e\x7c\x48\xe9\x7c\x5e\x88\x95\x00\xc8\xa5\x8c\xb9\x38\xcc\x3f\x38\x02\xf4\x14\xd1\x57\x46\xb3\x00\xfb\x85\x93\x8c\x0c\x68\x80\xcf\xf4\x49\x30\x9c\x06\x44\xa8\x48\xb2\x0c\x55\x81\xb9\xf1\x53\x3f\x1b\x5a\x02\xa9\x1e\xd3\xd5\xf4\xcd\x80\xa5\x82\xd3\x45\xf5\x4f\x03\x6b\x98\xd2\x2f\x75\x75\x81\x8d\x89\xd3\x53\xf4\xc4\x81\x1d\x6f\x67\xae\xd3\x11\x00\x8a\x97\x48\x1f\xd1\xaa\x05\x8e\x46\x49\x6f\x1e\xe6\x1d\x14\x80\xcb\xbf\x67\xfe\xd0\x7c\x0c\xd4\xc4\xc8\x14\x69\x49\x01\xf5\x87\x65\x57\x68\xb2\x80\x67\x5a\x32\xd1\x4f\x97\x0d\xbd\xbe\xbf\x39\xa0\xe3\xfc\xcf\x83\x45\x37\x31\x92\x83\xe1\xeb\x52\xfb\x21\x25\xf3\x50\x48\x0e\x24\x48\x7c\xe4\x3a\xb0\x5e\x3f\xa4\xc6\xb4\x21\x0e\x84\x1a\x0c\x08\xb7\x51\x28\x86\xc6\x80\xca\xce\x71\x92\x86\x5e\x00\xcd\x45\x68\xbd\xe1\x24\xc0\x7a\x9e\xe8\x74\xdd\x49\x80\x8b\x92\x88\x90\xae\x0f\x10\x20\x2d\xe6\xad\x2d\x0a\x84\x9f\x10\xd3\xd3\x09\x07\xe2\x66\x4f\x2e\xd1\xc9\x01\x16\x98\x4b\x2c\xd3\x5a\x01\x64\xac\x94\x90\xd1\x6c\x07\xb2\xa4\x25\x6d\xb4\xd5\x80\x8d\xe6\xd3\xec\xb5\x02\x80\x3c\xa9\x69\x7b\x34\x7b\x80\xa2\x59\x52\x1b\x35\x6f\x00\xff\x7c\x9e\x7e\x4d\x23\x04\x38\xf6\x58\xaa\x54\x7d\x11\x70\x3e\x4a\xaa\x4a\xcd\x1a\xb8\x7a\x68\x5a\x9d\x66\x3a\x70\xdb\x59\x86\x37\x25\x89\xe4\x40\xfe\xf6\xbd\x87\x7e\xcf\x1f\x7d\xc6\x88\xe7\xf7\xca\xad\x37\x39\x34\x46\x0f\xd0\x88\x33\x6d\x10\xd4\x07\x8c\xcd\x59\x12\x62\x06\x80\x85\x91\xf5\x56\x89\x64\xc0\xba\xc5\x69\xff\x0c\x59\xc0\x61\xb6\x8f\x87\xc2\x7e\xc0\x31\x2d\xf2\x90\xfa\x45\xc0\xe9\xe3\xbc\x71\x7a\x47\x01\xc7\x7d\x4b\xd9\x26\xe3\x01\xfb\x63\x1b\x67\x5a\xa8\x03\x76\x13\xf6\xd4\x5b\xd7\xa3\xc5\xc6\xa4\xa4\xd8\xf1\x21\x5a\x59\x47\xab\x4c\x1d\x4b\xd1\xca\xb0\x6a\xd2\x72\xe4\xe2\x85\x85\x60\xe7\x1c\x67\x25\xc0\x3c\x91\x9b\xe7\xa4\x01\xd0\xef\x13\x12\x36\x2c\xc0\xc4\x8e\xb8\x6a\xd6\xdc\xe3\x61\xb2\x85\xd8\x61\xb1\xe5\xab\x94\x49\x2b\x91\xc3\xf0\xfb\x38\xdd\xe4\x37\xb1\x85\x21\xf2\xda\xce\xa4\x82\x38\x6e\x7e\xbc\x99\x65\xba\x9a\x28\xb6\x48\x7f\x54\x6e\x9a\x40\x5c\x33\xeb\xa8\x5f\x6f\x3a\x8e\x78\x49\x9f\x78\xe7\x05\x5d\x86\x78\x68\x26\x5f\x23\x6f\x32\x11\xf2\xb4\x6f\x37\x5b\x4d\x4b\x40\x31\x71\xfe\xaf\x3e\x98\x4b\x50\xfe\x63\x2e\x88\x82\x87\xc9\x8a\x31\x6f\xfe\x35\x17\x63\x85\xf9\x57\xd1\xc3\x00\x73\xa5\x65\x8d\xa4\x3f\x60\xfb\xd9\xe9\xa4\xf4\x39\xc0\x59\xc8\xeb\xb7\xd2\x32\xc0\xe9\x75\x58\x87\x7a\x37\xe0\x22\x32\xd7\x91\x5a\x09\x38\x75\x2e\xd6\x36\x49\x02\x1c\x05\x37\x0a\x31\x73\x01\x3b\x91\xbd\x61\x36\xca\xc3\x7d\xa8\xb7\x9c\x58\x55\xe7\xf4\x13\x77\x18\x9b\x9a\x25\x9d\x2f\xa3\xc2\x22\xf7\xcb\x68\x57\x55\x74\x98\xbf\xe0\x26\x38\xdf\x24\xfb\xc0\xf9\x65\xfa\x98\xf0\xb2\x34\xe8\xae\x36\xdd\x49\x04\xb3\x2e\x7e\xb6\x30\xad\x26\x82\x58\x0f\xdf\x4d\x34\x3d\x44\xa4\x31\xb7\xb5\x04\x9b\x4d\x26\x9c\xac\xe4\x1b\x3f\xd1\x77\x12\xcb\x99\x4b\x1e\x86\xd1\x6f\x13\x9b\x18\x2f\x6b\xdf\xd3\xa5\x88\x2a\xb3\x57\xb7\x29\x74\x57\xe2\x89\xd9\x84\xca\xd9\xf4\x06\xe2\x39\xfd\xd9\xf5\x35\xf4\x9d\xc4\x6f\x53\x3a\xfe\x83\x0b\x1a\xe9\x6f\x91\xf7\xde\x15\xd7\x1a\x29\x8f\x55\x01\xf4\x3a\x8c\xdf\x4e\xdc\xfb\x87\x83\x60\xed\xb0\xa4\x49\x3e\x05\xec\x2f\xd9\xef\x95\xee\x04\x9c\xb7\x78\xcc\x55\xbc\x0f\xb8\xb4\x86\x38\x6b\x3c\x06\x5c\x1c\xe3\x3d\xa8\x6b\x00\xe7\xfd\x8b\x1d\x4c\x77\x02\x4e\x96\xeb\x4b\x58\x3d\x80\xfd\x8c\x3d\x45\xb6\x6d\xa8\xb5\xf9\x54\x62\xe9\x6c\x8d\x52\xcb\xfc\x5b\xf7\x5c\x19\x38\xce\xa4\x3e\x1f\xe7\xda\x85\x5d\x0c\xa3\xae\x30\x0f\x1a\x06\xcc\x37\x73\x73\x9c\xf6\x90\x7d\xe8\xbb\x40\xaf\x22\x44\x6d\x16\x7e\xbf\x41\x8f\x23\x74\xac\x45\xdb\xd9\xf4\x9b\x84\xa6\x75\xd8\x9b\x18\x33\x4f\x42\xd5\xba\xbe\x39\xdd\xac\x98\xb0\xb0\x1a\x78\xd4\x6e\x6e\x40\xd8\x5a\x3d\xbb\x5f\x69\x96\x40\xac\x66\x66\xdf\x89\x31\x7f\x44\xcc\xb5\x74\xac\x9a\x67\xbe\x82\xd8\xc5\xf8\x5a\xe1\x4a\x6f\x20\x3e\xd0\x4d\xaf\xae\x31\x5b\x49\x74\xd0\x79\xa7\xc1\xdf\x5c\x10\xdf\xf7\xe6\xf7\x61\x42\x8e\x1e\xef\x1e\x9b\x62\x83\xc1\xce\xb1\xe3\xfe\xe4\x41\xfc\xcd\x07\x91\x7d\x70\x11\x76\xcf\x55\x6c\x01\xdc\x0a\x82\xa4\x35\x77\x01\x6e\x5e\xf1\x71\x86\xd6\x80\xab\xd9\x22\x17\xb3\x2c\xc0\xf9\xf0\xfa\x1c\xeb\xf9\xf8\xe0\xb0\x69\x4f\x91\xc3\x37\x9c\xb6\xdd\x5b\x9a\xe4\xba\x07\x9b\xac\xf2\x6e\x3d\x71\x67\x63\x0d\xf3\xdd\x8b\x74\x8f\xad\x58\xc7\x48\xe8\xae\xf2\x74\x47\x87\x79\x0b\x37\xc1\xb9\x06\xd9\x66\xdb\xb9\xcf\xec\x85\x7f\x6f\xa6\x77\x10\x63\x6d\xbe\x7f\x11\x36\x9f\xcd\xbd\xe8\xd0\xf7\xce\xd3\x8c\xe0\x76\xdb\xb9\xb7\x6e\x31\xb7\x27\xc6\xd8\x5e\x7a\x66\x68\x5e\x4d\x08\xda\x56\x3d\x6c\x36\xf7\x26\xec\xac\x5e\xd7\xed\x30\xe3\x10\xa9\xac\xf5\x35\xf7\xcd\xcb\x88\xc5\xac\x35\x95\xb3\xcd\xcd\x89\xa3\x16\xb8\x56\x6d\x76\x8f\x78\x62\x96\x73\x79\x87\xf9\x6d\xa2\xce\x9c\x8e\xff\xe0\x82\xf8\xe7\x82\xa4\x7e\x23\xcf\xdf\x8a\xa0\x6e\xa1\xfc\x6b\x0e\x02\xc9\x83\x58\x4c\x30\x35\x14\xcb\x05\x6c\x3c\x18\x82\x92\xba\x80\xd3\x15\x07\x2f\x99\x23\x80\xeb\x67\xb7\x60\xe5\xd1\x80\x7b\x47\xe0\x5e\xad\x3b\x80\x3b\x66\xc7\x18\x5e\x07\xdc\x56\xa6\x2f\x33\x8f\x05\x5c\x92\xd6\xcf\xb0\xd9\x8f\x47\x8e\x87\x76\x9f\x73\x2a\xc7\x41\xdb\x9e\xd2\x64\xb7\x0c\xcc\xb3\x9e\x7e\x3b\xcf\xcb\x0e\x71\x2c\x9f\xd6\x10\xaf\x1d\x88\x67\x7c\xff\xa5\xe9\x6d\x8f\xc7\x16\x4c\xae\xb3\xab\x15\xa7\xde\xec\x1f\xee\x43\xfb\xd8\x9f\xd1\xe6\x9e\xdc\x63\x8e\x71\x1d\xeb\xcd\x33\xb9\x57\x1c\xda\xde\xd6\x9a\xbf\xe7\xde\x72\x38\xf1\x5c\xc3\x62\x16\xf7\x85\xc3\x98\xc7\x95\x0c\x43\xee\x73\x87\x39\xf7\xfb\x18\x75\xdc\x8f\x0e\x33\xee\xcc\x67\x48\x12\x86\x36\x21\xd5\x8d\x0c\x27\xc2\xce\x7a\xf7\x8d\x79\x16\x39\xc4\x06\xe6\x97\x2b\x9b\x2c\x9e\x13\xfb\x19\x6f\xca\x26\x32\xd6\x10\x07\x99\xa3\xff\xdd\x87\xe1\x79\x41\x23\x7c\x3e\x72\xfe\x3f\x39\x07\x81\xcc\x83\x60\x3a\x18\x35\x88\x3e\x02\xec\xd8\x16\x53\x24\x03\x00\x97\x42\x9b\xa5\xd2\xfe\x80\xbb\xa8\xeb\x2d\x65\x1b\xc0\x73\x47\xe0\x68\x1d\x1f\xc0\x4b\x21\x66\x8b\xd1\x52\xc0\xe3\x79\xba\x01\x93\x03\xb8\x2a\xe5\xb4\xdb\x6a\xa1\xcc\x69\xd9\x9e\x78\x57\x41\x2c\xb5\xd7\x2f\xb5\xf3\x4c\x05\xcb\x86\x72\x27\xc1\xd7\x03\x72\x96\x49\xaf\x45\xfd\x4d\x31\x95\x25\xd2\x4f\x0f\x88\x43\xa5\x45\x0e\x97\xea\x16\xda\xfb\xd8\xc2\x87\xeb\xea\x1a\xf2\x5d\xcb\xe2\x38\xd7\xcd\x75\xd7\xfb\x72\x46\x24\xd7\xd3\xf5\xc7\x4b\x41\xc6\x18\xee\x6e\xa7\xb6\xa6\x13\x8c\x6d\xdc\x12\x27\xff\x87\x8b\x78\x7c\xdc\x98\xba\x89\x4c\x01\x6e\xa7\xc3\xa8\x1a\x71\x96\x2e\xf7\x9d\xc3\xad\x9b\xaa\xcc\xa9\x04\xcb\x46\x83\xe4\xc2\x2e\x9d\x63\x4e\x26\x56\xb1\x9a\xcf\x3b\x32\x2e\x13\x25\x8c\xb0\x11\xe7\xe3\x8f\xff\xea\x83\xcc\x3c\xdd\xd5\xa3\xef\xff\x99\x83\x40\xe6\x41\x90\xf9\x20\x4e\xb9\x66\x9a\x92\x53\x01\xf7\x5c\xab\xcd\x33\x3e\x00\xde\x0d\x2e\xcb\x54\xbc\x01\x5f\x43\x5f\x5d\x3d\x43\xc0\x27\x60\x56\xba\x49\x3d\xe0\xd5\x95\xf6\xde\x6a\x2b\x3e\xbb\x9b\xac\xd5\xb1\xff\x89\xf5\x2e\xcb\x8a\xfa\x3d\x72\x87\xb9\x41\x59\x9b\xf5\x77\x33\xfd\x93\x30\xce\x72\xdf\xdb\x75\x01\xe5\x10\x61\xc9\x73\x64\x03\xc7\x41\xcb\x02\x5c\x01\x0f\xda\x4f\x67\xc6\x2d\x4e\x9b\x27\xbb\x93\xce\x94\xe5\x74\x7b\x9e\x79\x7b\x98\x79\x80\x3b\xd1\x53\xa3\xd9\x8e\x25\xc3\x35\x75\xbf\xf4\xf8\x0d\xf3\x27\x37\xd5\xd5\xbf\x4e\x96\x75\x97\xbb\xc1\xa5\xe2\x4e\x11\xab\x95\x7b\xcc\x79\x4b\xa5\xa6\xe5\x1c\x6e\xad\x93\x5d\x39\xc1\xfa\x4c\x48\xd8\xb5\x5c\x9d\xca\x7a\x43\xa8\xda\x7e\x3f\x6f\x6f\x35\x85\x30\xb4\x3d\x5b\x6a\xc4\x6a\x23\x96\x59\x9e\xf9\xaf\x73\x41\x9f\x97\x7b\x30\xf6\x81\xe6\xf1\x41\x95\xdd\xa4\xb9\x71\x34\x1b\xd0\x9b\xa9\x6d\x2a\x48\xf9\x93\x07\x61\xff\xc5\x40\x43\xf4\xd4\x1f\x2e\xc6\xa7\x85\xe5\x39\xa3\x0b\xf0\x4b\x70\x62\x2a\x87\x03\x7e\x4f\xfd\xe4\xf4\xe3\x01\xbf\xf2\xc8\x5e\xfa\x02\xc0\x57\x7e\x81\x91\x55\x13\x6e\x79\x7a\xad\xf1\x74\x8e\x47\xa6\xab\x63\xe1\x25\xcf\x95\x24\x37\x48\x34\xda\xde\xb8\xd7\x1e\xdc\x4e\x5c\xb6\x4a\xff\xb0\x34\x54\x9f\xe4\xe4\xfa\x25\x99\xb9\x9c\x85\x7e\x02\x5f\xa5\x58\xba\x9c\x2c\x3f\xf9\x77\xc9\x96\x2c\x4e\xba\xbf\xdc\x8b\x26\x4b\x2e\x67\xbb\x5f\xf6\x93\x30\xcb\x17\x9c\x2e\x6f\xb9\x86\x09\x96\x75\x5c\x3d\x8f\x9a\xdb\x74\x6b\x3d\xae\xbe\xa7\x49\xd5\x1a\xab\x5e\x6e\xbc\x5b\xfb\xb5\x48\x6b\x4b\xee\x7e\x97\xeb\x57\x9e\x5a\x5d\xe0\x3e\x75\xd2\x3f\x9f\x61\x33\x9a\xfb\xca\xc9\xac\x94\x65\xf5\x92\xa0\xda\x09\x9e\xbc\x69\xbd\x8f\x60\xd9\xae\xc1\x7f\x70\x72\x43\xeb\x60\xec\x58\x35\x57\xca\xbf\xfc\x7f\x72\x0e\x02\xf3\xa2\xf6\xbb\x89\x9b\x00\x97\x20\xbd\x02\xd1\xe9\x80\x0f\x93\x16\x2b\x7e\x05\x08\x14\x31\xbf\x3b\x3d\x0d\x08\x59\x6b\xb7\x5a\x69\x2e\x10\xbc\xc4\x4b\x45\x6f\x15\x10\x2c\x1f\x2e\xc4\xd8\x8e\x77\x01\x53\x93\x26\xd9\x75\x61\x9f\xf7\xd6\xec\x60\xb7\x58\x18\xb8\xaf\x2d\xec\xf3\x6b\x1f\xe6\xe5\xb6\xda\xfd\x53\x77\x39\xfc\x16\x41\xb5\x7e\xd6\xb1\x6f\x96\x2e\x71\xd9\x52\x83\x5d\x1c\xba\xb9\xab\xcd\x32\x9d\xdd\x1c\x62\xf4\x61\x96\xd5\x67\x76\x75\x68\x45\xeb\x3b\xeb\x79\x1c\x4a\xc8\xf4\x26\x69\x9b\x09\x1c\x5a\x50\x49\x43\x85\x8d\x25\x67\x69\x40\xf0\x70\x4e\x16\x9f\x87\xba\x6e\x67\x5b\xc9\x9d\xe0\x7d\xf6\xd2\x16\xdb\xf5\xdc\x68\x0f\xb1\x0b\x17\x6c\x07\xb8\x49\xee\xfb\x4a\xb6\xdb\x5e\xe2\x5e\x73\x31\x39\xbe\xd4\xae\x8e\xdb\xe4\x1c\x72\x24\xc7\xf6\x39\x21\x67\x7f\x14\xff\xc3\xc9\x91\x7d\x98\xa0\xab\xc0\x3b\x1f\x55\xac\x54\xd8\x63\x2e\xfe\x99\x83\x40\x72\x10\xee\x5a\x7a\xf3\x45\x73\x80\xc0\xdd\xfa\x67\xc4\xa7\x01\xe1\x26\xf4\x88\xe9\x41\x40\xe4\x36\x1b\x28\x8f\x05\x22\xba\xdd\x8f\xeb\x95\x02\x21\xdd\xc1\xcd\x0c\x2d\xdc\x0b\xd6\x9c\x37\xda\xe1\x3b\xa2\xfc\x72\xb3\xce\x7b\xeb\x80\xe2\x19\x51\xb0\x36\xc8\x88\xd8\xe4\x12\x79\xce\x39\xe2\x3a\x21\xe7\x40\xa9\xef\x89\x39\xc2\x6d\xb1\x71\xfe\xf6\x34\x4e\x86\x33\xc7\x2a\x6f\xe0\x6b\xf4\xfa\x0e\x33\x9b\xb1\xec\xa9\xd1\xc9\xaf\x53\x6c\x5e\xb1\x5d\xa2\x02\x9a\x2e\xd9\x0e\xb0\x97\x45\x46\xd7\xef\xb0\xbb\xc2\xae\x09\x4f\xbc\x27\x66\xaf\xca\xfe\x1e\x66\x72\x93\xb0\x9f\xcf\x99\x15\x14\x51\xae\xe7\x20\xc1\xd9\x11\x70\xf7\x52\x82\x7d\x1e\xe7\x87\xaf\xc9\xd9\x33\x0e\x6b\xb8\x62\x3e\x96\x67\xe2\x1d\xfc\xb8\xce\x9e\x8f\x4e\x50\x1c\xce\x70\x33\x3c\x04\x0e\xa5\x3a\x9e\xe3\xe6\xbb\x0d\xfc\x13\x6a\x1f\x42\x8c\x77\xd4\xf8\xf7\x7e\x18\xe2\x40\x28\xfb\x34\x14\x07\x75\xca\x61\xa5\x51\x3c\x9f\x2b\x58\x41\x48\xe0\xf2\x9f\x1c\x04\x92\x83\xf0\x8f\xd2\x08\x14\xf6\x07\xc2\xec\x74\xee\x4e\x0a\x03\x62\xac\x0c\x7f\x4e\x5d\xfd\x87\x8b\x99\xfd\xc0\xf9\x95\x6e\x2d\x30\x6b\x62\xc0\x4e\xc6\x1d\x9c\x0d\x9b\x14\x27\xe8\xb4\x0e\x8a\x41\x51\x99\x0b\xfd\x17\x11\xa7\x7c\xc2\x76\xfc\x0e\x8f\x23\x14\xdc\x68\xe7\x9a\x62\x17\x72\x0f\x39\x8a\x3d\x52\x9c\x1b\xc3\x75\xb7\x9d\xf2\xeb\x7d\x82\x5a\xd7\x74\xdb\xd0\xfe\x8f\xf3\x9c\x5e\x77\xd9\x87\x0c\xc8\xcf\x7d\xd5\xa4\xe3\xb0\x68\x20\x7b\xce\xa9\xfa\xf9\x8e\xb1\x03\x75\x71\xa3\x6e\xab\x38\x4d\x64\x6b\xc7\xcc\xaa\xf0\x72\x1e\xc3\x8e\x8f\x7e\x72\xe5\xb4\xb3\x08\xbb\x35\x42\xee\xbc\xaa\x73\x3b\x47\x3e\x4c\xa4\x64\xb5\x33\x83\xb3\x2d\xb0\xf1\xc4\x38\x17\x75\x4e\x79\x40\xc6\x51\x77\x17\x11\xce\x0f\xbf\xd0\x83\x66\xce\x8d\x5c\x77\xaf\xe4\xfd\x2c\x17\x09\x6e\x94\xe7\xb9\xdd\x97\x5d\xbc\xb8\x45\xee\xcc\xff\x5d\x07\x63\xa5\x15\x4d\x07\x55\x5e\x42\x7e\xc6\xe8\x27\x80\xbe\xa5\x9c\xa2\xc0\x6e\xc0\x4e\x5d\xee\xcc\xd8\xc1\xe7\xc0\x33\x39\xa3\xb1\xdd\x7f\xe6\x62\xcc\xee\xd0\x92\x9c\x64\x04\xc4\xff\xa0\x3e\x99\xe2\x0e\x24\xb4\xd1\x7d\x65\xa5\x81\xc4\xd5\xf6\x1f\x74\xca\x81\xf8\x59\xbe\x79\x8c\x16\x44\x47\xef\x8f\xae\xf1\xf0\x25\x5a\xc2\x5c\x16\x3b\x04\xb7\x10\x86\xfe\xcb\xf2\x6f\xc4\x52\xb9\xab\x3c\xae\x9d\x6b\x4e\x90\xe7\xd4\x3a\x3d\x6a\x7c\x9c\x9a\xce\x29\xb4\xd3\xec\x5b\x95\x36\xe3\xbd\x98\xa3\x4e\xdf\xb5\xb4\xcc\xc6\x76\x67\x91\x7e\xaf\xe4\x0b\xf7\xcf\xba\xf8\xf4\x17\x2c\x98\x45\xce\x49\xbb\xfe\xc0\x75\xd6\x40\xd9\x9c\xcf\x97\x1e\xb9\x55\x0e\x3c\x9e\xb3\xf2\xec\x3a\x77\x23\xb6\x53\x0c\xe7\xe4\x23\xf7\x93\xec\xd3\x51\x2d\xc7\x98\x6e\x2f\x38\x46\x61\x63\xff\xb9\xe7\xde\xc9\x71\x0b\x0d\xdf\x37\xdf\x43\x9a\x53\x14\xb4\x71\x8f\xa2\xfb\x39\xce\x77\x7f\xa5\x5d\xc5\x1e\xba\x5c\x35\x9f\xcf\x3b\x6f\xb8\x7e\xe2\x16\xbb\xf3\x38\x31\xc3\xbb\x43\x7d\xd0\xa8\xe0\x3d\x27\x33\x65\x7e\x53\xfe\xe5\xff\x1b\xfb\x89\x94\x0c\xfe\x4d\x72\x10\xe4\x3c\x88\xd8\x4a\x59\xfd\x71\x00\x12\x2e\x29\xed\x15\xba\x06\x2c\xbc\xa7\xfd\x54\x72\x0e\xb0\x28\xc4\x68\xb7\x4c\x1a\xb0\xa8\xcb\x2a\x43\x6b\x1b\xb0\x70\xb9\xfb\x31\x8b\x16\x44\xcf\x7d\x1d\x5e\xed\x19\x40\xcc\x8d\xae\x4c\x1b\x1b\xe5\xc2\xdd\x1e\x7c\x6e\xdb\xf6\x04\x11\x4e\x85\xb7\xcf\xb9\xfe\x85\x61\xec\x67\x2e\xb2\xcf\x8f\x2e\x33\xfa\x5a\xed\xe4\xd5\x73\x6f\xc5\x89\xa7\x0f\x5d\xeb\x7a\xd7\x64\x5a\xdc\x3d\xe3\xa1\xdf\xa7\xb6\x64\xd9\x4d\x7b\x4f\xdb\xbe\x3b\x19\xa2\x57\x97\x7a\x99\xf6\xcb\x2d\xd4\x3c\x5b\xef\x3d\xb6\xff\xd3\x02\xa5\xd3\xe2\xde\xed\x03\x6a\x89\xbb\x8f\xd2\x7c\xac\x07\x2e\xcf\x5d\x49\xf2\x2f\xc5\x6d\xde\x37\xd8\x15\xd1\x53\x8a\x6e\xf8\xf4\xb3\x1f\x45\x1d\x2f\x28\xf7\x0e\xe6\xc4\x86\x4a\xe4\xf7\x7b\x3f\xe4\xec\x0e\x9e\xb9\xf5\xa0\x8f\x00\xe7\x53\x80\x44\xae\xa8\xd7\x27\xae\xb9\x4f\xd2\x9f\x75\x40\x31\x54\x70\x1b\x54\xe9\x3b\xd2\xb7\x46\xc5\x03\x3a\xb2\xa2\x79\x83\x7f\x9b\x1d\x1a\x6b\x4d\xf9\x57\x0e\x42\x84\xc8\xa8\x05\x83\x3a\x7f\xd2\xe8\x2e\x9e\xef\xb1\x45\x56\x58\x30\x09\x58\xe9\xa9\x14\x22\x52\x07\xac\x4e\xd0\xab\x99\x11\x05\xac\x5d\x6b\x6e\xa0\x7e\x0e\x58\xe5\xef\x78\xdf\x5c\x1b\xc1\x8b\x8c\x82\xbc\xbc\x25\xb8\xad\xf1\x71\x09\xa6\x73\x5c\xfb\x26\x47\xe6\x6c\x2c\x59\x18\xfc\xf5\x60\x90\xc3\xc9\x13\x2b\x0c\xdf\x1f\xf7\xd1\x7f\x10\xb9\xf6\x60\x8b\x91\xc7\xd2\x5f\x1d\x1b\xb8\xe4\x5c\xa8\xab\xc7\xfc\x02\x7b\x05\x57\x31\xce\x8d\x0d\xd0\xe8\xdd\xb1\xe2\xd0\x29\xe7\x00\xc1\xbe\x1d\x8b\xef\x1c\x5a\x1d\x58\xd3\x3f\x21\x83\xb5\xff\x41\xa0\x62\xff\xa3\xe4\x2f\x7b\xda\x02\x77\x0c\xe8\x25\x45\x17\xdc\x0a\xac\x1d\x38\x34\x8f\xc8\xd7\x08\x7c\xce\xd6\x8e\x6b\xc8\xcd\x0b\x4a\x60\xaf\x8d\xf9\xb4\xa5\x2c\x50\x85\xfd\x23\x6a\xc6\x86\xfc\xc0\x51\x9c\xb0\x30\x89\x9c\xc7\x81\xd7\x38\x0b\x43\x19\x6b\x36\x07\x1c\xe4\xbc\x0e\x78\x33\xd8\x87\xa1\xe7\xa3\x80\x91\xb4\x3b\xef\x7b\xe5\xdc\xc9\xbc\x7d\xa1\x77\x68\x34\xef\x7b\xa6\x7d\xfa\xe0\xf7\x65\x20\x88\xef\xe3\x90\xfe\x6f\x86\xd6\x28\x81\x41\xcd\x56\x1e\x9d\x32\xa8\x9b\x8d\x44\xae\x0e\x6a\xde\x1b\xd5\x18\x09\x59\x20\xbf\x98\x66\xa9\xd4\x0a\x6c\xab\xb0\x11\xa4\x1f\x40\xdc\x7a\x49\x6f\x47\xaf\x27\x3f\x3e\x2f\x76\x8a\x15\x9e\x77\xf2\xed\xe8\xf9\x57\x96\xd7\x2f\x97\x69\x3c\x19\xbb\xbe\xf8\x57\x0e\xb7\xf6\x6c\x84\x75\xd5\x92\xdc\xcc\xaa\xac\xe0\xe0\xce\x31\xf9\xe5\xe7\x0e\x84\xe6\xfd\x8a\xd8\x1a\x72\x4c\x26\x5c\xff\x77\xcd\x06\xe3\x03\x8b\xc3\xbf\xf4\xdc\x5a\xe3\xb8\x47\x3d\x22\xb9\x77\x4b\x96\xd8\xae\x9f\x11\xc5\x7d\x96\x99\x13\xf2\x7e\x46\x5c\xec\x9f\x9c\xd1\xb5\xad\x3a\xdc\xb8\xbf\x2e\xe5\xd5\x26\x8f\x88\xa5\x03\xea\x0b\x22\xd6\xfd\x8e\x30\x1e\x38\x3f\xdf\x82\xcc\x3d\xc9\x5e\x1a\x9e\xc8\xce\x8f\x69\x5d\x29\x15\xbe\x87\xfd\x29\xea\xe3\x0a\x81\xb0\x68\x8e\x73\xb8\xee\xb2\x33\xa1\x5b\x38\xa7\x83\x19\x00\x65\x85\xc2\xe8\xc1\xd7\x3f\x69\xd4\x14\x26\xef\x5c\x7c\x3e\xe6\x3d\x6f\x1d\x3c\xa3\x8c\xf0\x3d\xe7\xf0\xf3\xfe\xc9\xb9\x20\x24\x07\x40\xe6\x01\x14\xf1\xef\xbb\xfe\x23\x21\xab\x2e\xf4\x08\x38\x12\xab\xe5\x27\xfd\x12\x38\x6c\x61\x6e\x4c\x53\xfe\x39\x71\xb7\xaf\x8b\x85\xa7\xf4\xab\x27\x9b\x0f\x85\xa5\xce\xcd\xad\xed\x59\x5e\x90\x72\x38\x6b\x51\xf9\xe2\x85\xae\xdb\xe4\xb7\xfc\x3e\x83\x24\xdb\x0b\xe7\x77\x2e\x39\x1c\x1a\xff\xb1\x75\xeb\xee\xa3\x45\xf2\xf1\x5b\x7e\xae\x2c\xcc\xd9\x56\x30\x37\xee\x57\x60\x9e\xe0\xe6\xba\xf8\xbb\xbf\x0f\x6c\x12\x59\x9f\x18\x5f\xd1\x73\x7c\xed\xd3\x35\x3e\xf1\x1d\xbd\x8b\x57\x45\xaf\x2a\x88\xd7\xed\xf3\xca\x0c\x5e\xf1\x6c\xce\xb5\x3e\x62\xf1\xb8\xa5\x8b\xe6\xdc\xee\xbf\x92\x36\x6a\x49\x5f\xdc\xa4\x01\xbf\xa4\x45\x4b\x7e\xc4\x2e\x18\xb8\x3f\xef\x7a\xc6\xe3\x58\x01\xb6\x57\x5c\xc4\x42\x8b\xd8\x14\xf6\xba\xd8\xec\x94\xc3\x31\x1f\xd8\xbf\xa2\xb6\xa7\x08\xc5\xc4\x71\xe4\x23\x3e\x03\x94\xd5\xd3\xa2\x06\x5f\xff\xcc\x4b\x93\x78\x7c\x14\x79\xff\xdf\xf1\xe5\x90\x92\x73\x10\x52\xde\x0c\xe9\xea\xeb\x94\x11\x1c\xc0\x3e\xdb\x21\x25\xf3\xd0\x2f\x3e\x17\x7e\x3c\xa8\x57\x9d\x94\x6d\x25\x1f\xfe\x62\x5f\xda\x4e\x73\xd4\xfd\xe7\x6d\xf7\xe9\x6a\xdb\xb3\x2e\x53\x1a\xdc\x0f\xfe\xe3\x1f\x19\x7b\xed\x72\xf5\x4e\xb7\x79\xe2\x99\x2b\x0e\x7c\x5d\xf7\x2b\xbb\x7a\xdb\xde\xbc\x0d\xab\x5c\x8f\x06\x17\xc5\xae\x8d\xcd\x4c\x7d\x30\x6f\xdf\xd7\xcc\x59\x4b\x1d\xbb\x4c\xf7\x89\x2c\xb9\xbd\xe8\x6b\x77\xd8\xce\xf2\x45\xa5\x19\xea\xbf\xde\x6d\x1d\x97\xfe\x20\x7d\xcb\xef\x4f\x1b\xa7\xa4\x05\xa7\x7b\xf4\x0a\xac\xa1\x0f\x73\x1f\x1f\x53\x36\xf7\x95\x2c\x35\x4e\xfe\x9c\xb4\xbd\x9f\x96\x71\x71\x41\x5a\xc2\x87\xfe\x6f\x29\x6b\x13\x95\x13\x29\x03\x5b\x13\xce\x25\x26\xcc\x9f\x3e\x50\x39\x5f\x7e\x5e\xdf\x7c\x15\x76\x70\x9c\xe4\xbc\x39\xf1\x91\xec\x86\xe8\xaf\xf3\x7c\xe2\x5d\xd9\x4d\xd1\xa7\x00\xa1\xb8\xc9\xc2\xbc\xef\x0f\x1d\x43\x39\x27\x4c\xa9\xa1\x7a\x82\xf8\x7e\x27\xe9\xfb\x91\xfe\x2f\x59\x3f\xc9\x01\x90\xf7\x80\xcb\xf9\xfe\xc7\x9d\x01\x4a\x28\x85\xd2\x27\x78\x7f\x8e\x8c\xa6\x70\xc7\x07\xe2\x4e\x96\xee\x3c\x75\xc9\x27\x56\x37\xa5\x98\xef\x6d\x1e\xde\xb8\x53\xf6\xd4\x33\x35\xdc\xee\x58\xe6\x69\xcf\x98\xe8\x74\x81\xdc\x8e\x83\xd7\x97\xed\xdd\x70\x6f\x79\xcf\xde\xa3\xfb\x53\xf2\xd5\xd3\x24\x8a\x88\x7b\xad\x05\x52\xf3\xbd\x0b\xe9\x3f\xab\x0a\x4a\xe7\x3e\xda\xde\xf6\xeb\x65\xee\xe5\xb9\xf3\x72\x7f\xfd\xfe\xbc\xe1\x5c\xfc\xd3\x8d\xfb\x7b\xc5\x56\x97\xcf\x35\x5d\x4b\xf4\xde\x59\x79\x36\xfe\x5c\xf6\xb3\xbe\x8d\xcb\x84\xe3\x0e\x64\xcf\xee\x0f\x48\xbf\x19\x97\xb0\xe2\x6c\x7f\x4f\x4a\x48\x9c\xdb\xb2\xeb\x03\xf1\x89\xbf\x63\x75\x97\x65\xb0\xc7\xc7\x73\x62\xed\x17\xcf\x66\x87\xc7\x89\xc7\x7a\xa7\x5b\xb0\x2f\xcd\xea\x99\x35\x2a\xdd\x81\x63\x1c\x61\x1e\xdd\x91\x16\xca\x99\x1b\x66\x08\x48\x4d\x1c\x73\x62\xf0\xf5\x1b\xf9\x0c\xd5\xe1\xfe\x64\xe4\x39\xb0\x9c\xef\x6f\xe4\xbe\x1b\x59\x3f\xc9\x01\x54\xf0\xe7\x01\xd4\xf3\xf6\x51\xcf\xdb\xa7\xbc\xfe\x75\xd4\xb4\xc4\x4e\x17\x1a\x7d\xb9\x79\xee\x33\x51\xf5\x39\x72\xb3\x6f\x8f\x7e\x64\x43\x5f\x63\x96\x78\xd6\xa3\x56\xc8\x45\xd5\x77\x7d\xd1\xfa\xaa\xe2\xf0\xd7\xf3\x43\x57\x06\x5d\x25\xd2\x3b\xb2\xb6\x24\x47\x5f\xb6\xd9\x33\x75\x3d\x6b\x76\x60\x19\xed\xb6\xee\xe6\x15\xe1\x8b\x2e\x9c\xff\x75\x22\xd7\x31\xfc\xf8\xc9\x65\x3d\xae\x39\x47\xc3\xba\x8f\xc4\xf7\x66\x67\x69\x44\xd8\xee\x97\xec\xed\x59\x7e\x37\xac\x7b\xcf\xf4\xfe\x69\x19\xe7\x22\x16\xee\x38\xdb\x9f\xba\x70\x59\xb8\xf9\xf6\x90\x01\xed\x05\x4e\xe1\xb9\xb9\x6b\x07\x36\x25\xac\x08\xd7\xdb\xb4\x8a\x2d\x10\xff\x28\xbc\x76\xdd\x15\xb6\x5d\xdc\xd9\xb0\x55\x39\x7b\xd9\x65\xb3\xee\x87\x75\x64\x9f\xe0\x8c\x8e\x92\x0a\x3b\xb2\x32\x97\x13\x12\x76\x23\x74\xe7\x72\x0e\xe7\x42\xb0\x1a\xa0\xc9\xcf\x7f\x21\xfd\xff\x28\xfe\xfe\x5f\x94\x4d\x19\xc1\x81\xec\xab\x1f\x59\x7f\xd5\x1a\xca\xbf\x7c\xd0\x9e\x1d\xad\xfb\x06\xf5\xd3\xe8\x36\x5e\xff\x5a\x2c\xdb\x57\x89\xaa\x50\x28\x75\x9d\x1f\x3d\x15\x2d\xa7\x9c\xbc\xb2\xe2\xed\x3f\xb4\x25\x7a\xed\x87\x5d\x5b\x5d\xec\xbd\x9c\x24\xb7\xcc\x7b\xba\x2f\x58\x29\xf2\x7e\x5a\xd6\xc3\xa2\xe4\xa5\x0b\x37\xcd\xae\x7a\x90\x50\x90\xbc\xec\x60\x48\x59\xc3\xee\xaa\xcd\x59\x52\xbe\xa3\xea\xd7\xfd\x9c\xb2\xea\x97\x0f\xbb\x7a\x4b\xef\x87\x4c\x4d\x5f\x93\xf2\xf4\xbe\x27\x19\xd5\x7e\x2a\x17\x8c\xfa\xbd\xd3\x1a\xfd\x46\x9f\x3e\x31\xa0\x90\xe4\xeb\xfb\xe1\xd8\x8a\x81\xcb\x73\xfb\xfd\xb4\x0f\x05\xb2\x45\xe7\xcc\xf7\x7b\x5b\xfc\x85\x1d\x15\xfb\xce\xaf\x62\xb7\x07\xbb\x32\xfa\xac\x5f\xdb\xae\x4a\xce\x84\x48\x03\x7f\xa5\xed\x7d\x1c\xd7\xb0\xbb\x7e\x95\xdb\x0c\x39\x45\xc1\x15\x7e\xa9\x5b\x36\x73\x5e\x06\x4e\xf0\x7d\xb6\xc9\x8e\xab\xec\x37\x1a\x30\x2d\x1b\xaa\x87\xe4\xe2\xc8\x79\x20\xeb\xf8\x73\x0f\xf6\xfc\x55\x7f\x35\xff\x5c\x6c\xe4\xf1\x33\x7d\x2d\x6d\x2a\x14\x5e\x0e\xc8\x90\x1f\xdc\x92\xf1\x8d\x39\xa8\xf7\x4f\xff\xe2\xe5\x6a\xdc\x4c\xef\x39\x29\xfd\x53\x48\xe7\x4c\x52\xf7\x78\xbd\xb1\xca\x52\x45\xe7\xbe\x2d\xb4\xba\x66\xb1\x76\x75\x68\x47\x95\x5f\x95\x4f\xcd\x7c\xe1\x0f\xed\x09\x6f\xe2\xce\x85\x27\x7c\x58\x9f\x5f\x9b\xf8\xcb\xa7\xe0\x83\x40\x85\x64\xea\x26\x97\x6f\x1f\x3c\x7e\xcc\x59\x18\xe6\x72\xf9\x79\x5e\x7f\x56\xf2\x38\x97\xce\x87\xb1\x03\x06\xf3\x37\xb9\xee\xbf\xbb\x67\x60\xeb\x5c\x7d\x37\xc5\xca\x90\x01\x76\x9c\x35\x99\x73\xe1\x26\x7b\xe1\x06\xbb\x27\xc2\xc5\xed\x76\x89\x19\x47\x2f\x2c\xcd\xbd\xe6\xf8\x0f\x8e\x57\xe8\x22\xf7\xe7\x87\xb8\x9c\xc3\x41\x21\xee\x61\x07\x8e\x72\xfa\xfc\x05\xdc\xaa\xf6\x51\xb9\x0c\x1f\x21\xf7\x2d\x45\xee\xdc\x28\xaf\xbd\xee\x72\xbb\x12\xb8\xc5\xee\x8d\x80\x33\xdf\xef\x9f\xc3\xcf\x43\x22\xfd\x6f\x32\x07\x61\x98\x03\xe1\xd7\x3f\xc4\x41\xf4\x9b\x7d\xe0\xf9\x7f\x9f\xf9\xf3\x61\x5e\x6d\xe9\xe1\xe5\x24\x3c\x8c\xe0\xa6\xf3\xea\xe7\xfb\x5e\xe7\x7a\x81\xe9\x39\x63\x77\x1c\x3c\x08\x68\xbc\x9d\xee\xb9\xb5\x1c\xd7\x18\x4c\x3d\x9d\x65\x42\x04\xcd\x2b\xc5\x4e\x27\x76\x39\xdb\x27\xfe\x4b\xe0\x81\x40\x3a\x67\xd2\x56\x66\xc4\x3b\xb7\x43\xec\x67\x57\x9f\xc4\xfc\xb0\x5f\xca\x9e\xd7\xb1\x7c\xb6\xa0\x9d\xe9\x0f\x37\xf6\x8c\x59\xd6\x76\x49\xef\xcd\xd9\xab\x23\x43\xec\xac\x5b\x76\xb1\xfb\x43\xcf\xd8\xbd\x7e\xdc\xc6\x31\x08\x91\xb2\xbb\x73\x5f\x86\xb3\x25\xa0\xdd\xfe\x44\xcd\x38\xce\xa9\x80\x99\xc3\x39\x17\x42\x97\xf7\x72\x69\x5e\x84\xc3\xbe\x0b\x8f\xb8\x76\x5e\xe9\x0e\x0b\x4a\x25\xb9\xeb\xdd\xb7\x38\xd4\x9e\x58\xc7\x2d\x77\x4d\x74\x78\x73\x6c\x2a\xf7\x89\x8b\xb7\xbd\xd4\xe1\x8b\x04\xcd\xde\x15\x08\x6f\x1d\xaa\x6f\xa9\x3d\x65\x04\x0f\x47\xfa\xbf\xa4\xff\x39\x54\x3f\xfb\x5b\xfb\xb7\x41\xfd\x16\xdd\x6d\x3d\xa8\xaf\x57\x0f\xdc\x18\xd4\xc7\xfc\xdf\xf3\x2b\xf9\xf7\x3c\xc9\x79\x10\xc5\x13\x81\x51\x0d\x14\x4a\xbe\x27\xa0\x2e\x3e\x65\x62\x36\x07\x30\x5f\xa5\xf6\x36\x65\x34\x9c\xdc\xd7\xd2\x4b\x23\x02\x88\xa0\xd8\x05\x4e\x85\xbe\x01\xdc\x0f\x39\xda\x9e\x99\x2e\x0e\xdc\xdc\x63\x17\x7d\x0a\x6c\x6f\x73\x99\xf7\xd7\xf9\x65\x58\x59\x71\x67\x74\x87\xfa\x6d\x62\x25\x73\x65\xb8\xaa\x1e\x47\x59\xae\x5d\xd2\x5c\x1b\xf7\xdd\x2c\xa3\x8f\x99\xdc\x64\xd7\x36\xcb\x45\xad\x7d\x5c\x5f\xf7\x6d\xac\x92\x26\x7f\x6e\x99\x73\x80\xe5\xba\x86\xa7\xdc\x32\xe7\xa3\x2c\xce\x5d\x53\x62\xb4\x83\x8c\xe5\xd9\x2a\x01\x62\xb2\xfd\x31\xab\x51\xd7\xc5\x08\x2d\xbb\x8d\x56\xf6\x57\x94\x09\x96\xed\x21\xab\xe0\x0b\xa5\x44\x84\xcd\x44\x6b\xf3\x52\x33\x62\x96\x8d\x04\x90\x6a\x3a\xf2\x1c\x3c\xc6\xe7\x9f\x6e\xb0\x28\xff\xe2\xc0\x88\x2d\x9f\x79\x5c\xc4\x77\xe6\x2f\x5e\x3e\x50\xdb\x73\xb8\x0f\xea\xa3\x6c\x7e\xfd\x67\xf9\xef\xff\xca\x21\x25\x73\x00\x72\xf9\x7e\x71\xce\x55\x40\xf9\x81\x18\x16\x3f\x05\xcc\xc6\x2a\xe6\xcc\x79\x80\x1b\xce\xa5\x7a\xea\xc1\xdb\x31\x3a\xb2\x90\xb9\xc4\x73\x09\xd1\xb0\x5c\xc0\x66\xb4\x53\x08\xb1\x70\x77\x83\xc3\x47\x1b\x06\x61\x7f\x85\xe6\xe4\xc1\x8a\x27\x0c\x9e\x5c\x77\x72\x62\x44\x13\xa6\x3f\xf6\x39\xae\xb7\xf0\x23\xb2\x89\x69\x76\xa3\xcd\xf6\x72\x44\x89\x4c\xd6\x4b\xfa\xe9\xae\x05\xc4\x01\xc6\x59\x33\xf5\x0f\x5d\xc4\x56\x66\x2e\xbd\xf2\xd5\x3b\xa2\xd4\xe2\x91\x59\xdb\xd3\x46\x62\x17\x33\xca\x8c\xfa\x78\x22\x71\xcb\xfc\xa9\xd9\x86\xba\x3a\xe2\x81\xb9\x9f\x59\xce\xed\x44\xe2\xa3\x99\xb0\xf9\xe4\xca\x32\xa2\x83\xce\x35\xcf\xb8\x9e\x4f\x74\xd1\x4f\x01\xeb\xa2\xf9\x9f\x7f\xf8\x7d\x20\x73\x10\x1e\x37\x0e\x69\xe7\xe1\x41\xfd\xe9\xda\xc7\x3b\x2f\xdf\x99\xf0\xfd\x2f\xbe\xef\x55\x2d\x31\xd2\xff\x3a\x14\x39\xa4\xdb\xf9\x7f\x67\xf1\xfb\xb3\x4c\x02\x90\x8f\x9d\x58\x91\xc8\x00\x68\x41\xd3\x5d\xa3\xce\xa1\xcf\xa1\x43\x3d\xc4\xcf\x04\xd9\x21\x15\x34\x41\x57\x36\x82\xd3\x17\x9a\x3e\xb5\x7f\x04\xcd\x5c\x27\x8b\x14\xcb\x3b\x98\x76\x2c\xd0\x82\xc3\x90\x20\x06\x6e\x5e\x64\x4e\x37\x57\x21\x3a\x9a\x24\x98\x37\xe9\x4d\x44\x4f\x47\x23\x83\x33\x3c\xd7\x22\x15\x25\x08\x31\x3c\x40\xdb\x39\x50\x86\x6d\x7a\x17\x68\x63\xbb\x14\xb0\x51\x2f\x92\x76\xbf\xbd\x0b\xb1\xfa\xab\x68\xab\xde\x30\x90\x40\x3d\x4f\x7b\xff\xfc\x01\x62\xf5\xe5\x69\xa5\x8d\x63\x91\x42\x55\x35\x32\x7e\x50\x83\xb9\xd4\xf3\xb4\xbb\xb5\x85\x58\xa1\x27\x0b\xec\xe1\x9f\x03\x97\xf8\xf3\xd1\x1e\xf0\xcf\x81\xa1\x73\xef\xb7\x21\x9b\x77\xde\x7d\x48\x19\x59\xff\xad\x96\x21\x2d\xe3\xfb\x7e\xe4\x3d\x78\xd2\xff\xcc\xe1\xe7\x05\x90\x39\x10\xc9\x4c\x40\xee\xc1\x04\x93\xd8\x25\x00\x75\xbd\x04\x3b\x54\x0d\xb0\x9f\xa2\xd4\xe3\x19\x87\x66\x3f\xb6\x96\xba\xd3\x37\x5c\x4e\xdc\x49\x0d\xb3\x59\x8f\x53\xab\xc5\xf4\x5f\xb1\x9a\x90\x59\x94\x60\x54\x6c\x7e\x07\x29\x25\x93\x8d\x7e\xd1\x27\x21\xb5\xa2\xc8\x28\xc1\x24\x08\xa9\x0f\x2f\x18\xf9\x1a\xa7\x62\xf1\x07\x77\x23\x37\xa3\xfb\x28\x1b\x78\x6c\x70\x88\xe4\x1d\xf4\x4b\x01\x40\x5d\x40\xef\x31\x3b\x13\x50\xfe\xa4\x37\xb6\x2b\x18\x50\x3e\xa3\xf7\xa6\xe3\x01\xba\x54\xfb\xf5\x82\xde\xbd\xc2\x6f\x55\x1d\xdd\xd7\x2f\x8b\xd1\xaf\x12\xa8\x27\xd3\x7c\x13\x5d\x2a\x17\xfe\x35\x17\xc8\x9a\xf2\x2f\x0e\xa6\x2f\x92\xcb\xe3\x49\x3f\xf0\x7d\xbf\x61\x0e\x8a\xef\x5b\x5e\x2a\xc3\x48\x0e\xc6\x62\xa4\xff\x4b\xde\xff\x26\x7d\xcf\x88\xbd\x80\xc8\x04\x0a\x25\xec\x31\xa0\x6b\x39\xe9\xaa\xef\x7c\xc0\x6a\xe3\xcc\x5a\xe7\xfd\x80\xe7\x5b\xc5\x7e\xfb\x0c\x20\xf6\x8d\xfa\x34\xab\xeb\xe8\x5c\xaa\xa0\xb5\xd5\xa2\x1d\xaf\x73\xd5\xb4\x2b\xe9\x04\x1e\xec\x9f\xa8\x2b\x65\x92\x83\xbb\x25\xc2\xba\xb3\x8d\x38\xb8\x7e\x63\xa5\x9e\x33\xad\x0d\x57\xee\x1f\xd1\x3b\x66\x98\x8a\x87\x6f\xa8\xba\x0b\x0c\xbd\xd1\xd9\x15\xac\x73\xdd\xe0\x32\x80\x76\xcd\xe0\x61\x7f\x3f\x88\xe7\xef\x8b\x91\x9c\x83\x1a\xa7\xbb\x10\x98\xd6\xa5\x16\xf0\x35\x08\x98\x76\x44\x5d\xf2\x63\x05\x30\x7d\xd6\xbf\x38\x18\xde\xfa\xe7\xcc\x27\xf6\x52\x86\x38\x48\xde\xfe\x18\xe6\xa0\xfa\x86\xf4\x32\xdf\xf7\x1f\xbe\x07\xcf\xaf\x77\xeb\x28\xfe\x3e\xe0\xf3\x02\xe4\x1c\x04\xd2\xff\x8f\xfc\x00\xcc\xb4\x1a\xab\xee\x7d\x0a\x50\x39\x3f\xe1\x9c\x2b\x13\x30\x2d\x91\xb8\xee\x90\x06\xb8\xae\x93\x9d\x6b\xe3\x02\x44\xba\x28\x2e\x66\xcd\x03\xd2\x4a\x55\xf5\xcc\xf5\x80\xd5\xae\xaa\x47\x4d\xdf\x00\x3b\x28\xea\x6c\xe3\x69\xc0\xfe\x72\x75\x5f\x9a\x24\x70\xb2\x4d\x5d\xd0\xc0\x04\xb8\x92\xa7\xd6\x60\xa0\x89\x5f\xb5\x2f\x35\x6d\xf5\xcf\xa2\xef\x59\xa1\xe6\x4a\x92\x77\xd0\x2f\x06\x20\xa9\x3e\x41\xd7\x69\xb0\x0f\xf2\xaf\x34\xd6\x0e\xaa\x94\x9d\xaa\xee\xa0\x4a\x08\x29\xfc\x18\x54\x11\x3d\x85\xb1\x03\xe5\x80\x70\xd7\x1f\x0e\x06\xbc\x9c\xb8\xce\x4b\x43\xaf\xbb\x99\x3f\x0f\xea\x2e\x3f\x0f\xe6\x0a\x3f\x1f\xe8\xd4\xe9\x21\xdd\xc7\xe7\x25\xf2\x56\x8e\xf4\x7f\x49\xff\x9b\xf4\xff\x83\x9a\x86\x94\x9c\x83\xe1\xf6\x0a\x50\x96\x15\x74\xb4\x1b\x05\x18\x06\x89\xbe\xb1\x3c\x0d\xd8\x7e\x9e\x7a\x9d\x99\x02\x04\x28\xcd\x78\x6b\xf1\x03\x98\xef\x25\xbf\x9a\x5e\x01\x2c\x7b\xac\x98\x69\xf4\x1d\x58\xf7\x52\x61\x8f\x51\x3c\x90\x2f\xae\x3c\xca\x50\x13\xd8\xbf\x44\x59\x92\x7a\x03\x38\xde\xa2\x78\x54\x3f\x0d\xb8\xb4\x5e\xd5\x74\x38\xcf\xa0\x10\x68\xdc\xa3\x3a\x5f\x77\x35\xf0\xf6\xa0\xf2\x51\x3d\x63\xe0\xa7\xb3\xf2\x37\x9d\x23\xbc\x75\x71\x40\xe3\x0b\xaf\x1f\xdf\x55\x85\x06\x55\xbc\x99\xec\x07\xc9\xc1\x7c\xa3\xe1\xff\x97\x03\xfa\xbf\xe6\x61\xac\xbb\x39\x72\x1f\xfc\x3d\x0f\xc4\x87\xaf\x36\x56\x7c\x0e\xc0\x05\x90\xf9\x3e\x26\xdd\x72\x12\xa0\xb7\x41\x88\x63\x71\x0a\x60\x7d\x12\x6f\x30\xe9\x01\x3c\xdb\x25\x1d\x8c\x03\x80\x88\x98\xa9\x75\x46\x4a\x40\xb2\xe7\x8c\x78\x5a\x19\xb0\x22\x51\xa6\x44\xbf\x1f\xd8\x60\x28\x13\x44\xe6\x1a\x50\x25\x81\xe2\x04\xb9\x15\xba\xd7\x80\x63\xd2\x72\x1b\x74\xc7\x03\x17\xbd\xe4\x8f\x68\xbf\x01\x6e\x58\xc8\x8b\x6a\x5e\x04\xea\x24\x64\x6e\x6b\xcd\x00\x9e\x7d\x97\xad\xd1\x9a\x0f\x7c\x18\x27\x0b\xcd\x73\x40\x77\xcc\xcc\xc4\xe1\x7e\x8c\xe7\xf5\xe3\xf1\xdf\x73\xc1\x86\x39\x20\x7e\xfe\x0b\x99\x87\xf3\x0f\x9f\x0b\xdc\xc5\x57\x72\x2e\x10\x99\x87\x92\xc6\x3f\x3f\xe2\x9c\x47\xfa\xff\xae\xfc\xe7\x05\xc3\x67\x28\x1f\xc5\x92\x09\xcc\xbc\x2f\xb0\xdc\xfc\x01\xa0\xfd\x7a\xe2\x24\xe3\x5b\x00\x7d\x95\xa8\x12\x2d\x15\x70\xbe\x30\x69\x17\xb5\x0b\x08\x98\x39\x79\xb4\x41\x12\x30\xe7\xc0\x94\x4f\x83\xe7\xde\xc2\x6c\x29\x33\xaa\x16\xb0\xfc\xb6\xd4\x0b\x9d\xb7\x40\x4e\xb5\x54\x9c\x5e\x2d\x90\x67\x35\xf3\xa0\x76\x3d\xb0\x67\xb5\xb4\x28\xe9\xef\x6b\xb9\x01\x25\x33\xa5\x09\x2d\x4b\xe0\xea\x75\x19\x57\xd2\xd7\x57\xa7\x03\x0d\x7d\x33\x34\xd4\x5f\x02\x2d\xc7\xa5\x55\xd4\xda\x80\xf6\xd4\xe9\x63\xd4\xd2\x81\xee\x1f\xd3\x84\xc9\xb9\x60\x0d\x7c\x5e\x81\xe4\x80\x86\xf3\x70\x7e\x8d\x7c\x0e\x90\x1c\xc8\x2a\xfe\xfa\xc8\x90\xe4\x9f\x87\xfc\x3e\x44\x66\xf2\xd7\x41\x00\xff\xfd\xe7\x73\x31\x26\xa7\x86\x54\x77\x1b\x30\xe6\x09\x85\x62\xc8\x04\x54\xf6\x8f\x9b\x4e\x1d\x0f\xe8\x6f\x9a\x70\x55\xf7\x0b\x60\xd5\x2b\xf4\x55\x0b\x80\x7b\xb9\xf0\x4a\xcd\x78\x20\xd4\x42\xe4\xa2\x86\x28\x10\xb7\x42\x74\xb3\x66\x1c\x90\x72\x6c\x72\x84\x06\x0d\x58\xf2\x64\xf2\x79\x4d\x17\x60\xcd\x55\xc9\x0c\xf5\x53\xc0\x26\xa6\x44\x87\xc6\x6b\x60\xd7\x94\xa9\x0d\xea\x5e\xc0\x81\xfe\xa9\xdb\xd5\x8a\x81\x53\xb2\x53\xbf\xa9\x59\x03\xe7\x92\xa6\xcd\x54\x69\x07\xae\x89\x4e\x95\x56\x3e\x02\xdc\xae\x93\xfc\xa2\x9c\x00\x34\x1c\x95\xbc\xa6\x62\x0f\xbc\xb8\x3a\xa5\xfa\x21\xff\xfd\xbc\xc9\xe7\x9c\xc8\x3c\x9c\xc3\x7c\x1e\xee\x7f\x38\x18\xfe\x7c\x2c\x92\x07\x23\xf7\x41\x0c\x9f\xa7\x0d\x3c\x80\x11\x1c\x08\x8b\x7f\xbe\x1a\xf2\xf9\x21\x35\xfe\xf9\x42\x3d\x0b\xc8\x47\x8d\x11\xd0\xea\x05\xb4\x1e\x8c\x9f\xa7\x76\x01\x30\x39\x32\xde\x53\xed\x08\xe0\x70\x7b\x02\x53\x63\x23\xe0\x57\x28\xac\xae\x5a\x0d\x84\xeb\x0a\x9d\x56\x0d\x03\xe2\xf2\x84\x4f\x29\x7f\x05\x12\x4b\x85\xb7\xa9\xfc\x02\x32\x9a\x45\x37\xab\x4d\x01\xb2\xb2\x27\x3d\x27\xfb\xa1\xec\x05\xe4\xa5\x4d\x9a\xad\x72\x1e\xd8\xdd\x21\xde\xa1\x7c\x0b\xf8\x27\x41\xbc\x44\x69\x33\x70\xea\x8a\xf8\x4c\xe5\x1d\xc0\xc5\x15\x12\x50\x7c\x09\xdc\x38\x2e\xee\xa5\x98\x0c\xd4\xe8\x4d\xe6\x51\x7f\xae\xfb\x29\x23\x39\x90\x11\x7e\xef\xdf\xf7\xff\x65\x27\x19\xd7\x09\xac\x05\x34\x66\x99\x97\x08\xe6\x02\x06\x2c\x2b\x61\x91\x0d\x80\xc9\x45\xa7\x79\xe2\x19\x80\x79\x9d\xd7\x8a\x69\x89\x00\xcb\x2e\x6c\xb6\xac\x2a\x60\x69\x30\xd7\x54\xe9\x19\xc0\x72\x5d\xe2\xae\xa1\x07\xb0\x66\xac\x7f\xad\xe7\x0f\x30\xa5\x8a\xee\xd0\xee\x02\xe6\x0f\x4e\x1b\x9b\xd4\x03\x66\x59\x37\xf3\xcc\x8f\x03\xa6\x2e\x8f\xad\xcd\xa7\x02\xc6\xb9\xed\xb9\xf4\x75\x80\x71\x1f\xa1\x49\xe7\x00\xb4\x72\x58\x1a\x5a\x01\xfa\xdb\x50\xa5\xd9\xda\x73\x53\xff\x01\x76\xe8\x8c\xfd\xbe\x58\x5f\x15\x7b\xb5\x27\xb4\xef\xa3\xde\xc5\x3e\xad\x45\x6f\x53\xa8\xf5\xd8\xab\x95\xf6\xbc\x80\xda\x82\x62\x2d\x83\xc6\x5c\xea\x19\x1c\xd1\x4c\x6e\xf0\x32\x88\xc7\x1a\x1d\xcd\xda\xf1\x06\x1b\xb1\x41\xfb\xfe\xed\x6c\x7d\x06\xce\x68\xd4\x55\xa6\xeb\x35\xe2\x89\xea\xba\xc1\x3a\x9d\x92\x46\xf6\x61\xd8\xef\xe5\xf9\x5b\xa3\xca\x0d\x78\xbf\xe3\x92\xf3\xff\xc9\x3c\x08\x0d\x7b\x53\xb6\xa0\x06\x60\x28\x6f\x39\x5b\xa4\x15\xa0\x57\x38\x78\x4a\x18\xfe\xe9\x03\x73\x4b\x58\xaa\xcc\x1a\xc0\x6a\x52\x7c\xa5\x72\x01\x60\x39\x90\xf1\x5d\x33\x00\xb0\xac\xd9\x70\xcf\xc0\x1e\x60\x2e\xd8\x6d\x62\xb4\x15\x60\x88\x9d\x31\x31\x3b\x0d\xd0\xcb\x2a\x67\x9a\x89\x02\x74\xa1\xa6\x53\x8c\x33\x80\x49\x55\xe7\x76\xc6\x18\xc0\x44\x95\xa8\x34\x4b\x03\x68\x15\x60\x19\xba\x70\x8f\x19\x2a\x62\xb1\xde\xc2\xee\x47\x06\x16\x58\xa9\xeb\xf5\xf9\x93\xc1\x4b\x44\x50\x0d\xde\x4f\xd7\xbf\x86\x2c\x9d\xdc\x97\x1f\x0c\x6e\x23\x46\x6f\xc7\x33\x69\x83\xd3\x48\xd2\xbd\xfd\xa8\xc6\x70\x00\x3e\xd4\xb7\x75\x5c\xc3\x32\xcc\xd1\x4b\xba\x6b\xa2\xff\x10\xfb\xb4\xe4\xaa\x2d\x0d\xde\x22\x4f\xdb\xe5\xe6\x34\x7d\x79\x5c\x57\xe7\xad\xe6\xbf\x79\x98\xff\xf6\xb7\xc8\xfb\xff\x4a\xe9\x46\x31\x63\x57\xff\x8b\x8b\xe1\xf3\x41\x66\x51\x76\x85\x12\xca\x83\xf5\xb9\xbf\x92\xda\x01\x58\xb6\x86\x7e\x96\x4b\x02\xac\xd6\xc7\x2f\x55\x06\x60\x33\x76\x11\x5b\x67\x11\x60\x79\x72\xbd\xa1\xfe\x5c\xc0\x52\x69\xb7\xb2\xe9\x56\xc0\xe2\xeb\x99\x42\xb3\xcd\x80\x59\x66\x55\xb0\x85\x36\x40\x57\x7b\x3a\x9e\x39\x1e\x30\xdd\xff\x75\x02\x6b\xb0\x1f\x1e\xc4\x25\xb3\x5e\xb2\x0f\x03\xc5\x86\xed\xf0\xd0\x7f\xff\xa3\xdd\xb0\x18\x8e\xfa\x9d\x1d\xc7\x0c\x7a\x10\x42\x4d\x7e\x1b\x40\x73\x85\xae\xa1\xe7\x8b\x3a\x43\x0d\x84\x52\x75\x1b\xcd\x0c\x4f\x21\x80\xba\xb5\xe1\x04\x6d\x3f\x1c\xf5\x6f\xd5\x25\xd2\x84\x11\x49\x1d\x57\x73\x98\x56\x8c\x28\xaa\x54\x95\xae\x61\x1a\xd6\xe9\x68\x5d\xcf\x36\xc8\xc2\x31\xcd\x1c\xfc\x07\x0f\x33\x72\xfe\xc1\xf0\x3d\x5f\x3e\x07\xa1\x64\x66\x30\x7a\xac\xfc\x1f\x2e\xc6\xa8\x91\x21\x26\xba\x19\x30\x2f\xb1\x9b\x2b\xf1\x11\xb0\x8c\xf1\x98\x36\x43\x11\xb0\x99\x10\x62\x24\xff\x08\xb0\x95\x8a\x8b\x57\xfd\x05\xd8\x1a\x2e\x32\xd0\x3d\x0f\x58\x7f\x58\x77\x96\x76\x18\x60\xe5\x16\xd1\x4d\x64\x00\xe6\xf2\x33\xfb\x18\xf5\x80\xc5\xd2\xaa\x4d\x96\xed\x00\xbd\xf6\xb9\xac\x65\x00\x60\xda\xf8\xad\xd6\x32\x12\x30\x59\x4e\x9c\x32\xdf\x04\xd0\xac\xe0\xaf\xdf\xd1\x13\x6c\xb4\x8d\xe0\x18\xd7\x7f\x3f\x63\x78\x12\x76\x06\x53\x3f\xb8\x19\xf9\x41\xc0\x78\xc6\x9b\x44\x23\x05\x4c\x36\x32\x7f\xa6\x65\xb4\x0e\x53\x8c\xa4\x1e\xde\x32\x66\x41\xcc\xe8\x44\x7d\x2f\xed\x15\x6c\x0c\xd4\xef\xee\x30\x5a\x0c\x2b\x83\x79\xd5\x32\xc6\x2a\xb0\x32\xd8\x53\x51\x46\xa3\x62\xb9\xae\xe8\xb5\xf1\xb4\xbb\x58\xaa\x1b\xf2\x5f\x7d\x20\xcf\x05\xdd\x6f\x3c\x2d\xd1\xe5\xdd\x5b\x12\xef\xd7\xe5\xdd\xe7\x53\x9f\xac\x1f\x3e\xee\xee\xbf\xb8\x98\x13\xa6\x7b\x44\x09\x80\x99\x6e\x79\x43\xd2\x1d\xb0\xd6\x74\x95\x9d\xb1\x08\xb0\xcd\x09\xcc\x52\x50\x04\x1c\xc2\x67\x2b\x68\x4e\x07\xec\x8d\x17\x5e\xa0\x32\x00\x9b\xdf\xeb\xf2\x8d\x5d\x00\xeb\x25\x45\x6c\x8b\x46\x80\x79\xef\x4c\x3f\x73\x3b\x60\x21\x78\x2b\xd1\x32\x15\x30\xfb\xde\x42\xb5\xf9\x01\xd0\xaf\xfe\x94\xb7\x71\x27\xfb\xc0\xbd\x63\xbc\x93\x68\xa6\x4b\xff\x4c\x37\x36\x25\x9a\x4d\xef\x7c\xba\x6c\x5c\x41\x54\xd3\xb9\x6d\xb7\x8d\xbd\x89\x57\xa6\x71\x2d\x2e\xc6\x62\x44\x9f\xf1\xa7\x27\x3d\x26\x3b\x89\x46\x7a\xf8\x83\xb5\xc6\xcd\x04\x8c\xef\xdc\x6b\x34\x0e\x85\x12\x6d\x43\x8d\xa5\xf1\x13\xa8\xd2\xb2\x2a\xf3\x8c\x6f\xc3\xc8\x70\xcd\xf5\xb9\xc6\x0e\xf0\xd1\x5f\x73\xf9\xb4\xf1\x3f\x08\xd5\xff\x4f\x4e\xee\x2f\x9f\x8f\xef\xff\xcb\x78\xe9\xd4\x8c\xbe\xfc\x27\x0f\x42\x3f\x49\xdf\x61\xa2\xc3\x9f\x3e\x58\xee\x61\x7d\x9f\x62\x08\xd8\x16\x3a\x12\xd2\x86\x80\xa3\x89\xaf\x8a\x62\x05\xe0\x68\x15\x5b\xa4\xf9\x06\x70\x20\xd2\xea\x0d\x18\x80\x5d\xfe\xba\x71\xa6\xc7\x01\x1b\xa3\xdd\xf1\xcc\x05\x00\xeb\x7d\xc9\x26\x2b\x23\x80\x11\x59\x63\x6a\x3b\x01\x30\x0f\x6f\xad\xb2\x5b\x0b\x98\x15\xf4\x68\xd9\x3b\x02\xa6\x9b\x88\xb9\xcc\xfe\xde\x97\x26\xda\xc4\x29\xf3\xe0\xaf\xf7\x4c\x4a\x88\x5c\x8b\xd6\xbf\xf9\xb8\x67\xc1\x26\xb5\xc4\x4d\xb3\xcc\x47\x97\x4c\x17\x10\xd7\xcc\xba\x6a\x9b\x4c\x3d\x89\x57\xf4\xc9\xc3\x5c\x58\xbc\xe9\x52\x8c\x31\x11\xb8\x56\x61\x5a\x05\x71\x63\xc7\xcb\x74\xfa\x28\x28\x18\x2d\xb8\x68\x61\xea\x06\x6b\x43\xea\xff\xfb\x5c\x20\xfd\x7f\xc5\xfd\x5a\x2f\xc7\xc4\xfd\xe1\x41\x8c\x9d\xf4\xeb\x85\xfc\x01\x46\xb7\x71\x9e\x98\x0a\x60\x6b\xcd\xf8\x3d\x65\x22\xe0\x28\xe8\xf0\x55\x66\xf0\x53\x91\xae\x77\xbb\xb2\x10\xe0\x52\x10\x1d\xa1\x43\x05\x9c\x18\x29\xa7\x0d\x5a\x00\x87\x89\x6b\x2d\xcc\x94\x00\xdb\x88\x22\x25\x4b\x11\xc0\x4a\xb2\xa4\xca\xe6\x17\xba\x98\x89\x35\xd5\xf6\xdf\xf1\xc1\xc2\xee\xd5\x4f\xc7\x12\x0c\x98\x27\x0f\x9c\x74\x72\xc4\x51\xd3\x79\xc4\x02\xe6\x91\xae\x0f\xa6\x85\x44\x30\xeb\x7c\xa7\xa7\x69\x19\x11\xce\xca\x7f\xbb\x87\xbe\x9b\x70\xb0\x1a\xf7\x7c\x9c\x99\x14\xe1\x63\x79\xe1\xf1\x0e\xb3\x49\x44\x1a\x4b\xe1\xfe\x2c\x7a\x2f\x51\xc8\x70\x23\xb9\xb0\xca\xfd\x66\x6f\x88\xf3\x16\x76\x37\x5e\xd2\xbb\x89\x36\x7a\xcc\x95\x7d\x66\xda\x44\x9f\xa9\xf9\x85\x01\xb3\x30\x08\x9b\xcc\x3c\x7b\xd4\xec\x09\x26\x1b\x7f\xfc\xaf\xfd\xc0\xf7\xbd\xf9\xf7\xde\x49\xff\x9f\xe4\x20\xa8\xef\xb4\x19\x82\x96\x7f\x78\x10\x92\x8b\x71\xcc\x34\xaf\x96\x7c\x0a\xb8\x24\x3a\x4e\x91\xed\x05\xdc\x56\x7a\x96\xaa\x52\x01\x37\xbb\x88\x34\x9d\xe2\xc1\xff\x9e\x5c\x6d\x94\x0a\x38\x9d\x59\x1d\xc4\xd8\x08\x38\x04\x16\xbc\xb6\x73\x1d\xe6\x06\xef\xb0\xc2\xef\xc6\x3a\x27\xa1\x9c\x31\xa9\x4d\xd6\xe5\x03\xfa\xcd\xb7\x72\xd7\x3a\x1d\x1f\x60\xd0\x5f\x13\xe3\x6d\x1e\x7d\xf6\x30\xdf\xc1\x3d\xe5\x98\xda\x76\xcc\x5c\x87\xfb\xd9\xee\x72\x4b\x8c\xf9\x65\xee\x4f\xbb\x0b\x8d\x3b\x2d\xf2\xb8\xdf\xec\x59\x0d\xae\xe6\xb5\x04\xcb\xda\xf7\xae\x97\x85\x19\xe1\x63\xb5\xad\xda\xc9\xe2\x21\x11\x66\xe5\x7c\xe3\xa4\x85\x12\xb1\x8b\x29\x77\xf9\x26\xe3\x18\xb1\x9e\x15\x78\x31\xdc\x62\x3f\x51\x63\xde\x7a\x76\xb9\xc5\x1d\xe2\xb9\xd9\x95\x53\x85\x8c\xb1\xc4\x4f\x7a\xd0\xff\xbd\x1f\x28\x14\x25\xde\x3a\x11\x2f\x53\x70\x1c\x54\x55\x01\xe5\xb4\x31\x4b\x00\x9a\xa1\x5a\xfb\x78\xd1\x3f\x3c\x88\x13\x43\x7f\xb2\xe8\x5a\xc0\x6d\xaa\xf1\x0b\xf1\x16\xc0\x23\xc5\xce\x5b\xd6\x01\xf0\xf8\xe0\xde\xa0\xa6\x04\x78\xa9\x86\xed\xd4\x67\x02\x1e\x2e\x89\x67\xe9\x2c\xc0\x55\x20\x7b\x89\x95\x14\xba\x1d\xa7\x14\x6c\xb3\xff\x07\xd7\x6d\x45\x4a\x37\xb9\xb8\x61\x8b\xe5\xd9\x7b\x84\x7b\x1d\x92\x98\xbe\xed\x93\xbd\x1c\x51\x69\xb1\x9e\xab\xe7\x16\x43\xe6\x65\x91\x3c\x54\x6b\x3d\x73\x3a\xd7\xdf\x4d\xa2\xb1\x9f\x59\xc4\x4d\x77\x95\xac\xff\xc6\x12\xe3\x16\x3a\xb7\xdc\xd5\x64\x66\x71\x3b\x1c\x2c\xaa\xc6\xb0\x1e\x71\x5f\x3b\xaa\x5c\x97\x60\xd1\x09\x75\xdb\x23\x97\xf7\xb0\x1c\x09\x57\xeb\xae\xf3\x07\x98\xb7\x88\x75\xac\xf2\xd2\x68\xd6\x61\x22\xdb\xd2\xf2\x24\xc7\x52\x96\xd8\xc5\xf2\x3e\x6e\xcc\xbc\x40\x34\x9b\xf3\xa8\xf2\xbf\xb9\xa8\xa1\x75\x30\x86\x2a\xcf\xcb\xad\x97\xd1\x92\x73\x1f\xd5\x0f\xe8\x46\x2a\x6a\x8e\x49\x07\xe8\x9b\x94\x46\x8f\xbd\xfa\x87\x07\x21\xf3\x41\xbc\x9d\x0d\x35\x27\x97\x02\x01\x69\xac\x29\xd2\x03\x80\x3f\xd7\xd5\x54\x5d\x16\xf0\xcb\x0b\xb4\x31\x9c\x0d\x78\xaf\x98\x17\x66\xfe\x0a\x70\x9f\x94\xa5\x65\x63\x8b\x6a\xe7\xb9\xbb\x96\x39\xbf\xc6\x0a\x7b\xf5\x92\xaf\x9e\xea\x30\xb1\x8e\xbb\x3f\xce\xf7\x1a\xc4\x59\xfb\x3e\x0f\x04\xe8\xb1\xf5\x99\xc1\x9c\x55\xbe\xf3\x3a\xe7\x32\xf7\x71\xee\x78\x2f\x7a\xd9\xcc\x6a\xe6\x34\x78\x7f\x6c\xfa\x61\xb9\x8c\xf3\xdd\x5b\xf0\xef\x7c\xa8\x4a\x41\xab\x36\xee\x0a\x57\x5c\x4b\xb7\xb2\xe7\x3e\x70\x0a\xba\x1c\x68\x2d\xcc\x7d\xea\xe4\x75\xf6\x93\xf5\x78\x62\xba\xbd\xfe\x19\x01\xeb\x5a\x42\xc1\x7e\xd4\xf1\x2a\x6b\x05\x22\xc6\x7a\xc5\xd1\x51\x56\xa7\x89\xcd\x96\xcc\x83\xa2\xd6\x02\xc4\x69\xe6\x16\xfc\x0f\x0f\x44\xa1\x28\x52\x07\x75\x62\xfe\x8c\xc3\x83\xaa\xd0\x2e\xeb\x34\x3a\x11\x30\xc8\x90\xcd\x12\x48\xf9\x93\x07\xe1\xfc\x49\xe1\xce\xb8\xfa\x3f\x73\x52\x82\xf6\xeb\xbf\x13\x5f\x08\x84\xbe\xa2\x1f\x9a\xae\x03\x84\x4b\xd8\x3f\x51\x79\x09\x04\x07\xf9\xf9\xd3\x76\x01\xfe\x57\x66\xdb\x30\x4f\xe0\x91\x37\x73\xb9\xa7\x63\x17\x56\xba\x85\xed\xf8\xec\x69\x3d\xcc\x47\xd5\xda\xb0\x1f\x64\x87\xc4\x11\xfb\x2c\xcb\x7e\x5d\x09\x2b\xf9\xa1\x6d\xd9\xc2\x2e\x0f\xf5\x78\xbd\xd3\x7a\x0a\x9b\x13\x22\xd6\x28\x6e\x33\x8e\x63\x13\xa4\x35\x9c\x8b\xa4\x68\x1b\xcc\x39\xec\x6f\x4f\xce\x89\xbb\xf2\xdb\x2e\x9f\x3b\xce\x47\xe4\xc2\x4c\xfb\x33\x5c\x69\xef\xad\xa5\x17\xec\xda\xb9\x69\xee\xa7\x4e\x0c\xd8\x4f\xe1\x96\xb9\xb4\x1e\x1d\x6b\x6f\xc5\x7d\xed\x3c\xfa\xe0\x80\x7d\x38\x21\xe4\xd0\xbf\x4f\xcd\xee\x14\xe1\x61\x3b\x6b\x8f\x84\x7d\x2a\xe1\x6b\x6b\xfd\xbf\xeb\x60\x74\x81\x0c\xef\xf3\xe5\x24\x62\x4a\x35\x6f\x3f\xdc\x14\xa7\x0f\xaa\x7e\xcb\x44\x36\xe5\x5f\x1c\x84\x6f\xaf\x8c\xe4\x98\xde\x3f\x3c\x48\xf4\x41\x5d\xf9\xc9\x47\x80\xd8\x25\x34\xb9\xa9\x7d\xc0\xec\x6d\xd6\xc9\xca\xef\x81\xa8\xef\x9e\xf5\x86\x79\x78\x15\x9a\x1d\xbd\xd4\xf6\x06\x0a\xfc\x1f\x2d\xea\x74\x8b\x82\x8e\xe7\xbe\x7c\x8a\xbf\x19\x71\xcd\xb9\xfc\xac\x50\xd8\x78\xc2\xce\x6e\xf9\x13\xef\xe8\x0d\xdc\xd5\xd6\x82\x03\x7b\x63\x7a\xdf\xdd\xb7\xdd\x37\x70\x7a\x36\xa3\x69\x86\xbd\x29\x5b\x28\xc6\xf9\xae\x88\x23\x95\xed\x1d\xfd\xbd\x5a\xcb\xe1\x19\xfb\x61\xf8\xe3\x6b\x5e\x4e\x34\xf6\xa7\xf0\xb4\xb2\x05\x4e\x6b\x39\x56\x21\x2b\x4b\x17\x39\xdd\xe7\xec\x0e\xf4\x3a\x59\xed\x2c\xc6\x79\xe9\xd7\x76\xb4\xc4\xd9\x8e\x3b\xc5\xe7\xca\x81\x5f\xce\xd7\xb8\x01\x5e\xc2\xfb\xd2\x9d\xf3\xb8\x6b\x3c\x84\xf6\x2c\x71\xd2\xe1\x76\x3a\xcb\x15\xe8\x38\x6d\x24\xc4\x1d\x99\x3b\xda\x9c\x76\x12\xda\xf6\x9f\xff\x77\x1d\x8c\x65\x4e\x35\xe6\xed\x87\xb4\xc9\x3c\x1f\x9f\x1a\x21\x14\x3f\xa8\x66\xd5\xa3\x79\x9f\x1f\xc8\x3c\x88\x90\xb7\x42\xf2\x83\x1a\xdb\x20\x93\x37\x6e\x03\x30\xbf\x5f\x65\x81\x30\x17\x48\x0a\xa5\xd2\xa6\x52\x80\x05\xe3\x2c\xba\x15\xf7\x02\xf3\xef\xb9\x24\x19\x3c\xc0\xd3\x59\xb3\x43\x13\xec\x76\xc1\x31\xa4\x3a\x2d\xcf\x87\x41\x54\xf8\x36\x6c\xdd\x13\x66\x37\x30\xd3\x9d\x5a\xd2\x1b\x7b\xf1\x67\xb4\x53\xf6\x43\x9d\xf9\x26\x9f\x9f\xdb\x6f\xfb\x3d\x37\x79\xca\x53\x57\x27\x97\xfe\x2d\x49\xed\x77\x14\x5c\x8e\x0f\x08\x27\x64\x5c\x7f\xe3\xda\x3e\x90\x3d\x77\xf3\x30\xff\x42\x71\x57\x62\x87\xc4\x44\x9f\x38\xe7\x21\xca\x3e\x19\x2d\x78\x98\xee\x11\xcb\x11\x0b\x2f\x39\x58\xe3\x7e\x9b\x33\x2f\xc4\xaa\x98\xe2\xe1\xcf\x39\x16\x34\xbe\xf0\x84\x47\x20\x67\xc0\xaf\x9e\xe4\x5f\xb6\xd3\xdc\x39\xdc\x25\x9e\x8e\x5b\xcb\xdc\x85\xb9\x77\x5c\xb7\x6e\x71\x77\xdb\xce\x65\x3b\xf1\x6e\x13\xe9\xf0\x9f\x13\xd3\x79\x9c\x94\x44\xb4\x24\xef\x7c\x54\x91\x19\xe7\xf8\x6f\xdf\xd3\x81\x3f\xe7\x9e\xf4\xbd\x62\x6a\x28\xbc\xfe\x2d\x98\x3b\xc6\x9c\xe7\x03\x2e\x91\xa3\x4c\xb0\x04\x96\x37\xaa\xeb\x4c\x6e\x05\x32\x3f\x18\x3d\x93\x73\x07\x96\x68\xd9\x49\xe8\x8b\xe1\xe9\x02\xdb\x80\x19\x0e\xb4\x81\x15\xb3\xb2\xe7\x9f\x0b\x31\xff\x66\x18\xda\x95\xf3\x21\x6e\xe2\xbb\x33\x01\xd2\x87\x1d\x17\xc8\xb7\xdc\xf5\x9e\x58\x13\x9b\xfe\xa5\xc9\xd8\xdd\xa7\xc3\x7a\xe9\x89\x9a\x0a\x0f\xf4\xa9\x2c\xa9\xba\xf4\xcd\x7b\x65\xdf\xfb\xf4\xce\x12\x31\x9f\xc8\xfe\x2b\xc9\xe7\x8f\x67\xf8\x0a\x0f\xe8\x24\x9e\x20\xe7\x1f\xed\x5b\xe2\x7b\x99\x2d\x1b\x77\xa8\xf0\xab\x9f\x24\xbb\x68\x56\xe9\xce\x56\x3f\x25\xf6\xfb\x28\xdd\xbc\x8d\xbe\xa7\x38\xb1\xa1\xb1\x5b\x9f\xf8\x80\x53\x1a\x94\xb8\x65\xbe\xef\x4e\x4e\x55\x60\xf5\xc6\x69\x3e\x57\xb9\xba\xbe\x06\x39\x87\x7c\x7c\xb8\xcb\x3c\x8f\xae\x6d\xf6\xea\xe1\xde\x74\xf3\xfe\xd7\x3a\x98\x26\x59\x36\xa8\x33\xbe\x4e\x3c\xc9\x5b\x07\x7c\x3f\x97\xcc\x41\x20\x39\x08\x72\x0e\x3e\xe9\xff\x91\xb9\x20\x6b\x57\x52\xee\x0f\xea\xc6\x3b\x0a\x01\x22\x66\xc0\xe6\x6b\x7a\xa1\x33\x05\x81\x8d\xeb\x99\xca\xba\x4d\x7d\xa2\x2b\x4b\x3c\x4a\xec\xb9\xed\x62\xa9\x91\xd1\xfb\x22\xd4\x9a\x4f\xcc\x79\xb8\xf4\x41\xd2\x3f\xf5\x8e\xd1\x8d\x85\x1b\x17\x4f\xae\xfe\x18\x56\x78\xe5\xc0\xca\x49\xd7\x96\x05\x45\xb6\xbe\x59\xfd\xfd\x6c\x55\x90\x60\xcf\xe1\xd5\x38\xdc\x19\x5c\xdb\xfb\x75\xb9\xc7\x3e\xf1\x90\x8d\x7d\x15\x8b\x97\x91\xb9\x27\x3b\x7c\x42\xa7\x0d\x8c\x4e\x9e\xbe\xd5\x2a\xf4\xfc\xc0\xca\x84\xf5\x9b\x0d\x42\x7a\xd9\x33\xe6\x5c\xdc\xa0\x15\xf2\x94\x9d\x19\x9b\x91\x13\x16\x72\x9f\x5d\x1f\x7d\x7a\xb5\x7f\x48\x32\x47\x3f\x42\x20\xdb\x24\x58\x97\xb3\x2d\xc4\x7c\x65\x5c\xb0\x3e\xe7\x41\x60\xf9\x72\xbd\xc0\xf7\x5c\x53\x5f\xf9\xa5\xec\xc0\x46\x6e\x8c\xb7\xfc\x9f\x75\x20\xf2\x52\xa8\x79\x50\xd5\x7a\x86\xe6\x57\x98\xf2\x7f\xbf\x76\xb7\x1c\xd2\x28\xa1\x91\xf5\xaf\xe4\xdf\xf7\x25\xef\x01\x93\x3e\xd8\x9e\xec\x19\x95\xe3\x35\x81\xfd\x2a\x2a\x9f\x25\xfd\xfb\xfa\xf6\xcc\x35\xb1\xd4\x2a\x6e\xd7\xca\x3b\xe4\x98\x6b\xc7\x6a\x4a\x59\xfb\x26\x44\x31\xec\x74\xf5\xba\xc5\xaf\x92\x9e\xa4\x6e\xbd\x98\x99\x7c\x7f\x53\xd8\x8a\xda\x13\xde\xf3\x93\x4e\xb3\x72\x14\x0e\x78\xcf\x91\x7d\xb8\x67\x53\x74\xa1\x7a\x6c\xc5\xef\x31\x5b\x0e\x6e\x5d\x32\xdb\xb9\xa7\x7c\xad\xc5\x86\x83\xb3\x1b\x7b\x2f\xac\xfc\xb8\xf6\xc1\xec\x63\x7d\x59\xcb\x26\x67\xaf\x99\x5d\xd8\x2f\xb3\x48\x29\xab\x28\x36\xbf\xff\x4e\x6a\x56\xe6\x9d\x58\xea\xc0\xe2\x44\xf7\xa5\x47\x62\x9e\x0c\xbc\x9e\xa7\xb0\x78\x47\x4c\x02\x9b\x15\x47\x2c\x6a\x8b\xf6\x62\x3f\x8d\x3e\x96\xfe\x3d\xaa\x89\xa3\x16\xf1\x4f\x5a\x54\x94\x20\x27\x2f\x24\x31\x4d\x3e\x42\x82\xf3\x2b\xc0\x25\xc5\x25\x22\x92\x2b\xea\xcf\xbb\x75\x23\xca\x5b\x0f\x53\xf8\xf5\x91\x1c\x88\xfd\xb7\x21\x0d\x5b\x38\xa4\x64\x0e\x00\x99\x07\x41\xfa\xe0\xe4\x7d\xf8\x43\xfc\xfc\x90\x33\x6e\x63\xf3\x29\x14\x36\xe5\xdc\x0a\xd9\x62\x91\xdf\x1d\x5a\xa7\x32\xa9\x7b\xd4\x04\x9f\xbd\x3d\x14\x67\x3d\xca\x72\x7b\xcd\x99\xdd\x82\xbe\x13\x83\x84\xcf\xcd\xc8\x6d\x9a\xb3\x26\x69\xd5\x5e\xb5\xd5\x73\x56\x74\xae\xfa\x9e\x9b\xb2\x7c\xcf\xfe\xdc\x8d\x7b\x57\x1f\x5d\xc2\xba\x65\xb7\xf5\xea\xd2\x8f\x19\x8e\x5f\x16\xe4\x1b\x65\xec\x4d\x9f\xff\x7b\xfb\xa6\xeb\x0b\x45\xd3\x2e\xf7\x4e\x5e\xdd\x91\xba\x3a\x4d\xa3\xb7\x76\xe5\xad\x61\xee\xe3\x47\xd2\xda\x7e\xa3\x8c\xd2\x61\xee\x63\xff\xfc\xda\x81\xdd\x09\x01\x09\x06\x73\x09\x36\x6d\x8e\xcf\xfc\x84\xb9\xae\xec\xc5\xb1\x03\x24\xef\x11\x7f\x2f\xee\x03\xc7\x25\x5c\x67\x4e\x57\x5c\x13\x67\x61\xe8\x8a\xb8\x09\xb1\x61\xdc\xd1\xfe\x8b\x80\xb1\xf6\x02\x3c\x1e\x46\xa3\x6d\xa8\x8e\xff\x8b\x03\x59\x5e\x37\xb2\x7e\xd2\x07\x3f\x9e\x3e\xa4\x65\x4b\x06\xb5\x3f\xa5\x82\xf7\xff\x7f\x8e\xaa\x74\x9b\xae\x3f\x5e\xfc\xc5\xf7\x6b\x79\x9a\x3a\xf2\x49\xf7\xee\x94\x45\x98\x9f\xa2\x27\x95\xb1\xcf\xf8\xbb\xb5\x7b\x0b\x1e\x0c\x3a\x9c\x15\xd5\x3e\x67\xc1\x26\xbd\x3d\x13\x16\x4f\x58\xe6\xb2\x2c\x70\xd7\xce\xc2\xe3\x6b\x5a\x52\xd6\xe6\xf7\x55\x58\xae\x3f\x39\x6f\xf6\x76\xf9\xf6\x6d\x1b\x4b\xe7\x9c\xda\x82\x9e\xce\x35\x19\x71\x16\x1b\x17\xf5\xa9\x2f\x77\x9b\x7d\x37\xe7\x57\x5f\xe7\xe2\x0d\xb3\x8f\xae\x7e\xd5\x9f\x9c\x2e\x30\xbb\x6d\xa5\xfd\x80\x50\x72\x79\xac\xd9\x8a\x92\x81\x3d\x09\x11\xb1\x6e\x4b\x6f\xb2\xa7\xc4\xaf\x8e\xcd\x59\xb4\x88\x3d\x77\xf6\x89\x98\x49\xe9\x6c\x76\x67\xb4\x54\x74\x44\xba\x32\x27\x38\xec\x71\xf4\xf4\xd4\x9f\x9c\xdd\x21\xfa\x51\xe3\x92\x2b\x38\x9c\x00\xf1\xc8\x5b\x0b\xdc\xb9\xca\x7e\xf6\xc0\x74\xfa\x50\x1d\xa6\x7c\xbe\xc7\x8b\xcf\xbb\xcc\xe1\xfb\xdc\xa4\xff\x4b\xd6\xbf\x37\x7f\x48\x4f\xf3\xcf\x89\x21\x1f\xb0\x2f\xbf\x86\x97\x1f\xd3\x51\x50\x3b\x93\xf7\xbb\xef\xc1\x86\x1a\xf1\x89\x14\x4a\xfd\xef\xba\xbb\x4a\x79\x52\x42\xd7\xea\x6e\xbf\x33\x7a\x4e\xbd\x73\xbc\xf9\x66\x97\xe3\x78\xc7\x03\xf9\xd9\x57\x3e\x85\x9a\x45\xf8\x67\x52\xce\x5d\x49\xf5\x4b\x0d\x4b\xfc\x5d\xf2\x63\x27\x63\xa9\x4e\xac\xc9\x99\xa9\xe5\x09\x2b\xc6\x87\x0b\x9c\xba\xf1\x7e\x5d\xd6\x98\x50\xa9\xa3\xd4\x3e\xa3\x65\x5f\x42\x8d\xf7\x97\xf5\x4f\xcf\x58\x10\x52\xb4\x77\x42\xff\x83\x94\x5d\x21\x07\x76\x5d\x1b\x48\x4b\xf8\x1e\xaa\x9d\x67\x33\xf0\x75\xae\x7f\xa8\x51\xae\x0a\xdb\x3a\xee\x60\xe8\x8a\x0d\xe7\xd9\x87\x63\x3c\x83\xab\xd7\xbb\x73\xf4\x22\x58\x21\xa3\xd7\xe8\x72\x96\x87\x5a\x84\xe8\x64\x7d\xe3\x94\x07\x3d\x08\x2e\x5a\x91\xc5\x1d\xef\x5f\x10\xbc\x34\xf3\x04\x57\xcf\xf7\x49\xd0\xc7\xa5\x8b\xb9\x89\x5e\xed\x00\x75\xf2\xc8\x7d\x40\x72\x20\x19\x7c\x1e\x66\xf3\xeb\x91\xf5\x97\x58\x0d\x69\x05\x2f\x1f\xa7\x7f\x72\x2d\xcf\x17\xef\x78\x30\xe4\x07\xb6\x4a\x36\xa9\xf2\x7e\xf7\x3d\xfe\x42\x40\xa0\x93\x42\xa9\x6c\x7a\xe1\x24\x23\x21\x7a\xb7\x34\xff\x69\xb2\xde\x67\xd5\xfb\x7b\xeb\x1e\x8f\xb1\x2e\x63\x8e\x5d\x97\x75\x3f\x21\xc0\xda\xf7\x9f\xe4\xb1\x77\x18\x89\xe2\x73\x32\x62\x16\xd7\xbc\xc9\x93\x4f\x9a\x14\xbc\xef\xd6\xd3\x4b\x9c\x54\x39\x9f\x9d\xd5\x0f\xdf\x4a\xa7\x75\x7b\x2d\xb8\x31\xba\xff\x5c\xf2\x7a\xaf\xb5\x65\x42\x03\x4b\xe6\x4b\x79\x5d\x28\x59\xce\x16\x8e\x6b\xf1\xea\x3e\xd1\xc1\x9e\x15\xab\xe9\x5d\x75\x28\x81\x5d\x1e\x9d\xe4\x43\xdd\x2f\xc5\xe6\x44\x5a\xf9\x68\x15\xbd\xe5\xc4\x87\x7a\xfa\xe8\xef\xda\xc9\x39\x16\xd4\xe9\xcd\xde\x1e\xcb\x81\x7f\xb8\xcf\x81\xad\xee\xdc\xa9\x7e\x4b\xbd\x13\xb6\x24\x72\xe7\x7b\xed\xf1\xa6\x6c\x9c\xc4\x3d\xeb\x1e\xe1\x7d\x36\xa7\x9c\x7b\xdb\x2d\x1a\x30\x0f\x1c\xb9\x0f\x48\xff\x7b\x03\x9f\x93\xd9\x9b\x35\xa4\xa5\xfc\xfd\x3f\xc4\x01\xf4\x8b\xd6\xf3\xe6\x02\x75\x66\x36\xf1\xf2\x84\x5e\x7a\xb6\x14\x0f\xea\x43\xc9\x37\xbc\x7f\xaf\x32\xff\xc3\xa8\x41\xbd\xd4\xda\x71\x6b\x46\x24\x45\xe2\xf0\xbe\x8f\x66\x1a\x73\xa4\xbb\xf2\xbe\xb7\xe5\x31\xd6\x18\x5c\x5d\xae\xf5\x6a\x87\xf7\x14\x47\x9d\x39\x42\x2f\x1a\xe6\x9a\x84\xc4\x85\x9c\x79\xb1\x7a\x8b\x7b\xd4\x61\x6f\xb9\xe7\xa9\x17\x72\x62\xbf\xb8\x84\x3e\x17\x7e\x25\x12\xf7\xde\x69\x6a\xa3\x38\x7b\x42\xec\x3a\x27\xd3\xda\x19\xec\x43\x91\xaf\x9c\x05\xaa\xde\xb3\x5f\x45\xd8\x3a\xdd\xbb\x3e\x8a\xe3\x1e\x12\xed\x12\x77\xe1\x0a\x27\x3e\xb8\xc9\xb9\xb1\xd4\x99\xf3\xc4\xff\x96\x8b\xe7\x89\xdd\x5c\x51\xdf\xcd\x2e\x0a\x47\xf2\xb8\x5e\x5e\x97\x5d\x7a\x0e\x9a\x72\xe3\x3c\x7f\xbb\xcc\x2e\xee\xe5\x9e\x72\xab\x71\x39\x53\xb4\x8d\xfb\xdc\xa5\xcc\x65\xdb\xae\x72\x82\xe2\x74\xcf\x25\x20\x7f\x14\x41\x73\x50\xf8\xb3\x0f\xc8\x73\x60\xad\xf4\x90\xee\x2e\x1e\xf9\xfe\x0f\x71\x20\x03\xc1\x0f\xb5\x06\xf5\x2b\xeb\x05\x6f\x4e\xce\x6b\xdf\x37\xbc\xe7\xeb\xe3\xaf\x1f\x78\x73\x12\x6a\x26\x7f\x1e\xf2\x3f\x25\xba\x78\xcf\x9b\xe3\x47\x7b\x99\x13\x25\x28\x94\xdd\x9b\x7a\x6a\x14\xfd\x26\xfd\x5e\x1f\xd2\xfd\xc6\xa4\x50\x35\x60\xa1\xe3\x0f\xb6\x9b\xb8\xb9\x42\x64\xce\x37\xe3\xd8\x33\xae\xaf\x7c\x2f\x7e\x9b\xb3\xbe\xce\x27\xc3\xc5\xfe\xdb\x8e\xd2\xed\x01\x6f\x6c\x4f\x7e\x7b\xdd\xb2\x2b\xa8\xde\xda\xb6\x73\x3f\x67\x41\xc0\x7c\x6b\xf1\x97\x5f\x38\xaf\x7d\xb6\x59\xd7\x36\x5d\xe2\xfc\xf2\x91\xb5\x7e\x5f\x9f\xc5\x35\xf7\xcc\xb0\x61\xdd\xb6\xe4\xce\x77\x2f\xb4\xf9\x74\x73\x0e\x77\xb5\x5b\xb3\x6d\xd0\x55\x21\x6e\x89\xab\x9c\xcd\x8d\x0b\x95\x5c\x38\x06\xdb\x4e\x2a\xbd\x41\x48\x39\x58\xd9\xf4\x9d\x8c\x26\xdc\x6c\x0b\xec\xe2\x8e\xc9\x10\xc6\xf6\xc2\x36\xbf\x0e\x79\x12\x1b\xad\x9c\x6d\xf7\xee\xb7\x23\x0a\x2d\x4f\x01\x31\xfc\xf3\x6e\x05\xff\xf9\x58\xc0\x3f\x2f\x4a\xa6\x0e\x69\x15\x2f\xf7\x86\x2b\xf3\x84\xe7\x7b\x7f\x67\xbe\x4c\x1a\xd4\xb7\x51\x1f\x2e\x0c\x6a\xd3\x82\xcf\xfb\x07\xf5\x6e\x42\x97\xc1\xa0\x5e\x93\xec\xe7\xad\x93\xd3\x67\xc1\x5b\x47\xbb\x33\x86\x7e\xa7\xcf\xbd\x0c\xcc\x3c\x28\x78\x77\x39\x01\x18\x44\x49\x9f\x9d\xdf\x84\x06\x87\x16\x9d\xd3\xc1\xc1\x18\x17\x79\x94\x69\xe8\xb1\x9d\x38\x9d\x5d\x6e\xa7\x68\x3f\x97\x88\x3a\xb6\xca\x31\xcf\x32\x8c\x50\x6c\xb8\xeb\xec\xcd\x38\x4b\x28\xb1\x69\x4e\xc7\x2d\x14\xba\x63\x88\xe9\xb6\x77\x2c\xda\x3f\x15\x73\x07\xec\x23\x2d\xe6\xbc\x99\x42\x50\x6d\x9a\x2d\xce\x36\x33\x09\x2b\x1b\x2d\xc6\x82\x87\x93\x09\x7b\x1b\x75\x8b\x0f\xb5\xf9\xc4\x52\xcb\x78\x46\x50\xf5\x3b\x62\x0b\x2b\x97\x31\xe7\x46\x20\x71\x9a\xc1\x61\xdc\xbe\xd2\x43\x5c\x65\x84\x30\x3c\x2e\x5e\x20\xda\xcc\xb8\x16\xa7\x4a\x57\x61\xb2\xe9\x18\xa6\xc8\xa9\x17\xa0\xd0\x23\x80\x8c\xdb\x43\xf5\xfe\x9d\x87\x32\xb4\xff\x89\x9d\x4d\x19\x83\xda\x95\xf6\xc6\x7f\x50\xdf\xe5\xb4\xf3\xde\xf7\x67\xf1\xdf\x19\x83\x5a\x67\xd3\xcb\xab\xb3\xe2\xe8\xd0\xbc\x0c\x92\x83\xd9\x77\x74\x48\x37\xf3\xef\xf7\xae\x9c\x0a\x88\x77\x53\x28\x29\xfd\x80\x4e\x8b\xe4\xa1\x59\x5d\x80\xed\x01\x95\x46\xdf\x8b\xd8\x10\x72\xcc\x30\xc8\x65\x23\xc2\x16\xb3\x4d\x4f\xd9\xf4\x41\xa5\xf0\xa6\xc5\x46\xa6\x32\x31\x70\x55\x83\xe9\x61\x96\x44\xfc\x7e\xe1\xc0\xf8\x32\x3c\xd7\xe2\x1e\x0c\xe1\x4c\x2b\x30\x91\xff\xa5\x02\x69\xe3\x2a\x63\x5a\xc7\x61\xd0\x68\xb5\x26\x12\x6f\xed\x30\xd5\x78\x8b\x71\xf2\x73\x39\x18\xd3\xe6\x1a\xd7\x3e\x51\x87\x31\x2d\xd9\xf8\xd3\xfd\x14\x58\x1b\x1e\x33\x11\xbf\xab\x04\x27\x43\x53\x93\xa8\xaa\x9f\xf0\x34\x68\x30\x89\xbb\xde\x8d\x08\xfd\x6a\x13\xb7\x2b\x8b\x90\x4c\xdd\xf0\xe7\x39\x70\x84\xcf\xc3\x0e\xe7\xa1\x94\xff\xbb\xfe\x8f\x16\x43\xeb\xfd\xc5\xd7\xdf\x9a\x83\xfa\xc0\x80\xcb\xcb\x07\xaa\xe4\xfb\x40\x24\x07\x43\xfa\x7f\xa4\xff\xbb\x92\x9f\x07\x90\xe4\x0d\x4c\x58\x4e\xa1\xcc\x61\x01\x9a\xbb\x27\x8d\x0f\x49\x01\xac\xa4\x65\xfb\x3d\x66\xe3\x8d\xbf\xb5\x26\xc3\x51\x1e\x37\x53\xc6\xe8\x95\x5b\x5d\x42\xd1\xe6\xab\x86\x51\x16\x22\xc8\x39\x56\x42\x0b\x36\x5d\x81\x8c\xaa\x4e\x23\x49\xe3\x24\x64\xb6\xba\xd2\xae\x19\x79\xe0\x74\x57\xa5\x41\xc8\x30\xef\x90\x8f\x09\x80\xfa\x18\xea\xc5\xee\x78\xfc\x54\x7b\x4b\xf5\xee\x54\x42\xbb\x5a\x33\x35\xee\xdd\x58\xb4\xaa\x33\xa9\x4f\x5a\xdd\xd0\xa0\x21\x40\x4d\x6c\x2a\xc7\x33\x35\x82\xba\xf5\x41\x33\x9e\xaa\x35\xea\x35\xd6\x9d\x40\xbb\xaa\x26\xd5\xfb\xf6\x12\xbc\x53\x5d\x02\xec\xaf\x18\xaa\xfb\x2a\xbf\x0f\x43\x1c\xe0\xef\xc8\x36\x1e\x27\xd3\xe1\xf7\x8d\xd7\x8f\x57\x6e\x03\x99\xbc\x73\x70\xe2\x10\x0f\x40\x72\x40\xc3\x1c\x0c\x99\x03\xc0\xf7\xfd\xd7\xf2\xe7\x06\x91\xf7\xdf\xa3\xd2\x81\xd1\x52\x14\x4a\x78\x15\xa0\x9a\x2d\x54\xe9\xab\x03\x58\xa4\x4b\x1d\x71\x4e\x02\xbc\x4c\x15\x7f\xda\x00\x88\x4f\x51\xfd\xc8\x68\x01\xb2\xee\x68\x68\x92\x73\x1d\x8c\xe5\xd0\x5a\x7a\x5a\x7b\x81\xe1\x61\xbc\xae\x71\xd4\x36\x36\x34\xc6\xd3\x67\xaf\x75\xd6\x1a\xc4\xa2\xef\x8b\xa0\xb6\x88\x41\x0e\x80\xaf\x1a\x1d\xe4\x1c\x0b\x8d\x3e\x6c\x04\xa6\xdb\x6a\x29\xfc\xca\x07\x64\x44\xb5\x12\xbf\xec\x03\x64\x17\x6b\x2e\xfa\xe0\x0d\xc8\x44\x6a\xed\x7b\xc9\x01\xe4\x0a\x35\xa3\x9e\xaf\x02\x64\x76\x69\x46\x3c\x29\x07\x64\x36\x02\x65\xf3\x28\xff\xe2\x60\x7a\x5f\xbd\xe5\x71\x90\x9f\xdd\xbf\xf1\xd6\xc9\xeb\xac\x81\x4d\x83\xfa\xc8\x65\xa8\x9e\x2a\xfe\xfb\x7d\x81\xef\x03\x1e\x26\x86\x74\x38\x0f\x85\xef\x0b\x2e\xe5\xfb\xff\x64\x0e\x84\x3f\xdf\x0f\xf5\xbd\x01\x28\x84\x8e\x5f\xe9\xa6\x09\x98\x1a\x48\x1c\xb7\xdd\x0d\x38\xe7\x4b\x27\x5a\xc6\x02\x91\x5f\xe4\xbe\x98\x0f\x00\x8b\x95\x94\x1a\x4d\x46\x03\x9b\x8d\x94\x35\x68\x2b\x81\x83\x99\xaa\x69\xe4\x1c\x07\xea\x09\xa0\xda\x45\xf5\x3c\x55\x03\x78\xb2\x54\x2d\x52\xaf\x0e\x78\x5f\xa4\x36\x46\x2f\x1a\xe8\xeb\x56\x8e\x19\xce\xb9\x58\x3a\xa8\x53\xf3\x14\x8f\x0e\xaa\xa8\x9c\x62\x75\xaf\x0f\x20\x76\x43\xe1\xfb\xf7\xd3\x80\xd8\x7a\xe5\xac\x4f\x5a\x80\xc4\x5b\x65\x6a\xdb\x6a\x40\xe2\x29\x50\xdb\xcc\x3b\x07\x0b\xdf\xf3\xbe\x48\x7d\xa3\x76\x55\xf1\xce\x41\x15\x36\x2f\x17\x62\x98\x03\x5a\x33\xa4\x65\xfc\xfa\x8f\xf3\xe7\x9f\x90\xf7\xe0\x49\xff\x33\x6b\xe6\x90\xa6\xf0\xf7\x05\x79\xff\xdf\x9d\x31\xa4\x56\xaf\x81\x89\x3f\x29\x14\xdb\x32\x80\xea\x2e\x62\xc8\x9c\x07\xd8\x2c\x92\x7c\x6e\x96\x06\x04\xd5\x49\xad\x34\x21\x80\x05\xce\x33\x5f\xd0\xea\x81\x55\xb7\x64\x8f\xe9\x1f\x06\x76\x9c\x96\xdb\xa3\x97\x0b\x1c\xf2\x93\xeb\xd5\x3d\x00\x9c\xfd\xae\x30\x4e\x57\x06\xb8\xb1\x40\xa1\x4f\x67\x36\xd0\x30\x51\x91\xa9\x23\x0f\xbc\x7e\xac\xa8\xa9\x55\x00\x7c\x75\x96\x2d\xd5\xda\x38\x58\xbf\x74\xb9\xda\x9c\x41\x95\x7c\x4f\xf6\x63\xe6\xb3\x41\x1d\x57\x3e\x66\xf5\xd0\xe4\x8f\x51\xac\x7e\x85\x41\x85\x73\x1b\x8f\x7b\xec\x92\xf9\xc1\xfb\x5e\xfd\x9e\xef\xe3\x92\x79\x50\x35\xfc\xb9\x47\xc3\x1c\x10\x3f\x2f\x86\x9c\x07\x31\x9c\x87\xf2\x6b\xa4\xff\x3d\xcc\x81\xf0\xfd\x60\x47\xfe\x5c\x10\x63\x23\x60\xf4\x36\x0a\x85\x31\x00\x68\x8f\x9e\x38\xca\x34\x13\x60\xac\x17\xfb\x68\xd8\x07\x78\xa9\x4e\xbe\x68\x68\x0c\xc4\x36\x4f\x79\x4f\x95\x02\x16\x45\x4f\x8b\xa1\x96\x02\xeb\x7d\xa5\x2f\xeb\x34\x03\xbb\x72\xa5\xe3\x74\x0a\x81\x83\xd6\x32\x82\xda\x2b\x81\x33\x56\x32\x99\xa4\xbf\xaf\x51\x0a\xdc\xa5\xcf\x9c\xaa\x51\x0e\x3c\xf3\x99\xb9\x55\xe3\x3e\xf0\xa1\x61\xa6\x89\xda\x12\xe0\x97\xd7\xb4\x71\x24\xe7\xf0\x77\x3f\xc6\xdd\x1d\xea\xc7\xaf\xc4\x2e\xa3\xc1\xd7\xd7\xee\xf4\x17\x07\xc4\xcf\x43\x22\x39\xa0\x93\x18\xf9\x1c\x20\xe7\x02\xe5\x08\x8c\xdc\x07\x89\x16\x23\xd7\x81\x97\xef\x90\x92\xf9\x07\x7a\xf9\x43\x6a\x2a\x06\xa8\x1e\x1a\x47\xe8\xb7\x01\xc6\xd3\x84\x98\xfa\xda\x80\x33\x21\x5a\xa1\xeb\x09\x84\x45\x4f\x5a\xaa\x2b\x08\x2c\xa8\x96\x1c\xa5\xf9\x12\xc8\xdc\x21\x51\xac\xf9\x1e\xd8\x78\x6f\xaa\x84\xe6\x34\x20\x3f\x67\xea\x11\x4d\x07\x60\xdf\x3f\x52\x9b\x48\x7f\x5f\x7d\x2a\x50\x96\x2f\x95\xab\xe6\x07\x54\x6f\x92\x5a\xa8\x5c\x03\xd4\xd7\x4f\x31\x52\x8d\x04\x5a\x5b\xa6\xb9\xab\x14\x00\x9d\x92\x53\x5c\x94\x8b\x80\x3e\x39\x71\x7d\xb2\x1f\xb2\xf3\x07\x55\xb0\xa2\x33\x74\x88\x83\x1c\xce\x43\xe2\x73\x40\x24\x07\x73\xba\x1d\xff\xc9\xc1\x0c\xe7\xa1\xf0\xd7\x7f\x32\x9f\xa3\x89\x65\xe3\x3f\x39\x10\x73\x7e\x9f\x74\x3e\x03\xa3\x3a\x29\x14\x9a\x1f\xa0\xac\x31\xf6\xa4\xce\x15\x80\xba\x52\xb0\x44\x67\x12\x60\xfb\x8f\x50\x8a\xe6\x06\xc0\x6f\xaf\xf0\x4d\x75\x0b\x20\x46\x5c\x24\x43\x75\x15\x90\x12\x26\x6a\x39\x58\x47\x66\xab\x98\x88\xc6\x1c\x60\xc3\x38\x49\x57\xb5\x42\x20\x7f\xba\x44\x97\x8a\x09\xb0\x77\x9d\xf8\x36\x65\x3b\xe0\xc8\x6e\xf1\x04\xe5\x37\xc0\xd9\xeb\x92\x53\x95\x8f\x03\x37\x46\x4b\x16\x28\xe9\x00\x77\xde\x8b\x0f\x28\xb9\x03\x8d\x76\x12\xea\x0a\x5f\x81\x57\x96\x93\xda\x15\x9d\x81\x8e\x93\x93\x0a\x95\x04\x81\xbe\x46\xb1\x77\x7f\x73\x40\xe5\xe6\x43\x3a\xcc\x01\xf1\x73\x60\x48\x0e\x66\x53\x2c\xff\x1c\x50\x18\xd2\x74\xbe\xc6\xf3\x39\xc1\x08\x3e\xe7\xe0\xc3\xe7\x6a\xec\x0b\x86\xd4\x84\xcf\xdd\x68\xf0\xf7\x93\xd2\x18\x40\xec\x14\x85\xa2\x61\x07\x68\x79\x8f\x4b\x57\x9b\x06\x58\x48\x8c\xcf\x57\xbd\x0f\xb8\x3e\x9d\x90\xaa\x32\x1f\x08\x9e\x35\x31\x4c\xd1\x14\x98\x5d\x3b\xa1\x5c\x79\x13\x90\x5a\x27\xfc\x59\xb9\x02\x58\xa1\x22\xba\x5c\xc9\x07\x58\x2b\x22\x2a\xaa\x94\x09\x6c\x3d\x29\x16\xad\x3c\x16\x28\x0a\x9a\xf4\x4b\xf1\x36\x70\x48\x60\xd2\x6a\x85\x4c\xe0\x14\x47\xec\xb2\xfc\x06\xe0\x62\xb1\x98\x98\x7c\x25\x50\xd1\x24\x76\x46\xae\x18\xa8\xdd\x2a\xea\x23\x9f\x04\x3c\x39\x29\xe6\x28\xfb\x1c\x78\x19\x25\x7c\xeb\x6f\x0e\xa8\x94\x3f\xd7\x86\x9c\x0b\x55\xe0\x3c\xf2\x1c\x24\xf3\x50\x48\x0e\x24\x91\xdf\x17\x92\x87\x0a\x74\x19\xb9\x0e\x86\x39\x90\xc2\x21\x55\xe1\xe7\x86\xc8\xe8\x02\x82\x8d\x14\x8a\x5a\x0c\xa0\x7e\x7a\x6c\xbe\x62\x0c\x40\xa3\x8c\xf9\x25\x77\x00\xb0\xee\x1f\x03\xc1\x5c\x80\x79\x89\x42\x91\x8b\x05\x42\x43\xc6\xb5\xc9\x17\x03\xf1\x79\x82\xef\x15\x66\x02\x29\xb1\x13\x65\x15\x2c\x80\x25\x5b\x84\x04\xe5\x6b\x81\xec\x5b\x42\x9b\xe4\x38\xc0\x66\x9a\xd0\x31\xa1\xf7\xc0\xba\x9b\x14\x8a\xbc\x3b\xb0\xef\xb8\xc8\x22\xd9\x14\xe0\xa8\xbb\xd0\x4b\xc9\x00\xe0\xb8\x2b\x85\x22\xd3\x0a\x5c\x9a\x2c\x54\x27\x3b\x0f\xa8\xec\x10\x2e\x17\xdd\x0c\x54\x45\x0f\xfd\x2e\xe9\x4c\x0c\xa9\x9d\x28\xdf\xdf\xd3\xa5\xfc\x07\x07\x42\xfa\x5c\x24\x0f\x32\xb3\xcd\xec\xb0\x80\x29\xa0\xc0\x61\x7d\x18\xfb\x1a\xd0\x30\xb7\xeb\x9c\xf0\x12\xd0\x4b\xf5\xde\x21\x16\x06\x18\x32\xc3\xd4\x25\x0d\x00\xda\xd1\xf8\xd5\x52\xb1\x00\xcd\x7e\xd1\x95\x99\xe2\x00\xad\x6e\x9d\xa4\xfc\x1b\xc0\x50\xa1\x30\x4d\x29\x11\x30\xd8\x7e\x22\x54\xb5\x16\x30\x78\x76\x43\x5c\x6b\x05\xa0\x2f\xff\xf0\x91\xd6\x34\x80\x3a\xf3\xfd\x33\xcd\x09\x00\xb5\x73\x60\x9f\xa6\x2e\xa0\x33\x13\x90\xbf\x0d\x68\x6e\x03\x66\x8e\xeb\x19\xaf\x35\x01\x90\xdd\xf3\xed\x96\x56\x0f\xa0\xa0\xd3\x9e\xa7\x79\x00\x90\xa3\xbd\x55\xd5\x12\x05\xe4\x8d\x5e\x94\x6b\x16\x00\x72\x0b\x1a\xeb\x34\x2f\x02\x72\x6b\x1e\xfc\xd4\x12\x00\xe4\x9e\xd4\x75\x0e\xfe\x9b\xb2\xa3\x6f\xc7\x69\x96\x02\xb2\x47\xab\xeb\x34\xa9\x80\x0c\xef\xdd\xfd\x9b\x03\x19\xce\xbb\xe7\xfb\x1a\xe4\xbd\x46\xdd\x11\x3c\x88\xac\x3e\x3d\x56\xe0\x06\xa0\x32\x93\xe5\x33\x5e\x13\xd0\x55\x73\xb0\x10\xde\x3c\xf8\x34\xf4\x78\x2d\x16\x0a\xd0\x4c\x42\x67\x48\x9e\x04\x4c\x04\xe3\xc5\x67\xc4\x02\x26\x2b\x17\xbd\x90\x5b\x05\x18\xf9\xae\x57\x50\x68\x04\x68\x2d\x85\xa5\x2a\x1f\x01\x5a\xd6\xc9\x2c\x4d\x75\xc0\xa0\xf9\xc6\x28\xad\x4c\x40\xbf\xfa\xd1\x5c\xed\xf9\x80\x7e\xf2\x47\x19\xed\x2e\x40\x7f\x0a\x27\x5a\xd3\x15\xd0\x79\x04\x28\x5a\x72\x37\x69\x4d\x07\x64\xb6\x76\x5f\xd4\xbe\x08\x28\x2a\x7f\x59\xad\x9d\x0a\x28\xba\x7d\xd8\xa9\xf5\x14\x50\xc8\x7e\xf5\x90\x57\xf7\x81\xe6\x8b\xda\x33\x00\x45\xb1\x27\xd9\x5a\x3a\x80\xbc\x5d\xc3\x75\x2d\x25\x40\xae\xbf\xd6\x40\xb3\x08\x90\x6d\xa8\x89\x1f\xfc\xef\x72\x7e\x95\xaf\x35\x3f\x03\xb2\xbc\xd5\xfa\x3f\xb9\x28\x3f\xfe\x6b\x1d\xfc\xcd\x83\xc8\x77\x98\x4e\x1e\x73\x0b\x50\x3f\xc1\x08\x11\xcc\x00\x74\x0f\xd8\x35\x0c\xf6\x41\x3f\xcb\xfd\xae\xd8\x2b\xc0\x44\x3f\x64\xc5\xd4\x3b\x80\x49\xd6\x9c\xe7\x33\xaa\x01\x13\xcf\x8c\x67\x72\x14\xc0\xe4\x67\xce\x80\x72\x15\x60\x9c\x56\x18\xa1\x2e\x03\x18\x95\x9d\x24\xb4\x5d\x01\xc3\x43\x15\x5d\x3a\x41\x80\xe1\xf8\x27\x75\x7a\x3e\x80\x7e\x4a\x7b\xdd\x60\x1f\x0c\x6e\x62\xa7\xce\x2b\x40\x77\x29\xa0\x54\xd2\x57\xa1\xfd\x10\x50\xb8\xd8\x75\x4f\xe7\x21\xa0\xbc\xb3\x63\xb5\x0e\x13\x1c\xe5\x89\x6d\x93\xb5\xdd\x00\xc5\xc5\xad\x8e\x3a\x15\xf8\xa8\xa2\xd3\xd4\xa4\x63\x83\x1f\xca\x42\x0f\xad\x75\x2e\xa3\x43\x79\x75\x9d\xb3\xce\x03\x7c\x56\x66\xdd\x7e\xa9\x73\x13\x3f\x94\x4a\xab\x09\xad\x47\x80\xbc\xc9\x8d\xb7\xda\x61\x80\x7c\x36\xfe\x83\x7f\x18\x99\x07\x42\xd6\x4f\xe6\xff\x0b\x57\xe8\x6a\xf2\xfa\xb0\x9e\xf6\x64\x4c\xc4\x9f\x39\x4a\xfa\x0a\xd6\x95\x22\x2e\x80\xf1\x52\x77\x2d\xf1\x17\x80\xf1\xac\xc0\xce\x29\x99\x00\x7d\x60\xf6\xfd\x99\xf3\x01\xd3\xf6\xf4\x12\xf9\x10\xc0\x34\x66\xdd\x3c\x95\xc5\x80\xc9\xf6\x82\x1a\x8d\x1d\x80\xb1\xdf\xa9\xb5\x3a\x83\xeb\x24\xf8\xa6\x3e\xf5\x3c\x60\x98\xd7\x78\x9b\xba\x07\xd0\x7f\xde\x29\xa5\xf3\xf8\x4f\x1f\xf4\xec\x01\x95\x94\xdf\x5a\xba\x45\xe8\x56\x79\xf7\xb5\x4c\xc7\x07\x50\xea\xfa\xb8\x43\x27\x10\x3d\xca\x61\xaf\xfa\x75\xb3\xf1\x54\xb5\xec\xb9\x83\x9e\x1a\xee\xa8\xdd\x7e\x52\xa4\x63\x89\x1f\x4a\xed\xf5\x0d\xba\xe7\xd0\xac\x2a\x7a\xb7\x5b\xd7\x0f\xef\x94\x3f\xdf\x92\xd3\x0b\xc6\x33\xd5\x69\x37\x4f\xe9\xaa\xe2\x87\x52\xe1\xf5\x78\xed\x26\x40\x61\xf2\x7f\xf5\x61\xe4\x1c\x0c\xb2\x0f\xe3\x36\x69\xcc\xe4\xf9\x1b\x27\x75\x79\xf7\x1c\x95\x8b\x0c\x82\xc6\x1e\xfe\xc3\x07\x91\x9c\x94\xc9\x3c\x17\xa6\x78\x39\x60\x2e\xe7\x9f\x32\x78\x2e\x98\xb3\x62\xa2\x66\x36\x01\x16\xe1\xe9\x49\xca\xea\x80\xd9\x8b\xb5\xe3\xd5\x5e\x03\x74\xe3\x82\x77\xda\x52\x80\xa9\xd0\xc9\x1e\x6a\x20\x60\x54\x7b\xd3\x5b\xbf\x08\xa0\xbd\x7a\xea\x63\x78\x16\x30\x3c\xf6\x2d\xc9\x40\x18\x30\x38\x8e\x42\x9d\x83\xdc\xa3\x7a\x3b\xf1\x4b\xf5\x79\xb7\xb0\x9e\x37\x5e\xa8\x9d\xec\x3c\xa1\xa7\x81\x07\x6a\xed\x6d\x21\x54\x2b\x9c\xd2\xf4\x7a\x39\x4e\xef\x24\xae\xaa\xf7\x34\x6e\xa5\x9e\xc2\x51\xcd\xf9\x0f\x72\xf4\x76\xe1\x96\xda\xab\xba\x32\xdd\xf3\x78\xa1\xd2\x52\xb3\x55\xaf\x10\x8f\x54\x2f\x93\x5c\xd8\xf5\xc3\x7a\x46\x78\xaf\xfc\xa9\x7c\xae\x4e\x37\x06\x14\x37\xe2\xff\xc9\x3f\x50\x28\xea\xbc\x7b\xbb\x22\x55\x1a\x3c\x5f\x5c\x36\x53\x5b\x56\x40\xf4\x4f\x3e\x08\x39\x3f\x88\xe4\xa4\xe8\xbf\x1c\x04\x25\xac\x00\xc6\x34\x7f\xf5\xe9\xad\x00\x8b\x19\x1d\x25\xd7\x09\x58\xac\x4b\xdd\xaf\xe4\x07\x58\x28\xe4\x8c\xd1\xf8\x05\x98\xd5\x15\xbc\xd0\xcd\x05\xe8\xdb\x4f\xdd\x35\x9c\x05\x98\x2c\xa8\xea\x32\x2a\x06\x68\x0d\xcd\x13\x0c\xab\x01\x23\x97\xee\x5b\xc6\x33\x00\x83\xd5\xd8\xa7\x63\xdd\xc7\xa6\x0e\xe0\xb2\xe6\xad\x2f\xdf\xf4\x2b\xb1\x56\x67\xf3\xfb\xcb\x06\x36\x48\xd6\xad\x7c\xf9\xde\xe0\x1e\x62\xf4\x76\x0f\x73\x61\xa2\xfa\xa5\xc8\xd3\x96\xa8\xfb\x69\xc0\xc1\x52\x9d\xde\xdb\xd9\xfa\x16\x38\xa3\x71\xaf\x4a\x89\xda\x8d\xeb\xea\xbb\x6e\x5c\xa0\xe6\xa0\x4e\xcd\xe5\xaa\x32\xf5\x22\x1e\xa9\x3e\x2c\x8b\xd7\x6f\x45\x8d\xfa\xd8\x7f\xf7\x81\xdc\x0f\x7c\x1e\x88\x9f\xf7\x4e\xe6\x9d\x93\x1c\x84\xc2\x4c\xf5\x6c\x81\xd3\x7f\x78\x10\x1a\x8d\x36\x43\xe8\xf7\x1f\x2e\xc6\x22\xd5\x2e\x55\x32\x16\x60\xb6\x78\x87\xce\x10\x04\xac\xda\xa3\x76\x29\x9a\x03\x56\x3a\xc9\x25\x6a\x3d\x83\x7d\x59\x1d\xa0\x63\x06\x58\x5c\x2d\x10\xd1\x8f\x02\xcc\x4c\x4e\x4f\xa7\x9d\x03\x4c\x8f\x56\xe7\x9a\xce\x01\x8c\x1e\xbe\xe8\x33\x5e\x01\x18\xef\xea\xcd\xa7\xe7\x00\x06\xdf\xb1\x45\x37\xa8\x6b\x9d\x61\x31\x9c\xf4\xdf\xb5\xff\x34\xe8\x41\x30\x35\xe9\xcd\x63\x9a\x06\x68\x06\xdd\xcd\x6c\x5a\x08\xe8\x06\x47\x1e\x17\xd2\x6e\x83\x6e\x70\xe9\x7e\x20\x6d\x1f\xdc\xf5\x43\xef\x50\x8d\xc4\xe0\xa5\xef\x52\xbd\x81\x76\xf6\xff\x63\xec\xaf\xe3\xa2\xda\xfe\xef\x71\xfc\x00\xd2\x1d\x22\x3d\x43\x77\x77\x77\x37\xd2\x02\x82\x08\x8a\x89\x81\xad\x28\x8a\x01\x36\x2a\x16\x16\x2a\x20\x25\x26\x2a\x16\x52\x2a\x62\x81\xa2\x22\x8a\x8a\xa8\xd8\x2d\xcc\x9c\xf5\x7b\xcc\x99\x39\x5e\xbd\xaf\xfb\xfe\x7c\x7f\x7f\xad\x07\x77\xf4\xca\x73\xcf\xde\xcf\xbd\xcf\x59\x6b\xaf\x85\x4c\xf3\x3b\x17\xc4\xac\x9e\x63\xaf\x71\xe4\x39\x3b\xeb\x89\xd8\x6d\x5c\x7d\x72\xb6\x15\x89\x13\x86\xa7\x8e\x8d\xb1\xde\x83\x3a\x23\xd9\xff\x5a\x0f\xf4\x3c\xe0\xde\x7b\xe7\x5f\xa0\x95\x4c\xcd\x87\x4c\x0d\x6a\x5d\x68\x7f\xd7\xfe\x3c\xc2\x10\x30\x2f\x37\x3c\x2d\x6c\x02\xd8\x5b\x59\x5c\x15\x97\x06\x9c\xcd\xed\xe7\x4a\xb1\x01\x0f\x86\xd7\xa4\x91\x0f\x00\xef\x81\xd0\xf7\x6a\x0b\x01\x9f\x79\xc9\x3d\xda\xfe\x80\x77\xef\x74\x17\x23\x5d\xc0\x93\xbd\x7c\xb3\x05\x67\x9e\x98\x6e\xd7\xb3\x2d\x00\x5c\xc4\x6a\x0e\x3b\x5c\x05\x1c\x5f\x35\x2f\x76\x6e\x04\xec\x57\x3d\x49\x77\x4e\x02\xec\x8f\x91\xfb\x5c\x2c\x87\x47\xda\xbc\x85\x8e\xcd\xae\x41\x0d\xdb\xf1\x24\xdb\x2e\xaf\xaf\xde\x36\x07\x02\x76\x3a\x8f\x66\xd8\x25\x90\xef\xec\xf7\x74\xce\xb0\x9b\x4d\xb2\xec\xae\xdf\xb0\xb4\x4b\xc1\x28\x5b\xcf\xb6\x65\x76\x59\xd0\xb3\x49\x6e\xbc\x66\xa7\x09\x6f\xab\xe5\xb4\x0e\xea\xac\xa2\xdd\x53\x44\x5a\xde\x3e\xf9\xd0\xb6\x09\x0b\xcd\x2a\xea\x86\x6c\x8f\xa2\xc0\x74\x45\x55\x97\x6d\x0b\x76\x99\x04\xff\xd7\x7a\xe0\xf1\x9d\xbc\xfb\xce\x42\x7a\xca\x39\x1c\x54\x6f\x57\xbf\xc6\xaf\x08\x18\xce\x60\x8e\x16\xc8\x05\xac\x2b\xf5\x84\x84\x42\x01\x27\x63\x13\x0b\xd1\x75\x80\x57\xa7\xf5\x27\xa9\x0e\xc0\xa7\xd6\x7d\xa6\xa2\x16\x10\x30\x3f\xb8\x85\x91\x0e\xf8\xcb\x8f\x89\xd1\xe9\x00\xfc\x1e\x4d\xd9\x67\xb2\x1b\xf0\x9d\xb2\xac\xc8\x56\x1e\xf0\x18\xd8\xd6\xcf\x79\xba\x74\xe3\xaf\xb9\xe1\xf2\x18\x70\xce\x6b\x1d\xef\xc1\x04\x1c\xbe\x3f\xeb\x76\x3f\x0e\x38\x08\x93\x85\xae\xbe\x9f\x42\xec\x17\x91\xdb\x5d\xd2\x69\x9f\xac\x87\x6e\x8e\x62\x64\xae\x9b\x45\x67\x89\xe3\x62\x72\x85\x9b\xc1\x8d\x25\x4e\xae\xe4\x6a\x37\xcf\xb6\x31\x0e\x3f\xc8\xbb\x8e\x6f\x69\x1d\xd0\xb9\xc3\x4e\x2b\xc8\x67\x8e\x3b\xea\x27\x3b\x7a\x43\xd9\x8e\xff\x84\xa3\xb3\x05\xf9\xd3\x61\x69\x6d\x8c\xc3\x00\xc2\xac\x96\x57\x36\x39\xee\x41\xb8\xd5\x91\xf2\x15\x8e\xc5\x18\x6b\x59\xf0\xe7\x79\x89\x9e\x07\xba\xbc\xf5\xc1\xe5\xfb\xc4\xde\x8d\xa4\x72\x41\x68\x1d\x84\x79\x37\x53\x49\xa0\x07\x70\x51\xd7\x52\x12\x2c\x06\x7c\x1e\x1b\x28\x71\xfa\x64\x90\x80\xe5\x35\x69\x45\x20\x64\x81\x8b\xa5\xa2\x2f\x10\xb2\x33\x40\x9d\xb1\x10\x08\x55\x8a\x6d\x35\xb8\x0f\x04\xb9\x67\x75\x98\xe7\x00\x01\xa1\x4b\x9e\x3a\x68\x01\x3e\x4a\xdb\x92\x5c\xd7\x00\xee\xdf\x6b\xc3\x3d\xbd\x00\x57\xf5\x6b\x9b\x7c\x1d\x00\xa7\x4b\xaf\x9f\xfa\xbe\x63\xad\x70\xbc\x48\xca\x7a\x47\xbc\x2e\x75\xca\x62\x93\x3e\x6b\x69\x7f\xa8\x3b\xb7\x5d\x66\x90\x7c\xbe\x69\xd7\x9b\x5c\x97\xb3\x49\xdf\xaf\xad\x23\x5c\x58\xa4\x93\x17\x79\xf1\xa5\xeb\x3c\x72\x8c\xe7\x9e\x73\x67\x5c\x67\x91\x0b\x3d\x04\x69\x3f\xa4\x3a\x4f\xd7\x71\x64\x9b\xf3\x93\x9a\x15\x2e\xab\xc9\xaf\x8e\x1a\xe5\x1f\x5c\xad\x20\xe8\xe0\x7d\xe8\xa6\x8b\x3e\xac\x6c\x75\x0e\x0c\xb9\x7c\x80\x85\xed\x9c\xff\x98\x07\x04\x93\xe2\x37\xf9\x5e\x8e\xa2\x78\x5b\x05\x05\x05\xca\x67\x4d\xb7\x45\x86\xca\x4f\xb2\x78\x27\x43\x9d\x1f\x7c\x27\x68\x7c\x1e\xf1\x16\x08\x7a\xa1\xcd\x27\x3c\x09\x88\x14\x31\x79\x2b\xb9\x0d\x18\x6d\x69\xfb\x40\xfe\x18\x10\x63\xea\x7d\x8d\x61\x03\x44\x2e\x8c\xd2\xe5\x9c\xe5\xc2\xaa\x33\xf9\xad\x15\x81\xe0\x86\x85\x6f\x9d\xdf\x02\x7e\xd7\xb7\xbc\xf2\x1c\xc0\x77\x2f\xe6\x51\x7e\xbf\x1c\xb4\xbb\xad\xbb\xb1\x2a\x48\x13\x8d\x2e\x93\x3f\x6e\x0d\xf1\xfb\x94\xe1\x92\xcb\x8e\x0c\x89\xed\x8d\x77\x13\x60\x47\x84\x7a\xdf\x21\xdc\x47\xb1\x67\x86\x64\x5f\x3b\xee\x5e\xca\xde\x16\x6c\xd5\x14\xe0\xe1\xc6\x3e\x11\x64\x76\x51\xd3\xc3\x94\xfd\xda\xff\xce\x99\x87\x1e\xe5\xa4\x90\x5f\x0d\xed\x03\x54\x93\xe6\x79\x87\xf4\xf1\x11\x3f\x32\xdd\xd3\x99\x5c\xe2\xf1\xee\xd0\x5b\x8f\x5a\xf2\x94\xeb\xc5\x03\x17\x3c\x66\x93\xf7\x9c\x7b\xf7\x06\x78\x68\x93\x3f\x1d\xcf\xee\xea\x73\xdf\x00\x0d\x7b\xab\x3f\xe7\x01\xb7\x1f\x12\xb9\xa3\x28\xbf\x7b\xfa\xde\x37\x83\x14\xab\x23\xfe\xd4\x41\x6c\x15\xa6\xee\xb1\xfb\xd9\x8a\x53\xeb\x85\xd6\x83\xd0\x79\x31\xc9\x07\xad\xf4\xe4\x0b\x81\x64\x27\x77\x39\xf5\x21\x20\x61\x7c\xe8\x09\xa3\x6f\x40\xf4\xb2\x34\x15\xfb\x2e\x20\x7c\xe7\xbc\x0a\x0f\x67\xbc\x0a\xd2\x2c\xca\xf0\x3f\x84\x72\x9f\xa7\x47\xe5\x42\x25\xd8\x8f\x3c\xce\xdf\xb2\x88\x2c\xf8\xb9\xc9\xed\xcd\xe7\xc4\x18\x9f\x7e\x33\x0f\x5f\x56\x7a\x6c\xf3\xdd\x2d\x5e\xae\xac\xd5\xb1\xf3\x5b\x17\x7a\x6f\x64\x5d\x8d\x3e\xfe\x5b\xff\x72\xc2\xe7\x23\xdb\x3c\xd2\xfd\xe4\x3c\x1f\xb0\xc7\x87\x2b\xd6\xaa\xfb\x6e\x67\x6f\x0f\x15\x3d\x52\xeb\xf3\x92\xfd\x3e\x90\x38\xbc\xce\xd7\x9b\x94\xf2\xdf\xb8\xbf\xc5\xb7\x8f\x34\xf6\xf3\xde\xd3\xe8\x43\x92\x93\xbd\x6e\xec\x5c\xee\x73\x83\xdc\xe9\x61\x52\xfc\xd2\xa7\x84\x3c\xed\x96\xb3\x35\xcb\x27\x8f\xbc\xe5\x32\xf4\xc7\xbe\x90\xab\xba\x88\x3b\x1e\x5c\xde\x57\x5e\x55\x84\xca\x19\xd4\x5f\x4f\x50\xbe\x10\xb4\x0e\xc2\xeb\x13\x1f\x95\xfb\x11\x11\xcf\x47\xe9\x67\x92\xb6\x89\x50\x3c\x39\xed\x0f\x32\x71\x92\xf1\x2b\x59\x65\x60\xa2\xa6\xc3\x73\xd5\x7e\x60\xbc\x6e\xc0\x5b\x63\x19\x60\x4c\x42\xa2\x9d\xf3\x1d\xf4\xc7\x8c\x9e\x95\xe6\xe7\xf6\x6b\x4e\xf8\x84\xf5\xae\xe1\x73\x3e\x9e\x0c\xaa\xab\x78\x15\x97\xfa\x3a\xc5\x5f\xb0\x55\x23\x79\xf4\xf3\x1e\x9f\x95\x03\x9d\x69\x13\xee\xb9\xf9\xae\x1c\x76\x1d\xb7\xb2\xa5\xd4\xff\xe8\xf0\xce\xd4\xa5\x74\x0e\xd4\x89\xc5\x01\x1f\x59\x6b\xe3\x8f\xd4\x44\x06\xcd\x67\x6d\x8f\x3f\x50\xb1\x3b\x58\x94\x75\x35\xb6\xaf\xf4\x48\xb0\x38\xdb\x34\x6a\x80\xd6\xbf\xd0\xbe\x2f\xdb\x43\x83\xe5\xd9\x9d\xc1\x4b\xb6\x1e\x0e\xfc\x4c\x6a\xf9\x2f\xd9\x5c\x1f\xb8\x9d\x8c\xf0\xe5\xdb\x98\x14\xa8\x4e\x2e\xf0\xaa\x5e\x57\x16\x60\x40\xd6\xb9\x53\x7a\x39\xae\xfe\x81\x48\x18\xa9\xcf\x9d\x07\x22\x54\x9e\x1c\x73\x29\x1f\xd5\x27\x69\xfe\x9b\xd6\x41\x84\xf3\xee\xfd\x27\xd3\x3c\x28\x83\x8b\xd9\x65\xa2\x47\x39\x98\x63\xa8\xf5\x43\x42\x0b\xc8\xc9\xb2\x38\x37\xea\x31\x30\xe3\xbd\x97\x8c\xa1\x1f\x69\x3e\xe1\x4c\xf4\x58\x97\x9a\x8f\x42\x29\x0e\x59\x8d\x61\x9d\xfd\x92\xf1\xfd\xcb\x6b\x13\x56\x3f\xea\x19\xfd\x62\xef\xb6\xb4\x81\xbb\x43\xe1\x0d\x0d\xdf\x26\x8a\xdf\x18\x08\x29\xeb\x29\x9f\x12\xd9\x3c\x21\x24\xea\xd7\xe7\x69\x09\xa7\xdb\xc2\xcc\x86\x2a\xb3\x1a\xaa\x14\x22\xa4\x87\x9d\x33\xba\x7e\xe7\x1e\x65\x47\xe4\xb0\xd4\x52\x26\xed\xfe\x18\x99\xc8\xf2\x4f\x96\xdc\xd1\x16\xfe\x95\x75\x3f\x2e\x78\xdb\xd8\xf0\xab\x6c\x46\x74\xfc\x46\x46\xa4\x0b\xdb\x3f\xaa\x63\xfd\xdb\x88\x35\xec\x85\x11\xd3\xd6\x0e\x86\x3b\xb3\x6f\x86\x84\xaf\x8a\x8e\x48\x65\x7f\x0b\xda\x96\xbf\x2a\x7c\x39\x69\xec\x5f\xbb\xbc\x31\xcc\x9e\x9c\xe4\xa3\xfe\x4f\x3f\x24\x72\x25\x58\x1c\x94\xf9\xc6\xad\xcb\xec\x34\xf1\x17\xff\x1d\xca\xbb\x07\x9f\xcc\xcb\xbb\xa0\xfd\x00\x68\x5f\x8c\xc5\x67\xb9\x98\x1f\xa1\xba\x50\xe8\x0e\x90\xdf\x6b\x70\x45\x7e\x2d\xfb\x5c\x5e\x92\x93\xb3\xde\x8c\xb7\x7d\xf3\x76\x87\x9c\x72\x9d\xfa\x78\xd9\x54\xd9\xb1\x03\xa3\x53\x6e\xcd\x1c\x7f\x67\x9e\x58\xda\xb7\xe6\xee\xb1\xbd\x45\x4f\x27\xbd\x3c\x1f\x3c\xc6\xb8\xee\xc6\x0c\xbf\x53\xb9\x71\xf3\x6e\x7f\xcf\xb9\x7d\xf4\x6a\xcc\x94\xef\xa9\xf3\x1a\x0f\x7a\xc6\x4d\xf8\x55\x32\xcb\x66\xf7\xed\xb8\xc6\xa1\xf9\x53\xf5\xb6\xbe\x8d\x1f\x18\xfa\x9a\x55\xbc\x39\x26\xc1\x6e\xd8\x3f\x93\x45\xe7\xfd\x14\x66\xc6\x7f\x63\xc9\x8d\xfd\xfe\x6f\xbf\x93\x15\xad\xb1\x5e\x6c\xf3\xe8\xc4\x65\x26\xb1\x81\xec\xec\xc8\x99\x8b\xd7\xc6\x6a\xb1\x4f\x84\x39\x2c\x2c\x8f\x31\x62\x7f\x0d\x7a\xbf\xe0\x65\x74\x22\xa9\x12\xf0\x84\x33\x0e\xd2\x8f\xa8\x73\x42\x21\x11\xc7\x41\x2d\x1e\xaf\x43\xf3\xdf\xf4\xfd\x6f\x5a\x07\x91\xc5\xe3\x7b\xe7\xf1\x7c\xcf\x57\x1c\x23\xfe\xe2\xc3\xb7\x15\x89\xfa\x12\x04\xb9\x64\xfb\x19\x66\x8c\xe4\xb9\xb7\x2d\x9b\x8f\x58\x47\xe9\xcc\x7c\x6c\x53\x90\xed\x3b\xd3\x39\xb1\x7d\x68\xa9\x72\x7c\x42\xe4\x89\x86\xe6\xd9\xcf\xa7\xa4\x67\xbc\xaf\x9d\x3d\xcd\x7c\x55\xf9\x8c\x75\x87\x6c\xb2\xe6\x1e\xf6\x9a\xb7\xa1\x44\x3a\x63\x79\x4b\xd1\xe2\x88\x6d\xa5\xe3\x9e\xbf\xbe\xb8\xd4\x67\xc3\xa8\x71\xec\x9f\x33\x17\x59\xae\xba\x97\x6e\xf9\x6b\xfb\xec\x9a\x15\xcf\xc6\xe5\x0f\x79\x4d\xbf\xb7\x74\x51\xba\xe0\xd0\x99\x29\x5e\x8b\x1f\x8c\xbb\x3f\xac\x91\x25\xbc\xe8\x63\xda\xea\xe1\x8d\x19\xba\xf3\x59\xa9\x2b\x58\x8c\xb1\x1f\xe6\xce\x4e\x9d\xc6\xca\x48\x76\x99\xf3\x2d\xe5\x3c\xab\x39\x21\x7c\xd6\xb2\x14\x07\xb6\x5e\x8c\xe4\xac\xdc\x64\x05\x76\x6c\xd4\xd3\x19\xf3\xc6\x0c\xb2\xcb\xc2\x3e\x4c\x73\x1d\xf3\x88\xfd\x24\x84\x62\x61\x04\xaa\x38\xbf\xff\x28\x5e\xee\xcd\xbf\x75\x20\x74\x0e\x00\x5d\xff\x02\xde\xb8\xd0\xf7\x80\x69\x1d\xcc\x1e\x8a\x17\x66\xa5\x1f\xa6\x78\xbd\xf7\x0e\x65\xc3\x2a\x91\x22\x7b\x7b\xb3\x0e\x5c\x36\x99\xc3\x68\xea\x98\xb2\x5b\xca\x6d\x9b\x5d\xe5\xf9\x92\xa2\x23\x91\x66\xa1\x8e\x95\xbb\xd7\xbc\xce\x98\x32\x2e\x70\xfb\x9e\xdc\x95\x0b\x59\xb3\xfb\xd6\x3a\x2c\x98\xb2\x73\xc1\x62\xe1\x3c\xbd\x39\xed\xe7\x9c\xf2\x82\x17\x4c\x9b\xf5\xb9\x37\x3f\xdf\x37\xc7\x68\xe6\x83\x1f\x53\xf2\x5e\xcc\x9c\x95\xfd\xe0\xe7\x8d\x05\x59\x33\xec\xa7\x3d\xfb\x55\x98\x13\xf7\x3b\xdf\x85\xe7\xf3\x31\x35\x68\xb2\xfc\xb0\xc9\xc4\xdd\x53\x2c\xb3\x52\x86\x4f\xa5\x5f\x9d\xb4\x34\xcb\x8f\xc5\x97\x26\x94\xf5\x62\x42\x08\x2b\x33\x59\x6d\xa2\x48\xa6\x35\xab\x35\x41\x32\x73\xf9\xf8\xa7\x6c\xad\x18\xc9\x8c\xfb\xe3\x3d\xd8\x81\xa3\xbd\xc6\xcb\x8c\x2b\x66\x97\x87\x95\x01\x42\x2c\x6e\x1d\xb4\x0f\x84\x1b\x8f\xd7\xa3\xf5\x60\x13\x67\xfc\x5d\x7f\x01\xef\xf3\xed\xf6\x5c\x3c\x44\xe9\x06\x86\x3c\x6b\x28\x1f\xf4\xb7\x8c\x63\xbd\x1c\x7c\x9a\x77\x3a\x61\x64\x06\x41\xdc\xfa\x72\xac\x5a\x37\x4d\xe9\xc3\xa5\xa6\x6a\xa6\x83\x80\xf9\xfb\xda\x59\x87\xc7\x06\x6d\xf1\xf3\xda\x1d\xbd\x27\x24\x65\x70\x4c\xc5\xaa\xee\xad\x37\x72\xb6\x4c\x6b\x9f\x1f\xbc\xa9\xa8\xa8\x70\xee\xfb\xec\x94\x0d\xb6\x27\x07\x17\xd6\x66\xf5\xad\xf3\x7a\xf0\x6b\xf1\xee\x4c\xfb\xc2\x29\x3f\xd7\x2f\xbc\x31\x7e\xd6\x6a\x89\x5f\xc7\x67\x33\xd3\x37\x2e\x7f\x37\xb4\x7a\xea\x9b\xf4\x81\xa5\xdb\x87\x7a\x26\xc7\xa4\x4f\x58\x62\x33\xec\x3f\xa1\x3b\x5d\x62\xc1\xa4\xe1\xb6\xf4\x84\x71\x6b\xe7\xb9\xb1\xd4\x53\xad\x68\xdd\x47\xda\xc1\x99\xd7\x58\xd7\x13\xec\x52\xef\xce\xc8\x63\x8b\xc5\xce\x1f\xfb\x23\x3b\x86\xed\x3b\xfa\x66\x4a\xd7\xd4\x1f\xec\x5d\xe1\xb5\x63\x3d\x26\x77\xb2\x8f\x86\x6d\x05\xd4\x6e\x12\xff\xa9\x03\x99\xa0\xff\xdf\xf5\xd3\x3c\x38\x57\x07\xf3\x4b\xf6\x24\xc5\xef\x0f\x2e\x3b\x4b\xfd\xb9\x5e\xfd\x8b\x54\x8e\xd2\xed\xba\xc6\x0b\x22\x8b\x09\xa2\xc9\xe2\x72\x87\xc6\x62\x99\x5b\xc7\xfb\xcf\xcf\xb4\x2c\xd6\xaf\x3f\x30\xe5\xf4\x37\x9f\x42\xd7\xba\xf5\x97\xea\xae\xc7\x0f\x44\xbd\x98\x6f\x55\x29\x30\xbd\x36\x53\x71\x4a\x46\x79\xd4\x86\xaa\xa9\xfb\xd3\x33\x0e\x37\xd4\x7d\x9e\x11\x9b\x74\xe9\x90\xfd\xbd\xfd\xb3\x0c\x12\x82\x4a\xbd\x7f\x75\xcd\x54\x4d\x98\xb9\x3b\x63\x68\xfb\x94\x92\xf8\x03\xc5\xf5\xc3\x31\x99\x65\xf1\xbd\x45\xef\x86\x0f\x8d\x17\x4c\x90\xd9\x20\xc0\x92\x4a\x8d\x4e\x98\x56\xf0\x8e\x15\x93\x5c\x1f\x7f\x73\x55\x2d\xeb\x5c\xc2\xb1\xf8\xe2\x7c\x51\xd6\xaf\x38\x85\xf8\x0d\xcb\x92\xd9\xee\xd1\xd2\xb1\x75\x4b\x4b\xd8\xdb\xc3\xef\xc5\xa9\x2d\xaa\x64\xb7\x84\x96\xc4\xdd\x9c\x7f\x9d\xdd\x1d\x72\x2c\x86\x3d\xef\x2c\xa9\x13\x50\x0e\x58\xf1\xee\x77\xfb\x0f\x72\x31\x9d\xe7\xfb\x3f\xef\xeb\xdf\xf5\xd3\x3a\x88\x6a\x09\xaa\xfe\xc6\x33\xd4\xba\x78\xab\x78\x89\xab\x7f\xf9\xd8\x44\xcd\x83\xdb\x7a\xd7\x28\xbf\x80\x26\x46\x07\xd5\x5f\xeb\xb3\x6e\x3e\x56\x6a\x16\x56\x2a\x57\x68\x5f\x61\x34\xa0\x91\xba\x2d\xb7\xed\x90\xdb\x55\x1b\xd5\xbc\xd2\x2b\x18\x9d\x1a\x50\x35\xe5\xd6\x85\x9d\x93\x26\x8f\xb9\x97\x36\xe7\x7c\xe6\x5a\xa1\xb4\x87\xf1\x9b\x1b\xf4\x6b\x5a\x33\xf6\x47\xa9\x9e\x93\xbc\xbb\x64\xc2\xd4\xb0\xca\x33\x4f\x86\x47\x65\xde\x08\xdb\x5d\x17\x34\xdc\x91\xfa\x23\x5c\xf9\x48\x23\xcb\x24\xf9\x5e\x38\xe3\xd0\x76\x56\x41\x62\x56\x78\xfe\x3e\x59\x56\x57\xdc\xae\x08\x9b\x5d\x05\x2c\x32\x56\x2a\x3c\xba\x38\x93\x3d\x29\x32\x3e\x82\xbf\x68\x90\xbd\x34\x62\x7a\x84\xd2\x86\x45\xec\xf3\xa1\xfb\xc2\x19\xeb\x5d\xd9\x5f\x82\xfa\xc2\xcd\x0b\xaa\x49\x8d\x80\xda\x70\x83\x95\x9d\x64\xa8\x9f\x51\xd8\xaa\xe5\x5f\xc9\xa5\xde\x4e\x80\xfb\xf6\xbf\xfb\xe0\xff\xa5\x03\xa9\xb5\xa3\xe6\xff\xbb\xf3\xd4\x7c\x19\x2c\xe3\xea\x21\x9e\x44\x5d\xa3\xfe\xdc\xdd\xfd\xb7\x28\x5f\x91\xe6\xb5\x77\xa9\x75\x76\x7a\x73\xb7\x37\x07\xab\x2c\x1e\x6b\x4a\xaf\x21\x88\xdd\xef\x1e\xc9\x6b\x5f\x53\x28\x2c\x9c\xd6\xed\xe0\x70\xd0\x30\x6b\xee\xf7\x2e\xc1\xd0\x3e\xd7\xc4\xf4\x59\xb7\x65\x33\x5e\x86\xeb\xc6\xe7\xdc\x2a\x5d\xf5\x20\x46\x33\xfc\xd4\xcd\x2b\x95\xa6\xf1\x43\x81\x8b\x3a\x7e\xdc\x5a\x91\xf8\xd2\x4f\xfc\xa6\xee\x70\x73\x02\xdb\x2f\xb8\x69\x80\xd5\x12\x2b\xee\xe7\x7a\x7e\x19\x5b\x37\x2a\xdd\xef\xcb\xe9\x02\xb6\x7f\xa4\x83\xdf\xa3\xba\x1e\xf6\xc6\x30\x0d\xff\x95\x55\x72\xec\x13\x21\x65\xfe\xf7\x0e\xdf\x67\x3f\x0f\xda\xec\x5f\x73\x60\x0f\xa9\xe4\x4f\xfa\xbf\xde\x73\x8e\x74\xf0\xcb\x08\xe8\xdc\x39\x9a\xf4\xf3\xed\xf4\x3f\x59\xfc\x9e\x5c\xee\x95\xe6\xbf\x67\xf3\x3d\xf2\x84\xfb\x1a\xff\x3d\x1b\x7e\x92\x37\xdc\x44\xff\x37\x17\x67\x55\x20\x17\x69\x1f\x80\xa3\x54\x3d\xc3\x87\x2e\x52\xfd\xf0\xbd\x7a\x2b\x35\x3f\x9e\xc6\x77\x6c\xe4\x60\x67\x75\x17\xc5\x13\xb7\x56\x3f\x58\xc4\xc1\x06\xe3\x27\x94\x2f\x46\xf5\xe9\x17\xd4\xdf\x2b\xb9\xfe\x8a\xda\x4f\x37\x6f\x7a\x7d\x4f\x6d\x8c\xd8\xfc\x65\xbe\x03\x6f\x2d\xaf\x69\xf8\x4f\x8b\xec\x3f\x1c\xa0\x64\x19\x36\xc6\xe3\xb9\x4c\xda\x08\xcf\x9a\x88\x86\x67\x58\x1e\xeb\xdf\xec\xcf\x7a\x2e\x5d\x36\x21\xd8\xdf\x4b\xe3\x59\xd5\x8d\x75\xa1\x89\xee\x26\xcf\xc7\xff\x7a\x1d\x92\xea\xb6\xb2\x5b\x81\xfd\xc2\xff\xbd\xdb\xdd\x9b\x06\xa4\xb8\x5f\x92\xbb\x7b\x9b\x1e\xa9\xeb\x1b\xe8\x3e\xd0\xa8\x4c\x5a\xfb\x74\xba\xe7\x9d\xbb\x4b\x66\x7b\x9e\xf5\x50\x3f\x39\x48\xae\xf0\x78\xec\xe1\x77\xf4\x1e\x59\xea\xee\xee\x3e\xa1\x9a\x41\xde\x77\x91\xf7\xa8\x2f\x5f\x46\xde\x74\xb9\xe9\xa9\x50\x5a\x42\x0e\x38\xcf\xf3\xf4\xdc\xa7\x47\x0e\x39\xc5\x79\x84\xed\x7e\x0a\x3d\xfb\x70\x20\x8b\xb7\xde\x97\xf1\xd6\x03\xed\x87\x52\xc3\x3b\x1f\x35\x52\xbe\x27\x1f\x9e\x5f\xa3\xfa\x61\x5f\xee\x1d\xea\xfb\xbf\xa7\xf9\x40\x80\x83\x57\x17\xf5\x52\xe3\x72\xfe\xf1\x0b\x4a\x1f\x53\xf7\xf3\x8d\x28\xf5\xde\xdf\xfb\x03\x35\x5f\xb6\x54\x7f\xa3\x72\x54\x56\x2f\xfd\xf5\x5a\xfe\x0c\x41\xcc\x6d\xfc\x79\xc7\xf0\xad\xbc\x4a\x46\xff\xf7\x2f\x9e\x6b\x75\xae\x46\xbb\x7f\x6b\x1e\x13\x6d\x23\x17\x34\xea\xfb\xbd\x25\xf2\x8e\x9d\x9e\xfd\x3f\x4c\x0e\x14\xb9\x16\xbb\x48\xfc\x64\x5c\x6d\x74\x97\x72\x3c\xf0\x6b\xcc\x8f\xcf\xae\xfd\x8e\xf2\x83\x63\xc8\x0b\x2e\x02\x0e\x57\xfb\x72\xc8\x4e\xa7\xa3\x0e\xe6\x0f\xa5\xc8\x9f\x0e\x73\x7e\xe7\x79\xbc\x6d\x37\x86\xa0\xfd\x63\x87\xf7\xcd\x93\xa0\x66\x37\xcb\x51\xe6\xe2\x1c\x98\xdb\x46\x3b\x1a\x9f\xcd\x83\xbb\x4d\x80\xa3\xdc\x49\x07\xc4\x59\x9d\x70\x0a\xac\x0b\x46\x90\xf5\x2d\x27\xad\xaa\xb3\x48\xb3\x32\x71\x54\x2b\xef\xc0\x4a\x73\x6f\x60\x91\x1a\xb7\xde\xad\x3c\xbf\xb0\x6a\x3e\x5e\xfd\x94\xdf\xcd\xa7\xb5\xd7\xa9\x3c\x84\xfe\xc6\x7b\xd4\x78\x74\x2b\xf5\x50\xfe\x31\xed\x56\xcf\xc7\x72\xf0\xf2\xa3\x37\xeb\x39\x78\x52\xef\x23\xa5\xaf\xab\xf0\xfd\x46\xe5\x68\xed\x5e\xc3\x6a\xe5\x60\x21\x2f\x37\x63\x8e\x00\xc0\x97\x44\x10\x53\x1e\x03\xda\xcd\xe2\xa7\x92\xe5\x01\x17\x5f\xd5\xc0\x30\x69\x7c\x88\x59\x6a\x30\xc7\x57\x0c\xf7\x73\x5a\x4c\x73\xdd\x04\x51\x55\xbc\xc9\xb2\xd0\xc1\x12\x3b\xcf\x4a\x58\xa5\xdb\xce\xc2\xce\xc7\xc1\x56\x25\xbf\xf3\x2c\x72\xbf\xab\xa1\xcd\x38\xdb\x6a\xce\xdb\xed\x38\x6e\x62\x66\x65\xf1\xec\x01\x6a\x8d\xef\x5b\x25\x3d\xaa\x43\x85\x89\x80\x55\x52\xe7\x19\x54\x19\x6f\xb5\x3a\xdb\x51\x8c\x0a\xe3\x93\x56\x42\x6d\x07\x70\xc9\xf0\x94\xd5\xcd\x2b\x43\x38\x6d\x34\xdf\x7a\xcc\x85\x6d\x38\x65\xb4\xc1\xca\xeb\xcc\x2e\x74\xea\x77\x5b\x9b\x9c\x4c\xc1\x0d\x83\x75\xff\xf8\x62\x95\xd3\x7e\x50\x54\x3f\xf8\x82\x1b\xd4\xf7\xff\x32\xe5\x3e\x35\x3e\x0f\x5d\x9e\x50\xfc\xdf\xcd\xe8\x97\x03\x54\x1f\x3c\xf3\x81\xca\x4f\xaa\x6f\xfa\x42\x8d\x5b\xad\x23\x7b\x12\xf1\x07\xff\x47\xf3\xbf\x34\xef\x97\xa5\xc5\xe3\x3d\xdf\x03\x8c\x12\xe1\xc3\xa3\x3f\x03\x76\x0f\x15\x16\x05\x4c\x07\xc2\xb7\x30\xe7\x7b\x3a\x00\x93\xbf\xeb\x3c\x75\x2a\x02\x0a\x66\xe8\x0f\xda\xce\x04\x59\xc6\x67\x30\x64\x35\x13\x5f\x9b\xef\x1b\x31\x2d\xa7\x03\xcf\xc2\x8d\x42\x2d\x2b\x00\xec\x31\x10\xa1\xf9\x7d\x93\x9c\x1f\xca\x00\x43\xde\x78\xf4\xbb\x69\x80\x86\xbd\x49\xe8\x8b\xe7\x00\xb3\xd0\xf8\xd8\xe3\x18\x80\xd1\x60\xa2\x7f\x6f\x31\xc0\x5c\x6c\x12\x7d\x7b\x11\xc0\x3c\x60\x32\xe5\xfa\x38\x80\x39\xdf\xc4\xa7\x65\x15\xc0\x78\x66\x2a\xd8\xe8\x0f\x30\xab\x80\x52\xde\xbe\xc0\xd5\xc1\x7c\x5b\xce\xad\x7f\xa0\xbe\x9b\xda\xff\x1e\xbf\x7b\x46\xe5\x8a\x75\x7a\xbe\xa3\x7c\xd5\x5a\xde\x7d\xa2\xce\x49\xe7\x35\x7e\xf5\x13\x7f\xdc\x03\x2f\x3d\xf5\x37\xff\x99\x3f\x9a\x8b\x33\x79\xfc\x68\x0a\x8f\x2f\x8d\x5f\x0d\xa8\xb5\x8d\x20\x83\x3b\x00\x4b\x1d\xe9\x11\x5e\x4b\x81\x40\x57\xe5\x09\x2e\xe7\x80\xf1\x9b\xd5\x2f\x39\x10\xc0\xd2\x0d\x9a\x87\xac\xa7\x03\x3b\x3a\xb4\x1e\x9b\xd7\x00\x75\xdf\xb4\x36\x98\x35\x00\xd7\xa7\xeb\x04\x9b\x9e\x00\x9e\xee\xd3\xb6\x30\x35\x02\xbe\xd4\x32\xef\x1a\x87\x53\xfc\x7e\x94\x9e\x14\xc5\x67\xf7\xe8\x24\xfc\x74\x06\x64\x3b\x75\x5f\xbf\xdb\x04\x8c\x9c\xa9\xab\xf5\x72\x16\xa0\xf0\x41\xfb\xfd\xd3\x53\x80\xfc\x66\xdd\x86\xee\x6e\x40\x71\xb1\x8e\x43\x97\x12\xa0\x30\x51\xcf\xf4\xa6\x06\x30\xca\x12\x38\x43\xad\xf3\x9f\xa9\xed\x51\xd4\x3e\x18\xf9\x88\xda\x3f\x1f\xb7\x3c\xa7\x78\xf0\xce\xd8\x77\x94\x1e\xe2\xba\xe1\x4f\xca\x3f\x86\xd6\x41\xd1\xf7\xc0\x0f\xe7\xf1\xf8\x4f\x1e\xef\xbf\x26\xe7\x6f\xde\x8f\xe6\xff\x63\x78\x7c\xa1\x4f\x0b\x20\xf2\x89\x20\xbc\x1e\x03\x46\x2f\xc4\xec\x5c\x52\x01\x1f\x47\xf9\xeb\xb6\x57\x81\x44\x97\x91\xf2\x56\xdf\x80\xd9\x87\x94\x6d\xcc\xdb\x81\xc2\xdd\xaa\x2e\xa6\xb3\x81\xfd\x3f\xd4\xda\x8d\x8f\x03\xa7\x16\xaa\xe7\x18\x9d\x03\xae\x26\xa9\xd7\x1b\x85\x00\xdd\xdf\xd5\x73\x0c\xbb\x81\x37\x29\xaa\x5f\x0d\xa7\x53\x3e\x06\x0c\x9d\x4b\x1c\x94\x61\x69\x50\xba\x07\x91\xb3\x92\x5e\xa0\xbc\x88\x25\x0a\xbf\x51\x09\x17\x8c\x8a\x57\xaf\x01\x49\x25\xf5\xa4\x67\x47\x00\xb1\x89\x0c\x89\x9e\x66\x40\x52\x9e\xd5\xcc\xcd\x05\xfa\x38\xa5\x87\xf2\x8f\xea\x1b\xec\xa7\xf4\x1f\xdd\x23\x3f\xeb\x70\xb0\xa3\x86\x45\x9d\xb7\x2f\x67\x21\x92\xf8\x33\x0f\x82\x37\x0e\xbf\xfd\x50\x78\x7a\x89\x5c\x5e\x5e\x4e\x36\x4f\x1f\x33\x96\xa7\x13\xa0\xef\xbd\x3b\x2d\x00\xf8\xfb\x09\xc2\xb9\x1c\xd0\x5d\x2d\xf4\xc9\x56\x05\x70\x79\x2e\x25\x64\x59\x0d\x8c\x0e\x92\x39\x61\xf6\x18\x98\x74\x4d\x3e\xd7\x78\x0f\x90\x7b\x43\xe1\x18\xcd\xf3\x1b\xae\x04\xca\x34\x95\xaa\xff\xcd\xef\xeb\xfe\x04\xee\x9a\x29\xbe\xd2\x9b\x03\x3c\xb7\x1c\xc5\xd0\x5d\x07\x7c\x37\x97\xef\xa6\x79\x7d\xf5\x0d\x1c\x14\xae\x10\xdb\xc8\xd5\x39\x10\x76\xe0\x31\xcd\x3f\x78\x8e\x14\x1f\x29\xc5\xc6\xe7\x38\xae\x0e\xb2\xff\x34\x57\x07\x47\xeb\xc0\x6e\x6d\x21\x29\x7f\x98\x46\x13\x72\x07\xf1\x47\x1e\x44\x79\x2b\x17\x77\xf1\xf8\xda\x0d\x3c\xdd\x07\xed\x83\x90\xc3\xe3\xbb\x27\xf0\x72\x21\x68\x3d\x10\xed\x7f\x60\xcd\xe3\x95\x6d\x97\x00\x5a\x46\x82\xa2\x16\x22\x80\x5d\x80\xd8\x62\x63\x55\x20\xc8\x4e\x3c\xd2\xe8\x28\x90\xa6\x2b\x55\xa3\x3f\x19\x98\xed\x25\xed\xfc\x9b\xe7\xcf\x04\x76\x54\x28\xcc\xd7\x89\x04\x0e\x89\xca\xc5\xea\x6c\x02\x8e\x0d\xca\xb7\x6b\x37\x00\x17\x7a\xe5\x67\x68\x3d\x01\xae\x7f\x95\xdb\xab\x35\x02\x78\xc8\x27\xeb\x40\xf3\xfa\x9a\xb2\xc0\xb0\x87\xc4\xa0\xc6\x04\x6a\x7e\x9c\x91\x90\xe5\x8d\x47\xf2\xdf\x38\x90\xf1\x92\xda\xd7\x1e\x6b\x7c\xa5\xf2\xc2\xee\xcc\xe2\xfa\xc3\xd0\x7e\x48\xa7\x03\xf0\x97\x0e\x66\x0f\x4f\xf7\x40\xeb\xe1\x56\xf1\xfc\x23\x16\xf0\x7c\x83\xa6\x26\xe0\x2f\xfe\x3f\x22\xf9\x6f\xde\xdb\x8c\xa7\x0f\x32\xcb\x02\x54\x5f\xf0\x1b\x1b\x79\x00\x66\x3f\x85\x1d\xf5\x57\x03\x5e\xc9\x22\xcb\x75\x6f\x01\xf1\x79\x62\xc9\x5a\xde\xc0\xc4\x93\xa2\xdf\xb5\x02\x81\x45\x2e\x12\xf2\xda\x73\x80\x75\xa5\xd2\xc2\xda\x35\xc0\x2e\x4b\x99\x1a\xad\xfd\x40\xe9\x24\x99\x70\xe6\x2c\xa0\x6a\x87\xd4\x62\xa6\x22\x70\x56\x40\xaa\x92\xe1\x05\xb4\x14\x48\x3e\x64\xac\x00\xba\x32\xa5\x08\x46\x31\xd0\xb7\x42\x72\x0d\x53\x0a\xf8\xf4\x45\xe2\xbc\xba\x07\x35\x3f\xfc\x64\x48\x6e\xfd\x02\x33\xb9\xf8\x04\xdf\xa8\x7b\x15\x9d\x65\xa0\xf6\xc7\x66\x9e\xce\xe1\x34\x2f\x07\xa9\x92\xc7\xf3\xef\xe5\x21\xad\x83\x59\xcd\x9b\x17\x4b\xcc\x79\xfd\x90\x37\x2e\x74\x1e\x08\xcd\xff\x07\xf1\xc6\xc3\x89\xa7\x83\x30\xe4\xe5\x8d\x30\x6b\x00\x89\xcd\x04\xa1\xbb\x17\x30\xfa\x21\xe8\xa1\x15\x0b\x38\xbb\x0b\xae\xd3\xd2\x05\x22\x65\x85\xe7\x33\x1d\x81\x34\x79\xe1\x2e\xe6\x7a\x60\xc6\x66\xd1\xdd\x9a\x3f\x80\x3c\x71\x89\x49\x34\xbf\xcf\x88\x02\xb6\xf1\x89\x1f\x67\x3c\x02\x0e\xec\x90\x34\xd7\xc8\x05\x8e\x9c\x91\x50\xd6\x28\x00\x4e\x4c\x94\xd8\xc4\x59\x0f\x8d\x6e\xe2\xdb\x35\x44\x80\x1b\xd1\x12\x16\xea\xf3\x80\x07\xd5\xe2\x92\xea\x8b\x80\x17\xf9\x62\xb3\x54\x7b\x81\x8f\xd5\xc2\xca\x6a\x05\x94\x3e\x28\xfa\xdf\x3a\xa0\x33\x22\x5c\xa4\xfd\x70\x7e\xeb\x60\x78\x7a\xc0\x82\xb7\x7f\xf7\x81\x39\x19\x7f\xf7\xc3\x14\x9e\xcf\x12\xad\x07\xf2\xe3\xfd\xff\xed\xf6\x71\x51\xff\x20\x17\x47\x09\x00\xfc\x91\x04\xc1\x94\x01\xb4\xb7\x0b\x8c\x90\x79\x0f\x18\x1d\x26\x08\x89\x26\xc0\xe9\x15\x41\xa8\x1b\x03\xf1\x3f\x04\x8d\xd5\x82\x81\xcc\x4a\xc1\x4c\xa9\xd5\xc0\xe4\x75\x04\xa1\x36\x07\xc8\x9d\x2c\x6c\x2e\x21\x00\x2c\x59\x4d\x10\x12\x53\x80\xd5\x17\x09\x42\xad\x07\x28\xd9\x2c\xba\x48\xed\x13\x50\x66\x2d\x26\x25\x79\x0a\xa8\x70\x20\x08\xd5\x85\xc0\xb9\x4a\x91\x3d\xaa\xbb\x80\xa6\x59\x22\x77\xc5\xd5\x81\x96\x10\x82\x50\x35\x07\x7a\x1c\x85\x73\x24\x75\x81\xa7\x9b\xfe\x57\x07\x54\xc3\xeb\x67\xfb\x79\x75\x6f\xe3\xe9\x65\x68\x1d\x0c\xdd\x07\x68\x5f\xa0\xa9\xbc\xbc\x41\x5a\x07\x12\xcb\xc3\xdf\x3a\x10\xde\xdf\xb7\xe4\xf9\xe8\xd0\x3a\x10\x05\x3e\x80\x38\x46\x10\x62\x7b\x01\x49\x65\x82\x10\xfa\x02\xa8\xcf\x27\x08\xfe\x91\x80\xc9\x37\x82\xe0\xbf\x0e\xb8\x6a\x11\x84\x5a\x35\x90\xba\x4f\x30\x4a\x4c\x02\x18\xbb\x88\x20\xc4\xe4\x81\xac\x48\x82\x50\x2d\x05\x96\x08\x09\x39\x09\x26\x03\xf3\x8f\x10\x84\x40\x11\xb0\xbc\x8a\x20\xd4\x36\x03\x3b\xa7\x8a\xfc\x54\x25\x81\x83\xe6\x22\xa7\x47\x94\x03\xfb\xed\x08\x42\x48\x0b\x38\x72\x8b\x20\x54\x4d\x81\x0b\x22\x22\x7a\x02\x2b\x81\x06\x1b\x82\x10\x91\x02\x5a\x4b\xb8\xef\x65\xff\xc7\x0f\xe4\xaf\x5c\x98\x7f\xde\xeb\xdb\xce\x20\xfe\xf0\xbf\xe7\x2b\xb2\xa5\xde\xe3\x4a\x9e\x72\xf5\xe3\xa0\x86\x9f\xff\xc3\x11\x17\x00\xcd\xf4\x88\x23\xc2\x4c\x40\xb7\x79\xcc\x66\xb1\x27\x80\x91\xfb\xc4\x44\xe9\x76\xc0\x30\x78\xee\x4b\xd9\xc3\x80\xa1\xcf\x6a\x6d\x85\xd1\x80\xe1\xe9\xe2\x93\xa3\x12\x01\xfd\xef\x65\xf7\x46\xed\x00\xf4\x6f\x9d\x69\x51\x1e\x07\xe8\xf5\xb7\x57\x28\xbb\x02\x7a\xcb\x9f\x7a\x2b\xad\x03\xf4\xb6\x7f\xbd\xab\xf8\x04\xd0\xd9\x09\xc8\xf6\x00\x4c\x61\x40\xfc\xe2\x0f\x4d\x4d\x21\x40\x2a\xee\xbd\x97\xa6\x32\x20\x3d\x7b\x20\x55\xab\x05\x90\x5b\xd0\xe7\xcf\x64\x01\x32\x61\x8f\xe6\x69\x0a\x00\x32\xfb\xba\x5a\x35\x27\x03\xb2\x29\xb7\x7d\x38\x1d\x47\x6e\x67\xfb\x5d\xa6\x08\x20\xbd\xbe\xad\x89\xf9\x01\x90\xb9\xd4\x3c\x9a\xb9\x1d\x90\xa1\x5c\xf0\xfe\xc7\x0f\x84\xe6\xb7\xe6\x11\xff\x0f\x1d\x04\x9d\x17\x23\xf3\xc8\xc5\x87\x83\x6a\x1f\x7d\x52\x04\x6e\x00\x5a\x39\xe1\x7b\x85\x39\x75\x69\x8f\xa9\x14\x6f\x00\x8c\xcc\x27\x9c\x97\x3e\x04\x18\x26\xcc\xb5\x96\xdd\x0a\x18\x7e\x59\xf9\x50\xe1\x2a\x60\x6c\x57\xdc\xa4\x3c\x12\x30\x4a\xa9\xd8\xaa\xf2\x1a\x30\xb4\x3c\x5b\xa5\x3a\x09\x30\xc8\xe8\x58\xac\xba\x1d\x30\x88\x7c\xb6\x4c\x35\x1d\x30\x74\xf8\xf5\x4b\xa5\x80\x1e\x07\x96\xa3\xb6\x39\x20\x53\xf7\xa5\x4e\xf3\x31\x20\xfd\x65\x30\x40\x6b\x18\x90\x9b\xdd\xef\xa0\x2d\x04\xc8\x13\x4f\x42\xb4\xd5\x00\xf9\xb9\x0f\x34\xb4\xea\x00\x79\xc5\x4e\x0b\xed\xa9\x80\x82\x53\x47\x83\xb6\x17\x20\x8f\x6b\x17\x35\xaf\x01\xb2\xef\x9b\x7b\x34\x0f\x02\xb2\x87\x1b\x05\xb4\x56\x03\x72\x94\x6b\xd6\xff\x97\x0f\xc6\xdf\xf5\xff\xf6\x01\xe0\xe5\xc5\xa8\xbc\x77\x7e\xc4\x6f\x03\x68\x06\x7a\xc7\x09\xf6\x00\x3a\x5b\x43\x17\x8a\x2c\x02\x0c\x66\x26\xc6\x49\x8c\x01\x8c\x17\x67\xa6\xc9\x8c\x05\x4c\x2f\xcd\x39\x3a\x32\x06\x30\x9d\xbd\xea\x80\xd2\x72\xc0\xe4\x54\x71\x93\xca\x43\xc0\x24\xb4\xe2\xa6\xfa\x2a\xc0\x28\xb6\x41\x54\xdd\x11\x30\x1c\x7b\xb3\x40\xdd\x14\x30\xb4\x79\x76\x53\xad\x0f\x30\xf2\x1b\x7e\xa7\xa6\x06\xe8\xfa\x03\x72\x7d\x3f\x97\xea\x54\x00\xf2\xd9\x1f\xfa\xb4\x9b\x01\x79\x93\xd7\x29\x3a\xad\xc0\xc8\xd1\xcf\x66\xe9\x1a\x00\x8a\x63\x7b\x3a\x74\xdd\x00\xc5\x0b\xf7\x56\x69\xe7\x00\x0a\x6e\xb7\xa3\x74\x7d\x00\xc5\xfe\x76\x79\x1d\x4d\x60\xa4\x45\xab\xac\x4e\x00\x30\xd2\xfb\x8a\x8e\x56\x07\x20\xcf\xb8\x54\xa4\x3d\x12\x90\x4f\xff\xaf\x71\xf8\x6f\x3d\xd0\xff\xe8\x41\x78\xba\x18\xf5\x31\x8e\x56\x02\x49\x80\xae\x89\x97\x83\x70\x1e\x60\x20\x1c\x72\x59\xcc\x12\x30\x91\x8a\x6b\x90\xe2\xe0\xdd\xf1\x4e\x32\xdf\x00\xb3\xe2\xd9\xa5\x23\x2b\x00\x33\x46\xfe\x06\xa5\x36\xc0\xec\x51\xf1\x1c\xf5\x4c\xc0\xf4\x7c\xc5\x5c\x46\x0e\x60\xe2\xd4\x30\xc0\xb4\x00\x8c\x76\xde\xaa\x66\xb8\x02\x46\xab\x5e\xbe\xd0\x00\x60\x9c\x0c\xa8\x87\x02\x7a\x01\x80\x42\xf6\xd7\x6c\xbd\xb9\x80\x62\xe7\x60\xbf\xde\x29\x40\xc9\xb0\xbf\xd4\x40\x1c\x50\xb9\xdd\xfb\x45\xaf\x06\x50\x7a\xd9\x5d\xa4\x77\x00\x50\xfa\x71\x67\x9a\xbe\x2c\xa0\x5c\xd2\xe1\xaa\xbf\x13\x50\x89\x6e\xbb\xa2\xcf\x04\x94\xd3\x9b\x16\xe9\xc9\x03\xa3\x2a\x2e\xef\xd1\x13\x03\x46\xcd\xbc\x60\xa0\xf3\x16\x18\x79\xf2\x3f\xd7\xc3\xbf\xf4\x0f\x34\xff\xcf\xe3\xbf\x1d\xf4\xa8\xfb\xef\x74\x4e\x0a\xd3\xc5\xd6\x63\x44\xd0\x3f\x3a\x29\x23\xd1\xc0\xdb\x62\x77\x00\x0b\x89\xd8\xf9\x32\xcb\x01\x0b\xb1\xf4\x57\xf2\x21\x80\x95\xe0\xec\x26\xa5\xfb\x80\x85\x7b\x7e\xa5\xaa\x0c\x60\xfe\x63\xdb\x6e\x8d\x1d\x80\x39\x71\x24\x48\x33\x0b\x30\xa9\xbe\xb0\x50\x93\xd3\x25\x0f\xdf\x8d\xd3\x7a\x06\x98\xc8\xbe\xfe\xa9\x79\x04\x30\x66\x01\x1a\x79\x2c\x55\xfd\x0a\x60\x54\xd5\xc7\xf9\x9c\x13\xa5\x32\xf9\xca\xd4\xe0\x0c\xa0\xda\xd1\xb7\xdb\xd0\x00\x50\x7b\xfa\xc8\xc7\xe0\x12\xa0\x16\xdd\x25\x67\x28\x07\xa8\xdd\xb9\xe9\x6a\x90\x00\xa8\xe6\x5d\x2d\xe1\x9c\x44\xd5\x65\x5b\x1a\x0c\xf2\x00\xd5\x98\x46\x2d\x03\x7f\x40\xa5\xf2\xfc\x02\x83\x01\x40\xd5\xfc\x8c\xbc\x41\x2a\xa0\x32\x02\xff\xa1\x7f\xf8\xf7\x38\x70\xeb\xff\xad\x83\xa8\xd5\xd5\xe0\xa0\x6a\xb5\xc9\x4b\x7e\x7e\x40\x3b\xcb\x3a\x48\x30\x0c\x30\x58\xea\xd4\x2e\x22\x0f\x98\x4f\xf5\x3b\x20\xa9\x01\x58\x75\x44\xbd\x93\xdd\x08\x58\xf3\xa7\xd5\x8d\x1c\x05\x58\x3d\x9e\xd1\xa7\x34\x08\x58\x19\xaf\x58\xab\x36\x00\x58\xf6\x6e\xab\xd5\x94\x04\x2c\xd6\x1e\xf1\xd5\xae\x02\xcc\xed\x2e\x3e\xd5\x9d\x04\x98\xde\xb9\xa7\xa6\xab\x0b\x98\x2e\x7c\x77\x5c\xc7\x08\x30\xb9\x04\x30\xc5\xbe\xa7\x1b\xe7\x02\x8c\xec\x37\xb9\x26\xd3\x00\xad\x8c\xe7\x7b\x8c\x8d\x00\x66\x7c\xcf\x41\xe3\x58\x80\x79\xe9\x5e\xb9\xf1\x0f\x40\xb3\xf1\xb6\x82\xb1\x12\xa7\x97\x5e\x8b\x32\x09\x07\x34\x77\xfe\xd6\xc5\x05\x1a\xcd\x00\x34\xf8\x2e\xec\x30\x1c\x01\xa8\xce\x3a\xf3\xcc\x88\x09\xa8\x15\x9d\x36\x36\xd4\x05\x54\x5e\xfc\xd7\x7a\xf8\x3d\x0f\xb6\x11\x7f\xdc\xfb\x26\xee\x33\xa8\x9c\x73\xf1\x54\x8d\xbd\xd4\x7a\x58\x61\xa0\xc4\xbf\x14\xd0\x7b\x63\x6e\xc0\xd9\x95\x68\x7d\x90\xe5\x08\x2f\x43\x49\x06\x60\xa3\x1e\x21\x23\xdb\x0c\xd8\x7b\xa5\x9a\x29\xa9\x02\x76\x92\xd3\xa7\xab\x06\x00\xb6\xb1\xcb\x27\x33\xad\x01\xeb\xe4\x6d\xce\x5a\xaf\x01\x2b\xfe\x4a\x2b\x3d\x15\xc0\xe2\xf9\xa5\x4f\x06\x8b\x01\xf3\xa1\xee\xab\x86\xb3\x00\xf3\xa5\x5f\xea\xf4\x1f\x01\x66\x86\x80\x16\xf9\x71\xd8\xf4\x2a\x48\x9d\xdd\x2f\xd5\x4d\xe7\xe3\x8b\xce\xbe\xc7\xbd\xa6\xe7\x30\xa0\x6b\xd6\x6d\x60\x7a\x15\xfd\xba\x1a\xb7\xab\x4c\x35\xf0\x45\xbb\xb0\xdd\xce\x34\x1b\x1f\xb5\xeb\x5a\x1b\xcc\x74\xf0\x4a\x67\x76\x63\xac\xe9\x7d\x7c\xd1\x0e\x3f\xff\xd9\xa4\x09\xd0\x14\xaa\xbf\x68\xf2\x10\x60\xce\x3b\x71\xc7\x64\x18\x60\x2a\xd6\x2d\x34\x89\x06\x34\x0e\xfc\xbf\xd6\x03\x8f\xf7\x25\x54\x28\x7e\x47\x68\x82\x0a\x75\xff\x5f\xd6\x56\x25\x8a\xe2\x7b\x8e\x6a\x27\x09\x34\x02\xc6\x84\xf1\x5e\x61\xb5\x7f\x72\x94\x68\x7d\x90\xc3\xfb\x10\x65\xf9\x77\x80\x93\x53\xd2\x52\xe5\x25\x80\x93\xe9\xd4\x3e\x8d\xc7\x80\x43\xc5\xb2\xbd\xda\x3b\x00\xbb\xb8\xad\xa7\xf5\x1e\x01\x36\xd6\x95\x93\x0d\x0f\x02\x56\xbb\x1b\x37\x19\xbf\x02\x2c\x83\x1f\x05\x73\xbe\x4b\xcb\xb9\xbf\xea\x8c\x0f\x0c\x79\x98\xc7\xe2\xbd\x5e\xd7\xe0\x6e\xb3\xcb\x78\xa4\x4f\x3c\xf9\x66\xee\x84\x66\x03\x83\xee\x60\xf3\x72\x34\x18\x9c\xb8\x3b\xdb\x42\x16\xa7\x0c\x75\xda\x8d\xcd\xcf\xa2\x59\xbf\xa9\x55\xdf\xe2\x1e\x4e\x19\xea\xff\xd6\x41\x15\x98\xcf\xc4\x53\xdd\x80\xb3\xd2\xe6\xbe\x78\xad\x33\xf3\xc4\x06\x8b\x66\xf4\xe8\x3e\x3d\x6a\x65\xfe\x03\x1f\xb5\x5b\xab\x99\xe6\x7a\x80\xe6\x2f\xfc\x87\xfe\x81\x5e\x07\x6a\x1b\x29\xe4\xf9\xbe\xd3\x3a\x08\xf5\x12\xd5\x39\x7c\x29\x80\x9e\x26\x73\xb6\x40\x24\x60\x51\xab\x1f\x2d\x34\x0b\xb0\xc9\xb6\xf0\x14\x4b\x06\x9c\x77\x38\xdd\x90\xe9\x02\x5c\xac\x03\x47\x8d\xf4\x01\xdc\x9a\x12\xbe\xa9\x2d\x03\x5c\xde\x4f\x3e\xcc\x7c\x07\x38\x87\x2c\x9d\xae\x37\x1b\x70\xe8\xd8\x1a\x69\x14\x08\xd8\x2d\xaa\x12\x31\xdd\x0f\xd8\xc4\x35\x2f\x36\xbf\x0e\x58\x8f\x78\xba\xc9\x22\x0d\xb0\x76\x42\x9e\x39\xf3\xf3\x0d\xcb\x16\xac\x37\x0d\x7c\xbe\xdb\xea\x2c\xc6\x99\xb7\x76\x67\x5a\xb7\x23\xc4\x32\xee\xb6\x89\xf5\x0a\x8c\x33\xbf\x73\xfd\x8c\xf5\x6c\x4c\x37\x7b\xdc\x2a\x6c\x3d\x1b\x0b\xcd\x64\x2f\x4f\xb3\xd6\xc6\x26\x93\xe9\xe7\x75\xac\x5a\x50\x6a\xf4\xb1\x5e\xca\x3a\x01\x87\x8d\xfa\x69\xfd\x4f\xcd\x2f\xab\xa9\xe8\xd0\x1f\x53\x99\x6f\xa5\x8b\x47\x7a\x3a\x65\xa3\xad\x19\xe8\xd6\x3b\xfc\xe7\x3c\xa0\xfb\xa1\x26\xf7\x67\x1e\xff\x2f\xf8\x52\x9e\x4d\xfc\xe1\x03\x40\xe7\x21\x58\x78\xa8\xad\xe4\x5f\x0d\x38\x89\xeb\x44\x0a\x85\x00\x2e\x26\x26\x77\xc4\x98\x80\x67\xbd\xbd\xbb\x4c\x32\xe0\xf5\xd0\xeb\xf9\xa8\x0e\xc0\xfb\x51\xf4\x10\x83\xf3\xdf\xbb\x26\x5c\xd2\xd9\x0b\xb8\x0b\x2c\x4e\x33\x92\x06\x9c\xbf\x6e\xd1\x34\x2b\xe5\xcc\x9b\xaa\x6c\x2b\x45\xc0\xae\xba\xb5\xde\x56\x1d\xb0\x79\xd7\xdf\x65\x6b\x4b\x86\xda\x5c\x84\xad\xf5\xe9\x57\xdd\xb6\x63\x48\xd8\xc5\xd3\x3a\xa0\x5b\x33\xec\xca\xc0\x6f\xb7\xf2\xaa\xa0\xfd\x5d\xf2\x87\x7d\x01\x9d\x93\x77\x61\x92\x43\x23\xc4\xec\x2e\x9f\xbd\x6d\x6f\x01\x3f\xab\x3d\xa7\x2c\xec\x6b\x10\x6a\x15\x50\x7b\xd9\xc1\x16\xc9\x96\xa9\x55\xa1\xf6\x2f\x30\xd3\xbc\xb9\x7c\xaf\x9d\x36\x4a\x8d\x1b\x4a\x27\x3a\x14\xa1\xc0\x4c\x7f\xff\x04\xbb\xb3\x38\x6e\xb4\x15\xff\xa7\x0e\x86\xe6\xff\xe9\xfb\xef\xb4\x0f\x80\xd1\x59\xe1\xfb\x1c\xb4\x52\x11\xcf\xe7\xa0\xc7\x78\x86\xd6\x88\x43\x80\xaf\xaa\x6e\xae\x30\x80\x20\x6f\x2b\x41\x69\x5f\x20\x30\xde\xa3\x40\x29\x05\x08\xac\x0b\xf7\xd4\xfc\x04\xf8\xb9\xa6\xb7\xeb\x9f\x03\xbc\x17\x2e\x5c\x66\xce\x99\x27\xb7\x8b\xb6\x59\xb1\x01\xe7\xb5\xd5\x4d\xf6\x8b\x01\x87\xaa\x6b\x73\x9d\x1c\x01\x7b\x91\xb7\xd2\xce\x42\x9f\xe5\xed\xbb\xc8\x7c\xd7\x89\xbd\x9b\x1c\x2d\xc8\x89\xee\x49\xb7\xcf\x38\xf6\x90\xcb\xdc\xb2\x7e\xfb\x00\xf1\x72\xd1\xce\x4b\x3b\xaf\x24\xeb\x5d\x1c\x4f\x85\x3b\x9f\x20\x7b\x9c\xfc\x8f\x25\x3a\x9f\x24\xbf\x3a\x3c\xaf\xf2\x76\xc9\x07\xbf\x83\x47\x79\xaa\x73\x2e\x6c\x6c\x5e\x1e\xfc\xea\xac\x86\x70\xab\x5f\xfb\xaf\x3a\x89\x23\xc7\x42\xac\xe4\xa4\xb3\x15\x66\x5a\xe4\xed\x5e\xec\xf8\x1d\x1b\xcc\x14\xff\x63\x1e\xf0\xf8\x7f\x82\x10\x99\x4a\xcd\x83\x68\x41\x4a\x0f\xa3\x57\xc8\x6f\xc3\x41\x4b\x06\x57\x0f\x41\xfb\x62\x04\xc8\x49\x52\xeb\x27\xbc\x9b\xd1\x25\x64\x0f\x44\x2f\x33\xf1\x92\xbc\x06\x8c\xee\x74\x52\x51\x7c\x09\x84\x8b\x04\x75\x6a\x7d\x00\x82\xbf\xa7\xa4\x18\xaf\x00\xfc\xeb\xe7\x7c\xb0\xfa\x05\x78\xdd\xdc\xb4\xcb\xe1\xee\xb0\xb2\xbb\x5d\x55\x86\xdb\xd7\xaf\xf7\x5c\x76\xb6\xde\xf3\xae\xfd\xb0\xc4\xd9\xab\xdf\xcc\xaf\xf7\xc5\x06\x17\x59\xf6\x91\x80\xab\x77\x8a\x5d\x4f\xb1\x2f\x04\x34\xb7\x94\xb8\x47\xb1\x3b\x02\xce\x5f\xf0\x74\xaf\x23\x45\xfc\x7c\x4e\xf7\x7a\x2c\x27\x19\xbe\x39\xc7\x34\x3d\x7c\xc8\x64\xaf\xc4\xea\x3d\x1e\x87\xc8\xb9\x9e\xfa\x65\x0f\x3d\xb2\xc9\x1a\x37\xe6\xc1\x11\x1e\xcf\xc9\x8b\xae\xfe\xfb\x4a\x3c\xc6\x91\xaf\x9c\x5a\x76\xbd\xf0\x58\x07\x41\x87\x1f\x3b\x9c\xdc\x77\xc0\xcc\x8e\xb1\xcd\xc1\xdd\x18\x41\x36\xea\x45\xab\xdc\xee\x22\xcd\x6a\xf2\x1f\xfb\x01\xa1\xd8\xf7\x67\xfd\x22\x6c\x82\x1a\x17\xcd\x8f\x04\x95\x8b\x41\xfb\x41\x38\x4d\xe7\x22\xed\x8b\x11\xf9\x7c\xc4\x0f\x8a\x07\x3a\xa9\xa2\xc2\x3f\x08\x8c\x1d\xa3\xab\x2a\xf6\x13\x48\x19\x6b\x5d\xa8\xd0\x08\x24\x5e\xf1\x39\xab\x15\x05\x44\x7d\x89\x5f\x62\x91\x34\xa4\x16\x36\x23\xbb\xc4\x49\xfa\xc3\x97\xa0\xcc\x35\x0b\xbc\x19\x03\xcd\x7e\x87\x4a\x4b\x82\x8c\xfb\x94\xbc\x0f\x5d\x38\x11\x3e\xa9\x47\xdc\x33\xaf\xc7\x23\xea\xd9\xbd\x14\xcf\x70\x56\x4d\xf4\xe5\x66\x7f\xef\x44\xd6\xd7\xd1\x7c\x67\xde\xfb\xd4\xb1\x9d\x22\xce\xd6\x5d\xf1\x9d\xcd\x5e\x1c\x66\x52\x35\xc2\xf7\x32\xbb\x3e\xb8\xf6\xf0\x6d\x3f\x01\xf6\xdb\xc0\xa4\xfd\xe7\xfc\xec\x48\x86\xdf\x87\x3d\x5e\x7e\x52\x64\xb0\x4f\xcd\x8e\x32\xdf\xb7\x64\xae\xe7\xb3\x62\x19\x5f\x6f\xb2\xca\xdd\x69\x8b\x9e\x4f\x2f\x79\xdb\x65\x68\x93\x94\xcf\x56\xf2\xb3\x53\xdf\xfa\x38\x9f\x7a\x8c\x70\x6c\x58\xfb\xd0\xfb\x3e\xb4\xed\x57\xfe\xef\x3a\x20\x74\xb9\xf9\x0f\xf4\xfd\xf7\x7f\xd7\x1f\xc0\xcb\x43\xa0\xf9\x9f\xb1\xbc\x7b\xb0\x13\x42\x46\x50\x3a\xfd\xa9\x3a\x6a\xcf\x28\x9f\x94\x87\x26\x0e\x72\x46\xc0\x44\x6f\xd7\x09\xcc\xd0\x2f\x2b\xc6\xbe\x8a\xd8\x6a\xfd\xe0\xe5\xad\xf8\xd3\x99\x62\xde\xf6\x3d\x67\xa3\x7d\x73\x03\x42\xae\xdd\xad\x8a\x98\xbe\x23\x2e\xba\xac\x7d\x79\xc8\xad\x13\xcf\x13\xad\x5b\xba\x82\x74\xef\x38\xa6\x58\x35\x9a\x05\xdc\xfd\xc2\x48\x8d\x3b\xe9\x19\xd4\x36\x8c\x14\xc3\x4a\xfd\xe0\xe3\xac\xfc\x84\x92\x03\x08\xd9\xce\xea\x8f\x55\xdf\x93\x10\x2a\xce\xd6\x18\x3d\xb0\xe3\x52\x48\x2b\x7b\x4e\x84\xfa\xb6\xc6\x90\x17\xec\x3d\x61\x61\x45\xbb\x82\x33\x49\xa1\x40\xe6\x86\x85\x21\x3f\x48\xfe\xc0\x75\xeb\x52\x82\x4f\x92\x01\xbe\x67\xd6\x3c\x0e\xda\x40\x16\x79\x4e\x5d\x79\x31\x44\x91\x5c\xed\xe5\xb2\x3c\x29\xc8\x82\xec\x71\x79\x93\x37\x14\x98\x44\x7e\x71\x8e\xe1\xd4\x3f\x92\xd7\x27\xf9\xef\x52\xfd\x80\xa7\x03\xa1\xf9\x6f\x3a\x07\x20\x30\x8a\xf8\xeb\x1e\x38\xed\x0b\x42\xdf\x87\xa6\xf5\x20\x8b\x0a\x25\xa8\xe7\xb6\x25\xe6\x5a\xa7\x25\x58\x9f\x7e\xce\x5b\x6d\xa7\xc7\x24\x9e\x7d\xc8\x2e\x0b\xb4\xb0\x09\xef\x6c\x98\x20\x98\x94\x1b\xe0\xde\xf6\x35\x75\xc2\xac\xe1\x18\xc5\x8b\xfe\x49\x23\xd6\xd7\x27\x07\x9c\xd6\x8c\xd7\x3d\xb2\x3d\x7d\xea\xd1\xfa\xe8\xfe\x36\xe9\x09\xeb\x2a\x27\x45\x7d\x1b\xf8\x9c\xc5\x2e\x5d\x36\x3a\x69\x58\x79\xc2\xb6\x1d\x35\x31\x92\xc3\x07\xd2\xb3\x8a\xd8\x31\xb1\x2c\xf5\xb1\xa6\x1b\xa5\xa2\xb3\x58\x47\x12\x4e\x17\x5e\x8b\xf1\x64\xdd\x8b\x17\x5f\xf3\x74\x74\x17\xdb\x7d\x74\xce\xca\xe2\xd1\xb3\xd9\x6b\x22\x94\xf2\x1e\x8f\x0e\x63\x5f\x0b\xf9\xb4\x54\x22\x6a\x0e\x29\x17\xe8\xb9\xa4\x38\xaa\x84\x64\x06\xcc\x5d\x14\x1f\x19\x4d\x66\xf8\x14\x2d\x68\x88\x78\x4f\xae\xf0\x6a\x9b\x2b\x1d\x31\x9e\x3c\xeb\x3e\xe9\x9f\x75\xc0\x6f\xca\xad\x43\x93\xe7\x03\x42\xf3\xdf\xb4\x0e\x82\xae\x9f\xe6\xc1\x69\x1e\x74\xf1\x6e\xe2\xcf\x7b\xe1\x57\xd6\xc5\xf0\x3b\x10\xc4\xa7\xa5\xeb\x77\xa9\x7e\x14\x75\x78\x96\xb8\x26\xce\xec\x9b\xfa\xf2\xbb\xec\x3c\x7b\xcf\x3a\xcb\x47\xcd\xa3\xe6\x77\x46\xef\xf3\xd3\x39\x79\x6b\xfa\x40\x16\x91\x70\xa8\xe2\xf5\x24\xf1\xe5\x6e\xe3\x47\xee\xf3\xc8\x78\xbd\xf7\xd1\xa4\x35\xdb\x97\x8c\x5b\x7d\x7e\xe7\x74\xd9\xcd\x67\x52\x65\x1f\x4f\x9a\xd1\xbb\x4e\x7f\xec\x8a\x21\xa1\x19\x71\xf9\xe3\x53\xd5\x86\x06\x26\x55\x2f\x0b\x1a\x3b\x6d\x78\xcb\xf8\xd7\x4b\xc4\xc6\xaa\xb0\x04\x52\x3f\x2d\x8c\x4f\x49\x61\x65\x27\x5d\x5c\xb0\x31\xe9\x33\xeb\x6a\x82\xec\x5c\x97\xe4\x10\x36\x5f\x6c\xdd\x6c\x8d\xa4\x42\xf6\xd8\xa8\xc9\xb3\x6e\x27\x56\xb2\xab\xc3\x8e\xcc\xe4\x4b\x54\x67\xf7\x86\xe8\x64\x9f\x4f\x88\x23\xc5\x03\x2f\x4e\x2b\x8b\xab\x22\x13\x7d\x03\xa7\x6e\x89\x13\x20\x17\x78\x67\x02\x04\xcf\xdf\x43\x91\x57\x27\xad\x03\xa1\xf3\x30\xe8\xfa\x27\xc6\x71\x71\x4e\x2b\xf1\x17\x0f\xc8\xf5\x45\x60\x19\x6f\xa3\xf8\xae\xf7\xef\x76\x51\x7d\xe3\xf9\xf9\xbd\x3b\x94\x1a\x08\xa2\x33\x76\x47\x9b\x7e\x8b\xd2\xe5\xe6\x4d\x45\x6d\x4e\x35\xa6\x39\x27\x1f\xac\xcd\x0f\x3d\xed\x25\x7d\x28\x61\xf9\x93\x71\x44\xcc\xc3\x2d\x7c\x0b\xca\xe7\x3e\x99\x90\xbf\x7a\xee\x9c\xf0\x2d\xab\xa6\x1b\xe4\x5a\xcd\x12\x3c\xf6\x7a\xb6\xf1\x3c\xa3\xec\xe8\xbb\x2a\x73\xa5\x66\x9e\x9f\xee\xfb\x63\xe9\x3c\x2f\x5a\xf7\x31\xb5\x62\xf2\xc4\x61\xb1\xac\x0b\xff\xe3\xf3\x51\x3f\x61\x01\x2b\x2d\x39\x60\xa2\x41\x66\x26\xeb\x5c\xc2\xfa\xcc\x57\xe3\xdb\xd8\xea\x31\x7e\xff\xd6\x7b\x8c\x77\x4c\xab\x66\x37\x85\xba\x8e\x37\x1d\x2b\x47\x2a\x06\x3c\x49\x8b\x1f\x9b\x4d\xda\xfa\x8b\x00\x92\x3c\x3d\x8b\x71\x18\xf1\x97\x0e\xe4\x77\x3e\x10\x5d\x7f\x2f\x17\x57\xb9\x11\x7f\xe8\x60\x7e\x15\x96\x50\xe3\xf6\xb6\xba\x94\x9a\x1f\x4f\x1f\x97\x7d\xa4\xde\x77\x3e\xae\xec\x91\x88\x26\x88\x56\x83\x8a\xd1\xcc\x75\x72\x4a\xf5\x96\x07\xb3\xac\x3b\xf5\xb5\xcb\xbe\xec\x09\xf1\xf7\x74\xee\xdb\xa6\x52\xbc\x6f\xcc\xe4\xf0\x15\xcb\xa7\x6c\x14\x99\x31\x23\x6d\x79\xce\xfd\xc2\x97\xeb\xaa\x26\x6d\x98\x5a\xb6\x66\x7b\xf5\xf6\x69\x16\x13\xb6\xae\xfa\xd0\xb1\x34\xdb\x26\x7d\xda\x2a\x9f\xcf\x6f\xb2\xf5\xd2\x1a\x96\x5f\x1b\x96\xce\x3a\x90\xb6\x3d\x57\x72\x78\xdf\xf8\x86\xb1\x1f\x16\x5f\x63\x69\xa6\xf2\xa7\x6a\x2d\x10\x65\x65\x27\x7d\x1a\x3b\x7b\xee\x6a\xd6\xd5\x84\xa0\x94\xe9\x39\x04\xdb\x28\x46\x26\x25\x66\x66\x05\x3b\x31\xaa\x2b\x79\x30\x7b\x09\x7b\x53\x84\x5d\xf2\xf2\xa9\x77\xd8\xd7\x43\xdd\xc6\x90\x53\x6d\x48\xa1\x20\xed\x31\xe6\x59\x4c\x32\xd6\x77\x47\x62\xe7\x84\x99\xe4\x6c\xef\xcb\x00\x73\x07\xb7\x2e\x47\x6f\xe2\x2f\x1d\x48\xc6\xd3\xbf\xeb\x5f\x33\x8b\x8b\x3b\xa8\xdc\x8b\x9f\x67\x0e\x3c\xa0\xea\xd7\x28\xa7\xea\x7e\x92\x50\x4b\xf1\xba\x77\x27\x1f\xa7\xee\xc5\x36\x7f\x39\x4d\xad\x97\xb3\x5d\xf5\x53\x95\xdf\x88\x96\x57\x6e\x38\x11\x67\xd2\xca\x08\xda\x89\xda\xed\x1e\xad\xd6\xbd\xab\x4f\x1c\x11\x8a\x89\xf4\x1f\x3b\x7b\xe0\xa0\xd6\xe4\xba\x84\x39\x59\x1a\xfb\x53\xd6\xbc\x4b\x6d\x49\x1d\xd8\xfb\xb4\x62\xc1\x78\xd7\xc4\x0d\x7b\x56\x5f\xf7\xca\x18\x8e\xbd\x5e\x72\xe7\x83\x4b\xa6\x79\xcc\xaf\xed\x43\xc3\x03\x69\xa9\x31\xaf\x36\x2f\x66\xcd\x4d\x52\x89\x75\x5c\x1f\xcc\x3a\x97\xb0\x24\xa6\xa0\xa0\x9a\xcd\x88\xf1\x88\xd9\xb0\xda\x95\x1d\x38\x7a\x5a\xcc\xf7\xe5\x7b\xd8\xf9\x11\xf5\xd1\x37\xf2\x24\xd9\xd7\x42\xa3\x63\x5c\x16\xfb\xb1\x11\xb4\x3f\xba\x77\xe1\x12\x52\x3b\xe0\x68\x0c\xff\xdc\x0d\x64\xa4\x9f\xe6\x68\x93\x39\xe2\xe4\x56\x2f\x91\xd1\xf3\x67\xdd\x26\x0f\x79\x0a\x01\x36\x3c\x1d\x60\x70\x38\xf1\x97\x0e\x64\xce\x46\xe2\x2f\x1d\xc4\x2e\x8a\xc7\x19\xca\x3c\x4c\xf1\x3a\x83\xa8\xe1\xde\x7b\x0e\x3a\x49\xf5\xcb\xbb\x61\x5c\x3d\x4c\xeb\x94\x8b\xd4\xbc\x3a\x73\xa4\xb1\x9a\x83\xb5\x63\x5a\xa6\xcb\xb7\x10\xc4\xde\xe2\x2b\x31\xba\x8b\x14\x37\x6e\x50\xbd\xd8\xe1\x24\x63\xb4\x74\xd1\xd2\x73\x87\xc3\xa3\x5d\xaf\x4f\x1c\x73\xaa\x2e\x73\x7c\xf8\xe7\xe4\x37\x27\xe7\xad\xd4\x89\x19\x1d\x73\xf9\x44\xf0\xe1\x9d\xf1\x0f\xc3\x1f\x1c\x97\x6a\x4b\x4d\xbc\x19\xe2\x71\x6c\xde\x3b\xcb\xc4\x9e\xe0\x86\xaa\x35\xac\x07\xb1\xe7\x82\x5b\x0e\x95\xb0\xdd\xa3\x76\x05\x9f\xd9\xc7\x66\x2f\x0f\x3f\x1a\x22\x5a\xe2\xc8\x2e\x0f\x93\x0b\x59\x53\x5c\xc2\xee\x09\xae\x0e\x09\xdf\x62\x4f\x4a\x07\x6a\x87\x7c\xda\x20\x42\xda\xf9\x5b\x87\x48\xad\x1d\x24\x27\xf9\xf8\x86\xa4\xaf\x4e\x24\x37\x7a\x19\x04\x2b\xe5\xdf\x22\xaf\xbb\xcd\x09\x7a\xbf\x62\x3f\xf9\xd0\x35\x3f\xe8\xc3\xd2\x62\x92\xe5\xec\xfd\x4f\x1f\x48\xb9\xc5\xeb\x7f\x96\xbc\xef\x9f\xd7\x37\x76\x51\xba\x17\xd6\xce\xca\x1a\x6a\xfd\xcf\x3a\x4e\xd5\xf9\x84\x75\x86\xd2\x4d\x75\x1e\xbd\x44\xf1\x1e\x6d\x19\x4d\xd4\x7e\x7a\x6e\xcf\x55\x6a\x3e\xd5\xf4\xdd\xc8\xe5\xe0\xbe\xfe\xdb\x9b\x46\x3c\x25\x88\x2d\x59\xb7\x5d\x35\x0c\x24\xd7\x2f\x6f\xec\x78\x6f\xed\xcc\xbc\x3c\x23\xfb\xfa\xcb\x40\x0f\x6b\x9f\x94\x2d\x6d\x3b\xd3\xdc\xbc\xbb\xa3\x17\xb4\x76\x2f\xdb\x10\xa8\x18\xb2\xbe\x55\xfa\x40\x55\x48\x93\xdf\xfe\x96\xa9\xcd\x44\xd8\x0c\x6f\x8f\x16\x99\x37\x2b\xc3\x12\xbc\x5e\x5c\x8a\x67\xd7\x07\x87\x7b\x95\xd7\x2f\x22\xc5\xfd\x73\xbd\xa7\xd7\x8d\x27\x8d\xfd\x8c\xbc\x6f\x55\xb9\x92\xc1\x3e\xe5\x3e\xe2\x65\x7c\xe4\x0c\xaf\xd3\x3e\x19\x07\x62\xc9\xf5\x9e\x2e\x3e\xb5\x25\xef\xc9\x23\xee\x75\x3e\x0b\x77\x8e\x27\x6f\xb8\xee\xf7\x89\xda\xfa\x80\xfc\xea\x6c\xed\x7d\xa9\x88\x0d\x69\xc7\x04\x9f\x80\x8d\xf5\x50\x76\xa8\xf7\x39\xb9\x76\x2b\x4c\xec\xe7\xff\xd3\x07\x67\xf0\xd6\xc3\xea\xe0\x3f\xeb\x27\x43\xab\x29\x7c\x37\xe9\x24\xa5\x6b\xe8\xcb\xbd\xc0\xd5\x3f\xe4\x37\x53\xfa\x9f\x6b\xa1\xd7\x42\x39\x78\xbe\xff\x26\xe5\xa7\x55\xb7\xfe\x0e\x35\xae\x07\x3d\xee\x53\x7a\x80\x2d\x1d\x3d\x94\xae\xb0\xf0\xd2\x93\x5d\x2a\xe6\x04\x31\xef\xd9\xe3\x02\xe3\xf3\x8a\xcf\x26\xd8\x3d\x5a\xe2\xd5\x6f\x30\x27\xa6\xfc\xc1\x96\x31\x1f\xec\xbd\x43\xa4\x1f\x48\x2d\xaa\x77\x99\xe1\x13\xfa\x40\x7d\x4f\xa7\x07\xbf\xdb\xf1\xee\xeb\x8d\xa6\x9e\xf5\xce\x65\xdd\xfb\x06\xba\x3c\x53\x9c\xfd\xee\x2a\x92\x5b\xdd\x76\x3a\x6f\xbe\x7a\x8e\x3c\xee\x6a\xe8\x6c\x78\x45\x8e\x7c\xea\xb4\x96\xce\xf1\x70\x59\x7d\x7a\x0c\xf9\xd1\xf1\xbb\x8b\x47\xdd\x0f\x8c\xb4\xaf\x75\xf9\x58\x25\x07\x2d\xfb\x11\x2e\x61\xe5\x0b\xe1\x63\x73\xd8\xa5\xe3\xa0\x07\x42\x6d\x64\x9c\x1f\xed\x1b\x83\xd9\x96\x0c\xd7\x43\xbb\x97\x21\xdd\xaa\xd6\xe5\xca\x0e\x7e\xac\xb0\xe0\x03\x26\x1f\xfd\xbb\xff\x73\xe7\x3f\xad\x03\xf9\x18\x5c\x7f\x86\x83\xcf\x56\x5f\xa6\xf8\xfd\x6e\x99\x36\x2a\x17\xe8\xfa\xde\x1b\xd4\xbe\x70\xe9\xdc\x5d\xaa\x5f\x1e\xaf\xe9\xa6\xc6\xa1\x42\xbe\x97\xd2\x5f\xee\xea\x7a\x46\xf1\xc3\x85\x65\x03\xd4\xba\x59\xc4\xff\xf6\xb8\xc8\x66\x82\x98\x56\xf0\x36\x4d\xeb\xa5\xc4\x50\xf2\x85\x41\x86\x73\x81\x7a\x56\xe8\xfd\x37\x1e\x31\x2d\xc6\xba\x3e\xeb\xdf\xd4\xce\x9d\x62\xfe\xcb\x55\xff\xcd\xa7\x1d\xbd\xd6\x1a\xf6\x4f\x06\x75\xce\x5f\xb0\xd9\x6d\xab\x39\xe8\xfe\xfc\x90\x0d\xc3\xe6\xf6\x4b\x49\xa4\x5b\x16\xd8\x8c\x78\x94\x81\xc5\xe6\xe3\x6d\xa6\xdc\x9d\x81\xf9\xe6\x85\x36\x45\xed\x5d\x58\x6a\x2e\x62\xb3\xa4\xe5\x00\xd6\x9b\x7e\xb5\x39\x75\xc9\x06\xc5\xa6\xee\xb6\x16\xe7\xbe\x62\xbb\xa9\xbf\x4d\xff\xc9\x1c\xd4\x18\x67\xd9\x6a\xd7\x99\xe2\xa4\x51\xaf\xad\x54\xb5\x3b\x2e\x1b\x76\xda\x86\x54\x14\xa1\xd5\x30\xda\xfa\xfe\x21\x11\xbc\xd2\x93\x02\x72\x79\xfe\x2f\xc5\x3c\x9f\x24\xae\x0e\xec\xf3\x1e\xae\x1f\xc4\x8b\xaf\x57\x28\xbf\x94\xee\x84\xab\x94\x2f\x48\xc7\x47\x6e\x4e\xca\x95\x82\xfb\x14\xff\x5d\xbf\xbb\x97\x9a\x1f\xd5\xa2\xcf\xa9\xf3\xe7\x3e\xab\x01\x6a\x1f\x2d\xba\xf1\x81\xe2\xc9\x56\xc8\x7e\xa5\xe6\x57\xf6\xd4\x5f\x89\x1c\xcc\xb0\x63\x87\x29\xcf\xe6\x1f\x19\xfd\x8e\xd5\x68\x75\x59\x6e\xb2\x9f\x0a\xab\x3f\xcc\x42\x63\x85\xeb\x31\x32\x76\xfa\x77\xad\x1e\xbb\x83\x88\x2e\x2a\xd3\x2d\xb3\x3c\x0e\xd4\x9b\xeb\x9d\x35\xcf\x06\x7a\xd7\xeb\x4d\x34\xfb\xc2\xb6\x01\xb4\xee\x9b\x96\xbc\x67\x00\x5a\x41\xa6\xac\x17\x24\xa0\xbd\xd5\x74\xce\xe3\x5d\x80\xd6\x35\x53\xe5\x7b\xd1\x80\xd6\x48\x53\xbd\x9b\x47\x00\xcd\x57\xa6\x57\xaf\xe6\x01\x5a\x85\x66\xdf\xae\x3c\x05\x4b\xfb\xb5\x99\xfd\xc5\x13\x80\x96\xa7\x79\xe8\x59\x71\x40\xdb\xce\xbc\xf4\xe4\x7a\x40\x5b\xc2\xac\xea\x28\x1b\x60\xbe\xfa\x47\x07\xc3\xf5\x43\xf9\x36\xe5\x1c\xa5\x83\x1c\x58\xd3\x2c\xc9\xc1\x07\x5d\xed\x94\x7f\xd6\xed\x9b\xf7\xa9\xfd\xa0\x45\xaf\x27\x8d\xda\x07\xde\xf5\x51\xbe\x5b\x47\xa7\x0e\x50\xbe\x31\x87\x67\x73\x75\x40\x3b\x24\xbf\x50\xfa\xaa\x42\xfc\xa2\xe6\xd3\xa2\xa9\xdc\xfb\xf3\xbf\x79\xdf\x79\x80\xe4\x25\x82\x08\xf6\x02\x4c\x56\x49\xc4\xbb\x8f\x07\xfc\x05\x14\x57\x39\x38\x03\x99\x52\x2a\xfa\x56\xfb\x81\x95\xdb\xd5\x1d\xcd\x0e\x02\x87\x6b\x19\x46\xc6\xa7\x81\x16\x7b\x86\x90\x51\x3d\xd0\x7f\x48\xfd\xca\xef\x1c\x8b\x3b\xbf\xae\x02\x23\x5d\x75\x1b\x3f\xf8\x00\x23\x45\xf5\x5e\xbe\x1c\x02\x46\x15\xe8\xbe\xee\xed\x07\x14\x0b\xf4\x0c\xbb\x45\x81\x51\x9a\xfa\x3b\x6f\xdf\x02\x94\x03\x74\xf3\xdb\x7f\x00\x8a\xae\x7a\x15\xad\x5e\xc0\xa8\x5a\xdd\x47\x8d\xc5\x80\xe2\x38\x7d\xf5\x0b\x04\x30\xea\x2e\xad\x83\xf9\x95\x75\x8e\xf2\xfd\x78\xfd\xb8\x85\xea\xfb\x3d\x33\x6e\xa6\xfe\x59\x7f\x9b\xc2\x13\xaa\xde\xf3\x37\xb9\x79\x29\xc7\x77\x73\x75\x11\x47\x74\xbe\x0c\x71\x70\x4f\x09\xd7\x1f\x67\x73\x2f\xa8\x7d\x94\xe6\xbd\xb2\x67\x70\x31\x89\xe7\x7b\xe0\x2f\x00\xf0\xcd\x21\x08\x2f\x7b\x40\x2f\x54\x44\xc0\xc1\x04\xf0\x70\x92\x49\xb4\xdc\x06\x24\xa5\xca\xad\xe5\x3c\x01\xcf\xef\x1c\xf9\xc0\x38\x0f\x28\xee\x57\x6a\x32\x50\x04\x8e\xad\x52\x32\xd5\x17\x05\xda\x37\x28\xa5\xe9\x89\x03\xfd\x39\x8a\x71\x7a\x33\x00\xf2\x9e\x7c\x3b\x9d\x5f\xa1\x71\x7a\xf8\x11\x20\x7a\x47\xe3\xd5\xc7\x69\x80\xf8\x38\xc6\xac\x57\x36\x80\x44\x2f\x23\xf0\xe9\x39\x40\xd2\x8c\xf1\xe6\xd1\x68\x40\x2a\x92\xb1\xb7\x4b\x05\x90\x32\xd0\x8c\xec\x78\x05\xc8\x14\x32\x67\x5d\xd3\x00\xa4\x27\x91\xcc\x86\x48\xee\x3e\xd8\x42\xd5\xf7\x04\xb7\xa9\x73\x51\x17\xf3\xc1\x4b\xaa\x0f\xae\x7a\x4e\x9d\x13\x2f\xc5\xbc\xa6\xfa\xe8\xa9\xbe\x4f\xd4\xe7\xb5\x0e\x43\x54\x7f\x2d\xdd\xcc\xe5\xc7\xb7\x7d\xfc\x9b\xff\xa5\x75\x20\xf4\x3c\x18\xcd\xcb\x93\xa1\xf3\x1f\x1c\x4f\x00\x4c\xdd\x11\x5b\xad\xb4\x00\xa7\x00\x09\x15\xd3\x52\x20\x26\x48\x6a\xa3\xe1\x45\x60\x5a\x99\x8c\x95\xfe\x28\xa0\x80\x4f\x4e\x42\x77\x3f\xb0\x7f\xaf\xfc\x3c\xed\x36\xa0\xde\x5a\xde\x58\x3b\x0a\xb8\xb1\x48\xde\x99\x53\x7f\x6f\x87\xcc\x0b\xad\x8f\xc0\xa7\xe3\x32\xd5\x8c\x13\x9c\xf1\x10\x4b\x90\x97\xe6\xf2\xd7\x82\xf2\xa0\xbc\x56\x05\xf4\xbe\x53\x77\x12\x45\x1e\xbc\xa3\x98\x45\x95\x27\xcf\xbe\x03\x42\x8b\x05\xa4\x9e\x6a\x73\x7e\x1e\x71\xe9\x21\x75\x93\xff\xc3\xfa\x96\x6c\x6a\x1f\xb0\xbb\x75\x95\x83\xf7\xcb\x1f\x53\xfd\xae\xfd\x41\x3f\x95\x0f\x75\x65\x33\x37\x27\xec\xcc\xb5\xaf\x54\x5e\x4a\x9d\x3c\xfb\x2d\xc1\xf5\x83\xa1\xf6\xcf\x1d\xf7\x78\xfc\xa7\x32\x8f\xff\x15\xe2\x22\x9d\x83\x90\x9c\xff\x37\xdf\x69\x6f\x0b\x10\xc7\x09\xc2\x6a\x19\xa0\x5e\x2b\xa0\x61\x32\x0b\xb0\x61\x88\x9c\x32\x28\x05\x42\xf7\x88\x2d\xd7\x1d\x02\x32\x8a\x25\x74\xb4\xbe\x00\x8b\x26\x4a\x1c\xd6\x8e\x01\xb6\x1a\x48\x9f\xd0\xd4\x02\x2a\xfc\xa4\xe5\x98\x2b\x80\xb3\x85\xd2\x8e\xf4\xbd\x7d\x46\x2b\xd0\x3d\x4e\xca\x93\xc1\x02\x06\x47\x4a\xc6\x6a\x2c\x01\xd8\x71\xa2\x31\x32\xaa\x7f\xf3\xfa\x7f\xe8\x3f\x02\xb9\xf8\x8e\xf7\x1b\xbd\x9a\xc2\xc1\x97\xb3\x3a\xa9\xe7\xa6\xee\x0d\x3d\x94\x2f\xd8\xad\xec\x57\x94\x7f\x60\xb3\xd5\x07\xaa\x6f\x9c\x8f\x18\xa2\xf4\x8f\xc7\xbd\xb9\x7a\x98\x7f\xeb\x60\xd6\xaf\xfe\x9b\xff\xa5\xf3\x40\x32\x16\xff\xcd\xfb\xd2\xbc\x37\xcd\xf7\x6a\x8f\x05\xc4\x3b\x08\x42\xef\x3e\x60\xba\x40\xf0\x85\x26\x1b\xf0\x5a\x2e\x24\xc6\x2c\x00\xc6\xfc\x14\xde\xac\xf1\x1c\xc8\x1e\x23\x62\xc3\xb8\x08\xac\xdc\x22\xf6\x88\xa1\x05\xec\x0e\x14\xff\x4e\xf3\xfb\x6a\x96\xc0\xe9\x41\xd1\x9d\xea\xb6\x40\xd3\x79\x71\x2d\xb5\x5a\xe0\xee\x63\x31\x03\xd5\x5d\xc0\xd3\x7d\xc2\x83\x6a\x86\xc0\xa7\xdb\xc2\x33\x64\x0f\x02\xc8\xfe\x63\x3c\x68\xfd\x07\x01\xae\x82\x27\xf9\x07\xc5\x58\xf7\x34\xf7\x52\xcf\xd9\xb7\x17\x0c\x50\xdf\x6f\x8b\xcb\x07\xaa\xaf\x5f\x04\x8b\xd2\x09\xd1\x3a\xa0\x7f\xeb\x60\x68\x3d\x1c\x9d\x8b\x43\xaf\x03\x3a\x0f\x84\xe6\xff\x69\x3d\x90\xdb\x7c\x2e\x9a\x1c\xe0\xa2\xca\x25\x80\xff\x29\x41\x68\x09\x00\x06\xda\x02\x2f\x35\xa6\x02\xae\xa9\x23\x24\x34\x36\x03\xd1\x85\x82\x97\xd4\x6a\x80\x09\x83\x82\x1d\xaa\x67\x81\x85\x59\x42\x46\xd2\xfa\x40\x7e\x29\x41\xa8\xd5\x01\x25\xa1\xa2\x3e\xd2\xb3\x80\xfd\xcf\x08\x42\xea\x38\x50\x6d\x41\x10\x2a\xcf\x80\xcb\x86\xc2\x47\x54\xfa\x80\x8e\x50\xe1\x79\xaa\xb2\xc0\xa3\x4a\x61\x7f\xe9\xeb\xc0\xf3\xb7\x04\x21\x92\x0f\x7c\x32\x25\x08\x61\xd1\xff\xd6\xc3\xdc\x35\x7a\x45\xcd\x87\xf6\x88\x6f\xd4\xba\xbf\xcc\xc7\xa2\xce\x05\x27\x3d\x41\x9d\x2f\xff\x47\x07\xb3\xed\xef\x3e\xb0\x78\x37\xaf\x1f\xf2\x74\x12\xb4\x0e\x84\x9e\x07\x01\x37\xb8\xe8\xc8\xd3\xd5\xd1\x3e\x18\x34\xef\x2f\x31\x11\x90\xd3\x27\x08\xb1\x5d\x80\xe1\x67\x82\xa0\x7c\x1f\x76\xfe\xc3\xf7\x4b\x44\x01\x59\x49\x04\x21\xe2\x06\xcc\x95\x21\x08\xe1\xb9\x40\xbe\x27\x41\xa8\x6a\x00\x25\x07\x85\x5d\x84\xdf\x03\xbb\x0c\x09\x42\x48\x1c\x38\x34\x4c\x10\x2a\x4f\x81\x73\x1f\x84\x0f\xd2\xbc\xfe\x08\x00\xd7\xd3\x09\x42\xb8\x16\xb8\x77\x8b\x20\x84\x34\x80\xfe\x58\x82\x10\xea\x03\x3e\x7f\x24\x08\x3e\x35\xee\x38\x74\xf4\x71\xfd\xc0\x1a\xfb\xb8\xfd\x8e\xf6\xc3\xa9\xe4\xe9\x3c\xf6\xf2\x66\x11\xad\x07\xa4\xf5\x70\xb4\x0e\x84\x5e\x07\xb4\x0e\x24\x89\x87\xe1\x27\xb9\xe8\x93\xc6\x45\x3b\x5e\xce\x1a\xad\x7f\x90\x7b\xc2\x45\xce\x8e\x2d\xc0\xd9\xb1\x6b\x01\x95\x52\x82\x10\x88\x00\xac\x79\x37\x7b\x7c\x1e\x12\x04\xbf\x3f\x90\xf0\x81\xab\x53\x98\xba\x96\x20\xf8\x7f\x02\x73\x3e\x73\x3f\x5f\x96\xcb\xc5\x82\x3e\x82\xe0\x53\x00\xb6\xbd\x26\x08\xbe\x47\xc0\x01\x13\x4e\x43\x03\x2a\xb7\x13\x04\xdf\x3b\xe0\x74\x19\x41\xf0\x3d\x01\x2e\x77\x13\x84\x80\x18\x70\xa3\x80\x20\xf8\x23\x81\x47\xbc\x44\xc9\x57\x0a\x04\xd1\x2c\x45\xde\xa6\xea\xaf\xc5\xff\x53\x07\x43\xeb\x40\x96\xf2\xbe\xd7\xb9\xbc\xf5\x3e\xe5\x33\xfe\x9f\x3a\x10\xd7\x9b\xff\xea\x0b\x4e\x5c\x94\xe1\xed\xa7\x44\x1d\xc0\xaf\x4a\x10\x44\x02\x30\xea\x2d\xf7\xf7\x32\xfa\x40\x10\x7c\xd3\x01\x4f\xde\x49\x3f\x42\x8d\x20\xf8\x44\x80\x54\xde\x4d\xb9\x29\x45\xff\x1a\x0f\xde\x9b\xb0\x82\x1a\x2e\x16\x55\x70\x71\xaf\x29\x41\xf0\x49\x02\x65\x4d\xdc\x9f\x8f\xb6\x72\x0e\x3e\xc0\x19\x5e\x62\x5c\x93\x08\xe7\x81\x08\xb8\x31\xc8\x7d\x1f\xf7\x7f\xe6\x80\xfc\x4b\xff\xf0\x7f\x21\x97\x17\xe5\x9f\xe5\x45\xa1\x84\x79\x28\x75\xbf\x47\x65\xc6\x98\x47\x02\xb6\x80\xda\x95\x89\x56\x42\x12\x80\x5a\xd1\x9c\x57\x42\x1f\x01\xc6\xd8\x55\x5a\x62\x0f\x00\x86\xd9\x36\x37\xf1\x4f\x80\x86\x52\x59\xb4\xf8\x00\xa0\x1e\x7a\x5a\x43\x7c\x17\xa0\xd1\x7a\xf5\xa5\x64\x2f\xa0\xce\xd7\x93\x2b\xf6\x1e\x50\x63\x7d\xf8\x25\xba\x04\x50\xb9\x01\x8c\x88\x07\x44\xf7\x72\xfe\xcd\xef\xbd\xe2\x54\x16\xfd\x47\x05\x11\xca\x99\xe8\x4d\x80\xf0\x75\x0e\xbe\x10\x14\xa6\x3a\x50\x2f\xbf\x40\x37\x07\xbb\x9d\x85\x28\xc5\x57\x67\xb8\x20\x95\x70\xd7\xbe\x47\x65\x3c\x20\x1c\x7c\xd5\x5f\x65\x13\x20\x5c\x7b\xa5\x50\x55\x0b\x10\xa9\xc1\xff\x1f\xfa\x87\x7f\xeb\x20\x68\xa4\x75\x01\xdc\xf1\x12\xb9\xec\xa1\xc2\x41\x69\x89\x10\xea\xbd\xbf\xaa\x51\x82\xa5\x40\x2b\xa0\xc6\x9f\x99\x23\x18\x0a\x30\xea\xe6\x38\x8b\x16\x01\xcc\x09\x2b\x2b\xc5\x9b\x01\x86\xe4\x96\x7e\xf1\xe3\x00\x43\xf8\xf0\x80\xc4\x10\xa0\x7e\xa6\xde\x55\xc2\x02\xd0\x50\xbd\xd6\x29\xf1\x15\x50\x9f\xf4\xf8\x99\xf8\x2c\x40\xdd\xf4\x8b\x9a\xe8\x2c\x7a\x1c\xc8\x20\x69\x13\xce\xbf\xf9\x75\xb9\x24\xa5\xdc\x7e\xb3\x5f\xa5\x17\x10\x3a\xfd\x6c\x40\xf5\x31\x20\xf2\xf2\xc9\x48\xd5\x68\x40\xc4\xef\xd1\x21\x49\x29\xce\xe7\x5d\x2f\x44\x8f\x71\xf0\x56\xa5\xd8\x79\x0e\x5e\xdb\xa7\x32\x1d\x10\x9e\xdc\xa2\xac\x52\x00\x08\x1f\x69\xac\x55\x39\x0f\x88\x08\x73\x3e\xf3\xe3\xd5\xef\x79\x81\xf8\x4f\x3d\xd0\xdf\xfa\x87\xff\x45\xee\x9f\x13\xe9\x73\xa5\x78\x0c\x19\xa1\x80\x26\x0e\xaa\x7d\x49\xc8\x15\x34\x02\xd4\x77\x67\x04\x08\xe5\x02\x4c\xbd\xd9\xa5\xa2\xd7\x01\x4d\xd5\xfc\x14\x89\x40\x80\xf9\x70\xab\xbd\x64\x31\xa0\x55\x5e\x36\x56\xd6\x06\x60\x94\xd7\xbf\x91\xaa\x01\x18\xcc\xf6\x10\xa9\x18\x40\xc3\xf7\x69\x8a\x44\x3e\xa0\xf1\xeb\xbb\x9b\xf8\x46\x40\xcd\x16\x10\x5a\xf5\x23\x5b\xf5\x38\x20\xf4\xee\xe3\x65\x39\xea\x3b\x1c\x18\xa5\xca\x06\x44\x6e\xf6\xed\x54\xb3\x07\x44\x57\x3c\x12\x50\xfb\x09\x88\xfd\xbc\x17\xaa\xda\x05\x88\xce\xbd\xab\x22\x45\x8d\x43\xbb\x9e\xda\x1e\x40\xac\xb7\x4d\x41\x6d\x1e\x20\x76\x94\x9e\x07\x97\xd4\x39\x7f\x4f\x2c\xf8\x3f\xd7\xc3\xff\xa1\x83\xa1\xf9\x1e\x1a\xb9\xff\x7d\x84\xa9\x95\x0e\xf1\x87\x4e\x4a\x55\x32\x68\x06\xff\x7b\x40\xfd\x61\x4c\x9b\xe0\x52\x40\x73\xd2\xf8\x7c\x51\x35\x80\x39\x71\xe6\x25\xd1\x5b\x80\xf6\xd3\x15\x56\x52\x95\x80\x96\xd9\xd6\x27\xd2\x82\x80\x56\x7a\xd9\x17\x99\xcf\x80\xe6\xee\xb3\x2b\x65\x9d\x01\xe6\xce\x1b\x41\x32\xb1\x00\xb3\xed\xb9\xa9\xf4\x63\xce\x33\xd0\xd0\x2d\xce\x78\xa9\xed\x07\x84\x55\xbf\x26\xaa\x6b\x00\xa2\xa1\x6f\x4c\x35\x36\x01\x12\xfe\xcf\x55\xd4\x3e\x01\x62\xb9\x8f\xed\x19\x87\x01\xa9\x83\xdd\xb3\x35\xcc\x01\x89\xf6\x3b\x97\xd5\x2f\x01\x12\x49\x37\xae\x68\xbc\x05\xa4\x24\xdb\xc2\x34\x6c\x00\xc9\x51\x4d\x6d\x6a\xef\x00\xf1\xe8\xcb\xa7\xd5\xf8\x01\x31\xbe\x06\xa6\xba\x1b\x20\x7e\x10\xff\x9f\x7e\x28\xff\xf0\xff\x34\xff\xcb\x43\x18\x6d\xe2\xa0\x70\xaa\xf9\x0d\x0e\x2a\x9f\x76\xe1\xe3\xfb\x43\x2f\xa6\x75\x34\x7a\x85\x88\x33\xa0\xed\x95\x56\x2f\x26\x02\xe8\x69\xce\x92\x90\x0a\x07\xf4\xd2\x57\x04\xca\x0c\x03\x3a\xec\xad\x0a\xb2\xdd\x80\x56\x75\x59\xb4\xac\x23\xa0\x3d\xff\x9c\x8f\xfc\x11\x40\x5b\xe1\xe6\x3e\xf9\x4b\x80\xe6\xf7\xfe\x41\xd9\x44\x40\x6b\x03\xc6\x49\x9b\xb2\xe4\x35\x38\xe7\xe6\xcf\x1f\x2e\x32\x66\x02\x12\xe4\xcb\x4e\xe6\x75\x40\xba\xf2\xa9\x0f\xe3\x0e\x20\x75\xf6\xc1\x5b\x66\x09\x20\xc3\xec\x4c\x65\x5e\x00\x64\x66\x77\x9c\x60\x16\x02\x32\xee\xd7\x5c\x99\x6f\x29\x3d\xd8\x36\xc6\x41\x40\x8a\x7d\xe9\xaa\xc6\x37\x40\x8a\x38\xaf\xc8\x78\x0f\x48\x1b\x9c\xb1\xd2\x78\x0a\x48\x52\x73\xeb\x77\xfe\xc5\xbf\xf4\x0f\xf4\xbd\x77\x9a\xf7\xa4\x79\x2f\x2e\x0a\xc5\x1b\x4c\xe6\xa0\xd4\x43\x53\x8a\xe7\x54\x0b\x72\xb4\xe0\x7f\xf8\x87\x4e\xea\x75\x14\xbf\xa8\x05\xa0\x7b\x28\xd5\x5a\x3c\x03\xd0\x3b\x94\x2d\x24\x15\x00\xe8\xff\xca\x6b\x90\x73\x00\xf4\x6d\xb7\x86\x2b\x38\x02\xba\x25\xe5\x2a\x0a\x4d\x80\xde\x88\xf3\x8e\xa3\x2c\x00\x1d\xdd\x3b\x39\x23\x7d\x01\x9d\xf4\xd7\xd3\x15\xca\x00\xed\xe5\x80\x8c\xdf\x8f\x37\x9a\xc7\x00\x69\xb3\x37\x0c\xad\x7c\x40\xb6\xaf\xcf\x54\xbb\x1b\x50\x98\xf5\xf0\xb5\x76\x1d\xa0\xb0\xa8\xb3\x57\xbb\x19\x50\x38\xfd\x5b\x0f\x36\xa0\xb5\x09\x90\x23\x9b\x4f\x68\xcf\x06\x14\x46\x5e\x5e\xaa\xb9\x1a\x90\x4d\x6b\x58\xa2\xd9\x01\xc8\xae\x39\x93\xa0\xa5\x08\xc8\x5e\x38\x39\x47\x4b\x0c\x90\xa5\xee\xfb\xff\xdb\x1f\xe8\xdf\xbc\x2f\x8f\xf7\x24\x54\x46\x13\x7f\xe4\x21\x88\x2e\xd1\xa4\x7c\xed\x69\x5d\x8c\xa6\xac\xcd\xeb\x11\x5b\x00\x3d\x31\x8f\x21\xe1\x46\x40\x7f\x64\x98\x81\x68\x1f\x60\xf0\x35\xd9\x49\x52\x0d\x30\x7e\x33\x6d\xa7\x9c\x25\x60\x74\x76\x59\x9c\x42\x11\x60\x14\xbf\xd5\x72\xd4\x61\x40\xff\x6d\x79\xd1\xa8\x43\x80\xde\xa5\x0b\xe2\x4a\x5e\x80\xde\x85\x2e\x7f\x65\x3d\x40\x2f\xfe\xc3\xb2\x51\x1a\xb4\x4e\xee\x63\xab\xee\x31\x40\x51\xec\xc5\x5c\x5d\x0f\x40\x31\xf3\xd1\x1e\x7d\x37\x40\xb9\xaf\x2b\x52\x6f\x1c\xa0\x54\x7c\xf3\x9b\x7e\x2a\xa0\x22\x7a\xb5\x4e\x7f\x04\xa0\xec\xdb\xa2\xa2\x7b\x12\x18\xe5\x70\xf1\xa4\xbe\x15\xa0\xf4\xb1\x21\x49\xf7\x2e\xa0\xd8\x51\xbf\x51\x77\x0a\x30\x92\x75\x22\x43\x4f\x1e\x50\x5c\x72\xb4\x4d\x77\x17\x30\x72\xc3\x7f\xcd\x03\x6e\x2e\xd0\x3f\xf5\xd3\xf7\x9e\xb9\x3a\x00\xe1\x10\x65\x6a\x5f\x90\xd1\x54\xa5\x74\x22\x1a\x55\x7a\xf3\xf8\xaf\x03\x7a\x4b\x2c\x9d\x84\x6c\x00\xa3\x64\x97\x69\xa2\xf2\x80\xc9\xd3\xe0\x50\x89\x0d\x80\xf9\xd5\x31\x77\x65\xa7\x00\x16\x22\x53\x7a\x46\x3a\x03\x26\xcd\xb9\xbd\x8a\xde\x80\xf1\xd4\xa2\xc3\x4a\x3b\x01\x23\xfb\x0a\x73\x95\xc3\x80\xe1\xbd\x4b\x07\xd4\x3e\x00\x86\xa6\xdd\x93\xd4\xc5\x00\x83\xc1\xaf\xf6\x2a\x3d\x43\x76\xfa\x0f\x01\xa5\xb0\x37\x63\x0d\x39\x73\x4e\xf3\xb1\x8f\xd1\x38\x80\x21\xdf\x95\x62\xf8\x04\xd0\xd0\xb9\xb9\x93\xf3\x84\xaa\x7e\xe1\x9a\xa3\xe1\x5b\x40\xfd\x6c\xb3\xad\xd1\x02\x40\xc3\xf1\x92\x96\x91\x3e\xa0\xee\xdb\x30\xd2\x68\x03\xa0\x3e\x9b\xd6\xff\x1c\xcf\x33\x0c\x07\x54\x8e\xd5\x10\x86\x5b\x01\x95\xb1\x55\xd2\x06\xdf\x01\xe5\xf0\xff\x9a\x07\xf4\xfc\xe7\xd5\xff\x9b\xff\x96\xa2\xf6\x53\x31\x01\x05\x51\xea\x7c\x90\xa2\x4c\xe9\x00\xb4\x73\x99\x79\x02\x86\x80\x91\xb8\x71\xbe\x50\x2b\x60\x3e\xdf\x7e\x8e\xd8\x4a\xc0\x2a\xce\xb7\x5e\x2a\x0f\xb0\xea\x8a\xe3\x93\x5b\x0c\x58\x1d\x9e\x18\xad\x98\x0e\x58\xf6\x2f\x59\xae\xaa\x06\x58\xac\x2c\xca\xe4\xf4\x3a\x53\xab\x23\x62\x1a\x37\x00\x63\x56\xe3\x15\xe6\x5c\xc0\x38\xff\xb1\xb2\xa6\x22\x60\xe2\xcc\xba\xc2\x38\xfa\x79\xb4\xb1\x3b\xc0\x98\xf3\xcc\xd2\xe4\x12\x48\xed\xc8\xfb\x96\xa6\x6e\xf8\xa8\x23\xdb\x51\x69\x3a\x1f\xef\xb5\xbf\x5d\x15\x33\xd5\xc3\x4f\xad\xfe\x26\x63\x53\x26\x58\x5a\x89\x17\xc7\x9b\xde\xc7\x0f\xad\xb7\x67\x76\x9b\xce\x05\x34\x57\xfd\xd6\xff\x4c\x34\x33\x07\x34\xa3\xaa\xbb\x4c\xda\x00\x8d\x93\x15\x7e\x26\x87\x01\xf5\xa6\xb2\x10\xe3\x5a\x40\xcd\xe0\xbf\xd6\x81\x0a\x8b\x8b\x34\xef\xc9\xe5\x7f\x45\x16\x8a\x09\x71\x50\xee\x91\xf8\x24\xe2\x0f\x3d\x88\xd1\x18\xb5\x27\xfc\x9c\xfa\x12\xf5\x03\x85\x96\x01\xb6\x0a\xd6\x23\xc5\xab\x01\x07\x86\x67\x82\xcc\x45\xc0\x21\x32\x62\x50\xa1\x0d\xb0\x0f\xcf\x94\x50\xbe\x0a\xd8\x46\x2d\x1c\xd2\x90\x03\xac\x6e\x6c\xce\xd7\xb4\x07\x2c\x66\x1e\xd9\xa2\x5d\x0c\x98\x79\x37\x8f\xd4\x59\x02\x98\xbe\x7e\xa6\xa5\xbb\x0e\xc6\x66\x11\x80\x76\xf3\x2b\xb6\xf9\x44\xb4\x1a\x2c\x7c\xf0\xdc\x42\x06\x75\x86\xbb\x6e\x96\x59\x0c\xa2\xcc\x68\x42\x4b\xb3\xe5\x2a\x94\x1b\xa5\x5c\x5a\x61\x79\x1f\x35\x86\x03\xe7\x95\x2d\xcd\xd0\x68\xa0\x7d\xba\xc8\x52\x00\xb7\xf5\xee\x1f\x4b\xb2\x32\xc2\x35\xfd\xea\x1a\x6d\xcb\x6d\x78\xac\xfb\xf0\x48\x90\xa5\x28\xde\xeb\x58\x94\x35\x5a\x2c\xc3\x90\xd6\x93\xd2\x0c\x8b\x33\x80\x96\xdb\x3e\x79\xf3\x7e\x80\x99\xfe\x67\x3f\xa4\xd7\xc1\xdf\xf5\xd3\xfc\xaf\x38\xc9\x4f\xf9\xca\x31\xea\x04\xdf\x71\xd0\xa4\x4b\xd4\x93\xf8\xc3\x1f\xc4\x69\xb9\xe6\x44\x41\x13\xc0\x2d\xd7\xcc\x5d\x5c\x07\x70\x6b\x75\x1a\x90\x3d\x06\xb8\x5d\x0c\x95\x50\x72\x06\x5c\x1a\xd3\x66\xa9\x7b\x01\x8e\x5b\xe6\x2b\x68\xf6\x01\x76\x0b\x36\xb9\xe8\x1e\x07\xac\xf7\x56\xae\x31\x38\x07\xc2\x72\x5f\xab\x89\x31\xe3\x97\x85\x65\xd8\xb3\x34\xd3\x2b\x9f\x2b\xad\x32\x31\xcf\xac\xbd\x37\xd6\xfa\x0a\x7c\x2c\xef\xdf\x92\xb1\x5d\x03\x03\xeb\x9f\xcd\xc9\xb6\x2f\xe0\x61\xb5\xe3\xdf\x39\x60\xc7\xbb\x6d\x7f\x60\x89\x59\x6e\xcd\x63\x7b\x3d\xcc\x33\x77\x3c\xd2\x6b\x17\x88\xed\x26\xbb\x0e\x37\xdb\x4e\xc1\x29\x23\xd9\x52\x35\x9b\x61\xb4\x19\x8c\xdb\xab\x6d\x9b\x81\x0e\xfd\x57\xbb\x92\x6c\x97\xa1\x5b\x9f\x6f\x47\xa6\xcd\x61\xbc\xd6\x75\xff\x73\x1d\x28\x6d\xff\xaf\xfa\x45\x78\x39\x08\x0c\x23\x2e\xd2\x79\x00\x34\x0f\xea\x74\x50\xd0\x8b\x83\xbe\x03\xaa\xbb\x04\x34\x80\x20\x01\xbd\x5b\xa2\x8e\x80\x7f\x9f\x0d\x43\x7a\x18\xf0\x55\xf7\xeb\x57\xb9\x0d\x78\x6d\x4e\x3a\xc2\xfc\x0c\xb8\xdd\xce\x11\xd7\x5b\xf6\x6b\xae\xcb\x88\x75\x53\x4c\xbd\x3e\xc7\x3b\x36\x1f\xba\x69\x2d\x36\xf8\xcb\xfe\xe1\xc5\x3c\x7b\x9f\x97\x03\x76\xed\x0f\xf7\x3a\x8d\x78\x9e\x65\xaf\x39\xf4\xdd\x59\xf0\x4e\xb8\xc3\x7d\xb2\xc2\x45\xb4\x59\xdc\xc9\x86\x3c\xed\x7c\xe3\xec\x01\x17\x39\xf2\x84\xcb\x66\xda\xf7\xa6\xa6\xc0\x39\x11\x23\xed\xee\x55\x2a\x38\xeb\xc2\xcc\xd6\xe1\x50\xb8\xb3\x2f\x82\xac\xc7\xed\x1f\x70\x5e\x85\x58\xab\xe2\x3d\xf6\x4e\x5d\x98\x6b\xa1\xb4\xcb\xc2\x29\x1d\xeb\xcc\xc2\x8b\x8f\x38\xde\xc5\x61\x13\x87\x2d\xb1\x8e\xea\xb8\x60\x24\xbe\x71\xb5\xe3\x56\x34\x1b\x4e\xfb\x73\x1d\xd0\xf5\x8f\xa0\xfa\x26\xcd\x7f\x2b\xff\x20\xfe\xd2\x01\xd8\xf2\x9e\x6a\x68\x5f\x08\x9a\x0f\xa7\xf3\x62\x68\x9f\x94\xe8\xb1\xe6\x84\x74\x0e\x10\xe1\xeb\xd1\xad\xf2\x61\x68\x38\xa8\x3e\x66\x8d\xde\xe5\x8f\xfe\xfe\xe4\x94\x14\xf3\xa1\x01\x63\x9f\xbe\x15\x6b\xed\x1b\x9f\x54\x7b\xde\x2b\xd9\xe0\xda\xf9\x60\x8d\xfb\xb8\xd3\x23\xbc\xd2\x3b\x35\x5d\x5b\x6e\xbf\xf1\xdd\x73\x2b\xda\x35\xf8\x63\x95\x7f\x4c\xd3\x5a\x77\x25\xf6\x5b\xff\xf8\x33\xba\xee\x0f\x49\x73\x9f\x85\x35\xd3\x3c\x3d\xc8\x04\xaf\xce\xb2\x41\xcf\x5d\xe4\x2a\x8f\x55\xa5\xc7\x3d\xa3\xc8\x13\xae\xc3\x7b\x97\x79\x2e\x21\x6f\xbb\x24\xee\x12\xf6\x5a\x48\x3e\x70\x91\x2d\xd6\xf2\xd2\x00\x9f\xe3\xba\xad\x13\xdd\x9f\xc0\xc3\xe6\xfd\xa6\x66\x0f\x37\x84\x5b\x7f\x59\xf7\xc1\x43\x0d\x13\xad\xe4\x0a\xbf\xbb\x15\x62\xbd\xd9\x93\xd5\x09\x6e\x55\x28\x31\x2d\xfe\x73\x1d\x70\xfd\x0f\xe8\xfa\xe5\x79\xfc\xaf\xa1\x2e\xaf\x7e\xda\x17\x85\xf7\x54\x1c\x34\x40\xfc\xc5\x07\xd3\xfe\x20\xe9\xbb\xe4\x5a\x29\x74\xd6\x23\x24\x64\x7f\xa8\xa4\x74\x3b\x9a\xa9\x9c\x7d\xed\x19\x2f\x1a\x72\xc6\x18\xbd\x23\xa2\x5e\x8c\xf3\x70\xa8\xef\xbc\x14\x1e\xbe\xa0\xd6\xd3\xa0\x3d\x27\x98\x5d\x74\xd4\xff\x4b\x73\x4f\xc0\x60\x75\x4b\xa8\xc0\x25\x1b\xbf\x9a\xab\x7c\x11\xbb\x1a\x54\x7d\x17\xbd\x2c\x88\x6a\x3e\x71\xcd\x6f\x02\x5b\x33\xca\xbd\x42\xc3\xff\x1e\x7b\x51\xd8\xc3\xfd\x71\xfe\x5f\xd8\xbd\x41\xd9\xbb\x14\x03\xf6\x90\xb2\x01\xaa\xc5\xcf\x03\x06\x48\x53\xbf\x2b\x5b\x3c\xfd\x5f\x93\x73\xbd\xaa\x36\x4d\xf5\x1b\x24\x8f\xba\x3b\x17\x4e\xf4\xbf\x46\xde\x72\xcd\x2e\xc8\xf6\x37\x24\x5f\x3b\xdf\x59\x1d\xef\x67\x06\x59\x47\x99\xe5\x1a\x7e\x56\xb0\xb7\x4b\x5d\xda\xe0\x3b\x0f\x31\x36\xd2\x4b\x0b\x7c\x6a\x90\x61\x45\xbd\xa3\x14\xa5\xf4\x70\x34\xff\x2f\xf6\x92\x8b\x3a\xf2\x5c\xb4\x9a\xc4\xab\x9f\xe7\x77\x41\xf3\xc0\xb4\x2f\x44\x26\x2f\x17\x66\xea\x55\x2e\xce\x6c\x14\x1a\x4b\x10\xdf\x66\xce\xfa\xa6\x31\x4a\x94\x6f\x20\x78\x3a\xc3\xf2\xb6\xca\x88\x07\xfd\x13\x2b\x7c\x1d\x8c\x6f\xb5\x77\xa7\x9e\x8e\x8f\x74\x9d\x76\xb9\x75\x4c\xc5\xf4\x9a\x40\xed\xfa\x9b\x71\x7d\x6b\x02\x22\x36\xd4\x89\x47\x2f\x2f\x6d\x8f\x75\x3c\x72\x25\xf2\xf2\xc5\xe8\x44\xc3\x43\xdf\xc3\xdf\xf7\xa4\x26\xcd\x3f\x20\x1f\xbe\x97\xe5\x93\xd4\xb9\x7d\x67\xc4\x42\xd6\x9d\xb8\x5d\x9b\x66\x46\xe4\xb2\xa3\xa2\x1c\xd7\x5e\x8f\xe4\x67\xaf\x09\xbf\xb7\x5a\x39\x62\x90\xdd\x15\x62\xbd\xe2\x6d\xa4\x19\x7b\x28\x68\x42\xde\x60\x04\x83\x74\xf4\x27\x72\x25\xc2\x07\xc8\xe9\xde\x9f\x17\xb7\x87\xc9\x90\x47\xdd\x7f\x2d\x78\x14\xda\x42\x76\xba\x96\x2e\x90\x09\xb1\x23\xe1\x54\x33\xb7\x3f\x78\x09\x98\x0e\xe1\x39\xeb\x82\x8f\xc0\xdc\xde\x8e\x7a\x0b\x40\xe9\x44\xf9\x79\xeb\x9e\xc1\xcb\xf3\xa6\xf9\x5f\xba\xfe\x28\x9e\x1e\x20\x95\xf7\xfd\x4f\xe6\xe5\xbf\xe7\x70\x79\xb0\xb0\xc5\x54\xbf\xf8\x7c\x6c\x19\xf5\x9e\xef\xe5\xad\xfc\x26\xa5\x17\xfc\xef\xba\x77\x2d\xb5\x32\x9a\x36\xca\xe1\xba\xc5\x82\xe9\xae\x9b\x0c\xe3\xcf\xfb\xce\x72\x88\xf8\xe5\xfc\xa6\x56\x63\x52\xe1\xf8\xaf\xa1\xcb\x0e\x0a\x66\xd4\x2c\x59\x19\xa7\xb7\x4b\x73\x9c\xf5\x8e\xa8\xe4\xc8\xa2\xeb\x63\xed\x4e\xda\xa4\x55\xae\x37\x4a\xfa\x76\xe7\xfa\xf8\xa4\x02\x9f\x31\x1f\xbf\x94\x67\x8c\xc9\x7b\x97\xb4\x9b\x25\x97\xea\xbe\x38\x2f\x69\x11\xab\x24\xb1\x67\xfe\x94\x24\x05\xb6\x58\xac\xff\xbc\x85\x89\xb1\xec\x09\x51\x62\x73\xf2\x13\x8e\xb3\x4b\xc3\x8d\x72\x46\xc6\x17\xb2\x5f\x04\x3f\x9e\x29\x15\x77\x9b\x34\x08\x30\x9a\x3e\x1c\xfb\x81\x4c\xf1\x1d\x39\xad\x2e\x66\x25\xb9\xc5\xf3\xde\x54\x99\xe8\x77\xe4\x49\xf7\x73\x53\xe6\x8e\xfe\x46\xde\x76\xed\xca\x4a\x8b\x5a\x08\x49\xc7\x5d\x00\x1f\x2f\xcf\x81\xd6\x81\xd0\x3e\x08\x9e\xab\xb8\x38\x9a\x77\xdf\x7f\x1c\x8f\xff\xa6\x79\xd0\xc5\x14\x0e\x9f\x5b\x49\xbd\xef\x7f\xff\xba\x90\xe2\xad\x9e\x3b\x6e\xa0\xde\x8e\x74\xa7\x6d\xf1\x92\xf1\x24\x88\x6b\x4d\x1b\xdf\x68\xbd\x92\xf3\x3b\x2f\x5c\x78\xda\x2e\x46\x57\xa8\x66\x5a\x7e\x7e\xe0\x7b\xfb\xef\x7b\x3d\x16\xbf\x4d\xfe\x16\xf8\x61\x83\x7d\xce\xb1\x59\xf3\x12\xab\x56\x4c\x9b\xc1\x5a\xdf\x92\xf6\x66\xe1\xe6\xe9\x06\x95\xfe\x99\x57\x72\xec\xa7\x6c\x6b\x1b\xce\xda\x9b\x3d\x71\xb2\xf5\x6b\xc6\xa4\xa3\x53\xd6\x4f\x9a\x34\x3c\x35\x73\xec\xa4\xf6\x89\x1a\x2c\xed\xb1\xa7\x26\x3e\xc8\x3c\xc8\xda\x97\x78\x7e\x82\x69\xa6\x11\x6b\x30\x6e\x45\xa6\xcc\xf8\x1c\xb6\xcb\xe8\x07\xe3\xcb\xd2\x0f\xb0\x97\x46\x94\xa4\x4f\x1b\x47\xb0\x5b\x43\x65\xfe\xad\xf7\x18\x9b\x9f\xe2\x41\x4e\xf3\xae\x4c\xf5\x1d\x23\x4f\xd6\xb9\x17\xa4\x54\x8e\x91\x20\xaf\xb8\x05\x00\xd2\x79\xdc\xba\x8c\xfd\x89\xbf\x74\x20\xf4\xfc\x4f\xe7\xf9\x42\xcc\xe2\xf9\x83\x70\x79\xd0\x5f\x93\xd6\x52\xf7\x3e\xdf\x49\x6d\xa1\x72\x0f\xfa\xd2\xb6\x53\xf3\xa7\xeb\x58\x09\xa5\x27\xbb\x3a\x7d\xdf\xe5\x11\xca\x04\x71\xfe\xf5\xbe\x70\xd5\x36\xf1\x19\xb5\xe7\x77\xeb\x9b\x4b\x68\xbc\xdb\x57\x5d\xac\xe5\xf5\xd9\xf2\xc1\x46\x87\x8d\x77\xe2\x56\xf9\x38\x2c\xe9\x2b\x08\x9b\x2a\x1a\xfd\x73\x66\xc8\x4a\xe5\xd5\x6a\x29\x2a\x93\x96\xac\x18\x77\xa8\x21\x6d\xea\xf8\xf2\xbc\xcb\x4d\x69\xe9\xbe\xa9\x17\x96\x75\xbd\x78\x94\xbe\x7e\xac\x51\xee\x3d\x96\x72\x6a\x60\x8a\xf6\xc2\x89\xac\x93\x89\x7a\xc9\xa3\xe6\x0b\xb0\x15\x63\x7e\x25\xad\xcf\x19\xc3\xce\x8e\xec\x1e\xe3\x3e\x7b\x02\xbb\x2e\xac\x22\x49\x33\xdb\x8e\xdd\x15\x72\x33\x11\xd3\xec\xc9\x51\x81\x5e\x89\x93\x27\xff\x24\xfd\xfd\x36\x24\x2a\x64\xe5\x91\xd3\x7d\x74\xe2\x27\x4f\xdc\x4d\x96\x7a\xbc\x8e\x2f\xcc\x1c\x43\xd6\xbb\x2f\x8c\x77\x19\x2f\x41\xde\x77\xcd\x04\x74\x78\xf5\x39\x3a\x71\x31\xec\xe1\xdf\xf5\xe7\xf0\xde\x76\xad\xa4\xee\xfd\x0e\xa9\x6e\xa6\xfc\x93\xde\x26\xed\xa4\xf8\xce\x27\xe5\x7b\x28\xde\xee\x2e\xeb\x20\x35\x0e\x6d\x83\x15\xd4\xbc\x38\x77\xae\x8a\x7a\xdf\x77\xec\xec\xd1\x94\x51\xef\x09\xa2\xd4\xba\xb2\x43\xbf\x6c\x54\x55\xd1\x85\xb2\x3a\x17\x69\xa3\xd0\xbc\xe6\x03\x57\x23\x05\x5c\xb2\xb3\x37\x96\x64\x4d\x90\x0e\xb5\xcf\xf0\xde\x25\xba\x42\x34\x3a\x26\xf9\xc0\x8e\xf1\x07\x82\xe2\x9a\xe2\x0e\x6e\x77\xbd\xbc\x27\x61\xe6\xe8\x87\xc5\x93\xfb\x2e\x26\x14\x44\xf9\x6e\xfd\xc9\xfa\x16\x7b\x2c\xca\x78\x83\x16\x7b\x4a\xe4\xd6\xa8\x51\x05\x65\xec\xe3\x61\xbe\x91\xa3\x57\x15\xb1\x87\x83\x2a\xa3\xcc\x97\x57\x90\x32\x81\xc5\x11\x6f\x96\xa6\x92\x69\xbe\x2a\x51\xc2\x8b\x6a\xc9\xc9\x3e\x5b\x22\x4f\xcc\x3f\x49\x6e\xf5\x92\x8e\x74\x99\x9b\x47\xd6\xbb\x3f\x89\x10\xc9\x61\x92\x83\x2e\x8b\x23\xd6\xcd\xc8\x00\xe1\xf4\x2b\xac\x39\x7b\x24\xcc\xec\x77\x03\xb6\x69\xdc\x3a\x43\x79\xe7\x81\xdf\x3a\x90\x95\xc4\x1f\x3a\x80\xa1\x47\x5b\xa9\xfd\x71\x10\x25\x54\x3f\x7d\x12\x56\x4a\xfd\xdc\x25\x7a\x84\x5a\x4f\x57\x35\x8e\x52\x8d\xa3\x61\xef\x09\xea\xf3\xa3\xc2\xf5\x94\x1e\xe6\xe0\xe8\x06\x15\xd1\x6e\x82\x28\x36\x38\xbb\x91\x69\x24\x7d\x70\x55\xd2\xe9\xd9\xb6\x72\x9a\x2f\xe7\xd8\x1e\x6f\x0b\xba\x69\x5d\x97\xde\x5a\x6b\x96\xb6\xcd\x27\x39\xe1\x6b\x8d\x5c\xee\x40\xe0\xc4\xa8\xac\xaa\x5b\x7b\x7a\x42\x6e\x85\x5c\xac\xbc\x7e\x21\x32\xac\x28\xd0\xbc\x72\xc4\x13\xa1\xb0\x4b\xfe\x8f\x2a\x3a\xd9\x97\x42\x6c\x03\x18\xfb\x53\x49\x85\x00\xf7\x00\xbe\xdd\xa3\xc8\x08\x5f\x23\xff\x86\xe2\x57\x64\x9e\xd7\xe4\x80\xc5\x45\x17\xc9\x22\xcf\x5d\x01\x56\x1b\xc4\xc9\x66\xb7\x0d\x01\xb3\x0b\x93\xc8\x5e\x57\x49\xff\xb8\x55\x37\xa1\xe0\x98\x1c\x50\xb0\xa2\x18\x72\x8e\x7b\xfc\x1b\xf2\x6e\xc3\xc2\x7e\x66\x40\xc8\x92\xd5\xf0\xb2\x53\xf7\x4f\x58\xb8\x02\x99\xd6\x0e\xff\xec\xff\x74\xff\xfb\xad\x03\xa1\xf6\x03\xd6\xc1\x1d\xd4\xbd\xf7\x77\x0b\xf7\x53\xfe\x08\x7d\x73\x2b\x28\xdf\xa0\x2e\x9b\xa3\xd4\x78\x5d\xbd\x79\xf2\x0e\x07\x2f\x3a\x9c\xa5\xee\xcb\x1f\x5b\x7a\x81\xd2\x13\x1d\x92\x6d\x7c\xcc\xc1\x6d\x3f\x5a\x29\x1d\xdd\x5a\xff\xb6\x14\xe5\x28\xa1\xf4\x85\x8f\x5b\x6c\x4c\xf3\x95\xf9\x27\x5d\xbb\x12\xe4\x23\x65\xf8\x32\xc1\xf1\xd2\x96\x24\x57\x47\x83\xf0\xaf\x17\xaf\x2f\x9c\xe0\xfa\x22\xa0\xe9\x02\x76\x1e\xf2\x0c\xf5\x36\xbb\x90\x78\x4e\xdc\xeb\x8b\x7b\xe7\xf9\xba\x9e\x18\x6f\x31\x77\x81\x86\xb5\xe4\x12\x8f\xe7\xee\x06\xc7\xcb\xc8\x13\x6e\x23\x68\x7f\x0b\xf7\xf1\x65\x87\xc9\x61\xc7\x2f\xee\xfb\x4a\x4d\x21\xe3\x70\xc0\x7d\xed\x9e\xfd\x30\xb3\x3b\xe1\xfe\x75\xc7\x5d\x78\xd8\x2e\xf0\x10\xdd\x16\x89\xd1\x36\x56\xee\x6b\x37\x93\x98\x66\x35\xd2\x63\xd3\x86\x49\x98\x66\x65\xe7\x3e\xa7\x70\x33\xb6\x98\x8f\x70\xbf\xb2\x6a\x19\x0e\x98\xde\x07\x12\x78\xfb\xe4\x4c\x5e\xee\xc5\x0a\x4a\xd7\xc2\x9e\xbd\x93\xd2\xff\xbc\x63\x1f\xa4\x74\x53\x7d\xa9\x5c\x5f\x88\x7b\xab\x4f\x50\x7a\x89\x6b\x25\xe7\x28\xbd\xd8\x25\x7b\xae\x4f\xc2\x89\x73\x4d\xd4\x3d\xd8\xf2\xd2\x36\x8a\xff\x29\x91\xed\x08\xe0\xe0\x3a\xdb\x3b\x94\x9f\x4a\xee\xd1\x2e\x3d\xa9\x1f\x04\x91\x1d\xdb\x29\xad\x3b\x41\x46\x7f\xec\xab\x3b\x9e\xae\xb2\x4c\xeb\xf0\x27\xb7\xf6\xc6\xc6\x98\x5e\xf0\x97\xbe\x35\x75\x8e\x94\x95\x9b\x7b\xef\x2d\x83\x6d\xb9\xb6\x4e\x4e\xdb\x6f\xde\x38\x3d\xda\xae\xdc\xbe\xe2\xa6\x60\xf7\x21\xbb\x0e\x7b\xc9\x8e\x3e\x38\xd8\x24\xd9\xb5\x34\xf5\x20\xd1\x8a\xcf\xde\xed\xbc\x37\x32\x2d\xc3\xed\x5a\x4f\xaf\x47\x9e\xb9\xae\xfd\xf9\x63\x21\xc8\x35\x5f\x6b\x3f\xae\xaa\x0d\x3b\x4c\x97\xd8\xeb\x94\x6f\x40\x95\xf1\x90\x7d\x5a\xe9\x16\xd4\x1b\xc1\xde\x64\x5f\x38\x9a\x0d\x5b\x1c\xe4\x76\x4d\x40\xab\xe1\x31\x7b\xbb\xe2\x6e\xf4\xea\x4f\xb7\x9b\xbc\xb5\x08\xef\x39\xcf\xe8\xbf\xfd\x50\x54\x28\x7c\xc6\xf5\x03\xfa\x28\x72\x88\x3a\x37\x3c\xdf\x57\x43\xe5\x00\x3c\xd8\x78\x86\xd2\x53\xde\x48\xbe\xc8\xcd\xbf\xc8\x6d\xa2\xd6\xd3\xe9\x2b\xd7\xa8\x7e\x51\xb9\xac\x83\xd2\xcd\xec\xad\xb8\xe3\xce\xc1\x22\x4b\x2e\x4f\xbe\xfc\x55\x0f\xa5\xbb\xca\x3e\xd2\x47\xe9\x41\x32\x62\xfb\xea\xd5\xa6\x08\x3b\xc6\x4c\x79\xfa\xd2\x96\x50\xcc\xf3\x3b\xfc\xd4\x22\xfc\x8e\x56\xb6\xdb\xdc\xa7\x71\xd9\x72\x7a\x39\xf6\xd7\x9e\x6e\xdc\x94\x62\x68\x67\xd5\xfb\x34\xff\x58\xb5\x51\x94\x85\xda\xd3\x15\x5d\x0b\x8c\xac\xcd\xcf\x3f\xbd\xc5\xde\xa3\x3f\xce\x7c\xd9\xbd\x0a\xbc\xd6\x8b\x35\x0f\xbd\xb1\x08\x1f\x74\x27\x9a\x7b\xb5\x9a\xe1\xab\xce\x15\xf3\xb0\xcb\xf7\xf1\x53\xc7\xcd\xdc\xb3\xa1\x1b\xa4\xf6\x4a\xf3\x8f\xa7\xe4\xc1\xd6\xde\x6a\xde\x57\xb7\x02\xd0\xba\x68\xe1\x54\x75\x04\xd0\x9a\x68\x69\x5f\xf6\x19\xd0\x7a\x63\x91\x72\xc8\x02\xd0\xb4\xb4\x70\xdd\xbf\x0c\x60\x06\xfe\xa3\x83\xd9\x31\x93\x83\x5f\xd2\xcb\x33\x38\xd8\xbf\xa8\x8e\xd2\x0b\x3f\x10\x3a\x4b\x9d\x2b\x6e\xfa\x34\x52\xe3\xd5\x64\xc8\xd5\x3f\xd5\xdf\x6f\xa7\xe6\x4d\xad\xd8\x1d\x8a\xff\x29\xdd\x7c\x8f\xfa\x7c\x3b\xa3\x87\x3a\x7f\x16\x86\xf5\x51\x2c\xcb\x42\xbf\x97\xd4\xf9\x74\xe2\x54\x6e\x9e\x4a\x42\xc5\x47\x1f\x19\x0f\x82\x08\x1e\xfb\x51\xcf\xd8\x57\xd2\xd9\x75\xdf\xc7\x0c\xff\xf6\x51\x87\xed\xbc\x3e\xed\x9f\xb8\x52\x85\x34\x67\x7f\xce\x2d\x34\x50\x37\x34\xde\xfc\x45\xb1\x7a\xba\xfa\x67\x43\xe5\x2f\xf7\x6e\x87\xab\x8f\x37\xd4\xfc\x3a\x61\xe8\xac\xca\x49\xfd\xe1\x57\xe1\x80\xb2\xba\xfe\xd9\x5e\x7b\x40\x39\xd4\x40\xe7\xde\x17\x40\x45\x49\xff\xe2\xad\x5a\x40\x79\x91\xfe\x89\x6b\x9b\x01\x65\x3f\xfd\xf6\xa6\x4a\x40\xd9\xd0\x30\xe6\xe2\x49\x40\x95\xcf\xf0\xce\xd9\x4c\x40\xd5\x45\xff\xd7\xc9\xcb\x80\x52\x94\xe1\xa1\xa3\xcb\x00\xe5\xef\x86\xaa\xd5\xfa\x80\xd2\x73\x60\x3b\x35\xef\xbf\xbf\xa8\xa0\xbe\xf7\x57\xd9\x27\x28\xfe\xbb\x67\x4a\x03\x35\x0e\x77\xe4\x9b\x29\x9d\x43\x4b\xd1\x75\xee\xbd\xdf\x4d\xb7\xa8\xf3\xc5\x31\xc3\xfb\x54\x2e\x4c\x99\x6b\xcf\x4e\x0e\xee\xce\xe9\x5b\xce\xc1\x8d\x1f\x5f\x52\xf3\x69\x79\xf3\x20\x8f\xef\xe2\xe6\x49\xa4\x1d\xfb\x41\x8d\x5b\x70\x06\x49\x9d\x3f\x3d\xda\x01\x8d\x6f\x23\xb6\xda\x98\x03\xae\x45\x92\x27\xcd\xa2\x81\xb1\xf9\x32\xfd\x86\xce\xc0\xb2\x9b\x72\x5d\xba\x1d\x40\xe9\x78\xf9\x47\xda\x65\x40\x53\xbb\x7c\xa1\x76\x06\x30\x70\x4f\x2e\x5c\xf3\x18\x29\x0b\x48\x26\x30\xf3\x3e\x0e\x03\x92\x73\x68\x3f\x07\x5a\xe7\xc0\x2c\x7d\x90\x04\x48\xa7\x69\x8a\xdd\x8d\x06\x64\x54\x98\xe3\xdb\x5b\x01\xe9\x18\xcd\xf1\xad\x13\x01\x99\xfd\xcc\x83\x8d\x79\x80\x74\x31\xf3\xd9\xf9\xfb\x80\x74\x9b\x56\xdd\x19\x47\x40\xb6\xe7\xe7\xf5\xc3\x94\xee\xe3\xcd\xea\x13\x15\x7f\xd5\xdf\xdb\xba\x87\xbb\x0f\xde\x94\xe2\xe0\x79\x95\xbb\xd4\xf3\xc5\xc9\x34\x6e\x4e\xd6\x11\xff\xa7\x94\x3f\xc4\x7e\xed\x81\x62\xaa\x1f\xd6\x0c\x52\x75\x16\xde\xf8\x4c\x3d\x7f\x2c\xbe\xf9\xed\x3e\x07\xa7\xad\x61\xb5\x71\x30\x91\xe7\x07\x40\xe7\x3f\xd8\x32\x01\xc5\x06\x82\x30\xcd\x06\xec\x7a\x45\x97\x1a\x38\x01\xb1\x5a\xe2\x73\x74\x52\x81\xd9\xd1\x12\x0f\xb5\x44\x80\x2d\xa1\x52\x11\x8c\x83\xc0\x51\x3d\xc9\x33\x1a\xcf\x81\x8e\x67\x92\x11\x1a\x6f\x80\xc1\x6c\xf1\x1e\x5e\x7e\xc5\x59\x19\x07\x50\xca\x03\x69\xb9\xaf\xd4\x0d\x7a\x19\x9f\x41\x8a\x99\x54\x8d\xee\x5b\x05\x08\x4f\x94\x72\xe9\x89\xe4\xfc\x2c\x3e\xff\xfe\x59\xea\x59\xd2\xeb\xf6\x44\xea\xf3\xd1\xd7\x6c\x00\x91\x48\xb5\xf2\x66\x4b\x40\x2c\xe5\xdd\xe4\xe3\xd4\xef\xd5\x77\x91\xeb\x8b\xd4\x95\xdc\xb6\x9f\xea\x83\x8b\x6e\x57\x52\x7d\x20\x91\xeb\x03\x55\xef\xc4\xf5\x05\xa2\x75\x50\x07\xa5\xdf\x84\x70\x70\xe7\xb3\x4f\xd4\xba\xdf\xd8\xfa\x83\xe2\xc9\xf3\x47\xb2\x86\x09\x6e\x1e\x08\xd5\x3f\x69\xde\x37\x8a\xe7\x07\x40\xdf\xfb\x37\x7a\x0c\x48\xe7\x12\x04\xe7\x7b\x37\xfb\x25\x78\x4c\xeb\x0c\x10\xda\x2c\x3c\x9b\xd1\x03\x64\xdd\x17\x19\xab\x9e\x06\xe4\xbf\x11\x59\xab\x9e\x0f\xec\x2b\x11\x9b\xa2\x2a\x04\xd4\x9b\x0b\xf7\xa8\x46\x00\xb7\x2d\x45\xb4\x54\xcb\x81\x81\x6e\xe1\x3c\x35\x49\x00\x56\x82\xbd\xbf\x7d\x1d\xdc\xd0\xc6\xfd\x17\xbe\xb1\xb9\xf8\x8e\xcb\xef\x37\xf4\xab\x70\x7f\x7e\x52\x4e\xe1\xf1\x07\xdc\xdf\x2c\xe5\x6e\x25\xc5\x83\xa5\x5e\xa6\xfa\xdd\x6f\x1d\x98\xf8\x5d\xea\xfb\x6e\x34\xe1\xfa\x63\x9c\xf5\xec\xa3\xf4\x52\xb5\xef\x5f\x51\xe7\x82\xf2\xa9\x5c\x5d\xc0\xbe\xa4\x9f\x94\x8e\x78\x6b\x1d\x8b\xca\xd3\x29\xe0\xf9\xc0\x2c\x61\x72\x71\x2a\x8f\x17\xa5\x79\xdf\x60\x4b\x2e\x5a\xf3\xf8\x71\xf5\x74\x80\xef\x0e\x41\x68\x9c\x00\xf4\xef\xf2\x3f\x52\x6f\x06\x7c\x9a\x47\xd8\xd0\x3c\xb7\x6a\x12\xb0\x60\x40\xf0\xac\x8c\x00\xb0\x76\x0a\x41\x8c\xdc\x07\x94\x19\x10\x84\xf2\x6d\xe0\x42\x9b\xe0\x04\xe9\x3a\xa0\xbd\x84\x33\x0f\x80\x87\xab\x09\x42\x62\x1e\xf0\xee\x10\x41\x88\xbc\xf8\x17\xaf\xbf\x8a\xcd\x53\xaa\x7c\xe1\x31\xd6\x6f\xdf\x70\xf1\x25\x37\xa9\x24\xe5\x29\xe5\x4c\x40\xd7\x4f\xeb\xa0\x9a\xee\xf5\x50\xe7\x86\x06\x81\xe7\x54\xbd\x27\x8e\xbe\xa3\x9e\x2b\xaa\x2e\x7e\xa1\xf4\x62\xa5\x83\xac\x83\xc4\x1f\xb9\x40\xbf\x73\x71\x78\x39\x18\xbf\x75\x20\xbc\x79\x10\xcd\xf3\x4b\xf1\xe6\xf1\xbf\xe6\x3c\x7e\x78\xd4\x48\x80\xc8\x25\x08\xe9\x0f\xc0\xa8\x3d\x04\x21\x96\x0c\x58\x3c\x21\x08\xe9\xd9\x40\xe4\xff\x8f\xb3\x2f\x8f\xab\xe9\xfb\xde\xdf\xcd\xf3\x2c\xd5\x6d\x9e\xe7\x79\x9e\x35\xa1\x51\x19\x0b\x21\x73\x09\x91\x21\x53\x89\x10\x51\x49\xc6\x90\x48\x03\x49\x45\x94\x94\x8a\x4a\x9a\x64\xca\x10\x89\x84\x50\x19\x0a\xe1\xae\xdf\xeb\xee\xb3\x4f\x2a\x7c\x3e\x9f\xef\xef\x8f\xf7\xeb\x79\x9f\x7b\xaf\xdb\x5d\xeb\xac\xbd\xcf\x39\xfb\x79\xf6\xb3\xa6\x22\x24\x9c\x05\x10\xbc\x18\x21\xc1\x05\x00\x51\x47\x10\x92\x39\x0a\x70\x74\x3a\xa7\x0b\x9f\x19\x40\x86\x1c\x42\xdc\x6c\x00\x85\xc7\x11\xe2\xae\x05\xa8\xec\x41\x88\x77\x25\x40\x73\x03\x42\x7c\xf2\x00\xaf\x9a\x11\xe2\x7e\x01\xd0\x1f\xf3\xa7\xce\x01\xa1\x9f\xa3\x86\xe7\x85\xaa\x97\xbb\x40\xc5\x5f\xab\xf0\x0c\xeb\x3e\xcb\x14\x3b\xf1\xf8\xbe\x6c\xdd\x83\xfd\x36\x73\xef\x7c\xc3\x7e\x61\xa7\x6f\x31\xb1\x8e\x2c\x25\x94\xfa\xd7\x89\x6c\x14\xc6\x88\xc1\x5f\x75\x20\x74\x1d\xd0\x3a\x10\x9a\xf7\xd6\x21\xfa\x89\x51\xa6\x14\x72\x2b\x00\x08\xe4\x20\xc4\xfe\x06\x40\x7d\x05\x42\xa8\x07\xc0\x51\x1a\x21\x76\x59\x00\xff\x06\x84\x38\xd5\x00\x56\xb0\xee\x70\x2e\x03\x6c\xe9\x44\x88\x9d\x09\x70\xe0\x04\x42\xec\x7b\x00\x32\x16\x50\x57\xba\x5c\xe2\x98\x58\xfa\x03\x21\xf6\x2e\x80\x5b\xc4\x19\xf3\x09\xd9\x41\xf1\x2e\x90\xc2\x9f\xf5\xc3\xf4\x30\x74\x5e\xa4\x31\xef\xe7\xde\x8e\xaf\x0f\x15\xc1\x6f\xb1\x1e\xa8\x38\xf5\x13\x9e\xf7\xf2\x2b\x7f\xe0\x3c\xd0\x3a\x98\x63\x0a\x94\xfe\x6f\xd0\x0f\x85\xf8\x66\x6c\x24\xd9\xa5\x7d\x71\x46\xf2\xff\xe3\x7a\x28\xa4\xfb\xa1\x68\x66\xc0\x9f\xfa\x87\x34\x0a\xf1\x8d\xdc\x45\x00\xab\x79\x68\x90\xef\x67\xe1\x82\xeb\x14\x46\x90\x27\x80\x5d\x39\x14\x1e\xd8\x45\xe1\x49\xd6\x15\x3b\x06\x20\x87\xac\x18\x14\xcd\xa1\xf0\x06\xc1\xbb\x64\x27\x41\x3b\x6b\xe6\xde\x01\xd0\x93\xf0\x67\x9d\x5c\x4f\xea\xc2\xcf\xd7\xc5\x71\xbd\xf8\xbe\xf2\x82\xcf\x2f\x79\x16\x66\x13\xbd\xc2\x71\x72\xfe\x46\xfa\xa1\x44\x7d\x87\xff\xa8\x03\xf1\x5d\x33\xfc\xfa\x60\x4a\xfc\x51\x68\x1d\x88\xa8\xe0\x90\x3c\x94\x50\x28\x9b\x41\xa1\x39\xd9\xe9\x33\xee\x2a\x85\x33\xc9\x0a\x69\xe8\x2d\x0a\x23\x69\x27\x40\xd6\xcc\x3d\x1d\x60\x7f\x33\x75\x9c\x4a\xe2\x3d\x43\x3a\x65\x5e\x9c\x4f\xe1\x35\xb2\x93\xa0\x9e\xf5\x77\xb6\x03\x3c\x6c\x44\x83\xfa\x0f\x16\xf6\xe5\x23\x74\xb5\xb7\x0f\x3f\x0f\x14\x46\x31\xf1\xb8\xa0\x75\x40\x23\x75\x30\x71\xdb\x86\xcf\x03\x83\x3a\x10\x92\x87\xa0\x9c\xe1\x75\xe0\xf1\x61\xf8\x78\x30\x26\xdf\xa3\x4c\xfc\x77\x84\x5f\xfc\xce\x03\x1b\x59\xf1\x94\x16\xa2\xd0\x80\xdc\xe1\x3a\x1b\xa1\x61\x2b\x7f\x74\x5d\xac\x62\x3d\xd9\x6e\x05\x88\x62\x1f\x5e\x1f\x49\x8e\x14\x1e\x25\xf1\x65\x12\xe7\xbc\x3c\xb2\x73\xa6\xd8\x04\xfd\xd6\x7f\xb0\xea\x84\x3c\x49\x3c\x99\x87\x86\xe9\x40\x68\xbe\x77\x90\xe7\xfb\x1f\x75\x20\xe4\xf3\x9b\x5d\x53\xa9\x63\x4f\x4e\x0a\xa7\xe2\x75\x5f\x36\xf6\xb9\x58\x6f\xc2\x76\x62\x05\xf6\xc1\xe5\xd9\xb5\x45\x0f\xe3\x8e\x24\x1e\x8c\x5b\xd2\x30\x7f\xce\xd5\x5e\x80\x79\x52\x4e\xf5\x1b\xb8\xbf\x06\xf7\xae\x96\x74\x16\xf2\x2a\x76\x3d\xc5\xc7\x66\xac\xef\x64\x7e\x42\x33\x58\xf8\x85\x9b\xfa\x1b\xef\x49\x0c\xaf\x8f\x53\xd8\x4e\xb8\xe8\x56\xc2\xe1\x3f\x20\xdc\xcc\x9d\x66\x0a\xeb\xad\x59\x23\x88\x35\x1f\x52\xc7\xac\xbb\x44\x16\xc2\xff\xe0\x87\x62\x34\x1b\xfd\x55\x07\x32\x98\x07\xc9\xe1\x79\x24\xfe\x22\x2a\x53\xf0\x7a\x1f\xc7\x8a\x20\x51\x1c\x87\xef\x0a\xcc\xfb\x08\xee\xd8\xb2\x1e\xa3\x4f\x12\xe6\xcb\xf9\xd5\x4e\x61\x9f\x74\x3e\x89\x0b\xd8\xa7\x85\x7f\x5c\x15\xee\xb7\xc0\xf7\xf3\x11\x07\xc6\xf2\x0f\x78\x3d\x9d\x0b\x77\x2c\xfa\xf9\x18\x61\x27\xa6\x8f\xf2\xd4\xdf\x7a\x1b\x49\x61\xc7\x2c\x2a\x3f\x4f\xef\x50\xc7\x8f\x46\x53\x9f\xbb\x9b\x49\x1d\x37\x3e\xa5\xb0\x96\xbc\x5f\xc3\x85\xb0\xd2\xaf\x92\x83\xca\x0b\xfc\x0f\x7a\xa0\x7f\xe9\x3f\x46\xe4\x63\xb3\x7d\x0f\xa9\xaf\x93\xf8\xbc\x6e\x9e\x2c\x86\x7f\xbf\xee\x1c\x29\x8c\x67\xc2\x4c\x59\x28\xbc\x27\xfa\x01\x0b\x45\x56\x26\x61\xff\x08\xe1\xf8\x53\x93\x59\x28\xba\xa1\x70\x00\xbf\xae\x50\xcb\x86\x5f\xb7\x69\xc5\xfb\xca\x05\x3b\x3e\xe2\xfc\x71\xab\xb1\xbe\xfb\xdb\x7e\x36\x7e\x16\x76\x1b\x23\xc5\xa1\x75\xf0\x62\x3b\x15\xf7\x93\x6b\xa8\x62\x68\x1d\xdc\xbe\x8b\x36\xb0\xb0\xae\x80\x8a\xbb\xa6\x0c\xe1\x4e\x78\x95\xd4\xde\x75\x54\xae\xce\x21\x4c\xe7\xe1\xbf\xe9\x1f\x46\xea\x20\x86\xeb\x40\x10\x32\x5b\x35\xf4\xdf\xb3\xc5\xba\xe2\x3e\x4c\x3c\x1f\x7c\xcb\xa8\xf3\x3a\x1b\xc7\x2d\x3c\x7a\x39\xe6\xc1\x24\xbc\xb7\x62\x7f\x70\x86\x53\x32\x27\x57\x07\x80\x84\x64\x3a\x1e\x07\xa3\x4c\x2e\xbd\x64\xa1\xcc\xfe\xba\xf9\x5c\xab\x00\xc4\x73\xda\x70\x7e\xc4\x94\xfa\xf1\x38\xe3\x7e\xc9\xfa\x1b\x7d\x5d\x9c\x78\x86\x79\x17\xc5\x8e\xbd\xd8\x5f\xda\xb2\xe3\xce\x8e\xcf\x0e\xa1\x33\xb8\x0e\xd6\xb3\x61\x85\xda\x3d\x01\xd4\x8a\xeb\x60\x32\x07\xbe\xc2\xd7\xce\xe3\x9a\xc9\xc2\x1b\xcb\xd8\xed\x86\xc6\x7f\xf5\x1d\x3b\x93\xce\x83\xa3\xe1\xf0\x3a\xf8\x43\x07\x43\xf8\x6f\x9a\xff\xa4\x91\xce\x0b\xf9\xdc\x74\x4b\x9c\x63\xce\x66\x67\x8c\x7c\x13\x7c\xf0\x78\x12\x71\x9b\x85\x79\x31\x86\xe4\x8a\x45\x1c\x77\x00\x64\xc7\x6c\x39\xc5\x3d\x11\x80\x71\x67\xdf\x2d\xee\x32\x00\xc6\x8d\xd3\x4b\x78\x22\x00\x18\xe7\x8a\x1e\xf1\x3c\x01\x60\xec\x6b\xd8\xc1\x73\x1c\x60\xf4\xab\x17\x98\x07\x61\x18\xfd\xec\x41\x88\xd9\xc1\x8f\xf5\xd0\x3d\xa5\xc2\xd8\x91\xec\xc5\x27\x46\x36\x00\xf7\x8b\x36\x13\xfe\x37\x38\xfe\x36\x7e\xec\x6c\x76\x0f\xf8\xb0\x93\x53\xbd\x00\x23\x19\x80\x27\xbb\x3a\x85\x51\x09\xc0\x2b\x50\x59\x26\xab\x00\xc0\x9b\x75\x4d\x9b\xd1\x0c\xc0\xab\x59\xba\x97\x6f\x3d\xeb\x73\x57\x94\x79\x3e\xd1\x79\x18\xa9\x0b\xa3\xe3\xd7\xd4\x41\xc3\xf8\x6f\x9a\xff\xa4\x91\xf6\x87\xa0\xf2\x41\xf7\xd5\x12\x4c\x76\x98\x8a\xcf\xe3\x38\x6f\xec\xf3\x2e\xbb\x68\x76\x1a\xe7\x74\x00\x39\xfb\xe5\x92\xdc\xa3\x00\x64\x43\xa2\xea\xb8\xa7\x01\xc8\x1e\xdd\x57\xc8\x73\x13\x40\x36\x34\x63\x22\x6f\x04\x80\x9c\xfe\x95\x68\x7e\x6d\x00\x59\xa5\xa6\x49\xbc\x3b\x00\x18\x95\x9d\x6b\xb9\xeb\x68\x7d\x58\x7f\x1e\x23\x00\x80\x73\xff\x5b\x6e\xc6\x0f\x00\x1e\xbe\xb6\x0c\x59\x09\x00\x9e\xe6\x87\xc1\xb2\x32\x00\xbc\x66\xf7\x1f\x8a\x60\x07\xbb\x06\x73\xd9\x66\x00\xbe\x9c\x9b\x2b\xe4\x7c\x00\xf8\x57\x8e\xd4\x41\x95\xbc\x95\x5d\x0a\xc0\x27\x79\x49\x4b\x56\x14\x80\x77\xe9\x85\x10\xd9\x29\x00\xbc\x55\xf0\xdf\x7d\x40\x7e\xeb\x40\x08\xff\x47\xef\x83\x56\xc0\xf3\x1b\xbb\xb9\xfa\x68\x16\x0a\x4d\x30\xc2\x57\x21\xb1\xf1\xf6\xb8\x9e\xe5\x4e\x78\x5d\xe1\x54\x02\x90\x97\x99\xb1\x8a\x6b\x11\x80\x42\xcb\x52\x76\x5e\x51\x00\x85\xb6\xa8\x63\x7c\xc5\x00\x8a\x63\x92\x9a\x05\xae\x0e\xd1\x0d\xc6\x96\x14\x0a\xf2\x02\xc8\x8f\xba\xb3\x5a\x60\x11\x80\x7c\xcb\xbb\x5f\x02\xa2\x00\x72\x86\x00\xdc\x51\xbd\x86\xac\xb8\x78\x77\xbf\x5c\xa4\xa0\x08\x20\xa8\xf5\xe8\xb6\x42\x31\x80\x50\xd4\x5d\x36\x85\x68\x00\xa1\x85\x0d\x5b\x14\x6e\x01\x08\xb5\xd1\x3a\xa8\xeb\x35\xf2\xed\x00\x82\xa9\x65\xce\xf2\x0b\x00\x04\x5e\x16\x1f\x52\xb4\x02\x10\x56\xb9\x7c\x41\x3e\x1e\x40\xa0\xb7\x40\x5d\x21\x08\x40\xb0\xfa\xbc\xa4\xfc\x5e\x00\x81\x13\x7f\xab\x03\x3a\x7e\x4a\xff\xf2\x9b\xff\xa5\xf9\x3f\x29\x7d\x44\xf5\xc7\xa8\x42\x43\x7c\x52\xc4\x4f\xe8\xe2\x79\x51\xb6\xd0\x2a\x88\x7d\x2b\x80\xe2\xcb\xf1\x9b\xb8\x52\x01\x94\xad\xfc\x9f\xf1\x34\x03\xa8\x2a\x86\x6c\xe5\xef\x03\x50\xee\x8c\xe4\x17\xb4\x04\x50\x82\xa4\x14\xa1\x28\x00\xc5\xec\x4c\x55\xa1\x2b\x2c\x2c\xe3\x16\x6e\x05\x50\x0c\x7c\x20\x2a\xcc\x7a\xfd\xee\x47\x7d\x21\xef\x1f\x09\x8a\x6a\x00\x02\xe6\x5d\x9c\x8a\x9f\xf1\xdc\x39\x53\x45\x11\x40\x5c\xfb\xce\x13\x15\x23\x00\xf1\x4d\xf5\x63\x55\xc4\x00\xc4\x27\x55\x37\xa9\x06\x01\x8c\xe2\xa4\xfd\xa0\xca\x4c\x94\xb5\x00\x44\xab\x8b\x8e\xb1\x3e\x27\x76\xef\x92\x82\x8a\x03\x80\x58\x45\x3e\x43\x39\x10\x40\x34\x30\xb7\x51\x71\x06\x80\x50\x43\x76\x9c\xf2\x2a\x00\x91\x8f\xf0\x1f\x74\x40\x52\x64\xde\xa0\xfc\xef\x07\x79\xe0\x02\xa1\xcd\xb8\xfe\xf9\x46\xad\x43\x43\x7c\x52\x68\xbf\x18\xa5\xf5\x26\x19\x9c\x46\x00\x6a\xd1\x2e\x86\x3c\xbe\x00\x1a\xc6\x93\x6e\xf0\x2b\x00\x68\x1a\x2f\xe6\x12\xda\x01\xa0\x1e\xb3\xe1\x80\x30\x13\x40\x35\x6b\x6f\x90\x28\x1f\x80\xaa\x49\xe6\x55\xb1\xa7\x00\x2a\x21\xd7\xa2\xc5\x37\x01\xa8\xac\x7e\x34\x4f\xfc\x0a\x80\x4a\xc5\xd7\x66\xd1\x43\x9f\xe6\xab\x46\x02\x88\xaf\x6b\x9f\xa1\x5e\x04\x20\xe5\x75\x5f\x52\xfd\x1e\x80\x54\x79\xfd\x12\xf5\xed\x00\x52\x86\x55\x0f\x35\xa2\x01\xa4\xfd\xcb\xc7\x6b\x16\x01\xc8\x5c\x19\xd4\xff\xf0\xab\xb7\x01\x8c\xde\x55\x90\xaf\x5e\x0f\x20\x39\x90\x7b\x59\xbd\x1b\x40\xf2\xc6\xd9\x02\xf5\xd7\x00\x92\xa1\x59\xf3\x54\x6f\x01\x88\x27\x9e\xba\xaf\x96\x09\x20\x81\xbb\xa7\x6a\xb5\x0f\x8f\x7f\x24\xff\x4f\xed\xff\xa6\x79\x60\xce\xb9\x9c\x6e\x38\xfe\x26\x21\x7c\x1f\x20\xf3\x43\x0c\xe7\x4f\xb9\x5c\x69\x2a\x07\x02\xd0\x8a\x37\x54\xe5\x2e\x00\xd0\xfe\x6c\x8f\x78\xbf\x03\xe8\xd9\x4e\x68\x15\xec\x07\xd0\xe5\x9b\xb7\x5a\x24\x16\x40\x47\x7e\xdd\x4e\xf1\x74\x00\xad\xa3\x89\x91\x92\x08\x40\x23\x32\xeb\x8c\x64\x07\x80\xfa\x9e\xca\xe5\xa3\x9f\x02\xa8\xfd\x7c\x36\x75\xb4\x2b\xc8\x69\xa4\x31\xdf\x4a\xd6\xbe\x69\xd4\xf2\x03\x90\x95\x78\x58\xaf\xb3\x1d\x40\xd1\xbb\x7e\xaf\xce\x2c\x00\x85\xfd\xd7\xbf\xeb\x16\x02\x28\xf1\x97\xbe\xd5\xed\x01\x50\xbc\x5a\xf4\x44\xa7\x19\x40\x7e\xcd\xc5\x36\x5d\x55\x00\xf9\x90\xf3\x86\x7a\x2e\x00\x0a\x46\x39\x72\xda\x35\x00\x8c\x39\x99\x1b\x74\xa2\x00\x18\x19\xe9\x49\x3a\xf6\x00\x32\xcf\xd3\x5a\x75\xfc\x00\x64\x12\x8e\xa5\x6b\x1f\x00\x90\xe6\x19\x3a\x0e\x64\x25\xff\x1a\x3f\xe1\x7f\x69\x1e\x5c\x24\x8c\x3c\x0d\x0c\xb0\x3d\x66\xa1\x7a\xb6\x80\x3f\xc2\xba\x10\x46\x0a\x5b\xc4\x6f\xbf\x18\xe3\x99\x16\x0f\x05\xec\x00\x4c\xc6\xb9\xfb\x8b\x98\x03\x18\x6b\xce\xf6\x92\x50\x05\x30\x3c\xbd\xe6\xae\x94\x34\x80\xde\xe1\x84\xf9\x32\x8a\x3f\x42\x74\xb7\x67\x0a\xcb\xbd\xe8\xdb\xa2\x73\xeb\x9a\x99\xe2\xeb\xde\xfd\x3a\x37\x1e\x9e\x51\xe1\xfa\x20\xa5\x9b\xd5\x3f\x5a\x65\xc6\xb3\x08\xfd\x0c\x78\xab\xce\xd3\x68\x65\x78\x14\xaa\x34\xab\xae\xcf\x34\x32\x82\x5a\xcd\xb0\xab\x82\x86\xaf\xe1\x89\x7a\x43\xa1\xb0\xe1\x35\xe8\x52\xf3\xcf\xbb\x6b\x14\x09\x6f\xd4\x2e\xe5\xb4\x1b\x66\xc3\x0f\x95\xdc\xcc\x26\xac\x7b\x69\x3f\xc5\x34\x2c\x07\x50\xe6\x3c\x31\xc3\xe8\x3a\x80\x72\xea\x31\x3b\x83\x5b\x00\x0a\xd3\x8e\x58\xe9\xd7\x02\xc8\xad\x3f\xf0\x52\x5f\x1c\x80\xf1\x15\x06\xfd\x80\x7e\x8f\x7f\xee\x7b\x7f\x8b\x5f\x94\x3c\xad\x2a\x72\xa2\x61\x7a\x10\xda\x1f\xc2\xa2\x4b\xa8\x96\x85\x76\x8f\x94\x8e\x71\xf1\x02\xd8\xbe\x34\xd2\x15\x38\x04\x60\xfd\xcd\xe5\xa4\x78\x10\x80\x95\xc5\xf4\x45\x52\x6e\xdf\x05\x2c\xe2\x57\xf8\xcb\x2f\xef\x75\x31\x57\x8a\x35\x51\x5d\xf4\xf6\xa0\xe9\xc6\xd4\x0a\x2d\xe1\x97\x05\x26\xae\x97\x8f\xeb\x16\xb7\x85\x19\x2f\x6c\xb6\xd1\xef\x7b\x92\x60\x9c\xf5\x9e\x69\xc8\xdf\x3c\xd9\x34\x04\xe6\x1b\x9e\xbc\xbe\xda\xac\x06\xe6\x1b\x7e\xbd\xc2\x66\xee\x04\x6b\x0d\x2a\xf2\xbf\x9b\x17\xc0\x2e\xfd\xd8\x41\xdd\x4b\x97\xf9\x6b\x38\xa7\xd3\x76\xea\x9c\x79\x32\x94\x6a\xaf\x3e\x6e\x63\xb1\x08\xae\x6b\x6b\xa6\xcc\x37\x2b\x86\x97\xea\xaf\x69\xdd\xcb\xfe\x45\xa6\xbf\xe0\x87\xaa\xdb\xde\x13\xa6\x73\x00\x94\xd7\xc7\x37\x98\x86\x02\x28\xd5\x0f\x8d\x9f\xae\x7f\xc2\x7f\x93\xf8\xc5\x78\x28\x54\x26\xbe\xc6\xfa\x64\xbf\xb7\xf9\x74\x0a\xed\x48\xbe\x9c\x17\xb3\xc5\xb0\xd0\xc3\x6d\x34\xee\x2f\x33\x7e\xb7\xf6\x66\xfe\xb9\xbf\xc6\xb8\x82\x9d\xd9\xa8\xd3\x1f\xed\x9c\x33\xfc\x36\x28\x74\xbd\x0e\x1b\xf3\x65\x51\xb7\x46\x7c\x9b\xa6\x43\x61\xd4\x61\x7d\xf3\x96\x76\xbb\xc3\x07\x17\x99\xe4\x37\x17\xdb\xd4\x9f\x5f\x67\xf1\xbc\x61\x94\xb5\x77\xad\x88\x75\x52\xad\xa2\x55\x6b\x47\xa0\xad\xd4\x0d\x6f\xeb\x76\x66\x8d\xcd\xe3\x4b\x4f\x6d\xbd\x99\xaf\xac\x4f\xd3\xbe\x2f\xa7\xd3\xed\x16\x83\xbe\xf9\xce\x34\x7d\x3b\x23\xf0\x32\x5d\x7d\xcc\xc6\x6e\x32\xcc\x32\x31\x3f\xa4\x61\x67\x00\x1b\x8c\xf8\xf7\xf7\xdb\x31\x60\x87\xa1\x54\xe2\x80\xad\x03\x9c\xd5\xed\x4f\xa8\xb2\x5e\x09\xb7\xb4\x7e\xc4\x31\x6c\x4e\x41\x9d\x36\xe7\x8e\x97\x56\x8f\xe0\x9d\xfa\xde\xed\x82\x56\x2f\xa0\x57\x9d\x63\xe8\x38\xa0\xe2\x47\x64\x7f\xbf\x28\xe9\xeb\xa0\x4c\xe2\x36\x22\xfa\x17\x9a\x07\x75\xb9\x48\xa1\xe7\x88\x3e\x09\xd3\x42\x04\x14\x11\x1a\x98\xe0\x7f\x47\x29\x8f\x97\xeb\xfd\xa5\x29\x1e\x66\x85\x92\x99\xcf\x65\x7d\x8d\xc6\x3b\xa9\x6d\xb9\xdf\xef\xb5\x6d\x96\xa9\x41\x47\x83\x9a\xfb\xdb\xd5\xa5\x16\x01\x55\x0e\xe3\x9c\xf7\xbc\xb0\x5b\x75\x4d\xd4\x35\x2b\x23\x65\x4c\x4f\x71\x83\x73\x6a\x79\xa8\x2b\xa3\xb0\xdc\x69\xe9\x93\x24\xb7\x47\x05\x8f\x9d\x0e\xfe\xe0\x74\xeb\xc9\xd4\x77\x89\x67\xba\xbb\xda\x1e\x0f\x75\x69\x65\xee\x1b\x13\x74\x38\xd4\xe5\x12\xf3\x86\x7d\x42\xd2\x59\x57\x2f\xe6\x7b\x5b\xd3\x84\x2a\x97\x99\x20\x63\xa5\xb9\x27\xc5\xf9\x2c\x58\x9a\x7f\xdf\xa5\xe8\x14\x02\x0b\x4d\x16\x6c\xbf\xe4\x1c\x0e\x8b\x4c\x42\xb6\xbe\x1c\x13\x0f\x07\x0c\x16\x6d\xc9\x1d\x13\x08\xa9\xfa\xa9\x51\x9f\x1d\x7e\x40\x99\x4e\xda\x26\x2d\xfb\x1a\x78\xa8\xc9\xfc\x33\x7e\x3e\xc2\xeb\xd1\x3a\x08\x5a\x07\x60\x37\x85\x42\x8f\x99\x68\x98\x1e\x60\x26\xe9\x0f\x30\x8f\xea\xff\x2d\xbb\x68\x33\xda\x89\x50\x57\x71\xc8\x6e\x86\x24\xe7\xe5\xa7\xb3\x17\xf2\xea\xfb\x8d\x3a\xdc\x2c\x3e\xe7\xf5\x98\x4b\x6a\xe8\xc6\x9b\xe9\x07\x26\xeb\x9b\xa9\x5e\x79\x3e\x35\x68\x89\x8e\xfd\x93\x82\x35\x93\x74\x62\x04\x5c\x8f\x9c\x55\xf3\x9d\x74\xcc\xc5\xfd\x6e\x7a\x97\x0f\xdf\x65\x25\xef\xdd\x27\x82\xbc\xfc\xef\x38\x4e\xb8\x75\x4c\xc8\x33\xbf\x77\xa3\xaf\xdb\xfe\x79\x5e\x8f\x7e\x5d\xf4\x1e\x1f\x6f\xee\xd5\xce\x94\x1c\x1f\x1b\x7b\xde\x4b\x9a\xb9\xd2\x65\x5d\xcc\x21\xaf\x2b\xcc\xdd\xce\x1c\xd1\x51\x5e\x92\xcc\x32\x87\x6f\x51\x7b\x3c\x1a\x98\xbd\xb6\x79\x1b\x92\x3d\x47\x83\x80\xf5\xdd\xf5\x5b\xdc\xcf\x80\xb1\xa5\x50\x44\xdf\xf8\x6e\xf0\x30\x57\x5c\xa3\x31\x5e\x15\x42\x4c\xb6\xac\x7a\x3b\xf6\x33\xc4\x18\x39\xaf\xcc\x1d\xeb\x04\x47\x0c\x9c\x86\xcc\x03\x64\xbc\xcb\x3d\x1b\x1e\x3f\xad\x03\xf0\x1c\x43\x61\xc0\xf5\xa1\x71\xff\x12\x5e\x8a\xf9\xf0\x8f\x4d\xe1\x78\x15\xa4\x33\x79\x2d\x7e\xbd\x35\x7c\x43\xa3\x44\x21\x42\x4d\x9e\x6b\x67\xa8\xef\x14\x9b\x5e\xb9\x67\xe5\x1e\x6b\x71\xe5\x3d\x85\xd5\xa1\xb3\xbc\x1e\x98\xf8\x66\xed\x5a\xc0\x33\xe7\x86\xf3\xfa\xe3\x13\x83\xa4\xd6\xad\xf4\x94\xd8\xdf\x1f\xf8\x63\xdf\x74\xdf\xf6\x04\xd3\x19\xf6\xe7\x4a\x26\x7f\xdc\x59\x1c\xe0\x54\xab\x38\x2d\x76\xdb\x55\x7f\xab\x4e\x27\xff\xc8\xe8\x32\x7f\xfb\x5f\xa2\x53\x5a\xd7\x7f\xf6\x57\xfb\x95\x34\xa1\x67\x6d\xe9\xb4\xc8\x5f\x6d\x5e\x8c\x55\x6c\x53\xb7\x32\xcd\xc7\x85\xad\x9c\x3c\x65\x21\x33\xd4\xd5\x73\x85\xe2\xe4\x67\xcc\x58\xe7\xb8\x30\x8d\x89\xeb\x98\x8d\x0e\x12\xcb\x02\xfd\xce\x32\x3f\xda\xe6\x2c\xd1\xf5\x0b\x84\x51\xd6\x3a\xc1\xd9\xbe\x63\xc1\xcc\xa2\x20\xf8\x8a\x4f\x02\x4c\x34\x5b\xbc\x50\xcd\x67\x33\x84\x98\x38\xfd\xa9\x03\x31\xb4\x1a\x1e\x3f\xad\x03\x08\x24\x3a\x09\x4a\x07\xf3\x3d\x6e\x15\xe6\x7d\x7a\x94\x28\x7f\xfc\x17\xed\x5b\x28\xff\x7b\x97\xed\x98\xa7\x69\xd8\xb9\x73\x13\xef\x6c\x84\x2a\x6e\xc7\xba\xc9\x7f\x14\x54\xbf\x18\xbb\xf5\x8a\x71\x85\xfc\xe6\x4c\x93\xc8\x4d\x6e\x9b\x0d\x16\x1e\x1e\x15\x21\x18\x50\xef\x68\xba\x4b\x2c\x2c\x63\x39\x9b\xcf\x85\xa8\x9f\x4b\xd7\xed\x94\x9c\x32\x69\xed\x97\x90\x3b\xe9\xe2\x01\xdf\x57\x1c\x5d\x7c\xb4\x9c\x67\xe6\xa3\xa5\xbc\x8b\x8c\x9f\x2e\x0e\x64\x86\x04\x2e\xfc\xf6\x33\x78\xe6\xc0\x22\xbe\x05\x81\xbf\xd8\xa7\x46\x2c\xe8\x9f\x5b\xf4\x6b\xb3\x6f\x36\xad\xf7\x98\xcb\x3b\xc7\x87\x29\xee\xce\x3e\xe7\xd7\xac\xa3\x4c\x3f\xb7\xe5\x7f\xe8\x3d\xf4\xa7\x4f\x64\x3e\xb4\x7b\x39\x93\x37\x40\x03\x38\xac\xaf\x4e\x3f\x37\xed\x27\xa8\x59\xba\x4c\x2f\x9a\xea\x0d\x8e\xe6\xea\x00\xa2\x24\x6e\x9d\x58\x0a\xed\xfd\x86\xc7\x4f\xf3\xe0\xcb\xf1\x7e\xee\x01\x3b\xaa\x3f\xca\xfb\xbc\xad\xf8\xb8\x3d\x68\x27\x9e\x17\x1e\xcc\x4d\xc0\xab\x3b\xb7\x0a\xf6\x61\xfe\xea\x9a\xed\x01\xcc\x73\x15\xd6\x1f\x6a\x95\x4e\xe1\x10\xcb\x9c\x94\xec\xaf\xa3\x24\x55\x7e\x58\x23\xe1\x8e\xc3\x36\xad\xce\x5d\x02\xbb\x56\x4e\x52\xb0\x3e\xb1\x5e\x2b\x26\x70\xf1\x6a\x77\xf3\x65\x9a\x9b\xcf\x6c\xf1\xf2\x7b\xbf\xb0\x35\x8a\xe3\xf8\xd5\x29\xe3\x83\xdc\x37\x6d\x2e\x59\x3a\x4d\x28\xd0\x79\x63\xd6\xa3\x84\x69\x63\x67\xcc\xdb\x98\xf1\x43\x61\xca\x8b\xe9\x8b\x23\xac\x7e\x25\xf9\x5a\x05\x58\xad\x0a\xfe\xf5\xd5\x53\xd4\xff\xfc\x0a\x69\xa6\xc5\xb8\x23\xfe\x8e\xcb\x13\x99\x53\xdd\x4a\xa6\x49\x85\x0a\x30\x8f\x3b\x4d\x99\xa6\x1f\x22\xcb\xcc\x1f\x23\x33\x35\x70\xb1\x3d\xf3\x81\xfd\x81\x29\x71\x0b\x7e\x30\x7f\xda\x74\x4c\x99\x3c\x37\x02\x14\xac\xbc\x27\x97\x06\xf9\x80\xb1\x45\xf5\x24\xa7\x39\xaa\x30\xd1\x4c\x15\x40\xb9\x66\xf8\xfc\x37\xe1\xcb\xf0\xf8\x29\x1e\xfc\x7b\x65\x34\x5e\x05\x7b\x77\x86\x8a\xbb\x0d\x12\xf1\xaa\xdf\xfd\xfc\x03\x78\x35\xf8\x96\xe6\x91\x8f\x2c\x2c\xfb\x90\x8a\x79\xb1\x82\xb2\x93\x78\xf5\x35\x4b\x21\xc3\x42\x58\x04\xa1\x23\x07\x4e\x1d\x51\xd1\x16\x3d\xb4\xdb\xf3\x04\x9f\xa5\x86\xf2\xe3\x8d\x91\x29\xdd\x5e\x29\x26\xe7\x96\x24\x1e\x14\x9a\x1b\xed\x2c\x1f\xa4\x98\x5c\x12\xa9\x36\xfe\x62\x40\xdd\xbe\x25\x47\xde\x7a\x56\x4f\x36\x4c\xd2\x2c\x8a\xf4\x8e\xf1\x0d\xdd\xeb\xf7\x40\xd1\xfb\x9a\x4f\xca\x5e\x9d\xaf\x5f\xbc\xec\xbd\xdf\xc4\x75\x30\x6d\xc6\x89\xfb\x84\x6d\x97\x64\x2e\x71\x5d\xe0\x5d\xbb\xa5\x87\x99\xea\x34\xd1\xdb\x35\xf2\x11\xf3\x9e\x03\x9b\x8f\xe4\x86\x06\x66\xab\xfd\x66\xef\xb4\x08\x4b\xe0\xb2\x39\xe7\x7d\x69\xb5\x1a\xc8\x59\x73\x7a\xf5\xaf\x3c\x06\xf6\x16\x51\x9e\xb5\x61\xa6\x10\x64\x1a\xe7\x59\xb4\xcc\x08\x96\x9b\xcc\xf5\xa8\x5b\x62\x0b\x7b\x0c\x33\x00\xcc\xdb\x86\x8f\xff\xe1\xf1\x0f\x70\x6e\xcd\xc2\xe7\x7f\xea\x6e\xec\xf7\xf0\x7c\xea\x7e\xbc\x9a\xf8\x80\x71\x14\xf3\x1c\xb7\xbc\xd2\x0c\x70\xfc\xb7\x33\xa8\x7d\xdf\xc7\xcf\x60\x9d\x65\xa6\x72\x2e\xe6\xbf\x0f\xcf\x2a\x70\x46\x72\x08\xc5\x7f\x2d\xe0\x92\x15\xe7\xfd\x11\x75\xe5\xbc\xb7\x61\x09\xc3\x76\x79\x71\x8e\xac\xdb\x25\x1d\x97\x59\x9b\xb2\xa6\xcf\x3c\x6c\x9d\x3b\x65\x53\xa6\xe4\xba\x7e\x87\x05\x3e\x31\xa7\x3f\x1d\xd4\x75\x8a\x74\x97\x3b\xcd\x76\xf1\xb4\x0b\xc3\x6d\x67\xba\xc4\x9d\x7e\x97\xf9\x2e\xb5\xe9\x92\x7d\xe3\x9d\x2a\x5c\xfa\x8e\xcb\x33\xcb\x1c\x96\xb8\xb2\x1d\x4a\x61\xbe\xb6\xed\x71\x9d\xb4\x6f\x14\xf0\x5a\xbf\x76\x19\x48\x18\x0f\x3a\x96\xbb\x5d\xa5\x77\x25\xc0\x58\xf3\x04\x97\xb9\x3b\x1e\xc3\x7c\x53\x07\x17\xb9\x98\x04\xd8\x60\x3c\xc7\x85\x2b\x5a\x1d\xe2\x0d\xaf\xb9\xae\xdb\x64\x0d\x71\x46\x1c\xce\x55\x1b\xac\xe0\x9c\xde\x63\x67\xf9\xb5\xfb\xa1\x4a\x67\x13\x80\x87\x12\xfa\x8b\x0e\xe4\x87\xd1\x36\x5c\x1f\x1f\x52\x12\x42\xd1\x50\xfd\xd3\xd6\xe3\xbf\x70\xfc\xc7\x28\x5e\xf4\x9a\xfa\x19\xcc\x87\x5e\x34\xc9\xc3\xbc\x56\xf6\x53\x4a\x17\x72\xb4\x8a\x5a\x15\x8d\x3f\x59\x8a\x79\xa0\xad\xdb\xcb\xa5\x25\x8e\x22\x14\x1e\x5a\x9a\xa5\x59\x24\x6e\x38\x6f\x77\x49\x84\x43\xae\x72\xe2\xa4\xa8\xa2\xe6\xa9\x03\x86\xd3\x3c\x55\x8a\x44\x57\xfd\x32\x3d\xed\x6a\x7e\x79\xfe\xbe\x59\x16\x5b\x1d\x39\x2f\x55\xe4\xcf\xb6\xec\xb6\x3d\x77\x89\xf7\xb6\x9e\x95\xba\xcd\xd8\xc2\xfc\x8f\x25\x16\xfb\x6d\xb6\x9c\x4f\x01\x2f\xd3\xcb\x36\x1b\xb3\x82\x21\xd4\x78\xb5\x4d\xe1\xa9\x8b\xb0\xd1\x68\x9a\xad\x7d\xaa\x1e\x6c\x33\x2c\xb6\xdd\x7c\x44\x0b\xf6\x1b\xac\xb4\xf1\xdf\x7f\x0e\x8a\x75\x6d\x6d\x45\x92\x5e\x40\xb1\xee\x14\x9b\xe5\x09\x9a\xd0\xa4\x6d\x65\x33\x63\xd7\x71\x68\xd3\x4c\xb3\x86\x58\x4d\xe8\xd2\x98\x69\x7d\x26\x26\x1d\xbe\xa9\xdd\x01\x98\x19\x30\xf4\xfc\x33\x9f\x6d\xc7\xfa\x8f\x9e\xb1\xfb\xf0\xfc\xdf\xee\x7b\x14\xfb\x38\x3c\x48\xc4\x2c\x01\xaa\xd7\x3b\x8b\x79\xfd\xf2\x12\x2a\xee\x4b\xed\x97\xf0\xfc\x78\x36\xfa\x0a\xd6\x87\x9d\x08\xbc\x86\x75\x44\x49\xb7\x2b\x71\x7f\x98\x98\x51\xd5\xf8\x7a\x12\x6e\x5b\x17\xc4\x29\x80\xd0\xa2\xd4\x3a\x57\x45\x09\x7e\x11\x7f\xe9\xda\xfb\x96\xa2\xd2\x5d\xee\x93\x6f\xca\xf8\xc6\xab\xd5\x39\x6d\xa9\xf9\xb5\x7c\xa5\x56\x8b\x4d\x7a\x4d\x63\xfc\x0e\x5d\x21\x0b\x8e\x9a\x09\xe7\xa6\xe9\x1d\x31\x79\x56\xdd\xd7\x20\xa2\x97\x6e\x7c\xa0\x3a\xb3\x7b\xb5\xce\x23\xe3\xcb\x15\x3a\x70\x5b\x4b\xc3\xf8\x52\xd1\x4b\x78\xa6\x71\xdf\x84\xbd\x60\x14\x74\x6a\x88\x9b\x34\xe7\x7c\x85\x57\x1a\x1e\xc6\x8f\xb2\x57\xc3\x77\x35\x65\x93\xcd\xe9\x72\xf0\x43\xf5\xbd\xa9\xc0\x89\x51\xf0\x4b\xb5\xda\xe4\x55\x8a\x3f\x80\xca\x3a\x53\xc7\x43\x1e\x00\x2a\x16\xa6\x31\xc9\xba\x00\xca\xf1\x26\x13\x12\x4d\x00\x14\xe5\xe9\xf9\x0f\x20\xe6\xf1\xd0\xf8\x3b\x3c\x8e\x63\x5e\xe3\xe1\x9c\x4c\xcc\xe7\xd4\x7f\xcf\xc5\x7a\xa7\x4a\x23\x4a\x0f\x73\x39\xa9\x18\xeb\x01\xce\x5d\x2a\xc7\xf7\x9d\xa7\xde\x51\xac\xc9\xc1\x77\x37\x71\xfc\x71\x63\x1a\x30\xdb\xb4\xa1\xb7\x59\x95\x85\x8b\x4f\x50\xfd\x54\x02\xc3\x1f\x5e\x93\x5a\x83\x90\xd7\xd9\x96\x53\x06\xaa\xa2\x33\x1c\x4d\x5a\x04\xdd\x23\x19\x17\x2c\x73\x5a\xfc\x82\x0d\xe4\x1b\x8c\xdf\xb6\x44\xed\x14\x53\xd2\xd2\x9f\xd6\xe2\x94\x75\x4d\xe9\xb3\xce\xc1\x16\xb1\x5a\x01\xa5\x26\xed\x9d\x2d\xfc\xef\xcc\x15\x7e\x69\x6f\x6c\xee\x07\x90\x53\xd2\x3e\x5b\xbb\x19\x40\x4e\x5e\x7b\x67\xa5\x1a\x80\x6c\x84\xb6\xdb\xd5\x01\x00\xc6\x05\x1d\xed\x4b\x77\x00\x64\x03\x74\x0e\xe7\x6f\x07\x90\x9d\xaa\xad\x78\x4e\x1d\x40\xfa\x8d\xce\x9a\x6c\x0d\x00\x86\xb4\xae\xc3\xa9\x02\x00\x86\x87\xae\xc2\x89\x0e\x00\x99\x22\xdd\xed\x47\xdd\x00\x64\xd6\x01\xc4\x60\xbf\x86\x4f\xc9\xc9\x32\xf8\xfa\x2f\x9b\x8a\x9f\x23\x1e\xde\xcd\xc6\xf7\x09\x8d\x1f\xf2\xb1\x7e\xac\x4a\xac\x18\xf7\xdb\xbb\x52\x52\x86\x79\xce\xbc\xda\x1b\x9b\x58\x98\xc1\x7f\x13\xd7\x45\x8a\x52\x3d\xbe\xef\x4a\xb8\xda\x8c\x77\xa3\x6e\x55\x79\x80\xfb\x87\x84\xfb\x50\x3a\x81\x39\x45\xcf\xb1\xae\xc8\xeb\x50\xc7\x55\x2e\x77\x84\x9c\x56\xbe\x3a\xae\xba\x83\x77\x96\xb9\xdc\x2b\x5f\x27\x3b\xb1\x5d\x06\xce\x9d\x99\x41\x2b\x25\x72\xb5\x5e\xbf\x1e\xb5\x65\x87\xa4\x9a\xba\xc0\xeb\x6d\xa7\x26\x48\x1e\x54\xc9\x7a\x7d\xff\x46\x96\x24\xa7\x72\xe7\x1b\xab\x37\xf2\x12\xda\x2a\xdc\x2f\x17\x03\x88\x5e\x55\x7a\xfe\xb0\x06\x40\xa4\x48\x39\xb0\xd9\x1e\x40\x74\x9f\xb2\x44\x9d\x3c\x80\xa8\xbd\x72\x4b\xd5\x26\x00\x31\x23\xe5\x17\xd7\x6a\x00\xc4\x18\x2a\xb9\xc5\x7d\x00\x62\xed\x2a\xb5\x85\x1e\x00\x62\x37\x54\x3b\xf3\x26\x02\x88\xd7\xaa\x5c\xc8\x39\xc5\x7a\x5f\x35\x2b\xeb\x01\x80\xd8\xdb\xbe\x48\xca\x0f\xeb\x8d\xf2\x09\x3c\xbf\x3f\x39\x79\x06\x8f\x8f\xe6\xa6\x42\xcc\xa2\xd5\x1c\x2f\xc5\x79\x28\x2d\xbf\x61\x86\xaf\x03\xde\x35\xf8\x3e\x32\x5b\xbf\x01\xf3\xc3\xa9\x87\xef\x60\x5d\xdd\xfe\x5c\x8a\x27\x8d\x9d\xf5\xe4\x24\xae\x83\xab\x6d\xb8\x1f\x55\x68\xfe\x2b\xcc\x36\x05\xc4\xbd\xc5\xdf\xe3\x32\xaa\x17\x5f\x67\x2c\x42\xbe\x5c\x93\x7a\x8c\x90\xf6\x9b\xbe\x2b\xe6\x39\xbc\x6d\x6a\x63\xbf\xce\xf6\x97\xe6\xb7\x56\x92\xfa\xd6\xbf\xde\x98\xff\xba\xbc\xd6\x80\xe5\xd1\x79\xfc\x4b\x65\xe3\x06\x9e\x94\x85\xf0\x2d\x92\x15\xfd\xe9\xf8\x72\x37\xcf\x1c\x59\x85\xaf\x13\x01\xb8\x2c\x65\xa7\xbf\xdd\x0d\xc0\xdd\x2e\xab\xfb\xbc\x19\x80\x47\x57\x56\xf8\xb1\x12\x00\x8f\xbf\xec\xd8\xbb\x7b\x01\x78\x40\xd6\xaf\x61\x0b\x00\xaf\x3d\xe3\xc3\xcd\x79\x00\x3c\x39\x72\x3a\x95\xb1\x00\x7c\x67\x65\x6b\x4a\x4d\x00\xf8\x46\xc9\x9b\x17\xdd\x05\xe0\x07\x11\xbb\x4b\x78\xfd\xfa\x6d\xed\x09\x3c\xaf\xb5\x1e\x39\x4b\xe9\x20\x17\x17\x9e\x66\xe1\xcd\x09\x54\xfc\x65\x5d\x37\x9e\xe0\xfb\x80\x31\xb7\xb0\xae\xe3\x6c\x76\x33\x1e\x0f\xb4\x0e\xe8\xb0\x18\x15\x77\xc2\x9e\x76\x7c\xbf\x1d\xe3\xd2\x89\xf5\x02\x6b\xe6\x75\xe1\xeb\xc5\xc2\xc6\x1e\x5c\x1f\x93\xcf\xf5\x61\xbe\xd8\x71\xcc\x0f\xec\x2f\xa3\x96\x02\xc0\xd1\x8d\x90\x22\x2f\x80\xb6\x19\x07\xbf\xdc\x1b\x00\xef\x37\x9c\xee\x8c\xd9\x00\xcb\xe3\x39\x3a\x64\x56\x02\x24\x1e\x66\x2f\x97\x9e\x08\x90\x7b\x18\x21\x89\x43\x00\xf5\xa3\x10\x12\xef\x04\x78\xff\x0c\x21\x9e\x60\xe2\xef\x10\xfc\x05\xfb\x5c\xb0\xc7\xbc\xc7\x7a\x0f\xf6\x09\x1d\xb8\x33\x03\xfb\xda\x56\xbc\x8e\xcd\x61\xfc\x00\xef\xc5\x63\x8f\x6f\xa6\x18\xb8\x19\xf5\xd3\x59\xc8\x96\x51\x83\x9d\x19\xd8\x56\x55\xe2\xfd\xad\xcf\x27\x9c\xc3\xd7\xcd\x07\x8f\xa9\xf1\x5e\xb7\xa6\x02\xcf\x73\x15\x57\x6f\xe2\xf9\xf3\xf2\xec\x46\xec\xa3\x93\x5b\x70\x0f\xf7\xc7\xca\xf0\x7c\x8c\xdf\x3f\xa6\xd0\x86\xeb\x68\x9f\xcf\x2b\x7c\x3f\xb1\x73\x75\x17\xbe\x7e\x6e\xba\xd3\x83\xeb\x2a\xac\xe1\x0b\xf6\x93\x08\x6a\xfb\x8e\xaf\x3b\xbe\xa4\x2f\x06\xcd\xf7\xca\x91\xfe\x12\x12\x32\x00\x72\xcf\x11\x12\x5b\x00\x30\xc6\x0c\x21\xd1\x33\x00\x73\xbc\x10\x12\x62\x00\x6c\x5a\x8a\x90\xc0\x6d\x80\x23\x35\x08\xf1\x9f\x03\x28\x9c\x8d\x10\x6f\x10\x40\x93\x1f\x42\xdc\xd5\x00\xef\x8e\x0d\xf1\x75\x40\x4c\xc2\x40\xd3\x7c\xfe\x3b\xaa\x33\xc7\xf6\x0e\x29\xea\xf8\x29\x61\x18\xe9\x0e\x0f\x77\x9a\x29\x6c\xc0\x3a\x88\x96\xac\x2b\xb8\xbe\x1b\x5c\x2a\x71\x1e\x2a\xdb\x6b\x71\x1d\x14\x3f\x27\x3a\x28\xdd\x87\xf8\x7a\x99\xdd\xd4\x86\xe7\x81\xd4\xe8\x17\x78\xfe\x3f\x18\xf7\x16\x3f\x77\xc7\x1b\x75\xe3\xba\xd8\x36\xee\x2b\xd6\x85\xad\xeb\xfd\x81\xeb\x63\x24\xff\x3f\xbe\x0e\x86\xed\x77\x97\xd6\xa5\x90\xa7\x1e\x40\xec\x08\x42\x9c\x37\x01\x4c\x5a\x10\xe2\xea\x07\xf0\xeb\x41\x88\x43\x1b\x60\x29\xeb\x0e\x7e\x0b\x40\x6c\x04\xeb\x7c\x02\x9c\x24\x8e\x90\x45\xe5\x08\xb1\x1b\x03\x34\x5d\xa4\x78\xdb\x8e\xb5\xd4\xeb\xdf\x97\xa0\x21\x7c\xfe\x00\x61\x58\x3f\x3e\xa5\xb0\x6b\xf3\xf0\xbc\x3c\x23\xca\x85\x87\xd8\x89\xe0\x36\xd7\x75\x1c\x57\x55\x47\x1d\xf6\x7b\x28\x6d\xba\x8f\xe7\x85\x0b\xe1\x8f\xf1\x75\xe0\xcc\xbd\xe7\x58\x17\x75\xaa\xfc\x8d\x2f\x9e\x0f\xdf\x77\xe3\xf9\x30\x49\xfa\x33\x66\x55\x77\x29\x0d\xe0\xbe\x49\x51\x4c\xc0\x7a\xa0\x15\xa4\xcf\xc3\xfc\x34\x0a\x27\x93\x7d\xff\x34\xef\xad\xb7\x88\x42\x49\x09\xf2\x84\x5b\x08\xc0\xc7\x7a\x72\xb9\x00\xa0\xb5\x8c\x8a\x63\x1c\xe1\xbd\xe7\x12\x9e\x77\x63\x0d\xa5\x07\xd8\x4f\xde\xa7\xf9\xec\x32\xd2\xe9\xab\x9e\xf0\xe5\x4f\xe6\x11\x5e\x7f\xe5\xdf\x74\x0e\x74\x5e\x3e\x69\x0e\xcb\x0b\xea\x28\x66\xe1\xcd\xcf\x8d\xf8\x7e\xf9\x5a\xfa\x03\xbc\xef\x88\xd6\x41\xe5\x7e\x78\x85\xf5\xb0\x19\xfb\xde\xe1\xfb\xc9\xe3\x8f\x28\x7f\x9c\xfd\x2d\x5f\xb1\x3e\x2a\xbe\x9d\xf2\x87\xa1\xfd\x50\x68\xfe\x3b\xe4\xd9\xf0\x3a\xf0\xb9\x4b\xa1\x0d\xe9\xb3\x41\xfb\x60\x0c\xd5\x3f\x70\xdb\x53\xa8\xca\xba\x73\xf1\x07\x70\x3c\x43\x1d\x07\x10\xfe\x7f\x05\x51\x3c\xef\x20\xfc\x35\xcd\x67\x9f\x63\xdd\xd9\x6e\x03\xb8\x42\xfc\x0f\x6a\x88\x6e\xe2\x3e\xe1\xcf\x69\x5e\x9f\x72\x32\x1a\x99\x97\xef\xa3\x49\xbd\x60\xc5\x56\x79\x23\x35\xdf\x15\x25\x3c\xc7\xe7\x3f\x6f\x6e\x27\x3e\xcf\xd9\xab\xa9\x7a\x3f\x69\xf4\x0d\x3f\x77\x1d\xf9\x40\xe9\x22\x68\x3f\x94\x91\x7d\x71\x68\x5f\x1c\x5a\x07\x42\xeb\x81\xc6\x92\x7e\x21\x74\x3f\x14\x5a\xff\x30\x94\xf7\xe7\x20\x8e\x66\x4a\xe4\x18\x3b\xc0\x4e\x07\x98\xe4\x4b\x1d\x07\x2b\x0c\xa9\x8b\x21\x9d\x5f\x07\xf5\x0e\xfd\x64\xbc\x10\xc7\x5c\x4a\xd9\x3b\x42\xff\x81\x00\xba\x0b\xfe\x96\x0f\x0a\xaf\x7c\x78\x8e\x7d\x81\x0a\xfa\xbb\x70\x15\xe6\x3c\xfa\x84\xeb\x3c\x7d\xee\xb7\x52\x34\x54\x07\x33\xc2\x0f\x85\xf6\x05\x5a\x99\x00\x7f\xd5\x81\xd0\x7a\x20\xba\x3f\x10\x3d\x2f\x28\x3d\xfe\x4b\x1e\x48\x27\x58\x79\xe2\x74\x4a\xeb\x40\x3c\xc8\x93\xff\xac\xd7\xc3\xeb\x62\x0b\xd9\x01\x40\xeb\x1d\xe8\x7c\x64\x12\xdd\xc8\x45\x92\xd7\x32\xf2\x7e\x3d\x39\x7e\xe8\x31\xbc\x4e\xfa\xf2\x7f\xe7\xa1\x30\xf4\x1d\xd6\x41\x9f\xb7\xfe\x8c\xef\x1b\x07\x75\x30\x64\x34\xd1\x3a\x10\x5a\x0f\x17\x4d\x8e\xd7\x5c\x86\xe1\x3a\x90\xe0\xe1\x75\x30\xbe\x9c\x8c\x07\x52\xff\xb4\x3e\x4c\x91\xcc\x8f\x82\xb9\xf0\x87\x0e\x84\x41\xc6\x07\xad\x03\x71\x53\xa6\xd0\xff\xe6\xf0\xba\xa0\xf5\x41\x3b\x32\x86\xe7\x83\x1e\x2f\xe9\x24\xaf\xe7\xc9\xca\x6a\x31\x19\x17\x37\x1e\x0f\xaf\x93\x56\xf2\xf9\x77\x3e\xe8\x7f\xd2\x3f\xfc\x13\x09\x1f\x48\xeb\x05\xe8\xef\xf1\x26\xef\x4f\x25\xbc\xc8\xbc\x97\x14\xae\x20\xda\x8b\xcd\x88\xc2\x84\x6e\x0a\xd3\x44\x28\xcc\xbb\x42\x61\x25\xf9\x77\xf7\x89\xa6\x83\x75\x07\x06\x84\x8b\xfd\x59\x4b\x21\xad\x7f\x78\x13\x4a\xe1\x8b\x68\x0a\x9f\x92\xbf\x41\xf3\xfe\x77\xc7\x51\xd8\x40\xb8\xa8\x91\xfa\x8f\x8a\xdb\xbf\xbf\xfb\xbf\xe9\x60\xfe\xe8\x87\xd2\x3d\xfc\x7d\x5a\x2f\x40\x7f\x8f\x87\x0a\xc9\x03\x59\xff\x0d\x8a\xf8\x7b\x1e\x12\x89\xef\x46\x1a\x1f\x85\xf9\x44\xd3\x71\xfd\xe5\xf0\x58\xde\xb9\xfc\xfe\xad\xdf\x39\x28\xfc\xf0\x94\xd2\x3b\xbc\x22\xf1\xb4\x11\x2d\xce\x93\xb1\x14\xde\x5b\x4d\x61\x13\xd1\x47\xd4\x91\x73\x7e\x73\x16\xc9\x75\x1b\x85\xd7\xbc\xfe\x92\x07\xc9\xff\x12\xff\x7f\xd6\x81\x0c\xd6\x13\xad\x33\x9a\x44\x74\x21\x41\xe4\xfd\xe5\x49\x23\xea\x41\x60\x78\x1e\x0a\x36\x93\x73\x25\x46\x21\x6b\x3c\xb3\xb0\x3b\xe4\xf7\x6f\xed\xd3\xa7\xb0\x8b\x70\xd1\x2f\x88\x16\xa3\x55\xf6\x1f\x75\xb0\x76\x78\x1d\xdc\x20\x1c\x7d\x45\x30\x85\x25\xfb\x7e\x7f\xf7\x48\x1d\x0c\x7d\xbe\xff\xd0\x7f\x8c\xc0\x41\x5f\x14\xd2\x47\x89\xd6\x0f\xd0\xe3\xc3\x97\xd4\xf9\x6c\x4a\x2f\x65\xb6\x94\xfc\xbd\x48\x8a\x3f\xde\x92\x40\xfa\x13\xa5\x91\xbc\x14\x50\xdf\xcb\x55\x45\xea\xf2\xf1\x07\x32\x06\x86\x8c\x0b\x7a\x3c\xbc\x9e\x43\xea\x80\xd4\xca\x23\x92\xbb\x7f\xe9\x80\x46\x8e\x83\x32\xf2\x5b\x8b\x43\x7f\x7f\xf7\x7f\xf3\x01\xa1\xf9\x5f\x5a\xef\xf0\x0f\x1d\xc8\xef\xba\x20\xf5\xe5\x43\x8d\x8b\x09\x33\xfd\x58\xc8\x2e\xb9\x04\xd7\x24\xbb\xd1\xc6\x57\x43\xf3\xc0\x16\x9a\x66\x87\xb1\xf3\xe2\x62\x8c\x7d\x37\xd9\xc8\x58\x27\x3a\x9b\xfe\x76\x84\x7e\x92\xdc\x74\x93\xf3\xdf\xe1\x47\xc6\x41\x35\xc2\xf7\x41\xf7\xa3\x29\xbc\x4d\xe2\xbe\xf5\x80\xd2\x3d\xd5\x20\x36\x7c\xbf\x54\xf9\x88\x8c\x83\x31\x14\x5e\x69\xa5\xf0\xd2\x9d\xdf\x79\xf8\x97\xfe\x61\xa4\x0f\xc8\x48\x1d\x08\xfd\x3a\xfd\x79\xaa\xaf\x16\x9a\x6e\x87\x35\x6c\x6c\xdc\xee\xf8\x9c\xb0\xb7\x4d\xc7\xfc\x16\x7b\x51\x30\xa5\x93\xbb\xb7\x09\x8f\x59\xce\x77\xf1\x85\x2c\xe4\xca\x39\x89\xc7\x3c\xd7\xc9\x42\xfc\x79\xae\xdd\x75\x9e\xf8\x7d\x97\xf6\x40\x7c\xac\xf0\x8b\x13\xa1\x6f\x73\xd9\xb0\x53\xdb\x9b\x0e\x36\xbc\x27\xbd\xad\x11\xe1\x2b\xd1\x83\x3e\xb6\x95\x2c\x6c\xae\x45\x1a\x2c\xac\x77\xe0\xc4\x57\x76\x5a\x07\x75\xfd\x28\x1b\xd6\x01\x95\xfe\xe4\xc0\x7e\x39\xc5\xce\xa8\x08\xc7\xff\x80\xd4\x60\x0a\x9b\xea\x60\x1e\xfe\x9b\x0f\xc8\x08\xfd\x07\x8d\xb4\x3e\x82\xce\x07\xe9\xa7\xc4\x69\x8d\xfb\x69\x71\x5b\x8f\xe3\xc2\x18\x3b\x15\xcf\xf1\xfc\xa5\x8b\x33\x58\x28\x70\x70\x03\xee\x1b\x21\x32\x3b\x11\xf7\x93\x10\xf6\x3a\x85\xe7\x0d\xe1\xf1\x45\x15\x2c\x14\x72\x68\xc4\x75\x27\xf0\xb4\x13\xd7\x32\xe5\x17\xf5\xf1\x12\x1f\x7e\x2e\xea\x18\x23\x70\x0a\xcf\x1d\xdf\xf9\xb1\xa2\xb7\x79\x2a\x3f\xee\x01\x56\x57\xcb\x87\xbd\x0b\x6a\x42\xf9\x5e\xe1\xf8\x57\x09\xe0\x2b\xf8\xa0\xfe\x47\x9b\x17\xfb\x4a\x15\xa6\x0a\xe0\x3b\xfe\xfc\x16\xde\x0b\x2c\xcc\xf5\xe7\xfc\x42\xe7\x61\x64\x1f\x94\x11\x3e\x20\x48\x92\xd4\x8b\xe4\x08\x5f\x04\xd2\x1f\x21\x4a\x16\x9f\x6f\x64\xaa\x8e\xfb\x03\xf0\x78\x9a\xe2\xba\x17\xba\xea\x82\xaf\x07\xc2\x77\x26\x63\xff\x14\xd1\xa0\x45\xb8\x6f\x82\xf8\x8c\x0d\x58\x27\x27\x69\x97\xb8\x09\xe3\xb4\xf4\x3e\xfc\x7a\xcd\x15\xdc\x37\x41\x22\xe0\x0e\x9e\xc3\x24\x0c\xde\xe7\x20\xf4\xe3\xab\x28\xee\x45\xd0\xf5\x44\x12\x3f\x17\x3d\x4d\x91\xc4\xcf\x07\xcd\x85\x8c\xe3\x00\x3c\x87\x6a\xdd\x65\x35\x01\x78\x07\xfd\xb0\xae\x7d\x92\xe3\x01\xe0\xe7\xba\x32\x49\xb6\x02\x80\x6f\x77\x61\x29\xe3\x11\x00\xaf\x44\x81\x06\xe3\x2c\x00\x4f\x61\xee\x2a\xc6\x6d\x00\x9e\x87\x67\xce\x33\x4e\x01\xf0\x84\x65\x8a\x31\x7e\x02\xf0\x3c\x86\xbf\xe8\x80\x68\xfe\x7f\xa4\x0f\x04\xd9\x07\x3e\x88\xd4\xeb\x1c\xfc\xa3\xf1\x75\x42\x20\x48\x09\xcf\x55\xc2\x76\x06\x9f\x70\x1c\x3d\x8e\x5a\x2c\x94\xe2\xf5\xc3\x73\x36\x23\x7b\xfe\x1d\x8e\xb7\x00\x8c\x09\xeb\xdd\x39\x4f\x02\x30\x2c\x12\xe5\xb9\x4e\x02\xc8\x54\x67\xb0\x73\x5d\x02\x90\x99\x51\xea\xcf\xf9\x16\x40\x66\xfa\x83\x34\x0e\x79\x00\x99\x96\xcf\x79\xec\x8e\x9f\x4c\x65\xed\x00\xb8\x2f\x3e\x9f\x22\xf7\x13\x80\xbf\xf8\x6e\x89\xc2\x2e\x00\xa1\xe5\xb7\x36\x2b\xa4\x02\x08\x65\x55\x7e\x56\xb0\x02\x10\x12\x2b\xd3\xc1\xfe\x3f\xc6\xb4\xff\xcf\x85\x42\x85\xe9\x00\x82\x4d\x79\x33\x14\x83\x00\x84\xba\x72\x9e\xcb\x4f\x00\x10\x30\xcb\x2a\x90\xcf\x03\x10\x58\x73\x7a\x9f\x7c\x05\x80\xc0\xec\xb4\x64\xf9\x8b\x00\x02\x12\xf0\xa7\x0f\xca\x60\xfc\x74\xbc\x94\xfe\x63\x90\x07\x25\xc8\x71\x8e\xf3\x3b\x0b\x05\x1f\x0b\xaa\xe3\xf3\x3d\x56\x1a\x5f\xbb\x64\x2a\xb4\x7d\x59\x28\xf7\xcb\x26\x94\xc3\x09\x40\x7e\x8d\xd7\x77\xce\xd3\x00\x8a\xa3\x82\x16\xf2\xd8\x01\x28\x38\xaf\xbd\xce\xbb\x05\x40\x2e\x2b\xfe\x07\xef\x25\x00\x39\x8f\x8c\x2b\x7c\x19\xbf\x6a\xe5\x84\xca\x2c\xf8\x97\x7f\xd3\x93\x2b\xbd\x7f\x4f\xe0\xe3\x97\x52\xf9\xfb\xbd\x61\x82\xb6\x6f\x56\x2a\xa5\x01\x88\xf8\xb6\x9c\x56\x7e\x0b\x20\xce\x51\x37\x4e\x35\x1e\x60\x54\x60\xe5\x6e\x55\x3d\x00\x89\x03\x25\xba\x6a\x31\x00\xa3\x7e\x5e\x92\x51\xad\x00\x90\xc8\xcc\xbf\xaa\xf2\x13\x40\x3c\xe8\xdc\x2a\x55\x15\x00\x71\xdb\xec\x03\x2a\x73\x00\xc4\x38\xd3\xbf\xa8\x1e\x02\x10\x67\x3f\x29\xaf\xd2\x0f\x20\xc6\x75\x5c\x42\xb5\x08\x40\x6c\x55\x4a\x95\xb2\x2e\x80\x30\x76\x85\x64\xcc\xf8\x7b\xfc\xc3\xe3\xa6\x79\x60\x9a\x07\x15\x4a\xa2\xfa\x84\x48\x0a\x73\xe2\xfa\x97\xdd\x20\xb6\x87\x85\x4a\x67\x94\xce\x70\x70\x01\xa8\x0e\x98\x6c\xe3\x0a\x03\x50\x3b\x3d\xce\x8e\xa7\x19\x40\xcd\x29\x50\x96\x5f\x09\x40\xa5\x75\x55\x91\xc0\xe7\x6f\xc9\xaa\x01\xbb\xda\x44\x3e\x7c\xd2\x57\x5d\x97\xc6\x26\xe1\xfa\xfe\xa9\xea\xc6\xcb\x05\x92\x77\xdf\xf8\xa8\xe6\x36\x1d\x95\x8a\xec\x60\xaa\x4d\x78\xbb\x42\xaa\xe5\xe9\x36\x0d\x2b\x00\x69\xeb\x86\xc7\x5a\x77\x01\xe4\x4c\x2b\x3c\xb5\x77\x01\xc8\xad\x2e\x3a\xa3\xbd\x0c\x40\x36\xbc\x20\x4e\xdb\x1f\x80\x71\xe2\xdc\x18\xed\x54\x00\xc6\xa4\xec\x60\xed\xc5\x00\x32\xdb\x4f\x2f\xd2\x66\x00\x48\x1f\x4c\xf3\xd5\x72\x05\x90\x62\x3f\xce\xa1\x55\x08\x20\x25\x7c\xc4\x4e\xeb\x1c\xc0\xe8\xb5\x07\x37\x68\x84\x02\x48\x1c\x4e\x96\x52\xbf\x09\x20\xbe\x6e\xe8\xf8\x1f\x11\x3f\xe1\x7f\xe9\xf8\x79\xc8\x53\x8c\x78\x02\x85\x72\x54\x9f\x07\x50\x27\xbb\x06\xb4\x77\xf0\xe0\x79\x90\xd6\xc5\xe8\x37\xeb\x66\xf1\x9c\x00\xd0\x9f\x39\x26\x50\x80\xf3\x3b\x8f\x7e\xe7\xd4\x44\x51\xc1\x9e\x1c\x03\xee\xd0\xed\x92\xa1\xaf\x7f\xe8\x6f\xd8\x2a\xcf\xb0\x6c\x4f\xd6\x3b\x7d\xf8\x9c\x02\xe3\x09\x53\x4f\x38\x4f\x47\x79\x5c\x4b\xb3\xee\xc2\x9b\xee\xaa\xa3\xee\x69\xe9\x6e\x6e\xbf\xae\xfa\xa2\x39\x56\xaf\x0f\x3e\xa9\x3a\x57\x36\x1a\xec\x82\xd7\x6a\xb1\x97\xce\x1a\xd6\xc2\x6b\xb5\xfc\x5c\x0b\xc3\x6f\xf0\x45\x75\xc1\xa0\xee\x85\xf8\xbd\x1c\xff\x66\xf8\x16\x40\x49\x2f\x25\xc5\xf0\x31\x80\xe2\xac\x43\x3b\x0c\xe6\x03\xc8\xb5\x27\xbf\x35\xe0\x03\x90\xbd\x9c\x24\xa2\xef\x01\xc0\x18\x97\xf0\x4d\xdf\x0c\x40\xe6\xc6\xae\x8d\xba\x0f\x01\xa4\x1c\xe1\x4f\xfd\xc3\xc8\xf8\x89\xef\x3b\xcd\x03\xd3\xfb\xc1\x75\x09\xff\x45\xfb\xa3\x58\x90\xa7\x19\x5b\x86\x88\x34\x42\x10\x6e\x7b\x45\x35\x90\x5b\xeb\xd3\x52\x9b\x78\xcb\x33\xa2\xa9\x6f\x24\x6c\x5c\xbc\x75\xa5\x9a\xdb\x04\xad\x63\xe7\x2d\x56\x50\x6a\xf1\xb3\x92\x5a\x3f\x4f\x35\xeb\xb6\x96\x45\xe3\xde\xb1\x5a\x5b\x6f\x55\x99\xfb\x65\x85\xe9\x32\xab\x5e\x9b\xcd\x29\x0f\x33\x38\x57\xe9\x69\xda\xf8\x28\xcb\xb0\xe5\xda\x53\x33\x97\xfe\x4f\x86\x21\x17\xc1\xbc\x07\xd6\x1b\x94\x9e\x99\x65\xa9\x0f\x3b\xf5\xfb\x4f\xb9\x5a\x74\x42\xb6\xee\xe2\xa3\xb7\x2d\xae\x43\xa5\xb6\xdb\xc1\x36\xcb\x5c\xa8\xd6\x96\x4b\x2e\x35\xef\x80\xd7\xea\xa7\xf7\xca\x98\xbf\x86\x8f\x6a\x87\xe3\x63\x2c\x62\xe0\x93\xda\xa9\xb8\x65\x66\x25\x00\xca\x51\x3b\x66\x99\x29\x02\x28\x66\x6e\x13\x37\x55\x05\x90\x7f\x17\xed\x67\xea\x07\x20\x8f\x35\xcb\x9c\x11\x7f\xab\x7f\x6e\xe2\x07\x23\xf3\x9d\x42\xcd\x42\x12\x37\xd1\xc9\xd8\x90\xa7\x43\x27\xf2\x14\x3c\x16\xaf\x67\xfd\xa8\xf1\x58\xcf\x99\x86\x50\x8f\x9e\x4f\xa1\xdc\x64\xce\xaf\x2f\xba\x3c\xdf\x18\x49\x8a\x8d\x6e\x49\x19\xb7\xc7\xa5\x41\xfe\x46\xc3\x17\xb7\xfb\x01\xa7\xd5\xdf\x55\xf3\xb8\xdc\x0b\xab\xd4\x1b\x5f\x96\xe3\x54\x16\x6b\x69\x7c\xb2\x28\xd6\xf1\xfa\x09\x11\xf3\x7b\x17\xe6\x39\x48\x15\x79\x59\x9d\x3f\xbf\xd3\xee\x47\x73\xa2\x8d\x77\x4e\x84\xdd\xfb\x0f\x7b\x6d\x8e\x9e\x36\x70\x58\xc7\xfc\x61\xad\x9d\x92\xea\x18\x02\xaa\x16\xf7\xf7\xeb\x3b\x6a\x81\x9f\xe9\xe9\xc4\x3a\xfb\x26\xd8\x62\x58\x1c\x77\xd2\x21\x11\x12\x0c\xaa\x62\x7d\x1d\xe4\x20\x43\xaf\x66\xfb\x5d\xfb\x4e\xc8\xd3\x7d\x15\xfd\xc4\x5e\x04\x9a\xb4\x5a\xa3\x74\xed\x26\x42\xbb\x46\xf7\xa6\x1e\xbb\x45\xd0\xa1\xb1\x7f\x7d\xa3\xf5\x17\x00\x95\xc3\x6b\xcb\x6d\x54\x01\x94\xeb\xfe\x8c\x9f\xa7\x9a\x42\x69\xb2\xeb\x87\xe6\xc1\x2d\xe8\x5d\x11\x64\xff\x3b\xcd\x07\x4e\xc2\xeb\x91\xfd\x7b\xa7\xe1\x79\xa3\xab\x8f\xf2\x47\x79\xbe\x36\xe8\xe4\x68\x5b\x84\xee\x85\x06\x7a\x6b\x59\x88\x2c\xbd\x99\x1d\x10\x62\xdb\x2b\xaf\x58\x1a\x30\x29\x6d\x42\x91\x6e\xe0\x45\x71\xdf\x86\x85\x27\x4c\xcf\xe4\xa8\xfa\xe8\x47\xe6\x59\x5f\x4c\x7f\xea\xf9\xf2\xc0\x1b\x87\xc8\x54\x5b\xf7\xf2\xf3\x2b\x9c\xea\x8f\x54\x8c\xd7\xa9\x45\x2e\x77\x0f\x4e\x1a\xb7\xf6\x65\xa3\xeb\xc2\x64\xee\xf1\x12\xcc\x55\xce\x4f\xe2\xe4\xdc\x95\x98\xe7\x1d\x8f\x6e\x37\x1f\x3f\x9a\xd9\x6f\x2b\xb8\x59\x7d\xdc\x27\xd0\xb6\xdc\x1a\x39\x6d\xbc\x20\x98\x59\x14\xac\xb7\x1f\x27\x0e\x73\x4d\xe5\xd7\xd5\xbb\xed\x81\x48\xa3\xeb\xab\x5f\xba\xa6\xc3\x09\xfd\xdc\xf0\xcd\xae\x2b\x21\x57\x6f\x72\xf8\x14\xa7\x52\xb8\xad\xd5\x15\xa6\x38\xe6\x3b\xbc\xd4\x28\x58\xea\xef\xb4\x1a\xde\x68\x28\xfc\x39\xff\xd1\xf5\x4f\xfb\x41\x58\x33\x29\x1c\x47\xfc\x4f\x28\xfd\xcf\xcf\xe9\x81\x78\xb7\x4b\xcf\xc5\x79\x78\xfd\xe2\x55\x6f\x30\xe6\xbb\x9e\x74\x2f\xc5\xe3\xe3\x8e\x44\xd8\x71\x41\x3b\x84\xaa\xc3\x96\xed\x52\xda\x2f\xc8\x79\xc5\x25\x24\xd9\x6c\x2e\x23\x3b\x57\x75\x41\xf2\xf8\xd9\xda\xc7\xd3\x5a\x66\xaf\x9d\xe9\x6e\x35\xf5\xd0\x89\x99\x66\xab\xdc\x1d\xdf\x26\x66\x04\xcc\xdb\xe3\xe9\xa6\xb8\xcb\x78\x9a\x40\xc6\x0a\x77\x91\x98\xac\x29\x13\xcb\xc7\x78\xc6\x6d\x7e\x3a\x59\xf2\x49\x90\xd7\xc2\xc8\xc0\xc9\xee\x03\xae\x9e\x57\x23\x2e\x4f\xe6\x65\x3a\x8f\x3d\x1f\x3e\x76\x52\x39\x73\x8f\xb3\xeb\xf2\xab\x13\xf7\x31\x6f\xdb\x7f\x59\x2e\xec\x9b\x07\xc8\x26\x3b\x94\xe1\x3b\x17\x14\xad\x66\x86\x24\x4c\x30\x07\x27\xf3\xea\xc5\x67\xbd\x3f\xc2\x3c\x93\x1f\x8b\x2e\x78\x19\xc3\x56\x23\xd3\x05\xe5\x9e\xae\x70\xc4\x80\x6b\xbe\xab\x87\x04\xe4\xe9\x3e\x9e\xe7\x31\xde\x16\x6a\xb5\xc7\xfe\xa9\x03\xd1\x26\xab\x1d\xb6\x8e\xc3\xcf\xbb\x3f\x9e\x27\x06\x9e\xcd\xc7\xfa\xb8\xee\xf6\xa5\x98\x9f\xe8\x48\x0e\xc7\xfa\x90\x87\x4f\xd6\xe2\xfa\x69\x8c\xdd\x88\x75\x85\xd7\xa5\xa2\x38\x51\x05\x42\xc5\xfa\x9b\xc5\x65\xae\x72\x9b\xe7\xac\xde\xd0\xa3\x57\x31\xfa\x62\x6a\xdb\xda\x80\x31\x4f\xd4\x5b\x92\x72\x56\x3c\x9f\x62\x6b\x2e\x10\x73\x61\xc9\x85\x10\x1d\x97\x55\x1b\x16\x2e\xbe\xba\x35\xd1\x3d\x33\xfc\xe6\x42\xfd\x63\xb3\xbd\x6f\x2f\x3d\x35\xdf\xf8\x72\xa1\xef\xbe\x60\xf9\xb9\x3d\x77\x9e\xf9\xf5\x2c\x8c\x9d\x1b\xd2\xdb\xe9\xb7\x82\xd6\x7d\x04\x29\xcf\x9e\xc5\xb4\x19\x5b\x3a\xab\x2e\x30\x8f\xb9\xdd\xd9\x60\x96\xfa\x4c\x15\x66\xbe\x63\xd8\xcc\xed\x33\x78\x99\x8f\xed\xb2\x68\xbd\xc7\x8c\xa4\x69\x5b\x40\xdd\xd2\x29\x60\xcc\x54\x71\xf0\x31\x7d\xe3\xcf\x31\xb9\x07\x16\x19\x57\x4e\x8d\x9b\xf4\x1d\x36\x19\x96\x4e\x95\xf4\x93\x85\x93\x7a\x6e\x00\x62\x1c\xc3\xc7\x3f\x1d\xbf\xf7\x35\x0a\x29\x1e\x78\xc0\x8e\x5a\x0d\xea\x51\x0b\xc7\xfb\x16\xdb\x75\x36\x60\xd7\xd7\x96\xd9\x9b\xb1\x8e\xa8\x7e\xea\x36\xbc\x3a\x58\xa1\xbb\x13\xf7\x57\x29\x8c\xda\x83\xbf\x27\x47\x37\xe1\x9b\xf8\x34\x84\x52\x35\x76\x6f\x52\x6b\x12\xd3\xda\x7b\x39\xf6\x80\xf5\x1e\xa5\xdc\xad\xf9\x31\xec\x3e\x91\x46\x68\xd5\xb7\xc8\xfc\x79\xa9\x0e\x1e\xc1\x95\x1b\x2c\x37\x9e\x1f\x7b\x66\x6e\xe9\xba\x1b\x07\xb3\xdd\x4f\x06\x4e\x88\x88\x2d\x28\xf6\xf4\x0f\x88\x5c\x3b\xb7\xf1\xa3\xe7\x9d\x69\xde\x6b\xc5\xde\x1f\xf4\xa8\x9e\x6a\xb2\xea\x07\xd3\x67\xac\xc7\x94\x99\x61\xbb\x99\x87\x9c\x6a\x27\xdb\x2f\x53\x63\xd6\x3b\x84\x4c\x2a\x0c\x39\xc6\xfc\x6e\x3b\x61\x62\xdf\xe2\x32\x90\xb2\x16\x9e\x24\xbd\x60\x13\x18\x5a\x9a\xfb\xa5\xcd\x9b\x0a\x53\x4d\x7f\xfa\xa6\x05\xd5\xc1\x72\xe3\x7b\x7e\xf3\x67\x8d\x81\x75\x46\x57\x7d\xb6\xcd\x3c\x03\x19\x7a\x3b\x7d\xe6\x4c\x5f\x0b\x05\xba\xb6\x00\xea\x27\x48\xfd\x93\x55\x70\x1f\xb2\xaa\x39\x0b\xf3\x5a\x03\xe2\xcb\xf0\x7c\xf0\xa1\x72\x2d\xce\x57\xbb\x5d\x14\xe6\x85\x1f\x74\x50\xab\x62\x75\x3e\x7b\x30\x6f\x71\x0d\xf6\xe2\xeb\xc6\xc5\x6b\x07\x70\x1f\xa9\xec\xe6\xc3\x78\xdf\xdf\xb1\x49\x47\x37\x71\xde\x47\x28\xe9\x58\x4a\x89\xbc\x1c\x7f\x64\x4c\xe6\xa1\x83\xc6\x3f\x18\x81\xab\xdb\x92\x7f\x8d\x8b\xd6\x9e\xbc\x70\x76\x62\x45\x60\xb0\x65\xca\xcc\x65\xf1\x57\x22\xa6\xd8\xd7\x4c\x89\xd9\xb3\x3c\x59\x73\xcc\x39\x5f\xfb\xdd\x16\xe7\x5b\x9c\x7d\xbd\x22\xe2\x26\xd7\xbd\x72\x3e\xe9\x11\xb5\xab\xf6\xed\x44\xa7\x7c\x0f\xaf\xd8\xad\xcc\x1a\x87\x34\xf7\xfd\x5b\x9e\x03\xaf\xcd\xac\xf1\xfd\x91\x63\xc1\xd2\xe2\x9b\xfb\xd8\xf5\x5b\xc1\xc3\x7c\xbd\xbb\x7b\xc4\x52\xf0\x37\x0b\x1e\x57\xb3\x6a\x36\xc4\x1a\xf9\x8d\x9b\xb9\x92\x03\x8e\x18\xa4\x8f\x53\x5f\xe6\x05\xb9\x7a\x27\xc6\x8f\x0d\x3d\x0f\x99\xfa\x0e\x63\x37\x87\x24\x42\xb5\x8e\xfa\xd8\xa7\x0b\xc3\xe0\x0e\xeb\xde\x82\xd6\x81\xb8\x93\xd5\x42\x4a\x07\xf1\x4b\x9e\x5a\x15\xed\x49\xda\x88\x7d\x30\xda\xd9\x28\x1d\xd0\xfd\x96\xdd\x98\x9f\xac\x8b\x4e\xe2\x67\x61\xb9\xc9\x21\xac\x0f\xb9\x64\x74\x0c\xd7\xcb\x99\xcd\x27\xf0\xaa\xe8\xf1\xfe\x74\xdc\x37\x23\x31\x25\x13\xfb\x70\xed\xe8\x3d\x53\x2c\x15\x8c\xd0\xda\x7d\x99\xf1\x3a\xe2\x12\xd3\x17\x5f\x4e\x7f\x3c\xe6\x80\x0a\x97\xff\xcf\xb4\x03\xd3\xa6\x1b\xfe\xf4\x4d\x3f\x11\x1e\x9e\x62\xa6\xe1\xde\x9d\xba\x2c\x51\xdf\xa2\xc7\xb5\xed\xf8\xfa\x1c\x3f\xab\x58\x27\x8f\x63\x25\x37\x8f\x5a\xdd\x73\x0c\x39\xc6\xde\xb9\xd4\xb2\xce\x51\x24\x45\x06\xbc\xcd\x22\x1d\xd5\x92\x97\xc2\x32\x13\x4e\x87\xa6\xf8\xf5\xb0\xd7\xd0\xc4\xe1\xd5\xae\x4a\x38\xa1\xff\xc2\x61\xf7\xf6\x4b\x70\x59\xf7\xb1\x43\xed\x56\x6f\xa8\xd0\x79\xee\xb0\x65\xf3\x2c\x68\xd2\x5e\x64\x7f\x6e\xc3\x67\x78\xa3\x71\xcd\x41\x69\x9d\x3d\xbc\xd7\xf0\xb2\xcf\x5a\x2b\x00\x5f\xd5\xfa\xec\xbe\x85\x47\x00\xa8\xf4\x8e\xd4\x81\xd0\xf1\x77\x9b\x45\x51\xfd\x5f\x80\xf2\x03\x7a\x90\x98\x88\x79\xbd\x3a\xeb\x83\x98\xcf\xbd\x16\x7d\xd4\x91\x8a\xff\x24\x5e\xe7\x3e\xf3\x01\xb7\x43\x40\x27\x4a\xce\xe2\xf5\xd7\xe4\xfc\xf3\x98\x6d\xd8\x66\x4a\xf5\x91\x59\x7b\xfa\xd2\x43\x3e\x17\x84\x42\xda\x0b\x2f\x2a\x9f\x15\x14\x9e\xd1\x7b\xe1\x82\xd5\x3b\x86\x84\xf7\x9c\x7c\x6f\xbf\xb9\x1a\xf3\xdd\xf6\xe6\x5d\x59\x16\xab\xcd\x74\x54\xcb\x93\x8a\x7b\xa7\xb7\xd5\x66\xe1\xf9\x79\x59\xbb\xf4\x7b\x2d\x3e\xe5\xa6\x57\x65\xe9\x33\xcd\x1d\x73\xbd\x3b\x18\x7a\x1f\xcd\xe3\x72\x7c\xe1\xaa\x4e\x90\x85\x50\x7a\x22\xdc\xd2\xb6\x31\x6f\x3c\x2e\x01\x6d\x9a\xda\xe6\xab\x0f\xef\x80\x1e\xf5\x75\x16\x0b\xf6\x27\x41\xb7\x7a\x8e\x19\x33\xc9\x89\x15\x9f\x79\xe3\x1e\x13\xd6\xf5\xd1\xbc\x6b\x67\x11\x80\x72\x8d\x45\xd8\xf6\xd1\x00\xca\xf3\xcd\x1b\xa2\xbf\x00\x28\x6e\x35\x8f\x8f\x7a\x0b\xa0\x90\x0b\x10\x80\x57\x83\x99\xf1\xe1\x7b\x59\xf8\x51\x3e\x1a\xcf\x7f\x2f\x76\xc5\x51\xac\x97\x43\x32\x5e\xdd\xae\xcf\x3b\x82\xf5\x2f\x95\x46\x94\x0e\xe8\xb2\x44\x26\xd6\xcd\x9d\xf3\xcd\xc1\xd7\xcd\x53\xa3\x0a\x30\x0f\x7a\x68\x62\x21\x1e\x57\x71\x3e\xd4\x2a\xf1\xc6\xa5\xa5\x6b\x58\x18\x5c\x5e\x81\xbf\x7f\xf6\xe2\xeb\xea\x32\xbb\x38\x6e\x4d\x68\xaf\xb8\x62\xb4\x5f\x7c\x81\x73\x40\x79\xb8\x47\xae\xdc\x13\x9b\xce\x72\xaf\xc5\x47\x15\x6b\xcd\x98\xe5\x02\xdb\x1f\x29\x0f\x18\x25\x5f\xdb\x91\x3e\x45\x75\xb4\xfe\xe2\x6b\xe6\x95\x5a\x2a\x7d\xba\x7d\x65\xbf\x9e\xa7\x2b\xb7\xe9\x29\x94\x16\x03\x28\x3c\xd2\xd3\xbb\x78\x17\x40\xbe\x53\xdf\xe5\xdc\x59\x00\x85\x10\xbd\x53\x59\xfb\x01\xe4\x1a\xf5\x8a\x4e\xbd\x02\x90\xd3\xd1\x3f\x9e\x5a\x09\x20\x77\x48\xaf\x33\xc5\x10\x80\xd1\xa5\x7f\xf7\xa0\x07\x80\xac\x8f\xfe\xe2\x7d\x5b\x01\x18\x0a\xfa\x2d\x09\xac\x7b\xa3\x72\x83\x88\xdd\x17\x01\x64\x7e\xd0\x7e\x50\xbd\xf5\x9b\x71\x9d\x77\x78\xec\xc1\xab\xe8\x2d\x79\x07\x31\x3f\xdb\xb8\x91\x62\x07\xae\xc7\x9f\xc6\x7a\x88\x62\xd7\xb3\xf8\xba\x70\x9e\x23\x1f\xf3\x1c\xa7\xc5\x2e\x61\xde\x2b\x65\x72\x09\x3e\xff\x09\x09\x94\x1e\x66\x8b\x11\xe5\x9b\x11\xbe\xa7\x66\x27\x0b\x83\xca\x29\xff\x08\xdf\xe6\x26\x7d\xc1\xad\x08\xb9\x94\x36\x3e\xd2\x34\x15\x90\xb5\x54\x6b\xb4\x76\xfe\x29\x51\x6d\x14\xdd\x78\x63\x2e\xe7\x68\x79\xdd\x71\x8d\x7d\xd1\xfc\x52\x25\x9a\x13\x1b\x9f\xa7\x46\x4a\x07\xaa\x1d\x6d\xac\x2a\xed\x94\x02\xd5\xc5\x8d\xe1\x4f\x57\x8f\xae\x55\x5d\xd6\xb8\x12\x40\x62\x8e\xaa\xd8\x8d\x57\x00\xe2\xd5\xaa\x87\x4b\xad\x00\x24\x8c\xd4\xa6\x5c\x56\x04\x90\xb8\xa9\x96\x9c\xff\x0d\x40\xa2\x44\xa5\xef\x9c\x30\x80\xd8\x32\x75\xbf\xcc\xa7\x00\x12\xa5\xaa\xb1\xe9\x9c\x00\x62\x01\x6a\xa2\xa9\x96\x00\x62\x1b\xd4\x7a\x52\x8e\x01\x88\x0b\xa8\x0d\x1c\xb6\x07\x10\xbb\xf7\xe9\x7d\x34\xf6\x81\xea\x48\xa3\x74\x60\x8f\x43\x29\x1d\xd4\xed\xfe\x93\x78\xd7\x70\x15\x7f\x36\xc5\xfb\xc6\xe5\xe2\xf1\x91\x97\x5a\x88\x75\x10\x59\xae\x25\xf8\xf8\x98\x02\xe5\x97\xb0\xcf\xf3\x3a\xde\x0f\x1c\x5b\x45\xf9\xc3\xac\xb7\xa3\xe2\x5e\x92\x79\x1b\xef\x1a\x0d\x48\xbc\x87\xf9\x4f\x67\xee\x47\x78\x37\xb6\xc5\xaf\x56\x7e\x39\x7b\x8e\x5e\xdd\x23\xad\x2a\xd6\x4d\x02\x27\xd4\x6f\x3d\x15\x9e\xbe\x48\xf0\x9b\xf2\x8a\xa7\xd3\xd7\x6f\x17\xca\x54\xd8\xf8\xf4\xec\x11\x7f\xa1\x2a\xb9\x49\xcf\xd8\x8a\x8d\x04\xf3\x65\xe7\x3e\xfd\xfa\x68\xad\x80\xa4\xec\xb6\x67\xe3\x98\xb6\xbc\x0e\xb2\x4b\xef\x25\x01\xf0\x5a\xc8\xca\xd7\xcf\x03\xe0\xf9\x20\x67\x50\xa5\x0e\xc0\x77\x5e\xf6\x7a\xb9\x2e\x00\x9f\xb8\xdc\xd6\x2b\x69\x00\xfc\xd2\xb2\x7b\x0a\xeb\x00\x78\x4f\xc9\xed\xcf\x5b\x0b\xc0\xf7\x59\x6e\x55\xce\x64\x00\xbe\x53\xf2\x1d\x99\x0b\x00\x04\x2c\xe4\x2f\xa6\x6b\x03\xf0\xdf\x7d\xeb\x4b\xe9\xff\x9e\x9c\xa4\xe6\x3b\x3a\xfe\xea\x0f\xd4\x38\x2f\x55\xa0\xfc\x21\x2e\xf8\x14\xe3\xf1\x72\xc6\x91\x8a\x3b\x2d\xff\x06\x66\x4b\x0e\xb4\xdf\xc4\x6c\xdb\x9e\xe0\x06\x5c\x47\xd1\xb5\x77\x74\x11\xde\xef\x7c\x1f\x5f\x47\xe6\x3f\x78\x84\xaf\x37\x13\x3f\x50\xbc\xa9\x2d\xe3\x25\xbe\x0f\xd1\x8c\x7c\xeb\x2c\x98\x8e\x90\xe2\xb8\xae\x70\x7d\xe0\x0c\x97\x75\x7f\x57\xe7\x67\xc7\xe9\x25\xe3\xf7\x21\x24\x7c\x29\x7b\xa1\xf4\xab\xee\xc9\xc9\xdd\x08\x8d\xd6\xe9\x2e\xba\xf0\x05\x21\x89\xe2\xee\x92\x7b\xe3\x11\x12\x8b\xea\x3e\xfa\x4d\x12\x21\xc1\xf0\x0e\xec\x57\x2e\x10\xf0\x64\x39\x0b\x79\x5f\xdf\x9b\x8b\xb1\xb1\x09\xf3\x95\xdc\x3f\x6b\x2f\xe2\x63\xa5\x1b\x78\x5f\x1b\xbb\x77\x39\xe6\x33\xb9\xac\xaf\x60\x8f\x45\x84\x0a\xd7\xe2\xd7\x9f\xe6\x27\xe2\x75\xbe\xda\x14\xcc\xea\xdc\xe3\xcc\xc0\xf3\x5f\xcd\xa1\x1c\xac\xd3\x28\xf3\x2b\xc4\x7a\xb7\x42\x9b\x12\x7c\x3d\x39\x37\x97\xaa\xf3\x74\xde\x9b\xb8\xee\x8f\xd8\x35\xe0\xeb\xc8\x5e\x85\x66\xac\xfb\x88\x75\xa4\xf4\x4f\xeb\xde\x3d\xc2\xfe\x5b\xcb\xce\x3f\xc3\xe3\x6d\xf6\x84\x97\x58\x07\xe1\x6d\xf0\x1a\xfb\xc8\x98\x47\x75\xe3\xcf\xcb\x5e\xed\xc7\x9f\x17\x8d\x1f\x10\x90\x17\x43\x48\xb0\xee\x47\xb1\x73\x24\x42\x7c\x2e\xbf\x36\xce\xef\x41\x88\x9b\xc1\x7c\xbd\xc3\x0e\x21\x0e\x41\xc8\xce\x64\x5d\x81\x22\x00\x6e\x9e\xa3\x66\xf4\xf7\xf8\x8a\xf4\x35\x1e\x86\xea\x1c\xd0\x4b\x13\x0a\x5b\x71\x7c\x68\xfb\x03\x5e\xea\xf8\x36\x61\x1a\x6f\x11\x66\xb2\xaa\x92\xc2\x72\xac\x13\x41\xdb\x4a\xba\x59\x78\x2f\x8f\x1a\xf7\x75\x50\x80\xf5\x0e\x15\x9b\x8b\xf0\xfd\x60\x51\x5b\x39\x9e\x0f\xcf\x1f\xa8\xc6\xd7\x93\x8c\x0f\x75\x78\x9e\x38\xd6\xd4\x84\x59\xf6\x7d\x84\x55\x8e\x83\xc7\xf8\x7e\x3a\x5a\x99\x3a\xdf\x6b\x76\x52\x7e\x21\xc1\x0a\x6f\xf0\x7d\xd5\x74\xbb\x0f\xd8\x4f\xc8\x5d\xe1\x13\x1e\x47\x26\xc7\xbf\x63\xde\x54\xba\x98\xfa\x35\x6c\x12\x00\x82\x16\x54\x7c\xa6\xac\x4a\x8c\x06\x98\x46\x3a\x78\xd1\xfc\xdd\xa1\x18\x0a\x0b\x09\xff\x47\xf3\x72\x7d\x58\xc9\x37\x92\xcf\x7f\xbb\x81\xc2\x17\x17\x28\x7c\x4a\x76\xa4\xdf\x8f\x19\x9e\x97\x3a\xc2\xf3\x56\x63\x67\x8e\x86\xfe\x02\x9c\xe5\x2a\xb1\xab\x58\xe7\x50\x2c\x46\xf9\x83\xe4\x2b\xd4\xe0\x4f\x65\xbf\x6f\xc2\xe7\xf3\xc4\xe9\xbb\x58\x67\x7b\x30\xe7\x11\xf6\x8b\x49\x14\x78\x86\xaf\x9b\x3b\x8e\x77\xe0\x5f\xb3\xb1\xe6\x35\xfe\x9e\xb0\x86\xf7\x38\xce\xf9\xc5\x9f\xf0\xfa\xc4\xd4\xf6\x7e\x3c\x9e\xdc\x6c\x7e\x61\xf6\x9a\xe6\x39\x47\x35\xc2\x20\xbf\xc9\x4b\xf8\x4b\x9a\xd7\xf4\x25\xfb\xf3\x97\xd2\x7d\x1d\x08\xdf\x9b\xb1\x9f\xc2\x6b\xa4\xf3\xe9\x43\xc2\x63\x7e\x21\xc7\xd4\x37\x0e\x10\xc6\xbd\x97\x38\x55\xbc\x21\x0a\x9c\x17\xb1\xc3\xf3\xf2\x40\x9f\xc2\x66\x75\xbc\xbe\x4b\x74\x60\x25\x25\xd7\xb1\xbe\xa5\xe0\xd8\x2d\x4a\x0f\x39\x42\x07\x75\x4c\xe1\x19\x56\x19\xec\xd3\x68\xc7\xba\xb9\xdd\x33\xdf\xae\x67\xe1\x96\x57\x1f\xf0\x3c\x18\x51\xf8\x19\x5f\x47\x97\x3e\xfc\x86\xe7\xdd\x39\x8d\x94\x4e\x60\xa2\x16\xc5\x97\x3b\x9e\xa5\xfe\x2a\xed\x83\x21\xa6\xf0\x67\x1e\x74\xc9\x31\xed\x77\x40\xef\xef\x8f\xa4\x9d\x9d\xc4\x28\x3c\xcf\x4f\x61\x15\x39\x7e\x42\x3a\x80\xbd\x9f\x8a\xfe\xc2\xeb\x7f\xb5\xa4\xb0\x87\xf4\xc5\x79\x33\x6a\x78\x5e\x5a\x71\x87\xa3\xb2\xae\x2a\xdc\x1f\xb1\xb0\xad\x01\xc7\x9d\x5b\x70\x0f\xef\xa7\xc8\x74\x7f\x82\x6f\x30\x53\xb7\xb4\xe3\x3e\xac\x07\x76\xbd\xc2\xe3\x26\xc1\xe2\x1d\x56\x11\xec\xe8\xfe\x84\xd5\x29\x91\xa7\xbf\xe1\xe7\xd0\xd5\x5b\x7f\x61\xfd\x21\xcd\xff\xd3\xfe\x40\xb4\xff\x81\x0d\xe9\x8b\x42\xfb\x60\x0c\xe5\xfd\x69\x1d\x88\x26\x71\x3e\xa5\xfd\x0e\x68\xdf\x87\x55\x44\xef\x12\x47\x76\xbc\x9c\x24\x75\x43\xfb\x3b\x54\xbd\xa2\xf0\x1e\xf9\xdc\x2b\xf2\xc4\xd4\xdf\x3e\x34\x1f\x4c\xa2\x40\xe9\xab\x19\x91\x17\x5c\x2f\x97\xdb\x9a\x70\xb6\xf3\xde\xb5\xe0\x6f\xcd\x5e\xf3\x74\x1b\xc2\x7e\x48\x2f\xf1\xbc\x76\xc4\xee\x2d\xd6\xcd\x27\x0b\x7c\xc4\x7e\x63\x7b\x02\xbf\xe2\xfb\x85\xad\xdd\xbf\xf0\xa8\xa6\x75\x20\x4b\x49\x3f\x9c\xb9\x44\xff\x33\x99\xf4\xcd\x71\x9b\x47\x21\xed\x8f\x43\xf7\x01\x11\x8a\xf8\x9d\x07\x0e\xa2\x43\xa0\x75\x20\xf6\xe4\x89\x97\xf6\x7d\x08\x25\x8e\xa0\x74\xbf\x8f\xfd\x04\x33\x48\x27\xd8\x22\xd2\x39\x98\xd6\x7f\x34\x92\xf1\xf3\x94\x7c\x4f\x77\xf2\xdf\xea\x04\x0c\x86\xe6\xe5\x82\xcf\x43\x7c\xbe\xcf\xfa\x50\xf3\x5c\xba\x5d\x27\x9e\xdf\x8e\x6b\x76\xe3\x3a\x3f\x90\xf8\x09\x3f\x87\x25\x1e\xfd\x89\xfd\xe4\x06\xfb\xe2\x10\x5d\x03\xad\x87\x5a\x64\x34\xbc\x0e\x06\x75\x20\x94\x4b\xd1\x6f\x1d\x08\xb5\xf2\x85\xf8\x99\xf0\xa7\x0e\xc4\x8e\x42\x4b\xf2\xa4\xeb\x4d\xe2\xa5\x75\x52\x11\x64\xa7\x60\x2c\xd1\x2d\x1c\x26\x2b\x84\xb4\xfe\xe3\x02\xe9\x83\x52\xfa\x86\xc2\x5b\xa4\x83\xe4\x48\xfd\x47\xbf\xd1\x9f\x79\xc9\x95\x6d\xc7\xa3\x2c\xab\xea\x1d\x7e\x40\x48\x6b\xfb\x84\x75\xe4\x47\xc6\x7c\xc3\x67\x21\x49\xf7\x27\xfe\x35\x3b\x49\x1c\x51\x33\x29\xa4\xfd\x50\xfe\xab\x0e\x84\xf8\x45\xd1\x7d\x92\xe4\x8d\xff\x9d\x07\x5a\x07\x62\x48\xe2\x72\x25\xba\x0d\x7f\x82\xa1\xc4\xcf\x24\x92\xec\x9c\xa2\xf5\x41\xb4\xfe\x83\x9e\x47\xe9\xf9\x63\xd0\xff\x63\x84\xfe\xe3\x19\x59\x49\x7c\x47\x8e\x7f\xe2\xfd\xf4\xff\xff\x3e\x20\xf4\xe7\xec\x4a\xd0\x30\x9e\x9b\xd6\x81\x04\x4c\xa6\x70\xc1\x4e\x0a\x57\xca\x50\x38\xa8\x7f\xd8\x4b\x61\x1a\x3b\x85\x79\x44\x0f\x51\x41\x7e\xcf\xbd\xa9\x14\xbe\x26\xbc\x22\xd3\xfd\xb7\xfe\xa1\x9b\xf0\xb3\x1d\x01\x14\xd2\xfa\x0f\x5a\x2b\x70\x87\xf0\xda\x23\x79\xef\x6a\xf2\x5b\x07\x79\x5f\xa2\x8b\x80\xff\xc1\x07\xe4\x0f\xfd\xc3\x08\x1d\x08\xcd\xf7\x3b\x6d\xa5\xd0\x83\x49\x21\xad\x03\xf9\xa7\x1e\xe6\xc5\x88\x3c\x8c\xd4\xc3\x10\xed\xc2\x50\x3d\x4c\x7f\x2c\x85\x5d\x44\x2b\xd1\x4e\x7e\x03\xad\xff\xa0\xf5\x0f\xcd\xe4\xdf\xd4\x7b\x53\x78\x93\xe8\x23\x68\xfd\x47\x19\x39\x87\x57\xb3\x7e\x7f\xf7\xff\xd5\x07\xe4\x8f\x7c\xd0\xfa\x20\x52\x4f\xc4\x17\x05\x4d\x21\xdf\xf3\x4f\x1d\x08\x3f\xc9\x03\xad\x87\xd9\x46\xe1\x0d\xb6\xe1\xe7\xb6\x7b\xe9\xef\xdf\xfa\xf9\x08\xa9\x11\xa2\x7f\xa0\x7d\x50\xfe\x67\x1d\xd0\x08\xfd\xc7\x50\xfd\xc3\xbf\xfa\xe1\xe8\x12\x0f\x9a\x41\xfd\x47\xf6\xf0\xe3\x91\xba\x07\x7a\x5c\xfd\xa1\x03\xb9\x4b\xe1\x32\x3d\x0a\x37\x91\x71\x92\xf0\x72\x78\x1e\x46\xea\x61\x1e\x51\xfc\x31\xd6\x81\x30\x77\x50\xff\xdf\xf3\x8a\x8c\x07\xa2\x93\x7a\xc2\xff\x9f\xc7\x41\xd5\x00\x89\xff\x31\xa9\x03\x5a\xff\xe1\x48\xe1\x30\xfd\xc3\x3f\xe2\xff\x7b\x1f\x94\x21\xfe\x17\xd9\x23\xf2\x11\x31\x7c\x7c\x10\x1d\x08\x9a\x49\xf4\x32\x21\x84\x2f\xdb\x44\xb4\x4b\xf1\x7a\xc3\xf3\x70\x21\x81\xc2\x1a\x12\x5b\x2b\xf1\x1d\xea\xd3\xf9\x3d\x2f\xd0\x7a\xa0\xb6\x4f\x94\x3e\x8a\xae\x83\x26\x72\x7e\x69\x1d\x54\x35\xc9\x13\x3d\x0f\xd0\xf1\x5f\xa9\x1a\x1e\x7f\x5e\xc3\xbf\xf3\xf0\x2f\xfd\x87\x82\xce\xf0\xe3\x91\x3a\x10\x7a\x3e\xa1\xe7\x4d\xcf\x67\x14\x06\x90\xd7\x17\x93\xbf\xb9\xbe\x9f\xc2\x3d\x6d\xc3\xf3\x70\x31\x9d\x9c\x4b\xa2\x83\x69\x23\xbf\x6f\x60\x1f\x42\x7d\x8b\xa9\xff\xef\xd4\x1f\x5e\x07\xf4\x38\xa0\xe7\x81\x9a\x40\x12\x3f\xad\x03\x1b\xf3\x9f\xe3\xcf\x61\xfe\xce\xc3\xbf\x7c\x50\x68\xfd\x07\x43\x82\x42\xda\x0f\x81\x46\xfa\xfd\xe1\x3a\x10\x84\x2c\x3b\xc8\xf8\x20\xfe\x11\xf4\x7c\xb9\x88\xaa\xc5\x19\xeb\x6e\x90\x3c\x90\xf3\x9d\x26\x44\x61\x61\x29\x39\xa7\x24\x8f\x1d\xa2\xbf\x7f\x63\x0f\x79\x8d\xd6\x07\xd2\x75\xd0\x78\x90\xe8\x7f\xe6\x22\xbc\x9f\xe0\xba\x05\x9a\x39\x34\xfe\xe2\x30\xea\xf5\xc2\x08\xea\xf5\xbc\x9a\xe1\xf1\x67\x4f\x45\x5b\xe9\xbf\x31\x52\xff\xf0\x2f\xfd\x07\xcd\x83\x0a\xdb\x0f\x7f\x5d\x66\x84\x7e\x8a\xae\x0b\xa7\x2b\xc3\xe7\x09\xfa\xba\xb1\x86\xc4\xb0\x9b\x5c\x17\x4f\x74\x91\x73\x75\x94\xc4\x46\x3c\xb2\xde\xd8\x20\xf4\xe3\x3b\xf5\xff\x6f\x67\x20\xec\xa3\xf9\xa4\x9b\xe3\x38\x0b\x6f\xbf\xe6\xc2\xe3\xa2\xe6\x2b\x17\x56\x70\x57\x9e\xe7\xc6\xeb\x0b\xa5\xe1\x3c\xd8\x57\xa9\x28\x95\x33\x13\xd7\x98\x2e\x07\x7e\xff\xbc\x1c\x97\x13\x0b\xcf\xa6\xb2\xe3\x3b\xc1\xcc\x56\x6e\xfc\x7e\xfa\x26\x0e\x7e\x3a\x0f\x23\xcf\xff\xbf\xf4\x1f\xb4\x1f\x00\x8d\xf4\xfb\x12\x54\xfd\x47\xc9\xae\x1a\x9e\x57\xea\x7a\xca\x5e\xec\x6d\x8d\x28\x1f\x29\xdc\x7f\x8d\xcb\x78\x35\x8e\x97\xfb\xd4\x6e\x3c\x3f\x70\xad\x3d\x89\xaf\x79\x9c\x4e\xc5\xab\x11\x62\x72\x72\x36\x35\x0b\x21\x34\x50\xca\x7d\xab\x4b\x00\xa1\xcf\xd2\x7c\xd8\x5f\xb4\x7d\x83\x10\x7e\x1e\xba\xb7\x41\x64\x37\x1e\x3b\x73\xc4\x6f\xe1\xf3\x7e\x50\xa6\x1d\x80\x7b\x4e\x71\x24\xe3\x08\x00\x4f\x49\xe1\x16\x86\x35\x00\x37\xb3\xe0\xb0\x18\x5e\x87\xc9\x79\xc7\x58\x07\xc0\x63\x9f\xc5\xc6\x68\x06\xe0\x39\x99\xb1\x42\x08\x3b\x64\x9e\xe2\x17\xc2\xcf\xe7\xa9\xf2\x42\xd3\xe9\x3c\x0c\xf6\x41\x89\x18\x1e\xdf\xdf\xf5\x1f\x7f\x22\x95\x17\x36\x0e\x09\x7c\x1f\xc4\x25\xab\x82\x7d\xaf\x78\x5b\xcc\xf7\xb3\x50\xf0\x9c\xbb\x1c\x0b\x85\x96\x07\xe2\xba\x11\x3e\xba\x0a\x7b\x9c\x09\x5f\xda\x3d\x17\xa1\xef\xed\xe2\xe3\xd2\x62\x10\xfa\x72\x62\x54\xf7\x65\x67\x84\x7a\x75\x47\xbf\x69\x68\x45\xe8\xfd\x0d\x69\xbf\x4e\x11\x84\xde\xdc\x64\x60\x25\x72\x8b\x2b\xa3\x15\x80\xe7\xe1\xad\x08\x39\x25\x00\x7e\xbd\x72\x29\x39\x33\x00\xfe\xb1\xb4\xef\x4d\xfe\x57\xb9\x17\x00\xfc\xcf\xce\xbd\x97\xbb\x0b\xc0\x7f\x2a\xfb\xa3\x9c\x1f\x00\x5f\xd3\xe9\x33\xf2\xcf\x00\x04\xb6\x9c\x9c\x21\x5b\x0e\xc0\x5b\x94\x9a\x29\x5b\x01\xc0\x7b\x28\xc5\x5c\xae\x03\x80\xaf\xec\x30\xbf\xac\x39\x00\x4f\xec\xdf\xe2\x1f\xc1\x7f\x8f\xe0\x81\x07\xf9\x50\xc2\x7b\xd3\xbc\xa8\x40\xa1\x00\xd6\x2e\x8a\xea\xca\x62\x5d\xc9\xa8\x97\x86\x38\x5e\x69\x69\x57\x7c\xbf\x24\x6d\x3a\x83\x1f\xa1\xaf\xb5\x32\xad\x61\x63\x39\xbe\xf7\x8e\x92\xe5\xdf\xd6\xc7\xb3\xb5\x8b\x5f\xb6\x22\x45\x82\x7f\x4c\xc7\x07\x39\x83\xbc\x24\xc1\x69\xcf\x23\xe5\x0e\xd4\x88\x0b\xdd\x7a\x2a\x25\xaf\xf0\xec\xae\xb0\xfb\xe3\x4a\x85\x09\x03\x4c\xa1\xac\x06\x35\x25\x53\x00\x91\x9b\xe5\x62\xca\x5e\x00\x62\xdc\x97\xae\x29\xb7\x01\x88\x4d\x3e\x2f\x82\xfb\x60\x49\x67\x73\xa8\x0c\x00\x88\x9d\xa5\x75\x2f\x69\x0d\xca\xb5\x00\x22\xe7\x8f\x2b\x2a\xb5\x03\x08\xcf\x4a\x49\x50\x6a\x04\x10\x16\x3b\xd0\xac\x74\x00\x40\x68\x49\x72\x99\xb2\x08\x80\xd0\xe5\xbd\x6b\x14\x3f\x01\x08\x7a\xfc\x87\xf8\x47\xe8\x20\x68\x1e\x94\xd6\x03\x88\x09\x53\x38\x9a\x3c\xb5\x48\xd9\xb1\x61\xdd\xa0\xfc\x31\x71\xec\x27\xa6\x28\xa2\x71\x99\xfd\xc3\xf7\x03\xca\xd3\xed\x62\xb8\x6a\x7a\xd6\xa9\xd6\x4f\x9c\xcc\xf7\xf9\xb5\xb8\xba\xea\xa2\xe3\xc2\x72\xcf\x95\xd4\x17\x6c\x6a\x11\x6b\x79\x74\x5b\x7d\xd5\xbe\x38\x49\xdd\x7b\xaf\xd5\xa5\xb2\xa3\xa5\x76\xde\x8e\x56\x7b\x5f\x2e\x20\xe3\x50\xff\x48\x5d\xba\x65\x09\x43\xe4\xd6\x42\xf5\xf6\x4f\xe3\x64\x0e\x56\xd4\x69\xe6\x03\xc8\xd4\x17\x7e\xd5\x5a\x0a\x20\x53\x45\xf7\x7b\x4a\x3f\xa6\xed\x07\x20\x5d\x9a\x7a\x41\xdb\x0d\x40\xea\x6b\xca\x1a\xed\x99\x00\x52\x4b\x0f\xa9\x6b\x07\x03\x8c\xfe\x96\x9c\xac\xd5\x0c\x20\x59\xb9\xd7\x43\xb3\x0c\x60\x94\x62\xfc\x66\xf5\xaf\x00\x62\xef\x76\xff\x54\xbf\x09\x20\xb6\x33\x36\x5c\x83\x0d\x40\x4c\xe5\x2f\xf5\x3f\xf2\xbc\x93\xf3\x2d\x46\x9e\x8a\x68\x3e\x58\xe9\x18\x85\xea\x2b\xd1\x30\x7e\x58\x57\x99\x57\x17\xa1\x2f\xdc\x46\xa3\x15\x3c\x39\x1e\xbc\x79\x6d\xe4\x69\x3a\x4a\xd0\xbe\xcd\xd3\x38\x6d\xfc\x0f\xb1\xe4\x16\x51\xe3\x33\xb3\x52\x46\x6f\x6e\x2a\x36\x56\x5c\x55\x23\xcb\xa8\x35\x31\x9a\x16\x67\xa0\xa8\x7a\xfd\x8a\xa1\x4f\x5a\xa6\x8a\xfc\xb5\xb1\x06\x5b\x8b\xd6\xaa\xb9\x96\xbc\xd4\xff\x74\x7b\x96\xba\x6d\x11\xd3\xc0\xa7\x4b\x50\xdd\xed\x42\xa2\xe1\x11\xe8\x51\x7d\x94\xb5\xc2\xe8\x02\xf4\xab\x7a\xa7\xb2\x99\x70\xc2\x0f\x55\xbe\x43\x9d\xc6\xe3\x00\x94\x0e\xef\x57\x33\xaa\x06\x50\x94\x4c\x7c\x63\x74\x14\x40\xfe\xf5\x9e\x35\x86\x39\x00\x72\x3c\x3b\xb9\x0d\xe5\x00\x18\xa1\xdb\xbf\x18\x58\x03\xc8\xf0\x6d\xad\xd3\xaf\x02\x90\xea\x8a\x9e\xa1\xf7\x08\x60\xf4\xd6\xc8\xeb\x7a\x81\x00\x92\xbb\xfe\x1d\x3f\xfd\x14\x28\x4e\x78\x5f\x05\xa2\x03\xa2\xf9\x60\x7a\x15\x8d\xe2\x05\x07\x64\x6d\xf1\x53\x62\xef\x28\x07\xcc\x8b\xbe\xda\xea\x76\x48\x9a\x89\xd0\xa3\x67\xce\xb3\x74\x7e\x09\xde\x6a\xd2\x70\xf4\x70\x78\x28\x75\xa3\x3a\xc5\x61\xff\xe4\x57\xf2\xd7\xca\x5a\xec\x67\x2e\x59\xa5\xaa\x7b\xf9\xa6\xed\xbb\x2d\x5b\x34\x7b\xf3\x99\x36\xb3\x0f\x1f\xd5\xcd\xc8\x19\xb0\x56\xca\xdb\x6b\x30\x31\x5b\xc7\x4a\xf5\x66\xa2\xe1\xa3\x0c\x4d\xcb\x7b\xed\x8d\x46\x72\xe9\xe3\xad\x3a\x21\xda\xe0\xeb\xe1\x08\xeb\x53\x90\xa6\xb7\x7b\xef\x17\xeb\x83\x50\xae\xfd\x3e\xee\x90\xcd\x5c\xa8\xd7\x7a\xb0\xe3\x96\xd5\x0d\x78\xaf\xbe\x7c\xeb\x53\xab\x67\xf0\x55\x6d\x7c\x74\xbf\xe5\x05\x00\x95\xb1\x91\x09\x96\xcf\x00\x94\x97\x6c\x9c\x62\xf1\x02\x40\xf1\xf4\x3a\x75\xf3\x68\x00\x79\xa7\xb5\x07\xcd\xfc\x01\x64\x33\x57\x95\x98\xe6\x03\x30\x5c\xfe\xcc\x03\x1d\x3f\x7d\xfe\x95\xdb\x86\xc7\x4d\xf3\xc1\xce\x78\xdf\x76\x5f\x98\x3b\x5e\x05\xe9\x6a\xf6\xc1\xc7\xcf\x23\x27\xe2\xa7\xd9\x07\x65\x53\x93\x44\x26\x22\x54\xb7\x7b\xf2\x4d\xd5\xf1\x02\xec\xe5\xd1\x7e\xfa\x96\x46\x52\xfc\x85\x27\xbd\x4a\x3d\xd5\x55\xcf\x9d\x73\xf2\xa8\x08\x2a\xd3\x31\x3d\x7d\x7e\xfc\x83\x75\x7c\x86\x19\xc7\xbf\x8d\xed\x48\xdc\x67\xfa\xeb\xf0\x0e\x37\xce\x2c\x6d\x4b\xb4\x5f\xc3\x25\xa5\x3c\xd4\xea\xf3\xde\x32\xe7\xc7\x8f\x76\x5a\xa7\x26\xa4\xb9\x48\xf7\x7d\xb6\xaa\x89\xfd\xec\xf2\x10\x1c\xcc\x53\xa3\x8f\xba\xaa\xc1\x62\x93\x1d\x1b\x73\x5d\xbc\x60\xaf\x21\xd7\x7a\x79\xa7\x16\x28\xd0\xed\x59\x7d\xcc\x29\x00\xea\xb4\x17\x84\x7f\x76\x92\x80\xfb\x5a\x73\x56\xe4\x3a\x6a\x41\xaf\xba\x43\x98\xb6\xc3\x31\xf8\xae\x26\xb2\xec\xb2\x3d\x2f\x80\xf2\xfd\x50\x51\xdb\x7d\x00\x8a\x4b\x17\x7f\xb1\xcd\x00\x50\x58\xf7\xe7\xf8\xa7\xeb\x5e\x85\x20\xad\x03\xb2\x27\x48\xf1\xa1\xbd\xad\x93\xb0\x7b\x68\xe7\xc7\xe9\xd8\xef\xa0\x75\xc2\x6c\xbc\x9e\x7b\x67\x33\xe5\x13\x52\xd3\xb3\x50\x91\xf3\x01\x42\xa5\x2d\x0b\x83\x65\x5f\xf2\x48\x17\xa8\xcf\xad\x32\x9c\x3b\x6a\x77\x46\xc7\xac\xb3\x2e\x5b\x94\xaf\xa7\xcc\x0e\x08\x98\x16\x65\xd0\x9d\x74\x7d\x6a\xe3\x72\x0f\xf3\x98\x38\xad\xc9\xc7\x76\xf8\xd8\xac\x88\xb9\x39\xf1\x58\xea\x0a\x07\x99\xa8\xd9\x7e\x9c\x97\x7f\x8c\x09\xd9\x50\x34\xe1\x75\xf3\x5c\xa7\xfd\xeb\x74\x26\x6c\x7d\xff\x6c\xcc\xbb\xd5\x6f\x26\x3c\x65\xde\xb1\x6f\x0e\x3b\xe5\xd3\x01\x52\xd6\x1c\xa1\x6d\xde\x21\x30\xc1\x2c\x2f\x78\x87\xd7\x53\x58\x66\x22\xb2\xf8\xb6\xc7\x0b\x48\x30\xd4\x5a\x70\xdf\xfd\x23\x9c\xd1\x5b\xbf\x20\xcc\x5d\x11\x2e\xe9\x4e\x9c\xb7\x7e\xec\x21\x78\xa8\x99\x10\xf4\xc9\x6d\x32\xbc\x55\xdf\x35\x47\xdc\x4d\x0f\x7a\xd5\xf6\x05\x26\xbb\x9a\x00\xa8\xec\xfd\x1d\x3f\x7d\xfe\x55\x86\xd5\x3b\x80\x1b\x5e\x2d\xfd\x71\x7c\x22\xf6\x33\xe8\x59\x32\x1d\xf3\x94\x1d\x15\xf3\x30\x31\xfc\x70\x5f\x30\xde\xcf\xdd\x74\x63\x39\x3e\xbe\xd1\x16\x8e\xfd\x41\xae\x04\xac\xc6\xeb\x97\x79\xcc\x88\xd9\x92\x77\x11\x4a\x0f\x5e\x25\xae\x39\x49\x34\xfa\x50\x74\xd8\x04\xdb\xaf\x0a\xe3\x76\xeb\x2e\x39\xe8\x7b\x48\x8f\x33\xca\x6c\xa1\xef\x02\x05\xab\xbe\x35\xf3\xe7\x3d\xda\xd4\xea\x70\x75\x19\x04\x15\x1f\xa8\x73\xbe\x17\x6c\x37\x3b\xe3\xfc\x75\x37\xc7\xf9\xef\x67\xcd\xa8\x8d\x1d\x5b\x18\xc4\x0c\xcc\xed\xd8\x38\x76\xde\x9c\xb1\xb3\xb8\x99\x21\x2e\xbd\x81\xab\x67\xf2\x32\x4b\x1c\x6e\xcc\xd8\x1e\x90\xc3\x64\xda\x48\x04\x68\xf8\x5b\x82\x9e\xc5\xb6\x69\x6d\xd3\x16\xc3\x38\xb3\xe0\x69\xe3\x27\x33\x21\xc4\x78\xd6\x94\x93\x93\xc4\x61\x8f\x81\xc1\xe4\xf3\x7e\xcb\xe0\xb4\x6e\xcb\x64\xde\x09\x77\xa1\x58\xbb\x6e\x62\x8f\xb7\x07\xdc\xd7\x38\x37\xf1\xb0\x57\x34\x3c\x55\x2f\xff\x33\x7e\xab\x5e\x0a\xdd\x29\xfd\x4f\xea\x64\x7c\xdd\xe8\x36\xa2\x56\xc7\x5e\x08\x84\x62\x36\xe1\xa1\xe0\xca\x7a\x16\xd6\xcf\xa1\xfc\x60\x2a\xdb\xa9\x3e\x41\xc5\x1c\x51\x98\xb7\xcb\xc9\xdb\x8a\x5f\x3f\xa9\xbf\xdd\x8d\x6f\x03\x42\x07\xf9\x63\x6e\x2a\x46\x09\x78\xec\xda\x1a\xed\x64\x36\x5f\x66\xf3\xa6\x09\x9b\xb6\xb9\x2f\xd3\x34\x5a\x9e\xb0\x8e\x73\x56\xb2\x99\xef\xfc\x81\xd5\x77\xd6\xbc\xb5\x93\x9c\x25\xbd\xea\xd0\x5e\x0d\x87\x3a\xff\x77\xe1\xae\x67\xc5\xc7\x2c\x9b\xa2\xb7\x52\xa5\x2a\xdb\x89\x6d\x62\xc3\x8a\x2b\xcf\x8b\xc7\xb8\xfb\x7d\x5a\xa9\xc1\x7c\x62\x1f\xe7\x7b\x64\xe9\x2b\x90\xb5\xea\x9a\xf0\x3a\xf8\x1e\x8c\x33\xdf\x31\xc1\x79\x41\x1d\x2c\x31\x99\xe3\x73\x64\x5e\x29\x44\x1b\x2d\xf1\x56\x99\x1b\x0c\x29\xfa\x1f\xbd\xd4\x66\x7f\x83\x0b\xba\xf1\x9e\xc2\x81\x7b\xe1\xa6\xb6\xa1\xc7\xb5\xe9\x47\xe0\x81\xe6\x2a\x8f\x8f\xfe\x3a\xd0\xaa\x11\xe3\x71\x7e\xca\x43\xe8\x54\x37\xfe\x3d\xfe\x47\xc4\x1f\x3a\x1d\xf7\x07\xf9\xd0\xbc\x10\x8f\xff\x76\x51\xaa\x3f\xc4\x83\x0b\x11\x78\xfe\x68\xb8\x16\x89\xd7\x33\x2b\x8d\x62\x70\x1d\x5c\x4e\x8a\xc5\xab\xcb\x67\x81\xe2\xc9\x4f\x74\x25\xe2\x5d\x67\xc9\xaa\xfb\x0c\x59\x18\x27\x9a\x9c\x2c\xdd\xc9\xb1\x7e\x63\xce\xde\x95\x7a\x6b\x24\xce\x2f\x7b\x1d\x6f\xea\xec\xa3\xac\x32\x67\xff\xae\x6d\xfe\x8b\x0c\xac\xa7\x85\xc4\xd6\xaf\x5c\x68\x7a\xc5\xb7\x6b\x47\xd2\x1e\x4d\x8b\x05\x9e\xcf\xb6\x47\x67\x1e\xb5\x42\xe3\x0d\xb6\x6d\xac\x9c\x6d\x15\xe1\xf6\x32\xe6\xf1\xd3\x18\xcb\xb3\x6e\xd3\xb7\x29\xfe\xac\x37\x9f\xe2\x66\x17\x35\x0e\x56\x99\x70\xbb\x36\xad\x17\x86\x03\x86\x7c\x2e\xab\xd7\x54\x43\x91\xee\x7d\xd7\xa8\xf0\x70\x28\xd6\xcd\x77\x2e\x5e\xb1\x0c\xee\x6b\xe5\xb9\x4c\x59\x7a\x19\x5a\x35\x9f\x38\xb7\x86\xbc\x83\x2e\x0d\x43\x67\x9f\x45\x37\xe0\x9b\xda\x54\x27\xbf\xf9\xef\x01\x54\x6c\xc7\xe4\xcc\x9b\x0d\xa0\xcc\xfd\xbb\xfe\xa9\x71\x4f\xc7\xdf\x93\x14\x8c\xd7\x27\x9f\xdf\x59\x85\xf7\x7f\x3f\x68\xa7\xfa\x23\xd5\x77\x6d\xc3\xfc\x75\x79\xca\x4e\xcc\xcb\x5c\x36\x48\xa4\xfc\x0f\x2a\x29\x7d\xc0\x49\xa3\x03\x38\x5f\xfb\xf3\x53\xf0\x6a\x63\xec\x52\x8a\x2f\xdf\xb8\x33\xed\xa3\x70\x18\x42\xcb\x4d\x4f\xa8\xab\x59\x0b\x4d\x08\x3a\x72\x2c\xc7\xe6\x07\xe3\xd0\xc4\x97\x47\x8a\xfd\x9e\x6b\xca\x7a\xaa\x1f\x7e\xb7\x34\x58\x27\xdd\xf5\xd9\x61\x91\x58\xd0\x57\x76\xfc\x70\xc8\x38\x5d\xc8\x60\x95\x5d\xd0\xc1\x85\xd7\x78\x0c\xae\xdb\xd8\x1f\xe8\x7a\x7c\xc2\x80\xc3\xfa\xcc\x81\x6f\xdf\xcb\x75\x93\xac\x37\x24\x7e\x82\x07\x5a\x91\xd6\xfc\x71\xb3\xe0\xbd\x86\xa6\xf5\xaa\xed\xcb\xa0\x4f\x5d\xd9\xda\x6e\xcb\x7b\x00\xd5\x4a\x6b\xfd\xc8\x65\x00\x2a\x9e\x36\x7c\x1b\xd8\x00\x54\x8c\xad\xce\x45\x48\x00\x28\x36\x5a\xdd\x5d\x1d\x06\xa0\xa8\x63\x75\x6d\xe5\x54\x00\x05\x6d\xab\x8a\x65\xf7\x00\xe4\x95\xe8\xf3\x0f\x2e\x33\x70\x3e\x68\xfd\xd7\x8b\xf6\x08\xbc\xda\xfd\xd0\x3f\x1a\xaf\x6a\xd6\xf9\xec\x6c\xa2\xea\x3f\x01\xd7\x7b\x51\xef\x7e\xec\x0b\x93\x6b\x77\x04\xaf\x32\x9f\x7a\x79\x1c\xd7\xc3\xa1\x62\x8a\x5d\xd8\x3d\xf5\x34\x66\x15\x36\x89\x66\xe3\xf9\x24\x14\x9d\xc3\xfd\x10\xe6\xfa\xe5\x4a\xca\x16\x73\x7b\x4d\x96\xcd\x71\x35\xf9\x24\x71\x74\xec\x83\x33\x7a\x9e\xfe\x0a\xbe\x8e\x01\xd9\x97\x17\xbb\x2a\xdb\x5a\xaf\xce\x36\x88\x39\xae\xea\x6f\xf6\x29\x6b\xc3\x09\x6f\xb5\x28\xe3\xbd\x99\xbf\x4a\x5e\xa8\xed\x36\xac\xcb\xf4\x6f\x09\x56\x7d\x66\x38\x23\xd3\xf5\xab\x9a\xf2\x0e\xc3\x93\x69\x0d\x00\x8a\xbb\x0d\x83\x8e\x4c\x01\x90\xaf\x34\xac\xd9\xcf\x01\x20\xaf\x6d\x98\xb2\xb7\x06\x40\xce\xc3\x28\x65\xcf\x0d\x00\xb9\x64\xe3\xe9\x3b\xd5\x00\xe4\x82\x0c\x83\xb6\xcb\x00\xc8\x1c\x32\xda\x1a\xbd\x17\x40\xe6\xa6\xe1\xba\xc8\x76\x00\x69\x5d\xc3\xe6\x0d\x62\x00\x52\x79\x90\x15\xb0\x02\x61\xff\xa7\x65\x98\xa7\xe9\x38\xb3\x1e\x63\x4b\x52\x0c\x66\xd7\x1a\xc2\xe2\xf1\xee\xc1\xca\xb9\xfb\x30\x7b\x56\x64\x70\x18\xb3\x29\xe7\xe2\x8e\xe1\xb8\x32\xaa\x4e\xe3\xf1\x91\x62\x91\x85\x79\xef\x84\x24\x8a\x27\xdf\xd2\x7e\x1e\xfb\x61\xaf\xf2\xbb\xe8\x8d\x70\xff\x8b\xcb\xf8\x7e\x6c\x8a\x5b\xc9\x32\x71\x19\x84\xc6\x09\x16\x77\xea\x8c\x12\x7c\x62\xd3\x58\xd4\xea\x3a\x57\xb2\xd0\xf4\x47\xd1\xe5\xa0\x46\xa9\xf7\x06\x17\x8a\x0e\x46\x1d\x94\x29\xd4\xd9\x5c\xe4\x71\xd4\x8a\x31\x53\x73\xef\xe5\xaa\x22\x6d\x86\x8e\xfa\xc7\xcb\x93\xee\xed\x95\x19\xa3\xbe\xfb\xd2\xc7\xcf\x6b\xa4\xb8\xd4\xb5\xf3\x0d\x01\x46\x05\x69\xec\xc9\xde\x05\x20\x39\x43\x63\xde\xa9\x14\x80\x51\x3b\xd4\xe3\x8f\xff\x00\x90\x90\xd4\x58\x9a\xc2\x01\x20\xb1\x4f\x6b\xe5\x81\x85\x00\x92\x6a\x9a\x4a\x49\x8a\x00\x12\x7a\x9a\x91\xf1\x79\x00\x12\x12\x1a\xf9\xbb\xfa\x00\xc4\x6e\x6a\x89\xed\x58\x05\x20\x7e\xe8\xe3\xd5\x65\x8b\x59\xbf\xef\x75\xe8\x26\xcc\x8a\x3c\x32\xdc\x81\xc7\x75\x43\x0b\x75\xde\xaf\x27\xed\xc7\x75\x72\xe5\xdb\x31\xcc\x36\xe5\xcd\xa1\x74\x40\x99\xde\xd9\xf8\xf8\x58\xd3\x39\xcc\x42\xee\xf3\x29\xc0\xf7\x97\x3b\xae\x52\x3e\x29\xeb\x8f\x16\x77\xb0\x70\xc9\xc4\x52\x9c\xd7\x80\xed\x15\x78\xdc\xb8\xbc\xad\xbe\xca\xce\x86\x90\xf5\xa3\xea\x8f\x8a\x2f\xb9\x27\x18\x2c\xac\x8e\xb3\x1d\x10\xda\xa7\x75\xba\xfa\xe5\x0c\x39\x11\x03\x35\x85\xea\xd7\xeb\x96\x8a\x0a\x2b\xd5\xd4\x88\x1e\xf8\x28\xea\xa8\x30\xb7\xba\xe3\x42\x8c\xc8\x01\x79\x99\xea\x6b\xcd\x3a\xc2\xa1\x72\xe7\xab\xe7\xf7\x22\x41\x6b\xb9\xdb\x15\xb6\x00\xfc\xc9\xf2\x72\x45\x91\x00\xfc\xad\x0a\x7a\xf9\xa7\x01\x04\xd9\xe5\x8f\xe7\x6c\x07\x10\x50\x90\xff\x9a\xf9\x0a\x40\x60\x92\xc2\xab\x53\xd7\x00\x04\xf5\xe5\x9d\x53\x67\x00\xf0\x0b\xc8\xdf\x4c\x89\x02\xe0\x0f\x55\x50\x39\x98\x02\xc0\x1f\xaf\xe0\xb9\xef\x23\x00\xff\xba\xd7\x3d\x9b\xf0\x2e\xf9\x27\x53\x63\xf1\xf9\x6c\x62\xee\xc5\xd7\xc9\xaa\x77\x87\xb1\x1e\xa6\x24\x23\x0d\xf3\x17\x05\x9d\x59\xf8\x7a\x98\x35\x2a\x07\xfb\x80\xa4\x42\x01\xbe\xbf\x3c\x60\x74\x09\x8f\x83\x38\x9f\x2b\x7b\x58\xb8\x79\x6a\x19\xae\x8f\x95\xfd\x94\x4e\x60\xde\x8b\x6a\xfc\x7d\x13\xed\x29\x5d\x88\x8d\xfd\x6d\xcc\xc6\xe8\x29\xdd\x4d\x1a\xb5\x0f\x21\xe5\x86\xbb\xb9\x26\xf6\xdc\xab\xe5\x3d\xee\xad\x98\xe4\xcc\x7d\x9a\x31\xfb\xbe\x50\xb8\x04\xb7\x80\xf4\x9b\xfb\xdb\x93\x54\x39\xc3\x19\xe6\x0f\x46\xe7\x95\x20\x24\x75\xf7\x7e\x41\xa3\x1b\x42\x92\x0b\xef\x87\xbd\xef\x44\x48\xdc\xee\xf6\x16\xd6\x3d\xa0\xe8\xf8\x1a\xcc\x98\x0a\x1d\xaf\xb0\xc6\xe8\x5d\x82\x99\x44\x81\xf3\x97\xf0\x3a\x05\x9f\x60\x01\x7e\x76\xe0\xbb\x71\x0e\xdf\x3b\x73\x97\x66\xe1\x75\x07\x6e\xab\x74\xcc\xa4\x70\x26\xa6\x61\x9e\xbc\x35\x65\x27\xa6\xcf\xee\x1c\xa0\x7c\x41\x6a\x8e\x1d\xc3\x75\x51\x3a\x3b\x1d\xb3\x41\x05\xcd\xd9\xd8\xf7\xfd\xcc\xc9\x7c\x3c\x1f\x9e\x8c\xbd\x84\x75\xc6\x87\xaf\x97\xe0\x7d\xff\x89\x62\xe5\xf8\xba\xba\xad\xef\x06\xbe\xaf\x5a\xd7\x41\xf5\x51\x09\x7d\x59\x87\xc7\xd1\xcc\x97\x4d\xb8\xdf\x90\x67\xd2\x5d\xfc\xfd\x66\xd3\x1e\xe1\xef\x91\xd1\x6d\x8b\x63\x1b\x87\xd0\xa8\xbc\xe7\x57\x34\xd4\x11\x12\x73\x6d\xcf\x72\xe7\x43\x48\x68\xc1\x8b\xc4\x60\x25\x84\xf8\x4d\x5e\xdc\x8c\xbd\x87\x10\xcf\xc3\x97\xd3\x33\xe5\x11\xe2\xf2\x7f\x19\x5d\x75\x14\x21\xf6\xdb\x2f\xcd\x3b\xaa\x10\x42\x02\x6d\x1f\xa0\x0f\x21\x34\xeb\x3e\x5e\x4f\x42\xa8\x91\x30\x68\x37\xf1\x3a\x05\x32\xbf\x9e\x4c\x1d\x97\x11\x9f\x87\x62\xaa\x33\x43\xcc\x45\xf2\xf9\x5c\xb2\x43\xff\x6c\x34\x5e\xd7\x70\xdf\x8f\x7d\x5c\x6a\x0f\xa7\xce\xc6\xf1\x3f\xcd\xc0\xba\x87\x8b\x77\xce\x8d\xa6\xae\x03\xd4\x6e\xe9\xf4\x39\x25\xb8\x8b\xc2\x48\x1d\xd0\xce\x26\x2a\xee\xcd\x88\xda\x45\x1d\x9e\x79\x1b\xcf\x97\x0b\xbb\xa9\xb8\xfd\xc5\x1e\xe2\x79\xc2\xf5\x31\xc5\x36\x1a\xb4\xbf\xc0\x75\x32\xca\xbf\x0b\x8f\x3f\xb6\xdd\xdd\x02\xe2\xf8\x13\xdd\x15\xd6\x78\xa7\x79\x4f\x6d\x20\xfe\xcb\xbd\x53\xa2\xf0\x88\xeb\xad\xa2\xae\x38\xbd\x55\x65\x6e\x78\x26\x93\x7f\x86\xf9\xbb\xee\x58\x8a\x49\x7f\x49\x7c\x1c\x1e\x13\x46\xf9\x5e\x1e\x85\x4d\x44\x17\x72\x93\x30\xcc\xd7\xc9\xce\xec\x6b\xe3\x28\xbc\x32\x11\x86\xe8\x62\x1a\xc4\xa9\xba\x2f\xff\x99\x85\x7f\xff\xa5\xf7\xe7\xf1\xbc\x78\xfe\x62\x21\xbe\x5f\xce\x6c\xa0\x74\x01\xa9\x70\x1d\xcf\x17\xb4\x0e\x28\x3e\xb6\x01\xf7\xc9\x88\x39\x7a\x1b\xeb\x22\xd6\x89\x53\x71\x2f\x5d\xf7\x10\xf3\xc1\x73\x8d\x5a\x31\x4f\x3a\x69\xc2\x0b\x3c\x5f\x38\x45\x75\xe2\xeb\x8a\xde\xb4\x0f\x78\x17\xbb\xb8\xcf\x67\x7c\x1f\x86\xd0\x80\x9d\x20\x56\x0a\xfc\x38\x6e\x26\x85\xf0\x95\x7b\x1a\xde\xd1\xf0\xcb\x77\x1d\x66\xe2\x7f\xa5\x50\x3c\xe6\xaf\xf7\x45\x94\x3f\xbf\x0f\xa5\x7b\x60\x7a\xfd\xc2\x23\x95\xf6\xb9\xe8\x24\x79\x68\xcb\xfd\xcf\x79\xb9\x45\xf4\x22\x55\x89\x14\x96\xe3\xf7\x2b\xa2\x88\x0e\xac\x2c\x1f\xdf\x0f\xe4\x1f\xa5\x7c\xa0\xce\x1c\xab\xc0\x67\xe3\xa4\x43\x35\xd6\x4f\x1f\x0e\xad\xc3\x3e\x74\x89\x4b\x9b\x30\x7b\xb8\xd3\xf7\x3e\x1e\x3f\x51\xc6\x0f\x31\x1f\xbc\x5a\xf9\x29\xee\xbf\x19\xdc\xd4\x86\xef\xc7\x66\xe9\x76\xe2\x68\x7c\x5d\x28\x16\xd1\x7e\x75\x2f\xce\x9f\x76\x13\xa5\x0b\x11\x53\x60\x2a\x50\x79\xf8\xb7\x0e\x24\x8c\xe8\x62\xf6\x90\xfd\xee\xd9\xe4\xc9\xbe\x8a\x74\x7e\x6c\x1f\xb2\x5f\xff\x37\x9f\xdf\x6d\x34\x22\x2f\x69\xff\xc8\x8b\x35\x0c\xd1\x0b\x5d\x3d\x42\xf5\xc3\xbb\x90\x59\x82\xe7\xb3\x1c\xdf\x1b\xf8\xbc\x65\x78\x12\x1d\xd0\x1a\x4a\x07\x94\x9c\x7c\x0f\x7f\x6e\x8f\xd2\x43\x7c\xff\x18\xd3\xf6\x0c\x5f\x0f\xd7\x3f\x69\xc7\x51\xac\x68\xed\xc4\x7a\xa0\x05\x7b\xde\x61\x5e\x7c\xba\x1d\xd5\x2f\xca\xcb\xef\x33\xbe\x8e\x58\x3f\x1a\xc0\xcf\xef\x9a\xbf\x00\xfb\x6a\x0c\xd5\x3f\x0c\xea\x40\xb8\x28\xf4\xd8\x48\x21\xad\x03\x89\x26\xba\x98\x14\xd2\x01\xef\x22\xd1\x7b\xd0\x3e\x20\x1d\x84\xc7\xa5\xbe\x99\xf6\x89\xe9\xab\xa0\xf0\xc3\x62\x92\x97\xe0\x7f\xe4\x05\xfb\xe4\x5c\x4e\xba\x46\x66\x8d\x1a\xac\x8b\xce\x58\x4e\xcd\x6f\xa9\xc5\x77\xf1\x3c\x78\xc0\x88\xd2\xc3\x24\x86\x3d\x29\x62\x61\xec\xdc\xe7\xb8\x1b\xc7\x66\xff\x4e\x5c\x07\x6b\xda\xbb\xf0\xfb\x4b\x37\xf4\x60\xbd\xf9\xdc\x9d\x9f\xb0\x8b\xcb\xb4\x03\xdf\xb0\x7f\x90\x7b\x13\x13\xd7\x1b\xed\x8f\xa3\x46\xfa\xc8\x08\x49\xc0\x9f\x3a\x10\x72\xde\x07\x75\x20\xc4\xf7\x62\xcd\x79\x0a\x13\x88\x33\x22\xcd\x6b\x97\x10\x7f\x90\xdb\xc4\x21\x90\x52\x66\x0d\xf7\x75\x60\x8d\x33\x0a\xff\xd1\x27\x88\xe4\x25\x9f\xff\x26\x9e\x17\x69\x1d\x14\xad\x03\x3a\xb2\xff\x31\xfe\x6b\xfb\xe0\x39\x9e\xff\xf6\x98\x53\x3e\x50\xdb\xae\x77\xe1\xeb\xe2\x26\x05\xea\x7c\xaf\xca\xa7\xd4\x04\x21\xcd\x03\xf8\xba\x19\x14\x4c\x9d\x15\xda\x17\xc6\x85\xf8\x64\xd0\xfa\x07\x65\xf2\xd7\xf9\xee\x0f\xc9\x03\xe9\xff\xa2\x7a\x92\x42\x5a\x07\x32\xe5\x21\x1a\xc6\xf7\x53\x4f\x6e\xbf\x75\x0f\x39\x84\xd7\x2f\xfb\x40\x61\x23\xc1\x56\xd2\x31\xf3\xbd\x09\xfa\x43\xe7\x30\x44\x57\xd6\x34\x34\x2f\xb4\x0e\x2a\xbd\xac\x05\x67\xfb\xf8\xeb\x36\x5c\xbf\xfb\x37\xbc\xc0\xf5\x11\xff\xe1\x0d\xce\xc3\xce\x35\xbd\x58\x0f\xb6\xf9\xd6\x67\xfc\xaf\xd7\x47\x0e\xe0\xe7\xea\x95\xa4\x0a\x17\x98\x52\xb3\x77\xc0\x26\x18\xa6\x03\xa1\xfb\xa1\xd0\xfa\x30\x05\x76\x92\x87\xb5\xf0\x87\xfe\x81\xd6\xc3\x58\x12\xff\x0e\x5f\xa9\xe1\xe3\x63\x1d\xe9\x97\x32\xd2\x17\xe5\x3c\xf1\x85\xa1\xfd\x3f\x68\xfd\xc7\x03\x52\x57\x83\xfa\x8f\xdc\x7f\xe7\x25\x63\xff\x23\xfc\xe0\x9d\x3a\xbf\x0d\xeb\x82\x0e\xdf\x7a\x8d\xef\x93\xf6\xf9\xbc\xc7\xd9\xdd\x9d\x4f\xe9\xfd\xb6\x4f\x1b\xc0\xe7\x7f\x33\xa2\xe2\x1d\xa9\x03\x99\x4d\xfa\xdf\xd0\x7a\xa0\x71\xa4\x8b\x17\xad\x8b\xd2\x5b\x40\xa1\x1c\xf1\x53\xe1\x5d\xf6\x67\x1e\x68\x1d\x88\xf1\x5b\x0a\x47\xf6\xc7\x09\x23\xb8\x85\xc4\x47\xeb\x83\x68\xbd\xd4\xa0\xfe\x83\xe8\xa5\x6e\x14\x53\x48\xeb\x3f\x5e\x90\x3e\x32\xef\x49\x9e\x99\xde\xbf\xf3\xc1\xfa\xcf\x9e\xf0\xf4\xff\xf2\x01\xa1\xf9\x29\xda\xdf\x60\xa4\x0e\x84\xd6\x4f\xb8\xe9\x52\xe8\x4d\x5e\x0f\x58\x44\xe1\x42\xf2\xfd\x2b\x89\x8f\x41\x34\xf9\x7c\x02\xe1\x1c\x53\xc9\xef\x38\x4f\x7c\x23\xca\x09\xbf\x77\x87\x7c\xbe\x93\x70\xb8\x3f\x67\x21\xf4\xf5\x04\xf5\xff\x34\xdf\x4b\xf7\x81\x79\x4c\xb8\x47\x9a\xf7\x6e\x22\x1a\x83\x5a\xc2\x7f\xff\xa1\xff\x70\xa2\xb0\x24\x03\x0d\x72\x87\xff\xd2\xc1\xfc\xaf\xfe\x17\x83\x7c\x3f\xd1\x51\x0c\xfa\xa2\xfc\x37\x1d\xc8\x87\xe1\x79\xf8\x97\x1e\xe6\xad\xef\xef\xdf\x4a\xf3\xbd\xaf\x89\x37\xc6\x48\xfd\xc3\x48\xfd\xc7\xa0\xff\x85\x0d\x85\x65\x5f\x29\xbc\x4a\xf2\xf9\x37\xdf\x83\x7f\xc5\x4f\xf7\xff\xa7\xf1\x5f\x3a\x10\x9a\xcf\xfc\x9f\x75\x20\x2f\x87\xe7\x21\x9f\xf0\x82\x7f\xf8\xa2\x38\x22\x04\xa3\xa8\xff\xef\xb9\x48\x21\xad\x07\x1a\xd4\x3f\x90\xfa\x68\xb8\x3d\x3c\xfe\x91\xfa\x8f\xab\x67\x29\xa4\xf5\x0f\x17\x2e\x0c\xc9\xc3\x7f\xe9\x03\xf3\x5f\xfa\xa0\xfc\x51\x17\x63\x49\xbd\xfb\x11\x9d\xc3\x2c\xc2\x8f\xd2\x3a\x90\x48\x87\xbf\xe4\x21\xe3\xb7\x1e\x66\x50\x07\x42\xea\xa0\xe7\x27\x42\x3f\x4e\x52\xff\xff\x3e\x6f\xf8\x78\x18\xd4\x3f\xd0\xe3\x80\x68\xb2\xaa\xf7\x90\xf8\x47\xea\x3f\x84\x29\x2c\x24\x3a\x21\x9a\xff\xfe\x5b\x1e\x46\xf2\xff\xff\x42\xda\x27\xe1\x5f\x3a\x10\x7a\x9e\x08\x24\xf5\xb1\x94\x9c\x93\x91\x3a\x10\xba\x1e\xb0\x2f\x4a\xc6\x6f\x0d\x4b\x2b\xf1\x8f\xe9\xb3\xff\xad\x8b\xa2\xfd\x81\x68\x5d\x18\xad\x7f\x18\xd4\x7f\x90\x79\xa0\xa2\xe5\x7f\x8b\x3f\xc7\xe4\x77\x1e\x46\xf6\xc1\xf9\xa3\x0f\x0a\xe1\x39\x07\xf5\x10\x23\xfc\x2f\xe8\x7f\x47\xcf\xa7\xf4\xbc\xeb\x41\xfc\x90\x68\x1d\x48\x08\xf9\x77\x1b\xc8\xfc\x12\x4f\x34\x1d\x27\xc8\x39\xbe\xc0\x9a\x1f\xa2\x11\xba\x99\x8a\xd0\xaf\x26\x84\x9e\x92\xb1\x3e\x10\x8e\xd0\x27\x4d\xea\xff\x5f\x92\xdc\xd3\xda\xa9\x46\xd2\xf7\xa8\x66\xea\xff\x31\x7e\xa2\xf9\xc9\x1e\xa2\x41\x1b\xa9\x7f\xa0\xe3\xa4\xf5\x1f\x83\x3a\x88\x11\x28\x33\x42\x37\x43\x7f\x0f\xad\x03\x19\x4b\xce\xcd\x08\x1d\x08\x5a\x47\xf2\xb2\xc7\x90\x3a\xff\xac\x3c\xfc\x5a\x8f\xd0\x85\x33\x08\xfd\xac\xa1\xc6\xf6\xf7\x8d\x54\x1e\xbe\x27\x21\xf4\x4d\xf9\xf7\x78\x68\x93\x1f\x5e\x07\xf4\x38\xa0\xaf\x03\x83\xe3\x9f\xd4\x4d\x21\xd1\xda\xe4\x55\xfd\x3d\xfe\xd3\x43\x74\x62\x83\xf1\xcf\x18\x11\xef\x48\xfd\xc7\x08\x1c\xa9\x03\xa1\xbf\xe7\x0f\x1d\x08\xb9\x4e\xd2\xd7\x8d\xb5\xac\xb1\x9c\x85\x50\x9c\x27\x42\x3f\xa3\x10\x4a\x0d\x40\xe8\x5b\x02\x42\xf9\x69\x08\xf5\x8f\x42\xa8\xba\x15\xa1\xcf\xec\x08\x3d\xe9\x46\xe8\xd3\x2a\x84\xbe\x4e\x45\xa8\x93\xd4\xd8\x43\xa2\xfb\x69\x18\x4d\xe9\x5c\x68\x1f\x24\x3a\xfe\x4b\xe4\x3a\x79\x71\x26\xa5\x7f\x39\x6f\x4d\x1d\x9f\x21\xd7\xa6\xd3\xa4\x7e\xd2\x49\x3d\xa5\x0e\xd1\x4f\xfe\x4b\xff\x40\xeb\x3f\x48\x3f\x8c\x41\x3e\x98\xc6\x41\x3d\x88\xfd\xf0\x71\x43\xd7\x85\x2d\x19\xff\x9e\x05\x14\xce\x3e\xc2\x7a\x6a\x46\x28\x9c\x35\xef\x95\x20\xb4\x53\x01\xa1\xfe\x6a\x84\x52\x7a\x10\xfa\xf4\x16\xa1\x3c\x59\x84\x7a\x45\xa9\x39\xfe\xc3\x7c\x84\x5a\x23\x11\x62\x3d\xad\xf6\x7b\x23\xf4\x9c\xe8\xc4\xee\xdc\x41\xf8\x0e\xbd\x86\x8d\x0d\xdf\xb1\x97\x76\xb2\x75\xb2\xf0\xb2\x02\x17\xe6\x28\xf3\x2d\xd9\xdd\xf0\x79\x7f\xc4\x81\xf7\x5f\x64\x3b\x71\xe0\x3b\xbc\xd3\x64\x7c\x9c\xe8\x60\xc3\xfb\x50\x8e\x99\xb1\xe3\xcf\x1f\x19\xe2\x1f\x35\x32\xfe\xe1\x7d\x30\xfe\x3b\xd2\x79\x12\x0b\x27\x79\x25\xf3\xa1\x09\xdd\xaf\xed\x2b\x15\xff\xf4\x35\x08\x0d\xe8\x20\xb4\x3c\x05\xa1\xbe\x29\x08\xc5\xac\x42\xa8\x27\x9f\xfd\xcc\xe1\x0d\x08\xbd\x53\xe2\x52\x39\xf7\x05\xa1\xd7\xf2\x3c\x92\xd7\x33\x10\x7a\xd9\xcc\xeb\xf2\x98\x17\xa1\x76\x1f\xbe\x0d\x9f\x27\x22\xd4\x12\x23\x80\x9f\xab\x6b\xc7\x0a\xe1\x9e\x1d\x65\x7d\xa2\xb8\x83\xe7\xa5\x50\x91\x7e\x5c\xf7\x4e\x22\xd8\x0f\x27\xfb\x95\x10\xbe\xa3\xcd\x78\x28\x8c\x9f\xa7\x4f\x25\x08\xe2\x3c\xd1\xba\x97\x23\x27\xf8\x71\x1f\xb6\x43\x63\xf9\xb5\x59\x98\xfc\x8d\xe7\x03\x9d\x07\x3a\x7e\x3a\x9e\x7f\xc6\x3d\x8c\x0f\x1f\x44\x5a\x27\x81\xb8\xee\x0c\x1d\x2f\x6c\x26\xda\x63\x11\x02\x11\xf6\x7e\x87\x66\x84\xfa\x39\xf8\x0a\x27\xd7\x23\xd4\xed\x28\x5c\x1f\x92\x8c\xd0\xeb\x67\xe2\x25\x9b\xe3\x10\x7a\x71\x48\xf2\xce\x01\x1e\x84\x9e\x89\x48\x7d\x3f\x73\x06\xa1\xc7\x86\x32\x4e\xe5\x61\x08\x3d\xf8\xcc\x88\x7c\xb0\x09\xa1\xbb\xbd\x32\xe3\xba\x7d\xd9\x8d\xea\x55\x65\xf6\x01\x70\x2d\xa6\xfb\x80\x15\x72\x30\x1e\x03\xf0\x8a\x9d\x9b\x22\x3b\x0e\x80\x77\x6b\x86\x2f\x23\x13\x80\xc7\x37\x8d\x9d\x71\x1d\x80\xc7\xf5\xd8\x3a\x59\x43\x00\x9e\xa2\x14\x75\x59\x5e\x00\x9e\xf9\x07\x3d\x19\x6f\x01\x78\x78\xf7\x8f\x62\x7c\x01\xe0\x1e\x48\x9c\xcc\x68\x02\xe0\xde\xbe\x67\xb5\x6c\x38\x00\x8f\xe9\x7f\x3c\xff\xe8\x3f\xc5\x4f\x3f\x15\x70\x1b\x50\x48\xfb\x85\xf0\xb7\x08\x6e\x43\x68\x40\x5f\xf4\xa5\x72\x33\x42\xbd\xec\xd2\xd6\xd6\x31\x08\x75\xee\x66\x34\x78\x37\x72\xf4\xb6\x71\xc9\x6d\x9e\xcb\xe4\xd1\x7b\x18\x2b\x1f\x16\x11\xc6\x2f\x79\x67\x85\x82\xfc\x9e\xdd\x82\x2d\x0d\xb5\x0a\xf6\x27\x4b\x84\x1b\x6b\xa3\x14\xac\x8a\x2c\x45\x47\x57\xab\x28\xcc\x6e\xdc\x22\x5a\x71\x7d\xbd\xc2\xe3\xce\x75\xa2\x07\xcb\xc7\x28\xd9\x02\x88\x64\x5c\x54\x52\x9e\x00\x20\xba\x21\xdb\x41\x65\x26\x80\xe8\xd7\xb4\x46\x15\x75\x00\x51\xc9\x94\x2f\x2a\x62\x00\x22\xab\x0e\xd9\x29\xdf\x02\x10\x6e\x18\xd4\xbb\x18\x2a\x9f\x07\x10\x82\x3d\x2b\x94\xb8\x00\x04\xd1\x2e\x37\xc5\x7c\x00\x81\x05\x3b\xd2\x14\xe3\x00\x04\x38\x63\x26\x2b\x20\x00\xbe\x71\xff\x43\xfc\x23\x9e\x86\x84\xc8\xee\x98\x11\xba\x90\x68\x19\xac\x07\xe9\x8b\x97\xef\x63\x7f\x84\x50\xd7\x61\xb5\x27\x32\x3f\xd9\xa6\x3c\x17\xd5\xb0\x35\x38\xc6\x53\xda\xa2\xaa\x35\xde\x35\x50\x20\xb7\xc9\x4f\x3b\x24\xe0\x81\xc8\xc5\x9b\x6b\xb4\x77\x2d\x9f\x2e\x31\xb1\x32\x48\xdb\x68\xdb\xb2\xd1\xdb\x4b\x75\xb5\xce\xa6\x18\xc8\x08\x17\x15\x68\x69\xe5\x3d\x60\x34\x17\xda\x68\xd6\xd7\xc4\xc8\xd6\x14\x2c\xd6\xec\x69\x63\xc8\x3e\xcd\x8b\xd5\xfa\x38\x10\xc7\x28\xcc\x70\xd3\x79\x0d\xc0\xf8\x71\xcc\x52\x27\x0e\x40\x46\xfa\x80\xa5\x8e\x1f\x80\x54\x4e\xe2\x32\x1d\x3e\x80\xd1\x0b\x77\x8f\xd5\x0e\x01\x90\x14\x89\x0d\xd3\xb6\x06\x18\x65\xbf\x2d\x43\xab\x03\x40\x62\xcd\x96\x17\xda\xe2\x00\x12\x06\x51\x7d\x1a\x99\x00\xa2\x3b\x36\x35\x69\x9c\x02\x10\x35\x5b\x9f\xa7\x2e\x03\x20\xbc\xe6\xbf\xc7\xcf\xd7\x34\x2c\x5e\x90\x25\x3a\x10\x8a\x17\xfe\xf6\x45\x0f\xfb\x95\xf6\xd8\x18\x5d\x62\xe1\x2b\x51\x33\xbc\x1e\xf7\xa4\xc1\x3a\x51\x5c\x11\xa1\x66\x4b\xab\xc3\xea\xc0\x27\x57\x33\xc9\xe2\xa1\x8d\xa4\xd8\xc5\xb2\x01\xcb\x09\xbe\x8a\xa3\xab\x2e\xa7\x58\x2c\x5e\xa8\x24\x8b\xf2\xed\xcd\xc3\x37\x5e\x53\xe4\x3b\xeb\x6b\xb6\x77\x9f\xbc\x4a\x68\xc6\x01\xd3\xf4\x6c\x59\xb5\xbb\x27\x4f\x9b\xb4\x5e\xeb\xd2\x18\x9b\x7a\xc9\x24\xa2\x25\x5a\xe3\xf4\xb1\x52\x93\x87\x1f\x2f\xaa\x97\x1f\x0c\x37\x53\x85\x2f\x6a\x5c\x09\xba\x66\xfc\x00\xca\xd9\xb4\xcf\xc9\xd6\x5d\xa6\xe7\x00\x14\x14\xa3\x16\x9b\xd4\x03\xc8\x49\x6f\x2c\x32\xd9\x04\x20\xcb\x58\x57\x64\x12\x04\xc0\x70\x88\x50\x36\xac\x07\x90\x9a\x1f\xde\x69\xc8\x06\x20\x59\xbe\xf2\xac\x41\x36\x80\xa4\xf1\xf2\xfb\xfa\x41\x00\x12\x3b\xfe\x8c\x9b\x8d\x7d\xf8\x79\x97\xfa\x82\x86\xf1\xe1\xd4\x2a\xe2\x17\x13\x4b\xbc\x3e\xf7\xb6\x69\x0c\x5e\xfd\x79\x1e\xe9\x4a\xf9\x3f\xeb\x8d\xc7\x4f\xc3\xf5\xcf\x3d\xa3\x79\xed\x11\xba\xce\xef\xe5\xa7\xc0\xcb\x5d\x51\xb4\xc9\x5d\xdd\x84\x5b\xec\x74\xee\x64\xb7\x75\x6e\x9d\x72\x7e\x19\x4b\x5d\x27\xce\x3c\xa8\x9c\x91\xea\xe7\xdc\x1f\xbe\x5c\x63\xcd\xa1\x0f\x4e\xfe\xbb\xe6\xe9\xb8\xed\xbb\xe0\xf8\x34\xcd\x45\x5f\x33\x21\xd1\x21\xa9\xc8\xc5\xa0\x77\xb7\xa2\xfd\x93\xa6\x4e\xc3\xe2\x9d\xb9\xf6\xd5\x6f\xc7\x18\xea\x6d\x77\x77\xa8\x87\xd3\x7a\x3d\x51\xb2\x0e\xaa\x50\xaf\x6d\x1a\xd1\xe1\xc0\x09\x1d\x1a\x67\x56\x7f\xb6\x33\x05\xa6\xea\x86\x95\xf7\x6d\xf9\x00\x94\x55\xc2\x46\xdb\x72\x01\x28\x99\x2e\xfd\x69\x23\x02\xa0\x10\xb7\x64\x9d\x65\x3c\x80\x6c\x50\xf0\x54\xcb\x6b\x00\x8c\x9e\x85\x87\x2d\xcd\x00\x64\x72\xe6\xaf\x31\x07\x00\x69\x91\x3f\xe3\x17\xf9\x32\xfc\xbc\x6b\xe1\xb8\x99\xf1\x96\xf8\x7c\x7f\x94\x77\xc1\xfb\xfe\xdf\x28\x79\xe2\x81\xf1\xa4\x84\xf2\x07\xb9\xe3\x37\x15\xaf\x9e\xde\xac\xa1\xfa\xc6\x94\x99\xcc\xc0\xab\x6a\x97\x24\x66\x5f\x91\x6e\x47\xe8\x8c\xe6\x0c\x5d\x1d\x39\x11\x83\xd4\xd0\x69\x87\x1c\x96\x31\x6e\x25\x27\x4d\x72\x9c\x78\x4a\xe3\xc4\xee\x33\x7e\x33\x82\x9b\xf4\x94\xb6\x45\x4d\xf0\x8f\xde\x69\xb4\x33\xca\xd2\xfb\xc6\xa1\x2b\xa6\x5f\xd7\xf3\x7a\xcd\xca\xd3\xb1\xb0\x5f\xb3\xc8\x53\xf9\xa6\xab\xa5\x73\xf8\x11\x8f\xca\x76\x73\x4b\xb9\x95\x76\x9e\x11\xcc\xe5\xe6\xc6\xa1\x72\x1e\x79\x10\x65\x94\xb1\x28\xdb\x7d\x2c\x64\xeb\x1d\x99\x1f\x31\xae\x1d\x6e\x6a\x87\xcd\x9d\xeb\x56\x00\xaf\x34\xe4\x83\xce\xb8\xc9\xc0\x7b\x75\x83\x59\x11\xae\xbb\x60\x40\xd5\x2d\x30\xdd\x85\x0d\x40\x39\x7c\x66\xba\x93\x0c\x80\xa2\xc7\xcc\x32\x47\x05\x00\xf9\x38\x7f\x3d\x87\x43\x00\xb2\x71\xbf\xf3\x40\xc7\x2f\x37\xec\xbc\x33\x37\x3b\x62\x1d\x4c\xcf\x45\xca\x2d\xb6\xc3\x85\xda\x35\xf5\x68\xe3\x0c\xbc\x1e\xd3\x34\x3b\x08\xef\x73\xae\xaa\xa4\x56\x8d\x4a\x8e\x53\x7e\x19\x79\xbe\x4b\xf0\x6a\x52\xa6\xd1\xb2\xc3\x42\xbb\x11\x3a\x3a\x37\x34\x5c\x85\x53\xc0\x76\xaf\x68\xb0\x8e\x45\x95\xd4\xee\x6d\x73\x16\x04\x7b\xce\x54\xcd\x58\x67\x33\xa7\x6b\x8e\x92\xe1\xfe\x15\x62\xb3\xee\x45\xe8\x9a\xd5\x84\xf0\xcd\xbc\x9f\xe8\x6f\xb5\x6d\xfe\xa2\x19\x6e\x59\x63\x6d\xad\x66\xbf\x08\x68\x2d\xaf\xb3\x5b\x10\xc8\xe1\xff\xf4\xb1\x98\x9d\xd9\x8c\x6d\x01\x26\xfd\x9a\x36\xd7\x02\x24\xfc\xd5\xc1\xc0\x62\xce\xd4\x9a\x29\x3b\x61\xa1\x71\xc1\x94\xb4\x49\xa6\x10\x67\x30\x71\xa2\xbb\xdf\x4a\xc8\xd3\x89\xf3\xbb\x38\x61\x29\x54\x6b\xe9\xf9\x32\x7c\x6e\x43\xb3\x46\xc5\x84\x69\x5e\xe7\xe0\x95\x5a\xa0\x77\x86\x47\x36\x7c\x57\xae\xf2\x76\xf0\xd0\x82\x5f\xca\x9a\x5e\xaf\xc7\x6d\x02\x50\xa8\xfc\x5d\xff\xb4\x0e\x82\xe8\x80\x5c\x5c\x31\xff\xd6\x73\xd2\x07\xf3\xb3\x1d\xfa\xd3\xf1\xee\xc0\x87\xc9\xf3\xf0\x3a\x64\xa3\x44\x30\x5e\xfd\xba\xfe\x78\x19\x5e\x15\x2b\x0e\x09\xc7\xba\xa9\x3c\xae\xb5\x78\xd5\xf4\xb4\xc0\x7a\xcc\x1f\x1f\x0a\xdc\xb8\x8b\x2d\x08\xa1\x84\xc0\x4d\xcb\x18\x81\x5c\x6b\xb6\x3c\x5c\x2f\x61\xd0\x2b\xa1\xb1\xc6\x6b\x4d\xb7\xab\x87\xe2\xf4\xe0\x9d\xe1\xa3\x03\x96\xeb\x6a\xce\x3e\x15\x16\xb1\xc2\xd3\xc4\x31\xc0\x66\xf9\xff\xe3\xec\xbc\xe3\xb9\xee\xde\x3f\xfe\x4a\x21\x2b\x3b\xc9\x8e\xb4\x90\xb4\xa5\xa9\x3d\x34\xb4\x07\xda\x8b\x52\xda\xc3\xaa\x14\x4d\xa3\x92\x94\x54\x56\x43\x68\x50\x44\x85\xb6\xd1\x22\x0d\x12\x0d\xa4\xd2\xde\xe7\xf7\xf8\x5c\xe7\xfd\x56\x54\xf7\xf7\xbe\x7f\xf7\x3f\xd7\x6d\x77\x5d\xef\x73\xae\xf7\x39\xe7\x7a\x9e\xd7\x65\xed\xe7\xdb\x2e\x7b\xa4\xf1\x3c\xb3\x03\x3e\x1d\x26\x0f\x9b\xe9\xfc\x25\x25\xb5\xc3\xeb\x21\xaf\x9c\x1d\xf3\x9a\x77\x58\x3d\xf8\xb2\xb3\x73\x55\x41\xbb\xbd\x83\x7b\xcf\xf1\x61\xab\xda\x98\x0e\xbc\x3e\xa3\x0e\x8b\x32\x97\x1e\xf0\x75\x72\x14\x4b\x6f\xf1\x71\xc0\x6e\x87\x7d\xec\x56\x73\xe3\xfe\x46\x0e\x6d\xd8\x63\xd3\xe9\x7d\x0a\x27\x2c\x62\xdf\x9a\x7c\xea\xd7\x65\xcc\x76\xf6\xad\x49\x4c\xef\xc3\x63\xda\x31\x66\xd8\xb2\x6f\x94\x7d\x22\x63\x86\x9b\xfa\x2c\x1b\x3e\x96\x31\xfd\x5d\x3f\x9f\x7f\x7b\xe1\x76\x58\x3f\xe2\x59\x44\xfe\xe9\xb1\x11\xd7\x85\xc8\x0f\x98\x4d\xf9\x32\xbb\x78\x21\xd5\x6d\xd3\x67\x2d\xa5\xe7\x9f\xe4\xb4\x92\xea\x5c\xb1\x53\x3c\x69\x1d\x71\xd0\x96\x9f\xa6\x06\x3b\xf9\x50\xbd\x7f\x63\x84\x2f\xdd\x7b\xf7\xca\xd8\x74\x42\xf5\x33\xb0\x68\xb6\x9f\x85\x69\x9c\xd2\xf5\x99\x87\xd7\x7b\xd9\xbc\xd4\xfe\x38\x7e\xdc\xda\x2e\xf6\xf5\x9a\x06\x0d\xff\xe0\x9d\xe8\x3c\xb2\xa5\xcb\xa0\x64\xaf\x23\x3e\xc1\x66\x8f\xfb\x3e\xf2\x4c\xdb\x07\x8b\x31\xb6\x9a\x1e\x45\xa7\x47\x5b\x1c\xee\x71\xc1\xc3\xfc\x96\x92\x45\xaf\xee\x27\xdd\x8b\x5f\xae\x30\xf3\xee\x3e\x7b\x55\x02\xbb\xd9\xa2\x79\xf7\x6e\x4b\x4e\xb1\xe7\xa6\x47\xbb\x05\x2f\x4c\x67\x5f\x4c\x56\x74\x1d\x37\x2f\x9c\x31\xa3\xa3\x5d\xdf\xcf\xad\x64\xcc\xc8\xb1\xab\xf1\xac\x60\xc6\x0c\xe6\xda\x7c\x9e\xd1\x8c\x31\x7d\xb7\x2e\xfb\xa6\x79\x31\xa6\x7b\xc4\x66\x99\xe3\x02\xc6\x74\xee\x58\xfb\x3b\x74\x64\x4c\xbb\xe0\xa7\xff\x9c\x83\xa8\xd2\x1b\x45\xe3\xe2\x71\xbb\x29\x14\x9f\xbb\x2a\x2e\xc4\x41\x64\x75\x5c\x32\x14\xbf\xf0\x3f\x49\x4e\xfc\x94\xf0\x68\x91\x0f\xdd\xe7\x8b\x30\xd9\x44\x75\xaa\x5d\xa9\x5b\xe8\x5c\x73\x8b\x4d\x00\xf1\x54\x5e\x72\x3b\xa8\x1e\xba\xc0\x74\x57\xbf\x7a\x81\xc0\x8c\x5b\xc1\x29\xfa\x90\x3d\x36\x6e\xfb\x8e\xb3\xed\x7e\xa8\xbf\x1c\x6c\x19\x64\x33\x78\xa8\x81\x56\x9f\x56\x81\x4b\x67\xda\x34\x51\xee\xde\x32\xe0\x96\x77\x3d\x13\x1d\xeb\xb5\x01\xd2\xa1\x6d\x9b\x0e\xef\xf0\xc2\xdf\xe1\x94\x76\xd3\x75\xed\x8e\x6d\x8b\xca\xad\x67\xf2\xba\x6d\xcc\xb6\x69\x15\x3e\xc6\xd6\xed\x0c\x37\xa7\x32\x66\x18\xdf\x6e\x85\xcf\x33\xc6\x0c\xc6\xb4\xbd\xe3\x75\x98\x31\xbd\x7e\x6d\x17\xac\x56\x92\xe4\x36\xab\x9d\x2b\xaa\x18\x6b\x3c\xa6\xed\x83\x25\xa9\x8c\x35\xde\xd4\x76\x96\xdb\x6d\xc6\xb4\xa7\x5b\xd5\x59\x20\xc5\x98\x96\x5b\x9b\x4b\x2e\xb1\x8c\x35\x74\xb7\x72\x9d\x2b\xc5\x58\xc3\xf9\xa2\xff\x6f\xd6\x8f\xa5\xea\x51\xe9\x3b\x3e\xcf\x0b\x4c\x16\x92\x7e\x5a\xb6\xcd\x72\x1a\xe7\x19\xb6\xbc\x9a\x92\x74\xdd\x87\x4e\xd1\x8f\x95\x6c\xa6\x7b\xfb\x91\x8b\x02\xa8\xcf\xda\xee\xbd\x41\xa4\xaf\xe6\xdf\x73\x17\xc5\x6f\xad\x6d\x28\xd5\x41\x16\x0f\xde\x47\xa7\xe7\xd3\x6e\x1d\x24\x5e\x62\xbc\x53\x54\xbd\x86\xa3\x81\x41\xb9\x07\x1f\x99\xad\x55\x2a\xe9\x3e\xf3\xc0\x88\x3e\x1b\xb5\x14\x3a\x9d\xdf\xff\x7c\xf2\x32\xed\x99\x6d\xdb\xec\x5f\xb8\x7a\xac\x8e\xac\xc5\x97\xf0\x77\xc1\x76\x3a\x6f\x5a\x25\x84\x2f\x4c\x08\xd3\x29\x6c\x71\x6c\xdf\xb3\xeb\x45\x3a\x16\xcd\x1f\xef\xdb\xfc\xfc\xb0\xf6\x81\x16\x9e\x7b\xfb\x30\xa6\xe5\xd2\xbc\x70\xa7\x02\x63\x9a\x71\x2d\x9c\xb7\x45\x33\xa6\x69\xdf\xb2\xee\xc6\x4b\x8c\x69\xb6\x6c\xd9\x74\x43\x13\xc6\x34\x8e\x37\x37\x5c\xbb\x91\x31\xb5\xce\x2d\xe0\x35\x8c\x31\xb5\xf5\xcd\xb5\xdc\xeb\x32\xa6\xda\xa1\xf9\xf8\x15\x5d\x18\x53\x29\x6a\x3e\x6f\xa9\x64\x1d\xb6\xf4\xad\x17\xd7\x43\x7a\x6a\xce\xf3\xdb\xdd\x0d\x8b\xc8\x66\x9f\xe6\x3c\xc4\x85\xe2\x75\xc2\xf8\xdf\x4c\xf5\xb8\x38\x17\x7f\xfa\x7a\x54\xd3\x60\xaa\xbe\xed\x35\xdc\x4d\xf5\x9e\x40\xbb\xbd\x54\xb7\xf2\xed\x7b\x80\xea\x96\x2b\x3a\xf3\x7a\xb1\x73\xd2\x21\xca\xaf\xe3\xaa\x62\x69\x9c\xf4\x7f\x9a\xf0\xa6\xbe\x1e\xd0\xf5\x4a\x82\xa1\xf1\xc8\xfa\x1a\x56\x1d\xe3\x7d\xba\xd5\x51\xee\x62\xb6\x22\x7e\xe9\x84\x08\xd5\x06\xcd\xf6\xc7\x0f\x5e\x36\x58\xad\x8e\x71\x79\x7c\x8b\xa0\x3e\x6a\x03\x8c\xec\xe3\x92\x63\xaf\xaa\xbe\x31\xc8\x8d\x6b\x72\x25\x47\xd5\x4a\xff\xcb\xb1\xbc\x27\xa7\x94\x17\x19\x8c\x3a\xfa\x92\x31\xa5\xee\x06\x16\x11\xb1\x8c\x29\xee\x31\x98\x12\x36\x95\x31\xc5\x05\x06\xdb\x43\xa2\x19\x53\x1c\x61\xe0\xbc\xe3\x31\x63\x0a\x85\x86\xf3\xfc\x1f\x32\xa6\xb8\xca\x50\x65\x73\x08\x63\x0a\x17\x0c\xce\xf9\x69\x30\xa6\xd0\xdc\xf0\x93\xcf\x0f\xc6\x14\xeb\x1a\x7c\xf0\xbe\xc8\x98\xfc\xa9\x67\xc9\x73\xa9\x7e\x79\xbf\xf9\x92\x3c\xca\xff\x2f\xbd\x68\x3d\x90\x71\xd6\x97\xf2\xde\x19\x9b\x6d\x74\xfa\x1f\xaf\xbc\x83\xe6\x41\xcc\xd9\x3d\x33\x24\x76\x5f\x5c\x38\xd5\xc9\xb7\xaf\xe1\x7a\x01\x1b\xbd\x62\xa8\x3e\xea\x99\x74\x84\xea\x5e\x6e\x31\xf1\x14\xaf\x69\x53\xb8\x7e\xc4\xf0\x17\x49\xc4\x5b\x75\x09\xe3\x75\x63\xcb\x5e\x69\x7b\xb5\x3d\xeb\x8c\x6f\x3a\x29\xcd\xa0\xdd\xa7\xfa\x23\x0c\x77\xa4\x2d\x1f\x39\x5e\xae\xae\xee\xb9\xb4\xc8\x85\x56\xf5\x93\x1a\xcf\x49\xbb\xb3\xb5\x43\x7d\x75\x6d\x85\xb4\x84\x43\x87\x65\x12\x1b\x1d\x4c\xdb\x77\x31\xa8\xde\xfc\xc6\xb3\xd3\x72\x4b\xa6\x00\x5a\x3f\xce\xd2\x0d\x5a\x8d\x6e\x27\x49\x77\x55\x39\x34\x56\x81\xce\x00\x7e\x44\x4d\x64\x4c\x3a\xb4\xc1\xbd\x08\xaa\xa0\x28\xae\xda\x37\x43\x62\x75\x8c\x43\x3c\x18\x93\x35\x54\x4c\xdd\xf9\x9e\x3e\xbf\x24\xc8\x81\xf6\x14\x32\xdb\xdc\x25\xf6\x61\xe8\x52\x7a\x5e\x37\xf4\x79\x7e\xbb\x28\xb7\x91\xfa\x9d\x9c\xa9\xe4\x3a\x48\x09\xb9\xbb\x88\x8f\x8c\x79\xcd\x75\x80\xc2\x5d\x23\xe8\xf6\xf4\x8e\x62\x5e\x75\xdd\xec\xc1\x79\x98\x35\x9f\x13\xa8\xfb\xc2\x8a\x45\x9c\x0b\x99\x9b\x75\x9a\xd6\x13\x93\x06\x9d\xa5\xf9\x32\x28\xea\x3c\xe9\xc6\xb4\xc3\x45\x1a\x17\xfa\x4e\xd7\xba\xc8\x05\x03\xda\x57\xaf\x9b\x99\x49\x01\x9a\xf3\xae\x27\x0f\x5e\x04\xa8\x96\x67\x19\xce\x05\xd0\xa0\x30\x6b\xec\x86\x38\x40\xb1\x77\x96\xcc\x41\x7f\x40\x2e\xed\xfa\xf5\x73\x33\x01\xd9\xd0\xeb\xd6\x0f\x92\x01\xe9\x09\xd7\x0e\x7c\x57\x04\xa4\x66\xa5\x53\xbf\xea\x3a\x8b\x92\xaf\xf2\x35\xc0\x49\x0f\xb2\xd3\xe2\xf9\xbd\xfe\x09\x47\x78\xe7\x8d\x89\x51\xd4\xe7\x1a\xf5\x0f\x50\x7f\x66\x8c\x0f\x1b\xc5\xbf\x7f\xf7\x2b\x89\xbd\x33\x79\x2d\xad\x1b\xae\xe8\xf3\x2a\x51\xaa\xfe\x0e\xd2\x3f\x38\x11\xb7\x87\xee\x71\x1f\x6d\x7d\x80\xc6\xc3\xfe\x29\xd1\x54\x2d\xdb\xdd\xf5\x18\xf1\x72\xfe\x6b\x8e\xd3\xad\xda\xf5\xdd\x4e\x52\x5e\x5d\x3d\xe8\x34\x55\x59\x16\xe4\xf0\xe7\x3d\xfd\xfd\x05\xaa\x1e\x8d\x09\xb8\x44\xfc\x50\x6f\x95\xab\xf4\x7d\x16\xce\xb9\x34\x9f\x54\x33\xee\xd0\xcf\xcb\x38\xe7\x1f\xd1\x99\x09\xd4\x29\xbb\xdb\xb1\x2b\x75\xd8\xb8\x9b\xed\x30\x98\xec\x0d\x77\x8a\x58\x81\xe6\x1e\xaa\xc7\xdc\x35\x39\x4d\x9c\x44\x7e\x49\x3e\x65\xe4\xbc\x62\x5e\x51\xcc\x11\xea\xf7\x97\x85\x9b\xe3\xe7\x79\x1c\x90\xb2\x88\xdb\x44\xa1\x92\x96\x20\xd4\xf3\x8e\x0a\x37\xb2\x63\xf2\xb8\x8d\xd4\xa6\xfd\xbc\xe0\x7f\xda\xba\x60\x7a\x41\x9e\x4c\x0b\xa3\x7c\x19\xbb\x21\x92\xe6\xf9\xc1\xc0\xc3\x94\xef\xf6\xe8\x27\x50\xff\xa4\xa0\xf8\x44\x1a\x37\x22\x07\xe4\xbd\x86\xeb\xe2\x2c\xcd\x4c\x77\xe4\xe3\xe0\x22\x71\x03\x4e\xb7\xaf\x51\xfc\x86\x0f\xcf\xa6\x8f\xbb\x55\x72\x3e\xa2\x79\xd6\x5d\xd2\x07\x50\x5a\x5f\x48\xbc\x19\xf0\xf8\x98\x06\xfd\xdf\xe3\x43\x9d\xdb\x4b\x6c\xc9\x99\xf1\x94\x99\x4a\x2e\xaf\xa0\x19\x5b\x52\xc8\x33\xd1\xe3\x87\xc7\xe9\x8d\x5e\xd2\x99\x57\x22\x1f\xfb\x55\x71\xa2\x89\xeb\x7a\xe0\x96\xc0\x77\x64\x75\xa8\x19\x97\x0b\x82\x1e\xc4\x59\xa1\xc2\x98\x24\x74\x60\x38\x2e\xd4\xf5\x8e\xd1\xbd\xa5\x74\xc7\x10\x5a\x1f\x25\x5a\x71\x3d\xa4\x63\x99\xfc\xb9\x47\xb9\x1f\x2b\x00\xf1\x1f\x9c\xfb\xda\x99\x7c\x86\xfa\x00\x6c\x29\x4e\xa5\xf7\xa1\xcf\xa2\x74\x7a\x3a\xab\xa6\x5f\xa4\xa7\xb5\xf0\x3d\xe7\x04\x66\xbe\xbc\xa1\x28\xb1\x13\x87\xdd\xa2\xfb\xe2\x43\xa4\xee\x92\x17\x9d\x9f\x3e\xa0\x75\x76\xd3\x39\x8f\xe9\x69\x2a\x0c\x7d\x96\xcc\xe3\xf0\x22\x49\x99\x3a\xe8\x54\xaa\xb5\xa7\x9d\xc9\xcb\xd9\xa3\x88\xb4\x79\x59\xb5\x58\x4e\x62\x5f\x25\x07\xd2\x4c\x7d\x79\xee\xd8\x2b\x6e\xaf\x13\xb1\xf8\xf2\x4c\x39\xd5\x81\xcb\x04\x25\x81\xc2\xf7\xdc\x56\xf7\x7d\xe9\x23\xc4\x45\xa8\x2c\x5f\x16\x3a\x70\xa4\x7f\x65\x35\xb8\x98\xd3\xf4\xf1\xe9\x05\xfb\xe9\x5e\x7b\x9c\x4b\x0c\xf5\x03\x8a\xc9\x49\xa0\x3a\xf7\xfe\xe2\x33\xb4\x5e\x0a\xb1\x39\x4b\x79\xc0\xff\xde\x05\xfa\xf7\x8b\x1c\x90\x97\xeb\x35\xe2\xb2\x97\xb5\xe0\x7c\x84\x4b\xea\x2d\xe2\x4d\xa7\x06\x70\xbf\x47\x4f\x7d\x40\xa3\x7c\x40\x4e\x31\xad\x4b\x3b\x1c\x2b\xa5\x7d\x7b\x93\x62\xce\x85\xc8\xcf\xad\x12\xc6\xc3\xa7\x73\x0a\xc4\x3b\x7c\xbe\xd0\x9a\x94\x48\xbe\xc6\x0c\xa3\x19\xf6\x6d\xe8\x7c\xfa\x0d\xdf\x9c\xb9\x72\xdb\x77\x3d\x4e\xac\x7c\xbb\x7c\x69\x00\xff\x3c\x27\x6c\x3e\x39\x71\x7f\x5e\x8c\xe6\xb6\xf4\x94\x10\x17\xa1\x02\x7d\xd7\xa9\x66\x5c\x44\x8e\xea\xca\x7c\x6e\x33\xe8\xbe\xdb\x71\xbb\x23\x14\xdd\xc3\x76\x27\xe8\xaf\x47\xa4\x9f\x1d\x85\x5f\x38\xa8\x1d\xea\x97\xf2\xf8\x38\xb8\x46\xf3\xdd\x47\x25\x87\xaa\xb1\xab\xf5\xf9\x38\x5f\x54\x37\x9f\xf8\xa1\xd9\xc3\xef\x11\x27\xe4\x58\x56\x44\xf3\xc6\xde\xeb\x09\xf9\xd9\xc7\xba\x8c\xe2\x68\xf5\xa1\x92\xf6\x67\x46\xb3\xdf\x12\x17\x20\xa7\xff\x25\x9c\xc7\xe1\x27\x07\xd2\x52\xe8\xe7\x31\xd0\x93\xdb\x19\x02\xf7\x21\xd6\xfb\xc3\x04\x25\xc8\x24\xb1\x7e\x2b\xd4\xad\xab\xf4\xf0\x0b\xe7\xf0\x66\x08\xb7\x15\x76\x42\x5c\x3a\x09\x71\xa9\xf3\xe7\xf1\xc2\xe3\x72\xac\x57\x12\xcd\xe3\x48\x9b\x9a\x1c\xd4\x4e\xc7\xcb\xb4\x4e\xde\xe6\x92\x4d\x51\xf7\xd5\xbf\xc5\xc7\x81\xc7\x5d\xfa\xfe\x15\x16\x0f\xa8\xcf\xa0\xeb\xe9\x47\x44\x6d\x4d\xbf\x59\x4a\x74\xd7\x84\xee\xcf\x69\x3e\x0c\x53\x79\x41\xa3\xb9\x57\x87\x37\xc4\x87\xb4\xc9\xf9\xb8\x85\xc7\x81\xf3\x11\x72\x39\xec\x77\x0e\xa4\x17\xb7\xbd\x05\xff\x1d\x84\xb8\x2c\x13\xfc\x16\xfb\x5c\x1c\x12\xea\xfa\x19\xc2\xc7\x05\x73\x84\x78\x08\x27\x25\xfc\x37\x7f\x16\x88\x93\x5a\x7d\x82\x50\x52\x5e\x33\x2e\x7c\xbc\x1c\xba\x71\x8e\xde\x87\xd5\x1c\x54\xfa\x55\xca\x9b\x81\x31\x37\xe8\x39\x6e\x4a\xcb\xa7\xfd\xf8\xba\xd4\x07\x34\xde\x57\x2b\x73\x3e\x62\x89\x65\x29\xe5\x55\x67\x3c\xa3\xf1\x34\xb5\x6e\xe5\x1a\x89\x1d\xbf\xe5\x0d\xe9\xc8\x0c\xed\xf2\x89\xde\xb7\xdd\x87\x7e\xa5\x79\x23\x72\x20\x7a\x0f\xb8\x95\xfd\xca\x7e\xe7\x40\x04\x3f\x44\x0e\x64\xb4\x1f\xb7\x22\x27\xe5\x23\x70\x1e\x61\xc2\x4d\x10\x51\xf7\xe2\x52\x5f\x6e\xef\x0b\xf1\xac\x54\xc3\x1f\x38\x87\x8f\x3d\xb9\x15\xf5\x73\xca\x85\xb3\x97\x52\x15\x89\x15\xf5\xa0\x44\x3d\xa4\x1d\xc5\x7c\xb4\x6d\xed\x5b\x40\xeb\x25\xdf\x7b\x8f\x88\x2a\xf0\xb6\x7c\x42\xe7\x0d\xcb\x27\x3e\xa7\xbf\xe6\xa6\x56\xb9\x92\xe6\xc3\xdd\x2a\xca\x7f\x93\xc7\x7c\xa2\xf5\xf7\xe8\xe2\xaf\x94\x4f\x87\x4c\xe2\x7f\xc5\x46\xe8\x87\x63\x31\x97\xd5\xe0\x1f\xa4\x3b\xfd\x7e\xe2\xf7\x1b\x07\x22\xf0\x1b\x33\x04\x9d\x10\xb1\x3f\x8e\x38\x2e\x22\x05\x7e\x26\xc9\x89\xdb\xab\xc2\x8e\x39\x5f\x9d\x5b\x91\x9b\x7a\xef\xfe\x6b\x3c\xbe\x0b\xe3\xa3\x5a\x3f\x87\xde\xa3\xe1\xad\x6f\x12\x0d\x11\x22\x75\x97\xf8\x97\x40\xc6\xf5\x51\x36\xc6\x14\x53\x54\x7d\xba\x3f\xa7\x7c\xe9\xee\xf9\x82\x9e\xfb\x32\xd5\x2a\x7a\xab\xb9\x56\x7c\xa4\xf7\xc9\xac\x05\x5c\x17\xa8\x9a\x03\x11\x78\xa0\xbe\xc2\xf3\x16\xb9\xa8\x96\xc2\x6c\x6d\x24\x8c\x56\xe9\xf4\xdf\xe3\xa0\x27\x3c\xe7\xea\xfe\x38\x13\x6b\xce\x8f\x45\x82\x62\xae\x8f\xc0\x47\x89\x7c\x90\x38\x4f\xc4\xbc\x71\x51\x88\x9b\xc8\x7f\x3c\xbc\x2d\x8c\x13\x31\x1e\xd7\x7f\x8d\x0b\xe7\xca\xd8\x2f\x3a\x16\xbf\xd5\xff\x6b\xf5\xc1\xa8\xad\x7f\x51\x9b\x03\x11\xfb\x7f\xd8\x09\xdf\x3f\xbe\x8a\xdb\xe9\x1b\xb9\x75\x13\x6a\xd6\xd5\x1c\x48\x2d\xfe\x21\x76\x1b\xaf\x73\x88\x1a\x1d\xc4\x32\x8c\x02\x4a\x84\xfa\xe0\xb7\x41\x3f\xf9\x87\xea\x7a\x6f\x2d\xfe\x41\xac\x7b\x5f\x15\xfe\x6d\x17\xaf\x72\x5b\xbb\xff\x49\xb2\xd0\x27\x25\x49\xe0\x22\xfe\xe8\xff\xff\xd2\xbf\xf8\x1f\xba\x0f\xbf\xf5\xc7\x79\xc4\xed\x42\x41\xf7\xc3\x33\xfe\x97\x38\x78\x01\x61\xc2\xdd\xf5\x63\x82\x0f\xe7\xb2\x81\x1f\x7b\x80\x1b\x0f\x79\xfd\xef\x69\x08\xb7\x92\xaf\x55\xf5\xe1\xb6\x54\x88\xe5\x7d\x81\xf7\x10\xf9\x87\xeb\x42\xfd\x5a\xd4\xff\xa8\xe6\x3f\x44\xfd\x8f\x5a\xfc\xc7\x89\x21\xbf\xc4\xe1\x2f\x7d\x60\xfe\x57\x1f\x94\x6a\x2e\xe6\x2f\x1c\x48\xed\xfe\x38\xf3\x8f\x09\x71\xf8\x95\x03\xf9\x25\x0e\x71\xb6\xc0\x8f\xf7\xc0\x05\x4b\xc9\x6a\x01\xb8\x2d\x2b\x99\xcd\x40\x59\x03\xe0\xdb\x3c\x80\x0d\x03\x2a\x85\x1e\x3a\xa2\x1e\xca\x6f\xfc\x83\xc0\x03\x5c\x10\xfc\x14\xf9\x8f\xb3\xfb\xff\xec\xff\x3f\xf1\x0f\x7f\xeb\x03\x22\x7e\x2c\x72\x0f\xe6\x02\x0f\x25\x72\x53\xe2\xb8\xa8\xee\x8f\x23\xe8\x3f\x38\x09\x9c\x54\x35\x07\xf2\xbd\x56\x1c\xb6\x02\x5f\x2c\x81\xa3\xf9\x92\xd5\x14\x20\x79\x83\x7d\xa9\x04\x6e\xc7\x01\x9f\x52\x80\x67\x87\x80\x4f\x13\x01\x36\x10\x28\x13\xe2\x50\xcd\x3f\x08\x9c\xcc\x75\xe1\xf3\xff\x96\x7f\xa9\x5d\xff\xff\x93\xff\xb5\x79\x8f\xbf\xf5\x41\x11\xe3\xf2\x1b\x07\x12\x5e\x33\x4f\xd4\xe0\x40\x72\x25\x6b\x30\xe0\x87\x11\xb0\x79\x36\xf0\x25\x0e\xd8\x63\x0e\x7c\x0c\x01\x8e\x8c\x06\x3e\x0e\x05\xd2\xce\x02\xef\xef\x00\x37\x8a\x81\x0f\xdb\x80\xb2\xa2\x9f\x79\x41\x9c\x0f\xf7\xb4\x6b\x8e\x83\xcb\x82\x96\x88\xc8\xbf\xfc\x5b\xff\xff\x89\x7f\xa8\xdd\x07\x45\xec\x87\x21\x5a\xf1\xf3\xe2\xf7\x89\xe3\xa3\x36\x07\x32\x48\x9a\xdb\xf1\x6f\xf8\x73\x9f\x2d\xc9\x59\x0b\x81\x95\x91\xc0\x57\x75\xc9\x5e\x0d\xf8\xd4\x0b\x08\xb5\x07\xde\x65\x02\x47\xe2\x80\xb7\x3a\x3c\x4f\x4a\xde\x4a\x37\x3d\x81\x57\x11\xc0\xd3\xf5\xc0\xab\xfa\x3c\x47\x3c\x12\xf4\x61\x6e\x09\xf9\x42\xe4\xe1\xc4\x3c\x58\x5d\xff\xbf\x59\xcb\xff\xa0\x9a\xfe\x47\x0b\xb9\xea\x4f\xfc\x83\xe8\x57\x75\x1f\x90\xbf\xf4\x41\x11\x3f\x2f\x7e\x9f\xf8\x73\xff\xc8\x81\x44\x02\x33\x9e\x02\x5f\x74\x80\xa5\x1b\x81\x8f\xd1\xc0\x86\x4b\xc0\x5b\x2d\xc9\x1e\x06\x78\xe9\x0f\x1c\xaa\x03\x54\x6e\x04\x24\x3b\x9a\x0a\x29\x20\xd7\x05\xa8\x18\x06\x3c\x4b\x02\x24\xab\x73\xc9\xbb\x44\xe4\xc2\x44\x3d\x1c\x71\x1e\x88\xfc\x4b\x92\xa0\x35\x74\x5c\x78\xe7\x1c\x15\x18\xa5\xc3\xc2\x18\xfd\x8d\x7f\xe8\xf1\x33\x0e\xb5\xf9\x87\x7f\xd7\x07\xe5\x27\xf7\x20\xea\xa4\x88\xf1\x6c\x23\x30\x2a\xd5\x1c\x48\x16\xf0\x4d\x07\x98\x62\xc9\x7b\x1f\x49\x16\x24\x6f\x7a\x02\xeb\xd2\x81\xca\x06\xc0\xce\x4e\x40\x79\x3f\x20\x3a\x04\x78\xf6\x03\x48\xfe\x01\x3c\x29\xe6\x63\xbe\xd4\x0e\x78\xea\xfe\x93\x07\xba\xa3\x56\x33\x1f\x9e\x13\xb8\x86\x24\x41\x63\xe5\xb8\xb7\xf0\xdc\xad\x6a\x8e\xfb\x48\x43\x6e\xf7\x8b\x4c\x96\x10\xa7\x5d\xde\x3f\xe3\x20\x3e\x57\xe5\xfb\x35\xfd\xfd\x9b\x0e\x86\xa8\x8f\x20\x23\x55\x33\x2e\x22\x17\xd3\x42\x60\xfb\xba\x98\x01\xdf\x16\x00\x83\x86\x02\x1f\xda\x02\x13\x2f\x01\x55\x33\x81\xf9\x3b\x80\xca\xae\x92\x35\x2a\xf0\x2c\x16\x08\x8c\x05\x4a\x3b\x4b\xf6\x38\xbc\x2f\xd8\x99\x48\xe0\xd1\x11\x20\xb7\x11\x50\xb8\x07\x90\xec\x2b\x1f\x08\xf3\x5a\xe4\xa1\xc4\x79\x70\x5a\x18\x0f\xa2\xee\xcd\xe1\x98\xbf\x3c\x77\xc1\xef\x50\x81\x0f\xda\xb5\x90\xdb\xed\xe7\x7f\xc6\x41\x7c\xfe\xff\x95\xff\x10\xad\x18\x2f\x31\x1e\x06\xd2\xc0\x8f\x37\x80\x55\x5b\xe0\xa3\x1f\x60\x6b\x2d\x59\xd5\xf3\xf9\x51\xc1\x24\x7b\x53\xe0\xc9\x13\x9e\x2f\x1f\xf7\x01\xb6\x31\xa0\xb0\x3b\x70\xd0\x1a\x78\x20\x07\x24\xbd\x07\xee\x7e\x02\xb2\x4e\x00\x79\xd9\x40\xe9\x4b\xe0\xf6\x4e\xe0\xc7\x13\xe0\x12\xe3\xbc\x4f\x8a\x47\x1d\x3a\x77\x8a\x7f\x26\x45\xfd\xa2\x0e\xef\x94\xa2\x7d\x42\x84\x26\xe8\x5c\x66\x5f\x7e\x5d\x52\xb8\x13\xb9\x97\xe0\x87\xa0\x7d\xe6\xce\x1d\x98\x20\xb1\xfe\xb7\x40\xba\xad\xdb\x06\xfe\x8c\xc3\xbf\xf6\xff\x8f\xf5\xf0\x9f\x5f\xaf\xf3\x9e\x5b\x8d\x24\xe0\xd3\x17\xa0\x59\x5b\xe0\xf5\x0d\xa0\x4b\x63\xae\x83\x36\x74\x19\xf0\xc4\x18\x56\x53\x93\x81\x42\x56\xaf\xdf\xb2\x34\xa0\xe0\xb2\xec\xfa\xcd\x3b\x81\x3b\x4e\x72\xa3\xc3\x1f\x03\x37\xa6\x28\xb4\x3e\x65\x02\x64\x77\x56\x54\xbe\x76\x04\xb8\xe6\xa3\x58\xf0\x58\x06\xb8\xd2\x4f\xe9\xc0\xd7\x5d\x40\x2a\x94\x69\x05\x7f\xdc\x5c\x99\xf4\x34\x0f\x2d\x51\xa6\x73\x87\xfd\xe7\x1b\xd0\xdf\xde\x6b\xd1\x60\x0e\xf9\xbd\x4a\x89\xee\x5d\xed\x30\x57\xa4\xf3\x99\x80\x43\x4a\xf4\xf5\xad\xbd\xe5\xf3\x25\x76\x93\xad\x2c\xf5\xfe\xf0\x1d\x2b\x13\x2f\xc6\xe1\x3f\xfb\xfd\x0f\xf6\xb3\x29\x20\x6b\x00\xbc\x3a\x5b\xb7\x8d\xae\x19\xf0\x74\x82\x7c\xac\xd5\x43\xa0\x70\xb0\xca\x94\x01\x06\x40\xbe\x87\xc6\x31\x87\xf3\xc0\x8d\xc3\x8d\x9a\x2f\xb2\x07\xae\xbd\x6d\x74\x7d\xc3\x3a\xa9\x63\x97\x5a\x37\x0a\x0e\xf5\xa9\xf7\x32\xdd\xba\x51\x44\xbc\xbc\xcc\x84\xb4\x07\x8d\xa2\x2f\x3a\xc9\xa4\xa6\x14\x36\xfa\xf2\xc0\x59\xd6\xea\xcc\x53\x6d\xe7\xf7\x8b\x65\xbc\x12\x9a\x37\x8e\x66\x4c\xf6\x58\xe4\x62\x5d\x27\xc6\xe4\xce\xec\x75\xd1\x35\x67\x4c\x4e\x35\xf8\x82\xce\x75\xc6\xea\xf7\xab\xe6\x5d\x2a\x74\xe4\x18\x93\x79\xb8\xc9\x80\xfa\x2d\x15\x6c\xb8\xd2\xb8\x90\x31\x99\xd6\x3e\x19\x3a\x7b\x18\x93\xf9\xea\xe5\x2c\xf9\x58\x3a\xc3\x43\x51\x67\x01\x63\x32\x76\xff\xdd\x7f\xb1\x2e\x2e\x4b\xfd\xb9\x99\x91\x1c\xed\x92\xdf\x7d\x53\xa6\xdd\x52\x79\x8e\x2a\xed\x02\x8b\xeb\x69\x6b\x48\xc6\x45\x7e\xa0\xae\x4f\xcb\xd6\x75\xe7\xe7\x58\x19\x0c\xea\x1e\x2d\xb3\xe4\xd2\x35\xc3\xb7\x23\x8b\xe4\x56\x9c\x1f\x69\x14\x32\xfb\x87\x62\xfb\x64\xd7\x26\x8d\x3c\x22\x1b\x7c\x3f\xb5\xc6\xe8\x5a\x50\xb6\x4a\x41\xc2\x04\x23\xd7\x98\x47\x6a\xe6\xb1\xa5\x46\xf6\x69\xa3\xd4\x1b\x1e\x51\x37\x9a\x74\xa7\xa3\xba\x75\xcc\x57\xa3\x7b\x95\xb3\xd4\x36\x1c\xac\x32\x0e\x63\x4c\x4d\x3e\x24\xc9\xf8\x29\x63\xaa\x03\x02\x7c\x4d\x9e\x30\xa6\xea\xb0\xb9\xb5\xb1\x1d\x63\xca\xa6\x1b\xfa\x36\x49\x65\xac\x81\xf2\x1a\xcd\x26\xab\x18\x53\xea\xea\x15\x69\x74\x9f\x31\x45\x1f\xf7\xe5\x86\xc5\x8c\x29\x8c\x5d\x99\x60\x68\xce\x98\xfc\xd2\xe5\xca\x86\xf5\x19\x93\x6f\xb4\xb8\xa5\x41\x30\x63\x72\x93\xfe\xb7\xff\xa2\xdf\x22\x0f\xa2\x4a\x7e\x7f\xee\xdd\x88\x74\xdb\x5f\xad\x31\xa2\xaf\x97\x9e\x6b\xda\x45\x62\x1f\x38\xb4\xa0\xef\xbb\xe9\x66\xbe\x4f\x61\x2b\x70\xf9\x78\x6b\x03\x43\x7f\xe9\xf4\xb4\xe5\x16\xe3\xdb\x77\x57\x5c\x98\x78\xbb\x75\xfb\x41\xcd\x55\x46\xc6\x15\xb5\x6e\xe9\xf4\x43\xfd\xd5\xa1\x5d\x16\x57\x96\x9c\xd3\xea\x72\xf0\x99\x45\xb7\x4d\xa7\x1a\xab\xef\xf3\x34\x9f\xba\xbf\x93\xce\x8f\xd0\x20\xb3\x87\x89\x85\x7a\xe3\x76\x25\x98\xcd\xcb\xd6\xd7\x3b\xbb\xd3\xcd\x2c\xfc\x49\xae\xde\xb0\xed\xe3\xcd\x63\x19\xd3\x99\xba\x69\x8a\x45\x17\xc6\x1a\x5b\xac\x0d\x33\x8f\x62\x4c\xeb\xa3\x87\xb4\xf9\x24\xc6\x1a\x6e\x5c\x11\x6f\x66\xcb\x98\xc6\xe1\xa5\x2d\x5a\xf9\x32\xa6\x3e\x69\xd1\xbb\x96\x19\x8c\xa9\xd9\x2d\xcc\x69\x71\x9f\x31\xd5\xd6\xae\x46\x2d\xac\x18\x53\xe9\xe8\x12\xdc\x6c\x33\x63\x0d\xb6\xcc\x5d\x6a\xba\x85\x31\x25\xef\xbf\xfb\x5f\xad\x0b\xd2\x05\xbf\xf0\x10\xef\xdc\x9b\xd2\xf9\xca\x73\x87\x36\x14\x8f\x22\xd6\x81\xce\x71\xf3\x03\x78\xbf\x9c\x2c\xad\x6e\x74\x8c\x90\x1e\xde\xa3\x63\x1d\x1f\xe0\xcc\x57\xdb\xf3\xda\x1b\xa4\xda\xc7\x85\xf4\xd8\x67\x56\xae\xa4\x10\xd5\xb8\xdb\xd0\x9e\xea\x9a\x97\xc2\x72\xba\x06\x8d\xd9\xd0\xb8\xed\x2e\x69\x9b\x60\x97\x38\xfd\x16\x01\x8f\xba\x2c\x5f\xdb\xc2\x68\xe7\xe6\x7c\x6b\x8b\x10\x17\x93\x46\xbe\xb3\x3b\xf7\x8a\x9b\xdf\x34\xdf\xc7\xa8\xd3\xb2\x8b\x5f\x4c\x83\xd7\xcc\xec\x34\xad\xd0\xd5\x74\xa5\x57\x71\x67\x95\xcf\xcb\x4c\x1e\xae\x5c\xd0\x79\x0a\x63\x4d\x9a\x2f\x1e\xda\x49\x83\x31\xfd\x1c\x57\x85\x8e\x9b\x19\xd3\x3d\xe1\xbc\xa4\xc3\x1a\xc6\x1a\x27\xcc\x51\x6a\xbf\x80\x31\x6d\xb5\x99\x67\xda\x85\x32\xa6\x95\x36\x23\xdb\x2a\x96\x31\xcd\xf2\x69\xef\xdb\x28\x31\xa6\x61\x35\x39\xd8\xb2\x94\x31\xf5\x31\x4e\xe3\x2d\xae\x30\xa6\xba\xf1\x77\xff\xeb\x47\x70\xab\x29\x9c\x6a\x70\x0e\xa6\x2a\x87\x8e\x27\xf0\xd4\xa6\x0b\x9d\x9e\x3e\x14\x38\x98\x9b\x3f\xfa\xd1\x29\xf2\x65\x97\x41\x74\xaa\x9e\x5a\x39\x8c\xce\x75\x4e\x4e\xe6\xba\x19\x47\x8e\x8f\x4a\x50\x29\x06\xf6\x8f\xb0\xf7\x37\x59\x27\xef\x1c\x8c\x61\x31\x9d\x65\x35\x4e\x6c\x3e\x33\x44\x7d\xc8\x5e\x03\x75\x1f\xaf\x41\x0e\xd3\x56\x1b\xef\xf4\xd8\x3c\xe0\xd1\xca\xa1\xcd\xd6\x2e\xdf\xd6\x7f\x66\x80\x6e\xcb\xe0\x45\x29\x7d\xbf\x47\x27\x9b\x85\xb9\x16\xf6\x55\x4e\x3b\x61\x5e\xe0\x52\xd6\x67\x61\xfe\x3c\xf3\x74\x67\xe3\x3e\xa9\xaf\xcb\xcc\x36\xcc\x9e\xd5\x27\x9c\x5d\x6f\xd1\x62\xda\x92\xde\x93\x59\x79\xd3\x3d\x8e\x37\x7b\xed\x64\xcc\xe8\x99\x43\x46\x8f\x38\xc6\x0c\xe2\x27\x74\xed\x9e\xc5\x98\x5e\xd8\xf8\xe1\xdd\x1b\x30\xa6\x1b\x3d\x2e\xd5\x46\x83\x31\xed\x6f\xa3\x9f\x5b\x3f\x64\xac\x51\xab\x51\x1f\xba\xc8\x31\xd6\x48\xc6\x3e\xbf\x53\x12\x63\x9a\x89\x3f\xfd\x97\xad\xc9\x01\x45\x73\x3d\x9c\x37\xba\x9d\xa8\x0f\xcc\x53\xef\xde\x74\x2e\x77\xcf\x86\x8a\x2c\xc8\x75\x19\x4e\x75\x89\x8b\xe5\xfc\xf4\x2c\x65\xf6\x44\x3a\xaf\x4c\x68\xe6\x48\xe7\x93\x51\x47\x79\xbd\x7c\xcf\xde\x69\x2f\xa4\xfd\x80\xa0\x9d\xd3\x95\x75\xbd\x65\xba\xfa\x8e\x9f\x62\xd3\x66\xb0\x6a\xbc\xfb\x24\xc7\xfa\x7d\x87\xe9\x7a\x2c\xac\x9a\x60\x32\xfe\x4d\x33\xcc\x75\x19\x37\x76\xe1\x82\x56\x9e\xd3\x2e\x8e\x89\xf1\xfd\xd8\x5a\xd9\xb1\xd1\xe8\x0e\xe1\x2a\x6d\x56\x8c\x8f\x18\xa5\x96\x34\xc6\xea\xd9\x98\xf4\x91\x2a\xb9\x66\x6d\x35\x46\xbd\xb6\xaf\x2c\x5b\x61\x25\x33\xf2\x9b\xfd\x5e\xe6\x67\x31\x7b\xc4\xc2\xe1\x2d\x59\x42\xcb\xd1\x43\xd5\xed\xf2\x59\xbe\x69\xc3\x21\x1d\x06\x47\xb2\x17\xc6\xa3\x06\x9b\x0d\xda\xcb\x3e\x18\xbd\x1b\xdc\x60\xc0\x4b\xc6\x0c\x17\x0e\xcc\xeb\x67\xcc\x98\x5e\xe4\x40\x8d\xbe\x55\x8c\xe9\x59\xf5\xff\x6e\xfb\x94\xb1\xc6\xcb\xfa\x18\xdb\x7e\x67\x4c\xdb\xe2\xa7\xff\x02\x07\xb4\xb2\x05\x9d\xfa\x54\xdd\xec\x4a\xf3\xbc\x34\x73\x00\x01\x30\x77\xc7\x0d\x27\x1d\xe3\x6c\x9b\x09\x34\x1e\x32\x4e\x3b\xd1\xed\xd3\xd3\x15\xfc\xd4\x2c\xfe\x02\x5d\x5b\x42\xe4\x15\xce\x85\x84\x1e\x5a\x40\xfc\xd8\xd6\x02\x37\xe2\x02\xd6\xcf\x5d\xe2\xa6\x19\x0a\xac\xb8\xea\x66\xd5\xa2\xb7\x52\xd4\x7c\x3d\xd7\xb1\xdd\x2e\x36\x9a\x36\xd5\xc6\x45\x6e\x64\x07\x63\xd9\xf1\xf5\xe7\x9c\x9d\x1b\xd0\xa2\x8b\xfd\xad\xd9\xd9\x6b\x7b\xb5\xda\x65\xf7\x63\x56\x54\xe8\x5a\x73\xdd\x41\xed\x66\x1e\x3f\x61\x6c\xbe\xab\x7f\xe8\x8c\x0f\xd7\x57\x9b\x8f\xee\xd7\x60\xc6\x83\x27\xe7\x5b\x55\xf5\xbd\x37\x23\x8f\xe5\x36\x7f\xd4\x3b\x6a\x8a\x03\x7b\x67\x12\xd2\x5b\xc3\xe1\x10\x63\x4d\xfc\x7a\xdd\x98\x70\x81\x31\xc3\xce\xbd\xbc\xc6\xae\x60\x4c\xff\xb4\xed\x90\xd1\x52\x8c\xe9\x7b\xf7\xd8\x6e\xdf\x93\x31\x9d\xfe\x3d\x30\xac\x82\xb1\xc6\x4a\xdd\xb3\x86\x9e\x63\x4c\x7b\x5d\x77\xdb\xc1\x9d\x19\x6b\x24\xf5\x93\x83\xe2\x1c\x50\x95\x5e\x2f\xaa\x43\x96\x04\x0c\xa2\xf3\xf8\xbb\x91\x63\xa9\x4e\x91\x63\x33\x99\xce\x61\x2f\x14\xcc\x2c\x27\xff\x55\xe7\x51\x5e\x88\x37\x5a\x48\xba\xce\x11\xe9\x4b\xe8\xe7\x77\x9f\x5b\x41\x3f\xb7\x2d\xcc\x9d\x4e\xc5\xd6\x4c\xf6\xa4\x11\xb7\xa4\x74\x4d\xa5\x9c\x16\xe0\x6c\xe3\xfd\xde\x70\x47\xfd\xad\x4e\x8a\x9e\xc7\x3a\x6a\xa8\x6f\xb4\xff\xb8\x3a\x6f\x88\xb3\xde\xdb\xc1\xaa\xab\xf6\xcc\x98\xdf\xa4\x61\xdf\x3a\x2b\xd3\x3d\xf6\x9b\xc8\xf5\x9c\xba\xe2\x46\xb0\x6f\xd3\x79\x5d\x0f\xac\x40\x5c\x45\xd3\x0c\xeb\x2f\xcb\x37\x5d\xe9\xde\x74\x54\xe7\xe8\xe5\x6a\x8f\xb3\x4d\x1a\x77\x8e\x58\xbe\x84\xa5\x1a\x8d\xec\x6c\xe4\x16\xc3\x98\x7e\x55\xc7\x97\xf3\x7a\x33\xa6\x6b\xde\xb1\xcd\x9c\xa3\x8c\x35\x5e\xd5\xb1\xdf\xcc\xed\x8c\x69\x9f\xea\x60\x3b\xf5\x07\x63\x5a\x4f\xda\x1f\x99\x6c\xc1\x58\xc3\x84\x0e\xb7\x1c\xf6\x33\xd6\xf0\x5d\x7b\xcf\x89\xab\x19\xd3\x9c\xde\xde\x63\x1c\x63\x4c\xe3\x32\x63\xe6\xa4\x4f\xfe\xc6\xb3\x0f\x9d\x0a\x96\x8e\x1b\x4a\xdc\xd3\xdd\x40\x07\x7a\x0f\xe4\xcc\x9b\x4e\xf5\xce\xcc\x0b\x5c\x17\xe5\xb4\xea\x22\xce\x3f\x54\xac\xa0\xaf\x47\x14\xba\x13\x27\xb1\x67\x98\x37\x8d\x83\x00\x1b\x1f\xe2\x06\x7d\x2a\xb9\x6e\xc6\xb2\x77\x9c\x17\x98\xb9\x67\x1b\x9d\x1e\x3a\x2a\x07\x38\x6a\x77\xae\xb3\x78\xf8\x9c\xad\x67\x5b\x6b\x35\x70\xe9\xd3\x76\x73\x56\xdf\x08\xad\x0f\xdd\x96\x6d\x36\x9b\x3c\xa9\xf1\xd8\x4e\xb9\x9b\xd6\xae\x9c\xa8\x53\xd1\xae\xf9\xc6\xb2\xa0\xf7\xba\x27\x2d\xf3\x37\x76\x3b\xba\x48\xb7\xcc\x62\xab\x5f\xe4\x45\x5b\x5d\x77\xf3\xc1\x7e\x46\x45\xb7\x75\xba\x99\x3b\xfb\xf5\xfc\xae\xdb\xe8\x81\xf9\xa2\xb5\x7a\x8c\x69\x75\x35\x3b\xec\x3e\x9d\x31\xcd\x19\x66\x97\x97\x6f\x65\x4c\x63\x97\xf9\x9a\xc5\x6a\x8c\x69\x4c\x69\x35\x7b\xe1\x68\xc6\xd4\xf4\xcd\x7a\xcd\x77\x67\x4c\x6d\x70\xcb\xd8\xb9\xd3\x19\x53\x99\xd0\x6a\xf6\x2c\x43\xc6\x54\xc6\xb5\x9a\x3f\xbd\x0b\x63\xca\x85\xa2\xff\xcf\xba\x8d\xa0\x3e\x59\x05\x1b\x27\x93\x7f\xb9\xdd\x5d\xe8\x5c\x36\x23\xd0\x8d\xea\x9b\x67\x56\xaf\xa0\x53\xe4\x63\x27\xdc\xa9\xce\x19\xe5\xb1\x4e\x89\xfb\xef\x4b\xe7\xb6\x41\xf1\x9b\x89\x23\xdd\x50\xe1\x4f\x9f\x5f\xad\xcf\x75\x52\xe6\x1b\xf2\x3e\x32\x13\x2f\xee\x26\xde\xd6\x2e\x2e\x4c\x53\x49\x0a\xb0\x55\xdc\x93\xdd\xf4\x9e\x9c\x6c\xc7\x7d\xa1\xde\xdd\xe7\xa9\xa4\xb7\x59\x14\x3a\x7e\x82\xb6\x9a\xa7\x99\xcb\xee\x0f\x4b\xda\xab\x47\x34\xf7\xd8\xed\xbd\x2d\x41\xa3\x6d\xd3\xb9\xbb\x1b\xc6\x14\xa8\xbf\x35\x1e\x19\x12\x76\xa1\x5c\xbd\x7d\x93\xae\x21\xaa\x0f\x6e\xab\xbe\x6d\xd2\x6b\xd7\xeb\xcf\x3b\x94\x4b\x9a\x6c\x09\xbc\xc3\x58\x83\xcb\x4d\x46\x6c\x3a\xc9\x98\xd2\x9d\x26\x15\xeb\xdb\x33\xa6\x94\xd3\xa4\xe9\x5a\x05\xc6\x14\x2f\x19\xb7\xf7\xd8\xc1\x98\x52\xc7\x26\x3e\xab\xdc\x19\x53\x1c\x64\x94\xb8\x7c\x3f\x63\x0a\xf6\x86\x3f\x16\x1f\x63\x4c\x7e\x6c\x93\x07\x0b\xc6\x32\xa6\x30\xaa\x2c\x74\x0c\x9d\x7a\x3f\xd4\xe7\x1c\xcc\x8d\xf0\xf9\xc4\x77\x5d\x6c\xc2\x75\x51\x92\x43\xdc\x49\x76\x3e\x61\xeb\x3a\xaa\xf7\xc7\xe8\xfb\xd1\x7b\x20\x4c\xb8\x45\xb9\xdd\x23\x90\x74\xc0\x37\x32\xae\x0b\xe3\x19\x1f\x42\xf3\xc2\xcd\x6b\x2f\xfd\xde\x69\x5b\xc2\xa9\x6e\x68\x1f\x13\x41\xf1\xeb\xea\x70\x98\x4e\xd5\xdb\xbe\x3c\xdc\x59\x77\x58\xdd\x84\x16\xbd\x0e\x4d\xe9\x68\x24\x97\x68\x32\xf9\xd0\xf6\x91\x19\xf2\x97\x0d\x5d\x0e\x39\xba\xa6\x2a\xe8\xe9\xb5\x39\x34\x7f\x53\x80\x7c\x9c\x4e\x87\x98\x17\x91\x46\x72\x2f\xb5\xdf\xc7\xec\x4f\xbb\x54\xff\x9c\x76\xdf\x98\xd1\xf7\x9a\xc9\x3c\xd5\xee\x1b\x63\xf0\x71\x7e\xbd\xb9\xda\x87\xf7\xa7\x32\x56\x2f\xa2\xf1\xec\xdd\xbb\x19\x93\x51\xd0\x51\xdd\xbe\x97\x31\x99\xeb\x3a\x51\xfe\xed\x19\x93\x1d\xa7\x62\xb0\x95\x74\xfc\x1b\x5f\xf1\x8d\x64\x4c\x3a\x47\x57\x71\x5d\x3f\xc6\x64\xf5\x95\x9b\x78\x53\xbf\x07\xdd\x46\xee\xa6\x8c\xc9\x24\x3d\x70\x9e\x49\x79\x2f\x37\x93\xf7\x07\xca\xb4\x5a\x41\x79\x2f\x25\xda\x8b\x4e\xc3\xe3\x37\x72\x1d\xa0\xe8\xd7\x9b\x27\x48\xec\xbe\xe3\x81\x34\x6e\x76\x1e\xdc\x79\x04\x54\xef\xe3\x7d\x92\xd6\x04\x84\x51\x1e\x58\xae\x76\x90\xfc\x9f\x7b\x2c\x8a\xde\xa7\x93\x86\x1f\xa6\xba\xd6\xc0\x47\x71\x34\xce\xda\x15\x9d\xa0\xf7\xb1\x71\x72\x62\x99\x4a\x27\x40\xe7\x72\xe2\x35\x0b\xeb\xba\x5d\xb4\x47\x27\x45\xd9\xd9\xd5\x71\x68\x38\x2d\xe9\xd6\xdc\x34\x40\x3d\x37\xe9\xc1\xfa\x53\x80\xaa\x73\x92\x6b\xf8\x7d\xa0\x41\x9f\xc4\xb4\xe4\x29\x80\xe2\xb0\x44\xa3\x3b\xfe\x80\xfc\xbc\x53\x53\xab\xe6\x02\xb2\xbb\xe2\x49\x39\x5e\xda\x2d\x86\x94\xf3\xeb\x65\x1e\x20\xbd\xce\x3a\xfa\x61\x42\x7d\x8f\xf3\x0d\x75\xde\xec\xe8\xce\x3f\xf6\x7f\xc2\xed\x16\x41\xff\xc1\x8f\xb8\xfc\x5b\xca\x6e\x94\xcf\x2e\x0b\x79\xed\xac\xfe\x3a\x5a\x27\x1e\x8f\xdd\x4c\x6a\x0b\x47\x46\x07\x51\xf5\x44\xd4\x01\xda\x95\x1a\x4a\xb7\xa8\xfd\xd5\xf6\xd3\x82\x62\xc3\xa0\x83\x54\x2d\x59\xe5\xc2\xab\xb0\x0b\xd2\x8f\xd0\xfc\x99\x96\x15\x47\x79\x63\x54\xe3\x13\x54\x85\xb0\xdd\x7a\x9a\xf4\x09\xcd\x8b\x53\x89\xb3\x51\xb5\x48\xa7\x5b\xed\x0a\xc7\x32\x74\x8c\x1c\x01\x59\xcf\x8c\x75\x3d\x43\x80\x7a\xa6\x19\xa7\x9d\x24\x2b\xb2\x23\x19\x27\x56\xd3\xbf\x20\xe3\x68\x08\x55\xd0\x33\x64\x4f\x50\xdd\x21\xdd\x22\x97\x46\xe8\x05\xb3\x0a\x13\x5a\xb1\x08\x37\x62\x4f\x2d\xe7\x56\xd4\xb7\x38\x24\xf0\x0e\x91\x82\xf2\xfc\x7e\xa1\xbe\xbb\x57\xa8\xef\xed\xaa\x4b\x76\xfc\x76\xba\x8f\x71\xa5\x05\xef\x0f\x75\x36\x87\x57\xcd\x8e\xb3\xcd\x54\x1d\x39\x9a\xc7\x39\xa0\x83\x8a\xbb\xa9\xae\x19\xaa\x11\x4e\x55\xe7\x20\xb5\x48\xe2\x5e\x36\x7a\x1d\xa2\x75\x85\xb7\xfd\x31\x7a\xcf\x2e\xb1\x8c\xa7\x38\xcc\x31\x3a\x49\xf5\x41\x87\x3d\x49\x14\x9f\x61\x03\x38\x0f\xd3\xcd\xf3\x02\xfd\xbe\x66\x6f\x2e\xd1\xba\x43\xd1\xfd\x3a\xf1\x63\x40\x76\xa0\x16\xfd\xa6\xec\x0d\xd6\x54\x9f\xc9\x9e\x3f\x9e\xbe\x23\x7b\xfb\x32\xea\xa4\x91\x3d\x6c\x3b\x75\x24\xcb\xb6\x8c\xa3\x91\x96\xd5\xee\x1a\x91\x7b\x59\x83\x9e\x51\xc4\xaf\x0a\xf7\xf7\xcf\x27\x71\x9b\x2c\x54\xca\x04\x2e\x06\x71\x82\x1e\xc2\x51\xa1\x9e\x19\x2d\x74\x64\x38\x20\x28\xd0\x87\x91\x5e\xc4\x39\x5d\x9e\xd7\x4f\x1d\xda\x46\x75\xd8\x63\x1d\x43\x68\xfe\x47\x6c\xe4\xdc\xd7\x5e\xcf\x03\x94\xe7\xb6\x5b\xc4\x90\xee\xe4\xa6\x79\x47\xa9\x3a\xb4\xf6\xfc\x71\xea\x07\xb5\x72\x7f\x22\xd5\xb1\x5d\x75\x39\x17\x32\xbd\x2d\xaf\x17\x8f\x2d\x3a\x4f\xf3\x66\xd0\xdd\x8b\x54\x2f\xec\x58\x7a\x95\x7e\xce\x38\x30\x9b\xc6\x95\x6c\xd8\xed\x38\x1e\x87\xbb\xf2\x9a\x34\x62\xf2\x03\x3a\xd2\x5f\xba\x6b\x38\x9a\x48\xc6\xbb\x81\x8b\xa8\x83\xcc\xdd\xf3\xfe\x94\x89\xef\x06\x1d\xa6\xaf\xe7\x77\xce\xa4\xbf\x90\x37\xf0\x11\x57\xf4\x1b\xc2\x68\xa5\x22\x72\x0e\x17\x85\x7a\xf6\x79\x1f\x6e\x53\x84\x8a\x9a\xc8\xc5\x1c\x17\xfa\x5f\x88\x5c\xcc\x21\x1a\x1f\x89\x53\x03\x68\x7f\x18\xa7\xb2\x9b\xd6\x4b\x51\xaf\xc2\xa9\xbe\x1f\xee\x1a\x43\xdc\x4a\x70\xcb\xa3\x9b\x24\x76\xab\x42\x3c\xd1\x1a\x22\x07\xe4\x71\x25\x59\x97\x8f\x83\x34\xfa\xd7\x38\x9f\xcb\x20\x7a\xc1\x09\x17\xe9\x5f\x3f\x52\xe3\x0a\xe5\x8d\x3e\xc7\xb3\x28\xdf\xb6\xa3\x4a\x0b\x60\x30\x28\x9f\xfa\x79\xd6\x9b\xfc\x50\xd0\xc1\x28\xde\xad\x46\xe4\xe1\x63\xaf\x76\xf4\xbc\x8b\xf3\x47\xd0\x13\x78\xdc\xd6\x95\x56\x2e\x8f\x8b\x37\x65\x73\x1b\x45\x95\xd3\xc7\x96\x9c\xb4\x2a\x4e\xbb\x4f\x2b\xf9\x47\x2f\xbe\xd2\x48\xbd\x2b\xb0\xe2\xb9\x42\x25\xf9\x9a\x70\xb3\xfc\x92\xc0\xc7\x9c\x17\x3a\x52\x9c\x15\x2a\xce\x89\x42\x1c\x38\x17\x93\x50\xb9\x97\xfe\x7d\x87\x1d\x22\xe8\x39\x85\xc7\x1f\xba\x46\xb3\xe7\x1d\xc9\x20\x20\xe0\xd1\x49\xd2\x73\x10\xfb\x82\x79\x5b\xa6\xd2\xbf\x72\xc5\x22\xce\x07\xb8\x16\x5d\xa4\xf7\xee\x2c\x17\xce\xc3\x4c\xb4\xce\xa2\xd9\x3c\xcc\x85\xd7\xcb\x7b\x7a\x70\x1d\x85\xd6\x61\xf7\x88\xab\xd0\x1b\xfe\x88\xaa\x8c\x75\xad\x9f\xba\xf1\x38\x94\x7f\x57\x26\x05\x91\x0a\x2f\x4b\xca\xc8\x15\xcc\x8e\x7e\xa2\xd2\x9d\xaf\x50\x2b\xcd\xd7\x13\xff\xf3\x62\x2c\x57\x6c\xaa\x54\x4c\xa1\xef\xab\xdc\x7a\x97\xe6\xcd\x8b\xb8\xf7\x7c\xe5\x2b\xf0\x3e\x0f\xe4\xb8\xcd\x6b\xce\xed\x0d\x81\x30\x10\xfb\xe1\x5c\x1a\xce\x6d\x4d\x5e\xe8\xf0\x88\x48\x9a\xbf\x11\xe9\xb1\xf4\x57\xf6\xe4\x70\x5d\x9c\x1d\x96\xbc\x8a\x2c\x72\x40\xeb\x1a\x9e\xa7\xf5\xa4\xfb\x9e\x4c\xe2\x86\x96\x9c\xb8\x4a\xeb\x23\xe7\x9e\x39\x4d\x68\x3e\xa8\xf1\x71\x3e\x2e\x9d\xfb\x3d\x28\xab\x80\xd6\xdd\x36\x55\x82\x3e\xce\xbc\x52\x1a\xbd\xda\x4f\x9f\x53\xde\xad\x93\xf0\x32\x96\xc7\xe1\x7d\xbc\x02\xcd\xf7\x4f\x9a\xad\xe8\xcd\xf2\xe9\xc0\x00\xe2\x42\x3e\x57\xcc\xa0\x19\xf5\xe9\x9c\x37\x91\x77\x5f\xee\xed\xa1\xc8\x7d\xbe\x90\x58\xc1\xbf\x7e\x8b\x9e\xc0\xa7\xe2\x57\x94\xb9\xab\xf2\xb8\x12\xc1\x73\x2d\xee\x5f\xb1\x90\x1f\x44\x7e\x2a\xcf\xac\x66\x5c\xb2\x84\x7c\x71\x89\xce\xaf\x44\xff\xc3\xa2\x38\x07\x15\xac\x98\x42\x7d\x25\xfd\xd5\x38\x0f\xe3\xd7\xfc\x22\x65\x2f\xef\x6d\x57\x69\x3d\xb5\xd2\x99\x73\x5f\x0b\x8f\xdf\xa4\xf7\xea\xac\x9b\x79\x54\x85\x9f\x3c\xe5\x1e\xe5\xd9\xd1\x0f\x0b\x29\x5e\x03\xfc\x1f\xd3\x7e\xc4\x46\xf3\x19\xd1\x09\xad\x46\x54\xd0\x3e\xad\xb1\xce\x1b\xe2\x05\xea\x06\x7e\x10\xe2\xf0\x0b\x07\xc2\x3b\xfd\x45\xf6\x16\xea\xd6\x8e\x02\xdf\xb0\x42\xe0\x1e\x44\x9d\x83\xa3\xe3\x51\x83\x7b\xa8\xa9\x13\xf3\x51\xd0\xc3\x11\x75\x62\x9e\xed\xfd\xe7\xb8\xdc\xa4\xf7\x6b\xf8\x94\xd3\xb4\xcf\x16\x39\xa8\x40\x3b\x9e\xd7\x37\xda\x5d\xa6\xd1\xb7\xf6\xee\x75\xda\x4f\x78\xd8\xdd\xa6\xf5\xf7\x92\xe2\x7c\x9a\x0f\x2e\xaf\xee\x7d\x02\xe9\x23\x15\xf1\xf9\x70\xe3\x31\x9d\x57\xd8\x47\x3e\xa3\x59\xdb\xb7\x2b\xe7\x81\x3a\x3d\x7e\x45\xeb\xed\x96\x95\x1f\x88\x9f\x6a\xdc\xf5\x1b\x0d\xf7\x5f\xeb\xfe\xd5\x1c\x88\x70\xe2\xd1\x5d\xf0\x7f\x9c\x50\xff\x5f\x20\x70\x21\x7e\x42\xc7\xe4\x7d\x82\x2e\x46\x52\x18\xb7\xd9\x82\xbe\x45\xb5\x4e\x0c\x45\x5c\xe4\x84\xde\x25\xd6\x8c\x8b\xa8\x9f\x53\x2c\x74\x34\x79\x40\x5c\x5d\x35\x07\x65\xc9\x79\x98\x2d\xc5\xd7\x88\xdb\xf1\xd5\xbf\x41\x6a\x12\xde\xfe\x79\x34\x2a\xc5\xfe\x60\x6e\x3f\x0a\x89\xda\x99\xeb\xc5\x9f\xc2\x94\xe2\xa7\xf4\x73\xe3\xe6\x94\x13\x4f\x3e\x7c\x29\xa7\x95\xfa\x36\x7a\x4b\xdd\x58\xac\xa7\x7e\x25\x9a\x43\xec\x93\x24\xf2\x0f\xf5\x6c\x7f\x39\xf1\xa9\xd5\x1f\xc7\x5a\xe8\x77\x63\x2f\xf0\x10\xb3\x85\x38\x54\xf7\xc7\x11\x74\x73\x44\xee\x21\x55\xe8\x2b\x25\xf2\x0e\xa5\x42\xbc\xde\xaf\xf9\x75\x9c\x88\x7a\x28\xbf\xe9\xc4\xd0\xe7\x83\xcb\xae\x50\xdf\xbb\x80\x3d\x9c\x87\xd9\xec\x7a\x87\xb2\x8e\x8f\xcd\x3d\xae\x93\x56\x52\x44\xfb\x86\xa5\x15\x8f\x39\x37\xaf\xff\x8c\x7e\x7a\x6e\x9b\x0a\xb2\x93\x37\xbe\xa2\xfe\xab\xe3\x6e\x7e\xa0\xf8\xd9\x75\xfd\x4c\xf9\xb4\x4f\x3a\xd7\x45\x12\x39\x90\x66\x82\x3e\x48\x43\x81\xfa\x94\x6a\xf1\xfb\xc9\x97\x9e\xa0\x08\x5d\xcd\x81\x08\x27\x02\x4e\xc2\xf7\x2d\xfe\x2e\x8c\x0b\xc1\xef\x6a\x5d\x14\x81\xa7\x12\x79\x29\x31\x1e\xe2\x7c\xa9\x4c\xc3\x1f\x38\xa1\xea\xb8\xd8\xb1\xbf\xf1\x0f\xb5\xf9\x8f\xbf\x70\x0f\xff\x89\x03\xc9\xe5\x75\xac\x1f\x5b\x00\x2f\x0f\xe0\xfb\x05\xc9\xd8\x03\x3e\x8e\xe7\x75\xbd\xcf\x4e\x80\xe4\xf9\x7e\x30\x03\x4e\x3b\x02\x92\x77\x80\xe4\xcd\xfb\x21\x06\x78\xe0\x0c\x7c\x3c\x04\x54\x79\x03\x6f\xd7\xf2\xdf\xf9\x54\xa8\x67\x3f\xb0\xe5\xb6\x9a\x7f\x10\xea\xde\xbf\xe9\x7f\xd4\xe2\x3f\x4e\x0a\x75\xa1\xe3\xbf\xdc\x6b\xae\xe6\x1f\x02\xff\xec\xb7\xd8\x0f\xe3\x5f\x73\x20\x42\x7c\x88\x03\x39\x00\x4c\x9f\xc8\x3f\x26\x0e\x24\x1a\x90\x8c\xef\xda\x71\x78\x7b\x14\x88\x76\x00\xde\xbc\x04\x92\xda\x01\xef\xf5\x80\x2b\xbb\x81\x77\x71\x3c\x0e\x1f\x8a\x25\x23\x1a\x78\x25\xdc\x11\x2f\x39\xc9\x6d\x81\xe0\x5f\x6d\xfe\x41\xe4\x3f\xce\x09\x7e\x8a\xfc\x87\xc8\xbf\x88\xfc\xc3\xb1\x77\xbf\xc4\x61\x41\x4d\xff\x6a\xf7\x3f\xa9\xd6\xbf\xf8\x5b\x3f\x94\x5a\x1c\x88\xd8\xf7\xa2\x86\x2e\x8a\x17\xb0\x60\x38\xf0\xfd\x35\xe0\xbe\x1f\xf8\x3c\x4b\xb2\x47\x05\xde\x0f\x97\xec\x59\x80\xd7\x0a\x40\x64\x25\xf0\xfa\x09\x90\x18\x0e\xbc\xf6\x04\x2e\x67\x00\x2f\xfb\x01\xf7\xfa\x01\x6f\x76\x00\x6f\x5e\x00\x15\x42\x2d\xf5\x51\x43\x6e\xc5\xba\x77\x6d\xfe\xe1\x7f\xf1\x2f\x71\xbb\xb9\xfd\x27\xfe\xe1\x6f\x7d\x50\x6a\x73\x0f\xe2\xf7\xff\x1b\x0e\xe4\x87\x21\x30\xaf\x18\xf8\x54\x04\xac\xac\x04\x3e\xd4\x07\xfc\xd6\x03\x6f\xd7\x01\xbb\xd2\x81\x57\x87\x81\xa8\x6e\xc0\x0b\x73\xc9\xce\x00\x28\x8f\x01\x2e\x0d\xe0\x75\xef\x82\x52\xfe\xf9\x57\xfb\x80\xa7\x42\x6f\x88\x7b\x82\x86\x4c\xce\x14\x6e\x45\x0e\x48\xe4\x1f\xc4\xfe\x37\xbf\xf9\x7f\xa1\xa6\xff\xff\xc4\x3f\xfc\xc6\x41\x88\x7a\x10\x13\xfe\x1c\x8f\xff\xc5\x81\x4c\x5c\x04\x7c\xdd\x0b\xcc\xb5\x03\x3e\x36\x01\x56\x64\x02\x55\x5d\x80\xf5\x7b\x81\x17\x27\x81\x1d\xed\x80\xf2\xdb\x92\xb5\x0c\xf0\x2c\x1f\x38\x21\x0f\x3c\xbd\x07\x64\x2e\x03\x9e\x06\x01\x05\x25\xc0\xb3\x32\xe0\xd5\xdd\x9f\xf3\x41\xe4\x81\xc4\x71\x20\xce\x03\x91\x7f\xa8\x1e\xff\xee\x7f\xf6\x5f\xe4\x1f\x0e\xfe\x52\xdf\x14\xfd\x31\xaa\xa5\xe7\xf0\x37\xfd\x8b\xda\xdc\x83\xf8\xf3\x35\x38\x10\x3b\x60\x50\x3f\xe0\x47\x33\x60\x7c\x23\xe0\xe3\x06\xc9\x5a\x03\xa8\x5a\x02\x2c\xf1\x05\x5e\xf6\x00\xd6\xa9\x01\x65\x47\x80\xa0\x79\x80\x64\x95\x2d\xd9\xd1\x95\x5a\xf3\xdc\x55\x72\x1b\xb8\x78\x0a\x78\xbc\x0d\xb8\xe7\x06\x94\x58\x00\xaf\x3f\xfd\xe4\xe3\x44\x5d\xa0\xcb\x83\x6a\xe6\xc1\x6a\xfe\x43\xc8\x0b\xc7\x3a\x09\xcf\x5d\xd0\x1e\xf9\x37\xfc\x43\x6d\xfe\x43\xe4\x1b\xfe\xa6\x7f\x21\x7e\x5f\x6d\x0e\x84\xc6\x85\x2d\xd0\xf7\x1b\xf0\x29\x08\xb0\x1f\xca\x73\xdc\xd4\x00\xe0\xc5\x39\x60\x41\x0e\xd7\x42\xf2\x8e\x05\x4a\x27\x01\xfe\xf3\x81\xe2\x04\x20\x7c\x36\x50\xd4\x1a\x88\xbf\x09\x48\x56\x67\x99\x1b\x79\xdd\xff\xde\x37\xe0\xfe\x2d\xe0\x65\xdd\x9f\x7a\x28\xe2\x38\x10\x75\x50\xc4\xfa\xbf\xe8\xff\x91\xb8\x9a\xe3\xfe\xa0\xd0\x7b\x69\xbf\x30\x8e\x44\x0e\x60\xf7\xdc\x9f\x71\xa8\xf6\xbf\x16\xff\x21\xd6\xc1\x45\xce\x41\xb4\xb5\xfb\xa1\x88\xf1\xa0\xf9\x62\xc7\xe7\xc9\xe7\x55\x40\xd7\x42\xe0\xbd\x25\xef\x9b\xf4\x72\x33\x30\x29\x07\x28\xb7\x05\xe6\x5b\x01\xa5\x13\x25\x7b\x15\xa0\x68\x3c\xb0\xc5\x06\x78\x38\x8c\x73\x73\x92\xd5\x79\x7c\x0e\x50\xf0\x9e\xeb\x06\xdd\xed\x02\xdc\xad\x04\xf2\x96\x02\x2f\x35\x24\xab\x60\xfe\xb7\xc4\xf7\x62\xf2\xdd\x9a\xe3\x5f\xe4\x3f\xa2\x86\xd4\x7c\xee\xe1\x82\xe6\x4e\xa8\xd0\x47\x49\xe4\x1f\x76\x06\xfc\x8c\x43\x6d\xff\xff\x6d\x1f\x94\x3a\x3d\x6b\xfe\x5c\xa3\x60\xe0\xdb\x78\xa0\xf9\x1c\xe0\xbd\x3c\xd0\x71\x3d\xf0\xb2\x18\xe8\xfb\x12\x78\x7e\x1d\x18\x6b\x0b\x3c\x7e\x0b\xcc\x56\xe7\x7e\x2f\x4f\x05\xee\x15\x03\x9b\xe2\x81\xbc\x2f\xc0\x9e\xf9\xc0\xed\xb1\xc0\xb1\xbe\xc0\xcd\x0f\x80\x64\x47\x9b\xeb\x0a\xe4\xd7\x03\x72\x33\x01\xc9\x0a\x5d\xd4\x05\x12\xe7\xc1\xc9\xdc\x9a\xfe\x47\x08\xf9\x31\x5c\xc8\xa3\x7b\x85\x5e\x45\x22\xf7\x22\xfa\x1d\x28\xfc\x1e\xff\x3e\x3f\xe3\x20\xf2\x2f\x7f\xe9\x83\xf2\xaf\xad\x24\x1e\x9f\x17\x03\xba\x2e\xc0\xeb\x60\xc0\xc2\x8b\xf7\x84\xeb\x11\x0f\x3c\x2e\x06\x86\xa7\x03\x45\x63\x81\x69\xf3\x80\x82\x05\xc0\x92\x6d\x80\x64\xf5\xea\x1b\x0a\xdc\x90\x07\x42\x0a\x81\x9c\x37\xc0\xb1\x91\x40\x96\x1c\x90\xde\x19\xb8\xa6\x0b\xe4\xe7\x03\x97\x2f\x00\x95\x9f\x81\x0b\x02\x17\x25\x72\x50\xb1\xab\x05\xff\x87\xd7\x1c\xef\x21\xfd\x6a\xf9\xdd\xa3\xa6\xdf\x62\x8f\x22\xbf\xee\x3f\xe3\xf0\xff\xe6\x3f\xc0\xd7\x45\x7c\x95\xca\xed\xdb\x76\x80\xaa\x3e\x50\xde\x01\x30\x39\x05\x94\x44\x03\x1d\x56\x03\x0f\x32\x81\x81\x7d\x00\xc9\x2e\x6d\xd2\x75\xe0\x56\x16\xb0\xd0\x0e\xc8\xf6\x07\xd6\x75\x00\xae\x75\x05\x82\x19\x70\x29\x17\x38\x92\x0c\x64\xae\x04\xce\x6f\x05\x2e\x44\x02\x79\x83\x80\x73\xaf\x80\xca\xe1\x40\xf2\x6a\xae\x8f\x73\xec\xb8\xd4\x3b\x89\x8d\x9c\x53\x8f\xc8\xf5\xb0\xe6\x52\xb4\xcf\xdc\x65\x52\x87\xce\xa1\x83\x74\xeb\xca\xb2\x5f\x78\x17\xd1\x6f\xdf\x51\xa0\xda\xf6\xba\x74\xfe\xb1\xf7\xb6\x7f\x88\xc3\x7f\xe0\x3e\xf8\xee\x11\x78\xab\xcd\x6d\xf9\x7b\xa0\xde\x19\xa0\x64\x2a\xd0\xe8\x14\xf0\x60\x2c\x60\xf6\x03\xb8\xb3\xaf\xae\x6e\x2f\x75\x20\xfb\x83\xec\xb0\x31\x53\x80\x2b\xdd\xe4\x23\x9d\xa7\x00\x19\xcb\x94\xac\xbc\x9c\x81\x73\x52\xca\x5d\xb6\xbf\x02\x52\x6c\x55\xfa\xc4\x9c\x04\x92\xbe\xa9\xca\xa5\xf6\x05\x4e\x75\x55\x5d\x72\x4b\x15\x38\x7e\x5e\x75\x5f\x59\x17\x20\xce\x43\xf5\x1a\x3d\xff\x3b\x6a\xb4\x9f\x0c\x9d\xa7\x3a\x56\x62\x77\x68\xab\x91\xdd\xfa\x56\x99\xee\x21\x6e\x1a\xa4\x74\x92\xfc\x6e\xa4\x48\x3b\xbb\x35\x71\x8a\xfb\x24\xd6\xab\x83\x22\x71\xf6\xab\x97\x2a\x90\x4e\xed\xca\x56\xb2\x6f\x7e\x8b\xc3\x7f\xf0\xff\xab\x70\xbb\xea\xcd\xc1\x3a\x54\xef\x28\x5f\x5f\x8f\xea\x1b\x8f\xe2\x64\xe9\xf4\x28\xff\xb6\xa2\x53\x83\x51\x40\xce\x5a\x35\x97\xa6\x8e\xc0\xa5\xd7\x5a\xdb\xba\xe4\x00\xe7\xae\x6a\xcf\x1d\x36\x56\x2a\xf8\xcc\xd6\xc6\x1d\xa6\x2b\x49\x6b\x9c\xd4\x6b\x7c\x6d\xf9\x0f\x59\xb3\xb8\x96\x3a\x96\x5b\x72\xe4\xa4\x8e\xd4\xd3\x19\xb2\xff\xb1\xbc\x6d\x74\xa0\x4e\xd3\x44\x07\xf9\xab\x11\x07\x74\x86\x5c\xef\xa7\xd0\xf2\xc0\x4a\x1d\xb7\xc7\xcb\xe4\x4f\x85\x57\xe8\xaa\x7e\x0b\x91\x5b\x17\xdc\x4b\xf7\x35\x63\x72\xa1\xdb\x54\xf4\x1b\x33\x26\x3f\xc4\x37\x4d\xd7\x95\xb1\xfa\x8d\xd6\x38\xe9\x49\x31\x56\xbf\xab\xa7\x8a\xce\x5c\xc6\x64\xc6\xac\x34\xd5\x79\xc9\x98\x4c\xe0\xf2\x05\x3a\xd7\x18\x93\xb1\x5f\xaa\xaf\x93\xc7\x98\x4c\x47\xb7\x18\x5d\x43\xc6\x64\x7a\x2f\x58\x21\xf9\x3e\xe9\x79\xff\xde\xff\x3a\x54\x7f\xf9\x3c\x4f\x86\x76\xbb\x95\x06\x2a\xa4\xb2\x5c\xa2\xae\x45\xfb\xea\x07\xce\xda\xc4\x49\xdc\x78\x62\x40\x75\xbd\x2b\x0b\x8c\xec\xa4\xb5\x81\x73\x3e\x4d\x07\xeb\xd8\x4b\x1d\x4c\x2c\x69\xba\xc6\x72\xa4\x6c\x6e\xdc\x7c\x53\xd6\xd7\x58\xfe\x4a\xcc\xbd\x66\x6b\x27\x9c\x51\xda\x7d\x50\xbd\xd9\x46\xd7\x67\x2a\xad\xf6\x86\x36\x0b\xf6\x19\xab\x16\x15\x32\xde\xf4\xf5\xee\x49\x1a\xad\x77\xac\x33\x5d\x14\xa7\xa6\xd9\x31\xf0\xb8\x69\xdd\x4c\x77\xcd\x20\xff\xa1\xa6\x32\xf7\x9d\x34\xc7\x6d\x0d\x35\xdd\xf5\x2e\x40\xc3\xd0\xcf\xb2\xd9\x50\xc6\xd4\x0e\x78\xed\x68\x66\xca\x98\x6a\x87\x15\xef\x4d\x57\x32\xa6\x1c\xb3\xb8\x5d\xd3\x2c\xc6\x1a\x0c\x5c\x18\x62\x72\x96\x31\x25\x5d\xd7\x61\xc6\x17\x19\x53\x6c\xe8\xb2\xc9\x58\x91\x31\x85\x8e\x73\x2e\x18\x2d\x64\x4c\x2e\x6d\x56\xb6\x91\x11\x63\x72\x23\x66\x34\x31\xd8\xc1\x98\xec\x97\xff\xed\x3f\xe7\x21\x3e\x4c\xd7\xa4\x7d\x74\xd9\x6b\x3d\xb2\x8f\xea\x9a\xd2\xae\x38\x3f\xc0\x8c\x76\xb7\x59\x1e\x6d\x28\x0e\x99\x17\x48\x0e\x02\x67\x76\x76\x30\x96\xd8\x84\x2d\xd6\xed\xd5\xcf\x02\xd1\x97\x3b\x0d\x68\x66\x53\xff\x43\xd8\xc3\x0e\x51\x5d\x3e\x2a\x7f\xd9\xd5\xae\x43\xca\x08\x5f\xf5\x82\x80\xb5\x1d\x14\x67\xde\x6f\xf8\x76\x53\x68\xfb\x8e\xab\x99\x76\xfe\x7a\x8f\x76\xf6\x81\xab\x75\x95\xd7\x0c\x6b\xeb\x11\xfd\x46\x2f\xcc\xe3\xaa\xd5\x95\xd4\x0d\xfa\xe3\x56\x77\xb1\x9a\x71\x3b\x42\xbf\xef\x4a\x1b\xab\x1b\x2f\xf6\xe9\x39\x2e\x53\x6f\x7b\x86\x31\x9d\x16\x0b\x4e\xb5\xed\xc4\x98\xb6\xe2\xdc\x8b\x96\x67\x19\xd3\x5c\x32\xab\xab\xe5\x60\xc6\x34\xec\xa7\xe5\xb7\x1e\xc3\x98\xda\x83\x29\x7e\xe6\x11\x8c\xa9\x9a\x4e\x5e\x61\x76\x94\x31\x15\x5b\x87\xcd\xad\x9e\x30\xa6\xdc\x6e\xa2\x47\x4b\x7d\xc6\x94\xe2\x27\x58\x36\x7f\xc6\x98\x62\xe2\xdf\x9e\xbb\xa8\x0b\x51\x35\x53\x9f\x8e\x47\xca\xf4\x79\x3f\xa4\x87\xfd\xdb\xd2\xe9\xf2\xed\x13\x9d\x49\xa7\xf5\x72\x61\x37\x3a\x0d\x48\xf3\xea\x43\xf7\xd2\x12\x03\xfa\xd1\x69\xd9\x91\x38\x7e\x7f\xfe\xc0\xe6\x41\x91\x72\x83\x81\x90\xed\x83\x2a\x0c\x54\x65\x46\x6e\x0b\x1c\xa0\xd7\x36\x52\x79\xb5\xcf\xeb\xbe\x8e\xfd\x97\x36\x32\xf0\xb8\xda\x67\x94\x43\xb6\xae\xfc\x72\xfb\xde\xca\x8b\xdb\x19\xb8\xb9\x2d\xea\x55\xb0\xf1\x48\x93\xae\xf3\x52\x7b\x46\x84\x6f\x30\x31\x9d\x93\xd7\x23\x2a\x71\x41\xd3\x36\x33\x8b\x7a\xc8\x65\x3d\x6b\x3a\x6d\xfa\xa7\xee\xe5\x4f\xa2\x4d\xd6\x4d\xef\xda\x23\x9d\xb1\x26\x6d\x1c\x33\xbb\x8f\x64\x4c\x3f\x6b\xc2\xa2\xae\xeb\x18\xd3\x39\x33\x76\x9b\x75\x38\x63\x8d\x96\x8f\x3e\x60\x5d\xc5\x58\x23\xd3\x91\x26\x9d\xeb\x31\xd6\x50\x6a\xe4\xc0\x0e\x4f\x18\xd3\xf0\x1b\x9e\xdc\xfe\x30\x63\xea\xea\xc3\x7a\xb6\x1b\xc4\x98\x6a\x9e\x9d\x4e\x9b\x32\xc6\x94\x9f\xfc\xee\x3f\xe7\x9f\xde\x7c\x6f\x42\xfd\xb9\x9f\x58\x5b\x3d\x90\xd8\xfb\xce\x36\x54\x7f\xb8\x35\xa9\x0f\xa9\x0a\x5f\xb4\xe1\xb7\xea\xaa\xf9\x17\x57\x7b\xaa\x6b\x1e\x8e\x19\x4d\xe7\xb4\xfb\xac\xb8\x6e\x46\xd0\xbd\x09\x54\xdf\xdd\xec\xe4\x10\xdb\xc8\x01\xf0\xda\x33\xc1\xb4\xd5\x5e\xc5\xe8\xa5\x72\x63\x63\x7a\x9c\x6c\x28\xe3\x1c\x38\x4a\x77\xd4\x4a\x83\x66\xd3\x57\xdb\x9f\x70\xf6\x31\xb6\x74\x28\x1e\x31\x70\x4d\xa0\xe9\xac\x71\xeb\x87\x5d\x08\x69\xda\x3c\x68\x54\x83\xa1\xaf\xe2\x96\xb6\x34\x1b\x21\x6b\x97\x7e\x69\x70\xcb\x29\xc3\x94\xed\x3c\x0b\x4f\xb5\x28\x18\xea\x64\x97\xf9\x79\x77\xb3\x39\x43\xc2\x86\xc8\xb1\xe7\xc6\xc5\x03\xaf\x0f\x0c\x64\xcc\xd0\xbe\x7f\xaf\xfe\xc6\x8c\xe9\xf5\xef\x37\xbe\xef\x44\xc6\x74\x4e\xf4\xb6\xea\x6d\xc2\x58\xa3\x7c\xdb\xcb\xb6\xd3\x18\x6b\x34\xc4\xb6\xa2\x87\x0b\x63\x0d\x27\xf5\x48\xeb\x76\x85\x31\x8d\xc9\xdd\xbf\x75\x1d\xc1\x98\xfa\x80\xea\xd3\xa0\xe1\x0d\xe9\x1c\xe9\xed\xc3\x66\xa4\xff\xf1\x54\xae\x23\xd5\xa9\x0a\x36\x72\x15\xe5\xec\x53\x03\xe9\x54\x27\x53\x95\xdf\xae\x4c\x4e\x1a\x4b\xf5\xdd\x04\x43\x07\x3a\x87\x8b\xd1\x9f\x42\x75\xbe\xbd\x31\xd3\xe9\xcd\x11\xc8\x78\xdd\x74\x7d\xd4\x9c\x8f\x12\xbb\x5a\xcd\x65\xbd\x52\x27\x60\xe1\x05\xe7\x86\xc6\xfd\xea\xdf\x9d\xb9\x70\xf6\xa1\xce\x23\xd4\x56\x4e\x9c\x37\xe3\xbb\xdd\x26\x9d\x08\xfb\xfc\xe9\x52\xd3\x43\x0d\xdf\xd9\xa9\x4e\xab\xbf\xfa\xbc\xb1\xe9\x80\x2e\x53\xdb\x6c\x5f\x6f\xb2\xbe\x8f\xe3\x94\xc1\x47\x1c\x4c\x5e\xf7\xba\x30\x39\x2a\x7d\x99\xc9\x93\x1e\x8f\x26\xaf\xbe\xdf\xcf\xf8\x66\x0f\x87\xc9\xbe\xef\xc7\x1b\x1d\xec\xee\xe5\x70\x99\x31\xfd\x21\x5d\x67\x8d\x8f\x67\x4c\xc7\xb0\xab\xe2\xe8\x95\x8c\x69\xaf\xb3\x71\x19\xd9\x9b\xb1\x46\x8e\xd6\xd2\xc3\x9f\x30\xa6\xf9\xba\xf3\xe7\xa1\x1d\x18\xd3\xb4\xe8\x9c\x38\x38\x90\x31\x8d\xa1\x9d\x3c\x07\x64\x30\xa6\x76\xa3\xe3\x83\xfe\x52\x8c\xa9\xfe\x10\x39\xa0\x37\x37\x5a\x52\xfd\x56\xe4\x9f\xee\x2b\xf4\xa5\x15\x41\xae\x0b\xf7\x3b\xd3\x79\x1c\xe9\xbd\x9c\x1e\xeb\x48\xa7\xeb\xf1\x39\x33\xda\x70\xff\xf9\xe9\xe1\x1e\x7d\x67\xca\x13\x81\x3d\xf8\xa9\xea\x06\x07\xce\x49\xac\xc4\x52\xaa\xff\x38\xab\xae\x4c\xc2\x1e\x60\x9a\xfd\x2a\xe3\xc6\x37\xea\xa6\x8d\x95\x5d\x5e\xd5\x46\xb6\x81\xfa\xe0\x97\x4b\x37\xf5\x8b\xd0\xea\xd2\x67\xd5\x92\x18\x27\xeb\xc6\xcb\xbb\xe7\x2e\x2e\x5d\x3e\x48\xb7\x4f\x17\xd9\xc5\x4e\xfe\xcb\xf4\xba\x74\xf4\x5c\x34\x29\xba\x50\x6f\x6b\xbb\xf7\x6e\x1e\xe7\x96\xeb\xd9\xb5\x1d\xe2\x66\x9f\xff\x59\x77\xb2\xd5\x61\xb7\x89\x55\x17\x1b\xbb\x58\xcd\x77\x75\x65\x4c\xeb\x78\x9b\xa4\x39\x4b\x19\xd3\x4c\x6c\xa3\x38\x43\x83\x31\x8d\x0e\x6d\x54\xa7\x18\x31\xa6\x3e\xb9\xf5\x6a\x47\x5f\xc6\x54\x8f\x5b\xdc\x98\x18\xc4\x98\x4a\x94\xf9\xcb\x71\xf7\x18\x53\xde\x62\x3e\x7b\xcc\x62\xc6\x1a\x5c\x37\x3f\x3b\x6a\x1e\x63\x0d\x0e\xbc\x5f\x63\xa1\xcc\xe7\x3f\xe7\xbe\x7e\xf2\x4f\x7c\x7c\x67\xaa\xf2\xd3\xc1\x33\x95\xfc\xf9\x8a\xfc\x4f\x8c\xfe\x42\xaa\x8b\xef\x7d\xb3\x84\x78\x87\x1d\x0d\x56\x52\x1e\xf1\x0b\x5b\x4d\xf1\xf3\xe8\xe1\x45\xf5\x0d\xd7\xa2\xb5\x54\xff\x72\x02\xaf\x9b\x8f\xdc\xe3\x97\xa9\xda\x0c\x18\x20\xe5\x2b\xd3\x3c\x4b\xee\x4c\xd7\xc4\xf5\x66\x3d\xdc\x54\x0f\x76\xec\xeb\x73\x6d\xfc\x1d\x75\xe7\x36\xcf\x7d\x96\x2d\x5a\xa0\x11\x6a\x7e\x62\xdd\xbb\xcd\x3b\x34\x87\xb4\x0c\x5c\x67\x19\xd1\x49\x73\x4a\xf3\x11\x6b\xe3\xcf\xb6\xd0\x94\x37\xcd\x5c\xf3\xe5\xf6\x53\xf5\x57\xa6\x7d\xd6\xbc\x7a\xd5\x41\xcd\xd6\xb4\xb5\x67\x21\x63\xca\xef\x4c\x0e\xad\x38\xcc\x98\xd2\x7d\x93\x4f\x8b\x3b\x33\xa6\x34\xb7\x69\x1b\xd7\x48\xc6\x94\xea\x98\xd8\xbb\xec\x62\x4c\xe1\xab\xc9\x99\xb9\x6d\x19\x53\xf8\xd2\xd4\x78\xe6\x1e\xc6\x14\x6e\x18\x0f\x9c\xfa\x83\x31\x79\x13\x63\x7f\xa7\x08\xc6\xe4\xde\x94\xe9\xdb\x52\x1d\xe7\x41\xd8\x30\xba\x2d\x7b\x63\xcd\x38\x1a\x1f\x99\xbd\xa7\xd1\x39\x75\xca\xaa\x79\x74\xfa\x79\x3c\xca\x8d\xce\xe3\x63\x1e\x2e\xa7\xba\x75\x58\x8f\x55\x74\x7a\xbc\xa3\xd8\x8b\xf2\xe9\x46\xc6\xfb\xa7\x78\x0e\xda\x40\xe7\xda\x8b\xe0\x47\xb7\xec\xa6\xa7\x73\x4e\x62\x94\x47\x20\x9d\x9e\xf6\x2a\xda\xb9\xbe\x9e\x2c\xd0\x39\x62\xc7\x53\xfd\xef\xf5\xf2\x2c\x9e\x6f\xff\xd1\xe9\xae\x82\x65\x8b\x39\xdb\xf3\x47\xfa\x29\x8e\x32\x79\xb3\xdd\x63\xbe\xbe\xe2\x13\xa3\x65\xdb\x0d\x7c\x1b\x28\x7e\xd6\x4f\x08\x2a\x09\xbf\xa4\x38\x59\xb7\x3c\x68\xc2\xe9\x4f\x0a\x7e\x3a\x77\x03\x8b\x6e\x42\xde\x51\x67\x74\xe0\xc4\x17\x2a\xf5\x63\x75\x16\xfb\xab\x32\x26\xab\xa5\xf3\xc3\xd7\x83\x31\xd9\x61\xba\x1b\xd7\x0c\x60\x4c\x76\xad\xee\x13\x77\x7f\xc6\x64\xb7\xe8\x8e\x58\xd9\x9c\x31\x99\xf3\x3a\x89\xcb\xa6\x32\x26\xfd\x51\x77\x9f\x5b\x2e\x63\x32\x5b\x75\xad\x5d\xf9\xc7\x06\xce\xaf\x19\x93\x8e\x7c\x10\x3b\x9c\xea\xef\x37\x55\x1c\xe8\xb4\x3b\x33\x95\x57\x91\x92\x2d\x5c\x69\xbe\xc7\x87\x2e\xa5\xf5\xc1\xe1\x2e\x1e\x74\x8a\xbe\xef\x84\x17\xe9\x48\x05\x07\x6d\x20\xff\xb7\x34\xf0\x23\xbe\x63\xad\xc1\x16\xaa\x22\x2c\x2b\x0a\xa0\xaa\xed\x9c\x1f\xfc\x74\x7d\x92\xfe\x2e\xca\x3b\x83\xaa\xf6\xd0\x39\x78\x07\x4b\x5e\x9d\x6b\xf1\xf6\xe0\x02\x8d\x3b\x80\x61\xf4\x81\x0b\x96\x83\xa4\xfb\xe9\x0e\x38\x28\x6d\xa7\x2a\x2d\xa5\xed\x76\xb0\xdd\x9c\xe1\x75\x57\x6a\x4f\x3e\x98\xe0\x33\x19\x68\x58\x75\xd0\x3e\x4c\x06\xd0\x68\x7b\x60\xe3\xa9\x4a\x40\xad\xf1\xfe\xc7\x39\x96\x80\x8a\xcd\xfe\xce\xcf\x4b\x00\xa5\x75\x61\xb4\x8e\x96\xef\x15\x4c\x75\x3d\xd9\xc4\x00\x5a\x77\x4b\x4f\xdb\x4c\xf5\x0a\xe9\x8f\xbe\xfd\x69\xef\xf8\xcd\x87\x38\xf4\xba\x11\x5e\xa4\x4b\x28\xd3\x6c\x35\xdd\x6b\xae\x67\xb5\x82\x38\xeb\x5b\xdf\x1c\x49\xcf\xe1\xd2\xd1\x39\x54\x9f\x49\xd1\xe5\x3c\xc4\x09\xf7\xe5\xc4\x8b\x1e\x1a\xe0\x45\xef\x8b\xfd\xaf\x37\x50\x3d\x6b\xd7\xc2\x4d\xa4\x6f\xe0\xaf\xcf\xf5\x51\x36\xb8\x70\x7f\x57\x59\xee\xa4\x71\xe5\xaa\x11\x42\xd5\xe9\xa9\xe5\x7b\xa9\x5f\xd4\x98\x00\x5e\x2f\xef\x3d\x9d\xab\xd2\x9b\x27\x70\x2e\x44\x33\x23\xce\x4a\xfa\x02\xa0\x72\x3c\xee\xa8\x69\x0b\x40\x31\x39\x2e\xae\x77\x12\x20\xf7\x28\x2e\x7c\x4a\x63\x40\xfa\x62\xdc\x99\x55\xdf\x81\xba\xf2\x71\xae\x3b\x5b\x00\xd8\x79\xac\x34\x8e\x9e\x44\x6c\xf6\x15\xca\xc4\x47\x5d\x1f\x13\x61\x71\x74\x0a\xa3\x4a\x51\xc4\x21\xfe\xee\xdb\x2b\xd4\xfd\x83\x4f\x72\x1b\x44\xeb\x6c\xb4\xf3\x37\xe0\x1f\x6f\x12\xee\xfd\xfb\x0a\xe7\xf6\xeb\x7a\x48\xec\xb5\x68\xce\x7f\xa5\xb5\x58\x42\xef\xb7\x93\x45\x9e\x94\x10\x8e\x2e\xf5\xa1\x79\x70\xc0\xd1\x8f\xbe\x3b\xa4\xd2\x3f\x81\x7e\x6b\x3c\xe7\x22\x7c\x73\xf8\x73\xf6\xb0\xe3\x3c\xcc\xe2\xd9\xbc\x8f\xc6\xec\x1c\xee\xb7\x83\x61\x14\x8d\x0b\xbb\xe2\xc3\x14\x57\x9b\x9b\x71\x94\x1f\x9a\xf5\x3d\x49\x75\x71\xf9\xdc\xd3\xaf\xf9\x1b\x3b\x45\x56\x9b\x94\xf3\x53\xa4\xba\xd0\xca\x24\x79\xc5\x78\xaa\x14\x27\x8f\x5c\x4a\x95\xf8\xe4\xbe\x5c\x79\xe8\xcc\xf6\x23\xf4\xf9\x33\x0d\x33\xe9\x2f\x9f\x56\x2d\xa2\xca\x61\xe2\xce\xcf\xa4\xc0\x13\x2f\xf4\xf5\x10\xf5\x2d\x0e\x08\x15\x93\x30\xa1\x1f\xc6\x6e\xa1\xff\xc1\x4e\xa1\xa2\x12\xe8\xc5\xed\x56\xe2\x01\xce\x67\xaf\x20\xae\x23\xb1\x33\xcf\x6b\xc7\xd6\xf8\xd2\xbd\xf4\x08\xaf\xad\x34\x1f\x42\x5d\x78\xbf\x98\x40\xb6\x8b\xeb\xc0\xb0\x3d\x74\xff\x7f\x5d\xf7\x03\xe4\xcf\xf2\x74\xae\x0f\x33\x3f\x20\xe6\x26\xcf\x07\x5c\x27\x65\x74\x31\xd7\x87\xe9\xbf\x8f\xf7\x95\xe8\x58\x7a\x9a\xf6\x21\x46\x53\x52\x29\x9f\xca\x36\xe5\xfd\x73\x80\xcc\x20\x2d\x5a\x99\x64\xa4\x76\xa2\x8e\x45\x19\x13\x85\x0c\xed\xec\x46\x6f\xe6\xcc\x6d\x5b\x28\xf2\x19\xf3\x22\x29\x03\xa7\x5f\x3e\x47\x23\x2a\xdd\xf1\x1e\x65\xaa\x0b\xaf\xde\x53\x1d\x47\xac\xe7\x9f\x14\x38\x88\xdf\xb8\x18\xc1\xee\x17\xe2\x52\xcd\xc5\x50\xc7\x01\x51\x07\xea\x58\xd7\x4d\x54\x8f\x8e\x3a\x1a\x48\xfc\x4b\x18\xe3\x9c\xdb\x4e\x2b\xae\x7f\xb4\x35\x60\x3f\xad\x9f\x7c\x92\x23\xa9\xea\x26\x72\x40\x6e\x76\x47\xe9\xe9\xcc\x72\x89\xa3\xf7\xaa\x43\x08\x7f\xde\xc3\x97\x26\x51\xde\xec\x75\x39\x85\xe2\x63\x99\x75\x9e\x74\x36\xf4\x9a\x5c\x24\xae\x54\xca\x8d\x73\x02\x92\x15\xb9\x16\xef\xd0\x96\xcf\x49\xed\x6c\x1b\x7b\xaa\x6f\x66\xc7\xce\x0f\xe0\xd6\x8f\x76\x6e\xd9\x96\x07\xb9\x92\x55\xfc\x59\xca\xe0\xd7\x47\xde\x7c\x06\xaa\xe7\xbf\xea\x4f\x33\x5b\xa8\xdf\x9e\x13\xfa\x7c\x9c\x11\x3a\x2d\x9c\x14\xfa\xc1\xfc\x95\x8b\xa1\x71\x13\x97\xb5\x99\xf2\x62\x8c\xd9\x76\xf2\x2b\xfc\x76\x08\x3d\x95\x5d\xe9\x5c\x17\xc7\x3f\x3d\xe2\x04\xe5\x81\x6d\x87\x28\x3f\x8a\x1c\xd0\xb2\xc9\x9c\x0b\x99\xf7\xe6\x14\xf1\x5f\xd3\xd5\xb8\x1e\xd0\xd8\x7b\xbc\x5e\x6c\xd7\xed\x1c\xd5\x87\xbb\xb7\xe1\x5c\x88\x45\xf1\x15\xda\x7f\x68\x6f\xe2\x3a\x0a\x38\x79\x4b\xa8\x77\xe7\xc5\x6a\x10\x89\x94\x57\xd0\x96\xde\x34\xf9\x85\xc3\xa9\xfe\x9d\x1f\x30\x97\x22\x75\x77\x84\x0f\xef\xe8\xe5\x18\x46\xe4\x59\x5e\x31\x57\x66\xc9\xcb\xbb\x41\x7e\xdc\x99\x5c\x46\x37\xf0\x6f\xf6\x67\x34\x4e\xae\x09\xf7\xfa\x33\xde\x72\x9b\xb6\x98\xdb\xe4\x7b\xdc\x9e\x12\xb8\x87\x04\x81\x23\x8b\xa5\xf1\x71\xb8\x2c\x98\xf6\x07\xfb\xa7\xec\xa1\x3c\x17\xe2\x7d\x90\x46\x63\x60\x24\xd7\x03\xda\xc8\x62\x69\x1c\xac\x09\x88\xa3\xf7\xe9\xca\x14\xae\x07\xe4\xe6\x95\x4c\x0b\x89\xd9\xeb\xce\xd2\x3c\x72\x52\xb8\x40\xef\x97\xd1\x53\x33\x89\x1b\xe9\xff\xe2\x32\xf5\x09\xb1\x0e\xb8\x4e\xe3\xa1\x85\xfe\x4d\xf2\xbf\xe1\xdc\x3c\x3f\xee\xff\x7d\x17\x6e\x1f\x35\x53\xa3\x8c\x5c\x14\xd5\x86\x66\xe8\xa3\x19\x83\x29\x53\x3d\xf2\x9e\x49\x3b\x98\xc7\x96\xde\xf4\x17\x8b\xd5\x76\x13\xdf\x50\x3c\x9b\x2b\x31\x3d\x4a\xbc\x4e\x0a\x4d\x85\x7b\x78\xe7\xa1\x42\xe9\x1f\xf4\xa6\xbe\x23\xd4\xf7\x73\x84\x7c\x79\x55\x78\xfe\x99\x42\xfd\xff\x5c\x19\xb7\x29\x03\xb9\xe5\xbc\x50\xc4\x1c\xce\x7f\x85\xba\x44\xd0\xf8\xde\x51\x7c\x94\x54\x68\xb6\x86\xf3\x3e\x51\xeb\x77\x9d\xa2\xaa\xb1\x27\x38\x0f\xb3\x6c\x32\xe7\x80\xe6\x15\x73\x3e\x60\xa6\x42\x06\x55\xdb\x27\xe9\x5f\xa1\xf1\x34\x22\x99\xf3\x5f\xfd\x7a\xdf\xa4\x3e\x12\x1d\x03\xee\xd0\x3c\x69\x16\x56\x40\x3f\xaf\x31\xbc\xf0\x06\xf7\xbf\x54\xc8\x93\x65\x39\x0d\xe8\x4d\x52\x76\xce\x82\x22\x59\xfe\x9d\x77\xfa\x7b\x91\x36\x8d\x9e\x48\x45\xaa\x3b\x8d\xb8\xf2\x62\x4e\xec\x55\xa4\xc6\xd1\x8c\x2b\xcf\xb9\x44\x79\xa1\x62\xe0\x63\xda\x09\x95\x1b\x7e\x9f\xc7\xe3\xc5\xfd\x2b\xb8\xc0\xed\x6d\x81\x87\xa8\xee\x87\xf3\x4e\x88\x8b\x50\x71\xbe\x40\xf7\x9a\xf6\xfe\x88\xa2\x59\xb6\xb3\x13\xf7\xdf\x7f\xfe\x09\x7a\x2f\xfa\xea\x27\x12\x2f\xe9\x1d\x7b\x96\xf4\xb1\x56\xaf\x4c\xa7\x7d\x98\x5b\x58\x26\xfd\x35\x97\x0e\x57\x49\xc5\x66\xea\xbb\x2c\x7a\x8a\x13\xae\xdd\x24\x2e\xcc\xee\x25\xf7\xbb\xa7\x47\x3e\xf1\x63\xed\x8e\x72\xdd\x10\xd3\xcc\x62\xca\xf6\xaa\x4f\xb9\xaa\x0b\xbf\xb1\x26\xf9\xef\xbd\x9a\x02\xbd\x17\xde\x59\x35\xa3\x71\xf0\xfe\x0c\x27\x7c\x3f\x75\xe3\x2b\xd9\xf7\xdf\x96\xd1\xca\xe6\xc3\xb6\x00\xea\xc4\xf4\x31\x80\xf3\x62\x1f\x1d\x32\x68\xfe\xbc\xcb\xbd\x4f\xdf\xff\x6e\xf4\x7b\x9a\xd1\x95\x42\x1c\x4a\x4f\x73\x2b\xea\xe7\x54\xc7\xa5\x76\x9f\x20\x8a\x4b\xa8\x5e\x82\x01\xcd\x83\x13\xbc\xff\xdd\xe6\x6e\x29\xb4\x7e\xf6\x39\xcf\x69\x2c\xcf\xb1\x5c\xf7\x6a\x69\xc0\x55\x7a\x7b\xb9\x4e\xe6\xbc\xdb\xcc\x94\x1b\xf4\x7c\x9d\x8c\xee\xd0\xba\x79\x54\x42\x01\xed\xbb\x07\x7f\x7f\x48\x7a\x12\x3d\xea\x3d\xa2\x6e\x3e\x6d\xf4\xf9\xa8\x35\xe9\x5d\x46\x7c\x9d\xaa\xf9\x4b\xee\x1e\xde\x95\x73\xfb\x23\x47\x86\xf7\xef\xf0\x32\xa6\x1d\x4b\x35\x07\x12\x3d\x4e\x13\x35\x74\x1f\x36\x0a\x75\xfb\x03\xbc\xef\x8b\x57\xb2\x50\xef\xbf\xc3\x39\x01\xbb\x57\x34\x8e\xc4\x7a\x7e\x55\x3b\x6e\xcb\xa3\x85\xb8\x08\x5c\x58\x51\xc8\x9f\xe2\x52\x9b\x83\xf2\xd5\xe7\xcf\xdb\xbb\xf8\x0a\xcd\xeb\x95\x29\x59\xe4\xaf\x9b\xa0\x93\xe2\xd2\xf0\x36\x7d\x7e\x86\x77\xc1\x0d\x3e\x1f\x84\x3e\x59\x59\x45\xe4\xd7\xc0\xb3\xa5\xf4\x7b\xba\x6d\x28\xa3\x7d\x4b\x9b\xc2\x17\xc4\x9d\x19\x07\x56\x51\x9e\x54\xd5\x7f\x4f\x5c\x45\x1d\xa9\xef\x42\x3c\x7e\xf2\x30\xd5\x1c\x88\xa0\x83\x32\x42\xd0\xbf\x98\x23\xdc\x8c\xf2\xca\xe7\x36\x58\xe0\x25\x8e\x09\x7a\x21\x19\x82\x1e\xc8\x7d\x81\x13\x12\x74\x62\x04\xe5\x8d\x4f\xc2\xfa\xaa\x5a\x0f\x45\xd4\x89\x11\x3a\xd8\x14\x1e\x95\x58\x7f\x81\x87\xd9\x34\xf3\x22\xad\x9b\xd6\xa5\xf3\x3e\x78\x9e\x54\x39\xfb\xd9\x1f\x6c\xc1\xee\xbb\xd4\xad\x65\xce\x42\x3e\xce\xa7\x5a\x15\x13\x17\x3b\x71\x18\x1f\xe7\x23\xb6\x3c\xa7\x71\xd4\xdf\x85\x8f\x77\xb1\x5f\x56\xeb\x94\x77\x44\x81\x35\x55\xfb\x46\x7a\x42\x6a\xb7\x84\x13\x8f\x31\xec\x77\x0e\x44\xe0\x5f\x3a\x0a\xdc\xc6\x10\x81\x7f\x99\x22\xf4\x81\x59\x36\x99\x5b\xb1\x3f\x8e\xd8\x0f\xe6\xa4\xc0\x7b\x88\x7d\x71\xf8\x93\x61\xec\xa5\xa0\x0b\xc2\xff\xd2\x6f\x7a\x28\x7d\xb9\x2d\x5b\xc7\x6a\xeb\x1e\xfc\x0f\xfe\xe3\x6f\x1c\x48\x4f\xa1\x8f\xc9\x6f\x1c\x88\x70\x9f\x73\xfa\x46\xe0\x73\x05\xef\x87\xf2\xfe\x29\xef\xfb\x50\x55\x01\xf8\xdd\x00\x5e\xd8\x4a\xd6\xa8\x40\xc5\x7d\x60\xff\x36\xa0\xa2\x1f\x10\xaf\x00\x3c\x3f\x08\xa4\xde\x00\xca\x36\x03\x39\x6b\xb8\xfe\xc7\xa3\x34\xa0\x72\x13\xf0\x65\x0b\x50\xba\x85\xff\xee\x02\xe1\x5e\xf3\x6f\xfa\x0f\xc2\x7d\xdf\xb3\x42\xdd\xf7\x8c\x50\x27\x3f\xd9\x9f\xdb\x04\x41\x9b\x43\xac\x7f\xfe\xc9\xff\xbf\xe9\x5f\xfc\xaf\xfe\x1f\x35\x38\x90\x48\x60\xec\x37\xe0\x87\x94\x64\x6d\x01\x7c\xde\x0d\xb8\xbe\x06\xde\x86\xf1\xbe\x0f\x2f\xcf\x01\x1b\x64\x80\x72\x3f\xc9\x5a\x15\x28\xfb\x04\x48\x76\x60\x4f\xbf\x00\xb1\xe6\xc0\x53\x39\x40\x32\x53\x9f\xdc\x02\x72\xfa\xf3\x7b\xee\xa5\x0a\x3c\x1e\x9f\xfc\x80\xe2\x67\xfc\x6f\xdd\x11\xfc\x15\x75\x40\x44\xfe\x41\xe4\x3f\xaa\xf9\x17\xc1\xff\xda\xf5\xdf\x7f\xe2\x1f\x9a\x3f\xe7\xb6\x76\x1f\x94\xbf\xf6\x43\x11\xc6\x45\x77\x81\xb9\xf8\x95\x03\xf9\xe2\x07\x38\xa5\x01\xef\xe6\x01\xce\xa3\x80\x57\x7b\x81\xe5\x69\xc0\x8b\x51\x80\x64\x7d\xf4\x7c\x3b\x10\xd8\x1b\x28\x75\xe2\xb5\xa8\xc7\x1e\xc0\x51\x59\xa0\x64\x2c\x70\xf6\x1a\x50\x62\x05\x48\x32\x73\x49\x47\xde\x03\xe5\x89\x2a\xf0\x59\xf5\xe7\x7d\x6f\xb1\xee\x5d\x3d\x0e\x1e\xfc\x37\xff\xc5\xfa\x3f\xfb\x0f\xfc\x47\x6d\xfb\x47\x0e\x24\x12\xe8\x37\x15\xf8\x76\x00\x18\x61\x02\x7c\xb2\x05\x26\xb9\x03\xaf\x36\x03\xb3\xf5\x81\x4a\x55\x60\x89\x25\x50\x2e\x03\xac\xb5\x05\x4a\x13\x24\x39\x0a\x90\xbc\x5d\x24\x3b\xb6\x47\x2a\xc0\x11\x27\x5e\xe7\x4e\x4e\xe6\xba\x1f\x92\x8c\x55\x94\x0d\x14\x7b\x02\x8f\x37\x00\x5f\xae\xff\xe4\x81\xb2\x84\xfa\x9d\xa8\x83\x52\xad\x7f\x60\xfd\xe7\xf1\xff\xb7\x7b\xf0\x7f\xf2\x5f\xbf\x17\xb7\x22\x07\xf1\x37\xfd\x8b\xdf\xe2\x21\x19\x17\x2b\x39\x07\xf2\xf5\x06\xaf\x73\xbf\xf9\x0e\x8c\xdb\x08\xbc\x6a\x0c\xcc\x48\x06\xca\x5c\x39\x2f\xf6\xe4\x02\xbf\xef\x5f\x5d\xef\x0e\x95\xac\xe5\x80\xfb\xc9\x80\x64\x87\x2a\xf9\xf8\x6c\x0e\x70\x2f\x13\xb8\x9e\x07\x3c\xd0\x03\x8a\xcb\x81\x87\x7d\x80\xcf\x4f\x7e\xea\xa1\x54\xeb\x1f\xd4\xe7\x56\xec\x7f\x22\x3e\xff\x58\x03\x6e\x45\xfe\x21\xba\x5e\x4d\xff\x7f\xe5\x1f\x9a\xd4\xd2\x2d\xf8\x1b\xff\x51\xdb\xea\xba\xfd\x12\x47\xa1\xde\xff\x55\x19\xb0\x71\x01\x3e\xec\x02\xfa\x9d\xe4\xf3\x60\xb4\x02\x50\x3e\x84\xf3\x0f\x25\x7b\x80\xf9\x73\x81\xe2\xd1\x80\x87\x2e\x50\xb8\x05\xd8\x94\x02\xdc\xdb\x0e\xec\xee\x0b\xdc\xed\x03\x1c\xea\x00\xe4\x2d\x00\xce\xdc\x04\x6e\xbb\x00\xd7\xfc\x81\x5b\xa9\xc0\xc3\x06\x92\x55\x33\xf0\xde\x07\xc8\x16\xfa\x81\x64\xb4\xac\x39\x0f\x44\xfe\xe7\x88\xd0\xc3\xaa\xba\xef\x89\xd0\x3f\x43\xe4\x1f\xc4\x3a\x78\xc8\xa0\x9f\x71\xa8\xed\xff\xdf\xfa\x9f\xfc\xc6\x83\xfc\x12\x8f\x1f\x83\x81\xe6\x25\xc0\x47\x63\xa0\xfd\x22\x3e\x0e\x7a\x59\x02\x15\x2b\x81\x61\x2a\xc0\x93\x06\xc0\xa4\xfd\x40\x51\x7f\xc0\xb9\x0e\xf0\x60\x28\xb0\xa2\x12\x28\x98\x04\x6c\x34\xe7\xfe\xed\x9a\x04\x48\x56\x67\xd1\x2e\xc0\x0d\x0f\xe0\xf4\x3c\x40\xb2\x6a\xb9\xde\x02\xc8\x0d\x03\x8a\x37\xf1\x5c\xf1\xee\x20\xef\xa1\x43\xf3\x40\xa8\x57\x9f\x8a\xad\xf5\xfc\xdb\xd4\x7c\xee\xe1\xe7\x6a\xfa\x1f\x2c\xf4\x9d\xda\xf1\x4b\x9e\xac\xed\xbf\xc8\x7b\x88\x7c\x83\xc8\x03\x88\x1f\xd7\xd6\xbf\x90\xfc\xfc\x0f\x4f\xc0\x30\x9e\x73\x2f\x92\x71\x21\x59\x45\x74\x49\x01\x9e\x1a\x00\x03\x72\xb8\xce\xd1\xd8\x49\x9c\x01\x94\xe4\x89\xbb\xef\x80\x65\xb6\xc0\xad\xb3\xc0\xfa\x6e\x40\x76\x15\xb0\x63\x1b\x90\xb3\x99\xc7\x21\x4b\x15\x38\xad\x0a\x64\xd5\x01\xb2\x66\x73\xee\x41\xf2\xde\xbc\x16\xcd\x59\x3b\x31\x1f\x8a\x1c\x90\x38\xff\xa3\xce\xfd\xf9\xb9\xef\xfa\xca\xad\xc8\x01\x6c\x17\xb8\x10\xff\x5b\x3f\xe3\xf0\xaf\xfb\x80\xfc\x41\x17\xe4\xc7\x16\x40\x6e\x00\xf0\x49\x19\xd0\xb4\x00\x5e\xf5\x96\xac\xa1\x39\xf7\xd1\xfe\x38\x50\x1c\x0b\xd8\x06\x00\x0f\x52\x81\x91\xc3\xf9\x73\x9f\x6a\xce\x35\x70\x24\x79\x22\x7b\x35\xb0\xf6\x10\x70\xad\x33\xb0\x5d\x0e\xb8\x32\x9f\xeb\x82\x5c\x76\x05\xed\xec\x32\x37\xf2\x18\x48\xde\x87\x92\x58\x66\xaa\xf2\x3c\x99\x22\xe4\x07\x51\xff\x27\xc6\x49\x78\xee\x02\xff\x21\xf2\x3e\xa2\xdf\x3b\x2c\x6b\xfa\xbd\x45\xc8\x23\x1b\xd9\xcf\x38\xfc\xbf\xf9\x0f\xf7\x9f\xdc\x43\xd5\x0b\x40\x3e\x04\xa8\x88\x02\x74\x7a\x01\x25\xdb\x01\xb3\xe1\xbc\xe7\x91\x64\x5c\xe4\x15\x03\x76\x4d\x80\x1b\x37\x39\xff\x20\x79\xc6\xae\x83\x80\xcb\xaf\x01\x2f\x4f\xe0\x92\x06\x5f\x47\x5c\xd8\x00\x1c\xac\x0f\x9c\x8b\x00\x12\x4b\x80\xb4\x7e\xc0\xb5\x7e\x5c\x43\xe8\xb1\x25\xcf\x9d\x5f\x6c\x7e\x72\x40\x87\x3c\x6b\xfa\x1f\x82\x3f\xfb\x5d\x9b\xfb\xf0\x11\xc6\xcd\x3f\xf2\x0f\xff\xc4\x01\x08\xdc\x07\x57\xd7\x03\xde\xcd\xe0\xb6\x92\x6f\x0e\xe8\xfd\xae\x1c\xc8\xfd\x37\x74\x02\xf2\x3b\x03\x56\x7d\x80\x5c\x27\xbe\xce\xba\x7a\x11\x18\xd3\x07\xc8\x2c\x05\xe6\x78\x02\x17\xb6\x03\xab\xa5\x81\xd4\x50\x60\x6b\x01\x70\xd6\x0c\x38\x90\x0b\x9c\x9e\x03\x9c\xcc\x07\x12\xe7\x00\x57\xc7\x02\x92\xb5\xf3\x23\x77\xe0\x84\x37\xf0\x71\xe7\xcf\xf7\x9f\xe8\xbf\xc8\x3b\x89\xbc\xcf\x16\x63\x6e\x7d\x85\x9e\x6c\xeb\xac\x6b\xfa\xed\x39\x96\xdb\x95\x73\xff\x21\x0e\xff\x50\xff\x16\xfd\xff\xb8\x9e\xdb\x97\xc6\xdc\x3e\x4d\xe1\x96\x6e\x9d\x64\x03\x79\x7e\x80\xc6\x18\x20\xb7\x3e\xd0\xfc\x22\x70\x75\x04\x60\xf3\x02\xc8\x78\x01\x0c\x1f\x07\x9c\x1b\x0d\x4c\x37\x01\x52\x64\x80\xe5\xeb\x81\xc4\xaa\x3a\x17\xb7\xd4\x05\x8e\x17\xd4\x9d\x1d\x6e\x0e\xc4\x2d\xac\x37\xf7\xc4\x19\xe0\xe8\xa3\x7a\x57\x2f\x57\x01\x87\x5d\xa5\x87\x3e\xdc\x0e\xc4\xf8\x4a\xeb\xbc\x6f\x0c\xec\x77\x92\xa6\x73\xe7\xe0\x60\x69\xba\x9f\xe6\xef\x21\x5d\x8f\xfc\xfe\x2a\x4d\xf7\xaf\xd6\x4e\x97\xa2\x73\x68\xaf\xcb\x52\xfb\x25\x76\x75\x61\x1d\xea\x67\xbd\xe2\x73\x1d\x3a\xb7\x5f\xd2\x8e\xfb\xb4\xa8\xe1\x2f\x71\xf8\x17\xfc\x43\x6d\xff\xb9\x0a\x23\xd7\xf2\x91\xfc\x57\x24\x9c\x36\xe6\x09\xa7\xaf\xd9\xf7\x80\xfa\x43\x80\x8b\x29\x32\xb6\xfa\x2d\x80\xb4\x2d\x0a\xaa\xed\x24\x73\x5e\xa9\xc1\xe3\x81\x8e\xc0\xf1\xfe\xaa\xef\x1d\xdd\x81\xd8\x33\x1a\x9a\x8b\xc2\x81\x43\x7e\x9a\xcf\x7c\x87\x02\x91\x07\xb5\x74\xf6\xf4\x04\x0e\xd8\x69\xa9\xc7\xad\x04\xf6\xdd\xd7\x1a\x92\xf1\x06\xd8\xdb\x42\x6b\x54\xc1\x08\x20\xd4\x49\xcb\xff\xb5\x09\xb0\xb3\xb9\x16\x7f\xee\xee\x0d\xd7\x4a\xec\xfa\x36\x9a\xc4\xb5\x78\x56\xa9\x6f\xa6\xe7\xbc\x50\x85\x74\x60\x96\x29\xa9\xd0\xf9\xed\xe2\x26\xca\xa4\xf7\xbd\x60\x91\xc2\x0b\x89\x9d\xb7\x48\x3e\x43\x62\x9d\xdb\xcb\x5e\xf9\x57\x71\x28\x13\xfc\x17\x6e\x19\xbe\x44\x1d\x3a\xaf\x28\xb5\xae\x4f\xf5\xec\x82\xb3\x0d\x68\x57\x7c\xcb\x4e\x8d\xce\x9f\xae\x46\xab\xd2\x3e\xfb\xdc\x21\x4d\x3a\x2d\x49\x9a\xa9\xd3\x57\xf3\x2e\x10\x37\x4e\xb7\xb8\x55\x8b\xba\xc1\x31\x23\xf5\x93\x7a\x9c\x91\xbe\x74\x40\xca\x20\x7d\xf4\x00\xd9\xca\x3d\xa3\x0c\x47\xce\xad\x23\xf7\x3a\xd8\xcb\x70\xac\xa7\xae\xc2\x81\x20\x15\x43\xf5\xa0\xfd\x8a\xf7\xb7\x2d\x31\xac\x1b\x9d\xa7\x54\xbe\xd9\xdb\x20\xea\xec\x90\x06\x1d\x36\xda\x18\xcc\xb9\x59\x47\xe9\x93\x6f\x2b\x83\xe3\xcf\xfb\x29\x8d\x5c\xaf\x65\xe8\xc2\x98\xc2\x55\xf7\x9d\x86\x81\x8c\x29\x68\x2d\x6d\x6e\xd8\x93\x31\x79\xad\x05\x97\x0d\x3a\x31\x56\xff\xbc\x4b\x9c\xbe\x1f\x63\xb2\x85\x73\x0e\xeb\xc9\x33\x26\xe3\x3a\xc3\x4b\xf7\x1b\x63\x32\x5a\xd3\x02\x74\x2d\x18\x93\x1e\x3a\x25\x5f\x47\x9a\xb1\x7a\x2d\x9d\x3a\xe8\x0e\x63\x4c\xda\xe8\xaf\xfe\xf7\xe3\xf6\xc3\x4d\xd0\x39\x42\xb9\x96\x02\x9d\x8a\x14\xcf\xd6\xe2\xfc\x47\xa1\x2e\xd5\x33\xb2\x8d\x9a\xd0\xae\x38\xf3\x82\x09\x9d\xcf\xa5\x78\xb7\xa4\x91\x91\xb0\xde\x4c\x56\x62\x63\x52\x5a\xdb\x2a\x46\x00\xfb\xca\x5b\x5f\x34\x5a\x21\xed\x1d\x1c\x64\xf1\xb8\xc3\x34\x85\x06\xfe\xac\x75\xf7\xc1\x7b\x95\x3e\x6f\xcc\x6b\x6d\x3c\x45\x55\x25\xca\xa7\xad\x45\xec\xd2\xcd\xea\xd2\x5e\xcd\x2c\xe4\x37\x7d\xd4\x78\xb9\x2a\xcb\xdc\x37\xfc\x40\xc3\x09\xcb\x57\x98\x25\x9c\x9a\xdf\xf0\xf9\x92\x8b\x66\xce\xd7\xd6\x6b\x69\x2f\x8a\x31\x1b\x5b\x7c\xad\xe1\x24\xb7\x81\xe6\x03\xbe\xb6\xd2\xb8\xe1\x72\xca\x2c\x8b\x31\xb5\x88\x19\x1f\x5b\x3d\x65\x4c\xe5\xf8\xe4\xf2\x96\x7b\x19\x6b\x50\xe6\xb8\xb4\xf9\x61\xc6\x94\x3a\x38\x74\x32\x2d\x63\x4c\xe1\xe9\xc4\x51\xa6\x9d\x18\x53\x68\x3f\x26\xb7\xa9\x15\x63\xf2\xf5\x46\xef\x33\x8e\x62\xac\xfe\xd7\x11\x17\x9b\x28\x31\x26\x7b\xf8\x37\xff\x85\xf1\xfd\xe1\x81\x1c\x9d\x33\x3f\x37\xd5\xa4\x73\xe8\x22\xe1\x94\xe4\xf6\xd4\xe6\x74\xba\x7c\xcd\xd2\x8a\x3e\x71\x3e\x8d\xf3\x2f\x49\xe3\xba\xd0\x29\xea\xb1\x27\x5d\x17\x4b\x6c\x44\xef\xee\x74\xde\x1f\xb2\xb2\xa7\x5b\x1d\x06\x04\x7c\xb6\xfd\xac\x5d\x2a\xa5\xbf\xa1\xaa\xe7\x42\x0b\x29\x05\x19\x8f\x57\xdd\xe7\xf6\x7a\xa2\xd6\x60\xb9\x5e\xb7\x82\x71\x56\x9a\xf3\x16\x3e\xeb\x5a\x3c\xbf\x75\x23\x7b\x97\xce\x36\x2f\xd6\x59\x35\xbe\x34\xeb\x6a\x97\x94\x90\xe3\xba\xcb\xa6\xf5\xef\xa2\x75\x6c\x93\x9e\xfb\xe4\x64\xeb\x51\x99\x86\x7a\x85\x8e\xcb\xad\x5b\xdc\x57\xd7\x9b\xeb\xd0\xcc\x7a\xe9\xdb\x87\x3a\xc7\x26\x38\x58\x77\x65\xac\xd1\xf7\xd1\x05\x9d\x0c\x18\x6b\xa8\x65\xef\xd4\xfe\x23\x63\xea\x47\x86\x8d\x6b\x37\x93\x31\xd5\x4a\x91\xf3\x18\x3c\xb4\xcd\x15\xc6\x94\x17\x0d\xb4\x6d\x7d\x80\x31\xa5\x3b\x03\xfa\x98\x07\x30\xa6\xe8\xd7\xcf\xdc\x2c\x92\x31\x85\x53\x3f\xdf\x03\x9c\x03\xf9\xa0\xa7\x44\xf6\xf9\x6c\x1d\xaa\x63\x3c\x70\x68\x46\xe7\xd8\x77\x66\x73\x7f\xaf\xe8\x73\x15\xdd\xb4\xc5\x3d\xa8\x3e\x73\xaa\xb8\x2f\x9d\x8e\x1d\xf6\x1a\x44\xa7\x27\xfb\x57\xd8\x71\xdd\xef\xeb\xc3\xa9\xca\xb0\x29\xcb\x9e\xee\xc7\xae\x89\x1b\x75\x5a\x25\x16\x58\x1e\x69\xff\xa1\xe9\xe3\xfa\xf3\xe7\xfb\x0f\x8f\xea\x62\xaa\xe2\x39\x7d\xc5\xd0\x61\xc3\xe4\x1b\x39\x3b\xbc\xb2\x6b\x3c\xe3\xb8\xce\x9b\xb1\xf7\x06\x6f\x5f\x6d\xad\x1f\x67\xbf\x7a\x50\x50\xe0\x68\xc3\x77\x43\xed\x06\x8e\x8e\x7e\xd4\xa4\xcd\x60\x9d\x01\xeb\x52\x63\x9b\xe4\x0c\x38\x38\x40\xe9\xf6\xed\x26\xb3\xfa\x1f\x1f\xd0\xf0\x45\xa1\xe1\xfe\x7e\x0f\xfa\x57\x31\xa6\x37\xa0\xcf\xed\x3e\x33\x19\x6b\x3c\xdf\xd6\xb6\xd7\x56\xc6\xb4\xfc\x7b\x9c\xec\xd1\x8c\x31\xcd\x0e\x5d\x1f\x77\xad\x62\x4c\xed\x7d\xd7\xe4\xae\xca\x8c\xa9\xad\xb3\x99\x68\xdd\x9f\x31\x95\x03\x5d\x06\x74\x7e\xcc\x98\x4a\xcb\x4e\x8f\x3a\x66\x33\xd6\x60\x2b\x63\x52\x74\x7a\xf3\x81\x29\x93\x3f\x65\x1c\x03\xc2\xfd\x24\x4b\xca\x84\x37\x5e\x58\xd3\xed\xb8\x8b\x95\xbd\xc8\xaf\xb3\xfa\x9c\x0b\x38\x11\xc7\xb9\x88\xc3\x63\x46\x53\x9f\xe7\x70\xc5\xb1\x74\x4e\xbf\xd3\x71\x22\xd5\x69\x36\x05\x39\x52\x7f\x77\x0f\xaf\xc9\x34\x7f\x16\xc6\x4d\x7b\x2f\x6d\x02\xcc\x19\x3a\xdd\x54\xaf\x61\x3d\x1f\xc7\xc0\xa9\x4a\x6d\x07\x28\x0d\x19\xd5\xd3\xe9\x69\xff\xd7\x9a\xe3\x87\xcc\x76\x9c\xe4\x98\xa4\x9d\xd3\xaf\xd0\x61\xc1\xd2\x05\x3a\x89\xb6\xba\x93\xae\x6e\x59\xa6\x5b\xd2\x7d\xe8\xc4\x92\x83\xa5\x7a\x23\x6d\x86\x4d\x9c\x93\xac\xaa\x67\x6a\xbd\x63\xc2\x91\x1b\x9b\x75\xdd\x3b\xaf\x9c\x90\x53\xd6\xbd\xf1\xb3\xce\x4b\x27\x6c\x61\xac\x91\x55\xa7\x46\xa3\x4b\x18\xd3\x2c\x69\x7f\xc3\xbe\x31\x63\xea\xe3\xda\x3f\x1f\x3a\x8c\x31\xb5\x35\x6d\x0f\x0e\x9e\xc4\x98\x8a\x5b\x5b\x9f\x01\x6f\x18\x53\x2e\x6a\xab\xd0\xef\x3e\x63\xca\x2d\xdb\xdc\xef\xfd\x91\x31\xa5\xb7\x96\xad\x7b\x3d\x65\x4c\xf1\xc4\xc7\x1c\x4d\xaa\x63\x3d\x1f\x6f\xca\xfd\x4f\xee\x48\x19\x31\xd7\x85\x73\x30\x99\x56\x9c\x73\x4a\x3e\x3a\x82\xaa\xaa\x09\x5b\xc7\x11\x1f\x78\x28\x60\x12\xd5\x2d\xf6\xdd\xe4\x3a\x21\x3b\x03\xb8\x6e\xc2\xe6\x29\xbc\x7f\x8c\xe7\x68\xce\x49\xb8\x65\xcd\xa7\x4c\x3b\x2d\xc8\x8d\x4e\xd9\x26\xcc\x58\xdc\x49\xe3\x38\x30\x4c\xca\x4d\xba\x65\xb1\x5c\x40\x9f\x7a\x0b\x3a\xf4\xf4\x53\x1d\xd0\x6d\x82\xeb\xae\xf1\x5a\xea\xd7\x3b\x3d\x75\x55\x58\xb8\x52\xb3\x65\xbb\x4d\xf3\x97\xf9\x79\x34\xd4\xb1\x7c\x30\xef\x58\x78\xbb\x86\xad\x2d\x3a\xce\x53\x4e\x3c\xa1\x59\x61\x36\xc1\x25\x2d\x7b\xaa\xa6\x71\xab\x35\x2e\x5d\x9e\x3c\x50\xbf\xd6\x6a\xb9\x4b\x5f\xc6\x54\x07\xb4\xec\x37\x4b\x9e\x31\x65\xaf\x16\xad\xa6\xf8\x33\xa6\xf4\xb0\xf9\x01\x87\xbb\x8c\x29\xbe\x6f\x3e\x7b\x7c\x2e\x63\x8a\xd6\xcd\x4d\xc6\x5e\x67\x4c\xe1\x92\xe9\xd5\x51\x73\x19\x93\xdf\xd0\xcc\x64\xc4\x2d\xc6\xe4\xa7\x35\xbb\x35\xac\x1e\x63\xf2\xd3\x45\xfe\xeb\xc1\x4a\x1b\x07\x9e\xf7\xfb\x11\xef\x70\xd9\x65\x38\x9d\x02\x9f\xdd\x34\x9e\xb8\x80\xe3\xe6\x8e\x74\x2f\xef\xd0\xd6\xe9\x14\x87\x7d\xd1\xb3\xc9\xef\x9d\xd6\xf3\x74\xe8\xf9\xc7\xf3\xbe\x39\xde\xc5\x8b\xe8\xb4\x70\x49\xf1\x32\xca\xaf\xb3\x34\x56\xd2\xb9\xef\xd8\x5d\x1e\x74\xcf\x6d\xc0\x22\xef\x53\xf5\xed\x80\x1e\x75\xbd\xb5\x8c\xa2\xa5\xbd\xdb\x3b\x79\x1e\xb4\x36\x51\x34\x6d\xed\xeb\xe9\x3f\x72\x98\xd2\xaa\x96\x5b\x3c\xad\x5d\xe6\x37\x68\x6b\x7a\xca\xe3\x96\x4f\x8b\x06\x41\xc6\x29\x1e\xdd\xf6\x5c\x68\xb0\xc8\x68\x96\xfb\xbd\x13\xbe\x4a\x37\x0d\xe5\xdd\x7b\x5d\xdb\xad\x24\x67\xa0\xb3\x3a\xb1\xc4\x4d\x21\x44\xff\xd5\xea\x93\x3f\x3e\xc8\x79\x1b\x68\x2e\x95\x63\xac\xfe\x0b\xfd\x46\x0b\xbc\x18\x93\x8d\xd6\xf5\x73\x09\x62\x4c\x46\x45\x4f\x6f\xd6\x70\xc6\x64\x2c\xf4\x62\x67\xa8\x30\x26\xb3\x58\xf7\xc6\x54\x67\xc6\xa4\x43\x75\x73\x1d\xfb\x31\x26\x3d\x4a\x77\xcc\xc4\x2a\xc6\xea\xdd\x12\xf5\x8f\x6e\xbc\xe5\xcf\xfd\x52\xc4\x28\xaa\x5f\xa5\x6e\x11\xf4\x7f\xd6\x4f\xa7\x53\xf5\x23\x0d\x9c\xc9\xaf\xf0\x2b\x0b\x48\x3d\x3c\x78\x20\xb9\x8d\x2d\x36\x9c\x0b\x59\x7b\x6f\x15\xcd\x93\x65\xa7\xe9\xb8\x1a\xce\xf1\xfc\x16\xae\x63\x0f\xae\x23\x60\x57\xec\x47\xa7\xa8\x9d\xfb\x6e\xa5\x71\x61\x19\xb6\xed\x9c\xb6\x02\x60\x6a\xb6\xd5\xd9\xaa\xa5\x4c\x82\xe1\x8f\xad\x1b\xed\x4c\x64\x3e\xea\xf5\xdb\x6a\x3f\xcb\x47\x26\xa9\xb1\xf7\xd6\x3e\xde\xa6\xd2\xa7\x1b\x7d\xdf\x6a\x18\xb2\xaf\xee\xed\xc6\xf2\x5b\xcf\x24\x78\x02\x8d\x34\xb7\xec\xbd\x62\x0f\x68\x7e\xde\x7c\xea\xd1\x3d\x40\x63\xf1\xa6\xf7\x5f\x43\x00\x55\x03\x1f\x5a\x4f\x29\xf9\x7a\x1e\x93\x58\x05\xed\x95\x09\x12\x2b\x3f\x70\xe9\x02\x89\xad\x7f\x74\x11\xf5\x12\x94\xbf\x32\x9f\xee\xf3\xd6\x0f\x71\x6e\x4d\xd6\x6b\x16\xe9\x05\xdc\x12\x6e\x53\x8b\xfd\xbf\x52\xee\x4f\xa6\xaa\xc9\x71\x36\x9b\x4e\x8f\x0f\xad\xe7\x5c\x40\xf8\xf8\xc5\xb4\x4e\x08\xd1\x5e\x41\x5c\x83\xbf\x3e\xd7\x4b\x58\x6f\xe8\x4d\xe7\xf1\xab\xf5\xb9\xbf\xae\x93\x7d\x29\x9e\xd3\xd3\xb7\x50\x75\x6a\x8c\x06\xbf\xad\xdf\x57\x65\x3b\x55\x27\x5a\x7f\xda\x45\xfa\xef\xba\xf7\x42\x1f\x28\x2c\x01\x1a\x59\xee\x59\xd6\x52\x0e\x50\xb7\xd8\x33\xa9\xef\x1e\x40\x39\x68\xcf\xa8\xc9\x85\x80\xe2\x96\x3d\xd2\x2b\xdf\x00\x72\xd2\xa1\x4f\x83\xc2\x01\x99\xb8\x50\xa9\xc3\xaf\x80\x7a\x83\x76\xdb\xa6\x87\x00\x52\x33\x42\x0c\xef\xfb\x4b\x1e\xc8\x2e\x9f\x77\x74\xcf\x3b\x48\xa8\x5b\x6d\x16\xea\x7a\xeb\x85\x8e\xea\x6b\xb8\xce\x7f\x3b\x8f\x61\xfc\xe3\x55\xc2\x7d\xff\x65\x42\xdd\xcf\x8d\xea\x17\x97\xbb\x8e\xa7\x7c\x9e\xe6\x35\xbd\x37\xcf\x7f\x2e\xf4\x7c\x63\x9b\x2e\xa1\xf9\xb1\xdf\x92\xf7\x85\x0a\x19\xc4\x9f\xb3\xff\xb9\x35\xb4\xa2\xf4\x2d\xe4\xfe\x7a\x62\x13\xef\x03\x63\xb7\x95\xaa\x91\xb3\x73\x02\x68\x85\x39\x49\x7f\x3b\xe5\x8d\xa1\xaf\x77\x77\x93\xd8\xae\xf3\xf7\x52\xbd\xa3\xd9\xdc\x03\xf4\xfb\x15\x11\x4d\xe3\xab\x9e\x74\x8c\xba\x2e\xbd\x99\x62\x5c\xac\xa9\xd2\x17\x5d\x31\x8e\xde\xbc\xd1\x89\x8b\xa8\x92\x1c\xdd\x6a\x2b\xd5\xb1\xa2\x9e\x45\x11\xc1\x1b\x39\x29\x8d\x22\x1b\x31\x2f\x9f\xfe\xf2\xc1\x4d\xaf\xa9\xb2\xb6\x4f\xa8\x53\xed\x12\xea\x14\x81\xc2\x7d\xff\x9a\xba\x1f\xc0\xfa\xbd\x35\xe2\x03\x0f\x1a\x27\x69\xaf\x66\x50\x3e\x4f\x3a\xc4\xfb\x23\xc5\xb6\x5c\x41\xb7\x49\x23\xce\xba\x53\x1f\x93\x50\xd7\xb5\x44\x59\x6c\x37\xf3\xa5\xe7\xeb\xb7\x7e\x53\x3c\xcf\x03\xfe\xf4\x9e\x5c\xaa\x11\x44\x79\x75\x7e\x53\xde\x47\x64\xda\x88\x50\x9a\x1f\x63\xac\xc3\x88\x2f\x1e\x30\x9c\xf7\x53\xe9\x50\x18\x4d\xeb\x30\x23\x8b\xa3\x54\xf7\x90\x31\x8d\xa7\xee\x0d\x40\xc2\x87\xc6\x54\xc7\x49\xd8\xd3\x99\x46\x64\x42\x9f\xd1\x5c\x91\x69\xd8\x02\xf2\x37\xfe\xce\x46\xba\x71\x1e\xbf\xe2\x00\xd5\x39\xe2\x2e\x25\x53\x05\x3e\xb6\x98\xf7\x03\x89\x2d\xe6\x15\x93\x23\x42\xdf\x87\x83\xc2\xbd\xff\x30\x41\x49\x7e\x97\xd0\x51\x7f\xc7\x06\x6e\xfd\xdd\x85\xf8\x08\xf5\x6e\x3f\x29\x89\x4d\x2c\x59\x48\xb7\x64\x8f\x8d\x5e\x4d\xcf\x37\xd2\x9b\x57\x97\xf7\xc2\x97\xe6\xc5\xf6\xa2\x4d\xb4\x8e\xda\x62\xe9\x4f\xff\xca\x75\x6a\x02\x07\xa4\x11\x42\x75\x9f\x85\x9e\x9c\x7b\x9a\xad\xcf\xf5\x61\x1c\x3c\x0f\x52\x15\x76\xd8\x2d\x5e\x2f\xef\xb9\xe0\x08\xd5\xf7\x5a\xbf\xe2\xb7\x6e\x1b\x17\x9e\xa4\x81\x55\x67\xf6\x19\x61\x67\x92\xa2\xa1\x3d\x84\x5b\xae\x83\x71\xa6\xd2\x9e\x2a\x3f\x67\xbe\x71\x85\xaa\xe4\xc4\xf5\x54\xa7\x4a\xde\x1b\x46\xa4\xea\x99\xed\x89\xe4\xff\xe9\x0b\xd9\xa4\x93\x72\xba\xf4\x39\xbd\xea\x13\x33\x79\xdd\x3f\x4e\xe0\x1e\x62\x96\x08\x71\x11\x9e\xbf\x38\x5e\x42\x05\x0e\x62\x97\xbc\x30\x6e\xa8\xce\x23\xea\x20\x45\xbb\xac\xa7\xe7\x1c\x66\xb7\x89\xd6\xc3\xc1\xb6\x9c\x7f\xda\xe6\xb2\x83\xf8\x17\x9f\xa7\xbb\xac\x79\x1e\xe0\x1c\xd0\x52\x81\x0b\x71\x89\x8d\x20\xce\x65\x8a\x57\x34\x3d\xd5\x31\x01\x47\x69\xfc\x0f\xb2\x8c\xa3\x3c\xd0\x55\xff\x04\x7d\x5f\x4b\x8f\x24\x9a\x7f\x9a\x09\x67\x43\xb9\xff\xe9\x4d\xb8\xcd\x9c\xd2\x90\x32\x6a\xc6\x69\xae\x83\x91\xb1\x61\x28\x75\x24\xc9\x54\x9d\x43\x23\x34\x43\x99\x67\xdc\x8c\xe9\xbb\x69\x25\x9b\x51\x3f\x81\xbe\x9e\x5e\x72\x85\xf3\x31\xfd\x4b\x88\x30\xb9\xd0\xf0\x0b\xe7\x1c\x84\xfe\x1e\x62\xdf\x17\x91\x8b\x39\x2c\xf4\x3f\xa9\xcd\xc5\xf0\x71\x73\xe8\x99\x2f\xd5\x5f\xc3\xe5\xb6\x50\xbe\x0b\x1e\xc1\xf9\xbe\x00\xc3\x60\x5a\x47\x6d\x3c\xb5\x87\x28\x94\x35\x01\xbc\x8a\xb6\xbc\x94\xf7\xc5\x5a\x30\xee\x10\xd5\xaf\x67\xbd\x8b\xa5\xf9\xe1\x30\x24\x8e\xe2\x31\x72\xf4\x49\x7a\x1f\xf4\x7d\x98\x44\x55\xfb\xce\xb2\x67\x69\x7d\x6a\xea\x7e\x8e\x74\x40\xd4\xd7\x5c\x14\xf4\x2f\xae\x09\x7d\x40\xb2\x26\x6b\xd2\x4f\x5e\x2f\xb7\xa2\x99\x74\x3d\x61\x08\x11\x99\x59\xd3\x67\x90\xbf\x59\xf9\x3c\x33\x65\x6d\xdb\x49\x33\x2c\x2b\xf1\xd8\x4c\xb2\xad\xf9\x6f\xba\x6e\xf5\x90\xf3\x1f\xe1\x1f\xe9\x6c\x24\x53\xc8\x0f\xa9\x42\x1e\x3c\xdd\x9b\x5b\x91\x17\x12\xc7\xcb\x61\x21\x4e\x9c\x8b\x39\x38\x90\x8f\xf7\xdd\x91\x9c\x2e\x08\x14\xb8\xaf\x4d\xf5\xc3\x9e\xd3\x3c\x28\xe5\x54\x92\xc8\x01\x2d\x9e\x72\x94\xf2\x9c\xb3\x4d\xdc\x1d\x1a\x07\xc5\x9c\xca\x18\x1f\x70\xfa\x22\xcd\x07\xf5\x14\x8a\x43\xaf\xbc\xf3\x54\xa5\x6e\xff\x28\x93\xfe\xb5\x4d\xd3\xb9\x4e\x8a\xf2\xda\x2c\x03\xee\xff\x4d\x61\x27\x73\x67\x9b\x46\x73\xb2\x1b\x5a\x53\x27\xbe\x3b\x6a\x03\x69\xa5\x91\x67\x39\x95\x73\x2f\x96\x2b\xe9\x6c\x23\xbf\x5e\x10\x91\xff\x79\xb1\xbc\xee\x9f\x17\xcb\x09\xab\xdb\x71\xf9\x44\x2a\xdc\x8a\xe2\x0a\x0b\x39\x82\x0e\xcc\x65\x61\xfc\xa7\x0b\x3c\x4c\x9a\xa0\x30\x70\xc6\x9c\xdb\x53\x42\xbe\xe0\x5c\x4c\xd8\xba\x5d\x94\x7d\x76\x14\x73\x0e\x68\x5b\xf7\x08\xa2\x6c\x36\x0c\xe3\xf3\xbb\x9a\x03\x3a\x9a\x40\xb4\x9e\xab\x0b\xd7\xcb\x98\xad\x9f\x4c\x59\xde\x09\x29\x59\x7c\x3e\x9c\xa3\x3a\xf8\xa0\xaa\x74\x7a\xce\xdd\x95\x2e\x11\x0f\x60\x59\x75\xfd\xa8\xc4\x36\xd9\xc6\xeb\xe5\x0d\x0c\xef\x34\xe5\xfe\xdf\x13\xe6\x47\xe1\x12\x15\x8a\x54\xe1\x2a\x73\xca\xb0\x45\x1a\xfd\x69\xfc\x17\xf5\xe3\x05\xf1\xa2\xe8\xa5\x94\x17\x0b\x9f\xf9\xf3\x1d\x9f\x57\x14\x71\x0f\x45\x76\xa9\x14\xd1\x22\x9d\x3b\x34\xa3\x0b\xb5\x5e\x52\x5e\xb9\x27\x70\x41\x37\x85\xf7\xc3\xf5\xf2\x5a\x71\x11\x38\x3a\x91\xa3\x4a\xd1\xa3\xf3\x9c\xd7\x9c\xeb\xf4\x2f\x8d\xa6\x75\x93\xdf\xa2\xd8\x36\xa8\xc9\x01\xd1\xd7\x17\xc5\x9f\xa6\xec\xe4\xd2\x3a\x95\xb2\xda\x34\x95\xf3\x94\xf7\x27\xa4\x70\x1e\xc6\x3e\x85\xeb\x66\xf4\x77\xb9\x4a\x79\xd7\x26\x2e\x9b\xfc\x6c\x6d\x7b\x8b\x7e\x8f\xe1\xda\xbb\xf4\xbe\x90\xff\x7c\xff\x15\xf7\xff\x31\x17\xb4\xc4\x53\x9b\x06\x44\x5e\x3c\xbf\xde\x82\x96\xf6\x65\x27\x7a\xd3\xfb\xb3\xcc\x6c\x12\xbd\x89\xcb\x6e\x2d\xa6\x0c\x55\xb6\x79\x13\x91\x25\x65\x32\x07\x49\x3f\xa7\xcc\xf8\x0c\xc5\xa5\xec\xe4\x4d\x7e\x33\x44\xbd\x9c\x08\x85\x27\x73\x7e\x10\x99\xf4\x50\xd0\x53\xca\x13\xf2\xc3\x4d\xe1\xfd\x90\xd5\xb6\x66\x5c\x32\x88\x13\x0a\x1a\x76\x98\x7e\xfb\x66\xd7\x63\xf4\x1c\x7f\x72\x40\xbc\x5f\xd2\x32\x45\xae\x83\xe4\x9a\x79\x9e\xe2\x33\xc7\x93\xd3\x8b\x53\x2c\x2f\xd3\x7a\x7a\xc2\xdb\x2c\x8a\x8f\xa8\x8b\xd3\xf7\x04\xd7\x8f\xe8\x34\x99\x9f\x4c\xb5\xfa\x76\x8f\x66\xbd\xde\xe3\x42\xea\x17\x23\x57\x59\xa2\xce\xfd\x2f\xdf\xc1\x6d\x55\x96\x1c\x6d\xdd\xaa\xdc\x4d\x69\x5e\xbc\x7d\xd5\x93\x46\xe4\x5b\xc6\x57\x76\xef\xe4\x39\xb9\xfe\x2e\x6e\x03\x7d\xfd\xfd\x2c\xfe\x66\x7a\xd7\x3a\x91\x48\xc7\x77\x6b\xb3\x3f\xf3\xaf\x3f\xa5\x37\xd2\x1b\xef\x1f\xf4\x1e\x79\x76\x82\xfb\x59\x2c\x3c\xff\x07\x15\x7f\x8e\x0b\xef\x13\x24\xea\x21\xf9\xe6\x24\x65\xd0\x38\xb0\x3e\x4b\xb4\xd1\xca\xa3\xe7\x05\x7d\xac\x4c\xfa\x57\xcd\x2b\xbe\x4c\xe3\x7e\xd6\xa2\xeb\x94\x17\x1c\x87\xe6\xf2\x75\xc2\x91\xdb\x34\x5f\xec\xb2\xb8\x5e\x8a\x6d\xc9\x7d\xca\xbb\x1d\x03\x1e\x52\x3f\x36\xb3\x31\xa5\xb4\x0e\xd5\xd3\x7f\x42\xfa\x22\xf2\x1f\x2b\xde\x8a\xfe\x73\xfb\xed\x94\x34\x65\x9c\xef\xcd\x0d\x69\x7c\xff\xd8\x22\xf4\xc7\xb1\xb5\x17\xf4\x51\x9c\x89\xe8\x63\x5e\x6b\x55\xf9\xc7\xbc\xb3\x21\x1b\x98\x20\xe8\x5e\x70\xee\xe1\xc7\x77\x41\xf7\xc2\x8b\xd1\x5f\x7c\x97\xc8\xcf\x52\x44\x4e\xa8\x5a\x27\x46\x8c\x8b\xdc\xaf\x71\x11\xf5\x90\xd6\x1b\xa6\x09\xfc\x07\xd7\x43\x5a\xa6\x73\x99\xc6\xc3\xc2\x88\x2c\xf2\x73\xee\xf2\x5c\xfa\x3e\x51\x17\xc8\xc1\xf8\x2e\xad\x13\x47\xce\x2f\x20\xfe\x6f\xf0\x68\xde\x4f\xa6\x67\xd3\x62\x03\x1e\x87\x67\xe4\xaf\xa8\x8f\xa3\x77\xad\xea\xaa\xc4\x2a\x84\xbf\xd9\xc2\xfd\xff\x2a\xf0\x62\x7f\xe0\x40\x04\x5d\x93\x21\x82\xfe\xc9\xd4\x13\xdc\xae\x10\xbe\x6f\x9b\x0b\xb7\x91\x77\xb8\x3d\xc3\x75\x74\x22\x73\x05\x3e\xe6\xb9\x60\xbf\xd1\x7a\xb3\xa6\xee\xc7\xcf\xb8\x54\xeb\xc4\x18\xb0\xbf\xf0\x0f\xb5\x39\x80\xda\x3a\x18\x62\x7d\xbb\x86\x1e\x88\x50\xe7\xfe\x5e\x0a\xd8\x95\x01\x9f\xc3\x01\xc9\xb8\x16\xef\x75\x57\xc6\x03\x2e\x1e\x40\x59\x3c\xb0\x6c\x12\xaf\xf3\xac\x73\x06\x8a\xaf\x03\x5b\x46\x03\x8f\xbe\x49\xde\x59\xc0\xc3\x02\x20\x32\x53\x92\xfd\x00\x49\x66\x12\xef\x79\x17\x39\x02\x79\x69\x5c\xf7\xfd\x85\x15\xf0\x28\x8e\x9f\x1d\x57\xdf\xfb\x17\xf9\x07\x41\x07\x5f\xe4\x1f\xc4\x7b\xdf\xa7\x84\x1a\x55\xc2\xa8\x5a\xf5\x3f\xf3\x9f\xe7\xd5\x7f\xd5\xbf\x70\xab\x69\xff\x35\x07\xe2\x01\x7c\x08\xe5\xfc\xc3\x9b\xee\xc0\x64\x35\xe0\x45\x05\x30\x37\x15\x78\x12\x0a\x2c\x2a\x01\x4a\x1c\x00\xaf\xae\x40\xa1\x19\xb0\x69\x3a\xf0\x50\x4a\xb2\x33\xe0\x1a\x07\x11\x1b\x81\x7b\xf5\x78\xcd\xfa\xfe\x59\x5e\xc3\x92\xcc\x32\x89\xcf\x85\x1b\x81\x8a\x77\x40\xa1\xa0\xc5\x5f\x5d\xf7\x16\x7a\x0b\x88\xf7\xde\x6b\xf3\x0f\x7f\xf3\x3f\xe2\x97\x3a\xce\x7f\xe5\x1f\x9a\x19\xd5\x8a\xc7\x2f\x7c\xd0\x97\x6f\xc0\xc0\xad\xc0\x3b\x75\x60\xc4\x0e\xe0\x65\x8e\x64\xcf\xc5\xcf\xf7\x67\xd8\x00\x25\xaa\x80\x5b\x0c\xd7\xb3\x77\xaf\x04\x1e\x8c\x00\x36\x7a\x03\xf7\x1c\x80\xe0\x39\x40\xfe\x32\x1e\x87\xfc\x9d\xc0\x71\x1f\xa0\xc0\x10\xc8\xbc\x01\xe4\x35\x07\x6e\x0d\x04\x0a\x2a\x80\xb2\x28\x20\x6f\x03\xf0\x79\xce\x4f\xdd\xff\xcc\x27\xbc\xc6\x24\x72\x40\xa7\x6d\xfe\xd9\xff\xda\xf5\xff\x3f\xf9\x5f\xad\x7f\x31\xa1\xa6\xfd\x1b\xf7\x60\xd5\x14\xf8\xc6\x00\x6b\x2b\xe0\xc3\x06\x41\xd7\xdf\x96\xd7\xf1\xca\x96\x02\xe3\xd4\x80\x92\x35\x9c\x0f\x2a\x1a\x2f\x59\x83\x00\x0f\x2f\x01\xee\xda\x40\x5e\x2e\xb0\xa1\x02\xc8\x5b\x27\x59\xc3\x00\xb7\xf5\x81\x03\x25\xc0\x6d\x69\xe0\x78\x0c\x70\xcb\x0e\xb8\xb0\x0d\xb8\x59\x09\xdc\x1e\x0d\xdc\xec\x04\x94\x66\xf3\x3a\xa9\x24\x0f\x5e\x71\xac\x39\x0e\xc4\x79\x20\xd6\xfd\x44\xff\xc5\xfa\xdf\x6f\xfa\x07\x7f\xe0\x1f\x1a\x0b\xf5\x2c\x2d\xa1\xc6\xf3\x37\xee\x41\xd4\x07\xa1\x9f\x8b\x02\xcc\xc0\xfb\xda\x58\xed\x00\xaa\x6c\x80\xae\x2f\x80\x4a\x47\x60\xa0\x21\xf0\xb4\x04\x18\xfd\x10\x28\xde\x07\x38\xdd\x04\x0a\xdd\xb8\x3e\x4a\x7e\x01\xb0\xc2\x06\xb8\x59\x05\xf8\x48\xac\x81\xe4\x1d\x0e\xe4\x1c\x03\xc2\x3d\x80\x1c\x67\x20\x5e\x1f\xc8\x0d\x02\x32\x82\x80\xdc\x79\xc0\x9d\x3a\x40\xf6\x39\xe0\xe9\x10\x20\xa7\x10\xf8\xfe\xe2\x97\x71\x20\xd4\x79\x4f\xf6\xfb\xb3\xff\xff\x86\x7f\x10\x39\x97\xbf\xf5\x01\xa9\xdd\xf7\xa3\x3a\x1e\x63\xb8\xee\x8d\x24\x1e\x62\xbd\xbf\xf2\x01\xd0\x69\x34\x50\x36\x1f\xe8\x3d\xf9\xe7\x3d\xff\xc2\x5c\xc9\x3b\x06\xc8\x67\xbc\xee\x7f\x73\x2e\xe7\x83\x6e\xcc\xe4\x77\xce\xb3\xac\x81\x80\xc1\xc0\xb5\xb3\x40\xb8\x01\x70\x3d\x1f\x48\xd0\x05\x24\xab\xb2\xf3\x45\xc0\xd5\x21\xc0\xad\x14\x40\xf2\x8e\x7c\x5e\xc1\xeb\xff\x12\xff\xcf\xf5\xa9\x39\x0f\x44\xfd\x9f\xea\xe7\x5f\x8b\x7f\x08\x15\xea\xe3\x22\x07\xf0\x4f\xfc\x43\x6d\x0e\xa2\xda\x2a\xd4\xfc\xba\xe4\xe7\xbe\x46\x48\xd6\x06\xc0\xeb\x33\x40\xb3\x24\xce\x3d\x58\x16\x01\xa5\x91\x40\xb7\x5e\x40\x91\x2d\x20\x59\x26\xdd\x73\xe3\xef\x8f\x5b\x7b\x79\x9e\xc8\xae\x04\xdc\xec\x38\xfb\xe4\x6d\x09\x5c\x2d\xe5\xb5\x69\xc9\xea\x6c\x9f\x23\xaf\xf3\xc7\x16\x03\x97\x94\x79\x1f\xa9\x4b\xc3\x80\x3b\xf7\x79\xae\x28\x9b\x06\x64\x2e\x06\xd8\xee\x9f\xf9\x50\xac\xff\xd7\xf6\x3f\x4c\xa6\xe6\x73\x0f\x56\xe5\x76\x7b\x67\x6e\xff\xc8\x3f\x08\xfe\xfe\x2f\x0e\xa0\x4e\x4f\x3e\x0e\x14\xdc\x81\x0f\xed\x00\x75\x73\xe0\x55\x00\x60\x30\x42\xf2\x56\x06\x5a\xe8\x03\x45\x51\x40\xa7\xd3\x40\xc1\x05\xa0\x4f\x3a\x9f\xcf\x23\x89\x6a\x06\xa6\xf8\x02\xd7\xe2\x39\x4f\x29\x59\x8d\x7b\x82\xbf\x13\xb6\x3c\xe4\xda\x17\x92\xf5\x62\x7a\x07\xe0\xd8\x67\xe0\xc2\x29\x20\xdd\x02\x48\xa3\x33\x44\x6e\xcb\x72\x7e\xbe\x17\x4f\x0a\x3a\x10\x62\xfd\x5b\xf4\xff\x37\xee\x45\xe4\x00\x84\x3e\x5a\x9b\x9b\x71\xfb\x2b\xff\xf0\x5f\xf9\x8f\x5f\xb9\x87\x77\xee\x80\x6c\x0a\x50\xa1\x01\x68\x80\xcf\x83\x26\xe6\xbc\xee\x6f\xe9\x02\xe4\xe5\x71\x9e\x30\xd7\x96\xf3\xa5\x57\x3d\xb9\x3e\xca\xc5\x9e\x80\x73\x3c\x70\x3e\x0a\x58\x69\x04\x9c\x73\xe7\x7d\xa4\x52\x2d\x80\x3d\xcb\x81\x94\x4c\x20\xb6\x12\x48\x91\x03\x2e\xac\x06\x92\xf7\x03\x77\xfc\x81\x33\x3d\x80\xb2\xfb\x40\xa2\x3a\xc0\xae\xff\xd4\x81\x39\x78\xa5\xe6\xb8\x0f\x1e\xc1\x6d\xc0\x72\x6e\xb7\x48\xd5\xf4\x7b\xfd\x59\x6e\x45\x1d\x88\x7f\xed\xff\x75\xee\xf7\xf7\xae\x82\xff\x02\xf7\xf0\xaa\x27\xb7\x4f\xbf\x01\xf2\x5b\xb9\xff\x5a\x71\x40\xbe\x3a\x1f\x17\x92\xd5\x77\x87\x42\xe0\xda\x21\xa0\xbf\x2a\x20\xd9\x85\x8f\xb5\x05\xce\xc7\xf3\x3c\x91\xb2\x16\x58\x6e\x02\x9c\x2e\x05\xfc\xf6\x00\x49\x2d\x38\x37\x77\xd2\x19\x38\x6a\xcd\xdf\x19\x92\x31\x20\xb1\x77\x66\xf3\x35\x45\x45\xf9\xcf\x3c\x20\xe6\x3f\xd1\x7f\x71\xbe\x8b\xba\x1f\xa2\xdf\xb5\xb9\x0f\x91\x7f\x58\x95\xf5\x2f\xe2\xf0\x0b\xf7\xc1\x9e\x71\xfb\xd9\x54\xd8\x1d\x08\x1c\x00\xa7\xc9\x81\x42\xe1\x54\xa5\xc0\x1e\x50\x3a\xcf\xf9\x4e\x49\xde\xb8\x3e\x16\x68\x6d\xcd\xc7\x7d\x8f\x78\x20\xf5\x19\x30\x2c\x19\x38\x7d\x15\x98\xea\x07\x9c\x2a\x07\x16\xfb\x02\xc7\x5f\x82\x6e\xba\xc6\xab\x03\xbb\x1e\x01\xb1\xc7\xf9\xb3\x3e\xcc\x80\xd4\x4a\xe0\xb0\x17\x70\xbb\x02\x88\x19\xc9\xf3\x64\xb4\x7d\x4d\xff\xc5\x7e\x3f\x22\xff\xb1\xa1\xde\x9f\xfd\x16\xb9\x8f\xe5\xc2\x9a\x6f\x91\xd7\x1f\xe2\xf0\xa7\xba\xb7\x70\x5a\xf2\x71\x43\x2d\xff\xdd\xb9\x2d\x1d\xc8\x2d\xdf\x55\x72\xbe\x0d\xe0\xf9\x4f\x55\x0d\xc8\x38\x09\x98\x8c\x07\xd2\x0a\x81\x4e\xdd\x81\xd3\x3d\x80\x41\x13\xf8\xfb\xdd\xc1\x13\x38\xf6\x91\xeb\x28\x1d\x69\x00\xac\xbd\x0a\xc4\x1c\x01\x76\xfe\x00\x22\x3e\x02\x87\xfa\x00\x07\x32\x39\x5f\x1c\xbe\x09\xb8\xe1\x05\xec\xab\x07\x3c\x1b\x02\xec\x3d\x2d\xf8\x2f\x57\xf3\xb9\x8b\xe3\xdc\xe3\x94\xe0\xaf\xa0\x1f\xb3\x44\xe0\xc8\x16\x0a\x6b\x9e\x05\xc2\xf7\x39\xc7\xff\x12\x87\x7f\xf0\x5f\xe4\x3f\x44\xff\x79\x8f\x64\xe0\x71\x01\xb7\xf7\xf7\x73\x7b\x53\x18\x0f\xd7\x46\x70\x9b\xde\x19\xa8\x17\x0a\xa4\x5c\x04\x1a\x59\x01\xa7\x0a\x01\x8b\x3a\x40\x5c\x89\x54\x8c\x6d\x7d\xe0\x70\x3d\x19\xcd\x31\x9f\x80\xc8\x0e\xf5\x3d\x9c\x77\x03\xfb\x4d\xe4\x2a\xbc\x0c\x80\xbd\x8b\x15\x6c\x25\xbe\xed\x36\x51\x08\x8e\x7a\x23\x59\x63\x2a\xa4\x26\xcf\x01\xb6\xe7\x28\x5c\xce\x7e\x00\x04\x16\x2b\xcc\x2a\xc9\x06\xfc\x3f\x2b\x84\x7f\x53\x01\x7c\xd7\x28\x70\xbd\x93\xbb\xf2\x74\x9e\xb0\x3c\x4d\x5e\x49\x62\xdd\xca\xeb\x1b\x92\xbf\x5d\xeb\x51\xcf\x17\x97\x3d\xd2\x74\x6e\x3d\x67\x57\x5d\xe2\x63\x66\xce\xac\x43\xfb\xad\x69\xc1\x50\xfd\xa7\x38\xfc\xe6\x3f\x3f\x24\x24\x66\x8d\xfc\xff\xc6\xed\xad\xee\x52\x74\x4e\x73\x25\xa7\x3e\xed\x02\xcf\x67\xcb\xd3\x39\x45\x52\x80\x02\x71\x21\x71\x6a\xca\x9b\x95\xd7\x00\xd1\x6f\x35\x0c\x9b\x66\x03\xfb\x43\xb5\xca\x6d\xec\x81\xd0\xa3\xda\xf6\xc3\x5d\xea\xc8\xec\x78\xad\x7d\x70\xfa\xb6\xba\x93\x03\xfa\x6b\xbf\x58\x61\x57\xef\xf2\x16\xe5\xc6\x52\x5b\xbc\xa4\x6f\xfa\xdd\xd0\x4e\xda\xaf\x2f\xd3\x78\xfd\x14\xed\xac\x93\xc7\x65\x8e\xac\x1b\xa3\x1d\x74\x25\x55\x66\xc2\x1a\x15\xed\xd3\x85\x1d\x64\x0c\xbc\xfa\x37\x56\x7d\x7f\x56\x7a\xce\x8a\x24\x1d\x19\xc6\xa4\xb7\x2e\xcc\xd0\x69\xc2\x98\x74\x07\x97\xc5\x8d\x27\x32\x56\x97\xcd\x7a\xd3\xf0\x08\xf9\x79\x47\x63\xa5\xc4\x4e\xd9\xaf\xd6\x52\x62\x9d\x34\x54\x48\xf3\x62\x92\x8b\x12\xf5\xbb\x1f\x7f\x4f\xe1\xde\x9f\xe2\x20\xfa\xff\x26\x4d\xf0\xbf\x0e\xda\x72\xff\xb9\xbf\xf9\xfb\x14\xe9\x14\x28\x77\x9b\x06\xd5\x35\x2e\x06\x6a\x53\x41\x37\xc5\x45\x8f\x66\xc6\x89\xb1\x86\xa4\xcf\x7b\xd8\xbf\x09\x9d\x9e\xee\xab\x34\x69\x2e\xbd\x14\xd8\x65\x6f\x9a\xa6\x73\x53\x6a\x99\xff\x2c\xd3\x8c\x36\x0a\x32\x95\x7e\x1f\x9b\xf9\xf6\x53\x97\xd3\x5a\xfb\xbe\x59\xf6\xc4\x31\x0a\xa6\x1e\x33\x9a\x1d\x5a\x30\x4a\xf1\xe3\x8a\x1d\xcd\xe6\xf8\x0c\x6d\xb0\x63\xc9\x6e\xd3\xdb\x21\x27\x95\x0f\xba\xc9\x9b\x4e\x8f\x3d\xa4\x32\xd8\xd5\xb1\xe9\xbd\x74\x13\x95\x09\xf3\xba\x35\xcd\xc8\xbf\xac\x22\xe7\x7c\xd8\x54\xf9\xe5\x7c\xe5\xba\xb3\x33\x4d\xe3\x18\x53\x9a\x34\xe5\x43\xd3\x41\x8c\x29\xac\x9c\x94\x6a\xd2\x9c\x31\x79\x9d\xf1\xed\xfe\x8f\xb2\x37\x8f\xcb\x31\xff\xfe\xc7\x9f\xd2\xa2\x10\x25\x8c\x2d\xb2\x2f\xa1\xac\xa1\x64\xdf\xa2\x64\xa9\x6c\x45\xd9\x8a\x94\x64\x29\x2d\x2a\x0a\x91\x14\x89\x4a\x65\xab\xd0\x6e\xad\xd0\x22\x21\xa4\xec\x6b\x93\x6d\xc6\xd8\xb2\x8c\x31\x33\xb8\x7e\x8f\xfb\x9c\xd7\x15\x35\xfc\xde\x9f\xef\x5f\xe7\x71\x37\xf7\xdc\xae\xf3\xba\xce\xeb\xbc\x96\xe7\xf3\x3c\x4f\x5b\x15\x49\xaa\xb3\xc0\x2a\x4c\x4f\x49\x92\xd4\x96\x4d\x09\x6c\xfd\x8b\x24\xa9\x76\x9c\x14\xa6\x6b\x2f\x49\x2a\x61\x96\xd1\xad\x5a\x4a\x92\x72\x96\xb9\x51\xcb\xc3\x92\xa4\x6c\x5c\xd3\xff\x8f\x7e\x6c\x5f\xf8\xd7\xca\x54\xd8\x72\xa3\x86\xf4\xe6\x6f\x85\x35\x23\xdc\xb7\x38\x41\x8f\x70\xdf\xfc\x0a\xc6\x87\x4f\xe6\x77\xa7\xef\xa5\xe9\x19\x52\xf5\xcc\x81\x57\xcc\x93\x88\x8e\xed\x47\xc2\xcf\x61\xb3\xfa\xd3\xfd\xd4\xc6\x63\x83\x0c\x1b\x65\x01\x7e\x1d\x06\xa4\x76\xfa\xac\x66\xb2\x2a\xd8\x68\x92\xc9\xd4\x7a\x9f\x96\x4a\x46\x2d\x27\xdb\x37\x38\xb2\xb8\x6e\xff\xa5\x0b\xcf\x6a\x6b\xcf\xdf\xdb\xef\x94\x8f\xaf\x4e\x7f\xfb\xa6\x7d\xcb\xc3\x77\x36\x2e\xb2\xb5\xe8\xab\x92\xa8\xd6\xe4\xc4\x0c\x83\x3e\x2e\x39\x27\x9a\x76\xb1\xb9\xdf\xa7\x77\x69\x7c\x53\x65\xeb\x09\x7d\x3a\xfd\x5e\xaf\xf1\x33\xab\xc0\x3e\xf9\x92\xd4\x68\x97\x65\x72\xef\xd1\x92\xa4\xb5\x66\xfc\x19\x03\x3f\x49\xd2\xbc\x34\x0e\x3d\xe6\x4b\x52\xfd\x96\xa3\x2b\xf5\x03\x24\xa9\xee\xd9\x91\xc1\xdd\xa2\x25\x49\xa3\x72\xf8\xc9\xae\xa6\x92\xa4\xa1\x34\xf4\x50\xa7\x37\x92\x54\xe7\xe0\x90\x39\x9d\xda\x4a\x52\x9d\x0e\x55\x79\x50\xf0\x9f\x9e\xfb\xa9\xd1\xbd\xca\x83\x32\x6d\xba\xe5\xb8\x71\x45\x8f\x6e\x09\x2f\xc5\xf1\x75\xe2\x19\xbf\x3e\x94\x21\x4f\x98\x0e\x20\x7d\xef\x94\xca\xc1\x84\x32\xec\x1b\x3e\x8c\xee\x29\xa3\x72\x46\x92\x9e\xef\xd6\xd4\xd1\x74\x6f\xb7\xb6\x6c\x2c\xc5\x8f\xc7\xab\xf1\xfe\x75\x12\x81\xa5\xb6\xe3\xf7\xb6\x4e\x56\x3e\xb6\xe0\xc1\xb8\x84\xbe\x8b\xea\x3e\xb4\xdd\x37\xe6\xcc\x38\x43\xed\xd9\xd6\xcf\xc6\xe8\xcc\xde\xd8\xd8\x69\xd2\x9c\x51\xd7\x57\xa4\x36\x7d\x37\xc1\x78\x64\xf9\xa6\x95\xcd\xbe\x8e\x55\x1b\x11\x16\xbf\xa0\x45\xe3\x91\x23\x86\x3f\x3d\x36\xb3\x45\xc6\x70\xdd\xe1\x0e\xc5\x27\x5b\x04\x0e\x2d\x1e\x3e\xe0\x51\xb3\xe6\x06\x43\x53\x86\xbf\xff\xb7\x7f\xd3\x7b\x43\xb4\x86\x7c\x92\xa4\xc6\xad\x4d\xdc\x4d\xc2\x25\x49\x3b\x7a\x50\xdb\x81\xf7\x25\xa9\xe1\x3e\xa3\x78\xa3\x65\x92\xa4\x79\xb9\xdf\x83\x7e\x7f\x4b\x52\xfd\x7d\x7d\xef\xf7\x79\x25\x49\xf5\xb6\xf5\x3e\xdc\xeb\xbc\x24\xd5\x35\xee\xb5\xd9\xb0\x89\x24\x69\x58\x7f\x12\xfc\xb6\x3f\x32\x1b\x50\x5d\xd1\xc3\x08\xbe\x15\xba\x26\x75\xa5\xfb\xa2\x0b\x13\xd9\xef\xbc\x9e\x26\x74\x3b\x7e\xcc\x67\x38\x8d\x98\xac\xff\xb2\xa7\x7c\x02\xf1\x3d\x76\x3e\xb5\x64\xdc\xc7\x74\x0a\x7d\x7f\x9d\xaa\x0d\x55\x59\xad\x1a\x32\x9d\xf0\x1f\xc7\x4d\x33\x09\x75\xb0\x9f\x67\x1b\xdd\x34\x1e\xb0\x3e\x34\x73\x6a\x77\x4d\x75\xb5\x09\x5f\xa6\xbb\x0f\x2b\x6d\x50\x3a\xca\x6e\x9a\xc7\xb4\xa3\x8d\x5c\x87\x3c\xb2\x79\xef\x7a\x49\xe7\x83\xf1\x64\x9b\x05\x41\x9b\x9b\xd4\x36\xca\xb2\xf6\x89\x99\xd9\xc4\xa3\x6f\x92\xd5\xdb\x8c\x9b\x4d\x26\xf6\x3e\x68\x35\xe6\xfc\x94\xc6\x17\x7a\xcd\xb3\x6a\xf5\x70\x89\x4e\xba\xe1\x5d\xab\xf9\x7f\x8d\xd3\xde\x6a\xb0\x75\xf2\x59\x49\x6a\xd8\xb8\xc7\x31\xf3\x40\x49\xaa\xff\xb9\xfb\xf1\x71\x87\x25\xa9\x5e\x41\xd7\x57\xa3\x4d\x24\x49\xa3\xa8\xdb\xaf\x23\xba\x4a\x92\xc6\x85\x6e\x06\xc3\x20\x49\x1a\xed\xba\x1e\x37\x7d\x27\x49\xea\xf1\x9d\x3f\x9b\xd8\x4a\x52\x9d\xc0\x97\xf9\x0d\xe9\xb6\x53\xe6\x3f\x95\xa6\xf7\xa4\x15\xa0\x8a\xff\x23\xf4\x6f\x8e\x3a\x4e\xa0\xfe\xf4\xc9\x6b\x2c\x09\x65\xdb\x1b\xc6\x55\xd8\x3b\x0b\xa6\x91\x8a\xf6\x96\xd9\xb6\xa4\x73\xbe\x2e\x74\x0e\xdd\x63\x7b\x14\xcc\xa5\x6a\xaa\xc5\x67\x16\x52\xfe\x9c\x39\xd0\xe9\x57\x85\x9d\x78\xd0\x79\x60\x3d\x27\x60\xf4\xe8\xc5\x43\xda\xf7\x52\xc9\x32\xbe\xe4\x94\x3c\xc8\xaf\xde\xc2\x7e\x4b\x9d\xe6\x4e\xfe\xbd\xfe\x1b\xc3\x79\x4e\x5d\x17\x3d\x6d\x80\xee\x66\x8e\x07\x03\x06\x34\x88\xeb\x72\xcb\xb1\xe9\xce\x87\x0d\x32\x3a\xb5\x5f\xe8\x90\xba\xa1\xc1\x98\x0e\x9e\x0b\xb6\x17\x2e\xd1\xcc\x6a\x6f\xb0\x20\xe4\xde\xda\xfa\x71\xed\x36\x2d\x18\xf6\x61\x5a\xdd\x8b\x6d\x37\xce\x1d\x26\x49\xea\x87\xdb\xd6\xb5\xb5\x96\xa4\x3a\x39\x7a\xb6\xd3\x3e\x4a\x92\xda\xe3\x36\xbd\xad\xb4\x25\x49\xf5\x66\xeb\x8b\x53\xf4\x24\x49\xd5\x45\xf7\xed\xc4\x5e\x92\xa4\xb2\x57\x37\xc7\x7c\x91\x24\xa9\x38\xe8\xee\x35\x1b\x2f\x49\x2a\x2d\xca\x2b\xdb\xd3\xf3\x56\xf1\x9f\x3a\x8c\xa0\x9d\xc2\x7f\xf8\x3f\x12\xeb\xc1\xc4\x3b\xda\x12\x0e\x18\x79\xc2\x81\x50\x95\x2d\x46\xf3\xa9\x7e\x73\xed\x63\x27\x1a\x48\x4f\x63\xd6\x47\x59\xb2\x81\xab\xb3\xe7\xf4\x58\x46\xbf\x3f\x69\xc8\x0a\xaa\xd3\x33\x29\x5d\x4d\xfa\xee\xfd\x1e\xae\x9e\xde\xbc\xb2\xd6\x1b\xfd\x0b\x9e\x83\x7b\x7f\x51\x3b\xd3\x69\xba\xe7\xf0\x09\x17\xeb\x2c\x6f\x7b\xc7\xb3\xc9\xfc\xa0\x3a\x07\x5a\x7b\x7a\xbc\xf4\x6d\x57\x27\xb4\x65\x96\xc7\xae\x88\x71\x6a\x37\x9a\x97\x7a\xb4\x3e\x3c\x51\xf5\x78\xb3\x13\xab\xce\xe4\x9f\x52\x59\xd5\x4c\x7f\x95\xdb\x1d\xa3\xda\x59\xcd\x12\x56\x79\xbc\x8d\xae\x55\xaf\x79\xd7\xe5\xd4\x77\x4f\x67\xeb\x92\x7d\x0a\xdb\xe8\x9a\x23\xf1\x4a\x1b\xb6\x9f\x4b\xf5\xdd\x0d\x0e\xcc\xde\x4f\x67\x29\x43\x5b\xd2\xef\xd6\xd4\x99\xd1\x83\xfe\xbe\xcb\x86\x74\xef\x6f\x8c\x19\x48\xef\xef\x42\xc5\x48\xaa\xaf\x93\xf5\x7f\x8e\xf8\x58\x51\x5e\x3c\x54\xc9\x7c\x90\x7d\x93\x98\x07\xb3\x2b\x7c\x11\xdd\x22\x6f\x2d\x58\x42\xa8\x42\xd0\xfb\xa5\xb4\xb2\x78\x39\xb3\x6e\xc4\x52\x5d\xee\x17\xb4\x60\xd8\x6a\xfa\xbb\xf5\x56\x1f\x42\xed\xc7\xf4\xf0\xa7\x3c\xd3\x6b\x77\x20\xf1\xa7\xda\xb7\xda\xd0\xaa\xc1\x7d\xa0\x65\xd4\xfa\x3b\xdd\x3a\x28\x45\x34\x5b\xb3\xe1\xd9\x98\x26\x48\x68\x7c\x67\xc3\xe1\x39\xbf\x03\xda\xe7\x37\x04\x79\x3e\x02\x1a\x5a\xae\x2f\x09\xdb\x02\xd4\xef\xbd\x7e\x78\xa2\x13\xa0\xb1\x26\xc8\xe0\xf4\x64\xa0\xce\x89\xc0\x7e\xd7\x3f\x03\xaa\x1f\xd6\xb9\xbe\x3c\x00\x28\xff\x19\x40\xfc\x59\xa5\x9b\x5e\x82\xff\xb0\x82\x75\xbb\xb3\x5c\x89\x2f\x8a\x69\xce\x5c\xaf\xe9\xe4\x48\x3a\xee\x78\xbb\x80\x3f\x1f\x9b\x4b\xfb\x8a\x8b\x31\x63\x5f\x72\xfc\x4f\xa6\x95\xe2\x98\xc1\x74\x42\x95\x93\x7b\xda\x3b\xb0\xff\x8e\xe4\x47\xd4\x28\xe7\x27\xe4\xbf\x2e\xf3\x60\xd6\x17\xae\xa4\xf7\xed\xf3\xd1\x83\xeb\x3b\xbf\x32\x5e\xee\x64\xbe\x86\xe2\xdf\xf6\xce\x3a\xe2\xd1\x98\x3f\x0f\xa2\x3c\x69\x1a\xc9\x3c\x89\x2e\xa7\xb7\xd2\xad\x7a\x83\x7d\xdb\x93\x95\xea\x02\x1a\x07\xb7\x7f\x6e\x33\x08\x50\xb5\x8a\x50\x37\x69\x0b\x28\x59\x45\xd4\xb5\xa1\x08\x8b\xa8\xe5\x46\x23\xbb\x7d\xc3\x26\x7a\x82\x6d\xdb\xf7\x90\x92\x4f\xb8\x40\x94\xc2\x16\x33\x72\xb0\x75\x22\x2b\x6a\x6f\x09\x93\xa8\x2f\xc8\x7a\x81\x53\xf8\x0b\xfd\x72\xaf\x5c\xb6\x1e\xa2\x8e\x79\xb9\x18\x27\xb7\xc9\x6c\x97\x10\xee\x7f\x46\xa2\x76\x0f\x38\x6e\x3c\x9b\xf8\x62\x29\xaa\x0b\x08\xc7\x38\xe0\xbf\x84\x50\xa5\xe8\x42\xe6\xc1\x6c\xb3\x59\x45\xaa\xf3\xc1\x2d\xbd\x29\x5f\xfa\x57\xac\xa1\xf8\x5f\xd5\x30\x80\x50\x94\xc5\x1f\x03\x09\x0f\x76\x08\x0b\xa6\xef\x5b\x1d\x09\xa1\x1d\xe6\x58\x5d\xe6\x85\xf4\xd7\x61\xfd\x8c\xb6\x06\xcc\x0b\x51\xdd\x16\x9b\xc4\x19\x3a\x2e\x8d\x57\xe4\xb8\x34\x23\xca\x44\x71\x56\x53\x08\xe9\x88\xfd\xe4\x42\x23\x1c\x6b\xbe\x9e\x32\x6d\xec\xee\x58\xfa\xc5\x98\xbb\x47\x69\x45\x8e\x69\x77\x89\x2a\xaf\xa3\xe7\x3e\x26\xfc\x33\xda\xf9\x2b\x65\xa8\xed\x3d\xd9\xbf\xcd\xa2\xb3\xfc\xfa\x4a\xb6\x01\xa9\x6c\xfd\xc4\xb8\x78\x9b\x89\xf1\xd9\xae\xb0\xc7\x2a\xb8\x4a\x34\x6d\xaf\x13\xaf\xff\x66\xcc\x87\x88\x69\xb0\x92\x70\xad\x6d\xe9\xde\xb4\x7e\x6c\x76\xf4\xa7\xb7\xb2\xae\x59\x20\xa1\x4a\x9e\x7d\x19\x27\x5f\x7a\x91\xf9\x3f\x0b\x46\x85\x12\x3b\x67\x66\x11\xeb\x66\x4c\x8c\xdb\x41\xe3\x35\x74\xcf\x2e\x42\x61\x0c\xea\xed\xa6\x93\x7a\xf3\xd7\xac\x17\x82\xe4\x24\x25\x1e\x87\xa4\x15\x3c\x0e\x49\x25\xfd\x42\xd9\x4e\xa2\xba\xf7\xc4\xcb\x8b\xe8\xc9\x92\x3c\xd7\x52\xdd\x76\x62\x61\x14\x65\xe8\x84\x9c\x34\x9a\x79\x07\xb2\xb9\xc3\xc8\x01\x97\x72\xea\x8f\xb0\xff\xcf\xbf\x69\x66\xc7\x25\x4b\xd5\x79\x31\xd5\x74\x3f\x14\x27\x11\x31\x3e\x42\xff\x61\x2d\xd5\x77\xa7\x94\x31\xbf\x2f\x21\xd9\x9d\xf8\xb0\x31\xb9\x9e\xe4\xb7\xac\x03\x14\xb2\x22\x90\xde\x5f\x50\x03\xae\xae\xf6\x59\xb3\x85\xfc\x70\x47\x18\xe5\xcb\x45\xa9\x8c\x93\xdb\x57\xb0\x5e\x88\x55\x6a\x34\x8d\x8b\x99\x57\x1c\x8d\xe3\xa0\x4a\xf6\x5b\xdf\x27\x91\xaa\xb2\x1b\xe7\x1e\x12\x71\x90\x31\x81\x6d\xa6\x79\x33\xe6\xc1\xb4\x66\x3d\xf7\x8c\xac\x89\xd6\x64\x7b\x2c\xa4\xcc\x94\xfe\x70\x0d\xad\xb8\xe9\x19\x91\x74\xa6\x4b\x2f\x49\xa1\x11\x4d\x8b\x3d\x4b\xf3\x22\x75\xf1\x5d\x42\x9c\x53\xd6\xbf\x25\x06\xdb\x21\x81\xd7\xec\x0b\x91\xaa\xf1\x62\xa2\xc4\xb8\x44\x88\xba\xef\x30\x81\x03\x33\x6f\x48\xd6\x41\x8a\xd7\xe6\x03\xc4\x4e\x87\x75\x94\x17\x42\x9b\x6f\xa4\xfd\xd1\x06\x5d\xee\x03\xe6\x5f\xc1\xfd\xb0\x3c\x0a\x22\x08\xaf\x5b\x92\xb1\xd3\x5b\x61\xe7\x1b\xef\xe6\xfe\x58\x6f\xe3\x09\x0f\x9c\xb4\x67\x3f\xbd\xd5\x11\x27\x13\x09\x7d\xee\x2b\x74\x71\x3a\x8c\x4c\x23\x9c\x5b\xeb\xf5\x51\x71\x52\xa9\xe2\xc3\x38\x37\xa3\x0c\x9c\x6d\xd2\x9b\x90\xbe\xec\x41\x13\xa8\x96\x21\xc7\x75\x1e\x65\xa4\xec\xe7\x5e\xfc\xf7\xbf\xf8\x09\xb2\xdb\x1d\xea\x4b\xff\x7f\x64\x2e\xed\xf4\xb2\xb2\x6f\x53\x06\x3e\xf9\xdb\x1b\x52\xe2\x97\xf1\xfc\x54\x81\xdb\x55\xf1\x62\x04\x5f\x28\xee\x94\xf4\x03\x5e\x4c\x7c\x79\x00\x75\x25\xda\xe5\xc2\xba\x4f\xe1\xd2\x16\x1a\xdd\x4d\x36\xe1\xd4\x9d\x67\x9d\xf6\x0e\xba\x81\x90\x79\x30\xee\x27\xe2\xe8\xa9\x17\x99\xef\xdd\xc7\x71\x70\x80\x12\xa7\xf5\xe3\x44\x7a\xda\xf1\xe9\xc9\x84\x46\x0f\xb5\x67\x95\x06\xc3\x12\xe6\x47\xb4\x35\x60\xfd\x8c\xfa\xf6\xa7\xc4\xc9\xbc\x60\x0c\xdb\xb3\x1f\x9a\xd0\x7f\xc9\xff\xca\x9d\x2c\x0b\xfe\x18\x47\x67\xd9\x82\x42\xfb\x54\xb6\x1e\x14\x2f\x67\x27\x6d\x25\x7c\xef\xec\xf0\x03\x14\xb9\x05\x67\x72\xe8\x73\x81\x66\x29\x65\xb2\xfc\x8a\x17\xa4\x9b\x93\x27\x70\xbb\x93\xa2\x9e\x3f\x53\xf0\xc5\x52\x04\xff\xe5\x50\x0b\xa9\x3a\x2f\x86\x70\xcf\x18\xdd\x60\xda\x47\x6f\x1b\xcf\xa8\x61\x88\x65\x04\xa1\xa9\x81\xc6\xbb\x8c\xd9\xff\xdd\x14\xff\x1e\xda\xfb\x68\x96\x2e\x31\x60\xbf\xe7\x6b\x1c\xe4\x3a\xf7\x73\xac\x8b\x33\x05\xac\x07\x34\x56\x97\xfd\x1e\x94\xcc\x7e\xf7\x5c\x9c\x43\x7c\x63\xdd\x88\x33\x34\x9e\x1a\x0f\x0a\x55\xd9\xff\x8b\x06\x6c\x2f\xd9\x35\xa6\x5f\xbe\xa4\xd2\x73\x2b\x59\xab\x31\xf4\x7e\x2f\xd7\xb2\x53\xa6\xcf\xe5\x2b\xe8\x9b\x97\x32\x42\x68\x87\x72\x29\x8d\x67\xda\x25\x95\x13\x34\x0e\x97\x7a\x5d\xa5\x7e\x4b\xc5\xe6\x4f\xe9\xc9\x2f\xac\xf8\x87\x9e\x5c\xe6\x7f\x9c\x12\xfd\x4f\x4e\x6c\x93\xaa\xf1\x85\x52\x05\xaf\x90\x79\x31\x11\x15\x61\x94\x65\xb7\x1c\x89\xa4\x75\x62\xbd\x33\x77\x53\xf0\x3f\x53\x9d\x07\xb4\xec\xc0\x21\xe2\x51\x2f\x4e\x4f\xe5\xfd\x51\xad\x74\xe2\xc9\x4e\x3b\x77\x94\xf8\x94\x13\x8b\x38\xce\x47\x39\xe5\x50\xd6\x1f\xd0\x3c\x97\xf0\xe0\x6e\x16\xcc\x5a\x69\x31\xf7\x3c\xa1\xaf\xea\xd7\x8a\xc5\x89\xbd\x4c\xdc\xe8\x5d\xf7\x69\x44\x33\xe8\x5a\x3b\x7d\x8a\xc8\xeb\x69\x23\x49\x71\xe9\x46\xcf\x59\x14\x1f\xd7\xad\xdc\x22\xf8\xf3\x46\x1a\x8f\x1b\xda\x71\xc4\x3c\xbb\xfe\xf4\x08\xfd\xd2\x8d\x8c\x62\x62\x2e\x94\x7d\x7c\x48\x3b\xc0\x6b\xf5\x3f\xf1\x89\xe8\x04\xdf\x25\x16\xb5\x63\x7f\xf3\x53\xaa\x8f\x4b\x15\x5f\x88\xf6\x59\x32\x0f\x28\xb8\x4d\x2c\xe9\x65\x05\x1c\xd9\x4f\xf3\xb9\x26\x0f\xc8\x79\x50\x3a\xf1\x3a\xe6\x6f\x17\xfd\xb1\x76\x9d\xa4\x7d\xd2\x54\x5f\x8e\xf3\xf1\x60\xbc\x7c\x58\x18\x05\x31\xfa\x55\x30\x0f\xa8\xeb\x96\x62\x5a\x05\x9b\x0f\xb9\x42\xfb\x12\xb5\xc5\xd7\xbb\xb3\xff\xb7\xef\xb2\xbd\xff\x42\x8b\xfe\x97\x87\x3d\xba\xd0\xdd\xdf\xfd\xa2\xe1\x34\xe2\x0f\x7e\x9f\xf6\x8c\xfe\x7e\xd5\x95\xc6\xe7\xc1\xdb\x40\xe6\xbd\xdc\xe4\x27\xbe\x7f\x33\x5d\x9f\xbf\x5f\x48\xff\xc2\xfd\x53\xf7\x29\xa3\xdf\x53\x7f\x47\xf9\x56\xe6\x39\x5c\x55\x62\x7b\xf1\x23\xdb\x22\xa1\x3d\x2a\xf7\x09\x62\x1e\x55\x48\xb3\xbd\xf1\x3c\x0f\x12\x29\xae\x65\x1e\x90\xc7\xae\x74\x1a\xfd\x65\x91\xc7\x88\xb7\xe1\xb4\x96\xf5\x9f\x1c\xd2\x72\x08\x95\x9f\x31\x3b\x8f\xf4\x52\x26\x8d\x2c\xa0\x59\x6c\xf6\xe7\x05\xfa\xde\x10\xd3\x8b\x84\xf7\xf7\x49\xbf\x42\x59\xbd\x4b\x09\xeb\x47\x34\x9d\x71\x93\xf2\xab\xf2\xf0\x3b\x5f\xd9\x7f\x99\x0f\xf3\xe4\x1a\xf3\x61\x9e\x3e\xed\x44\xeb\xc3\x33\x63\xd6\x03\x79\xf6\xca\xca\x81\x3f\xf3\x8a\xf6\x5b\xfb\x00\xda\x47\xfc\xd6\x69\x27\x65\x9e\xdf\x3c\x53\x28\xe2\x9e\x79\x17\x50\x45\xc0\xd3\xe0\xdb\x74\xf3\xf3\xd4\xab\x92\xfb\x4a\x5d\x64\x3f\xef\x6e\x67\x7b\xc3\x95\x6d\xe9\x10\xb6\x55\x7d\xa5\xfe\x52\xd8\x0d\x61\x87\x78\x97\x31\x3b\x95\xa2\xc8\x27\x88\xe7\xf5\x72\x95\x13\x94\x7d\x96\x88\xbe\x39\x0b\x5e\x9f\xa1\x3c\x68\x9f\x5b\x48\x71\x30\xdd\x98\x79\x40\x93\xac\x8b\x29\x1a\x47\xbd\xbe\x42\x7e\x99\x94\x94\xd1\xfe\xa3\xd7\x1a\xe6\x85\x74\xd2\xbe\x4b\x4f\xd7\xb8\xfc\x01\xc5\x97\x8a\x76\xc5\x2d\xf6\xff\x79\x09\xdb\xd7\xc6\xdc\x2f\xa9\x52\xa7\x1d\xed\x60\xde\xb5\x19\x44\x7a\x51\xef\xec\x27\xd3\x0e\xfc\x9d\xe6\x42\xb2\x6f\xf5\x7d\xe9\x84\xf3\xae\xd6\x76\xda\xb1\xbd\x7d\x71\x88\x3a\x87\xbe\x37\xcc\xa7\x37\xf0\xb6\xec\x16\xcd\xb4\xb7\x2e\x6f\x68\x9f\xf1\x32\x8d\xef\x14\x64\x9d\x98\x72\xf3\xea\xe3\x72\x5d\xf4\xe4\xbd\x4a\xe7\x8c\x75\x03\x33\x89\x5d\xe2\x93\x75\x82\xb2\xcd\x2a\xa1\xff\xe4\xf6\x30\x97\xb2\xd0\xa2\xfc\xb3\x34\x1f\xe6\x05\x73\x9c\xdb\x46\x5c\xa4\xd9\x6a\x95\x7a\x85\x78\x3e\xe6\xaf\x59\x37\x64\xb4\xf9\x4d\x9a\x3f\x03\x37\xde\xa1\xf5\xc4\x50\x97\xfd\x96\xf5\x71\x9a\xce\x7e\x46\x4f\xa9\xa2\xf9\xdb\x6b\xf6\xff\xad\x18\x87\x7f\xce\xaa\x12\x33\xe4\x9f\xd1\xba\xff\x28\xec\xbf\x83\x07\xd0\x4a\xf5\xa5\x15\x33\xbf\x3f\x4f\x9f\x4b\x4f\xf0\xe5\xa5\x17\xed\xe0\xbe\x18\x30\xb3\xf3\x4b\x49\xc2\x62\xb6\x39\x34\x6f\xfe\x4d\x2e\x0b\xe1\xff\xef\x05\xcd\x9f\xbf\xb3\xbf\x46\xd1\xf8\xce\x61\x7e\xe9\xf3\xcd\xec\xf7\xe3\x00\xb6\xb2\x7e\x0e\x8f\x8b\xf4\xff\xa0\x7f\xd1\xfd\x86\xf8\xbe\xe0\x8d\xf4\x5d\xf5\xad\xae\xfd\x53\x2e\xe3\x56\xef\x24\x60\x82\x33\xf0\x7a\x19\xf7\x43\x51\xbc\x75\x3b\x0b\xe0\xd1\x57\xc0\xb1\x29\xf0\xa0\x00\x70\x5b\x05\x3c\x70\x07\x7c\x93\x80\x5b\xe6\x40\x50\x0e\x70\xa3\x23\x10\x9e\x00\x5c\xd3\x07\x62\xbb\x03\xa5\xff\x00\x87\x4c\x01\xc5\x9a\x98\x65\x0b\x5c\x5f\xc2\x8c\xcb\xd2\x70\xce\x2c\xd7\xcc\x81\x3f\x2a\xd8\x7e\x8f\x7b\x17\xcc\x65\x7b\x2a\x59\xe0\x5d\x63\xaa\xe3\x7e\x55\xfa\xff\x02\xff\xdf\xb7\xfc\xdb\x7d\x75\x15\xff\xe1\xfb\xfa\xfd\x1f\xf4\xb9\xa8\xe2\x3d\x5c\x14\xe3\xe0\x0b\x7c\x39\x04\x0c\xfc\xc2\x7d\x5b\x86\x55\x00\x6f\xdb\x70\x3d\xb7\xe2\x19\x27\x5b\x00\x4f\xcf\x01\x33\x75\x80\x87\x63\x80\xb9\x77\x81\x7b\x7f\x01\xae\x3a\xac\xe7\xaf\x38\x99\xc9\x78\x77\xe9\x10\x20\xac\x0d\x50\x72\x04\xd8\x1d\xc1\xf8\x97\x62\xc6\x5e\x6d\xc5\x3b\xae\x92\x30\xe0\x42\x09\x70\x35\x0b\xb8\x37\x96\xf1\xa1\x17\xd3\x81\x92\x21\xac\xb5\x20\xe3\xde\x32\xde\x27\xd7\x7d\xcb\xfc\x07\xd9\xff\x9f\xe1\xff\x3f\xf2\xfb\xff\xd7\x26\x02\x1d\x5b\x7f\xd7\xd7\x40\xe0\xfd\xef\x4d\x01\xe3\x19\xc0\x0b\x73\xc6\xb9\x7f\x9f\x00\x58\x18\x01\x8f\xca\x98\xff\x70\xff\xa6\x62\xcf\xc5\xef\xdf\xd9\x17\xb8\x36\x89\xb1\x14\xc5\xfb\x5e\xa7\x0d\x94\x2c\x05\x42\x2b\x81\xcb\x1d\x80\x98\xfa\xc0\xc5\x7f\x81\x83\x6d\x14\xbb\x07\xae\x77\xbf\xb2\x80\xf5\x0f\x2e\xe7\x03\xf7\x24\xe0\x8a\x01\xf0\xda\xe0\x1b\x1f\x28\xff\x26\xdb\x9a\xfa\x07\xff\x0b\xff\xff\x11\xff\xa1\x8a\xff\x21\x78\x00\x4d\xff\xa8\xfe\x59\xd6\xc7\x50\x7c\xff\x4b\x25\x8f\xdf\xc7\x3c\xa0\xfb\x52\xe0\x5d\x08\xd0\x3f\x0c\xf8\x23\x04\x18\x72\x05\x78\xf2\x00\x30\xeb\xce\xf5\xbd\x53\xce\x00\x77\x16\x03\xb3\xad\x80\xd2\x10\xc0\x71\x39\xbf\x4f\xc5\xfe\xe8\x72\x4f\xc6\xbb\x8b\x2f\x2b\x4e\x42\x40\xb1\x17\xeb\x82\x5c\x28\x03\x0e\xc6\x00\x17\xa2\x39\x1e\x8a\x25\xae\x09\x3f\x5f\x04\xdc\xb3\x60\xfd\x8b\x97\x69\xc0\x79\x11\xf7\x55\x71\x10\xfe\x63\xff\x65\xfc\x73\x8f\x18\x9f\x9a\x38\xb8\xf4\x1d\xff\xe3\xff\xaa\x7f\xa1\x18\x97\xcf\x97\x80\x36\xb9\x8c\x6f\x74\xd1\x05\x5e\xe5\x03\x06\x4b\x81\xa7\x6b\x80\x41\x07\x80\x5f\x2f\x02\x23\xb7\x00\x77\x8d\x01\x4b\x5d\xae\x73\x9e\xa5\xf0\xff\x2e\xb0\xa0\x2e\x50\xd2\x5b\xb1\x37\x61\xbc\xdb\xd7\x1c\x28\xfa\x0c\x6c\xce\x05\xce\x0d\x01\xa2\x92\x81\x73\xb7\x79\x1c\x0a\xf3\x99\xe3\x52\xb4\x98\xc7\xa2\x50\x0b\xb8\xf7\x1e\x38\xe7\x02\xbc\x1d\xf7\x2d\x0e\xb2\x86\x56\xcf\x03\x55\xf3\x5f\xf8\xff\x53\xfe\xc3\x77\xf3\xe2\x7f\xf2\x3f\x6a\x58\xed\x71\xc0\x3f\x8d\x80\xa6\xbd\x81\xca\xc5\x1c\x1f\xcf\x5b\x02\xdd\x86\x02\x8f\xc3\x80\x7e\x06\xc0\xbd\x23\xc0\x10\xc5\xaa\x5d\x08\x98\x1d\x62\x9d\x03\xc5\xfc\x50\xcc\xf3\x79\x05\xc0\xf9\x64\x60\x69\x5b\xe0\xec\x29\xc0\xbb\x04\x38\x5b\x04\x6c\xb2\x54\x9c\x12\x80\x5d\x85\x40\xde\x43\x20\xf1\x02\x90\xab\x02\x1c\xef\xc3\x7f\x57\x8c\x83\x62\x77\xae\x88\x87\x7c\x25\xe0\x7d\x0b\xe0\x74\x37\xe6\xea\xc9\xf8\xff\xe1\x1a\xfe\xcb\x71\x5f\xc5\x7f\x10\x38\xb8\x8c\x07\x87\x79\x7d\x1b\x87\x9f\xf2\x3f\xae\x57\xb7\xb5\xc6\x02\x5f\x9c\x81\xba\x1a\xc0\x5f\x61\x40\x43\x67\xce\x07\xcd\xb4\x81\xa7\x31\x40\x87\xc3\xcc\x7b\x31\x98\x04\xdc\x29\x05\x06\x94\x31\xaf\x69\xd4\x6b\xe0\xd2\x07\xe6\x3f\x14\xed\x06\x66\x53\x1f\x68\xce\x13\x67\x9c\x01\x8f\x67\xc0\xe9\xa1\xc0\x7a\x17\xe0\xf4\x0d\x60\xa7\x16\x70\xfa\x35\x90\xa4\x0b\x64\x6b\x03\xc7\x92\x00\xc5\x6a\x7e\x31\x06\xc8\xee\x06\xdc\x7b\x08\x9c\xae\xc5\x1c\x1c\x99\x07\x93\x32\xab\x7a\xfe\x93\xfd\xaf\xc9\x7b\x91\x79\x00\xa1\x2b\xab\xe3\xa2\xd2\xff\x91\xff\xf1\xf5\x6f\xc5\xa1\x0a\xf8\xa2\xd8\xd3\x5d\xe3\x67\x50\xd1\x06\x5e\xfa\x00\x0d\x2e\x32\xef\xa1\xb9\x09\x70\xbf\x21\xd0\x69\x25\xf7\xb9\x50\xac\x27\x57\x1e\x00\x43\x8e\x00\xe7\xef\x00\x16\xb1\x40\x61\x2f\xe6\xcf\x9d\x49\x00\x1c\x57\x02\x39\xfb\x81\x55\xdb\x80\xec\x7a\x40\x50\x25\xe7\xc4\x1d\x61\xc0\x89\x0d\xac\x0b\x72\x2c\x85\xb9\x0e\xc7\x32\x81\x0b\xae\x40\x66\x26\x70\x37\x0b\x50\xec\xf6\xde\xbb\x8a\x79\x90\x08\x1c\x48\xaf\xee\xbf\xcc\xff\x90\xfb\x7f\x84\xc4\x55\xf7\x3b\x48\xe0\xde\xff\x4f\xfc\x07\x1f\xe0\xab\x23\xef\x7a\x6a\xf2\x1e\x7e\x4b\x01\x54\x47\x02\xbf\x1e\x07\xb4\x9e\x32\xc7\xb1\x4d\x32\x50\xb2\x0f\xd0\xd7\x03\x2e\xbc\x04\x06\x6c\x02\xce\xde\x05\xc6\xac\x02\x4e\xe5\x02\xd6\xd7\x81\xac\x57\xcc\x0f\x3a\x6e\x0f\x2c\xf7\x55\x9c\x02\x59\x47\x29\xbd\x12\xd8\xa6\x07\x64\x0c\x05\xf6\x6b\x01\xe9\xc6\xc0\x31\x3f\xe6\x8c\x5d\xac\x00\x52\x8c\x79\xbd\x48\xa9\x00\xde\x6d\xfd\x4e\x07\x23\xb7\xba\xff\xf2\x7b\xff\x19\xef\xc3\x5f\xe4\x85\x35\x56\xff\x63\x1c\x04\xef\xe1\xeb\x12\xb6\x7f\x69\x88\x5d\x60\x0d\xde\xc3\x63\xbe\x65\xc3\xbd\xba\x80\xf2\x2d\xa0\xec\x1e\xd0\x28\x03\xb8\xdc\x1a\x68\xbf\x17\x28\x34\x02\x7a\x99\x00\x67\xfc\x58\x37\x27\x7b\x3c\x30\x79\x2b\xf7\x0a\x9b\x53\x0e\xa4\x3d\x60\x7e\x50\x8a\x01\xf7\xdd\x3b\x3c\x1c\x08\x2b\x05\x0e\x75\x03\xf6\x0d\x01\x92\x5c\x80\xa3\xba\xc0\xc1\x09\xc0\xc5\x10\x20\xc1\x84\x35\x66\x12\x5e\x03\x1f\xde\x7c\xcb\xff\xb2\xff\x5b\x1f\x56\xf7\x5f\xf6\x5b\xe6\x3f\x78\x8b\xf9\xe0\xd9\x83\xad\xac\x03\xf1\x33\xff\xab\xf8\x2f\x35\x70\xef\xd7\xcd\xd9\x3e\x8d\x12\xfe\x5f\x65\x7b\x43\xec\x96\x2f\xcf\x06\xd4\x75\x81\x73\x2b\x81\x66\x25\x40\xee\x44\xc5\x59\x0b\x38\xf1\x02\x18\x10\x07\x64\x0e\x07\xc6\x5b\x02\x29\x9b\x81\x99\xce\xc0\xa1\x96\x9c\x27\x12\xdc\x00\x9f\x2f\xc0\xbe\x49\xc0\x16\x5b\x60\x6f\x37\x60\x8f\x3e\x6b\xad\x1d\xb1\x03\xe2\x14\x6b\xa4\x05\x10\xaf\x0e\x3c\x58\x01\xc4\x2e\x02\x3e\xf4\x00\x22\x5f\xf1\xb3\x6f\x09\x60\xbb\xde\xb9\xfa\xfb\xae\xc9\xfb\x58\x2e\xfc\x77\x2b\x65\xeb\x32\xf7\xbb\x71\xf8\x1e\xf7\xaf\xe1\xff\x5f\x01\xc2\x7f\x3d\x31\x0f\x06\xb2\x7d\xf8\x27\xdb\x5b\x42\x45\x52\xe6\x7f\x9c\xb7\x60\x9b\x1b\x00\x68\x3a\x00\x27\x4d\x81\x36\x2e\x1c\xf7\x86\x25\x40\xb2\x0e\x30\xe2\x24\xcf\x7d\x6b\x0b\x60\xdf\x76\xc0\xb1\x0b\x10\x3f\x9e\x75\xe7\x76\xef\x04\x42\x96\x01\xd1\x37\x80\xf8\x25\xc0\x2e\x77\xfe\x7f\x77\xb8\x01\x45\xfd\x81\x88\xad\xc0\x3d\x77\xe6\x7f\xbc\xeb\x04\x6c\x79\xc1\xcf\x1e\x68\x5c\x3d\xce\x65\xbf\x97\x35\xae\xee\xaf\xcc\xfb\x58\x28\xf2\xc5\x82\x36\x35\xc6\xa1\x26\xff\x67\xbf\xc8\x03\x3e\xff\xc3\xff\x15\x6c\x2f\x8a\x5b\x47\xbe\x33\x04\x4e\x8c\x03\x6a\x39\x02\xe9\xee\x40\xe3\x46\xc0\xc1\x8f\x40\x67\x67\x60\xff\x69\x3e\x8f\xc4\xf7\x07\x26\x3e\x03\x62\xba\x01\xf3\x34\x81\x9d\xce\xc0\xaa\x0a\x20\xa2\x13\xb0\x29\x1a\x08\x93\xa0\x1b\xbb\x13\xd8\xf2\x17\x26\x64\x74\x03\x36\x47\xc0\xba\x70\x1a\x10\xbc\x09\x3a\xb7\x0f\x03\x1b\x7c\x31\xec\xb5\x1f\xb0\xae\x01\x66\x28\x7c\x50\x9c\xc1\x14\xd6\x5d\xf8\xbd\x44\xec\x2b\x1c\xdb\x60\x9a\xc2\xce\x13\xfb\xc8\x39\x41\x6c\x15\x67\x1e\x85\x9d\x55\x52\x63\x1c\x04\xee\xfd\xef\x82\xea\xf3\xe0\x77\xd1\x07\x48\xd6\x3d\xb9\x23\x6e\x15\x4b\x0d\xab\xfb\x5f\x20\xaa\x4b\x4e\xd6\x63\xbe\x40\x5a\x2c\xf3\x25\x12\x2e\xd7\xfe\x5a\x27\x1f\x88\x3b\xad\xae\xaa\x1b\xa5\x58\xc7\xeb\x85\xf7\x09\x06\xb6\x5d\x6f\xa0\x3b\x6e\x11\xb0\xe5\x65\x43\xc9\x6e\x2a\x10\x1c\xa7\x3d\x6f\xd9\x47\x20\x28\xa6\xd1\x9a\xf5\x5d\x81\xb5\x0e\x8d\xc2\xa2\x8c\x00\x3f\x8b\x46\x52\xca\x70\xc0\x27\xb5\x51\x49\x5e\x28\xe0\xe5\xda\xc8\xf1\xfa\x47\xc0\x73\x53\xa3\xa9\x7f\xb4\x04\x56\x0d\xd6\x7e\x46\xef\xbb\xae\x16\xdd\xcf\x3b\xc6\x69\x12\x5e\x65\xbf\xb2\x3e\xf5\xb9\xb7\x5b\xa0\x4e\x3a\x9c\x33\x5a\xa8\xfd\xaa\xb0\x36\x6e\x2a\xcd\x15\x76\xea\x68\x65\xaa\xf7\x9c\xa2\x56\x8b\xea\xfb\x7e\xc6\xff\x79\xee\x52\xdd\xff\x5b\x61\xe0\x3a\xf0\x06\x4a\x74\x6b\x72\x3e\xb6\x0e\xdd\x0a\x9c\xbe\xda\x90\x6e\x03\x8e\x86\x6a\xd3\xed\x41\x72\x39\x57\x21\xee\x0d\x69\x4a\xe7\xf9\x48\xe7\xe6\x74\x6b\xb2\x35\xa2\x55\x4c\xe3\x3f\x80\x0d\xbf\xeb\x26\x74\x6b\x5e\xdb\x21\x60\x4d\xeb\xca\xa1\x1a\xca\xef\xbd\x23\xdb\xec\xb7\x9a\xa1\xea\xbd\x6a\x79\x9b\x33\x8b\x1a\xab\x5d\x5d\x56\xd4\x26\xcc\x37\xb4\xce\x1f\x2e\x25\x6d\xc6\x85\x67\xa8\x17\x2d\xf6\x6f\xfd\x2e\xa1\x9f\xc6\x78\xc7\x94\xd6\xfe\x59\xaf\x35\xec\x17\xb8\xb5\x1e\x73\xe5\xbe\x46\xb7\x79\x37\x5a\x0f\x79\x9c\xa7\x1e\x38\x77\x7c\xeb\xeb\xff\x9e\xa9\x63\x67\x1b\xda\xba\x54\x92\xd4\x96\xd9\xfc\xdd\xea\x8c\x24\xa9\x1c\x98\xbc\xa8\xe5\x07\x49\x52\x3e\x63\x39\xaa\xf9\x46\x49\x52\xba\x64\x61\xd1\x98\xee\xe3\xc6\xdf\x6b\x44\x3a\x9c\xe3\x3a\x69\x9f\x53\xd8\xd1\x01\x0d\x5a\x2a\xec\x4f\xfd\xff\x5d\xf6\x5f\x9d\xee\x09\xae\x14\x73\x9f\x94\xb3\xa3\x9b\xd1\x7d\x76\x8e\xad\x2e\x45\x42\x46\x50\x5b\xba\x25\x48\xd2\xed\x40\xf7\xf8\x71\x69\x5d\xe8\xfb\xdb\x7d\xbb\xd3\x7d\x7f\x70\xad\x9e\x84\x1b\xfa\xad\x36\x9c\x57\xaf\x25\xe0\xa1\x6b\x78\x45\x6f\xa3\xb2\x96\x6b\xb6\xe1\xa0\xfe\xa6\x75\xce\x3a\xad\x36\x0c\x9e\xb0\xa4\xae\xc6\xdc\x1b\x06\x65\xf6\x01\xf5\x4a\xed\x8a\x0d\x8c\x57\xe6\x68\x6e\x98\xd1\xbf\xe7\xc9\x4d\xdb\x1b\x7c\xb2\xde\xd3\xe3\x9f\xb8\xe8\x86\xf7\xa7\x58\xf6\x98\x71\xc4\x5d\x6b\x88\xe5\x5f\x3d\x7e\x39\x9f\xa0\x35\x79\xa2\x49\xf7\x4f\x0f\x96\x35\x3c\x6e\x31\xba\xfb\xdf\x7f\xaa\x35\xd0\x18\xdf\xb6\xbb\x93\x24\xd5\x7b\x3b\x5a\xb7\xeb\x6e\x49\xd2\x48\x19\xfe\xbc\x73\xb2\x24\xa9\x9b\x99\xde\xee\xf8\x52\x92\xd4\xbe\x0e\xde\xd3\x41\x5d\x92\xd4\x34\x8c\x87\xb5\x9b\x20\x49\xaa\x8d\x8c\xfc\xf5\x7a\x4b\x92\xf2\x6f\x46\x6e\xad\x07\x48\x92\x72\x0b\x99\xff\x21\xf3\x7f\xaa\xde\xff\x1f\x0d\x28\x23\x5c\xb2\x69\xd1\x8f\xe2\xfe\xbc\x1e\xe9\xaa\x9e\x98\xd5\x75\x97\xc2\xa6\x18\xf7\xa2\x7b\xeb\x84\xba\x7d\x89\x0f\x10\xa3\x3b\x90\x3e\x87\x9b\x33\x5f\x60\xe3\x1a\x13\xca\x2c\x3e\x6b\x58\x47\xc2\x55\x77\xf8\x6c\xe4\x02\x8e\xd6\x23\x9d\x9a\x9d\xaf\xd5\xd8\xee\xf6\xf0\xed\x3d\xfe\x55\x7b\x6c\x6d\x3a\xcc\x6a\x44\xa7\xfa\x33\x27\x3e\x18\x9a\x39\xdd\xb9\xc1\x7d\x33\x9b\x21\xc7\x5d\x1b\x6b\x7d\x1d\x65\x66\xfa\x6e\xdd\xde\x46\xb7\x87\x35\x35\x55\xd9\x35\xb6\x71\xfd\xc1\x4e\x83\xbb\xa4\x38\x34\x8e\x32\xee\x68\x62\x57\x60\xd0\xb8\xdf\xc0\x43\x26\x41\xb7\x47\xe9\xb8\x0c\xf8\x6c\x12\xf0\xfa\xb5\x76\x96\xd1\x6f\x26\x66\x92\xd4\xb0\x5e\xbf\x5d\x03\xe6\x4b\x92\xa6\x4a\xef\x4f\x7d\x33\x25\xa9\x9e\xb6\x61\x7a\xaf\x28\x49\xd2\x08\xe9\x19\xd0\xf3\xb4\x24\xa9\x9b\xf4\xac\xdf\xe3\xb5\x24\xd5\x79\xa7\xbf\x45\xbf\x91\x24\xa9\x6d\xeb\xb6\xb8\x5b\x0f\x49\x52\x6b\x23\xf3\x7f\x7e\x3d\xa8\x41\xba\x16\x37\xef\x34\xa6\xdb\xbe\x62\x73\x3d\xba\x2d\xcc\xaf\xd0\xa7\xfb\xe8\xe3\x8d\xfa\xd2\xbd\x5b\x4a\x85\x09\xeb\xdf\x2f\x1e\x42\xa8\x53\xb4\xc5\x48\xaa\xdb\x0a\x1f\x32\x86\x76\x5a\x1b\x04\x5f\xc0\xfb\xbd\x05\xa1\xb5\x2e\x39\x96\x14\x1f\xf6\x06\x53\x68\x5e\xd9\xa8\x59\xcd\x6b\x10\x09\x58\xb4\x9f\xba\xaa\xe3\x1c\x95\x15\xa3\x3a\x4d\x51\x33\x8e\xaf\x3b\xc0\x54\x79\xf2\x9a\xc9\x4b\x34\x55\x07\x1c\x99\xac\xec\x64\xd0\xa0\x5f\xdf\xde\x93\x16\xae\x39\xdd\xb0\x96\xe1\x36\xcb\xbf\x23\xfa\x37\x9c\xd3\x23\xd1\x72\xfc\xc1\xf7\x0d\x47\xe8\x3b\x4f\xcc\x3b\xf3\xb8\x41\x71\xd7\x2f\x13\x47\x5d\xbf\xa5\xf9\xb1\xcb\xe7\x89\x2b\x5f\xb8\xd5\xf7\xee\x92\x62\x11\x2c\x49\x75\xad\x3b\x79\x8d\x7b\x28\x49\xea\x9b\x3a\xba\x8f\x2c\x94\xa4\x3a\x8b\xda\x2d\x1c\x7a\x53\x92\x54\xa3\xda\x2d\x32\xdd\x2a\x49\xaa\xf3\xda\x5e\x33\x1e\x27\x49\x2a\xb7\xf4\x4c\x06\xbc\x91\x24\xe5\xaf\xad\xe7\xf4\x3d\x2f\x49\xb5\xdf\xff\x1a\x55\x8f\xde\xdf\x2d\xd3\x96\x84\x4b\x5f\x9e\xd5\x89\xde\xb7\xcc\xff\x39\x1e\x66\x42\x7e\x24\x9b\x8f\xa4\x7b\xb7\x7d\xe3\xc6\x11\x1f\x2c\xda\xd2\x82\x78\x3f\x61\x9d\x58\x55\x38\xe8\x88\x15\xfd\x8e\xb7\xcf\x74\xc2\x33\x96\x96\xf0\xad\xfb\x3c\x6d\x3b\x1a\x2f\xab\x0a\x7b\x9a\x3f\x23\xbd\xe7\x6d\x54\xae\x0d\x98\xdc\x9c\xe7\xdd\xca\x5b\x69\x67\xef\xc7\x73\x07\xf5\x79\x53\xa7\x59\x8f\x45\x73\x47\x4c\xf0\x51\x37\xec\xe2\x31\x77\xd0\xbc\x3a\xea\x67\x3a\xcc\x9a\xdb\xca\x4b\x4f\xfd\xf7\xb6\xf3\x1c\x6c\xc3\xb6\xaa\x5f\x6f\xfd\xca\x3e\x2d\x21\x5b\x7d\x54\xab\x4f\xf6\xce\x39\xaf\xea\x2c\x68\x79\x67\xce\xf3\xb2\xba\x6a\xde\x2d\x75\xe6\xcc\xff\x7d\x8c\x6a\xef\x16\xb9\xb3\xff\x95\x24\xe5\x88\x16\x1d\x67\xcc\x94\xa4\xda\x67\x9a\x97\x5a\x69\x4a\x52\xed\x6e\xcd\x5b\x4f\xd2\x93\x24\xa5\x01\x3a\x67\x2c\x08\xcf\x6b\x54\xd7\x8c\x74\xa6\xb4\x5c\xc6\xda\xd2\x99\x71\xd7\x08\xba\xbf\xbe\xe5\xd5\x96\x6e\x35\x8b\xfd\x7a\x12\xbe\x70\xa6\xeb\x40\x42\x4f\x8f\x5e\xe0\x3e\x29\x29\x1d\x26\xd0\x38\xec\xab\x37\x91\xee\x6d\xa3\xce\x5a\x11\x3a\x10\xd6\x73\x06\xcd\xa0\xf5\xce\x76\x14\x37\xbe\x7e\x0e\x54\xaf\xed\xf6\x71\x2e\xad\x40\x0b\xfc\x17\x10\x03\x79\xfa\x3e\x27\xba\xcf\x34\xbb\xbc\x84\x6e\x9f\xfb\x27\xbb\x11\x3e\xde\xad\xdc\x7d\x6f\xa3\x78\xa0\xdd\xcc\x65\x49\xfa\xb7\x94\xa1\x9b\xec\xae\x3c\xea\xac\x72\xfd\xe6\xf7\xdc\xcd\xec\x1e\xd5\x36\x6c\x96\xb9\x5c\x77\x95\x04\x9b\x26\x76\xee\xa1\x5b\xd6\x00\x8d\xde\x2c\xfb\xb2\xef\x32\xa0\x95\xe9\xf6\xf0\xe4\x01\xa0\x41\xae\x5b\xfb\x2b\x4f\x01\x4d\x2c\x35\x7a\xda\x00\xa8\xd7\xd6\xd5\xe3\xcb\x2b\x40\x3d\xc8\x89\xee\xe9\xd5\x4a\xe7\x12\x4e\xa3\x32\xcf\x8e\xf0\x09\x95\xa7\x33\xa8\x3f\x88\x72\x2d\xeb\xbf\x15\xb6\xf6\x81\x29\xb9\x6c\x27\x51\x9d\xf3\x25\xbd\x3e\x14\xaf\x79\x8e\x4c\x88\x3d\x72\x86\xfb\x41\xa5\xac\xb3\xa0\x7c\x2f\xf3\x7f\xa2\x62\xa6\x13\x8a\xba\x35\x77\xf6\x1e\x8e\xff\xb9\x54\x7d\xed\x3b\xc2\x89\xf2\xe6\x8a\x54\x96\xab\x77\x32\x77\xa1\xf1\xb4\x7d\xc5\xe8\x8b\x65\xc9\x72\xca\x97\x43\xff\xf6\x24\x9c\xa7\x7b\x4f\x1f\xe2\x61\x35\xf5\xf3\xcb\x52\x7d\x04\x68\xeb\xfb\x0f\x6d\x37\x1f\xa8\xbf\xd5\x7f\xc1\xe0\xdb\x80\xba\x91\xbf\xa7\x4d\x10\xa0\xf2\xd8\xbf\xd9\x52\x0d\x40\x69\xbc\x5f\xde\x7a\xc2\x37\xfc\xb0\x9b\x95\x67\xc0\x88\x99\xef\xb4\x8b\x84\x83\x79\x57\xfc\x4a\x53\xd1\xbb\xcb\x27\xba\xdf\x5d\x29\x70\xed\xa5\x02\xcf\x5a\xf4\x86\xed\xfc\x40\xb6\x0e\xa2\xbe\x7b\x8e\xc0\x35\x6c\xe9\x1e\x3b\x3f\x7f\x14\xa1\x41\xc7\xd6\xf3\xbc\x4e\x79\x32\x95\x70\xee\x7d\x67\x39\xae\x63\x4a\xb8\x1f\x94\xdc\x07\x6a\xe3\x1a\xde\x50\xf8\x57\x32\xef\x67\xe5\xb1\xa5\xd4\x17\x69\xc9\x42\x77\xca\x13\x0e\xf1\x8c\x46\xda\xb8\x79\x13\x9f\x62\x6c\x09\xf7\xd5\x30\x9a\xc4\x7a\x0a\xed\xba\xad\xa7\x3c\x52\x67\xc8\xe6\x2f\x9c\x91\x43\x5c\x9a\x51\x26\x0d\xc9\xe9\x1f\xa8\xb0\x9b\xa5\xc9\x94\x59\x36\xfb\x32\xc3\x68\xd3\xe3\x75\x54\xf7\xbc\xc9\x26\x8a\x46\x3c\x78\x47\x1a\x21\x2c\x1b\x3f\x16\x11\xff\x61\xc3\xf2\x07\xa2\x33\xcb\x07\xba\xcf\x5e\xdb\x44\xaa\xc6\x6f\x58\x29\x78\x21\x6e\x02\xcf\x74\x11\x7a\x20\x8b\x3e\xb3\x5d\x48\x38\xc6\x09\x1d\x0b\x42\x4d\x53\x2e\xd8\xd0\x89\xea\x80\xf1\xec\x74\xce\xff\xf3\xe9\xfd\x6d\x77\x74\xa2\xe7\xff\x4e\x07\x87\x9e\x7e\x75\x07\x0f\x42\x8d\x5c\x0b\x59\x17\x66\xbe\x31\xeb\xa4\xcc\xc8\x5d\x43\xe3\x61\x11\x16\x48\x27\xd2\x61\x73\xb9\xaf\x88\xc1\xf4\xcd\x34\x5e\x2d\x62\xb9\xbb\x49\x2d\xd5\x08\xc1\xd4\x8b\x8c\x66\xfe\x43\x64\x0f\xee\x7f\x11\x39\x72\x22\xcd\xcc\x1d\x61\xdc\x91\x6a\x87\x9d\x1f\x51\xb7\x22\x52\xb8\xde\x7f\xfb\x97\xc3\x54\x39\xbe\xbd\x67\x1e\x77\xaa\x9a\x7c\x93\x70\xbe\xb0\xab\x6f\x88\xb1\xb6\x55\xe0\xbc\xeb\x05\x9e\xed\x2f\x70\x2d\x1f\x51\xff\xbf\x3a\x96\xed\xaa\x81\x6c\x97\xd1\x78\xa4\x39\xcf\x24\x9c\x2a\xd1\x99\xfd\xde\xbd\x6a\x11\xe1\x6e\x91\xf1\x6e\x54\x2d\xbb\xa9\x3b\xeb\xff\x04\x4e\x58\x4d\x6a\x04\x5e\xce\xec\xef\xb2\xa5\xfe\x44\xa4\x59\x64\x1e\x68\xcc\x51\xb6\x9e\xba\xba\x58\x19\x6c\xa6\x75\x74\xcc\x52\x56\x1d\x1f\x14\xcb\xbc\x90\xae\xbb\xd9\x6f\x9d\x2b\xfc\x56\xb9\xea\x06\xdf\xf1\x61\xe2\x7d\x99\xa9\x16\xf7\xce\x5c\x74\x64\x9b\xf7\x27\x5b\x66\x1c\xc5\x25\x87\x13\xce\x15\x2b\x25\x11\x32\xb6\x3b\xe2\x14\x45\x6a\x4c\x74\x29\xe1\x1b\x31\x13\x9f\x93\x8d\x76\xfe\x4a\x38\xc6\x76\x81\x67\xca\xba\x28\x1b\x44\xff\x8b\x75\x42\xdf\x5f\xe6\x0d\xf1\xf8\xc8\x7d\xc0\xe2\xac\x5c\xa9\x5a\x56\xd6\x01\x0a\x75\xf6\x24\x1e\xd8\x7a\x53\x1f\xc2\xc3\xd7\xf8\x04\xd0\x49\x7b\x55\x2c\xf3\xbc\x96\x18\x04\xd3\x78\xc8\x7a\x38\x33\x72\x18\x5d\x99\x78\x6e\x1b\xa9\xbb\x8c\xd4\xde\x41\x71\xd0\xd7\x9e\x71\xf3\xf6\x5d\x63\x99\x17\x35\x90\xf5\x42\x80\xa4\xe5\x6c\x13\x2f\xff\x42\x08\xd2\xc1\x5a\xbd\xe9\x8c\x96\x34\xd1\x8c\x70\x97\x83\xdd\x1c\x08\x9f\x49\x8a\xf6\x24\x84\x30\x49\x2f\x94\x9e\x20\x69\xc5\x81\xbd\xfc\xff\x67\x93\x42\xc5\x81\x4d\x97\x29\x53\x1d\x88\x7e\x4a\x3b\x9e\x03\x43\xbf\x4c\xe5\xf1\x62\x3f\x77\x6a\xb2\xdd\x26\x74\x53\xb6\x8a\xbc\xb1\x79\xba\x18\x9f\x87\x0a\xbb\xc7\x80\x79\x6e\x51\x4d\x78\x5e\x87\xcf\xf2\xa5\x5f\xdf\xe8\xcc\xfd\x62\x02\x22\xd6\xd3\xba\xb7\xea\x2e\xfb\xbd\xb4\x24\x84\x9e\xca\xb1\x24\x9c\xd6\x8d\xd9\xa2\x6f\x90\x75\xbb\x5d\x84\xd2\x8f\x1b\x1f\x45\xa8\x9c\x69\xe3\x58\x8a\x62\x83\x39\x8c\xd2\xb7\x99\xcb\x3a\x0a\x75\x8d\x0e\x3f\x65\xff\xd3\x17\xb1\xcd\x78\xdf\x94\x94\x78\x32\x82\x0d\x69\xe4\xd2\x4b\xc6\xd0\x4c\xcb\xb8\x3d\x87\x76\x36\x19\x6b\x98\x91\x96\x1e\xb5\x89\x3a\x3b\xa5\xdf\x8d\xa7\x19\x96\xbe\xf0\x18\x31\x4f\xd2\x3d\x2f\x11\x2f\x28\x5d\xef\x11\x21\xc9\x29\x15\x9f\x08\xf7\x3c\x28\xea\xd8\xf7\x89\x7c\x51\xc5\x8b\x11\x75\xde\x3b\xc4\xbc\x60\xde\x50\xb4\x33\xcf\xef\x70\x89\x0f\x4c\x9b\xe7\x04\xd2\xd3\x04\x36\x63\x1e\x90\x57\x61\x28\xf9\xb3\xc2\x61\x3b\xed\xa7\x9c\x17\xec\xa0\xf5\x50\xe6\x01\xcd\x98\x1b\x43\xec\x0b\xcb\x87\x71\x74\x03\x31\x5a\x67\x1f\xed\x1f\x06\x6e\x67\xbf\xf5\x6d\x98\x0f\xd3\x42\x2d\x95\xde\xa6\x5a\xec\x91\x34\xf6\x3f\x4b\x54\x36\x65\xff\xc5\xfd\x71\xb2\xf6\x1a\x10\x23\x39\x7b\xcf\xe8\x83\x0a\x9b\x33\xd9\xce\x90\x2d\xaf\x38\xd9\x0e\x1b\x89\xb1\x92\x3d\x2a\x96\x4e\x38\xd9\x2d\x32\x29\x52\xb3\xdc\x2f\xb0\x35\x66\x9e\xd4\x89\x92\x0f\xf4\xa4\x47\x04\x4f\x2a\x59\xd4\xb5\xcb\xfd\x70\xf6\x33\x6f\x10\xf1\x59\x6c\x63\xa2\x15\x76\x7b\xc3\x80\x47\x3c\x8b\x36\xd0\xaa\x14\xe8\x1e\x42\xcf\xeb\xe7\xc8\xf3\xda\xd3\x7d\x27\xe1\x9c\x4b\xbf\x44\x53\x94\xca\x7a\x38\xb3\xc1\xfc\x08\xeb\x30\xd6\xcd\x30\xaf\x60\xbf\x87\x55\x24\x53\x9c\xf4\x7d\x92\x4a\x79\xa0\x8b\x2e\xfb\xfd\x4b\x06\xe3\xc6\xaa\x6d\x4e\x09\x5e\x94\xcc\x87\xc9\xef\xd3\x84\x22\xaa\xc0\xa8\x07\xf1\xe3\x0a\xb6\x8d\xa4\x8c\x5d\xd0\x6e\x3a\xf1\x1b\xf2\x1f\x2c\xe5\xcf\x61\x41\x1d\xd8\x46\xbd\x67\xcb\x0a\x15\xf9\x15\xac\x48\x50\x10\x7f\x8f\x78\x44\x79\xae\xaf\xe9\x2e\xe0\xb4\x58\x1f\x4e\x34\x64\x9b\xe1\x20\x55\xe3\xc5\x24\x89\x5e\x93\xcc\x8b\x09\x55\x0a\x26\x56\xd1\xc6\x2d\x61\xf4\x7e\xd6\x15\xf0\x7b\xfe\xc6\x03\x8a\xa7\x84\xb1\xd8\x67\x0f\xbd\x95\xb9\xdb\x0e\x10\x7b\x69\x96\x2e\xf3\x23\x26\xc5\x24\x13\xbf\x65\x6c\x49\x2a\xe1\xff\xa6\xa3\x79\x75\xef\xdd\x9d\xbb\xf9\x74\x78\x93\x4d\xac\x84\xc6\xb7\xce\x24\x28\xac\x52\x5b\xb9\x5f\xd4\x05\xb9\x72\xe7\x74\x23\x8a\x98\x4b\xd0\xa7\x8a\x85\x4b\xb5\x87\x51\x44\x16\x4b\x33\xf4\xd9\xf2\x0a\x7d\xa9\x76\x00\x31\x56\x8a\xfb\xef\x24\x45\x81\xe2\x49\xac\x44\x54\x6c\x98\x4b\x8a\x2c\x17\xbf\xdc\xa4\x95\xf8\x42\xc9\x4b\x62\x76\x15\x25\x4b\xb4\x12\xe6\x09\xde\x4b\x8e\x58\x2f\x8f\x8b\x3c\x59\xc5\x8b\x21\x3e\x59\x70\xe4\xb6\xfb\xd5\xfd\x67\x1e\xd0\x8a\xca\xbd\xf4\xaf\xba\x3c\x66\x3d\xa0\x85\x03\x93\x88\xef\x60\x97\x94\x4c\xeb\xbf\x4d\x17\xd6\x8d\xb0\x2c\xe1\xf7\x3d\xf2\xfe\xb1\xc9\x0a\x3b\xa8\x34\x9b\xd8\x3b\x3d\x2f\x9d\xa6\x3c\xa3\x97\x91\x4f\xe3\xa7\xbd\xfb\x1c\xe5\xcb\x5a\x8e\xc5\x1b\xd8\xff\x32\x91\x27\xaf\xa5\x6a\x51\x9f\xa0\xb2\x7e\x5d\xe9\x8c\x5b\x5a\xc2\x3b\xba\x6b\xe6\xac\x23\x75\xed\xf2\x22\x12\x48\x29\xfb\xb8\x86\xf2\xc1\xb5\x04\xce\x48\xd7\x13\x0f\x12\x8f\xaa\x6c\x3c\x2b\xb3\x94\x45\x5c\xa5\xcc\x5e\xba\xe2\x29\xbd\xa1\x92\x3f\xfe\x21\x7e\x9d\xdc\x3f\x49\xee\x87\x93\x2b\x78\x62\x72\xbf\xad\x13\xb9\x7c\x9f\xf7\xff\xcf\x03\x72\xd6\x4b\xa5\x7d\xf7\x3c\xb7\x0c\xda\xa5\xcc\x72\xe1\x59\x69\x55\xc1\xac\xd6\xf1\xe9\x3c\xcf\x47\x35\x67\x3e\x8c\xd1\xf1\x7c\xea\x87\xd4\x23\xae\x88\xd8\xad\x6d\x2e\x5f\xa0\xfb\x89\x86\x4f\x58\xf6\xa2\x96\x63\xa9\xe0\x7f\xdc\xc9\x67\x7b\xef\xb9\x16\xad\xd0\xf7\x16\x77\xa6\x91\x7d\x60\x39\x98\x52\xd5\xfd\x5f\x98\xe1\xfa\x40\x77\x01\x9d\x7c\xee\xeb\x78\x93\x7f\x0f\x26\x32\x6f\xee\xfe\x69\x56\xf0\x79\x30\x32\x87\x66\xd8\xdd\xed\x97\xe9\xec\x7c\x77\xd4\x23\xfa\x17\x6f\x56\x54\xfe\x4b\xe3\x26\xfa\xc0\x5c\x16\xf3\xe1\xe2\x57\x31\x2e\x42\x37\x26\xaf\xa9\xc2\x56\xf1\x80\x74\x6a\xf0\x80\x76\xa5\xad\xe6\x38\x38\x42\xfb\x48\x7b\xe1\xf7\x8c\xc5\xdc\x95\x66\x72\x42\x2e\xf1\x84\xcd\x76\xe6\xd3\xbe\x69\x68\x50\x21\xfd\x77\x99\x0f\xa4\x6f\xcd\x7d\x74\x74\xa3\x4b\xe9\x69\xb5\x1e\xde\xd4\x66\xbf\x6f\x8b\x0a\xae\x72\x71\x13\xf8\xd8\x8e\xf9\x30\x4f\xb6\xb5\xa7\x93\xee\x93\xbd\xc6\x94\xb9\x9f\x2a\x4d\xa2\x93\xdc\x13\xd7\x79\xf4\x5e\x9f\x04\x7a\x12\x8f\xec\xc9\xfb\x2d\xf4\xcb\x4f\x03\xf7\x51\x04\x3e\xf5\x3b\x41\x79\xf6\xc9\x96\x4b\x5d\xe8\xf7\x86\x96\x33\xcf\xa1\xd1\x47\xfa\xde\x83\x00\xe6\x3f\x54\xe9\xa1\x08\xde\x64\x55\x5f\x29\x1a\x17\x9f\x5d\x87\x29\x0f\xae\xb4\x4e\x25\x76\xee\x32\x23\x8e\xf3\xc5\x5b\x8f\x93\xbf\x0b\x0e\x30\x2f\xc4\xee\x36\xf7\x05\x9b\x56\x9b\xe7\x77\x95\x2e\x8e\xe8\x93\x65\x5a\x7a\x25\x52\x61\xfb\x9c\x61\x36\x86\x3e\x6e\x10\x6f\x46\x77\xee\x2d\xaa\x5f\x6a\x50\x79\x87\xf8\xb6\xb5\x34\xe4\x1b\x8e\xdf\xeb\xb2\x7d\x15\xa3\x4e\xfb\xa5\xd7\x75\xf5\xe8\x44\xf2\xba\xf5\x00\x9a\xd7\xaf\xca\xcd\x29\x6f\xbe\x09\xe3\x93\xea\xab\x11\x2b\x28\xd2\x5e\x6b\xb1\xb2\xdb\xab\x1b\xcc\x4c\x7e\x75\x2a\xd3\x8f\x7f\xa7\x88\x18\x57\xaf\x8d\x1f\x90\x32\xdc\xab\x5a\xef\x88\xf9\xf6\xbb\x3b\xfb\x5b\x21\xfa\x0c\xde\x13\x7d\xd7\xaa\x8f\x8b\xf4\x03\xfd\x0b\x99\xe7\x50\xd3\xd2\xf7\x7e\x84\xf7\xdb\x02\x2f\x35\x81\x61\xb9\xc0\xef\x2b\x81\xb1\x4d\x81\xc7\x63\x80\x49\x23\x01\xc5\xbb\x51\x9c\x54\x6e\x9c\x02\xec\x37\x01\xa5\x8b\x81\x45\x49\x40\x49\x2b\x60\x45\x11\x70\xd9\x17\xf0\xf3\x02\x8a\x87\x00\x8a\x9d\xe8\xc5\x0a\x40\x91\xa9\xce\x9f\x06\xf6\xcd\x06\xce\xd7\x06\x31\x12\x2f\x94\x00\xb9\x69\x9c\x5d\x4b\xe2\xf8\xfb\xa4\x77\x6f\x0e\xbc\x7b\xf5\x1d\xee\x2d\xf0\xab\xaa\xfe\x0f\xa2\x57\x4d\x4d\xfe\x43\x4d\xfc\x5f\xfa\xae\xff\xc9\xff\xe2\x3f\x74\xd8\x04\x7c\xd9\x04\x74\x79\x0a\xfc\x95\x0d\xf4\xf2\x02\xde\x8c\x05\xfa\xd6\x07\xfe\xf0\xe5\x7b\xe8\x27\x75\x81\x91\xc1\x40\xf9\x03\xee\x7f\x71\x6f\x0d\x60\x7d\x06\xb8\x9e\x06\xcc\xf1\x05\x4a\xe7\x03\x8b\x0e\x01\x97\xe6\x00\xcb\x27\x7f\xc3\xbb\xcf\x0f\x06\x82\xfd\x80\x22\x43\x60\x47\x08\x70\x6e\x09\xeb\x40\x14\x96\x00\xe9\x2e\x80\x22\xcb\x9e\x31\x07\x8a\x9c\xb8\x27\x82\x62\x3c\x1e\x55\x00\xe7\x2f\x03\x7f\x46\x01\x05\xcf\xf8\x19\x4f\x89\xfa\xed\xa3\xc2\xdf\x9f\xe2\xff\x32\xff\x41\xf5\xdb\x38\xd4\xf4\xb7\xa5\xe0\xd4\xc8\x7c\x87\xef\xf5\x2f\xbe\x94\x01\x6d\x0f\x02\xef\x26\x02\xdd\x6e\x03\xaf\x7c\x00\x43\x4d\xe0\x77\x5b\xa0\xff\x2e\xa0\x42\x0f\x18\x16\x0c\x3c\x78\xca\x75\xfe\x37\x6f\x02\x53\x6a\x03\xa5\x9e\x80\x5d\x2d\xe0\xf2\x1c\x60\xa1\x33\x70\x51\x9f\xeb\xfd\xe5\x71\x28\xc8\x06\xd6\x5f\xe6\xbe\x26\xdb\x1d\x81\xfc\xde\xc0\x9e\x8d\xc0\xd9\x86\x40\x7a\x3e\x6b\x61\x28\x32\xf1\xd9\x81\xc0\xd5\x78\xa0\x50\x93\xc7\xe1\xdc\x23\xe0\x53\xf1\x0f\xf4\x0f\xfa\xfd\xd8\xff\x38\xdb\xea\xfe\x57\xe3\x3f\x08\xbd\x0f\x99\xf7\xf1\x43\xde\x83\x1f\xd0\xdc\x07\xf8\x7b\x2f\xd0\xea\xee\x77\x78\xbf\x3b\xa0\xd8\xff\xfc\xa6\x0f\x28\xce\x49\x0f\x47\x00\xc6\xe7\x80\xdb\x37\x81\x51\x21\xc0\x75\x1b\x60\xa2\x0e\xf7\x75\x98\xfe\x07\xeb\x39\xcc\x1b\x08\x9c\xeb\xa4\x38\xab\x02\x67\x37\x32\x3f\x28\xbf\x03\x63\x51\xb9\x4d\x80\xed\x4a\x40\x9e\x1e\xb0\xd7\x9a\x75\x3e\x32\xf6\x03\xf9\x7a\x40\xfe\x1b\x20\xb7\x0c\x28\x8d\xe5\x39\x52\xe1\xca\x7c\x00\xc5\x1c\xcd\x11\x78\x8e\xac\x03\x22\xe3\xff\x72\xfc\xcb\xfe\x57\xd5\xc1\xcb\x3a\x00\x3f\xe2\x3f\xfc\x8c\x07\x61\x02\x7c\x29\x01\x74\xd2\xb9\x47\x8f\x62\xff\xf7\x26\x99\xeb\xb7\x7f\xbf\x0a\x74\x4c\xe5\x77\xd3\xc3\x00\xb8\xf3\x14\xe8\x17\x0c\xdc\x70\x05\x86\x2e\x05\xae\xa4\x70\x5c\x28\xe6\xbd\xd5\x43\xe6\x75\x28\xe6\x47\x7e\x8a\xc0\xfd\xeb\x00\x1e\x53\x40\xea\x6c\xeb\x06\x02\xd9\x27\x58\xab\x3f\xa7\x88\xe3\xe1\xd4\x44\x20\x3d\x1e\xc8\xd6\x04\x72\x6b\x03\xa7\xdc\x80\xeb\x3e\xfc\xfd\x27\xcd\x81\x53\x1d\x81\xbf\x56\x7d\xc7\x83\x91\xf1\xff\xe5\xd5\xfd\xff\x29\xff\xe1\x9f\xef\xc6\xa1\x86\xdf\xea\x5f\xd8\xca\xba\x17\x0a\xfb\xa5\x15\xa0\xd1\x08\xf8\xa8\x0d\x68\x15\x30\x27\x47\x71\xf0\x78\x32\x13\x68\x73\x14\x28\xf7\x03\xba\x26\x03\x37\xcb\x80\x5e\xbb\x81\xd2\x97\xdc\xef\xe1\xd2\x15\x60\xac\x2e\x50\x18\x0d\x4c\xee\xce\xba\x0e\x76\x87\x80\xdc\x43\xc0\xa2\x61\x40\x76\x07\x40\x71\x8e\xca\x72\x07\xd6\xe6\x01\x8a\x5d\x68\xd8\x1a\xe0\x98\x3d\x10\x9b\x02\x1c\xef\x04\x28\x56\x32\xc5\xdf\x15\x31\x70\x32\x1e\xb8\xbe\x05\x38\x16\x00\x3c\x7e\x09\x64\xf9\x02\x5f\x66\x03\xa9\xef\xf8\x59\xe5\x3e\x20\xb2\xff\x51\x8f\xab\xbf\xf7\xad\x02\x0f\xfd\x11\xff\xa1\xca\x6f\xc1\xf7\x90\x79\x10\x4a\xd7\x80\xaf\xef\x80\x5a\x0d\x38\xf6\x94\x1e\x01\x6f\x3f\x00\xaa\xae\xc0\xf3\x4a\xa0\xa1\xc8\x55\x4d\xae\x01\xf7\x1c\x80\xb6\x1b\x80\x9b\xad\x00\xfd\x1d\xdc\xcf\xa4\x9f\xd0\xf3\x18\x66\xc0\xfa\x16\xe6\x15\x40\x8e\x33\x30\xdd\x18\x38\xb1\x9a\x71\xff\x63\x77\x00\x77\x1b\xe0\x48\x77\xc0\xaf\x07\x90\x11\x07\x6c\x39\x0d\x64\xd6\xe2\x3e\x52\x19\x31\x3c\x0e\xe9\x62\xbd\xc8\x34\x67\xae\x60\xc6\x6a\xe0\xd1\x2b\xfe\xfc\x79\xf1\x37\x1e\x90\x9c\xff\xaa\xfc\x77\xa8\x8e\x03\xcb\x7e\x6f\x08\x16\x78\xf8\xc0\x6f\xe3\xf0\x43\xfe\x87\x62\x4d\x5e\x0b\x7c\xc9\xe6\x55\xfe\x3f\x7a\x0f\x0f\x01\xa5\xee\xc0\x83\x78\x40\xd3\x96\xf9\x2f\xcd\x03\x80\xd2\x23\x5c\xdf\x5f\xfc\x19\xe8\x19\x04\x14\xb6\x00\x8c\xeb\x01\x67\x0e\x02\x66\x4a\x40\xd6\x3b\xc0\xc6\x54\xb1\xcb\x07\xe6\x35\x03\xd2\xa3\x59\x3f\x28\x65\x31\xe0\xdb\x9d\xb9\x82\x9b\x1d\xb9\x67\x52\x54\x0e\x90\x5c\x0e\xa4\x54\x02\x07\x23\x80\xd3\x11\x40\xb2\x3a\x50\x26\xf4\x2f\x9e\x2d\x03\x0e\xf7\xe2\x39\x2b\xfb\x1f\x2d\xe2\x21\x42\x9f\x6d\x88\x98\x27\xeb\xeb\x0b\xbf\x65\xfe\x43\x68\x75\x5c\xf8\x3f\xfe\xcb\xfc\x97\x20\xb6\x7f\xb1\xdb\x78\x2b\x54\x12\xff\xb8\x29\x76\x81\x82\xf7\x70\xd7\x18\x50\x36\x05\xae\x6b\x02\x8a\x7d\x61\xb1\xe8\x3b\x54\x34\x16\xe8\xe2\x0f\xe4\x65\x01\xfd\x36\x00\x27\x97\x02\xc3\x5f\x03\x47\x7b\x02\x93\x66\x30\x9f\xc3\x76\x3c\x70\x70\x2c\xb0\xd8\x13\x38\xf0\x19\xf0\xfc\x0c\x24\x8c\x02\x75\xfe\xde\xef\xc5\x73\x7a\x7f\x26\x70\xa8\x12\xd8\xff\x02\x38\x7d\x98\x7b\xc6\x94\xbd\x62\x8e\xc8\x6f\x6d\x98\x27\xf0\x35\xf3\x3b\x1d\x8c\x59\xd5\xdf\xbb\x8c\x83\xcb\x3c\x00\x9f\xe6\x6c\x6b\xf2\x01\xfe\x33\x0e\x35\x70\xff\x77\x72\xbf\x0f\x71\x1a\x78\x1a\xcb\xf6\xbe\x37\xdb\x5b\x82\x27\x72\xa5\x92\xe7\x4d\xd1\x4e\x40\xab\x17\x70\x66\x38\xa0\x1b\x01\x64\x5b\xb2\x0e\xc6\x11\x4d\xc0\x44\xf0\x3d\xc6\xa7\x03\x07\x57\xf2\xfa\x71\xe0\x2d\xf7\x45\x51\xec\x15\x3c\x75\x80\x3d\x8b\x80\x8d\x41\xac\x11\xb3\xcb\x98\xad\x22\x46\xe2\x1c\x78\xdd\xdc\x1d\x01\x28\x4e\x28\x8a\xd3\xe0\xb3\xee\x40\xf4\x0b\xe0\x6b\xc9\x7f\xfd\xaf\xe2\x7f\x88\xf7\x2d\xf3\x3e\x56\x8a\x79\xe0\x26\xfa\x0c\x2d\x2d\xa9\x31\x0e\xc2\xff\xaf\x02\xdf\xff\x8f\xee\xc7\x66\xb6\x8f\x34\x45\x1c\xd4\xd4\xbd\x10\x9f\xf3\xd4\x01\x95\x1c\x20\x7b\x2c\xd0\xf8\x1c\xaf\x63\x1d\xb4\x01\xc5\xa9\xa5\x0f\x55\x9b\x01\x23\x7b\x03\x7b\x53\x81\xa9\xbe\x40\x6c\x2a\xf3\xe7\xa2\x05\x9f\x72\x97\x04\x04\x8d\x03\x76\x0d\x05\x76\xe9\x00\x91\x3d\x80\x43\x8a\xbd\x55\x2a\x70\x3a\x06\xd8\xf1\x1b\x50\x76\x81\xf3\xde\x6f\x12\xb0\xad\x3b\xf0\x25\xfe\x9b\xff\x72\xbc\xcb\xef\x7b\x85\x41\x75\x7f\x97\x08\x9e\xad\xcc\x83\x70\x14\xfd\x07\xab\x78\x0f\x3f\xc3\xbd\x65\xdd\x0f\x71\xab\x78\x9f\xaf\x2f\x71\x3d\x99\xed\x65\x91\x2f\x0a\x05\x6f\x28\x5b\x54\xa1\x1d\x75\x64\x5e\x4c\xca\x76\xa0\xf9\x6b\x20\xb1\x08\xe8\xbe\x8a\xe7\xb1\xa9\x05\x10\x53\x02\x4c\x74\x06\x76\xfa\x03\x73\xde\x00\x3b\xd2\x01\x77\x4b\x60\x9b\x33\x10\xf8\x0a\x08\xb3\x04\x22\xcf\x31\xb7\x54\x71\x02\xdc\xbc\x02\xc8\x99\x09\x28\xce\x16\x57\x87\x03\xc1\xe6\xdc\x93\x6d\xc3\x0a\xe0\xdf\xdd\xdf\x78\x3f\x72\x9c\xcb\x7e\xd7\xe4\x7d\xcc\x13\xba\x6b\x32\xff\xc1\x4e\xec\x15\x7f\xc6\xff\x79\xb5\x50\xe4\x01\x2b\xb6\x0f\x04\x3b\xbe\xaa\xef\x4b\x9c\xf0\x5f\xdc\x36\xe6\x0a\xde\xc4\x71\xa1\xaa\x98\x2c\xf4\x32\xf6\x17\x00\x0d\xcd\x80\xb8\x46\x40\x3b\x45\xee\xdb\x05\xf4\xb3\x05\x22\x26\x03\xe3\x62\x81\xb0\x09\x7c\xfe\x08\x49\x01\x5c\xcb\x81\x8d\xb7\x80\x00\x67\x60\x7d\x3b\x20\xa2\x35\xb0\xce\x10\x48\x4c\x01\x02\xda\x01\xd9\xad\x99\x43\x75\xc5\x00\xf0\x8d\x01\x1e\xb7\x02\x7c\x3a\x00\xff\x38\x7d\x7b\xef\x32\xff\x43\xf6\xdb\x5e\xac\x17\x32\xdf\x63\xfa\x71\xb6\xd6\x62\xbd\x98\x2a\xf4\x95\x6a\xf2\x7f\xe4\xbe\x47\xcf\x04\xaf\xe5\xc1\x8a\x1a\xfe\x8b\xee\xc2\xe7\x45\xde\xcc\x7d\xc6\xf6\xc4\x34\xb6\x69\xe2\x14\x99\x20\x74\x85\x62\x0e\x02\x4a\xb1\x40\x64\x1b\xa0\xe9\x65\x20\x6c\x5a\x2d\x6b\x45\x5c\x6c\x7a\xa8\x3c\x6d\xd8\x49\x20\x68\x80\x6a\x9e\xf5\x7a\xc0\x7f\x7f\x9d\x0e\x8b\xee\x01\xbe\x1a\xea\xda\xbe\x15\xc0\xea\xd9\xea\x2e\xe1\x2d\x81\x55\x53\xd5\x3d\xf6\xc7\x00\xcb\x8f\xab\x8f\x3e\x61\x06\x2c\xb3\x53\x6f\x55\x3c\x1a\x58\xba\xa7\xce\xa3\x72\x4d\xc0\x25\xb4\xce\x95\x0f\x15\x80\x93\xb2\x1a\xf1\x41\x1c\xd4\x55\xa8\xae\x60\x66\x5f\x25\xc2\xb1\x6c\x66\xd6\xba\xaa\xb0\x93\x24\xd0\xfd\xf4\x44\xa1\xa3\x65\x2e\xf2\xc9\x38\xc1\x0b\x92\xf9\x3f\x95\x82\xf7\xf2\xd3\xbe\x3f\xc2\xff\x73\xdb\x41\x1e\x9f\x2a\x51\xa1\xfb\x84\xe3\x77\xd5\xa8\x1e\x3c\xb5\x8d\x3a\xdd\x3a\x1f\xf8\xac\x49\x38\x67\x4c\x9b\x06\x74\x6a\xde\xaa\xab\x45\xdf\x5b\xff\xb4\xd1\x44\xcd\xf3\x80\xff\x92\x26\x65\x1d\x36\x02\x5e\x51\xcd\x26\x0d\x2a\x00\x56\x9c\x69\x76\x6c\xe2\x96\x5a\xbb\x96\x4e\x6d\xde\x6b\xee\x67\xa5\x5c\xe7\xf1\xcd\xfb\x7a\xcc\xa9\xed\xec\x18\xd0\xbc\xe3\xe6\x7e\xb5\x3f\xcd\x9f\xd3\xec\x79\xdc\x54\xe5\x0e\x0e\x73\x9b\xe5\x65\x76\x57\x36\x9c\x33\xa6\xd9\xda\x73\xbb\x6a\x5f\xb3\x9b\xd1\xcc\xeb\xee\xa8\xda\x4b\x66\xbd\x68\xe6\xf3\xe6\xa8\xd2\xae\xe9\x2b\x9b\x6d\x93\xa4\x5a\x09\x53\x4a\x9a\xf4\x23\x3f\xc3\x1b\xd1\x38\x8c\xab\xd4\x22\xfd\xf6\x51\xbe\x9a\x8f\x15\x76\xf8\xb9\x7a\x6a\x0a\x3b\xac\x45\x1d\xba\x9f\x34\xed\xa2\x46\xf5\xf0\x3f\xe3\xff\x54\xf9\x3f\x98\x79\x30\x85\xf9\xcc\x07\x39\xa5\xab\x43\x23\x97\x29\xf1\x2d\xf3\xc1\x35\x2d\xe8\xde\x62\x8f\x01\xeb\xa2\x44\x9e\x6c\x4b\xf7\x6e\xa1\x93\xda\x53\xbd\xda\xda\x71\xed\x09\x27\x5d\xd5\xa4\x53\x8a\x62\x9f\xe2\xfa\x6b\x97\xeb\x2d\x1c\x6a\x79\x3b\xea\x74\x39\x60\xd8\x54\x65\xba\x43\x93\x2e\xff\x8e\xfa\xa2\x5a\x39\x6b\x4b\x97\xe7\x33\x27\xd5\x71\xb3\x39\xd8\x65\xe3\xd2\x2e\xea\x45\x53\xfa\x74\x69\xb7\xee\x98\xc6\x8b\x89\x4b\x3b\x1f\xd8\x39\xae\xee\xd1\x09\xb7\x3b\xd7\x39\x1c\x5d\xaf\xb3\x59\x87\x4e\xe1\xb9\x83\xea\x19\x8e\xb9\xd1\x69\xcc\xb5\xf2\xba\x67\x47\x47\x76\x1a\xfa\xbc\xb3\x46\xf9\xa8\x97\x9d\xa2\x25\x49\xbd\xfb\xd0\x65\x1d\x8c\x25\x49\x6d\x89\xc9\x8b\xb6\x4d\x24\x49\xe5\xc4\x80\x8a\x36\x3e\x92\xa4\x9c\xd5\x6f\xb9\x6e\xb0\x24\xd5\xce\xe8\xdb\xbd\x65\x91\x24\x29\x95\xf7\x3a\xd2\x62\xbd\x24\x29\xe9\xf7\x6a\xa4\x43\xfd\x01\x9e\xeb\x56\xf7\x5f\xe6\xff\x5c\x49\xa9\x43\xb7\x64\x05\x31\xda\xb4\x63\xc8\x4a\x6c\x49\x28\x4b\xba\x37\xfb\x99\xe0\xda\x99\x18\x74\x71\x9a\xdd\x09\x9f\xd9\x7e\xcc\x80\xf4\xcb\x37\x69\x32\x2a\x15\x90\xdb\x9f\x6e\x15\x57\xf6\x32\xa2\x5b\x55\x47\xdd\x81\x74\x1b\x3f\xbb\x8d\xf1\x5b\xed\xd1\x80\xf5\x69\xe3\xb1\x9d\xad\x95\x4f\x59\x24\x0e\xf2\x33\xb9\xa8\xde\x7e\xec\xe6\x41\x03\xa6\x28\xd7\x35\x1e\xfe\xef\x40\x17\x47\xf7\x7a\x5f\x06\x97\x0c\xd4\xf2\xd9\xaa\xb9\x6f\xe0\x86\x01\x7d\xc3\x3b\x34\x38\xdd\xbf\xbf\xd1\xca\x03\x45\x0d\xd5\xfa\x5c\xe9\x7f\x31\xeb\x8f\x06\xe7\x7a\xd7\xe9\xbf\xfa\xca\xc7\x06\xba\xbd\x06\xf5\x6f\xfd\xb8\x42\xb3\xbe\xe1\xd9\xfe\x17\xfe\xad\xac\xfb\xa5\x67\x6e\x9f\x74\x49\xd2\x68\xd1\xad\xdc\xe0\xbd\x24\xd5\xd1\xec\x92\xd4\xdd\x48\x92\x54\xaf\x74\x5e\xd8\x75\xb3\x24\xa9\x36\xed\x34\xbb\xb3\xad\x24\xa9\x6c\xec\xe8\xd8\x21\x46\x92\x94\x6f\xb5\xd3\x6f\xd7\x4c\x92\x6a\xdf\xad\x70\x15\xfe\xbf\x56\xa5\x7b\xb8\xcb\x4d\x1b\xd2\xfd\x73\xde\x89\x16\x54\xfd\x74\xfc\x48\x07\xba\xbf\x4d\x9f\xcd\x3a\x30\xfb\xbd\x7a\x13\xaa\x50\x93\xff\xb2\xd9\x71\x28\xdd\xdf\xfa\x1b\x0c\xa7\x1d\xd6\x0a\xfd\x51\x54\x75\xeb\xb4\x86\x75\x43\x66\x5c\x18\x4f\xf7\xb5\x13\xa2\xcc\xb5\xd4\x26\x03\xa3\x6c\xcc\x33\x5a\x8f\x55\xda\x69\x12\x35\xe1\x54\xdf\x2f\x6a\x0b\xfa\x37\x9e\xd0\x6b\x82\xaa\xba\x9b\xe1\x8b\xf1\x6f\x1c\xb6\x6b\x58\x76\x3f\x36\x7e\xab\x47\xaa\xc6\x8b\x2e\xbf\x8e\x37\xdd\xd2\xb9\xae\x52\xa7\xc6\x66\x1e\x7b\xe7\x69\x5c\x6f\xff\x9b\x59\xbf\xe3\x31\x1a\xae\xed\x2c\xc7\xb9\x14\x3f\x51\x3f\xd6\xb6\xc3\xb8\x65\x15\x3a\x75\x0e\xea\xcd\x1c\x37\xf4\x53\x4f\x35\xb5\xd6\x7f\x8e\xba\x2c\x49\x2a\x6e\xba\xef\x87\xee\x91\x24\xe5\xf0\x56\xb3\x4d\x12\x25\xa9\x76\x78\xcb\xa6\x03\xa6\x4b\x92\xd2\xb1\x16\xee\xfd\x06\x49\x92\x92\x71\x73\xb7\x3e\x21\x92\x54\x2b\xb8\xd9\x1d\x83\x6c\x49\xc2\xbd\x2a\xfe\x53\xc5\x2f\x74\x3b\xf6\x8d\xff\xd3\x8d\xfa\x20\xa4\x26\xf7\xa3\x5b\xf4\x03\xc6\xcc\x07\x89\x29\x19\x46\xf7\x6c\xdb\xac\x46\x10\x5a\x10\x5c\x31\x8e\x78\x23\x7e\x99\x16\x94\x19\x57\x69\x4d\xa2\xf8\x58\x94\x34\x95\xc6\xc5\xd6\xd3\x8a\xf4\x79\x2d\xfe\x9a\x46\x78\xa6\x71\xec\x2c\xba\x5d\xeb\x63\x66\x5b\xde\x64\x27\xd0\xcd\x64\xd6\xfd\xee\x92\xf2\xb1\x0e\xb9\xb6\xad\x47\xe5\xaa\x98\xe8\x0d\xb4\x35\xb7\x1d\xa7\x32\xb9\xd5\x69\xdb\x16\xcb\x6b\xab\xa0\x85\xb2\x6d\xab\x60\x5f\xe5\x36\xcd\x96\xce\xca\x8d\x5b\xa9\x94\xd8\xac\xb3\x6d\xcf\xa3\x33\x81\xa6\x1d\x67\xe9\x5f\xc8\x05\x1a\x77\x9e\xb9\xe1\xa1\x0f\xd0\xc8\x71\x46\xde\x9f\xb6\x80\x96\x83\x4d\x37\x45\x9c\xd7\xcb\xb5\xa4\xbe\x20\x75\x67\x4f\x88\xe2\x33\xd4\x98\xad\x64\x6d\x47\x10\xce\xa9\xb6\x69\xd8\x58\x3a\x53\x35\x37\xb5\x57\xd8\x92\x2e\xba\x74\x2b\x28\xeb\xff\x9c\x38\xdb\x87\xba\x4c\xa4\xbe\x36\xa1\x5b\xf2\x03\xaf\x46\x52\x3c\xc4\x2c\x1a\x47\x01\xbf\x2d\xdd\x9c\xd0\xb3\x8d\x11\x93\xc9\xfa\x57\x30\x3f\x62\xc5\xcb\x99\x84\x5f\x2c\x71\xb0\xa5\x19\x66\x5f\x61\x4f\xf9\x72\x4a\x3a\xdf\x2e\x8e\xd8\x3f\x9f\xf2\xa8\xa1\x8d\x13\xa1\x8f\xad\x77\x39\x0f\x52\x2c\x2d\xcd\xae\x38\xbb\x77\x38\x8a\x90\xc6\xa3\x9c\xdf\x0c\xa9\x07\x68\xe9\x3a\xbf\xb5\x89\x05\xea\xa7\x3a\x87\xbb\xea\x02\xea\x8f\x9d\xfb\x04\xb6\x05\xd4\xac\x17\xaf\x8e\x1a\x05\x28\x97\x2c\xae\x97\x9a\x01\xd4\xd6\x5c\xd4\xf0\xec\x3e\xa0\xd6\x06\xc7\xf7\x77\xe8\x86\xd5\x51\xa5\x92\xf4\xe1\xe7\x15\x48\x02\x69\x62\x3b\x5d\xf4\x79\xb0\xaa\xcb\x76\x92\xe8\xdf\x6d\x2e\xf0\x2c\x33\xaa\x63\xcc\xd7\xeb\x41\xcf\x79\x52\x63\x10\x3d\x5f\x4a\xc5\x48\x9a\xf7\x09\x2e\xe3\xe8\xb6\x38\xea\x12\xa3\xcf\x11\xb3\x98\xdf\xb4\xc9\x6a\x3a\xbd\xff\x80\x30\x3b\xca\x17\x1e\x05\x73\x68\xa7\xe0\xa2\xce\x7d\x44\xe6\xbb\x33\x6e\x6c\xf3\xa7\x13\xc5\x8b\xd9\x59\xe6\xc1\x0c\xdc\xe3\x4a\xe3\xd3\x69\xcb\x72\xda\x61\xd4\x73\xf7\xa4\x9d\x8b\xca\xd2\xd5\x66\x8a\xf3\x19\x0e\xae\x9e\xd6\x97\xce\x74\xab\x35\x2c\xe9\x97\x3c\xef\x3a\x52\x67\x36\x8f\x1c\x3f\x5a\xa3\x3d\xb4\x19\x31\xf7\xa8\x77\x98\x33\x8f\x57\x1e\x29\xa4\xaf\x30\xb8\x49\x78\xc6\x72\x93\x17\x34\x93\xdd\x44\xbf\x03\x67\xc1\xf3\x98\xdf\x80\xed\x1c\x51\xb7\x6a\x2b\xea\x17\xa7\x0b\x7c\xcf\x9a\xf0\x9d\x93\x5a\x26\xc4\x94\x4e\xcf\xe7\x79\x9c\x58\xc8\xfd\xaf\x62\x25\x7e\xcf\xdb\xaf\xcf\x24\xd4\x6c\xf3\x9c\xd9\x74\x8b\xbc\x4e\x7b\x1e\xad\x83\x9e\xc6\xcc\x0b\x71\x9d\xb3\x88\xfc\x5b\x60\xb2\x84\xea\x15\x67\xe9\x2e\xa3\xfc\x21\xf3\x60\x86\xff\xea\x41\x7d\x24\x7a\x5b\x78\x53\x7c\xb4\xb2\xf4\x25\xfc\x43\xa9\x68\x9d\xd8\x69\xad\x9b\xf1\x0b\x21\x1a\xeb\x0e\xf4\xd9\xc6\xff\x82\x45\x2f\xb6\xf3\x59\x79\xe9\x83\x0f\x29\x17\x05\xbc\x60\xa4\xd1\xff\x41\x02\xad\x40\x01\xb3\x4f\x11\xee\xe7\x67\xcf\x95\x93\x6b\x3c\x9f\x11\x32\xe7\x3b\xfa\x6b\x53\x1e\x37\xf6\xd3\x4d\xdc\xd3\x3b\x8b\x78\x58\x28\xea\x57\xe7\x0b\x7c\xc7\x9e\xea\x19\xd3\xa3\xc7\xd3\xbf\x9a\xd8\x7b\x12\x3d\x57\xdc\xc4\x19\x14\xbf\xdb\xaf\xb0\xca\x7e\x48\xc5\x3c\xba\xc7\x5f\x57\xe0\x44\x84\x99\xd5\x5b\x96\x10\xae\xe7\xde\x6f\x29\xad\xb8\x4e\xe7\xdc\x09\x6e\x99\x63\xb6\x8a\x50\xe8\xa9\xe5\xab\xa9\x7f\x84\xd9\x0c\x5f\xda\x57\x18\x3b\xfb\xd1\xef\x76\xbd\xba\x8e\x50\xab\xc6\x29\x1b\x8a\x21\x7e\x99\xed\x96\x8d\xbf\x50\xa4\x6d\x09\x61\xdd\x83\x2d\x0e\xe3\x29\x52\x42\x0c\x78\x46\x85\xbc\x5a\x3d\x98\x3f\x6f\xd5\x66\xbb\x9f\x3b\x54\xd5\xcb\xa2\xb3\xce\xa6\x29\x97\xc9\xef\x8d\x57\x1f\x51\xa5\x70\x70\xc2\x67\xe6\xc5\xf4\x90\xaa\xf1\x3f\xe4\x71\x71\x3f\x21\x55\xe3\x0d\x39\xd3\xbe\x2b\xf1\x84\x0d\xed\x90\x64\x1d\xa0\x1d\xa6\x73\x09\x4d\xda\x62\xe2\x48\xf9\x21\x68\xd4\x12\xe2\xc7\xfa\xcc\x70\x27\x3c\x62\xb9\x2f\xeb\xe0\x38\xf7\xf6\xa4\xfd\x82\xfd\x57\x6f\x5a\x5f\xa7\x3d\x63\xbc\xdc\xbc\x82\xd5\xd7\x87\x87\x05\xd1\xce\xb4\x9f\x01\xe3\xe6\xed\xcf\x86\xd0\xef\x68\xe9\x86\x0b\x26\xf3\x4e\x2d\xb6\x91\x1f\x7e\x61\xe6\xc5\x6c\xee\x54\x17\xb9\x6d\xdc\x75\xb2\x2b\x66\x13\x63\x29\x32\x7a\x15\xed\xed\x76\xc4\x6f\x9e\xc2\x4f\x18\x4f\x2b\xf0\x8e\x5e\x47\xa8\x92\x36\xe2\x50\x31\x65\xe0\x6d\xc7\x1e\x12\xb2\xbc\xed\xd4\x07\xe2\x0d\xc9\xbc\x98\x8d\x86\x6c\xd7\xae\x65\xbb\x46\xe4\x0d\xaf\xe5\xdf\x8f\x8f\xdc\x07\xac\x4a\x07\x48\x77\x09\xfd\xab\x1b\x74\xdd\x09\xa7\xf1\x73\x5d\x41\xf9\xc2\xa3\x37\xf3\x03\xdc\xd6\xb0\x2e\xcc\x7c\x17\x3f\xd6\xc3\x69\xb1\x8e\x50\x39\xab\xd4\x0d\x84\x7f\x8e\x6b\xc1\x7e\x1b\x97\x85\x10\x1a\xd7\xf3\xaf\x70\xc2\x77\xdb\xd4\xde\x41\x5e\x69\x0c\x8e\x12\x0a\x85\x71\xa2\x73\x65\xbc\x55\x53\xc2\xb3\xe2\xd3\x59\xff\x21\xde\x6a\x0c\xcd\xa8\xf8\x9e\x9c\x71\xe3\xc3\x59\xa1\x26\xde\x72\xc3\x06\x7e\x63\xb1\xc4\xd8\x89\xb3\x49\xa7\xf9\x10\x37\xb3\x88\x90\xc7\xdd\xfb\x39\x5f\xee\x9e\x50\x49\x91\x1a\x55\xc0\x38\xef\xb6\x74\xb6\x32\x2f\x26\x58\xd4\xf9\x07\x0a\x3c\x7c\xed\x24\x85\x95\xfd\x0f\x9f\xee\x4a\xb3\x6e\x93\xed\x2a\x8a\xe7\x80\xf8\xd5\x74\xa2\xf4\x16\x3c\x2f\xb7\x16\xfe\xa4\xda\xb2\x28\x32\x88\xfe\x2e\xeb\xe1\x4c\x9b\xb6\x99\xd6\x09\x8b\x58\xe6\xc3\x8c\xc8\xdb\x4e\xec\x25\xa3\x39\x91\x84\xca\x77\x33\x63\x5d\x9c\xe6\x66\xcc\x17\x50\x29\xda\x5b\xce\xfe\x27\x89\x7a\xff\x83\xab\x7e\x21\x85\xa9\xa4\x15\x3d\xe9\xcc\x9f\x34\x71\x14\x9d\x71\x13\xe7\xcc\x24\xdc\x32\xc9\x6c\x29\xed\xd0\x93\x4a\xd6\xb1\xd5\x65\x86\x4d\xe2\xef\x29\xf4\x86\x12\x9d\xf3\x28\x8f\x24\xea\xdc\xa0\xc8\x4e\x78\xfd\x8a\x3c\xd8\x5f\x29\x51\x9d\x74\xac\xc8\x07\x32\x2f\x46\xe6\x0b\x55\xf1\x62\x48\x3f\x68\xbb\xa3\xe8\x07\x56\xc1\xec\x9b\x75\x4f\x7c\x29\xfb\xf8\x7c\x5a\x4b\x78\xf4\xf2\x5f\x83\x28\x4b\x7d\xc7\x03\xa2\x79\x31\x2b\x26\x9c\xd0\x34\x2b\x03\xce\xe2\x66\x09\x3b\x69\xde\x0c\x79\x1c\x43\xd1\xdb\xd7\x97\xfb\x8a\x74\x7c\xbb\x8f\xf8\x14\x4d\x04\x3f\xa2\x56\xf2\x21\xd1\xe7\xa0\x8a\x0f\xd3\xfa\x17\x5a\x1f\xd2\xbb\xf4\xa0\x19\x96\x76\x79\x04\x29\x6c\xa4\xeb\x4e\x27\x7f\x33\xd6\xba\xd0\xc8\x67\xfc\x1a\xf0\x8e\xed\x0e\xb2\xe9\x25\x07\xe9\x5f\x4e\x5f\x71\x86\x76\x24\xe9\x1d\xca\x88\xd1\x9a\xe6\xcc\x3a\x4a\x29\x06\xff\x9e\xc5\x77\xba\x28\x7b\x04\xde\x1d\x2b\xd6\x8b\x2a\x5e\x0c\xf1\x0c\xe5\x7e\x60\x1b\x74\x03\x68\x7e\xf8\x9a\xaf\xa7\xf8\xf7\xbc\xb2\x99\xf8\x83\xb2\x1e\x8e\x93\xb4\x8d\xd8\x59\x32\x0f\x66\xda\x0b\xee\xbe\x60\xf1\x57\x34\x65\xa5\x31\xce\xec\xb7\x49\x09\xf3\x9f\x0c\xfd\x12\xe8\xe9\xdb\xe9\x30\x1f\xa6\x51\x68\xea\x14\xe1\xb7\xe8\x7b\x51\xc5\x87\xb1\x64\x5d\x94\xac\xcd\xdd\x8f\xd1\xe7\xce\xc3\x89\xcf\x92\xe5\x6a\x4d\xfe\x66\x8f\x71\xa6\x33\x6c\xf6\x04\x3f\xe2\x51\x65\x8d\xd8\x46\xf9\x20\xcb\x37\x91\x22\x31\x7b\x71\x0e\x3d\x71\xd6\xd0\xab\xa4\xd4\x72\xf2\xc5\x53\x62\xac\x9c\x50\xfd\x44\xa9\x3e\x53\xf0\x1e\x92\x45\x7f\x9c\xff\xf0\x62\x88\x07\x10\x2c\xfc\x5e\x1b\xb5\x99\xb2\x8b\xcc\x03\x72\x2f\x0b\xa7\xf5\xcd\xb9\xf3\x4e\x7a\xfe\x79\x4f\xb8\x2f\xd6\xac\xee\xbb\xc9\x0f\x9b\xbc\x7d\xb4\xca\x4d\x70\x3d\x40\x3b\xf3\x11\xa3\x93\x68\xf5\x33\x1a\x76\x88\xd6\xdd\x1e\x3e\x69\x54\x91\xa1\x37\x8d\xfd\x6e\xb8\x88\xf5\x04\x80\x6c\x31\x1e\xf9\x5e\xc2\x1a\xe8\x50\xc6\xc9\xef\xae\x4f\x33\x34\xdf\x7e\x08\x65\x92\x02\xbb\xa9\x34\x23\x0b\x36\x2f\xa2\x1d\x6d\xbe\x9b\xf7\x42\xfe\xfb\x56\x3a\x13\xe6\x57\xec\x17\x96\xcf\xfc\xf9\x29\x97\x69\xfc\xf2\x7a\x96\xd3\xf8\xe4\x69\xff\x49\xdf\xcf\x16\xfc\x20\x59\x3f\x27\x5d\xe8\x81\xc8\x7c\x21\xe6\x51\xad\x73\x0b\x25\x7f\xbc\x75\x99\x55\xb0\x6a\x78\x24\xbd\xcf\x9a\x3c\x20\xfb\x0a\xe6\x47\xcc\x6c\x79\x80\x6e\xa0\xe4\xfe\x58\xe3\xf6\x1c\xa6\xac\x34\xb4\x5f\x1a\xe5\xc5\x7e\x06\xcc\x87\xe9\xfa\xcb\x51\xca\xea\xad\x5e\x65\xd3\x4d\x55\x95\x3e\x8e\x4f\xbe\xb8\xe9\xac\xe2\xc3\xe8\xe8\x50\x3e\xb8\xd8\xa9\x2b\x8d\xcc\x79\x57\x13\x5a\x37\x8b\x2d\x26\xd1\x2f\x16\x4b\xbc\x33\xbb\x18\xb4\x9a\xf2\x5d\x71\x62\x28\xf9\x5d\x3c\x64\x2f\xf1\x25\x2f\x46\x1c\xa5\x37\x70\x71\xf6\xf9\xa3\xfc\xbb\xf7\xeb\xb2\x7d\x4b\x2b\x78\x61\xfe\x57\x9a\x6f\x72\x3f\x9c\xec\x03\x6c\x8f\x8b\x3e\x74\x99\xd4\xef\x78\x8d\xf5\xf6\x52\x7c\xcf\x03\x1a\x10\x4f\xa3\x2a\xf3\x80\x16\x5a\x26\x50\x7e\xb4\x1b\xc2\x6a\x45\x36\x66\x29\x74\x1e\xb3\xd4\x4d\xa3\x79\x3e\x26\xee\x88\x0f\xcf\x07\xd6\xcf\xe8\x23\x78\x21\x5d\x74\x4f\xd3\xef\xb6\xf0\xca\xa7\xa7\xac\x87\xb3\xd3\xaa\xfb\x5f\x6a\x23\x6c\x80\x16\x29\x63\x94\xf5\xea\x44\x6f\xa0\x6c\x37\xf3\x1f\x4a\x4b\x58\xe1\xaf\x2c\x86\x77\x6e\x65\x23\x58\xd1\xec\x9a\xff\x26\xfa\xde\xb5\x49\xf1\x34\x4e\xa5\xeb\xd2\xe9\x4e\xac\x74\x45\xa1\x2e\xdb\xdb\xb4\xee\x5e\x7d\xf1\x8a\x56\xb2\x2b\x62\x9d\xb8\xa0\xcb\x77\x8f\xb2\x7e\x4e\xd5\xb8\x10\x2f\x48\xe6\x01\xad\x7c\xb5\x87\x58\x36\x32\x0f\xc8\xc9\xf0\x20\xfd\xdd\xbe\x32\x99\x58\xbe\x33\x8a\x52\x49\xad\xcb\xca\x80\xfb\x06\x99\x9f\x3a\x41\x8a\xbd\x23\x83\xd9\xef\x41\xb1\xdc\x47\xa7\xd7\x1a\xe6\x47\x74\xca\x2d\xa4\xfc\xd1\x7c\xc4\x05\xe2\x89\xd4\xfd\x50\x2c\xd6\xcb\x6b\xfe\x6c\xe5\x1b\x8e\x3b\x5e\x5a\x87\x41\x08\x40\x07\xf2\xf7\x4e\xb9\x31\xad\xc0\x77\xed\x2c\xd8\x36\xb3\xa7\x93\xcd\xbd\x09\x2b\x68\x3d\xb8\xfb\x8a\x3b\xfb\xdd\xdb\xcd\x6f\xee\xce\xd3\x14\xca\xa7\x77\x7a\xe5\xd1\x5d\xe1\xdd\xac\x5b\x74\xa7\x7c\x77\xee\x2b\x9a\x89\x37\x7a\x7e\xa4\x1a\xc3\x52\xa1\xa3\x74\x49\xf0\x63\xce\x8f\x61\x5b\x40\xbc\x73\x8f\x02\xde\x9d\x2d\x3b\xc0\x71\xbe\xa4\x22\x85\xde\xdf\xbc\x17\xe9\x94\xff\xed\xb5\x8f\x91\x3f\xd3\xb4\xf9\x7d\x5b\x7a\x65\xd1\xf9\x4a\xd6\xc5\x19\x7e\x22\x9f\xf2\xe7\x20\xdd\x22\x3a\xe5\xf4\xfc\x95\xdf\x77\x87\x91\x97\x28\x4e\x64\x7d\x1c\xf5\x4d\xd7\x3e\xb1\xdf\x55\x7c\x98\xae\x6c\x1f\xd9\x6b\xd2\x09\xa4\xa2\xa8\x3d\xe5\x87\x47\x15\xdc\x67\xef\x51\x05\x33\xbe\x1f\x87\xd9\xd2\x08\x3e\xda\xc8\xcc\xf5\xc7\x61\x41\x86\xfc\xdf\x77\xd1\x52\xf7\xe8\x41\x32\x65\xb4\x8a\x2f\xa7\x89\xd1\x55\xe1\x7a\x95\x2a\x00\x7e\xf5\x79\xdc\x5f\x61\x1f\x66\xfc\x45\x3b\x64\xb9\x9f\xd4\x8d\x95\x6c\x4b\x45\x5f\xb9\xcb\xfd\xe4\x7b\xfb\x9f\xe9\x5f\x54\xe3\x3d\x34\x00\xba\x5c\xfb\xd6\xd7\xe0\xb5\x31\xa0\xd8\xf7\x3c\xd7\x05\xfa\x1f\x06\x1e\x2d\x02\x8c\x8f\x03\xf7\xe6\x01\x23\x9f\x01\x37\x23\x18\xdf\x55\xec\xfd\xa7\xfa\x02\x25\x02\xd7\xbc\xf8\x19\x58\xd8\x08\x28\xb4\xe0\xfa\xd5\x82\x87\x80\x62\xdf\x5c\xa0\x04\x04\x56\x02\xa7\x3f\x02\xa1\xce\xdf\x74\xee\xf3\x74\xf8\xde\xfe\x4c\x22\x70\x6c\x23\xe3\x02\xe7\x5a\x30\xc6\x77\x4d\x71\x4e\x74\x07\x9e\x69\x00\x67\x4b\x80\xcf\x99\xdf\xfa\x80\xfc\x2f\xfd\x83\x9a\xf8\xff\x8f\xfc\xfe\xde\x7e\x3d\x0c\xb4\x5e\x0b\xfc\x73\x0d\x68\x3f\xe2\x9b\xce\xc1\xf3\xdb\x40\x8f\x1e\xc0\xe3\x9b\x3c\x1e\xe5\xe6\xc0\x00\x6d\xe0\xee\x27\x60\x48\x28\x70\xe3\x29\x60\x66\xc1\x7d\x0d\x26\xc5\x00\xc5\x7b\x81\x59\x9e\xc0\xf9\x81\xc0\xfc\xcd\x40\x5e\x37\xc0\xb9\x1b\x90\xdb\x96\xeb\xdc\x73\xd5\x15\x39\x1b\x38\x35\x01\x08\x8d\x06\x4e\xc5\x31\xa6\x71\x26\x96\x31\xbe\xd3\xbe\x8c\x89\xe5\xe9\x29\x32\x23\x70\xe6\x32\xd7\x90\x2b\xec\xb3\x57\x40\xde\x23\xe0\x6b\xcc\xff\xd6\x3f\xa8\x89\xff\xef\xfc\xf0\x6d\x1c\xaa\xf4\x2f\xe4\x3e\x20\x7f\x54\xb7\x8a\xbf\x7f\xac\x00\x74\xb7\x00\xaf\x16\x03\x6d\x43\x81\xe7\x77\xb9\xcf\x83\x8c\xf7\xdf\x5f\xcc\x38\xcd\xad\x46\x8c\x5b\x95\xa6\x32\x2f\xa6\x58\x62\x5e\x4c\xd1\x20\xee\xfb\x90\x1f\xca\xba\x20\xb9\x9a\x80\xb3\x2b\x70\xc6\x08\xf0\x68\x0c\x64\x0f\x67\xec\xed\xe4\x17\x3e\x81\x29\xb2\x8e\x62\x1c\x4e\x3e\xe5\xba\xff\xac\xb6\x5c\xdb\xae\xd8\x2b\x5c\x78\x00\xe4\x84\x00\xb7\xfb\x03\xd9\xd9\x1c\x93\xa7\x13\x01\x29\xec\x1b\x0f\xa6\x4a\xff\x7f\xf9\x8f\xfd\xff\x3f\xf1\x1f\xbe\xb3\x32\xef\xe1\x43\x32\xd0\xe4\x29\x50\xd9\x10\xd0\xdd\xcd\xfa\x37\x1d\x0a\x80\x5f\xbd\x80\xce\x6f\x80\xdb\x9e\x80\x41\x7d\xee\xef\x30\xd0\x1d\x28\x99\x0c\x0c\xbd\x0c\x5c\xd0\xe7\xf9\x51\x60\xc7\xf3\x23\xdf\x19\xb0\x37\x65\x3f\x15\xeb\xe1\xc9\x33\xc0\xf2\x72\xd6\xba\x50\x8c\xc3\xd1\x4a\x60\xf3\x75\xe0\x68\x57\xc6\xf5\x8e\x5f\x66\x1c\xe7\xc8\x4b\xe0\xe8\x6b\x20\xab\x19\x50\xdc\x05\x38\xb9\x0e\xb8\xdb\x88\xf1\xff\xe7\x75\xbf\xc5\x81\xac\xff\x2f\xd7\xff\x57\xe1\xbf\x35\xfa\x20\xfc\x90\xff\xf0\x93\x3e\x20\x0a\xfb\xa5\x15\xdb\x77\x97\x58\xef\x41\xe6\x3d\xc8\x3a\x07\xbf\x6a\x00\xed\x27\x71\x8c\x76\xb3\x00\xae\x3d\x64\xbc\xbf\x78\x3a\x60\x1c\x04\x28\xce\x40\x63\x74\x38\x7e\x27\xcd\xe0\xf7\x39\x4b\xe1\xff\x02\x60\x61\x4b\xe0\x98\x03\xb0\x2c\x0e\xc8\x30\x05\x7c\x4c\x81\x0c\x77\xc6\xac\x52\x7c\x80\x1d\x9b\x80\x4c\x4b\x8e\x87\x4c\x43\xe0\x64\x6d\x20\xd3\x8f\x39\x51\x99\x9f\x81\x3b\xb5\x81\x23\x69\xac\xc9\x23\xf3\x60\x6a\xe2\xff\x55\xf8\xaf\xf8\x2c\xeb\x20\xfc\x88\xff\xf0\xbd\xfe\xc5\xd7\x10\x40\x79\x8e\xf8\x9c\xce\xbc\x07\xb5\xc6\x9c\x17\x6a\xcf\x00\x9e\x9b\x02\x75\x2d\x18\xef\xd6\xde\xcd\x78\xb7\x62\x3c\x6e\xcc\x01\xda\x56\x30\xd6\xd4\x33\x8c\x77\x09\x8a\xbc\x9f\xef\x07\x0c\x0f\x06\x4e\xe9\x71\x3f\xa9\x63\x83\x00\x9b\x93\xc0\x11\x1b\x60\x9e\x13\x90\xb2\x1e\x70\x19\xc8\xf8\xb7\xe2\x44\x7b\x30\x86\x75\x94\x0e\x6d\x04\x22\xf4\x80\x43\x09\x8c\x7d\x1f\xba\x0e\x1c\x19\xca\x98\xef\xd9\xe1\x40\xb2\x3b\x70\x6b\x16\xff\xff\x2f\x12\x80\xc3\x4f\x99\xab\x50\xb3\x0f\x86\xec\xbf\xfc\xde\x65\xbf\xab\x78\x00\xdf\xf1\x1f\x64\xfe\x87\xd2\x35\x40\xd2\xe1\xba\xec\xaf\x5c\x6e\x85\x3f\xc5\x69\xa8\x26\xef\xe1\xa1\x09\xa0\xa9\xc5\xba\x2f\x3a\xd6\xdf\xfa\x3c\x5c\xbc\xca\x75\xdc\x67\x0d\x00\xc3\x34\xe0\x54\x31\x60\xd2\x96\xe7\x81\x59\x77\xee\x63\x31\x55\x1b\x48\x59\x04\xcc\x51\x02\x0e\x86\x02\x8b\xf6\x02\x09\x82\x17\x93\x30\x18\x08\xdc\x0c\xec\x5f\xa1\x38\x31\x03\x49\x7d\x81\x03\xfa\x40\xc2\x7b\xe0\x88\x19\xc7\xc6\x79\x0b\xe0\xd0\x10\xe0\x5e\x32\x70\xb0\x14\xa8\x1c\x0c\x24\xea\x8a\xfc\x5f\xb7\xba\xff\x35\xf9\x1f\xb2\xdf\x3f\xe5\x3f\x08\xde\x87\xec\xff\x5f\xf5\xd9\xca\xbc\x87\x17\xe2\x54\xf0\x1f\xde\x83\x0f\x50\xd7\x00\xb8\xa4\x04\x34\x6e\x0e\x14\xed\x07\xf4\x56\x01\x79\x8e\x40\x57\x0f\xe0\x44\x2e\x60\xd4\x5a\x71\xda\x01\x46\x98\x01\x87\x8d\x00\xf3\x2c\xe0\xa0\x2f\xcf\x8f\xfd\x4f\x98\x3f\xb7\x47\x9f\x31\xca\x3d\x9d\x81\x75\x1a\x8a\xd3\x0f\xb0\xed\x10\x10\xbf\x1e\xd8\xe7\x04\xc4\x1b\x02\x99\xd3\x80\x7d\xa6\xc0\xf9\x38\x60\xcf\x11\xe0\x6e\x18\xb0\x4f\x0b\x78\x93\x0b\xec\xbe\x06\x7c\x3d\xf5\x5f\xff\xe5\xf7\x1e\x10\x56\xdd\x6f\x19\x0f\xf7\xec\xf8\x03\xfe\x83\xcf\x37\xbc\xf3\xbd\x0a\xdb\x2a\xde\x83\x18\x1f\xb9\xdf\xc7\x4d\x51\xdf\xfe\xbd\xde\x81\xc6\x6e\x20\x0f\x40\xd3\x70\x20\xfb\x25\xd0\xae\x00\x38\x7a\x0b\x30\x38\x07\xa4\x37\x00\x06\x47\x00\x49\x33\x00\xb3\x5f\x19\xf7\xb7\x4e\x03\xf6\x24\x03\x0b\xf6\x00\xbb\xd7\x30\xde\x1d\x9d\x02\xf8\x57\x02\xd1\x16\x40\xb8\x21\x10\x7d\x15\xd8\x9b\x0d\x44\xed\x00\x8e\x4c\x04\xa2\xbe\x02\xe7\xc4\x5a\x72\xf7\x15\xe7\xd2\x97\x0f\x45\xfe\xf3\xfb\xe6\x7f\x4d\xfe\x87\x97\x73\x75\x3c\xdc\xdd\xfb\x07\xfc\x07\x45\x8e\xd9\x25\xe6\x81\x83\x88\x83\x1a\xba\x1f\x4f\x04\x3b\xfe\x8e\xd0\xbf\x90\x75\x2f\x8a\x05\x0e\x56\xb0\x0f\xa8\x75\x1c\xc8\xb1\x50\x9c\x25\x38\xff\x2b\xe6\x49\x4a\x19\xcf\x13\x45\x3c\x2b\xf2\xe7\x1e\x03\xee\x3f\x17\x6b\xce\x7a\x63\xd1\x13\x00\xfb\x8d\x40\xe4\x29\xc0\xad\x0d\x10\x39\x0e\xf0\x73\x04\x22\x9e\x02\x5b\xf5\x80\xed\xb7\x80\x3d\xeb\xb9\xcf\xcf\x51\x5f\x20\xa2\x0b\x70\x3e\x0d\x88\x38\x0a\xdc\x8f\xe6\xf7\xaf\x58\xd3\x43\x4f\x56\xf7\xbf\x8a\xff\x21\xde\xb7\xbb\xd8\x4f\xd5\xec\xff\xe1\xf4\xd7\xff\xc0\xfd\x05\xee\x2d\xeb\x7e\x3c\x14\x3c\x88\xdb\x1f\x6a\xc4\xc1\x23\xb6\xa7\x85\x2e\x88\x62\xcf\x57\x2b\x97\xf5\x5c\x14\xeb\x4b\xe2\x64\xa0\x75\x00\xb0\xd7\x04\xe8\x69\x02\xc4\x4e\x04\x86\x58\x02\x91\xcf\x00\xf3\x48\x20\x42\x19\xb0\xf3\x01\xc2\x0a\xb9\xbf\x58\xc8\x2b\xd6\x51\xda\x9c\x0e\x84\x6a\x01\x9b\x7d\x79\xec\x36\x99\x03\x99\x66\x3c\xcf\x0b\x83\x81\xe0\x14\xe0\x6e\x7d\xee\xa9\xf3\x36\x58\xf0\x5f\x12\x01\xef\x15\xec\x57\x15\xff\xa3\x86\xdf\xb2\xee\x85\x83\x4b\x75\x1e\x44\x4d\xdc\xff\x8d\xe8\x7b\xf1\x9b\x50\x4d\xad\xe8\x29\xf2\x81\xc8\x13\xd7\x05\x1f\xe6\xa2\xb8\x45\xe1\x6e\xb4\x40\xf6\x41\xb6\x19\xa2\x9b\xa4\x62\x1f\xab\x5c\x09\xec\x79\x00\x34\x09\x64\x8d\xb0\x4e\xb1\x40\xa4\x05\x30\x20\x19\x08\xdf\xcd\x98\xfb\xe6\x3f\x81\xe9\xed\x80\x8d\x11\x80\x53\x04\xb0\xa1\x04\xf0\x69\x03\xac\x0f\x00\x42\x4d\x81\x75\x8a\xdc\xa0\x04\x04\x3c\x03\x32\x1f\xf2\x9c\x39\xe7\x0f\xf8\x65\x71\x4f\x2e\xc5\x98\xbd\x36\xfe\x16\xf7\xee\xf3\x6a\xf8\xdd\xa1\xba\xbf\x33\x16\xb2\x9d\x56\x4f\xf0\x1f\x04\x77\xfc\xef\x93\x35\xe6\x81\x78\xef\x8f\x45\x1e\xb8\x27\x78\x01\xd7\xe5\xbe\x2f\xa2\xab\x6c\xa1\x18\x8f\x53\x82\x1f\x71\x4c\x74\xdd\x95\xf9\x1f\x7b\xc5\x7f\x8f\x2a\x00\x34\xf6\x03\xdb\x33\x81\x96\x05\xc0\x96\xad\x40\xcf\xad\xfc\x1e\x87\x55\x00\x81\x5f\x80\xa9\x5f\x80\x80\x16\xc0\x82\x2f\xc0\x1a\x53\xc0\xd3\x8b\x7b\xef\x85\xf4\x00\x3c\x77\xb3\x56\xca\xaa\x5f\x81\x0c\x4f\x60\xb9\x2b\x9f\x3d\xdc\x95\x81\x9b\x7d\x80\x65\x2f\x80\x97\x5b\xf8\xac\x22\x7d\xc7\xf3\x99\x2d\xb4\x5e\xa6\x7f\xad\xee\xef\x14\x31\x3e\x16\xa2\x4f\xe3\x78\xa1\x4f\x57\xb3\xef\x8d\xcc\x7f\xb9\x3b\xbc\xfa\xfb\x97\xbb\x4c\x17\xd6\xab\xe1\xbf\xd0\x8d\x49\x11\xfc\x88\x84\x7e\x6c\x63\x0e\xb1\x0d\x17\xb7\x4e\x9b\xeb\x02\x8d\x06\x01\x41\x3a\x40\xc7\x8b\x80\x7f\x02\x30\xc8\x1f\xf0\xde\x03\x4c\x54\x01\x3c\xfa\x02\x0e\x31\xc0\x8a\x66\xc0\xca\x37\xdc\xcf\x27\xb8\x3b\xe0\xb2\x09\x88\x71\x00\x16\x5f\x03\x52\x97\x00\x4e\x09\x40\x7e\x6d\x60\x61\x1f\xe0\xfa\x4d\x60\x7e\x02\xf0\xfb\x39\x60\xae\xc8\x87\xb3\xc4\x78\x4c\x19\xce\x56\xe6\x7d\x98\x89\x7c\x38\x4a\x68\x25\x8e\xd8\xce\x76\xa8\xe8\x25\x2a\xe7\x81\xdf\x84\x7d\xf8\x91\xad\x7c\x3b\x50\x3c\x5d\xf8\x1f\x2c\xfc\x17\xfc\xa0\x13\xa2\xfb\x74\xba\x50\x9b\x4d\xd2\x55\xa2\xf3\xf5\xee\xdd\xaa\xa3\x41\x3a\xe0\xaa\x94\x49\x37\x5e\x55\xa3\xfb\xea\x35\xea\xea\xde\x6a\xdb\x00\x8f\x5d\xf5\x8e\xb7\x7a\x00\x2c\x3b\xd9\x60\x60\x1f\x75\x60\x89\xbb\x96\xf6\xd8\x4d\x80\x63\x8c\xf6\x3c\x5b\x6b\x60\x5e\x70\xa3\x2e\x6e\xbe\x80\x7d\xbd\x46\x16\x81\x6d\x01\xdb\xf7\x8d\x1a\xed\x54\x07\x66\x76\x68\x34\xe2\x90\x2b\x30\xed\x89\x76\xf9\xe9\xc6\x80\xf5\x6d\x6d\xd3\xab\x37\x81\xa9\xcf\xb5\xd5\x9e\x44\x03\x93\xff\xd4\xf2\xff\x77\x00\x30\xe1\x62\x83\x2e\x0a\xbf\xc6\x2c\xaf\x47\x3a\x28\xc3\xc6\xa8\x9b\x28\xec\xe0\x02\x95\x1b\x0a\x3b\x28\xb1\x16\xdd\xc3\xf4\x7b\x26\xec\x06\x1e\x87\x67\xe1\xc2\xff\x3f\xab\xfb\x5f\x72\xaf\x86\xff\xba\xdc\x3d\xf6\x48\x6d\x35\x9a\x49\xa9\x46\xf5\x89\x11\xb4\xbf\xa0\x31\xdd\xdf\xef\xda\xc3\x7d\x72\xc2\x55\x7e\xa1\xfb\x85\x0d\xa9\xcd\xe9\x56\xc4\x2b\xab\x15\xfd\xdd\x25\x49\x97\xea\x1b\x17\x3a\xe9\xb5\xd6\x79\x06\xcc\xfe\xa0\xf7\xb9\xeb\x0c\xa5\xb4\x19\xfd\xdb\x86\x0d\x99\x52\x3b\x6f\x6a\x54\xdb\x27\x53\xbd\x95\xaf\x4d\xfc\xb3\xed\x75\xa7\x81\x2a\xd7\xc6\x3f\x6f\xbb\xd5\xe7\x90\x6a\xfa\x98\x4f\x6d\x8d\xc2\x06\xa8\x4d\x18\xf9\x55\x2f\x7d\x7f\x3b\xb5\xd8\xe1\x0b\xf4\x3a\x9e\xa8\xaf\xb6\x7f\xa8\x41\x9b\xc7\xc5\x83\xd5\x3c\x4c\x8f\xb4\x59\x5b\x5e\x4f\xf5\xce\xe0\xf5\x6d\xbc\xfe\x1c\xa6\x52\x3c\x68\x44\x6b\x5d\x49\x52\x1e\xda\xf7\x7e\xab\x36\x92\x54\xbb\x61\xaf\x5b\xcd\x33\x24\xa9\xd6\x31\x03\xa9\x31\xe9\xfa\xeb\xf7\xd2\x22\x3d\xda\x6e\x6b\x1a\x12\xfe\xdd\x35\x4c\x93\xea\x7a\x7f\xca\x7f\x09\x66\x9d\x9b\x2c\xe3\x7a\xf4\x39\xbd\xac\x91\x19\xbf\x77\x56\x61\x8f\x9f\xa6\x47\x55\x40\x3b\xef\x74\xa4\x7a\xae\x50\xe7\xce\xb4\xc3\x08\x7c\xa5\x4f\xb7\x65\x5e\xce\x3d\x69\xc7\xe5\xea\xd8\x83\x22\xc6\xbe\xc2\x90\x32\x8f\x55\xdb\x3e\xed\x34\x82\x00\x0b\xdd\x3e\x5f\xf5\x46\x29\x4d\x18\xbd\xb5\x8f\x53\xff\x7a\x2a\x39\x43\x3d\xfa\x44\x4d\x58\xa0\xb6\x64\xd0\xb5\x3e\xdd\xec\xcb\xea\x3c\xee\x77\xa6\xf7\x95\x95\x31\x1a\x7d\x7b\x79\xf5\xee\x1d\xfc\xb0\x6e\x9d\x9e\xdb\x7b\x59\xc4\xda\xd4\xed\xd4\xbd\x8e\xe1\x83\x8c\x22\x8d\x0f\xdd\xf4\x0c\xd7\x9d\x5b\xa6\xb1\xba\x4b\xa1\xe1\xd4\xbb\xb6\xea\x89\x9d\xdf\x1a\x0e\x7b\x13\x55\xc7\xa6\x73\x23\x83\x76\x92\xa4\x1a\xd9\xee\x8d\xbe\x91\x24\x29\x97\xe9\xa5\x74\x8e\x95\xa4\xda\xd7\xdb\xd8\xb5\xef\x25\x49\xb5\xdb\xb7\x5e\xa1\xf7\x45\x92\x94\x72\x5b\xbd\x6a\x6d\x2b\x49\x4a\x3d\x5a\x36\xd0\x6d\x26\x49\xb5\xb6\xde\x3e\x58\xdd\xff\xfc\xbf\x39\x01\x64\x19\x33\xef\x27\x63\x4b\x2b\x9a\x09\x49\x01\xed\xa8\x5e\x57\xe6\xbf\x44\x54\x70\xf5\x6d\x48\x45\x5f\xfa\x1c\x18\xd0\x97\xd0\xc5\xd5\x47\x8d\x88\x1f\xe1\xaa\x33\x98\x50\xb6\xb9\x3b\x4d\x69\x66\x4d\x19\x36\x8c\xea\xb9\x86\xcf\x1d\x45\x78\xaa\x49\xc3\xd1\x7e\xbf\x14\x00\x7d\xbc\x47\x2b\xf7\xf8\xa2\x3c\xab\xc7\xec\x51\x4f\x47\xd9\xa8\x64\x76\x09\x1a\xf5\x76\xe6\x5b\xd5\xb1\x1d\x26\x8f\x0a\x74\x8b\x53\x5d\xae\xf7\x70\x54\x83\xa0\xab\xaa\x93\x5a\x1b\x8d\xfc\x1c\xdd\x43\xe5\x53\xab\x11\x23\xbd\x53\x8b\x54\xec\x5b\x1c\x18\x91\x5a\x10\xa6\xec\xde\x7c\xc7\x08\xff\x5b\xa1\xb5\x97\x34\xbb\x3c\x62\xc7\xcb\xf3\xb5\xbe\x34\x33\x1a\x4e\xf7\x6f\x3a\x13\x07\x13\x7e\xab\x35\x6b\x00\xe1\x57\x0d\x3a\xf4\xa5\x7b\xc8\xfa\xe1\x06\xd4\xaf\xbb\xde\xbe\x1e\xb7\x14\xb6\x6e\x3d\x7d\xc2\xc7\xaf\x9a\x29\x53\x86\x2b\xd4\xd4\xa2\xe7\x97\xf9\x3f\x19\x41\x9d\x29\x42\x12\x72\xf4\x35\x79\xde\xf7\xa7\x4c\x19\x39\x7c\x90\x25\xfb\x3f\x98\x78\x1f\x6b\x1b\x0e\x25\xe6\xb5\xe7\xab\x31\x74\x2b\xea\xea\xcc\xb8\xf9\x7c\x77\x33\xc2\x3f\xa7\xb9\x59\xd0\x2d\xfc\x58\x5d\xd6\x47\xe9\x3f\x70\x2a\xad\x28\x9d\xd3\xac\x37\x6b\x6a\x02\x7a\x0b\xad\x3d\x3a\xe6\x2a\xa9\xb5\x5c\x61\xa3\x67\x9a\x5d\xeb\x61\xb3\x0d\xd3\xba\xd8\x4c\x04\x1a\x5f\xb1\x39\xb4\x64\x12\xa0\x6d\x65\x63\x1c\xf0\x1e\x68\x90\x66\x1d\x15\x19\x04\xd4\x6f\x63\x75\xf1\xb0\x01\x50\xb7\x85\x55\xf3\x5c\x3d\x40\x7d\xcc\xd4\x01\xd7\xfe\x04\xd4\x32\xa7\x0c\xf9\xfd\x26\xa0\x52\x34\xd9\x5b\xe1\x57\xed\xa5\x13\x36\x29\x6c\x2d\xa5\x31\x4b\x25\xbe\x41\xec\xc7\x76\x70\x21\x5b\x63\x6b\xb2\xd3\x07\x90\xee\x7d\x41\x2a\xc7\x79\x8e\x33\xeb\xc1\xa4\x3f\xe8\x41\xfe\x24\x7a\xb1\xfe\xcd\xee\x8f\x83\x88\x07\xb6\xe3\xc3\x08\xba\x6f\x0e\x9d\x3d\x86\xbe\x17\xe8\x3f\x9e\x76\x1a\x9e\xd9\xe6\xb4\x03\x5d\xfa\x65\x32\x65\xda\xf9\x51\x53\x89\x71\x3c\xab\x84\xbb\x90\x5b\xf4\x9a\x49\xf3\x65\x70\x8c\x1d\xcd\xab\x6e\xe3\xed\x69\x85\x6a\xd4\x7c\xfe\x28\x25\x5b\xa0\xfe\xde\xf9\x8b\x5b\xc5\x03\xea\xed\xe7\x87\xf5\x9f\x01\x28\xef\x9b\x1f\x6e\xf1\x09\xc0\xe1\xf9\xbe\x0b\x88\x71\x35\xbf\x81\x0f\x29\x3f\xcf\x9b\xc6\x08\xf1\xdc\x91\x09\x74\x0f\xef\xd0\x3f\x9b\x18\x2b\xf6\x2f\xaf\xd2\x88\xcf\x59\xf2\x84\x22\xd6\x2e\xf5\x1f\x8a\xe4\xe9\xa2\x9f\xfb\x54\x81\xf7\x4e\x14\x9f\xcd\x76\xb2\x1d\x2d\xf4\x31\x46\xde\x54\xd8\xac\x57\x9d\xf2\x38\xfe\x7b\x13\x4a\x94\x90\xcc\xfc\x9f\xd8\xd3\xc3\x69\xa7\x18\x71\x65\x1c\xc5\x77\x68\xe5\x04\x52\xa3\x08\x74\x9f\x4c\xb7\xa4\x5e\x85\xd6\xa2\xff\xc3\x0c\xca\x83\x0b\x4f\xdb\x76\x23\xff\x03\x66\x53\xfc\x4c\x59\xc0\x7d\x64\x46\x7a\xcf\xa7\x75\xa3\x0f\x1c\x29\xde\xda\x36\x5f\x42\x2b\xad\xda\x0b\xb7\x16\x3c\x23\x97\x99\x37\x21\xdc\xc5\xed\x55\x2f\xba\x87\x75\x0b\x1f\x4f\x6b\xb7\x9b\x34\x97\xf6\xae\x6e\x9d\x57\x93\xce\xc7\x52\xdd\x50\x3a\xeb\xb8\x96\xef\x23\x9c\xca\xd5\xf5\x04\x21\xa4\x4b\xf4\x2f\x11\x92\xb6\xa4\xe9\x23\xda\x0b\x2e\xee\xf5\x17\xad\x58\x0b\x84\xce\xc3\x1c\xd1\xff\x64\x66\x7b\xb6\xd6\x42\x17\x63\x8a\xd0\xbb\xb7\xcc\x50\xd8\x74\x5d\xa3\x0d\x9c\xff\x46\x10\xca\x18\xaf\xc4\xd5\xf6\x3b\x0b\xcc\x29\xee\xe5\x3e\x50\x41\x33\xa6\xd1\xba\xe8\x5b\x69\x47\xa3\xef\x6e\x35\x87\x6e\xd9\x17\x25\xcc\xa7\x5b\x63\x87\x34\x47\xca\x17\xd6\x3a\x4e\x94\x2f\xcc\xae\x3b\x53\x3c\x99\x26\x2c\x25\xfe\x87\x7e\x87\x65\x14\x0f\x4d\x83\x57\x0a\x5c\xcf\x9b\xde\x32\x6a\x7b\x6f\x6a\x4a\x33\xd1\x5b\x97\xf1\x6e\x6f\x5d\x1e\x79\xef\x29\x73\x08\x49\xf2\xba\xb0\x92\x46\x72\x75\xf2\x26\x8a\xb0\xd5\xab\xe3\xe8\x0d\x78\xba\x64\x9e\xe6\x19\x79\x91\x18\x36\xab\xf2\xee\x91\xf2\xcc\x4a\xa3\x4a\xaa\x20\x77\xf7\x94\xbe\xe3\x37\x00\x0b\x5e\xb3\x75\x10\xba\x29\x76\x16\x6c\x67\xd1\xfd\xf5\xc1\x3d\xc3\x09\x2d\x8f\x95\xcc\x45\x1f\x28\xae\x26\xde\xaa\x6b\x43\xb7\xff\xeb\x75\xb8\x1f\x94\x9f\xd2\x5c\xaa\xd3\x5c\xd9\x6b\x61\x4b\xfa\xf5\x0c\x27\x3a\x51\xcc\x4d\x5a\x42\xf7\xfc\xd3\x82\xb9\x0b\xbf\xa5\xe8\x9f\x33\x22\x76\x15\xcd\xaf\xbe\xbf\x79\x10\xef\xa3\x63\xb6\x37\xed\xcc\x1b\x2e\xf7\x5b\xcd\xe3\x10\x28\x76\xe6\x81\xe1\xbf\x10\xce\x1d\xd8\xd4\xe0\x39\xff\x9d\xdf\x44\x50\xa8\x1d\xd5\xad\x06\x1a\xf3\x2f\x06\x46\x6e\xa0\x88\x5c\x77\x3a\x86\xfc\x5e\x9b\x92\x46\x4c\xa6\x80\x17\x05\x54\x59\xea\xaf\x7f\x9b\x98\x04\xfe\x06\x2f\xaa\xf1\x1c\x3c\x04\x5f\x6a\x99\xd0\x41\x71\x11\x3c\xa1\x45\x02\xff\x5f\x48\x36\xbe\x7c\xe2\x65\xe1\x3f\x8d\xc3\xd6\x12\x3b\xc2\x19\xd6\x3b\x3b\xd0\xa8\xaf\xd1\x58\x40\x79\xde\xa3\x74\x31\xc5\xbb\xcb\x6b\x17\x8a\x93\x05\xa6\x4b\xa9\xca\xd6\x6e\xdd\x0a\xca\x13\x56\x67\x3d\xe9\x71\xc7\x5e\xf1\xa2\xb7\x38\x58\xc9\x87\xc6\xc9\xa0\x09\xeb\x67\xb4\x6e\x1f\x48\x6f\x53\x7d\xe1\x26\xb1\x43\x0d\x15\x7d\x0f\xb6\x14\xfc\x42\x71\x1c\x6a\x6b\x40\x23\x1c\xb2\x71\x14\xd5\x32\x84\x3a\xb3\x42\x4d\xc8\x69\x1e\xe1\xd0\x26\x81\x54\x0c\x12\xda\x8a\x3b\xcd\x6c\x99\x97\x4c\x88\xe4\xe6\x1e\xa7\x09\xe8\xd8\x74\xf1\x3a\xd5\x08\x6c\x4a\xff\x9d\x32\x58\xb0\xb9\x44\x6f\x48\xe6\x7f\xf8\x88\xf9\xe1\x29\x7a\xe9\x89\x7e\x4a\x58\xf6\x49\x61\x77\xfd\x3d\x93\x9e\x47\xd6\x01\xda\x98\xb1\xf0\x05\x8f\x2a\xab\xd4\x78\x6a\xb8\x52\x1c\x2c\xed\xe3\x4e\x3c\x27\xa7\x08\x0f\x8a\x9f\xd9\xe9\x9e\x34\x4f\xa6\x39\xf8\x52\x9d\xae\xc5\x6b\x7f\xda\x27\x8d\xc8\x5b\x4b\xf9\xc6\x68\x04\xf7\x15\xe9\x7a\x28\x98\xf0\xee\x66\x75\xb6\x10\x1e\xa6\xac\x15\x2e\x3a\xf8\xed\x0c\x15\xd6\x8d\x57\xe8\x5d\xcd\x98\xb1\x16\x39\x7b\x24\xeb\xc5\x4c\xe3\x4c\xbb\xd3\x69\xc9\x25\xb6\xac\xf3\xbf\xd3\x29\x92\xf0\xab\xc8\xc7\x07\x69\xef\x1f\x59\x3f\x87\x10\xb8\x88\x0a\xc6\xbb\x23\xfc\x9e\xd2\x8c\x8b\x28\xfe\x97\x14\xd2\x64\x5e\x4c\xb0\xe0\xc5\xac\x13\xf1\xe0\x27\xea\x7b\xbd\x2d\x15\x36\x5c\x9a\x4f\xfb\xa1\xcd\xf6\x4b\x32\x39\xca\x5c\x89\x95\xe1\xd5\x72\x39\x7d\x5e\xae\xef\x41\x79\xc3\xd9\xde\x9b\x58\x09\x0e\x69\x6b\x88\x07\x35\xeb\x26\xf7\x85\x9a\x1c\xb7\x8e\xfc\x1d\x9f\xcb\x3c\x98\x21\xe9\xcc\x8f\xe8\x6d\xc8\xbc\x90\x8e\x26\xdb\xe8\xa4\xd1\xd8\x60\x7b\x3a\xfb\xbd\x4b\xc4\x41\xbc\x36\x48\x69\x24\x7e\x55\x13\x66\x26\xb9\x76\xa7\x33\x4e\x5c\x1a\x33\x51\xe3\x1e\x5b\xa7\xf1\x67\x66\xa2\xc5\xfb\xaf\xa1\xcc\x1b\x3f\x29\x9c\xe6\xcb\x5e\xa3\x44\xf2\x3b\xae\xd7\x49\x7a\xc2\x58\x73\xbe\x0b\x89\x9d\xfd\x2b\xe9\x06\xc4\x6e\xfc\x93\x98\xa0\x51\x7f\xb1\xbf\xdb\xd2\xb9\xce\xbb\x8a\x17\x93\xc0\x76\x3d\xad\xa3\x21\x06\x4b\x2a\xbe\x9f\x85\xbe\xc7\x56\xd1\x38\xac\x8c\xf7\x22\x9c\xd7\xa5\xd0\x8f\xa2\xce\x31\x3a\x90\x14\xf8\xe6\x28\xad\xa7\x79\x34\x4d\x9b\xab\xac\xcd\xcb\xb8\x6f\xd0\x48\xb7\x70\x3a\x79\xc9\xba\x38\x06\x9d\x22\x29\x6a\xdb\x7a\x31\x0a\xa9\x15\x13\x2b\x4e\x30\xfb\xc5\x8d\x67\xd2\x44\x56\xb4\x4b\x2c\x6c\x42\xff\x47\x92\xae\x3e\x8d\x70\xe2\xef\x43\x69\xfd\x48\x2a\xe1\x99\x9a\xe4\xc2\x9d\xda\x92\x5c\xb8\xde\x3f\xc9\x63\xab\x13\x7f\x7f\x2f\x33\xdc\x9c\x8f\xd2\xbf\x70\x40\x2a\xea\xa4\xb0\x09\x07\xf8\x8c\x7c\xa0\xd9\x0b\x52\x74\x90\x79\x0e\xb1\x02\xd7\xac\xe2\xc5\x88\x79\x12\x46\x3c\x00\xb9\x1f\x98\xbf\x01\xab\xf2\x78\x14\xf8\xd1\xec\x5a\xde\x33\x88\xd6\xc3\xc5\x6a\x1b\x69\x95\xaa\xd2\xc3\x39\xca\xef\x79\xea\xf4\x6d\xb4\x8e\x8c\xbb\xba\x83\x78\x20\x43\x2f\x30\xda\xd8\xef\x63\x34\x8d\xba\xfe\xd0\x58\xb2\x2d\xb7\xec\xa5\xb7\x58\xdf\xfe\x80\x60\xf2\x27\x0b\xc5\xdf\xf4\x78\xd0\x2f\xa4\x97\x34\xa5\xf1\x48\xd7\xd5\xa7\x91\xcd\x18\x3b\x84\x99\xcc\xc5\x53\x09\x9f\x4d\xdf\xc2\x1d\xfa\xd2\xa7\x7a\x52\x24\x65\x4c\x0c\xa1\x15\x2b\x63\x6d\x3c\xad\x48\xe9\x2b\x32\xe8\x6c\x98\xbe\xb0\x90\x90\xd6\x54\xf5\x5b\xc6\xfc\xf7\x4a\x7a\xb2\xe4\x72\xc6\xb9\x65\xfe\xc7\x7f\x78\x31\xc4\xc7\x0f\x78\xcc\x7c\xc6\xd5\x0b\xd6\x12\xee\xba\xbc\x78\x3d\xdd\x30\xb8\xe8\x6c\x26\x1e\xd8\x82\x51\x61\x74\x7e\x98\x8d\x6d\x94\x2f\xa7\x15\xec\xa4\xf9\x60\xa9\xcb\x7c\xaf\x31\x3a\xcc\x8f\x30\x39\x19\x4f\x51\xde\x77\xc6\x7e\xe2\x67\x77\xda\x9d\x48\xd9\xbb\xc5\x5e\xd6\x13\xd0\xc8\x4c\xd5\x61\xff\x33\x05\x5f\xee\xa4\xb8\xf9\xcc\xea\xd8\x98\x18\x53\x27\xdd\xba\xd1\x09\xed\xa4\x96\x29\xad\xa3\x27\x9f\x4c\xa2\x95\x2a\xeb\x12\xf3\x28\xb3\x1c\x99\x89\x79\xb2\x90\xf5\x72\xb2\x46\xc4\x30\x03\x3e\x32\x8d\xe6\x47\x56\x58\x01\x2b\x82\x6d\x2c\xa5\x37\x72\xfc\x29\xf3\x83\x8e\x87\x7d\xa6\xf1\x4b\x17\x71\x70\x48\xf0\xa5\xe4\x71\xe1\xfe\x52\x32\x0f\xc8\x43\x7b\x33\xbd\x85\xa5\xff\x6e\xa5\xb7\xe4\xf4\x64\x1b\xdd\x34\xc9\x3c\xa0\x59\xcd\xa3\x88\x85\x31\xf5\x49\x2c\xbd\x85\xf1\xe9\xac\x03\x34\xda\x88\xfb\x06\xc9\xba\x38\x86\x05\xdc\x1f\xab\x83\x36\xdf\x48\x34\xd5\x49\x27\xf4\x5e\xed\xcd\x51\xc1\x0f\x93\xfb\x45\xe5\x5a\x71\x7e\xc8\x4d\x6e\x4c\x11\x92\x7f\xa1\x2b\xc5\x7f\xde\x05\x13\xca\xb8\xf9\xa1\x96\xb4\xe3\xca\xf7\x73\x20\xff\xf2\xb7\x2e\x27\xa6\x52\xfe\x4b\x56\xe6\xca\x4b\x8f\x26\xde\x68\xbe\x41\x0a\xad\xf4\x79\xbe\xb9\xb4\x72\x9d\x79\x5b\x4a\x2b\x54\x5e\x4f\xee\xb8\x71\x66\xc8\x27\x5a\x6f\xb3\xf6\xb2\xdf\xb2\x7e\x4e\x9a\xd0\xd9\x62\xbe\x90\xa7\x31\xc7\xb9\x7b\x59\x04\xfd\x8a\x4b\xff\x9d\xb4\x2a\x2d\x74\x8e\xa1\xfd\xdf\x9c\x9e\x1c\xdf\xd3\x0a\xd8\xef\x49\x9f\x0e\xd0\x2e\x65\x3c\x58\x37\x63\x58\x73\xee\x4a\x62\x54\x2f\x9d\x7e\xa7\xbb\x77\x3a\x3d\x45\xdb\x0a\xe6\x09\x34\xb6\xe7\xf7\xae\xba\x2d\x5b\x54\x74\x9d\x35\x65\x2b\xf3\x41\x2e\x94\xe8\x10\x23\xe4\x82\x5f\xe7\x36\xfc\xf7\x41\xcc\x6b\xe9\xc8\xcc\xde\xf3\x75\x79\xc7\x76\x71\xb7\x3b\x65\xf4\x0b\xeb\x02\xe9\xee\xeb\x62\x10\xf3\xe6\x64\x9d\x98\x0b\xba\xd9\xf4\xe4\xe7\xdf\x94\xd0\xfc\xba\xa0\xf7\x84\x78\x41\x45\x6f\x3e\x12\xcf\xa4\x40\x9c\x2b\xaa\xfa\x04\x09\x3e\x04\xf3\x85\xfe\x17\x0f\x68\x96\x2e\xcf\x6b\x2b\x83\x24\xca\x62\x16\x09\x87\xa9\x0f\xeb\x58\x2b\xe6\x01\xc9\xba\x38\xfd\x1b\x30\xff\xa9\x7b\x4a\x16\xcd\x4a\x3d\xc1\x03\x6a\xac\x94\x47\x6f\x5b\xf5\x71\x61\x0d\x3e\xd0\x65\x11\x1f\x57\xc2\xb9\x4f\xd0\x95\x57\x1d\x29\xb2\x4a\x1a\x0c\xa0\x3c\x78\xb5\xd2\x8c\x22\xeb\xaa\x3d\x33\x5c\xaf\x3a\xbb\xd2\xcc\xba\x9a\xe8\x4f\xfc\xb8\xd2\x32\x66\xea\x95\xea\x25\xd0\x13\x5c\x6d\x7d\x92\x66\xf4\xd5\xa2\x2b\xf4\xc4\x57\xb6\xdf\xa7\xf3\x47\x49\xd8\x3b\x8a\x87\xcb\xb5\xd8\xef\x73\x82\x37\x59\xbd\x7f\x92\xdc\x17\x6c\xf1\xa1\x38\xba\x99\x5f\xf0\x6b\x02\xe5\x05\xbb\xcb\xac\x8b\x33\xa3\x79\x0a\xed\x03\xa7\xae\x4a\xa7\x68\x35\x4b\x13\xba\x38\xbb\x8f\x71\x3f\x9c\x97\x1c\xe7\x7d\xba\x9f\xa2\xef\x77\x4b\xcb\xa3\xfd\x46\x6b\xbf\xb3\x94\xfd\x1a\x59\x14\xd1\x2e\x59\xb5\x75\xb1\xc8\x0b\x25\xa2\xf2\xe7\x86\x18\x87\xdb\xe6\x5a\xb4\xd3\xbe\xd5\xae\x3d\xfd\x4b\x37\x2b\xfa\x53\xe4\xdd\xa9\x1c\x47\x27\x96\x3b\x17\x66\xd2\x8e\xec\xee\x32\xde\x47\xdc\xb2\x63\xe8\xe4\x5e\xef\xed\x74\x72\xbd\x5d\xce\xca\x4d\xb7\x46\x1c\x63\x5d\x98\x07\xe7\x88\x67\x77\x53\xef\x2e\x31\x6f\x6e\x36\x78\x41\x27\xe2\x6b\x89\x9f\x69\x07\x53\x5d\x0f\x45\x1e\x17\xe9\x7f\xf0\x1f\xfe\x2e\x05\x3a\x5c\xe3\xfa\xad\xce\xce\xc0\xef\x45\xcc\x7f\xa8\xc2\xfb\x0b\x81\xde\x09\x0a\x6f\x80\x01\x6a\x40\x59\x08\x30\x24\x87\xfb\x1a\x98\x59\x70\x9d\xff\x14\xc5\x6c\xa8\xc7\x75\xdd\xb9\x8f\x19\xf7\x3f\x55\x02\x2c\xf2\x03\xb2\x97\x00\xcb\xb3\x80\x13\x21\x80\x4f\x02\x70\xb2\x25\xb0\x69\x01\x70\xcc\x80\x31\x8b\x93\x4b\xb9\xe6\xef\x64\x2f\xc6\x02\xb2\x5e\x31\x07\xe4\x54\x36\x50\x6a\x02\xe4\x4c\x06\x1e\x86\x70\x8d\xeb\x87\x32\x20\xeb\x03\x20\x99\xfe\x40\xff\x40\xf5\x27\xfc\x87\x7f\xbf\xe1\x38\x35\xf5\x2f\x5a\xd7\xe2\x5e\x2b\x2d\xf2\xbe\xf1\x1e\x5e\x1b\x00\x7a\xe5\xc0\x73\x6f\xa0\x5d\x36\xf0\xa8\x37\xa0\x3f\x81\xef\xb3\x14\xe7\xa3\x9b\x7a\x40\xbf\x4a\xe6\xa8\x0c\xa1\xbe\xce\xc0\xe8\x61\x40\x7e\x39\x30\x21\x1d\xc8\xaf\x04\xa6\xc5\x03\xa7\x5c\x80\xd9\x96\x02\xf7\xbf\xc6\x75\x8e\x8a\xe9\x90\x99\xc4\x3a\x10\x47\x5a\x02\x1b\x74\x19\x07\xde\x9e\x05\x64\x56\x02\x7b\xbc\x80\xa3\xf5\x81\xd4\xb1\xdf\xea\xfe\x33\x53\x78\x8c\x15\xd9\xa7\x3c\x11\xc8\x6a\x02\xbc\x4d\x62\x8e\x84\x24\xf4\xef\x15\x36\x31\xee\x27\xf8\xff\x0f\xf8\x0f\x3f\xd2\xbf\x90\x79\x0f\xef\x4c\x81\x5f\xf6\x7c\xeb\xef\x20\xeb\x1c\x3c\xbc\xca\xfc\x87\xbb\xcb\x98\x27\x74\xcd\x9c\xf5\xca\x2f\x07\x03\x46\x77\xbf\xd5\xf9\xe7\x57\x30\xff\x41\xf1\xfe\x15\x71\x91\xfd\x06\xb0\x6d\x03\x1c\x37\x67\x5c\x33\xd3\x90\xb1\xb5\x0c\x6d\xc0\x2b\x0f\x48\x0e\x00\xd6\x3d\x01\x92\xed\x81\xb0\x76\xc0\x61\x3d\x20\xc6\xf4\x5b\xdd\x7f\x66\x3c\xf7\xfb\x57\xcc\xce\x12\x27\xe0\xa8\x36\x8f\xc3\x51\x73\xe0\xdd\x67\x20\xa3\x06\x0f\xe8\xa7\xfc\x07\x99\x07\x60\xfe\x5f\xfe\xc3\xf7\x3c\x88\x4f\xb9\xdc\x9f\xbf\xb2\x05\xa0\xa5\x0b\xbc\xd0\xf9\xc6\x7b\x68\x72\x0d\x78\x50\xc9\xf5\xdb\x37\x37\x02\x1d\xc3\x81\x6b\xf9\x80\x81\xe9\x37\xbd\x83\x73\x46\x80\x49\x09\x90\xaf\x0f\x8c\xbd\x06\xe4\x7c\x06\x2c\x4b\x80\x93\x9d\x80\x99\xb7\x81\xcc\x2f\xc0\xbc\x32\x20\xb9\x36\xe0\x3c\x1d\x48\xba\xc5\xb5\xd7\x87\x44\x6d\x76\x62\x1a\x10\xda\x12\x48\xc8\x61\x0c\xe8\x50\x7d\xe0\xf0\x30\xae\x0f\x3f\x1d\xc3\xbb\xb1\xcb\x8e\x40\xda\x58\xe0\xd7\x0d\x40\xea\x7e\xe0\x6d\xe5\x77\x3c\x98\x0b\x3f\xf1\x5f\xd4\x6d\x86\xa8\xfc\x9c\xff\xa0\xb0\x9f\x5f\x03\x1a\xa6\xc0\xa7\xe1\x40\x5d\x3d\xa0\x72\x38\xd7\x27\x3f\xd7\x65\x5b\xc5\x7b\x50\x07\x9a\x1e\xe5\x79\xa0\xe7\x08\x5c\xa9\x00\x3a\x96\x03\xe7\xdb\x01\x06\xc6\x40\xfe\x3a\x60\xe0\x55\xe0\xd4\x4b\x60\xd8\x2e\xe0\x84\x15\x30\xde\x8b\x75\x1c\xac\x7c\x80\xe4\x5a\xc0\xec\xdd\x40\xd2\x50\xc0\x69\x3f\x90\x60\x06\xac\xe8\x0e\xec\xdf\x00\xf8\xc5\x03\xfb\xce\x02\x21\x95\xc0\xfe\x60\xae\x81\x3e\xf0\x2f\x70\xf8\x01\x90\x78\x95\xb9\x24\x07\x6f\x03\x25\x03\x80\xa4\x15\x7c\xd7\x7e\xc8\x1c\x78\xbf\x0b\x48\x54\xad\x8e\xff\xff\xa7\x0f\x86\x66\x75\xff\xd7\xae\xfb\x8e\xff\xf0\x1d\xff\x43\xee\xf3\x21\xe3\xfd\x8a\xbc\x50\xcb\x17\xf8\xed\x12\xa0\xfc\x82\x75\x90\x54\x5b\x03\xb7\x7a\x00\x5a\x09\x40\xe9\x03\xe0\x97\x16\xcc\x59\x6a\x33\x93\x75\x4f\xba\x95\xb1\x56\x43\x1f\xc5\xee\x25\x1c\x30\x4d\x02\xd2\x83\x81\x31\x5a\x40\x8a\x19\x30\xb9\x3e\x70\x48\x07\xb0\x8d\xf8\x0e\xf7\xbf\xa3\x38\x01\x03\xf1\x99\x80\x9f\x12\xb0\x27\x0b\xd8\xa2\x07\xec\xd1\x04\xa2\xcd\x18\xe3\x54\xbc\x6b\xc5\x2e\x26\xeb\x2d\xf3\x25\xae\xce\x06\xf6\xd5\x03\xca\xcf\x2b\x4e\x13\xc0\x9f\x2b\x81\x78\x81\x57\xed\xba\x51\xdd\xff\xff\xe8\x20\xfc\x88\xff\xe0\xfc\x73\xde\xc3\x73\x71\x5b\x20\xf3\x1e\x48\x0b\x36\x9d\xe3\x40\x65\x13\xf3\xc0\x14\xf3\xa7\x48\x9f\xfb\x3c\xe4\x6b\x02\xed\x4d\xbf\xd3\x3b\x38\x02\x0c\xd0\x64\x1f\x86\x55\x00\x09\x8b\x98\x37\xb6\x3f\x5e\x71\x56\x01\xf6\xda\x33\xee\x1f\xfb\x07\xe0\x16\x03\xec\x2e\x05\x14\xeb\xe2\xee\x4e\xc0\xe6\x5b\x40\xb4\x2d\xb0\xab\x1c\x88\xf1\x03\x0e\xed\x05\x62\x1e\x72\xaf\x98\x38\x45\x7e\x48\x06\xe2\x7c\x80\x47\xf6\x8a\x53\x27\xf0\x31\x05\x88\x76\xfd\xb1\xff\x35\x75\x10\x56\x0b\x9c\xd3\xa3\x95\x18\x87\x79\xec\x9f\x3c\x0e\x35\x79\x0f\xbf\x8b\xdb\x82\x9f\xf1\x1e\x2e\x86\x00\xaa\x9f\x59\xd7\x47\x6b\x11\x90\xe3\x0a\xb4\x38\xc9\xa7\x08\xd2\x3b\x38\x03\xf4\x2a\xe5\x3e\x0f\x26\xba\x9c\xb7\xc6\xea\x02\xb1\xfb\x80\xa9\x37\x80\x18\x4f\xc0\x61\x20\xb0\x73\x3a\xb0\x64\x03\xb0\x33\x98\xb1\xdb\xc8\x34\x5e\x3f\x77\xd8\x01\x3b\xff\x04\x22\x95\x80\x83\x95\xc0\xce\x78\x20\xe7\x1a\x7f\x4f\x31\x0e\x8a\x3d\xe5\x93\xba\xdf\x74\x20\x6a\xfa\x5f\x93\xff\x21\xfb\xbd\xdc\xb7\x06\xff\x21\xb4\x46\x1c\xc8\x78\xe7\x7d\xb6\x32\xef\xa1\x66\xbf\x0f\x99\xf7\x50\xb8\x81\xf9\x13\xa7\x7b\x02\x6a\x12\xf7\x7b\xd0\x01\xe7\x01\xdd\xaf\xc0\x41\x03\xa0\x9b\x23\xb0\x6f\x38\x60\xb4\x9d\x79\x0f\x23\xe6\xb0\x1f\x96\xba\xc0\x0e\x1f\xc0\xee\x05\xb0\xcd\x17\x70\xd6\x03\xb6\xf7\x64\xec\x3a\xdc\x16\x08\x4e\x02\xc2\x7a\x03\xbb\x86\x00\xe1\x33\x81\xe4\xd6\x40\xd8\x7d\x20\x67\x25\x6b\x2b\x95\x2a\xfc\xbe\x01\x3c\xf5\x62\x0e\xd1\x97\xe8\xff\xea\x40\xc8\x38\x78\x4d\xbf\x6b\xea\x40\xfc\x54\xf7\x63\x77\x8d\x38\xf8\xbb\x46\x1c\x88\x71\xa9\xc2\xfd\x05\x3f\x20\x63\x0f\x50\x37\x09\x38\xb8\x1f\x68\x1c\x04\xec\x9b\x07\xb4\x8d\x62\xbe\x8b\x62\x5d\x8d\xf2\x06\x86\xd8\xb0\xce\xc3\x04\x5f\x20\xe4\x0f\x60\x7a\x38\x10\xa2\x0d\x38\xa6\x03\x9b\x94\x81\x55\xb3\x80\x4d\x79\xbc\x8f\xd8\xf0\x16\x88\x9c\x07\x04\x47\x02\x07\x15\x73\x45\x9b\x73\x4f\xf0\x73\xa0\xc4\x1d\x58\x3f\x1f\x78\xd4\x1c\xd8\x38\x0c\xf8\x3a\xf4\x1b\xff\x65\x95\xf0\xd7\xcd\xb9\xba\xdf\x8e\xc3\x6b\xf0\x01\x12\xd8\x7e\x78\x52\x3d\x0e\x64\xdd\x0f\x59\xf7\x42\xd6\xfd\xa8\x8a\x03\x51\x4d\x73\xb6\x2d\xdb\x33\xa3\xd9\x1e\x4d\x61\x7b\x48\x9c\xae\xf7\xd9\x03\x75\x7b\x71\xcf\xc0\xe6\x91\xc0\x0e\x65\xde\x87\x86\x27\x00\x03\x9b\xb2\xbe\x85\x62\x7e\x04\xb5\x04\xa6\xf4\x02\xd6\x1e\x64\xbc\x7b\xdd\x45\x60\xa5\xe2\x73\x3d\x20\x68\x37\xe0\x77\x0b\xd8\xf1\x02\xf0\x2b\x07\x0e\xc5\xb2\xde\x45\xf6\x14\x60\x4d\x1d\xe0\x72\x00\xe0\x67\x09\x3c\xe9\x05\xf8\xf6\x02\xfe\x05\xb0\x32\xa4\x3a\xff\xc3\x49\xf0\xe4\xe6\x8a\x7d\xa5\x5d\x5a\x75\x3e\x80\xcc\x83\xa8\x89\xfb\x3f\x8b\x64\x7b\x5f\xf4\x45\xb9\xd5\xab\x7a\x1c\x5c\x98\x2d\xe2\x40\xe8\x43\xc8\xb7\x08\x69\xa2\x1f\x4c\x92\xc0\xbf\x63\xc5\xf8\xed\x08\x03\xb4\x4a\x80\xd0\x22\x40\x71\x9c\x0c\x9e\x04\x18\x2e\x06\xd6\xef\x03\x46\x8c\x00\xfc\xf5\x80\x49\x2d\x78\x2f\x39\xc7\x11\xf0\xda\x05\x2c\xbb\x0c\x78\xb9\x72\x6e\xf7\x58\x09\xec\xd8\x0c\x78\x84\xb3\x66\xd0\xca\x1c\x20\x67\x02\xb0\x22\x15\xb8\xf2\x8e\xe3\xfd\xd1\x7a\xc0\xfd\x0a\xf0\x79\x35\xe0\xac\x5d\xe3\x7d\x0b\xbf\xad\x5f\x54\xe7\x3f\x58\xb6\xab\xce\x83\xa8\xe2\xbf\x08\x7e\x87\x8c\x7b\xdf\xde\x22\xfc\x17\x38\x7f\x15\xff\xa1\x36\xdb\x1c\xc1\x07\x38\x2a\x6e\x97\x0e\x8b\x71\xd8\x23\xf0\x62\xae\x4e\x03\x42\x4f\x33\x2f\x66\x63\x10\xf7\x5f\x0b\x48\x05\xba\xac\x04\x7c\xf2\x80\x81\x37\x01\x4f\x07\x60\xfc\x63\x60\x85\x27\x60\xbb\x05\x70\x0f\x01\x5c\xff\x05\xdc\xfc\x81\xb5\x93\x00\x97\x18\x20\x42\x0b\x70\x99\x0d\x24\x45\x03\xce\x3d\x81\xec\xc5\xc0\xa2\x67\xc0\xe5\x0b\x80\x93\x09\xf0\xc8\x00\x98\xdf\x1d\xf8\xb3\x05\x60\x27\x34\x13\xa7\x95\xfd\x98\xf7\x31\xd6\x52\xd8\xff\x8f\xb2\x2f\x8f\xcb\x39\xfd\xde\xbf\x2a\x6b\xf6\x64\x27\x59\xb2\xb7\x59\x2b\x51\x59\x8a\xd2\x66\x09\x6d\x52\x42\x29\x25\xad\xb4\x27\x5a\x48\x45\x51\xa4\x85\x92\xa5\x8d\xec\x4b\xc8\x3e\xc8\x32\x98\x31\x06\x59\xc7\x18\x86\xc1\x2c\x06\xfd\x5e\xef\x73\xee\x77\x29\xe3\xfb\x79\xfd\xfe\xf0\xba\x5f\x4f\xe5\x79\x9e\x73\xbf\xcf\x7d\xee\x73\x9f\xeb\xba\xaf\x23\xe2\xe6\x78\x11\x47\x1b\xf2\x5f\x7e\xdc\xc0\xe3\x2d\xd1\x6d\xfd\x62\x7a\x7d\xfb\x8f\x9c\x10\xf6\x0b\x55\xcd\x62\xc1\x03\x91\xf9\x1f\x9b\x85\xae\x52\x9a\xf8\x7d\x82\xe8\x1f\x13\x15\x01\xb4\x2c\x03\x96\x5b\x02\x3d\x9d\x98\xbf\x24\xe5\x17\x7e\x69\xbc\x3e\x16\x47\x00\x0e\x9f\x01\xcf\xf7\x80\x8f\x3d\xb0\x60\x3c\x10\xed\x0e\xcc\x7b\xc7\xb1\xd3\xb5\x35\xb0\xbd\x2d\xe0\x5c\x01\x1c\xf8\x07\x70\xba\x03\x5c\xcc\x07\x1c\x94\x81\x9f\x93\x00\xfb\x0e\xc0\xdb\x28\x60\x86\xc8\xab\xad\x14\xeb\xdb\x2d\xdb\x6b\x14\xc5\xa3\x81\x58\x3f\xa3\x44\x5e\x2d\xf3\x5f\x6a\xf9\x3f\x0d\xf9\x2f\xc2\x7e\x99\xff\x72\x40\xec\xa3\x32\xff\x65\x87\x58\x2f\x39\x62\xfd\xa4\xc7\xf1\xc8\xb7\xdc\x80\x98\xb6\x5c\x85\x0c\x92\x3e\x27\x16\xf0\xbd\xad\x58\xd5\xf1\x28\xe0\x79\xa3\xf1\xfa\x21\xa1\x80\xfb\x8a\xa6\x11\x26\xbb\x01\x97\x65\xcd\xdb\xd9\x4d\x01\x1c\x8d\x9b\x9f\xf7\x74\x06\x66\x3d\x50\x6e\x12\xde\x18\x98\x91\xa5\xdc\x32\x45\x05\x98\x9a\xa5\xac\xba\xb5\x11\x60\xa3\xd5\xfc\xda\xbe\xb6\x80\xe5\xd3\xe6\x41\xe7\x42\x80\x29\xcd\x9a\x7d\xfa\xf1\x0e\x60\xbe\xbf\x99\xff\xab\x01\x80\x99\x67\x53\xea\x47\x6c\x72\xa6\x11\xe1\xd8\xa3\x7f\x54\xa0\xfa\x8b\xcc\xf7\x18\x26\x78\xd5\x3a\x42\x6f\x4e\x53\x9c\x25\xbe\xe2\xbf\x08\xfb\x2b\x85\xdf\xcb\xfc\x97\xfd\xa3\x41\x55\xa2\x92\x9f\x15\xa8\x6e\x50\xf0\x9b\x12\xe1\x17\x59\x27\x9b\x11\xba\xb2\xfe\x7c\x6b\xaa\x4f\xac\x51\xe1\xfe\x31\xd1\xd5\xed\xe8\x7f\x06\xa5\x72\xe0\xf4\x98\xd5\x81\xea\x96\x73\x9a\x74\x7a\xde\x2a\x01\x98\xf5\xa8\x6b\xf3\x3e\xa5\x58\x3a\xad\x49\xb7\x31\xfa\x79\x0a\x43\x2c\xff\xe8\x96\x61\xdd\x44\xe1\xf8\xa4\x4f\xdd\x3b\xbb\xa5\x29\x2e\x99\xd8\xab\xdb\xeb\xa0\x12\xc5\xa7\x26\x1a\xdd\x9e\x26\x6a\x2b\x4d\x1f\x6b\xd2\x2d\x25\xab\x5a\x29\x72\xf4\x81\x6e\xbd\x4b\xb5\x94\xbc\xf5\x83\xba\x5e\x3c\xf5\x58\x69\xe4\xa8\x5b\x5d\xed\x6e\xde\x53\xdc\x39\x32\xb6\x6b\x9b\x5f\x9b\x2b\x7c\x1c\x7e\xa4\xcb\x87\x9a\x1a\x85\x61\xda\x77\x3a\x92\x9e\xc1\x10\x5b\x95\x41\xd2\x38\xc0\xb4\x35\xf5\xbb\xe8\x33\xbd\x25\xd5\x25\xfb\x58\x36\xa7\xfe\x07\xea\xad\x9a\x6c\x90\xc6\x86\xfc\x97\xb3\x22\x6e\x56\x08\xbe\xd7\x7e\xa7\x66\x84\x67\x17\x57\xb7\xa0\xee\x02\xdb\x87\xb0\x5d\x59\x01\xcc\x7f\x49\x39\xd1\x83\xfb\xc0\xe8\xf6\x24\xfc\x32\x92\x4e\xe7\x40\xe0\xf0\xbe\x74\x2f\xda\xa3\xaa\x1f\xe1\x5f\x0e\xaf\x06\x10\x3f\x66\x8a\xe2\x10\x45\xc5\xcd\x80\xa9\x82\xa6\x6d\xd7\x79\x08\x1e\xeb\xa7\x19\xa3\x63\xac\x34\x54\xef\xa5\xe6\x4e\xd3\xd2\x46\x8b\x87\x79\x6b\xe6\x3a\xfc\xd3\x78\x83\x56\xb6\xa6\x86\x6f\x7e\x93\x0d\x83\xd2\x87\x1c\x58\xf1\x53\xd3\xa6\xfd\x17\x0d\x31\xde\x38\xa1\xa9\xa2\x46\xb7\xc1\x19\xbb\xd4\x9a\xdc\xec\xd3\x6f\xb0\xed\xf1\x3e\x4d\x16\xf7\xca\x1a\x74\xeb\x5a\xbf\xc6\x67\xd4\x67\x0c\x3a\xf8\x44\xb9\xd1\xf7\x3d\x73\x07\xe5\xfd\x1b\xa4\xb4\xa1\x47\xb3\xfe\x69\x35\x35\x8a\x93\xbb\xde\xec\xbd\xbe\xa6\x46\xc1\xa8\x63\x8d\xda\x49\xc9\x5e\xd5\x9b\xdd\x88\x2f\xa4\xb2\xb7\x33\xdd\xc7\x69\x37\xb2\xa3\xa6\x34\xca\xfa\x37\xb5\xfc\x9f\x81\xcd\xa8\x2a\x56\x3e\xab\xb5\xc0\x7f\x99\x17\x90\x57\xcd\x7c\x90\x86\xfc\x97\xb8\x2b\x8c\x42\x45\x88\x3e\x22\x01\x18\x4a\x19\x96\x67\x16\x77\x2f\x70\xf4\xe6\x5b\x46\x56\x8f\x0c\xe8\xf6\xdc\x98\x2a\xc6\xd3\x75\x9f\x18\xed\x69\xbb\x16\x18\x74\xd1\xe8\xd7\xfe\xc5\x8a\xbd\x34\xa6\x19\x9b\x19\x99\x2b\xde\x51\xdf\x6a\x3c\xd5\xae\x8b\xe2\xc7\xee\xbf\x1a\x0f\x5f\x74\x5a\x71\x4f\xd7\xbe\xc6\x4d\x23\x1f\x29\x9c\xee\xbc\xd4\xf8\x5a\x5a\x02\xd0\xe1\xb1\xd1\x5f\x85\x8e\x40\xfb\x04\xa3\x7e\x47\x5c\x81\x76\xa7\xc6\x4e\xbc\x12\x00\xb4\x79\x33\x26\xfa\xa1\x01\xd0\x7a\x84\xe1\x0f\x7f\xdd\x07\x94\x6f\xeb\xdd\x90\xec\x6b\x16\x3e\x9c\xee\xf9\x37\xce\xd5\xce\xa1\x71\xd1\x20\xaa\x43\x29\x8d\xeb\xcf\x75\xda\xfd\x7d\xa9\x1f\x46\x2d\xff\xc7\xa2\x15\x79\x40\x99\xb0\x7b\x47\x15\xc3\x2e\xb9\xc1\x2c\xb3\xbc\xe1\x85\x16\xdd\xc7\x4c\x3e\xa3\x43\xaa\xd9\xf1\x6a\x23\xab\xf9\xf9\x1b\xd0\xf3\x0e\x4c\xe0\x8d\xd2\x0b\x8c\x46\xb9\x94\x31\x7e\x6e\x5b\x65\x46\xfa\x08\xe3\x34\x27\x93\xfd\x3a\x39\x96\x14\x81\x7b\xf4\xb6\x51\x6a\x7c\x03\xe8\x14\x62\xdb\xb5\xa7\x1d\xa0\xd2\xd7\x36\x59\xaf\x37\xd0\xaa\xc8\x36\xcd\xfa\x0a\xd0\xfc\xb5\xad\xa2\xfb\xaf\x40\x93\x00\x9b\xdf\x96\x5b\x03\x4a\xce\x36\x51\xc9\x23\x00\x85\x5e\xd6\x15\x5b\xa9\x52\x6a\x55\x7d\x80\x3a\x2c\x58\x5e\xbc\x48\xb8\xe0\x94\xdf\xef\xd1\xcd\x42\x8b\xa7\xef\x9a\x49\xa3\x99\xd0\x65\x1e\x27\xf0\x2b\x43\x67\x1e\xf5\xb7\xf1\x38\xbc\x8c\xc7\xa1\xa4\x8b\x71\x4c\x4d\x25\x8f\xed\xef\x46\xb8\xe4\x2e\xab\xfe\xd9\x6c\xbf\x26\xf9\xf7\xc6\x43\x23\x22\xd8\x7e\x7d\xca\xb8\x56\x9d\x60\x3d\x98\x28\x5f\xd6\x09\x09\x74\x9b\x4c\x28\x83\xb7\x0a\xdf\x2a\x73\xa9\xb2\x22\x1c\x68\x7a\x47\x5b\x9a\xb7\x49\xaa\xd3\x08\x3d\xd0\xf7\x62\x74\xaa\x6f\x8e\x3d\xf1\x49\x5a\x1a\x38\xd3\xfb\x2a\x5c\x9b\xe3\xad\x4a\x76\xcd\xe9\xad\x4d\x7b\xb7\x73\x24\xcf\x98\xd3\x13\x56\xd8\x70\xbe\x14\x4c\x75\x59\xa7\x2a\x46\xd0\x1c\x73\x72\xa8\x8e\xef\xa8\x52\x4e\x75\x7f\xfb\x57\xe7\x08\x51\xb1\x77\xbe\x43\x08\xfa\x6c\xab\x37\x14\xd3\xed\x84\xdd\x36\xa2\x1f\x88\xb9\xd0\x2f\x37\xf5\xaf\x3f\x3f\x63\xe9\x9e\x7b\x79\xa9\x06\xed\x7c\x3b\x4f\x0c\xa1\x0c\x28\x4f\x87\xfd\x39\x43\x89\x6f\x0f\x26\x7b\xf3\x73\x8e\x33\x30\xfb\x83\x9f\xbf\x39\xe9\xc6\x04\xea\xf0\xed\xca\xc5\x3a\x7c\xeb\xd6\x55\x87\xed\x9c\xad\x32\x9b\x32\x12\x2b\x1d\xe6\xc1\x18\x45\xcd\xa1\x1d\x46\x47\xdf\x95\xd0\xe8\xae\x87\xdc\x69\xfe\x14\xe3\x3d\x44\x04\xf6\x7c\xa9\x4a\x8c\x1b\x4f\x5b\x6d\x62\x9e\x78\x7c\x9a\x44\xb8\xb7\xa7\xb9\x33\xe5\x30\x9e\xea\x7c\xdf\xdf\xe3\xaf\x04\xb2\x73\x61\x4e\x16\x7d\xb3\x05\x93\x4b\x28\x62\xcd\x4f\x39\x4d\x88\xe3\x7c\x7f\xe6\x3c\xcf\x9b\xfb\x92\x90\x49\x57\x81\x5b\x39\x89\xfb\x79\x76\xc2\xee\xa9\xe2\x5e\xaf\x95\xe8\x63\x6e\x41\xfa\x31\xbb\x2b\x74\xfe\xe0\xe7\xcf\xfe\x9d\xa9\x3d\x9e\x32\x86\xe4\x46\x13\x89\x17\xb8\xea\xb4\x25\xed\x1c\xd1\x3a\xd3\x29\x82\x06\xa5\x32\x0f\x66\x89\x1a\xab\xf0\xbb\x07\x38\x51\x97\x01\x87\xf8\xb9\x0a\xbc\x0e\xdc\xa8\x9e\x6d\x6a\xb1\x80\x70\x8e\x91\xb7\x18\x95\x1b\xa8\xc6\x65\xea\xf6\xe5\x3e\x22\x43\x17\x42\x75\x08\xd0\x66\x9d\x7f\xff\xa1\xda\x84\x6b\xfa\x97\xb1\xa7\xf9\x3f\x72\xa4\x25\x19\xd0\x6a\x09\xe1\x36\xfe\x76\xb1\x4f\xf9\xf7\x99\xe4\x27\x4b\x77\x14\x91\x2e\x8a\x5f\x3a\xdf\xa0\xf4\x8b\xfc\x9e\x3e\xd9\xd7\xe8\x29\x9d\x8d\x7c\xa7\x7e\x26\x3c\xd8\x43\xf8\x43\xc3\x79\xb1\xf7\xf9\x72\x7e\xb6\xf5\x1c\x47\xa8\x79\x46\xe2\x44\x8a\x94\xeb\x34\xa7\xdc\xe7\xf5\xcf\x17\x2e\xa2\xab\x67\x53\x06\x11\x32\xcc\x99\x4e\xdc\x7e\xea\x73\xe9\xf7\x0b\x0a\xdc\x57\x90\xd7\x66\xb1\x9d\xd3\xa2\x3c\x88\x3f\x66\xd1\xca\x8b\xd4\xf6\x8d\xec\x7c\x89\x47\xa1\x6b\xcb\x3a\x29\xbd\x9a\x07\xd0\xff\x6b\xb1\x74\x99\x38\xe9\x87\x0b\xdc\x37\x3c\x8b\xe7\x21\xac\x4a\x93\xbe\x49\xd8\x9d\x09\xf4\x89\xe1\x57\xf9\xbe\x7f\xf8\x55\x1f\xc2\xa5\xc2\x6b\x56\xd0\x99\x27\x3c\x72\x03\xe5\x2a\x61\x37\x0a\x29\x97\x0d\xb3\x3d\x46\x19\xca\xf2\xd1\x57\x48\x89\x7e\x99\xe1\x03\xc2\x2d\x42\x54\xfe\x64\xdd\x18\x71\xbf\xdd\x47\xf0\xc4\x3c\x04\x8e\xe3\x2e\x78\x20\x73\x7f\x90\xc6\x2c\xb5\x29\xb4\xea\x52\xd3\xa7\x92\x1f\xac\xd9\x6b\xcf\xaa\x22\xfe\xcc\x73\x0a\x49\xe4\x3e\x41\x4b\x77\x2c\x20\x3c\xca\x43\xf4\x4f\x71\xed\xcd\x3c\x27\x99\x07\x63\x5d\xc4\x4f\x6d\xa2\x46\x00\xcd\xcb\xa8\xd2\x10\xb2\x66\x50\xe4\x72\x8a\x37\xdd\xb2\x59\x57\xa0\xd1\xdc\x68\xb1\x53\xaf\x12\xf3\xb0\xaa\x80\xef\xfb\xaf\x74\xd6\xa2\xef\x1d\xb7\x89\x23\x6d\xdc\xaa\x59\x64\x77\xdc\xd5\x45\xe4\x79\xab\x96\x45\xa8\xb0\x87\xae\x23\xc4\x7c\x55\x51\x3e\x71\x96\x57\x7a\x1e\xa0\x15\x1d\x5b\x79\x91\xfa\x67\xc4\xac\xfd\x69\x2c\x3f\xc1\xdf\x99\xc9\x22\xe2\xa1\xcc\xff\xa8\xd5\x45\xd1\xe4\xd1\x7b\xbc\x34\xa6\xab\xcc\x20\xbc\x32\xa9\xf5\x1c\xb2\x23\x36\x99\xfd\x7b\x99\x21\xf3\x22\xfc\xcb\x3c\x09\x3d\xf1\xf6\xf0\xa6\xd9\x77\xf7\x5b\x4a\x51\xc8\xd1\x99\x75\x42\x66\xb8\x32\x4f\xc0\x7c\xcb\x72\x5a\xe5\x46\xd7\xc3\x89\x37\x31\x2c\x2a\x8a\xe6\xb7\xef\xc9\x15\x14\x4f\xda\x3f\x5c\xc9\x27\xd4\xa3\xab\xc5\x0d\x8f\x14\x4d\x05\x5a\xf7\xc9\xe7\x3a\x51\xa4\x4d\xa9\xd4\xa4\x4f\x48\x51\x19\x47\x7d\x93\x52\xfa\xd8\x51\xc4\x4d\xd9\xeb\x49\x48\x59\x4a\x00\x23\xf2\x29\x36\x29\x14\x1f\x52\x5a\xf3\x59\x26\xf9\x4d\x39\xc5\x85\xa4\xb8\xb3\x84\x5b\xad\x09\xfa\x81\x7e\x9f\xd4\xeb\x37\xda\x01\x12\xa3\x3e\xd3\x13\x5e\xd9\xb8\xa6\x1e\x5f\x68\x99\xc0\xb5\x82\x88\x17\x92\x54\xed\x42\xcf\x39\x36\x91\xfb\x04\x85\xbd\xf1\xa0\x3c\x31\xa8\xb9\x37\xb1\xb0\x16\xa7\xf9\x51\x86\xb9\xc0\xcb\x9f\xa2\xb4\x73\x9f\x10\x42\x87\x66\x79\x85\x93\xca\xbe\xb5\x79\x24\xb1\x93\x4c\xed\x63\x68\xf6\xf5\x23\x62\xe9\x24\xaa\xf5\x84\xd1\x58\xf5\x31\xab\x09\x65\x6a\x93\xb8\x76\x34\xdb\x9f\x26\x4e\x66\x19\x95\x3c\x0f\x19\xc6\x3c\x0f\x99\xaa\xbc\x43\x67\x24\x1b\x97\xf1\xc8\x2b\x73\xe3\x8d\xf9\x94\xa1\x6d\x6c\xc3\x9d\x6b\x32\xb5\xd7\xd0\x8e\xbc\x49\x83\x15\x27\x32\x36\xed\x71\x94\xc6\x0d\xfb\x2b\x49\x3f\x62\x63\x8b\x5b\xb4\x22\x37\xe8\xfd\x42\x67\x86\xf4\x21\x9f\xe9\x73\x52\x04\x6f\x30\xe1\x26\x8f\xf2\xbc\x70\xbf\xa0\xb8\x8b\x0b\x09\x87\x0b\x7f\xc9\xcf\x3b\x78\x2e\xf7\xcb\xf1\xf5\x0e\x24\x2f\x5d\x78\x3c\x84\x3e\xcd\x75\x5b\x38\xf1\x7f\x1c\x02\xa3\xa9\x42\x31\x1d\xab\xe8\x6b\x4f\x36\x5e\x45\x7e\x60\xe2\xc1\x7c\x98\x91\xa7\xd7\x12\x9e\x37\xb0\x2a\x99\x4e\x64\xdd\xbb\xaf\x23\x82\x6e\x8b\x3c\xb9\x4f\xd4\xe6\x46\x3c\xe6\xe9\x2a\xd0\x99\xbd\x96\x0f\xf3\x6c\x30\x31\x67\x72\x87\xf1\x0e\x95\x3b\x7c\x2a\x45\xa4\xdc\xab\xee\xe4\x41\x5b\xd7\x06\xd3\x8e\x9b\xeb\x92\x40\x71\x32\x37\x82\x15\x29\xf2\x2e\x94\xd2\x27\xe6\x98\x54\x90\xa7\x66\x5b\x55\xd1\x93\xcd\xbe\xfc\x94\xee\xcf\x67\xd7\x70\xad\x29\xf3\x25\xdf\xb9\x91\x79\x31\x6b\xc5\x7e\x91\xb8\x8b\xea\x57\xa2\x1f\x56\x48\x22\xeb\x00\xf9\xcf\x0a\xa5\xbc\xd0\xeb\xd7\x08\x8a\xc6\xee\xc7\x57\x50\xdc\x77\xca\x62\xdd\xa3\x59\xcd\x13\xe8\xdb\x5a\x29\xac\xa6\x75\x61\x6a\xc2\xac\xc6\x31\xb6\xeb\x68\xfe\x74\x17\xa7\xd1\x2e\xd6\xaf\xfb\x06\xf2\x8f\x4e\xf7\x36\x91\xdf\x34\x6b\xbf\xa5\x80\xed\xdf\xe6\xc9\x63\xa1\xb7\x02\xed\xb8\x85\x7f\x77\x24\xcf\xd9\xf1\xf3\x20\xda\x27\x77\x04\x8e\x21\x85\x81\xc2\x12\x5b\xaa\x95\xee\x58\xe6\x4a\x67\xd8\xc2\x0b\x01\xf4\xf3\x1d\xbd\x56\x52\x8d\x64\x87\x5a\x06\xeb\xc9\xa8\xed\x32\xe6\x91\x91\xe5\xc2\xec\x2a\xda\xe1\x0a\x5e\x72\xbf\x9c\x82\xca\xf7\xc4\x6c\xdd\xd6\x8a\xed\xde\xd2\xbf\xa6\x1e\x2f\x26\x9d\xfc\x21\xec\x1e\xeb\x00\x05\xea\x70\x1c\xf3\x71\x67\x7e\x9b\x87\x1a\xf3\xfa\x5c\xef\x26\xd0\xac\x3a\x34\x4d\xa2\xdd\x7d\xea\x2f\xc9\x14\x47\xcd\xcf\xad\xa7\x13\xea\xb8\xc7\xdc\xdd\x4b\x6f\x6f\x26\x45\x71\x6d\x5d\xde\xdd\xfb\x24\x32\x5b\xa5\xa3\x0e\xaf\xe2\x26\x49\xdb\x45\xa5\x4f\xe6\xc3\x94\x66\x2b\x10\x8f\x49\xe6\xc3\x94\xfe\x32\x68\x01\xbf\x66\xfd\x87\x32\x35\x66\x70\x96\x66\xbb\xea\xf0\xcf\x97\x92\xbd\x65\x9e\xb1\x82\x2f\x93\xce\xba\x30\x6a\x8c\x77\x97\xf9\x1f\xa6\xf5\x53\x3c\xf3\x02\x31\x5a\x4a\xcf\xdd\x27\x7f\x2a\x49\x7d\xab\x8e\x2f\x74\x51\xb6\x0b\x1e\x6d\xde\xad\x9a\x2f\x78\x31\xcb\xce\x44\x53\xa5\xd6\xf7\xce\x0a\x62\xa7\x7a\xa1\x7e\x5f\x2c\xe7\x01\xa9\x84\x7f\xcf\xea\x98\x46\x95\x28\x1b\x83\x0c\x52\xad\x9a\x34\x7b\x13\xed\x93\x63\xef\x31\xff\x49\xd6\xc5\x19\x6c\xcd\x76\xf7\xea\xcc\x27\xf2\xf6\x8d\x76\x50\x05\x53\xb1\x77\x91\xd0\x3b\xf8\x8a\x0f\xe3\x2f\xf8\x30\x15\x03\x28\x63\x3f\xd4\xda\x80\x22\xd1\xa1\x76\x96\x11\xfc\x77\xdc\xe1\xed\xb0\xf1\x92\x2a\x7e\xcd\x91\xe8\xd0\x7c\x66\x62\x1d\x5a\xc2\x1d\x7b\x0e\xbd\x3e\x90\xc2\x3f\xbf\x48\xcc\x84\x03\xfa\x77\x88\x47\x73\x68\xe8\x1f\xb4\x53\xcb\xba\x28\xa5\xcd\x78\xdc\x65\x26\xe6\x85\xf8\xa5\x01\x53\xe2\x89\xad\xe8\xf3\x22\x89\xf2\xe0\x85\xe6\xa9\xc4\x6a\x76\x8d\xe7\xf5\xec\xe8\x9d\x41\xd1\x76\x3a\xd8\x5e\xcb\x48\xe6\x85\x98\xda\x6d\x25\x3f\x18\xbd\xb4\x80\xd4\x8d\x86\x65\xb3\xdd\x83\x87\xee\xa6\x6c\xbf\x87\x1a\xb3\x54\xda\xba\x96\xd2\xc2\x53\xf0\x90\xed\xff\x8a\x0f\x53\xd2\x9e\x98\xfa\x15\x35\xfd\x0b\x78\xe4\x93\xd9\x49\x15\x73\xf2\xc8\x13\x37\x9d\xc8\x9e\x53\xed\x7d\x69\x1f\x3d\x19\xc1\x0a\x65\x27\x9a\xa6\x50\x5e\x75\xaa\x98\x71\xff\x53\xc5\xac\xd0\x71\xa2\xf4\x2c\xed\xb3\x27\x14\x7f\xa4\x7d\xf4\xc4\xa3\xdf\x28\x92\x1f\xff\xf3\x73\x16\xbe\xe0\x7f\xc8\x7d\x82\x4a\xa9\x8f\xf1\x92\x37\x82\x07\x14\x97\x1e\xcf\x7e\xc0\x7c\x18\x17\xaa\x30\x03\xb3\x3d\x73\x28\xfb\x9f\x76\x7d\x1b\x45\x61\xf3\x2d\x05\xe4\x9d\x26\xab\xb8\x12\xa9\x37\x62\x37\xe5\x19\xba\x6a\xdc\x27\xaa\x7f\x76\x39\x55\xe8\xba\x77\x2f\xa7\xfc\xba\xad\xe2\x41\xf6\x83\x13\x47\x44\xa5\x4e\xe6\xc3\x9c\x75\x16\xe3\x3a\x55\xf1\x9a\x95\x2e\xcf\x5a\xe8\xd1\x7e\x70\xf6\xa5\x39\xf9\xf3\x39\x53\x7b\x3a\x3f\x9d\xf7\xf6\xa6\xb8\x7f\x21\x22\x8c\xfa\x46\x5d\xd0\x4c\xa6\x95\x7a\xe1\xe7\x3c\xf2\xb8\x0b\xb6\x7b\x69\x3c\xf7\xfc\x54\x26\xff\xbf\x9b\xf4\x64\xce\x1d\x7b\x46\xf9\x59\xe5\x99\xb7\xb4\x73\x9d\x1c\xc3\x71\xf2\xa8\xe0\x47\x1d\xa2\x7c\xaa\x21\x0f\xc8\x55\x87\xfd\xdb\x51\x75\x1b\xad\x13\x3b\x9d\x42\x8a\x3a\x72\x7f\x2c\xb3\xd7\xbb\x89\x8f\x6e\xec\x56\x4a\xf1\x6f\x54\xea\x5e\x5a\x47\x5a\x76\xfb\xe9\x5b\xf6\x7d\x7d\x88\xf2\xf4\xae\x93\x38\x6a\xb5\x2c\x3a\x9e\x84\xff\xec\x17\x75\xf9\x36\x8f\x57\x74\xb8\x62\x73\x45\xa7\x0f\x79\xd2\x95\x34\x3e\xc9\x5e\x2a\x35\xa5\x0c\xfc\xf2\x2f\xb3\xc9\x43\xaf\xfc\xe5\x41\x3a\x30\x55\x45\x9c\x47\x54\x65\x25\x51\xa4\xae\xf2\xda\x42\xfe\x72\xe5\x65\x09\xe5\x9d\x55\x79\xac\x43\x78\xe5\xf7\x1b\x14\x77\x2e\x45\xdd\x3f\xc3\xef\xf7\x96\xf6\x91\xda\x3e\x41\xed\x78\x3e\x4e\x50\x9f\x98\x9a\x2f\xf8\x0f\x6a\xea\xc0\xc7\xbb\x40\x4f\xe3\xfa\xbc\x07\xb5\xe2\x3a\x9d\x83\x47\x6b\xb8\xfe\x2e\x9d\xed\x06\xbf\x01\x6e\xfe\x03\xe8\x3c\x66\xbd\x0b\xe9\x84\x26\xdf\xf3\x3f\x6b\xc8\xfa\x0f\xb2\xbe\xff\xb1\x2a\x60\xe6\x23\xe0\xd0\x7b\xbe\x43\xb8\xf7\x2d\xb0\xe0\x2d\x50\x7c\x0a\xf0\x9e\x0d\xec\x7e\xcd\x35\xf7\x5d\xb1\x40\x74\x6b\xc6\xed\xa5\xf3\xe5\xae\x24\x20\x63\x0e\x50\xf4\x06\xd8\x5e\xce\xf7\xe1\xa5\x99\x2f\xf5\x05\x4e\x9f\x03\xca\x0f\x02\xb7\x63\x80\xf2\x4a\xe0\xc9\x6b\x60\xdf\x7d\xe0\xaf\x99\x7c\x7f\xb8\xe6\xff\x03\xff\xaf\x11\x3a\x17\x9f\x57\x01\xdd\x86\x00\x1f\xda\x73\x5d\xf9\xcd\x66\xa0\x4b\xe5\xd7\xbc\x87\x07\x5a\x7c\xaf\xff\x07\x6f\xa0\xff\x27\xe0\x66\x15\xf3\x62\x2e\x27\x02\xc3\xac\xb9\xbf\x89\xde\x1d\xa0\xf2\x0f\xc0\xe4\x07\xe0\x68\x2b\x60\xd2\x5d\xee\xef\x30\x43\x11\xd8\xf3\x96\x79\x31\x7b\x96\x03\xee\x17\x19\xe7\x5f\x64\x05\x14\x2e\x03\x02\x6e\x03\x3b\x57\xf0\x3c\x14\x9e\x63\x6c\x6a\x67\x35\xb0\x69\x08\xdb\x53\x60\x08\xec\x7a\xc4\xdc\x87\x5d\x3b\x80\x53\x09\x40\xc9\x07\xe0\x66\x27\xa0\x38\x13\xa8\x5e\x05\x48\xd1\xe8\xef\x74\x60\xe7\x6e\xe0\xf3\x27\x60\x5b\xd0\xff\xcd\xff\x48\x69\xa0\x83\x21\xf3\x3e\x88\xf7\xa0\x06\xbc\x2b\xe5\xbe\x18\xcf\x9f\x00\xed\xad\xbf\xe0\x3d\xa8\x01\x5d\xdf\x00\xb7\xf5\x81\x3e\x2f\x80\xab\xd5\xdc\x3f\xe8\xd2\x2c\xc6\x75\xcf\xb4\x93\xf6\x0e\xa0\x22\x1a\x30\x3c\x02\x1c\x29\x00\x26\x59\x00\xfb\x63\x01\x9b\xd7\x40\x59\x1f\x60\xd6\x2d\xa0\x68\x03\xe0\xfa\x1a\x28\xbc\x0d\x78\xbc\x03\x0a\xee\xf0\xdd\xcc\xfc\x27\xdc\xe7\x7f\xeb\x18\x20\x3e\x84\xf5\xfc\xa5\x4c\x64\xbb\x01\x90\x3f\x96\xe7\x62\x8f\x21\xb0\x53\x9d\xb9\x46\x3b\x83\x81\x1b\xa6\xc0\xee\x63\xc0\x53\x4f\x60\x97\x22\xf0\xb7\x61\x1d\xfe\x9f\xf3\xae\x3e\xfe\x5d\x6b\xff\xf8\xff\x9b\xff\xf0\xae\x02\x68\x61\x01\xbc\x7a\x0d\xb4\x52\x04\xa4\xdc\xb4\x95\x47\x1d\xef\xe1\xc7\x44\xc6\x2f\x6f\xe9\x00\x3d\x5e\x02\x57\x34\x80\xbe\xd9\xc0\xc5\xef\x81\x21\x43\xf9\x19\xe9\x7a\x71\x1f\x13\xe9\x24\x5f\xee\xc4\xfd\x72\xca\x5e\x03\x96\x8a\xc0\xae\x54\x60\xba\x2d\x50\x98\xca\xb8\x7f\x81\x3f\xb0\x30\x17\xc8\x33\x04\x7c\x43\xf8\xee\x6e\x68\x77\x20\x67\x37\x10\xff\x1d\x90\x63\x07\xac\xb7\x03\xf2\x86\x02\x5b\xff\x05\xb6\x0d\xe5\x9d\x57\xfa\x7f\xa7\xdb\x88\xfe\x07\x1f\x81\xed\xea\xc0\xe3\x72\x69\x17\x04\x3e\x1a\x00\x5b\x73\xd9\x26\x59\xff\x45\xb6\x5f\xbe\x07\x5e\xcb\x7f\xb8\xf1\x05\xff\xa1\x05\xf0\x6f\x18\xd0\x68\x73\x1d\xde\xff\x52\x13\x50\xb8\x5c\xc7\xff\x90\x79\x0f\xb7\x12\x80\x36\x7a\xc0\x0d\x23\xa0\xc3\x12\xc6\x39\x7b\xa8\x31\xef\xa1\x6f\x35\x70\x72\x25\xa0\xf5\x9a\x79\x4a\xd2\x3a\xd9\x5b\x0d\x18\xaf\x03\x76\xed\x01\xcc\x8c\x80\xed\xe7\xb8\xaf\xbf\xf4\xfd\x9d\xd4\xf8\x0e\xfb\xfc\x6e\x40\xf6\x30\xc0\xe7\x15\xb0\x25\x9f\xb1\x2d\x29\x67\x96\x32\xf6\x4d\x47\x81\xf5\x4d\x59\x3b\x28\xbf\x12\xc8\xf5\x00\xf6\x5f\x67\xdc\x5f\x8a\xbc\x79\x4f\x80\x5b\x3f\xf3\xef\x1f\xbf\xe6\x9f\xff\x7d\xac\x0e\xff\x6f\x68\xff\xb7\x74\x10\xa4\x35\xa4\xd0\xaa\xae\xcf\x47\x43\xde\xc3\xc3\x9f\x01\xec\xab\xd3\x7b\xb8\x55\x04\x34\xd9\xce\x9c\x1c\xe9\xe0\x70\xc6\x8b\x75\x30\x4e\x46\x00\x6a\x63\x99\xff\xa5\xb1\x1a\x28\xbf\x02\xe8\xfa\x00\xbb\x4f\x00\x7a\x6d\x81\x42\x4b\xc0\xe4\x1d\xc7\x2b\x4b\x0f\x60\xcb\x55\xc0\xae\x04\x90\x76\x29\xb7\x5c\x60\xe3\x11\xc6\xe4\x32\x7e\x07\x42\x84\xee\x7f\xec\x53\x20\xa3\x09\xb0\xbe\x35\x90\xe1\xc6\xbd\x21\x64\xfd\x03\x29\x9b\xa9\xb4\x67\xbb\x7f\x3c\x05\x64\x6d\x06\x9e\xdb\x7c\xd1\x07\xa2\x81\xfd\xb5\x3a\x00\x02\xef\x0c\x75\xab\xcf\x03\xf8\xf0\xb2\xbe\xfd\xb2\xee\x87\xcc\x7b\x78\x28\xf4\xea\x1b\xf2\x1e\xbe\xab\xe1\x7e\x17\xa7\xcd\x79\xdd\x1c\xab\x06\x3a\x69\x73\x9f\x8f\x9e\xce\x40\xf1\x14\xde\x57\x0a\xaf\x00\xc3\x77\x00\x79\x4e\xcc\x7f\xc8\x39\x02\x98\x87\x32\xee\x37\x2d\x07\xd8\xf0\x10\x70\xf6\x06\xd2\x46\x03\x9e\xff\x32\x7e\x2f\x9d\xe4\xd7\x77\x05\x62\xd7\x02\xeb\xf6\x01\xeb\xe6\x02\x69\x11\xdc\x57\x2c\xed\x3e\x73\xe5\x24\x3b\x25\x1f\xcc\x38\x0d\xdc\x7e\x04\x6c\x70\x07\x9e\x47\x7e\x61\xff\xdc\x06\xf6\xcb\x3a\x08\x6b\x04\x1e\xde\xa9\x3e\x0f\xa0\x21\xff\xa5\xf6\x9e\xb7\xac\xfb\x21\xba\x86\xca\x78\xf7\x15\x81\xdf\x9e\xf9\x57\xf0\x1e\x7a\xf2\x7c\x1c\x1c\x0f\xb4\xbc\x01\xec\x19\x09\x74\x9a\x0c\x14\xde\x05\xd4\xcb\x80\xfc\xd6\x80\xd6\x22\xc6\xfd\xf5\x5e\x03\x9b\xba\x03\x13\x0d\x59\xd7\xc1\x46\x15\x90\x72\x63\x47\x6f\x20\x65\x18\xb0\xf0\x0c\xb0\xa6\x92\x2b\x76\x49\x6e\x40\xcc\x43\x20\x29\x0d\x48\x79\x57\xa7\x7f\x90\x7c\x18\xd8\xd7\x18\x48\xee\x05\x9c\x0e\x62\xbe\x9b\x14\xb3\x52\x3a\x02\xbf\xc5\x03\x49\x51\xc0\xe7\x4b\x75\xeb\xbe\xa1\x0e\x44\xc0\xa9\xfa\x78\xb8\xcc\x7f\xf8\x16\xff\x45\xf6\x83\x3b\xd6\x0d\xfc\x40\xe6\x7f\x88\x7e\x17\x87\x05\xee\xbf\x37\x0a\x68\xac\x04\xec\xba\x0c\xb4\xba\x0a\x6c\x33\x07\x3a\x4b\x7e\x3b\x0f\xe8\x9f\x07\x64\x3c\x66\xbe\xa9\xf4\x5c\x8d\x6d\x19\xf7\x37\x9f\x02\x24\xc4\x02\x76\x9a\x40\xbc\x3a\xe0\xe6\x04\xc4\xb9\x03\x7e\x36\x40\xc2\x3f\xc0\x8a\x76\x8c\x8b\xa7\x54\xf2\x73\xcd\xd9\x01\xac\x6a\x0a\xec\x59\x0b\xac\xfa\x17\xa8\x9c\x09\xac\x1a\x06\xdc\x5a\xce\xbd\xb7\xa4\x5c\x47\xb6\x3f\xa2\xc7\x7f\x3f\xf7\xda\x7e\x18\x22\x8e\xba\x55\xd5\xc7\xfd\x1b\xea\x7e\xdc\x83\x58\x0f\x02\xe7\xb9\x26\x54\x75\x65\xdd\x8b\x0a\xc1\x83\x38\x2c\xd6\x51\xa9\x39\x8f\xf9\xd5\x80\xe2\x6f\x40\xce\x5a\xa0\xad\xf4\xfc\xd3\x00\xb5\xcd\xc0\xba\x07\xc0\x90\x30\x60\x6d\x01\xef\x23\x52\xbc\x9e\xe4\x0d\xac\x7c\x0a\x4c\xcb\x03\x56\x8c\x07\xe6\x6a\x01\x91\xe1\xc0\xe2\x72\x20\x6a\x0a\x10\xb9\x05\x88\x5c\x06\xac\x7d\x04\x44\x0e\x05\x72\x77\x03\x91\x73\x80\xbd\x1b\x81\x88\xe9\xc0\xe9\x13\x75\x3a\x10\xe1\xab\x80\xe7\x6f\x80\xd0\x2e\xf5\xf9\x2f\xde\xc7\x79\x9c\xaf\x56\x9f\xf7\xe1\x20\xfa\x09\xd9\x7f\xe4\x51\xf6\x83\xa7\xb2\xee\xc7\xb7\xf8\x2f\x0d\x75\x2f\x44\xdf\x93\x72\x11\x4f\x77\xac\xe7\x71\xab\xa8\xb2\x6c\xda\x09\x34\xfe\x8b\xfd\xb6\x83\x33\x90\xb8\x1d\xe8\x53\x0a\xc4\xdf\x03\x86\xcf\xe1\x78\x3d\x4e\x07\x08\xff\x13\xb0\x4e\x05\x96\x97\x00\x4e\xa1\x40\x88\x39\xe0\x6d\x0b\x04\x39\xf0\xbe\x11\x7c\x9a\xe7\x2e\x50\x87\x39\x45\x41\x1d\x98\x73\x14\xf4\x3b\x70\x66\x31\x10\xd8\x09\xb8\xd3\x05\xf0\xcb\x63\x1d\xa9\x25\xb6\xac\x13\xb3\xc8\x4c\xd8\x2d\x78\x00\x4e\x42\x03\x67\x66\xc0\x7f\xf3\x01\xbe\xc5\x7f\x91\xfb\xbe\x54\x09\x5d\x90\xda\xbe\x27\xa2\xda\x2c\x9f\x9a\x8b\xc4\xcf\x65\xfe\xc7\x16\x11\x4f\xd3\xc4\xb8\x46\x05\x50\xfe\x0c\xc4\xea\x01\x5d\x9e\x02\x51\xfd\x80\xc1\xd3\x80\xd0\xeb\x80\xe1\x21\x20\xb8\x0b\x60\xe1\xc5\x1a\x39\xd2\x79\x6a\xc9\x7c\xc0\x33\x98\x75\x2d\xa4\x79\xf0\x33\x01\x92\x1f\x01\x8b\xc5\xde\xb8\xe8\x10\x50\x1a\x06\x78\x49\xf1\x61\x2a\xe0\xa5\x04\xfc\xd8\x04\xf0\xa8\x06\x5e\xf5\x00\xe6\xcb\x7a\x27\x13\xfe\x9b\xff\x61\xd9\xec\xbf\xf9\x00\xff\x8b\xff\x52\x6b\x7f\x03\xfe\x4b\x2d\xff\x43\xc4\x0b\x99\xff\x91\x29\xfc\x26\xf9\x1c\x8f\xab\x44\x15\x4a\x7a\xee\xd2\x79\x2a\xa4\x03\xd0\x3b\x11\x58\xda\x0a\x18\xde\x16\x58\x9c\x0c\x4c\xf4\x03\x16\x99\x00\x76\xd5\xc0\xc2\x83\xc0\x82\x02\xc0\x7d\x07\xb0\xcc\x1e\x98\x37\x9e\x63\xe4\xdc\xfb\xc0\x96\x4f\x80\xcb\x2c\xa0\xb4\x3b\xe0\x7c\x0d\xa8\x7c\x04\x38\xf9\x00\xb7\xe6\x01\x8e\x8b\x81\x17\x09\x80\xfd\x2b\xee\xf5\x23\xdb\x3d\xc5\xb2\x3e\xef\xc3\x38\xbc\x3e\x0f\x42\x7f\x85\xc0\xfd\x05\xff\xe5\xf6\xaf\xc2\x7e\x81\x32\x5d\x14\xcf\xb3\xb2\x3d\x8f\x47\x45\x3c\x95\xf9\x1f\xbb\x85\x6e\x44\x81\xb0\xbb\x21\xff\x63\xb5\xb8\x9d\x17\x2d\xf4\x52\x02\xf4\x80\x26\x9a\x80\xaf\x2f\xeb\x8f\x79\xfa\x03\x9a\x76\xc0\xbc\xcf\x80\x51\x3f\xe6\xe0\x4f\xb3\x06\x9c\x63\x00\xf7\x25\x80\xa3\x16\x10\xd2\x1f\x98\x35\x17\x48\x2c\x05\x66\xbc\x06\xb2\x1c\x81\xe9\xaf\x80\xd2\xe1\xac\x61\x78\xea\x3b\xc0\xfa\x1c\xf0\x7d\x3c\xaf\xad\x5f\xce\x00\x96\xeb\x81\xcf\x0a\x80\x99\x7a\x03\x7b\x85\xa6\xe4\xf0\x0a\xc1\x7f\xb8\x5c\x9f\x07\x51\xcb\xff\x10\xcf\x53\xe6\xbf\xc8\xf6\xcb\xfc\x8f\xf2\x93\x3c\xee\x12\xfc\x96\x02\x11\x2f\x1b\xf2\x3f\x92\x45\xd5\x69\x95\xd0\x15\x5a\x2e\xfc\x61\xb1\x58\x5f\xf3\x3d\x80\xb6\xd2\x73\xcd\x07\xfa\xbe\x01\x1c\x2d\x01\x03\x5d\x60\xe6\x4e\xc0\xea\x77\x60\xda\x30\x6c\x77\x5d\x0b\x58\x67\x29\x74\x0f\x6c\x0f\x4c\x31\x50\x70\x89\x7b\x06\x4c\xd6\x51\x98\xb0\xa9\x0d\x60\xba\x48\x41\x77\xf7\x66\x60\xc2\x34\x1c\x3b\x1e\x0a\x8c\x5b\x0a\xdd\xab\x93\x01\xe3\x9b\xc0\xc3\x37\x80\xd1\x78\xe0\xef\xd9\x80\xfe\x68\xb6\x4f\xf7\x6e\x7d\xbe\xc7\xa0\xad\x3c\xf6\xb5\xe7\x51\xd6\x5a\xfc\x26\xff\x45\xe4\x0d\xfb\x97\xf0\xd8\x90\xff\x92\xf5\x03\xf7\xc9\xc9\x68\xad\x44\x33\xb7\xb6\xa0\x31\x55\x51\x62\x2b\x9b\x12\x6e\x13\xfa\xa2\x05\xed\xc0\xbe\xaa\x2d\x68\xe7\x75\x3d\xdb\x92\x94\x84\x66\xb8\xb5\xbe\xd3\xf8\x20\x60\xd3\xbc\xdd\xf2\xee\xa1\x80\x79\xe3\xf6\x23\x87\xda\x03\x13\xa1\x3a\xd1\xec\x11\x60\x1c\xd9\xa1\xb9\x63\x26\x60\xb8\xb3\x83\xa9\x6f\x36\xa0\xaf\xd2\x61\xfa\x8a\xde\xc0\x88\x3f\x3b\x78\xa6\x5f\x04\x86\x2d\x57\xfd\xbe\x30\x07\xd0\xed\xaa\x3a\xe3\x70\x2a\xa0\xdd\xab\x7d\xd9\xa5\xeb\x80\xa6\xa9\xca\x83\xfb\xe9\xc0\xe0\x78\x95\xf1\xef\xc6\x02\xfd\xcf\xb5\x25\x5c\xa2\xf7\xcd\x96\x5e\x54\x53\x78\xdd\x8c\xea\xf5\x5d\xcd\x9a\x90\x2e\x42\x87\x47\x8a\x74\xcf\xb7\xfd\x1b\x90\xfe\xc1\xff\xe2\xbf\xc8\xf6\x17\x7a\x2b\x51\xfd\x2e\x2b\xa0\x35\xe1\x7f\xe9\xcb\xdb\x53\x55\x31\x71\x7b\x07\x42\x95\x62\x5c\x3a\xf1\x6d\xf3\xb9\x3d\x68\xe7\x58\x2c\xf8\x12\x6e\xaa\x6a\xc4\xb4\x9c\x11\xd1\x8b\x32\x8e\x89\x9d\xfa\x50\x55\x65\x74\xbe\x86\x8d\x4a\x2e\x30\xfc\xa5\xc6\xd9\x01\x17\x14\x66\x6a\x87\xf6\xcb\x35\x9a\xaf\x38\x6c\x90\x45\xbf\x90\xe9\x0f\x14\x3f\x68\x5c\xe9\xa7\xec\x31\x55\x69\x6b\x6f\xa5\x7e\xd6\x61\xfb\x95\x8a\xd5\xfe\xd2\x78\x96\xfc\xaf\x92\x77\xf7\xdd\x1a\x4e\x5b\x57\x28\xfe\xdd\xf5\x9e\xc6\xe4\xfd\x6d\x14\x4d\xbb\xec\xd5\x68\x7c\xfe\x8c\x82\x59\xe7\xc7\x1a\x3d\x7f\xda\x07\x74\x1a\xdf\xd7\xe4\xf7\x87\x80\xea\xce\x3e\xdd\x25\xfb\xda\x3e\xeb\x41\xf7\xf1\x5a\xbf\xef\x7c\x5e\x1a\x95\xf3\x3b\x90\x2e\x4c\xb3\xc0\xb6\x84\x7b\x37\x4e\x6e\x45\xf7\xe0\x65\xfe\xc7\xf1\xf5\x8c\xaa\xc8\xf6\xef\x2e\x6d\x46\x55\xe3\x6f\xf2\x5f\x8c\x18\x96\x8b\xae\xd6\xa0\xfa\x5b\x48\xee\x40\xaa\xba\xfb\x7a\x0f\xa6\xe7\x3f\xcf\x42\x93\x18\x52\x76\xcb\x74\xc9\xe3\x26\xbd\x19\x4a\x55\xc5\x51\xe9\x23\x28\x82\xf6\xbb\x38\xea\x65\x33\x1b\x40\xfd\xac\xde\x31\x75\x03\xec\xef\x66\xa2\x5f\x38\xea\x21\xb6\x75\xf2\x36\x68\x6b\x3d\x0e\x68\x9f\xa4\x7f\x66\x5e\x21\xd0\xe6\xb5\x7e\x42\x88\x29\xd0\xf2\xb0\xfe\x98\x35\xba\x80\xb2\x89\xde\xf8\xec\x8b\x40\xd3\x47\xa3\x0a\xf7\x04\x02\x8d\x7f\x18\xd5\xef\xcc\x70\x40\xe9\xdc\x48\xbf\xdb\x95\x80\xa2\xf3\x88\x75\xbf\x69\x03\x0a\x1d\x87\xcf\xe6\xba\x93\xb6\xb8\xc7\x3c\x50\xf4\xeb\xee\xfb\x9e\xc7\x5e\xda\x3c\xf6\xa0\x7e\x49\xc7\x0d\x15\x08\x3d\xaf\xd3\xbf\x69\x47\xba\xc5\xdb\x66\x77\xa7\xc8\xb1\x29\xaf\x27\x55\x53\x53\x47\x72\xbf\x94\x84\x3d\x43\x68\xa7\x8d\x9a\xa6\x45\xaa\xe9\xc1\x77\x86\x8d\xe1\xe7\xcf\x7c\x01\x77\x75\x7d\xca\xcc\x66\xab\x70\xf5\x7d\x4a\x0b\x23\xaa\x36\x1a\x6e\x32\x21\xd4\x69\x50\xe9\x84\x0b\xd2\xd8\x7e\xd3\x24\x9a\xaf\x16\x45\x93\x03\x3a\x35\x07\x9a\x54\x99\x6b\x69\x17\x00\x0a\xe7\xcd\x7b\x99\x4d\x96\x7e\x33\xd9\xd1\xb9\x0b\x8d\xfd\xfc\x89\xab\x3b\x69\x6d\x3c\xc5\x26\xb3\xdb\x9b\x89\xf3\x3c\xb1\xb2\xb8\x9a\xc7\x4a\xbe\x51\xac\x72\x93\x66\x7a\x7c\xea\x73\xbe\x49\x28\xf3\x3f\x72\x78\x1c\x25\xee\x65\x0d\x15\x78\xaf\x96\xf8\xfd\x20\xea\x8f\xb1\xbf\x57\x6b\xfa\xfe\xc5\x43\xf8\xd6\xfd\x36\x23\x35\xaa\x1e\x67\x0e\xec\x4f\x19\xe6\x3a\x1b\x2d\xc2\x6d\xe2\xdf\x70\xd5\x30\xaa\x4c\x9f\x70\x9a\xe0\xd3\xcc\x07\xf1\xf5\xe5\x84\xc3\x5d\x65\x1c\xfd\xde\x21\xd3\x8c\xfc\xc6\xaa\x9a\xd9\x1c\xe3\x1a\x4f\xa1\x3a\xf0\xd0\xa9\x56\xb4\x93\xf4\x9c\x66\x4b\xb7\x74\x9b\x2d\x9c\xb1\x87\x3d\x71\x66\x98\x0a\xe1\x39\x76\xd5\x7c\x9f\xd7\x2e\x81\x71\x7f\x3b\x1d\x47\xe2\x41\x4c\x7f\xb2\x24\x89\x57\x16\x23\x2a\x33\x06\xf2\xde\x3c\xcd\x9a\xfb\xa2\x4c\x4d\x3f\x41\xf8\x9d\x6d\xd5\x0d\xaa\x00\xdb\x38\x3d\x21\x0f\xb4\x39\xfe\x2f\xc5\x36\xf3\x1f\xd9\xde\x89\x96\x3c\x1a\xed\xe0\x71\xf4\xa7\x2f\xe7\xa7\x58\x47\x9d\xec\xcd\xaf\x64\x3e\x57\xa6\x21\xf3\x9d\x52\x8f\x0f\xa7\x6e\xe8\x09\x79\x86\x34\x3f\xd1\xd7\x19\x75\x0c\x5e\x61\xa6\x81\x2f\x75\x60\x84\x2e\x8a\x93\x1a\xeb\x47\x4c\x35\x62\x54\xd2\xd4\x99\xfb\xc8\xc8\x3c\x98\x81\xb6\xb3\x69\x05\x76\x5a\xe7\x2c\x94\xb5\xe6\x8a\xfb\x7a\xae\x3a\xaa\x62\xe4\x79\x98\xdb\x6e\xfc\x23\x7e\x6d\x4f\x15\xff\xb9\x11\x3e\xf4\x07\x2e\x65\x8c\x94\xcf\xf9\xc8\x7d\xed\x9d\x2f\x16\x52\xfd\xd5\x05\x5c\x11\x76\xb6\xba\x4c\x9f\xe0\x94\x55\x4d\x7e\xe1\xd8\xe2\x3d\xe5\x86\x33\x0f\xd4\xd4\xe3\x7f\x4c\x11\xfd\xfe\x27\x89\x7b\xac\x13\xaf\x4b\xe3\xb6\xa9\x83\xf8\xf9\x3f\x1c\xc9\xfc\x07\xd1\x07\x2a\xf1\xf5\x38\xfa\xb4\xd8\x4a\x53\x9a\x9f\xe5\x05\x96\xc1\x6c\xbf\x2d\x1d\x3d\x3c\xad\xa6\x6b\xf3\xb7\x60\x75\x82\xd9\x95\x0e\x14\x57\xa6\x4c\x61\xd5\x06\x99\x07\x33\x34\xd8\x95\x7e\xde\xfb\x96\x3b\xa1\x34\x6d\x0c\x16\x8a\x1b\x0e\xe2\xfa\x22\xbc\xca\x78\x1e\xbc\x2c\x06\xaf\xe5\xd7\xe3\x08\x19\xf7\x5e\xca\xb8\xbf\xb7\x09\xff\xe5\xa2\xbf\x23\xfe\xe6\xdf\xa7\x12\x3e\xe1\xa5\x93\x4f\x37\x4e\xbd\x66\x1d\xa6\x7a\xf5\xa2\x56\x7c\x06\x5c\xe8\x7d\x97\xfe\xc3\x82\x96\xaf\x76\xb0\xa7\xb2\xbd\x73\x8c\x79\x9c\x9d\xcf\xe3\x74\x7d\x1e\x6d\xbb\x48\xe3\x66\x6f\xd6\xc1\x49\xd3\x1e\x47\xcf\x35\x71\x3b\x57\xcb\x63\x55\xf8\x36\x6d\xd8\xe6\x69\xe4\xd7\xfe\x4b\x67\xb3\xfe\x43\x24\xb3\x33\x5c\xab\x9d\xb8\x0f\x4a\xe5\x5c\xc2\xef\xac\x0d\x18\x7d\x9b\xe8\x37\x9f\x50\x7a\xfd\x56\x0b\x09\x5d\x1a\x22\xec\xed\xa6\xce\x19\x44\xb3\xd1\x7e\x22\x03\x0d\xf8\x59\x8c\xb7\x3b\x50\xc8\x0d\xd4\xe1\x08\x1b\xd8\xc9\x88\xbe\x7f\xa0\xdb\x0c\x42\x3c\x82\x5c\x98\x61\x12\xa8\x17\x4a\xb8\x55\x40\xf0\xda\x72\xfe\xfb\xbc\x65\xfc\xff\xcb\xe9\x3e\xb0\xff\x9d\xb3\x84\x58\x2f\xdd\xf5\x03\x9d\x71\x96\x7c\x7c\x41\xb9\xbe\xaf\xd3\xe7\x0c\xfe\xe6\x6c\xf7\xbc\x93\x62\x5e\x04\x9e\xc5\xfc\x98\xb4\x60\x5e\x8d\x49\x3a\xac\xca\x12\x5b\x39\x9d\x56\x5f\x98\xd0\xfb\x59\x6a\xc5\x3c\xa7\xc5\xd3\x5d\xc2\x79\x76\x59\xff\xc6\xe1\xe8\x02\x3a\x99\xcb\x3c\x18\xf3\x38\xc6\xcb\x8d\x67\x7b\x93\xba\xfc\x30\x6b\x1f\xc2\xbb\xfb\x18\x30\x7e\xde\xe1\x40\x30\x65\x58\x0a\xbe\xcb\x45\xc6\x16\xf1\x37\x2b\x56\x45\x58\x31\x1f\x26\xa2\xc3\x60\xd2\x1d\x8f\x32\x30\xa6\x1c\x3e\x32\x66\x3a\xd9\x11\xf1\xc6\x9d\x70\xda\xf0\xb5\xcc\x2c\x89\xd8\xb1\xfa\x08\xbf\xce\xa2\x15\x1a\x61\x5c\xc2\x1d\x4b\xce\x9f\xa4\x27\x10\xa6\xc6\xfc\xa0\xd0\x8d\xcf\xc8\x23\x97\x19\xfe\x4d\x4f\xd8\xbf\x82\xed\xf6\x1d\x5f\x53\x4f\x17\x65\x81\x69\x0d\xf1\x1f\x6c\x69\xdf\x5b\x11\x3f\x93\x32\xc3\xf0\x4f\x73\xc8\xde\xe0\x85\xae\xf4\x2e\x72\x3f\xa8\x85\x2f\xd8\x5e\x17\xea\x9e\x0a\xd8\xb9\x2d\xa6\xdb\xd3\x96\x15\x82\x07\xa3\xc4\xb8\xb9\x81\x49\x10\x45\x2f\xad\xc4\x65\x64\x8d\xfa\xd0\x50\xca\xab\xda\x4e\x08\xcf\x62\xfb\x57\x08\x85\xc7\x55\x5b\x78\xa7\x96\xf9\x30\xab\xb6\x0c\xa2\x77\x8e\x57\x33\x2a\xe1\x71\x2a\xad\x48\x59\xa1\x25\x2e\x33\x90\x22\x6d\x42\xb7\x04\xfe\xbb\xcd\x9b\x09\xb7\x8a\x9f\x5e\x44\x08\xec\xca\x8f\x15\x34\xe3\xb1\x89\x97\x69\xfd\xc4\x26\x3f\xa4\xf8\x1b\x93\xfa\x07\x79\x70\x74\xaf\x9a\x7a\xfc\x8f\xda\x79\xa1\xfe\x83\x71\xde\xfc\xbc\x23\x89\xf5\x0f\x84\x54\xce\x23\x7e\x8b\xef\x73\x0f\x42\x8d\x3d\x9a\x2c\x22\x1c\xd8\x2d\xdd\x67\xa2\x34\xce\xca\xf4\xa3\xfd\x54\xee\x0b\x65\xbe\x36\x84\x9e\x96\x71\x19\xeb\xe0\x0c\x2f\x0b\xa7\xfc\x72\xa0\x6d\x34\x7d\xeb\x6e\xc5\x2b\x88\x37\xd1\xdc\x30\x5e\x81\xed\x97\xfb\x24\xa5\x54\x29\x3e\xe4\x91\x71\xde\x54\x13\x8e\x54\x29\x6a\x63\x69\x9d\xa4\x04\x32\x23\x2f\x45\x8d\xf9\x83\xa9\x3f\x06\x34\xa7\xd7\x15\x8c\x77\xa7\x54\x6d\x24\x65\x85\x54\xc5\x1d\x7f\xf2\x6b\xee\x07\x92\x94\x7c\x81\x72\xbf\xa4\x97\x3f\x93\x05\x49\xed\xff\xa0\xb1\x96\x17\x23\x78\x83\xb5\xfd\x82\x88\x1f\xb2\x62\xeb\xfc\xef\xf1\x45\x3f\x2c\xbf\x93\x5e\xc4\x93\x5e\x54\xb2\x84\xec\x76\xff\x35\x90\xbc\xca\xd1\x3b\x98\x3e\x75\x86\xc1\x72\x52\xdd\xb0\x74\x0a\xa3\x7c\xc8\x6c\x34\xdf\x3a\x37\x68\x19\x43\xdf\x46\xa7\x78\x25\xcd\xbe\xc6\xb8\x78\xda\x5f\x3b\x6a\xac\xa6\x2e\x35\xcd\xc6\x24\x0b\x05\x37\x99\x0f\x93\x69\x22\xf8\x30\xef\x59\x1f\x26\x23\x79\x10\x9d\x51\x32\xf2\x38\x52\x6f\xfc\xce\x9a\xfc\x3d\xe3\xbc\x0b\x79\x6a\x46\xa2\xdf\x35\xfe\xbb\x15\xf4\x4d\x32\x7b\xa5\xd3\x19\x39\xc3\xb3\x80\xf5\x63\x5a\x1f\x20\xbf\xc9\x1c\xff\x1d\xf7\x59\x6a\x79\x97\x98\x8a\x1b\x43\x7f\x27\x04\x31\x5d\xf0\xe5\x6a\x79\x31\x57\x79\xe4\x7e\x41\xe1\xe9\xbc\xae\xfd\x97\x2d\xa1\x44\x60\xb1\x21\xf3\x41\xe6\xeb\x07\x13\xbe\x2f\xeb\xe1\xcc\x9a\xcb\x7d\x92\xa6\x59\xf3\xee\x35\x79\x64\x2c\xc5\x41\x63\xc3\x04\xca\xa3\x47\xe6\xac\xa6\xf5\xa4\xb9\x84\x4f\x5a\xea\xdf\x25\x13\x8e\xab\x12\xc7\xe8\xbc\xd2\xc7\x0c\x07\xb6\x7f\xcb\x40\x1e\x73\x1f\xb0\x3f\xe4\x7a\x77\x22\x0f\xcb\x75\xe5\x4c\x2d\x77\xf8\x68\x7a\x22\x39\xeb\xa7\x50\x67\xbe\xdc\xe6\x4e\x94\x89\xe4\x29\xfa\x12\xef\x27\xd7\x25\x4a\x99\xc7\x75\x14\x57\x72\x0f\x6f\xa3\x78\x90\x67\xb4\x8f\xf5\x65\x1e\x9d\xa5\x1d\x2a\x3b\xfb\x16\x75\x60\xc8\x1e\xf8\x9c\xce\x0e\x59\x4f\xfe\xa5\xf8\x92\x21\x74\x94\xd6\xdb\xf1\xb8\x96\xfb\x3e\xf4\x0a\x14\xba\x70\x41\xf4\x2e\x9e\xda\xa1\x54\xc1\x77\x1b\x1a\xc9\x79\x81\xd0\xc3\x99\x71\x75\x25\xa9\xce\x58\xce\x4f\xa4\x93\xa4\xa9\x3f\x37\xa0\x1d\x9d\x9d\xc4\xf7\xfd\xe7\xa7\x12\xee\x3b\xb0\xf3\x7a\xb2\xbf\x7b\xe1\x46\xea\xba\xd0\xd6\x93\x75\x43\x14\x4e\x6c\x11\x37\xc0\xf2\xc5\x86\xb9\x43\x8d\x19\xcd\x32\x1f\xa6\xd0\x7e\x20\xf3\x62\x14\x0c\x68\xc7\xda\xee\x6b\x4e\xb8\xfe\xf6\xa5\x4e\x82\xe7\xc2\x3b\xce\x0e\x35\x56\x64\x2a\xf4\x5e\xeb\xc0\x23\x23\xd3\x3b\xd4\xf6\x70\x1f\x25\xd1\x3f\xa9\xc0\xf0\x1a\xd5\x4e\x0a\x36\x3f\x21\xde\x4c\x7e\xd4\x7b\xea\x60\xb5\x55\xbb\x86\xe2\x47\xd6\xa2\x9a\x2f\x78\x31\x7e\x7f\x32\x1f\xc6\xcb\x31\x82\x76\x9d\xf9\xca\x31\x94\x37\xcf\x55\x8c\x23\xf6\xb2\xac\x87\x33\xd5\x2a\x89\xfc\x7c\xf2\xd1\x64\xd2\xc5\x1a\x17\xca\xcf\x59\xbf\x62\x03\xad\x3a\x9d\x5e\x19\x64\x7f\xff\xd1\x9b\x68\x9f\xe8\x76\x94\x75\x24\x5a\x9f\xde\x2a\x2a\xdf\xf9\xe2\x24\x53\xab\x0f\xa3\xc6\xfe\x50\x7c\x8f\xf7\x8b\x32\xb5\x01\xb4\xd2\xca\xaa\x98\xd1\x5a\x9c\x6f\x4e\xf1\xaf\xf8\xae\x3d\x7d\xf2\x9e\x33\xde\xc4\xc4\x2b\xf3\x0f\xa7\x7d\xa1\xd4\x9b\x9f\x40\xe9\x81\x2d\x94\x47\x14\xaf\x2b\xa2\x9d\xae\xd8\xe7\x38\xed\xbb\xc5\xd5\xd7\xa8\x66\x54\xb2\xee\x11\xe5\x25\x45\x87\x5f\xd3\xc9\x61\x97\xd0\x85\x29\x10\xf1\x32\x8f\xce\x1d\x3e\xfb\x63\xe8\xc6\x81\x87\x43\x1c\x79\xa3\x9b\xcb\x6a\x5a\x8d\x0e\x47\x85\x1e\x4e\x04\xf7\xcd\xb1\xf1\xe6\x2c\xce\xec\x68\x06\x65\xad\xc6\xd6\x99\xe4\x6d\x7a\xef\xb7\xd0\xa7\x68\x55\xe7\x52\xdc\xec\xb3\x8e\x2b\x53\x9d\xdb\x16\xd0\x7a\x6a\x59\x24\x4e\xea\xe1\x45\x82\x2f\x59\xc7\x87\x51\xa0\x19\x39\x58\xcd\xba\x28\x07\x92\xfa\xb3\x2e\xcc\x29\xe6\x81\x1c\x34\xe2\x8c\xf5\xd0\x29\xce\x2b\x0f\xb6\xf4\xa4\xe7\xbe\xbf\x7a\xf9\x10\xfe\xf9\x6a\x3a\xf9\x1f\xfe\x63\x0b\xf1\x3d\x0e\x8e\x2b\x66\x5e\x4c\x87\x0a\x3a\x7f\xec\x6f\x79\x89\xe2\xcd\xfe\x73\xd5\x14\xb1\xf7\x2f\x78\x43\x3c\x81\xf2\x59\x6c\x7f\xb1\xe8\x43\xc8\xbc\x98\x86\x3c\xa0\xb9\x8a\xdc\x27\xc9\xe1\x2d\xf7\x7d\x9b\x1a\x97\x49\x15\x49\x2b\xa3\x2c\x5a\xa5\x13\x96\x31\x1f\x66\xec\x35\xee\x0f\x35\xc2\x39\x9f\xe6\x65\x48\x58\x21\x55\xb4\x7a\xeb\xec\xa2\x77\xef\x58\xbd\x9b\xf6\x59\xe5\xd0\x3d\xc2\xee\x7d\x62\xbf\xf8\x82\x0f\x43\x76\x9f\x68\xac\x4a\xfb\xe4\xf1\xfe\xfd\xa8\x06\x5e\xe1\xc4\x27\xb6\x93\x33\x27\xd1\x37\xa8\xb8\x35\x93\xd6\xc9\x49\x6d\xce\x44\x4f\xce\x65\xe5\xb2\xe3\x15\x71\xb4\x34\x4f\x3a\x6d\xa2\xf8\x79\x32\x79\x17\xed\x0b\x15\x35\x47\x98\x57\x53\xf8\x1d\xf5\xe4\xae\x98\x7a\x8f\xf4\x34\x2a\x16\xfd\x4e\x79\xa8\xdc\x3f\xe9\x60\x5b\x1e\xb9\xaf\x94\x67\x9f\xf5\xf4\xee\x6e\x8f\xd2\x69\x7f\x74\x1e\x90\x41\xbc\x7a\xbb\xd5\xcc\x0b\xb1\xd9\x9c\x4d\xde\x3b\xf9\x04\xfb\xf7\x04\x33\xae\x44\xc9\xba\x38\x43\xaf\xed\x22\x1e\xcd\xa0\x2d\x7c\xfa\x53\xbf\x52\x46\xf1\xa6\x43\xe3\x7d\x94\x47\x34\xdd\xb7\x5f\xdc\x94\x3d\x7a\x90\xc7\x93\x5a\x3c\x9e\x19\xc5\x95\x9c\x5a\x3e\xcc\xaf\x7d\x89\xe7\x75\xf6\xe5\x70\xf2\xc0\xb3\x33\x26\xd2\xfe\x77\x4e\x83\x4f\x28\x67\x23\x98\xe1\x79\x2e\x90\x95\x9e\xce\x6d\x89\xa3\x95\x78\xde\x3b\x83\x56\xdc\xb9\xbc\x1d\x74\x52\x3a\xdf\xe3\x50\x0e\xbf\xcf\x79\x3a\x67\x9d\x6e\x79\x9b\xf6\xa5\x33\xa7\x5e\x52\x9c\x3d\x9d\xfd\x91\xf6\x8f\xfa\xfd\x93\x3e\x7f\x02\xba\xb5\x01\xfe\x6e\x0c\x74\x7d\xca\x78\x46\x0f\xb5\xaf\x79\x0f\xb5\x3a\x07\xb6\x80\xc6\x13\xbe\xdf\x3d\x50\xb3\xae\xbf\xc1\x39\x27\x60\x44\x00\xd7\xf5\x0d\xfc\x41\x67\x1f\x23\x6b\x60\x7f\x31\xe3\x14\x7b\x7e\x00\x6c\x2e\x00\xd2\xea\x98\x59\x08\xec\x28\x01\xe6\xbc\x07\x0a\x7a\x02\x0b\x0d\x19\xef\x5f\xf2\x04\xd8\x1a\xca\x77\x70\xb7\x39\xb1\xde\x7f\x5e\x0a\xd7\x7c\xf3\xba\xb1\xe6\xfb\xf6\x2e\xc0\xee\x21\x40\x61\x28\x70\x78\x17\xeb\xfc\x5f\xcc\x62\x1e\xc5\x9d\x6a\x1e\x7f\x4d\x07\x76\x5f\x07\x3e\xbf\x62\x5c\xb9\xe6\x8b\xfb\xff\x5f\xe1\xff\x62\xfc\xe8\x0b\x74\xda\x0d\xbc\x7f\x00\x48\xf1\xea\x8f\x31\x80\xea\x62\xe0\x17\x7f\x40\xf5\x44\x1d\xef\x41\xee\xef\x70\x4b\x07\x50\xcb\x05\xae\x76\x05\x34\xcc\x18\xe7\x1c\xb8\x9e\xf1\x5e\x6d\x3d\xd6\xea\x18\xa9\xc9\xf7\xfc\xc7\x64\x02\x7b\x23\x01\xe9\xa4\x56\x74\x1b\xb0\x6c\x0e\xec\x88\x00\x66\xec\x05\x0a\x8a\x01\xa7\xe7\x40\xde\x4e\xc0\x3d\x51\xe0\xfe\xde\x40\xce\x45\x60\xb9\xc0\xb7\xa5\x7c\x29\xe7\x2d\x90\x5c\xc2\x98\xde\x96\x29\x75\xf7\xfe\xf3\x92\xb9\x87\x40\x81\x21\xf0\x9d\x2e\x50\x90\x05\xfc\x30\x96\x7b\x86\xfc\xd6\x0b\x28\x54\x65\x4e\x87\xac\x83\xd2\x10\xff\x97\xed\x97\xf1\x7f\x99\xff\xf1\xf6\x24\xd0\xe6\x20\xf0\xa2\x86\x71\xec\x5f\x8c\x80\x76\xd6\xc0\x83\x03\x40\xbb\x27\x5f\xf0\x1e\x7a\x00\xdd\x32\x81\xcb\xca\x80\xda\x6d\xe6\xbf\x68\xac\xae\xeb\x6f\x70\xc4\x0d\x18\x1a\xc2\xb8\xff\xe8\x5e\x40\xe9\x69\x60\x5c\x3c\x20\xf9\xac\xe4\x17\x05\xfd\x81\xa9\x21\x75\xb8\x7f\xee\x76\x60\x5e\x1c\xe3\xde\xd2\x7e\xb0\x39\x8d\xb5\xf8\xb3\xf6\x01\xb1\x96\x8c\xff\xaf\x5d\x04\x64\x7d\x64\x8c\x5b\x9a\x1f\xe9\x99\xe7\x96\x01\x47\xde\x32\xde\x7d\xde\xfa\x8b\xfe\x07\x2e\xc0\xab\xd6\xdc\x17\xa1\xe6\x3f\xfa\x60\x34\xb4\x5f\xc6\x01\xff\x39\x01\x34\xcf\x04\xde\x85\x03\x4d\x8f\xd6\xf1\x1d\x1e\x1f\x05\x94\xd7\x02\xf7\x7f\xe7\x79\x91\x79\x0f\x57\xe2\x81\xf6\x25\xec\x07\x5d\xdd\x81\xb3\x4b\x81\x9e\xd6\xc0\xf1\x3c\xa0\x7f\x22\x70\xb0\x23\x30\xc4\x16\xd8\x37\x97\x75\x41\x76\xb7\x66\x9c\x7b\x7b\x19\x60\xfa\x11\xc8\xbb\x05\x58\x0f\x05\xb2\xc3\x81\x59\x46\xc0\xe6\x33\x80\x94\x37\x6f\xea\x09\x78\x8d\x05\x32\xbb\x01\x41\x89\x40\xe6\x6c\x20\x26\x18\xd8\xf0\x0f\x90\x74\x87\xef\xc5\x4b\x73\xb2\xe9\x77\x60\xd7\x6e\x20\x4b\x13\x38\x52\xc9\x18\xd7\xa5\xee\x40\xf6\x4b\xe0\x67\x65\x9e\x17\x69\x6d\xe7\xcc\xf9\xbf\xed\x6f\xc8\x7f\xf8\x73\x00\xa0\xb4\xae\x4e\xef\xe2\x79\x15\xe3\xd7\xdf\xe4\x3d\xd8\x01\xca\x3b\x81\xb3\x16\x80\xca\x14\xe0\xa4\x3b\xd0\xd9\x09\x38\xe2\x04\xf4\xdc\x01\xec\x2b\x63\x5d\x21\xc9\x7e\xad\x6a\x60\x7b\x22\xa0\x77\x08\xd8\xe6\x05\x8c\xcf\x05\xb2\x1d\x80\x29\xa6\xcc\xd3\x98\x11\x01\x6c\xfc\x11\x98\xd3\x11\x48\x0b\x64\xbc\x7b\x7d\x6b\xc0\xff\x08\x6b\x05\x45\xdd\xe7\xfb\xf0\xd2\x89\x64\xbd\x0f\x90\xe9\x02\x6c\x28\x01\x76\x95\x00\x1b\xbd\x80\xc3\x9b\x59\xf7\xe0\x52\x4b\x9e\x8f\x47\xa9\x40\x96\x05\xf0\xce\x1f\xc8\x8c\x16\xf8\xbf\xf7\xff\x6d\xbf\xcc\x7f\x68\xc8\x7b\x90\x71\xff\x5a\xbc\x5b\xdc\x7b\xfe\x2f\xde\x83\x72\x1c\xdf\xbd\x57\x05\xaf\x03\x29\xae\x96\x9d\x62\x1e\xd9\xf6\x07\xc0\xa0\xfb\xc0\xb6\x63\xc0\x70\x07\x60\xcb\x70\xc0\xf0\x2c\x90\xb1\x01\x30\xdb\x07\xa4\xf9\x02\xd2\xf9\x41\xc6\xfd\xd7\x35\x05\x16\x9e\x03\xd6\x24\x32\xa6\x97\x6c\x2e\xe5\xfc\x40\xd2\x65\x60\xb5\x05\xf7\x41\x90\x7c\x22\xd5\x82\xb5\x04\xd6\x17\x00\x47\xca\x80\xf5\x36\xc0\xa5\x36\x52\xb6\xcc\xb1\x6c\xa3\x39\x73\xfd\x52\x17\x01\x35\x17\xbe\xd6\x41\xa8\xd5\xbf\x68\xd0\x07\xa3\x96\xff\xd2\x94\xc7\x6f\xf1\x1e\x6a\xef\xb9\x4b\x7f\x3f\x0c\x38\x71\x10\x50\x08\x06\x0e\x2b\x03\xcd\xa7\x00\xe5\xef\x01\x95\x4b\xc0\xae\x03\x8c\x63\x6e\xfd\x1e\xe8\x33\x0c\xc8\x99\x05\x68\x1d\x04\x36\xbd\x05\x0c\x1a\xb3\x4e\xcd\xb8\x6a\x20\x25\x84\xfb\x3e\x24\xfc\xcc\xb8\x7f\x62\xae\xb4\x77\x73\xbf\x03\x9f\x36\x7c\x1f\x3e\x7c\x05\x90\x50\x0a\x24\x76\x02\xe2\xce\x31\xd7\x23\x51\x70\x01\xa5\xf1\x50\x22\xb0\xc6\x17\xf8\xce\x18\x90\x4e\x71\xd5\xe7\x81\xa4\x10\xe0\x9d\x53\x9d\xfd\xb5\xfc\x97\x6f\xe8\x40\xc8\x78\xb8\x8c\x77\xcb\xb8\xbf\x3c\x0f\x72\xbf\x8f\x6f\xf1\x1e\xe4\x7e\x17\xe5\xc2\x5f\xa4\xd8\xd5\x64\x0c\x50\xa0\x0c\xb4\x1b\x0f\x64\xdf\x03\xba\x4f\x01\x36\x7d\x00\x06\xcd\x04\xd2\x8b\x81\xe1\x43\x81\xa4\xad\xc0\x98\x9f\x19\xff\x9e\xec\x03\xc4\xe5\x03\xd3\xf3\xd9\x4f\xa5\xb8\x19\xad\xc3\x3c\xc2\xd8\xa7\x8c\xf3\x4a\xa7\xba\x04\x75\x60\xc5\x79\x20\x33\x06\x88\xf1\x00\xb6\x17\x01\x31\x2f\x80\x43\xed\x80\xe8\xcf\xc0\x85\x4d\xac\x91\xf0\xa0\x14\x88\x6b\x02\xfc\x7d\x0e\x88\x14\x5a\x58\xb2\x0e\x84\xcc\xff\x90\x75\x20\x1a\xea\x21\xfc\x2e\xaa\xa6\xb5\xbc\x07\x71\x7d\xec\x2b\xfd\x13\xd1\xd7\xa2\x16\xf7\x77\xe5\xb1\x4c\xe0\x9b\x05\x62\x7e\x72\xc2\x39\xce\x6e\x32\x01\x54\x1d\x81\x34\x2d\xa0\xd7\x71\xe6\x7d\x68\xe9\x00\x71\x65\xc0\xa8\x54\x20\xd6\x0b\x98\xe8\x05\x44\x2a\x01\x56\xf7\x58\x13\x46\x9a\x87\xd0\x33\x80\xe7\x00\x20\x62\x25\x10\xba\x0d\x08\xef\x0e\xc4\x9f\x06\x22\xac\x80\x8c\x17\x40\x98\x0f\x63\x6a\xd2\x1c\x1d\x3c\xc6\x1a\x2a\x97\x4a\x81\xb0\x1b\xc0\x83\x72\x20\xfc\x19\xf0\xe1\x23\x10\xa8\x52\xff\xb9\xcb\x3c\x00\xb7\x33\x02\x0f\x17\xfd\x30\x66\xdf\x17\xb8\xbf\xf0\x83\x87\x62\x5d\xc8\xb8\xbf\x3c\x0f\xdf\xd2\xbd\xa8\xc5\xfd\xc5\xfd\xe7\x7c\xe1\x17\x59\xa2\xbf\xca\xfa\x2b\x40\xcb\x2b\x8c\xfb\x77\x5a\x07\xc4\x1f\x05\xfa\xbe\x00\x62\x14\x81\x61\x46\x6c\x97\xf1\x41\x60\x59\x09\x60\x11\x05\x04\xa5\x03\xb3\x1d\x01\x7f\x6f\x40\xca\x1b\x25\xff\x0d\xac\x06\x02\x5f\x02\x71\xb7\x80\x20\x3d\x8e\x01\x81\xcf\x98\x7b\xb7\xb4\x18\x38\xbc\x06\x08\xf8\x04\x5c\x9e\xc0\x7f\x2b\xc5\x87\x40\x1d\xe0\xc3\x25\xc0\x47\x49\xf0\x3f\x7c\xea\xf3\x3f\x64\xbb\x65\x3c\x5c\x1e\x1b\xf2\x5f\x1a\xf6\x7d\xa9\xd5\xbd\x90\xfd\x40\xe0\xb6\x32\xee\xbf\x43\x54\x97\x72\x05\xce\x9b\x29\xfc\x29\xf9\x04\xa0\x70\x9f\xb5\x4d\x5a\x3f\x04\xa2\x7a\x01\x6a\x71\x40\xa8\x2a\x20\x1d\x64\x42\x1e\x03\x86\xde\x80\xbf\x2b\x60\xb6\x93\x63\xa3\x9d\x0e\xe0\x63\x22\x9d\x75\x00\xef\x6b\x80\x7f\x05\xb0\xf8\x2e\x20\x9d\x00\x7d\xf2\x78\x1e\xbc\xca\x38\x57\xf2\xee\x0a\x1c\xbd\x02\x2c\xfa\x89\x63\xb7\xe7\x24\x9e\x07\x2f\x3b\xd6\x7a\x91\x9f\x7b\x43\xbb\x6b\xfb\x7f\x58\xd6\xe7\x41\xdc\xfb\x20\x9e\xbf\xe0\xbf\x34\xec\xfb\x72\x46\xf8\x8b\x8c\x7b\xcb\x7e\x50\x2c\xf0\x6b\x19\xf7\xcf\xb6\xe4\x31\x7d\x1a\x8f\x89\xc2\xaf\xa4\x7d\xaa\x89\x3f\xfb\x71\x47\xf1\xbc\x34\x2a\x01\xdf\xae\xac\xff\xb0\x68\x3b\x30\xde\x00\xf0\xd4\x61\xdc\x7f\xc1\x6b\xc0\xf5\x1e\xe0\xde\x1a\x58\x6a\xc5\x28\xc7\x8a\x93\xc0\x5c\x6d\xce\x05\x5c\x34\x81\xc2\x4c\xc0\x39\x92\x4f\x6c\x4e\x55\x3c\x0f\xd2\x9e\x23\xc5\x07\xe7\x77\xc0\x87\x2b\xc0\xac\xf1\xf5\xed\x36\xef\x5c\x9f\xf7\xd1\x90\x07\x71\xd7\xbf\xbe\xfd\x0d\xf9\x2f\x15\x65\xf5\xed\x2f\x1b\x22\xfc\x40\xf0\x80\x1a\xf2\x3f\xe4\xfe\x27\x71\x82\x07\x12\x2a\xf4\x62\x96\xba\x71\x3e\xb6\xe8\x33\xd0\x6d\x0b\xe0\x61\x0a\x68\x5d\x07\xdc\x9c\x81\x31\xe6\x80\xcb\xef\x80\x75\x3b\xb6\xcb\xa5\x8c\xf9\x1c\x7e\xea\xc0\x6c\x4f\xee\xc3\x38\x33\x95\x73\x8a\x19\x8b\x81\xc2\xc1\xc0\x0c\x57\xe9\xe4\x08\xd8\x56\xf2\x3c\xd8\x78\xb3\xee\xa0\xad\x1a\xef\x9b\x0d\xed\xae\xd5\xbf\xf0\x17\x3c\x88\x83\x3c\x6a\x97\xf3\x78\x5b\x8f\xbf\xe7\x55\xff\xfa\xf6\x9f\xd4\xa8\x6f\xff\x5e\xd1\x35\x54\xe6\x7f\xe4\x8b\x75\x22\xf3\x3f\xd2\x45\x15\x3a\x49\x74\x27\x8f\x15\x38\x7a\x88\x78\xbd\x48\x3a\xa5\x1f\x05\xdc\x52\x39\xdf\x70\xd6\x07\x34\x34\xb9\x07\xa3\xde\x04\xc0\xee\x16\x60\xfe\x19\xb0\xfd\x0d\x70\x38\x0a\xd8\xde\x03\x7c\xef\xb2\xa6\x50\x4c\x2e\xf7\xdc\x4a\xd7\x05\xcc\x7e\x03\x0a\xde\x00\xa6\x77\x80\x83\xb1\xc0\xc4\x4a\x3e\x67\x4d\xe8\x0b\xdc\x73\x01\xc6\x9b\x00\x7f\x4c\xa9\xb3\x7b\x64\x49\x7d\x7b\xfb\x9f\xe4\xb1\x9f\x32\x8f\x7d\x2e\xf1\x28\xf3\x5f\xce\x8a\x78\xd0\x90\xff\xd2\x90\xff\x21\xeb\x9f\xd4\xf2\x3f\x84\xff\x24\x8b\xee\xbb\xab\xe4\xdb\xba\x42\x5f\x63\x89\xd8\x67\xe6\x89\x7c\xc4\x5e\x19\x68\xf6\x1b\x30\xdd\x19\xe8\x11\x06\x58\xdf\x04\x74\x3f\x00\x16\xaa\xc0\xc4\xdd\x80\x59\x15\x30\xfb\x23\x30\x7e\x34\xe0\xad\x05\x18\x27\x01\x91\x49\xc0\x58\x63\x20\xf5\x25\x30\x3a\x08\xd8\x36\x11\xd0\x73\x02\xf6\x2d\x07\x46\x86\x03\xe7\xa9\x4e\x0e\xfc\xd8\x0e\x18\x96\x02\xbc\xbc\x01\x68\xef\x65\xfb\x06\xfc\x56\xdf\xde\x1e\x9f\x78\xec\xe2\xc7\x63\x67\xc1\xa3\xfa\x16\xff\x43\xb6\xbf\x21\xff\x43\x5e\x07\xe9\x82\x5f\x96\xa2\x29\xaf\x03\xae\xb2\x45\x6c\x67\x74\x26\x50\x47\x91\xee\xab\x79\xdc\x53\xa2\x4f\x70\xea\xaa\x44\x75\x2b\xcb\xe0\x26\x54\x35\x98\xf8\x6b\xb3\xb3\xaa\x9b\x00\xe3\x6e\xca\xcb\x07\x2d\x01\x46\x77\x6f\x39\xce\xb8\x19\x30\x72\x7e\xcb\xa2\xe9\x55\xc0\x50\xb5\x96\x3f\x2e\xdc\x05\x68\xed\x68\xf9\x22\xb4\x25\x30\x78\x7a\xab\x66\x49\xc7\x81\x01\x27\x5a\x16\xe4\x2c\x00\xfa\x75\x6d\x69\x59\xf6\x02\xe8\xdb\xa6\x45\x6a\xe5\x6e\xa0\xb7\xb9\xf2\xb6\x9b\x87\x00\xf5\xb5\xcd\x9f\xfd\x72\x1f\xe8\xd9\xb2\x79\xe6\x67\x37\xa0\xcb\xf2\xa6\x84\xdb\xa9\xea\x2a\x52\x5f\x83\x36\xe2\x9c\xd1\x6a\x15\x8f\xcd\x44\x1f\xa5\x5a\xfe\x87\xdc\xff\xe8\x1b\xfc\x97\xec\x52\xae\xa2\xc9\xfd\x7f\x92\xb7\x29\x53\x1d\x6f\xe5\x11\xee\xae\x1b\xaa\xda\x8e\xd4\x83\xfd\xd6\xb6\xa5\x9d\x73\x61\xbb\xf6\x54\xfd\x71\xdc\xaf\x4a\x75\x5a\xeb\x57\xdc\xb5\xdd\x28\xa7\x2b\xe1\x39\x3a\x9f\x7b\x18\x2b\x47\x02\x83\x9b\xaa\xb9\xf6\xb2\xc1\x54\x8d\x0d\x3d\x15\x46\xdd\xc1\x3e\xf5\x2b\x3d\x6d\x2d\xff\x51\xd0\xea\xbe\xad\xa7\x97\x6b\x80\xc2\xa8\x2e\x7b\x7a\x6e\x0c\xcc\x42\x50\xc7\xab\xea\x3d\x12\x46\x01\xaa\x9d\x7b\x2e\xdc\xbc\x08\x68\xe7\xa1\xb6\xb2\x58\x11\x68\xb3\xa4\xc7\xbb\x13\x83\x81\x56\xc1\x3d\xfa\x5d\x1f\x02\xb4\xf8\xa3\xbb\xe7\x13\x5b\x40\x79\x43\xb7\x17\x1f\x96\x01\x4d\x0e\x74\x22\x1d\x88\x46\x1d\xdb\x0f\xe7\xba\x4b\x6b\xea\x0f\x82\x99\x2d\x04\xee\xdd\xd4\x48\x1a\x8f\x77\x14\xf6\x0b\xbb\x4b\xb2\x98\x07\x22\xf7\x3f\xca\xae\x51\xa6\xea\xaf\xcc\x7f\x49\xaa\xee\x44\xf5\xaa\x95\x8f\xbb\x52\x35\x35\x3c\x54\x8d\x22\xa3\x7f\xb8\x3a\xe1\x3f\x0b\x7d\x7b\x51\x5d\xda\x39\xb3\x0f\xd9\x6f\xab\x39\x80\xfc\x62\x7c\xea\x00\xaa\xeb\xeb\xf6\xd0\xa2\xdb\x74\xdd\xd2\x74\x16\x61\x1e\xd0\xb1\xbd\xae\x47\xe7\x55\x40\xdb\xac\xa1\xd1\x3a\x4d\x81\x96\x7a\x43\x57\x9a\x19\x02\xcd\x74\x75\xaf\x38\x26\x01\x8d\x56\xeb\xbe\x59\x32\x08\x50\x98\xae\x7b\x2e\x96\xf6\x2e\x5d\x83\x8d\x54\xaf\xd3\x89\xdd\x49\x15\x44\x6d\xcd\x63\xf4\x73\xcd\x2b\x57\xa8\x32\x38\xe4\xfa\x43\x52\xa2\x19\xfc\xcb\x9f\xf4\x44\x06\x4c\x61\x7b\x7b\x0b\xbe\x83\x9a\xe0\x87\x74\x7d\xcb\xa3\x2a\xf9\xc3\xc1\x66\x5c\x1d\x2b\xf1\xe2\xdb\x73\x05\xbf\xb6\xa0\x6a\x6f\xd6\x2f\xaa\xf4\x7a\x83\x42\xb7\x56\x6c\xbf\x3a\xf9\x7b\xac\x0a\x77\x97\x0e\x7d\xd1\x9f\x54\x2b\xfc\xc1\x3c\x81\x85\xcf\x34\x29\x22\x38\x27\xeb\xd2\x4e\x32\x35\x9d\x9a\x4d\x63\x52\xab\x91\x54\x97\xd3\xbb\xa0\x4f\x78\xb7\x86\x0a\xa3\x34\xad\xf5\x8c\x44\xdd\x72\x9c\x51\x6b\x8a\x51\x26\x7f\x0f\xa0\x35\x39\x4e\x87\x91\x76\x93\xfe\xb3\x29\x76\x9b\xb8\xf2\x7d\x7f\xe3\xe5\x31\xb4\xf7\x18\x19\x6e\xa0\xd8\x3e\xb6\x67\x21\xd5\x5d\xc7\x04\x1c\xa6\x3a\xbc\xe1\x6f\x97\xe9\x5e\xd6\xe8\xa3\xf7\xe9\x9d\x0d\x5e\xbd\xad\xc7\xff\xd0\x7d\xc8\xa3\xa6\x3d\x8f\xfd\x3e\x7e\x39\x3f\x7b\xad\x04\xff\xa7\xbc\x3e\xff\x27\xbd\x9a\xcb\xcb\x49\xd5\x83\x28\x33\x88\x4d\x1e\x44\x27\x8a\xf0\x3e\xda\x47\xf9\xf9\x8f\xa2\x0c\xcb\x2b\x47\x9f\xe6\xc5\x25\x7c\x0c\xf9\xfb\x74\x70\xe2\x60\x1e\x69\x4c\xfe\x60\x78\x79\x1c\xcd\x83\xe6\x20\x33\x7a\xdd\x3d\x87\xf9\x21\x4a\xeb\x2c\x45\x26\x6a\xb9\xa7\x2d\xcd\x9c\x95\xc9\x40\xba\x31\x6c\xb9\xdc\x84\xd6\xa6\xa5\x27\x2b\x4d\x58\xbd\xf6\xa2\x5c\xd5\x72\x65\x24\xed\xd9\x53\xfe\x58\x4f\x7b\xd8\x94\x4f\x9c\xbb\x98\xdf\x3d\x40\x75\x4b\x0b\xcd\xef\xf8\xa6\xf5\xce\xbb\x84\x7f\x4f\x6a\xf1\x9a\xf6\xb4\x09\xe2\xde\xea\xd8\x7f\x79\x1c\x2d\xf0\x5d\x59\x17\x85\xe7\xa7\xf0\x1c\xeb\xc1\x6c\x8e\xec\x4b\x2b\x63\x5d\x14\xeb\xfa\x24\x5d\xe7\xe7\x1c\xab\x34\x92\xea\xae\x61\x6a\xa3\x1c\xf8\xf9\x8f\xa5\xcc\x51\xd6\x81\x71\xd5\x61\x1e\xcc\x2c\x67\x53\x62\xa4\x5a\xb9\x99\xd3\x89\xcc\x64\xa3\x15\xb1\x7b\x86\x4d\xb3\xa6\xfb\xdd\x1a\x41\x53\x69\x1e\x55\xa2\xa6\x5f\x61\xfb\x19\x4f\x07\xec\x77\xa8\x10\x42\x64\xff\x6a\x20\xcd\x90\x7d\x67\x9e\x49\x7b\x7f\xee\x48\x62\x6f\xc8\xca\x21\xb3\x13\xc3\x7c\x78\x4c\xe1\xd1\x6b\x2b\xf9\x85\x5d\x35\x2b\x49\xcf\x5c\x7a\x8e\x10\x98\x19\x2d\x6f\xd3\x3d\xc7\xe9\x76\xbf\x32\x33\xe5\xde\x67\x62\xb4\x4c\x11\xb8\xae\x99\x51\xcd\x7f\xe8\xc6\x6c\x51\xef\xcf\x7d\xa0\x2a\xd8\xee\x24\xa1\x8b\xb2\x72\xae\x1e\x9d\x28\xc2\x96\x1a\x13\x4f\x21\xc0\x77\x22\xa1\x41\x5e\xf9\x93\xc9\x0b\xdd\x1f\x58\xe7\xf3\xb7\xb4\x25\x3f\x9f\xaa\x2b\x78\x30\x9e\x33\xeb\xf1\x60\xb4\x74\x1c\xe8\xe4\xd2\xe3\x80\x03\xa1\x95\xcd\x57\x88\x44\x1d\xf3\x2c\x78\x74\x1b\xc5\x9e\x38\xcf\x6c\x20\x79\xe2\xbc\xf1\xdc\x71\xca\x7d\xf2\x34\xaa\x09\xb8\xb7\xe5\x3a\xb5\x6b\x51\x30\xed\x61\xae\xd5\x7c\xa3\xde\x2d\x35\x3b\x85\x5f\x97\x8e\xe7\x27\xc2\x37\x23\xe7\x6a\xdd\xa0\xdf\x3b\x7f\x7a\x4c\x37\x2f\x9d\x6e\x7c\xa0\x6f\xe8\xa0\xc1\x76\x4f\x13\xeb\xc1\x4a\xf4\x01\x61\xde\x50\x9a\xea\x70\x7a\x1a\xc9\x53\x0d\xb8\x1b\xcb\x51\x13\xca\x1c\x22\x61\x46\x6a\x13\x01\x8f\xcd\xe9\x39\xfa\x0c\xb5\xa5\xfd\x60\xde\xdc\xe9\xb4\x2e\x64\x1e\xcc\x74\xcd\xd9\x74\x5f\xd3\xfc\xcf\xfa\x3c\x98\xe1\xb3\xe7\x12\xee\xdf\x67\x9d\x2b\xeb\xbb\x17\xce\x27\x7f\xa9\xd3\x85\x59\x2c\x22\xf3\xe2\x6a\x9e\x07\x6f\x57\x56\x62\xf2\x76\x1d\x43\xcf\x7b\x71\x32\x7f\xe2\xe2\xd7\xfc\x0e\x3e\x0e\x81\xe4\xe7\x3e\xa9\xac\xa8\xe0\x53\xb0\x99\xf0\x09\xef\xaa\x22\xc2\x31\xbd\x7f\x38\x4e\x11\xca\xfb\xc5\x75\xd2\xef\x5e\xa4\xfb\x80\xfc\xc4\xb3\xf1\x3b\x56\x70\x11\xb8\xe6\x1c\x25\x1e\xed\x45\xbf\x1c\xd6\x45\x49\xa9\x64\xbf\x8e\xf7\x36\xbb\x8c\x2f\x74\x70\x42\x94\xa6\x11\xca\xe2\xfb\x71\x06\x65\x8a\x0b\xde\xda\xeb\xd3\x6c\xcf\x9d\x43\xa8\xe3\x2c\x8b\xb9\xf4\xa9\xd6\x6d\x5c\x09\x85\x31\xfd\xdb\x9d\xd6\x8f\x7e\xc0\x02\x52\xa8\xd3\xbc\xcc\xfd\x91\x7a\x4e\xf2\x22\xdc\xa2\xdd\x79\x1f\xb6\x3b\x5c\xd6\x85\x09\x16\x27\xba\xe0\xec\x0e\x34\x63\x41\x89\x8c\xf3\x06\x0e\x37\xa4\x19\x0e\x9e\x65\x4d\x71\x22\xa4\x92\x99\x36\x21\xab\xfd\x29\x87\x0b\x5a\x1b\xcb\x4a\x25\xed\x37\xd2\x5e\x17\xf8\x74\x3b\x7d\x62\xe0\x9d\x43\x14\x27\x03\x75\x2e\xb2\x72\x41\xc5\x4f\xe4\x57\x7e\x9f\x7e\xa3\x99\x5f\x22\x74\x61\x16\x89\x7e\x07\xee\x97\x6a\xbe\xd0\x45\x49\x58\xc5\x7a\x47\x31\x9a\x53\x69\xdf\x0b\xd1\x9e\x45\x68\xf9\x52\x63\x47\xca\x17\xbc\x04\x2f\xc2\x4d\xd3\x8d\xf2\x21\xfb\x23\xee\x14\xcd\x6c\xee\x30\x1f\x64\xf2\x6e\x4f\xca\x8f\x64\x1e\xcc\x08\xd7\xc5\xe4\xc5\xfd\x77\x2e\x21\xaf\xec\xba\x8e\xed\x56\xb6\x0a\x11\x78\x4e\xe8\x52\x1e\x23\xfe\x06\xe5\xe4\xb5\x7c\x98\xf7\x03\x69\xe6\xc2\x9f\xe9\xd3\xbd\xe5\xc8\xa1\x56\x14\xa9\xa2\x9a\x3b\xd3\x8c\x47\xe6\x2e\xa1\x77\x8e\x9c\x10\x45\x78\x66\xd4\x27\x0a\x03\x88\x0c\xcf\xa7\x79\x8b\xb8\x5c\x4e\x39\x6e\xd4\xe0\x0b\xb4\x44\xc3\x2a\x6f\x93\x4e\x4c\xe8\xfc\x67\xc4\x23\x0a\xf5\xfe\x44\xf3\x11\x38\xa4\x86\x3b\xdd\x68\x7c\x39\x2f\xd1\xd5\x76\x94\x11\x2e\x2f\xb0\x27\xc6\xb9\xdf\x45\x17\x5b\xf6\x32\xe6\x83\xb8\x0f\x63\x5e\x84\x53\x10\xfb\xf3\x74\x78\xd1\x6a\xb4\x72\xf3\xa5\x5d\xdc\xd4\x9f\x79\x3f\x06\xaf\x98\x2f\xa0\xf3\x69\x19\xbd\xee\xbb\x75\x19\xa1\x46\xaa\x57\xb8\x8b\x49\x93\x71\x11\xa2\x92\xb1\x42\xdc\x68\x88\x77\x50\xa2\x7e\x47\xb5\x7c\x18\x2f\xde\x89\xe3\x37\x1b\x10\xef\x27\xde\xc6\x92\x98\x68\x09\x19\xce\xf4\x8e\x09\x91\xdc\xb9\x25\xbe\x5f\x38\x45\xa6\x84\x17\xa9\xb4\x5f\x24\x0c\xcc\x23\x8f\x4d\xb0\xdc\x4b\xf1\x65\x55\xd1\x69\x62\x26\xae\x7c\x79\x93\x22\xdb\x4a\xc3\xa7\x34\x7f\x2b\x9a\xfd\x49\x11\xbe\x21\x2f\x26\x90\xd6\x45\x58\x15\xc7\xad\xa5\xdd\x5d\xe9\xf9\x2e\xf2\x5a\x40\xeb\x7f\xfe\xc7\x45\x14\xb6\x5d\xc0\x9f\x6e\x7f\x7f\x09\xe1\xd8\x72\x5f\x28\x73\x2b\xee\x9b\x63\x32\x69\x39\xed\x87\x23\x35\xc3\x29\x7f\xd2\xf4\x8e\xa2\x4a\x6f\xcf\x11\xd1\xa4\x42\xd1\x4e\x7f\x25\xe5\x21\xf8\x23\x41\x28\xb7\xd6\xf2\x61\x6c\x94\xe8\xa3\x65\x3e\xcc\xba\xb1\x03\x88\x2f\x99\x9a\x3a\x9a\xde\x31\xf5\xd2\x14\xda\xff\x52\xdb\x3a\x92\x3d\x29\x95\x4c\x18\x48\x7d\x12\x4e\x1e\xb8\xce\x6a\xed\x0c\x1e\xb3\x69\x9e\x52\x9e\x97\xf5\xe3\xf7\x3b\x49\x38\xdf\xda\x47\x57\xe9\x89\x25\xb9\x3c\xa2\xf5\xb1\xba\xec\x0d\x79\x74\x42\xdb\xfa\xbc\x18\xee\x17\x14\x34\x74\x21\x3d\xd7\xc5\x8f\x3d\x89\xa5\xe5\x69\xe5\x43\xd9\x99\xdb\x3b\x3f\xfa\x6b\x47\xd5\x20\xfa\x54\xb9\x2f\xd4\x94\xef\x97\x3f\x67\x3f\x88\x22\xf4\xdd\x70\x40\x34\x79\xd9\xd0\x67\xb1\xc4\x9f\x19\xd0\x67\x15\xe5\x11\xdd\x6d\xe2\xc9\x0f\x5a\xdd\x5f\xcd\xfa\x1f\x65\x29\x22\x43\xdf\x20\x2a\xa0\x19\x67\x99\xff\x90\xd9\xa9\x03\x29\x30\x65\x24\x72\x9c\xcc\xcc\xd3\xa3\x48\xb2\xf1\x06\xe3\xdd\x19\x77\x99\xa1\x97\x91\xc8\x7d\x72\x32\xf3\x42\x69\xa5\x66\xbe\x64\xdc\x3f\xd3\x30\x8b\x32\xd5\x8c\xa8\xdd\xe4\xc1\x19\xed\x8e\x51\xad\x68\xe3\xd9\x2a\x7a\x52\x1b\x4f\x54\xd3\xd9\x2f\x3d\xe1\x35\xf5\x4d\x49\x8b\xf9\xfc\x89\x9f\x47\x0d\xc5\x59\xe6\xc5\x2c\xc9\xf1\xa6\xe7\xe3\x51\xe5\x47\x5e\x36\xdf\x3f\x98\x66\x51\xe6\xc1\xcc\x7c\x15\x4e\x27\x46\x1b\xad\x28\xfa\xdf\x93\x3f\xad\xa0\x2c\xc6\x58\x6b\x25\xb1\x13\x46\x55\x24\x50\x1e\xa5\xa5\x98\x48\x7f\xd7\x37\x30\x89\xce\x1b\x9d\x9b\x25\x93\x55\x2d\xb4\xd6\x89\xbc\x71\x43\x39\x8f\xb5\x7c\x18\xd7\x46\xc4\x9c\xc9\xb9\xdc\x91\x95\xcc\x5a\xf4\x27\xfb\xf3\xda\xeb\xd1\x0a\xcd\x29\xe0\x1d\x2b\x27\x67\x16\x9d\xf5\x73\xa3\x3d\xe8\x2c\x9c\x53\x1a\x42\x9f\x98\x37\x24\x91\x76\xde\x5c\x6d\xee\x40\x95\x6b\xbe\x93\x4e\x70\xb9\x8a\x5c\x2b\xc8\xb6\x3a\x4f\x67\xfe\x5c\x8f\x7b\xe4\xa9\x39\x45\x2f\x89\xd9\xb6\x25\x9d\xfd\x41\xd6\x45\x61\x5e\x8c\xf7\x91\x00\xf2\x63\x0f\xd5\xe5\x14\x7d\x5d\xa6\x84\xd2\xee\x54\xab\x87\xb3\x8b\xa3\xb3\xc5\x47\xee\x1f\x33\x71\x5f\x02\xb1\x1a\xc7\x54\x25\xd1\xd3\x1c\x11\xb9\x96\x78\x60\x9a\x2a\x6c\x6f\xef\x8d\xfc\xbc\x3b\xaa\x65\x50\xd6\xdb\xac\x5d\xe6\x4a\xb6\x3b\x7b\x18\x8f\xf9\xa2\xc2\x5b\x68\xa1\x44\x33\x53\xb0\xae\x23\xf9\x71\x61\x61\x7f\xee\x70\x68\xc0\xfd\x2f\xb6\x5f\x30\x23\x3b\xb6\xb7\xb3\xa3\x14\x7d\xfb\x73\xee\xe4\x56\x30\x9b\x15\x7c\xb6\x2f\x62\x26\x96\xac\x13\x53\x98\x59\x48\xdf\xb0\xf0\xfb\x83\xc4\xf0\x2e\x30\x3c\x4b\xbf\x2f\xe8\x72\x9b\xf8\x10\x05\x3d\x9f\x93\xfe\x5e\xc1\xcb\xcf\xd4\xd1\x2d\x57\xf0\x8a\xb3\x36\x53\xfd\x7a\x65\x18\x45\x69\xb7\xd2\x28\x8a\x36\xce\xdd\x62\xe9\xdb\xcc\x4c\x8f\xa7\xf3\x93\xad\xca\x6a\xaa\x44\x4f\x6a\xc7\xbc\x98\x71\x3a\xec\xdf\x72\x7f\xa8\xa1\x4e\xe9\xe4\x6d\x83\xac\x32\xa9\x72\xd3\x73\x0f\xeb\x86\xb4\x3f\x9b\x4d\xd1\xaa\xc9\xab\xdc\xef\x85\xfd\x0d\xf8\x30\x25\x93\x94\xe8\x1c\x54\xf4\x90\xf5\x61\x4a\xf4\x98\xd9\x5c\xf4\x98\x33\xb9\xe2\x38\x53\xe2\x0d\x17\x2b\x73\x5e\x59\xdc\xcb\x9d\xe2\x67\x89\x88\xc8\xc5\x43\x98\x2f\x56\xe6\xcf\x3a\x31\xc5\x43\xb6\xd2\x73\x2e\x4a\xde\x4b\x19\x4c\x71\xda\x19\x3a\x43\x17\x39\x7c\x4f\x27\xc5\x62\xc3\x27\xb4\xbf\xee\xaa\x79\x47\x7e\xb4\xf3\x24\xeb\x3f\xe4\x13\xff\x7e\x7e\xda\x0a\x7a\x5e\x72\x5f\x2c\x87\x02\x56\x54\x9d\x11\x91\x4c\xa7\x37\xab\x81\xa9\x14\xc5\x4d\xff\x4c\x27\xbe\xf9\xd8\xb5\x19\x54\xa9\xd0\x4f\xdf\x4c\xcf\x5b\x7b\x11\xf3\x43\xfa\xb7\x60\x5d\x9c\xee\x36\xcc\x0f\x69\x17\x96\x4f\x59\x41\xe3\x01\x3b\x45\xc5\x66\xb7\xa8\x74\xec\x11\x37\x7e\x0e\x8d\x50\x24\xbb\xf6\x5f\xef\x40\x79\xc2\xfe\xd9\xfd\xc9\x23\xf7\xff\x3c\x82\x5e\xef\xbb\x3a\x81\xd6\xfd\xbe\x08\xce\x54\xf7\x79\xb9\x12\x83\xf7\xe0\x3b\x66\x2c\xee\x8f\x63\xc6\xda\x21\x9b\x34\x9a\xaf\x03\xa9\xdb\x68\x9d\xed\x5f\xb3\x87\x32\xfa\xfd\xc9\x9c\x5f\x96\x57\x70\xcd\xf9\xc0\xfa\x67\x94\x11\xef\x0f\xfd\x9b\x4e\x96\x7b\xbb\xb2\x3f\xb0\x7e\x8e\xcc\x83\x71\x7a\x9b\x4c\xff\x7b\xe6\xf2\x75\xc4\x7f\x9a\xaa\x9e\x46\x51\xdc\xe2\x7c\x06\xed\x36\x13\xc3\x36\xd1\x7e\x37\xc6\x67\x0b\xc5\x81\x51\xa5\xcc\x0b\xd1\xd6\xce\x27\xef\xee\x7b\x8c\x4f\x3d\xdd\x6d\x76\x53\x16\xa7\x12\x53\x44\x51\x5a\x69\x5d\xa9\xb8\x09\x58\xde\x96\xc7\x5a\x3e\x4c\x13\xc5\x4e\x3c\xb6\xa7\x78\x76\x4c\xad\x2f\xd9\x71\xbc\xff\x30\xfa\xbe\xc7\xaa\xc6\xd3\xcc\x1d\x4f\x9f\x46\x27\xe0\x8a\x50\x57\xfa\xa4\x8a\x95\x7e\x14\x57\x8f\xfd\x1c\x45\x33\x5f\x31\x35\x95\x66\xb6\xa2\x24\x97\x22\xd6\xf1\xfc\x32\x9a\xbf\xe3\x91\x27\x29\x53\x3e\x16\x7e\x8d\x32\x96\x63\xbd\x1e\xd0\xff\x3f\xe6\xf3\x96\x9e\xe8\x11\xc1\x97\x63\xfd\x1c\xb9\xcf\xc7\xcb\x50\xa0\x53\x15\xf0\x5c\x07\xe8\x14\xfd\xdf\xbc\x87\x1e\x2f\x81\x6b\x6d\x80\xbe\xbe\xc0\xc5\x09\x80\xc6\xe3\xba\xfe\x06\x15\x46\x80\x6e\x25\xe3\x9c\xc3\x75\xf8\x5e\xa7\x74\xc2\x96\xf5\xfd\x77\xd8\x02\x16\x2f\x19\xaf\xb7\x3e\x01\xe4\xf9\x00\x0e\x3f\x02\xd9\x46\x80\xeb\x75\x60\x8b\x23\x20\x9d\x2b\x37\x7b\x73\x4d\x3b\xeb\x06\x10\xe5\x0a\x6c\x3a\x0e\x24\x2e\x06\x36\xcd\x05\x36\xb4\x01\xb6\x74\x06\xb6\x4e\x63\xfc\xbf\x4c\x8d\xf1\xed\x8a\x1a\xd6\x89\xb8\xbe\x14\xc8\x4f\x06\xaa\xe7\x02\xdb\xda\x01\xbf\x9f\xa8\xd3\x3f\x68\x88\xff\xaf\x33\xaf\x8f\xff\xfe\x91\x0b\xb4\x77\x00\x5e\xb9\x01\x6d\x7b\x02\x4f\x56\x01\x2a\x63\xbe\xe6\x3d\xdc\x88\x62\x3c\xe6\xca\x72\x29\x47\x04\xce\xe5\x03\xbd\x82\x81\x33\xa7\x81\x01\xd7\x81\xa3\xb7\x00\xad\xc3\x75\x7a\x07\x25\xe6\x80\x9e\x05\xb0\x23\x80\xfb\x3e\x48\xd1\x61\x92\x37\x90\xb7\x82\xfb\x75\x67\xf9\x00\x33\x87\x02\x5b\xec\x01\x37\x2f\xd6\xf5\xf7\x50\x03\x32\x42\x80\x80\xce\xbc\xbb\x86\x67\x01\x19\x4e\x40\x42\x28\xb0\xd1\x09\x48\x5b\x5e\x77\xef\x3f\xf3\xa5\x98\x07\x1b\xd6\x5e\xc9\xd9\x01\x5c\x8f\xa9\xeb\x7f\x90\xf7\x1a\x78\x67\xf7\x35\xfe\xdf\x10\xff\x96\xf9\x0f\xaf\x5f\x00\x2d\xac\xbf\xe8\xf3\xb1\x17\x68\x6e\xcc\x7d\x5f\x5a\xa8\xd7\xf1\x1e\xae\x75\x01\xda\x6b\x02\xe7\xab\x19\x87\x38\xa5\xc3\xba\x29\xc7\x6e\x03\xea\x0e\xc0\xc1\x79\x40\xdf\x87\xc0\x5e\x7f\xc6\xfb\x77\xf6\x60\x7c\x42\xee\x73\x20\x3d\x97\x89\xd7\xb9\x8f\x83\x45\x09\x6b\x9d\xcc\xf0\xa8\xc3\xfd\x37\x98\x30\xde\xbd\xfe\x33\xe0\xd7\x83\x71\xf0\x30\x35\x20\x4d\x81\xef\x6e\xa7\x69\x03\x69\x3f\xf3\xfd\xf8\xbc\x38\x20\x23\x0f\xd8\x53\xca\xb8\xd1\xa9\x5e\xec\x47\xd7\x23\x81\xcd\xd7\x81\x47\x05\xdc\x3b\xe4\xcf\xea\x3a\xfc\xff\x7f\xf5\x81\x78\x55\x00\x28\x3d\xfb\x9a\xf7\xf0\x53\x53\xa0\x49\x2a\x70\x7d\x2d\xd0\x6c\x3f\x70\x79\x25\xd0\xfc\x3c\x70\xfa\x06\xd0\xfa\x0d\xfb\xa2\xe4\x27\x87\xfd\x80\xae\x93\x80\xbd\x39\x40\xaf\x53\xc0\xce\x2c\x40\xe3\x19\x50\xb8\x8d\xe7\x63\x6b\x12\xa0\x97\x0d\x64\x9d\x00\x4c\xe6\x32\x5f\x41\xca\x8f\xd2\x14\x19\x6b\x90\xec\x73\x78\x00\xa4\x55\x01\x52\x46\x97\x92\x00\xf8\xf6\xaa\x9b\x87\x94\x27\x8c\x89\xad\x75\x06\xd6\xed\x00\x52\x54\x80\x9c\x2b\xc0\xfa\xdd\xc0\x5e\x4d\x60\xa3\x11\x2b\x31\x6d\x9c\x07\xdc\x38\xc4\x98\xd7\xd3\xcf\x75\xf8\x7f\x7a\xf5\xff\x6d\xbf\x8c\x03\xcb\xbc\x87\xe7\x82\xef\x20\xf3\x1e\x7e\x94\xce\x36\xeb\xbf\xe6\x3d\x54\xfe\x0b\x34\xd1\xe0\x75\xd0\x2a\xbe\xae\xcf\x43\x89\x29\xd0\x35\x0d\x28\x30\x06\x7a\x1b\x01\xdb\x4e\x00\x83\x2c\x81\xec\x68\x60\xc4\x5e\x20\xa3\x2f\x60\xd8\x01\x48\xeb\x09\x4c\x98\x0a\xa4\xae\x04\xac\xf3\x81\xc4\xa7\x80\x5d\x1b\xc6\x41\xa5\xf3\x75\x62\x35\xe0\xed\x04\xc4\x7f\x0f\x04\xef\x03\xd6\xac\x04\xe2\x7c\x81\x84\x62\x20\x65\x37\xdf\x8f\xcd\x8d\x00\xd6\x14\x00\xa5\xf1\x40\xaa\x1b\x50\x19\xc5\xba\x11\xb7\x44\xaf\xa9\xe7\xda\xdf\xb0\xbf\xf0\x0b\xfb\x23\xea\xf3\x00\x1a\xf6\x3b\xf9\x16\xef\xe1\xa2\x3a\xf7\x41\x91\xfc\x40\xb1\x3d\xf7\x66\x69\x34\x12\x28\xf7\x07\x5a\x17\x03\xc5\xae\x40\x07\x35\xc6\xf9\x7a\x54\x31\xef\x47\xe3\x08\x90\x39\x09\xd0\xfa\xc0\xcf\x57\xca\x0b\x52\xbb\xb1\x8e\xd0\x9a\xef\x19\x63\x94\x71\xff\x18\x07\xc6\xb2\x56\xa6\x31\xee\xbf\x62\x1f\x10\x98\x02\xac\xfc\x03\x88\x4d\x06\x56\xdc\x07\x52\x26\xb0\x3d\xb9\x1e\x8c\x97\x95\x7e\xc7\x6b\x46\xfa\x4e\x89\x3f\x01\x37\x3e\x31\x9f\xe0\xb1\x26\x90\x90\x05\xfc\xab\xfc\xb5\xfd\x21\x0d\x70\x70\x59\x07\xa2\x21\xef\xe1\x4e\xd7\xfa\xf6\xcb\xbc\x87\xb3\xa2\x5a\x20\xf3\x1e\xa4\x78\xa8\xe0\x01\xec\xda\x0e\x28\xc6\x02\xdb\xad\x81\x56\xbd\xa4\x6c\x19\x50\xcd\x03\x36\x3d\x06\x7a\xde\x60\x8d\xfe\x81\x3e\x1c\x9f\x86\x6e\x01\xd6\xb4\x05\x8c\x12\x98\xdf\x60\x3a\x06\x88\xc9\x06\x6c\xcf\x03\x11\x86\x80\xfd\x04\x20\xb2\x8c\xe3\x65\xf8\x00\x60\xe9\x76\xe6\x03\x48\x79\x82\xf4\x2f\xf5\x4f\xbe\x27\x9f\x3d\x8d\xed\x2a\x29\x00\x22\x27\x03\xc7\xca\xf8\xff\x49\xdf\x39\x56\x05\x78\x76\x0d\x58\xa9\x0a\xd4\x64\xd7\xe9\x40\xd4\xf2\x3f\x84\xdd\x8b\x44\xbc\x70\xdf\xc5\xe3\x33\xa1\x0b\x73\x37\x8c\xc7\xaf\x78\x0f\x0d\xfa\x7d\x54\x08\xfc\x76\xaf\xa8\x26\xc8\x38\x67\xee\x72\x40\xa1\x9a\xf5\x59\x5a\x39\x03\xe9\xd7\x81\x2e\x4a\x40\x72\x1b\xd6\xe9\x92\x9e\xdb\x90\x32\x20\x66\x2d\x30\x4a\x0f\x88\x2a\x03\xc6\xab\x02\x61\x8b\x00\xcb\xe5\xc0\xf2\x21\xc0\x2c\x0b\x20\x28\x95\xb1\xbf\x65\x6b\x58\x03\x40\x3a\xe5\x49\x5f\x69\x59\x05\xfb\xd2\xf2\x57\xac\xb1\x12\xf2\x94\xf7\x8b\xe5\x6f\x59\x2f\x67\xb9\x29\x70\xbd\x3f\x73\x68\x9e\x5f\xff\x9a\xff\xb2\xf8\xa8\xe0\x01\x34\xd0\x81\x70\x12\xbc\xc2\x87\x02\xc7\x92\xf9\x2f\x0d\xfb\x7d\x9c\xfd\x5b\xd8\x2f\x5e\x1f\x12\xfd\x0e\x64\xfe\xc7\x57\x7a\x07\x0f\x99\x6f\x96\x14\x0a\xb4\x6a\x0f\xc4\x8f\x07\xba\xbe\x07\xa2\x8b\x00\x8d\xa7\x40\xb8\x11\x30\x54\xb7\x0e\xf7\x97\xf9\x0f\x52\xae\x6c\x57\x0d\x2c\x75\x96\x72\x7c\xc0\x2f\x0c\xf0\x2d\x61\xff\x8d\xb0\x02\x02\xdc\x81\xd4\xb5\x80\xbf\x35\xe7\x20\xfe\x76\x9c\x99\xfa\x7d\xe0\x79\x90\x4e\x89\x37\x6a\x00\xff\x32\xe0\x85\x7e\x1d\xff\x65\x91\xb8\xc7\x2e\xeb\x7e\xc8\x76\xcb\x78\xb8\xcc\x07\xa8\xf5\x83\x86\xba\x17\xf7\xff\xdb\x0f\xf6\x0b\xbc\xfb\x2b\xfe\x87\xa8\x3a\xca\xba\x0f\xd2\xfa\x55\x7c\x03\x44\xf7\x05\xda\x39\x31\xcf\xa5\xa7\x35\x10\x32\x05\x18\x5c\x0d\xf8\x0f\x05\xf4\x27\x00\x3e\x9b\x81\x09\x96\x80\x77\x18\x63\xbb\xde\x8a\x80\x8b\x35\xe0\xf9\x09\xf0\x19\xca\xaf\xa3\x3c\x80\xc5\xaf\x80\xd4\x9f\x81\x45\x7e\x40\xae\xad\x74\x3e\x66\x3d\x2d\x69\x3c\x3d\x95\x63\xca\xad\x6a\xe6\x47\xbc\xf8\x82\xff\x22\x3f\xf7\x86\x76\x5b\x6b\xd7\xe7\x03\x34\xf4\x83\xcb\x2f\x78\x94\x71\xef\xca\x9e\xc2\x0f\x04\xee\xbd\xe7\x7f\xf0\x3f\xd6\x96\xd7\xcd\x03\x04\xde\x2b\xe5\x27\x81\x1b\x80\x8e\xbd\x01\xbf\x66\x40\xbf\xd3\x80\xf7\x04\x60\x78\x38\xe0\xa9\x0d\x98\x2c\x01\xe6\xcf\x02\xac\x16\x01\xf3\x8e\x02\x4e\x57\x00\x37\x3d\xbe\xd9\xe8\xa6\x0a\x44\x44\xf1\x5e\x92\x54\x0d\xb8\xb5\x03\xa4\x93\x9b\x93\x1a\x50\x52\xce\xb1\x55\x9a\x07\x87\x0f\xc0\xcd\x96\x80\xd3\x13\xe0\x85\x19\xe0\xbc\xf4\xbf\xed\x9e\x2c\xfc\xc2\xe4\x44\x7d\x1e\xc4\xff\xe4\xbf\x08\xfd\x93\x7d\x62\x7f\x95\xf9\x1f\xf9\x02\xff\xdf\x22\xfc\x60\xc3\x53\x1e\x65\xdc\x3f\x46\xc4\xdd\x40\x31\x5f\x52\x7c\x6a\x57\x09\x78\xa6\x33\x4f\xdb\xf5\x06\xf3\x62\x9c\x34\x59\x9b\xc1\xe9\x31\x30\xf9\x0d\xe0\x14\x07\x38\x0c\x04\x1c\xa5\x79\x98\x0e\xcc\x1e\xc6\x1c\xa8\x59\x53\x81\xb5\xc3\x98\x33\x93\x6d\x05\x4c\x97\xd6\xc5\x2a\x60\x7a\x6f\xe0\xb4\x26\xeb\x41\x48\xfb\xa6\x6d\x26\xf0\xd2\x14\xb0\x49\x63\xee\x78\x43\xbb\xc7\x98\x08\xfe\x83\xd0\x81\xd0\x5a\xc7\x63\x43\xdd\x83\xb3\x42\x17\xa3\x21\xff\xa5\x56\xff\x44\xc4\x85\x6f\xf1\x3f\xe2\xc5\x6d\xe5\x08\xd1\x27\x45\xae\x4e\x2f\x54\xe5\xbe\x63\x6e\xc7\x81\x4e\x0a\x80\xc3\x7b\x40\x43\x0b\x98\x71\x15\x18\xe1\x01\xd8\xad\x00\xcc\x8a\x80\xa9\xbd\x81\x99\xff\x02\x36\x37\x00\xcf\x55\xc0\x14\x07\x20\x74\x33\xf7\x2a\x4c\xd2\xe1\x1c\x6c\x8b\x64\x9f\x26\xaf\x8b\x09\xb3\x39\x3e\x4c\xf4\x04\x6e\x36\xe7\xb3\x8c\x94\x1b\x4b\xcb\xf8\x53\x0f\x60\x8c\xe0\x83\x0d\x13\x3c\xb9\x01\xce\xf5\xf9\x0f\x7d\x45\xfc\xf8\x4a\xff\xa5\x81\xfe\x89\xcc\x7f\xd9\x2d\xd6\x8f\xcc\xff\xd8\x24\xf8\x10\xb5\xfc\x0f\x31\x2f\x2b\xcf\xf3\xb8\x5c\xc4\x53\x1f\xe1\x17\x2e\x82\x37\x34\xdb\x19\x68\x15\xcc\x1c\x20\xb5\xcf\xcc\x3d\xd7\x4e\x05\xcc\xf3\x01\x93\x67\x80\x99\x2e\xf7\x65\x1c\xdf\x17\x58\x30\x1b\x18\xe7\x05\x2c\xfb\x0e\x18\x73\x8f\xe7\xc1\x30\x14\xc8\x36\x03\x0c\xf4\x81\xd2\x9e\x80\xfe\x51\xe0\x54\x7b\xce\x4d\xa4\x38\x39\xb2\x1c\x78\x16\xc9\x7c\x08\x69\x1e\x06\x09\x9d\x9c\x3e\xa2\x5f\x90\x5a\x08\x8f\xdd\x04\xff\xbe\xb3\xe0\x93\x5d\x14\xfc\xd9\xff\xc9\x7f\x19\xc7\x63\x43\xfe\xc7\x5a\x61\x6f\x9c\xe0\xc5\xc8\xfc\x8f\x00\x51\x9d\xf7\x10\xef\xeb\x28\x6e\x33\x5b\x95\x00\x8a\xd2\x73\x75\x01\x3a\x45\x01\xe3\x5e\x03\x03\x1f\xf2\xf3\x1b\x53\x05\x8c\x96\xf2\x89\x70\xe6\x66\xcf\x9b\x0b\x0c\xfb\x0e\x08\x2a\x06\x74\x77\x31\xb7\x54\xcb\x13\xd8\xdc\x1d\x18\x7c\x18\x28\xba\x0c\x0c\x0c\x00\x8e\x1b\x01\x03\xcd\x80\x6b\x63\x81\xbe\xd1\xc0\x23\x03\xa0\xcf\x19\xe0\xef\x93\x80\x5a\xf3\xfa\xf6\xaa\x08\x9e\x4c\x9b\xe9\x3c\xb6\x70\xe0\xb1\xb6\xff\x51\x03\xfd\x17\x99\xff\x20\xeb\x9f\xd4\xae\x03\xf1\x5a\xe6\x7f\xc4\xa7\x32\x4e\x1e\xad\xcf\xb8\x79\xd0\x0c\xfe\xb9\xac\x83\xe2\xb6\x9b\xc7\x99\xaa\xdc\x27\xc7\x4c\xc4\x1f\xc3\x46\xb0\x6c\x05\x60\xe4\x0c\xc5\x3e\xbd\x8f\x01\x3a\xaf\x95\x86\xe8\x69\x03\x43\x34\x1a\x2d\xb5\x6c\x0b\xf4\xdf\xd6\x28\xcf\xe5\x31\xd0\xe7\x59\xa3\x1f\xfd\xdb\x03\xea\x27\x1b\x9d\x59\x79\x1a\xe8\x71\xbe\x51\xc1\x46\x6f\xa0\x5b\x97\x46\x5e\x3b\x76\x01\x9d\x3f\x2a\x5d\x38\xfc\x27\xd0\xc9\x54\xf1\xea\xa5\x40\xa0\x83\xa7\xa2\xc6\x3d\x6f\xa0\xfd\x69\x85\x4b\x7f\x2c\x04\xda\x96\xe3\xb4\x64\xa7\xb2\xe0\xcd\x36\xda\xcc\x23\x84\x0e\x25\x84\x9e\x92\x1c\x07\x1a\xda\xdf\x90\xff\xb2\x71\x78\x03\xfb\x4d\x1a\xd1\x5f\x46\x96\x35\x9b\xce\xf6\x33\x4f\xc2\x2b\x5a\x99\x56\xca\xbc\xb9\xdc\x57\x64\x96\x18\xcd\x9d\xda\x52\xbd\xcf\xe0\x00\x37\xca\xe8\x17\xdd\xa1\xbf\x62\x10\xa0\xbe\xa6\x63\x65\x17\x7b\xa0\xeb\xbf\x9d\x8e\xe9\x28\x03\x1d\x57\x75\x56\x36\x1d\x09\xa8\xac\xec\xdc\xce\x01\x40\xeb\x8b\x9d\x35\x17\x3f\x04\x5a\x78\x74\xee\x1e\xdd\x1c\x68\x96\xd3\x69\xeb\xfa\x39\x40\x93\x9e\x9d\x5a\xe4\xdf\x00\x1a\x29\x74\x9c\x7c\x60\x32\xa0\xa8\xd8\xa1\xec\x42\x0f\xe9\xc1\xa9\x5e\xfe\x89\x3e\x49\xd5\xe6\x15\xe5\x3e\x2a\x87\xb8\xde\xd2\x72\x26\x8f\x4d\x04\xbe\xa9\xa4\x5a\x23\x2a\xc8\xd2\x78\xc0\xe8\xff\xb6\x3f\x7d\x70\x63\x42\x13\x52\xda\xb4\xa4\x0c\x3c\x5e\xad\x35\x55\x11\xa3\xab\x79\x0c\xb6\xe8\x4c\x8c\x1a\xef\x07\x9d\xe9\x9d\xdc\x2b\x99\x1f\x32\xbb\x92\x75\x43\xa6\x54\xf4\xa4\xdf\x8f\xa9\x62\xf5\xd9\xc1\x1f\xfb\x51\xdd\xaf\xc3\xf7\x03\x08\x2f\x50\xde\x39\x48\xa9\x6d\x34\xd0\x78\xc0\xa0\xb0\xfe\xd2\xda\x79\x30\x28\x67\x2c\xdd\xa4\x1d\x64\x62\x47\x15\xac\x81\x3f\x2e\xa2\x4f\x1e\xa0\xc7\xca\xe2\x03\x94\x53\x69\xec\xf7\x96\x2b\x62\xfd\xfc\x59\xa7\xb8\xaf\xd7\x59\xda\xbb\xfa\x4e\xf8\x89\xd6\x62\x9f\xb1\xbf\x51\xac\xeb\xdd\x92\xed\xed\x26\xfa\x82\x74\x14\xf8\x6e\x3b\xb5\x2f\xe7\xa7\x96\x07\x28\xf7\x7f\x2a\x6d\x4e\x28\xeb\x86\x27\xac\x03\xb3\xe6\x49\x07\xfa\xde\xab\x0a\x98\x1f\x10\x31\xb5\x3b\x55\xfd\x03\xf6\xa8\x4f\x67\xff\xef\x4b\xd5\x41\x57\x9d\x7e\x94\x69\xcd\xbc\x38\x90\x3c\xc6\xaa\x9a\xf1\x73\xe3\x32\x6d\xfa\xb6\x43\xbf\x1b\x4a\xb7\xf0\xd5\xfb\x0e\xa3\xea\xb1\xf2\x44\xbd\x6d\xfc\x89\xfa\x77\x5a\x11\xfe\xa6\xdf\x9a\xfb\x56\xeb\x57\x8e\xa1\x15\x34\xea\xf6\x34\x42\x10\xf5\xda\x2d\x24\x7c\x6f\x54\x2a\x23\x63\xa3\x0c\xd6\xd2\x37\x19\x29\xee\xfb\x0f\xfb\xc8\x37\x00\x87\x3b\x9f\x25\xfd\x90\xe1\xb3\x7e\x24\xc4\x44\xb7\xea\x57\xca\x6d\x74\x87\x73\x5f\xfb\xc1\x2e\x6c\xb7\x86\xc0\x7b\xd5\xc3\x79\xec\x41\xba\xc5\x3b\x9f\x35\xa2\xfb\xa6\xb9\xdf\xb7\xa1\x2a\x5f\x7a\x42\x27\x62\x15\xa4\x88\xe7\x19\xaf\xde\x8b\xe6\x23\xba\xd7\x40\xda\x59\x03\x13\x18\x8d\x5d\x5c\xa2\x4b\x27\x0c\xd7\xeb\xc3\x08\x0f\xb6\xb7\xe7\x85\x63\xf5\x8a\x75\x43\x4c\xc7\xea\xd3\xef\xf5\x55\xc6\x10\x7f\x60\x40\xf5\x58\x8a\xc0\x1d\xff\x31\xa1\x3a\x28\x66\x4f\x28\xe1\x79\x98\x70\xb6\x0d\x01\xde\xa6\xfe\x3c\x0f\x13\x6e\x30\x63\xc6\xd4\x74\x2a\xdd\xf7\x36\x8d\x5d\x40\xf7\x94\x4d\x5b\x2c\x27\x1c\x67\xfc\x6d\xbe\x39\x3c\xe1\x14\xc7\xec\x71\x3a\xdc\x41\x7d\x7c\xd9\x69\xf2\x9f\x71\xeb\x6f\x52\x8c\x37\x9e\xf5\x8c\xee\xc1\x8f\xd9\xc4\xda\x92\x06\x26\x35\xf5\xf8\x1f\xb2\x2e\x0a\xeb\xc6\x64\xff\xa6\x4a\xdf\x73\x43\x5a\x77\xaa\x4b\xaf\x4d\xed\x4d\x5e\xb6\xaa\xe9\x60\xaa\x96\x86\x4f\xd4\xa4\xf5\x1d\x52\xc9\x76\xfa\x8c\x1b\x49\xb7\x49\xe7\xdd\xe1\x6f\xeb\x1c\x3a\x96\x32\x87\xa9\x46\x63\x69\x1e\x27\x39\xb3\x8a\xc5\x98\x2e\xac\x23\xa1\xbd\x8a\x51\x29\xf5\x83\x16\xf4\x06\x6d\xf4\xa6\x88\xce\x65\x36\xe2\xc4\x62\x7b\x8f\x3b\x6e\xd9\x56\xf6\x23\xcf\xb2\x7d\x38\x9a\xd6\x81\x6d\x95\x35\x21\x8c\x36\xee\x7c\xdf\x7f\xaa\x43\x10\x3d\x09\x5b\xcf\x04\xda\x93\x6c\xd5\xb2\xc8\x73\xad\xee\xed\x22\x5c\xdf\xda\x80\xef\xfb\x5b\x1e\xbb\x4a\x7a\xf1\x96\xc1\x8f\x49\xfb\x6f\x4a\xd9\x5f\xf4\x73\xd3\xa7\x35\x84\x73\xd5\xf2\x3f\xc4\x7a\x61\xde\x90\xcc\xff\x69\xd8\x07\x2a\xba\x7a\x18\xbd\x7b\x88\x8a\x01\x3d\x25\x59\x07\x66\xc1\x19\x13\xe2\x8d\x38\xa9\x31\x1f\xc6\x2e\xd6\x9c\x78\x60\x16\x51\x16\x64\xd7\x78\x7f\x6b\xfa\xf9\x88\xfb\xd6\x84\xff\x0d\xac\x62\xfe\x40\xa7\x75\x8c\x42\x34\xf6\xb1\xfb\xcc\xf6\x3b\x0a\x45\x47\x7b\x65\xd6\xaf\x76\xc8\xee\x47\x33\xe7\x70\x94\xef\xf3\xda\xbf\xb2\x24\x4f\x74\xcc\x71\x65\xc5\x89\x22\xce\xc9\x1c\x27\xaf\x32\x05\x2b\xad\x57\xf0\xdf\xed\x54\xe7\xf1\x30\x3d\x77\x7b\x9f\x4b\x54\xf7\x9e\x5d\xc9\x3c\xa9\x99\x26\xaf\x29\x82\xcb\x7d\x83\x6a\xf9\x1f\xf7\x6a\xbe\xe0\xc5\x24\x7b\xb3\x2a\x4b\x6d\x1f\xa8\xeb\xfc\x2d\x42\x1e\xb3\x1e\x8c\xdf\x07\xbe\x4d\xba\x60\x9f\x05\x31\xed\xe7\x5a\x59\xd2\x09\x6c\xd6\x1e\x5b\xca\xac\x6c\x0c\xa6\x93\x77\x9a\x26\xd8\x51\x26\x62\xe8\x3d\x8b\x70\x3b\xad\x87\x7c\x1b\x59\xdd\xd8\x89\x4e\xf6\xed\x6e\xb8\xf0\x0e\x5d\xe6\x26\x32\xab\xf9\x82\x79\xea\xae\xa0\x42\x33\xe3\xae\xd2\x9f\xf8\x3b\xee\x95\x06\xe4\x17\xf3\x56\x32\xce\xeb\xfe\x82\x71\xff\xf9\xaf\xfc\x08\x61\x73\x57\x8a\xe9\xcb\x3f\x5f\x4f\xf3\x30\xdf\x9f\x71\xff\x79\x27\xf7\x13\x9e\x33\x2f\x89\xef\x6d\xba\xa5\xde\x66\xe6\x52\xf2\x0b\xb2\xd7\x25\x8c\x75\xdd\x6b\xf9\x1f\x62\x5e\x58\x17\x25\xfe\x84\x01\xed\x63\xb2\x0e\xce\xf2\xa3\x66\xe4\x8d\x4b\x1f\x4d\xe1\xae\x45\x97\xac\x08\xe7\x71\xd3\xb4\x23\x94\xc5\x71\x95\x9d\xd0\xc3\x99\x45\xe8\x90\xf9\x15\x47\x3a\x51\xc9\x3c\x98\x11\x7d\x5d\xf9\xbe\xfb\x3d\x57\xf2\xc2\x6e\xd9\xee\xf4\x54\x5b\x96\x79\x88\x48\x2c\xeb\xc2\x2c\x6e\xc5\xba\x07\x8b\x5f\x32\x1f\xc6\x77\x3c\xe3\x59\xbe\x3d\xf4\x08\x29\xf4\xbd\xcf\xcc\x0c\xdf\x13\xcc\xb4\x59\x52\xc9\xb9\xe9\x92\xd0\x48\xc2\x31\x97\xa8\xa5\x30\xbf\x43\x85\x11\x24\xdf\xee\x7b\x08\x81\xf5\x9d\x7b\x86\x22\x91\x77\xc4\xf5\x11\x34\xc6\x3c\x65\x7e\x4c\xde\x5f\x14\x91\x16\x64\xd7\xc8\xfc\x0f\xfa\x86\xac\x8b\x12\xab\x62\x4a\xee\x16\xf6\x87\x25\xad\xca\x40\xa7\xa9\x14\x0f\x16\xeb\xcc\xa2\xf5\x3c\x6f\xee\x6c\x3a\x81\x38\xbb\x38\x93\x0a\x85\x5d\xb5\x0b\xd9\x6d\xa5\xc2\x3c\x98\x09\x1d\xdd\x08\x17\x1c\xbd\x65\x3e\xad\x03\x9d\x8e\x0b\x09\x1f\xd6\xa8\xf4\xa2\x79\xed\x60\xbf\x88\x7e\xde\x34\x7b\x89\x98\x87\x00\x51\xd9\x09\xbe\x00\xe2\xfa\x07\xc6\x77\x20\xe4\x30\xf8\x7c\xff\x79\xd2\x18\x34\x4a\x8f\xce\x6c\xc1\x35\xe6\xb4\x5f\x04\x17\xce\xa6\x31\xc4\xcb\x8b\xf0\x97\x65\xc6\x61\x54\x33\x5b\xe6\x9f\x44\xdf\x3c\x58\x6b\x0b\xad\x93\x10\x8b\x62\x5a\x17\x21\x95\x27\xa9\x4f\x46\x60\x42\x15\xd5\x00\x02\x9f\x54\xd3\x3c\x05\x78\x30\x8f\xd0\x2f\xbd\xa6\x1e\x2f\x86\xe7\x25\xf4\x85\x0d\xed\x4a\x0d\xfb\x41\x79\xb0\xbc\x09\x5c\xe0\x6a\xc4\xab\x6d\x01\xed\xb0\x36\x45\x0b\xc8\xae\x49\xed\x3c\x28\x5f\x32\xfa\xb8\x88\x76\xa9\x11\x73\x99\x07\x33\xe8\xaa\x1f\xdd\x36\x57\x1f\xe1\x4f\xfb\xa7\xca\xb4\x40\x3a\x89\x2b\x1e\x5e\xd6\x85\xed\x97\xfb\x24\x45\x6c\x57\xa4\x1b\xd1\x51\xfe\xac\xcc\x16\x31\xad\x3f\xed\x24\x51\x67\xf5\x28\xe3\x88\x3a\x33\x99\xec\x8b\xcc\x9b\x45\xeb\x3d\xc6\xdd\x93\xbe\x77\x4c\xea\x72\xca\xe1\xa3\x75\x18\x71\x8d\xba\x92\x49\x99\x49\x14\xf5\xf0\x06\xa2\x87\x1c\x63\xa5\x2b\x8f\xcb\x54\x23\x88\xe8\x70\x97\x78\x56\x61\x6a\x2f\xe8\x7d\x43\x9d\x3f\xd3\xbd\x70\x99\x17\xc3\xba\x28\x81\xd5\x8e\xdb\xd8\xfe\x39\xd6\xec\xb5\xf3\x04\xfb\xcc\x9d\x32\x4c\x87\x8d\xfc\x7c\xa7\x75\xf7\xa4\xe7\x6f\x19\xc1\x19\xf3\xc4\x4a\xbf\x48\xf6\x83\x40\x5a\x2f\x3a\x8b\x03\xe9\xa4\xd6\x6f\xe9\x32\xea\xbf\xd8\xcd\x6b\x39\xb1\x5d\x5b\x96\x86\xb3\x7b\x23\x5a\xdc\xeb\x5e\xf9\x91\xc7\xb8\xcb\x4a\x74\x66\x91\xf9\x30\xf1\x36\x1c\x27\x13\x96\xea\x8d\xe4\xdf\x73\x3f\xb1\x84\x01\xb3\x69\x3e\x12\x2e\x2d\x24\xfe\x5c\x42\x64\x30\x8d\xf1\xf7\x18\x81\x4f\xf0\xdd\x78\x9f\x7f\xce\x7a\x52\x89\xde\x87\x49\xb1\x24\x7e\xd9\x05\x9a\xe7\x38\xc3\x3b\xc4\xaf\x5d\xe9\xf2\x0b\xcd\xd3\x8a\x9a\x0f\xb4\xd2\xeb\xf3\x62\xe4\x7e\x58\xde\xda\x0b\x68\xe1\xba\x2f\xf4\xa4\xf5\xed\xe4\xe7\x45\x79\xd2\xac\xd0\x25\xac\x8b\xe4\xcc\xbc\x90\x49\xbb\x18\x75\x37\x2e\xe3\xae\x3d\xa3\xd6\x86\x92\x77\x0e\x29\xe3\x2e\x04\x7d\xed\xa3\xb9\x1f\xcc\xb0\x18\xda\xf5\x9b\x57\xad\x14\x78\x66\x82\xa8\x54\x35\xe4\xc3\xac\x7b\xc3\x38\x6f\xaa\x51\x3f\xc2\xa1\x53\xee\x31\xee\x9f\x6a\xc8\x91\x2a\x55\xc7\x8e\xe2\x5f\xea\x1d\xee\xe0\x94\x52\x15\x44\x91\x39\xf5\x0d\xbf\xf3\x3a\xab\x0d\x54\x1b\x49\x5d\x91\x4f\x91\x39\x35\x92\xef\xce\x25\xbf\x38\x4d\x35\xa5\x24\x9d\x1b\xc4\x84\x5e\x13\xfa\xa8\x25\xbf\x7e\x4f\x71\x25\x61\xca\x67\x8a\xbf\xcc\x8b\xf1\x19\xea\x49\xcf\x6b\x81\x9b\x37\xc5\x85\x39\xc9\xbe\xe4\xff\x0e\xe3\x02\xc8\xef\xa7\xdd\x0b\xa2\x6f\x29\xf3\x60\x26\x8c\x08\xa3\x28\x66\x18\x10\xc5\x59\x09\xdd\xb0\x03\x06\x4d\x65\xbe\x40\xcf\x27\xcc\x87\x51\x51\x4f\x20\xff\x6f\x62\x91\x24\x4e\xea\xeb\xc4\xc9\x64\x83\xa8\x78\x65\x18\x34\xa6\x1d\x44\xe6\xc3\x64\x46\xf4\xa3\xf5\x9f\xf1\xdb\x08\xca\x87\x33\x95\x39\x03\xc9\x70\x9f\x41\x19\x6d\xc6\xaf\x7c\x77\x21\xc3\x93\xf5\x72\x6a\x75\x62\xde\xa4\x93\xe7\x66\x54\xf2\x59\x20\xd3\xb0\x9c\x3a\x53\x64\x54\xf0\x19\x32\xbd\xfa\x2a\x79\xfc\x46\xbd\x47\xeb\xf8\xf5\x5b\xfa\xa6\xeb\x8f\x72\x9c\x64\x5e\xcc\xc2\x7f\x7d\xb9\xef\x45\x75\x20\xd9\x2f\xeb\xe1\xcc\x9c\x1c\x46\xde\x69\x33\x97\x1f\xe3\xe4\xaa\x68\xfa\xbd\xc9\xfc\x18\xb2\x53\xef\x59\x1c\x45\x35\x5d\x53\xd6\xc3\xe9\xf7\x8a\xd9\x9d\x3d\xaa\xf8\x79\xb7\xf5\x4e\xa6\x7c\x42\x69\x5d\x9a\xe8\x70\x9b\x21\xf8\xb3\x59\x03\x78\xcc\x29\x6f\x44\x8c\xca\x5c\x25\xce\xdc\x73\x87\x73\x1e\x95\x3b\x7c\x04\x45\xd2\x9c\xa2\x89\x14\xa1\x73\x87\xcd\xa0\xb8\x98\xd3\x9b\xf9\x83\xb9\xb7\xb8\x4f\x4e\xee\x40\xc6\xfd\x73\x05\xe3\x28\xd7\x35\xc7\x86\xff\x7f\x29\xf3\x6c\x6c\x8e\x13\x32\x9f\xa3\x50\x45\xb5\x8f\x3c\xa3\x27\xf4\x64\xb2\xee\xbc\xa2\x15\x5b\x5f\x17\xc5\xfd\x7d\x30\xed\x32\x73\xee\x84\x51\x65\xa5\xa1\x1e\xce\x14\x8d\x95\xb4\x6b\x9b\xda\xc7\x93\xb7\x8e\xdd\xcb\x7a\x21\x72\x7f\xa8\x21\xf7\x92\x29\xbf\xd0\x10\x7c\x98\xae\xad\x58\x3f\xa4\xcd\x13\xe6\xc3\x28\xc4\xc8\x15\xab\x1c\x47\x1e\xf3\x8f\xf0\x58\x60\xc8\xca\x9d\x32\x1f\x66\x7b\x01\xef\x9b\xdb\x4f\x8c\xa4\x9d\xab\xa0\x84\x33\xb5\x82\x75\xb6\xb4\x7f\x14\x1c\xe1\x3e\x39\xdb\x35\x7c\xc9\xbf\xb7\xe7\x85\x93\x1f\x6d\x5f\x24\x74\x62\xfe\xd9\x42\xf1\xb3\xe0\x65\x11\x65\xbc\x85\x2d\x8e\xd1\x8a\xdd\x3e\xe4\x12\x65\xca\x05\xf7\xef\xd2\x3c\x17\x74\x79\xc1\xfc\x98\x6e\x9f\x88\xc9\x90\xab\x28\xf9\x85\x4b\x4e\x38\xc5\x77\xc7\x5b\x31\x54\x29\x98\x59\xc1\xfd\xb0\xac\x17\xc7\x93\x97\x4e\xce\xe2\x6c\xde\xb8\x8c\x9f\xb3\xcc\x83\x19\xd1\x81\xf9\x11\x83\xad\xb9\x8f\x4e\xaf\xfb\x9b\xe8\x94\xd7\x49\x6b\x13\xed\x86\xad\x0e\xb1\x3e\x0c\x16\xe4\x09\xa4\x43\xe6\xc3\xec\x14\x9d\x7b\x8b\x12\x1b\x53\xfc\xab\xe5\xc3\x94\x30\x93\xbf\x78\xe3\x30\xca\xb0\x8a\x5d\x99\xe1\x5a\x74\xd7\x96\x32\xb4\x22\x70\x86\x52\x92\xbb\x84\xfc\xbd\xd8\x30\x9c\x9e\x5c\xd1\xd1\xd5\xc4\x74\x2c\x5a\x9b\x49\x79\x45\xd1\xb3\x5d\x14\x37\x8a\x1a\x1f\xa2\xc8\x56\x92\xf4\x1d\x7d\x93\xdd\x31\x3f\xd0\xba\x28\xae\xe6\xbc\x6a\x77\xd1\x3f\xdc\x87\xca\xa2\xe6\x43\x5d\x5f\x2c\x7b\xd3\x44\xda\xbd\xa6\xed\x60\x16\x9a\xe5\xfc\x14\xba\xd1\x68\x66\xb0\x8e\x4e\xc1\x46\x13\xf8\x39\xeb\x4d\x60\xfe\x93\x6e\x15\xf3\x7f\x06\x8d\xcf\xa2\xd7\xbd\xfc\xf3\x68\x1e\xe4\x3e\x51\x2d\xc6\x6f\xe3\x1b\x4a\x45\x3b\x44\x25\xb7\x21\x1f\x66\x5f\x84\x12\xad\xf7\x7d\x91\xaa\x94\x4f\x96\x77\xe0\x79\xd8\x17\xc1\x27\x99\xf2\x31\x26\xc4\x7b\x29\x3f\x6e\x43\xdf\x70\x7f\xc5\x1c\x8a\x30\xfb\x1f\x2f\x26\x05\xcb\xfd\x3a\x1c\x99\x0f\xba\xac\xa1\x9d\x7b\xff\x8f\x99\xac\x33\xb3\x67\x27\xeb\xc8\xe8\x1c\xa2\xf9\x2a\x3f\x72\x81\x76\xec\x72\xbb\x5b\x14\x6f\xf7\x55\x3c\xa7\x38\x5a\x56\xc5\x1a\xe6\x65\x4d\xa5\x75\xf1\x42\x95\x71\xda\xa7\x2f\x79\x6c\xc8\x7b\xb8\x9e\x09\xa8\x7e\x07\x5c\x8e\x00\xba\x69\xf0\xbd\x5e\xe9\x24\x7a\x62\x1d\xd0\xab\x15\x70\xe4\x28\xd0\xef\x21\xb0\xff\x2a\xf7\x89\x29\x3a\x06\xe8\x54\x03\x3b\x9f\x03\xfa\x8b\xb8\xaf\xff\x98\x2a\x60\x4b\x1e\x30\x51\x85\xf5\xfd\x2d\xac\xeb\x70\xff\x8c\x89\xc0\x9c\x1b\xc0\xc6\x59\x7c\xdf\x3f\x5d\x19\xf0\xeb\x0e\x6c\xf8\x01\x08\x9b\x07\xa4\xcd\x60\xac\x2e\x35\x1d\x90\x9e\x50\x7a\x1c\x90\x15\x08\xa4\xa9\xb1\x86\x44\x86\x11\x70\x50\x93\xeb\xc5\xe7\x9d\x81\x2d\xd7\xf8\xbb\x6f\x19\x0c\x3c\xf7\x03\x72\x16\x00\x9f\x7e\x06\x32\x44\x7d\x32\xdd\xe9\xbf\xf9\x0f\x2f\xac\x18\x5f\x78\xf4\x2b\xd0\x3a\x9e\xfb\x9d\xb4\x7e\x58\xc7\x7b\xb8\xba\x1c\x68\x53\x0c\x5c\x30\x04\xda\x2f\x05\xce\xa8\x03\x5d\xae\x03\x15\xba\x40\x0f\x1f\xe0\x50\x35\x6b\xff\xee\x55\x07\x06\x5a\x01\xbb\x26\x02\x43\x2e\x03\xf9\xb7\x80\x61\xb7\x81\xbc\x04\xc0\xe0\x10\xb0\xe5\x05\x30\xfe\x03\x90\xb1\x1f\xb0\x08\xf9\x1a\xf7\x4f\x7d\xc9\x77\x36\x53\xcf\x80\x98\xab\x6b\x2a\x81\x20\x03\xd6\xb6\x97\xe6\x21\x69\x08\xb0\x46\x1d\x48\xea\x01\x6c\x58\x2f\xed\xb6\xc0\x8e\x0b\x7c\x6f\xfa\x60\x1b\x20\xc3\x0b\xb8\x98\x00\x6c\xba\x04\xdc\x59\x06\x6c\x1e\x06\xbc\x2c\x67\x5e\x44\x8d\xd5\xd7\xf8\x77\xc3\x3e\x00\x32\xff\xa3\x7a\x00\xd0\xc4\x11\xf8\xa9\x05\xd0\xe8\x36\x70\x33\x07\x68\x7e\x0a\xb8\x52\x0d\x34\xbf\x01\x9c\x4b\x03\x5a\x2d\x61\x6c\xb9\x5d\x13\xc6\xfd\x3b\x27\x02\x7b\x3f\x02\xdd\x43\x81\xa2\x16\x40\xaf\xf6\x40\xc1\x3d\xd6\xc3\xc8\x8d\xe0\xfb\xdc\x5b\x22\xb9\xe6\x9a\xd9\x07\x30\xd2\x05\xd2\xd5\x01\xb3\x02\x20\x75\x10\x60\x63\x51\x87\xfb\x27\xc5\x49\x19\x3f\x90\x90\xce\x18\x47\x5c\x11\x63\x77\xab\x0d\x81\xe8\xee\x5c\xa3\x5d\x1d\x00\x24\x54\xf3\xce\xb3\x7a\x19\x50\xe0\x0c\xa4\x84\x03\x07\xe3\x99\x3f\xf1\x9d\x15\xe3\xea\xb7\xaa\x81\xb4\xdd\xc0\x8b\xf1\x5f\xf7\x81\x68\x68\xbf\xac\x83\x20\xf3\x3e\xfe\x17\xef\xe1\xcc\x35\xa0\xf9\x52\xe0\x98\x13\xd0\x7c\x37\x70\x40\x1f\x68\x17\x04\x94\x7d\x07\xa8\x2e\x60\xbd\x83\xee\xe7\x81\xbc\xeb\x8c\xeb\x4a\x51\x52\xda\x68\xe5\x3e\x07\xe9\xd7\x01\x43\x67\xf6\x73\xe9\x44\x93\x50\xcc\xf7\x35\xe3\x8e\x01\xd3\x77\x01\x31\x6a\x80\x7d\x19\xdf\xff\x96\x4e\x66\xab\xa6\x32\xf6\x11\xfb\x07\x10\xbe\x56\xca\x0a\x81\x35\x97\x81\x15\xef\x98\x13\xb3\xca\x0b\xc8\x6f\x05\x24\x1e\x05\x0e\x26\x01\x89\x29\xc0\xd9\x35\x80\x14\xd5\xee\xb6\x60\xfb\xff\xac\x06\x92\x6a\xb8\x7e\xdf\xd0\xfe\x5a\x1d\x00\x81\x03\xcb\x78\xff\x4f\xe2\x82\xf7\xb7\x78\x0f\xa7\x7a\x01\xd2\xf9\x50\x3a\xe3\x4b\xf3\xb2\xcf\x83\xfd\x48\xee\xf3\x50\xf0\x07\xeb\xec\x64\xdd\x60\xff\xc8\xb8\x0b\x68\xfc\x0c\xa4\x2d\x00\xb4\xf4\x80\xb5\xaf\x19\x63\x58\xa3\x0d\x18\x57\x02\xf1\x6d\x80\x49\xad\x80\xe8\x34\xc0\x7a\x11\xe3\xfa\x8e\x16\x40\x54\x73\x60\xbe\x2a\x10\x61\x0c\x2c\xfe\x08\x44\xbe\x01\xc2\x4c\xf8\xe7\x09\x7f\x02\x11\x3f\x00\xe9\x6e\x8c\x97\xe7\xbf\x07\x56\x8c\x06\xf6\xbb\x01\x31\x4d\xb8\x5f\xce\xca\x6e\x80\x74\xde\x96\x72\x4d\xc9\xd7\xe3\x9c\xff\x6f\xfb\x65\x1e\x80\x3c\x0f\x77\x23\xea\xdb\x2f\xf3\x1e\xce\x8b\x6a\x89\xcc\x7b\x38\x22\xea\x99\xb5\x7d\x1e\xa2\x81\xa6\x39\xc0\xd6\x39\xdc\x67\x68\x53\x20\xd0\xa9\x1f\xf7\x2d\xe9\x69\x0d\x24\x9f\x06\x06\xc5\xf1\x7a\x1f\x66\x0d\xc4\x0e\x03\x0c\x5e\x01\x31\x4a\xc0\xc4\x13\x40\xd8\x3d\x60\x4a\x05\xb0\xec\x12\xe3\xdd\xc1\x16\xa0\x9b\x0e\xc1\x76\x80\xb7\x07\x10\x7a\x8e\xf9\x41\x61\xff\x00\x89\x3b\x18\xe7\x4f\xd7\x01\x42\xff\x04\xb6\x2f\x01\xc2\x36\x01\xfb\x7c\x81\x88\x5d\xdc\xb3\x2b\xc2\x89\xfb\xc4\x48\x47\xed\x17\x3f\x7f\xa1\x03\xf1\x0d\xfd\x8b\x85\xfa\x0d\xf0\xee\x86\x7d\x5f\x1a\xe8\x5e\x1c\xfb\x85\xc7\xf2\x66\x62\x17\xfc\x97\xc7\x6d\x02\x1f\x95\x76\xd1\xc6\xab\x81\xb4\x3e\x40\x9b\xb9\x40\xea\x3b\xa0\x9b\x33\xfb\xb3\x34\x1f\xb1\xb9\x52\xae\xc1\x7a\xf7\xa3\xb2\x80\x70\x2b\xc0\xb8\x14\x58\xb6\x0b\xb0\x88\x05\x42\x5a\x03\x33\xd3\x81\x00\x7b\xc0\x65\x01\xe0\x67\xcf\x18\xb6\x7f\x08\xb0\xcc\x10\x08\x2e\x01\x56\x37\x05\x82\x5e\x00\x1b\xf7\x03\xc1\x0f\xb9\xb6\x1c\x18\x0a\x1c\x18\x08\x2c\xbb\x07\x5c\x38\x01\x2c\x6b\x01\xfc\x14\xc3\xff\xe7\xd5\xcb\x6f\xeb\x40\xcc\x7b\x51\x1f\x0f\xff\xe9\xe6\x37\xd6\xc3\x37\x74\x2f\x64\xfe\xc7\x4e\x91\x1d\xe6\xaa\x73\x7f\x98\x0c\x81\xff\x4b\xf1\xbe\xc9\xf7\x75\x7a\x07\x2b\x27\x00\xdd\x0a\x80\xe8\xf6\x40\xff\x16\x40\x48\x22\xa0\xab\x06\x04\xb7\x04\xc6\x2c\x03\xfc\xb3\x81\x49\x46\x80\xcf\x51\xc0\xd6\x07\xf0\x75\x06\x9c\xee\x01\x8b\xa7\x02\x1e\xc6\xc0\x52\x25\xd1\xff\x81\x94\x34\x01\xdf\x6d\x1c\x27\x97\xfe\x01\xec\xf4\x05\x96\x18\x33\x33\xd5\x4f\x68\x18\xf9\xd7\x00\x3f\x47\x00\x52\xf2\xf3\xfe\x44\x9d\xdf\xcb\xcf\xfd\x5b\x3a\x10\x3f\xfd\xdc\xc0\xfe\xab\xf5\xfd\xe0\x2b\xdd\x8b\x06\xfd\x2e\x72\x44\xd5\x75\x83\x38\x45\xae\x71\xe5\x78\xb2\x62\x17\xd0\x4c\x03\x08\x8f\xe4\x7e\x64\xcb\xfc\x01\xf5\x5b\x40\x40\x20\x30\xe4\x2d\xb0\x64\x1e\xa0\x37\x15\xf0\xfe\xc4\xbc\x18\xcf\x2c\xee\x3f\xb7\xf0\x4f\xc0\x61\x0d\x30\xef\x06\xf7\x7f\x98\x6f\x07\x04\xb5\x03\x3c\xad\x80\xb8\x7f\x01\xcf\x59\x3c\x0f\x9e\xb9\xc0\x0e\x1f\xc0\x73\x36\x70\x30\xa8\x4e\x07\x62\xd1\x34\xe0\xc1\x75\x60\xf1\x10\xe0\xc3\xcf\xc0\x5c\x8d\xfa\xfc\x8f\x86\xfa\x17\x53\x8e\xf0\x58\xdb\xf7\xe5\x5b\x7e\xd0\xa0\xef\xc9\xff\xe2\x7f\x24\x08\xfc\x37\x32\x8f\xc7\xa0\x07\x40\x4b\x5b\xc0\xef\x01\xd0\xf9\x27\xc0\xab\x35\xd0\x57\x7a\xd6\xbe\x80\xee\x09\xc0\xbd\x08\x18\xfb\x16\x70\xb7\x64\x4c\xdb\x35\x01\xb0\xef\x0a\xb8\x3e\x67\x1e\xe1\x9c\x37\xcc\xaf\x9d\xdb\x8a\x7d\xcc\x51\xca\xa1\x0e\x03\x4e\x41\xc0\x76\x77\xc0\xfe\x0f\xe0\xe0\x55\xe6\x43\x5c\x50\xab\xd3\x81\x98\xb3\x03\xf8\xd0\xe5\x6b\xfe\xc7\x94\x7c\x1e\x65\x3d\x04\x99\x0f\x50\x6b\xbf\xa8\x96\x9c\x11\xfa\x28\xdf\xec\x7b\x22\xf0\xfc\x3c\xc1\x8b\xca\x14\xa7\x85\xf5\x42\x07\x40\xe6\x7f\x84\x09\x74\x62\xe9\x78\x40\xe9\x31\xe0\x1d\x07\xb4\x3f\xc3\x76\xf7\x78\x03\xb8\x0c\x05\x06\x47\x01\x8e\x19\xc0\xa8\xc7\x80\xc3\x68\xee\x33\x36\x33\x95\xf1\x6e\xfb\xa7\xc0\xfc\x35\xac\x31\xb5\x34\x07\x98\xee\x0d\xc4\x26\x02\xd3\xb6\x0b\x1d\x08\xe9\x24\xe5\x0c\xd8\x56\x01\x07\xbf\xab\xd3\x81\x98\x6e\x07\xdc\x33\x02\xa6\x0e\x00\xfe\xd4\xf9\xa2\xff\x49\x83\x3e\x20\x32\x1f\x40\xe6\x41\xc8\xfd\x7f\x64\x1e\x94\xec\x07\x87\x85\xfe\x81\xac\x7f\x52\xeb\x07\x32\xff\x43\xf8\x4d\x2d\xff\x43\xee\xca\x2d\x74\x53\x64\xfd\x0b\x9f\x4c\x1e\xe7\x9d\x66\xbd\xa9\x39\xef\x81\xce\x53\x81\x99\x7b\x80\x7e\xeb\xeb\xf8\x0f\x33\xec\x80\x89\x4a\x80\xb5\x29\xdb\x66\xdd\x1a\x70\x6b\x0d\x58\x2a\x71\x1e\x61\x61\x0c\xac\xbc\x07\x98\x67\x32\xc7\xd8\xac\x05\xeb\xa3\x4c\x3a\x07\x1c\x6d\x01\x98\x2d\x01\x2e\x1f\x03\x4c\xcb\x80\x7b\xad\x39\x87\x7f\x1f\x5e\xf7\xbc\xe5\x3e\x20\xba\x63\x04\x0f\xe2\xb7\xfa\x7c\x80\xff\xa9\x7f\xf2\xfa\x1b\x7e\x20\xf3\x3f\x04\x56\x2a\xeb\xa0\x44\x8b\xbf\x93\x79\x30\x72\x75\xda\xb1\x90\xc7\x69\xd7\x81\xd6\x27\x00\xdb\x00\x40\x0a\xb1\xe6\x4b\x80\x21\x79\x80\xd9\x51\xc0\xf0\x32\x60\x1a\x0c\x58\xc5\x70\xcc\x98\xeb\xca\xbc\x0e\x69\x1e\xc6\x97\x32\xe7\xce\xd0\x9b\xb9\xd7\x86\x67\x79\x1e\xf4\x4b\x81\x43\x25\x80\x41\x37\xee\x75\x68\xa0\xc7\xfe\x20\x3d\xe7\xb7\xaf\xeb\xf4\x2f\x64\xde\x47\xaf\xcf\x3c\x76\xbf\xc8\x63\x17\x11\x47\xcf\x7e\xfc\x6f\xfb\x65\xdc\x73\x97\xe0\x79\xc8\xb8\xef\xb7\xf8\x1f\x72\xff\x93\x30\xf1\x3e\x32\x0f\x66\xbe\xe8\xce\x3c\x5b\xac\xb3\x29\xbe\x80\xd2\x55\xc0\xb4\x19\xe7\x19\xc6\xff\x00\xfd\xcb\x01\xa3\x95\x80\x7e\x25\x30\xda\x0c\xb0\x38\xc8\x39\x97\x53\x15\x30\xe2\x14\xe0\x37\x96\xb9\xfc\x2b\xc6\x03\x3a\xae\x9c\x2b\x6a\xde\x05\x76\x44\xf3\x5e\x2c\x9d\x2f\x06\xaa\xf1\xba\x18\x30\x07\xb8\xeb\x0c\x68\x5c\x07\xde\x0c\x01\x7a\x79\x08\x7b\x9f\x09\x1e\x84\x22\x8f\xad\x84\x7f\xb4\xb8\xc7\xe3\x49\xf5\xfa\xf6\x7f\x53\xff\x44\xe4\x53\x5f\xf1\x3f\x04\x8f\x24\x4a\xf0\x06\xbe\xe2\x3f\x88\xd3\xf6\x0c\xf1\xfb\x09\xa2\xaf\xd4\xe8\x6d\x40\x9b\x6d\xc0\xc8\x7e\x40\xaf\x5e\xc0\x30\x5d\xee\x3f\xa7\x55\xc2\xdc\x1f\xc9\x3e\x69\x1e\xfa\xe7\x01\x4b\x54\x00\x8d\x8e\xc0\x0a\x3b\xa0\x97\x22\x2b\x3f\xf7\x1c\x0f\x14\xe8\x00\xdd\x97\x30\x87\xaf\x8b\x3b\x70\x21\x1a\xe8\x18\x08\xdc\x99\xce\xb9\xed\x6b\x2f\x40\x55\xe8\xc0\xb4\x10\xf1\xa0\x89\xd8\x1f\x14\x44\x9f\x18\x85\x62\x1e\x1b\xf2\x3f\x1a\xea\x9f\xd4\xae\x83\x06\xfc\x8f\xd5\x22\x9e\xca\xdd\xfa\x83\xa3\x79\xf4\xf5\xe5\x71\x81\xe0\xcf\xd4\xf2\x60\xc4\xdf\x19\x0b\x9d\x11\x2d\x25\xa0\xd1\x5c\x60\xe0\x18\xa0\x6b\x5b\xa0\x6f\x30\xa0\x7d\x96\xd7\xca\xc4\x59\x40\x77\x27\x60\xf6\x62\xa0\x53\x21\xe0\xd5\x0f\xe8\x60\x07\x84\x9f\x03\x54\x1a\x03\xc9\xef\x81\x36\xa3\x81\xdc\xbf\x80\x56\x0b\x80\x3d\xff\x00\xca\x0f\x81\xd3\x0a\x40\xb3\x6d\xc0\x4d\x7b\xa0\xe9\x18\xe0\x97\x85\x40\xe3\x1c\xe0\xd3\xe2\x3a\xbe\xc7\xb7\xc6\xaf\xf8\x1f\x9b\xeb\xaf\x83\x8c\x6b\xf5\xed\x5f\x23\xaa\x8b\x31\xe2\x3c\x12\xf2\x98\xbb\x91\x2f\x09\x62\x3d\x14\x59\x07\xc5\x85\xd4\x92\x80\x69\xd9\x4d\x49\xf7\xc1\xf4\x4c\x33\xba\xff\x38\xc2\x5b\x99\xf0\x75\xf5\xae\x2d\x49\x9d\xba\xc3\xf6\x36\x63\xdb\x79\x02\x6d\xe3\xdb\x1c\x1a\xd0\x08\x68\x11\xd0\x76\xe9\xd8\x16\x40\xd3\x59\x6d\x13\xa7\xb5\x01\x94\xfc\xdb\x2e\x9d\x4f\xcf\xa0\xed\xf4\x10\xae\x7c\x6a\xae\xa1\xb5\xd7\xfa\xda\x16\xf2\xe1\x56\xbf\x95\x52\x0e\xd3\xf2\xbb\x93\x84\x20\xb6\xb4\xbd\x4e\x7b\x5f\x8b\xd1\x4f\xc9\xd7\x9b\x9f\xfe\x9b\xea\x7f\x4d\xc6\x09\xde\xc7\x82\x2f\xf9\x1f\xf2\x58\x52\xf9\x0d\xfb\x45\x3e\xb0\xfe\x08\xf3\x7e\xd6\xa8\xb0\xfe\x4b\x74\x75\x73\xca\x18\x96\xa5\xb5\xa1\x95\xb3\x64\x60\x2b\xfa\xcb\x05\x27\x18\xb5\x76\x7e\xc7\xfa\x19\xd3\xdb\xb0\x4a\xb9\xd9\x22\x46\x27\x0c\x7c\xbb\xd1\xbd\xe0\xfe\x47\xbb\x53\x35\xb5\xdd\xaa\x9e\x39\xfc\x09\xbd\x95\x9b\xd1\xfd\xc4\xde\x7a\xac\x24\xd2\x3b\xc5\x80\x2a\xa2\xea\x33\x59\x49\xa0\xe7\xbd\xf9\xb4\xf7\xa8\x97\xf1\x0d\x52\xb5\x97\xab\xc9\x6e\xb5\x4b\x5b\x08\x61\xe8\x7e\xa0\x84\x2e\x38\x77\xfd\xa7\x82\x9e\x40\xb7\xc1\xd7\xa8\x5e\xdd\xc5\xeb\x09\x05\xe9\x2e\x15\x7f\x93\xc2\x49\x07\x31\x0f\x6d\x86\xf1\xa8\x2c\xfa\xc2\x34\x99\x24\x8d\x0d\xed\xdf\xf4\x0a\x94\x01\xad\xab\x69\xce\x7d\x60\xd4\x99\x07\x23\xf3\x5f\x96\xbb\xa9\xf0\xed\xf1\xf4\xce\x54\xe7\xf6\x9c\xd8\x8d\xef\xff\xb7\x51\xa7\xc8\x30\x63\x0c\xf3\x5e\x26\x29\xf6\x23\xab\xc6\xdc\xe0\xae\xdc\x5a\x5d\x07\x52\x06\xd2\xdd\x66\x08\x45\x96\xc6\x7e\xda\x02\xf7\xd6\x29\x6c\x41\x6b\x50\x7b\x5e\x1f\x8a\x1d\x3a\xdf\x19\x50\xbd\x4c\xf3\x95\x35\x79\x90\x76\xaa\x3b\x21\x29\xda\x3d\x43\xa8\x36\xa0\x95\x98\x40\x95\x3d\xcd\xe6\xdc\xdf\x7f\xf0\x8e\xdd\xb4\x46\x07\x15\x55\x50\x9d\x7a\xd0\x80\xab\x84\x8b\x0c\xc8\x79\x40\x33\x3f\xc0\xfb\x4f\x8a\x55\x7d\xca\xd9\xee\x9e\x83\xff\x1f\x7b\x6f\x1d\x96\xe5\xb6\xfc\x0f\x8f\x5d\x88\x0a\x98\x28\x2a\x58\x98\x84\x28\xd2\xdd\xdd\x9d\x22\xdd\xdd\xa9\x08\x88\x94\x22\x20\x02\x2a\xd8\x85\xdd\xdd\x85\x5b\xdd\xb6\x28\x76\x62\xd1\xb5\xde\x8b\x99\xfb\xd1\x2d\xfb\xf8\x9e\xef\xff\xbf\xb3\xaf\xeb\x5c\x73\x90\x87\xe7\xbe\xd7\x5a\xb3\x66\x66\xcd\x7c\xd6\x67\x48\x8e\xe3\xee\xf3\x12\x2f\xca\x46\x13\xc0\xbc\x7b\xf1\xf9\x81\x88\x4a\xc9\x13\x19\x8e\xb7\xc6\x78\x7d\x90\xd2\x4e\x4c\xc0\x13\x57\x9c\xff\x04\xf4\x8c\xa1\x46\x94\x45\xf4\x91\x9c\x8a\x7d\x74\x9c\xb7\x12\x3b\xbf\x45\x82\x04\x46\x22\x06\x30\x0f\x51\x28\xca\x1d\x84\x1b\x90\x16\x94\xc1\x3c\xff\x14\x63\x59\xb4\xb4\x23\x6a\xe4\xb8\x93\x8c\x22\x17\xc1\x29\xec\x19\xea\x4d\x3f\xd3\x0c\x2a\xae\x93\x45\xdb\xa2\x34\xd2\x08\xcf\x32\x4a\xbd\xdd\x50\x73\x14\x6e\x84\x63\x1d\x4a\xfe\x40\x3a\x56\x0a\x15\xfc\x8b\xf1\xf3\x72\xf5\x94\x01\x95\xcf\x39\x81\x6b\xba\xe8\xdc\x0d\xdc\x2f\x0b\x26\x3f\xc5\x18\x78\x61\xfe\x0f\xf4\x7d\xd2\xbb\x39\xfc\x47\x16\xc9\x19\x5c\xdf\x1c\xe2\x45\x29\xf9\x36\x1c\xab\x7e\x39\xcf\x47\x51\x1f\x90\xf5\xe4\x40\x52\x1b\x26\x63\xa4\x18\xdb\x49\xd9\x74\x1e\x0f\x8c\x8f\xa6\x24\xce\x83\x9b\xe0\x7c\xec\xc6\x6f\x25\x41\x78\x01\x63\xa5\x45\xb8\x1f\xd4\xf3\x09\x37\xb0\x30\x47\x19\xe7\x41\xbc\x4b\x0d\xab\x4d\xe3\xfd\xd5\x70\xd7\x0e\xac\xd0\xe4\x76\xa2\x0e\x87\x2c\xd4\x9a\xcb\x8f\x3b\x4e\x67\x8f\x18\x7e\x52\x57\x64\x21\xd6\x9f\x74\x86\xea\x63\x45\x51\x8f\x11\xcf\xbf\x5e\x12\xd5\xfd\x75\xa2\x52\x71\x26\xb5\xcd\x0a\x11\x17\xa4\xe3\xbf\x09\x33\xcb\x9a\xf1\x87\x31\x9f\xaf\xe9\x7d\x19\xdf\x5c\xb3\x0f\xe1\x83\xd4\xd7\x7f\x46\xdb\xfd\xa7\xbe\x41\x92\x88\x83\xe0\xf5\x81\x5a\x51\x4d\xa8\x9c\x14\xae\x2b\x49\x9c\xbe\x24\xf5\x01\xa9\x58\x80\x38\x21\xff\x95\x8b\x30\x42\x72\x7f\x49\xeb\x68\xfb\x54\x09\xf1\x0f\xa6\xcf\x54\x08\x0f\xf8\x45\x0b\xeb\x12\xca\xc6\x3a\xa8\xad\x12\x15\x7a\xa8\xbd\x62\x7d\x0c\x70\xdf\x08\x55\x1b\x91\x65\xad\x36\xe3\x2c\x8f\x39\x67\x69\xcd\x93\x87\xe3\x13\xcd\x2b\x49\xd3\x2c\x7c\x17\x62\xc5\xcb\x52\x84\x3a\x93\x98\x7f\xa6\xba\xbf\xc5\xa9\x40\xd2\xbc\x25\xc9\x38\xe3\x96\x8e\x05\xf8\x64\x0b\x6e\x4f\x9b\x15\x1e\xc0\x3c\xbc\xc9\x99\x73\x38\x9f\xa6\xb5\xf7\xf0\x8d\x8d\xde\xbc\x41\xfb\x61\x5c\xd8\x4e\x9d\x2a\x1e\xb2\xdf\x78\x51\x88\x37\x66\x45\x35\xe1\x9d\xd2\x1a\x24\x31\x52\x88\x37\x96\xc1\xba\x44\xd4\x44\x62\x1f\xe0\xf1\xc0\xf0\xfa\x21\x39\xd6\x68\xe3\xae\xb3\x70\x20\x9e\x10\x7d\x51\x3d\x7c\x3b\xd5\x44\x53\xaa\x77\x5e\x30\xc5\x6a\x02\x0f\x07\x33\xc1\xd2\x82\xf8\x81\xb2\x78\x7c\x30\x3c\x1c\x0c\x4f\x3a\xd6\x90\x85\x75\xac\xa1\xbe\xf6\x8e\x35\xa4\x61\x0e\xfe\x5a\xa8\x51\x8e\xa5\x76\x79\xf4\xb3\x2f\xee\x50\x67\x95\x84\x7c\xfa\xdc\x0a\x3c\xcb\x38\xdd\x28\xbb\x4f\xbf\xdf\x49\xf8\x19\xa7\x53\xa8\x47\xf6\xc7\xe9\xec\x64\xa7\xf0\x02\xf3\xf5\x36\xea\x94\xa7\xb7\x96\xa5\xfb\xed\x84\xff\xe0\xcd\x0b\x8f\x07\x27\x09\x48\x9f\x23\x32\x29\x40\x0e\xa8\xd3\xc4\xd5\xf1\x3c\xae\x8f\xef\xeb\x7c\x83\xfa\x22\x59\x25\x9b\xe1\xdb\x19\x5d\x33\xc3\xfa\x8f\x96\x90\x15\xae\xab\xbc\x92\x2d\xda\x07\x49\x49\x3b\xfc\x02\xd1\x5a\xea\xd6\x30\x5a\xcd\x89\xf6\x83\x81\x1b\xc7\xd8\xe7\xc1\x79\xea\x25\x22\x84\x03\xf1\x16\xa1\xa3\x88\x87\xfb\x54\xb4\x87\x1e\x72\x32\xdc\xbf\x6b\xe3\x93\x3d\x7d\x6d\x50\xdf\xbd\x2b\x89\x81\xc2\x27\x29\x0e\xeb\xc1\x3e\x0f\x57\xe0\x59\xd8\x27\x75\xdd\x39\xfa\xfc\x36\xd4\x40\x6f\xd3\x93\x88\x17\xf3\xc8\xa2\x5c\x92\xc7\xd8\xc7\x68\xe9\x79\xb8\x18\xd7\xd4\x4e\x8c\x11\x1c\x39\x7e\x10\xe2\x45\x49\xb8\xa5\x88\x55\xb0\x88\x3a\x0d\xd4\xc6\xc0\xdd\x7a\x68\xa5\xbc\x2e\xd1\xfa\xba\x54\x5b\xe1\xfd\x5e\x9b\x67\x36\x58\xb7\x37\x9d\x49\xfd\x9f\xf4\x22\x9d\xd0\xfe\xff\xc4\xc1\x3c\x70\x45\xd6\xf4\x99\xb7\x88\xcd\x65\x42\xcd\x12\xdc\x67\x02\x6b\x97\xa0\x7f\xe8\x75\xda\x87\xab\xdf\xf0\x78\x61\x82\x0e\xf5\xc2\x7a\x4c\x60\xb9\x20\x8e\x37\x58\x80\xf4\x21\xb0\x9c\xea\x38\xc1\xe7\xe8\x7e\x77\x48\x92\x35\xfa\xc3\xb0\x09\x84\x1f\x0c\x61\x51\x18\xdb\x05\x67\xa5\x2b\xd1\xef\x8b\xf0\xe7\xa0\xeb\x5b\xb0\x9e\x15\x2a\x4e\x37\x86\x83\x9d\xaf\xe0\x3e\x09\x72\xbd\xcf\x68\x65\xdf\xa3\x7e\xf8\x67\xb5\x63\x6e\xc5\x2b\x93\xe6\xc1\x4d\xb4\x5b\x46\x9f\xa3\x03\x77\xa8\xb3\x29\xd6\xad\xbc\x23\xad\xb0\x4f\x9a\xbb\xbb\xed\x5c\xd2\x2e\x47\x8e\x07\x84\x70\x21\x06\x7a\x34\x4e\x8d\x06\xc2\x49\xf0\x70\x30\x92\x82\xde\x68\xbd\xa6\x1d\x26\x9e\x94\x71\xf5\x74\xc2\xe2\xdb\x10\x48\x76\xe0\x27\x2f\x4c\x04\xa7\x0f\xd1\xd1\xc4\xff\x10\xdd\x47\x08\xfd\x7b\xb4\xdf\x54\xc4\x87\x46\xff\x45\xf7\xbb\x63\x36\x6b\xe0\x37\xc6\xae\xb5\x42\x1c\x43\x74\xec\x62\xac\x4f\xc5\x28\xd0\x37\xc5\x38\xa5\x61\x6c\x17\x93\xbd\x1a\xcf\x02\x31\x91\x1b\x11\x69\x10\xfd\x75\x1f\x56\x98\x63\xc2\x2e\xa2\x25\x8e\xca\xb9\x8b\xf6\x22\x72\xf0\x0b\x8c\x5c\x78\xb8\x98\x50\xae\x5f\x92\x7f\x3f\xcc\xdb\xba\x58\x3d\xa1\xd9\x22\x5e\x14\x8f\x70\x47\x5c\x3f\x27\x31\x57\x44\x8d\x58\xe7\x53\x7f\x24\x63\x75\x8a\x94\x75\xbe\xf9\xa0\x1f\x54\x89\xa7\x71\x2e\x1a\x12\x84\x55\xf5\x39\x89\xc4\x1b\x22\xe6\x10\x8a\x7d\x33\x46\xd5\x85\xe1\x3e\x18\x54\x13\xcd\x8d\x3b\xf6\x00\x49\x1e\x1e\x26\xf9\x2d\xdd\xf7\x4f\x4e\x15\xc2\xb8\x20\xc9\x65\x1a\x6e\x90\x84\x95\xd2\xb8\xbf\x53\xa6\x6a\x62\x5c\x90\x9c\x68\x8e\x08\xc6\x94\x4c\x37\xdc\xe7\xa9\xdb\x43\xf1\x8d\x52\xf6\xa7\x60\x65\x3e\xd5\xa3\x00\xbf\x31\xe5\xde\x06\xd4\xd0\xe4\xf6\xdd\x98\x6b\x4c\xae\x3c\x85\x75\xed\x24\xb8\x49\xbc\x32\x36\x75\x68\x47\x12\x4a\xbe\xe0\x08\x79\xb8\x98\x48\xec\xbf\x17\xc8\xed\x63\x4f\x2d\x37\xfc\xad\x0b\x2c\xc1\x93\x82\xed\x2b\xe2\x85\x31\xdf\xe9\x8d\xeb\xa9\x5f\x19\x80\xde\x58\x53\x2c\x08\xbd\xba\xfc\xb3\x50\x7c\xba\x54\x19\x9d\xb0\xc5\x6b\x08\x1f\x32\x61\x5c\x2c\x5a\xa3\x11\xdf\xe8\xe6\x41\xbf\x73\x89\x5c\xc6\x97\x77\x22\x5f\xc6\xe1\x62\x32\x44\xfa\x21\x72\x86\x87\x87\xc9\x34\x9c\x86\xfa\x9a\xa9\x2c\x43\x7d\x91\x98\x06\xc6\xcf\x99\x49\x66\x84\x93\x31\x74\xc5\xbb\x1d\x59\xde\xc1\x8c\x3e\x97\x88\xf6\x21\xb3\x2b\x17\xf9\x2d\xb2\xc4\x2b\x66\xd1\xe7\x77\x61\xee\x24\xa3\xf6\x44\x2d\x3d\x87\xea\xbc\xcb\x9e\x3c\x46\xbd\x58\x7a\xee\x2d\xf2\xf0\xa4\xe9\xb5\xac\x87\x9f\xb8\x18\x2f\xb9\x25\x18\x47\xb9\x49\x78\xa1\x36\x39\x8a\xf8\xa3\x77\xb1\x96\x0a\x24\x9e\xc0\x9d\xd4\x17\x4a\x67\x02\x11\xd9\xfe\xc4\xc1\xec\x89\x46\x5e\xb0\x79\xcd\xd4\x4f\x65\xba\x74\x62\x2d\xed\x07\x72\x8b\xfc\xd9\x69\x68\x9d\x7a\x1f\x4d\x9f\x4e\xe3\xce\xe4\x4e\x2a\x3f\xf1\x30\x09\xfd\x11\xaf\xc3\xc3\xc3\xe4\xd5\xd0\x7d\xff\x82\x1b\x32\xe8\xff\x0b\x8c\x34\xd0\xdf\xe5\x1d\x37\xa3\xbe\x49\x35\x54\xf7\x2f\x50\x0f\xc4\x7a\x7d\xfe\x43\x2a\x08\x17\x98\x67\xa3\x7f\x2d\x78\x50\x86\xfc\x01\xf9\x9d\xdb\x75\x48\x1e\xc5\xfe\x27\xb9\xfe\x97\x4d\xe8\xb9\x64\x27\xb2\xb3\xde\xe0\xef\x57\x4a\x34\x62\x6e\x91\x70\x31\xee\xfb\x7d\x70\xbc\x4e\x39\x41\xf8\x16\x76\x42\xa1\xa8\x4d\xbc\xbe\x50\xfa\xfa\xc4\x87\xa3\xd1\x8f\x78\x52\x94\x7a\x53\x77\x1a\x1e\x0e\x66\x56\x5d\x1a\xee\x17\xd1\x3a\xea\xe6\x34\x2e\x8c\x78\x61\x06\x27\x65\x49\xfe\x3e\xee\x55\x9e\x24\x79\x78\x98\x12\xad\x7e\xc8\xe7\x50\xe2\x2d\x84\x1a\x58\x7c\x6c\x0a\x22\x0d\xd6\xf6\x22\x3b\x59\x3c\x82\x3c\x75\xf1\x2b\x53\xfc\xc6\xa2\x5a\x47\x7c\x83\x62\x9f\x00\xdc\x4f\x25\x45\x09\xb8\xfe\xc5\xe7\x32\x09\x07\x53\x44\xb9\xa1\x12\x05\x8a\x2f\x8b\xcf\x1d\xed\x47\xf2\x32\xe1\x61\x46\xfc\x8d\x1a\x5c\xa4\xf7\x0e\xf1\x10\x6b\xf2\x9b\xf0\xef\x88\x17\xc5\xcd\x33\x14\xbd\xd0\x4f\x1c\x90\x4a\x0c\x66\x4c\x8c\xad\xe3\x71\xd7\xea\x8a\x24\xa2\x9f\x54\x75\xa3\x1b\x57\x8b\xee\xa5\x63\x5c\x25\xb9\x9e\xfa\xc8\xcc\x08\xcf\x44\xd4\xe2\x44\x89\x15\xe8\x37\x46\x7e\xcc\x41\x2b\x3e\xc4\x38\x8f\xc3\x3b\xf0\xfa\x44\xf5\xc4\xc3\xac\xf7\xee\x87\x38\x95\x8a\x92\x91\xa8\xc7\xeb\x07\x4d\xc1\x19\xaf\xb0\x91\xc6\x4e\x35\x15\xaf\x55\x71\x7f\x94\xad\xa3\x33\x7b\x85\x83\x23\x9e\x68\xd6\xef\xf3\xc7\xb3\x7b\xc5\x1e\x3a\x77\xad\x77\xc9\xc4\x9c\xe1\x7a\x28\x42\xfb\xb2\x51\x76\x0b\x8e\xbb\x62\xd1\x01\x1c\x77\xb9\xe4\x79\xc4\xc5\x95\x33\xea\xb3\x56\x3e\xfe\x15\xda\xd7\x75\xef\xbf\x23\x13\xda\x3a\xc4\x57\x3b\x5c\x8a\x44\x34\x09\x8f\x0f\xc7\xbc\x22\x19\xd7\x51\xb7\x86\x32\x0b\xea\xf9\xe9\x18\x9d\x2b\x25\x65\x60\xf4\xbe\x60\xc0\x0a\x9c\x97\x79\x47\x73\xf0\xa9\xd3\x56\xe6\xa1\x3d\x10\x31\xcf\x47\xaf\xcf\xeb\x13\x35\x48\x84\xc7\x8b\x53\xc2\x65\xbc\xfe\x88\x87\x19\x41\x27\x99\x4d\xf9\x53\x70\x1f\x6c\x92\x20\x22\x99\x4d\x47\x94\xd1\x4f\x6e\x96\xa3\x4e\x7f\x9b\x14\x28\x97\xb1\xd9\x8f\x2c\xf5\xa6\x61\xf4\xe6\x9b\x47\x91\xff\xdc\x32\x84\xf8\x18\x37\x2d\xaa\x44\xfb\xb9\xe9\xf3\x3e\x25\xfa\xbb\x33\x2d\x24\x6f\xa2\x27\xa8\x1a\xf1\x1c\x99\x8d\xaa\xb2\xea\xf1\x5c\x57\xb9\x8a\xf5\x05\xb0\x7d\x43\xfb\xd9\x62\x2b\xf5\x87\x32\xce\x5e\x8e\xb3\xa9\x1b\x48\x7d\x73\xd4\x6a\x89\x2f\xa4\x67\x7f\xa8\x39\xce\x84\x7b\x9a\x3a\xa0\x10\x2b\x20\xc2\xc7\xa9\x3b\xcb\x08\x11\xd2\xce\x7e\x3f\xca\x29\x20\xb3\xed\xd9\x2f\x89\x87\x87\xd9\x31\xb9\x3f\xf1\xc1\x78\x8f\x44\x7f\xb9\xb3\x5a\x94\xf0\x2f\x59\x92\xf8\x0d\x3b\x4f\x2b\xe3\x8e\xdb\x51\x65\x88\x4f\xda\x51\x6a\x87\xe7\xaa\x9d\xf3\xbd\xd1\xa2\xed\x1c\x1d\x89\xb5\x95\x9d\x4e\x4b\x71\x9d\x77\x7e\xa4\x37\xda\x29\xbe\x1e\x71\x75\x3b\xa4\xe8\x6e\xe1\xce\xa8\xd3\xb8\x0f\x76\x28\xdf\x40\x04\xfc\xce\x93\xcf\x10\x3f\xb4\x63\xee\x27\xfc\xbe\x6d\x9f\xdb\x0a\x00\x5e\xa8\x53\x3d\xff\xbf\xe1\x1e\x4e\x5b\x01\x08\x6e\xa5\xbb\x50\x63\x7c\x00\xf6\xc7\x50\x3d\xb7\xba\x06\x60\xe2\x37\xe2\x3b\x10\x7b\x00\xb0\xc5\xb0\xfb\x44\x47\x7d\x4b\xa4\x8d\x01\xd6\x5e\xa0\x3e\xf6\x6b\x63\x01\xd4\xb2\x00\x0a\x9a\x01\xb4\x2d\x01\xf2\xc3\x00\x4c\x5c\xff\x51\xf7\x97\x00\xe8\xf6\x58\x19\x93\x01\x3c\x37\x74\x7b\x01\x80\x50\x33\x80\x15\xfc\x74\xe7\x2b\x6b\x3b\x40\x86\x38\x40\x96\x01\x40\xc1\x19\xfa\x7c\xc5\x1e\x80\xec\x41\x94\x43\xcb\xab\xa1\xde\xc2\x45\xea\x00\xb7\x7a\xff\xa3\xff\xc1\x63\x80\x6f\x25\xff\xee\x83\x91\xc9\xf1\x7c\xf3\xfa\x20\xbc\x10\x00\xe0\xab\x06\x78\x7c\x8c\xf8\xa5\xff\xee\x05\x30\xf8\xf6\xbf\x71\x0f\x67\x82\xe8\xfe\x25\xaf\xcf\xc3\xfe\x3d\xc4\x87\xb1\xbd\x9a\xfa\x1b\xf0\xf8\x0e\xaa\xfc\x00\x66\x5c\x02\x28\xbd\x45\xfc\x0f\x3c\x7e\xff\xee\xdd\xa2\xe0\x4f\xfc\x0d\x5a\xa9\x00\xd9\xfb\x01\x0c\xea\x00\x96\x35\x51\x9e\xbe\x7b\xfc\xdd\xfb\x3f\xb5\x2f\x80\xbb\x3d\xc0\xd2\xd3\x00\x81\x57\x01\x52\x1d\x00\xa2\x22\x00\x96\xe5\x01\x2c\xab\x04\x58\x5a\x0a\x90\x5b\x4e\xb9\xeb\xb2\x75\x00\x19\xd7\x00\x76\x58\x01\xac\x10\x03\x38\x76\x82\xe6\xe5\x8a\x08\xc0\x2a\x47\x80\xda\x06\x80\xc2\x23\x00\xcd\x07\x01\x0a\x42\xa8\xdf\x7d\xcf\x3e\x10\x71\xee\x24\x6b\x95\x01\xfa\x78\x00\xdc\xbb\x0d\xd0\x7b\xf2\xbf\x71\x0f\x17\x03\x01\x06\x8a\x01\x9c\xcd\x04\x18\x14\x0e\x70\xc4\x08\x80\x7f\x38\xdd\x31\x1f\xee\x0f\xb0\xd9\x88\xf8\x64\xaa\x3e\x02\x88\xdc\x06\x28\x9f\x06\x20\x96\x04\x50\xb2\x17\x60\xa6\x27\x40\x61\x03\x80\xb4\x13\x40\x81\x06\x80\xfc\x57\x80\x6c\x53\x00\xd5\x50\x42\x95\xea\x25\x01\xa4\xf9\x53\x5d\x33\x65\x3e\x80\xed\x29\xaa\x65\xba\x7a\x53\x3d\xb0\xdb\x0e\x24\x26\x03\x74\x7b\xac\xe4\x6c\x80\xa5\x43\x01\x52\xe5\xb8\x7b\xff\x29\x00\x65\x81\x00\x4b\x63\x00\x76\x28\x02\x2c\x13\x01\x38\x2a\x02\x90\x75\x03\xe0\x86\x29\x40\xd6\x24\x80\x27\xe5\xff\xee\x03\xc1\xeb\x03\xc2\xc3\x7f\x44\x8d\x26\xf9\xa8\x94\xea\xb4\xff\xaa\xf3\x76\xfb\x62\xdd\xff\x80\x7b\x48\x06\x18\xf0\x04\x60\x5b\x27\xc0\xc0\x59\x00\x55\xe7\x00\x86\xeb\x03\x94\xd7\x01\x8c\xcc\x05\x28\x31\x07\x18\x7f\x08\x60\xf5\x4e\x80\x69\x7b\x00\x56\xae\x03\x98\x7d\x12\x20\xe3\x3e\xc0\x7c\x1b\x80\xe5\xc6\x00\x4a\x51\x00\x69\x47\x00\xb4\x13\x00\x92\x0e\x53\x9f\x98\x98\xd5\x00\x96\x76\x00\x31\x1d\x00\x2e\xc7\x01\xa2\xb0\xb3\x2a\x40\xac\x1a\xd5\x42\xe2\x9a\xa8\x66\x9a\x5c\x0d\xb0\x4a\x0a\x20\xf9\x16\x40\xc5\x61\x80\xc4\x76\xea\x8f\x92\x60\x0e\x70\xe4\x12\xe5\x8d\xbb\xd7\x30\x55\x96\xea\xff\x69\xe3\x00\xbe\x7b\xfc\x63\xfc\xa7\x7f\x1f\x3f\xaf\x0e\xde\x6d\x17\xa0\xfa\xdf\xf5\xfe\x2b\xce\x24\x79\xb8\x87\xc3\x5c\xdd\x6a\x47\x77\x94\xe8\x49\x18\xad\xbe\xfa\xbf\xfa\x3c\x94\x5e\x02\x18\xfa\xe6\x1f\x7c\x07\x97\x28\xf7\xbc\xc2\x8a\xee\x58\xa6\xdd\x04\x90\xb8\x0b\x90\x1a\x0c\xb0\x48\x00\x20\x39\x08\x40\xc3\x15\x20\xa6\x0a\x40\x7f\x0d\x40\x74\x23\x80\xa5\x29\xf5\x35\xe8\x3e\xc9\x84\x8d\xa7\x79\x88\xae\xe3\xfe\x77\x8e\x38\x2d\x22\x9d\x00\x72\x9d\x68\xbe\xca\x3a\xbb\x4f\x1f\x00\x3b\x7d\x00\xe2\x4c\x00\x8e\xfb\x13\x9e\xe2\x7a\xcb\xaf\x3e\x10\xc9\x6e\x84\x8b\x89\x0e\xf8\x1d\xff\x11\xc8\xff\x3b\x0e\xe0\xbf\xe1\x1e\x7e\xf6\xfb\xe0\x4e\x89\x3f\xf1\x1f\x5c\x9d\x97\xf3\x0a\xb0\xda\x0d\x60\xc0\xbd\xee\x28\x10\xa0\xfb\xfc\xb8\x42\x19\x60\x7c\x2a\xf1\x78\x4c\x7a\x45\xfd\x0e\x66\xd9\x51\x9d\x47\x66\x2e\x40\x64\x14\xe1\xe8\x22\x7e\x00\xe8\x5e\xa5\x3a\xbd\xd9\x2d\x80\xe0\xeb\x00\x0e\x7c\x00\xc1\xbd\x01\x3c\xe5\x69\xbd\xba\x4f\x2a\x91\xcb\x68\x1e\x78\xfc\x07\x91\xf9\x00\xeb\xbf\x00\x84\x74\x02\x6c\x7f\x09\x10\x66\x48\x7c\xf7\xdd\x51\xd0\xcd\x50\x9a\xcf\x6e\x3b\x19\xa3\x00\xd0\xa6\xf0\x6b\xfc\x41\x31\x24\x7b\xf2\x40\xfc\x6b\x3f\xbc\x25\xd9\x93\xef\xa0\x67\xbd\x7b\x23\x57\x8f\xe1\xf5\xbb\xc8\xe5\x6e\x5b\x75\x7b\xdb\x81\x4e\x00\xe9\x3b\x89\x27\x85\xd7\xef\x21\x66\x30\xc0\x94\x6a\xc2\x73\x48\x86\x03\x44\x08\x92\xdd\x0c\xd6\x02\xd0\x3c\x09\x10\x20\x08\xd0\x1d\x27\xf8\x0d\x01\xb0\x0b\x02\xf0\xb5\xa0\x3e\x18\x3e\x0b\x88\xef\x3f\x50\x8a\x74\x3e\xf0\x23\x61\xe8\x02\xb2\x01\x2a\x06\x00\x04\x14\x03\xec\xbe\x0e\x10\xa4\x4f\x36\x3c\x48\x9d\x6c\x7c\xb8\x10\xc0\xbb\x3d\xbf\xc6\xef\xb7\x8a\xec\x24\x0f\xff\xd1\x93\x07\xe2\x5f\xfc\x27\x3c\xde\x0b\xee\x67\x1e\xef\xc5\x5e\x5e\xb7\x48\xae\x8e\xb1\x9e\xc3\x8f\xfc\x89\xef\x20\x39\x91\xfc\x50\xbc\x18\xc0\x18\x59\x80\x10\x17\x80\x09\xee\x00\x81\x42\x00\xe2\x2d\x00\x81\xca\x00\x0b\x0b\x09\xd7\xa0\x92\xf0\x0b\xff\xe0\x51\x09\x60\x9d\x02\xe0\x31\xaa\x3b\xe6\x07\x70\x15\x05\x08\x50\xa0\x9e\x18\x49\xf0\x0f\xfe\x03\x59\x80\xb2\x42\xf2\xb5\xbb\xf8\xe9\xf7\x27\xd3\x01\x3c\x9c\x68\x1e\x7e\xf2\x40\x6c\x25\x9c\xd8\x7f\xe3\x81\xe0\xcd\x03\x8f\xe7\xbf\xa7\x1e\xf4\xec\x7b\xc2\x9b\x87\x72\x8e\x07\x61\x0d\xa7\x4f\xbc\x53\xc4\xcf\x7e\x0f\x93\x01\xfa\x26\x01\x84\xad\x03\x18\x6e\x00\x10\x14\x06\x30\x4e\xa3\xfb\x5c\x4b\xfd\x94\xdc\xef\x03\xcc\x9b\x06\xb0\x98\x8f\x32\xd7\xce\x25\x00\x5a\x40\xb5\x3c\x8b\x6e\xa9\x06\xe0\xea\x4a\xb8\x86\x00\x46\xb2\xfb\xe4\x6a\x33\x02\x60\xc5\x08\x00\x9b\x5d\x00\xeb\x86\x01\x38\x86\x13\x4f\x8c\x9d\x02\xcd\x83\x8d\x25\x40\x4d\x19\x80\x4d\x06\xc0\xcb\x41\xd4\x3f\xa2\x35\xee\xd7\xb8\xf5\x39\x5e\x2d\x1e\xff\x85\x06\x57\xdf\xeb\xc9\x7f\x72\x96\xeb\xff\x72\xf8\x39\xc9\x9e\x75\xff\x4a\xce\x4e\xfc\xc4\x7f\x70\xf5\xbb\x3f\xf1\x3e\x04\x5a\x02\x0c\x9a\x03\xe0\x53\x0b\x20\xb8\x09\xc0\xbd\xdb\xbf\xfe\x00\x70\x2a\x24\x5c\xa1\x5d\x18\x80\xcc\x33\xc2\x88\x75\x9f\xab\x2c\x45\x48\x2f\xac\x32\xa8\x0f\x86\xf9\x01\xc2\x8b\x59\x00\xf9\x54\x53\x11\xea\x2d\x65\xa6\x4c\x3c\x10\xdd\x3f\xef\x52\x00\x30\xbd\x0d\x70\x26\x11\xc0\xd8\x19\xe0\xae\x06\x80\x69\x32\xc0\x2b\x11\x00\x0b\x29\xda\x0f\x3d\xc7\xcd\xc3\x41\xc8\x72\x7d\xd7\x7a\xea\xc1\x9f\xfa\x9e\x6c\xe5\xe6\xe7\x67\xbd\x93\xdb\x0f\x3c\xde\x07\x1e\x0e\x26\x65\xea\xef\xf3\xe0\xc5\xe9\x47\x77\x4c\xd0\x1d\xa7\xd9\xbf\xa6\xf8\xcb\x72\x23\xc0\x94\x02\x00\x53\x2f\xc2\x4b\x19\xd7\x01\x28\x9d\x05\x30\x9d\x0c\x60\xa4\x0c\x60\x50\x0d\x60\xaf\x0b\xa0\x57\x48\x18\x1a\x5d\x11\xe2\xc3\x30\x00\xb2\x0f\xba\xe1\xc4\x9f\xd4\x1d\xa3\xee\x96\xfd\xc5\x03\xa1\x73\x03\xe0\xfe\x4b\x00\x2d\x7d\x80\x0f\xe9\x00\xea\x49\x00\x1d\x97\x7e\x8d\x9b\x87\xfb\xe0\xe1\x1f\x78\x78\x80\x3f\xf1\x3e\xf0\xf4\x60\x07\x97\x55\xae\xe2\x58\x03\xcb\xb8\x7a\x7f\x4f\xfc\xc7\x72\xba\xa5\xfb\x93\xf7\xe1\x67\xdd\x9f\xc3\x97\x59\x06\x01\xf4\x0a\xa6\x75\xed\x8e\x47\x0d\x6f\x91\xfd\xec\x1e\x5f\xb7\x5e\x68\x55\x02\x2c\x7a\x05\xa0\x99\x45\x1c\x1e\xaa\x8b\x00\x6c\x3e\x03\xa8\xcd\x01\xf0\xdb\x49\x78\x8e\x24\x2b\x00\xe5\xd5\x00\x79\x6b\x00\x94\xca\x08\xb3\x2b\x5b\x03\x50\x3d\x0e\x60\xe1\x1e\x9a\x87\x85\xf9\x00\x77\x6a\x01\xe4\x36\x00\x7c\xa8\x05\x58\xd8\x03\xf7\xc1\xe3\xbd\xe0\xf1\x40\x8c\xcb\x26\xc9\xd3\x83\x23\x17\x7f\x1f\xff\x2e\x2e\x7b\xd4\x13\xff\xb1\x56\x9e\xd3\x83\x1e\xf8\x0f\x5e\xff\x93\xd8\x72\x6e\x3f\x74\x92\x74\xe7\xf0\x1f\x96\x1c\x5e\x57\xa7\x92\xfa\x6c\xa9\x4a\x01\x8c\x94\x02\x50\x6a\x22\xde\xc2\x6e\xdf\xd1\xed\x4f\x15\xf4\x01\x74\xf4\x01\xe6\x5b\x03\x58\x65\x02\x48\x55\x02\xf8\x4c\x02\x58\x30\x1a\x20\x71\x2b\x80\x54\x0e\x40\xde\x6c\x80\x39\x97\x00\xd6\x0f\x01\x98\x55\x00\xb0\xc7\x1f\x60\xe6\x24\x9a\x87\x99\x91\x00\x7f\x0b\x00\x4c\x7f\x47\xbd\xe1\xc4\x0a\x08\x5f\x3d\xfe\xe4\xef\xb8\x0f\x1e\x0f\x04\x0f\x0f\xf0\x27\xfe\x93\x9e\xf8\x0f\x1e\xfe\xe5\x5f\xf8\x8f\x1e\xfd\x4f\xa2\x38\xf6\x55\x1e\x0e\xc6\x89\xf3\xc3\x66\x17\x48\xaa\xdd\x21\x29\x57\x0d\x30\x2c\x0d\x40\xe6\x34\xc0\x24\x6b\x80\xb9\x1d\x00\xf3\x8e\x03\x48\x34\x00\x68\x34\x00\xcc\x4c\x06\xb0\x7c\x46\xbd\xfa\xbc\x6b\x00\xa6\x29\x92\x7d\x10\x1d\x02\xb0\xf2\x35\xd9\xda\xf5\x51\xd4\x53\xa5\x7a\x15\xf5\x10\x3d\xb7\x0c\x60\xf4\x0b\x80\x3b\x37\x00\x46\x5b\x02\x7c\x50\x03\x10\x2a\xa6\x79\xe0\xe1\x3e\x06\x73\x7d\x3f\xfa\x73\x7a\xd2\x8b\xf3\xab\x3d\xf1\x1f\xbb\xb8\x2c\xda\xbf\xfa\xdf\x70\x76\x82\x57\xff\xcf\xe4\x78\x4e\x92\xb8\xcf\xf1\x6e\x25\x06\x70\xb7\xd2\x78\xf8\x07\x3b\x0e\x77\x68\xb8\x91\xa4\x12\xe7\x8f\xe7\xce\x04\x18\xa0\x05\x30\x73\x38\xc0\xd8\x0b\x00\x53\x56\x13\xf6\x43\xd4\x0b\x40\xcd\x0b\x60\x7c\x28\x80\xc5\x70\x00\xe1\x4f\x00\x5e\xeb\x01\x46\x3d\x05\x88\xdd\x04\x20\xe0\x04\xb0\xe2\x76\xf7\xf9\x9e\xb0\xab\xfc\x85\x00\xbb\xba\xcf\x82\x93\x00\xce\x60\xdd\x10\xe0\xaf\x52\x80\xfe\x85\x00\x2f\x77\x00\x0c\x28\x06\x68\xef\xff\x6b\xbc\xff\x0d\xff\xb0\x9b\x63\x91\xfd\x6f\xf8\x8f\xac\x43\x24\x79\xf8\x8f\x18\xce\xce\xf2\xf0\x1f\x3c\x1e\x14\x1e\x9b\x3f\x0f\x07\xa3\xcb\x7d\x4e\x56\x83\xa4\x18\x97\xad\x14\x2e\x07\x18\x51\x03\x30\xea\x12\xc0\xb4\xc7\x00\x02\xef\x08\x8f\xce\xef\x0a\x60\x72\x1e\x60\xd0\x5f\x00\x8b\x87\x03\x0c\x58\x02\x10\xb9\x04\xa0\xaf\x34\x40\x46\x0e\x40\xaf\x55\x00\x25\xbc\x9e\x76\xdc\xde\x3c\x41\x4c\xd9\x70\x93\xdb\xcb\x2f\x7c\x49\x36\x71\x0c\xc9\xff\x09\xf7\xc0\x93\x7f\xc4\x7f\xf0\xf8\xc1\xb8\x71\x64\x4f\xfe\x7d\xfc\xbc\x7d\x10\xfa\x9e\xd3\x03\x4e\x5f\x3c\x46\x12\x5e\xc2\xae\x3f\xfd\xfc\x13\x07\x03\x84\x9f\x90\x54\xa4\x2a\x96\xf0\xc5\xbe\xe8\x99\x07\xd7\x0e\xc8\x1b\x78\x15\xa0\x5f\xee\x40\xd1\x89\xdd\x36\xe6\xd9\xc0\xac\x05\x98\xe1\x1a\xe8\x63\x80\xf9\xca\x81\x13\x5c\x31\xc6\x1f\xc0\x1f\x8e\xf7\x95\xfa\x1f\xa3\x7b\x9b\xfd\x27\x96\xe0\xdc\xf6\xfd\xb4\x0d\xc7\xdb\xa7\xf7\x31\xac\x0c\xf4\x6e\xb9\x8e\x79\xed\xde\x12\x4f\xb9\xb9\xa7\x3e\xcd\x60\xfd\xff\x37\x0f\xdb\x26\xfd\x3e\xfe\x12\xee\x6f\x0b\x6f\xff\x3e\xfe\xf4\x1f\x80\x9a\xf2\xb3\x0f\x50\x1d\x65\xd5\x7c\x37\x0c\xc1\xfc\xa6\x7b\xfe\x60\x44\x6a\xdb\xb5\x0e\xc6\x3a\x8e\xf1\x30\x7e\xcc\x57\x6b\xb8\xd2\x6d\xfe\xf9\xc3\x04\x51\xa3\xa6\xac\x16\xc2\xfa\xe7\xd0\x9a\x31\x26\xf4\xcd\x63\xf2\xfb\x63\xfe\x6d\xf4\x4e\x11\xac\x2f\x8c\xf1\x5a\x80\xf9\xa5\xd1\xba\x86\xa8\x63\xa3\xed\x5c\x71\x2d\xc6\x28\x87\x63\x8c\x32\x4a\x70\x19\xda\xaa\x51\x11\xc5\x78\x16\x14\xaa\x26\x0e\x0f\x81\xb6\x23\x98\xb7\x14\x38\x7d\x9d\x90\x26\x71\x4f\x91\x9f\x79\xf8\xec\xcf\x18\xfb\x0f\x5b\xc0\x10\x13\x3e\x38\x99\xc6\xdf\x47\x97\x9b\x07\x9c\x9f\x3f\x8d\x7f\xe5\x6d\x5a\xbf\xa5\x59\xfd\xb0\x9f\x4d\xbc\x08\x1f\x37\x7e\xaa\xd2\xfb\x7e\x18\x89\xb3\xbe\xd8\x75\x0c\x66\x15\xed\x14\xc6\x60\xf6\xcf\x74\xd8\x04\xac\x2e\x6a\x9e\x13\x41\xad\x95\x75\xa5\x7e\x32\x33\x96\x8b\x61\x3e\x6e\xb4\xd0\x54\xbc\x6d\xd5\x27\x67\x3a\xe7\x59\xa6\xf7\x19\x88\x7b\x69\xba\xc6\x44\xac\xe7\xce\xf0\x94\xc1\x4c\xdf\xd4\x37\xfa\x58\x9f\x98\x2a\x4f\x15\xd2\xa9\x0a\xa1\x38\x5f\x53\x35\xa9\x85\xc6\x54\x01\xba\x29\x26\x5a\xb7\x09\xf5\x64\xf2\xf4\xc3\x88\x81\x9f\xb8\xf5\x32\xce\xdf\x44\x95\x07\x98\x81\x9f\x98\xfc\x09\xeb\xe2\x22\xa6\xc4\xd3\x3c\x56\x8e\xc6\x2f\x70\x88\x24\x3f\xf6\x05\x59\xdb\xdc\x0b\xeb\x4f\xab\xaa\xa9\xca\x96\xed\x4d\x7d\x62\x96\x9e\xa3\x2a\x74\x82\xc5\x48\xba\x0d\x5d\x47\xbc\x28\x7e\x40\x38\x01\xb7\xdd\x13\xf0\x56\xa5\x9d\x13\x65\x15\x4d\x45\xa8\x3a\xa9\xf3\x49\x1c\xb3\xa8\xf2\xc7\x89\x4f\x61\xde\xe5\x39\x98\x97\x9c\x04\x52\xb8\xd3\xf8\x5f\x48\x73\xbb\x59\x86\xe3\xbb\x97\x7e\x30\x04\xf3\x93\x32\xde\xa4\x9a\xd2\x2d\xd2\x18\xdb\xca\xec\xd1\xc5\x8a\xc8\x7c\x19\x07\xdc\x1f\x32\xc1\x74\x53\x7e\xfe\xc0\x14\x8c\x65\xa4\x3e\x93\xef\x96\x16\x21\xbe\x66\xa9\xe8\x03\x38\xfe\x79\x72\x74\xdf\x7f\xf6\xa3\x7b\xf8\x66\x73\xf6\xbe\x2d\x46\x39\xa5\x1d\xe7\x6f\x5a\x01\x87\xff\xe0\x78\x30\x88\x17\xa5\xf0\x2b\xe1\x7e\x56\xd6\x09\xe2\x6d\xf0\xb4\x3b\x63\x31\xaf\xcc\xeb\x83\x14\xf1\x7a\x02\xd6\x67\xfd\x05\xa6\xa2\x96\x2d\x99\x3e\x83\xaa\xf2\xe3\xe7\x60\x7d\xd8\xe2\xb4\x24\x56\xd9\xf4\xb6\x52\xd5\x41\xc5\x86\xba\x6f\x4b\xab\x90\x45\x9c\x56\x29\x8b\x75\xc3\xd1\x4d\x0a\x88\x0f\xea\xaf\xa8\xc8\x45\xe4\x4a\x5c\xe4\xa6\xbc\x88\xf0\x30\xca\xda\x34\x0f\xaa\xf3\xa4\x71\xdd\x94\x55\xb4\x30\x8f\xab\x26\x68\x87\x67\x18\x95\xe9\xfe\xa8\x51\x2a\x09\xf1\x58\x9f\x51\x4d\xa4\xfb\xab\x2a\x49\x15\x18\xbb\xa8\xae\x24\x7e\x14\xa5\xa4\xb3\xb8\xa2\x8a\x35\x94\xa7\x57\x14\x7f\xd3\x41\x2b\xd3\x8c\x88\x97\x85\x9c\x3e\x48\xb8\x92\x9c\x89\x7d\xee\x73\xcd\xb8\xae\x0b\x4b\x45\xf0\xbe\x72\x7c\xb2\x28\xee\xe3\x9f\x3c\x30\x87\x24\xf0\xe9\xde\x22\x73\xf1\xad\x9c\xd2\x65\xf0\x75\x2d\xf7\x52\x9f\x20\x83\x2a\x39\xac\xae\x68\x24\x2a\xe1\xfa\xca\x6a\x10\x8f\xc4\xec\x6a\xaa\xc2\x4c\xac\xd5\xc4\x3c\xfd\x08\x11\xba\xa5\xdc\xab\xb7\x1e\xd7\xa1\x4b\x97\xeb\xf4\xa8\x6f\x4c\x88\x33\x7d\xfd\xc9\x68\x8b\x0c\x5c\x69\x46\x0d\x30\x4f\x03\xa0\xbf\xd5\x06\x2d\x90\x91\x04\xe5\xeb\x0d\xc7\xc5\x62\x5d\x5b\x6f\x33\xe1\xa4\xf4\x1b\x4b\x5f\xd1\xe7\x88\x29\x5d\xf7\xd1\x49\xcc\xdf\xeb\x8a\x5c\xc7\x95\xd0\xe6\xfa\x27\x69\xe9\x7f\xc1\xdf\xab\xe7\xd3\x7d\x66\x25\xae\x6f\x94\xec\xc1\x6e\xb9\xbc\xff\x14\xf4\xf8\xc9\x02\xb3\xf0\x69\x91\xa9\x84\xfb\x09\x0a\x9e\x8f\x6f\xe5\x79\xfc\xf7\x7e\x48\xd6\x5b\x95\xf1\xdb\x8d\xf7\x90\x7a\x6b\xbf\xff\x1d\x07\x23\x69\x61\x80\xf6\x74\xea\x29\x03\x3c\x89\x8f\x8b\x32\xc2\x79\x1d\x78\xd9\x84\x3b\x69\x98\x71\xf5\x7f\x4b\x0e\x81\xcd\xc3\xc3\x58\x49\xd0\x0e\xb3\x92\xa0\x79\xb0\x0c\xa2\x99\xb4\x16\xb7\xc6\x3a\x84\xd5\x0b\x4f\xb4\x23\x56\xa9\x74\x76\xb1\xfe\xb8\x1c\x63\x33\xab\xdd\xc5\x68\xa1\x2c\x13\x37\x1f\xa7\xbf\x3b\x82\x6f\x64\xde\x72\x05\xdf\xdc\x3c\xee\x01\xce\xa7\xb9\xf1\x07\xd4\x13\x53\x8e\x2f\xc9\xe0\x38\x49\x2d\xec\x77\xd0\x93\x07\x27\xa8\x49\x16\xfb\x98\x78\x6b\x11\xde\x87\xd7\x0f\xc9\xf6\x87\x06\xda\x3f\x53\x59\xbd\x1c\x9a\x6d\xc2\x0b\xfc\x09\x07\x33\xb1\xda\x02\x2d\xae\xa0\x98\x0d\x9e\xc0\xfa\x4a\xdb\x72\x48\x5b\x47\x6e\x5f\x38\xbe\x27\x0f\xcb\xc3\xc3\x38\xa5\x8b\x62\xcc\xe6\xcc\xa4\xf1\x2f\x1c\x6b\xe9\xc9\x2e\x35\x16\x38\x93\x2e\xe0\x81\x48\x14\x97\xea\xb0\x4b\x24\xc9\x87\xbb\xba\x15\xe2\x3e\x72\xb1\xaa\xec\x4d\x9f\xa3\xb3\x81\x63\xcd\x39\xc4\xfc\x3b\xce\xb9\x8d\x2b\xe3\x28\xf2\x0a\x35\xde\x61\x48\x23\xda\x17\x1e\x2e\xc6\x0c\xf9\xcc\xa3\x77\x2f\xc4\x71\x87\x4c\x57\xc1\xfa\xa3\xaf\x91\x26\xda\x35\xb7\x3a\x5a\x5f\xc7\x75\x84\x83\x31\x37\x33\xc2\x7d\x61\xe4\x6f\x81\x91\xb5\x46\x81\x35\xae\xa7\x42\x9c\x2d\xfa\x4b\xc9\x3d\x76\xe8\x1f\xa6\x9f\x76\xc4\x93\xe9\x38\x45\x8a\xa4\x86\x15\xb8\x50\x9f\xa8\x5f\xbc\x30\xeb\x48\x7a\x67\xf7\x42\x7b\xc6\xc3\xc3\x78\x1e\x98\x82\xfb\xd7\xa7\x56\x0a\xe7\xc1\xe7\xa1\xba\x1c\xbd\x91\x05\x8e\xc7\x0f\x08\x79\xe1\xbb\x39\x04\xd7\xdf\x77\x12\x75\x26\xf0\x9b\x51\x80\x8f\xf2\x1d\xb9\x1e\x35\xd8\x27\x67\x2f\xfa\x55\x9f\xa4\x0b\xb8\xde\x3e\xe9\xb7\x51\xe3\x97\xdc\xa2\xfd\xe1\x9e\xfa\x09\xed\x89\x5b\x2e\xf9\x0f\xc2\xc5\x84\x55\x13\xde\x89\xd7\x0f\xca\x7d\x8f\x29\xed\x03\xb0\xc4\x5d\x68\x5d\x6f\x85\x68\x3d\xa3\x7a\xc2\xc1\xe8\xa8\x38\x61\x1d\x98\x87\x83\x59\x38\xdc\x05\xfb\x00\xcd\xbc\xe5\x8a\xd6\x5a\xb4\xd6\x03\xc7\x3d\x2a\xce\x13\x4f\x64\x83\x4c\xff\xc5\x0b\xc3\x45\x6e\xa1\x92\xe4\x99\x83\x6b\x08\x91\x19\x2a\x4b\xf3\x10\xbc\x4a\x1a\x65\x48\x15\x31\x30\x85\x1a\x11\x9e\x34\x54\xdf\x19\xf9\x01\xc2\xf0\x0e\x13\x40\xd8\xf4\x44\xc2\xc9\x70\xf7\xfd\xc3\x1c\xcb\x9e\x90\xdc\x85\x6f\x1c\x72\xf2\x38\x9e\x7d\x83\x45\xae\x13\xe3\x91\xd3\x63\xac\x93\x07\xa9\x7f\xc1\x15\x09\x14\xef\xc2\xfa\x9e\xe7\x69\xcc\xdb\x4a\x19\x63\x66\x89\x87\x83\xe1\xf5\x83\xb2\x1b\x4c\x7c\x3f\x3c\x1c\x8c\xe1\x3c\x37\xd4\x0b\x1e\x0e\x46\xee\x99\x07\xe2\x2d\xe7\x03\x8d\x53\x5c\x84\xc6\xf9\xb3\x3f\xd2\x69\x7f\x5c\xcd\x7e\xe7\x82\x38\xbb\xf0\xb3\x4f\x12\xd7\xd1\x2f\x46\xb8\x8f\x1c\x49\x41\xc4\x79\x44\xfb\x4d\x41\xcf\x13\x3b\x5f\x1a\x3b\xd9\xc5\x78\xab\xe2\x9f\xc4\x99\xd0\x3c\x44\xef\xa4\x7a\x77\xec\x1a\x7f\xb4\x8b\xf1\x22\x09\xa8\x59\x71\x1f\xb3\xf1\x15\xe3\x3a\xd6\xe1\x99\x27\xe6\x33\xc5\x55\x31\xdf\x0e\xa3\x27\x8c\x79\x7f\x15\x77\x7e\xd4\xe5\xfb\xd8\xf1\x29\x6a\xc4\x1b\x5c\xc9\x9f\xb8\x18\xe4\x89\xf1\x16\xb1\xc5\xf5\xf7\x10\x70\xc6\xa7\x38\xf2\x3b\x63\x54\x66\x55\xb7\x18\xbd\xb2\xd1\x39\x0f\xea\xd2\x66\xee\x8d\xab\xa3\x9a\x48\xa8\x35\xd9\xf1\x01\xd8\x4d\x60\xae\x38\x87\x83\x69\x0e\x41\x3f\x2b\xec\x17\x8a\x19\xae\xe1\x15\x84\x0b\xe9\xe5\x1a\xc5\x21\xcb\xe3\x32\x49\xc6\x73\x1d\x2b\x93\x13\xfb\xe0\x78\x92\xaa\xa9\x5f\x52\x72\x22\xe1\x48\x53\x24\x28\xd2\x48\xa9\x23\xcf\x93\x72\xcf\x04\xcf\x6a\x29\xee\x0e\x88\x18\x48\x53\xa7\x19\x4f\x1b\x11\x8b\xf1\x64\xea\xfa\x4c\xb4\x58\x69\x7a\xc5\x68\x99\x53\x6e\x6f\x42\x1c\x41\x6a\xce\x41\xc4\x15\x24\x3f\xbb\x80\x08\xb6\x24\xb8\x9d\x4e\xf2\x05\xbe\x71\xc2\xba\x86\x95\x34\x7f\x2c\x16\xc0\xc3\x89\xd8\x25\x7e\xe2\x60\x78\x7c\x38\xd7\xbd\xf1\x74\x62\x50\x4d\x4f\x55\xcf\xf7\x47\x1c\x8c\x42\x5a\x08\xc6\x97\xf3\xc5\xc9\xed\xf1\x70\x30\x93\x6c\x08\x1f\x32\xca\x2c\x06\xfd\x09\xdf\xe1\x38\xee\x26\x4e\x0a\x77\xca\xe9\x89\x87\xc9\x8a\xef\x8f\x78\xa6\x8c\x3b\x82\x68\x0f\x96\x47\xd1\x11\x2d\xa3\x48\x12\xeb\xb2\x59\x6b\x54\x90\x3b\x38\xab\xdc\x18\x3f\xb7\xa2\x9a\x70\x94\x59\x46\xa4\x81\x59\xcd\xd1\x88\xe8\x5a\xa1\x4f\x4c\x1c\x59\x6c\x0d\xae\x6f\x56\x6d\x15\xee\x97\x8c\x33\xfb\xd1\xc3\x67\xd4\x9c\x25\x7c\x8c\xc9\x6d\xb4\x1b\x19\xd7\x5e\xe2\xf8\xd3\x8e\x7c\x20\xc4\x70\x53\xdb\x66\x00\xa7\x26\x2f\xb4\x87\x76\x32\x3e\x98\x39\x31\xf7\xf6\xc7\x59\xe4\xf5\x85\xd2\x31\x09\x43\xad\x53\xd9\x10\x89\x5a\xb8\xf0\x4c\x14\xfe\x5e\xd2\x39\x1e\x57\x63\xba\x5c\x02\xb2\x75\x89\xcc\x48\xc0\x55\x14\x4c\x48\x09\xe8\x96\x03\x4d\x52\xb9\x1b\x5a\xcb\xbe\x91\xcc\xdc\x45\x32\x97\xb3\x0f\x05\x29\xfd\xd1\x83\xf2\xf0\x30\x05\xd2\xa2\x88\x47\xc8\xbf\x25\x85\x1a\x97\x5f\xa8\x8a\x6f\x90\xd7\x68\x84\x1a\x9b\xf7\x89\xfa\x05\x15\xc4\x78\x63\x7c\x59\x20\x16\x89\x38\x89\x9f\x3c\x31\x45\xab\x09\x47\xd3\xb0\x01\x57\x32\x5f\x72\x0f\x5a\xac\xbc\xf0\x53\xe8\x17\xf2\xe5\x6e\xa1\x41\xce\xf5\x7f\x82\x2b\x92\x23\xf5\x01\x73\x0c\x2b\xeb\xda\x26\xfd\xe2\xc3\xb1\x14\x0b\x41\x3b\xf8\xb3\x2f\x54\x22\xed\x63\xf5\x0b\x31\x68\x6d\x14\x6b\x88\xed\x6f\x7e\x75\x02\xa1\xbc\x4f\x24\xa3\x97\x9b\x7a\x35\x0d\xdf\x5a\x38\x7c\x19\x46\xf7\xfc\xa7\x97\x63\x1c\xd2\xf7\x6b\x06\x37\x7e\x5e\xc6\x86\x87\x07\x59\xc3\x9d\xe4\x8b\x7d\x06\x20\x0f\x46\xc9\x98\x91\x78\xe2\x28\x7a\x26\x86\x33\xbe\x96\x4f\x12\x9f\x54\x22\xa4\x84\x48\x9d\x92\x30\xea\xcc\x58\x3c\x98\x2c\x57\x71\x9a\x27\x9e\x2b\x8b\x03\x22\x70\x3c\x3c\x9e\x98\xe2\xac\x7c\x3c\xcb\x97\xa8\x56\xa0\x07\x2b\xd6\xd8\x85\x35\x96\x9f\xfd\x93\x86\x5e\x23\x5e\x19\xfe\xa7\xa8\xa1\x85\x75\x6f\x71\x7e\x0a\x27\xb7\xb8\x00\xd8\x85\x45\xa2\xf5\xb4\x38\x1d\x8d\xfe\xdd\x28\x83\xf0\x3f\x9a\x5f\xe3\x90\xb5\x48\xd5\x3b\x05\xb5\x50\xd6\x2c\x05\x33\x55\x12\xbb\x68\xf6\x67\x55\xd0\xa9\x4f\x34\x9f\xf0\x21\xe3\xab\x68\xbc\xfc\x7e\xd9\xf8\xd6\x7d\x22\x72\xb8\x4c\xd4\xcf\x3e\x51\x1c\x1e\xa6\x94\x8b\x1f\xca\x8d\x06\xa0\xa7\xe2\xe1\x61\x2a\xa4\x28\x8e\x5a\x7f\x85\xe6\xa1\x42\x5f\x09\xf7\x7d\xb9\x99\x01\xda\xcf\x8a\x9d\xb6\x98\x3b\xac\x10\xf5\x40\xfb\xba\x5e\x20\x1c\xf5\xa4\x5c\x35\x69\x00\xfd\x7d\x0e\x3e\xa9\x62\x6b\x59\x14\xfd\xdd\x76\xdc\x27\x15\x12\xc7\x6a\xe8\x79\x97\xd1\x03\x96\x3d\xbb\x87\x08\x8e\x75\x77\x5e\xe3\x7e\x5b\x57\xda\x50\x01\x60\x29\x17\x8b\xda\x61\xf2\x31\x11\xfd\x20\x8f\x0f\x47\x3d\x9f\xf0\x4e\x8a\x67\xd2\xd1\x4e\x2e\xb8\x47\xd6\x68\xde\x6c\xe2\x49\x11\x17\x5d\x89\x99\x87\x49\xaf\xf2\xf1\x69\xa3\xff\x2e\xc0\xf9\xe3\x73\x2d\x40\xfd\xef\xe5\x5d\xc4\xf1\xe3\x94\x72\x95\xaf\x3f\xe2\x61\xf2\x08\x0f\xb3\x99\x4f\x14\xc7\xb5\x45\x7f\x1e\xf5\x51\x9a\xaf\x84\xfc\x2f\x9b\xb2\xf5\x10\xc1\x5f\xd5\x40\xfd\xa3\x36\x6d\xf2\x40\x06\x97\x4d\xf6\xc1\x38\x1f\x55\x96\x89\x18\xda\x6e\x0a\xcc\xc6\x8e\x3e\x9b\x42\x4a\xf0\x4d\x36\xeb\x6e\x23\x1e\x98\xcf\x87\x11\x09\x5b\x15\x79\x01\x2d\x57\xa5\xd9\x1d\xcc\x1d\x56\x29\xbf\x46\x9c\xee\x46\xa1\xcf\xd5\x00\x8f\xe6\x00\x0c\xf9\x46\x5c\xbf\x7c\xa7\x01\x6e\x58\x01\x0c\xde\x06\x70\xa5\x3f\xe5\xd9\xcf\x67\x00\xf0\x67\xfd\xc2\x3d\x1c\xb8\x0f\xd0\xed\xe7\x76\x0c\x06\x18\xa5\x44\xfd\x0d\xc6\xd5\xff\xe2\x3b\x28\x2b\xec\x3e\x63\xff\xea\x73\xb0\xfa\x01\x80\x8c\x22\x71\x79\xc8\x29\x02\x64\xbe\x05\x50\xeb\x0b\x90\xae\x08\xa0\xdb\xf9\x0b\xff\x90\xf2\x14\xa0\x7b\xbd\x13\x16\x00\x38\x1f\x25\xae\x03\x9f\x1c\xca\xfb\x60\xbd\xbb\x1c\x20\xbe\x94\x6a\xde\x2b\x95\x01\x52\x32\x01\xd6\x34\x00\x2c\x6d\x04\xa8\x9a\x07\xb0\x94\x0f\x60\xcf\x81\x6e\xab\x48\x3d\x4a\xb2\x26\x02\xdc\xfe\x06\x50\xb0\x1f\xe0\xe3\x1c\x80\xfc\x63\x00\x6d\x42\xff\xae\xff\xf3\x78\x00\x1e\x9e\x05\xe8\x27\xf0\xdf\x71\x0f\x07\x7d\x01\x06\x45\x02\xec\x8d\x04\x18\xda\x1b\x60\xd7\x6c\xaa\x5f\x6e\xd4\x01\x18\x6d\xf3\x0f\xbe\x83\x57\x00\x53\xfa\x01\xac\xd9\x05\x30\xfb\x04\x40\xbe\x34\xe0\x89\x3b\x23\x91\xee\xe0\x65\xdc\x01\x50\xe9\x03\x90\x26\x0e\xa0\xb5\x0e\x20\xe5\x3b\x80\xc9\x49\x80\x64\x75\xaa\xe7\xf1\xf0\x0f\x31\x9f\x00\xbc\x8c\x00\xe2\x8e\x03\x84\x9b\x52\x1e\x3c\x3e\x02\x20\xa1\x9d\xee\xfd\x27\x01\x61\x5c\x12\x8d\x00\x2a\x87\x02\xa4\x2a\x02\xec\x7f\xfe\xab\xff\x41\xea\x47\x80\x9a\x7c\xe2\xcf\x78\xa7\xff\xab\x0f\x44\xea\xc7\xdf\xc7\x1f\x3d\x8a\xab\xf3\x76\x5b\xaf\xc3\xff\xe0\x33\xe7\xfa\xd2\x9f\xb6\x01\xe8\x75\xec\x17\xee\xe1\x60\x1d\x40\xff\x4a\x80\xed\x5c\xae\x77\x93\x0a\xc0\xd0\x11\x00\x15\x7d\x00\x84\xfa\x00\xac\x0b\x03\x18\xdd\x87\xf2\xf9\x13\x44\x00\xf2\xaf\x53\xbe\x31\x4b\x01\x60\xf6\x01\x80\xa5\x26\x00\x52\xb7\x88\xf7\x40\x69\x12\x40\xb2\x23\x80\xe6\x48\x1a\x87\xc1\x64\xba\xff\x6e\x51\x0d\x10\xeb\x0b\xe0\xda\x1b\x20\xe2\x25\x80\x67\x33\x40\xc4\xbb\xee\x98\x1f\x20\xd2\x9e\xe6\x28\xf6\x20\xdd\x77\x8f\x0d\xa2\x9e\x3a\xdd\x3a\x52\x35\x14\x20\xce\x0d\x60\xef\x24\x80\x24\x07\x80\xb3\xb3\x01\x12\x6f\x00\xd4\xd4\x03\x24\x9b\x02\xbc\x92\x02\x48\x4b\x00\xe8\x70\xfd\xf7\xf8\xc3\xe2\xff\x73\x9d\xb7\x27\xee\xe1\x28\xf7\xef\xd5\x5c\x1d\x73\x13\x87\x07\x58\x1f\x0b\x30\x60\x32\x40\xe9\x05\x80\x21\x9b\x89\xa7\x65\x44\x0c\x40\xc1\x66\x80\x31\xb7\x00\xba\xad\xe5\xe4\xde\x00\xcb\x5c\x00\xa6\x05\x76\x47\x37\x00\x12\xfa\x00\xb1\x17\xa8\x8e\x17\xe7\x0f\xa0\xfa\x0c\x20\xfa\x39\x80\xfe\x20\xba\xc3\x6d\x96\x04\x10\x3a\x1e\xc0\xf6\x24\x40\xd0\x51\xae\xef\xc1\x2c\x80\xa0\x52\xc2\x05\x74\xcf\x43\xf8\x11\x80\x8c\x23\x54\xd7\xef\xb6\xbc\x91\xcb\x01\xaa\x74\x00\x22\x75\x00\xf6\x3a\x00\x44\x1c\x02\x38\x53\x09\x10\xf5\x0c\xa0\xe6\xf4\xaf\x3e\x10\x09\x9f\x01\xba\x0a\xff\x03\x0f\x82\xfe\x7f\x9e\x87\x9e\xb8\x07\x1e\xef\x45\xf5\xf3\xdf\xe7\x81\x87\x7b\x40\x6f\x50\x0d\xb0\xfa\x24\xd5\x44\x78\x7c\x07\x29\xaa\xa4\x1f\x49\xd5\x64\x37\xba\xc7\x3d\x1b\xa8\x1f\x49\xf7\xc9\x96\x57\xf7\x0f\x3b\x09\xa0\x29\x07\x10\xdc\x08\x60\xa2\x06\x10\xe4\x0f\x60\xb7\x1a\xc0\xef\x26\xd5\xb6\xfd\x62\x00\xfc\x6e\x77\x9f\x12\x68\x1e\x82\xe3\x68\x8f\x87\x8c\xed\xf6\x88\x00\x21\x1f\x00\x36\x15\x10\x97\x4c\xf7\x39\x33\xbc\x06\xe0\xd2\xce\x5f\x7d\x20\x22\xc3\x00\xde\xcf\x04\x08\xbf\xc9\x8d\xdf\x94\xea\x9d\x3d\xfb\x21\xfc\xa9\xde\xdd\x93\xf7\xa2\xe7\x3d\x7f\xde\x3c\x14\x94\xd3\x3c\x64\x7d\xa3\xfe\x28\x3f\xe7\x41\x02\x60\xe4\x3e\x42\x97\x0b\x1f\xa0\xf5\x9e\x7a\x0e\x20\x4c\x11\x40\xc2\x0e\x20\xc4\x03\x40\xee\x26\x40\xd0\x1e\x00\xf5\x75\xbf\xf0\x0f\x3e\xc7\xa9\x9f\x54\x77\xcc\xe8\x72\x1b\xc0\x6d\x1b\xe1\x62\x7c\xd4\xa8\x57\x86\x4f\x13\x40\xe6\x0c\x00\x3f\x6d\x80\x22\x33\x80\x40\x59\x80\xcd\xfb\x01\xbb\x82\xee\x63\xc4\x23\x7f\xe1\x2c\x40\xd0\x35\x80\x07\xc7\x01\x82\x5c\x89\x1f\x25\x58\x1a\xa0\x4b\xf7\xcf\x3c\x10\x3f\xf7\x43\x20\x49\x1e\xee\xa1\x27\xef\xc5\xbf\xf0\x1f\x24\x7e\xf1\x1d\xc8\x92\x4c\xd9\x03\xd0\x57\x99\x6c\x5a\xb7\x7e\x44\x06\x00\x8c\xdc\x08\x10\x1c\x08\x30\xc9\x14\xc0\xf7\x4a\x77\x2c\x0e\xe0\xbb\x1a\x40\xc6\xed\x17\xfe\xc1\x7d\x2f\xd5\x38\xba\x75\xc0\xdc\x18\xc0\x7d\x09\x80\xcb\x52\x00\xb7\x23\x00\xbe\xc9\x00\xae\xca\x00\x51\xc1\xd4\x2b\x05\xf9\x0f\x2e\x01\xac\xb2\x02\x70\xf9\x1b\xa0\x32\x84\x7a\x66\xec\x2d\x04\x70\x9f\x45\xf3\xe0\x1a\x05\xf0\x77\x24\x61\x49\x3e\x47\x02\x78\x94\x03\xb0\x0b\x00\xce\x1a\xff\x99\x07\xa2\x27\xef\xc5\xe9\x87\x24\xff\x55\xe7\x4b\xe7\xec\x42\x8f\x7e\x17\x05\x53\x48\xf2\x70\x0f\x89\xdc\xcf\xb1\x33\x00\x06\xe6\x51\x7d\x87\x5f\x11\xa0\xfb\x94\x36\xa6\x81\xf0\x1a\x53\xce\xfc\xaa\xfb\x3b\x54\x12\xaf\x92\xd3\x04\x00\xcd\x73\x00\x4e\xf9\x00\xa6\x75\x84\x77\x70\x4a\x07\xb0\x0f\x06\xf0\xb1\x03\xb0\x9f\x0d\x10\x65\x0b\x60\xe3\x4a\xbd\x75\xac\x26\x13\x06\xc9\x86\x8f\xb0\x5a\xd6\x42\x00\xfb\x92\x01\x6c\xf9\x01\x2e\x57\x12\x7f\xc2\xbd\x3a\x00\x5b\x7f\x80\xfa\x1a\xc2\x41\x30\xa3\x5f\xe3\xfe\xc9\x87\xc0\xd9\x89\x3f\xf1\x5e\x1c\x50\xf9\x5d\x0f\x2a\xb9\xba\x64\x4f\xfc\x47\x4f\x1c\x0c\x8f\xef\x80\x77\xca\x0e\x90\xa0\x38\x64\xf1\x19\x00\xa1\xa7\x00\x4e\xbb\x00\x84\x5f\x00\x38\xae\x02\x98\xd9\x05\x60\xe5\x0e\x20\x9d\x0c\x60\xf3\x05\x40\x4d\x0c\xc0\xb2\x16\xc0\x20\x02\xc0\xf4\x09\x80\xf5\x30\x00\x33\x45\xda\x23\x16\x36\x00\x51\xca\x00\xe6\xe5\xa4\x0f\xc6\x6b\x00\x0a\x67\x03\x18\x58\x01\x6c\x6c\x00\x30\xfc\x06\x70\x48\x04\xc0\xe4\x19\xc0\xe5\x99\x00\xa6\xaa\x00\x8f\xf9\x00\x4c\x3b\xa9\x37\x96\xfe\x61\x00\xb6\xe9\xcf\xfd\x30\x7e\xea\xc1\x9f\x78\x2f\xb8\xd3\x41\x95\x0e\xc9\x9f\x7d\x70\x7a\xe0\x3f\x7a\xf2\x3e\x50\x97\x62\x00\xf7\x41\x00\xbd\xac\x00\x1c\x74\x01\xf8\x4e\x00\xd8\x1e\x04\x18\xf3\x95\x78\x2a\xba\xed\xa7\xf9\x54\xba\xcb\x6f\xc8\xd5\xbc\x0d\x80\xfa\xcf\xe9\x49\x00\x58\x25\x13\xd7\xd4\x62\x57\x00\xad\xc1\x00\x61\x93\x69\xef\x74\xcf\x83\xd6\x41\x80\x35\x2f\x7f\xf1\x40\xa8\x89\x03\x1c\x94\x20\xdc\xc0\x35\x49\x00\x9d\x68\x80\xe7\xfc\x00\xda\x02\x00\x0d\xd3\x7f\x8d\x5b\x2e\xfc\x77\x1e\x88\xa9\xf1\xbf\xd7\xfd\x79\x7a\x70\x68\x25\x49\x1e\xfe\x63\x13\xaf\xef\xc7\x1f\xf0\x1f\xbc\xba\x3f\x0f\x07\x13\xc3\x49\x1e\xff\x85\xcb\x27\x92\x66\x85\x00\xbd\xef\x00\x18\x0b\x01\x8c\xd0\xa4\x6c\xf5\xf8\xf1\xff\xc0\x3f\xe4\x03\xc8\xae\x04\x50\x93\x20\x0e\x0b\xb5\x3b\x84\x95\x50\x14\xa1\xbd\xa4\x5c\x09\x10\x31\x9b\x6c\x49\xf7\x3c\x28\x05\x00\x94\xec\x06\x90\xeb\xa0\xfa\xe6\xa2\xfe\x00\x87\x56\x01\x2c\x0a\x00\xb8\xf2\x09\x40\x7e\x02\xc0\xb3\xaf\x00\xb2\x97\x01\xbe\x0b\x03\xcc\xb0\xef\xc1\x03\xc1\xf1\x21\xf0\xf0\x00\x7f\xd4\x03\x6e\xdc\xbc\x7a\x17\x4f\x0f\x78\xf8\x8f\x9f\xbc\x07\x1c\xfe\x83\xd7\xff\xa4\x67\xdd\xdf\x81\xdb\x47\xc6\xdc\xe7\x75\x23\x01\x06\x77\x01\xa8\x67\x02\x8c\xd1\x02\x50\xb4\x02\x98\xd2\x08\xa0\x18\x49\x78\x6c\xf9\x1f\xc4\xdd\x22\x13\x45\x98\x9f\xf9\xd8\xe1\x1d\xa0\xfb\xec\xd5\xed\x73\x24\x3f\x00\x2c\x0f\x04\x98\xbd\x1a\x60\xcd\x16\xe2\x6e\xc3\x5e\x76\xee\x00\x87\x5e\x02\x88\xdf\x01\xb8\x26\x04\x30\xed\x19\xc0\xd3\xde\x00\x62\x26\x00\x4d\x21\xbf\x70\x1f\x63\xaf\xff\x8e\x7f\xe0\xe1\x01\x7a\xf2\x9f\xfc\x49\x0f\x7a\xe2\x3f\x78\xfb\xa1\x67\xff\x13\x9e\x5d\xf0\xe4\x7e\xb6\x6f\x26\x69\x98\x46\x52\xa5\x82\xfa\x80\x2c\x28\x03\x18\xae\x41\xbd\xc5\xba\xe3\xcf\x39\x51\xa4\x17\xb3\xed\x89\x17\x64\xd6\x29\x00\xd3\xb7\x84\x05\xf0\x10\x00\x98\x36\x17\x20\xe2\x35\xe1\x3a\x96\xfb\x13\xfe\xa1\x3b\x8e\x12\x99\x04\xb0\x2d\x1d\x60\xac\x3c\xc0\x11\x39\xc2\x41\x5c\x4f\x27\xbc\xc7\x8b\x3a\xe2\x2a\x6a\x92\xf8\x37\xee\x63\x10\x87\x9f\xec\xf3\xe1\x77\xfc\x03\x4f\x0f\xb6\xcd\xfd\x5d\x0f\x78\xf8\x0f\x5e\xdd\xfb\x67\xff\x97\x7f\xf4\x43\x82\x7f\xf0\x5f\xf0\xfa\xc0\xfc\xec\xff\xc1\xf5\xa3\xd2\xe7\x6e\x61\x28\xf0\x91\x9c\x23\x05\x30\xd0\x07\x40\x3c\x11\x60\x8c\x06\xc0\xe4\x03\x00\xd3\xea\xc9\xb7\xca\xd5\x53\x6f\x3a\xa3\x6e\xf9\x1a\xc0\xbd\x01\x60\xd4\x37\x80\x30\x4f\x80\x91\x1d\x00\xcb\x8e\x02\x08\x7e\xa3\x9e\x1c\x02\x6e\x54\xab\x1e\x1a\x0d\x70\xf8\x1b\xd9\xe4\x6b\xdc\x38\x9f\xcd\x26\xf9\xe3\x3f\xe0\x3e\x7a\xe2\x1f\xfe\xd4\xff\xe6\x8f\xf8\x0f\xae\x0a\xf3\x27\xfe\x0b\x6f\x0e\x47\xe2\xc4\xe1\x28\x78\xf8\x07\x6d\xee\x56\xd2\x02\xce\x7e\x4e\xe6\xaa\x7a\xc2\xbe\x00\xc3\xc7\x03\x8c\x51\x07\x98\x62\x05\x30\x72\x30\x80\xec\x11\x80\xe1\xd2\x00\x86\x35\xb4\x87\x5c\x3c\x01\x06\xbd\x03\x08\xed\x0f\xd0\xff\x35\xc0\xb2\xc9\x00\xbd\x0b\x00\x0a\xbb\xe7\x3c\x12\x60\x4b\xf7\x18\x2e\x02\x1c\xcd\xa0\xef\xbc\xce\xc5\x40\xb5\x1c\x07\xd0\xd7\x1b\xff\x9d\x07\xe3\xff\x8a\xff\xe0\xf1\x5f\x2c\xe5\x7e\xcf\xc3\x7f\x84\x70\xfa\xd0\xb3\x0f\x8c\xcd\x79\x92\x3c\xfc\x83\xba\x26\x49\x49\x2e\x00\x9b\xc0\xf1\x34\x0d\x73\x05\x18\x54\x46\x78\x9d\x6e\x1d\xe8\x3f\x1c\x40\x46\x17\xa0\x57\x32\x80\x2e\x87\xc9\x70\xe2\x62\x92\xe0\x5e\x24\xd3\xd4\x7f\x5f\xa3\x2d\x1c\xe7\xc8\xe1\xc5\x24\x2f\x73\xdc\x60\x8f\x39\x8c\x0e\xdd\x67\xa6\x78\x1a\xfe\x80\x7f\xf8\xbf\xe2\x3f\x78\x3c\x38\x3d\xf7\x01\x6f\xfc\x3c\x1c\x50\x4f\x3d\xe0\xe1\x60\xe4\xb9\x7d\x37\x93\xdb\x67\x63\xb8\xfd\xf8\x8f\xff\x14\xc6\x71\x36\x5b\x8a\xd3\x15\x5d\xea\xe8\x6b\xed\xc8\xc5\xb6\x41\x9c\x8d\x4a\xe5\xe6\x63\x35\x87\x3d\xab\xe4\x38\xf2\x0e\x89\x91\xbc\xc4\xc5\xc6\x0f\xb8\xcf\x7f\x18\xca\x8d\xd7\xe8\xcf\xf3\xf0\x2f\x1e\xa0\x1e\xf8\x8f\xe5\xd3\xa9\xfa\xf6\x73\xfc\xd5\x80\xd9\xc1\x9f\x38\xa8\x42\xc2\xb7\xb8\x78\xf4\x42\xcb\x68\x3d\x68\x20\xa2\x14\xf4\x6b\x07\x61\x97\x79\x95\x61\x03\x31\x1b\x26\x29\x39\x04\x35\x6b\xd2\xe9\xc1\x58\x65\x18\x7c\x6b\x18\x87\xda\x19\x96\xdd\x07\x33\xf9\xfc\xa7\x85\x11\x43\x33\xd4\x81\x3a\x8b\xf0\x4b\x10\x8f\xf7\xd0\x1a\xfb\x03\xf4\x73\x10\xea\xc1\x50\x37\xba\x29\x38\x64\x6b\x01\xfa\xfa\x21\x35\x95\xa8\xa3\x83\x93\xf7\x63\x7d\x7b\x50\x2d\xe5\xe9\x07\xfa\xff\x8d\x31\x60\x7f\xc5\xd7\x98\x79\xed\x6f\xda\x8a\x31\x63\x6f\xa7\x7f\xe2\x3f\x78\xf3\xd0\x73\xfc\xb9\x5c\x37\x86\x74\xad\xde\xe8\x49\x12\xf7\xf4\xc2\x6c\x72\xd4\xe2\xbe\x88\xf3\x08\xb6\x1c\x88\x68\x0d\x2f\x35\x3e\xac\x26\xb8\xac\x1a\x8a\x27\x32\x2b\x89\x61\xb8\xf2\x86\x62\x23\xf1\xe9\xaa\x7b\x47\x63\x15\x56\xe6\x01\xf1\xa3\x4c\xeb\x3f\x1e\xb3\x66\x42\xa8\xfd\xdd\xff\x89\xec\x24\x39\x3e\xb2\x3f\x56\x46\x26\xd4\x8c\x47\xfd\x16\x49\xa2\xfc\xe4\xf8\xcb\x3a\x68\x8b\xc7\x57\xda\xa1\x4d\x19\x5f\x41\x95\x12\xe1\x72\xba\x19\x3b\xae\x9e\x3a\xc6\x8f\x15\xa8\xc0\xf1\x8f\x0b\xdb\x8b\x99\xc3\x31\x8d\x94\xa7\x1f\x55\x77\x1b\x75\x7b\xb4\x1c\x71\x4b\x8e\xec\xdd\x88\x6b\x37\xc2\x94\xc6\xcf\xc7\xc9\x01\x78\xbf\xb9\x88\xc3\x05\xe5\x59\xd1\xba\x67\xe4\x53\x1f\x24\x1e\x0f\x0c\x0f\xff\x12\x64\x29\x84\xab\xe6\xe9\x3e\x0a\xf9\x01\x1c\xdf\x53\x7f\x20\xcb\x5c\xc2\x85\x18\xbb\x88\x62\xbd\x4b\x53\x80\xb2\xad\xb2\x5b\x27\xe3\xb8\xc5\x1b\xa7\xe2\x8e\x9a\x50\x2b\x8e\x5a\xce\xd7\x77\x36\x37\xfe\x99\x9c\xc5\x15\x37\x1d\x80\x19\xcd\x59\xc9\xf4\x4d\xb3\xab\xa5\x30\x26\x9d\xb9\x59\x03\x2b\x40\x33\x1b\xa8\xe3\xc2\x6c\x2e\x26\x99\x6d\x13\x8f\xf8\x90\x99\x49\xd4\x51\x7e\x86\x3f\x61\x9c\xa7\xad\x24\xde\xea\x69\xf5\xa7\x70\x6d\xa7\x9e\xbb\x89\x6f\x32\x55\xe0\x19\xce\x9b\x68\x4c\x3d\x7e\xdf\xe4\x45\xec\xb7\xbe\x41\xc4\x8b\x92\x63\x45\xd9\xd2\x65\x4d\x43\x6a\xe1\x3f\xf4\x41\x0a\xdc\x36\x1e\x33\x33\x3e\x85\xc2\xa8\x9d\x6e\xa2\x62\x18\x09\x58\x3f\x9d\x86\x55\x26\x63\xaf\x99\x58\xe7\xd6\x56\x26\x5c\x88\xd2\x30\xc2\x0d\xcc\xd3\x93\xc4\x13\x89\x68\x1d\xe1\x42\x04\xb7\xca\x60\x84\xd2\x57\x7f\x01\x57\xbf\x58\x20\x43\x52\x26\x8d\x0f\x63\xb3\x85\x69\x34\x0f\x72\x61\x92\x94\x21\x6f\x51\xf7\xa0\x9f\xa9\xe3\x86\x5c\x98\x0f\xae\x99\xac\x5d\x2c\xfa\xb8\x45\xe7\x88\x41\x7d\x61\x7e\x29\xde\x30\x94\x79\xb5\x0d\x2b\x29\x32\x73\x8f\xe0\x3e\x90\x36\xbe\x42\xf8\x99\xe9\x4f\xf0\xbe\xab\x64\xcd\x27\x7c\xf2\xdc\xba\x4e\x9c\x57\xf1\x1a\x9a\x87\x29\xc8\x7b\xf0\xab\x0f\x14\xe1\x7e\x62\x54\xc7\x13\xbb\x80\xe6\x14\x44\x0d\x78\x87\x4f\x45\xcb\xee\x26\x41\x0e\xd6\x46\x58\x02\xeb\x7d\xa6\x22\x92\x74\xdf\xd9\x9f\xf0\x02\x4a\x6c\x11\x7e\xbb\xf4\x66\x79\xba\xdf\x6a\x27\xdf\x8b\xb4\x59\x19\x77\xfb\xd0\x71\xca\x1c\xe3\x96\x9a\x60\x0f\xf9\x68\x28\x22\x8c\xd4\xd3\x45\x90\x51\x43\xed\xdc\x3c\x1c\xbf\x86\x82\x2a\xee\x48\x8d\x46\x8b\x6a\xd2\x34\x0f\x7c\x43\xcd\x73\x84\x7f\x50\xe3\x6e\x10\x6b\x86\x16\xa1\x8d\x56\x97\xdd\x84\xf6\x55\x6d\xf7\x21\xfc\x7b\x35\x09\xba\xef\xaf\xea\x7a\x0f\x63\x3e\x15\xeb\xb7\x78\x66\x56\x82\x36\x7c\x23\x59\x67\xc2\x83\x48\x61\x3f\x0c\x1e\x0f\x4c\xfc\x9c\x29\xa8\xef\xc1\x75\xc4\x8b\xe2\x33\x66\x0e\xee\x7b\xb7\x47\x64\xb5\x1c\x84\x64\xb1\x1a\x69\x81\x91\x30\x80\xfe\x66\x05\xac\x26\x68\xf4\xa2\x71\xf2\x70\x30\x73\x7b\x6b\xe0\xe7\x26\x01\xe1\x5f\x84\xaa\xc9\x63\xf4\x5f\xc5\xf3\x1c\x3c\x4f\xca\x93\x06\x35\xc3\xd1\xae\x19\xe6\x4e\xc4\x8a\xa9\xe1\x3c\x09\xac\x20\x19\xee\x55\xc1\xba\xbe\x91\x8f\x29\x56\xda\x8c\x92\xdd\x30\x17\x62\xfc\x3e\x04\xf3\xf0\x26\x56\x29\xe8\x1f\x0d\x3f\xe6\xa3\xaf\x36\xfe\xbe\xf1\x3b\x7d\xef\x3e\xf4\x13\x06\x40\x75\x2c\x7d\x63\xe2\x12\xd4\xfb\xfc\x12\x6d\xbf\x6e\xdc\x37\x9c\x0f\x2d\x45\xd2\x07\xa5\xae\x6e\x19\xd3\x31\x1b\x77\x57\xf8\x44\xd2\x46\xbf\xdb\x84\x83\x71\x7f\x41\xb8\x1f\xa7\x42\x79\xdc\x0f\x96\x37\x68\x75\x4c\xfa\x68\xa0\x25\xd5\xf2\xd1\xc6\xfa\x85\x52\x89\x2e\x5a\x39\xc9\xfb\x06\x38\x0f\xd3\x0a\x68\x7c\xc2\x7e\x46\x58\x7d\xe3\xaf\xa7\xdb\xd9\x60\x6d\xca\x45\x1e\x56\x5c\xbd\xd7\x82\xcb\x6c\x59\x95\x0f\x43\x64\x96\xcd\xc4\xc9\x88\x2c\xb2\x15\x90\x40\xfb\x67\xdd\xaa\x8c\x75\x70\xdb\x00\x13\xfc\xd9\xf6\x1c\x55\xde\x6d\x9f\x06\xf5\xa7\x9f\xc9\xc5\xdb\x29\xe4\x62\x3d\xd3\x3a\x9f\xec\x84\xf5\xa4\x5d\xf8\x41\xeb\xf5\x27\x50\x85\xad\x24\xae\xa2\x0f\xb0\xbc\xff\x04\xe7\xc9\xd2\xfb\x0b\x9e\x25\xcd\x6a\xbb\x10\x47\x68\x70\xaa\x7b\x1e\x22\x26\x13\x7e\x2d\xa0\x4e\x1e\xe7\xc1\xe3\xbe\x22\x56\xcb\x5d\xaa\x35\xb0\xea\x61\x53\xa7\x83\x6f\x69\xf2\x54\x1f\x91\xd8\x3d\x71\x30\xb2\x66\xa4\xb5\x73\xcf\x93\x14\xd5\xb7\xc4\x48\x61\x54\x1d\xd5\xd1\x07\x97\xd9\x71\x99\x0a\x1e\x0e\xc6\x89\xb3\x8f\xce\x5b\x7b\xe1\x8c\xba\xec\x1f\x81\x67\x57\x97\xeb\xa2\xe8\xff\xdd\x04\x89\xa1\xc7\xf5\x6f\x25\xdc\x27\x6e\x75\x26\xe8\x2f\xdd\x17\x52\xa7\x92\xc5\xda\x01\x38\x3e\x37\x19\xe2\x75\x77\x9b\x4d\x76\xc2\x5d\xb3\x14\xcf\x74\x6e\x79\x5b\x6f\xd2\xbf\x1f\xc5\x3a\xbf\xb3\xf1\x65\x7f\xfa\xde\x47\x18\xfb\xf2\x70\x31\x8e\x22\x84\x1b\xb3\xb3\xed\x9e\x07\x5e\x3f\x28\x2f\x7f\xb5\x6d\xf0\x0f\x1c\x8c\x6d\x1c\xdd\xaa\xe6\xe1\x60\x0c\x7b\x5b\x62\xe4\xac\xe1\x6a\x83\x6f\xc5\xc3\xc1\x48\x4d\xb1\x47\xd4\xe6\x0c\x61\x47\xb4\x97\x22\x49\xb4\x6a\x82\x99\x84\x30\xef\x77\xce\x95\xbb\xc7\xec\xc9\x1d\x41\x79\x27\x51\x9f\xb7\x7d\x30\xce\xe3\xe1\x61\x7c\x8d\x44\x51\xef\x7d\x3e\xcf\xc3\x98\xd3\xb7\x9f\x32\xe1\x60\xaa\x0d\xbd\x49\x52\xbd\xdb\x3f\x8a\x70\x73\xbe\x4f\xa2\xe3\xe9\x67\x8a\xf5\xfd\x7b\x13\x3f\x8a\x1f\xab\xc2\x9c\x99\x1f\xff\xc1\x95\xf4\x77\x97\x10\x5f\xe5\x33\xe9\x1e\xda\x59\xef\xd2\x57\xe8\x01\x17\x3f\xfa\x8a\x71\x98\x07\xf6\x57\xf3\x3e\xab\x83\xbb\xc5\xfd\x8d\x11\xce\x8e\xc3\x45\xc2\x37\x59\x3e\xb0\xa2\xfe\x70\x7f\xc0\xc1\xc8\xca\x10\xeb\xfe\x6c\xac\xba\x00\x88\xc9\xb9\xe3\x6e\x1e\xf3\xc4\x13\x4f\x52\xfc\xa7\x3d\xb9\xc8\xda\x7b\xce\xef\xe3\x0f\xe1\xa2\xba\xd0\xad\xfd\xf0\x9f\x82\x4b\x04\x38\x86\x2e\xf2\xb8\x61\x20\x81\x33\x1b\x32\x43\x11\xf9\x5d\xc2\x96\x18\xe2\xb8\x43\x6b\xa9\xde\x1d\x16\x47\xdf\x18\xbe\x31\x0a\xed\x7f\x98\xe3\xd2\x37\xf4\x33\x75\x5e\x08\x77\xa3\x3e\x52\xe1\x43\x29\x9e\x08\x9f\x77\x1e\x2d\x7a\xc8\xc9\x5b\x18\x19\x84\x94\x3f\xc7\x88\x8f\x87\x8b\x09\xa8\xeb\x4a\x02\xf0\x08\x31\xc5\xb8\x80\x87\x83\xb1\x3d\x47\xd1\x1b\x0f\x07\xa3\xb7\xc1\x0d\xd7\x5f\xc3\xdc\x1d\xff\x41\x61\x75\x0f\x1c\x4c\xa5\x17\xa2\x15\x26\x6e\xf5\xc6\x59\x1e\xb5\x3d\x00\x4f\xac\x7c\xd5\x01\x9c\x1d\x0c\x35\x23\xc9\xeb\x93\x14\xc3\x9d\xc8\x62\x27\x51\x07\xc3\xd8\xa7\x84\x87\x89\xf9\x3c\x19\x3d\x6f\xcc\x1c\x09\xac\x25\xc5\xfa\x29\xa2\x86\xc5\xf9\xd3\x4e\x8c\x37\xa5\x79\x88\x2d\x5f\x82\x3b\x2d\xe6\x4b\x28\xee\x9b\xb8\xe9\xa9\x58\xc7\x8c\x0d\xca\xc3\x33\x42\xec\x90\x72\x8c\x60\xe3\x26\xef\xc2\x4a\x6a\xbc\xc8\x29\xea\x83\xb3\xe8\x2a\xda\xe1\x68\xbf\x27\x18\xd1\x46\xe5\x7c\xc0\x78\x9d\x70\x31\x6e\x75\x8e\x98\x31\xb2\x79\xe4\x84\xda\x68\x51\x4d\x68\x2c\xa3\x5c\x4f\x74\x88\x5a\x1b\x3c\x09\xc5\xd9\xcf\x9b\x58\xcb\x06\xf8\x62\x5c\x29\xa1\x4f\xda\x39\xcd\x23\x10\xd1\xaa\xc2\xc3\x42\x71\xd6\x05\x8d\xa9\x8f\xce\x40\xdd\x08\x8a\xfa\x13\x62\xb8\x13\x05\x8f\x17\x26\x89\xeb\x18\x9f\x52\xdc\x1f\x3d\x52\x72\x22\x45\xa0\xc9\xf5\xa2\x68\x71\x93\x9f\xcd\x43\x8f\x93\x22\x48\xfd\x06\x53\xf6\xe9\x63\x8e\x3c\x55\xce\x1a\x23\xd8\x54\x27\x62\x22\x4a\x53\x27\xa6\x8e\x14\xf7\x24\xfc\x5c\x9a\x5e\x1e\xe1\x61\x24\xd6\x62\x3c\x9e\x7a\x6c\xfb\x1e\xfa\x99\x72\x0b\x29\x99\x97\x31\x3e\x4d\x4a\x20\x9c\x6d\xc2\xb5\x17\xe8\x47\xe2\xcf\x7c\xcb\x03\x70\x88\x74\xc7\xea\xb7\x55\x1d\xe1\x61\x4c\x05\x08\xff\xa3\xb7\xdc\x1f\xf5\x5d\x73\x14\x9d\x24\x14\xe2\x82\x09\xff\x00\xe1\xf8\xef\xb3\x0a\x08\x07\x23\x26\x16\x85\xa8\x14\xe1\x85\x31\x38\x9a\x61\xe7\x63\x10\xcd\xd0\xbb\x2a\x51\x8b\x1b\x2f\x87\x87\x49\xe3\xe2\xc8\x5f\xfc\x30\x7d\x11\xc7\xc1\xc3\xc3\x64\x9c\x16\xe5\x78\x62\x88\xa9\x2e\x2b\x99\xee\x6a\x64\x26\x11\xaf\x58\xe6\x02\xea\x6c\x95\x51\x43\xc8\xbb\xac\x1b\xa1\xe8\xc1\xb2\xf4\x93\x30\x3e\xc8\x7c\x92\x8d\x32\x6b\xd2\x5a\x8c\xe4\xb3\x24\xb7\xe1\x79\x22\xf3\xca\x21\x8c\xf0\x33\x66\x5f\xd4\xa7\xef\xbb\x27\x41\xdf\x43\xe7\x8e\x65\x9f\xbf\x8a\xff\x83\x0f\x27\xc1\x97\xec\xe1\x72\xd2\x67\xed\xe3\xc1\x38\x1f\xca\xb9\xe1\xb8\x1f\xe4\x54\xa9\xa1\x96\x94\x51\x0c\x6a\xdb\xcc\x24\xba\x81\x34\x39\x91\xac\xf6\xe8\xad\xc9\x18\xbd\xf0\x01\xe1\x06\x7a\xcf\xe1\x9d\x8e\x97\x71\x15\x53\x1e\x1e\xa6\x80\xcb\xe4\xe6\xaf\x1b\x80\xfb\xbb\x60\xf2\x48\xe4\x2f\x29\x18\x4f\x76\xb2\xc0\x48\x02\x11\x56\xf9\xe9\xc4\xe0\x96\xff\x4d\x0f\xe7\x89\xd7\x37\x29\x4f\x84\x2c\x6f\x01\x23\xbc\x75\x7e\x12\x31\xd3\x14\xf4\xa6\xbe\x62\xab\xe6\x96\xe2\x9b\xaf\x32\xdb\x9a\x4c\xdf\xb7\x1f\xfd\x47\xde\x8f\xf3\x98\x33\xcc\x4b\xbd\x8d\x2b\x97\x6b\xfe\x1c\x73\x22\x2b\x25\x3e\x32\x00\x6b\x45\x8e\x0f\x87\xeb\x0b\xa5\x67\x40\xeb\xac\xf1\x24\x06\xd1\x15\xf2\x75\x31\xf8\x94\x05\x53\x13\x70\xf6\xe6\xaa\x26\xe1\x3e\x9f\xb6\x39\x05\xcf\x13\x13\x8d\x29\xaa\x13\xba\xb9\x1c\x77\xe5\xe0\xf8\x0c\xcc\xe8\xf4\xda\xb5\x82\x3b\x81\xff\x37\x3c\x4c\x71\x28\x4d\x4c\x89\xc7\x64\x64\x74\x2b\x29\x92\xc0\x75\x2b\x9e\xa7\x80\x71\x42\xd1\x1d\x8a\xc0\x4a\xfc\x2c\xaf\xd0\xe7\x5d\x71\x3f\x14\x3f\xa7\x38\xa2\xd8\x96\x56\xa2\xe8\x7c\x26\x5a\xfc\x12\x85\x35\xf8\xa4\xb5\xd2\x9b\x70\x5e\x8a\xed\xf7\xbe\x25\x79\x16\x79\xf9\x8a\xba\x6e\xe1\xbf\x17\x9d\xae\xc3\x95\x2b\xce\xfa\x2a\xf3\x8b\x0f\xc7\xf0\x62\x74\x55\xb7\xd4\xaa\x27\x9e\x27\x15\xa0\xfe\x5f\x3f\x71\x30\x37\xd2\x30\xce\x9e\x75\x63\x19\xea\x83\x68\x5f\xba\x0d\x22\x5c\x4e\xbc\x38\x02\x61\xe4\xc5\x07\x1c\xa7\xd3\x0f\x70\xa8\xc6\x5f\x78\x98\x22\x2e\x93\xc9\xc3\xc3\x94\x8d\xa3\xf3\x55\x4f\x3c\x4c\x85\xf1\x5c\x5c\xcf\x0a\x7d\x79\xcc\x01\x97\x8f\xd1\xc6\x1d\x55\x96\x44\x11\x4a\xf9\x15\xba\x8f\x51\x7e\xd6\x9f\x24\x23\x0b\x54\xa1\x94\x8e\xf7\x2c\xd6\x17\xad\xc1\x37\xae\xd8\x43\x38\xfc\x8a\x53\xd5\xa8\xc9\x15\x87\xcf\xe0\xfc\x94\x0f\xbd\x49\xcf\x35\xa9\x45\xbf\xba\x4e\xe4\x1d\xe2\x6d\x7a\xf5\xea\xdd\xbb\x4f\x9f\xbe\x7d\xfb\xf5\xeb\xdf\x7f\xc0\x80\x81\x03\x07\x0d\x1a\x3c\x78\xc8\x10\x3e\xbe\xa1\x43\xf9\xf9\x87\x0d\x1b\x3e\x7c\xc4\x08\x01\x01\x41\x41\x21\xa1\x91\x23\x47\x8d\x1a\x3d\x7a\xcc\x98\xb1\x63\xc7\x8d\x13\x16\x1e\x3f\x7e\xc2\x04\x11\x91\x89\x13\x27\x4d\x9a\x3c\x59\x54\x54\x4c\x6c\xca\x94\xa9\x53\xa7\x4d\x9b\x3e\x7d\xc6\x0c\x71\xf1\x99\x33\x67\xcd\x9a\x3d\x7b\xce\x9c\xb9\x73\xe7\xcd\x93\x90\x90\x94\x94\x92\x92\x96\x9e\x3f\x5f\x46\x66\xc1\x82\x85\x0b\x65\x65\x17\x2d\x92\x93\x93\x97\x57\x50\x50\x54\x54\x52\x52\x56\x56\x51\x51\x55\x55\x53\x53\x57\xd7\xd0\xd0\xd4\xd4\xd2\xd2\xd6\xd6\xd1\xd1\xd5\xd5\xd3\xd3\xd7\x37\x30\x30\x34\x34\x32\x32\x36\x36\x31\x31\x35\x35\x33\x33\x37\xb7\xb0\xb0\xb4\xb4\xb2\xb2\xb6\xb6\xb1\xb1\xb5\xb5\xb3\xb3\xb7\x77\x70\x70\x74\x74\x72\x72\x76\x76\x71\x71\x75\x75\x73\x73\x77\x5f\xbc\xd8\xc3\x63\xc9\x12\x4f\x4f\x2f\x2f\x6f\x6f\x1f\x1f\x5f\x5f\x3f\x3f\x7f\xff\x80\x80\xc0\xc0\xa0\xa0\xe0\xe0\x90\x90\xd0\xd0\xb0\xb0\xf0\xf0\x88\x88\xc8\xc8\xa8\xa8\xe8\xe8\x98\x98\xd8\xd8\xb8\xb8\xf8\xf8\x84\x84\xc4\xc4\xa4\xa4\xe4\xe4\x94\x94\xd4\xd4\xb4\xb4\xa5\x4b\x97\x2d\x4b\x4f\x5f\xbe\x3c\x23\x23\x33\x33\x2b\x6b\xc5\x8a\xec\xec\x95\x2b\x73\x72\x72\x73\xf3\xf2\xf2\xf3\x0b\x0a\x56\xad\x5a\xbd\xba\xb0\x70\xcd\x9a\xa2\xa2\xe2\xe2\x92\x92\xb5\x6b\x4b\x4b\xd7\xad\x2b\x2b\x2b\x2f\xaf\xa8\x58\xbf\x7e\xc3\x86\x8d\x1b\x2b\x2b\xab\xaa\x36\x6d\xda\xbc\x79\xcb\x96\xad\x5b\xb7\x6d\xdb\xbe\x7d\xc7\x8e\x9d\x3b\x77\xed\xda\xbd\x7b\xcf\x9e\xea\xea\xbd\x7b\xf7\xed\xdb\xbf\xff\xc0\x81\x83\x07\x0f\x1d\x3a\x7c\xf8\xc8\x91\xa3\x47\x8f\x1d\x3b\x7e\xfc\xc4\x89\x93\x27\x4f\x9d\x3a\x7d\xfa\xcc\x99\xb3\x67\xcf\x9d\x3b\x7f\xfe\xc2\x85\x8b\x17\x2f\x5d\xba\x7c\xf9\xca\x95\xab\x57\xaf\x5d\xbb\x7e\xfd\xc6\x8d\x9b\x37\x6b\x6a\x6e\xdd\xfa\xeb\xaf\xdb\xb7\xef\xdc\xb9\x7b\xf7\xef\xbf\xef\xdd\xbb\x7f\xff\xc1\x83\x87\x0f\x1f\x3d\x7a\xfc\xf8\xc9\x93\xa7\x4f\x6b\x6b\x9f\x3d\x7b\xfe\xbc\xae\xee\xc5\x8b\x97\x2f\x5f\xbd\x7a\xfd\xfa\xcd\x9b\xb7\x6f\xdf\xbd\x7b\xff\xfe\xc3\x87\x8f\x1f\x3f\x7d\xfa\xfc\xb9\xbe\xfe\xcb\x97\xaf\x5f\xbf\x7d\xfb\xfe\xfd\xc7\x8f\x86\x86\xc6\xc6\xa6\xa6\xe6\xe6\x96\x96\xd6\xd6\xb6\xb6\xf6\xf6\x8e\x8e\xce\xce\x2e\x3c\x51\xfc\x6f\xfd\xff\xb7\xfe\xff\x5b\xff\xff\xad\xff\xff\xd6\xff\xff\xcd\xf5\x07\xf0\x5f\x12\x86\xcc\xc6\x7d\xfa\x8e\x00\xe0\x6a\x1c\x3f\xff\xfb\x0f\x3f\xf7\xea\xdd\x0b\xff\x4f\x6f\xe8\x03\x7d\xa1\x1f\xf4\x87\x01\x30\x10\x06\xc1\x60\x18\x02\x7c\x30\x14\xf8\x61\x18\x0c\x87\x11\x20\x00\x82\x20\x04\x23\x61\x14\x8c\x86\x31\x30\x16\xc6\x81\x30\x8c\x87\x09\x20\x02\x13\x61\x12\x4c\x06\x51\x10\x83\x29\x30\x15\xa6\xc1\x74\x98\x01\xe2\x30\x13\x66\xc1\x6c\x98\x03\x73\x61\x1e\x48\x80\x24\x48\x81\x34\xcc\x07\x19\x58\x00\x0b\x41\x16\x16\x81\x1c\xc8\x83\x02\x28\x82\x12\x28\x83\x0a\xa8\x82\x1a\xa8\x83\x06\x68\x82\x16\x68\x83\x0e\xe8\x82\x1e\xe8\x83\x01\x18\x82\x11\x18\x83\x09\x98\x82\x19\x98\x83\x05\x58\x82\x15\x58\x83\x0d\xd8\x82\x1d\xd8\x83\x03\x38\x82\x13\x38\x83\x0b\xb8\x82\x1b\xb8\xc3\x62\xf0\x80\x25\xe0\x09\x5e\xe0\x0d\x3e\xe0\x0b\x7e\xe0\x0f\x01\x10\x08\x41\x10\x0c\x21\x10\x0a\x61\x10\x0e\x11\x10\x09\x51\x10\x0d\x31\x10\x0b\x71\x10\x0f\x09\x90\x08\x49\x90\xc4\x92\x59\x0a\x4b\x65\x69\x6c\x29\x5b\xc6\xd2\xd9\x72\x96\xc1\x32\x59\x16\x5b\xc1\xb2\xd9\x4a\x96\xc3\x72\x59\x1e\xcb\x67\x05\x6c\x15\x5b\xcd\x0a\xd9\x1a\x56\xc4\x8a\x59\x09\x5b\xcb\x4a\xd9\x3a\x56\xc6\xca\x59\x05\x5b\xcf\x36\xb0\x8d\xac\x92\x55\xb1\x4d\x6c\x33\xdb\xc2\xb6\xb2\x6d\x6c\x3b\xdb\xc1\x76\xb2\x5d\x6c\x37\xdb\xc3\xaa\xd9\x5e\xb6\x8f\xed\x67\x07\xd8\x41\x76\x88\x1d\x66\x47\xd8\x51\x76\x8c\x1d\x67\x27\xd8\x49\x76\x8a\x9d\x66\x67\xd8\x59\x76\x8e\x9d\x67\x17\xd8\x45\x76\x89\x5d\x66\x57\xd8\x55\x76\x8d\x5d\x67\x37\xd8\x4d\x56\xc3\x6e\xb1\xbf\xd8\x6d\x76\x87\xdd\x65\x7f\xb3\x7b\xec\x3e\x7b\xc0\x1e\xb2\x47\xec\x31\x7b\xc2\x9e\xb2\x5a\xf6\x8c\x3d\x67\x75\xec\x05\x7b\xc9\x5e\xb1\xd7\xec\x0d\x7b\xcb\xde\xb1\xf7\xec\x03\xfb\xc8\x3e\xb1\xcf\xac\x9e\x7d\x61\x5f\xd9\x37\xf6\x9d\xfd\x60\x0d\xac\x91\x35\xb1\x66\xd6\xc2\x5a\x59\x1b\x6b\x67\x1d\xac\x93\x75\xb1\xee\xff\x00\x80\xf5\xea\xea\xdd\xd9\xa7\xa3\x6f\x7b\xbf\xb6\xfe\xad\x03\x5a\x06\x36\x0f\x6a\x1a\xdc\x38\xa4\x81\xef\xc7\xd0\xef\xfc\xdf\x86\x7d\x1d\xfe\x65\x44\xbd\xc0\x67\xc1\x4f\x42\x1f\x47\x7e\x18\xf5\x7e\xf4\xbb\x31\x6f\xc7\xbe\x19\xf7\x5a\xf8\xd5\xf8\x97\x13\x5e\x88\xd4\x4d\x7c\x3e\xe9\xd9\xe4\x5a\xd1\xa7\x62\x4f\xa6\x3c\x9e\xfa\x68\xda\xc3\xe9\x0f\x66\xdc\x17\xbf\x37\xf3\xef\x59\x77\x67\xdf\x99\x73\x7b\xee\x5f\xf3\x6e\x49\xd4\x48\xde\x94\xba\x21\x7d\x7d\xfe\x35\x99\xab\x0b\xae\x2c\xbc\x2c\x7b\x69\xd1\x45\xb9\x0b\xf2\xe7\x15\xce\x29\x9e\x55\x3a\xa3\x7c\x5a\xe5\x94\xea\x49\xb5\x13\xea\xc7\x35\x8e\x69\x1e\xd5\x3a\xa2\x7d\x58\xe7\x90\xee\x41\xbd\x03\xfa\xfb\x0d\xf6\x19\xee\x35\xaa\x36\xde\x63\xb2\xdb\x74\x97\xd9\x4e\xf3\x1d\x16\xdb\x2d\xb7\x59\x6d\xb5\xde\x62\xb3\xd9\x76\x93\x5d\x95\x7d\xa5\xc3\x46\xc7\x0d\x4e\xeb\x9d\x2b\x5c\xca\x5d\xcb\xdc\xd6\xb9\x97\x2e\x5e\xeb\x51\xb2\xa4\xd8\xb3\xc8\x6b\x8d\x77\xa1\xcf\x6a\xdf\x55\x7e\x05\xfe\xf9\x01\x79\x81\xb9\x41\x39\xc1\x2b\x43\xb2\x43\x57\x84\x65\x85\x67\x46\x64\x44\x2e\x8f\x4a\x8f\x5e\x16\xb3\x34\x36\x2d\x2e\x35\x3e\x25\x21\x39\x31\x29\x29\x31\x39\x21\x25\x3e\x35\x2e\x2d\x76\x69\xcc\xb2\xe8\xf4\xa8\xe5\x91\x19\x11\x99\xe1\x59\x61\x2b\x42\xb3\x43\x56\x06\xe7\x04\xe5\x06\xe6\x05\xe4\xfb\x17\xf8\xad\xf2\x5d\xed\x53\xe8\xbd\xc6\xab\xc8\xb3\x78\x49\x89\xc7\xda\xc5\xa5\xee\xeb\xdc\xca\x5c\xcb\x5d\x2a\x9c\xd7\x3b\x6d\x70\xdc\xe8\x50\x69\x5f\x65\xb7\xc9\x76\xb3\xcd\x16\xeb\xad\x56\xdb\x2c\xb7\x5b\xec\x30\xdf\x69\xb6\xcb\x74\xb7\xc9\x1e\xe3\x6a\xa3\xbd\x86\xfb\x0c\xf6\xeb\x1f\xd0\x3b\xa8\x7b\x48\xe7\xb0\xf6\x11\xad\xa3\x9a\xc7\x34\x8e\xab\x9f\x50\x3b\xa9\x7a\x4a\xe5\xb4\xf2\x19\xa5\xb3\x8a\xe7\x14\xce\xcb\x5f\x90\xbb\xb8\xe8\x92\xec\xe5\x85\x57\x16\x5c\x95\xb9\x36\xff\xba\xf4\x0d\xa9\x9b\x92\x35\x12\xb7\xe6\xfd\x35\xf7\xf6\x9c\x3b\xb3\xef\xce\xfa\x7b\xe6\x3d\xf1\xfb\x33\x1e\x4c\x7f\x38\xed\xd1\xd4\xc7\x53\x9e\x88\x3d\x15\xad\x9d\xfc\x6c\xd2\xf3\x89\x75\x22\x2f\x26\xbc\x1c\xff\x4a\xf8\xf5\xb8\x37\x63\xdf\x8e\x79\x37\xfa\xfd\xa8\x0f\x23\x3f\x0a\x7d\x12\xfc\x2c\x50\x3f\xe2\xcb\xf0\xaf\xc3\xbe\xf1\x7f\x1f\xfa\x83\xaf\x61\x48\xe3\xe0\xa6\x41\xcd\x03\x5b\x06\xb4\xf6\x6f\xeb\xd7\xde\xb7\xa3\x4f\x67\xef\xae\x5e\x0c\xfe\xa7\x03\xff\xd3\x81\x6e\x4b\xb0\x48\x55\xe1\xc2\x70\x4d\xc6\x74\x43\xd5\x6e\x8e\xe3\x67\xcc\xf6\x9a\x7e\xf9\x8c\x37\x8c\xb9\x4d\x35\xb5\x9f\xef\xcf\x76\xbb\xac\x76\xbe\xa8\x53\xd1\x75\xd5\x25\x22\x54\xd6\x7e\x69\x57\x7f\xbb\x07\x59\x07\x3d\xa3\x3b\x03\x2d\xe7\x6d\x70\x0d\x48\xea\x38\x6c\xea\x76\x30\x26\x7c\x59\xc7\x2c\x83\x31\x7f\x59\x45\x6f\x6c\x2f\xd7\xce\xff\xd6\x15\xd7\xd9\xe1\xad\xb9\xac\x45\x31\xfc\x61\xa7\x81\xfa\xf1\xd6\x65\xfe\x33\x3e\xa8\x69\x8e\x6c\x6d\xf3\x5d\xf0\x70\x80\xb6\x43\x9b\xbc\xcf\xda\x2b\x26\x7a\xf7\xdb\x66\xf9\x59\x9d\x9a\xab\xef\xd1\xf6\x7d\xc9\x4b\xc6\xe4\x4e\xc8\x2f\x1c\xbe\x9b\x31\xa3\x97\x4a\xae\x63\x56\x33\xe6\x92\xa9\xf6\x56\xf4\x0d\x63\x5e\x77\x8d\xb6\xcc\x7f\xc7\x0e\x7b\xbe\x74\x18\xaf\xf3\xb6\x2b\x7a\x49\xa8\xaf\xab\xf3\xc9\xce\x14\xa7\xce\xf4\x13\xfe\x97\x3b\x76\xda\x98\xac\x0f\x8a\xa8\x6c\xff\xcb\xfc\xfc\xa1\xf9\x09\x7d\xda\x3d\x0d\x9a\xfe\x96\x4c\x9a\xd2\x96\xab\x73\xa0\x71\xd5\xd2\x99\xed\x2b\xb4\x47\x35\x75\xc6\x07\x7e\xfd\xaa\xed\xde\xfc\x3a\xea\xc9\x93\x7b\xba\x47\x5a\xd6\x86\xd7\x5f\xd1\x33\xea\xd3\xb2\x27\xa2\xf9\x84\x9a\x49\xaf\x56\xc3\xd0\xfd\xfb\x8b\x4c\x12\xda\xc4\x03\x7a\x31\xa6\x78\x56\xae\x69\x44\x24\x63\x66\x77\xe4\x1a\x47\x2b\x33\xb6\x38\x5c\xed\xdd\x94\x54\xc6\x02\x2b\x0c\xac\x65\x0e\xb0\x0f\xa1\x1e\x16\x37\x34\x2b\xbb\x94\xbc\x75\xbc\x6e\xb9\x5d\xeb\x38\xb2\x78\x5d\x4a\x5a\x84\x46\x7b\x89\xe3\x8a\xd2\x84\xa4\x93\x6d\xbe\x56\xdf\x0e\xdd\xcd\x50\x6d\xb5\x31\x4e\x79\xe4\x95\x33\xb0\x35\x56\xcf\xb9\x61\xe0\x8a\xab\xed\xfd\xb5\x9b\x9b\x14\x93\xab\x5e\x08\xe8\xef\x6c\xda\x98\x1c\x76\xbd\xd5\x38\xbb\xd9\x28\x51\xff\x4c\x96\xe9\x96\xe6\x57\x71\x9b\xf6\xdd\xb0\x70\x69\xd9\x10\xf5\x79\x4b\x9b\x65\x6b\x6b\x6a\xe8\x7a\xc6\x34\xc7\x2e\xb0\x1f\x5e\xc5\x98\x7d\x1f\x59\xef\xd1\x55\x8c\x05\xf4\x51\xaa\x11\x7b\xc3\x58\x54\xb8\x56\x80\xd4\x64\x76\x27\x7e\xbc\x99\x81\x4e\x6a\x97\x74\x58\x95\xfb\x8a\xc5\xba\x1d\xb3\xbd\x0b\xe2\x9c\x63\x93\xdb\xfc\x5c\xc3\x4a\x76\x64\x4e\x6e\x9d\x6e\x1b\x7d\x78\x78\xde\x97\xe6\x02\x93\x61\x2f\x87\x15\x4f\x6b\x49\xd2\xbf\xf9\x7d\x43\x41\xff\x8f\x3f\x0c\x12\x1b\x2c\x56\x44\xdf\x8a\x36\xb3\x6b\xb8\xb3\x42\xe6\xd4\x0c\xcb\x93\x8d\x2d\xe9\xc7\xf6\x8e\xb1\xe9\xdb\x3c\x39\x45\x6b\xf3\x03\xdb\x6b\x2d\xfc\xf1\x4b\xd6\x4d\x72\x18\xd4\xf2\x24\xea\x21\x63\x3a\x2f\xe7\x6b\x0e\xd7\x63\xcc\x6d\x9e\x64\x8b\x50\x08\x63\x11\x43\x16\x3c\x14\x11\x62\x6c\xe9\x74\xe5\xdd\x73\xbd\x59\x63\x46\xb2\x81\xb6\xe6\x9b\x2e\xc3\xd4\x1f\x0e\x13\xdc\xc3\xda\x87\x86\x6c\x0d\xfe\x90\xf6\x77\xcb\x41\x2f\xd5\x55\x7d\x57\x6f\x69\x56\x73\xec\x7f\x68\x43\xe9\x8f\x86\x37\xa6\x76\x1f\x27\x54\xdd\x6f\x3a\x6e\xa4\xf3\x75\x52\xe9\xab\x7b\x37\x2c\xea\xbf\xe9\x97\x3c\x3e\x7d\xd3\x56\xf8\x87\x53\xc1\xd7\x3d\x13\x1c\x52\x1b\x3a\xb2\x37\x6c\x78\xec\x12\xd6\xb8\x23\xb3\xbd\xf8\xaa\xeb\xc8\x66\xd5\x94\x4f\x79\x23\xdd\x1a\x5b\xc6\x24\x18\x33\x66\x54\x2f\x15\x37\x7c\x19\x63\x9e\x9b\x25\xc4\x85\x54\x19\x4b\x52\x92\x7a\x3e\x7e\x2f\x63\x39\xe1\x8b\x8a\xc5\x77\x30\xb6\x66\xa2\x66\x81\xaa\x6c\x97\x73\x9e\xa7\x95\xab\xdb\xfa\xb6\x9c\xe4\x8d\xbe\xc7\x33\xc6\x35\x7d\x0d\x64\x59\x42\xe5\x79\x0d\x7c\xae\x47\x0f\x1b\x6f\x3f\xf0\x7d\xb6\xc5\x8a\xf7\x5b\xf7\x1c\xa8\xdd\x61\x9d\xfa\x29\x6d\x9b\xf8\x29\x61\x67\x93\xfa\x96\xca\xe8\xad\x7a\x8b\x8f\x7d\xb3\x5c\xe7\x5c\x76\xd4\x23\xe2\xc7\xa5\x55\x83\x0a\xa4\xbd\x9e\x36\x5c\xce\x69\xc9\xbc\xef\x5d\xd6\xe4\xb5\x7c\x56\x62\x8b\x5f\xaf\xe6\x43\xc9\x42\x8c\x59\xba\xce\xbd\x32\x2c\x8d\xb1\xa0\xbe\xb3\xb2\x05\x16\x32\x96\x31\x79\x9e\x8b\x70\x1f\xc6\x4a\xef\x4b\x5e\x16\xad\x60\x6c\xb3\xb1\xf2\x44\x85\xb8\xae\x17\x5b\x73\xf5\x43\xec\x8a\xda\x4e\x16\x7e\x71\x2d\x4b\xdf\xdd\x20\x1f\x9b\x96\xc0\xbf\xfd\x42\x7d\x9e\x8f\xd0\x81\x6d\x27\x3a\xea\xb5\xed\xfa\xbd\x12\x3f\x21\x79\x6a\x98\xc7\xc1\xf7\x1a\xfb\x1d\xb6\x18\xf8\x5c\xff\x3c\x62\xbb\xc5\xaa\x73\x41\xde\x5f\x4a\x2a\x25\x32\x26\x86\x0c\xfe\x6e\x54\x72\x33\x65\x44\xc8\xea\x86\x91\x05\xab\x62\xc4\x42\xcf\x35\x6e\x58\x11\x10\x7e\x22\xe4\x75\xf3\xbc\x34\x25\xc6\x9c\x16\xcd\xf9\x38\x7c\x23\x63\x51\x26\xe2\xa5\x02\xfc\x8c\xad\xfa\x30\x6d\x98\x20\x1f\x63\xdb\xa3\x67\x86\x09\xc7\x32\x76\x74\x9f\xcc\x7d\x89\x9b\xcc\xf0\x4c\x9d\xba\xa8\x79\xef\x76\xb3\x63\xe9\xe6\x43\x93\xef\x7f\x7f\x5d\x2a\x13\x30\x6e\xcf\xf9\xa7\x7a\xf1\x41\x87\x87\x3d\x1d\x74\x6c\x44\xc4\xbe\x47\xb3\x6e\x7e\x29\xaa\x8b\x4d\x78\x2d\x75\xd2\x62\x59\x54\x82\xca\x87\x47\x7b\x67\x24\x3d\x8b\x4d\xf9\x32\x60\x53\x50\x5c\x69\xac\xf2\xb7\x5d\xeb\x9c\x22\xf7\xc5\x0d\x68\x18\x5f\xb0\x22\xd4\x28\x6e\x66\xd3\xac\x8c\x53\x41\xaa\xb1\x1d\xcd\xf1\x29\xe9\x8c\xb9\x9f\x99\x9a\x38\xe4\x3a\x63\x4b\x01\x0e\x02\x30\x46\xa8\x18\xc6\xce\x06\x80\x5d\xb7\xbc\xa3\x2a\xae\x36\xc1\x87\xb1\xda\x2b\x72\x6b\x35\x1e\x77\xdc\xfa\x10\xac\x19\x1f\xfc\xed\x87\xf9\xeb\x0c\xf3\x19\x3b\x96\x9c\x19\xb5\xad\xd7\x86\xf1\xdf\x2f\x2d\x7d\x72\xc4\xeb\xf6\xee\xfb\xfe\x09\x7f\x17\x3e\x7c\x53\x76\x2c\x25\xca\xaf\x40\xe6\xd3\xde\x9d\xc3\xc2\x0a\x72\x0e\x7e\xb5\x5f\x7f\x2f\xd8\x38\xfb\xe2\xf7\x87\x45\xe5\x01\x8a\x99\x2f\x1a\xe7\xad\x0c\xf0\x15\xcb\x5c\xdf\xb4\x67\xd9\x35\x2f\xc3\xe5\xc7\x5a\x64\xe3\xdb\x19\xf3\xaa\x9e\x5c\x33\xe8\x11\x63\xd9\xfc\xf4\x1e\xbb\x4d\xe8\x3d\x6a\xf2\x49\xfe\x98\x0b\xd8\x57\x98\x35\x49\x6e\x99\x55\xdb\x29\xd0\xfa\x49\xdd\x26\xa0\xe1\x81\xfe\x17\x07\xab\xc8\xaa\x63\x6b\x06\x3d\x5c\x9b\x61\x71\x47\xc7\xfb\xef\xba\x01\xb5\xb5\x97\x94\xbd\xde\x9d\x4b\x7d\xaf\xb6\x7f\xb1\xf7\xa7\x5d\xd7\xea\x57\x6e\xba\xe6\x3d\xb7\x4a\xfa\xdb\x86\xd2\x8d\x9e\x39\x65\x72\x0d\x9a\xf9\xc2\x1e\x83\x4a\x6f\x34\xbe\xca\xf4\x71\x0f\x28\xf2\x69\x8e\x48\xe1\x77\x87\xfc\x41\x2d\xfb\x62\x76\x33\xe6\x6f\x4c\x7d\xa4\x08\x15\xc9\xd8\x31\x17\x92\x4f\xa3\x49\x52\xdc\xde\x65\xc1\x0a\xa4\x5b\xa4\xd2\x1e\x6a\xb5\xd5\x6b\xb9\x7b\x97\x55\x0b\x37\xd4\x38\x3c\xcf\xdf\x91\x3a\xf5\x53\x4b\x62\xd8\x1e\x75\xa7\xd2\xf7\x41\x6f\x4f\x1f\x94\xb3\x33\x7a\xd3\xf8\x69\xf7\xd6\x7d\x4e\x9f\x2f\xa6\x7d\x4d\x2e\x97\x73\xb2\x39\x72\xf9\xc7\xa1\x02\x03\x67\xf3\x5d\x65\x8d\x4e\x2b\x14\x9d\xba\xb6\xf4\x6d\x3a\xbd\x74\xb1\x63\xf0\x86\x84\x16\xdb\x38\x35\x87\xef\x65\xa3\x5a\xe7\x45\x34\x31\x16\x25\x0c\x88\x6f\xa4\x9b\x97\x8c\x5d\xf6\x20\xf9\x15\xd1\x48\x6c\x0b\xbd\xc7\x73\x19\xe6\x3b\x5f\x53\xfa\xc3\xa9\xf0\x0e\x05\x1d\x77\xe7\xa3\xeb\x6e\xb4\xe8\x3b\xfe\x48\x7a\x11\xbd\xe3\xc7\xc5\xd8\xe6\xe2\xa1\xf6\x47\xbf\x4a\xdf\xbb\xb3\x71\xb3\x79\xdc\x77\xfe\xaf\x4f\xd7\x5a\x5b\x3c\xaa\x7d\xf3\x43\xb4\x60\x95\xd5\x9c\xeb\x7d\x1b\xfd\x32\x95\x2d\xdb\xcf\x4a\x34\x0f\x4f\x99\x6e\x23\x70\x30\xb2\xf9\x64\xc2\x3b\x9b\x98\x5d\x0f\x5a\x2a\xa3\x8f\xdb\x88\x6f\x29\x6a\x5d\x1d\xba\x85\xb1\x74\x2d\x7a\x6e\x75\x0d\xc9\x07\xb6\xff\x9c\x87\x17\x1e\x8c\x81\x0c\xc0\xa5\x52\x16\x2f\x13\x2a\x75\x7e\x6b\x4c\xa7\xba\x9e\xb9\xd5\xcc\x15\x92\x6d\x71\xce\x3b\x42\x34\x43\x36\x37\x1f\x8a\x6a\x5c\x1a\xee\x38\xb6\xf1\xcb\x81\xce\xec\x08\xe3\x21\x8d\xce\x0d\x2e\x2b\x56\x18\x38\x37\x2b\x34\xd9\xa6\x64\x18\xf5\x7e\xb9\xa7\x59\x3d\xe1\xb8\xf1\xd1\x3b\xb2\x2d\x93\x63\x36\x99\x64\x5c\x3a\xd1\xda\x3f\xbc\xc4\x74\xe8\x49\xd5\xd6\xdb\x41\x85\x26\x29\x87\xb6\xb5\xed\xf0\xf1\x63\x6c\x4d\x14\x3d\xf7\x02\xb7\x0e\xcd\x58\xfb\xa8\x3f\x4a\xef\x71\xa5\x8a\x64\xf5\x16\x76\x6b\xfe\xa6\xd9\x43\x0a\x0b\xba\xa4\xf5\x85\xf4\xa7\x25\x54\x77\xd8\x38\xdd\x77\x1b\xe9\x7b\xa4\xed\x74\xd8\xfa\xa0\x0a\x87\x75\xad\x7f\x95\x05\x45\xf2\x1b\xbe\x6a\x15\x7d\xd8\x27\x6a\x85\xce\xe5\xd6\xb8\x96\x63\x61\x0a\xda\xd3\xdb\x16\xb7\x56\xfb\x17\x6b\x87\x7e\x78\xde\x66\xea\xfd\x54\x27\xed\x89\x4d\xdb\x61\xcf\x52\x1d\x56\x73\xaa\xdd\xce\x7d\x8c\xee\x99\xcb\xd3\xda\x8b\x5d\x17\x33\x46\x9d\x34\x18\xab\x45\x0e\x94\xce\x09\xf4\xdc\xdb\x49\x24\x0f\x84\x30\x26\x62\xc6\xd7\xb4\x2e\x83\xd5\x2e\x3c\x3f\xcb\x7a\x79\xaf\xae\x33\xfa\xf7\xd4\xa7\x85\x1e\xec\x4c\x76\xac\xb1\x5c\xe8\x51\xde\x51\x16\xb4\xc9\x39\xc4\xce\xb4\x83\x3f\x37\x79\xf1\x7b\xa3\xe3\xed\xb1\xc7\xc6\x7b\x49\x6b\x7b\xb4\x35\x7d\xd8\xeb\x7d\x57\xfd\x56\x47\xaf\x76\x2f\x97\xe9\x6a\x03\x3a\x8e\x75\xcc\xb3\x5d\xa4\xaa\xf3\xfd\x43\x47\xb1\xe5\x52\x35\xc1\x37\x56\x1d\x65\x96\xb7\x54\x6f\x3c\xba\xd2\x39\xc4\xf4\x31\x63\x17\xbf\xfd\x73\x1d\x1e\x7f\x21\x79\x38\x9e\x64\x49\x11\xc9\xec\xed\x8c\x2d\x88\x99\x92\x13\xab\xcb\x3c\x75\x2d\x17\xda\x7a\x07\x74\x55\xd8\xd6\x6a\xea\x38\xd7\x74\xbe\xf2\x33\x35\x31\xb1\xba\xd9\xb9\x2d\x6d\x8f\x79\xaa\x51\x68\xa7\xc0\xa6\x29\xb6\x71\xda\xc3\x3a\xbe\x5c\xac\xb4\x95\x51\xeb\xd5\xd1\xf0\x79\x95\xb5\x92\xb2\x54\xe7\xc1\x4e\x79\xa3\x73\x8a\x65\x5d\xb3\x3b\x8f\xea\xea\xc8\x67\x76\x5e\xed\xd2\x55\xcb\x96\xab\xfc\x7e\xb1\x2b\x50\xc5\x93\xb1\x8f\xa8\x9f\x6f\x14\xe8\x79\xa7\xb6\x91\x5c\xef\x4d\x72\xd9\x66\x92\x89\x95\x8c\xc9\xce\x17\x35\x0f\xc8\x65\xc7\x74\xaa\xe7\x95\xb9\x9a\xb0\x39\xd6\xda\xf2\xca\x76\x82\x5d\x8f\x3c\x1e\xa9\x96\x99\xd7\x74\x45\xc4\x17\xeb\x64\x1b\xb8\x75\x79\x16\x44\xe9\xf2\x69\x15\x75\xcd\xdc\x69\xa7\x1f\xa0\x5a\xd6\x35\xf4\xca\x28\xfd\x4d\x8a\xc7\xbb\xe6\xbf\x5d\xaf\x73\x42\x3e\xa4\xeb\x48\x97\xa9\xda\x8c\x45\x1b\x99\x48\xd7\x49\x85\xb5\x0b\xf9\x58\x21\x53\x91\x91\x67\x6c\x6a\xa1\x72\xc2\x80\xc5\x8c\x29\xee\x57\x74\x15\xb8\xcd\x98\xf1\x42\x8d\xd4\x09\x69\x8c\xd9\xef\x31\xb4\x9a\x75\x81\x31\xc7\x70\x3b\x5f\xc5\x43\x2c\xc6\x59\xc8\x4b\xc7\x48\xa2\xeb\x88\x6d\x4a\xda\x3e\xc7\x90\xce\x83\x96\x4e\x65\x9e\xbe\x5a\x9d\x92\x26\x43\x0f\xec\x0f\xca\xe9\x78\xab\xb7\xb9\x66\x61\x48\x41\x87\xba\xd6\xc5\x2f\x96\x91\x49\x9d\x52\xea\x0d\xad\x2e\x01\x0b\x5a\x4a\xd4\x15\xda\x26\x78\x4f\x7f\x29\xac\x99\xd0\x66\xe8\xad\xfc\x57\x99\x4e\x78\xdb\x12\xef\x57\x17\xf6\xea\xa6\xb4\x0f\xf6\xc8\x3b\xb6\x4f\xaf\xad\xdd\xd3\x5d\x82\xb1\x19\xe7\x15\x6d\x06\xa6\x30\xa6\x32\x58\xa1\x4e\x70\x36\x63\xe6\xb7\xd4\x54\x26\xd8\x33\xe6\x36\x48\x5b\x71\xc6\x64\xc6\x96\x38\x5b\x9c\x94\x6f\x61\x12\x8b\x87\x2c\x16\x34\x97\xea\xd2\x71\xda\x95\xd8\xcb\xfd\x68\xe7\x70\x9b\x57\x6b\x3b\x42\xce\x74\xf8\x9a\x1d\x3a\x30\x34\x6a\x79\xfb\x19\x03\x8f\xbb\x96\xf1\x12\xed\x93\xb4\x6f\x34\xb9\x25\x3d\xe1\xc5\x63\x1f\x9b\xb4\xde\xb5\x1c\x0f\x7d\x72\xcf\x49\x4f\xba\x55\x28\x54\xfd\xe2\x4a\xc3\xe5\xad\x9a\xa1\xd2\xc7\xfa\x18\x99\xb7\x69\xfa\xed\xd9\x7d\xc9\xa4\xaa\x6d\xb3\x4f\x14\x63\xb3\x96\x2f\xbc\x3e\xf0\x33\x63\x9a\xe6\xb2\xa1\x23\x3e\x33\x66\x77\x5b\xae\x68\xac\x35\x63\xbe\x43\xd4\xd7\xce\x10\x66\x2c\xf0\xaa\xa9\xb0\xc2\x77\xa6\xe4\xf3\xc9\x65\x9a\x79\xaf\xce\xfd\x8b\xa3\xa3\xa5\x7d\x7b\x75\xcc\x76\xb4\x2b\x8a\x8e\x3d\xdc\x6e\x6f\x29\x78\xf0\x46\x72\x47\xdb\x44\x23\xf9\x47\x4b\x32\x8e\xf3\xe2\xb1\xc6\x7c\xed\xe3\xcd\xc2\xf1\x72\x4f\xce\xea\x6f\x6e\xf6\x8d\x77\xbb\xf2\xc8\x78\x4e\x73\x67\xac\xe7\xd1\x74\xb3\xc9\x2d\x7b\xa3\x06\xef\xb6\x30\x7f\xd8\x9a\x18\x6a\x52\x59\x6f\x99\xd1\xb6\x20\x60\x2f\x63\x52\x6f\xe7\x87\x0e\x89\x66\x4c\xcf\x75\x41\xec\x88\x66\xc6\x5c\xf7\xcb\x4e\x1d\x6b\xc9\x58\xb0\x88\x8a\xf0\xb4\x22\xc6\xa2\x17\xea\x87\xc9\x8d\x61\xda\x11\x8e\x76\xa7\xcd\xb5\x3b\x67\xfa\xec\x0a\xbe\x19\xf4\xa6\x3d\xce\xe5\xed\xaa\x6f\xc9\x4f\x5b\x1f\xd8\x14\x1c\x5c\x9d\xed\xd5\x92\x6d\x3c\xb1\xce\xbd\x60\x23\x2f\x1e\x7b\xd5\x65\xa8\xda\xf0\x21\x53\xfa\xfa\x60\xb3\xc9\x8d\xf7\xd2\xe3\x8e\xdd\xb2\x5c\xdf\xb4\x2d\x4d\x7e\xe7\x26\x9b\x61\xcd\x2f\x12\xc6\x6c\xd8\x60\xf7\xb8\x25\x2c\x56\xa2\x64\x8b\xfd\xf4\xd6\x55\xa1\x8c\xb1\xf9\x55\xf3\x8b\xf9\xd4\x18\x33\x73\x96\x96\x18\x71\x84\x31\xcf\xbf\xa4\x65\x46\x5d\x65\x2c\xfa\xa0\xdc\x2b\xb1\xe3\x8c\xa5\x5d\xd6\x72\x92\x4d\x67\xd1\x4b\xf9\xcc\xc7\x9b\x98\x77\xac\x0e\xd9\xea\x97\x10\x39\xb2\xf5\xdb\x92\xca\xbc\x45\xd9\x7b\x9b\x1b\xed\xd9\xa1\x49\xc5\xd3\x1b\x6f\x1b\x67\xd5\xdf\x59\x1f\xf1\xfd\xba\xd1\xd8\x6f\x3a\x45\xaf\x6b\x5e\x5b\x4a\x7d\x3f\xb7\x3a\xf1\x84\xa4\xcd\xe7\x06\xcb\x9c\xe7\xdb\x67\x3b\x2e\x69\x5c\x99\x35\xa9\x42\xce\x69\x7d\xb3\x78\xea\x8c\x35\x5d\x2e\x82\x2d\x7c\x09\x46\x39\xd1\xae\x53\x5b\xc7\x44\xbe\x66\x6c\x61\xb2\xe4\xae\x21\xc9\x8c\xd9\x48\x48\x9d\x17\x38\xc5\x58\xd0\x64\x29\xf9\xd1\xed\x8c\x2d\x1b\x2f\x7d\x73\xa2\x11\x63\xb9\xae\x4a\x1f\xa4\x46\xb0\xb4\xbc\xe3\x46\x0a\xc6\x47\x3b\xb6\xa7\x89\xb9\x1f\x8a\xb8\xdc\xe2\x17\x38\x6f\x99\xcb\x1a\xdf\xc6\x75\x2e\x83\x0e\xae\xa9\x1a\xf1\xe3\xa6\x99\xe1\xc7\xd6\x6d\x1e\x0f\xc3\xac\x9e\xd4\x9f\xdd\x58\x72\xb4\xce\xe9\xf0\xd7\xfd\x65\x17\xb7\xa8\xb8\x6d\xf8\xc1\x57\xb8\x6f\xdd\xcc\xc5\x7e\x0d\x97\x73\xf2\xf2\x0e\x2e\xd9\xd7\xa4\xbe\x7c\xdf\xf2\x3d\x5e\xf5\xcd\x92\xa9\x1f\x52\xfa\x78\x47\xb7\x98\xc6\xbb\x30\xa6\xf8\x65\xde\xb8\x21\xa1\x8c\x39\xec\x17\xbf\x30\xb4\x90\xb1\x28\xfd\x39\x5a\x23\x0d\x19\xcb\x99\x3d\x6f\xe5\xf8\xd5\x8c\x95\x3f\x5e\x98\x31\xbb\x3f\x7b\xb0\x69\xa6\xa6\xa8\xce\xb5\x8e\x57\xc5\xa2\x76\x13\xc2\x02\x9b\xbc\x62\x65\xa3\x62\x37\x0c\xf8\xa6\xbe\x44\xf9\x60\xda\x81\xe7\x5f\xed\xac\x05\xdf\x8e\x3e\xf8\xf5\xd8\xba\xc5\x07\x3e\xfa\xef\x1e\x5a\xf5\xd8\xfb\x4a\x7d\xf5\xa6\xf4\x55\xc3\x02\x14\xbe\x19\x95\x19\x66\xd9\x04\xe8\xfc\x78\xb4\xca\x2d\x69\x43\xf0\xb0\x46\xf5\x95\xd3\xa3\x9f\x07\x55\x34\x8f\x4f\xab\x0c\x0f\x0e\x16\x6a\x7e\x93\x24\xc8\x98\x96\xe9\xdc\x34\xbe\x92\x5f\x71\x48\x8a\xf2\xb4\xa2\xe1\xdf\x19\x5b\xdb\x38\x75\xac\xc0\x5b\xc6\xf6\x0c\x99\x1b\x30\xb9\x96\xb1\xc3\xed\x4a\x87\xd4\xb5\x3b\xbd\x0e\x05\x19\xa9\xf8\x3f\x6d\xdc\x54\x24\xe8\xbb\xae\x6a\xcd\x3b\xdb\x90\xe4\x7d\xe7\xaf\x3b\x1c\x93\x0e\xf4\xaf\xf3\x3e\xaf\x59\x7a\x30\xbc\xfe\x9d\xf9\xa1\x43\xcb\x85\x62\xc6\x7c\xd6\xdf\x9e\x93\x78\x30\xa6\xe4\xeb\xd0\x8d\x13\x62\xa3\xa2\x4a\x7e\x8c\x5e\xf3\x2c\x6a\x6a\x44\x60\xa3\x45\xf6\xd7\x30\xed\x08\xb3\xe6\xc1\x4b\x85\x82\x17\x46\xec\x6a\x99\x91\x90\xc3\x98\xee\xa1\x99\xb5\x43\x54\x19\xf3\xad\x15\x3b\x30\x64\x15\x63\x2b\xdf\x50\x1c\xb2\xe3\x75\x6f\x8c\x07\xce\xc4\x4e\x09\x1d\x19\xc7\xd8\x5f\xeb\x65\xce\xca\x6c\xef\x92\x79\x78\x5e\x63\xb8\xdb\xb9\xc6\x6f\xb7\x16\x59\x09\x6f\x50\x3e\x54\x5a\xc6\x0a\xd7\x3f\x54\xcf\xd8\x5e\x7c\xee\x49\xea\x75\x9f\xa4\x25\x2b\x2f\xbd\x0b\x3e\x74\x34\xda\x2f\x3b\xf2\xf3\x9b\xad\x07\xc2\xbb\x32\xce\x7c\x53\x28\x7b\x1c\xa2\x92\x7e\xe2\xc7\xeb\x55\x0e\x41\xd3\x53\x35\x1a\xbb\x32\xf3\x7d\xdf\x2e\x0d\x6d\x76\x4f\x05\xef\xc8\x94\xbb\x2d\xd7\x63\xfc\x18\x33\xe7\x9f\xb2\x67\x90\x0c\x63\xa1\x5f\xc9\xbe\x97\x70\xf1\xcf\x11\xce\xef\x3e\xd2\x80\x23\x18\x0f\x19\xcd\x78\x24\xac\xca\x26\x75\x5c\x52\x12\xb7\xb2\xbf\x5b\xfc\xe3\xaa\xd9\xde\xd5\xfd\xb2\x5f\xbe\x1e\x94\xbc\xe5\xec\x02\xaf\xbf\x1e\xdd\xad\xfb\x7a\xd6\xc7\xcf\x64\xff\x94\x8f\xb3\xf7\x2c\xf4\xd5\xaf\x0a\xfc\x2a\xb5\xfe\xb2\xcf\x9a\xd2\x35\xdf\xbf\xac\x79\xee\x35\xa4\x78\x6e\xe3\xa4\x95\xe6\x9e\x33\x56\xe9\x36\xe5\xa6\xcb\x2c\xbe\x9b\xa7\xde\x22\x92\xe0\xb1\xb8\x7a\x85\x78\x2b\x44\xbd\x60\xcc\xde\x42\x64\x57\xff\x58\xc6\x52\xb8\x78\x70\xb3\x15\xc9\x6b\xdc\xcf\x3f\x24\x79\xfe\x67\xc6\xf0\xd1\xfb\x1e\xcf\xe9\x5c\xa2\x3c\xc1\x54\x7a\x4f\x42\xf3\x2d\xeb\xda\x94\xf3\x09\xf7\xbf\x96\xc5\x5d\xac\xe2\xb7\xf7\xff\xf8\xfa\x83\xed\xee\xdb\xf6\xf0\x48\xe8\xcb\xa8\x0d\xcc\xb1\xdf\xb9\x97\xdf\x23\xd7\xb4\x3b\x8f\xd8\xaf\xd7\xe0\x91\x9b\xe5\xb8\x7f\x87\x4b\x53\xf9\xd2\x3a\x27\xab\x8d\x2b\x9a\x6f\x26\xe6\x3a\xf9\xac\xfb\xde\x52\x19\x53\x6c\xdf\xb0\xd6\xb4\xf5\x5d\xf0\x57\xc6\x96\x5c\xeb\x35\xbf\xfb\x39\x39\x39\xdc\x3c\xd8\x91\x7c\x21\xf1\xcf\x38\xa8\xb6\x98\xb1\xe9\x4d\xc2\xda\x47\xf7\x75\x4d\x51\x75\xd0\x3d\xb6\x26\xbe\xad\xc2\x2e\x32\xa8\x3a\x5c\xa5\xe9\x4d\xe4\xe5\xcc\xa1\x0e\x37\x1b\x3a\x8f\x0f\xca\xbb\x6e\x7c\xba\xe1\xc9\x8f\xbf\x73\x86\x9b\x88\xbe\x12\x6a\xac\x59\xb6\xcb\xcc\xf7\x96\x63\x73\x9f\xe4\x34\x0b\xa5\xb3\x6b\x9b\x5f\xc5\x2b\x99\x9f\x39\x12\xd3\xaa\x16\xf6\xd9\xbc\xb6\xda\xaa\x4d\x34\x70\xb8\x85\xd6\xf6\x79\x6d\x55\xbe\x81\x8c\x45\x72\xeb\x40\x15\x5e\xc6\x6e\x4f\xfa\xa7\xff\xad\xbd\x4b\xf2\xf4\x61\xc6\x66\x3c\x11\xde\xbc\xc1\xa0\xeb\x99\x9a\xb3\x4a\xbf\xa5\xef\x3b\x96\xdb\x9d\x76\xe9\xef\x67\xd1\x76\x26\xd4\x2b\x68\xb5\xfd\xf6\xd6\xb4\x8d\xd6\xd1\x7d\x0d\xa5\x5b\x56\xbd\xc8\x8b\x2d\xd3\xc9\x6c\xad\x68\x79\x11\xaa\xa4\x23\xf1\xf5\x61\x6b\x71\xc0\x7d\x5d\x93\xa7\x25\x6d\xfa\x3e\x6f\xf4\xfb\xdd\x32\x6c\xcb\xf5\xde\xae\xfb\xea\xd2\xf4\xf6\x72\x57\x35\xfd\x2d\x27\x15\xdb\xab\x5d\x25\x19\xa3\x5a\x37\x63\x74\x0b\x94\xb1\x66\xbc\xad\xf0\xca\x83\x9e\x7f\x66\x14\x63\xdd\x71\xfb\x46\x3d\xc6\xf8\x6f\x00\xe4\x9c\x61\xee\x6a\xa9\x0b\x67\x45\xac\xea\xea\x6d\x3b\xd4\x68\x97\x87\x6f\xc7\xe3\x80\x00\x87\xbf\xec\xa4\x3b\xe4\x56\x7e\x77\xd7\x33\x4a\x6c\xcf\x38\x66\xe7\xb9\x47\x6b\x63\xbb\xdc\x27\x35\xcf\x4c\x75\x8f\x8e\xb9\xed\xc5\x4e\xa9\x2a\x75\x9d\xd3\x3b\x36\x58\xbc\x52\xbd\xf7\xf1\x71\x47\xb6\x95\x92\xda\x86\xda\x79\x1d\xfb\x2c\x1d\xd4\x6a\x6f\x6f\xe8\x1c\x62\xa6\xce\xd8\xe6\xe7\x5c\x5c\x8c\x7a\x5a\x5f\x4b\xcf\xbf\xc4\x75\x5c\xdc\x2c\x4f\x72\x55\x1f\xc6\xc4\x0b\x47\x6d\x4c\x9c\xc8\x2e\xa9\xfe\x98\x9b\xeb\xbb\xbf\xeb\xa4\x75\xa5\x7a\xb8\xb3\x50\x97\xa4\xd7\x1d\x83\xfe\x56\x0e\x9d\xf5\xc9\x0e\x26\xc3\x0d\x87\x74\xee\xaa\xb0\x31\x8b\xd0\xbc\xd7\x69\x7a\xfe\xa1\x65\x6f\x55\xeb\xce\xb1\xdf\x72\x2d\xd7\x29\xd9\x74\xb6\x74\x26\xeb\x5f\x50\x70\xee\x4a\xea\x12\xd2\x14\x5b\xf4\xa6\xc3\xa8\x6b\xb3\xe2\x21\x39\xa5\x8f\x27\xbb\x96\x2a\xcf\x60\xec\xea\xcc\x7f\xc6\x61\x35\x36\x24\x77\xb4\x91\xcc\x3d\x4d\x32\xf5\x0d\x63\xd3\x53\x46\xb4\x86\x68\xb2\x2e\xd5\xa4\x19\x1e\x6e\xd3\x98\xaf\xb9\xf6\x02\x1b\x9b\x93\x6c\xac\x9b\x98\x42\xb3\x29\x30\x88\xb4\x53\x5e\xa5\x3f\xa2\x6b\x47\xee\x0b\x8d\x16\xcd\xc7\x5d\xc1\x5b\x7b\x69\x57\xa8\xac\xe8\x32\xb9\x78\x4f\x47\x5c\x61\x59\x57\xf8\x3b\x6b\x4d\x13\xb9\xcb\x5d\xcf\xbb\x62\x55\x04\x64\x7b\x31\x7f\x26\xb8\xb0\x4e\xba\x81\x31\x76\x62\x8e\x2e\x63\x2d\x88\x0c\x7a\xa0\x47\xcf\xdb\x3f\x8d\x64\xe1\x53\x92\xf1\xab\x48\x86\xd8\x33\x36\x25\x89\xef\x87\xa7\x15\x63\x8a\x31\x13\xff\xb6\xd3\x64\x35\x46\x3f\x66\xbb\x9b\xf5\x67\x1b\x1d\xb7\x4a\x6a\x19\x5b\x30\xe7\xc0\x8d\xb2\x7a\xba\x1a\xcc\x30\xe5\xef\x45\x1d\xea\xf7\xd9\xa2\x35\x62\xf2\x63\x94\xa3\xd9\xd4\xed\xf5\xf2\xcf\xe4\xb7\xb1\xb1\xe7\xae\xc8\xbf\x5d\x14\xc9\x84\x9e\x26\xc8\xb7\x2f\x08\x60\x79\x4d\x55\xf3\x4f\xca\x88\xb3\x67\x2c\x57\x42\x0b\xef\x09\xe2\x7d\xa0\x9e\x71\x88\xe9\x46\x2d\x85\x89\xdf\x19\x73\xd0\x30\xc9\x9d\xf7\x94\x7d\x74\xec\xe5\x1c\xaa\x0e\x4c\xd7\x2e\x26\x72\xa5\xb9\x7b\x57\xb0\x85\x73\x61\xbd\xeb\x95\xce\xbd\x46\xb2\x07\xb6\xfb\x5c\xed\x1c\xaa\x27\x5c\x73\x27\xa8\xb3\xa3\x46\x53\xac\xa1\x28\x44\xa2\xf3\x9a\x5a\x69\x9b\xb2\xe7\x8d\xaf\x6d\xea\x9b\xdb\x8c\xbd\x66\x3e\x11\xd1\x9a\xd8\xb6\xc2\xb3\xf6\x7a\xa9\x8e\x7d\x5b\xdd\x12\xc7\xb3\xa3\x75\xce\xb5\x17\xbb\xbc\x3b\xb4\x45\xef\x55\xfb\x05\x97\x49\x8c\xf5\xce\x5e\x84\xf7\x15\x25\x74\x17\x79\x0d\x99\xcf\x98\x86\x9f\xdc\x79\xc1\xd1\x8c\xd9\xf4\xd2\x90\x9e\xb4\x97\x31\x37\x05\x83\xf9\x73\x5a\x58\xbd\xdb\x46\x7b\x3d\xf5\x29\x5d\x6f\x9d\x75\x42\xdf\xd8\x1e\xef\xac\xb7\x39\x94\xef\xeb\x75\xe4\x67\x5e\x4a\x56\xdf\xf0\x6e\x62\x74\xef\x8e\x99\x9a\x1d\xcd\x2f\xa2\x46\xb7\xed\xd4\xc8\x6c\x15\x09\x12\x7f\x35\x4f\x7b\x52\xab\x75\x90\xc9\xed\x52\x5d\x9f\xd6\x67\xfe\xcf\xce\xfd\x65\x20\xd6\x26\xe5\x57\x70\xe8\x94\xd1\xc2\xb6\xad\xde\x35\xbb\x72\x8c\xc7\xb7\xeb\x7a\xcc\x63\x6c\xc2\x16\x45\x87\x3e\xa7\x18\x9b\x2f\x25\x33\x97\x6f\x36\x63\x06\x31\x8b\x16\x09\xa9\x30\xe6\x5c\xa4\x18\x39\xc1\x96\x31\x6f\x7e\xbd\x01\x73\x3f\xb3\x56\xbf\xde\x56\xf7\xd5\xbd\x7f\xe6\xa7\xb4\x1c\x07\xaf\x6c\x0c\x4a\xed\xe0\x33\x77\x3e\x18\x14\xdb\xd6\xf6\xb7\xa1\xc4\x43\xbb\xb4\xd4\x76\x21\xed\xba\x26\xd3\x64\x85\x6f\xfb\xb4\x43\x9a\x2f\x44\xaf\xbe\x2f\xa0\xbf\xa4\xc5\x3c\x4a\xf6\xd2\x54\x23\xb9\x96\x27\xe1\xed\x87\x5e\x9a\x64\xb4\x9e\x0e\xaa\xdd\x25\x64\xa6\xd6\xa6\xe9\xbf\xb1\x4a\xc9\xfc\x50\xdb\x35\x9f\x41\x8c\x0d\xfb\x3c\x7f\x7c\xf7\x7c\xc8\x0a\xcf\x37\xe5\xab\x61\xcc\x6c\x8c\xcc\x09\x41\x3b\xc6\x3c\x55\x64\xfb\x8e\xbb\xc7\x58\xa8\x8a\xc6\xb9\x39\xda\x8c\x45\x94\x9b\x7e\x50\x1f\xd4\xe5\xe2\xa7\xb8\x24\xcc\x75\x56\x47\xaa\x2b\xdf\x8a\x84\xa8\xd4\xb6\x83\x56\x17\x0f\xea\xa5\x8b\xb4\x9e\x30\x3c\xf4\x6c\xdf\x0a\xe1\x36\x25\xdd\x85\x8d\x22\xe9\x4b\x6b\xd3\x0d\x63\x1b\x1f\x2f\x6d\xbc\x32\xc5\x74\x53\xd3\xd6\x54\xad\x63\xa6\xe6\x1e\xcd\x8d\x71\x07\x77\xfa\x59\x7e\x6e\x79\x1d\xb9\x61\xe3\x00\xeb\xaa\xd6\xea\x90\x03\xc5\x01\xb6\x85\x6d\x86\x01\xbb\x19\x13\xdb\x27\xd3\xb7\x5f\x1e\x63\x8b\x9e\x48\x3e\xe1\xeb\xcd\x98\xb5\x89\xb4\x8d\xc0\x0f\xc6\x02\x8d\x65\x04\xc7\x79\x30\x96\x78\x44\xfe\xee\xf4\x01\x8c\xa5\x24\x1b\xf0\xab\xbc\xec\x72\x8d\x34\x75\x95\x74\xfd\xd8\xbe\x77\xc9\x5f\x4b\xcf\x27\xf5\x6f\x0d\xb4\xdd\x71\xe0\x6a\xae\x44\xf3\x5a\xc3\xf6\x4f\xdb\x8a\xa2\xbe\x1c\x30\x14\xfd\xde\x91\x2f\x7d\x23\xc8\x7c\x4b\x43\xc2\xca\x3e\x47\x87\xda\x84\x35\x9a\x67\x39\x6c\x6b\xb1\x97\x6a\xba\x9e\x56\x50\xe1\xe6\x28\xde\x7c\x3b\x51\xbd\x68\xba\xe3\xac\xd6\xf9\x11\x17\x73\x0e\x38\x1d\x6f\xfd\x10\x32\x8c\x31\xb1\x1a\x69\xff\x7e\x11\x8c\xa9\x6e\x92\x88\xe4\x3b\xcf\x98\xeb\x21\x49\x79\xc1\x8b\x8c\x85\x5f\x9c\xb7\x7c\xd4\xdf\x8c\x65\xd8\x2f\x2c\x9d\xf2\x85\xb1\x9c\xf3\xda\xfc\xca\xb5\x5d\x31\xe9\x76\xb6\x3b\x5d\x07\xb7\x05\x06\xd8\xc5\xbf\xcf\x1c\xd4\x1c\xe5\x38\xed\xa0\xd2\xda\xe7\xbc\x78\xec\x41\xb6\xa5\xfd\xd7\xd0\x75\x4f\x8e\x4a\x38\x98\x7e\xdf\xbb\x66\xce\xb6\xa7\xce\xb3\x1b\x0a\x72\x1e\x95\x2a\xb8\xa5\x34\x0d\xce\xf0\x5d\xbd\xd9\x4d\xa6\x39\x3b\x79\x49\xc6\x83\xc5\xe1\x2d\x37\x62\xf8\xd2\xc0\xa3\xae\x55\x37\xe2\x3b\x63\x33\x1e\xcf\x2b\xe9\xff\x98\x31\xdd\xd6\x39\x3b\xf8\xae\x32\xb6\x64\xeb\xcc\x01\xc3\x3c\x18\x4b\xde\x3c\xf3\x8d\x50\x1d\x63\xab\xd7\xce\xeb\x14\xc9\x65\xac\x7c\x8c\xd2\x65\xd9\x05\x5d\x05\x25\x6a\x66\x43\x9c\x2b\x5a\x15\xa3\x5a\x42\x73\xf3\x27\x34\xec\x73\xeb\x75\xa0\xcf\x56\xb1\x8f\xa2\x96\x1e\x1f\x3e\xef\xbc\x7b\xaa\x8f\x4b\xe6\xe7\x1f\x9b\x77\x6f\x6e\xf5\x78\xf1\xf5\x6d\x39\x14\x8d\xf3\x96\xfd\xa1\x53\xe8\xbf\xb2\xc8\x27\xa0\x71\xec\xca\xf2\xa5\x33\x7d\xd7\x35\x9d\x5b\xe6\x19\x6f\xef\xb7\xa3\xb9\x23\x31\x35\x7a\xa9\x6f\x5e\xeb\xa4\xa8\x85\x8c\x49\x18\xce\x5b\x3a\xc8\x8b\x31\xe3\xc1\xe2\xef\x86\x64\x33\x16\x30\x71\xca\x43\xbe\xfd\x8c\xad\x98\x2a\xb6\x7c\x98\x2b\x63\x55\x09\xd3\x72\x47\x9e\x64\x6c\xef\xb9\x05\xd3\xe7\xe9\x77\x75\xed\xde\xa1\x3b\xd5\xe6\x78\x4b\x67\xbe\x9f\xe7\x99\x82\xa7\x5f\x03\xbc\x4a\xf7\x59\x1e\x2e\x3d\xdb\xe8\xb9\xf8\xcd\x8c\x63\x13\xd7\x7f\x0e\x74\xfe\xb8\x77\xb7\x75\x4e\x75\x68\xda\x97\x39\x55\x7b\x97\x0d\x0d\x9d\xff\x3d\xbb\xf8\x75\xbc\x43\xd8\xa8\x86\xb5\x79\xfa\x91\xb5\x61\xea\x8d\xed\x99\xfb\xc2\xb6\x04\xaf\x68\x7e\x91\x34\x33\xf8\x7a\xf0\x90\x96\x8e\x68\x49\xc6\xe6\x9b\xcf\x7a\x3c\x70\x15\x63\x76\x0b\xa6\x96\x0e\xae\x60\x2c\x6a\x3b\xc5\x1b\x25\x05\x5c\x3e\xe4\x66\x2f\xe4\x63\xbf\x2a\x3c\x8b\x7f\xe2\x7b\xb6\xf9\xaf\x44\xa5\x18\x83\xa8\xef\x33\x4f\x35\x5b\xbd\xcc\x1d\xb6\xab\xa1\xf0\x47\xae\xfd\x19\xb5\x8c\x90\x15\x4f\x5e\x08\x9f\x1f\x96\xe4\xb4\x7c\xef\x87\x83\x7b\x83\x63\xba\x96\x06\x7f\x89\xaa\x6c\x0a\xdf\x90\xf6\xf2\xfb\xed\xa2\x57\xa1\x0d\x49\x02\x0d\xdf\x73\x8e\x06\xde\x4d\x2c\x69\xfa\xbc\x74\x57\x80\x6d\x5c\x47\xcb\xa0\x44\x6d\xdf\x77\xb1\x8a\xad\x0b\x22\x0f\x33\xa6\x78\x66\x9a\xec\x80\x58\xc6\xdc\x3d\xfa\x4f\xe8\x7e\xde\xf2\xdb\xf4\xfc\x1d\xfe\xbf\xe7\x85\xbe\xde\xe2\xf7\x07\xe8\xf0\x66\xb2\x32\x8f\x65\xe7\x5f\x6f\x6a\x9c\x62\xb8\x25\x46\x61\x59\xe8\x73\x81\x84\xd8\x5d\x85\x8b\x55\xee\x6e\x78\xa7\x7c\x70\xa8\xe7\x8a\x83\x06\xf5\x32\x9b\x73\x3d\x47\x6c\x89\xf8\x3e\xbd\x64\xb9\x67\x61\xd9\xfc\x06\xb5\xfc\x69\x4b\xf2\x0a\xa7\x35\x45\xa7\x6f\x58\x5c\x59\x70\xa4\xf9\x42\x92\x8f\xfb\x95\xec\xec\x56\xe1\xa8\x09\x6e\x03\xb2\x3e\xb5\x7e\x0d\xd1\x61\x4c\x2f\x72\x02\xeb\x7b\x8d\x31\xba\x0d\xcd\x58\x59\x3a\xc9\xf3\xd5\x24\x3f\x20\xd6\xf5\x47\x19\x63\x83\xc3\x01\xfe\xea\x60\x46\x0b\x60\xc1\x90\xad\x7d\xdb\x2f\x99\x38\x79\x1c\x8b\x88\x6a\x6c\x8f\x0e\x5f\xf9\xd4\x7e\xea\x8f\x69\x57\x5b\x8a\xc5\xcc\xa3\x5f\xef\xfa\x31\xb4\x20\x86\x97\x7f\xb1\x15\x3b\xb6\xa0\x29\x7a\xe9\x13\x9b\xa0\xbd\x6a\x2d\x73\xe3\x62\x6c\x17\x6c\xad\x6c\x1d\x12\x69\x6b\x2b\xb0\xe1\x69\x6b\x63\xb0\xb4\xad\x5d\xa9\x58\xdb\x66\xbf\x19\x8c\xd9\x7e\xa7\xe7\x2d\xd7\x21\x79\x50\x8d\x64\x1d\x22\x1a\x1b\xe7\x90\x7f\xb9\xd9\xcc\x18\x1c\x06\xd8\x37\x94\x5d\x9e\xff\x68\xf6\x99\xdc\x3d\x9d\xa1\xa6\xa7\x2d\xb5\xfd\x56\xb6\x15\x86\x4d\x0d\xfe\x6c\xbf\xac\xd5\xac\x6a\x6e\x8c\x96\xfe\xc6\x96\xbe\x3f\x9c\x13\x44\x74\x4f\x35\xe8\xb4\x84\x46\xb8\xe8\x5f\x7d\x32\xbe\x55\x25\x64\x93\xa1\xc4\x0d\xcb\xd6\xcf\x01\x97\x0c\x2b\x4e\x7f\x6b\x7b\xe0\xe5\x67\xa4\x79\xf8\x48\xbb\xc9\xe2\x06\x63\xbe\x6a\xc5\xf6\x3d\x6e\x82\x8c\x05\x16\xd1\x73\xd7\x3f\x23\x49\xcc\xaa\x1d\xc2\x5c\x1e\xa4\x90\xe4\x9e\x20\x92\x6b\x95\xd8\x8f\x05\x97\xc5\x27\x27\x04\x75\xc5\x99\x7e\xd1\x3e\xb2\xf8\x6a\x47\x4b\x40\x88\x7d\x91\xcd\xe2\x0e\x8f\xbc\xd3\xae\xcb\x0c\x54\xdb\xcf\x9d\xd9\xea\xa1\xa9\x71\xbb\x3d\xbb\xed\xf3\x62\x71\xb5\x9c\x8e\x65\xed\x4d\xf6\xaa\x6a\x25\x9f\xef\x76\x28\xd8\xaa\xaa\x7b\x3c\xdd\xda\x11\x6f\x9d\xad\x21\xfd\xd7\xad\x8e\xa3\x96\x67\x35\xe2\xae\x4c\xe8\xec\x6f\x3e\x98\xb1\x15\x3b\xb9\x75\xf8\x40\xb2\x0b\x6f\x80\x3c\xe0\xfc\xfd\xc1\xd9\x24\xcb\xb2\x18\x13\x7e\x33\xb0\x26\x5d\x93\xb1\x05\xed\x62\x4a\x81\x33\x99\x8a\x89\x94\x9c\x8b\x63\x61\x57\x88\xa7\x92\x8e\x9c\xa5\x68\x97\x60\xf2\x7b\xa3\x49\x06\x83\x3b\x37\x56\x66\x98\xfd\xa5\x21\xdd\x19\x74\xb5\xc3\x5c\x41\x39\xb8\x73\x43\x6b\xbd\xf1\x46\x85\x96\x2e\xdb\xce\x0f\xda\xe3\xe5\xea\xbb\xee\x77\x85\xa8\x64\xca\x2b\x7f\x19\xd6\x65\xa4\x36\x4a\xce\xf2\xc5\x8b\xae\x95\x4a\xc7\x18\xab\x3e\x4b\xcf\xff\x8c\x7a\x59\xcb\x8d\xff\x58\x20\xc9\x75\x26\x24\x93\xaa\x49\x46\x14\x30\x36\xbf\x4c\xf8\xb2\x87\x25\x3b\x6a\x60\x3a\xcf\xd4\x7a\x32\xd3\x74\x09\x5d\x94\x63\xa2\xcb\xf8\x22\x5f\x29\x5d\xd2\x8d\xea\xfa\xba\x52\x5b\x25\x57\xdd\xad\xeb\xe0\xf6\x7e\xea\x0e\xca\xde\x5d\x41\x57\xfc\xb5\x16\xc8\xab\x74\x1d\x78\x77\x4b\xf5\xc2\xa2\xe9\x6c\x41\xd7\x03\xf9\x59\x32\x87\xd8\x35\x16\x23\xb9\x5f\x4a\x8d\x31\xd6\x28\xae\xcf\xd8\x23\xbc\x01\xfa\xfe\x33\x17\x87\xc6\x91\xdc\x50\x46\x72\x39\x3f\x87\x37\xe8\x43\xd2\x4b\x97\xb1\xb9\x25\x82\x23\xec\x73\x18\xd3\x56\x9e\xf2\xd4\x74\x05\x3b\x6a\x37\x76\xee\x0e\xfd\xd7\x6c\x9b\x5f\x2f\xc9\x7c\xad\x7b\xac\x20\xa1\x6a\xbe\xa8\x9a\x04\xf3\x5e\x6d\xbb\x30\x58\xd1\x88\x39\x6c\xff\xb6\xf0\xa4\x9c\x20\x33\x3c\x7b\x51\x56\x63\x41\x27\xf3\x7f\xf4\x4d\xe6\xb1\x4c\x35\xdb\xd5\xec\x24\x75\x53\xba\x3b\x12\x7e\x3a\xab\x0f\x4f\x0f\x7f\xc6\x81\xf5\x24\x57\x4a\x90\x0c\xdf\x47\xd2\x31\x9c\xa4\x9d\x39\x63\x33\x15\x86\x86\x9b\x0d\x64\x4c\xa5\x43\x38\x5e\x3f\x0c\x4f\x40\x47\xb4\xea\x18\x73\x9d\x31\x2d\x4a\x53\x80\xbd\x0a\xd1\x9e\xf5\xff\xf1\xf5\x25\x60\x35\x76\xdd\xdf\xcb\x90\x06\x95\x34\x48\x73\x11\x0d\x2a\x0d\x9a\xe7\x79\x9e\x93\x4a\x33\x89\x94\x44\xa1\x24\x45\x99\x32\x24\x85\x42\x42\x23\x4a\x99\x49\x85\x90\x4c\x99\x87\x48\x42\xc6\x24\x53\x34\x9c\xb3\xbe\xeb\xec\x7d\x9f\x07\xcf\xf3\xfe\xbf\xf7\xba\x9e\xeb\xe7\xf4\xd6\x59\xeb\xde\x7b\xdf\x7b\xfd\xf6\x5a\x6b\xaf\xf5\xd3\x62\x32\xf6\xad\x5e\xaf\xae\x67\xba\x12\x5f\xe4\xe9\x68\xa4\x1a\x7d\xc7\xe6\xf2\x55\x5a\x35\x06\xaa\x78\xae\x5e\x7f\xaa\xbf\xee\x37\xec\x6c\x7d\xa5\xe1\xaa\x2b\x8b\x7d\x5d\x1b\xa6\x54\x72\xbe\xdd\x46\x9b\x33\x2f\x02\xab\x4d\x49\x7f\x21\xad\x83\x66\x8a\x02\x9f\x11\xed\xed\xed\x4c\xa4\x8a\x10\xbd\x34\xdd\xce\x4c\xb2\x42\x9c\xf1\x20\x30\xc5\x70\x3c\x3e\xf6\xdf\x91\xf0\xc6\xd1\x13\x6d\xbc\xbe\x6e\xb5\xf5\x6b\x65\xe7\xbb\xd4\x1c\xb7\x0c\x53\x67\x3b\xd8\xbd\x7e\x34\x22\x32\x9a\xad\x64\xfd\xf1\xe7\xb7\x59\x1d\x6c\xb6\xa5\xef\xd0\xa8\x80\xd7\x1f\x17\x5a\xcd\x18\x52\x08\xf8\xf1\xb8\xd0\xe6\xfc\x90\x6c\x50\xe0\x8d\x99\x76\xbc\x43\x91\x01\xeb\x2e\xee\xb1\x93\x1d\x7a\xeb\x7b\xe9\xb4\x97\xc3\x70\xd6\x48\x5f\xab\xdf\x7a\xfc\xc3\x43\x0c\x8d\x05\x05\x7b\x11\x9d\x35\x2d\x62\xc7\xdd\x47\xf4\x57\x76\x28\x98\xa0\x86\x18\xb4\x6e\xc6\x48\x83\x57\x58\x15\xf4\x29\x36\xd9\x25\x9d\x3d\xe0\x9b\xbf\xa5\x2a\x30\x8f\x3d\xd2\xed\xf6\x49\xf1\x39\xad\xac\x93\x0e\xc6\x6d\x4b\xe6\x59\xb0\xee\xd9\xac\x1b\x70\x8d\x8e\x1f\x14\xb6\x76\x1a\x9c\x10\xfe\xae\xf3\x96\x9d\xc8\xa0\xc8\x2c\x8d\xd6\x17\x0e\xa5\x83\x0e\x91\x27\x9b\xe2\x1d\xd7\x0d\xbe\x0e\x15\x39\x63\xe4\x84\x43\x7a\x33\x9f\xd6\xec\x77\xde\x3b\x54\x32\x83\xb3\x2b\xa4\x9b\x92\xbe\x4b\x8a\xd2\x46\x17\x47\xa6\xfd\xf6\x87\x78\x68\x1b\x76\x88\xdd\x44\x0c\xcb\xb1\xe9\x9a\x90\x86\x38\x6b\x9a\xcf\x7a\x83\x1a\xdc\x14\xb6\x23\xca\xda\xcd\x9b\x9d\x19\xe0\x91\x2d\x15\x5e\xc9\xda\xea\xd1\x7e\x42\x31\x76\x06\x4b\xd3\x71\xf4\xf3\x27\xf1\xc2\x2c\x63\xdb\xae\xfe\x98\xb8\x9e\x4f\x3f\xec\xd4\x07\x8c\xe6\x49\x3e\x3c\xeb\xf8\x72\x40\x67\xbe\x44\xf3\x75\xe7\xf3\x03\x4d\xd1\xf5\x5c\x7f\x58\x75\xbe\xfb\x86\xc1\x8b\xe1\x1f\x4a\xdb\xdd\xbb\x86\x66\xcd\x0c\xe7\x8c\x87\xd1\x4e\x8e\x1e\x5c\x1e\x62\x39\x7c\x9a\xab\xb0\x0e\xe2\xf4\xc3\xd3\x6e\x89\xe5\x21\x46\x2f\x35\xb7\x54\x68\x47\x9c\xbf\xc7\x4d\x55\x4f\x09\x3d\x67\x1f\x8c\x8c\xf4\x1e\xc5\x16\x9b\x79\x6e\xdd\xed\x39\x4d\x43\xaf\xbd\x3d\x8e\xbf\x58\x7c\x6f\xb0\xdf\xe9\x4a\x97\x51\x4a\xc6\xd0\x62\xfb\xc5\xbf\x5c\x93\x56\xbc\x50\x75\x7a\xfe\xeb\x5c\xe2\xb5\xeb\xb7\xdc\x16\xf7\xab\x2c\xde\x5e\x77\xd6\x33\xb4\xff\xd2\xc2\xc4\x23\xe7\xbd\x12\x06\xce\xce\xeb\xa8\xf8\xec\x75\x77\xd0\x2b\x2a\xb8\x68\xa5\x8f\xfe\x60\x77\xf8\x7c\x8e\x1e\xfa\xe4\xbe\xbc\x2a\x5b\xaf\x91\x77\x0e\xa2\xed\x43\x1d\x1d\xa1\x8d\x88\xc1\x8b\x75\x1e\x88\x8d\x46\x8c\x7f\x6d\x9c\x20\xff\x0c\x71\xc9\x74\xc7\x1a\xdd\x56\x9c\x1e\xa7\x1c\x6a\xe5\x9d\xc5\xda\x16\x7e\x62\xd5\x50\xec\xab\x21\x25\x5f\xa9\x93\x3b\x96\x1b\x0f\xf4\x38\xb5\xf5\x9e\x5d\x55\xdc\xe3\xe0\xec\xd5\x77\x66\x25\xeb\xae\xab\x87\xcd\x4f\x87\x95\x22\x0d\x83\xde\x95\xbf\x1c\x52\x16\x1e\x3b\xea\x73\xbf\x7f\x7a\xe2\xd4\xb2\xc0\xe9\x91\x03\xe3\xe2\xf3\x8a\x92\xa6\x1f\x1d\xf8\x3c\xcf\x71\x7b\x8c\xff\xf7\xc1\xc4\x28\x7d\xc4\x61\x23\xf4\x86\x71\xf4\xd0\xcc\xd7\x78\xc4\x37\x02\xd1\x2d\x70\xaa\xb0\xd0\x20\xe2\xac\xb5\x53\xd3\x45\x9f\x22\xa6\x8c\xd4\xbd\x25\x33\x02\x31\xe3\xb0\x8d\x97\xf6\x11\x8c\x5d\x76\x22\x20\xde\xeb\x22\x4b\x70\x0e\x7f\x6a\xc6\xa2\xda\x41\x3e\x7f\xcb\x13\xdb\x32\xcb\xb9\x7e\xb1\x67\xbd\x1e\x3b\x7e\x38\xaf\x87\x4b\x52\xbe\xbb\xfb\x02\xb3\x42\x8e\xc9\xf9\x7f\xfc\x99\xb9\xf2\x47\x19\x4f\xa0\xd5\xaf\x82\x14\x91\x3d\x35\x81\x7b\xfa\x4f\x2c\x7a\xbd\xed\xc2\xcc\xc5\x03\xf1\x71\xef\x36\xdd\x99\x39\x34\x38\x6a\x5e\x18\xe2\xc8\xf9\x5a\xa4\x3e\xd9\xd4\x07\x9a\x1b\xf8\xb6\x23\x7a\x2d\x57\xbb\x3d\xfa\x14\xe2\x02\x77\xd5\x6d\x63\x36\x23\x66\x65\x6a\xd4\x4a\x46\x21\x6e\xee\x33\x99\xa7\x5e\x89\xc5\xeb\x4f\x7b\x7e\x76\x0f\x1d\xb2\x8f\x9b\x9e\xc8\x9b\x62\xd1\xbf\x20\xb0\xe3\x84\x71\x8e\xf9\x27\x75\x8f\x77\x5f\x8e\xee\xa8\xbd\xb6\xcf\x7f\xc2\x37\x9b\x6d\xe7\x8f\x89\xcd\x5c\xfe\xfd\xfb\xa6\x5d\x25\x93\x43\x77\xf6\xcd\x5e\xab\x53\xb8\x2f\xf4\xe3\x2f\xd1\x34\x9e\x5c\x95\x70\x81\x7e\xd1\xa5\xdf\xd7\x7b\x47\x6c\xef\x7f\xb7\x28\x78\xd5\xe4\x08\xd6\xc0\xf5\xf9\x65\x88\x82\x37\x35\xa4\x39\x7a\x18\x5e\x56\x15\xe3\xdd\x80\x18\x92\x31\xc1\x80\xaf\x1b\x31\x35\x81\xee\xb3\xf9\xb5\x8a\x2b\x85\x02\x11\x0f\x94\x6a\xaf\x9c\x30\x17\x1f\x17\x67\x3b\x14\x38\xdd\x1c\x3c\xb6\x7a\x5c\x74\xf1\xca\x57\xaf\xf5\xa3\x3e\x1d\x56\xdf\x7b\xe8\x8a\x74\xa8\xfc\xa7\x7b\xe5\xb5\x07\x8b\xa2\xa2\x7b\x13\x8b\x97\xff\xc3\xc3\xe6\xcd\xab\xf8\xb1\x71\x63\x62\x56\x65\x4c\xfa\xcf\xc9\x99\x96\x2b\x4f\xc7\xf8\xfc\x5a\x90\x7a\x2c\x45\x3e\x26\xb4\x3f\x6e\xc9\xc4\xa4\xda\x79\x0d\x03\xfe\xf1\x29\x88\x0a\x86\xaa\xee\x23\x44\x11\xed\x15\x15\xa7\xf2\x64\x20\xce\x9d\x3c\xec\x3d\xf1\x43\x64\x53\x3d\xaa\x18\x1e\x70\xfe\xb3\xfc\x64\x21\x49\xc4\xcb\xf5\xc6\x5e\xa6\x13\xdb\xd7\x1e\x79\x14\xa0\x90\xa2\x59\x1e\xb8\x25\x79\xc3\x9d\xca\xa4\x35\x2a\x19\x97\xdf\x2b\x9d\x74\x4f\xd3\xcd\x58\xd3\x73\xa2\x7c\x5e\xca\xc8\x15\x2e\x5f\xd7\x15\x4a\x26\x65\xaf\xb0\xfd\xde\x9e\xa3\xb0\x48\x30\x25\xea\xa7\x64\xe6\xcd\x78\x9f\x65\x25\xbf\x96\xa7\x6e\x88\x9b\xb8\x24\xa9\x3f\x3f\x49\x61\x7e\x40\xe2\xcb\x81\x99\xf1\xd1\x88\x13\x07\x26\x2a\x8c\xe8\x41\xa4\x37\x77\x10\xd3\x18\xb9\xe5\xe2\x4c\x3c\x84\x19\x97\xae\x05\x10\x02\xf0\xd1\xba\xa7\x49\x73\xa7\xca\xc2\x7a\xdb\x76\x59\xf7\xe9\x51\x43\xab\xc6\x5f\xbf\x9c\x2a\xbb\x63\x6f\xe4\x83\x66\x87\x97\xe9\x07\x04\x22\x4d\x8e\xb7\x7c\xf5\x2d\xf0\x9e\x65\x59\x5a\xfa\x63\xd4\x66\x9f\xc8\x67\xbb\xef\xf4\x7d\xca\xfc\x10\x59\x99\xf7\xfa\x57\x78\x6a\x65\xc4\xce\x2d\x3b\xfa\x73\x13\x1f\x86\x8f\xdb\x64\x3f\x10\xba\x60\x28\xbc\x71\x8d\xf7\xe0\xa8\x79\x6d\x88\x7a\x0e\x7c\x62\x1c\x39\x73\x2b\xa9\xbc\x9d\xb6\x7f\xfb\x21\xde\x90\x1b\x64\xef\x18\xfb\xdb\xd2\x8a\xa8\x2a\x23\xa3\x76\x80\x87\xc5\x72\x8a\x73\x8f\x8c\x9f\xd3\x9f\x9d\x14\x9c\x7c\xda\xb7\xff\xa7\xcc\xad\xe4\xac\x16\x8f\x75\x6f\xc6\xf5\x95\xaf\xe2\xf3\x56\xbc\xf9\xfc\x17\xdf\xf2\x12\x9f\x67\x0d\xfb\xfa\xf9\x96\x4c\xf1\xc9\x3a\x1e\x33\xe0\x12\x77\xc8\x6f\x61\x65\xfd\x40\x7d\x4c\x83\xdf\xd4\x03\xbc\x83\x4b\x67\xbf\xf7\x5b\xb3\x5b\x6d\x70\x28\x7c\xf1\xef\x71\x58\xc7\xc4\x61\x4e\xea\x32\x3c\x88\xdc\xf4\xfa\xc0\xd8\xdf\x2b\xf9\x14\x0f\x6e\x46\x54\x39\x2c\x59\xb1\x3e\x12\xc7\x3a\xb9\x99\x1f\x8e\x3a\x3f\x74\x69\x41\x4b\xc8\x7d\x1f\xf6\x60\x57\xb9\x6e\xd4\x2a\xc7\xf6\xc1\x31\xaf\x3f\xce\xf3\xb5\x13\x19\x68\x1e\xf4\x0e\xef\xb7\x4f\x78\x29\x3e\xb8\x3b\xec\x80\x63\xe8\xed\xba\xc1\x87\xa1\xfb\x1c\x3a\xae\xac\x1e\xda\x10\x30\xdb\x49\xe6\xdc\xd9\xa1\xf3\xfe\xd7\x9d\x5c\x8f\xc5\xb3\xf4\x7c\x82\x11\x63\x19\x3d\x2a\x7c\x29\x3e\x21\x3c\xa0\x87\xe1\x41\x2d\x89\x14\x2b\x98\x9b\xd5\x39\xfd\x88\x93\x0f\x8b\x89\x2f\x79\x84\x07\x1c\x3d\x74\x47\x86\x4c\x65\xa7\x45\x6b\x38\x66\x7a\x9e\x61\x0b\xe5\xfc\xf0\x50\x74\xdc\xc8\xca\x3b\xd9\xe3\xb3\xcb\x5a\x88\x15\xf1\xe6\xa7\x4f\x33\x37\xde\x62\x16\xfc\xdd\x8f\x2d\x60\xbf\xd2\xec\xd3\xab\x0f\x6c\x5e\xfb\x27\xe6\x35\x8f\x78\xd8\x12\xf6\xcb\x2d\x2c\x6e\x9c\x61\xeb\xdb\x99\xfc\x8e\x53\xde\xd0\xfc\x93\x07\xde\x5c\x49\xb1\x8a\xe1\x1d\x39\xaa\x14\x53\x5b\x11\x95\xa7\x0b\xab\xcd\x9d\x8b\x6c\xbb\x47\xaa\x23\xfc\x2d\xd1\x2f\x7c\xbe\x51\xa0\x5b\x08\xca\xa7\x1b\x9a\x67\xd8\xdf\x64\xf7\x14\x16\x58\xf9\x59\xfa\xb3\xeb\xea\x3f\xdb\xe8\x9b\xb6\xb2\x8b\xba\xbe\xd8\x0a\x1a\x07\xa2\x26\xfb\x96\x69\xc3\xb4\x4f\xf8\x0e\x0b\xa6\x56\xeb\x4d\xf8\xd9\x82\x67\x34\x0e\xe9\x9e\x79\xdf\x86\xe5\x1a\x1d\x88\x75\xe4\x4e\x17\x6b\xd1\xaf\xb3\x7f\xf2\xc0\xa3\xee\x8c\x1f\x84\xb1\xff\x29\x0c\x2f\x8a\xbc\x8d\x28\x7c\x14\x20\x44\x1f\xd1\xaa\x54\x41\xcf\xe3\x07\x3e\x08\x8a\x9f\xf2\xc5\x49\x17\x2f\x2d\xec\x9f\xea\x65\x6b\x84\x7b\xd7\x36\xe8\x09\x9b\x8b\xe3\x8e\xe2\x28\x3d\x6b\x13\x21\x9c\x57\xe7\x65\xe0\x64\xb0\x12\x33\x1e\x49\x4c\x0b\x98\xd6\x89\xcd\x7d\xf6\xda\xdd\xba\xe1\x88\xf8\x55\x2d\x47\xeb\x14\x22\xa2\xd2\x19\x6e\x3c\xea\xc9\x45\x86\x07\x76\x32\xf1\x30\x66\x3d\x64\x30\xeb\x73\x2e\xd3\xe9\x3f\xc4\x0b\x51\x71\x3d\xef\x3d\xef\x34\x44\x93\x4d\xe3\x12\x9c\x2f\x21\x7a\x2f\x9a\xb0\xd0\x3e\x1d\x71\x4e\xac\x8a\xbd\x95\x2a\x62\xe2\x4b\x15\x05\xd3\x49\x88\xd9\xd5\x6a\xe3\x0d\x6b\xb1\x7f\x8f\xa5\xda\xb9\x69\x42\xf8\xeb\x58\xb8\xda\x5e\xdd\x39\xd8\x7b\xad\x54\xfd\x90\x4e\x3d\x0e\xbc\x98\xaf\xfe\x56\xfb\x31\xe2\x60\xba\xca\xf0\x4e\x66\xfc\xeb\xc6\x52\xdc\x2b\xce\xf0\xb0\xe1\x14\x17\xf6\x52\x0c\x8c\xa5\x68\x3d\x9e\xa2\x9d\x17\xe2\x54\x59\xc1\x4c\x1b\x39\x44\xc7\x29\xe3\x17\x5a\x94\x21\x06\x4e\x92\x39\x66\x16\x8d\x38\x4f\x44\xfe\x9d\xd1\x17\xc4\x64\x25\xc5\xc5\x06\xb3\x11\xd7\xed\x9d\x20\xa9\xfb\x03\x71\xe7\x97\x09\x7c\xba\xf6\x88\x95\x9a\xca\xa7\xa7\x4a\x20\xd6\x0b\x4f\xf4\xd4\x6c\x44\x6c\xb5\x99\xd0\xc5\xf9\x56\x47\x1d\x52\xe7\x21\xdd\x4c\xff\x4f\x1e\xa2\xfb\xc1\x78\x83\x60\x1c\xa2\x7d\x98\x5d\xa6\x54\x3b\xa2\xfb\x5e\x5f\x59\x95\x2c\x44\x77\xb1\x38\x39\x7d\x09\x44\xa7\xa1\xcd\x8f\x6d\xb6\xe2\x45\xdb\xcc\xa3\x8e\x2e\xef\x71\xa3\xc5\xd5\x27\xd7\x3c\x79\xf0\x94\xd9\x51\x96\xa2\xc7\x48\x44\x13\x60\x8f\xb4\xfd\xd9\x5d\x69\xcc\x66\x8f\xb1\x2d\x7e\x3a\xdc\xd4\x91\x2d\x68\x17\x76\x23\xcc\x7c\x21\x8b\x65\xff\xab\x69\x97\xf9\x2e\xb6\xb1\xad\xfb\x99\xcd\x16\x17\xd8\x81\x36\x8a\x1c\x3d\xec\xb3\x99\x3a\x56\xe6\x7f\xf2\x10\x63\x59\x23\x5f\xe1\xef\x88\x0e\xaf\x6c\x52\xc7\x7f\x46\xf4\x3e\xe2\xbd\x46\xfd\x25\xa2\xf7\xaa\x79\x0b\x8d\x15\x91\xe5\x1a\xb4\xd1\xc4\x3e\x05\x77\xdb\x15\x1c\xfd\xe0\xfe\x09\x67\x59\x66\x3c\xb5\xf5\xbe\x8d\x7b\xcd\xc5\x87\x06\x3d\xb3\x7f\x4a\x98\xbe\x63\x2d\x74\xb9\xf1\xd2\xd9\x7c\x3f\xcb\xc3\x5d\xe5\xae\xbb\x65\x38\x2b\xd4\x3d\xb4\x19\x2c\xdd\x59\xd7\x9d\x1e\x9f\x73\xb6\x3a\xcd\xea\x76\x7c\x77\xec\xa7\x55\x3a\xdb\xce\xb6\xf6\x37\x1f\x03\x30\x7c\xfd\x27\x0f\x31\x1b\xd2\x8f\x16\xf6\x47\xf4\xf0\x34\x7b\x26\xe9\x82\xe8\xff\xd5\x63\x96\xfa\x1c\x44\xbf\x1d\x73\x34\x4d\xe7\xe3\x63\xf7\xc3\x1b\x52\x9d\x9e\x61\xa8\xc3\xdc\xa3\x8f\x7c\x56\xb3\xbf\x5a\x0d\x74\x5a\x07\xbc\x45\x2f\x0b\xcb\xa1\x55\x7e\xee\x9f\x64\x2c\x1a\x87\x2a\x7d\x37\x3d\x65\x59\xb2\x87\x1e\xf8\xd4\x5f\x1f\x6b\x33\x82\x35\xdc\xfb\x67\xe3\x13\x9b\x22\xd6\x6c\x8f\xa0\x13\x43\xb6\x77\x58\xbb\xdc\x12\x0e\xc7\xdb\x5d\x62\x75\x38\x97\xfd\xa1\x87\x9e\xbe\x3b\x07\xd5\x9e\xe9\xe9\xf1\x56\x20\xda\xd4\xea\x2c\x12\x5a\x82\xe8\x27\x67\xf8\x58\x62\x3a\x62\x50\x9d\xd3\xd7\xc9\xeb\x10\x03\x35\x23\x6d\x2d\x23\x31\xc7\xfb\xf4\xda\x48\x8f\xeb\x38\xdc\x69\xf2\x09\xb5\x80\x22\xf6\x16\xeb\xf6\xb7\xd3\x43\xa3\x58\x5f\x2d\x13\x07\x07\x03\xa7\x77\x75\x5a\x0b\x0f\x89\x06\x5e\xbb\x5b\x61\x3b\x7d\xc8\x22\x30\xa5\x69\x9b\xbd\xe6\x50\xee\x0c\xc7\xba\xe9\xf6\x41\x2c\xf0\x35\xa9\xb6\x70\x8c\x64\xb9\x78\x3d\x29\xf9\xee\xf4\x9c\x95\xe5\x51\xc3\xd1\xc3\xf4\x04\x1d\x0f\x2d\x52\x7f\x52\x2b\x5e\x3b\x9b\x9f\x07\xd1\xf1\xbb\xe6\x1b\xc1\x2d\x88\x33\x6d\xf4\x0a\xc4\x85\x11\x23\xc7\x3a\xac\x50\xf1\x46\x0c\x5e\x13\x5c\x6d\x35\x0a\xdd\xa6\x0f\xcb\x92\xf2\x7d\xc2\xce\x77\x29\x38\xbe\x33\x6c\x32\x5b\xd8\xa6\xb1\xe7\xe1\xec\xc6\x6f\xb2\xd6\x6f\x06\x15\x23\x16\x3e\x55\xb7\x0b\x1b\x0c\x8e\x18\xd7\x32\xcb\xe1\xdc\xe0\xe9\xb0\x69\x75\x9a\x4e\x9f\x86\xc4\x82\xbb\x6b\xba\x9d\xdf\x0d\x6d\x0a\xe8\x2a\x73\x75\xf9\xc6\xe2\xf5\x5b\x50\xd4\xef\x72\x9a\x95\xe5\x29\xfc\x7b\x5d\xf0\x77\x6a\x5c\x21\xf6\x5f\x7e\xca\x39\x8e\xdd\xf7\x2e\x50\x5b\x3a\xfa\x08\x62\x54\x84\xa6\xc7\xd8\x3c\xc4\x38\x07\xcb\x3c\xe5\xa5\x88\xd1\x37\x67\xc8\x59\xed\xc7\x31\x81\x87\xd2\xf4\x67\x34\xb1\xfa\xdc\x95\x4f\x34\x44\x6f\x64\x4d\xb3\xe3\xf9\x65\xb7\x40\xf9\xe5\x4d\x87\xcc\xfe\x9b\x71\x92\xd7\xbb\x5c\x16\x0e\x48\xc4\xde\x39\x67\xec\xe6\x37\xf0\x3a\x7a\xdb\x11\x65\x8f\xb5\x83\xf3\x66\xf3\x97\x96\x79\xa6\x0d\x62\x98\xed\x6e\x09\xaf\x5b\x43\x29\x33\x85\x77\xd8\x7a\x7e\x61\xf1\x4e\x0f\xf9\xcd\x0b\xe5\xc2\x35\xc5\x87\x1f\x47\xb4\x74\x9d\xe8\x37\x6a\x2e\x62\x58\xab\xc2\x16\xde\x04\xc4\x44\x5f\x95\x94\x31\xfb\x10\x57\x88\x4d\x3b\x22\x77\x03\x71\xe9\x72\x4f\x7e\x8b\x66\xf6\xc2\xc8\x11\x49\x0e\x11\xc3\x87\x7a\xbc\xde\x9c\x78\xb8\x38\xe2\xe3\x4d\xe7\x89\x3f\xb5\x56\x6c\xbd\x6e\xef\x19\xf8\xf3\xc8\x0a\xcd\xd3\x6e\x3e\x7d\xbf\x8a\x97\x95\x55\x76\xfb\x7d\xeb\xbf\x9a\xb0\x6b\xcf\xa2\x19\x7a\x03\x79\xb1\x76\xdb\xcd\x66\xac\x1d\xf4\x9a\xb3\x34\x67\x93\xff\x8f\x21\xc1\xb0\x81\x0d\xf3\x66\x78\x0d\xad\x9d\x39\x9b\xa3\x87\x26\xd1\xe3\x1f\xfb\xaf\x20\xe8\xc2\xf9\x3c\x9f\xb1\xbf\xeb\x5a\x81\xd4\xbd\xca\xbf\x3a\x79\xb6\x58\x16\xe2\xd6\x70\x1b\x5b\x23\xa9\x2f\x17\x97\xb4\x47\x6d\x8d\xf1\x7e\x80\xb3\x7c\xf6\xaf\x58\xb3\xaa\x69\x63\xc0\x8c\xde\xf6\xdc\x8e\x8a\xaa\xd0\x9c\x1f\xf1\xd9\x6d\x85\xed\x11\x22\x3f\x85\x32\x05\xb6\x4e\x8d\xf8\xfe\x2b\x75\xf9\xc3\xf5\x3c\x91\x93\xfb\x9b\x16\xcf\x5f\x75\x29\xf2\xe8\x40\x46\x5c\xdf\x8a\xd8\x88\x33\x83\x49\x73\xc4\x93\x4b\x23\x84\x86\x04\xc2\xeb\x10\xe1\xe8\x04\xb2\x7f\x68\x8b\x08\x2a\x72\x30\xbc\x8e\xca\x5f\xcd\xf8\x21\xf6\x1e\xa6\x78\xea\xa2\x40\x2a\xc0\x8f\x5d\xa7\xd4\x75\x3b\x34\x46\xdc\x8c\xd9\x3f\xc5\x9f\x77\xf6\xf4\xbd\xfd\x6b\x97\x65\xc5\x6d\x3d\x93\x59\x98\x9a\x71\x7f\x61\xd1\xe3\x94\x9b\x29\xa3\xbf\xf1\xef\x1c\xbf\xc4\x67\xe9\xad\x1f\xf7\xb3\x53\x16\xb7\x26\xc6\xff\xdc\x9b\x71\x61\x61\xc9\xa2\x92\x7e\xc9\x65\x6b\xe2\x13\x16\x74\x0e\x88\x26\xac\x88\x55\x5a\xc0\x33\x28\x3e\x2f\x65\xbe\xd3\x7c\xa7\xc1\x3d\xb3\xcf\x21\x4a\x55\x49\x07\x73\xe4\x38\x31\xfc\x8b\x1b\x8f\xe1\xfa\x63\xce\x91\x9b\xbc\x7d\xd5\xb4\xf2\xcd\xa3\xd2\xc7\xba\x93\x7e\xca\x1c\x3d\x72\xe1\x7a\xaa\x8b\xb6\x8f\x4d\xea\xb7\xba\xbb\x4b\xbf\xa7\x57\xcd\xea\x3c\x25\x70\x5d\x2a\xdb\x30\xe4\x66\x95\x4d\xdf\xfc\x35\xdd\xa1\x67\x8b\xab\x7f\x8d\x5f\xf1\x39\x6c\xd9\xf6\xb6\x7e\xa7\x25\x7b\xc2\xf6\x6d\x49\x19\x30\x59\x38\x2c\x64\x53\x36\x0e\x9a\x47\xbf\x0e\x2e\x5d\x73\x65\x10\x23\x26\xcd\xb4\x5e\xf5\x7d\x68\x7f\xd0\x23\x44\x8d\x2c\x2a\x6f\x1e\x93\x0f\x43\xef\x5a\x72\xed\x5f\x9f\x5e\x1b\xc9\xcb\x78\x62\xd9\x4d\xf2\x86\x1a\x47\xf5\xaf\x93\x72\xe6\x79\xb1\x33\xea\xcb\x19\xab\x10\x23\xd6\x3c\xf5\x77\x77\xe2\x4b\x66\xcf\xf2\x6a\x79\xfb\xec\x92\x7c\xfc\x2b\x97\xb0\x67\x05\xfd\xaf\x16\xf0\xb8\x8d\x6f\x29\x1c\xa8\x9e\xa7\xe1\xde\x79\xf6\xe5\xa0\x6d\x94\xa3\x47\xfd\x91\xc3\x83\x5d\xe1\xc6\x9e\x43\xa5\x67\x87\xfc\x82\xf3\x3d\xd2\x8a\x67\xb2\x46\x4d\x4f\xf4\xb2\x2a\x48\x65\xc9\xfb\x35\xfe\xe6\x41\xeb\x19\x3d\x4e\x92\x9b\xfb\xbf\x16\x3f\x23\x77\x46\xdb\x36\xf5\x12\x7e\xd8\x58\x48\xed\xca\x6e\x1f\xc4\x91\x05\x00\x19\xe9\x88\xa6\xad\x2a\x21\x21\xae\xec\xa4\xe8\x42\x27\x01\x97\x25\xac\x23\x95\xe6\x3e\x23\xad\xbd\x58\x66\x1f\x62\xfd\xfc\x2c\xe5\xbf\x65\xb2\x5c\x3d\x4c\x2c\x15\x9f\x57\xb1\x8a\x5c\x65\xac\x36\xb4\xba\xb1\x8e\xba\xb4\x5a\xd7\x37\xd5\xb3\xee\x3a\xdf\xb3\xb9\x78\x66\x27\x8b\xe5\xa4\x63\x53\x5e\xfb\x98\x6d\x6f\x77\x10\x31\x29\x94\xe1\xc3\xe4\x26\x34\x2b\xf6\x29\xa9\x91\xf2\x7c\xe5\x57\x92\xaf\x73\xe1\x11\xe3\x87\x60\xec\x7f\x3a\xc3\x07\x16\xc8\x23\x9a\x88\xcb\x37\xf8\x25\x63\x6a\x68\xf6\xb4\x87\x0e\x83\x38\x7e\xeb\x24\xf3\x23\x16\x9b\xd9\xbd\x67\xf2\x2d\x58\x26\x2e\xec\x57\xef\x24\x2d\x65\x0c\x66\xe2\x51\x0c\xd3\x8b\x9c\x66\xf8\xb5\x16\xd7\x4e\x3d\xa1\xff\xf9\xa5\x34\x5a\xe8\xf5\x4d\x7b\xf8\x30\x1e\x63\xb4\x8f\x19\xa6\x5f\x0b\x47\x83\x69\x59\x88\xbb\xad\x18\x7f\x14\xf1\x53\xbe\x4c\xfb\x46\x6e\x70\x5f\x59\xfc\x77\x3c\x6a\x83\x35\xc5\x79\x7e\x88\x90\x01\x10\x3a\x80\xa8\xff\x7d\xdc\x41\x77\xc0\x6f\x33\xb4\x55\x0d\x6c\xc7\xe2\xad\x34\x11\xad\x1c\x33\x17\xac\x2f\x5c\x3d\xb5\xd3\x50\x11\xab\xeb\x04\xb5\x4b\xa7\x7d\xc0\xca\x17\x0b\x74\xf6\xe8\xde\x47\xc4\x57\xea\xbb\xb8\x7c\x43\xad\xad\xaf\x12\x51\x7a\xab\xc6\xc4\xb7\x0b\x10\x15\xe5\x30\xe3\x2a\xa9\x14\xfe\xe6\x53\x2f\xb9\x31\x7e\x75\x2f\xc3\x43\x6f\xff\x1d\x8f\x4a\x62\xf8\x40\x00\x1f\x45\xcf\x19\x88\x1a\xe7\x85\x26\x3b\x1c\x43\xf4\xf2\x50\x70\xb4\x7c\x8d\x18\xbf\x5c\xb9\xc9\x78\x1b\xe2\x5a\xc3\x49\xdb\xf5\xad\x10\x77\x6f\x9e\xcc\xab\x67\x8e\xec\x93\x8b\x54\xdf\xe9\xc8\x22\xde\xbf\xa3\x66\x34\x55\x06\xf1\x8b\xbb\xf2\xfd\x29\xbe\x1c\x7d\x64\x02\x27\xe6\x70\x70\xcc\x8c\x5e\xdb\x4f\x67\xff\xe4\x81\xd5\x4c\x1c\x2a\x8f\x89\x43\xa5\x32\x1d\xb0\x66\x5f\xa0\xe8\x9c\x46\xd1\x61\x31\xa2\xba\xa5\x40\xac\xa9\x27\xa2\xed\x7d\x31\x01\xc3\x32\xc4\x90\x57\x92\x0b\xf4\x3b\x11\x93\x7c\x65\xb5\xf5\x14\x11\xd7\xfd\x90\x0f\xd6\x4e\x43\x2c\x1c\x54\xf0\xd6\x78\x8d\x58\x55\x25\xf7\x59\x23\x03\xf1\x92\xa6\xa2\xe8\x14\x1d\xc4\x76\x2b\xf9\x4e\xf5\x6d\x88\x3f\x76\xca\x74\xdf\xf7\x67\x78\xa0\x0a\xc5\x9d\xe1\x14\x57\x15\x53\x8c\x3d\x44\xd1\xff\x2e\x45\x4b\xa6\x53\x99\xb1\x2a\xa2\xe2\xcc\x91\xc5\xd3\x12\x10\x8d\x53\x85\x46\xe9\x98\x22\x7a\xcf\x11\x19\xad\x65\x81\x18\x3e\x34\x56\x56\x4b\x00\x71\xf1\x15\xf1\x42\xf5\xb7\x88\x19\x82\xe2\xd6\x6a\x7e\x88\xb9\x1f\x24\x76\xa8\x5c\x46\x2c\x91\x1d\x37\x6d\xf2\x3d\xc4\x93\x8a\xe3\x5e\x4c\xac\x44\xbc\xac\x21\x96\xc3\xf9\x56\x37\xa6\xde\xd5\xdf\xf6\x5f\xc1\xc7\x68\xd6\xc8\xc9\x88\x3a\xab\x6c\xf6\x0b\x2d\x45\x34\x11\xf2\x76\x18\x27\x85\x68\xee\x10\xf3\x5c\x69\x18\xa2\x99\xc0\x86\xe3\x53\xf4\x11\x0d\x3f\xd4\xa8\xe9\x44\x20\x4e\x0b\x7a\xb8\x46\x37\x1b\x71\xda\x72\x74\xe5\xa0\x76\x3c\xbe\x52\x0d\xf9\x18\xa1\x1d\x87\x55\xea\xbb\xda\x7f\x6a\x07\x62\xa5\xfa\xec\x3b\xc3\x74\x6e\xe1\x16\x0d\xb7\xcb\xc7\x74\x02\xb0\x5a\xed\x79\x83\x8f\xce\x74\xac\x57\x2d\xfa\x1f\x7a\xa4\xeb\x1e\xe3\xa0\xd2\x1e\x03\xcd\x91\xaf\x10\x75\x36\x9a\xae\x12\x54\x41\xb4\xd0\xf5\xd8\x38\xde\x0d\xd1\x62\xeb\xdc\x04\xa5\x24\x44\x8b\xbc\x0d\x52\x5a\xe5\x88\x26\xc3\x8f\x58\xe9\xf3\x22\x1a\xc8\xb4\xcd\x36\x54\x42\xd4\x17\x44\x9d\x69\xaa\xfd\x2e\xba\x6a\x98\xa3\xb9\xa3\x4b\x5f\xcf\x1e\xbd\x74\xa4\x1e\x7a\xe9\xed\xc4\xe9\xda\xe5\xd7\x13\xa6\x8d\xc2\x88\xa9\xfd\xe7\xbd\xf5\x5f\xa1\x8f\x4e\xe2\x59\x61\xbd\x5f\xb8\x4d\x83\xf4\xfb\x72\x14\x61\xf8\x58\x0f\x45\x4d\x92\xe7\xa0\x32\x4a\xf7\xe2\xa8\x2d\xbf\x79\x99\x4d\xbd\xcb\x3b\xe9\xe5\x88\xb6\x7d\x51\xf3\x26\x7d\x41\xb4\x9a\xb8\xae\x5e\x3b\x1a\xd1\xf4\xe9\x91\x41\xa3\x77\x88\x86\x73\x9e\x5d\x33\xa9\x41\x9c\x76\x10\x6d\xf5\xc6\x7c\x99\x35\x6d\x2a\xea\xea\x05\x3c\xcf\xd2\x3f\xc1\x46\x83\x84\xdb\x99\x06\xab\x91\xd7\xc0\xf0\xd2\x3b\xc3\x05\x28\xa1\x7f\xb4\x7e\x99\x81\x2a\xfa\xeb\xb8\x1e\x4f\x31\xf8\x86\x51\xda\x8b\xfe\xe4\x85\x74\x3e\x04\x5e\x68\x14\x72\x50\x23\x4e\x73\x2d\x6f\x1b\xa2\xa9\xae\x81\xa1\x70\x30\xa2\xc3\x72\x87\x08\x99\x32\x44\x27\xab\x48\x5e\xb5\x49\x88\xb6\x27\xd7\xfc\xd0\xe7\xcc\x93\x7d\xed\x57\xb3\x1c\x44\xa3\x9e\x17\xdf\x2d\x83\xd8\xd2\x06\x4b\xd8\x1d\x46\x47\xdf\x7d\x30\x5c\xc2\xde\x67\xfa\xf5\xa1\xb5\xf1\x41\x76\xa2\xc5\x40\xcb\x69\x93\x50\xf6\x0e\xf3\xac\xc6\x21\x93\x2a\x76\x93\xa9\xf7\x89\x64\x93\x04\xe4\x35\x5c\x70\x78\x91\xa9\x34\xaa\xe8\xef\xfd\x73\x5d\xe8\x7a\x70\x50\x78\x99\x32\xe1\x23\xda\xcd\xaa\xa1\xa3\xee\x23\xda\x87\x6b\x97\x0b\x6d\x46\xf4\xb8\x60\x3d\x47\xfa\x31\xa2\xbb\xf4\xcc\x25\x53\x9c\x10\x1d\xf6\xac\x36\x37\xbc\x8b\x68\xd9\x74\x74\xa7\x8d\x3d\xa2\x49\xda\xbb\xe7\x76\xd8\x6b\x6e\xb2\x84\xf5\xce\x7e\xfe\xb3\xef\x66\x13\x58\x77\x1c\x6d\xb9\xbc\xb8\xd1\xd8\xe2\x27\x5b\xd1\xee\xdd\xf1\x0c\xcb\xf1\xec\x24\xab\x5b\x87\xdb\x2d\xe7\xb2\xcb\x2d\xcc\x4a\x43\x2d\x86\xd8\xdd\x26\xfa\x7f\xce\x87\x46\x31\x59\x9f\x6d\x0a\x3b\x87\x1f\x41\x34\x97\x55\x58\x31\x72\x2b\xa2\xb7\xa7\x9a\xe7\xe8\xcd\x88\x33\x9f\x1a\xb9\x49\x5e\x47\xf4\x53\xf0\xfd\xaa\xf5\x0b\xd1\xbd\x22\xad\xdd\x7a\x24\x5e\xb6\xb5\x38\xa6\xe4\x72\x04\xf7\x99\xf5\xf7\xe9\x7a\xdc\x7b\xfe\xdc\x72\x70\xe8\xac\x6f\xed\x8d\x4a\x1b\xd1\xa1\x8f\x3e\x4f\x1b\x54\x6d\x8f\xb1\x4c\xbd\x82\x8e\xae\xb1\x7b\xcc\xca\x75\x97\x2b\x6b\x71\x58\xc6\x7a\xe2\x12\x5c\xbc\xc6\x3e\x9d\xed\x68\x77\xb5\x70\x94\xfd\x0c\xf6\x66\xab\x1f\xbf\x79\xd0\xf0\x68\x39\xa2\x87\xc6\x7c\x41\x37\x0e\x3a\xbf\xe4\x51\xe6\xe0\xac\x26\x59\x55\x1e\x27\xc4\xd8\xa1\x29\xf7\xc6\xbe\x40\x9c\xa3\xec\x52\xaa\xa5\x8a\xf7\xa6\xa7\x25\xc5\x39\x29\xf6\xb9\x3b\x2f\xab\x19\x11\xb0\xeb\xdd\x74\xdb\x7d\x5f\x0f\x46\xde\x6b\xde\xe5\x34\x7f\xd0\x61\x56\xe4\xa9\x46\x97\xb6\xc1\x2b\xe1\xe2\x07\xd3\xdd\x87\x0f\x59\x04\x67\x14\x77\xb9\x67\x0e\x3d\xf6\xbf\x57\xb0\xc5\xdd\x98\x35\xdb\xeb\x47\xee\x80\xfb\x49\xd6\x71\xf7\xf8\xec\xa7\xee\x51\xec\x09\x8e\xbf\x7e\xf3\x20\x89\x6e\x51\x53\x0e\x9a\x9c\xa5\xfb\x3c\x97\x87\xa4\x08\x50\x5c\x1b\x2c\xb3\x7a\xd4\x20\xe2\x6a\x73\x53\x1d\x95\x95\x9d\xf3\x63\xb5\x22\x2e\xfa\x7b\xb4\x84\x84\x56\x17\x58\x2e\xe0\x39\xfd\xd6\xdf\xa3\xed\xdd\xb2\xc2\x92\x92\x80\xec\x7e\xd9\x25\xf5\x3b\x57\x06\x4d\x1e\x30\x8b\x37\xcd\xc9\x0e\xca\x1e\x94\x9d\xbb\x66\xdd\xe5\xa0\xf6\xc1\x97\x11\x9d\xab\x3a\x82\xb6\x0e\x65\xcd\x3c\x9f\xa6\x17\x98\xcb\x92\x9e\xbe\x2a\xf9\x7c\xc0\x7e\x56\x9e\xe7\x0b\x8e\x1e\x32\xf7\x09\x3f\x66\x78\x47\xe0\x2a\x8a\xc9\xaa\x14\xb9\xe7\x70\xea\x0f\x78\x29\x54\xba\x51\xc3\x48\xe1\x69\x63\x72\xfe\x0a\xef\x21\x2f\xe5\x9d\xe2\x2b\x73\x57\xaa\x24\x57\x64\x08\x2e\xf9\x76\xf1\x59\x56\x4d\xd2\xd6\x45\xdf\x7f\x5a\xac\xee\x59\xa4\xb6\xf0\xd1\xaf\xb7\xc9\x17\xe2\x4f\xc4\x5d\x1e\x50\x5f\x78\x39\xf6\x55\xac\xf1\xa0\xc2\x3c\x91\x18\xa1\x79\x9d\x43\x7c\xe1\x57\xe7\x5e\x99\xf3\x73\x28\x77\xa6\x73\x54\x5e\xd4\x1c\x96\x99\x6f\x17\xe2\xe8\xce\x91\xa3\xff\xe4\x41\x49\x0c\xff\xd8\x41\x6a\xcb\xb1\x83\x6b\x49\x25\x82\xce\xc6\x0b\xa4\x52\xc1\x15\xcb\x2b\xa3\xe4\x1e\x89\x88\xef\x3f\x72\x4e\xc4\x9e\xdf\x32\x67\xc9\xa6\xea\x98\x45\x31\x31\xfc\x11\x51\x95\x1f\xcf\xb4\x2c\x5e\x1e\xd0\x5c\xf2\xa0\xff\xee\x22\xd9\xc0\x49\x85\xb7\x07\x9e\xc5\x64\x05\xd4\xe4\xf6\x0c\xb6\x44\x5e\x0a\xdc\xbd\xa1\x68\xc8\x27\xe4\x71\xe0\xf3\x4c\xa1\xa1\xdb\x01\x5d\x01\x5d\x2b\xa7\xb3\xfc\x7c\x25\x67\x98\xa5\xb6\xb2\x1a\xdd\xbf\x23\xd2\x0e\x43\x88\x73\xf7\xff\xc5\x83\x3c\x4e\x92\xfc\xa0\x17\xc7\x5b\x48\x6d\xac\x2b\x77\x1f\x29\x70\xf0\x70\xfd\x4b\x4b\xc1\xe7\x00\xd9\xc2\xcf\xe5\x8d\x2e\xa8\xa5\x47\x9c\x78\xb4\x6c\xde\x28\xcf\xc7\xee\xcb\x1f\x18\x1e\x3d\x18\x98\x61\x1f\x79\x57\x78\x28\x22\xd0\xcd\xc1\xf3\xa2\xcd\xd0\x1b\xbf\x47\x4e\x7c\xc7\x45\x59\xc6\x3e\x22\xce\x76\x95\x0e\xac\xb5\x9e\xc2\xce\x0f\x8a\x03\x59\xed\xae\x56\xce\xb9\x85\x26\x6c\x4d\x47\x0b\xc7\xee\x3c\x64\xef\xb4\x36\x45\x0c\x1c\x41\xe5\x6f\x5a\xc3\xf0\x20\x92\x1f\xf3\x72\xe3\x2d\xe2\x07\x68\x91\x6f\x27\x79\xe4\x35\x71\x1f\xc9\x3c\xe5\xe9\x0e\x92\x8a\x27\x4b\xba\x11\xd5\x0e\x8d\xbd\xe1\xc3\x46\x8f\x90\x7a\xdd\x8d\x56\x36\x38\xa1\xe2\xa6\x99\xba\x71\x00\xf1\x73\xd4\x19\x1d\x7c\x77\x8c\x7d\xc7\xa4\xdd\xf8\xf8\xc3\x03\xec\xab\xa6\x59\x26\xde\x2d\xbb\xd8\x2f\x4c\x02\x4c\xb7\xd7\x77\xb1\x3f\x9a\x8c\x30\x1d\x79\x7c\x18\x4e\xd1\x1f\x34\x5b\x72\x68\x10\xb5\x0c\xa4\x11\x57\x1a\xc1\x1f\x79\xd2\x5d\x17\x6f\x11\x3d\xae\xe3\x0b\xe2\x9f\x3a\x65\xfc\x9d\xe8\xc9\x8d\x07\xa5\x32\x7e\xa1\x08\x45\xc4\x49\x5b\x46\x27\x39\x07\x23\x4e\x97\x9b\x78\xd0\xcc\x1d\xbb\x37\x1d\x9c\x12\xaa\xb7\x0e\xdf\x5c\x74\x98\xb2\x56\x97\x0f\xf1\xcb\x57\xf5\x87\x1a\x8d\x1c\xbb\x2e\x3f\x4a\x33\xf7\x43\x34\xe2\x84\x4c\x2d\xc7\xa7\x9b\x11\x95\x2d\xb5\xe2\x5b\x5f\x22\x5b\x59\x42\xeb\xc3\xe5\x78\x1c\x54\x1e\x8e\x48\x2b\x84\x7e\x0c\xbc\x49\x6a\x29\xdd\x91\x7f\x4d\xf8\xc8\xd9\x4f\x3f\xd7\xfd\xc9\xc3\xd6\x96\x51\x8c\x6a\xa4\xe8\xbd\x18\x51\x69\x23\xaf\xb3\xe5\x2e\x44\x97\x3c\xc9\xcb\x86\x35\x88\xc9\x32\x0a\x52\xda\x4d\x88\xc5\x21\x8a\xd7\xb4\x24\x10\x1b\x4d\x26\x8c\xd0\x48\x42\xec\x1a\xa6\x78\x4b\x75\x90\xa3\x8f\x64\x84\xbc\x2a\x07\xf9\x62\x14\x16\x7f\x96\x47\x14\xb4\x50\xac\x7a\x29\x8e\x28\x3c\xf0\xc5\xe4\x2a\xa9\xe1\xf3\x50\xbb\x8b\xd4\x8c\x6b\xb4\x1a\x24\xb5\x69\x4a\x9b\xa8\xbc\x6c\x26\x6f\x6a\x11\x93\x37\xed\xc7\x54\xe6\x34\xe6\x45\x1c\xad\x0b\x60\xa8\x8a\x68\x9d\x20\x22\x36\xb5\x02\x31\x7a\xa6\xd8\x7c\x8d\x95\x88\x1b\xf2\x24\x57\xab\x85\x21\x16\x37\x4a\x96\xa8\x9c\x41\x3c\xeb\x37\x7e\xf6\xe4\x3e\xc4\x47\xcd\xe3\xbd\x94\x33\x11\xfb\x0e\x89\xda\xcb\x57\x73\xf4\xe1\x17\x1d\xc1\x43\x33\xb3\x9e\xf8\x75\x92\x5e\xa5\x17\x35\x06\x88\x7f\xb0\x92\x19\xff\xad\x4c\x7c\x30\xa5\x8e\x99\x07\xa6\xe3\x9f\x53\x1c\xc5\xa9\x23\x10\x79\x55\x00\xa6\xb6\x20\x1a\xf3\x09\x3c\x54\x7b\x85\x18\xa0\x2c\xd8\x30\xe9\x2a\x62\x42\xa0\xd0\xa6\xc9\xde\x88\x6b\x23\x45\x7e\x4c\x9c\x85\xb8\xeb\x90\xc8\x7c\xa5\x8d\x88\xb5\x6b\x44\x44\x94\x7c\x10\xaf\x2e\x13\xd9\xa4\x60\x85\xf8\x82\x47\x48\x5d\x41\x10\x71\xe0\x8b\x40\x60\x73\xd9\x20\xa9\x69\x75\xb8\x8a\x7e\xff\x36\xe6\xf9\xd3\x18\x3f\xd9\xbc\xa5\x7f\x8f\x83\x19\xe3\x9f\x52\xf6\x47\x1c\x96\x06\x30\xb9\x1c\x51\x63\x03\xcf\xb9\x49\x7c\x88\xce\x5f\xf9\x8c\x94\x2c\x10\xc3\xc2\xf9\xfc\xe5\xf7\x22\x26\xac\xe0\x1b\xa7\x90\x88\xb8\xea\x98\x80\xb5\xc2\x0e\xc4\x7c\xff\xd1\x3d\xf2\xbf\x10\xcb\xf7\x0a\xa6\xc9\xce\x47\x3c\xbd\x86\xff\x93\x88\x1d\x62\x13\x53\x47\xdc\xed\xf4\xdf\x3c\xc8\x80\x41\xba\xdf\x0b\xea\x98\xe5\x70\x50\xde\xca\xcb\x8b\x67\x06\xe2\xe4\xee\x18\x3e\xa1\x62\x44\xd5\xdc\xf5\x29\x62\x6d\x88\x93\xc7\x1c\xec\x97\xd8\x8d\x38\x69\x42\xeb\xc3\x71\xc7\x11\x95\x8b\xfb\xdd\xc5\x26\x21\xca\x4f\x44\xe4\x37\xef\x5e\xa3\x74\x03\x51\xa4\xe8\x79\xd8\x84\x71\x88\xa2\xa3\xee\x8e\x9b\x10\x80\x28\x7a\xaa\x65\xbb\xd2\x4f\x44\x51\x95\xf3\xb7\x94\xb4\x10\x45\xba\xfe\x17\x1f\xd3\x5f\xf9\x27\x0f\x91\xe9\x36\xdf\x35\xbc\x13\x51\xf9\x99\xc7\x5a\xbe\xf3\x88\x6a\x1a\xd1\x0e\xc2\x0f\x10\xa7\x98\xac\x9f\x31\x2e\x13\x51\x55\xf5\x50\xe5\x78\x5f\xc4\x49\xaf\xef\x0c\x49\x3e\x42\x54\xb1\x46\x1c\xc7\xf3\x2b\x51\xe9\x1c\xe2\x18\xf5\xb7\xc6\x13\x9b\x11\xc5\xfa\xdb\x4c\x95\xe7\x23\x4a\x6c\xbb\x25\xa5\xec\x87\x28\x91\x7e\xb9\x73\xe2\x5d\x44\xf1\x1d\xe7\x7c\x27\xc6\x20\x8a\xed\xfe\x53\x8f\x7f\x78\x10\xb5\x7b\xef\xd4\x28\x3f\xdc\x6c\x70\x7e\xa4\x12\xa2\xca\x03\x97\x45\xfc\xcd\x88\x5a\xbd\x51\x87\x45\xef\x21\x6a\xae\x5d\xf3\x7e\x7c\x02\xe2\x94\xe2\xc3\xc7\xe4\xc6\x20\xaa\x56\x3f\x7c\x26\x6b\x84\xa8\xaa\x85\x28\x99\xfd\xd9\x6f\x72\x0c\xa2\x64\xe0\x8b\x68\x95\x74\x44\xe9\x29\x77\x6f\xa9\xae\x42\x94\x69\xbf\x1a\xaf\xea\x8e\x28\xa3\xd0\x90\xa8\xba\x0f\x51\xfa\xc5\x89\x0a\x35\x03\x44\xe9\xdb\x7f\xf2\x20\xee\x38\xa8\xc6\x71\x90\x2f\x75\xc2\x67\x0e\x4e\x36\xd1\xee\x19\x25\x8e\xa8\xed\x6c\xdb\x20\x24\x80\xa8\xf3\x34\x34\x58\x6c\x11\xa2\x8e\x5a\x66\x9a\xcc\x55\x44\xcd\xdb\x55\x86\x8a\xc6\x88\x53\xca\xdb\x0c\x94\xbc\x10\xd5\xba\x11\xa5\x1f\x74\xa5\x6a\xd8\x20\x4e\xf0\x78\xd8\xa0\xf1\x1d\x7f\x4c\xcc\xba\xe6\xab\xe9\x86\xdf\x27\x3a\x34\xce\xd5\x34\x47\x54\xea\x3b\x79\x5f\xa3\x1b\x51\xd1\xb5\xfa\xb3\xc6\x03\x44\xf9\x6f\x7f\xce\x07\x1d\x07\x58\x29\x47\xe2\xa7\x32\x99\x32\x8b\x87\xb9\x21\x4e\x29\x51\xf3\xe5\xf0\x43\xc3\x03\x86\xbd\xc2\xfe\x88\x46\x27\x83\xa6\x49\xee\x42\x34\x38\x92\xb1\x4c\x49\x17\x51\x57\xab\x3a\x52\x45\x02\x71\x6a\xf0\x4b\x25\xd5\xa5\x5f\x42\xb4\x9e\xe3\xab\xc9\x8f\x9f\xc4\x69\xb7\x61\xd1\x14\x8d\xeb\x6f\x74\xc7\x62\xae\x86\xca\xf9\x61\xba\x2f\xb1\x70\x4a\xed\x89\x27\xba\x3f\xf0\x98\x5a\xc3\x21\x6b\xdd\x37\x78\x47\xc5\xa2\x6c\x93\x4e\x30\x7e\x9d\xf8\x84\xc4\x09\x0f\x50\x3d\x26\x74\x92\x71\x38\x3c\xf6\x1a\xe1\xa7\x0f\x05\xbf\x72\xd0\x54\x41\x6e\xec\x88\x00\x44\x3b\x33\x9d\x29\x42\xbb\x11\x6d\x35\xbc\x62\x64\x6f\x23\x9a\xfb\x2d\xbf\xa5\xe2\x8a\x68\x50\x70\x44\x4c\xab\x06\x51\x4f\xba\xa7\x51\xbb\xe2\x59\xa7\x21\x2f\xfb\x96\x71\x5a\x73\xa2\xb1\x3c\xfb\xae\x09\xef\xd9\x2e\x93\x64\xf6\x5b\x63\xdb\x9a\x89\xa6\x8b\x91\xdf\x70\x67\x85\xba\xf1\x1e\x0c\xd7\x59\x52\x1c\x62\xac\x8c\x9b\xb4\xc4\x77\xbe\x34\x6e\xc6\x7d\x1a\x39\x7f\x8c\x03\xe9\xc5\x84\x28\xbb\x76\x78\x1b\xf1\x4f\x31\xf9\x18\xdc\x73\x78\xe0\x1e\xe5\xf9\xfc\x0f\x10\xfd\x26\xd9\x8e\x95\xd7\xfc\x25\xef\x2c\x95\x60\xa5\x27\xfb\xe6\xa0\xf5\x60\x29\x58\x97\xb6\x75\x9b\x5f\x7a\x2e\xed\x1c\x7d\x89\xdf\x7a\x1c\x6b\x83\x9b\x7d\xed\x0d\x5b\x3d\xd6\x3b\xa7\x87\xe5\xc5\xb6\x9f\xd8\x06\xf6\xd6\x45\x32\x76\x17\xd8\xc9\xd6\x03\xdb\xf5\xec\xa4\xd9\xf7\xcd\x4a\xb7\x78\xd8\x6d\xc4\x61\xc6\x3d\xeb\xaa\xed\x36\xa2\xae\x01\x39\xc5\x4b\xd3\xfe\x30\x2c\x2a\x8f\x6b\x7f\x7d\x9e\x31\x76\x58\x96\xf1\x8b\xc4\x09\x54\x02\xf4\x84\x2e\xf2\xd5\x7b\x21\xeb\x70\x57\x3b\xe2\xf0\xcc\x12\x5b\xde\x7a\xc7\x00\xad\x2d\xdf\xfc\xb3\xab\x33\xbd\xcf\xb6\x2c\x09\x7b\x53\x7c\xdf\x7b\xf7\x60\x7b\xf8\xbd\x6d\xcb\x7d\x7e\x0c\xd5\x06\x5a\x64\x6f\xf4\xcd\x61\x69\xfa\x19\x66\x4d\xf6\xa9\x61\x35\xb8\x27\xa7\xed\xf2\xb1\x64\x6b\x38\xde\x5a\x6e\xe4\x55\xc6\x5e\x63\xb3\x7f\xc9\x1a\xcf\x20\xf6\x63\x73\x72\xab\x83\x27\x9d\x23\x47\x75\x02\x95\x47\xab\xc0\x23\xc6\x33\xf9\xb9\xb4\x46\xd5\x07\x77\xca\x87\x6e\xaf\xc9\xcf\x50\xb6\x13\xf7\xae\xfd\xb9\x5e\xc8\xcd\xd3\x3c\x39\x47\x7f\x69\xcc\x32\x97\xc8\x45\xcb\x7f\x2c\x74\x3d\xee\x13\x17\xb2\xf0\x7a\x6c\x7d\xbf\xd5\x42\xb7\x58\xd1\x98\xd3\x83\xe9\x51\xa7\xe7\xb5\x47\xff\x1c\xb2\x0f\x8d\x9a\xc3\x8e\xca\x63\x81\x7f\xe1\xec\xaa\xc8\x55\xac\xbd\x9e\xe3\x22\x0f\x84\x4f\x61\x0b\x39\xfb\x84\xf3\x86\xae\x67\x87\xdb\xad\x41\x14\x66\xf2\x60\xed\x98\xbc\xe8\x05\x93\x28\xd2\x1a\x58\x5d\xd9\xb4\x22\xf0\xcd\x95\xb4\x1b\xc6\xa9\xd0\x53\xaa\x52\x3a\x00\xf9\xbd\x55\x45\x16\x22\x5a\x4b\xe3\x5d\xf7\x2f\x9e\x6f\xe0\x27\x11\x5c\x51\x34\xf6\xd0\xc4\xe0\x32\xdf\xb5\xbb\x9e\xf7\xbe\x0d\x59\xeb\x5b\x9c\x3b\x71\xa8\xcf\xff\x81\x4f\x4f\x76\x26\x2b\xd3\x6b\xa3\xcf\xbb\x4c\x43\x56\xaf\xab\xb7\x6f\xc9\x0a\x03\xf6\x34\xc7\x46\xef\xd6\x64\x2f\xf6\x76\xeb\x7e\x6f\xa1\xc5\xa3\xd9\x6f\xcc\xce\x23\x1a\xf6\x33\xe3\xcf\xe8\x93\xe3\x42\xce\xff\x3b\x69\xc7\xd9\x9b\x02\xa7\x48\x0d\xb8\xe3\x35\x4d\x84\x37\x16\x0c\xde\x22\xf7\xb8\x56\xd8\xde\x3c\x38\x35\x48\xc6\x26\xe0\xcb\x55\x93\xf0\x03\x66\x73\x1c\xcb\x2f\xb7\x1e\x58\x67\x97\x6a\x19\x75\xc9\xe3\xc3\x2d\x7b\x59\x2b\xde\x53\x3f\xd8\xcb\xac\x17\x5b\x0b\x1e\xae\x65\x97\x5b\xaa\x5b\x17\xef\x5f\xc1\x7e\x61\x36\xd2\x46\xbe\x50\x0d\x05\x8d\xbd\x6c\xd4\xb7\xcd\x42\x43\x83\x05\xd6\xd3\x37\x5e\xc4\x05\xba\x8e\x88\xc1\xc5\x7f\x3e\xff\xfb\xd6\x43\x24\x3f\xfb\xf6\xe8\x06\x12\x27\x3b\x3d\xee\x3a\xa9\xd9\x5b\x5c\xf3\x88\xe8\x91\x25\xfa\x9a\xc4\xef\xe6\x94\x76\xeb\xca\xf6\xf0\x06\x3b\xd4\x7e\x38\xec\xdb\x3b\x31\xd9\x50\xea\x83\x5d\xc1\x1b\xf5\x19\xda\xba\x1f\xc6\xbf\x62\xab\x87\x4f\xc5\x67\xa3\xf0\x85\xca\x7c\xed\x98\x9b\xb7\xb0\x4d\x65\xb6\xce\xdd\xf3\xef\xb0\x55\xd5\x55\xf7\xde\x89\x4d\x78\x57\x95\x47\xb7\xac\xca\x10\xdf\x4c\x96\xd4\x3b\x5d\x7a\x0f\xdf\x4d\x16\xe1\xce\xff\xa7\xb4\x83\xa4\xf6\xdf\x1d\xf7\xf3\xa4\xf2\x6c\x5d\xcf\x1d\x52\xeb\xaf\xac\xfb\x39\xa9\xd8\x99\x73\xa2\x9b\xcc\x4f\x62\x40\x3f\xa9\x48\xe7\xcc\x39\xff\x1f\x07\x30\xcc\x43\xb4\x1d\x12\xe9\xd2\x58\x8e\x98\x55\x3c\x2e\x7f\x72\x31\xe2\x65\x57\xc9\x2d\xca\x0f\x38\xf6\x7c\xac\xb4\xd2\xd3\x2f\xd3\x10\xc7\xd8\x4c\x28\x79\x21\x85\x38\xf6\xfa\x84\xe8\xbb\xf7\x10\xc7\x7e\x9b\x38\xf2\xea\x57\x44\xd1\xab\x13\x3d\x1a\x2e\x22\x8a\x76\x7e\xeb\xa5\xe3\xff\xc8\xa0\x89\xcc\x4f\x63\xe1\x7d\x92\x2f\x74\xb0\xaf\x93\x74\x5c\xdf\x69\xd6\x4b\x02\x78\xab\x99\xce\xc7\x5c\xfb\x6f\xf8\x92\xa2\x86\x39\xa2\x89\x26\x7f\xaa\xf2\x43\xc4\xf8\x78\xc1\x9d\x4a\xc6\x88\xfb\x27\x08\x57\xc8\x1f\x46\xbc\x26\x2b\x24\x21\xe7\x8f\xf8\xe9\x2c\x7f\xba\x50\x1e\x93\x01\x7e\xf1\xe7\x63\x0e\x0e\x3f\xf6\x86\x64\xb8\x0c\x1b\xdb\x76\x99\x83\x6d\xf3\xe9\xf3\x37\x59\x3f\x22\xeb\xe0\xc8\xb9\x37\xa4\x46\x6a\x91\xcd\x2f\x52\x81\x70\xfd\x6e\xc6\x1f\xb6\x81\xe1\x61\x9b\x29\x6a\xdd\x63\xec\x7f\x3e\xa2\xf6\x59\x9e\x45\x72\x5f\x11\x43\x3d\x46\x89\xcb\xdd\x40\x5c\xb7\x97\x5f\x4d\xa6\x17\xb1\x7c\x3f\xdf\x55\xe9\x57\x88\x17\xd6\xf0\x1e\x94\x09\x45\x7c\xd9\xc7\x1b\x2e\xc4\x21\x16\x2b\xe0\x8f\xcc\xf4\x5f\x5b\x38\xd8\x6c\xfe\x88\xf0\xdf\xa3\xa5\xef\xc9\xb9\xe5\xc0\x3e\x36\xa9\x7c\xba\x79\x1d\xfd\xad\xa5\x1f\x29\x86\x32\xf7\xe8\x6c\x6b\x18\xf9\xbf\x28\xca\x6b\x21\x4e\xde\x3b\x7c\x2f\xaf\x2a\xa2\x95\x1e\x00\xbf\x2a\xdd\x71\x46\xc6\x23\x66\x98\x01\x40\x30\x62\x7e\x1b\x00\xcf\x4c\xc4\x1a\x1b\x00\x1e\x1e\xc4\xe6\x04\x80\x91\x45\x88\xaf\xd3\x7e\xeb\x73\x6a\x5f\x37\x59\x17\x65\x4c\x9e\xd2\x56\x26\x4f\x7a\x39\xe3\x17\x8b\xde\xc5\x8c\x03\x53\x79\xd7\x94\x89\x8f\x29\x58\x51\xe4\x69\x41\x14\x7e\x03\x30\x8c\x07\x51\x87\xd9\x71\x7c\x1e\x02\xc0\x34\xc4\xf9\xbc\xf4\xf3\x0a\x6f\x00\x08\x42\xdc\xe6\x07\x00\x25\x88\x65\xe7\xe9\xcf\xcf\xf2\x73\x16\x3e\xe2\x0d\x2e\x0f\x82\xff\xcd\x83\xb8\x68\x96\xc0\xfc\x1e\xe9\xc3\x33\x4c\x2c\x2a\x96\x83\x23\x94\x56\x2f\x26\xfc\x40\xfc\xc0\x0b\x0e\x8e\x5c\x7d\x35\x94\xfc\xfc\xf0\xe7\xdb\x00\x83\x4c\x6f\xb3\x8f\x96\x14\x3b\x98\x1e\x15\xf7\x2a\x28\x5e\x67\x7a\x5c\x5d\x68\xa1\xc8\xf9\xcf\xa9\xe3\x6f\xfe\xc1\xb5\xff\x5a\x4e\x7f\xfa\x45\x86\xf1\x38\xfb\x11\xb9\x41\x91\x6b\x89\x3d\x7c\xb1\x5a\x8a\x83\xa3\x57\x94\x95\x11\xbf\xc9\x98\xeb\x44\x26\x8f\xf8\x8f\x32\x80\xbe\x6e\x20\x37\x23\xdf\x98\xd1\xef\x68\x73\x80\x33\x1c\xbc\xed\x43\x3f\x5f\x16\xa6\x58\xbf\x02\x8e\x73\xf5\x70\x9c\xf6\xf7\xf3\x73\xed\x1e\xf5\x43\x80\x87\x0e\x89\x3f\xf0\xf8\xda\xfa\x12\x9e\xe8\x12\x76\x8f\x83\x22\x87\x56\xe5\x73\x50\xda\xaa\xe2\x17\x07\xc7\x4e\x6a\xdd\x45\x7e\x9e\x86\x61\x00\x9f\xfd\x78\xc9\x4c\x76\x28\xf1\x7d\xe0\xe0\xfd\x15\xa3\x7c\x89\xfc\x3d\xd2\xf7\x11\xf9\x34\x1a\x3f\xf0\x55\x93\x75\x31\x5e\x50\x86\xab\x07\x77\x3e\x34\xf6\xff\x69\xff\x01\xe4\x49\x9e\xcc\xb0\xc4\xc9\x44\x8f\x31\xe6\x66\x44\xae\xec\xd4\x10\x9b\x91\x6d\x88\xb2\x7a\x19\x77\x79\xfd\x10\xa5\xbf\x55\x9a\xf0\x76\x21\x4a\x1d\x7f\x20\xc2\xb3\x08\x51\x82\xdc\x0c\xe8\xbc\x27\xb3\x1f\x91\x6f\xf7\xdd\xb5\x72\x71\x88\xa3\xdf\x37\x2f\x97\xcf\x46\x14\xca\xae\xbf\x2e\x9b\x83\x28\x70\xfe\xc4\x7a\x39\x73\xc4\xd1\x89\x55\x12\x72\x27\x11\x47\x9f\xfa\x73\x1c\x26\x0f\xff\xd3\xfe\x73\x51\xd4\x54\x9e\xe8\x21\x37\x57\x5f\x7f\x84\x0a\xa2\x52\xd1\x74\x1b\xde\xa3\x88\x8a\x7d\x2b\xaa\x46\x87\x21\xca\xe7\x1d\x54\x15\x2c\x41\x94\x3b\xfe\x2c\x75\x74\x4f\x6f\x81\xc2\x1b\x44\xa1\x75\xf7\xb3\x26\xee\x44\x14\x5f\x7a\x85\x7f\xd2\x47\x44\xc9\xcc\x3a\x1d\xe5\x1d\x88\x12\xe2\xb5\xb7\x26\x5e\x46\x14\x9b\x79\xd0\x6d\x62\x34\xa2\xa8\xd3\x01\x85\x89\xc7\x11\xc7\x7e\xff\x2f\xff\x00\x18\xf9\x80\x83\x42\x09\x40\xd6\xb1\xd2\x52\xc1\x97\x1c\x54\x6b\x50\x49\xe5\xb9\x80\xa8\x31\xce\xd5\x54\x50\x01\x51\x7d\xec\x32\x45\xd1\xa0\xa1\x5f\x93\x47\x55\x3e\x1d\xc7\xff\xe5\xee\x64\xd7\x67\xe7\xa4\xd7\x3d\x1b\xaf\x6e\x82\x28\x7f\xfb\x62\x96\xa6\x04\xe2\x04\xc9\x13\x86\x9a\xcd\x88\x4a\xfe\x87\x77\x6b\x4d\x47\x54\xac\xdd\x7f\x42\x6b\x36\xa2\xfc\x87\x5d\x5f\xb4\xa6\x21\xca\xf9\xe7\xa3\x86\x37\xa2\x14\x99\x3b\xb9\x60\x2a\x9f\x87\xcc\x0b\xdf\x46\xfa\x56\x4d\x1a\xa4\x68\xc8\xbc\x65\xb6\x0f\xc5\x1e\x03\xb0\x6a\xcc\x5b\x4c\x4f\x89\xfa\xbc\xbd\x69\xfa\x7a\xde\x1a\xa5\x8f\x8f\x17\x18\x39\x15\x8e\xd7\x0c\xbf\x99\xa6\xbf\xeb\xc6\x7b\xbd\xcd\x17\xb5\x0d\x83\x71\xc2\xb4\x8e\x43\xf7\x8d\xb3\xd0\x5b\x37\xa3\xf8\xb8\x49\x26\x26\x68\x27\xee\xec\x36\xbe\x88\xfb\x35\xb2\xb7\xf6\x1b\xe7\xe1\x79\xb5\x0f\xd9\x17\x8d\x4d\xb1\x4d\x65\x46\xe6\x5c\xc3\x87\x88\x13\xa7\x71\xe4\x0b\x32\xe3\x40\xe5\xa9\xca\x50\xb4\x1e\x4e\x71\x3a\xa9\x98\xde\x57\x17\x41\xce\x7d\xcf\x1e\x46\xec\x98\xf2\x58\xb4\xa8\x69\xc0\x5f\xca\xcf\x4d\xe7\x5e\x6d\x89\xe7\x9b\x35\xb1\x56\x5f\x4a\xc4\x5d\x1e\x9c\x3d\xed\xf4\x64\x37\x8f\xb3\xc1\xf7\x17\x2e\x2b\x37\x5b\xb9\xa8\xb3\x17\xda\x86\xad\xee\x72\x55\x60\x37\x5a\xdc\x5c\x71\xc9\x65\x16\xf2\x19\x63\x4a\xba\x53\x01\xda\xeb\x2f\x5d\xdc\xe5\x94\x85\x8b\x74\x9e\x2f\x34\xb1\x7f\x8b\x87\x34\x0e\xfc\x96\xaf\x58\xfb\x37\x0f\x89\x20\xe3\xf0\x69\xe9\x12\x52\x01\xf3\x51\x3e\xed\x3c\x7e\xde\x64\x8d\xbb\x4c\x0d\xff\xd2\x92\xbb\xa9\xcb\xec\x1a\x34\x22\xd6\xea\x2e\xa8\x5e\xe8\xe5\x96\x9c\xf8\x76\xee\xfd\xf2\xb1\xfe\x56\x31\x27\xa3\x54\x3a\x8d\x02\xbe\x46\x69\xcf\x8a\x66\x2d\xf1\x56\xe4\xf2\x9d\x30\xdf\x90\xd5\xec\xd5\x36\x73\x82\x3f\xce\xf4\x63\xdf\x36\x0f\x0d\x1e\x1d\xf0\x11\xf9\x8c\xe3\x03\x96\x4e\xbf\x8c\x01\x7a\x02\x88\x62\x05\x7f\x3f\x3f\xad\xe8\xfb\xde\x8b\x56\xfc\xbe\x6b\x93\x43\xfe\x51\x57\xb4\x8b\xf8\x3d\x0e\x0c\x95\x8e\xe4\x13\x04\x58\xb7\x7a\xef\x11\xfd\x04\x05\x9f\x39\x87\xb6\x77\x44\x7e\xb3\xbc\x3f\xfd\xd2\xb6\xe1\x7b\x2e\x3b\xf2\xbb\x8b\xe7\x2c\x6a\x0b\x70\x52\x70\xdd\xb0\xe1\x2e\x7b\x8b\x8d\x8c\xab\xe6\xaa\x87\xec\x57\x66\x1f\x5c\xce\xa4\xb6\xa1\x9c\xd1\x0b\xd7\x11\x49\x43\xe8\xac\x9f\xef\x2a\x1e\x3f\x1d\x17\xe9\x2a\x3b\x2f\x9d\x7f\x02\xf7\x68\x99\x21\x1a\x07\xfd\x29\xff\xa3\x4e\x16\xf1\x4f\xdd\xbd\x5d\x40\xce\xff\x75\x9f\xcb\x89\xfc\x92\x8e\x5a\x92\xaf\xbc\xbe\xbb\x8e\xf8\xef\x16\x08\x35\xb4\x28\xef\x1f\x33\xcc\x63\xf5\x59\x87\x19\xba\xea\x5d\x96\x6e\xa7\x5e\xe4\xa3\x0e\x9f\x61\xe1\x09\xf6\xbd\xad\x3a\x4f\x0c\x65\x8e\x78\xe1\x76\xcd\x1a\x23\x85\x03\xa7\xf1\x90\x86\xb6\x91\x40\xa1\x3f\x5e\x57\xf3\x37\x0a\xcc\x0d\xc1\x17\x2a\xb3\x8c\xba\x37\x34\xe0\xe7\x49\xad\x46\x75\x59\x41\x88\x13\xdf\x22\x86\x91\x38\x50\x4f\x27\xad\x15\x7a\x0f\x8b\xc8\x3d\xad\x73\xf3\xaa\x89\x7f\xac\xbc\xe8\x2c\xe1\x3f\xb9\x96\x57\x48\xcd\xf2\x25\xda\xad\x44\x0f\x3f\xb3\x36\xd3\x31\xcb\x00\x8c\x9a\x9e\xa4\x38\x9d\x1f\x37\x7a\xca\xed\xc7\xfd\x1b\xda\xa4\x47\x4c\x8a\x7e\xec\x78\xa3\x56\xaa\x64\x92\xc2\x9d\x53\x88\x12\x27\x26\x7d\x6f\x8a\x45\x1c\xb7\x59\xe5\xe6\xa9\x57\x88\xe3\x9d\x55\xfc\xaa\x5e\x20\x8e\x6b\x50\xf5\x2a\x1d\x8f\x38\xee\xab\xca\x8d\xdd\x79\x88\x12\x0e\xdf\x6b\x68\x0f\xdf\x47\xb9\x94\x87\x36\xe2\x51\xc2\xc3\x0e\x1b\x5c\x20\x5d\x0b\x77\x7e\xbf\x71\x00\x48\x6f\x81\xc7\x44\xaf\x39\x89\xb4\x43\x85\xf9\x8d\x2f\xa4\x62\xaa\x22\xf6\xff\xd2\x99\x3f\xb2\x4c\xea\xe2\x90\x52\x0a\x6b\x44\x85\xa4\x06\xeb\xf1\x85\x3c\x80\xb1\x86\xbf\x96\x70\xd6\xde\x18\xb9\xd7\xc4\x32\x0b\xba\x3e\x22\xb9\x8c\x02\x67\xae\x93\x18\xba\x8c\x64\x43\x38\x22\xdf\x70\x7e\xeb\x53\x73\x38\x9f\x9f\x76\xec\x23\x95\xe2\x2f\x25\x9d\x22\xbd\x17\x6a\x44\x2e\x93\xce\x08\x7b\x9a\xef\x91\x3c\xee\x0d\xf8\x9c\xdc\x67\x4b\x9a\xf7\x9e\xf8\xef\x82\x12\xfb\x48\xa5\x52\x1d\x26\x3f\x57\xb0\x19\x51\xfa\x2b\x00\xff\x4c\xc4\x70\x2d\x3a\xc3\x3b\xc3\x01\x86\x4d\x40\xbc\x99\xc8\xd8\x75\xc2\x24\xfb\x98\x1b\xdf\x5d\x31\x14\x1f\xe7\x50\xbc\x45\x3c\x4e\xcd\x29\x27\xc9\x39\xe5\x98\xc7\x55\xd2\x0b\x61\xdf\xf2\x47\xa4\xd7\x43\xce\xc2\x97\xc4\x6f\x96\x0e\xbd\xa4\x92\x70\x2c\xe9\x8c\x09\xe0\xfe\x98\xfe\xb5\xaa\xe0\xef\x37\x4d\xe8\x34\x45\x97\x4f\x8c\x9d\x77\xa3\x78\x90\x39\x09\xb5\x30\x91\xd0\xee\xd9\x7f\xf2\x9f\x6f\x4c\x04\xb4\xeb\x15\xb1\x33\x51\x94\x07\x97\xcf\x7a\x46\xe4\xed\xf8\xf8\x81\xf8\xc5\xd6\x56\xf5\x91\x4a\xcf\x89\xcc\x3d\xba\x10\xc6\x1f\x63\x33\x86\xa2\x62\xed\x6f\x3d\x46\x33\x11\x78\x73\xc6\x13\x4c\xab\x77\x23\x6e\x62\x76\x82\x72\x86\x97\x50\x0f\x2c\xe2\xf3\xed\x7f\xea\x43\xb1\xb2\xf5\x19\xe1\x9f\x85\x9f\x3e\x11\xff\xe0\x66\x6d\xda\xa9\x86\xeb\x8f\xe2\xc6\xe5\xbc\x99\x7c\x6d\xfd\x67\x14\xa5\x7b\x7e\xeb\x31\x2a\x8c\xe2\xb4\x54\x8a\x81\x7a\x14\x97\x4e\xf9\x5b\x9f\x12\x26\x53\xef\xcc\x6b\x8a\xb7\x9b\x29\x7e\x78\xcb\xd8\x7d\xcb\xbf\xf9\xc7\xbf\x79\x10\xd7\x1e\x73\x4e\x7a\x1c\x8c\x66\x7e\x3f\xd3\x85\xe2\xfe\x3c\x86\x53\x30\x7c\xa9\xfb\x2b\xc0\xf7\x53\xf4\xdf\x2f\x99\xbf\x7d\xc4\xf4\xfe\xbd\xc9\x70\x9d\x4b\xba\x14\xeb\xaa\x7e\xf3\xa0\x7f\xf3\x30\x9d\x05\x7f\xa3\xe1\xb0\xbf\x79\xdb\xac\x4f\x14\x57\x31\x1c\xeb\x00\xc3\x97\x9a\xeb\x28\x7e\x69\xe5\xec\x03\xf4\xdf\xed\xcc\xef\xde\x61\x7a\x84\x35\xef\xa3\xd8\xc8\xc8\x3e\x99\xf9\x5b\x8f\x7f\xf2\x61\xbe\x50\x54\x57\xa6\xa8\x16\xff\x37\x2f\xb3\x7d\x41\x31\x74\x3b\xc5\x74\x46\x2f\xce\x78\x73\xf0\x1a\x8b\xe2\xc0\x27\x80\xb7\xa5\xf4\xdf\x0f\x35\xe1\x2f\x1e\x78\xbe\x86\xe2\x99\x8b\x14\x6b\x5c\x7e\xeb\xc1\x1d\x07\xae\x5c\xf9\x37\x14\x65\x46\x53\x9c\x58\x09\x7f\xe4\x53\x01\x04\x84\x50\x5c\xce\xfe\x5b\x0f\xce\x0e\x37\x74\x9d\xfe\xbb\xc3\x83\xe2\x0d\xa6\x97\x60\xd3\xc4\x7f\xc9\xdf\xca\x61\xf2\x00\x15\xcd\xbf\xf5\xe0\xf2\x0f\x69\xe6\xb9\xc7\x58\x50\x14\x84\xbf\x79\x09\xf7\xf7\x3c\x99\xb9\x5d\x2a\x01\x80\x83\x00\x25\xb3\x00\x58\x72\x00\xf7\x6e\x02\x7c\x51\x85\x93\x9c\xff\xef\x6e\xdd\x68\x12\x99\x3f\x9f\x27\x48\x3c\x9d\xa7\x16\x0b\x92\x1d\xa7\xea\x8b\x00\x89\x91\x96\x8a\x08\x64\x72\x70\xaf\x05\x9f\x39\x57\x0f\x2e\x0f\xfc\xdb\xfe\x73\x71\x18\x63\xff\x46\x87\xc9\xa6\x72\x70\x4c\x8b\x5d\x1e\xc0\x40\x8c\xd8\xf9\x45\x77\x00\xba\xdb\xc7\x3f\xdd\xbb\x7a\x84\xca\x2b\x31\x29\xe9\x1b\x0b\x78\x95\x9f\xd6\x49\x5f\x40\xe4\x4d\x6c\x94\x52\xf0\x46\x14\x5e\x70\xc4\x54\x71\x2a\xa2\xf0\xbd\xb2\x12\x45\x5d\x44\x61\x87\x3d\x6b\x14\x1d\x10\x85\x0e\x6e\xf7\x56\x14\x42\x14\xbc\xbb\x55\x59\xfe\x1d\xe2\x68\x83\xff\x5b\x3e\xed\x0d\x84\x28\xcf\xbc\xfd\x13\x9f\x8f\x7a\x0c\xf0\x51\x5d\x7d\x83\xde\x37\xfe\xe3\x8f\x2f\x6a\xea\x85\x37\x8a\xad\xbf\x56\xa7\x11\xb1\xf9\xb5\xcc\xb1\xf3\x67\xd4\x1b\xeb\x13\x15\x7e\x9c\x95\x52\x67\xf5\x46\x2b\x7c\x2f\x8f\xd1\x2a\x46\x54\x54\x2e\x18\xa1\xd5\x81\x28\xb7\x6d\xeb\x6e\xad\xbb\x88\x32\xdf\xd6\x5d\xe4\xd8\x56\xa9\x05\xab\x1f\x6a\x28\x20\x8e\x73\x5c\xe1\x37\x45\x1e\x51\x5c\xfe\xbf\xf2\x25\xde\x50\x9c\x4a\x3a\x14\xfc\xcc\xb5\x26\xfb\x78\xe7\x23\x77\xd2\x99\xfe\x46\x88\x77\xd6\x84\x05\x02\xe3\x4e\x9a\x38\x6f\x77\x0b\x9e\xe0\x5b\x26\x63\xff\x21\xd5\x5d\xb3\xa1\x20\xd4\xc6\xec\x70\xe9\xb4\xe8\xad\xeb\xac\xa6\x76\xcc\xd6\xbf\xbc\x26\xdd\xc6\x17\xe7\xeb\x2a\xa5\xa6\x5b\xab\x60\x8d\xc6\x98\x25\x71\x96\x3d\xf8\x58\x75\x58\xc2\x01\xf3\x36\x1c\x9a\x78\x39\xee\x8c\x69\x01\xa2\xe2\xb0\xb9\x3b\x4d\x66\x21\xca\xa9\xfc\x21\x9f\xf1\x4b\x99\x10\xab\xf0\x25\xd1\x9b\xec\x8a\x8f\xb7\xcc\x22\x35\xcd\x2f\x85\xd3\x0e\x56\x35\x91\x4b\xbe\x89\xe9\x00\xec\xc8\x88\x5f\x6f\xfa\x5e\xae\x63\xc5\xc4\xa8\xa0\xe8\x19\x46\x97\x63\x0b\xc3\x85\x0b\x8f\x59\xf5\x47\xae\x0f\x7e\x70\x6b\x8b\xed\x83\x90\xbe\xe0\xd9\xec\x2a\xcb\xc3\x41\x32\x01\xa7\x50\xd6\xf0\xf6\x8c\x83\xd3\xd7\x62\xb8\xae\x85\x2f\xcb\x27\x09\xf7\x68\xe4\x78\xef\xf2\x1c\x8e\xd7\x54\x4e\x78\x99\xba\x6e\xc2\xee\x89\xf5\x88\x63\x35\x99\x5d\x99\x58\x81\x1e\x4d\xda\xe1\xe0\x51\x71\x02\x91\x7f\xfe\x74\x3a\x3d\xff\x6f\xa7\x1d\x2f\x72\xcd\xb7\x11\xeb\x91\x7c\x35\x37\x6f\x8a\x9d\xe8\xea\xe0\xd0\xec\x35\x81\x97\x34\x7b\xdd\xad\xd6\xfe\xcc\x19\xd4\xab\xb1\x6b\xca\x0a\x6d\x0e\x99\xb6\xdf\xc6\x2f\xd3\x1c\xd7\x6b\xcb\xd9\xc8\x25\x97\x63\xfd\x94\x00\xab\x67\x8b\xb7\xe3\x4b\x95\x30\xab\x1f\x71\xfe\xf8\x7d\x92\xb0\xd5\x92\xe8\x1b\x88\x13\x12\x2c\x4e\x47\xae\x41\x94\x6f\x47\x34\x22\xcf\xf9\xe5\x2e\xed\xf9\xf0\xd8\x36\x85\x74\xda\x69\xf8\xbe\x81\xf0\x90\x83\x5b\x68\x87\x89\xfc\x79\xfb\x88\x75\x48\x39\x7b\x90\xe4\xc9\x84\x86\xd7\xbc\x90\xba\x30\xe2\x95\xf5\xb3\x2a\x11\xb7\x7d\x32\xd9\xd3\x8e\x1e\x7c\xb4\x6e\x8c\x42\xad\xa6\x5d\xc5\xe7\xf3\x4f\x14\x7a\xa7\xdc\xa8\xd0\x60\x27\xcb\xf4\x6a\x8e\x2e\xbc\x8e\x28\xc3\xa3\x91\xb3\xf5\x10\xe2\xf8\xc7\x9a\x59\xeb\x05\x11\xc7\xdb\x68\x6e\x5e\xd5\x8d\x28\x29\xab\x31\xb8\x7c\x06\xa2\x84\x6c\xdf\x06\x46\xfe\xeb\x34\xf2\x5e\x5c\x10\xcf\x21\x79\x3a\xd5\x9d\x7b\xc9\x8c\x15\x34\x51\xff\xd0\xea\x5c\xda\x39\x2c\x7a\x6f\x03\xb1\xa2\x16\x51\x2d\x33\x89\xdd\x0d\xb9\xb6\xd1\xf4\x94\xc0\x76\xf9\xa2\x96\x9a\x54\xaf\xd1\x19\xd2\xda\x57\x1f\x9c\x5e\xc9\x7f\x5a\x2a\xe2\xaa\xe6\xcf\x1d\x23\xef\x48\xa7\x9f\x3e\x8d\x38\xea\xbb\x4c\x5e\x55\x0f\x22\x5f\x9a\x8c\x49\xa9\x14\x22\x6f\xad\x5c\xc6\xae\xed\x88\x02\x72\x72\x4a\x79\xbc\x88\xfc\x26\xcf\x42\xd3\x89\x15\x6a\xea\xc9\x27\xdd\xf7\x8e\xe4\x96\x11\xff\xc3\xee\x38\x1a\x27\xe3\xf2\xc0\x44\xdd\x2b\xc4\x1f\x11\x10\xdc\x4a\xf8\xe3\xd4\xfd\xcf\x48\x1c\x95\xff\xe0\x1b\x59\xc5\x45\x00\xc3\x8a\xde\x28\x46\x93\x9e\x03\xaf\xbf\x57\x92\x1e\x36\xaf\x72\xdf\x13\x0f\xe4\x03\x16\x5d\x83\x2d\x4c\x06\x4b\x83\x25\xc5\xe3\xdd\x14\x0f\x55\x52\x9b\x40\x3b\x9c\x1c\x35\xab\x20\x95\xff\x8b\x5f\x9d\x26\xf9\xda\x39\xbb\xa9\x5f\x2e\xed\x09\x8d\xd7\x45\x3f\xa0\x7e\x1a\x8f\x49\x9d\xa4\xe7\x8e\xca\xb4\x1e\xa6\xa6\x3e\xbb\x75\x4c\x38\xc5\x99\xc4\xb3\xc4\x66\xed\x89\xa7\xf8\x8c\x74\x6f\xea\x65\x3c\x15\x9d\x4c\x06\xf6\xfd\x7a\x8a\xd7\x98\x08\xd7\x05\x92\x89\x73\x6a\xdf\x61\xc2\xb7\x4a\xf6\xd4\x11\xaf\x48\xde\xad\xab\xa4\x57\x4e\x16\xef\x3d\xc2\x03\x17\xab\xb7\x93\x6f\x0d\x6b\x78\x47\x7a\x1f\xd8\x0d\xfb\x4a\xfc\x57\x8a\x55\xff\xe5\x41\x6e\xd7\x28\x66\xf2\x51\x3c\xc1\xd8\xfb\x2e\xc2\x28\xd8\xcc\xf3\xf7\x30\x11\xbf\x17\x1f\x28\x3e\x24\x99\xe0\x15\x71\x0d\xc4\x0f\x53\x98\x78\x93\x8c\xc3\xfa\x15\x8f\xce\x00\xe9\x08\x42\x3b\xdd\xc4\xac\xed\x21\xf7\x2d\xfd\x3b\x7f\x91\x9f\x9b\x31\x71\x31\x99\xd8\xff\xf2\x20\x6b\x26\x02\x9d\xe0\x4d\x71\x97\x27\x45\xda\xaf\x1c\xf1\x49\x00\x45\x24\xbd\x96\x86\x1c\xe9\x37\x7c\x22\xb9\x1f\x45\x46\xad\xe4\xbd\xdc\x12\xfb\x9c\x74\x12\x59\x6d\xf2\x91\x74\x30\x49\x84\x1f\xa4\x87\x5e\x94\x28\xfd\x6d\x2e\x1f\xd4\xf3\xa4\x28\x6e\xfa\x5b\x0f\xfe\x46\x8a\x46\xae\x14\xc3\x18\xbd\x56\x33\x3b\xf2\x3e\xe6\xf7\x4e\x32\x1e\xda\xdb\xcc\xcd\x89\x6e\xe6\x06\xe5\xff\xc5\x3f\xb8\x7e\x98\x7f\xf3\x20\xef\xc5\x14\xe7\x32\x76\x38\x93\x63\x77\x6f\x00\xec\xeb\xe0\x9c\x7b\x01\x2e\x36\x01\x0c\x9e\x07\xe8\x2a\x02\xf8\xcc\x70\x91\x36\xb3\xbf\xf9\x0f\xd7\xff\xc2\xe5\x3f\x27\x96\xfe\xb6\xb7\x5c\x1e\xa6\xd7\xfd\xb7\x5d\x9d\x7a\x8d\xa2\x59\xe9\xbf\x78\xd0\x07\x2a\x7f\xd5\x21\x80\xfe\x6c\x80\xe2\x61\x00\x3f\x37\x00\x5c\x88\x02\xe8\xeb\x04\x78\xb3\x1d\xe0\x7d\x16\xfd\x5d\xae\x1f\xea\x3f\xfc\x67\x03\xc5\xea\xce\xff\xf2\x0f\xc6\xff\xf3\x8f\xfd\xe5\xa2\xd6\x04\x8a\x76\x47\x7f\xf3\x20\x76\x09\xc0\x4a\x1f\x80\xef\x17\x00\xf6\xdc\xe3\xbc\x15\x00\x0d\x7d\x00\x9f\xe3\x01\xde\xee\xe1\xbc\x1d\xcc\x38\x0c\xfb\x5b\xfe\x29\xb1\xbf\xe5\x97\xf7\xfd\x97\x7f\x70\xfd\x0f\x5c\xbe\x21\xf9\xf6\x6f\x7d\xb8\xe3\xc2\xe1\x41\x3f\xc3\x00\x92\x73\x00\x3e\x17\x01\xec\x72\x06\x78\xbf\x0f\xa0\xe1\x0e\xc0\x9b\x1c\x80\x77\x22\xbf\xf9\x68\xd3\xec\x7f\x3d\xbf\x06\xc3\x9d\xee\x51\x2c\xfa\xfe\x5b\x0f\xae\x1c\x09\xc6\x2f\x35\x8a\xe1\xa5\xa3\x98\xef\x10\x63\xfa\xd0\xaa\x19\x01\x0c\xb9\xd2\x9e\xf1\x9f\xe7\xd3\x3e\xf9\x6f\xec\x00\xf2\x1f\x01\xbc\xa8\x01\xa8\xdf\x0d\xd0\xde\x0e\xf0\x61\xf3\x6f\x1e\x78\x92\xe1\xb0\x87\x18\x7e\x56\xc2\xf0\xc0\x5d\x65\x14\xb7\x3d\xff\xad\x07\x57\x0e\xfc\x4f\x1e\xc2\xa0\x0b\x80\xc4\x29\x80\xde\xf1\x00\x66\xa7\x00\x5e\xdf\x05\x88\xfa\x04\xf0\x94\x05\x90\x73\x1b\xe0\xde\xec\xe1\x9f\xce\x36\x00\xdc\xf8\x35\x32\xe6\xdd\x08\x80\xba\x8d\xfc\x02\x9c\xbf\xad\x1c\x23\x30\x93\x83\x7b\x6e\xf1\xf9\x71\x30\x7f\x88\x97\xec\x3c\x9b\x2e\xf0\x06\x71\x70\x6d\x19\xdc\xe7\xea\xf1\xff\x95\x8f\xc3\x48\x87\x8d\x9e\xf7\x02\xa4\x23\xcf\x53\xc9\xf1\xb7\x34\x4e\x02\x5c\x3b\x2d\xfb\x76\xc6\x9b\x51\xaf\x1a\xcc\xe4\xc3\x32\x65\x04\xc7\x1e\xcf\x93\x57\x3a\xb2\x4c\xf8\x75\x55\x94\xbc\xf2\xd3\xbe\x31\xea\x07\x74\x14\x83\x10\x85\x75\xb7\xba\x29\xcd\x43\x14\x3a\xb7\x8e\x4f\xa1\x19\x71\xb4\x43\xfa\x72\x85\xcd\x88\x02\x11\x29\xf6\x0a\xfe\x88\xfc\x45\x4b\x46\xcb\x54\x23\xf2\x0c\xfd\x57\xee\x70\xb2\x9f\xff\xfa\x26\x4d\xf6\x93\xce\xd7\x5a\xc4\xdf\x70\xab\xd3\x98\xdc\xd3\xae\x9f\x64\x85\x52\x4b\x87\x7d\xad\xb8\x6a\x36\xda\x96\x4f\x62\x7c\xa1\xb5\xc9\xcc\x84\x62\xb9\xcc\xcd\x7a\x86\xa7\xf7\x2e\x9b\x50\xbe\x66\xb8\xfe\xbb\x9b\xe3\x94\x85\x32\xac\x0c\x9e\x23\x2a\x8d\x5f\x9c\x6b\x38\x1b\x51\x2e\x7f\xbe\xe0\x34\x8e\xbd\x2d\x9f\xcb\xa3\x1b\x86\x28\xf1\x2d\x42\x5f\x47\x12\x51\x2c\x3a\xac\x48\x23\x00\x71\xcc\xd1\xdf\xf2\xf9\xc8\xae\xd3\x97\xa0\x46\xf2\xa2\xdb\xdb\xed\x88\xff\xa3\x79\xa5\x0f\x89\x43\x1d\xaf\x09\x25\x76\xb6\xc8\x27\x6a\xe4\x88\x32\x80\xf5\x29\x91\xc9\x3a\x03\xa2\x2a\x8b\xf8\x83\xba\x43\x1a\x54\x8a\x22\x4f\xfa\xa7\x6d\x5e\xac\xb5\x30\x60\xaf\xef\xfa\x06\x55\x9d\xa9\xbe\x4d\xbe\xa3\xbe\xe8\x4d\x9d\xe2\x79\xda\xb3\x0c\x6f\xa9\xc8\xb8\xd5\xb9\x8e\xc5\x5f\x4a\xa7\x9d\x3f\x39\xde\x41\x94\xbb\xef\x78\xc7\xde\x03\x51\x46\xd2\xd6\xd4\x46\x1a\x51\xd2\x8a\xcb\x43\xfb\x84\x75\x48\x1e\x72\x9b\x19\xed\x84\x76\x29\x71\x16\xe1\xa5\x47\x7a\xe2\x89\x3f\x60\xd7\x50\x32\xe1\x8b\xab\x8d\x68\x2f\x9d\x98\xe5\x59\x91\x8a\xc2\x7c\x56\x5e\x1b\x56\xfe\xf0\x9c\x29\x5f\x62\xb3\x33\xb5\x3e\x73\xfe\x84\x3c\x13\xc9\x94\xd9\x27\x17\x4e\x14\x32\x28\x4c\x0e\x7c\x5f\xa2\xb8\xd5\x20\x69\xd1\x1c\x44\x99\x6e\x7d\xc5\x79\xfb\x10\xc7\xcf\x9a\xf6\x63\x76\x04\xe2\xb8\x6e\xdd\xf6\xd0\x55\x88\x62\x1f\xf4\x84\x03\xb7\x23\x8a\x7e\x1b\xb4\xa1\x3d\x1e\xdb\x76\xcf\x20\x79\x2f\x4d\xa7\xe3\x88\x9f\xb0\xc6\x64\x39\xb1\xe2\xbb\xf7\xae\x23\x72\xd7\x26\x6d\x25\xf3\x13\x0b\x05\xc4\x2f\xe0\x12\xb6\x7f\xbf\xc0\x58\x00\xbd\xc0\xe2\x00\xab\x47\x63\x0c\x55\x9a\x8a\x1c\x52\x62\x44\x50\x49\x75\x77\xd1\x11\x57\x11\x07\xf9\x7d\xbb\x7c\x5e\x3d\x11\xaa\x97\x7f\x9f\xfb\x10\x71\x34\x9f\x82\xf1\xda\x46\x44\x81\xa5\x0a\x31\xe9\xb3\x10\x05\x46\x28\x64\x26\x2b\x21\xf2\x2f\x55\x10\x4b\x38\x87\xc8\xb7\xb4\xfd\x7a\x00\x79\xce\x2b\x9f\x68\x17\xeb\x5a\xf9\x4c\xe2\xa7\xdb\x6b\xb5\x95\xf8\x43\x36\xec\xa1\x9d\x9d\x12\x81\x9e\x92\x03\x9b\xaa\x08\x3f\x99\x7a\xf4\x34\xb1\x66\x92\xfa\xf5\x9e\x5a\x5d\x00\xc2\x2e\x75\x97\xe3\x0e\x03\xf0\xde\x3e\x6b\x53\x3a\x1b\x60\x78\xe7\xe9\xa9\x6d\x1c\x26\x31\xb3\xe6\x06\x9d\xfb\x12\x5b\x82\x99\xbb\x98\x9b\xef\xb9\x8c\xdd\xcf\x26\xfe\x99\x6b\x1d\x4b\x49\x1e\xd2\xd1\xf4\xf5\xa4\x6e\x61\x71\xcd\x0e\xd2\x09\x26\xc7\x67\x3f\xe9\x50\x98\x6a\x79\x98\xf0\xd4\xa8\x5d\xc7\x09\x2f\x70\x95\x6d\x20\x9d\x65\x26\x6e\x6b\x61\x7a\xd7\xdc\xed\x93\x21\x95\x18\x6f\xc7\xd1\xae\x5a\xad\x8a\x85\x84\x29\xdc\xd2\x6e\x25\xbd\xde\x5a\x98\x33\x41\x1d\xc3\x7f\x6a\xcf\x50\xac\x54\xa3\xb8\x97\x89\xbf\x6c\x26\xbd\x5b\xcb\xc4\xf7\x90\x75\xb9\x2d\xb6\x82\xf0\x0c\x2e\x0f\x5c\x18\x47\x79\xe0\xcc\x73\x57\x88\x97\xc5\xf2\x47\x2b\xf1\xfa\x48\x9b\xb7\x31\x5d\x6f\x5f\x6f\x93\x20\x9e\xd5\x2e\xab\x00\x12\xb9\x7b\x15\xb6\x95\x30\xd9\xce\xda\xcb\x84\x49\xbc\xd0\x64\x13\xa6\x7b\x87\xd1\xa7\x99\x89\x6c\xd5\x33\xbd\x35\x8f\xeb\x12\xfe\x21\xbe\x9f\xc4\x6b\x77\xee\xac\x21\xf1\xc2\x75\x71\x67\x48\x1d\xa1\xa5\x2f\x9b\xc8\x38\xcc\xd9\x78\x83\xb0\x08\xdf\x9b\x0f\x49\xaf\x20\xc3\xd7\xb4\x73\xa9\x78\xed\x87\x1f\x54\x8f\x81\x03\x42\x44\xc3\x01\x39\x77\xf2\x66\x0d\x24\xaf\x21\x4f\xf0\x33\x97\xf6\xe6\xfa\x35\xfa\x9b\x24\x07\xdf\x33\x7a\x3c\xbb\x4c\x91\xab\x17\x1d\xaf\x42\xb3\x1a\xc2\x8b\xb3\x0f\x34\x90\x05\x92\xb6\xfd\x1a\xb9\x4f\x10\x7f\xee\x1e\x91\x17\xba\xa5\x8d\x74\xf7\x76\x83\x2e\xf2\xad\x3a\xad\x9f\x08\x3f\x12\xf3\x64\x8b\x70\xdf\x78\xfe\xf7\x14\x6d\x19\x5e\x91\xc8\x54\xea\x2c\x71\xa1\x78\x9b\xa9\x58\xc1\x26\x3b\xd2\x0f\x0f\x2a\xff\x6d\xd3\x9f\x7a\x6d\x15\xbd\x48\xd8\x49\x66\xe0\x6d\xf2\x57\x49\x47\x1f\x91\xf5\x39\x2f\xe9\x25\xe9\x48\x15\x18\xf3\x89\xc8\xb7\x17\xfe\x4a\x9e\x7f\xaa\x09\xfd\x6b\x91\xbc\x3f\x78\x10\xe3\x17\x33\x62\xe4\xcf\x66\xf8\xd0\xa6\x95\x14\xb9\x15\x3c\xb9\xfc\xe7\x23\x73\x73\x93\x7e\xc3\x8f\x61\xff\xe6\x1f\xff\xc4\xa1\xbe\xfc\x6f\x1e\xe4\xf3\x1a\xe0\xd7\x39\x80\x39\x66\x00\x9f\xeb\x01\x56\xc8\x03\xbc\xbb\x0a\x90\xaf\x00\xd0\xa5\x00\x70\xa4\x08\xe0\x25\x02\xdc\x42\x80\x37\x85\x00\x7d\x65\x00\x0f\x44\x19\xfe\x73\xf1\x7f\xf3\x1f\xae\xfd\xfd\x53\x3e\xd7\xfe\xab\x9c\x63\xf8\xc8\xfe\x3f\xec\xbd\x1e\xe5\x41\x7d\x1b\x00\x22\x37\x00\x7c\x10\x06\x48\x16\x05\x78\xf9\x1c\x60\xdb\x5e\x80\x8e\x63\x00\x47\x1c\x00\x3a\x32\x39\x6f\x0e\x40\x07\x02\xf4\xef\xfb\xcd\xc3\xb8\xfc\xe3\x1f\xf9\x8c\x8d\x2f\x79\xfe\x5f\xfe\xf1\x4f\x1c\xea\xcd\x1f\x9f\xcb\x00\xb4\xc4\x00\x58\x6c\x00\x5b\x13\x80\xde\xbd\x00\x33\x7b\x01\xba\xe4\x69\xdf\xfc\x67\xdf\x01\xb6\x68\x01\xb4\x8d\x06\xa8\x0a\x02\x78\x12\x09\x70\xbb\x04\x80\x73\xca\xe8\xff\xfa\x7b\x1c\xfe\xcd\x3f\x4a\x63\xff\x6f\xfe\xc1\xe5\x3f\x5c\x3f\x04\x97\x0f\x28\xd4\x00\x7c\xbf\x08\x60\xd0\x0b\xf0\xb6\x0a\xc0\xeb\x11\x40\x47\x08\xed\x57\xfd\x60\x1c\xc0\x86\x3e\x80\x3b\xaf\x00\x0e\x95\x73\x76\x0d\xfa\x5f\xab\x31\xc0\x90\x20\xc0\x59\x57\x86\x7f\x58\x51\xdc\xdf\xf9\x37\xff\xd8\xae\xfd\x5b\x0f\xae\x7c\x2e\xef\x81\x7f\xd9\x7f\x8e\x5e\x9f\x22\x00\x26\x6d\x04\xe8\x8c\x00\xb0\x17\x05\x78\xf0\x08\x20\x2a\x06\xe0\x66\x05\xc0\x9a\x4f\x9c\xb7\x0f\xa0\xb2\x95\x3e\xff\x9d\xb1\x00\x17\x3b\x01\x58\xad\xbf\xc7\xbf\x38\x80\xe2\x0e\x71\x8a\x5b\xed\x29\xae\xbf\xf7\x5b\x8f\x7f\xcb\xfd\x13\x7f\x30\xbd\xc8\xbb\x62\x01\x44\xa5\x01\x1e\x76\x02\xe8\xcf\x03\xb8\x7e\x13\x20\xa8\x07\xa0\x69\x2a\x40\x86\x26\xc0\xb9\x28\x80\xb2\x7c\x80\x53\xb9\x00\xad\x7a\x00\xc7\x2a\x81\x78\xa0\xf7\x32\x31\xe2\xad\xf7\xfe\x96\xbb\x7a\x19\xc5\xe4\x15\xff\x7f\x3d\xfa\x6e\x51\x7c\xc7\xf4\x2b\x7f\xc2\xf4\x80\xbf\x76\x1f\x80\xb3\x3d\x9e\x33\xe7\x8f\x74\xeb\x00\xa8\x5d\x20\x7c\x6e\xd9\x5b\x80\x8a\x35\x63\xdd\xf7\x87\x01\xec\x33\x1f\xbb\xe8\x5a\x1d\xc0\x6e\x47\x11\xfc\xb5\x03\x20\x7b\xab\x48\x01\xe7\x3b\x57\x64\x0b\x91\xfd\x7c\x89\xa9\xa0\x33\x07\x17\xa6\xf3\x91\x0a\x1f\x31\xe5\x3c\xea\xff\x4b\x8f\x81\xc5\x14\xdf\xf8\x08\x90\xfc\xdc\x3b\xc9\xd2\xa4\x23\xfa\xf9\x07\xca\xc4\x5a\x1c\x7e\xab\xf1\x5c\xf0\x03\xc0\x2e\x37\x8d\x41\xe3\x49\x02\x77\x36\x7d\xd4\x9c\x39\x67\x8e\x48\xca\x2a\x81\x29\xc7\x73\x33\xc4\x21\x79\x85\xba\xea\xb9\x26\x09\xe9\xc4\x1d\x6a\xf5\xef\x8b\xc4\x4a\xe6\x3f\x57\x9b\x81\x38\x66\x5f\x44\xb7\x8a\x2a\xa2\x60\xde\xcc\xaf\xca\x9f\x10\x05\x42\x02\x82\x26\x64\x23\xf2\xad\xf1\xbd\xa6\xd0\x83\x38\x2a\x97\x2b\xff\x57\x33\xc5\x4e\x71\x19\x62\x47\xaf\x89\x4c\x23\x76\xed\x64\x27\xed\x11\x7b\x60\xb5\x3b\xd9\xd7\xb7\x78\xfb\x92\xf8\x58\x4a\xe9\x74\xb9\xc9\x0f\xf8\x05\xa3\xf2\x3c\xdf\xfa\xae\x96\x3a\xe2\x7f\xce\x2d\x76\x95\xa9\xc2\x18\x37\xb6\xb3\x64\x75\xa3\x92\xae\xe3\x29\xc7\x95\xcf\xa6\x2a\x5a\xda\x7f\x76\xb0\x45\x94\xbe\x6b\x95\x66\xf9\x00\x51\xfc\xab\xf9\x4e\xb3\x2d\x88\xa2\x7a\xc6\xc6\xc6\x9e\x88\x63\x5c\xf5\x3b\xf5\x0f\x22\x0a\x7e\x64\xc9\x0d\x27\x3c\xa8\x73\x9e\xca\x3a\xba\xdb\x3b\x90\xfd\xfd\x58\x90\x2f\xe1\x65\xc5\x03\x11\x64\x17\xcc\xb6\xa2\xde\xfb\x44\x48\x20\xf1\xa0\xa0\xdc\x65\x7e\xe2\xda\x00\x36\xf7\x12\xf9\xed\x54\x45\xc7\xeb\xaf\x4b\xa8\x5d\xba\x56\xdc\x54\xd3\x3e\x3e\xb8\x5c\x52\x5c\x4f\x6d\x52\xdc\xd7\x07\xae\xa2\x1b\x55\x25\xe7\xcf\x45\x14\x8e\x57\x49\x09\x9f\x85\x28\x18\x3b\x89\x15\x94\x8e\x28\x70\x72\x62\xa3\xdf\x1b\x44\xbe\x46\xe5\x51\x9e\x66\x88\x7c\x4e\x2f\x6a\xa6\x12\x3e\xda\xd2\xea\x49\x76\xdf\x13\x0b\xc3\xc8\xf8\x17\xd7\xc4\x91\x5d\x79\xb3\xd4\x32\xd2\xe3\x6e\xd9\xd8\x74\x62\x67\x42\xe4\xd7\x13\x7d\x0c\x66\x6d\x23\xf6\x7f\x82\x43\x5e\x80\xde\x10\x4f\xb9\xd4\x9d\xdc\xd9\x71\xe5\x23\x5a\x24\x1c\xb6\x9a\x14\xcf\x04\x10\xd9\xb5\xc5\xaa\xd5\x04\x40\x90\x6f\xe3\x11\xce\x98\xf3\x98\xa7\x4f\xe0\xe0\x48\x8d\x25\x64\x5d\x0c\xcb\x5b\x40\xce\xfb\x3c\x93\xe6\xf2\x73\xf0\x7a\x88\xef\x37\x22\x7f\xe9\x1c\x62\xc7\x0f\xf4\xd3\x28\x41\x4e\xe5\x2a\x62\x77\x53\xe3\x68\x2f\xbd\x68\xc5\x3c\xe2\x3d\x70\xf5\xdc\x43\xf2\xb7\x95\x23\xca\x98\x5e\x9b\xd5\x97\xe5\xc9\xcc\x1d\x2a\x0a\x25\xf6\xae\xa2\x2f\x8f\x30\x87\xb2\xba\xcb\xe4\x7c\x5f\x72\xf1\x27\x89\x7c\xee\x60\xec\xec\xe6\x36\x8a\x6b\x98\x1b\x57\x34\xd3\xf5\x94\x71\x2c\xe1\x85\x25\x81\x69\xc4\x0f\x97\xf7\x71\x23\x91\xb7\xaa\x33\x9f\x8c\x47\x7c\xd9\x9e\x87\xc4\xde\x89\x96\x12\x3e\x68\xfe\xbd\x9a\xe4\xb3\x4b\x8a\x9f\x61\x7a\x84\x9f\x4f\x93\x25\x5d\x0f\xeb\x77\xd3\x6e\xba\xe7\x64\x37\x92\x38\xc8\xd9\xde\x3a\x92\x91\x77\x46\xa5\x67\x01\xd1\x97\xb9\xf9\x5d\xca\xdc\xc0\xde\xc3\xd8\xfd\x3c\xd2\x79\xa7\xb2\x75\x35\x99\x97\xed\xb7\xb6\x92\x79\xc9\xca\xde\x4d\xac\x74\xd2\xf0\x52\xc2\x6a\x66\xed\xa9\x22\x79\x42\x1e\xe6\xa7\xc8\xef\xe9\xea\xd0\x3c\x2a\xe1\xd4\x96\x89\x54\x8f\x3b\x29\xe3\x4f\x72\xb0\xb5\x88\x76\x6d\xbe\xd9\x91\x49\x56\xd0\x8d\xc1\xa3\xe4\xa4\x71\xfd\x61\x27\x79\xb2\x4b\x4c\x46\xcf\x19\xe6\x46\x7a\x0d\xe3\x49\x29\x27\xe7\xaa\x82\x3b\x79\x7e\x64\x1d\x7a\xec\x27\xf6\x3f\x75\xcb\x21\x62\x95\x63\xbc\x8e\x91\x9e\xd0\x81\xaf\xeb\xc9\x7a\xb0\x9b\x7b\x89\xf0\x56\x8d\xfd\xb7\xc8\xbc\x8c\x1a\x7a\x54\x4c\xf5\x78\xb9\x4e\x82\xbc\x49\x9d\x3a\xae\xc4\x73\xf2\x22\x6d\x79\x0f\xc5\x43\x44\xce\x73\xf6\x63\xc2\x20\x9e\x30\x11\x3d\xee\x8d\x30\xae\x5e\x75\xe4\xdc\xb7\x65\x4b\x39\xe1\xe3\xe9\x51\x47\x49\x5d\xeb\x45\x32\x75\xe4\xaf\xa2\x72\x2e\x13\x9e\x38\x5d\xfe\x06\x61\x57\x96\x19\x0f\xc8\xe8\xab\xc9\xb7\x13\xbd\x78\xe2\xdf\x30\xbc\xb0\xcf\x46\x98\x44\x7c\xbf\xa1\x1d\x61\x28\xdf\x0b\x93\x88\xe7\xf9\x7b\xda\x7e\xe2\x89\xfe\x1e\x70\x97\xf8\x7f\x7a\x36\x0c\x90\x6f\x7e\xc9\xf8\xa5\x1e\xef\xa3\xd8\xaa\x40\xf6\x57\x86\x87\x2e\xdd\xd7\x48\x66\x37\x16\x5a\x88\x1f\x2a\xe4\xfd\x5d\x1a\x17\x1c\x7c\x4a\xfc\x45\x26\x32\xb4\xfe\xe7\x84\x4e\xca\x62\x78\xdf\xff\x34\xa7\x7a\x20\xf2\xde\xa4\x68\xca\x60\x34\x93\x17\xb4\x8d\xf9\xcc\xf5\x4b\x51\x26\x39\xe8\x4c\xe5\x77\x33\xfe\x3a\xea\xbf\xfb\x8b\xff\x88\xfd\xc1\x3b\x2a\x00\xf4\xf6\x03\xf4\xff\x00\x30\x6f\x05\xf8\xbc\x15\xc0\x63\x16\x40\x17\x0b\x20\xec\x10\xf5\xf3\x2c\xf6\x00\xb8\x57\x04\xc0\x79\x93\x6f\x75\x72\x98\x37\x40\x6b\x29\x40\xdd\x71\x80\xd6\x10\x80\xa7\x21\x00\xad\xdf\xe8\x77\x36\x30\x71\xa9\x63\xeb\xff\xb6\xbf\x25\x2e\xff\x37\xff\xe0\x22\x87\x0f\x7d\xb3\xa5\xf6\xfe\x7d\x34\x80\xc3\x64\x80\xe7\x76\x9c\x35\x03\x70\xff\x23\xc0\x02\x8e\x7d\x0f\x02\xc8\xfa\x08\x70\xdd\x03\x60\xaf\x07\x40\x4b\x3c\x40\x9d\x05\xc0\x0d\x2f\x80\x0e\x47\x80\x66\x26\x86\x75\xea\x23\x23\x7f\xdb\xdf\xf2\xf7\xb4\xff\x97\x7f\x70\xfd\x2e\x5c\x1e\xa0\x70\x1a\xa0\x37\x02\x40\x7d\x0b\x40\xd7\x58\x00\xf3\x78\x80\x47\x53\x00\xbc\x77\x01\xb4\x1a\x01\xcc\x6d\x06\x68\xfe\x06\xb0\x4a\x1b\xe0\x92\x01\xc0\xee\x2d\xd4\xde\xd7\x7d\x03\xb8\x3c\x0b\xe0\x45\xd4\xef\x71\xe0\xda\xff\x7f\xf8\x07\x23\x23\xff\xc3\x7f\xf9\x07\x97\xff\x8c\x2c\x03\x18\x30\xa3\x9f\xdf\xf7\x02\xc8\x14\x02\xb4\xb7\x02\x68\xc7\x01\xdc\x71\x00\x70\x8a\x03\x68\x5e\x0b\x10\xb9\x08\xe0\xa2\x12\x8d\xd3\xd5\xc7\x03\x14\x7e\x02\x38\x17\x07\xc0\x79\xc3\xce\x8e\x06\x78\xe1\x08\x70\xec\x5f\xfc\x67\xc7\xc7\xbf\x79\x40\xf6\x1f\xbc\xf0\x2f\xfe\x93\x41\xf1\x7b\x05\xc5\xb7\x9c\x77\x03\x01\x1e\xd9\x01\x28\x4d\x01\xb8\xf6\x18\xc0\x4c\x82\xc6\xfb\x38\xfc\xe3\x74\x38\x00\x67\xe7\x3f\xe6\x01\xb0\x33\x1c\xe0\xc8\x67\x80\xb3\x2b\x01\xaa\x62\x00\x3a\x63\x7e\xf3\xbf\xed\x29\x7f\xcb\xcd\x64\x62\x7a\xcb\xcf\xff\x6f\xfe\x31\xc8\xbc\x05\x3d\x05\x14\x3b\x98\x9f\x73\xd6\xe1\x68\x4f\x80\x0b\xcd\x00\x1a\x71\x00\xc7\x03\x00\x3c\xf2\x01\x0e\x3d\x07\x48\x28\x02\x28\x93\x01\xc8\x1f\x0e\xb0\x7f\x1d\xc0\xd9\xa7\x00\x45\x85\x00\x2f\x27\x01\xe4\x8f\xa7\xdf\x9d\xc5\xf0\xb1\xe5\x93\x28\x2e\x66\xfc\x56\x71\xcb\xfe\xa5\x07\xd3\x99\xbb\xf7\x24\xc5\x17\x4c\x67\xe6\x7b\xcc\xb8\x5c\x64\xbc\xe9\xc7\x6e\x02\x8c\xd3\x06\x28\xef\x01\xb0\x3c\x02\xb0\x77\x23\xc0\xbc\x83\x00\xdb\x0f\x02\x6c\xf5\x04\xd8\xf2\x0d\xe0\x54\x26\xc0\x86\x1f\x00\x1d\x9e\x00\x19\xf3\x18\xb9\xcc\xfc\x44\x31\xe7\x86\xf0\x34\x8a\x81\x69\x7f\xeb\xd1\x37\x9c\xbb\x3b\x32\xf2\x23\xb8\xf2\xf9\xa6\xd1\x5d\x78\x2c\xf1\xbb\xef\xee\x94\x24\x3d\xc6\x37\x9d\x90\x53\xd1\xf2\x1b\x21\x9d\xde\xa5\x30\x66\x66\xe0\x28\xe3\x24\x3b\xf9\xe4\xac\x0e\x3e\xe1\xd8\x4b\x72\xfe\x55\x57\xf8\xd2\xa3\x3d\x65\xb3\x1e\x0a\xf0\x9e\x8a\xfc\x22\xdb\x87\xc8\x73\xc7\xdf\x42\x76\x22\xe2\xc8\x50\xcf\x62\x71\x12\x5f\x70\x59\x20\x4c\x2a\xf0\xdb\xf6\x8f\x26\x91\xfb\x9f\x91\x8c\xfc\x6a\x20\xbc\xe7\xce\x3c\x61\x62\xf7\xeb\xe5\x69\xc7\xd9\x4a\x79\x9a\xbf\xbd\xbd\xd3\x84\xec\xd6\xe9\x69\xd6\xe4\x54\x3d\x7f\xba\xa3\xb1\xf4\xcf\xe1\xa2\x01\x5a\xb6\xbb\x9c\x1c\x84\x4f\xb8\x8c\xb1\xda\x90\x94\x23\xba\xc6\xb2\xdc\xfc\x71\xb1\x9b\x78\xb2\xf1\x59\xb3\x31\xd7\x78\xc5\x0e\x18\x1e\x32\xd3\xfa\xa5\x22\xa2\xad\xbb\x48\xbf\x1f\x71\x74\x92\xd6\xe6\xa9\xf9\x88\x7c\x4f\xa7\x9c\x98\x92\x87\xc8\xeb\xa6\x92\xa4\x32\x1b\x91\x67\xe9\xdb\xfd\xc3\xe6\x90\xdd\xf5\x83\x74\x3e\xb1\x42\x9f\xf4\xc9\xf9\xb5\xec\x93\x03\x59\x29\xdb\xac\xa8\xf5\x4a\x87\x20\xe2\x9f\x98\x63\x1d\xb9\x83\x83\xf6\x71\xf3\x86\x46\x54\x03\xe8\x36\xcc\x1d\x6f\xf8\x82\x6f\xf9\x64\x97\x39\x8e\x31\xcb\xf8\xf9\xe5\xdb\x66\x3b\xef\x5c\xc3\xfb\x4b\xfa\x55\xe4\x9e\xa6\x53\x3c\x87\xa4\x56\x46\xbc\xf8\xb2\x6a\xb8\x85\x58\x63\x20\xf1\x73\x88\xf6\x7a\x91\x7c\xbe\x31\x99\x2e\x84\x77\x08\x8b\xdb\x92\xbc\x90\x5b\x0d\xca\x24\xef\xe4\x8c\xb2\x1d\xe9\x24\x5d\x2e\xe3\x4b\xfc\x10\xf9\xf3\x68\x87\xfe\x8c\xe1\xf3\xc8\x38\xc5\xbc\x59\x48\xe2\x23\x5e\x71\xc9\xc4\xfe\xab\x57\xad\x26\x7a\x09\x8f\x5d\xfb\x6d\xd2\x68\x80\x11\x5e\x59\x8b\x83\x89\xff\x63\xd5\xb1\xcd\xa4\x47\xf1\x4a\x56\x1d\xe9\x85\xbf\xc2\xec\x2d\x39\x91\x27\x32\xbc\x23\x66\x2d\xc5\x48\x86\x07\xcc\xdc\xc3\xc1\xb3\x66\x94\x88\x57\xca\xcf\x24\xf1\xaf\xfc\xa9\xb4\x07\xf9\xaa\xea\xc5\xc4\x0f\xb5\x30\x74\x05\xf1\x5b\x06\x37\xd3\xfc\x1d\x0b\xf6\x26\xe2\xff\x18\xef\xbf\x9d\x59\xb9\x7b\x16\xc8\x12\xde\x53\xb0\xc7\x9f\x7c\xd5\xce\xbd\x6b\x9e\xd2\x99\x3c\x46\xd6\x7e\xde\xb0\x76\xc2\xfd\xb9\x15\xef\x32\xee\x50\x4c\x61\x3a\x24\x2c\x96\x20\xfc\x43\x9e\xc6\xe7\x76\x4c\x58\x4c\xf2\xf6\xb3\xb2\xd3\xc8\x7a\x48\x84\xb5\x24\x4f\x2a\x52\x7b\x0b\xe1\x1d\x1e\x22\xdb\x09\x3f\xd6\xb9\x51\x44\xb2\x3c\x04\x6f\x55\x32\x3d\x8e\xab\xb5\x65\x89\x3d\x3b\xe4\xe1\x4d\x3c\x28\x07\x87\xa7\x11\x4b\x5d\xf1\xb1\x92\xcc\x68\x59\xdd\x5d\xc2\xdc\xb8\xfc\xa7\x80\xa9\x00\xb8\x95\xe1\x41\xeb\x08\x0f\x29\x14\x5d\x42\x3b\x7f\x9f\xcf\x24\xe3\x9e\x1a\x97\x43\x78\x50\x2c\x14\x10\xbf\xdd\x8c\xf0\x22\x62\x2d\xad\xf7\x96\x92\x7c\x25\x95\x92\x23\xc4\x0b\x35\x7c\xfb\x99\x2e\xaa\x47\xa3\x92\x34\x19\x87\x7a\x25\x3a\xb2\xe7\x64\x93\xc9\x8d\xb3\x3a\x87\xfd\x07\x39\x78\x56\x8a\x46\x98\x4e\xbd\xe9\x27\xfc\xe0\x70\xe5\xff\xe2\x65\x9b\xc2\xd7\x13\x6f\xc5\x0a\xf9\x3c\xc2\x0f\xe3\xbf\x15\x91\xf1\x08\x1f\x5d\x4a\xec\xbe\x87\x76\x15\x99\x07\xe3\xa6\x13\xe4\x4d\x56\x12\x6c\x08\x26\xe2\xd2\x9a\x37\x52\x3d\x6e\x9d\x91\x5c\xc2\xc1\x1b\x35\x8e\x64\x7e\x6e\x1c\x5c\xf4\x96\x7e\xde\x43\xc6\xe3\xda\xa7\xcb\x44\xe3\xab\x1f\xbb\x09\xb3\x3a\xcf\xf8\xc9\x4e\x31\x3c\xe8\x08\x39\xbb\x64\x89\xee\x22\x3c\x39\x31\xa0\x84\x4c\xd0\xdc\xb8\x6a\xc2\x8b\x66\xbc\x3d\x4e\x78\x87\xe3\xb9\x73\x24\xda\x35\xad\x96\xee\x64\x32\x9f\x6f\xac\xa6\x7a\x3c\x12\xa3\x7a\x3c\x3f\x2b\x46\x6c\x41\xfb\x36\x9b\xf5\x1c\x7c\x26\x33\x9f\xac\x8b\x76\xa5\x1d\x24\x10\xf5\x74\x69\x3d\xd9\x1b\x9e\x64\xbf\x19\xc7\xc1\xbb\xcc\xcd\xfc\x6b\x4c\xe5\xe8\x0b\x64\x0f\x4b\x31\xab\x24\x4f\x33\x7f\xc1\x51\xf2\x9c\xe1\x70\x96\xf0\x3f\xdf\x1f\x97\x1c\x39\x68\xd5\x73\x8d\xac\x76\x5d\xc5\x7b\x84\x5d\x49\xcd\x7f\xaa\x47\xe5\x77\xd1\xc2\x54\xf0\x45\x4e\x88\xc6\x25\x9b\xcd\xc8\xf3\x7f\x0e\x8b\x22\x95\x32\x3f\x5b\xd0\x19\xee\x8e\x38\x49\x78\xea\x87\x0d\x4f\xc9\xde\xfc\x86\xf1\x24\x3d\x6b\xa1\x19\xf1\x77\x4f\x72\xf7\x53\xae\xbf\x85\xc3\x37\xd8\xe9\x00\x9c\x01\xe9\xbd\x04\xa0\x95\x03\xf0\xea\x07\x80\x71\x2c\x40\xdb\x36\x00\xc7\x1f\x00\xb7\xbe\x02\xf8\x77\x02\x5c\xa9\x03\x98\xd7\x0a\x70\x3e\x09\x20\x55\x1c\xa0\x21\x15\x60\x5b\x39\x40\xa3\x07\x40\xd5\x4a\x80\xc6\x0a\x80\xeb\x15\xd4\xf6\x72\x18\xe4\x59\x6b\x2a\xe3\xe0\x49\x8a\xfb\x96\xfd\xdf\xfc\x43\xa6\x83\xc6\xb9\x64\xe3\x00\xba\x6b\xe8\xcf\x3b\x7c\x00\xa6\xd6\x00\xdc\x2b\x07\x30\xbb\x02\x70\x5d\x07\xc0\x2b\x02\xe0\xa2\x36\x40\x94\x28\xc0\xb9\xe1\xd4\x2f\x74\xb6\x18\x60\x9b\x07\xc0\xe9\xfb\x00\x87\xee\xd2\xbc\x97\x6b\x9d\x94\x07\xf4\xc6\x02\xd4\xca\xff\x6d\xff\x0b\x17\x31\xfc\x63\xeb\x7f\xf9\xc7\xd8\x3d\x00\xbf\xbc\x01\x44\x36\x02\xbc\xad\xa3\x7e\x98\x67\x8e\x00\x93\x92\x01\xee\x8c\x01\xd0\x4f\x00\xb8\x54\x01\xe0\x6c\x46\x6d\x6a\x68\x21\xc0\xd1\x74\xea\x17\xaa\xd6\x06\xd8\x58\x0b\x50\x3d\x12\xa0\x62\x1f\x40\xed\x45\x80\xeb\x08\x50\x2b\x09\xf0\x39\x17\xa0\xf4\x27\x23\x3f\x91\x62\x4e\xef\xbf\xf8\x47\x19\x00\xdf\x12\xc6\xde\x4d\x00\xf8\xb2\x83\xce\xfa\x6b\x6f\x80\x91\x17\x00\x1e\x75\x03\x48\x78\x03\x5c\x5b\x0b\xa0\x72\x02\xa0\xfe\x15\x80\xb9\x13\x00\xe7\xed\x09\x14\xe5\xec\x3f\x00\x0b\x3a\x01\xca\x36\x01\xac\x8f\x07\x38\x70\x8c\xfa\x41\x38\x9f\xaf\x29\x02\x94\x99\x01\xf4\x3e\xff\xfd\xfc\x1b\x99\x7c\xa0\x35\xcc\x38\xac\x60\x64\x73\x79\xcf\x60\x1d\xc5\x1e\x55\x8a\x5c\xde\x71\x47\x1e\x80\x73\x12\xe7\xf0\x2e\xc9\x1a\x80\xe3\xfe\x00\x3a\xd7\x00\x2a\xaa\x01\xdc\x7b\x28\x27\x8d\x3e\x07\xb0\x67\x09\x90\x9d\xaf\xd0\x0c\xa0\x34\x1b\x60\x57\x11\xc0\xf5\x20\x80\xc2\x4d\x00\x3f\xca\xa9\xef\xea\x4f\xb9\x49\x0c\x1f\x58\xc8\xf0\x21\x2e\xef\xf8\xc6\xe0\x1b\x6b\x8a\x0f\xb4\x28\x36\xf7\x50\xe4\xcc\xf7\x70\x6d\xca\xb3\x95\x12\x00\x8a\xbc\x01\xac\xd9\x00\x3b\xb2\x01\x22\xd7\x03\x6c\xad\x03\xc8\x34\x03\xd8\xd4\x02\x50\xf6\x94\xca\xbd\x5e\xce\xd9\x2d\x01\x7e\xa9\x01\x24\x8f\x61\x78\x0f\xc3\xc9\x67\x31\x9f\xc3\x99\x35\x31\x70\x93\xca\xf9\xc0\xa2\xf8\xf4\x35\xb3\x3b\x9d\xa3\x58\xcf\xdd\xbd\x99\xf1\xd9\xa3\x49\x79\x6b\xee\x76\x00\x0e\x31\x59\x27\x0e\x10\xb8\x12\x20\xbd\x0f\x60\xe5\x46\x80\x64\x16\xc0\x81\x37\x00\x49\x53\x01\xae\x87\x01\x24\xdc\x03\xf8\x51\x0f\x30\x9b\xf1\x0b\xfa\x17\x50\xf4\x60\xee\x0e\x3a\x33\xeb\x97\x3b\x0f\xcf\x69\x1a\x30\xb4\x3a\x50\x3c\xaf\x49\xb1\xf6\x10\xc5\x03\x1f\x81\xec\x2b\x9b\x3f\x8d\x22\xf1\xa1\xb4\x45\xa3\x7d\x94\x26\x02\x2c\xda\x36\xa6\xcb\x73\x0c\x40\x74\xae\x48\xce\xb2\x6e\x80\xd0\x1d\x63\xe6\xec\xb5\x04\x08\x88\x16\xb6\xbf\x54\x0b\xe0\x5b\x20\x34\xb9\x7b\x3e\x80\x33\x9b\x9f\xe4\xa8\x5b\x94\x0d\x37\xc4\x3f\x73\xf7\x7e\x50\xe4\xf2\xaf\xbb\x2e\x8c\xfc\x11\xc3\x88\x1d\xab\xde\x20\x4e\xf2\x94\x0a\x77\x2a\x91\xcf\xeb\xe5\xd5\xc8\x2e\x95\x08\x3a\xc4\x9a\x05\x3e\x31\x34\x10\x8c\x03\x70\x9e\x67\xf0\xc1\xb4\x62\xd4\x4f\x93\x43\xd3\x82\xe7\xe6\xf1\xcf\xd1\xd6\xd0\x1d\x9d\xab\x22\x90\xa2\x2e\x30\xb5\xfd\xcc\x52\xfe\xbd\x93\x6f\x4c\x1d\xdf\xd9\xc9\xfb\x6e\x42\xa8\x46\x1e\xe2\xc8\x00\xb9\x5c\xe5\x62\xc4\xe1\xbe\xd2\xdb\xe5\x77\x23\x0e\xe3\x95\xc8\x92\xea\xe0\xe8\xc1\xe5\x7f\xf5\xf2\x12\xe4\xbe\xda\xa1\xea\x49\x64\xf7\x2b\x10\x30\x24\xbb\xdf\xda\x01\x1b\x92\x35\xba\x28\xdd\x85\x8c\x43\xa0\xa8\x0f\x89\x53\x19\x74\x06\x11\x26\xa9\xf8\x31\x38\x48\x3d\x61\xb8\xb3\x44\xfb\x4c\x8d\x90\x95\x00\x42\x62\x01\x0b\xd6\x37\x00\xf0\xf2\xf8\xdb\x1e\x75\x01\x18\x21\xe8\xfb\xad\x8d\x64\x70\x78\xbe\xa3\xfb\xa8\x2d\xd3\x81\xc0\xac\x99\xa2\x3e\xc9\x67\xab\xab\x93\x27\xf6\xfd\x10\x1a\x93\xf3\x6b\xe1\x2a\xfb\x52\xf2\xfc\x92\x3e\x64\xa4\x12\xc7\x04\x93\x7c\xa0\x30\xab\x59\xc4\xee\xd9\x7d\xa0\x75\x86\x14\x32\x16\x33\x2b\x3b\xf9\x98\x14\x89\xa8\x26\x4d\xf5\x21\x3b\xff\xa2\x27\x19\xe4\x9c\x9d\x20\x76\x90\x30\x98\xb8\xd6\x7b\xe4\xbc\x3b\xdf\x11\x89\x87\x2b\x84\xe1\x43\xfe\xcc\x8d\x73\x2f\x12\x87\x39\x2c\x67\x49\xf2\xb5\x0b\x84\x3d\x89\x9c\x75\xa1\xc1\x24\x0e\xb2\xb4\x76\x2e\x59\x21\xb3\x7b\xe3\x09\x2f\xf0\x74\x4e\x22\xf6\x4d\xef\x48\x9a\x01\x07\x05\xef\xad\x1d\x43\xf5\xc8\x3e\x20\x93\x47\x67\xce\x83\x3c\xc9\x9a\xea\x64\xf2\x39\xab\xe9\x00\xf9\xcb\xd5\xfd\xd7\xc8\x5f\xac\xd2\xa0\xbe\xd8\xa5\x4c\x87\x88\xb8\xc3\x14\xe7\x90\x8a\x7c\x7b\xe4\x83\x88\x5f\x6e\x83\xfb\x1c\x12\xcd\x4a\x7e\x4d\xfd\x70\x73\x2f\x27\x93\x5b\x4c\xfe\xbd\x19\xc4\xde\x5a\xf3\xac\x23\xfa\x4d\x4e\xa4\xf7\xdb\x86\x2d\x2b\x38\x4e\xf5\x28\x72\x97\xd9\x4b\x57\x92\x0b\xf1\x68\x15\x32\x91\xbe\x02\xab\xdd\xf4\xa6\x97\x65\xd3\x42\x0e\xe6\x9f\xa7\x19\xce\x5c\x5e\xb6\x7a\x01\xc5\x15\x64\x3c\x36\x0d\x8f\x25\xd1\x99\x15\xf2\x4b\xc8\xf7\x2f\xd0\x5e\x45\x9e\x8a\xeb\x8f\x73\x0f\xc9\x21\x27\x1a\x43\xff\x1d\x24\xba\xa2\x50\xb1\xd7\x8a\xca\xaf\xa4\x44\x0e\x0e\xeb\xca\xca\xd2\x99\x75\x20\x7b\x4d\x65\x7b\x1c\x91\x5b\x99\x9d\x4f\x56\x5c\x45\x1c\xe7\xdc\xcd\x61\xde\xf4\x06\xda\x81\x09\x7f\xf3\xb2\x5c\x92\x71\x9c\xde\xb8\x82\xcc\xf7\xa2\x37\xeb\xc8\x4e\x32\x8b\x9d\x43\xac\xf1\xf4\x95\x05\xe4\xbd\xb0\xdb\x48\xf3\xb7\xb4\xed\xca\xe7\x73\x50\xa2\xaa\x5a\x98\xca\x3f\x2b\xce\xac\xf0\xad\x52\xc4\xaf\x71\x8e\xc7\x76\x80\x83\x75\x19\x31\x84\x77\xd5\x95\x6d\x25\x4f\x72\x56\xfd\xc4\x78\x0e\x9e\x32\x7a\x44\x32\xaf\x4f\xac\x44\xb2\xc2\x0f\xdd\xa4\x7a\x94\x90\x0a\x3d\x4b\x1d\x36\x93\x1d\x2b\x16\x0a\x88\x3f\x2c\xf8\x7e\x31\xd9\xe1\xdd\xed\xcb\x48\xfd\x2b\x33\x89\x2a\xb2\x2e\xd4\x76\x1d\x23\x7e\xb9\x31\xd5\x75\x8c\x05\x68\x2e\xa2\x78\x63\x9f\x24\xd9\xfb\x5a\x24\x2c\x25\x08\xa6\x46\x91\x7c\xa5\x96\xf6\x6c\xc2\xfc\xaf\xa9\x1c\x21\xfe\xb1\x66\x87\xdb\x6d\x1c\xbc\xb4\xed\x3b\x89\x08\x72\xe3\x84\x27\x89\x1f\x93\xeb\x0f\x8c\x14\x2a\x4d\xe2\xa0\x5f\x40\x15\xd1\xc7\xc1\xfc\xd8\x31\x0e\x1a\x59\x9e\x23\xbc\x51\x79\xe5\x05\xb2\xd3\x0b\xad\xbc\xa6\x48\xe5\x3f\xc8\xa1\xf8\x54\x40\x94\x78\xc0\x9f\x66\x98\x92\x11\x6b\x5b\x4c\x4f\x1c\x4f\x1c\xb2\x88\xe6\x4f\xc6\x1e\x24\x33\xfd\x30\xab\x85\x74\xd6\xbb\x5f\xd3\x43\x6e\x94\xdc\x7c\xc6\x26\xe3\x78\xe5\x3b\xd7\xce\x71\x78\xc6\x4f\x3b\x00\xc5\x68\x80\xf7\xf2\xd4\x8f\xdf\xe1\x08\xa0\xbe\x1d\xe0\x2e\x1b\x40\xa7\x07\xe0\x6a\x1c\x00\x67\x61\x34\xf0\x03\x78\x74\x02\x1c\xff\x08\x10\x66\x03\x50\x35\x1e\x60\xe1\x6e\x80\x83\x52\x00\x99\xd3\x01\x2a\x2e\x00\x14\x74\x00\x70\x64\x1f\xbf\x05\x70\x8c\xc9\x11\xaa\xaa\x05\xf8\xd1\xf0\xdb\xff\xc2\xb5\xbf\xb9\x8a\xbf\xf9\x87\xcc\x7d\x80\xaf\x06\x00\x12\x2d\x00\x5d\xaf\x00\x24\x4d\x00\x9e\xc4\x02\x28\x7c\x06\x68\x5d\x0d\x30\x65\x1a\xc0\x25\x6d\x00\xa3\x5e\x80\xb3\x9f\x00\x9c\x1b\x01\xaa\x7e\x00\x04\x36\x01\x54\x08\x01\xc4\xde\x02\x28\xe1\x01\x58\x35\x09\xe0\x40\x1c\x40\xc1\x2f\x9a\x2b\x7c\xbc\x86\xda\xfd\x07\xbf\x00\x2a\xe4\x00\xfa\xeb\x01\xf6\x30\x79\x43\x5b\x19\xde\xb1\xbe\x95\x22\xeb\x35\x00\x7f\x17\x40\xcf\x44\x80\x51\x03\x00\x2f\x13\x69\x3e\xcc\x3d\x0f\x80\xb1\xad\x00\x2d\x93\x00\x64\xaf\x70\x66\x93\xf2\xc5\x1a\x59\x00\xf3\x41\x80\x92\x52\x00\x6f\x65\xea\x5f\x98\xd3\x45\xed\xfe\x4a\x0f\x80\x5d\x7a\x00\x1c\x7e\xbc\x3b\x0e\xe0\xa4\x18\x00\xe7\xed\x7a\x98\x4c\x7d\x67\xec\xee\xdf\xf2\x57\x1f\xf9\x9b\x07\x0c\x32\xbb\x40\xf7\x35\x8a\x5c\xde\x41\x6e\x75\xd4\x52\x7f\x83\x88\x2b\x1d\x5f\x45\xa0\xbc\x67\x9a\x2c\x40\xd1\x76\x1a\x37\xdc\x19\xce\x39\x21\x52\xdf\x47\xca\x26\x80\x5c\x7b\x80\x1d\x26\x00\xdb\x1c\x01\x4e\x4a\x03\xec\xc8\x05\x68\x9f\xce\x39\x27\x53\x79\xe9\xb7\x28\x2e\xe3\xa3\x98\xc0\xf0\x32\x2e\xef\xa0\x51\xe2\xdf\xbc\xe3\x3a\xa3\xcf\x59\xc6\x4b\x7a\xd0\x0d\x60\xcc\x6b\x80\xbd\x69\x00\x2a\x85\x00\x79\xc7\x01\x6c\xe4\x01\x38\x47\x85\x80\x6d\x00\x59\xad\x00\x89\xde\x00\x6b\xbf\x01\xe4\xaf\x01\xc8\xb2\x03\x38\x19\x09\xb0\xfa\x3d\xc0\x53\x89\xdf\xf2\x17\x33\x79\x42\xd1\xdb\xfe\xe6\x1f\xff\xe6\x5f\x34\xf6\x0c\xd0\x14\x46\xf1\x84\x01\xc5\xfd\xcc\x69\x76\x5b\x35\x80\x44\x07\xc0\xfa\x66\xca\x57\xd3\xfd\x01\x7c\xd8\x00\xc9\x0d\x00\x09\xde\x00\xcb\x2a\x00\xf2\xfc\x01\x92\xd4\x00\x4e\xbe\x03\x58\x54\x04\xf0\xdc\x12\x20\x9e\xc9\x9f\x0a\x61\xc6\xc5\x8f\xd1\xc3\x95\xc9\x63\x7a\xab\xc1\x8c\xc3\x1d\x8a\xd7\xce\x52\x3c\x27\xcb\xec\x96\x0c\xff\xd8\x73\x94\xe2\x5a\xce\x6e\x13\x08\x90\x7a\x06\x60\xf2\x7e\x80\x84\x71\x00\xce\xfb\x01\xe6\xdb\x01\xc4\xdd\x07\x98\x65\x00\x90\xcb\xe2\xec\xc7\x00\x27\x3b\x01\x82\x2c\x01\x9e\xb9\x02\xf8\x4b\x52\x9f\x2c\x97\xf7\x98\x7b\x53\xe4\xf2\x90\x36\x86\xef\x5c\xab\x66\x76\x47\x86\x7f\xd5\xdc\xa7\x78\x80\x19\x8f\x6d\x12\x14\x69\x54\x02\x80\x73\x66\x13\x7b\x08\x10\xa1\x07\x60\xe5\x04\x30\xbd\x1a\x60\x5e\x1a\x80\xeb\x4a\x80\x2d\x31\x00\xb6\x62\x00\x47\x6f\x00\x58\xa4\x00\x3c\x5a\x05\x60\x32\x8e\xca\x9b\x12\x44\x51\x91\xf1\x97\x49\x33\x71\xe6\x5b\x09\x7f\xcb\x3f\xd2\xc4\xc8\xd7\xe2\x21\xd6\x31\xc7\x4c\x84\x98\xad\xd4\xcb\x92\xa4\x7e\xdd\x9c\x7e\x05\x62\x5f\x9c\xf9\x55\x78\xc8\x3e\x37\x4b\x4d\x4f\x6b\xf4\x70\x39\xb5\xbb\x2a\xfc\x33\xc7\x8e\x88\x50\x38\x38\x69\x72\x66\xf0\x88\x69\x52\x2d\xca\xc2\x07\xa7\x0f\xb3\x94\xb8\x38\x61\x7f\x6b\x05\x80\xe8\x18\xc5\x6f\xbf\xb6\x01\xf0\x9b\x49\x91\x7b\x8f\x3c\x0d\x22\xe3\xe8\x7e\xca\x4f\xf6\xd5\xf3\x49\x54\x6e\xad\x3c\x3f\x19\x99\xa2\x29\x32\x64\x17\xdc\xd4\xa1\x4a\x66\x66\x85\x3c\x71\x8f\x41\xd4\x76\x53\x72\x0e\xf6\xd0\xb6\x26\xa7\xd5\x29\x07\x5d\x88\x57\x43\x50\xd1\x4b\x52\x9a\xd8\x2f\xb7\xc5\xee\x24\x02\xe1\x74\x62\x39\xa9\xf0\xe3\x50\x57\xa2\xcc\x41\xdb\x8f\x34\x63\xc5\x7a\xce\x57\x12\x29\x31\x64\x6e\x12\x6b\x31\x7e\x18\x95\xfd\x1c\xac\x95\x97\x68\xa5\xf2\x55\xc9\x8a\xdd\xd4\x4c\xb3\x37\x53\xcd\x6c\xc8\xca\x8c\x3e\xe7\x46\xfc\x00\x7e\xa7\xa7\x13\x2b\x6a\xf2\x2d\x88\xf0\x03\x71\xf2\xb6\x92\x11\xda\x2a\x49\x2c\xf1\xac\x8f\xce\x24\xcf\x23\x52\x7b\x09\x19\xc9\x30\x57\x1a\xb9\x0a\x91\x3f\x4f\x7c\x8f\xc1\x71\xef\x89\x5f\xc4\x8f\xb9\xc1\xe3\xcc\xd8\x17\x5b\x23\xc2\x3f\x5a\xf5\x88\x1f\x28\xc7\x85\xca\x4d\x4b\xf5\x25\x9f\x63\x81\x66\xf9\x06\x44\x50\x79\x76\xf9\xb4\xbe\x82\x4a\x55\x3c\x39\xc5\x8f\xe8\x58\xba\x85\xea\x91\xf2\x63\x3c\x61\x52\xc9\x31\xf6\x31\x1c\x5c\xd2\x1b\xf7\x99\x60\x0e\xf5\x18\x25\xf1\x9f\x21\x3f\x4f\x68\x6d\x27\x4f\x1c\xf7\x96\xca\x8f\x60\x6e\x5e\x07\x91\x5a\x9f\x39\x81\xee\x84\xf7\xa5\x43\x30\xf1\x77\x2d\xd0\x8e\x22\x2b\x24\xf4\x76\x1c\x79\x43\x5c\xc3\x28\xab\x31\xf8\x9e\x42\xf2\x53\x64\x96\x67\x30\x3b\xca\x06\xc6\xde\x6d\x0c\x90\x22\xf6\x76\x7d\x9b\x0d\xc9\xa0\x59\x2f\x4f\x23\x9b\xeb\xbd\x28\x63\x5a\x73\xbb\x86\xec\x05\x59\x1f\x1e\x10\xbb\xbf\xaa\x73\x90\xfc\x65\x32\x93\x61\x9b\x40\xfc\x41\xe9\x77\x23\xc9\x68\x26\x42\x1c\x91\x1f\xd1\x91\x44\xd8\x81\x1f\xa4\x10\x6f\x92\xed\xda\x4c\xb2\x3e\xb5\x26\xad\x27\x56\x5b\xcc\x73\x2b\x93\x9f\x54\xb0\x82\x22\x97\x8f\xed\x8e\xb3\x21\x1e\x91\xc2\xdb\xb3\x48\x06\x73\xa1\x19\x65\x52\x05\x8d\x07\x89\x3e\xdb\xb3\x6f\x92\x38\xdd\x8e\xed\x7d\xc4\xee\x73\x79\x59\x16\xc9\x8b\x59\xb2\x9e\xf2\xdd\xb9\x39\xa9\xc4\x3a\x73\xfd\x71\xce\xad\xd9\xe4\xe7\xc6\x77\x73\xc9\xc9\x66\xd2\xd6\x1d\x24\xce\x3b\x7a\xeb\xde\x9d\x54\x3e\x97\x8f\x1d\x42\xaa\xc7\x21\xa4\x44\xad\xa2\x25\x82\x30\xec\xf2\xd3\x19\x94\x97\x7d\x2a\x23\xdf\x58\x5e\x76\x85\x60\xd9\xe5\x8f\xe4\x46\xfe\xbe\x50\x24\x99\x6a\x85\xe4\x5e\x4a\x6c\x00\x8d\x13\x86\x1d\xda\x48\xd6\x83\x0f\x3b\x9f\x8c\x87\xbd\x43\x21\x99\x10\xdd\xed\xfb\x08\xab\x54\xd2\x28\x27\x2f\xce\xa8\xb5\x55\x2f\xa9\x7c\x2e\x1f\xab\xab\x93\x22\x2b\xe6\xac\x86\x19\xe1\x1d\x67\xa4\x42\xc8\x88\x9d\x3e\x90\x4e\x46\xf2\x94\x11\x65\x74\x27\xdb\x1b\x49\x04\xf8\x04\xff\x2b\x32\x2f\x47\x13\xe9\x99\xb6\x72\x3d\x39\x67\x32\x3c\x30\xc0\x96\xca\x75\xad\xa4\x72\xcd\xe2\x2a\xc8\xf9\x49\xb3\xa3\x3a\x9a\x83\x72\xd5\x34\x7e\x36\xd2\x95\x6b\x71\x2e\x45\x51\x6c\xf1\x92\x24\x23\xd3\xac\x68\x4c\x66\xb6\x39\x26\x88\xbc\x71\x97\xdf\x72\xec\x1e\xc0\x95\x4f\x34\x02\x7a\x45\xf3\x1c\xd9\x71\x2e\x2f\x68\x67\x73\xf0\x42\x6d\x3f\x61\x7c\x75\xc6\x1c\x0e\xf4\x45\x0e\x40\x72\x0c\xc0\xeb\x33\x94\x77\x3c\x92\x04\x90\xbd\x0c\x70\xdd\x05\x40\xc9\x13\xe0\xe2\x0e\x00\x35\x49\x80\xe3\xbc\x00\x06\xf3\x69\x8e\x87\x6d\x2e\xc0\x81\xfb\x00\xbe\x5f\xe8\x79\x3f\x2a\x1b\xa0\x40\x1f\x60\xa9\x17\xc0\xce\x2a\x80\xcd\xe3\xa8\xdd\xe7\x9c\xfb\x77\x8b\x03\x9c\x6f\xa4\xbf\xd7\xe9\x0f\x50\xf4\x0a\x00\xcb\x7f\xf3\x9f\xf5\xcc\x3e\xff\xb9\x08\x60\x6c\x13\xc0\xcb\x5e\x00\xc1\xbb\x00\xf7\x10\x60\x6c\x27\x40\xf3\x10\x80\xc4\x43\xca\x7b\x14\x8e\x00\x54\x25\x03\x68\x34\x00\x94\x0a\x03\x98\x8b\x53\x7f\x82\x9b\x37\xc0\xce\x0e\x80\xc8\x59\x00\xb9\x77\x00\x16\x97\x00\xe4\x2e\x04\xc8\x5e\x05\x90\xfb\x09\xa0\x44\x10\xa0\x40\x01\xe0\xca\x3a\x80\x5d\xf3\x01\xde\xe7\x00\xe4\x7b\xfc\x2d\x9f\x1b\x7f\xf9\xe8\x41\xfd\x09\xff\xf6\x77\x34\x85\x02\x8c\xea\x00\x38\x7e\x9a\xfa\x85\x2a\x3c\x01\x26\x8c\x06\xd8\x73\x9f\x9e\xf3\xf3\x7d\x00\x9c\x7d\x00\x36\x54\x03\x04\x8c\x05\x58\xbb\x02\x20\xee\x36\xc0\x86\x09\x00\xeb\xaf\x03\x6c\x90\x02\x38\xf0\x0a\x80\xb3\xda\x39\x1c\x66\xf3\x31\x80\xb7\x8a\xbf\xe5\xa7\xc6\xfd\xcd\x03\xb8\xbc\xa3\x8d\xb1\x2f\x5c\xde\x51\x17\xc0\xbc\x0d\x66\x00\x3c\x9d\xd4\xee\x8f\xe3\xf0\x9d\x6e\x00\xf5\x46\x80\x6c\xa4\x7c\x35\xe3\x11\x80\x4f\x29\xbd\x3b\xc6\xd9\x37\x56\xde\x03\x58\x73\x88\xc6\xca\x4a\x9b\x38\xa7\x24\xaa\x47\xc6\x14\x80\x9e\x46\x80\x65\xfc\x54\x2e\x97\x07\x70\xf9\xc7\xbf\x79\xc7\x95\x87\x14\x4f\x77\x30\x6f\x27\x63\x7f\xf2\xf5\x01\x86\x0d\x07\xd8\x10\x0f\x20\xe3\x01\x90\xba\x17\x40\x67\x0f\x40\xd2\x0d\x00\x37\x7f\x80\x04\x45\x80\xd9\x3e\x00\x8b\xdf\x71\x76\x04\x80\x45\x5f\xa8\x1e\x8b\xcc\x01\x9a\x6d\x00\x12\x74\x01\x7a\x33\x00\xe6\x08\x32\xf1\x9f\x26\xc6\x0f\xc2\xf8\xed\xda\x76\x53\x39\x37\x19\xbf\xcf\x05\x46\x3e\xcd\xf6\xa3\x63\xcb\xf9\x5f\x8e\x33\xc5\xb4\xdb\x00\xfc\xe1\x00\x8b\x3e\x01\xa8\x8c\x01\x88\xd9\x0e\x60\x17\x08\x10\x65\x07\x10\xfe\x11\x20\x54\x95\x8e\x45\x90\x35\xc0\xbe\x3e\x80\xa0\x6d\x34\x87\x69\x86\x00\xc0\xe7\x98\xdf\x72\xad\x19\xbf\xa5\x29\x2f\xc5\x7b\x0c\xef\xb8\xb4\x94\xe2\x29\x86\x77\x54\x72\x77\x4d\xc6\x8b\xbe\xa1\x85\x62\xd2\x4a\x8a\xb3\xbb\x01\xc6\xf7\x02\x04\xc9\x00\xfc\x3f\xf6\xfe\x3a\xba\x8a\xe5\xe9\x17\x87\x1b\x77\x0b\x1a\x24\x04\x42\x20\x4e\x12\x20\x24\x21\xae\x84\xb8\xbb\x0b\xc4\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdf\x95\x99\x9d\xe3\xe7\xfb\x7d\xee\x5a\xf7\xbe\xff\xfc\x9e\x59\xeb\x9c\x62\x6f\xa8\xea\x9e\xa9\xee\xaa\x4f\x49\xcf\x26\xc5\x02\x80\xdb\x08\x00\xe1\x79\xf8\xd9\x98\x23\x01\x40\x27\x79\x16\xa9\x01\x40\x9b\x06\xc0\x99\xbf\xa5\x9e\x03\x60\xcb\x04\x80\x4f\x1d\xf0\xb8\x68\x69\x7f\xc6\x1f\x8d\xb9\xb0\xdc\xdf\xf2\x4f\x88\xa8\x31\x0c\x81\x77\xce\xf1\x8f\xc5\x1b\x98\xaa\x20\xbc\x2c\xcf\x25\x00\x2e\x9f\xad\x55\x1e\x00\x3e\x8e\x02\x40\x76\x0c\x00\xff\x22\x00\x84\x66\x00\x98\x98\x01\x80\xcd\x0e\xaf\xa9\xb7\x6d\x00\x54\x5f\x02\x00\xf5\x25\x00\x4b\x48\xbf\xe7\x48\x6f\x22\xf0\xe0\x65\x3a\x98\xfe\x86\xbf\xae\x22\xf4\x50\xfd\xe7\xf1\xad\xa7\xe0\x73\x7c\xea\xba\x37\xa0\x27\x24\x5c\x04\xf7\x33\x93\x1f\x3e\x81\xce\x0f\xbf\x7f\xf8\x7c\xff\xb5\x15\x78\xfa\xf4\x1d\xf2\x57\x56\x05\x00\x6e\xb5\x3f\xc5\xd1\x4e\x02\xe0\x52\xf6\x63\xdc\x00\xc8\x03\x20\x0d\x15\x43\xbd\x47\xf7\xfb\x27\x21\x4f\x7a\x9b\xe6\xf4\x1f\x7a\xb4\xb2\x38\xe0\x3f\x47\xcb\x01\x08\x67\x78\x85\xdf\xf8\x75\x46\x2d\x3f\x3e\x83\xba\x28\xd4\x51\x50\xa1\xa8\x51\xc8\x1b\x1b\x8a\x52\xe9\xe8\x3e\x41\x6e\xe4\x0d\x1a\x89\x27\xcc\x49\xa5\x70\x1f\xca\x18\x7c\x73\xa2\x83\x2c\x2e\x31\x9d\x2a\xe4\x6f\x3e\xdf\xf3\x81\x10\x15\x21\x5b\x01\x84\x58\xf0\xdc\x46\xa0\xca\x17\x16\xa2\x1f\xf8\x35\xe2\x17\x90\x9e\x40\x67\xe7\xa2\xdf\xdd\x86\xbc\xa4\x3b\xca\x53\xe8\xdc\x95\xe5\x1b\xcc\x75\x78\x7c\x22\x48\x03\x12\x80\x1c\x7a\x62\x4c\x28\xb4\x90\x1f\x22\x08\x66\x81\xea\x64\xb7\x01\x0f\x3c\x0d\xc0\xdb\x87\x04\xc5\xad\x3c\x84\x54\xd0\x4c\xb9\xe6\x15\xa0\xfa\x18\x27\x92\x1b\xf4\x4f\x58\x35\x32\xa1\x35\xf8\x63\xb9\x1b\xc2\x47\x4c\xad\xb0\x5f\x21\x43\xfc\x42\xd4\xe7\x46\x28\xbe\x74\xc5\x81\xba\x77\xac\x7e\x11\x41\x5e\x50\x5d\x9c\x16\xea\xdb\x92\xe0\x64\x83\xb2\x3a\x1c\xdd\x7c\x90\x7f\x23\x8d\x13\xbe\x70\x46\x5f\x49\x49\xa4\xc3\xe3\xcb\x5b\xc0\x54\x09\xc0\x0e\xef\x27\x0a\x25\xb4\xc7\xe4\x30\xa4\xa1\xcf\x72\x78\x70\xe6\x46\xfa\x11\xbc\xe6\xa5\xd6\x1a\xa1\xf1\xc5\xd9\x57\xa1\x4c\x01\x1f\x02\x17\xb2\x42\x75\x42\x2b\x2f\x4a\x68\xe7\xea\x8c\xb3\x43\xcf\x59\x16\x49\x10\x9a\x35\x0f\x90\x80\xea\x2f\x34\x24\xb2\x10\xba\xc1\x0b\x80\xcb\x1c\x0f\x63\x35\x09\xe0\xf1\x0d\x84\x10\x74\xef\x19\x54\xc9\x32\xf0\xa6\x80\x90\xa5\xc1\x32\x0c\x08\x0c\x9a\x2c\xa1\xba\x94\x1e\x2d\x1c\xfb\xe8\x8c\xc3\x15\x1c\x2d\xa8\x57\x13\x00\xd5\xaf\xf0\x3c\x64\xa0\x3e\x1d\xfd\x0e\x78\xdc\x5f\x8f\xa4\x20\xfc\x21\x44\xa5\x00\xe1\x61\x66\x76\x35\x28\x93\x48\x4a\xa2\x0b\x79\xf5\x77\xc5\xc6\xd0\xfd\xdf\xf8\x62\x31\x0c\x8f\xef\xb0\x05\x53\x67\x35\x78\x1e\x8e\xa7\x70\x85\xd7\x31\x54\xa4\xe4\x8c\xda\x6b\x1b\x42\x38\xc0\xbe\x35\x18\x1a\xd7\xc1\xb6\x14\xee\x93\xc2\x1d\xf9\x00\xad\x00\x8f\x63\x5e\x68\xbe\xd0\x49\x2b\xc5\x18\x79\x4d\x78\x1d\xa8\x43\xff\x9a\xe3\x91\x3e\xe4\xbd\xa9\x78\xcc\x20\xfd\x10\x20\xd9\x94\x43\xfa\x78\xe1\x88\x88\xa4\xdc\x11\x3b\x2c\x70\x15\xa6\xc1\x28\xcf\x21\xc4\x10\x88\x4a\x0a\x65\x68\x02\x63\xe0\x93\x91\x81\xe8\x06\x90\xc2\xfc\x15\xfc\x20\xcd\x07\xc8\xe6\x41\xf3\xf5\xf5\xe8\x81\xf1\x19\xfe\x3e\x54\x01\x74\x86\xde\xcc\x23\x9d\xa5\x07\xe5\x4b\x05\x2b\x2d\x20\x34\xfd\x5d\x19\xae\x53\x92\x94\xc2\xdd\xc5\x18\x2d\x1e\xd0\x7e\x79\x3c\x1a\x80\xe8\x8f\x3a\xc7\x63\x71\x08\xcf\x94\xc8\x86\x0c\xcd\x3c\x7e\x89\x04\x7a\xb2\x71\x2f\xf9\xa0\x71\xe2\xd8\xb5\xa0\x95\x14\x47\xe4\x09\x65\xfe\xe2\x88\x33\xa0\x3b\x89\x61\xee\x80\x22\x94\xa8\xf4\x15\x48\x03\x21\x50\xff\xd8\x39\x0e\x64\x7d\xe6\x04\x9d\xfa\xa2\x36\xf5\x84\x56\xd3\x27\xaa\x00\xe8\x7b\x34\x4f\x18\x4d\x3d\xf0\x8d\x59\x87\xc7\x4d\xc1\x87\x29\xdc\xc7\x05\x40\xc1\xfe\x33\xc8\x3e\x14\xf8\x7d\x85\x16\x46\x1e\x2d\xbc\x93\x72\x89\x35\xa0\x95\x94\x83\xeb\x06\xfd\x92\x5a\x4e\x61\x32\xd4\x4f\x96\xd9\xdc\x00\xcd\x33\xf3\x74\x1e\xca\xe9\xc3\x7d\x65\xe3\xf2\x00\x3c\xc0\x85\xfd\xfd\x5d\x72\x00\xaa\xbe\x00\x70\xff\x0b\x00\x25\x1e\x00\x20\x8f\x03\x90\x98\x0f\xc0\x6b\x1e\x00\xa2\xa6\xcf\xb0\x19\x00\x01\x2c\x00\x90\xd8\x01\xe0\x19\x72\xb6\x03\x01\x70\x50\x86\xfd\xbe\x7d\x10\x00\x0a\x2a\x67\xda\x07\xc0\x44\x0f\x00\x6b\x14\x18\xeb\x38\x72\xc1\xbd\x30\x5e\x02\x00\x74\xec\x00\xe0\x13\x06\xc0\x3e\xdd\xef\xf5\x9f\xf3\xfc\xc7\xc0\x32\x00\x57\x2d\x01\x68\x59\x83\xfd\xfb\xd9\x9a\xbe\xb8\x06\x40\xc6\x32\x5c\x57\x88\x21\x01\xe0\xa9\x09\x8c\xaf\xde\xe2\x03\xe0\xd5\x01\xc0\x27\x66\x38\xde\xa7\xe9\x01\xc0\x92\x1c\x00\xae\x23\x00\x8c\x52\x61\x7f\x7b\x16\xff\x1b\x9f\xf9\x7f\x2c\x00\x3c\x3a\x01\xb0\xb8\x0d\x40\xaa\x15\x00\x96\x59\x00\x34\x5b\x02\x60\xbf\x04\xd7\x41\xce\xc7\xd7\x42\xc4\xdb\x5d\xa5\xf0\xd3\x3d\xc7\x1d\xa5\x2c\x70\x3c\x0f\x75\xb3\xe5\x01\x10\xa6\x09\xc0\x8d\x79\x00\xbc\x68\x00\x78\xa6\x0b\x80\x8d\x36\x00\xef\xb5\x01\x30\x23\x04\x80\xf4\x26\x00\x7a\xdd\xf0\x7b\x96\x34\x3f\x01\x20\xce\x07\x80\x86\xeb\x59\x24\x05\x80\xee\x7d\x00\x3c\xcd\x01\xd0\x77\x04\x20\xc3\x15\x00\xdd\x63\x00\x5a\x46\x60\x3c\x72\xfc\x0a\x00\xd5\x10\x78\x7c\x19\x33\x98\x9e\xe3\x8e\x6a\x66\x98\xe6\x75\x22\x56\xdf\x08\x4c\x03\x10\xdd\x8c\x4e\xf7\x00\xb8\x6e\x04\xe7\x9e\x5e\x94\x03\xa0\x1f\x08\xc0\x67\x13\x00\x34\x1a\x00\x60\x4a\x84\x7b\xa7\xc4\xcc\x00\x50\xf4\x38\xb3\x14\x00\x28\xed\x01\xe0\x79\x0a\xe3\x81\xd4\x62\x00\x94\xdf\x00\xd0\x8d\xf2\xef\x79\x90\xf3\x79\x9c\xe3\x8e\xf3\xbc\x4b\x1c\x3b\x4c\x7d\x11\xab\xd1\x1a\x41\xb5\x6f\x02\xf0\x80\x01\x00\x39\x5e\x00\xde\x7d\x02\x40\x12\x09\x00\x72\x6d\x00\xc4\xfa\x00\xe0\xbf\x00\xf7\x0c\x9d\x59\x00\x21\x35\x00\x3c\xe3\x01\x10\x08\x02\x20\x83\x08\x00\x7e\x31\x00\x7a\x3c\x00\x10\xa4\x83\x73\x94\x4c\xda\x7f\xc6\x21\x75\x08\xab\x78\x9e\x77\x49\x41\xf8\xdd\x30\x84\xbe\xbc\x10\xf3\x32\x47\xe4\x6b\x94\xee\xc0\xb8\x4c\xa8\x1a\x80\x67\x33\x00\xf0\xf0\xc1\x7d\xd3\x6c\xef\x01\xe0\xb8\x0d\xc0\x8f\x6e\x00\xd4\x91\x00\x60\x68\x86\xd7\x26\xf5\x45\x00\x32\x59\x01\xa0\xeb\x02\x60\x30\x1b\x00\x4a\xf8\xb7\x66\x7e\x7b\x67\xc1\x6b\x44\x3d\xf7\xb7\xe7\x20\x0f\xd3\xdf\xf0\xcf\x4f\x98\x3a\x72\xc3\xd4\x60\x00\xa6\x32\x08\xfd\xfd\x50\x07\xe0\x2a\x1e\x00\xb4\x66\x00\x60\xd9\x01\x40\xb6\x05\xe7\xed\x08\x04\x01\x50\x59\x06\x00\x6b\x1c\xd6\xcb\x7b\x59\x00\x72\x34\xe0\x1c\xed\x60\x13\x00\xc8\x88\x73\x06\x0f\x10\x7d\xe3\xd7\x10\x3d\x7c\xf9\x08\x6b\xf4\xd7\xfc\x93\xbb\x0e\x4c\x2d\xf4\x61\xaa\x8e\xb0\xa2\x22\x88\x3e\x66\x1a\x6f\x98\xe2\x3a\x01\xf0\x0a\x05\x80\x37\x53\x00\x30\xac\x00\xf0\xd8\x00\xce\x4f\xdd\x7b\x0a\xcf\xe3\x9a\x22\x00\xd9\xa3\x00\x5c\x74\x01\xa0\xbf\x19\x00\x80\xa8\x9d\x5f\x40\xe4\xa3\xc0\x47\x98\xfe\x96\x7f\xfa\x0b\xfe\xb1\x41\x44\x6d\x3a\xf6\x30\xfd\x85\x88\x22\x39\x75\x2f\x40\x79\x98\x4f\xec\x57\xa0\xae\x01\xa4\xea\x3b\x3c\xf7\xa9\x00\xb8\x28\x73\xd3\x96\x02\xd2\xe9\x55\x7c\x79\xc8\xcf\x5c\x54\x77\x85\x3b\x23\xb8\xd2\x11\x35\xc7\x2e\x7a\x98\x1e\x23\x20\xc3\x1f\x71\xd0\x79\x77\xaf\xf7\x14\xc8\x06\x50\x57\x08\x3c\x8e\x7e\x25\xf4\xba\x5a\x20\xfb\xe9\x31\x94\xc9\xe4\x50\x7e\x09\xad\x68\x92\xa0\x77\x50\x96\xe1\x99\x1a\x26\x42\x83\xb8\xb4\xb7\x20\x7b\x89\xf1\x92\x14\xd2\xf1\xbb\x7b\xb2\x90\xe3\x47\xf3\x74\x84\x10\xd3\xab\x6f\x49\x10\xd6\x7c\x85\xd2\x0e\x3d\x53\xe4\xa3\x0d\xe8\xdc\x2d\xd2\x27\x78\x1e\x57\x21\xbb\xee\x33\x0e\xf7\x6b\x3b\xa0\xde\x83\xfc\x8b\x3e\xd2\x2b\x68\xc7\xfe\x52\xfe\x00\xd5\xe7\x78\x4c\xf0\xa1\xbc\x3f\x55\x07\x31\xd4\x85\xfc\x21\x82\x1c\xca\xd2\x5f\xea\xa2\x41\xd8\x77\xda\xd9\xbb\xd0\x33\xa3\x96\x87\x33\x49\x54\x0a\xf0\x39\x60\xca\x6c\x6b\x48\x22\xd9\x70\x34\xe4\x7f\xbf\xfd\xa8\x85\x90\x04\x49\xe5\x02\x64\xd7\x3f\x46\xc0\xf3\x40\xdf\x81\xe2\x3b\xed\xd7\x10\x97\xfe\x7d\x6c\xa8\x7b\x42\x5e\xf7\x2b\xb4\x43\x05\x68\x29\xa0\x7c\x03\x63\x11\x13\xe4\x25\xce\x71\xd8\xd3\x45\x6e\xc4\x8e\xe6\x43\x20\x66\xc1\xca\x07\xd0\x93\xe1\x5f\xfc\x0a\xfd\x62\x2c\xbf\x07\x5c\xe1\xe2\xbd\x60\x04\xe1\x0f\x5e\xd1\x50\xc8\x63\xf1\x00\xd8\xef\x73\x72\x8e\x41\x1d\xb5\xac\x88\xf7\xe7\xd0\x42\xe7\xa3\xce\xf3\x70\xca\x79\x54\x90\xbe\x85\x91\xe0\x2a\x1b\x33\x3b\x1f\x44\xcf\x71\xd8\xdb\x71\x49\x68\x47\xdd\xe2\x92\xd9\x83\xc7\x97\x2f\x87\xe9\x39\x1e\x53\xf0\x20\x82\xce\xc9\x2b\x49\xf0\x4f\xc2\xdf\xeb\x42\xfa\x51\x58\xf6\x83\x90\xb6\xc2\x50\x2e\xf4\x4b\x2e\xb2\x48\xf0\x2f\xb9\x4a\xe1\xef\x42\xd0\x0a\xce\x4b\xa9\x8e\xb0\x41\xf7\x25\x89\x25\xf0\x10\x9e\xb5\x38\x34\x0e\x6d\x12\x9c\x9f\xc2\xb3\x87\xeb\x93\xcf\x57\x54\x20\x7f\x7b\xf1\x85\x0e\x22\x82\x30\x44\xec\x78\x63\x94\x27\x90\x04\x83\xe5\x2f\xd0\x37\x06\x36\x3c\x07\xf0\xf7\x70\x46\xcb\x30\x14\xce\x20\x19\xe0\xa6\x41\x1d\x79\xfa\x62\xcd\x90\x86\x75\xf0\x17\xa0\x3b\x55\x79\x03\xe1\x0f\x09\x71\xe8\x6f\xf9\xf0\x7f\x41\xeb\x90\x69\x44\x09\xb2\x60\xc4\x75\xda\xd0\x67\x2c\x3d\x03\x12\x00\xe5\x07\x8d\x11\xeb\xd2\x12\xb1\xb2\x1d\x10\x95\x78\xa7\xbd\xa7\xd0\x0a\x77\x62\xfd\x02\x69\xd6\xb1\x99\x1b\xb2\x89\x8e\xd6\xaa\xd0\x7e\x71\xc0\x70\x82\x70\x88\xfd\x5e\x1c\x9c\x37\x43\x81\xf3\x42\x36\x64\x53\x50\x87\xa0\xb9\xeb\x61\x13\x00\x82\x76\x8a\x50\x96\x86\x23\x0a\xae\x13\x52\x4d\x19\xc1\x38\x4c\xdb\x02\xaa\x87\xa1\x8e\xd8\x42\x9d\x18\x37\x7d\x9d\x11\x96\xce\x13\x91\x81\xfe\x2b\x1e\x0b\x7a\xf0\x19\xf2\x4d\x01\xcb\x5c\x10\x92\x0a\x44\x57\x81\xf6\xc9\x79\x9e\x2c\x60\x38\x06\xda\x57\xfe\x95\xd5\x70\x9f\xd9\xad\x31\x08\x1f\xfa\x18\x1f\x57\xfd\x9e\x8f\x63\x0c\xb5\x80\xe6\x41\x8c\x0f\xff\x0e\x0c\xde\x43\x37\x08\x7f\x3e\x27\x87\xdf\xbf\x7a\x5d\xd9\x1f\x91\x69\x0e\xb7\x85\x69\x6c\x19\x4c\xe3\x5b\x91\xa1\x95\x15\x8f\xf2\x09\x5a\xc1\xb1\x21\xb0\xa6\x63\x1d\x15\xa0\x9d\x16\x5d\x09\x4b\x8e\x61\x0c\x83\xfb\xfb\x05\x0b\xbf\x41\xdf\x5f\x82\x7f\xe9\x2e\x32\xe7\x2c\xde\x6c\xc1\x07\xe0\x16\x2e\x00\x95\x14\x00\x5c\xd3\x06\x20\xab\xe8\xec\xde\x01\x88\x3b\x06\xe0\x2e\x31\xec\x6f\x1f\xa5\x03\xe0\xec\x08\x00\x4a\x04\x00\x76\x51\x00\xe0\x8d\x03\x60\x61\x0f\x00\x25\x15\x8c\x35\xce\x56\xb6\x16\x1f\x9c\xdb\xd7\x12\x05\x40\x95\x14\x00\xbd\x54\x00\xec\x23\x00\xd0\x23\x05\x20\x24\x0a\x00\x03\x31\xb8\x86\x72\xa6\xdd\xb3\xf1\xcf\xeb\x20\xba\x25\x88\xf8\x16\x61\xd3\x8a\xcb\xe0\xba\xcf\x6f\xb8\x83\x10\xfe\xde\xfb\x0e\x00\x77\xb8\x00\xb0\x69\x03\xe0\x11\x13\x00\x26\xd8\x00\xa0\xdf\x05\x40\x47\x1a\x80\xcf\x96\x00\xa8\xdf\x01\x80\xbe\x04\x00\xd5\x01\x00\x84\x9e\x03\x20\x7f\x86\xcb\x52\x00\x50\x5f\x85\x7b\x3f\xce\x7c\xde\x19\xb2\xd4\xa0\x87\x63\x58\x5d\x0f\x00\x26\x3d\x00\xd0\x4e\xfd\x73\x3f\x48\xcd\x99\x55\x30\xf9\x03\xee\xe8\x80\x69\x10\x22\x3b\xea\x8c\x88\xef\x4d\x63\x01\xb8\x89\x01\xf7\x75\x3c\x2f\x3c\x5b\xe5\x00\xe0\xaa\x03\xa0\x30\x05\x00\xcd\x38\x00\x32\xb7\x01\xe0\xf9\x09\x80\xa8\x36\x7c\xbe\x4e\xb2\x0d\x00\x4b\x09\x00\xce\xa2\xae\xb3\xb8\x41\xc1\x07\xc6\x7a\x8a\x25\x00\x4c\xb5\x01\x20\x8b\x38\xfb\x2e\x8c\xa8\x1b\x9e\xd7\x7b\x72\xce\x51\x38\xc2\x4a\x9d\xe3\x1f\x67\x3d\x98\xea\x28\xc0\xf4\x6c\xcb\x3f\xa8\x04\x40\x6c\x06\xae\x93\x09\x6b\x01\x40\x1c\x02\x00\x77\x28\x8c\xcb\xf8\xae\x01\x70\xb6\xe3\x39\xc5\x00\x30\x5b\x00\x80\x13\x05\x7e\x1e\x5c\x18\x70\x4f\x17\x17\x05\x00\x13\x21\x00\xb0\x23\xf2\x62\xe7\x38\xe4\xdc\xef\xa7\x23\xba\x06\x22\x97\x60\x7a\x8e\x7f\xec\x11\xdf\xeb\xe8\xc3\x78\x51\x08\x81\xda\xb9\xaf\x02\xf0\x78\x17\x00\xf6\x45\x00\xf0\xef\xc3\xef\xc6\x3e\xfb\x8f\x5a\x1e\x80\x33\x8b\x47\xd3\x08\xf7\x04\x53\xd6\x01\x10\xd1\x02\x63\xa5\xb3\xe7\x41\x47\x06\xc0\x82\x0f\x00\x9f\x11\xef\x20\x42\x43\xf8\xb9\xbc\x5f\xb0\xdc\xa4\x64\xc4\x6e\xc8\x84\xe9\x39\xfe\xb1\x84\xbb\xf8\x7e\xf3\xfb\x82\xaf\x60\x4a\xab\x0d\xc0\xb5\x56\x00\x28\xd6\x00\x40\xc7\x05\xe0\x0b\x37\x00\x54\xe9\x00\x10\x6a\x01\x20\x51\x0b\x63\x12\x73\x3d\x00\xde\xe3\x01\x10\xf3\x05\x80\x37\x66\x70\x7e\x0a\x45\x1f\x80\x0d\xdb\x3f\xe4\x41\x10\xef\x97\x4a\x43\xe0\x9c\x73\xbf\xeb\x8f\x38\xcd\xea\x8c\xd0\x97\x31\x62\x1e\xca\x08\xfd\xf0\x22\xf0\x09\xf1\x59\x2c\xc6\x0f\x00\x26\x37\x00\x4f\xa7\x60\x1d\x91\x54\x02\xf0\xf0\x08\x00\xd1\xb7\x00\xdc\x7f\x07\xbf\x8f\xeb\x2e\x3e\x5c\xe3\xbc\xa2\x0f\xe7\xa7\x2e\x4d\x00\xb0\xd9\x04\xc0\x85\xaf\x08\x1c\x82\xa0\x49\xd1\xb0\xdc\xbf\xe2\x1f\x4b\x84\x5e\x74\x10\x5e\x55\x5a\x18\xa6\x6c\x8e\x30\x25\x40\x58\xd7\x87\x6a\x00\xdc\x7c\x09\xc0\x0d\x6d\x00\x88\x10\x7f\x27\xc1\x07\x53\x9b\x7d\x98\xc6\x2f\xc2\xb4\x05\x36\xf4\x60\xf7\x2b\x4c\xa1\x9e\x31\x7e\x78\x1e\xe7\xf8\xc7\xfb\x32\x4c\x6d\x11\xf5\x5c\x7d\x44\x37\xa3\x7c\x12\x4c\x85\x11\xfd\x4b\xb4\x87\x30\xc5\x40\xe0\xf9\x3f\x5e\x44\x88\x39\x4b\x22\x2c\x9c\x2d\x22\x33\x71\x9e\x73\x3c\x3f\x49\xbd\x36\x84\x98\xc7\x1f\x70\x90\x1f\xa2\x5f\xdc\x01\x91\x0f\x33\x21\x80\xfb\xa2\xce\xf3\x60\x88\xa2\x02\x60\xde\xbb\x07\x69\x86\xf0\xe4\x01\x74\x37\x0f\x82\x5f\x21\xe2\xdd\xe7\xeb\x57\xa1\xfe\xca\x47\x9c\x9f\x21\x8f\x80\xa4\x28\x02\x79\xa6\xfb\x94\x70\x0b\xd6\x1d\xb6\x70\xe8\x44\xd7\x4d\x9c\x0a\x08\x6b\x5f\x5f\x9a\x62\xff\xfb\x3c\x5c\x1e\xc1\xf9\x2f\x63\x94\x4b\xd0\x5d\xa8\xe4\xde\x86\xbc\x92\x88\xfc\x4b\x68\x65\xb0\x91\xa1\x42\xfe\xe5\xab\x07\x26\x84\x1a\x50\x01\x3e\x02\xe1\x7f\x41\x68\xf2\xd3\x9b\x9b\xd0\x1e\x23\xd0\x26\x80\xfc\x1d\x2e\x12\x3f\x64\x03\xf1\xf0\x0d\x20\x3d\xe0\xa4\xc3\x79\x07\x4c\x94\x7c\x48\x6f\x6f\xc7\xfb\xa0\x93\x36\x6f\x85\x8e\xa0\x79\x3d\x85\xf2\x54\x26\xae\x30\x7a\x50\xaf\x45\x81\xee\x57\xda\x03\x13\xe2\xe2\x62\xff\x04\xf9\x7f\x2a\x40\x02\xf5\xdd\x62\xb6\xc2\xf8\xeb\x2e\x39\x3d\xc2\xcf\x7c\xaf\x83\x29\x93\xc1\x3d\x08\x29\xd2\x97\xe2\x41\xcf\x90\xfe\x88\x0b\xca\x4b\xd1\x8f\x6b\x40\x7d\x3a\xf4\x17\xe0\x4a\x0a\x1d\x5d\x06\x54\x49\xa3\xc1\x6f\x87\xfc\x0a\x45\xc8\x1a\x94\xf9\x21\x82\xce\x25\x6b\x49\x62\x43\xd5\x08\x19\x49\x38\x1f\xc6\xfd\x98\x1a\xea\xa6\xa1\x13\x65\x82\xf0\x1f\x01\x0a\x3b\x34\xee\xab\x56\x18\xdc\x5e\x24\x13\x42\x44\x5e\xa2\x88\x9d\x2c\xb4\xff\x00\x8a\x29\x84\xc8\x08\xa0\x6f\x84\xa8\x58\xfb\x21\x8a\xaf\x0c\x55\x46\x04\xef\x3a\x42\x79\x0f\x01\xda\x58\xa8\x0e\xc5\xe7\x06\xff\xa2\x2e\x8f\xf1\x14\xa4\x01\xf8\x0d\x7c\xbf\x1e\xc1\xf5\x41\xbe\x71\xb8\xcb\xf9\x07\x15\x0f\x84\xae\x49\x5c\x05\xa1\xce\x83\xf7\x2b\x70\x57\xc9\x43\x76\x69\xc4\x0e\x52\x40\x74\xde\x9d\xaf\xa0\x73\x3c\xa6\x52\x84\x0f\xbd\x51\x47\x59\x9e\x15\x42\x08\xaa\x12\xf0\x89\x38\x65\x3d\xf8\xcd\x04\x4a\x88\xda\xbc\x12\x80\x4f\x9c\xc9\x91\xc1\x27\xef\x65\x91\xf6\x1f\x00\x20\x2c\xcd\x07\xa1\x39\xce\x4a\x51\xc8\x52\xd2\x50\xca\x42\x1e\xe6\x1c\x87\xa1\x0a\xa8\x40\xfa\xb8\x0d\x34\x10\xe3\xeb\x23\x76\x90\xe9\x15\x98\x9e\xe3\x31\xc3\x50\x78\x2f\x1b\x37\x33\x9f\xc0\xdf\xcb\x42\x08\xcb\xb0\xc8\xe2\x2e\xfc\x19\xee\x9b\x36\x44\xcd\x85\x6c\x80\x9e\x6b\x27\xd4\x51\xa3\xab\xbe\x9a\x0a\x00\x17\xb5\x1c\xb4\xbb\xbe\x2b\xc3\xdd\xcd\x24\xd7\xd4\xa1\x79\x61\xf9\xc0\xb8\xe8\xa9\xb3\x21\xd4\xed\x74\xc9\xd3\x02\xb1\x2b\x6d\x10\xfd\x41\xe7\x78\xcc\xb9\xf8\x19\x34\x23\xc7\x66\x02\x08\xef\x39\x99\x30\x43\xbd\xa4\x8e\x7e\xd2\x50\x67\xa0\x43\x8a\x09\x94\x51\x73\x88\x80\x11\x8c\x83\x4f\x26\x64\x1b\x6c\x27\x9b\x21\xdb\x6d\x43\x36\xa7\x04\x00\xeb\x1d\x75\x5f\x78\x3d\xc2\xab\x9b\x10\x1b\xc6\x7f\xe8\x0a\x56\x10\x0e\x7a\xe4\x69\x87\x88\x24\xcf\xf1\x98\x37\xa2\x02\xf0\x3b\x1e\x43\x86\xf4\x1f\x98\x47\x00\xe3\x31\x32\x26\x18\x7f\x69\xc1\x95\x5f\x7f\x64\x03\xe8\x2c\x8d\xdf\x96\x27\x94\xd7\xf5\x19\x87\xeb\x97\xbe\x1e\x8d\x90\xa6\xbd\xf1\x26\xa1\x9d\x77\xe1\xc2\xc5\x8b\x97\x2e\x5d\xbe\x7c\xe5\xca\xd5\xab\xd7\xae\x5d\xbf\x7e\xe3\xc6\xcd\x9b\xb7\x6e\xdd\xbe\x7d\xe7\xce\xdd\xbb\xf7\xee\xdd\xbf\xff\xe0\x01\x12\xd2\xc3\x87\x8f\x1e\x3d\x7e\xfc\xe4\xc9\xd3\xa7\xcf\x9e\x21\x23\x3f\x7f\xfe\xe2\xc5\xcb\x97\xaf\x5e\xa1\xa0\xbc\x7e\x8d\x8a\xfa\xe6\xcd\xdb\xb7\x68\x68\xef\xde\xa1\xa3\xbf\x7f\xff\xe1\x03\x06\x06\x26\x26\x16\x16\x36\x36\x0e\x0e\x2e\x2e\x1e\xde\xc7\x8f\xf8\xf8\x04\x04\x84\x84\x9f\x3e\x7d\xfe\xfc\xe5\x0b\x11\xd1\xd7\xaf\xc4\xc4\x24\x24\xa4\xa4\xdf\xbe\x91\x91\x91\x93\x53\x50\x50\x52\x52\x51\x51\x53\xd3\xd0\xd0\xd2\xd2\xd1\xd1\xd3\x33\x30\x30\x32\x7e\xff\xce\xc4\xf4\xe3\x07\x33\x33\x0b\x0b\x2b\x2b\x1b\x1b\x3b\x3b\x07\x07\x27\x27\x17\x17\x37\x37\x0f\x0f\x2f\x2f\x1f\x1f\x3f\xbf\x80\x80\xa0\xa0\x90\x90\xb0\xb0\x88\x88\xa8\xa8\x98\x98\xb8\xb8\x84\x84\xa4\xa4\x94\x94\xb4\xb4\x8c\x8c\xac\xac\x9c\xdc\xcf\x9f\xbf\x7e\xc9\xcb\x2b\x28\x28\x2a\x2a\x29\x29\x2b\xab\xa8\xa8\xaa\xaa\xa9\xa9\xab\x6b\x68\x68\x6a\x6a\x69\x69\x6b\xeb\xe8\xe8\xea\xea\xe9\xe9\xeb\x1b\x18\x18\x1a\x1a\x19\x19\x1b\x9b\x98\x98\x9a\x9a\x99\x99\x9b\x5b\x58\x58\x5a\x5a\x59\x59\x5b\xdb\xd8\xd8\xda\xda\xd9\xd9\xdb\x3b\x38\x38\x3a\x3a\x39\x39\x3b\xbb\xb8\xb8\xba\xba\xb9\xb9\xbb\x7b\x78\x78\x7a\x7a\x79\x79\x7b\xfb\xf8\xf8\xfa\xfa\xf9\xf9\xfb\x07\x04\x04\x06\x06\x05\x05\x07\x87\x84\x84\x86\x86\x85\x85\x87\x47\x44\x44\x46\x46\x45\x45\x47\xc7\xc4\xc4\xc6\xc6\xc5\xc5\xc7\x27\x24\x24\x26\x26\x25\x25\x27\xa7\xa4\xa4\xa6\xa6\xa5\xa5\xa7\x67\x64\x64\x66\x66\x65\x65\x67\xe7\xe4\xe4\xe6\xe6\xe5\xe5\xe7\x17\x14\x14\x16\x16\x15\x15\x17\x97\x94\x94\x96\x96\x95\x95\x97\x57\x54\x54\x56\x56\x55\x55\x57\xd7\xd4\xd4\xd6\xd6\xd5\xd5\xd7\x37\x34\x34\x36\x36\x35\x35\x37\xb7\xb4\xb4\xb6\xb6\xb5\xb5\xb7\x77\x74\x74\x76\x76\x75\x75\x77\xf7\xf4\xf4\xf6\xf6\xf5\xf5\xf7\x0f\x0c\x0c\x0e\x0e\x0d\x0d\x0f\x8f\x8c\x8c\x8e\x8e\x8d\x8d\x8f\x4f\x4c\x4c\x4e\x4e\x4d\x4d\x4f\xcf\xcc\xcc\xce\xce\xcd\xcd\xcf\x2f\x2c\x2c\x2e\x2e\x2d\x2d\x2f\xaf\xac\xac\xae\xae\xad\xad\xaf\x6f\x6c\x6c\x6e\x6e\x6d\x6d\x6f\xef\xec\xec\xee\xee\xed\xed\xef\x1f\x1c\x1c\x1e\x1e\x1d\x1d\x1f\x9f\x40\x27\x4a\xff\x57\xff\xff\xab\xff\xff\xd5\xff\xff\xea\xff\x7f\xf5\xff\xff\x4d\xfd\x03\xa0\x2c\xa7\x05\x21\xed\x4b\x17\xde\x00\x70\x01\xfc\xf9\xfa\xa7\xcf\x17\x2f\x80\xdf\xbb\x7a\x4f\xff\xff\x71\x3d\x3f\xce\x3a\x71\x3b\xd9\xfa\x3f\xe6\xe3\x39\xa0\xdf\x61\xd8\x30\x59\xa5\x5d\x3a\x5c\x7a\xbf\x98\xbd\x7c\x6f\xd9\x78\xdd\x7e\xfb\xf2\x61\xe6\xff\x80\x57\x6f\x9f\x79\xd3\x7b\xc5\x66\x3e\x66\xaa\x60\x0c\x77\x24\x6a\xc8\x68\x30\xb5\xbf\x6b\x30\x70\x70\x78\x2c\x7b\xf6\xd9\xca\xb7\x83\xec\xff\xc8\xbd\xb3\x7f\x7f\x5d\x63\xe1\xc6\x64\xf2\xf0\x5a\x5f\x44\x57\x7e\x5b\x46\x33\x76\xe3\xbd\x86\x47\xf5\x8c\xf5\x06\xcd\xf7\x5b\x32\x7b\x9f\x8c\xef\xae\x89\x1c\x71\xfe\x1b\xfb\x21\xca\x46\xdf\xc2\xa3\xf1\xba\x81\xdd\x2e\xb4\xe6\xe6\xba\xfa\x4a\xde\x92\xf6\xc2\xfa\x82\xe3\x7c\x9c\x3c\xe1\x7c\xcf\xc2\xad\xb2\xb4\x3a\xea\x1e\xcf\xc9\x9e\x75\xf1\xd3\x89\x7f\xe2\xdf\xbd\xbf\x72\x6f\x1a\x79\xb0\xa1\xf3\x67\xd3\xeb\xaa\x82\xe2\xd8\xbc\xed\x4c\xc1\x14\xab\xc4\x4b\xf1\x5f\xe3\x90\x62\x31\xe2\x52\x12\x03\xd2\xbd\x8b\x09\x1b\xf2\x7b\x2b\x66\xee\x6e\xce\xfe\xc3\xf4\x65\x17\x6b\xc6\xbd\xfb\xae\x34\xb7\x57\xbf\x2f\x1e\xc8\x41\x49\x21\x8d\x27\x89\xf4\x0c\x09\x09\xbc\xe1\xe7\xe9\x9b\xec\x4b\xe2\x6b\x18\xd4\x17\x7d\x27\xe3\x5d\xd9\xa5\xe6\x5f\x83\x56\xf3\xdc\x7b\xf4\x7f\xe6\xdf\xe7\x5c\x8c\x1f\x53\xed\xfe\xd8\x48\x53\x66\x9b\xab\x9b\x5a\x16\xeb\x17\x76\xd5\x2f\xdf\xeb\xa7\xcb\xb2\x43\x98\x9d\xaf\xcd\xa1\x8d\x86\xc3\x3d\x97\x9b\xfe\x98\xb1\xcb\xd9\x2d\x15\xc6\x6d\x04\xa3\x7c\xcb\xee\x47\x8b\x7f\x94\xb0\xfe\x64\xa2\xb9\x47\xa6\xa1\xbc\xd4\x24\x2b\x27\x21\x33\xfc\xc8\xbf\xd7\xbd\xdc\xc1\xd5\xaa\xc8\x94\xcc\x60\x45\x2f\x45\xd7\x58\x67\x47\x5f\xdf\xdc\xd1\xd5\x3e\x68\x3d\xe1\x49\x3e\x7b\x2d\x51\x77\xe6\x94\xe2\x66\xe5\xef\xfc\x07\x99\x0b\x4c\x03\xc5\x4d\xb3\xa5\x8d\x59\x9a\xf1\xae\xa1\xcc\x3e\xf8\xce\x9a\x56\xbf\x8c\xa4\xb5\x45\xd5\x8a\x95\xc8\xe4\x59\x7f\x66\xc8\x5f\x52\x26\xd6\x9d\xb5\x7e\xe5\x51\x17\xb6\x9a\x2a\x5e\x9c\xda\x7c\x71\x48\x79\x31\xe9\x30\xe6\xb7\x67\xf0\x73\x72\xba\x73\xbe\x8a\x36\x67\x2d\x41\x32\x64\xd0\xeb\xb9\x7d\xa1\xd9\xa1\xee\xa9\x2a\xff\xcf\x6d\xc9\x53\x51\x42\xa1\x39\x81\x23\xa1\x5b\x12\xf7\x55\x9c\x0d\xc7\xec\xbd\x7c\xe3\x63\x6c\xb2\x09\xab\xb8\x3a\x0b\xa7\xf0\x37\xfb\xcf\x25\x6c\x68\x8d\x0e\xb7\x88\x14\xfb\xa7\x0c\x86\x27\xfb\xa0\x39\xa0\x9a\xec\xe9\xdc\x56\xec\x94\x0e\x16\xce\xe0\xa1\x60\x8f\x64\xf1\x62\x7e\xcc\xfa\x49\xe0\xaa\xdc\x03\x2d\x24\x73\x6c\x57\xad\x90\x1f\xc9\x4a\x45\xb3\xcd\xb4\xc3\xe8\xcb\xc6\xc7\xbe\xb0\x84\x35\xa5\x81\xc1\x86\x8f\xb9\x05\x71\x8d\x01\x68\xce\xe6\xa6\xc7\xda\xe2\x0a\x43\x92\x34\x02\x2f\xd8\x39\x18\x47\xa9\x23\x28\x70\x29\x54\x69\x93\x39\x64\x45\xab\x15\x7f\x18\xa0\xd9\xae\xf9\x7a\xc5\x52\xe7\xf0\xd4\x14\xf6\xde\x9b\xe5\xde\x0b\x82\x25\xac\x88\x0f\xf8\x54\xa3\x67\xfa\x45\x1a\x79\x12\xda\x08\xe9\x31\x2a\x8d\x49\xb6\xf2\x77\xb2\x51\xd3\x2b\x92\xf5\x13\xd1\x12\x6c\x13\xee\x90\xc5\x30\xc5\xf1\x25\xca\xe8\x68\xf8\x9a\xff\x72\x47\x0b\x4b\x4a\x67\x2f\xe7\xe8\x30\x98\xcc\xdb\xb2\x85\x25\xac\x6a\xf6\x9b\x57\x11\xa6\x1b\x84\xec\xbb\x04\x99\xbf\xd6\xa8\x91\x8d\x14\xdc\x61\x57\xa2\xf7\x24\xfb\xfe\xa9\x09\x47\xea\xbd\x29\x96\x00\x11\x21\xed\x3b\x8e\x0e\xf1\x87\x2a\x77\x8d\xb6\x9d\x92\x83\xdf\x27\x8f\x96\x88\xb6\x2a\x8d\xf9\xae\x2f\x21\xee\x82\xa4\x4f\xba\x7c\x22\xa9\x35\xd0\xd0\x21\xdc\x60\x40\x39\x40\xfc\x02\xf7\x97\xef\x74\x14\x66\x9f\x8b\xb0\x8f\xde\x95\xa2\x6e\xa3\x57\x12\x24\x50\xe2\xb1\x5e\x16\xce\x52\x88\x31\xb0\x75\x48\x0c\x48\x4a\x0c\x2f\xac\x69\x5a\x1a\x6e\x58\x7d\x82\x90\x20\xdc\x57\x53\x31\x18\xb8\xea\xb7\x67\x97\xa8\xd3\x2e\xcf\x23\x14\xc6\x46\x4b\x9b\xf4\x4d\x8e\xd0\x1b\xdb\xef\xc3\xe3\xf7\x6d\x18\x46\xf8\x24\x64\x69\xcc\xd7\x85\x1e\xc9\x53\xe9\x6d\xd8\xb5\xfa\xcb\xc7\xb7\x15\xf8\x35\x46\x0c\xbb\xaf\x14\xc0\x12\xb6\xf1\x87\x64\xb3\xf8\x93\x8c\xed\x6e\x69\xa6\x68\x35\xca\x51\xf2\x6b\xb2\xfe\xa4\x17\xa1\xe0\x24\x96\xf9\x2c\x83\xbf\xf9\x91\x07\xff\xf6\xa7\x26\x72\xc7\x1f\xc3\x42\x4f\xe4\xf1\xf5\xba\xec\xe6\xfc\x79\x13\x3e\x17\xd8\x35\x3d\x18\xf2\x5d\xa9\x3f\x2d\x3e\x93\x30\x7b\xaf\x35\x26\xf7\x71\xa8\x9b\x03\xba\x56\xbc\xc4\xa1\x24\x9a\x50\x05\x57\x35\x2b\xfd\x77\x16\xda\x27\x14\x1e\xa4\x86\x24\xcf\x49\xad\xbe\x59\xd1\x10\xb1\x24\x08\xb3\x2a\x7e\x35\xe8\x70\xc4\x09\x90\x4a\xb4\x29\x72\x6a\x46\x1d\x71\x5c\x4d\x84\xe7\xb0\x3c\xda\xb5\x51\xc4\x11\xdd\xe8\xac\xaa\xf7\x4d\xea\x93\x94\x84\x54\x83\x28\x9d\x80\x3a\x17\x32\xab\x2c\x93\x07\x03\x31\x1d\x26\x3d\x25\x03\x11\x53\x19\x97\x80\x98\x81\x8a\xb6\xb1\xb7\xb3\x72\x30\x7b\xca\xb3\x12\xf1\xd6\xa0\xb1\xdc\x0d\x67\x58\xc2\x56\xc9\xa0\x57\xa5\x40\xe2\x57\x4f\x1e\xa3\x7e\xb9\x2b\x8a\x19\x2a\xcf\x14\x18\xa5\x86\xc4\x84\x05\x96\x79\x4f\x39\x8b\x38\xbc\x39\xa3\xb9\x74\x78\x34\x85\x52\x64\xd0\xd5\x6b\x2c\xc6\xdd\x5b\xc3\xe7\xd2\x97\x2b\xbb\x3b\x96\x26\x47\xb6\x11\xf6\xea\xa8\x7e\x92\xb3\xfe\x34\xe3\x8a\x7f\x9a\xb9\xb6\x1a\x8b\x6e\x83\xa1\x87\xd6\xa8\xea\x37\x79\x47\x99\x5a\x49\x63\xd1\x75\x51\x3c\xd1\x18\xb1\x5d\xf1\x66\x99\x43\xa5\x01\xdd\x5e\xdb\x72\x9f\xca\x98\xb0\xdc\x57\xb5\xb1\xbd\x6c\x73\xaf\xf6\xf2\xce\xd7\xf5\x22\x75\xbb\x5f\xde\x74\x58\x86\x5d\xbd\xf1\x4b\x87\x16\x1b\x13\x0b\x29\xfd\x1d\xed\xdb\x6a\x87\x2a\x57\x15\x19\xe5\x1b\x15\xfc\x15\x7b\x95\x6f\xa8\x06\xea\xe8\x9b\xc9\x38\xf3\x05\x93\x26\x1c\x14\xbe\x6e\xf4\x1e\x32\x5c\xe6\x3d\x21\x3b\x97\xb0\xc5\xdd\x4f\x5d\x96\x16\x53\xe1\xc3\xea\x68\xee\xeb\xe4\x79\xdd\x59\xde\xf6\x83\xf9\xac\x71\x9f\x01\xad\x2e\xa9\x2e\xb3\xae\x8c\x5e\xa8\xc1\xb4\x51\xa3\x39\x97\xfd\xa6\x37\x7b\xc4\xdb\x74\x85\xf2\xec\xf6\xcc\x09\xdb\xf5\xef\xbf\xef\xef\x23\xb9\xf1\xef\x75\xc2\x69\xb1\xd1\x34\xd1\xb4\x51\xe5\x61\x6e\xfe\xb3\x9e\xfb\x2e\xa3\x0e\x05\x36\xa9\xd6\xb7\x2c\x7d\xad\x78\xac\xf9\xed\x5c\x1d\x70\x9c\x3f\x78\xbf\x0f\x32\x4e\xd0\xca\x45\xae\xfd\xd8\xcb\x3d\x73\xb4\xf3\x27\xab\x3d\xe7\xd3\xf2\xac\xb4\x24\xf3\x6d\xf4\xdd\x4c\xd2\x24\xa7\xd8\xc2\x48\xb1\x20\x33\x5f\x7a\xaf\x68\xf7\x1d\xb7\x45\x77\x3f\x4f\x7c\xef\xaf\xbe\x51\x81\x7c\xe1\x02\xb1\x66\x19\x8a\xc5\x92\x4d\x78\x43\x4a\x4b\x77\x8e\x78\xff\x28\x61\x35\x71\x60\xb0\xf5\x63\xa9\x7e\xe9\x58\xec\x8d\xbc\xb8\x6c\xb2\xb4\x9b\x09\x18\xd1\xe8\x61\x9a\xa1\x8c\xc1\x31\xa1\x82\xa1\x0b\x11\x6d\xd1\x71\xf1\x3d\xc9\x16\x59\xd7\x8a\xd7\x6b\xdb\x3b\x56\x47\x2d\x36\x64\xfe\x62\x69\x65\x16\x5a\x06\x45\x9b\x49\xca\x9c\x9b\x2d\x6a\xbf\x54\xdd\x2a\x3a\xce\x29\xca\xd4\x4d\xed\x4f\xdc\x49\x94\x4f\x7e\x9c\x6a\x9c\x9e\x97\xe5\x9f\x8b\x56\x7c\xb7\xbc\xa2\x76\xa0\x7d\x61\xf8\xee\xfc\xe9\xf6\xe8\x5f\xad\xf5\xee\xec\x5c\xce\xe0\x87\x16\xaf\xc1\xb7\x9d\x4d\xad\x5c\xf5\xe4\xd5\xa0\x62\xaf\x94\xa5\x50\xae\xa0\xa2\xb0\xbf\x78\xae\x0c\xb3\xc2\xb5\xa6\xa2\x09\xad\xed\x4a\x37\xc1\x08\xcf\x4c\xd8\xc6\x93\x93\xca\xbf\x4a\x38\x3d\xdd\x49\x9b\x67\x5a\x26\x6b\x8f\x98\x30\x1e\x0e\xed\xd5\xee\x7c\xd9\xd6\xd7\x64\xd1\xc0\xda\x50\xd1\x78\xb5\x09\xaf\xb5\xb7\x23\xa3\xbb\x75\xc0\x77\x54\x7f\xda\x62\xa1\x76\x0b\xff\xd8\xef\xef\xfc\xd0\x3c\xd2\x16\x35\xb6\x7f\xac\x06\x2f\x06\xcd\xf0\x8c\x05\x8c\x0c\x0d\x8c\x0d\xdc\x19\xa0\x19\x08\x1a\xc4\x1a\x45\x1f\x67\x9c\x26\x98\xdf\x58\xe1\xde\xb9\x78\xf4\xfa\x9f\xb9\xe1\xeb\x80\x05\xfa\xff\xc5\x2d\xc7\x75\x8f\x65\x9c\x05\xec\xb9\xfb\x73\xd6\x73\xba\x8b\x5b\x4b\x6c\x6b\x1d\x5b\x7d\x07\x1f\x4e\xee\xfc\x27\xee\xff\x37\xd7\xc9\x83\xc3\xfe\x83\xf8\xc3\xc7\x07\x79\x87\x49\xc7\xb6\xff\x27\x9c\x87\x26\x3b\xc3\x1b\xd4\xab\x9f\x17\xbb\x16\x8a\xe7\x51\xe6\x3a\xe6\x55\x17\x7a\x97\xc5\x36\x44\xf7\x90\xff\x3b\xef\x91\xd2\x36\xd2\x2a\xde\xa2\xc3\x0c\xea\x84\xc2\x88\xf5\x60\x60\x3f\x7a\x1f\x5f\xaf\x47\x2f\x49\x1f\xd9\xf0\x95\x89\xc1\x85\xc5\x3d\xa3\xff\x38\xf2\xdb\x4d\xf1\x25\xca\xe9\xe2\x91\x8e\x01\xbe\x6e\xe9\x36\x87\xa6\xf4\x86\x6f\x75\x74\x35\x9d\x35\x17\x6b\x3e\xd7\xe4\x36\xe1\x76\xb2\x8d\x62\xad\x38\x1f\x48\xfe\xcb\x1d\xb3\x6d\x4b\x2f\x91\x4d\xb7\x8d\xa0\xf7\x98\xb4\x8a\xd5\x5f\xa9\x32\x2a\xe3\x2d\x54\xc9\xa3\xcf\xa9\xcf\x36\xc8\x92\xce\xf6\xc9\xfb\x50\x98\x58\xad\xd7\xa9\x35\x36\xb0\xd2\x74\xac\xf6\x77\xfe\x63\xea\xb5\x5b\x73\x86\xa3\xa4\x3d\x0f\x5b\x4e\x6b\xe9\x4b\x4d\xf2\x6f\x65\x2d\xa7\x44\x26\xde\x8a\xbb\x15\xed\x1c\x95\x11\x19\x17\x85\x13\xd7\x9d\x42\x53\x60\x57\x13\xd5\x9d\x3a\x79\x75\xad\xf9\x24\xe3\x2f\xe3\x93\x6f\x5c\x9f\xb9\x3f\x84\xdc\x7e\x5a\xb7\x53\xf6\x2b\x6f\x3b\x9d\x29\x61\x24\x72\x3a\xd4\x32\x40\xc7\x57\xd8\x6b\xc0\x33\xc5\x73\xd2\xeb\xb9\x2f\x4e\xd8\xc7\x94\x81\xa2\x8b\xf5\x2b\x7d\xaf\x66\x49\xb6\x43\xfe\x2c\x61\x73\x7d\x06\x63\x40\xa4\xad\xaf\x5a\xb7\x70\x38\xa3\x31\xa1\x22\x42\x2a\x30\xd2\x6b\xc0\xed\x9b\x83\x99\xcd\x96\x55\xb6\x85\xb8\xc5\x25\xeb\x46\xfb\x1f\xde\x8b\x91\x16\x19\xcc\x25\x2e\xcd\xa2\x83\x8e\x0b\xaa\x7b\xd5\x7f\x78\xfa\x15\x4b\x6a\xc3\xc2\x6d\x3f\x2a\x4b\xf2\x72\x53\x9d\xa2\x43\x83\x62\xbc\x02\x9d\xb1\xac\x75\x4c\xe7\x0d\xb6\x75\xfd\xb5\x02\x35\xca\x34\x90\xb4\x35\x4d\xbe\x3a\x26\xf9\x05\xc4\x5e\xcd\xbe\x50\x59\xd0\x9e\x3f\x56\xbc\x26\x71\x3a\x79\x2e\x61\x57\x72\xba\xa4\x3b\xb0\xf6\x69\x7e\x49\x4a\x64\x64\x96\xbf\x88\x9b\x9a\xed\x45\xd3\x4c\x5d\x5f\x35\x75\x45\x8b\x9f\x1c\xb2\x46\x52\xb5\xd2\x6f\x7e\xe2\x68\xa9\x9a\x9d\xb8\x1e\x06\x39\x26\x36\x15\x3c\xad\x6b\xea\xbf\x3b\x3b\xba\xdb\xf5\xdb\x3d\x64\x8d\x8d\xb4\x5a\x94\x32\xa6\x2b\x46\x4b\xfb\x13\xb9\xf0\x5b\x11\x18\x1c\x6b\xbc\x54\x48\x95\x42\x16\x8d\x10\x28\xe4\xcd\xe2\x36\xe0\x99\x15\x99\x93\x8f\xd4\x43\xb5\xce\xf0\xfa\x18\x7e\x98\xd6\x52\x16\xdd\x9a\x34\x16\xbc\x96\x7e\x2e\x61\xd5\x67\xe8\x4d\xc3\x85\x7c\xf4\xf8\xd2\xa0\x17\xae\xd6\x96\x71\xfa\x3f\x54\x89\xe4\xca\x45\xf9\x79\x37\xd9\xea\x7f\xf0\xd0\xef\xd2\xdf\xfb\xae\xcd\x03\x24\xe2\x54\x4c\x8c\xcc\x1c\xdf\xf9\xcf\xc7\x93\xe6\xe3\xd5\x4b\xf7\xcb\xce\x9f\x1e\xfa\xc3\x12\x56\x30\xfa\xc7\xaa\x63\xb2\x41\xa4\x8a\x97\x88\x2d\x8e\x81\xab\xea\x47\x59\x1e\x61\x3c\x2e\x27\xa6\x55\x6a\x5b\xb2\x87\x24\x72\xc4\xf8\x14\x3e\xcc\xd2\x82\x6f\xe5\x9c\xb4\xd4\x2d\xfb\x3d\x91\x23\xb2\x32\x36\x2b\x28\x3b\x1a\x26\x1b\xb6\x92\x11\x12\x68\xfa\x2e\x54\xdc\x4b\xcb\x0f\x89\x74\xb9\x6f\x1a\xa3\xf9\x45\xee\xa5\xb0\x29\xa7\xd8\xf7\x47\x94\x14\x5f\xef\x7f\xb4\xc3\xee\xc7\xd9\x23\xd2\xa0\x43\xe6\x4c\x17\x37\x51\x79\x61\xcc\xed\xb4\x18\xa4\x97\xa4\x59\xcc\xd2\x7c\x34\x1a\xb4\x56\x05\x4b\x58\x1e\xec\x2d\x2c\xf7\x48\x69\x0c\x0c\xb3\x13\xd1\x1f\x50\x52\x17\x2b\xe2\xd6\x60\xba\x4f\x29\x4e\xf4\x06\xf7\x09\x7a\xc4\xeb\x55\xb4\x11\xfc\xbb\xe4\xc4\xcc\xea\x82\xed\xbf\xa6\xf5\x54\xec\x48\xfd\xbe\xc5\x13\x16\x18\x35\xfe\x1c\x92\x5b\x79\x73\x1a\x75\x26\x61\xcd\xb1\x57\xa3\xec\x63\xc2\x8c\xef\x8e\x75\xa0\xf6\xfe\xcf\x18\xc1\x78\x56\x52\xea\x8e\xaf\x15\x78\xa4\xe8\xaf\x5e\x51\x3c\x3b\x40\x19\xc5\x76\x21\xe1\x60\xd4\xe7\x93\x90\xcd\xd7\xce\xb2\x56\xf7\xf9\x19\x4b\x9b\x77\xa3\xae\x73\x80\x7e\xb1\xe7\x18\x42\x10\x6b\xb7\xfb\x91\xcb\xc3\x03\x66\xbc\x03\x2d\x5a\x34\x4a\xa4\xf2\xf9\xec\x18\xb7\xbf\xb5\x11\x36\x60\xdf\x7e\x27\x80\x8a\xfc\x3a\x07\xf5\x18\x33\xe4\xeb\x13\xfa\x1a\x5e\x6a\x19\x01\xad\x50\x2b\x33\x6f\xa6\x68\xf3\x5c\xde\xba\x8f\xfd\x02\x8b\xcf\x8e\xd6\xcf\x24\x6c\x71\xd5\x4d\x56\x7f\x08\x12\xb4\x45\x53\x67\x55\x0d\x12\x6f\xe1\xb5\xa5\xe3\x25\xe7\x21\xfa\x44\x10\x8e\xfb\x1d\xcb\x0c\xa3\x11\x53\x10\x97\xe6\x2b\x33\xc3\x17\x5e\x6e\x99\x62\xad\x60\xab\x62\xef\xb1\x18\x9c\xdc\xd8\xba\x6f\x03\x2f\x17\x9b\x8e\x55\xa0\x3d\x8d\xd7\xaa\x92\x57\x19\x4e\xe2\x20\xa1\xa9\x2a\xb6\xcd\x36\xce\xc1\xfb\x03\x89\xde\x84\x5a\x90\x8c\x8e\x18\xe3\x73\x27\xe1\xe2\x67\xd6\x2f\x1f\xc9\x72\xbf\xd3\xf1\x27\xcb\x15\xea\xe2\xda\xac\xfa\x34\xc5\x06\xe5\x15\xd6\xc7\x0e\xb4\x2d\x6d\x1f\xef\x41\x77\xa1\xdb\x1d\x56\x52\x12\xbd\xe0\xe2\xab\xfb\x53\x32\x91\xa5\x86\x8f\x8b\x67\x8b\x8b\x87\xb9\x95\x21\x8f\x66\x9a\x72\x83\xe2\x33\xa5\x01\x95\x09\x6d\x3e\x8b\x95\x90\xb9\x7c\x92\xc1\x37\x87\x4f\x01\xe4\x89\xc8\x45\x7c\x4d\x5c\xc3\x8d\x2b\xde\xa7\xd0\x1e\xdd\xae\x19\xa9\xaf\x66\x4f\x0c\xf2\xcc\x35\x4c\x92\xb1\xe7\xe9\x92\xda\x94\xba\x26\xbc\xc1\xaf\xc8\x65\xc8\xa6\xc8\x9c\xf9\xe3\x23\x73\x38\x0b\x60\xcd\xe4\x15\x11\x9f\x54\x71\x31\x7e\xe2\x6c\x17\xe2\x97\xdc\x52\xe2\xd6\xda\x36\xf6\x78\xbd\x1b\x61\x1b\x4c\xa7\xcd\x9a\xf0\x33\xde\x05\xb0\x9b\x03\xc5\x7a\x89\x4d\xb5\x1d\x95\xbb\x72\x8d\x52\x5e\x62\x7a\x42\xc8\xfc\xde\x7c\xf8\x7c\xd6\x02\xdb\x82\x79\x62\xc7\xb2\x76\x9a\xea\x16\xb9\x1e\x64\x11\x42\xe9\x7b\xe5\x2d\x1d\xed\x93\x6b\xdb\x9a\xe7\xeb\x7a\x09\xb7\x13\xb3\x80\x24\x6c\xc2\x46\x4d\xff\x91\x09\x99\xb1\xb4\x3e\x86\xa6\x8b\x8a\x86\xbc\xb6\x1c\xb3\x74\xa3\x94\xb5\xd4\xb6\x0c\xe7\xcf\x3b\xbf\xc2\x54\xc3\x0c\xd8\x6d\x42\x7c\x6e\xc6\x38\xe7\x64\xd7\x3e\xea\x1d\x9a\xcd\x3d\xc0\x3d\x97\xb0\xe5\x33\x98\x5f\x7e\x2d\xa6\xd9\x63\xc7\x76\xc2\x80\xc6\xbe\xdf\x86\xd1\x54\xc9\x40\x57\xe7\x8a\x66\xa0\xaa\xb7\xaa\xa8\xaa\x89\x7a\xa0\x66\x91\x36\xa5\x21\xaf\x45\x8d\xcb\x87\x80\xda\xc4\xcc\x02\xcb\x06\xe2\x41\xc1\xc5\x83\xa3\xdf\xbc\xef\x61\xed\x38\x45\x8d\x57\x72\x47\x04\xa9\x67\x9d\x9f\x8d\x4f\xa1\x27\x83\x43\xa8\x2d\xb3\x05\xa7\xa9\xb8\x11\xb7\x61\x9e\x91\x87\x09\xa1\x59\xb6\x65\xa6\x2d\xa9\x0b\xb2\xcf\xb3\x08\xac\x34\xc2\x92\xa5\xd6\xa9\x51\xde\xb5\xe7\x7f\xb4\x52\x73\x82\x4d\x1c\xc5\x68\xa9\x9f\xc3\x3c\x62\x4b\x23\xd5\x83\x46\xfd\x3d\xbd\xc2\x5d\x73\x1d\x5d\x1c\x3e\xd9\x4e\xdb\x37\x3a\xd2\x39\xeb\xbb\x4d\x78\xd7\xfb\xb7\x84\x7f\x4a\xcc\xc9\x95\xa8\x8c\xed\x7c\x3a\x75\x63\x2b\xe8\x8f\x12\x96\xbb\xfa\x3c\x1b\x13\x8a\x1e\xa5\xd8\x47\x38\xa4\xb7\x27\x3f\x8b\x1e\x8d\x70\x0a\x5e\xf6\x37\xf2\xf1\xf6\x6e\xf7\xc5\xf0\x6f\x0a\xbc\x13\xe2\x18\x41\x1b\x93\x96\x5c\x96\xed\x54\xf6\xae\xa9\x6e\xa0\x74\xb6\x69\x5f\xe4\x8f\x12\xb6\xc4\xe6\x44\xfa\x40\x7d\x45\x91\x75\xd5\xc3\x52\xcf\x3c\xa9\xcc\xdd\x54\xde\x84\x96\xb8\xca\x68\xfb\xa8\xf1\xe8\x8d\x18\xaf\xf8\x8f\x49\x5b\x19\xec\x39\x21\x05\x7b\x15\xaf\xeb\x3d\xbb\x9f\x8f\x6f\xaf\xa4\x1c\x73\xff\xd9\xda\x6e\xd9\x4f\xa3\xf4\x8a\x37\xb8\x96\xa4\x36\x49\xd7\x4c\x96\x97\x15\x6b\xe6\x27\xe5\xdc\xc9\xf4\xcd\x2c\xc9\x76\xcd\x51\xcd\x47\x2e\x7a\x53\xf6\xad\x7a\xab\xa1\xa0\xfd\x59\xaf\xcd\xc4\xad\x05\xe9\x5d\x9d\xbf\x7a\x8c\xd3\xd3\x4d\x9c\xe9\xa2\xfe\xf7\xcd\x9e\x7d\xa7\x5d\x03\x6d\x0f\x9a\xd8\xea\x6c\xab\x6e\x56\xc4\x96\x7f\xaa\x28\xaa\xdc\xae\xed\x6a\xcc\x6b\x71\xed\x6a\x1f\xa4\x1a\x6f\x98\x1b\x5d\x93\xfe\x1d\x8b\xfe\x65\x1e\xe4\xb3\x29\x43\xdf\xe6\x44\x26\x7a\x86\x39\x07\x78\x7b\xc9\x3b\x31\x3b\xde\xb5\x3f\x6c\x57\xec\xa2\xec\xa9\xe8\x3f\x18\x19\x98\xba\xb6\x70\x73\x8d\x63\x8f\xf8\x54\xf7\x9f\xf9\xe1\x6b\xd1\x6c\xeb\xd2\x06\xc5\xd2\xde\x6c\xcd\xf4\xe1\xe4\xdb\xf1\x9b\xe3\xc7\x13\xad\x13\xcd\x33\x4c\x0b\xa2\xcb\x9b\x5b\xca\x7b\xae\xa7\x89\xff\x89\xfb\xff\xfe\x75\xc2\x73\x70\xb2\xcf\xb0\x17\xb9\xbb\xb4\xf7\x72\x2f\xe6\x40\xe9\x54\xeb\x7f\xca\x79\x54\xb2\xa7\xb5\x45\xb0\x5a\xb3\xb4\x37\xc7\x39\x17\x36\x63\x39\xd3\x3b\x23\x38\x97\x32\x2f\xb5\x52\xbe\x43\xf3\x5f\x47\xa5\xd8\xe3\xd9\x60\x5a\x5c\x9f\x15\x9c\xbc\x3f\x6a\x39\x78\xb7\x4f\xac\xa7\xb1\x3b\xb9\x2b\xab\x8b\xa3\x07\xb5\x8f\x65\xb4\x68\xce\x7a\x4f\xe8\xdf\xb9\x8f\x5f\x6e\x35\x2c\x2f\xcc\x46\x8f\x53\x0e\x86\x74\x87\x75\x60\x37\x7b\xd7\xe7\xd4\x5e\xae\x46\xab\xd4\xab\xb4\xa8\x1c\xae\x66\xad\x5f\x6f\xc3\x1a\xd6\x5f\x50\xd8\x7f\xfe\xcf\xfc\x7b\x5a\x2b\xc3\xb3\xd5\x63\x4a\xfd\x84\x1d\x48\x8d\xae\xd5\x44\xe5\xbe\xc5\x1c\xf9\x3c\xd9\xf8\x99\x2b\x99\x97\xd2\x66\xd3\xc3\xb3\x18\x73\x0f\xab\xb5\xdb\xc7\xc6\xca\x97\x92\xf7\xd2\xfe\xce\xbf\xd3\xb1\x68\x33\xc1\x33\x80\xdf\x2e\x5b\xd7\x57\xa1\x5d\x44\x91\xf3\x23\x4d\x22\xe9\x59\x2c\x4f\xf4\x52\xc4\xd3\x70\xeb\xb0\xd9\xf0\x82\x48\xc5\x84\xd1\xbc\xaa\xea\xde\xce\x98\xd1\xf0\x65\xcb\xc3\xb9\xbf\x8c\xcf\xb4\x10\x3e\x86\xd1\xfd\xa5\xa9\xa0\x32\xba\xd0\x31\x4b\x2f\xc9\x27\x66\x35\x0c\x3b\x90\xd7\x77\xcf\xeb\x91\xfb\x0b\x37\x6f\xb7\x5c\xb7\x5a\x2f\xdd\x10\x96\x24\xd6\x7c\x8b\xda\xe4\xee\xbc\x89\xb6\x8d\xbf\xac\xe9\xd5\x97\x13\x1c\x9d\xa9\x75\xfd\xa5\x01\xd9\xc7\xc9\x94\xd1\x38\x21\x04\xbe\xc4\x6e\x2c\x8e\x31\xb6\x5f\x2c\xfb\xcc\x32\x4d\xb7\x8d\x4f\xcc\xf6\xac\x63\x3d\xa2\xc3\xed\x52\x51\x0b\xcd\x1a\x2f\xf4\xeb\xcc\xba\xec\xe0\xfd\xce\xbf\x1f\x32\x7b\xd2\x67\xdd\xd0\x5e\xb2\x9b\x65\x11\x2f\x19\xf6\xc4\x0f\xcd\xed\xbd\xed\xb1\xb9\xaf\x41\x9f\xae\xa1\x66\xa2\x5a\x96\xea\xb2\x4a\x83\xc6\x4f\x83\x54\x87\xdb\x3e\x32\x91\x02\x19\x3c\xa5\xf1\x2d\xb9\xc3\xb1\xcb\x4c\xc7\x3f\xce\x25\x6c\xb9\x4c\x48\xb4\x75\x57\x88\x65\x5f\x8d\x4b\x0d\x3e\xf5\xec\x75\x50\xb3\x08\x30\x68\xd4\x34\x52\x0a\xf9\xf5\x59\x3a\x5d\x12\x57\x3c\x4c\xfc\x81\xd4\xa2\xda\xa8\x71\x8e\x93\x9d\xbf\x7b\xac\x69\x8e\x7e\xd5\x46\xb7\xe5\x54\xd1\xd6\x6f\x68\x6c\xed\xd1\x50\x61\x63\x7d\xe1\xc3\x24\x8c\x50\x5e\x8f\x43\x3b\x31\x93\x27\xda\x59\xca\xdd\xb2\xc7\x62\x63\x02\x2a\x3c\xf1\x9c\x7a\xec\x14\x1c\xae\x02\xab\x72\x3c\x5a\x2a\xe6\x31\xae\xed\x21\xa5\xc9\x5d\x45\xf8\xcd\xc2\x43\x8b\xcb\x28\xc7\x26\xb0\x84\x65\xfb\xfe\x2f\xd5\x07\x39\x77\xa3\x16\x7c\x28\xec\xd1\x8c\x4f\x35\x1a\xe5\x2b\x25\x84\x04\x3a\x38\x89\x7e\xbc\x61\xf0\xa2\x71\xa3\x22\xa5\xfd\xc8\x81\x2b\xc2\xa4\xf0\x43\xcf\xc1\xe6\xc8\xe7\x41\x74\x54\x36\x4d\x35\x6f\xf7\xcc\xcc\xfe\x0e\xc2\x5f\x2c\x14\xf5\xf8\x57\x48\xa5\xf6\x84\x2c\xba\xb4\x99\x13\x68\xe3\xfd\x32\x13\x53\xe0\xbd\xce\xfa\x96\x2e\x8f\x6c\xe1\x2b\xe7\xa7\x5c\xc2\x6d\xd2\x5f\x0c\xed\x3c\x74\x52\x68\x6a\xb8\xa6\xec\x2e\xc9\x21\x18\x29\x22\xa5\xd4\xad\x8c\x63\x12\x6b\x87\xb0\x84\x45\xf1\xee\xae\x32\xa5\xa4\xc3\x80\x36\x7b\x7e\x7d\x6f\x25\x2a\x09\x46\x9e\x12\xe6\x67\x34\x6f\x48\xf0\xf0\x8b\x30\xad\xd0\x0f\xde\x13\x12\xbc\xa6\x68\x61\xb1\x15\x4a\x95\x17\xd5\xdb\xb7\x33\xf6\x7b\x1d\x17\x9c\x2f\xdd\x88\x33\x18\xb6\x54\x7f\xa2\x70\x26\x61\xe9\xa8\xfb\x76\xc9\x54\xc2\xb2\xb7\x90\xb5\xa4\x96\xb3\x9c\x90\x40\x19\xcb\x00\x0d\x3e\xb1\xe2\x47\xcd\xf7\x6e\x28\xb3\xc8\x15\xaf\x48\xb0\xb2\xbe\xba\xd3\x2f\xf3\x74\xca\xf8\x69\x2e\x5b\x36\x7a\x39\x45\x93\xe7\x90\xd6\x56\xf6\x0d\xce\xcf\x1f\x42\x68\x6c\xed\x65\xcf\x93\xb2\xb9\x58\x0a\xcf\x00\x0b\x3f\x35\x5d\x49\x27\xee\x19\x06\x61\xd2\x5c\xfc\xbe\x0f\x52\x28\x32\x4f\xae\x3e\xb8\xf4\xec\x19\x7a\xc7\xa7\x5a\x1a\x54\x4e\x43\x49\x0b\xb5\x29\x73\x46\xf7\x93\x48\xb2\x2c\xcb\x6a\xe7\x5e\xb4\xb9\xe2\x7d\x57\x68\x3d\xc5\xf7\x7d\x4f\x21\x4c\x7a\x64\xb1\x65\x9a\xaa\xe6\x28\x86\xc4\xb6\x4f\xcd\xfc\x85\x07\x1b\x13\x4d\xec\x65\x2d\xf2\xf3\x67\xca\xcf\x51\xd1\x42\x08\x76\xa9\xe6\x39\x32\xc4\x57\xd5\xa8\xcd\x8c\xdd\x7d\x22\x98\x33\x9f\x57\xe1\xf6\xa0\xcc\x06\xec\xb3\x42\x7b\xe2\x60\x28\x2b\xd3\x3a\x30\xdc\x3a\x40\x55\x49\x68\x5b\x58\x94\x25\x9c\x2a\xec\x73\x06\x9e\x04\x66\xc9\x7b\x2e\x34\xf6\xb7\x2f\xd0\x5e\x7d\x40\x22\xf4\xa5\x16\xe2\x28\x95\x7c\xa8\xd6\x68\xfe\xca\x7d\x2c\x42\x38\xb3\xa7\x1a\xa3\xe7\x64\xa6\x73\x6f\xe6\x4c\xc2\x61\x69\x5b\x74\xfe\xf5\x30\x7d\x7b\x2a\x75\x7d\x91\x5f\xdf\x03\x98\x98\x69\x54\xc9\xc9\x49\x7a\x3e\x27\x12\x20\xe3\x96\xe1\xc8\xe3\x7a\x7e\xe4\x23\x12\xa2\xfd\xca\xf5\x49\x0a\x45\x83\xcb\xf2\xb2\xe7\x52\x94\x6b\x76\x65\x0d\x59\x6f\xea\x3c\xeb\xc1\x7d\x58\x1b\x3d\x14\x25\x43\x31\x0e\x2e\x36\xda\xe1\x12\x77\xbf\x67\xb2\x98\xb2\x32\x32\xd1\xd2\x61\x53\x3e\x25\xa3\x24\x9e\xff\x6a\xf9\x75\x8a\x24\x82\xbc\x8b\x11\x8b\xf7\x95\xac\x82\xd6\x98\xd5\x92\xb7\x5b\xcc\x8d\x5c\xa1\x3a\xcb\xfe\xd5\xc5\x0b\x47\x50\xa4\xb1\xb7\x32\x72\x5c\x13\x95\x14\xee\xd1\x66\x78\x51\xea\x22\xbb\x87\x80\x96\x50\x33\xf7\x29\x9b\x37\xd3\x00\x63\x1e\xad\x27\x4d\x1a\xed\x2a\x7d\x2d\x23\x11\x6b\x9d\xe0\xd5\x5f\x40\x8f\xd0\xce\xc8\x5f\x20\x3e\xa9\xc0\xb2\xd1\x62\x68\x67\xe5\xde\xa9\x04\x64\xd9\x3a\x66\xbf\x37\x6d\x64\xea\xf8\x3b\x9a\xe9\xfc\xcc\x10\x91\xfc\xb5\x24\xd3\x2c\x96\x2c\x98\xc2\xeb\xc9\x45\xc4\x2e\xc4\x56\xc1\xce\xc1\xc1\xc9\x95\xc6\x67\x22\xce\xaa\x84\x6d\xa0\xe8\xd0\x1d\x74\x35\x19\xbd\xf8\x55\x73\xfc\x68\xf8\x1a\xd3\xf9\xce\x58\x21\xea\x74\xca\x53\x0f\x89\xb6\x7a\xaa\xad\x29\x1f\xa8\x25\xae\x26\xa7\x20\x2d\x77\x5f\xf2\x9a\xa8\x85\xb0\x88\xe0\x84\xd0\xac\x48\x86\x58\x8d\x54\xdf\x2f\x3d\xf5\x65\x33\x7e\xd7\xab\xa1\xee\xa9\x4b\xe5\x1d\x1d\xb6\x13\x5f\xb7\x7f\xcb\x94\x6e\xe5\x0c\x30\x97\x3e\x8c\x74\x76\x3d\xb6\xec\xd4\x1e\x33\xf7\x33\xd2\xd6\x4d\xd7\xbc\xa3\x1c\xa8\xc0\x2b\xd7\x29\x97\x21\x37\xfb\x2b\x57\x71\x48\xd5\x58\x73\xdc\x80\xdb\xc6\xc9\x73\x26\x22\x2e\x73\xb4\x2a\xb8\x7b\x7b\xda\x70\xd7\xfe\x5c\xc2\x21\xcd\x28\xa8\x42\x4d\xe4\x0c\xa5\x70\x9d\xb3\x18\xd3\xd5\xb0\x2f\xb5\x7e\x66\xfa\xc6\xc0\x49\xc7\x55\xf3\x97\x46\xa2\x66\xb2\x76\x95\x9e\x86\x51\xbc\x59\xb9\xf5\xb1\x2b\x5b\x80\x6e\xdc\xe7\xec\xc7\xb5\xb7\xfa\xf0\xe6\xa3\x0f\x4c\x7f\xb7\x32\xd3\xaf\xeb\x74\x0a\x7a\x12\x7f\x05\xdf\x75\x53\x0b\xbc\xe5\x53\xe6\x46\xee\x18\x6f\x3b\x6e\xc5\x6b\xd6\x6c\x3a\x63\xb6\x65\xb9\x65\xf3\xd5\xe1\xb9\x8b\xa4\x67\x4b\x00\x76\x44\x4e\x2a\x57\x71\x42\x63\xfb\xc0\xe1\xf2\xa3\xe3\x3f\x78\xc0\x85\x84\x1e\x8f\xda\xbe\x3c\xad\x84\xc6\x10\x9a\xb8\xf8\x08\xd5\xe0\x5d\x3f\x3a\xef\x6c\x8f\xa7\xae\x86\x2e\x3e\x6e\x97\xdd\x79\xbc\xbe\xfb\x61\x07\xee\x45\x98\xc5\x5a\xa5\x34\xe4\xf5\x55\x7a\xb7\x97\x8d\xe6\xaf\x92\xff\xd1\x52\x6e\xf8\x4e\x79\x76\xb9\xd6\x10\xe7\x75\x16\x74\x85\x3f\x49\xf3\x4e\xfc\x18\xcb\x16\x31\x1e\x8a\x1a\x5c\x18\x44\x1a\xb4\x13\xda\x17\x49\x16\x4b\x94\xa8\x96\x8e\x9c\xeb\x5e\x94\x50\xbd\xd1\xfa\x78\x40\x6a\xee\xfb\x8e\xd4\x9f\xad\xed\xda\xce\xc4\x8b\x2e\xbc\x9a\x9e\x82\xb1\xaa\xbe\x52\x8a\x7c\xf4\xac\x97\x69\xba\x29\x69\x89\x99\x09\xef\x93\xae\xa4\x10\xa6\x87\x67\x27\x16\xdc\x2c\xbb\x51\x53\xd4\x1c\xda\xf3\x7c\x98\x79\xba\x78\xfd\xc3\xe9\xc7\x3f\x4b\x38\xf9\xbc\xda\x3f\x71\xbb\xdb\xac\x47\xa7\x23\xab\xc9\xb5\x56\xa4\x42\xa0\x8c\xbb\xb0\xa6\xd0\xbb\xf0\x49\x21\x79\xc9\x83\xb2\xc2\xaa\x92\xba\x9e\x16\xb7\x9e\xb0\xa1\xb2\x49\xd1\xc5\xbd\x6d\xc9\x53\xb6\xd3\xbf\x5d\xc7\x93\x6b\x8e\x93\xb3\x7d\x9f\x9a\xb7\x07\xf5\x7a\xaf\x74\xa0\x37\xed\x35\x1e\x36\x60\xd4\x37\x37\xbc\x6b\xae\x68\xfd\xde\x45\xde\x37\x32\xfa\x7a\xaa\x7f\xe9\xd2\xe6\xf4\x61\xf3\xdf\xb9\x11\x17\xd1\xc6\xc2\xec\xe8\x22\xf3\xcc\xe4\x94\xf2\xc4\xe3\x11\xfd\xc1\xa2\x01\xe9\xc1\x8b\x03\xe3\x43\x6a\x23\xcd\x53\x4f\xe6\x22\x97\x75\xb7\x2d\x0e\x2d\xfe\x95\xfb\xff\xc1\x75\x92\x78\x18\xb3\xcf\xb4\xeb\xb4\x2d\xb0\x4d\xb4\xdd\xb4\xb3\xb0\x97\x72\xf4\xf3\x7f\xc6\x79\x9c\xb8\x67\xb3\xd5\xb5\xfe\x72\xf9\xc7\xc2\xcb\xd9\xa4\xe9\xca\xa9\xdb\xd3\xa8\x93\x33\x53\xf3\x33\xc3\x4b\xeb\x5b\x6b\xff\x85\xd9\x70\x3f\x73\x63\x63\x29\x68\x4e\x73\xd2\x72\xec\xc9\xd0\x9d\xbe\x91\x1e\xbd\x2e\xf1\x4e\xc5\xf6\xa3\x0e\xcb\xce\xf6\x9e\xc6\xa1\x98\xf9\x97\xdb\x04\xff\xce\xbe\xcb\xb2\xba\xbe\xf0\x6a\x92\x6b\x78\xbb\x37\xbe\xc3\xa8\x35\xb1\xd1\xbf\x66\xaf\x2a\xa1\x92\xba\xbc\xa3\x3c\xba\x8c\xa3\xfc\x6d\x8d\x6b\x1b\xf7\x90\xf2\x9c\xeb\x36\xcb\x3f\x71\x1f\xe2\x6e\x7e\x9c\x53\x9f\xc0\x1b\xbc\xd0\x15\xd8\x5c\x5e\xf7\xad\x92\xb7\xb8\xa8\x80\x26\xa7\x31\x33\x2f\xcd\x2d\xf5\x38\xe5\x28\x35\x22\x35\x20\xbb\xbf\x52\xb1\x2d\x65\xf8\xca\x82\xd3\x5e\xef\xdf\x9e\x99\xde\x5a\xfc\xac\xe7\x10\x63\x67\x40\x93\x69\x75\x6b\xc9\xa7\xbc\xa3\x8c\xa8\x64\xa1\xf8\xf2\xa8\xc9\xc8\xb7\x61\x6f\x42\x92\x42\x6e\x87\x3c\x08\xa7\x88\x57\xca\x09\xaf\xe4\x68\xdb\x1c\x6e\x5f\x4c\xdc\x67\xf8\xb3\x84\xcd\xee\x99\x0f\x03\x11\xad\x02\x35\x51\x25\xef\x72\x7e\xa6\x7a\xc6\x53\x46\x36\x04\xb9\xf8\xed\x78\x71\xb8\xcb\x3b\xa7\x3a\x47\x39\xb3\x39\xa7\x78\xbc\x0d\xd4\x48\x70\xcb\x3d\xaa\xe6\xe8\xc8\x1b\x9d\x5b\x35\x38\xfe\xc3\xbd\x1c\x3f\x59\x54\x1f\xa2\x6f\xe5\xae\x7c\x96\x9f\x9f\x26\x11\xe7\x15\x96\xe7\x7f\xe0\x59\xec\xc2\x66\x67\x63\x45\x63\x96\x67\x9c\x65\x54\x67\x38\x60\x3c\x68\x99\xe3\xde\x12\x72\x9c\x98\x50\x80\x5f\xb3\xd4\x3d\x3b\x95\xb4\xf9\x87\xe8\x62\x47\x60\xea\x75\x97\x58\x95\x7b\x5e\x4a\xca\xbb\xa8\x87\x01\x3d\x1e\xd6\x8e\x5e\xd6\x48\x26\x57\xf5\x68\xb4\x5c\xd4\xae\x2b\xcf\x29\x36\x2b\x92\x28\x5b\xeb\xfa\x59\xbf\xf0\xbc\x18\x36\x99\xe2\x51\x54\xdb\xe8\x37\x10\xbd\xa0\xb0\xe7\x76\x2e\x61\xad\x6f\xc4\xa9\x49\xb3\xa8\x26\xf5\x4d\x44\xb1\x6f\xb0\x0b\x9a\xb5\xa1\x31\xb9\x0e\x8e\x6a\xb2\xbc\x96\x0c\x87\x84\x92\xe8\x4f\xe1\x9f\xc2\x5a\xe2\xd7\x95\x15\x0d\x28\xec\xcc\xbd\xf3\xa3\x2c\x33\x15\xca\x4f\xdb\x75\x27\xb0\xd6\x05\xce\x25\x2c\xcb\xf6\x7b\xd4\x9e\x64\x3f\x89\xe9\xf0\x73\x72\xc6\xb6\x48\xd5\xeb\x55\x4b\xfb\x25\x26\xc9\x2f\xf4\x96\x07\x99\xc3\x86\x85\x81\x39\x93\x85\x86\x97\x4b\x2a\x40\x9d\xcb\x78\xde\xb1\x37\x70\x3d\xe1\x5e\xfe\xad\x7a\xac\xfe\xaf\xf3\x2e\x07\x44\xb0\x84\xc5\xf6\x1e\xac\x0a\x96\x34\xbc\x50\x01\x37\x24\x8b\x56\x5d\x73\x65\x27\x99\xcb\xc2\xa7\x3c\xf7\x59\xaa\xe9\x2b\xa8\x32\x29\x84\xbf\xed\x52\xdc\x62\x96\x14\x50\x91\xdb\xd0\x72\xb7\x18\xf7\xa0\x8e\x60\xcf\xb8\x56\xde\xdb\x61\x3f\x79\x6d\xeb\x21\x2c\x61\xe1\xb4\x43\xb0\xd4\x3c\x31\x37\xe0\x93\xfd\x90\x21\x9f\x72\x8d\x34\xbd\x00\x19\x7b\x1a\xc3\x09\xa5\x08\xb1\x00\xc1\x0e\xde\x45\xdc\xce\x2f\x95\x34\x81\xec\xd3\xa2\x9d\x4a\x58\x86\x32\x8e\x57\x02\xfc\x13\xd2\x0b\x05\x9b\x04\x86\xde\xae\x74\x9d\xc6\x42\x73\x50\xec\x0a\x2d\x7e\x19\xfb\xc0\x3b\xc3\x5a\x4a\xeb\x83\x6c\x80\x10\x26\x5b\x18\x5d\xd6\xb7\xaa\x4f\x72\xd8\xfa\xef\x38\x51\xab\x50\x7b\x71\xf8\x48\x6f\x32\x66\xf3\x11\xcb\x72\x6b\xf5\x58\x7d\xf6\x52\x8a\xa6\xc8\x79\x52\x33\xd3\xdb\x39\x5f\x77\x08\xc5\x2a\x8b\xa6\x5d\x36\x25\xf7\x62\x99\xbd\x24\x4d\xe7\x54\xc3\x25\x74\xb9\x7c\x19\x28\xbe\x39\x13\x4c\x63\xe4\xa0\xfe\x40\x7e\xf6\x90\xf5\xe9\x08\x3a\x3d\x61\x2d\xf5\x4d\x0e\x6f\xf1\x36\x55\x5d\xd3\x6d\x37\xed\xf0\xf7\x19\xdb\x95\x4f\xbb\x6a\x66\x4a\xf7\xec\xce\x24\xac\x14\x77\xa5\x97\x24\x78\xf7\x7a\x28\x1b\x8e\x2b\x68\x09\x73\xb0\xac\x52\xbd\xfd\x8c\x81\x99\x89\x6a\xf9\x34\xe0\x1e\xfd\x8d\xbb\x48\xd4\xa8\xa4\x78\x25\xe4\xce\x2c\x9d\xa2\xe8\xca\x8c\xc6\x56\x2e\xaa\xa1\xcf\xd3\xae\x96\xf7\x76\xd2\x4c\x4b\xef\x40\x39\xdb\x75\xa2\x01\x95\x32\xfe\xd8\x06\x73\x4d\x83\x18\xb9\x62\x7e\x8f\xef\x7a\xdf\x8e\x3e\x3e\x40\x9b\x7c\xde\xf6\x28\xf8\xc1\xf4\xfd\x29\xa4\x83\x57\x83\x38\x53\x64\x32\x2c\x9f\x85\x75\x94\x30\x8c\xac\x9d\x59\x43\x70\x52\xf5\xca\x3f\xb4\x4f\x4d\x61\xef\x4c\x9d\x49\xd8\xbb\x31\xe4\x91\x29\x12\x78\x62\x39\xaf\xdc\xc5\xdf\x42\x67\x4e\x77\x9d\x18\x03\x7b\xeb\x3d\xd9\xdb\xeb\x28\x42\xcf\x57\x9f\xdf\x7d\x11\x8d\x1a\x8a\xa3\x4c\xe6\xcd\xbc\x2d\x5c\xae\x98\x60\xcc\xea\x72\x2b\xf4\x73\x6a\x59\xb9\x6f\xe7\xde\x14\xeb\x0e\x14\xbb\x1f\xb5\x4f\x78\xe7\xfe\x08\xd5\xb4\xcd\x54\xfd\xce\x9f\x4e\xab\xff\xe9\xc1\x57\xdb\x2f\x8f\xf0\x23\xb0\x47\x30\x0a\xd1\xf5\xd1\xca\xd1\x5d\x3e\x8c\xe2\x15\x91\x55\xb1\x92\x8a\x98\x2b\x33\x99\x7c\x75\x59\x0c\x5d\x48\x4f\xac\xb0\xec\x42\x99\x1a\xdc\xed\x80\xee\xc2\xb1\x17\xab\x24\x37\x9a\xc5\x89\x4b\xb3\x58\xf8\x36\x1d\x05\x91\x2d\xf5\x3e\xd5\x6d\x52\xf7\x2f\x07\x84\xaa\xf8\x0c\x78\x9a\x1f\xa3\x08\x1f\x11\xf1\x50\xbe\x65\x9d\x14\xb7\x52\xc5\x34\x7b\xe9\xe6\x14\x71\x2f\x73\xaa\x4a\xa5\x7b\x63\x66\x62\x9f\x19\xba\x0b\xad\x91\x9b\x55\x0c\x89\xe2\xee\xdf\xf5\x5e\x8b\x07\xfe\x68\x62\x93\x65\x15\xff\x61\xc5\x20\x44\x75\x44\x9e\xfe\x4d\x9c\x24\x88\x74\x80\x9c\x89\xd2\x8b\x41\x88\xab\x52\xb2\x40\xfd\xa5\x45\x92\x17\x53\x24\x5d\x56\x49\x0d\x49\x6f\xd5\x1c\xed\x21\x9c\x63\x34\x9d\x4e\x6e\x38\x4a\x53\xf7\x51\x30\x46\x97\x79\x2c\xc0\x2a\xc2\x2f\x68\xcc\x6b\xc2\x79\x97\xd9\xe8\x7b\x23\xc3\x5b\xfa\xcb\x0c\x32\x8c\xeb\xcc\xba\xec\xe6\xfc\xf4\xb2\x57\x35\xdd\xac\x58\x7d\x24\x63\x2f\xe6\x5d\xa8\x97\x18\x90\x5d\xb2\x3b\x2e\x41\xec\x0c\xa6\xb6\x93\xec\x82\xc0\x42\x33\x2a\x0d\x7a\x19\x3e\x01\x5a\x39\x66\xc9\x63\x31\x54\x81\x38\xee\x1d\x2e\x46\x8e\x25\x4e\x1e\xee\x5e\xfe\x70\x11\x15\x89\x34\xc5\x26\x5d\x0e\x9b\x1a\xdf\xef\x71\x9d\xf9\x3a\x0d\x1d\x43\x5b\x2b\xbf\x45\x5c\x1b\xc7\xbd\x83\x85\xfa\xa1\xaf\x9d\x7f\x99\xde\x57\x27\xd6\x26\xd2\xc4\x54\xf2\x92\x6f\x94\x29\x94\xd0\x14\x7b\x24\xea\x2f\x06\x24\x09\xa5\x75\x7f\x99\x28\x95\x6b\x1e\x99\x64\x3b\x1a\x05\x24\x27\xf4\x14\x69\xb4\x28\x8e\x51\xaf\xdf\x3a\x97\xb0\x7f\x63\x08\xbd\xfc\x66\xfc\x87\xc0\x70\xc7\x61\x13\x4f\x0d\x6f\xb3\x41\x83\x1a\xed\x41\x75\x2e\x55\x46\x85\x03\x85\x4b\x0a\x89\x2a\x8e\x6a\x1b\xda\xdb\x86\x0e\xe6\xcf\x6d\xf9\x3d\x24\x43\x29\x52\x39\x4a\x14\x5a\xb5\xc7\x37\x36\x7e\xab\x40\x9c\x5c\x1b\x4b\xae\xa6\xcc\x63\x8d\xcd\xf1\xbf\xe5\x84\xe5\xce\xe1\xe4\x67\xdb\x64\x69\x6d\xea\x65\xe8\xa9\x6f\xaf\xa7\xa6\x9f\x60\xd8\x64\xca\x6c\x59\x65\xa7\xe6\xa2\xe5\xb5\x12\xfc\x3c\x96\x3c\x2b\xad\xf2\x7d\xe7\x9d\x29\xef\xed\xb7\xbf\xdb\xa9\x29\xe1\xae\xbe\x2a\xfc\xac\x9e\xd8\x47\x01\x04\x2e\x8a\x41\xf1\x5e\x84\xae\x9d\x4e\xd7\xed\xf5\x6c\x42\x6c\xe8\x6c\x94\xec\x45\x9d\x39\xdc\x6f\xfa\x9a\x04\x3f\x88\xf4\x4e\x48\xce\x54\x2d\x49\x6f\x08\xed\xbd\x3b\x57\xb7\xf7\xe2\x77\x09\xeb\x0f\xc6\x6f\xb7\x6d\x54\xc4\x66\xdf\x8a\x13\x4a\xba\x14\xc7\x18\x79\x25\x84\xce\xbf\xd2\xd7\xc6\xfb\xc8\xab\xcb\x2b\xc3\x97\x3f\xf0\x65\x28\x55\x94\x5c\xa2\x7d\x86\x61\x7e\x4c\xc5\xbb\xc6\xd7\xdd\x55\x13\x8c\x2b\x61\xc7\x2d\x7f\xb0\xf7\x22\xcb\x71\x23\x29\x6d\x99\x95\x28\x39\x8d\x05\xbb\x59\x28\xe9\xc1\x49\xe8\xf1\x1b\xd1\x0d\x91\x16\xd1\xcf\xa3\x8a\x62\x2f\xc6\xbb\x24\x1f\x65\x6e\x15\xd2\x97\xa7\xd5\x85\xb6\x0b\xf6\xc7\x4d\x11\x2e\x7d\xd9\x8b\xfd\x8b\xcf\xb9\xba\x94\x32\xb2\xd7\x3e\xd6\x1e\x5f\x60\x5b\x6e\x5a\x2a\x5f\x28\x9f\xab\x9b\xd9\x97\xf5\x3a\xc3\x36\x8b\x3f\x47\x2b\x2f\xbb\xb8\xbc\xa2\xa3\x5e\xab\xdd\xb7\x9f\x6d\x4c\x6e\xae\x7d\x63\xea\xa8\xeb\x6f\x6e\xeb\xf4\xa0\x72\x99\x6f\xcc\xbd\xfb\x6a\xc3\xd5\xd6\xce\xc6\x0f\x8d\x91\x35\x9a\x55\x5a\x15\xdf\x2b\x0c\x2a\x53\xaa\xf7\xea\x75\x9b\xd4\x3b\xbf\x0f\x30\x8d\x2e\xcc\xf1\xad\x9b\x1d\x30\xff\x9d\x1b\xbe\x8e\x90\x57\xbb\xa7\x32\xa7\x2d\xda\x5f\xf4\x95\xf5\x05\xf5\x9a\x76\x92\xb4\x57\xb7\xb3\xb5\x67\x74\x2b\xf6\x51\x0d\x1b\x8e\x77\xcd\x6e\xad\x59\xef\x75\x9f\x0e\xfd\x1b\xff\xff\xf5\xab\xfa\xc8\x77\x9f\x62\xc7\x7d\x73\x69\xd3\x6b\xf3\xd2\x46\xf8\x46\xde\xf6\xdd\xfd\x8d\x13\xd3\xff\xce\x78\x92\x7f\x40\xba\x6d\xbb\x9e\xb7\xd2\xb9\x78\x61\x4e\x71\xfa\xe1\x44\xd4\xb8\xd0\xd8\xc2\x58\xfc\xa8\xef\xd4\xed\xb9\x98\x4d\xfa\xff\xcc\x7d\x60\xb5\xd9\xb7\x7a\x63\xae\x6c\x6a\x65\x34\x64\x98\xb3\xdf\xbc\x47\xa3\x13\xbd\x9d\xa8\xd5\xb9\x15\xab\xa5\xac\x75\xb9\x03\xbb\xf7\x68\xc6\x60\xe3\x5f\x73\x31\x07\x56\x1b\xc8\x8b\x9d\x53\x69\xa3\xa8\xfd\x2b\x5d\x56\xad\x5b\x8d\x0c\xb5\x75\x55\xa3\x15\xae\xa5\xf1\x25\xd4\xc5\x6f\x0a\xe7\x4b\x36\x2a\xec\x9a\xde\xf7\xab\x4e\x6f\x6f\x5e\xf9\x27\xfe\x9d\xa3\x65\xb2\x29\xf3\xa1\xb4\xee\x9d\xd6\xfd\xfa\x0b\x55\x24\xa5\x96\xf9\x07\xb9\xd2\x99\x8e\xa9\x3b\x29\x97\x92\xa4\x13\x37\x93\x1c\x93\xa4\x33\xdc\x4a\xfb\x9b\x56\x06\x91\x67\x9c\x37\x4b\xff\xca\xbf\x7f\x75\x21\x7b\x74\xa3\x37\xbf\xc9\xbd\x66\xaa\x94\xa6\xe0\x56\xd6\x62\x0a\x5e\xfc\xcb\x68\x81\x88\x9f\xa1\x57\x82\xf8\x02\x91\x02\xa8\x02\x56\x82\x64\xa3\x5f\x66\xcc\x97\x55\xb4\x60\x0e\x64\xce\x6d\x6d\xff\xa9\xa2\x74\x52\xb4\xea\x3d\x86\xd7\x6d\x51\xcf\x54\xa6\x93\x57\x9b\x7e\x25\xa1\x20\x3a\x22\xf4\xba\x7f\xa2\xf7\x75\x37\x2f\x97\xfb\x0e\xf8\xf6\xf9\xb6\x23\xf6\x37\x9c\xef\xfb\xeb\xc6\xf4\x64\x1e\x94\x4d\xb7\x5a\x0d\x8d\x2e\xb0\xec\x17\xfc\x2e\x61\x8f\x64\x56\xa0\x17\xbd\x3e\xa6\xe4\x52\x26\x7b\xa2\x41\xe4\x85\x20\x4c\x6f\x5c\x57\x03\xfb\x06\xcb\x42\x33\x76\x23\x6a\xfd\x7b\x7a\xb7\x74\x89\xf4\x42\x4c\xf0\x9c\xef\x05\xbe\x89\xdd\xcb\xc6\xad\x9c\xea\x40\x19\x93\x5e\xad\x3a\xfd\xcd\xfb\x6f\x54\x8d\x45\xb4\xa1\x97\x11\x66\x44\xc4\x66\x87\x60\x79\x59\x3a\xdb\xda\x48\x99\x6e\xe9\xef\x69\xc6\xab\xca\x2b\x31\xff\xea\xff\x89\x27\x77\xfb\x97\x8b\xd6\x3d\x8b\x6b\x2e\x73\x41\x1f\x12\xca\xf2\x8c\x6a\x43\x7a\xdf\x4d\x97\xee\x10\x9d\x4b\x58\x31\x1e\xa4\xa9\xf3\xc9\x1b\x4f\x30\x09\x4a\x76\x27\xb3\xb3\x37\x1d\xd5\xa3\x51\xc7\x57\x08\x97\xc5\x10\xd7\x10\xfe\x24\xc0\xcc\x47\xcc\x7b\x2c\x84\x25\xef\xa6\xc3\x62\x45\xe3\x81\x14\x16\x9f\x62\x5a\xdc\xde\xe4\x32\xfc\x76\xf9\xc6\xb1\x21\xf4\x14\xd6\x16\x79\x7b\x1a\xaa\x14\xd3\xb3\xc2\xb9\x3d\x5f\xd9\x54\x18\x05\x68\x5e\x51\xe4\x92\x96\x17\x1e\xe5\x0d\x65\xa7\x66\xd6\x60\x4c\x60\x78\x43\x7f\xc8\x6e\x2b\x26\xa5\x24\xad\xff\xd1\x2e\xc1\xc7\x2a\xfa\x46\xb6\x70\xf5\xed\xee\x96\xe9\xfd\x1d\x28\x5e\x3d\x91\x99\x6b\xe9\xe4\x29\x33\x4b\x26\x0f\x74\x72\x54\x33\xc2\x57\x2f\xfa\xe9\x2a\x46\xc9\x9b\xc8\x5a\xcf\xe8\x48\xa5\xfd\x4d\xf6\xab\xe2\x97\x17\xc4\x2a\x0c\x8a\xdc\x3c\x92\x1a\xaa\xc3\xa6\x0c\xce\xc1\x41\x29\xc9\xbe\xc5\x32\xcd\xe6\x23\xdd\x6b\x88\x0c\xdb\x9c\x56\xfb\x5a\x71\x46\xfc\xae\x8f\x95\xb5\x8b\xb6\xc1\xcf\x69\x91\x00\xce\x29\xa6\x07\xd4\x04\x24\x7e\x04\xf3\x38\x6a\x1f\x56\xdf\x7f\xc0\xb3\x21\x53\xfb\x61\x24\xf0\xf3\xe7\x77\x9d\x60\x1b\x4c\x9f\x85\x98\xe0\x5c\xe6\x3a\xd6\xfe\x3b\x0b\xf4\x87\xc1\x67\x12\xe6\x87\xdb\x33\x8a\xae\xc7\x58\xb9\x15\x9b\x72\xa9\xdd\x94\xc0\xe3\x2a\x65\xdc\xa2\xc0\xfd\xf2\x08\x47\xfb\x5d\xec\xcb\xad\x67\xbb\xcf\x4c\xdf\x3f\xfd\xcc\x40\xf3\x88\x53\x56\x42\x49\xed\xad\x69\xb7\x9b\x7a\xb8\x42\x06\x5f\xc5\x44\x17\xce\x0c\xe7\x6e\xdb\x99\x84\x45\x8c\xce\xc2\x12\xdd\x98\x7b\xae\xbb\x06\xe3\xf2\x4d\x42\x48\x2c\x82\x54\x1f\x3f\x87\x62\x55\xbe\xe5\x41\xb6\x79\x10\x7f\xab\xfc\xc1\xea\x6b\x13\xdc\x5a\x32\x56\xe6\x77\xc2\xe8\x8a\xf7\x0d\x07\x9c\x9e\x04\x65\xa6\x58\x94\xd5\xb6\x6b\x4f\x06\x6c\xf1\x9d\x49\x58\x0d\xec\xae\x29\x09\x8a\x0e\x77\xa9\xd4\x1f\x92\x4e\xe5\xb1\x60\x34\x22\x99\xc1\xfd\xfc\x76\x0c\xd9\xfb\xfe\xd8\x75\xb7\x0b\xb8\xb7\xb3\x9e\xcf\x61\x8a\x10\xa7\x7d\xbf\x2e\x60\xf0\x6b\x50\x1f\xcd\xe1\x43\xe0\x7c\xd2\x8b\x12\xf6\x56\x97\x09\xba\x4d\xa8\x8e\xb3\x71\xbf\xef\x6a\xa9\x8a\xb7\x94\x69\x82\x3c\x06\x77\x33\x6b\x38\x55\xed\x27\x83\x0f\x49\x2f\x3f\x3f\xbc\x77\xfb\xc7\x4d\xf4\x1b\x24\xb7\x70\x9e\xf1\x7f\x50\xfe\xca\xc3\x78\x81\x1f\xe9\x27\x9f\x9e\x84\xbd\x78\xc0\xed\x24\x50\xfc\xa6\x55\x78\xfc\xfa\x06\x3b\xb4\xab\x32\x5b\x12\x32\x3d\xfd\x9f\x59\x28\x28\x10\xf0\x5c\xa7\x94\x21\x0d\xc3\x2d\x42\x9b\x78\x95\x83\xdc\xf1\xd8\xed\xe1\xe3\x07\x45\x0f\xe9\x9f\xf9\xbc\xdf\x23\x22\x63\x70\xe0\x7f\xf3\xb3\x43\x8f\xc2\x9e\x35\xc0\x20\xe9\x6a\x09\x56\x2b\xd7\x98\xf9\xa6\x22\xb4\xaf\xd5\xdb\x37\x72\x2f\x85\xca\x58\x75\x2b\x1d\xf1\x6a\x53\x86\x63\x7b\x60\x2b\xe1\x78\x7e\xb0\x7a\x3b\xfd\xda\xfb\x55\xd8\x8b\xd0\x97\xd1\xa8\x2f\x3e\x58\x11\xbd\x67\x58\xe3\xaf\xff\x15\xa3\xb7\xe7\xc0\x1a\x68\x9c\x14\x5f\x52\xd0\xba\x30\x9e\xb3\x29\x7c\x26\x61\x5d\xb1\x97\xb8\x08\x2d\x52\xd4\xe1\xb1\xfa\x1d\x01\x0f\x2a\xf0\x51\x80\x64\x96\xc8\x96\xc0\x1b\x67\x11\x23\xfe\x83\xd4\x7b\x8c\xf7\x13\x98\xfe\x78\x2c\xc4\x72\x8c\x8f\xf8\xb7\xe5\x25\x0d\xd0\x1d\x63\x83\x49\x92\xf3\x4b\x4e\x3a\xee\x4e\xea\x6e\xb9\x40\x3b\x8b\x78\xf8\x49\x55\x71\xdc\x92\xcb\x7b\x6d\x76\xe1\x43\x86\xa0\x6f\x02\xf4\x9e\xd4\x74\xe4\x7d\x5f\x0b\x3e\x13\x12\xa0\xe0\xf7\x10\x5e\xfb\x5c\x4d\xac\x48\xee\xf0\x83\x4c\x08\x55\xa1\xc4\x88\xd4\x79\x37\x44\x2b\x4d\xa9\x1c\xad\x33\x60\x4a\xe2\x3c\xf3\x3b\x79\xb3\xae\x3a\xe5\xa2\x67\xac\x9e\x87\xc4\x09\x8f\x36\x43\x15\xc7\x0e\x4b\xeb\xf7\x2b\xb4\x6d\x54\xd7\xc8\x2f\x92\x5d\x23\xb3\xa4\xc2\xa3\x6d\x61\x3c\x66\x77\x12\x59\x57\xba\x6c\x2c\xe7\x8a\x11\x9a\x99\xfe\xa1\x62\xb4\xdb\x7b\x56\x67\x0f\x0b\x96\xb0\x30\xd8\xa2\x9d\xc9\xed\x77\xc1\xc8\x56\x95\x4b\x82\x80\xfb\x39\xb3\xac\x40\x1c\x0f\x13\xbb\x37\xb3\x2e\x93\xf2\x77\xea\xef\xd1\x2c\x6c\xec\xde\x3c\x55\x42\x18\x52\x2b\xaa\x87\x26\xee\x6e\x26\x61\xd5\x99\x5a\x55\x7c\xbd\x33\x73\xca\x07\x7b\xb0\x84\xb5\xc4\x4e\xc2\x5c\xc6\x40\x06\x47\x72\x43\x79\xa5\x61\x09\x43\x05\x71\x39\x5c\xc9\x7a\x91\x3b\x02\x32\xbc\x2c\x3c\xb8\xbc\x0b\x82\xde\x22\x0b\x92\x51\x72\x52\xca\x0e\x3a\x3b\x96\xd9\x9e\x2b\x91\x06\x59\xd2\xb5\xae\xfd\xe8\x0b\x5b\x87\x08\x04\xb1\x8d\xdb\x2f\x55\xb8\x15\x2b\xe0\x5b\x6e\x27\x6e\xe0\xac\xf2\x42\x4f\x59\x63\x49\x29\x4d\xfe\x8e\xec\x9a\xf4\x45\x29\x2b\xe9\x4a\x59\x75\x85\xab\xaa\x78\x5a\x8c\x06\xbb\xe6\xf2\x0e\x4c\xfe\x41\xb1\x2d\xb9\x57\xea\x24\xfa\x5a\x96\x0c\x8e\x3c\x11\x76\xd2\x72\x18\x54\x66\x64\x85\x45\x29\x7b\x0f\xd8\xe9\x1b\x8e\xa8\x1d\x9b\xec\xeb\xcf\xe9\x5e\xd1\xb0\x52\x27\x57\x6d\x52\x7f\xac\xb5\xaf\x1b\x6f\x24\x69\x69\x67\x37\xef\x1a\xea\x3b\x1a\xd6\x92\x5c\x55\x0c\x1a\x8b\x07\x0d\x96\xb8\x4e\x10\xf5\xc9\xe3\x95\xb1\x2f\xed\x07\x65\x7d\xe9\x4b\x91\x61\x3e\xa2\x0e\x1c\xae\x69\x4e\xfd\xb6\x01\x56\x8f\xcd\xc5\x4c\x74\x4c\x42\x4d\x05\xcd\xdd\xac\x07\x1d\x9a\xdd\x03\x7c\xf7\xc3\xfc\x63\xec\x52\xf7\xf3\x5b\xaa\x8c\x3a\x1c\xc7\x45\xd6\x28\x7f\xb7\x95\xab\x66\xc3\x03\x2d\x1f\x4b\xfd\xd2\x8b\xa2\x32\xa2\x15\x9d\xf3\x02\xa5\x7c\xd6\xdd\xab\x5c\x90\x9c\x8d\x5d\x9e\xba\x7c\x75\xc7\xf0\xdc\xf6\x93\x0b\x95\x8d\x71\x49\x49\xcd\x26\x2a\xbd\x58\xff\xb2\x5d\x78\xc8\x60\x9e\x60\x67\xe6\x0f\xfe\xe6\x68\x61\x73\x70\xb8\xd9\xac\xec\x6a\x26\x73\xac\x6e\x30\x6a\x5c\x4a\xcc\xe7\xd0\xf6\xe0\x2f\x41\x9b\x41\x8e\x41\x36\xa1\xf7\x22\xc2\x62\x87\x52\x2a\xb2\x6b\x8a\x46\x6a\x7a\x9b\x55\x7a\x5c\xc6\x77\x97\x5e\xed\xb8\xff\xd9\x67\xec\x19\xcc\xb7\x0e\xce\xb6\xa4\x55\xa0\xe5\xec\xe6\x95\x67\x2d\x64\x3d\x4d\xd3\x4e\x2e\x48\x8c\x4b\xb0\x4e\x6c\x4f\x79\x9c\xd1\x90\x6b\x5d\x9c\x5f\x55\xdb\xd4\xde\x2d\x32\xc2\x34\x1b\xb6\x26\x76\x70\xf7\xef\x7e\x6b\x0f\x79\xc1\x77\x38\xac\xbd\xaa\x26\xa1\x88\xa5\xe2\x4d\xa9\x7a\x49\x4b\xd1\x51\x01\x75\xa1\x78\x61\x6b\xc9\xfb\x8a\x85\x5a\x8e\xe6\x6b\x9d\xa3\x43\x56\x93\xf4\xcb\xfc\x3b\x19\xff\xe4\xf7\x20\x9d\x3c\x5f\x7e\x34\x2e\xda\x93\xd6\x64\xde\x8e\xd7\xca\xd5\x62\xdd\xc4\xde\xe0\x59\xbf\xd6\x44\xd2\x12\xd6\xa9\xd4\x1b\x35\x6c\x34\xd5\xba\x58\xbe\x41\x7b\x64\xf5\x6f\xfc\xff\xf1\xaa\xff\x3f\x67\x39\x3a\xd9\x47\xd9\xb1\xde\xd8\x5c\x17\x5a\xbd\xbb\x5a\xbb\xdc\xb9\x42\xb2\x3a\xb0\x45\x7b\xcc\xfa\x5f\x19\x39\x0f\xbe\x6c\x33\xac\x75\x2c\x67\x2c\xfe\x9a\xbd\x37\x39\x3e\x56\x31\xcc\x36\x64\x39\xa4\x3c\x24\x38\x72\x6f\xf4\xed\x64\xd3\x8a\xf0\xf1\xbd\x7f\x67\xde\xf7\xda\x9c\x58\x95\x9f\xab\x9a\x5a\x1a\xd3\x18\xea\xe8\x57\xea\xfe\xd9\x7e\xd4\x4a\xdd\x14\xdb\x78\xbd\x3e\xbe\xa1\xba\x41\xa7\x79\xad\xfb\x74\xea\xfa\xea\x8f\x63\xb4\x7f\xe2\x3e\x7e\xbb\xa9\xb7\x74\x73\x3a\x63\x64\xbe\x4f\xbf\xfb\x5d\x5b\x71\x63\x74\x2d\x51\xa5\x7e\xd9\xbb\x62\xed\x02\xd4\xbc\xad\xbc\x9b\x79\x81\xf9\x9f\x8b\xf6\xea\x4c\xbb\x96\xc6\x05\x57\x03\x8e\xfe\x56\x91\x3b\x9e\x5d\x5f\x9b\xb9\x36\x64\xdd\xb3\xd0\xfa\xac\x3e\xb4\x9a\xac\x94\xad\x80\x27\x7b\x22\xa3\x32\xd5\x32\x31\x21\x1e\x39\xa6\x2d\x7a\x2a\x9a\x3b\xee\x62\x8a\x49\x41\x64\x9d\x61\xf7\xf6\x44\xc8\x1a\xef\x91\xf6\x9f\x25\x6c\xee\xcd\xb4\x0e\x70\xb4\xed\xd5\x76\x95\x73\x14\x44\x65\xa3\xa4\xfe\x4c\x88\x8a\x76\x88\x50\x08\xd6\x0c\xc0\xf3\x25\xf6\x36\xf4\x4c\xf1\x7c\xe7\x7b\x12\x66\x9b\xba\x58\x18\x5b\x57\xde\x6d\x34\x09\xd6\xad\xff\x74\xff\xf9\x8b\x60\x30\xa0\xf5\x7a\xc5\xe5\xfc\x2b\x19\x6f\x12\x85\xa2\x53\xc2\x2e\x05\xe0\x79\x75\xb9\x56\x3b\x49\xdb\x0b\x59\x7b\x58\x3e\xb3\x78\x60\x99\x64\xcb\xe2\xfd\x29\xdc\x3d\xf5\x6a\xd1\xf3\xfa\x90\xde\xce\x59\xac\xed\xe8\xdf\x25\x6c\x61\x4e\xcc\x77\x06\x55\xfd\xca\xc5\x4c\x96\x8b\xba\x19\xfc\xde\x07\xcd\x75\xd9\xc1\xc4\xca\xda\xc4\xd8\x40\x59\xc7\x45\x4b\x57\xfd\x99\x9a\xa4\x3a\x8a\xc1\x6d\xdb\x19\x6f\xe2\x08\xbe\xb4\xc2\x62\xaf\xc6\xbc\x41\xfb\x85\xfe\xfd\xd0\x73\x09\x2b\x25\xc3\x24\x4d\xc8\x85\xdb\xc9\x52\xe1\x5a\xbe\xdc\x2e\x65\xb6\xae\x66\x87\x86\x57\xb4\x58\x54\x42\x15\x1e\xca\x26\x48\x3d\x90\xa0\x16\x47\x95\x6c\x55\xa1\x37\x12\xb4\x0f\xf7\xb5\x8d\x0e\xca\x32\xa8\x88\x6b\xc7\x1b\xd7\x5c\x4b\x41\x08\x78\xbf\x50\xd8\xeb\x57\xdd\x91\x45\x1b\x25\xe3\x23\xe8\x58\x66\xbe\xa0\x9f\xab\x3e\xa9\xf8\x5c\xc6\x5c\xac\x48\xf0\x05\x2f\x0b\xd7\x1d\xf6\x0b\xec\x76\x3c\xd7\xa5\x94\xd4\x4e\x8d\x13\x1d\x73\x02\x04\xe3\xbd\xf2\x3c\xea\x02\xfa\x51\x67\x33\xf6\xa0\x4e\xd2\x13\x9c\x39\xeb\x0e\xb5\xb2\xa9\x14\xcd\xa0\x70\xe7\x26\x73\x1e\xed\x29\xa5\x4f\x32\xea\x22\x0d\xbc\x5e\xec\x97\x18\x47\xe9\xaf\x53\xad\x52\x28\x53\x1a\x7d\x0f\xe3\x57\x90\xc9\xd0\xd4\xb3\x90\x77\x63\x0b\xa3\x49\x7b\x5b\xea\xd9\x66\x38\xc6\xb7\xbe\x02\x49\xc8\x9a\x55\x6b\xdf\x2f\xb6\x8e\xa7\xf6\x15\xb6\xa1\xd6\x15\x52\xe4\x90\x18\xe4\xff\xc8\xb6\xce\xc8\x46\xf5\x81\x78\xf3\x53\xd6\x47\x11\xdc\x47\x04\x4c\x14\x13\x2c\x77\x85\x15\xe5\x47\xf4\xe6\xec\x72\xfc\x38\xe2\x5c\xf3\x82\xea\x5f\x0d\x54\x2c\x3a\x1c\xc9\x9f\xc5\xab\x73\x91\x1d\x37\x0a\x18\x62\x5e\x7a\xe8\x99\xff\x52\xd3\x91\xcc\xe0\x3d\x64\x0e\xa1\x89\x23\x15\x20\x98\xc5\x52\x7f\xa7\x83\x8a\xf1\x4a\xfa\xbd\xeb\xe7\x11\x5a\x6f\x2e\x3b\xc9\x25\xf5\x17\x66\xa3\xee\xee\x11\x58\x19\xc2\x95\x99\x5d\x0b\x33\xd4\xbb\x50\xcc\xbb\x50\xd5\xf1\xbc\xc0\x2b\x72\xd4\x85\xc2\xe0\x54\xe1\x99\x50\x11\xeb\x07\xea\xad\xaf\xcf\xf0\x4c\xde\x5f\x7d\x75\xf0\xd8\xfd\x41\xf2\xfd\x85\xd7\x17\xf1\x14\xc8\x48\x98\x45\x85\xf6\x14\x1f\x1b\x36\x39\xdd\x0e\xea\x4a\xde\x2b\x59\x6d\x9d\x1a\xa7\xde\x74\x3a\x93\xb0\x98\xdb\xf9\xb3\x50\x2a\xe2\x99\x13\xba\x76\x9b\x6c\x10\xf7\x31\x7d\x35\x29\x0a\xee\xfa\x3b\x89\x17\x4c\x48\x83\x37\x73\x2f\x63\xde\x54\x42\x7e\xf1\x61\x8d\x68\x81\x41\x88\x0f\x4f\xae\x58\xd7\xd7\x8e\xc2\xff\x7e\x82\x78\xd1\xc7\x96\xab\x23\x87\x70\x46\x69\xc5\xb1\x8b\xa7\x48\x31\xe2\xc0\x50\x5f\xd6\x87\x33\x94\xed\x21\xe5\x16\x21\xe6\xfb\xe4\x97\xc4\x48\xfd\x37\x96\x2f\x44\x82\x97\x57\x35\x1f\xad\xbf\xbb\xf7\x49\x88\xd6\x9b\x3b\x4a\x06\x49\x4b\xc3\x9a\xdc\xf7\x56\xdc\x78\x7e\x49\x13\xcb\x50\xcf\x0a\xd4\x19\xbc\x71\xb9\x4f\x3c\xbd\xc0\x33\xd3\x18\x5b\x56\x9e\x43\x86\xac\xfe\xab\x16\xee\x45\x54\xa1\xc7\x4f\x6f\x4d\x5c\xe6\xbe\x70\x04\x8e\x2e\xf9\x21\x2d\xbe\xc5\x24\x08\xa1\x5e\xe2\x9c\x92\x0a\xd2\xec\xb3\xda\xf0\x79\x16\xdb\x95\xff\xb5\x51\x64\xa8\x7d\x45\xe9\x4c\xc2\x4e\xf0\x60\x4c\xba\xa4\xdf\x3b\x53\xa3\x9f\xf1\x1c\x3e\xdf\x28\x30\x1f\xa3\x8d\x3e\x47\x7d\x1c\x75\x7f\xea\x8e\xef\xad\xeb\x37\xf2\x6e\xe1\x3f\xa0\x47\xdd\x25\x40\xa3\x76\xe4\x3c\x96\xf2\xd2\x1c\xb5\xca\xf7\x11\x8c\xbb\x92\x1f\xda\xa0\x30\x7c\x69\x45\xf8\x34\xf3\xf4\xf4\xe0\x4d\x07\x46\x4e\x71\xb0\x97\x65\x93\x02\x0f\x17\x20\x5d\x47\xef\x46\x2d\x7d\x9b\x87\xb2\xfd\xdc\xf2\xe9\x87\x47\xd1\x48\xdb\x8f\x62\x9e\x26\xbe\xb9\x86\x7f\x87\x6a\x99\x4b\x5a\x4a\x46\x2b\xc7\x9a\xcb\xa7\x2d\xee\x65\xfe\xe3\xc6\xeb\xc3\xd8\xab\x38\xd0\xce\xa4\xea\x99\x2e\x64\x0f\xdf\xb1\x0d\x51\x2e\xe5\x59\x27\x13\xc1\xdc\xc1\xfd\x8e\x13\x83\x61\xf8\x0e\x1f\x35\x01\x65\xf8\x95\x31\x8a\xde\xdb\x1b\xe8\x47\xf8\xaa\x54\xf1\x5c\x78\xd2\x02\x5a\x74\xd6\xb4\x3e\x4e\xf1\x8b\x05\xc9\x4d\x19\x23\x5b\x6b\x50\xd4\xb9\x97\x3a\x7c\xa9\xe2\x61\x0c\xb9\xe3\xaa\x86\x9e\xc0\x0a\x2d\x0a\x11\x1a\x6e\x13\xf1\x9b\x4f\xda\x1f\xf1\xb1\x73\x31\x91\x30\x9e\x62\x78\xe2\xb8\xe1\x23\x11\x5d\xa4\x89\xe3\xa2\x94\xf1\xd1\xbe\x67\xf3\xd3\x0f\x35\x61\xb0\x30\xbe\x25\x7c\xec\xf9\x3a\x54\x45\x39\xf1\x9c\x78\x55\x73\x98\x18\xe1\xce\xa8\xd3\x25\x66\xc8\x61\x46\xbd\x45\x7f\x8d\x66\x9d\x52\x90\x74\xf1\xab\xdf\xe7\xe2\x4f\xf8\x9f\x0e\xbe\x76\x92\x91\x50\xf3\x7c\x37\xe0\x1d\x92\x21\xd5\x89\xb5\x5d\x0e\xe0\x4e\x1c\x2b\x4a\x69\xbd\x38\x86\xbc\x39\x02\x6f\xae\xb9\xe4\x26\xde\xd4\x31\x2f\x09\x03\x6f\x25\x67\x11\x31\xb6\x15\xda\x45\xb6\x72\x66\x7d\x06\x3b\x5a\x34\x2a\x33\x4a\x59\x2a\x23\x9a\xc3\xef\x92\xac\xe6\xdc\x36\xc2\x2a\xbf\xba\x75\xd9\xec\x09\x03\x62\x53\xae\x94\x58\xb5\xe7\x4d\x92\x6f\x21\xf2\x07\x2b\xf7\x5b\xab\xb2\xba\xfd\xcc\xec\x2f\xe9\x09\xca\xab\x88\x88\x8a\x9b\x88\x3e\xe7\x37\xe7\x6e\xe4\x18\x60\x1d\x65\x61\x64\xb3\xe0\x7c\xc1\x7b\x5d\xa8\x4b\xa2\xf3\x27\xba\xea\x65\xa3\x01\x87\xba\xa0\xb0\x94\xcc\xd2\x2f\xed\x31\x53\xdf\x77\x3f\xc0\x12\xd6\x9b\xbb\xd1\x73\x93\xa3\x67\xbc\x9a\xac\x3f\xea\x92\x28\x3c\x14\x93\x54\x28\x91\xcd\x91\x20\x10\x2d\x11\x32\x17\x92\x14\x2e\x11\x2d\x93\xd2\xf9\x39\xa6\x12\xac\x9d\x61\xc4\x6d\xf3\xce\x83\x2f\xb4\x29\x6d\xa3\xfc\x5d\x47\xe8\x54\xdd\x0e\xa2\x4f\x6b\xfb\x67\x1f\x61\x85\x6e\x7a\x64\xb8\xa6\x47\xad\xf5\x55\x3d\x4c\x43\x2f\x6d\x27\x8d\xa7\xaa\x57\x95\xde\xc9\x4b\xfc\x8a\x93\x2f\x50\x0a\x54\x7b\xa4\x5d\x64\xf4\xc4\xa2\xd0\x31\xd7\x53\x3a\xe8\x4e\x9c\x44\x8e\x70\x55\x43\x67\xdd\x94\xd8\xde\x05\x58\xc2\x9e\xda\xe8\xdb\xd6\x0b\x25\x92\xa9\xcf\xc2\x8a\x3d\xdf\xd9\x98\xd8\x0f\x6b\xd6\x5a\x90\x1b\xce\xe8\xf6\xea\x04\xeb\x22\xeb\x39\x19\x70\x9a\x88\x5a\x8e\x3a\xaa\xbb\x6f\x05\xa8\x46\xcc\x24\x86\x66\xd9\x95\x94\x36\xab\xf7\x77\x2c\x2a\x1f\x22\x32\xc6\x87\x23\x4b\x59\x83\xac\x8d\x79\x45\xa7\x29\x6b\xe1\x11\x5e\x9b\xf6\x6b\x6e\x03\x2e\x86\x8e\x93\xb6\x0a\x36\xdf\x6c\x5c\x6d\x4b\x1d\x2e\x3a\x45\x78\x68\xf8\x83\x70\xe9\xf8\xcd\xcc\x8b\x05\x1a\xd5\x0f\x5b\x5f\xf4\xe3\x4f\x7d\xf8\x63\xd5\x7b\x4f\x66\x2e\xa2\x5f\xa4\x61\xac\xf8\x4b\xda\xb7\x28\x4e\x7f\xd3\xe0\xe3\x80\x6e\xff\x52\x9f\x1f\x5e\xd3\x5e\xf6\xde\xd5\xbe\xeb\x81\x7d\x11\x02\xf1\x5f\xd3\xa4\xf2\xb1\xcb\x6a\x1b\x71\x3b\x6f\x0e\x97\xcc\x16\x6c\x32\x9f\xdc\xff\xa3\xcd\xdf\x79\x3f\xcb\xde\xaf\xd7\xb8\x5b\x4a\x99\xb9\x1f\x4f\x16\xaa\x1d\xb7\x13\xdf\x1c\x53\x16\x1d\x19\xb9\x1d\xed\x1d\xf7\x38\x31\x33\x7d\x2a\xf7\xa0\x94\xbc\xf6\x7e\x6b\x4b\xff\xdd\x49\x8b\x65\xe1\xbd\x7f\xf0\x9f\xdb\xa5\xb3\x23\x03\x5b\xad\xb7\x2a\x7d\xf2\xdf\xa5\x56\xe5\x5a\xe4\x5c\xcf\x71\xc8\x12\xc8\xc2\xc9\x56\xcb\x23\x2a\x12\xac\x08\xaf\x55\x68\x79\xd5\x3d\x31\x5a\x30\xdb\xb2\xb6\x77\x82\xf3\x4f\xbe\xf3\xf4\x74\xa7\x66\xc1\x69\xc4\xbf\xd3\xa0\xde\xb2\x71\xa9\xf6\x72\xd5\x61\x35\x45\xf5\xa5\xca\xe9\x6a\x86\xda\x99\xa6\x6f\xed\xe4\xbd\xed\x23\x83\xd3\xfd\xcb\xa8\x7f\xad\x42\xfd\xb7\xeb\xb8\xf9\x70\xff\xf0\xd5\x3e\xc9\x41\xff\xb1\xc8\xe9\x97\xff\x29\xd7\x89\xc3\xe1\xa5\xbd\x7b\x5b\xa7\xeb\x46\xcb\x1b\x4b\xb7\x16\x76\x67\x43\x67\x1d\x67\xe9\xe7\x67\x56\x85\xf6\x7f\xfc\x97\xf1\xc0\x3e\xd6\x8e\xc4\x3a\xcf\x32\xeb\xbc\xdc\x74\xec\x84\xe5\xc8\xd0\xa0\x4a\xff\xfd\x5e\x82\xee\x27\xdd\x6b\xdd\x09\xbd\x8f\x47\xa5\x17\x24\x76\x56\xff\x8d\xfb\xd0\x7c\x2b\x60\xc5\x6f\xfe\xc6\x54\xd7\xd8\x8f\xc1\xf5\x3e\xc6\x2e\xdc\xb6\x98\x66\xd7\xfa\xd8\xda\xc4\xea\x7b\x15\xe6\x95\x7b\x55\x21\x35\x84\xad\xda\x23\xf1\x8b\x2c\xbb\xc5\xff\xc4\xbf\x3b\xbe\x82\x35\xed\x3a\x5c\xd8\x8f\xd6\xb1\xda\x32\xd1\x68\x52\xdd\x56\xde\x5f\x9a\x50\xd0\x99\xeb\x94\xe9\x9f\xc1\x95\x7e\x37\x2d\x23\xfd\x51\xb6\x4c\xe9\x48\x6b\xc0\xe0\xde\x7c\xd6\xf6\xc6\x5f\xf9\xf7\xd3\x96\x82\xc7\xdf\xf6\x9a\xb7\x2c\xd6\x4b\x54\xa6\x96\xd0\x16\x78\x67\x7f\x49\x9b\x48\x56\x8b\x3b\x8a\xb6\x8c\xc8\x0c\x3d\x0c\x29\x0c\xe6\x0c\xbf\x15\xa7\x94\x59\x50\xf1\xb8\x85\x68\xd0\x61\x3e\x68\xf7\xe6\x9f\xe6\x7f\x6f\x35\x7f\xc2\xac\x9b\xaf\x3e\xb4\xfc\x4a\x3e\x7e\x36\x5b\xaa\x7e\xbc\x6f\x14\x59\xa8\x49\xe0\xb1\xcf\xb6\x67\xb9\xdb\xa2\x4b\xac\x53\x8e\x53\x96\x1b\x53\x80\x66\xdc\x8d\x1c\xef\xf2\xbe\x56\xcc\xe1\x96\xc5\x97\x87\x7f\xc4\x0f\xcc\x33\x6a\xbd\x15\x0d\x24\xc5\x1f\xb3\xc4\x92\x6e\x46\x83\x90\x7c\x7f\x2a\x2f\x7c\x97\x9b\x0e\x32\x36\x25\x16\x82\xa6\xef\x8d\x30\x0d\xc2\x0c\x45\xcd\x28\x9c\x05\x03\x98\xe3\xea\x73\xf8\x2a\xdf\xb7\x4f\x8c\xce\xaf\xb2\x1f\xff\x76\x96\x65\x5d\x69\xec\x66\x6b\x42\x19\x6e\x06\x61\xf4\x7e\xc8\x1d\x9f\x76\xd7\x35\x7b\x17\xab\xeb\xc6\x15\xba\x5a\x5a\x2f\xd5\xb6\x95\xa6\xe4\x6d\x7e\x11\xc8\x17\x6a\x44\x9a\x8d\xb8\xe8\x04\x2e\xc7\x7f\xcf\x7b\x5f\x33\xda\xf3\x74\x9a\x7c\xeb\xb7\x5e\xd4\x25\x9f\xde\xad\x9a\xb5\x5c\xc3\xb8\xd6\x80\x1c\x37\x4d\xbb\x3c\x73\x47\x03\x71\xcd\x25\x65\xbb\x5f\x1f\xa4\x32\xc5\x39\x85\xed\x04\x0a\xf9\x32\x05\x19\x64\xbb\xb4\xf4\xcc\xa3\x5c\x7b\x42\x5e\x25\x4b\x14\x95\x36\x38\x0f\xde\x5b\xbc\x77\xa8\x07\xad\x81\x67\x73\x3d\x5d\xe6\x15\x2f\xd2\x6c\x43\xf9\xdc\xcd\xac\xaf\x1b\x12\x68\x06\x2b\x56\xca\x60\x8b\x7d\xe4\x1b\xe5\xb2\x60\x1d\x67\xba\xcd\x50\x4c\xe7\xfb\x63\x40\xc8\xe5\x17\xb5\x8e\xa9\x75\xab\x27\x79\x84\x40\x46\x50\x85\x69\xbb\xdb\xa4\xf2\x46\x04\x24\x01\x73\x26\xac\x7d\xa8\x58\x2d\xa1\xdd\xef\x8a\xdd\x3d\x83\x35\xd5\x1c\x59\x35\x11\x3d\xde\x1b\x6c\x14\x8c\xbc\xd4\xd1\x64\x19\xc4\x26\x5f\xbe\x7e\x79\x49\x85\xcb\x4e\x20\x5a\xa9\x44\x69\x88\xe1\x40\xe4\xbf\x96\x70\x29\x7f\xb2\xc1\x63\xd0\x7c\x29\xe0\x78\xec\xf4\xf4\xd8\x6f\x3a\xbf\x8d\x23\xdf\x3c\x2a\xc1\xe3\xc0\xfc\xb2\x06\xb7\x4c\x8d\x90\x05\x87\x07\xe3\x36\xe5\x10\xb1\x3c\x01\x07\x76\xc7\x87\x97\xef\x5e\xbe\x3f\x22\x62\xa1\x1b\xe1\x8e\x93\xaa\xd5\x88\xb0\xb8\xe9\xc9\x10\x11\x97\xa9\x53\xb9\xdf\x8d\x3a\x63\xbf\x5b\x76\x7a\x7a\xd4\x34\x7b\xa5\x8d\x23\x77\x22\xe2\x9b\x73\xa5\x7e\x88\x42\xbf\x08\x19\x7b\x1a\x3d\xfa\xb7\x5a\xc2\x0e\xac\x5a\x34\xfc\x97\xe5\x4f\xb7\x1e\x59\xbf\x46\xc1\xb5\x23\xc7\x62\xe1\x12\x4e\x56\xc2\x30\xcc\x76\xb2\x09\xea\x4a\xde\x28\x51\x6f\xcd\x1f\x7f\xb8\x79\x16\x69\x3d\x9a\x17\x6c\x5b\xc8\x59\x0d\xf7\x77\x74\xd0\xca\x95\xae\xe4\x71\x66\x94\xf9\x66\x8f\x3f\xfd\xc1\x0b\xa5\xf4\x89\xe6\xdd\x9d\x1b\x1a\xd7\xc7\x9f\xb1\x7f\xc8\x20\xd2\x65\xa0\xe6\x0d\x93\x7b\xae\x43\x66\x8b\xe4\x9b\x1b\xff\xa4\x60\xa9\xc9\x6f\x58\x75\x55\xf0\xec\x49\x2c\x08\xb4\x5f\xcf\x27\x0f\x41\xb3\xed\x96\x51\x16\x5d\x64\xd1\xa5\xd4\xfb\xf4\xe4\x83\xff\xab\xa8\x47\xc6\xb7\x5a\x2e\x7d\x02\x4f\x2f\x6d\x23\x39\xbc\x19\x22\xf8\x46\x4d\xc9\xf9\x48\x72\x4d\x7d\xc1\xf2\x9b\x37\x7b\x0c\x63\x2e\x7d\x3d\xf9\x80\xfa\x52\xcd\xc9\xcf\xd3\xd3\x95\xc0\x8e\xc2\xbc\x64\x57\x6b\x5d\x7c\x29\x01\x56\x1d\x7a\x6f\xa2\x6d\x6c\xbf\xd7\xa3\x8f\xcd\x6f\xbf\xb8\x84\x0b\xbe\x80\x27\x40\xfa\x6e\x36\xca\x53\xbc\xe7\xe4\x93\x6c\x68\xe2\x19\x6a\x77\xcd\xb1\x3d\x98\xa2\x2e\x64\x6b\xd5\x52\xf4\x13\x2e\xbe\x3b\xe6\x3c\x3d\x5d\x11\xef\x2c\x4d\xf9\xe6\x71\x47\xbf\x56\x9a\x81\xa5\x88\xd8\x1d\xe3\x36\xda\x3a\x72\xfa\x5d\x91\xcb\x4d\xe0\x0b\x78\x0a\x5e\x00\xce\xdb\x2e\x2f\x09\x71\x88\xc9\xd4\x59\x69\x44\x53\x54\x16\xcc\x88\xdc\x0f\x23\xe6\xb3\x26\xab\x8b\xfa\x70\xe7\x45\x8e\x51\x4f\x4f\xb7\x1c\x06\xb2\x53\xa7\xbc\x87\x4c\xb4\x65\x36\xd9\xa8\xbe\x9a\xa2\xf9\x3f\x5f\x7d\xe0\x79\xc7\xee\xba\xeb\x95\x3b\x17\x07\x2e\xc4\x5d\x8c\xbb\x39\xff\xdc\x19\x9b\xe2\x9b\x0a\xf3\xb8\xa8\xa5\xca\x4f\xd3\xef\x6e\x13\x11\x9b\x59\x5a\x35\xd2\x7d\x09\xf3\xf4\x47\xc1\xa7\xa7\xab\x4f\x5a\x27\xb3\x79\x02\xc9\xcd\x7f\xfc\x6a\x66\xb7\x25\x46\x7b\x43\xf3\x08\x13\x79\xf0\x71\xfb\x83\xbc\xbb\x1f\x6f\x27\xde\xba\x70\xdb\xe2\xae\x0d\xb2\x39\xe6\x16\x69\x36\x4b\x9a\x28\x86\x4a\xa0\xe9\xb2\xbb\x75\x44\x74\xd6\x6e\xcd\x44\x5f\xd3\x82\xd5\x91\xd6\xe9\xe9\xaa\x7c\x37\x55\x7e\x72\x28\x8b\xf5\x96\x62\x39\x97\x23\xc9\x21\xba\x35\x3a\x15\x1a\xee\xeb\x96\x17\xca\xcf\x0a\x1f\xe7\x3f\x0a\x7f\xf2\x05\xf9\xf5\xab\x7a\x2c\x4a\xd2\x51\x96\x05\xd1\x2c\x55\x74\x33\x32\xf7\xba\xa8\xb7\x39\x48\xb5\x0f\xfb\xbf\x2e\x3a\x1d\x4f\x9e\x9e\xee\x64\x0f\xa6\x95\x66\x45\xce\xd8\x6f\xab\x2e\xf0\x59\x52\xa9\x11\xa4\xa1\xbb\xe1\x65\x60\x73\xbe\x9f\x79\xbb\x8b\xca\xf2\x5a\x16\x35\x06\x8d\x1b\x23\x1f\xd7\xf5\x1b\x09\x0b\xaf\x68\x91\x2a\x8e\xf9\x07\xcf\x2b\xd1\x3d\x39\xb3\x75\x62\x03\x86\x4b\xed\x27\x33\xa7\xa7\xc7\xb2\xa3\xfb\x95\x23\xf1\x02\xce\x01\x1a\x27\x22\x7e\x2c\xfd\xe4\xbb\x04\x8d\xdf\x1e\x7d\x51\x24\x24\xc5\x9b\xc5\xe1\xc1\xc6\xc7\xb9\x88\xd7\xf2\xe9\x90\x04\x9f\x0a\x9d\x75\x4a\x2c\x4b\xf5\xa5\xf9\xb1\x17\x5b\xb4\x48\xde\xd3\xfa\xa4\xa1\x1f\xcb\xf1\xf0\xee\x9c\x76\xac\x0b\x4a\xd6\xf0\x48\xd5\x7f\x2b\xaf\x2c\x28\xc5\x8c\x45\xd1\xc7\xa0\x44\x73\x48\x21\x4e\xba\x4d\x7c\x9f\xe8\x94\x98\x8d\xb4\x8d\x72\x84\x01\x9d\xe5\x1b\xb7\xb2\xe4\x6b\xd5\x2d\x0b\x0b\xaf\xa2\x18\xdc\xbc\xaa\x06\xf1\xa1\xfc\x95\x29\x58\xc2\xbc\x63\x33\x7b\x06\x95\x77\x8f\x0d\xbb\xb6\x8b\x9c\x93\x80\x3f\xcb\x4f\xda\x78\x76\x0e\xa6\xc6\xef\x78\xf4\x24\x74\x06\x0c\xae\xdf\xab\xd9\xee\x73\xeb\x09\xbd\x96\xd8\xfa\xf5\x4d\x6b\xd6\x2a\xdf\x2b\x23\x66\x24\x1f\xab\x91\x7a\xf8\xee\x0a\xe2\xe4\xde\x72\x72\xfb\x9d\x6c\x9c\xc8\x5d\x0f\x7a\x8b\x22\x2d\x7c\x39\x3b\x21\x3a\xb1\x14\xd1\xcb\x02\x76\x7c\x6f\xb8\x9d\xb9\x32\xb9\xd1\xf8\xde\x09\xd9\x49\xec\xff\x8c\x54\xe9\xd5\x13\x31\x73\x75\x68\xf4\xa7\x8b\x5b\xce\x63\x68\x72\x1c\xad\x5a\x47\x64\x6b\xd7\x05\xba\x2a\xca\x19\x53\x79\x43\x7f\xba\x71\x58\x5c\xd5\xca\xd0\xb2\x56\x5a\xfb\xa5\x25\x47\x2f\x9d\x29\xd1\x29\x21\x24\x15\x21\x5d\x2b\x7f\x45\x65\x4d\xf7\xab\x51\xbe\xb5\xa2\x73\xb8\xaf\x6b\xf8\x9d\x34\x9c\xe2\xdb\xad\x8f\x46\x15\xd6\x9a\x10\x96\xf2\xd2\x08\x7f\x53\x70\x11\x7a\xf2\xc5\x90\x8f\x6e\xf4\x96\x6f\x74\xc9\x95\x5f\xea\x95\x69\x13\x6b\x04\xaa\x0c\xa9\x09\xa9\x37\x6a\xb1\xea\x6a\x9a\x50\x5b\xdf\x70\xd2\xf4\xf6\x0b\xb2\x8b\x7d\x92\x4e\x5c\xb0\x5e\x33\xd8\xad\x33\xf5\x65\x03\x91\x85\x3f\xc4\x5a\xc0\xeb\x47\xaa\x77\x28\xf0\x48\x12\x0d\x89\xf1\xb8\x69\x63\x64\x9b\x64\x93\x61\x39\x68\xe6\x63\x2a\x66\x22\x61\x66\x6f\xbe\x6c\xe3\xed\x54\xee\x19\x1c\x38\x1f\xf9\x30\x49\x3d\xfb\x42\xa9\x5c\x5d\x4b\x97\xdd\xe8\x8b\xa5\xf0\xc3\xa9\x73\x5b\xb9\x63\x3a\x63\xd5\x2b\x51\x57\x52\x50\x97\x2c\x19\xae\xed\x83\xe9\x98\xe6\x01\xdc\xaa\xdd\x5b\x5c\xd1\x9c\x4f\x5c\x1b\x3c\x25\x7d\x48\x83\x02\xc3\x5b\x13\x24\x33\xa6\x8a\xf0\x2a\x1b\x5b\x05\xfb\x97\xa6\x9e\xac\xd1\xfd\xf9\x1c\xe6\x16\xe9\xb4\x51\xef\xcb\x7a\xf3\xe2\x0b\x69\x8b\x31\x4f\x03\x2b\xc2\xe6\x43\x48\x43\x3f\x87\xb0\x07\x4f\x86\x7e\x0a\x97\x89\x31\x4b\x54\x4f\xaf\xc8\xd7\x2b\xdf\x6e\x40\xef\x14\x1f\xc5\x9f\x2b\xdb\xfc\x87\x2c\xc6\xa6\xcf\xf4\x6a\x9f\x6f\x53\x7a\xf9\xbd\x1c\xec\xc4\xb2\x94\x8d\x64\xf5\xe4\xe6\x64\xd6\x94\xb2\x54\xb3\x0c\xed\x9c\xc9\x22\xbb\x0a\xa5\xfa\x1f\x1d\x5f\xfb\xe3\x27\x77\x56\x3e\xec\xf3\xfd\xb3\xf7\xdd\xaa\x9b\x13\x1c\xe2\x6f\xdb\xad\xe1\x2a\xb2\xc8\xd2\x28\x1c\x2d\x7c\x5e\x94\x5a\xac\x58\xfa\xb0\x5c\xb7\x2e\xad\xd9\xbd\xe3\x51\x3f\xd1\xf8\xc9\xe2\x85\x2d\xbe\x93\x84\x7f\xe6\xff\xfb\x75\x92\x7a\x38\xb8\x3b\xbf\x83\xba\x25\xbc\x41\xbe\xa5\xb5\x99\xb1\x8b\x7d\xda\xfd\x3f\xe1\x3b\x76\xda\x57\xd9\x25\xdd\x18\x5b\x55\x59\x62\x9b\xbf\x3d\xad\x35\x49\x39\xd6\x3a\x5e\x3e\x5a\x3f\x6e\x31\xe3\xb5\x1e\x73\xb2\xf9\x1f\x38\x9f\xed\xde\xde\x18\x5e\x45\x5d\x62\x9c\xb5\x99\x1c\x18\x7f\x3f\x2c\xde\xdf\xd4\x2d\xd3\x79\xa3\x4d\xb1\x79\xb9\xe9\xb8\xc5\xab\xfd\x4e\x2f\xf6\xd4\xe6\x5a\xe9\xf1\xfd\x7f\x64\x8f\xda\x7d\xb5\xf2\x64\x96\x6f\x22\x72\xf4\xc7\x40\x6b\x4f\x6f\x87\x5e\xcb\x48\x23\x56\x0d\x69\x15\x4e\x69\x5f\xf1\x58\x21\x5d\xe1\xcd\xa2\x4f\x25\x89\x0d\x6f\x7a\x34\x26\xf7\xd7\x1e\x1d\xe5\xfc\x95\xfd\xe0\xe9\xa6\xc0\xdc\x95\x91\x83\x3e\xf4\x8e\xde\x16\x8c\x86\xe7\xd5\x4f\xcb\x4e\x8a\x5f\xe4\xcd\x67\x99\xa7\x55\xa5\x3c\x4e\x50\x8c\xc3\x8e\x63\x8a\x47\x4b\xa1\x2f\x18\xac\xb3\xea\xbd\x3c\xa9\xba\x76\xf5\xf8\xe1\x9f\x25\xac\x91\xcc\xa4\x0d\xce\xb7\x23\xd7\xf3\x56\x2e\x95\xfc\xc8\xf3\xcb\xbc\x95\xe2\x9d\xc0\x10\x53\x14\xde\x1c\x52\x18\x28\xe1\x7f\xc1\xe7\xad\x77\x8f\xdf\xe5\x30\xe1\x64\xf7\xfc\x92\xba\xb9\x2e\xca\x49\xda\x75\xa3\x13\x9b\xdf\xf9\xf7\xf1\x17\x25\x06\x73\x5b\x59\xaa\x04\x0b\xb0\xb2\x2e\x25\x6b\xc6\x3d\x89\xc8\x08\xb9\xe4\x7f\xc3\x6b\xd1\xed\xad\xd3\x67\xfb\x1c\xeb\x55\x4b\x56\xcb\x1c\xdb\xcb\xee\xc7\x61\x0a\x29\x28\x05\xf3\x75\xb6\xdd\xc9\xd3\x45\x1b\x83\xbf\x4b\xd8\xc0\x9d\xa4\xe9\xf8\x5a\x3d\x96\x77\x21\x29\x21\x2a\x34\xe4\x81\x1f\xb3\x87\xa6\xf3\x05\x5b\x7e\x4b\x0c\x13\x72\x03\x0c\xed\x44\xad\x64\x75\x27\xf5\x06\x1d\x0a\xab\x7d\x8f\x96\xb0\x0f\xc9\x83\x45\x33\x8d\x0e\xfd\xf2\xf3\x57\x76\x8f\xcf\x25\x2c\xed\x0f\x6e\xd6\xb3\x17\xfa\x24\xcb\x84\x73\xfa\xf6\xbb\xe4\xda\xf7\x58\xbe\x33\xa2\xd3\x79\xa7\x6e\xae\xb4\x20\x7f\x59\x86\x45\x62\x5b\xec\x44\x82\xe7\x57\xbd\xde\x77\x6b\x49\x4f\xda\x88\x3b\xe9\x62\xa5\x75\xad\xd4\x23\xf4\x2b\x8a\xc7\x70\x4d\x89\x6e\xb6\xa9\x27\xb0\x32\x37\x23\x3b\xd2\xca\xfb\x97\xbd\xb8\x99\xa3\x81\xbc\x86\x8d\xd2\x67\x39\x24\x71\x51\xa1\x3d\x3e\x4b\x2e\x54\xb6\x1e\x96\x64\xb6\x1d\x51\x03\x45\x11\xfd\xeb\x76\xf7\x7d\x6c\x63\x88\xb3\x9f\x55\x6d\x75\x09\x4e\xb5\x6e\x41\x16\xea\x84\x65\x66\xb3\x43\xb3\xa4\x2e\x71\x28\x20\xd9\x31\xdf\x44\x56\x6b\x54\xe9\x9a\xf4\xa9\x48\x22\x6f\x11\x9b\x09\x53\x09\x3d\x2a\x15\x2d\xb9\xcb\xb7\x76\xda\xeb\x1c\x8b\xe2\xd3\x2a\x7a\xc6\xf7\x9c\x54\x83\xb8\x93\xd0\x0b\x8f\x9a\xc6\x87\x4c\x97\x99\x4f\x28\x4f\x4f\x0f\x86\x27\x3b\x5b\x0a\x0a\x6e\xc6\x84\xba\x6f\x5a\xda\x68\x19\xc9\xdf\x14\x77\xe1\x93\x66\xe3\x67\x28\xa1\x38\x21\xd1\xf8\xb4\xfc\xd1\x0e\xe7\x3e\x16\xc3\xd7\x52\x46\x64\xde\x2e\x19\x07\x4d\x79\x4b\x55\xcf\x8a\xa8\xd6\x2c\xe4\xea\x0b\x3d\xa8\xb3\x6f\xf7\xc8\x4f\x4f\x8f\xe4\x26\xa6\x5a\xb8\x72\x37\x22\x04\x9c\x93\x8d\x4a\x15\xf3\xc4\x45\xb8\x83\x99\xd4\xa8\x6c\x88\xe5\x09\xae\x62\x76\xbc\x13\x7c\x6d\xf6\x82\xf6\xb5\x15\x5e\x3d\x79\x0f\x8b\x96\x88\x84\xe2\x9e\x91\xaa\x93\x5c\x30\x66\x0a\x61\x49\x6d\xeb\xe4\x38\xcb\xc6\xd9\x1e\xeb\x99\x2a\x6e\x29\xce\x72\x09\xbb\x6f\x77\x4d\xcb\x57\xa6\x8e\xcf\x95\xe9\x3d\x85\xc2\xe7\x52\x6c\x57\x34\x95\x17\x6e\x8f\xc5\xef\x95\xdd\xa2\x7a\x26\xfb\xbe\x95\xe8\x2e\x7d\x20\x6f\xae\x6c\x94\xce\x4d\x9b\x52\x5f\xa2\xd8\xa5\xfc\xd0\x86\xd6\xe1\x5b\xcb\x10\xca\x9e\x5a\x69\xf9\x90\x65\x1d\x4c\x6d\xe0\xa0\xaa\xc3\x69\xc5\xaa\x40\xe5\xfb\x39\x0c\x8b\x09\xd5\xee\xe9\xf8\x3d\x94\x6b\x98\x17\xde\x5d\x50\x7b\xf0\x03\x15\xeb\x63\x30\xe5\x1c\xbb\xb7\x84\xb5\x7a\x85\xb9\xa4\xc7\x6c\x64\x56\xb6\x75\xad\x6c\x1f\xe6\x82\xc5\xe1\xe8\xe9\xe9\xfc\x8f\x56\x9c\xec\x35\x77\x15\x4b\x0a\xf1\xff\x1f\x61\x6f\x15\x56\xe7\x93\x6c\x0f\x37\x09\x84\x60\xc1\xdd\xdd\xdd\xdd\x21\x84\xe0\xee\x10\xdc\x2d\xb8\x6b\x70\x77\x09\xee\xee\xee\xee\x0e\xc1\x82\x3b\xc1\x13\x02\x84\xec\xef\x99\xcc\x6f\xe6\xcc\xcc\x99\xf3\xff\xfa\x8a\x9b\x2a\x7a\xf7\x7e\x9f\x5e\xeb\xad\x5a\xb5\xf6\x2b\x2d\x02\xa9\x4f\xdc\x5c\x0c\x0c\xa4\x56\x58\xbb\x48\xfd\xd0\x53\x80\x04\xd0\x01\x65\x44\x7c\x7c\x56\x3a\x08\x3f\x8a\x6c\xac\xae\x99\x2d\xb4\x2f\x7a\x2c\x42\xce\x8f\xba\x9b\x81\xd5\xa5\xe2\xa3\x85\x07\x0f\x08\xe4\x1b\xff\x0c\xa4\x59\x23\xc6\xc2\x85\xd1\xc0\xf2\x1d\x19\x37\x19\x2b\x2f\xf9\x25\xce\xd9\x9b\x5a\x18\x29\x60\x09\x90\x01\x27\xc0\x78\x6d\x8c\x5d\x42\x43\xcb\x63\xf5\xd6\x4d\x9b\xd0\x2a\xc9\x1b\x3e\x1a\xfa\x73\x7b\x6d\x4a\x7f\xde\xc2\xf1\xa1\xe1\x83\x2c\x04\x72\x11\x37\x86\x5f\xda\x1b\x97\xe6\xf6\xdd\xd0\x58\xe6\x80\xc3\x82\x8c\x19\xef\x02\xb5\x1c\x36\x08\x30\x02\x74\xc0\x06\x48\x00\xe9\xab\xb7\x98\x3d\x54\x80\x4b\x58\x1a\x4b\x53\xc4\x92\xc8\xd3\x31\xca\xef\xf3\x9b\x9a\xda\x3e\x8f\x05\xb5\x83\xd5\x7b\x3f\x08\xe4\x58\x75\x4c\xb4\x86\x29\xf1\xd2\x1b\xd7\x58\xe0\xdd\x16\x47\x34\x31\x32\x4a\x29\x5c\x0a\xb4\x3c\x20\x04\x4c\x00\x1b\xc0\x01\x11\x68\x3e\x0c\x16\x4a\x23\xce\x34\x29\x5d\x0d\x4a\x8b\x3e\xcf\x97\x91\x8c\x59\xed\x35\x42\x7d\x1e\x0b\x76\xfb\xd3\xf7\x6f\x20\x90\x33\xe6\xa9\x93\xfa\x9b\x74\x72\x3f\x37\xb3\x51\xb9\x28\x2e\x79\x22\x2c\x04\x84\x37\x11\x88\x3b\xaf\x97\x61\x9a\xa0\x11\x5f\xa2\xbc\xcc\x81\x7e\x40\x87\xa2\x78\xc9\xd1\x27\x65\xa8\x81\x6d\x51\xed\x49\x1a\x69\x91\x7d\x57\xfd\xd8\xe7\xb5\x60\x7e\x10\x7e\x9f\x02\x81\x5c\xd2\xcd\x6f\xb5\x94\x66\xd7\x04\x95\x58\x46\x2a\x6e\xf1\x40\x93\x99\x62\xc4\xe0\xb2\x60\xc3\xa3\x63\x21\x1f\x20\x45\x22\xd1\x22\x45\x21\xd7\xa1\x43\xc8\xcc\x38\x2c\x24\xd5\xd5\xa7\x2c\xc3\x3d\x2f\xa2\x9a\xb3\x2b\x6b\x99\xfb\x85\x16\xf7\x0e\xae\x7e\x6a\x43\x20\x77\xfe\x5f\xbc\xbb\x0a\xf3\xce\x3e\x65\xd9\xc1\xa9\x4e\x09\x55\x30\x49\x90\x08\x10\xc4\x93\x62\x12\x6e\xe2\x63\xe0\x44\x60\x8b\xe1\x14\xe1\xd9\x12\xcd\x52\x0c\xb1\x27\x4b\xaa\xaa\x9f\x58\x02\x2f\x9b\xe8\xbc\xcf\xbc\xb5\x75\x03\x99\x8b\xbd\x47\x1a\x0f\xa8\x10\xc8\xa3\xf6\x26\x7c\x9f\x6d\xf1\x64\x14\x81\x63\xb5\x8e\xc1\x3b\x3f\x3e\x7f\x46\x19\x56\x14\xc6\x64\xda\x6c\x2a\x63\x8a\x66\xb2\x7e\x8a\x64\xaa\x7d\x7a\x72\x16\x3d\xee\x5a\x29\x07\xf5\x7e\x8b\x74\xaf\xa9\x68\xcb\x1c\x99\xba\xa3\x41\xb9\x65\xb4\xa3\x87\x47\x23\x08\xe4\xd9\x78\xa7\x6f\xe8\xa2\x3c\x3b\xce\xdc\x9d\xc3\xfc\x9d\xfa\x57\xe9\x13\xbe\x66\x16\x2d\xde\x52\x2e\x34\xb6\x06\x56\x39\x16\x52\x56\x62\x76\x54\x6e\x46\xc1\x15\x89\xed\xf7\xb1\x5a\xf6\x96\x1e\x9e\x6d\xd1\xcf\x9f\x23\xea\xd4\x06\xe3\x56\x92\x8e\xb1\x7f\xfd\x99\xd1\x3a\x3c\x19\x4b\xad\x61\x4c\xc6\x0c\xd6\x75\xb6\x32\x41\x50\xab\x7f\x6b\x21\x88\x29\xfd\x42\xdc\x5d\xc4\x59\xe8\x8d\x20\x85\xd0\x1b\x11\x15\x89\x4a\x59\x15\xa5\x04\x6d\x3d\xa3\x16\x5b\x37\x1f\x9f\xe8\xa0\x5c\xc4\x3a\x84\xc1\xc1\x95\xa4\x93\x87\xbf\xdf\xba\xa7\x64\xd3\x72\xf5\xe6\x79\x05\x71\xee\xfe\x31\x8e\xcd\xc6\xc5\xea\xf9\xef\x1e\xd4\x70\x95\x5e\xcb\xe3\xbf\x87\x97\x25\x91\xd3\x91\x37\x57\x81\xd2\xca\x37\x42\x32\x5f\xb2\xbf\x70\xaf\x0a\x8a\x8b\x4f\xca\x37\xa8\x97\x1c\x32\x5e\x99\x3e\xe5\x7a\xda\x86\xfc\x99\x63\x99\x3b\xe9\x41\xaa\xca\xcb\xfe\x1c\x43\xef\x97\xec\x38\x6f\x8a\xa5\x35\x6b\x58\x60\xb0\xa2\x8b\xa1\xcd\xab\x7d\xad\x9d\xad\xfb\x68\xd4\x6c\xa1\x65\x77\xef\xf6\xc9\xd7\x37\x74\x27\xbe\x3a\x93\xa5\x2c\xb5\xd5\x7f\x58\x78\xf9\xfc\xe8\xc5\xaf\xc7\xbf\x65\xb8\xa6\xdc\x58\x19\xbf\x6d\xb7\xae\x80\xce\xc2\x88\x7e\xf6\xe7\xff\x88\x6c\x49\x60\x07\x67\xf7\xd1\xf2\xc0\x22\xdc\x42\xde\xd2\xd9\x06\xd6\x11\xea\xe3\x9d\x4f\x4e\xc8\x4d\x8c\x45\xca\x63\x2e\x75\x05\x42\xe3\xef\x5e\xe9\x69\xf5\xcd\xd9\xf3\xa7\xdf\x7f\x3a\xdf\x8f\x0e\xc7\x72\x2b\xf5\x23\x07\xad\x15\xe5\xb2\x59\xca\xb1\xa2\x41\x5e\xee\x53\x0e\xf7\x1e\x5e\x1e\x57\xee\xda\x6e\x26\x1e\x3c\x5e\xfe\xfe\xd3\xc1\x87\x51\x23\xc9\x94\x9f\x39\x8b\xfd\x6a\xce\xda\x08\x87\xc4\x66\x3f\xad\xdb\x1c\x53\xdd\x7b\xfd\xe3\xb6\xbd\xeb\x3e\x40\x5f\x6a\x1a\x3e\x6e\x2d\xab\xe0\xf9\xbc\x9b\x28\x16\xe6\x19\x01\x17\xfe\xe2\x13\xf5\x27\xc4\x50\xa6\x70\xce\x68\x97\x38\xeb\x14\xed\x2c\xcc\x02\xc9\x4a\x89\xc6\xfb\x5e\xbf\x71\xbd\xc5\xe9\xad\xa8\xb3\x37\xf7\x2c\xff\x8a\x3a\x37\xe9\x7b\xc9\x4b\xea\x23\x5a\xed\x5d\xd5\xad\x05\x2f\xd3\xc6\x32\xb1\xd3\x12\x92\xaf\x52\x6d\xd2\x5e\xa5\x87\x65\xd1\xe7\xac\x14\x17\x56\x7e\x6d\x98\xe9\xf0\x19\x4c\x98\x55\x5b\x23\x3b\x50\xbc\x6c\x7a\x3a\xf8\x4f\xec\xbb\x01\xfb\x28\xcb\x47\xe3\xac\xdd\x05\x0d\xea\x65\x64\x39\x29\x99\xc8\x85\x45\x45\x7b\x25\xb5\x65\x1b\x95\xef\xea\xbc\x5a\xbe\x75\xa9\x0e\x16\x4e\x42\x96\xc0\xd7\xc6\xe3\xed\xdb\x13\x08\xc7\x7f\x83\xdf\x5b\xdc\xc3\x80\x35\xad\xe9\x2f\x83\x24\x6d\x0d\xb5\x5d\x65\x46\x8d\xae\x0d\xdb\x0d\x90\xe6\xa1\xf6\xdd\xae\xb9\xe1\xd0\x29\x97\xc5\x97\x1b\xcc\xfb\x97\x97\xdb\x0f\xce\xff\x15\xbd\xff\x73\x3d\x3d\x6d\xdf\x53\x7f\xf7\xb8\x66\xbd\x92\x3b\x6f\x3e\xd5\x3c\x73\x3f\xdb\xb8\xd8\xf9\xf9\xff\xcb\x5e\x9e\x69\x1f\x0d\xee\xeb\x6f\xbd\xae\xb5\xcf\x5f\x1f\xdb\x1e\xb0\xee\xb2\x6d\x6d\xae\x97\xaf\xf1\x7f\x99\x58\xf9\xb8\x7a\xb7\xb9\x7e\x3a\xf5\x13\xee\xff\x8a\xfd\xdd\xf1\x13\xfd\xba\xf4\xbc\xe9\xb8\xf9\x40\x62\x27\xe0\xeb\xe1\xda\xe5\xb2\xfe\x3c\xea\x74\xeb\xc4\xfe\x58\xcf\xf0\xd4\x20\xfb\x10\xd5\x08\xdb\x0c\xeb\x86\xfe\xc9\xc7\xff\xec\x84\xfd\x7d\xdd\xe9\x5e\x49\x1d\x73\xec\xb4\xac\x73\xac\x60\x2c\x62\xcf\x64\x4f\xf8\x8e\xd2\x0e\x08\xf7\xca\x77\xee\xb6\xa9\x35\xb1\x35\x1c\xd7\x69\xd7\x99\x35\x6e\xf5\xb4\x4c\xdb\xac\x55\x1f\x33\xdc\xfd\xfe\xcf\xf8\x7b\xa1\x63\x9e\x9d\xe1\x2f\x9b\x73\xee\x93\xcb\x23\x8b\x03\xb4\xdd\x03\x6d\x8b\xcd\x6c\x75\xad\xd5\x42\xe5\xd8\x45\x39\xf9\x3b\xb9\xcc\x39\xaa\xb9\x32\x85\x90\xfa\xe9\x5e\xdb\x29\xd4\x35\xbf\xe3\x93\xef\xff\xf1\x4d\x9e\xf3\xef\x52\x2e\xf5\x4d\x90\x0e\xb8\x76\xbe\x68\xbe\xab\xdb\xac\x92\x2a\x0d\x2d\xcc\xca\x31\xcd\x40\x4d\xc1\x4d\x64\x8c\x23\x88\x81\x8d\xaa\x8d\xce\x4f\x15\x28\xe4\xad\x63\xec\x89\x9c\xcc\x5f\xc7\x3d\x91\xbd\xd7\xfb\x9f\xf8\x1f\xa7\x7b\xdd\x2b\x74\x63\xf6\x3d\x3a\x8d\x9f\x2a\x3b\x4a\x0c\xf3\x86\x32\xab\x53\x46\xe3\xb1\xa3\xe6\xc2\xd8\x83\x8f\xfc\x87\xbc\x87\x3c\x61\xbc\x28\xbc\xa7\xc3\xe6\x92\x1f\x0b\x9f\xea\x03\x7a\xae\xa6\x9d\x36\x09\xcf\x6d\x1f\xa3\xff\x91\xe1\xaa\x7f\x7d\x6d\xaa\xba\x47\xa1\x3e\xa2\xc4\xee\x33\x47\x9a\x6a\xbc\x4a\x64\x71\xf0\xb2\x5f\xb0\x97\xb9\x2b\x82\xa3\xad\x6d\xb6\xd5\xa8\xf9\x88\x79\x80\xcd\x8d\x67\x7f\xb8\x53\x6a\x4f\xd1\x78\xc3\xef\xfe\xb1\x39\xb6\x1d\x97\xeb\x7f\x4e\x99\x9d\x73\x2e\x0f\x0e\x5d\x36\x0d\x95\xe4\x64\x4a\xc7\x25\x87\xa1\x06\x78\x7b\x9a\x7d\x6c\xb3\x7b\xb0\x82\x31\xde\x34\x08\xd2\xd9\xd2\xe4\x50\x63\x52\x6d\x31\x58\xb7\x6d\xf0\x0e\x89\xf4\x4d\x2f\x2e\xcd\x6d\x55\x1e\x09\x58\xfe\x7e\x44\xf5\xe3\xaf\x3a\xca\x41\xd9\xec\x73\xcf\xbb\xaa\xae\xcf\x58\xb1\xb9\x41\x5f\x3d\x73\x1c\x7b\xac\xa7\x4c\x5e\xeb\x5d\x68\xaa\x28\x97\xca\xa3\xc9\x30\x4a\x66\x89\xf7\x4a\x6a\xa8\xf4\x1b\xd3\x3b\x92\xf8\xc7\xc4\x8a\x7f\x56\xab\xd6\xed\x6a\x9e\x32\xdd\x7a\x71\xb1\xf3\xe7\xd1\x4b\xdd\x9b\x9e\x56\x6e\x0f\x2b\xa9\x4b\x41\x0f\xb6\xf7\x14\xb6\x55\x32\xc9\xd0\xfd\xa6\x46\x27\xb7\x2e\x75\x23\xda\x2f\x80\xce\x3d\xc5\x41\xce\xaa\xcb\x2b\xf8\xf6\x83\x66\xab\x39\x8c\x4b\x70\x48\x69\x72\x45\x51\x62\xb3\xd3\x50\xec\xb2\xdc\x31\xe5\xcf\x73\x08\xe4\xd7\xfb\x7d\xb8\x09\xcf\x16\x8d\xbc\xe5\x18\x7f\x1f\x56\xbb\x8a\x0f\x4a\x9a\x22\x0a\x8d\xd2\xa6\x42\x37\xdc\x39\x2c\x8f\xf4\x1b\xd4\x0c\x64\xa7\x24\x05\x2c\xed\xc2\x40\x5e\x48\x9f\xc4\x56\xd7\xbb\x2d\x3a\x3e\x5b\xa0\xfa\xa9\x3b\x7b\x56\x69\x87\xef\xc6\x03\x02\x79\x54\xd8\xdd\x1e\x73\x6f\xa4\xcb\x1e\x0b\xeb\xfa\xb8\x6a\x26\xad\x91\xfe\xfe\xb3\xb8\x36\x1f\x26\x6b\x1d\x6d\x38\xe9\x37\x02\x59\xac\x0b\xb4\x3c\xec\x19\xea\x6b\xae\x49\xa9\x69\xb5\x01\x33\x76\x17\x8d\xd0\xb8\x94\xee\x92\x9a\xd6\x92\xb1\x8d\x75\xa7\x6f\x1c\xbf\x23\x9f\xbd\x76\xcb\xc6\xdb\x6a\xd7\xd2\xcd\x83\x6b\xed\x05\xf4\x9f\x15\x54\xc5\x6d\xb8\x7f\x30\x7e\xa3\x28\x22\x28\xc1\x00\x48\x18\xb0\x46\x2f\xca\x51\xb6\x89\x3b\x99\x4d\x84\xa6\x15\xec\x0c\xa8\xed\x57\xfd\x2b\xe2\xcf\xf2\x0f\x1b\x93\x87\x0a\x57\xd4\x8f\xdd\x1f\xf7\x20\x90\xbd\xfd\xf1\x85\x5a\xf8\xb4\x4a\xa7\x4c\x1b\xe2\xf7\x9a\xd2\x76\xbc\xcf\x8c\x23\xe4\xd5\xb8\x05\x28\x9b\xb0\xdd\x80\x12\x10\x02\x6e\xf8\x01\x3c\x38\xda\x6d\x5e\x8d\x77\xa4\x3a\x94\xd6\xc5\xde\x01\xd1\x82\x39\xc8\xb5\xf6\x7d\x99\x0b\x8e\x07\x5e\xf7\x56\x10\xc8\x81\xc4\xe4\x59\x09\x7b\x24\xb3\xe3\xa2\x2e\xab\xf4\x2f\x2e\x39\x56\x16\x4a\x69\xbc\x08\x14\xd3\x57\x5b\x80\x09\xa0\x02\x52\x80\xf0\x0a\x01\x63\x83\xe2\x37\xa7\x8f\x64\xb0\xba\xac\x39\xb5\xfb\x6d\xb8\x7b\xa6\x61\xe5\x79\x77\xeb\xac\xee\x2e\xd1\xdd\x24\x04\x72\x1c\x34\xf0\xba\xf8\x38\x92\xdb\xb9\x40\xd7\x4d\x1a\x96\xfd\x0d\x59\x0c\x61\x34\x9a\xde\x6b\x34\x40\x01\xa4\xc1\x5b\x80\x0c\x28\x5f\x60\xa1\xac\x92\xaa\xb2\xbd\x11\x3b\x57\x25\x36\x79\x70\x4d\xf9\xf4\x29\xfd\x5d\x85\x74\x67\xc8\x8c\xcd\x8e\xc0\xed\x12\x04\x72\x9e\x32\x10\x59\xfc\x2b\xa6\xc4\x65\x4c\x3f\x4a\x3a\x82\x55\x8c\x50\x0c\xd5\x16\xee\x06\x14\x02\x2c\x80\x0e\x90\x01\x17\x10\x05\xb8\xc8\x6f\x88\xbb\x58\xe2\x44\xa5\x94\xdf\x9a\x88\xb9\x10\x86\xbe\x4b\xeb\x2f\x57\xeb\xac\x9d\x96\xdb\xf6\xbf\x95\x86\x40\xf6\x5e\x0e\x1b\x57\x2a\x26\xa8\x7b\x40\x8c\x82\x65\x86\x59\x87\xf1\x6d\xe0\x12\x5e\x38\x80\x37\x40\x14\x20\x02\x1c\xc0\x0a\x94\x01\x39\x52\x39\x11\x0a\xf3\x8d\x08\xa9\x52\xe1\x87\xd4\x8f\x62\xa1\x61\x69\xda\xe5\x91\x1d\x37\xd3\x0c\x5b\x1a\x37\xd0\x10\xc8\x11\xe6\x44\x5c\x5d\x48\xca\xa6\x6f\xbf\x89\xd9\x7b\x78\x8e\x8f\x04\xe2\xd0\x8e\xd0\x4d\x2f\xe9\x81\x31\x50\x02\x6a\x80\x1a\xf0\x03\x0b\xc4\x62\x42\x0a\x26\x0b\xe1\x71\xc5\x1e\x63\xd8\x8f\x6b\xa1\xbe\x69\xaa\x65\x3a\x9d\x04\xd3\x6a\xdb\x56\xb7\xa8\x10\xc8\xe9\xd2\xec\x50\x53\x71\x66\x57\xc0\xb8\x45\x89\xa2\x34\xb7\x03\x49\x2f\xf2\x2e\xf2\x5b\xa4\x13\xf8\x7c\x58\x27\x98\x7c\xe8\x7e\x98\xc6\x57\xae\x08\x22\x04\x8e\x8c\x59\xc2\xf1\x8a\xa6\xc6\xbc\xce\x47\xa1\xfe\x69\xd3\xe5\x89\x9d\x3f\xa7\xa1\xb6\xfb\x6f\x8d\x21\x90\xeb\x88\xc5\xc9\xf6\x83\x5c\x85\x50\x5a\x5b\xa0\x72\x29\x58\x4b\xff\x44\xc0\x8b\xf6\x8c\xb3\x88\xa5\x85\x56\x81\xe2\x8e\x4c\x83\xc2\x8e\xba\x8b\xa9\x4e\x10\xc3\xa0\x2b\xb4\xa1\xe8\xff\xa1\xf6\x23\x5c\xe8\x74\xfa\xef\xf2\xfb\xce\xe9\x99\xbc\x5d\x93\x3b\x5b\x08\xe4\x07\x64\xcd\xa2\x47\xaf\x70\x3e\x92\xd1\xe1\x5c\x3b\xeb\xed\x30\x0f\x13\x6d\x0f\x2d\x03\x85\x3f\xc9\x00\x61\x11\xfe\x1e\xfe\x25\x01\x2f\x11\x0a\xa9\x3a\x0d\x0e\x33\xbf\xe0\xa3\x22\x87\x71\x90\x0b\xfe\x27\xe7\x0c\xd4\x8a\xd5\xae\xd6\x19\xec\xdd\x9c\xbb\x58\x08\xe4\xe9\xd5\xd6\xd3\xc0\x6d\x59\x6d\xcc\x47\xb7\x6a\xd3\x0e\xb5\x17\x92\x69\xdc\x22\xf4\x28\x2c\x80\xa9\x87\x5e\x9f\x7a\x9e\xa6\x9b\x26\x96\x2e\x91\xd9\x89\x93\x44\xa0\x4f\xbc\x5f\xa9\xe9\x03\xac\xb3\x74\x68\x56\xda\x7d\xa5\x68\x37\xe1\x6c\xc5\xce\xe9\x0f\x02\x08\x04\x32\xb1\x77\x3f\xf2\xab\xaa\x37\xa9\x3f\xf0\xda\x71\xf3\x83\x86\x0a\xab\xa4\x1c\xcf\xa8\xe0\x47\xbe\x13\x1e\x1c\xce\x5b\x2e\x5a\x2e\x71\x1e\x17\x41\x0a\x71\x01\x99\x59\x25\x32\x2d\x42\xd3\x31\x17\xde\xd0\xcd\x0c\xc9\x4a\xb5\xae\xc8\x59\xb5\x3d\xfc\x1f\x7f\x5c\x41\x8e\xd1\x27\x65\xea\x5a\x73\xf9\x63\xbe\xfb\x91\xda\x8f\x19\xd1\xa8\x78\x48\x13\x89\xe4\x49\xdb\x4a\xd6\x4b\x48\x49\xcc\x48\x86\x4a\xc3\xc9\x46\x2b\x69\x6b\xee\x1a\xac\x58\x04\x3b\x52\x7b\xbd\x8d\xb4\xcb\x84\xaf\x78\xdd\xcd\x38\xab\xbe\x2b\xf7\xe3\x4f\xd7\xf9\xcc\x77\x06\xa3\x2b\xa3\xf2\x6d\x16\x7a\x54\xa5\xcf\xaa\xbd\xaf\xd1\xa3\xba\xb9\xe6\xbe\x9a\xa9\x4a\xbd\x72\x9e\xb2\xb2\xf2\x9c\xba\xaf\x36\x9d\x61\x9d\x79\xad\x03\x70\xeb\xf6\x77\x8c\xd4\x4a\x8c\xc9\xd9\xaf\xd1\xef\xae\x98\x45\xdc\x83\xba\x2b\xfd\x5b\x86\x8b\xb8\x75\xdc\x31\xab\x36\x8a\xb2\x84\x0c\xb3\xc8\x43\x9f\x5b\x47\x1a\xd3\x52\x1d\x0e\xe3\x6c\x63\xd9\x0f\xb2\x46\xbc\xc6\x33\xa6\xea\x96\xcf\xf6\x5d\xae\xc7\xbe\x4f\xa1\xb7\xb1\x8b\x99\x50\x05\x41\x95\x3d\x1d\xa4\xa3\x90\x95\x95\x23\x9c\xef\x7f\xea\xbd\x3f\xd3\x0f\x0f\x97\x2d\x86\x7d\x5b\x94\x4a\x3b\x33\xd4\xa2\x29\xfd\xab\x5c\x2c\xad\x5f\x3a\xfa\x38\x64\x3a\xf4\x39\x6a\x3a\xc3\xb8\x50\x7b\x58\xf9\x4a\x86\x6e\xc4\xb8\xa6\x3c\xe7\x56\x94\xa3\x35\x21\xf4\xd0\x8f\x0d\x2f\xcd\xef\xa5\xdc\x74\xff\xe3\xb6\xbd\xf5\xd9\xab\x58\xa4\x1d\x4a\x6a\x7e\x2a\x33\xcb\x2a\x8e\xdb\x0b\xe1\xf0\xe2\x0e\x10\xf5\x85\xf8\x4b\x07\xd4\x07\x41\x87\xfa\x86\x57\xc4\xf2\xa4\x20\x7d\xf6\x2a\x0e\xa8\x23\x69\x77\x18\xcc\x98\xe1\x5f\xdd\x3f\x60\xba\x51\x83\xfc\xcb\x2c\xc5\x35\xde\xae\xf0\xc2\xe0\x50\x7f\xeb\x4d\x65\x4c\x6e\x76\xf2\x8f\x54\xc1\x60\xe8\x68\xea\x58\xcb\x18\xa3\xf8\xf2\x14\xcd\xf4\x6f\x39\x0f\x25\xf6\x55\x5a\xcd\x73\xbd\x1e\x63\xc9\x8b\x1a\x5f\x7f\x9e\x75\xdd\x0f\xff\x07\xf4\xbd\xbf\xea\xdb\x55\x5d\xd2\x1c\x0d\xec\x54\xaf\x53\x2f\x0e\xc8\x5a\x4b\x86\xca\xae\xce\xee\xc9\x41\xcf\x35\x2f\x4c\x2e\x0f\xac\x25\x6c\x91\xea\xa6\x1d\x39\x9e\x71\x5c\xd5\xdf\x9b\xbd\xe2\xf8\x6f\x4e\x14\xbf\x7f\x5d\xf7\xef\xff\xfa\x52\x34\x39\xdc\xd7\xdc\x22\x5d\x4d\x5c\x2c\x51\xf1\xa5\xd2\xa9\x6a\xb6\xfa\xa4\xfe\x7d\xcb\x6c\x57\xc2\x80\xf6\xc4\xf2\x92\xdc\x57\xf1\xa3\xb4\xbb\xb6\xdf\xaf\xff\x2f\x0e\xf0\x8f\xf5\x6b\xfd\x81\xef\x7b\xf9\xb5\xc6\x05\xdd\xe9\xf2\x91\xce\x7e\xc9\xae\xf6\x0e\xc5\x6e\xda\xa1\xd4\xf5\xda\x33\xdb\xff\x33\x2e\xff\xbe\xff\x76\xf2\xf2\xfa\x5b\xe7\x29\xd1\x91\xd6\x2e\xcd\xe6\xce\x5a\xd7\xf2\xf5\xfc\xc6\x3c\xd3\x4c\xcb\x14\xd6\xac\xe7\x12\xd7\x4e\xe0\x85\xe3\x13\xcb\x7f\x8b\x7d\xd6\x7b\x50\xba\xba\x3a\x93\x3d\xe4\xda\xe5\xff\x2a\xb6\xc1\xf5\x45\x60\x31\x62\xfa\x70\x12\x7e\x94\x6e\x90\xaf\x3b\xa8\x6b\xb1\xf3\x77\x27\x74\xa7\xf7\xa0\xd7\xe2\xf8\x76\xca\x39\xe6\xe3\xff\xd6\xa3\x46\x5c\xaa\x9f\xda\x6e\x4f\xaf\xf9\x2e\xbf\x98\x35\x9a\x7c\x3f\xba\x38\xfc\xba\x6f\xaa\x6b\xb3\xcd\xb3\xc9\xa7\xd6\xb7\x3a\xba\x42\xbe\x8c\xbd\x94\xbf\x3c\xbb\xf1\x6e\x18\x76\x6e\xfa\x2b\xee\xb9\xfb\xc3\xcc\xbf\x27\xb8\xf3\xdb\x9b\xdb\x88\x5c\x44\x9e\x60\x1c\x52\xed\xb5\xec\x30\x68\x8e\x68\x58\xaf\xc9\x2d\xfb\x51\x34\x97\xd7\xf3\x39\x22\xfd\x26\xf5\x21\x79\x2d\x29\x3d\x43\xbb\x34\xbe\x05\x6e\x60\x71\x0e\x7c\x1d\x39\x77\x7a\xfc\x57\x5d\x8d\xc6\x69\xcb\xaa\xe6\x6c\xd7\xc0\x8f\x8e\xe7\x26\xd4\x1a\xdf\x72\xb5\xa2\x9b\xdc\xe7\x2c\xce\xb4\xd4\x84\x6f\x31\x55\x11\x91\x9f\x70\x82\x48\x03\x67\x02\xe5\xa3\xa4\xb3\xf8\x4b\xee\x9a\xd4\x06\x5c\xe7\xee\xb7\x82\xbf\x25\xfd\xfe\xe7\x24\xca\x8f\xd4\x5d\xf2\x99\xf3\x41\xe5\x56\xe5\xea\x91\x22\x9f\x1c\xf2\xf4\x83\x64\x9a\x98\xfb\xf0\xc3\x60\x7d\xbf\x78\xef\x45\xf7\x9d\x8f\xc9\x8e\x49\x76\x5f\x1c\xa7\x7d\xb7\xa2\x18\x33\xec\x4a\x49\x5b\xf8\x86\xa1\x16\xd7\xf7\x3e\xdd\xfe\x93\x3f\x5c\x30\x7c\x09\x1e\x36\x69\x6b\xac\xf4\xcb\x33\x48\x75\x8f\x7b\x15\x9e\x1e\x54\xe9\x2b\xe3\x01\x9c\x35\x6c\x9f\x2d\xb5\x4d\xdf\x1b\x9d\xe8\x53\xeb\xd6\x7c\x30\x75\xd4\xf0\x53\x8f\x91\xcc\xa2\x2b\x27\x68\x97\x19\xab\x5e\x7d\x7f\x42\xfa\xf0\xd7\xbc\xde\x49\xca\x7c\x7b\xb7\x60\x6d\x49\x7e\x76\xb2\x40\x84\xa8\xff\x9a\xe7\x8c\xf3\x77\x5b\x71\x33\x3e\xa3\x1a\x5d\x32\x8d\x4d\xa5\x32\x05\x24\xd9\x70\xd9\x76\xf5\x64\xe3\x73\xe7\xca\x20\xd8\x78\x89\xdc\xee\x5a\x87\x1e\xba\x99\xe7\x6d\xfc\xcb\xcc\x3f\x4f\x62\xcc\x61\xeb\x74\x5a\x7b\x42\xa9\x43\xda\x73\x44\x8e\xaf\xbd\x73\xae\x75\xa1\x89\x88\x5e\x96\x3a\x8c\xa2\xe2\xbb\x2b\xc9\xaf\xc2\x10\x81\x62\xde\x05\x01\xb4\xf7\x21\x5a\x57\x16\xe9\x6e\xe0\xd3\x79\x2a\x76\x71\x68\xd3\xd9\x30\xe4\x0b\xec\xd1\xc5\xcf\x46\x08\xe4\x99\x6e\xa7\x78\xe2\x55\xc3\x5d\xee\x6a\xcc\xa0\x3f\x99\xd3\xbd\x05\xa5\x3e\x89\x7a\xb4\x5c\x83\x94\x80\x08\x1e\x9f\x30\x47\x3f\x73\x33\x3d\x2a\x8d\x23\x8b\xba\x08\x92\xc2\xaa\x81\x95\x9d\x8d\x4f\x65\x4c\x6a\xf6\x7e\xf5\x65\x8f\xc8\xec\xc9\xf6\xd2\x0d\x05\x04\xf2\xb0\xb2\x93\x3a\x32\x5f\xb7\x94\x65\x18\x96\xe9\x96\x63\x39\xa9\xbb\xaf\x84\xf6\x36\x4b\x44\x8f\x47\x8c\x39\x84\x76\x93\xbc\x98\x28\x03\x4f\x18\xdb\x83\xc6\x8f\x07\x48\x59\xa9\xf3\x9b\x61\xb8\xc2\x87\x62\xa7\x16\x97\x0a\xb6\xd2\x8c\xf9\xae\xef\x9c\x33\x3f\x7b\xfd\xe2\xd8\x5e\x1a\xca\xae\x6e\x4c\x31\x0f\x04\x0e\x9b\x86\xc8\xca\x7a\x52\x0e\xfc\x67\xec\x80\xee\x90\xf4\x00\x6f\x1b\xfd\xfc\x4d\x12\x9c\x28\x32\x09\x71\x09\xf3\x95\xd0\x8e\x3c\xc4\x80\xc1\x3e\xd1\x1f\x23\x1e\x2a\x1f\xb7\x01\x76\x30\x72\x29\xe3\x18\xe6\xa1\xf5\xe9\xd5\xb6\xe6\x10\x41\x45\x75\x38\xc4\xe7\x41\x5f\x4b\x0b\xfa\xad\xbf\xa0\x0c\xcb\x4f\x6a\x2c\x42\x08\xe6\x4b\x44\x44\xe8\x5f\x80\x05\x90\xc3\x89\xe3\x32\xd2\xb4\xf2\x42\xbd\x9d\xd7\x4a\xb3\xbc\xf0\x3c\x8f\xbc\xca\x1a\xa8\x36\xec\x55\x9f\xab\xde\x6b\xbb\xfb\xfd\xcc\xf9\xb5\x71\x88\x39\x2f\x32\x1c\xd8\x09\x68\xb3\x49\xb3\x73\x27\xb1\x79\x51\x9b\x12\x62\xa0\x75\xc1\xcd\x00\x35\xc0\x0d\x88\x01\xc3\xcb\x4e\x74\x7c\xb2\x6d\xb6\x6f\x12\x9c\x2a\x3f\x4c\xe5\x5c\xeb\x3e\x3d\xa4\x95\x97\x13\x75\xa4\x4d\x33\x6e\x6d\xdc\xb8\x43\x20\xdb\xa2\xdd\xe1\xb9\xa7\x21\x09\xf6\x09\x5a\x11\x12\x01\xac\x17\xe4\x13\x84\xf7\xe8\x23\x70\xb1\x00\x1a\xa8\x00\x12\x40\x0d\x88\x00\xe2\x1b\x4d\xc2\x2b\xa6\x6d\x61\x79\x85\x6c\xa3\x60\xa7\xc4\x60\xbd\x64\xd7\x92\xc8\xd6\xcb\x89\xf6\x8d\xc4\xcb\x41\x48\xee\x57\xcf\xf6\xce\xdc\x5f\xe1\x78\x8e\xa9\xda\x66\x12\x2d\xcc\xfa\x04\x57\x98\xfd\xf0\x97\x50\xba\x80\x04\x90\x00\x76\xc0\x0a\x44\x01\x17\xbc\x17\x9e\x2a\x7d\xac\x80\x9c\xdc\x57\xfd\xdf\xf6\x29\x01\x43\x89\xcb\x45\x96\x2d\x93\xe3\x94\xeb\x0b\xdf\x02\x21\x90\x8d\xc1\x1e\xc6\xc2\xcd\x68\x59\xe7\x51\x3d\x63\x49\x49\x66\x32\xdc\x6a\xf8\xc8\x97\x24\x00\x13\x20\x00\x52\xc0\x04\x98\xc0\x1b\x40\xf8\xda\x05\xe7\x84\xb6\x9c\x6f\xfe\x3d\x99\xde\xac\x3d\xa6\xbf\x60\x62\x41\x61\x7a\xf3\xf4\x28\xf5\xea\xe5\x37\x4f\x08\x64\xb3\x60\xe0\xbc\xfc\x75\x9c\x9e\xfb\xa9\x21\xcc\xdb\x61\x96\x09\xbc\x97\x2f\x99\x01\x25\x40\x02\x02\x40\x1d\xa0\x00\x6a\x40\x06\x68\x5e\xdd\x61\xf7\xd2\x78\xf0\xba\xca\xfa\xea\x76\xdb\x99\xfa\xcf\x27\xf0\x15\x72\x36\x55\x8e\xce\xad\x0d\x7d\x53\xf8\x9d\xbc\x2f\x33\xba\x5c\x13\x92\x2c\xed\x43\x63\x22\x2c\x5b\xce\xe1\x48\xc0\x0b\xeb\x04\x28\x81\x22\x20\x02\xaf\x01\x0e\x40\x03\x2c\x00\x07\x26\x10\x0b\x8f\xba\x85\x97\xf2\x1d\x94\xae\x92\x9d\x8d\xbf\x49\x22\x5c\x41\x5e\xb3\xe4\x68\xdf\xda\xd7\x6f\xdc\x10\xc8\xf1\xf9\x74\x45\xc3\x5d\x06\x5b\x40\xb4\xf9\x85\x42\x02\xf7\x03\xe9\xe3\x9b\xf7\x2f\x72\x5f\x1e\x43\x59\x03\x7c\x40\x04\xcc\x00\x05\x10\x84\xb6\xc6\xb4\xa7\x2a\xe2\x19\x7c\x97\xa1\x4b\x6d\x67\xe0\x8f\x19\x7f\x58\x48\xd7\x8c\x3d\xda\xb4\x2e\xf0\xad\xeb\x4f\x37\x0a\xb6\x35\xed\x73\x46\x08\x93\x8d\x8c\xca\x17\x41\x0e\x7a\x64\x3c\x2c\x44\x32\xe4\x76\x44\x05\xb8\x9b\xd7\x68\xb0\xaf\x5e\xbf\x81\x53\x46\xf0\xc0\x88\xa1\x52\xe1\xf9\xf0\xce\x53\x87\xd7\xee\x95\x5f\x63\x82\x76\xa1\x63\xb3\xda\xd8\xf4\x7a\xe9\xb7\x7e\x08\xe4\x56\xfb\x4b\x4d\x97\x66\x81\x66\xf8\x9c\x43\x87\x36\x9a\xf4\x35\x37\x2e\xb5\x1c\x2e\x33\x46\x1e\x2e\x3c\x16\x0c\xfa\x1a\x7a\x25\xfa\x19\x66\x3c\xf6\x14\x41\x06\xd5\x27\x6e\x51\x99\x58\x5d\x7b\x3b\x3b\xbf\xc5\x04\xcb\xc2\x8d\xe6\xe9\x31\x82\x0d\xcb\x0b\x0a\x08\xe4\x67\xc9\x86\x60\xdf\xc7\x92\xc0\xe8\x22\x37\x7a\x93\x9f\x2a\xdf\x25\xc8\x38\x1a\xa8\xa9\xa9\xb3\x29\x53\x48\xad\x49\x73\x48\x58\x49\x2d\xc8\x20\x54\xd0\xf4\xe5\xac\x03\xfc\xcc\x32\xcd\x3a\xcc\x76\x5b\x01\xad\xf1\xce\x45\xd0\xcd\x0d\x63\xaa\x1b\x0b\x97\xce\x10\xc8\x33\xe1\xf6\xc8\xf0\x9b\xca\x8c\x24\xce\x40\x0c\x47\x36\x23\x1a\xa5\x4c\xb1\x51\x4e\x59\xba\x7c\xd6\x5f\x2c\xeb\x8c\x99\x4c\x0b\xcc\xba\x2c\x27\x1c\x82\xbc\x0b\x22\x3e\xd2\x69\x8a\xd6\xfa\xfa\xb6\x27\x7e\xe8\x09\xc5\x45\x45\x6d\xc2\xe3\xb9\x9b\x9f\x2e\xa1\xff\x76\x47\x1c\x48\x8d\xfb\xd4\xc5\xe6\x88\xc6\x50\xf9\xb2\xd8\x69\x1a\x38\x29\xb1\x8a\x5f\xf0\x5c\x08\x15\x0b\x46\x0a\x22\xf2\x5f\x09\xfa\x09\xcb\x89\x77\x4a\xdf\x2b\xe4\x69\xe4\x19\x94\x5b\xd4\x3a\x6d\x05\x11\xc5\xb9\x16\xa8\x36\x27\x8d\xab\x6e\xc8\x5f\xf2\xfe\xb9\xa5\xdc\xa6\x17\x3b\xc3\x2a\x94\x32\xb5\x22\x35\xbd\x25\x6c\x1b\x0c\x2a\x55\x9c\xde\x3a\xbe\xff\x2a\x37\x24\x7b\x2f\x2b\xfa\x7e\x40\xfe\x40\x45\x49\x13\x43\xbf\xd0\x6c\xc4\xee\xc9\xdd\x30\x70\x2a\x6a\x32\x23\xa8\xcc\xa2\x75\x61\xb4\x70\xe3\xea\x3a\xe8\x6f\x19\xbe\x11\xaf\x61\x8f\x46\xb4\xea\x97\xba\xa6\xe3\x45\x98\x79\xfd\xb2\x27\xfc\xb0\xa3\xe1\xac\xc3\xa1\x2d\xa2\x3d\xad\x3d\xa7\xd3\x67\x90\x67\x74\x62\x2e\x62\xef\xe1\xaa\xe9\xe7\x16\xce\x9f\xa8\x98\x55\x50\xca\xd4\x88\xdc\x3b\x3c\x53\xbe\x51\x71\xf9\xa7\x17\x74\xcf\x7f\x70\xb7\x64\x32\x54\xd4\xcc\x5d\x92\x98\xf6\x23\xd2\xc6\x37\xcb\x29\xd9\x7c\xc6\x52\xd4\x6c\xcf\xda\xcb\x4a\xdc\xf6\x87\xfd\xb1\xf3\x83\xdb\x90\x9f\x61\xe8\x58\xac\x66\x5a\x54\x7e\x58\x25\x53\x4b\xd4\x80\xc1\x8c\xed\x06\xec\xa9\xe3\x77\xc3\xbf\xdf\xb6\x37\xb9\xbb\x1d\x0b\xc2\x83\x7c\x4d\x79\x25\x2b\x99\xe8\x31\xeb\x81\xcf\xee\xaf\xed\xe9\xdd\x77\xdc\x46\x3d\x86\xbc\xc6\x7c\x59\x83\xfd\xc3\x39\x63\xf1\x53\x19\x73\x6a\xca\x44\x1b\x6a\xba\x39\xc7\xc4\x16\xee\xb6\xda\xcf\xf1\xee\xad\xfe\x89\x3a\x63\x57\xe2\x3b\xf2\xf3\xb1\x83\x5e\x2d\x92\xe5\x4d\x9f\x37\x12\x0d\xc3\x79\xfd\xf9\x43\x7f\x86\x74\x84\x9e\x85\xb7\x47\x0f\x25\x21\xa4\x89\xe6\xbc\x2b\x61\xa9\xbd\x6e\x1f\x1d\xd0\x99\xec\x5b\x15\x39\x00\x57\x3a\xcf\x06\xff\x8a\x7c\xbf\xe5\x2f\x43\x76\x98\x17\xb1\x47\xd8\xdb\x97\x6b\x2c\x0b\x9e\xd2\x21\xf1\x85\x29\x4e\x29\x69\xa9\x6d\xe9\x64\x99\x6c\x79\xc8\x25\x6e\x35\x78\xcd\x58\x3d\xf7\x23\x9e\x0b\xd4\x1b\x8d\x47\x6e\xff\xf9\xe6\xfd\x27\x07\xb8\xaa\xdf\x2b\x5a\x79\x3d\x61\xd8\xd3\xda\xf4\xbe\xe2\x77\xc1\xb7\xdc\x99\xc2\xdb\x92\x93\xf2\x93\x0a\xdb\xda\xf0\xc6\xdd\x2e\xfc\x21\xd7\x29\xa4\x65\xc5\x9d\xcd\xf3\xde\x9f\xbc\xff\x0f\x12\x41\xf5\xcb\xef\xa1\xed\xbb\xfc\x8d\xed\x05\xd3\xc9\xd2\xe1\xee\x3e\xe6\x96\xfb\xfa\xcd\xea\xda\x97\xca\xd5\xf6\xb5\x93\xa3\xb3\xef\x8c\xff\x57\xe0\xd3\xf3\x13\xc2\x77\xc5\x6b\xc2\x6f\x59\xa7\x8e\x47\x87\xbb\x39\x5b\x62\xeb\x6c\xcb\x9b\xf3\xc1\x33\x55\x13\xd9\x23\x2b\xc3\x7a\x43\x9e\xc3\xe8\x93\x06\x5f\xde\x1f\xf0\x5e\xff\x17\x57\x37\x08\xe4\x71\xe6\x9b\xf2\xe9\xe9\x81\xf7\xd6\xf5\x7a\xc4\x17\xd7\xc5\x8e\x59\xbd\x09\xd3\x91\xec\x81\x99\x1e\xd9\x4e\xfa\x96\xbb\x46\xaf\xfa\xc9\xda\x2f\xf5\x59\x5d\x4a\x63\x64\xcb\x64\x7b\x5b\xd7\x6d\x90\xd2\xff\x38\x81\x95\x6f\xa3\x5b\x39\x6b\x07\x8b\x3e\xd3\xbc\x63\xf2\x43\x1e\x7d\x39\x5d\x37\x6d\xf0\x8d\x3b\xb5\xfb\x95\x71\xa5\x55\x45\x48\x79\x32\x9f\xfb\xb2\x3f\xe7\xd1\x56\x5a\x75\x5c\x8f\x12\x2c\xf9\xed\x29\x5c\x09\x3d\xff\xdb\x2c\xca\x5d\xe4\xf6\xc5\x42\xfe\x94\xde\x50\x6c\x77\x78\x6b\x6e\xa3\x4d\x4d\x62\x85\x58\xb1\x4b\xde\x61\xb6\x65\xba\x73\xd2\x60\xbc\x67\x74\x45\x64\x6a\x44\x77\x6c\x5b\xf6\x63\x85\x40\xeb\xcd\x48\xc8\x32\xf5\xfe\xd7\x1b\xbe\x7f\xd9\xc1\xc6\xb1\xf6\x62\xda\x10\x4b\x4f\x4e\xd3\x50\xf5\x87\x52\xec\xfc\xf8\x6c\xce\xb4\xa7\x24\xe3\xd8\xf3\xf0\x83\x50\xa2\x40\x38\xdf\x60\x2f\x29\x0f\x69\xb7\xb3\xc0\xe8\xd8\xce\xcf\xfe\x15\xba\x6d\x87\xa3\x5e\xcb\x2b\x47\xac\x77\xff\xd4\x93\x7c\xaf\xda\x3a\x9b\x40\xef\xf6\xaa\x77\x29\xa5\xce\x99\x48\x13\x88\x9f\x8b\x86\x0e\x63\x0e\x74\xf0\xe9\x73\x1b\xfd\x88\x61\x3f\x69\x0d\x6f\xae\x60\x8a\x64\x46\xe2\xc2\x1f\xe8\x11\xd7\x94\x13\x58\x85\xd9\x59\x36\xd1\xb8\x1e\x7d\xea\xfe\xd8\xf1\xf7\x0c\x17\xc2\xcb\xb3\x7d\x21\xf5\x77\xc5\xd1\x19\x6b\xf1\x49\x9f\x86\x02\xe3\xbc\xa6\x5c\x25\x1c\xda\xac\x93\x4c\xfb\x0d\xab\x74\xee\x35\x6b\x54\x53\x55\x1c\xb5\xe4\xcc\x77\x5d\xd7\x42\x3a\x13\x55\xf3\x0a\xea\x45\xfa\x8c\xe6\xb8\xb6\xcf\x6e\xfe\x9a\x65\x39\x62\x9d\x45\x6b\x93\x2e\xdb\xc8\x4e\x8c\x79\x0a\xa6\xf1\xdc\x71\xba\xb1\xf1\x30\x8d\x37\xcc\xd6\x7e\xa7\xb2\xa7\x80\x2b\x73\x22\xf9\x4d\x9c\x5a\x44\x5c\xce\x41\x4f\xc7\xda\xca\x93\x24\xac\x35\x4d\xa9\xb8\xbb\x35\x60\x14\x75\x55\xeb\x44\xf0\xd1\x18\x02\xf9\x5d\xba\xaf\x38\x99\x54\xa7\x98\x8f\x9a\xe0\x18\xb8\xe9\x2e\x69\x1b\x6e\xf2\x43\xcf\x40\x6d\x49\x3e\xe1\xed\xb3\xd8\xba\xc0\x13\xf7\x03\x07\x26\x0b\x0c\x6b\x92\xd8\xa5\x92\xac\x61\x83\xfd\xb4\x9f\x75\x4c\x73\x0e\x5d\xf5\x65\x2f\xf1\x6c\xff\xce\xe8\x2d\x2b\x04\xf2\xb0\xb6\xc5\x30\x22\x50\x6d\x99\xa1\x11\xee\xed\x71\x69\xb3\x63\x98\xa3\xbe\x28\x77\x27\x75\x21\x6c\xc8\x9d\xc7\x66\xc7\x80\x4d\xf5\x81\xf4\x9e\xf0\x8a\x26\x83\xd7\xe6\xad\xb0\x86\x99\xd9\xaa\x1b\x6f\xe8\x5d\x6a\x43\x49\x58\x6b\xf7\x38\xf4\x9a\xec\x79\xd2\xf3\xe0\x7d\xce\x16\x61\x3f\x5b\x79\x73\xf2\x59\x60\xbf\x83\xe3\x87\x75\xf5\xac\x77\xdc\x22\x25\x3c\x13\x2c\xc8\x34\x85\x64\xe8\xf8\xe1\x98\x6b\xa8\x66\x48\xfc\x24\xa9\x2c\x64\xc2\x4e\xf2\xad\xfa\x86\xf6\xcb\xfe\x54\x71\x55\xb9\x03\xf5\x63\x03\xe7\x8b\x90\x43\xbf\x1f\x90\x9f\x0d\x9b\xad\x3d\xa9\xa5\xeb\xe1\xfa\x1f\x8d\xad\x16\xb4\x94\x65\x3f\x88\xbc\xe7\xe4\x66\x40\x22\x17\xc4\xbd\x46\x87\x46\xf8\x0e\x13\x01\x1c\x5f\xf5\xe2\x64\xd3\x18\x70\x2f\xbc\xf5\xd0\xe4\xb2\x8c\xf5\xf8\x16\x01\x95\xc9\x57\xd5\xd4\x2d\x30\xcb\xb4\x13\x7e\x4b\xfe\x73\x72\xfd\x63\x77\x56\x8e\x6c\xb0\x93\xbd\x9e\x56\xee\x5b\x7f\xb1\x13\x4e\x68\xba\x38\x92\x66\xec\x37\x48\x65\xd0\xc5\x00\x17\xe8\x00\x53\x28\x3b\xd4\x43\x52\x6f\x36\x2c\xd1\x72\xe5\x1a\xe3\x17\x1f\xf3\x43\x6e\x53\xbe\x96\x9a\xb4\x33\x4d\x08\x7e\xc5\xb8\xd4\x7c\x7c\x58\x9f\x6c\x2f\xcf\x08\x0e\x14\xb6\xbe\xd3\xe0\x14\x7f\x64\x5b\xa1\x46\x23\x61\xc2\x42\x45\xd4\x7d\x11\x03\xa8\x01\x29\xa0\x04\x8c\x80\x1c\xb1\x0e\xff\x3b\x03\x89\xc0\x89\x3c\xb2\x7e\xb3\xfd\x73\x40\x55\xc2\xf7\x22\xce\x66\xee\x51\x94\x35\x84\xb3\xbc\x47\x91\x35\xcf\xa6\xfd\x2c\x8c\xa0\x02\x9b\x15\x0d\x1d\xd1\x42\x26\x3a\x42\x75\x6c\x04\xc4\x98\x17\xb7\x00\x05\xd0\x00\x66\x80\x08\x88\x00\xd1\x6b\x72\x6c\x7f\xea\x1b\x9e\x36\x99\x2d\x1d\x38\x9b\x10\x1f\xbd\x58\xea\x3c\xfb\xfa\xae\x21\x9d\xe5\xfb\x53\xca\xc7\x85\xb5\xef\xad\xd0\x39\x1e\x9f\x78\xed\x77\x34\xb3\xc4\xe6\x18\x1a\x71\x26\x10\xb9\xa0\xf9\x80\x20\xa0\x05\x74\x00\x0d\x60\x01\x3e\x40\xff\xf2\x09\xbd\x9d\x42\x99\x73\x46\xea\x9b\xe6\x1b\xcb\x71\xaf\x8b\x68\x81\xcf\x83\x75\xf7\x03\x9a\x4b\x68\x27\xc4\x4f\x75\x4b\x6c\x5d\x5c\x05\x2c\x91\xf2\xce\xa4\xba\x94\x12\x97\x4c\xe8\xd8\x36\x2f\x1b\x00\x2a\x20\x03\xa8\x80\x16\x60\x03\x12\xc0\x0a\xf0\x5f\x20\xa1\xd6\x93\xc3\xb3\x3f\x4b\x8e\x6a\xe8\x58\x54\x78\xbe\x8d\xb2\xcb\xde\xac\x15\xec\x0f\x5a\x44\x3e\x7c\xf8\x19\xbe\xae\xd5\xd7\x5e\x8a\x17\x6b\xe9\x96\x6d\x70\xf2\x96\x92\xe5\x02\x8f\x16\xc6\x05\xe0\x01\x19\x80\x05\x30\x00\x39\xa0\x00\xf8\x00\x0b\x98\xa0\xc4\x91\x92\xb3\x67\x88\x5f\xab\x47\x98\xf7\x79\xd2\x44\x91\x7e\xfe\x52\xdb\x33\x40\xbe\xc4\x79\xc4\xf1\x68\xbf\x7d\x36\xec\x55\xc5\x9d\x38\xe9\x75\x60\x42\x2b\xfb\xc0\xe9\x42\x7c\x88\x48\x0f\x18\x00\x06\x40\x06\x88\x40\x0e\x88\x00\x6c\xc0\x0f\xa8\x91\x1d\x48\xac\xd9\x12\xc4\xad\x55\x67\xcd\xa9\x3c\xbc\x23\x23\xb2\x1f\x6b\xdd\xfb\xcb\x97\x10\x8f\x44\x20\x90\x83\x91\xc9\xf0\xfa\xbc\x74\x5f\xff\x34\x0b\x5c\xc5\x41\xbe\x2e\xaa\x19\x74\x03\xe0\x0d\x5e\x03\x44\x00\x0f\xc8\x80\x31\xe0\x01\xe8\xe0\xed\x9b\x68\xe2\x5a\xd6\x4d\xf1\x05\x35\x04\xb3\x11\x0f\xa5\x28\xe5\xcf\xdc\xb5\xf0\xfd\xc4\x8b\x3f\x8e\x88\x21\x90\x73\x30\x37\xda\x82\x99\x3d\x15\xbc\x60\xb3\xae\xfe\x41\xb4\x9e\x71\x0f\xaf\x1d\x4e\xea\x95\xff\x4b\x7d\x28\x5a\x80\x00\x70\xc0\x1b\x90\x09\xa5\x82\x54\x41\xfc\x8e\x25\x5d\xec\xbb\x6a\xb4\xb9\x95\x07\x55\xa4\xeb\xe7\xc6\xda\xb8\xfe\xf1\xa5\xb1\xc3\x30\x08\xe4\x9a\x66\xb9\xbb\x33\x33\x7f\x38\xbc\xc5\x29\x5a\x0f\x5d\xe6\x1d\xd7\x39\x95\x20\x96\x23\x02\x13\x72\x2e\x52\x10\x42\x0d\xfc\x25\xc2\x25\x62\xf7\x9b\x50\xd4\x09\x42\x2f\xe6\x72\xd1\x2a\xb5\x04\x33\x2b\x8f\xe6\x88\x9b\xec\x6f\xb5\xf9\x03\xd1\xcb\x58\x27\x91\x10\xc8\x77\xbb\x35\xe7\xde\x1f\x25\xda\x31\xe2\x1e\x05\xa6\x28\x2a\x95\xe2\xd2\xec\x46\x14\x8a\xd8\xa1\xf8\x97\xf8\x1a\xd8\xd7\x38\x49\x38\x9b\x78\xdf\x08\x9e\x49\x9e\xa8\xfa\xd9\x5e\x8a\x26\xa8\x40\x9b\x09\xb9\xb3\x47\xe1\x64\x37\xd4\xfa\xf6\xef\x2f\x13\x9d\x48\x42\x20\x0f\xae\x5b\x98\x43\xe4\x15\x07\xc9\xde\x01\x3d\x0e\x83\x86\x56\x8a\xfa\xa2\x34\x6c\xfe\x54\x2f\x68\x42\xa8\x0e\xa9\x24\xa8\x38\xa8\x11\x68\x99\xe8\x51\x99\x05\xb8\xe0\x85\x90\xa5\xfc\x54\xc3\x4c\x5a\xdd\x90\x23\xdf\x64\x9b\xd6\xe6\xf5\x43\x96\xbd\x8e\xe3\x21\x90\xe7\xfd\xbd\xf8\xb1\xe6\xba\xa3\xcf\x90\xe8\x26\x9f\x2c\xdb\x4e\x7d\x5e\x05\x7d\x51\x0b\x4e\x7a\x6e\x09\x8e\x02\x2e\x6a\x8e\x4f\x5c\xe4\xdc\x06\xfc\xe1\xc2\x4e\x92\x79\x72\x8e\x6a\x9b\xfa\x19\x36\x70\x9e\x38\x11\x6d\x59\x3f\xeb\x48\x06\x5c\x97\x26\x4f\xfe\xe8\x28\x8f\x62\xa7\xfb\x3a\xce\xcb\xf7\x32\xb2\x23\x66\xbd\x8c\x6c\x84\xf4\xbe\x2b\x9e\x49\x5c\x0b\x99\x89\xaf\x4b\x60\x88\xad\x4a\x8a\x4b\xb7\xbf\xb3\x52\xf8\xa0\x36\xa6\x77\x60\x2e\x65\xf7\xdb\x23\x36\x38\x3f\xe1\x5d\x1e\x7d\x75\x54\x1f\xf6\x42\xc2\xd1\x1f\x97\x9a\xb3\xe3\x55\xa9\x51\x8a\x96\xc9\x92\x9d\x34\x8b\x70\x3d\xcf\x35\x5b\x11\xc3\x12\xd5\x49\xb5\x51\x85\x69\xc5\x18\x95\x8f\x6a\xfe\x9a\x72\x3a\x2f\x0d\x35\xcc\xe4\xec\x04\x5d\x93\xfd\x03\x23\x7d\x92\xb5\x72\x08\x2a\xc8\x9a\x7b\x86\xf8\x17\x2c\x0e\xfe\xa8\x11\x7e\xe4\x1f\xb0\x2e\x42\x06\xef\x9a\x42\x8b\x1d\x53\xc7\x23\xa8\x7d\xb0\x1c\x4c\x4c\x9e\xb4\xe3\x0c\x2b\x0c\xb8\x8c\xb4\x4c\xde\x5a\x1c\xd8\xc8\xd9\x9f\xb9\x5d\xf9\x81\x4f\x74\x09\x45\x99\xfc\xc5\x70\xb5\xb2\x9d\xf8\x43\xbb\xf3\xba\x5b\xe9\xdf\xfe\xc1\x40\xd8\x76\xdf\xcc\x37\x0f\xc4\x34\x7e\x29\xee\x49\x6f\x8f\x86\x0b\x10\x70\x39\xb0\xee\xb6\x97\xb5\xcf\x71\x1c\x74\xaa\x74\xa5\xf6\x82\x0a\xf8\x10\x3a\x13\xe7\x92\xc6\x93\x37\x58\xd1\xd0\x5c\xd3\x63\x35\x11\xba\xd2\xb5\xeb\xf0\xed\xe0\xf1\x1f\xfe\xcf\x6a\x97\xb5\xdb\xa5\x73\xa7\x03\x41\xcd\x34\x65\xa1\xd9\x82\xf1\xef\x43\x47\x7d\xa4\xfd\x65\xfd\xe7\x03\x60\x82\x94\x43\x88\x23\x87\xe3\x43\x53\xb7\x3f\x67\x94\xb3\xd4\xf9\xb4\xff\x1c\xfe\x3a\xff\x61\x53\xea\xe8\xd3\x1d\x1d\xe4\x5f\x9c\x4d\x9e\xdb\x2f\x3a\xb6\x53\x17\x50\x86\x5f\xb6\x95\x54\x6d\xe4\x9b\xa5\x31\xc4\xcc\x87\x5b\xc7\xd2\xc7\x5e\x27\x14\x26\x4d\xa7\x55\x65\x97\x15\xad\x54\x49\xb7\xe8\xf4\xfa\x4f\x72\x2c\xf9\x6c\x0b\x9c\x3f\xdd\x9f\xfc\x27\x7e\x3f\x73\x5c\x8e\xef\xfa\x2c\xe3\x8e\x83\x6e\xb9\x86\xb1\xb2\xa8\xdc\xcb\x0c\xf6\xdc\x99\xdc\xbb\x3c\xfa\x22\xda\x0a\xd9\x1a\xdc\xa6\xb6\xce\xee\xe1\xb8\x39\xc9\x8d\xab\x7d\x83\x6b\xb2\x5f\x61\xff\x9b\x01\xfc\x9e\xfb\x7d\xf9\x14\xfe\xf3\xed\xdd\xc7\x6b\xd8\x6f\x77\x27\x4f\x07\x6e\xbb\x50\x5f\x8f\xd7\x3a\xbf\x60\x2f\xea\xcd\x96\xcf\x0c\xcc\x0c\xcc\xa6\x6c\x96\x1d\xff\xfa\xee\xf2\xdf\x19\xc8\x43\xf5\xc5\xd5\x25\xe2\x09\xcd\xc1\xe6\x6e\xc0\xa6\xf6\x6a\xd0\x72\xf4\xfc\xcc\x0c\xe1\xf8\x97\x91\xaa\xfe\xc2\xde\xdc\xae\xbe\x8e\xf1\x4e\xb4\x3e\xd9\x29\xc6\xb5\x83\x43\xf7\xbb\xff\xe2\x46\xfe\x73\xfd\xc4\x65\x3b\xec\xab\xf6\x97\xa4\xc5\xb3\x99\x89\x89\xb2\x11\xed\xfe\xaf\xbd\xec\xed\xab\xad\x7c\x0d\x38\x35\x64\x95\x26\xe5\xbe\xa5\xd0\xa5\xe1\x75\x72\xdd\x52\xe3\xe4\xab\x59\x07\x35\x77\xff\x31\x0d\xfb\xcc\x72\xd6\xba\x4e\x33\x57\x3c\xc5\x31\x6a\xde\xaf\xd4\x95\xd1\xe6\xde\x24\x52\xbb\x5d\x85\x58\x5a\x58\xa0\x94\x1b\x94\xad\x9c\x96\x94\xa2\x9e\x64\x92\xe4\x58\x10\x59\x79\xd5\xd5\x3c\x2e\xb7\x6a\x71\x2c\x70\xf7\x6f\x9f\xe5\x26\x7a\xd3\x74\x6a\x75\xe0\xb0\x7b\xb5\x05\xb3\x2e\xa3\x32\xa2\xc4\x3e\x7f\x22\xc7\x21\xa3\x26\x59\x3f\xfe\x36\xea\x63\x18\x4f\x48\x6f\x10\x99\x7f\x66\x68\x67\x12\x7d\xfe\x60\x0d\x42\xe7\xf4\x14\xf4\x1a\xfd\xb1\xfc\xfd\xf7\x7f\xee\x60\xf4\x50\x70\x5e\xa2\x2f\xa8\xf5\xac\xe6\x57\x71\x4b\xce\xaf\x4c\xc1\xe4\x9f\xf1\xa7\x51\xf2\x61\xd8\x81\x95\xbe\xfa\x1e\x1a\x2e\x49\x8e\xdf\xed\x97\xec\x9e\xdd\xc9\x43\xeb\x93\xd4\xf3\x86\x6b\x15\x7a\xdc\xa6\xf1\xbe\xda\x9f\xef\xfc\xba\xff\x8b\x81\x84\x6c\xb6\x8f\xe6\x37\x51\x57\x5e\xe4\x35\xa4\x55\xc6\xed\x47\x74\x84\x08\xfb\x6d\x79\xb1\xba\x50\xda\x9f\x58\xbf\x37\x33\xf8\x50\xa4\xff\x4d\x37\x50\x67\xd1\xfa\x8d\x3b\xf7\xa7\xd4\x94\xc9\x42\x48\x43\xf6\x10\xcd\x82\xe9\xae\xf2\xcd\x5f\xfd\xb1\x6f\x64\x0b\x39\xdd\x89\x65\xd5\xb9\x24\xc9\x4c\x11\xee\x01\xcf\x9e\xb3\x1f\xcb\xec\x8e\x2c\x4e\x8c\x5f\xe9\x0b\x69\x63\xaa\xe6\x2a\x84\xc8\x76\xbf\x15\x95\x8f\x32\x1c\xb5\xf5\xf4\x96\x89\x1c\x4f\xf7\x2c\x93\x6c\xcb\x1b\x9d\x5c\xcb\x39\xc5\x7a\xfc\xa3\xd0\x39\xc0\x9a\xaa\x6b\x94\xce\x47\x4a\xda\x0b\x33\xf6\xb1\xfc\x48\x6c\xfd\xca\xc4\x57\x2f\x5e\x53\x5f\x59\xf5\xbd\xbc\xd4\x67\x51\x0d\x41\x22\x5e\x7d\xae\x56\x09\x88\xaa\x9e\x31\x95\x13\x41\x80\x5e\xec\x52\x1e\x6c\xed\xdb\xde\xe6\xd9\xd4\x5d\xaf\xdb\x6a\x08\xe4\xd1\x75\x97\x76\xc4\xb9\x9a\x2d\x53\x20\x8a\xd7\x7b\xd7\xe1\xad\x59\xa9\xae\xa1\xda\x6f\xf9\x86\xb7\x3c\xa2\x94\x7c\xcc\x1c\xfb\xcc\x9d\xf4\xb6\xd4\xef\x68\x3f\xf3\x4a\xc8\x58\x68\x1a\x9a\xb7\xbb\xa9\x7d\x32\x4b\x59\x2d\xd5\x6e\x75\x1b\x27\x59\x13\x3e\x53\xf8\xe5\x78\x77\xba\xa1\xdb\xcb\x5b\x22\x96\x7c\x1a\xf4\xc5\x59\xd3\x64\x46\xdb\x47\xe1\x4a\x6a\x5c\xb8\x82\x07\x9a\xa5\x89\x0e\x8b\x7c\x9b\xe8\x35\x6e\x2d\xc6\x16\x89\x24\xcb\x67\xe1\x09\xf9\x9f\xfa\x07\x76\x87\x7e\xd7\xf1\x56\x79\xae\x75\xe7\x03\x0c\x8b\xb6\x07\x2f\xef\x23\xbf\x17\xae\x4e\x76\x96\xe7\xbf\x8f\x34\xff\x18\x6d\x2c\xa1\xc3\xac\xf0\x41\xc2\x9c\xd7\x95\x75\x81\x16\x85\x74\x1a\x8f\x03\x5d\x14\x49\xe1\x35\xe1\xcb\x75\x1c\x57\x1a\x4d\x9e\x24\x69\x4c\x4d\x76\x8b\x08\xf7\xc3\xf0\xbe\x8c\x9f\x15\x8b\x5d\x31\x53\x07\x5b\xc1\xd7\x6b\x37\x87\x4b\xe7\xad\x8b\x9f\xeb\x43\xca\x6c\x11\xf5\x9c\xdf\x9f\x48\x18\xf2\x04\x33\x4e\x53\xe4\xe0\x2f\xa2\x55\xc0\xf7\xbe\x0c\x06\xe4\x80\x09\x88\xa1\x62\x92\x72\xb0\xec\x88\x9a\x2a\x59\x7d\x90\x74\x3a\x0b\x86\x4f\xf6\x2b\xce\x6c\x9d\x1d\x1b\x58\x7f\x73\xfe\xf0\xdd\x62\x41\xb0\xe5\x29\xcd\xdc\xf7\xc9\xb2\x47\x6d\x58\x7c\x90\xa3\x9d\xa9\x82\xdc\x09\x57\x08\x79\xfb\x15\x27\x90\x04\xcc\x80\x0c\xbc\x01\x4c\x08\x6f\xf0\x89\xe8\x5c\xf9\x61\x64\x2d\x75\x5b\x6d\x5d\xfc\x24\x63\xf7\xf3\xd6\x1b\x17\x87\xda\x56\x60\x4f\x70\x6f\x6c\x16\x26\x1a\x23\x53\xc4\xfd\xed\x2d\x97\x55\x27\x44\xfc\x19\xa7\x89\x59\x70\x23\x90\x79\x61\xc2\xc0\x3b\x20\x04\x90\x00\x2b\xe0\x04\xb4\xaf\x90\x30\x31\x28\x99\xb9\xb0\xa5\xb6\x35\xd1\x2c\xdf\x78\xf6\x44\xb5\x7f\x96\xac\x65\xed\x57\x5b\x48\x38\xc4\xbe\x31\x9b\xab\xa8\x0b\xcf\x10\x0f\x34\xb4\x6e\x57\x2b\x12\xae\xa4\x27\xc0\x31\x42\x55\x86\xe9\x04\xf4\x80\xf7\xcf\x9b\x3f\x25\x60\x06\x28\x50\x99\x28\x19\x24\x0f\xac\xa7\xe2\xa6\xaa\xcb\xa6\xc5\x6e\xcd\xe1\x0b\x99\xec\x55\x26\xdd\xcb\xb3\x9b\x7b\xbf\xae\xed\xa7\xb7\x9b\xa6\xb3\x17\x43\x86\xec\xe6\x34\xc2\x45\x71\xe8\x1d\x30\x8f\x61\xb8\x81\x3c\x60\x05\xd8\x00\x0d\xd0\x01\x2a\x80\x00\xe8\x81\x00\xe2\x6f\x42\x2c\xa6\x63\x11\x0c\x65\x16\xe3\x80\x8f\xe3\xa1\xf8\x69\x67\x15\xec\x9d\x43\xb3\x50\xdb\x61\x57\xa7\xf3\xe5\x1d\xbc\x79\xca\xe1\x81\x4e\x5a\x3a\x82\x12\x56\x4c\x50\xd8\xe9\x2f\x51\x00\x3a\x40\x04\xc4\x00\x19\x60\xfd\x51\x72\xe0\x03\x58\xf8\x7d\x7c\x7e\x86\x22\xa1\x7a\x45\x95\x0f\xa8\xce\x07\xa1\xf2\xa9\xeb\x65\xc9\x9d\xa4\x53\xd3\xdb\x9b\x37\x5d\x5f\x22\x7b\xde\x17\xef\xc7\xdc\xb9\x36\x1a\xb4\xbe\x0d\x60\xfd\x4e\x28\x0d\xd7\x0b\x88\x01\x2a\x40\x00\xb4\x00\x0b\x08\x01\x06\x80\x09\xf8\xe0\x0a\xf1\xb2\xe9\x4f\x05\xdf\x2a\x30\x1a\x65\x38\x97\x06\xaf\xa7\xbe\x28\x0b\xef\x28\x9e\xce\xdd\x3e\xbc\x87\xfb\x1a\x33\x84\x58\xe9\x92\x48\xe1\x75\x6e\x02\xf5\xfe\x9e\x7b\x98\x82\x03\xa5\x07\xd0\x02\x4a\x80\x06\x88\x00\x29\xa0\x00\x38\x00\x1e\xbc\x79\xcd\x87\x8b\x4a\xe7\x24\x90\x2e\xdf\x6a\xc4\xe3\x34\x14\xc2\x9d\x02\x29\x57\xef\x84\x99\xba\xde\x61\xfc\x7d\xba\xb7\x36\x2e\x5e\x3b\x9f\xe6\xe0\x4f\x61\x89\xa6\x22\x2d\xf4\x89\x0e\x82\x23\x03\xd3\x05\x0c\x01\x1c\xc0\x06\xb8\x80\xfc\xcf\x89\x32\xc0\xbe\xc7\x11\xa3\x6b\x15\x20\x54\x50\x36\xcc\x71\xda\x0e\xde\x48\x7b\x5d\xb6\xd5\xa9\x32\x7d\xbb\x83\x09\x81\x1c\x77\xcd\x10\x35\x1d\x66\xab\x04\x4f\xd8\x13\x69\x55\x48\xd1\xb0\x93\x92\x08\x20\x2d\x03\x24\x80\x09\x50\x00\x32\x20\x02\xb8\x00\x1b\xd0\xbc\x42\xc3\xe6\xa7\x83\xe5\x1f\x96\x7b\x30\x5c\x75\x16\x0f\x4e\x4a\x35\x2f\xe3\xeb\x2a\x9e\x56\xdc\xf1\x81\x40\x2e\xb2\x16\x69\xdb\xd9\xf3\xd9\x23\xbe\xb8\x78\x18\x3e\xca\xfd\xe2\x8f\xa3\x71\xc6\xa2\x82\x99\x87\x09\x80\xd6\x7a\xd1\xf5\xc2\xe1\xe5\xc7\x97\x57\x30\x38\xb0\x8c\x58\x30\xb4\xc9\xfc\x64\x72\xc3\x86\x53\x4e\x7a\x21\xb0\xa9\x9a\xe5\x6a\x9d\xef\xa7\xfa\x77\x91\x20\x90\xdb\xf5\x55\xb4\x5e\xde\x12\xaa\x78\x2b\x1f\x2e\xcb\x4a\x75\x1d\xf1\x6d\x76\x2a\x72\x7a\x8c\x97\xc8\x04\x28\x41\x28\xc8\xc8\xf3\x28\x65\x68\xb8\xe8\x83\x58\xf0\x78\xdc\x54\x9b\x7c\xc1\xef\xa1\x0d\x8e\x1c\x43\x82\x43\x52\xe1\xcb\xae\x3a\xd7\x66\xac\x76\xae\x20\x90\xfb\xa7\xcd\xa5\xc1\xb0\x6a\x89\xb4\xd5\xe0\x45\xc7\x5e\xc3\x50\x45\x05\x91\x2c\x56\x7c\x72\x32\xbc\x2c\xc2\x23\x22\x28\xc2\x33\x62\x07\x52\x03\x72\x62\xaa\x68\x7a\x5d\xb6\x52\xc1\x78\xd9\x21\xbd\x67\x87\xc8\xa0\xc4\x94\x9b\x32\xa6\x4e\xd8\x69\xd8\x1d\x25\x08\xe4\x57\xd4\xde\x8b\xf1\xe3\x26\xe2\x5c\xc3\xe8\x9f\x3e\x3e\xb6\x9a\x7a\x25\xf2\x22\xc2\x07\x6c\xfe\xd4\x41\xf4\x1b\x0c\x82\x0c\x9b\x4c\x54\xcc\x91\x6c\x53\x5c\x46\xfc\x5e\xe2\x3f\x64\x2f\xd4\x5f\x19\xdf\xdb\x4d\x04\xe5\xa7\x32\x97\xe1\x76\x59\x4e\xff\xde\x59\xfe\xdb\x2d\x75\x1c\x36\xcf\xdf\x65\x59\xbe\x99\xe1\x13\x61\xe4\xd9\x62\xfd\x55\xf7\xab\x82\x94\x98\x04\x97\x1f\x6f\x28\xdf\x03\xbf\xb2\x60\xaf\x88\x8d\x58\xa8\x34\xeb\xfb\x4b\x55\x7d\x3d\x17\xb3\x7b\xfb\x19\x2f\xaf\xd0\xa7\xc4\x97\xc5\x59\x6d\x50\x33\x88\x3b\x7f\xf8\xc3\x45\xc8\x1a\xdd\xc8\x7d\x4b\x63\x49\x66\x1a\x71\x58\x99\xc7\x95\x8d\xb4\x01\x97\x72\x94\x54\x9e\xc8\xe6\x5b\x4d\x99\xe5\xf7\x84\x0a\x53\x2a\x64\x1a\x6f\x74\xbf\x9b\x32\xd8\x9d\xb9\xbf\x0e\x90\x8b\x48\x49\x0a\xcf\x4d\xa9\x22\x6a\xb3\xe9\x5c\x98\x16\xfd\xc3\x40\x48\x0f\xb8\x16\xdb\x07\xbb\x9b\x90\x8b\x1e\x53\x9e\xc2\x39\xbd\x56\xec\xe1\x3e\x5c\x69\xdc\x2b\xe0\x68\x3c\x6a\xc1\x69\x2b\xe8\x7f\x31\x3a\xb1\x24\xb4\xc3\x71\x23\xf6\xfb\x16\x0e\x17\x3f\x95\x25\x54\x22\x54\xe3\xd3\xae\x30\xfa\x62\x21\x6b\xf9\x2f\x0d\xc0\xf5\xd1\xce\xfc\xbc\xe4\x00\x5e\x23\x59\xd1\xcf\xb4\x8e\xc8\x21\xbf\x52\xe7\x38\x4b\x7d\x83\x13\xf3\x0d\xf3\x13\xeb\x38\x3b\x76\x67\x25\xd7\x1d\x5f\xd6\x50\xb7\x38\xed\xd4\x8f\x05\xe4\x55\xf8\x4d\xcf\xfd\x11\x53\xd0\x2b\x41\x7b\x96\x57\xfa\x7f\xc1\x0e\xc6\xa5\xd3\x36\xdf\x9c\xc8\x00\x4c\x93\x6f\xa9\x56\xe6\x75\x1c\x74\x08\xbb\x67\x93\x33\x9e\x47\x98\xfb\x88\x37\x91\x6f\x6b\x20\x7c\xa8\x5f\xd4\x78\x5a\x70\x2e\x79\xc9\xb7\xba\xcb\xae\xd4\x51\xfb\xf9\x99\xaf\xb6\x27\xd6\x3f\xfe\xa5\x0e\xf1\x4c\x71\x61\xbd\x75\x3d\xaf\x3c\xc4\xd3\x6a\x59\x99\x94\x47\x9b\x52\x1d\x8d\x1b\xc2\x16\xf8\x14\xde\x11\x19\x1e\xeb\x9e\x28\x9b\x92\x94\x43\x59\x42\x51\xa3\xd0\x86\x3b\x88\x37\x35\xf4\x05\x7a\x8f\xfe\x32\xfc\x91\xff\xdf\xf1\xf7\xd7\xc5\xa5\xfe\xce\xe3\x12\xf7\x68\x6b\x17\x5f\x3d\x7d\x29\x59\x8e\x61\x6a\x75\x12\x66\x96\x67\xd6\xab\xcf\x50\xc9\xe1\x25\xc7\x35\x62\x2d\x2e\xbd\xee\x63\x69\xf3\xdf\x67\x21\x27\xec\xb7\xef\x7e\xb4\xff\x27\x03\x78\x6a\xb8\x85\xbd\xa3\xbd\x98\x38\x4b\x38\x66\xdb\xaf\xdb\xf6\x5e\xdf\xfa\x62\xb4\x30\x3e\x5b\x3b\x9d\x3d\xde\x39\x12\x37\x5c\x38\x70\x35\x6c\xb2\x28\xb5\x33\xf5\x0d\xea\xd1\xf7\xbf\x31\x90\xfb\xdc\xd3\xd3\xdd\x98\xdd\x90\xcd\x88\xb5\xe6\x25\x85\xb9\xd8\x69\xf2\x71\x86\x41\x9d\xde\xfb\x6e\xb8\x76\xbe\x16\x98\xc6\xee\x7a\xe9\x3a\xcc\x26\xf7\xc1\xef\x73\x06\x9b\xb9\x27\x67\x0f\x32\xff\x2b\x9e\xf2\x68\x78\x6d\x72\x81\x7f\x6e\x72\xb2\x6d\xe4\xbc\x3f\xb2\x67\xa8\xdd\xb1\xe9\xbc\xde\xb9\x9a\xa0\x7c\xa2\xf8\x63\xc1\x58\x2e\x55\x4e\xf3\x67\xbd\x92\xc8\xc6\x9f\x7d\x0b\xd3\x6a\x9b\x85\x67\x14\x0f\xfd\xff\xb6\x7f\x91\x93\xd3\x55\xd6\x89\xf8\xfe\x9a\x9e\x93\xf6\xa2\x66\xc7\x7a\x92\x8a\x91\xd2\x0f\x05\x44\x9f\x7d\x32\xd6\x52\x7e\x26\xfe\x8e\xfd\x19\xf9\x14\x59\x19\x85\x91\x4e\x52\x68\x53\x37\xd0\xf7\x76\x16\x6e\x03\xf1\x5c\xfc\xb1\xef\x7f\x32\x5c\x58\xaf\xb7\x4f\xcc\x74\x79\x37\x5e\xd5\x6a\x97\xe3\x17\x2e\xe6\x14\x66\xda\x27\x17\xc6\xf7\x45\x65\x87\xc1\x04\x3b\xf8\x13\xfb\x60\x7a\x98\xba\x15\x7b\xbd\x08\x5b\x4d\xf9\x58\x74\xd7\x80\x3b\x40\x3a\x6b\xf4\xf5\xdd\x45\xd9\x3f\xb4\xa4\x4f\xe2\xfb\x26\xb3\x3c\x5d\x8d\x75\xe1\x65\x5c\x79\xde\x69\x1f\x92\x70\x63\x94\xc2\x05\x83\x57\x7d\x61\x3c\x8c\x5c\x58\x1c\xd3\x6c\xcd\x2d\x6c\xcd\xf2\x8d\xc7\x6c\x0e\x7d\xa8\x23\xfd\x32\x68\x4a\x7d\x9a\xce\x87\xf5\x16\x16\xf7\x44\x6f\xfe\x62\x94\x57\xe9\x5f\x3c\x07\x73\xeb\x3a\xf2\x52\x32\x76\x13\xd4\x22\x4a\x82\xa8\x7d\x5e\xb9\x09\x38\x23\xd9\x36\x58\x60\x7d\x18\xd2\x3b\xd4\xf6\x56\x43\x54\x99\x54\xa2\xfb\x40\x6b\x2f\xe3\xdb\x1a\xdd\x9a\x35\x5d\x51\xd6\x91\x38\xfe\x6b\x15\xe7\x94\xe7\x91\xe7\x6f\x19\x8e\xae\xe6\x88\x3b\xf6\x8a\xa7\x92\x1b\xa2\xe9\x83\xda\x3d\x9f\x9c\x32\x6c\x4a\xcc\x55\x8d\x1c\x75\x8e\xd5\x55\x15\xbf\xc8\x5a\x49\x87\x8a\xc5\x89\xbc\x92\x30\x56\x9b\x33\x86\x38\x6b\x05\xb2\xc7\x73\xe6\x0e\xd4\xbe\xef\x4d\x9f\xdb\xdd\x71\xbe\x91\x85\x40\x9e\xad\xf7\xf8\xc6\x3f\xd5\xf6\x65\xac\xc4\xf0\xf9\x3f\xba\xc2\x5b\x8f\x98\x68\xe8\xb6\x68\x88\x28\xec\xbf\x33\x90\x94\x12\x52\xe1\x7d\xcb\x89\xcd\xfc\x9b\x61\x99\xff\xcd\x7b\x5a\xed\x13\xcb\x12\x8f\x8c\x4f\x21\xe9\xc9\x65\x4c\xad\x41\x13\xce\xab\x99\x67\x0e\xbf\x7a\x7e\xd2\xac\x8f\xf6\x93\x95\x78\x25\x7c\x0a\xb5\x71\x8b\xb0\x32\x34\x18\x53\x2f\x90\xd7\x93\x5a\x14\xa9\xe7\xe5\x64\x1f\x67\x14\xa0\xa6\x25\xcb\x25\x4c\x21\x9a\x62\x45\x14\x7d\xa7\xf4\xd6\xe8\x83\x03\xad\xbf\x7d\xdc\x5c\x9e\x74\xdd\x50\x3f\xfb\x82\xe5\xde\xea\x0f\xc3\x5b\xb6\x55\xca\xce\x85\x02\x8b\x68\x1c\xf7\x29\xf3\x7d\xc3\x37\xca\xd3\x32\x2c\xc2\xe9\x3c\x8d\x2c\x69\x34\xdf\xc8\x26\xf1\x1b\x31\x55\x51\x58\x11\x3c\xb0\x94\x69\x56\x79\xd2\xa5\x07\x35\x66\xcc\xdb\xdd\x8b\xc2\xb5\x33\x5a\x2b\x88\x3b\x02\x27\x77\xbe\x52\x5d\x4a\x5c\xec\x2f\xce\x34\xcb\x66\x53\x04\xe7\x39\x2e\xea\x63\x2a\x88\x49\x67\x0b\xf8\xb1\x3b\xd2\x25\x90\xee\xe2\x9e\xa1\xf1\xc1\xaf\x41\x5b\x03\x34\xa0\x8e\x8c\x42\xd2\xc6\x12\x29\x32\xa6\xd8\x66\xa4\xe9\x84\x1a\x48\x95\x58\x58\xc4\xd9\x8c\x33\xc2\xbe\x4a\x73\xa6\xfa\xed\x6a\x7a\xa6\x4e\x3b\xd5\xd9\xfb\xda\x62\x4c\xdd\x4e\x12\x8d\xc7\x82\x95\x81\x3a\x98\x70\x0e\x63\x01\xc1\xf4\x25\x23\xd0\x01\x6a\x00\x1d\x28\xc0\x69\xe3\x4e\xd1\x76\xf3\x9c\xbe\xb3\xd7\xc9\xb6\x5e\xf0\x19\x88\x49\xcf\x7d\x59\x07\xdb\xdf\xb7\xd8\x7a\x88\x73\x26\x3e\x95\x53\xbd\x9d\xf8\xc2\x7b\xc4\x7c\x56\x05\x4f\xf8\x84\xa9\x85\x1c\x9d\x80\x0e\x0d\xfa\xf5\x77\x40\x0e\x84\x00\x0d\x20\x04\x94\x40\xfa\xe5\x21\x7a\x09\x79\x14\xbb\xba\x04\xbf\x3a\x86\x99\xa2\xdb\x42\xb8\x4b\xe6\x60\x15\x41\x77\xfd\x6c\xc5\xae\xc2\x49\xc7\x64\x53\x65\x5e\x12\x93\x2f\xbb\x05\xbf\x72\xaf\x10\x13\x9d\x32\xae\x34\x5a\x23\xec\x11\x30\x06\xf8\x00\x05\xc0\x02\x32\xc0\x04\xd8\x01\xe7\x1b\x37\xc2\x5b\xa6\x42\x11\x19\x25\x49\x63\x86\x8f\xde\x21\x13\xa9\x7b\x65\xb1\x1d\x08\x93\xd7\x5b\xe3\xc7\xf9\x63\x6e\x35\xee\x69\x14\x01\x50\x56\xea\xaa\x1b\x42\xe9\xb4\x42\x18\x63\xb0\xd4\xc0\x16\xbc\xfe\xc3\x5e\x24\x00\x1b\x40\x05\x04\x00\x17\x9e\x07\x37\x82\xce\x9d\x7f\x46\xae\xca\xa0\xd8\x21\x36\xb0\x23\x69\xaa\xe8\xb2\xf5\xd7\x78\xe2\x86\xce\x11\xed\xa4\x7a\xc3\x79\xe6\xef\xe0\x08\xbb\x08\x0d\x1d\x51\x1a\x7a\x41\x4c\x5f\xb0\x01\x48\x00\xf6\xdf\x10\x1b\x10\xfd\xd9\x09\x2a\xa0\x7f\xc5\x87\xf9\x4c\x2d\xc1\xb3\xfe\xee\x83\x6e\x98\x1d\x86\x7f\x54\x42\x74\x21\x57\xd3\xd5\x18\xfc\x9a\xda\xd9\xce\xec\x78\x9b\x45\xae\x4c\xf8\xb6\x93\xac\xce\x27\x49\x2c\xa6\x27\x3c\x05\x58\x5d\xf0\x1a\xf0\x03\x6c\xc0\x0b\x08\x01\x3a\xc0\x06\xe4\x00\x07\x5a\x1c\x43\x9d\xe2\x27\xb7\x99\x8c\xa7\xf6\xad\x2d\xb7\xdf\x59\xbc\x74\xc1\x58\xb3\xda\xc8\xe1\xba\xea\x15\xf2\x0a\x7c\xd7\x59\xd1\x53\xcc\x6b\x37\x33\x83\x43\x99\x1a\x0e\x1b\x92\xad\x37\x84\x80\x0b\x90\x02\x32\xc0\x02\xde\x02\x6c\x40\x09\x30\x01\xe6\x8b\x0c\x74\x77\x0a\x42\x2e\x97\xb7\x92\xda\x25\x36\xa2\xbe\xe5\x71\x23\xf9\xaa\x8d\xcb\xa3\xfc\xab\x33\x77\x67\x1b\x67\x03\xe2\xe5\xdb\x89\xb5\x5e\x51\x26\x2b\x0a\x7a\xfc\x56\x34\xda\x98\x7c\x2f\x6e\x00\x09\x40\x07\x08\x80\x0a\x90\x03\x62\x40\x00\x10\xa1\xf8\x51\x87\xc8\x23\x39\x05\xa5\xa5\xb5\x51\xac\x71\x7c\x55\xe2\x6c\xf3\x5b\x9b\x58\x47\x4c\x56\x0d\x7f\x91\xee\x64\x8c\x59\xd5\xf2\xa5\x11\xfa\xe7\x5a\x15\xaa\x67\x88\x75\x33\x1b\x10\x0a\xc0\x77\x02\x6e\x40\x06\xf0\x00\x3b\x80\x03\xe4\x00\x11\xa0\x03\x76\xd4\x57\x64\x3a\x9c\xd8\x52\x0b\x5a\x1f\xac\x4b\x7d\x1a\xe2\xb4\x0b\xf2\x9b\x44\x46\x90\x56\xd7\x21\x90\xa3\x8a\x69\xdc\x26\xa1\xac\xb3\x50\x51\xc7\x15\xbd\x99\x77\x08\xdc\x73\x14\xdb\x68\xe9\x20\x02\xc0\x02\x4c\xa0\x04\x88\x00\x21\x70\x05\x64\x40\x1c\xd9\x9d\x34\x9e\x03\x5e\xea\x51\xf3\xa3\xb5\xac\x4f\x4d\x2c\x65\x01\x54\x53\xd2\xa8\xc5\x1a\x80\x40\xbe\x51\xce\xef\xb6\x67\xe7\xc7\x44\xf7\x7a\x00\xd3\x10\xe5\x4a\xe1\x73\xc6\x60\x7c\x0f\x38\x56\x40\x07\x50\x01\x0a\xc0\x07\x62\x00\x0d\xf0\x03\x39\x64\x5d\x52\x25\xb6\x23\xa9\x18\xcd\x40\xab\x16\x1f\x86\xd8\xb1\x7c\xcc\x66\xf6\x51\xeb\xd5\x25\x08\xe4\x86\x7c\xe5\xae\x47\xa7\x5c\x20\xa9\xd5\x7f\xcb\x76\x4c\x7b\xe6\xad\x23\x57\x1d\x45\x10\x3a\x16\x8c\x16\xac\x3f\x2c\xec\xab\x45\xd8\x1a\x38\x56\xb8\x45\x84\x2a\x64\x01\x62\x65\x36\x71\x89\x56\x8d\x4a\x2b\x69\x1f\xa5\x58\x98\xfc\xf2\xa6\xdd\x11\x89\x75\x0c\x08\xe4\xc7\xe9\xa6\xcd\x70\x6e\x9d\x44\xd6\x4a\x78\xb0\xcb\x93\x49\xbd\x52\x94\xc8\x0c\x4b\x15\x69\x01\xfa\x3a\xc6\x25\x86\x22\xa6\x24\x56\x01\xf6\x09\xae\x1f\x01\x21\x49\x01\xd5\x26\xeb\x85\x04\x92\xda\xae\x15\x9a\xb7\x68\x6c\x4a\x7e\x41\x93\xe3\x28\xda\xfa\x28\x04\xf2\x78\xb5\xd7\x38\x35\xde\x3a\x59\xc8\x91\xe0\xe5\xd7\x6c\xdb\xa5\x77\x22\x2f\x2d\x2c\xca\x72\x4a\x5e\x44\x5e\x4f\x26\x46\xfe\x85\x72\x9d\x86\x91\x4e\x80\xe1\x2b\x1b\x31\x8f\x8c\x88\xcf\x3b\x0c\xb5\x06\x73\x46\x6f\xa9\x98\xc0\x5c\xb1\x26\x96\xe1\xe4\xf5\x3f\x1a\xc0\x93\xfc\x25\xeb\x3e\xcc\x2a\xc9\x4c\xe2\x88\x5a\x2f\x5a\xeb\x08\xdd\x8f\xf2\x94\x22\x99\xec\x1d\xf4\x65\x2c\x02\x6c\x3b\xec\x6c\x5c\xc9\xbc\xa3\x82\x57\xe2\x14\x32\xab\xca\x45\x3a\xd6\xc6\x7a\x76\x23\x9e\x50\xfe\x5e\x09\xb7\x4d\x12\x43\x4b\x6b\x73\x7f\xb0\xff\x70\xa3\x7b\x4c\xba\x15\xad\xe4\x73\x1a\x42\x58\xb3\x47\x92\x75\xba\xfe\x2b\xc5\x29\x89\x70\xbe\x32\xe1\x30\x51\x02\x71\x65\x29\x63\x19\x3a\xb9\x4b\x55\x5d\x1d\x38\xe3\x2d\xeb\x5c\x57\x78\x5f\x82\x4f\x85\x89\xc1\xa9\x77\x45\x65\xad\xa1\x13\x7f\xf6\xf0\xf3\xf0\xa0\x67\x49\x6e\x30\xbd\x89\xb9\x68\x28\xa5\x21\x2c\xcf\x0b\xd8\xde\x19\xa1\xa8\x85\xc9\x4a\x29\x5c\x2a\x91\x28\x3d\xa8\x9b\x68\x3e\x18\x26\x9b\xd6\x58\x23\x7f\x54\xf2\x29\x08\x7d\x8e\xb3\xce\xd8\x2b\x08\xa9\x99\xaa\x3f\xee\xc1\x9e\xff\xab\x76\x7e\x3d\xb5\xf3\x63\x9e\x73\xe0\x55\x23\x5a\xd1\x75\x1a\x5f\x24\x8c\xaf\x84\x13\xaa\xd9\x2f\x3d\x79\x03\x3f\xc3\xfb\x0f\x5b\x66\x74\x16\xa6\xb6\x8b\x2e\xca\x3e\xe2\x21\xd7\x31\x6f\x52\xe3\xf2\xf8\x2b\xd2\x5a\x28\xfb\xae\xc7\xb1\x67\x57\xd6\x71\xfe\x9e\xe1\xf7\x8f\x4b\xdd\x6d\xcc\xd9\xfd\xfe\xfa\x26\xae\x52\xb4\xcc\x77\x31\x37\x41\x46\xee\x87\xf6\x39\x36\xc8\x4e\xc8\xce\x30\x6e\x18\x9e\x72\xfe\x50\x9f\x22\xa2\x5d\x93\x9f\x73\xf2\xcb\x08\x1a\x35\xbb\x6c\xc7\x7c\x16\x09\xb6\xd5\x4f\xe5\x7f\xe4\xff\x93\x81\xf0\x5c\x90\x6f\x55\xce\xad\x0c\x3e\xb6\x64\x57\x74\xe4\x74\x25\xa7\x47\x2a\x05\x4e\x79\xb9\x06\x86\x7a\xa7\xfa\x74\x45\x86\xc7\x91\x45\x0b\x65\xdf\x67\x51\x15\xcd\xb6\x9b\x0f\x71\x0d\x09\xad\x1e\x1f\x86\x1e\xf5\x3d\x63\x40\x2e\xfe\x85\x81\x24\x5d\x7c\xdf\x29\x59\x2c\x1d\xe5\xe9\xc4\xac\x53\x2b\xc1\xcc\x56\x4f\xa1\x89\xa1\x8a\xa4\x8b\x4c\x8a\x8a\x89\x5b\x2a\x80\x7c\xee\x2c\x46\x6f\x63\x6a\x4a\xeb\xb6\x58\x19\xdd\x39\xd8\x72\x3b\xfb\xf5\x9f\x0c\xe0\x31\xe3\x8a\xe0\x28\x61\x0f\xb2\x6f\xbc\x15\xbc\xfe\x6b\x15\x76\x21\x78\xba\x73\xc2\x62\xb8\x7c\x40\xb7\xa7\xaa\x33\xb9\x3d\xbc\x0d\xa9\x2d\x6f\x44\x73\x71\x7f\xcf\xe9\x22\xea\x17\xe1\xff\x66\x20\x3f\x5c\x4f\xec\xbe\x86\x2d\xad\xcd\xe7\xcd\xf6\x4c\xa6\x8e\x7e\x19\xbc\xea\xb1\xed\xa0\x6a\xe5\x6a\x44\xac\xa5\xaa\xf4\x2c\x9b\x2e\xa5\x2c\xe2\xaa\x14\x6e\x49\x18\x96\x5a\x40\xd8\x0e\xbf\xa0\xfa\x55\xf4\xef\xf1\xdf\xab\x0f\xd9\x57\x49\xa6\x1c\x87\x04\x07\xab\x7a\x7e\xb5\x3b\x37\xdd\xd7\x2d\x55\xf3\x97\x89\x15\x21\xe7\xe9\x65\x15\xa7\x5d\xa5\xf8\x24\x0d\x27\xc8\x66\x93\x95\x19\xb5\x88\x0d\x89\x2e\x10\x6d\x25\x5e\x96\x3d\xf3\xfc\x4f\xfc\x4f\xd9\xa3\xf9\x95\xc0\xb1\xf2\x2e\xc1\xa6\x9f\x0d\x05\x35\xf8\xa5\xcf\x85\xd9\x39\x2f\x33\xf6\x92\xa7\x12\x02\x63\xb4\x23\xa0\x43\x6a\x03\xd7\xfd\x8f\xfd\x41\xcc\x48\x56\x7a\x05\x74\x8b\xd7\xd0\xfc\x62\xce\x5e\xcd\xdf\x1d\x8f\xfe\xbe\xce\x4f\x57\x87\x46\x17\xdb\x11\x2a\xaf\x8b\x30\xf2\xaf\xb3\xc2\x53\x09\x13\x4d\xa2\x31\xc2\xe1\x83\x70\xfc\x58\x3c\x7f\xbb\x2c\x39\x23\xd8\x0f\xda\x36\x38\x22\xfb\x5b\xc5\x4c\x67\xed\x97\x8f\xb4\xa5\x8e\xe4\xac\xdc\x1d\xbe\xff\xfe\x57\x45\xe7\xc7\xfe\xee\xf4\xb4\x6b\x27\x4c\x45\x44\x4e\x7c\xfa\x53\x42\x6d\xe4\xc6\x27\xa2\x80\x41\x2f\x2d\x97\x65\x07\x37\x1b\x3b\x0b\x14\xe3\x2f\x06\x1e\xba\x2e\xda\x47\x66\x4c\xae\x36\x81\x5c\x71\xe5\x39\x7d\x55\x51\xdd\x28\x13\x07\xeb\x31\xa7\x66\x4f\x7f\x7c\x2c\xce\xe7\x97\x07\xfa\x9b\xab\x91\xb2\xf9\xe3\x8c\x22\x64\x03\xcf\xbd\x8a\x5c\x74\xec\x2d\xad\x32\x4d\x34\xf4\x4f\xb5\xec\x54\xaf\x95\xb0\xe5\x28\x64\xe2\x64\x34\xb5\x42\xcd\x2f\x5c\x53\x82\xcf\x12\x1e\xf2\x43\xea\xd7\xfb\x03\xe6\xda\x77\x45\x6f\xc9\x21\x10\xc8\xc3\xa1\xe9\x8c\x61\xab\x58\xee\x42\x3c\x4c\x90\xb2\xb7\x8a\xf3\x86\x2d\xa6\x69\x91\x81\x8a\xd6\x7b\x95\x4f\x72\xc5\xd2\xf3\x62\x95\x42\x3a\x7c\x2f\xb9\xea\xf9\x13\x65\x83\x75\x6c\xad\x02\x3c\xcc\xc3\x2c\xd3\x85\x4a\x79\x5a\x25\x47\xf7\xd7\x5f\x9e\xc1\x3f\x05\x3c\x70\x6f\x9a\x0e\xf7\x54\x72\xa5\x22\x86\x44\x7b\x6a\xdb\x55\x98\x06\xea\xb2\xa8\x8b\xca\x07\xc9\xc0\x88\xce\xf1\x4f\x70\x8e\xb3\x7c\xa2\x0f\xa3\x7a\x22\x6f\x65\x09\x14\xd3\x50\x3e\x37\x02\xf6\xbf\xfd\x9a\x63\xfd\x72\x6a\x6b\x6f\xfb\xd6\xe7\x96\x76\x57\xee\xf6\x6e\xda\x57\x34\xbb\xaa\x0a\x1e\x62\x11\x7c\xcc\x6c\x84\x8d\xd5\xb4\x54\xe5\xf3\xa4\x51\x84\xbb\x78\x39\x58\x9b\xe9\xee\x29\xdc\x89\xca\x70\x6b\x30\xec\xd1\x6f\x69\x84\x78\xb9\xdf\x3a\x6b\xf6\x9b\x3b\x7a\x68\x84\xbd\x4b\x2f\x28\xff\xd4\x61\x31\x01\xf5\x95\xf1\x22\xea\x7c\x63\x5e\xb4\x19\x33\xe3\x3a\x14\xd6\xe9\xd4\x88\x49\x79\xff\x7d\x84\x28\x13\x0f\x84\x25\x8d\x76\x81\xd4\x14\xaf\x0c\xed\x14\x11\x02\x1b\xf1\x82\x1f\x71\x88\x84\x89\x05\x41\x54\x4e\xe1\xda\xd0\xcb\x61\x2b\x60\x3e\xe1\xbe\x00\xa3\x91\x75\x70\x7f\xc5\xfc\xe4\xe5\xa9\xc8\xcc\xa7\xfa\xb8\x94\x37\x7e\x12\x56\x12\x1a\x2c\xd2\x0d\x82\x04\x9c\xec\x0c\x12\xe4\x4c\x78\xd8\x68\x78\xf0\xe2\x2f\x02\x01\x23\x10\x07\xac\xaf\xb6\x70\xc6\x68\xb5\x78\x76\x64\xf2\xb5\xf2\xad\x3a\x3c\x6f\xa2\x6a\xb2\x87\x6b\xe0\x7b\xf9\xe7\xd6\xf7\x46\x0e\x9e\xc7\x02\xca\x7f\xc5\xf5\x78\x8e\x9a\x69\x29\xcf\x88\xc4\xb2\x09\xd1\xcd\x92\xbc\xc6\xa2\x43\x92\x7b\xd9\x01\xd4\x01\x3b\xc0\x01\x94\x40\x10\xea\x1d\x9a\x20\x99\x16\x9b\x9d\x58\xab\x8a\x97\x89\x89\xcb\x70\x68\x7f\x9a\x74\xd9\x73\xc7\xe0\x34\xeb\xb6\xd9\xee\xd6\xb0\x61\xa9\x7b\x3c\x8a\x67\xbb\xe9\xa9\xe2\x9d\x20\x1c\x5d\x2a\x81\x18\xc6\x03\x02\x26\x94\x14\x90\x01\x22\x80\x1c\x88\x01\x0a\x80\x07\x68\x90\x30\x09\x0c\x18\xf4\x05\x3f\xca\xa3\x19\x42\x3b\xb8\x04\x99\x27\x8d\x15\xf9\xb6\xfe\x18\xc3\xdc\xc0\xdb\x9f\xeb\xbf\xa9\xa0\x4d\xf8\xe6\xc3\x6a\xb6\xaf\x44\x2a\xe0\x44\xbd\x8e\x51\x03\x27\x00\x96\x81\x2a\x80\x05\xd4\x00\x19\x90\x03\x0c\x00\x07\xc8\x60\xe3\xb0\x53\x69\x5e\xf3\xa8\xbf\x53\xd5\xf1\xb3\xb9\xf6\x35\x88\x1d\x2d\x80\x6d\x74\x1d\xa1\xf9\xa2\xb7\x83\x3c\xa2\x55\xf5\x9c\x62\xed\xcf\x65\x69\xaa\xd2\x21\x84\x4c\x53\x8d\x9e\x07\xb8\x01\x22\xc0\x02\x02\x80\x1c\xa0\x00\x34\x40\x06\xa8\x01\xe5\x4b\x57\xb4\x1d\x72\x7a\x0e\x0f\xc9\x45\x8d\x03\xcb\x07\x2f\x8a\x68\x89\x9c\xcf\xf5\x1c\x03\x16\xcb\x92\xbb\x9a\xe3\x5f\xea\x8d\x32\x09\x83\x12\x6d\x0b\x34\x0c\xc5\x90\x18\x2c\x70\xa0\xa1\x4b\xc1\x47\x40\x00\x50\x01\x39\x60\x03\xe8\xe0\xcd\x9f\x7a\x90\x20\x32\x3b\xb1\x33\xab\xae\x78\xaa\x6a\x93\x59\x86\xbb\x48\x24\x7e\x96\x59\xcd\x51\xdf\xd0\x22\xdb\xb1\xd9\x0c\x43\x2b\x66\xae\x68\xd8\xa9\x53\x87\xee\x2b\x29\x5d\xd6\x3c\x22\x41\x04\x7f\xc0\x07\xd0\x01\x12\x90\x02\x8c\x80\x04\x10\x02\x16\x80\x02\x30\x91\x48\x88\xe4\x99\x9b\x45\xb7\x55\xc6\x4d\x35\xdd\x11\x22\x82\xb3\x3a\xaa\xef\x7b\xe1\xe7\xef\xbe\x95\x2f\x05\x76\x6e\x15\x7d\x8a\xe9\x72\xb3\x31\x9c\x7c\x4f\xc7\x93\x4d\x29\x89\xf6\x15\xe4\x01\x66\x40\xf8\xe7\x1c\x70\x01\x07\x10\x03\x58\x40\x14\xe1\x9e\x60\x9d\x99\x54\x24\x44\x45\xc1\xd4\xd7\xcd\x2a\x3c\x21\x4b\xb7\x3a\xb7\xe7\x61\x41\xe9\x16\x75\x6d\xbc\xdf\xb7\x82\x3e\xd1\xc9\xdb\xd5\xdc\x48\xf9\x41\xb8\x93\x21\x0f\x8f\x16\xf6\x01\xbc\x01\x48\x80\x14\x20\x01\xee\x3f\x95\x08\x42\xc0\x0e\x5f\x83\xbf\xcc\x58\x21\xa2\xa9\x1c\x65\x32\xec\x26\x1b\xae\x9e\x59\x5a\xf5\xa6\xd7\x78\x3e\xe5\xc1\x78\xdb\x66\xf4\xa0\x56\x37\x1d\x36\x90\xc3\x0e\x49\x3b\x4b\xea\x90\xc3\x9b\xf4\x1e\x39\x17\xe0\x01\x2c\xc0\x09\x70\x01\x3a\xc0\x01\x70\x80\x1a\xa8\xc2\xe5\xe1\x8d\x30\x2a\x0b\xf7\x2a\x3d\x98\x7c\x72\xc3\x0a\x37\xcc\xd4\xaf\x3a\xeb\xe3\x5e\x44\xfa\x5d\x70\xa8\x3c\xe5\xdd\xd4\xf5\x59\x33\xfc\xc2\x45\xc6\xe8\xb3\xfc\x89\x80\x20\x1d\x1d\x0e\x1a\x4c\x36\x60\x05\x54\x80\x01\xc8\x03\x06\x20\x01\x78\x81\xc4\x6b\x1f\xbc\x42\x06\x42\xa1\x3e\x65\x1e\x13\x3c\xd7\xa3\xb0\xbe\xcc\xb1\x2a\xd1\xbe\xb5\x85\x18\x08\xe4\x7c\x73\x3e\xb2\xfd\xa6\xc8\x26\xee\xd9\x87\xdd\x4a\x53\x03\x5d\x62\x88\x8d\x94\x24\xe1\x4d\x2a\x90\x01\x2c\x00\x01\x30\x03\x06\x80\x08\x50\x01\x15\xac\x2e\xce\x08\x7d\x85\x90\x98\x62\x82\x31\x93\xab\x53\x98\x49\xa6\x42\xd5\x76\xef\xf6\xdc\x28\x04\x72\xcd\xfa\x85\xb3\x6f\xaa\xf2\x21\xdd\x28\x04\xda\xc9\xd9\xc0\x40\xce\x8a\xbf\x86\x96\x1f\x3b\x0e\xa6\x0f\xb8\x00\x26\x20\x02\xe8\x00\x25\xc0\x05\x47\x30\x1b\xd8\xa5\x74\xbf\x05\x19\x15\xbc\x3e\xb0\xbb\xc4\x85\x87\x67\x86\xd5\x68\xf4\xfb\x2e\x52\x41\x20\x3f\x48\xbe\xca\x8f\x71\x37\x8e\xe7\xbe\x8e\x4e\xf1\x82\xb6\xe8\x56\x17\x94\xc4\x66\xf7\x22\xbd\x43\xa3\x80\x33\x86\x9f\x43\xc8\x46\x7a\xf5\xc6\x16\x45\x06\xf5\x0c\xa3\x0f\x57\x8b\x66\x9e\xef\x5c\x41\xd9\x88\xfd\xa3\x49\xd8\x6c\xba\x4d\x95\x63\x8f\xdb\x42\x0d\x04\xf2\x94\x7e\xe0\x38\xdb\xdf\x39\x57\xc6\x99\x62\x11\x14\xec\xb8\x6a\xa8\x27\xdf\x2a\xac\xcc\x22\x4a\xda\x84\x69\x80\x73\x82\x3b\x87\xb7\x40\x18\x48\x92\x47\xe6\x41\x95\x46\x0f\xcd\xba\x2b\x70\xfd\xde\xda\x10\xda\x79\x2a\xb4\x29\xc3\xa3\x0a\xb7\x6f\x66\xe1\x8f\xa3\xe8\xf9\x8f\x2f\x4f\x83\xcb\xf5\x26\x39\xf2\x51\x5b\xde\x30\x36\x88\xba\x4b\xf2\xef\x85\xcf\x59\xfb\x28\x03\xa8\x53\x68\x59\xe9\xe9\x19\xf9\x59\x50\x39\xa8\x79\x30\x85\xb0\x24\x72\xe4\xdd\xd4\x4a\x75\xaa\xcc\xe9\x3d\x88\x63\x7e\x55\xbb\xd7\xed\x0e\x4d\xfc\x2d\xc3\x5d\xd5\x0e\xd4\x54\x4d\x47\x47\xe9\x74\x5a\x49\xb8\xa0\xc7\x89\xf5\x90\x5e\x87\x42\xa1\xd8\x32\x37\x11\xf7\x25\x2f\x1e\x3f\xaa\x60\xb7\x08\xa9\x64\xb5\x8c\xae\xc2\x9a\x06\x30\x3c\xb6\x4c\x74\x94\xff\x18\xea\x97\x17\xf7\xad\x60\xbc\xb9\x75\xec\x8f\x3f\xd6\x33\xce\xa9\xed\x72\xc3\x90\x71\x53\x60\xf1\x8b\x94\xa7\xb0\x2d\xcf\x2e\x5b\x01\x43\x25\x55\xc3\xb7\x03\xe2\xaa\x32\x62\x32\x6b\x72\x14\x8a\x9e\xea\xd6\x3a\xaa\x46\xbf\xcc\x07\x9c\x2a\xbc\xde\x07\x87\xc7\xec\xc4\x53\x64\xb0\x94\x3f\x75\xb5\xcf\xfe\x85\x19\xb7\x2c\x3b\xbf\xe7\xd3\x06\x10\x1a\x61\x8a\x11\xd2\xa0\x22\xd2\x7d\x6a\x1c\x1a\x4c\x1d\x74\x98\x55\xf8\xb4\x05\x75\x78\x0c\xd4\x3f\x28\x99\xd9\x1b\x5b\x7c\x24\x74\x12\xf3\x62\x88\x8e\x4f\xcd\xcb\x37\x28\x9c\xa9\xa4\x6c\x29\x19\x1a\xf9\xa2\xfa\x17\x6c\x31\x5c\x26\x6d\x4b\xce\x51\xf7\x5f\x36\xf1\x96\xa4\x66\xe2\xc5\xbc\x08\x14\x74\x2b\xb0\xe3\x35\xf1\xf9\xe0\x61\x82\x6e\xc6\xef\x8a\xe5\xc0\xe7\x7c\xe0\x29\x17\x23\x1a\x25\x96\xfc\xb2\x92\xab\xec\x45\x43\x75\x1f\xd3\x04\xdd\xca\xf6\xce\x3f\x3d\xa8\x9f\xf5\x2f\xf4\xb6\xca\xe7\x7e\x0c\x06\xb4\x78\x97\xef\x7f\x1e\x4a\x12\x8f\x90\xf3\x3f\x76\x87\x77\xc8\x77\xa6\x70\x2b\xf7\xd8\xf7\x93\xff\x14\x19\x85\x9f\xd0\x9a\x25\x5d\xcc\x58\x9b\xd2\x81\x3a\x6c\x39\x2f\xf3\xd5\xff\x04\xed\x36\xf7\x5f\x18\xc8\xc4\x45\xf7\x8e\xff\xa2\xd7\x28\x5c\x47\x6f\xed\x46\x51\x7f\x96\x43\x12\x65\xa4\x48\xf0\x7c\xe8\x5a\xf8\x59\x8c\x50\x02\x51\xea\xe3\x67\xdc\x92\x83\xea\xfb\xd6\xaf\x03\x86\x53\x1a\xab\x61\xfb\x0d\xd7\x71\xcf\xf4\xff\xca\x00\x1e\x6c\x2e\xf6\x0f\x1a\x37\x93\x97\x87\x17\x12\x17\x19\x67\x46\xc7\x0d\x47\xb0\xfb\x9b\xba\x92\xda\xd4\x5a\xa2\xeb\xbb\x6a\xf3\xab\x86\x4a\xb6\x1b\xef\x7b\xac\x26\xe4\xbf\x48\xec\x8d\xdd\x52\xfc\x27\x03\xf9\x2e\x7a\x4c\xb1\xc9\xb6\xe0\x3f\x41\x3c\xec\xdf\x17\xd5\xc7\xd1\x61\xdf\x6a\xd2\x90\x56\xed\x5b\x8e\x55\x84\x9b\x2f\xf5\x39\x2e\xf3\x26\x7d\x23\xad\xbe\xb0\xb3\x73\x69\xc2\x67\xc5\x74\x35\xe0\x60\xfd\xee\xeb\xbf\xc6\xdf\x79\xec\x77\xac\x74\x4d\x3c\xf6\x55\xb6\x86\x37\xf4\xd7\xa0\x57\xdb\x94\x16\x17\xf6\xe7\x22\x65\x3a\xa6\xd5\x25\x98\xc6\x24\x45\x64\x85\x3d\x7c\xea\x48\xa4\x4f\xf5\xab\xba\xe8\xa0\x1d\xa7\x5f\xee\x5d\xa3\xbd\x6b\xfc\x9f\xf8\x7b\xfc\x83\x77\xcb\x84\x23\x2e\x1d\xd0\xb5\xf4\x25\x4f\xf9\x7b\x79\xb0\x99\xbd\xa9\x14\xf1\xe8\xd1\x97\x9f\x7e\x06\x5d\xf8\x05\x79\x79\xba\xab\xb8\x8c\x7f\x6c\x0c\xea\x4f\xac\xcf\x79\x5b\x33\xd0\x49\x35\x4e\xb2\x86\x71\x9c\xfe\xe3\x2f\x55\xca\xef\x6f\x67\x65\x5f\x8c\x47\xde\xb5\x9a\x97\xdf\xe6\x18\xa4\x2a\x27\x3b\xc4\xee\x46\xc2\x04\x4f\xfa\x47\x7b\x99\xba\x9c\xda\x5f\xdb\x74\x58\x22\x9a\xd4\x7e\x50\x30\x2b\x74\xb5\x0d\x99\x4b\xf0\xce\x6b\xad\x65\xec\x5e\x9f\x36\xdb\x18\x38\x7f\xf5\xfc\xc7\xa9\xf7\x36\xfd\xab\xc3\xe4\xdb\x36\x98\xd2\xb2\x8c\x84\xb8\xf0\xb0\xe0\xe0\x02\xdf\x29\x8f\x97\x4e\xa9\xb6\x5c\x16\xa1\xc6\x7c\x7a\x07\xda\x46\x6a\x44\xca\xdc\x0a\xbc\x5a\xf4\x56\xa1\x9e\xb4\x61\xc8\x29\x9e\x85\x2b\x0d\xb2\x03\x73\xf3\x30\xbb\xa1\xb7\x7f\xfa\x82\x67\xc9\x4b\xba\xdd\x57\x95\x2f\xd2\xcd\x23\xbf\xf9\xdf\x7a\xdb\x7d\x5c\xb1\x0b\x33\x67\x36\xa2\xd3\x2d\x50\x77\x50\x52\x95\xb5\x90\x4a\x14\x9b\x15\xea\x10\x38\x52\xa0\xd2\xd7\xb1\x27\xf1\x76\x8a\x42\xcf\x44\x2c\x73\x6c\x5f\x1b\xfb\xb5\x26\x7b\xd6\xfc\x4b\xe0\x67\xfe\x0e\xcd\x44\x56\x23\xe3\x67\xaf\xa8\x66\xdf\x02\xa7\x2b\x9b\x56\xd3\x24\x7d\x09\x0d\x25\xa5\x0c\x59\x3b\xf1\x63\x21\x6c\x9e\x0b\x8e\x0e\x16\x73\x06\x07\xd6\x77\x12\x78\x6a\x8d\xc6\xe1\x8e\xc7\x01\xb2\xf1\xb1\x79\xfa\xf5\x42\x7d\xd9\xf3\x13\x7b\xb1\x77\x59\x77\xc2\x1b\x70\xbd\x53\xa5\xf5\x89\xf3\xbe\x47\x8e\x03\xe6\x5c\x7a\xbf\xd5\x16\xe5\xc3\xa5\x93\x44\x94\x78\xa3\xd8\x43\x19\x57\xa8\xb1\xc9\x68\x09\x7b\xf1\x38\xa8\xdf\xf3\x99\xbf\x53\xd6\x52\xb2\x40\x75\x1b\x09\xab\x4d\x1b\x28\xc3\xe8\x10\x9c\xa0\xdc\x80\xfd\x46\x73\xbe\x39\x9f\xda\x72\x9d\xbb\x11\xfe\xd1\x25\xc4\x74\x49\xab\x58\xb1\x41\x7a\x48\x58\x99\x87\x8f\xa5\x9d\x16\x95\xec\x2d\x7e\x00\x66\x2e\xf2\x10\x82\x28\x1c\x14\x31\x34\x4b\xb2\x88\xa9\xa2\xac\x21\x8b\xfd\x8c\x3f\x63\xfc\xaf\x7c\xe5\xfa\xe7\x41\x99\xa5\xce\xc3\x81\x53\xd9\xa9\xe7\xba\xd4\xb4\x4d\x5f\x2b\x6b\x2f\xdd\x18\xf9\x7c\xd1\xaf\x7c\xa5\xac\xdb\xb4\x32\xa4\x39\xb8\xa9\xa8\xd3\xf0\xc1\xd0\x14\x20\x17\xa0\xbf\xb8\xc0\x36\xa2\xe5\xe0\xe9\x79\x9b\xa8\x05\x67\x71\xed\xd9\x1c\x71\x9e\xa9\x5a\x69\xdb\x2d\x39\xf3\xb8\x53\xb7\xdb\x39\x12\x5a\x31\x1d\x87\xee\x49\x6d\x16\xa4\x72\x2b\x16\xc7\xf9\x81\xa9\x9b\x12\x06\xef\x3b\x5a\x03\xbc\xe2\x0b\x12\x40\x07\x04\x00\x06\x40\x03\x1c\x28\x1d\xa4\x6e\x6c\x9d\xa2\x09\x4a\x1b\x1f\x5a\x9d\x8d\x43\xe8\x52\xd0\x4a\x3e\xb7\x9e\x8f\x8b\x6c\x58\x6f\xd1\xf7\x89\x14\x33\xc6\x1c\x79\x40\x99\x68\x28\x9a\x0a\x4a\xd0\x7f\x23\x11\xc3\xbe\x7b\x73\x00\xf3\x09\x10\x03\x16\x80\x0f\x48\x01\x27\x40\x02\xd4\x08\x78\x78\x67\xf4\x4a\xfc\x16\xb2\x37\x7a\x82\xf6\x5a\xfe\x5e\xf1\xf0\x05\xf4\x8d\xc3\xc3\x44\x5f\x90\xbe\x0a\x75\x96\x16\xdd\xc5\xee\x7a\xe4\x9a\x84\x2a\xe8\xf3\x5d\x53\x73\x62\xae\x23\x3a\xbd\x8c\x04\x5c\x00\x09\xa0\x01\x68\x80\x0d\xd4\x01\x3d\x20\x81\xf9\x81\x59\x40\x89\xc7\xb9\x2e\xdd\xa5\x69\x66\x99\xe9\xb9\x16\xed\x9f\x23\x59\x4b\xd2\x8f\xb8\x24\xb3\xc6\xd8\x7d\x52\xf6\x2b\x41\xd3\xbb\xd1\xcc\x54\x31\x83\x3f\x9b\xaa\x10\x0d\xed\xc5\x2b\x40\x0a\x24\x01\x12\x90\x00\x04\x00\x03\x50\x03\x78\x80\x01\xae\x51\xec\x48\x70\x59\x7d\xc4\xe4\x54\x2d\xcd\xd0\xdd\xec\xc2\x9e\x32\x8e\xab\x88\x7b\x78\xe7\xc1\xea\x9b\xa1\xf8\xca\xf1\xe4\xaf\x7e\xeb\x96\xa9\xaa\x30\x42\xa5\xb4\x49\x98\x4c\x2f\xd4\x00\xd9\x9f\xaa\x03\x1a\x60\xfd\xd3\x89\x41\x04\x32\x80\x01\xe1\x37\x01\x09\xc3\xa6\x90\x93\x62\xe8\x87\x68\xe7\xcb\x90\xf5\xd4\x9d\x72\xf3\x2e\xbd\x69\xd2\xed\x86\x31\x8f\x3a\xf8\x8c\xb5\x60\x7c\x3b\x69\x4d\x15\xf1\xd7\x4c\xf3\xf8\x39\xaf\x7b\x01\x03\x80\x05\x34\x00\x0d\xb0\x03\x74\x80\x05\xf0\x00\x31\xa0\x83\xbd\xc6\xb1\xa0\x8d\xe3\xaf\x93\x4b\x30\xe8\x77\x2c\x0d\x5a\x4e\x11\x29\x45\x6d\xa7\x9c\x62\x38\x6c\x99\x46\x6b\xc1\xcd\x65\x0d\x8f\x72\xf6\xd2\xeb\x91\xc1\xe0\x98\x24\xa3\x47\x4e\x07\x8c\x80\x1a\x10\x03\x2c\x80\x0f\x88\x01\x29\x40\x06\xe8\x00\xf9\x95\x21\xd6\x06\xcd\x07\xde\xad\xf7\x50\xfa\xa3\x0e\x05\x81\x8f\xc9\xee\x25\x4e\xed\x89\x53\x8c\x67\x65\x8b\x99\x9d\xa3\x45\xe9\x31\x3b\xee\x39\xc6\xbe\x0a\x98\x02\x6e\xb4\x41\xd8\x42\x30\x22\x40\x04\xa0\xfe\x51\x80\xd0\x00\x22\xc0\x08\x04\x01\x01\x74\x04\xa6\x11\x35\x31\x4f\xa7\xec\xb2\xee\xae\x83\x61\x60\x41\x32\x45\xf1\x48\xdb\xe7\x09\xa1\x9b\x57\xab\x1a\xfd\x48\xe5\xbf\x92\x94\x7c\x33\xac\x0c\x35\xe0\xc4\xc7\x59\xe9\x88\x76\x11\x4b\x01\x3a\x80\x01\x4c\x80\x00\x48\x00\x54\x80\x05\xd0\x00\xce\x4b\x72\x0c\x15\xca\x0b\xee\xc9\x77\x47\xba\x59\xf6\x4a\xfe\x81\x49\xb6\xc5\xe3\x6d\x11\x13\x22\x3f\xa1\xb6\xb2\x47\x6b\x6a\x43\x32\x08\x42\x4a\x1c\xb3\xf5\xe5\x64\x73\x78\xbe\x53\xd5\x62\xac\xbc\x58\x04\x98\x80\x14\xb0\xfe\x39\x4d\x02\xc0\x0c\xb8\x5e\xe0\xa3\x57\x51\x96\x70\x27\xbd\xc3\xd7\x95\xb4\x3b\x09\xc8\x49\x9c\x28\x89\x6c\xdd\x9d\x48\xfa\xcd\x7a\xd0\x33\x3d\xd7\x2c\x98\x47\x14\x75\xe1\xa1\x68\x86\xa8\xd2\x2a\x4a\xc0\x8c\x40\xd0\x02\xdf\x06\x50\x00\x0b\xc0\x00\x42\x40\x1a\x88\x01\x25\xc0\x04\x72\xd1\xe8\x28\xda\xb9\x1c\x65\x6e\x75\xda\x6c\xef\xfd\x63\x12\x49\x8b\xed\x5b\x85\xc7\x13\x21\x90\xd3\xfe\xf9\xbe\xae\x4f\x65\xb2\x49\x3c\xfe\x0f\x76\x5a\x3a\x5e\x32\x86\xdc\x43\x94\x19\xe8\x9f\xa1\xa4\x00\x03\xa0\x06\xf2\x00\xf9\xcf\xb3\x85\x06\xc8\x51\x25\xc9\x6d\x38\x97\xde\xba\xeb\xa0\xd9\x71\xfb\xcf\x27\xd6\x94\xf0\xb5\x69\x4f\x42\x41\x20\x57\xce\xab\x66\x83\x2d\xb5\xac\x59\x06\xe1\xd4\x6e\xc8\x26\xce\xca\x43\x22\xe3\x4c\xf3\x84\x3c\xf0\xf3\x80\x1e\xe0\x02\x22\x80\x02\xd8\x81\x20\x50\x07\xd8\xc8\x41\x64\xb4\x9c\xa6\xd2\xd5\xda\x3a\xb6\xf4\x01\xd9\x49\x5f\x8b\xfa\xda\xf1\x27\x9d\x21\x90\x1f\x82\xdb\x39\x93\xa6\xad\xb0\x85\x53\x09\x9a\x7e\xa2\xb6\x6a\x3a\xf9\x32\x10\x9e\x00\xea\x64\x4c\x81\x17\xde\x20\x09\x4a\xe8\x25\x33\xb4\x0a\x4c\xfe\xab\xf3\xd7\x67\x6f\x82\x48\x1a\xd9\x36\x24\x83\xb5\x9e\x6d\xdf\xfb\x99\x25\xaa\x14\x59\xb4\x26\x4e\x7d\x80\x40\x9e\x03\x4e\x58\x17\xa1\x7b\x2d\xab\xf1\x32\x72\xc2\x36\x5d\x8d\x4d\xd5\x54\x52\xc5\x13\xd8\xb8\x49\x2d\x50\xaf\x90\x22\x50\x14\x51\x21\xe8\xe3\x58\xd8\xd8\x87\x78\x11\x44\x4e\xe4\x6b\x0c\xcc\x42\x1f\x94\x4e\x6c\xd7\x5c\xa3\xc2\x60\xb3\x24\xda\xca\xa6\xff\xb8\x9a\x5d\xc5\x6f\x30\x8d\x71\x34\x7b\x17\xe6\x27\x18\xfb\xa7\xd9\x73\xe9\xdb\xc8\xff\x14\x41\x66\x35\x24\x47\x27\x18\x24\xa6\x22\x2d\x25\x5f\xa0\xdc\xa1\x53\x66\xe0\x60\x0d\xe6\x7e\x10\x8e\x11\x4f\x57\x98\xf8\x90\xe4\x12\x19\x36\x91\x69\x53\x3d\xd2\xf7\xc7\x5f\xf6\xa7\xcf\x01\xf5\x3c\x7f\x4f\x72\x55\x6f\x66\x40\x44\x9b\x67\xa1\xcd\x07\xbd\x21\x85\x40\x31\x78\x8e\x18\x3a\x3b\xa6\x6e\xd6\x61\x8e\xdf\xdc\xfb\x1c\x9c\x7c\xe7\x12\x79\x12\x8a\x72\xe9\xaa\xa9\x7a\xb8\x96\x3f\xbc\x47\x63\x0d\xf3\x95\x9b\x44\x47\xad\xff\x8e\x19\x17\x29\x6b\x8f\x63\x2e\x2d\x0c\xc5\x57\xa9\x2d\xe1\x3c\x5e\x12\xb6\xb9\x06\x3d\xca\xbf\xa4\xe9\xf9\xef\xf9\x52\xf9\x3a\x44\x24\xc5\xad\xa4\x4c\x54\xf4\x15\x4c\x55\x77\xf5\xcb\x2d\xc9\x1c\x7b\xbc\x10\x43\x44\x52\x4d\xca\xd6\x3a\xab\x67\x12\xfe\x42\x2d\xa9\xfd\xee\x05\x9b\x81\xde\xc6\x82\x62\xba\xb4\x80\x88\x6b\x1f\x1e\x87\x68\x93\x0e\xad\x60\xf9\x63\x99\xe9\x77\x77\x72\x22\x4a\xc2\xea\xbc\x5a\x97\x86\xf3\xe6\xde\x0e\x44\xee\x4f\xc1\xdf\xa3\xe2\x52\xa6\xf3\x7e\xd5\x8f\x0e\x0e\xaf\xfc\xf3\x17\x4e\xae\xe8\xb6\xf7\xe6\x06\x06\x74\x9a\x3e\x94\x5c\x66\xd8\xc5\x40\x07\xf4\xb8\xfa\xd9\x64\x7e\x48\xd6\x3e\xd5\xb3\x31\x82\x33\x21\xb3\x10\xb7\xf5\x74\xd6\xf2\xa2\x09\x4a\x8d\x3e\x4c\x5d\xca\xf7\xaf\x94\x6f\x3e\xee\xff\x36\x9d\xb1\x6d\xf3\x4f\x06\xd2\x7b\x11\xba\x8d\x34\x1f\x34\xb8\xd4\xd2\x58\xfe\xf0\xf9\x22\xd1\x36\xac\xc7\x9f\xd0\xa5\xc3\x1e\xc9\x51\xed\x63\x8e\x3b\x9f\xb7\x69\x40\xcf\xa7\xb2\x58\xe9\x34\x90\x17\x54\x41\xd3\x4c\xd7\x27\x3f\x51\xbc\x62\xb4\x53\xf9\xed\xfb\xff\xe0\xef\x33\xd1\x25\xf3\xce\xc2\xa2\xdf\xc8\x75\x47\x7f\x2d\x7b\x91\x73\xe6\x45\x42\x7e\x78\x6c\x10\x55\x88\x71\x58\x5e\x14\x57\x9c\x7f\xb2\x5d\xa6\x7f\x41\x6c\x45\x70\x53\x58\x8f\xf3\x98\xf0\xa2\xdd\xb6\xef\x19\xe4\xfb\xe9\xbf\x32\x80\x9f\x3e\xdf\x4e\xf7\xeb\x36\xe4\x16\xb3\xa6\xb2\x86\x9f\x7a\x1f\x3a\xb4\x5b\xfd\x1a\x14\xab\x2f\xcb\x32\x8a\x3e\x15\x28\xe5\xb3\xe7\xf2\xe5\x0f\xd5\x94\x76\x4c\x8f\xd0\x2c\xec\xed\x88\x5e\xcc\xfc\xf2\xf8\x77\x06\x72\xeb\x74\x44\xb2\x41\x32\x6f\x38\x16\xd1\x57\xd4\x2e\xd1\xa0\x58\xed\x53\x16\x59\x5c\x90\xf7\x36\xd3\x37\x25\x29\x71\x3b\xce\x3e\x86\x35\xb2\x3f\xae\xe2\xb3\x5d\xf9\x76\x0b\xde\xe0\x87\x79\xd8\xad\xa6\x6f\x8f\xff\xea\xc9\x71\x1b\xb2\x57\xbf\x5c\x38\x3e\xd7\xeb\xd8\x22\x55\x83\x55\x82\x91\xd7\x94\xe9\x93\x2c\x95\x98\x18\x53\x11\x6e\x11\x92\x14\x20\xeb\x53\xe0\x85\xec\x6e\xe0\xaf\x1f\x1d\x95\xbe\x5c\xdc\xd2\xf4\xa6\x3f\x66\x4e\x65\x5b\xf2\xd2\xe8\xf7\x5f\xb3\xd5\x3f\xe8\xf6\xa1\x96\xa0\x86\x85\xda\x3a\xab\x17\x8a\x5e\x64\xd9\x25\x1d\xc4\xe1\x85\x6f\x84\xa8\x07\x84\x04\x08\xb8\x09\x39\x03\xe7\x6a\x6b\x1a\x0b\x4d\x53\x56\x87\x3c\x5f\x89\xc8\xc1\xd4\xb1\x62\x97\xc6\xc0\xc1\xa2\x25\xee\x3d\x86\xdb\x3f\xda\xe8\x5f\x44\xc7\xb2\x2b\xb2\xc3\x04\xcd\xdc\xa5\x3f\xb2\xa3\x12\x39\x23\xf0\x83\x34\x7d\x7c\xdd\xdb\xdd\x8e\x9d\x9e\x6d\x6d\x2c\xda\x4d\x30\x0c\xc9\x35\x1d\x35\x16\x55\xcd\xcd\xd1\xfd\x7e\xf9\x3f\xc4\x2c\x66\xf9\xb7\x22\x8e\x78\xad\x68\x1d\xee\x9c\x61\x3c\x1e\x42\x20\x37\xa5\x9b\x86\xa3\x73\xcd\xb9\x25\xaf\xd3\x36\xa2\x7a\x03\x5a\x3d\x7c\x3e\xbe\xb6\x6d\xb3\x0e\x37\xed\x33\x70\xd1\x1a\x50\xed\x50\xdc\x96\xfd\x21\xbd\x21\x89\xa2\x38\x69\x74\xe2\xe0\xef\xbb\x1a\xa4\x9b\x15\x55\x29\xdd\xde\x37\xb1\xb9\x6e\x75\xe6\xfb\xab\xf8\xb9\xe1\xf0\xfb\x3c\x71\x27\x67\x79\x72\xea\x43\xd8\x67\xaf\x47\x47\x35\xab\xdf\xc6\xa6\x86\xf6\x5a\xee\x2a\x2d\x72\x1d\x6f\x9d\xc5\x3c\x05\xe3\x79\xf6\x38\x6b\xd9\x7e\x4a\x58\xaa\x8b\x9a\xde\x3a\xef\x07\xae\xc4\x47\xe7\x3e\xd4\xe6\xf4\x57\xcc\x23\xee\xd9\xdd\x36\xdf\x37\x6f\xe3\x0f\x9d\xd6\x28\x67\x85\x47\x90\x7b\x66\xd9\x84\x19\xeb\xe9\xf8\xa9\x1d\x2a\x78\xbd\x4d\x10\x6b\xe4\xdf\xe5\xf4\x66\x0e\xa0\x6b\xa5\xbc\x27\xb3\xa1\xbc\xe1\xfd\xf8\x5e\x54\x87\xdc\x32\xd7\xf3\x65\xd8\x51\xea\x4a\x19\x4b\x3b\xef\x38\xe7\xea\xee\xb9\xe5\xc5\xe1\x12\x47\x0f\x69\xd1\xf7\x58\x6f\xef\x55\xeb\x69\xc3\x60\x35\x24\xf9\x61\x29\x1c\x61\x15\x1e\x3d\xd6\x10\xba\x08\x72\x43\xc2\x67\x9c\x52\xf4\x6b\xe4\x05\x42\x73\xd6\x1d\xd1\x55\x45\x4b\xc3\x40\x47\x39\xbf\xe9\x38\x9f\x3c\x8a\x7a\x8a\x01\xd7\x05\xea\x03\xa8\xa3\xe9\xe9\xf1\xa6\x37\x19\x17\xc1\xc1\xf6\x31\xfa\x6d\x2a\x9f\xa4\xbd\x85\xfd\x79\xde\x30\x17\xd0\xa4\x91\xc4\xe1\x76\xa2\xad\x23\xf2\xbd\x2a\x87\x12\x82\x62\xc3\x2c\xa4\xb5\xe3\xa9\x94\xa1\xd3\xfc\x66\x81\xe0\xf1\x2a\xc2\x37\x3d\xb5\x82\xb5\xb3\x78\x3a\x6b\xcb\x79\x27\x75\x54\xbd\x82\x27\x31\xc4\xb3\xd8\xdc\x5e\x6d\x59\xea\x98\xbf\x81\xad\x8e\xb6\x9f\xe4\x16\x97\x02\xe5\x3b\x5c\x3e\x54\x3d\x90\x03\x1a\x80\x13\x10\xbf\xa9\x22\xd5\x65\x15\x13\xf1\x53\x34\x30\x4a\x76\x6c\x0b\x92\x4e\x7c\x2a\x36\x69\xce\x1a\x99\x5a\xa5\x5b\xdf\x19\x38\x2c\xa2\x8c\x92\x74\x17\x33\xe1\x53\x42\x17\x66\x60\xfa\x4d\x71\x4e\xc8\x86\x9e\x06\xbf\xf0\x42\x04\x08\xfc\x79\xdb\xc5\x01\xfa\x00\xef\x75\x31\x6e\x3d\x6d\x15\xef\xd5\x3b\x45\xed\x75\x1b\x04\x9f\xec\x18\x9c\x5c\xff\xba\xb4\xfe\xa3\x25\xa1\xd5\x86\x8e\xcf\x79\xbe\xd1\x18\x6e\x3b\x1f\xd6\xe5\x23\xf8\x3a\xa8\xef\x71\x8a\x50\x74\x61\xa9\x80\x16\x60\x07\x9c\x80\x08\xa0\x01\x78\xc0\x0d\x18\x5e\x12\xa1\x9f\x51\x90\xb3\xcf\x4b\x38\xa8\xed\x9a\x75\x78\xc0\x86\xdb\x64\xdc\x55\xc9\x74\xad\xcd\x76\xaf\x48\xb4\x16\x15\xe6\xc6\x7c\x71\x3f\x37\x4e\x92\xaf\xe0\x6d\xa1\x64\x43\x75\x81\x9e\x03\x42\xc0\x18\x90\xfe\xa9\x5d\x10\x83\x57\x00\x16\xe0\x01\x92\x37\x53\x44\x02\x4c\x5d\xc2\x1f\x14\x9d\x3e\x28\x38\x23\x87\xac\xa5\x84\x95\x15\xb7\xdf\x4c\x1a\xcf\x09\x77\xc5\x94\x6e\xc4\xb7\x7a\x05\x99\xa9\x2b\xfa\xf1\x67\x50\xcd\xa3\x59\x01\x2e\x40\x0f\x08\x01\x31\xc0\x07\x98\x00\x07\x60\x03\x3c\x80\x0f\x94\xe0\x3e\xe1\x8a\xd1\xbe\xe6\x5b\x7b\xcf\xa3\x37\x69\x9f\x1a\xd0\x96\xc4\x5d\x74\xd0\xfa\x6e\xdc\x6b\xc5\x6d\x50\xac\x52\x24\xd9\xd0\x6f\xcb\x4a\x52\xb5\x4a\x04\x83\xbe\x0d\xa7\xe9\x15\x1e\xa0\x01\x88\x80\x04\x90\x01\x1a\x80\x02\x10\xff\x9c\x05\x0a\x0c\x15\x46\x1d\xe5\x1c\x97\xf7\x5b\x63\x1d\x56\x9b\x34\xdf\xb5\xb8\xf8\xfc\xf9\xa6\x86\x11\xf3\xad\xf0\x51\xab\xda\xfd\x8c\xcd\xe0\x74\x7b\x52\xad\x3e\xc9\x23\x36\x1a\x62\x7c\xc4\x2c\x40\x0e\xf0\xfe\xfc\x77\xca\x3f\x3b\xc0\xfa\xdb\x5f\x50\xd2\xa8\x7a\x64\xfc\xec\x63\x92\x96\x1a\x1a\x56\xa4\xde\x9c\x31\xfc\x39\x87\xf5\xcc\x43\x24\x07\xe1\x53\x4e\xcd\xd3\xb9\xef\x23\xb4\x3f\x46\x1b\xc2\xc9\x6e\xf1\x7c\xa7\xbc\x47\x87\xbc\x10\x07\x58\x00\x19\x60\x02\x64\xc0\x02\xb0\x00\x2e\xa0\x06\xfa\x80\x1e\x39\x90\x44\x96\x0d\x51\x62\x4d\xed\xca\x92\xca\xcb\x37\xba\x38\xa7\xa5\xbe\x69\x70\xe1\xcc\x77\xe1\x77\x27\x76\x71\x68\x1c\x89\xa7\x83\x99\xb1\xf2\xba\xf0\x2e\x63\x37\xbe\x37\xdc\x00\xa0\x01\xa2\x80\x1d\x10\x03\x38\x80\x09\x70\x81\x1c\x20\x00\x62\x48\xd9\xc4\xe1\xac\x6f\xc5\x16\xd4\xe5\x2c\x18\x3c\x77\xa2\x9e\x3e\xf7\xd4\xed\x0c\xb4\x5c\xcb\xae\x76\xf6\x5f\x54\xc6\x26\x3f\x06\xe4\xdb\x3a\x69\x33\x4a\x9f\x71\xfe\x7f\x5c\xbd\x55\x54\x9c\x5b\xd7\x34\xba\x70\x77\x6d\xdc\xdd\xdd\xdd\xdd\x25\xb8\xbb\xbb\xbb\xbb\xbb\xbb\x07\x77\x77\x08\x2e\x09\x21\xc1\x89\x90\x00\x21\x42\x84\x90\x3e\xe3\xef\x6f\xbf\x5b\xce\x0d\x5c\x3d\xab\xbb\x69\xc6\xa8\x5a\x35\xab\x6a\x46\xd2\x2b\xe1\xd5\x02\x1e\x40\x0b\xc8\x01\x05\x20\x00\xf4\x80\x04\xe0\x01\x2a\xe0\x80\x39\x4f\x55\xcc\x33\x2b\xb7\x6c\xf0\xe8\x84\x15\x62\x9f\x76\x59\x35\xdf\x2d\x3b\xcb\x78\x5f\x7c\x1c\xba\xb4\xd2\x83\x56\x41\x93\x3c\x1e\xd0\x66\xab\xa5\x23\x2b\xe9\xc3\x2e\x0d\x99\x42\x59\x04\xd4\x80\x15\x60\x02\x7c\x80\x03\xe3\x73\x24\x80\x12\xa3\x80\x52\x98\xbb\x43\xae\xd4\x10\xe2\x28\x15\x72\x9d\x76\x5b\x29\xf0\xf4\x6c\x56\xe4\x51\xfa\x72\x77\x3d\x68\xc8\xb5\x9e\x30\x7b\x23\x42\xcd\xb5\xde\xf8\x83\xe2\x67\xfe\x37\x74\x06\xb8\x45\x40\x02\xd0\x02\x1a\xc0\x02\xe8\x81\x0c\xa0\x00\x32\x80\x1d\x1d\x8f\x82\x93\xab\x57\xf6\x5c\x3f\xc3\x31\x3d\x64\x3c\x1d\xb3\x4a\xbf\x47\x7c\x76\x18\x0a\xfd\x70\xb1\x87\x33\x79\xdb\x56\x50\x5c\x92\xd0\xe3\x47\x62\xcd\xad\x15\x2c\x51\xc6\xd6\x09\x11\x47\x4e\x03\x94\x40\x1e\x88\x00\x56\x98\xc2\x05\x01\xd8\xa8\x65\xe4\xda\x9c\x8d\x32\x48\xfa\x69\x8e\x65\x41\xe3\x69\x3b\x55\x88\xdd\x6f\xe7\xce\xa0\xd0\xbb\xa5\x57\x9c\x8b\xd9\x7d\xe4\xd5\xee\x19\x3b\x61\xf8\x2e\x86\xc6\x85\x8a\xd5\x02\xf0\x74\xf4\xb8\x0a\x80\x1f\xc8\x01\x4b\x18\x17\xa2\x01\x02\xc0\x0c\xc5\x0e\xc2\xc9\xe1\x2c\xb5\xab\xe7\xea\x20\x12\xfc\x2c\x6d\xbe\xaa\xbc\x5b\x62\x1e\x15\x0a\xfd\xb1\x73\x61\xb0\x11\x33\x9a\xdc\x6c\x5e\x18\x1e\x8f\xea\x4b\x6e\x6d\xa7\xf5\x56\x0a\x87\x83\x9a\xec\x29\xca\x20\xa0\x06\x52\x80\x0e\x28\x02\x57\xc0\x00\x82\x90\x6e\x20\x2b\x1c\x19\xd2\x66\x7a\x91\x0e\xb6\x41\xf3\xe9\x90\xca\xa8\x5e\xbc\xe1\x97\x30\x05\x43\xea\x85\xce\xdc\x65\xf7\xb7\xca\xc7\x0c\xe9\xb0\x52\x97\x73\x93\x19\x15\x2e\x61\xc0\x18\x43\x30\x81\x90\x85\xa4\x8f\x2a\x83\xb6\x86\x11\x8e\x69\x88\x39\x86\x23\x88\x5f\x47\x6f\x29\x38\xad\x12\x6d\xe6\xe6\x59\x1a\x83\x94\x9b\xdd\x88\x36\x34\x0c\x43\x8b\xb9\x13\xdd\x35\xeb\x91\x99\xe6\xf1\xc2\x17\x09\x0e\xfe\xf6\x76\xc5\xfa\xd2\xf2\x2c\xbc\x83\x74\x2a\x84\x22\xf8\xf9\x84\x6b\x24\x71\xa4\x4b\xe4\xa4\x94\x97\x34\x2f\x18\x94\xd9\x53\xc4\xad\xb4\x04\x6c\xf0\xfc\xc5\x13\x5f\x94\xb4\xb4\xbb\x4f\xc2\x36\xdc\xfc\x4e\x7b\xef\xb1\x77\x37\x1b\xd3\xd3\x5d\x7d\x96\xd5\x1f\xc9\xea\x19\x63\x99\xaf\x13\x2e\xbb\xcd\x9f\xca\x74\x4a\x4b\x49\xd7\xc6\x04\x61\xfe\xcd\x66\xc8\x8d\xc4\x97\x29\x6a\x26\xed\xa2\x7c\x6a\x34\xe0\x0c\x0d\xeb\xcc\xf4\xa8\x49\xee\xc3\x5f\xf8\x2b\x0b\xf2\x59\xfc\x84\x70\xad\x7c\xf4\x47\x9b\x5c\x29\x51\x2a\x4d\xd8\xaa\x27\xa7\xb5\xa5\xde\x9d\xe2\x9a\x18\x1c\xef\x96\x40\x9c\x30\x9f\x58\xaa\x94\x91\xdc\x5b\x65\x45\x4d\x17\xc3\x19\x2b\x7a\xa7\xaf\x7e\x24\xf1\x86\x85\xed\x2d\x5a\x63\x60\xfd\xaf\x3c\xee\xaf\xc7\xf7\x96\x2f\x10\x17\x91\xfb\x07\x1a\xaf\x4a\xf0\xd3\x7c\x22\x9e\xfb\xf0\xda\x6d\x9b\xdc\x68\xba\x2b\xc6\xa8\xd0\xab\xc7\x69\x4d\xe9\x75\x1a\x07\x99\x67\xda\xae\xb9\x39\xfa\x17\x46\x0a\x25\x9e\xe7\x38\x57\xeb\xf5\x60\xcc\x05\x3c\xff\xdb\x07\xf9\xf9\xe0\xcc\x7e\x5b\x7e\x8e\xad\xff\xb8\xd9\xbb\x0c\x29\xe3\x4d\x4c\x4e\x20\x96\x5b\x89\x35\xbb\x69\xb3\xb9\xa8\x55\xa8\xed\x4f\xc7\x6d\xb7\x79\x9f\x98\xa0\x95\x68\xba\xe4\xf1\xdc\xe6\xb2\xa3\x86\xfb\xee\x90\xb1\xb2\xb5\x9b\xe3\xbf\x9b\xce\xff\x44\xde\x2a\x9f\xec\xec\x60\xcf\xb3\x0e\x29\xb6\x79\x56\x46\xe7\xce\x24\xdd\x45\x3c\xfa\xa7\x78\xc2\x7b\xdb\xfb\x75\x06\x41\xc2\x24\xa2\x99\x13\x11\xd2\x4b\xf3\xb9\x2a\xbe\x36\x5e\x77\xbf\x1a\x35\x58\xf0\xda\x8c\x7a\xe5\x7a\x45\xf8\x2f\x06\x32\x72\xbb\x77\x26\xbd\x87\xbc\xa4\x3b\x9a\xde\x35\x59\x9f\x55\xa6\x97\x53\x94\x0c\x1f\xab\x1c\x5f\x94\xb4\x9d\x26\x99\x25\x97\x2f\x5d\xca\x5e\x3d\xd8\xbc\xd7\xbd\x34\x7a\x36\x7f\xbd\x99\x71\xf8\xe4\x92\xfb\x6e\xef\xb7\xc7\xbf\x34\x84\x8d\x6b\xc1\xf3\xaf\x87\x0a\x3b\x79\xcf\xec\x16\x08\x27\xa3\x87\xff\xf4\x15\x75\x69\xb5\xd6\x37\x66\xd4\xb1\x54\xdd\x54\xf4\x94\x07\xd5\x69\x3c\xad\x1d\xfb\xb9\x54\xb6\x7b\x79\x0a\xbd\x19\xfc\x1d\xfa\x5f\x06\xf2\xb9\xe1\x8d\xe6\xa1\xfe\x56\xee\xd2\xf6\xd4\xfa\xb0\x6a\x8f\x74\xdb\xa7\x86\xfe\x6a\xe1\xd2\xde\x42\xa1\x9c\xcb\xcc\xd8\x34\xf5\x14\xea\x64\xbb\x5c\xc4\xaa\xfa\xb6\x91\xc1\xef\x73\xe6\x5b\x9f\x8e\x43\xaf\x23\x1f\xfe\xd5\xa5\x75\xa7\x7a\xf6\x69\x6f\x7f\xf9\xfb\x64\xfa\xc0\x93\x8e\xe6\x46\x8a\xca\xa5\xa2\xfd\x9c\xa5\xb4\x93\xc4\xa7\x31\x2b\x11\x9c\x21\xbb\x81\x65\xfe\x92\xfe\x7e\xd1\x57\x99\xa6\xa5\x3f\x9a\x6e\xfa\xae\x67\x68\x37\x7d\x8e\x91\x6e\xf0\x1e\x9d\xff\x62\x30\x14\xe7\xd2\x3b\x9c\xf3\x66\x43\x4b\x1d\xfb\x75\x3f\xcb\x34\xf3\x88\xd2\x52\xe3\xad\x22\x41\xd0\x83\x6f\xa8\x87\xa3\xf3\x8c\x83\x82\x4d\xab\x95\xab\xf5\xb8\x37\x5b\x84\x77\xea\x70\x31\x46\x43\x54\x6f\xc6\x8c\xe4\x96\xd6\xc9\xea\x27\x98\xab\xf8\x21\xf0\xad\xd0\x1e\xfc\xec\x46\xbf\x6b\xd3\xbb\x72\xef\x5c\xd4\xe4\xd3\x68\x87\x60\x25\x1f\x66\x37\x59\x07\x1a\x4b\x46\xd3\x0e\x83\x13\x5d\x2b\x8d\x03\x35\x75\x6d\x2e\xcb\x05\xf7\x57\x61\xe6\x29\x98\x85\x0d\x0d\xcb\xfd\x81\x73\xea\xbb\x7a\x17\xe5\xdf\x98\xa0\xd0\x9b\xa6\x97\xbd\x8b\xba\xfd\xf5\x0d\x5f\x8a\x3a\xd3\x50\xa3\x2d\x03\xeb\x3d\x81\xc3\xad\xe5\xa1\xf1\x85\x7e\xa4\x06\xb7\xb2\xa4\x1c\x9e\xe4\x6f\xd1\x0b\xe1\x22\xe9\x74\x1d\x2a\x8b\x5b\xf7\xe7\xa1\x64\x69\xf6\xc5\x39\xcd\x15\xc3\x8f\x4b\x9b\x07\xba\x57\x03\x8f\x58\x6f\x84\xd6\x0f\x47\xbe\x34\x61\x16\xaa\x24\xc9\x86\xdc\x79\xbe\xb6\x9f\x31\xdb\x32\x94\xd1\x0c\x50\x5e\x90\xcd\x95\x98\x13\x7a\xcb\x1b\xc7\xb1\xc5\x62\xcd\xe8\x26\x48\xa1\x44\x6f\xe8\x6c\xa7\xe7\x93\x1e\x43\x96\xf3\xad\xfa\x7b\x37\xeb\x6c\xc4\xf6\xe7\x33\xea\xcf\x1f\x5e\x59\xcd\xd5\x76\xec\x96\xfc\x4a\x5e\x08\x2e\x70\x65\xb2\xf8\xa1\x6f\xa4\x41\xae\x38\x26\x85\x26\xf4\x82\xe7\x37\x7b\x23\xe3\x47\x6a\x62\xb2\x09\xe2\x4d\x52\x1f\x8e\x0f\x92\x6e\x7a\x21\xb6\x04\x3e\x4c\x31\x15\x39\xc1\x35\x48\xdd\xc5\x33\x99\x3b\xe6\x17\xe7\x1f\xdc\xb7\xf5\x46\xdc\xeb\xce\x32\xac\x42\xaa\x9c\x27\x9f\x68\x68\x55\x2b\x9e\x4a\xdc\x08\xfe\xe4\x1a\x64\x95\xa1\x63\x22\xf7\x25\xa2\xc6\xa1\x42\x8b\x43\xaa\x24\xc8\x65\x61\x12\xed\x56\x59\x31\x1e\x71\x7e\x1f\xcc\x94\xcc\x55\x72\xda\x42\x33\x12\xf5\x0c\xe7\xb5\xe9\x59\xfe\x52\x5d\xf7\x9f\x22\xb5\xe8\x14\x77\x81\x27\xae\x1a\x10\x99\x7b\xa1\x0a\xee\x12\x16\x64\xea\x76\xd2\x39\x3c\x25\x34\x2b\x04\x2a\x30\x0e\x08\x01\x21\xa6\x3f\xf5\x08\xcf\xa5\xf4\x85\xce\xbc\xb5\xb8\x37\x43\x0c\xc8\x09\xac\x0b\xeb\xeb\x59\x18\xdb\x3f\x3a\x54\x98\x75\x6a\x32\xc9\xc0\x0d\xe1\x75\x70\xd0\xf3\x90\x9d\x16\xa0\x65\xbd\xa0\x0d\x80\xf0\xe1\x9e\xa0\x36\x83\x06\x80\x04\x30\x01\x2f\x60\x06\x2a\x48\xab\x10\x24\xd6\x48\x91\x7b\x95\x63\x53\x3d\x57\x8c\xd0\xfb\xb4\xd2\x8a\xf6\x2e\xd5\xc9\xb6\x2d\xca\xe7\x1a\x23\xa9\x55\xe6\xa9\x2f\x02\x1b\x6d\xc3\xb4\x7a\xc4\x27\xd8\xc6\x28\x2f\x09\x5b\x31\x46\xe1\x17\x01\x1d\xc0\x05\xe8\x00\x0f\x08\x01\x6c\xc0\x08\x30\xf0\xfa\xe8\x2a\xf8\x54\xe5\xba\xf5\x1b\xed\x31\x02\x6a\x13\x2d\x8b\x4e\x5b\xa2\xc6\x70\x9e\x21\xef\xb0\xf4\x05\x57\xdd\xa7\xed\x04\xb1\xda\x7c\xd3\x54\x10\xf9\xc3\xc8\x88\xbf\x83\x6a\x06\x24\x00\x13\x50\x03\x0c\x00\x1f\x10\x01\x31\x80\x07\xb8\x80\x2d\x66\x18\x45\x3f\x87\x9c\x84\xbd\x16\xa9\xa5\xb9\x37\x79\xec\xa7\xbc\xea\xfa\xc5\x81\x9a\xa5\xea\xf5\xa5\xc1\xac\x3a\x97\xcc\xfb\xe0\x56\x3b\x53\xad\x40\xd1\x38\x86\x21\x5c\x5a\xc0\x0c\x38\x80\x14\x60\x02\x14\x80\x1c\x40\x00\x2a\xc0\x06\x04\x40\x11\xc5\x9a\x44\x9e\x99\x49\x98\x51\x65\xf0\x09\xb3\xfb\x9b\x08\x9d\x2c\xca\xda\x80\x9e\x89\x79\x8e\x4d\xb5\xb1\xe8\x66\xe4\x9c\xaf\x61\x97\x8e\xe5\xba\xf2\x12\xed\x2c\x22\x44\x73\x08\x4f\x80\x2a\x90\x82\xa1\x1e\x01\x20\x05\x64\x80\x02\x90\x02\x62\xf8\x14\xfc\x6c\x3a\x27\xbe\x52\x45\x33\x23\x64\xe7\xb0\x10\x8f\xb4\x8b\x8a\xed\x2e\xbb\x19\xee\xfd\xdc\x59\xc5\xf6\xfc\x42\xec\x68\x3b\xd7\x4b\x23\x4d\xd9\x7b\x6e\x7d\x8a\x40\x74\x0a\xc0\x07\x73\x7f\x52\x02\x32\x18\x8b\x41\x05\x54\x40\x0e\x48\x60\x1d\x53\xd1\x71\x2d\xcb\x0c\xeb\x15\xd9\x0f\x06\x16\x25\xcf\x94\xde\x75\x28\x4d\x86\x1f\x35\x2d\xb6\x77\x97\x96\xe9\x24\xa4\x79\xeb\x9b\x4b\xaa\x24\x0a\xe6\xd3\x2b\xe2\x61\x00\x02\x80\x0f\x08\x01\x01\x60\x05\xc8\x80\x14\x88\x00\x39\xc0\x0a\xb8\xd1\x21\x64\x9a\xec\x8a\x92\x15\xda\xed\x36\xdf\xfd\x13\x12\xde\x17\x5b\xb7\xee\x8d\xd5\x5c\x54\xaf\xe5\x0e\x62\x56\x87\xa6\x79\x07\x7e\xb1\xed\xd0\xe6\x93\x08\x64\xb3\x21\x75\x43\x2e\x05\xd4\x80\x14\x08\x00\x1a\xc0\x00\x7b\x17\x8c\x40\x04\x30\xa1\x9c\x92\xbe\x60\x8b\x94\x50\xd0\x6a\xb7\xd1\xf2\xbd\x48\xd0\x28\x76\x6d\xc1\x1f\xc3\xbc\xc2\xda\x99\x18\xd3\x6d\xc2\xcb\x29\x8f\x98\x73\xb9\x34\xb2\x96\xbf\xe6\xbd\xa5\xde\xc7\xb6\x04\x92\x30\x05\x87\x0a\xa6\x46\x91\x00\x7e\x20\x00\x08\x91\x6b\x48\xec\x58\xda\xc4\xd5\xb4\x2c\xac\x88\x7d\xfa\xe2\xbe\x16\x07\xb7\x7c\x19\xab\xfe\xf4\xfb\xa5\xf6\x2c\xa4\x03\xad\x38\x2d\x7e\xcb\x07\xdf\xb2\x4a\xfd\x4a\xb4\x8e\x85\x90\x38\x10\x09\x02\xc8\x00\x0a\xec\x9d\x10\x02\x0e\x20\x04\x90\x80\x02\xe2\x3c\x71\x20\xf3\x67\xb1\x30\x8d\x08\x2b\x13\x9f\xcb\x38\xb3\xc2\xd1\x16\xff\x51\xdf\xfb\xa8\xe3\xaa\xe5\xe4\xde\xfd\x6a\x8b\xb4\xdf\x21\xc4\x8e\xe7\x06\x2c\x72\x14\x3c\x44\x54\x25\x98\x9f\x00\x04\xc6\x7f\x48\x00\x39\xc0\x03\xcc\x80\x02\xe8\x20\xf4\x12\xfd\x62\xae\x12\x2d\xd2\xa4\xb1\x0c\xf2\x29\x8f\xf7\x28\x2a\x6d\x09\x19\x0b\xfe\x43\x7e\x59\xbd\xb1\x3b\x72\xdd\xf8\x23\x5f\x2f\x26\xc3\xb3\xc4\xdc\x45\x8d\x5e\xa4\x9f\x99\x8f\xa8\x1e\x21\x12\x48\x00\x5c\x40\x08\x63\xc6\x5c\x80\x15\x50\xc3\xc3\x11\x6a\x31\x17\x8a\xaa\xa9\x1f\x5a\x39\xf8\x88\xc6\x1f\x16\x09\xb6\x0a\x4c\xc0\x41\xa1\x1f\xdf\x3d\x27\x9c\x29\xe9\x52\x2a\x77\x4a\x99\x0d\xbc\xb4\x7f\xa9\xf7\x5d\x36\x9a\x87\x91\x4a\x0b\x53\x05\x40\x00\x25\x60\x02\x84\x80\x02\xc6\xa7\xc4\x81\x0b\x7e\x2e\x63\x9b\x28\x9a\xfa\x17\xf3\x33\x9f\xb9\xd8\x85\x82\xcb\x96\xd2\xb1\x0d\x28\xf4\x2b\xdd\xd1\xd0\xca\xc8\x60\x54\x83\x42\x2e\x67\xd4\x94\xc7\x84\xb9\x9a\x5a\xaa\xa8\x33\x0b\x15\x31\x26\xfc\x15\xa0\x06\x44\x40\x08\x10\x03\x71\x80\x0e\xd0\x80\x29\x5e\x29\xfd\x37\xe1\x2f\x6a\x22\x16\x27\x5e\x8d\x71\x49\x85\x6c\xad\x46\xe3\x10\x28\xf4\xa1\xfe\xad\xe3\x8e\xcd\xe4\xb3\x0e\xe6\x52\xa7\xe4\x9a\xc0\x3b\x07\x4b\xfd\x43\x79\x2c\xde\x0f\x34\xa2\x58\xf6\x00\x07\x70\x01\x5a\x60\x07\x64\x01\x1f\x60\x05\x26\x58\xa8\xd4\x82\x3c\x81\xf2\xd4\x06\xd3\xce\xe4\x41\x63\xe9\x68\x65\x17\x4f\x61\x6d\x54\xb7\xab\xaf\x70\x97\x6e\xfa\xbf\xd7\xcd\xe4\xbc\x89\x0e\xf7\x32\xb2\x14\xd6\xdc\x90\x30\x65\x0f\x20\xb5\x47\xca\x00\x0c\x80\x12\x70\xc2\xf2\x4d\x26\x70\x9f\xb0\x14\x68\x90\xf8\x16\x15\x8b\x4d\x0a\x5c\xaf\x22\x12\xb2\xa5\x6a\xbf\x0d\xa0\xc0\xd0\xaa\xee\x02\x6b\xcb\x60\x52\xa3\xa3\xbf\xac\x3c\x55\x25\x24\xc7\x05\xcf\x84\x4f\x79\x4c\x98\x9a\xe1\x94\x00\x11\xd5\x05\x03\x03\xeb\x27\x6e\x2b\x41\x38\xb1\x2d\x24\x94\x62\x90\xd5\x46\x5c\x42\xb3\xd5\x5a\xda\xf7\x6b\x42\x72\x31\x59\xeb\xc2\xf8\x5f\x6d\x16\xd7\xda\x2f\x25\x96\xc6\x07\x31\x1a\xa6\xf3\xd3\xe2\x7d\xfd\xce\xed\x5e\x1b\x38\xc9\xab\xf3\x7f\x65\xf4\xa0\xc0\xa4\x66\xa5\xfd\xce\xc8\xcd\x32\xce\x7e\xcc\xfd\x56\xa0\x58\xb4\x51\xd1\xd3\x68\xc2\x05\x21\xcc\x21\xe3\x63\x75\x56\x2f\xf9\x7c\xe5\x5f\xb7\x5e\xee\x0b\xbf\xad\xf9\x69\xc5\x2e\xeb\xaa\xb8\xcc\x9d\x28\x55\xaf\x16\xeb\x8f\x7a\xbf\x15\xfb\x45\x38\x79\xc2\xf8\x2d\x85\x4c\x45\x7d\x24\xdd\x64\x69\x15\x5b\xd4\x0e\x74\xb2\x4c\xce\x6d\x15\x7c\x2b\xe2\x8b\x0a\x57\x5b\xb8\x46\x9b\xd6\xff\xb7\x5d\xa6\xe2\x7a\xe2\xd5\xb3\xd5\xc0\x91\x8a\x56\xbf\xd2\xa1\x74\xf8\x48\x6b\xef\x6d\xfb\x54\x93\x68\xf5\x3c\x85\x65\xe5\x22\xb5\x6a\xcd\x4b\xdd\x55\x23\x8b\x27\x91\xd6\xde\x4e\x12\x5e\x49\xc1\x2a\x31\xcf\xb3\xe8\xab\xc5\x7b\xcc\xe6\xd2\xf6\xff\xd6\x0f\x7e\x28\xbd\x99\xd8\xbb\x98\x1f\x1f\x84\x6f\x01\xe5\x48\x99\x0b\x31\x6f\x03\x22\x5c\x4f\xad\x8c\x4d\x21\x66\x03\x96\xef\x6c\x15\x1c\xe1\x5c\x5b\xbd\x7a\x02\xa2\xc3\x26\xe3\x93\x33\xcb\x8b\xe1\x6a\x04\xdb\x36\xc6\xfc\xd7\x9e\x9f\xe0\xff\x0b\x7d\xed\x4e\xcf\x76\x5e\xcc\x3f\x0c\x1d\xb4\x3d\xad\xe2\xcf\x13\x4c\xd6\x8d\x58\xf1\xed\xf6\xc8\xf4\xfa\xe9\x27\x14\x98\x10\x1a\x1f\x79\x1e\xdf\x97\x9a\x93\x13\x50\xb2\x52\x97\xd6\x7e\x37\x30\x30\xa5\xb9\x5a\xf8\xe2\xf6\xfd\xd7\x7f\x4e\xf8\x63\xf3\xc9\xfd\x2c\x65\xef\x60\x99\x70\x4c\xf8\xa9\x76\xfd\x65\x69\x5e\xf6\xfb\x24\x48\x2c\x72\xbc\x78\x52\x58\xea\xc7\xcc\xdb\xbc\xd0\xe2\xf7\x95\x1f\x1b\xde\x75\xaa\x0f\x11\xcd\x10\x3e\xa3\xdd\x8b\x3a\xa9\xf8\xb0\x77\x9f\xf9\x2f\x06\x62\xf7\x71\xee\x3c\xea\x10\x71\x87\x7a\xf5\xd3\x3c\xcb\x44\xc7\xb0\x4d\x9f\x70\xe7\x66\xab\x69\xa3\x72\x1d\x5f\x35\xa4\xe2\x63\x79\x6d\x83\x6e\x77\xd1\x44\xda\x4a\xfe\x3e\xff\x59\xf8\x2d\xfe\xef\xac\xff\x10\x90\x8e\xcf\xf8\x97\x7b\x2f\xf7\xb6\x08\x96\xe4\xa7\x04\x86\x6a\xba\x67\x5a\x2f\x1b\xe4\xaa\x9e\x95\xc6\x16\x1c\xe7\x6c\x67\x46\xa7\xf9\xa4\x48\x25\x73\xe6\x31\x55\xcf\x77\x88\x0c\x4b\xce\x93\x6c\x3d\x3f\xb6\xbc\xe6\x7f\xf8\x57\xc3\xd9\xa7\xaa\xb3\xc0\x3d\x83\x65\xcf\x89\xc7\xfe\xa5\x0e\xb6\x06\xc5\x8a\xef\x45\x9a\x39\x8a\x69\x0e\x89\x92\x31\x76\x11\xd4\x21\xcf\x02\xf5\xfd\x1e\xfc\x05\x62\xec\xb2\xcc\xcb\x53\x5b\xf0\xfb\xd1\x66\x1c\x36\xe5\x8e\xa2\xaf\x2d\x7f\xb7\xfc\x8f\x01\x9d\x4e\x6c\x37\xce\x6d\x0c\x71\x75\x08\xd5\x19\x95\xc6\xe6\x7a\xa4\x5e\xc4\xe5\x47\x28\x04\x95\xf9\x14\xbb\x5f\x39\x5b\x3a\x50\xd9\xd4\x5b\x41\x6c\x74\xbc\xe5\x22\xde\xa7\x0d\x16\x5f\x37\x94\xf4\x3a\x4d\xb7\x6d\xa6\x1d\x1f\xde\xa6\x41\xcb\xa1\xd0\x1f\xb8\x97\x36\xdb\x3b\x33\x06\xbd\x57\x4d\x26\x65\xa3\x39\x6a\xc9\x94\x51\x69\x41\x71\xde\x52\x2e\x55\x76\x32\x16\x89\x26\x3e\xfa\x15\x3a\xbc\x1a\x8b\x6a\xb2\x3a\x5f\xac\x69\x3d\x09\xc3\xca\x92\x1f\x0a\x03\xea\x37\x7b\xc7\x67\x79\x77\xd0\xce\x85\xbe\xc8\x41\xa1\x37\x7c\x2f\xd0\xe6\x83\xfb\x16\xeb\xed\x0b\xdf\xa7\xf2\x45\x45\x07\x2c\xbb\xbf\xb3\x97\x37\x3f\x36\x5c\xd7\x0e\x53\x65\x92\xff\x29\xf5\x5e\x9c\x41\x38\x55\x10\x48\x57\x6b\x57\x5b\x4a\xb8\x75\x84\x74\x25\xe3\x14\x11\x36\xd6\x0c\xd4\x2c\xfc\x7c\xce\xfa\xb6\xf3\xc7\xf6\x69\xff\xb3\xde\xc1\x84\x86\x87\x02\xd1\x44\xce\x10\x0c\x8f\x2d\xbb\xce\x27\x0e\xba\x3b\xaa\x85\xb2\xb7\xe2\x15\x02\x1f\xb8\x63\xd9\x04\x99\xe8\xe8\x34\xa9\xe7\xb8\xb7\xa4\x25\xb5\x12\x2d\xb0\xdc\x06\x42\xc7\x52\x65\x4a\x13\xdb\xe0\x47\xf5\x9e\x61\xbf\x56\xb8\x7d\xfb\xbc\x62\x72\xb9\x8d\xa7\x84\x3b\x41\x2f\xa0\xc2\x79\xc8\x5c\x47\xf7\x46\x45\x56\x1a\x57\x68\x8a\xab\x86\x79\x8f\x66\x84\x9c\x8a\x28\x1f\x8f\x01\x0b\x17\x3b\x91\x96\x99\x6f\x43\xee\x8d\x9e\xa8\x4d\x88\xcf\x64\xf4\x50\xf6\x65\x2d\x71\xf7\xde\xdc\xf6\xae\xe3\x65\xe7\x9a\xfd\x40\x70\x95\x68\x6a\x72\xd0\x8d\x13\x30\x39\x52\x9f\x92\xf1\x17\x32\xe0\xf8\xc1\x70\x4b\xb9\x48\xec\x89\x33\x8b\x46\x01\xdf\x0c\x04\x80\x2f\xd2\x1e\x99\x31\x7b\xac\xc4\x07\x3d\x4d\xdb\xa7\xbe\x8a\xe1\xc6\x79\x9e\xf5\x76\xed\xaf\x27\x92\x37\x4e\x4e\xcb\xe6\xcd\xda\x7b\x73\x0f\x22\x46\x5d\xef\x4c\xde\xa8\x70\x88\x13\x70\x0f\x30\x15\x52\x71\x12\xc7\x62\x07\xa2\x40\x40\x14\x60\x02\xf2\x80\x0e\x70\xc0\x1b\x93\xe8\xb2\xc4\x8a\x28\xaa\x8a\x99\xc4\x3b\x4f\x86\xa0\xa4\x69\x97\xbe\x6e\x6f\x9d\xb8\xdd\xe8\x7e\xce\x34\xde\x5e\xfb\x39\x1d\x12\x8c\x67\x8f\xa5\x93\x26\x79\xc3\x31\x4a\x97\x09\x61\xc4\xfd\x84\x7a\x05\x74\x01\x3b\x4c\xb3\x96\x06\xec\x80\x0a\x68\xe2\x04\xd2\x94\xf0\xec\xc8\x8c\xe8\x06\xd9\x0e\xfa\x96\xc4\xe9\x16\x28\x36\x5a\x0c\xb3\xaf\xa8\x6f\xa9\xf7\x5f\x54\xc6\xa4\x1c\x05\x44\xdb\x70\x6b\x3c\x88\x5a\x33\x85\x13\x7d\xc0\x1c\x40\x98\x07\xbc\x00\x15\xa0\x03\x0c\x60\x04\xf3\x52\xa2\x01\x6e\xb4\x31\x32\x23\x36\x55\x31\x6b\xb5\x6f\xe6\xf4\x1e\xbb\x51\xc4\xd9\xfc\x35\x14\xbd\x97\xf3\x61\x2b\x65\xbd\x83\x55\x34\xa9\x87\x81\x21\x36\xc6\x1a\xc3\x22\x24\xf4\x9d\x38\x41\xc0\x1c\x88\x01\x79\x40\x0b\xa8\x00\x19\xcc\x37\x88\x0b\x64\x00\x27\x62\x17\x61\x27\x23\x8b\xc0\x81\xe2\x92\x31\xa6\x33\x67\x08\x75\x1a\x4e\xf9\xeb\xce\x99\xa9\xdb\x95\xc3\x81\xf8\xda\x82\x4c\xe7\xe0\x17\x76\x9d\x5a\xa7\x62\x16\x8c\x3f\xf0\x37\x40\x0b\x48\x03\x0e\x30\xbc\x45\x07\xfc\xb0\x13\x68\x80\x3c\xe0\xc5\x49\xa3\xb6\xe1\xb1\x97\x89\xd5\xa3\xb7\xfb\x14\x48\x9c\x8c\x59\x22\xd2\x96\x34\x1e\xb6\x51\x37\xba\xd4\xf4\x3d\x37\x27\x7c\xd8\xa9\x51\xef\xa3\x94\x07\x7b\x27\x44\x07\xc5\x11\xe0\x00\x12\xc0\x07\xd0\x01\x19\x80\x00\x14\x98\x93\x92\x1b\x10\x62\xe0\x92\x23\xb1\x2b\x48\x38\x6b\x3e\xb1\xa6\xf0\x31\x8c\x87\x14\xf2\x35\x75\x0e\x3f\xee\x7d\x9a\x39\x6b\x27\x2e\x12\x89\x25\xf2\x60\x30\x11\x56\x74\xe7\x4b\xa2\xd1\xc7\xb6\x87\xbd\x7f\x71\x18\x87\x62\x83\xf1\x08\x66\x40\x0d\x34\x90\x4f\x88\x27\x99\x59\x44\x8a\xd4\xda\xcc\x99\xbc\x7c\xa3\xa3\x73\x57\x1b\x3a\x07\xb3\x8f\xb0\x97\xa2\x7a\x0a\xca\x73\x12\xb7\x7c\x3d\xac\x82\x34\x54\x44\xbb\x99\x25\x89\x22\x11\x51\x00\x3f\xa0\x03\x04\x80\x12\xf0\x03\x1c\x80\x02\x94\x01\x15\xa0\x83\x3f\x21\xd0\x67\x60\x11\xf4\x54\xbe\x33\xfd\xea\x96\x1d\xf1\x21\x3b\xa3\x56\xaa\x7f\xf8\x82\x6f\xdd\x76\xb0\xa1\xe6\x32\xe3\x32\x24\xdd\x61\x57\xef\x46\xe6\x9a\xcb\x84\x62\x17\xc3\xf6\xff\xb1\x50\x80\x0a\x4b\xb3\x10\x00\x22\x40\x0d\xd4\x00\x15\xc8\xc2\xe3\xa3\xab\x14\x60\x53\x2a\x32\x69\x73\xed\x0b\xef\xcb\x62\xaf\xb5\xee\x97\xb8\xea\xd9\x99\x9a\xc0\x6b\x4e\xcf\x8f\x88\x21\xf0\xe0\x7e\x92\xaf\xc2\x2f\x24\xc1\x30\x41\xc0\x0b\x8f\x05\xa4\x00\x21\x60\x04\x64\x30\x2f\x08\x16\xcc\x99\x8a\x8b\x73\x47\x6b\xc8\x57\xac\xc4\x6f\xdc\xeb\xba\x1a\xa1\x94\x95\x59\x93\xdd\x17\xf8\xe9\xee\x25\xcb\xdc\x9b\xae\xc5\x32\xa7\xa4\x0d\xff\x68\xdb\x71\xed\x66\xc9\x0b\x8e\x3f\xe4\x3a\x68\x13\x40\x1d\x30\x00\x01\x80\x0d\x48\x00\x09\xa0\x03\xc4\x00\x0d\x70\x60\x33\x51\x0f\xf3\x49\x2a\x54\x19\x5d\xb8\x3a\x86\x23\x66\x71\xd7\x3c\xf6\x8d\xdc\xdf\x9f\x72\xad\x22\x0e\x84\xd4\x86\x65\x19\x85\xaf\xb9\x2a\x98\x70\x28\xc5\x09\x4c\xd3\xe7\xe0\x53\x03\x31\x98\x8e\xc4\x03\xb8\x01\x05\x6c\xa2\xc4\x09\x44\xb0\xe4\xa9\x6e\x78\x73\x14\xd8\x8d\x57\x5c\xdf\x86\xbd\xcf\xb2\xad\x09\xee\xf3\xff\x13\xf7\x56\x71\x5b\x73\xfc\x77\x2b\x55\x51\x6f\x82\xb8\x9f\x8c\x35\x9f\xd6\x3b\xc9\x46\x0e\x4b\xb2\x68\xd4\x7d\x40\x09\xc8\x81\x00\xac\xd7\x84\x14\xd0\x01\x36\xc0\x80\xa1\x45\xb5\xcd\x73\x2b\x57\x6f\xc4\xe1\xda\x1f\x4e\x9e\x65\x52\x63\xd7\x1f\x00\x85\x5e\xef\x1d\x38\x2e\xe0\xf4\x3a\x55\xab\x67\xa2\x84\xa9\xb8\x14\x1a\xe7\x2b\xa9\x09\x62\xd2\xcf\xe2\x93\x01\x42\x80\x09\x98\x00\x2a\x60\x02\x24\x80\x08\x48\x01\x12\x74\x23\x4a\x35\x9e\x1f\x72\xaf\x0d\x9f\xbb\xc4\x87\x66\x64\x7c\xa8\xa1\xe8\x63\x87\x42\xbf\x85\x9c\x6e\xad\x8f\x8e\x8a\x36\xcb\x15\xc6\xc5\x1b\xf9\x46\xd8\x70\x68\x7f\x95\x8a\xe4\x14\x25\x67\x40\x55\x00\xfc\x80\x16\xd0\x03\x1e\x20\x0e\x58\x00\x06\x60\x43\x49\x27\x85\xb2\xfe\x96\x08\xd5\x52\xb4\xca\xf6\x1d\x8f\x6b\x2f\x64\x6f\xd6\x86\x42\x1f\x1b\xde\xf7\xef\x67\xce\xb1\x76\x23\x57\xf1\x64\x50\x85\x79\xbb\x7a\x99\x86\xaa\xe8\x0b\xeb\x33\x9e\xe0\xaf\x03\x2c\x80\x0e\xdc\x00\x2a\xec\x6f\xa1\x0c\x04\x11\x93\x48\xdc\x59\x2b\x24\x58\xb4\x2e\x6c\x22\xfd\x69\x93\xa4\x4b\xb2\xdb\x61\x29\xcc\xcf\x4f\x8f\xcb\x9f\x65\x0c\x1f\x37\xb3\x17\xce\x24\xb4\xfb\x0b\xd8\x99\xe8\xbd\x96\xfd\xc9\x63\x4a\x25\x8f\xfe\x0a\xb0\xc2\x9d\x23\x8c\x23\xfd\x41\xf9\x86\x76\x80\x91\x8a\x13\x42\x63\xcf\x17\xa4\x50\x65\x74\xef\x62\x15\xf6\x31\x33\xa7\x46\xbc\x17\xd6\x5d\xf0\x50\xf6\x6e\x6d\xaf\x7a\xd6\xb9\xdb\xb5\xea\x59\x16\x6f\xe4\xa2\x27\x8b\x25\x8a\xc6\x8e\x84\x3b\x5b\x19\xa9\x26\x26\x1c\x76\x26\x6e\x0b\x3e\x94\xa8\x86\xe4\x15\xa4\x99\xa2\x83\x5d\x5c\x22\x54\x8b\xc9\x9a\xc1\xd7\x20\xbe\xac\x08\xbe\x25\x71\x8c\xe8\x2f\xc4\xd9\x3e\x7a\xbb\xc6\x3d\x86\xda\x0a\x29\x79\x9b\x02\x1f\xf2\xc2\x85\xda\x14\x4e\x85\x4f\x84\x87\x49\x98\x22\x93\x7a\x8c\x2e\x82\x31\x82\xe5\x1b\xfb\x3d\x37\x05\xdf\x94\x70\x81\xb2\x85\x09\xb9\x4b\x6f\xd8\x64\xc6\x65\x35\x51\x8f\xc1\x5c\xef\xff\x9d\xf0\xb3\xfb\x1d\xc3\x7e\xfe\xfc\x45\x5f\x5c\xbd\x6f\x7e\x71\xbc\x90\x7f\x97\xc3\xb5\xa1\x82\x92\x8e\x08\x16\xcf\x22\xff\x80\x50\xae\xe8\xa2\xa4\x83\xcc\xbd\xc2\x86\x2a\xa3\x16\xbf\x81\x82\xed\x73\xbf\x57\x09\x1e\x45\xda\x2d\xbe\xa3\xad\x6b\x7f\x6f\x88\xfd\x6c\x76\xea\xb2\xe9\x34\x99\xde\x55\x55\x75\x97\xa3\x16\x2b\xe1\x1b\x68\xbf\x6d\xc2\xa1\x6e\xaa\xf0\x47\x79\x4f\xed\x48\x8b\x42\x77\xd7\xf0\xde\xf4\xde\xf2\xc2\x3e\xd0\x4d\xc9\xaf\x38\xca\x3b\x6b\xb6\x46\xaa\xe7\xe7\xdc\xcf\xe7\x7f\xef\xe8\xff\xad\xf8\xc1\xf9\x90\x71\x65\x72\xe4\xbe\xed\xb6\x42\x34\x9b\x30\x36\x32\xa0\xd6\xf5\xde\x92\xd7\xd4\xc9\x1c\xc9\x0a\x62\x6b\xe0\xc8\xe7\x9a\xed\x45\xe9\xaf\x17\x2a\x18\x63\x9b\x0a\xf2\x88\xca\xb5\xdb\x11\xc7\x09\xd6\x97\x4e\x8a\xfe\x41\xdf\x6f\xdf\xde\xe8\xec\x57\x2e\xda\x0d\x77\xb6\xc7\x57\x6b\xe4\xe5\x24\x97\x44\xd4\xf8\x1a\x7a\x74\x79\x8b\xfa\x59\x05\xc6\x87\xea\x45\xfe\x8a\x6b\x4d\x51\xcb\x4a\x2d\xdc\xab\x72\x6e\x81\x74\x9b\x8f\x1e\x2f\x4d\x1c\x40\xae\xfe\x33\x07\xb9\x3b\x3c\x6f\xdb\xff\xb1\x9c\x32\x2e\xfc\xf4\x77\xc3\x52\x19\x5b\xf6\xe7\x44\x89\x58\xba\x78\xb3\xa4\xaa\xd4\xb3\xcc\xb1\x3c\xce\x62\xb7\x8a\x86\x7a\xf5\xb6\x2f\x7d\x33\x13\x2a\x8b\xf0\x9b\xc6\x87\xfd\x6f\xd0\xbf\x75\xfc\x8b\x81\x88\x7c\x2c\x3e\xd7\x7b\x99\xb4\xfd\x75\x75\x7d\x1e\x75\xc2\x76\x98\xb9\x77\xaa\x0b\xa9\xf5\x69\x63\x4f\x5d\x55\x75\x7b\x65\x50\x85\x7c\xa3\x74\xef\xd5\x64\xc7\xea\xdc\xf3\xae\x73\x70\x7b\xf0\xbb\xf3\x3f\x0c\x84\xf7\xee\xfc\xb2\xfe\x65\xd3\xe6\xe9\xe2\xcf\xc9\xca\x21\xc2\xee\xea\xd6\x67\x0d\x7c\x55\x0b\xa5\x09\x85\x22\x39\x5f\x32\xbf\xa5\xfd\x4c\x29\x4b\xf6\xca\x3b\xad\x95\xef\x5c\x1b\x29\x5f\xe0\xdb\x9e\x3f\x8e\xbc\x96\x79\x48\xfa\xfb\xf9\xa0\x4f\xde\xa7\xef\x77\x4f\x96\x85\x26\x66\xfa\xb3\xda\xd7\x1b\x48\x2a\x36\x8b\x78\x72\xf8\xd2\x2c\x13\x09\x62\x66\x22\x34\x42\x51\x03\x7f\xfa\x3f\x04\xe0\xc4\xf5\x64\xf7\x54\x24\xb4\xa2\x0d\x20\xcc\xbc\xda\xe4\x3d\x7a\x72\x8d\xf2\xfb\xaf\xcd\x2a\x9f\x83\x4e\xb5\xb6\x54\x67\x87\x06\xaf\xdb\xbf\xd5\x91\x94\x2a\xe6\x3c\xa4\x16\xc7\x95\x47\x70\x06\x39\xfa\x54\x7b\x68\xba\x10\x39\x58\xda\xc2\x59\xed\xd9\x69\xfb\x22\x46\x11\xa6\x1f\x94\x68\x35\xaa\xf5\x2a\x4d\x7b\x6e\xa2\x1d\x0b\xde\xf4\xfe\x31\x82\x42\xbf\x9f\x9d\xe7\x6f\xc5\xcc\xe0\xf4\xd6\x34\x06\x97\x99\x67\xff\x4e\xda\x8a\x52\x0a\xb2\xf1\x3a\x71\x21\xb0\x13\xb0\xc8\x34\x79\x69\x40\xa7\x8b\xaa\xc9\xa9\xd6\xab\x97\x6b\xfd\xe8\x39\x12\x4e\x9e\x62\x56\x98\x54\x5f\xda\xcb\x35\xe3\xbc\x0d\x4e\x67\xee\xca\xa0\xd0\x0f\x7f\xf6\xed\xe6\x3e\xf7\x08\xd7\xc9\x17\xa8\xa4\xec\x44\xd1\x07\xb8\xb9\xc7\xd8\xcb\x98\xd7\x1b\xda\x6b\x4b\xa8\xd2\x28\x48\x48\xfb\x4b\xd0\x88\xfe\x11\xec\x94\x4d\xd5\xb1\xb0\x2c\x75\xa7\x0f\x59\x4e\xda\x29\xb4\x6c\x68\xed\xb7\x9d\x57\xdf\x33\xba\x7c\xbc\x57\x3c\xfa\xba\x34\x39\xb0\x5d\xf7\x35\xef\x5d\x02\x61\xb0\xb9\x87\x89\x9d\xb8\xe9\xbd\xae\x98\xaa\xa2\xec\xa0\xb8\x9b\xc0\x0d\x0f\x1e\xc7\x18\x6b\x14\x4b\x21\x13\x07\xaf\x8a\x0c\x9c\x56\xba\xf9\xa6\xeb\x7d\xc8\x7c\x0a\x7c\xf1\x45\x33\x74\x58\x7a\x85\xf1\xe5\xee\xd5\xc6\x0e\xd2\xb8\x7d\xeb\xcb\x82\xd9\xf8\xfd\x00\x6c\x67\x26\xb3\x1e\x5d\x41\xe5\x26\xa9\x04\x21\x05\x2e\x15\xe6\x68\x5a\x65\x2a\x34\x0a\x6c\x32\x4c\x08\x0a\xf1\x0a\xad\x01\xcf\xbd\x74\xbb\x16\xb5\x05\xb7\x7b\x5e\xf8\x5c\x7a\x57\x05\x5d\x47\xca\xa4\xe8\x26\xfc\x25\xd2\xf2\x50\x0f\x5c\x79\x5f\x72\x55\x40\xb2\xfd\x1b\xa3\x5d\x35\x5e\x69\x5b\xc1\x00\x0e\x2c\x7a\x39\x72\x72\x42\x37\x9c\xef\xd8\xf8\x18\xe3\x68\x3f\x50\xbd\x50\x32\xf1\xee\x68\xb7\xf9\x98\x65\xa7\xf5\xa9\x6d\x42\x7d\x3d\xe3\x40\xae\x6a\x3d\x6f\xff\xe2\x42\xce\x81\xc4\x94\x49\xf3\x51\x76\x78\x04\xab\xab\xa2\x09\x89\x32\x87\x68\x05\xe7\x39\x7d\x12\x64\x1a\x37\x1b\x35\x11\x91\x1e\x74\x01\x55\xc0\x01\x20\xc0\x18\x90\xa1\x2f\x52\x70\x71\x8a\x48\x5c\x6a\x24\x99\x95\x79\xc0\x45\x78\x66\x2e\x55\xfa\x3e\xcd\x9b\xb6\xdf\x1a\x1d\x72\xac\x5a\x4d\x2b\x0c\x0a\xb6\xd3\xd0\x6e\x92\x88\x66\xab\xa3\xe8\xc6\x7b\x89\xaa\x05\x20\x40\x04\xe0\x03\x7a\x40\x0a\x53\x8c\x55\x01\x05\x8a\x19\x84\x90\x15\x4e\x14\x45\x45\xd3\x64\xcf\xd5\x2e\x9c\x34\x23\xa2\x6a\xfd\xe9\x8f\xd9\xe1\x67\x3b\x3d\x09\x95\x58\x29\x26\xfe\xe7\xd6\x7e\x1a\x48\xc2\x63\xf4\x75\xb8\x46\x88\xee\x80\x06\x68\x03\x0b\x40\x0c\x18\x00\x15\xa0\x02\x6c\x00\x02\xc4\xe0\xea\xf1\xcb\xe9\x36\xf8\x1c\xe5\xba\xf5\xfb\xec\x87\x03\xaf\x93\x1c\x4b\x58\xda\xac\xc7\x94\x16\xfb\x7a\x75\x2b\xbb\x53\xcd\x03\x09\x6d\x6a\x34\x56\x45\x8c\xe8\x57\x71\x76\x01\x21\x10\x02\x9a\x30\xcf\x1f\x3e\xc0\x02\xb8\x00\x17\xf0\x02\x29\xc0\x80\xd5\x43\xf1\x91\xe3\x4c\x52\x4f\x4b\xd4\xaa\xca\x27\x2d\xee\x7b\x7e\x5c\x93\xf4\x90\xe7\x4a\xf4\x00\x73\x2d\x67\xa6\x49\x48\x8c\xbd\xaa\x0e\x9d\x04\x1c\xcb\x1b\xe2\x5e\xc4\x0b\x40\x04\xf0\x81\x18\x60\x01\x74\x80\x08\x50\xc0\x6e\xae\xac\x80\x0b\xd5\x96\x14\x9f\xf9\xa3\x28\x9c\xea\xbe\xd9\x95\x27\x7e\x94\x4a\xb6\x75\x5d\x78\x3f\xee\x06\xc2\xa8\x5f\xd3\xd7\xdc\xb3\x48\x0a\x97\x1c\x43\x46\xb9\x00\xee\x20\x4a\x7b\x8c\x3e\x18\xee\xd3\x00\x3e\x40\x06\x68\x01\x26\x60\x84\xa9\x20\xf8\x08\x1b\x04\x22\xf4\x09\x02\x72\x8a\xd9\xc6\x5f\x5c\x89\x43\x3f\x64\xbc\xa9\x86\xef\xc1\xdb\x6b\x9e\x29\xec\x10\x28\x0e\x88\x5b\xf6\x02\x66\xfe\x2a\x75\x42\xa5\x0c\x61\xf8\xcf\xe1\xb2\x81\x25\x20\x02\x82\x80\x00\x50\xc0\x7e\x52\x02\x6a\x80\x02\x88\x70\xf0\xa9\xc5\x79\xf8\x65\xcd\x0d\x72\x1d\x95\x83\x8f\xd2\xe8\x2b\x29\xbb\xe0\x8f\xc0\x52\x5a\xef\x5c\xa5\x7e\x0a\x72\x40\xaa\x6d\xba\xf6\xb6\xe4\x08\xfb\x14\x19\x26\xea\x19\xc0\x01\x64\xb0\xe7\xf0\x01\x2a\x20\x07\x2c\x30\x17\x02\x1d\x46\x19\x05\x33\xe7\x82\x94\xa5\xce\x90\x9d\x55\x40\x49\x92\x72\xe9\xfb\x0e\xce\x8b\x83\xf5\xea\xe1\x8d\xba\xb6\x6c\x83\xf0\x19\x97\x2c\x63\x7e\x45\x3e\x7e\x16\x5a\x19\x5c\x1c\x20\x06\x70\x01\x23\xa0\x03\xd4\x80\x12\xf6\x89\x04\x01\x03\xc0\x45\xbb\x24\xcb\x61\x3f\x95\xe2\xd3\x99\xb0\x29\x0e\x60\x4f\xbc\x2f\x53\xee\xb0\xfa\xb0\xb7\x7b\x32\x71\xd9\x66\x52\xa4\x1f\x37\xee\x1d\x62\xa9\xa7\x51\x20\x16\xc8\xca\x43\x4a\x8c\xfc\x03\x30\x02\x5c\x80\x00\x08\x01\x29\x0c\xbd\xf9\x01\x1b\x60\x43\x59\x83\x98\xb0\xd3\x4a\xb8\x68\xbf\xb5\xb9\xf1\x7f\x97\x44\x5b\xb2\xd5\xb6\x74\xc7\xf7\xf2\xfd\xc2\xab\x9e\xca\xca\xbc\x34\x93\x60\x67\x47\x4b\x83\x38\x39\x57\x5e\x3d\xea\xdf\xd8\x75\x80\x18\xa6\x80\xa0\x03\x56\x18\xf6\x92\x03\x42\x80\x83\x9c\x4e\x5a\xcd\x46\x26\x81\xaa\x65\x6e\x0b\xef\x9f\x9c\xa8\x5b\xfc\xd0\xde\xfc\xdd\xea\xac\x78\x1d\x61\x98\xb6\x31\x22\x4f\x22\xfa\xab\x27\x93\x79\xb0\x7a\xa8\x68\x04\x4b\x04\x89\x26\x52\x20\xc0\x82\xf9\x58\x59\x00\x2d\x8c\x89\x30\x01\x26\x24\x21\xe2\x16\x56\x13\x09\x0d\x6d\x2c\xab\x5b\xbf\xbc\x84\xea\xe2\xc2\xb6\x8a\x3f\xbf\xdf\x5b\xed\x7e\x9b\xd6\xe8\x84\x94\xfe\x4c\x91\x08\x4c\x70\xc0\x35\xc0\x96\xe3\xe6\xb5\xa3\x3e\xc7\x86\x07\x10\xe0\x08\x44\x01\x0b\xac\xdb\x8c\x0c\x48\x01\x46\x84\x7a\xa2\x2e\x16\x4e\xb1\x0b\xcd\x08\x1b\x64\x3f\xe7\x84\xdb\x52\xf8\xb6\x41\x28\xf4\x53\xc0\x2b\xc9\x65\x95\x81\x27\x75\x33\xd9\x77\x51\x8a\x1e\x1d\xe6\x4e\xea\x2e\xa2\xef\x59\x89\x49\xb4\x11\x9b\x00\x12\x80\x00\x09\x80\x0a\x9b\x69\x61\x00\x31\xb8\x6b\x7c\x03\x3a\x1c\x89\x0b\xa5\xf7\x26\xc2\x81\x36\x91\x28\xd9\x2f\x6b\x44\xa0\xd0\x1f\xa8\x17\xfb\xdb\xbc\x13\x07\xed\x0c\xa5\x81\xc9\xaf\x82\x24\x1d\x32\x0c\x5c\xe4\xbb\xf8\xc6\x68\x3d\xb1\x7d\x00\x29\x60\x07\x84\x80\x0e\x48\x02\x12\x20\x0c\xa8\x80\x0e\x0e\x31\xcd\x3d\x5f\x95\x62\xba\x89\x98\x1b\x42\xc4\xd3\xec\xa6\xba\x20\x98\x76\x80\x77\xb0\xbb\x38\xdb\xef\x5f\x7b\x95\x53\x14\xfd\xc2\x1b\x58\xae\x6b\x66\x48\x54\xb0\xf3\x90\x7e\x40\x2a\x00\x94\x80\x16\xbc\x47\x20\x43\xcc\x44\x6e\x41\x65\x44\x2f\x22\x41\x62\xe9\x13\x3b\xd4\x14\xb5\x9a\xf3\xf5\x48\xc0\x2c\xda\x6d\x7d\x0a\xc3\xbb\x77\x67\xe7\x9b\x9f\x26\x4c\xdb\x23\xca\xea\x53\x95\x43\x84\x9d\x67\x4d\xe8\x95\x67\x05\x77\x18\xfa\xf1\x78\x51\x63\x31\x12\xb1\x44\x70\x1a\xf0\xde\x13\xda\x10\x7d\x25\xd5\xa7\x6b\xe0\x97\x50\x48\x37\xb2\x73\x4e\x0d\x3d\xcf\x30\xac\x7a\xdf\x03\xf3\x4f\xfe\xe9\xf9\xf0\x78\x90\xbd\x78\x30\x30\xd5\xc0\x91\x5f\x1e\xd7\xeb\x2b\x61\x0b\xd5\xe3\x97\xa5\xe5\x51\xa1\x3c\x25\x6a\x27\xad\x20\xd3\xa1\x98\xa6\xc6\xa4\xed\x62\x20\x62\xca\xe3\xb2\x97\xca\xd5\x76\xb0\x4e\xf2\xe5\x8c\x67\x2a\x34\x6a\x6e\x1d\xfd\x6b\x33\xdb\xd7\x84\xf3\xf1\xad\x87\x29\xca\x2e\xcf\xca\xe2\x4c\xbc\x88\x37\x1e\x55\x16\x27\x5a\x38\x92\xb4\xec\x03\x74\xb5\x8c\xdc\x4c\xcf\x59\xdd\x39\xd2\xb9\x7e\xf1\x2e\x0b\xd4\x8a\xdd\xab\x41\x9e\x70\xba\xa1\x87\x47\x65\x12\x57\xbd\xe9\xbe\x9b\xa3\xfe\x0b\xb5\x0c\x3f\x2a\x1c\xea\xae\xd4\x0c\xd7\xb6\x38\x94\x3c\x4f\x25\x0c\x19\x70\xf5\x7d\xe2\xaf\x1e\x26\x86\xc4\x67\x2e\xa8\x20\x82\x29\x4e\x2d\x95\x25\x3b\xa1\x28\xa9\xd2\xaf\x51\x66\x44\xec\x50\x11\xb0\x92\x78\x50\xac\xdd\x8a\x39\x3a\xb3\xf6\xf7\xdd\xfb\xfe\xf2\xd2\x73\x77\x61\xae\xa6\x2f\xb1\xfe\x57\x41\x4c\xe2\x42\x10\x9e\xb3\xa6\xc9\xa3\xba\x92\x12\x95\xca\x77\xf5\x63\x6d\x04\xbd\x26\xa3\x90\x27\x10\x8b\x13\xdb\xdf\xce\x3e\x3e\xcf\x63\x24\x72\x0a\x6b\x6b\xfa\x08\xe6\x17\x9f\xff\x6b\x47\xff\xed\xbb\x13\x8a\x4d\xcc\xa9\xe5\xa7\xdb\xb5\x54\x79\x18\xf1\x8d\x41\x8c\xae\xef\x2c\x9d\x9e\x28\x99\xbf\xb5\xba\xb7\xa3\x76\x7c\xea\xfa\xd1\x73\xc2\xcf\x26\x78\x39\xb2\x21\xe1\x36\x33\xa1\xfc\xae\xa3\x6c\x22\x79\x63\xe3\x34\xe2\x9f\x13\x7e\xf5\x7d\x60\x3e\x2c\x7f\x16\x3c\xce\xd8\xf9\xa9\x26\x3c\xbf\x28\xc5\x3f\xe2\xc6\x47\xcf\xd3\xc1\xfb\xce\x9f\x28\x48\x20\xf4\x5b\x14\x77\xdc\x50\xb2\x76\xc6\xc7\xbc\x37\xe5\x62\xf5\x3f\x3a\x91\x86\xc7\x97\xa3\x5e\x3a\x7c\x18\xfd\x37\x05\xf8\x4e\xf6\x36\xfb\x45\xe5\xca\xdb\x89\xe4\xee\x8f\x0d\x5f\xcb\x82\xb3\x95\x12\x66\x62\x47\x13\x08\x93\x05\xd2\x0c\xb2\x20\x79\x1a\xc5\x7a\x15\xce\xb5\x17\x2d\xfb\xdd\xb9\xc3\x7f\x66\xef\xd7\x50\xf7\xeb\x2f\xbf\xdd\x4b\xfc\xf3\xfc\xfd\xde\xc7\x9e\x73\xf7\x97\xad\xdb\x8b\xab\xcb\x73\xdf\x27\x5e\x0e\x6b\xf6\x91\x74\x59\xb5\xd1\x36\xa5\xd7\xff\xa8\xc9\xae\xe6\xae\x78\xd7\x8c\xdc\xaf\x37\xbd\xbf\x06\xff\xe2\xe9\x85\xc5\x27\x9b\xc7\xff\x36\x9b\x2a\xde\xfd\xb8\x1c\x79\x39\xb4\xf9\x67\x89\x7c\x72\x65\x48\xb9\x7b\xac\x8d\xa8\xc1\xa4\xea\x77\xe9\x7d\x11\x5b\xee\x71\xd6\xf3\x4c\xe1\x34\x9e\x14\xcb\xc2\xd5\xba\xf3\xa7\x74\x63\x90\xc5\xfd\x9d\xe6\x13\x99\xeb\xd3\x87\x7f\x9a\xdd\xd2\x6e\x03\x4f\xe3\x77\x6b\x97\xb5\x27\x5e\xf7\x3f\x6d\xff\xd5\xa0\x51\xf1\xbd\x28\x3a\x27\x35\x6d\x2d\x31\x3f\x76\x21\x52\x3f\xec\x55\xa8\x45\x50\x6b\x50\x49\x82\x67\xae\x49\x95\x42\xeb\xdb\x41\xba\x39\xac\xcd\xbc\x23\xbb\x6b\xac\x87\xbf\x76\xcc\xdd\x11\x1d\xff\xd8\xac\x9e\x5d\x1d\xbc\x69\x87\xd6\x49\x94\xfa\xe6\x92\xa4\xa6\xc4\x75\x44\x94\x04\x0d\xfb\x8a\x7a\x3a\x7b\x1a\xb8\x89\x39\x39\x3b\x31\x3a\x0a\xfa\x43\x62\xd2\x32\xa9\x4b\xe1\x1a\x9f\xf7\xee\x4d\xd7\x6d\xbc\x3b\x3a\xbc\xfe\xf8\x28\x01\x85\xde\x53\x9f\xae\x6f\x65\x4f\x7f\xea\xcd\x6c\x4c\x2b\x63\xcf\xa1\x4e\xfa\x13\x15\x15\x14\xe3\xad\xe4\x92\x67\xf7\x68\x95\x6d\xd1\x68\x8e\x63\x32\x6f\x2c\xa3\xff\x68\x40\x6a\x27\xe6\x2d\x18\x41\x95\x32\x54\x44\x50\xbf\xda\xf3\x38\x7d\xbf\x45\x71\x92\xfc\x29\xf9\x8f\xed\x3b\x96\x7d\xe6\x99\x82\x9e\x88\x3a\xa3\x02\x9f\x94\xfd\x28\xf1\x80\x62\xf7\x59\x7b\x3f\xf3\xe7\x46\x16\x3a\x7a\x9a\x0d\xea\xc8\xaa\x6e\xca\x5a\x8a\x0d\x8a\x42\x0a\x9a\x7a\x28\xd6\x54\x1e\x5c\xa1\x4a\xc9\xa0\xd0\xac\x81\xa4\x4f\x7f\xf6\xed\xce\xe2\x85\xe2\xdd\xde\x51\xf3\x32\x7d\xdf\xc7\xba\xc7\xbc\xbb\x04\xca\xe0\x16\x0f\x27\x3b\xa7\x27\x92\xba\x35\xaa\x3b\x72\x43\x32\xec\x12\x44\x62\x6e\xa2\xdb\xc2\x42\x42\x1a\xfc\x7d\x02\x0c\x72\x18\xda\xc5\x16\x78\xae\x3f\x42\x2c\x92\x95\x8b\xcc\x9a\x94\x07\xe1\x17\x6f\x5f\xa8\x5f\x05\x6c\xea\x8f\x7b\x34\x85\xe7\xb3\xc5\xc5\x04\x60\x3b\x7e\x36\xeb\xd5\x35\x57\xbe\x94\x06\x42\x5f\x79\x9f\x71\x55\xb1\xbf\x66\xab\x65\x29\x63\x6a\x67\x2c\x66\x90\xa4\x77\xe3\x7d\x26\xfd\x4c\xf3\x93\x79\x9e\x5b\x6c\x68\x6d\x6a\x6d\xe9\x43\x5b\xfe\x58\xdf\x1a\xe3\x29\xf6\x82\x7d\xd7\x54\x49\x5e\xc2\x90\xbf\x98\x03\xa1\x91\x96\x1a\xb7\xb4\xab\xe0\x22\x47\x13\x13\x13\x9d\x3c\x55\x3e\x79\x01\x99\x1b\x69\x2f\x31\x05\x61\x25\xc1\x35\xc1\x0e\xed\x3d\xcf\x84\x74\x93\xd6\x85\x25\xab\xc7\x8b\xc8\xa5\x2c\xbd\xea\xe9\x1e\xf6\xd9\xfc\x03\xa5\xb1\xa5\x7a\x8c\x6c\xcf\x08\x88\x2b\x9f\x09\x50\xc6\x15\xf9\xcd\xd9\x43\xbf\x44\x4e\x4d\xec\x8f\xbf\x8a\x3d\x87\xf9\x06\x1d\x17\x75\x0c\x39\x01\x19\x01\xf1\x12\x71\x80\xc0\x90\xbe\x9b\x7f\x51\x5e\x58\xcf\xd3\x3e\xc6\xff\x20\x81\xb6\xc8\xa6\x19\x8c\xa4\xae\x6d\xf4\x21\x55\x4d\xa4\x25\x05\x39\xdb\x89\x68\xc7\x4a\x68\xb3\xf9\x53\x40\xf0\xf1\x30\x09\x50\x52\x11\x0c\x00\x37\x10\x00\x78\xb0\xfb\x33\x1b\xe0\x03\x1a\xd8\x7b\x54\xa3\x5c\x26\x92\xde\x5a\x32\x96\xb6\x5e\x9f\x63\x2a\x72\xbd\x6a\x9f\xf7\x4d\x2f\x7c\xe9\x09\xad\x84\x4b\x51\xf5\xdf\xb6\x36\x57\x7f\x2f\x1c\x46\x4f\x81\x83\x8e\xe0\x0b\xc3\x49\x1c\xc0\x0b\x44\x01\x35\x50\x80\x79\x39\xd8\x00\x3d\x06\x16\xf9\x1e\x3b\xbf\x38\xbb\x7a\x85\x05\xbc\xa7\x4d\xd4\x41\x1e\x56\x9d\xef\x40\xc8\x62\x6b\xaf\x52\x65\x7d\xaa\x66\x20\x82\xcd\x9a\x66\xb3\xa8\x3a\xe3\x1a\x41\x35\xdc\x67\x98\xf2\x41\x07\x28\x00\x3a\xb0\x84\x25\x31\xd0\x01\x0e\xe0\x44\xda\x26\xf2\x60\x42\x14\x4c\x53\x22\x32\x3a\x72\xe1\x0e\x2d\x4e\x0f\xae\x3c\x79\xea\xb5\x12\x38\x40\x51\x4b\x93\xa9\x1a\x9a\xe6\x48\xa4\xfb\x4d\x1a\x91\x23\x8c\x6c\x17\xf5\x25\x6c\xe2\xc0\x0b\x9b\x01\xd1\x03\x26\x98\x07\x81\x1e\x50\x83\x23\xdc\x53\x1a\x71\x9e\x31\x59\x73\xbd\x51\xfb\x17\x81\x8f\x29\xb8\xa5\x85\xed\xeb\xeb\x3f\x47\x9d\x9b\xb1\xf3\x03\xa3\x42\xdc\xf8\x4c\xb2\x15\x6f\xf9\x7b\x68\x5b\x70\xa5\x60\x7a\x01\x26\x20\x01\x14\xb0\x09\x04\x0e\x2c\x95\x42\x03\x98\x30\xb1\xc8\x6b\x39\x04\x24\xf5\xb5\x19\x6c\xe4\xfc\xe2\x13\x22\x8b\x32\x5a\xea\xf7\xaa\x66\x86\x3b\x6b\x4b\x36\x13\x1c\xfd\x50\xad\x38\x35\x8e\xc5\x5a\x59\xa9\x48\x2c\x90\x3e\x00\x24\x40\x0d\x18\x01\x13\xe0\x02\x64\x80\x05\x08\x01\x02\x60\x0a\xc8\x50\xa0\xa4\x54\x2c\x10\x31\x2e\xf5\x18\xcb\x3c\x6f\x8f\x58\x8c\x82\xb5\x26\xbe\xd7\xdf\x57\x9e\xf4\x23\x55\xab\xa6\xf3\x07\x97\x38\x72\x18\xb0\xca\xf1\xf2\x30\x53\x15\x62\x79\x02\x32\xd8\xf7\xc0\x01\xcb\xd3\x90\x03\x26\xc0\x0c\x70\x01\x32\xc2\x47\xc2\x1c\x86\x65\x21\x71\x95\x5f\x66\x0f\x1e\x79\x31\xdc\xb9\x93\xf5\x41\x6f\x44\x37\xb9\x47\x7f\x37\x36\xe4\xf1\x46\x97\x79\x24\x99\x65\xa8\x5a\x08\xdd\x33\xfe\x21\xdc\x44\x44\x07\xf2\x30\x06\x86\x0e\x68\x00\x21\x80\x00\x08\xa0\x06\x18\x70\x9b\x78\xbf\xe8\x0f\x05\xf3\x95\x1f\xcc\x06\xdc\xcd\xa2\x10\x73\x53\xeb\x27\x3f\x1a\x3c\x47\x98\x76\xe9\x8c\x29\x6d\x4c\xca\x0b\xb0\xb1\x3d\xd5\x59\x96\x36\xe5\xdc\xa0\xc8\xc5\x98\x04\xc4\x00\x17\x50\xc0\x1a\x3d\x38\x01\x1b\x10\x06\xa4\x40\x1c\x60\xe2\xa9\xd1\xa9\x08\xc8\x2b\xf3\x98\x7c\x77\xb3\x8d\xf2\xc8\x49\xad\x6f\xfe\x52\xf7\xea\x6e\xb9\xb4\x9f\xa2\xd6\x23\x0b\x2e\x7c\xc2\x35\xdd\xe4\x50\x59\x55\xf0\x0d\xc3\x18\xc1\x20\x7c\x19\x10\x04\x2c\x00\x1b\x08\x03\x7a\x40\x03\x88\x60\x9c\x8e\x1d\x17\x9e\xd6\x81\x7f\x53\xe9\xdc\x04\xdb\x6d\x35\x82\x24\xbb\xa6\xae\xe5\xa7\xe2\xc5\xcb\x4d\xdd\x31\xdc\x96\xe2\xc2\xed\x04\x46\xdf\x0e\xeb\x47\xed\x78\x29\x05\x4e\x46\x0a\x67\xf4\x05\xd8\x14\x86\x02\xe0\xc2\x5c\x10\x14\x00\x07\x08\x00\x19\xec\x6d\x9a\x79\xfe\x24\xc5\x5c\x53\x2c\x37\xe3\x88\xba\xac\x91\xba\x5f\xd0\xef\x1f\xe8\x9f\xa7\xcf\x31\x75\x3f\xab\xfc\x91\xfe\x29\x4c\xc5\xa5\xda\xc4\x50\x19\x41\xf0\x9e\x61\x85\x60\x0b\x7c\x06\xd8\x40\x15\xa6\x25\x71\xc3\xba\x4d\x74\x80\x31\x56\x2f\x2d\xa7\x80\x99\x72\x95\x2e\x8b\x3b\x73\x34\x7d\xf2\x45\xc3\x16\x14\xfa\x85\xfe\xf8\xc3\xb3\x9d\x11\x86\x66\x85\x82\xb1\x78\x23\x5f\x75\x1b\x67\x1d\x02\x69\x04\x2e\x01\x8a\x74\x74\x59\x40\x09\x18\x00\x04\xe8\x00\x4c\x58\xa6\x86\x09\x90\xa0\x4e\x41\x5e\xb3\xdf\x4a\xa4\x6a\xed\xda\x46\xfb\x0b\x27\xe9\x94\x92\x40\xa1\xbf\xb6\xde\x5e\xee\x0e\x4e\x3f\xef\xc6\xa9\x42\x4a\x9f\x0e\xc7\x70\xd5\x30\x5d\x51\x59\x14\xbe\x61\x8a\x23\x8c\x82\x03\x00\x03\x60\x03\x69\xa0\x0a\xe7\x80\x00\x41\x2c\x43\xce\xc0\x62\xa0\x7a\xcd\x4b\x21\x9f\x69\x24\xe2\x7c\x11\x36\x91\x69\x56\x03\xdb\xfe\x70\x27\xfd\x7a\x76\xb5\x67\xd8\xbb\xa9\xbc\x30\x24\x7e\xdc\x5f\xcc\x4e\x5b\x5f\x4c\x4e\x93\x17\x8b\x6a\x1e\x63\x09\x89\x07\x15\x0d\xdd\x15\xb3\x0c\x7b\x1a\xd7\x05\x3f\x92\x10\x0d\x42\xc7\xea\x28\xd6\xaf\x91\x67\x39\xef\x23\x1a\x37\x55\x68\xdc\x82\xf9\xff\x4e\xf8\x51\xfe\x16\x7f\x4f\x62\x16\xd2\xed\x5d\x55\x96\xe9\x15\x89\xe5\xb1\x62\x91\xa0\xb1\x2e\xee\xc9\x76\x47\x42\x89\x8f\x46\xa4\x4a\xa2\x02\x89\x22\x5f\xa6\x3c\xa5\xa9\xa7\xb7\x65\xc2\x16\xf8\xa9\xe8\x63\x54\xe6\xac\x1b\x6a\x9e\x5e\x55\xf9\xb5\xfb\xaf\x5d\xe0\xb7\x75\xaf\x7f\x3e\x73\x1e\xd5\x69\xb9\x28\xfe\x92\xb4\x15\x4c\xef\xbc\x6b\x62\xaa\x6c\x2e\x64\x45\x1f\x4b\xf5\x40\x1b\xca\xa0\xc2\xd4\xc9\x4a\xcf\x2e\xcc\x85\xc1\xf3\x55\x00\x5e\xd6\x53\x17\xdb\x26\xd8\xb7\x30\x5e\xb0\x90\xb0\x99\x65\xc4\xeb\x2f\xd4\xa5\x7c\x9b\xb8\x5f\x32\x8f\xd0\xbb\x59\x77\x9d\x47\x13\x4f\xea\xaf\x64\x27\xa6\x5f\x22\x6f\xc8\x33\xc2\x51\xcd\x2d\xcb\x1b\xc2\xef\x23\x34\x2e\x3a\x23\xc1\x28\x15\x22\xc7\xa0\x99\x64\x81\xe0\xfe\x35\xc2\x27\xb3\xbe\x9a\xae\xfb\xcd\xec\xdf\x19\x8a\x3b\xd1\x93\xe8\x8d\xee\x89\x1f\x1d\x5f\x2b\xca\x32\x37\xa3\xd2\xbc\xa5\xad\xa0\x3a\xda\x52\xd7\x62\xa4\xe2\xa3\x52\x8c\x32\x6e\x0a\xb2\x4a\x5e\xaa\x67\x1a\xf7\x3a\xe7\x4f\x38\x9d\x3f\x05\x07\x27\xaf\x97\x94\xb4\x36\x8e\x91\xac\xad\xfc\xef\x84\x07\xfa\x2b\xa9\x97\x88\xcb\xe1\xc3\x25\xad\x8c\x65\x94\x69\x75\xe1\xf5\x1e\xd7\x96\xd1\xda\x4c\x2a\x54\x6a\xd7\x9a\xdf\x74\x36\x0c\x24\x8c\xc7\xcc\x0c\x2d\x2f\x6c\x47\x9d\xb8\xfc\xbf\xc7\xb3\xe6\xc3\xd5\x27\xf7\x67\x2c\xcc\xbd\x20\xfe\x07\x7c\xbf\x9c\x5c\xd0\xef\x5a\xcd\x3d\x0e\xa0\x37\xae\x97\x70\xa6\xdc\x85\xe1\x79\x60\x5b\x11\x98\xed\x5b\xfa\xda\x38\xdb\xfb\x38\x63\xb9\x1d\x7a\xed\xfb\xf5\x05\x6b\x47\x44\xc5\x31\x66\x9b\x54\xb5\x75\x55\x4e\x59\x6f\x3d\x39\xfb\x77\xa7\xe7\xd5\xed\xfe\xc9\x8b\x2d\xad\x99\xe0\xde\xac\xc6\x90\xa2\xd9\x94\xb1\x88\x0b\x5f\x49\xaf\x4e\x5f\xe1\x00\xa5\x60\xc5\xb0\x0f\x51\xbb\xf1\x9a\xc9\xf9\x19\xa5\xb9\x6b\x25\xb1\x35\xb9\xed\xd2\xa3\x76\xab\xb1\xaf\xb8\xaf\xff\xb3\xab\xf6\x81\xe3\x63\xee\xeb\xe3\xf5\xa9\xa9\xb5\xde\x9f\x4d\x51\xe5\x58\xd9\xf7\x09\x26\x71\x9b\x89\xac\x29\x4a\xe9\x96\xd9\x68\xf9\x74\xc5\x63\x15\xcc\xb5\x2d\x4d\xc7\x9d\xcb\x03\x75\x93\x0f\x4b\x9f\x9e\x9b\xbc\xd5\xfe\xf7\x9e\xde\xef\xec\xd7\x78\xe7\x1b\x87\x24\x3b\x92\xcf\x54\xe6\x63\x27\x7d\x86\x1f\xfa\x47\xbb\x87\x7a\xc6\x3b\xf2\xdb\xef\xdb\x24\x9b\x65\x1a\x05\x5b\xee\x06\xbe\xce\x22\xaf\x7f\x3c\x78\x7b\x99\x73\x67\xf3\xf8\xf2\x3f\x0c\xa4\xe4\x6e\xe9\x0d\xc9\x21\xd9\x96\xeb\x52\xf6\x94\xda\xd0\x4e\x8f\x7e\x5b\x75\x23\x4e\xf5\xb3\x0a\x87\x4a\x9b\x8a\xc8\x32\xe4\x22\xfb\x02\xdf\x5c\xe5\x62\xcf\xfa\x87\x6e\xf7\x71\xb7\xa5\x9b\xdd\xd1\x53\xac\x1b\xac\x87\x7f\xbc\x30\xe5\xb7\x5b\x27\xdf\xf7\x90\x97\xdd\x26\x35\x06\xd8\x3b\x12\x1b\x32\x2a\xab\x8b\xc6\x72\x8d\x32\x25\xd3\x2d\xd2\xdc\xd2\xce\x93\x45\x12\xed\x13\xe1\x63\x34\x93\xf4\xf2\x2a\xab\xf7\xdb\x69\x86\xd8\xe7\x71\xb6\x74\x8e\x29\xaf\x91\x1e\xfe\x72\xf4\xde\xce\x1f\x3b\x6d\x3e\xce\xb6\x0c\x7e\xee\xb0\xae\x9b\x2f\x43\xcd\x9d\x4e\x53\x89\x8f\x8d\x8a\x8e\xa8\x0e\x8d\x0a\x16\x09\x9a\x0a\x8a\x0a\xd4\xf6\x67\xf0\x65\x0b\x0c\x8b\x93\xcd\x9a\x2f\x4b\x68\xda\xed\x3b\x9d\x51\xdd\x24\x3a\x0a\xbd\x96\xfa\x9d\x01\x85\x7e\x01\x67\x0c\x5b\x7d\x53\x21\x3d\x05\x4d\xa0\xac\x3d\xa7\x37\xb9\x2e\x5a\x22\xd8\xd4\xc7\xc5\x23\xd1\x75\xd8\xe5\xca\x05\xd5\xf1\xd2\x51\xd6\x01\xc5\x76\xdb\x7a\xcb\xbe\xde\xe7\x67\xa4\x45\xea\x7d\x31\x49\x83\x54\x2f\xed\x74\xf2\xa6\xe9\x71\xd6\x2d\xef\x6f\xd1\x77\xec\x3b\x1c\x53\x7f\xba\x05\x6b\x43\x0b\xee\x52\xed\xa2\xfa\x03\x75\x3c\x4a\x1d\x16\xac\x18\xcc\xd3\x9f\x6c\x99\xd0\x1b\xfd\x31\xbc\x30\xf0\xd7\x0b\xd0\xe5\xd6\x2e\x36\x08\xb5\x61\xf3\x18\x08\x03\xc9\xcb\x85\x4f\xea\x33\x7b\x65\x67\x12\xb6\x8b\xce\xbc\xee\x16\x0f\xe7\x16\x4e\x7b\x82\x6b\x6e\x73\xdd\x13\x6a\x83\x53\x3d\x49\xed\x85\xcd\xcc\xf5\xd9\xb4\x33\xd5\xf5\xd5\x5c\x95\x03\x95\xaa\x14\x59\xe4\x0f\x65\x33\xa5\x2b\x64\xae\x14\xc8\x75\xea\x2d\x51\xdd\x62\x43\x42\x92\xaa\x0a\xbd\x1a\xda\xfb\x5f\x2c\xd0\xef\x57\xbf\xc5\xdb\x6c\x1b\xa1\x6a\x70\xc8\xa3\x8e\x5d\xf4\x97\x77\xca\x32\x17\xd6\x53\x53\x8d\x57\x40\x94\x8a\x16\x6f\x12\x51\x11\x66\x13\x62\x16\xe0\xe5\x73\xe4\x45\xe2\xa1\xe5\x61\xe1\x4f\x91\x89\xd5\x0a\x32\xf7\x71\x1d\x0b\x09\x48\x81\x2b\xa1\x6b\xf1\x1d\x91\x5a\x1d\x79\xbd\x3d\x3f\xdf\xbe\x50\x6c\x90\x48\xef\xdf\x6f\xef\x6d\x44\xab\x8e\x21\x13\x25\xf2\x91\x7f\x93\xdb\x91\x03\x99\x35\x8d\xc5\x8c\x91\x90\xc1\x88\x6e\x99\x96\x87\xe6\x90\x1a\x9f\x3e\x92\x97\x4d\xda\x45\xf3\xd2\xbc\xca\x9d\x3d\xdc\x26\x7d\xa6\x92\xb1\x8b\x7c\xea\xf7\x36\x64\xa4\xab\xde\x2e\x7b\x3b\x22\xdd\x75\xd8\xa4\x5e\xf9\xa5\x68\x2c\x37\x21\x8b\x2b\xfd\x3e\x75\x2c\x45\x26\x69\x02\x09\x3b\x61\x1d\x21\x0f\x1e\x37\x6e\x0e\x4e\x27\xce\x22\x21\x05\x9d\x2c\x2f\x9e\x0c\x9a\x76\x8e\x55\x97\xf7\x78\x4c\x57\x5e\x55\x7d\xc3\xc0\xb3\xa5\xca\x3e\xc3\x6a\xd2\xb4\xdb\xa0\x16\xbb\x25\x1d\x21\x49\x71\xf6\x79\xea\x49\x88\x1f\xe1\x15\xae\x31\x96\x36\xba\x06\x0a\x3e\x52\x07\xc2\x4b\xf8\x20\x38\x49\x30\x03\x34\x90\x04\x88\xe5\x99\xa8\x05\x1e\x15\x69\x8c\xac\x1c\x55\x83\x86\x53\x56\xcb\x94\x3a\x24\x17\xc5\x7b\x56\x2a\x29\x53\x7a\x02\x34\xad\xef\x34\x1a\x44\xc2\x18\xbb\x88\xaa\x30\xb4\x90\x45\xe0\x5e\x02\x2d\xc0\x06\x28\x00\x3f\x2c\x43\x41\x07\x20\xc0\x0e\xde\x08\x1f\x9e\x16\x8d\x77\x46\xe6\xb5\x6e\xb0\x6d\xac\x5f\x5f\xc2\x49\x91\x64\xb3\xe7\xe2\x97\x5e\xfd\xca\x3f\xa9\xfd\x81\xe1\xb6\x56\x5a\xbe\xe2\x6d\xac\xbb\x24\xbb\xc8\xba\xb0\xee\x4b\x7e\xc0\x08\xbb\xbb\xa3\x01\x05\x00\x81\x79\x11\xbc\xb0\x1a\xa8\xec\x38\x1d\xa4\xa4\xb5\x86\xac\x9f\xf8\xa1\x24\x74\x14\xc3\xb5\x8a\xaf\x04\x0f\xb8\xd5\x86\x64\x76\x86\x51\x3a\x2d\x18\x72\xca\x9d\xf1\xdc\x51\xdd\x60\x25\x03\x14\x80\x0f\x98\x01\x29\xa0\x05\xf8\x40\x16\x60\x03\x22\x40\x0c\xe8\xc1\x13\x34\x2e\xd2\x4a\x96\x48\x91\x15\x35\x33\x73\x1d\x4f\x85\xa8\xd6\x5c\xf7\xba\x5f\x1b\x52\xa3\x7d\xcd\x76\x05\xb6\x31\x81\x9e\x22\xe6\x64\xaa\x33\xc2\xb5\x4c\xd2\x84\x35\x08\x03\xb0\x16\x4e\x22\xa0\x0e\xf0\x81\x04\xec\xce\xc9\x04\xd4\x80\x06\x62\x09\x61\x17\xfd\x80\xa0\x9a\xd2\x80\x89\xa1\x1b\x7f\x04\x7d\xe6\x43\x4d\xd3\xde\xd9\x2c\xc2\x53\x9d\xb2\x1f\xc9\x6e\x01\xc6\xb6\xbf\x74\x66\xa4\xd5\x39\x05\xc8\xd3\xd0\x7b\x01\x03\x20\x81\x39\x0e\xc8\x00\x29\x2c\x8f\x42\x06\xb4\x80\x31\x08\xc4\x55\xa3\x49\xe2\xf9\xa1\x80\x65\xe8\xe5\xec\x18\x2a\x95\x3e\x58\xc9\x72\x24\xb2\x7a\x35\xf0\xbd\xf6\x6b\x96\x53\xb8\xb9\x4b\x81\x09\xa7\xe2\x92\x00\x84\xee\x23\xde\x23\x9c\x2d\xc0\x85\x69\x07\xbc\x00\x17\x10\x03\x49\x40\x03\xc4\x00\x16\x30\xc1\x42\xa5\x2c\xe3\x4a\x90\x85\xd7\x1d\x72\x90\x0e\x5a\x4a\xfe\x55\x76\xfc\xd6\x70\xeb\x60\xbc\xb9\xe5\x55\xe1\x4c\xbc\x82\xaf\xa8\x55\x9e\xa6\x93\xf8\x01\xdb\x10\x64\x10\x75\x14\x90\x01\x1e\x00\x01\xac\x80\x12\x50\x00\x4a\x20\x04\xa8\x00\x0b\x20\x44\xaf\x22\x97\xe4\x94\x90\x7e\xad\x8b\x61\x8f\x14\xf8\x3a\xf9\xb0\x6c\xe5\xba\xee\x80\x6c\xae\xb9\x5b\xb0\x52\x2f\xad\x31\x24\xc1\x71\xdb\x30\x5e\xc1\x91\x6f\x85\x36\x11\xb7\x15\x60\x02\x32\xc0\x06\x9b\x4b\xd1\xc3\x7a\xc1\x74\x00\x11\x20\x41\xfd\x4a\x66\xc6\x21\x25\x35\xac\xe3\x61\xbb\x18\x40\x94\xf4\xbc\xcc\xfb\x6b\xdc\xb1\xe0\xea\xd5\x50\x4a\x43\x5d\xee\x69\xf4\x8d\x67\xb7\x85\xaa\xba\xb3\x98\x07\xab\x23\xa9\x3f\x8a\x17\x20\x03\x22\x80\x05\x90\x02\x7a\x98\x23\x44\x08\xf0\x02\x0e\x14\x7b\x52\x36\xb6\x3a\x49\x35\xed\x60\xdb\x5f\x81\x5c\x49\x0e\xa5\xde\xbf\xaa\xdf\x4c\xed\x34\x4f\xa9\xb4\x4f\x96\x6a\x27\x07\x07\x89\x3b\xe8\x18\xe8\xc8\x3d\xe7\x73\xa7\xd5\xc4\x39\x07\x02\x80\x17\x36\x01\x12\x02\xc6\x80\x1c\xf0\x02\x3c\xa0\x82\xcc\x40\xfa\x82\x3d\x53\x4a\x4f\x27\xc6\xf6\x4d\xa0\x55\xf2\x59\x59\x2f\x14\x7a\xe3\x75\x38\xb4\xa4\xd4\x9f\x5e\x1b\x9c\x13\x1f\x85\xe4\xa9\x6c\xfe\x59\xfd\x58\xec\x91\xf5\x84\x34\x14\xd9\x1b\xf0\x02\x4a\x00\x01\x32\xe0\x09\xa0\x87\xf5\xed\x0b\xc3\xbf\x26\xd0\x63\x50\x13\xcc\x52\xc9\x7d\x62\xe9\xbe\x1a\x7d\x9b\xbb\x07\x85\xde\x77\x9e\x7b\x6e\x8e\x8e\xef\xb4\x09\x94\x9c\x26\xd3\x06\xd6\x39\x32\x18\x3a\x2a\x14\xf2\x6b\xd1\xb9\xe2\x92\x03\x22\xa0\x06\xd8\x40\x29\xac\x9f\x85\x12\xce\x0a\xfe\x0a\x61\x9d\x08\x9d\xd9\x56\xf4\x85\x46\xac\x55\xac\x2f\x5f\x02\x5b\xd1\x0c\x14\xfa\x27\xee\x6a\xf4\x05\xdf\xc2\x74\x9f\x64\x6d\x41\x8e\x47\xb4\xb1\x17\xb1\xe5\x3b\x2d\x33\xc9\x3c\xf6\x0b\x32\x12\x14\x7c\xb8\x71\x44\x79\xe4\x07\x34\x36\x0c\x08\xe6\x17\xec\x52\x5c\x45\xfc\x3e\x6a\x0f\x9e\x7d\xb9\x49\x83\x47\xa7\xc8\x50\xa6\xf4\xed\xaa\x72\x18\xde\x45\x9f\x56\x6f\xac\x8e\x97\xb6\x73\x94\xda\xa7\x5c\x04\x1f\x3b\xdb\x1b\xf7\x2b\x97\x0a\xd5\x32\x3c\xe2\x07\x62\x8b\xe3\x79\x13\x62\x10\xcd\x91\x22\x91\x15\x51\xd4\x51\x95\xd3\x14\xb1\x0b\x8b\xe7\x6a\x6c\x5a\x86\x79\xe7\xc6\x9e\x17\x3c\x69\x82\x4d\x1f\x7e\x9b\x5e\xbd\x7b\xf1\x6d\x11\xad\xbf\xa9\x7e\x2c\xef\x2a\x6e\xc0\x77\xc1\x0e\x5d\xcf\x4e\xb6\x80\x27\x90\x72\x9e\xfc\x8e\xca\x8c\xc6\x9f\x6e\x94\xd1\x98\x39\x98\x75\x83\x73\x90\xbb\x4f\x78\x4a\x99\xc9\xb8\xda\x79\x38\xd4\x34\x5d\xb5\xd2\xf3\xe9\xf0\x5f\xa8\xfb\xfb\x8c\x7b\xd3\x6d\x92\xb3\x73\xbf\x12\x35\x53\x28\xa2\xc5\x13\x62\xfe\x5e\xf3\x4c\xe2\x19\x9b\x03\xcb\x33\xf6\x42\x4e\x75\x1e\x1e\xbe\x2c\x41\x67\x11\x69\x31\x5b\xa9\x52\x85\x45\x7d\x55\x3b\x3a\xbf\xbe\xf8\xe1\x42\xa5\x66\xe2\x11\xfa\xff\x3b\xe1\xd1\xf5\xc3\xc0\x21\xf3\xb2\xe9\x90\x53\x73\x52\x31\x6f\x72\x7e\x08\x9f\x8b\x8e\x49\x99\x2a\xb9\x88\xb4\xe0\xb9\x28\xba\x38\xbc\xe4\xb0\x74\xad\x3c\xae\x62\x9a\xca\xa0\x66\xba\x6e\x8d\xd5\x5b\x2f\x48\x14\x61\x56\x4b\xf5\x42\x8f\xf8\xec\xdf\xdb\x55\xbf\xc5\x5d\x52\xef\x14\xce\x06\xf7\x91\xd5\x95\xe5\x5f\xc7\x8b\x06\x60\x3b\x22\x1a\x91\x29\x6e\xca\x73\x2b\x61\x29\xbf\x50\xed\xd1\xf4\xd3\xc5\xd3\x37\x36\x26\x34\xfd\x65\x39\xe0\xae\x1e\xe6\x9e\xfa\xae\x0c\xbb\xad\x77\xec\x60\xfd\x5f\xdb\x4d\x6e\x0e\x8e\xde\xaf\xd7\x4c\x5c\x76\xde\x55\x0d\xe6\x60\xc4\xf2\xf9\x63\xd9\x9d\x1b\x8a\xea\xd8\xea\x7b\x1a\xda\x1b\x23\x98\x45\x58\x76\xd9\xc8\xdb\xcf\xba\x8c\x78\xf2\x04\xbf\x4b\xaa\x2c\x5c\x6f\x9c\x18\xc4\x5c\x7c\xfe\xe2\xfc\x9f\x13\x7e\x2a\xbf\x3b\x3e\x08\x5f\xfe\x34\xd2\xd2\xce\x5a\x31\x91\xb5\x1e\xa3\xef\xab\x67\x4f\x6f\xd9\x60\x7d\x6c\x97\xea\xd8\xed\xb2\xe5\xd1\xe3\x23\x16\xc0\x1c\xbc\x10\xa1\x9e\x70\x9e\x8f\x53\x3b\xd6\x23\x3d\x63\xb1\x43\x71\x7e\xf1\x6f\x00\xff\x86\x70\xc9\xb9\x9f\xbc\xf8\x66\xd8\xba\x75\xbd\x42\x3b\x1b\x12\x8b\xeb\x0f\x7c\x5a\xfc\x51\x83\xb0\x43\x11\x23\x32\x62\xfc\x12\xdc\x52\x4c\x33\x2e\x72\x43\x8a\x11\xab\x57\x3b\xdf\x4e\x88\xac\x5d\x1c\xd9\xdd\x3c\xfc\x87\x03\x40\xef\x9c\xcf\x5c\x76\x4b\x16\x56\x87\x71\xda\xb6\x2b\x0d\x72\x68\x12\xa9\x13\x2c\x93\xfa\x53\x67\x33\x06\x73\xf4\x0b\xf4\x4a\x92\x2a\x5e\xd7\xce\x37\x55\x75\xcc\xf4\x35\x8c\x9d\xac\x04\x1c\x8c\xbe\xdf\xfc\xf5\xaf\x5e\x8f\xef\x73\xd7\x7d\x17\x21\x87\x93\xbb\x60\x8d\x64\xc1\x6a\xca\x62\xe2\xe7\xd8\xda\xc8\xd1\xe8\xed\xb0\xc6\xc0\xfb\x41\xde\xbe\x3f\x7d\x25\x5d\x27\x43\x1b\xf3\x3a\x9b\xe5\x87\x11\x6f\xb1\x3f\x7f\xf9\xf3\xf3\x3f\x2f\xae\xf1\x59\xe1\x8d\xfe\xe1\xc2\x36\xfd\xb2\xe1\x34\xf5\xf0\x40\x2f\x75\x47\x53\x1b\x4e\xab\x5e\x8b\x62\xf3\x56\xa3\x74\x23\x53\x7d\x5f\x9d\x5c\x55\x4c\x55\x46\xe3\x6e\x6f\xe2\x24\xd7\x8a\xd3\x3e\xd1\x99\xf2\x6d\xc4\x3f\x79\x9a\x3f\x7d\xb7\xa2\xa7\x25\x7b\x04\x2b\x0c\x53\xf8\x83\xa0\xb3\xa4\x31\xa5\xaa\xab\xbc\xb8\x74\xa5\xf8\x67\xe1\x69\xc1\xeb\x42\xe6\x02\xc4\x5c\xb7\xec\xc7\xac\xa1\x8c\xbe\x42\xe5\x5a\xde\x8e\x95\xe1\x27\xf3\x77\xdb\x97\xc7\x4d\xd7\x9c\x0f\x7f\xe9\x38\xb7\x6a\x27\xa8\x5b\x2d\x73\xd6\x43\x6e\x9d\x42\xf5\x3d\xe5\xa8\xf9\x04\x99\x29\xa9\x95\xa9\xcc\x49\xb8\xf1\x69\xf1\x5e\xf1\x3f\x62\x93\x63\x16\x62\x0a\x23\x71\xc3\x84\xe3\x5f\xe7\x70\x56\x8c\xb6\x60\xf7\x0f\xce\x7c\xdc\x94\x3f\x92\xff\xd8\xf1\xb0\x08\x85\x7e\xc9\x3f\x35\xdc\x38\x98\xb6\xec\x0d\x68\x9a\x28\xb7\xc9\xed\x4a\x99\x88\x19\x09\x87\x0f\x0d\x0a\x9c\x0d\x88\xf0\xb3\xf1\x87\xf8\x96\xfb\x38\x78\x1c\x78\x7e\x70\x0f\x75\xfd\xe4\x6f\x1f\xcd\x92\x9e\x5b\x42\xde\xc8\xd2\xeb\x31\xad\xb1\xf1\xea\xe8\xfd\x0d\xe7\x03\xf3\x25\xf3\xb6\xe8\x74\x67\xf7\xd7\x3a\xb5\x82\x3f\xa9\xc7\xd1\x5b\x41\x5f\x7d\x32\xdd\xa5\x5d\x04\x1c\xe5\x1c\xba\x6c\xf3\xac\x3b\xac\x2b\xac\x5a\x2d\x67\x2c\x57\x2d\x13\xcd\xd3\xed\xac\xbd\x0a\xc3\xf9\x53\xf4\x0b\xc7\xea\x8d\x7b\xa6\xa7\xaf\xb6\xd4\x4f\x29\x6e\x20\x07\x79\x73\x56\xbd\x6c\xb5\xc3\x79\xea\x09\x12\x21\xb5\x5e\xc8\x8e\x01\x36\xdc\x66\x69\x26\xcd\x46\x7e\x06\x1b\x7a\xae\x3a\x18\xda\x5b\xda\x4b\x9a\xdb\x1a\x79\xea\xbc\x1a\x01\x7a\x17\x56\x61\xee\xca\x21\xf3\x49\x8e\x05\x8b\xf5\xf7\x7d\x35\x73\x52\xbb\x1f\x2f\xec\xd6\x5c\x07\xe1\xea\xf8\xf3\x9c\x63\x2d\xfd\xb7\x9d\x57\x2c\x1a\x0c\x4a\x75\x32\x34\x9a\x55\x0e\x15\x63\xe5\xfe\xc8\x1c\xca\x50\xca\xe0\x4b\xbc\x96\x70\x17\xab\x10\xcb\x12\x4d\x96\x4b\xd4\xbe\x37\xbf\x76\x4d\x08\x5e\x4e\x9a\x2f\x32\x6e\xea\x1b\x8a\x58\x76\x3e\xb8\x9f\xd1\x6a\x1b\x2f\xa1\x4a\x42\x0d\x18\x73\xa8\x31\x81\x68\xbc\x52\x1c\x96\xd9\x15\xdf\x14\x29\x16\x64\xe0\xff\xca\xcb\xc0\x9d\xcb\x15\xc0\xf1\x81\xed\x1b\xbb\x07\x6b\x3d\xcb\x77\xbe\x52\x19\x6a\xcd\x14\xb3\x1d\xd7\xc1\x50\x97\x34\xfe\xb2\xc9\xf6\xa7\x13\x16\x1b\x12\x43\x6b\x0d\x54\x39\x8d\x91\xd1\x6e\x2f\x4c\x7f\xab\x66\x4a\x7a\x0a\x2d\xf0\x94\x70\x68\xb1\x10\x32\x26\xd2\x7d\xa4\xc9\xa7\x7e\x42\x89\x4c\xe9\x41\xde\x4f\x06\x85\x70\x40\x24\xe8\x89\x79\xf2\xa5\xae\x35\x4f\x2c\xd6\x3c\x79\x23\x73\xb3\xc9\x6b\x1c\x7a\xb2\x96\x85\xfb\xa0\xd5\x2f\xd2\x73\x82\x5b\xec\x1f\x74\xb7\x64\x38\xf9\x74\x99\xed\x69\xf7\x28\x99\x48\x1f\x89\x6d\x08\x3e\xe0\xb5\xe2\xec\x63\x0f\x61\x86\x60\x2a\x63\x64\xa3\x37\xa2\xef\x11\x34\xd0\x31\xf0\x9a\xc9\xca\xea\x0e\xda\xda\xf9\x85\x25\x98\x16\x95\x35\x8f\x2c\xee\xf7\x06\x56\x1e\xa7\x66\x07\xea\xd9\x72\x68\x23\x4a\xec\x72\x18\x53\xbc\x20\xc8\xc4\xae\x41\xf7\x47\xfe\x84\xc8\x02\x97\x0c\xd8\x80\x12\x30\x05\x4c\x80\x01\x60\x00\x29\x34\x2c\xd2\x68\x16\x7e\x11\x01\xe5\x60\xd3\x0c\xd7\xcd\xf0\xa9\x0c\xc7\x6a\x9c\x25\xd5\xde\x3f\x55\x93\x69\xb9\x41\x51\xf6\x62\xba\x35\x32\x36\x5c\x8c\x14\x42\xe8\x57\x40\x08\x90\x00\x6c\x40\x01\x24\x61\xf3\x0b\x5d\x80\x0b\xf3\x51\x2a\x22\xdd\x13\xa5\x32\x9a\x08\xcc\x2b\x04\x1b\x61\x39\x5d\x05\x3b\xa4\x0a\x97\x3d\x5d\xc5\x19\x24\xa8\x13\xca\x4a\x08\x27\x73\xb5\x36\x19\x54\xea\x16\x24\xa5\x87\xc7\xc7\x00\xef\x00\x3f\x60\x07\x8c\x30\xad\x9c\x08\xb0\x02\x49\x20\x05\x88\x00\x3b\x9c\x0a\x1e\x3c\xcd\x4b\x5e\x22\x39\x31\x7d\x07\x07\xdc\x20\xe7\x94\xba\x0a\xd9\x8d\x9d\x31\x93\x16\xb2\x42\xb5\xf8\x3d\x5f\x6f\x2b\x07\xcd\x66\x09\x66\xb6\x29\x08\x0f\xaa\x00\x6c\x7a\xc3\x0f\x98\x01\x27\x60\x05\x4c\x30\xff\x00\x21\x30\x03\x3a\x98\xfd\x14\x1e\x1c\xd3\x52\x78\x3a\x6a\xb6\x17\x7e\x4b\x89\xda\x45\x52\xfb\xbe\xb3\xd5\xdd\x72\x95\x61\x69\xe7\x21\xd8\x4e\x62\x06\x17\xf2\xd3\xbc\x49\x34\x5c\x38\xff\x0f\xe5\x88\x60\xc9\x4d\x34\x80\x0c\x18\x01\x3d\xf0\x85\xe1\x77\x04\xea\x18\xe9\x22\xab\x97\xd8\xb4\x06\x86\x15\xb2\x77\x4b\x1c\x6e\x41\xe0\xd1\xcc\xb3\xf4\x61\xd7\x46\x92\x3c\xcf\x68\x1c\x8f\x6b\x73\x3f\x35\x5a\x91\x43\xe6\x59\xe2\x05\x64\x6c\x58\x87\xc5\xff\x4d\x1e\xc4\x61\x13\x00\x6a\xc0\x0c\x44\x10\x8f\x88\x46\x99\x52\x85\x5b\x54\x06\xcd\xf5\x3c\xb1\x63\x6c\x72\x4f\xde\x51\xec\xe6\x4f\x3d\xef\xd0\x2d\x8d\x4f\xe6\x0f\x30\xb7\x73\xd4\x2d\x92\xe9\xe4\x56\xa1\xe2\xc6\xea\x07\x14\x80\x06\x50\x01\x22\x40\x04\xeb\x04\x11\x03\xc4\xc0\x06\xf0\xc2\x9f\x11\xfc\x60\xe8\x11\xd6\x53\x71\x37\xf3\xf3\x34\x8f\xf6\xcc\x8d\xb9\xb5\x3b\x2c\x59\x0c\xed\xf3\xac\x35\xcd\x32\x0b\x87\xba\xb1\x99\xee\xa9\x48\x09\xbd\x60\x52\x23\x12\x42\xb4\x84\x25\x61\xb9\x00\x3d\x6c\xfe\x41\x0d\x70\x00\x3f\xe0\x01\xab\xf8\x10\x7a\x0d\xc1\x20\xe5\xad\x27\xc7\xee\x55\xd1\xc8\x79\x35\xf7\xb7\xa7\xd0\xf5\x86\xd1\xa1\xe6\xf7\x85\x5b\xf1\x87\x7e\x42\x36\x35\x3a\x54\xd2\xa6\x5c\x6e\x94\xe9\x98\xe1\x80\x17\x10\xc2\xdc\xcd\xb8\x80\x00\x96\x11\xe6\x03\xda\x20\x00\x8f\x8c\x2e\x92\x7f\x4e\xa9\xfb\x89\xad\x7b\x4b\x94\x78\x2e\xe2\xef\xad\x2b\xa5\xfd\x9a\x39\xac\x6e\xa6\xca\xf8\xf4\xfe\xb0\x66\x97\x63\x93\x31\xe5\x1e\x61\x06\x26\x54\x22\x6c\x04\x02\x60\x04\x24\x00\x05\xe0\x03\x74\x40\x06\xe8\x01\x66\x80\x0d\x7c\xb0\xe6\x29\x6f\xb9\x1e\x64\x99\xf5\x59\x9c\xf0\x83\x07\xd3\x2a\xa1\xd0\x3b\xbd\xa3\x86\xd5\xd5\xe1\x67\x4d\x55\x05\x95\x71\x33\xbe\x9b\x36\x96\x3a\xf7\xd2\xf5\x5c\x17\x94\x3f\x31\x2d\x61\x5a\x18\x07\xa0\x07\x66\xb0\x6f\x94\x04\x28\x00\x39\x0c\x23\xca\x39\x1e\x62\xb9\x3a\x43\x2f\x67\x91\x30\xe4\x8c\x2e\x28\xf4\x67\xf1\x9b\xee\x1d\xf5\xe9\xfa\xae\xcd\xca\xa8\xf4\xe4\xb0\x28\xd7\xdf\x4f\x9c\x54\x0f\x45\x74\x98\x75\x89\x7a\xe1\xa7\x81\x0c\xd0\x80\xdf\x46\xa2\x41\x91\x42\x5d\x44\x1f\xc5\x34\xc5\xe6\x24\xea\x65\xfa\x24\xf2\x51\x5d\xd6\xa2\xdf\xdb\x25\xf6\xb1\x00\xe6\x9f\xbc\x11\x7e\x35\xb2\xa2\x3b\x34\xd8\x94\x5e\x70\x91\xa0\xef\x6f\x6c\x17\xac\x6f\x2c\xf7\x81\xd7\x9a\xba\x17\xcb\x15\xbd\x11\x4b\x1c\xe7\x0c\xff\x90\x30\x8b\x38\x9b\x34\x89\x3c\x82\xc2\x93\x76\x9a\x77\x49\xee\xd8\xa0\xce\x71\x2d\x84\x3a\x6d\xa2\x12\xd6\xbf\xf4\xdd\xea\x12\x77\x67\x79\xfa\xf7\xd3\xdd\x2a\xf8\xcc\xf0\xc8\x6c\x8f\x4b\xf3\x55\x8d\x22\x09\x0d\xb6\x5a\xd2\x4a\x92\x16\x32\x7c\x4a\x11\xea\x79\xda\x71\xfa\x69\x26\x49\x96\x19\x36\x3b\xae\x48\x49\x0d\xcd\x75\xcb\x73\xef\xa8\xd8\xc8\xfc\x89\x26\x8c\xbf\x50\x37\xe3\x95\xf7\xea\xfa\x48\x4d\x8b\x69\xf1\x5c\x72\x63\x90\xa5\x33\xa5\x09\xb6\xb2\x96\x10\x3f\xc3\x47\x06\x79\x66\x2d\xd6\x7d\x0e\x5e\xee\x4a\xde\x31\x01\x26\xa1\x6e\x91\x9f\x12\x5f\x55\xe3\x4d\x0d\x5c\xd6\x43\x5f\xa6\xbb\x55\xaa\x3c\xfd\x2b\x09\xfb\xc3\xe9\x4d\xdd\xee\xf5\x1c\x43\xaf\x71\xad\x55\x1e\x63\xec\xb8\x1f\xbf\x1d\xb6\xde\xa1\x1c\x2d\x1f\x0e\xef\x81\xc0\x86\xb0\x85\x68\xa7\x04\xbf\xb4\x8a\xac\xab\x82\x83\xf2\x33\x75\x7c\x23\x71\x07\xaf\x00\xa9\x84\xf1\xc2\xb3\x66\xab\xff\x31\x10\x28\xf4\x76\xe3\x98\x77\x7d\x63\x82\xa9\x93\xbe\x22\x20\x33\x2a\xe2\xc6\xb3\xc2\xaa\x40\xeb\x46\xa6\x59\x3a\x4a\x8e\x5b\xe1\xb3\x32\x9c\x1a\xbe\x46\x90\xb6\xa6\x1e\x8b\xd1\xc9\x93\x1b\x3b\x06\x9f\xf1\x18\xf2\x1c\xea\x9a\xfd\x9e\x8b\x39\xe3\xbf\xb1\xbf\xf6\xbd\xe0\x8b\xc0\x45\xbf\xa1\x83\x16\xb5\x52\xf6\x54\xb3\xd0\x18\xb7\x1d\xb3\xaf\x5a\x01\x1a\xf3\xda\x71\xba\x4d\x06\xe6\xc6\xc6\x4f\x06\x2d\xa2\xac\x87\xec\xe1\x9c\xa9\xbd\x79\x22\xc3\x32\xec\xcb\x2f\x3b\xd8\xc7\x9f\xad\x5f\xff\x03\x9d\x5f\xa6\xcf\x09\x76\x5c\x66\x87\xfa\x3a\x1b\x7e\x15\xf1\x26\x15\x87\xb8\xb9\xb8\x58\xb0\x99\xc9\x99\x6b\x5a\xba\xd9\xe4\xd8\x9b\x39\x43\xdc\x74\x3c\xeb\x7c\xce\x02\x7e\x45\xc8\xa5\x11\x97\x7c\x68\x81\x1b\xba\x5c\x16\x39\xf8\xd7\x09\x7f\x92\x6f\x74\x8f\xd9\x36\x58\x27\x7b\x9f\xba\xd5\x4e\x15\xb0\x24\x31\x06\x6d\xb8\x4d\x38\x1d\xbb\x76\xb8\x93\x79\xbe\xf1\x15\x08\xc8\x08\xae\x0e\x4f\x8f\x26\x8a\x67\x4a\xe5\x28\x26\x6c\xe4\xea\xa7\x9e\x7b\xb3\xfb\xf2\xf2\x3f\xdb\x59\x7e\x1e\x5e\xc9\x1c\x9a\x3f\x5b\x9b\xc0\x7f\x9a\x5d\xcb\x51\xb0\x96\xe8\x12\xe6\x13\x90\x1f\xb4\x1b\x8a\x12\x5e\x10\x95\x16\x57\x98\xf8\x98\x46\x91\x99\x9f\x67\x55\xd4\xd4\x40\xd0\xb3\x3c\xad\xba\x59\x73\xd2\xfe\xe9\xe3\x7f\x19\xc8\xbd\xc9\xbb\xf0\x83\x9e\x67\xb8\xe3\x96\x4f\x6b\x6b\x57\x0a\x3b\x53\xd1\x93\x6c\x52\x7a\xd3\x87\xb3\x6a\xf3\x20\x85\xdf\xca\x28\x2b\x3f\xd5\x05\x37\x2b\xb6\xcf\xf6\x1a\x4f\x46\xae\x6d\xbc\x6a\xff\xa8\xf5\xdb\xf9\x9f\xa7\x7f\x54\xdd\x94\x5f\xba\xbe\xda\xda\x53\xdb\x78\xb2\xaa\xb1\xb4\xbf\x04\xb7\xe0\x34\x73\x35\xb7\x34\xb3\x36\x2b\x3c\x25\x32\x49\x3c\x3e\x3f\x12\x3d\xb6\xb0\xc8\xbe\x3d\xf8\x5a\xef\x9d\xe9\x57\xfb\xff\xbe\x36\x94\xfe\xb3\xeb\x5b\xf1\x57\x63\x3b\xac\x2b\x6e\x33\xca\x23\xb7\xc3\xab\x03\xce\x7d\x2d\xfd\xa6\x3d\xdf\x7b\x05\xba\xcb\xbb\x4f\x9f\x22\x76\xf8\xb4\x1e\xb4\xe8\xb6\xb4\xf5\x97\x4f\xa3\x3c\x33\x7e\xfe\xee\x82\xef\x93\xc2\x23\xe6\xff\x1e\x7f\x6c\xbb\xd5\x3f\xbd\xd9\x6b\x59\xf9\x36\xcd\x3e\xc4\xd9\xd5\xdb\x3a\xd2\x8c\xd5\x20\xd6\xe0\x52\xfb\xa5\xd6\xa7\xda\xb8\x4a\xb3\x0a\xb3\x42\xa2\x74\xa7\xdc\xab\x84\xa4\x5c\xa6\x3e\xa0\x6b\x7b\x34\x6b\xe1\x61\x67\xee\x44\xf7\x3a\xe3\x41\xe9\xaf\xff\xa6\xeb\xa3\xcb\x2d\x84\x79\xad\xe1\x84\x2e\x97\x06\x68\x15\x6a\xe9\xd3\x22\xfa\x02\xba\x3c\xc5\x9c\xf6\xcc\xae\x6c\x48\x46\x47\x86\x44\x1a\x49\xea\x97\x54\x84\xd4\xd2\xa4\xaf\x79\xed\x95\x53\xad\x2f\x07\xbe\xcc\x36\x6e\xd6\x1d\x19\x7f\xcc\x7d\xd0\x80\x42\xef\xd4\x8f\xfb\x37\x9a\xa6\xf1\x7b\x1b\x9a\xb1\x2b\x3a\xf3\x95\x32\x1d\x52\x5f\x24\x2c\xc4\x09\xc5\x70\x45\xda\x44\xde\x46\x4e\x84\x97\x86\xab\x87\xba\x04\x7d\x09\xf2\x0f\x76\x0a\x2a\x8b\x75\xcf\xc4\x2f\x4d\x6e\x22\xee\xdd\x9e\x76\xde\xa8\x38\x52\xbb\xf6\xf8\x11\x77\xa1\xb8\xc3\x36\xa5\xdf\x4d\x5e\x87\x5d\xa4\x91\x4e\x13\xa7\x18\xf9\x10\x8a\x10\x20\xe4\x1b\xe9\xe5\xe1\x45\xe9\x59\xe9\x96\xe4\x36\xec\x9a\xe4\x94\xeb\x74\xeb\xa4\xef\xc8\xe8\x70\xed\xf3\x3a\x22\x3c\xd5\xa9\x08\xbb\x3e\xae\xa7\x7c\x5a\x66\x33\xef\x44\xe2\xe3\xfe\x73\xcc\x79\x93\x6e\xb3\x9a\xd0\xdc\xa9\xc4\xb6\x30\x49\xdf\x65\xcf\x7c\xe7\x0c\x07\x6a\x9b\x72\xcb\x37\x16\x6f\xcd\x7f\x9a\x69\x99\x62\x9a\x4c\x9b\x94\x18\x09\x1a\x74\x18\x12\x19\x56\xda\xf0\x78\xe2\x84\xda\x25\x55\x17\x64\xd5\xd3\xf6\x26\xce\xba\xee\x94\x9e\x0a\xae\x68\x0c\x1a\xd4\xdd\xe7\x09\xc7\x25\x05\x44\xba\x91\xd8\xd5\x58\x48\x9a\x7c\x32\xa4\xd5\xfd\xa6\x55\xac\x89\xae\x4e\xa8\xda\xaf\xf2\xa0\x6c\xab\xb8\xa5\x90\xa0\x68\xa3\xe0\xa5\x70\xa6\xab\x68\x31\xe1\xba\x1c\x5c\x98\x84\x5d\x18\xd5\xc8\x35\x20\xb4\x68\xb2\x5f\x32\xd9\xdf\xbe\x51\xaa\x93\x6c\x1f\xa4\xe6\x14\x6c\xf6\x44\xef\x46\xd3\x5f\xe5\x58\xbe\x58\xa6\x43\xca\x5c\x22\x55\xec\x99\x58\xb8\xf0\x73\x61\x1a\xc1\x09\x81\x20\xfe\x3a\xfe\x0f\x82\x1d\xb2\x8e\x9a\x8f\x66\xb5\xae\x74\x21\x62\xc9\xbf\x4b\x9e\xb6\xe2\x8c\x46\xac\xa5\x0d\x3f\x6b\x14\xcb\x7d\x1f\xf5\xc5\xc3\xcf\xfc\x52\x87\x4e\x41\x5b\x72\x41\xd4\x54\xe0\x03\xaf\x2d\x17\x32\x87\x36\xeb\x0b\xd6\x32\x16\x3a\xa6\x01\x26\x03\xc6\x15\x06\x40\x2f\xce\x18\xc0\xeb\x2a\xd5\xa7\x89\x6f\x6e\xe1\xce\x1c\x4e\x9c\xde\x58\xc9\xd7\x15\xbe\x42\x3b\x80\x50\xf3\x98\x71\x1c\xaa\xe6\xb8\x65\x44\xa7\xb4\x2e\xaa\xcd\xc3\xc4\x9a\xc9\x68\x48\x0b\x4f\x75\x44\x89\x49\x8e\x04\x91\x27\xb9\x21\x61\x27\xba\x22\x3a\x21\x64\x20\xac\x26\xe2\xa6\xdd\xe5\xa1\x97\xd6\xd5\xfa\x64\x85\xe3\x5d\x16\xe3\x91\xe7\x57\xdf\xb8\x34\xdd\x27\x59\x8d\x9c\x76\x1e\x8c\xe3\x68\x66\x10\x2a\xef\xcd\x67\xc2\xb0\x46\xee\x4e\x8c\x88\xdf\x8c\x7d\x83\xf9\x1d\x7d\x15\x2d\x00\x35\x18\x05\x82\xbc\x80\xf4\x06\xe9\x0c\xc9\x11\x49\x89\xc0\x84\x6e\x8c\x6f\x58\x1e\x47\x3f\xd8\x81\x35\xf0\x30\x15\x94\xb1\x2c\x0b\xf4\x23\x54\x5f\x66\x60\x86\xb4\x38\x17\x18\xa9\x2b\xb4\xf2\xfd\xa2\xd3\xc2\x3b\x47\x25\x41\x64\x04\x9f\x00\x26\x4c\xb9\xa7\x84\x39\x49\xb8\x00\x07\x50\x02\x92\x98\xe7\x14\x26\xec\x3b\xe2\x95\x1a\x44\x96\x36\x5e\xcf\xa3\x3f\xe4\x9e\xac\x7e\x1f\x22\xac\x37\xca\x31\x88\xa6\xf1\x44\x30\x2f\x54\x4b\x10\x15\x64\x7e\x46\x1c\x8e\x14\x05\xc3\x7e\x4d\x98\xfb\x92\x04\xe0\x03\x05\x60\x08\xd3\x52\x44\xd0\x5a\x21\x95\xac\x1f\x44\x22\x55\x85\x9f\xbc\x71\x7f\x15\xf1\x23\xeb\xe3\x66\xff\xb8\x6e\x6b\x5d\x89\x42\xd2\x52\xa0\x84\xdd\x6b\xdd\x70\x19\x51\x6e\x32\xca\x62\xcc\x7c\xd8\x8d\x1d\x07\xd6\xa6\x45\x09\x50\x60\x8e\x5a\x4a\x80\x0a\x68\x90\x28\x08\x33\x18\xee\x04\x2b\x95\x1e\x4c\x7a\xdc\x64\x23\x09\xb3\x51\x9f\x6b\xce\x7d\xed\x55\xaf\x85\x64\x11\x84\x17\xb8\xd1\x9b\x92\x2b\xe7\x08\x09\x31\x52\x11\xb2\x20\xb8\x02\x12\x80\x05\x53\x81\xd0\x01\x3f\x6c\x86\x40\x09\xe8\x80\x19\x78\x87\x27\x4a\xb3\xcc\xfb\x4d\x7e\xcc\xf0\x93\xb3\x72\xc8\xef\x0c\xe4\xe3\xd6\xf5\xa0\xb1\x86\x56\x8c\xc2\x9c\x78\x44\xdf\x08\x6b\x4d\xad\x2c\x49\x47\x0e\x26\xf2\x70\x0c\x62\x98\x17\x98\x08\xf0\xc1\x7a\x41\xb0\x80\x10\x2c\xe3\xa3\x0b\xf0\xb0\xce\xa8\xd2\xb8\xc7\x64\xbe\xe8\x33\x3b\x54\x07\xa9\xa6\xdc\xbd\xff\xb5\x9f\x32\xeb\xfb\xd4\xb1\x92\x26\x4d\x37\xc4\xdb\xa9\xc6\x48\x5a\xe1\x81\x7f\x95\x6e\x04\x5f\x06\xee\x35\x20\x05\x04\x30\x47\x0e\x3d\xcc\x8d\x82\x0b\x58\x01\x0e\x20\xc0\x70\xa7\x20\xe3\x7c\x23\x95\xad\x47\x6f\xff\x26\xe8\x22\x65\xea\x33\xfc\x91\xdf\xaa\xf6\x60\x41\x03\x46\xae\x6f\xf4\x2b\x2f\x21\x4b\x15\x8d\x02\xf1\x56\xb6\x76\x48\x39\x9a\x28\x8c\x3f\x11\xc2\x14\x10\x6e\x40\x06\xc8\x80\x05\xe0\x07\x2a\x68\x46\x64\xef\x39\x56\xa5\x82\x75\x3d\xed\xdc\x03\x7b\x52\x4a\x7f\x86\x5d\xb6\x6d\xd9\x4d\xf2\x76\x68\x94\x6e\x27\x3f\x04\x41\x1c\xde\x1a\xf4\xc9\xbf\xe1\x67\xa2\x93\xc6\x1b\x81\x7d\x7e\x19\xc0\x00\x94\x60\xad\x1e\xc4\x80\x15\xf0\x01\x46\x34\x6e\x52\x3a\x36\x52\xb1\x1a\x8d\x53\x2b\x6a\x5f\xac\x44\x32\x28\xf4\xe3\xfa\x41\xf3\x62\x49\x7f\x68\x6d\x52\xb6\x49\x14\xbe\x27\x86\x45\x8b\x46\xab\xb8\x25\x3b\x26\x99\x04\x6a\x32\xcc\x9d\xa4\x0f\x78\x81\x3c\xf0\x87\xb1\x42\x49\x60\x81\x68\x4e\x64\xca\x04\x27\xb2\xa9\x9e\x6c\xa9\xea\x0b\x17\xbf\x0a\x85\x7e\x7d\x7a\x86\xb5\x91\x34\x2e\xde\x96\x54\xe2\x9b\x4c\x13\x94\xe7\x98\x6f\xd8\xa9\xb0\x27\xe0\x4b\xaf\x8b\x37\x02\xfb\x2e\xb4\x00\x3b\xb8\x41\x80\x47\x5c\x47\xf6\x46\x65\x40\x6b\xc2\xec\xa4\xd8\xe7\x2a\x90\x19\xd0\xd7\x73\xb8\x0d\x5e\x4b\x0b\x85\x42\x7f\x87\xbd\x3f\x7a\xae\x37\x2f\xde\xbb\x53\xcb\x93\xc3\x1c\xad\xe2\xf5\xcc\xf2\x58\x4b\x5e\x72\x87\xe3\x88\x5c\x18\xf5\x29\xb2\x3d\xea\x1b\x0c\x0d\xac\x1d\x5c\x3d\xbc\x57\x84\xae\xc4\x12\x24\xf7\x10\x4e\xe6\x33\x51\x2c\xb5\x22\xf3\x40\xcf\x3f\x31\x66\x79\x30\x0f\xe7\x67\xde\x93\xbc\xf5\xe8\xb1\xee\x36\xae\xd2\xa4\x14\xe1\xe0\x13\xe7\x24\x13\x15\xe5\x7b\x61\x6e\xc6\x1b\x02\x5d\x82\x01\xa2\xb7\xa4\x02\xe4\x85\x94\x76\xd4\xd7\x74\x2d\x8c\xa2\x4c\x46\xcc\xbf\xf9\x1b\xe4\xbf\x18\x62\x39\x36\x05\x37\xa7\xae\x56\xc0\x5a\xa0\x1e\xae\xdf\x0b\x3f\x8f\x99\x4f\xef\x4b\xa9\xdb\xc9\x1d\x89\x2d\xf5\x1d\xb7\xb5\xd6\xb3\x97\x9d\xe5\x8d\xa2\x3e\xa6\xb1\xa6\x77\x67\x74\x67\x99\x63\xb7\xe5\xac\xe3\x1e\xe7\xeb\x17\x8c\x12\x91\x97\xfe\xa5\x1d\x66\x75\xe9\xfd\x18\x9b\x9f\x1f\xd9\xf8\xbf\xdc\x80\xca\x69\xf0\xfa\xa7\x89\xfa\x4e\xce\xf2\xb3\x0c\xf8\xf0\x45\x0f\x64\x0b\x3d\x4d\x3a\x09\x0f\xce\x32\x4e\x47\x9e\x70\xbe\x53\x41\x5c\x11\x3e\xb1\x26\x49\x77\x19\x33\xb9\x6c\x45\x0f\x8d\x30\xb3\x28\x37\xb3\xb0\x9b\x0c\x84\xca\xa4\xa7\x4f\xfe\xef\x84\x07\xaf\x2b\x89\x17\x51\x4b\x68\x83\xfa\x4d\xbe\x45\xd7\x49\xf1\xc1\x11\xce\xd5\x4f\xe8\x54\xa2\xc5\x22\xc5\xb2\xa4\xb4\x65\x08\xe4\x89\x14\xff\xa8\x98\xab\xcb\x69\x29\xe8\xb6\xe8\xef\x9a\x3a\x38\xed\x07\xb1\x27\x29\x17\x9d\xb6\x20\x8e\x44\xfd\x0f\x75\xbe\x3a\x9d\x6d\x6f\xf7\xcc\xe8\xf6\x68\xd4\xe1\xe4\x25\xc5\xdb\xfb\x7b\x39\x8c\x18\x7c\x57\xd9\x55\x89\x57\x17\xd2\xf4\xd5\xbe\xd2\xc7\x35\x62\x33\x85\x33\xf7\xb3\x02\x76\x9c\xce\xb5\xfe\xb5\x71\x5e\x79\x68\x75\x92\xbd\xdf\xe6\xb1\xff\xc6\xfe\x92\x6b\xb7\x57\x13\x6b\x98\xe3\x21\x1d\x06\x55\x68\x59\x9c\x31\xaa\x3e\x45\xb6\x2d\x46\xe1\x46\x54\xa6\xa9\x66\xe8\x16\xd1\x36\xaa\xf6\xa8\x8e\x3f\x5c\xcd\x3c\x10\x7c\xa7\x03\xbd\x63\x16\xb3\xd1\xab\x08\x3b\x3f\x4c\xca\x6e\x7c\xf9\x17\xf2\x0a\xbd\x83\x7f\xfe\x73\x29\x71\xb8\xbe\x4d\xac\xf4\x32\xc3\x2a\x4a\xc3\x8b\xc5\xc1\xd5\x6e\xd3\x21\xd0\xf9\xa7\x1b\x86\x47\xb5\xcf\xb0\xbf\x71\xf0\x9b\xf0\xf6\x68\xe3\x84\xb1\xcc\xad\x72\x68\x5b\xd7\xc8\xf2\xca\x9b\x43\xad\x7f\xc3\xef\x17\xe7\x73\xe5\xdd\xec\x79\xba\x41\xda\xe6\xf0\x52\xa3\xb4\x8f\x11\x62\xbe\x3f\x7d\x71\xfc\xf6\x02\x35\x82\x7b\xc3\x9d\xa2\x1c\x62\xf7\x12\x71\x53\xdd\x32\xdf\xe6\x61\x94\x75\xb6\xac\x0d\xd1\x2d\x62\xec\xaf\xbd\xd9\xfe\xf7\x09\x7f\x24\x6e\x8d\x4e\x46\xb6\xfe\xcc\xb2\xf7\xe5\x35\x13\x97\x7c\x4d\xbb\x8a\xf9\x13\xb5\x1d\xc3\x1b\x7b\x92\x10\x97\x82\x93\xc1\x9c\xed\x97\xf7\xa5\x88\xaf\xec\xbe\xda\xbf\x19\x3a\xd0\x30\x37\xbd\x93\x75\x4e\xf0\x79\xe5\xbf\x24\xe0\xc1\xfd\x5a\xf2\xe8\xf5\x66\xf8\xcc\xda\xc0\x4c\x73\x5e\x59\x4f\x8e\x68\x7a\x41\x16\x51\x4e\x44\x9e\x79\x11\x45\xc9\x43\x65\x70\xcd\xdb\x46\x94\x36\xba\xce\xe3\x81\xe0\xd9\x81\xad\xc8\x13\x9a\x5b\x9a\x3f\xfd\xff\xe2\x40\x2d\xb7\xf5\x6f\x6a\x4e\x6e\x5e\x7a\xef\x4f\xef\x98\x6c\xbe\xda\x34\xde\xc4\x78\xe6\xbb\x8e\xb7\x46\xf2\x6c\xfc\x19\xd7\xca\xab\x25\x87\x15\xd9\xe5\x80\x15\xac\xdd\x83\x63\x84\xf7\x67\xf7\x52\xff\x3f\x06\x52\xf2\x25\xf5\x1d\xc5\xeb\x5f\xbb\x61\x6b\x68\x4b\x8d\x73\x9b\x33\xec\x93\xaf\x26\x5f\x8f\x7b\x8c\xd8\x8d\x75\x8f\x06\x8e\xf4\x0c\xed\x0c\x7e\x1e\x6c\x19\x30\x1b\x94\x1f\xca\x9f\x0d\x5f\x7b\xfa\x12\xed\xd2\xeb\x2e\xf0\x71\xf8\xef\xcf\x3f\xfc\xc9\xf7\x9c\x72\xff\xea\x99\xe3\xcc\xcd\xd8\xea\x10\x61\xbf\xe2\xd3\x88\x4e\xe1\x0e\xe2\xf6\xc8\x36\x8f\x16\xed\xe6\xdc\x66\x9f\x66\xdd\x46\xfa\x7a\x84\x7a\x82\x7a\x81\xc6\xce\xee\x57\xe3\xc8\x4b\x8f\xbb\xef\x4f\x89\x6f\x20\x0f\xa9\x7f\x31\x10\x94\xe3\xf0\x6d\x87\x05\xf6\x91\xfb\xee\xb9\x76\x8a\x86\x0f\xb5\xcb\x55\x96\x95\x1e\x65\xb9\xe5\x12\x25\x3e\xc5\xc9\x85\x9b\x05\x0a\xf9\x3b\x79\x83\x39\xc8\x79\xe2\x79\xbd\x05\x8e\xd5\xba\xed\xc5\x43\x93\x73\xe9\x5b\x16\x47\x4d\x1f\x1b\x1e\xf0\xa0\xd0\x4f\xb1\x27\x06\x9b\x6f\x67\x5c\xfb\x89\x5b\xba\xab\xa7\xca\x8f\x0a\x41\xee\x4e\xe6\x5e\xfa\x51\xca\x52\xf2\x61\x22\x6d\xd2\x74\x82\x7a\x7c\x66\x6c\x72\x2c\x6d\xb4\x58\x8c\x7f\x74\x56\xfc\x6a\x36\x61\xb9\x7e\xb3\x49\x5f\xd7\xf4\xea\x46\xdd\x11\xe5\x35\xc5\xfd\xb7\x4b\xf7\xad\xf6\xe9\xa6\x9e\xf4\xfa\xf2\xe2\x92\x6c\xcb\x34\xfd\x44\x8e\x18\x9e\xc8\xd7\xe1\x92\xc1\x8b\x01\x33\x81\x91\x81\xa8\x7e\x96\xbe\xed\x3e\x77\xbe\x2c\x9e\x50\xef\x73\xcf\x47\x7f\xc2\xa8\xfe\xb4\x81\x62\x8a\x06\xec\x9e\xf6\x69\x9c\x4d\x81\xe3\xf2\x2b\x8d\x17\x12\xb3\xf6\xbd\x18\x75\x72\x79\x31\x29\xf4\xd1\x9a\x61\x57\x01\x9f\x7d\xd4\x3c\xb0\x5c\x87\x9d\xc7\x9c\x54\x1d\x74\x1c\x06\xec\xbe\xdb\x38\x59\x95\xda\xb0\x59\xee\x58\xe5\x58\x54\xd8\x3d\xf1\x0a\x0c\x9b\x49\xd6\x2e\x98\xad\xfb\xd3\x73\x34\x93\xb3\x2d\x7d\x44\xb2\xb2\x32\xb0\xdf\x10\x94\x7f\x91\xb0\x1d\x5c\xe4\x1d\xe9\xd2\xe5\xc0\x67\x9d\x64\xe6\xfb\x04\xdd\x78\xc7\x90\xc3\xa0\x50\xdf\x5a\x77\x59\xe7\x8b\xb6\x9e\x76\x87\xd6\x5b\x1d\x42\xcd\xe7\xfa\x9b\x56\xc6\x6e\x9d\xc1\x6f\x12\x8f\x0b\xb2\x1b\xf0\xfb\x32\xe6\xc5\x76\x09\xa6\xa0\x9d\x92\x65\x57\xa9\x0a\x21\xbb\x9e\x04\xb6\x92\x4f\xa2\x0d\xbc\x75\xa9\x35\x95\x55\xdf\x29\xd3\x29\x09\xca\x67\xc8\x8d\xcb\x85\xc9\xf6\x48\x5f\x49\xdd\x49\x16\x49\x0d\x4b\xf1\xc8\xb3\x69\xa3\x9b\x13\xbb\x5c\x06\x9b\x25\x79\x15\x75\x34\x8b\x0c\xcb\xae\x4f\x8e\xd2\x36\x0d\xe6\x27\xc4\xca\xf8\x2e\xda\x4d\x1b\x33\xa8\x4f\x29\x72\xc9\x6c\x4b\xc8\x88\xb6\x09\xd3\x08\x28\xf0\x6b\xf1\xbd\xe2\x3d\xe6\x69\xe3\x8e\xe0\xa6\xe6\xe4\xe3\x62\xe2\x84\xe7\xc7\x96\x76\xd5\xf8\x64\x16\xe6\x6a\x14\xf2\x2a\x35\xa9\x2c\xa8\xdd\x71\xf5\xc9\xa0\x55\x9d\x63\x56\x7b\x04\xb1\xc7\x99\xb9\x9a\xe6\x9a\x6c\xb7\xd0\x00\xaf\x3f\xa7\x2a\xeb\x04\xf3\x2a\x63\x1d\xfd\x01\x9d\x0c\x6d\x2a\x2d\x13\xf5\x1e\xd5\x7b\x2a\x5b\x4a\x09\x4a\x71\x7a\x46\x6e\xa8\x14\xbc\x26\xc4\x5c\xd5\xc3\x38\x52\x2b\x9b\xba\xa6\x7b\x79\xa2\xbf\xbc\xa6\x3a\xd3\x2b\x9c\xc1\x8d\xce\xf4\xb5\x6a\xb5\xe8\x31\xfb\x22\x9d\x2a\xe5\x4f\xb2\x49\x92\x24\xa2\x17\x04\xe3\xf8\x54\x78\x4c\xb8\x70\x38\x8c\xd8\x53\x38\x00\x3b\x06\x5b\x9e\x40\x93\xe6\x19\x0f\xa5\x74\x9f\xf6\x67\x1b\x29\x3f\x9e\xf8\xce\xa2\xf0\x15\xaf\x81\xa0\x5a\xff\x6c\x8c\xc8\x72\xf7\x07\xb3\x5c\x35\x64\x91\x1a\xe6\x97\x10\x4b\x9c\x3c\x8c\x5b\x34\x6e\xe4\x0c\x44\x1e\x78\x6b\x38\x53\x98\x8b\x91\x03\x58\x03\x76\xa0\x86\x28\x47\xd0\x4b\x2f\x25\x40\xa0\x00\x35\x32\x74\xe6\x08\x9d\xcd\x78\xbe\xc6\x39\x9c\xdd\xd8\x5f\xc0\x12\x17\xe4\x8b\x6d\xf5\x5d\x6b\x5c\x92\x97\xfd\x3d\x39\x13\xfa\xff\xe3\x2b\x04\xb0\xc4\x24\x29\x60\x83\xe5\x61\x04\x80\x08\xa0\x02\x4c\x70\x01\xb8\xda\xd4\x47\xdc\x7d\x32\x04\x3a\x07\xb6\x64\x7e\x0f\x89\x24\xdb\x48\x93\xa4\x1d\x6f\xcb\xe9\xd3\x50\x42\xd2\x9c\x0e\x8d\x78\x14\x12\xf9\xad\x68\x6f\xf1\x7c\xe0\x30\x01\x1e\x60\x00\xd4\x80\x0b\xe0\xc0\x7e\x53\x01\x1a\xa0\x0a\xe8\x81\x0b\x96\x04\xc5\x1e\xa7\x8e\x94\x8f\x96\x9b\x35\xf0\xb5\x8d\x73\x7e\xf1\x7a\x71\x65\x40\xba\x41\x30\xb7\x21\xba\xcf\xf3\xa7\x85\xb0\xfa\x95\xd8\x0f\xd6\x34\xd2\x6e\x94\x77\xb0\x36\x33\x4e\x40\x01\x18\x60\xd9\x1e\x3c\x20\x01\xb8\x01\x13\x30\x43\x43\x21\xcd\x65\xed\x10\x8b\xd1\x78\x6b\x39\xeb\xd5\x18\x3b\x7f\xda\xb4\xf9\x67\xca\xbc\xbd\xb4\x54\x33\xd9\x37\xb0\xc5\xfe\x50\x5f\x5c\xf6\x19\xcf\x22\x0d\x0d\x8e\x1b\xa0\x86\x79\x38\xa9\x01\x2b\xcc\x89\x8a\x01\x70\x80\x22\x60\x00\xdc\x48\xc1\xc4\xbc\x4c\x9b\x22\x68\xaa\xf1\x16\x68\x9e\xda\x31\xce\x1f\x2e\x0e\x4a\x16\xbe\xf6\xa5\xd4\xbc\xcc\x7a\x11\xc1\xe6\x4e\xf3\x24\x54\xd5\x47\xc4\x97\x39\x97\x44\x00\xb9\x0e\x10\x02\x76\xd8\x4e\x16\x0e\x20\x0f\xeb\x78\x65\x00\x6c\x40\x08\x41\x9e\xe0\x13\xa3\x89\x60\xbf\xca\xa5\x99\xbe\x87\x73\x64\xdd\x37\xd4\x53\xa4\xf5\x98\x31\xc4\xe6\xdf\x85\x6f\x12\xe4\xfd\xb2\x6c\x9f\xe8\x1a\x4a\xff\xe0\x16\xa1\x1a\xc6\x26\x06\xa4\x00\x03\x10\x02\x32\xc0\x05\x38\x81\x34\x50\x04\xc4\x00\x13\x48\xc3\x69\xe3\x9f\x31\xec\x0a\x2d\x29\xee\x18\x2f\xb9\x22\x47\x68\x3e\xd4\xbf\x7b\xbb\x8f\x33\x2b\xfa\x14\xa3\x0a\x2f\x43\x2d\x2c\xc7\x95\xcd\x64\x4b\xc5\x48\x78\x8d\x59\x86\xb8\x0e\x29\x09\x08\x01\x6e\x20\x0e\xc8\x81\x25\x90\x07\x62\x40\x1a\xe6\x90\x65\xc4\x61\xa1\xc9\xe2\x4d\x57\xd0\x30\xc2\x71\x5e\x08\xc7\x80\x42\x3f\xb1\xbf\x16\x58\x25\x18\xe6\x6e\x5a\x2a\x98\x88\x67\xf1\xd5\xb3\xc9\xd4\x65\x91\xf1\xe7\x11\xa1\x66\xc7\xba\x02\x3c\xb0\x6c\x92\x20\x60\x02\xd8\x40\x05\xee\x0f\xfc\x37\xc4\x08\xa4\x03\x7c\x5c\x06\x5c\x21\x2b\x95\x65\xb3\x6c\xcf\xf4\x98\x6c\x28\xf4\x47\xf0\xa5\xd5\x0e\xc9\x34\x5d\x97\x52\xc5\x42\x7a\x72\xd8\xa3\x9b\x82\xe9\x83\x6a\x84\x48\x3f\x2b\x23\x89\x38\xa2\x11\x3c\x31\x62\x22\xf2\x7b\xb4\x18\x8c\x97\x58\xc7\x38\x5f\xf0\xa8\x08\x30\x09\xc7\x29\x07\xb8\x34\xa5\x4f\x74\xcf\xed\x95\x03\x7f\xa4\xc0\x36\xaa\x5f\x1f\x1c\x7e\x5c\x11\x1e\x2c\x6d\xe2\x2c\x48\x8e\x6f\xf6\x27\xb7\xf7\xd5\xe7\x91\xfb\xce\x27\x40\xf3\x11\xfb\x1d\x76\x11\x9e\x0d\x41\x28\x71\x12\xe9\x67\xf2\x5a\xca\x5a\x1a\x4a\xba\x47\xfa\x3f\x6c\x54\xa2\xb7\x6a\xd5\xe6\x28\x9e\x78\xd1\x26\xb9\x30\xf4\xbf\x77\x38\x5f\xda\xc1\x9e\x5a\xe9\x0a\xad\x1c\xc8\xd8\x8c\xf8\xec\x3e\x63\xa1\xac\x11\x23\x31\xca\x6e\x46\xce\x41\x61\x4e\xa5\x4c\xb3\xce\xc0\xc5\x34\xc2\xf2\x8d\x1d\xc2\x55\xc2\x1b\xc9\xf7\x5d\x98\x42\xb1\xc1\x88\xd4\x09\x2e\xd8\x20\x95\xb5\xfc\xff\x3a\x2c\x83\xae\xe1\x0e\x47\x56\xac\x87\xc3\x9b\x05\x8b\x3e\x25\xad\x05\x75\x39\xfd\x7f\xac\xfd\x63\x98\x5d\x5b\xf6\xfe\x0f\xaf\x24\x95\x14\x82\x42\x92\xb2\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\x57\xa5\x98\xfd\x5c\x5d\x7d\xba\xfb\x9c\xd3\xfd\x7b\xae\xff\x8b\xef\x7a\x7f\x8f\xb5\xaa\xf6\xde\xe3\x33\xd7\x9c\x63\x8c\x7b\x4c\x51\x4a\xa0\x86\xde\x82\x90\x9f\x18\x96\x24\x8f\xdc\x9a\x72\x89\x66\x98\xfe\x85\x71\x94\xc5\x9c\xe3\x82\xab\x9e\x57\x4f\xaa\x4f\x2b\xdb\x1a\xd9\x87\x28\xb6\x39\xff\x8f\x5d\xef\xfb\x9e\xdd\xd6\x59\xf0\x1e\xb6\x6a\x95\x6c\xb4\xa8\x49\xef\x22\x9b\x4f\xda\x7d\xd2\x3c\xdc\x1f\xe8\xc9\xe8\x6d\x19\x7f\xb3\xbc\xb0\xf3\x70\x69\xf2\x5e\x0a\x18\x0b\xdb\x8a\x16\x48\x70\xc9\x48\xa9\x53\x9b\x59\xba\x19\x84\x83\x65\x90\x56\x56\xfc\x81\x8c\xde\xf3\x84\x35\xcc\x31\xf8\xd6\xd3\xd2\xbe\xd4\xf3\x30\x2a\xb7\xcf\xe6\xe6\x1a\x5f\xc4\xa5\xb8\x6f\x78\x12\xf9\xeb\x05\xdd\x85\x7f\x8b\x3d\x4b\xb5\xc8\x5a\x2b\x74\x28\xc7\xa9\xe9\x68\xcd\x19\x4f\x39\x95\x06\xf1\x24\x09\x17\xbf\x6f\x21\xff\x17\x75\x7e\x8d\x1c\x30\xcc\x2f\xf4\x2f\x37\x54\x17\x9c\x27\x7e\x08\xa2\x75\x2a\x36\x56\x57\x1e\x95\x94\x97\x36\x94\xf9\x25\x4f\xa6\x64\xa7\x5a\xaf\x61\xa5\xed\xa6\x67\x6a\x84\x6c\xe2\x63\x79\xe5\xd0\xe9\x4f\x12\x27\x9a\x7b\x5d\x27\xd7\xff\xe5\x3f\xe0\xbb\x76\xdc\x86\x9e\x26\xec\xd6\xa9\x49\xc9\xfd\x16\x87\xe7\x5f\xe5\x10\x66\xa8\xa3\x61\xad\x3e\xa6\x05\xa6\xe3\xaf\xcf\x69\xe4\x6c\xf6\xde\x32\xda\xe6\xc1\xc1\xce\x39\xc5\x7d\xc1\x8f\x23\xfa\x39\xab\xbe\xea\x4b\xe7\xec\x94\xe8\x7f\x22\xbc\xf2\x9d\xae\xae\xd6\x8c\x93\x75\x14\x54\xd2\x67\x0d\xc7\x40\xf8\x16\xd8\x82\x4c\x19\x4d\xfd\x2c\x1e\xac\x87\x6c\x93\x1d\xbc\x5d\x3c\xdd\xd5\x3d\x5f\xfd\x25\x82\x81\xf0\xf0\x58\xbd\x8c\xdb\x72\x85\x36\xa9\xd1\xee\xd5\x85\x3f\xe3\xf7\xa1\xef\x90\x6f\x99\x78\xe4\x7d\xab\x60\x59\x5b\xa6\x5a\x34\xb5\x2f\x89\x73\x99\xb3\x81\x1b\xba\xbb\xbd\x37\xa4\x6f\x5d\xe0\x74\x88\x5a\x84\x4d\x74\x42\x62\x7a\xea\x52\xee\x5e\x99\x55\x8b\xc3\x50\xda\xe2\xfd\xe1\xdf\x3c\xfa\x6f\xe1\xf6\xbf\x2f\xa4\x0c\x09\x37\x53\x97\xd6\x65\x18\x45\x3d\x07\x6b\x04\xee\x07\xeb\x85\x41\x47\x44\xc6\x30\xc7\x77\x27\xf3\xa4\x99\x66\x51\xe5\xcd\x15\x5f\x57\x6c\x37\x77\x0c\x26\xce\x17\xef\x89\xdf\x36\xfc\x6d\x15\x00\xba\x7e\xd8\xc1\x9c\x8d\x18\x84\x6e\x89\xa9\x50\xce\xe2\x4b\x5c\x8e\xff\x98\x08\x97\x3c\x98\x96\x9f\x09\x91\xfb\x5a\xa8\x5b\xaa\x51\xa9\x56\x9b\xde\xd8\xde\xce\x3f\x90\x32\x67\xbe\x93\xf8\x67\x5f\x57\x10\xe8\x69\xea\x4a\xef\x84\x79\x5f\x73\xfb\x6e\x3d\x64\xa5\x73\xd1\x74\xb9\x65\xa9\x76\xe1\x75\xde\x7a\xce\x6e\x16\x67\x36\x7f\x56\x61\xda\x75\xba\x62\x2a\x60\x9a\x62\xde\x6b\x8b\xf9\x54\xf8\xd7\x7f\xf9\xd3\xdd\x3a\x1c\x99\x6e\x7a\x2e\xc3\xcd\x3d\x4f\x61\x8f\x83\x0d\x07\x0d\xc2\x0c\xd8\xf6\x85\xf7\xe5\xf6\x55\xf6\xf8\x74\x37\x76\xc3\x76\x89\x76\x7d\xe9\x50\x6a\x0f\xeb\xb0\xea\x33\x99\x28\x5f\x91\xdf\x7f\xba\x36\xfe\xfd\x6f\x7f\xfc\xdf\xd1\x97\xf7\xbb\xb6\x8b\xb6\xe3\x35\xc3\xa3\xbd\x5e\x1d\x61\xad\xf9\x8d\xaa\x0d\x86\x75\x55\xb5\xf4\x35\xc8\x55\x8e\xd5\xa5\x55\x15\x95\x73\xe5\x62\x15\x9f\xcb\xba\xcb\xc8\x4a\x0d\x6a\x51\xdb\xb7\x46\xc0\xe6\x99\xb7\x65\xcf\x8f\xff\xd9\x0b\xf3\x7b\xed\x7c\x6c\x53\x73\xfa\x66\xc0\xaf\x83\xb3\xa9\xb9\xd6\xbe\x2c\xa0\xc4\xbc\x50\x35\xcf\x36\x67\x28\xeb\x77\x56\x6d\x26\x58\x86\x7f\x06\x57\x1a\x7b\x8a\x49\xf2\x50\x4a\x69\xaa\x43\xf2\x69\xf6\x64\xb9\x74\xd3\x43\xdf\xdd\xb4\xf0\x06\xdf\xe9\xee\x33\x19\x08\x74\xb5\xbc\x35\x30\x19\xd0\x9d\xd0\xd0\x58\x4e\x58\x68\x90\xdd\x9c\x66\x9b\x02\x97\x40\x1b\xa7\x15\xdd\x13\x95\x16\xf9\x33\xa2\x37\x82\x2a\x1c\x26\xe4\x28\x58\x2f\x24\x2b\xf0\x26\x98\x2d\x04\x2d\x3a\x33\x6d\xab\xe8\xa8\xae\xbf\x3b\x7d\xf2\xc3\x3a\xdb\xe9\xe3\x83\xe0\xce\xd4\x54\x4f\xe7\x63\xb5\x5b\x01\x74\xfa\x50\x22\x4c\x0c\x51\x18\x5c\xd0\xb3\x3f\xa5\x0f\x99\xb7\xb1\x87\xa6\x9b\x9d\x3b\xba\xab\xb7\xab\xbf\xab\x98\xb3\x87\x53\xb1\x83\xbb\xd3\x9d\xc3\x94\xb7\x5c\x98\x4f\x92\x69\xde\x7a\x0d\x41\x17\xcc\xc4\xec\xfa\xc8\x51\xf5\xbc\x4f\xaf\x61\x8d\x5d\x2e\x58\xa2\x76\x84\x58\xa0\x9e\xd7\x99\x1b\x91\xc3\x8d\xdd\xb3\x8d\xaf\x25\xb7\x25\x84\x79\x84\xe9\xbd\x69\xbd\xc9\x99\xb1\x81\x11\xbe\xe1\xb1\x41\x86\x11\xad\x21\x8b\xd5\xa2\xdb\xbb\x20\x89\x78\xe5\x5c\xe8\x6a\xab\x2e\xaf\xc9\xba\xf5\xc6\x61\x85\xc6\xa0\x82\x94\x84\x96\x50\x18\x4f\x46\x87\x27\xeb\x59\x93\x27\x83\x17\x9d\x75\xad\x54\x0d\x6a\x35\x36\x15\x1b\x55\x05\x95\x6d\x15\x6f\x95\x1f\x0a\xbf\x94\x28\x14\x70\x14\x88\x15\x94\xb5\x14\x4c\x77\x9d\x72\x02\xf0\x63\x1f\x72\x6e\x6a\x2c\x7b\xaa\xe6\x82\xbb\x53\x2b\x3f\xa5\x5b\x47\xc4\x7a\x7d\xb0\x95\x30\x2a\xd3\x9e\x55\x2d\x57\x8c\x94\xb9\x90\x0c\x96\xc8\x17\xe3\x17\x53\x11\x0d\x16\xe5\x11\xd6\x12\x16\x10\xdc\x16\x58\xe2\x4f\xe1\x2f\xe3\x9f\x94\xbc\x51\x83\x31\x66\x71\x98\xf6\x8f\x8f\xeb\xca\xbb\xae\xaf\x9f\xe4\x6c\x1d\x2e\xb2\x48\xb0\x0d\x2c\x74\x24\x36\xde\xd2\x60\x97\x59\x10\xc3\x17\x2c\xe4\x4b\xe1\x62\xe2\x88\x63\x6b\x66\x99\x65\x76\x62\x3a\x66\x6c\x67\xdc\x67\x18\xa4\x37\x65\x40\xa1\x4f\xa6\x77\xe2\x5c\x14\xf3\x56\x5e\x33\x12\x71\x64\x08\xb4\x4b\x6c\x2c\x76\x19\xdd\x6e\x3c\xc8\x6b\x89\x99\xf4\xc1\xb2\xde\xd6\xb1\x94\x63\x12\xd2\x66\xf7\x65\x6a\xa1\x43\xa3\xfe\x4e\x49\x4e\xe6\x49\xfa\x91\xb8\x93\x98\x8a\xf0\x89\xa0\x8a\xa0\x16\xff\x01\xff\x3b\xde\x30\xfe\x06\x15\x0c\x5b\xaa\x48\x98\x72\x85\x71\xa9\x4b\x7c\x18\x53\x7a\xcf\x88\x56\x83\x4f\x2e\x47\x4c\xaf\xb7\x81\x65\xb2\x26\x9c\x24\x07\x97\x18\xad\x3e\x09\x2a\x5e\x20\x36\x15\x86\x1e\x9a\x34\x4a\x1a\xb2\x0d\xe2\x06\xc2\x2b\x42\x12\x22\x2c\x22\x2d\x42\x1d\x02\x1e\x42\x26\x66\x0d\xb9\x30\x1b\xba\x18\xba\xda\x89\x85\x9d\x47\x42\xf4\xc2\x28\x58\x63\x77\xc1\x50\xec\x8a\xcf\x96\x55\x87\x26\x8f\x44\x2c\x87\x33\x79\x11\xa6\x2f\x02\xea\xf7\x2a\x98\xfa\xaf\x3b\x5f\xde\x41\x55\x41\xc6\x41\x1c\x42\x28\x42\x30\x43\xd0\x41\x50\x80\xaf\x82\xe7\xc2\x5c\x63\xe2\x53\xca\x70\x26\x48\x15\xe9\xc4\xd9\x25\x06\x62\x4e\x88\xb4\x76\x94\xf0\x27\xa1\x07\x4c\xd8\xdd\xeb\x56\xcb\x40\x72\xcd\x53\x6e\x62\x42\x42\xf7\x82\x05\xbc\x73\x06\xa0\x00\x3c\x40\x1d\xa0\x7f\xdb\xbd\xf8\x07\x7d\xe9\x00\x6c\x00\x0d\xfc\x0e\x01\x0e\x1f\x97\x41\x58\x20\x5a\xa9\xc2\xb4\xc9\x5d\x7b\xd6\xae\xbb\xb3\xca\x2a\x23\x2d\x9c\xdf\x0d\xce\x14\x5c\x39\x4b\x70\x98\x61\x18\xdf\xe1\xe7\xe5\xc7\x29\xe0\x2b\xc0\xf6\xb6\x03\x03\x01\xc0\x01\xc8\xc0\x0f\x00\xe5\xed\x3c\x83\x1a\xec\xe5\xc7\x67\x9c\x2a\x5a\x5f\xde\x67\x79\x5e\xc3\x1f\x4e\xdd\x2b\xcf\xc3\x2e\x4d\x6c\x85\xb0\x09\x18\xbe\xcf\xd6\x71\x5a\x52\x92\x9c\x1c\x7c\x64\xaf\x68\xc0\xd7\x4f\x00\x1c\x40\xf2\xd6\x79\xf1\xe3\xad\x0e\x85\x16\x20\x02\xde\x03\x6c\x00\xe9\x3b\x1c\x98\x69\x2c\x46\x6a\x6a\x1e\x65\xb9\x19\x83\x23\x87\xe9\xdd\xaa\x99\xe6\x6e\xef\x4a\xb7\xf4\xb0\x50\x0e\xe7\x28\x23\x31\x85\x40\xfe\x10\x3a\x1e\x5c\x89\x1f\x36\x60\xba\xc0\xb7\xb7\x39\x1a\x10\x00\x2e\x80\x0d\x7c\x05\x70\xde\x7a\x59\xc5\x00\xba\xaf\xbb\x68\xeb\xe4\x20\x2e\x3a\x99\x09\x7d\x1a\x07\x8e\x73\xb7\xd5\x9c\xe1\x8c\x46\xa1\x7c\xb0\x18\x0f\x6f\x6d\x4b\x06\x0d\x6a\x31\x25\xd6\x2b\x52\x37\x94\xcb\xcf\xf1\x6f\x95\x9b\x50\x00\x37\x20\x0f\x30\x00\xa8\x80\x38\x80\x0b\xf0\x02\xc4\x00\xf1\x67\x4f\xd4\x27\x72\x53\x8e\x17\x69\x1b\x3d\x4c\x07\xda\x5f\xa1\x3b\xaf\xd3\x68\x1d\xbf\xca\xc0\x52\xde\x07\x49\x3b\x3a\xe9\xf7\xc9\x05\xf2\xe6\xd0\xcc\xe3\x0c\x7e\x8f\x79\x3f\x0f\x20\x00\x24\x6f\x1e\xb9\xdc\x6f\xb3\x59\x19\x81\xaf\x00\x23\x40\x0b\xe9\x82\x38\x4f\x9c\xc9\x4a\x21\x1e\xa7\x59\x6e\x7d\xfa\xdb\xe6\x54\x6a\xc9\xb7\xbf\xb5\x56\x39\xe7\x7d\x94\xa3\xc7\xad\x79\xb7\x1a\x9e\x68\x04\x4b\x26\xc9\x2b\x4a\x18\xd4\xdd\x1f\x15\x20\x50\x80\x06\x80\x05\x70\x03\xe8\x00\x3d\xa0\x0c\x50\x82\xeb\x20\x79\x93\xb4\xb2\xb3\x49\x7d\xd4\xe9\xb7\xcf\x02\x81\x6e\xd4\x37\xfd\xc6\x3b\xdb\x52\x4a\x24\x93\x1c\x02\xd6\x1d\x08\xf4\x3f\xca\x41\xf2\xfd\xa4\x2d\xc5\x03\xff\x3e\xf5\x8e\x09\x40\x07\xbe\xbd\x47\x00\xb3\xfe\xd4\x0b\x09\x09\x25\xf3\x85\xe8\x6b\x0c\xb4\xe8\x77\x3a\x9c\x58\x3a\x22\x01\x52\xa5\x12\x53\x62\xf7\xed\x7f\x64\xd8\x23\x81\xf9\xec\xbe\x0f\x35\xf2\x59\x7d\x51\x90\x1e\xcf\x16\x3a\xea\x04\xe2\xdc\x6c\xfb\x64\x5a\xa8\xaf\x50\x4c\x50\xea\x5f\x86\xa1\x19\x60\x0f\xbf\x1f\xc3\x57\x23\xfd\x40\xc6\x45\xcd\x43\x7f\xc4\xc2\xa2\xa0\xe2\x58\x93\x12\xd5\xe1\xb6\xeb\x08\x7c\x9b\xde\x70\xc5\xb2\xd1\x32\x16\xd5\x0a\x53\x7c\x94\x0c\x19\x24\xe4\xc8\x6d\x48\xab\x30\x2b\xc8\xce\x90\x80\xdf\x0d\x8f\x89\xa0\x80\x74\x84\x8a\x80\x51\x84\x15\x86\x6b\x81\x2f\x4f\xb8\x48\x32\x4a\x36\x43\xbe\xcd\x52\x24\x62\xa7\xca\x6c\x96\xe9\x11\x14\x95\xfb\x96\xe7\x99\x0f\x2d\xe6\xeb\x7b\xab\x6a\x89\x72\xa4\xa3\x7d\xbc\x4b\xac\x51\xb4\x65\xa4\xe6\xb8\x25\xa8\x44\xb0\x13\x70\xc5\x09\x30\x89\x28\x48\x69\xc9\x2b\xa9\xd1\x68\x23\x18\x24\x98\xde\xb1\xe6\x70\xc8\x0a\x12\x2a\xa4\x1b\xf4\x3b\x66\x04\x7f\x4c\x19\xff\x67\xb6\xbe\x9c\xd9\xd4\x1d\x57\x6e\x63\x28\x53\x49\x7d\x0e\x6d\x74\x5d\x35\xa3\x52\xbd\x11\xfb\xce\x9a\x45\xb9\x4f\xb5\x40\xf3\x48\x1f\xc8\x94\xc9\x4a\xcd\xe1\xc0\x95\xc7\xc7\x28\xa0\x2a\xe2\x2c\xb6\x2e\xdb\xa5\xb3\x67\x53\xe6\x8b\x11\xf7\x31\xff\x0f\x6e\x3c\x65\x1f\x4e\x2c\x2e\x0f\x84\x37\x50\x16\xd0\x24\xe0\xf8\x07\x3b\xc0\x18\x46\x2a\x2a\x09\x2a\xb2\x2d\xb3\x3f\x72\x4d\xf1\x4a\x0a\x6c\x09\x9b\x89\x19\x4b\xc6\xc8\xf8\x2a\xbc\x57\x9a\x50\x99\xd2\x92\xb3\x98\xf7\x70\x8c\x70\xc9\xa4\xad\x52\xfb\x17\x33\x6e\x38\xb6\x63\xa7\x9e\xbb\x90\xab\x18\xb2\x22\xa3\xb6\xbd\xfb\x6d\x72\x74\x3a\x64\xad\x44\xbf\x89\x41\x48\xb4\x49\x5b\xc9\x31\x29\x84\x28\xfb\xaa\x15\x69\xb9\xe8\x3a\x1b\x1c\x99\x60\x58\x52\xb8\x6a\x87\x64\xa7\x60\x95\xe8\xb7\xd2\xfc\x2b\xc2\x0b\xfa\xc9\xd3\xf2\xc6\x88\x74\x6b\x55\x19\x4d\xda\x5e\xf8\x86\xc7\x80\xd5\x0f\x6d\x3c\xc5\x25\xa5\x5f\xaa\x89\xea\x39\xda\x48\xba\x53\x86\x28\xa6\x38\xe6\x4f\x56\x8b\x76\x41\x8e\x23\xee\xea\x41\x18\x09\x83\x05\xd8\xf5\x47\x03\x72\xff\xe1\xde\x3d\xcb\x7e\xd1\xdc\x7d\xff\x42\xc3\x73\x91\x7f\xb2\x4f\xe8\x96\xeb\xb1\x05\x86\xfe\xa8\xa1\xa8\xb1\xbf\xe9\x8c\x05\x82\x35\xb4\xbd\x93\x93\xa9\xeb\x9c\xa7\xad\x4f\x43\x60\x4c\x68\x68\xbc\x41\xae\x43\x8d\x62\xf7\xf4\xf4\xea\x9f\xd9\x79\xd5\xbd\xf5\x3a\xa3\xd4\x53\x58\x7b\x57\x50\x94\xd8\x11\x42\xe9\x86\x65\xa7\x64\x27\xee\x88\xe1\x32\xe5\x5a\xef\xa1\xea\x73\xe4\x5f\x15\xac\x16\x9e\x1b\xed\x94\x80\x9c\x22\x94\xd3\x55\x45\xd6\xd1\x37\x7e\xb5\x1e\xfd\xe7\x08\x2f\x9a\x67\xd3\xeb\x65\x93\x62\x5d\x6b\x35\x49\x79\x0d\x89\xbe\x21\x81\xde\x3b\x3e\x0f\x7e\x6d\x81\xd0\x21\x06\xe1\xf0\x51\x4b\xb1\x2f\x89\xe0\x69\x72\x59\x02\x79\x72\xc5\x60\x95\x43\xed\xc9\xa3\x3d\x2b\xbc\xc7\xa3\x7f\x25\xf8\x23\xc7\x09\xfa\xea\xf6\xd8\x43\x67\x5d\x75\x6b\xbe\x5c\x82\x45\xb4\x7b\xd4\x61\x4c\x61\x7c\x50\xe2\x75\xaa\x46\x06\x5c\x8e\x51\xbe\x67\x49\x52\xc5\x6a\xf5\x60\x83\x5c\x57\xcd\x48\xe3\x52\xde\x21\xca\xaf\xff\x72\xca\xbf\x7f\x3e\xd4\x5a\xc1\x1b\xbb\xeb\x06\xaa\x6b\x0b\x1c\x32\xa3\x32\xcc\xb3\x21\x73\x2e\xf3\x2b\x8a\x22\xcb\x7a\xab\xde\xd7\x11\x34\x7d\x6d\x7b\xe9\x7e\x1c\x54\x1f\xaf\x5c\x92\xdd\x9f\xb8\xbd\xfc\xb3\xf6\x75\xe0\xc1\xf3\x3a\xfc\x4c\xef\x98\xe0\xe0\x78\x4f\x6c\x87\x60\x93\x63\x83\x65\xf3\xc3\x7a\xfd\x1a\xdd\x7a\xd1\x32\xc1\x0a\xf6\x2a\xe2\x0a\xdd\xca\xe3\x8a\xd8\xb2\xe4\x8e\xf5\x39\xe3\x63\xe9\x7f\xdd\x5b\xfd\xcc\xf2\x10\x73\xbb\x76\xad\x76\xf1\xf7\x1c\xf6\x34\xce\x94\xc8\x78\xf1\xe8\xc9\xf8\xda\xe8\xc5\x08\xda\x88\xd9\xb0\xcb\xe0\xe7\x41\xac\x7e\xca\x81\xf5\x21\xf4\x41\xcc\x69\xc2\xb5\xf6\xc3\x83\x5b\xa4\xff\xa8\x7f\x9f\x5e\x89\xed\x41\xac\x43\x2e\xd2\x4f\xe6\x8d\xcc\x0c\x0c\xf4\x72\x74\xd9\x75\xe4\xb6\x8d\xb7\xf6\xb5\x08\x36\x59\x36\x73\x34\xa5\x37\x3c\x35\x9c\x37\x38\xd6\xb1\xd6\x1d\x35\x60\xd5\x1b\x77\x59\x8d\x96\x2d\xd2\xee\x54\x5e\xec\xbd\xfc\x73\x2f\x29\xfe\xd2\x74\x1b\x69\x2e\x7d\x6c\xb4\x2f\xb3\xe3\x63\xf3\x7e\x83\x76\x35\x7a\x45\x5a\xd9\x60\x69\x49\xe1\x59\x71\x66\xe1\x65\xfe\xaf\x42\x98\x82\x81\x3c\xe8\xfc\x9e\xec\x98\x1c\xff\x7c\x83\x3c\x8d\xca\x89\x56\x8c\x01\xfa\x19\x93\x4d\xcc\x33\x97\x67\x67\x10\xe8\x72\x75\x8b\x7a\x5a\xad\xaf\xbb\x6d\xa6\xce\xb6\xd2\xbe\x08\x25\xcf\x3a\x93\x2c\x7d\x2e\x25\x3b\x85\x31\x09\x35\xc1\x23\x01\x2e\xe1\x31\x9e\x32\x61\x32\x66\x3f\x86\x22\x06\x2f\x86\x33\x66\x2b\x0e\x2c\x53\xaa\x44\xb8\x01\xbe\x27\x6e\xb2\x78\xdd\xe9\xb4\xe9\x3e\x71\xdb\x62\x5a\xb1\x07\xa5\x41\xa6\xec\x5b\x5e\x67\xba\x61\xf2\xc7\x58\x81\xc8\xba\xb0\x2f\x21\x74\x41\x06\x41\x0c\xfe\x19\x01\xa3\xfe\xf4\x01\xb0\x7e\x8d\xbe\x9d\xbe\x72\xbe\xc1\x3e\xca\x3e\x9f\x7c\xcf\x23\x2c\x93\x7f\x17\xa0\xd4\x5c\x75\xe9\x4f\x08\xac\x9d\x1c\x6d\xcc\xc7\xf7\xf9\xd7\xb1\x16\x15\xa5\x33\xc7\xd5\x44\x3c\x04\x23\xfb\xdc\x7b\xa2\xb8\xfe\x72\x1e\x77\xa0\x74\xa0\xb6\x77\xb6\xe7\xb3\x8f\xb2\xbd\xb6\x3d\xb1\xfe\x6a\x9d\x69\x85\x6c\x71\x60\xc9\x69\xb3\xe5\x7e\x17\x3c\x9b\xa0\x9f\x9b\x54\x0d\xd9\x99\x36\x71\xb1\x2e\x39\x6a\xdf\xf2\xae\x74\x20\xbd\x22\x1a\x2e\xa0\xd0\xd3\xd5\x89\xd3\x76\xc1\xc2\xcc\x64\xc6\xd8\xc3\xd0\xc3\x60\x43\x0f\x5d\x0f\x5c\x0f\x57\xa7\x54\xbb\x47\x9b\x4a\x5b\x5c\x63\x43\x53\x45\xe3\x45\x57\xd5\xfc\xd0\xf9\x2e\x20\x3c\xf6\x29\x47\xb7\x1a\xa7\x9b\x73\x41\xb4\x37\xad\xfa\x35\xb7\x2e\xee\x53\xa0\x93\x2b\x95\x35\xb3\x11\x94\x6e\xb8\xa6\xa5\x2a\x9c\x12\x8e\xbc\x85\xdc\x94\x9c\xb2\x74\x83\x0c\xa7\x74\x9b\x54\x87\xe4\x85\xe4\x95\xa4\xa3\x44\x95\x14\xb3\x4c\xb1\xfa\x82\xf1\xa6\xe3\x4f\xbf\x9d\xd8\xe3\x5c\x8e\xda\xd0\x69\xbc\xf6\xea\x8a\x2f\x69\x93\xe1\x11\xee\xfd\xd6\x65\xba\x27\xaa\xca\x72\x30\x92\x72\xc2\x65\x42\x47\x02\x06\xfc\xca\xbc\xf8\xdc\x6d\xdc\x1a\x5c\xdc\x9c\x77\x9c\x39\x1c\x7e\x1c\xdf\xd8\xdd\x58\x97\x79\xc4\xc5\xa3\x54\xbe\x19\x56\x3a\xa0\x06\x7c\x8d\xef\x2f\xf8\x35\x1e\xd2\x52\x5f\xb2\x93\xb4\x1a\x14\xe4\x94\x6e\x34\xaa\x8a\x22\x49\x2a\xa0\xce\x79\xca\xca\xcb\xcc\xc2\x20\x4d\x1b\x49\xb3\x4e\x2d\x44\x35\x45\xcd\x42\xf5\x81\xd2\x80\x32\x8a\xb2\x98\x02\x44\x81\x49\x43\xc0\xce\x2b\xc2\xa3\xb4\x6b\xc4\xe2\x78\x18\x64\x9d\x8c\x38\xb6\xdf\x12\x5d\xf4\x94\x78\x17\x60\x6a\xaf\xab\xb7\xa5\x80\x26\xb4\xc4\x32\x42\x4d\x43\xba\x4c\x0c\x49\xa0\x88\xbb\x86\xf3\x03\x7b\x0b\x9b\x12\x53\x0e\x43\x15\xe3\x01\xc3\x0b\x23\x01\x43\x09\xf3\x13\xb6\x11\xb9\x10\x2b\x8c\x88\xa8\x32\xba\x71\x95\xab\x68\x98\xf3\x04\x6f\x9b\x6f\x49\x7d\x52\x5a\xa0\x80\xfd\x95\xbe\x9b\x5c\x21\x9f\x15\x5d\x3f\x21\x35\xfa\x30\xb2\x3b\xc2\xfc\xcf\xd7\x1f\x18\x70\xf2\xb0\xfa\x30\xad\xd0\x05\x30\x2e\xd0\xc9\x30\x39\x30\x7b\x30\x48\xb0\x0b\xe8\x15\xa4\xcd\xac\x83\xa2\xb7\x1a\xcb\x96\x3e\xde\x39\x33\x21\x5d\x3c\x15\xd6\xe9\xf8\xa1\x92\x2e\x82\x46\x1d\x8a\x91\x02\xf2\xf4\x12\x78\xdd\xf0\x5e\x9f\x8d\x20\x5a\x3e\x45\x81\xc9\xbc\x6f\x7b\x57\x09\x4c\x01\xce\x40\x08\xe0\x0b\xf4\xbf\xc3\x7a\x27\xfe\x4e\x10\x06\x05\x43\x85\xb2\x8e\x9b\x5e\xc6\x4a\x9f\xd6\x31\x76\x51\xa5\x9f\xae\x36\x25\x87\x20\x7a\xcd\x0b\xcd\x62\x5f\x9d\x5c\xf4\x82\x65\x97\x44\x0b\x39\x04\x2a\xeb\x6d\xf6\x14\x16\x40\x08\x10\x03\xd2\x80\x04\x80\x06\x70\x00\x74\x6f\x1e\x2f\x12\x9f\xe3\x51\x62\x88\x4b\x59\x78\x44\xda\xd4\x48\x2d\x6d\x37\x78\xc6\x0a\x5b\x25\x8b\x5f\x92\x3d\x82\xb0\x1d\x46\xf5\xf4\x64\x5e\x79\x44\xa8\x43\xb0\xc6\x61\xeb\xdf\xad\x00\xa8\x00\x3f\x00\x0d\x30\x02\xd8\x6f\xb3\x28\x58\x00\x1e\x80\x0b\xc0\x00\x78\x20\xc2\x10\x13\x88\x52\x99\xe6\x84\xf6\xd4\x3e\x5b\xd4\x1f\x44\xcc\x5b\xf6\x05\xd4\xa6\x64\xd7\x46\x8e\x78\x50\x9b\xd1\xa9\xf8\x08\xc7\x32\x79\x11\x82\x90\xbc\x21\xa5\xdf\x7a\x37\x69\x00\x26\x80\x12\x00\x07\xa8\x00\xe9\xb7\x3e\x65\x4c\xe0\xc7\x47\xad\x9f\xf4\xf8\x46\x0c\x0f\xc2\xb9\xaa\x1d\x16\x38\x97\x3b\x9b\xb6\xe3\xf2\x2d\xa1\x45\x11\x89\xb4\x7e\xf7\xb6\x56\x3a\x50\xd2\xb6\x5c\x2f\x94\x27\x98\x4f\x30\x55\x80\x2f\x80\x05\x60\x01\x78\x6f\x3a\x46\x00\x05\x40\x00\x44\x00\x58\x40\xe4\x03\x0b\xdc\x02\x8e\x31\xed\x0e\xbf\x89\x12\xb5\x49\xf8\x53\xe9\xe1\xb7\xb9\xaa\xee\xec\xaa\x95\xf4\xa7\x30\x2e\x57\x2a\x13\x3f\xa5\x51\xa1\x70\x26\x4c\x42\x69\x44\x1d\x88\xcf\x00\x1c\x40\x06\x80\x03\xc6\x00\x12\x00\x03\xa0\xbf\xf5\xe4\x20\x03\x78\x00\x25\xcc\x0c\xd6\x28\x4d\x30\xff\x77\x25\x76\xd3\x08\x10\xe8\x62\x7d\xf5\x79\x04\xa2\x89\x2a\x3f\x34\x0e\xc5\xe7\xd1\x26\x53\x1b\x57\x2a\x85\xb3\x90\xd2\x02\x53\x12\x86\x06\x40\x02\x98\x00\x06\x40\x19\x90\x7e\x57\xf0\xc1\xe3\xa3\x14\x38\x02\xf8\x12\xe4\xc4\xe7\x70\x44\x71\xa2\x7b\x56\x3a\x71\x27\x2d\x64\x5b\x2e\x10\xe8\x97\xd4\x6e\xe2\x74\x7a\x67\x79\x85\x6a\x5a\x5b\xa8\x8e\x0b\xbe\xb1\xad\x32\x87\x10\x29\x93\x36\x91\x01\xe2\x09\xb8\x3a\x58\x05\xb8\x1c\x14\xfe\x17\xae\x6f\xf9\xb0\x24\xdf\x69\x7e\x8c\xc2\x37\x23\x14\x20\x5b\xe0\x06\xd2\x9e\xf1\x73\x28\x12\x1b\xfb\xbb\x91\x80\x40\xbf\xf5\x4f\x7f\xaf\x7c\x1f\x22\x6e\xd0\xcb\x8b\x88\xc3\xf2\xd1\xb3\x2e\xd5\x51\x96\x41\xe1\x21\xa3\x91\xc3\x76\x80\x29\x85\x5d\xf9\x11\x89\xf0\x0e\xc9\x13\x95\x09\x43\x0a\xcb\x0e\xf7\x0b\xae\x21\x21\x2c\xf1\x1c\x15\x3e\x67\xb3\x94\x93\xf6\x8c\xad\xaf\xff\xdb\xbe\xfd\x6d\xce\xce\xd1\x54\x5f\x47\x7e\x79\x5a\xda\x75\x18\x9d\xeb\xb4\xe9\xb4\xaa\xa4\x18\x39\x9b\x2a\x69\x08\x5a\x29\x46\x01\xb6\x06\x2e\x37\x7e\x3a\x31\x1b\xe9\x2a\x85\x19\xb5\x14\xed\x24\x03\x0e\xd3\x35\x3b\x89\xe8\xa3\x1a\x84\xd9\xba\x87\x78\xd4\x5b\x15\xc7\xab\xca\x29\xce\x72\xdb\x90\x7c\x63\x70\xa1\x48\xc2\x7b\xff\x1c\xfb\x66\x83\x74\x05\x6f\x81\x64\x7a\x56\xe2\x50\x32\x5c\x0a\x7a\xea\x14\x5a\x16\x46\x61\x66\x3d\x36\x48\x8e\x17\x5e\x4f\x7e\x22\xc1\x75\x91\x3e\xa5\x02\x23\x44\x27\xb5\x60\xfe\x7f\xad\x40\xee\x08\x77\x6e\x66\xa0\xba\x34\xab\x32\x32\xbb\x22\x4f\xbd\xfc\xad\x2c\xb4\xdd\xa4\x45\xb8\x69\x19\x51\x98\xf6\x58\x16\x38\x78\xb8\x59\x78\x3b\x04\x76\x84\xad\xc5\xc6\xa4\xf4\x64\xb9\xe4\xcf\x94\x3f\xeb\xd3\xd8\xd9\xf9\x09\xc5\x35\xe7\xff\xb1\x83\xf1\x5b\xe5\x4c\x63\xd5\x71\x24\xb7\xe5\x73\xc9\x55\x0a\x6e\x88\xa7\xab\xbe\x99\x82\x86\x97\x78\x34\xbf\x86\x40\xa9\xd0\x8d\xe8\x94\x44\xa5\x0c\xad\xdc\x9c\x12\x81\x72\x82\x46\x8b\x4e\x84\xde\xb2\x11\xab\x75\x82\xd7\x7d\x94\x4d\x56\x48\xf5\xbf\xab\x38\x7e\x51\xee\x9d\xcd\xdd\xf7\x65\xd6\xb5\xe6\x35\x27\xbe\x0b\x94\x76\x9c\x32\xae\x56\xd6\x96\xc5\x92\x7b\x52\xd8\x54\xb6\x56\x1d\xd2\xb4\xd3\x29\xd3\x3f\x33\x0e\x32\x37\xb1\x8e\xb7\x13\x70\x2e\xf6\xd0\x0a\x3b\x4c\xd3\x2e\x23\x6c\xfb\x93\xb3\xea\x25\xff\x26\xf4\x24\x57\xa7\x78\x15\x5f\xf6\x4c\x6c\x80\x9f\xaa\x03\x99\xc1\x81\xd6\x9e\x0e\x81\x5e\x9a\x81\x80\x71\x98\x39\x85\x55\xad\x6d\xa6\x43\xbd\x2b\xa4\x87\xa7\x6f\xa8\x1f\x7b\xe8\x78\x72\x6a\x51\x7a\xe3\xed\xe0\x9f\xb8\xf7\x0c\x73\xdc\xb0\x22\x3a\x42\xd3\xfa\x5a\x6e\x9a\xe1\x11\x05\xe5\x03\x6b\x6f\x65\x11\x65\x59\x62\x43\x62\x37\xe7\xc8\xe8\x82\xee\xde\xe9\x9d\xe0\xff\x25\x48\x37\x74\x27\x16\x27\x5e\x24\xb9\xa2\x20\xa4\x1e\xb1\xef\xdb\x6c\xfb\x5f\xd8\x89\xbb\x0f\xb1\x90\x3f\x18\xd8\xbc\x50\xea\x9e\xfe\x14\x29\xee\xc7\xee\xce\xef\xa1\xe5\x71\xe1\xf3\xc5\x4f\x39\x70\x32\xd4\x2e\xa2\x36\x66\x27\xc1\x38\x25\x38\x73\x23\x67\xa6\x68\xba\x36\xb8\x7b\x76\xca\x63\xb3\xeb\xaf\xfc\xbd\xf6\xd9\x25\x99\xa5\x1b\x7c\xdf\xb8\x55\x62\x92\xde\x18\xa5\x10\x22\x18\x4a\x18\xae\x1b\x85\x15\x73\x9c\xf0\x9a\x34\x91\x6e\x94\x45\x98\xeb\x54\xac\x5d\x0e\x5f\x35\xdd\x50\xd0\xd5\x31\x31\xb4\x8e\x7a\xfa\xeb\xaf\x11\x7e\x5b\x5d\x04\x6d\x7d\x9f\x19\xed\xcf\x6b\xec\x2d\xae\xca\xfa\x92\xc2\x96\xf2\x2b\x6d\x3e\x93\x33\xab\x3b\x4f\xbb\x08\xba\x74\xb6\x22\xbf\xf6\x63\x63\x6a\xcb\x45\x77\x75\x7f\xca\x04\xd8\xea\xf4\xf1\xc1\x63\xeb\xdf\x57\x01\x2f\x79\xe7\x19\x9b\x13\x33\x6d\xfd\xd9\x8d\xbf\x2b\xe6\x8b\xe0\x0b\x5b\x4a\xc2\xca\x85\x2b\xbe\x55\x4b\xd7\x85\xb5\x78\xb6\x76\x77\x6b\x0d\x68\x8d\x1a\x4d\xbe\xcc\x97\xad\x43\x1d\xd3\xfe\xba\xff\x9b\xbc\xe6\x89\xed\x6e\xe2\x2a\xf1\x7c\xe0\x78\xe9\x70\xe8\xf0\xf6\x40\x72\x3f\x68\xef\x64\x5f\x63\x97\x65\x2f\x6b\x5b\x7c\xdb\x6d\x4b\x67\x63\x64\x6b\x6d\x13\x79\x9f\xe8\x92\xfd\x99\xfb\xef\xf7\x7e\xce\xba\xfb\x78\x66\x76\xe8\xb8\xb5\xb2\x31\xb7\x5c\xbb\xb4\xb7\x2c\x34\xd7\x32\x97\x31\xcb\x32\xcb\x38\xc7\x3f\x33\x36\x3d\x36\x6d\x32\x95\x38\x11\x32\x23\x3a\x91\x3c\x19\x31\xbb\xb9\x11\x74\x4c\x75\x67\xf1\x67\xfd\x4d\xf8\xe9\xfe\x6e\xc7\x7a\xd8\x22\xd3\x34\xf7\x78\xda\x88\xc9\x90\x45\x7f\x4d\x9f\x45\xf7\x40\xb7\x44\xf7\x7a\x37\x44\x4f\x6d\xcf\xcf\x9e\xa1\x8e\x6f\xed\x05\xed\x28\xed\xb9\x1d\x72\xbd\xb0\xe3\x7e\x4b\x45\x7b\x94\x57\xa4\xaf\x7f\x78\xc3\x5c\xea\xef\x33\xac\xbd\x9f\x99\x1a\x93\xef\x2f\xee\x46\x69\x19\x6b\xac\xac\xef\xae\xa9\xaa\x16\xae\x0c\xac\x34\xab\x4e\xa9\x81\xab\x34\xae\x1a\xae\xba\xac\x38\x29\xcb\x29\x0f\x29\x13\x2e\xbf\xad\xa1\x6e\xdb\x1a\x12\x98\xdd\xdc\xc2\x3d\xe7\x79\x1e\x03\x81\xae\xeb\x77\x64\xe6\x8f\x47\x65\x7b\x18\x5b\xc6\xeb\xd7\xab\x34\x4a\xbf\x15\x36\xe4\x75\xe6\xc0\x67\x25\x67\xb9\x64\xde\x66\x4e\x66\x9a\x66\x1a\x67\x5c\xa4\xff\x4a\xdb\x4b\x13\x4c\xd9\x49\x53\x4d\x13\xc8\xe6\x2c\x93\x6d\x1c\xea\x5d\x98\x4a\xd9\xf8\x78\xaa\x7c\x07\xb3\xab\x3e\x33\x31\xc4\xd2\xf6\xb1\x26\xae\xa4\x20\xbf\x2a\x93\x2b\xd5\x20\xc1\x3c\xf6\x36\xaa\x3c\xfa\x53\xc4\x58\x38\x57\x78\x67\xf8\x79\xb8\x74\xe8\x63\x98\x4c\xa8\x6b\x68\x55\xd0\x53\x28\x45\xc8\x74\x54\x6b\x6a\x4d\x61\x7c\xdd\xb7\xae\xee\x09\xa1\xb5\xca\xc3\x8d\x45\xe8\x61\xd6\x56\xe7\xaa\x1f\x79\xc5\xa9\x9c\xf1\xd4\x51\xfa\x21\x7e\xfe\x7b\x3e\x87\x5e\xab\x5e\xe2\x1e\xd7\x6e\x0e\xae\x3f\x5c\x63\x5d\x1e\x5c\x9c\x5d\x3d\x5c\x4c\x5c\x6a\x9c\x2a\x9d\xce\x9d\x87\xbd\xf0\x42\x33\x13\x4b\xf3\xe0\xaa\x59\x3b\xbf\x8f\xdf\x6e\xca\x8d\xb7\x77\xb9\x54\x0b\xe4\x4e\x27\x93\x44\x32\xf8\xc7\x7b\x62\xb9\x22\x3b\xb0\xda\xbd\xb7\x36\xb1\x14\x36\xbf\x32\x13\x31\xe9\x34\xb5\x31\xbe\x33\xd6\x36\x11\x32\x0e\x35\x6a\x32\x92\x35\x1c\xd0\x7f\xb4\x22\x71\x8d\x08\x34\x8b\xf3\xce\x3e\xad\x72\xee\x4c\x59\x12\x1e\xca\x6c\x0a\x28\x26\x49\x69\x8c\xe0\xf4\x9e\x72\x16\xb7\x92\x33\x19\xd7\xbf\xd4\x51\xd1\x12\xd2\x20\x50\xb3\x52\xdd\x55\xa1\x57\x7e\x52\xd2\x57\x82\x57\xea\x50\x54\x55\x52\x54\x08\x52\x18\x57\x90\xd4\xbc\x32\xc5\x74\xb4\xf7\xcb\x88\x05\x72\xf8\x6a\x74\x67\x17\xfa\x08\x6a\x62\x72\x3d\xe2\x04\x02\xa8\x9c\x94\xcc\xc0\x75\x79\x55\x7c\x14\xbc\x64\x51\xa5\x18\xc4\xf7\x45\xc1\x44\xa6\x45\xbf\x0b\x27\x0a\xcb\x0b\x6e\x0a\x0d\x08\x41\x0b\x8c\x0a\x66\x08\x69\x08\xe0\x4a\xaa\xab\xf4\x1b\x7a\xd8\x97\xfb\x89\xc7\x99\xe4\x22\xce\x2c\x74\xb9\x55\x66\x65\xe8\x44\x6a\x7a\x74\x58\x5b\xea\xc1\x2b\x34\x89\x27\x0a\xe6\xf2\x1a\x70\x8e\x71\xf8\xb3\xa6\x32\x8f\xb3\xb2\xb3\x28\x31\x7d\x60\x4c\x66\x02\x18\xe6\x19\xf7\x98\x50\x19\x3a\x18\xa6\x38\x26\x44\x16\x94\x58\x0c\xd4\xec\x53\xfc\x25\x13\x3c\x67\x48\xbb\xf8\xcb\x9f\xd2\xab\xc3\xf4\x5c\x33\x4c\x41\xea\x6a\x12\xb7\xbc\x04\x4c\x85\xb4\x30\x54\xfe\x14\xda\x64\xca\xc4\x09\xc4\x2e\xc4\x56\x44\xd0\x04\xf7\x84\x6c\x04\x1a\x04\x4d\x04\x5b\x84\xdf\xf0\x67\x28\x84\x59\xb6\x85\x1c\x14\xaa\x0c\x01\xc7\xd6\x60\xd7\x99\xdc\xae\x87\xca\x95\x0c\x82\xb0\x25\x57\x7f\x93\x18\x95\x6c\x11\x07\x36\x08\x4a\x1a\x3c\x5b\xac\x00\x0c\x18\x34\x63\x94\x22\x64\x0a\x24\x23\xc4\x18\x84\x67\x44\x5a\x04\x66\x84\x70\x84\x4b\x84\x19\x24\x3c\x74\x25\x12\x06\x66\x49\x61\x24\x65\x36\x33\x01\xb7\xd3\x05\xfc\xde\xeb\x9a\xe3\x2c\x8d\x28\x09\x0f\x0f\xf3\x63\xb5\x70\xd1\x60\x96\x76\xd2\x20\x34\x61\xb8\x68\xe8\xa4\xaf\x71\x9f\xc7\x20\x7b\x21\x9a\x20\x60\x20\xa8\xc1\x5f\xc1\x57\x20\xe4\x20\x6c\x20\x1a\x20\x12\xbe\x9a\xa2\x9c\x92\xa6\xb0\x09\x8b\xdf\x6a\x8a\x59\x07\xac\xd2\x0d\xfb\x37\x41\x15\x5c\xc6\xeb\xfa\xa1\xd8\xe8\x6b\x47\x4a\x61\x70\x46\x51\xd2\x63\x54\x41\xdb\x00\x66\x00\x1a\x40\x02\x70\x03\x62\x6f\xb3\x49\xb1\x01\x7c\x00\x12\x90\x02\x98\x01\xd8\x0f\x22\x70\xd9\xd8\xf2\xd4\x8d\x7c\x30\x0a\x69\xc6\x4a\xdb\x92\x93\xc7\x9d\x01\x15\x9e\x69\x53\xa1\x31\x2e\x94\xc6\xb6\x4a\x92\x82\x00\xfd\x0a\x7e\x0a\xbc\xfa\xa7\xea\x7f\xbc\xb5\xbf\xb9\xdb\xe2\x01\x90\x6f\x51\x90\xde\x56\x34\x84\x80\x3b\xf4\x05\xa6\x34\x65\x01\x17\xbf\x2c\x93\x9e\xd5\x71\xe0\x12\xdf\x60\x65\x83\x57\x5e\x78\x2c\x8b\x37\xa6\xe5\xb9\xa6\xb4\x04\x15\x7b\x3e\xf9\x4f\x74\x84\x6f\xb8\x80\xd4\x5b\x47\x11\x0e\x80\x08\xa0\x03\x14\x00\x31\xc0\xf1\xe6\x97\x83\x08\xfc\xf8\x2a\x81\xfe\x8e\x1c\x9e\xe3\x4c\xca\x5e\x17\xe6\xe6\x72\xc7\x64\x4a\xb8\x23\xb8\x2c\x3d\x65\x3d\x68\xcf\xf1\xc1\x00\x41\x7e\x8d\x5f\x80\x2e\x01\x8f\xe6\xa7\xf3\xc7\x24\x00\x0e\x40\x7c\xeb\x50\x46\x04\xb8\x00\x06\xe0\xf3\x5b\x3d\x04\x35\x80\x0d\x85\x84\x42\x42\x0a\xc3\x6e\x24\x49\xa1\xd5\xf7\x1b\xfb\x64\x67\xe9\xdb\x00\x79\xad\x6a\x8e\x73\xf4\x77\x4f\x6e\x0b\x73\x75\x64\x31\x2d\x36\x67\x32\x62\x34\xc9\xaf\x4c\x80\x18\x80\xff\xe6\xe9\x22\xfa\x56\x1b\x4b\x07\x14\xbd\x07\x3e\xb0\x81\x59\x7e\x69\x42\xaf\xa6\xcc\xe4\x09\x95\xbb\x35\xa2\x04\x81\x6e\x96\x36\xb3\x26\x60\x5a\xb7\x4b\xa4\x92\x95\x03\x8e\x1d\xe0\xf5\x1d\xe5\xb1\xf8\xc6\xe8\x62\xf0\xca\x7e\xe2\x7c\x38\x02\x94\xde\x7f\xfd\xf8\x09\xdc\x0b\x12\xe6\x73\xd3\x57\x4d\xe8\x2f\x30\x77\x70\xea\xdf\x29\x91\x74\x89\x22\x58\x00\xd1\x47\x0d\x63\xab\x56\x10\xe8\x99\xee\xd0\x7d\xbe\xac\xcf\xa0\x86\x2d\x5b\x39\xb2\xd3\x83\xda\x02\x5c\x3d\x48\x5c\x97\x5d\x92\xbc\x01\x1d\xea\x2b\xe4\x17\x0e\xe8\x7f\xfc\x13\xb3\xe1\xb7\x11\xf7\x51\xda\xd1\x93\x30\x3c\x31\x43\xb0\x53\xf1\xfb\xe8\x5a\xf9\xf1\x14\x7c\x8d\xb4\x5d\xde\xce\x9b\x2f\x95\x37\xca\xc7\xa2\x5b\x88\x8a\x29\x93\x20\x02\x8d\x1c\x46\x0c\x12\x14\xe4\x05\x05\x18\xdb\x08\x71\x10\xfb\x91\xe2\x50\x9d\xd0\x7f\x61\x55\xe1\x32\x12\x88\x10\xd1\x91\x1c\x93\x6b\x50\x64\xd2\xa0\xd2\x56\x73\x1b\x48\x13\x68\x77\xd9\x52\xf8\xbd\x79\x70\x3c\xaa\x1f\x70\xcf\x99\xf5\xd4\x57\xc7\x65\x45\x46\x7d\xf3\xf2\xb0\x12\xd0\x22\x94\xba\xe2\x4e\xa4\xaa\xc4\x2b\x27\xc0\x20\x7a\x26\x8d\x24\xdf\xa1\xea\xa4\xd5\x60\xd0\x63\x6e\x66\x95\xe7\x24\xe4\x31\xe4\xdb\x96\xc0\x52\x37\x36\x2f\xf0\xf0\x8b\x9c\xff\x67\xa6\x3c\xff\xbd\x6e\x3d\x1a\xd2\xaa\x5d\x82\x9e\x3c\x1d\x92\xef\x92\x6d\x92\xa7\x1a\x2e\xc6\xc6\x9a\x46\xa3\x48\x7b\xc8\xf8\x89\x89\x85\x95\x88\x83\x9f\x87\x95\xef\x48\x70\x4c\x54\x54\x7c\x5a\x46\x52\x1e\x5f\x15\xcb\x78\xdb\x39\x2e\x04\x3c\xf5\xd3\x3f\x23\x3c\xa2\x1d\xa4\x2d\x40\xf5\x29\xd4\xa1\xe7\xd9\xc4\x29\xf9\x0d\xda\x9b\x1b\xe0\x28\x6e\x09\x3c\x73\x5a\x71\x5b\xf0\xe2\xf3\x9f\x0b\x0d\x89\xf6\x48\x8a\xc8\xe8\xc8\x67\x2b\xf5\xaa\x83\x6b\x6d\xe8\x3a\x19\xdd\x39\x24\xf8\xaf\xc5\x4f\x17\xa8\xfc\x2b\xdf\x5f\x69\x6f\x61\x4e\x62\x77\x48\x56\xc4\x65\x32\x44\x5e\x7b\x25\x5b\xb7\xeb\x62\xcb\xfa\x88\x83\x49\x02\x52\x05\xb2\x86\x0a\x4a\x2a\x4a\x1a\x5f\xb4\x74\x74\x8a\x0c\x8a\x4c\x1e\xcc\xb7\x6c\x78\xec\x8f\x7c\x49\x62\x8c\xb2\x1f\x6a\x30\xfe\x4d\x9c\xe4\x63\xd3\xa5\x5f\x43\xba\xcd\x39\xc5\x5b\x29\x65\x61\x9e\x1e\x9a\x96\x4a\xda\x3b\x2a\xdd\x6a\x05\x1a\xae\xda\x32\x7a\x3c\x86\xfa\xc6\x73\x16\xe5\xd6\x4f\x76\xe4\xce\xd5\x1e\x8a\x5e\x60\xbe\x18\x91\xdb\x19\x4f\x15\x1c\x1d\x84\xff\xa1\xce\x1d\xcc\xae\xe5\x9c\x40\x1f\x52\xbd\x48\x41\x45\xd2\x62\xf0\x83\x6b\xba\x25\xab\x71\xbf\xc9\xb4\x19\xb3\xc5\xb5\x8d\xb8\xbd\x95\xb3\x90\xfb\x3b\x2f\x6d\xdf\xd9\x40\x8f\x50\xde\x28\x8b\xd8\xb4\xb4\xcc\x52\xca\x16\xc5\xe1\x3f\x3b\x9a\x7d\xbd\x18\xdc\x18\x9b\x7a\xd7\x75\x59\x13\x9e\xdb\x9e\x30\x1a\x38\xea\xc6\xeb\x98\xe3\x84\xe3\x92\xe2\x66\xe1\xb9\xec\x1b\x1b\x10\x19\xa2\x18\x81\x1c\x43\x12\x5f\x9c\x3a\x92\x2e\x95\x9d\x53\x1c\xd6\xd8\x32\x10\x37\xff\x97\x33\x94\x27\xed\x93\xd0\x35\xfc\x71\xd6\xce\x98\x2a\xa4\xdc\xf2\x78\xce\x90\x63\x3f\x5f\x7f\xeb\xc0\x89\x90\xea\xf0\x80\x28\xd7\xd8\x95\xc4\xdd\x34\x9a\xcc\xce\x5c\xef\x42\xc9\x72\x8e\x8a\x83\x86\xea\xbe\xce\x59\xba\x1d\xf8\xbf\xf2\xf7\xfe\xe9\xa0\x6b\x69\x7e\x94\xa0\xbd\xb7\xea\x25\x57\x32\x79\x28\x96\x31\x8e\x3b\xa1\x26\x19\x35\x95\x21\x63\x20\xdb\x32\xbf\xb0\xa4\xac\x2c\xb8\xaa\xa4\xe1\x7d\x8b\x58\x07\x43\x5f\xd1\x74\xd1\xe6\xaf\x8b\xc8\xbf\x33\xfc\xd6\x65\x3f\x75\x91\x68\xd4\xb1\x43\xa0\x1a\x2a\xff\x22\x87\x3c\x57\x37\xdf\xa4\xf0\xa8\x84\xb2\x5c\xa9\x8a\xa0\xd6\xaa\xd1\xbc\xa5\xa1\x93\xa0\xef\x74\x58\x61\x7c\x6e\x21\x61\x53\xff\xfc\xdb\x0b\xcd\xdf\x23\x80\x40\x37\xc1\x7b\x0b\x8b\x9b\xa3\x85\x9d\x04\xf5\x65\x55\xd4\xd5\xb4\xb5\xb8\xf5\xda\xcd\xa6\xad\xc3\x1d\x03\xdd\xcf\x03\x4c\x23\xae\x13\xcb\x33\x6d\x8b\xba\x1b\xdb\xbb\x83\x67\xb2\xcf\x2a\xff\xad\x7f\x56\x79\x88\xba\x6d\xbe\x96\xb9\x80\x3f\x97\x3d\xe3\x39\xbb\xb8\x48\xbe\x10\xbc\x40\xbd\x40\x3d\xe7\x3e\xf5\x3f\x3d\x3f\x89\x3a\xfa\x71\xdc\x7f\x8a\x70\xdd\xfe\x5f\xd6\xba\xff\xd0\x4e\xdc\xa2\x5e\x04\x1c\x5e\xee\x1b\xed\xf0\x6c\x6a\x6d\x52\xae\xf2\xaf\x9d\x2c\x5f\xae\x51\xac\x95\xae\x04\xac\x62\x2e\xd3\x2d\xaf\x2d\x83\x2f\xff\x5e\x1c\x5b\x29\x5b\xbe\xdd\xb6\x3c\xd5\xff\x95\xfd\x67\xf5\x63\xed\xd5\xcb\x71\xe5\xce\xe0\x3a\xfe\x92\xc2\xac\xc9\x34\xca\x44\xc7\xe8\xc8\x88\xcd\x08\xf4\xd0\xe5\xf0\xea\xb0\xc5\xb0\xde\x88\xf2\xf0\xa7\xa1\x4f\x43\x83\x03\x37\x83\xc1\x03\x37\xc3\x44\x93\xc5\x2b\xa6\xfb\xb5\xd7\x16\xbf\x4f\xfe\xf8\x04\x9c\x4e\x4a\xb6\xa1\x96\xb4\x66\xe6\x47\xdb\x06\xa3\xba\xdb\x3a\xd3\xda\x5a\xdb\xea\x9b\x83\x9a\x23\x9a\xe8\x1a\x49\x9a\x12\x9a\xe4\x1b\x5d\x9b\x84\x1a\x5e\xea\x1b\xeb\x25\x1b\x94\x1b\xfa\x1a\x2c\x3b\xfa\x47\x70\xe6\x25\xb6\x83\x2e\x58\x5e\xc0\x40\xa0\x9b\xb0\x03\xee\x95\xd0\xa9\xba\x21\x81\x5e\xe4\x56\xd6\x46\xc4\x1a\x98\x72\xcb\x72\xa6\xe2\xb4\xe2\xf8\xc2\xfb\xfc\xb4\x7c\xbb\x82\x9f\xf9\x14\x05\xb0\x05\x91\xb9\xab\x39\xe5\x79\x3b\xb9\x92\x05\xe2\x85\xec\x15\xf6\xcd\x56\xfd\xa2\xd3\xa1\x1b\x6c\xa7\x55\x77\xa1\x87\xbb\xcb\xf2\x13\x48\xbd\x64\xad\x24\xd5\xbe\x65\x1c\x85\x55\xd9\xe7\x19\x42\xa9\xaa\x29\x42\x49\x3f\x12\x0e\x12\x38\xe2\x18\xe2\xb3\xe3\x08\xe3\x46\xe3\x90\x62\x8b\x62\xb2\x63\x59\xa2\xfc\x62\xf1\xe2\x7e\xa6\x3f\x14\x8b\xd6\x93\x76\x3b\x4d\xf8\xae\xa9\x9d\xd6\x6d\xe0\x4d\x44\x76\xa7\xd5\x27\x94\x33\xe5\x4a\xa6\x52\x26\x48\x44\xdb\x45\xe4\x84\x6e\x04\x23\x07\x8e\xfa\xb9\xf9\x99\xfa\xbd\xf3\x2d\xf3\x39\xf3\x29\xf4\x99\xf2\x6e\xf1\x3e\xf7\x8e\xf1\x7a\xf2\x89\xf5\xc5\x0a\x6f\x48\x86\xcf\x7b\xa9\x2e\xe9\x74\x18\x97\xdc\x73\x9f\xab\x1c\x78\xdf\x64\x58\xe6\x96\xd9\x17\x3f\x18\xde\x16\x28\xed\xbd\xea\xee\xe8\x5a\xe6\xf8\xe4\x60\x6e\x07\x69\xeb\x61\x43\x6d\xf3\xde\x16\xd5\xba\xdd\xba\xd3\x06\xde\x4a\xdd\x3a\xdb\x72\xc5\xea\xca\xd6\xc9\xdd\x22\xa8\x23\xfe\x7b\x8e\x69\x55\x7c\x27\xf2\xc6\xe0\xf8\x72\x07\x6d\xa5\x60\x76\x6d\xfc\x41\x70\xa9\xe7\x0f\x27\x0d\x1b\x7a\x0b\x28\x53\xc0\x50\x56\xdf\x45\xd7\x43\x97\x5e\x57\x41\xc7\x4a\xbb\x48\xd3\x4c\xcb\x44\x3b\x4e\xfb\x93\x76\x8c\xb6\xbd\xd6\x7b\x1d\x5f\xb3\x65\xa7\x40\x7f\xae\x98\x9b\xec\x90\x2a\xfd\xe5\xc3\xe1\xde\xa6\x89\x62\x88\x14\xa2\xd0\x38\xcf\xef\x76\x3c\xc6\x6c\x3a\x5a\x1a\xec\x2a\x08\x0a\x25\xf2\xb2\xb2\xf0\xd2\xec\xd2\x34\x52\xed\xd2\x4a\x92\x57\x52\x78\x92\x73\x92\xb6\x52\x34\x12\x33\xd2\x44\xd2\x0b\x6a\x5a\x46\xe2\xf6\x64\x3e\xb9\xd1\xe6\xd9\xfb\x0b\x3b\x03\x1c\xf5\x97\xf9\x8f\xf1\x23\x01\x12\xce\xca\x26\x37\x9a\x1f\x15\x78\x25\x20\x84\x23\x05\x43\x05\x20\x79\xec\xb8\xa3\xb8\xa6\xb9\xbc\xb9\x88\xb8\xf4\x38\x69\xb9\x28\x39\x5d\x39\xe1\x38\x52\xb9\x14\xb9\xed\x45\x6f\x14\xad\xf4\xb5\x6d\x13\x7d\x6d\x63\x96\x16\xfc\xfb\xe2\xea\xcc\x73\xd1\x63\xbe\xfa\x1c\xd8\xa4\xea\x2a\x29\xea\x09\xa7\x70\xe5\xb0\x80\x31\x4a\xd1\x7b\xd2\xfc\xa2\x86\xa2\x82\xa7\xac\xa1\x74\xa7\x98\x26\x4f\xa0\x38\xa0\x8c\xa3\xc4\xa6\x88\xa0\xf0\xa6\x6a\x62\x85\x15\xb4\x53\xe0\xd0\x0b\xb7\xeb\xf1\x2b\x5a\xa4\x1e\x50\xae\xf3\xc9\xfd\x10\x9b\xe8\xf3\xcd\xda\x5a\x0b\x5d\x9a\x9e\x97\x8f\x01\x86\x4c\x82\x20\x11\xef\x06\xe7\x1e\xbb\x1b\x2b\x1c\x33\x1c\xe3\x1e\x93\x18\x63\x00\x63\x1a\xe3\x0c\x23\x1a\x63\x02\x23\x0c\x73\x9c\x44\x88\x91\x45\x10\x45\xbe\xd9\x70\xdc\x89\x7c\x65\x7e\x18\xb7\x51\xab\x00\x29\xee\xca\xb7\xd2\xc6\x51\x07\x5a\x6a\x96\xdb\x8c\x3a\x1f\x17\x1f\x49\x1b\x3e\xfe\xfb\x3d\x5c\x1f\xec\x31\xcc\x4f\xe8\x68\x68\x66\x68\x66\x68\x99\x6f\xb3\xdf\xee\xa0\x2d\xa1\x9d\x61\x28\x90\x79\x08\xf3\x19\xb3\x85\x82\x54\xd0\xcd\xfd\x37\x16\xc7\x71\xdb\xe2\x4a\x45\x93\x1d\x82\xfc\x9c\xd0\x0c\xb0\xe4\x2e\xf9\xb2\x68\x8d\x70\xf6\x7e\xd8\x83\xab\x83\xa5\xbe\x3f\x7b\xa7\xfa\x36\x63\x1e\x05\xc0\x7f\x9b\x63\x8d\x0a\x10\x00\x9e\xc0\x0e\xd4\x2e\x0a\x26\xe9\x1e\x47\x90\x64\xb0\x0e\xd7\xbe\xc3\x9c\x66\xcf\x4e\x75\x42\x96\x40\x24\x8b\xfb\xa1\xf9\x2f\xb5\xef\xa2\x86\x2c\xdb\xc4\xd7\x28\x8c\x9f\x6d\x00\x06\x80\x1d\x80\x05\x48\x00\x26\x80\x02\xc0\x02\x04\xdf\x3a\x6b\x48\x01\x04\x00\x16\x5c\x01\x41\x98\x60\x93\x31\x4e\xb0\x5d\xf9\xf4\x3c\x62\x2d\x6e\x04\xd4\x3c\x59\xf4\x9a\x18\xe4\x3f\x69\x07\xab\x5b\x28\x33\xc2\xbd\x48\x1d\x85\x9d\x05\xd7\xf7\x41\xfd\xcd\x9b\x1f\x11\x60\x7c\x73\x03\xc1\x05\xe8\x00\x98\xb7\x6a\x8c\x2f\x60\x0d\x3f\x3a\xf1\x3f\xd3\xdb\x0b\xd8\x29\x0e\xfc\xa2\xde\xbb\x9f\x63\xed\x29\xa8\x0c\xcc\x90\x08\xaf\x70\x33\x31\x19\x54\xde\x11\xb6\x63\x56\x25\x7a\x45\xe6\x82\xaa\x06\x88\x00\x24\x00\xee\xad\x3b\x18\x1a\xf8\x0e\xf0\xbe\xb9\xe6\xc9\x02\xaa\xef\x5a\xbe\xeb\xe3\x05\x31\xd2\x8b\x40\xa8\xb5\x83\x40\x17\xd2\xab\x5c\xc3\xdc\x4d\x42\xf9\x2f\x71\x49\x7e\x60\x36\x73\x3a\x1c\xd2\x45\xdc\x78\x54\x17\xd8\xea\x70\x52\xef\x5a\x01\x3d\x40\x02\x20\x7e\x67\xfa\xc1\xe1\x63\x21\x38\x33\xa4\x01\xe4\xc3\xe7\xa7\xaf\x90\xdf\xc4\xd0\x8a\x28\xf0\xb9\x48\x64\xba\xf5\x59\x40\xa0\x7b\xf9\xdd\x9d\x99\xcf\x9d\x79\xe5\xa1\x69\xad\xa1\x3d\x2e\x97\x26\x36\xca\xce\xc2\x1a\xcc\xc6\xc4\xf7\xc8\x2b\x90\xbb\x9f\x64\x21\x95\xbf\x20\x7f\x6b\x87\xb5\xf8\x2e\xfb\x13\x0a\xa1\x08\x71\x0d\xd9\x19\x8d\x00\xdd\x91\x58\x96\x39\x4f\x64\x4e\x6d\xda\x62\x16\x04\xfa\xed\x7d\x9a\xb9\x9c\x38\xe8\xdb\xc0\x9e\xd7\x1c\x07\xed\x53\x66\x33\xa5\x5d\x25\xc3\xc3\x53\x46\x73\x8f\xe3\xfd\x9d\xf2\xfb\x19\xbc\x16\x52\x2d\xea\x07\xf4\x2d\xac\x7a\x5c\x16\xfc\x10\x02\x17\xe2\x3c\x52\x1e\x0a\x08\x06\x1d\xfe\x43\x05\x3b\xc3\x41\xe7\xb7\xa9\x45\xb7\x38\xdb\x4e\x53\xd8\x1d\xf2\xe5\xa4\x69\x2a\x21\xdb\x2e\x03\xa6\xb0\xaa\x4a\xa2\x05\x6c\x5f\xc8\x82\x30\x71\xb0\xe8\x70\x66\xf1\xdd\x88\xe0\x49\xe9\x29\xd4\xa8\x4e\x68\xb9\xe8\x3a\x19\x1b\x59\x69\x39\xf2\x79\x3b\x64\xc2\x74\x3c\x6d\xf1\xfd\xe2\xfe\x11\xe1\x15\xfa\x78\x75\x09\x7d\xc0\xac\x81\x2e\x9f\x39\x2e\xd4\x1f\xd5\x6e\x4a\xdf\x48\x7e\x4d\xa0\x93\x61\x91\x4c\x83\xe2\x27\x15\x1b\x2d\x2a\xfd\x2d\x53\x1a\x1b\x3f\xa7\x01\x77\x34\x9f\x93\x20\x99\x88\xb7\xb8\xab\x74\xb4\xa6\x9c\xc5\x9a\x07\x28\x0a\xe1\x0f\x46\xbc\xdf\x16\x9a\xdc\xed\x48\xaa\xb0\xc9\xf0\x8a\x40\xf7\xcc\xb2\x2a\xd7\xea\x95\x46\xe1\x56\x60\x8e\x63\xad\xe1\x40\xe4\x0c\xe0\x39\x14\x58\x12\x49\x12\xe7\x91\x46\x91\x0d\x51\x44\x57\x56\x57\x73\xd4\x6e\x34\xa3\x74\x65\x0d\xc5\x4b\xfd\xa3\x6e\xf0\xf9\xf9\x84\x65\x19\x6f\x58\xa7\xa9\xaf\x28\x24\x99\x3b\xb8\xd0\x45\xc0\x74\x5c\x3d\x45\xfc\x5c\x08\x55\x78\x4b\x0c\x53\xbc\x5f\xaa\x49\xae\x4a\x09\x53\x25\x4b\x7d\x4c\x1b\x55\x1f\xce\xe4\x93\x99\xac\xf5\xb4\x33\x74\xe0\x5c\xa2\x64\xa1\xde\xbf\xd9\x1f\xb9\xbb\x3e\xab\xdd\xeb\x55\xab\x96\x2b\x1b\x77\xe2\x3f\xef\x28\x6b\x68\xaa\x42\x20\xcf\xa4\x90\xa3\x94\xaf\x3a\xa2\xe1\xa0\x23\xa9\xd7\x6e\xac\x6f\x16\x69\x59\x69\x33\xee\x8c\xe8\x06\xe1\xf9\x21\xe0\x2e\x2e\x31\xb7\xb3\xd6\xfe\x5f\x11\x7e\x1b\x9c\x3b\xac\xbb\x8e\xcf\xb6\x77\x54\xf4\x64\x69\x46\xb7\xf9\x14\xd9\x79\x19\x15\xe9\xe4\xe9\x05\x18\xcc\x18\xd3\x9a\x79\x5b\x26\xd9\xd2\x3b\x02\x2e\x1f\x3d\x98\x7c\x70\xfd\xe8\x82\xa5\xc3\x52\x62\x6e\xb3\x19\xaa\x74\x3b\x3b\xff\x43\x9d\x87\xa8\x23\x81\xa5\xb4\x21\xb6\xe6\xba\x92\xb1\xf4\xe3\x48\x36\x2f\x28\xfb\x65\x6b\x70\x9b\x06\xbb\x02\x47\x7a\x17\x17\xf7\x79\xaf\x6e\x7f\xec\xa0\xd6\x30\x20\x32\x20\xee\x7d\x32\x5d\x5a\x6d\x8e\x50\x05\x78\xdb\xf4\xd8\x5f\xbc\xe1\x6f\x58\x77\x0d\xe7\x4d\x07\xec\x9b\xec\x8a\x4b\x53\x77\x22\xac\xfd\x3e\x7b\xaa\x7a\x8d\xfb\xa2\xfa\x7f\x0e\xfa\x15\xa6\x17\x69\x19\x0b\x9b\x18\x96\x8a\x97\x11\x98\x9b\x53\x94\x56\xfa\x54\x5d\xdf\x32\x36\xac\xbc\x24\xf3\x17\x74\x06\x5d\x2a\x6d\x11\xcc\x88\xf4\xed\x35\x68\x17\x45\xa6\x1e\x45\x4f\x85\xab\x45\x7d\x88\x92\x8f\x61\x4e\x44\x4b\x49\x49\x1d\xcc\xd2\xcf\x47\x2d\x9a\xae\xd0\xac\x89\xaf\xef\x6f\xae\xeb\x9a\x18\xbc\x9d\xbf\xd9\xab\xff\x2b\x7d\x5f\x8c\xce\x62\x36\x64\xa6\xc9\x7a\x5e\x1b\x1a\x8a\x27\xb3\x02\x52\xd2\xd2\xec\x32\x71\xb3\xc0\x72\x17\x0b\x44\x4b\x59\x2a\x7b\x6b\x90\xeb\xee\x5a\x3a\x3b\x04\xfa\x65\x87\x04\xc6\xe7\xe6\xbf\xee\x92\x5f\xb3\xfe\x9d\xe0\x8f\x8b\x27\xfe\x6b\x07\xd3\x3a\x3d\x48\x8d\x1c\x95\x16\xc5\x24\x25\x1d\xe5\x6b\x95\x5a\x55\x9d\xf5\xc4\x4d\x88\xad\x59\xdd\x73\xbd\xcd\x43\xc8\xe3\x82\x33\x58\x0b\xd6\xab\xca\x3b\x53\x97\x4f\x20\xc2\xff\x5e\x05\x3c\x9c\x9d\x12\xae\xcb\x4e\xdb\xf6\x5d\xb6\x0f\x37\xbd\x36\xab\xb6\xec\xb4\x8b\x77\xe9\xf5\xc2\x0e\xca\x8d\x38\x4d\xf8\x4d\x3f\x2e\x8c\xae\x5c\x6d\x15\x1d\x5a\x9d\x7c\xb9\xa6\xf9\xfd\xf7\x6a\xd2\x7f\x7e\xae\x95\x2f\x71\x8f\xe9\x0f\xc9\xf7\x6b\xf7\x7b\xf7\x14\xf7\xcc\x77\x42\x77\xd9\x77\xef\xef\x7f\xdc\x67\xdc\x7e\xb8\xe9\xbd\xa1\xb9\x11\xbf\xbd\xb8\xdb\xf9\x5f\xf7\x06\x81\x9e\xd1\xee\xd6\x2f\x79\x4e\x5f\x8e\x02\x0e\xb2\xf6\x37\xf7\x1e\xf6\x3e\xee\x3c\xed\x8a\xef\x70\xec\x50\xec\xd0\xec\x80\x6f\x7b\x6c\x2b\xed\x38\x6e\xe5\xef\xa8\x6c\x27\xee\x31\x9c\x4f\x3e\x06\xfc\xed\xd9\x75\xae\x88\x8e\x62\xf6\x64\x37\x56\x57\x03\x96\xac\xe6\x8d\x67\x1f\xe6\x90\x66\xf0\x26\x45\x27\x2f\xa6\xa6\xa6\x22\x27\xed\xa6\xbc\xa6\x20\x26\xc9\x27\x72\xa6\x66\xa7\xd0\xa7\x10\x67\x24\xd7\x86\x0f\xab\x6f\xff\x3d\x17\xed\x95\xfe\xfa\xfb\x21\xd4\x56\xee\x4a\xf5\xcc\xcd\x78\xf8\x88\xfd\xa0\x56\x2f\x72\x2f\x55\x37\x61\x17\x47\xa7\x66\xc7\x52\x87\x62\x07\x72\x7b\x52\x47\x67\x87\x4f\x7b\x46\xbb\x62\x3b\x56\x7b\x52\xfb\x6a\xb7\xf8\x98\xe0\xa2\xc4\x2e\xe2\x25\xe4\x4b\x03\x08\xf4\x84\x71\x96\xbc\x4d\xbb\x8c\x38\x49\x36\x6c\xd1\x7b\xde\x7e\xd6\xec\x57\xbf\x52\x0f\xd4\xb0\x56\x1a\x57\xe8\x97\xf3\x95\xe3\x95\x67\x95\x7b\x94\x7d\x2a\xf3\x2b\x6f\x2d\x83\x2e\x8b\x28\xa3\x2c\xc6\x2f\x8d\xaa\xea\x6b\xbd\x18\x44\x9a\x69\xdd\x24\x3b\xbd\x7c\x71\x3d\xa3\xd8\xb0\x9d\x4d\x1c\x26\xe9\xc6\x6d\xca\xab\x45\x29\x77\x2e\x16\xce\x27\xcd\xc3\xce\x32\xcd\xd4\x4e\x3f\x4e\xd7\x4e\xdd\x4e\x19\x4a\xe7\x4a\xcd\x4b\x9d\x4f\x2b\x4d\x95\x4a\x69\x4b\xf5\x48\x1a\x4b\x01\xcb\xaa\x2d\x35\x69\xc8\xec\x71\x9a\x94\x5d\x6b\xb8\xb6\xda\x3d\x9f\x3f\x1e\x11\x6f\xef\xaa\x91\x2d\x8e\xcf\x45\x49\xb7\x4a\x7c\x8d\x97\x8e\x25\x89\x0c\x0a\x47\x0b\xa3\x0e\xb5\x08\x3b\x0e\x05\x0b\x15\x0a\x5e\x0a\x11\x08\xc3\x08\xb1\x0b\xb5\x0b\xb5\x08\xd6\x0e\x45\x8c\x62\x4b\xd9\x2c\x90\xa8\xf1\xea\xac\x1d\x8f\x3c\x9e\x58\xd1\x1b\xf5\xe9\x94\xaa\xcd\x28\x4c\x4f\x87\x88\x1d\x8a\xf8\x10\xdc\xe4\x6f\xe1\x43\xe8\x51\xe4\xe6\xe4\x16\xee\x32\xe1\x02\xe3\x66\xe1\xb2\xea\x64\xe3\x1c\xef\x0c\xe7\xd2\xe3\xd2\xe6\x5a\xed\x1c\xe4\xd4\xe3\x59\x1e\x22\x93\x40\x9f\xd3\x5b\x65\xd9\xf1\x63\x47\x61\x8e\xb3\x6f\xb2\x61\xbf\x28\x23\xb5\x24\x3a\x37\x20\xd6\x13\xd1\xc5\xd5\xde\xdd\xda\xdd\x62\xcf\xac\xd5\xf4\xcc\xe4\x9d\x09\xbd\x51\xbd\x31\x8c\x21\x98\xe1\xbe\xe1\xb4\xd1\xb2\xf1\x84\x31\xa5\xd1\xa3\xa1\x82\x25\xbc\xf3\xb9\xff\x7d\x4c\x54\x16\x4b\x85\xf8\xe6\x87\x89\xa9\x4e\xb5\x8a\xe1\xec\x8b\x38\xaf\x80\x28\x97\xaf\x36\x5c\x26\xd0\x7a\x44\xda\x8d\x9a\x01\x6a\xac\x2a\xa7\xca\x44\x4a\xa3\x4a\x86\x4a\x75\x4a\x5f\x15\xa1\x14\xee\x14\x32\x94\xe4\x95\x48\x14\x25\x15\x86\x34\xac\x8c\xad\xed\xa5\x7c\xe4\xa3\x04\xb3\x5c\xd7\x72\x47\xeb\x5a\x42\x4b\x9e\x52\x57\xc3\x4b\x3d\x22\xad\x96\x0c\xd6\xd4\xc1\xe4\xba\xa4\xa2\x25\x70\xc5\x62\x44\x82\x05\x5f\x04\x97\x05\x35\x05\xea\x04\x55\x04\xb0\x04\xde\x09\xcc\x09\x58\x09\x31\x0a\x3c\xf3\x5b\x89\x37\x28\x31\xea\x15\xdb\x50\x79\x6b\x45\x0b\xae\x91\x8d\x3a\x34\xe3\x17\xbb\x24\x4d\x06\x13\x3a\x89\x9a\xda\xa8\x97\x49\x2b\x0a\xfa\x71\x8b\xb3\xbb\xb2\xc2\x32\xa7\x33\x15\x31\x76\x32\x58\x31\x40\x30\xa4\x32\xc2\x33\xac\x31\x14\x31\xac\x33\x2a\x32\x1c\xd3\x7b\xb2\xb9\x08\x0a\xc9\xa9\xe8\x88\xd9\xa0\xfb\x5a\xae\x69\x8e\x7a\x35\x67\x16\x7b\x27\xe9\x05\x4a\x38\x06\x18\xce\x2a\xb1\x0b\xdf\xb0\x75\xd2\x62\x91\xef\x93\x56\x93\x10\x10\xde\x12\x06\x13\xb0\xe2\xe7\xe0\x0f\xe1\xcb\xe0\xf7\xe2\x17\xe1\xa3\x10\xe0\x12\x78\xe1\xb7\x92\xc2\x31\x58\xf0\x15\xc9\xfe\xd2\xad\xb0\x43\xda\x44\x1e\x4f\x68\xb7\x29\xb5\x48\x91\x0e\x86\x74\x02\x37\xa4\x55\x54\x13\xd8\x60\x8c\x25\xce\xc1\x74\x43\x6d\x41\x81\x44\xf2\x44\x24\x83\xbf\x44\xe0\xfe\xb9\xf7\x73\xe9\x67\x1c\x3c\x12\x3c\x2b\x7c\x30\x7c\x30\x02\x01\xf2\x16\xfe\x30\x1d\x03\xaf\x80\x3c\xbb\xa1\xcf\xae\xdd\xac\x51\xd7\x48\xa5\x6e\x06\x6c\x78\x8d\x6b\xa6\x49\x84\x8a\x99\x30\x0a\x53\x1f\x91\x0b\xf2\xc6\xb7\xa6\xcf\x48\x90\x26\xe0\x97\xe0\x38\x9f\xa4\x3f\xa1\x7d\x9c\xf9\x38\xfa\x71\xef\xd3\x8f\x4f\xc1\xe0\x5e\xe0\x85\x90\x74\xf0\x87\x04\x83\x8c\xe3\xc2\x6e\x6a\x67\xc7\x16\x8b\x27\x03\x49\xf5\x15\x79\xc4\x31\x5d\xde\xfe\xd6\xcb\x5a\x36\x92\x5e\x9c\x32\x14\x33\x18\x0b\x30\x61\xef\xc4\x01\x22\x00\x17\x10\x04\xbe\x01\x28\xc0\x77\x00\x17\xf8\x02\x90\xbf\x4d\xf6\x34\x00\x98\xbf\xe5\xa0\x13\x91\xf7\x71\x45\x48\xd7\x5c\x13\x6d\x46\x4f\xf0\xb7\x8b\x94\xc1\xa6\x46\x86\xf0\x39\xe5\x1b\x4e\x2a\xb2\x08\x7e\x66\x70\x25\xe8\x44\x68\x80\x08\x7b\x73\xb7\xa1\x78\xf3\xb6\x83\x06\xc4\xde\x5c\x66\x61\x01\x34\x40\x08\xa0\xfb\x9c\x8f\xea\x45\x1a\xcf\x51\x2e\x35\xfd\xc4\x72\x84\xb2\x88\xde\xbf\x53\xa7\x96\xa3\x11\x75\xe5\x05\x58\xec\x68\xb8\x4a\x84\x70\xf0\x91\x4f\x62\xf4\x41\x27\xbc\xf9\xc1\x13\x03\x94\x80\x14\x80\x06\x60\xbe\x83\x7c\x9f\x0d\x46\xf7\x71\xe9\xd3\x03\xf8\x09\xac\x15\x0e\x29\x5d\xb0\xa0\x9a\xd2\x6f\x10\xe8\xfa\x6e\x33\x64\x3c\xba\x35\xb0\x78\x3b\x69\x3f\x08\x70\x70\x31\x58\x53\xa0\xe0\x3f\xa2\x7f\x24\xd0\x42\x90\x07\x87\x01\xf0\x3f\x28\x7d\xec\x87\x50\x87\xb2\xfa\x72\xf2\xad\x16\x96\x06\xae\xe3\x87\x37\xfc\x17\x84\x30\xf4\x18\xf2\x7a\x4e\x02\xa9\x22\x9d\x33\x10\xe8\xb1\xf7\x30\x7b\x3e\xa4\x67\xbe\x26\x39\x9b\x2e\x32\xd8\xf3\x9b\x05\x8f\xc6\x47\x09\x7d\x8e\x1b\x0a\x17\x4c\x6a\x68\xd9\x6f\xe0\x30\xf5\xdf\xb3\xe0\x09\x11\xa1\x51\xf0\xd0\x3e\xa1\x4f\x62\xad\x61\x8f\xe1\xc5\xe0\x3f\x92\x32\xb3\xe0\x8b\x2c\xa8\x0e\x9b\xcf\xfd\x23\xc3\x5c\x9a\xae\x7f\x1a\x55\x68\xd9\x2f\xc6\x4d\x1c\x0a\x22\x73\x0c\x34\x44\x54\xe8\x11\xac\x60\x9c\x25\x8a\x41\xc6\x42\x9e\x47\x13\xc1\xb4\xc4\x41\xc2\x87\x20\x3c\x21\xa1\x20\xf3\xa1\x54\xa6\xda\xa0\x73\x63\x08\x67\xf6\x12\x14\x56\xf8\x65\x58\xe4\xf4\x96\xeb\x7e\x4d\x1d\x50\xcc\x7d\xec\xa9\xac\x8e\xc8\x3c\x8f\xbc\xf2\x8c\xb3\x24\xd3\xaa\x93\x5a\xe7\x91\xa7\xf9\x48\x20\x40\xa4\x42\x82\x4f\x0e\x4e\x39\x4d\xcb\xca\x08\xc5\xdc\xc1\x6a\xc5\x91\xcd\x55\xc9\xeb\x27\x48\x2c\xec\x2a\xe7\xa4\x9b\x62\x5b\xec\x17\xfa\xcf\x3c\x77\xde\xba\x76\x3f\xb2\xd3\x82\x52\x54\x99\x2c\x1c\xfc\xd9\x59\xc7\x84\x5c\x95\x4c\xf4\x94\x2d\x84\x56\x92\xfe\x03\x13\x34\xcb\x02\xbb\x3f\xd7\x0b\x6f\xb5\x40\xb1\x30\xb6\xd8\xbe\x64\xa0\x34\x89\x82\x83\xb2\xa4\x76\x8b\x95\x8e\x17\x74\x94\xf5\x3f\x23\xdc\x3f\xef\x2b\xcf\x01\x3d\x5a\x35\x02\x39\x67\xb1\x92\xbe\xcb\x76\xa7\xfa\x95\x8a\x44\x42\x18\x5c\xa1\x3c\x29\xfc\x32\x42\x55\x22\x73\xe2\x21\xd2\x18\xf2\xed\x4a\xef\xd4\x1c\x34\x3d\x74\x2c\x0c\xa4\x4d\xec\x2d\x26\xdc\x05\xc3\xf2\xd3\x12\xff\x48\xb6\xc7\xe7\xea\x6b\xa0\xb1\xad\xd6\xbb\x72\xfe\xf4\x8c\x48\x3f\xcf\x0d\xeb\x30\x6d\x35\x79\x2e\x49\x77\xe9\x12\x59\x2b\x85\x06\xa5\x1d\x35\x52\xcd\x25\xdd\x5f\x06\xaa\x26\x44\x16\x1b\x56\x9f\xec\xab\x5d\x84\xdd\x3f\x86\xc8\x26\xa3\x17\x8d\xfc\x3b\xdb\xa7\x1f\x46\x2c\x06\x0d\x6a\x35\xd6\x17\x6e\x27\xe5\x85\xbc\xba\x5e\x58\x28\xea\x6c\xa8\xab\x6a\xae\xea\x7c\xd1\x35\x37\xd0\x37\x16\x36\x67\xb1\xc1\xb0\x93\x73\xb2\x70\xdd\xf0\x12\xf6\xed\x0d\x62\x0f\x9f\x4c\x84\xcf\x9f\xa9\x47\xfd\x0f\x31\xae\x17\x76\xbe\x4f\x5b\xf7\xf0\xd5\xdc\xe6\xb1\x26\x08\x07\x46\x39\x35\x5b\x9a\x99\xfa\x98\xa5\x9a\x2f\x58\xd5\xda\xea\x3a\x6a\xbb\x96\x79\x54\xf8\x24\x06\x98\x84\xe0\x46\xe0\xc4\xfa\x27\xdc\xa5\x9b\xe7\xa3\xd5\x64\x75\xe7\xfe\x89\xdb\x87\x67\x99\x6b\x22\xe3\x51\x1d\x9b\x55\xe9\x39\x83\x71\xc3\x01\x71\x6e\xed\xce\x10\x2e\x7c\x6e\x65\x1e\x0e\x3e\x4e\xfe\x4a\xc1\x41\x61\xe1\x51\xb4\x71\x09\xc9\x42\xe9\x58\x59\x53\x79\x41\x25\x71\xd5\xc1\x9d\x33\x13\x7f\xe9\x04\x7d\xf8\x7c\x78\xbd\xb4\x39\x32\xdd\x76\x59\x29\x9d\xad\x19\x97\x16\xaa\x1d\x68\x1d\x0c\x84\x20\x85\x39\x47\xc9\xc4\x0e\x25\x12\xa7\x66\x64\x44\xe5\x86\x15\x72\x97\x2e\x55\x1b\xd5\xcc\x34\x45\x74\xe4\x8c\x51\xae\xfc\x75\x9a\x16\xe8\x36\x64\x3f\x6b\xa1\x73\x48\xb5\x95\xaf\xc2\x2f\x47\x3d\xb9\x2c\xe1\x7d\x92\x72\x52\x67\xaa\x7e\x86\x7b\x4e\x40\x7e\x73\xc9\x66\x85\x5b\xd5\x76\xbd\x75\x73\x47\xe7\x46\xef\xe1\x90\xc8\xe8\xe6\x32\xf8\xa1\xea\xdf\xe9\x7b\x5d\xb6\x1b\x33\xdf\x33\xb4\xd4\x3a\x53\xf5\x50\xe8\x9c\x97\x52\xd0\x58\x68\x5b\x52\x56\xf6\x52\xd5\x59\x57\xd2\xc8\xdd\xb6\xdd\x31\xd0\x6f\x34\xf2\x79\x5c\x61\xe6\x62\xe1\x75\xbd\xe7\x80\xe1\x8e\xf8\xbf\xd8\xdf\x76\xd9\xbc\x43\xb5\x00\x3b\x24\xd5\x49\xd8\x48\x5e\x0d\x57\x3b\x53\xbf\xd6\x38\xd0\xca\xd1\xb1\xdc\x73\xda\xc7\x3f\x22\x36\xc6\x3f\xdd\xbc\xc8\xbe\x1a\xb6\x9d\xb4\x8b\x7d\x0c\x7d\xcb\xf8\x3f\xd7\x0f\x52\x17\x73\xbb\xe5\x0b\x96\xe3\x84\xfd\x44\x9d\xfe\x5d\x59\x7d\x46\x03\xe0\x43\xd7\xa3\xe5\x13\x37\x33\x1b\x4b\x8c\xab\x5a\x9b\xfe\x7b\x91\xc7\x58\x17\x9a\xb7\x6b\x8f\xd6\xff\x4b\xff\x9f\xeb\xf5\x12\x24\xf9\x82\xf8\x42\xf6\x6c\xfc\xbc\xf0\x34\xf6\x7c\xf6\x92\xf3\x22\xf2\xfc\xfc\xe2\xf0\x14\xf1\xfc\xf0\xfb\xf4\xff\xa5\x7a\x51\xb8\x6b\xbe\x69\xbd\xdc\xbc\x98\x38\x57\x3c\x35\x3a\xde\x3c\x61\x3d\xb4\x3a\x6e\x3e\xb2\x39\x96\x3f\x72\x3e\xee\x3e\x76\x3b\xae\x3c\x34\x3a\x12\x3b\xce\x39\x09\xbe\xcc\x79\x2e\xfa\x9b\x58\xec\x57\xda\x35\xcf\xe9\xf6\x81\xdd\x8e\xc4\xc6\xe4\x06\xe7\x8a\xf9\xd2\xf2\xb2\xe3\x62\xcc\xc2\xea\x82\xcd\x22\xd5\xa2\xc9\x22\xf5\xa2\xca\xd2\x87\x85\xe8\x45\xf4\x45\xc4\xc5\xbd\xa5\xe5\xcd\x6f\xc7\xeb\xf7\xb4\x7f\xfa\x26\x90\x5e\x9a\x1e\x54\x6e\xdb\xad\xdc\xcf\x37\xcf\xd0\x4f\x59\x8d\x6e\x0e\x67\x0c\xd9\x0f\x5c\x0c\xc2\xf7\xe3\xf5\x4a\xf6\xf3\xf6\xb6\xf7\x45\x0d\xb4\x0e\xe2\xf4\x13\xf6\x19\xf6\x1b\xf7\x8b\x0d\x51\x4c\xb0\x2d\xa7\xec\x65\x5d\x89\xbd\x5a\x83\x40\xbf\x71\xaf\x53\x0f\x1b\x36\xc1\x17\x78\xa7\x80\x91\xf8\xbe\x80\xee\xc2\xce\xc1\x96\xbe\x26\xe5\x46\x9b\x06\x84\x3a\xe7\x06\x8e\x3a\xb1\x3a\x8d\xfa\xcf\x35\xdb\xf5\x29\xf5\x02\xf5\x39\xb5\xbf\x6a\xd9\x6b\x0d\x6a\x53\x3a\x8c\x87\xe1\xe6\x68\xb7\x60\xce\x26\x40\xa0\xdb\xf0\x23\xb2\xd5\xee\x29\x99\x41\xee\x6e\x98\x66\x9b\x3a\xab\xca\xec\xb2\x94\x12\xed\xc2\xe9\x82\xb2\xdc\x97\x5c\xd4\xdc\xce\xbc\x95\x9c\xf1\xdc\x8c\x1c\xf7\x3c\xea\x3c\xf8\xbc\xcf\xf9\x72\x79\xc4\xf9\xed\xf9\x3d\xe5\xdd\x4d\x1a\xbd\x07\x53\x50\xeb\xb1\x0f\x54\x47\xe5\x6b\x45\xd3\x16\xfd\x89\x2d\xe0\xd5\xa1\x25\x36\x05\x54\x59\x19\x69\xd6\xc9\xa4\x09\x3d\xf1\xef\x63\xe6\x63\x25\x62\x70\x63\x11\xa3\x0d\x62\xc6\x62\xbe\x44\x93\xc7\xb2\xc4\x66\xc7\x5b\xc4\x81\x62\x95\x63\xe1\xd2\x6e\x0a\x57\x6a\x3b\xbb\x38\xc6\xf5\x2f\x91\x77\xc8\x67\x57\xfb\x1f\x9b\x55\x2b\x63\x72\xd2\x52\x1f\xe3\x37\xa3\x4a\x42\x77\x83\x0a\x03\x7c\xfc\xf5\x7d\x5b\xbc\x03\xbc\x09\xbc\x3f\x78\x77\x79\x11\x7b\xbf\x78\x05\x7a\xf9\x7a\x0f\x7b\xaf\xfa\xba\x7a\xd7\xfb\x48\x84\x69\x25\xfa\xe7\xaa\x54\x56\xb7\x47\x1d\xef\xad\x52\x8e\x22\x77\x44\x57\x71\xe4\xae\x27\x6e\x45\xbc\xf7\xff\xed\x15\xea\x86\xeb\xac\xe6\xa0\x6b\x17\x6d\x13\x66\xed\x64\x51\x6c\x71\x6e\x29\x64\x79\x60\x15\x6c\xb1\x69\x39\x6c\xb9\x67\x8d\x6d\x7d\x6f\x15\x63\x9d\xe9\x3a\x13\x70\x19\xb3\x92\xb9\x58\x7e\x73\x40\x3e\xdf\xde\xbf\xdb\x50\x55\xbc\x92\x5c\x10\x3e\xe2\xb3\xe3\xb4\x6a\x15\x6f\xe2\x6d\xd4\x64\x40\xa2\x5b\xa3\x2d\xaa\x45\xa1\xb9\xae\x89\xaf\x61\xa6\xb1\xac\x01\xae\x1e\xa7\x49\xa2\x69\xa7\x39\xad\x05\x68\xe6\x6b\xff\x34\x59\xb3\x5f\xf1\x49\x8e\x7c\xca\x20\xdc\x39\x9a\x16\xec\x2e\xaf\xf1\xca\x36\x8e\x2d\xf1\x6f\x77\x16\x34\x5f\xd7\xd5\x50\xf3\x52\x30\x91\x0b\x92\xd9\x93\x1a\x96\x74\x91\x30\x92\x50\x13\xef\x97\x10\x15\x6f\x91\xc8\x10\x3f\x91\x6c\x91\x58\x97\x5c\x96\xfc\x2e\x85\xa6\x5c\xad\xcf\x6e\x43\xe4\xa9\x1e\x49\xbe\x15\x3e\x85\xd0\xb9\x54\x45\x93\xa9\x11\xa9\xeb\xc5\x6c\xa3\xa1\x17\xac\xf8\x5b\x42\x46\x30\x86\x2f\x9e\xbb\x87\x4b\x92\xeb\x0b\x67\x3e\xfb\x1c\xdb\x1c\x5b\x0c\xfb\x3b\x76\x7c\xf6\x2d\x76\x76\xf6\x5a\x8e\xef\xec\x54\x9c\x5c\x42\xd1\x72\xdf\xb5\x6b\x2d\x85\x3c\xbe\x6d\x9b\x4c\xcd\x77\x7e\xa9\xc4\x4e\xa7\x8b\x28\x74\x57\x30\x4f\xd3\xe8\x91\x72\xe5\xd3\x66\x89\xa6\xc3\xa2\x11\xa4\x8c\xa7\xfc\x4a\xe1\x42\x16\x44\xd6\x42\x46\x49\xe6\x48\x26\x45\xb6\x46\x46\x41\x4e\x4c\xae\x4b\x9e\x49\xd1\xc9\xa8\xc0\x0b\x25\x29\xa3\x09\x6e\xf5\x6e\x77\x72\x56\xa4\xdb\xa4\x8a\x2d\xb3\x2e\xfc\xd5\x9d\xd2\xfc\x44\xad\x45\xec\x96\xfd\x8e\x1a\x96\xe0\x1a\x87\x13\xf3\x18\x23\x10\xfd\x00\x6d\x14\xcd\x15\xed\x07\x6a\x2e\xaa\x07\x6a\x3c\x6a\x1f\x1a\x09\xda\x06\x3a\x01\x7a\x36\x3e\x16\xb5\x13\x97\xaa\xd4\xab\x8e\xf1\x61\xf8\xc2\x63\x7f\x79\x1d\x55\xce\x55\xf4\x9d\x97\xb8\x15\x8b\x26\xaa\x04\x07\x87\x02\x45\x16\x96\xf1\xcf\x1c\xd8\x2f\xd0\xba\xdf\xe2\xbe\x2a\x7e\xa9\xf9\xe2\xff\x25\xe2\x8b\xc4\x97\xe0\x2f\x1a\x5f\xe9\xbf\x3a\x7d\x53\xf8\xa6\xf0\x23\x16\x07\x89\x46\x85\x8f\x40\x7e\xee\x1c\x63\x8d\x75\x64\xbc\x59\xa1\xc8\x2f\x21\xc5\x7f\xda\xde\x51\x2f\x5a\xb6\x8a\x37\x9e\x96\x0c\x97\xe9\xe7\xbb\x4f\x64\x6f\xfe\x78\x54\x00\x26\x80\xf2\x56\xd5\x8a\x06\x60\xbf\x39\x9c\xe0\x01\xdc\x1f\x27\xe1\x55\x09\x58\x98\x08\xc5\x34\xef\x64\x77\xc5\xa7\x2f\xbb\x52\x2b\x6d\x32\xf5\x22\xdc\xdd\x51\xcc\x7e\xa8\xda\x8b\xca\xb2\xa4\x93\x0a\xa1\x36\x7e\x2d\x06\x90\x01\x58\x80\x1d\xa0\x01\xa8\x01\x68\x00\xee\xad\x0a\x83\x04\x10\x00\xe0\x01\x4f\xb0\x29\xf8\x10\xc2\x30\x16\x14\x71\xb0\x57\x81\x53\xff\x15\xf5\x61\xdd\xa6\xeb\x82\xf4\xf8\x7c\xbf\x6d\x5b\x14\x5d\x24\x99\x64\x9e\x70\x9a\x36\x5c\xf8\x1f\x75\x1f\x19\x01\x24\x80\x0a\xa0\x7e\x77\x01\x26\xf9\x29\x0d\x22\x0c\xca\xf8\x73\xe6\xd7\xb5\x6f\x0c\x30\x3f\xe1\xa2\xb1\xdf\xd1\xc8\xf2\xa1\x2b\xe0\x83\x40\x77\x0b\x3b\x03\xd3\xb6\x9d\xd7\x15\x8a\xe9\xfa\x61\x31\xae\x9a\xa6\xda\x2a\xe7\xc2\x5b\x2c\x1d\xa4\xd6\x68\xe0\x5f\xd4\x3e\x5d\x43\xf1\x7c\xa9\x86\x1e\x85\x13\xf9\x41\x08\x3f\x82\x18\x86\x7c\x89\xea\x85\x16\x8e\xb1\x83\x65\x40\x81\xc3\xa1\x2b\x19\xaf\xdd\x0c\x02\xbd\x32\x9d\xcc\x2c\xc5\x0c\xca\xd7\x33\xe6\x27\xc5\x26\xf9\xba\xdb\x8a\xe8\x9c\xca\x02\xbc\xac\x74\x00\x5e\xc4\x4f\xed\x9f\xe0\x08\x6a\xc8\x09\xa8\xb3\x18\x0c\x58\x20\xbc\x64\xfc\x7a\x22\x3b\xe2\x36\x32\x36\x0a\x76\xaa\x26\xd6\x3a\x51\x1a\xd5\x38\xb3\x37\x37\x93\x9b\xeb\xad\xc4\x29\x98\xf6\x93\x72\xaf\xb4\x9f\xa1\xe5\x6e\x04\xa6\x1b\xaa\x81\x62\xe8\x6c\x17\x14\xc6\x58\x36\xd8\x84\xb8\x87\x04\x3d\xc4\x07\xe4\xa8\x94\x4c\x34\x64\x74\x8c\x4c\x7c\xcc\xe9\xac\x2f\xec\x79\x5c\x0e\xc2\x8e\x4a\xd4\x86\x57\x4e\x49\xff\x88\xf0\xbc\x73\xcc\xbd\xb8\x38\x60\xd9\xc0\x9f\xbf\x1f\x27\xe2\x17\x66\xa7\xa9\x1f\xa1\xf0\x55\x40\x91\xe9\x3b\xb9\x16\xe5\x39\x75\x19\x9d\x07\x13\x33\x8b\x19\xfb\x2d\x57\x24\xcf\x95\x00\x83\xf0\x57\xd1\x18\x71\x26\xe9\x08\x85\x53\x7d\x2e\xbb\x25\xbf\x3f\x26\x58\x5e\xb7\x6f\x96\x4e\x7e\xee\xd0\x29\xcf\x4c\x37\x0f\xf7\xf0\xb0\xb2\x44\xd5\xcc\x94\x3a\xe7\x06\xb1\x82\xb3\x4b\x73\x06\x72\x3f\x08\x60\x0b\xed\x88\xea\x4b\xa6\xcb\xd8\xcb\x4b\x28\x55\xa9\xbc\x6a\xa2\x6b\xbf\xd3\xc7\xb5\x31\xf3\xf6\x8a\x96\xfa\x67\x84\x67\xd6\xe3\xb2\x45\xe3\xc1\xa4\xc6\xe6\x42\xea\x44\xf3\xa0\x8f\x2e\xef\x4c\x6e\xd4\xbe\x49\xc2\x0b\x0f\x8a\x9c\x8a\xe9\x4b\x72\xcb\xd0\xca\x2f\x28\x75\xab\x25\x6b\x51\xe8\x9e\x18\x22\x18\x93\x58\x62\x5a\x7f\xb1\x9f\xf7\xac\x89\x48\x4a\xdf\xfa\x57\xae\xbd\x11\xdc\xba\x9f\x2a\xed\x3a\xaa\x1e\xca\x51\x88\x75\xf7\x33\x73\xfc\x69\x38\xab\x3a\xae\x50\xac\x9c\xa9\xe2\xa2\x7e\xad\x45\xa5\xc7\x69\xc8\x66\x32\x65\xe1\x6e\xb3\x6b\x7f\xe7\xa4\xef\xde\xea\xb5\xed\x37\x11\xd6\x96\xca\x5f\xe2\xf5\x6f\x52\x98\x9d\x08\xae\xdc\x8f\xe6\xb7\x15\x94\x1b\xa4\x5f\x46\x1e\x79\x17\xd8\x12\x18\xdb\xea\xcf\x19\x68\x1a\xa7\x9a\x6c\x99\x1f\xd8\xf0\xda\x19\x3a\xd1\xb8\xb5\x7a\x2b\xfa\x81\x02\x35\x43\x4b\xa3\x16\x12\x24\x53\x0a\x8b\xd4\x1a\x61\xff\x93\xf1\x7f\xe1\x1c\xe0\x2e\x80\x0d\x08\x34\x7d\x2a\xea\x4e\xcd\x0a\x57\xf1\x4c\x73\x38\xb0\x4d\xb4\x5f\x70\x58\x70\xea\x75\x0b\xf0\xa4\xf4\xd9\x09\x44\x0b\xed\x8a\x14\x8a\xfd\x9c\x80\x9d\xf2\x92\xa9\x9d\x8f\x59\x7c\x58\x8f\xd1\x3b\xff\x67\xe8\x5c\x55\x6d\x43\xcd\x80\xf5\x11\xd7\xf5\x15\x52\x25\xe7\x85\xad\xfa\x5d\x78\xdb\x79\x33\xfb\x09\x07\x42\x06\x47\x84\x53\x45\xcd\xc7\xd3\x24\x93\xa4\x35\x66\x87\xe7\xaf\x96\xf8\x55\x21\xd6\x0b\x37\x0b\xf7\x5c\x4d\x15\xff\x85\x79\xd1\xa7\x23\x1b\x4a\x93\xed\xdd\x5b\xb5\x83\xf9\x76\xc9\x17\x31\x68\x91\x85\x51\x9c\xd1\x27\x71\xdd\x89\x6a\xa9\x62\x99\x9f\x72\xe9\x0a\xdd\x4a\x74\x2b\x0f\x6b\x69\x1a\x65\x3b\x9c\xba\xdd\x07\xe5\x26\x75\xd6\x37\xfe\x8a\xbe\x87\x8a\x13\xf6\x35\x88\x09\xcb\x6e\xa8\x9a\xdb\x22\xc9\xec\xf2\xf4\xf5\x8c\xd1\x2c\xff\x9c\xdd\xfc\xa7\xe2\x77\xe5\x9b\x55\xb5\xf5\xc2\xcd\xcd\x1d\xa8\x3d\xd2\x83\x11\xa3\xab\xe3\xde\x0b\xc9\x6b\x1c\x27\x4c\x7f\x67\xef\x2f\xa1\xa3\x2f\xab\xfe\xe3\xe5\x5d\x1b\x0d\xbd\x95\xf8\xe5\x7e\x15\x72\x95\x12\xd5\x01\x75\xaf\x4d\x6e\x6d\xfa\x5d\xac\x7d\xfa\x43\x31\xa3\x0f\xd3\x96\xf3\x06\x2b\x2a\x9b\xc2\x7b\xc7\x27\x3c\x0f\x1a\xff\xcd\xef\x3b\xc9\xa3\xaf\x2b\x33\x13\x9f\x07\x98\x3b\x71\x5a\x97\xdb\x6a\xda\xc1\xbb\xbe\xf4\x6c\x0f\x84\x8c\xa2\x8f\xb3\xcc\x44\x2d\x06\xac\x71\x6d\xbd\xdf\x57\x3b\xdc\xbf\x44\xba\x7e\x78\xf2\xfe\xdf\x6b\x80\x7b\xed\xe3\x90\xd5\xc7\x39\x8f\xb1\xab\xe1\xac\x91\xe2\x71\xce\x09\xcf\x19\xc8\xb9\xeb\xc5\x98\x55\xeb\x2d\x82\x5d\xf8\xa3\xf1\xb3\xc8\x1b\xde\x07\xed\xdf\xff\x55\xc7\xf1\x7f\x75\xfd\xc6\x7c\x7a\x7c\xfc\x79\x5f\x76\xf3\x72\x75\x75\x65\x71\x35\x78\xb1\x72\x31\x77\xe1\x79\xfd\xe9\x62\xf2\x3a\xff\xd6\xe4\xaa\xe2\x9a\xe2\x32\xfd\xf2\xe5\xca\xe8\xa6\xe8\xd5\xe7\xbf\xb4\xd0\x0f\x01\x57\xdd\xe7\x41\x27\x34\x87\x12\x7b\xad\xdb\xb9\x9b\x8f\x1b\x5d\x1b\xac\x9b\xbf\xd6\xbd\x37\xb6\x36\x87\x37\xc8\x37\x0d\xb6\xac\xb6\x75\x37\x1d\xd6\x2f\xb7\xc5\xb6\x56\xb6\x7b\xcf\xf0\x1f\x48\xfe\xa3\x7e\xbd\xb9\x7d\x3d\x7b\x3c\xb8\xda\x76\x5a\x03\x5b\x42\x5f\x50\x9e\x11\x9b\x8a\x9a\xc0\x18\xb5\x9f\x10\x1c\x37\x9e\xa4\x9d\x28\x1c\x4b\x1f\x6f\x1b\x4b\x9e\x92\x9b\xe2\x9f\x70\x9a\x62\x1e\x1f\x1c\xe9\x98\xc9\x59\xdd\x3b\x30\xb9\xae\xfa\xfd\xf6\x8d\x7a\xea\xbb\x90\xdf\xc7\x5b\x37\x58\x70\x9f\xa2\x1b\x4b\x1f\x9c\xe8\x5f\xef\xe1\xed\x8c\xed\x20\x6e\x83\x69\xb5\x6b\x8b\x69\x85\x6a\x95\x69\xeb\x6c\x23\x6a\xd3\xe9\x30\xeb\xb0\xea\x10\xed\xf2\xe8\x6c\xec\x9a\xe9\x5a\x1c\x05\x9b\x5f\xdd\x76\x3d\xdf\x03\x81\x9e\xa8\x2e\xc5\x77\x13\x16\xa5\x27\x75\xfb\x23\xba\xe2\xdb\x3d\x1a\xb6\xea\x08\xab\xd1\x2a\x52\x4b\xfb\xcb\x48\x4b\x84\x4a\x06\x4a\x1e\x4a\x0d\x4a\x7d\x4a\xde\x15\x6f\x94\x25\x97\xd1\x97\xfb\x54\x7c\x2e\x9f\xad\x48\xaa\x42\x6c\xd1\xec\xd7\x9f\x16\x5d\x9f\x04\x81\xae\x7f\xee\x7a\x2f\xec\x8f\x6a\x75\x33\x35\xfb\x55\xc7\x97\x3a\x15\xd2\xe5\x89\x65\x86\x67\x72\xa6\xe1\x24\x3f\x26\x9d\x24\xf1\x27\xc6\x27\xcd\xa4\x60\x25\xf7\x27\x21\x27\xcf\x25\x6f\xa6\x36\xa7\x0a\xa7\x7d\x4d\xcb\xcf\xf4\x2a\x9e\xac\x47\xe9\x86\x1b\x4f\xfd\x65\x72\x58\xb4\x04\x1a\x6d\xec\x86\xae\x7b\x28\xc5\xc8\xc5\x48\x8b\x4e\x70\x89\xf1\x8a\x6a\x0e\xdb\x0d\x91\x0c\xc1\x0f\x5c\x0f\xc4\x09\x02\x0b\x14\x09\x12\x0c\x20\x08\xfc\x14\x24\x19\x78\x15\x4c\x13\xec\x1b\x22\x10\x4c\x17\xd1\x97\x2c\x9a\xc7\x59\x45\xd7\xfe\xfe\x62\x6f\x3b\x61\xe6\xb0\xcf\xbf\xa1\xbb\x38\x2d\x2b\x20\x1e\x3e\xec\x35\x80\xcf\x47\xcc\x33\xc3\xed\xc2\x05\xde\xc9\xc0\x11\xdb\xc1\xc9\xc1\xc8\x41\xd5\x31\xc2\x71\xd2\xe1\xd4\x11\xd9\xb1\xcc\x19\xcc\xa9\xc1\x89\xcf\x21\xcb\xfd\x77\x10\x77\x2c\x47\x56\x5c\x39\xdb\xc9\xd1\xca\xfc\xa8\x56\xc7\x8f\x4a\xc8\xec\xe1\xb8\x83\xe0\x38\xcf\x14\x47\x05\x1b\x7a\x0b\x69\x33\x0b\xe3\x26\xa3\x16\x83\x63\x03\x24\xbd\x4b\xbd\x2d\xbd\x36\x03\x51\xfd\x7a\xa3\x4f\x86\xfd\x46\x08\xc6\x44\x86\x7a\x06\xc4\x66\xb3\x8e\x46\x3e\x03\x11\xfd\xe9\xa8\x47\x13\x4b\xc5\x43\x78\x8d\x79\x45\xca\xa9\x4f\xe1\x30\x9e\xc3\x76\xe2\xc6\xa6\x3a\xf1\xea\xb5\xaa\xcc\x4a\xf5\x8a\x8d\x0a\x6d\xf2\x67\x72\x63\xf2\x2e\xb2\x8d\xf2\x0f\xf2\xa7\x0a\x9a\x0a\xe0\x0a\x4b\x0a\x29\x8a\x64\x0a\x6a\xaa\xa9\x06\x52\xd6\xf3\x9e\x11\x61\x53\xfb\x37\x0b\x89\xfd\xbb\xf5\x09\x79\xad\xf1\x79\x81\x9f\x9d\x02\x4d\x8e\x35\x15\xe4\x72\xc4\x67\x45\x70\x85\xd6\x05\x4c\x04\x10\xf8\x8c\x78\x09\xf9\xb4\xf8\x3e\xf2\xe9\xf1\x3e\xf3\xc1\xf3\x09\xf3\xd1\xf2\x65\xf3\x83\xf8\x6d\x44\x94\xe5\x2a\xb4\xac\xcc\xd1\x5c\x9d\x0f\x3f\xcd\x57\xf4\x43\xd7\x62\xe6\xc1\xc5\x1a\xfa\x8a\xdb\xbd\xd3\xbb\x52\x54\x11\x45\xe0\xb6\x61\xf1\x60\xb2\x66\x64\xa0\xdb\xa1\x3b\xa0\x63\xa0\xf5\xa2\xa5\xa5\x39\xa0\xfe\x45\xab\x4a\xb3\x47\x3b\x4b\xf7\x85\x6e\x9e\xee\x99\xa9\x8e\x87\x59\x62\x5d\x0d\x64\x36\x71\x34\xb6\x64\x35\x40\x52\x5f\x94\xa7\x12\xc7\xe4\xbb\x65\x93\xad\x53\x2d\x73\xca\x77\xc3\x38\x49\x41\x45\x38\x49\xa0\x8c\x8f\x86\xc7\x8a\x0b\x87\xd3\x85\x73\x80\x43\x81\x93\x8d\xa3\x84\x3d\x83\x0b\x86\xfb\x15\x8f\x09\x8f\x93\xa0\x96\xaa\x9d\x13\x5f\xcc\x4e\x3d\xe8\xac\x60\x55\x7b\xf8\xb4\xa9\xa6\x30\x32\x51\x35\x00\xc9\xfe\x9d\x1e\xa1\x6c\x05\xef\x1d\x9d\x0f\x81\x1e\xaa\x1c\x02\xe4\xcf\x81\x1f\x9b\x3f\xc0\xbf\x23\xc1\x59\xc1\x69\xc3\xe1\xc3\x99\xc3\x45\x7e\xa7\xfb\x5e\xf7\xa3\xfd\x87\xd2\xcf\x75\x4c\x02\xf2\x03\xf6\x07\x69\xa8\xeb\xb8\x2d\xc2\xc9\xc9\xf6\xbe\x32\x20\x15\x23\x64\xd8\x59\xd0\x68\x42\x29\x5e\xf0\x94\x31\x8d\x08\x11\x99\xf6\xf3\xc5\x27\x52\x30\xff\x0f\x55\xef\x17\xdf\x47\xbc\xef\x7a\xef\xf1\xde\xf8\x7d\xfb\x7b\xd0\x87\x61\x30\x4b\xb0\x91\x8f\xac\x30\x1d\xb8\x5a\x8c\x69\xa2\xcf\x8f\xec\x07\xb3\xf3\xe2\x7d\xb4\xb5\xf5\xb9\xe8\xd1\x1e\xde\x48\x56\x39\x5a\x4c\x92\xb2\x9c\x64\x94\x43\x58\x45\x70\x25\x1f\xfa\x80\xcf\x00\x27\x40\x0a\x50\x03\x3f\x01\xd2\x77\xe7\x1f\x3c\xc0\x46\x3f\x99\x41\xc0\x41\x04\x42\xd9\xfe\x98\xc3\x87\x62\x0a\x11\x4b\x05\x81\x2e\xe2\xd7\x53\xc7\x45\x5a\x2f\x4a\xf6\x92\x53\x83\xc8\x9d\xb8\x0d\x5d\x15\x40\x02\x2b\x8c\xab\x44\xe4\xc8\x76\x50\x25\x80\xc2\x87\x9c\x4f\x24\x10\xab\x9f\x95\xbe\xd2\xc3\x40\xc0\x9a\x7c\xc7\xf8\xe9\x09\x7f\x88\x60\x8e\xc4\x81\x1d\x4b\xad\xcf\x63\x2f\x27\x00\x02\x3d\x8c\x1e\x3c\xcf\xdd\xf4\xb1\xd6\xb2\x65\x9f\x45\x85\x7a\x2e\x58\x12\x68\x2c\x4a\x9c\x73\x36\x53\x45\x61\xe3\xc0\x9e\x7e\x9d\x81\x95\xfd\x1e\x09\xbf\x8a\xb8\x8b\x82\x8e\xb6\x8b\xf9\x05\xfb\x06\xe7\x0e\xef\x94\x30\x8e\xe8\x0b\x65\x26\x47\xa3\x24\x8f\xe6\xeb\x3f\x7e\xdd\x17\x53\x6b\x2b\x23\xbd\x2d\xa1\x45\x5b\x49\x2d\x81\x0b\x0e\xd7\x86\x06\x8a\x32\x42\x2c\x4c\x9d\xc4\xec\x28\xb5\x28\x85\xe8\x56\x58\x78\x38\xd5\xf8\x0e\x44\x66\xa4\x5a\xe4\x51\x54\xde\xd4\xe6\x74\xbc\x8c\x17\x8c\xe7\xec\xbf\xc4\xb8\x54\xd7\xcc\xde\x66\x2f\xdc\x17\xed\x7f\x9d\x1d\xef\xee\xaa\xd6\xcf\xca\x88\x92\xf6\x7c\xb6\x6a\xd4\xa2\x95\x1a\xe2\xc9\xa4\xe9\x21\x74\x20\x56\x22\xa5\x26\x3f\xa2\x16\xa1\x25\x64\x50\x61\x41\x63\xcb\xe0\xb4\xe7\x5e\xe2\x4b\x17\x14\x13\x2a\x10\x7d\x50\x1e\x35\x7e\xe7\xfc\xcf\xfe\x4d\xf5\x33\x83\x55\xc5\x11\xd3\xe6\xa4\x62\xaf\x64\x93\x20\x13\x67\x34\xe3\x42\x15\x5b\xd1\x56\xd6\x73\xba\x64\x06\x66\xa6\x11\x56\x5e\x0e\x59\xee\x35\xbe\x64\x21\x64\x91\x4a\x09\x61\x29\x71\xb9\x35\x05\x53\x15\x48\x35\x0a\x43\x2b\xfb\x47\xff\xea\x3f\xf2\x3b\xd3\xae\xc8\xac\x47\x8f\x61\xcd\x87\x9c\x8e\x68\x5f\x5f\x72\xdb\x73\xfd\x51\xf9\x4d\x21\x56\x5e\x34\x3e\x30\x01\x73\x61\x2a\x71\x0b\x29\x02\x39\x32\x05\x3c\x55\x1c\x75\x39\xed\x16\xdd\x71\x03\x27\xe3\x08\x8b\x5d\xfb\xaf\xbe\xa2\x31\x9e\x7f\x24\x4a\xe9\xb3\xdc\x35\xf0\x51\xa8\x36\xb4\x52\xf7\x34\xc8\x70\x03\xf7\x34\x2b\x74\xad\x23\xf9\x64\x69\x7c\x69\x49\x79\x0a\xc5\x17\xe5\x3a\x0d\x7a\xad\x45\xdd\x3c\x43\x6d\x13\x5f\xcb\x15\xeb\x78\x47\xc0\x65\xdf\x63\xdb\x57\x2f\xca\x31\xf3\xdf\xef\xdd\xf7\x1f\xf7\xbf\xcd\xcb\xf4\xe9\xd4\x3b\x15\x28\x24\xae\x06\xd9\xba\xc6\x99\xd9\xeb\x78\x69\x68\x6a\x59\x69\x0f\xeb\x73\x1a\xda\x98\x34\x9b\x77\xd8\x60\x3a\x12\xb9\xa0\x7b\xb0\x79\xe9\xfb\x35\x04\x7b\x86\x5b\xc7\xc0\xa4\x97\x96\xfd\x7b\x96\x17\xe8\xf6\x62\x6f\x63\x68\xb2\xba\x4b\xa1\x1a\x36\x97\x23\xde\x2c\xc0\xce\x29\xd2\xea\xd0\x4c\xd3\x82\xda\xf2\xd6\x46\xc3\x9e\xd2\x89\xd4\x3d\xd6\x5b\xc0\x5f\x35\xe8\x24\x1c\x23\xfa\x7b\xac\x49\x52\x4f\x86\x78\x4e\x57\x49\x5d\x33\xdb\x7f\x32\xfe\x13\xd9\xb1\xc8\x8a\xed\x48\x61\x7b\x75\x85\x5f\x56\x7f\xcc\x07\xff\x33\x8f\x1d\x97\x52\x37\x2a\x8f\x1d\x1f\x3b\x5f\xeb\x40\xc7\x50\x98\x08\xaf\x58\xf1\x84\xc3\x94\xe9\x2c\xaa\x3c\x91\x62\x89\xd2\xc9\x9a\x8f\x4d\x05\x03\x24\x7f\x66\xce\xdd\xdc\x7e\xee\x02\xd9\xb0\x41\x73\x64\xd9\x6a\xc6\x43\x9c\x4a\xd8\x69\x70\x6d\xe8\x4c\x18\x61\x44\x63\x34\x72\xdc\x49\x32\x5c\x9a\x4f\xf6\x72\x7e\x6a\xb1\x64\x05\x55\x8d\x4b\x63\x5a\xdb\x52\xaf\xd4\xd0\xe4\x2c\xd1\x5f\xb9\x75\x4d\xb3\xd3\x3e\x47\x3e\xc8\xdc\x54\x5a\x6a\x94\x9d\x9e\x12\x93\x98\x9e\x48\x9d\x62\x90\x5a\x98\x51\x94\xfb\xb3\xf0\x67\x89\x67\x25\x58\x6d\x72\x03\xa8\x4d\xbe\xab\x7c\x60\x64\x74\x7e\x3a\x77\x51\x70\xeb\xaf\xf3\x3c\x41\xaf\x08\x17\xf0\x5b\x3d\x33\x5d\xfd\xdf\x9b\x60\x2a\x04\x0a\xc7\xf2\xbf\xe6\xdf\x16\x71\x17\x6f\x97\x8f\x56\xa5\xd5\x7b\x36\x83\xb7\x65\xf4\xb0\xf5\xf7\x8d\x08\x4d\x78\xcf\xca\x2e\xef\xac\x9d\xec\xa6\x9e\x4b\xfe\x9d\x9e\xcf\x3c\xe7\x98\x9b\x67\xb3\x92\x03\xac\xed\xc1\x8d\xc6\xb5\x36\xf5\x1f\x1b\x9c\x9a\x05\x5b\x8b\xbb\xec\x7b\x45\x06\x5c\x46\x7b\x26\xcb\xe7\x52\x16\x6d\x36\xa8\x76\x7f\x1e\xf2\x9d\xf9\xdd\xf4\x3c\xf3\xfe\x37\xbd\x9f\x9f\xcf\x77\xb6\xce\xe6\x51\xc7\x10\xfa\x8e\x7b\x9d\xfb\x62\xfb\xf7\x87\x4c\x46\x86\xc7\x9b\x67\xb8\xe7\x87\x57\x69\x37\x8e\x77\x02\x8f\x14\xcf\xf2\xaf\xbb\x1e\xcc\x5f\xbf\xfe\x6f\xfe\x83\x40\x2f\xc8\xe7\xe6\x3b\xec\xab\x99\x73\xa7\x33\x0b\x33\x2b\x73\x4c\x0b\x11\xcb\xc8\xeb\xdf\xb6\xdf\xef\xf5\x1f\xe3\x9e\xbb\x5d\xfb\x3e\xe0\xbe\xae\xfc\xbf\xb4\xff\x57\xd7\x6f\xd8\x57\xd9\x97\x9f\x8f\x7d\xbf\x7e\xfd\x32\x7c\xe4\xfc\x05\xff\x58\xf8\x60\xf4\xc4\xfa\xf8\xf5\xe9\xe5\x19\xf1\x79\xe7\x45\xe8\x37\xd2\x33\xce\x63\xea\xff\x52\xbe\x6e\x3e\xaa\xdf\x6f\x5d\xce\x9e\x53\x9e\x50\x1c\x5a\xef\xdb\xee\x9b\xef\x91\xef\x0b\xed\xeb\x1d\xe2\x1f\xd2\x1e\x84\x1d\x94\x1f\xd4\x1e\xed\x1f\x53\x9d\xe4\x1d\x6b\x9f\xe2\x1c\xd7\x5c\x0c\x3c\x21\xfc\xe5\x6f\xc7\xb8\xdd\x39\x87\x3a\x86\xd8\xfd\xbd\xb9\xba\xe6\xb9\xec\xbe\x24\xb2\x90\x30\x07\x35\xfb\x71\x16\x66\xee\x66\x0e\x6f\xfe\x74\xee\x7e\x6e\x64\xb6\x62\x9e\x7a\xf1\x69\x79\x78\x99\x73\x35\x6d\xe5\xd3\x06\xec\x91\xd9\xad\xe9\xbf\xf4\x77\xbd\xe7\x82\x7b\x12\x9b\x49\xcb\xfe\x73\xd0\x13\x01\xa3\x62\x43\x75\x03\x30\xfd\x12\x3d\xdd\x5d\x1b\xdd\x17\xdd\x62\xdd\x75\xbd\x6a\xdd\xd0\x3d\x48\x7d\x09\x7d\xe5\xfd\xf9\x03\x3b\x83\x99\x83\x7e\x83\x04\xe3\x36\x8b\x63\x3b\xcf\x17\x6f\x75\xc5\x77\x9d\xc7\x8a\x1b\x1d\x0b\x47\xe3\xee\x43\x48\xdd\x2f\x9d\xda\x2d\x58\x8d\x43\x0d\x60\xb5\x41\xd5\xf5\xd5\xe9\x95\x75\x95\xa9\x55\x09\x55\x57\xd5\xca\x95\x15\xd5\x6e\xd5\x15\xf5\x0e\x0d\x52\x0d\x14\xf5\xb5\xf5\xa8\x6d\x39\x83\xaa\x33\x71\x1b\xb4\x20\xd0\x2f\x86\x63\xaa\x8d\xa5\xa9\x97\xa1\xe9\x4e\xcd\xa6\x97\x6a\xf9\x8a\xea\x92\xb4\x82\x9c\x3c\xe5\xdc\x9f\x59\x54\x19\xa1\x19\xa1\x19\xbf\x32\x40\x99\xa4\x59\x15\x99\x15\x59\xca\xd9\x75\x39\x02\xb9\xc3\x79\xa0\x1c\xcc\x1c\xf8\x32\x9e\x86\xe6\xee\x91\xf1\xcd\xdf\x33\x97\xe2\x5b\x49\x73\x98\x83\x02\x6d\x14\x35\xaf\xc5\x2f\x39\x22\xe9\x89\x49\x8d\x09\x68\x31\x83\x31\x8d\x51\xf9\xe1\x73\xe1\x0f\x61\x2c\xe1\xc7\x11\x28\x51\xb1\x91\x13\xd1\xb8\xd1\xe5\x31\xa6\xb1\xd4\x71\x26\x51\x18\x31\x85\xa9\x3f\xf3\xcd\xab\x71\xda\xed\x7f\xe1\x1f\xab\xad\xa8\x8d\xfc\x68\xe3\xa8\xb1\xcc\x6f\x4a\xeb\x8e\x9d\x0c\xc7\x0a\x58\xf4\x17\xf5\x85\xf0\xc2\xf5\x62\xf1\x98\x75\x6b\x72\xd7\x75\xc7\x71\xe7\xf7\xc0\xf0\x88\xf4\xda\xf6\x86\xf2\x62\xf0\x79\xef\x33\xec\x73\xef\xf3\x1c\xbc\x1e\x87\x9e\x25\x51\x76\x74\x23\xb8\x03\xcc\xc0\xf4\xb9\xd6\x4d\x17\xae\xa5\xfe\x8e\x32\x0c\x28\x70\x4f\x74\x3c\xb2\x9b\xb4\x41\xb0\x24\xb4\xf8\x68\xfe\xcd\xac\xc4\xcc\xcb\x6c\xc1\xb4\xc6\x5c\xce\xfc\xd6\x22\xc5\xc2\xcb\xb2\xc7\xd2\xc4\xd2\xc0\x9a\xdf\x32\xc3\xa9\xcc\xd7\x3d\x72\x31\x4d\xe2\xf2\x7e\x53\x61\x02\xa5\x5d\xb6\x4a\x3f\x1b\x2f\x96\x3c\xa0\xce\xa5\xd3\x1a\xd5\x28\x51\x57\x57\x3b\x46\x53\x5f\xdd\x5d\xad\x46\xed\x83\xaa\xba\x4a\x80\x1a\x9c\x9a\x8a\x9a\x91\x2a\x8f\x1a\xb3\xc6\x37\xf5\x28\xb5\x2c\x75\x1b\x4d\x11\xc3\x54\xeb\x13\xb7\xce\x10\x96\xb3\x99\xd5\xec\x51\xcd\x16\x81\x52\xe7\x34\xda\x70\x0e\x8f\x19\x1b\x5a\xfd\x12\xb5\x5b\x39\x2d\xa9\x48\x29\x44\xb1\x79\xd1\x5d\x51\x36\x91\x49\x11\x23\x51\x7e\x11\x7d\xe1\x0d\x11\x66\x91\x0d\xd1\x16\x31\x01\x71\x5a\x31\x3a\xb1\x57\x79\x12\xcd\x6e\xb3\xf7\xce\x8f\xe7\xe4\x6b\x72\x23\x59\x2d\x3c\xc5\x0c\x49\xbf\x83\x55\x5d\x60\x4c\xd7\xd4\xf9\xa4\x4d\x04\x37\xb8\x3f\xb2\x37\xb1\x63\xb0\xc9\xb3\x2c\xb0\x48\x31\x23\xb1\xc4\xb1\xbc\x63\x5a\x63\x96\x60\x5e\x66\x09\x64\x59\x61\xd5\x60\x39\x67\x8d\xe7\x15\x90\x28\x50\x15\x33\x3a\xbf\x50\x59\x43\x1d\x9b\x6e\x91\x2b\xa1\x4b\xbe\x0e\x8a\x72\xf2\x37\x6a\x50\xce\x10\x69\xe4\x28\xa1\x9b\x24\x4f\x26\x1d\x25\x39\x26\x79\x4f\xa2\x40\x14\x48\xfc\x83\x28\x9d\xc8\x8c\x28\x92\xe8\x27\x51\x1e\xb1\x14\x89\x1f\xf1\x01\x09\x3b\x35\x3f\xdb\x98\xc8\x89\x0a\xc5\x35\xf6\x66\xed\xf8\x6b\xbb\x7e\x39\x74\x2a\x28\xc4\xdd\xb9\xc8\xb8\x5c\x19\x41\x84\x94\xc5\x9f\xdc\x1a\x07\x06\x55\x1f\x65\x17\xd9\x18\x59\x0c\x71\x17\x49\x14\xb1\x07\x31\x0f\x71\x0b\x49\x02\xc9\x1a\xa9\x15\xb9\x07\x45\x01\x19\x84\xe9\x41\xd6\xcf\x01\x2b\xb5\x70\x9f\xb1\xbb\x33\xcb\xd1\x6d\x5f\x95\x90\x25\x14\x31\xeb\x21\x64\xde\xa4\x6e\x28\x56\xc1\xd6\x46\x6e\x8b\x51\x01\xe7\xfe\x99\x14\x8a\x0f\x32\x0d\x12\x09\xa2\x16\xa2\x1c\xc2\x09\x22\x14\xe2\x18\x52\x1e\xd2\x17\x8a\x1f\x4a\xfe\x33\x0e\x9c\x3d\xde\x4f\xc6\xdf\x62\xb4\x2f\x07\x27\x0a\xcb\xd4\x43\xbd\x8d\x08\x05\x52\x09\x70\x7e\x5e\x76\x86\xba\x2e\xb2\x02\xbc\xe7\x74\x4d\xf8\x22\x08\xe7\x90\x88\x00\x16\x40\x03\xb0\xbc\xc7\x05\x5b\xf8\xf4\x04\xb1\x04\xa5\xf5\x05\xef\x6b\xea\xb7\x2d\x98\x49\xd8\xd0\x9f\xb5\xf8\x7d\xcc\x28\xe2\xe0\x20\xd0\x0d\xce\x76\xea\xe4\x72\x67\x4c\x85\x4e\xfa\x5c\x58\xb1\xeb\x8c\x69\xbd\xea\xad\x18\x24\x1b\x0d\xb9\x30\x46\x0b\xf4\x15\x38\x34\x54\xe2\x57\x02\x68\x57\x38\xf8\x1f\x48\x08\x9f\x11\x2d\x91\x8b\x50\xa3\xd1\x2c\x30\x58\xb1\x0e\x71\x33\xa9\xaf\xb8\x63\x65\xe1\x41\xa0\x17\xfb\xe3\xc3\xa5\xc3\x21\xea\x06\xa7\x7c\xdd\x38\x1e\x5f\x37\xdb\x4a\x5d\x4a\xd9\x2a\xbe\x70\x7a\x76\x02\x58\x84\xd3\x1f\x9e\x08\x15\xc8\xac\x68\xac\x98\x9a\xd8\x4a\x78\xf2\xf8\x07\x44\x20\x92\x34\xb2\x35\xca\x28\x2a\x24\x9a\x48\xce\x5b\x49\x6c\xcd\xac\x7f\xfc\x36\x6f\xfa\xb6\xa2\x27\xd9\x3b\x60\xcb\xfd\xd2\xa3\xc3\x74\xdd\x3e\x9a\x36\xaa\x91\x8b\x9b\xb2\xeb\x52\x8c\x61\xeb\x61\xbb\xe1\xbe\x10\x1a\x12\x27\x91\xa3\x53\xd2\xd0\x98\xd0\x7f\x67\x6c\x65\xf9\xc1\x56\xc9\xb1\xc6\x2d\xc7\x4b\x27\x3e\xa6\x56\x61\x56\xf5\x8f\x08\x4f\xbf\x8e\xe4\x96\xf8\x07\x8a\xea\x7b\xf3\xd6\xe3\xe8\xfd\xde\xd9\xdd\xea\x8b\x2a\x64\x08\x62\x32\x45\x53\x5c\x53\xfa\xd3\x88\xd1\x65\x33\x19\xb2\xd8\xb2\x1f\x73\x1b\xf2\xba\x08\xb4\x0b\xeb\x88\xc1\x8a\x57\x4a\xa6\xca\x3a\xa8\x41\x9a\x08\x39\xff\x71\xe2\x7c\x0d\x6c\x32\x4c\x26\x74\x10\x97\x2f\xa6\xab\x87\x5b\xba\x5f\x5b\xb4\x6a\x06\x49\xf3\xf2\xf8\xb3\x45\xb1\x73\x73\x1e\xf0\x18\x0b\x7c\x15\xc6\x10\x0d\x96\x74\x94\xa3\x54\x00\x53\x6a\x57\x4d\xd6\x9c\xd1\x26\xd2\x57\x37\x81\x74\xdc\x0d\xf8\xa3\x76\xf1\x29\xf8\xc8\x70\x91\x6d\x10\xad\xd1\xb6\x40\x29\x11\x25\x10\xcd\xa9\xd4\x24\x58\xd5\x41\xb2\x5d\x78\x54\x0c\x57\x5c\x5f\x8a\x44\x0e\x53\x21\x44\xc5\x58\xc3\x43\xdb\x56\xaf\xdb\xf8\x83\x29\xa5\xc5\xa1\xcd\xb8\x7d\x81\x63\x85\xbf\x57\xdc\xbf\xbb\x48\xae\xc5\xb7\x55\x27\x7f\x77\x69\x55\xfa\x65\x53\x47\x6f\xf9\xc6\xd8\x0d\x1a\x92\xaa\xd1\x28\xf1\x2b\x5f\xa9\xae\xaa\x6f\xe8\x28\xe9\xad\x1a\x35\x9a\x79\x58\xe3\xd9\xb2\x3a\xde\xb9\x34\x7a\x72\xfa\x7a\xf8\x83\x42\x92\x63\x3f\x66\x0b\xff\x2b\xc2\xd3\xde\x49\xfa\x32\xd3\xb0\x76\xf3\x4b\x29\x53\x9a\x69\xb8\xb6\x97\x8d\x8d\x8b\xf1\x91\xbe\xb1\x21\x8b\xf1\x8a\xc9\x8b\x85\x99\xf5\xb4\xfd\x98\xf3\x95\x87\x8b\xb7\x5a\x00\x71\x30\x44\xc8\x6c\x94\x40\xfc\x6e\x9a\x69\x56\x54\x85\xed\x7f\xb2\xf5\x2d\xef\x8e\xc9\xac\x6f\xdf\x66\x83\x5e\x21\x4f\xb2\x6e\x68\xa7\xa7\xad\xe3\xa4\x2d\x96\x3d\x99\x83\xb7\xf3\xae\x5b\xa5\x17\x87\x9f\x63\x10\x61\x18\x75\x64\x40\x1c\x4e\xe2\x75\xda\x5a\xd6\x69\xbe\x41\x11\x78\x85\x56\xeb\x9f\xea\x1f\x7e\x7f\x3b\x6f\xdb\x38\x9d\x6c\xe8\xaa\xaa\x95\x2b\xf8\x94\xf4\x2d\xec\xde\x9f\xd7\x07\xc9\xd7\xc1\x7f\x3c\x50\x3f\xe4\x32\x3c\x36\x96\x35\x41\x3b\x39\x2f\x43\x29\xfb\xb5\x08\xb9\x4c\xa7\xe2\xa5\x1e\xa6\x79\xad\xab\x79\xa8\xfa\xcf\xcc\x78\x5c\x39\x56\x5f\x4d\x1c\xf3\xeb\x34\xaa\x79\x97\xf7\x39\x85\x2f\x6e\x22\x6a\x39\x66\x32\x0e\x21\x81\x23\x69\x29\x4d\x34\x6b\x26\x8f\xa8\x28\xbc\x9c\xbf\x1a\xbb\x21\xb7\x05\xbe\x53\xa6\xef\x65\x98\x65\x7c\x74\x81\xfc\xaf\xd4\xba\x27\x3a\x84\x5d\x92\x1f\x2d\xeb\x18\xab\xfa\x5c\xac\x93\x93\x98\x61\x94\xc5\x9e\x0b\x9d\xb7\x5f\x10\x5e\xbc\x58\x6e\x5e\x73\xd4\x50\xdb\x72\xdb\x69\xda\x87\x3e\xcc\x3f\x41\x3f\x03\xbd\x40\xbe\x45\xbe\x3f\xf7\x77\xf2\xdd\xe4\xec\x5f\x2f\x26\x8e\x52\x77\xb2\x35\xec\x54\x42\x96\xe9\x94\x93\x56\xea\xd4\xa0\xd7\xed\x37\x15\xb6\xed\x76\xe1\xf5\x4d\x0f\x17\x8c\x17\xce\x84\x2f\x1e\xad\xe5\x6d\x99\x1d\x4a\x9f\xab\xdd\xb2\xfd\x37\x3d\x6f\xd0\xf6\xec\x96\x4c\xc7\x1a\x7a\xae\xda\xe3\x5a\x6b\xdb\x58\x3a\x2a\x3b\x8b\x7a\xc1\xfb\x5f\x47\xae\x27\x7e\xcf\xea\x2c\xbe\xae\xa5\x6d\xdd\x1f\xc8\x9d\x74\x5c\xd9\xdf\x4e\xbd\x54\xfe\x2f\xfe\x82\xa2\x6e\x4e\x0f\x2c\x96\xab\x66\x4e\xc7\xcd\x46\x3f\x8c\xbe\x1b\x3b\x98\x20\x9e\x1e\x9b\xcf\x5a\x2a\x59\xcf\xde\xc6\x3d\x74\x3e\xb5\xbe\xf4\xbb\xff\xf2\xf8\xbf\xca\x40\xff\xfc\x1c\xbf\x8e\xf5\xb6\x43\x56\x9a\x96\xad\x56\x58\x56\xcd\xd6\x16\xb6\xa6\x76\x97\x0f\x7f\x9f\xee\x5f\x8d\xdf\xdf\x3c\xbf\x03\x9d\xfc\xff\x57\xff\x5f\x5e\xaf\xfd\xbf\x3f\xbe\xd4\xbd\x6c\xbf\x0e\x80\x44\x7f\xaf\xfd\x7f\x55\xbd\x38\xdd\xcf\xde\xa5\x5f\x61\x5d\x0a\x5e\x50\x9d\xc2\x9c\x98\x1f\x2f\x9f\x12\x1e\xa7\x9e\x2e\x9c\xcd\x9f\x1f\x9d\xe3\x5d\x58\x5e\x36\x5d\xa7\xdc\xc0\xdc\xf1\xdd\x2e\xdd\xdc\xbe\x88\xfc\x55\xfb\xac\xf8\xeb\xdd\xe5\xee\x89\xc0\xe1\xe7\xed\xce\x4d\xe7\x0d\xc4\xd5\xee\xd5\xbe\xa5\x9d\x25\x8c\xa5\xc5\x15\xf4\xd5\x2f\xab\xd0\xab\xa2\x6b\xa2\x6b\xf4\x1b\x22\x5b\x3f\xb6\xd3\x76\xcd\xb6\x18\xb6\xa9\x4e\x2a\xef\xf9\xff\xfd\xbc\xad\xd7\x39\x27\x4a\xfb\x8c\x1b\x45\xcb\x5d\xb3\xcf\xb3\xba\x53\xa0\x71\xec\x91\xd7\x61\xd6\x21\xf4\x41\xf8\x81\xd5\x41\xb0\xa1\xde\x11\xc2\x61\xbc\xe1\x84\x91\x8b\x31\x86\x71\xfc\x71\xc6\x29\x9f\xc9\x86\xc9\xa7\x15\xca\xbd\xe9\xcb\xb7\x5d\x94\xd7\xea\xcb\xf8\x83\xb1\x75\x86\x79\xc6\xf1\xfa\xe1\xe3\x7e\x83\xae\xe1\x0e\xb0\xd6\xb9\x16\xdc\xc6\xea\xfa\xfd\xba\xff\x1f\x7b\x7f\x1e\xbd\x5f\x51\x9d\x89\xe2\x66\x30\xe6\x63\x8b\xda\x1d\x8d\xd1\x8e\xa0\x46\x63\x63\xfb\xbe\x9e\x9a\xab\x42\x3a\xfa\x05\xe2\x3c\x01\xd2\x4e\x31\xa8\x38\x1b\x0c\x0a\x0e\x88\xb3\x82\x62\x70\x1e\x40\x71\x88\x0a\xe2\x44\x9c\x12\x11\x49\x1c\x82\x82\x3f\x5a\x32\x28\x31\xce\x8a\x4a\xda\x48\x14\x93\x88\xa8\x6d\xe4\xb7\xce\x7e\x76\x9d\xf7\xec\xaa\x7d\xce\xbd\xeb\xfe\x77\xd7\xba\xf9\x43\x16\xa4\xea\xf3\x9e\xaa\x5d\xb5\x6b\x0f\xcf\x7e\xf6\x8f\xff\xe2\xc2\x0f\x7d\xf1\xdc\xaf\x9c\x7f\xb7\xf3\x9e\x75\xde\xd5\x1f\xb9\xfc\xfc\xe1\xaf\xbe\xfe\xd1\x5b\x7f\xd4\x7f\xfc\x3a\x1f\xff\xda\xc5\x8f\xbe\xf4\xdb\xdf\x30\xd7\x5c\xf3\x1f\x6f\xfe\xb7\x77\x5d\xfe\xbb\x5f\x3a\xe9\x6f\x3f\xf3\x69\xff\xb1\x93\x3f\x7c\xf1\x5f\xdc\xf0\xfd\x47\x9c\xf3\xb1\x77\x1f\xfe\xce\xb7\xbe\xe3\x8d\x6f\x77\x67\x7e\xed\xed\xb7\x7f\xfb\xdd\xce\xba\xf2\xec\xbb\xbd\xe3\x27\xef\xfc\xa5\xf7\xdc\xe2\x3d\x07\x9d\xf3\xe1\x73\x4e\x7e\xef\xfe\xe7\xbc\xf6\xbd\xef\x38\xef\xc9\x17\x7c\xf2\xef\x7e\xed\x9a\x6b\x7e\xf4\x0b\xff\xfb\xc8\x2f\x9d\xf6\x77\xff\x72\xc1\x63\x3f\x72\xea\xfb\x8f\x7c\xe7\xd3\xce\x3c\xec\x4f\x7f\xe7\x8c\x7f\x7a\xfd\xb7\x5f\xf7\xa8\xd3\x8e\x3d\xed\x25\xaf\x7d\xc1\xab\xdf\xf8\xea\x03\x5f\xfd\xe6\xd7\xfc\xec\xb4\xed\xe9\x57\xbf\xfe\xab\xaf\xdf\xef\x0d\xd7\x7f\xfd\x95\x6f\xbc\xf5\x19\x17\xbe\xe9\xed\xef\xb8\xef\x07\xf7\xfb\xd8\xef\xfe\xec\xdd\x57\xbe\xf0\x1b\x2f\xfc\xec\x9f\x5e\xf8\x4b\x1f\x79\xd9\x9f\x3d\xe5\xcc\x74\xc6\x2b\x5f\xf5\x91\x97\x5d\xfa\x27\x1f\x79\xd1\x3f\xbe\xf0\xd2\x93\x5f\xfe\x82\x23\x5e\xf0\xfd\xe7\xff\xca\xf3\xbf\x73\xd2\xc5\x27\xdd\xf0\xa4\x53\x4f\xfa\xe2\x8b\xae\x7d\xca\x37\x4e\x49\xa7\x7c\xfd\x94\x6b\x5e\xfc\xf8\x97\xfc\xb7\xd3\x0e\x7c\xcb\xcf\xff\xec\x4e\x3f\xbe\xe2\x3b\xef\xf9\xe2\x1b\x2e\xf9\xa3\x8f\xde\xf6\xbd\x17\xbc\xed\x16\xa7\x9f\xfc\x92\xab\x5e\xf0\xe7\xcf\xfe\xe5\xa7\x9f\x7e\xc2\x45\x4f\x7d\xe9\xf1\x5f\x38\xfe\xa2\x27\x1d\x7b\xdc\x0d\x8f\x3b\xf1\xf8\xfd\x9f\xfc\x87\x4f\xb9\xd1\xf1\xa7\x3c\xf9\x9b\x4f\xfe\xb3\xa7\xd9\xa7\xe6\xa7\xbc\xfd\xa9\x0f\x3b\xf1\xff\x77\xd2\xeb\x5e\xbe\xef\x8c\xeb\x5d\xf5\x37\x97\xbb\x4b\x1f\x7f\xe1\xa1\xe7\x9e\xf5\x8e\x78\xc6\x7f\x7a\xe9\xad\x9e\xf7\x97\x4f\xbb\xdf\xb1\xbf\xf8\xb8\xa3\x1e\x73\xbd\x47\x3f\xf5\x91\xd7\x7d\xc4\xad\x1e\x6e\x1e\xf6\xdd\x87\x9f\xf7\xf0\xaf\x1d\x7d\xf3\xa3\x9f\x77\xf4\xad\x8f\xbe\xfb\xd1\x1f\x78\xd4\x6f\x3d\xea\xa4\x47\xbe\xe6\x51\xff\xfc\xb8\x5f\x39\xee\xc0\x67\x1d\xf8\xe2\xd3\xfe\xed\x75\xdf\xfc\x8d\x4b\xaf\x75\xc1\x4d\x3e\xf8\x94\xb7\xb9\x57\x1f\x7e\xf2\x3b\x4f\x38\xf1\x98\x9f\x1e\x7d\xfd\x07\xff\xe8\x01\x37\x3b\xf2\x29\x47\x9c\x76\xf8\xd3\x0f\xdf\x77\xd8\x61\xf7\xbd\xea\xf0\x3f\x38\xec\xd2\xc3\xef\x78\xf8\xfd\x8f\x38\xea\xf0\x17\xde\xef\xd5\xf7\x3b\xfd\xc8\x07\x1d\xf1\xd3\x07\xdc\xfc\x61\x0f\xf8\xa3\x7b\x3f\xed\x27\xff\x7e\xdb\xcb\x5e\xfa\xf7\xb7\xfa\xf8\x15\xef\xfd\xc4\x9b\x7f\xf2\xf2\x27\x3e\xe7\x03\x4f\x3a\xe8\x91\xe7\x3e\xf0\x76\xf7\xf9\xcc\x5d\xef\x71\xe8\x41\x87\xdc\xe0\xe0\xf3\xf7\x7d\xef\xe0\xeb\xed\x3b\xe7\x4e\x8f\xbd\xe3\x4f\xee\x74\xf2\x9d\xce\xbf\xd3\x67\xf6\xfd\xfa\xc1\x2f\x3c\xf8\xd5\xfb\xbe\x73\xf0\xf3\xef\x7c\xcf\xfb\x3c\xe6\xc1\x2f\x7f\xcc\x0f\xfe\xfd\x06\xdf\xba\xe8\xef\x2f\xfe\xc4\xf0\xbe\x2b\xfe\xf4\x97\x5f\xf6\xe8\x67\xbf\xe3\xd8\xdf\x78\xe8\x0f\x0e\x7f\xed\x9d\xdf\xfa\xbb\xf7\xf2\x67\x9a\x4f\x9b\x7f\x19\xde\x6e\xe2\x70\xdc\x1d\xbe\x7e\x87\x61\xb8\xde\x1d\x3e\x71\x87\xaf\xdf\xe1\x42\x73\x2b\xb3\xcf\xbc\xcc\xbc\xc1\xbf\xfa\xf7\x7e\xfd\x1e\xaf\x7f\xf0\x97\xae\x1e\x2e\xff\x9f\x97\x1e\x7a\xc1\x0f\x3f\x70\xc5\x5b\x8e\x79\xf9\x49\xcf\xb9\xee\xb1\xc7\x3c\xf4\xa1\xf7\x7d\xde\xc1\x77\xf1\xaf\x38\xf0\xb4\x5b\x9d\x7a\xcb\x7d\xb7\x78\xea\x01\x67\x1d\x70\xf8\xfe\x17\x1c\xf0\x0b\xfb\x5f\xba\xff\xdb\x0f\xb8\xef\x01\x27\x1d\x70\xfc\x01\x7f\x7d\x8b\xed\x2d\xbe\xfa\x5b\x87\xdd\xe1\xcb\x77\x3a\xed\x88\x5f\xf9\xe9\xb1\xff\xfc\xd9\x2f\xfc\xea\x45\xb7\xff\xd0\x3f\x9d\xb5\xdf\xab\x7f\xe7\x05\x7f\x78\xdc\x33\x1e\x7e\xf0\xe1\x27\x1e\x72\x7b\xf7\xc3\xdb\x9c\x7a\xd3\xfd\x6e\x78\xd6\x0d\x3e\x75\x83\x13\x6f\x70\xc0\xf5\x5f\xbb\xdf\xbf\x5e\x7f\xef\xfa\x77\xbd\xfe\x4f\x6e\xf0\xb0\x1b\x5e\xf6\x5f\x1e\xfb\x6b\x87\xfc\xda\x4d\x6e\xf2\x88\xdb\xbe\xee\x77\xde\x79\xef\x27\x5e\x73\xcd\x95\x47\x7d\xed\xca\x4b\xfc\x5f\x3e\xfa\x5d\xff\xe7\xf5\x4f\x3a\xe5\xec\x13\xc2\x63\x9e\xf9\x80\xd7\xde\xf5\xfb\xe5\xbc\xdb\xbd\xeb\x37\x6f\x76\xfd\x5b\x5f\x6b\xef\x97\x6e\x71\xed\xf3\x7e\xf5\x19\xff\xe9\xf6\xfb\x9d\x7d\x83\x57\xfe\xe7\xdf\xfb\xb5\xa7\xdc\xe8\x56\x37\xfe\xc1\x4d\xde\x7d\xd3\x27\xdd\xec\x26\x07\x6e\x0f\xfa\xe8\x7d\xee\x74\xcd\x35\x57\xdf\xf0\xf2\x27\xff\xc3\x2d\x2f\xf8\xe8\x07\xff\xe0\xad\xcf\x7d\xe5\x3d\x9f\xfb\xbc\x27\x1e\xf1\xd0\xb3\x0e\x3b\xec\xe0\x13\xdd\xfd\x6f\xf3\xec\x1b\x7f\x77\xbf\xe3\x6e\xf8\xad\x1b\xfd\xf2\xaf\x3f\xe2\xa6\xf1\xbf\xde\xeb\xe6\x9f\xbc\xc5\x2f\xdd\xf2\xe9\xbf\xf5\xc4\xdb\xdc\xed\xb6\xbf\x7d\xe0\x9b\x6f\x77\xa6\xfb\xda\x21\xc7\x1c\x79\xab\x6b\xae\xb9\x66\xbf\xef\xdf\xe6\xab\x4f\xfd\xcc\x55\xe7\x7f\xfc\x5d\x2f\x7f\xdd\x9b\x4e\x39\xe6\x84\x73\x1f\xf3\xf5\x07\x3e\xf9\xee\x57\x1c\x74\xc7\xdb\x9f\x7a\xf3\x8b\xfe\xeb\xc9\xfb\x3f\xe2\x96\xfe\xb7\x2e\xfc\xed\x8f\x1c\xb8\xff\xed\x1f\x79\x87\xdb\x99\x23\xed\x83\xc3\x75\xd2\xa6\x1c\x7a\xd0\x05\x07\xbf\xfd\xbe\xdf\x7f\xe8\x71\xe3\xdd\xfc\xd1\xd5\x97\x3f\xf6\xd2\x73\x2e\xb8\xfe\x07\xde\xf8\xd6\x87\xbc\xe2\x99\xcf\x79\xe1\x13\xef\xff\xf0\x1f\x1d\xf1\xc0\x43\x1f\xeb\xaf\x39\xf0\xaa\x03\x4f\xfc\xef\x3f\xd9\xbe\xc4\xfc\xcc\x7f\x20\x1d\x59\xae\xf9\x1f\x8f\xbf\xd3\x31\x87\xec\x7f\xe8\x3f\xdd\xe5\x8c\xbb\x6f\xef\xf5\xb6\xc3\xd2\x51\xff\xf9\x98\x2f\x92\x7a\x78\xcc\xf7\xfe\xe8\x2b\x4f\xfa\xcc\x01\x1f\x79\xc1\xbb\xe2\xeb\x5e\x7a\xca\x71\x27\x5c\xf4\xb8\xab\x1f\xfc\xfe\x7b\xdd\xe5\x8e\x07\xa4\xfd\xd2\x95\xe5\xf3\x07\x7d\xee\x8e\x8f\x3e\x78\xff\xdf\xff\xc5\xbb\xfe\xc9\x3d\x9e\x7a\xef\xc7\x1d\x7e\xfe\xff\xdc\x7b\xe0\x21\x0f\x3a\xe1\x21\x37\x7b\xd8\x7f\x3f\xe6\x97\x4f\xfc\x6b\x68\x98\xab\x9e\x73\xf9\x83\x3e\x77\xe1\x5f\xff\xe8\x03\x7f\xfd\xd6\xcb\x5e\xf9\xf2\xe7\xdf\xe6\xf8\x2b\x1e\xf9\xe4\xfb\xff\xe1\xdd\xae\x3a\xf4\xbf\x1d\xfa\x83\xbb\x1c\x73\xf7\x73\xee\xf5\xe4\xfb\x3e\xee\x88\x4b\xef\xff\xeb\x0f\xfe\xdc\x43\xce\x7e\xd8\x4b\x1f\x71\xdf\x47\x7f\xf7\xf1\x77\x38\xe6\x8a\x63\x3f\x7c\xe2\x41\xa7\x3c\x0a\x7f\xe1\xe7\x67\x7f\xef\x5e\x5f\xfe\xc6\xc5\x3f\x3d\xff\xdc\xf7\x5c\xe7\x0d\xdf\x7f\xc9\x6f\x3c\xf3\x7b\x7f\xfc\xbc\x87\xdb\x23\xcf\x3c\xec\x3a\x47\x9c\x71\xe4\xb9\x0f\xf8\xe8\x83\xbf\x75\xd4\x2d\x1f\xfe\xa6\x47\x5d\xe7\xb1\x97\x3d\xe1\x0e\xc7\xde\xf6\xb8\x8f\x9e\x70\xd0\x89\x6f\x7b\xd6\x2f\x3e\xff\x66\x2f\xfa\xd2\x6b\xa7\xfa\x8b\x1f\xbd\xf8\xf2\xfb\xfc\xc3\xf5\x3e\xf9\xbd\xbf\xf8\xc2\x59\xff\xe7\xb5\x9f\x3f\xe5\xb7\x9f\x7e\xea\x31\xef\x39\xfa\x53\x0f\xbd\xe8\x61\xa7\x1e\x7d\xb7\x47\x9e\xfe\xd8\x93\xff\xe8\x43\xc7\x3e\xe3\xf8\xfb\x3f\xed\xbe\x27\xfe\xaf\xe7\x7c\xf3\xf9\x5f\x7d\xe1\xfb\x4e\x7d\xfc\x4b\x3f\xfb\x8a\x57\x9d\x76\xe3\x33\x9f\x5e\xff\xc2\xcf\xbf\xf9\xfd\x37\x7c\xfd\x0f\xfe\xe6\xc5\x1f\xfd\xd1\xfb\x2e\x7d\xeb\xdd\x5f\xf5\x92\x93\xbe\xfc\xb4\xab\x9f\xf8\xd3\x27\x3c\xe7\x8f\x5f\xf4\xc4\xd3\x8f\x7b\xd1\x53\xe3\xd3\x9f\xfd\xac\x07\x3d\x6f\x78\xe1\xb5\xff\xe4\x91\x2f\x3d\xe1\x55\xfe\xb5\x27\x9e\x71\xeb\x37\xde\xf9\xcc\x6f\xbf\xe3\xf8\xf7\xcf\xbc\xdf\xab\xff\xf1\x7f\xff\xf0\x8b\xd7\xbe\xf8\x3a\xe7\xef\x7b\xcf\x5f\xfd\xe9\xc3\x5f\xf9\x88\x93\x3e\xf8\xcc\x53\x4f\xfc\xfb\x67\xdd\xfe\x59\xdf\x7c\xee\x5b\x5f\x70\xd9\x8b\xca\xa9\xb7\x7c\xd9\xdb\x5e\xf3\xe0\xd3\x9f\xf1\xc6\xdf\x7c\xeb\x4d\xce\xfa\xe3\x77\x3c\xe1\x9c\x5f\x7d\xff\xb7\xce\x3b\xe3\x63\x77\x9d\xeb\xfb\x7f\x7b\xf9\xb7\xcf\xfc\x87\x13\x2f\xfa\xcd\x0f\x3f\xe4\xdd\x67\xbf\xe9\x6e\xaf\xd9\xff\xd4\x93\x5f\x7c\x9b\x53\xc3\x4b\xee\xf1\xb2\x27\xbc\xea\xed\xaf\x8d\xaf\xbf\xe4\x4d\x17\xbd\xf5\x21\x67\xff\xfb\xbb\xaf\xfd\xde\xdb\xfe\xf9\x1f\x7f\xe8\x9f\xff\xea\x61\x9f\x38\xec\xc2\x7f\xbd\x64\xdf\xfc\x2f\xfc\xfc\xc6\xdf\x3f\xfb\x1b\x3f\xff\xdc\xfd\x3f\x79\xe1\x87\x9f\xf6\xae\xbb\xbe\xe5\x2b\xaf\x7f\xd5\xe9\x17\xbf\xee\xa9\x67\xfc\xdd\x9b\xde\xff\x96\xdb\x9d\x79\xc8\xd9\x5f\x3e\xe7\x88\x0f\x1c\xf3\xa1\xcd\xf9\x87\x7f\xfc\x3a\x17\x9c\x7f\xe1\xb9\x97\x7c\xea\xef\x0f\xfa\xfc\x57\xbf\x7e\x5e\xf3\xea\x3c\xe6\x7b\xd7\xfe\xea\x87\x3e\xfb\xc2\x4f\xbe\xe4\xdc\x6f\xbd\xf7\x29\xef\xfc\xe0\xd9\x2f\x7b\xe7\x9d\xdf\xf5\x17\xe7\x0c\xef\xfb\x85\x0f\x6e\xce\xbd\xee\xf9\xf9\x63\x37\xfa\xd4\xb1\x9f\x7e\xc6\xdf\x1e\xf2\xd9\x97\xfc\xe3\x27\xbe\x72\xe3\xcb\x4e\xff\xce\x5f\x7e\xbf\xcb\xa1\xfc\xf8\x3a\xdf\xbd\xe8\x6b\x7f\xf0\xb7\xef\xfb\xd4\xab\x3e\x7a\xeb\xf3\xee\xff\xa1\x13\xce\xcd\xe7\xdd\xfe\xfc\xbb\xfe\xd5\xfd\x3f\x71\xd7\x4f\x3d\xf1\xe2\xbb\x5c\xf2\x84\xcf\x7e\xf0\x0b\xb7\xff\xca\x09\xdf\x38\xf9\xf2\xcb\xaf\xf8\x2f\x57\xde\xf8\x87\x37\xfd\x59\xe8\x5f\xce\xab\x6f\xfe\xdd\xd7\x7c\xed\xe8\x7f\x78\xd0\x25\xbf\xf7\xc9\xe7\x7e\x72\xbf\x4f\xbe\xe5\xc2\x07\x7e\xfa\xf4\xff\xf5\x99\xbf\xb9\xf8\x73\xff\xe3\x0b\xa7\x7f\xb9\x7c\xe3\xb9\xdf\xfe\xd7\xef\xfc\xf8\x7b\x9f\xfe\xe1\x6d\x7e\x72\xa3\xe5\x1c\xc8\xd5\x4f\xbe\xe2\x79\xdf\x7c\xf3\x17\xff\xf0\xd2\xa3\x3f\xfb\xae\xcf\x3d\xfb\xd2\x57\x7d\xfe\x13\x5f\x7a\xc8\x57\x3f\xf9\x8d\x3f\xbf\xfc\x0b\xff\xfc\x9d\x2b\x7f\xe1\x87\xf7\xfb\xf1\x9b\x7f\xf6\xec\xa5\xb9\xf5\xff\x7e\x7a\xf4\x95\x1f\xfa\xee\xf5\xbe\x7d\xa7\x6f\x5e\x70\xd9\x7f\x7c\xeb\xf3\x97\x5f\xf9\x9d\x37\xff\xcb\xab\x7e\xf0\xe7\x3f\xbc\xe7\x4f\xf6\xfe\xe3\x59\xed\xd8\x6b\x2d\xfe\xdf\xb5\xaf\x7d\xd3\x9b\x6e\x36\xfb\xf6\x1d\x79\xe4\x63\x1f\xfb\xcc\x67\xbe\xe2\x15\x67\x9d\x75\xde\x79\x97\x5c\x72\xd9\x65\x57\x5d\xf5\x7f\xf5\xfb\xff\xdf\xff\xfd\xbf\xe7\xff\xae\x75\xad\xe3\x1f\xf9\xb4\xe3\x47\x79\x1f\xfc\xfb\x77\xb9\xdb\xbd\x8f\x3a\x74\xdf\xfd\xf6\x1d\x75\xe7\xfb\x1c\x7e\xaf\x7d\xf7\xbb\xee\xde\x21\xf7\x7a\xe0\x3d\x8e\x3a\x04\xff\xb8\x17\xfe\xf1\x40\xfc\xe3\x1e\x7b\xf7\xdc\x77\xf0\x51\xf7\xa4\xff\xdd\x47\xff\x7b\xf0\x75\x7f\xff\xde\x87\x8a\xe9\xbb\x3f\x78\xdd\xbd\x61\x3b\x0c\x83\xf2\xbf\x25\xcc\xfe\x65\x63\xc7\x7f\xd4\xc1\x46\x19\x3d\x6c\x63\x1a\xf6\xc2\xb6\x8c\xa3\xdd\x36\xc7\x69\xb4\xed\x47\xe7\xb8\x35\x79\xd8\x33\x76\x3b\x98\x61\x6f\x13\xb6\xd6\x4c\xc3\x9d\x32\xdc\x6c\x5d\x19\xf6\x4c\xde\xa6\xf1\xaf\xc7\xad\x29\xd3\x70\xdf\x0f\x4f\x71\xeb\xed\xb0\x67\xc3\x36\x65\x1a\x5e\x76\x7f\x3d\x84\x6e\x78\xcc\xdb\x68\x87\x3d\x97\xb6\xc9\x0e\x7b\x9b\xb4\x75\x69\x1a\x9e\xfa\xbf\x1e\x87\x6d\xf6\xc3\x5e\x18\xb6\xa1\xd0\x5f\x4f\x7e\x1a\x9e\xfb\xbf\x1e\xdc\x36\x8c\xb3\x1c\xcd\xda\x84\xf9\x5f\x37\x43\xff\xe7\x7d\xc6\x0f\x7b\xec\xbb\xc3\xbe\x2b\x3b\xce\xfb\x6e\xb6\x3e\x93\x7c\x4a\xc2\x5a\xe3\x6e\xb8\x32\x2b\xa7\xad\x49\xc3\x9e\xa5\x25\x6f\xf2\xd6\xf8\xdd\x70\x4d\x50\x96\x3e\x3b\x6f\xc3\x28\xa7\x32\xee\xeb\x34\x5c\x11\x54\xca\x5b\x3b\x0a\x2a\x6c\x8d\x1b\xf6\x36\x66\xd8\xda\xd9\xdf\xd7\x44\xe5\xb6\x2e\x0e\x7b\xd6\x6e\xcd\xb8\x5a\x63\xc6\x03\x31\x4d\xd0\x84\x15\xb6\xa9\x0c\x7b\xce\x61\xbd\xc6\x6c\xed\xec\x93\x14\x71\x85\x3c\x9e\x96\x3d\x1f\xb7\xc1\xe3\x93\xf2\x6c\x82\x26\x30\xb3\x1d\xf2\xb0\x17\xca\xd6\x3b\xac\x39\xcf\x77\x54\x91\x58\xd8\xc6\x38\xec\xc5\xb2\x8d\x9e\xce\x8f\x1f\x25\xa6\x6c\xe6\x24\x81\x98\xe9\x24\xd0\xe9\x34\x66\x9b\x67\xe3\x35\x91\xb9\x6d\x1c\x77\x7f\xc0\x3f\x8c\x1d\x6f\xc1\x34\x41\xf9\x9d\x84\x4f\x0f\xbc\xa7\x6e\xfc\xae\x69\xbc\x26\xb5\xb0\x1d\x46\xa9\x99\xad\x0f\xe3\x04\xbf\x75\x61\x37\x41\x93\xda\xb0\xb5\x99\xee\xe3\x28\xbc\x71\x42\x29\xbb\x09\x9a\xd4\xec\xb6\x8c\x37\xb2\x6c\x33\xfd\x42\x18\x27\x4e\x13\x34\xa9\x05\xba\x35\xde\x6e\x9d\xe7\x5f\x98\x7d\x92\x22\x35\x9f\xb7\xde\xd0\x3c\x9c\x3c\xb7\x2d\x6e\xbe\xab\x8a\xd8\xdc\x76\x88\x74\xa0\xac\x87\x1c\xca\xb8\x4d\xca\xfe\x4c\x62\xc8\x85\x0e\x84\xa1\x35\xc4\x6d\x08\xbb\xf1\x8a\xdc\x52\x99\x94\x21\x4d\x48\xe3\x92\xa6\x09\x9a\xdc\xc2\x78\x36\xf7\xcc\x36\xd1\xf8\x8c\xcb\xe3\x96\xe5\x66\xe8\x44\xa4\x6d\x8a\x18\x9f\x66\x7f\x5f\x11\x5b\x4c\xf4\xe9\xc6\x8f\x5f\xbe\xb7\x31\x05\x77\xc7\x2d\x8a\x2d\x14\xba\x65\x36\xe0\xc4\x9a\x82\x83\xe1\x96\xc5\x66\xb7\xc9\x91\x2a\x2d\xfc\x0b\xc3\xec\x93\x34\xb1\xe1\xc1\x18\x95\x69\xc2\x1e\x15\x3b\xdf\x54\x45\x6c\xb8\x06\xb1\xde\x86\xb8\xb5\xe3\x37\x29\xcb\x9d\xa4\x40\x6a\xdd\xd8\x6d\x18\x4f\x86\xa5\xed\x9d\x26\x68\x72\x8b\xdb\x21\xd0\x45\xa6\x5f\xb0\x16\x2a\xdb\x2f\xcb\xcd\xe2\x48\xd8\xed\x60\x31\x21\x99\xdd\x04\x45\x70\x31\xd3\xbb\xe7\xc6\x9b\xbf\xb7\xb1\x6e\x6b\xe3\x6e\xbc\x26\x38\xb7\x8d\x85\xbe\xd5\x39\x4c\x48\xb3\x09\x9a\xe0\xe2\x36\x8d\x82\x33\x74\x4f\xc7\x09\x71\x36\x41\x11\x9c\x2f\x74\x88\x9c\x1b\xd7\x4a\x13\x9c\xdd\x4d\xd0\x04\x47\x1f\x3d\xca\x2f\xf0\x9a\xbd\x99\xef\x6a\xff\x13\x0e\x8b\x0e\x61\xeb\xe8\x9b\x06\xdc\x37\xe5\xeb\xa7\xa7\x21\x0c\x38\xd7\x9e\xbe\xa9\x40\xd2\x3c\x41\x11\x5c\x2c\xdb\x92\x71\xf9\x49\xd7\xdb\x32\xbe\x15\xd3\x0c\x45\x72\x31\x8e\xeb\x1c\xdf\x41\x4b\x37\x75\x18\xff\x39\x4d\xd0\x24\x67\x71\x50\x2d\x96\x3d\x4e\x98\x7d\x93\x22\xba\x90\x49\x83\xb9\x6d\xce\x18\x4f\xaf\x09\x8f\xd7\x24\x67\xb1\x3a\x8f\xd7\x67\xfc\x81\xb4\x9b\xa0\x49\x2e\x6c\x7d\x84\xb1\x53\xb0\xe6\x3c\xfb\x05\x45\x72\xae\x90\x8a\x74\x69\x1b\x03\x26\x18\x37\xdf\x56\x45\x72\x7e\x6b\xcc\xb0\xe7\x13\xfd\xd2\xc6\xe6\xed\x30\x4a\x4e\xf9\x98\x69\x57\x33\x0d\xf4\xa4\x0d\x36\x2e\x8d\x2f\xd1\x34\x41\x93\x9c\x83\x65\x67\xca\x68\xbf\xd0\x0c\x37\x9b\xa1\x49\x6e\x20\x93\x90\x5e\x86\xcc\x33\x66\x1f\xa5\x88\x2e\xc4\x6d\x9e\x8c\x18\x9a\x10\xf2\x6e\x82\x26\x3a\x3b\x9e\xd0\x51\x7f\x5b\xfe\x85\x60\x77\x13\x14\xd9\xf9\xb4\x1d\xd2\xb0\x17\x71\xad\x5d\x1a\x6d\xa1\x69\xbc\x26\xba\x81\x4e\x85\x49\x7c\x38\xa2\xf8\x22\x4d\x74\x9e\xb6\xc7\x16\xe8\x01\x17\x20\xeb\xb4\x72\xe9\x06\x7a\xa2\x5d\x1e\xad\xd4\xbd\xcd\xf8\x07\xc6\x35\x28\x7f\x7b\xda\x56\x7a\x1b\x9c\xc1\xc5\xf0\x1e\xdb\x9a\x17\x2f\x5d\x60\x73\xc6\x46\xdc\x0c\xef\x71\x25\xf2\xe2\xa5\x0b\x7e\xd4\x8f\xa4\x89\xb3\xc3\x0c\x33\x9b\xa1\x89\xce\x40\x2d\x99\x38\x3e\x40\x34\x63\x88\xbb\x19\x8a\xec\x7c\x7d\x81\x06\x28\x0f\xef\xa0\x0a\xf2\xe2\xc5\x1b\x4d\x0d\x58\x59\x64\xd6\x7b\x07\x85\x96\x17\x2f\x9e\x8b\x74\xba\x0b\x2f\x82\x9e\x97\x69\xbc\x26\x3c\x43\xf7\x6e\xd4\x7b\x34\xc1\x8c\xe6\xc4\x6c\x67\xfb\x5f\xb0\x91\x4c\x44\x37\x90\xb3\x34\xce\xb0\xf0\x05\x96\x2e\x1e\x2f\x6b\x3c\x7a\xf4\xcf\x40\xff\x79\x37\x43\x13\x1f\x5b\x58\xce\xf2\x46\x95\xf1\x37\x77\x53\x14\xf9\xf9\x02\x3b\xd1\xa6\x6d\xe6\x29\x3e\xce\xa6\x28\x02\xf4\x91\x75\xb8\x85\x0a\xf1\x65\x6b\xe6\x53\x34\x09\x3a\x36\xfd\xd2\x76\xa0\xfd\x22\x2f\x6d\x37\x45\x11\xa1\xcb\xf4\x26\x8d\x0f\x37\xfd\x48\x1a\x7d\x97\xdd\x0c\x4d\x86\x8e\x6c\x64\x8b\x03\xe9\xd3\xb8\xd1\xbb\x09\x8a\x10\x6d\x22\x8b\xc8\xb8\xad\xa1\xeb\x11\xc7\xad\x98\x6f\xb0\x22\x45\x78\x72\x16\x8a\x7d\x9c\x32\xf3\xa4\x15\xb9\x14\x8f\x85\xd3\xfb\xb8\x17\xe0\x72\x89\x71\x62\x78\x2e\xa3\xf1\xbd\xe7\xc9\x68\x74\xb0\x3c\x84\xe8\xe4\x68\xd8\xd5\x66\x20\xb3\xcb\xc2\xdb\x12\x62\x93\xc3\xe1\xeb\x8e\xa6\xab\x1b\xff\x5b\xe8\xfc\x6e\x31\x3c\x05\x98\x1d\xe4\x0f\xd0\x55\xea\x1c\x6f\x31\x3e\x66\x7a\x58\xea\x71\x35\x78\x1c\x85\xb4\x4c\xa3\x9d\x46\x67\x77\x3c\xd6\x64\xe4\x8f\x06\x5a\xe3\x7a\x8b\xf1\xc1\x8d\xbe\xd8\xf8\xba\x90\x61\x26\xbe\x5f\xbd\x13\xe3\x91\x29\xf0\x4a\xc7\x65\x8f\x96\x4a\xe3\x7b\x4b\x51\x0d\x78\x74\x49\x81\xed\x0d\xb8\xd0\x66\x45\x56\x71\x1b\xe2\xf8\x77\xe9\x12\x50\xc4\xa4\x75\xbe\xe5\x78\x3b\xbe\xfe\x7b\x89\x66\x6d\x2c\xc2\x1e\x66\x59\x5c\x29\x91\xc2\x30\x1e\x61\x15\x27\xbe\x5f\x15\x98\x9d\xec\x44\xac\x63\xee\xeb\xaa\x12\x83\xf5\x36\xde\x1b\x44\x33\x6c\xec\xbc\x6f\xd3\x3c\x0f\xc5\x90\x95\x92\x30\x21\xf4\xde\xb7\x9c\x30\xd0\x84\x90\xb7\x91\xae\x0b\x4c\x5d\xb3\x26\xb4\xb0\x8d\x8e\x0e\x13\xf9\x67\x14\x09\x69\xfc\x6f\xb9\xab\x09\x8e\x71\xda\x5a\xba\xf5\xe3\x61\x6a\xfd\xef\x56\x0c\x78\x4c\xea\x1a\x5c\xea\xfc\x6f\xb9\xad\x78\x6e\x3d\x8e\x5d\x1c\x3f\xaf\xf5\xbf\xe5\x78\xbf\xf5\x1e\xf6\x7d\x82\xfe\xea\xfd\x6f\x29\x86\x42\x3f\x30\xde\x4b\x4f\xe6\xeb\xfc\x17\x54\xb9\x59\x1a\x69\x33\xc2\x26\x05\xa6\x89\x5d\x91\x5b\x18\x9d\xc3\x3d\xcf\xe1\xa5\x02\xc5\x62\x97\xe5\xe6\x33\xbd\x9f\xc1\x63\x57\xb3\x90\x82\x2e\x37\x47\x61\x87\xc8\xa6\x6e\x82\x2a\x75\xcb\x72\x73\x14\xc9\x19\xdf\x74\x0a\xb4\x48\xe7\x52\x13\x5c\x2a\xb0\x17\xd8\xe5\x30\x03\x5e\x1d\xb7\x22\xb9\x40\xc6\xde\x40\x7a\x63\x63\x8c\x98\xa0\x8a\xce\xd0\x61\x8a\x08\x90\x19\x0b\xd3\xd8\xad\x88\x0e\x81\x28\xe3\xf0\x69\xc6\x8e\x56\x69\xeb\x84\x4b\x51\x14\xb2\xac\xac\x47\xcc\xce\x38\xdc\x52\xb7\x22\x3c\x4b\x5b\xea\x22\x9f\x5b\x36\x7e\xdc\x8a\xf4\x70\x3f\x7d\xe1\x75\xb0\x4b\xea\xd6\xc4\x07\x9f\x3d\x14\xba\x7d\x14\xc7\xca\xad\x23\xde\x4a\xc3\x70\x30\x87\x04\x6e\x3c\xdc\x02\xbf\x22\xc0\x50\x83\x70\x90\x7c\x18\x0d\xec\xd6\x15\x6f\xe5\x41\xf6\x9b\xe3\x20\x4a\x18\xcd\xb3\xd6\x17\x97\x02\xa1\xb8\xcc\x9e\xe5\x58\x56\x84\xfd\xe3\x57\x24\xe8\xb6\xd6\x0d\x7b\x99\x37\x37\x09\xef\x5d\x15\x60\x24\x7b\xdd\xd6\x67\x2b\xc1\xf3\xf5\xcb\x02\x1c\xe5\x60\x87\x3d\x67\xe9\x7d\x1c\x5d\x60\xd3\xbb\xe3\x72\x86\x85\x19\xe0\xd9\x2d\x4a\x22\x06\xa1\x0a\xd0\x25\x58\x18\x55\x1c\x11\xcf\xa3\x30\xac\xba\xd7\x22\xc2\x75\xc7\x83\xc4\x26\xac\x5c\x73\xab\xa8\xc8\xaa\x36\x01\xea\xdc\x5a\xe8\x36\xe9\x92\xb7\x4f\x0c\xf9\x69\x66\x80\x35\x67\xc9\xff\x6a\x9d\xf2\x56\xbb\x0d\xfc\x7e\xf1\x8c\xdc\x7b\xe5\xdd\xb3\x34\xfe\x37\x18\x2a\xd6\x0b\x2f\x5b\x95\xa1\x19\x9d\xb3\x3d\x63\xd9\x6b\xf6\xd8\x5f\xe9\x97\xb7\x57\x8a\xec\x7d\xe8\x76\x9a\x51\x3a\xc7\x5c\x0a\x04\x47\xca\x45\x0e\xc2\xf8\x71\x9b\x3b\xcf\x5c\x4e\xf1\x14\xac\x1e\x8d\xca\xc2\x91\x21\xd3\xba\xe6\xad\xfa\x31\x09\xc6\x3b\xc2\x61\x05\x32\x4c\xcb\x97\x70\x34\x9f\x32\xc7\xb5\x3c\x07\x31\x4c\xe7\x9c\xb7\x2a\x2b\xb3\xf1\x1e\x38\x8c\x91\x87\xce\x3b\xef\x2e\x89\xe5\x38\xac\x81\x07\x6a\x4c\xe7\x9f\x77\x6a\x2e\x92\x7a\x27\x6d\xed\x8c\xe6\xa0\x4b\x99\x44\x3a\x86\x9e\xc2\x69\xe3\x04\xb2\xc0\xd2\xca\x45\xc4\x5b\x63\x6a\x5e\xcb\x20\x96\x9e\x96\x2f\xa2\xf3\xb4\x74\x9b\xb0\x9c\xd1\x91\x76\xbd\x8f\x2e\xa7\x20\x9c\xee\x22\xfc\x29\x37\x20\xa5\x94\x17\x2f\x62\x28\x30\x75\x9c\xa7\xa4\x1b\x05\x58\x5c\xe7\xa5\xb7\x07\x1e\x42\x2c\xbc\xbd\x09\xc6\x61\x5e\xbe\x88\xc1\x23\x0e\x6a\xe1\x5b\x8c\x53\xa2\xed\xfc\xf4\xd6\x78\xa3\xc8\x8f\x29\x78\x71\x5d\x1a\xed\xcb\xd6\x51\x6f\x4d\x6e\xc7\x11\x7b\x3a\xc2\x2e\xc1\x72\xc8\xcb\x77\xd1\x1b\x8e\x12\x41\xb7\x20\xb0\xd8\xba\xea\x72\x87\x23\x1d\x91\xc4\x6f\x03\x5d\xfe\xd6\x57\x97\x13\x0c\xe9\x6a\x93\xa1\xe9\x5c\x42\xb0\x3f\xaf\x5c\x45\x1b\x29\x10\x32\x7a\x88\x0e\xd1\x9c\x52\x3a\x6f\xbd\xdd\x60\x37\xc0\xb1\x27\x83\x74\xd4\xe1\xa6\x77\xd7\x5b\x3d\x84\xb3\x1b\xf1\x5e\x79\x07\xd1\x37\xfe\x7a\x6b\x9a\x15\x3e\x8b\x64\xcc\xf9\x29\xa9\xb8\x7c\x1d\x47\x8d\x62\x10\xd6\xa1\xd8\x36\x8c\xb5\xce\x63\x6f\xdf\xa0\x6c\xf1\x3e\x90\xe6\x1e\xd7\x13\x7b\x97\xbd\x7d\x84\x68\x8e\x19\x48\xbf\x8e\x73\xa2\xe9\x9d\x76\x39\x87\xdf\xa1\x01\x56\x81\xb7\x10\x4e\xe3\xb6\x4b\xe1\x20\x49\x52\x23\xe8\xde\xca\xf8\x83\x2e\x50\x47\xb7\xcb\xb0\x4d\x34\x9e\x3a\xdb\x38\xee\xc2\xc9\x28\x8e\x0d\x34\xfa\xc7\x68\x42\xa5\xd6\x73\x17\xe3\x33\xac\x53\xca\x95\x53\xf2\x2d\xb7\xae\xbb\x1c\x2e\x96\xc5\xa1\x6d\x21\x40\x39\x7c\x20\x2b\x05\xf6\xcc\x1e\x9b\x1c\x42\x76\x62\x38\x1b\xbe\xd6\xd3\xb1\x8a\xd0\xf0\x42\x6c\x62\x78\x4c\xf4\x16\xb8\x48\xd6\x3e\xc5\x60\x1b\xc7\x5d\x0e\xc7\x89\xf0\x85\xfe\xba\x87\xc5\x24\x96\x25\x86\x07\xb8\x97\xd1\x6e\x6d\x18\x87\xfb\xde\x6d\xb7\x8d\x0e\x19\xfd\xf0\x84\xa8\x7c\x40\xae\xd0\x2c\x0b\x6a\xa8\xb0\x03\x43\x76\x5c\x1e\x3a\xb7\xbd\xdd\xf9\x8c\xf0\x87\x19\xb7\x66\x9e\x61\x57\x05\x65\xe0\x8f\x92\x0a\x0c\xc2\x07\xd7\x04\x95\x52\xc5\x42\x8c\x4a\xcd\x21\x89\x67\x56\x24\x85\x5d\xb1\x03\xe2\xfe\x22\x28\xa0\x8a\x2a\xd4\x4b\x33\x8a\x60\x18\xdf\x98\xd6\x63\xb7\xcd\x4b\x11\x61\xbe\x8c\x9b\x34\xd4\x98\xe3\xb2\xb0\x18\xf9\x81\x28\xf6\x50\x63\x81\x2b\xd2\x42\x0c\x2a\x12\xf8\x60\xcf\x8c\x5a\xb3\x71\xd7\xe5\x76\x46\xc4\xc3\x32\xed\xa7\x47\x88\xce\xae\x48\xcb\x72\x32\x87\xde\x13\x8b\xc3\x63\x97\xc5\x95\xf0\x1d\x96\x1e\xdf\x41\xa4\x8d\x55\x71\x51\x66\x79\xaf\x50\x64\x66\xc3\xcb\xb5\xcb\xe2\x8a\xf0\x7a\x4c\x8d\x80\xe2\xad\xb2\x2b\xf2\x82\x51\x6a\xf1\x59\x1b\x87\x2c\xb0\x5d\x11\x98\xa7\xe3\xe9\x07\x44\x31\x9d\x96\x2a\xb7\xcd\x7b\x30\xfa\xf6\xc1\x71\x1a\x01\xe6\x86\x5d\x13\x99\x1b\xfd\xda\xd1\x12\x84\xd1\x88\x2b\xe3\x96\x65\x66\x39\xc5\x6c\x11\x27\x1d\xc4\x04\x4d\x6a\x29\x23\x68\x1b\x39\x8d\x05\x80\x80\x5b\x11\x9b\x87\x25\x3e\xf0\xdb\x36\x3e\x8b\xad\xa7\x2e\x27\x0c\xf4\xf1\x01\x8b\x0e\xdb\xc1\x76\x8e\xba\x94\x43\x84\x09\x60\x61\x30\x47\xd8\x71\x6e\x59\x70\xa1\xd0\x04\x7e\x36\x36\x09\xee\x94\x5b\x11\x1c\x50\x2f\x2e\x20\x85\x95\x45\xb0\x41\x15\x5c\xa0\x6d\xf5\x19\xd9\xc7\x0c\xff\xd9\xad\x09\x0e\x4a\x2b\x64\x38\xe9\x9c\x92\xf2\x8b\x82\x4b\x15\xd2\x11\xe0\x19\x45\x18\xe1\x7e\x45\x70\x9e\x71\x2c\x03\x60\x0e\x49\x64\x8e\x55\xc9\xf1\xc8\x80\xb4\x46\xd6\x3c\xf4\x56\x12\x70\xd6\x06\xc4\x02\x72\x9f\x2d\x97\xe3\x2d\xd9\x48\x8c\xe7\x32\x03\xd2\x00\x7e\x45\x72\x81\x0e\x91\xc9\x38\x7c\xc6\x40\xc7\xfb\x65\xd1\xf9\x42\x4a\x66\x74\x52\x76\xe0\x82\xd6\x41\x97\x33\x2c\x2d\xc2\x3b\x86\x9b\xb0\x9d\xe3\x57\x84\xe7\xa0\x52\x03\x27\x20\x6b\x70\x49\x38\xe8\xed\xd3\x30\x78\xf6\xb2\x39\xd2\x32\x98\xce\x41\x97\x7b\x95\x19\xdb\x91\x78\x4a\xc0\x83\x22\xb7\xa9\x7b\x50\xfc\xec\x72\x9b\x88\xfc\x9d\x74\xd0\x5b\x9d\xe6\x11\x0a\x45\x34\x20\x21\x8e\x23\x1d\xf4\xf6\x15\x72\xf4\x2f\x34\xcf\x24\x1c\x12\xe9\xa0\xcb\x09\x86\xbc\x15\x63\xa0\x98\x4d\x06\xce\x4b\x3a\xe8\x52\x22\x48\x4f\x5b\xe0\x80\x46\x9f\xc5\x87\xce\x41\x97\x02\x81\x92\x72\x1e\x26\xbe\x29\x70\x88\x1a\x07\x5d\x4e\xf1\xf5\xb7\x48\x29\x98\x82\xf7\x34\x2d\xde\xc0\x88\x7c\xfe\xe8\x05\x1a\x86\x9f\x98\xd4\x39\xe8\xed\x79\xa7\x4b\x6b\x03\x56\x62\x2d\x5c\x8f\xb4\x7c\x07\x47\x5d\xc5\x90\x9e\x8a\x41\xa1\x90\x49\x5a\xbe\x85\x21\x70\x48\xcd\x8f\x7a\x8a\xdc\x42\x57\x3a\x07\xbd\x95\x49\x66\x55\x18\xf0\x7d\xd6\x75\x0e\xba\x94\x49\x64\x78\x22\xc1\x01\x6c\xc0\xd5\x4d\x2b\x17\x11\x96\xa5\xf1\x0c\x8d\x89\x5b\xef\x3a\x07\xbd\x95\xc8\xe8\x69\xd8\x80\x03\x6f\x23\xae\x6e\x5a\xbb\x88\x03\x25\xf6\x1d\x83\xcb\x6c\x44\x06\x20\x2f\x5e\xc4\x50\xe0\x01\x39\x76\x06\x6d\xc1\x03\x98\x97\x2f\x62\xe0\xdc\xb6\xb3\x1c\x6a\x18\x44\x02\x5a\x15\xa2\xc3\xed\xb0\x09\x8e\x87\x1b\x44\x4a\x59\x15\xe2\x40\x4f\xff\x78\x44\x86\xc4\xe1\x89\xd2\x39\xe8\xad\x48\xa0\xe0\x03\xa3\x39\x18\x40\x95\x97\xef\xa2\x37\xc8\x4b\x04\x8e\x35\xb0\x91\x9a\x97\xef\xa2\xa3\x87\x66\x2f\xb0\xcd\x63\x11\x98\xc9\x2b\x57\x71\x40\xaa\x8b\x63\x65\xce\xe2\xba\xe7\x95\xab\x38\x3a\xe8\x80\x05\xe3\x82\x59\x99\xbb\xd5\x37\x18\x4e\x29\x5f\x78\x17\xaa\x75\xbe\x7c\x19\x47\x3d\x34\xae\xc1\x73\xd6\x7e\x7c\xdd\x63\xef\xa0\xb7\x06\x19\x64\x1f\x90\x3c\x19\x9d\x7b\xc5\x41\x6f\x6d\x01\x6f\x18\xe4\xc4\xe8\x11\x91\x1f\x57\x45\x69\xf1\x4d\xd6\x71\x58\x23\x42\xad\x36\x0e\x7a\xfb\x08\x79\x4e\x3b\x64\x0e\xe9\x0c\xb6\x77\xd0\xe5\x1c\xcb\xe8\x25\xb6\xc4\xd9\x26\x68\x1c\x74\x29\x1c\x82\xe3\xec\x71\xea\xde\xb1\xf1\xd4\xfa\xe7\x72\x0a\x70\xb1\x26\xc2\x10\x74\x09\x17\xb9\xbd\xb8\x3b\xb7\x8f\x31\xd2\xf4\xf2\x52\x3e\xbe\xcb\xac\x8b\xf1\x39\x93\xce\x26\x20\x08\x45\x01\x52\xeb\x9f\xcb\xe1\x14\x44\xde\x2b\xa3\xc3\xb1\x67\xd2\xdc\x9d\xd7\x20\x9c\x09\x70\xe1\xf1\xf1\x44\x80\x71\x86\x0b\xd7\x90\x83\x09\x41\xcb\x51\x74\x00\x20\x04\xdb\x7a\xe8\x62\x7c\x4c\xf4\xd6\x3a\x44\xd3\x8d\x99\xe7\xe2\x35\x90\x54\x00\x36\xd7\x67\x64\xfc\x07\x9c\x40\x21\x30\x39\x1e\x90\xde\x48\xfe\xdb\x38\xde\xf8\xce\x49\x17\x13\x3c\x22\x3d\x89\x92\x06\xe3\x07\xf5\xc0\x76\xb9\x9f\x05\x7e\x1f\x42\xdb\x26\xe1\xed\x30\x2b\xf2\x42\xca\x72\x33\x54\x0c\xfa\xe0\x3a\x47\x5d\x4e\x30\x40\x24\x22\xcc\xe3\x46\xfb\xa1\xf5\xd4\xa5\x08\x00\x71\x32\x80\x7b\x8e\x96\x46\x0f\x6e\x97\x13\x0c\xa2\x4e\x94\x3d\x1d\x4f\x46\xea\x5c\x75\x29\x33\x4f\x9e\xb1\x33\xf4\x5e\x32\x90\xdc\xac\xc8\x2c\x21\xac\x82\xc7\x2f\xd6\x08\xdd\xb2\xcc\x06\x3a\x9c\x21\x91\x9d\x10\x9a\xc0\x87\x26\xb3\x40\xc9\x8b\x48\x9b\xbf\x27\x13\xd9\xba\x04\x22\x20\xd2\x74\x31\xed\x36\xf6\xc8\xf6\x56\x02\xa4\xbc\x00\x58\x30\x03\xee\x98\x5d\x16\x59\x4a\x64\x19\xa0\x6e\x24\x6b\x89\x75\x39\x1c\x2e\x6e\x06\x0c\x04\x31\x30\xbb\x2c\xaf\x08\xd0\x81\x09\xc8\x6c\x0a\xcf\x5b\x95\x97\x21\xd5\xc3\xb1\x7e\x07\xe0\x9b\x5d\x91\x97\xa7\x00\xb4\x2b\xf4\x9c\x18\x44\x7b\xed\xb2\xbc\x3c\xc0\x13\x01\xd0\x65\x83\xf7\xca\xae\xc9\x8b\x2f\x25\x02\x61\x16\x59\x43\xb7\x2c\x2f\xc3\x69\x1a\x57\xc3\xe3\xb9\xf3\xd2\xdb\xed\x2f\x80\x4e\x10\x6a\x7b\x74\xb0\x5a\x27\xbd\x55\x5a\x88\x22\x93\x55\xe7\x85\xcf\xad\xc9\x2b\x16\xfa\x7e\x24\xb5\x18\x52\xec\x56\xe4\x15\x28\xa0\x8d\x22\x90\x3d\xf6\xf3\xdc\xb2\xbc\x02\x2a\x7d\x46\xf7\x88\x2c\x1a\xe1\x3f\xab\x02\xc3\x05\x9e\x0c\x3f\x04\xf3\xdc\x8a\xc4\x10\x5e\xf0\xfc\x8e\x59\x24\x93\xdd\x9a\xc8\x06\x14\x6b\x4c\x20\x1f\xe7\x5b\x0f\xbd\xbb\x01\x9c\x45\x0e\x88\xff\xb9\xce\x41\xef\x64\x30\x73\xd7\xf8\x8e\xf9\x15\xa1\x0d\x70\xa1\x90\x2b\xdb\x18\xe8\x45\xbf\x22\xb5\x08\x07\x95\x51\x13\x1c\x72\xf3\x2b\x72\xa3\xaf\xde\x8b\x0c\xa2\x06\x02\xc2\xaf\xc8\x8d\x50\x70\x7b\xf0\x02\xa9\x72\xa6\x77\xcf\xe5\xa6\x52\x50\x61\xcf\x32\x20\x3c\x8a\x84\xbb\x2a\x37\x18\x05\xde\x22\xa5\x40\xb8\x9a\xce\x39\x97\x17\x09\x11\xf0\xc0\x86\x74\xc2\xfb\x27\x7c\xf3\xf6\x2d\x70\x9c\x6b\x0e\x28\xff\x99\xe3\xb4\x35\xc1\xc5\x5d\x15\x85\x1b\x76\x85\x45\xd2\x48\x6b\xdf\x0f\x5f\x18\xf0\x01\x10\xce\xdc\x3f\x55\x45\x07\x80\x1f\x5f\xe8\x4d\x11\x6e\xb6\x26\xba\x10\x21\x03\x03\xd3\xce\x0c\x88\x36\x4a\xc7\xbc\x7d\x74\xc6\x4b\x57\xe0\x0a\x1a\x4e\xd6\x48\xbf\x5c\xca\x02\xaf\xa0\x35\x8c\x09\xe7\xf3\x21\xfd\x72\x29\x0b\xd4\xa7\x39\x36\xd7\x51\xe0\xd2\xf9\xe5\x72\x0a\xaa\x79\xbc\xe3\x6a\x1e\x0f\x65\x9f\x16\xef\x5d\x64\xd4\xb2\x63\xe8\xff\xe8\x71\xda\xce\x2f\x6f\x9f\x07\xb8\xb1\x0c\x9c\x37\x41\x38\xa7\x9a\x04\x03\x27\x1c\x47\xaf\xdf\x33\xe2\xd9\x75\x7e\x79\x7b\x39\xc8\xa8\xaf\xae\x90\x61\x20\x55\x5a\xbe\x7f\x15\x4f\x5d\xf0\x5c\x9b\x2c\x12\xfa\x9a\x10\x7d\xa0\x97\x8e\x8c\x36\x44\x0d\x42\xe7\x97\xcb\xfd\x2d\xc0\xb6\xb3\x27\x60\x07\x31\x43\x15\xa2\xa7\x8f\xb2\xec\x67\x58\x99\xcd\x57\x85\x68\x81\x7d\x75\x1c\xc8\xb6\x6c\xe4\xe6\xc5\x4b\x18\x32\x2e\x88\x1f\x38\x53\x69\xa1\xdc\xf2\xf2\x2d\x0c\x8c\x5c\x74\x0c\x01\xb0\x56\x38\xd9\xaa\x10\x2d\x02\x9c\x6e\xe0\x3a\x14\x07\x9d\x9b\x97\xef\xa1\x2f\xd0\xea\xd6\xc3\x65\xb6\x1e\xc6\x62\x5e\xbe\x89\x9e\x2a\x9f\x20\xbd\x32\x8b\xae\xe4\xe5\xab\xe8\x0d\x72\xec\x5c\xee\x62\x23\x8e\x70\x5e\xbe\x8b\x0e\x16\x1d\x03\x68\x6d\x42\xc5\x58\x5e\xb9\x8a\xc8\xe3\x9a\x8a\x1d\x48\xc2\x93\xd7\xa5\x48\x31\x9b\x3d\xd4\x1c\xd1\x94\x92\x3b\xbf\xbc\xf3\x3d\x02\x30\xe1\x14\x92\xb2\x19\x11\xc8\xc6\x2f\x6f\xd5\x10\xb9\x13\x1e\xb5\x54\xe3\x9c\x64\x7a\xbf\xbc\x73\x59\x18\x61\x80\x8b\x5c\x6a\xb5\xe9\xf2\x75\xf4\x9e\x13\x12\x48\x99\x6c\xf0\xff\xec\xfc\xf2\x56\x2e\x99\x93\xed\xf5\xe0\xb8\xd0\xfb\xe5\xed\xfb\x33\xf0\xb5\xcf\x5c\xb1\x61\x14\xb4\xbb\x9c\xc3\x8f\x55\x60\xa0\x89\x45\x18\xb6\xf1\xcb\xa5\x70\x12\xc5\xab\xeb\xa2\x38\xce\xdd\xfa\xe5\x72\x0a\xe1\x8e\xe9\x08\x0c\x98\x43\xf1\x22\xb1\xe0\xf9\xbf\x14\x7e\x74\x1d\x65\xc8\xc6\x75\x84\xd6\x2f\x17\xe3\x33\x30\xf8\x08\xf2\xdb\x3c\x77\x6c\xad\x36\xdc\x91\x1d\x83\xd8\xbe\x0d\xf3\x54\xb5\x53\x86\xa7\x02\x7f\x33\x20\x4a\xc8\x79\x25\x31\x50\x8e\xa7\x8c\xe4\x68\x53\x52\x85\xab\x99\xfb\xf1\x5a\x59\x58\x8c\x64\xfc\x3b\x54\xe7\x1a\xce\x3e\x0b\x99\x89\xf1\x01\x50\x40\x9f\xc9\x64\x32\x1c\xe5\x11\x02\xf3\xad\xf2\x81\x5f\x3e\x60\xbc\x88\x72\x28\x3f\xe0\x61\xc8\x24\xbc\xe8\x26\x0a\xaf\x56\xdb\xcf\x8c\xba\xc8\x48\xa6\xb1\x8d\x30\x58\xcd\x8a\xbc\x3c\x17\x77\xd2\xe1\xb3\x0e\xc6\x98\x59\x91\x18\xae\x2a\x76\x68\x54\xea\xb1\xf3\xcb\xa5\x08\x02\x8a\x32\xe0\x36\xd7\x2a\x55\xb3\x22\x33\x38\x0c\xe3\xe6\x07\x84\x16\x42\xe7\x98\x4b\xa1\x39\x3c\x34\x86\xf4\xa0\x21\x48\x5f\xeb\x99\x4b\x29\xa0\x04\xce\xa3\xc4\xd3\xb0\x2b\x63\x56\xc4\x46\x01\x17\x8a\x02\xc3\xa3\x09\xbe\xf7\xcd\xa5\xdc\x08\x7c\x3f\x9e\x27\xb2\x8d\x8d\xc8\x5c\xeb\x62\x28\x9c\x0f\x8b\x0e\xfb\xea\x3b\xef\xbc\x95\x03\xe1\xac\x3c\xca\x92\x0b\x4c\x11\xbb\x2c\xb8\x14\xe9\x27\xc8\x26\x1c\xb7\x95\x8e\x9e\x5d\x11\x1c\xca\x85\xa9\xb0\x6e\xaf\x82\x7b\xed\xb2\xdc\x22\xe1\x60\xc7\xfd\x8f\xb0\x2d\xb2\xed\x1c\x74\x39\x01\xc1\x58\x1b\x11\x90\x18\x00\x3c\xb1\x2b\x72\xf3\xf4\x0b\x8e\x14\xfd\x5e\x16\x48\x7f\x4d\x6c\xa3\xa3\x57\xe0\x27\xda\x71\x21\x2e\xf7\x1e\xba\x9c\xb0\x0b\x9b\x75\x1e\xb7\x26\x02\x64\xb5\x08\x33\x1d\xe8\x76\x06\xd3\xb9\xe8\x72\x4f\x13\xbc\xb7\x82\x90\x8a\x07\x78\xd6\xad\x08\x8d\x33\x92\x78\xe3\x8d\x15\x45\xe1\x9a\xd4\x62\xa1\x68\x90\xa3\x58\xb5\x19\x44\x4d\xb8\x2a\x35\x3e\x3f\x03\xbd\xef\x19\x05\x4d\x6e\x59\x68\x21\xc3\xfd\x37\x35\xc8\x10\x3b\x27\x5d\x8e\x37\x14\xa1\x75\x54\x78\xb8\xc7\x85\xff\x6e\x45\x66\x50\x2c\x9c\xd7\x60\x8c\x9a\x5b\x93\x19\x8a\x28\x03\xaa\x77\x1c\xe2\x8a\xed\x08\x79\x0b\x38\xd7\x37\x00\xd9\x35\xf4\x2e\x7a\x2b\x02\xc7\xb0\xfb\x00\x64\x79\xe9\x5c\xf4\x56\x04\xe4\xe9\x00\xd0\x48\x91\xde\xd6\x43\x97\xe3\x03\xe7\xc2\x69\x3c\xb3\x2f\xf8\x15\x91\x19\xc6\x4a\x78\x8a\x6b\xcd\x0b\xe6\x55\x89\xa1\x08\xd7\x44\x32\x93\xb8\x4c\xd1\x2f\x4b\xcc\x67\x10\xb4\x70\x12\x52\x26\xe8\x55\x91\xa1\x38\xd3\x1b\xde\x27\x81\xd1\x57\x65\x06\xb0\xea\x78\x36\xc0\x07\x21\xb2\xc1\x9a\x08\x98\x4f\xc0\x12\xb9\xcc\x9e\x6d\xa0\xd7\xca\x16\x25\x98\xdf\x5c\xcf\x29\xab\xd9\x55\x99\x39\xf6\x9c\xc3\x14\x2d\x49\x9d\x73\x2e\x67\x70\xb2\xae\xb0\xb9\x0e\xe8\x93\x14\x40\xfb\xea\xd0\x55\xb6\x5c\xe2\x0c\x68\x95\xf4\xcd\xdb\x57\x67\x5c\x2d\x63\x6f\xf8\xaa\x49\xd7\x5c\xca\xc1\xe3\x0d\x67\xc7\x26\x89\xf8\x82\x26\x38\x07\x42\x18\x67\x81\x07\xce\x62\x97\x74\xc1\x21\xab\xe3\x0d\x8a\xaf\x8b\x28\x04\xd7\xb5\x0b\x25\xbd\x9d\x87\x0d\x1d\xe1\xd1\xa5\xe5\xdb\x16\x0d\x07\x25\x0b\x08\x06\x92\xc8\x4a\x6b\xa2\x0b\x1c\x78\xb2\x1e\xa7\x29\x83\x4e\x21\x2d\x5f\xb8\xe0\xe1\xc7\x9b\x0c\x61\x17\x68\xa5\xb4\x7c\xe5\x02\x3f\xb6\x6c\xc5\x8c\xff\x74\x7d\xb2\xbc\xb3\x00\x06\x3a\x49\x89\xcb\x7c\xe6\xd8\x02\x4d\x7e\x0e\x58\x56\x33\x70\x4a\xd7\x43\xf9\xa5\xe5\x9b\xe7\xb0\xbd\x96\xab\xa3\x47\x7b\x32\xf5\x5e\xb9\x04\x14\x21\xdd\xe1\x90\xe8\xa1\x8a\x9a\xd2\x7a\xe5\xdd\xf6\x5a\x76\xcd\x6a\xaa\xb1\x87\xb3\xcb\x29\x0c\x75\x70\x99\x6d\x4b\x8f\x0d\xce\xcb\xf7\x2f\x58\x84\xd1\x5c\x2d\x2c\x0e\xe2\x57\x34\x29\xfa\x32\x15\x4b\xd4\xaa\x9a\xc1\x76\x5e\x79\x2b\x13\x44\x16\x0c\xbb\x67\x59\xe4\xbe\x55\x31\x0e\x1c\x68\x1d\xb8\x10\xa7\x20\xa6\x96\x97\xef\xa1\x43\x98\x79\x80\x1f\x57\x9d\x8e\xbc\x72\x0f\x61\x5e\x8e\xaf\x3b\x83\x4a\xbc\xeb\xdd\x72\x29\x46\x4a\x42\x93\x47\x13\x10\xc4\x18\x7c\xe7\x96\x77\x3b\x4c\xf1\x59\x3e\x2c\x76\x50\xdd\xf2\x76\x8b\x53\x42\xed\xf5\x50\x69\x41\x52\xef\x96\xb7\x46\x97\x61\xac\x38\xaa\x5e\xb8\xf4\xac\xf1\x46\x5b\xcd\xe5\x38\xe5\x8d\x58\x91\x95\x75\xee\xaa\x2c\x0d\x19\x3a\x84\xde\x60\x56\x94\x58\x7a\xb7\x5c\x6e\x74\x64\x1c\x15\x53\x1d\x59\x3e\x98\x8d\x5b\x2e\xe7\x18\x80\x70\x32\xc7\x80\xa2\xac\xf3\xd7\xe4\x69\x23\xbd\xb8\x76\x02\x80\x58\x2d\x5d\x2e\xa7\xa0\x7c\xd2\x30\x14\xcb\xe6\x79\xf1\xb7\x58\x10\xfe\xa5\xf0\xea\x3d\x72\x8c\x8c\x04\x14\x92\x14\xe3\x33\xd8\x2f\x90\x12\xf3\x16\x38\x63\x21\x44\x39\xdc\x92\x4e\xcd\x55\x2f\x65\xdf\xba\xe5\x62\x78\xca\x64\xd6\x1a\x4f\x26\x86\xe3\x2a\x3d\xb1\x4c\x39\x1e\xb7\xdc\x82\xde\xc0\xb9\x39\x76\x5f\x63\x5f\x89\x60\xa4\x73\xb0\xb3\x6b\x55\x94\x90\x99\x18\x1f\x0a\x79\x16\xcc\x89\x62\x23\xa4\x2c\x04\x26\xc7\x53\x56\x84\x9e\xf4\x81\x60\xf6\xb3\xef\x57\x29\x0d\x3c\x6a\x7b\xd3\x40\x0e\x89\xf5\x55\xc2\x4b\xe2\xca\xc8\x8c\x6e\x12\xd2\xf8\x92\x17\x4d\x95\x97\x43\x35\x0c\x8a\x69\x5c\x16\x40\x72\x4d\x62\xa9\x50\x80\x96\x3d\xa4\x80\xe4\x99\x59\x11\x59\x40\x08\x02\x8f\x8d\xb3\xb0\x52\xcd\x8a\xcc\x86\x4a\xf3\x67\x60\x1d\x7a\xd7\xb9\xe5\x52\x68\x60\x8f\x1b\x95\x1b\x23\xba\x5c\xe7\x96\x4b\x29\x20\xd4\x88\x02\x98\xf1\x70\x84\xdc\xb9\xe5\x72\xc2\x50\x49\x8b\x22\x2a\x38\x93\xe9\xdd\x72\x29\x37\x60\x78\x22\xe0\x39\xe3\x3e\xfa\xd6\x2d\x6f\xc5\x50\xb8\x7e\x36\x00\xaf\x51\x62\xe7\x96\xcb\x19\x5c\xbe\x10\xe9\x09\x04\x85\x45\xeb\x96\xb7\x82\x28\xb0\x38\x0d\x44\xe5\x7b\xbf\x5c\x4e\x80\x42\x8a\x04\x8c\xb0\x09\xf6\xbf\x5d\x16\x5c\x4c\x80\x5c\x20\xda\x61\x03\x4c\x30\xbb\x22\x38\x54\xba\xdb\x50\xe9\x07\x4c\x9f\x39\x97\x72\x20\x5b\x76\x3c\xa5\x54\x28\x9f\x05\x43\x9d\x26\xb8\xf1\x62\x3a\x24\x9f\x80\xb2\xb1\x4a\xee\x5c\xce\x00\xe8\x30\x0e\x13\x06\xa0\xc3\xb8\x77\x62\x48\x93\x1d\x31\x0e\x8c\xb1\x73\xcd\xe5\xb6\xb2\x79\x6e\x06\x3a\x22\x36\xc1\xcf\x73\x2b\x92\xb3\x00\x79\x51\x76\x6a\xdc\x2e\xd7\x97\xa3\xcb\x8d\x85\x67\xc5\x25\x04\x16\xef\xa2\x5b\x91\x1c\x92\xc3\xa5\x16\x28\xcf\xab\xbe\x35\xc1\x85\x44\x02\xb0\x03\xe2\x5a\x51\xa0\xee\x55\xc1\x81\x69\x64\x3c\xa5\x91\x4e\x48\xea\x31\xee\x52\x0c\xc0\x93\x73\x91\xc8\xf8\x5a\x95\xde\x3d\x6f\xfd\xb8\xd1\x2a\x0f\x01\x21\x12\xae\x35\xe8\xcc\x45\x71\x1d\x38\x27\x35\x9a\x29\xd6\x8b\xc2\x75\x55\x70\x96\x6b\x53\x3d\x45\xf5\x46\xbd\x61\x3a\x07\xbd\x95\x43\x44\x42\xd5\xa0\x84\xac\xf4\x39\xf4\x56\x10\x70\x31\xc8\xed\x31\x09\x35\x19\x7e\x45\x72\x60\x6a\xf2\xf8\x81\x20\x0a\xc4\x55\xc9\x79\xd4\x83\x05\x50\x90\x18\x20\x19\xfd\xb2\xe4\x98\x42\xc9\x82\xdf\x29\xe3\x01\xf5\x2b\x82\x03\xf8\xdc\x21\xe7\x1e\xf1\x80\xfa\x15\xb9\x39\x4a\x68\x8f\x16\x60\xa6\xaa\xad\xdc\x25\xd0\xe5\x82\x0b\x20\xd4\x96\x75\x40\xd4\xe8\xe0\xda\x37\xdd\x72\x55\x34\xc5\xc2\xd8\x08\x90\x3e\xba\x9c\x61\xd9\x47\x4f\x35\x0c\x9b\xfb\xd2\xf3\xd6\x0e\xb0\xec\xb6\x8d\xd6\x55\xc1\x8b\x22\x2d\xc3\x76\x4d\x64\x7f\x11\xd7\x4a\x8d\x18\x4a\x81\xc9\x6d\x2d\x80\x60\xa1\xc6\x07\xaa\x5b\x7a\xe8\x72\x38\xb2\x28\x86\xb2\x5b\x7b\x2c\x65\xe9\xa0\xb7\x42\x48\x78\x42\x13\x48\x87\x82\xe2\xa0\xcb\x19\x0e\x09\x09\xc0\xec\x36\x1c\x46\x4e\x8b\xd7\x2d\x3a\x84\x30\x1d\x9c\x28\xb2\xf3\x5b\xff\xbc\x3d\xd9\x86\x01\xba\x36\x10\x0c\x2b\x77\xee\x79\xfb\xaa\x17\x8e\xdd\x24\x8a\x57\x79\xdb\x79\xe7\xda\x6b\x32\x6a\x00\xd2\xf5\xd0\x31\x69\xf9\xb2\x85\xaa\xeb\x1d\xa2\x12\x83\x98\xa1\x8a\xad\xc2\x05\xa6\x2a\xae\xde\x35\x97\xdb\x5a\x68\x9b\x32\xb8\xb5\x02\x14\x6b\x5a\xbe\x6e\xce\xd1\x62\xc7\xfd\x00\xe7\x55\x51\x50\xec\xb2\x54\x84\x79\x44\x0a\x16\xcf\x51\xc6\xbc\x78\xe1\x02\xca\x6e\x46\xd7\xcc\xcd\x80\x40\x79\xf9\xc2\x05\xbc\x53\x9b\x0a\xa3\xb1\xc2\xf3\x57\x45\x67\xb8\x50\x3c\x22\xea\xe1\x85\x27\xab\xc9\x8e\x89\x5e\xa9\x4a\xde\x02\x63\xde\x03\xd8\x5b\x8b\x6c\x60\xd4\x73\x01\xb8\x27\xe6\xce\x23\xef\x22\x83\x1c\x88\x00\xa4\x62\x00\x41\x75\x5e\xbe\x77\x8e\x39\xaf\x2c\xce\xae\xb1\x82\x37\x4f\x13\x20\x57\xe2\x17\x78\xe4\x95\x74\x37\xaf\xdc\x3c\x4b\xb6\x21\x15\xa5\x73\x00\x43\x20\xbe\xf5\xed\xa5\x82\xbd\x8a\xda\x49\x35\xf7\xb6\x7c\xfb\x3c\x53\x04\x05\x03\x58\x41\xa9\x66\xfb\xf2\xfd\xf3\x91\x55\x5a\xe4\x30\xc9\x20\xd1\xdb\xaa\x18\x1d\x50\xdb\x7e\xe0\xc3\x65\x6a\xd5\xee\xf2\x2d\xf4\x03\xea\xbe\x1d\x0b\xd2\x38\xf9\x6d\x9a\x28\x5d\x44\x6d\xbd\xad\xb1\xa5\x50\x6d\xfe\x95\xab\x58\x6b\x88\x2a\x27\x4c\x92\x7e\xbf\x2a\xcd\xc8\xb0\x3c\xa6\x1a\x2a\x30\x1f\x5b\x8f\x5c\xce\x71\xa4\x55\x12\x02\x7f\xa3\x32\xca\x8d\x43\x2e\xb4\x6a\xa9\x08\x06\xd8\xa9\x1c\xa2\x16\x92\x14\xe3\x73\x44\xca\x18\x86\x70\x9e\x7b\x9c\x56\x1b\x6e\xb8\x52\x3c\xe2\x26\xcf\xf2\xd2\x4e\x19\x9e\x52\xcd\xf2\x8f\xf6\x44\xe0\xa0\xbf\x10\x9e\x1c\x0f\xca\x71\x6b\xe0\x9f\x12\x8a\xb1\x71\xc8\xc5\xf8\x08\x73\xce\xc1\xc0\xf1\x76\x8e\x77\xd7\x28\x35\x43\x06\x63\x34\xc8\xbd\x50\x3a\xd7\x38\xe4\x72\xbc\x45\x11\x6c\x41\x40\xc1\xcf\xb9\xe4\x54\xc6\x40\x26\xaa\x88\xa5\x46\xb4\x4b\x97\x27\x6f\xb7\x3f\x21\x58\x1c\x32\xea\xd9\xfa\x3c\xb9\x9c\xc0\xa4\xec\x16\x49\x1a\x57\x59\x0d\x16\x25\x96\x32\xd9\x10\xe0\x4e\xf5\xa5\xc2\x66\x96\x45\xe6\x91\xe2\x1f\x6a\x44\x47\xa1\x87\x93\x32\x40\x84\xdc\x90\x07\x48\x31\x9d\xde\x21\x97\x13\xf0\xed\xcc\xf3\x5d\x79\x36\xcc\x8a\xd4\x08\x06\x49\xf0\x4b\x8e\xfd\x87\xce\x21\x97\x52\x40\xd9\x44\x00\xcb\x8a\x93\xe5\xe9\xba\xdc\x40\x9a\x1a\x3d\xfd\x84\xcd\x22\xed\xad\x89\xc1\x31\x4d\x13\xa0\x6b\xc1\x34\x4c\x66\xca\xbe\x16\x14\x42\x22\xfd\xe5\xb3\xc0\x69\xab\x82\x9b\x08\x12\xa3\xa3\x0f\xcc\xa9\x73\xc8\x53\xf3\x81\x20\x83\x1c\x4d\x6b\x2f\x4b\xe6\x55\xc1\x31\x8c\xc0\xe1\xac\x66\xd8\x5c\x76\x59\x70\x01\xdb\x6a\x91\x51\x70\x4c\xff\x6c\x57\x04\x07\x52\x20\x6e\x9a\x60\xb3\x86\x65\x6f\xaf\xcf\x68\xdf\x84\xe9\x29\x4b\xb6\x77\xc8\xe5\x0c\x38\xbf\xa1\x20\xc4\xe6\x04\x96\x5a\x17\xc3\xc0\x39\x8a\x6c\xc0\x60\xd2\x17\x9d\xcb\x19\x81\x53\x01\x08\xd6\xd7\x03\xee\x56\x24\xc7\xaf\x62\xa8\x30\x81\xd4\x53\xb4\x4b\x49\x24\xc6\xee\x1b\x30\x3b\xf9\xbe\xea\x5c\x8e\x47\x5a\x3d\xd7\xb0\xa5\xc2\xd0\x2e\xe5\x40\xfd\x27\xc8\x75\x37\x38\xdd\x3d\xa4\x5d\x4e\x40\x1a\xde\x61\x73\x2d\xb3\xf5\xba\x15\xc1\x81\x8f\xd4\xfb\x29\x04\xe6\x7b\x87\x5c\xe2\x66\x41\x1b\x1f\x3c\x02\xce\x45\xd0\xbc\x2d\x5c\x07\x3f\x41\x3e\xd9\x9f\x6f\x1d\xf2\x56\x0c\x8e\xe1\xb1\x14\x03\x8b\xc2\x3b\xd5\x04\x17\x2b\x6c\x1e\x65\x79\xce\x09\x48\xb8\x2a\x39\x10\xb3\x6c\x00\x14\x76\x5c\xaf\xe4\x97\x45\x17\xa8\x32\x7d\xcf\x51\x25\xa3\xcd\xa0\x28\xf6\x2b\xa2\x73\x15\x2a\x49\xc5\x1a\x0e\x99\x4e\xbf\x2c\xba\xf1\x05\xe2\x60\x33\x2a\xd2\x6c\xee\x5c\x72\x39\x01\xe6\x9f\xcb\x08\x2a\x84\x86\xf9\x5e\x13\x1d\xc3\xfd\xf0\xb2\x00\xc5\x79\xdd\x2e\x4a\x3b\x88\x38\x47\x4d\x91\xc0\x8d\x8c\x3d\xaa\xbd\x7d\xd7\x2b\x0e\xde\x83\x27\xab\xf4\x84\x70\xed\xa3\x02\x6b\x1c\xf4\x68\x96\xeb\x72\xa4\x53\xde\xda\x02\x9e\xcb\xf2\x23\xe2\x35\xde\x77\x5e\xb9\x9c\xc1\xf9\x5a\xe0\x24\x4c\xc1\x4e\x49\x83\x52\x6e\x6d\x26\x5b\x34\xc0\xdb\x0e\xa2\x74\x5c\x95\x9d\x45\xcd\xcf\x14\x58\x88\xae\x73\xcc\x5b\x49\x78\x94\x30\x58\x42\x2f\x5a\x05\xd1\x2e\x27\xc0\x59\x71\xb0\x37\x64\x1d\xb4\xbe\xab\x94\xcb\x76\x08\xbf\x58\xee\xbc\x92\x96\x2f\x5d\x00\x28\x6a\xe3\x50\x6e\x66\x32\x36\x29\x2d\x5f\xba\x50\x69\xe9\xb8\xa8\x30\x8a\x4c\xbb\x2a\x39\xbb\x43\x59\x23\x64\x93\x52\xe7\x9a\xb7\x06\x01\x1c\x08\x44\xf5\x6a\x43\x98\xb4\x7c\xef\x3c\xbb\x0f\xd0\xe1\x09\xd8\xec\xb4\x7c\xed\xc6\x1d\x45\xb5\x0a\x19\x5b\x39\x75\x8e\x79\x27\x87\x40\xdb\x63\x29\x45\x9b\x14\xbf\x5c\x4c\xb0\x85\x6e\x84\x4d\x8c\xc6\x87\x1e\xc8\x8b\x77\x2e\x70\x7f\x8a\xc0\x5d\x58\x98\x2b\x25\x2f\xdf\xb9\xe0\x70\xe7\x3c\x14\x6d\x2d\xd6\xcc\xcb\x77\x8e\x8b\x36\xc6\xd3\x11\xe9\x39\x1a\x7a\x86\xf6\x56\x37\x91\x22\x70\x28\x25\x0b\x82\x67\x5e\x95\x1b\x27\x64\x2d\xe8\xf2\x1d\x1e\xae\xbc\x7c\xe3\x5c\x99\x78\x2a\x07\xda\x58\xc5\x25\x97\x13\x98\x0b\xd3\xc3\x5d\x76\x62\x0d\x9a\xe4\x2c\x16\xcb\xfc\xfd\x11\xb0\xad\xbc\x72\xe5\x6c\x40\x2d\x6b\x84\xd3\x9f\x6b\x05\xe9\xe2\xa5\x1b\xb7\x95\x68\x55\xd8\xf2\x43\x65\x4b\xe3\x8e\xb7\x7a\x06\x14\xb6\xa8\x5a\x77\xc8\xc2\x36\xde\xb8\x9c\xc1\x05\x0b\x1e\x1c\x8c\x46\x42\xc9\x55\xd9\xb1\xc5\x3b\x5e\x0c\xa6\xc0\x4f\xbd\x2b\xde\x42\x70\x4c\xed\xa2\x80\xb2\xb5\xe0\x7b\x4f\x5c\x8a\x23\x4c\x08\x2b\x0e\xdc\x08\x0f\x59\x95\x60\x45\x3f\xa2\xfa\x64\x93\x6b\x05\xed\xf2\xed\xb3\xcc\xc4\xeb\xb9\x4a\xc7\x54\x86\xea\xb5\x0b\x68\x61\x57\x73\x55\x20\x33\xdd\xcd\x47\x88\xcb\x98\x81\xc8\xde\x50\x4f\xa2\xd1\x09\xcb\xbe\xf5\xc3\xe5\xf8\x00\x85\x40\xda\x73\xf4\xc1\x6c\xeb\x87\xcb\xe1\x86\x6c\x1a\xd4\x94\xc6\x82\x84\x89\x10\x5e\x6e\x92\x4a\x91\x31\xc9\x81\x5e\xd7\xd0\xf9\xe1\x72\x3c\xf2\xbd\x16\x29\xa2\x68\x10\x42\x11\x62\xcb\x4d\x62\x82\x98\xde\xc0\xeb\x1c\x3c\x08\x30\xc5\x2e\xe6\x26\x43\x54\x10\x13\xa2\x3d\x65\x1a\x16\x31\x30\x37\x21\xaa\xec\xf0\xb8\xc0\xca\xb4\xa1\xf3\xc3\x73\x93\x97\xa0\x04\x6b\x46\xfe\xc3\x40\x0f\x98\x65\x71\x05\xd8\x71\xb0\x54\x92\x03\x9d\x8a\x59\x91\x97\x61\x08\x0f\xdd\x9f\x28\xf9\xe1\x34\x89\x25\xa4\x48\x1c\x02\xf5\x1e\x1a\xdf\xac\x88\x0c\x2f\xb5\x01\xc3\x4b\x1c\x44\x9d\xb7\x26\xb3\x88\xe2\x05\x03\x8e\x84\x10\x2b\xe5\xe3\xb2\xd0\x0c\xe0\x21\x64\xc7\x90\xcf\x55\x3a\x3f\xbc\x0d\xfc\x3a\x78\x40\xc4\xb8\xe7\x2b\x35\xc6\xa2\xd8\x7c\x41\x70\x1e\x5a\xdc\xc9\xce\x70\xba\xdc\x3c\x25\x7b\x23\xda\x61\xb9\xa8\xf8\xe1\x52\x0c\xb5\x04\x0e\x94\xbb\x91\xdb\x67\xd9\x65\xc1\x25\x50\x90\x6f\x10\x02\x8a\xcc\x1b\x6c\x57\x04\xe7\xb9\x8a\x11\x7b\x50\x04\xb7\x9c\x2a\xb9\x81\x69\x4a\x12\x77\x32\x2a\x9d\x1f\x2e\xe5\x80\x04\xb7\x41\xbd\x52\x30\xa0\x84\xb4\xcb\x82\x0b\x85\x6c\x5d\x8b\xf0\x86\x0f\x82\x9b\x5e\x15\x9c\x85\x59\x82\xe4\x8a\x2b\xa2\xd7\x9b\x2a\x38\xca\xd9\x52\x5a\xc9\xd2\xb5\xd6\xc8\xdf\xe4\x0c\x4b\x51\x84\x00\xa6\x28\x67\x44\x52\x79\x41\x0c\x4c\xda\x34\x3a\x69\x91\xd1\x69\x6e\x45\x70\x3b\x6d\x1d\xc1\x4f\xe0\x53\xe7\x87\xb7\x82\x60\x2e\x7e\x3a\xe0\x0e\x77\xce\x2d\x4b\x2e\xc2\x4f\x06\x47\x9e\x2f\xc2\xd1\x57\x25\x67\xc9\x03\xca\x14\xa1\xf5\x41\xc4\x1e\x54\xc1\x45\x94\x26\x20\x49\x59\x5d\x58\xb7\x2c\x38\x5f\xd0\xc8\x90\xc2\x4b\x4c\x4a\xd4\xfa\xe1\xed\xfd\x19\xf0\x58\xe7\x52\x41\x96\x9d\x1f\x9e\x9b\x94\x52\x44\x24\xd1\x21\x91\x3b\x74\x7e\x78\x2b\x06\xc3\xc5\xa7\xa3\xe9\x1a\xbc\x48\x42\xab\x82\xe3\x6e\x39\x26\xe2\x46\x18\xe1\xb9\x6b\x82\x8b\x9c\xab\x43\xe1\x30\xa1\x9c\x86\xce\x0f\xcf\x4d\xfe\xd0\xb8\x89\xdc\xdb\x3b\x91\xad\xd7\x44\x17\x0a\x33\x3f\x3a\x48\x42\xf1\xc3\xdb\x2b\x44\xf4\x72\x9e\xa6\x8d\x37\xc2\x76\x7e\x78\x7b\x85\x32\x4c\x0d\x03\xab\x51\x21\x67\x97\x13\x90\x50\x70\x19\x04\x81\x1e\xe9\x11\xbf\x26\x3a\x74\xbd\xf1\x70\x17\xd1\x29\xa9\xf1\xc3\xe5\x26\x25\x0e\x56\x0c\x28\x6b\x66\x46\x56\xe9\x87\xb7\xef\x7a\xe0\xb2\x51\x8f\xa0\xe2\x9c\xd0\x5c\x15\x1d\x77\x93\x33\x38\x56\x2e\x23\x24\x2f\xfd\xf0\xd6\x16\x40\x6b\x42\x3c\x8d\x8e\xfb\x44\x4a\x3f\x5c\xce\xe0\x04\x2b\x6e\xab\x63\xe3\x55\xfa\xe1\xb9\x49\x57\x19\x82\x41\x04\x44\x46\x4c\x8f\x60\x6f\x95\x59\x00\x69\x10\xe1\xfc\x8c\x68\xf8\xa6\xc9\xce\x25\xa0\xd1\x32\xca\x63\x62\x43\x79\xaf\xc9\xce\xd5\x14\x84\x03\xe4\xa5\xa4\xd6\x13\x6f\xf7\x15\x45\xc9\x53\x1d\x8b\xef\x33\xe4\x72\x97\x10\x9e\xa1\x06\x60\xd8\xa6\xd8\x77\x4b\x6b\xdf\xf7\xa9\x61\x9d\xa3\xd5\xa4\xd2\x79\xe2\xed\xad\xb0\x4c\xf3\x66\x4a\x6d\xa6\xdb\x7a\xe2\xad\x28\x12\x93\xbe\x1b\xb0\x6c\x84\x1e\xc0\x9e\x9b\x24\xa0\x87\xab\xe5\x18\xf4\x62\x3b\x57\x5c\x6e\x2d\xa4\x1d\x2a\x98\x68\xce\x10\xaf\x0a\xcf\x55\xf2\xd5\x94\x87\xbd\x02\xf4\x76\x5a\xb9\x77\x16\x6c\xad\x36\xe2\x9b\x05\xa8\x5c\xdf\x56\x30\xd0\xa3\x51\x8f\x0d\x82\x89\x5c\x15\x1d\x93\xe8\xfb\x34\xe1\xea\xfb\x6e\x69\xed\x43\x51\xb8\xfd\x97\x67\x32\xa1\xdc\xf9\xe2\xad\x85\x3c\x30\x5d\x99\xe7\x42\xbc\xbe\x96\xbc\x15\x44\xe6\x42\x6a\x6a\x34\xc9\x6c\x08\x79\xf9\xde\x31\x5c\x61\x63\x32\x68\x17\x65\x48\x41\x95\x1d\x58\x5d\x36\x11\x1c\x44\x70\x7d\xf3\xf2\xc5\xb3\xb0\x50\x3c\x6a\x3b\x05\x29\xbc\x2e\x3a\x54\x35\x1b\x0f\xb3\x71\x40\xe4\x48\x3a\xe3\x52\x14\xc0\xe2\x6e\x22\xd7\x2b\x47\x89\x3c\xd7\xa4\xe7\x2b\x03\x09\xbc\x72\xe3\x25\x7f\x9a\x2a\x3e\x6e\x3e\x13\x2c\x6c\x78\x5b\xbb\x3e\x2d\x5f\x3d\x6f\x11\x4b\xf1\x91\xac\x1b\x33\x54\xea\xab\xe5\xbb\xe7\x90\xc6\xa4\x68\x1e\x39\x8f\x62\xf1\xaa\x00\x03\xd7\x2f\x01\x80\xe0\x64\xfa\x5d\x15\x20\x23\x2e\x0c\x98\x89\x07\x19\xed\x50\x45\xc8\x00\x2c\xee\xbc\xe8\x6a\x15\xec\xda\x05\x04\x0f\x33\xd7\x8e\xc4\x1e\xa3\xde\x08\x94\x9a\x00\x11\x9d\x2f\x18\xd8\xfb\x2e\xe5\xcd\x04\x0f\x5e\x0a\xba\x7d\x99\x83\xcf\x42\x7a\xcd\xf8\x81\xb9\xb8\x46\xf3\x1a\x1d\x88\xba\x86\x69\xf3\xf1\x29\x02\x05\x0f\xbf\x28\xe5\x39\xd5\xb9\x57\x27\x18\x60\x3b\x41\x2a\x96\x1c\x52\x75\x42\x6e\x72\x42\x04\x20\xdf\x01\xb9\x19\xc3\xbc\xba\x3e\x69\xbf\x10\xe0\x36\x7a\x94\x24\x87\x8c\xb3\x21\xf6\xbe\x99\x30\x41\x06\x08\x98\x67\xe1\x47\xc9\x3f\xdd\x94\x81\xa0\x83\x5b\x04\x9a\x1f\x2d\xcc\xbb\xc6\x69\xcd\x45\x74\x68\xc6\x39\xee\x56\x8e\x82\x95\x5c\x17\x1c\x77\xa4\x04\x66\x22\x4b\x34\xb9\x2a\xba\x94\x00\x48\xa4\xf7\x2b\x25\xad\x8c\xbc\x99\x80\x2b\x8a\xb8\x59\xb2\x35\x38\xb7\x2c\xbb\x08\x22\x6d\x0e\xea\xc7\x24\x5a\x8b\xeb\xc2\x43\x46\xc6\x96\x5a\x0d\x10\x7a\x36\xf6\x46\x18\xa8\x9e\xf5\xa0\x3c\x0b\x6a\x86\xbc\x11\x46\x06\x6b\x18\x85\xaa\x09\x69\xa1\x76\x50\x13\x53\x90\x1c\xe7\xce\x46\x9e\xc9\x05\xed\x8a\xfc\x98\xe1\xd3\xc0\x76\xce\x46\xd0\x9a\xab\x02\x4c\xdc\x70\x36\x91\x95\x93\xb8\xc8\xc5\xae\x09\xd0\xd5\xaa\xd5\x51\x43\x25\xee\xbf\x60\x57\x24\x18\x51\xdf\xc6\x95\xf1\x49\x94\x7b\xeb\x12\xe4\xd6\xe7\x48\x14\x45\x2b\x52\xf7\xaa\x04\x99\x4a\x9b\x69\x9c\x60\x00\xf4\x9d\xd4\xc4\x0c\x60\xc2\x1c\xea\x63\x3c\x17\x0f\xda\x35\x09\x82\x27\x79\x14\x24\x82\x32\x45\x01\xaf\x37\x53\x2c\x38\xfd\xb8\xa3\x22\x33\x3f\xb9\x65\x09\xa6\x4a\x8f\x0d\xe2\xe7\xe4\x11\x8f\x71\x6b\x12\x64\xe3\xdc\x20\x32\x83\xc5\xf6\xed\xd4\xc4\x14\x66\x31\x06\x13\x6c\x94\x8c\x71\xba\x08\x23\xd3\x94\x8d\x2a\xa8\x86\x27\xdd\x9a\x08\x11\xae\xc3\x72\x42\x14\x4c\xf3\xba\x04\x11\x88\x46\xfe\x94\xcc\xab\xbe\xc0\xbc\xd9\x5c\xee\xd4\x01\x03\x7d\xb4\x5a\x7b\x10\x7b\x33\x03\x47\x97\x9b\x98\x3a\xc9\x05\xaf\x4b\xd0\x15\x64\x4e\xb8\x85\xba\x13\x8c\xe2\x0b\xe2\x88\x71\x97\x2b\x8b\x49\x30\xbb\xe9\x12\xac\xc0\xc6\x44\xce\x71\x94\x3f\xa2\x4a\x30\x72\xa3\x19\xae\x4f\x09\x5c\x95\xe3\xd7\x44\x68\x6b\x0c\x9e\x40\x2b\x01\xd1\x47\xbf\x22\x43\xa6\xbd\x42\xbb\x33\x74\x80\xec\x3b\xaa\x35\x77\x8a\x01\x2e\x9e\x73\x49\x46\xe9\xa8\xd6\xde\x29\xb0\xff\x06\x5c\x46\x05\xcf\xde\xd5\x36\x66\x0c\xb5\xa8\x5f\x9a\xbb\xf9\x0b\x32\x04\x19\x8f\x67\xef\x32\x23\x36\x2d\xdc\xf6\x66\xab\x12\x33\xff\x82\x01\x28\xb4\xee\xa5\x36\xc5\x4f\x2c\xd4\x06\xb1\x2f\xef\x94\x8e\x6a\x62\x0a\x47\xcb\xec\x00\x80\x45\xd1\x4a\xcf\x3b\xa3\xc1\xa6\x1d\xdb\xb7\x0f\xd0\x5a\xd2\x75\x6f\xa6\x70\x61\x2d\xaa\x33\xe1\xae\xf4\x3d\xd5\xc4\x0e\xe3\x49\x70\x68\x7b\x16\x84\xb3\xaf\x0b\x11\x1d\x13\x50\x9c\x33\x55\x88\x49\xf3\xb6\x97\x08\x6a\x6d\xc6\x65\x58\x6e\x1c\xdd\x7c\x4d\x33\x85\xca\x66\xa8\x0d\x5b\x06\xb2\x26\xf4\x2d\xd5\x1a\x0d\x34\x70\xff\x26\xea\x99\xc9\xc0\xa3\xb4\x72\x11\x43\x42\x0e\xda\x45\xba\xc3\xde\x0a\x7f\x5c\x15\x62\xa8\x9d\xce\x41\x69\xe0\x8a\xc6\x0c\xd7\x19\x72\x99\x79\xd4\x07\x70\x0e\xe5\x9e\x19\xae\x33\x1e\x2c\x73\xc2\x99\x84\xae\x31\x5e\xe9\xa9\xd6\xe8\xba\x01\x72\x77\x70\x9d\x7d\xdf\xf6\xbc\xd9\xe1\xc4\xd5\x0c\xa6\x47\x1e\xe8\x52\x04\xa3\x9a\x81\xbb\x6d\x02\xc0\x3b\x69\xed\x2a\x5a\xa0\xc1\xac\xaf\x9c\xbd\xb6\x73\xe5\x7b\xe0\x34\xf9\xf2\x8c\xa3\x90\x29\x6c\x5d\x8a\x16\xf1\x0b\x8f\xc6\xd3\x8e\xfb\x77\xe5\x95\xab\xe8\x0b\x10\xd9\x9e\x1b\xb2\x16\xc1\x5b\xae\x4a\xd1\x47\x2e\x25\x88\xb0\x3c\xa2\x68\x0f\xa7\x4b\x91\x09\xbe\x2d\x90\x58\x96\x5f\xac\xbc\x72\x17\x47\x93\x81\x0b\x97\x99\x98\xca\xf6\x9c\xed\xcd\x14\x57\xe9\xfd\x0b\xb0\x1a\xae\x77\xe9\x3b\xa1\x50\x68\x0c\xde\x14\x72\x15\x79\xed\x2e\xa2\xa6\x93\x08\x94\x08\xff\xe8\x7a\x9f\xbe\x11\x09\xfe\xb1\xe1\xae\x47\x35\xe8\xdd\x38\xf5\x9d\x1a\xa2\xf7\x2a\xf2\x6f\x7a\x80\x98\x1a\xaf\xbe\x99\x83\xbf\xbf\x09\x08\x4b\x5b\x2b\xdb\xa3\xe9\x82\x9c\x1d\x17\x00\xe3\xbc\xc2\x0c\xd7\x5b\x05\x01\xd1\x1f\xca\x24\x45\x95\x19\xae\x99\x53\xc9\x11\x98\xd2\xcb\xa0\x63\x4a\xe3\xdb\x37\x73\xb8\xff\x9a\x29\x4c\xc9\xe4\x14\xc4\x7b\x23\x1b\x00\x31\x36\x4c\xbe\x29\xfb\xd0\x2d\x88\xd3\xcd\xfe\x65\xd8\x76\x8d\xd0\xc5\x86\x67\xb8\x63\x2c\x50\x33\x27\x62\xd3\x7a\x7b\xa5\x42\xd6\x83\x07\xca\xc0\x21\x24\x2a\x46\xc8\xe1\x81\x84\x50\x60\x05\xfb\xb9\x17\xed\x95\xe1\x11\x97\xd0\x82\xee\x7c\x13\xe7\x69\xea\xa4\x8c\x0f\xc8\x1e\xc3\x95\xa2\xf1\xbd\x0f\x2d\x26\x30\xb7\x4d\xf4\x5c\xde\x22\x48\xcc\xf4\xe5\x26\x66\xb3\xc7\x07\x99\xbe\xde\x5b\x4e\x00\x4a\x85\x23\x2b\x49\x8c\x57\x37\x08\x19\xb0\x88\x64\x78\x16\x69\x76\x75\x87\x60\x29\x98\x0c\x37\xaf\xd4\x3e\x7e\xcb\x5b\x34\x00\x2f\x3d\x80\x82\xb5\xd4\x6a\x96\xe5\x3d\x72\x40\x4a\x45\xa6\x2f\x89\xc2\x2f\xd2\x97\x1c\xb8\xd9\x13\xd7\xa5\x98\xd0\x79\xa9\x72\x86\x9b\x1a\x56\x05\xce\x52\x99\xce\x4b\x95\xcb\x46\x55\xd5\xae\x8a\x7b\x8e\x6b\x56\xf7\xc9\xe0\x45\xe2\x88\xbc\xb1\xc2\xad\xd5\x36\xca\xa3\xb4\xc1\x45\x4e\xb6\x39\x18\x31\xaa\x5e\xaa\x3b\x95\x28\xea\x11\xd2\xb4\xf2\x94\x5a\x6f\xa2\x5b\x06\xd3\xce\x0c\xdc\x3f\x27\xda\xce\x9b\x68\xaf\x84\xc7\x51\x82\x4f\x51\x90\x7c\xf1\x2b\x7b\xe5\xb8\xfb\x08\x43\xf6\x0a\x9e\x25\x8d\x7b\x63\xe7\x82\x53\x7c\x81\x89\x54\x07\xa8\x25\x0d\x91\x54\xf7\x0a\xdd\xb7\x6c\xc6\xbd\xb6\x83\x20\xa3\xd2\xf7\x0a\x45\x9f\x8c\x79\x1d\x57\x1e\x72\x6b\xf0\xc9\x8f\xca\x5c\xde\xc6\xfc\x23\xce\x34\xc5\x77\xea\x3a\xc0\xf1\x92\x99\x15\x94\xbd\x89\xb4\xbc\x59\x95\x45\xd6\x38\x26\xa0\xe5\x9e\x95\x69\x79\xb7\x46\xbf\x03\x50\x37\x10\x6a\x32\x32\x50\x83\x56\xd5\xb5\x23\xd1\x81\xf6\x13\xe8\x6f\x1b\x7a\xcb\x4a\x4c\xb1\x70\x6e\x9c\xe3\xa0\xee\x20\xa1\x5f\xda\x67\xa5\xa9\x6e\x2b\x70\xcf\x52\xaf\x3c\xca\x72\x4e\x60\x56\x5b\x66\x3a\xf3\xdc\x4e\xb3\x79\x94\x5b\xd9\x0f\x6c\xee\xfa\x95\x9e\xa5\xed\x45\xa9\xc5\x74\x14\x90\x5c\xe8\x3f\x2a\x77\x20\xa3\x0c\x1c\x01\x74\x6f\x74\xf2\x15\x39\xc5\x54\xcc\x2c\x36\xad\x60\x9f\xe7\x23\x1b\x80\x11\x3c\x9d\x0d\x18\x27\xbd\xec\xae\xa1\x8c\x4f\x19\xec\xa9\x30\x11\x61\x21\x8a\x01\xcd\x70\x4f\x7e\x47\x86\x51\x81\x6a\x0f\xb1\x49\xa6\xbd\xea\xd5\x54\x77\x3b\xc2\x36\xb1\x43\xa6\x3d\xbc\x81\x89\x36\x40\xd8\x96\xfb\x16\x9e\x0d\x03\x28\xf0\x71\x91\xa0\x1c\x7b\x83\x60\xd8\x54\x57\x50\x18\xbf\x4c\x19\xab\xa1\xc1\x1f\x69\x13\x02\xa9\xcf\xa1\x62\x1c\x73\xdf\xc6\xb3\x99\x40\x25\x89\x7b\x91\xb9\x8f\x2b\xbd\xee\xca\x2e\x61\xf7\x0d\xfb\x76\x5e\x30\xa4\xe8\xdb\x84\x26\x9e\x0e\x35\xde\x9b\x20\x70\x5a\xfa\x3e\x39\xf4\x50\x8d\x03\x2b\x12\xf1\xa4\x2d\xac\x9b\x5b\xf9\x51\xf6\xde\x21\xff\xd4\x46\x6a\xc5\x8c\x4a\x71\x8e\x76\x78\xcc\x55\xd3\x46\x6a\xc5\xca\xb9\x73\x39\xbe\x89\x89\xb5\xda\xb8\xab\x98\x80\x8a\x1b\xe3\x6b\xd3\xc0\xd0\x13\x80\x34\xe7\x83\x7d\xac\x50\xed\x91\x90\xb4\x98\x68\x73\xb7\x2d\x62\x82\x0e\x7c\x29\xa5\xc3\xbf\x34\x5f\x55\xa6\xd2\xaf\xc8\xff\xb4\x3d\x02\xa6\x99\x83\xa2\xdc\x4d\x9e\x28\x1c\xe7\xed\x12\xf4\xdd\xb2\xdc\x49\x8b\xf3\xe5\xcc\xd3\xd7\x06\xc8\xc4\x41\x81\x3a\xac\x3c\x64\x5e\x2c\x45\xdf\x2f\x87\x18\x54\xe2\x87\x27\x08\x0b\x60\x61\xc3\x2c\xb8\x37\x12\x6c\x68\xe3\xe1\x9c\xa6\xe5\x1d\x0b\xdc\x36\xd0\x7a\x66\x09\xe3\xb6\x06\x6d\xec\xa3\x59\x0b\x4a\x72\xb9\xf4\xd7\x46\x38\x8e\x6d\xf0\xa3\xd1\x27\x64\x16\x9b\x4a\xaf\xc6\xbd\x68\xda\x50\x86\xd8\x81\xc8\x9d\xb8\xb8\xba\x28\xe1\x05\x69\x03\x13\x62\x03\x02\x78\x4d\x6a\x64\x35\x09\x2a\x01\x7d\xd3\x6c\x04\x6c\xa3\xf6\xd6\x8a\xb5\xe8\x71\x79\xd7\x7c\xe2\xc6\x58\x91\xfb\x8a\x35\x0d\xb2\xd4\x6d\xf3\x5c\x34\xc8\x42\x22\xe8\xb5\xea\xa6\x8a\x49\x28\xac\x24\xd2\x0c\xfe\x25\xf1\x5a\xab\x1b\x37\x1a\x8f\x01\x51\xe2\xc2\xfd\xd2\x93\x92\x1c\x6e\xb6\x81\x2b\x81\x86\xa9\xf3\x9d\x0a\xbc\x6e\x26\x21\xf9\x69\xd0\x58\x69\xe3\x04\xc9\x98\x1c\x89\x7f\x64\x66\x2f\x03\xcb\x98\x19\xe6\x55\xc4\x46\x9b\x90\x12\xc5\x28\xe0\x8d\x15\xbc\xd4\xda\xb8\xdd\xbb\x68\xd0\x2e\x1b\x85\xd9\x1d\x96\xda\xb6\x97\x3f\x82\x0f\x13\x98\x86\xa1\x73\x0a\x6d\x7b\x8c\x5d\x98\x02\x01\x0e\x06\x9d\xdc\x20\x39\xc1\x23\xd8\x17\x29\xb2\xb4\xe7\xab\x57\xbe\xb8\x3f\x29\x73\x88\x81\x2c\x2d\xe6\xda\x50\x8f\xd3\x6e\xc1\x85\xda\x3c\x0f\xd4\xac\x7a\x9e\x8e\xd4\x37\xc8\x70\x0b\xef\xf1\x64\xf8\x6a\x93\xad\xec\x10\x1a\x6c\x18\x66\x88\xaa\xc4\x00\x2b\x5b\x04\x54\x86\x83\x69\xb2\x19\x6a\xa3\xf6\x95\x4d\x72\x8c\x45\x2e\xdc\x32\x74\x5e\x4d\xab\xae\x01\xae\x3f\xba\xe1\x36\x6d\x9b\xf4\x4d\xe2\x3e\x49\x80\xf1\x1a\xf1\x03\xea\x3f\x22\xc4\x80\x9c\x9c\xec\x6a\xa5\xef\x12\x08\x55\x8d\xe3\x8e\x2f\x38\x78\x76\x65\x9b\x3c\x25\x30\x88\x86\x8d\xa9\x5e\xcd\x62\x0f\xe7\xd9\xb5\xe6\x94\x25\x16\x33\x07\x52\x2e\xac\xc2\x85\x19\xeb\x49\x10\xb4\x47\xea\x4e\x45\x46\xbb\x80\x02\x74\x13\x05\xba\x53\xdf\x2a\xee\x49\x80\x6a\x8a\x4d\x12\xbd\x7d\xd4\x89\x01\x9d\xc9\xb9\x5f\xa6\xcc\x47\xe9\x7b\xe5\xd0\x54\x34\x72\x81\xd5\x20\xd8\x98\x16\x36\x0b\x38\x2d\xcf\x11\x04\xc3\xf6\xa2\xea\x0e\xf0\x67\x25\xee\xbe\xca\x9d\xbe\x8d\x0c\xd0\xab\xdb\x15\x3c\x22\x8f\xd6\xb2\x63\x4c\xff\x79\xa1\x73\x6b\x9d\xc3\x3d\xd3\x0c\x13\xfe\x55\x52\xba\xb4\xb2\x65\x3e\x60\x19\x4c\x49\x60\xf9\x80\xa5\x95\x4d\x73\xb0\x38\x0c\x7b\x39\x96\xc3\x14\x69\x6d\xd3\x6c\x84\x8d\x36\xb0\x51\xc0\x81\x0a\xdd\x23\xe2\x2f\x8b\x13\x0f\x08\x19\x05\xce\x48\x9f\x4d\xdd\x36\xee\x10\xc4\xbd\x35\xd1\xc5\x54\x79\x0a\x9b\x49\xdc\xc8\x9b\xbb\xeb\x4d\x7d\x4c\x9b\xa7\xb0\xd9\x85\xc8\xf5\xad\x95\x7a\xa4\x69\x1a\xaa\x0b\x8a\xcb\x4f\x6b\x27\x57\x2b\xe3\xc9\x0b\x5f\xc9\x3d\x09\x3c\x5f\x68\x4e\x58\xcc\x77\xae\x81\x55\x73\x2e\x17\xe9\x0a\xcb\x49\x27\xb1\x6b\x4d\x3d\x74\xe4\x52\x74\x0a\x64\xba\x39\x41\x86\xaa\x9b\x92\x25\x37\x17\x29\xcd\x0a\x41\x16\x03\xe5\xf8\x08\x9f\xd2\x94\xda\x5c\x61\x70\x0b\x9d\x2d\x66\x27\xd9\x4d\x34\xab\xb5\x59\xb5\xdc\x24\x39\x83\x1b\xd8\x44\x03\x5e\x0a\x27\xca\x54\xd4\x35\xf0\xa5\x8c\x15\x6d\xa9\x3c\x88\xcd\x0c\xc7\x6d\xa7\x6a\xf6\xcf\xf4\x2c\x1c\x5d\x9d\x39\x15\xf7\x83\xe5\x3e\x0b\xe2\x4d\x7d\xa3\xc0\xc2\x6b\x02\x92\x5a\x5e\x40\x7a\xd4\x9d\xf2\x1c\x64\x84\x31\x6f\x06\x41\x0d\xa2\x6f\x95\x03\x41\x29\xf7\x95\x2b\xcb\xdd\x21\x76\xeb\x2e\xd0\xa7\x96\x39\x38\x7b\x40\x4f\xb7\xee\x08\xcd\xcd\x88\xea\xe5\xf6\x10\x75\xe1\x48\x2a\x83\xc7\xc6\x78\x01\xb6\x51\x77\x2a\x4c\x9d\x24\x09\x4a\x3d\x08\x6e\x4c\x7d\xa7\xb8\xed\xa9\xe3\x16\xf0\xa6\x2c\x36\x64\xd8\x3d\x8b\x03\xf3\xad\xd0\xab\xd2\x77\xc8\xef\x16\x81\xc8\x0c\xc2\xb1\x05\xf5\x64\x7e\x65\xa3\xa2\xe7\x98\x2a\x75\x9b\x42\xbb\x8b\x05\x7a\xff\x9d\x3d\x50\xc0\xd7\x34\xd0\x0d\x34\x8b\x7c\xfd\x75\xa3\x1c\x69\x42\x4f\x16\x90\x43\xac\xde\xaf\x6d\x13\x82\xfb\xd6\x83\x3a\x9c\x9f\x10\xbf\xba\x4f\xc8\x58\xa2\x36\x8c\x42\x3a\x4b\xc4\xec\xbb\x77\xba\x30\xe6\x9c\xa3\x1b\xbe\xaf\x30\xef\x96\xe1\x39\x82\xc7\x8d\xfb\x5c\x5f\x62\xde\x4c\x19\xa6\x37\xcd\x83\xff\x76\xde\x36\x4c\xdd\x2c\xef\xb9\x2c\x61\xe2\xd7\x4f\x7d\xc6\xba\x59\x3c\x71\xb4\xec\xed\xe2\x03\x79\x58\x64\x41\xdf\x3d\x86\xf4\x0f\x7e\xa6\x8d\x47\x5e\xbc\xc3\x98\x0c\xe2\x99\x26\xb3\xc9\xef\xfa\xe4\x7b\xa5\x40\xb8\x99\xe4\x38\xa3\xcc\xe1\x9a\xf1\xea\x2a\x8f\x61\xa7\x48\x2d\xbb\x76\xf0\xab\x4b\xed\x96\xbb\xb2\x6f\xe3\x73\x1b\x76\x3d\x12\xa8\xa9\x9b\x92\x58\x6c\xb6\x01\x45\x2f\x9b\x34\x75\x5c\x4b\x61\x99\xaa\x7a\xa7\x3d\x8a\x65\x36\x45\x70\x77\xb5\xd1\xd2\x86\x75\x20\x83\x45\x0d\x1d\xfd\x83\x80\xe9\xaa\xce\x46\xf2\x5c\x0e\xe6\x40\x12\x6b\xdc\x02\x37\xd6\xce\x03\x40\xe1\x5f\x00\xbc\x27\x77\xcd\x9a\xe5\xf8\x08\x93\xd3\x70\xfd\x18\xa7\x91\xc4\xc8\xd4\x1d\xe3\x34\xd5\x55\x3b\x8b\x08\xb9\xdc\xa3\xee\x1a\x24\x00\xb2\x02\x78\x34\x52\x5e\xe0\xa3\x9a\xb9\x3d\x7e\x4a\xd7\x7b\xa6\xec\x31\x6b\xbb\x64\xb8\x2c\x00\xb5\x5a\x41\xf0\x3f\xa9\xfb\x34\xba\x0c\x79\xaa\xbd\xb2\x82\xff\x49\xdf\x28\xa6\x60\x84\xe4\x5c\x14\x61\x59\x75\xa7\x3c\x12\x8c\x0e\xb8\x34\x9b\x05\x0f\x97\xbe\x55\xec\x4c\x86\x40\xb9\x52\xeb\xa1\xb2\xed\xca\x56\x55\x1a\x3f\x88\xdd\x7b\x81\xf2\x54\xf7\x2a\x66\xa8\x6c\xa0\x86\x3c\x7b\xba\x76\x6d\xaf\x02\x3b\x0a\xe8\x5b\x93\x45\xe9\xa6\xba\x59\x8c\x1a\x42\xef\x6c\x82\x9b\xf4\x6e\x62\xb3\x59\xf0\x92\x1c\x2c\x0e\x4b\x69\xfc\x25\xd6\xa5\x99\xc9\x8b\x62\x55\x62\xa5\x90\x09\xb4\x85\x75\x58\xee\x75\x51\x50\xe5\x35\x6f\x2f\xa3\x6f\x96\x65\x94\x91\xa7\xb0\x94\x33\xa2\xe6\x4e\xdd\xad\x4a\xb4\x4a\xd8\x35\xa2\x45\xe9\x63\xa6\xcd\x0c\x8b\x08\x28\x96\xae\x42\x04\x53\xab\x14\xc7\xeb\x6d\x11\x9e\x35\x51\xb8\xa2\x0b\x9b\x65\x51\xb6\x4e\xd8\x64\x42\x5a\x74\x64\xa8\xcd\x47\x79\x0e\xc3\x7b\x94\x83\xe4\xa6\x26\x49\x9b\x62\xb8\xf3\xfe\x00\x9d\x12\x71\x7c\xd3\xca\x66\x79\xde\x2c\xcb\xfc\x34\x1e\x4e\x55\x5a\xd9\x2d\xef\x76\xce\x3e\x19\x8c\xa9\x4f\x1d\x36\x6b\xf7\x1c\x34\xa2\x13\x26\x92\xa6\x0b\xee\x11\xa2\xab\xb6\xe6\xca\x65\xf7\x41\xf5\xa3\x18\x0d\x11\x50\x03\xea\x6b\x30\x68\x65\xb7\x3c\xf7\x44\xf0\xc8\x00\x5b\xe0\x16\x9b\xc7\xb0\xd3\xa4\x86\xf3\x85\x44\x3a\x23\xbd\x56\x75\xb7\x1c\x43\x0a\x9c\xe5\x6e\x92\x92\x8a\x53\x77\xac\x13\xbc\x56\xc3\x99\xd3\x24\xd1\x4c\x8b\x2e\x65\x26\x74\x4d\x62\xe6\xf0\x18\x17\x0a\x62\x76\x5e\x5e\x66\x76\x9b\x4c\x4e\xa2\xb5\x4b\x15\x31\x3b\xcb\xdf\x83\x1e\xde\x72\x01\x8b\x92\x3c\x94\xd7\x17\x55\x46\x81\x94\x63\xe2\x2e\x92\x62\xb7\xda\x09\x00\x22\x9a\x0c\x7b\xd6\xcd\x13\x8e\x7a\x44\xc1\x17\xac\x1b\xf5\xd4\x81\x19\x45\xe5\xd0\xde\xc2\xf1\xc8\xce\x53\x11\xc3\x00\xee\x63\xb5\x08\x65\xb7\x72\x8a\xeb\x81\xe0\x27\x05\x0d\x43\xd3\x9f\x9c\x00\x56\x30\xea\xbc\x65\xa0\xeb\xf4\x32\x94\xba\x78\x50\x61\x00\x39\x14\x93\x88\xe1\xea\xdb\x15\x4a\x2d\x2f\x33\xc0\xf4\xcf\x99\x1d\x17\xf6\x0b\xfd\xae\x5c\x00\x9e\x34\x8a\x86\x83\x0b\x1b\xe6\x40\x36\x1c\x3c\xaa\x93\xa3\xc0\xba\x2c\xad\x3e\x31\x5b\xeb\x68\x41\xa7\x41\x14\x71\xe8\x3b\x16\x19\x5d\x87\x64\x5c\x8c\x70\x4e\xec\xea\x8e\x81\xab\x7c\x03\x16\x8b\x68\xb5\x97\xb1\xdd\x32\xb4\xa3\x34\xe8\x5d\x1e\xfc\x5a\x59\xc6\xce\xda\xe6\x86\xa3\x01\xad\xbf\xad\x9a\x51\x94\x5b\x86\x52\x55\x6e\x0b\xe1\x2c\xcc\x15\x15\xa4\x3f\x73\xfe\x6a\xb6\xcb\x56\xa4\xfb\x12\x4a\x7f\x77\x5d\x86\x9a\xed\x02\xd1\x84\x5d\x86\xe9\xcf\x6c\x03\xe6\x2a\xce\xa0\xad\x9c\x77\x55\x5f\xd8\x34\x54\x74\xa3\x3a\x1d\x41\xb5\x25\x10\xfd\x6e\xf3\x6b\xf3\x48\x78\xd9\x46\xf1\x1b\xdb\x3d\xc3\xe3\xe8\x0a\xe8\xdb\x1c\x4e\xb3\x8a\xa7\xde\xb9\x81\x35\x89\x34\xf0\x4c\xbf\x08\xa8\x9e\x19\xd0\x15\xf4\x62\x51\x7d\xdd\x47\x52\xdb\xd5\x30\xd8\xd9\x02\x04\xe2\xbc\xf0\x50\xf5\x3d\xf3\x96\xb5\x38\x98\x4b\x2d\x57\xf8\xe9\x70\xe7\xba\x03\x8e\x21\x92\x14\xf6\x91\xdd\xc3\x96\xa2\x82\x01\x66\xbd\xa9\xe5\xb5\x82\x29\x4a\xff\x32\x87\x94\x49\x40\x56\xd1\x4e\xa5\x62\x6b\xdb\x86\xba\x7f\x2a\x4f\x0d\xa0\x05\xf2\x7e\x19\xfb\xba\x8b\x2d\x05\x2e\x62\x26\xb5\x5e\x64\x9f\x27\x7d\xe3\x1c\x53\xec\x39\x80\x94\x8c\x5b\x45\xa5\xee\xde\x4c\xc3\x84\xfc\xc1\x52\x47\x12\xad\x82\xb4\x8f\xa8\x26\x80\xf8\x3c\x3a\xf3\xb5\x4f\xa6\xf8\xcc\x88\x3a\x20\xfc\xcb\x86\x19\x07\xc4\xdf\x93\xc3\xd1\x27\x93\x6f\x9b\xa0\x2b\xd2\x82\x46\x01\x57\xd8\x24\xd8\x3c\x01\x09\x65\xb1\x64\x31\xde\x73\x7b\x9d\x88\xd0\x44\x98\xb7\x13\x56\x43\x07\x0e\x99\xf7\x50\xd5\x0c\x6e\x97\x5d\x5e\xae\xaf\xf9\x16\x8f\x9e\x53\x73\xdd\xaa\x2d\x38\xa0\x85\x1d\x48\x0d\x36\x45\xf8\x1c\xea\x8a\xd1\x64\xd2\x20\xe5\x4a\xfa\x28\x2f\xe0\x1b\x77\xca\x29\x1a\x40\x90\x59\x83\x95\x45\x7c\x63\x5d\xf5\x80\x04\x24\x58\x19\x36\x05\x71\x5d\x05\xde\x38\x5b\x04\xda\x09\x02\x42\x19\x10\x8c\xd1\xb0\x8a\x75\x86\xad\x84\xee\x96\xa3\x7d\xb6\xd7\xa7\x72\x19\xa0\x36\xe1\xe2\x7b\x93\x44\xdb\x4f\x6d\xdd\xa3\xa7\xc5\xfe\x28\xff\x44\x56\xda\x5a\x8a\x29\x16\xac\x90\x9e\x51\x4c\x26\x08\x8e\x05\xed\xa3\x32\xb3\x9a\x15\xa6\x62\x94\xc4\x90\xda\xca\xbd\xdf\x51\xb2\x57\xc2\xb6\x1e\x6b\x21\x57\xc2\x81\x31\xcb\x7d\xcc\x13\x6c\x48\x0d\x78\xb8\x13\x20\x71\x60\x55\xc8\x5e\x54\x91\x16\x72\xed\x54\x88\x4c\x40\x03\x86\x9a\xb8\x9e\xfe\xbe\xfd\xac\xc4\x65\x10\x00\x4b\x4d\xcd\xad\x97\x57\xef\xc0\xe9\xb7\xe1\x82\xec\x09\x93\xa0\x82\x08\xeb\x1c\x83\x08\xa7\x71\x8c\xb2\x08\xb5\x12\x78\x79\x03\x2c\x68\x75\x19\x4f\xee\xbc\xa4\xcc\x57\x37\xc0\x70\xb9\x71\x60\x00\x88\x9d\xa3\x1f\xa4\x56\xe7\xbb\x0e\x7b\x7b\x03\xbf\x96\x79\xa9\x5b\x55\x39\x1f\x8f\x16\x2e\x00\xb4\x44\x85\xd1\x5d\x0e\x0f\xe8\x28\x6d\x22\xf3\xde\xf6\x31\x2e\x39\x9e\x8b\x22\x1d\x3a\x64\x31\x29\xab\xaa\xc1\x77\xba\x8d\x48\xe7\x2c\x97\x89\xf9\x2e\x87\x61\x3b\xdd\xcc\x7c\x22\x03\xfd\x40\x6f\x69\x36\x2b\x48\x6c\x00\x79\x7a\x01\x6c\x9f\x8f\x68\xc6\xe3\x65\x31\xa0\xe2\xd8\x18\x38\xc9\x4b\x4e\xe5\xb0\xf3\x2d\x2d\x7a\x26\x6f\x5c\x93\x56\x51\x57\xcd\xba\x8d\x99\x0c\xad\x30\xcb\x96\x56\x11\xa6\x1e\x0a\xa3\x6a\x9f\xe3\xc9\xf4\x85\x23\x15\x51\x5f\x81\x28\xea\x40\xd5\xa5\x7b\x3a\x0f\xa3\xcf\xc7\x25\x3f\x61\x29\xeb\xbe\xd3\x6e\xb6\x4c\xb7\x76\xc3\x36\xc2\x82\x51\x35\x69\x37\x2a\xbd\x42\x25\xc7\x46\xf2\xb5\xa8\x1f\x95\x58\xe1\x58\xae\x5e\x89\xf0\xdd\x75\x18\xc0\x74\x0a\x3d\xf7\xed\x82\xda\x4d\xc2\x82\x53\x17\xef\x18\xdd\x17\x18\x41\x90\xa1\x7a\xf4\x28\x12\xff\x1b\x68\x5b\x0c\x37\x6d\x40\x33\xe8\xa5\xfc\xf9\x4e\xc3\x19\xd0\xc8\xe0\xe9\x9c\x1c\xbf\xe5\x1d\x70\x40\x5e\x12\x29\x2f\x2b\xeb\x61\x39\x15\xbe\xd3\x71\x96\xfb\x9a\x56\xed\x1b\x15\xc6\xcf\xee\x58\xc6\x32\xc7\x1d\xb0\x85\xbd\x18\x9d\x1e\x86\x6a\xed\x53\x47\x62\xc7\x73\x34\x03\xce\xaa\x7a\xae\x46\x9f\xf9\x74\x2a\x1a\xb1\xde\xfb\xc8\x1a\x11\x45\x9e\x66\x8e\x96\xee\xae\xe3\x80\xa8\x33\x02\x18\x0e\xb6\x59\xdf\x4c\xd2\xb7\x9a\x6e\x40\xfd\x21\x65\xb8\x3d\x42\x0b\x62\xdd\xbe\x3d\x64\x16\xf4\x7a\xe3\x49\x1e\xf5\x45\x6f\xc6\xf9\x56\xd7\x11\x3a\x07\x65\x40\x66\x00\x55\x96\xfa\x3e\xf3\x1a\x40\x9c\xb9\xc9\xa8\xd7\xf3\x42\x17\xa9\xab\xae\x40\x58\x80\xbd\x8c\x41\xda\x4b\x1d\x5a\xff\x01\x9f\xcd\xc0\xdd\xe5\x50\xbb\x5d\x59\xb7\x2b\x60\xdc\xa6\xf6\x1b\x95\x3f\xc9\xae\xae\x1b\xad\x0d\x3c\xba\x9a\x48\x4f\x77\x61\x11\xb5\x61\x0e\x85\xab\xb4\x56\x6c\xcd\x0c\xee\x01\x1e\xc1\x6a\x07\xd3\x44\x5f\x2e\xff\x23\x80\xd4\x12\xf5\xac\x28\x24\xf3\x6b\x8b\xa6\xc6\xd9\xe3\x8f\xd3\xab\x30\x88\xfc\xee\x42\x46\x2d\xa1\x87\x7e\x62\x8e\x4b\x81\x80\x55\xbf\x29\x32\x8a\x15\xfe\xc4\x86\x9d\xf5\xa5\x37\x67\x80\xa7\x1a\x39\x2e\x6f\xe2\xae\x66\x4d\x3f\xaf\xbc\x92\x04\x6f\x30\x83\xfd\x39\x43\x67\xab\x89\xd1\x9d\x9a\x0b\x03\xe7\xb4\xd1\xc2\x58\x09\x03\xfb\x56\xcb\x0d\x40\xa0\x18\x6e\xbe\x10\x7b\x94\x90\x6f\xb5\x1c\xa2\xe6\x65\x02\x40\xc7\xe5\x2e\xc1\xbb\x1b\x15\xb8\x3c\x07\x4c\x17\x0c\x91\xd1\xbf\x6a\x77\x1c\xe9\xed\x61\x7e\x5c\x4a\xc1\x96\xc5\x1c\xe7\x4e\xcb\x71\x11\x1e\x18\xaa\xb3\x74\x6d\xf5\x1f\x34\x99\x2c\xf2\xc4\x9c\x1a\xdc\xe8\x7c\xbe\x07\xf2\xb7\x22\x43\xfd\x50\xd0\x0c\x5b\x4a\xcf\x59\xd6\x73\xcf\x9d\x6a\x90\x95\x61\xc0\xbc\x18\xd1\x8c\xe7\xbc\x87\x07\x33\xa8\x9b\x17\x5c\xea\x47\xc0\x82\x74\x14\x94\x4d\x36\xce\x63\xd3\xfa\x7e\x39\x04\x5c\x99\xb3\xdd\x5a\x51\x2c\xa7\x2e\x7a\x4a\xd1\x33\x69\x6c\x5c\x6c\xad\xb2\x53\xd5\x08\x95\xc3\x66\x34\x22\xa8\xa9\xdf\x62\x30\xe6\xe3\xcc\xdb\x24\xe2\x93\xea\xba\x1d\xd7\xff\x20\x16\x88\x68\xc3\x52\x52\x6d\x77\xac\x02\xb7\x31\x02\xd5\x58\xec\xca\xf1\xba\x65\x44\x66\x3b\xa7\x1f\xc9\xa2\x54\x4e\x57\xc1\xa5\x36\x1c\xa2\xc6\x0a\x32\xe1\xa5\xaf\xdc\x73\x87\xa8\x9a\xe9\xf3\x4b\x19\xb2\x9d\xa6\x1b\x00\x72\x0a\x78\x73\x06\xa5\xa6\x20\xb5\x9a\x8e\x2f\x63\xa2\x6e\x67\xa5\x83\x51\xa6\x56\xf9\xa2\x0b\x52\xa9\xb5\xfe\x0a\x22\xb2\x99\x02\x38\xd8\x78\x67\x29\x97\x6c\x34\xaa\xc2\x66\x21\x91\xdb\x81\x21\x31\x91\x45\xd3\x00\x1d\x08\x82\xfc\xae\x47\xb2\x56\x94\x12\x2c\x2c\x9c\x73\x82\x2c\x95\x01\x02\x54\xb3\x5d\x3b\xed\x8b\x1a\x34\xf4\x02\x65\xfe\x62\x3d\x75\xb5\xbb\x50\x89\x83\x6a\x19\xf4\xb6\x0a\xba\x3f\x75\x1a\xbb\x36\x0d\x47\x72\xdf\x2d\xa7\xae\x76\x0a\x0e\x6d\xcd\xa6\xf6\x37\x45\xf3\x56\x93\xa6\xe0\x6c\x35\x53\x6c\x5f\xf1\x26\xef\xba\x9b\x32\x57\x11\xbc\x33\x8b\xdc\x6c\xf5\x92\x80\x89\x8e\x88\x07\x08\x2b\xd6\xc5\xe2\xda\x09\x66\x3a\xb8\xb9\x16\x95\x2c\xe4\xa1\x66\x67\x0b\x80\x0c\x33\xec\x5a\x2f\xc9\xa1\xcd\x14\x50\xf7\x50\xd5\x63\xa2\x7f\x1b\xba\x88\x5c\xbf\x8e\xcc\xc8\xe4\xe8\x6a\xb0\x6a\x29\x47\x52\xe7\xb8\xa9\x5b\x98\x83\x3f\xa7\xd5\x5c\xc9\xb5\x24\x7e\xab\x09\x75\x19\x80\x74\xd3\x53\x24\x3b\x4d\x67\x80\x1b\x20\xfe\xd6\xa0\x16\x1e\xb7\x73\x50\xd6\xe3\x0d\xc5\x12\xac\x6c\x04\xbb\xb4\x14\x5f\x3d\x0b\x5f\x5b\xab\x2c\xa5\x3b\x76\x4a\x9b\x1b\xec\x66\x36\xb7\xc3\x62\xb6\x63\x67\x93\x1b\x82\xe3\x7b\xae\x0d\x8b\x8b\xd9\x8e\x9d\x05\x31\x2e\xc5\x00\xb6\x58\x1b\x61\xfb\xd5\xe5\x5b\x24\xa2\x9c\x45\x3e\xaa\x28\x88\x80\xf6\xbb\x3c\x97\x83\xe1\x72\x39\x07\x30\xb3\x9e\xb9\xd8\xad\x90\x0c\x35\x8b\xad\xb3\x19\xd0\x1c\x3d\x73\xb1\x53\xde\xb5\x6d\x62\xc4\x9d\x56\x52\xfc\xed\x6a\xc0\xb2\x0f\x10\xb8\x09\x6a\x93\xd1\x76\x0a\xf0\xe9\x06\xd8\xc5\xa2\xa9\xbd\xf6\xc3\xa0\xbc\x36\x1e\xad\x03\x4c\xa9\x54\x7d\x6b\x3b\xc0\xed\x6e\x36\x1e\x69\x6b\x13\x2a\x4d\xff\xda\x16\x58\xc6\x45\xf0\x73\x6c\xa6\xf4\xed\xea\x1e\x38\xce\x46\x22\xdc\x15\xa4\x8e\x5d\xd8\x05\x93\xa7\xfa\xdd\x81\x30\xd7\x6d\x6b\x47\xd6\x79\x7c\x03\x7c\xa5\xd4\x1c\xe8\xa9\x28\x49\xcf\x41\xf0\x70\x8f\x4e\xfc\x28\xca\xad\x21\x7f\xf1\xf3\x72\x38\xe3\x1a\x3c\xb7\xf9\x50\x80\xd9\x62\xbc\xf3\xe4\xe9\xb3\xec\x37\x2a\x2e\x5b\x4c\xb0\xb1\x12\xd5\x21\xba\x2e\x22\xfe\xda\x72\x87\xda\x15\x37\xa2\x4a\xc4\xf7\xae\xab\x5c\x41\x60\x30\x87\x45\xf0\x29\xf4\x36\x9d\x1c\x8f\x2c\xbd\x19\x10\xe5\xca\xe8\xbd\xa8\xa5\x20\xea\x92\x6d\xa5\xe6\x36\x00\x04\x38\xc5\xa4\x93\x6b\xf6\xc8\x1e\xe3\xcc\x6e\xa2\x20\x5f\xd3\x97\x10\x91\x06\xcf\xcc\xa1\x37\xf7\x43\xd5\x45\x1b\x6e\x98\x82\x53\x61\xb8\x32\xdd\x2f\x2f\x9b\xeb\x09\xc3\x14\x8d\xb6\x7d\x90\x4e\x2e\x02\x71\x7b\x04\x9a\xc0\x45\xe1\x97\x32\x10\x71\xba\xde\x99\xcb\x1d\x13\xd3\xc2\x15\x3d\x03\x51\x3f\xaa\xde\x84\xc0\x56\x9a\x2c\xa5\xd1\x56\xee\x3c\x78\xab\x98\x9c\xa5\x61\x88\x52\x57\xce\x94\x20\x7c\x42\xac\x11\x5c\x09\xea\xd2\x11\x6f\xa9\xf1\x39\x3b\x08\xad\xab\x2e\xdd\x20\xe9\x87\x76\x62\x3b\xc2\x0b\x2d\x01\xb1\xfb\xac\xc2\x1d\xc8\xd1\x70\x3a\x23\x86\xad\x26\x20\xe2\xa4\x72\x07\x0e\x32\x0e\xdc\xef\xdc\x29\xd0\xdc\x76\x31\x15\x1f\x44\x34\xf0\x36\x4b\x36\x1e\x6d\x03\x0c\xf8\x95\xc1\x46\xd2\x95\xad\xea\x1b\x80\x56\x9a\xa6\x82\x9e\x04\x6b\x8e\x58\x51\xbd\xe8\x8e\x4f\x09\x3a\x41\x28\x2d\x68\xe5\xf8\xd1\x15\xa3\xba\x42\x44\xe7\x86\x8e\x96\xc0\xb6\x8a\xcd\x80\x79\x8a\x08\x36\xe7\x50\xa7\xa4\x8d\xe7\x8e\x50\x16\xb4\x73\x76\x8e\xfa\x6d\x11\x18\x93\x62\x23\x0e\x55\xc3\x9e\xf4\xd0\xb9\xab\xb6\x53\xcc\x88\x13\x1b\xa2\x61\x98\x8f\xd7\x17\x8c\xb2\x37\xca\x78\xee\x0d\xb0\x78\xd5\x04\x44\x5d\x41\x21\x4b\x31\x57\x04\x9d\xed\xa9\x63\x9a\x09\x68\xa9\x61\x2d\x87\x8f\x1a\x06\x1c\x75\xd1\xbe\xd2\xcd\x70\x92\x63\x1e\xce\x5a\x58\x44\xe6\xa2\xbf\x01\x5a\xbd\x47\xab\xd8\x56\x3f\x17\xb0\x1c\x25\x74\x3b\x1f\x7a\xeb\xcd\xb6\xaa\xcd\x21\x98\x01\x3a\x25\xd3\x83\x39\x6d\x7b\x8d\xc8\x00\x03\x37\xef\x26\x0a\xa4\xce\xc2\xc2\x59\xb5\x0d\x50\x54\x51\x74\x86\x53\x3f\x2a\xb1\xe1\x9a\x51\xfb\x8d\x8b\xb1\x90\x7e\xd8\x9d\x41\xc4\x2f\xb9\x5e\xdc\x70\x9f\x5f\x35\xfd\xb0\x53\x23\x64\xb6\x78\x2e\x46\xf4\x30\xdd\xd5\xf4\x43\x5d\x0b\x40\x96\x19\x26\x82\xf1\x42\x4b\xeb\xcb\x37\x68\x44\x6d\x07\x06\x1f\xf9\xda\x5b\x77\x65\x03\x06\xae\x74\x4b\x13\x41\x4f\x08\x8b\xd9\x87\xfa\x69\x09\x75\x43\xa3\xbb\xce\x6d\x3f\xb5\xb8\x5c\x77\x28\xab\x11\x36\xb0\xaf\xef\x15\xd3\xcd\xb6\x2a\x8e\x71\x64\x91\xe7\x18\xcd\x74\x6b\x26\xd1\x69\xdc\x2b\x40\xab\x98\x82\x83\x33\xdf\x03\x2f\x75\x1c\x63\xc5\x51\x30\x6a\xe2\x3c\xad\x69\xb5\x09\x3e\x51\x5c\xd6\x81\x88\x9c\x1b\x91\x8a\x81\xcd\x78\x24\x4f\x8c\x45\x87\x19\x33\x77\x73\xbb\x68\x19\x1f\x31\x0a\xb0\xa2\x76\xb1\x20\x56\x21\x97\xec\x3b\x35\x17\x2a\xce\x6a\x8f\x1b\x9a\xa9\xe0\x97\x49\x4d\x73\xda\x70\x14\xa0\x31\xc8\xcf\xe8\x29\xe5\x49\x45\x58\x98\xb6\x8e\x9c\x02\xd7\x93\x64\xf9\x56\xd1\x39\xf2\x55\x63\x6e\xcb\xb8\xf4\x35\x83\x60\x87\xf9\xd9\xbc\xc8\x9e\x2c\x2c\xda\xc3\xdd\x82\xb1\xcb\xc5\x68\x7e\x65\xd1\xc8\xe5\x90\xc5\x43\x3d\x28\x72\x8f\x20\xf1\xad\x96\xb3\x00\xfd\x58\xfa\x05\x45\xc9\x35\x8b\x40\xbb\x28\x54\xbb\x59\x28\x77\x35\x86\xb3\xd3\x71\xc4\x82\xcb\x65\x43\x83\x30\x29\x17\x56\x4d\x55\xaf\x64\xdb\x03\xf3\xdb\x5b\x6f\xbe\x55\xbc\x99\x8b\x7d\x98\xb4\x24\xf4\xd6\x5b\x33\xc5\x31\x95\x24\xc7\x30\xbd\xf0\x81\xd5\x95\x73\xc7\xf0\x4d\xac\x45\x14\xb6\xc7\x8f\xf8\x56\xc1\x45\xf2\xc6\xc8\xb0\x4a\x6b\x05\x59\x33\xfd\x06\x7a\x9e\x00\xc2\x16\xdf\x77\x6b\xec\xbe\xaa\x70\xa9\x70\xed\x13\xad\x31\x43\xfa\x56\xbd\xa1\x96\x3b\xa0\x4a\x0a\xfd\xcb\x96\xd2\x0e\xbb\xd5\x10\x95\xa6\xa9\xa9\x7c\x27\xbd\x4c\x75\x0b\x0c\xe7\xc9\x6b\x39\x9b\xaf\x24\x48\xab\xbb\x10\xb8\xa6\xd0\xf1\x1c\xd3\xe6\x56\x93\x54\x6f\xc0\x93\x6e\x00\x1b\x93\x59\x01\xab\x4d\xf0\xc8\x82\x20\xd2\x6d\x85\xfa\xf4\xea\x78\x14\xee\x99\x81\x1c\x29\x2b\x60\x27\x49\x9b\xe0\x40\x1f\x6a\x51\x78\x60\x87\x79\x21\x73\xb3\x5f\x3b\xfd\x16\x53\x25\x7d\x1e\x0f\x40\xec\x72\xab\xa9\x55\xd1\x06\x8e\xa3\x45\xef\x1f\xa5\xb4\x35\xb5\x4a\xba\x94\x5a\x16\x49\xf6\x78\x9f\x5b\x6d\x96\x41\x11\xd1\xbd\x58\x3b\x3c\xd9\xde\x45\x6d\x26\x0c\xb8\xba\x03\xda\x6a\xcb\x7a\xdb\x85\x85\xfb\xca\x5d\x4d\x74\x29\x4e\x50\x58\x2f\x2d\x83\x69\x8c\xe8\xb3\x54\x2f\x35\xb5\x9a\x9a\x21\x21\x06\x05\x2d\xa5\x87\x92\x34\x33\xc0\xfa\x04\x96\x00\x13\xa0\x1d\xd4\xb4\xc3\xee\x4a\x65\x6e\xa5\x84\x16\xbf\x46\xe9\x9f\x95\x5a\x3d\x47\x36\x7e\x64\xaa\xd9\x1e\x49\x92\x5a\xd5\x4b\x80\x4e\x56\x2b\x8d\x5b\xab\x2f\xbc\x22\x1c\x81\x5a\xe1\xee\x81\x6a\xd6\x61\xe6\x6e\x97\xa9\x86\x49\x25\x4a\x4e\xad\x5a\x20\x68\x3e\xde\xf3\x86\x5a\x49\x9b\x60\x12\x12\xf6\xc4\xd9\xb5\x37\xd4\x5a\xf4\xe5\x75\x73\x97\x9d\x8d\x03\x03\xa0\x95\x5c\x76\xea\xba\x6d\x64\xe6\x51\xd4\x7b\x0d\xb2\x46\x55\x5f\x78\xe5\x23\x36\xfc\x86\xaa\xd8\xdf\xd4\x6a\xb7\x81\x73\xd1\x50\x72\x4e\x53\x6e\xa9\x55\x6e\xd4\x4c\x05\x00\xc6\x80\x64\xf4\x7c\xf1\x75\xda\xce\x5f\xcb\x30\xac\x47\xdb\x2d\x98\x39\x21\x8f\xd5\x67\x80\xb6\x13\xb5\xb6\x3e\x2a\x2e\x6a\x3b\x01\x28\x64\x83\x66\xcd\x9e\x19\x2c\xc5\xc7\x37\x33\x98\x7a\xc4\x7a\xba\x82\xce\xce\xc3\x75\xed\xf2\x77\x22\x09\x61\x72\x92\x6c\x40\xea\x4f\x4d\x39\xec\xb4\x34\xe3\x79\x07\x34\xfc\x2c\xcb\x19\x87\x9d\x6e\x40\x6a\x7c\xaa\x54\xed\x55\x5c\xbb\x14\xc0\x55\x19\x4f\xe1\x11\xd7\xd4\x33\x0e\x33\x57\x87\x9b\x33\x80\xb6\x7d\x9e\x3c\x59\x5a\x3d\xea\x64\x1c\x18\x34\xec\x20\xda\x16\xea\x4b\xa9\xd9\x7d\x18\x7f\x2e\x89\xd0\x9a\xbe\x7c\x97\x71\xaa\x72\x2d\x7d\xf0\xcb\xf5\x15\x3b\x45\x67\x90\xfb\x73\x88\xa7\xa6\xbc\x98\x72\xd8\xa9\x3a\x2a\xfd\xb1\x78\x47\x0c\xe8\xba\x16\x52\x0e\x3b\x5d\x17\x4c\x7d\x74\x88\x24\x7d\xb1\xc0\x62\xa7\xed\x9c\x63\x0c\x2d\x5a\xea\x2b\x7e\x6b\x7f\x2c\x2b\x33\x3c\x47\xc1\x6c\x5f\x53\xd8\x7e\x59\x9e\x53\xee\x8c\x8f\x83\xef\x01\x25\xed\x1c\x62\x8d\xd9\x03\xa4\xd6\x70\xed\xcf\x42\xca\x61\xa6\xf5\x06\x1a\x0c\xee\xea\xbc\x9c\x72\xd8\xa9\x3d\xc7\xfd\xab\x19\xf3\x50\x56\x28\xbf\x67\x66\x44\xdc\x25\x6a\x8c\x95\x0e\xf2\xc2\x16\x70\x75\x9d\x45\xd6\x25\xd7\x4e\x47\x6b\x5b\x50\x55\x9f\x41\x7d\x8e\x87\xab\xb1\x94\x71\xd8\xe9\x3e\xcf\xcc\x96\x54\x81\xed\x75\x72\xed\xcc\xd2\x44\x02\x1c\xff\x52\x21\x4b\x62\x1d\x62\xb8\x05\x92\xba\xd4\x28\x92\xef\x94\x98\x1c\x8e\x7e\x72\x66\xe2\xa8\x36\x3d\xd4\x57\x4c\x30\x19\x5f\x8d\x1e\x28\x9b\x41\xf8\x3e\xda\xe7\xe3\x40\x6d\x00\xc8\xdb\x64\x41\xc2\xa1\x2e\x20\x70\x33\xa8\x5c\x76\xc8\x52\x2d\x32\x9e\x27\x11\x50\x6b\x77\xee\x69\x91\x85\x7b\xa8\x2f\x81\x9b\x52\x30\x61\x52\x54\x08\xa3\xda\x2f\xca\xec\x54\x0c\xec\x2d\xb9\xb4\x10\xe5\xce\xd3\xb1\xcc\x60\xbf\xf3\x1c\xd5\x89\x3d\x6c\x41\x7e\x14\x8e\x6c\xe2\xc0\x91\x53\x6f\x93\x9c\xc1\x84\x6d\x81\xf1\x27\xa6\xd6\xd7\x2f\x2f\x04\x64\x0d\xb5\x09\x2c\xf5\x07\x55\x50\x08\xed\x77\xd1\xc3\xcb\x00\x54\x53\x24\x2e\x54\x5d\x4a\xad\xce\xcd\x4c\x8d\x91\x35\xbe\x79\x39\x05\xdd\xb6\x0a\xd3\xaf\x84\x39\x0a\x53\x7c\x5b\x9e\xd4\xa2\x45\x19\xc3\x00\xd4\xa6\x5d\x0a\xcd\xe4\x49\xbf\x15\xc3\xf0\x91\xbd\x3c\x2f\x9c\x4d\xea\x70\x64\x6b\x0d\xfc\x10\xa6\xb0\x94\xdf\xef\xbb\x6b\x01\x2b\x36\x13\x15\x7b\xec\xaa\x0d\x7d\x7b\x4d\x99\x8c\xd4\x23\xe2\xd0\x9b\xe2\xcd\x04\xcf\x9c\x50\x30\x6a\x62\x9f\x2f\xf2\xed\xb5\x48\xc8\x9a\x80\x9a\xdf\x2b\xe4\xda\xbe\xbd\x16\x89\x7d\x55\xfa\x68\xdf\x19\xe2\xbe\xbd\x16\x35\x64\x89\xb8\x03\x5e\x40\x35\x78\xb0\x3b\x80\x11\xa4\x87\x19\x00\x39\xd3\xf3\x7c\xfa\xf6\xf8\x51\x1f\x68\x94\x47\xc8\xf8\xc4\xc2\x32\xc0\x4c\x63\x38\x5d\xe2\xf1\x60\xaa\xc1\x83\xdd\x57\x51\xe4\xd9\x9a\xca\x58\xeb\x96\xd1\x87\xb3\xef\x62\x58\x92\x67\x32\x26\x85\x6d\xac\xfb\x32\x78\x2e\x88\xa5\x97\x96\x3f\x4d\x9d\x03\x37\x95\x3b\x72\xe6\x79\xcf\x41\xf1\x4b\xf5\x5e\xf8\xca\x2b\x6e\xf1\xf2\xf7\x7c\xd1\xa9\xbd\x17\x8e\x5e\xe2\x01\x7d\x5d\x7d\x5c\x70\xe9\x77\x17\xc3\xb2\xb6\x62\x0e\xb4\x3e\xe3\x9c\xba\x9b\x51\xe8\xfc\x16\x3c\xc5\xa6\xbb\x1a\xa9\xbd\x1a\x94\x1a\x64\x58\xbe\xec\xc1\xac\x2f\x02\xa0\xef\x01\x29\xd2\x41\x24\x78\xd5\x55\x8c\x8a\x6f\x20\x47\x90\xd6\x9e\x94\xbb\x91\xda\xbb\x91\x11\x33\x2e\x94\xef\x2a\x1d\xa3\x52\xf7\x45\x91\xa3\x44\xc3\x0e\xfb\xac\x7a\x9c\xbb\x43\x38\xeb\xc0\xe9\x05\x23\xa1\xbe\x06\x84\x4a\x80\x2d\xb7\xa2\x32\x62\x61\x0d\x8e\xa3\xcc\x03\xa8\x13\xfa\x94\x41\xf7\x45\x64\x79\x71\xfe\xdc\xe0\xb2\xea\xde\xe3\xec\xb1\x60\x95\x50\x31\x15\x4a\x72\xb3\x99\xc3\xbd\xcc\x2b\x8d\x7c\xe5\xe2\x5e\x5d\x0a\xfa\xda\x71\x07\x04\x0b\x20\xe8\x7c\x25\x75\xda\xee\x5a\x0c\x50\x38\x1c\x64\x99\x15\x40\x79\x75\x86\x05\x0b\x12\x57\xc6\x70\xcf\x0e\xf1\x29\xed\x04\x8b\x90\x55\x40\x34\x43\x8d\x75\x35\x53\xd8\x78\xb4\x6e\x82\x9a\x2e\xf6\x91\xdb\xdd\xd6\x5c\xd9\x6e\x70\xa7\x6c\x6f\x4d\xb5\x73\x5c\xc5\x7a\x0c\x6c\xd8\xf7\x8d\x19\xfa\x0f\xb3\x04\x78\xce\x88\x45\x69\xc5\x8e\xed\x14\xf4\x0d\x34\x70\x53\x50\xdc\xbf\xe0\xd9\xec\xae\x88\xe7\xbe\xc4\x0e\x24\x2e\x73\x9c\xfc\xc2\x5a\x26\x98\x88\x71\x55\x37\x2e\x39\x29\xbb\x23\x19\x90\xb1\xa5\x84\x89\x35\xcb\x3e\xca\xee\x9e\x8c\x5e\x7d\xa2\x60\x59\x90\x08\xa7\xa5\xaf\xaa\x0d\xda\x0b\x85\x97\x74\xe2\xe6\xf6\xb3\x00\xe4\x80\xf5\xc6\xe1\x89\x05\x67\x63\x77\x53\x1c\x08\xba\x98\xc5\x70\x0d\xdd\xb4\xbb\x29\x5c\xea\x80\x46\x08\xa9\xbd\x29\xcd\xec\xd8\xfe\xbf\x54\x5f\x63\x1a\x0e\x97\x29\xc0\xf4\x1e\x80\xd1\x92\x43\xda\xaf\x03\x94\x81\xe3\x83\x48\xa3\x2b\xce\xc3\xec\x07\x80\x9e\xab\xd1\x9f\xb9\x37\xa0\x7f\x92\x41\x5d\x0b\xf3\x8e\x0a\xfa\x75\xfd\x9b\x0a\x90\xd2\xd5\x36\x96\x2e\xdc\xd2\x22\x10\xef\x42\xc1\xf1\x20\xdf\x7e\xf5\xb3\x0a\x1e\x70\xee\x2b\x55\x64\x9f\x68\xfd\xbb\x6a\x65\x4e\x62\x1c\xaf\xd7\x2d\xe2\xe9\x8f\x84\x7a\xcf\x1d\x3c\xd1\xee\xe5\x6f\x27\x00\xfd\xea\x18\xc2\x5c\x7a\xda\x96\xee\xca\xc3\x05\x07\xda\xc9\x0b\x10\xfa\xd2\x2f\x24\x36\xf7\x2a\x78\x7d\xc1\xc8\x9d\x66\x00\xdd\x85\x56\xce\xcc\x0f\xad\x1b\xad\xbb\x8d\x0d\xd4\x1e\x03\xef\x81\xd2\x75\xac\x5f\x44\xe4\x12\x4c\x8b\x9e\x09\x22\xf2\xaa\x7f\x16\x48\x3d\x19\xef\xbc\xf1\xdb\x41\x7b\xa2\xda\x8b\x8e\xfe\xfd\xcc\x4f\x0f\xcc\x92\x7e\x9a\x26\xf9\xa1\x79\x5c\xad\xf9\x8a\x1d\x56\xb0\x9b\x02\x4d\x65\xd8\xe3\xcf\x7d\xf6\xb8\xfb\x27\x92\xaf\x88\xd4\x26\xc1\xcc\xb5\xf8\x13\x85\x5b\x32\x18\x9e\xb7\xf4\xde\xcc\x64\x08\x4e\x44\xba\x50\xb2\xb8\x7e\xf1\xbb\x06\xa6\x8d\x02\x37\x66\x59\x6e\x1e\x37\x5f\x09\x77\x65\xa2\x1e\x90\x52\x4f\x2f\xfe\x1c\x24\x98\x50\x78\x21\x4b\x93\x16\x35\xe9\x94\xb3\x4d\x4c\x14\xae\xab\x07\xfc\x2f\xf7\x79\x23\x46\x14\x0a\x6d\xb3\x16\x2d\x79\x79\x02\xd2\xb5\xa8\x85\xde\x78\x66\xa3\x2e\x61\x69\x42\x6d\xd2\xce\x7d\xe1\x7d\x86\x1c\xcb\xe2\x27\x71\x1d\xfe\x04\xc4\x8d\xf0\x06\xf3\xd2\x2f\xc4\x61\x22\x5e\xa6\x3d\xf6\x1e\xb0\xcc\xbc\xf4\x0b\xd1\x62\x82\x65\x07\xde\x33\xd3\x54\x5a\xfc\x05\xcf\x30\xbb\x88\x9c\xa5\xe3\x26\x64\x4a\x10\x86\x27\x70\x18\xc2\x56\x08\x76\x82\x9d\x18\x97\x26\x24\x33\x11\x75\xc3\x23\x62\xac\x6b\x58\x9c\xc0\xe5\x2c\x26\x72\x18\x30\x0a\xbf\x40\x99\xc0\xa0\x47\x03\x60\xff\xc6\x32\x4d\xb5\x5b\x9a\x90\xa7\x98\x16\x9a\x36\x44\xee\xa5\xb2\xb4\x49\x39\xd4\x9e\x2b\xbe\xcc\x32\xc0\x0a\x5a\x97\xc7\x03\x83\xb1\x61\xd6\x81\x6a\x1e\x99\xc5\xbf\x5f\x6a\xd6\x9f\x1f\xa5\x39\x43\x56\xff\xbf\xc5\xf0\xc6\xc0\x8b\x8d\x5c\x20\xb4\x34\xda\x32\x5c\x11\x89\xb4\x80\xb8\xe5\xd2\xa7\x14\x87\xb2\x41\xae\x0f\xf2\x18\xdd\xf5\x20\xac\xa3\x19\x5a\x34\x30\x6d\x37\x2c\x47\xbb\x3c\xda\x81\x3a\x97\x41\xba\xca\x4b\x27\x1e\x0c\xdc\xd4\xc4\x3f\xe2\xb6\x33\x2b\x48\xb9\xc5\x3e\x93\x1f\x96\x90\x07\xd8\xb8\x79\x38\x57\xb9\xc3\xbe\x80\xef\x78\xc0\x2e\x0a\x50\x91\x72\x83\xb9\x0e\x26\x82\x34\x6c\x23\xea\x99\x95\xfb\x1b\x1c\x86\x33\x5d\x9a\x20\xa5\x51\x6e\x6f\x00\xcf\x5f\xe0\x42\x23\x61\x64\x28\x77\x37\x64\x30\x63\xf9\xda\xa7\xa8\xcf\x90\x35\x6a\x24\xfb\x4a\x09\x47\x94\xf6\xbb\xbf\xae\xdc\xdb\x18\xc9\x1d\xf2\x06\x91\xb1\x34\x6f\xc4\xa8\xdc\xda\x04\x32\xf2\x0a\x61\x49\xf3\xaa\x4c\xe5\xce\x26\xe2\x2d\x19\x2f\x5b\xed\x48\xb8\xb3\x84\x95\x1b\x9b\x51\x6a\x67\x32\x2c\x98\x38\xe7\xa9\x55\x2e\xec\x78\xb5\xf1\x86\x3b\xec\x7b\x5a\xa8\x0b\xe0\xe1\x11\x90\x66\x84\x2f\x37\x61\xee\xc0\x2a\xd7\x35\x83\xfe\x0d\x21\x4c\x94\x95\xaa\xfd\x35\xa7\x53\x44\x4c\x7c\xf5\x72\xcc\x60\x1d\xfd\x65\x2d\x60\x6e\x63\xc4\x94\x9b\x93\x1e\xf5\xdf\x51\x2c\x7b\x11\xe8\x85\x33\x4f\xa9\xf6\x57\xb5\x4c\xc6\x09\x6a\xd7\xe2\x6e\x89\xfd\x4d\x2d\x8c\xf1\x06\x40\xc1\xce\x0f\x96\x76\x51\x73\xc1\xdd\x0c\xf5\x97\xba\xfe\xa4\xe2\xa2\xe6\x52\x95\xd0\xb8\xdd\xc5\x20\xff\x2f\x86\x07\x39\xdc\xe4\xe9\xaf\xe7\x3c\xc7\x09\x2a\x17\x35\x97\x2a\x74\x3e\x09\xa9\x85\x21\xe6\xe6\xaf\x07\x3b\xb5\xd1\x48\x79\xde\xa1\x4d\xb9\xa8\x99\xab\x12\x11\x32\x4d\x6e\x9e\xff\x51\x2e\x6a\x19\x6a\xa4\x63\xdc\xf6\x98\xe6\xca\x4e\xb9\xa8\x85\x41\xf5\xa8\xe9\x8f\x16\x56\x54\x73\x89\xc5\xf0\x82\xbf\x3e\x5e\x8e\x60\x10\xd6\x12\x2a\xa2\x39\x5c\xb5\x2e\x05\xa9\xdc\x4e\x4c\xbe\x39\x5e\xe8\x86\x58\xd9\xfe\x4c\x8b\x59\x77\xcd\x70\x0e\xa7\x8e\x7a\xdd\xda\xf9\x71\x54\x2e\x6a\x71\x1c\xce\x42\xec\x20\xcd\x0f\xa4\x72\x51\x0b\x57\xed\x19\x04\x3a\xdd\x1c\x9b\xa9\x5c\xd4\xc2\xf4\x19\x20\x85\xe0\x24\x89\x3c\xc0\xf2\xb8\xb3\xc7\x4c\x7d\xf7\xe7\xb7\xae\xbf\xa8\xc5\x63\x17\xc1\xea\xe1\x60\xf7\x88\x3d\x97\x83\x29\x8f\x0b\x64\xb4\x41\x7e\x47\x6c\xa1\x1c\x9c\xd9\x71\xa7\xce\x42\xa6\x3d\x2b\x56\x0e\x2e\xe0\x6a\xb3\x30\x87\x3b\xaa\x0f\x79\x53\x97\x43\x09\xca\x3d\x65\x5c\x36\xfe\xdb\x68\x6a\xeb\x44\x70\x7c\x4d\x01\x29\xde\x8d\x36\xed\x22\xc5\x2d\xe5\x6e\x32\xd3\xe8\x4e\x90\xe2\x92\x32\x07\xc1\x34\xfa\xff\x71\x72\x56\xb9\xa2\x1e\xa0\x9a\x69\x74\x27\x1c\x71\x43\xb9\x15\xcc\x34\xba\xab\xe0\x10\x17\x74\xa5\x30\x4d\xb9\x9f\x11\xa9\x0e\x1e\x2d\xd0\x34\xca\xf5\x5c\x21\xde\x53\x6e\x67\x42\xb5\xdb\x34\x7a\x61\x4f\xf8\x72\x26\x40\xac\xa6\xd1\xdd\xad\x14\x77\x73\xa5\xd3\xb4\x72\x35\x33\x18\xc2\xa6\xd1\x49\xdf\x13\xbe\x9a\x19\x70\x89\x69\x74\xd6\x57\x99\xea\xd9\xca\x66\x3e\x58\xff\x90\x50\x35\xd5\xe0\x66\x83\x8b\xbe\x23\xae\x6a\x12\xeb\xe7\x83\x75\xd1\xd8\x3a\x18\x00\xbd\x3a\x58\x5f\xa1\xb8\x3d\x3c\xd8\x6e\x45\x14\x43\x36\x83\x9f\x6e\xce\x2c\x27\xb1\x61\x20\x0d\x1f\x7d\xee\xdb\x1e\xe7\x13\x5c\x02\x63\x93\x83\xb3\xc6\x2d\x2f\x77\x80\xac\xd9\x3f\x78\x7f\x6a\x3b\x25\xb8\x16\x4e\xb0\x5b\x31\x21\x81\x9d\x2b\xc3\xc8\x25\x09\x6c\x24\x72\x26\xbe\xa2\x40\xec\xfc\x1f\xbc\x2e\xa6\xda\x1a\xe0\x7b\xc9\x56\x9f\x71\xf6\xbf\xd3\x21\x08\xac\x12\x99\xa7\xc8\x4d\x6e\x8b\x9b\xfd\x2f\xef\x28\xb2\x73\xa3\x0a\xca\x3b\x6e\x69\xf5\xf3\xeb\x2f\x72\x0f\x08\x8b\x78\xa0\x97\x55\x3e\xe2\xfb\xcd\x74\x9d\x10\xf3\x87\xad\xe8\x80\xda\x54\x16\x60\xa6\x2b\x52\xf0\x02\xb0\x28\x86\x61\x49\x06\x76\xfa\x8f\x89\x13\xb8\x90\xda\x10\x97\x56\xc1\x33\x42\x61\x54\x12\xd6\xed\x04\x75\x87\x5c\x45\xc5\x90\x99\x2a\x37\x34\x8f\x42\x20\x5a\x59\x45\x1d\x0f\xbe\xb7\x4d\x0d\xad\x63\xd5\xea\xd1\xab\x1f\x5a\xab\xf0\x18\x76\x80\x2b\xa9\xae\x9b\x67\xb8\xca\x4f\xc8\xdd\x2d\x25\x41\x91\x58\x77\x8d\x78\xa1\x88\xbd\x4a\xcf\x89\x6a\x55\xb9\x6e\x89\xe5\xde\x98\xda\x03\xd7\x2d\xac\xbb\x8e\xe7\xc0\x48\x6d\xcc\x25\x7b\x70\xc8\x4b\x5a\xe1\x44\xb1\x32\x9c\x3a\xe6\x52\xb5\x4b\x5b\x55\x91\x4e\x4c\xc2\x66\x2b\xa7\xd1\xf2\x35\xdd\x81\xfd\x00\x0b\xe5\xd0\x05\x40\xd3\xea\x56\xcd\xc0\xc6\x30\x88\x0a\x4e\x4a\xb0\x4b\x5b\xb5\x83\x72\x0f\xcc\x36\x1f\x77\x4e\x80\xb2\x55\x3b\xbc\x7b\xc4\x82\x81\x7f\x81\xc2\xd6\xb7\x6a\x06\x99\x61\x60\x24\xe9\xe3\xb4\xa8\xcf\x76\x69\x1a\xcb\x1c\x35\xe8\x71\x48\x1a\x50\xdd\xa9\x9a\x0c\x32\x75\xdd\xdc\xfe\x52\x34\x99\x15\x3b\x95\x27\x2d\x0b\xf6\x27\x06\xfa\xcb\x7e\xb9\x62\xa7\xaa\xd5\xc1\x7c\x6b\x4c\xa4\xcc\x9c\x65\xca\x4e\xed\xd2\x9f\x16\xe3\x51\x0e\x2b\xe9\xfc\xe5\x4e\xed\xa2\x9e\x19\xe7\x10\x8d\x14\xc9\x63\x52\x77\x6a\x17\x23\x67\x36\x9f\x81\xde\x45\xb7\xb8\x51\xb3\x08\xee\x30\xeb\xe0\x3f\x88\x64\x50\xab\x3c\xa7\xdd\x08\x98\x92\xd8\x82\xca\xcb\xda\x93\xff\xab\x87\x53\xc1\x0a\x5d\x36\xe4\x92\xea\x73\x67\x3b\xa4\xb9\x9d\xeb\xfa\x44\x39\xeb\xa8\x49\x7e\x03\x97\xd4\x91\xca\xb2\x7e\x0e\x2f\x52\x33\xec\x96\x98\x00\xa8\xa7\x3b\x2b\xc5\xa5\x04\x76\xb5\x05\xa7\xde\x8b\xd4\xd9\xc9\x56\xfe\xfb\x95\xdf\x80\xcb\x52\x01\x40\xe3\xd7\x29\x35\xd0\xcd\xcf\x8c\x36\x99\x9b\x82\xa5\x84\x9b\x5c\xce\x62\xef\xd6\x32\x9a\x92\x0e\x5c\x75\x76\x00\x3e\x53\x4b\xd1\xa5\xe9\xf4\x12\x43\x0b\x9f\x7a\x23\xe8\x26\xc5\xb4\x34\x59\x15\x86\xbb\x40\xa1\xc5\x7a\xe9\x0a\x55\x9a\x09\xa1\x62\x9f\xc6\xab\xc8\xc4\x1e\xfd\xeb\xcd\xe7\xd6\xd2\x61\x1a\x6a\xf8\x8e\x12\x86\xf3\x61\xe2\xc1\x47\x9c\x67\x63\xb8\x91\xca\xdc\x45\x55\xcc\x03\x87\x66\xa1\x20\x1b\x1b\x00\xc6\x71\x4b\x83\xe9\xfd\xd9\x1b\xa6\xb6\xb9\xed\x77\xcc\x7f\xa5\x58\xe0\xdf\xd8\xaa\x11\x71\x9b\xfe\xdb\x0b\x40\xd4\x66\xe2\xa1\xc9\xea\x7e\x4c\x83\x71\x83\x39\x1b\x95\x5b\x07\x68\x3e\xb1\xb8\x7a\x87\x1d\x4c\xfe\xa8\x6e\xde\xf4\xd1\xc0\x4f\xd6\x5a\xcf\x59\xfd\x50\xbf\x2b\x05\xc8\x7d\x83\xc7\x99\x35\x6f\x3f\x8c\x07\x0f\xec\xcf\xa0\x33\x0a\xa3\x2d\x71\x26\xba\x2d\xcc\x85\xc5\x92\x11\xc7\xa6\xf0\xce\x7c\x58\x92\x62\xe1\x27\xa3\x60\xc3\xe7\x94\x1c\xfd\x68\x84\x6b\x1d\x33\x06\x97\xf6\x33\x92\xfc\x0c\xe2\x83\xa4\x7f\x81\x61\xa4\x85\xd3\xf9\xad\xc8\xc8\xe3\xc3\x93\xd8\x84\x79\x80\xa1\xff\xf4\x8c\xce\x51\x95\x72\x8a\x7b\xb3\x2d\x0d\x46\xe2\x03\x79\xf3\x4d\xec\x83\x63\xf3\x89\x65\xa8\xf2\x48\x94\xdd\x24\x97\xaa\xff\x9b\xd3\x47\x0f\x9c\xbd\xc7\xde\xcd\x6e\x4b\xbf\x2b\x19\x59\x39\x07\x14\x17\x53\xef\x2f\x8d\x0d\x1c\x2f\xc8\x33\x03\xc6\xf7\xe7\x9f\x7f\x2b\x4f\x10\xd9\x89\x32\x70\x77\x50\xb5\x60\x31\x23\x84\xd9\x18\xcb\x8a\x8a\x9a\xff\x4a\xe2\xfc\xb0\x71\xcc\x81\x5f\x04\xc8\xa6\xbf\x69\x29\x33\xf6\x85\x41\x8a\xa6\xcc\xbd\x7b\x65\x1d\x09\x9c\xbe\x36\xd4\x40\xfd\xe0\xdb\xef\x77\xf2\xfb\x1d\xea\x0c\xe8\xc1\x8f\xa2\x0c\x4b\x19\x1f\xa9\xb4\x7d\xaf\x20\x64\x6c\xd9\xbc\x73\xbd\x46\x9e\x4e\xb9\xe1\xc4\x91\x01\xe2\xbc\xbd\xc8\x72\xf8\xc0\xcc\x89\x95\x3c\x9e\x8e\xa3\x5b\x1a\x9e\x0b\xb3\x99\xe3\x88\x65\x41\x60\xac\x8c\x4f\xe8\xef\x40\x04\x90\x9e\xb4\xbe\x2b\xed\xe6\xc8\x09\x0e\xa4\x86\xdc\x5f\x75\x50\x10\x89\xf3\x1f\xab\x2d\xeb\x6a\x5e\xdb\x1a\x91\x37\xef\xb5\x5d\x4a\x5c\x4f\x3a\x30\xa5\xae\x99\x97\x37\x29\xa7\x28\x51\x51\x03\x01\x6a\xa1\x91\xb2\xd5\x4f\xe7\x34\xdc\x40\xba\x06\x70\xa0\xc5\x17\x17\xe3\x23\x12\x94\x66\x60\xc3\xda\x09\x42\xad\xfe\x8c\xa6\x4a\x46\x6e\x79\x63\x8b\x72\xbf\x9c\x5c\x70\xad\x82\xa8\x3d\x0a\x7d\x97\x8c\x71\x72\x05\x54\x3e\xed\x6b\xaf\x85\xa5\xe3\xec\xaa\xc0\xb8\x4f\x06\x63\x11\x4c\x8f\x02\x72\x72\xc1\x9e\xa2\xb0\x91\x4b\xd9\xba\x74\x82\x98\x54\x26\x67\xdf\xa3\x27\xb2\xcb\xfa\xe9\x77\xf5\x7c\x3a\xf8\xee\xc4\xf7\x58\x04\xc0\x41\x19\xcf\xca\x64\x63\x50\x62\x63\x44\x24\x4f\x59\x73\x2e\x8c\x2b\xc2\xf1\x2c\x80\x05\x2a\xd7\xc5\x55\x25\xcb\x50\xf8\x84\x2e\x7b\xce\x2e\x5c\x97\x69\xef\x3d\x43\x53\x0d\xec\x43\xd3\xa9\x1e\x39\x81\xff\x32\x5a\x05\x5a\x46\xe5\x68\xd7\x8b\xc7\x53\x21\xc2\xd4\x26\xb9\x88\x22\x2f\x6d\x42\x04\x9e\x2a\x30\x61\x63\x4c\xaa\xe1\x53\x1d\xe4\x29\x40\x43\x5e\x83\x08\x87\x2b\x22\x8b\x99\xbc\x2a\xd0\xb6\x54\x17\xbf\x57\xc8\x75\x74\x22\xb7\x9b\xa1\xb8\x0e\xc1\x25\xe5\x9e\xf3\x7f\x0a\x9c\x99\x67\x12\x5e\x13\x10\xd1\x55\x2e\x6e\x9d\x80\x4a\x73\x83\xfe\xee\x95\xe7\xb7\xbf\x87\xbb\xb8\xab\x61\xe3\x87\x13\x00\xba\x6d\x3a\x5b\x2b\xbb\x13\x5c\x7b\xd2\xf1\xf9\x89\xf1\x21\xf3\x73\x85\x7f\xdd\x48\x86\x0b\xe5\xc0\xc5\x4c\x9f\x3f\x54\x40\x4c\x69\x0f\xa6\x6b\x36\x13\x64\xfd\xd0\x0d\xa2\xa4\x4e\x19\x1e\x12\xfc\xdf\xcc\x38\x3c\x3f\xc7\xdc\x6a\xc7\x39\x00\x6a\xcb\x5c\x84\x1b\x1e\xaf\x9c\xf8\xdd\x78\x06\xb9\x0f\x48\xa3\xe6\xa5\x47\xb1\xfe\xb7\xc8\x18\x60\x4a\xc0\x81\x52\x5c\xd5\x0b\x75\xc1\xec\xce\xc1\x47\xb0\x22\x9f\xa2\x5d\x97\x18\x2a\x39\x50\xe1\xda\x88\xd6\x3f\xe8\xc6\x5b\x04\x85\xb8\x7b\xf7\x1c\x9f\xa2\x4d\x08\xb5\x6f\x25\x5a\xc2\x70\x89\xa6\x36\xb2\x4e\x80\x0a\x34\xc8\x0b\x19\xb7\x14\xd6\xfe\xbf\x1b\x31\x37\xed\x70\x9b\xa6\x98\x82\xef\xf3\xa4\x56\x0e\x67\xfa\x07\xc4\x5e\xd0\x92\x79\x01\x01\x89\xf1\xb1\x72\xd5\x79\x50\x01\x84\x85\xd4\x67\x1d\xcf\x01\x33\x4f\x09\x9f\x90\x60\xf4\x88\x21\xed\x78\x80\xff\x2d\x33\xe2\xc5\x76\xb8\xd1\xfe\x3e\x32\xdb\x6e\xee\xec\xb4\x4d\xe8\x30\xdc\x71\x7e\xcf\x01\x8d\xea\xbb\x3f\xdf\x2c\x17\xed\xb3\xc0\x35\x63\xa3\xf4\xd4\xb5\xe5\x0e\xec\x5f\x8e\x5e\x55\xf0\x8b\xdd\x93\x76\xc3\x93\xdf\xc1\x62\xbd\xc2\x74\x68\xda\x09\x86\xca\x0b\x72\x9e\x0a\x94\xc4\x70\x39\x2b\x15\x52\x9a\x85\xf9\xea\x73\xf7\xd7\xe5\x6a\x13\x75\xef\xda\x4b\xa8\x76\xe0\x20\xb8\x18\x2f\x57\x9b\x22\x80\x30\x14\x3e\x46\xc7\xb1\x05\x24\x33\x86\x9b\x89\x69\x13\xac\x26\x41\x01\x5f\x36\x13\x06\x2e\x81\xf5\x35\x20\xd5\x4c\xb0\xad\x30\xb8\xe8\xd0\x83\x9a\x72\x19\x9e\x8b\xcb\x5e\x80\x51\x44\x1f\xfd\xfa\x8a\x8a\x91\x72\xc5\x11\xa4\x29\x75\xf7\x44\xbf\xab\xa4\x2c\x39\x44\x92\xac\x47\xe7\xb6\x4d\x9c\xe7\xf2\x93\xb6\xe4\x10\x69\x8f\x7c\x64\x38\xda\x9c\x23\xae\xad\x47\xae\x13\xa8\xb9\x30\x60\x6c\x6e\x8e\x3d\x6f\x51\xfe\x55\x5d\x25\xf4\xf0\x8d\xe0\x93\xee\xe1\x45\xf2\xc3\x02\xa8\xaa\xbd\x43\xcf\xfd\x50\x1b\x6a\x2c\xea\xab\x50\x7b\x80\x26\xa4\xb5\x7c\xe8\xfb\x4e\x36\x13\x68\x73\xc0\xf9\x32\xc0\x12\x33\x2b\x2a\xcb\x57\xfa\xaf\x4c\xf8\xda\xd2\x01\xea\xba\x3b\xcc\x9c\x94\xde\x55\x0e\x10\xbd\x33\x74\x9d\xc0\x25\xa8\x70\x49\x82\x83\x4e\x34\x2b\x4a\x8b\x69\x4e\xe0\xc2\x24\x11\xfd\xd4\xb5\x96\xa9\x48\x9c\x52\x23\xcc\xed\x04\xdb\xde\x7b\xee\xc9\x93\x98\xac\xa6\x1d\xef\xdb\x8b\x6f\x61\x9e\x58\xb4\xf0\x35\x6e\xa9\xb9\x75\xfd\x37\xb6\x0c\x20\x36\x00\xe8\xda\x4e\x9e\xed\x84\x44\xd0\xe3\x84\x72\xbe\x14\x94\xce\x9f\xcd\x04\x43\x55\x18\xe8\x51\x83\x87\xdb\xac\x69\xaf\x48\x56\x28\xda\x49\xf8\x5a\x29\xbe\xa2\xbe\x02\xa8\x96\xc9\x90\x33\x45\x1c\x0c\x5d\x7f\xa1\xb2\xc2\x81\xf4\x41\x6e\xab\xa6\xc0\x62\x26\x5b\xc5\x72\x69\x02\x48\x2c\xfa\xe6\xa5\xcd\x14\x0b\x3b\x22\xa6\xea\xce\xb4\x33\x6c\xab\x62\x12\x6a\x88\xa8\xd4\x49\x64\x22\x75\x25\x16\xe7\xd4\x7e\x26\x88\xf6\xa8\xba\x16\x43\x51\xa9\x89\x70\x06\x8a\x68\x64\xae\xaa\x31\xa0\x63\x3c\x97\x7f\x9b\xa1\x96\xfa\xaf\x28\x32\x94\x81\x55\x12\xdc\x20\x16\xae\x6b\xb2\x09\xc1\x94\xf3\x14\xe6\x34\x6b\xaa\x0c\x4c\xe7\x1e\x50\x3c\x63\xf0\x9e\x98\x35\x5d\x66\xd1\x9d\x19\x2c\x2f\xce\x88\x7e\xad\xda\xc5\xe6\x54\x5c\xe0\x4e\x16\x83\xe0\x05\x59\xb8\xd9\x01\xf5\xee\xc9\x76\x49\xdb\x85\x9b\x9d\x01\xad\xcc\x69\x72\xcc\x34\xb2\xb9\xdd\xcd\xf6\x5c\xb8\xc9\x84\xda\x61\x81\xbc\x69\x77\xed\x2a\xb7\x7f\xca\x84\xa4\x35\x7d\x93\x5a\x39\x23\xd7\x58\x7a\xf2\xd3\xc4\xbe\xad\x6d\xf3\x23\x9c\x10\xe6\x42\x1a\x63\xbb\x19\x56\xd3\x06\x0c\x74\xb6\x82\x3d\x45\x57\x69\xa1\x82\x0b\x12\xa0\x65\x79\xb1\x07\x7d\xfd\x37\x2e\xe8\x85\x7d\xe2\xbd\x68\xbf\xa3\xaa\x34\x94\x7f\x7b\xee\xde\x62\x85\x30\x74\x9d\xe6\x38\x06\x1c\x10\x02\x54\x9a\xf9\xda\x76\x82\x43\xb7\x37\x3a\xe3\xcb\x4d\x8a\xea\x78\xcb\x88\xa3\x08\x2e\x93\xb4\xd8\xf0\x63\xb7\x05\x9c\xd3\x2f\xe8\xc4\x9e\x96\x1a\x54\xee\x94\x01\x9d\x24\xee\xa8\x83\x86\xe7\x3d\x91\x4d\x33\xc5\xfb\xda\x7a\x9d\x22\xb7\x7d\x43\xe2\x46\xa9\x81\x13\xd5\x84\xa9\x93\x71\x3f\xa3\xd1\x6a\x13\x21\x64\x00\xf9\x40\xe9\x39\x12\x1b\xad\x86\x74\x8d\xc1\x9d\x75\x01\x29\x07\xbb\xa2\xd5\xa8\xce\x84\xb4\x41\x80\x33\x3c\xf4\xfc\xb1\x8d\x56\x63\x4e\x54\x0e\x46\x30\xe5\xb1\xca\x38\xbb\x9b\x31\xfe\x75\x87\xfb\xbd\x71\x5a\x8f\xbc\x46\xad\x81\xbc\xd9\xa1\xef\x60\x12\x97\x4f\xd5\x6a\xbe\xd0\xad\x73\x08\xf4\xd9\x28\x28\xc7\xf4\x63\x1e\x99\xac\x3a\x73\xf5\x86\xe9\xd8\xba\x4d\x3b\xc5\x30\x11\x5a\x6d\xda\x6e\xbb\x68\x7d\x77\xd2\x3d\x13\x5d\x0f\x43\x2d\x98\x58\x2a\x65\xab\x67\x1d\x21\x51\x90\x82\x8f\xff\xb5\x8b\xad\x74\x87\x1d\x4a\x04\x7d\x71\x5c\x82\x9d\xe3\x57\x74\x1b\x57\xdb\x24\xc6\xd6\x0c\x4d\x13\x03\x6d\xed\x20\x9a\xdb\x64\xae\xf8\xf0\x38\xee\x7e\x4d\xb9\x0d\x53\xd0\xc7\xd9\xca\xe3\xd8\x4e\x69\xce\x7b\x06\x39\x0c\x37\x8a\x65\x8e\x3d\xbf\xa2\xde\x62\xe4\xc8\x31\x9c\x65\xe7\x85\x48\x34\xfd\x16\x6b\xaf\x3a\xa6\x68\x35\x62\xbb\x54\x05\x17\x53\x85\x0b\x47\x2e\x8f\xc9\x3d\x03\x9e\x6d\xbf\x2b\x98\x4a\x63\x4c\x56\x74\xff\x23\xbe\xd5\x27\x16\xb4\x95\x2e\x70\x28\x68\x81\x64\x6f\xa7\x1c\x02\x5a\x22\x52\x59\xa5\xa4\x85\xd2\x8e\x71\x28\x74\xd4\xf9\xa6\x5b\x2b\x1a\xe4\xaa\xc2\x0f\x85\xa9\xf2\x90\x96\x88\x1a\xa5\x4e\x73\xd3\x81\xe6\xa8\x00\x9b\x41\x1c\x13\xf5\xa7\x42\xc2\x93\xcc\x4f\xbf\x5f\xa4\x60\xd8\xf9\x7a\x86\xc8\x8c\x22\x5a\x89\x0c\x7d\xcb\x0e\x79\xc2\xd0\x08\xd0\x19\x6e\x47\x2b\x11\x45\xaa\x82\xf3\xa0\x4e\xb3\xcc\x04\x87\x0a\xea\x05\x6a\xe9\xdd\x14\x0b\x0e\xd5\x4a\xe0\x93\xfa\x4e\xbf\xcd\xd1\x47\x8a\xcd\x32\xea\x8e\x31\x42\x7e\x4d\xc7\xe1\x51\xb6\xd3\xeb\x5f\x16\x1a\xfd\xee\x1e\x83\xc0\x54\xf3\xd4\x22\xcd\x79\x41\x2f\xa8\x1e\x75\xc3\x99\xa4\x00\x30\xa3\x4d\x88\xcc\xa5\x65\x1d\x17\x0d\xab\x91\x3c\xd1\xe6\xa7\x8e\xb4\xa2\x39\xeb\x03\xc7\x2f\xb9\x68\x35\x08\x0e\x22\x55\xea\xcc\xb4\xe6\xb8\x3b\x6b\x11\x2b\xd1\x94\x5c\x60\xa2\x29\x03\x3a\xbb\x71\xf1\x51\xeb\x18\xdf\xcc\xb1\x9c\x97\x44\x5f\x82\xcc\x09\xed\x15\x35\x17\x38\x4d\x60\xb9\x04\xd9\x9a\xa6\x6d\xb1\x7e\xe6\x1d\x73\x64\x67\x78\xe5\x69\xe8\xa6\x34\x1b\x10\xf0\x5e\x31\xe5\xda\xe8\xe8\xf4\xf4\x6c\xed\x45\x89\xac\xab\x49\x3e\xce\x23\xb2\xa3\x9e\x5f\x79\xb9\xc6\x23\x0f\xc0\x62\xc6\xa9\x4c\x2b\xaa\x2e\x04\xe8\x21\x93\xb9\x00\x87\x39\xd0\xd2\x8a\xb2\x0b\x9e\x1d\x6d\xa4\x5e\x6b\x66\x31\xad\xa8\xbb\x60\x99\x38\x0c\x18\x1d\x13\x44\x3b\x07\x4d\xdf\x79\x06\x8a\x39\xd6\xde\x5e\x1c\x65\x55\xe1\xcd\xc8\xfa\x0b\xaa\x4c\x5d\x4f\xe0\xd9\xdc\x7c\x7e\xb3\x12\x57\x14\x39\x60\xe4\x54\x72\xa2\x3a\x85\x1b\x84\x98\x61\xea\x87\xee\x17\x79\x42\x77\x0a\xa6\xb6\x39\x2c\x1c\xb6\xed\x69\xf3\xc4\x0c\x97\xd1\xf0\x04\xc1\xb4\x71\xf9\x46\xe3\xb0\x68\xa6\x38\x3b\x51\x85\x8e\xcb\x0f\x3d\x39\x8c\x5c\xbe\x4b\x20\xcf\x71\x0c\xaf\x96\xac\xf2\xea\x5e\x3b\xaa\xa0\xab\x18\x00\xa3\xf6\x1c\x92\x9f\xc7\x66\x20\x74\x12\x87\xf7\x82\xb6\xc1\xd3\x95\x1c\x90\x5c\x8b\x15\x10\xbb\xc4\xb3\x80\xf1\x86\xf5\x63\xe0\x66\x6b\x71\x0e\xf7\x6f\x71\x6c\x55\x15\x8f\x9a\x2b\x96\x1a\xa3\x5f\xc4\xd5\xed\xbc\xe8\xc2\xa5\x5e\x99\x32\x08\x0a\xd1\x57\x33\xc5\x43\xa3\x44\xa2\xe8\xa5\x38\x6b\xcf\x17\xd1\x4e\x89\x0c\x35\x42\x66\xce\x06\xc9\x88\xaf\x2e\xc5\xf2\x53\x8a\xe8\xda\xc6\x5b\xf2\x7d\x7e\xff\xde\x87\x1e\x75\xe8\xbe\xfb\xed\xbb\xee\xb5\xae\x75\xad\xff\x7f\x00\x00\x00\xff\xff\x58\x17\xbe\xdb\xc4\x0f\x10\x00"); -func _ec (_g []byte ,_cag string )([]byte ,error ){_fg ,_cf :=_ac .NewReader (_ca .NewBuffer (_g ));if _cf !=nil {return nil ,_fb .Errorf ("R\u0065\u0061\u0064\u0020\u0025\u0071\u003a\u0020\u0025\u0076",_cag ,_cf );};var _cbb _ca .Buffer ;_ ,_cf =_caa .Copy (&_cbb ,_fg ); -_d :=_fg .Close ();if _cf !=nil {return nil ,_fb .Errorf ("R\u0065\u0061\u0064\u0020\u0025\u0071\u003a\u0020\u0025\u0076",_cag ,_cf );};if _d !=nil {return nil ,_cf ;};return _cbb .Bytes (),nil ;};func (_aefb ColorSpace )String ()string {if _aefb < 0||_aefb >=ColorSpace (len (_cdea )-1){return "C\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0028"+_f .FormatInt (int64 (_aefb ),10)+"\u0029"; -};return _cda [_cdea [_aefb ]:_cdea [_aefb +1]];};var _gb =map[string ]DeviceClass {"\u0037\u0033\u0036\u0033\u0036\u0045\u0037\u0032":DeviceClassSCNR ,"\u0036\u0044\u0036\u0045\u0037\u0034\u0037\u0032":DeviceClassMNTR ,"\u0037\u0030\u0037\u0032\u0037\u0034\u0037\u0032":DeviceClassPRTR ,"\u0036\u0043\u0036\u0039\u0036\u0045\u0036\u0042":DeviceClassLINK ,"\u0037\u0033\u0037\u0030\u0036\u0031\u0036\u0033":DeviceClassSPAC ,"\u0036\u0031\u0036\u0032\u0037\u0033\u0037\u0034":DeviceClassABST ,"\u0036\u0045\u0036\u0044\u0036\u0033\u0036\u0043":DeviceClassNMCL }; -func _dg ()([]byte ,error ){return _ec (_cac ,"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063");};func _cc ()([]byte ,error ){return _ec (_cfe ,"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043"); -};func NewISOCoatedV2Gray1CBasOutputIntent (subtype _ae .PdfOutputIntentType )(*_ae .PdfOutputIntent ,error ){_aca ,_cbe :=_aef ();if _cbe !=nil {return nil ,_cbe ;};_gfec :=_ae .NewCustomPdfOutputIntent ("\u0049S\u004f\u0020\u0043\u006fa\u0074\u0065\u0064\u0020\u0047r\u0065y\u0020v\u0032\u0020\u0031\u0043\u0020\u0042\u0061s","\u0049\u0053\u004fco\u0061\u0074\u0065\u0064\u005f\u0067\u0072\u0065\u0079\u0031\u0063\u005f\u0076\u0032\u005f\u0062\u0061\u0073","\u0054\u0068\u0069\u0073\u0020\u0049\u0043\u0043\u0020\u0067\u0072e\u0079\u0073\u0063\u0061\u006c\u0065\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u0020\u0062\u0061\u0073\u0065\u0064\u0020\u006f\u006e\u0020\u0074\u0068\u0065 \u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0069\u007a\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061t\u0061\u0020\u201e\u0046O\u0047R\u0041\u0033\u0039\u004c\u002e\u0074x\u0074\u201c\u002e\u0020\u0054\u0068\u0065\u0020\u0067\u0072\u0065\u0079\u0073\u0063\u0061\u006c\u0065\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0028\u0031c\u0029\u0020\u0069s\u0020\u0063\u006f\u006e\u0073\u0069\u0073\u0074\u0065\u006e\u0074\u0020\u0077\u0069t\u0068\u0020\u0049\u0053O\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f\u0062\u0061\u0073\u002eI\u0043\u0043\u003a\u000a\u002d \u006d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u0062\u006c\u0061\u0063\u006b\u003a\u0020\u0031\u0030\u0030\u0025\u000a\u002d\u0020\u0077\u0068\u0069\u0074\u0065p\u006f\u0069\u006e\u0074 \u0061\u0064\u0065q\u0075a\u0074\u0065 \u0074\u006f\u0020\u0046\u004f\u0047\u0052\u0041\u0033\u0039\u004c\u0020\u0066\u006fr\u0020\u0061\u0020\u0063\u006f\u0072\u0072\u0065\u0063\u0074 p\u0061\u0070\u0065\u0072 \u0073\u0069\u006d\u0075\u006c\u0061\u0074\u0069o\u006e\u0020",_aca ,1); -if _gag :=_gfec .SetSubtype (subtype );_gag !=nil {return nil ,_gag ;};return _gfec ,nil ;};func AssetDir (name string )([]string ,error ){_gegc :=_df ;if len (name )!=0{_cbd :=_a .Replace (name ,"\u005c","\u002f",-1);_aeg :=_a .Split (_cbd ,"\u002f"); -for _ ,_bcc :=range _aeg {_gegc =_gegc .Children [_bcc ];if _gegc ==nil {return nil ,_fb .Errorf ("\u0041s\u0073e\u0074\u0020\u0025\u0073\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064",name );};};};if _gegc .Func !=nil {return nil ,_fb .Errorf ("\u0041s\u0073e\u0074\u0020\u0025\u0073\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064",name ); -};_cfed :=make ([]string ,0,len (_gegc .Children ));for _de :=range _gegc .Children {_cfed =append (_cfed ,_de );};return _cfed ,nil ;};type bindataFileInfo struct{_gf string ;_bc int64 ;_da _fc .FileMode ;_ge _fa .Time ;};func _eg (_gdfg ,_afd string )string {_ffa :=_a .Replace (_afd ,"\u005c","\u002f",-1); -return _b .Join (append ([]string {_gdfg },_a .Split (_ffa ,"\u002f")...)...);};type DeviceClass int ;const (ColorSpaceUndefined ColorSpace =iota ;ColorSpaceXYZ ;ColorSpaceLAB ;ColorSpaceLUV ;ColorSpaceYCBR ;ColorSpaceYXY ;ColorSpaceRGB ;ColorSpaceGRAY ; -ColorSpaceHSV ;ColorSpaceHLS ;ColorSpaceCMYK ;ColorSpaceCMY ;ColorSpace2CLR ;ColorSpace3CLR ;ColorSpace4CLR ;ColorSpace5CLR ;ColorSpace6CLR ;ColorSpace7CLR ;ColorSpace8CLR ;ColorSpace9CLR ;ColorSpaceACLR ;ColorSpaceBCLR ;ColorSpaceCCLR ;ColorSpaceDCLR ; -ColorSpaceECLR ;ColorSpaceFCLR ;);func _ (){var _eeg [1]struct{};_ =_eeg [DeviceClassUndefined -0];_ =_eeg [DeviceClassSCNR -1];_ =_eeg [DeviceClassMNTR -2];_ =_eeg [DeviceClassPRTR -3];_ =_eeg [DeviceClassLINK -4];_ =_eeg [DeviceClassSPAC -5];_ =_eeg [DeviceClassABST -6]; -_ =_eeg [DeviceClassNMCL -7];};func (_ffe bindataFileInfo )Mode ()_fc .FileMode {return _ffe ._da };func _ad ()(*asset ,error ){_ee ,_ggg :=_cab ();if _ggg !=nil {return nil ,_ggg ;};_fd :=bindataFileInfo {_gf :"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063",_bc :60960,_da :_fc .FileMode (436),_ge :_fa .Unix (1628763334,0)}; -_cd :=&asset {_ba :_ee ,_gd :_fd };return _cd ,nil ;};var _gef =[...]uint8 {0,20,35,50,65,80,95,110,125};func ParseHeader (data []byte )(ProfileHeader ,error ){if len (data )< 128{return ProfileHeader {},_ff .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065"); -};_gec :=_ca .NewReader (data );var _dge ProfileHeader ;_cfefd :=make ([]byte ,4);_ ,_cfeb :=_gec .ReadAt (_cfefd ,8);if _cfeb !=nil {return ProfileHeader {},_ff .New ("\u0072\u0065\u0061\u0064\u0069\u006eg\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066a\u0069\u006c\u0065\u0064"); -};_bccc :=_e .EncodeToString (_cfefd [:2]);_bccc =_a .TrimPrefix (_bccc ,"\u0030");_gdd :=_a .Builder {};for _fbec ,_eff :=range _bccc {_gdd .WriteRune (_eff );if _fbec !=len (_bccc )-1{_gdd .WriteRune ('.');};};_dge .Version =_gdd .String ();_ ,_cfeb =_gec .ReadAt (_cfefd ,12); -if _cfeb !=nil {return ProfileHeader {},_ff .New ("\u0072\u0065\u0061\u0064\u0069\u006eg\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066a\u0069\u006c\u0065\u0064");};_fba ,_dgf :=_gb [_a .ToUpper (_e .EncodeToString (_cfefd ))]; -if !_dgf {return ProfileHeader {},ErrUndefinedHeaderDeviceClass ;};_dge .DeviceClass =_fba ;_ ,_cfeb =_gec .ReadAt (_cfefd ,16);if _cfeb !=nil {return ProfileHeader {},_ff .New ("\u0072\u0065\u0061\u0064\u0069\u006eg\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066a\u0069\u006c\u0065\u0064"); -};_add ,_dgf :=_acb [_a .ToUpper (_e .EncodeToString (_cfefd ))];if !_dgf {return ProfileHeader {},ErrUndefinedHeaderColorSpace ;};_dge .ColorSpace =_add ;return _dge ,nil ;};var _acb =map[string ]ColorSpace {"\u0035\u0038\u0035\u0039\u0035\u0041\u0032\u0030":ColorSpaceXYZ ,"\u0034\u0043\u0036\u0031\u0036\u0032\u0032\u0030":ColorSpaceLAB ,"\u0034\u0043\u0037\u0035\u0037\u0036\u0032\u0030":ColorSpaceLUV ,"\u0035\u0039\u0034\u0033\u0036\u0032\u0037\u0032":ColorSpaceYCBR ,"\u0035\u0039\u0037\u0038\u0037\u0039\u0032\u0030":ColorSpaceYXY ,"\u0035\u0032\u0034\u0037\u0034\u0032\u0032\u0030":ColorSpaceRGB ,"\u0034\u0037\u0035\u0032\u0034\u0031\u0035\u0039":ColorSpaceGRAY ,"\u0034\u0038\u0035\u0033\u0035\u0036\u0032\u0030":ColorSpaceHSV ,"\u0034\u0038\u0034\u0043\u0035\u0033\u0032\u0030":ColorSpaceHLS ,"\u0034\u0033\u0034\u0044\u0035\u0039\u0034\u0042":ColorSpaceCMYK ,"\u0034\u0033\u0034\u0044\u0035\u0039\u0032\u0030":ColorSpaceCMY ,"\u0033\u0032\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace2CLR ,"\u0033\u0033\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace3CLR ,"\u0033\u0034\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace4CLR ,"\u0033\u0035\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace5CLR ,"\u0033\u0036\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace6CLR ,"\u0033\u0037\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace7CLR ,"\u0033\u0038\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace8CLR ,"\u0033\u0039\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace9CLR ,"\u0034\u0031\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceACLR ,"\u0034\u0032\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceBCLR ,"\u0034\u0033\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceCCLR ,"\u0034\u0034\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceDCLR ,"\u0034\u0035\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceECLR ,"\u0034\u0036\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceFCLR }; -func _cab ()([]byte ,error ){return _ec (_dd ,"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063");};var (ErrUndefinedHeaderDeviceClass =_ff .New ("\u0075\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0064\u0065\u0076\u0069\u0063\u0065\u0020\u0063la\u0073\u0073"); -ErrUndefinedHeaderColorSpace =_ff .New ("\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064\u0020\u0068\u0065\u0061\u0064\u0065r\u0020c\u006f\u006c\u006f\u0072\u0020\u0073\u0070a\u0063\u0065"););func _cae ()(*asset ,error ){_bd ,_ga :=_aef ();if _ga !=nil {return nil ,_ga ; -};_bf :=bindataFileInfo {_gf :"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063",_bc :936,_da :_fc .FileMode (436),_ge :_fa .Unix (1628763334,0)};_gdf :=&asset {_ba :_bd ,_gd :_bf }; -return _gdf ,nil ;};func RestoreAssets (dir ,name string )error {_db ,_fdd :=AssetDir (name );if _fdd !=nil {return RestoreAsset (dir ,name );};for _ ,_gc :=range _db {_fdd =RestoreAssets (dir ,_b .Join (name ,_gc ));if _fdd !=nil {return _fdd ;};};return nil ; -};type asset struct{_ba []byte ;_gd _fc .FileInfo ;};func Asset (name string )([]byte ,error ){_ade :=_a .Replace (name ,"\u005c","\u002f",-1);if _ab ,_edf :=_dad [_ade ];_edf {_gga ,_cfef :=_ab ();if _cfef !=nil {return nil ,_fb .Errorf ("\u0041\u0073\u0073\u0065\u0074\u0020\u0025\u0073\u0020\u0063\u0061\u006e\u0027\u0074\u0020r\u0065a\u0064\u0020\u0062\u0079\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",name ,_cfef ); -};return _gga ._ba ,nil ;};return nil ,_fb .Errorf ("\u0041s\u0073e\u0074\u0020\u0025\u0073\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064",name );};func _ (){var _bcb [1]struct{};_ =_bcb [ColorSpaceUndefined -0];_ =_bcb [ColorSpaceXYZ -1];_ =_bcb [ColorSpaceLAB -2]; -_ =_bcb [ColorSpaceLUV -3];_ =_bcb [ColorSpaceYCBR -4];_ =_bcb [ColorSpaceYXY -5];_ =_bcb [ColorSpaceRGB -6];_ =_bcb [ColorSpaceGRAY -7];_ =_bcb [ColorSpaceHSV -8];_ =_bcb [ColorSpaceHLS -9];_ =_bcb [ColorSpaceCMYK -10];_ =_bcb [ColorSpaceCMY -11];_ =_bcb [ColorSpace2CLR -12]; -_ =_bcb [ColorSpace3CLR -13];_ =_bcb [ColorSpace4CLR -14];_ =_bcb [ColorSpace5CLR -15];_ =_bcb [ColorSpace6CLR -16];_ =_bcb [ColorSpace7CLR -17];_ =_bcb [ColorSpace8CLR -18];_ =_bcb [ColorSpace9CLR -19];_ =_bcb [ColorSpaceACLR -20];_ =_bcb [ColorSpaceBCLR -21]; -_ =_bcb [ColorSpaceCCLR -22];_ =_bcb [ColorSpaceDCLR -23];_ =_bcb [ColorSpaceECLR -24];_ =_bcb [ColorSpaceFCLR -25];};var _dd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xb5\x65\x54\x22\x6c\xf4\xf6\x8b\xd3\xe1\x84\x13\xce\xcc\xe3\x84\x93\x3a\x76\x2b\x8a\xa0\x20\x25\x4a\x1a\xa8\x28\xa2\xa0\x18\xa0\x82\x8a\x89\x81\x62\xa1\xa2\x60\x27\x16\x88\x8a\x81\xdd\x35\xc6\x74\x3d\xd3\xdd\xdd\x9d\x67\x3d\xff\x73\xd6\x59\xe7\x7c\x79\xdf\xf5\xee\x0f\xf7\xde\xd7\xbd\xee\xbd\xf7\xbd\xae\x2f\x3f\x00\xe0\x8d\x2e\x00\x00\x00\xac\xd2\x05\x00\xb8\xd1\xb4\x60\x22\x12\xaa\xeb\x46\x0b\xd2\x5d\x7b\x15\xb0\x16\xb0\x07\x00\x00\xac\x06\x1c\xa5\x05\x73\xa3\x01\xff\xcb\xf8\x72\x05\xa0\xf1\x5f\xbe\x64\xfc\xdf\x69\xe5\x65\x30\x55\xe5\x76\x66\x0d\xcb\xc8\xfb\xe0\xf9\x2b\x22\xff\xff\x75\x2f\x60\x3d\x9d\xc1\x0d\x06\x00\x00\xef\x00\x00\x40\xbc\xb3\x05\xd4\x0c\x00\xd0\x60\x02\x00\xb1\x5b\x9d\x2d\xa0\xe6\x00\x40\x5c\x02\x00\xa0\xd1\x0f\xb5\x70\x36\x03\x00\x78\x46\x00\x40\xac\x15\xd4\xc2\xd9\x1c\x00\x78\x19\x08\x00\x68\xfc\xe2\x84\x85\x9a\x01\x00\xaf\x29\x00\x00\x40\x93\x17\x1b\x1d\x0b\x00\xbc\x66\x02\x00\x80\x1d\xc1\xd1\x9c\xff\xea\x94\xff\x66\x06\x33\x69\x74\x00\xe0\xf5\x27\x00\x00\x60\xc4\x8a\x8c\x0b\xfe\x7f\xf6\xfe\xf7\x63\x4d\x06\xdb\x93\x04\x00\x00\x7c\x01\x00\xc0\x5e\x00\x17\x40\x04\x20\x01\x50\x80\x2e\x20\x1e\x60\x05\xd0\x05\xa0\x01\x30\x00\x0c\xa0\x0b\x88\x06\x70\x00\x0c\x40\x08\x80\xf1\x3f\x99\x0d\x08\x06\x30\xfe\xe7\xf6\x3f\xfd\x5f\x1d\x0d\x88\x05\xc4\x01\x68\x80\x48\x80\x2e\x20\x0c\xc0\x06\xc4\xfe\xcf\xab\x58\x80\x2e\x20\x08\xc0\x00\xc4\x02\x68\x00\x00\xcb\x19\xfa\x3f\x3e\xaf\x5c\xf9\x3f\xbb\xff\xab\xf1\x00\x00\x20\x1d\x00\x00\xf4\x00\x00\xdc\x57\xd1\x34\x0e\xed\xff\x75\x44\x03\x00\xf8\xdf\xe9\xff\xdb\xef\xff\x4f\xfc\x6f\xf4\xff\xe9\x7c\x2d\x2d\xad\xff\x5f\xff\x0a\x00\x00\xb0\xf6\x6b\x7a\x7a\x7a\xfa\xda\x91\xac\x02\x5e\xe2\x3a\x68\x2e\x91\xdd\xbc\x9e\x26\x72\x65\x9c\xd3\x4c\x12\x7b\xf8\xdf\xd8\x5c\x23\x8d\xf2\x8a\xd7\xc2\x57\x16\xe3\xb6\xed\xb4\xab\x25\xa2\x6e\xec\xd1\x68\x78\x00\xcd\xd7\x59\x6e\xea\x70\x7c\xbd\xdf\xa5\xe5\xab\xfd\x5a\xdd\x17\x6d\x9f\x6d\xb0\x87\x47\x14\x4b\x16\x45\xc7\x20\xca\x32\x93\x41\x7d\x49\x67\xbe\x01\xc0\xe8\x1f\x15\xfe\x68\xbf\xe9\xf9\x9e\x95\x07\x54\xeb\xab\x12\xd6\x08\xc9\x9b\xcd\x92\x2a\x52\x42\xb7\x3c\xe7\xdf\xe2\x1e\xd6\x9a\x16\xd8\x85\x33\xb6\x7f\xcd\xf1\xa6\xf5\x68\x77\x88\x0c\x7c\xc4\x7b\xdc\xc4\x6a\x82\x64\xef\x3e\xe9\x2d\xd7\x85\x03\xb4\xca\x3e\x17\xff\x43\xef\x6a\x8f\x81\x1f\x1f\x5b\x5f\xff\xce\xfe\x83\xbe\x44\x06\xb5\xc5\x1b\xfc\x68\x76\xb6\x9c\x35\x96\xb6\x6e\x33\xc3\x9a\x25\xb5\x3d\x30\x72\xb2\x4c\x51\x54\xe8\x93\x6c\x10\x4a\xad\x23\x23\x3b\x1a\xa3\x7e\x17\xf0\xb5\xb7\x71\x08\x99\x76\xbb\x8a\xe2\xf2\x12\x86\xf7\x38\x27\x16\x46\x91\x75\xfc\xf8\x2e\x21\x2b\xf7\x95\x08\xf4\xfd\x4d\x74\x57\xe4\x12\x3c\xee\x1d\x7a\x23\xfa\xee\x1e\x76\x74\x40\xfc\x13\xf1\x5b\xff\xaa\xf4\x8e\xd3\x1d\xc3\xd7\x95\x2b\x40\x29\x26\x2f\xab\xdf\xda\x35\x99\x1b\xd7\x59\x59\x4d\x5b\x65\x34\xee\x35\x67\xd9\x82\x9a\x00\xc6\xb7\xec\x77\x37\x2b\x0d\x02\x41\x2f\x5a\x81\xc7\xbe\xed\x97\x86\xc6\x95\x64\xee\x6f\x09\xcb\xcd\x3d\xb8\xff\x61\xc4\x63\xbe\x5a\xd7\x3a\x7a\x4d\x6c\xd7\xc1\xbb\xb1\xfb\x22\x0e\x1d\x09\x49\xdc\x46\xbb\xa5\xe7\x96\xb6\xda\x47\xfb\x78\x66\xd6\x0e\xfc\x88\x11\x32\xb7\x0c\xfd\xd5\xe4\xb9\x68\x10\x76\xc9\xfc\xa4\x38\x0f\x5c\x6e\xa5\x90\xcc\xd9\x1b\xdb\xd4\x97\x43\xad\x6f\xdb\x1f\xac\x1a\xb0\x08\x72\x54\xd4\x01\x4c\xb5\x9d\x14\x0d\xd6\x86\x93\xb0\xc0\x46\xb5\x7e\xcc\xf1\x07\x54\x62\xc5\xa8\x81\x7e\xa0\xb8\xe8\xaf\x1e\x85\xe6\x95\xf5\x5d\x7f\x0b\xc3\x2c\x39\x5e\xbf\x30\xcc\x2a\xfa\xb7\xe1\x30\x5b\x1d\xca\x37\x59\xc9\xfd\x13\x60\x64\x36\x9a\x64\xec\x19\x6c\x09\x4e\x1b\x72\xf7\xb5\x3e\x93\xb5\x0b\xf1\xc4\xb6\x22\xe7\x8d\x13\x01\x58\x5a\xc0\x72\xa8\x04\x6d\x29\xfa\xd7\xd6\xc5\x89\x2d\xd9\x69\xb5\x0d\x96\x59\xce\x30\xe3\x21\x3c\xaa\x56\x1b\x6f\x47\x6b\xd7\xa0\x8e\xf7\xd9\x10\xbc\xea\x1a\x22\xac\xcd\xbd\xcb\xcb\xe5\x96\xf7\xc9\x13\x85\xa3\xe6\xad\xbe\xaf\x05\x25\x66\x33\x01\x06\x09\x0a\x0b\x4e\xf0\x36\xd6\x37\x6b\x5b\xe6\x14\x7d\x97\x1d\x92\xfd\xcb\x4f\xd3\xde\x23\xf6\x32\xf1\x38\xe8\x7a\x92\x97\xeb\x0f\x70\x3c\xff\xa2\x0b\xd7\xf9\xa1\xe0\x1d\x44\xd7\x65\x55\xce\x5f\x7b\x57\x64\xb4\xc8\xca\xc6\x07\xfd\xab\x78\xda\x02\xef\x16\x57\x7a\xc1\xa4\x1c\xb7\xb7\x4c\x60\xb8\xd9\x59\x8e\x35\x69\x7b\xe6\x2c\xc0\x6d\xae\xef\x84\x8c\xe1\xfa\xcb\x3e\x3a\x72\xf0\x4d\xa2\x34\xe0\x27\x62\x60\x46\x9d\xbd\xc4\x7b\x4b\xbc\x29\x48\xed\xbf\x39\x7c\x14\x62\x1c\x6c\x15\x38\xe5\xbc\x27\x2c\xc0\x7b\x0b\xec\x76\xd4\x02\xee\x08\xc2\x26\x8e\x8a\xb2\x40\x6b\x24\x5d\x82\xee\xc2\x3c\x4e\x3f\xe8\xe8\x80\xa5\x67\x09\xed\x3a\xf0\x57\x73\xe3\xad\xc2\x49\xc7\x0a\xbe\x98\xb9\x7b\xbe\x28\xb6\x34\xe2\xba\x7f\x41\x68\x75\xd7\xba\xfd\x46\xf8\xcb\x2d\xdc\x56\x23\x96\xea\xcf\xa3\x5b\x90\xee\x65\x83\x70\x11\x72\x5d\xc1\x65\xf8\x6e\x8c\x59\xba\xd0\xa5\x07\x8f\xe5\xc6\x22\xd4\x5e\x5f\x43\xcb\x51\xe7\xfc\x27\x28\x6f\x31\x3e\x74\x92\xc7\x46\xf7\xcb\xe1\xc3\x6e\x19\x78\x4c\xf4\x67\xf8\x2f\x92\x61\x7c\x39\xe4\x9a\xd7\xde\xe4\x4b\x0e\x01\x64\x4e\x3a\xcf\xe6\xa9\xaf\x30\xcb\xce\x42\x44\xb9\x9a\x33\x63\xe2\xe5\x77\x13\xac\x18\x6c\xa7\x40\x20\x8b\xaa\x13\x3e\x13\x10\x0f\xb9\x86\xd7\x67\x70\x7b\x83\x16\x91\xe1\x18\x5f\x96\x86\x2f\x85\xfc\xca\xf7\xc7\xbe\x82\x41\x53\xff\xe0\x0e\xa1\xee\x46\x3f\xc1\x13\x09\xbb\x83\xc7\x48\x06\xe4\x1c\x9f\x07\x9e\x43\x54\x57\x82\x2d\x99\xc4\xb8\xe9\x8a\xf1\x5d\x88\x3c\x04\x9b\xf6\xff\xc1\x01\x82\x89\x81\x38\x1e\x1c\x58\x17\x44\x4f\xfe\x6a\xbd\x96\x8e\x4b\xc7\x9b\x45\x85\x1d\x07\x12\xc7\x77\x31\xf3\x80\xfb\x06\x4c\x43\x15\x76\xa7\x55\x28\xc6\x7a\x5b\xa8\x5c\x9f\xc6\xb6\xde\xd2\xb0\xe4\x3f\x6b\x6d\x53\x66\xe7\x17\x6b\xf3\x21\xef\xbc\xef\x11\x7b\x59\x4a\xb2\xef\x6e\xe8\x12\x7b\x07\x65\x9d\x1b\x3f\x70\x34\xc0\x80\xf4\xd8\x1b\x43\x5b\xe5\x5b\x8d\x0b\x0c\x6a\xa5\xad\x40\x61\x19\x7d\xa1\x59\x50\x57\x26\x97\xd5\x0d\xba\x1a\x2e\xe2\x3c\xb1\xbd\x18\x49\xe1\x89\x2c\xee\xc6\x57\x5a\x2f\x4e\x07\xc6\x0d\x5a\xaf\x1b\x29\x8d\x95\x59\x1d\x56\x67\x70\xf2\x2c\x82\xba\x9c\xa3\xb6\x99\x74\xb4\xfd\x64\xd5\x1b\x5d\x69\xcc\x61\x46\xeb\x4d\x94\x7f\x0d\xb1\x31\xc1\xe6\xf6\xd0\x1b\x2c\xed\x93\x80\x8c\x37\x8e\xd8\x08\x6e\xa8\x23\x62\x39\x40\x19\xc6\xc7\x7e\xf1\xdc\x1b\x7e\xd3\x93\xe2\x7e\x98\xe5\x4c\xf1\x44\xfc\x1b\x75\x2d\xe8\x86\xd3\x22\xa7\x39\xcc\xc4\x21\x38\x76\x89\x7d\xc2\xfa\x41\xa6\xbb\xa5\xd3\x2c\x3a\x53\xcb\xa2\x6b\x3c\x21\x83\x65\x1e\x36\x64\x95\x1e\x6e\xaa\xec\xdb\x9d\x7a\xc5\xd8\xaa\xd3\x28\xe9\x9c\xc1\xed\xd6\x70\xde\x75\xfd\xd5\xf5\x69\xb1\x86\x47\x63\xa5\xa0\x98\x56\xbd\x0d\x39\xfc\xe8\x9b\xa6\xb6\x09\x80\x18\x43\xbb\x1d\xcc\x01\x0e\x05\xaa\x4d\x11\x72\xef\xa3\x7f\x12\x2f\xc7\x1f\x21\x8c\x62\xce\x24\x44\x90\xe7\xe0\xea\xa4\xd3\x54\x26\xe4\x6c\xca\x24\x83\x02\x3c\x25\xa2\x9a\x2b\xe7\x64\x22\x9c\x79\xd8\xe4\xba\x82\x05\xb3\xf5\x23\x36\x79\xf5\x46\x25\xfd\x63\x79\x0c\xc3\x4f\xdd\xf7\x84\x49\xc7\xa3\xdb\x6b\x32\x15\x47\x8b\x9b\x69\xe9\x85\x47\x1e\xd6\x40\x53\x31\x87\x11\x25\x3b\x93\xd3\x8e\xea\x64\x1d\x4f\xf8\x71\x6c\x3c\xf6\x6a\xd2\x26\x8b\x48\x46\x64\x22\xc7\x61\x96\xcc\x49\x99\x80\x2f\xe2\x33\xf8\xf7\xdc\x51\xe8\x8e\xcc\x45\xcf\x10\x17\x46\xd6\x1d\xca\x3a\xc7\x97\xd2\xdf\x66\xce\xf3\xf3\x65\xfa\x66\xf0\x29\xb4\xf4\xa5\x29\x76\x74\x54\x2a\x30\xd1\x19\x84\x49\x5e\x1a\x75\xf5\x9e\x2a\x15\x1b\x1e\xec\xcc\x10\xd3\x8f\x1f\x68\x2b\x2e\xca\xd3\x7b\xda\xc8\x2d\x30\x38\x7a\xaa\xa2\x22\xc7\xe1\xf0\xfa\xc2\x56\xe1\x9d\x63\xb4\x0c\xed\xec\x5e\xfd\x14\x4e\x6b\xd6\x9c\xf9\xef\xe0\xc7\x39\x87\x1c\x6d\x7c\x80\x79\x18\xf8\x39\xc2\xa1\x02\x81\xdb\x55\x57\x48\xa1\x27\xc9\x0e\x96\x59\xfb\xca\xa4\x78\x61\x57\x1d\xc3\xe4\xe3\x74\x51\x1d\xc5\x24\x78\x7c\x53\xdd\x01\xe3\xb2\xa1\xee\xda\x73\x46\x4a\x35\xae\xf6\xb8\x61\x85\xaa\xab\x3a\xdc\xe0\x90\xe2\x6d\x65\xad\x7e\x59\xb3\x75\xb9\x4a\xcf\xb1\xb6\x54\x3a\x79\x2c\x53\xba\x49\xa2\x7b\xec\x5a\xde\x8f\x52\xb4\xfe\x6b\xfe\x96\x12\x43\xc3\x99\xe8\xd4\x92\x10\x6b\xbd\xe0\x97\xa5\xa7\xc1\x9a\x3e\xa1\x12\x19\x7c\x0d\xfe\x64\x59\x2e\xa6\x02\xad\xd7\xa2\x34\x82\x2f\xa6\xb4\x82\x8c\xee\xcc\x3c\x6f\x75\x35\x22\x4c\x78\xb4\x1e\x34\x14\x0e\xff\x6a\x79\x64\x20\xed\xef\x6b\xa9\x3d\xde\xd8\x13\xd4\x2c\xd7\xff\xb7\x63\x4f\x53\x84\xde\xa7\xd6\xee\xc6\xbb\xc7\x7e\x35\x02\x1b\xec\x8f\x9d\xab\x94\xd5\x09\x8f\x99\x88\x67\x6a\xe3\xf5\x46\x84\xf1\x35\x4f\x0c\x2a\x92\x8d\x6b\x78\xa6\xfe\x51\x9b\x6a\x06\x6c\xd4\xc1\xff\xd4\x0a\xc0\x24\xf2\xed\x3a\x9c\x0b\x13\x7f\xa4\x8b\x74\x5c\xb5\x34\xd6\xa5\x34\xd8\x35\x07\xee\x12\x1d\xcf\x9f\x2c\xe8\xca\xd6\x87\x8c\xfa\x76\x85\xe9\xe9\x0e\xae\xe8\x0a\x3b\x3a\xd8\x7b\xae\x0b\x72\x64\xa2\x4b\xa3\xcb\xe4\x70\x9b\xfc\x42\xd7\x86\x43\xf9\x4d\xa3\x9d\xfe\x87\x74\x6b\x3b\x95\xf7\x0f\xe5\x94\xe9\x28\xea\x0f\x07\x15\xee\x68\x63\x1e\x7d\x22\x38\xd2\x6a\x65\x00\x4e\x18\x6a\x35\x33\xc5\xb1\x09\xad\x86\x36\x5a\x41\xa7\x5b\xad\x1d\x93\xbd\x7f\xae\x8b\xc8\xa9\xc9\x36\xdf\x38\x98\xff\x22\x99\xb4\x89\x57\xf8\x82\x33\xb7\x65\xb9\x84\x18\x8e\xd6\x3a\x2b\x1d\xa5\x3d\xdf\xa1\x5b\xa9\xf2\x85\x68\xdf\xab\x4d\x20\x46\xfe\x73\xbc\x51\x0f\xd3\xb9\xf7\x4f\xb3\x07\xfc\xf2\x01\x55\x9b\xa6\x13\xfe\x90\xb9\x02\x0a\xc2\x1e\xf9\xa1\xdc\x69\x17\xa5\xb7\xd4\x71\xd2\xaa\xd3\x60\xa9\xcb\xcd\x5c\xcb\xf8\x62\xb7\x86\xd1\x09\xb3\x77\x3d\x72\xfd\xa3\x96\x53\xbd\x6f\x8e\x28\xb6\x9d\xe2\xbf\xcd\x9b\xd7\xde\xf4\x1f\x31\xb5\x17\xb3\xca\x78\x51\xbb\x0f\xe7\xc2\xd8\x09\xff\xc0\x45\x44\x46\xe1\xde\x0e\xb1\x98\xf2\x67\x7f\x96\xb4\xd3\x73\xd5\x41\x9d\xca\x52\xf7\xfa\x23\x9c\x5a\x34\x12\xa7\xbf\xa2\xe1\xbe\xd3\x49\x03\x5c\x13\x1c\x74\xd7\xa8\xb7\xc5\x1f\x08\x36\xb5\x69\x03\x5b\x8f\x98\x7f\x92\x7f\xb4\x40\x5a\xdd\x6b\x2f\x36\x69\xb3\x3d\xd5\xb1\xc9\xe0\x85\x7d\x6b\x67\x80\x5e\x9c\x8e\x0f\x4f\xab\x48\xba\x4f\x37\xe1\x7e\x76\xcb\xfe\x0f\xc9\x36\x29\x43\xba\x8b\x69\x1b\xb8\xd4\x43\x24\x01\x36\xfc\xc0\x91\xad\x39\x05\x81\xef\x8f\x61\x44\x44\x72\x99\x7e\x91\xb8\x02\x1f\x62\x68\x26\x2d\x72\xdd\x6b\x72\xa8\x92\x09\xab\x34\x37\xab\x99\x04\x3b\x5b\x69\xd6\xe7\xd8\x07\xdb\x54\x35\x7e\xb0\x39\x03\xfc\xa7\xe9\x87\xa5\x8f\xc3\x42\xcb\x39\xd3\x67\x60\x69\x1b\xca\xa8\xc4\xd9\x59\x5e\x76\x1c\x7d\x94\x15\xb5\x59\x0a\x38\x36\x17\x3d\x55\xb0\x5f\x6f\x9e\xa3\xca\xf4\xd3\xbf\x18\x37\x9d\xf0\xcb\xc0\x38\x31\x3c\x2a\xcb\x08\xc5\xf7\x08\xd9\x68\xb2\x55\x60\x41\x79\x65\x7a\x35\xe7\xb9\x07\xc7\xc2\x5f\x64\xe7\x6e\x63\xed\x20\x4e\x44\xee\xb5\xbd\x2f\x65\x3a\x89\xec\x0b\x2a\x6a\x41\x76\x8e\x96\xd5\x0a\x3b\x04\xe4\x5d\xdd\x88\x55\x2e\xb4\xad\xd1\xc6\x1c\x00\x37\x95\x75\x1a\x8f\x22\x27\x9a\x37\x1a\xb0\x4c\x07\x43\xde\x56\xdb\x9b\x6b\x85\xbe\x2b\x69\x37\x8f\x0d\xbb\x93\xab\xb6\x70\x8a\xdc\x96\x36\x6a\xc9\x8d\xde\x10\xe7\x63\xc5\x88\xdd\x14\x71\xd9\x46\x27\xe1\x52\x10\xc7\x8e\xcc\x27\xfb\x94\xda\x5b\x09\x2c\x09\x16\xa0\xac\x9c\x61\xd7\x6a\x88\x8d\x88\xe8\xb2\xc1\xf9\x8d\x38\x18\x9c\xe8\x72\x50\x92\x67\x4f\x47\xf0\xca\x0b\x6c\x92\x50\x4f\xab\x42\x2c\x54\x98\x98\x9a\x4f\xa6\x5b\xb1\x7a\xf5\xdb\x0c\x87\x41\x7d\x01\x81\x32\x4d\xc7\x72\x6a\x4d\xe5\x12\x38\x36\xf0\x92\x78\xce\xd1\x3d\x68\x38\xc7\x04\x74\x92\xe1\x9c\x4a\x74\x0c\x0d\x2b\xe0\x30\x20\xd6\xec\x12\xa6\xc2\x29\x9f\xcb\xa0\xba\x42\x7d\x12\x57\x7a\x55\xbb\x8c\xf2\x41\xd8\x59\xc4\x82\x60\x2f\x2a\x0e\xf5\x3c\x47\xe5\x7c\x07\x03\x2b\x58\x04\x7d\x75\xaf\x28\x4e\xb7\x9b\xc4\x75\x96\xaa\xad\x54\x84\x97\x65\x7c\xb3\x31\x8f\x94\x8a\xdb\xc6\xc6\xc8\x66\xcf\x8f\x0a\x07\xf4\x31\xef\x4d\x0d\xef\x51\xe7\xc9\x9a\x15\xfd\xa8\x7f\x7d\x8e\x17\xf3\x90\x77\xfd\x44\xd9\x30\xd4\x56\x2a\x3a\x89\x81\x02\x06\xbf\x88\xb2\x45\x3b\x85\x01\x18\xe9\x18\x37\xb6\x94\xd2\xe9\x76\x36\x76\x97\x87\x26\x76\x3a\x91\xea\x96\x49\x58\xcf\x9f\x44\xec\x22\xbe\x15\x44\x40\xce\x7a\xfc\xce\x89\x70\x70\xf1\xd6\x2d\xd8\x6e\xf3\xc1\x87\x50\x14\x65\xb1\xec\x57\x5c\x12\x6a\x32\x4b\x7a\xee\x7e\xae\xbb\xc6\x13\x80\xfd\x2c\xd7\xf7\x42\xe2\x31\xf5\xd7\x3d\x5e\x12\xc0\xe5\x19\xa4\x25\x62\x40\xe1\x53\x62\x8c\xc7\x69\x81\x33\xd1\x82\xfc\x9b\x57\x43\x42\x05\x3c\x88\x5c\x45\xaa\x0b\x7e\x10\xb4\xd5\x13\x1f\x96\xeb\x53\xee\xcd\x8d\x8a\x22\xf4\xf8\xe8\xc7\x9e\x72\x4d\xf7\xdb\x9f\xb4\x1a\x76\xc9\xdf\x33\x6d\x23\xd8\x86\x7a\x50\xa0\x0b\xac\x0b\x7c\x2f\x9c\xb0\x3e\x14\x74\x3f\xff\x88\x59\x43\x60\x3b\x42\x67\xf0\x14\xed\x3b\x92\xae\x52\xd2\xaa\x90\x6f\xdb\xae\xd3\x78\xa8\xa1\xfa\xcb\x81\x28\xd7\xad\x65\xb3\x54\x3e\xe6\x97\x08\x4a\x85\xe3\x1c\x32\x72\xfd\x3d\x49\x6d\xb1\x1f\xfd\x91\x3e\x51\x61\xeb\x02\x5e\x51\xaf\x06\x7c\x0a\x5c\x41\x7f\xe0\x35\x43\x53\x86\x13\x71\xfb\x82\x4f\x45\x13\x51\x45\x0c\x66\x5c\xb0\xf3\x44\x28\x3a\xc9\x09\x14\x17\xb6\x9f\x7f\xd9\x56\x19\x7e\x22\xb3\xc7\xe2\x22\xeb\x83\x53\xdd\xf8\x8e\xa8\xf5\xce\x71\xfd\x33\x51\x52\xe8\xea\xae\x3c\xf6\x37\xe8\x81\xb6\x60\xb6\x2d\x14\xdf\xb0\x22\x72\x05\xcc\xb6\x2c\x3f\x7c\x95\xcb\x64\x81\x23\x33\x03\x19\x90\xd6\xcd\xb4\xc0\x6e\xe3\xf0\x43\xbf\x79\xd8\x86\x38\x31\x7f\xf8\x6a\x53\x52\xc2\x67\x03\xd7\x78\x70\x23\xc1\x8c\x02\x77\x07\xf6\xb6\x08\x2e\x42\x19\xbd\x26\xfa\xb7\x13\x20\x46\x10\xb7\x60\x3f\xcd\xdd\x91\xe4\x65\x9d\x94\xac\x09\x42\x4e\x1f\x4b\x66\x82\x72\x47\xb8\xc9\x8f\x40\xcf\xfa\x3e\x27\xcb\x1d\x37\x76\xda\x26\xd5\x83\x46\x5a\xe9\x89\x18\x50\x42\xfd\x6e\xde\x3e\xc7\x0d\xd2\xd1\x38\x1a\xf8\x4b\xde\x43\x6e\x09\xf4\x48\x2a\x9c\x53\x8c\x3a\x10\x75\x91\x9b\x8c\x0b\x0d\xee\xe0\x9e\xf6\xdc\xe2\x6b\x1d\xfb\xcc\xf7\x2c\xf1\x50\xfc\x34\xcd\x14\x93\x99\x60\x17\xf2\x16\xbe\x2e\xf1\x45\x64\x00\x58\x95\xdc\x1a\x53\x6c\x77\x53\x68\x08\x3c\x38\xdb\x22\x8c\x07\xda\x8d\x47\x0b\xb9\x76\x4f\x06\x27\x85\x14\xbb\xb8\x5e\xdd\x6c\x84\xed\x6d\xe5\xb8\xe0\xa1\xed\xe1\x96\x7d\x99\x7e\x36\xdd\xb5\xc5\xe9\x7d\xb6\x5a\x12\xdb\x34\x0e\xd0\x28\xe7\x03\xbf\xdb\x31\x34\x59\x2f\x35\x18\x66\xc5\x42\xa4\x9e\x72\x65\x06\x36\xf2\x93\xf0\x5f\xbd\xef\xf0\xaf\x79\x79\xe3\x6e\xa5\x5f\xf3\x3f\x84\x9e\xcb\x4c\x08\xd6\x82\x25\x66\xad\x63\xe6\x83\x3e\x89\xf7\xd8\xbc\x9f\xf7\x10\xe7\xd8\xee\x9b\xc4\x89\xb3\x6d\x8a\x47\x0c\xc4\xd1\xd6\x77\xfa\xf7\x8b\xb5\xad\x35\x55\x3f\x8b\xb2\xad\x3c\x15\x55\xa2\x65\x4b\x41\x93\x5e\xc1\x4a\x4b\x44\xb5\x4e\x9e\xb3\x65\x52\x89\x66\x6e\xa4\xf5\xdd\x6c\x9d\x9c\x0b\xc0\x17\x09\xfb\x72\xca\x9c\xc2\xc3\x2f\xe6\x48\x91\x07\x03\x86\x72\x6b\xb0\xfb\xbd\x30\x79\x38\xd2\x09\xec\x83\xfc\xe7\x3e\x0f\x50\x14\x51\x06\xb5\xdf\x59\x5a\x49\xb4\xde\x71\x42\x59\xf9\xdc\x3a\x72\x4a\x55\xf9\xd6\xea\xe7\xe8\xd5\xca\x17\x56\x82\xc1\xf5\x95\x57\x2d\x5f\xf7\x92\x2a\x9e\x5b\xc2\x3b\x7a\xca\x05\x16\x49\xad\xf5\xd2\x6f\xe6\xe5\x0d\x0c\x49\x92\x79\x66\xc5\x8e\xd2\x8d\xe6\x63\x45\x46\x25\xf3\x56\xde\x99\x7a\x25\x34\xbb\xe8\x38\x6a\x49\x32\xf8\x21\xf3\x69\x49\x13\x9c\xed\x5f\x5f\x9a\xea\xb6\xcb\x13\x2e\x49\x26\xcc\xbb\x7f\x93\x5e\xf5\x26\x22\xae\x34\x72\x2d\x83\x17\x1e\xc9\xd6\x59\x9e\x98\xfe\x2b\x3b\x6e\x29\x1c\x77\x94\x99\x5b\x5a\x0e\xb5\xca\xcc\x2d\x2e\xa9\xff\x69\x7c\x6c\x11\xa3\x72\x6c\xb8\x62\xfe\x55\x11\x5b\x1f\x6f\x6e\xd3\x54\x59\xb7\xd1\x6c\xb6\x66\xb0\xa6\xdb\x6c\x48\x32\x5e\x3d\x6a\xde\x97\x8f\xab\x0e\xb3\xda\x99\x06\xad\x0e\xb7\xd3\xe1\xea\x54\x77\x81\x53\x42\x4d\xab\x1f\xba\x9c\xa2\x64\xd7\x74\xb9\x56\x79\x38\xd5\x3e\xc2\x6f\x70\x1b\x57\xac\x34\x6f\x5b\x5c\x54\x08\x2d\xd6\xcd\x1e\x57\x28\xcc\x1f\x4d\xb8\x29\x4a\xcd\x39\xc3\xe7\x14\x31\x66\x5f\xfa\x29\x0a\x84\x59\x54\xf7\x37\x79\x86\x99\x86\xb2\xae\xad\xc7\x34\xa8\xd5\xa6\xf5\xa4\xc9\x48\xc3\x68\xcb\x69\x93\xb7\x95\x16\xcd\xc3\xa6\x66\xe2\xca\x66\x1d\xf3\xcd\x39\x1a\x4d\x17\x2c\x85\x29\x55\x4d\x7f\x6c\x69\x31\x16\xcd\x47\x1c\x2b\x19\xf3\xcd\x09\x30\x85\x5f\x74\x8b\x0b\x7a\x07\xf1\x5a\x77\xaf\xe9\xdb\xa5\x81\x1e\x90\x59\xfc\x9c\x76\x4f\xb8\x19\x63\xd2\xa6\xc7\xda\x74\x7e\xe4\x54\x0f\xc0\xe4\xca\x40\x7a\xf7\x35\xe3\xab\xbd\xc0\xee\x0a\xe3\x3d\x9d\xec\x6e\xb2\x11\x5d\x1e\xd1\x7d\xd8\xb0\xbc\x89\xaa\x2a\x35\xf4\xad\x25\x74\x0d\x1a\x4e\x48\xdf\x74\xb2\x8c\x5a\x0a\x5d\x3a\xf6\x99\x62\xb3\xcc\x95\xe3\x16\xbb\x93\x82\x95\x1f\x6d\x34\xa2\x14\x1d\x2b\x41\x2b\xe9\x6d\x1d\x45\xd0\xdd\xbe\xd6\x9b\x5f\x17\x3e\xcd\xa5\x6b\xf1\xc4\xf6\x69\xb2\xed\x0c\xc9\x21\xde\xb6\x9d\x16\x65\x3f\xd9\xd3\xbb\x36\x56\x79\x86\x1c\xd9\xfd\xa6\x76\xc8\xbf\x49\xa7\xb6\x91\xe5\xd9\xb7\x7f\x4b\xf3\x25\xec\xb0\x6e\xa6\x7c\x1d\xfa\xe0\x61\x68\x7b\x39\x4c\xf7\xe8\xcf\x8e\x0e\x30\x48\xff\x59\x97\xb7\x3d\xd1\xf0\x82\xea\x93\x8d\xc4\xe4\x67\x0f\xcc\x72\x9b\xf9\xe9\xde\x74\x53\x8e\x55\x51\xdf\x23\x43\xb2\x2d\xb2\x7f\x97\x5e\xc3\x6e\xe3\xec\x65\xd1\xf2\x3f\x23\x39\xf9\x59\x3b\xf7\x96\xe4\x43\x92\x21\xfb\x0d\x0a\x39\x1c\x98\xae\x5e\xc9\x91\xb0\xc8\x83\xe3\xd2\xa2\xc0\x96\xc3\xb2\xca\x64\xb2\xe4\xe8\x8f\x5a\x53\x3c\xe3\x38\xb6\xe1\x31\xfa\x81\xe1\xad\xe6\xed\xb0\x11\x13\x78\x6b\x1d\xb8\xce\x6c\x41\x2e\x72\x58\x6d\xc9\x6f\x87\xd9\x16\xdb\x50\x94\x4b\x56\x46\x40\x52\xe7\x3e\xb3\xd3\x20\x50\x17\xc3\x18\x0f\xd1\x52\x95\x1a\x68\xe8\x36\xf0\x83\x4a\x82\x0f\xef\x4d\xab\xcf\x5d\x3a\x7a\xfe\x3f\x62\xea\x69\x64\xa5\xf2\x1c\xf5\xfd\x72\x0f\xb1\xb7\x1a\xe8\x8a\x30\xf4\x93\x46\x87\xc5\x6c\xca\x26\xe3\xa7\x52\x17\xd2\x33\x33\x58\xa5\xb6\xdb\xb0\xa5\x6d\xcd\x1d\x84\xb9\x0d\xa8\xc1\x17\x32\x6a\x57\x28\x1b\x03\x1d\xb6\xff\xd9\x7c\xd9\xae\xd9\xb1\xa2\xb5\xdf\xda\xc1\x89\x20\xf7\x32\xbf\x05\x7d\xa3\xe8\x35\xc9\x82\x27\xb6\x3f\x37\xb4\x32\x00\xc6\x0b\xca\xef\x18\x31\x78\x2d\x45\x06\x26\xce\x89\xfb\xb3\x15\x66\x3b\x93\x0f\xa7\xdc\x35\xe7\xf0\xcf\x72\x83\x2d\x2e\x0a\x76\x87\x6b\x58\x51\x72\x20\x81\x5d\x36\x47\x0b\x06\xc8\x28\x3b\x78\xf1\x0c\x7e\x9f\x7d\x8d\xe4\x3e\x7a\xcc\x51\xbb\x62\x0e\xfa\x00\x52\x5a\xb3\xc9\xf1\x0a\xd4\xba\xee\x83\xfd\x56\x97\x73\x8d\x71\x36\x69\x48\xcb\x26\x0f\xcb\x9d\x68\x69\xf3\x77\xd3\x66\xb7\x2d\xad\x5e\x46\xde\x56\x23\x6c\x6c\x6d\xbb\xcd\xd7\x28\x3b\xe9\x6e\xbb\xee\xe8\xe9\x02\x9e\xfd\x36\x4e\x5b\xe6\x5d\xfb\xaf\x71\xb9\x89\xf1\x0e\x0f\x12\x37\x46\x9d\x72\x8c\x4f\xed\x0d\x61\x42\x0e\x64\x22\xfd\x43\x9d\x64\xc2\x0b\x9e\x5a\xd0\xa2\x82\x83\xee\x15\xf0\xcd\xc5\x52\xe4\x61\x24\x48\x42\x75\xea\x44\x87\x94\x0b\x41\x31\x98\x9e\xaa\x38\xbb\x5c\xec\xa6\x5a\x63\xab\x39\x7c\x5c\xbd\xca\x5c\x93\xb4\xb6\x31\xdf\xb8\xc6\xe9\x0f\xe3\x4a\xf3\x26\x68\x51\xc8\x8d\xea\x8b\xb0\xf7\xa1\xef\x4b\x95\x2e\xd2\xb0\xa9\xbc\x5e\x78\x68\xc4\xa7\xf4\x02\x04\x2c\xea\x5a\x3c\x0c\x71\x97\xab\x8a\x6c\x45\x6d\x4e\xd8\x1f\xcc\x45\x0f\xa4\x7c\xf1\x1d\xc2\xa4\x65\x8c\x11\xd9\xee\x6b\x84\x14\x4c\x22\xf6\x53\xfe\x05\xf8\x6a\x82\x59\xd1\x15\x88\x05\x09\x58\x6a\x67\xff\xd9\xd3\xb5\xcc\xc8\xe6\x81\x77\x54\xc5\xbf\x16\x1f\x7d\x66\xab\x5d\x4c\x77\xbb\xa5\xf8\xa3\xda\xeb\x71\xfe\x01\xb9\x32\x23\x7c\x24\x75\xb0\xea\x28\xe1\x78\xe0\x93\x12\x6b\xfc\x54\xf0\xbe\x9c\x0e\xbc\x8a\x71\x2f\xf5\x3c\xfe\x7d\xd8\x03\xae\x0b\xe1\x31\x3b\x2c\x6c\x89\xb4\x91\xf3\x34\xf0\x8e\x87\x15\xef\x03\x19\xe8\xf9\x25\xa5\x1f\xbf\xd2\x7b\x2c\xe3\x14\x3a\xc5\x27\x40\x88\x86\xde\xf5\x83\xe6\xdb\x3a\x76\xf8\x83\x0b\x27\x80\xde\x54\x1b\xf1\x23\xeb\xdd\x34\x3d\xc9\x80\xd9\x34\xd9\xce\xe3\x7d\x8f\xc0\x77\xb5\x97\xb1\xc2\x93\x62\xe2\xcd\x6a\x24\x52\xb4\xc8\x4b\x15\x9f\x28\xc6\xbe\xc0\xe2\x52\xbf\x8b\xfe\x2b\xb3\xad\xfc\x66\x03\xc7\x93\x18\x7e\xed\xf4\xa6\x68\x0d\x8a\x7b\x18\x2e\xa4\xc3\x5f\xc2\x7a\x1e\xa0\x13\xf0\x92\x6b\xee\xf9\x2a\x90\x9d\xb0\x03\x7b\x28\x48\x2f\x55\x0f\x99\x10\x7c\x2b\xe3\xb6\xd3\x03\x06\x33\x7b\x0a\xb4\x3a\x74\x7f\x1e\xce\x36\x98\xf9\x55\xd4\x66\x31\x48\x7f\xe9\x6e\x36\xf8\x3e\xd4\x0f\x3b\xa6\x72\x65\xf6\xe2\x57\xb4\xf1\xc3\xe6\x09\xc8\xfa\xdb\x4c\x05\xb1\xa5\x3c\x22\xf4\xba\x07\xb4\xb0\x29\xe4\x8f\xd7\x39\x81\x7b\x88\x9d\xef\x1b\xde\xcd\x10\x06\xf5\x55\xe4\x7c\xc8\x0b\x7a\x74\x70\x6e\xe8\xd7\x30\x53\x3f\x50\x58\x0a\x3b\x82\x94\x16\xfe\x86\x9b\xe5\xe6\x10\xc9\x4c\x88\x81\xa7\xb2\x35\x52\x0d\x21\x46\x51\xf9\x19\x51\xf6\x66\x31\x9b\xb2\x0f\x58\x1f\x89\xf1\x41\x6a\x8f\xdf\xe3\x5a\xa1\x40\xfd\x37\x62\x43\xd1\xfa\x5d\x86\xb1\x53\xe8\x87\xad\x77\x63\xbf\xb9\x9e\xad\x47\xc5\xae\x74\x73\x28\xe3\x70\xcd\xb1\x9b\x45\x7b\x38\x1e\xf8\xa8\x8c\x91\x98\x6d\x9e\x84\xb8\xda\xe8\x87\xbe\xf4\x70\x4a\x4c\x1e\x15\x17\xd8\xc8\xa9\xa4\x87\x90\x67\xb9\xb7\xc3\x98\x84\xdd\x71\x0c\xf6\x5f\xd7\x90\xf8\x61\xee\x1d\xd8\x48\x82\x76\x42\x82\x63\x69\xa2\x24\xe5\xbb\xed\xef\x34\x4d\xe8\x81\xe9\xb9\xb4\x2b\xd0\x4f\x23\xe7\xd3\x9b\x60\x17\xfb\xfe\x4d\x5f\x76\xf1\xef\x38\x97\x9e\xe5\xd2\xd7\x72\x2b\xed\x27\xdc\xb1\xce\x87\x5f\x82\xb0\x90\xe6\xa4\x7a\x21\x6f\xe7\x77\xa7\x10\x5c\xf7\xa5\x7d\x4b\xfe\x80\xdf\xce\xf5\x4c\x5e\xf2\xe4\x86\x9e\x4a\xb1\xf7\x0d\x08\xb0\x4d\xdd\x41\x5d\xf4\xf2\xe1\xef\xa7\x5f\xc7\xfe\x49\xcb\x0c\xa7\xa3\xda\xd2\x7f\x46\xc5\x41\x0f\x66\xc2\x63\xa1\x0e\x33\xf9\x5b\xc0\x21\x73\xd0\xfc\x3f\xe0\x8f\xe3\x8a\x82\x12\x48\xd0\x60\xa5\xc8\xd5\x69\x6d\x0f\xa3\xa0\xd2\x69\x4b\xfb\xf9\xfc\x8b\x4e\x5b\x9b\x2d\xf2\x06\x9c\x22\x6a\xea\x72\x61\xce\x87\x25\x1b\x73\xf0\xb0\x35\xb9\x0a\x61\x36\xfc\x61\xaa\x63\xf6\x4f\xcc\xc1\x68\xb5\x30\x9b\xe0\x47\xaf\x12\xca\xbd\xd2\xfc\x2e\xe6\x18\xf8\xc9\x3d\xf0\xb9\x41\xb4\xd5\xee\xd8\xbc\x9e\x90\x58\xc4\x6c\x81\x46\x84\x14\xf2\x54\x02\x77\x50\x9f\x20\x49\x6d\x41\xd6\x93\x6a\x69\x26\xc8\x7a\x04\x2a\x3d\x0f\x02\xab\x4f\x49\x97\x41\x36\xaa\xbd\x92\x77\xa0\x75\xf2\x29\x89\xa6\xc3\x59\x19\xb5\xe4\x0f\xe8\x58\x95\x50\x7c\x0b\x34\x58\x62\x21\xbe\x0e\xd1\x17\xee\x17\x27\x42\xd5\x49\x0e\xc5\x6f\x90\x27\xd8\xdb\xc5\x71\xee\x8b\x34\xbc\xf8\x02\x29\xd1\xe7\x64\x09\x92\x9c\x49\x9c\x29\xa5\xfb\xf7\x63\xda\x25\xd3\xc1\x6b\x5c\x62\x6b\x38\xc0\xcc\x85\x53\xb5\x55\xf6\xda\xd3\x36\xb5\x57\x81\x3f\xc7\x8e\xd7\x6d\x01\x3e\x1c\x3c\x58\x07\x05\x9e\xe8\x3d\x5c\xdb\x0b\x2c\xea\xf0\xac\x39\x0f\x74\x6d\xb5\xab\xbe\x07\xdc\x52\x7f\xb7\xea\x3e\x30\xa4\xfc\x5d\xe5\x7b\xfb\x35\x45\x4d\x55\x1a\xa0\x57\x02\xb7\x2a\x3b\xa7\x57\x3c\x9f\xca\xb7\xf0\x97\x11\xfd\x55\x8e\x98\x7e\xea\x50\xd5\x17\x02\x98\xbc\xa9\xba\xce\x6b\x03\xe1\x60\xed\x4a\xbf\x95\xe8\x86\x66\x37\xdb\xf8\xa5\x7d\x2d\xb6\xb6\x3f\x67\x2e\xb5\xe4\xda\xbe\x19\x1f\x69\xe9\xb2\x9d\x1b\x7a\xd1\x72\xca\xb6\x58\x7d\xac\x45\x61\xeb\xab\xda\xd9\xfc\xcb\xf6\xb0\xc2\xb5\x19\x66\xf3\xa2\x29\xa1\x29\xcb\xe6\x57\x8d\x5a\x36\x67\x4b\x96\xee\x97\x39\xda\x55\x15\xa0\x64\x86\x0e\x84\xf4\x7c\xd9\x20\xc4\x21\xf6\x99\x4c\xee\x12\x1b\xd6\x2f\x7b\xe0\xba\x39\xa0\xa0\xa9\x0e\x77\xcc\x2b\xaf\x39\x87\xf4\x08\x77\x48\x79\xdb\xba\x60\x59\xab\xa3\xc4\x66\xcd\x9c\x65\xc7\x5b\x9b\x6d\x13\x7f\x3b\x7e\x59\x9f\x19\xc1\x77\xfc\xb1\x4e\xec\xef\xed\xf8\x61\xad\xdb\xb3\xa7\x83\x67\xf5\x56\xd9\xa1\x7c\x62\x35\xd2\x6a\xad\x44\x59\xa5\x36\x74\xb7\xf7\x5a\x5d\xa9\xf4\x6f\xd7\xb6\xb6\x2c\xd9\xa8\x98\xb6\xb9\x91\xf3\x5d\x21\x03\x1e\xe5\x1f\x55\xbc\x74\xc4\x70\xff\x69\xdf\x09\x15\x31\xf7\xb5\x67\x21\xbf\xfa\x0b\x94\x31\x6e\x7f\x3c\x16\xd4\x87\x2c\x99\x27\x0d\xd5\x48\xab\x3d\xf3\x99\xea\x2e\x2b\xea\x94\xa3\xba\xc5\x6a\xc5\xa8\x52\x9d\x67\x59\x31\x78\x4c\x1d\x63\xb9\xaf\xb7\x4b\x7d\xd0\xe2\x6c\xe7\x52\xdf\x09\x0b\x89\xbc\xad\xcf\xcf\x82\xdc\x94\xde\x7b\xc1\x22\xa4\x96\xdd\xcb\xb5\x18\x2d\xf3\xec\x79\x6e\xe9\x53\xf8\xab\x47\x62\xbd\x32\x1b\xd7\xe3\x6f\x1b\x9d\xfc\xb3\x47\xec\x50\x14\x93\xd6\xd3\xee\x34\x10\x32\xdf\xeb\x0c\xff\x4a\x41\xed\xdc\x2e\x75\x11\x6d\xdb\x95\x58\x7e\x54\xb0\xbc\x87\x5c\x99\x97\x9c\xf5\xcf\xdd\x1a\x5d\x2e\x61\xaf\x6f\x3d\x20\xbc\x6d\x5f\x6d\xe3\x1d\x1a\x48\x57\xa3\x85\xe7\xf3\xf0\xd0\x5a\xf9\x1d\xa2\xef\x91\x78\xe5\xb2\xdb\x21\xbd\x15\x5d\xce\x88\x95\xc7\x27\xbb\xad\x21\x5f\x8c\x26\x7a\x86\x41\xbb\x4c\x8f\xf4\xd1\xec\xe2\x2c\xf6\xa8\x53\xad\xfe\x5a\xfb\xf6\x3b\x9a\x17\xdb\x59\x0e\xa0\x8d\x5f\x3a\x68\x0e\xd2\x0c\xc2\xf7\xd5\x8b\xa2\xc5\x68\xdd\x8d\x45\xe8\x9c\xb4\x43\xd6\x62\x12\xff\xd6\xe1\xeb\x92\x95\xf1\xbc\xa3\xbe\x65\x67\xd8\x6b\x8f\xdd\xaf\x5a\x4f\xff\xa0\x2f\xab\x65\x52\xf4\x0c\x35\x1a\x57\x90\xa6\x8d\xdd\x9b\x23\xdd\x9e\x99\xce\xb7\x25\x20\xe4\x16\xe6\x8a\x1f\x4e\x09\x56\x0f\x95\x93\xa0\xcb\xb6\x73\x9d\x08\x60\x80\xfd\x54\x57\xb9\xcd\x1a\xc7\x93\x2a\xb5\xc5\x98\xd3\x70\x77\xbf\x69\x34\x6c\x6f\xcf\x37\xa3\x15\x47\xaf\x66\x7b\x4a\x5f\xe8\xe7\x08\x39\x22\xa0\xc1\xbb\x9c\x0b\x82\x33\x46\xad\xf9\x41\x49\x6f\x8c\x3f\x14\x26\xc7\x2c\x9a\xb6\x96\x1c\x64\xb6\x9a\xe3\xa4\x41\xd4\x01\x4b\x93\xca\xfd\xde\x15\xd6\x98\x9a\x76\x1c\xd7\x6e\x7f\x03\x15\x75\xcd\x9e\xd3\xc4\x82\xfa\x81\x96\x5b\x66\x1c\xdf\x41\x7c\xda\x06\xed\xb9\xd0\x55\x8a\x00\xdb\x7d\x2e\x8a\xf6\x73\x96\x27\x91\x96\x1d\xbb\xcc\x68\xe8\xde\x4e\x8c\xf1\x56\x93\x08\xfe\xfa\xaa\x6b\x66\xef\xf9\x9f\xc5\xdf\x2d\xdb\xd2\xce\xe7\xaa\x6c\x62\xfe\x23\xa6\x6d\x46\x56\x30\x6f\x9f\xdd\x50\xce\x1b\xd6\x75\x7b\xd7\x82\x6b\xf4\x5a\xd0\xb6\xe2\x49\xbf\x47\x8e\x43\x92\x2c\xd2\x30\x64\xba\xc2\xd7\x8d\x09\x3d\x5c\x03\x80\xdf\x70\xa9\xad\x37\x82\x74\x20\xb5\x1b\x97\x41\xab\xd1\x11\x4d\xb7\xed\x0a\x30\x93\x2d\x9d\xd6\xda\xd8\xd5\x6d\x2e\xe6\x35\x78\xa6\x5c\x65\x72\xc8\xee\x46\xdc\x58\x03\xc7\xc1\x3b\x3e\xbf\xfc\x91\xe3\x2c\x8f\x5d\x24\x84\x8c\x27\x7c\x13\xae\x70\x16\x24\x03\x52\x0f\x41\x8b\xf9\x89\x5c\x21\xec\x52\x26\x2f\xdc\x05\x6e\x24\xf4\xa0\xd9\x21\x5a\xf2\xeb\xc8\x37\x50\x81\x45\x42\xfc\x88\x6b\x48\x69\xa7\x2b\xd8\x2d\xa5\x9c\x04\x9b\xc6\xb6\x54\x25\x82\xe3\xf1\x8f\x6a\x09\xf6\xf9\x24\x48\xfd\x5d\x9b\x13\x9e\x51\x8d\xdf\x2d\x75\xbd\x65\x4d\x23\xa6\x91\x2e\xc7\x59\xae\xad\x0e\x88\x01\xd6\xf7\xda\x7b\xa8\x69\xf6\x5f\x69\xb6\x6b\x5a\xb4\xa4\xe0\x0e\xe6\x3e\xa7\x41\x60\xe1\x76\x22\x2e\x2c\xf1\xbe\x7b\x6e\xc2\x60\xb4\x2b\xf6\x42\xca\xad\x50\x57\x3c\x35\xfd\x52\x40\x01\xa1\x38\x9b\xe1\x05\x21\xed\xcc\x2b\xc7\x96\x79\xbc\x2f\x7c\x81\xb2\xf7\xfa\x52\x32\xed\x3c\x4c\xfe\x57\xfa\xc3\x71\xab\xef\x99\x8a\xf3\xc0\x15\x94\x4b\xd5\x7e\xd6\x5a\x01\x9f\x6a\xd5\xe6\xda\xb8\xb3\xf4\xb1\x8e\x0c\xe2\x39\x46\x4f\xb3\xa3\x47\x63\xc8\x7c\xcd\x1e\xcf\x6b\xa1\xbf\x4a\xaf\x78\x95\x86\x6b\xe4\xcd\x79\x27\x44\x06\xa7\x8b\xc9\xda\x51\xaf\xe2\xc7\xc9\x1d\x5c\x1e\x8b\xe3\xd3\xc8\xcb\xa7\xd7\xf9\xbe\x4c\xbe\x47\xd9\x41\x69\x4a\x67\x91\x7e\xfb\xff\xca\xba\xe3\x36\x44\x2d\xcc\x73\x40\x80\x68\x81\x85\x3a\x90\xaf\xc1\x66\xe2\x14\x87\x22\xfa\x0d\x49\xb4\xed\xf1\x90\xc1\x72\x33\x8b\x76\x3f\x9a\xdf\xe3\xde\x6f\x01\xab\xfd\x35\xdb\xe7\x03\x5f\x06\x38\xc9\xa6\x69\x4f\xa8\x27\xaa\xbc\x83\x18\x34\xba\xf8\x5d\x10\x39\xf8\x5b\x8e\x73\x50\x59\xc8\x99\xd4\xf2\xa0\x8b\xe1\x51\xdc\xde\x60\x19\x9b\x11\x5e\x49\x2f\xe3\x10\x83\x34\x18\x1d\x3c\x0d\x9f\xc1\x50\x93\x64\x0e\x61\x99\x79\x2a\xdd\xd4\xf5\x69\xf8\xe6\xac\x32\x17\x64\x44\x69\x6e\x1c\x98\xcd\x32\x2f\xf8\x0c\xec\x64\xff\x2c\x46\x5b\x8d\x32\xad\x3c\x2c\x87\xd7\x44\xec\xf0\x1c\xef\xf6\x8d\x94\x7b\xdd\x96\x8f\xb0\xa3\xbc\xbf\x34\x6e\x63\x6b\xf9\xa4\x56\x54\xb0\xde\xf9\x19\x15\xbd\x65\x95\xf8\xbf\xca\xba\xc4\x8a\xa0\xc5\x27\xc5\xb0\xd2\x18\x96\xd1\x11\x6c\xb3\x30\x72\xa8\x38\x0a\xc1\x0a\xa0\x1a\x47\xf3\x39\x38\x6f\x5a\xcc\x4c\x7c\x1b\xae\x97\xbb\x33\x39\x12\xad\x11\x2b\x48\xfb\x0c\xa5\xc6\x2d\x0b\xde\x83\x3a\x78\x2e\x39\xf5\xb6\xf8\xd8\x78\x77\x87\x89\xdb\xbc\x5d\xd8\xb2\x81\xbd\x09\xef\x71\x57\x3a\x5f\x25\x8e\xe1\xbf\xb7\x8e\x26\xe1\x89\xc7\xea\xdd\x12\x55\x24\x59\xd9\xe7\xc4\xa3\x9e\xf8\x42\xf3\x84\x74\x6f\xa5\xc0\x26\x61\x9b\xdf\xe5\x84\x2d\x09\x16\x81\x38\x96\x57\xc2\x75\xba\x2f\xbd\x27\x71\x81\x39\x4e\x69\x48\xfa\xca\x2a\xf3\xdc\x96\x02\xe4\x58\xb8\xdf\x4c\xf5\x8b\x5f\x42\xda\xf3\x25\xc9\x7b\x9d\x2a\xd3\xfe\xa6\x95\xd9\x17\x67\xa4\x21\xcf\xcf\xfe\x93\xd9\x8b\xba\x34\x2a\x14\xfc\x40\x5f\xeb\xfb\x95\x55\xe3\xda\xd9\xd1\x9b\x75\x07\xc3\x6a\xa9\xcc\xba\xe3\x16\x53\xfb\x2d\x0b\xee\x7e\x4d\xca\x15\xcc\xe2\x0a\x0b\xc0\x82\x03\x04\x76\x46\x6c\xe6\x98\x57\x70\xdc\xc5\xcc\xfb\x7e\x76\x11\x00\x41\x1b\x35\x8b\x76\x3d\xcb\x8b\xee\xe8\x6b\x9c\x1d\xc4\xbc\x4a\x3c\x2b\x9c\x62\x4d\x63\xbe\xe7\x9c\xe7\xd4\xc0\x6d\x73\x6f\xf1\xa2\xc0\x66\xa2\x9f\xb0\xe4\xf9\x8b\x45\xff\xb8\x04\x4e\x14\x15\x5d\x85\xaf\x1b\xd2\x2f\x6e\x83\xcf\xf4\x74\x14\xc7\x22\x8e\xb7\xbf\x2e\xb6\x47\x54\x34\x1f\x2c\xea\x46\xd2\x6a\xd2\x0b\x5f\xa0\x72\x25\xba\x85\x31\xae\xb8\x3c\x7a\xa1\xa6\x5b\x0e\xff\x6b\x21\x90\x20\xe3\x82\x0a\x83\xbc\x2e\x32\xa1\x45\x47\xfc\x42\xa9\xfb\x8b\xe6\x02\x1d\xbd\x3f\x15\x8f\xd1\x4b\xf1\xb7\xc5\xdf\xc3\x7a\xd0\x7f\x4b\xf1\xec\x3f\x50\x42\xd9\x2f\xc8\x8f\xa5\xf5\x15\xc3\x4e\x5f\xa7\x82\x2a\xcd\x9c\x49\x23\x7d\x95\x2a\xe7\x31\xf5\x8f\xca\x37\xd0\xad\xaa\x2d\x95\x45\x50\x3b\xb9\xa2\xd2\x12\x4a\x97\x41\x2a\x84\x30\xcd\xaa\xf2\xf2\xb3\xb0\xc7\x25\xc5\xe5\x42\x04\x31\x67\x77\xb9\x3f\x9a\x97\xb2\xa3\xbc\x1f\xab\x11\x3d\x5a\xb1\x93\x14\xce\x30\xac\x90\x91\xc1\x94\xe7\x95\x14\xca\x63\xcf\x53\x55\x19\x34\x6b\x6c\x78\xcd\xf1\x90\x13\x08\x7c\xbd\x9f\xa3\x62\xc9\xbf\x71\x3b\xd8\x73\x66\x5f\xa3\x04\x9c\x34\xd6\xd6\xf8\x0a\x5c\x36\xc8\x96\x21\xc1\xbd\xbd\xf6\x32\x6d\xf0\x4c\x07\xa5\x71\x04\xbc\xdc\x8a\x6e\x24\x83\x6f\x36\xac\x6f\xf8\x17\x82\xaf\xc8\x69\x70\x86\x9c\x2f\xfe\xd5\x60\x0e\x63\x67\xe5\x36\xf8\x20\xcd\x12\x49\x0d\x4b\x98\x3c\xb6\x6d\x23\x12\x7f\x8e\xf6\xac\x71\xd6\xb3\xcd\xf7\x9d\x4c\xe2\xbb\x97\x74\xa1\x59\x2b\xa0\x1a\x53\xdf\xfa\xc9\x81\xb8\xac\x96\xef\x75\xf8\x77\xee\xa8\x7c\x19\xa4\x39\x91\xac\xd0\x06\xad\x1b\x4e\x55\x50\x41\xab\xd4\x42\x45\x12\x68\xa5\x8a\xa8\xd8\x01\xda\xa4\x88\x91\xab\x40\x3b\x9a\x8a\xe5\x48\x10\xb9\xe6\x71\xdb\x63\xd0\x75\x69\x69\x9b\x0c\xbc\x5a\x84\x68\xeb\x70\xca\xcd\xf8\xd6\xf6\xc3\x45\xc2\xdb\x22\xf7\x41\xef\x89\x3c\x2e\x9f\xc1\x92\x03\xc3\x14\x9d\xa4\x9d\xe4\xdb\xca\xd5\x64\x33\xfc\xce\xae\x42\x20\xe8\x64\x9b\x2a\x1c\xd8\x33\x5f\xde\xbd\x07\xf8\x69\xf2\x5d\x37\x09\x78\x6d\x54\xa7\x3b\x07\x38\x30\x40\xe8\x1e\x00\x8a\x7b\xf2\xbb\xa3\x80\xc5\x1d\xdb\xbb\x77\x01\xcb\x5a\x93\x55\xa3\xc0\x9a\x86\xdb\xaa\x58\xfb\xdd\x95\xd3\x2a\x73\xfb\xfa\x12\xb9\x6a\x1d\x68\x67\xde\xc6\xae\xbf\x8e\xef\xd3\xfa\x55\x01\x50\x4a\xdc\x76\xd5\x55\xc4\xef\x70\x56\x37\xce\x4d\x9b\xca\xeb\x11\xe0\x97\xbc\x08\x03\xfd\x36\xf7\x4f\xbd\x1d\x44\xda\xc6\x2f\xa0\x06\xbf\xd9\x69\x4f\x77\x0e\xe9\xd9\x7e\x1c\x7b\x3c\xe4\x6a\x3b\x3a\x04\x1c\x62\xda\x26\xf4\x49\x86\x70\xb6\xf8\xae\xa6\xa1\xd5\xb6\x28\x05\x7a\x70\xc0\x16\xdc\xf4\x7a\x90\x6e\x4b\xaf\xfd\x30\x68\x66\x7b\xa2\x5c\x73\xe0\xad\x1d\xbc\x78\xcf\xc0\x6d\xe0\x1f\x61\xfc\xc0\x33\xd0\x81\x54\xf6\xe0\x4a\xc8\x75\xae\xe3\xa0\x8f\x4b\x12\xb3\x6d\x48\x07\x9d\xef\xbf\xa4\x33\x5f\x0d\x11\x07\xef\x7b\x5c\x0b\xcc\x35\x3c\xd0\x5d\x0f\x4f\xdf\xaf\xfb\xb6\xb1\x89\xf7\xfe\xd0\xe6\xa6\xef\x51\x77\x0f\x43\x5a\x7f\x84\x8c\x1c\x61\xb4\x43\x02\xac\x8f\x11\x3b\x83\xbd\xd2\xf5\xc9\xaa\x97\xd8\x77\x86\x80\x9e\xcf\xa8\x2b\xc6\xa6\x7d\x8f\xa1\x42\x33\xad\x7e\x2b\xb0\xae\x39\x6f\x30\xc4\x3e\xce\x6a\x74\xe8\xb8\xcd\x13\xbb\x6f\x43\x07\x2d\xb3\x1d\x5e\x0e\x9d\x34\xdb\x09\xbe\x3b\x7c\xc2\x48\x7d\x98\x23\x31\x93\xfa\x1d\xdb\x25\x15\x17\x4c\xeb\x1b\x94\xa3\x05\xe9\xc7\xcf\x56\xa6\x26\xeb\x19\xae\xad\xd9\xc6\x99\x36\xc2\xd5\xdd\x0b\x2b\x37\x16\x37\x66\x51\xaf\x9a\x2a\x5b\xf6\x90\x37\x9a\x87\xc8\x81\xb8\x57\x96\xcf\xdb\x7f\xa1\xcf\xdb\xe0\x3b\x51\x30\x7f\x20\x40\xb5\x12\x2c\x02\x6d\xec\x26\x39\x1c\x80\x6c\xec\xe1\xd8\x5e\x70\x1e\xeb\xcd\xb6\x2a\x76\x01\xf5\xf1\xcd\xad\x11\xcd\x6a\x89\xf1\x92\xe1\x51\x11\xa8\xf2\xa1\xc9\xee\x42\xed\xe2\x01\x33\xd3\xa2\xa9\x1c\x23\x8b\x7d\xe2\x06\x7e\x95\xe5\xa0\xe4\x58\xfc\x2a\x6b\xf3\xb2\xd7\xac\x00\x1b\x75\xe5\x57\xba\x81\x1d\xa5\x16\xec\x47\xb3\xf7\x6e\x28\x23\x9e\x03\x65\x37\x9d\xc5\x7c\x04\xcf\xb5\x56\xc2\x65\xce\x9a\xf2\x07\x90\x3e\xd8\x44\x7b\x1b\x88\x8c\xa0\x77\x18\xdb\xfd\x46\xfd\xec\xcc\xb4\x6e\xc2\x24\x75\x75\x59\x80\xdd\xbf\xaa\xce\x98\x8c\x5a\x46\x66\x6f\xa9\x6b\xb1\xf1\xce\x1e\x94\xf6\x01\xb5\x85\x05\x22\x7d\x07\x56\xce\x73\x41\x9b\xa3\x46\x7e\x74\x52\x1b\x18\x59\x48\x8a\xe1\x41\xee\x88\x27\x98\x2c\xe7\x48\xc9\x3d\x6a\x17\x6c\x4b\x45\xae\x77\xb6\xcb\xfd\xea\xbb\x38\x16\xd2\xa1\x9e\x8c\xfa\x8c\xce\x93\x01\xa1\x19\x98\x89\xe6\x22\xb0\x26\x76\x55\xab\xc8\x3e\x0b\x8f\x92\xc3\x6c\x57\x13\x73\x15\x27\x2c\xf3\x3c\x6e\x2a\x4d\x4d\x6f\x80\x76\xa6\x56\x34\x81\x20\x7b\xf8\x9b\xaa\xba\xa0\x5b\xf9\xe9\x25\x41\x2e\xf2\x34\x71\xee\x2b\x24\xf2\x3f\x62\xa2\x28\x59\x86\x3c\x7d\x74\x61\x0e\x87\xf5\xc7\xf5\x5e\x81\x26\x03\xe0\x86\x2d\x1a\xa2\x50\xdc\x9f\x97\x86\x7b\x44\xe0\xba\xcb\x35\xdd\x1d\x08\xd3\x55\x05\x88\x07\xa4\x0f\xb5\x62\x27\x9e\xd7\xf1\x06\x24\x28\x81\x6c\x23\x4b\xb7\x5b\xf4\x35\x6e\xa6\x5a\xeb\x51\x3c\x5a\x4d\xcc\xf5\x91\x5b\xe3\x0c\xe5\x8f\x5c\xc3\xe3\x78\x0d\x09\x6e\x77\xe3\x89\x15\x47\x71\x48\x1e\xac\x68\x8e\xa0\x9d\xf0\x41\xa8\x4b\xec\x4e\xfa\x91\xea\x42\xaa\xe2\x3b\x72\xaf\x7b\x9c\xcc\xb8\x1c\xfe\xd0\xf3\x77\xb6\x5f\x90\x81\x37\x31\x2f\xd0\xe7\x09\xf9\x73\xe1\x71\xc2\x47\xdf\xc1\x12\x23\x0c\x8a\x92\x20\xbd\xe2\xf2\x20\x80\x50\xf1\x0b\xb2\x2d\xd0\xa2\x5a\xe5\xb0\x2e\xe8\x68\xdd\x5e\xdb\x35\x74\x68\x43\x98\xc5\x35\x22\x27\x32\xb1\xeb\xac\x67\x0f\x6b\x4d\x6b\x34\x39\x9a\xb5\x58\x77\xd4\xd7\x89\xfd\x5b\x5a\xe4\x77\x2d\x7a\xa0\xe0\x94\xbf\x21\x67\x51\x60\x1e\xb0\x3a\x4e\x90\x74\x28\xe0\x54\x42\x57\xf4\x2b\xea\x95\x94\x50\xa6\x05\xed\x78\xfa\x6a\x6a\x5b\x50\x7c\x16\xdc\xbb\x89\x0e\xc8\xdd\x8b\x3b\xc7\xe0\x8b\x48\x68\xbf\x50\x84\x78\x33\x6c\x15\x73\x49\x82\x71\x54\x87\xd3\xca\x0d\x80\x96\x91\xd0\xca\x0f\x56\xfe\x01\x5a\xc1\x10\xf5\x59\x9a\x15\xdd\xb7\x23\x9d\x8e\x63\xc4\x36\x87\x85\xac\x0d\x59\xa8\xd9\x11\xba\x89\x89\x2c\x15\x87\x2e\x85\x47\xe5\x09\x98\xca\xc8\xd1\xf4\xac\x30\x78\xb4\x29\x4f\x23\xec\x19\x57\xc8\x06\x84\xdf\xe3\x19\x33\xb2\x22\xf5\x93\x37\xf9\x23\x59\xed\x69\xf6\x9e\xf9\xec\x37\x02\x28\x76\x47\xf4\xc1\x9c\x7c\x64\x62\x4c\x63\x81\xab\xf3\x76\xae\x5d\xd1\xa0\xc3\xfb\xd8\x0b\x25\xaf\x6c\x9a\xc2\x59\x7e\x76\xa3\x09\xec\xc3\x94\xfa\x9e\xab\xd1\xae\xfe\x35\x8a\x8f\x1c\x7c\x40\x81\x6c\x37\xe7\x44\xe0\xbe\xca\x76\xae\x25\xed\xba\xd8\x83\x8b\xa6\xc7\x08\xff\x70\x1b\x42\xcd\x53\x95\xb1\xeb\xc2\x2f\x71\xdf\xc5\x3e\x61\x97\x44\x1c\x8e\xbb\xc9\x31\x0b\xba\x1b\xff\x24\xde\xcd\xf7\x75\x82\x4d\x12\x9a\xe4\x99\x58\xc1\x0f\x73\x23\x27\x75\x64\x8e\xc1\xdb\x92\x5f\x0a\xa5\x10\x54\x2a\x27\xdf\x07\xc8\xe6\xad\x23\xd5\x4d\xc5\x25\x5e\xf2\x34\x18\xec\x49\x39\xec\x95\xae\x62\xa5\x92\xbc\x4b\xe5\x1a\xfc\x3c\x72\x5b\x43\x3c\x3f\xc6\xd7\xb9\x42\x87\x9f\x4b\x59\x5b\x94\xc3\x67\x05\x0c\x67\xa9\xf8\x89\x41\x9b\x93\x9a\xf9\x93\x0c\x79\xf4\x64\x5a\x79\x18\x9f\xe9\x9f\xde\xc8\x72\x08\x74\xcf\xe8\x8e\xe9\x26\x8f\x65\x3e\x8d\x13\x12\x1c\x04\xdf\x13\x5f\xbb\xb2\xb2\x37\xf1\x91\xb0\x41\xa1\x5b\xe6\x49\xd0\x8c\xa0\xd0\x7d\xfb\x7c\x41\x36\x1b\x1b\x32\x96\x98\x63\x89\xcb\x55\x47\xe4\x7a\xe0\x7b\x3a\x3e\xe5\xad\x26\xfc\xdb\xf2\x30\x2f\x91\xb4\xbb\x2e\x2c\xcf\xd5\x43\x56\xe6\x94\x77\xdc\x2b\x58\x94\x9b\xfb\x99\x3c\x9c\xb9\x94\xfb\x8d\x32\x9f\x00\xc8\x73\x09\xbc\xc7\x1a\xcd\xb7\xa1\x4f\x32\x62\x0b\x40\xcc\x19\x7f\xb9\x88\x17\xf9\xcd\x2b\xae\x68\x6d\xf4\x35\x1c\xa1\x48\x14\x37\x8b\xa2\x14\x07\x27\x6b\x38\x61\x8b\xee\xa0\x24\x8b\xcf\xc5\x4a\x74\xcd\xe4\x4c\x49\xb5\x2b\x6d\x78\x45\xa9\x02\xe3\xd4\xab\x27\x59\x8f\xf9\xad\x04\x49\x42\xdd\x4e\x36\xc3\x25\xe9\xee\x0f\x6a\x1a\x25\x81\x38\x94\x84\x2e\x31\x27\xac\xcb\x07\x97\x7e\x20\xed\x4d\xcf\x90\x18\x79\x5f\x8e\xab\x90\xd4\x53\xdc\x22\xc8\xd2\xd6\x40\x6a\x90\xb8\x2c\x91\x5e\xee\x67\x5d\xde\xcf\xac\xf1\xd8\x56\x09\x8d\x5c\x74\xbb\x57\x95\xce\xd9\xe7\x32\x51\x71\xda\x25\xf1\x94\xba\xda\x16\x7e\x67\x66\x53\x8d\x26\x82\x39\xfa\xa4\xe6\x22\xe2\x5b\xff\xed\xda\x54\xa4\x50\x35\x54\x5b\x88\xfc\xa5\xd8\x5b\x3b\x80\x4a\x93\x25\xd7\xe6\xa1\xe9\x55\x57\x6a\xc9\xae\x71\x25\x77\x6b\x51\x6e\xb2\xdc\x15\xb5\x7e\x38\xcb\xd4\xa1\xda\x0b\xa4\x71\xee\x86\x3a\x12\x39\x87\x79\xbe\xde\x95\x22\xa7\x3e\x69\x80\x05\xbe\x26\xab\x1b\x4b\xe9\x17\x08\x39\x4d\x25\xe1\xa6\xa8\xec\xc6\x28\xe7\xf0\xd3\x3a\x4d\xe5\xd0\xcc\xb9\x95\xcd\x05\xd0\xdf\xe3\xb7\x5b\xb4\x61\xf8\xa1\xa0\x16\x39\x4c\xd1\xfb\xa8\xe5\x94\x0b\xa0\xe3\x6e\xcb\x98\x8b\x77\xab\xb4\xa5\xcf\x65\xa6\x41\xb7\x25\x07\x5e\x56\x51\xd9\xc2\x44\x24\x8b\x57\xb4\x24\xa1\xf5\xb3\x9b\x5a\xa6\xdd\x20\xc9\x66\xad\xfe\xb8\xb7\xd1\x79\xad\x37\x3c\x9d\x43\xcc\xdb\x96\x7d\x54\xfe\x63\xf2\xf7\xfe\x3f\xbc\x74\xdb\x5f\x06\x15\xbb\x5b\x29\x52\xc1\x7f\x4f\xf1\xdb\x6f\x42\x52\xe7\xfb\x94\x2f\x20\xd7\x26\xd3\x3b\x42\x21\x7f\x47\x28\x1d\xcf\x9d\x8c\xfa\xc1\x9d\x24\x27\xba\xea\x47\xe7\x41\xa7\x5e\xc5\xdb\x8e\xaf\xce\xab\x9b\xee\x74\xdc\x72\x96\xd4\x02\x3b\xce\x43\xa9\x65\x2b\x3b\x6e\xc0\xda\x0a\x37\x75\xae\x81\x7f\x14\x40\x3a\xb9\xe8\xf0\x84\x77\x5d\xeb\xdd\xc1\x6c\x5a\x57\x15\x91\x1b\x3c\xa4\xba\xe4\xf5\xdd\xaf\xa6\xe7\x04\x25\x0f\xff\xa5\xc7\x1c\x74\xe6\x34\xbb\x17\xe8\x68\xba\x40\xe8\x23\x3a\xca\xa6\x7d\xfa\x4e\x39\xaa\xc7\xa8\x6a\x27\xc7\xf9\xc1\x68\x75\xbf\xe3\xe5\xde\x34\xf5\x80\xe3\xaf\x8e\xcf\x6a\x21\xd8\xac\xed\x90\x9a\x04\x0e\x6b\x44\xaa\xa1\xe0\x4f\x55\x4c\x35\x10\x92\x5f\xca\x57\xa3\x9c\x5e\xe7\xdb\xab\x33\xa0\xef\x32\x56\xf5\xaf\x44\x5c\x8e\xbf\xdb\x5f\xec\x7a\x39\x92\x37\xb0\x19\x77\x89\x46\x1b\x5c\xf4\xc8\x20\xef\x1f\x0e\xb2\x3f\x7c\xe6\xc4\x88\xa9\xfd\xfc\xd2\x81\x51\x0b\x87\x8c\x59\xf1\xe8\xbc\xc3\xdc\x44\xdc\xd8\x6e\x87\xd1\xe1\xaa\xb1\x08\x87\x4e\xf5\xd4\x58\x93\x43\x8b\x6a\x76\x2c\xd3\xe1\x44\xbb\xd1\x18\xcb\xe1\x51\x73\xc5\x18\x1a\xa4\x5b\x27\x1b\x03\x81\xb2\xcb\x5f\x8c\x19\x80\x3e\x89\x41\x63\xae\xe0\xb2\x9c\xf1\xb1\x2c\xa7\x68\xfe\xe3\xf1\x4d\xb0\x73\x71\x81\xe3\x7b\x51\x8e\xe1\x8a\xf1\x67\xee\x9e\x54\x9b\x43\x43\x8d\xad\x65\x1b\x8f\xbc\x6e\xda\x2a\x3a\x7b\x8c\xd5\x7c\x33\xeb\x81\x5e\x5d\xeb\xa3\x94\xab\xfa\xc9\x0a\x5a\x6c\xf5\x71\x4a\xc7\xda\xc8\x75\x06\xe0\xae\xa7\xc1\x87\x0d\x07\x7a\x72\x7d\x2f\x1b\x15\xa8\xb7\x10\xb9\x26\x9c\x01\x1d\xb7\xcd\x66\xc6\x43\x47\x10\x06\x96\x65\x43\x97\x9d\x38\x56\xf5\xa3\x7b\x40\x25\x40\x97\x91\x65\xbb\x8f\xa0\xf6\xd1\xe3\xd6\x1c\x48\xdb\xa8\xdc\x62\x3d\x94\x3c\x46\x35\xc9\x32\x38\x52\x35\x5d\xa5\x67\x74\xab\xba\x47\x0c\x37\x51\xd4\xc2\x73\x37\x99\x61\xeb\x4e\xa5\x5d\x32\x77\x6f\xcc\xe2\xf9\x58\xd8\x37\x1b\xb1\x3f\x58\xc6\xb6\xce\x31\x8a\xac\x6e\x28\x2a\x29\x8b\x36\xde\x1d\xa1\x1e\x10\x3b\x74\xd7\x25\xb7\xc7\xf6\x53\xdd\x17\x11\x12\xd0\xaf\x5e\x8e\x53\x3c\xe4\x66\x5f\x03\xe8\x33\xb4\x4a\xdd\x03\xec\x87\x83\xfa\xeb\x6d\x42\x91\x23\x03\x5c\xcb\x55\xae\xfb\x07\x81\xa6\x42\xb3\xe7\x92\x8d\x75\x3f\xad\x74\x24\x13\xd2\x43\x36\x62\xe9\x93\x02\xa1\x5d\x52\xb9\x44\x70\x10\xf8\xab\xf2\xdf\xa4\x16\x87\x1d\x35\x5c\x8e\x19\x08\x56\x6f\xcc\x7c\xed\x98\xdc\x38\x43\x25\x43\xe8\xcd\x37\xbc\x1d\x9c\x77\xb5\x89\x70\xc6\x30\x46\xfb\x1e\xf4\x5a\x78\x63\x87\x1d\xb4\x05\x75\xac\xf3\x31\xd8\xd8\x75\x49\x85\xb4\x3f\xe9\xee\xd1\x9d\x60\x1b\x86\x53\xf4\x64\x58\xad\x26\xdc\xe9\xcd\x36\xcb\xb2\xf3\x13\xa1\x64\x61\x0e\x12\x91\xba\x92\x0d\x9e\x29\xd4\x2e\x1e\x77\x92\x17\x5d\x11\xbe\x85\xc6\x89\xcf\xf1\x8d\x5d\xf6\x48\x6c\xe2\x14\xf0\x9c\xb2\xbb\xac\xbd\x88\xab\x95\xf3\xf4\x4d\x28\x5c\xcd\x6d\x3f\xaa\xeb\x9e\xfa\x4f\xa4\x8d\x6e\xc7\x65\x6f\xdc\x2c\xb1\xae\x2d\xd9\x88\x2d\xf8\x90\xb6\x1e\xc8\x17\x62\xb3\xa2\x04\x14\xed\x71\x5b\x69\x64\xf7\xd6\x7b\x63\x47\x95\x75\xb4\x0f\xa1\xf3\x8b\x79\x87\x13\x32\x5b\xaf\x75\xc1\x65\x7d\x36\xb6\x6e\x2f\x12\x93\x2d\x97\x0e\xb9\x1e\x15\xc6\x89\x1c\xdd\x82\x73\x5e\x08\xe4\xee\xef\xf3\x31\x49\x83\x38\x4b\xd1\xa3\x98\x06\x3c\x47\xbc\x85\xd9\x48\x68\x91\xec\xa1\x7e\x24\xa1\xcb\x1b\xc9\xc7\x3d\x57\x54\x9d\xc5\x83\xbd\xd7\xd7\xe9\xa2\x6f\xfb\x98\x36\xfc\x81\xf9\xfb\x69\x35\x79\x80\xa3\x28\xdf\x5a\x7c\xec\x17\x02\x6e\xb6\x1d\xb4\x3d\x10\xf8\x59\x7e\xdf\x52\x03\x7d\x3d\x35\x42\x79\xc3\xbd\x29\x35\xbb\x09\x85\xef\x4c\xfd\x58\xf5\x8c\x54\xcd\x67\x96\x24\x7a\xbe\x4b\xcb\xcc\xfd\x40\xde\xf5\x1f\x31\x7d\x1c\x04\x3f\x78\x0c\x5f\x9f\x9c\x0d\xec\x58\xbf\x9c\x7c\x24\x63\x99\x72\xb7\x50\xe8\x1f\x18\x50\x5c\x62\xec\x59\x1a\x68\x2e\x1d\xc3\x42\x68\x37\x2a\x81\xc8\xfb\xc1\x8a\x1a\x2b\xe7\x60\x46\x5a\xdd\x1c\xe8\x5d\x68\x48\xe3\x0e\xbb\xab\x61\x06\x4d\xdb\xad\x7a\x3c\x5d\x63\xcb\x7b\x58\xe4\xf9\xd8\xb7\xf2\xcf\x14\x9b\x38\xf7\x86\xa9\x80\x82\x78\x44\x85\x69\xe0\x22\x0f\x5b\x54\x15\x64\x9d\xb8\x52\xb8\x2d\x38\x3e\x79\x55\x2a\x9d\x1e\xcf\xdf\x17\xeb\xc7\x68\xcd\x88\x8a\x90\x87\x2c\x65\xcd\x04\x1b\x32\xb7\xe5\xfa\xf9\x6d\x09\x53\x16\x7c\x22\x81\x22\x08\xc5\x72\x37\xb7\xc8\x41\x09\x18\xb1\x9a\x6d\x5f\xee\x0e\x79\x1c\xb5\x58\xb5\xdd\xc1\x35\xa6\xb0\xa6\xc1\x26\x2d\xb0\x24\x82\x33\xb8\x85\xbe\x3f\xd2\xa6\x2b\x25\xd4\x37\xf2\x51\x2b\x36\xec\x2e\xeb\x54\xed\xe7\x88\xcc\xa8\xc3\xd2\x80\xc8\xf7\xd1\x77\x0a\xa6\x58\xbf\x38\xb7\x05\xd6\xec\xf1\xb8\xca\x24\x42\x54\x43\x82\x3a\x86\x16\x7d\x21\x45\x87\xf9\x85\xe3\x95\x96\x14\xd8\xcb\x0d\x17\x20\xc9\x8f\x62\x47\x84\x4b\x84\xc3\x71\x9f\xf3\xe7\x5d\x19\x3c\x5e\x11\xd5\x65\x77\xc2\xb7\x92\x32\x30\x32\x89\x2a\x2d\xb7\xbb\xc6\xda\x16\x34\x39\xf6\x2a\xba\x3b\xf8\x61\xdf\x5f\x2e\x8e\x7e\x56\x79\x36\xae\x8e\xd1\xdd\x74\x39\xfe\x79\xe8\x86\xea\x72\xde\x73\x66\x79\xa9\x79\x42\x4d\xf8\x74\x9e\x57\x62\x08\x6b\x55\x7a\x71\x92\x4e\x74\x24\x0f\x92\x74\x8e\xab\x64\x47\x25\xcf\xf3\x74\x42\x60\xa9\x80\xa4\xaa\x00\x27\x3e\x83\xef\xe4\x75\x26\xed\x4c\x46\x15\x2e\x3a\xbd\x2e\xfb\x0e\xaa\x39\xe3\x56\x5e\x3d\xd4\x48\x40\x2b\xb4\x07\xad\x4a\xc4\xf8\xe6\xcc\x84\xa5\xd8\xfb\x5d\x1b\x6e\x49\x3b\xec\xff\x4f\x8f\x65\xfa\x62\xc0\x3e\x45\x4c\x66\x32\xf5\x48\x63\x51\xe6\xdf\xc0\xf3\x95\x44\x41\x73\x10\x5f\x7c\x48\x70\x9f\xb1\x46\xf8\x3c\x8b\x14\xda\x97\x3a\x97\xf5\x30\x42\x3f\x16\x96\x7d\x83\x3d\x1c\x31\x2c\xbc\xc0\xb1\x09\x1e\xce\x79\x1a\x77\x99\xa2\x91\x07\x49\x4c\xf4\x68\xcd\x17\xa5\x12\xdd\xf3\x0b\x70\x19\x4d\x08\xb5\xc8\x3c\x7b\x18\x22\xcf\x96\x11\x7f\x2e\xb8\xe6\xfc\xf6\x50\x4e\xec\xc8\x5f\xe3\xb5\x72\xc0\xa2\x60\xc8\x1b\xda\x55\x2e\x9a\x23\x07\xb4\x1d\x2d\x1c\xf5\x11\xd7\xc7\x17\x69\xfb\xe9\x96\x07\x15\x89\x29\xf7\x8a\x56\x14\x9d\xa2\x4a\xb3\xf0\xc5\x80\xa0\x81\xa4\xce\x62\x46\xc8\xde\x98\x9d\xe2\x98\xb0\x4b\xcc\x47\x25\xed\xac\x70\xda\xaa\xd2\xbf\x31\x07\x7d\x66\xa5\x7e\xb1\x72\x22\xa7\xcc\x31\x71\x2d\x06\x54\x7e\x20\x75\x12\x56\x25\xfe\xea\x5e\xb9\x3c\x2f\xd9\x84\x2d\x9a\xa6\x49\xfd\x71\x89\x23\xa0\xb2\x2b\xf8\xba\xbe\x2d\xe5\xa7\x09\x67\x3b\x34\x2b\x2a\x89\x6f\x9b\x3f\x55\xee\xf5\xb0\xae\x0d\xad\xc4\x79\xaa\xa4\xec\xca\x2c\xef\xdc\x82\xd9\x4a\x95\xaf\x46\xa6\x45\xd5\x36\xff\x93\xbc\x17\x55\xb5\xb4\x6c\xb6\x61\xb5\x8c\xe1\x14\x72\xb8\xe6\x26\xf3\x66\x40\x4a\x1d\x3b\x32\xd3\xdb\xbd\xa1\x28\xaa\x09\xbf\xa2\x11\x14\xfb\x0b\xf9\xb9\x1a\x88\xde\x77\x06\x5b\xdb\xe0\xea\x33\x17\x57\xaf\x89\x31\x1e\x4f\x6c\x38\x88\x79\x39\xb8\xaf\x11\xec\x36\xdc\xdd\xd9\x38\xe8\x1e\xa3\xb8\x24\xc3\x62\x41\xb2\xa7\xb2\x6a\x1c\xbe\xda\x5e\x76\x1e\x5f\x5a\xea\x26\xbb\x45\x6c\xca\xb3\x95\xfd\xf1\xdc\x99\x36\xdc\xc4\xf7\xc1\xc5\x25\x36\x83\xfc\x03\x22\xc6\x5b\x88\xb4\x23\xc1\xc4\x56\x0e\x63\xbb\xdf\x19\xf9\x21\xe6\x2b\x0f\x4a\x7b\x2d\x6b\xb3\xdb\xf6\xe6\xf5\xf0\xbb\x67\x14\x2d\x3f\x11\x97\x4e\x88\xda\x92\x91\xe2\xc9\x16\x39\x1c\xa5\x35\x7c\x5e\x71\x00\xd5\xd0\xf7\x5e\xd1\x89\xb6\xe8\x1c\x54\xbc\x43\x2f\xb5\xe9\xb7\x23\x5d\xa3\x1a\x92\xda\x79\x18\x4e\xc5\xe7\xf6\x29\x37\xa1\x98\xd1\xfe\x15\x5b\x24\x9c\x51\xba\x12\x74\x52\xde\x2a\x6f\x7a\x1e\xe5\x7c\xec\xe8\xf7\x19\x0c\x8b\xe8\xd2\xf4\xaf\x0b\x5c\x50\xc5\xd0\xfe\x25\xdf\xe9\x49\x0b\x01\xe2\xc3\x3a\xb6\xc0\x56\x9d\xdd\xd0\xd9\x00\xeb\x5d\xf8\xab\xd2\x76\x41\x4c\xfb\xa9\xce\xb9\x34\x8e\x3e\xee\x2e\x70\xf9\x3b\xc0\xeb\xf1\x80\x87\xf7\x68\xf4\x44\xc0\x5f\xb6\x4f\xf7\x88\x11\x9c\x66\x4e\xcf\x02\xf2\x58\xed\x64\xef\x46\x94\x56\x99\xb8\xd7\x17\x0d\x29\x7c\xd6\x5b\x8f\xb1\xcd\x4a\xed\xd3\x76\xff\x93\xd4\xd4\x37\x43\x30\x8f\xce\x52\x37\x78\x65\x85\xae\x1b\x58\xeb\xdb\x17\x00\x1e\x5a\x4b\x75\xf5\xe8\xee\x9b\x71\xfa\xe7\x6c\x4c\xbf\xa6\x93\x6c\xc9\x77\x20\xd5\xd9\x63\x36\x65\x30\xd6\xf9\xc4\xc4\x3f\x43\x3a\xd0\x8d\x43\x1f\x86\xe6\xa1\x5e\x7d\x53\xc3\xc7\xa0\x5d\x5d\x47\x87\xc1\xb0\x9d\xf2\x3d\xc3\x54\x58\xa6\x6c\xcd\x70\xb6\x8b\x5e\x35\x72\x78\xc0\xe5\x8e\xc4\x6f\xf8\x35\x02\x56\x40\x1d\x39\x8e\x82\x67\xe2\x47\x1a\x31\xae\x09\x95\xa3\x18\x6c\x23\x3b\x69\xcc\x92\x54\x43\xaf\x1d\xff\x44\x5e\xe5\xfb\x79\xf4\xbe\x23\xf9\x5c\xea\xd8\x53\xf0\xda\xe5\x97\x13\x86\xe0\xe1\x79\xf1\x24\x15\x42\x99\x62\x4e\x3e\x81\xa4\x8c\xfa\x4d\xb1\x21\xb2\x01\xe4\xd4\x27\xc8\x62\x8f\xf9\xf4\x51\x27\x0d\x25\x73\x9a\xe2\x04\x6e\xa9\x98\x8e\x72\xaa\xaf\x17\x4d\x0b\x9c\xb5\x2b\xde\x4f\x17\x38\xb7\x94\xc0\xa7\xef\xc3\x9c\xf3\x74\x66\x8e\xc2\x6d\xd2\xd9\xb3\xc6\x48\x35\xaf\x7e\x16\x80\xf9\x1e\xa9\x9a\x9d\xc6\x2f\xd3\xae\x1a\x30\xda\x9e\x56\xf3\x8c\x52\x14\x6b\x4b\xde\x18\x4f\xb6\x77\xe6\x9d\x30\xe9\xe9\x88\xcd\xe8\x30\x0d\xe8\xba\x90\x18\x6a\x7a\xbd\xc7\x31\x46\xcf\x2c\xa7\xaf\x8e\x99\x6d\x46\x1f\xe0\x50\xaf\x99\x9b\x0d\x75\x78\x67\x59\x18\x8e\xe4\xe2\x72\xad\x36\x8c\x61\xd0\xe7\x6c\x73\xc7\xea\x60\xf5\x76\xcb\x13\x7e\xe0\x6a\x47\xfd\x89\x35\xf6\xb7\x9d\xbc\x26\xfc\x6d\xf1\x30\x9d\x89\x59\xcb\x7b\xf0\xc5\x49\x6d\x33\xa2\xb9\x49\xa3\x5b\xfd\x4a\xcb\x06\x99\x7d\xd9\x11\x6b\x55\x53\xb8\x48\x65\x7b\xa8\x45\x2b\x8b\x67\x07\x6a\x33\x4a\xb1\x07\xae\x51\xf4\xc5\x6a\x00\x5f\x74\x58\x46\x38\xd8\x5f\xea\xea\xa1\xbd\x73\xf8\xd4\xb3\xd1\x07\x00\x5a\xe8\xfd\x8a\x27\x81\x7f\xa8\x95\xae\x40\x67\x9d\x81\x3d\x2e\x6b\x60\x99\x83\x56\x90\x55\x08\xf8\xd0\x36\x87\x21\xd4\xa3\xa1\x7f\xed\x3c\x30\x94\x61\xbe\xd5\x23\xf7\xe1\x11\x2d\x73\x4f\x5b\xeb\xaa\xb3\x4d\x03\xf6\xc2\xea\xa8\xca\x51\x47\x66\xcd\x16\xf1\x7a\xc8\xae\xda\xbb\x39\x22\xa7\xf2\xfa\x1b\x69\x9a\xce\x39\x32\x52\xfc\x29\x68\x52\xf3\x30\x3b\x0e\xd6\xd8\xa6\x45\xff\xed\xf2\x46\x51\x42\x39\x82\x80\x2b\xdf\x90\xf2\x50\x07\xbb\x0e\xb8\x85\xbb\xfa\xab\x7e\x20\x0e\xb9\xe5\xf6\xc4\x43\xbe\x61\xbf\xf7\x56\x82\x06\x08\xc8\xbe\x06\x20\x95\xc4\x53\x57\x59\xff\xf6\xec\xee\xcf\xb6\xf0\x73\x7c\x2b\xe1\xb4\x8a\x9d\xfd\x24\x3d\xb5\x89\x2e\xe3\xd2\xd5\x92\x0b\x48\x78\xd9\xf1\x02\x07\xb4\x66\xf9\x8f\x4c\x95\x6b\x48\x15\x28\xc9\x12\xc3\xac\xe9\x8a\x79\xe0\x16\x5e\x6f\xc7\x1c\x70\x4f\x68\xac\xa0\x3a\xe0\x7c\x9b\x79\xde\x31\xf8\x3f\xad\xdf\x70\x52\xd2\x0e\x05\x11\xcd\xf5\x3c\xa0\x44\xc1\xf6\x7a\xdb\x75\x7c\x06\x93\x7c\x82\xba\x22\xed\xcf\xf9\xa5\xa9\x26\x6d\x31\xfe\x67\x7a\xb4\x2d\x9d\xe1\x21\xa2\xe2\xf6\xfb\x68\x94\xa8\xa6\x71\xc1\xad\x5b\xf4\xb8\xd2\x14\xf7\xb5\x10\x5e\xdc\x48\xb8\x5e\xf4\x48\xf8\x9e\x94\x26\x56\xf3\x41\x1e\xd7\x4b\xbf\xc5\x75\x78\xad\x2b\x4b\x66\x59\x78\x9b\x55\x5a\xd2\xfd\xc8\xb5\x35\x07\xfc\xde\xfa\x7a\xd4\x1f\x23\x7d\xa0\x1c\x97\xad\x72\x7b\x18\xa0\xd1\x5c\x88\x38\x41\xbd\xd2\xda\xeb\x24\xa2\x29\xe4\x39\xa0\xf1\xe0\xac\x76\x33\xbb\x5f\x8c\x72\xe5\x55\xab\x6e\x2c\x35\xfb\x1f\x95\x3f\xd1\x34\x5b\xbf\xb5\xcb\x73\x32\x1b\x51\x67\x41\x7e\x9f\x9d\x2f\x55\xfb\x49\x84\x6e\x22\x63\x7f\x6a\xce\xa4\xa0\x2a\x40\x9d\xaf\x95\xb4\x4c\x5d\x10\x29\x63\x9e\x05\x7e\x2a\x8e\x08\x73\x0d\x02\x96\x6a\x05\xbe\x0e\x3e\x5b\x56\xe4\x73\x94\xc1\xae\x9c\x26\xa0\x42\x37\xd7\xbc\x71\x9d\x63\x5e\xa8\x57\xba\x24\x84\x8b\x1a\x3f\x81\xff\x44\x1a\x35\xaf\xb7\x7f\xc6\x7a\xdf\xba\xd2\x26\x86\x0c\x49\xdd\xa7\x4e\xa7\x68\xa4\xe2\x95\x93\xd4\xf2\xd4\x8c\xa6\xec\xa0\xce\xd4\x73\x55\x3f\x19\x89\x7c\x50\x49\x50\xe8\xee\x34\x76\xee\x33\x66\xf6\x7f\xc4\x0c\x9b\x16\x5c\xe0\x0d\x86\xbf\x13\xf6\x46\x69\x45\xea\xe6\x4d\x85\x34\xb2\x02\x45\x5d\x01\xf8\x28\x2d\xb1\x96\x57\x5e\xb4\x5c\x12\x86\xdb\x1e\xf3\xa5\x7c\x11\xf5\x80\x9b\x5c\x55\x09\x1d\x8b\xdb\x55\xab\xeb\x18\x19\x7f\xb5\x3e\xdb\x2e\x21\x38\x85\xfb\x68\xb8\x37\xd4\x3b\xd6\xa3\xfb\x53\xf8\x44\x6c\xbf\xbc\x9f\xf5\x28\xee\x68\x03\x3d\x7a\x6d\x3c\xb0\xfc\x4b\xcc\x17\x9e\x7f\x51\x3e\xe7\x79\xe2\x26\xe1\x16\xee\xd5\xe4\x0d\xa9\x29\xb1\x6f\xf8\x6b\x63\x87\xe3\x21\x19\xc7\x22\x61\xbc\xcc\x2c\x4a\xf0\xef\x84\x89\x9c\x0a\x8a\x46\xd2\xbe\xfc\x07\x1e\x0e\xc9\x39\x45\x38\x77\xcd\x94\xe7\x25\x63\x88\x07\x7c\x2f\x69\x8b\xd3\xfd\xb4\xb9\x8a\x78\x07\xe3\xa8\x9a\xf0\xdf\x93\x49\xdc\x23\x11\xaa\x81\xb4\x78\xbb\x48\x6c\xd7\xa6\x84\xcb\x91\xdf\x5a\x6e\x26\xbd\x61\xbd\xac\xcd\x49\x49\x8c\x02\x49\xd7\xa7\x4e\xc4\xac\x28\x10\xf1\xcb\xb8\xdb\x05\x36\x69\x6e\x71\x0b\x49\xa9\xe9\x36\x09\xe7\x62\xfa\x32\x3c\x53\x36\x87\xa5\x67\xce\xa4\x01\x69\x49\x59\xab\x32\xf3\x7d\x9e\x65\x7b\x67\x4f\x11\x31\x42\x46\x5e\x2c\x86\x94\x23\x29\xdc\xe4\xf2\x29\x6f\xa3\x38\x19\x5c\x95\x8c\xa7\x35\xce\x55\xf2\x3b\x82\xbe\x8e\x2e\x64\x2c\xd2\x0d\xfa\x62\xb2\xb6\x31\xac\x94\x01\xc2\x2d\x21\x7a\x4d\xd8\x1c\x97\x50\x41\xf5\xc1\x5c\x32\xf3\x53\xc9\xd3\xbc\xed\x11\x7b\xf3\x4c\xf3\x1e\xb0\x68\xe9\x92\x7c\x65\x74\x15\x4f\x50\x10\xc2\x1d\x62\xdf\x10\x45\xc7\xff\x0d\x79\x57\xb8\x90\xa4\x4b\x35\x2a\xb6\x4f\x6d\xf1\x7e\x26\x5e\xce\x58\x8d\x17\x95\xb8\x65\xaf\x43\xa7\x97\x1a\xe5\xde\x83\x0a\x73\x2a\x7c\xbe\x2f\x8d\xe5\x4b\xfc\x48\x93\x3f\x45\x2f\x29\x92\xa1\xa3\xc5\x66\xfe\xa7\xba\x79\xe2\xb2\x80\x5b\xf2\xa2\x92\xbf\xd4\xf7\x0d\x29\xa5\xd3\xb4\xec\x8a\x4e\x49\x5d\xf0\x86\xe2\x65\xc9\x17\x46\x89\x50\x2d\xe5\x33\xcd\x52\x27\xcb\x4c\x23\x78\xb1\xc2\x72\x34\xfb\x6c\xa4\x51\x45\x14\x67\x27\x3d\xb2\x72\x28\xce\x97\x72\xab\x1a\x98\x70\xd9\x33\xa5\xa6\x2b\xa5\x10\x7b\xb8\xb6\x2e\xfd\x05\xa2\x58\x02\x20\x1d\x38\x5d\x52\x26\xf4\xe0\xcf\xbe\xa8\x88\xf4\x9c\x1e\x43\x55\xd9\x7b\xaf\xe8\xd7\xa8\xee\x25\x1b\x74\x76\xd6\x4c\xf8\x80\x5b\xad\x6b\xdb\x7d\xa3\xeb\x72\xeb\xa0\x7e\x8f\xca\xda\xeb\x5e\xf9\x37\x17\x86\xd7\x47\x04\x42\xb2\xfe\xa9\x5f\x0c\x76\x4d\x5a\x6e\x88\x0e\xa9\x8c\xe1\x35\x0a\xc3\x37\x85\xf1\x65\x0f\x59\xee\xb4\x47\xcd\x9d\xd1\x9d\xbe\x9c\x56\x97\x58\x10\x71\xb1\x2d\x2e\xa1\xc9\x75\xa1\x76\xc0\x1d\x75\x6e\xb0\x61\x1f\x36\x71\x81\x24\x5b\x85\x6b\x98\xe4\x35\x05\xe1\xa7\x86\xc6\x9b\xaf\x13\xb7\xf6\x3c\x6f\x19\x20\x1d\x6e\x7f\xdc\x9a\xeb\x61\xdc\x34\xd7\xb6\xd3\x33\xa2\xc6\xb1\x2d\xcf\xeb\xb4\x44\xd0\xf6\x9e\x3c\x9c\xff\x4c\x1e\xec\xb7\x2f\xa3\x4b\xf1\x4f\x40\x03\xef\x8a\xe2\x71\x90\x11\xbb\x48\xb9\x92\xb1\x14\x32\xd8\x11\x1b\xe6\x40\xd5\xec\xea\x8a\xfc\xee\x1d\xd4\x53\x1d\x9d\x87\x83\xb5\x86\xa2\xdf\x9e\x9f\x93\xd7\x62\xd6\x2c\x59\xb7\xe7\x61\x6e\x4d\x3f\x50\xaa\xdd\x8a\x47\xcb\x3b\x6e\xb8\x13\xfa\x89\x9d\xb7\xb1\x7b\xba\x2e\x76\x25\x61\xaf\xc8\x57\xab\x2c\x70\xf5\x8d\x47\x55\x2d\xf8\xcb\x95\xe3\xdd\x7b\x88\x06\x25\xa4\x6e\x86\x07\x38\xd7\xb3\xfb\xb2\x57\x75\xda\xa1\x9e\x72\x5f\x72\x5c\x40\xef\x40\x80\x75\xa4\x96\x7a\x33\xed\x76\xf0\xc5\xfe\x64\xc6\xa2\xdf\xf3\xc1\xe2\xb0\x6f\x24\x72\x97\x02\x79\xe0\x82\x41\x77\x15\xf2\xcd\xb2\xa0\x17\x81\xca\x9b\x7d\xde\x97\x87\x3e\x38\x7e\x57\x9d\x8c\xee\x1f\xd2\xed\xe7\xba\x62\x7b\xdd\xfb\x7f\xba\xbe\x52\xfe\x1e\x88\xc1\x88\x5b\x04\x03\x6f\xdc\xdc\xeb\x4e\x0d\x52\xdd\x1d\xcb\xcb\x06\x6f\x61\xdd\x8b\x0d\x86\x0e\xe0\x5d\xb3\x5f\x0f\x65\x11\xff\xa6\x74\x0d\x07\x7b\x89\xb8\x3b\x46\x24\xbe\x53\x61\xcb\x63\x36\x01\xc9\x81\xef\x26\x60\x41\x7f\xbc\x73\x07\x86\x5d\x76\x9d\x7f\x32\x84\x77\xb9\x74\x72\x66\xf8\x01\x3c\x7f\xfe\xde\xa8\x2f\xc2\x69\xca\x68\x4c\x07\xd1\x36\xd2\x3f\xf6\x00\xb9\xad\xdf\x62\x5c\x8c\x14\xa8\x32\xc7\x5f\xa1\xd6\x2a\xf0\x13\x1e\x28\x71\xd3\x9e\x89\x1e\x34\xb0\x86\x3e\xb9\x09\xfd\x4d\xca\x9c\xa4\x63\x2c\x44\x03\x93\xb5\xee\x36\x82\xe5\x29\x1d\xdc\x89\x24\xdf\xe9\xf5\xc4\x1f\xd1\xa7\x67\xe0\xde\xb5\xa1\x94\xb9\xad\x7e\xa7\xfd\x0b\xc6\x7f\x3b\x15\x5c\xf0\x99\xec\x77\xce\x3d\xb5\x30\x4d\x82\x46\x2c\x88\x67\x37\x41\xff\xcc\x54\xcd\xad\x82\xe9\x8f\x27\xcd\x75\xc3\x48\x43\x36\xf3\xbe\xb0\xac\xde\x67\xf3\x57\x61\xe7\x3b\x4d\x4f\xa4\xb8\xac\x6d\xf3\x39\x51\xe1\xd2\xd4\x68\x76\xe2\x39\x1c\x58\xc5\x5a\x00\xc1\x1f\x94\x96\x2c\xbc\x45\xae\x2d\x00\x2c\x3a\xa2\x3e\x65\xa6\x2c\xad\xc2\x74\x25\x66\x2e\xad\xc2\x55\xb3\xab\x97\xee\x79\x34\xd1\xd7\x5a\xee\xeb\xec\x6c\x48\xb4\xca\x53\xad\x2f\xff\x62\xdd\xdc\x9d\x5b\xd4\x64\x83\xe9\x25\x09\x73\x6c\xaa\xd4\x8e\xfc\x08\x9b\xd7\x03\x41\xf1\x64\x5b\x93\xa1\x44\xf6\x11\xdb\xb0\x91\x2b\x8c\x02\xdb\x23\xe3\x14\xff\x35\xb6\x7f\x26\xfa\x3c\xb2\x80\xd0\xa9\x55\xee\x08\x87\x85\x29\x05\x72\xbb\xe3\xb5\x69\x84\x53\x89\x53\xe8\xf4\x55\xd0\x38\xec\xdc\xf4\x59\xa0\x07\xa2\x6c\x46\xc3\xfa\x12\xfa\xd8\x8c\x9d\x85\xa1\xdd\x93\xb6\x9a\xa6\x3b\x0e\x38\x79\x48\xf5\x46\x47\xa2\x22\xa4\xa4\x0e\x5c\xaf\xd4\xcc\x23\x40\x0a\x3a\x6e\x65\xac\x73\x42\xa8\xa0\x09\x37\x9c\xce\xf5\x74\x46\x8f\x38\x13\xfa\x2e\x85\x2a\x9d\x67\xfb\x3f\x04\xfc\x0b\xf5\x1d\x2c\xf7\xd2\x81\x31\x86\xd7\x63\x5d\xe0\xa2\x11\x5d\x14\x12\x29\x1d\xf9\xe8\xfc\xc9\xf5\xe0\x68\x95\xe3\x43\xb7\xd1\xb1\x83\xf6\x11\x38\x83\xb1\x3a\x9b\x87\x84\x98\xf1\x23\x96\x4e\x60\x9d\xc6\x0b\x6d\xc1\xce\x76\x32\x9d\xba\x8d\x2e\xab\x65\x83\xd2\x54\x84\x41\xd3\x0b\xd1\x06\x64\x6a\xcb\x09\x41\x1b\x2a\xb6\xed\x55\x32\x1d\xad\xdf\xee\xcf\x45\xa2\xbf\x75\x8c\x87\x73\x5d\x6f\x74\x7d\xa7\x81\x30\x6f\xba\x7f\x91\x85\x6e\x77\x7b\x6b\xf0\x87\xb1\xdf\xd5\x00\x57\x3d\xfc\x97\xfe\xbd\xb0\x3f\xc4\x2f\x03\x3b\xc0\x7f\x3d\xcd\x06\x01\x0e\xd5\xde\x1e\x83\xf7\xec\xfe\xf1\x11\x0c\xc9\xad\x82\x5d\x52\xab\x59\x4a\x20\x6a\x7b\x75\x68\x63\x2d\xc6\xb8\xfa\x62\xc5\x0f\xec\xb1\x1a\x9f\x62\x36\xae\xa2\xce\x4f\x78\x19\x3f\xde\x90\xc9\x77\x25\xb4\xca\x06\xe3\x41\x44\x41\xf3\x17\xd6\x17\x52\x55\x9b\x16\xbd\xcf\xe3\xb1\xc2\x9f\x62\xe2\x65\xab\x94\x79\xac\xf0\xbe\xdc\x59\xe7\x76\xd5\xe7\xbc\x0a\x83\x28\xf3\x9b\xeb\xee\x76\xc2\xf8\xcf\xf6\x3c\x05\x9d\xa3\xb6\xf7\x69\x00\x7d\x68\x23\x6a\x2d\x6b\x1a\xc6\x49\x72\x41\xb5\x16\xb7\x45\x72\xb6\x65\x8c\xd8\x29\xb9\x54\xf3\xcd\xf3\x97\x74\x83\x84\x43\x86\x94\x1d\xcb\x7f\xe6\xa3\x2c\x7f\x92\xe9\xe9\x3b\x5f\xb5\x3d\xf1\xad\x5f\x4b\x4d\x78\xcc\x1c\x65\xb8\x6e\x9e\xf9\xc4\xff\x41\xc3\x3b\x6a\x37\xb5\xa6\x69\x89\xfc\x0f\x6d\x65\x2b\x14\xef\x1e\x34\x25\x4f\x73\x35\xa4\x27\xb7\x93\x5d\x36\x84\xd8\x2b\xdf\x83\x2f\x32\x37\x77\x26\xd9\x7f\x0a\xdf\xda\xf5\xd3\xa6\x9c\x64\x2b\x3a\xd7\xa7\xeb\xed\x22\x92\xb6\x5b\xfa\x69\x8b\x18\x8d\x75\x01\xa1\xa2\xd2\xca\x6d\xb4\x38\xd1\xfd\x62\x41\xd0\xa5\xa2\x42\xe1\x32\x7d\xab\x38\x86\xaf\xc9\x00\x96\x76\xc7\x4d\x84\x10\xcb\xd6\xb1\x04\xa1\x39\x15\xd9\xf4\xbf\xcc\x5b\xd5\xce\x94\xf6\xf0\xb8\x3a\x98\xc7\x4c\xa4\x56\xe3\x06\xf7\x6c\x56\x6b\x13\x0d\x39\x10\x65\xdb\xe2\xeb\xbc\x1c\x7d\xba\xcd\xc9\x51\x8f\x53\xa2\x30\xb1\x8b\xa5\x74\x67\x6f\x1a\xfc\x1c\xd8\x9c\xad\xd1\xf5\x95\xee\x93\x75\xbb\xb5\x34\x74\x2a\xeb\x5e\xdd\xae\x70\x69\xb6\xb3\xb4\x38\xb2\x4a\x68\x26\xd2\x62\x9d\xc9\x19\x12\x08\xd9\x3f\xf3\x7e\x25\xbd\x8f\xd6\x15\x05\x71\x62\x63\xd0\x45\x9f\xc2\x57\x72\x12\x4a\x52\x68\xed\xdc\x9f\xd2\x76\x9f\x27\x71\x19\x15\x83\xc4\x23\xf1\xef\xab\x95\x98\xf6\x84\xec\x3a\x0b\x78\x6b\x12\xa8\xc1\x17\x32\x9d\x7c\x4e\xa6\xb4\x6f\x0e\xb9\x9f\xd2\x3f\x76\x27\xfc\x56\xca\x74\xdf\x77\x76\x6a\xca\xa2\x32\x2b\xe6\x6c\xca\xd3\xa6\x6d\xb1\xcc\xd4\x94\xaa\xf6\xf8\x39\xbe\x51\x09\x9c\x77\x39\x2d\x3c\xf7\x76\xc2\xc8\x7f\xc4\x4c\xda\x2c\xe8\xe7\xbd\x4c\xf6\x14\xc6\x46\xc5\xa7\x34\xe4\x05\x87\x82\x52\xdf\x8a\x76\x52\x37\xa7\x79\x17\x9b\x7a\x03\xd3\x3b\x4a\xad\x71\xb2\x8c\x57\x65\x91\x68\xb5\x00\x5b\x69\x09\x5b\xca\xba\x51\x7d\xdf\xb1\x87\xc3\xe1\xf2\xa7\xbf\xc7\x1f\xe6\x5e\x1e\xb6\x4c\xac\x8e\xdd\xdc\x3d\x9a\x92\x13\x9b\x27\x67\xa4\xc1\xe3\xb6\x37\xac\xcd\xd8\x11\x6f\x5e\xde\x91\xa9\xe4\x31\x8b\x88\x02\x7a\xa2\x9e\x10\x90\x75\x34\xf9\x60\xaa\x38\x1b\xc4\xdf\x1c\xfb\x46\x98\x9b\xb1\x26\xb2\x23\xe7\xa6\xe0\x07\x5d\x9d\x67\x20\x7c\x4c\xb9\x97\xdf\x94\xf7\xd9\xd3\x56\xa4\x5d\xb8\xcb\xfd\x51\xe1\x61\xb1\x08\x29\x2f\xda\x23\xf9\xea\x0c\x49\xfd\x15\x1e\xb1\xb0\x36\x23\x3d\x02\x3e\xe1\x98\xd5\x11\x71\xa7\xff\x71\x4e\x44\x64\x5a\x67\x63\x5e\x2f\xcb\xb2\xc5\xb7\x20\x83\x6d\x54\xab\x29\xfa\x1c\x15\x24\x99\x2e\xda\x1b\xa3\x57\x10\x59\xf4\x84\x0b\x11\x58\x15\xd7\xc6\xdd\x49\x52\x88\x05\x09\xe7\x38\x9b\x4a\x46\x92\x2f\x87\xef\x91\x80\xf8\x7d\x41\x74\x69\x4d\xc6\x6b\xdf\x5b\x65\x7f\xb2\x8f\x90\xb0\x15\xbb\x72\x4b\xdc\x74\x2b\x0f\x89\x0c\xe0\xc6\x79\x17\x69\xfa\x27\x2f\x14\xfa\x06\xb1\x66\xdc\xc5\x9b\x83\xbb\x46\x98\xa5\xb9\xf4\xc9\x5e\xb9\x94\xcc\x18\x69\xaf\x2f\xfb\x1b\xd2\x29\xcb\xae\xd8\xcb\x5c\x59\x95\x5f\x69\x1a\xc6\x28\xc9\xa9\x7c\x18\x21\xca\xfd\x50\xa5\x60\xcd\xa4\xa7\x54\x4b\xa2\xcf\xf2\xda\x6b\x32\xb8\x63\x51\x76\xb5\xfd\xf1\xa7\x42\xc5\xf5\x66\x89\xdd\xd4\xd7\x0d\x97\x52\x8f\x90\x33\x64\xe1\xe9\xd5\x84\xb5\x4d\x98\x2c\x16\x9a\x52\xc6\xf1\x79\x7f\x6e\x7d\x25\xd0\x6f\xfd\x89\x2b\xd5\x03\x94\x5d\x13\x83\xb5\xff\xfa\x5b\x0f\x1a\xd5\x5f\x09\x40\xaa\x12\x1a\xff\xa1\x7a\xb6\xb5\xc9\xc0\x81\xe9\xf5\x27\x64\x7f\x83\x36\x57\xec\x6c\x3a\x11\xdc\x52\x6c\xdf\x6c\x15\xa2\x23\x0c\x6b\x3e\xc7\x6c\x4f\xed\x6c\x19\x8f\xb8\x14\x3b\xd6\xb6\x8e\xfd\x2e\xb2\x52\xee\xc1\x59\xcf\x58\xa5\x58\x8e\xb3\xf1\xf7\x55\x32\x12\x4e\x78\x36\x74\xbc\x4e\x91\xba\xcb\x1b\xb8\x84\x67\x17\x8f\xc8\x9e\x78\xec\x5a\x86\xb6\xc0\x3d\x07\x66\xb6\xb6\xfe\xf4\xfa\x38\x72\x5f\x5e\x4d\xde\xd3\x37\xa9\xb8\xec\x73\xb8\x83\xd7\x7e\xd7\xf7\x68\xcb\x66\xe5\xac\x1f\xa1\x36\xb9\x23\x89\xd2\x27\x5d\xe8\xb4\x0e\x88\x12\x09\x3b\x1f\x05\xce\x09\x6a\xba\xa2\x82\xcf\x27\xb5\xa9\x48\xa1\x07\x62\x26\xba\x15\xe1\x49\x61\x8f\x7b\x61\x2c\x45\x10\x4a\x8d\x8d\xd9\xef\x1b\xde\xff\x30\xf6\x3b\xe1\x9b\x62\x27\xf6\xe8\x25\x07\x25\x0b\x77\xec\xd4\xba\xce\x72\xdc\xb7\x39\xa5\x2a\x8a\xb0\x65\xfc\x44\xf7\x35\x22\x66\xf0\x70\xef\x51\x52\x52\x37\xbb\xf7\xa5\x47\xb2\x82\xdf\x37\xe7\x99\x28\x4b\x51\xd3\xbd\x86\xaa\x8f\xa8\xff\x90\xd7\x97\xaa\xfa\xb3\x7c\x3e\xe7\x9b\x0f\xec\xa5\x98\x66\x20\x06\x0f\x51\x63\x79\x27\x87\x8e\x07\x5d\x63\x7f\x1c\x16\x86\xd0\x43\x57\x8c\x42\xc2\x46\xa8\xc7\xc6\x71\xac\x2b\x5e\xec\x1e\x1e\xc6\xe6\xd2\xe9\xbe\x71\xb7\x5d\xa7\x8f\xf7\x57\xbb\xcd\x9c\xc8\x1d\x24\xbb\x73\xa6\x74\x86\x22\xb0\x7a\x23\x6b\x87\xf3\xb0\x8f\xfa\xee\x8c\x84\xe3\x1a\x3b\xe3\x47\x0f\xe1\x99\xad\xb7\x47\x1f\x10\x7c\x1b\x0c\xc6\xd8\x44\x41\xc5\xcb\xf1\x95\x24\xb5\xb8\x79\x9c\xec\xf9\x38\xe7\xc1\xf8\x75\x32\x94\xff\x6d\x72\x8d\x5f\x51\x5c\xfe\x54\x0e\x75\x43\x24\x61\x66\x73\x90\x2a\xf8\xfe\xdc\xda\x50\x88\xaf\xd6\xb0\x1a\xf9\xfd\xd2\xe8\xa8\x0a\xf5\xf6\xcc\x3f\xe3\x54\xb4\x6a\x51\x6f\x72\x9b\x2b\x77\x86\x38\xa5\x83\x59\x31\x56\x3e\xf5\x1b\x93\x3b\xf0\xef\xf4\x5b\xcc\x97\x9e\xfd\x33\x85\x6e\x69\xed\x77\x67\xad\xdc\xb7\x36\x4b\x66\xcf\xb9\x4f\xd5\x3e\x9d\x23\x63\xcb\xca\x26\xe6\xee\xe1\x86\x8a\xcc\xe7\x8f\x11\xbe\x67\x17\xce\x8f\x79\x34\xa4\x34\x9f\xf8\xd7\xfb\x05\xd7\x64\xd1\xc4\xef\x7a\x58\xf7\xf2\x5a\xea\x4b\xea\xe9\x69\xb6\x4b\xee\xe5\x2d\xb3\xb1\x70\xf1\xd9\x0d\xf3\x36\x88\x7d\x4b\x4f\x4e\x3c\x41\xf0\xe6\x9e\x2c\x92\x11\x5d\x93\x77\x97\x76\x23\x7e\x8d\x04\x2e\xdd\x44\xe2\xd5\x57\x97\x45\xc8\x21\xd5\x3f\x27\xf7\xa2\xec\xe5\xbf\x4e\x76\xa0\xce\xc8\x2e\x9c\xd2\x47\x8b\x6a\x56\x9d\xca\x77\x4d\x90\x5c\x39\xbd\x1e\x73\x55\x74\xf8\x74\x92\xfb\x65\xc1\x89\x33\x2b\xf1\x3d\x49\xf9\x67\x2e\x78\x18\x46\xbf\x3d\xfb\x97\x7c\x31\x04\xe6\xe0\xa0\x5e\xd3\x72\xd5\x51\x43\xfd\xba\xd6\xd0\x71\x74\xc0\x57\xf2\x01\x7c\x68\xf0\x5b\xc1\x08\xd8\x66\x78\x40\x10\x0f\x76\x1e\xad\x4c\x76\x05\x5b\x8f\x67\x73\x8f\x83\x35\x27\xe7\xc2\x4f\x83\xf7\x4e\x3f\x0f\xea\x74\xfc\x3b\x8b\xf0\x5d\xe5\x98\x3e\x47\xc7\x5f\x87\xb4\xcd\x4d\xb8\xe6\x3a\xaf\x9b\xe7\xba\x78\xb8\x00\xe7\x8f\x40\x1c\x91\x87\xe7\x91\x0e\x6a\xf4\xed\xf9\x60\xbb\xf5\x6e\x85\xf3\xc1\x56\x76\xce\x80\xae\xad\xf2\x17\xb0\x96\x2e\x7a\x7d\x3f\x7c\xab\xaa\xa0\x1c\x83\xb0\xea\x7e\x55\xf8\x08\x31\xde\xdb\x97\x5d\x86\x3c\xa8\xae\x4d\xa5\x20\xe9\x03\x27\xe3\xbc\x90\x8a\xa1\xab\xac\xed\x28\xad\x91\x57\xf4\x32\x54\xd2\x98\x92\x62\x88\x7a\x3c\xfe\x94\x54\xe0\x4a\x9a\x68\x77\x2b\x76\xf3\x9a\xdc\x80\x20\x62\x91\x93\x4e\x4e\x04\xfc\xf8\xa4\x0c\x34\x48\xfc\x35\xb5\x1b\xb8\xdb\x13\x32\xc5\xb7\xf6\x46\x68\xc8\xad\x3b\xe8\x68\x43\xb9\xb3\x6c\x04\xc3\x93\x7f\xad\xda\xe7\x9e\xa3\xb8\x2a\x6e\xc1\xd6\x28\xdb\x73\x0f\xe3\x62\x3b\x0b\xd2\x2a\x70\x2f\xba\x0f\xf0\xd2\xf0\xe0\xde\x94\xa8\x54\xc2\x66\x35\x3c\xe4\x24\x61\x79\x60\x75\x40\x10\xb1\x66\x90\xee\xb5\x9b\xd4\x39\x94\x8b\xcd\xf0\x4c\x1c\x26\xa0\x8a\xbd\xf7\x0d\x7f\x81\xfa\xfa\x68\x8f\x34\x80\x77\xfa\x59\x8c\xfa\xd8\x73\xfc\x73\xc6\x34\x6c\xd0\x98\x0d\xb2\x00\xd5\x53\x6c\x9d\x0c\xd3\xf2\x9c\xb0\x2c\x8b\xa8\xf9\xe6\x51\x26\xbb\x2b\x29\xf2\x0a\x6d\x36\x29\x38\xe4\x9d\xd0\xba\x22\xb3\x8d\xec\x26\x37\x48\xe2\x93\x9f\xb5\x97\x71\xf8\x3e\xb3\x1d\xa7\xc2\xee\xf8\xaa\xbb\xae\xd2\x74\xfd\xd4\xdd\xcb\xe4\x45\x4a\x45\x2f\x11\xdf\x1a\x40\xef\xcb\x77\xad\x0e\xdc\xaf\x2e\x70\x69\xa5\xcd\xf4\xfb\x43\xbc\x82\xab\x07\xd0\x0e\xfd\x0c\xd9\xa0\xa1\x6d\x1a\x21\xa3\x66\x5d\x9f\x8b\x67\x4a\x75\x83\xe2\x92\xcf\x8e\x6a\x8f\x86\x93\x94\xa3\xd5\x5d\x15\xa4\x80\xe7\x35\xb0\xa2\xbb\xd4\x17\x75\x7b\x84\xee\x81\x93\x0d\x7b\x52\xef\xd2\xa4\x32\xaf\xb8\x27\x41\xc9\xcd\xf9\xac\x89\xe0\xb6\x56\x09\xfd\x3e\xfd\x9a\xfc\x0c\xa5\x3e\x64\x83\x52\xc3\x63\x22\x34\xa0\xe3\x91\x7b\x55\x98\x66\x17\x1b\x59\x15\xde\xa3\x1a\x70\xce\x8c\xe4\xf4\xac\x76\xdc\xcb\x76\xeb\x85\xd8\xd5\xfb\xd8\x49\x75\x07\xe1\xfe\x40\x89\xa2\xf3\x53\xe0\x05\x89\x6f\x8b\x25\xfd\xa8\x04\x5b\x53\x17\xba\x52\xa2\x94\xec\x65\x2e\x49\xdf\xe5\x97\x84\x7d\x2d\xef\xcd\x5c\x1d\xfe\xb3\x72\x3e\xf1\xdf\x88\xab\xd5\x6f\x63\xee\x45\x5e\xad\xd3\x0b\x03\xb3\xce\x36\x00\x03\x8f\x45\xd1\x9b\x56\x90\xcb\xa2\x67\x5b\xc2\x09\xab\x39\xe0\xb6\x58\x8c\x0e\x77\x56\x61\x0e\xf7\x88\x43\xb4\xcf\x40\xba\x79\xda\x1d\x43\xf6\x75\xb4\x36\xd1\xfc\xe8\x1c\xe3\xab\xc8\xb1\x37\x36\x6c\xb0\xe0\xb1\xe2\x2e\x0b\x57\x50\xd7\x48\x8f\x7a\x26\xda\x55\x71\x8b\xb3\x5f\xb4\x54\xec\xce\x35\x2d\xe2\x0b\xdb\x62\x91\x62\x3f\xfe\x96\x38\x5e\x69\x40\xdc\xb7\xf8\x42\x69\x1e\xeb\x15\xaf\xb9\xfc\x0d\xa3\x24\x61\xb6\x2a\xd6\xdf\x2f\xc9\xaa\x96\xe0\xd9\x9c\xdc\x57\xff\x06\xcb\x4a\x85\xcb\xf6\xa3\x54\xfc\x53\x4d\x7f\x61\x9b\xd2\x39\xad\x30\xd0\xcb\x08\x6a\xd6\xe4\x94\x73\x54\x7c\x16\x6f\xd0\x9d\x8b\xc9\x32\xed\x1a\x8e\x6f\xc8\x3a\xd8\x6a\x95\x28\xc8\xf2\xab\x1d\x4e\x5e\xcc\xfa\x23\x25\xa5\xba\x0b\xd7\x17\xbc\xe6\xeb\xe7\x08\x04\xfc\x34\x68\x9e\x3a\x79\x53\x7a\x8c\x68\x27\xa7\x27\x43\x59\x94\x1f\x1e\x97\xf9\x54\xfc\x22\x08\x97\xf5\x8f\x64\xc1\xb7\x39\x3b\xa6\xbc\x81\xb4\x5f\x38\x54\x15\xef\x26\xcb\xd5\xac\xdd\x83\x18\xcf\x9b\xad\x1f\x83\xfc\x88\x3b\x95\x12\x37\xf7\x3e\x71\x29\x85\x3c\x86\x4c\x65\xa6\x40\xfb\xae\xa5\xd7\xa6\x04\x29\x69\x02\x41\x4a\xb5\xec\x72\x76\x45\x2a\xb6\x2a\x32\x27\x92\xbf\xb7\x44\x33\xd7\x22\x8d\x99\x3b\x9d\x7b\xeb\x3f\x62\xe6\x9b\x0a\xaa\x12\xf6\x14\x04\x09\xa1\x51\xa7\x45\x3d\xb9\x6f\x42\xaf\x14\xfe\x2e\xf0\xa0\x5e\x2c\x96\x17\x59\x93\x75\x4b\xe2\xc4\xcf\xf1\x79\xa5\xdb\xa5\x04\x57\x89\x04\x56\xf1\x1a\x66\x96\x71\x84\x8b\x5b\x3a\x99\xf5\x81\xdb\x3f\x7d\x20\xd7\x96\x7b\x61\x68\xb4\x80\xc0\xfd\xd2\xed\x51\x78\x2e\x36\xa5\xed\xa3\x58\x33\x6e\x5f\x7d\x49\x49\x6e\x3c\xa8\x9c\x54\x7a\x9a\x97\x51\xa4\x2d\x89\x4b\x04\x67\x3f\x95\x9a\x24\x9b\xa6\xb6\x94\x61\x52\xff\xc6\x01\xcb\x5b\xd2\x4f\xb2\x0c\x2b\x35\x04\x52\x46\x58\x15\x49\x18\xec\xdf\x55\x7d\x23\x8f\xed\x65\x5e\xcb\x17\xe1\xb1\x37\xeb\x26\x8a\x47\x91\x17\x0b\x35\xc3\x2d\xce\x94\x8a\x63\xc3\xbf\xcc\xb7\x48\x48\x11\x79\xe3\xa4\xb2\xf7\x91\xdb\xfb\x0f\x54\xea\x45\xf6\x77\xdc\xab\xfa\xcd\x8a\x6b\x56\xd6\xf0\xd8\x59\x35\x19\xb5\x83\x51\xa7\x25\x1e\x75\x1d\x31\x55\x05\x06\xf5\xfe\xdc\x62\xc1\xb6\x06\xdb\xf8\x75\x49\x63\x8d\xde\x09\xa7\x38\x0c\x59\x7b\x72\x6b\x78\x45\xb3\x33\x3f\x2a\xe8\x6d\x4b\x67\x46\xad\x9f\x57\xeb\x9d\xac\xbb\xa4\xd3\x72\xfb\x5c\x9c\xdb\xce\xca\x7d\xb4\x35\x17\xae\xd4\xd8\x04\x69\x2c\xfd\xac\x37\x08\xba\x37\x3d\xd4\x28\x0c\xfe\x35\x3c\xdc\xd4\x4a\xff\xdb\x23\x6b\x59\x19\xa2\xa9\x18\x69\xa5\x86\x6e\x68\x3c\xdf\xe6\xca\x8c\xad\x7c\x2b\xb7\x08\xbb\x2b\xfe\x26\x7f\x14\xa9\x91\x5b\xa4\x50\xb2\xb5\xd3\x91\xed\x27\x63\x36\xf0\xa6\x95\xf7\xb8\xb7\xa2\x44\x9d\x96\xf1\x57\x43\x3f\x74\x9d\x4c\xec\x0c\xc4\x77\x7b\xa4\x1a\x92\xf3\x7a\xba\xd2\x97\xf1\xac\xa6\x43\x3e\xec\x7f\x47\x5b\x8f\xfa\xe9\x9d\x06\xc8\xfb\x29\x7a\x73\x3f\xda\xef\xfa\xaf\x19\xa7\x74\x34\xf8\xff\xe8\x7f\xd2\x65\x18\xf0\xb0\xcb\x57\x95\x4c\xbd\xd9\xda\xdd\xdd\x42\xdb\x5a\xbf\xa2\xc7\x33\xa8\xa6\x9c\xd4\xf3\x87\x8e\x2e\x62\xf7\x96\x84\x54\x65\x7f\xe8\x73\x0b\xd3\x4e\x4d\x53\x27\x46\x9a\xc6\xbe\x1f\x58\x15\x65\x12\xf9\x61\x30\x91\x03\x62\xc0\x86\x7e\xc5\x45\xfa\x07\x8e\xd4\x24\xa2\x3c\x4e\x2b\xbf\x93\x3e\x5e\xf9\xda\xf5\xc3\xb3\xe4\x8c\xb2\xc7\xd7\x2b\x75\x81\xd8\x97\xee\x8d\x9e\xb2\x57\x3f\x23\x7b\x0d\x53\x06\xdc\x7d\x10\xbd\x9c\xc1\x60\x5f\x3b\xa5\xef\x50\xac\x9f\x49\xb3\xfe\x30\x96\xe2\x55\xb3\x38\xfc\xc7\xbf\x43\xea\x32\xd2\x45\x0d\x16\x1d\x1b\x45\xd2\x3a\x04\x9c\xb1\xfd\xf4\xa2\xa4\x99\xf1\xa0\x50\x05\xc7\x7c\x72\x75\xf8\xbd\x70\xf3\xe9\x35\xac\x8f\x41\x81\x33\xd3\x31\x3f\x7c\x5c\xd4\x78\x1c\xe3\x6a\xe6\xe0\x16\x3c\xe9\xec\xbf\xc3\xc6\x04\xf2\xd2\xbe\x51\x0b\x22\x71\x26\x7f\xac\x9a\xe4\x36\x66\x38\x7e\xd9\x03\xd4\x7f\x66\xe2\x93\xe7\x3e\x15\x69\xf2\x96\xd7\x1a\x79\xc5\xd4\x59\xaf\x37\x8d\x67\xa6\x13\xc9\x9b\xab\x4a\x66\x74\x7c\xe0\xa5\xf6\x33\x6d\x7e\x96\x79\xf7\x66\x11\xfe\x3e\x19\x07\xe7\x4a\x03\x19\xbc\x17\xf3\x37\x83\x95\x51\xe0\x85\x80\x50\xd7\x90\x3b\x4b\x17\x22\xbe\xfb\x2d\x8c\xaf\x76\xb3\xbe\x32\x38\xe9\xe6\xae\x73\x2e\x6d\x5a\xcb\xfd\xd2\x32\x67\xe6\x15\xd6\x7f\xae\x7f\x8e\x8d\xbd\x3c\xf1\x61\x3e\x01\xe7\x3b\xbc\xf5\x84\x00\xf7\xb8\xef\xe0\x42\x08\xbe\xb1\xe3\xde\xa2\x1d\x21\xab\x95\xb9\xb4\x82\x18\x5f\x3f\xb6\x54\x4e\x52\x54\xd0\x96\x8d\x3d\x9e\x15\xff\x5e\x6e\xf1\xd6\xcd\xc9\x3f\x09\xf5\x09\xe3\xff\x38\x15\x4f\xe9\x8f\x13\x9e\x7e\x13\x88\x8c\x3c\x74\xb6\x8c\xde\x12\xa4\x33\x2f\x45\x29\xae\x0a\x16\xe6\xd0\x93\xe7\x1f\x2f\xe5\xb8\x9a\x9c\xca\x39\xa9\xe7\x1a\xb5\xe0\x75\x6a\xda\x55\x38\xe3\x78\xba\xdf\xf5\xee\x98\xf2\x4c\x11\xc6\x6d\xe0\xdd\x59\x7f\xcc\x5c\x8f\xfe\xb9\xed\x6e\x91\xed\xcf\xce\x2d\xb9\x1f\x6b\x2e\x3b\x1f\x85\xdd\x58\x7b\xea\xfc\x15\x1c\xb8\xcc\xed\x82\x0f\xfe\x44\x61\xcd\x85\xcf\xc4\x4b\xd9\xa2\x8b\xf5\x9e\xd4\x94\xe7\x97\xe4\xe4\x79\x2e\xfc\xdf\x74\xca\x75\x66\x39\xcc\x7f\x64\x97\x12\xed\x72\x73\xe4\x9a\x2c\x13\xce\x19\xb3\xaf\xda\x05\x6f\x19\xbf\x22\x1e\x86\x77\x4c\x46\xe6\x62\xe1\xb9\x53\x7f\xd2\xae\xc1\xfd\x66\x54\xbc\x17\x70\x8d\x39\x9b\x68\x2d\x97\xb7\x27\xd6\x33\x0d\xe0\xda\x0b\x39\x81\x01\x2e\x05\x8b\x01\xde\x95\x2e\xdc\xc5\x37\xb8\xc3\x2e\xa2\xa5\xef\xa8\xd7\xa8\xe3\x8b\x9f\x60\x58\xd7\xbe\xc5\x19\x30\xcb\x3d\x7a\xb1\xcf\xbe\x05\xf7\x7e\x51\x6d\xd3\x88\x1a\x56\x43\x3b\xaf\x63\x34\xd4\xb2\xe6\x9b\x6e\xa9\xfd\xb9\x35\xee\xee\xb8\x81\x07\xa5\x0f\xdc\x2f\x0c\x71\xf2\x59\x58\xe3\x91\x35\x19\xcf\xb1\xe4\xd1\x5f\x89\x17\xb0\x81\xe3\x6f\x63\xce\x60\x07\x26\x1f\x87\x75\xe2\x56\x4e\xab\x68\x17\x71\xac\x99\x22\x9f\xd3\xb8\x5b\xb3\x36\x84\xd3\x04\xd0\xac\x0f\xc6\x83\x38\x38\x4b\x85\xaf\xf2\x20\xcc\xb2\x20\x22\xaf\xec\xd9\x49\x87\x93\xe4\xe1\xb9\xd5\xb6\x17\xdc\x47\xba\x5a\xba\x87\xf0\x45\x5d\xe3\x6d\xe9\xc4\xf7\xaa\x0d\x75\x0d\x1e\xf1\xdd\x3a\x65\xdb\x3c\x2b\x7a\xe2\x44\x39\x5e\x90\xbe\x3d\x59\xeb\xbc\x7a\xfa\xb5\x93\xef\x79\x3d\x18\x24\x71\xff\x78\xc3\x86\xc9\x11\xaf\xbc\x2f\x8c\x3a\x05\xbf\x24\x87\x8c\x0d\xfa\x3d\xf7\x59\x35\xde\x4c\x6a\xf7\x35\x99\x38\xee\x76\xd7\x4f\x3e\xc1\x45\xfc\xf5\x5f\x39\xd1\xec\xbc\x97\xba\x66\x52\xcf\x71\x3d\xcd\x64\x32\xde\xee\x0e\xf1\xbd\xfc\xa4\x5a\xc7\x6b\x9f\xbc\xbc\x5d\xea\xb3\x46\xce\x6b\x14\xfa\xa1\x15\xc7\x2b\xfe\xf8\x53\x15\xbf\x8b\x13\x02\xac\x94\x33\xc2\xe7\x01\x9f\x3a\x5b\xf8\x51\xd4\xe8\xee\x63\xf1\x49\xd4\xdb\xbd\x1c\x76\x61\x60\x9b\xda\x25\x84\x42\xf3\x19\x58\x15\xc0\x0a\x3a\x32\x68\xe9\x15\x1d\xbc\x79\xc8\x04\xfb\x8a\x9e\x36\x74\x12\xbd\x9f\x71\x69\x18\x04\xb3\x0d\xa5\x0e\xcf\x80\x89\x61\xc4\x91\x70\xfb\x95\xe4\x16\xd9\xf2\xa0\x82\x62\x2f\x43\x76\x5e\xa3\xfa\xcb\x56\x35\x8f\x04\x21\x65\xfa\x35\xbb\xe9\xcf\x64\xaa\xd2\xb1\x10\x72\xf3\xe6\x7c\x9f\x50\x44\xcb\x42\xc6\x2b\xe6\xaa\xb6\xfb\x89\xaf\x98\x45\xed\x66\x9c\xf5\x61\xb4\x0e\xf7\x30\x65\x38\xac\x0b\x4f\xf3\x8a\xb0\xeb\x36\xf4\xa1\x45\x6a\xf6\x0c\x10\x22\x59\x59\xbd\x67\x31\x61\xec\x0f\x7d\xf2\xff\x8b\xba\xb7\x0a\x6a\x03\xfc\xfb\x3d\xa9\xbb\x52\xc1\x5d\x4b\xdd\x1d\xda\x52\xa3\x40\x71\x77\x77\x8b\x40\x12\x82\x85\x40\x84\x40\x08\x96\x20\x31\x08\x41\x03\x24\x58\x82\x27\x10\xdc\xdd\x1d\xda\x22\xa5\xa5\x42\x7d\xe7\x7f\xde\x39\x67\xf7\x9d\x9d\xb3\x7b\xb3\x37\xfb\x3c\xf3\x7b\xe6\xf7\x9d\xf9\xce\x3c\x97\x9f\xcb\xcf\x73\x46\xc0\x2b\x8e\xb5\xe6\x97\xa0\xab\xe5\xe1\x0f\x1e\x38\x48\x66\x1c\xe1\x65\x3a\x0f\xa6\xdb\x94\x4e\xb8\x2b\x91\xbe\x33\x77\xbc\x2c\x48\x85\x94\x07\x3e\xfd\xe9\xf7\x52\x5b\xfc\x26\x32\x24\xe2\xdf\xfa\x6f\x66\x2e\x23\x87\x02\x96\xc9\xad\x70\x42\x60\x0e\x75\x1c\xd4\x15\x64\x4b\xff\xe0\xdb\x0b\xd0\xcc\x59\x71\x55\x00\xbe\x60\x1e\xb4\x55\x04\x85\xe6\xab\x9a\x16\x82\xcb\x0a\xbe\xe8\xe7\x85\x68\x14\x01\x5f\xad\x43\xe8\xc5\xc2\x67\xca\x30\xdb\x92\xa0\x47\xaf\xdc\xab\x92\xfe\xd4\x13\xbd\x9b\x93\xf4\x2a\x6e\xf9\xc7\x10\xf8\x45\x36\x41\x4b\x04\xa7\x6c\x01\x28\x8e\x90\x96\x71\x25\x38\x2f\xe9\x25\xa1\x04\x72\x32\x39\x07\xf3\x00\xaa\x96\xaa\x13\xd9\x0f\x53\x25\x6a\x43\xba\x60\xdf\xd3\x1d\x03\x7f\x85\x0a\x32\x63\x3c\x73\xe0\x6e\x64\xb8\xc3\x56\x98\x90\x26\x66\xe9\x15\xa1\x91\xed\x67\x74\x35\x32\x99\xe1\xac\x7b\x1b\xb1\x87\xa9\xf1\x22\x26\x3a\x2d\x6f\x47\x4b\x3d\x80\x14\xe7\xce\xef\x03\xce\x60\x0b\xb9\xcd\x21\xb5\x58\xa5\xb2\x33\xa1\xc7\x31\xcb\x79\xd0\x70\x75\x4c\x23\x65\x34\x52\x0c\x8b\x4e\xf3\x8e\x6a\x8e\x03\x27\x88\x20\xe2\xe3\x45\x63\xd0\xd1\x5e\x09\x0b\x61\x62\xc8\x88\xc4\x2d\xf0\xf9\x98\xe0\x64\x31\xbf\x2b\xb1\xe1\xa9\x56\x6e\xd2\x28\x04\x91\x62\xa7\x82\x9e\xc8\xd0\x33\xeb\xc5\x5e\xca\xea\x79\x5b\x14\x17\x43\x7d\xf2\xba\x37\xfe\x28\x3d\xfb\x99\x11\x94\x1c\x0d\x6b\x05\x87\xb5\x22\x7e\xd7\xa3\xa3\xb4\x10\xa5\x95\x87\x90\x91\x08\x68\x31\x08\x65\x86\xc0\xe7\x0c\x61\x72\x10\x3f\x32\x4d\xe3\x6c\xa3\xeb\x93\x7e\xe1\x90\xc8\x69\x2c\x27\xfe\x71\xac\x11\x02\x94\x70\x1b\x1d\x02\xbb\x8e\xbf\x8d\xed\x0d\xfa\x97\x68\x1e\x2f\xe1\xb5\x4d\x48\xc4\xbf\x71\x5a\x4e\xda\x26\x6c\x5b\x07\xa6\x78\xa6\x14\x98\x68\xa7\xa6\x10\x03\xf4\xe2\xd2\xc6\x33\xd0\x2f\x60\xd1\x3f\x42\xef\x75\x29\xa2\xe6\x43\xf7\x08\x7c\xe3\x5c\x61\xbd\xbc\xed\x84\x0a\x18\x99\xed\x4d\x30\x82\x0d\xe5\x0f\x25\xc7\x87\x3e\xa5\xbd\x4d\x3d\x09\x57\x21\xfe\x4c\x73\x0f\x3b\x83\x2f\x20\x1e\x0a\x77\x43\xe1\x88\xb4\xff\x10\x93\xf4\x1b\x01\x0c\x31\xcf\xb8\x1e\xb3\x3f\x40\x3b\x33\x02\x95\xeb\x01\xc8\xaa\xc1\x9e\x77\xc0\x50\x1c\x70\xef\x2d\x65\x69\x72\x78\x94\x61\x2f\xfd\x46\x52\xab\x4e\x3e\x3e\x1f\x70\xad\x0f\x9a\x2c\x02\xb0\x6e\x5d\x4c\x53\x04\x04\x37\xc4\x92\x36\x01\x49\x95\x9f\x33\x43\x01\x1d\x2c\x67\xb2\x3b\x10\x90\xab\x4e\x15\x05\xbd\xc8\xfa\x49\xbb\x0b\x0e\x49\x99\xa4\x5f\x0b\xee\xc0\x35\xd2\x07\x21\x3e\xc8\xda\x6c\x22\xec\x39\x3c\x2f\x67\x18\xfe\x05\x14\x9a\x7b\x3f\x82\xe6\x9b\xc0\xcc\x46\xd8\xb9\x2e\xe6\xad\xc5\x88\xd9\xdd\x28\x50\x42\x3f\x31\x2b\x2d\x64\xc4\xf9\xe9\x4f\x65\xf4\x7b\xfe\x1d\xaa\x20\x6f\x7a\x41\xbb\x8e\xd3\x9a\xbc\x8f\x0a\x04\x39\x77\xbd\xe9\x35\x81\xb9\xae\x3e\x17\x39\xe2\x79\x32\x3e\xd3\x05\xff\xf2\xd3\x7d\x73\xb2\xf7\x15\x34\xf8\xb5\xa6\xef\x14\x96\x07\xc8\x11\x7a\x8a\x62\x02\x37\x31\xed\xc5\xcf\x01\xcd\x51\xe3\xac\xa7\xe0\x6b\xd0\xba\x12\xff\x90\x0f\x41\xb4\xd2\x09\x58\x99\xd7\x0c\x3b\x39\xcc\xc9\xf9\x5a\xf9\xc1\xc8\x08\x6b\x9f\x8a\x7b\xd1\x3b\xc6\xcf\x18\x34\xc7\xab\x63\x99\x79\x9f\x9d\xda\x7b\xfa\x0a\xd3\x9c\xdd\x85\xf3\x2c\x51\xe7\xa1\x06\x95\x92\x51\x97\xaa\x2a\xc7\x32\xa8\x2b\xbc\x24\x83\xdd\xe4\x16\xc5\x7c\xcf\xf9\xe7\x0e\xa1\xde\x29\xe7\x7a\x6c\x12\xdd\x2b\x42\xbc\xac\xf0\xb1\x95\x77\x7c\xbc\x51\x2f\xaa\x8e\xf8\xb9\x46\x5c\xac\x76\x08\xd4\x0c\xde\xe6\x26\x00\xbe\xfb\xaf\xd4\x9c\x04\xbf\xf7\x50\xaa\xed\x86\xd4\x38\x58\xd5\x67\xc2\xdd\xcd\xc7\x58\x5f\xad\x03\xc6\xc7\xd8\x17\x6d\xe8\x7d\x31\xe5\x70\x5b\xf1\xf6\x7b\x95\x65\xb6\x30\xfe\xfe\x6a\x2b\x3b\x45\xde\x1c\xb7\xcb\x6e\x84\x53\x52\x23\x6b\x4f\x2d\xf2\xac\x35\x73\x28\x60\x9c\xa8\xd3\x73\xfc\x98\x95\x57\x37\xeb\x0c\x4b\x95\xaf\x0f\x71\x95\x89\xb7\x6d\x90\x73\x37\x42\x7e\x68\x3c\xe6\x59\x00\x4f\x6d\x4a\xf6\x49\x01\x69\x09\x2c\xfd\xd1\xbe\x52\xcd\xcd\x41\xb5\x2e\x7f\x84\x6e\x60\x5f\xeb\xb5\xaa\x28\x33\xd9\x09\x3e\x0f\x60\xae\xd0\xff\xa9\x36\xcb\x7c\xb8\xe3\x67\x7d\xba\x05\xa0\xf9\x79\xa3\xae\xe5\x89\xba\xe2\xa6\x74\x4b\x4e\x95\x12\x7f\xc2\x4a\xbf\x14\x25\x58\xb2\xbe\x92\x9f\xd7\xbc\x66\x23\x45\x67\xb5\x94\xd9\xbe\xca\x70\x16\x9a\xda\x65\x27\xbd\x13\xfe\x72\x70\xc7\xce\xb5\x12\x9c\xa8\x08\x40\x5b\x96\xab\x0b\x74\xba\x43\xdc\x03\x1c\xa4\xd9\xc9\xf3\x9e\xf3\xe4\x74\xcf\x06\x9c\xb1\xbf\xd6\x30\x65\x78\x62\x7c\x85\x4f\x31\xfc\x33\xb0\xdd\x3c\x68\xd4\xd2\xd5\x24\xcc\x37\x36\x16\xb6\xb4\xd9\x18\xd7\x36\x0a\xda\x11\x26\xd6\x3c\x7a\x47\xa2\xc9\x9f\x72\xff\x4e\x94\x29\x9b\x75\xb2\xcb\xc1\x8c\xc9\x74\xe8\xbe\x6d\x4e\xa7\x66\x74\x0f\x58\x6c\x92\x2e\xf7\xf8\x5a\xe9\x27\x16\xf4\x1e\xb4\x79\x86\x8e\xee\x2d\xb3\x33\x8e\xbc\xd1\xb7\xe5\x08\x0a\x39\x3c\xe0\xe9\xc2\xf6\x17\x1b\x7a\xe6\x51\xe8\x6a\xdc\x4e\xd3\xfd\x30\x29\xd1\xd9\xa2\x37\x39\x54\xd9\x5d\xa2\x9f\xd0\x33\xd4\xab\xa4\xdf\xd6\xae\xdd\x57\xa4\x3f\x20\x68\xe9\x1f\x7b\x2b\x59\x2f\x35\xd0\xf5\x36\xa7\xfa\xe6\x20\xc7\xe0\x11\xfb\xde\x50\xb4\xe1\x99\xc2\xb5\x61\x4d\xa3\xbd\x0c\xd7\xe1\xef\x46\xbf\xc9\xa5\x23\x10\x13\xa3\xb4\xe7\xa3\x87\x4c\xd9\x09\x43\xa3\x05\xe6\xdc\xd8\xfc\x31\x3b\xcb\x7f\xe1\xf7\xc7\x71\xb6\xb6\x20\xd0\xe4\x1b\x87\x1f\xde\xba\x6f\x66\xeb\x93\x4a\xae\xeb\xf6\x37\x24\xe5\x96\xeb\x59\x36\x76\x92\x7d\xf4\xa4\xf9\xd0\x94\x7e\xdd\xa6\x66\x09\x9c\xa6\x6e\x47\x8b\x51\x74\x97\x2e\x59\x98\x17\xca\xd0\x75\x6f\x5d\x07\x7e\xd4\x7d\xd0\xae\xe2\xab\xab\x7b\xa1\x23\xd0\xb5\xf5\xcd\xcf\xce\x08\xbb\x17\x6f\xd2\xbb\x0e\x99\xf9\xe8\xb8\x76\xfd\xd2\x4f\xd4\xf9\xd5\x7d\xf1\x95\xa5\x1e\xa4\xeb\xd1\x53\x7d\xc3\x33\x9d\x8f\x1f\x15\x19\xbb\x74\xbe\xbd\x17\x69\x30\x55\xfd\xbd\xac\xca\x88\xc0\x85\xe5\x6d\x1a\x7f\xe3\x5d\xa3\xfa\x9b\xc4\xd5\x24\xa7\xf5\x99\x2c\xd6\x89\x25\x5c\x34\xbd\x54\x4f\x8c\x21\x98\x1a\x36\x5e\x0d\x93\x36\xbd\xd5\xb4\x0e\xd6\x33\xbd\x2c\x80\xfa\xa5\x9a\x7a\x37\x6f\xba\x5f\x32\xc5\x0b\x5f\xd9\x6f\x99\x6e\x08\xc9\x16\xda\x66\xda\xc2\xdf\x06\xb9\xe6\xfe\xc2\x2e\x9d\x50\x0b\x8a\x10\xad\x6d\x61\x25\x2f\x0c\x7a\xbc\x63\xf3\x50\x98\x75\xbf\xd1\x34\x91\x93\x5d\xae\x6f\xbe\xc8\xe1\x15\xca\x58\x2e\x95\x9f\xa4\x87\x58\x1b\x94\x6f\x93\x66\x6c\x02\x2a\x4f\x26\xde\xb7\x3d\x59\x95\x8c\x2a\xb0\x4d\xe0\x2a\x45\x1c\xb7\x4d\xaf\xf1\x0a\xb9\x6e\x0b\xa8\x2b\x0e\x78\x66\x3b\xdf\x40\xf5\x28\xb0\xd3\x6b\xba\xe9\x08\xb3\x1b\x6e\x6a\xb6\xac\xb6\x77\xe4\x4b\x1a\x36\x39\x04\xf0\x25\xdf\xe4\x38\xa2\x9b\x7e\x3d\xef\x77\xa2\x36\x0d\x6b\x1d\x75\x29\x6f\xfa\xfd\x20\xd2\x2a\x8a\xf5\xa6\xca\xc5\xd6\xa8\xf8\x7b\x31\xdd\x9e\xcb\x3a\x90\xb3\xe9\xf8\x8e\x65\x9d\xa9\xe7\x5c\x56\x72\x3d\x29\xc7\x65\xa4\x34\x0a\x7b\xd6\x35\x81\x7d\x24\x8a\xee\xba\x53\x7e\x1e\x5a\xea\xa6\x50\x69\x15\xb4\xed\x86\xae\x76\xf0\xbe\xeb\xbe\x9f\xf7\xd6\x99\xe7\x9e\x50\x53\x64\x23\xed\x71\xab\xd6\xc9\x44\xd9\xf3\x4c\x6d\xa5\x9e\xb1\x97\x6a\x6d\xd1\xcb\x28\x6f\xc5\xda\xcc\x27\x38\x9f\xe5\xda\xd5\x87\x05\x0e\x01\x79\x5a\x35\x4a\xce\xe9\xcc\x98\xb2\x83\x6e\x86\x4c\xc3\xbc\x0b\x1e\x3f\x99\xea\x14\x1f\x6f\x49\xe6\x7c\xea\x3b\x9f\x95\xbc\x91\x78\x57\xdf\xa6\x82\xa8\x18\x11\x3f\xdf\x22\x2b\x78\x93\x1f\x97\x55\x09\x9a\xf5\x3f\x53\xfa\xd1\x6f\xb7\xff\x1c\xbb\xc9\xed\x59\x00\xb2\x3c\xda\xae\x25\xf0\x65\x45\xbe\xb9\x54\xd0\xe1\x4a\xca\x5b\x3a\x40\xab\x4a\xf4\xf5\x0a\x10\x50\x15\xa6\x2d\x07\x96\xae\x96\x7f\x7c\xd2\x6d\x94\xf6\xbe\xbe\xc4\xeb\x32\x4d\xbd\x7c\xcd\xd7\x81\x9a\x52\x58\x15\xa0\x47\xbd\x43\xef\x0c\x62\x51\x13\xd2\x9f\x03\x9b\x68\x9a\x89\x6b\xe0\xf3\xf4\x12\x74\x4e\xb0\x62\x8e\x6e\xa4\x63\x70\x7d\xae\x29\x24\x23\x44\x22\x2f\x26\x70\x2d\xa4\xb8\x20\xd1\x73\x0c\xa2\x5b\x84\x73\x9c\x87\x6a\xb1\xcc\xac\x5c\x61\xb7\x4b\xc6\x8d\x96\x43\x83\xcb\x0e\xe9\x96\xc3\x27\xd8\x87\x5f\x1e\x0d\xb7\xe7\xec\xd1\xaa\xf1\xfd\x99\xf1\x98\x8f\x0a\xfc\x99\x7e\x83\x7b\x00\xd4\x42\x32\x2e\xf9\x15\xd2\x46\xfc\xce\xbc\x0d\x83\x13\xc7\xc8\x91\x70\x67\x52\x46\xaa\x64\xd8\xdf\x74\x0a\xae\x31\xe2\x58\xe6\x7d\x24\x38\xe2\x33\xf9\x30\xdc\x31\x32\x8c\x7a\x0f\x54\x1d\xf9\x8b\xae\xeb\xfb\x2d\x0a\x97\x73\xd9\xb5\x08\x61\x98\x7b\xcd\x76\x3d\x1a\x97\xf7\xc8\xac\x1f\xc9\xca\xff\xf3\xb6\x25\x56\xbc\x30\xeb\xf5\x77\x14\xb9\xf8\xea\xb3\x06\x70\x7d\x52\x81\xb0\x04\xba\x41\x48\xac\x7b\x10\x16\x99\xb8\x55\x1e\x1c\xc9\x4c\x8c\x2e\x6c\x88\x0e\x4c\x34\xa7\xff\x8b\x81\x26\xae\xa5\xa3\x50\x52\x84\x4e\xc2\x1d\xb4\x7a\xf2\x23\xf4\x3a\x66\x6f\xca\x7c\x64\x01\xa6\x33\x6d\x05\xd2\x82\x75\x4e\x3f\x11\x74\x3a\x4e\x29\x53\xd4\xeb\x40\xdc\x7c\xd6\x88\x23\x3f\x5e\x94\x7a\xdd\xca\x37\xc1\x84\x1e\x68\x9c\x82\x4f\xcd\x41\xea\x69\x12\xa4\x73\x4b\x5f\x14\x44\xe8\x61\xd7\x3b\xc5\xa3\xf5\xb1\xbb\x9b\xd6\x62\x79\x18\x10\xf7\x2e\xe6\x17\xfa\x77\x29\x02\x97\x8d\x39\xc6\x9c\xc1\x1f\xc4\xbc\xa5\xbc\x4a\x0c\xc7\x6a\xa4\xfe\x20\xf0\xe3\x94\xe3\xcb\x92\x00\xb8\x86\x18\x50\xf2\xd5\x84\xd8\xb0\x47\x29\xc7\x12\x33\xc0\xa6\x29\xa3\x49\xf5\x7e\x69\xa9\xcb\x29\xab\x6e\xb5\x69\x1f\xd3\x7e\xdb\x6d\x92\xcc\xd2\x11\xe6\xfd\xe9\x85\x99\x73\x06\xac\xcc\x33\x14\xf4\xeb\x3c\x34\x37\xda\xa8\x97\x88\x23\x22\xaa\x85\x2d\x89\x8f\x10\x57\xea\xef\x25\x43\xa3\xc6\x2a\xdc\xd3\x9e\x45\x35\x15\x15\x93\x3c\x11\xd2\x39\x97\x32\x4e\x21\xea\x32\xfa\x33\x5f\x47\x27\x25\x25\x64\xa9\x23\x6b\xb0\xc0\xac\xae\xd8\x0b\x88\x20\x32\x1f\xfd\x00\xe6\x4b\x19\xc1\xc6\x02\x82\xa9\xef\x70\x93\xde\x78\xfa\x2e\xfc\x05\xe7\xcc\xec\x97\x84\x7c\x1b\xad\x1c\x76\x8a\x8e\xa9\x4c\xae\x38\xf1\x8c\x1e\x25\xf9\x45\xe8\x9b\xc1\x39\xe2\x49\xd8\x54\xe7\xc9\x0c\x30\x2c\x98\x5f\x4e\x8e\x82\x5d\xe5\xed\xa7\xbd\x80\xed\x29\x53\xc9\x96\x84\x61\xf2\xe6\x72\x6a\x43\x65\xa9\xf9\x0c\x01\x5c\x85\x18\x9e\x5b\x1a\x76\x09\x6f\xcc\x34\x0b\x07\xa2\x9c\xf2\xf6\xfd\x87\x98\xf9\x2f\x11\x6e\x21\x31\x05\xae\xc8\xed\x80\xac\x42\x1e\x2a\xc4\xe3\x5d\xd1\x5f\x4c\xab\xa3\x06\xeb\x09\xae\xc2\x32\xbf\x84\x87\x1f\x31\x2c\xa0\x7c\x0d\xfa\x3b\xfa\x3b\xfb\x34\xe0\x4e\xef\x69\xc6\x1c\xc0\x4a\xd8\x95\x87\x03\x04\xd6\xc3\x0a\x86\x01\x09\x15\x5b\x45\xfd\x80\xfe\x62\x22\xeb\x19\x30\x84\x91\x56\x02\x05\x19\x66\xe1\x4a\x9f\x83\x19\x29\xc0\xb2\xbd\x21\xc7\x70\x7e\x65\xcd\x10\x02\x12\xcf\x66\xc0\x2c\xe1\x4c\xce\x28\x7c\x07\x44\xaf\xb8\x12\x81\xf7\x15\x54\x0a\x10\x0f\xdd\xc4\xab\x1f\x22\x57\xec\x6c\xb9\x59\x68\x0d\xb3\xbb\xf9\xf3\x5e\x8c\xc9\xa1\xe2\xab\xde\xee\x03\x26\x25\xd3\xde\x0d\x1d\x1a\xec\x57\xde\x93\xfc\x2b\xe5\x0f\x7c\x54\x78\x0a\x15\xdf\x7c\xc2\xd8\xe7\xaa\x0c\x7d\x2f\x16\x3c\xaa\x46\xf8\x6e\xd1\x83\xb8\xde\xfe\xe7\xd3\xd1\xbc\xdb\x01\xae\x84\x04\xde\xd7\xa0\xab\x98\xa2\x9a\x72\xc0\xaf\xa8\xd1\xda\x66\xb0\x01\x74\xbe\xee\x57\xc8\xbb\xa0\xc5\x86\x18\x18\xc5\x7b\x4f\x93\x69\x98\x8f\xb3\xbc\x40\x22\xb2\xdc\xaa\x9f\x43\x73\xb6\x9a\x3e\x52\x19\xef\x22\x33\xe4\xc3\xdd\xe5\x12\xd4\x45\xaa\xb9\xea\x42\x6d\x39\x57\x27\xe9\xf2\xb1\x8e\x5c\x9f\xe8\x8a\xaa\x54\x6d\xd8\x72\x53\x65\x95\x37\xed\x77\x57\x61\xbe\xe0\x1f\xf1\x90\xa1\xb4\xf3\x8b\x3c\x71\x44\x39\x81\x99\xd7\x07\xbc\x7b\xb3\xa2\xcf\x02\xea\x51\xcb\x5e\xbf\xa6\x88\x5b\xc2\xb0\xc0\xf8\x90\x7d\xad\x4d\x40\x4d\xff\x6f\xed\x52\xc1\x81\xee\xed\x1d\x53\xd0\xaf\x76\xdc\xda\x66\xdb\x98\xe9\xad\x06\x23\xdb\xf5\xe1\xb9\xa6\x14\xbb\x73\x3d\x49\x82\x24\xbb\xb7\xad\x9c\x16\x7f\x3b\x48\xe3\xb8\xb0\xd1\x6e\x87\xbb\xd5\xba\x6d\x1f\xc1\xfe\xd2\x7e\xc0\xc1\xb2\x70\xba\xfd\x97\x23\x26\x87\xdd\xd1\xe2\x34\x9e\x65\xdf\x69\xe5\xe2\x9a\xd2\xd3\xb9\xe3\x76\x20\xfe\x68\x57\x99\xc7\x09\xe4\x54\x77\xb9\x97\x0e\x3c\xab\xd7\xcb\xf7\x09\xe8\x54\xff\x95\x00\x07\x9f\xd0\x81\x7c\x60\x94\xd3\xd1\x96\x5a\xf3\xda\x99\xa3\x6d\x32\x16\x6f\x47\xaf\x76\xbc\xb2\x58\xed\x4b\xef\xfc\x65\x79\xad\xe3\x7a\x37\xd6\xd2\x5e\xd0\xdf\x33\x6a\x59\x52\xe7\xd1\x3b\x64\xf5\xa8\x72\xae\xaf\xcf\xaa\xab\x54\xa7\xbf\xc8\xba\x33\xdf\x73\x20\xd2\xa6\x8f\x1e\x38\x78\xc7\xee\x64\xc6\xf9\xc1\x55\xfb\xc0\xa4\xc4\xa1\x04\x47\x7d\x6c\xce\xf0\x03\x67\x38\xc2\x77\xc4\xdc\x4d\x03\x2a\x18\xfd\xe4\xa9\x19\x38\x35\xbe\xee\xb3\xe4\xf1\xb6\x17\x6c\xd8\x3b\xa3\xd5\x4f\x30\x4a\x19\xf3\x1a\x64\x19\xef\x1f\xa8\x1f\xd6\x36\x76\xe9\x7a\x37\x42\x37\x2e\x69\xdd\x3d\xca\x32\xd1\x6a\xdc\x19\x63\x99\x8c\xf2\xfa\xc7\xbd\x4c\x13\xcb\x61\x13\xe2\x66\x66\xc5\x7f\x26\x86\xcd\x35\x98\xa6\x93\x31\x16\xfb\xa9\xc4\xa9\x2b\x96\x4f\x48\x7a\x53\x2b\x56\x51\x89\xdf\xa7\x03\x6d\x68\xe8\xca\x19\x13\xbb\xbf\x91\x8f\x66\x5f\x3a\x9d\x0e\x9e\x9c\x1b\x75\x75\xf2\xd3\x30\x7e\x29\x68\xe5\x14\x99\x3c\x6d\xee\x2a\xd4\x37\xc1\x08\xb5\xb2\x95\x4d\x00\xad\x82\xf4\x52\x93\x33\xed\x0f\x08\x87\x8c\x97\x3a\x22\xd1\xf1\xc6\xac\x4e\x6e\xa4\xb8\x31\xa6\x6b\x08\xe2\x6d\xec\xd8\xdd\x1d\x38\x6a\x2c\xdf\xb3\xe1\x95\x67\xf4\xab\x77\xc9\x99\x69\xd4\xd5\xe7\x6d\xc3\x32\x92\xe8\x9b\x36\x25\x18\x15\xf6\xd5\xe8\x57\x99\x3c\xee\x1d\x7a\x65\x6a\x52\xdd\xeb\xf3\xa4\xd3\x6c\xa7\xe7\xef\x43\xbe\x45\x56\xbd\x5d\xa5\x94\x55\x58\x3d\xa7\xd8\xc4\xda\xb9\xa1\x99\xb1\xcf\x7a\xa6\xe9\x40\x66\xb2\x8d\x08\xdf\x3b\x69\xd8\x46\x5a\xd0\x86\xbd\x63\x73\xbb\x45\x22\xaa\xc8\x46\x46\x98\x0b\x15\x58\xef\xb4\x29\x03\x64\x6c\xf6\xb5\x87\x7b\xbf\xb3\x91\xee\x68\x75\x3d\x66\x73\xb9\xb3\xc5\xee\x8a\x8d\x4b\x27\xdf\xac\xdc\x86\xd1\x59\xf1\x36\xd8\x36\xbb\x53\xea\x35\xda\x8e\xd1\x81\x7d\x46\x70\x10\xed\xd0\x7a\x7c\xc1\xd6\x98\x7b\xae\x7a\xcc\xbe\x9c\x7b\xbc\x24\xc6\x51\x89\x5b\xcf\x14\x73\x0a\xe2\x21\xc9\x74\x67\xa3\x9a\xbc\x94\x69\xe7\xed\xda\xaf\x38\x35\x17\xdd\xfa\xd0\x68\xa8\x8b\x43\xa3\x79\xa8\xae\x8b\x16\xff\x3e\xb0\xde\x45\x4f\xb0\xe0\xeb\xed\x92\xdc\x62\xe5\x96\xe0\x52\x23\xec\xb4\x5f\x72\x3d\x2e\xec\xb7\xb8\xee\x6a\x2d\xdc\x36\x88\x74\xd3\x14\x06\xe9\x50\xdc\x55\x5b\xbe\x69\x17\x7b\x18\xb6\xa4\x3c\x9e\x77\x92\x2c\x3f\x52\xab\xe1\x22\xe0\x30\xd8\x0a\x6e\x33\x1c\x41\xbe\x9d\xc7\x38\xe7\x1f\x75\xc1\xcb\xa6\x7c\x9c\x78\xd7\xbb\xa8\x62\x24\x21\xde\xe7\x76\x95\x4d\xec\x59\x9f\x74\xee\x9e\x30\x8e\x4f\x76\xcd\xb3\xe0\x53\x3e\x49\x75\x11\xfe\x70\x9f\xd5\x86\x60\x0f\x5b\xdf\xeb\x4d\xe2\x8e\x44\x5f\x5a\x53\xbe\x95\xa8\xdf\xf9\xa6\x5f\x46\xd7\xfd\x3a\x9b\x68\x6f\x66\xfc\xe3\x9a\xa4\x9e\xcf\x05\x98\x36\xe6\x68\x8e\xbb\xcd\x97\x9c\x6f\x14\x78\x3d\x61\x9d\xaf\x80\xfb\xfc\x28\x4e\x2a\xd2\xf0\x77\x2f\x86\x66\xd3\x03\x43\x8b\x3f\x64\x1c\x02\x3c\x61\xb5\x12\xcc\x80\xb7\x4a\x35\xd0\x9f\x80\x53\x65\x39\x91\x15\x20\x39\x4e\x21\x64\x07\x74\xbb\x62\x28\xc8\x17\x14\x5f\xd5\xe1\x7d\x00\xb4\xc2\xad\x72\x5e\x04\xeb\xd6\xc8\xda\xd0\xc1\x73\x35\xdd\x26\x3b\xc1\x94\x5a\x75\xfd\xd3\x21\x75\xb5\x0f\x5e\x69\x43\xcf\xd4\x5a\x3d\x21\xfb\x82\xf3\x86\x05\x71\x01\xeb\xcc\x2a\xae\x36\xf0\x69\xae\xb0\x84\x07\x1e\xcf\x8d\x67\xee\x86\x5c\xcb\x45\x93\xad\x60\x7b\x98\x6f\x53\x66\x43\x23\xf2\x2c\x70\x21\x70\xcb\xfc\x77\x48\x1d\xf8\x87\xc2\x52\xb8\x71\xd8\xde\xe2\x4d\x10\x37\x4c\xa2\x54\xc1\x4f\x2c\x8c\x51\xb6\xed\x96\x1d\x7e\x9c\x23\xb4\xf7\x08\x5f\x2f\x9f\xb0\xb8\x12\xc1\xaa\xe8\x31\x98\x89\xfc\x58\x49\xd0\xd9\x46\x38\x56\x39\x69\x03\x80\xa5\x74\x45\xe1\xbb\x90\x3a\x6a\x47\x6d\x3e\xec\x37\x75\x37\x27\x31\x4c\x40\x49\x28\x28\x88\xbc\x4b\x31\xa0\x8d\x22\x8e\x51\xde\x93\x02\xa3\xcb\xa9\xec\xc4\x6b\xc8\x7e\xfa\x55\xb4\x68\x4c\x45\x76\x4b\xc4\x97\x58\x49\xc6\x04\xc4\x25\x56\x3f\x6f\x5f\xe0\x87\xd8\xb2\xfc\x1d\x2f\x15\xd4\xb9\xc2\x09\x27\x20\xea\x7d\x31\xde\xfa\x0e\x7a\x8a\xf5\xc3\xe4\x20\x76\x4f\xe9\x2b\xbd\xc0\x38\x74\x19\xf9\xe5\x6d\xb8\x5e\x7a\x55\x47\x57\x24\x8f\x74\xbb\xb1\x2f\xba\x83\x98\x56\xf5\x2f\xb6\x9c\x78\xaa\xe4\x06\xe6\x62\xda\xdf\xdc\xf0\x38\x43\xe2\xdd\xac\x35\x1c\x8f\x24\x99\x92\x19\x3f\x99\xfe\x02\x67\x9a\x90\x9c\xf1\x03\xa9\x8c\x57\xcb\x9a\x84\x5f\xc2\x43\xa8\xc7\x40\x0c\xfc\x22\xfd\x84\x9f\x5c\x22\x31\xbb\xd8\x4d\x95\x60\xc2\x00\xd8\xa5\x26\x45\x31\x3d\xcc\x6b\x93\x73\xf2\x65\x0d\xba\x53\x25\x0b\x76\x74\x2e\x21\x87\x92\xec\x7b\xb5\xd1\xcb\x04\xa9\x96\x48\x9c\x6d\xa2\x5a\x6d\x14\xde\x1e\x8f\xe7\x10\x93\xf6\xe2\xb1\x05\x9b\x29\xba\xf8\x7e\xba\x5b\xea\x70\x22\x3a\xfd\x1c\xf1\x00\xc1\x2d\x71\x80\x38\x9a\xb4\x80\x2e\x27\x21\x52\x90\x91\x05\xe9\x32\x69\x71\x90\xaf\xe9\x11\x24\x6e\x10\x24\xe3\x6a\x46\xa9\x17\x3b\xf3\x78\x96\xb9\x53\x76\xd6\x23\x4a\x80\xf5\x53\x32\x89\x46\x37\xb1\xa5\x8a\x67\x4f\xe8\x5d\x4a\xd8\x8d\x7d\x3f\xa8\x99\xa4\x8c\xf9\xd0\x71\x3c\x75\x00\x73\xbe\x49\x97\xb4\x81\xce\xad\x8e\xca\x1c\x42\xbf\x2e\xa9\x21\xf7\xa0\x73\x98\xaf\xa8\xb1\x98\xb3\xe4\x39\x5a\x18\x66\x3b\x95\x42\x37\xc6\x7e\x8d\xf7\xa6\x2f\xe0\x22\x63\xfc\xb3\xc3\x12\xee\x85\x01\x72\x2c\x13\x8d\xc1\xc5\x8c\x83\x49\x01\xfe\x12\xb9\x07\x53\xd2\xdc\x5d\x98\xbb\xd2\x08\xf6\xf9\x79\x0e\xe9\xe7\x2d\x40\xf9\x1d\x99\x71\x06\x75\x24\x66\xf4\xa3\x51\xab\x2c\x3b\x04\xb7\x47\x8e\x9a\x8e\x90\x6b\xa9\xcf\x4e\x8e\xca\xab\xd3\xcc\x7d\x16\x65\x5e\xee\x97\x67\x10\xe5\x59\xb8\x91\xcf\x8f\x9a\xce\xa6\x15\x0c\x22\xc8\x19\x5e\x85\xe4\x68\x72\xd2\xd3\x22\x03\x64\x2f\x56\xa7\x68\x23\xf6\x02\x22\xb0\xb8\x05\x7d\x1d\x96\xc4\xaa\xc6\x46\x01\x6a\x4b\xda\x71\xd5\xde\xbf\xcb\xf6\x26\xf4\xb8\x3c\x64\x6b\x12\x5e\xda\x34\x72\x4a\x52\x9e\x9b\xb0\x72\xe2\x42\x35\x26\x83\x99\xd9\xa1\x92\x03\xa0\x02\x32\xac\xbd\x43\xa4\x18\x02\xf3\x6f\x62\x94\xbc\x87\x5d\xe3\x4a\xb3\x8f\x43\x7f\x95\xa6\x72\x9e\xc1\xe0\x79\x41\xe5\x96\xa1\xfb\xa9\x66\xe5\x7f\xe0\xb7\x88\x77\x2b\xb0\x61\xf6\xf8\xb3\x95\x46\xe1\x38\x94\x76\xd5\xb9\xff\x10\xb3\xfa\x1e\x42\x2f\x24\x9b\xfb\x1c\xd9\x18\xd0\xcf\xeb\x43\x3d\xf4\x94\xaa\x75\xc5\x24\x38\x5a\xd6\x6d\xe1\xc0\x96\x77\x58\x43\x80\xf9\xd9\xeb\x65\x0b\x80\x2f\x23\xea\xe5\x24\xc0\xfb\xee\xca\xaa\x13\x80\xfa\x16\x4f\xae\x16\x80\x52\xa7\xc2\xfb\x03\xe0\x94\x6f\xd5\xfa\x02\x0f\x14\xbd\xab\x83\x00\xcb\x18\xc7\xeb\x2d\x41\x49\x59\x97\xeb\xbf\x80\x27\x53\x1e\x37\x24\x86\x3c\xc0\x19\x37\x5a\x40\x2a\x90\xd8\xa6\xc7\x30\x57\x78\x15\xdf\x0f\x3e\x0b\x12\x08\x9a\x22\x1c\x7c\x67\x5a\xac\x10\x7a\x6e\x27\x5a\x77\xc5\xd8\xda\x52\xab\x61\x3e\x97\xe7\x23\x6a\x6c\x7d\x6c\xc7\x18\x75\xab\x3e\x01\x7d\x90\x46\x25\x1f\xc7\xb6\x08\xfe\x03\x1f\xdd\x46\x96\xa0\xc0\x27\xb9\xfa\x57\xf3\x17\x9f\x99\xb2\xd7\x2d\x3b\xbe\x29\xf9\x4c\xe1\xaa\x9f\x19\x7d\x77\x2b\xd3\x1f\x9e\xfe\xa8\xcd\x28\xa0\x8b\x00\x6c\x3f\x18\x14\x83\xc9\x6d\x6f\x01\xde\x8f\x1a\xef\x98\x07\x23\xa1\x0b\x5d\x17\x21\x47\x83\xde\x75\xe3\x61\x5f\xbc\xba\x7b\x0d\xc2\x9d\x1c\x7f\xf1\xa5\x5c\xf5\x16\x22\x9b\xb3\x5d\x6d\x27\x6e\x0a\x67\x5c\xad\x07\x4a\xdb\x26\x5c\xdd\x3a\xcd\x3a\xb2\x5d\xfd\x9a\x4f\x74\x9d\x75\x2d\xae\xed\xeb\x56\x75\xbb\x52\x81\xe9\x51\x74\xeb\x61\x69\xf6\x8a\xb8\xf7\xe5\x6e\xf6\x0e\x79\xb4\x53\x70\x7d\x00\xaf\x9b\x69\x4b\xfd\x67\xbc\x71\xf8\x9b\xfd\xef\x7d\x6d\x50\x17\x07\xda\xfc\x8f\x44\x5c\x1d\xb2\x09\xfc\x16\xdc\x35\xdc\x09\x6c\xf7\x4f\x1a\x75\x09\xf1\x74\xdb\xd3\x59\x6b\x77\x7d\x21\xb8\xbb\xd3\x0e\x3a\x69\xd7\xdb\x62\xd7\x34\x94\xd1\x5f\x6d\x37\xdc\xfd\x7b\xf0\x96\xdd\x4c\xeb\xc3\xa1\x58\xbb\x1f\x8d\x80\x61\xb8\x3d\x84\x9b\x36\xe2\x6c\xff\x8f\x9d\x37\xaa\xe1\xb8\xbf\x90\x3c\xba\xe8\x74\x2b\x07\x3a\x96\xe0\x0c\xcb\xba\x3c\x7e\xc5\xe5\x73\x0a\x6b\xbc\xd7\x0d\x83\xfb\x33\x11\xe1\x11\x8f\xec\x9b\x04\x7b\xd5\xc2\x03\xa7\x9f\xfb\x4e\x00\xd1\xb3\x8f\x03\x5f\x78\x3f\x1f\x5e\x34\x37\x5c\xd8\x19\x3b\x64\x1e\x39\x55\x33\xfe\xdb\xbc\x7f\x84\x3f\xd9\x6b\x21\xdb\xd7\x31\xbd\xc7\x82\xd8\x81\x9f\x6e\xb7\x7c\xdb\x2c\x3f\x03\xb5\xda\x55\x97\x36\xfb\xd0\x2a\xb3\x6a\xef\xec\x90\xf5\xcb\x52\xe3\x39\x37\x1b\x8d\x7c\xff\xb9\x9f\xb6\xe7\xe9\xc1\xf3\x99\x76\xaf\x33\x2e\x2d\x98\xd8\x13\x92\xea\x17\x7e\x3b\x42\xb1\x7d\x8b\x5c\x67\x2a\x02\xb5\x54\xe5\x66\x05\x2d\x5c\x31\xf1\xac\x0a\x94\xb7\x8a\x6b\xbb\x53\x95\x61\xcd\x6f\x7f\x5c\x12\x68\x8d\xeb\x34\x62\xbe\xb1\x0e\xed\xd6\xa2\x98\x5b\x65\xf4\x8a\xa6\x46\x59\x21\xfa\x4e\xe3\xfe\x5a\x4e\xf5\x3f\x47\x66\x59\x0e\xf6\x7f\x83\x53\x2c\xd7\x07\x70\xe0\x07\x96\x5b\x83\x4a\x7e\xbf\x2d\x33\x07\x3f\x7b\x78\x59\x3e\x1e\x2a\x73\x9c\xb2\xf0\x1e\x3e\x67\xf5\xdb\x62\x65\xa8\xd6\x44\xc1\xe2\xc9\x50\x9f\x9e\x85\x55\xee\xa0\xcb\xcb\x37\xd6\xa2\x03\xf3\x5a\xbd\x0e\x27\x04\x22\x3c\x69\xc7\x61\x41\x44\x19\xda\x29\xa1\x99\x95\xff\xc6\x69\x53\x78\x91\xa6\xee\xac\xda\xea\x4b\x8c\x71\xd6\x6b\xcb\x4c\xe8\x76\x36\x6b\x5f\x8a\xb5\x72\x7e\xdd\x79\x2d\xfc\x88\xf3\xe9\xae\xbc\xe0\x78\xa7\xe9\xee\xdf\x01\xc7\x9c\x86\x7b\xf5\x3d\x53\x9d\xca\xfb\x6c\x9c\x1f\x3a\x65\xf4\xd5\xda\x20\x9c\x12\xfa\x92\x4c\x6f\x38\x35\xf6\x3d\xd5\x37\x70\x46\xf5\x5a\xbc\xf2\x76\xb1\xee\x09\x78\x6a\xe0\xc2\xac\x0f\xaf\xcb\x73\x3f\x5d\x0f\xe3\x8c\x78\x50\xea\x77\x0a\x5f\x7a\xd2\x1b\xbe\xd1\xe7\xbc\xec\x1a\x7f\xa5\x9b\x78\x7d\xe3\x1f\x4c\x2c\xf4\x7e\x21\xd0\x45\x4b\x7b\x07\x37\x67\x44\xa4\x79\xdb\x0a\x0d\x20\x77\xbd\x55\x5a\xd7\x03\x17\xbd\x65\xdb\x01\xde\x6a\xde\x47\x3a\x7e\xbb\x54\x7b\xcd\x77\x3d\xb4\xd3\xf0\xfa\xdc\xf9\xd5\x2c\xc3\xfb\x6c\x67\xe3\x5b\x5d\xef\xb5\x8e\x9e\xd7\x7e\x3e\x75\xed\x1f\x9e\x69\x7b\x3a\x73\x29\x4d\xaf\x7d\x64\xb9\x9a\x95\x59\x7e\x9a\xdc\xb3\xc5\x74\xff\x7e\x2e\x9d\xa1\x14\xf8\x88\x67\x99\x49\x09\x32\xa8\x71\x48\xfa\x1e\xb4\x55\x5b\x84\x75\x01\x5c\xaf\xd7\x88\x6a\x00\xdc\x6f\x94\x85\xfe\x01\x68\x35\x4d\x03\x46\x00\x7a\x82\x50\x9f\x4d\x80\x53\xcb\x51\x37\x27\x80\x81\x30\xdf\x61\x17\x00\x21\xa4\x59\x78\x03\x8a\x85\x25\x06\x42\x60\x90\x70\xaf\x8e\x10\x64\xda\xe2\xac\xed\xec\xf7\xba\x7c\xb8\x05\x1a\x98\xc2\x59\xe7\x8e\x02\x1f\x72\x6e\x97\xbe\x01\x9b\x72\xcc\x98\x83\x21\xaf\x38\xb1\x14\x17\x48\x63\xb9\x47\x6a\x35\x74\xad\xc2\x2f\xfe\x22\xcc\xa3\x72\x1e\xb9\x01\x2b\xaf\x8e\x85\x2f\xc2\xf2\x79\x64\x70\x3c\x0c\x5f\x5b\xea\xaf\x0f\xa3\xd7\x97\x7b\x38\xc3\xe8\x8d\x28\xc7\x3a\xd8\x5a\x93\xa8\x55\x64\xe8\xb3\xa6\x67\x46\xdf\xe1\x27\x9b\xee\xe9\x22\xc2\x3c\x9a\x24\x9f\xe3\x80\x1e\x25\x41\x6d\xb9\x21\x26\xc5\xc3\xb5\xdb\xb0\x33\xc5\xf2\x9c\x22\x78\x40\xd1\x78\xc1\xf7\x70\x7c\x51\x23\x3d\x28\xd2\xa8\xd8\x94\x34\x17\x35\xc1\xba\x9c\xa8\x85\x88\x2d\x61\xa0\x4f\x45\x1f\x2d\x93\x88\xf8\x19\x7d\x89\x23\x06\x49\x8e\xbe\x58\x21\x17\x64\x12\x6d\x54\x75\xc0\x5b\x35\xda\xa7\xfa\x83\x8b\x4a\x34\x93\x67\x63\x2b\x83\xbc\xcb\xfb\x6e\xda\x86\x7c\x5f\x83\xd2\x6f\x8a\xd5\xae\xbd\xf2\x4a\x39\x54\x2e\xcf\xa8\x73\x3b\x02\x9b\xcb\x6c\x94\x44\x48\xe4\xde\xae\xf2\x40\xa6\x32\x86\x58\xd5\xb1\x0d\x8c\xba\x5c\x31\x34\x83\xf1\x25\x2b\x1e\x2b\x92\xdb\x93\xa2\x16\xb7\x97\xf9\x3d\x6e\x32\x2e\x25\x9f\x10\x5d\x1b\xb7\x50\xe8\x1d\xfa\x21\x6e\xb6\x98\x02\xc2\xc6\x0d\x97\xb4\xf8\x5d\xc0\xdd\x2e\x03\xba\x2d\xe3\xc0\x1c\x25\xfb\x9e\xf8\x37\xe5\x52\x16\x95\x09\x87\xca\xff\x18\x26\xe0\xed\x2b\x6f\xea\xac\x20\x5a\x69\xd9\xbd\x72\xb1\x1f\xa8\x77\x9a\xeb\xb1\x9a\x14\xed\x1a\x0a\xee\x23\xb9\x9a\xdd\x8c\xd7\x22\x63\x0b\x4e\x10\xde\x90\xb3\x68\x01\x49\x91\x14\x6f\xd2\x81\x64\x04\xd5\x14\x4f\x4b\xd1\xa2\xbd\x43\x31\x52\x66\xb2\xc3\x23\xf2\x52\x4f\x33\x88\x10\xbd\x54\x69\x26\x3f\x68\x6f\x2a\x2c\x1f\xe3\x15\x92\xba\x5c\x78\xc5\x69\x3b\x8d\x57\xd4\x6d\x3d\x4f\x9c\x65\x3d\x34\x15\x49\x57\x2f\x29\xd1\x6b\xc5\xae\xa6\x53\x07\xe5\xf1\xd7\x49\xb2\xed\x37\x92\x8f\xa4\xfd\x6c\x94\x4d\x6d\x4a\xc3\x56\xbd\x21\x69\xa5\x3d\x66\x65\x65\xdc\x48\x83\xe6\x8a\x66\x0a\xd3\xde\x65\xa5\x64\x15\x12\x05\x29\x17\xc9\x5e\xa4\xf5\xb8\x4d\xf2\xaf\x0c\x1c\x72\x3f\xc5\x25\xcb\x19\x6e\x4a\xf1\xa6\x50\xc0\xa2\x94\x44\x5a\xa5\x5f\x0f\x15\x98\xad\xec\x36\x4f\xd3\xce\x29\xb5\xd7\xa2\x13\x73\x4b\x2d\x7c\xb2\x77\xf2\x72\x0c\x56\x53\x62\x93\x24\x46\xa6\x48\xc9\x89\xdb\xdd\x92\x99\xad\x89\x62\xcd\x16\x14\x32\x1e\x5d\x53\x45\xb7\xc6\x2b\x71\x14\x73\x1c\xf0\xb7\x0a\x32\x19\x5f\xf1\xb1\xf4\x33\xb9\x8b\x89\xa6\x24\x21\x33\x9d\xf0\x3c\x11\x99\xa7\x9c\xd4\x80\x26\xe5\xa5\xa6\x18\x44\xd6\xe7\x8b\xa7\x3d\x83\xaa\xe4\xfb\x91\x8c\x83\x84\x05\xa7\x33\x34\xbd\xaf\x15\x7c\xce\xdc\x71\x76\x29\x3a\x4b\x11\xb1\x9e\x2f\x4e\xa0\x19\x99\x9c\xa2\x6a\x61\x1d\x26\x86\xb3\x5b\x30\x35\xfd\xf7\x73\xeb\x30\x32\x6d\xed\xf9\x19\x68\x54\x63\x40\xd1\x11\xf4\x8d\xaa\x51\xd6\x0d\xd4\xd7\x92\x37\x25\x8e\x68\x9b\xdc\xe9\x52\x3b\xf4\x0a\x39\xa4\x74\x1d\xf3\x2d\x55\xbf\xcc\x37\x4e\x2c\xfe\x56\xd9\x24\x0e\x13\xe3\xca\xd6\x49\x50\x0f\x4b\xe6\xa8\x25\xde\x00\x2f\x71\xe6\x92\x2e\xfb\x3b\x56\x1c\x48\xb9\xef\xde\x59\x29\x91\xa6\xea\x20\x5f\x45\x48\xdf\x63\x1e\x5d\xe0\x12\xfd\x74\x56\xaa\x38\x12\x31\x31\xbc\x51\xea\x8e\x70\xea\xd6\xe4\x88\x46\xad\x35\x0f\x54\x04\x46\x45\xd5\x9a\x56\xb9\x47\x3d\xe7\xf4\x56\x37\x45\x79\x17\x46\x72\x59\x51\x23\xd9\xe6\x3c\x23\x04\x33\xe3\x06\x8f\x1f\x5d\x93\x74\xb2\xc6\x08\xb9\x80\xbd\x58\x33\x1b\x2b\x85\xf0\xab\x2d\x44\xfd\x86\xe5\xd7\x15\x61\xd5\x01\x1f\xea\x7f\xe2\x0c\x7d\xae\x34\x26\x27\x44\xbb\xb8\x37\x7d\x20\x28\xda\xe8\x94\x8b\xc0\x4f\x2c\x2a\x56\x9d\x0e\xcd\x19\x9f\xe3\x4e\x84\xbe\xee\x7f\x5d\xeb\x03\xe3\xb7\x75\xd4\x4f\xc0\x34\x1a\x8d\x1a\xc3\x60\x0a\xd5\x47\x9b\x3e\xc1\xd4\x4a\xa6\xf8\x8d\x30\x16\x73\x47\x80\x08\xbd\x4c\x3d\x2d\x58\x86\xdb\x10\xf7\x35\xdf\x0a\x0b\x4f\x58\x6b\xfe\x13\x9e\x89\xba\xde\x52\xfb\x1f\x62\x0a\x87\x11\x0a\x21\x2d\xad\xd3\x48\x60\xe0\x99\x76\x53\xd4\x3d\x4f\xad\xce\x5d\xd8\xc7\x0e\x5e\x75\x23\xc0\x8d\xe5\xd5\x46\x01\x30\x6f\xaa\x46\xa0\x09\x04\x0f\xf9\xb5\xc4\x02\x6f\x75\x3d\x68\x4d\x04\x6c\x36\x8b\xb5\xab\x03\xa6\x6b\xc5\x3b\x8c\x00\x3b\xe5\x37\x3b\xdf\x00\x2d\x8a\x3c\xbb\xce\x82\x76\xe7\x54\x75\xd5\x81\xd6\x32\x7f\x74\xdf\x0e\xbe\x9a\xa2\xd8\xdd\x14\x12\x85\xd3\xed\x81\x43\xe6\x91\xe8\x5e\x07\x18\x1c\xce\xeb\xab\x80\x8f\x80\xc6\x06\xa4\x23\xde\xfa\xae\x0d\x32\x10\x13\xae\xaa\xad\x7a\xbe\xcf\x56\xf3\x3a\xce\xfa\x8a\xcd\xc4\x74\xe9\xf8\x1e\x18\x69\xea\xb1\xf3\xf9\xd9\xab\xd0\x27\xef\xb3\xd4\x0a\xec\xe7\xfa\x74\x35\x4c\x0e\xa4\xfb\x9e\xa8\x36\x19\x04\xfa\xea\x97\xb6\x0f\x3d\xf3\x3b\x90\xaf\x3b\x7c\xc4\xaf\x91\xd6\x3a\x5c\xea\xbf\x9c\x2e\x3f\xf2\x38\xf0\x01\x01\x31\xf2\x3e\xa8\x07\xc3\x1b\xcd\x03\x5a\x46\x4d\x8d\x6d\x82\xab\xa0\xdc\x09\x28\xc4\x31\x28\x71\x4a\x21\xd4\xc9\x73\xa1\x5f\xd6\xb5\x7c\x75\x75\x90\xe0\x5a\x36\xcb\x1d\x4e\x77\x2d\x19\x6b\x19\x25\xba\xd2\xfa\x97\xc6\xf7\xb9\x16\x75\x74\x4e\x28\xbb\x76\x09\x52\x27\x8f\xbb\x29\xd6\x7a\x4c\xf6\xba\xe5\x54\x3c\x9e\x8a\x76\x7f\xc1\x3a\x3c\x7d\xc1\xe3\x45\x6e\xfd\x74\xb7\xa7\x26\xc5\x79\xc6\xc5\x2b\x2d\x6d\x76\xe6\xab\xf7\x02\xde\x62\x96\xe2\x9b\x84\x7a\x34\x67\xe2\x7f\x2a\x42\x61\xc1\x38\xc8\x32\x38\x78\xc9\x1a\x64\xe4\x37\x3f\xd9\x66\x3b\xf0\xce\x6c\xe6\xa5\x6d\xcd\xbc\xd1\xdc\x82\xed\x8b\xc9\x83\x0b\xbe\xb6\xf0\xa1\xba\x25\x51\xdb\x84\x1e\xd0\xd2\x55\x3b\xff\x56\xec\x92\xa1\xfd\xcd\x46\xf4\xd2\x47\xfb\x01\x2e\x6f\x19\xe3\x00\x63\x2f\xac\x88\x3a\x46\x17\x2e\xaf\xa4\x3a\x95\xe4\xb4\xad\x9e\x77\x7e\x9f\x05\x5b\x65\xb8\x6a\xa7\x7c\x7f\xf7\xca\x8d\x1d\xff\xfc\xfd\x35\x8f\xe8\x98\x03\x1f\x9e\x7a\xb5\xc3\xa1\xeb\xfb\xfd\x24\x80\x6a\x4e\xf4\xce\xdf\xbc\x7f\xce\xf6\xdd\x4f\x39\x57\x9c\xe0\x7d\x47\x0a\xcf\x39\x79\xf6\xaf\x66\x9b\x39\x79\x0d\x2a\x66\x68\x39\xdd\x19\x3a\x43\x28\x77\xdc\x1c\xda\xc0\x00\x1c\x3b\x87\x91\x51\x96\x8e\xfc\x91\x53\xd0\x65\x47\xe0\x48\x2d\x80\xee\x78\x79\xd4\xc6\xe7\x83\x43\xd7\xe8\x6f\xb7\x3c\xfb\xc5\xb1\x1e\x07\x03\x7b\xd0\x18\xd3\x92\x60\xbf\x31\x26\x65\x34\xe1\xa0\x3e\x4a\xd7\x75\x74\x98\x1a\x19\x78\xa1\xed\x2e\x68\x7d\x55\xe7\xed\xa9\xde\xba\x59\x61\xef\x75\xbb\x6d\xa0\x38\xd4\x2b\xa7\xe3\x3e\xc3\xd9\x6b\xa3\x33\x3b\xeb\x82\xb7\x44\x57\x7b\xb2\x8f\xb7\x54\xcf\x51\xec\x9c\xd7\x8f\x5e\x67\x04\xc6\x2b\xa3\x8f\x06\xdb\xf0\x92\xed\xcf\x07\xf6\x7a\x56\x0c\x50\xfd\x0e\x79\x3a\x0f\x26\xb8\xaf\x7a\x1e\x1c\x72\x77\x6c\xf1\xe0\x0f\x41\xad\xf7\x7a\xa0\x87\x9e\x1a\x7f\xf4\x28\x1c\xec\xd7\x7b\xe1\xf9\x7c\x70\xcf\x4b\x79\x1f\xa8\xe0\x46\xc3\x37\xbf\xd7\x02\xfb\xaa\xac\x80\xbd\x02\x44\x09\x24\xe0\x4f\xb3\x3f\xf3\x72\xe0\x40\x8b\x0f\xf9\x63\x90\xb3\x30\x28\xf5\x6d\x90\xb0\x35\x0d\x57\x17\x34\xd6\xb6\x86\x34\x0d\x6a\xe8\xb0\x83\xfb\x07\xb9\x76\xbe\x07\x1b\x06\xee\x74\xfb\xfa\x3f\x0f\x64\xf6\x9e\xf6\x3c\x19\xf8\xa4\xcf\xc7\x79\x4f\xc0\x7a\xdf\x9c\x8d\x7b\x40\x71\x1f\xc3\xf4\x60\x40\x49\x9f\xa3\xde\xd7\xc0\xf0\xde\xfd\xaf\xf6\x05\x4a\x34\x3c\x11\xec\x03\xc0\xeb\xbb\x78\x47\x41\x4d\xf5\x46\x65\x94\xe0\x5b\xf5\x8b\xf9\xb7\x42\x3c\x1b\x6a\xa9\x13\x10\xed\x46\x06\xd1\x0c\xba\xa7\x89\x90\x30\x0c\x7d\xc1\xef\x8f\x0d\x82\xfa\x37\x2b\x85\x3f\x80\xea\xb6\x34\x87\x68\x42\x0f\xb4\x9a\x07\x6a\x42\x86\xda\x56\xbd\xda\x21\x71\x1d\x10\x17\x24\xe4\x4e\x67\xbe\x9d\x24\xe4\x72\xe7\x13\xb3\x46\xc8\xcd\x8e\x2f\x6f\x63\x20\x7f\x3b\x2e\xbd\xb6\x02\xf7\x70\x99\xad\x7c\x48\x7e\xf5\xb7\xda\x75\xd8\x52\x75\x5a\xb9\x05\x9c\x5f\xcd\x2c\x5c\x0b\xd7\xe7\xca\x65\x63\x23\x52\xb9\x2b\x19\x47\x22\x89\xbc\x79\x02\x28\xea\x58\xed\x75\x8c\x54\x94\x76\x1d\x35\xb2\x36\x4a\xa5\x21\x16\xea\x14\x75\xac\xe9\x0e\x00\x14\xf9\x95\xdf\xe3\x23\x88\x1c\x6c\xb6\x75\x33\x8a\x4c\x6e\xd9\x70\xd8\x17\x59\xd5\xd2\x6b\xd1\x10\x39\xd1\xd2\x6c\x18\x1c\xd5\xdd\x82\xd2\xd1\x86\x2b\x94\xef\xef\xda\x1d\x11\xc8\xd9\xdb\xc0\x8f\xa2\xb3\xbb\xab\x9c\xa2\x1b\xd9\x39\x25\xfb\x62\x08\xec\x9e\xdc\x6c\xd4\x0d\x8e\x12\xf9\x2e\xda\xaa\x5c\x24\x85\x86\x51\xac\x10\xc5\xdd\xc3\x00\x2b\x21\xc8\xf3\x98\xe4\x6a\x31\xb8\x29\xc6\x8f\x27\x05\xd6\xc4\xdc\xad\x3d\xe7\xff\x08\x23\x59\xb7\xe9\x11\x88\x9e\x6e\xe8\x71\x1c\xc4\x9c\x6d\xf4\xb4\xaa\xc5\x04\x34\xe6\x18\x7b\x60\x9f\x37\xed\xd2\xf5\x8a\xbe\xcc\xb2\xee\x95\x8a\xa5\x15\x9f\x6f\x3e\x85\x79\x56\xe4\x57\x23\x15\x17\x5b\xa4\xc4\x2e\x8c\x8f\x2e\x3a\x57\x70\x1b\x6f\x58\x74\x91\xc6\x4b\x04\x17\xad\x93\xee\x11\xac\x8b\xfb\xf0\x4c\x42\x71\x89\x2d\x0a\x4e\xd8\x2a\x9d\x8c\x70\x26\x6c\xb2\xc7\x21\xcf\x08\xbd\xe5\xa3\x41\xf7\x09\x93\x95\x89\xde\x8f\x08\x0b\xd5\xb7\x5c\x1c\x92\x4e\x71\xb1\xb6\xa1\x49\xd5\xbc\x9b\x66\x56\xc9\xc1\xbc\x4f\x6f\xf7\x61\xe3\xf2\xc4\x07\x74\x13\x54\x72\x73\xdb\x2c\x08\x28\x06\xae\xe1\x49\xf2\x04\xe3\x79\x65\x41\xea\x17\xc6\x19\x96\x02\xb1\x94\xf1\x98\x91\x96\x7e\x84\x51\x94\x75\x3a\xbd\x35\x17\x9d\x1c\x97\x61\xcb\xac\x8d\xd3\xcd\xe8\xca\x7f\x19\x6d\x9e\xb1\x55\x28\x15\x5a\x99\x51\x5b\x6c\x0c\x42\x64\xe0\x4b\x3c\xfc\xde\x64\x2c\x94\x4e\xb9\xab\x65\xca\xb0\xf5\x1d\xae\x64\x69\x71\xbc\x2c\xfd\xc8\x7e\xe5\x68\x23\xa5\x24\x67\x9a\xe7\xc8\xfd\xb4\x70\xca\x74\x97\x7e\xfa\x3a\x79\x45\x10\x9e\x15\x44\xb6\xe1\x4d\x51\x90\xe4\xbd\xec\x97\x34\x4d\xb2\x72\x7e\x0d\xbd\x86\xec\x4d\x53\xca\x86\x50\x6e\x10\xa9\x39\xe7\xa9\x47\xf1\x72\x39\x04\x1a\x0d\xe5\x9e\xf3\x35\x5b\x35\x82\xc4\xd8\xcd\xb8\x0d\xf1\xc9\xd9\x64\x9a\x07\x99\x30\x5e\xe4\x1f\xf2\xda\x62\xd4\x15\x44\x3a\x47\xe4\x26\x16\x89\xdb\x78\x32\xdb\x8b\x3b\x4d\xf7\x66\xd5\x92\x5a\x27\x5e\xd0\x82\x88\xc8\xde\xbf\x39\x8f\xd3\xde\xb7\x66\xe7\x4e\xa6\x99\x35\xbc\xc9\xfb\x94\x76\xb2\xb2\xb3\xa0\x21\xf5\x23\xeb\x4d\xe1\x7a\xda\x63\x46\x5e\xd1\x40\x5a\x7b\x96\x5a\xb1\x33\xb1\x36\x79\xab\xb8\x9f\xb4\x1e\xb7\x58\xfc\x2f\x03\x88\x3c\xc1\x52\xcc\x52\x81\x7b\xb0\x6e\x50\xa4\xc1\x17\x59\x06\xb4\x43\xfe\x22\x25\xf7\xe9\x79\xee\x76\x25\x3b\x39\x4f\xed\xe7\xcb\xac\x72\xbd\x2c\xae\x32\xeb\x08\xd0\x99\x23\x05\xfd\x89\x94\xa1\xd2\x62\x3c\x7e\xb1\x73\xbb\xf4\x02\xfe\x89\x80\xcc\x36\x48\xf8\x5c\x73\xab\x5c\x32\xa1\x8d\xdd\x50\xf1\x02\xbf\xb7\xe0\x71\xa5\x3a\x3e\x90\x56\x59\x99\x9b\xe8\x4c\x8a\xac\x3a\x48\xf0\x4a\xb4\xa8\xd2\x4b\xea\x46\xe3\xaa\xa0\x29\x4f\x23\x07\xaa\xbe\xa4\x9d\x85\xbe\xad\x7e\x45\xfc\x1e\xb4\x53\xbd\x93\x3e\xe4\x0d\xe4\xee\x64\x92\x9c\x79\x35\xca\xe4\x42\xeb\x9c\x32\x32\xd6\x75\x01\x53\x4e\xc4\x74\x8e\x6b\x56\xbd\xc0\x68\xf5\x05\x73\x39\xe8\xf6\xb6\x23\x35\xdb\x68\xb3\x06\x4a\x1d\x1a\x7d\xb1\xea\x4e\xfd\x1a\x5a\x8a\x35\xd9\x40\x46\xc7\xe4\x12\x1b\xaf\x61\x4e\x93\xad\x1b\x03\xb1\x52\xa9\xb7\x1a\xcb\xe2\xae\xc4\xab\x35\x7e\xc0\x05\xc6\x78\x34\x5d\x8c\x9f\x08\x63\xf2\xe5\xf1\x5d\xc1\xa7\xf9\x73\x04\xae\x7f\x4e\xb3\x7a\xca\x1e\x8f\x83\x2d\xee\x69\x0f\x1c\xa4\x79\x1f\xa3\x11\x2b\xf9\x75\x8b\xd1\xf2\xd3\xba\x8d\x9e\x08\xde\x50\x1b\xbf\x00\xf1\xb4\xcb\xa0\xb9\x26\xaa\x5c\x30\x2c\xb4\x8d\xf2\xa9\x09\x69\x65\x46\x99\x70\xee\xb5\x05\x47\x11\x0a\x95\xdb\xfe\x21\xf6\x65\x2b\xb7\xdb\x21\xc6\x32\xc4\xdb\xc9\xd1\xf3\x49\x7b\x3a\x4e\x22\xb7\xb1\xd7\x3b\xb0\xb1\x27\x11\xa8\xce\x37\xa8\x0e\xd8\x42\xd7\x53\xcc\x2c\x50\xa7\xdb\x0b\xa7\xee\x43\xea\x15\x49\x98\x77\x71\x12\x8c\xc1\x3d\xdf\x37\x0b\x13\xe0\xe7\xe7\x26\xdb\xfe\x86\xd2\xc7\xdc\x3b\x2d\x43\x95\xfa\x76\x77\x1b\xc2\xca\x5a\xf3\x7b\xa5\x61\xa6\x0d\x2e\x7d\x17\x60\x2f\xab\xbc\xfb\xcf\xc2\x74\x4a\xa0\xfd\x29\xb0\x45\x26\x6b\xe0\x68\x68\x30\x65\x66\xc0\x09\x4e\x48\xfb\x36\x50\x12\x96\x8e\xdf\x37\xe8\x1d\xce\x44\x69\x0f\x5d\xfe\x0f\x31\x87\xad\x11\x4a\x21\x3d\x23\xbe\xc8\xb0\xc0\xf3\xa3\x9d\x28\xb8\x47\x47\xf7\x05\x10\x79\x5d\xaa\x77\x15\xa4\xb9\xb0\xd2\xff\x07\xb8\x33\x31\x3f\xb8\x0d\x2c\x1f\x14\x19\xce\x05\x06\x77\x4a\x8e\xca\x01\xb5\x04\x57\xc7\xae\x02\xef\xd6\x78\x8d\xfd\x05\x1a\x71\xaa\xc7\xab\x81\x75\x45\x62\x13\x96\x20\x9f\x9c\xe8\x89\x55\xb0\x41\xe6\xfa\xa4\x43\x70\x48\x8a\xc1\xe4\x66\x48\x36\x2e\x7d\x8a\x0b\xf9\x80\x2c\x9c\x6e\x87\x61\xe1\xf4\x59\x8f\xb0\xa3\x20\xec\xbc\x4a\x44\x91\xaf\xf6\x88\xb7\xef\xf7\xf5\xed\xb1\x66\xdf\x8a\x25\xc6\xc4\x90\x6f\xf4\xf4\xe9\x29\x8e\xaf\xcd\x70\xcd\x8c\x9b\xef\x8d\x1e\xcf\xd9\x08\x5f\x59\x61\xdf\x5c\xb8\xaf\x74\xc3\xcb\xf9\x1b\xbe\x9e\x55\xdb\xf3\xab\xbe\xa5\xa5\xd4\x05\xac\x5f\x70\xfe\xfd\xc5\x2b\xfe\x77\x69\xad\x8b\xcd\x01\xb6\xe9\x5a\x4b\xfa\x81\xf9\x84\xfa\xe5\xc3\x00\x65\xcc\xf2\xf2\x26\xb0\x20\x6a\x7a\xd5\x37\xf8\x38\x14\xff\xfe\x3a\xa4\x33\xe8\xcc\x5c\xaa\xdb\x89\x0d\xe7\x85\xcf\xae\xe3\x2b\x22\xcb\x0f\x5c\x31\xb3\xbb\x57\x5a\x5c\x53\xc7\x5e\xbd\xd3\x74\xcd\xef\x4f\x7f\xf7\xdb\xed\x68\x47\xfa\xfb\x2c\x37\x6f\x01\xfa\x83\xa1\x5b\x4f\x6d\xc2\x87\xdf\xee\x2f\x2a\xb2\xd6\x42\xdd\x37\x59\xa8\xf5\x93\x1e\x43\x4c\xc3\xf5\x48\x4f\x21\xe5\xcb\xc6\x11\xaf\xbf\x44\x8b\x8d\x74\x9f\x1b\x78\xf6\x26\xcd\x6f\x2f\x2a\xe0\xe3\x8a\xff\x66\x84\xe2\xe7\xb0\x20\x6a\xf0\x21\xaf\xbe\x5e\x40\xdd\x3f\xef\x84\x3e\x5e\x25\xcb\xbb\x74\x20\xb4\x04\xec\x95\x31\x7c\x88\x69\xec\xd5\x3e\x62\x4f\xe9\xf3\x02\x8e\xfa\xa4\xd9\x79\x9d\x19\x73\x49\x38\xe9\x59\x38\x7e\x36\xf6\xbe\xa7\xef\x78\x52\x78\x84\x07\x77\xc2\x30\x04\xe5\x61\x3b\xd1\x1c\x18\xe9\x2e\x98\xb4\xf5\x7e\xea\x56\x30\xa5\xe2\x7a\xdc\x2d\x69\xea\x85\xdd\x67\xd7\x8d\x29\x19\x0b\x53\xb7\x73\x93\x34\xc3\x26\xb7\x7d\x93\xf7\xde\xa8\xfb\xf7\x77\x1e\x6c\x34\x0d\x54\xec\xac\xaf\xae\x09\xd2\xed\x22\x96\xf9\x05\x8d\x77\x0f\xe4\xc7\x03\x24\x7a\x1f\xd2\x88\x00\x8d\xbe\x58\xd2\x49\xc0\xf1\xfe\x5a\x3c\x28\xa8\x62\x60\x05\xe5\x11\xa4\x3d\xf8\x33\x02\x18\x48\x1b\xfa\x0a\x49\x0a\xf8\x39\x3c\x12\x54\x12\x10\x30\xc2\xf6\x71\xf3\xdf\x1a\x85\xbb\x79\xf8\x7b\x8d\xdd\x71\xf0\xf2\x3f\x30\x76\xc0\x32\xdf\x2f\x6f\xb4\xc3\xa8\xcd\xaf\x78\xf4\xad\xae\x0c\xb0\x5f\xb8\xc5\x7f\x0f\x4e\x6d\x55\xe0\x0d\x84\x88\xb5\x62\x38\x37\x21\x52\x6d\x46\x85\xc6\x90\xa2\x76\x8f\x6c\x4d\xe8\xa9\x0e\x5c\xfa\x7b\xa8\x55\x67\x33\xc1\x0a\x6a\xd9\x2d\x87\xfe\x0e\xbd\xd1\x93\x10\x49\x80\x54\xf4\xed\x81\x42\x21\xe7\xfa\x55\x00\x0d\x21\xe8\x81\x07\xbe\xee\x21\x27\x07\x9f\xba\xc3\x82\xf1\x43\xb7\x1c\x13\x82\xe5\x86\xae\x59\x2d\x82\x1b\x07\xd7\x8d\xfb\xc0\x95\x83\x76\xba\x3b\x90\x15\xfe\x70\xcb\x3a\x6c\x94\x5f\x57\x27\x0e\xcf\xe4\x77\x57\x3c\x0c\x97\x12\xc8\x16\x1b\x45\x88\x09\xb6\x19\xaa\x11\xab\xcd\x4b\x99\x9f\x23\x43\x5a\x3e\x26\x87\x47\x36\xb5\xca\xc5\xa9\x44\xb6\xb5\x05\x22\x46\x22\xf1\xed\x4b\xa1\x76\x91\xb2\x9d\xae\x20\x74\x04\xa9\x6b\xc1\x6f\x38\x42\xb2\xc7\xdd\xa3\x3c\x1c\xdd\x3b\xea\x54\x11\x2e\xd6\x27\x65\x73\x27\xac\xb5\x97\x68\x2a\x1a\x26\xec\xf9\xa2\xf7\x39\xfc\x6a\xbd\x4f\x87\x66\x64\x42\xbd\x48\x43\x01\xa2\xa0\x6e\xb6\xaa\x09\x49\xae\xeb\x2b\x99\x88\x19\xab\xcf\x66\x12\x62\xdf\x35\xe0\x28\x46\x28\x4c\x23\x24\x75\x00\x7d\xaa\xc9\x25\x1e\x8c\xd6\xe2\x47\xc7\x58\xa0\x5f\x0b\x3a\xc2\x70\xe8\x43\x2d\xce\xc1\x7d\xa8\x22\xe1\x46\xe0\x29\x94\x49\x9b\x9b\x57\x45\xec\x6a\xfb\xa4\x4b\x68\x2c\xba\x63\xcd\x4e\x3e\x36\xa3\xa3\xc0\xfc\x54\x6c\x75\x07\xf8\xad\x7f\x8c\x4c\xf5\xc7\x9e\x3c\xd4\x44\xf5\x53\x41\x08\xe6\x5d\xf5\x6e\xde\xdf\xb8\xe6\xaa\x5f\xec\xcd\xf8\xd7\xd5\x86\x05\x95\x09\xa8\xea\x15\xba\x1b\xde\x82\xdb\x40\xda\xc0\x7f\xe4\xb1\x13\x9d\x13\xa5\x6b\x36\xd1\xf7\x13\xaf\xd5\x29\x47\x9e\xc6\x2f\x34\x9c\x82\x8a\xe0\xd3\x1a\xe7\x00\x8f\xf0\x8e\x7c\x17\x9f\x6a\xbc\x9c\xa0\xc7\xcd\x3a\xa1\xa5\xe5\xa1\x83\x28\x5e\xb4\xc5\xc1\xe2\x0f\xde\xb1\x25\xde\x90\x1d\xb7\xc8\xf9\xd8\xcf\x4c\x28\x61\xaf\xb5\xfa\x12\x34\xd8\x8f\xeb\x53\x92\xd5\xd8\x5a\x95\x90\x94\x5f\x6c\x7d\x96\x65\x9a\x1f\x9b\xc2\xd8\x26\x26\x70\xa4\xb3\x10\xa4\xd3\x9c\x2f\xc9\x9f\x49\xbe\x15\xfb\xe2\x98\xa4\xd4\x4a\xd3\xe8\x12\x52\x74\xd5\x3b\xb8\x2a\xe9\x02\x77\x12\xac\x49\x6c\xaa\x69\xf2\xb7\x25\x66\xd6\x19\x78\xb0\x88\x56\xf5\xef\x9d\xa4\x89\x49\x0d\xb5\xd6\xea\xa4\x53\x8d\x17\x8d\x97\x93\x45\x58\x55\xc3\x92\x69\xf6\xc5\x4a\x9d\x7e\xe9\x8a\x45\x77\xf9\x75\x99\xaf\x0a\x67\x78\xee\x64\xa9\x42\x0e\xfb\x12\x85\x5e\x38\x9e\x5f\x4f\xdb\x5b\xa4\x4e\xd3\xa4\xf9\x15\x6d\x13\x69\xb4\x9c\xe2\xfe\x84\x1f\xb4\x99\x12\xed\xd8\xbf\xf4\x13\xa5\xb4\x88\x43\xb4\x25\x36\x1d\x72\x9f\x96\x52\x9e\x16\xe4\x46\x8b\xab\x54\xf4\xc6\xd1\x32\xab\xa2\x5c\x9a\x69\x53\xd5\x42\xbb\x7d\xf4\x6a\x2e\xd7\x6c\x23\xf3\x27\x13\x3d\xce\xa1\xda\xe6\x9e\xea\xdd\x93\xbd\x9b\x91\x28\x6c\x63\x98\x30\x94\xeb\x93\x73\x7f\x31\x76\x57\x6a\xe5\xf9\xe6\xfc\x2a\x9e\xcd\x47\x30\x9e\x31\x1e\x15\xe8\x31\x5a\x33\x2b\x0a\xaa\x73\x19\xc9\x86\x05\xef\x99\x5d\x71\x17\x0a\x96\xf2\xaf\x47\xdf\x2f\xe8\x2e\x58\x0c\xad\x2c\xa0\x14\xfd\x04\xf1\x0a\x7c\x59\xff\xfc\x6a\x0b\x2a\x4a\x6d\xdc\xd3\x0b\xbe\x96\xe5\x39\x14\x14\x7e\xe2\xec\xb5\xcc\xca\x9d\xa2\x3a\x4c\x47\xe5\x6f\x50\x9c\x07\xa3\x8a\x3c\xc9\xad\x1d\x5f\x58\xe9\xe4\xd7\x7c\x7e\xe9\x43\xf2\x11\x1e\xb8\x0c\x97\xf5\x85\x2d\xc5\x76\x27\xab\xe5\x07\x72\x8e\x91\xc1\xd4\x7c\x0e\x8c\x62\x45\x0c\xe4\xcc\x50\x9f\xe0\x1f\x71\xde\xd3\x9a\x50\x08\xce\x70\xf6\xd5\x08\x2e\x67\x86\x71\x10\x92\xc5\xe9\xcd\xdd\x0a\xa2\x95\xab\xe5\x65\x7b\xbb\x97\x17\x15\x28\xb8\x9c\xa8\x70\x28\x6c\xb7\x49\x2a\xfd\x43\x3a\x3f\x0f\xe1\x14\x11\xa1\x63\x2a\x95\x47\xd2\x36\x7a\x43\xaa\x0f\xa6\x61\x5a\x1f\x71\x07\xd2\xee\xd7\x7f\xaf\x91\x48\x3b\x51\x99\x58\x7b\x39\xed\x20\x4b\xb1\x96\x93\x86\x60\x24\xd6\x9d\x20\x6a\x64\xc9\xd4\x5d\x26\x49\x25\x4f\xd7\xdd\x4b\xd7\x8c\x1b\xad\xbb\x98\x51\x8c\xd4\xa8\x53\xcc\x7a\x08\xa7\xd7\x9d\x22\x7f\x07\x7b\xd6\xed\xa1\x16\xfb\x3f\xae\x57\xa1\x9b\xbb\xd3\x1b\xc4\xb3\xff\xd8\x6f\xf3\xce\x10\x5e\xac\x5c\xae\x5d\x4b\xcc\x9a\x4a\x6d\x50\x4b\x94\x18\xfc\xda\x24\x8b\xe7\x75\x22\xf8\xd3\xf8\x00\xc1\xd5\xe6\x6b\x78\x4d\xde\x5c\xcb\x23\xbc\x32\x1b\xdb\xd2\x8b\xf7\x29\xb8\x24\xbc\x80\x9f\xa0\xb5\x0b\xed\x13\x1b\x48\x54\x61\x38\xa1\x2a\x31\x44\x98\x9c\xf4\x1d\x5d\x2b\x4c\x4e\xd1\x89\x12\x15\x7e\x4f\xdb\x0f\xa5\xb7\x6a\x11\x07\x01\xc6\xad\x3f\xd2\xdb\xbc\x07\xda\x6f\x65\x0e\xb8\xec\xe7\xff\xc1\x22\x3f\xbc\x6a\x69\xc7\xfc\x9d\xcb\x6b\x5d\xc6\xa4\x8c\xdd\x69\xff\x88\xb9\xd4\x3b\xdd\x59\x80\xee\x6b\x8d\xed\x7e\x82\x8e\x68\xb8\xd5\xa3\x81\x06\x55\x6e\xf7\x6c\xa2\x23\x59\x55\xbd\x6a\xe8\xcf\xb9\x29\xbd\xe6\x18\x18\x39\xa0\xd7\x1f\xeb\x95\xfa\xb6\x17\x1b\x67\x1b\xff\xa2\xb7\x05\xe7\x1f\x93\xdd\xb7\x2f\x9e\x12\xbe\xbb\x6f\x16\x9f\x18\x8c\xe8\x8f\x21\x60\x02\xe4\x06\xd6\x52\xb4\x3d\xb4\x3b\x3d\xa2\xa7\x37\xb0\xdd\x5b\xd1\xc1\x4b\xf0\xbe\xf3\xd1\xc7\xa7\xee\xf5\x7f\x45\x64\x0c\x0a\x07\x33\x10\x77\x3b\x1d\x87\x8f\x45\x2d\x09\x8e\x8e\x48\x44\xd5\xf1\x16\x47\x3e\x46\xb1\xd8\x7d\xa3\xc0\xa8\xbf\x05\x4b\xa3\x9d\x88\x90\xec\x83\x63\xf2\xd1\xf7\x32\xae\x8f\xf9\x21\xe5\x93\xac\xc7\xa6\x63\xd4\xb1\xb1\xe3\x06\xb1\x06\x08\xce\xc4\x01\xb4\x18\xec\xc3\xc4\x26\x56\x0b\x78\x69\xf2\x1f\x0e\xeb\xf3\x68\x80\x1f\xa6\xb2\xb5\x35\xec\x0c\xef\x59\xe5\x8c\xc2\xe0\x4e\xb3\xa9\xe3\xd0\xd0\xa1\x51\xe9\x49\x9b\x50\x83\x9e\xae\xa9\x9a\x50\x11\x61\xf5\xf4\x57\x58\x43\x7d\xf5\x4c\x2d\xac\xa9\x72\x71\x16\x04\x1b\x29\x39\x3b\xfb\x2e\xd4\x85\xe9\x35\x67\x16\xba\x45\xa9\x9f\x6b\x85\x8f\x11\x55\xe7\xaf\x85\x15\xe2\xd1\x0b\x47\xc3\xcb\x50\x31\x0b\xf3\xff\x21\xe6\xd2\x0b\x44\x68\x48\xce\x72\x62\xcc\xa9\x80\xdc\xc9\x4a\x70\xc1\xa7\xcf\x33\xc7\xc1\x6f\xde\xc7\xce\x49\x83\x66\xe6\xc9\xf3\x5b\xa0\xe4\xf1\xd6\xc5\x2c\x90\xd5\xc0\xa1\xa5\x19\x90\x5a\x87\xf9\xf2\x2f\xe0\x36\x9f\xb3\x32\x0e\xfc\x51\x73\x6d\x35\x0d\x24\xc3\xa9\x7b\xf7\x10\x84\x29\xd2\x7c\xd7\x0c\xbe\x9e\x53\xfa\xfe\x59\xf0\xde\xac\xb3\xef\x79\x21\x27\x52\x02\x3e\x18\x42\xe4\x71\xf9\x6b\x2f\xa1\x86\x48\xe6\x7a\x18\x6c\x18\x9e\xb0\x69\x18\x06\x05\xed\x5f\xb6\xf0\xeb\xf8\xfc\x73\x15\xee\x17\xb6\x76\xfa\x3d\xd2\xef\xe2\x62\xd4\x9a\x9a\xdf\x99\xa9\x8b\xeb\x31\x7e\xb2\xc3\x87\x36\xaa\xfc\x94\xbb\x97\x37\x8b\xfd\x0e\x08\xcb\x3f\xa6\xf9\x6e\x37\x24\x6f\xbd\xf6\xbb\x55\x1d\xb9\xb5\xe5\x17\x5a\xe6\xf6\x29\xdc\x5f\xae\x60\xd7\xa7\x7f\xfe\x53\x74\xc8\x67\x64\xe0\x9e\xf4\xde\xed\x53\x41\xb7\x93\x24\xb6\xbf\x03\x4a\xb0\xe2\x5f\x2f\x80\x0e\x44\x7d\xf9\x01\x08\x16\x87\x78\x02\x6e\x0c\x7c\x69\x52\x01\xee\x1e\xda\xcd\x5d\x01\x26\x0f\xbf\x65\xaf\x00\xfd\x47\xfe\x16\x06\x03\xaf\x8f\xa1\xb2\xe7\x01\x85\x13\x87\x33\x8f\x00\x0e\x4e\x6a\x27\x8d\x04\xbd\x9a\xd2\xc6\xfe\x0e\x04\x4f\x1f\x8d\x76\x0c\x28\x9e\x2e\x82\xdf\xf5\xff\x3c\x73\x15\x0c\xf1\x7f\x3c\xc3\xf4\x17\xf8\xc5\xcf\x9e\xf6\x6c\xf1\x9d\x9d\xf5\x73\x16\xf8\x6a\xcf\xc6\xda\x66\xf8\xb4\xcf\x3e\x33\x7f\xe8\xa3\x3b\xf3\xcf\xa0\x3a\x84\xd4\x13\x2a\x38\x01\xd9\xe9\xdd\x55\x13\x0d\xdd\xe8\x13\x29\x0f\x85\x05\xf4\x5f\x29\x7e\x09\x7b\x33\x40\x64\x84\xc0\x44\x87\x0e\x65\x91\xa0\xb3\xc3\x26\x29\x6f\xa1\x80\x11\x3c\xee\x01\x64\x68\x34\x1b\x09\x86\x48\x8f\xa5\x87\x49\x85\x38\x8c\xfb\x07\x83\x82\xa9\x13\x97\x03\xf8\xc1\xbb\x26\xc6\xbc\xba\xc1\x4e\x93\xfe\x2e\x4b\xa0\xe6\xc9\x21\xbb\x59\xd0\xe3\xc9\x48\x0b\x23\x60\xc5\xe4\x65\xc3\x6c\x38\xa7\xc3\xb3\x85\x1d\x6e\xd3\x01\xae\x23\x45\xd0\x3b\x95\x2b\x6d\x22\x9b\x3a\xff\x94\xdc\x88\xfc\xdb\x7d\x85\xf9\x34\xea\x48\x4f\x30\xc5\x2e\x4a\xbd\x77\x34\x75\x3b\x4a\xac\xff\x52\x3c\x27\xb2\x7a\xc0\x2d\x26\x3f\xf2\xfa\x20\x2e\x6c\x27\x02\x3e\x44\x0a\xf1\x0c\x6f\x1c\x4e\x0a\xec\x0e\x57\x1c\x09\xf3\xee\x09\x8b\x1b\x35\x72\xfd\x0a\xdf\x1a\x13\x75\x90\x82\xdb\x8d\x96\x5a\x02\x42\x07\x46\x5f\x18\x51\x10\x8f\x85\x80\xb6\x4a\xe4\x65\xe1\xdb\x46\xa5\x18\xa6\xb0\xa5\xba\x34\xf6\x5f\xeb\xeb\x32\x43\x54\x53\xdb\xe3\xfc\x50\xf4\xb3\x76\x4b\x5a\x2e\x3a\xba\x23\x82\x64\x8f\xce\xea\xe4\xe2\xff\xa0\x3d\xba\x0f\xa0\x26\xd1\x67\x7b\xdc\x22\x4a\x51\xe0\xde\x3e\xc8\x7a\xac\xb0\xef\x07\xc0\x36\x56\x61\xe0\xb8\xaf\x5a\x4c\xc2\xe0\x39\xf7\xa7\xc8\x9f\x43\xc7\x1c\xed\x90\xf1\x83\x7f\xac\x86\x90\x57\x06\xf1\xc6\xef\xd0\xd6\x7c\xbf\xce\x01\xac\x2a\xff\x91\x40\x29\xae\x91\x6f\x52\x73\x35\xfe\x32\x3f\x9d\x83\x49\xd0\x11\xdc\x2d\xac\xc6\x8b\x37\x2b\x67\x77\xe2\xa9\x2d\x72\x19\x65\xf8\x59\xa1\x4c\x92\x19\x7e\xae\xf5\x26\x56\x0b\x5f\xd9\x66\x85\xd0\xc4\x9b\xb5\x0b\x42\x65\x12\x3a\x3b\x1f\x80\xc2\x13\x2e\x75\xd1\xfd\xbe\xc5\x63\x7b\x0e\x78\xf4\xe1\x06\x7b\x9d\x9d\x6a\x71\xb1\xbd\xeb\x36\x26\xb8\xec\xde\x1a\x53\x8d\x84\xad\xba\x99\x5e\xb1\xc4\xb5\x3a\x82\x30\x20\xa9\xa7\x0e\x52\xaf\x9d\x62\x53\xd7\x59\x19\x96\x5a\x5b\x7f\x8b\x55\x9d\x16\xd9\x70\x3e\x37\x9e\x78\xba\xe1\x1f\xd9\x99\x68\xd7\x58\x95\x7a\x8a\x18\xdd\x84\xc4\xad\x13\x3d\xf9\x11\x31\x52\xc4\x1b\x82\x9c\x30\x52\x5a\x77\xcb\xc5\x90\xbd\x69\xc6\x42\x46\xa0\x67\xea\x97\xd6\x9f\xde\xa2\xa9\xb1\xed\xba\x2e\x83\xa9\xf2\x1d\x10\x3b\x78\xea\xa3\x8e\x65\x73\xe7\xd4\x3f\x5c\x95\x01\x01\xc9\xa1\x1a\xd5\xa1\x90\x01\xaa\xbe\xc6\x17\xc9\x92\xaf\xd6\xe2\x49\x90\xd3\xab\xfd\xd8\x3a\x94\x9c\xea\xd5\x02\x15\x6a\x20\x37\x82\xb6\x49\x2d\xe2\x3d\x24\x61\xa8\x35\xbc\xbf\x89\x62\xd4\xb4\x5a\x79\xf4\x25\xaa\x79\xdd\x83\xc8\x07\x14\x7e\xc3\x1e\xe8\x33\xca\xcd\x46\x36\x20\x99\xbc\xc9\x3f\xe6\xab\x4c\xee\x11\x3c\x73\x1b\x25\xa7\x37\x47\x3b\xa4\x92\x87\x5b\x0c\x2c\xa3\xc8\x29\x1c\xe1\x08\x86\xba\xc0\x11\xe9\x5e\xc9\x3e\xc7\x2e\x6f\xf9\xc9\x38\xc4\x0e\xad\x97\xca\x45\xb1\xb1\x95\x97\x98\xfd\xec\x42\x96\x5a\x1e\x87\x73\x98\xd1\x9c\xaf\xc9\x89\xcb\xb2\xc9\x7f\x58\x6e\x95\xbc\x92\xaf\x5c\x61\x12\xd7\x94\xb7\x55\x19\x15\xfd\x23\xaf\xa8\xea\x2b\x9c\x9c\xf7\x94\x3b\x0c\x9e\x66\x96\xd5\x14\x07\x1c\x65\x12\x6b\x77\x3c\x6d\x98\x5e\xf5\x3a\x4e\x7c\x66\x4c\x83\x8e\x75\x0b\x73\xa0\xb8\x67\x52\xa6\x40\xb7\xf8\xc2\x80\x54\x91\x51\x51\x7d\xc7\x59\x96\x72\x91\x25\xff\x71\x49\x70\xd1\x03\xde\xe3\x52\x4c\xd1\x63\xf6\xd5\xb2\x97\x45\xf0\xfc\xda\xb2\x89\xa2\x7e\x9a\x72\xd9\x46\x71\x32\x91\x5e\x36\xc9\x72\xc6\x8b\x96\xd9\x94\xe0\x50\xfb\x4a\xdf\x95\xe6\x47\x88\x96\xce\xb3\x09\x10\x5a\x69\x69\x79\x20\xe0\x5c\x69\x4e\xc5\xb6\x8f\x49\x29\xbf\xea\xa2\x6b\x74\xe9\x4a\xb5\xab\x5d\x42\x59\x73\x6e\xd5\x6c\x5e\xf9\x99\x5c\xe3\x91\x92\xca\x3d\x8c\xed\x1e\x48\x55\x2c\xa3\x40\x88\xa9\x1e\x65\x80\xeb\xd1\xdc\x1a\x46\x50\xa5\x0e\x0f\xc4\x88\x2b\xfe\xcc\x6b\xcb\x3d\xc8\x78\xcb\xdb\xce\x65\x66\x76\xf0\x56\x99\xc1\xc9\x3e\x3c\x7e\x1e\x26\xce\x91\x17\x92\x3f\x11\x9d\xc7\xbb\x54\x68\x0a\xbf\xcf\x5d\x2d\x96\x07\x1b\x70\x53\x58\x9f\xfc\x7d\xb9\x03\xa5\x6f\x3c\x9e\xf0\x44\xca\x92\x1d\x95\x6b\xb0\x94\xef\x4b\xb0\x3a\x1e\x25\x70\xb2\xa0\x01\x45\x11\x19\x84\x36\x2e\x91\xf9\x9d\x2f\x9b\xfe\x90\xe9\x82\x43\xfc\x69\x72\x34\xaf\x4c\x90\x4a\xf6\x60\xbf\x14\x4c\x91\xbb\xf2\xeb\x04\xdf\x29\xd6\x34\x79\x41\x17\x55\x99\x58\x2d\xa0\x53\x7f\xe1\xad\x04\x28\xba\x2f\x6a\x44\x60\x91\x3d\x1c\xf9\x52\x70\x9d\xe1\x0d\x55\xe3\xff\x61\x1e\x01\xa8\x08\x9e\xe7\x31\xbc\x3f\x08\x06\x0a\xd4\x5d\x2c\x9a\x51\x24\xfd\x77\x42\x61\x2b\xb1\x75\x76\xa5\xcd\x92\x08\x1d\x6d\x6c\x9f\x20\xde\xe8\xcd\xeb\x94\x22\xee\x6d\x05\x75\xbd\x4c\x1b\x6f\xd0\xee\x1a\x4e\x9b\xad\x9c\xea\xd6\x4e\xfb\xc9\x02\x75\x3f\x27\xba\xe5\x1e\xee\x7e\x44\xfc\x92\x55\xd4\xad\x40\xea\x4f\x09\xec\xfa\x9b\x3e\x8a\x73\xef\xe2\x67\x5e\x43\x72\xbb\x10\x59\x79\x61\xf2\x5d\x26\x14\x1d\xf0\x7c\x97\x14\x75\xd6\xbf\xa2\x3b\x92\xde\xe8\xb1\xbb\x8b\x42\x28\x5e\xaf\xea\xa9\x21\x9c\x5d\x5c\xed\x03\x25\x32\x26\x2b\xfa\x3f\x27\xda\x0d\xa6\x0e\x3e\x49\x94\xef\xf4\x18\xf2\xc0\x6f\x09\x2e\x0c\xcb\xe2\x3f\xf3\xa6\x86\x53\x13\xcf\xb0\xa3\x87\xbb\x12\x9d\x0a\x8c\x86\xe7\x13\x9b\xe8\x17\x87\xd7\x09\xf0\xf4\x73\xc3\x6b\x49\x86\x04\x91\xe1\x8d\x64\x18\xe6\xfe\xf0\x6c\x0a\x3f\x2a\x76\xe4\x56\x5a\x00\xec\xe0\x08\x8a\x74\x13\x90\x3f\xfa\x28\xe3\x86\xcf\xae\xa1\xc7\x71\x57\xb6\x5c\x46\x5e\x60\xb9\xab\xc4\xd1\x5f\x58\xa3\xd9\xe0\x71\x24\xe6\xeb\xa8\xd6\xc4\x5f\x0c\xa9\xf7\xe4\x94\x04\xc6\x59\x38\x3b\x7d\x0e\x73\xbf\xbe\x7c\x3a\x1d\x63\x58\x89\x9d\x39\x81\x09\x61\x01\x67\x0c\x30\xd3\xb9\xc4\x99\x78\xac\x21\xb9\x7e\xa6\x31\x4e\x3c\x75\x75\xe6\x5d\xdc\x5a\xc2\xbe\x99\x8d\x78\xf5\xd8\x03\x33\xcb\x09\x51\xe1\xc7\x67\x6b\x12\xe1\xc1\x3e\x73\x51\x49\x7e\xfe\x95\x13\xdf\x91\xf3\xdb\xbc\xe9\x73\x48\xcc\xda\xf3\x99\x76\xe4\xc9\xc5\x1b\x73\x6e\xd1\x49\x13\x9f\xe7\x57\xa3\xd5\x07\x08\x8b\x62\x88\x77\x1d\x3e\x4b\xca\x88\x6a\xbe\xc7\xd2\x3a\xa2\x8c\x07\x5a\x26\x21\xaa\xd9\xd8\x15\xd1\xe8\x3d\x05\x82\x15\x60\xb4\x67\xf6\xde\x95\x31\xe4\xf1\x0c\xfd\xd5\x47\xc8\xb1\x24\xd2\x6a\x5b\x4c\x37\xb6\xe5\x9d\x5b\xec\x47\xc4\xf8\x7b\x5f\x74\x37\xec\xc3\x87\xf7\x71\x72\x80\x9e\xf9\x2f\xe1\xe5\xdf\x2f\x2e\xea\x85\x27\x6d\xae\x2d\x6b\x86\x7d\x5e\x61\xad\xec\x84\x05\xce\x44\xbc\x2b\x81\x7f\x1d\x39\xfa\xe1\x22\x3c\xa9\x7b\x66\x4d\x17\x6e\x26\x94\x5c\xb7\x82\x2b\xd7\x7b\x6e\x5c\x80\x2b\x55\xb6\x6f\x7c\x84\x5f\x2a\xb9\xb4\x69\x0e\x27\x31\x43\x37\xeb\xe0\xff\x28\xad\x1f\xe5\xc3\xea\x88\xbb\x3f\x86\x87\x7b\xe0\xef\x6d\xc1\x23\x24\x50\xb6\x9f\x02\xfe\x43\xcc\xaf\x43\x88\xaf\xc1\xb4\x35\xbb\xe0\xc2\x1d\xd0\xfa\x58\x70\xf1\x96\xfe\x26\x3c\xf8\xcd\x3b\x9f\xad\x03\xe0\xcd\xb9\xd4\x4f\x2e\xe0\x86\xb1\xe5\xcf\x05\x60\x52\xff\xcb\xed\x06\xb0\x7b\xfb\xa7\x2f\x3d\xe0\x47\x7c\xee\x57\x16\x58\xbb\x26\xf8\x9b\x1f\xd8\xa5\x5c\xe5\xbb\x28\xb8\xad\xa8\xf2\x3b\x3d\x38\x88\x21\xbf\x73\x3d\xe4\x62\x16\x6c\xa7\x29\xe4\x57\x4a\xe3\x0f\x4f\x48\x3d\x6e\xe9\xa7\x37\xd4\x0e\xd9\xf6\x57\x1e\x56\x1e\x6a\x08\xcb\x1f\x4d\x6d\x89\x0a\xed\x1e\xd5\xa9\xfd\x06\xb7\x1a\xb3\xa9\xdc\x0d\xaf\x1a\x67\x97\xdc\x80\x6b\x4e\x06\x33\xcb\x43\x01\xd3\xaf\xa9\xa6\x30\xe1\x0c\x9b\xe8\x01\x9d\x9f\xfd\x83\x47\x42\x16\xe6\x1f\xa2\x2f\x85\xb4\x2c\xa8\x45\x56\x04\x7f\x58\x28\x86\x1d\x09\x3e\xbb\xf0\x19\x08\x05\xeb\x2e\x5e\xf7\xbb\x0e\xca\x59\x8c\xf0\x70\x01\xed\x5e\x1c\x71\x22\x00\x9f\x2f\x96\xdb\x80\x01\x84\xc5\x87\x66\x27\x22\x4b\x06\xd8\xc2\x38\xc4\xed\x81\xac\x7a\x0c\x62\x63\xb0\xaa\xaa\x24\xda\x7f\x68\xb8\x74\x2d\xfa\xd9\xc8\xc3\x7c\x38\x62\x7a\xb4\x87\x7e\x1c\x01\x1e\xbf\x91\xae\x1e\xb5\x39\x11\x42\x90\x88\x92\x99\xc4\x60\xfc\x23\x2f\x4f\x45\x45\xad\x47\x68\x4e\xeb\x84\x9e\x0e\x37\x99\xfe\x0b\x8a\x08\x03\xcf\xd0\xfd\xcf\xc0\x9b\x67\x65\x3d\x5f\xc3\x95\x67\x33\x9c\xa3\x43\xdd\x66\x59\xb6\xe1\xb0\xd5\x59\x57\xf3\xe7\xb1\x8e\x3d\x29\x6d\x38\xb4\x7e\x4f\x64\xa3\x10\xa3\xd3\xeb\xc8\xe5\x60\x8f\xf7\xb9\xb2\x9b\xb1\xa6\xfd\xa9\x85\x11\xd8\x1b\x03\x5b\x39\x7b\x31\x3b\x43\xfa\x99\x4f\x31\xe4\xe1\x84\xe4\x63\x98\xe3\x23\xb5\x71\x4a\x68\xed\xd1\xae\x68\x7f\x94\xfb\x58\x2b\xdc\x34\x36\x6a\x3c\x1f\x3c\x16\x93\x39\x11\x1a\x60\x8e\xfc\x3c\xa9\xe5\x05\x47\x1a\x4f\xee\xb8\x14\x45\xd7\x4d\x01\xed\xba\xa3\xf1\x53\x66\x16\x6c\x9c\x59\x47\x41\xa7\x71\x82\x72\x47\xb2\x00\x8e\x4f\xed\x94\xab\x95\x4a\x44\x74\x89\x94\x6f\x13\x8c\xbb\x0f\x17\x77\x10\x02\x7a\x14\x72\xd5\x09\x21\xbd\x86\x64\x14\xe1\x5a\x1f\x2e\xf5\x45\x62\x53\x7f\x4d\xbc\x4a\xa2\xdc\xc0\x58\x8c\x19\xde\x7b\xf0\x6b\xd8\x50\x42\xc2\xd0\x9f\x10\xdb\x78\xd6\xf0\x4e\xe0\x12\xee\xef\xc8\x5f\xef\x39\x9c\xfb\xe8\x5f\xb7\x3d\x71\xcd\x63\xeb\x0e\xea\x71\xef\xc7\x7e\x59\x1d\x4c\x6a\x6c\x3d\xda\x73\x23\x25\xbd\xf5\xa6\xd0\x34\xed\x59\x6b\x78\x7d\x03\xd1\xae\x4d\xb9\x0a\x46\x0a\x6b\x1b\x2c\x75\x20\x09\xdb\x93\xf3\x4a\x49\xcb\x1d\xfa\xb4\xa3\xa4\xee\xce\x97\xa4\xa3\x24\x5e\x97\x7f\xa2\x38\x49\xaa\x1b\x8e\xb6\x20\x62\x7b\x0a\x22\xe9\x69\xc2\xde\x77\xd0\x9e\xd4\xf5\xbe\x1d\xa0\x72\xaa\xf6\x80\x94\xef\x48\x4a\xfd\xa0\x8e\xfb\x44\x8a\xda\x90\xaf\xe3\x7c\x0a\x7e\xf8\xa1\x75\x71\x3a\x54\x80\xea\x7f\x90\xe9\x2e\x08\x6e\xbf\x4f\xbe\x21\x20\x34\x31\x29\x51\x82\x6d\xde\x13\x2a\xb7\xd9\x8d\xb3\x8f\x66\xd5\xbc\x5a\x18\x4c\x43\xb7\x04\x65\x17\xd1\xa2\x84\xe7\x33\xf8\x34\x6f\xe1\x56\x52\x1b\x75\xb3\xb5\x15\xfb\x87\x6a\xd5\x56\x19\xed\x4a\x69\x6f\x9f\x85\x1b\x53\x24\x3b\xd5\xc0\x5c\x32\xbc\x0b\x18\x70\x95\x2c\xde\xcd\xf7\xda\x93\x95\xdd\x2b\xe1\xbc\x90\x15\xd3\x17\x63\x5b\x44\xcb\x6f\xb8\x39\x64\x9f\xfd\xae\x7e\xa1\x0b\xc3\xe8\xad\xef\x69\xb9\xcc\x0c\xaa\x9f\xa9\x1b\xcb\x43\x37\xdc\xae\xb4\xce\xf7\x6f\xc8\x64\x0d\xe7\x33\x1b\x1f\xe6\xbe\xcb\x2f\x6b\xec\x22\xff\xc9\xb7\x6f\x0a\x4f\x9d\xcb\x3f\xc4\x7f\x11\xbf\x9c\x17\x24\xb8\x16\xfb\x9c\xf9\xa9\xf9\x61\x78\x37\xf3\x69\x0b\x19\x22\x95\x9b\x2c\xfc\x1d\x04\xcb\x7d\xd0\xf6\xca\x47\x96\xf1\xb7\x1d\xeb\xba\x91\x2b\xd3\xa9\xe6\x20\x52\xe0\xc0\xdb\x3d\x16\x5f\x44\xe2\x86\xf7\xd1\x59\x10\xae\x6f\xfb\xe3\xd2\x63\x5c\xdd\xa6\xf5\x32\x31\x2e\x84\x67\x51\x36\xc0\x2d\x61\xe7\xb3\x6f\xf0\xc4\x0b\xca\xd9\x3a\xbc\x04\x7a\x2a\x7b\x77\x8d\x76\x7a\x60\x59\x42\xed\x49\xc2\xeb\xd2\x3f\x75\xa2\x18\x5a\xa9\x4b\xfd\x45\x84\x6c\x09\xaf\x21\x3f\x74\x1f\xeb\x6f\x93\x06\x48\x82\x05\xe0\x63\xfd\x5c\x59\x6f\x04\x74\xf7\x6d\x96\x7e\xf3\x27\x47\x06\x67\xa0\xfc\xed\xd4\x64\x45\x53\xf9\xb1\xe1\xdd\x55\x8d\xe5\xa7\xba\x61\xd5\x63\x9c\xc5\x96\xef\xdc\x11\xce\x58\xbd\x27\xcf\xa1\xfc\x60\x25\x9a\xd7\x5b\xfe\x92\x95\xc9\x6b\x2f\xaf\xca\xbd\xc9\x63\x55\x3c\xc9\x9a\xe2\x69\x54\x2c\xa4\x40\xb9\xd9\x95\x1c\x9c\x3f\x77\x7f\x55\x03\x72\xad\x3a\xa8\x7a\x3b\x8c\x56\x35\xcd\x83\x07\xaf\x56\xdd\xaf\x3d\x1c\x28\x5b\xf9\xab\xce\xd4\xeb\x6d\x65\x5f\x7d\xa1\x33\xa2\xae\x92\x25\x35\xdf\xd4\xe0\x5e\xdc\x3d\x5e\xdf\xb4\xbf\x38\x7f\xe0\x3c\x7f\x4f\x71\x5a\x87\x33\x7f\xa8\x38\x89\x5f\x2a\x30\x2e\xae\xe6\x35\x08\x32\x8b\x37\xd8\x05\x02\x34\x4b\xb7\xe0\x81\xc0\x94\xd5\x4a\xa3\xf1\x97\x4b\xdc\x48\x97\xf9\x3e\xa5\x87\xf1\x35\x4d\xeb\x65\x52\x68\x89\x26\x1b\xf6\xe5\xc8\x98\xc6\x15\x0e\x11\x5a\xd9\xe8\x58\x71\x00\xf0\xaf\xf1\x40\xa5\x8b\xaf\x7a\xc3\xa7\xaa\x7a\xb7\xd3\xad\x04\x66\xf9\xca\x4e\xbb\x28\xf3\xc9\x0c\xab\x23\x8a\x69\x32\x7a\xb2\xd3\x9c\x29\xd9\x6b\xd2\x75\x9e\x29\xda\xea\xdf\x55\x98\xfb\xad\x01\xde\xd5\xc6\x94\xac\x52\xe9\xe2\x32\xaf\xb0\x6a\xba\x1c\x99\xf8\x5c\x95\xae\x63\x79\x52\x59\xac\xce\xb4\xbc\xe9\x14\xb7\x4e\xb1\xfc\x6e\x9c\x79\x07\xa6\xf0\x30\x32\xb7\xe3\x50\x91\x59\x98\x72\x3b\xad\x78\x34\x58\xb1\x5d\xad\xc4\x22\xe0\x72\xbb\x71\x29\xdd\x83\xd6\xe7\x49\xad\x5b\x83\xf4\x67\x51\xed\x17\x2d\x07\xb2\xa9\x4f\x26\xe1\x83\x70\xea\xd5\x41\xce\xd0\x03\xaa\x74\xa7\x60\x88\x4f\xf9\x2d\xa0\x0d\x9f\xa7\xee\xa9\xb1\x1d\xbe\x4d\x95\x65\x7f\x1d\x3e\x4f\xf5\x2b\x88\x1f\x1a\xa4\x8e\xd3\xe5\x87\x92\x68\x28\xd2\xcc\x90\x21\x5d\x3f\xb1\x68\xf0\x77\x76\x0a\x7a\x6d\x30\x38\x67\x22\xea\xda\xe0\xdd\x5c\x33\xe8\xe6\xc0\x17\xe6\x30\x60\x72\x60\x23\xff\xa2\x8f\xcd\xe8\xef\xf4\xc3\x1f\x95\xc7\x77\x93\x04\xab\x47\x27\xf6\x92\x52\x66\x95\x27\xcf\x91\x5c\x46\x5f\x4e\x49\x93\x6e\xf6\xfa\x4c\xb1\x48\xf2\xad\x2f\xa7\x6f\x92\xce\x37\x28\x4c\xbb\x90\xde\x54\xce\x4d\x63\x49\x68\x16\x63\xda\x81\xb4\x9c\x1b\x35\x7d\x2b\xdd\x8a\x6c\x3f\x2d\x9a\x21\x9a\xaa\x37\xf5\x31\x63\x2b\x5e\x6f\x8a\x9f\xf5\x32\x06\x3f\x95\x4a\xce\x0d\x9b\x9f\x22\x53\x6f\x06\xc3\xa7\xea\xe9\x47\x02\xce\xcc\x4a\x26\xf9\x7d\xee\x9b\x73\x48\xba\xf4\x81\x3c\x6f\x99\xb4\x77\xa1\x62\xc1\x94\xd0\x3b\xd1\xba\xa8\x43\x48\x1c\x98\x5e\xda\x4d\xf0\xef\x18\x5e\xa2\x11\xac\xf9\x8d\xcb\xc7\x09\xe1\xbc\xbc\x65\x67\x42\x03\x3b\x6e\x39\x21\x69\x4f\x41\xfc\x72\x65\x92\x19\x9d\xb6\x3c\x94\xb4\x9d\x5e\xbd\xfc\x3d\xb9\x9c\x30\xb0\xa2\x91\x32\x8d\xf9\xb1\xa2\x9d\xa6\x8a\x50\x5d\x99\x25\x2e\xc3\x62\x56\x4b\xd2\xff\x00\x1e\x2d\x8b\xe2\x7c\xbf\xd5\xaf\xd8\xe2\x54\x37\x9d\x57\x81\x71\xef\x56\xdc\xdf\x85\xc5\xe5\xcf\x78\xbe\x47\xc7\xd9\x8f\x98\x7d\x88\x8e\x93\xee\xd1\x59\x33\xc0\xfe\x15\x9a\xac\x1f\xc2\xae\xd7\xbb\xad\x23\xe2\x4e\x56\x86\xaf\x6f\xc7\xdd\x67\x65\x6e\xe8\xc5\xc5\xe4\x0a\x37\x0a\xe2\xe6\xc9\x1f\x37\xf7\xe2\xf2\xd2\x64\x36\x9d\xe3\xa1\x09\x2f\x36\xc7\x12\xca\x62\xed\x3e\xfa\xe2\x77\xc2\x83\x3e\x5b\x25\x5d\x02\xff\x5e\x83\xc5\x1a\xfc\xbc\xbe\xce\x8c\x95\xff\xbc\x6f\x43\x18\xb3\xf2\xe1\xc0\x66\x7b\x4c\xee\x82\xe8\xc7\xd5\x98\xb7\xe3\x6b\x9f\x94\x90\x9f\xfb\x59\x9f\xd5\x91\x8d\xed\x63\xdb\x6a\xc8\x12\xbe\xc6\xf6\x1f\x64\x0d\x2f\xfc\x4b\x35\x52\xc8\xee\xff\x6a\x12\x73\xbc\x50\xfe\xeb\x5c\x8c\x5f\xb6\xcf\x37\x58\xec\xfe\x8c\xea\xef\x67\x62\xeb\x92\xf7\xec\x28\xa2\x2a\xe3\x74\x7e\x6c\x63\xa4\xa2\x11\x7f\xe3\xb0\x86\xd0\xdf\x9f\xc9\x11\xc5\x7f\xd2\xb7\xb1\x11\x9d\x5f\xe3\xbe\xc4\x47\xd4\x6d\x30\xbf\xe2\x22\x20\xcb\xb9\xdf\xe2\x22\x54\xa7\x49\xdf\xfb\xc3\xe9\xc3\x46\x3f\x94\xc2\x6f\x74\x07\xfc\x54\x0a\x17\x6d\xd9\xf9\x25\x1f\xf6\xab\x1e\xf9\xeb\x47\xd8\xf7\xaa\x3d\xbf\x3b\xc2\xf7\x96\xc0\xff\x00\xc3\xdd\x99\xd3\x7f\xa5\xc2\xfb\xa8\x77\xfe\x36\x44\xbc\x24\xe2\xfe\x51\x22\x92\xf0\x83\xff\xfe\x45\x7c\x42\x8d\xfe\xfb\xf7\x1f\x62\x8a\x88\x38\x83\x82\xc0\xff\xd3\x9b\xf9\xbf\xdb\xff\x1f\x7c\xa0\x3b\x22\x22\xbb\x1e\xfe\x5f\xba\xbb\x45\x44\xfe\xfd\xfb\x7f\xcb\xff\xcd\xf9\xb9\xab\x94\xf7\xef\xef\xdb\x17\xff\xa7\xbd\xb3\xf8\xfc\xbf\x7f\x46\xef\xff\x6b\x8f\x88\xfc\xcf\xfc\x2f\xdf\xe7\xde\xff\x3c\xa6\xa6\x22\xbb\xc8\xbe\xff\x23\x1f\xb2\xd3\x15\x11\xd9\x7d\xf5\xdf\xbf\xd1\xc3\xff\xcd\x1b\xfa\xbf\x7a\x09\x69\xff\xd5\x3b\x18\x20\x22\xb2\x5b\xfb\x7f\xdf\x5b\xf2\xfc\x1f\xf9\xf0\xb6\x9e\x88\xc8\xae\xd9\xff\xd9\xdb\xbd\x7b\xf7\xff\xcd\x2b\xfa\x5f\x47\x89\x72\x22\xba\x92\xef\x94\x5a\x15\x23\x36\x1e\x7b\xab\xf5\x70\x6f\xa6\x3f\xf5\xee\xd7\x3d\xf8\xe4\xc7\xaf\x20\x3c\xe3\x81\xdb\x5b\x30\x29\xaf\x6f\xc3\xff\xfe\x0d\x5e\xfc\x6f\x7f\xed\x76\x73\x13\x11\xf9\xe4\x2c\x22\x72\xec\xa5\x88\x88\x28\x5e\x44\xe4\xf0\x09\x11\x91\x3d\x37\xfe\x33\xff\x5f\xf7\x7c\x9f\x3e\xf9\xff\xbd\xc3\x55\x52\x93\xde\x5c\x00\x94\x25\x51\xad\xb2\xfb\xe5\xbc\x29\xc7\x69\x12\x0a\xd0\x2c\x6a\x46\x9e\xb2\x6b\xfa\x64\x32\x5f\xe9\x6e\xa6\x6e\x82\xbe\xca\x97\xf4\x32\x0c\x46\xa5\x8e\x14\x8e\x3a\xa3\x06\x88\x0f\x04\x42\xd5\xde\xc5\x15\xb8\x65\xab\x55\xc4\xd9\xba\x24\xaa\x45\xc4\x9d\x72\x82\xc8\x6d\xc6\x72\x74\x5a\xe4\x8f\xa1\xda\x55\x91\xf2\x29\x68\x39\xa5\x62\x05\x59\xb4\x9f\xc2\x0d\x39\xc7\x58\x84\xd4\xe0\xf9\x0e\xda\x8b\x2a\x9e\x04\x84\x12\x9f\xf7\x4b\x4e\x34\xeb\x14\xd5\x4a\xfe\x74\x86\x61\xe6\x9a\xe2\x37\x12\x39\xc5\x5b\x99\x90\x26\x95\x40\x57\x52\x27\x0a\xd1\x18\xf5\xe5\x18\x17\x90\x84\x3a\x09\xc3\x0d\x2a\x52\xed\xc5\x4e\xb9\xdc\x56\x1b\xc4\x8c\x39\x8d\xa9\x5d\x43\xc7\xd9\xec\xc8\xb7\x84\xbb\xaa\x7d\x50\x28\x8d\x18\x51\x91\x56\x38\x11\xf3\x5d\x41\x57\x61\x36\x36\x45\x76\x49\x31\x0b\x25\x25\x3d\x7e\xae\x94\x72\xac\x0a\x7a\xf6\x4f\x66\x0b\xe7\xb4\xc4\xb5\xf4\x75\x46\x8d\x5c\x15\xd1\x35\xc3\x45\xfe\x67\xca\x6a\x6a\xb7\xf2\xd9\xa4\xdf\xb8\x49\x45\x7d\x44\x4b\x08\x50\xb5\x15\xf5\x3c\xe4\x88\xfa\xb9\x68\x67\x6f\xaa\xfa\x62\xf4\xbc\xf3\x55\x75\xe9\x18\x53\xbb\x53\x8a\x2c\xf8\xc8\xeb\xa3\x8a\x94\x10\x37\xd5\x6a\xc5\x8e\x30\x19\x25\x6d\x25\x62\xc4\xac\x3c\x5c\xc9\x05\x59\x27\xdd\xa6\x2c\x1f\x03\x92\xec\x38\xb1\x90\xd5\xd6\x76\xf7\xb4\x02\xb1\xa5\xc2\xe1\xdc\xae\xd4\xe4\xa2\xfb\x12\x8e\xf8\x9c\xcc\x6c\xe9\xf0\x84\x8e\xe4\x78\xd9\x17\x91\xba\xf0\x35\xc5\x2f\x61\x7b\x41\x10\x55\xcb\x50\x51\x5f\x29\x75\x0d\x48\x90\xf3\x11\x75\x27\x00\xcc\xd0\x5f\xed\x1f\x18\xa2\x77\x4d\xf9\x96\x2f\xed\x82\x9b\xca\x3a\xd0\x46\xa5\x4b\xf9\x5b\xb0\x96\xc2\x82\xca\x93\xd0\x9f\xb2\xbd\xaa\x87\x22\xde\x4b\x35\xa9\xfc\x8c\x8e\x15\xf7\x3f\x7a\x23\xb9\xb3\x0d\x78\x52\x1f\x7b\x85\xcd\x3d\x15\x89\xb2\x66\xb8\x9d\x15\x8f\xae\x23\xde\x97\x4c\x80\xed\x43\xde\x95\xbe\x0b\xc0\x83\x5c\x14\x08\x80\x53\x7e\x47\x55\x49\x7e\xc3\xce\x21\xea\x6f\x3c\xfe\x19\x09\xd4\x95\x7d\x4f\xe9\x77\xab\x6c\xb9\x4d\xde\xe6\x28\xdb\xb8\x9d\x50\x2e\x54\xd5\xf7\x22\x29\xd4\xab\x75\x04\xbd\x90\x07\xa9\x55\x80\xaf\xca\xe8\xa9\xef\x82\xcd\x49\xa6\x99\xb7\x63\xe3\xcf\x3e\x3f\x74\x17\x0d\xed\xb0\x3d\x7c\x16\x55\xd7\x08\x3a\xc1\x0c\xc5\xd2\x58\x67\xa2\x81\xdf\xe3\xf5\xc4\xf1\xfe\xcf\x23\x11\x12\x25\xee\x6b\x81\xd2\x72\x4b\x2e\xfb\x9c\xa7\x55\x45\x1d\xc7\x2d\xc3\xd4\x4e\xd8\xad\xbf\xa9\x50\xcb\xb5\x20\xde\xfd\xa1\xa6\x6f\x21\xa2\x56\xa8\xe6\x6a\x7b\x48\xb1\x4d\x15\xe7\xb4\x2a\xf5\x47\xfd\xad\x87\x87\xe4\x97\xe7\xc9\x41\xfb\xc4\xb9\x16\x9d\xe1\x1d\x62\xfa\x9e\x4f\xe2\xad\xc5\x79\x07\xf6\xc2\x59\x9d\xb4\xfd\xa6\xf0\x1d\x3e\xfd\x58\xb3\xdf\x2f\xb2\xc8\x69\x05\x4f\x16\x0e\x7c\x8e\xe6\x30\x06\x9d\x3e\x07\xb3\x2c\xf2\xc2\xcb\x5e\x31\xa9\xb2\xbe\xa1\x7c\xd6\xb0\xe8\xad\x84\x5a\xb3\xde\xea\xe3\x08\x8d\x83\xaf\x7b\x2e\xce\x5d\x40\xea\x0b\x55\xbb\x2f\x9a\x1a\x8b\x48\x3b\xde\xfb\x67\xb5\x72\xde\xe9\xf5\x94\xbb\xd5\x79\x9a\xe5\xe3\xa0\x9b\x62\x79\x2e\xea\xa1\xe2\xe2\x7b\x02\x4e\xc5\xce\x8a\x9f\xd8\x7d\xd1\xc7\xac\xe7\xee\x2e\x2f\x2f\x54\xb3\xcb\xa1\x35\xdb\xfb\x64\xc2\xe1\x6c\xf3\x70\x94\xd8\x89\xcb\x86\x10\xa0\xa6\xe8\xcd\x57\x97\x1d\xe2\x64\x8e\x3e\x9b\x37\xce\x56\x82\x69\x41\xb4\xfd\xd4\x51\x8f\x2e\xde\xda\x7f\x71\xe6\xf1\xa6\x86\xe1\xcd\x57\xcf\x6f\x28\x9a\x3c\xee\xd0\xe3\x4b\xfd\x78\x53\x67\x11\x22\x7e\xd8\x2c\xdc\x71\xf6\x5c\xab\x33\xd0\xef\x99\xd8\xef\x40\x47\xc8\x2b\xf1\x91\xb0\xb9\xe8\x65\x89\x43\x47\x6d\xad\x5f\xf4\x24\xed\x19\xb2\x6c\x6b\xf1\xdc\x8b\xd6\xbb\x4f\x5d\xdd\x2f\x78\x45\x44\x47\x1c\x45\x68\x55\xfb\x03\xce\x3d\xbe\xa7\x61\xfb\x57\x72\xf3\xea\x8a\x8e\x8f\x62\xd2\x65\xa9\xfb\x53\x6a\xdf\xfe\x73\xef\xb8\xdc\xba\xa6\x7e\xe6\x69\xd4\xe3\x2a\xc5\x61\xfd\x0b\xaf\x5f\xcb\x9a\x5a\xa4\x9a\xa8\x49\x9d\x70\x02\xd8\x0e\x8a\xc5\xf8\xe5\x79\x86\x88\x0f\x40\xbb\x40\x4c\x49\xe3\x58\x72\xc4\x2e\xa9\x3b\x1a\xee\x57\x4f\xf5\xef\x91\x90\xbf\xf1\xba\x2d\x60\xef\xe3\x47\xa0\x5c\x97\x83\x7a\xb7\x7f\xa2\x2b\xcf\x0d\x5d\x1d\x07\x3c\x91\xfb\x71\x51\xc3\x4e\x57\x4d\xa8\x9a\xad\x9b\x73\x4d\x51\x79\xee\x51\xc6\x5d\x73\xa5\xcc\xcb\x81\xda\x84\x8b\x96\xea\x95\x6f\xbd\x6e\xf5\x2b\x4d\x59\x51\x34\x6f\xcb\xfb\xb9\xcc\xbf\xb9\x29\x73\xc9\x37\xde\xcc\x59\x42\x03\xe2\xec\xe4\x26\xf9\x16\x93\x13\x14\x26\x23\x9f\xf8\x27\xa4\x54\x26\x43\x23\xec\xaa\x48\xff\x21\x8d\x67\x57\x3e\xf5\xcd\x9d\x17\x55\xff\xc8\xbe\x25\x06\x52\x8d\x4e\xd8\x56\xdc\x54\xfe\x15\x7c\xf9\x92\x94\xe2\x7e\xc7\xd1\xdb\x0d\xd2\x3f\xde\xda\x3c\xbe\x29\xfd\x42\x93\xfb\xfc\x87\x94\xc8\x35\x23\xc3\x0a\x15\x3b\xb5\x12\x6b\xda\x05\x09\x65\xa2\x0b\xfd\xe6\x8c\x7c\xb2\x7f\x9e\x96\x92\x4c\x29\xf8\x83\x8e\x97\xe4\x79\xe4\x37\xf3\x9f\x52\xc1\x84\xbf\xae\x67\x64\x47\x53\x67\x02\x1c\x64\x6d\x35\x52\xae\x7c\xea\x3f\xa1\x11\x70\x65\xb0\x6f\x5d\x96\xa0\xb4\x51\xff\x50\x61\x4e\x86\x9d\x71\xf5\x66\x8c\x0c\x23\x4c\xf7\xe9\x11\xd9\x20\x9f\x6f\xba\x26\xb2\xb7\x6c\x0f\x19\x65\x48\x75\xea\xcb\x9b\xa7\x48\xe0\x1e\x66\xd8\x3d\x97\x16\xbf\xf4\xc3\xd5\x54\xf1\xb8\xd2\x2f\xff\x69\xe5\x62\x79\x7a\x70\xdc\x15\x90\xf4\xb7\x98\x6b\xcf\xf6\x4b\x46\xe3\xc5\x5e\x15\x4a\x4b\xa7\xbe\x37\xd9\x91\xc9\xa6\xbe\x71\x44\xcb\xae\x69\x14\x5e\x59\xe8\x3f\xa7\x91\x75\xa5\xbc\xef\xa7\xea\x59\xb9\x3c\x21\xfd\xe9\xba\xe4\x22\xe3\xac\x41\xa4\xcc\x18\xf6\x8f\x75\x88\xdc\x1d\x58\xb2\x83\xb5\xac\xd0\x73\xaf\x9b\xb8\x94\x82\x95\xb7\x47\x8b\x18\xf9\xd5\x86\xdf\x47\x89\xf9\x7b\x7b\x01\xc5\x32\x3f\xd5\x9a\x61\x43\x72\x61\x0a\x7f\x11\x7f\xe4\xbf\xcb\xed\xc2\xea\x5c\xa8\x14\x4b\x4c\x31\xd6\x2c\x97\x70\xcf\xd0\xd6\x35\x92\xfe\xce\x78\x6f\x7a\x41\xc6\x41\x83\x7f\x65\xa0\x5f\x4a\xa3\xe3\x4a\x4a\xff\x7e\x3d\xc3\x33\xb6\x42\x96\x3d\x48\xd2\xa8\x60\xd8\x2f\x52\xe6\x69\xba\x51\x90\xbb\xec\x50\xcc\x6f\xd0\x51\x99\xc0\x10\x26\xe4\x82\xc4\xa0\x3b\x35\xf4\xa6\xd8\x3b\x33\xbb\x08\x27\xf1\xc7\x2f\xf6\x44\xfb\x49\x2c\xdd\xa1\xc4\x6e\xca\x44\x28\x4f\x27\x02\xe5\x22\x14\x7e\xa5\x35\xcb\x9f\x94\x1d\xa2\xed\x55\x68\x96\x09\xcc\x23\x69\xbd\x93\x94\x2d\x7a\xab\xd3\x23\x05\xbc\x18\x7c\x79\xb1\x2f\xe4\x62\xfa\x65\x52\x9f\x67\x70\xc7\x39\x93\x0e\x4b\xc4\xf0\x79\xf7\x46\x5d\xe4\xba\x64\x20\x73\x2f\x2a\x5b\x6a\x98\x74\x02\xbb\x28\x25\x85\x92\xc3\x07\x48\x64\x82\x3f\x12\xd2\x24\x87\x9d\xc7\x52\x9c\x24\x43\x4d\x5c\xd3\x52\x24\x41\xda\x7d\x19\x3b\x52\xf9\xb7\x7e\xa5\x37\xcb\x6a\x29\x5f\xa0\x43\x65\x9a\xe4\x89\xac\xbb\xb2\x53\xb2\xd6\x4d\xe5\x4a\x9f\xe4\xe7\x04\x55\xaa\x5e\x8a\xd2\x97\xf8\xb7\xd7\x3b\x64\x23\xb5\xa4\x1a\x06\x0e\xe3\x15\x25\xd3\xbb\x7e\xa6\xf7\x4a\xc4\xb6\x5c\x4d\xbf\x28\x15\x57\x7e\x84\x32\x2e\x1d\x5d\xe8\x4f\x5b\x97\x3e\x98\x6e\x41\x11\x4a\xed\x89\xca\x22\x47\x48\x41\xbc\x93\xa9\x63\xd2\x26\xd6\x04\xfa\x37\xa9\x2b\x3a\x6b\xf4\x3f\x92\xf1\x0f\x52\x73\x37\x24\x2f\x29\xf7\xd5\x0a\x24\x55\xe5\x9b\x04\xca\x0a\x32\x8a\x3f\x9a\x47\x94\x6f\x29\x55\xb6\x2c\xa9\x5e\x50\xbe\x8c\x3a\x23\x5b\x39\xb4\x9a\x66\x2f\xcb\xec\x1f\xa1\x20\xa5\x4d\xba\x4b\xe8\xdd\x92\x56\x6d\xef\xd9\x25\x52\xf5\x42\x68\x9d\x8c\xb4\x22\x5f\x8b\x6d\x20\x73\x9a\x31\x56\xa1\x27\x7d\x2c\xf5\x50\x7d\xad\xd4\xee\xc8\xcf\x25\x4b\xd2\x92\x2e\xc6\x25\xa2\x52\x8f\x8c\x6d\x59\x1a\x12\xf5\x4f\x48\x9c\xcf\x67\x3e\x5d\x51\x68\x8e\x93\xf5\x50\xb9\xd2\xf2\x49\xf1\xb8\x8a\xb3\xb0\x5b\xd9\x59\x25\xa6\xd5\x49\xe5\x9f\x0a\x55\x92\x9b\x63\x5c\x84\x92\x7d\x4b\xdb\x64\xa4\xc9\xa9\x51\x19\xf4\x01\x85\x27\x94\x8b\x59\x8f\x95\x5f\x64\xde\x49\x3d\xaf\xa4\x94\x15\x81\x87\xa9\x8c\x66\x74\x63\x33\x54\xb2\xd2\xd3\xd0\x7b\xd5\x2e\x27\x58\x82\xde\xaa\x4d\xe3\x9e\xbb\xdb\xa9\x31\xe2\xb6\x5c\x8f\xa9\xb9\xc7\xa5\x3b\xb1\xe5\x3e\xa0\x66\xde\x3c\x91\xfb\x89\x1e\x56\xdb\x2d\x8f\xc1\xc8\x2a\x7d\x94\xc5\xa1\x7e\xca\xde\x91\x91\x4d\x18\x96\x68\x16\x43\x67\x4b\x70\x5b\x25\x42\x68\xe6\x85\x00\xd9\x16\x72\x35\xfd\x91\xdc\x40\xe6\x77\x72\xa9\x62\x5f\x86\x7c\xea\x86\x32\x90\xe8\x83\x5f\x53\x92\x20\x4d\x62\x32\x54\xcf\xa6\xfe\x8e\xb9\xa4\x7e\x35\x4e\x11\xa0\xaf\xda\x12\xe7\xea\x42\x55\x6b\xc6\xbe\x70\x56\x51\xfd\x88\x66\x5a\x33\xe5\x3e\xc4\x9c\x78\xf9\x45\xbe\x08\x49\x52\x2e\x56\x38\x16\xfb\x59\xc1\x4b\xa1\x16\xe5\x29\x9b\xa5\x88\x45\xad\x49\x07\x9c\x8f\xa7\x49\x71\xbb\xcf\xcd\x52\x24\x2b\xaa\xc4\x6b\x33\x39\x79\x26\x72\x9e\xe9\xc7\xb2\x4c\xe5\x05\x69\x21\xc4\x70\xa5\x5f\x29\x6f\x12\x2e\x2b\x4a\x22\x4f\x42\x3e\xa9\x56\xa2\x36\x42\xde\xab\x55\xc4\xce\xfa\x93\xd5\x5c\x63\x4f\x3a\xfb\xa8\xfd\x89\xfd\x62\x1f\xa1\x00\x0e\x1f\x79\x85\x53\x58\x83\x2d\xa8\xf6\x2b\xd2\xc3\x7a\x95\xb4\x14\x3f\x23\x35\xe5\x76\x2b\xb9\xc4\x40\xa4\x75\x94\x6f\xc4\x5e\x95\xd4\x38\x79\x9b\xea\xd0\x51\x7c\xfa\x5e\x86\x56\xf5\xc1\xb3\x93\x44\x01\xeb\xab\x84\x08\x21\x93\xbc\x28\x0d\x25\xec\x4b\xcd\x96\xf5\x88\xd1\x44\x84\x2b\x4f\x87\xad\x87\x04\xab\x9a\xc2\xfd\xfd\x44\xd5\x95\x61\xc9\x2e\x5f\xd4\x9b\x82\x37\xcc\x8a\xd4\xd0\xc1\xeb\xba\x6c\x25\xff\x80\xd6\x4b\x37\x54\x16\x41\xcb\xaa\x22\xca\xf9\xd0\x28\x05\x25\x15\x37\x78\x8c\xec\x2b\x95\xb0\x68\x35\x89\x24\x55\x4d\xa4\xaa\x18\xee\x68\x65\xda\x7c\xe7\xf9\x13\xb5\xa9\x0f\x9b\x5f\x9c\xd2\xc2\x50\xf2\x96\xcf\x4c\xc5\xa2\xd2\xa7\x25\xf7\xc0\xff\xa2\x0e\xca\xdc\x0d\x79\x0c\x89\x52\xd0\x00\xda\xfb\x47\xa8\x66\x06\x98\xba\x84\xaa\x0d\xfa\xe0\xcc\xaa\xd4\x8f\xfb\x8e\xe8\xaf\xaa\x94\xbb\x7f\xbc\x0d\x55\x5a\x76\xcf\x52\x06\xab\xd2\x7c\xfe\x2a\xb0\xd5\xc5\x00\xdb\x72\x2b\x6a\x5b\x90\x07\x52\xbd\xea\xad\xa1\xb5\x12\x71\x16\xb7\xe2\x31\x67\x1f\x1d\x6e\xc4\x3d\xea\xb6\x3f\xbc\x19\x97\xd3\xdc\x7e\xe4\x64\x8c\x4f\xc9\xd2\x69\xb3\x50\x3f\x62\x8e\x38\x24\xa8\x07\x69\x2a\xe1\xeb\xbd\x04\x32\x96\xbb\xec\xfe\xcc\xdd\x57\x65\xd9\x19\x6d\xc5\x54\xed\x75\xbc\xaf\xd7\xae\x86\xb6\xb9\xfd\xe0\x9b\xea\x92\xe5\x80\x5a\xb5\xda\x2d\x3b\x29\x05\x13\x35\xa6\x4b\xae\xd4\xbd\xeb\xda\x3e\x7f\x24\x74\x5e\xd6\x80\x4e\x89\xdf\xb2\xd2\x8b\x68\x12\xbb\xef\xdb\x9b\x74\x5b\x02\x71\x28\x2e\x72\xb4\x27\xf7\x80\x54\x64\xbc\x50\xee\xd8\xf9\xe0\xfb\x85\xd5\x27\x42\x02\x4e\xa5\x1c\x3a\xc7\x74\x75\x8c\x30\x3c\x8f\xb4\x7d\xea\x67\x2a\xe3\x6a\x3e\x6b\x47\x54\x96\x35\xd1\x37\xf8\xaa\x0a\x32\x48\xd6\xea\x56\x2f\xd0\xed\xb9\xf2\xf4\x02\xc4\xe0\x92\x32\xfd\xba\x9c\xa9\xa5\x24\x5f\x53\xcf\x6e\xe7\x1c\xe4\x4d\xa2\x67\xd1\x79\x86\xf5\x11\xd0\x55\xb1\x69\x77\xe3\x88\x64\xb1\x2e\xc0\x26\x76\x4e\x9c\xb8\x4f\xda\x7f\xa7\xbf\x75\xd7\x6d\xbf\xcd\x36\x8b\x03\xba\xde\xfd\xec\xa9\x23\x31\x76\x25\x89\xde\xc7\xf3\xcc\x0f\x40\x1f\x9d\x06\xeb\x94\xbb\xca\x4b\xd9\xbd\x7c\x68\xda\xac\xe8\xf9\x74\xe2\x45\x9f\x3a\x4a\x6b\xf0\xee\xe1\x4b\x25\x9a\xf1\x6a\xe7\x6f\x8f\xbd\x0c\x96\x1f\x78\xc2\x35\x40\x4a\x39\xea\x15\x59\xb5\x9f\xdf\xb2\xf2\x72\x0b\x17\x73\x72\xbf\x1d\xb8\x28\x7e\x03\x18\x15\x3a\x24\xbe\x1a\x0e\x8a\x11\x17\x5f\x3b\x9e\xe2\xa0\x34\x70\x6a\x8f\x8f\x5d\x7a\xc7\x95\xbd\xe6\x86\x8f\x72\xf3\xf7\xbb\xe8\xd2\xe2\xf9\x87\x20\xcf\x1f\x02\xb6\xa5\x3c\x34\xc7\x5c\x58\x2a\x47\x1f\xe4\x9a\xfc\xb9\x2c\x79\xf7\xf3\xf3\xda\x9b\xc1\xb7\xbc\x6e\xa1\xef\x07\xdf\x79\xaa\x1a\xf3\x5c\xea\xc9\x6d\x85\x61\x83\x5b\x6f\xb6\x65\x32\xac\x66\xcd\x86\x24\xbe\xba\x66\x3b\xca\x89\x25\x04\xa5\xf9\x56\x4b\x3c\x08\x17\x42\x2b\x25\xe9\xe8\xc1\xc8\x51\x49\x96\x06\xf0\xaa\x64\xff\xf1\x63\x0d\x3a\xc6\x9d\x27\xf7\x22\x9f\x79\x95\x0c\xef\x3e\x7c\xc7\x07\xd7\x75\x36\xf3\xf6\x0f\x50\xb5\x4a\xe0\x0d\x8e\xeb\xca\x75\xe4\xb5\x33\xa6\xc4\xfb\x7f\xaf\x84\xbf\xe8\x7a\x52\x75\x39\xec\xce\xc8\x4b\xd4\xe5\x14\xb5\xdb\x46\x79\xf7\xe4\x15\x7b\x6c\xb6\x9e\xbd\x94\x7b\xe9\x96\xa7\xaf\x29\x7d\xd8\x9f\x6d\x75\x5a\xe2\x55\xe8\x3f\x57\xbc\x64\x1a\x36\x1b\x00\x97\xb9\x92\x4c\x83\x15\xc9\x64\x6b\x60\xaf\x1e\xe9\x3f\xa3\x61\x73\x75\x7f\xdf\xf7\x93\x35\x57\x45\x79\x17\x4e\x2b\xa8\xef\x24\x1f\x54\x0e\x55\x07\xc0\xa4\x6e\xed\x55\x63\x7a\x9e\xd6\x9a\x57\x65\x5b\xba\xbe\x32\x50\xb9\xac\x03\xd7\xff\xa5\x2c\x7f\xff\x9a\x71\x99\x92\x96\xfa\x61\xdb\xac\x8b\x97\x94\x1a\xdc\x5f\xdf\x5e\x96\xa3\x06\xd4\x3e\xb5\x94\x91\x84\xee\xd2\xd7\x95\xf8\x8a\xde\x63\x5d\x2b\x7d\x23\x05\xec\x11\x2e\x5b\x99\x41\x01\x5e\x95\xbd\xa0\x41\xbd\xf2\xab\x5f\x52\x03\x7d\x65\xb5\x7f\x8f\x2c\x5e\xd9\xb1\xe9\xef\xff\x41\x82\x3d\xbf\xe5\xfd\x38\x6e\x1f\x9f\xdd\xb6\xdc\x85\xd7\x65\x2b\x73\xb5\x5a\xb6\x6d\xdb\xb6\x6d\xdb\xb6\xb5\x6c\xbb\x65\xad\x5a\x5b\x33\xdf\x33\xee\xe3\xfe\x7e\x7e\x39\xff\x85\xc7\x71\x3e\xb1\x11\xd0\xf3\x7c\x05\xfe\x64\xa0\x3a\x4c\x50\x7a\x1d\x36\xef\x60\xa5\x62\x08\x2b\x30\xc6\x69\x9f\x43\x5f\xaa\xf0\xea\x6f\x82\x1d\x45\x5e\x9a\x09\x40\x7d\xd8\xb3\x6c\x59\x50\x82\x98\x20\x37\x3e\x3c\x16\x71\xee\x2f\xc2\xb9\x0f\xcd\x89\x0d\x92\x0c\x84\x1c\x65\x96\xa8\xb6\xc2\xbc\x72\x9e\xeb\x3c\x85\xd5\x97\x39\x5b\x6e\xc3\x27\xc8\x3d\xec\xaf\x57\x91\xe4\x2e\xf6\xe9\xd5\xfb\x14\x5b\x40\x77\x5a\x44\x4a\x1c\x12\x58\xbb\xa4\xf1\x0c\x16\x9e\x9a\x6d\x2a\x88\xfc\xe2\x7f\xdf\x9a\x00\xdf\x77\x38\xb4\xcb\x87\x48\x18\xfa\x3a\x4a\xb0\x69\xca\x7b\xb9\x33\x80\x2b\x1f\x88\x7a\xc7\x40\xbf\x91\x8d\x03\x17\x11\x12\x68\x20\x5a\x10\x25\x01\x37\x4b\x51\xa5\xf9\xb3\x9d\x67\x2f\x8b\x4f\x82\x4b\x4b\x9e\xaa\x0e\x01\x9f\xea\xa3\xb5\x7c\x80\x04\xf2\x12\xfb\xfe\x2a\x9e\x12\x41\x9b\x5b\xf1\xd4\xe8\x63\x54\x5b\xa8\xb1\xcb\x60\xfe\xdc\xf3\xcc\xed\x10\x06\x29\xf8\xe8\x23\x81\x98\x88\x65\x0b\xf8\x06\xcf\xf3\x4d\x0d\x78\x03\xaa\xb4\xcd\x0d\x75\x04\xc1\x74\x6a\xc3\x1f\x83\x8e\x65\xfe\xc6\x92\xc1\x35\x02\x1b\x09\x93\x40\x2d\x3e\x35\xeb\x02\x42\x08\xd5\x53\x20\x87\x64\x83\xb3\x57\xe5\x62\xff\x83\x99\xd7\x7f\x11\x1f\x80\xe0\x9a\x4c\x94\xe1\x50\x55\xd2\x37\x6e\xae\x15\xb8\xd3\x6b\xe8\xe4\xe6\xa3\xa0\x20\x50\xfe\x12\x43\x1c\x3f\xeb\xf3\xf1\xfc\x58\x24\x24\xaf\x5e\x31\x51\x0b\x10\xcc\xdf\xce\x08\x07\xf8\x93\x5d\xd3\x8f\xc1\xef\x7c\x82\xb3\x15\xa0\x89\x56\xaf\xb3\xfb\x20\x69\x9a\x5b\xf9\x0b\x90\x2c\xa9\xf4\x12\x2b\xc8\x07\x3e\x78\xc9\x09\x4c\x08\xcb\x58\xfb\x01\x86\x44\x7c\x19\x5e\x44\xd1\x23\xb6\xc6\xbe\xe1\xa0\xa8\xa1\x89\x16\x82\x3a\x7a\x26\xe0\x01\x7c\x63\x3b\x28\xaa\x02\x36\xf5\x84\x3e\xcb\x09\x58\x5f\xb6\x2d\x11\x01\xef\xcd\x88\xd4\x7b\x40\x2f\x8c\xc5\x94\xb7\x00\x7b\x8d\x0f\xab\xe5\x01\xd5\x82\xc4\xda\x43\xc8\xd7\xd8\xbc\xaa\x7e\x68\x89\x4b\x64\x55\x38\xa0\x69\xcc\x5f\x59\x08\x6d\x57\x74\x6b\x80\x82\x43\x45\x0d\x9b\x2f\xb2\x05\xe2\x3b\x46\x17\x61\x44\xf4\xd1\x84\x2d\x5a\x06\xb3\x3d\xb9\x8c\x83\x60\xcd\xa6\x9a\xf1\x67\xd8\xbe\xa4\x2b\x48\xb1\xcd\xab\x79\x22\xc8\xab\xeb\x69\x15\x2b\xb0\x95\xe5\xa7\x35\x55\xe0\xf5\x85\xfa\xce\x2e\xe8\xd6\x8c\xff\x68\x3c\xe0\x3f\xfe\x7e\xdc\x09\x16\xd4\xfe\x6b\x1c\x00\x06\x8a\x7e\x8f\x9e\x40\xd9\x23\xd2\x47\x2e\x43\xc9\xae\x62\xad\x93\x50\x1d\xcd\xfb\x2d\x5f\xc0\x13\xe2\x1a\x83\x70\xfa\x3c\x3c\xdf\xe4\x3a\x22\x05\x7f\x7f\xea\x35\xfa\x0b\xfe\xde\x74\x2e\x0e\x86\x67\x98\xa1\xc3\x17\xe1\x59\xa0\xfc\x55\xcf\x9a\x8b\xe0\x8c\x15\xad\x35\x49\xf0\xfd\x72\xa7\xca\x21\xe4\xdf\xd2\x77\x25\x37\xb1\xc8\xa2\xa9\x9c\x7c\x0c\x5d\xf1\x59\xda\x16\xae\xa3\x08\x9c\xb8\x8f\xf3\x2e\x78\x16\x8f\x24\xe8\xa6\x75\xfb\x30\x90\x9e\xc7\xff\xb1\x31\x25\xa4\x24\xd5\x5b\x35\xa0\x96\x93\xd8\x4d\x8e\xd1\xb4\x7c\x0b\x43\x2d\xc4\x69\xc2\x4d\x42\x3a\xac\x38\xbe\x16\xe5\x07\x28\xa7\xce\x03\x0b\xc0\x48\x9a\x28\x58\x1e\x24\x5f\xf9\xbe\x7f\x05\x02\x54\xe8\x35\x5f\x84\xdb\x97\x16\x54\x5a\x20\xa2\x8a\x77\x4b\xfb\xd1\xf9\x85\xcf\x72\x3b\xb1\xaa\x79\x3f\xd2\x9d\x30\x57\x0b\xf0\x09\x27\xb8\xaf\xb9\xe8\x18\x1e\xc2\x58\x52\x82\x27\x89\xf0\x27\x51\xde\xba\x96\xd0\x96\xb0\x6d\x91\x8a\xaf\x8a\xfb\xa5\xef\x87\x68\x88\xe5\x92\x3e\x42\xca\xc5\x96\xe1\x38\x50\x37\xe3\x40\xa8\x24\x44\x4f\x74\x09\xd4\x13\xee\x9b\x74\xc0\xca\xcf\xe6\x50\x41\x1b\x80\xb1\xee\x94\x05\xf5\xda\x80\x54\x8a\xd7\x1b\xd4\x10\xb7\x0a\xfe\x96\xe4\x23\x43\xf3\xf4\xf2\x23\x30\xdb\xd9\x27\xa9\xb3\x78\xdf\xe4\x8a\xc8\x33\x7c\x59\xdc\x86\x3f\x1b\x21\x27\x4e\xd9\x8d\x40\x90\x8b\x1d\xb0\xba\x49\x38\x8a\x53\x37\x2d\x41\x02\x61\xcf\x64\xd9\x50\x94\xe0\x75\x02\x33\x5a\x3d\xcc\x13\x73\x19\x6d\x1a\x1d\x02\x0f\xc1\x58\xc7\x18\x40\xdb\xb0\xb2\xb1\xf7\xc1\xce\xf7\x9d\xca\x73\x16\x6d\x18\x54\x8b\xbe\xf4\xfd\x60\xfe\x51\x60\xde\x4e\x60\xb5\xcb\x79\x53\x9d\x0d\xa0\x32\xff\xe4\x6d\xa1\xf9\x52\xbc\x92\x9b\x51\xef\xa2\x64\x02\x92\xf1\x8e\x61\xed\x1e\xc5\xc4\x1b\xc1\xfc\x36\xc7\xc4\x3a\xff\x52\x3d\x1b\x02\xc9\xcf\x49\xd1\x0d\xc3\xee\x5e\x49\x2d\xc5\x2c\x7a\xc5\x63\xff\x61\x6d\x83\xe8\x90\xd6\xb8\xa4\xd0\xcf\x40\x3e\x6e\x3c\xf2\x18\x54\x84\x1f\x8c\x86\xb1\x7e\xbe\x4b\xcb\xbf\xbf\x78\x72\xef\x5f\xde\xc9\xb4\x3b\x03\x32\xd3\xa2\x4b\x86\x89\x21\xee\x69\x31\x37\xf4\x66\x64\x6f\xfa\x5d\x18\x25\xc8\x26\xc4\x08\x79\xe0\xd3\xe5\x79\x09\x7f\xdb\xeb\xa6\xdd\x3f\x42\x87\x5b\x8f\x11\x0b\x71\xd4\x79\x5f\xe5\x00\xa7\x6b\xef\x20\x50\x89\xe5\xb4\x8b\xc1\xfe\x23\x5c\x71\xd1\x46\x05\x10\xe6\x3c\xb6\x61\x6f\x88\xe6\x01\xce\x10\x1a\xf5\x3c\x2c\x1f\x9c\xad\xff\x23\x55\x98\x59\xf5\xee\x78\x2a\xcb\xd2\x97\xdb\xc5\xa9\x4a\x33\xa8\x5b\x4f\xe3\x1c\x3b\xac\x18\x5f\x87\x5c\x2e\xa4\x07\x65\x78\x97\xc5\xfe\x00\xab\xba\xaa\xf8\xeb\xc2\xef\xd9\xa7\xdb\x3f\xc5\x45\x5b\xa5\x1a\xdd\xc4\x67\x5b\x98\xab\x54\xe2\x07\x8c\x5b\x44\x42\x08\x1c\x86\x3d\xa4\xdf\xf8\x59\x13\x75\xf8\x00\x05\x6f\x1d\x08\x36\xe3\x9b\x71\x69\x06\x81\x95\x06\xfc\xc9\x6c\xf9\x46\xf3\xa1\xb3\x2c\x7f\x9d\x1b\x32\x79\xc0\xb5\x77\xfc\xa3\x2f\xae\x56\xdc\x18\x8c\xe4\x9f\x9d\xbd\x69\x10\xe2\xd4\x13\x77\xb7\xdc\xb3\x2b\xbf\x9a\x29\xc0\xde\x29\xe2\x07\xeb\xb6\x19\xc4\x5d\x0e\xa6\x65\x90\x6e\x5e\x8b\x25\xe9\x2a\x6b\xbc\x21\x60\x35\x4a\x25\xef\x13\x53\x54\xe3\xb9\x84\xc9\x49\x2a\x7b\xf0\xd7\xbc\xf4\x3a\x81\xe0\x3b\x8f\xde\x9a\x3d\x66\x49\x54\xa2\x73\x38\x60\x6d\x30\x06\x7c\x35\xd8\x7e\xdb\xd9\x85\x6b\xb3\x1d\xf9\x69\xa6\x75\x81\xed\x6e\x44\x7a\x80\x37\xc4\x2f\xa6\x7a\x2c\x2f\x62\xae\xf3\xba\xbc\xed\x31\xba\x65\x6f\xb5\x54\xe0\x71\x57\xc9\xf0\x56\xa8\x02\xe4\x54\x93\xe8\x6c\x83\x53\x51\xf5\x36\x19\xa4\xfc\x54\xba\xa7\x3a\xc5\x65\x26\x7f\xfb\xd1\x65\xde\x1d\xd9\x38\x0e\x2e\x41\x17\x39\x3b\x78\x8d\xe4\xa4\x86\x27\xe4\xbe\xaa\xb6\x51\x3c\x4b\xad\x51\x95\xdd\x7f\x6c\x71\xf6\x62\x5e\x0a\x20\x4b\xef\x7b\x21\xac\xa0\xd7\x11\x77\x13\xc8\xe0\x81\xfb\x9f\xac\x58\x36\x1a\x6e\x70\x58\xc5\x2e\xe5\x5c\x5c\x34\xbd\xd6\x17\x71\xfd\x82\xa6\x40\xee\x24\x2b\x8b\x32\x47\xc8\x2d\xcc\x98\xdc\x4b\xa7\x5d\x0e\x46\x29\x3f\x63\x66\xfe\x5e\xf1\xdb\xca\x2f\x1e\xc6\x88\xc6\x8a\x56\x49\x3c\x78\xa4\xc2\x81\x92\xc9\x95\xf0\x45\x6c\xaa\xdb\x2a\x17\x02\x71\x46\x60\xbd\x3c\xd0\x88\xed\x98\x95\x24\x48\xc5\x6b\xc5\x0d\x00\xbb\x87\x5f\x0a\x14\x85\xac\x24\x7a\x47\xe5\x41\xd9\xc8\xa1\x1c\xd8\x55\x30\xbd\x99\xda\xeb\x15\xa3\xcb\xa6\x8a\xe8\xc1\xc7\x77\xc5\x1f\xfd\xc9\xf9\x84\xbe\xfa\x88\x12\x9a\xcb\x45\x78\x08\x72\xe6\x17\x8e\x15\x6a\x33\xe6\x96\x7c\x2b\xd0\xa6\x12\xad\x00\xe3\xef\x16\xc3\xa9\x3a\x0b\xd8\x71\x3c\xd3\x3c\x12\x1a\x43\x39\x18\x7f\x97\xc6\xc1\x6d\x6c\x73\xd5\xb2\x20\xdf\x3d\xe8\x8c\xe4\xc0\x75\xa1\xdb\x76\xe7\xd0\xb8\x64\x6e\x6f\x23\x98\x69\x76\x5f\x70\x18\xac\x80\xb3\x8d\x96\xb6\xe2\x46\xf6\xe2\x00\xad\xde\xbd\x29\xc6\x1b\x31\x34\x0a\xa8\xf2\xbc\x2e\xfd\xc7\xf9\x9b\x7b\x26\xfc\xd7\xa3\x32\xae\x56\xd7\x18\xc5\x76\x4e\x3e\xb3\x6c\x75\x3d\xf6\x76\x8d\x75\x1d\x6d\x9a\xb9\x84\x80\xa1\x3a\xb5\x93\xcb\xc7\xb4\x8c\xfd\x3e\xfa\xaa\x5d\xb6\xa0\x36\xfc\xd0\xa3\x48\x6a\x1e\x9a\x1c\xcc\xaa\x9e\x0a\xf1\x4f\xba\x61\xae\x00\x57\xcb\x5e\x74\x9a\x44\x28\x17\x67\x7a\xbe\x82\xc3\xc8\xcd\x1c\x57\x56\xb1\xe4\xf2\xff\x6f\x19\x32\x0f\xeb\x34\x81\xe2\x16\xc6\x31\xd5\x8e\x4b\x5a\x11\x60\x89\x3d\xaa\x9f\x89\xd7\x7d\xd9\xf5\xb4\x09\x02\x36\xf3\x26\x54\xdc\x45\x5d\xbc\xc5\x0e\xba\x5f\x26\xdd\xc6\x18\x69\xce\x4b\x6f\x5f\x8d\x90\x40\xff\xf0\x50\x22\x06\xc0\x73\x03\xdf\xf0\x82\x21\xbe\x71\x65\x52\xe3\xd0\xfb\x59\x63\x1a\xe7\xb0\x9c\xa2\x75\x13\x0a\x42\xbb\xb6\xdc\xd1\x0b\xa8\x22\x4f\xb0\x7f\x5d\xa5\xfe\x4f\x19\x41\x22\x0b\xcf\x7c\xa0\x9c\x29\x98\xad\xe5\x95\x3e\x03\xb0\x91\xf6\xcb\xfc\x08\xd1\x1f\xbc\x68\xe7\x00\xaf\x71\xfa\xed\x78\x0d\x1a\x69\x44\x75\xed\x04\x8b\x2a\x7e\xf7\xa2\x82\x1d\x85\x2b\xfd\xbb\x01\x4d\x5a\x6d\xc8\x16\x42\x13\x8d\x8f\x65\xc0\x08\xc1\xa4\xd3\x8d\xb9\x55\x41\x5e\x79\x1f\x24\x0f\xc0\xcb\xd5\x06\x1a\xab\x30\x52\xe3\x25\xbd\x1c\xa0\x98\x1c\xc1\x59\xb9\xfc\x82\x52\x40\x3b\x58\x49\xb0\xc8\x05\x5d\x5f\xf3\x71\xbb\xc9\x64\x39\x24\xe4\x1d\x00\x7e\x55\xf6\x2f\xc8\x1c\xba\x96\x12\x18\x62\x0a\xe9\x0f\xf4\x0c\x75\x05\xdd\xb5\xcf\x8a\x78\x0b\x92\xd2\x3b\x8a\x1e\x01\x3f\x90\x9b\x48\xc8\x07\xdb\x0a\x09\xa6\x50\xa0\x27\x44\x50\xce\x07\x04\x1d\xca\xbb\xd4\x0d\x59\x03\xdb\xab\x7f\x42\x8a\x83\xdd\x6d\x32\x94\x91\x84\xb6\x35\xf7\xaa\xe5\x41\x6d\x29\xa9\xb4\xaf\x2b\x69\x5e\xed\xf0\xd8\xed\xcf\xe1\x50\xe8\xe0\xea\x42\x0a\x2b\x9b\xc1\xf4\xbb\x74\x4d\x88\x70\x37\x43\x1e\x03\x2c\xa5\x6a\x32\xf7\x0d\xec\x46\xba\x40\xee\x1b\xc8\xf7\x40\x50\xae\x0a\xf4\xad\xcd\x9d\x7c\x10\x14\xad\xed\x58\x74\x17\x52\x2b\x95\x59\x7a\x06\x49\xe1\xf3\xaf\x98\x01\x0c\xb1\x82\xcd\xb1\x80\x20\x82\x34\x9a\x8b\x7e\x8c\x62\x9c\x10\xc2\x4b\xa3\x8b\x26\x6b\x88\x02\x18\x8f\xd0\x61\x64\xeb\xce\x8b\x04\x38\xe2\xc9\xc6\x4e\xee\x23\xf8\xc9\xda\x8d\xf2\x34\x48\xcf\xfc\x71\xf3\x36\x34\x66\x52\xb2\xc5\x06\x38\xe9\x31\x69\x61\x07\x76\xca\x8f\x5a\x34\xa1\x16\x49\x72\xcd\x96\xd0\x12\xaf\xda\x66\x19\xe8\xb9\x99\x6a\xd3\x0a\x64\x58\xf5\x66\x93\x00\x38\x4c\x8c\xb1\x37\x97\xd1\x16\xef\x3c\x5e\x00\x5f\xc4\xc2\x27\x1b\x31\x6e\xd8\xde\xa9\x69\xfc\x45\xdc\xdd\x69\x5f\x42\x29\x4e\x2a\x8d\x1e\xcd\xbf\xcd\x5e\x00\x46\x59\x6f\xc8\x56\x9b\x23\xac\xd6\x50\x5d\xd7\xa0\x4b\xcb\x0f\x7a\x7e\x01\xdc\xf3\x82\x53\x70\x60\x67\xf2\x78\xf2\x06\xac\xaa\x63\x6f\x62\x1d\xd8\x28\xde\x1e\x4f\x81\x4a\x47\x92\xc6\x04\xa1\x24\x37\xd0\xe8\x19\x58\xd6\xc8\x62\x4c\x8d\xed\x87\x12\x71\x9c\xcc\xb4\xcb\xa1\x3a\xcd\x86\xec\xc5\xbf\x9f\x7e\x86\xd9\xc6\xf7\xcd\x98\xe3\x76\xf0\xc5\x33\x3d\x84\x07\xf8\x44\x68\x6f\x8d\x6f\x6b\x27\xdc\xa3\x2a\xa3\x2e\x0a\x1e\x55\xe9\x5a\xfd\x1a\xd9\x5a\xfe\xae\x8c\x09\xf3\xad\x24\x2d\x4f\x0f\xfd\xa1\x34\x32\xc3\x11\x17\x5d\x5c\x93\xac\x87\xf3\x2e\x5a\x48\xe8\x27\x04\x67\x82\x7c\xb7\x09\x33\x99\xcf\x5c\x93\x09\x9e\xc9\x15\xd6\xc1\xb8\xda\x02\x16\xcb\xab\xe8\xf2\x42\x07\xa3\x00\xa0\x38\xb1\x18\x7f\x1d\x6a\x9e\x7e\x0d\xb9\x06\x5d\x4b\xf7\x07\x7c\x01\x85\x9c\x63\x30\x3f\xf8\x4e\xf5\xf8\xe0\x0e\x64\xb6\xca\xa8\x35\x05\x7e\xb9\x7c\xa2\x7a\x1b\x41\x2a\xa3\xab\x60\x41\x2b\x16\xff\xcd\xdf\xc6\xe2\x0a\x9e\x64\x8a\xa0\xdf\x14\x8e\x24\xb9\xe1\x56\xf2\xb2\x63\x43\x08\x36\xc9\xdd\x5e\x86\x84\x0f\x49\x54\x9b\x27\x84\x9c\xc4\x6a\x4b\x24\x12\x95\xd8\xa3\xb3\x86\xb0\x49\xf0\x91\xba\x80\xe4\x8e\x67\xc0\xf5\xc3\x6b\x62\xb5\xe1\x1b\x30\xfd\x94\x68\xf0\x3d\x78\x47\x6a\x09\xab\x3c\x48\xbe\x4a\x74\xc8\x85\x6d\xa3\xe2\xb4\x9f\x19\x2c\x56\x56\xd8\xdc\x0e\xcf\x2f\x56\x29\x57\x40\x92\x0b\x4a\x0a\x3f\x61\xea\x73\xf7\xd2\xa7\xb0\xd7\xb2\xa1\x89\x56\xf8\x90\x04\x74\xc0\x3c\x49\x2f\xa6\xda\x5d\x8e\xc0\x1f\x77\x68\x35\x4e\x98\x89\x6b\x33\x2d\x40\x9c\x45\x94\xc9\xd6\x21\x1b\x43\x6f\x11\x66\x50\x7a\xd1\x74\x68\x3c\x5a\x38\xa6\x18\x7e\x1d\x63\x19\xeb\x06\xf9\x82\xac\x8b\x9f\x61\x10\xa5\xcf\xa8\xfc\xbc\x42\x62\xe8\x2d\x7d\x3f\x44\x61\x89\x2e\xf6\xec\x9a\x63\x39\xc8\x6f\xab\x17\x84\x3e\xcd\x31\x2b\x8c\x40\xdf\x4a\xeb\x4e\x63\x45\xcb\xc4\x62\x83\x43\x70\xa4\x50\x13\xf7\xa7\x84\x77\x61\x34\x07\x18\x09\x16\xc2\x64\xbc\x8c\x5f\x0c\x60\x55\x0c\x40\x8a\x79\x9d\xf2\x60\x31\xc2\xbe\x6f\xb1\x6f\xb0\xde\x41\xaf\x11\x3b\xb8\xab\x91\xae\x10\x75\x3c\x38\x6a\x96\xcd\x41\x52\x2e\xf5\x25\x7d\x2a\xa3\x76\x21\x6a\x79\xfe\xfe\xa3\xa2\x95\xb9\x3f\x0c\x3a\x39\x73\x8f\xd9\x19\x44\x32\xdd\x9b\xee\x41\x7a\xe2\xb2\x73\x32\x80\xa6\x70\xcb\x28\x25\xa4\x79\x00\xbb\x97\x30\x6e\xd4\x27\xd4\x71\x8b\xd0\xe8\xc9\x6b\x92\x4a\x6c\x76\x8d\x57\x8d\xc1\xdd\x72\x7c\x22\xf4\x1f\x66\xda\xc1\x04\x37\x4c\x88\x70\xcb\x46\x7e\x22\x9a\x7a\x8f\x00\x57\xa8\x27\x81\x43\x50\x3a\xb5\xa5\xc4\x26\xa6\x41\xa3\xd5\x74\x16\x66\x1b\xfa\xdb\xe9\x53\xab\x9b\x77\xaa\x32\xc5\xe7\xdf\xdc\xfa\x97\xe4\xd5\x1b\x47\x2f\x16\x43\xaa\x51\x66\x0e\x0c\x1e\xcf\xb8\x08\x15\xf3\x0c\x0b\x8a\x87\x89\x3b\xd5\x39\xf3\xe2\x6e\xda\x7b\x99\xf7\x11\x9e\x5a\xe7\x6b\xa0\xf0\xe7\xe6\x17\xc5\x72\xb1\x9e\xc6\xaa\x64\x00\x5f\x63\xf4\x83\xf5\x07\x57\x93\xed\x09\x68\x4e\xe2\x97\x7b\x15\x68\x59\x63\x35\x44\x8d\x4d\xdd\x86\x1a\x67\xc4\x7a\xd5\xa5\x36\x4b\x1b\xbc\x7a\x4f\x36\x2e\xe1\x49\xed\x6d\xcd\xd8\xd9\x25\xda\x0d\x4a\xf4\xec\x58\xfb\x3d\x3a\x7f\xe6\xf2\x06\xa6\x28\xd7\x96\xf8\x29\xe8\x9a\xad\x91\x7f\x2a\x0e\x6c\xd1\xea\x10\x42\x39\x34\xf9\x69\x24\xc2\xe1\x69\xa8\xa5\x34\xce\x79\xa6\x87\x7a\x40\xe1\x5e\xd0\x0d\x21\xa2\xf9\xec\x74\x0b\x58\x7e\x4a\x7d\xb4\xbc\xc0\x2a\xac\x09\x75\xe5\x65\x6b\x35\x33\x0e\x70\x63\x3b\x72\x3a\x89\x99\x60\x7b\x16\xf8\x38\x2b\x18\xbc\x7c\x7b\xd1\x67\x64\x7b\xee\x1a\x87\x9f\xc4\x1a\xf3\x35\x26\xbf\xbb\x63\x9d\xb7\x90\x0e\x89\x15\xb2\x4c\xd9\x96\xfc\x09\x7a\x18\x1f\xa3\x75\xdf\x54\x9a\x8d\x1e\xc8\x8e\x8e\x77\x48\x4b\x48\xcf\x48\x48\x4b\x5d\x41\x6e\xfa\xa1\xab\x9a\x85\xc0\x1b\x71\x69\x0d\x1c\x51\x54\x5a\x55\xfb\x0a\x88\xaa\x81\x32\x4d\x66\x11\x35\x55\x72\xfc\xc2\x36\xe5\xb4\xed\x87\x01\xd5\x04\xf4\x46\x3a\x83\xbe\xc5\x5e\x4f\x3b\x81\x72\x32\xbe\xb4\xdd\xd8\xfe\x7e\xc7\xcf\xfe\xfd\xfa\xd2\x45\x0b\xeb\x3f\x13\x62\xf7\xa9\x46\x2d\x15\x0a\xc8\x0f\x3a\x99\x71\x34\x76\x1f\x0d\x49\x1f\x6d\x41\x11\xe5\x68\x1b\xec\x23\x51\x05\x5e\x5d\x4e\x99\x6d\xd9\x75\xd9\x6f\x8a\x86\x0a\x9c\x82\x2a\xaa\xb6\x4a\x0f\x48\x45\x9a\x2f\xd5\xf4\xa1\x6a\x26\xaa\x86\x79\x20\x21\x47\xc0\xb6\x17\x94\xee\x2b\xee\xf9\x18\xc2\x1c\x95\x10\x2a\x06\xf9\x92\xa2\x14\x57\x04\xfd\x4c\x4e\xe2\x60\x5f\xc5\x32\xfb\xea\xec\x6d\xf0\x5f\xbe\xaf\x7e\x32\x3d\x0d\x76\x56\xfe\x54\xa3\x4c\x93\x53\xd0\x4e\x0c\x13\x51\x94\x09\xf0\x49\x96\x79\x28\xe9\x61\xa3\xaf\x72\x53\xbc\x46\xf7\x99\x66\xf5\xa3\x4a\xb9\x3c\x3d\x37\x71\x94\xe0\x96\x91\xbc\x64\x02\x05\x65\xf6\x4d\xae\x15\xf6\xd6\x81\x5e\xb3\x1e\xfc\xcb\x27\xc5\x2c\x13\x92\x12\xcd\xee\xb2\x04\xb4\xa4\x2e\xfb\xa9\xc2\x6c\x72\x4e\x43\x01\x20\x93\x5c\xce\x01\x5f\x25\x93\x93\x38\x68\xab\x58\x66\x88\x28\xd7\xdc\x08\x89\x55\xb4\xb5\xe9\xce\xc3\xda\x87\x40\x02\xa7\x52\xac\xb0\xa9\xdf\x6d\x1d\x8a\x50\xbb\x3d\xbb\x21\xab\xa0\x8b\x61\xa2\x19\x81\x5f\x45\x51\xce\x0a\xca\xcf\xfb\x20\xdb\x76\x42\x20\x93\x52\xef\x58\x2a\x4c\x83\x5b\x78\xf1\xcb\x1e\x43\xba\x23\xa0\x3a\xf7\xa1\xf8\x54\x27\x2b\x3d\xf8\x70\xce\x96\x2b\x37\xdc\xa8\x9c\xdf\xc7\x10\xb6\x4d\x7e\xcc\x71\x6f\x95\xeb\x7f\xcb\xae\xcc\xae\x3c\xdb\x2c\x2a\xc4\xee\xde\x91\xa2\x71\x87\xab\x34\x9d\x66\x0c\x70\xfd\x0a\x6e\xb3\xbc\xcb\x99\xe2\x32\x6e\x3b\xcf\x5e\x68\x3a\xe9\xf8\x9a\x0a\x57\xe9\x72\x55\x23\x7b\x3e\x24\x7b\xd8\x93\x24\xa9\xd7\xbd\x47\x28\x93\x30\x87\xe0\x0a\x81\x77\x10\xa1\xc4\x50\x99\x5e\x68\x71\x0e\x4d\x8b\x01\x96\x57\x46\x36\x17\x82\x6f\x34\x3c\x75\x99\x03\x14\xc9\x2b\x1c\x17\x56\x05\x28\x51\xec\xf7\x56\xb2\xa5\xfc\x61\x5e\x3b\xb1\xba\x11\xa8\xb0\x81\x16\xab\x1f\xf8\x9b\xc5\xfb\xce\x0d\x44\xc9\x58\x25\xf7\x46\x7c\x9d\xcf\x88\x77\x3e\xd6\xd0\xe6\x92\xdf\x32\x9a\x47\xf3\x6f\x40\x1c\x3c\x5a\xbc\x31\xe8\x22\x64\x82\xfd\x30\xfc\x15\xc2\x1c\x2d\x16\x97\x84\x73\x83\x28\x64\x86\xf2\x25\x81\x9a\x4b\x78\x64\x37\x00\xa0\xfe\x95\x26\x17\xa0\xd9\xf4\xd0\xa8\x1e\xe8\xa6\x44\xb1\xdf\x5f\xc9\xa6\xb4\xd3\x3e\xad\x54\x3a\xc6\x00\x7f\xb6\x75\x3c\xf6\x58\xaf\x4f\x7c\x0e\xd1\x05\x44\x2b\x7b\xa3\xe8\x90\xb7\x93\x56\xc2\x37\x01\xc5\x50\xe3\xa8\x6a\xf0\x8c\x4b\x74\x2c\x02\x54\x61\x78\x35\xfe\x03\x38\x42\x61\x39\xe9\x0b\x54\x58\x44\x3e\x43\x1c\x68\xa3\xe0\xf3\x66\x11\x22\xa8\xfc\xca\x4f\x68\x06\xd8\x8b\x56\x0a\x47\x24\x14\xd5\xaa\x24\x3d\x02\x8d\x6d\xe5\xd3\x80\x41\xe5\x28\x05\xec\x17\x57\x0a\x03\xde\x22\x7b\xf7\x84\x62\x57\xe0\x7f\x37\x70\x59\x24\xa8\xe5\xa2\x68\x51\x3d\xd8\x60\xd8\xae\xe8\x09\x20\x55\x9f\x50\xf0\x15\x16\x98\x49\x28\xe2\x83\xb8\x04\x3b\x17\xde\x03\x12\xec\x90\xc5\x1f\x01\x7a\xdd\x98\xb2\x3d\xc8\x9c\x4c\x59\x05\x18\xfc\x8f\xef\x5f\x5d\x26\xf8\x04\x93\xda\xff\x06\xc6\x83\x68\x1b\x37\xc3\x9a\xa0\x55\x26\xfd\x09\xee\x98\x80\xa9\x12\x12\x0c\x0b\x44\x13\xd1\xc1\x7b\x0f\x52\xfd\x50\xdb\x5b\x59\x05\x0c\xc8\xaf\x4f\x2a\xaa\x19\x61\x5e\xcb\x55\x1d\x33\xd0\xbc\xd9\x4f\x7d\xf7\xa0\xcf\x47\x27\x3b\x78\x60\x77\xaa\x3e\x74\xeb\x42\x0f\xd3\x9f\x77\x5a\x43\xcf\xfd\xc4\xdb\xa0\x00\xc2\x82\xbd\x55\x19\xf2\x5a\x0d\xdd\x72\x08\x8e\x10\xfb\xd7\xff\x89\x81\x8a\x3b\x98\xb4\x41\xba\xe1\x0c\xa7\xde\x61\xf3\x71\x59\xd3\xc3\xf8\x17\xb8\xc7\x33\x8f\x88\x86\xb8\x95\x4c\x5e\x4c\xcc\x4e\x6f\xe1\x7f\xe8\xb9\xcd\xbf\xb5\xfe\x28\xc6\x27\x6a\x7d\xac\x80\xd5\xda\xf2\x20\x23\x10\xb3\x04\x9d\x5c\x82\x87\x4d\x24\x4e\x5f\x87\xed\x74\xd1\x4f\x7d\x07\xbe\x96\x5e\x9f\xac\x84\x9a\x45\x5d\x9e\x50\x85\xe2\xdd\xb6\x26\x18\xc1\x3c\xc6\x1c\x93\x10\xc8\x0d\xe5\xb9\xc9\x43\x56\x02\x97\xe3\x8c\x01\xea\x29\x61\x65\xe6\x00\x3b\x44\xb0\x99\xcd\x21\xb1\x12\x45\x67\x9f\x10\x5b\x09\x17\x00\x91\x3a\xba\xf6\x25\xf8\x7a\x8d\x5f\x43\x10\xfc\x45\x75\x7e\x1d\x11\xa9\x51\xf5\xa0\xc2\x19\x33\x5e\x56\x57\x60\x8a\x5e\x2a\x77\xcb\x92\xc3\x85\x97\x0e\xa6\x0a\xe0\xba\x4b\x95\x92\x66\x08\xa5\xd9\x11\xfe\x65\x44\xdd\xfc\x66\x2f\x7a\xd2\xbf\x34\x41\x7b\x6d\x4c\x5d\xc9\x05\x73\x31\x0c\x43\xb1\x8f\x71\x05\xc4\x23\xa3\x1d\xaf\x03\xe9\xcf\x64\x44\xce\x40\xdb\x0b\x1f\x01\xfe\x08\x74\xe9\x16\x70\x0f\xbc\x5c\x9b\x37\xfc\x14\xea\x53\x63\xd5\x81\x84\x6b\x54\x3d\xa8\xf3\x82\x0f\x55\x94\x54\xed\xa1\x5e\x95\x85\x14\x59\x63\x3e\x16\xb3\x65\xbb\xa0\xe7\x8a\x87\x53\x2c\x70\x85\x05\x7e\xf1\x64\x82\x72\x5a\xb0\x4f\x25\x21\x22\xed\xb5\x8b\x3e\xc1\x25\x69\xdb\xf2\x37\xaa\x2a\xab\xc7\x10\x84\xb8\x92\x4a\x96\x2c\x80\x39\xc6\x7b\x61\xaf\x01\x9c\xa9\xc7\x30\x73\x98\x5a\xda\x08\xe8\x0c\x11\x99\xe7\xc5\x36\x04\xa6\xd4\xa8\x8e\x0c\x83\xd6\xab\xe5\x06\x47\x40\xcf\x2a\x7f\x77\xce\x42\x71\xe5\x81\x35\xb6\x88\xa1\x62\xa7\x92\x0f\x18\xdb\x02\x93\x2c\x25\xcc\x8b\x5c\x64\xb2\x39\x3e\x26\xfd\x55\x78\x25\xf1\x7b\x9c\x91\x87\x23\x01\x96\x10\x6f\xd3\x48\xc8\x8c\xa7\x9a\x32\x23\xde\x44\x35\xca\x65\x21\x4e\x22\x78\x88\x1f\x91\x9b\xb1\x4a\x68\x1b\xf4\x9d\xb8\x7b\x30\x47\x44\x5a\xa2\x3a\x53\x31\xaa\x2a\x65\x8a\x51\x9f\x11\x5b\xa3\xba\xf6\x94\x49\xb6\x92\x7e\x54\x8a\xf5\xbf\xb2\xf3\xc7\xcd\xac\xb2\xc5\x7e\xcd\xbb\x50\xad\xfc\x8d\xd2\x76\xd4\x7c\x26\x5b\x46\x09\xfa\x6e\x52\x62\xf4\x6d\x6c\x5a\xb8\x9d\xe7\x07\xc2\x4e\x04\xd8\x09\x4d\x82\x84\x96\x98\x0a\xe3\x57\x83\xf4\x95\x2f\x21\xca\xfd\xea\x04\xd8\xd1\x3e\x81\x36\xd8\x6f\x58\xdf\x30\x79\xb8\x2b\x4e\x2b\x2a\x13\xf4\x17\x3f\x1f\x23\xcc\x9a\x28\x05\xca\x10\xa6\x17\x60\x7a\x51\x32\xb3\xd6\x4b\xcf\x54\x4e\xb7\x74\xc4\x90\x5a\x50\x3f\xd8\x46\xff\x36\xd7\xad\x6d\x1a\xe2\x97\x94\x56\xd0\x0f\x9d\x8f\x9e\x4d\x98\x46\xbe\x08\x62\xf0\x33\xc3\x8d\xfb\x05\x39\x3f\x22\xd4\x78\xff\x33\x0f\x22\xb8\x7a\x28\xa9\xab\x60\x03\x5d\x05\x44\x3e\x61\x3e\x3a\xfb\x93\x88\x44\x39\x8f\x02\x44\x0d\x75\xcf\xff\x16\x64\x90\xb3\x3e\xf4\x14\x54\xaf\xa9\x96\xbc\xcf\xd4\x6b\x3a\x92\x09\x30\x07\x33\x4a\x66\xab\x3c\xc9\xbc\x97\x9c\x6b\xbb\x3c\x7f\xef\x47\x56\xe9\x14\xe4\xfe\x76\x82\x53\xd3\x43\xa6\x93\x88\x84\xdc\x35\x60\xd0\xff\x49\xd4\x55\xbc\xa4\xf7\x25\x9f\x2e\x8a\xb4\xdb\x88\x3d\x94\x3d\xda\xe9\xc4\x60\x9b\xbd\xc9\xfe\xa2\x3c\x33\x3b\xd6\x66\x89\x8f\xc0\x11\x67\x43\x43\x3d\x10\xe8\x70\x54\x65\xeb\x90\xb6\xf0\x7a\x0a\xe2\xd5\x5a\x0c\x63\x66\x23\x3a\xf0\x26\xef\xb3\x2a\xba\x98\xe5\xd4\xb3\x8d\x31\x8c\x24\xe4\x6e\x41\xef\x7e\x48\x72\x5a\x8b\xbd\xc9\x9d\xf0\x77\xc6\xf3\x76\x78\xb8\x46\xcb\x2d\xb0\x81\x8f\x61\x66\x26\x56\xc4\xed\x5a\xf8\x36\x95\xd1\xf1\x82\x67\x02\xb7\x9b\x8d\xb1\xe5\x39\x7f\xb2\x85\xb7\xb6\xb4\xc0\x94\x69\x95\x64\xd8\x83\x46\x53\x1f\xce\x71\x51\x23\xb3\x28\x84\x8d\xac\x93\xcd\x3f\xd6\x2e\x9d\x65\x4f\x12\xdb\x17\xcb\x92\x90\x0f\x6c\x05\x6e\x9f\x13\xef\x82\x9c\x82\xd3\xb3\xdb\x21\xb7\xee\x05\x04\x9a\xec\x63\xef\x1e\x87\xbe\xdf\xbc\x76\x9d\x3e\x84\x34\xdb\x77\xe7\xbd\x87\x60\xd3\x4b\xb4\xa5\x63\x7f\x66\x14\xd5\xce\xba\x2d\xbc\x87\x2f\xcf\x8c\xc7\x9d\x45\x24\xc0\x88\xd3\x9c\x41\xdc\x5b\xdf\x4e\x3d\x4f\x86\xac\xf7\x4b\x9c\x51\x41\xc6\xa0\x9a\x8b\x4e\x85\x66\x1c\x89\xb2\xd7\xbe\x61\x31\xc1\xf2\xd2\x8a\xdf\x75\x1e\x64\xea\x56\x1e\x68\x0c\xda\x0d\x3a\x8d\xfe\x0d\x3a\x8d\xc7\x66\x76\x42\xa3\x58\x1f\x39\xf5\xee\x25\xdd\xff\xe9\xea\xb1\x43\xba\x70\xc1\x25\x7c\xd5\x83\xc5\xd8\x4e\xaa\xed\x84\x54\x6e\x86\xcf\x91\x13\x88\x32\x70\x08\x93\x11\x2f\xd3\xb9\xe9\x5a\x28\x5f\xa7\xc9\x64\xa6\xa9\x76\x43\xfd\xb2\x3a\x55\x6b\x52\xe3\x83\xf8\xba\xde\x94\xf6\x27\xee\x02\xe3\x0b\x06\x38\x6c\x93\xd9\x98\xc9\x1b\xb6\x24\x17\x27\x47\x19\xd0\x76\xa0\x93\xdf\x5d\x88\x66\xec\xfd\x70\x19\x88\x53\xb6\x6c\x6a\x10\xcc\x0d\x30\x33\x88\xdb\x73\x00\x8d\x1a\x1d\xee\x52\xee\x0e\x99\x46\x3f\x21\x63\x63\xf4\x92\x3a\x0e\x05\x19\x34\xab\xb3\xae\xc8\x1c\xaa\x7a\x87\x59\xa9\x05\x2b\x65\xba\xdd\xd4\x9d\x52\xf8\x63\x7e\xd7\x98\xa4\x20\xa3\x5e\x61\xde\xae\xe0\x24\x81\xb6\x6e\x52\x7e\xc2\xf3\xda\x5e\x4e\x5d\x05\x2f\xe6\x54\xa2\xeb\x0c\xb9\xe5\x8f\xb5\x24\x40\x54\xe2\x1e\xb8\x1f\x02\xcf\x32\xe2\x03\x1d\x60\x7e\x45\x8c\x51\x44\xd8\x34\xb9\x95\x83\xb0\xca\x47\x7a\xcf\xf9\x64\x75\x12\xd1\x27\x3f\xb0\xa3\xc9\xf3\x5b\x01\xd5\xed\xa8\x90\x2f\x4b\xc9\x32\xd3\x6d\x92\xbe\x16\x5e\x68\x3a\x2b\x99\xe8\xe1\x67\xa5\x21\xa1\x67\x15\x6d\xf7\xef\x91\x83\xe6\xa0\xb3\x98\xd8\x33\xc9\x58\x77\xac\x84\x26\x6f\x94\x97\x94\x74\x1a\x81\xce\xb7\x46\xb1\x19\xdc\x12\x55\xa0\x2f\x04\xdd\xca\xb0\xb6\x8d\x81\xd7\x15\xda\x78\xa2\xe1\xc4\xea\xd6\x80\x7c\x78\x04\x79\x8a\x03\xb4\x2a\x4c\x5e\xe7\x40\xaf\xca\x09\xaa\xf3\xdf\x7f\x3a\xa1\xd8\x21\x80\x1e\xca\x33\x39\x78\x50\x9b\xdf\x63\xa7\xfe\xe0\x7b\xcc\x7d\xa7\x12\xa1\x09\x9f\xbf\x6e\xa9\x02\xff\xec\x94\xbd\xbe\xf2\x85\xeb\x22\xfc\xf8\x79\x6a\xa4\x7b\x02\xb9\x79\xee\xf1\x16\x87\x28\xf2\x2d\xe1\xbd\xc2\xe6\x84\x64\x41\xd4\x54\xb2\xc2\x39\x20\x9f\xb7\x61\x20\x88\xd0\x2d\x7f\x67\xd5\x04\x4f\x6c\x22\xb9\x8f\x02\x91\xe4\x04\x0e\xf7\xc5\x06\x4a\x11\x3b\x7a\xa5\x59\x43\x1c\xfb\xfc\xa5\xbe\x75\x1c\xf1\xdd\xf4\x33\x4f\x80\x23\xb0\x32\xc6\x6f\x8c\x2b\x24\xe5\x69\xe0\x05\x4e\x72\x48\x6b\x28\x0b\x4d\xd4\x79\x21\x7c\x9a\xbc\x69\x38\x1c\xb9\x4a\x54\x92\x5f\x8f\x01\xe1\xf6\x04\xaf\xc4\xd1\xb0\x8f\xf1\xf3\x09\xab\x04\x51\x36\xb7\xdc\xe8\x07\xf4\x60\xc6\x2a\x2e\x25\x69\xc0\xbb\xd1\x57\x2b\x19\xe0\x69\xde\xb6\xb8\x01\x44\x51\xd2\xd8\xd9\x56\xca\x29\xf3\xec\x57\x57\x06\xbc\x75\x50\xe7\x07\x47\x61\xf4\xb0\xfe\x15\x93\xf8\x50\xcc\x8b\xb6\xbf\xc9\x30\xc2\xa3\xbc\x9f\x89\x47\xd8\xda\xb8\xa8\x14\x63\x74\xbe\x4f\x74\xca\x2a\x62\xcb\x9c\x25\x0d\x04\xd3\x52\xbd\x9c\x66\x09\xbd\xf9\xd0\x3f\xa7\x14\x68\x61\x57\x2a\x4e\x86\x47\x20\xd7\x1a\x40\xb8\x3f\xb0\xef\x3d\x28\xbe\xef\x90\xe0\x61\x4f\xc9\xdb\x90\xed\xf1\x14\x2d\x7b\xd8\x1d\x4a\x2d\xfb\xcd\x95\xba\x70\x0e\x8c\xca\x41\x52\x8a\x11\x9a\x6f\xdb\xae\x08\x84\x98\x58\x33\xaf\xcc\x06\x3f\x9b\x2c\xaf\xb8\x01\x9c\x36\xed\x54\x6a\x03\xd8\xbc\x6f\x15\x79\x50\x74\xb8\x48\x65\x26\xa0\xe7\xf4\xac\x72\x19\x50\x36\xa8\xa9\x0a\x84\xce\xca\xdb\xd7\xe7\x83\x5e\x08\x9e\xb6\x64\xb3\xcd\x60\x29\xa3\x4a\x88\x05\x54\xee\x24\x09\x7f\x1d\x13\x3f\xd5\x4f\x2c\xc0\xea\x4c\x8d\x4b\xc4\x21\x6b\x63\x2b\xb1\x8c\xfb\x3f\x32\xa9\x58\x8e\xdd\xb6\x92\x50\x8c\xca\xe6\x87\xba\x4c\xa4\xf8\xba\x61\xef\x35\xe8\xf4\x52\xc9\xb0\x17\xa0\x38\xb1\x3b\x54\x06\x33\x6d\x8a\x1b\xc1\x43\x1b\x73\xf2\x47\xf8\x20\x7f\x43\x4c\x86\x90\x90\xbf\x0e\xd2\x43\xc2\x60\x9c\x2e\xfd\x40\x32\x2b\xa7\x84\xd5\x98\x3e\xe3\x1e\x91\x6b\x9a\x13\xcd\x84\xcf\x9f\xe1\xc0\x8d\xe3\x3d\x67\x7a\x08\x8b\x78\xcb\x19\x0e\xea\x3a\xf1\x7d\xee\x28\xf6\x68\x77\xbe\x78\x15\xcb\xbe\xdd\x56\x9f\x8d\x9e\xda\xf4\x1f\x9c\x81\xcd\x6f\x59\x8e\x4d\x01\xa7\xab\xcb\x33\x5e\xf0\xed\x69\xc4\x6c\x1e\x1c\xda\x3d\x3e\x3b\x04\x43\x96\xd5\xcd\xc8\x41\x23\xa3\xf9\xa7\xbe\x40\x31\xee\x4f\xa7\xa1\x50\x6b\x53\xd4\xf4\x09\x00\x52\x75\x9e\x4d\x07\x4d\xf2\x28\xcd\x11\x31\x5f\x89\x3d\x73\xaa\xf8\x48\x22\xcb\x9c\x35\x11\x4f\xe8\x9a\xf3\x24\xc9\x12\x3c\x80\xa9\xfa\xaa\xce\x57\x08\xae\x3a\x93\x26\x4f\x84\x4a\xed\x44\x83\x0d\x92\x56\x3b\x5d\xab\x83\x89\xae\x44\x14\x4d\xa1\x2b\x2b\x47\x72\x62\x70\x13\x15\x8f\xd2\x95\x71\x5f\xca\x9f\xa4\xec\x11\x38\x2a\xdc\xa2\x66\x88\x8d\x15\xe8\x20\x0a\x21\x2c\xff\x8f\x4b\x17\x96\xb9\x8c\xce\xc2\x19\x13\x52\x1a\x69\xb2\xc0\x8c\xcc\xf1\x40\x77\x82\xcf\x4b\x64\x10\x67\x08\x5c\xf5\x3e\xa2\x1c\xdd\xd4\xe1\x86\xc4\x42\xb2\xea\x9d\x47\x9f\x03\x94\x3a\x97\xae\x2e\xf8\x7a\xcd\xe3\xc6\xdb\xf0\x77\xd5\x19\xb5\x9f\x50\xce\x95\x49\xa5\x21\x98\xa6\xd2\xd7\x79\x44\x74\x69\x99\x5a\xda\x09\xce\xaf\x58\x21\xb1\x90\x90\x94\x15\xe7\x5f\x4d\x58\xce\xaa\x70\x7b\x8c\xf9\x9a\xdc\x6c\xe5\x87\x1e\x2f\xf8\x62\x3c\xc1\xe2\x97\xcb\x21\x92\x0e\xd9\x4d\xdf\xc6\x7c\x05\xdd\xcb\x88\x04\xff\x81\x0f\x14\x25\x40\xda\xd1\x76\x15\x17\x21\xbf\x21\xf7\xeb\x2c\xc6\x6f\x81\x37\x6a\x5b\x46\x6c\xc0\xff\xd5\x2c\xf6\xe2\xa0\x7e\x55\xad\x0d\x9a\x08\x8e\xb2\x9f\x15\xdd\x98\x9b\xc5\xcd\xb9\x05\x98\xde\xfc\x77\x69\x08\xbc\x46\xb6\x4a\xd4\x1a\x51\x27\x61\xde\x2b\x95\x70\x29\xc9\xc9\xee\x04\x3d\x1a\x3f\x68\x6c\x85\x78\x19\xdb\x2b\xbf\x85\x00\xe2\x06\xd8\xc5\xe1\xf9\x31\xc7\x48\x21\xf8\xed\x64\x45\xb6\x0c\x64\x58\xea\x77\x66\x7f\xcc\x50\xfe\x06\x4b\x33\x53\x5f\x5d\xf3\x46\x36\x7d\x7c\x23\x6a\x6d\x1e\x64\x5d\x65\x3a\x98\xc2\xf6\xbd\xfc\x5d\xe7\x65\x48\x56\x71\x7c\x55\x28\xca\x2c\x27\x3a\x47\x14\x97\x95\xc4\x14\xeb\x85\x5f\x8c\xda\xf6\xfd\x41\x7c\x19\x01\x76\x5a\x25\xd4\x47\x90\xcc\x8f\xf0\x7a\xc1\xdf\x54\x85\x11\x9f\x82\x8c\x85\xaa\x50\x15\x21\xda\x38\x2f\xcc\x7a\x14\x09\x10\xc7\xcd\xc6\x70\xb3\x01\x38\xd3\xf8\x3b\xf7\x2f\x4b\xdf\xc8\x7a\x7f\x7f\x8e\xc5\xa7\x22\x70\xa3\x8d\x51\xbd\xea\xd7\x5a\xee\xfd\x1b\x15\x39\xf3\xaa\x0c\xe0\xa2\x94\x9e\x05\x56\xb5\x2c\x78\x95\x0d\xa0\x1a\x57\x93\x72\x1f\xfb\x35\x0a\x1d\xf6\x83\xdc\x11\xfe\xc0\x7b\x83\xc6\x16\x6c\x62\x07\xa2\x1d\x04\xdc\xd6\xdb\xa4\xd2\xfb\x3e\x94\xfe\x42\x32\xf1\x86\x71\x4e\x53\xf4\x3d\x51\x80\x3a\xd7\xcf\xc0\x19\x70\xb0\x64\x70\xd4\x0a\xa3\x98\xf6\x9b\x34\x13\xa6\x16\x07\xe1\xa2\x39\x16\x34\xb3\x7f\xde\xde\x96\x29\x83\x67\x61\xf6\x7a\xd3\xfd\x98\xfc\x0f\xf3\xd3\x0c\x84\xf4\x37\xbd\x4e\xcc\x16\xf1\xb7\xca\x8c\xd1\x3f\x22\x6c\x93\x3f\x53\xa4\x83\xf9\x43\xd6\xb8\x60\x7e\x77\xdd\x9e\xf3\x42\xbd\xc8\x16\x46\x7c\x24\xb7\x53\xf5\x2a\x3e\xbc\xcb\xd8\x43\x0e\x41\x92\xeb\x75\x8a\x94\xd8\x35\x17\x5b\x08\x4d\xbe\xd7\x5f\x9c\xad\x5c\x3f\x27\x6c\x91\xc5\xc3\x69\x37\x6d\x8a\xd5\xcb\x2d\x29\x4f\x16\x74\x91\xd9\x39\x25\x7b\x97\x9f\x21\x2a\x9d\x65\x73\x97\xee\x38\xed\xea\xe2\xc4\x2d\xee\xd8\xdd\xde\xab\x48\xa1\x90\x4f\x25\xbc\x94\xcb\x7e\x01\x49\x71\x3c\xf1\x9e\x37\x02\xb7\x04\x1d\x5c\x38\x1c\xcf\x1e\x3e\x70\xb0\x37\x06\x89\xbd\xb2\x3d\x51\xa2\x4a\xac\xdb\x0e\x0b\x61\xe5\x74\x1d\x30\x24\x2f\x65\x1e\xa7\xf7\x90\x73\x83\x7b\x3e\x07\x20\xb8\x8d\x42\x78\x0e\x5b\x97\xcf\x87\x34\x69\xb0\x62\x68\x6c\x2e\x2b\x44\x86\x11\x08\xfd\x79\x14\xc0\xe8\x12\x8d\xd8\xad\xb8\xf3\x34\x5a\x72\x0d\x60\x2e\x0d\xa6\x7b\xdc\x40\xc0\x7a\xbd\x28\x1d\xe4\x99\x74\x81\x27\x4e\x88\xbc\xb2\xcb\x09\xa8\x90\x9a\xb7\x2a\x72\xc0\x2b\xdc\xb4\xc0\x19\x78\xab\x5e\x36\xaf\x57\x40\x69\xca\x58\xf2\x3d\x60\xd6\xf5\xb4\xf1\xa3\xc0\x8d\xc0\xf6\x4b\x40\x87\x8d\x9b\xa7\x1d\x48\xcc\x93\x23\xc4\x03\xf4\x2c\x6c\x28\x41\x0d\x1c\x94\xfc\x3a\xef\x06\x80\x05\x3d\x75\x97\x3a\x92\x66\x6e\xf3\x66\x3c\xac\xbd\x35\xef\x3b\xbb\x5f\x8e\x4c\x74\x47\x0f\x58\xf2\xdc\xb2\x97\x28\x5d\x10\xbf\x68\x51\x97\x90\xaa\x48\x34\x71\xf4\x6f\xd7\xf8\x6c\x74\xd9\xbe\x53\x9f\x6c\x80\x32\x50\x36\xae\x37\x9c\x54\x98\x37\x0f\x34\xc9\x11\xce\xb1\xd6\xb7\x60\xa3\x31\xda\xab\xd8\x10\x10\x0e\xee\xb5\x2e\x2f\xc1\x98\x90\xb9\x40\x7d\x48\x4f\x42\x6f\x74\x2e\xe4\x43\x6e\x52\x26\x0e\x7e\x0d\xbe\x6c\x5a\x75\xb8\x05\x1f\xb3\x34\x3e\x74\x00\x07\xda\x4d\x1c\x35\x73\x68\x5b\xe2\x86\x59\x25\x7e\x19\xd5\x97\x76\xa9\x23\xf4\x1e\x24\xde\x36\x68\xd0\xae\xf1\xff\x6a\xfe\x50\xf3\xc0\xc1\xd2\x06\xaa\x29\x6e\x30\xe4\x10\xa1\x19\xae\xf0\xd1\xc5\x49\x67\x53\xc4\xda\xe3\xa1\xc1\x31\x7b\xbb\xf7\x43\x53\x31\x94\x67\xb0\xa8\xdd\x05\xa8\x72\xc2\x86\x97\x04\x50\x9c\xfd\x32\x38\x17\x48\x28\xff\x93\x08\x85\x7f\x26\x0f\x70\x70\xaf\x8a\x93\x2f\xf3\x71\xad\x4f\x51\x2f\x69\xd3\xce\xa8\xe2\xc6\x9a\x05\x63\x1c\xda\x2f\xd4\x58\xca\x50\xe6\x73\x2a\xb2\x49\x70\xfb\x32\xe5\x5b\x41\x10\xe7\x21\xc5\xef\xce\xed\x1e\xc2\x0a\x66\x46\x5a\x3e\x29\xf2\x46\x8a\x5f\x03\x1c\x95\x18\x45\xda\x83\xe7\xd5\xee\x72\x44\x87\x9d\x6b\xed\xa3\xe6\xe2\x08\xc6\x12\x80\x55\x76\x84\x93\x10\x42\xb3\xcc\xcc\xab\x16\x8e\x68\x08\x0f\x19\x82\x0f\x91\xd7\x39\x30\xab\x72\xe4\x15\x0e\x8e\xd5\x50\xd9\x6f\x62\xe7\x6f\xcf\x0d\x6e\x8a\xb7\xce\xde\x76\x60\x92\xfc\x5d\x79\xe2\xc1\x22\x15\x97\x76\xc3\x47\x4e\xb2\x3e\x8c\x16\x80\x91\xf0\x76\x1b\x0a\x29\x10\x8b\x31\xf9\x18\x7e\x26\x4a\xa7\xc2\x1b\x7d\xe5\xe1\xdb\x87\xd5\x71\x20\xf1\x9b\x1c\xcc\x09\x2b\x52\x08\xe4\x4a\xe6\x05\x75\x38\x2c\xb4\x24\xd9\xa4\x16\xc1\xd5\xa0\xeb\xc8\x00\x98\x34\x27\x7b\x06\x02\x75\x94\x68\x76\xce\x95\x1a\x4a\x27\x3b\xff\xca\x94\xc5\x53\xf6\x9a\xaf\x82\x5e\x9b\xdc\x76\x6b\xf4\x21\xdf\x04\x2c\x5a\xd2\x23\xd4\x84\x9e\xe6\x05\x45\x45\x0b\xa9\xc7\x52\xe3\xdc\x05\x98\xbd\xcb\x12\x53\x79\x7d\x2c\x5d\x92\x77\xb9\x27\x34\x0c\xd3\xee\x71\x4a\x88\x73\x66\x84\x70\x70\x70\x44\x67\x73\x72\x0b\x20\x69\xc5\xc2\x0f\x03\xc1\xfe\xf5\x33\xaa\xbe\xd0\xbf\xcd\x76\x7a\x43\x00\x77\x57\xa3\x75\x05\xc4\xed\x7f\x4a\xba\xf4\x13\xbe\xbf\x50\x0c\x2e\xc2\xef\x9f\x02\xa9\xad\x38\x86\x7d\x8d\xec\xd7\xe4\xe0\xe1\xa8\xec\x56\x6a\x52\x6d\x47\x4e\x38\x35\x2a\xe3\x66\x9e\x11\x39\x38\x58\x3a\xbf\x92\xc4\x6c\x2f\x55\x78\x9d\x70\x4d\x97\xbb\x08\x89\xe5\x95\x16\x29\x19\x41\x9e\x72\xcf\x54\x7a\xc2\xe4\x10\x2a\x6d\x74\x44\x2a\xa0\xdf\x7f\x26\x94\x00\xd9\x1c\x7b\xa7\x88\x85\xdd\x9f\xd4\xd6\x0f\x81\x3d\xa1\x74\xb2\x33\xad\x74\xc5\x2a\xe1\x76\x8f\x86\xb2\xd8\x70\x2b\xfb\xbb\x95\xf4\xd8\x6b\x5b\xab\x2d\x64\xc8\xe6\xf2\x7c\x93\x2e\x40\xeb\x15\x6b\xa8\x04\x9a\x4a\x1c\x1a\x76\x20\x6f\x62\x80\x86\x37\x00\xdc\x6d\xac\x11\x03\x7c\x36\x71\x68\xd6\x80\x18\x2b\xb9\xb6\x04\x83\x34\x84\x7e\xf4\xfe\x66\x9c\xc4\x46\x4c\x98\xa2\x4b\x30\xdd\x53\x1f\x08\x4d\xd8\x89\xe9\x5f\xa4\x29\x1c\xcf\x0c\x45\x2e\x1c\xd5\x1e\xdf\x8f\x2b\x3f\x9c\xcc\x13\xc4\x5f\xdf\x37\xad\x54\xc4\x99\xef\x44\xb6\xa8\xa3\xdf\x6c\x9d\x0e\x19\x00\xf4\x1b\xb9\x93\x83\xc0\xcc\xac\xec\x24\x1a\x56\xda\x21\x33\xb1\x04\x5d\xc9\x67\x1d\xff\x05\xe5\x0c\x93\x1d\xfb\x00\xf9\xee\xe4\x3e\x8e\x04\x7d\xd2\x07\x26\x02\x40\xa1\x32\xdb\x53\xc7\xac\x73\x94\xa2\x59\x2f\xfc\x10\xb1\x79\xf6\x05\x61\x86\xa0\x39\x07\x26\x45\x11\x6e\xcf\x09\x92\x4b\xf1\x87\x45\xc2\x78\xce\xbd\x83\x8a\x66\xdc\xe6\x2e\x6b\x63\x17\x36\x64\xbb\x70\x64\x14\xa9\xbd\x2b\x3e\xff\x04\x06\xdb\x7c\xb1\x70\x11\xa1\x3e\x97\xb9\xf0\x1e\x1e\xfd\x18\xbd\x30\x0b\x90\xca\x22\xe7\xbb\xa0\xed\x31\x67\x73\x6a\x80\x85\x67\xd7\x1c\x0e\xd6\x65\xce\x32\x57\x0d\xa7\xa9\xd3\x2d\xc0\xa0\xf7\xf9\x4c\xe7\x75\x71\x0c\xa4\xd4\x79\x41\x82\x19\x71\x70\x1e\x43\xdc\x23\x0a\xcf\x33\x91\x4e\x08\x67\x30\xf5\x46\xd1\x9e\xeb\x88\xb4\x06\xe9\x16\x07\x44\x4f\xfd\x87\xa6\x4a\x64\x55\xa3\x57\xfd\x3a\xea\x66\xcb\x64\x4d\x19\xda\xad\x26\x2b\x5f\x02\x7f\xb9\x6a\x2e\xd3\x16\xcf\x59\x65\x96\xf6\x89\xe0\x5b\x25\x18\x83\x27\xae\x54\x06\x07\xdf\x20\xda\x56\x64\x78\x8e\x62\x43\x2a\x00\xcb\x12\x4c\x73\xb9\xab\x49\x27\x9b\x4f\x25\x08\x47\x81\x97\xb6\xca\x60\x62\x31\x97\xfb\x3f\x61\x7e\xe1\x88\xc3\x18\x8c\x3d\xd4\xb8\x51\x62\xfc\x15\x70\xd6\x10\xd8\xab\x80\x50\xad\x17\x6c\xae\x40\x04\xd6\x25\x37\xde\x44\xce\xd5\x7b\xd7\xf8\x63\xb4\x2a\x63\x0b\x2b\xd0\x96\x95\x63\x59\x3c\xb8\xe3\xf2\xe8\x54\x26\xbc\x57\xf9\x40\x34\x96\xf8\xa2\xcc\xdb\xbf\x83\x60\x57\x10\xef\xe4\x8e\x89\x28\xf1\x35\x9d\x61\xf6\x2f\xa4\x7f\x68\xc4\x42\xce\x1d\x45\xa6\x00\xfc\x25\x75\xb0\x7a\x54\x53\xbd\x2a\xac\x0b\xdb\xd6\x6e\x06\x57\x63\xe1\xeb\x7c\xbe\x05\x83\xec\x34\x30\x8d\xdf\x85\xde\xae\x2f\xed\x0f\x06\xd2\xea\xae\xb7\xf0\xc2\xff\x54\x47\xd4\xfa\xa3\xbd\x2a\x84\x8b\xe0\x18\x97\x12\xd6\x2c\x1a\xa6\x22\xdf\x3b\x0e\x45\xfc\x92\xb2\xec\xaf\x4d\x06\x12\x4b\x9d\x5f\x11\x0a\x63\x3f\x9a\xae\x21\xbc\x53\xf8\x14\xe7\x01\x91\xc4\x08\x0e\x75\xe8\x69\x1a\x04\x41\x07\xbc\xc9\x4c\x60\xcd\x45\x3f\x2e\xc2\xb2\x15\xe1\x2b\xaa\x2e\x82\x6d\x59\x54\x1a\x6f\x6f\xcb\x31\x9e\xb6\xf2\x6d\x1c\x81\x0f\x6b\x77\x46\xed\xc1\x6d\x35\x36\x8f\x71\x90\xbc\x8a\x97\x0d\x3f\x91\x35\x85\x07\x85\xbb\xd8\x96\x0c\x95\x04\x22\x71\x2d\xf5\x7e\x38\x0f\x55\x2f\x69\xcf\x87\x99\xda\x17\xff\xd2\xd6\x9c\xb2\x19\x33\xa8\x53\x81\x7b\x11\xb5\x26\x8e\x46\x72\x46\x3c\x25\x30\x60\xfe\xc6\x4c\x41\xd8\xb1\x3c\xf1\x23\xf7\xfe\x88\x5f\xcf\x9a\xb9\x6f\xa3\x55\x56\xea\xc4\xe0\xce\x76\xa5\x46\x64\xbb\x9b\x39\xa6\x4e\x78\x53\xeb\xbe\x66\xdd\xf6\x9a\x06\x93\x5c\xc5\x93\xa1\x61\x40\x3e\x07\x5a\xbb\x8b\x79\x9d\x21\x9e\x27\x4a\xac\x48\xb1\x48\xd4\xe1\x78\x14\x7f\x3d\x78\x86\x5b\x2a\xaa\xdf\x0d\xc9\x9d\x13\x7e\x6a\x96\xc0\xf5\x39\x54\x41\x79\x83\x23\x26\x98\x49\x60\x89\xe7\x5e\xb0\x08\x66\x58\x20\x27\x2c\x90\x55\x4c\xfa\x4d\x12\x3b\xe3\xb0\xee\x5e\xa6\x3a\x93\xa7\xe3\xe5\x32\x3d\xe6\x28\xd6\x8e\x22\xdb\xdd\x87\xcc\xc6\xa5\x8f\xb6\x52\x19\xf7\x4b\xd7\x56\xd7\xee\x95\x17\xfa\x4e\x18\xc2\xa3\xd3\x45\x1a\x4e\x88\xe2\x89\x88\x3c\x59\xce\xb9\xe8\xf8\x98\xdf\x7c\x0e\x61\x8e\x7e\xeb\x82\x42\x81\x1d\xf6\x47\x0f\x3a\xfc\x36\xf4\xef\x88\xdc\xf4\x19\x96\x66\x7d\x74\xc3\x17\xc7\x9d\x26\x9d\xe4\x37\x80\x9a\x56\xb6\x08\x0e\x60\x7b\x64\x4c\x88\xee\x66\x61\x71\xe1\xca\xb6\x06\xef\xfa\xec\x15\xa9\x82\xdf\xb2\x01\x19\xf1\x07\x3a\x2c\x2c\xd9\x23\x7b\x18\x46\xce\x9c\xfb\x4f\x02\x18\x60\x69\xdf\xc6\x33\xb0\x51\x71\xd7\x1b\x7e\x72\x29\x87\x3d\xcb\x51\x16\x7c\x11\x58\x1a\x15\x2d\xb6\xe0\xf3\xc6\x2b\x57\x2a\xdf\xd3\xc8\xfa\x96\x9c\xb1\xfb\x45\xad\xa7\x8a\xdb\x6e\x66\x12\xe5\xea\x93\x1e\x7f\xb9\xcb\x75\x66\xbc\xf3\x31\x8a\xc6\x2d\x01\xed\x20\x41\xc7\xd0\x58\x26\xb6\x01\x7f\xfb\xac\x00\x70\x60\x78\x59\x5e\x37\x24\x06\x64\x14\x53\x7c\x9c\xc2\xfa\x39\x41\xe5\x08\xcf\xf4\x20\x49\x62\x57\x0f\x46\x8a\xde\x98\xf4\xe6\xe0\x0f\x56\x6c\x50\x12\x76\xf6\x49\xce\x41\x49\x37\xba\x63\xa3\xa2\x95\x69\xce\x55\x9e\x71\x1a\x63\x8e\x82\x96\x0e\xba\xdb\x0e\x7d\x1a\x2b\x46\x77\x1d\x8f\x25\x7e\x99\x35\xbb\x2a\xf1\x2c\x5a\xdb\x7b\x34\xe1\x74\xed\xcf\x7c\xd9\x41\x7e\xbe\x3c\x11\xd2\xa0\xd1\xa8\xb9\xb4\x75\xe8\xf5\x34\x4c\x7e\x21\xa0\x08\x6d\xf4\x7e\x7d\x0a\x07\xcf\x04\x08\x3e\x63\x61\xee\x09\x47\xbe\x08\x20\x5b\xf9\x4f\x4f\xbf\x14\x51\x77\x2f\x6f\x50\x51\xe0\x73\x7c\x94\x6d\xa6\xe5\x65\xeb\x17\x75\xd5\xf0\x9f\x35\xa3\xa7\xab\x85\xa3\xa5\x8d\x65\xae\x8d\x9b\x95\xb8\xa6\x9c\xfd\x77\x5b\x7a\x29\x73\xe7\x0f\x0e\xa3\x7c\x2e\xee\x2b\x2e\x24\x82\xaa\xd7\x77\x8f\x20\xb0\x7a\xf8\x79\xe8\x65\x48\x7d\xf2\x59\xfc\x01\xf4\x57\xe1\xbf\xdc\x61\x78\x3c\xfa\xa5\xd5\xd9\xb1\x07\xc6\xdc\x3e\xe8\x34\x09\x17\xed\x41\xff\xaa\x51\x58\xc8\xd1\x60\x8e\x53\x39\xd4\x9a\xa7\x61\xce\x60\xdb\xec\x28\xbb\xcd\x2a\xd9\xc4\x2d\xca\xd6\x61\xd6\x98\xe0\x45\xe7\x5a\x63\x24\x69\x39\xe6\xd9\x66\x84\xd2\x6c\xf4\x0d\x32\x15\x92\x3a\x09\x78\x66\x09\xf0\x87\x84\x70\xd8\x2a\x11\xbf\x86\xe5\x3b\xb1\x01\xd7\x52\x28\x7e\x49\xb0\x87\x79\x9d\xe1\xad\x30\xd3\x9a\x85\x34\x13\x04\x17\x79\x86\x43\x64\x55\x89\x96\xa6\xc9\x77\xc2\x26\x24\x66\xb2\xf7\xbe\x44\xe5\x3f\x23\xb1\xc5\x1f\x66\x83\xfa\xc4\xc6\x07\x8e\xb5\xba\xda\x39\x13\x9e\xda\x3a\x77\x62\x88\xbe\x23\xda\x7a\xbe\x0f\x82\x0c\x34\xa7\xad\xa3\xc2\x98\x35\x6a\xb4\x72\xa3\xa0\xda\xa2\xd2\xb4\xd8\xab\x7a\x1d\xfc\xe7\xf1\xfe\x46\xb6\xa4\x8e\xc4\x18\xcb\x75\x38\x7f\xee\x8a\xeb\x75\xb8\x49\x65\xab\x1f\x2f\xec\x67\xd3\xb7\x08\x15\xf8\x2f\xf2\x38\x07\x6e\xd5\x8b\xf2\x97\x96\xb3\x16\xa0\x43\xa7\xc0\xf8\xad\xd5\xe6\x58\xa9\x78\xbd\xcb\xfb\xb2\x72\x42\x2b\x57\x10\x93\x0a\x4f\xc1\x70\x98\xa0\xb2\x66\x02\x4b\x94\x8e\x12\xc9\xbf\x25\xee\x44\x3e\xd4\xd6\x2c\x49\x40\x4e\x4e\xa7\x3a\xd5\x47\xfe\xae\x4c\x67\x86\xb9\xe2\xac\xc0\x9d\xac\x42\xd5\x08\x32\x3c\xa7\x57\xab\x02\x56\x50\x3e\x67\x01\x81\x17\x35\x89\xba\x00\x80\x54\x7b\x87\x8f\x0a\xf0\x8f\xf2\x9e\x66\xb7\x66\x42\xe5\xa0\x79\xae\xc5\xbb\x59\x08\x5d\xfe\xf7\x2f\xfc\x48\xe4\xc7\xde\xdf\xf8\x4f\xe2\xa9\x03\x4a\x49\x81\x92\xb5\x15\xe3\x29\x38\xc9\x93\xb4\x99\x0c\x3d\xf1\xc5\xe0\x9e\xec\xdf\xa2\x3a\x8e\x8c\x79\xd9\x22\x0d\x06\xbc\x05\x2f\x85\x05\xe4\x13\x8b\xd3\x1f\x08\x09\x32\x94\x15\x88\xc4\x11\xed\x2a\xbe\x8b\xdf\x07\x87\x35\xf5\x68\x68\x41\x87\x3b\x61\xc6\x51\xa0\xa7\x03\xf9\x4e\x27\x60\x5e\x4a\x1d\x3b\x75\xa5\xcf\x7b\x95\x62\xfa\x6a\x28\xf6\x05\x25\xe3\xc5\x7e\x09\x9c\xe3\xcb\x0b\x96\x72\x55\x1e\xf4\x82\x75\x69\x0f\x7f\x63\x5b\x6a\x29\x8f\x00\x5d\xc1\xe7\x0a\x28\x6f\x7e\x94\x47\x95\x2a\xb7\xaf\xdb\x54\xf5\x7f\x9c\xcd\x26\xef\x6a\x13\xd8\x57\x94\x13\x1a\x3e\x92\xba\x1f\xb8\xb6\x98\xe1\xf9\xf1\xa9\x8f\x7d\xa8\x54\x00\x33\xc6\x2f\x56\x07\xe3\x9a\x2c\x54\xe7\x83\xa7\x4f\x75\x9b\x75\xc1\x4d\x43\x04\x88\x69\x67\x46\x89\x4d\x44\x89\x13\x72\x81\x02\x71\xfb\xe8\x7b\xc3\x35\xa2\xcb\x01\x57\x5f\x1b\xe6\xf5\xbe\x5b\xef\x3b\xdc\xec\x78\x68\x0f\x33\xee\xb8\xee\x65\xf7\x3e\x56\x33\x55\xa9\x7b\x01\x83\xf5\xe7\xe9\x36\x40\xc3\xad\xe9\xbb\x3f\xc2\x3f\x6a\x88\x3d\xae\x05\x79\x3d\xbc\x38\x18\xc8\xf0\x98\xf0\x65\xda\x19\xe7\x86\x5b\x9b\xe9\x22\x69\xe0\x7e\xcf\xca\x8b\x06\xa0\x67\x66\x87\xd4\x59\x50\xe7\x49\xb1\x04\xa9\xa7\xfe\xc5\x64\xc2\xd6\xe1\xf5\x3a\x18\x21\x6c\x9f\xa5\x8b\x03\xcf\xb4\xd7\x3c\x49\x41\xbe\xd8\xfb\xb4\x78\x08\x73\x5a\x89\x98\xcb\x86\x0b\xf4\xb8\xcf\x15\x03\xd7\x8a\xba\x66\x79\x00\xd5\x48\x91\x99\x8b\x30\xaa\xab\xc6\xcc\x27\x98\xae\x11\xdd\x6c\x2c\x74\x43\xe1\xee\x3c\x23\xc4\x93\x7d\x79\x9e\x0f\x2f\x44\xa2\x9f\x67\x21\xbe\x20\x92\xe7\x2f\x91\x2d\x08\x6d\x73\xff\x51\x34\x08\x56\xa5\x9c\x04\xf7\x03\x68\xcd\x0a\x41\x60\x6f\xa4\x79\x1b\xff\x70\xb7\x77\xbc\x1b\xfd\xfc\x00\xbe\xee\x0a\x97\x3d\x30\x5a\xf9\x83\xbc\xbc\xec\xbc\xda\x8f\xa0\x1f\x18\x5d\x5d\x03\xbc\x2b\x0b\x57\xee\xc3\xae\xc6\x47\x2e\x6e\x21\x10\x3e\x90\x45\x1c\xf2\xa6\x25\xd3\xa2\x03\x52\x5e\xa3\x6d\xa9\x1a\xa6\x2f\xe0\xb6\x10\x8b\xe7\x24\xdb\x2d\xa0\x88\xa2\x24\xcb\xf9\x63\x52\x2a\x71\x7c\xbe\x93\xec\x4f\xd4\x81\x1d\x37\xed\x3d\xc6\x21\x3e\x34\x51\xda\xcc\x91\xb0\x26\xa0\xe5\x18\x25\xdb\xf2\xaa\x49\x0a\x65\xd1\xa1\x50\xff\x02\x4d\x69\x40\x16\x35\xe3\x1f\xd4\x1a\x67\x27\xe0\xf3\x6a\xbc\x33\xf6\x09\x23\x35\x97\x62\xfd\x88\x9f\xab\xb6\x83\x9f\x13\x43\xab\x64\xbc\xa8\xd8\xe7\x55\x34\xab\x15\xb6\x8c\xaa\x1c\x29\x2d\xd8\x9d\x81\x0d\xc2\x11\x3a\x6a\xdc\x90\xc0\x85\x8b\x9f\x1a\xc6\x2f\x13\x70\xd3\x34\x3c\x1d\x80\x6b\x66\x9b\x7c\x05\x84\x35\x53\x87\xa2\x11\xcb\x8d\x7d\x6d\x42\xc8\x5b\x8d\x29\x2d\x30\x54\x40\x0b\xb9\x41\x18\xd9\xd5\xda\x59\x23\x82\x0e\xac\x73\xcc\x8b\xc0\x4b\x57\xaf\x66\x14\xe1\xcf\xab\xc9\xb1\x7d\xc4\xdd\xca\xbd\x60\x67\xe2\xb5\x0a\x26\xb7\x4b\x58\xc1\x8a\xab\xe6\x8b\x2c\x59\x65\xf3\x62\xfe\xe0\x0f\xd5\x1a\x58\x3a\xd4\xed\xb6\x87\xe8\x8b\xd8\xf3\x7e\x76\xb4\x0a\xfe\xe7\xe0\x2b\xd4\x08\xeb\x50\x4f\xd3\x8e\x02\xf4\x69\x53\xe0\x64\x0b\x40\x68\xf2\x18\x7a\x02\x6b\x6b\x34\xef\x60\x45\x1c\x35\x68\x34\xb9\xa2\xac\x1b\x6a\xaa\x15\xd1\x6f\xaa\x4e\x0b\xc6\xd1\x6f\xcb\xc6\x52\x99\x88\x39\x85\xab\x91\x76\x54\xad\x5c\x37\xef\x65\xb2\x61\xd6\x98\xf5\x32\x7c\x2c\xdb\x57\x65\x9b\xa5\x35\x8f\xc0\x67\x03\xa6\xe4\x2d\xc2\xc8\x28\x52\x99\x0f\xe4\x13\xae\xb7\x01\x0c\xb5\x25\xae\xb5\xad\xc2\xae\xb0\xbe\x6c\xb6\xde\xfd\xc9\x42\xee\x14\xdd\x3e\x84\x1a\x36\xaa\x4f\x8a\x42\x7d\x1a\x4e\x86\xc4\x80\xc1\x7a\x5a\xfb\x21\x56\xbe\xe2\x66\x85\x0b\xe1\x57\x31\x4b\x76\x27\xd5\x3b\xff\x5b\xc2\x4b\x4e\xa6\x6c\xee\xe0\xe7\x5c\xae\x19\x2c\xae\x2b\x9c\x40\xca\x1f\x53\x31\x72\x57\x8a\xbb\x2c\x02\xfb\x20\x29\x89\xba\x81\xdd\x4a\x2c\x64\x7e\x87\x57\xcc\xec\xa5\x57\x7b\xb4\x54\xe4\x73\x4f\xcc\x7c\xa5\x9e\x8b\x5e\x0a\x94\xde\x40\xb7\x37\xc3\x3a\xda\x18\xb8\x4b\xc7\x58\xdf\xa2\xb3\xa5\xc6\x6a\x5b\x6f\x37\x75\x1b\x00\x2a\x2a\x7b\x2e\x10\x6a\x8b\xb6\x2b\x35\x68\xfd\x39\x47\x59\x86\xdc\x63\xe9\xf5\xd1\x55\xfc\xe4\x64\x8c\xef\xbe\x00\x38\xbe\xcd\xae\x83\xbf\x3e\xe6\x9f\xf6\x06\xdf\x71\xcc\x15\x31\xa8\x60\x46\x4c\x0f\xa9\x4f\xf8\x34\xfa\x33\x8b\xbd\x3c\x6f\x5a\x02\xa3\xbf\x11\xb6\xd0\x88\xe9\x81\xc3\x7f\x35\x2d\x4c\x1a\xa0\x97\xa5\x7f\x0e\x50\xe0\xd9\x0a\xfb\x5d\x5b\x56\xfb\xea\xc9\xad\xa7\xf7\xa8\xd5\x89\xcb\xf3\xc8\xc6\x22\xd6\x5e\x01\xf6\x88\x4c\xf7\xf2\x7e\xbe\xe6\xe4\x84\x34\x88\xb0\x40\x3c\x63\x78\xb8\xd8\x72\x94\x9c\x47\x90\x78\x55\x78\x9c\xb9\x8a\xa4\x7a\xa8\x82\xb2\xb6\xac\x78\x68\xbb\x10\xb3\xb2\x71\xc4\x55\xf2\x43\x2d\x58\x84\x16\x28\xde\xe2\x6f\xd2\x19\x4b\xb8\xab\x73\x2e\x0f\xab\x7d\xa0\x55\x59\x3e\xa4\x0d\x3c\x99\x13\xf1\xd4\x13\x22\x90\xd7\x7a\xb0\xc7\x16\x57\x04\xec\xf1\x41\xae\x14\xe8\x2c\x73\x92\xeb\xd2\x35\x7b\x5e\x0a\xc4\xc5\x7b\x97\x5f\x13\x67\x88\xba\x95\xe2\x28\xbb\x13\xfa\x25\xb8\x5c\x99\x29\x28\xc3\xf9\x8f\xba\x78\x80\x96\xb1\x8c\xd6\xbe\xbf\x8b\xc2\x3b\x7d\xf3\x40\x6f\xa1\x01\x93\xb9\x90\x48\xca\x99\xf5\x72\xb8\x30\x1c\xe5\xf2\x35\x51\x04\x24\x1e\xb8\x9e\x53\x0a\x9e\x4c\x0a\x2d\x7b\x0d\xd8\x01\xef\x12\xa0\x27\xd3\x80\x73\xca\xfa\x89\x20\xb4\x3d\xc3\xf4\x58\x1c\x8f\x48\xf1\x5c\x11\xe1\xff\x15\xbd\xdf\x6d\x2c\xf9\x3d\x14\x28\x6b\x54\xd1\xf5\xff\x9d\x22\xaa\x3d\xe3\xb3\x17\xb4\x69\xf8\xdc\x2b\xc4\xa9\xd3\x6c\xc0\x73\xce\x70\xc4\xfa\x82\xd7\x8c\xa2\xbd\x3d\xbb\x6f\x8d\xf0\xa2\xb3\x4d\xc0\x21\xcd\xd2\x23\x36\xe4\x1f\x82\x2f\x10\x14\xf3\x0a\xf4\x25\xee\x72\x56\x17\x34\x24\xc7\xb7\xdc\x10\xf6\x08\xa1\x19\xc0\x7e\xb6\x8a\xba\x19\x72\xeb\xac\x00\x07\x8f\x3c\x39\xf3\xe2\x8b\x09\x7f\xb7\x9a\x28\xe3\x1a\x70\xb3\xdb\x54\xb3\xcc\x73\xa3\x4c\xd6\xd8\xc0\x4d\x34\xe5\x92\xb5\xac\x8b\x46\xb0\x8e\xe3\x0f\xa7\x2f\xce\x04\x57\x03\x67\x46\x23\x3a\x4f\x16\x57\x33\x25\x77\x9f\x26\x8f\xee\x87\x29\x01\xf6\x3e\x6d\x1c\x3a\xc1\x27\x01\x01\xc8\xdf\xd1\x8a\xe1\xdd\x10\x6a\xa6\x46\xaa\x29\x0c\x5d\x6a\x58\x40\x8f\x20\xe0\x4a\x1d\x48\x67\x2c\x44\x07\x57\x8b\x73\x7b\x6e\x77\x4f\xd1\xe7\x7b\x72\x10\x4f\xdf\xb5\x5f\x7a\x48\xe7\xf6\xee\xdf\x56\x2b\xf6\xd1\x65\x28\x17\x25\xdb\xba\x94\x19\x2f\x23\x1b\xff\x10\x0e\x7f\x82\xf5\x96\x33\x4f\x30\xd9\xda\xd5\x68\x3e\xac\xc9\x56\x54\x99\x3b\xf2\x8b\xc3\x2b\x51\x93\x58\xa2\x2b\x82\x33\x2f\x7e\xc3\x33\x0d\x73\x33\xdd\x29\x08\x06\x93\x2b\x4e\x8e\x11\x85\xdf\x6e\xf8\x9c\xc9\x8c\x84\x92\x37\x38\x64\x56\xf5\xb8\x91\xfa\x96\xcf\xdd\x64\x6c\xad\xdc\xde\x0a\x1a\x0d\x59\xed\x6f\x2c\x3b\x8e\x58\xb0\xf4\xf2\x7b\xff\x67\x56\x58\xae\x1e\x9c\x6e\xea\x99\xe6\x1e\x3e\x69\x52\x10\x7e\x23\xe6\x91\x31\xc9\xa5\x3e\x41\xc5\xc8\xd2\xb8\x27\xf9\x3f\xe3\x5f\xca\xf5\x69\x35\xe6\xb2\xa2\x3f\x33\x1f\x58\x6f\x70\x79\x66\xab\x3a\x08\x63\xfb\x8a\x08\x9e\x97\xe0\xc4\xba\x81\xa0\x19\xf8\x40\x7b\x7f\x1c\x3d\x7c\xfa\x7f\x2f\x8c\xca\x46\xab\x5f\x4b\xb7\x30\xd7\xe8\xfb\xf8\xda\xab\x56\x67\x70\xf7\x24\x0c\xa5\x8b\x1b\xd4\x8d\xc9\xd0\x1d\xa8\xe1\x4c\x98\xd4\xbd\x97\xd5\x9e\x8a\xd0\x3e\x8f\x94\xcd\x74\xd2\x94\x70\xcb\xcc\x19\xd2\xb8\x6b\x2a\x58\x00\xd6\x38\x54\xb5\x2f\xfa\xa2\x5d\x2c\x16\x53\x32\xaf\x1f\xc2\x5d\x5e\xe6\x63\x62\x8d\xe3\xa9\x95\xb0\x39\x85\x3d\x69\xe9\x72\x77\x03\x42\x7b\xd6\x03\x59\x61\x30\xca\x6f\x9a\xc7\x9a\x3d\x55\x9e\x16\xb3\x56\x1e\x14\x2b\xf6\xea\x87\x47\x3a\x4a\xee\xd6\x99\x41\xae\x87\x62\xd1\xcc\x60\x2e\x45\xf9\x55\x8b\x6c\x5e\x97\x0a\xba\xb0\xad\x98\x4e\xb1\x39\x16\x5b\xf6\x53\x4e\xd7\x53\xb7\x32\x51\x26\xc7\x42\xa5\x86\x51\xfa\x54\x3d\xb2\x6e\x4b\xba\xff\x51\x70\x23\x54\x5e\x8f\xd3\xb8\x39\x4b\xe9\x02\x0a\xd5\x31\xae\xa9\x00\x7a\x3a\xf0\xd1\x22\x89\xb5\x6c\x3c\xd2\xb5\x09\x7c\xf2\xbf\xaf\x17\x4c\x63\xef\x7c\xbb\x13\x5f\xc2\xa3\xf2\x2a\xa2\xa1\xf3\x41\xdd\x47\xf7\x66\xcc\xc3\xb9\x2d\x70\x83\xaf\xf8\xab\xfe\x8f\xf5\xa1\x12\xac\xd5\x2a\xcd\xc0\xc3\xbf\xc9\xa9\xad\x0a\x0f\x12\xfc\x5c\xda\xbd\x05\x9e\xd9\xd8\x75\xfa\xf2\xad\x68\xfb\xf6\x98\x70\x2f\x48\x9c\xf4\xb3\x71\x0a\xd3\xf6\x07\xbf\x70\x4f\x41\x7b\x27\xf7\x64\x18\x10\x49\xd3\x7d\x3a\x25\xc8\xbb\x33\x16\xd6\xfc\x08\xa1\xf0\xeb\xe4\xb4\x17\xb1\x29\x3b\xe4\xd2\x67\x8b\x65\xe6\x94\xed\xd3\x4b\xed\x8c\xb4\x2b\x27\x9e\x93\xff\xd8\x97\x9f\xaf\x4f\x3c\xe4\x10\x5d\xaa\x1a\x33\xe1\xe0\xe9\xdc\x19\x93\xa7\x51\xf2\x93\xc6\x24\x29\xc4\x08\xbe\x31\x55\xe2\x99\x33\x6d\x5c\x08\xd7\xa2\x7f\x34\xd9\x82\x78\x25\x95\x3a\x2b\x07\xd1\xe7\xd0\x9f\x3b\x24\x31\x12\xce\xe7\x56\x29\x43\x04\xfc\x5c\x8b\x54\x03\x66\x68\xde\x45\x47\x01\x3d\x91\x5e\x49\x7c\x7d\x5c\x54\xfe\x88\x94\x7f\x34\xde\xf4\x8d\xd4\x74\x58\x3d\xc2\x43\xc2\x3d\x95\x5b\xa8\xc3\x7d\x39\x7e\xb7\xab\x07\x43\x1e\x69\x6d\x7d\x04\x3e\x8d\x07\x6f\x91\xa0\x05\x35\x69\xab\x39\xf0\xae\xb8\xae\xa5\x4f\x48\x0d\xcf\x99\x25\x34\xf2\xd4\xcc\x7f\x29\x1c\x21\xa4\xfc\x60\xf9\x25\xbc\x91\x6b\x7e\xe1\x84\xb0\x42\x96\x58\x10\x27\x5f\x23\x5d\x9a\x7f\x49\x11\x23\x6a\xcf\xb7\x51\x6f\x12\x5e\x95\xcd\x12\xeb\x0f\x13\x1a\xfe\x23\x96\x1d\x38\x76\xc4\x12\xc5\x0f\xf2\xa7\x6a\x71\x81\x47\xdf\x76\xba\xd1\xc8\xe3\xb5\xcd\x38\xf4\xfa\x93\x4f\x9b\xc6\x68\xcf\x91\xb5\x4d\x25\xa4\x46\xad\xdd\xfa\x63\x14\x26\xa9\x6c\x15\x8c\xa6\xf8\xb9\xaf\xc0\xd0\x16\xd6\xf4\x2b\x14\xb4\x83\x96\xde\x2a\x05\x51\x29\x14\xb2\xd8\x4d\x50\xa5\x88\x2d\xde\x26\x01\xe4\x5b\x0b\x45\x64\x29\x92\xfc\x82\x06\x85\x91\x38\x03\xd3\x1d\x55\xd8\x78\x8e\x54\x69\x61\xee\xd0\x45\x46\xb6\x28\xb6\x03\xa8\xc3\x0e\xdf\x96\x49\xd4\x40\xf7\x6e\x33\x15\x7d\xb5\xfb\x65\x2d\x0d\xef\x5a\xff\x33\xb7\x03\xbf\x5b\xaf\x93\xd5\x45\xd2\x6c\x52\x4d\xba\x4a\x5a\xad\xd9\x0f\x11\x20\x66\xd6\xd0\x7b\xd5\xe2\x14\x6a\x24\x6c\x2e\x81\x5e\xd6\xd5\xc9\xdc\x41\x16\x4c\x87\x91\x83\x31\xe7\xd3\x3f\x89\x5e\x78\xa6\x19\x09\xc2\x03\x42\xe1\x8c\x37\xde\x1e\x26\x30\xd2\xba\x85\x82\x51\x46\x72\x37\x30\xf0\x93\x16\x8b\xce\x6c\x64\x4e\x4b\x5a\x3b\x37\x1a\xd2\x79\xa1\xe5\x1e\x4a\xba\xdb\xa1\xd1\x1e\x23\xd4\x05\xa9\x30\xc4\xd7\x35\x90\x73\x38\x49\x62\x8d\x37\x93\xa6\x48\x9b\xb5\x69\x21\xff\x88\x42\xd5\xcb\xee\x9d\xd8\x57\xd5\xf9\x96\xeb\x6c\x1d\xb5\x0c\x12\x10\xf8\x78\xff\x02\x41\x14\x0b\x1a\x43\xe0\x12\x08\x9e\x53\xcd\xb8\x52\xd2\x8d\x69\x6e\xec\x2f\xb6\x7f\x8f\x67\xf7\x0a\x21\xfa\xc3\x17\xb7\x07\x81\xa7\xc3\x66\xeb\xab\xf0\xfd\x96\x91\xee\xef\x48\x8f\xd6\xab\xed\xab\x68\x64\xc7\x69\xd3\x14\x36\xac\x35\xa6\x5a\x92\x08\x34\xbc\xc8\x6b\x25\xa5\xd6\x77\x24\xef\x92\x79\x6a\xde\x87\x1e\x12\xda\x2a\xb7\x5d\x56\x10\x59\x65\x4d\x3a\x96\xac\xbd\x65\x3f\xf9\xbf\xc2\xaf\xd7\x92\x50\xda\x38\xe6\xb6\xaf\x08\x1b\xe2\xcd\xbe\x3b\x88\x65\x39\x9f\x09\x32\xb4\x9f\xd5\xa8\xfd\xcd\x11\x23\x9b\x71\xaf\xc8\xde\x0c\x58\xa3\x3f\x6e\xeb\x1b\x4c\xa1\xd5\x78\x5c\x03\xfe\xab\xd5\xfb\x71\x2f\x32\xa0\xbd\xa5\x23\x94\xbc\xd1\x40\x57\x41\xe5\x7c\x59\x29\x9d\xd9\xc4\x73\xb5\xd4\x2b\xa6\x92\xe7\x6b\xd1\x23\x3f\x3e\x1e\xe3\xfc\x7c\x9b\x12\x0e\xfe\xdc\x35\x95\x65\xe2\xf7\xbc\x8b\x5c\xbe\x64\xc1\x5c\x2f\x70\x28\x55\xb7\x5c\x88\xf1\x4c\xea\xb0\x3a\x9c\x41\xdd\x9a\xae\xd9\x9a\x91\x01\xa2\xd9\x3c\x78\x38\x01\xfa\xdb\xd2\x7f\x30\xc6\xf2\xba\x73\x66\x9f\x97\x2d\xad\x7b\x73\x23\x05\x52\xde\xde\x35\x95\x47\xdc\xac\xdb\x68\xbb\xc9\x73\xb9\xcc\xb6\x68\x4d\xc0\xbb\x60\x31\xa5\xfc\x41\x55\x4e\x74\xd8\x63\x91\x6f\x99\xc1\xee\xa2\x22\xae\x69\xab\xc6\x0d\xc2\x6b\xa9\x83\x32\x32\xa2\x4b\xa9\xaf\x39\x24\x25\x56\xd3\xfa\xa0\x42\xca\xf8\x9c\x6a\x86\x1f\x56\x26\x55\x9b\x8c\xb3\xae\x2d\x8d\x24\x56\x66\x28\xb8\x32\xff\xe9\x1d\x40\xb4\xe6\xe3\x61\x14\xe4\x52\xe3\xf4\xc1\x37\xa6\x3f\xad\xeb\x7b\x69\xb8\x9c\x1a\xeb\x89\x48\x5e\x50\xb1\x7c\xd3\xa0\x70\x73\x8e\x47\x3e\x9d\xc4\x8d\x8c\xab\x09\x85\x72\x84\xe4\xee\xc0\x16\x05\x42\xa2\x89\x83\xba\x92\x66\xbc\xbe\x8e\x9a\xda\xb5\x78\x1b\x71\x9c\x76\x58\x22\x9c\x8b\xd1\x70\x2d\xc9\x0d\x79\xd1\xc6\x30\xbd\x80\x25\xd5\xb3\xa8\x34\x08\x74\x1a\x32\xd6\xa0\xcd\x76\x11\x16\x9f\xdf\x76\xfc\x05\x9e\x5d\x44\x78\xba\x0a\x33\x2e\xdf\x39\x96\x41\x5d\xa8\xba\xba\x9b\xc7\x39\x5e\x08\x1e\x0f\x10\xd3\xc9\x28\x68\x6c\x90\xbf\x98\x34\x91\xc7\xad\xf6\x30\x9e\x23\x66\x5d\x3b\x27\x86\xc9\x57\x49\xff\x67\xe4\x3f\x9b\x04\xe3\x37\x91\x24\xad\x2b\x16\xd2\x51\x53\x12\x21\x76\x92\xb1\x91\x3c\x6a\xce\xce\x09\x6a\x38\x09\xcf\xe8\x54\x3d\xd0\x4a\x48\x49\xbe\x13\x84\x25\xdd\xbb\xee\x0c\xfc\x1f\x4a\x2d\x99\xee\xe4\x0f\xda\x23\xdd\xf3\x64\x00\x67\x9c\xbd\x7b\x12\xcf\xa9\x90\xb3\xbe\x53\x2d\x36\x93\x32\x33\xa6\xa9\xb4\x1d\x7b\xd4\xe8\xa8\xf3\x24\x92\x92\x67\x6d\x12\x19\x46\x8a\x31\xb5\x3a\x0a\xfe\xe0\xc3\x6c\xff\x2e\xf8\x82\x55\x81\xcb\x9d\xe0\x03\xad\x2b\x1e\x17\xc3\xac\xa4\x94\xbd\x77\x23\x47\xf8\x28\x01\x3e\xb1\x0c\xf8\xa9\x90\xcd\x84\xd7\xe0\x88\xc4\xc2\xbc\x54\xe8\xb7\xdc\xd3\x4a\x0b\x58\x31\x66\x29\x48\xff\xf9\x1d\xc2\x85\xf0\xc0\xb3\x43\xda\x60\x6c\xe3\xd9\x2f\xf1\xc9\xf8\x94\x9d\x48\xb5\xad\x08\x9d\xd1\x01\x63\xd5\x20\xeb\x46\xb2\x4d\x9e\x7f\x79\x9e\xa8\x4b\x8e\xef\x64\xec\x1d\xef\x60\x9f\x60\x9f\x4e\xbf\x14\x1f\x1e\x6b\xe6\xa0\xeb\xbe\xef\xb5\x3e\x86\x7a\x04\xbc\x90\xfe\x13\x31\x19\xe2\x2a\x70\x23\x86\x2f\xc2\x9e\x38\x19\x7f\x37\x56\x05\x5a\x9c\x2b\x95\x39\x00\xfb\x5b\x09\x2d\xa9\x44\x1c\x10\xdb\x5d\xa9\xe7\xbe\xb4\x05\x0f\xd7\x73\x7d\xe1\x51\x7f\xb1\x73\x41\xed\xd0\x80\x67\x3b\xbb\x16\x3b\x3e\x3c\xa3\xfb\xae\x1a\x1e\xb9\x0d\x01\xbe\xcb\x6e\x8f\xf3\x96\x43\x20\xae\x93\xb1\x9f\x22\x6f\xb9\xd2\xfb\xf4\xc7\x2c\xb8\x84\x5a\x37\x24\x98\xba\xa6\x6a\x2b\x26\x2b\x7a\x34\xca\x58\xa7\xe1\x7c\xb4\x05\x2a\x32\x32\x03\x9a\xc9\x0f\xb3\xcb\xc2\x98\x61\x7d\x15\xae\x89\x66\x88\x4b\xcd\x35\x39\x83\xc8\x78\xf2\x14\x87\xfc\x6a\xb4\x10\xc2\x74\xfe\x4d\xb3\x06\xc6\xe1\xda\x1b\x2e\xc7\x2b\x4e\x7f\xf7\xc9\x3e\x47\x0e\x87\xe3\x1f\xc2\x3c\x1d\x6e\x34\x4d\xc6\xdd\xb3\x07\x17\xba\x26\xfe\xb1\xfd\x93\xf0\x3c\x2d\xd7\x46\xc6\xef\x5a\x56\x99\xf5\x84\x4d\x63\xde\x45\x9b\x43\x9d\x1b\x05\x3a\xf6\x3e\x32\xab\x45\x19\x4e\x8d\x02\x3b\x25\x43\xee\x59\x94\xb4\x72\x94\x9f\x28\xe2\x7b\xd3\x54\x58\x0b\xfc\xbc\x27\x3f\x89\x09\xc1\x4a\xde\xe3\x10\x5c\x4d\xa4\x72\xd2\x06\xd7\xea\x9c\x7f\xe9\xa7\x7e\x64\x08\x83\x99\xf7\x1c\x3d\x4b\x98\x36\xfb\x3a\x97\x99\x2e\x63\xee\xd2\x79\x33\x7b\xd7\x9c\xa7\x2c\xa0\x00\x66\x9a\x9f\x3c\x5d\xc2\x6f\xb4\x1e\x70\xb1\xdc\xdd\xb0\xdc\xf6\x67\x55\x92\x91\xbc\xee\xaf\x9a\x57\x26\xc9\xb2\x2d\xf5\x57\xcc\x05\x04\xea\x1a\x2a\xad\x96\xc9\x67\x8d\x4f\x1d\xf6\xe1\x15\xdd\x32\x5e\x39\x80\xe8\xf0\xed\xb0\x11\xc8\x17\xea\x2d\x5a\xe0\x9a\x0f\xd5\x82\x96\xbf\xd6\x1b\x4d\x27\xef\xf3\x1f\xbe\x98\x53\xfd\xe6\x3b\xaf\xb2\x0e\x9d\x1b\xeb\xaf\x2a\x59\xf5\xa4\x06\x28\x55\x02\x7a\x1e\xb5\x02\x75\x1a\xda\x9a\xe9\x79\x8d\xef\x35\x18\x83\x7c\x5a\xdc\xd5\x0c\x1d\xe6\xdb\x5e\xab\x76\xe9\x8f\x77\xce\xab\x36\xc8\xf9\xf6\x50\x34\xf8\xf9\xe7\x7b\x4f\xb5\x4c\x08\x13\x8f\x43\x8c\xa8\xd0\xf3\x71\x5d\x7b\x53\xc8\xda\x14\xc2\x9b\x03\x92\x48\x19\x65\x17\x5b\x59\x0b\xf3\xe6\xfd\xf4\xb6\x30\x0f\xc1\x47\xfb\x78\xb9\xdd\x55\xbc\xed\x8d\x57\x5f\xa0\xfc\xfd\xe3\xe6\xde\x38\x45\xa7\x99\x9a\x6e\x57\x25\x68\x9b\xe9\x63\x3d\xd9\x6f\xb9\x76\xfd\x39\x52\x4c\x61\xb3\x83\xeb\xe2\xbc\x2e\xc3\x23\xda\xa2\xc9\xc6\x98\xb1\x04\xe1\x47\xf2\x93\x53\x80\x90\x38\xaf\xce\x8c\x90\x08\x0b\x5a\x64\xd6\x40\x45\x16\xf5\x74\x0e\x67\x84\x40\x99\xcd\x19\xd9\x33\x21\x88\x31\xee\x54\xeb\x97\xaa\x59\x04\xda\xdd\xe7\x3f\x6a\x48\xec\xcb\xcf\xaf\xb6\x87\xf0\x44\x9d\x1e\xac\x62\x85\xde\x7e\xc4\x2e\x33\x3e\xc0\xec\xdc\x5d\x10\x14\xfa\x3d\x24\xb7\x60\x2b\x60\x54\xa1\xb5\xb0\xc0\xab\x91\x10\xb2\xf8\x80\x73\xdb\xeb\xe7\x52\x0f\xed\xa2\xb9\xe1\xaa\x1d\x81\xa0\x44\xde\xb8\x80\x7e\xc5\xb7\xb0\xd8\x49\xfa\x40\xfa\xb0\x90\xc8\xce\x4e\x84\x2c\xe4\x29\x14\x63\x5b\x16\x4c\xf4\x3d\x30\xc9\x39\xe5\xe4\xe8\x93\xde\xca\x10\x8a\xd6\xf1\x44\xdb\x36\xe5\xf9\xb1\xd8\xe4\x0e\x35\xe9\x19\xfe\x09\x37\x45\xeb\xfc\xc6\x56\x3f\x4d\x7f\x57\x78\x3b\x81\xb2\x34\xf1\x6c\xbb\x8a\x84\xab\x6b\xdc\x72\x21\x78\xa4\x14\x3c\xa1\xe2\xfb\xfc\xe4\xd7\x3a\x71\x1f\xac\x90\x6b\xb9\x58\x4d\x55\xc8\xfa\x0e\x5a\x9d\xf7\xdd\x52\x02\xc9\x9a\xe2\xb5\xe8\x44\xc1\x92\xb6\x17\x56\xa8\x70\xe2\xcf\x45\x59\x59\x1b\x5c\x73\x85\x29\xe9\xd9\xd1\xf7\x96\x13\xf2\x9d\x23\x4c\xaf\x03\x59\xe2\xe9\xbd\xb9\x8f\x44\x89\x53\xa7\x8d\x43\x32\xef\xbe\xf5\xd6\x2b\xe2\xda\x66\xc6\x56\x3b\x91\x6d\x2c\x7d\x6b\x0d\x8f\xae\x5f\xdd\xb4\xc5\x05\xa4\xf2\xac\x67\xe1\x6a\x03\x12\xd7\x74\x70\xa1\x36\x5f\xd6\x42\x70\x77\x75\x2e\xaf\x37\xa3\x3e\x08\xc7\x2f\x9d\x12\x5d\xa8\xa0\xc5\x4f\xa4\x5f\xe4\xd6\x45\x7d\xf2\x4f\xd2\xea\xc2\x47\x4a\x23\x49\x08\x5a\x32\xe1\xb2\x23\x87\x6c\x6c\xbb\xd0\xa5\x82\x7c\xd9\x16\xd0\xa9\x87\x36\xef\x81\xb5\xab\xa3\xd9\xfa\x9c\xda\xbc\xd0\x45\x7d\xf3\x0d\xc1\x78\x6a\xd7\xb5\xb2\x09\x02\xad\x89\x2b\x47\x82\xa4\xde\x32\x90\xf4\x91\x0c\xb4\x69\xc5\x32\x11\x2b\x6a\x3f\x78\x73\xe0\x5a\xea\xf4\x6c\xb9\x71\xd7\xe6\xef\x18\x68\xa0\x6c\x66\x5f\x50\x88\xd8\xe4\xd9\x27\xc4\xdf\xf8\x92\xd9\x69\x42\x3d\x91\x61\x76\x10\x3f\x0d\x9b\x1e\x1b\xdb\xe1\x82\x26\x4e\xa8\xee\xdc\x40\x34\xb6\xb5\xf6\x98\x21\x0f\xda\xeb\xba\xda\xe0\x0f\x06\x18\xbb\x36\x51\xfb\x03\xbc\x6d\xf9\x58\x50\x9f\x5e\xcd\x22\xbe\xac\x9d\xbe\x30\x8d\xa4\xd8\xaa\x99\x2a\x49\xc6\xb4\x2d\xc7\xaa\x10\x0d\xea\x0d\x3c\x1f\xe1\x7c\x1a\xcc\x6d\x06\x81\xa4\xe9\x9b\xaa\x56\xa8\xf3\xe9\x0e\x52\x1d\xee\x60\x46\x84\x60\x40\x44\xce\xc4\xe0\xf1\xa4\xec\x99\x2e\x9c\x3d\x84\x3c\x50\x7c\x48\x0f\xad\x1a\x7b\xbb\xa7\x08\xb5\x9d\xb8\xb9\x9d\x0b\x31\x9e\xeb\xd9\xd4\x44\xa5\x76\x35\xf4\x14\xc1\x2d\x86\x53\x7a\xb5\x51\xb2\xa3\xdc\x5d\x4e\x38\xf0\x00\x53\x0d\x89\x78\xef\xf1\x50\xbe\x30\x09\xda\x5d\x15\xbf\x89\xff\xaf\xa3\xcc\xd7\x05\xf1\xae\x2d\xc0\xe8\x01\x5b\x69\xdb\xbc\xf0\x24\x2a\xb0\xaf\x01\x1b\x42\xb0\x1b\x39\x43\x7f\x20\xc7\x4e\xa5\x62\x76\x15\x16\xa7\x4e\x81\x38\xb6\xe3\xee\xbd\xe3\xef\x60\x83\xfe\xa5\xc3\x41\x28\xf3\x88\xe7\xde\x3a\x94\x79\x5c\x7b\xab\x01\x4c\x3f\xfd\x63\xed\x23\xd4\x79\xbc\x67\x62\x80\xb0\xd4\xf7\xab\x6d\x97\x33\xbd\xbd\xa9\xb4\x9a\xe7\xb8\x39\x36\xdd\x8f\xbf\xa8\xc1\x2f\xe2\x2d\xff\xa5\xda\x68\x57\x1d\xee\xb4\xaa\x57\xda\x27\xd4\x5b\x35\xb9\x7c\xb7\xa8\xbb\x35\x55\xe0\x7c\x71\x91\xfe\x0d\x70\xa5\x9a\xea\x48\x07\xe8\xb1\xfb\xcf\x49\x80\x4d\x02\x80\xb5\x09\x1f\x97\x40\xc5\xda\xbf\x1f\x7b\x81\x59\xfb\x48\x4f\xff\x40\x72\x86\xc4\xf7\xbb\xc1\xd0\x51\xf8\xc6\x31\x31\xb5\x67\x67\x58\x82\x77\xa6\xf9\x76\x7d\xa6\x70\x49\x4d\x53\x3e\xfc\x51\x4b\x79\x6d\xfc\x99\xe4\x7f\xa5\x62\x01\xf3\x52\xb4\xa2\x42\x1b\x2e\x49\x9e\x42\xa8\x72\xb6\xf4\x76\x61\x32\xaf\xa0\x82\x62\x31\x27\xe2\x9f\xba\x79\x99\xc9\xdd\x72\xdb\x9b\x0d\x2e\x8c\x50\xcf\xc6\x56\x17\x96\x1d\xf8\xe5\x1a\xd8\xf1\x57\x04\xa6\x11\x75\x72\x0d\xce\xd0\x6e\x7f\x5a\x08\x21\xf7\x7d\x7c\xfe\x97\x58\xd0\xc1\xb9\x6a\xce\xff\xa2\x5e\xa7\xaf\x49\xa2\xba\x2c\xa0\x42\x4e\xbe\xa2\xf0\x5b\xe6\x27\xb5\xa4\xbc\xab\x51\x8d\x9a\x37\xb2\x7f\x7b\x0e\x68\x1f\x66\x49\x99\xf6\xe9\x0f\x64\x09\x2b\x48\x98\xec\x64\xe7\x0b\xa0\x2d\xd3\x72\xdb\x09\x22\xf6\xdb\xf9\x38\x96\x0c\xff\xe0\x1a\x6e\xf0\x85\x24\x50\xef\x31\x8b\x04\x7a\xa5\xa0\xff\x58\x00\xa3\x51\xb2\x7c\x3c\x87\x6d\xa8\xfa\x72\x32\x49\xac\x6e\x8e\x3d\xcb\x16\x0c\xa8\x9a\x59\x32\x96\xb1\x2f\x72\xeb\x05\xd4\x56\x73\x04\xcb\xf7\xf4\xa6\x32\x76\xd3\x8c\x4c\xb4\x53\xb7\xc3\x0a\x2d\x2f\x25\xef\xba\xae\xd8\x72\x26\x7b\x1a\xcd\x3a\xf2\xa6\xc4\x28\xf2\xb9\x2d\xa5\xcd\x08\xed\x7b\xa7\x66\x46\x51\x7a\xfc\x62\x72\xd2\xa0\xd4\xb8\xf4\xb2\x52\xc0\x24\x9b\xae\x45\x1f\xf4\x1b\xfb\x3c\xf5\xf8\x14\x45\x88\xce\xb4\x38\xa9\xa2\xb4\xe6\xbd\x3a\x35\x11\x6a\x2c\x75\x39\x4d\x93\xbf\x9a\x9b\xb5\x20\xa4\xdd\x90\x46\xdf\x3d\x6a\xea\x9b\x64\x59\xc1\x6d\x5b\x10\x5f\x9a\x86\x70\x61\x8c\x0d\x0e\x4d\xf3\x54\x8e\x09\x77\x3e\xf1\x15\x8e\x95\x36\x9a\x0e\x58\x8e\x37\x53\x6a\x0b\x91\x49\x7a\xf4\xf0\x7e\x04\x35\x55\x82\xb6\x16\x1d\x92\xa9\x0a\xff\x9d\x36\x56\x62\x02\xc4\x94\x9c\x34\xfc\x04\x76\x08\x05\x21\x47\xcf\x29\x94\xcc\xa8\x8e\xe7\x57\x78\xad\x13\x9b\x9e\xfd\x56\xca\x4f\xef\x3f\x49\x32\xf0\x4d\x0c\x5a\xb8\x6d\xc3\x13\xed\xda\x9d\xe3\x46\x1f\xd1\x54\xd1\xe9\x47\x1f\x2e\x97\xf6\x23\x94\x29\x0c\x1c\xa6\x1a\xc1\x1e\xda\xe4\x22\x10\xed\x15\x36\x62\x1c\x13\x57\x1e\x79\x47\xe5\x5a\x62\x45\x4c\xac\x98\x44\xca\x62\x42\x32\xa7\x52\x7a\x64\xca\x20\x5a\xa6\x50\x2d\x77\x12\xee\x58\x37\x50\x8d\x46\xde\xa1\x4a\xba\x1f\x9c\x2b\x73\xbd\xf1\x6c\x7a\xbe\x26\x37\x13\xf4\xf1\xc5\x45\x33\xb9\x48\xbe\x53\x69\x67\xe9\xd0\xf8\x85\x8f\xfe\x2a\x81\xf0\xae\xe1\x08\x54\x00\xa5\xd2\x31\x8e\xdb\x3f\x34\x43\x2c\x99\xce\x2f\x27\x2c\x22\xed\xc0\xf7\xb9\xcb\xeb\x2c\xb8\x5f\xa1\xf1\x79\xae\x40\xc0\x89\x8a\x7e\x7e\x5e\xc8\x43\xb1\xc7\x85\xab\x11\xd3\x5c\x87\x25\x22\xb1\x10\xcc\xdf\x5a\x74\x6a\x2d\x82\xd4\x1a\x9f\xff\x01\xa5\xc7\x8d\x30\x79\xf1\x52\x42\x7a\xc6\x66\xf8\x4d\xa3\xe1\x57\x97\xf1\x57\x85\x3e\xe1\xde\x27\xcf\x75\xc3\xef\x78\x3d\x5b\x3e\x4c\x38\xf5\x2c\xea\x7b\x90\x11\xee\xb1\x55\x93\x9e\x13\xec\xf1\x30\x5b\xa7\xf0\x82\x9b\x7a\xf8\x5a\xc9\x8c\xab\xa2\xeb\x49\x79\x93\x6b\xaa\xc9\x68\xe5\x5f\xf7\x1a\x95\x6f\x35\x8c\x5e\x99\x62\x07\x75\x72\xfe\xaa\xdc\x84\xfa\x2f\x21\x0e\xb8\xfb\x6d\x3a\x51\x58\x78\xd1\xe3\xef\xa9\x01\x08\xa7\xff\x6b\x89\x81\xa6\x54\x9d\xd0\x0f\xab\xde\x13\xa6\x4f\xdf\xd7\x24\xba\x39\x1c\xbc\x0a\xca\x2e\x71\x64\xde\x40\x14\x1d\x38\x96\x8c\xc8\x94\x7d\x73\x4c\x69\xfc\x5d\x75\x64\xff\x31\x4f\xa3\xee\x97\xcd\xdf\xc8\xfa\xc6\x37\xd6\x46\xee\xc6\x2d\xba\xd6\x36\x66\x99\x6d\x3e\xb6\x57\xd5\x2e\x76\x54\xd8\xdb\x88\x29\x76\xee\x39\xe7\x72\x5d\xee\xda\xf4\xc8\xc6\xb8\xf4\xe7\xf8\xdf\x82\x2a\x8d\xa7\x44\x39\x41\xe6\xa8\xac\xb4\xe8\xb5\x08\xdf\x6c\x79\xd8\xd7\x7f\x09\xc2\x6a\xf5\x9f\xd1\x65\x26\x06\xbf\xde\x30\x34\x08\x59\x70\xef\xfd\x69\x59\xb4\x28\x9e\xb9\xd2\x46\x67\xd1\xdb\x31\xdc\xe9\x6f\x5a\x56\x44\xed\xf9\x63\xf8\x29\x86\xf5\xf1\x37\x03\x0b\xcf\xb8\xfe\x17\xfa\x7e\x16\x37\x86\xdc\xf4\xce\xd5\x80\x91\x14\x03\xd4\xc3\xca\xd1\x17\x46\xca\xd4\xd4\xb1\x24\x4b\x7d\xc4\xf8\xd4\xa9\x8b\x3a\x8c\x7d\x46\xc0\xdf\x0e\xe0\xfd\xbf\x62\x99\x90\xa4\xc9\xc7\xfa\x39\xa8\xf4\x8b\x28\xf5\xc3\xa7\x56\x7d\x85\xb1\x37\x2f\xa7\x82\x35\xcb\x5f\x7f\x18\x5d\xd5\x01\xaf\xeb\x8f\xee\xeb\xf8\x0d\xa4\x8e\xff\xd5\xb0\xab\x30\x9a\x1c\x53\x89\x4c\x98\x9e\xb6\x55\x0c\xf5\x0d\x99\xe5\x91\xab\xb5\x56\x9c\x1f\x92\xae\x56\x7f\xb8\x94\x28\xd9\x25\x3c\xbe\x32\x27\xc3\x44\x34\x58\x14\xd4\xa6\xc3\x5a\xcd\xff\xb3\xe8\x42\x0d\xcc\x07\x3b\xdf\x41\x46\x27\x91\xd8\x25\x5f\xb9\xe7\xbb\x73\x02\xe7\x35\x75\xcd\x5c\x87\x2f\x1e\x8e\xea\x0a\xb1\xbf\xa3\x5b\xe7\x11\x87\xbe\xe7\xdf\xb4\x96\x19\x3a\x1e\x5c\x8f\x95\x29\x9b\xea\xd8\x10\x94\x78\xda\x98\xba\xd1\x29\x76\x3b\x23\x79\x63\x43\x58\x32\xe8\xed\x96\xb8\xc0\xb1\x7d\xdf\xee\x32\x37\xa3\xc6\xdb\x9d\x1b\xb4\x5d\xa1\x9a\x95\x40\xf6\x64\xca\xcf\x65\xd3\x47\x9b\x84\xb1\x25\x0f\xcd\x76\x5c\xde\xe2\x2b\x93\x2a\xac\x44\x01\x3f\xb5\xe4\xd9\xdf\xea\x01\x1a\xd3\xe9\x58\x67\x3e\x3b\xfb\xe9\xc2\xb4\x1a\x57\xd9\x99\xde\x13\x34\x37\xeb\x09\x74\x3b\x82\x47\x62\x57\x6b\xe7\x33\xd7\xdf\xa9\xed\x5d\x59\x8e\xb1\x46\xf9\x9d\x8f\xec\x57\xd2\xa7\xb6\x46\xa8\x57\x03\x53\x36\x9e\x91\x43\x6d\xbe\x6f\xd8\x90\x2e\x6a\xdc\xd9\x6c\xc6\x2f\x3f\xa8\x5f\xe1\x24\xff\xa5\x56\x2f\x65\x51\xa5\xc8\x4d\x8b\x9d\xd4\x7f\xa4\xb2\xa5\x7a\xf5\x4d\xfc\x85\xca\x6f\x14\xd8\xb1\x65\x5b\x3b\x25\xfe\xe9\xce\x34\x84\x7a\xe5\x74\x79\xc5\x9f\xfc\xfb\xf9\xf3\xcd\x2c\xda\xaf\x7d\xfc\xf6\x19\x8d\x63\xab\x7f\xbb\x9c\x8a\x1c\x6f\xdc\x3e\x25\xeb\x36\xa4\x6f\x5b\x90\xc4\xd2\xc9\x1b\x35\xc4\xe6\x20\xe9\x27\xc2\x44\x5e\xbb\x84\x27\xc6\x84\x46\xdd\x80\x8d\x38\xec\xec\xc3\x92\x95\xbb\xa4\x14\xea\xc7\xa5\x1d\xf2\x0e\x45\x6b\x89\x99\xd2\x4c\xd6\x5d\x4c\xa1\x4a\x92\x1a\xa0\x2a\xd3\x9f\xf7\x56\xa1\xef\x97\x8c\x77\xa5\x51\x74\x1d\x3b\xdd\x7f\xe1\xb6\x43\x57\x7b\xb6\xd1\x1e\x43\xd7\x3a\xfb\x30\xbc\x43\x75\xcd\xd3\x78\xd1\xc7\x96\x55\x95\x04\xf5\xee\xc4\xe2\xbf\x24\xfb\xb6\x1f\xc9\xdd\x64\x4a\xfb\x72\x1c\x40\x8b\x9c\xe7\x89\x2a\xa1\x0e\xcc\xdb\x79\x8f\x10\x12\x16\xb4\x0c\xeb\xd1\x7c\x0b\xca\x94\x27\x38\x9e\xf9\x36\x52\x18\x81\x34\xaf\x40\x64\x23\xc6\xcf\x5f\x21\x60\xe1\x3a\x13\xdb\x7b\x12\x50\x9f\x99\x47\xfb\x77\xa0\xef\x97\xc2\x77\x25\xc1\x06\x5b\x5b\x3b\x7f\xe1\xa9\xa3\xe6\x7d\xbc\x68\x8f\xb1\x7b\xdd\x0b\xd8\x1f\xc3\xe9\x8d\xbc\xf8\x8f\x03\xea\x55\xed\x24\xe7\x1e\xcd\xac\x5b\x64\xd1\xce\xa0\x78\x1a\xcd\x6b\x1e\x1b\x79\x42\x2e\x9f\x7f\xec\x74\x13\x27\x37\xef\xa3\x55\x8f\xb9\x3b\x7f\x97\x9c\x8f\xef\x9e\x2b\x21\xde\x20\x2e\xcd\x99\xe0\x9b\xc8\xf8\x39\x7e\xdc\x36\x34\x7a\x04\xf4\x14\x04\xf7\x9a\xc4\xed\xd3\x03\xdd\x33\x16\x7b\x8f\xa1\xef\x97\xa6\x77\xc5\x20\x22\x5b\x02\xdb\x50\x04\x62\xc6\x61\xc4\x1d\x3a\xbb\x96\x39\xc9\x83\xb2\x58\x0c\xe8\x32\xc6\x67\xce\xe5\x56\xe7\x10\xbd\xa6\xaf\x65\x01\xf8\xe9\x09\xb3\x90\x39\xa4\xd2\xd8\x63\x73\x27\x50\xf7\xc4\xdd\x87\x0b\xb8\xfb\x33\x18\xc2\x22\x29\x68\xa6\x03\xe7\x23\x16\x32\xeb\x84\xf8\xa9\x64\x39\xfb\x12\xf1\x18\x7c\xd4\xe7\xf8\x4c\x13\xca\x34\xd4\x78\x7c\x0a\xac\x4e\xea\x1c\xe5\xc3\xa0\xb3\x86\xfb\x43\x10\xf6\xd5\xd3\x3d\x57\xd6\xad\xcd\x3b\x9b\x3d\x38\xa6\xf9\xa3\xd1\x22\xf6\xd9\x09\x42\xcb\x00\xaf\xf4\xb0\x5f\x89\xb4\x80\xcb\x00\x22\x19\x2f\xc0\xf8\xd8\xc9\xb7\x85\x47\xad\x07\x66\x44\xe0\x34\xef\x95\x12\xd2\xe0\xda\xef\x6d\x03\x4a\x65\xef\x8d\xdf\x80\xc6\x6a\xf3\x4c\x26\x81\xdf\x7a\x7a\x4f\xe7\x83\x96\xe0\xe2\x1d\x96\xa7\x1f\xa0\x7f\x7a\xde\x3d\xbf\x0a\x44\x0c\x23\xce\xf0\xb0\xd3\x49\x8b\x53\x33\x60\x67\xc9\xf0\x94\x46\xb2\x9b\xda\x5f\x62\xe2\x9b\x19\x7c\xda\xfb\x55\xac\xb0\x2b\xb0\xea\xb7\xcc\xd5\xb6\x87\xd9\xbe\x8a\xc7\x4d\xa8\xe8\x24\xa5\xb2\x86\x87\xae\x93\x4a\x16\xf5\x9a\xda\xaf\x94\x7f\x36\x80\x85\xf4\x34\x8d\x9b\x0e\xf0\x09\x26\xfe\xad\xbf\x58\x66\x1d\x36\xdb\x8b\x99\x58\x43\x93\x27\x2c\x98\xc3\x31\x88\x5a\xf5\x63\x7f\xf4\x76\xcb\xcd\x53\x0b\x4c\x45\x67\xfb\x19\x14\xdb\x3b\x38\x74\x4e\xa5\xbd\x1f\x4e\x3f\x14\x13\x2e\xef\xe1\x9f\x1e\x93\x27\x36\x1d\x34\x2f\xaa\x3f\xac\xad\x2d\xa9\xd1\x6b\xab\x8c\x4d\x31\x36\xb2\x2e\x27\x04\xab\x99\x5a\x94\x1e\xd9\x2b\x59\x22\x4b\x3f\x6a\x1e\xda\xf5\x95\x93\xc4\xb8\x5d\x7d\x2a\x0e\x39\xb6\xbc\xcd\xaa\xa3\xe1\x9f\x83\x1c\x5a\x70\x2c\xed\x69\x3a\x43\xed\xcc\x33\xb8\x17\x85\x75\xc7\xc3\x04\xa6\x72\xcd\x93\x22\xd2\x4e\xed\xe3\xd3\x37\xdc\x02\x2d\xfe\xcf\x52\xc5\xbf\x37\x07\x6c\xf6\xab\x84\xd7\x04\x8f\xf1\xeb\x0b\x96\x95\x36\xb9\x9b\xa7\x16\x7d\x2d\x08\xb0\x2d\x2e\xb8\x97\x10\xee\x94\x97\x87\xf7\x37\x75\x3b\xca\x1d\xb6\xfe\xe1\xf5\x24\xcf\x59\x73\xd4\xff\xa0\xc0\x5c\x62\x3d\xa4\xba\x98\x8f\x47\x3e\xf2\x47\x69\x0e\xa6\x33\x31\xb7\x2e\x11\x1c\x94\xdb\xd8\x75\x00\x46\x10\xce\x32\x6e\x9d\x2a\x50\xee\xe5\x30\x9f\xe2\x39\xb1\x85\x6d\xcf\xee\x4a\xd0\xca\xbf\x9c\x0e\x6a\xde\x2d\xc5\xaf\xa7\x98\x72\xe6\x69\x8d\xc8\xd8\x75\x65\x37\x35\xb5\xb9\xfd\xc9\xb4\x2e\x40\xf8\x8e\xa6\x77\xc4\x7b\x07\xad\xa5\x75\xfa\x3a\x86\x2d\xa4\x33\x59\x4f\x47\x89\x66\x64\x6a\xcd\xc6\xba\x65\x5f\x95\x7e\x90\xf0\x35\xf7\x0b\x9f\x54\x8a\x44\x21\x1d\x5e\x3c\xcb\xad\x62\x0d\xc6\x50\xc1\xd9\xfc\x18\x66\x4c\x1e\x0a\x3f\x7b\xce\xc1\x41\x8a\x1d\x7e\x0e\x11\x43\xa4\xb8\x3f\x8b\xd4\x9e\xcb\x92\x39\xa9\xb0\x5a\xcb\xbc\xfa\x84\xc9\x35\x2b\xc5\x6a\x44\xcd\xbf\x2c\xe9\x56\xd3\x8b\xf0\x85\x84\x1f\x85\xa2\xf1\x17\x13\x6e\x27\x88\x25\x89\xc4\x17\xfa\x76\xa7\x72\x25\xe0\x6d\x84\x33\x78\x12\x5b\xb4\xd3\xb2\x32\x52\xe6\x64\x9e\xe5\xfc\xc8\x88\x14\xc0\xe4\x0f\x67\xdb\x13\x25\x4a\x33\x8a\xe0\x08\xc1\xa6\x9d\xfa\x8f\xc8\x51\x0e\x11\x4f\xc4\xb9\x89\xc0\xa1\x3f\xfa\xc5\x4f\xcd\xe9\xd0\x85\xb3\x3e\x3b\x99\x98\x3f\xa7\x0b\xbe\x7f\x63\xeb\x37\x02\x23\xc6\xa3\xfa\x47\xc9\x89\x87\x51\x40\xcb\xa3\x0c\xb1\x48\x85\xa2\x8d\x5c\xe3\x08\x97\x84\xf1\x42\xba\xf0\x14\x3f\x9b\xe2\xba\xf0\x41\x9b\x57\x65\xec\x91\x16\x3a\xed\x15\x01\x31\xc1\xb2\xca\x55\x86\xf1\xc7\x02\x11\x35\x92\xc9\xfe\xa4\xb0\xc6\xc2\x4c\x45\x24\xbe\x8b\x56\x6c\x86\x18\xe6\x0b\xb4\x88\x79\xa5\xa1\x91\xeb\xa4\xf1\x6a\xd5\x6e\xc8\xa3\xef\xfc\x20\x24\x23\x60\xf9\xb9\x4b\x52\x71\xc8\x8d\xed\xc7\xd9\x45\xc1\xd2\x93\xc6\xc5\x2c\x41\x6b\x1d\x77\xcb\xb1\x41\x45\x65\xb3\xd5\xc9\x01\xa4\xa4\x8b\xf5\x14\xff\xcb\xfe\xc8\x46\x79\xbf\x73\xdb\x8f\xcd\x96\x01\xb2\xba\x29\xad\x17\x83\x62\x65\x15\xdb\xb6\x43\x67\x05\x78\xda\xdf\x44\x4a\x12\x5f\xf7\xc8\xc7\xed\xc3\xa7\x87\x1c\xd2\x3e\xc3\xea\xa9\xb7\x69\x65\x6b\x31\x0e\x27\xc6\x13\xef\xc7\x83\x55\xac\x9a\xdf\x13\x33\xc6\xdd\x18\x5f\xa7\x95\xaf\x7a\x2b\x1e\x15\xd5\xbc\xf7\x26\x2f\x5c\x6e\x7a\xe4\x9d\xd8\xeb\xd0\x5a\xee\x25\x5c\xf1\xb7\x33\xda\xed\x63\xb2\x71\x0f\xaf\x6b\x74\x40\x6b\x6f\xad\x4b\xbf\xbd\x4c\x5f\xa0\xeb\xa8\x9e\xd7\x00\xd9\xbd\x47\x96\x71\xb0\xc1\x2b\x8b\x1f\x39\xe4\xe8\x7b\x82\x27\x8d\x36\x07\x85\x80\x0b\x27\x03\x63\x28\x10\x2b\x2a\x86\x96\xb2\x96\x12\x5e\xad\x1e\xfc\xdf\xe5\xd4\x6a\xdd\xec\x0f\xb9\x55\x6d\xe6\x93\x2f\x83\xbb\xf3\x9c\xa2\x5f\xf0\xf5\xe9\x38\x55\xaf\xb7\x0d\x84\x38\xf5\x0f\xdb\x0d\x6b\x3a\x90\x6a\x1d\xc6\x2e\xd8\x68\xa4\xb5\x8c\x6b\x5a\xa9\x04\x5f\x9a\xd0\xb1\x54\x74\xa8\x9b\x5c\xb7\xc8\xd7\xbb\x36\x9d\x67\xa9\x2d\xd5\x3d\x6b\x6a\x3d\xc3\xf5\x6c\xae\xc3\x9e\x0e\x85\x98\xab\xf2\xd8\x81\xcf\xce\xe9\x06\x57\xc2\xd6\x22\x9a\xf9\xdc\xbe\x62\x32\x98\x84\x25\xbe\x0c\xd6\xd4\xc9\x1e\xbe\x0d\xec\xac\x50\xcf\x79\x73\x77\xe2\x3f\x23\xf2\xcb\xc7\xb3\x93\x96\xda\x07\xd4\x05\x8c\x19\x64\x86\xb6\xa4\x6b\x14\xd7\xb2\xb4\x3c\xa0\xf7\x29\x97\xb8\x92\xaf\x7d\x18\xfe\x76\xb5\x4c\x93\xec\xfc\xdf\xda\x3d\xf5\xdf\x7a\x7f\xd6\x9f\x6b\x60\x24\x19\x36\xaf\x6a\xf2\xb1\x7f\x5c\xb1\x31\xc4\xe2\xb7\x16\xff\xd8\xce\x63\xf4\x17\x41\xee\x3e\xa8\xb1\x84\xdf\xdc\xe7\x2f\x27\xca\xd3\xb8\xe3\x5f\x92\x5b\x39\xf8\x92\xde\x30\x4c\xd9\x88\xf9\xbf\xe7\x5b\x31\x50\x30\x7b\x1d\xb7\x7d\x41\x45\xfc\x48\x65\x7f\x52\xfd\xcb\x2a\xf6\xf0\x89\x0a\x5d\x8f\xe6\x91\xa4\xfc\x7a\x11\xd7\x61\x8a\xcc\xad\xe8\xba\xa3\x59\x89\x38\x0f\xf0\x41\x9b\x90\xb0\xee\xd5\x3d\x6e\x9e\x45\x91\xff\xd6\x57\x79\x58\xd8\xef\xad\x3a\xc8\x45\x93\x94\x57\xdc\xf4\x4e\xf0\x43\x4b\x3e\xd6\xaa\x58\x52\x71\x00\x3b\xe2\x79\x69\xed\x77\xf6\x27\x67\x43\x6d\x99\xdc\x82\x27\xb8\xe5\x0a\xde\xdb\xaf\x6b\x76\xec\x79\x7e\x3f\x03\x76\xee\x08\x48\xef\xfa\xee\x5d\xe2\x1f\x9c\x11\xd8\x93\xe2\x59\x6d\xea\xda\xe3\xe5\xe6\xcf\x74\xdf\xb5\xe5\xa4\x04\xff\xda\x36\x60\x47\xda\x53\xb6\x6a\xa8\xcb\x5a\xd6\xdb\xca\xe4\x17\x0f\x69\x4b\x6b\x5c\x11\x9c\x3b\xcb\x03\x34\x1b\x4a\xe4\x52\x16\xed\x98\x2c\xb3\xc2\xab\x1b\x85\x6f\xab\x4e\xa6\xea\x9f\x2c\x76\x44\xd2\xee\x9c\xc4\xcf\x4d\xd1\x1e\xbd\x30\xdd\x6a\x67\xd7\x78\x1e\xba\x05\xe3\x9c\xdf\xfb\xba\x63\xc8\x19\xbc\xad\xbb\xa3\xc5\x81\x9b\x30\xda\x69\xa3\xc5\x37\xe6\xee\x98\x52\xbd\x33\xf4\xb7\x6c\x29\x1a\xc1\x3d\x1b\x87\xe4\x34\xfb\x17\x9b\x17\x49\x7f\xf4\x06\xb6\xee\x12\x7c\xc5\x22\x56\xf9\xc8\x2d\xb4\x99\xe5\x21\x4a\x0f\xe5\xf7\xd2\x0a\xd5\x82\x7c\xb4\x44\xa1\x1e\x92\x01\x18\x7c\x6e\x7b\xff\x0c\x98\x58\x09\xdc\x57\x81\x90\xf7\xee\x1f\xf0\xc2\xcb\xc6\xe8\xfa\xce\xd1\x2b\xa3\x95\xbd\x97\x30\x4b\x63\x61\xed\xb7\xf1\x7a\x03\x9d\xb5\x4e\x04\xdf\x7e\xb7\xf2\x23\xca\xa7\xc5\xa8\x92\x79\x5a\xff\x7c\x5a\xa6\x16\x2d\x67\x5e\x26\xaa\x96\x76\x75\xbe\xda\x5b\x82\x84\x58\x44\x1a\x85\x63\xa7\x16\x7f\xd0\x18\x70\x87\x8b\x09\xe4\x1b\x84\x9e\x85\x65\x62\x34\xe9\xf2\x82\x22\x21\x02\xfe\x72\xea\xed\x81\x06\xcc\x69\xbe\xe0\xa0\x0e\x76\x73\x55\x6e\xff\x3d\x14\xbb\xb7\xb9\xff\x02\x2c\x7a\x08\xec\xdc\x85\x55\xcd\xcf\x8d\x76\xa2\x1e\x2d\x65\xf4\x43\xf0\x8c\xe3\x07\x0d\x06\x14\xdb\xa5\xfe\xca\x28\x5a\xd0\xfc\xf3\xec\x9b\xb4\xb4\x79\xa9\x48\x5d\xca\xb3\x85\x10\x27\x61\xe2\xeb\xc5\x60\x35\x10\x0e\xbb\x74\x85\xf2\x1f\x21\x73\xf1\x12\xb1\x8b\x14\xb4\x20\x48\xe0\x21\xf7\xcc\x3f\xc6\x4b\x03\x53\xe3\xb5\x27\x9c\x08\xc1\xe9\xa7\x87\x53\xb0\xef\x0b\xfb\xff\x8f\xb5\xb7\xfe\xaa\x42\xeb\x1a\xfd\xb7\x7a\xc4\xf6\x1c\x8f\xad\xb4\xf4\x4e\x5a\x45\x41\x09\x91\x10\x29\xe9\x0e\x11\x04\x69\xe9\xee\x96\x06\x41\xba\x4b\xba\xbb\x61\x6f\x36\xbb\xbb\xd8\x45\x83\x1e\xf3\x58\x7c\xc7\xf7\x3c\xef\x1d\xe3\x79\xc7\xfb\xdc\x3b\xc6\x1d\xe3\xfe\x36\xe7\x5a\x9f\xb5\xe6\x9a\x73\xfd\x01\x1f\xc6\x77\xc1\x67\x84\x2b\x4c\xa4\xe0\x43\x7a\x0e\x1d\x2d\x38\xc8\xe4\x11\xb5\xc5\xf3\x69\x82\xcb\xdf\xa5\x27\x88\x4f\x46\x9d\xc1\x66\xe8\xa2\x16\x77\x48\x1f\xa2\xbf\xe4\x2c\x24\x1f\x6e\x12\xaf\x07\x34\x5c\xd1\x77\x97\x96\x72\x42\x22\x35\xbf\x0b\x0f\xae\xda\x8a\x3d\x04\x8e\x20\x8e\x49\x7b\x69\xf2\x10\x38\xd1\x59\xa3\x03\x44\x9c\x18\x4f\x48\x6d\xec\x25\xef\x9d\x70\xde\x74\x0e\x37\x51\xcc\x73\xf1\x80\xf5\x56\x74\x08\x39\xbd\x76\x42\xe8\x3b\x45\x93\x9d\x77\x15\xc9\x7f\xca\x63\x4b\xa9\xd1\xca\xd0\x05\x8a\x32\xb8\x9b\x63\xf4\xdb\x82\xab\x77\x5a\x3f\xde\xc5\xc3\x91\xc5\x4d\xea\xa0\xa5\x0f\xb1\xdf\xd4\x26\x96\xa4\x9d\x79\xaa\x12\xcb\xc7\xd4\x6f\xdf\x7e\xb5\xac\x2f\xb6\xfc\x28\x6e\x39\x46\xec\x9c\x63\x0f\xdc\x5c\xd8\x21\x54\x05\x7e\xfd\x7a\xa5\xf8\xa5\xde\x18\x6e\xa7\xa8\xfb\x30\x63\x3d\x4c\xdc\x71\x4a\x82\x57\x2d\xe1\xb8\xe8\xc0\x8d\x96\xb9\x8e\xda\xe0\x38\x43\x44\x08\xed\x74\x81\xbb\xbf\x21\xb6\x17\x66\x1f\x1c\xcc\x71\xfb\x34\x8c\x5d\x26\xe6\x6b\xef\x99\x67\x8d\x01\x72\x4f\x59\xf4\x8d\xa4\x87\x9b\x59\x0e\x0e\x1b\x3b\x1d\xb1\x46\x8c\x94\x69\xba\xdb\xf7\x8f\x8d\x00\x37\x9f\x75\x4f\xd0\xae\x79\x45\x48\xcd\xef\x5c\xe6\xa6\x69\x2c\x92\xcf\x6f\x49\x45\xb6\x50\xd9\x09\x52\xd4\x2e\x14\xb7\x5a\x66\xbd\xdf\x8b\x7f\x07\x48\x9d\xbc\xbc\xd1\xa5\xac\xbc\xe4\xb0\x79\xf3\x81\xe1\x0c\x08\xa3\x6c\xaa\x30\x6a\x37\x16\x69\x67\xd5\xf7\xb0\x35\xdf\x55\xb0\xcb\xf2\x75\xbe\x07\xa8\xe3\x5b\x9a\x8c\x17\xa6\x7d\x2d\xe8\xd0\x0b\xb3\x76\xac\xc3\xb9\xc0\x89\x8e\x95\x87\xaf\xc2\xe4\xba\x06\x95\x8b\xa2\x8d\x7a\xe1\x12\x37\x12\x70\xc3\x27\x2f\x9c\xc9\x7f\x3a\x6d\x7f\xd1\x59\xd6\xbf\x22\x88\x6d\x0d\xbc\x5a\x37\xcd\xb1\x82\xce\xb6\x4c\x73\xaa\x6e\x3e\xe8\xd1\x5b\xb7\x7b\xc4\xee\xd3\xa0\x2c\x58\x4d\x76\xbf\x85\x93\x5d\xad\xda\x66\x06\xc7\xbc\x45\x9a\x4f\x35\xf8\x06\xbc\x6f\xb8\x50\x48\x0c\x3d\x5a\x67\x9f\xa8\x12\xa9\x5c\x3b\xe7\xd7\x1d\xab\x5e\x97\xe9\x70\x31\xf1\x41\xc3\x51\x83\xd6\x94\xb5\x66\xa3\x5b\x6e\x99\xcd\x6d\xb7\x64\xbf\xe6\x3e\xe8\x84\x5c\xdd\x7e\x13\x3f\xba\x7f\x35\x19\xc8\x2c\x30\x66\x1f\x40\xd6\x4a\x7b\x38\xf9\x4a\xcf\x2b\x68\xdc\x7a\x83\x83\xfa\x9f\xdc\x6c\x07\x91\x46\x33\x32\xef\x59\x57\xcd\xd4\x62\x47\xa0\x68\x15\x62\xf0\x6c\xc4\x52\xc5\x4c\xfd\x40\xc2\xb1\x37\xf7\x0b\x2a\x52\xaf\x94\xdb\xc6\xeb\x65\x50\xca\x55\xfd\x34\xb3\xb7\xde\xd8\x38\xbc\xcc\x0d\xa8\xcc\x31\xfa\xbd\x40\xbb\xc6\xe7\x6e\x79\xb1\x7f\x7d\x24\x98\x5c\x5a\xdf\xfc\x4a\xe4\x44\x53\x44\xdf\x8c\xf0\x10\xc4\x3d\x09\xc7\x87\x28\x46\x67\xba\x73\x39\x7a\xd1\xb9\x8b\xdc\x4b\xf6\xdd\x25\x2d\x9c\x01\x5f\x9b\xb2\x30\x4a\x6a\xf8\x56\x69\xde\x32\x34\x31\xab\xe8\xfd\xe0\xed\xcc\xb5\x22\xb5\x86\x99\x82\xeb\x85\xd2\x85\x76\xc5\x1e\x85\xc7\xe2\xc7\x5e\xdf\x2d\x40\xfb\x35\x97\xdb\x17\xb6\x39\x6a\x54\xa8\x97\x84\x3d\x4e\xac\x72\x2b\x5b\xd5\x68\xaf\x69\xa8\xbc\x0a\x2b\xaf\xe3\xd6\x9c\x12\x0b\xeb\x24\xbe\x85\x89\xee\x29\x8c\x06\x4b\xf2\xa7\x1e\x12\xa3\x17\xf9\x58\xdb\x94\x44\x77\xfe\x05\xbf\xf6\x8c\x64\x6e\x47\xfc\x40\x6e\x12\x33\x33\xeb\xdd\xab\x54\x84\x43\xb1\x79\x8e\xc2\x70\xd0\x9b\xb2\xec\xe1\xa6\x9e\x1a\x44\x16\xb5\xc8\xba\x41\x3a\x73\x3a\xe1\x5e\x53\x6e\xa6\x96\xff\xa9\x16\xfb\xcc\x03\x27\x60\xdb\xb9\x1c\xd0\x63\x42\xfb\x6c\x9e\xa1\x46\xed\x5b\xd5\xc2\xa7\xb0\xc9\xae\x6b\x25\x89\xe2\xe7\x86\xb2\x6b\xff\x14\xd3\x7a\x70\xdf\xeb\x8f\x1d\x59\x9b\xdb\x01\xa7\xb7\xec\xfc\x12\x42\x02\x36\x3e\xa7\x28\xc7\x8e\xad\xcf\x94\x28\xa4\xda\x72\xfa\xaa\x5f\xa6\xba\xac\x6e\x36\xb5\xa5\x8a\x8d\xe7\xb4\x3f\x4c\x19\x68\xcb\xec\x52\x4d\xca\x29\xce\xed\x59\x4b\xc0\x27\x1e\xef\xfb\x9e\xe0\xef\x4f\x1c\x38\x95\xb0\xef\x7c\x71\x10\x98\x64\xf9\x98\x32\x14\x94\x32\xaa\xde\x30\x8c\x4e\x77\x82\xba\x8e\x70\x32\x33\x44\xac\xa7\x3f\x15\x41\x85\x8b\xc1\x97\x21\x2d\x98\xbc\x80\x37\xce\x55\xfb\x36\xa9\xe9\xcf\xeb\x77\x3a\x8b\x73\x83\x88\xdb\x41\xed\x55\xb1\xb7\xb7\xf6\x7b\x0c\x62\xbf\x12\x72\x07\x81\xb1\xdd\x33\x53\x23\x5a\x31\x2e\x6f\x81\x13\xe7\x23\x6d\x4b\x7a\x27\xcd\xc3\xed\x92\x6e\x4e\x99\x84\x99\x07\x1a\x4f\x3f\x0c\xab\x70\xde\x9a\xd1\x0a\x6f\x79\x5c\x36\x0b\x8c\x9c\xbe\xf3\x75\x2e\x2a\xba\x17\xf8\x72\xfe\x8f\xd8\xa5\x6b\xe8\xc5\x3b\xe9\xa5\xd7\x2b\xc0\xf2\x90\x52\x4c\x59\xf2\x55\x8b\xc2\x0f\x6b\x25\xc5\x8e\x3f\x76\x94\x9a\x35\x9f\x7a\x6e\x86\x0d\x1b\xf9\x71\xb7\xca\x66\x6b\x43\xe1\xcc\x89\xf9\xba\x10\xb7\xe5\xb9\xc5\x96\xe0\x82\x5e\xc5\x65\x84\x3f\xf1\x0d\x1d\x4e\xf4\x35\x4d\xdd\x46\xbc\xf5\x71\x0a\x36\x59\xf1\xf4\x0e\x70\xee\x41\xd6\x78\x4f\x3e\xc2\xaf\xb2\x5e\x94\xdc\x6a\x41\x4d\xfa\x6f\x49\xc1\x57\xbc\xc2\x3e\x8a\x0f\x23\x12\x12\xae\x88\xb6\x67\x56\xdf\x71\xf8\xfc\xf0\xb5\x86\x0e\xf8\xfd\xe3\xc6\xab\x8f\x68\x3b\xbe\x03\xaf\x6d\x75\x37\x9d\x16\x05\x5c\x06\x37\x13\xb1\xca\x2f\xbe\x6f\xd4\xe1\x96\x7c\x4e\x62\xb5\x88\x97\x3c\xcb\x87\x1b\x48\xda\xee\x95\x35\x57\x49\x5d\x2e\x06\x99\xc7\x48\x69\x8e\x6b\x21\x66\xa4\xaf\xf6\x51\x2e\x3a\x14\x43\xfb\x39\x83\x44\x5a\xa6\xbd\xaf\xca\x18\xee\x94\x4b\x82\x9c\x35\xea\xa4\xcf\xbe\xd4\x59\xe4\xec\xcb\x7d\x89\x4b\x45\xe7\x15\x3e\xec\xba\x34\x28\xab\xbc\xdc\x39\xe8\x7f\xa4\x16\xfe\xee\xe8\x9c\x92\xfe\xe7\x9d\x19\x94\xa9\x59\xeb\x86\x0d\xfe\xa7\x65\x38\xdd\x96\x3a\x60\x8d\xc7\x3a\xb0\x4e\x99\xbb\x0c\x3d\x63\x60\x4c\x20\x95\x4d\xac\x2f\x06\xab\xa9\xdb\xec\x07\xba\x17\x82\x94\x58\xa6\xf7\x55\x6c\x57\xe9\x0f\x6e\x8f\xde\x57\x22\xd5\xdf\xbf\x2c\x1f\x8b\xfd\xf9\x98\x0d\xc4\xa2\x5b\xec\xb3\x65\x10\xab\x83\x5e\xfb\x52\x27\x6b\xdc\x61\xed\xfc\x9a\xc6\x6a\xa5\x23\xcc\xcd\x3e\x0b\xe5\x7e\xee\x2f\xcc\xe2\x4d\xf7\x3d\x63\xf2\x07\xd5\x29\xf6\x51\xf2\x67\xcd\x29\x0a\x8d\x1e\xa1\xad\x82\xa4\xd3\x3a\x6e\xaf\x74\x5a\xd0\xce\xa9\x9c\x2b\x0c\xa2\x85\x28\x25\xc6\xe2\x28\x26\x0a\x17\x9f\x6f\x90\x63\x60\xdf\x2d\x4d\xc9\xf9\x50\xd9\x7b\x6a\xd8\x00\xa8\x3c\xec\x37\x14\x13\x9a\x09\xb6\x47\x77\x1a\x5c\x96\xb3\x44\xbb\xd8\x74\xca\x84\x36\xc7\x40\x05\x39\xec\x3e\x2b\x68\x1e\x57\x65\x51\x4c\x61\x97\x03\xc2\xbf\x54\x20\x32\xb5\x89\x29\x8a\x7f\x53\x51\xe4\x54\xc5\x9f\xa4\x5a\x32\x4b\x21\x6a\x76\x89\x62\x22\x7f\xaa\xdd\x90\x22\x0b\xfd\x51\x00\x26\x6d\x41\x9a\x62\x76\x88\xfa\xe0\x46\xef\xf3\xc4\x40\xf0\xef\x36\x68\x92\x9a\xdc\x07\xcd\x5b\x18\x47\xd0\x2a\xb4\x02\x55\x03\x2e\x02\x57\xaf\xa6\x43\xae\x81\xdc\x90\x8b\x90\x70\x60\x8e\x30\x01\x79\x83\xb1\x28\x5c\x81\x29\x61\x98\x0b\x96\xd3\xff\x62\x5e\x11\x3c\xc6\xb4\xa4\x9f\x91\x00\xcf\xe9\x8e\xe8\x89\x1e\x5a\x3d\x34\x7e\xf5\xc6\xc8\x5c\x71\xe7\x3d\xa0\x00\x06\xd2\x71\x0a\xdc\xba\xf2\x77\xe5\x0a\xf4\x18\x7c\xa0\x00\x00\xa9\x85\x9b\x27\xb5\x41\xee\xc0\x09\xc1\x23\x40\x95\x95\x76\x87\xcb\x32\xbf\xad\x5e\x82\x0a\xca\xd8\x21\x99\xa0\x2b\xb2\x3a\x48\x53\xd9\x4f\x72\x91\x2b\xf9\x32\x2c\xd1\xc8\xa5\xa3\x4c\x2f\x11\xdb\x55\x4b\xd6\x71\x41\x16\x71\x72\xcd\x47\x90\xc5\x44\xb1\x42\x85\x54\xd7\x5c\xa8\x8b\xe2\xef\xe8\xaf\x51\x07\x12\x99\xd4\xf0\xf9\x58\xb9\x18\xbc\x72\x9f\x1d\xb8\x7d\xb5\xac\x0e\x0b\xd9\x46\x40\x0b\x11\x90\x0a\xb8\x79\xc2\x2c\xb8\x00\xb1\xeb\x23\x09\xf2\x42\x62\x4c\x55\x64\x55\x56\xb3\x20\x35\xb2\x0d\xab\x6a\x72\x05\x40\x10\xf2\x4f\x99\x51\xd0\xc3\x15\x35\xe9\x5e\x91\xea\xf9\x50\x8e\x96\x58\xcd\x12\x9c\x95\x22\xfa\x1d\xe5\xbe\x26\x28\x9c\x43\x29\x62\xcf\x0a\xc7\xb3\x1d\xd8\x27\xc4\xf5\xd7\xf2\x48\x46\xd2\x3d\x0c\x3b\x44\x18\xb0\x8e\xbc\x3e\x6e\x06\xad\xc7\xf0\x5b\x55\xa0\x9a\x08\x5a\x71\x1f\xa4\x07\xae\x13\x57\x03\xb6\x45\xda\xb9\x57\x02\x07\x30\xe7\xee\x37\x81\x4e\xa1\xca\xc1\x45\xa0\x1f\xab\xb6\x32\x8e\x7a\x28\x94\xad\xf8\x29\x33\xed\x55\x7b\x51\x49\x51\x8d\x09\x53\x1e\x57\x2c\x71\x76\x9c\x3b\x7a\xe3\xd7\x72\xc2\xda\x90\x44\x12\x3a\x99\xad\x79\x43\x85\x5e\xc2\x7d\x28\x63\xc8\x79\xb8\x26\x06\xa9\x5b\xab\xc3\xcd\xa9\xbe\xe7\xb8\xc3\x1f\x69\x8c\x33\xc5\x07\x1b\xb4\xff\xa2\x1a\xd7\x54\xe9\x40\x29\xb6\xe9\x40\xad\x44\x72\xa9\xa7\x9a\xc6\x15\xea\x9f\x5a\x78\x6d\x31\xa2\xbe\xac\x97\xd9\x55\x74\xa3\x98\xa6\x5f\x21\xfa\x94\x70\x6c\x78\x17\xd2\x57\xa8\x58\x22\xb3\x2f\x88\x67\x79\xa3\x75\xec\xf2\xfa\x7b\x49\xbf\x19\x5f\xfe\xb8\xcc\xad\xe5\x2d\xde\x25\x68\x11\xf6\x0f\xce\xa3\xdb\x1b\xcc\x4d\x9e\x84\xee\x6d\x8a\x11\x0e\x6a\xcc\xc5\x4a\x4c\xfd\xb0\x64\x22\x45\xde\x02\xec\xb6\xe1\x80\xb2\x6e\x87\xf0\xe5\x53\x09\x14\x47\xce\x52\x9d\x67\x9a\x73\xcf\xf2\x8c\x61\xb4\x67\x17\x82\x25\x5f\x1b\xf0\x19\xe9\x2b\x44\x8d\x00\xc3\xbf\x5d\xaf\x7b\xe5\x05\x9f\xbf\x6c\x2a\x93\xd0\x6e\xcf\x89\x97\xb5\xea\x8d\xe1\x2d\x02\xaf\x0e\x45\x6c\x9c\x81\x92\xa6\x25\x36\x88\x1a\x36\xf0\x3d\x3e\xd9\xf4\xc7\x8a\x26\x79\xc8\x36\x77\xe9\xf1\x72\xb8\x7b\xc1\xf4\xf2\xa0\xaf\xb7\xff\x84\x7d\xe3\x2d\x7f\xad\xd1\xa7\x05\x19\x41\x4d\x23\xcb\x31\x36\xa1\x7a\x23\xf4\x67\x2f\x22\xd1\xa3\xdd\xc6\x93\xf1\x42\x13\x17\x6e\xeb\xa7\x28\x4f\x1f\x93\x7e\x95\xe6\x3c\x1d\x77\xb1\xbe\xa8\x7c\xc1\xe3\xcf\x0c\x60\x56\xd5\x10\x9b\x0f\x2e\x6a\x14\xe2\x1e\x91\xc7\xb5\x0d\x73\x69\xf7\x74\xfb\x47\x37\x12\x2c\xf5\x26\xee\x71\xca\x5d\x4f\x8d\xee\xe3\x4e\xfa\x58\x0d\xbe\x99\x99\x7b\xa9\xda\xf7\x67\xb7\x63\x54\x5c\x77\x53\xf5\x68\x7c\x54\xe7\x74\xce\xcf\xe4\xf2\xb7\xcd\x11\xd9\xe9\x4d\x9d\x42\x1e\x53\x59\x1f\xba\x82\xcd\x8f\xbe\xfa\xd5\x6b\x76\x0f\x99\x5f\x32\x10\x02\xc9\x2d\x9e\x1e\xaa\x16\x0c\xa9\xbe\x3b\x2d\x7c\x35\x16\xfc\xa1\x88\xc0\x31\x97\x57\x2a\xbf\xc5\x3d\x74\x67\xac\xea\x31\x37\xce\xdc\xae\x59\x9a\x77\xd4\x43\xe9\xad\xf3\xda\x5e\x60\xc5\xdb\xc3\x98\xf9\x28\x85\x56\xbd\x69\x8f\xe4\x63\xcd\xb5\x9d\xbf\xb2\xf2\x9b\x6c\x2a\xeb\xf3\xde\x34\x1a\x66\x7e\x2f\x02\x36\xec\x86\xcb\x95\x10\x1a\xb3\x3c\x72\xca\x8e\x34\xeb\x3f\x21\xbc\xd1\x69\x13\xd7\xfe\x56\xb9\xff\x56\x4a\x29\xba\xe6\x51\x77\x9c\xc4\x6e\x9b\xea\xc8\x49\xe1\x31\x58\x5d\x6a\x1b\x5f\xf6\x4e\x48\x8e\x33\x4f\xdb\xbc\x2a\x3f\x97\xfd\xcc\x75\xa6\x6c\x8e\x1b\x1d\xca\xa8\x8b\xe2\x08\x25\xfd\x56\x7b\x05\x7b\x39\xfb\x7d\xb5\xc6\x74\x4c\x71\x55\x55\x4b\x57\x42\x45\x54\x65\x46\xe5\x6c\xf5\x4c\x65\x52\x26\xa7\x4e\xaa\x62\x29\xdc\xa6\x9e\x50\x69\xf3\xec\x68\x63\x74\xf5\x5d\x4b\x68\xd3\x8f\x3a\x0f\xdd\x7b\xad\xc7\x1b\xc3\x55\xd5\xda\x3d\x5b\xbc\xa4\x59\xfd\x47\x7b\x9f\x88\x61\x54\x03\x43\xca\x38\xed\x66\xd8\x58\x27\x5e\xaf\xab\x49\xb2\x3b\x47\xe2\xe5\x46\x8e\x22\xcf\x3b\xeb\x6c\xa9\x2d\xaf\xaa\x14\x50\xba\x87\xbf\x5b\xed\x5c\x42\x98\x75\x6b\xd2\x2d\xe9\xec\xd1\x6d\x0f\x2d\xb9\x5c\x85\xec\x3c\x5c\xb4\x9a\x25\xd7\xf5\xa1\xf0\x47\x78\x72\xcf\xed\x22\xe1\x67\xac\xde\x07\xc5\x5d\x96\x6d\x7d\x5d\xa5\x7f\xeb\x1e\x1d\x10\x2e\xcf\x55\xf9\x6b\x70\xb2\xb2\x49\x7a\x77\x02\xd2\xac\x2a\x96\x6a\x7e\xc4\xef\xf0\x56\xb0\x2b\x2b\xa8\x6b\xe3\x49\xa8\x5b\xb8\xd2\x26\x28\x1d\x94\xf0\x75\x5d\xa8\x82\x95\xbd\xc9\xc7\xb6\x6d\xe6\xf9\x90\x6d\x7a\x0c\xf2\x20\x4b\x27\x06\x2f\xe7\x5d\x18\x08\x1d\x39\x9b\xf3\xb5\x46\x74\xcc\x39\x5b\x30\x6b\x62\x3c\x30\xeb\xb7\x88\x07\x13\xc1\x99\xaf\x3d\xbb\x26\x7e\x64\x95\x5a\x29\x4e\x8e\x64\x33\x1e\x64\x4d\x35\xbd\xda\x54\x3e\x33\xbd\x92\x1f\x22\xb1\x34\x87\x2d\xdd\x12\x1e\xf6\xb2\x72\xb6\xdb\xd7\x8a\xf0\xf2\xf0\xda\x1b\x48\xff\xe8\x77\x65\x97\x50\x5e\x10\x1a\xb1\x9d\xd5\xf5\x3e\x49\x70\x8b\x35\x1e\x9d\xd1\xc9\x54\x9f\x96\x48\x5f\x43\xf6\xcf\xb2\xd2\x2a\x87\xb5\x16\x6e\x26\x63\x6b\x4b\x17\x03\x13\x5b\x72\x0e\x2f\x52\x13\xdc\x22\x5d\x97\xcc\xe2\x3b\xbd\x2c\x96\x65\xe2\xe7\x2c\x5d\xe0\x7f\x24\x8c\x69\x8b\xc2\x29\x49\x59\xf2\xc1\x88\xee\x94\x0c\xd1\x79\xc4\x99\x6c\x82\xd0\xce\xcb\x1e\x0b\xd6\x87\xcb\xe9\xdd\xf6\x1f\xde\x43\xca\xf9\x2e\x84\xed\xbe\xf6\xbb\xcf\x4b\x36\x3b\x47\x57\x42\xee\x6e\xe4\xad\xaa\x27\x08\x6f\xe1\x50\xe7\xe3\x1b\xf0\x32\x18\xd5\xd8\x2b\x13\x16\xd8\xb6\xa8\xb3\x4d\x87\xb1\xdf\xc2\x1d\x72\x59\x38\x60\xe8\xe3\x68\x51\xdc\xf9\x97\x03\x5e\x1e\xb8\xa9\x97\x7e\x4f\xe0\xf8\xec\x10\xa9\x7b\x2f\x08\xeb\x61\x86\x20\x16\xaa\x2c\xfa\x6f\xc9\x7a\xe4\x7c\xca\x5d\xf1\xbc\x6c\x90\xb6\xdb\xc7\xb9\xca\x53\xfa\x3f\xf6\xe3\x5b\x47\xcc\xaf\x6f\x4b\x0d\x9b\x39\x3f\xd8\x20\x2e\x51\x9e\xdd\xd8\x78\x4f\x68\xf2\xdb\xe6\xff\x22\x3f\x08\xd0\x25\xd2\x68\x3c\xbf\x8d\xa9\x0e\xc6\x59\xef\x81\x66\x7b\x3a\xc9\x33\x36\x97\x4b\x97\x7b\xda\x1f\x25\x44\xe9\x77\x2b\x7f\x3a\xcc\xe8\x72\xd2\x7c\x6c\xc0\x3c\xe6\x9a\x77\x6b\x1d\x1f\xe5\xf9\x0e\x54\x8d\x1e\x0e\x68\x94\x39\x83\x12\x88\xd4\x91\xb4\x2d\xa9\x57\x62\xed\xbb\xb4\xa5\xdc\xea\xdf\xc7\x8c\x0e\xeb\x7c\xd8\x13\x5f\xbc\x6c\xe4\xb8\xe3\x8b\x81\xdb\x38\xf0\x87\x88\xad\xf6\x9f\xe8\x6c\x0a\xd6\x81\x88\xfb\x40\x1f\xb6\xfd\x30\xc2\x61\x94\x5a\xb4\x56\xbb\x32\x0c\xcc\x4c\x33\x62\x19\x75\x8f\x7f\x84\x00\x58\xe3\xfa\x87\x1d\xff\x62\x7a\xe9\x3c\x7b\xe0\x47\x53\x7a\xf8\x45\x09\x48\xf0\xb4\xbe\x03\x7e\x80\x2d\x75\x3d\x2a\xcb\x42\x1f\xf1\xf5\x91\xfa\xd6\x50\xa9\x70\x75\xdd\xa4\xeb\x93\xd2\xb1\x4d\x95\x99\x23\xb7\x80\xbb\x7d\x58\x9c\x3a\x60\x2f\x9a\x74\x5d\xbb\x86\xa1\x46\x89\x7a\x58\x4e\x05\x30\x5a\xf4\xd3\xd1\x02\x8c\x1a\xed\x3b\xbd\xda\x74\xf2\x1d\xb1\x92\x13\xf4\xa7\xaa\xca\x71\x74\xea\x96\x52\xb2\xcf\x23\xaa\x80\x62\xbb\xd5\x16\xa5\x54\x1e\x73\xff\x23\xfe\x04\x0c\x2b\xaf\x82\x01\xc0\xba\x20\x4a\x58\xd7\x27\x15\x72\x1b\x98\x6b\x0e\x69\xb2\x7f\xb4\x47\xc2\x5c\x79\x6a\x03\x10\xf9\xab\x3c\xf6\xaa\xa6\x22\x75\x2b\x9b\x60\xa3\x9c\x40\xff\x44\xa4\x28\xf7\x53\xbb\xc8\x2d\xca\xdb\x24\x3a\xc5\x58\xc9\x76\xee\x37\x0a\x5a\xf1\xf7\xf6\x59\xca\x92\xc2\xd1\x82\x59\xca\x6d\xd8\x50\xec\x3e\x29\x0d\x1a\xe7\x73\x81\xb8\x01\x49\xb1\x6e\x20\x8b\x82\x41\x5a\x23\xd8\x24\xf0\x7b\x58\x10\x3a\x19\x12\x0c\xd1\x41\xdd\x87\x60\x40\xbb\xab\xae\xd0\x8b\xa0\x23\x22\xaf\xd1\x2f\x58\x15\x42\xc2\xa4\xb7\xec\x07\x42\xfa\xac\xae\xb5\x0c\x21\x53\xb6\x37\x73\x46\x9c\xcb\xb8\x8f\x5d\x93\xe0\xd2\x18\xcb\xda\x12\xaa\xab\x8c\xe1\x6b\x20\x79\x0c\xb9\xe3\x19\x44\x01\xa9\x53\xd9\x03\xbd\x07\x9f\xcf\xaf\x84\x34\xc1\x6d\x92\x6e\x43\x3c\xe1\xbf\x82\x81\x20\x00\xf2\x4f\x87\x04\xd9\x81\xd5\x6d\x28\x4f\xf6\xf3\x6a\x37\x58\x55\x4e\x79\x35\x4a\x6e\x51\xee\x13\x92\x22\xab\x2e\x36\xb1\xac\xcc\x0a\x12\x13\x41\xff\x58\x13\x13\x9e\xa3\xc0\xd9\x04\xe1\xaf\x6b\x9b\x6c\x45\x31\x05\xb6\x22\x0d\x26\x39\xc9\x58\x46\xe3\xa4\x30\xb4\xcf\x0b\xaf\x41\xf2\x84\xdb\x7d\x3f\x21\xd1\xa8\xeb\x75\x6c\xa8\x3c\xc2\xb0\x30\x08\x52\x07\x77\x48\x00\x42\x8e\xad\xdc\xf2\xde\x81\x9c\x5d\xed\x36\xa5\x00\x0d\x50\x05\xd0\x59\x60\x2e\x4a\x03\x64\x00\xa4\xaf\x6e\xc9\x6a\x81\x28\xc8\x31\x19\x09\xb1\xc5\xc5\x1c\x8e\xfd\x0d\x9f\xe5\xd5\x35\x5d\x89\x4c\x8c\xf3\x1a\x48\x2c\x91\x7e\x8f\x33\x2b\x7e\x86\xfb\x3b\xc7\x41\xea\x08\xfb\x15\x09\x2b\x07\x67\xbe\x59\xd1\x06\x33\xa9\x8f\x27\xbc\x61\xc3\xd8\xe0\xd6\x68\xd8\x45\xc4\x93\xa2\x74\x48\xd3\xd2\x5c\xac\x2d\x04\xb3\xf2\xd1\x3d\x1f\x52\x83\xcd\xd5\xd4\x86\x44\xa0\x99\xd0\x0c\x48\x37\x5a\x4f\xae\xc4\xe8\x35\x4e\x48\xbc\xd1\x72\x02\x13\x26\xda\x29\xbe\x32\x75\x8d\xb7\x70\xe3\xe3\x3c\x83\xcb\x92\x12\x83\x8f\xb0\xd3\x65\xcd\xb1\x6e\xec\xdf\xa4\x4f\xb1\x5c\x79\xc1\xe0\x2c\x8e\x2b\x0b\x2f\x1f\xcf\x76\xc1\x43\xd5\xec\xb8\x8f\x10\xd7\xb4\x75\x58\x6b\xc3\x60\xfd\x61\xda\xa5\xda\x7d\xbd\x4a\x5a\x6a\xc6\x83\x87\x51\xd4\x45\xaf\x66\x9d\xdf\xe9\x66\x3a\x2c\x03\x29\x4a\x04\x24\xd3\xda\x93\x7c\xe7\x46\x61\xf0\x11\xac\x8f\xb8\x5b\x14\x14\x3d\x21\xf2\x4a\x6a\xa8\xdf\x80\xc7\x97\x4a\x1e\xdf\x5e\xa7\xc8\x80\xe6\x72\xf8\x74\xe0\xcd\x15\x3d\x6e\x9b\xa2\x1f\xde\x9a\xd3\x73\xcf\x8f\x75\x86\x63\xfe\x68\x85\x63\x43\x1b\xb2\x09\x61\x2d\x23\xff\x72\x9b\x20\xce\x0e\x4d\x3e\x1b\xc6\x53\xea\x53\x9e\x5b\xe2\x90\xd9\x8c\x17\x00\x5c\x6f\xb0\xbe\xff\x2d\x3c\xd4\xe6\x59\xd0\x7d\xca\xae\x6a\x66\x98\x18\x89\x2e\xd9\x90\xa0\x89\xb9\x24\x92\x52\x78\x71\x55\xfd\x9a\x8d\x9c\xd6\x5b\x3c\x37\x0c\x88\xef\x6b\xe7\x3b\x83\x11\xa3\x8f\x37\x6d\x14\x5e\xcd\x6c\x6c\x10\x0d\x5a\x57\x9f\xf0\xab\xec\x31\xa4\x2a\xce\x07\x0f\x0d\x1c\x1a\x07\xf3\xb5\x5b\x0d\x9b\x05\xbe\xd4\x80\x37\x75\xbf\x8b\xa8\x5f\x3a\x54\xe9\x1d\xe3\xb9\x00\x4f\xc7\x24\x98\x2d\x04\x05\x6e\x24\xf7\x2d\xfc\xb2\x8d\x4c\x33\x5c\xbe\xaf\x75\x38\xe7\x3a\x3c\x0d\xb8\x98\xf7\x0e\x31\x7e\xb9\xb5\x0c\x83\x50\xbd\xb4\x0e\x76\xac\xf9\xc2\x79\x0e\x53\x68\xbe\xc6\x39\x50\x82\x77\xcc\x71\xcf\x18\xae\x0d\x2e\xaf\x87\xd8\xbf\x9a\xb1\xe0\x09\xbd\x50\x5e\xdc\x64\x5c\x0b\x09\x9d\xcb\x42\x7e\x8e\x35\x98\x9a\x1b\x7f\x92\xb2\x3c\x21\xd8\x8e\xce\xe4\x8c\xc9\x95\x5d\xcb\x15\x1a\x79\x9f\xbc\x55\x08\x18\x29\x0c\x10\x2d\x1e\x1e\xb5\xb4\x0f\x2b\xdd\x1b\x2f\xd0\xbb\x5c\xfe\x69\x4a\x5c\x09\x51\x89\x9c\x89\x17\x53\xa9\x17\x58\x48\xbd\x9a\x07\x1d\x2c\x35\xe5\xd4\x28\xde\xa8\x88\xe0\x46\xea\xc4\xd5\x2a\x73\xf6\x6c\xef\xb7\x41\xb8\x4d\xde\xef\x7a\x62\xd9\x9b\xd1\xa0\xc1\x3d\x4a\x60\xca\xc1\xe0\x1f\x08\xc9\x57\x61\x7d\x90\x91\x96\x12\x97\x9e\x89\x96\xd5\x37\x37\xbb\x07\x4b\x2e\x54\x75\x76\x9f\x48\xec\xab\x15\xef\xf6\xf1\x7f\x51\x57\xd2\x13\xe5\xf0\xaa\x21\xa1\x8f\x6d\x38\xd5\x34\x3b\x58\x77\xbb\xab\xe5\xdd\xc8\xa2\xec\x58\x97\xe2\x54\xa2\xb0\xae\xa2\x40\xa6\x3e\x97\xa6\xcd\xcc\xcd\xe3\x2e\xdb\x1d\x29\x3e\xcf\xb1\x78\x2e\x58\x69\xcc\x3b\x1f\x1d\xd1\x28\xce\xbd\xfe\x4a\xb6\xdd\x9f\x96\x58\xea\xd5\x2e\x80\xd8\xae\xc9\x68\xd5\x1b\xcd\x6e\x7e\xd8\x62\xd5\x52\xd8\xf6\xb0\x05\x56\x1c\xdf\x11\xdc\xec\x9e\x58\xfc\x16\xdb\x6c\xe4\x5f\xdc\xc9\x6f\x99\x75\x6c\xea\xd6\x69\x37\x78\x7c\xa9\x87\xd2\x69\xac\xbe\xdd\x47\xef\x51\x00\xef\x8e\x1c\x1b\xda\xbd\x11\xad\xbb\x14\x73\x87\x3f\x62\x53\x9f\xf0\x37\xff\xa8\xd7\x85\xf4\xd3\x9c\x77\x31\x5d\x79\xef\xf8\x37\xf3\x2f\x94\x63\x79\x17\x6b\x87\x6b\xd9\x0c\x62\xab\x4b\xed\xfa\xea\x83\x9e\xcb\xb5\x90\xf1\xa1\x81\x4f\x35\x36\xad\xf5\xc3\xe7\xab\xb5\x8b\x9b\x47\x7c\xab\x74\x13\x97\x47\x2f\x55\xbe\x0b\xd0\x1e\x5d\xa9\x2a\x74\x4a\x1e\xe3\xd7\xb8\x3f\xbe\x39\x21\x5d\xd7\x7c\x97\x35\x79\xbf\xd1\x17\xb4\x3b\x2b\xd8\x8e\x10\x97\xb3\x76\x08\x2a\xd9\xfc\xf9\xa2\x20\x54\x7c\xa3\x2a\x06\x11\x6d\xc6\xaf\xc9\xca\x4b\x31\xe5\xe3\x6a\x0d\xf2\x1a\xd6\x25\x07\xe0\xe5\x09\x9c\x83\x51\xf9\xf2\xe7\x58\xab\xa9\x99\x72\xfb\x69\x91\x59\xe8\x6b\xad\xb6\x85\xb9\xc9\x92\x4b\x25\x0e\xf3\x85\x45\x8c\xa4\xe0\x79\x66\x91\x70\xe0\xf5\x05\xd9\xa2\x3b\xce\x17\x16\xa6\x8b\x0d\x8c\xc8\x8b\x59\x25\xcf\xee\x1c\x59\x2a\x79\x6d\x27\x27\x01\xbf\x57\x49\x14\xf9\xe1\x1f\xee\x76\x68\x6f\x39\x3e\xe4\xf9\x97\xed\xb7\x39\x07\x41\xb8\xad\xdd\x2a\x91\xa8\xf8\xcd\xa1\xfe\x33\x69\x0f\xb7\x95\x97\xee\x14\xfe\xda\x44\x21\x42\x0a\x75\x48\xee\x48\xd3\xfc\xa5\x59\x16\xea\xf7\x5c\xeb\x8e\x16\x14\x2f\xe7\x64\xe9\x3a\xfa\xcf\xac\x27\xc9\xb7\xd0\xf2\x99\xf7\x03\xb3\xd1\xd2\x19\x8d\x4e\x09\xe8\xe2\x4c\x80\xe1\x0c\xe6\x7a\x66\xe3\xcd\x3c\xac\x50\xf6\x3d\xa9\x2a\xd4\xf1\x02\x09\x31\x8b\x04\x4d\x5b\xfe\x5f\xfd\xd9\x3d\xce\xb3\xbb\xe1\x15\x26\x1e\xb2\x9b\x0b\x9d\xc7\x7d\x2d\xb6\x36\x26\x15\x22\x62\x36\x61\xa8\xb4\xa4\x99\xf5\x6e\xe2\x83\xb4\x4e\xda\x13\xda\xb1\xf4\xe9\xa5\x35\xba\x62\x0a\xac\x9b\x43\xbf\x92\x80\x2e\x0b\xa0\xfa\xc4\xae\x25\x07\x53\xcc\xa3\x26\xfc\x93\x48\xae\x91\x74\x5b\x37\xa2\x71\x24\x5b\x07\x4b\xb0\x8b\x7e\xaf\x10\x89\xa5\x26\x0a\xc8\x34\xa2\x05\x33\xbc\x24\xb2\x73\x0f\x0c\x00\xef\x49\x35\xa9\x26\x92\x3b\xc5\x9d\x2e\x0e\x59\x9b\x57\xc6\x64\x5c\x5d\x37\x16\x56\x02\x7c\x66\x36\xd5\x88\xfb\x41\xf7\x39\x57\x49\x7f\xbf\x8c\x22\x39\xd2\x6a\x82\x7f\xcd\x5e\xa2\x53\xfc\x3f\xb6\xea\xd1\xc3\x7d\x8f\x17\x9c\xa3\x22\xbc\x3f\x46\x4f\x51\x6c\x3d\xb7\x3c\x41\x94\x27\x5e\x87\xcc\x2c\xe9\x26\x9e\xd6\x77\x32\x49\x45\xbe\xdf\xa1\xc1\xd8\xbf\x42\x72\x64\x7f\xa0\xfb\x62\x0d\xa5\x06\xde\x1c\x52\x4d\xf8\xeb\x44\x57\x99\xb6\xc1\x8e\xc6\xa4\xe7\x23\xd3\x1d\x0c\x9c\x63\x29\xb0\x2d\x80\x57\x75\xfa\x9d\x37\x47\xd2\x76\x82\xd2\xa7\xc9\xf5\xee\xf6\xc4\x1b\xf4\x2c\xa7\x8b\x63\x01\x8c\x19\x3b\xab\xba\x5d\x86\x88\x15\x23\xab\x94\x31\x65\x71\x31\x2c\x8a\xa5\x66\xdc\xea\x12\xbc\x76\xfb\x11\x5a\x1f\xce\xf8\xdb\xd4\x44\x05\x45\xda\x71\xa8\x85\x7c\xc4\x36\x78\xd6\xc8\xe5\xa2\xb7\x03\xcf\xcb\xdc\x6c\xb3\x57\x12\xdf\xcc\xe8\x0f\x53\xe6\x6f\x4b\x20\x94\xee\x55\xef\x0f\xa2\xc5\x1f\x70\x36\x95\x48\x3d\xfa\x7a\x74\x3a\xf5\x82\xb1\x07\x35\x92\xe6\xf6\xe4\x32\xe6\x32\x4b\xd1\x80\x38\x18\xc9\xaa\x7b\x70\xab\x1c\xcd\x34\xb9\x3b\x9a\x38\x49\x57\x57\x29\x7e\xf1\x82\xf6\x48\xf9\x97\x8d\x3a\xd5\x57\xe9\x98\x96\x1f\xa1\x4c\xe1\xa5\xc2\x33\x42\x86\x4e\x0c\xe4\x1d\x5e\xca\x36\x08\x88\xc0\xc6\xba\x0e\xca\xf6\xb6\x6e\x2a\xc6\xb1\xb3\x7a\x81\x4a\x31\x1c\x3a\xba\x45\xe5\xe4\x0e\x8a\x30\xa4\x82\xa7\xbf\x25\x09\xab\x8a\x51\x5f\x53\x4e\xdd\x3a\x20\xdf\xa6\xbc\x55\xfe\x30\xa7\x42\x55\x53\x1a\xec\xf8\x83\xfa\x58\xb1\xab\x10\x42\x75\x54\xc8\x8b\x83\x93\xeb\xe4\xa5\x7d\x3e\x90\xfe\x82\x19\xdb\xac\x90\x79\x50\x41\x9d\x8b\xb8\x66\xe8\x79\x79\x3d\xcc\x53\xa8\x35\x64\x0f\xf5\x37\x34\x03\xfc\x12\xeb\x63\xf5\x4a\x2e\x4f\xfc\x30\xf6\x16\x2b\x5a\x78\x8d\xf2\x8d\xcd\x12\x81\xae\xf5\xb0\x1f\x8a\x6a\xb1\xbf\xb3\x0e\x4b\xd0\x98\x67\x71\x4f\xa5\x06\xe8\xcd\xcb\x33\x32\xba\x94\xac\xe9\x33\xe0\x6b\x58\xab\x8e\x7a\x48\x21\x32\xb8\x32\x0d\xea\x0d\x5f\xcc\x57\x82\xb4\xc0\x9d\x12\xab\x20\x39\x08\xf1\xa0\x52\x50\x29\xd2\xc1\x01\x0f\x3c\x8d\xca\x85\x25\x00\xd5\x50\x16\x90\x6b\x40\x4f\x94\x38\x90\x03\x7c\xbd\xba\x2f\x4b\xb8\x21\xb4\xfc\xf7\xda\x29\x89\x2b\xd8\x11\x16\x43\x94\x40\x87\x71\xb2\xc4\xb4\x38\xa7\x39\xbf\x4b\xe8\xb1\x31\xb4\x30\xe9\x4d\x66\x13\xc6\x4b\x26\x87\x71\x7a\xd1\x03\xec\x47\xd8\xeb\x77\x81\x9e\x41\x79\xd6\xad\x42\x5d\x11\x66\x85\xa7\x21\x0d\x70\xd7\xf8\x57\x10\x9b\x15\x3f\xef\x1a\xe8\x1d\x94\xa9\x99\x1a\x08\x8e\x7e\x0c\x2b\x00\x7d\x45\xfd\x04\x67\x80\xa5\x50\x3d\x72\x2b\xda\xfd\x38\xe5\x1b\x23\x12\x61\xcb\xf7\xd9\xc2\x12\xbf\xe0\x6f\xd7\xb6\xa4\xe5\x71\x7e\x6b\xcf\x25\x8e\x31\x7b\xb9\x6f\x24\x4d\xb9\x26\x1c\x4f\x99\x66\x8e\x0a\x59\x04\x44\x63\x79\xae\x8c\x43\x4d\x68\xca\x93\x72\xb0\x7e\xac\x79\x4b\x2e\x4c\x04\x21\x5a\x48\x85\x30\x17\x0f\x62\xf2\xa1\xf2\x2b\x07\xee\x40\xd8\x73\x5c\x98\xa6\x23\xf4\x0b\xa6\x1a\x36\x7a\xaf\x88\x90\x23\xe7\x6a\xea\x44\x20\x48\xc7\x85\x78\xe2\x4f\xde\x10\x91\x40\x4e\xf5\xf3\x2f\x4a\x1d\x5a\xdc\xe3\xee\x49\xef\x23\x46\x38\x30\x90\x26\x3e\x89\x6d\x2c\xfb\x9e\xbd\xc5\x37\x87\xb5\x72\xe2\x58\xe3\x8a\xd1\x1c\x08\x7e\x41\xb3\x82\xdb\x89\xa8\x7e\xe4\xc4\x0a\x1d\x56\x7b\x9c\x4a\x47\xd7\x27\x18\x9d\x67\xa4\x65\xfa\x3d\xea\xa4\xff\xf2\xb6\x35\x32\xa5\xc5\x19\xaa\x98\x2e\xd1\x0c\xe4\x33\x1d\x25\x69\x45\xd2\x7f\x87\x1b\x90\x04\x24\x56\x63\x3a\xf1\xa7\xc4\x32\xa5\x1d\x07\x83\xd7\x1f\xcb\x30\x27\xdf\xae\x77\xc8\x59\x2c\x94\xf3\x37\xc0\x60\xa4\x27\x4f\x55\x25\x91\x98\xc0\xf9\xa6\x25\xc2\x31\xe4\x05\x5b\x4c\xb3\x8f\x51\x35\x5c\x85\xd9\x5b\xa8\x34\xdf\x29\xce\xa9\xd9\xe1\x20\xad\x35\xc1\xce\x5b\x2f\x23\x99\xbb\xaf\x61\x61\x44\x66\x65\x6c\x61\x64\x05\xb3\xe8\xa9\x72\x54\x29\xd7\xe0\xae\x5c\xdc\x2c\x23\x0b\xbc\x9c\x56\x4d\xdc\x97\x10\x2c\x39\xc0\x75\x8b\x56\x01\x17\xbb\xf5\x78\x9e\x60\x62\x7f\x31\x7f\x17\x76\x7a\x7c\x7e\x4b\x56\x45\x6f\xe1\xca\xe6\x57\xb3\xef\xe8\xd5\xf5\x0b\x8e\xf7\xa8\xd7\x79\x65\x2f\xb8\x74\x65\x7a\x50\xd8\x2c\x35\x60\x35\x2a\xce\x9c\x40\x19\x67\x24\x3d\xc5\xfd\x6a\x3d\x92\x66\x8b\xcd\x2d\x8c\xcd\x04\x63\xf8\xd1\x02\x39\x39\x98\x5e\xf7\x5f\x05\x29\xa8\xe9\x47\x8d\xa5\x67\x50\x28\x65\xdb\x32\x0e\x2e\x58\x84\x5d\xed\x87\xb6\xbc\x76\x00\x79\x57\x0f\xe1\x6c\xc9\x37\xb6\x68\x70\x43\x6e\x32\xbb\x3d\xd7\x65\x9f\x28\x8e\xf8\xf0\xa9\xce\xc5\xb3\x38\x8e\x75\x40\xfe\x92\x36\xdd\x3b\x1e\xb6\x1a\x4c\xdc\x4e\x47\xac\xa8\x2e\x32\x73\x8d\x96\x97\x07\x33\x8b\x63\x16\x75\x1b\x04\xcb\x1a\x17\xb4\x73\xa7\x2b\xcf\xcd\x47\x46\xd6\x55\x07\xcf\xe7\x7b\xe8\xd4\x0a\xcf\x0f\x98\x8a\xd5\xe7\x2f\xb9\xdc\x89\x6c\xf2\x47\x8c\xc8\x64\xb5\x06\xae\x8e\x5e\x36\x92\x57\x2f\x9b\xe1\x7c\x52\x39\x5a\xa9\xca\xed\x35\x33\x6b\x68\xe0\x65\x3a\x52\x3a\x9e\x70\x0a\x02\x34\x7b\xbb\x59\xf9\xf1\x3b\xa3\x66\x94\x87\x79\x75\xd3\x9f\xf0\xd8\xb2\xe3\x93\xf8\xb9\xad\xda\xdd\x09\x99\x7e\xa5\xc6\xfd\x71\xf9\xda\xb2\xd6\x87\x63\x0e\x39\x15\xed\x75\x63\xee\x11\x98\x8e\xfd\xf1\xdb\xcf\x24\x3a\xaf\x4c\x1c\x3c\x09\xeb\x06\x4c\x17\x68\xd6\xf6\x1e\x9d\x0b\x80\x39\xf7\x1f\x5d\xcc\x17\xa9\xbf\xf5\x2a\x7b\x81\x27\x6a\x26\x97\x67\xc2\xbe\xe4\x70\xb7\x94\xcb\x79\x17\x98\x54\x23\xc6\x13\x4e\xec\x6b\xee\x64\x4f\xe5\xe7\x75\xba\xd0\xd6\xea\xda\x07\x22\x08\xe9\x6d\xe8\xbe\xc5\x79\xbb\x9e\xa9\x5e\x7c\xdf\x1f\xfd\x98\xde\xd5\x9a\xad\x41\x6c\xaf\x5f\x0e\x68\xf8\x62\x6f\x60\x44\xef\xf0\xf7\xbe\x0c\x4f\xa5\xd1\x0b\x03\x05\x96\xa9\x63\x16\xc3\xaf\x75\x1f\x8d\x77\x8c\x7d\x52\x31\x9b\xe0\x4f\xc4\x49\xa8\x9a\xae\xc5\x1e\xe3\x8d\x3a\xfe\x96\xa2\xc6\xd7\xf2\x3f\x9d\x25\xcf\x6b\x4d\xdc\x2a\x7c\xc9\xa3\x15\xcb\x57\x36\x70\xad\x1b\xed\x1a\xfc\x18\x9f\xfb\x29\x1d\xcd\x94\x13\x63\x02\x1d\x92\x8b\x15\x53\x4e\xed\x0a\xfd\xbf\xcf\x80\x5a\x4b\x6b\xca\x67\xad\x5b\xa8\x39\xaa\x73\x87\x5b\x1a\x23\x58\x73\x25\x2d\x48\xcf\xc8\x79\xe3\x36\x80\xa5\xf7\x82\x4c\x3b\x55\x47\x73\x51\xe8\xed\xb4\xa2\xc6\x92\x59\xf7\x79\xf1\x27\x8e\x92\x41\x55\xeb\x9b\xfe\xd6\xe1\x1e\x1b\xd3\x29\xae\xf1\x7f\xad\x5f\xca\xbf\x96\x71\x89\x1f\xdd\xb8\x5c\xe4\xb5\x1e\x3c\xd8\x5d\x79\x96\x93\x37\x2f\xdd\xf0\x89\x3e\xbd\x2c\x5f\xbf\x0b\x7f\x8e\xe8\xaf\x33\x1f\x80\x21\xf3\x6b\x8a\x6a\x85\x57\xd5\xab\x93\x72\xf0\xab\x4f\xab\xb2\x23\x1b\x57\xc7\xab\x1c\x3c\xff\x5e\xfd\x5a\x95\x6c\x79\x15\x85\xa8\xa6\x68\x1f\x41\x71\xaa\x3f\x41\x69\xe8\x1f\xb5\x4e\xc2\xd7\x83\xf5\x3d\x65\x76\x7f\xa4\x16\xfb\x1f\xde\xfd\xfd\x55\xdd\xcb\x8d\xad\x89\xfa\x43\x71\x5b\x9b\xa5\x83\x7b\x59\xc2\xdb\x16\xcb\xdf\x4b\x36\xb7\x56\xb0\xd2\x6f\x4e\xb3\x14\x49\x67\x2a\xdc\x56\xdf\x93\xf3\xcb\x66\x86\x6e\x90\xeb\x4b\x15\xeb\x7e\x23\xeb\x15\x1b\xe6\x7c\x20\x1d\x14\xfa\x46\x2e\x13\x4c\xf2\x9c\x9f\x7e\xc6\xf1\x73\x83\x4d\xcc\xb1\x7d\xb9\x26\x6a\x5d\xd8\xf9\x82\x4a\x08\x0a\x7b\xb2\xd4\x54\x4a\x38\x4d\xcd\xe9\xc3\xfb\x4b\xf9\x51\xae\xdc\x1d\xbb\xaa\x0c\xaf\x95\xad\xf3\xbd\x32\x41\xfa\xdb\x02\xb3\x47\x62\x0e\x36\x7f\xa0\x7b\xd3\x14\x79\x5e\xc4\xd1\xcc\x21\x6a\x2e\x75\x32\xbb\x0c\x71\x84\x7e\x3e\x63\xba\x4f\x80\x7e\x26\xd5\xe0\x8d\x27\x55\x2f\xa9\x38\xb5\x94\x22\x1e\x5f\x1c\xf8\x9d\x88\x8b\x6b\x74\x10\x22\x74\xc4\x91\x1f\xee\xe0\x0d\xe3\x2b\x95\xba\x71\x97\x52\x7b\x41\x1d\x58\xa9\xec\x74\xe9\x6b\x45\xf5\x86\xf7\xdf\xb5\xd7\x58\xdb\x18\x6c\xaf\xf7\x60\x5c\x2c\x36\xc8\x93\x57\x9f\xbd\xdc\xd8\x43\x85\x07\x4c\x6d\x7a\x12\xcf\x86\xa8\x33\x01\xa4\xfe\xf0\x16\x52\x1f\xed\x49\x84\xfc\xfc\x4d\x1a\x23\xe4\x73\xfb\x3b\xba\x51\xd0\xa3\xc2\xef\xd4\xba\x80\x0b\xb1\x1f\x29\x47\x7d\x1d\x9e\xef\x93\x3f\xf8\x02\x2d\x04\x68\x66\x2f\x18\x1a\xc2\x24\xeb\x60\x98\x3c\x8f\xa0\x1e\x99\x0c\x3a\x8a\x0d\x48\xb4\x90\x11\x69\x3a\xa1\x73\x68\xb7\xfa\xed\x2d\x83\xa5\x6d\xe2\xcc\x9f\xc6\x2b\x3b\x4a\x88\x10\x3b\xc0\x56\x23\x01\xe9\x7c\x99\xf3\x95\xa4\xe6\xc6\xa5\xfd\x22\x2b\x78\x0e\x12\xa3\xe8\x86\xee\x6e\x93\x30\x46\x85\xd3\x6e\xa3\x18\xa3\xd0\xc1\x30\xe7\x80\x11\x6d\x9b\x14\x91\xca\x0c\xb3\xfa\xe5\x9e\xc0\x92\xb2\x7a\x69\x8c\x67\x39\xda\xd0\x6e\x2d\x52\xde\xb8\x5e\x86\x95\xe0\xb5\x5e\x94\x03\x49\x58\xa7\x10\x1f\xd9\x27\x1d\x4a\xca\xcd\xdb\x72\x23\x47\x54\x57\x76\xcf\x2f\xef\x3d\x8c\xdd\x3d\x83\xbf\x6f\x78\x98\xeb\x4f\x6e\x32\xf9\xc1\x90\x24\x1d\xb7\x7c\x48\xb1\xa7\xde\xb4\x9e\xc4\x3f\x60\x1d\x37\x8d\x1e\x21\xad\x19\x1b\x3c\xa8\x54\x5d\xbb\xa3\xeb\x94\xda\xc2\xf6\xd3\x38\x1b\xa4\x42\x4f\xba\x75\xd4\x96\x41\xbb\xa1\xcc\xd5\x1e\x21\xc9\x29\x5d\x51\x7c\x4d\x72\x7c\x6c\x00\x93\x21\xc4\xda\x17\x83\x96\xb0\xd7\xbd\x6e\xcb\xf2\x3a\xff\x54\xc2\x71\xd5\x27\x76\x94\xeb\xb7\x0c\xb1\x48\x95\xa9\x3d\x09\xe2\x09\xd5\xf7\xf4\x20\x52\xc5\xed\x3d\xea\x00\x55\x40\x37\x84\x4c\x60\x88\xe9\xda\xa1\x7c\xa9\x05\x2a\xd7\x3b\xee\x50\x27\x95\xaf\x15\x06\xd1\x94\x94\xa0\xf1\x9e\x94\x4a\x85\xda\x17\x7d\xe4\x35\xf9\x1d\x5b\x3c\xa5\x00\x86\x7e\x60\x84\x5f\x82\xdd\x52\x10\xc7\xea\xc0\xd4\xa0\x85\xe8\x0e\x98\x36\xf8\x27\xae\xcc\x4e\x12\xa8\x22\xde\x85\x9b\x5c\x4b\x17\x7d\x49\x57\xe5\xf8\x8b\x32\xd9\xd9\xec\x2d\xf1\x05\x8e\x15\x4b\x48\x2a\x9e\xd9\x89\x5b\x95\x51\x66\xe8\xc1\x25\x64\x7d\xa8\x0e\xd3\xd3\x60\x3c\x76\xa0\x03\x0e\x61\x22\xf3\x2a\x4d\xa1\xaf\xe0\xd3\x79\xb3\x90\x16\xb8\x6b\xa2\x00\xe4\x04\x62\xd3\x1f\x0d\x3e\x87\x2c\x73\xbc\x0c\x12\x41\x5f\x90\x3f\x04\xd2\x44\xd1\x21\x28\x90\x1b\xaa\x09\xb4\x04\x4a\x45\xbd\x94\xe3\x4a\x1c\x41\x38\xb2\x63\x24\xde\xe0\x6d\xd8\xc2\xe2\xdd\xcc\x60\xee\xcd\x1b\x1a\x9c\x9f\x9c\x29\xa9\x29\xce\x23\x5a\x87\xec\x1b\x96\x11\x86\x2c\xfb\x8e\xc1\x5c\x3a\x02\x71\x25\xfa\xf6\xd7\x40\x83\x50\x25\x75\xf5\xd0\x54\xc4\xe3\x82\x0a\x48\xf2\xf2\x46\xdc\x2a\xa4\x7c\xa5\xc2\xdb\x18\x26\x86\x5a\x36\x0b\x02\xef\xa2\x69\xf2\x0a\x90\x93\xe8\x6c\x48\x34\x44\x16\xfd\x00\x74\xc2\x30\x95\xb0\x28\xe1\x22\x39\xbe\x7c\xc0\x2e\x92\xf2\x58\xb9\xca\xd1\x92\xf6\x22\x28\xb0\xf7\xa4\x24\xd9\x27\x78\xe6\xd2\x34\xae\x1d\x47\x57\xae\x8e\xd3\x42\x36\x80\x44\xb0\x46\x56\xc6\x60\x96\x34\xc2\x64\x9f\x3c\x07\xb3\xd1\x12\x04\xbd\xb1\x14\x52\x00\x80\x90\x17\xf9\xd1\x64\xf9\xab\x08\x4b\xf7\xa7\xf2\xf5\xf8\x6b\x9a\x77\x60\x9f\xb1\x37\xe4\x53\xb5\xc9\x24\x00\x70\xcd\x3c\x8a\x84\x96\xed\x8c\xa0\x11\xbf\x4b\x44\x49\x1e\xcc\x74\xf0\xb1\x32\xf7\xe1\xad\x9c\x31\xd9\x6f\xc8\xab\x5c\x1b\x20\x97\x18\xc5\xbd\x01\xd2\xe7\x6c\xf0\xb4\x15\xe0\x9c\x54\x56\xe1\xad\x2b\x3c\x45\x52\xbd\xee\x59\x9e\xfb\xca\x4b\x93\xc8\xb5\xa9\x91\x2e\x4b\x0e\x63\xa8\x29\xcc\xf2\x38\x9d\x95\xad\xfc\x44\x9d\x11\xeb\xa7\x6e\x56\xc7\x50\x30\xca\xb7\x9c\xa2\xb3\x15\x26\x3d\xd6\xe8\x21\xa0\x87\x31\xa5\xb4\x57\xd2\x0f\x92\xe2\x89\xde\x12\xaf\x64\xde\x8d\x48\x6e\xbc\x94\x83\x4f\x7b\xae\x87\x80\xce\x2d\x95\xf2\xa9\xd0\xf7\xab\x25\xfc\x23\x6a\x6b\x94\x34\xde\xe8\xe3\xee\x35\x53\x76\xba\x9d\xef\x5a\x36\x55\xf1\x59\x01\x7b\x02\x95\x18\xb0\xcd\xbf\x30\x7f\x3a\xb8\x97\x6b\xd2\xad\x13\x1a\xcc\x09\x7d\x5d\x11\x85\x62\x7c\x8e\x13\x8a\x94\xe7\x7c\x70\xb9\x1d\xb7\xb5\x96\xfd\x40\x2a\xf5\x02\xeb\xae\xc2\x6e\xa1\x0e\x25\x4e\x52\xe7\xcd\x4f\xd2\xc7\x1b\x30\xf0\xf5\xde\x41\xbe\x39\xb4\x78\xc0\x6d\xfd\xa9\x3c\x66\x32\x74\x93\x67\x7a\x61\x79\x98\x67\x6a\x45\xc4\x06\xae\x67\xba\x45\x53\x8f\x70\x90\xc1\xf7\xa8\x9e\x54\xa1\xd8\x10\xc6\x16\x66\x3a\xf3\x38\xe7\xf6\xb2\x68\xee\x0b\xfa\xdf\xbd\xad\x85\x3a\xb4\x2f\x95\xe5\x25\x48\x6a\x4a\xaa\x7f\xd9\x28\x99\xe3\xfb\x57\x85\x35\x49\xc9\x32\xbc\x56\x9a\xf0\x54\x7d\xa2\xee\x03\xf5\xab\x34\xa5\x51\x84\x90\x2e\x72\x1d\x36\xd9\x28\xcc\x99\x56\x68\x6d\x33\xe3\xfe\x61\x94\x34\x20\xce\xdf\xb3\x8b\x1e\x63\xf2\x21\x6e\x5f\xe7\xe0\xec\x73\x21\x16\xcb\xd7\xa8\xdc\xa4\x7d\x74\x2e\x91\x58\xa8\x40\x8a\xc6\x5e\x7a\xb3\x81\xad\x9a\xb9\x5a\xdd\x83\x7d\xde\x25\x5b\xf7\x05\x33\xf9\x46\xa4\x49\x1a\xcd\x4a\xc9\x69\x71\x46\x93\xfc\x6d\xdb\xe2\xd0\x77\x6c\xf5\x3b\x10\x68\x8a\xf6\x42\x97\x25\xbe\x0b\x9a\xd9\x73\x1a\xaf\x2e\xf9\x9b\x12\xa4\x2c\x91\x7d\xe1\x9e\x65\xd5\x73\xce\x75\x9b\xe7\x2d\xca\xbc\x92\xa7\x67\xbb\x1d\x79\xda\xc1\x0d\x7d\xf3\x0c\xd3\xe4\xed\xf1\x32\x52\x71\x91\xde\x6c\x07\x7e\xb6\x1e\x05\x37\x44\x79\xb7\xcd\x2e\x7d\x9d\x54\xed\xfa\xba\x74\xad\xa3\xa5\x4f\x6c\xd1\xae\xec\xda\x80\xdc\xa2\x51\x8a\xd6\x60\xfc\xd2\xa5\x80\x99\x21\x9b\xe5\xbf\x1d\xb2\x46\xfe\x44\xe4\xe9\x17\x8d\xb6\xaf\x9a\xdc\x14\x1e\x8f\xc3\xc8\x49\x0d\xdd\x2f\x7e\x85\xe4\xe6\xd9\x7c\x2e\xcc\xe7\x9c\x74\x29\x2b\x9f\xe7\x66\x87\xf4\xd5\x17\xf2\xcf\xa7\x4c\xb7\x4c\x33\x77\x4b\x3c\xba\x3d\x29\x27\x1a\xc3\x86\x9a\xf1\xe8\xfe\xe6\xc9\x54\x94\xd2\xb8\xdd\x44\xcc\x44\xe7\x24\x77\xf2\x74\xbb\xee\x74\xd0\x04\xae\x94\x3c\xe3\x3f\x79\x32\xd9\x7a\xd6\x69\xea\x69\xa0\xeb\x9c\xf5\x8c\xa9\xd3\xd2\xbc\xde\x1c\xef\xf1\xb7\x85\x8b\x0b\x7d\x77\xfb\x17\x35\x16\x7f\x00\xcf\xd9\x68\x27\xbc\xe1\xfd\x72\xdb\x4e\x2d\xe6\x78\x86\x5c\xc8\x79\xc7\x0b\x4a\x8f\x2e\xd5\xe6\xd5\xbf\x2e\xaf\x2e\x65\xbf\x6a\x49\x6b\x22\xd1\x72\x06\xf1\x9d\x4f\x48\x46\xb3\xbd\x03\x77\x51\x3b\x4b\x09\x03\x8a\x13\xf5\xf0\x99\x7e\xbf\xb6\xc9\x15\xf3\xfe\x63\xa5\x69\xc8\xeb\xfd\xf7\x92\xc3\x91\x8b\xfd\x65\x81\x4f\x57\x83\x06\x66\x9c\xe6\x51\x42\x43\x26\x46\xa6\x28\xe4\x30\x42\x6d\x0d\x73\x74\xec\xa2\x5c\xaa\xf7\xf1\xd0\xda\x4d\x91\x60\x4c\xd4\x8f\x8d\xe5\x34\x99\xe4\x53\xfc\xa1\x12\x87\xec\x41\xbe\x4d\x47\xe9\xeb\x20\x7e\xcd\xb0\x6a\xf5\x95\xb5\xbd\xc5\x96\xe6\x53\xd4\x56\xac\xcd\x5b\x22\x6e\x17\xc7\x6e\xff\x3c\x59\x45\xac\x6e\xfb\xd6\xde\x45\x92\x69\x25\xbc\x3e\x44\xdc\x6a\x59\x4c\x16\x25\x69\xb5\xc8\x05\xfc\x22\x40\x9a\x9c\xed\xb7\x71\x9c\x26\x85\x87\xdf\xb1\xfa\x8d\x0c\x25\x0a\x56\xb7\xdd\x02\xf8\x33\x4a\xda\x3b\x78\x07\x98\xf6\x25\x58\x78\xe7\x69\xc1\x97\xf0\xc0\xad\xe0\x66\x83\x24\xd4\x66\xc3\xe8\x7e\xee\xa1\x6d\x45\x38\xa2\xec\xd0\x46\x38\x0e\x5d\xa9\x45\xfb\x4c\x69\xac\x13\xc0\x0d\x30\xfa\x6a\x2f\x4c\x9a\xd2\xe9\x95\xe4\xe6\xaf\x54\x97\x72\xd7\x7c\x1a\x69\xa7\x84\x17\x5d\x46\x90\x2b\x92\xf6\x94\xc6\x95\x15\x9a\x99\x11\xb1\xb1\x05\x74\x75\x11\x6c\x4b\x49\x81\xfc\x02\xd6\xf8\xcd\x33\x60\x78\x3a\xc9\x45\xf8\xdd\xeb\x12\x2f\xaf\x1b\xdb\xbf\xd5\x8d\xbf\x28\xdf\xd2\xee\x07\x87\x4b\x6e\x1c\x2c\x78\x27\x6a\x6c\xd5\x63\x73\x32\x86\xd9\x89\x44\x52\x0e\x8a\x2a\x41\xb5\xc8\xfb\xb1\x12\x47\x57\x7b\x75\x66\xc0\x93\xb6\x90\xf9\xb3\xf2\x27\x85\x9d\xb6\x97\xee\x40\x0e\x4b\x81\x04\x23\x89\x11\x49\x42\x8e\x3f\xf0\x7f\x27\xf2\xf5\xd9\xb8\x95\xe4\x0b\xca\x43\xd8\x8a\xcc\x3c\xa8\x1a\x96\x9e\x0b\x02\xc6\xbf\xe6\x99\x76\xef\x2d\x36\x04\x39\x7f\xde\x7c\xdc\x5f\xec\x9a\xb5\x31\x3b\xed\xe5\x83\xde\x34\xc2\xc6\x86\x5e\xd9\x6c\x21\xde\x09\xff\x8b\x3e\x4a\x3a\x1f\x23\x40\x72\xa0\xb2\x63\x8f\x2c\x56\xd1\x78\x51\x97\x3a\xd7\xe8\x7e\xa1\x95\xa5\xca\xd4\xe4\xe0\xa2\x78\x3b\x0a\x3a\x30\xd5\x67\x85\x3c\x16\x74\xc8\x1a\x42\xea\x0f\xbe\xae\xc5\x27\x1a\x87\x99\x2a\x72\xf0\x41\xb1\x29\x90\x67\xb8\xf3\xa9\x06\x72\xca\x8d\x15\x06\x82\xbb\xd6\x6f\xf5\x8d\xda\x76\x46\x26\x2d\xec\xbe\x6e\x9a\x23\x3f\xba\x58\x6e\xe6\x92\xb4\x5c\x5f\xb1\xbd\x49\x8a\xcf\x30\x34\x2d\x12\xff\x45\x00\xb1\x8c\xf6\xd7\xf3\xb0\x19\x1d\xc6\x39\xb7\xc8\x06\x3b\x46\xac\x33\x3b\x57\x9b\xa1\xe5\xf4\x22\x4a\x9c\x7a\xd9\x29\xcb\xc3\x87\x31\xe2\x60\x67\x9a\xcd\x3c\xe1\x5a\x71\x67\x8c\x0e\xf1\x14\x50\x70\x22\xec\x07\x96\x83\xe5\x71\x9c\x08\xb4\x5c\x52\xe7\x49\x55\xf9\x9d\xa5\xa1\x7e\x8d\x99\x6d\xa9\x15\xfa\x23\xf0\x8e\x13\xd1\xc0\xec\xd3\xda\x5f\x04\x07\xcb\x3f\x68\x95\xa4\x9f\xf6\x09\x54\x63\x8a\xb6\xfd\x43\xe2\x34\xbd\xdd\x8a\x38\x16\xc9\x18\x30\xdd\xad\x11\x60\x21\x0d\x45\x32\x80\x6c\xa9\x87\xfa\x21\x16\xcc\x41\xf5\x11\x87\x22\x7a\xc1\x5d\xb4\xbe\x2c\x15\x70\xf3\xbe\xb2\x3d\x25\xce\xfa\x93\xbc\x34\xd1\xdb\xf9\x1d\xb8\x1c\x77\xef\x05\x4d\xee\xed\xb0\x94\x72\xc4\xa6\x15\xfa\xcc\xed\xc7\xef\xcc\x48\x9e\x37\x0b\xf8\x4a\xc4\x52\xb5\x5c\x7a\x10\x19\xf9\x30\x84\x76\x86\x0a\x32\xb8\x4b\xb9\xca\xd8\x34\x18\x40\xfb\x32\x20\x9a\xec\xbe\x73\x34\x31\x15\xc3\xc2\x4a\x5a\x8b\x72\x52\xfc\x08\x35\x4e\xf1\x87\xaf\x03\x65\x50\xd1\xc5\x6e\x9e\x0a\x51\x78\xa2\xeb\x43\xe0\xc9\xbb\x28\x7c\xc7\xdd\x90\x17\x85\xa9\x11\x0c\x1e\x07\x43\x2e\xe3\xe3\xed\xc1\xc0\x4d\x89\x43\x78\xb3\xb5\x5d\xb1\xf7\x4c\x27\xce\x81\xb8\x3b\xe7\x11\x27\x48\x12\xc0\xf1\x61\xfe\x94\xde\x60\xa9\xe2\x25\x64\x03\x19\x08\xb8\xaf\x9c\x1b\xed\xf4\x8c\x1d\xc4\x07\x77\xa8\x83\x0d\xbd\x86\xac\xa9\x3c\x0f\x95\x41\x88\xe6\x1e\x87\xb4\xc0\xdd\x13\xbc\x20\x52\x88\xef\xfe\x0c\x70\x10\x12\xee\x68\x00\x06\xa0\xe3\xe4\xbd\xc0\xd7\xd1\x7a\xd0\x67\x60\x65\xf4\x25\x70\x0a\xd8\x14\xc5\x07\xce\x4b\x6a\x23\xcd\xd8\x60\xa9\xb3\xf8\xef\xec\x14\x09\xcb\xb5\x16\x2e\x4a\x52\x81\x7b\x9f\x83\x93\x99\xe7\x74\xd0\x08\xc0\x43\x2c\x14\x16\x04\x3c\xcb\x4c\x5e\x8a\x81\x8a\x13\x57\xfa\x97\xa0\x1f\x50\xe4\x3a\x73\x68\x19\x42\xbd\x40\x06\xd2\x05\xd7\x89\x53\x03\xe7\xae\xd4\x3c\xef\x82\xe1\xd1\x40\xb3\x7c\x08\x0a\xf3\x50\xbe\x0d\xc2\x41\xff\x82\xaa\x43\x3e\xa3\x87\xc1\x87\x4d\xce\x92\x2f\x49\x7c\x91\x5a\x83\x37\xb1\x7f\x49\xff\x44\xfe\xe0\x38\xc9\xfc\x24\x70\x38\x56\x32\x02\x9c\x59\x9e\xac\x2c\x89\xeb\xc4\x91\x01\x01\x39\x07\x64\x77\x68\xf1\x9a\xd0\xca\xbe\xfc\x55\xba\xe9\x94\x94\x42\x36\xb6\xa8\xd5\x54\x7e\x78\x35\xb0\xe8\x1a\x04\xb3\x48\x88\x16\x97\xf7\x44\xb8\xb8\x7d\x57\xc8\xc2\xe7\xdd\xff\x28\xbf\x8e\x91\x52\x88\xd2\x93\x21\x27\x82\x66\x2c\xad\x29\xb5\x32\x6a\xb1\xc7\x28\x0c\xc9\x2d\xe9\xf4\xb9\x2c\x7e\x93\x6c\x0c\xe2\x29\x57\x04\xd8\xb0\xfa\x8b\xeb\x0b\x4c\xa1\x1a\xf3\x03\x21\xbf\x71\x3e\x70\x31\x4a\x66\x9c\x0c\x56\xc0\x5d\x41\x5e\x3d\x89\x6a\xa6\xc6\x55\x5e\x31\xb2\xbd\xc7\xc6\x8e\x7d\xb1\x57\x67\xdd\x6a\x91\x72\x0c\x65\xc6\xbf\x42\xd9\xf8\xb1\x4e\x04\xa0\xec\x38\x4c\x4b\xb3\x72\xdb\x05\xda\xca\xcd\x53\x01\x6d\x2c\x0d\x88\x67\xc2\x30\x23\x43\x2e\x27\x3d\x90\xb2\x22\xf5\x51\xce\x6b\xac\x79\xd3\x01\xe8\x3f\x7b\x64\xc3\x0f\x1c\x06\x4f\xe7\x4f\x28\x05\xa3\x3a\xb8\xa9\x06\x3d\xf4\x7c\x7e\x8e\x95\x32\x73\x9a\x65\xeb\x7a\x82\xe9\x4b\xee\xf6\x17\x64\x4d\xaf\xc6\x84\xf8\x72\xc8\x73\xbf\x87\x7d\xe0\xfc\xe8\x8e\x89\x69\x60\xc6\x95\xb5\xc5\xbf\x66\x0c\xc5\x2f\xc6\x7b\x70\xc4\xdc\x8f\xa6\x57\xb0\xa4\x1e\x15\x64\x5f\x62\x5e\xb8\x39\xf9\x3a\x87\x3a\x23\xb7\x52\x2b\x40\x17\x97\xc4\x42\xca\xfb\x8f\xf1\x89\x30\xd5\x21\xf0\x86\xab\xa2\xf8\x34\x64\xb3\xcc\x3a\x1f\x61\xc7\xab\xb1\x43\x62\x13\xf9\x40\x6f\x73\x8a\xc9\x5a\x60\xb8\x15\x35\x9e\x7a\x39\xf1\x3b\x03\x81\xbd\x9d\xa3\xc5\x2e\x58\xe4\x14\xbc\x60\x1d\xef\x7f\x51\xe2\xc1\xd0\xab\x5e\x7d\x9d\x4e\xaf\x4c\xfb\x58\x61\x47\xf3\x0d\xd0\xad\x39\x44\xed\xb1\xb9\x57\x3f\x41\x16\xbb\x3f\xd7\xbc\x49\xd9\x86\x86\xb4\xee\x93\xbe\x4b\x8a\xc9\x17\x34\x8b\x73\x2d\x94\x3f\xbd\x6d\xe4\x9f\x35\xb3\x1a\x60\xf2\x77\x1d\xfc\x27\xac\x79\xd2\xcf\x3f\xcd\xdf\x60\xf6\x46\xb5\x2c\x87\x52\x44\x33\xce\x60\xa6\x08\xa1\xa5\xbf\x11\x34\xb1\x06\x8d\x1f\x18\x22\x2b\xfd\x6d\x79\x74\xc5\x11\xc9\xce\xb3\x34\xed\xc6\x2f\xdd\xe6\x54\x5c\xfe\x99\x5e\x57\xda\xa5\xa8\x85\xde\x67\xc4\x2f\x2e\xa4\x3e\x69\x7c\xbf\x7e\x75\xbf\x07\xe9\x93\xf2\xf5\x41\x18\x71\x17\xb8\xac\xc8\xae\xc0\x71\x4b\x8d\x04\xea\x32\xb8\x96\x76\xcf\xdb\x7e\x72\x31\x3e\x27\x7b\x66\xd8\xf0\x30\xfb\x81\x76\xfa\xf1\x34\xfc\x64\x0e\xd1\xf2\xb5\xda\xdc\x16\x2e\xb3\xf9\xfd\x8a\x14\x72\xaa\xbf\x14\xdb\xb1\xfc\xfb\x48\x37\x96\x3e\xe4\x38\xb6\x87\x45\x36\x28\x4d\x9a\x63\x9f\xe7\xd9\x4d\x45\xe0\x9c\xa2\x1a\x67\x34\xf0\xe5\xcf\x8e\xce\x32\x88\x12\x66\xd4\xd9\x7b\xc4\x30\x0d\xe1\xd9\x6c\xfc\x24\xf4\x4f\xc3\xbb\xf9\x11\xdc\x60\xfb\x23\x25\x76\x9c\xf2\xe7\x51\x55\x4e\x3c\xd5\xa8\xc1\x46\x63\xae\x7c\x86\x5b\x5b\x33\xc3\xbc\x0c\xdc\x5b\x44\x36\x6b\x26\x8d\x4c\xe3\xe0\x23\x67\xa7\x57\x91\x8f\x96\x3a\x96\x3a\x96\xef\x2e\x79\x2f\x97\x0f\x8c\x2f\x6f\x2c\x7f\xaa\x7b\x83\x70\x86\xd7\xe4\x1a\xaf\x58\x23\xd8\x51\x1f\x91\x91\xc8\x5e\x2f\x4b\x24\x07\x15\x6a\x75\x66\xb5\x0b\xa3\xac\xf3\x1e\x55\x87\x0d\x57\x8c\xb5\x2d\x49\xce\xe1\x4b\x78\xe5\xa5\xf3\xb9\x47\x63\xd6\xf2\x1d\xf9\x90\x2c\x52\xb9\x0f\x8f\x5b\xa1\x56\xbb\xbe\x26\xdc\xde\xd3\xaa\x44\x95\x1c\xee\xeb\x46\x12\x74\x17\x21\x43\xf5\x48\x37\x94\xc3\x44\xdf\x42\x00\xbe\x75\x4a\x7e\x40\x94\xa8\x3d\x15\x5b\x77\x85\x18\x3f\x55\xfd\x6a\x8e\xf8\x6b\x5a\x33\x4a\x85\x60\x34\x75\xe6\x99\x28\x2e\x6e\x72\xc6\x6c\x01\x43\x9c\xf8\xa1\x21\x82\xe6\x4d\x7b\xc1\xd0\x3e\xb4\xf0\xe0\x8d\xfb\xf1\x81\x71\x59\xeb\xe2\xe9\xa9\x69\x6a\xfc\xba\x37\xed\x79\x7d\xfc\xbe\x2e\xf9\x37\x97\xb9\x43\xa3\x61\xb5\x2f\x98\x6e\x70\xdf\x56\x1f\x32\x0a\xf3\xb2\xfb\x22\x36\x90\xa6\x3d\x70\x74\x71\x96\x41\xe9\xdb\xe8\xcb\xa7\x43\x7a\x12\xab\xc4\xc8\xef\xde\xd2\xd3\x0a\x48\x97\xdb\xdd\x83\x42\x09\x17\x5b\x7b\x1c\xe3\x71\xdb\xad\xbb\xfa\x78\x2c\xb3\x15\xa3\xf2\x1a\x7b\xb2\xdb\x1e\x26\x10\x37\xe9\x6f\xbd\xed\x99\x71\x2c\x84\xbf\x9d\x58\x22\x1c\x6d\xb8\x25\xd8\x61\x92\x1e\xbb\x59\x3d\x99\x53\x08\xdd\xf6\x41\x4a\xbe\x69\xe7\x1d\xe0\xab\xaa\x57\x68\x2a\x64\xb7\xc6\x5b\x84\xb3\x0c\x54\xe3\xe1\x99\x93\x8c\xeb\xb5\xa9\x6d\xf2\xb4\x7b\x55\x1a\x45\x26\x64\x9b\xf2\xe7\xb1\x26\x44\xf8\xeb\xaa\xe7\x79\x78\xe3\x92\x3a\x0b\x1b\xdc\xb3\x52\x7b\x4d\x4b\x6c\x6e\xd9\xbe\xa2\x31\xd6\xa6\x1a\x0a\x71\xce\xfa\xe1\xfa\x65\xd7\xbd\x34\xc2\xe7\x8f\x6d\x8d\x26\x3b\x7f\x87\x2d\xe5\xa1\xb2\xe8\xac\xcd\x11\x78\x61\x9a\xc0\xf6\x79\xfc\xfd\xec\x6c\x66\x25\x31\x3e\x3f\x89\xfc\x83\x7a\xbc\x68\x17\x05\xa2\x75\x16\x54\x0e\x69\xd2\xbe\xe5\xaa\xd5\x2c\x52\x8f\x64\xb5\x65\xea\x93\xed\x32\x30\xa1\xba\x04\x62\x9a\x94\x4b\x30\x3e\x33\xb5\xd4\x70\x05\xa7\x9e\x2e\x73\x53\x1f\xab\x9b\xf3\x09\xb6\x88\x1d\x28\xc0\x82\x57\x2a\x46\x1c\xe5\x76\x02\x9b\x13\x5c\x0f\x6f\x8a\x0d\xc0\xdc\xbd\x36\x8f\xcf\xc2\x03\x7e\xdb\xf0\xc0\x76\x44\xd4\x6e\x5c\x23\xa0\xa2\xc3\x68\x4e\x24\xa1\x78\x24\x69\x96\x8a\x49\xa4\xc3\xef\xd3\x76\x63\x8f\x74\x9f\xa7\xa7\x47\xd5\x96\x4d\x50\xd7\xc3\x85\x13\x07\x28\xb5\xa1\x4e\x7e\x72\xe4\x07\xa1\x82\x36\xbb\xc4\xf1\x70\x84\x6e\x32\xa1\x2b\x4a\x45\x09\x87\xdb\x4d\xbc\x09\x03\x60\x2b\x32\xde\x83\xf4\x9a\x9e\x1a\x3e\xda\xbd\xd2\x8f\xb1\xc3\x6e\x6a\x4e\x7f\x72\x0e\xdc\x6c\x43\x3f\x72\xad\xdf\x6c\x20\x7a\x79\x50\x99\x69\xc4\x03\x9f\x63\xd4\x0e\x12\xda\xdf\x95\x38\x46\xeb\xf6\x7b\x3f\xd7\x4f\xff\xe2\x69\xd9\x94\x4b\xa7\x7a\x88\xe5\x79\xd2\x2d\x9e\x2a\xc4\xe8\x52\xba\x9f\x3e\xf7\x3c\x60\x68\xb9\x36\x9b\xab\xd0\xc7\x3d\x6c\xd4\x87\xc8\x91\x2f\x56\x15\xad\x88\x2f\x43\xa6\xa0\x27\xf0\x2f\x63\x8f\x02\x97\xbb\xfb\x6e\x2d\xef\xc7\x2f\xc4\x18\x20\x76\x83\x57\x82\x8c\x33\xb6\x03\x88\x80\x27\xad\x8c\x7c\xe2\x82\xfd\x34\xbd\x9a\x0c\x75\xc8\xa0\x86\x92\xc7\x9c\x8b\x88\xb3\xf4\x00\x87\xdc\xa9\x63\x0c\xba\x25\xa8\xae\x91\x01\x33\x1b\xc8\xea\x60\x9e\x35\x6e\x0e\xdb\x5b\xfb\xa6\x3f\xed\x66\xce\x72\xd7\x9b\x31\x56\x66\x98\xea\xef\xab\xbe\xa5\x95\x3a\x9d\x50\x70\x21\x0b\x79\x98\x40\xb2\xf0\xae\x01\x6d\xc0\x8c\x91\x31\x15\xce\x56\x3f\xe6\x9c\xba\xd5\x3b\x53\x52\x80\x1a\x91\x77\x8e\xb4\xa5\x07\xa6\xd7\x52\xae\x1a\x56\xd1\x20\xd4\x01\x13\x1b\x4a\x2b\xed\xac\x85\x0e\xf6\x22\x33\x5b\x5f\x70\xe8\x17\xfd\xfd\x9d\x88\x12\x6d\xfa\xef\x2a\x5d\xf1\x5f\x69\x8f\x94\x15\x7d\xdf\x51\xc3\x95\x86\xed\xab\x29\x7b\xca\xe9\x06\x36\x24\x80\x42\xba\x22\x16\xf7\x4b\xe1\x08\x8c\x43\xfa\xc3\x36\x00\x92\x4d\x90\x75\xfe\x0c\x72\xfb\x37\x97\xe6\xff\xf2\x74\x1e\x6a\x8a\x3d\x38\xe8\xca\xf9\xbf\x5d\xff\x0f\xce\xd0\x12\x00\x00\xb0\x08\x00\x1c\xba\x07\x00\x1c\x4a\xfc\x6f\xee\xd1\x7f\x77\x82\xfe\xef\xdc\x9f\xff\x8f\xb8\x7f\xe5\xc5\x81\xff\x63\xef\xbf\xe2\x83\x5f\x49\x4e\x07\x07\x3d\xdf\xfe\x95\x8d\x9f\xfd\x6f\xf7\xfe\xd3\x4b\xfb\x69\x00\xe0\x7a\x27\x00\x70\xa6\x05\x00\xb8\x10\xf1\x1f\xeb\xff\xc3\xbd\x95\x03\x00\x04\x8f\x01\x00\x67\x41\xff\x67\xae\x4e\x17\x00\xb8\xa6\x07\x00\x9c\xea\xfc\x77\xee\x3f\xf9\x62\x9f\xbe\x7b\xf2\x4a\xdc\xda\xe8\x9b\x55\xe4\x27\xc5\xcb\x5f\x7e\x9e\xff\xe7\xbd\x07\x18\xea\xc1\x01\x00\x00\x96\xd8\x38\x7e\x78\xe7\xe0\xa0\xeb\x68\x63\xc2\x49\x78\xe9\xef\x2d\xbe\xf4\x86\xff\xee\xa6\xf5\x6a\x05\x9c\xfe\xb3\xfc\xe0\xbb\x58\x16\x20\x4d\xe9\x16\x00\xe0\x61\x7a\x70\xf0\x7e\xe7\x60\xb1\xe5\xee\xff\xe0\x04\xc6\x83\x0f\x7e\x8e\xe8\x00\x0c\xeb\xbe\x00\x00\x16\xea\xff\x70\xfc\x9b\x97\xff\x07\x77\x64\xef\xce\xc1\x41\xb0\x11\x00\xd4\x3a\x0c\x00\xdc\x48\xf8\x87\xfb\x9b\x38\x13\xe8\xe9\xf1\xcf\xdf\xfb\x05\xf8\x78\x58\x59\xdb\x88\xfe\xab\x83\xcf\x84\x7f\xcd\x18\x0b\xf6\xf1\x0e\x76\xfd\xb7\xa9\x9f\x76\x7f\xf1\xc4\x0c\x00\x00\xd8\x00\x00\x00\x41\x80\x16\xc0\x17\xe0\x07\x08\x03\x04\x00\x3c\x01\x1e\x80\x67\x80\x20\x80\x28\x40\x01\x00\x03\xc0\x00\xaa\x00\x51\x80\x1e\xe0\x05\x20\x08\xe0\x0e\x08\x00\xbc\x00\x38\x03\x82\x00\x9e\x00\xdf\x7f\x22\x6f\x80\xe8\x3f\x27\xbd\x01\xbe\x80\x80\xff\x8a\x5f\x00\x02\xff\xc9\xfe\x7f\x2a\x18\xe0\x03\x00\x04\x3e\x55\x54\xf8\x57\xd5\xd3\x06\x00\xc0\x51\xee\xc1\xc1\x07\x19\x00\xe0\x58\x39\x00\xf0\x33\xe5\xe0\xe0\x7b\xf5\xc1\xc1\xcf\x5a\x00\xe0\x70\x0d\x00\x30\x99\xf9\xff\x05\x00\x00\xff\xff\x12\x78\xef\xbb\x20\xee\x00\x00"); -type bintree struct{Func func ()(*asset ,error );Children map[string ]*bintree ;};func AssetInfo (name string )(_fc .FileInfo ,error ){_fda :=_a .Replace (name ,"\u005c","\u002f",-1);if _gaff ,_dcg :=_dad [_fda ];_dcg {_af ,_geg :=_gaff ();if _geg !=nil {return nil ,_fb .Errorf ("\u0041\u0073se\u0074\u0049\u006ef\u006f\u0020\u0025\u0073 ca\u006e't\u0020\u0072\u0065\u0061\u0064\u0020\u0062y \u0065\u0072\u0072\u006f\u0072\u003a\u0020%\u0076",name ,_geg ); -};return _af ._gd ,nil ;};return nil ,_fb .Errorf ("\u0041\u0073\u0073\u0065tI\u006e\u0066\u006f\u0020\u0025\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064",name );};const _cde ="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0055\u006e\u0064\u0065\u0066\u0069n\u0065\u0064D\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0053\u0043\u004e\u0052\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u004d\u004e\u0054\u0052\u0044\u0065v\u0069\u0063\u0065C\u006c\u0061\u0073s\u0050\u0052\u0054\u0052\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073L\u0049\u004e\u004b\u0044\u0065\u0076\u0069\u0063\u0065\u0043l\u0061\u0073\u0073\u0053\u0050\u0041\u0043\u0044\u0065\u0076i\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0041\u0042\u0053\u0054D\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u004e\u004d\u0043\u004c"; -func NewSRGBv2OutputIntent (subtype _ae .PdfOutputIntentType )(*_ae .PdfOutputIntent ,error ){_cga ,_dbg :=_dg ();if _dbg !=nil {return nil ,_dbg ;};_cdf :=_ae .NewCustomPdfOutputIntent ("\u0073\u0052\u0047\u0042\u0076\u0032","\u0043\u0075\u0073\u0074\u006f\u006d","\u0073R\u0047B\u0020\u0063\u006f\u006c\u006fr\u0020\u0070r\u006f\u0066\u0069\u006c\u0065",_cga ,3); -if _gfe :=_cdf .SetSubtype (subtype );_gfe !=nil {return nil ,_gfe ;};return _cdf ,nil ;};func NewSRGBv4OutputIntent (subtype _ae .PdfOutputIntentType )(*_ae .PdfOutputIntent ,error ){_gegf ,_bcbg :=_cab ();if _bcbg !=nil {return nil ,_bcbg ;};_gac :=_ae .NewCustomPdfOutputIntent ("\u0073\u0052\u0047\u0042\u0076\u0034","\u0043\u0075\u0073\u0074\u006f\u006d","\u0073\u0052G\u0042\u0020\u0049E\u0043\u0036\u0031\u0036\u0039\u0036\u0036\u002d\u0034",_gegf ,3); -if _cfc :=_gac .SetSubtype (subtype );_cfc !=nil {return nil ,_cfc ;};return _gac ,nil ;};var _cdea =[...]uint16 {0,20,34,48,62,77,91,105,120,134,148,163,177,192,207,222,237,252,267,282,297,312,327,342,357,372,387};type ProfileHeader struct{Version string ; -DeviceClass DeviceClass ;ColorSpace ColorSpace ;};func (_ef bindataFileInfo )IsDir ()bool {return false };type ColorSpace int ;var _dad =map[string ]func ()(*asset ,error ){"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043":_fbf ,"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063":_cae ,"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063":_fgg ,"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063":_ad }; -func (_ed bindataFileInfo )Size ()int64 {return _ed ._bc };func _fgg ()(*asset ,error ){_aa ,_caeg :=_dg ();if _caeg !=nil {return nil ,_caeg ;};_bef :=bindataFileInfo {_gf :"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063",_bc :3024,_da :_fc .FileMode (436),_ge :_fa .Unix (1628763334,0)}; -_acd :=&asset {_ba :_aa ,_gd :_bef };return _acd ,nil ;};var _gg =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\000\xff\142\140\140\x5e\xe1\xe8\342\xe4\xca\044\xc0\xc0\x50\x50\x54\122\xe4\036\xe4\x18\x19\x11\x19\245\xc0\x7e\235\201\231\x81\x8f\101\224\101\210\x41\x3e\x31\271\xb8\xc0\x31\040\xc0\x87\201\x81\x81\041\057\x3f\x2f\225\001\x15\x30\x32\x30\x7c\xbb\x06\x22\x19\x18\056\353\x80\xcc\142\x20\x0d\260\044\x17\x14\x95\060\x30\x30\x6c\x61\x60\x60\360\x4b\111\x2d\x4e\146\x60\140\x64\141\x60\x60\x68\054\x2f\051\050\x61\140\x60\xec\x60\140\x60\020\311\x0e\x09\x72\x66\x60\x60\x9c\xc3\300\xc0\304\123\222\132\x01\x52\xcf\x90\x94\x58\xec\xe9\xec\x9c\x9f\x93\x5f\xa4\xa0\xab\340\234\137\120\131\x94\231\236\x51\xa2\240\x91\254\251\x60\144\x60\140\xae\x00\x91\x0a\316\xcf\x29\x2d\xc9\314\xcf\x2b\xd6\x51\160\314\xc9\x51\x08\x02\251\x29\x56\x08\112\x2d\x4e\x2d\x2a\x4b\x4d\xd1\x63\x60\x60\x80\330\011\006\xea\x9e\xc1\xfe\x0a\xce\xf9\x89\x25\xa9\051\x0a\145\x46\x0a\272\x0a\xee\101\xae\221\x0a\x86\311\x0a\272\x0a\x1a\010\xeb\x34\x49\xf4\x21\x11\x00\x14\xe6\x10\xd6\015\x17\x06\206\x07\xbe\x0c\x0c\xfb\x6e\x25\x97\026\225\x41\xc4\x18\031\xd8\x94\330\222\xd8\x16\xb1\075\x67\327\146\x2f\142\xdf\xcd\xc1\xc6\x11\xc2\xb1\204\xe3\043\xa7\x0b\xe7\x34\316\x57\x5c\x8e\x5c\x33\xb8\x3e\x72\xfb\x70\x2f\347\x61\xe5\x49\345\x39\312\xab\xc9\333\xc7\xfb\211\057\232\xef\010\277\x2e\xff\x6c\x01\x0e\201\012\201\x57\x82\x31\x82\027\x85\xdc\x85\x0e\x08\333\x08\357\x14\x31\x17\xd9\x29\152\x2d\272\x5f\xcc\115\354\xbc\x78\x94\370\x53\x89\x62\x49\x66\311\x09\122\112\x52\233\xa4\335\244\x6f\xc8\344\xca\xfc\227\x9d\x2c\247\x25\167\x50\076\x4a\xfe\223\102\xb7\xa2\xa6\342\x31\245\x34\x65\066\xe5\x55\x2a\xfe\x2a\x3f\124\027\250\xf9\xa8\xfd\x54\137\xad\x11\xab\051\xa4\x79\x4c\253\x5e\333\x4a\373\xbb\316\166\xdd\112\075\x6b\xbd\xff\372\xc7\014\xfa\x0d\xa3\214\324\215\076\x1b\x1f\x35\x99\x62\x9a\x69\146\x6b\x2e\154\xfe\xca\xe2\xb0\345\x1c\xab\x4a\xeb\x10\x1b\x23\x5b\101\333\x8f\x76\027\xed\xb7\072\x4c\x77\xac\164\x8a\x76\xb6\x77\121\x76\xe5\x70\x7d\xe3\x76\xc9\175\xa7\xc7\002\317\x0e\xaf\x42\xef\050\037\x77\x5f\x63\x3f\x05\x7f\x5e\xff\277\x01\x6f\003\x1f\x06\x5d\x0e\076\x19\162\x20\x74\x77\330\266\xf0\x6d\021\x9b\043\x77\x45\xed\x8b\x3e\x1e\x73\x29\xf6\176\334\233\370\x7f\x89\x02\x49\052\311\xd6\x29\041\xa9\131\x69\xed\xe9\013\x32\x0e\144\xde\xcd\372\x9b\x23\x93\353\x90\x97\x94\xdf\x56\260\xa2\xf0\x4c\xd1\xc7\x12\xc9\122\xeb\xb2\244\362\266\212\065\x95\227\253\xfe\324\x28\xd5\372\326\x95\xd5\x2f\x6e\x38\xd7\xf8\xbb\x59\xb3\x25\xa2\xb5\xa3\x6d\x4f\xfb\233\x4e\xa5\xae\260\xee\xde\x9e\303\xbd\377\xfa\xcd\047\x94\114\134\x3f\xe9\343\x14\x83\251\xe5\xd3\x76\317\x60\x9c\xe9\x35\153\352\354\x47\x73\x8d\346\065\xce\277\xba\x50\x6b\x51\313\342\xbb\x4b\xad\x96\315\130\376\x73\145\xe4\xaa\xbd\x6b\xe4\327\xb6\256\x7b\xb9\xc1\x77\xe3\306\xcd\x62\x5b\xca\xb7\336\334\x6e\xb9\143\xc6\xce\xaf\xbb\103\xf7\154\xda\047\xb4\x3f\377\xc0\305\x43\x06\207\xa7\034\xf9\x76\054\346\xf8\xe1\223\x7a\247\x66\237\xe1\070\133\x71\xee\xcd\x85\xd8\213\127\x2e\x7b\x5d\x39\172\xcd\341\xfa\xde\x9b\x56\xb7\xf6\xdc\xb1\xb9\x7b\xe8\xbe\xcb\203\063\x8f\002\x1e\337\x7c\x9a\364\xec\xe3\x8b\x9a\127\xdc\xaf\xa7\xbd\325\x78\xb7\xfd\203\xe7\xc7\333\x9f\x8b\xbf\xf2\x7d\x5b\367\xc3\xe9\347\xc5\337\121\x7f\x9e\376\x2b\370\xff\037\020\x00\x00\xff\xff\x15\x23\x9e\306\250\x03\x00\000"); -func NewCmykIsoCoatedV2OutputIntent (subtype _ae .PdfOutputIntentType )(*_ae .PdfOutputIntent ,error ){_gcc ,_aedd :=_cc ();if _aedd !=nil {return nil ,_aedd ;};_aaea :=_ae .NewCustomPdfOutputIntent ("I\u0053\u004f\u0020\u0043oa\u0074e\u0064\u0020\u0076\u0032\u00203\u0030\u0030\u0020\u0062\u0061\u0073","I\u0053O\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u00762\u005f\u0033\u0030\u0030_b\u0061\u0073","\u0054h\u0069\u0073\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u0020b\u0061\u0073ed\u0020\u006f\u006e\u0020\u0074\u0068e\u0020\u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u0069\u007a\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061t\u0061\u0020\u201e\u0046\u004f\u0047\u0052\u0041\u0033\u0039\u004c\u002e\u0074\u0078\u0074\u201c\u002e\u0020\u0054\u0068\u0065\u0020\u006d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u0069\u006e\u006b\u0020\u0063\u006f\u0076\u0065\u0072\u0061\u0067\u0065\u0020f\u006f\u0072\u0020\u0074\u0068e\u0020\u0073\u0065\u0070\u0061\u0072\u0061t\u0069\u006f\u006e \u0069\u0073\u00203\u0030\u0030\u0025\u002e\u0020T\u0068\u0065\u0072\u0065f\u006fr\u0065\u0020t\u0068\u0069\u0073\u0020pr\u006f\u0066\u0069\u006c\u0065\u0020\u0069s\u0020\u0076\u0061\u006c\u0069\u0064\u0020f\u006f\u0072\u0020\u0074h\u0065\u0020\u0070\u0072\u0069\u006et\u0069n\u0067\u0020\u0063\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u0020\u0072\u0065\u0067\u0061\u0072\u0064\u0069\u006e\u0067\u0020\u0049\u0053\u004f\u0020\u0031\u0032\u0036\u00347\u002d\u0032\u003a\u0032\u0030\u0030\u0034\u002f\u0020\u0041\u006d\u0064\u0020\u0031\u0020\u0028\u0032\u0030\u00307\u0029\u003a\u000a\u002d\u0020\u0073\u0068\u0065\u0074\u002d\u0066e\u0064 \u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0070\u0072\u0069\u006et\n\u002d\u0020\u0070\u0061p\u0065\u0072\u0020t\u0079\u0070\u0065\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0032\n\u002d\u0020\u0067\u006c\u006f\u0073s\u0079\u002f\u006d\u0061\u0074\u0074\u0065\u0020\u0063\u006f\u0061\u0074e\u0064\n\u002d \u0054\u0056\u0049\u0020\u0061\u0074\u00204\u0030\u0025:\u0020\u0043\u004d\u0059\u0020\u003d\u00201\u0033\u0025 \u002f\u0020\u004b\u0020\u003d\u0020\u0031\u0036\u0025",_gcc ,4); -if _ebe :=_aaea .SetSubtype (subtype );_ebe !=nil {return nil ,_ebe ;};return _aaea ,nil ;};func _fbf ()(*asset ,error ){_ce ,_dc :=_cc ();if _dc !=nil {return nil ,_dc ;};_efe :=bindataFileInfo {_gf :"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043",_bc :1052612,_da :_fc .FileMode (420),_ge :_fa .Unix (1171030956,0)}; -_fe :=&asset {_ba :_ce ,_gd :_efe };return _fe ,nil ;};func (_baa DeviceClass )String ()string {if _baa < 0||_baa >=DeviceClass (len (_gef )-1){return "\u0044\u0065\u0076i\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0028"+_f .FormatInt (int64 (_baa ),10)+"\u0029"; -};return _cde [_gef [_baa ]:_gef [_baa +1]];};var _df =&bintree {nil ,map[string ]*bintree {"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043":&bintree {_fbf ,map[string ]*bintree {}},"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063":&bintree {_cae ,map[string ]*bintree {}},"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063":&bintree {_fgg ,map[string ]*bintree {}},"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063":&bintree {_ad ,map[string ]*bintree {}}}}; +package colorprofile ;import (_a "bytes";_f "compress/gzip";_aa "encoding/hex";_b "errors";_db "fmt";_g "github.com/unidoc/unipdf/v3/model";_ea "io";_d "io/ioutil";_cg "os";_ad "path/filepath";_eg "strconv";_c "strings";_ef "time";);func _cb ()([]byte ,error ){return _ge (_baf ,"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043"); +};const _fgc ="\u0043\u006fl\u006f\u0072\u0053\u0070\u0061\u0063\u0065Un\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0058Y\u005a\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065L\u0041\u0042C\u006f\u006c\u006f\u0072Spa\u0063\u0065\u004c\u0055\u0056\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0059\u0043\u0042R\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0059\u0058\u0059\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061ce\u0052\u0047\u0042\u0043\u006f\u006c\u006f\u0072\u0053p\u0061\u0063\u0065\u0047\u0052\u0041\u0059C\u006f\u006c\u006fr\u0053\u0070\u0061\u0063\u0065\u0048\u0053\u0056C\u006f\u006c\u006f\u0072S\u0070\u0061\u0063\u0065\u0048\u004c\u0053\u0043o\u006c\u006frS\u0070\u0061\u0063e\u0043\u004d\u0059\u004b\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0043\u004d\u0059\u0043o\u006c\u006f\u0072\u0053p\u0061\u0063\u0065\u0032\u0043L\u0052\u0043\u006f\u006c\u006f\u0072\u0053p\u0061c\u0065\u0033\u0043\u004c\u0052\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0034\u0043\u004c\u0052\u0043\u006f\u006c\u006fr\u0053\u0070a\u0063\u00655\u0043\u004c\u0052C\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0036\u0043\u004c\u0052\u0043\u006f\u006c\u006f\u0072\u0053\u0070a\u0063\u0065\u0037\u0043\u004c\u0052\u0043\u006f\u006c\u006fr\u0053\u0070\u0061\u0063\u0065\u0038\u0043\u004c\u0052\u0043o\u006c\u006fr\u0053\u0070\u0061\u0063\u0065\u0039C\u004cR\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0041\u0043\u004c\u0052\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0042\u0043\u004cR\u0043\u006f\u006c\u006f\u0072\u0053p\u0061\u0063\u0065\u0043\u0043\u004c\u0052C\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0044C\u004c\u0052\u0043o\u006c\u006f\u0072\u0053p\u0061\u0063eE\u0043\u004c\u0052\u0043\u006f\u006co\u0072\u0053\u0070\u0061\u0063\u0065\u0046\u0043L\u0052"; +func NewISOCoatedV2Gray1CBasOutputIntent (subtype _g .PdfOutputIntentType )(*_g .PdfOutputIntent ,error ){_acaa ,_dec :=_gc ();if _dec !=nil {return nil ,_dec ;};_gbd :=_g .NewCustomPdfOutputIntent ("\u0049S\u004f\u0020\u0043\u006fa\u0074\u0065\u0064\u0020\u0047r\u0065y\u0020v\u0032\u0020\u0031\u0043\u0020\u0042\u0061s","\u0049\u0053\u004fco\u0061\u0074\u0065\u0064\u005f\u0067\u0072\u0065\u0079\u0031\u0063\u005f\u0076\u0032\u005f\u0062\u0061\u0073","\u0054\u0068\u0069\u0073\u0020\u0049\u0043\u0043\u0020\u0067\u0072e\u0079\u0073\u0063\u0061\u006c\u0065\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u0020\u0062\u0061\u0073\u0065\u0064\u0020\u006f\u006e\u0020\u0074\u0068\u0065 \u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0069\u007a\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061t\u0061\u0020\u201e\u0046O\u0047R\u0041\u0033\u0039\u004c\u002e\u0074x\u0074\u201c\u002e\u0020\u0054\u0068\u0065\u0020\u0067\u0072\u0065\u0079\u0073\u0063\u0061\u006c\u0065\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0028\u0031c\u0029\u0020\u0069s\u0020\u0063\u006f\u006e\u0073\u0069\u0073\u0074\u0065\u006e\u0074\u0020\u0077\u0069t\u0068\u0020\u0049\u0053O\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f\u0062\u0061\u0073\u002eI\u0043\u0043\u003a\u000a\u002d \u006d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u0062\u006c\u0061\u0063\u006b\u003a\u0020\u0031\u0030\u0030\u0025\u000a\u002d\u0020\u0077\u0068\u0069\u0074\u0065p\u006f\u0069\u006e\u0074 \u0061\u0064\u0065q\u0075a\u0074\u0065 \u0074\u006f\u0020\u0046\u004f\u0047\u0052\u0041\u0033\u0039\u004c\u0020\u0066\u006fr\u0020\u0061\u0020\u0063\u006f\u0072\u0072\u0065\u0063\u0074 p\u0061\u0070\u0065\u0072 \u0073\u0069\u006d\u0075\u006c\u0061\u0074\u0069o\u006e\u0020",_acaa ,1); +if _dde :=_gbd .SetSubtype (subtype );_dde !=nil {return nil ,_dde ;};return _gbd ,nil ;};var (ErrUndefinedHeaderDeviceClass =_b .New ("\u0075\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u0064\u0065\u0076\u0069\u0063\u0065\u0020\u0063la\u0073\u0073"); +ErrUndefinedHeaderColorSpace =_b .New ("\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064\u0020\u0068\u0065\u0061\u0064\u0065r\u0020c\u006f\u006c\u006f\u0072\u0020\u0073\u0070a\u0063\u0065"););var _fd =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x67\x54\x53\x69\xbb\x7d\xce\x39\xe9\x85\x00\x09\x08\x48\x09\xbd\x19\x04\xa4\x04\x10\x29\xa1\x45\x54\x10\x91\x66\x23\x24\x21\x84\x12\x30\x24\x80\xbd\x21\x2a\x30\xa2\x88\x88\x80\x05\x64\x54\xc4\x01\x47\x47\x40\xc6\x8a\x28\xb6\x41\xb1\x77\x83\x0c\x02\xca\x38\x38\x8a\xa8\xa8\xdc\x15\xf8\x21\x77\xdd\x7b\xd7\x5d\xdf\x5a\xdf\xb7\x7f\xbc\x67\x9f\xbd\x9e\xe7\xac\x7d\xf6\xfb\x67\x03\x50\x6f\x01\x00\xa0\x00\x90\x26\x53\xc8\x23\x82\xfd\xd9\x31\xb1\x71\x6c\xe2\x0b\x40\x81\x01\x63\x10\x08\x33\x33\xe0\x7f\x02\xf9\x41\x3f\xde\x1f\x7f\xbb\xc3\x51\x9f\xde\x1a\xc7\x9f\xd7\xef\xd8\x75\xb6\x42\x62\xd5\x51\x48\xe1\x75\xfc\x2f\xbb\x13\xa1\x29\x12\x67\x0a\x01\x90\x00\x00\x10\x26\xc4\xc4\xc6\x01\x20\x87\x01\x80\x95\x10\x19\xc1\x03\x40\x4e\x03\x90\x68\x92\x09\x5c\x3e\x81\x8b\xd2\x44\x22\x00\xf2\x15\x00\xd8\x2c\x19\xdb\xa5\x84\xab\x77\x53\x95\x69\x52\x00\x8a\x48\xcd\xd3\xc4\x82\x4c\x00\x4a\x0e\x00\x58\x24\xa4\x64\x28\x00\x28\x95\x6a\x5d\x3e\x3e\x7f\x4c\xcd\x15\x62\x61\x12\x00\xa5\x0d\x00\x68\x59\x4a\xb1\x08\x80\xa2\xce\x65\x53\xb6\x42\x3d\x4f\x8d\x51\xcf\x08\x33\xe4\x6a\x9e\x0a\x00\xee\xc2\x24\x81\x08\x80\x5a\x03\x00\x53\xc6\xfd\x8f\x81\x9c\x19\x11\xec\xef\xec\xe8\xe4\xf2\xff\xfc\xf3\xbf\x0c\xf5\x9d\x8c\x33\x8b\xfd\x00\x8c\x5c\x80\xc6\x9b\x42\xa5\x3c\x6b\x5c\xc3\xa9\x0f\x3c\x50\x80\x01\x2c\xd0\x07\x63\x30\x07\x1b\xe0\x80\x33\xb8\x83\x17\xf8\x42\x20\xcc\x84\x30\x88\x84\x58\x58\x0c\x42\x48\x82\x34\x90\x43\x36\xac\x84\x75\x90\x07\x05\xb0\x0d\x76\x42\x39\xec\x83\x1a\xa8\x85\x7a\x38\x0e\x4d\x70\x1a\x2e\xc0\x65\xb8\x0e\xb7\xe0\x1e\x3c\x01\x15\xf4\xc0\x1b\x18\x84\x8f\x30\x82\x20\x08\x11\xa1\x23\x4c\x44\x1f\x31\x41\x2c\x11\x7b\xc4\x19\xe1\x22\x33\x90\x40\x64\x16\x12\x81\xc4\x22\xf1\x88\x04\x91\x21\x4a\x64\x25\xb2\x01\x29\x40\x8a\x91\x72\xa4\x0a\xa9\x45\x7e\x45\x4e\x21\x17\x90\xab\x48\x27\xf2\x08\xe9\x42\xfa\x91\x7f\x90\x2f\x28\x86\xd2\x50\x16\x6a\x84\x5a\xa1\x53\x51\x2e\xea\x87\x86\xa2\x91\xe8\x22\x54\x82\x2e\x45\x97\xa3\xb9\xe8\x56\xb4\x0c\xad\x46\x8f\xa2\x8d\xe8\x05\xf4\x3a\x7a\x0f\x55\xa1\x6f\xd0\x21\x0c\x30\x2a\xa6\x8b\x99\x62\x1c\x8c\x8b\xf1\xb0\x30\x2c\x0e\x4b\xc4\xe4\xd8\x6a\x2c\x1f\x2b\xc5\xaa\xb1\x7a\xac\x05\x6b\xc7\xee\x60\x2a\x6c\x00\xfb\x8c\x23\xe0\x98\x38\x36\x8e\x83\xf3\xc2\x85\xe0\xe6\xe3\x84\xb8\xa5\xb8\xd5\xb8\x42\x5c\x39\xee\x30\xae\x11\xd7\x86\xbb\x83\xeb\xc2\x0d\xe2\xbe\xe3\xe9\x78\x43\xbc\x3d\xde\x13\xcf\xc7\xc7\xe0\x25\xf8\x6c\x7c\x1e\xbe\x14\x7f\x10\x7f\x12\x7f\x09\x7f\x0f\xdf\x83\xff\x48\x20\x10\x74\x09\xd6\x04\x77\x42\x08\x21\x96\x90\x4c\x58\x41\x28\x24\xec\x21\x34\x10\xce\x13\x3a\x09\xdd\x84\x21\x22\x91\xa8\x4f\xb4\x27\x7a\x13\xc3\x88\x02\xa2\x82\x98\x47\xdc\x4d\x3c\x4a\x3c\x47\xbc\x4d\xec\x21\x7e\x22\x51\x49\x26\x24\x67\x52\x10\x29\x8e\x24\x23\xad\x27\x95\x92\x8e\x90\xce\x92\x6e\x93\x7a\x49\x23\x64\x4d\xb2\x25\xd9\x93\x1c\x46\x16\x91\x97\x91\x8b\xc8\x35\xe4\x16\xf2\x4d\x72\x0f\x79\x84\xa2\x45\xb1\xa6\x78\x53\x22\x29\xc9\x94\x75\x94\x32\x4a\x3d\xe5\x12\xe5\x29\xe5\x3d\x95\x4a\x35\xa3\x7a\x50\xe7\x52\xa5\xd4\xb5\xd4\x32\xea\x31\xea\x15\x6a\x17\xf5\x33\x4d\x9b\x66\x47\xe3\xd1\x16\xd2\x94\xb4\xad\xb4\x43\xb4\xf3\xb4\x47\xb4\xf7\x74\x3a\xdd\x8a\xee\x4b\x8f\xa3\x2b\xe8\x5b\xe9\xb5\xf4\x8b\xf4\xe7\xf4\x4f\x1a\x4c\x0d\x07\x0d\xbe\x86\x48\x63\x8d\x46\x85\x46\xa3\xc6\x6d\x8d\xb7\x0c\x32\xc3\x92\xe1\xc7\x58\xcc\x58\xce\x28\x65\x9c\x60\xdc\x64\x0c\x68\x92\x35\xad\x34\x79\x9a\x02\xcd\xd5\x9a\x15\x9a\xa7\x34\x1f\x68\x0e\x69\x31\xb5\x9c\xb4\xc2\xb4\xd2\xb4\x0a\xb5\x8e\x68\x5d\xd5\xea\xd3\x26\x6a\x5b\x69\x07\x6a\x8b\xb4\x73\xb5\x0f\x68\x5f\xd4\xee\x66\x62\x4c\x73\x26\x8f\x29\x64\x6e\x60\xd6\x30\x2f\x31\x7b\x58\x04\x96\x35\x8b\xcf\x4a\x66\x15\xb0\x7e\x61\x75\xb0\x06\x75\xb4\x75\x5c\x74\xa2\x74\x72\x74\x2a\x74\xce\xe8\xa8\x74\x31\x5d\x2b\x5d\xbe\x6e\xaa\x6e\x91\xee\x71\xdd\xfb\xba\x5f\x26\x19\x4d\xf2\x9b\x24\x9e\xb4\x65\x52\xfd\xa4\xdb\x93\x86\xf5\x26\xeb\xf9\xea\x89\xf5\xf2\xf5\x1a\xf4\xee\xe9\x7d\xd1\x67\xeb\x07\xea\xa7\xe8\x6f\xd7\x6f\xd2\x7f\x66\x80\x33\xb0\x33\x98\x6b\x90\x6d\xb0\xd7\xe0\x92\xc1\xc0\x64\xd6\x64\xaf\xc9\xc2\xc9\xf9\x93\x8f\x4f\x7e\x6c\x88\x1a\xda\x19\x46\x18\xae\x30\x3c\x60\x78\xc3\x70\xc8\xc8\xd8\x28\xd8\x28\xc3\x68\xb7\xd1\x45\xa3\x01\x63\x5d\x63\x5f\xe3\x64\xe3\x12\xe3\xb3\xc6\xfd\x26\x4c\x93\x19\x26\x52\x93\x12\x93\x73\x26\xaf\xd9\x3a\x6c\x3f\x76\x2a\xbb\x8c\xdd\xc6\x1e\x34\x35\x34\x0d\x31\x55\x9a\x56\x99\x76\x98\x8e\x98\x59\x9b\xcd\x37\x5b\x6f\xd6\x60\xf6\xcc\x9c\x62\xce\x35\x4f\x34\x2f\x31\x6f\x35\x1f\xb4\x30\xb1\x98\x6d\xb1\xd2\xa2\xce\xe2\xb1\x25\xd9\x92\x6b\x99\x64\xb9\xcb\xb2\xdd\x72\xd8\xca\xda\x2a\xda\x6a\x93\x55\x93\x55\x9f\xb5\x9e\x35\xdf\x7a\xb9\x75\x9d\xf5\x53\x1b\xba\x8d\x8f\xcd\x52\x9b\x6a\x9b\xbb\xb6\x04\x5b\xae\x6d\x8a\xed\x1e\xdb\x5b\x76\xa8\x9d\xab\x5d\x92\x5d\x85\xdd\x4d\x7b\xd4\xde\xcd\x5e\x6a\xbf\xc7\xbe\x73\x0a\x7e\x8a\xc7\x14\xd9\x94\xea\x29\x0f\x38\x34\x8e\x1f\x27\x8b\x53\xc7\xe9\x72\xd0\x75\x98\xe5\xb0\xde\xa1\xc9\xe1\xed\x54\x8b\xa9\x71\x53\xb7\x4f\x6d\x9f\xfa\xdd\xd1\xd5\x31\xd5\xb1\xc6\xf1\x89\x93\xb6\xd3\x4c\xa7\xf5\x4e\x2d\x4e\xff\x38\xdb\x39\x0b\x9d\x2b\x9c\xef\x4e\xa3\x4f\x0b\x9a\xb6\x66\x5a\xf3\xb4\x77\x2e\xf6\x2e\x62\x97\xbd\x2e\x0f\x5d\x99\xae\xb3\x5d\x37\xb9\xb6\xba\x7e\x73\x73\x77\x93\xbb\xd5\xbb\xf5\xbb\x5b\xb8\xc7\xbb\x57\xba\x3f\xe0\xb2\xb8\xe1\xdc\x42\xee\x15\x0f\xbc\x87\xbf\xc7\x1a\x8f\xd3\x1e\x9f\x3d\xdd\x3c\x15\x9e\xc7\x3d\xff\xf6\xe2\x78\xa5\x78\x1d\xf1\xea\x9b\x6e\x3d\x5d\x3c\xbd\x66\x7a\xb7\xb7\x99\xb7\xc0\xbb\xca\x5b\x35\x83\x3d\x23\x7e\xc6\xfe\x19\x2a\x1f\x53\x1f\x81\x4f\xb5\xcf\x4b\x5f\x73\x5f\x91\xef\x41\xdf\x5e\x3f\x5b\xbf\x64\xbf\xa3\x7e\x6f\xfd\x1d\xfd\xe5\xfe\x27\xfd\x87\x79\x9e\xbc\x55\xbc\xf3\x01\x58\x40\x70\x40\x7e\x40\x47\xa0\x76\xe0\xfc\xc0\xf2\xc0\xe7\x41\x66\x41\x92\xa0\xba\xa0\xc1\x60\xd7\xe0\x15\xc1\xe7\x43\xf0\x21\xa1\x21\xdb\x43\x1e\xf0\x8d\xf8\x42\x7e\x2d\x7f\x70\xa6\xfb\xcc\x55\x33\xdb\x42\x69\xa1\xf3\x42\xcb\x43\x5f\xce\xb2\x9b\x25\x9f\xd5\x32\x1b\x9d\x3d\x73\xf6\x8e\xd9\x4f\xe7\x58\xce\x91\xcd\x69\x0a\x83\x30\x7e\xd8\x8e\xb0\x67\xe1\xd6\xe1\x4b\xc3\x7f\x9f\x4b\x98\x1b\x3e\xb7\x62\xee\xab\x08\xa7\x88\x95\x11\xed\xf3\x98\xf3\x96\xcc\x3b\x32\xef\x63\xa4\x7f\x64\x51\xe4\x93\xf9\x36\xf3\x95\xf3\x5b\xa3\x18\x51\x0b\xa3\x6a\xa3\x86\xa3\x03\xa2\x8b\xa3\x55\x31\x53\x63\x56\xc5\x5c\x8f\x35\x88\x95\xc6\x36\xc7\x11\xe3\xa2\xe2\x0e\xc6\x0d\x2d\x08\x5c\xb0\x73\x41\xcf\x42\xd7\x85\x79\x0b\xef\x2f\xb2\x5e\x94\xb3\xe8\xea\x62\x83\xc5\xa9\x8b\xcf\x2c\x61\x2c\x11\x2c\x39\x11\x8f\x8f\x8f\x8e\x3f\x12\xff\x55\x10\x26\xa8\x16\x0c\x25\xf0\x13\x2a\x13\x06\x85\x3c\xe1\x2e\xe1\x1b\x91\xaf\xa8\x44\xd4\x2f\xf6\x16\x17\x8b\x7b\x13\xbd\x13\x8b\x13\xfb\x24\xde\x92\x1d\x92\xfe\x24\x9f\xa4\xd2\xa4\x01\x29\x4f\x5a\x2e\x7d\x97\x1c\x92\xbc\x2f\x79\x38\x25\x2c\xe5\x50\xca\x68\x6a\x74\x6a\x43\x1a\x29\x2d\x3e\xed\x94\x4c\x5b\x96\x22\x6b\x4b\x37\x4e\xcf\x49\xef\xcc\xb0\xcf\xc8\xcb\x50\x2d\xf5\x5c\xba\x73\xe9\xa0\x3c\x54\x7e\x30\x13\xc9\x5c\x94\xd9\xac\x60\x29\x32\x14\x37\x94\x36\xca\x8d\xca\xae\xac\x19\x59\x15\x59\x9f\xb2\xa3\xb2\x4f\xe4\x68\xe5\xc8\x72\x6e\x2c\xb3\x5b\xb6\x65\x59\xef\xf2\xa0\xe5\x3f\xaf\xc0\xad\x10\xae\x68\x5d\x69\xba\x72\xdd\xca\xae\x55\x7e\xab\xaa\x56\x23\xab\x13\x56\xb7\xae\x31\x5f\x93\xbb\xa6\x67\x6d\xf0\xda\xc3\xeb\x28\xeb\x52\xd6\xfd\xb1\xde\x71\x7d\xf1\xfa\x0f\x1b\xa2\x37\xb4\xe4\x1a\xe5\xae\xcd\xed\xde\x18\xbc\xb1\x2e\x4f\x23\x4f\x9e\xf7\x60\x93\xd7\xa6\x7d\x9b\x71\x9b\xa5\x9b\x3b\xb6\x4c\xdb\xb2\x7b\xcb\xf7\x7c\x51\xfe\xb5\x02\xc7\x82\xd2\x82\xaf\x85\xc2\xc2\x6b\x3f\x39\xfd\x54\xf6\xd3\xe8\xd6\xc4\xad\x1d\x45\x6e\x45\x7b\xb7\x11\xb6\xc9\xb6\xdd\xdf\xee\xb3\xfd\x70\xb1\x56\xf1\xf2\xe2\xee\x1d\xb3\x77\x34\x96\xb0\x4b\xf2\x4b\x3e\xec\x5c\xb2\xf3\x6a\xa9\x4b\xe9\xbe\x5d\x94\x5d\xca\x5d\xaa\xb2\x59\x65\xcd\xbb\x2d\x76\x6f\xdb\xfd\xb5\x3c\xa9\xfc\x5e\x85\x7f\x45\x43\xa5\x61\xe5\x96\xca\xe1\x3d\xa2\x3d\xb7\xf7\xfa\xee\xad\xdf\x67\xb4\xaf\x60\xdf\x97\xfd\xd2\xfd\x0f\xab\x82\xab\x1a\xab\xad\xaa\x4b\x0f\x10\x0e\x64\x1d\x78\x55\x13\x55\xd3\xfe\x33\xf7\xe7\xda\x83\x06\x07\x0b\x0e\x7e\x3b\x24\x3b\xa4\x3a\x1c\x71\xb8\xad\xd6\xbd\xb6\xf6\x88\xe1\x91\xa2\x3a\xb4\x4e\x59\xd7\x7f\x74\xe1\xd1\x5b\xbf\x04\xfc\xd2\x5c\xcf\xa9\xaf\x6a\xd0\x6d\x28\x38\x06\xc7\x94\xc7\x5e\xff\x1a\xff\xeb\xfd\xe3\xa1\xc7\x5b\x4f\x70\x4f\xd4\xff\x66\xf9\x5b\xe5\x49\xe6\xc9\xfc\x46\xa4\x71\x59\xe3\x60\x53\x52\x93\xaa\x39\xb6\xb9\xf3\xd4\xcc\x53\xad\x2d\x5e\x2d\x27\x7f\x77\xf8\xfd\xd0\x69\xd3\xd3\x15\x67\x74\xce\x14\x9d\xa5\x9c\xcd\x3d\x3b\x7a\x6e\xf9\xb9\xa1\xf3\x19\xe7\x07\x2e\x48\x2e\x74\xb7\x2e\x69\x7d\x72\x31\xe6\xe2\xdd\xb6\xb9\x6d\x1d\x97\x42\x2f\x5d\xb9\x1c\x74\xf9\x62\xbb\x5f\xfb\xb9\x2b\xde\x57\x4e\x5f\xf5\xbc\x7a\xea\x1a\xf7\x5a\xd3\x75\xb7\xeb\x8d\x37\x5c\x6f\x9c\xfc\xc3\xf5\x8f\x93\x1d\x6e\x1d\x8d\x37\xdd\x6f\x36\xdf\xf2\xb8\xd5\xd2\x39\xbd\xf3\xec\x6d\x9f\xdb\x17\xee\x04\xdc\xb9\x7c\x97\x7f\xf7\xfa\xbd\x39\xf7\x3a\xef\xcf\xbf\xff\xf0\xc1\xc2\x07\xaa\x87\xa2\x87\x7d\x8f\x52\x1f\xbd\x7b\x9c\xf5\x78\xe4\xc9\xda\xa7\xf8\xa7\xf9\xcf\x34\x9f\x95\x3e\x37\x7c\x5e\xfd\xc2\xf6\x45\x83\xca\x4d\x75\xa6\x2b\xa0\xeb\xc6\xcb\x79\x2f\x9f\x74\x0b\xbb\xdf\xfc\x99\xf9\xe7\xd7\x9e\xdc\x57\xf4\x57\xa5\xbd\x26\xbd\xb5\x7d\xce\x7d\xa7\xfb\x83\xfa\x6f\xbd\x5e\xf0\xba\xe7\x4d\xc6\x9b\x91\x81\xbc\xbf\xb4\xfe\xaa\x7c\x6b\xf3\xf6\xb7\xbf\x7d\xff\xbe\x31\x18\x33\xd8\xf3\x4e\xfe\x6e\xf4\x9f\xc2\xf7\xfa\xef\x0f\x7d\x70\xf9\xd0\x3a\x14\x3e\xf4\xfc\x63\xda\xc7\x91\xe1\xfc\x4f\xfa\x9f\x0e\x7f\xe6\x7e\x6e\xff\x12\xfd\xa5\x77\x24\xfb\x2b\xf1\x6b\xd9\x37\xdb\x6f\x2d\xdf\x43\xbf\x3f\x1d\x4d\x1b\x1d\x9d\xd0\x41\x1c\xf8\x81\x3c\xb6\x9b\x93\x87\x9b\x1b\xc7\x99\xe3\xc4\x0e\x10\x27\x0a\x94\xa9\x0a\xb6\xba\xd9\xf1\xd2\x53\xd3\x95\x72\xf6\xbc\x0c\x81\x50\xcc\xe6\xb0\xd5\x65\xe5\x3f\xd6\x53\x12\x76\x03\x34\x6d\x04\xd0\x7b\xfc\x43\x03\x80\xf0\xf1\xc7\x78\x27\x1b\x03\xf2\x7f\x7c\x0a\x9d\xb0\xb7\x17\x00\xd4\x5d\x6b\xd3\x0f\x2d\xbd\x1a\x80\x3b\x04\x80\x6d\xcb\x94\x4a\xc6\x34\x5e\x44\x24\x7b\x42\x0e\x9c\x08\x71\xa2\x58\x2e\x96\x09\xc5\xec\x28\xa9\x38\x5b\x2a\x93\xb0\x79\xe9\x32\x91\x54\x21\x4d\x97\xb1\xa5\x32\xf6\x7f\x8b\xe9\xdf\x1c\xc3\x84\x1c\x7e\x74\x63\x85\x38\x47\x31\xe6\x33\x3d\x63\x99\x5c\x2a\x49\x52\xb0\xf9\x32\x85\x58\x2e\x13\xa8\x1d\x09\x52\xc7\x6e\x47\xae\xf6\x98\x99\x2e\x57\x48\x95\x69\x53\xd8\xce\x8e\x4e\xae\x00\x99\x89\xd3\x9c\xc7\x93\xa2\x05\x00\xe0\x5f\x8c\x8e\xbe\xb7\x02\x20\x96\x00\x7c\x2b\x1a\x1d\x1d\xa9\x1a\x1d\xfd\x56\x0d\x80\x3d\x01\x38\xaf\xfc\xaf\x00\x00\x00\xff\xff\xd0\x13\x17\x99\xd0\x0b\x00\x00"); +func (_aaba ColorSpace )String ()string {if _aaba < 0||_aaba >=ColorSpace (len (_ged )-1){return "C\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0028"+_eg .FormatInt (int64 (_aaba ),10)+"\u0029";};return _fgc [_ged [_aaba ]:_ged [_aaba +1]];}; +const (ColorSpaceUndefined ColorSpace =iota ;ColorSpaceXYZ ;ColorSpaceLAB ;ColorSpaceLUV ;ColorSpaceYCBR ;ColorSpaceYXY ;ColorSpaceRGB ;ColorSpaceGRAY ;ColorSpaceHSV ;ColorSpaceHLS ;ColorSpaceCMYK ;ColorSpaceCMY ;ColorSpace2CLR ;ColorSpace3CLR ;ColorSpace4CLR ; +ColorSpace5CLR ;ColorSpace6CLR ;ColorSpace7CLR ;ColorSpace8CLR ;ColorSpace9CLR ;ColorSpaceACLR ;ColorSpaceBCLR ;ColorSpaceCCLR ;ColorSpaceDCLR ;ColorSpaceECLR ;ColorSpaceFCLR ;);func _abd ()(*asset ,error ){_fcb ,_adf :=_adb ();if _adf !=nil {return nil ,_adf ; +};_adg :=bindataFileInfo {_bg :"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063",_bd :60960,_eaf :_cg .FileMode (436),_cf :_ef .Unix (1628763334,0)};_bgf :=&asset {_dbg :_fcb ,_aaf :_adg }; +return _bgf ,nil ;};type ColorSpace int ;func MustAsset (name string )[]byte {_ced ,_cab :=Asset (name );if _cab !=nil {panic ("\u0061\u0073\u0073\u0065\u0074\u003a\u0020\u0041\u0073\u0073\u0065\u0074\u0028"+name +"\u0029\u003a\u0020"+_cab .Error ());}; +return _ced ;};func (_dg bindataFileInfo )IsDir ()bool {return false };func RestoreAssets (dir ,name string )error {_cbb ,_dee :=AssetDir (name );if _dee !=nil {return RestoreAsset (dir ,name );};for _ ,_egcg :=range _cbb {_dee =RestoreAssets (dir ,_ad .Join (name ,_egcg )); +if _dee !=nil {return _dee ;};};return nil ;};type bintree struct{Func func ()(*asset ,error );Children map[string ]*bintree ;};const (DeviceClassUndefined DeviceClass =iota ;DeviceClassSCNR ;DeviceClassMNTR ;DeviceClassPRTR ;DeviceClassLINK ;DeviceClassSPAC ; +DeviceClassABST ;DeviceClassNMCL ;);func NewSRGBv2OutputIntent (subtype _g .PdfOutputIntentType )(*_g .PdfOutputIntent ,error ){_acf ,_bee :=_de ();if _bee !=nil {return nil ,_bee ;};_bafa :=_g .NewCustomPdfOutputIntent ("\u0073\u0052\u0047\u0042\u0076\u0032","\u0043\u0075\u0073\u0074\u006f\u006d","\u0073R\u0047B\u0020\u0063\u006f\u006c\u006fr\u0020\u0070r\u006f\u0066\u0069\u006c\u0065",_acf ,3); +if _dff :=_bafa .SetSubtype (subtype );_dff !=nil {return nil ,_dff ;};return _bafa ,nil ;};func _ (){var _be [1]struct{};_ =_be [DeviceClassUndefined -0];_ =_be [DeviceClassSCNR -1];_ =_be [DeviceClassMNTR -2];_ =_be [DeviceClassPRTR -3];_ =_be [DeviceClassLINK -4]; +_ =_be [DeviceClassSPAC -5];_ =_be [DeviceClassABST -6];_ =_be [DeviceClassNMCL -7];};type asset struct{_dbg []byte ;_aaf _cg .FileInfo ;};var _bbd =map[string ]ColorSpace {"\u0035\u0038\u0035\u0039\u0035\u0041\u0032\u0030":ColorSpaceXYZ ,"\u0034\u0043\u0036\u0031\u0036\u0032\u0032\u0030":ColorSpaceLAB ,"\u0034\u0043\u0037\u0035\u0037\u0036\u0032\u0030":ColorSpaceLUV ,"\u0035\u0039\u0034\u0033\u0036\u0032\u0037\u0032":ColorSpaceYCBR ,"\u0035\u0039\u0037\u0038\u0037\u0039\u0032\u0030":ColorSpaceYXY ,"\u0035\u0032\u0034\u0037\u0034\u0032\u0032\u0030":ColorSpaceRGB ,"\u0034\u0037\u0035\u0032\u0034\u0031\u0035\u0039":ColorSpaceGRAY ,"\u0034\u0038\u0035\u0033\u0035\u0036\u0032\u0030":ColorSpaceHSV ,"\u0034\u0038\u0034\u0043\u0035\u0033\u0032\u0030":ColorSpaceHLS ,"\u0034\u0033\u0034\u0044\u0035\u0039\u0034\u0042":ColorSpaceCMYK ,"\u0034\u0033\u0034\u0044\u0035\u0039\u0032\u0030":ColorSpaceCMY ,"\u0033\u0032\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace2CLR ,"\u0033\u0033\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace3CLR ,"\u0033\u0034\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace4CLR ,"\u0033\u0035\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace5CLR ,"\u0033\u0036\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace6CLR ,"\u0033\u0037\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace7CLR ,"\u0033\u0038\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace8CLR ,"\u0033\u0039\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpace9CLR ,"\u0034\u0031\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceACLR ,"\u0034\u0032\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceBCLR ,"\u0034\u0033\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceCCLR ,"\u0034\u0034\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceDCLR ,"\u0034\u0035\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceECLR ,"\u0034\u0036\u0034\u0033\u0034\u0043\u0035\u0032":ColorSpaceFCLR }; +func _adb ()([]byte ,error ){return _ge (_bb ,"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063");};func _faf ()(*asset ,error ){_ce ,_ae :=_gc ();if _ae !=nil {return nil ,_ae ; +};_fad :=bindataFileInfo {_bg :"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063",_bd :936,_eaf :_cg .FileMode (436),_cf :_ef .Unix (1628763334,0)};_ca :=&asset {_dbg :_ce ,_aaf :_fad }; +return _ca ,nil ;};var _eeg =[...]uint8 {0,20,35,50,65,80,95,110,125};func AssetInfo (name string )(_cg .FileInfo ,error ){_dba :=_c .Replace (name ,"\u005c","\u002f",-1);if _aef ,_feg :=_cd [_dba ];_feg {_eef ,_gec :=_aef ();if _gec !=nil {return nil ,_db .Errorf ("\u0041\u0073se\u0074\u0049\u006ef\u006f\u0020\u0025\u0073 ca\u006e't\u0020\u0072\u0065\u0061\u0064\u0020\u0062y \u0065\u0072\u0072\u006f\u0072\u003a\u0020%\u0076",name ,_gec ); +};return _eef ._aaf ,nil ;};return nil ,_db .Errorf ("\u0041\u0073\u0073\u0065tI\u006e\u0066\u006f\u0020\u0025\u0073\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075n\u0064",name );};func RestoreAsset (dir ,name string )error {_fac ,_cea :=Asset (name ); +if _cea !=nil {return _cea ;};_bgc ,_cea :=AssetInfo (name );if _cea !=nil {return _cea ;};_cea =_cg .MkdirAll (_gee (dir ,_ad .Dir (name )),_cg .FileMode (0755));if _cea !=nil {return _cea ;};_cea =_d .WriteFile (_gee (dir ,name ),_fac ,_bgc .Mode ()); +if _cea !=nil {return _cea ;};_cea =_cg .Chtimes (_gee (dir ,name ),_bgc .ModTime (),_bgc .ModTime ());if _cea !=nil {return _cea ;};return nil ;};var _cae =&bintree {nil ,map[string ]*bintree {"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043":&bintree {_fc ,map[string ]*bintree {}},"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063":&bintree {_faf ,map[string ]*bintree {}},"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063":&bintree {_aca ,map[string ]*bintree {}},"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063":&bintree {_abd ,map[string ]*bintree {}}}}; +func _ge (_bf []byte ,_gb string )([]byte ,error ){_ac ,_efg :=_f .NewReader (_a .NewBuffer (_bf ));if _efg !=nil {return nil ,_db .Errorf ("R\u0065\u0061\u0064\u0020\u0025\u0071\u003a\u0020\u0025\u0076",_gb ,_efg );};var _gg _a .Buffer ;_ ,_efg =_ea .Copy (&_gg ,_ac ); +_ba :=_ac .Close ();if _efg !=nil {return nil ,_db .Errorf ("R\u0065\u0061\u0064\u0020\u0025\u0071\u003a\u0020\u0025\u0076",_gb ,_efg );};if _ba !=nil {return nil ,_efg ;};return _gg .Bytes (),nil ;};type bindataFileInfo struct{_bg string ;_bd int64 ;_eaf _cg .FileMode ; +_cf _ef .Time ;};type DeviceClass int ;func _gc ()([]byte ,error ){return _ge (_efb ,"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063");};var _cd =map[string ]func ()(*asset ,error ){"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043":_fc ,"I\u0053\u004f\u0063\u006f\u0061\u0074e\u0064\u005f\u0076\u0032\u005f\u0067\u0072\u0065\u00791\u0063\u005f\u0062a\u0073.\u0069\u0063\u0063":_faf ,"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063":_aca ,"\u0073\u0052\u0047\u0042\u005f\u0076\u0034\u005f\u0049\u0043\u0043_\u0070\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065.\u0069\u0063\u0063":_abd }; +func (_ee bindataFileInfo )Name ()string {return _ee ._bg };func _gee (_aad ,_ggd string )string {_efbe :=_c .Replace (_ggd ,"\u005c","\u002f",-1);return _ad .Join (append ([]string {_aad },_c .Split (_efbe ,"\u002f")...)...);};func ParseHeader (data []byte )(ProfileHeader ,error ){if len (data )< 128{return ProfileHeader {},_b .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065"); +};_egg :=_a .NewReader (data );var _dbd ProfileHeader ;_dd :=make ([]byte ,4);_ ,_dac :=_egg .ReadAt (_dd ,8);if _dac !=nil {return ProfileHeader {},_b .New ("\u0072\u0065\u0061\u0064\u0069\u006eg\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066a\u0069\u006c\u0065\u0064"); +};_aceg :=_aa .EncodeToString (_dd [:2]);_aceg =_c .TrimPrefix (_aceg ,"\u0030");_bgd :=_c .Builder {};for _eba ,_daf :=range _aceg {_bgd .WriteRune (_daf );if _eba !=len (_aceg )-1{_bgd .WriteRune ('.');};};_dbd .Version =_bgd .String ();_ ,_dac =_egg .ReadAt (_dd ,12); +if _dac !=nil {return ProfileHeader {},_b .New ("\u0072\u0065\u0061\u0064\u0069\u006eg\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066a\u0069\u006c\u0065\u0064");};_faa ,_cc :=_egcc [_c .ToUpper (_aa .EncodeToString (_dd ))]; +if !_cc {return ProfileHeader {},ErrUndefinedHeaderDeviceClass ;};_dbd .DeviceClass =_faa ;_ ,_dac =_egg .ReadAt (_dd ,16);if _dac !=nil {return ProfileHeader {},_b .New ("\u0072\u0065\u0061\u0064\u0069\u006eg\u0020\u0049\u0043\u0043\u0020\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020h\u0065\u0061\u0064\u0065\u0072\u0020\u0066a\u0069\u006c\u0065\u0064"); +};_abb ,_cc :=_bbd [_c .ToUpper (_aa .EncodeToString (_dd ))];if !_cc {return ProfileHeader {},ErrUndefinedHeaderColorSpace ;};_dbd .ColorSpace =_abb ;return _dbd ,nil ;};func (_fe bindataFileInfo )Size ()int64 {return _fe ._bd };func (_acd bindataFileInfo )Mode ()_cg .FileMode {return _acd ._eaf }; +func _fc ()(*asset ,error ){_cbd ,_egc :=_cb ();if _egc !=nil {return nil ,_egc ;};_fa :=bindataFileInfo {_bg :"\u0049S\u004f\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u0076\u0032\u005f3\u0030\u0030\u005f\u0062\u0061\u0073\u002e\u0049\u0043\u0043",_bd :1052612,_eaf :_cg .FileMode (420),_cf :_ef .Unix (1171030956,0)}; +_ag :=&asset {_dbg :_cbd ,_aaf :_fa };return _ag ,nil ;};const _ffg ="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0055\u006e\u0064\u0065\u0066\u0069n\u0065\u0064D\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0053\u0043\u004e\u0052\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u004d\u004e\u0054\u0052\u0044\u0065v\u0069\u0063\u0065C\u006c\u0061\u0073s\u0050\u0052\u0054\u0052\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073L\u0049\u004e\u004b\u0044\u0065\u0076\u0069\u0063\u0065\u0043l\u0061\u0073\u0073\u0053\u0050\u0041\u0043\u0044\u0065\u0076i\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0041\u0042\u0053\u0054D\u0065\u0076\u0069\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u004e\u004d\u0043\u004c"; +func _ (){var _gef [1]struct{};_ =_gef [ColorSpaceUndefined -0];_ =_gef [ColorSpaceXYZ -1];_ =_gef [ColorSpaceLAB -2];_ =_gef [ColorSpaceLUV -3];_ =_gef [ColorSpaceYCBR -4];_ =_gef [ColorSpaceYXY -5];_ =_gef [ColorSpaceRGB -6];_ =_gef [ColorSpaceGRAY -7]; +_ =_gef [ColorSpaceHSV -8];_ =_gef [ColorSpaceHLS -9];_ =_gef [ColorSpaceCMYK -10];_ =_gef [ColorSpaceCMY -11];_ =_gef [ColorSpace2CLR -12];_ =_gef [ColorSpace3CLR -13];_ =_gef [ColorSpace4CLR -14];_ =_gef [ColorSpace5CLR -15];_ =_gef [ColorSpace6CLR -16]; +_ =_gef [ColorSpace7CLR -17];_ =_gef [ColorSpace8CLR -18];_ =_gef [ColorSpace9CLR -19];_ =_gef [ColorSpaceACLR -20];_ =_gef [ColorSpaceBCLR -21];_ =_gef [ColorSpaceCCLR -22];_ =_gef [ColorSpaceDCLR -23];_ =_gef [ColorSpaceECLR -24];_ =_gef [ColorSpaceFCLR -25]; +};func AssetDir (name string )([]string ,error ){_ead :=_cae ;if len (name )!=0{_eea :=_c .Replace (name ,"\u005c","\u002f",-1);_cfb :=_c .Split (_eea ,"\u002f");for _ ,_gbc :=range _cfb {_ead =_ead .Children [_gbc ];if _ead ==nil {return nil ,_db .Errorf ("\u0041s\u0073e\u0074\u0020\u0025\u0073\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064",name ); +};};};if _ead .Func !=nil {return nil ,_db .Errorf ("\u0041s\u0073e\u0074\u0020\u0025\u0073\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064",name );};_df :=make ([]string ,0,len (_ead .Children ));for _fb :=range _ead .Children {_df =append (_df ,_fb ); +};return _df ,nil ;};type ProfileHeader struct{Version string ;DeviceClass DeviceClass ;ColorSpace ColorSpace ;};func Asset (name string )([]byte ,error ){_cbf :=_c .Replace (name ,"\u005c","\u002f",-1);if _ggf ,_bfa :=_cd [_cbf ];_bfa {_eb ,_dga :=_ggf (); +if _dga !=nil {return nil ,_db .Errorf ("\u0041\u0073\u0073\u0065\u0074\u0020\u0025\u0073\u0020\u0063\u0061\u006e\u0027\u0074\u0020r\u0065a\u0064\u0020\u0062\u0079\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",name ,_dga );};return _eb ._dbg ,nil ; +};return nil ,_db .Errorf ("\u0041s\u0073e\u0074\u0020\u0025\u0073\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064",name );};func _aca ()(*asset ,error ){_efd ,_bab :=_de ();if _bab !=nil {return nil ,_bab ;};_ace :=bindataFileInfo {_bg :"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063",_bd :3024,_eaf :_cg .FileMode (436),_cf :_ef .Unix (1628763334,0)}; +_da :=&asset {_dbg :_efd ,_aaf :_ace };return _da ,nil ;};func NewCmykIsoCoatedV2OutputIntent (subtype _g .PdfOutputIntentType )(*_g .PdfOutputIntent ,error ){_acc ,_acaf :=_cb ();if _acaf !=nil {return nil ,_acaf ;};_bafg :=_g .NewCustomPdfOutputIntent ("I\u0053\u004f\u0020\u0043oa\u0074e\u0064\u0020\u0076\u0032\u00203\u0030\u0030\u0020\u0062\u0061\u0073","I\u0053O\u0063\u006f\u0061\u0074\u0065\u0064\u005f\u00762\u005f\u0033\u0030\u0030_b\u0061\u0073","\u0054h\u0069\u0073\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u0020b\u0061\u0073ed\u0020\u006f\u006e\u0020\u0074\u0068e\u0020\u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u0069\u007a\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061t\u0061\u0020\u201e\u0046\u004f\u0047\u0052\u0041\u0033\u0039\u004c\u002e\u0074\u0078\u0074\u201c\u002e\u0020\u0054\u0068\u0065\u0020\u006d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u0069\u006e\u006b\u0020\u0063\u006f\u0076\u0065\u0072\u0061\u0067\u0065\u0020f\u006f\u0072\u0020\u0074\u0068e\u0020\u0073\u0065\u0070\u0061\u0072\u0061t\u0069\u006f\u006e \u0069\u0073\u00203\u0030\u0030\u0025\u002e\u0020T\u0068\u0065\u0072\u0065f\u006fr\u0065\u0020t\u0068\u0069\u0073\u0020pr\u006f\u0066\u0069\u006c\u0065\u0020\u0069s\u0020\u0076\u0061\u006c\u0069\u0064\u0020f\u006f\u0072\u0020\u0074h\u0065\u0020\u0070\u0072\u0069\u006et\u0069n\u0067\u0020\u0063\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u0020\u0072\u0065\u0067\u0061\u0072\u0064\u0069\u006e\u0067\u0020\u0049\u0053\u004f\u0020\u0031\u0032\u0036\u00347\u002d\u0032\u003a\u0032\u0030\u0030\u0034\u002f\u0020\u0041\u006d\u0064\u0020\u0031\u0020\u0028\u0032\u0030\u00307\u0029\u003a\u000a\u002d\u0020\u0073\u0068\u0065\u0074\u002d\u0066e\u0064 \u006f\u0066\u0066\u0073\u0065\u0074\u0020\u0070\u0072\u0069\u006et\n\u002d\u0020\u0070\u0061p\u0065\u0072\u0020t\u0079\u0070\u0065\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0032\n\u002d\u0020\u0067\u006c\u006f\u0073s\u0079\u002f\u006d\u0061\u0074\u0074\u0065\u0020\u0063\u006f\u0061\u0074e\u0064\n\u002d \u0054\u0056\u0049\u0020\u0061\u0074\u00204\u0030\u0025:\u0020\u0043\u004d\u0059\u0020\u003d\u00201\u0033\u0025 \u002f\u0020\u004b\u0020\u003d\u0020\u0031\u0036\u0025",_acc ,4); +if _eed :=_bafg .SetSubtype (subtype );_eed !=nil {return nil ,_eed ;};return _bafg ,nil ;};var _efb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\000\xff\142\140\140\x5e\xe1\xe8\342\xe4\xca\044\xc0\xc0\x50\x50\x54\122\xe4\036\xe4\x18\x19\x11\x19\245\xc0\x7e\235\201\231\x81\x8f\101\224\101\210\x41\x3e\x31\271\xb8\xc0\x31\040\xc0\x87\201\x81\x81\041\057\x3f\x2f\225\001\x15\x30\x32\x30\x7c\xbb\x06\x22\x19\x18\056\353\x80\xcc\142\x20\x0d\260\044\x17\x14\x95\060\x30\x30\x6c\x61\x60\x60\360\x4b\111\x2d\x4e\146\x60\140\x64\141\x60\x60\x68\054\x2f\051\050\x61\140\x60\xec\x60\140\x60\020\311\x0e\x09\x72\x66\x60\x60\x9c\xc3\300\xc0\304\123\222\132\x01\x52\xcf\x90\x94\x58\xec\xe9\xec\x9c\x9f\x93\x5f\xa4\xa0\xab\340\234\137\120\131\x94\231\236\x51\xa2\240\x91\254\251\x60\144\x60\140\xae\x00\x91\x0a\316\xcf\x29\x2d\xc9\314\xcf\x2b\xd6\x51\160\314\xc9\x51\x08\x02\251\x29\x56\x08\112\x2d\x4e\x2d\x2a\x4b\x4d\xd1\x63\x60\x60\x80\330\011\006\xea\x9e\xc1\xfe\x0a\xce\xf9\x89\x25\xa9\051\x0a\145\x46\x0a\272\x0a\xee\101\xae\221\x0a\x86\311\x0a\272\x0a\x1a\010\xeb\x34\x49\xf4\x21\x11\x00\x14\xe6\x10\xd6\015\x17\x06\206\x07\xbe\x0c\x0c\xfb\x6e\x25\x97\026\225\x41\xc4\x18\031\xd8\x94\330\222\xd8\x16\xb1\075\x67\327\146\x2f\142\xdf\xcd\xc1\xc6\x11\xc2\xb1\204\xe3\043\xa7\x0b\xe7\x34\316\x57\x5c\x8e\x5c\x33\xb8\x3e\x72\xfb\x70\x2f\347\x61\xe5\x49\345\x39\312\xab\xc9\333\xc7\xfb\211\057\232\xef\010\277\x2e\xff\x6c\x01\x0e\201\012\201\x57\x82\x31\x82\027\x85\xdc\x85\x0e\x08\333\x08\357\x14\x31\x17\xd9\x29\152\x2d\272\x5f\xcc\115\354\xbc\x78\x94\370\x53\x89\x62\x49\x66\311\x09\122\112\x52\233\xa4\335\244\x6f\xc8\344\xca\xfc\227\x9d\x2c\247\x25\167\x50\076\x4a\xfe\223\102\xb7\xa2\xa6\342\x31\245\x34\x65\066\xe5\x55\x2a\xfe\x2a\x3f\124\027\250\xf9\xa8\xfd\x54\137\xad\x11\xab\051\xa4\x79\x4c\253\x5e\333\x4a\373\xbb\316\166\xdd\112\075\x6b\xbd\xff\372\xc7\014\xfa\x0d\xa3\214\324\215\076\x1b\x1f\x35\x99\x62\x9a\x69\146\x6b\x2e\154\xfe\xca\xe2\xb0\345\x1c\xab\x4a\xeb\x10\x1b\x23\x5b\101\333\x8f\x76\027\xed\xb7\072\x4c\x77\xac\164\x8a\x76\xb6\x77\121\x76\xe5\x70\x7d\xe3\x76\xc9\175\xa7\xc7\002\317\x0e\xaf\x42\xef\050\037\x77\x5f\x63\x3f\x05\x7f\x5e\xff\277\x01\x6f\003\x1f\x06\x5d\x0e\076\x19\162\x20\x74\x77\330\266\xf0\x6d\021\x9b\043\x77\x45\xed\x8b\x3e\x1e\x73\x29\xf6\176\334\233\370\x7f\x89\x02\x49\052\311\xd6\x29\041\xa9\131\x69\xed\xe9\013\x32\x0e\144\xde\xcd\372\x9b\x23\x93\353\x90\x97\x94\xdf\x56\260\xa2\xf0\x4c\xd1\xc7\x12\xc9\122\xeb\xb2\244\362\266\212\065\x95\227\253\xfe\324\x28\xd5\372\326\x95\xd5\x2f\x6e\x38\xd7\xf8\xbb\x59\xb3\x25\xa2\xb5\xa3\x6d\x4f\xfb\233\x4e\xa5\xae\260\xee\xde\x9e\303\xbd\377\xfa\xcd\047\x94\114\134\x3f\xe9\343\x14\x83\251\xe5\xd3\x76\317\x60\x9c\xe9\x35\153\352\354\x47\x73\x8d\346\065\xce\277\xba\x50\x6b\x51\313\342\xbb\x4b\xad\x96\315\130\376\x73\145\xe4\xaa\xbd\x6b\xe4\327\xb6\256\x7b\xb9\xc1\x77\xe3\306\xcd\x62\x5b\xca\xb7\336\334\x6e\xb9\143\xc6\xce\xaf\xbb\103\xf7\154\xda\047\xb4\x3f\377\xc0\305\x43\x06\207\xa7\034\xf9\x76\054\346\xf8\xe1\223\x7a\247\x66\237\xe1\070\133\x71\xee\xcd\x85\xd8\213\127\x2e\x7b\x5d\x39\172\xcd\341\xfa\xde\x9b\x56\xb7\xf6\xdc\xb1\xb9\x7b\xe8\xbe\xcb\203\063\x8f\002\x1e\337\x7c\x9a\364\xec\xe3\x8b\x9a\127\xdc\xaf\xa7\xbd\325\x78\xb7\xfd\203\xe7\xc7\333\x9f\x8b\xbf\xf2\x7d\x5b\367\xc3\xe9\347\xc5\337\121\x7f\x9e\376\x2b\370\xff\037\020\x00\x00\xff\xff\x15\x23\x9e\306\250\x03\x00\000"); +func (_aag bindataFileInfo )Sys ()interface{}{return nil };func (_ecf DeviceClass )String ()string {if _ecf < 0||_ecf >=DeviceClass (len (_eeg )-1){return "\u0044\u0065\u0076i\u0063\u0065\u0043\u006c\u0061\u0073\u0073\u0028"+_eg .FormatInt (int64 (_ecf ),10)+"\u0029"; +};return _ffg [_eeg [_ecf ]:_eeg [_ecf +1]];};var _ged =[...]uint16 {0,20,34,48,62,77,91,105,120,134,148,163,177,192,207,222,237,252,267,282,297,312,327,342,357,372,387};var _egcc =map[string ]DeviceClass {"\u0037\u0033\u0036\u0033\u0036\u0045\u0037\u0032":DeviceClassSCNR ,"\u0036\u0044\u0036\u0045\u0037\u0034\u0037\u0032":DeviceClassMNTR ,"\u0037\u0030\u0037\u0032\u0037\u0034\u0037\u0032":DeviceClassPRTR ,"\u0036\u0043\u0036\u0039\u0036\u0045\u0036\u0042":DeviceClassLINK ,"\u0037\u0033\u0037\u0030\u0036\u0031\u0036\u0033":DeviceClassSPAC ,"\u0036\u0031\u0036\u0032\u0037\u0033\u0037\u0034":DeviceClassABST ,"\u0036\u0045\u0036\u0044\u0036\u0033\u0036\u0043":DeviceClassNMCL }; +func NewSRGBv4OutputIntent (subtype _g .PdfOutputIntentType )(*_g .PdfOutputIntent ,error ){_edb ,_dbc :=_adb ();if _dbc !=nil {return nil ,_dbc ;};_bec :=_g .NewCustomPdfOutputIntent ("\u0073\u0052\u0047\u0042\u0076\u0034","\u0043\u0075\u0073\u0074\u006f\u006d","\u0073\u0052G\u0042\u0020\u0049E\u0043\u0036\u0031\u0036\u0039\u0036\u0036\u002d\u0034",_edb ,3); +if _abg :=_bec .SetSubtype (subtype );_abg !=nil {return nil ,_abg ;};return _bec ,nil ;};var _bb =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xb5\x65\x54\x22\x6c\xf4\xf6\x8b\xd3\xe1\x84\x13\xce\xcc\xe3\x84\x93\x3a\x76\x2b\x8a\xa0\x20\x25\x4a\x1a\xa8\x28\xa2\xa0\x18\xa0\x82\x8a\x89\x81\x62\xa1\xa2\x60\x27\x16\x88\x8a\x81\xdd\x35\xc6\x74\x3d\xd3\xdd\xdd\x9d\x67\x3d\xff\x73\xd6\x59\xe7\x7c\x79\xdf\xf5\xee\x0f\xf7\xde\xd7\xbd\xee\xbd\xf7\xbd\xae\x2f\x3f\x00\xe0\x8d\x2e\x00\x00\x00\xac\xd2\x05\x00\xb8\xd1\xb4\x60\x22\x12\xaa\xeb\x46\x0b\xd2\x5d\x7b\x15\xb0\x16\xb0\x07\x00\x00\xac\x06\x1c\xa5\x05\x73\xa3\x01\xff\xcb\xf8\x72\x05\xa0\xf1\x5f\xbe\x64\xfc\xdf\x69\xe5\x65\x30\x55\xe5\x76\x66\x0d\xcb\xc8\xfb\xe0\xf9\x2b\x22\xff\xff\x75\x2f\x60\x3d\x9d\xc1\x0d\x06\x00\x00\xef\x00\x00\x40\xbc\xb3\x05\xd4\x0c\x00\xd0\x60\x02\x00\xb1\x5b\x9d\x2d\xa0\xe6\x00\x40\x5c\x02\x00\xa0\xd1\x0f\xb5\x70\x36\x03\x00\x78\x46\x00\x40\xac\x15\xd4\xc2\xd9\x1c\x00\x78\x19\x08\x00\x68\xfc\xe2\x84\x85\x9a\x01\x00\xaf\x29\x00\x00\x40\x93\x17\x1b\x1d\x0b\x00\xbc\x66\x02\x00\x80\x1d\xc1\xd1\x9c\xff\xea\x94\xff\x66\x06\x33\x69\x74\x00\xe0\xf5\x27\x00\x00\x60\xc4\x8a\x8c\x0b\xfe\x7f\xf6\xfe\xf7\x63\x4d\x06\xdb\x93\x04\x00\x00\x7c\x01\x00\xc0\x5e\x00\x17\x40\x04\x20\x01\x50\x80\x2e\x20\x1e\x60\x05\xd0\x05\xa0\x01\x30\x00\x0c\xa0\x0b\x88\x06\x70\x00\x0c\x40\x08\x80\xf1\x3f\x99\x0d\x08\x06\x30\xfe\xe7\xf6\x3f\xfd\x5f\x1d\x0d\x88\x05\xc4\x01\x68\x80\x48\x80\x2e\x20\x0c\xc0\x06\xc4\xfe\xcf\xab\x58\x80\x2e\x20\x08\xc0\x00\xc4\x02\x68\x00\x00\xcb\x19\xfa\x3f\x3e\xaf\x5c\xf9\x3f\xbb\xff\xab\xf1\x00\x00\x20\x1d\x00\x00\xf4\x00\x00\xdc\x57\xd1\x34\x0e\xed\xff\x75\x44\x03\x00\xf8\xdf\xe9\xff\xdb\xef\xff\x4f\xfc\x6f\xf4\xff\xe9\x7c\x2d\x2d\xad\xff\x5f\xff\x0a\x00\x00\xb0\xf6\x6b\x7a\x7a\x7a\xfa\xda\x91\xac\x02\x5e\xe2\x3a\x68\x2e\x91\xdd\xbc\x9e\x26\x72\x65\x9c\xd3\x4c\x12\x7b\xf8\xdf\xd8\x5c\x23\x8d\xf2\x8a\xd7\xc2\x57\x16\xe3\xb6\xed\xb4\xab\x25\xa2\x6e\xec\xd1\x68\x78\x00\xcd\xd7\x59\x6e\xea\x70\x7c\xbd\xdf\xa5\xe5\xab\xfd\x5a\xdd\x17\x6d\x9f\x6d\xb0\x87\x47\x14\x4b\x16\x45\xc7\x20\xca\x32\x93\x41\x7d\x49\x67\xbe\x01\xc0\xe8\x1f\x15\xfe\x68\xbf\xe9\xf9\x9e\x95\x07\x54\xeb\xab\x12\xd6\x08\xc9\x9b\xcd\x92\x2a\x52\x42\xb7\x3c\xe7\xdf\xe2\x1e\xd6\x9a\x16\xd8\x85\x33\xb6\x7f\xcd\xf1\xa6\xf5\x68\x77\x88\x0c\x7c\xc4\x7b\xdc\xc4\x6a\x82\x64\xef\x3e\xe9\x2d\xd7\x85\x03\xb4\xca\x3e\x17\xff\x43\xef\x6a\x8f\x81\x1f\x1f\x5b\x5f\xff\xce\xfe\x83\xbe\x44\x06\xb5\xc5\x1b\xfc\x68\x76\xb6\x9c\x35\x96\xb6\x6e\x33\xc3\x9a\x25\xb5\x3d\x30\x72\xb2\x4c\x51\x54\xe8\x93\x6c\x10\x4a\xad\x23\x23\x3b\x1a\xa3\x7e\x17\xf0\xb5\xb7\x71\x08\x99\x76\xbb\x8a\xe2\xf2\x12\x86\xf7\x38\x27\x16\x46\x91\x75\xfc\xf8\x2e\x21\x2b\xf7\x95\x08\xf4\xfd\x4d\x74\x57\xe4\x12\x3c\xee\x1d\x7a\x23\xfa\xee\x1e\x76\x74\x40\xfc\x13\xf1\x5b\xff\xaa\xf4\x8e\xd3\x1d\xc3\xd7\x95\x2b\x40\x29\x26\x2f\xab\xdf\xda\x35\x99\x1b\xd7\x59\x59\x4d\x5b\x65\x34\xee\x35\x67\xd9\x82\x9a\x00\xc6\xb7\xec\x77\x37\x2b\x0d\x02\x41\x2f\x5a\x81\xc7\xbe\xed\x97\x86\xc6\x95\x64\xee\x6f\x09\xcb\xcd\x3d\xb8\xff\x61\xc4\x63\xbe\x5a\xd7\x3a\x7a\x4d\x6c\xd7\xc1\xbb\xb1\xfb\x22\x0e\x1d\x09\x49\xdc\x46\xbb\xa5\xe7\x96\xb6\xda\x47\xfb\x78\x66\xd6\x0e\xfc\x88\x11\x32\xb7\x0c\xfd\xd5\xe4\xb9\x68\x10\x76\xc9\xfc\xa4\x38\x0f\x5c\x6e\xa5\x90\xcc\xd9\x1b\xdb\xd4\x97\x43\xad\x6f\xdb\x1f\xac\x1a\xb0\x08\x72\x54\xd4\x01\x4c\xb5\x9d\x14\x0d\xd6\x86\x93\xb0\xc0\x46\xb5\x7e\xcc\xf1\x07\x54\x62\xc5\xa8\x81\x7e\xa0\xb8\xe8\xaf\x1e\x85\xe6\x95\xf5\x5d\x7f\x0b\xc3\x2c\x39\x5e\xbf\x30\xcc\x2a\xfa\xb7\xe1\x30\x5b\x1d\xca\x37\x59\xc9\xfd\x13\x60\x64\x36\x9a\x64\xec\x19\x6c\x09\x4e\x1b\x72\xf7\xb5\x3e\x93\xb5\x0b\xf1\xc4\xb6\x22\xe7\x8d\x13\x01\x58\x5a\xc0\x72\xa8\x04\x6d\x29\xfa\xd7\xd6\xc5\x89\x2d\xd9\x69\xb5\x0d\x96\x59\xce\x30\xe3\x21\x3c\xaa\x56\x1b\x6f\x47\x6b\xd7\xa0\x8e\xf7\xd9\x10\xbc\xea\x1a\x22\xac\xcd\xbd\xcb\xcb\xe5\x96\xf7\xc9\x13\x85\xa3\xe6\xad\xbe\xaf\x05\x25\x66\x33\x01\x06\x09\x0a\x0b\x4e\xf0\x36\xd6\x37\x6b\x5b\xe6\x14\x7d\x97\x1d\x92\xfd\xcb\x4f\xd3\xde\x23\xf6\x32\xf1\x38\xe8\x7a\x92\x97\xeb\x0f\x70\x3c\xff\xa2\x0b\xd7\xf9\xa1\xe0\x1d\x44\xd7\x65\x55\xce\x5f\x7b\x57\x64\xb4\xc8\xca\xc6\x07\xfd\xab\x78\xda\x02\xef\x16\x57\x7a\xc1\xa4\x1c\xb7\xb7\x4c\x60\xb8\xd9\x59\x8e\x35\x69\x7b\xe6\x2c\xc0\x6d\xae\xef\x84\x8c\xe1\xfa\xcb\x3e\x3a\x72\xf0\x4d\xa2\x34\xe0\x27\x62\x60\x46\x9d\xbd\xc4\x7b\x4b\xbc\x29\x48\xed\xbf\x39\x7c\x14\x62\x1c\x6c\x15\x38\xe5\xbc\x27\x2c\xc0\x7b\x0b\xec\x76\xd4\x02\xee\x08\xc2\x26\x8e\x8a\xb2\x40\x6b\x24\x5d\x82\xee\xc2\x3c\x4e\x3f\xe8\xe8\x80\xa5\x67\x09\xed\x3a\xf0\x57\x73\xe3\xad\xc2\x49\xc7\x0a\xbe\x98\xb9\x7b\xbe\x28\xb6\x34\xe2\xba\x7f\x41\x68\x75\xd7\xba\xfd\x46\xf8\xcb\x2d\xdc\x56\x23\x96\xea\xcf\xa3\x5b\x90\xee\x65\x83\x70\x11\x72\x5d\xc1\x65\xf8\x6e\x8c\x59\xba\xd0\xa5\x07\x8f\xe5\xc6\x22\xd4\x5e\x5f\x43\xcb\x51\xe7\xfc\x27\x28\x6f\x31\x3e\x74\x92\xc7\x46\xf7\xcb\xe1\xc3\x6e\x19\x78\x4c\xf4\x67\xf8\x2f\x92\x61\x7c\x39\xe4\x9a\xd7\xde\xe4\x4b\x0e\x01\x64\x4e\x3a\xcf\xe6\xa9\xaf\x30\xcb\xce\x42\x44\xb9\x9a\x33\x63\xe2\xe5\x77\x13\xac\x18\x6c\xa7\x40\x20\x8b\xaa\x13\x3e\x13\x10\x0f\xb9\x86\xd7\x67\x70\x7b\x83\x16\x91\xe1\x18\x5f\x96\x86\x2f\x85\xfc\xca\xf7\xc7\xbe\x82\x41\x53\xff\xe0\x0e\xa1\xee\x46\x3f\xc1\x13\x09\xbb\x83\xc7\x48\x06\xe4\x1c\x9f\x07\x9e\x43\x54\x57\x82\x2d\x99\xc4\xb8\xe9\x8a\xf1\x5d\x88\x3c\x04\x9b\xf6\xff\xc1\x01\x82\x89\x81\x38\x1e\x1c\x58\x17\x44\x4f\xfe\x6a\xbd\x96\x8e\x4b\xc7\x9b\x45\x85\x1d\x07\x12\xc7\x77\x31\xf3\x80\xfb\x06\x4c\x43\x15\x76\xa7\x55\x28\xc6\x7a\x5b\xa8\x5c\x9f\xc6\xb6\xde\xd2\xb0\xe4\x3f\x6b\x6d\x53\x66\xe7\x17\x6b\xf3\x21\xef\xbc\xef\x11\x7b\x59\x4a\xb2\xef\x6e\xe8\x12\x7b\x07\x65\x9d\x1b\x3f\x70\x34\xc0\x80\xf4\xd8\x1b\x43\x5b\xe5\x5b\x8d\x0b\x0c\x6a\xa5\xad\x40\x61\x19\x7d\xa1\x59\x50\x57\x26\x97\xd5\x0d\xba\x1a\x2e\xe2\x3c\xb1\xbd\x18\x49\xe1\x89\x2c\xee\xc6\x57\x5a\x2f\x4e\x07\xc6\x0d\x5a\xaf\x1b\x29\x8d\x95\x59\x1d\x56\x67\x70\xf2\x2c\x82\xba\x9c\xa3\xb6\x99\x74\xb4\xfd\x64\xd5\x1b\x5d\x69\xcc\x61\x46\xeb\x4d\x94\x7f\x0d\xb1\x31\xc1\xe6\xf6\xd0\x1b\x2c\xed\x93\x80\x8c\x37\x8e\xd8\x08\x6e\xa8\x23\x62\x39\x40\x19\xc6\xc7\x7e\xf1\xdc\x1b\x7e\xd3\x93\xe2\x7e\x98\xe5\x4c\xf1\x44\xfc\x1b\x75\x2d\xe8\x86\xd3\x22\xa7\x39\xcc\xc4\x21\x38\x76\x89\x7d\xc2\xfa\x41\xa6\xbb\xa5\xd3\x2c\x3a\x53\xcb\xa2\x6b\x3c\x21\x83\x65\x1e\x36\x64\x95\x1e\x6e\xaa\xec\xdb\x9d\x7a\xc5\xd8\xaa\xd3\x28\xe9\x9c\xc1\xed\xd6\x70\xde\x75\xfd\xd5\xf5\x69\xb1\x86\x47\x63\xa5\xa0\x98\x56\xbd\x0d\x39\xfc\xe8\x9b\xa6\xb6\x09\x80\x18\x43\xbb\x1d\xcc\x01\x0e\x05\xaa\x4d\x11\x72\xef\xa3\x7f\x12\x2f\xc7\x1f\x21\x8c\x62\xce\x24\x44\x90\xe7\xe0\xea\xa4\xd3\x54\x26\xe4\x6c\xca\x24\x83\x02\x3c\x25\xa2\x9a\x2b\xe7\x64\x22\x9c\x79\xd8\xe4\xba\x82\x05\xb3\xf5\x23\x36\x79\xf5\x46\x25\xfd\x63\x79\x0c\xc3\x4f\xdd\xf7\x84\x49\xc7\xa3\xdb\x6b\x32\x15\x47\x8b\x9b\x69\xe9\x85\x47\x1e\xd6\x40\x53\x31\x87\x11\x25\x3b\x93\xd3\x8e\xea\x64\x1d\x4f\xf8\x71\x6c\x3c\xf6\x6a\xd2\x26\x8b\x48\x46\x64\x22\xc7\x61\x96\xcc\x49\x99\x80\x2f\xe2\x33\xf8\xf7\xdc\x51\xe8\x8e\xcc\x45\xcf\x10\x17\x46\xd6\x1d\xca\x3a\xc7\x97\xd2\xdf\x66\xce\xf3\xf3\x65\xfa\x66\xf0\x29\xb4\xf4\xa5\x29\x76\x74\x54\x2a\x30\xd1\x19\x84\x49\x5e\x1a\x75\xf5\x9e\x2a\x15\x1b\x1e\xec\xcc\x10\xd3\x8f\x1f\x68\x2b\x2e\xca\xd3\x7b\xda\xc8\x2d\x30\x38\x7a\xaa\xa2\x22\xc7\xe1\xf0\xfa\xc2\x56\xe1\x9d\x63\xb4\x0c\xed\xec\x5e\xfd\x14\x4e\x6b\xd6\x9c\xf9\xef\xe0\xc7\x39\x87\x1c\x6d\x7c\x80\x79\x18\xf8\x39\xc2\xa1\x02\x81\xdb\x55\x57\x48\xa1\x27\xc9\x0e\x96\x59\xfb\xca\xa4\x78\x61\x57\x1d\xc3\xe4\xe3\x74\x51\x1d\xc5\x24\x78\x7c\x53\xdd\x01\xe3\xb2\xa1\xee\xda\x73\x46\x4a\x35\xae\xf6\xb8\x61\x85\xaa\xab\x3a\xdc\xe0\x90\xe2\x6d\x65\xad\x7e\x59\xb3\x75\xb9\x4a\xcf\xb1\xb6\x54\x3a\x79\x2c\x53\xba\x49\xa2\x7b\xec\x5a\xde\x8f\x52\xb4\xfe\x6b\xfe\x96\x12\x43\xc3\x99\xe8\xd4\x92\x10\x6b\xbd\xe0\x97\xa5\xa7\xc1\x9a\x3e\xa1\x12\x19\x7c\x0d\xfe\x64\x59\x2e\xa6\x02\xad\xd7\xa2\x34\x82\x2f\xa6\xb4\x82\x8c\xee\xcc\x3c\x6f\x75\x35\x22\x4c\x78\xb4\x1e\x34\x14\x0e\xff\x6a\x79\x64\x20\xed\xef\x6b\xa9\x3d\xde\xd8\x13\xd4\x2c\xd7\xff\xb7\x63\x4f\x53\x84\xde\xa7\xd6\xee\xc6\xbb\xc7\x7e\x35\x02\x1b\xec\x8f\x9d\xab\x94\xd5\x09\x8f\x99\x88\x67\x6a\xe3\xf5\x46\x84\xf1\x35\x4f\x0c\x2a\x92\x8d\x6b\x78\xa6\xfe\x51\x9b\x6a\x06\x6c\xd4\xc1\xff\xd4\x0a\xc0\x24\xf2\xed\x3a\x9c\x0b\x13\x7f\xa4\x8b\x74\x5c\xb5\x34\xd6\xa5\x34\xd8\x35\x07\xee\x12\x1d\xcf\x9f\x2c\xe8\xca\xd6\x87\x8c\xfa\x76\x85\xe9\xe9\x0e\xae\xe8\x0a\x3b\x3a\xd8\x7b\xae\x0b\x72\x64\xa2\x4b\xa3\xcb\xe4\x70\x9b\xfc\x42\xd7\x86\x43\xf9\x4d\xa3\x9d\xfe\x87\x74\x6b\x3b\x95\xf7\x0f\xe5\x94\xe9\x28\xea\x0f\x07\x15\xee\x68\x63\x1e\x7d\x22\x38\xd2\x6a\x65\x00\x4e\x18\x6a\x35\x33\xc5\xb1\x09\xad\x86\x36\x5a\x41\xa7\x5b\xad\x1d\x93\xbd\x7f\xae\x8b\xc8\xa9\xc9\x36\xdf\x38\x98\xff\x22\x99\xb4\x89\x57\xf8\x82\x33\xb7\x65\xb9\x84\x18\x8e\xd6\x3a\x2b\x1d\xa5\x3d\xdf\xa1\x5b\xa9\xf2\x85\x68\xdf\xab\x4d\x20\x46\xfe\x73\xbc\x51\x0f\xd3\xb9\xf7\x4f\xb3\x07\xfc\xf2\x01\x55\x9b\xa6\x13\xfe\x90\xb9\x02\x0a\xc2\x1e\xf9\xa1\xdc\x69\x17\xa5\xb7\xd4\x71\xd2\xaa\xd3\x60\xa9\xcb\xcd\x5c\xcb\xf8\x62\xb7\x86\xd1\x09\xb3\x77\x3d\x72\xfd\xa3\x96\x53\xbd\x6f\x8e\x28\xb6\x9d\xe2\xbf\xcd\x9b\xd7\xde\xf4\x1f\x31\xb5\x17\xb3\xca\x78\x51\xbb\x0f\xe7\xc2\xd8\x09\xff\xc0\x45\x44\x46\xe1\xde\x0e\xb1\x98\xf2\x67\x7f\x96\xb4\xd3\x73\xd5\x41\x9d\xca\x52\xf7\xfa\x23\x9c\x5a\x34\x12\xa7\xbf\xa2\xe1\xbe\xd3\x49\x03\x5c\x13\x1c\x74\xd7\xa8\xb7\xc5\x1f\x08\x36\xb5\x69\x03\x5b\x8f\x98\x7f\x92\x7f\xb4\x40\x5a\xdd\x6b\x2f\x36\x69\xb3\x3d\xd5\xb1\xc9\xe0\x85\x7d\x6b\x67\x80\x5e\x9c\x8e\x0f\x4f\xab\x48\xba\x4f\x37\xe1\x7e\x76\xcb\xfe\x0f\xc9\x36\x29\x43\xba\x8b\x69\x1b\xb8\xd4\x43\x24\x01\x36\xfc\xc0\x91\xad\x39\x05\x81\xef\x8f\x61\x44\x44\x72\x99\x7e\x91\xb8\x02\x1f\x62\x68\x26\x2d\x72\xdd\x6b\x72\xa8\x92\x09\xab\x34\x37\xab\x99\x04\x3b\x5b\x69\xd6\xe7\xd8\x07\xdb\x54\x35\x7e\xb0\x39\x03\xfc\xa7\xe9\x87\xa5\x8f\xc3\x42\xcb\x39\xd3\x67\x60\x69\x1b\xca\xa8\xc4\xd9\x59\x5e\x76\x1c\x7d\x94\x15\xb5\x59\x0a\x38\x36\x17\x3d\x55\xb0\x5f\x6f\x9e\xa3\xca\xf4\xd3\xbf\x18\x37\x9d\xf0\xcb\xc0\x38\x31\x3c\x2a\xcb\x08\xc5\xf7\x08\xd9\x68\xb2\x55\x60\x41\x79\x65\x7a\x35\xe7\xb9\x07\xc7\xc2\x5f\x64\xe7\x6e\x63\xed\x20\x4e\x44\xee\xb5\xbd\x2f\x65\x3a\x89\xec\x0b\x2a\x6a\x41\x76\x8e\x96\xd5\x0a\x3b\x04\xe4\x5d\xdd\x88\x55\x2e\xb4\xad\xd1\xc6\x1c\x00\x37\x95\x75\x1a\x8f\x22\x27\x9a\x37\x1a\xb0\x4c\x07\x43\xde\x56\xdb\x9b\x6b\x85\xbe\x2b\x69\x37\x8f\x0d\xbb\x93\xab\xb6\x70\x8a\xdc\x96\x36\x6a\xc9\x8d\xde\x10\xe7\x63\xc5\x88\xdd\x14\x71\xd9\x46\x27\xe1\x52\x10\xc7\x8e\xcc\x27\xfb\x94\xda\x5b\x09\x2c\x09\x16\xa0\xac\x9c\x61\xd7\x6a\x88\x8d\x88\xe8\xb2\xc1\xf9\x8d\x38\x18\x9c\xe8\x72\x50\x92\x67\x4f\x47\xf0\xca\x0b\x6c\x92\x50\x4f\xab\x42\x2c\x54\x98\x98\x9a\x4f\xa6\x5b\xb1\x7a\xf5\xdb\x0c\x87\x41\x7d\x01\x81\x32\x4d\xc7\x72\x6a\x4d\xe5\x12\x38\x36\xf0\x92\x78\xce\xd1\x3d\x68\x38\xc7\x04\x74\x92\xe1\x9c\x4a\x74\x0c\x0d\x2b\xe0\x30\x20\xd6\xec\x12\xa6\xc2\x29\x9f\xcb\xa0\xba\x42\x7d\x12\x57\x7a\x55\xbb\x8c\xf2\x41\xd8\x59\xc4\x82\x60\x2f\x2a\x0e\xf5\x3c\x47\xe5\x7c\x07\x03\x2b\x58\x04\x7d\x75\xaf\x28\x4e\xb7\x9b\xc4\x75\x96\xaa\xad\x54\x84\x97\x65\x7c\xb3\x31\x8f\x94\x8a\xdb\xc6\xc6\xc8\x66\xcf\x8f\x0a\x07\xf4\x31\xef\x4d\x0d\xef\x51\xe7\xc9\x9a\x15\xfd\xa8\x7f\x7d\x8e\x17\xf3\x90\x77\xfd\x44\xd9\x30\xd4\x56\x2a\x3a\x89\x81\x02\x06\xbf\x88\xb2\x45\x3b\x85\x01\x18\xe9\x18\x37\xb6\x94\xd2\xe9\x76\x36\x76\x97\x87\x26\x76\x3a\x91\xea\x96\x49\x58\xcf\x9f\x44\xec\x22\xbe\x15\x44\x40\xce\x7a\xfc\xce\x89\x70\x70\xf1\xd6\x2d\xd8\x6e\xf3\xc1\x87\x50\x14\x65\xb1\xec\x57\x5c\x12\x6a\x32\x4b\x7a\xee\x7e\xae\xbb\xc6\x13\x80\xfd\x2c\xd7\xf7\x42\xe2\x31\xf5\xd7\x3d\x5e\x12\xc0\xe5\x19\xa4\x25\x62\x40\xe1\x53\x62\x8c\xc7\x69\x81\x33\xd1\x82\xfc\x9b\x57\x43\x42\x05\x3c\x88\x5c\x45\xaa\x0b\x7e\x10\xb4\xd5\x13\x1f\x96\xeb\x53\xee\xcd\x8d\x8a\x22\xf4\xf8\xe8\xc7\x9e\x72\x4d\xf7\xdb\x9f\xb4\x1a\x76\xc9\xdf\x33\x6d\x23\xd8\x86\x7a\x50\xa0\x0b\xac\x0b\x7c\x2f\x9c\xb0\x3e\x14\x74\x3f\xff\x88\x59\x43\x60\x3b\x42\x67\xf0\x14\xed\x3b\x92\xae\x52\xd2\xaa\x90\x6f\xdb\xae\xd3\x78\xa8\xa1\xfa\xcb\x81\x28\xd7\xad\x65\xb3\x54\x3e\xe6\x97\x08\x4a\x85\xe3\x1c\x32\x72\xfd\x3d\x49\x6d\xb1\x1f\xfd\x91\x3e\x51\x61\xeb\x02\x5e\x51\xaf\x06\x7c\x0a\x5c\x41\x7f\xe0\x35\x43\x53\x86\x13\x71\xfb\x82\x4f\x45\x13\x51\x45\x0c\x66\x5c\xb0\xf3\x44\x28\x3a\xc9\x09\x14\x17\xb6\x9f\x7f\xd9\x56\x19\x7e\x22\xb3\xc7\xe2\x22\xeb\x83\x53\xdd\xf8\x8e\xa8\xf5\xce\x71\xfd\x33\x51\x52\xe8\xea\xae\x3c\xf6\x37\xe8\x81\xb6\x60\xb6\x2d\x14\xdf\xb0\x22\x72\x05\xcc\xb6\x2c\x3f\x7c\x95\xcb\x64\x81\x23\x33\x03\x19\x90\xd6\xcd\xb4\xc0\x6e\xe3\xf0\x43\xbf\x79\xd8\x86\x38\x31\x7f\xf8\x6a\x53\x52\xc2\x67\x03\xd7\x78\x70\x23\xc1\x8c\x02\x77\x07\xf6\xb6\x08\x2e\x42\x19\xbd\x26\xfa\xb7\x13\x20\x46\x10\xb7\x60\x3f\xcd\xdd\x91\xe4\x65\x9d\x94\xac\x09\x42\x4e\x1f\x4b\x66\x82\x72\x47\xb8\xc9\x8f\x40\xcf\xfa\x3e\x27\xcb\x1d\x37\x76\xda\x26\xd5\x83\x46\x5a\xe9\x89\x18\x50\x42\xfd\x6e\xde\x3e\xc7\x0d\xd2\xd1\x38\x1a\xf8\x4b\xde\x43\x6e\x09\xf4\x48\x2a\x9c\x53\x8c\x3a\x10\x75\x91\x9b\x8c\x0b\x0d\xee\xe0\x9e\xf6\xdc\xe2\x6b\x1d\xfb\xcc\xf7\x2c\xf1\x50\xfc\x34\xcd\x14\x93\x99\x60\x17\xf2\x16\xbe\x2e\xf1\x45\x64\x00\x58\x95\xdc\x1a\x53\x6c\x77\x53\x68\x08\x3c\x38\xdb\x22\x8c\x07\xda\x8d\x47\x0b\xb9\x76\x4f\x06\x27\x85\x14\xbb\xb8\x5e\xdd\x6c\x84\xed\x6d\xe5\xb8\xe0\xa1\xed\xe1\x96\x7d\x99\x7e\x36\xdd\xb5\xc5\xe9\x7d\xb6\x5a\x12\xdb\x34\x0e\xd0\x28\xe7\x03\xbf\xdb\x31\x34\x59\x2f\x35\x18\x66\xc5\x42\xa4\x9e\x72\x65\x06\x36\xf2\x93\xf0\x5f\xbd\xef\xf0\xaf\x79\x79\xe3\x6e\xa5\x5f\xf3\x3f\x84\x9e\xcb\x4c\x08\xd6\x82\x25\x66\xad\x63\xe6\x83\x3e\x89\xf7\xd8\xbc\x9f\xf7\x10\xe7\xd8\xee\x9b\xc4\x89\xb3\x6d\x8a\x47\x0c\xc4\xd1\xd6\x77\xfa\xf7\x8b\xb5\xad\x35\x55\x3f\x8b\xb2\xad\x3c\x15\x55\xa2\x65\x4b\x41\x93\x5e\xc1\x4a\x4b\x44\xb5\x4e\x9e\xb3\x65\x52\x89\x66\x6e\xa4\xf5\xdd\x6c\x9d\x9c\x0b\xc0\x17\x09\xfb\x72\xca\x9c\xc2\xc3\x2f\xe6\x48\x91\x07\x03\x86\x72\x6b\xb0\xfb\xbd\x30\x79\x38\xd2\x09\xec\x83\xfc\xe7\x3e\x0f\x50\x14\x51\x06\xb5\xdf\x59\x5a\x49\xb4\xde\x71\x42\x59\xf9\xdc\x3a\x72\x4a\x55\xf9\xd6\xea\xe7\xe8\xd5\xca\x17\x56\x82\xc1\xf5\x95\x57\x2d\x5f\xf7\x92\x2a\x9e\x5b\xc2\x3b\x7a\xca\x05\x16\x49\xad\xf5\xd2\x6f\xe6\xe5\x0d\x0c\x49\x92\x79\x66\xc5\x8e\xd2\x8d\xe6\x63\x45\x46\x25\xf3\x56\xde\x99\x7a\x25\x34\xbb\xe8\x38\x6a\x49\x32\xf8\x21\xf3\x69\x49\x13\x9c\xed\x5f\x5f\x9a\xea\xb6\xcb\x13\x2e\x49\x26\xcc\xbb\x7f\x93\x5e\xf5\x26\x22\xae\x34\x72\x2d\x83\x17\x1e\xc9\xd6\x59\x9e\x98\xfe\x2b\x3b\x6e\x29\x1c\x77\x94\x99\x5b\x5a\x0e\xb5\xca\xcc\x2d\x2e\xa9\xff\x69\x7c\x6c\x11\xa3\x72\x6c\xb8\x62\xfe\x55\x11\x5b\x1f\x6f\x6e\xd3\x54\x59\xb7\xd1\x6c\xb6\x66\xb0\xa6\xdb\x6c\x48\x32\x5e\x3d\x6a\xde\x97\x8f\xab\x0e\xb3\xda\x99\x06\xad\x0e\xb7\xd3\xe1\xea\x54\x77\x81\x53\x42\x4d\xab\x1f\xba\x9c\xa2\x64\xd7\x74\xb9\x56\x79\x38\xd5\x3e\xc2\x6f\x70\x1b\x57\xac\x34\x6f\x5b\x5c\x54\x08\x2d\xd6\xcd\x1e\x57\x28\xcc\x1f\x4d\xb8\x29\x4a\xcd\x39\xc3\xe7\x14\x31\x66\x5f\xfa\x29\x0a\x84\x59\x54\xf7\x37\x79\x86\x99\x86\xb2\xae\xad\xc7\x34\xa8\xd5\xa6\xf5\xa4\xc9\x48\xc3\x68\xcb\x69\x93\xb7\x95\x16\xcd\xc3\xa6\x66\xe2\xca\x66\x1d\xf3\xcd\x39\x1a\x4d\x17\x2c\x85\x29\x55\x4d\x7f\x6c\x69\x31\x16\xcd\x47\x1c\x2b\x19\xf3\xcd\x09\x30\x85\x5f\x74\x8b\x0b\x7a\x07\xf1\x5a\x77\xaf\xe9\xdb\xa5\x81\x1e\x90\x59\xfc\x9c\x76\x4f\xb8\x19\x63\xd2\xa6\xc7\xda\x74\x7e\xe4\x54\x0f\xc0\xe4\xca\x40\x7a\xf7\x35\xe3\xab\xbd\xc0\xee\x0a\xe3\x3d\x9d\xec\x6e\xb2\x11\x5d\x1e\xd1\x7d\xd8\xb0\xbc\x89\xaa\x2a\x35\xf4\xad\x25\x74\x0d\x1a\x4e\x48\xdf\x74\xb2\x8c\x5a\x0a\x5d\x3a\xf6\x99\x62\xb3\xcc\x95\xe3\x16\xbb\x93\x82\x95\x1f\x6d\x34\xa2\x14\x1d\x2b\x41\x2b\xe9\x6d\x1d\x45\xd0\xdd\xbe\xd6\x9b\x5f\x17\x3e\xcd\xa5\x6b\xf1\xc4\xf6\x69\xb2\xed\x0c\xc9\x21\xde\xb6\x9d\x16\x65\x3f\xd9\xd3\xbb\x36\x56\x79\x86\x1c\xd9\xfd\xa6\x76\xc8\xbf\x49\xa7\xb6\x91\xe5\xd9\xb7\x7f\x4b\xf3\x25\xec\xb0\x6e\xa6\x7c\x1d\xfa\xe0\x61\x68\x7b\x39\x4c\xf7\xe8\xcf\x8e\x0e\x30\x48\xff\x59\x97\xb7\x3d\xd1\xf0\x82\xea\x93\x8d\xc4\xe4\x67\x0f\xcc\x72\x9b\xf9\xe9\xde\x74\x53\x8e\x55\x51\xdf\x23\x43\xb2\x2d\xb2\x7f\x97\x5e\xc3\x6e\xe3\xec\x65\xd1\xf2\x3f\x23\x39\xf9\x59\x3b\xf7\x96\xe4\x43\x92\x21\xfb\x0d\x0a\x39\x1c\x98\xae\x5e\xc9\x91\xb0\xc8\x83\xe3\xd2\xa2\xc0\x96\xc3\xb2\xca\x64\xb2\xe4\xe8\x8f\x5a\x53\x3c\xe3\x38\xb6\xe1\x31\xfa\x81\xe1\xad\xe6\xed\xb0\x11\x13\x78\x6b\x1d\xb8\xce\x6c\x41\x2e\x72\x58\x6d\xc9\x6f\x87\xd9\x16\xdb\x50\x94\x4b\x56\x46\x40\x52\xe7\x3e\xb3\xd3\x20\x50\x17\xc3\x18\x0f\xd1\x52\x95\x1a\x68\xe8\x36\xf0\x83\x4a\x82\x0f\xef\x4d\xab\xcf\x5d\x3a\x7a\xfe\x3f\x62\xea\x69\x64\xa5\xf2\x1c\xf5\xfd\x72\x0f\xb1\xb7\x1a\xe8\x8a\x30\xf4\x93\x46\x87\xc5\x6c\xca\x26\xe3\xa7\x52\x17\xd2\x33\x33\x58\xa5\xb6\xdb\xb0\xa5\x6d\xcd\x1d\x84\xb9\x0d\xa8\xc1\x17\x32\x6a\x57\x28\x1b\x03\x1d\xb6\xff\xd9\x7c\xd9\xae\xd9\xb1\xa2\xb5\xdf\xda\xc1\x89\x20\xf7\x32\xbf\x05\x7d\xa3\xe8\x35\xc9\x82\x27\xb6\x3f\x37\xb4\x32\x00\xc6\x0b\xca\xef\x18\x31\x78\x2d\x45\x06\x26\xce\x89\xfb\xb3\x15\x66\x3b\x93\x0f\xa7\xdc\x35\xe7\xf0\xcf\x72\x83\x2d\x2e\x0a\x76\x87\x6b\x58\x51\x72\x20\x81\x5d\x36\x47\x0b\x06\xc8\x28\x3b\x78\xf1\x0c\x7e\x9f\x7d\x8d\xe4\x3e\x7a\xcc\x51\xbb\x62\x0e\xfa\x00\x52\x5a\xb3\xc9\xf1\x0a\xd4\xba\xee\x83\xfd\x56\x97\x73\x8d\x71\x36\x69\x48\xcb\x26\x0f\xcb\x9d\x68\x69\xf3\x77\xd3\x66\xb7\x2d\xad\x5e\x46\xde\x56\x23\x6c\x6c\x6d\xbb\xcd\xd7\x28\x3b\xe9\x6e\xbb\xee\xe8\xe9\x02\x9e\xfd\x36\x4e\x5b\xe6\x5d\xfb\xaf\x71\xb9\x89\xf1\x0e\x0f\x12\x37\x46\x9d\x72\x8c\x4f\xed\x0d\x61\x42\x0e\x64\x22\xfd\x43\x9d\x64\xc2\x0b\x9e\x5a\xd0\xa2\x82\x83\xee\x15\xf0\xcd\xc5\x52\xe4\x61\x24\x48\x42\x75\xea\x44\x87\x94\x0b\x41\x31\x98\x9e\xaa\x38\xbb\x5c\xec\xa6\x5a\x63\xab\x39\x7c\x5c\xbd\xca\x5c\x93\xb4\xb6\x31\xdf\xb8\xc6\xe9\x0f\xe3\x4a\xf3\x26\x68\x51\xc8\x8d\xea\x8b\xb0\xf7\xa1\xef\x4b\x95\x2e\xd2\xb0\xa9\xbc\x5e\x78\x68\xc4\xa7\xf4\x02\x04\x2c\xea\x5a\x3c\x0c\x71\x97\xab\x8a\x6c\x45\x6d\x4e\xd8\x1f\xcc\x45\x0f\xa4\x7c\xf1\x1d\xc2\xa4\x65\x8c\x11\xd9\xee\x6b\x84\x14\x4c\x22\xf6\x53\xfe\x05\xf8\x6a\x82\x59\xd1\x15\x88\x05\x09\x58\x6a\x67\xff\xd9\xd3\xb5\xcc\xc8\xe6\x81\x77\x54\xc5\xbf\x16\x1f\x7d\x66\xab\x5d\x4c\x77\xbb\xa5\xf8\xa3\xda\xeb\x71\xfe\x01\xb9\x32\x23\x7c\x24\x75\xb0\xea\x28\xe1\x78\xe0\x93\x12\x6b\xfc\x54\xf0\xbe\x9c\x0e\xbc\x8a\x71\x2f\xf5\x3c\xfe\x7d\xd8\x03\xae\x0b\xe1\x31\x3b\x2c\x6c\x89\xb4\x91\xf3\x34\xf0\x8e\x87\x15\xef\x03\x19\xe8\xf9\x25\xa5\x1f\xbf\xd2\x7b\x2c\xe3\x14\x3a\xc5\x27\x40\x88\x86\xde\xf5\x83\xe6\xdb\x3a\x76\xf8\x83\x0b\x27\x80\xde\x54\x1b\xf1\x23\xeb\xdd\x34\x3d\xc9\x80\xd9\x34\xd9\xce\xe3\x7d\x8f\xc0\x77\xb5\x97\xb1\xc2\x93\x62\xe2\xcd\x6a\x24\x52\xb4\xc8\x4b\x15\x9f\x28\xc6\xbe\xc0\xe2\x52\xbf\x8b\xfe\x2b\xb3\xad\xfc\x66\x03\xc7\x93\x18\x7e\xed\xf4\xa6\x68\x0d\x8a\x7b\x18\x2e\xa4\xc3\x5f\xc2\x7a\x1e\xa0\x13\xf0\x92\x6b\xee\xf9\x2a\x90\x9d\xb0\x03\x7b\x28\x48\x2f\x55\x0f\x99\x10\x7c\x2b\xe3\xb6\xd3\x03\x06\x33\x7b\x0a\xb4\x3a\x74\x7f\x1e\xce\x36\x98\xf9\x55\xd4\x66\x31\x48\x7f\xe9\x6e\x36\xf8\x3e\xd4\x0f\x3b\xa6\x72\x65\xf6\xe2\x57\xb4\xf1\xc3\xe6\x09\xc8\xfa\xdb\x4c\x05\xb1\xa5\x3c\x22\xf4\xba\x07\xb4\xb0\x29\xe4\x8f\xd7\x39\x81\x7b\x88\x9d\xef\x1b\xde\xcd\x10\x06\xf5\x55\xe4\x7c\xc8\x0b\x7a\x74\x70\x6e\xe8\xd7\x30\x53\x3f\x50\x58\x0a\x3b\x82\x94\x16\xfe\x86\x9b\xe5\xe6\x10\xc9\x4c\x88\x81\xa7\xb2\x35\x52\x0d\x21\x46\x51\xf9\x19\x51\xf6\x66\x31\x9b\xb2\x0f\x58\x1f\x89\xf1\x41\x6a\x8f\xdf\xe3\x5a\xa1\x40\xfd\x37\x62\x43\xd1\xfa\x5d\x86\xb1\x53\xe8\x87\xad\x77\x63\xbf\xb9\x9e\xad\x47\xc5\xae\x74\x73\x28\xe3\x70\xcd\xb1\x9b\x45\x7b\x38\x1e\xf8\xa8\x8c\x91\x98\x6d\x9e\x84\xb8\xda\xe8\x87\xbe\xf4\x70\x4a\x4c\x1e\x15\x17\xd8\xc8\xa9\xa4\x87\x90\x67\xb9\xb7\xc3\x98\x84\xdd\x71\x0c\xf6\x5f\xd7\x90\xf8\x61\xee\x1d\xd8\x48\x82\x76\x42\x82\x63\x69\xa2\x24\xe5\xbb\xed\xef\x34\x4d\xe8\x81\xe9\xb9\xb4\x2b\xd0\x4f\x23\xe7\xd3\x9b\x60\x17\xfb\xfe\x4d\x5f\x76\xf1\xef\x38\x97\x9e\xe5\xd2\xd7\x72\x2b\xed\x27\xdc\xb1\xce\x87\x5f\x82\xb0\x90\xe6\xa4\x7a\x21\x6f\xe7\x77\xa7\x10\x5c\xf7\xa5\x7d\x4b\xfe\x80\xdf\xce\xf5\x4c\x5e\xf2\xe4\x86\x9e\x4a\xb1\xf7\x0d\x08\xb0\x4d\xdd\x41\x5d\xf4\xf2\xe1\xef\xa7\x5f\xc7\xfe\x49\xcb\x0c\xa7\xa3\xda\xd2\x7f\x46\xc5\x41\x0f\x66\xc2\x63\xa1\x0e\x33\xf9\x5b\xc0\x21\x73\xd0\xfc\x3f\xe0\x8f\xe3\x8a\x82\x12\x48\xd0\x60\xa5\xc8\xd5\x69\x6d\x0f\xa3\xa0\xd2\x69\x4b\xfb\xf9\xfc\x8b\x4e\x5b\x9b\x2d\xf2\x06\x9c\x22\x6a\xea\x72\x61\xce\x87\x25\x1b\x73\xf0\xb0\x35\xb9\x0a\x61\x36\xfc\x61\xaa\x63\xf6\x4f\xcc\xc1\x68\xb5\x30\x9b\xe0\x47\xaf\x12\xca\xbd\xd2\xfc\x2e\xe6\x18\xf8\xc9\x3d\xf0\xb9\x41\xb4\xd5\xee\xd8\xbc\x9e\x90\x58\xc4\x6c\x81\x46\x84\x14\xf2\x54\x02\x77\x50\x9f\x20\x49\x6d\x41\xd6\x93\x6a\x69\x26\xc8\x7a\x04\x2a\x3d\x0f\x02\xab\x4f\x49\x97\x41\x36\xaa\xbd\x92\x77\xa0\x75\xf2\x29\x89\xa6\xc3\x59\x19\xb5\xe4\x0f\xe8\x58\x95\x50\x7c\x0b\x34\x58\x62\x21\xbe\x0e\xd1\x17\xee\x17\x27\x42\xd5\x49\x0e\xc5\x6f\x90\x27\xd8\xdb\xc5\x71\xee\x8b\x34\xbc\xf8\x02\x29\xd1\xe7\x64\x09\x92\x9c\x49\x9c\x29\xa5\xfb\xf7\x63\xda\x25\xd3\xc1\x6b\x5c\x62\x6b\x38\xc0\xcc\x85\x53\xb5\x55\xf6\xda\xd3\x36\xb5\x57\x81\x3f\xc7\x8e\xd7\x6d\x01\x3e\x1c\x3c\x58\x07\x05\x9e\xe8\x3d\x5c\xdb\x0b\x2c\xea\xf0\xac\x39\x0f\x74\x6d\xb5\xab\xbe\x07\xdc\x52\x7f\xb7\xea\x3e\x30\xa4\xfc\x5d\xe5\x7b\xfb\x35\x45\x4d\x55\x1a\xa0\x57\x02\xb7\x2a\x3b\xa7\x57\x3c\x9f\xca\xb7\xf0\x97\x11\xfd\x55\x8e\x98\x7e\xea\x50\xd5\x17\x02\x98\xbc\xa9\xba\xce\x6b\x03\xe1\x60\xed\x4a\xbf\x95\xe8\x86\x66\x37\xdb\xf8\xa5\x7d\x2d\xb6\xb6\x3f\x67\x2e\xb5\xe4\xda\xbe\x19\x1f\x69\xe9\xb2\x9d\x1b\x7a\xd1\x72\xca\xb6\x58\x7d\xac\x45\x61\xeb\xab\xda\xd9\xfc\xcb\xf6\xb0\xc2\xb5\x19\x66\xf3\xa2\x29\xa1\x29\xcb\xe6\x57\x8d\x5a\x36\x67\x4b\x96\xee\x97\x39\xda\x55\x15\xa0\x64\x86\x0e\x84\xf4\x7c\xd9\x20\xc4\x21\xf6\x99\x4c\xee\x12\x1b\xd6\x2f\x7b\xe0\xba\x39\xa0\xa0\xa9\x0e\x77\xcc\x2b\xaf\x39\x87\xf4\x08\x77\x48\x79\xdb\xba\x60\x59\xab\xa3\xc4\x66\xcd\x9c\x65\xc7\x5b\x9b\x6d\x13\x7f\x3b\x7e\x59\x9f\x19\xc1\x77\xfc\xb1\x4e\xec\xef\xed\xf8\x61\xad\xdb\xb3\xa7\x83\x67\xf5\x56\xd9\xa1\x7c\x62\x35\xd2\x6a\xad\x44\x59\xa5\x36\x74\xb7\xf7\x5a\x5d\xa9\xf4\x6f\xd7\xb6\xb6\x2c\xd9\xa8\x98\xb6\xb9\x91\xf3\x5d\x21\x03\x1e\xe5\x1f\x55\xbc\x74\xc4\x70\xff\x69\xdf\x09\x15\x31\xf7\xb5\x67\x21\xbf\xfa\x0b\x94\x31\x6e\x7f\x3c\x16\xd4\x87\x2c\x99\x27\x0d\xd5\x48\xab\x3d\xf3\x99\xea\x2e\x2b\xea\x94\xa3\xba\xc5\x6a\xc5\xa8\x52\x9d\x67\x59\x31\x78\x4c\x1d\x63\xb9\xaf\xb7\x4b\x7d\xd0\xe2\x6c\xe7\x52\xdf\x09\x0b\x89\xbc\xad\xcf\xcf\x82\xdc\x94\xde\x7b\xc1\x22\xa4\x96\xdd\xcb\xb5\x18\x2d\xf3\xec\x79\x6e\xe9\x53\xf8\xab\x47\x62\xbd\x32\x1b\xd7\xe3\x6f\x1b\x9d\xfc\xb3\x47\xec\x50\x14\x93\xd6\xd3\xee\x34\x10\x32\xdf\xeb\x0c\xff\x4a\x41\xed\xdc\x2e\x75\x11\x6d\xdb\x95\x58\x7e\x54\xb0\xbc\x87\x5c\x99\x97\x9c\xf5\xcf\xdd\x1a\x5d\x2e\x61\xaf\x6f\x3d\x20\xbc\x6d\x5f\x6d\xe3\x1d\x1a\x48\x57\xa3\x85\xe7\xf3\xf0\xd0\x5a\xf9\x1d\xa2\xef\x91\x78\xe5\xb2\xdb\x21\xbd\x15\x5d\xce\x88\x95\xc7\x27\xbb\xad\x21\x5f\x8c\x26\x7a\x86\x41\xbb\x4c\x8f\xf4\xd1\xec\xe2\x2c\xf6\xa8\x53\xad\xfe\x5a\xfb\xf6\x3b\x9a\x17\xdb\x59\x0e\xa0\x8d\x5f\x3a\x68\x0e\xd2\x0c\xc2\xf7\xd5\x8b\xa2\xc5\x68\xdd\x8d\x45\xe8\x9c\xb4\x43\xd6\x62\x12\xff\xd6\xe1\xeb\x92\x95\xf1\xbc\xa3\xbe\x65\x67\xd8\x6b\x8f\xdd\xaf\x5a\x4f\xff\xa0\x2f\xab\x65\x52\xf4\x0c\x35\x1a\x57\x90\xa6\x8d\xdd\x9b\x23\xdd\x9e\x99\xce\xb7\x25\x20\xe4\x16\xe6\x8a\x1f\x4e\x09\x56\x0f\x95\x93\xa0\xcb\xb6\x73\x9d\x08\x60\x80\xfd\x54\x57\xb9\xcd\x1a\xc7\x93\x2a\xb5\xc5\x98\xd3\x70\x77\xbf\x69\x34\x6c\x6f\xcf\x37\xa3\x15\x47\xaf\x66\x7b\x4a\x5f\xe8\xe7\x08\x39\x22\xa0\xc1\xbb\x9c\x0b\x82\x33\x46\xad\xf9\x41\x49\x6f\x8c\x3f\x14\x26\xc7\x2c\x9a\xb6\x96\x1c\x64\xb6\x9a\xe3\xa4\x41\xd4\x01\x4b\x93\xca\xfd\xde\x15\xd6\x98\x9a\x76\x1c\xd7\x6e\x7f\x03\x15\x75\xcd\x9e\xd3\xc4\x82\xfa\x81\x96\x5b\x66\x1c\xdf\x41\x7c\xda\x06\xed\xb9\xd0\x55\x8a\x00\xdb\x7d\x2e\x8a\xf6\x73\x96\x27\x91\x96\x1d\xbb\xcc\x68\xe8\xde\x4e\x8c\xf1\x56\x93\x08\xfe\xfa\xaa\x6b\x66\xef\xf9\x9f\xc5\xdf\x2d\xdb\xd2\xce\xe7\xaa\x6c\x62\xfe\x23\xa6\x6d\x46\x56\x30\x6f\x9f\xdd\x50\xce\x1b\xd6\x75\x7b\xd7\x82\x6b\xf4\x5a\xd0\xb6\xe2\x49\xbf\x47\x8e\x43\x92\x2c\xd2\x30\x64\xba\xc2\xd7\x8d\x09\x3d\x5c\x03\x80\xdf\x70\xa9\xad\x37\x82\x74\x20\xb5\x1b\x97\x41\xab\xd1\x11\x4d\xb7\xed\x0a\x30\x93\x2d\x9d\xd6\xda\xd8\xd5\x6d\x2e\xe6\x35\x78\xa6\x5c\x65\x72\xc8\xee\x46\xdc\x58\x03\xc7\xc1\x3b\x3e\xbf\xfc\x91\xe3\x2c\x8f\x5d\x24\x84\x8c\x27\x7c\x13\xae\x70\x16\x24\x03\x52\x0f\x41\x8b\xf9\x89\x5c\x21\xec\x52\x26\x2f\xdc\x05\x6e\x24\xf4\xa0\xd9\x21\x5a\xf2\xeb\xc8\x37\x50\x81\x45\x42\xfc\x88\x6b\x48\x69\xa7\x2b\xd8\x2d\xa5\x9c\x04\x9b\xc6\xb6\x54\x25\x82\xe3\xf1\x8f\x6a\x09\xf6\xf9\x24\x48\xfd\x5d\x9b\x13\x9e\x51\x8d\xdf\x2d\x75\xbd\x65\x4d\x23\xa6\x91\x2e\xc7\x59\xae\xad\x0e\x88\x01\xd6\xf7\xda\x7b\xa8\x69\xf6\x5f\x69\xb6\x6b\x5a\xb4\xa4\xe0\x0e\xe6\x3e\xa7\x41\x60\xe1\x76\x22\x2e\x2c\xf1\xbe\x7b\x6e\xc2\x60\xb4\x2b\xf6\x42\xca\xad\x50\x57\x3c\x35\xfd\x52\x40\x01\xa1\x38\x9b\xe1\x05\x21\xed\xcc\x2b\xc7\x96\x79\xbc\x2f\x7c\x81\xb2\xf7\xfa\x52\x32\xed\x3c\x4c\xfe\x57\xfa\xc3\x71\xab\xef\x99\x8a\xf3\xc0\x15\x94\x4b\xd5\x7e\xd6\x5a\x01\x9f\x6a\xd5\xe6\xda\xb8\xb3\xf4\xb1\x8e\x0c\xe2\x39\x46\x4f\xb3\xa3\x47\x63\xc8\x7c\xcd\x1e\xcf\x6b\xa1\xbf\x4a\xaf\x78\x95\x86\x6b\xe4\xcd\x79\x27\x44\x06\xa7\x8b\xc9\xda\x51\xaf\xe2\xc7\xc9\x1d\x5c\x1e\x8b\xe3\xd3\xc8\xcb\xa7\xd7\xf9\xbe\x4c\xbe\x47\xd9\x41\x69\x4a\x67\x91\x7e\xfb\xff\xca\xba\xe3\x36\x44\x2d\xcc\x73\x40\x80\x68\x81\x85\x3a\x90\xaf\xc1\x66\xe2\x14\x87\x22\xfa\x0d\x49\xb4\xed\xf1\x90\xc1\x72\x33\x8b\x76\x3f\x9a\xdf\xe3\xde\x6f\x01\xab\xfd\x35\xdb\xe7\x03\x5f\x06\x38\xc9\xa6\x69\x4f\xa8\x27\xaa\xbc\x83\x18\x34\xba\xf8\x5d\x10\x39\xf8\x5b\x8e\x73\x50\x59\xc8\x99\xd4\xf2\xa0\x8b\xe1\x51\xdc\xde\x60\x19\x9b\x11\x5e\x49\x2f\xe3\x10\x83\x34\x18\x1d\x3c\x0d\x9f\xc1\x50\x93\x64\x0e\x61\x99\x79\x2a\xdd\xd4\xf5\x69\xf8\xe6\xac\x32\x17\x64\x44\x69\x6e\x1c\x98\xcd\x32\x2f\xf8\x0c\xec\x64\xff\x2c\x46\x5b\x8d\x32\xad\x3c\x2c\x87\xd7\x44\xec\xf0\x1c\xef\xf6\x8d\x94\x7b\xdd\x96\x8f\xb0\xa3\xbc\xbf\x34\x6e\x63\x6b\xf9\xa4\x56\x54\xb0\xde\xf9\x19\x15\xbd\x65\x95\xf8\xbf\xca\xba\xc4\x8a\xa0\xc5\x27\xc5\xb0\xd2\x18\x96\xd1\x11\x6c\xb3\x30\x72\xa8\x38\x0a\xc1\x0a\xa0\x1a\x47\xf3\x39\x38\x6f\x5a\xcc\x4c\x7c\x1b\xae\x97\xbb\x33\x39\x12\xad\x11\x2b\x48\xfb\x0c\xa5\xc6\x2d\x0b\xde\x83\x3a\x78\x2e\x39\xf5\xb6\xf8\xd8\x78\x77\x87\x89\xdb\xbc\x5d\xd8\xb2\x81\xbd\x09\xef\x71\x57\x3a\x5f\x25\x8e\xe1\xbf\xb7\x8e\x26\xe1\x89\xc7\xea\xdd\x12\x55\x24\x59\xd9\xe7\xc4\xa3\x9e\xf8\x42\xf3\x84\x74\x6f\xa5\xc0\x26\x61\x9b\xdf\xe5\x84\x2d\x09\x16\x81\x38\x96\x57\xc2\x75\xba\x2f\xbd\x27\x71\x81\x39\x4e\x69\x48\xfa\xca\x2a\xf3\xdc\x96\x02\xe4\x58\xb8\xdf\x4c\xf5\x8b\x5f\x42\xda\xf3\x25\xc9\x7b\x9d\x2a\xd3\xfe\xa6\x95\xd9\x17\x67\xa4\x21\xcf\xcf\xfe\x93\xd9\x8b\xba\x34\x2a\x14\xfc\x40\x5f\xeb\xfb\x95\x55\xe3\xda\xd9\xd1\x9b\x75\x07\xc3\x6a\xa9\xcc\xba\xe3\x16\x53\xfb\x2d\x0b\xee\x7e\x4d\xca\x15\xcc\xe2\x0a\x0b\xc0\x82\x03\x04\x76\x46\x6c\xe6\x98\x57\x70\xdc\xc5\xcc\xfb\x7e\x76\x11\x00\x41\x1b\x35\x8b\x76\x3d\xcb\x8b\xee\xe8\x6b\x9c\x1d\xc4\xbc\x4a\x3c\x2b\x9c\x62\x4d\x63\xbe\xe7\x9c\xe7\xd4\xc0\x6d\x73\x6f\xf1\xa2\xc0\x66\xa2\x9f\xb0\xe4\xf9\x8b\x45\xff\xb8\x04\x4e\x14\x15\x5d\x85\xaf\x1b\xd2\x2f\x6e\x83\xcf\xf4\x74\x14\xc7\x22\x8e\xb7\xbf\x2e\xb6\x47\x54\x34\x1f\x2c\xea\x46\xd2\x6a\xd2\x0b\x5f\xa0\x72\x25\xba\x85\x31\xae\xb8\x3c\x7a\xa1\xa6\x5b\x0e\xff\x6b\x21\x90\x20\xe3\x82\x0a\x83\xbc\x2e\x32\xa1\x45\x47\xfc\x42\xa9\xfb\x8b\xe6\x02\x1d\xbd\x3f\x15\x8f\xd1\x4b\xf1\xb7\xc5\xdf\xc3\x7a\xd0\x7f\x4b\xf1\xec\x3f\x50\x42\xd9\x2f\xc8\x8f\xa5\xf5\x15\xc3\x4e\x5f\xa7\x82\x2a\xcd\x9c\x49\x23\x7d\x95\x2a\xe7\x31\xf5\x8f\xca\x37\xd0\xad\xaa\x2d\x95\x45\x50\x3b\xb9\xa2\xd2\x12\x4a\x97\x41\x2a\x84\x30\xcd\xaa\xf2\xf2\xb3\xb0\xc7\x25\xc5\xe5\x42\x04\x31\x67\x77\xb9\x3f\x9a\x97\xb2\xa3\xbc\x1f\xab\x11\x3d\x5a\xb1\x93\x14\xce\x30\xac\x90\x91\xc1\x94\xe7\x95\x14\xca\x63\xcf\x53\x55\x19\x34\x6b\x6c\x78\xcd\xf1\x90\x13\x08\x7c\xbd\x9f\xa3\x62\xc9\xbf\x71\x3b\xd8\x73\x66\x5f\xa3\x04\x9c\x34\xd6\xd6\xf8\x0a\x5c\x36\xc8\x96\x21\xc1\xbd\xbd\xf6\x32\x6d\xf0\x4c\x07\xa5\x71\x04\xbc\xdc\x8a\x6e\x24\x83\x6f\x36\xac\x6f\xf8\x17\x82\xaf\xc8\x69\x70\x86\x9c\x2f\xfe\xd5\x60\x0e\x63\x67\xe5\x36\xf8\x20\xcd\x12\x49\x0d\x4b\x98\x3c\xb6\x6d\x23\x12\x7f\x8e\xf6\xac\x71\xd6\xb3\xcd\xf7\x9d\x4c\xe2\xbb\x97\x74\xa1\x59\x2b\xa0\x1a\x53\xdf\xfa\xc9\x81\xb8\xac\x96\xef\x75\xf8\x77\xee\xa8\x7c\x19\xa4\x39\x91\xac\xd0\x06\xad\x1b\x4e\x55\x50\x41\xab\xd4\x42\x45\x12\x68\xa5\x8a\xa8\xd8\x01\xda\xa4\x88\x91\xab\x40\x3b\x9a\x8a\xe5\x48\x10\xb9\xe6\x71\xdb\x63\xd0\x75\x69\x69\x9b\x0c\xbc\x5a\x84\x68\xeb\x70\xca\xcd\xf8\xd6\xf6\xc3\x45\xc2\xdb\x22\xf7\x41\xef\x89\x3c\x2e\x9f\xc1\x92\x03\xc3\x14\x9d\xa4\x9d\xe4\xdb\xca\xd5\x64\x33\xfc\xce\xae\x42\x20\xe8\x64\x9b\x2a\x1c\xd8\x33\x5f\xde\xbd\x07\xf8\x69\xf2\x5d\x37\x09\x78\x6d\x54\xa7\x3b\x07\x38\x30\x40\xe8\x1e\x00\x8a\x7b\xf2\xbb\xa3\x80\xc5\x1d\xdb\xbb\x77\x01\xcb\x5a\x93\x55\xa3\xc0\x9a\x86\xdb\xaa\x58\xfb\xdd\x95\xd3\x2a\x73\xfb\xfa\x12\xb9\x6a\x1d\x68\x67\xde\xc6\xae\xbf\x8e\xef\xd3\xfa\x55\x01\x50\x4a\xdc\x76\xd5\x55\xc4\xef\x70\x56\x37\xce\x4d\x9b\xca\xeb\x11\xe0\x97\xbc\x08\x03\xfd\x36\xf7\x4f\xbd\x1d\x44\xda\xc6\x2f\xa0\x06\xbf\xd9\x69\x4f\x77\x0e\xe9\xd9\x7e\x1c\x7b\x3c\xe4\x6a\x3b\x3a\x04\x1c\x62\xda\x26\xf4\x49\x86\x70\xb6\xf8\xae\xa6\xa1\xd5\xb6\x28\x05\x7a\x70\xc0\x16\xdc\xf4\x7a\x90\x6e\x4b\xaf\xfd\x30\x68\x66\x7b\xa2\x5c\x73\xe0\xad\x1d\xbc\x78\xcf\xc0\x6d\xe0\x1f\x61\xfc\xc0\x33\xd0\x81\x54\xf6\xe0\x4a\xc8\x75\xae\xe3\xa0\x8f\x4b\x12\xb3\x6d\x48\x07\x9d\xef\xbf\xa4\x33\x5f\x0d\x11\x07\xef\x7b\x5c\x0b\xcc\x35\x3c\xd0\x5d\x0f\x4f\xdf\xaf\xfb\xb6\xb1\x89\xf7\xfe\xd0\xe6\xa6\xef\x51\x77\x0f\x43\x5a\x7f\x84\x8c\x1c\x61\xb4\x43\x02\xac\x8f\x11\x3b\x83\xbd\xd2\xf5\xc9\xaa\x97\xd8\x77\x86\x80\x9e\xcf\xa8\x2b\xc6\xa6\x7d\x8f\xa1\x42\x33\xad\x7e\x2b\xb0\xae\x39\x6f\x30\xc4\x3e\xce\x6a\x74\xe8\xb8\xcd\x13\xbb\x6f\x43\x07\x2d\xb3\x1d\x5e\x0e\x9d\x34\xdb\x09\xbe\x3b\x7c\xc2\x48\x7d\x98\x23\x31\x93\xfa\x1d\xdb\x25\x15\x17\x4c\xeb\x1b\x94\xa3\x05\xe9\xc7\xcf\x56\xa6\x26\xeb\x19\xae\xad\xd9\xc6\x99\x36\xc2\xd5\xdd\x0b\x2b\x37\x16\x37\x66\x51\xaf\x9a\x2a\x5b\xf6\x90\x37\x9a\x87\xc8\x81\xb8\x57\x96\xcf\xdb\x7f\xa1\xcf\xdb\xe0\x3b\x51\x30\x7f\x20\x40\xb5\x12\x2c\x02\x6d\xec\x26\x39\x1c\x80\x6c\xec\xe1\xd8\x5e\x70\x1e\xeb\xcd\xb6\x2a\x76\x01\xf5\xf1\xcd\xad\x11\xcd\x6a\x89\xf1\x92\xe1\x51\x11\xa8\xf2\xa1\xc9\xee\x42\xed\xe2\x01\x33\xd3\xa2\xa9\x1c\x23\x8b\x7d\xe2\x06\x7e\x95\xe5\xa0\xe4\x58\xfc\x2a\x6b\xf3\xb2\xd7\xac\x00\x1b\x75\xe5\x57\xba\x81\x1d\xa5\x16\xec\x47\xb3\xf7\x6e\x28\x23\x9e\x03\x65\x37\x9d\xc5\x7c\x04\xcf\xb5\x56\xc2\x65\xce\x9a\xf2\x07\x90\x3e\xd8\x44\x7b\x1b\x88\x8c\xa0\x77\x18\xdb\xfd\x46\xfd\xec\xcc\xb4\x6e\xc2\x24\x75\x75\x59\x80\xdd\xbf\xaa\xce\x98\x8c\x5a\x46\x66\x6f\xa9\x6b\xb1\xf1\xce\x1e\x94\xf6\x01\xb5\x85\x05\x22\x7d\x07\x56\xce\x73\x41\x9b\xa3\x46\x7e\x74\x52\x1b\x18\x59\x48\x8a\xe1\x41\xee\x88\x27\x98\x2c\xe7\x48\xc9\x3d\x6a\x17\x6c\x4b\x45\xae\x77\xb6\xcb\xfd\xea\xbb\x38\x16\xd2\xa1\x9e\x8c\xfa\x8c\xce\x93\x01\xa1\x19\x98\x89\xe6\x22\xb0\x26\x76\x55\xab\xc8\x3e\x0b\x8f\x92\xc3\x6c\x57\x13\x73\x15\x27\x2c\xf3\x3c\x6e\x2a\x4d\x4d\x6f\x80\x76\xa6\x56\x34\x81\x20\x7b\xf8\x9b\xaa\xba\xa0\x5b\xf9\xe9\x25\x41\x2e\xf2\x34\x71\xee\x2b\x24\xf2\x3f\x62\xa2\x28\x59\x86\x3c\x7d\x74\x61\x0e\x87\xf5\xc7\xf5\x5e\x81\x26\x03\xe0\x86\x2d\x1a\xa2\x50\xdc\x9f\x97\x86\x7b\x44\xe0\xba\xcb\x35\xdd\x1d\x08\xd3\x55\x05\x88\x07\xa4\x0f\xb5\x62\x27\x9e\xd7\xf1\x06\x24\x28\x81\x6c\x23\x4b\xb7\x5b\xf4\x35\x6e\xa6\x5a\xeb\x51\x3c\x5a\x4d\xcc\xf5\x91\x5b\xe3\x0c\xe5\x8f\x5c\xc3\xe3\x78\x0d\x09\x6e\x77\xe3\x89\x15\x47\x71\x48\x1e\xac\x68\x8e\xa0\x9d\xf0\x41\xa8\x4b\xec\x4e\xfa\x91\xea\x42\xaa\xe2\x3b\x72\xaf\x7b\x9c\xcc\xb8\x1c\xfe\xd0\xf3\x77\xb6\x5f\x90\x81\x37\x31\x2f\xd0\xe7\x09\xf9\x73\xe1\x71\xc2\x47\xdf\xc1\x12\x23\x0c\x8a\x92\x20\xbd\xe2\xf2\x20\x80\x50\xf1\x0b\xb2\x2d\xd0\xa2\x5a\xe5\xb0\x2e\xe8\x68\xdd\x5e\xdb\x35\x74\x68\x43\x98\xc5\x35\x22\x27\x32\xb1\xeb\xac\x67\x0f\x6b\x4d\x6b\x34\x39\x9a\xb5\x58\x77\xd4\xd7\x89\xfd\x5b\x5a\xe4\x77\x2d\x7a\xa0\xe0\x94\xbf\x21\x67\x51\x60\x1e\xb0\x3a\x4e\x90\x74\x28\xe0\x54\x42\x57\xf4\x2b\xea\x95\x94\x50\xa6\x05\xed\x78\xfa\x6a\x6a\x5b\x50\x7c\x16\xdc\xbb\x89\x0e\xc8\xdd\x8b\x3b\xc7\xe0\x8b\x48\x68\xbf\x50\x84\x78\x33\x6c\x15\x73\x49\x82\x71\x54\x87\xd3\xca\x0d\x80\x96\x91\xd0\xca\x0f\x56\xfe\x01\x5a\xc1\x10\xf5\x59\x9a\x15\xdd\xb7\x23\x9d\x8e\x63\xc4\x36\x87\x85\xac\x0d\x59\xa8\xd9\x11\xba\x89\x89\x2c\x15\x87\x2e\x85\x47\xe5\x09\x98\xca\xc8\xd1\xf4\xac\x30\x78\xb4\x29\x4f\x23\xec\x19\x57\xc8\x06\x84\xdf\xe3\x19\x33\xb2\x22\xf5\x93\x37\xf9\x23\x59\xed\x69\xf6\x9e\xf9\xec\x37\x02\x28\x76\x47\xf4\xc1\x9c\x7c\x64\x62\x4c\x63\x81\xab\xf3\x76\xae\x5d\xd1\xa0\xc3\xfb\xd8\x0b\x25\xaf\x6c\x9a\xc2\x59\x7e\x76\xa3\x09\xec\xc3\x94\xfa\x9e\xab\xd1\xae\xfe\x35\x8a\x8f\x1c\x7c\x40\x81\x6c\x37\xe7\x44\xe0\xbe\xca\x76\xae\x25\xed\xba\xd8\x83\x8b\xa6\xc7\x08\xff\x70\x1b\x42\xcd\x53\x95\xb1\xeb\xc2\x2f\x71\xdf\xc5\x3e\x61\x97\x44\x1c\x8e\xbb\xc9\x31\x0b\xba\x1b\xff\x24\xde\xcd\xf7\x75\x82\x4d\x12\x9a\xe4\x99\x58\xc1\x0f\x73\x23\x27\x75\x64\x8e\xc1\xdb\x92\x5f\x0a\xa5\x10\x54\x2a\x27\xdf\x07\xc8\xe6\xad\x23\xd5\x4d\xc5\x25\x5e\xf2\x34\x18\xec\x49\x39\xec\x95\xae\x62\xa5\x92\xbc\x4b\xe5\x1a\xfc\x3c\x72\x5b\x43\x3c\x3f\xc6\xd7\xb9\x42\x87\x9f\x4b\x59\x5b\x94\xc3\x67\x05\x0c\x67\xa9\xf8\x89\x41\x9b\x93\x9a\xf9\x93\x0c\x79\xf4\x64\x5a\x79\x18\x9f\xe9\x9f\xde\xc8\x72\x08\x74\xcf\xe8\x8e\xe9\x26\x8f\x65\x3e\x8d\x13\x12\x1c\x04\xdf\x13\x5f\xbb\xb2\xb2\x37\xf1\x91\xb0\x41\xa1\x5b\xe6\x49\xd0\x8c\xa0\xd0\x7d\xfb\x7c\x41\x36\x1b\x1b\x32\x96\x98\x63\x89\xcb\x55\x47\xe4\x7a\xe0\x7b\x3a\x3e\xe5\xad\x26\xfc\xdb\xf2\x30\x2f\x91\xb4\xbb\x2e\x2c\xcf\xd5\x43\x56\xe6\x94\x77\xdc\x2b\x58\x94\x9b\xfb\x99\x3c\x9c\xb9\x94\xfb\x8d\x32\x9f\x00\xc8\x73\x09\xbc\xc7\x1a\xcd\xb7\xa1\x4f\x32\x62\x0b\x40\xcc\x19\x7f\xb9\x88\x17\xf9\xcd\x2b\xae\x68\x6d\xf4\x35\x1c\xa1\x48\x14\x37\x8b\xa2\x14\x07\x27\x6b\x38\x61\x8b\xee\xa0\x24\x8b\xcf\xc5\x4a\x74\xcd\xe4\x4c\x49\xb5\x2b\x6d\x78\x45\xa9\x02\xe3\xd4\xab\x27\x59\x8f\xf9\xad\x04\x49\x42\xdd\x4e\x36\xc3\x25\xe9\xee\x0f\x6a\x1a\x25\x81\x38\x94\x84\x2e\x31\x27\xac\xcb\x07\x97\x7e\x20\xed\x4d\xcf\x90\x18\x79\x5f\x8e\xab\x90\xd4\x53\xdc\x22\xc8\xd2\xd6\x40\x6a\x90\xb8\x2c\x91\x5e\xee\x67\x5d\xde\xcf\xac\xf1\xd8\x56\x09\x8d\x5c\x74\xbb\x57\x95\xce\xd9\xe7\x32\x51\x71\xda\x25\xf1\x94\xba\xda\x16\x7e\x67\x66\x53\x8d\x26\x82\x39\xfa\xa4\xe6\x22\xe2\x5b\xff\xed\xda\x54\xa4\x50\x35\x54\x5b\x88\xfc\xa5\xd8\x5b\x3b\x80\x4a\x93\x25\xd7\xe6\xa1\xe9\x55\x57\x6a\xc9\xae\x71\x25\x77\x6b\x51\x6e\xb2\xdc\x15\xb5\x7e\x38\xcb\xd4\xa1\xda\x0b\xa4\x71\xee\x86\x3a\x12\x39\x87\x79\xbe\xde\x95\x22\xa7\x3e\x69\x80\x05\xbe\x26\xab\x1b\x4b\xe9\x17\x08\x39\x4d\x25\xe1\xa6\xa8\xec\xc6\x28\xe7\xf0\xd3\x3a\x4d\xe5\xd0\xcc\xb9\x95\xcd\x05\xd0\xdf\xe3\xb7\x5b\xb4\x61\xf8\xa1\xa0\x16\x39\x4c\xd1\xfb\xa8\xe5\x94\x0b\xa0\xe3\x6e\xcb\x98\x8b\x77\xab\xb4\xa5\xcf\x65\xa6\x41\xb7\x25\x07\x5e\x56\x51\xd9\xc2\x44\x24\x8b\x57\xb4\x24\xa1\xf5\xb3\x9b\x5a\xa6\xdd\x20\xc9\x66\xad\xfe\xb8\xb7\xd1\x79\xad\x37\x3c\x9d\x43\xcc\xdb\x96\x7d\x54\xfe\x63\xf2\xf7\xfe\x3f\xbc\x74\xdb\x5f\x06\x15\xbb\x5b\x29\x52\xc1\x7f\x4f\xf1\xdb\x6f\x42\x52\xe7\xfb\x94\x2f\x20\xd7\x26\xd3\x3b\x42\x21\x7f\x47\x28\x1d\xcf\x9d\x8c\xfa\xc1\x9d\x24\x27\xba\xea\x47\xe7\x41\xa7\x5e\xc5\xdb\x8e\xaf\xce\xab\x9b\xee\x74\xdc\x72\x96\xd4\x02\x3b\xce\x43\xa9\x65\x2b\x3b\x6e\xc0\xda\x0a\x37\x75\xae\x81\x7f\x14\x40\x3a\xb9\xe8\xf0\x84\x77\x5d\xeb\xdd\xc1\x6c\x5a\x57\x15\x91\x1b\x3c\xa4\xba\xe4\xf5\xdd\xaf\xa6\xe7\x04\x25\x0f\xff\xa5\xc7\x1c\x74\xe6\x34\xbb\x17\xe8\x68\xba\x40\xe8\x23\x3a\xca\xa6\x7d\xfa\x4e\x39\xaa\xc7\xa8\x6a\x27\xc7\xf9\xc1\x68\x75\xbf\xe3\xe5\xde\x34\xf5\x80\xe3\xaf\x8e\xcf\x6a\x21\xd8\xac\xed\x90\x9a\x04\x0e\x6b\x44\xaa\xa1\xe0\x4f\x55\x4c\x35\x10\x92\x5f\xca\x57\xa3\x9c\x5e\xe7\xdb\xab\x33\xa0\xef\x32\x56\xf5\xaf\x44\x5c\x8e\xbf\xdb\x5f\xec\x7a\x39\x92\x37\xb0\x19\x77\x89\x46\x1b\x5c\xf4\xc8\x20\xef\x1f\x0e\xb2\x3f\x7c\xe6\xc4\x88\xa9\xfd\xfc\xd2\x81\x51\x0b\x87\x8c\x59\xf1\xe8\xbc\xc3\xdc\x44\xdc\xd8\x6e\x87\xd1\xe1\xaa\xb1\x08\x87\x4e\xf5\xd4\x58\x93\x43\x8b\x6a\x76\x2c\xd3\xe1\x44\xbb\xd1\x18\xcb\xe1\x51\x73\xc5\x18\x1a\xa4\x5b\x27\x1b\x03\x81\xb2\xcb\x5f\x8c\x19\x80\x3e\x89\x41\x63\xae\xe0\xb2\x9c\xf1\xb1\x2c\xa7\x68\xfe\xe3\xf1\x4d\xb0\x73\x71\x81\xe3\x7b\x51\x8e\xe1\x8a\xf1\x67\xee\x9e\x54\x9b\x43\x43\x8d\xad\x65\x1b\x8f\xbc\x6e\xda\x2a\x3a\x7b\x8c\xd5\x7c\x33\xeb\x81\x5e\x5d\xeb\xa3\x94\xab\xfa\xc9\x0a\x5a\x6c\xf5\x71\x4a\xc7\xda\xc8\x75\x06\xe0\xae\xa7\xc1\x87\x0d\x07\x7a\x72\x7d\x2f\x1b\x15\xa8\xb7\x10\xb9\x26\x9c\x01\x1d\xb7\xcd\x66\xc6\x43\x47\x10\x06\x96\x65\x43\x97\x9d\x38\x56\xf5\xa3\x7b\x40\x25\x40\x97\x91\x65\xbb\x8f\xa0\xf6\xd1\xe3\xd6\x1c\x48\xdb\xa8\xdc\x62\x3d\x94\x3c\x46\x35\xc9\x32\x38\x52\x35\x5d\xa5\x67\x74\xab\xba\x47\x0c\x37\x51\xd4\xc2\x73\x37\x99\x61\xeb\x4e\xa5\x5d\x32\x77\x6f\xcc\xe2\xf9\x58\xd8\x37\x1b\xb1\x3f\x58\xc6\xb6\xce\x31\x8a\xac\x6e\x28\x2a\x29\x8b\x36\xde\x1d\xa1\x1e\x10\x3b\x74\xd7\x25\xb7\xc7\xf6\x53\xdd\x17\x11\x12\xd0\xaf\x5e\x8e\x53\x3c\xe4\x66\x5f\x03\xe8\x33\xb4\x4a\xdd\x03\xec\x87\x83\xfa\xeb\x6d\x42\x91\x23\x03\x5c\xcb\x55\xae\xfb\x07\x81\xa6\x42\xb3\xe7\x92\x8d\x75\x3f\xad\x74\x24\x13\xd2\x43\x36\x62\xe9\x93\x02\xa1\x5d\x52\xb9\x44\x70\x10\xf8\xab\xf2\xdf\xa4\x16\x87\x1d\x35\x5c\x8e\x19\x08\x56\x6f\xcc\x7c\xed\x98\xdc\x38\x43\x25\x43\xe8\xcd\x37\xbc\x1d\x9c\x77\xb5\x89\x70\xc6\x30\x46\xfb\x1e\xf4\x5a\x78\x63\x87\x1d\xb4\x05\x75\xac\xf3\x31\xd8\xd8\x75\x49\x85\xb4\x3f\xe9\xee\xd1\x9d\x60\x1b\x86\x53\xf4\x64\x58\xad\x26\xdc\xe9\xcd\x36\xcb\xb2\xf3\x13\xa1\x64\x61\x0e\x12\x91\xba\x92\x0d\x9e\x29\xd4\x2e\x1e\x77\x92\x17\x5d\x11\xbe\x85\xc6\x89\xcf\xf1\x8d\x5d\xf6\x48\x6c\xe2\x14\xf0\x9c\xb2\xbb\xac\xbd\x88\xab\x95\xf3\xf4\x4d\x28\x5c\xcd\x6d\x3f\xaa\xeb\x9e\xfa\x4f\xa4\x8d\x6e\xc7\x65\x6f\xdc\x2c\xb1\xae\x2d\xd9\x88\x2d\xf8\x90\xb6\x1e\xc8\x17\x62\xb3\xa2\x04\x14\xed\x71\x5b\x69\x64\xf7\xd6\x7b\x63\x47\x95\x75\xb4\x0f\xa1\xf3\x8b\x79\x87\x13\x32\x5b\xaf\x75\xc1\x65\x7d\x36\xb6\x6e\x2f\x12\x93\x2d\x97\x0e\xb9\x1e\x15\xc6\x89\x1c\xdd\x82\x73\x5e\x08\xe4\xee\xef\xf3\x31\x49\x83\x38\x4b\xd1\xa3\x98\x06\x3c\x47\xbc\x85\xd9\x48\x68\x91\xec\xa1\x7e\x24\xa1\xcb\x1b\xc9\xc7\x3d\x57\x54\x9d\xc5\x83\xbd\xd7\xd7\xe9\xa2\x6f\xfb\x98\x36\xfc\x81\xf9\xfb\x69\x35\x79\x80\xa3\x28\xdf\x5a\x7c\xec\x17\x02\x6e\xb6\x1d\xb4\x3d\x10\xf8\x59\x7e\xdf\x52\x03\x7d\x3d\x35\x42\x79\xc3\xbd\x29\x35\xbb\x09\x85\xef\x4c\xfd\x58\xf5\x8c\x54\xcd\x67\x96\x24\x7a\xbe\x4b\xcb\xcc\xfd\x40\xde\xf5\x1f\x31\x7d\x1c\x04\x3f\x78\x0c\x5f\x9f\x9c\x0d\xec\x58\xbf\x9c\x7c\x24\x63\x99\x72\xb7\x50\xe8\x1f\x18\x50\x5c\x62\xec\x59\x1a\x68\x2e\x1d\xc3\x42\x68\x37\x2a\x81\xc8\xfb\xc1\x8a\x1a\x2b\xe7\x60\x46\x5a\xdd\x1c\xe8\x5d\x68\x48\xe3\x0e\xbb\xab\x61\x06\x4d\xdb\xad\x7a\x3c\x5d\x63\xcb\x7b\x58\xe4\xf9\xd8\xb7\xf2\xcf\x14\x9b\x38\xf7\x86\xa9\x80\x82\x78\x44\x85\x69\xe0\x22\x0f\x5b\x54\x15\x64\x9d\xb8\x52\xb8\x2d\x38\x3e\x79\x55\x2a\x9d\x1e\xcf\xdf\x17\xeb\xc7\x68\xcd\x88\x8a\x90\x87\x2c\x65\xcd\x04\x1b\x32\xb7\xe5\xfa\xf9\x6d\x09\x53\x16\x7c\x22\x81\x22\x08\xc5\x72\x37\xb7\xc8\x41\x09\x18\xb1\x9a\x6d\x5f\xee\x0e\x79\x1c\xb5\x58\xb5\xdd\xc1\x35\xa6\xb0\xa6\xc1\x26\x2d\xb0\x24\x82\x33\xb8\x85\xbe\x3f\xd2\xa6\x2b\x25\xd4\x37\xf2\x51\x2b\x36\xec\x2e\xeb\x54\xed\xe7\x88\xcc\xa8\xc3\xd2\x80\xc8\xf7\xd1\x77\x0a\xa6\x58\xbf\x38\xb7\x05\xd6\xec\xf1\xb8\xca\x24\x42\x54\x43\x82\x3a\x86\x16\x7d\x21\x45\x87\xf9\x85\xe3\x95\x96\x14\xd8\xcb\x0d\x17\x20\xc9\x8f\x62\x47\x84\x4b\x84\xc3\x71\x9f\xf3\xe7\x5d\x19\x3c\x5e\x11\xd5\x65\x77\xc2\xb7\x92\x32\x30\x32\x89\x2a\x2d\xb7\xbb\xc6\xda\x16\x34\x39\xf6\x2a\xba\x3b\xf8\x61\xdf\x5f\x2e\x8e\x7e\x56\x79\x36\xae\x8e\xd1\xdd\x74\x39\xfe\x79\xe8\x86\xea\x72\xde\x73\x66\x79\xa9\x79\x42\x4d\xf8\x74\x9e\x57\x62\x08\x6b\x55\x7a\x71\x92\x4e\x74\x24\x0f\x92\x74\x8e\xab\x64\x47\x25\xcf\xf3\x74\x42\x60\xa9\x80\xa4\xaa\x00\x27\x3e\x83\xef\xe4\x75\x26\xed\x4c\x46\x15\x2e\x3a\xbd\x2e\xfb\x0e\xaa\x39\xe3\x56\x5e\x3d\xd4\x48\x40\x2b\xb4\x07\xad\x4a\xc4\xf8\xe6\xcc\x84\xa5\xd8\xfb\x5d\x1b\x6e\x49\x3b\xec\xff\x4f\x8f\x65\xfa\x62\xc0\x3e\x45\x4c\x66\x32\xf5\x48\x63\x51\xe6\xdf\xc0\xf3\x95\x44\x41\x73\x10\x5f\x7c\x48\x70\x9f\xb1\x46\xf8\x3c\x8b\x14\xda\x97\x3a\x97\xf5\x30\x42\x3f\x16\x96\x7d\x83\x3d\x1c\x31\x2c\xbc\xc0\xb1\x09\x1e\xce\x79\x1a\x77\x99\xa2\x91\x07\x49\x4c\xf4\x68\xcd\x17\xa5\x12\xdd\xf3\x0b\x70\x19\x4d\x08\xb5\xc8\x3c\x7b\x18\x22\xcf\x96\x11\x7f\x2e\xb8\xe6\xfc\xf6\x50\x4e\xec\xc8\x5f\xe3\xb5\x72\xc0\xa2\x60\xc8\x1b\xda\x55\x2e\x9a\x23\x07\xb4\x1d\x2d\x1c\xf5\x11\xd7\xc7\x17\x69\xfb\xe9\x96\x07\x15\x89\x29\xf7\x8a\x56\x14\x9d\xa2\x4a\xb3\xf0\xc5\x80\xa0\x81\xa4\xce\x62\x46\xc8\xde\x98\x9d\xe2\x98\xb0\x4b\xcc\x47\x25\xed\xac\x70\xda\xaa\xd2\xbf\x31\x07\x7d\x66\xa5\x7e\xb1\x72\x22\xa7\xcc\x31\x71\x2d\x06\x54\x7e\x20\x75\x12\x56\x25\xfe\xea\x5e\xb9\x3c\x2f\xd9\x84\x2d\x9a\xa6\x49\xfd\x71\x89\x23\xa0\xb2\x2b\xf8\xba\xbe\x2d\xe5\xa7\x09\x67\x3b\x34\x2b\x2a\x89\x6f\x9b\x3f\x55\xee\xf5\xb0\xae\x0d\xad\xc4\x79\xaa\xa4\xec\xca\x2c\xef\xdc\x82\xd9\x4a\x95\xaf\x46\xa6\x45\xd5\x36\xff\x93\xbc\x17\x55\xb5\xb4\x6c\xb6\x61\xb5\x8c\xe1\x14\x72\xb8\xe6\x26\xf3\x66\x40\x4a\x1d\x3b\x32\xd3\xdb\xbd\xa1\x28\xaa\x09\xbf\xa2\x11\x14\xfb\x0b\xf9\xb9\x1a\x88\xde\x77\x06\x5b\xdb\xe0\xea\x33\x17\x57\xaf\x89\x31\x1e\x4f\x6c\x38\x88\x79\x39\xb8\xaf\x11\xec\x36\xdc\xdd\xd9\x38\xe8\x1e\xa3\xb8\x24\xc3\x62\x41\xb2\xa7\xb2\x6a\x1c\xbe\xda\x5e\x76\x1e\x5f\x5a\xea\x26\xbb\x45\x6c\xca\xb3\x95\xfd\xf1\xdc\x99\x36\xdc\xc4\xf7\xc1\xc5\x25\x36\x83\xfc\x03\x22\xc6\x5b\x88\xb4\x23\xc1\xc4\x56\x0e\x63\xbb\xdf\x19\xf9\x21\xe6\x2b\x0f\x4a\x7b\x2d\x6b\xb3\xdb\xf6\xe6\xf5\xf0\xbb\x67\x14\x2d\x3f\x11\x97\x4e\x88\xda\x92\x91\xe2\xc9\x16\x39\x1c\xa5\x35\x7c\x5e\x71\x00\xd5\xd0\xf7\x5e\xd1\x89\xb6\xe8\x1c\x54\xbc\x43\x2f\xb5\xe9\xb7\x23\x5d\xa3\x1a\x92\xda\x79\x18\x4e\xc5\xe7\xf6\x29\x37\xa1\x98\xd1\xfe\x15\x5b\x24\x9c\x51\xba\x12\x74\x52\xde\x2a\x6f\x7a\x1e\xe5\x7c\xec\xe8\xf7\x19\x0c\x8b\xe8\xd2\xf4\xaf\x0b\x5c\x50\xc5\xd0\xfe\x25\xdf\xe9\x49\x0b\x01\xe2\xc3\x3a\xb6\xc0\x56\x9d\xdd\xd0\xd9\x00\xeb\x5d\xf8\xab\xd2\x76\x41\x4c\xfb\xa9\xce\xb9\x34\x8e\x3e\xee\x2e\x70\xf9\x3b\xc0\xeb\xf1\x80\x87\xf7\x68\xf4\x44\xc0\x5f\xb6\x4f\xf7\x88\x11\x9c\x66\x4e\xcf\x02\xf2\x58\xed\x64\xef\x46\x94\x56\x99\xb8\xd7\x17\x0d\x29\x7c\xd6\x5b\x8f\xb1\xcd\x4a\xed\xd3\x76\xff\x93\xd4\xd4\x37\x43\x30\x8f\xce\x52\x37\x78\x65\x85\xae\x1b\x58\xeb\xdb\x17\x00\x1e\x5a\x4b\x75\xf5\xe8\xee\x9b\x71\xfa\xe7\x6c\x4c\xbf\xa6\x93\x6c\xc9\x77\x20\xd5\xd9\x63\x36\x65\x30\xd6\xf9\xc4\xc4\x3f\x43\x3a\xd0\x8d\x43\x1f\x86\xe6\xa1\x5e\x7d\x53\xc3\xc7\xa0\x5d\x5d\x47\x87\xc1\xb0\x9d\xf2\x3d\xc3\x54\x58\xa6\x6c\xcd\x70\xb6\x8b\x5e\x35\x72\x78\xc0\xe5\x8e\xc4\x6f\xf8\x35\x02\x56\x40\x1d\x39\x8e\x82\x67\xe2\x47\x1a\x31\xae\x09\x95\xa3\x18\x6c\x23\x3b\x69\xcc\x92\x54\x43\xaf\x1d\xff\x44\x5e\xe5\xfb\x79\xf4\xbe\x23\xf9\x5c\xea\xd8\x53\xf0\xda\xe5\x97\x13\x86\xe0\xe1\x79\xf1\x24\x15\x42\x99\x62\x4e\x3e\x81\xa4\x8c\xfa\x4d\xb1\x21\xb2\x01\xe4\xd4\x27\xc8\x62\x8f\xf9\xf4\x51\x27\x0d\x25\x73\x9a\xe2\x04\x6e\xa9\x98\x8e\x72\xaa\xaf\x17\x4d\x0b\x9c\xb5\x2b\xde\x4f\x17\x38\xb7\x94\xc0\xa7\xef\xc3\x9c\xf3\x74\x66\x8e\xc2\x6d\xd2\xd9\xb3\xc6\x48\x35\xaf\x7e\x16\x80\xf9\x1e\xa9\x9a\x9d\xc6\x2f\xd3\xae\x1a\x30\xda\x9e\x56\xf3\x8c\x52\x14\x6b\x4b\xde\x18\x4f\xb6\x77\xe6\x9d\x30\xe9\xe9\x88\xcd\xe8\x30\x0d\xe8\xba\x90\x18\x6a\x7a\xbd\xc7\x31\x46\xcf\x2c\xa7\xaf\x8e\x99\x6d\x46\x1f\xe0\x50\xaf\x99\x9b\x0d\x75\x78\x67\x59\x18\x8e\xe4\xe2\x72\xad\x36\x8c\x61\xd0\xe7\x6c\x73\xc7\xea\x60\xf5\x76\xcb\x13\x7e\xe0\x6a\x47\xfd\x89\x35\xf6\xb7\x9d\xbc\x26\xfc\x6d\xf1\x30\x9d\x89\x59\xcb\x7b\xf0\xc5\x49\x6d\x33\xa2\xb9\x49\xa3\x5b\xfd\x4a\xcb\x06\x99\x7d\xd9\x11\x6b\x55\x53\xb8\x48\x65\x7b\xa8\x45\x2b\x8b\x67\x07\x6a\x33\x4a\xb1\x07\xae\x51\xf4\xc5\x6a\x00\x5f\x74\x58\x46\x38\xd8\x5f\xea\xea\xa1\xbd\x73\xf8\xd4\xb3\xd1\x07\x00\x5a\xe8\xfd\x8a\x27\x81\x7f\xa8\x95\xae\x40\x67\x9d\x81\x3d\x2e\x6b\x60\x99\x83\x56\x90\x55\x08\xf8\xd0\x36\x87\x21\xd4\xa3\xa1\x7f\xed\x3c\x30\x94\x61\xbe\xd5\x23\xf7\xe1\x11\x2d\x73\x4f\x5b\xeb\xaa\xb3\x4d\x03\xf6\xc2\xea\xa8\xca\x51\x47\x66\xcd\x16\xf1\x7a\xc8\xae\xda\xbb\x39\x22\xa7\xf2\xfa\x1b\x69\x9a\xce\x39\x32\x52\xfc\x29\x68\x52\xf3\x30\x3b\x0e\xd6\xd8\xa6\x45\xff\xed\xf2\x46\x51\x42\x39\x82\x80\x2b\xdf\x90\xf2\x50\x07\xbb\x0e\xb8\x85\xbb\xfa\xab\x7e\x20\x0e\xb9\xe5\xf6\xc4\x43\xbe\x61\xbf\xf7\x56\x82\x06\x08\xc8\xbe\x06\x20\x95\xc4\x53\x57\x59\xff\xf6\xec\xee\xcf\xb6\xf0\x73\x7c\x2b\xe1\xb4\x8a\x9d\xfd\x24\x3d\xb5\x89\x2e\xe3\xd2\xd5\x92\x0b\x48\x78\xd9\xf1\x02\x07\xb4\x66\xf9\x8f\x4c\x95\x6b\x48\x15\x28\xc9\x12\xc3\xac\xe9\x8a\x79\xe0\x16\x5e\x6f\xc7\x1c\x70\x4f\x68\xac\xa0\x3a\xe0\x7c\x9b\x79\xde\x31\xf8\x3f\xad\xdf\x70\x52\xd2\x0e\x05\x11\xcd\xf5\x3c\xa0\x44\xc1\xf6\x7a\xdb\x75\x7c\x06\x93\x7c\x82\xba\x22\xed\xcf\xf9\xa5\xa9\x26\x6d\x31\xfe\x67\x7a\xb4\x2d\x9d\xe1\x21\xa2\xe2\xf6\xfb\x68\x94\xa8\xa6\x71\xc1\xad\x5b\xf4\xb8\xd2\x14\xf7\xb5\x10\x5e\xdc\x48\xb8\x5e\xf4\x48\xf8\x9e\x94\x26\x56\xf3\x41\x1e\xd7\x4b\xbf\xc5\x75\x78\xad\x2b\x4b\x66\x59\x78\x9b\x55\x5a\xd2\xfd\xc8\xb5\x35\x07\xfc\xde\xfa\x7a\xd4\x1f\x23\x7d\xa0\x1c\x97\xad\x72\x7b\x18\xa0\xd1\x5c\x88\x38\x41\xbd\xd2\xda\xeb\x24\xa2\x29\xe4\x39\xa0\xf1\xe0\xac\x76\x33\xbb\x5f\x8c\x72\xe5\x55\xab\x6e\x2c\x35\xfb\x1f\x95\x3f\xd1\x34\x5b\xbf\xb5\xcb\x73\x32\x1b\x51\x67\x41\x7e\x9f\x9d\x2f\x55\xfb\x49\x84\x6e\x22\x63\x7f\x6a\xce\xa4\xa0\x2a\x40\x9d\xaf\x95\xb4\x4c\x5d\x10\x29\x63\x9e\x05\x7e\x2a\x8e\x08\x73\x0d\x02\x96\x6a\x05\xbe\x0e\x3e\x5b\x56\xe4\x73\x94\xc1\xae\x9c\x26\xa0\x42\x37\xd7\xbc\x71\x9d\x63\x5e\xa8\x57\xba\x24\x84\x8b\x1a\x3f\x81\xff\x44\x1a\x35\xaf\xb7\x7f\xc6\x7a\xdf\xba\xd2\x26\x86\x0c\x49\xdd\xa7\x4e\xa7\x68\xa4\xe2\x95\x93\xd4\xf2\xd4\x8c\xa6\xec\xa0\xce\xd4\x73\x55\x3f\x19\x89\x7c\x50\x49\x50\xe8\xee\x34\x76\xee\x33\x66\xf6\x7f\xc4\x0c\x9b\x16\x5c\xe0\x0d\x86\xbf\x13\xf6\x46\x69\x45\xea\xe6\x4d\x85\x34\xb2\x02\x45\x5d\x01\xf8\x28\x2d\xb1\x96\x57\x5e\xb4\x5c\x12\x86\xdb\x1e\xf3\xa5\x7c\x11\xf5\x80\x9b\x5c\x55\x09\x1d\x8b\xdb\x55\xab\xeb\x18\x19\x7f\xb5\x3e\xdb\x2e\x21\x38\x85\xfb\x68\xb8\x37\xd4\x3b\xd6\xa3\xfb\x53\xf8\x44\x6c\xbf\xbc\x9f\xf5\x28\xee\x68\x03\x3d\x7a\x6d\x3c\xb0\xfc\x4b\xcc\x17\x9e\x7f\x51\x3e\xe7\x79\xe2\x26\xe1\x16\xee\xd5\xe4\x0d\xa9\x29\xb1\x6f\xf8\x6b\x63\x87\xe3\x21\x19\xc7\x22\x61\xbc\xcc\x2c\x4a\xf0\xef\x84\x89\x9c\x0a\x8a\x46\xd2\xbe\xfc\x07\x1e\x0e\xc9\x39\x45\x38\x77\xcd\x94\xe7\x25\x63\x88\x07\x7c\x2f\x69\x8b\xd3\xfd\xb4\xb9\x8a\x78\x07\xe3\xa8\x9a\xf0\xdf\x93\x49\xdc\x23\x11\xaa\x81\xb4\x78\xbb\x48\x6c\xd7\xa6\x84\xcb\x91\xdf\x5a\x6e\x26\xbd\x61\xbd\xac\xcd\x49\x49\x8c\x02\x49\xd7\xa7\x4e\xc4\xac\x28\x10\xf1\xcb\xb8\xdb\x05\x36\x69\x6e\x71\x0b\x49\xa9\xe9\x36\x09\xe7\x62\xfa\x32\x3c\x53\x36\x87\xa5\x67\xce\xa4\x01\x69\x49\x59\xab\x32\xf3\x7d\x9e\x65\x7b\x67\x4f\x11\x31\x42\x46\x5e\x2c\x86\x94\x23\x29\xdc\xe4\xf2\x29\x6f\xa3\x38\x19\x5c\x95\x8c\xa7\x35\xce\x55\xf2\x3b\x82\xbe\x8e\x2e\x64\x2c\xd2\x0d\xfa\x62\xb2\xb6\x31\xac\x94\x01\xc2\x2d\x21\x7a\x4d\xd8\x1c\x97\x50\x41\xf5\xc1\x5c\x32\xf3\x53\xc9\xd3\xbc\xed\x11\x7b\xf3\x4c\xf3\x1e\xb0\x68\xe9\x92\x7c\x65\x74\x15\x4f\x50\x10\xc2\x1d\x62\xdf\x10\x45\xc7\xff\x0d\x79\x57\xb8\x90\xa4\x4b\x35\x2a\xb6\x4f\x6d\xf1\x7e\x26\x5e\xce\x58\x8d\x17\x95\xb8\x65\xaf\x43\xa7\x97\x1a\xe5\xde\x83\x0a\x73\x2a\x7c\xbe\x2f\x8d\xe5\x4b\xfc\x48\x93\x3f\x45\x2f\x29\x92\xa1\xa3\xc5\x66\xfe\xa7\xba\x79\xe2\xb2\x80\x5b\xf2\xa2\x92\xbf\xd4\xf7\x0d\x29\xa5\xd3\xb4\xec\x8a\x4e\x49\x5d\xf0\x86\xe2\x65\xc9\x17\x46\x89\x50\x2d\xe5\x33\xcd\x52\x27\xcb\x4c\x23\x78\xb1\xc2\x72\x34\xfb\x6c\xa4\x51\x45\x14\x67\x27\x3d\xb2\x72\x28\xce\x97\x72\xab\x1a\x98\x70\xd9\x33\xa5\xa6\x2b\xa5\x10\x7b\xb8\xb6\x2e\xfd\x05\xa2\x58\x02\x20\x1d\x38\x5d\x52\x26\xf4\xe0\xcf\xbe\xa8\x88\xf4\x9c\x1e\x43\x55\xd9\x7b\xaf\xe8\xd7\xa8\xee\x25\x1b\x74\x76\xd6\x4c\xf8\x80\x5b\xad\x6b\xdb\x7d\xa3\xeb\x72\xeb\xa0\x7e\x8f\xca\xda\xeb\x5e\xf9\x37\x17\x86\xd7\x47\x04\x42\xb2\xfe\xa9\x5f\x0c\x76\x4d\x5a\x6e\x88\x0e\xa9\x8c\xe1\x35\x0a\xc3\x37\x85\xf1\x65\x0f\x59\xee\xb4\x47\xcd\x9d\xd1\x9d\xbe\x9c\x56\x97\x58\x10\x71\xb1\x2d\x2e\xa1\xc9\x75\xa1\x76\xc0\x1d\x75\x6e\xb0\x61\x1f\x36\x71\x81\x24\x5b\x85\x6b\x98\xe4\x35\x05\xe1\xa7\x86\xc6\x9b\xaf\x13\xb7\xf6\x3c\x6f\x19\x20\x1d\x6e\x7f\xdc\x9a\xeb\x61\xdc\x34\xd7\xb6\xd3\x33\xa2\xc6\xb1\x2d\xcf\xeb\xb4\x44\xd0\xf6\x9e\x3c\x9c\xff\x4c\x1e\xec\xb7\x2f\xa3\x4b\xf1\x4f\x40\x03\xef\x8a\xe2\x71\x90\x11\xbb\x48\xb9\x92\xb1\x14\x32\xd8\x11\x1b\xe6\x40\xd5\xec\xea\x8a\xfc\xee\x1d\xd4\x53\x1d\x9d\x87\x83\xb5\x86\xa2\xdf\x9e\x9f\x93\xd7\x62\xd6\x2c\x59\xb7\xe7\x61\x6e\x4d\x3f\x50\xaa\xdd\x8a\x47\xcb\x3b\x6e\xb8\x13\xfa\x89\x9d\xb7\xb1\x7b\xba\x2e\x76\x25\x61\xaf\xc8\x57\xab\x2c\x70\xf5\x8d\x47\x55\x2d\xf8\xcb\x95\xe3\xdd\x7b\x88\x06\x25\xa4\x6e\x86\x07\x38\xd7\xb3\xfb\xb2\x57\x75\xda\xa1\x9e\x72\x5f\x72\x5c\x40\xef\x40\x80\x75\xa4\x96\x7a\x33\xed\x76\xf0\xc5\xfe\x64\xc6\xa2\xdf\xf3\xc1\xe2\xb0\x6f\x24\x72\x97\x02\x79\xe0\x82\x41\x77\x15\xf2\xcd\xb2\xa0\x17\x81\xca\x9b\x7d\xde\x97\x87\x3e\x38\x7e\x57\x9d\x8c\xee\x1f\xd2\xed\xe7\xba\x62\x7b\xdd\xfb\x7f\xba\xbe\x52\xfe\x1e\x88\xc1\x88\x5b\x04\x03\x6f\xdc\xdc\xeb\x4e\x0d\x52\xdd\x1d\xcb\xcb\x06\x6f\x61\xdd\x8b\x0d\x86\x0e\xe0\x5d\xb3\x5f\x0f\x65\x11\xff\xa6\x74\x0d\x07\x7b\x89\xb8\x3b\x46\x24\xbe\x53\x61\xcb\x63\x36\x01\xc9\x81\xef\x26\x60\x41\x7f\xbc\x73\x07\x86\x5d\x76\x9d\x7f\x32\x84\x77\xb9\x74\x72\x66\xf8\x01\x3c\x7f\xfe\xde\xa8\x2f\xc2\x69\xca\x68\x4c\x07\xd1\x36\xd2\x3f\xf6\x00\xb9\xad\xdf\x62\x5c\x8c\x14\xa8\x32\xc7\x5f\xa1\xd6\x2a\xf0\x13\x1e\x28\x71\xd3\x9e\x89\x1e\x34\xb0\x86\x3e\xb9\x09\xfd\x4d\xca\x9c\xa4\x63\x2c\x44\x03\x93\xb5\xee\x36\x82\xe5\x29\x1d\xdc\x89\x24\xdf\xe9\xf5\xc4\x1f\xd1\xa7\x67\xe0\xde\xb5\xa1\x94\xb9\xad\x7e\xa7\xfd\x0b\xc6\x7f\x3b\x15\x5c\xf0\x99\xec\x77\xce\x3d\xb5\x30\x4d\x82\x46\x2c\x88\x67\x37\x41\xff\xcc\x54\xcd\xad\x82\xe9\x8f\x27\xcd\x75\xc3\x48\x43\x36\xf3\xbe\xb0\xac\xde\x67\xf3\x57\x61\xe7\x3b\x4d\x4f\xa4\xb8\xac\x6d\xf3\x39\x51\xe1\xd2\xd4\x68\x76\xe2\x39\x1c\x58\xc5\x5a\x00\xc1\x1f\x94\x96\x2c\xbc\x45\xae\x2d\x00\x2c\x3a\xa2\x3e\x65\xa6\x2c\xad\xc2\x74\x25\x66\x2e\xad\xc2\x55\xb3\xab\x97\xee\x79\x34\xd1\xd7\x5a\xee\xeb\xec\x6c\x48\xb4\xca\x53\xad\x2f\xff\x62\xdd\xdc\x9d\x5b\xd4\x64\x83\xe9\x25\x09\x73\x6c\xaa\xd4\x8e\xfc\x08\x9b\xd7\x03\x41\xf1\x64\x5b\x93\xa1\x44\xf6\x11\xdb\xb0\x91\x2b\x8c\x02\xdb\x23\xe3\x14\xff\x35\xb6\x7f\x26\xfa\x3c\xb2\x80\xd0\xa9\x55\xee\x08\x87\x85\x29\x05\x72\xbb\xe3\xb5\x69\x84\x53\x89\x53\xe8\xf4\x55\xd0\x38\xec\xdc\xf4\x59\xa0\x07\xa2\x6c\x46\xc3\xfa\x12\xfa\xd8\x8c\x9d\x85\xa1\xdd\x93\xb6\x9a\xa6\x3b\x0e\x38\x79\x48\xf5\x46\x47\xa2\x22\xa4\xa4\x0e\x5c\xaf\xd4\xcc\x23\x40\x0a\x3a\x6e\x65\xac\x73\x42\xa8\xa0\x09\x37\x9c\xce\xf5\x74\x46\x8f\x38\x13\xfa\x2e\x85\x2a\x9d\x67\xfb\x3f\x04\xfc\x0b\xf5\x1d\x2c\xf7\xd2\x81\x31\x86\xd7\x63\x5d\xe0\xa2\x11\x5d\x14\x12\x29\x1d\xf9\xe8\xfc\xc9\xf5\xe0\x68\x95\xe3\x43\xb7\xd1\xb1\x83\xf6\x11\x38\x83\xb1\x3a\x9b\x87\x84\x98\xf1\x23\x96\x4e\x60\x9d\xc6\x0b\x6d\xc1\xce\x76\x32\x9d\xba\x8d\x2e\xab\x65\x83\xd2\x54\x84\x41\xd3\x0b\xd1\x06\x64\x6a\xcb\x09\x41\x1b\x2a\xb6\xed\x55\x32\x1d\xad\xdf\xee\xcf\x45\xa2\xbf\x75\x8c\x87\x73\x5d\x6f\x74\x7d\xa7\x81\x30\x6f\xba\x7f\x91\x85\x6e\x77\x7b\x6b\xf0\x87\xb1\xdf\xd5\x00\x57\x3d\xfc\x97\xfe\xbd\xb0\x3f\xc4\x2f\x03\x3b\xc0\x7f\x3d\xcd\x06\x01\x0e\xd5\xde\x1e\x83\xf7\xec\xfe\xf1\x11\x0c\xc9\xad\x82\x5d\x52\xab\x59\x4a\x20\x6a\x7b\x75\x68\x63\x2d\xc6\xb8\xfa\x62\xc5\x0f\xec\xb1\x1a\x9f\x62\x36\xae\xa2\xce\x4f\x78\x19\x3f\xde\x90\xc9\x77\x25\xb4\xca\x06\xe3\x41\x44\x41\xf3\x17\xd6\x17\x52\x55\x9b\x16\xbd\xcf\xe3\xb1\xc2\x9f\x62\xe2\x65\xab\x94\x79\xac\xf0\xbe\xdc\x59\xe7\x76\xd5\xe7\xbc\x0a\x83\x28\xf3\x9b\xeb\xee\x76\xc2\xf8\xcf\xf6\x3c\x05\x9d\xa3\xb6\xf7\x69\x00\x7d\x68\x23\x6a\x2d\x6b\x1a\xc6\x49\x72\x41\xb5\x16\xb7\x45\x72\xb6\x65\x8c\xd8\x29\xb9\x54\xf3\xcd\xf3\x97\x74\x83\x84\x43\x86\x94\x1d\xcb\x7f\xe6\xa3\x2c\x7f\x92\xe9\xe9\x3b\x5f\xb5\x3d\xf1\xad\x5f\x4b\x4d\x78\xcc\x1c\x65\xb8\x6e\x9e\xf9\xc4\xff\x41\xc3\x3b\x6a\x37\xb5\xa6\x69\x89\xfc\x0f\x6d\x65\x2b\x14\xef\x1e\x34\x25\x4f\x73\x35\xa4\x27\xb7\x93\x5d\x36\x84\xd8\x2b\xdf\x83\x2f\x32\x37\x77\x26\xd9\x7f\x0a\xdf\xda\xf5\xd3\xa6\x9c\x64\x2b\x3a\xd7\xa7\xeb\xed\x22\x92\xb6\x5b\xfa\x69\x8b\x18\x8d\x75\x01\xa1\xa2\xd2\xca\x6d\xb4\x38\xd1\xfd\x62\x41\xd0\xa5\xa2\x42\xe1\x32\x7d\xab\x38\x86\xaf\xc9\x00\x96\x76\xc7\x4d\x84\x10\xcb\xd6\xb1\x04\xa1\x39\x15\xd9\xf4\xbf\xcc\x5b\xd5\xce\x94\xf6\xf0\xb8\x3a\x98\xc7\x4c\xa4\x56\xe3\x06\xf7\x6c\x56\x6b\x13\x0d\x39\x10\x65\xdb\xe2\xeb\xbc\x1c\x7d\xba\xcd\xc9\x51\x8f\x53\xa2\x30\xb1\x8b\xa5\x74\x67\x6f\x1a\xfc\x1c\xd8\x9c\xad\xd1\xf5\x95\xee\x93\x75\xbb\xb5\x34\x74\x2a\xeb\x5e\xdd\xae\x70\x69\xb6\xb3\xb4\x38\xb2\x4a\x68\x26\xd2\x62\x9d\xc9\x19\x12\x08\xd9\x3f\xf3\x7e\x25\xbd\x8f\xd6\x15\x05\x71\x62\x63\xd0\x45\x9f\xc2\x57\x72\x12\x4a\x52\x68\xed\xdc\x9f\xd2\x76\x9f\x27\x71\x19\x15\x83\xc4\x23\xf1\xef\xab\x95\x98\xf6\x84\xec\x3a\x0b\x78\x6b\x12\xa8\xc1\x17\x32\x9d\x7c\x4e\xa6\xb4\x6f\x0e\xb9\x9f\xd2\x3f\x76\x27\xfc\x56\xca\x74\xdf\x77\x76\x6a\xca\xa2\x32\x2b\xe6\x6c\xca\xd3\xa6\x6d\xb1\xcc\xd4\x94\xaa\xf6\xf8\x39\xbe\x51\x09\x9c\x77\x39\x2d\x3c\xf7\x76\xc2\xc8\x7f\xc4\x4c\xda\x2c\xe8\xe7\xbd\x4c\xf6\x14\xc6\x46\xc5\xa7\x34\xe4\x05\x87\x82\x52\xdf\x8a\x76\x52\x37\xa7\x79\x17\x9b\x7a\x03\xd3\x3b\x4a\xad\x71\xb2\x8c\x57\x65\x91\x68\xb5\x00\x5b\x69\x09\x5b\xca\xba\x51\x7d\xdf\xb1\x87\xc3\xe1\xf2\xa7\xbf\xc7\x1f\xe6\x5e\x1e\xb6\x4c\xac\x8e\xdd\xdc\x3d\x9a\x92\x13\x9b\x27\x67\xa4\xc1\xe3\xb6\x37\xac\xcd\xd8\x11\x6f\x5e\xde\x91\xa9\xe4\x31\x8b\x88\x02\x7a\xa2\x9e\x10\x90\x75\x34\xf9\x60\xaa\x38\x1b\xc4\xdf\x1c\xfb\x46\x98\x9b\xb1\x26\xb2\x23\xe7\xa6\xe0\x07\x5d\x9d\x67\x20\x7c\x4c\xb9\x97\xdf\x94\xf7\xd9\xd3\x56\xa4\x5d\xb8\xcb\xfd\x51\xe1\x61\xb1\x08\x29\x2f\xda\x23\xf9\xea\x0c\x49\xfd\x15\x1e\xb1\xb0\x36\x23\x3d\x02\x3e\xe1\x98\xd5\x11\x71\xa7\xff\x71\x4e\x44\x64\x5a\x67\x63\x5e\x2f\xcb\xb2\xc5\xb7\x20\x83\x6d\x54\xab\x29\xfa\x1c\x15\x24\x99\x2e\xda\x1b\xa3\x57\x10\x59\xf4\x84\x0b\x11\x58\x15\xd7\xc6\xdd\x49\x52\x88\x05\x09\xe7\x38\x9b\x4a\x46\x92\x2f\x87\xef\x91\x80\xf8\x7d\x41\x74\x69\x4d\xc6\x6b\xdf\x5b\x65\x7f\xb2\x8f\x90\xb0\x15\xbb\x72\x4b\xdc\x74\x2b\x0f\x89\x0c\xe0\xc6\x79\x17\x69\xfa\x27\x2f\x14\xfa\x06\xb1\x66\xdc\xc5\x9b\x83\xbb\x46\x98\xa5\xb9\xf4\xc9\x5e\xb9\x94\xcc\x18\x69\xaf\x2f\xfb\x1b\xd2\x29\xcb\xae\xd8\xcb\x5c\x59\x95\x5f\x69\x1a\xc6\x28\xc9\xa9\x7c\x18\x21\xca\xfd\x50\xa5\x60\xcd\xa4\xa7\x54\x4b\xa2\xcf\xf2\xda\x6b\x32\xb8\x63\x51\x76\xb5\xfd\xf1\xa7\x42\xc5\xf5\x66\x89\xdd\xd4\xd7\x0d\x97\x52\x8f\x90\x33\x64\xe1\xe9\xd5\x84\xb5\x4d\x98\x2c\x16\x9a\x52\xc6\xf1\x79\x7f\x6e\x7d\x25\xd0\x6f\xfd\x89\x2b\xd5\x03\x94\x5d\x13\x83\xb5\xff\xfa\x5b\x0f\x1a\xd5\x5f\x09\x40\xaa\x12\x1a\xff\xa1\x7a\xb6\xb5\xc9\xc0\x81\xe9\xf5\x27\x64\x7f\x83\x36\x57\xec\x6c\x3a\x11\xdc\x52\x6c\xdf\x6c\x15\xa2\x23\x0c\x6b\x3e\xc7\x6c\x4f\xed\x6c\x19\x8f\xb8\x14\x3b\xd6\xb6\x8e\xfd\x2e\xb2\x52\xee\xc1\x59\xcf\x58\xa5\x58\x8e\xb3\xf1\xf7\x55\x32\x12\x4e\x78\x36\x74\xbc\x4e\x91\xba\xcb\x1b\xb8\x84\x67\x17\x8f\xc8\x9e\x78\xec\x5a\x86\xb6\xc0\x3d\x07\x66\xb6\xb6\xfe\xf4\xfa\x38\x72\x5f\x5e\x4d\xde\xd3\x37\xa9\xb8\xec\x73\xb8\x83\xd7\x7e\xd7\xf7\x68\xcb\x66\xe5\xac\x1f\xa1\x36\xb9\x23\x89\xd2\x27\x5d\xe8\xb4\x0e\x88\x12\x09\x3b\x1f\x05\xce\x09\x6a\xba\xa2\x82\xcf\x27\xb5\xa9\x48\xa1\x07\x62\x26\xba\x15\xe1\x49\x61\x8f\x7b\x61\x2c\x45\x10\x4a\x8d\x8d\xd9\xef\x1b\xde\xff\x30\xf6\x3b\xe1\x9b\x62\x27\xf6\xe8\x25\x07\x25\x0b\x77\xec\xd4\xba\xce\x72\xdc\xb7\x39\xa5\x2a\x8a\xb0\x65\xfc\x44\xf7\x35\x22\x66\xf0\x70\xef\x51\x52\x52\x37\xbb\xf7\xa5\x47\xb2\x82\xdf\x37\xe7\x99\x28\x4b\x51\xd3\xbd\x86\xaa\x8f\xa8\xff\x90\xd7\x97\xaa\xfa\xb3\x7c\x3e\xe7\x9b\x0f\xec\xa5\x98\x66\x20\x06\x0f\x51\x63\x79\x27\x87\x8e\x07\x5d\x63\x7f\x1c\x16\x86\xd0\x43\x57\x8c\x42\xc2\x46\xa8\xc7\xc6\x71\xac\x2b\x5e\xec\x1e\x1e\xc6\xe6\xd2\xe9\xbe\x71\xb7\x5d\xa7\x8f\xf7\x57\xbb\xcd\x9c\xc8\x1d\x24\xbb\x73\xa6\x74\x86\x22\xb0\x7a\x23\x6b\x87\xf3\xb0\x8f\xfa\xee\x8c\x84\xe3\x1a\x3b\xe3\x47\x0f\xe1\x99\xad\xb7\x47\x1f\x10\x7c\x1b\x0c\xc6\xd8\x44\x41\xc5\xcb\xf1\x95\x24\xb5\xb8\x79\x9c\xec\xf9\x38\xe7\xc1\xf8\x75\x32\x94\xff\x6d\x72\x8d\x5f\x51\x5c\xfe\x54\x0e\x75\x43\x24\x61\x66\x73\x90\x2a\xf8\xfe\xdc\xda\x50\x88\xaf\xd6\xb0\x1a\xf9\xfd\xd2\xe8\xa8\x0a\xf5\xf6\xcc\x3f\xe3\x54\xb4\x6a\x51\x6f\x72\x9b\x2b\x77\x86\x38\xa5\x83\x59\x31\x56\x3e\xf5\x1b\x93\x3b\xf0\xef\xf4\x5b\xcc\x97\x9e\xfd\x33\x85\x6e\x69\xed\x77\x67\xad\xdc\xb7\x36\x4b\x66\xcf\xb9\x4f\xd5\x3e\x9d\x23\x63\xcb\xca\x26\xe6\xee\xe1\x86\x8a\xcc\xe7\x8f\x11\xbe\x67\x17\xce\x8f\x79\x34\xa4\x34\x9f\xf8\xd7\xfb\x05\xd7\x64\xd1\xc4\xef\x7a\x58\xf7\xf2\x5a\xea\x4b\xea\xe9\x69\xb6\x4b\xee\xe5\x2d\xb3\xb1\x70\xf1\xd9\x0d\xf3\x36\x88\x7d\x4b\x4f\x4e\x3c\x41\xf0\xe6\x9e\x2c\x92\x11\x5d\x93\x77\x97\x76\x23\x7e\x8d\x04\x2e\xdd\x44\xe2\xd5\x57\x97\x45\xc8\x21\xd5\x3f\x27\xf7\xa2\xec\xe5\xbf\x4e\x76\xa0\xce\xc8\x2e\x9c\xd2\x47\x8b\x6a\x56\x9d\xca\x77\x4d\x90\x5c\x39\xbd\x1e\x73\x55\x74\xf8\x74\x92\xfb\x65\xc1\x89\x33\x2b\xf1\x3d\x49\xf9\x67\x2e\x78\x18\x46\xbf\x3d\xfb\x97\x7c\x31\x04\xe6\xe0\xa0\x5e\xd3\x72\xd5\x51\x43\xfd\xba\xd6\xd0\x71\x74\xc0\x57\xf2\x01\x7c\x68\xf0\x5b\xc1\x08\xd8\x66\x78\x40\x10\x0f\x76\x1e\xad\x4c\x76\x05\x5b\x8f\x67\x73\x8f\x83\x35\x27\xe7\xc2\x4f\x83\xf7\x4e\x3f\x0f\xea\x74\xfc\x3b\x8b\xf0\x5d\xe5\x98\x3e\x47\xc7\x5f\x87\xb4\xcd\x4d\xb8\xe6\x3a\xaf\x9b\xe7\xba\x78\xb8\x00\xe7\x8f\x40\x1c\x91\x87\xe7\x91\x0e\x6a\xf4\xed\xf9\x60\xbb\xf5\x6e\x85\xf3\xc1\x56\x76\xce\x80\xae\xad\xf2\x17\xb0\x96\x2e\x7a\x7d\x3f\x7c\xab\xaa\xa0\x1c\x83\xb0\xea\x7e\x55\xf8\x08\x31\xde\xdb\x97\x5d\x86\x3c\xa8\xae\x4d\xa5\x20\xe9\x03\x27\xe3\xbc\x90\x8a\xa1\xab\xac\xed\x28\xad\x91\x57\xf4\x32\x54\xd2\x98\x92\x62\x88\x7a\x3c\xfe\x94\x54\xe0\x4a\x9a\x68\x77\x2b\x76\xf3\x9a\xdc\x80\x20\x62\x91\x93\x4e\x4e\x04\xfc\xf8\xa4\x0c\x34\x48\xfc\x35\xb5\x1b\xb8\xdb\x13\x32\xc5\xb7\xf6\x46\x68\xc8\xad\x3b\xe8\x68\x43\xb9\xb3\x6c\x04\xc3\x93\x7f\xad\xda\xe7\x9e\xa3\xb8\x2a\x6e\xc1\xd6\x28\xdb\x73\x0f\xe3\x62\x3b\x0b\xd2\x2a\x70\x2f\xba\x0f\xf0\xd2\xf0\xe0\xde\x94\xa8\x54\xc2\x66\x35\x3c\xe4\x24\x61\x79\x60\x75\x40\x10\xb1\x66\x90\xee\xb5\x9b\xd4\x39\x94\x8b\xcd\xf0\x4c\x1c\x26\xa0\x8a\xbd\xf7\x0d\x7f\x81\xfa\xfa\x68\x8f\x34\x80\x77\xfa\x59\x8c\xfa\xd8\x73\xfc\x73\xc6\x34\x6c\xd0\x98\x0d\xb2\x00\xd5\x53\x6c\x9d\x0c\xd3\xf2\x9c\xb0\x2c\x8b\xa8\xf9\xe6\x51\x26\xbb\x2b\x29\xf2\x0a\x6d\x36\x29\x38\xe4\x9d\xd0\xba\x22\xb3\x8d\xec\x26\x37\x48\xe2\x93\x9f\xb5\x97\x71\xf8\x3e\xb3\x1d\xa7\xc2\xee\xf8\xaa\xbb\xae\xd2\x74\xfd\xd4\xdd\xcb\xe4\x45\x4a\x45\x2f\x11\xdf\x1a\x40\xef\xcb\x77\xad\x0e\xdc\xaf\x2e\x70\x69\xa5\xcd\xf4\xfb\x43\xbc\x82\xab\x07\xd0\x0e\xfd\x0c\xd9\xa0\xa1\x6d\x1a\x21\xa3\x66\x5d\x9f\x8b\x67\x4a\x75\x83\xe2\x92\xcf\x8e\x6a\x8f\x86\x93\x94\xa3\xd5\x5d\x15\xa4\x80\xe7\x35\xb0\xa2\xbb\xd4\x17\x75\x7b\x84\xee\x81\x93\x0d\x7b\x52\xef\xd2\xa4\x32\xaf\xb8\x27\x41\xc9\xcd\xf9\xac\x89\xe0\xb6\x56\x09\xfd\x3e\xfd\x9a\xfc\x0c\xa5\x3e\x64\x83\x52\xc3\x63\x22\x34\xa0\xe3\x91\x7b\x55\x98\x66\x17\x1b\x59\x15\xde\xa3\x1a\x70\xce\x8c\xe4\xf4\xac\x76\xdc\xcb\x76\xeb\x85\xd8\xd5\xfb\xd8\x49\x75\x07\xe1\xfe\x40\x89\xa2\xf3\x53\xe0\x05\x89\x6f\x8b\x25\xfd\xa8\x04\x5b\x53\x17\xba\x52\xa2\x94\xec\x65\x2e\x49\xdf\xe5\x97\x84\x7d\x2d\xef\xcd\x5c\x1d\xfe\xb3\x72\x3e\xf1\xdf\x88\xab\xd5\x6f\x63\xee\x45\x5e\xad\xd3\x0b\x03\xb3\xce\x36\x00\x03\x8f\x45\xd1\x9b\x56\x90\xcb\xa2\x67\x5b\xc2\x09\xab\x39\xe0\xb6\x58\x8c\x0e\x77\x56\x61\x0e\xf7\x88\x43\xb4\xcf\x40\xba\x79\xda\x1d\x43\xf6\x75\xb4\x36\xd1\xfc\xe8\x1c\xe3\xab\xc8\xb1\x37\x36\x6c\xb0\xe0\xb1\xe2\x2e\x0b\x57\x50\xd7\x48\x8f\x7a\x26\xda\x55\x71\x8b\xb3\x5f\xb4\x54\xec\xce\x35\x2d\xe2\x0b\xdb\x62\x91\x62\x3f\xfe\x96\x38\x5e\x69\x40\xdc\xb7\xf8\x42\x69\x1e\xeb\x15\xaf\xb9\xfc\x0d\xa3\x24\x61\xb6\x2a\xd6\xdf\x2f\xc9\xaa\x96\xe0\xd9\x9c\xdc\x57\xff\x06\xcb\x4a\x85\xcb\xf6\xa3\x54\xfc\x53\x4d\x7f\x61\x9b\xd2\x39\xad\x30\xd0\xcb\x08\x6a\xd6\xe4\x94\x73\x54\x7c\x16\x6f\xd0\x9d\x8b\xc9\x32\xed\x1a\x8e\x6f\xc8\x3a\xd8\x6a\x95\x28\xc8\xf2\xab\x1d\x4e\x5e\xcc\xfa\x23\x25\xa5\xba\x0b\xd7\x17\xbc\xe6\xeb\xe7\x08\x04\xfc\x34\x68\x9e\x3a\x79\x53\x7a\x8c\x68\x27\xa7\x27\x43\x59\x94\x1f\x1e\x97\xf9\x54\xfc\x22\x08\x97\xf5\x8f\x64\xc1\xb7\x39\x3b\xa6\xbc\x81\xb4\x5f\x38\x54\x15\xef\x26\xcb\xd5\xac\xdd\x83\x18\xcf\x9b\xad\x1f\x83\xfc\x88\x3b\x95\x12\x37\xf7\x3e\x71\x29\x85\x3c\x86\x4c\x65\xa6\x40\xfb\xae\xa5\xd7\xa6\x04\x29\x69\x02\x41\x4a\xb5\xec\x72\x76\x45\x2a\xb6\x2a\x32\x27\x92\xbf\xb7\x44\x33\xd7\x22\x8d\x99\x3b\x9d\x7b\xeb\x3f\x62\xe6\x9b\x0a\xaa\x12\xf6\x14\x04\x09\xa1\x51\xa7\x45\x3d\xb9\x6f\x42\xaf\x14\xfe\x2e\xf0\xa0\x5e\x2c\x96\x17\x59\x93\x75\x4b\xe2\xc4\xcf\xf1\x79\xa5\xdb\xa5\x04\x57\x89\x04\x56\xf1\x1a\x66\x96\x71\x84\x8b\x5b\x3a\x99\xf5\x81\xdb\x3f\x7d\x20\xd7\x96\x7b\x61\x68\xb4\x80\xc0\xfd\xd2\xed\x51\x78\x2e\x36\xa5\xed\xa3\x58\x33\x6e\x5f\x7d\x49\x49\x6e\x3c\xa8\x9c\x54\x7a\x9a\x97\x51\xa4\x2d\x89\x4b\x04\x67\x3f\x95\x9a\x24\x9b\xa6\xb6\x94\x61\x52\xff\xc6\x01\xcb\x5b\xd2\x4f\xb2\x0c\x2b\x35\x04\x52\x46\x58\x15\x49\x18\xec\xdf\x55\x7d\x23\x8f\xed\x65\x5e\xcb\x17\xe1\xb1\x37\xeb\x26\x8a\x47\x91\x17\x0b\x35\xc3\x2d\xce\x94\x8a\x63\xc3\xbf\xcc\xb7\x48\x48\x11\x79\xe3\xa4\xb2\xf7\x91\xdb\xfb\x0f\x54\xea\x45\xf6\x77\xdc\xab\xfa\xcd\x8a\x6b\x56\xd6\xf0\xd8\x59\x35\x19\xb5\x83\x51\xa7\x25\x1e\x75\x1d\x31\x55\x05\x06\xf5\xfe\xdc\x62\xc1\xb6\x06\xdb\xf8\x75\x49\x63\x8d\xde\x09\xa7\x38\x0c\x59\x7b\x72\x6b\x78\x45\xb3\x33\x3f\x2a\xe8\x6d\x4b\x67\x46\xad\x9f\x57\xeb\x9d\xac\xbb\xa4\xd3\x72\xfb\x5c\x9c\xdb\xce\xca\x7d\xb4\x35\x17\xae\xd4\xd8\x04\x69\x2c\xfd\xac\x37\x08\xba\x37\x3d\xd4\x28\x0c\xfe\x35\x3c\xdc\xd4\x4a\xff\xdb\x23\x6b\x59\x19\xa2\xa9\x18\x69\xa5\x86\x6e\x68\x3c\xdf\xe6\xca\x8c\xad\x7c\x2b\xb7\x08\xbb\x2b\xfe\x26\x7f\x14\xa9\x91\x5b\xa4\x50\xb2\xb5\xd3\x91\xed\x27\x63\x36\xf0\xa6\x95\xf7\xb8\xb7\xa2\x44\x9d\x96\xf1\x57\x43\x3f\x74\x9d\x4c\xec\x0c\xc4\x77\x7b\xa4\x1a\x92\xf3\x7a\xba\xd2\x97\xf1\xac\xa6\x43\x3e\xec\x7f\x47\x5b\x8f\xfa\xe9\x9d\x06\xc8\xfb\x29\x7a\x73\x3f\xda\xef\xfa\xaf\x19\xa7\x74\x34\xf8\xff\xe8\x7f\xd2\x65\x18\xf0\xb0\xcb\x57\x95\x4c\xbd\xd9\xda\xdd\xdd\x42\xdb\x5a\xbf\xa2\xc7\x33\xa8\xa6\x9c\xd4\xf3\x87\x8e\x2e\x62\xf7\x96\x84\x54\x65\x7f\xe8\x73\x0b\xd3\x4e\x4d\x53\x27\x46\x9a\xc6\xbe\x1f\x58\x15\x65\x12\xf9\x61\x30\x91\x03\x62\xc0\x86\x7e\xc5\x45\xfa\x07\x8e\xd4\x24\xa2\x3c\x4e\x2b\xbf\x93\x3e\x5e\xf9\xda\xf5\xc3\xb3\xe4\x8c\xb2\xc7\xd7\x2b\x75\x81\xd8\x97\xee\x8d\x9e\xb2\x57\x3f\x23\x7b\x0d\x53\x06\xdc\x7d\x10\xbd\x9c\xc1\x60\x5f\x3b\xa5\xef\x50\xac\x9f\x49\xb3\xfe\x30\x96\xe2\x55\xb3\x38\xfc\xc7\xbf\x43\xea\x32\xd2\x45\x0d\x16\x1d\x1b\x45\xd2\x3a\x04\x9c\xb1\xfd\xf4\xa2\xa4\x99\xf1\xa0\x50\x05\xc7\x7c\x72\x75\xf8\xbd\x70\xf3\xe9\x35\xac\x8f\x41\x81\x33\xd3\x31\x3f\x7c\x5c\xd4\x78\x1c\xe3\x6a\xe6\xe0\x16\x3c\xe9\xec\xbf\xc3\xc6\x04\xf2\xd2\xbe\x51\x0b\x22\x71\x26\x7f\xac\x9a\xe4\x36\x66\x38\x7e\xd9\x03\xd4\x7f\x66\xe2\x93\xe7\x3e\x15\x69\xf2\x96\xd7\x1a\x79\xc5\xd4\x59\xaf\x37\x8d\x67\xa6\x13\xc9\x9b\xab\x4a\x66\x74\x7c\xe0\xa5\xf6\x33\x6d\x7e\x96\x79\xf7\x66\x11\xfe\x3e\x19\x07\xe7\x4a\x03\x19\xbc\x17\xf3\x37\x83\x95\x51\xe0\x85\x80\x50\xd7\x90\x3b\x4b\x17\x22\xbe\xfb\x2d\x8c\xaf\x76\xb3\xbe\x32\x38\xe9\xe6\xae\x73\x2e\x6d\x5a\xcb\xfd\xd2\x32\x67\xe6\x15\xd6\x7f\xae\x7f\x8e\x8d\xbd\x3c\xf1\x61\x3e\x01\xe7\x3b\xbc\xf5\x84\x00\xf7\xb8\xef\xe0\x42\x08\xbe\xb1\xe3\xde\xa2\x1d\x21\xab\x95\xb9\xb4\x82\x18\x5f\x3f\xb6\x54\x4e\x52\x54\xd0\x96\x8d\x3d\x9e\x15\xff\x5e\x6e\xf1\xd6\xcd\xc9\x3f\x09\xf5\x09\xe3\xff\x38\x15\x4f\xe9\x8f\x13\x9e\x7e\x13\x88\x8c\x3c\x74\xb6\x8c\xde\x12\xa4\x33\x2f\x45\x29\xae\x0a\x16\xe6\xd0\x93\xe7\x1f\x2f\xe5\xb8\x9a\x9c\xca\x39\xa9\xe7\x1a\xb5\xe0\x75\x6a\xda\x55\x38\xe3\x78\xba\xdf\xf5\xee\x98\xf2\x4c\x11\xc6\x6d\xe0\xdd\x59\x7f\xcc\x5c\x8f\xfe\xb9\xed\x6e\x91\xed\xcf\xce\x2d\xb9\x1f\x6b\x2e\x3b\x1f\x85\xdd\x58\x7b\xea\xfc\x15\x1c\xb8\xcc\xed\x82\x0f\xfe\x44\x61\xcd\x85\xcf\xc4\x4b\xd9\xa2\x8b\xf5\x9e\xd4\x94\xe7\x97\xe4\xe4\x79\x2e\xfc\xdf\x74\xca\x75\x66\x39\xcc\x7f\x64\x97\x12\xed\x72\x73\xe4\x9a\x2c\x13\xce\x19\xb3\xaf\xda\x05\x6f\x19\xbf\x22\x1e\x86\x77\x4c\x46\xe6\x62\xe1\xb9\x53\x7f\xd2\xae\xc1\xfd\x66\x54\xbc\x17\x70\x8d\x39\x9b\x68\x2d\x97\xb7\x27\xd6\x33\x0d\xe0\xda\x0b\x39\x81\x01\x2e\x05\x8b\x01\xde\x95\x2e\xdc\xc5\x37\xb8\xc3\x2e\xa2\xa5\xef\xa8\xd7\xa8\xe3\x8b\x9f\x60\x58\xd7\xbe\xc5\x19\x30\xcb\x3d\x7a\xb1\xcf\xbe\x05\xf7\x7e\x51\x6d\xd3\x88\x1a\x56\x43\x3b\xaf\x63\x34\xd4\xb2\xe6\x9b\x6e\xa9\xfd\xb9\x35\xee\xee\xb8\x81\x07\xa5\x0f\xdc\x2f\x0c\x71\xf2\x59\x58\xe3\x91\x35\x19\xcf\xb1\xe4\xd1\x5f\x89\x17\xb0\x81\xe3\x6f\x63\xce\x60\x07\x26\x1f\x87\x75\xe2\x56\x4e\xab\x68\x17\x71\xac\x99\x22\x9f\xd3\xb8\x5b\xb3\x36\x84\xd3\x04\xd0\xac\x0f\xc6\x83\x38\x38\x4b\x85\xaf\xf2\x20\xcc\xb2\x20\x22\xaf\xec\xd9\x49\x87\x93\xe4\xe1\xb9\xd5\xb6\x17\xdc\x47\xba\x5a\xba\x87\xf0\x45\x5d\xe3\x6d\xe9\xc4\xf7\xaa\x0d\x75\x0d\x1e\xf1\xdd\x3a\x65\xdb\x3c\x2b\x7a\xe2\x44\x39\x5e\x90\xbe\x3d\x59\xeb\xbc\x7a\xfa\xb5\x93\xef\x79\x3d\x18\x24\x71\xff\x78\xc3\x86\xc9\x11\xaf\xbc\x2f\x8c\x3a\x05\xbf\x24\x87\x8c\x0d\xfa\x3d\xf7\x59\x35\xde\x4c\x6a\xf7\x35\x99\x38\xee\x76\xd7\x4f\x3e\xc1\x45\xfc\xf5\x5f\x39\xd1\xec\xbc\x97\xba\x66\x52\xcf\x71\x3d\xcd\x64\x32\xde\xee\x0e\xf1\xbd\xfc\xa4\x5a\xc7\x6b\x9f\xbc\xbc\x5d\xea\xb3\x46\xce\x6b\x14\xfa\xa1\x15\xc7\x2b\xfe\xf8\x53\x15\xbf\x8b\x13\x02\xac\x94\x33\xc2\xe7\x01\x9f\x3a\x5b\xf8\x51\xd4\xe8\xee\x63\xf1\x49\xd4\xdb\xbd\x1c\x76\x61\x60\x9b\xda\x25\x84\x42\xf3\x19\x58\x15\xc0\x0a\x3a\x32\x68\xe9\x15\x1d\xbc\x79\xc8\x04\xfb\x8a\x9e\x36\x74\x12\xbd\x9f\x71\x69\x18\x04\xb3\x0d\xa5\x0e\xcf\x80\x89\x61\xc4\x91\x70\xfb\x95\xe4\x16\xd9\xf2\xa0\x82\x62\x2f\x43\x76\x5e\xa3\xfa\xcb\x56\x35\x8f\x04\x21\x65\xfa\x35\xbb\xe9\xcf\x64\xaa\xd2\xb1\x10\x72\xf3\xe6\x7c\x9f\x50\x44\xcb\x42\xc6\x2b\xe6\xaa\xb6\xfb\x89\xaf\x98\x45\xed\x66\x9c\xf5\x61\xb4\x0e\xf7\x30\x65\x38\xac\x0b\x4f\xf3\x8a\xb0\xeb\x36\xf4\xa1\x45\x6a\xf6\x0c\x10\x22\x59\x59\xbd\x67\x31\x61\xec\x0f\x7d\xf2\xff\x8b\xba\xb7\x0a\x6a\x03\xfc\xfb\x3d\xa9\xbb\x52\xc1\x5d\x4b\xdd\x1d\xda\x52\xa3\x40\x71\x77\x77\x8b\x40\x12\x82\x85\x40\x84\x40\x08\x96\x20\x31\x08\x41\x03\x24\x58\x82\x27\x10\xdc\xdd\x1d\xda\x22\xa5\xa5\x42\x7d\xe7\x7f\xde\x39\x67\xf7\x9d\x9d\xb3\x7b\xb3\x37\xfb\x3c\xf3\x7b\xe6\xf7\x9d\xf9\xce\x3c\x97\x9f\xcb\xcf\x73\x46\xc0\x2b\x8e\xb5\xe6\x97\xa0\xab\xe5\xe1\x0f\x1e\x38\x48\x66\x1c\xe1\x65\x3a\x0f\xa6\xdb\x94\x4e\xb8\x2b\x91\xbe\x33\x77\xbc\x2c\x48\x85\x94\x07\x3e\xfd\xe9\xf7\x52\x5b\xfc\x26\x32\x24\xe2\xdf\xfa\x6f\x66\x2e\x23\x87\x02\x96\xc9\xad\x70\x42\x60\x0e\x75\x1c\xd4\x15\x64\x4b\xff\xe0\xdb\x0b\xd0\xcc\x59\x71\x55\x00\xbe\x60\x1e\xb4\x55\x04\x85\xe6\xab\x9a\x16\x82\xcb\x0a\xbe\xe8\xe7\x85\x68\x14\x01\x5f\xad\x43\xe8\xc5\xc2\x67\xca\x30\xdb\x92\xa0\x47\xaf\xdc\xab\x92\xfe\xd4\x13\xbd\x9b\x93\xf4\x2a\x6e\xf9\xc7\x10\xf8\x45\x36\x41\x4b\x04\xa7\x6c\x01\x28\x8e\x90\x96\x71\x25\x38\x2f\xe9\x25\xa1\x04\x72\x32\x39\x07\xf3\x00\xaa\x96\xaa\x13\xd9\x0f\x53\x25\x6a\x43\xba\x60\xdf\xd3\x1d\x03\x7f\x85\x0a\x32\x63\x3c\x73\xe0\x6e\x64\xb8\xc3\x56\x98\x90\x26\x66\xe9\x15\xa1\x91\xed\x67\x74\x35\x32\x99\xe1\xac\x7b\x1b\xb1\x87\xa9\xf1\x22\x26\x3a\x2d\x6f\x47\x4b\x3d\x80\x14\xe7\xce\xef\x03\xce\x60\x0b\xb9\xcd\x21\xb5\x58\xa5\xb2\x33\xa1\xc7\x31\xcb\x79\xd0\x70\x75\x4c\x23\x65\x34\x52\x0c\x8b\x4e\xf3\x8e\x6a\x8e\x03\x27\x88\x20\xe2\xe3\x45\x63\xd0\xd1\x5e\x09\x0b\x61\x62\xc8\x88\xc4\x2d\xf0\xf9\x98\xe0\x64\x31\xbf\x2b\xb1\xe1\xa9\x56\x6e\xd2\x28\x04\x91\x62\xa7\x82\x9e\xc8\xd0\x33\xeb\xc5\x5e\xca\xea\x79\x5b\x14\x17\x43\x7d\xf2\xba\x37\xfe\x28\x3d\xfb\x99\x11\x94\x1c\x0d\x6b\x05\x87\xb5\x22\x7e\xd7\xa3\xa3\xb4\x10\xa5\x95\x87\x90\x91\x08\x68\x31\x08\x65\x86\xc0\xe7\x0c\x61\x72\x10\x3f\x32\x4d\xe3\x6c\xa3\xeb\x93\x7e\xe1\x90\xc8\x69\x2c\x27\xfe\x71\xac\x11\x02\x94\x70\x1b\x1d\x02\xbb\x8e\xbf\x8d\xed\x0d\xfa\x97\x68\x1e\x2f\xe1\xb5\x4d\x48\xc4\xbf\x71\x5a\x4e\xda\x26\x6c\x5b\x07\xa6\x78\xa6\x14\x98\x68\xa7\xa6\x10\x03\xf4\xe2\xd2\xc6\x33\xd0\x2f\x60\xd1\x3f\x42\xef\x75\x29\xa2\xe6\x43\xf7\x08\x7c\xe3\x5c\x61\xbd\xbc\xed\x84\x0a\x18\x99\xed\x4d\x30\x82\x0d\xe5\x0f\x25\xc7\x87\x3e\xa5\xbd\x4d\x3d\x09\x57\x21\xfe\x4c\x73\x0f\x3b\x83\x2f\x20\x1e\x0a\x77\x43\xe1\x88\xb4\xff\x10\x93\xf4\x1b\x01\x0c\x31\xcf\xb8\x1e\xb3\x3f\x40\x3b\x33\x02\x95\xeb\x01\xc8\xaa\xc1\x9e\x77\xc0\x50\x1c\x70\xef\x2d\x65\x69\x72\x78\x94\x61\x2f\xfd\x46\x52\xab\x4e\x3e\x3e\x1f\x70\xad\x0f\x9a\x2c\x02\xb0\x6e\x5d\x4c\x53\x04\x04\x37\xc4\x92\x36\x01\x49\x95\x9f\x33\x43\x01\x1d\x2c\x67\xb2\x3b\x10\x90\xab\x4e\x15\x05\xbd\xc8\xfa\x49\xbb\x0b\x0e\x49\x99\xa4\x5f\x0b\xee\xc0\x35\xd2\x07\x21\x3e\xc8\xda\x6c\x22\xec\x39\x3c\x2f\x67\x18\xfe\x05\x14\x9a\x7b\x3f\x82\xe6\x9b\xc0\xcc\x46\xd8\xb9\x2e\xe6\xad\xc5\x88\xd9\xdd\x28\x50\x42\x3f\x31\x2b\x2d\x64\xc4\xf9\xe9\x4f\x65\xf4\x7b\xfe\x1d\xaa\x20\x6f\x7a\x41\xbb\x8e\xd3\x9a\xbc\x8f\x0a\x04\x39\x77\xbd\xe9\x35\x81\xb9\xae\x3e\x17\x39\xe2\x79\x32\x3e\xd3\x05\xff\xf2\xd3\x7d\x73\xb2\xf7\x15\x34\xf8\xb5\xa6\xef\x14\x96\x07\xc8\x11\x7a\x8a\x62\x02\x37\x31\xed\xc5\xcf\x01\xcd\x51\xe3\xac\xa7\xe0\x6b\xd0\xba\x12\xff\x90\x0f\x41\xb4\xd2\x09\x58\x99\xd7\x0c\x3b\x39\xcc\xc9\xf9\x5a\xf9\xc1\xc8\x08\x6b\x9f\x8a\x7b\xd1\x3b\xc6\xcf\x18\x34\xc7\xab\x63\x99\x79\x9f\x9d\xda\x7b\xfa\x0a\xd3\x9c\xdd\x85\xf3\x2c\x51\xe7\xa1\x06\x95\x92\x51\x97\xaa\x2a\xc7\x32\xa8\x2b\xbc\x24\x83\xdd\xe4\x16\xc5\x7c\xcf\xf9\xe7\x0e\xa1\xde\x29\xe7\x7a\x6c\x12\xdd\x2b\x42\xbc\xac\xf0\xb1\x95\x77\x7c\xbc\x51\x2f\xaa\x8e\xf8\xb9\x46\x5c\xac\x76\x08\xd4\x0c\xde\xe6\x26\x00\xbe\xfb\xaf\xd4\x9c\x04\xbf\xf7\x50\xaa\xed\x86\xd4\x38\x58\xd5\x67\xc2\xdd\xcd\xc7\x58\x5f\xad\x03\xc6\xc7\xd8\x17\x6d\xe8\x7d\x31\xe5\x70\x5b\xf1\xf6\x7b\x95\x65\xb6\x30\xfe\xfe\x6a\x2b\x3b\x45\xde\x1c\xb7\xcb\x6e\x84\x53\x52\x23\x6b\x4f\x2d\xf2\xac\x35\x73\x28\x60\x9c\xa8\xd3\x73\xfc\x98\x95\x57\x37\xeb\x0c\x4b\x95\xaf\x0f\x71\x95\x89\xb7\x6d\x90\x73\x37\x42\x7e\x68\x3c\xe6\x59\x00\x4f\x6d\x4a\xf6\x49\x01\x69\x09\x2c\xfd\xd1\xbe\x52\xcd\xcd\x41\xb5\x2e\x7f\x84\x6e\x60\x5f\xeb\xb5\xaa\x28\x33\xd9\x09\x3e\x0f\x60\xae\xd0\xff\xa9\x36\xcb\x7c\xb8\xe3\x67\x7d\xba\x05\xa0\xf9\x79\xa3\xae\xe5\x89\xba\xe2\xa6\x74\x4b\x4e\x95\x12\x7f\xc2\x4a\xbf\x14\x25\x58\xb2\xbe\x92\x9f\xd7\xbc\x66\x23\x45\x67\xb5\x94\xd9\xbe\xca\x70\x16\x9a\xda\x65\x27\xbd\x13\xfe\x72\x70\xc7\xce\xb5\x12\x9c\xa8\x08\x40\x5b\x96\xab\x0b\x74\xba\x43\xdc\x03\x1c\xa4\xd9\xc9\xf3\x9e\xf3\xe4\x74\xcf\x06\x9c\xb1\xbf\xd6\x30\x65\x78\x62\x7c\x85\x4f\x31\xfc\x33\xb0\xdd\x3c\x68\xd4\xd2\xd5\x24\xcc\x37\x36\x16\xb6\xb4\xd9\x18\xd7\x36\x0a\xda\x11\x26\xd6\x3c\x7a\x47\xa2\xc9\x9f\x72\xff\x4e\x94\x29\x9b\x75\xb2\xcb\xc1\x8c\xc9\x74\xe8\xbe\x6d\x4e\xa7\x66\x74\x0f\x58\x6c\x92\x2e\xf7\xf8\x5a\xe9\x27\x16\xf4\x1e\xb4\x79\x86\x8e\xee\x2d\xb3\x33\x8e\xbc\xd1\xb7\xe5\x08\x0a\x39\x3c\xe0\xe9\xc2\xf6\x17\x1b\x7a\xe6\x51\xe8\x6a\xdc\x4e\xd3\xfd\x30\x29\xd1\xd9\xa2\x37\x39\x54\xd9\x5d\xa2\x9f\xd0\x33\xd4\xab\xa4\xdf\xd6\xae\xdd\x57\xa4\x3f\x20\x68\xe9\x1f\x7b\x2b\x59\x2f\x35\xd0\xf5\x36\xa7\xfa\xe6\x20\xc7\xe0\x11\xfb\xde\x50\xb4\xe1\x99\xc2\xb5\x61\x4d\xa3\xbd\x0c\xd7\xe1\xef\x46\xbf\xc9\xa5\x23\x10\x13\xa3\xb4\xe7\xa3\x87\x4c\xd9\x09\x43\xa3\x05\xe6\xdc\xd8\xfc\x31\x3b\xcb\x7f\xe1\xf7\xc7\x71\xb6\xb6\x20\xd0\xe4\x1b\x87\x1f\xde\xba\x6f\x66\xeb\x93\x4a\xae\xeb\xf6\x37\x24\xe5\x96\xeb\x59\x36\x76\x92\x7d\xf4\xa4\xf9\xd0\x94\x7e\xdd\xa6\x66\x09\x9c\xa6\x6e\x47\x8b\x51\x74\x97\x2e\x59\x98\x17\xca\xd0\x75\x6f\x5d\x07\x7e\xd4\x7d\xd0\xae\xe2\xab\xab\x7b\xa1\x23\xd0\xb5\xf5\xcd\xcf\xce\x08\xbb\x17\x6f\xd2\xbb\x0e\x99\xf9\xe8\xb8\x76\xfd\xd2\x4f\xd4\xf9\xd5\x7d\xf1\x95\xa5\x1e\xa4\xeb\xd1\x53\x7d\xc3\x33\x9d\x8f\x1f\x15\x19\xbb\x74\xbe\xbd\x17\x69\x30\x55\xfd\xbd\xac\xca\x88\xc0\x85\xe5\x6d\x1a\x7f\xe3\x5d\xa3\xfa\x9b\xc4\xd5\x24\xa7\xf5\x99\x2c\xd6\x89\x25\x5c\x34\xbd\x54\x4f\x8c\x21\x98\x1a\x36\x5e\x0d\x93\x36\xbd\xd5\xb4\x0e\xd6\x33\xbd\x2c\x80\xfa\xa5\x9a\x7a\x37\x6f\xba\x5f\x32\xc5\x0b\x5f\xd9\x6f\x99\x6e\x08\xc9\x16\xda\x66\xda\xc2\xdf\x06\xb9\xe6\xfe\xc2\x2e\x9d\x50\x0b\x8a\x10\xad\x6d\x61\x25\x2f\x0c\x7a\xbc\x63\xf3\x50\x98\x75\xbf\xd1\x34\x91\x93\x5d\xae\x6f\xbe\xc8\xe1\x15\xca\x58\x2e\x95\x9f\xa4\x87\x58\x1b\x94\x6f\x93\x66\x6c\x02\x2a\x4f\x26\xde\xb7\x3d\x59\x95\x8c\x2a\xb0\x4d\xe0\x2a\x45\x1c\xb7\x4d\xaf\xf1\x0a\xb9\x6e\x0b\xa8\x2b\x0e\x78\x66\x3b\xdf\x40\xf5\x28\xb0\xd3\x6b\xba\xe9\x08\xb3\x1b\x6e\x6a\xb6\xac\xb6\x77\xe4\x4b\x1a\x36\x39\x04\xf0\x25\xdf\xe4\x38\xa2\x9b\x7e\x3d\xef\x77\xa2\x36\x0d\x6b\x1d\x75\x29\x6f\xfa\xfd\x20\xd2\x2a\x8a\xf5\xa6\xca\xc5\xd6\xa8\xf8\x7b\x31\xdd\x9e\xcb\x3a\x90\xb3\xe9\xf8\x8e\x65\x9d\xa9\xe7\x5c\x56\x72\x3d\x29\xc7\x65\xa4\x34\x0a\x7b\xd6\x35\x81\x7d\x24\x8a\xee\xba\x53\x7e\x1e\x5a\xea\xa6\x50\x69\x15\xb4\xed\x86\xae\x76\xf0\xbe\xeb\xbe\x9f\xf7\xd6\x99\xe7\x9e\x50\x53\x64\x23\xed\x71\xab\xd6\xc9\x44\xd9\xf3\x4c\x6d\xa5\x9e\xb1\x97\x6a\x6d\xd1\xcb\x28\x6f\xc5\xda\xcc\x27\x38\x9f\xe5\xda\xd5\x87\x05\x0e\x01\x79\x5a\x35\x4a\xce\xe9\xcc\x98\xb2\x83\x6e\x86\x4c\xc3\xbc\x0b\x1e\x3f\x99\xea\x14\x1f\x6f\x49\xe6\x7c\xea\x3b\x9f\x95\xbc\x91\x78\x57\xdf\xa6\x82\xa8\x18\x11\x3f\xdf\x22\x2b\x78\x93\x1f\x97\x55\x09\x9a\xf5\x3f\x53\xfa\xd1\x6f\xb7\xff\x1c\xbb\xc9\xed\x59\x00\xb2\x3c\xda\xae\x25\xf0\x65\x45\xbe\xb9\x54\xd0\xe1\x4a\xca\x5b\x3a\x40\xab\x4a\xf4\xf5\x0a\x10\x50\x15\xa6\x2d\x07\x96\xae\x96\x7f\x7c\xd2\x6d\x94\xf6\xbe\xbe\xc4\xeb\x32\x4d\xbd\x7c\xcd\xd7\x81\x9a\x52\x58\x15\xa0\x47\xbd\x43\xef\x0c\x62\x51\x13\xd2\x9f\x03\x9b\x68\x9a\x89\x6b\xe0\xf3\xf4\x12\x74\x4e\xb0\x62\x8e\x6e\xa4\x63\x70\x7d\xae\x29\x24\x23\x44\x22\x2f\x26\x70\x2d\xa4\xb8\x20\xd1\x73\x0c\xa2\x5b\x84\x73\x9c\x87\x6a\xb1\xcc\xac\x5c\x61\xb7\x4b\xc6\x8d\x96\x43\x83\xcb\x0e\xe9\x96\xc3\x27\xd8\x87\x5f\x1e\x0d\xb7\xe7\xec\xd1\xaa\xf1\xfd\x99\xf1\x98\x8f\x0a\xfc\x99\x7e\x83\x7b\x00\xd4\x42\x32\x2e\xf9\x15\xd2\x46\xfc\xce\xbc\x0d\x83\x13\xc7\xc8\x91\x70\x67\x52\x46\xaa\x64\xd8\xdf\x74\x0a\xae\x31\xe2\x58\xe6\x7d\x24\x38\xe2\x33\xf9\x30\xdc\x31\x32\x8c\x7a\x0f\x54\x1d\xf9\x8b\xae\xeb\xfb\x2d\x0a\x97\x73\xd9\xb5\x08\x61\x98\x7b\xcd\x76\x3d\x1a\x97\xf7\xc8\xac\x1f\xc9\xca\xff\xf3\xb6\x25\x56\xbc\x30\xeb\xf5\x77\x14\xb9\xf8\xea\xb3\x06\x70\x7d\x52\x81\xb0\x04\xba\x41\x48\xac\x7b\x10\x16\x99\xb8\x55\x1e\x1c\xc9\x4c\x8c\x2e\x6c\x88\x0e\x4c\x34\xa7\xff\x8b\x81\x26\xae\xa5\xa3\x50\x52\x84\x4e\xc2\x1d\xb4\x7a\xf2\x23\xf4\x3a\x66\x6f\xca\x7c\x64\x01\xa6\x33\x6d\x05\xd2\x82\x75\x4e\x3f\x11\x74\x3a\x4e\x29\x53\xd4\xeb\x40\xdc\x7c\xd6\x88\x23\x3f\x5e\x94\x7a\xdd\xca\x37\xc1\x84\x1e\x68\x9c\x82\x4f\xcd\x41\xea\x69\x12\xa4\x73\x4b\x5f\x14\x44\xe8\x61\xd7\x3b\xc5\xa3\xf5\xb1\xbb\x9b\xd6\x62\x79\x18\x10\xf7\x2e\xe6\x17\xfa\x77\x29\x02\x97\x8d\x39\xc6\x9c\xc1\x1f\xc4\xbc\xa5\xbc\x4a\x0c\xc7\x6a\xa4\xfe\x20\xf0\xe3\x94\xe3\xcb\x92\x00\xb8\x86\x18\x50\xf2\xd5\x84\xd8\xb0\x47\x29\xc7\x12\x33\xc0\xa6\x29\xa3\x49\xf5\x7e\x69\xa9\xcb\x29\xab\x6e\xb5\x69\x1f\xd3\x7e\xdb\x6d\x92\xcc\xd2\x11\xe6\xfd\xe9\x85\x99\x73\x06\xac\xcc\x33\x14\xf4\xeb\x3c\x34\x37\xda\xa8\x97\x88\x23\x22\xaa\x85\x2d\x89\x8f\x10\x57\xea\xef\x25\x43\xa3\xc6\x2a\xdc\xd3\x9e\x45\x35\x15\x15\x93\x3c\x11\xd2\x39\x97\x32\x4e\x21\xea\x32\xfa\x33\x5f\x47\x27\x25\x25\x64\xa9\x23\x6b\xb0\xc0\xac\xae\xd8\x0b\x88\x20\x32\x1f\xfd\x00\xe6\x4b\x19\xc1\xc6\x02\x82\xa9\xef\x70\x93\xde\x78\xfa\x2e\xfc\x05\xe7\xcc\xec\x97\x84\x7c\x1b\xad\x1c\x76\x8a\x8e\xa9\x4c\xae\x38\xf1\x8c\x1e\x25\xf9\x45\xe8\x9b\xc1\x39\xe2\x49\xd8\x54\xe7\xc9\x0c\x30\x2c\x98\x5f\x4e\x8e\x82\x5d\xe5\xed\xa7\xbd\x80\xed\x29\x53\xc9\x96\x84\x61\xf2\xe6\x72\x6a\x43\x65\xa9\xf9\x0c\x01\x5c\x85\x18\x9e\x5b\x1a\x76\x09\x6f\xcc\x34\x0b\x07\xa2\x9c\xf2\xf6\xfd\x87\x98\xf9\x2f\x11\x6e\x21\x31\x05\xae\xc8\xed\x80\xac\x42\x1e\x2a\xc4\xe3\x5d\xd1\x5f\x4c\xab\xa3\x06\xeb\x09\xae\xc2\x32\xbf\x84\x87\x1f\x31\x2c\xa0\x7c\x0d\xfa\x3b\xfa\x3b\xfb\x34\xe0\x4e\xef\x69\xc6\x1c\xc0\x4a\xd8\x95\x87\x03\x04\xd6\xc3\x0a\x86\x01\x09\x15\x5b\x45\xfd\x80\xfe\x62\x22\xeb\x19\x30\x84\x91\x56\x02\x05\x19\x66\xe1\x4a\x9f\x83\x19\x29\xc0\xb2\xbd\x21\xc7\x70\x7e\x65\xcd\x10\x02\x12\xcf\x66\xc0\x2c\xe1\x4c\xce\x28\x7c\x07\x44\xaf\xb8\x12\x81\xf7\x15\x54\x0a\x10\x0f\xdd\xc4\xab\x1f\x22\x57\xec\x6c\xb9\x59\x68\x0d\xb3\xbb\xf9\xf3\x5e\x8c\xc9\xa1\xe2\xab\xde\xee\x03\x26\x25\xd3\xde\x0d\x1d\x1a\xec\x57\xde\x93\xfc\x2b\xe5\x0f\x7c\x54\x78\x0a\x15\xdf\x7c\xc2\xd8\xe7\xaa\x0c\x7d\x2f\x16\x3c\xaa\x46\xf8\x6e\xd1\x83\xb8\xde\xfe\xe7\xd3\xd1\xbc\xdb\x01\xae\x84\x04\xde\xd7\xa0\xab\x98\xa2\x9a\x72\xc0\xaf\xa8\xd1\xda\x66\xb0\x01\x74\xbe\xee\x57\xc8\xbb\xa0\xc5\x86\x18\x18\xc5\x7b\x4f\x93\x69\x98\x8f\xb3\xbc\x40\x22\xb2\xdc\xaa\x9f\x43\x73\xb6\x9a\x3e\x52\x19\xef\x22\x33\xe4\xc3\xdd\xe5\x12\xd4\x45\xaa\xb9\xea\x42\x6d\x39\x57\x27\xe9\xf2\xb1\x8e\x5c\x9f\xe8\x8a\xaa\x54\x6d\xd8\x72\x53\x65\x95\x37\xed\x77\x57\x61\xbe\xe0\x1f\xf1\x90\xa1\xb4\xf3\x8b\x3c\x71\x44\x39\x81\x99\xd7\x07\xbc\x7b\xb3\xa2\xcf\x02\xea\x51\xcb\x5e\xbf\xa6\x88\x5b\xc2\xb0\xc0\xf8\x90\x7d\xad\x4d\x40\x4d\xff\x6f\xed\x52\xc1\x81\xee\xed\x1d\x53\xd0\xaf\x76\xdc\xda\x66\xdb\x98\xe9\xad\x06\x23\xdb\xf5\xe1\xb9\xa6\x14\xbb\x73\x3d\x49\x82\x24\xbb\xb7\xad\x9c\x16\x7f\x3b\x48\xe3\xb8\xb0\xd1\x6e\x87\xbb\xd5\xba\x6d\x1f\xc1\xfe\xd2\x7e\xc0\xc1\xb2\x70\xba\xfd\x97\x23\x26\x87\xdd\xd1\xe2\x34\x9e\x65\xdf\x69\xe5\xe2\x9a\xd2\xd3\xb9\xe3\x76\x20\xfe\x68\x57\x99\xc7\x09\xe4\x54\x77\xb9\x97\x0e\x3c\xab\xd7\xcb\xf7\x09\xe8\x54\xff\x95\x00\x07\x9f\xd0\x81\x7c\x60\x94\xd3\xd1\x96\x5a\xf3\xda\x99\xa3\x6d\x32\x16\x6f\x47\xaf\x76\xbc\xb2\x58\xed\x4b\xef\xfc\x65\x79\xad\xe3\x7a\x37\xd6\xd2\x5e\xd0\xdf\x33\x6a\x59\x52\xe7\xd1\x3b\x64\xf5\xa8\x72\xae\xaf\xcf\xaa\xab\x54\xa7\xbf\xc8\xba\x33\xdf\x73\x20\xd2\xa6\x8f\x1e\x38\x78\xc7\xee\x64\xc6\xf9\xc1\x55\xfb\xc0\xa4\xc4\xa1\x04\x47\x7d\x6c\xce\xf0\x03\x67\x38\xc2\x77\xc4\xdc\x4d\x03\x2a\x18\xfd\xe4\xa9\x19\x38\x35\xbe\xee\xb3\xe4\xf1\xb6\x17\x6c\xd8\x3b\xa3\xd5\x4f\x30\x4a\x19\xf3\x1a\x64\x19\xef\x1f\xa8\x1f\xd6\x36\x76\xe9\x7a\x37\x42\x37\x2e\x69\xdd\x3d\xca\x32\xd1\x6a\xdc\x19\x63\x99\x8c\xf2\xfa\xc7\xbd\x4c\x13\xcb\x61\x13\xe2\x66\x66\xc5\x7f\x26\x86\xcd\x35\x98\xa6\x93\x31\x16\xfb\xa9\xc4\xa9\x2b\x96\x4f\x48\x7a\x53\x2b\x56\x51\x89\xdf\xa7\x03\x6d\x68\xe8\xca\x19\x13\xbb\xbf\x91\x8f\x66\x5f\x3a\x9d\x0e\x9e\x9c\x1b\x75\x75\xf2\xd3\x30\x7e\x29\x68\xe5\x14\x99\x3c\x6d\xee\x2a\xd4\x37\xc1\x08\xb5\xb2\x95\x4d\x00\xad\x82\xf4\x52\x93\x33\xed\x0f\x08\x87\x8c\x97\x3a\x22\xd1\xf1\xc6\xac\x4e\x6e\xa4\xb8\x31\xa6\x6b\x08\xe2\x6d\xec\xd8\xdd\x1d\x38\x6a\x2c\xdf\xb3\xe1\x95\x67\xf4\xab\x77\xc9\x99\x69\xd4\xd5\xe7\x6d\xc3\x32\x92\xe8\x9b\x36\x25\x18\x15\xf6\xd5\xe8\x57\x99\x3c\xee\x1d\x7a\x65\x6a\x52\xdd\xeb\xf3\xa4\xd3\x6c\xa7\xe7\xef\x43\xbe\x45\x56\xbd\x5d\xa5\x94\x55\x58\x3d\xa7\xd8\xc4\xda\xb9\xa1\x99\xb1\xcf\x7a\xa6\xe9\x40\x66\xb2\x8d\x08\xdf\x3b\x69\xd8\x46\x5a\xd0\x86\xbd\x63\x73\xbb\x45\x22\xaa\xc8\x46\x46\x98\x0b\x15\x58\xef\xb4\x29\x03\x64\x6c\xf6\xb5\x87\x7b\xbf\xb3\x91\xee\x68\x75\x3d\x66\x73\xb9\xb3\xc5\xee\x8a\x8d\x4b\x27\xdf\xac\xdc\x86\xd1\x59\xf1\x36\xd8\x36\xbb\x53\xea\x35\xda\x8e\xd1\x81\x7d\x46\x70\x10\xed\xd0\x7a\x7c\xc1\xd6\x98\x7b\xae\x7a\xcc\xbe\x9c\x7b\xbc\x24\xc6\x51\x89\x5b\xcf\x14\x73\x0a\xe2\x21\xc9\x74\x67\xa3\x9a\xbc\x94\x69\xe7\xed\xda\xaf\x38\x35\x17\xdd\xfa\xd0\x68\xa8\x8b\x43\xa3\x79\xa8\xae\x8b\x16\xff\x3e\xb0\xde\x45\x4f\xb0\xe0\xeb\xed\x92\xdc\x62\xe5\x96\xe0\x52\x23\xec\xb4\x5f\x72\x3d\x2e\xec\xb7\xb8\xee\x6a\x2d\xdc\x36\x88\x74\xd3\x14\x06\xe9\x50\xdc\x55\x5b\xbe\x69\x17\x7b\x18\xb6\xa4\x3c\x9e\x77\x92\x2c\x3f\x52\xab\xe1\x22\xe0\x30\xd8\x0a\x6e\x33\x1c\x41\xbe\x9d\xc7\x38\xe7\x1f\x75\xc1\xcb\xa6\x7c\x9c\x78\xd7\xbb\xa8\x62\x24\x21\xde\xe7\x76\x95\x4d\xec\x59\x9f\x74\xee\x9e\x30\x8e\x4f\x76\xcd\xb3\xe0\x53\x3e\x49\x75\x11\xfe\x70\x9f\xd5\x86\x60\x0f\x5b\xdf\xeb\x4d\xe2\x8e\x44\x5f\x5a\x53\xbe\x95\xa8\xdf\xf9\xa6\x5f\x46\xd7\xfd\x3a\x9b\x68\x6f\x66\xfc\xe3\x9a\xa4\x9e\xcf\x05\x98\x36\xe6\x68\x8e\xbb\xcd\x97\x9c\x6f\x14\x78\x3d\x61\x9d\xaf\x80\xfb\xfc\x28\x4e\x2a\xd2\xf0\x77\x2f\x86\x66\xd3\x03\x43\x8b\x3f\x64\x1c\x02\x3c\x61\xb5\x12\xcc\x80\xb7\x4a\x35\xd0\x9f\x80\x53\x65\x39\x91\x15\x20\x39\x4e\x21\x64\x07\x74\xbb\x62\x28\xc8\x17\x14\x5f\xd5\xe1\x7d\x00\xb4\xc2\xad\x72\x5e\x04\xeb\xd6\xc8\xda\xd0\xc1\x73\x35\xdd\x26\x3b\xc1\x94\x5a\x75\xfd\xd3\x21\x75\xb5\x0f\x5e\x69\x43\xcf\xd4\x5a\x3d\x21\xfb\x82\xf3\x86\x05\x71\x01\xeb\xcc\x2a\xae\x36\xf0\x69\xae\xb0\x84\x07\x1e\xcf\x8d\x67\xee\x86\x5c\xcb\x45\x93\xad\x60\x7b\x98\x6f\x53\x66\x43\x23\xf2\x2c\x70\x21\x70\xcb\xfc\x77\x48\x1d\xf8\x87\xc2\x52\xb8\x71\xd8\xde\xe2\x4d\x10\x37\x4c\xa2\x54\xc1\x4f\x2c\x8c\x51\xb6\xed\x96\x1d\x7e\x9c\x23\xb4\xf7\x08\x5f\x2f\x9f\xb0\xb8\x12\xc1\xaa\xe8\x31\x98\x89\xfc\x58\x49\xd0\xd9\x46\x38\x56\x39\x69\x03\x80\xa5\x74\x45\xe1\xbb\x90\x3a\x6a\x47\x6d\x3e\xec\x37\x75\x37\x27\x31\x4c\x40\x49\x28\x28\x88\xbc\x4b\x31\xa0\x8d\x22\x8e\x51\xde\x93\x02\xa3\xcb\xa9\xec\xc4\x6b\xc8\x7e\xfa\x55\xb4\x68\x4c\x45\x76\x4b\xc4\x97\x58\x49\xc6\x04\xc4\x25\x56\x3f\x6f\x5f\xe0\x87\xd8\xb2\xfc\x1d\x2f\x15\xd4\xb9\xc2\x09\x27\x20\xea\x7d\x31\xde\xfa\x0e\x7a\x8a\xf5\xc3\xe4\x20\x76\x4f\xe9\x2b\xbd\xc0\x38\x74\x19\xf9\xe5\x6d\xb8\x5e\x7a\x55\x47\x57\x24\x8f\x74\xbb\xb1\x2f\xba\x83\x98\x56\xf5\x2f\xb6\x9c\x78\xaa\xe4\x06\xe6\x62\xda\xdf\xdc\xf0\x38\x43\xe2\xdd\xac\x35\x1c\x8f\x24\x99\x92\x19\x3f\x99\xfe\x02\x67\x9a\x90\x9c\xf1\x03\xa9\x8c\x57\xcb\x9a\x84\x5f\xc2\x43\xa8\xc7\x40\x0c\xfc\x22\xfd\x84\x9f\x5c\x22\x31\xbb\xd8\x4d\x95\x60\xc2\x00\xd8\xa5\x26\x45\x31\x3d\xcc\x6b\x93\x73\xf2\x65\x0d\xba\x53\x25\x0b\x76\x74\x2e\x21\x87\x92\xec\x7b\xb5\xd1\xcb\x04\xa9\x96\x48\x9c\x6d\xa2\x5a\x6d\x14\xde\x1e\x8f\xe7\x10\x93\xf6\xe2\xb1\x05\x9b\x29\xba\xf8\x7e\xba\x5b\xea\x70\x22\x3a\xfd\x1c\xf1\x00\xc1\x2d\x71\x80\x38\x9a\xb4\x80\x2e\x27\x21\x52\x90\x91\x05\xe9\x32\x69\x71\x90\xaf\xe9\x11\x24\x6e\x10\x24\xe3\x6a\x46\xa9\x17\x3b\xf3\x78\x96\xb9\x53\x76\xd6\x23\x4a\x80\xf5\x53\x32\x89\x46\x37\xb1\xa5\x8a\x67\x4f\xe8\x5d\x4a\xd8\x8d\x7d\x3f\xa8\x99\xa4\x8c\xf9\xd0\x71\x3c\x75\x00\x73\xbe\x49\x97\xb4\x81\xce\xad\x8e\xca\x1c\x42\xbf\x2e\xa9\x21\xf7\xa0\x73\x98\xaf\xa8\xb1\x98\xb3\xe4\x39\x5a\x18\x66\x3b\x95\x42\x37\xc6\x7e\x8d\xf7\xa6\x2f\xe0\x22\x63\xfc\xb3\xc3\x12\xee\x85\x01\x72\x2c\x13\x8d\xc1\xc5\x8c\x83\x49\x01\xfe\x12\xb9\x07\x53\xd2\xdc\x5d\x98\xbb\xd2\x08\xf6\xf9\x79\x0e\xe9\xe7\x2d\x40\xf9\x1d\x99\x71\x06\x75\x24\x66\xf4\xa3\x51\xab\x2c\x3b\x04\xb7\x47\x8e\x9a\x8e\x90\x6b\xa9\xcf\x4e\x8e\xca\xab\xd3\xcc\x7d\x16\x65\x5e\xee\x97\x67\x10\xe5\x59\xb8\x91\xcf\x8f\x9a\xce\xa6\x15\x0c\x22\xc8\x19\x5e\x85\xe4\x68\x72\xd2\xd3\x22\x03\x64\x2f\x56\xa7\x68\x23\xf6\x02\x22\xb0\xb8\x05\x7d\x1d\x96\xc4\xaa\xc6\x46\x01\x6a\x4b\xda\x71\xd5\xde\xbf\xcb\xf6\x26\xf4\xb8\x3c\x64\x6b\x12\x5e\xda\x34\x72\x4a\x52\x9e\x9b\xb0\x72\xe2\x42\x35\x26\x83\x99\xd9\xa1\x92\x03\xa0\x02\x32\xac\xbd\x43\xa4\x18\x02\xf3\x6f\x62\x94\xbc\x87\x5d\xe3\x4a\xb3\x8f\x43\x7f\x95\xa6\x72\x9e\xc1\xe0\x79\x41\xe5\x96\xa1\xfb\xa9\x66\xe5\x7f\xe0\xb7\x88\x77\x2b\xb0\x61\xf6\xf8\xb3\x95\x46\xe1\x38\x94\x76\xd5\xb9\xff\x10\xb3\xfa\x1e\x42\x2f\x24\x9b\xfb\x1c\xd9\x18\xd0\xcf\xeb\x43\x3d\xf4\x94\xaa\x75\xc5\x24\x38\x5a\xd6\x6d\xe1\xc0\x96\x77\x58\x43\x80\xf9\xd9\xeb\x65\x0b\x80\x2f\x23\xea\xe5\x24\xc0\xfb\xee\xca\xaa\x13\x80\xfa\x16\x4f\xae\x16\x80\x52\xa7\xc2\xfb\x03\xe0\x94\x6f\xd5\xfa\x02\x0f\x14\xbd\xab\x83\x00\xcb\x18\xc7\xeb\x2d\x41\x49\x59\x97\xeb\xbf\x80\x27\x53\x1e\x37\x24\x86\x3c\xc0\x19\x37\x5a\x40\x2a\x90\xd8\xa6\xc7\x30\x57\x78\x15\xdf\x0f\x3e\x0b\x12\x08\x9a\x22\x1c\x7c\x67\x5a\xac\x10\x7a\x6e\x27\x5a\x77\xc5\xd8\xda\x52\xab\x61\x3e\x97\xe7\x23\x6a\x6c\x7d\x6c\xc7\x18\x75\xab\x3e\x01\x7d\x90\x46\x25\x1f\xc7\xb6\x08\xfe\x03\x1f\xdd\x46\x96\xa0\xc0\x27\xb9\xfa\x57\xf3\x17\x9f\x99\xb2\xd7\x2d\x3b\xbe\x29\xf9\x4c\xe1\xaa\x9f\x19\x7d\x77\x2b\xd3\x1f\x9e\xfe\xa8\xcd\x28\xa0\x8b\x00\x6c\x3f\x18\x14\x83\xc9\x6d\x6f\x01\xde\x8f\x1a\xef\x98\x07\x23\xa1\x0b\x5d\x17\x21\x47\x83\xde\x75\xe3\x61\x5f\xbc\xba\x7b\x0d\xc2\x9d\x1c\x7f\xf1\xa5\x5c\xf5\x16\x22\x9b\xb3\x5d\x6d\x27\x6e\x0a\x67\x5c\xad\x07\x4a\xdb\x26\x5c\xdd\x3a\xcd\x3a\xb2\x5d\xfd\x9a\x4f\x74\x9d\x75\x2d\xae\xed\xeb\x56\x75\xbb\x52\x81\xe9\x51\x74\xeb\x61\x69\xf6\x8a\xb8\xf7\xe5\x6e\xf6\x0e\x79\xb4\x53\x70\x7d\x00\xaf\x9b\x69\x4b\xfd\x67\xbc\x71\xf8\x9b\xfd\xef\x7d\x6d\x50\x17\x07\xda\xfc\x8f\x44\x5c\x1d\xb2\x09\xfc\x16\xdc\x35\xdc\x09\x6c\xf7\x4f\x1a\x75\x09\xf1\x74\xdb\xd3\x59\x6b\x77\x7d\x21\xb8\xbb\xd3\x0e\x3a\x69\xd7\xdb\x62\xd7\x34\x94\xd1\x5f\x6d\x37\xdc\xfd\x7b\xf0\x96\xdd\x4c\xeb\xc3\xa1\x58\xbb\x1f\x8d\x80\x61\xb8\x3d\x84\x9b\x36\xe2\x6c\xff\x8f\x9d\x37\xaa\xe1\xb8\xbf\x90\x3c\xba\xe8\x74\x2b\x07\x3a\x96\xe0\x0c\xcb\xba\x3c\x7e\xc5\xe5\x73\x0a\x6b\xbc\xd7\x0d\x83\xfb\x33\x11\xe1\x11\x8f\xec\x9b\x04\x7b\xd5\xc2\x03\xa7\x9f\xfb\x4e\x00\xd1\xb3\x8f\x03\x5f\x78\x3f\x1f\x5e\x34\x37\x5c\xd8\x19\x3b\x64\x1e\x39\x55\x33\xfe\xdb\xbc\x7f\x84\x3f\xd9\x6b\x21\xdb\xd7\x31\xbd\xc7\x82\xd8\x81\x9f\x6e\xb7\x7c\xdb\x2c\x3f\x03\xb5\xda\x55\x97\x36\xfb\xd0\x2a\xb3\x6a\xef\xec\x90\xf5\xcb\x52\xe3\x39\x37\x1b\x8d\x7c\xff\xb9\x9f\xb6\xe7\xe9\xc1\xf3\x99\x76\xaf\x33\x2e\x2d\x98\xd8\x13\x92\xea\x17\x7e\x3b\x42\xb1\x7d\x8b\x5c\x67\x2a\x02\xb5\x54\xe5\x66\x05\x2d\x5c\x31\xf1\xac\x0a\x94\xb7\x8a\x6b\xbb\x53\x95\x61\xcd\x6f\x7f\x5c\x12\x68\x8d\xeb\x34\x62\xbe\xb1\x0e\xed\xd6\xa2\x98\x5b\x65\xf4\x8a\xa6\x46\x59\x21\xfa\x4e\xe3\xfe\x5a\x4e\xf5\x3f\x47\x66\x59\x0e\xf6\x7f\x83\x53\x2c\xd7\x07\x70\xe0\x07\x96\x5b\x83\x4a\x7e\xbf\x2d\x33\x07\x3f\x7b\x78\x59\x3e\x1e\x2a\x73\x9c\xb2\xf0\x1e\x3e\x67\xf5\xdb\x62\x65\xa8\xd6\x44\xc1\xe2\xc9\x50\x9f\x9e\x85\x55\xee\xa0\xcb\xcb\x37\xd6\xa2\x03\xf3\x5a\xbd\x0e\x27\x04\x22\x3c\x69\xc7\x61\x41\x44\x19\xda\x29\xa1\x99\x95\xff\xc6\x69\x53\x78\x91\xa6\xee\xac\xda\xea\x4b\x8c\x71\xd6\x6b\xcb\x4c\xe8\x76\x36\x6b\x5f\x8a\xb5\x72\x7e\xdd\x79\x2d\xfc\x88\xf3\xe9\xae\xbc\xe0\x78\xa7\xe9\xee\xdf\x01\xc7\x9c\x86\x7b\xf5\x3d\x53\x9d\xca\xfb\x6c\x9c\x1f\x3a\x65\xf4\xd5\xda\x20\x9c\x12\xfa\x92\x4c\x6f\x38\x35\xf6\x3d\xd5\x37\x70\x46\xf5\x5a\xbc\xf2\x76\xb1\xee\x09\x78\x6a\xe0\xc2\xac\x0f\xaf\xcb\x73\x3f\x5d\x0f\xe3\x8c\x78\x50\xea\x77\x0a\x5f\x7a\xd2\x1b\xbe\xd1\xe7\xbc\xec\x1a\x7f\xa5\x9b\x78\x7d\xe3\x1f\x4c\x2c\xf4\x7e\x21\xd0\x45\x4b\x7b\x07\x37\x67\x44\xa4\x79\xdb\x0a\x0d\x20\x77\xbd\x55\x5a\xd7\x03\x17\xbd\x65\xdb\x01\xde\x6a\xde\x47\x3a\x7e\xbb\x54\x7b\xcd\x77\x3d\xb4\xd3\xf0\xfa\xdc\xf9\xd5\x2c\xc3\xfb\x6c\x67\xe3\x5b\x5d\xef\xb5\x8e\x9e\xd7\x7e\x3e\x75\xed\x1f\x9e\x69\x7b\x3a\x73\x29\x4d\xaf\x7d\x64\xb9\x9a\x95\x59\x7e\x9a\xdc\xb3\xc5\x74\xff\x7e\x2e\x9d\xa1\x14\xf8\x88\x67\x99\x49\x09\x32\xa8\x71\x48\xfa\x1e\xb4\x55\x5b\x84\x75\x01\x5c\xaf\xd7\x88\x6a\x00\xdc\x6f\x94\x85\xfe\x01\x68\x35\x4d\x03\x46\x00\x7a\x82\x50\x9f\x4d\x80\x53\xcb\x51\x37\x27\x80\x81\x30\xdf\x61\x17\x00\x21\xa4\x59\x78\x03\x8a\x85\x25\x06\x42\x60\x90\x70\xaf\x8e\x10\x64\xda\xe2\xac\xed\xec\xf7\xba\x7c\xb8\x05\x1a\x98\xc2\x59\xe7\x8e\x02\x1f\x72\x6e\x97\xbe\x01\x9b\x72\xcc\x98\x83\x21\xaf\x38\xb1\x14\x17\x48\x63\xb9\x47\x6a\x35\x74\xad\xc2\x2f\xfe\x22\xcc\xa3\x72\x1e\xb9\x01\x2b\xaf\x8e\x85\x2f\xc2\xf2\x79\x64\x70\x3c\x0c\x5f\x5b\xea\xaf\x0f\xa3\xd7\x97\x7b\x38\xc3\xe8\x8d\x28\xc7\x3a\xd8\x5a\x93\xa8\x55\x64\xe8\xb3\xa6\x67\x46\xdf\xe1\x27\x9b\xee\xe9\x22\xc2\x3c\x9a\x24\x9f\xe3\x80\x1e\x25\x41\x6d\xb9\x21\x26\xc5\xc3\xb5\xdb\xb0\x33\xc5\xf2\x9c\x22\x78\x40\xd1\x78\xc1\xf7\x70\x7c\x51\x23\x3d\x28\xd2\xa8\xd8\x94\x34\x17\x35\xc1\xba\x9c\xa8\x85\x88\x2d\x61\xa0\x4f\x45\x1f\x2d\x93\x88\xf8\x19\x7d\x89\x23\x06\x49\x8e\xbe\x58\x21\x17\x64\x12\x6d\x54\x75\xc0\x5b\x35\xda\xa7\xfa\x83\x8b\x4a\x34\x93\x67\x63\x2b\x83\xbc\xcb\xfb\x6e\xda\x86\x7c\x5f\x83\xd2\x6f\x8a\xd5\xae\xbd\xf2\x4a\x39\x54\x2e\xcf\xa8\x73\x3b\x02\x9b\xcb\x6c\x94\x44\x48\xe4\xde\xae\xf2\x40\xa6\x32\x86\x58\xd5\xb1\x0d\x8c\xba\x5c\x31\x34\x83\xf1\x25\x2b\x1e\x2b\x92\xdb\x93\xa2\x16\xb7\x97\xf9\x3d\x6e\x32\x2e\x25\x9f\x10\x5d\x1b\xb7\x50\xe8\x1d\xfa\x21\x6e\xb6\x98\x02\xc2\xc6\x0d\x97\xb4\xf8\x5d\xc0\xdd\x2e\x03\xba\x2d\xe3\xc0\x1c\x25\xfb\x9e\xf8\x37\xe5\x52\x16\x95\x09\x87\xca\xff\x18\x26\xe0\xed\x2b\x6f\xea\xac\x20\x5a\x69\xd9\xbd\x72\xb1\x1f\xa8\x77\x9a\xeb\xb1\x9a\x14\xed\x1a\x0a\xee\x23\xb9\x9a\xdd\x8c\xd7\x22\x63\x0b\x4e\x10\xde\x90\xb3\x68\x01\x49\x91\x14\x6f\xd2\x81\x64\x04\xd5\x14\x4f\x4b\xd1\xa2\xbd\x43\x31\x52\x66\xb2\xc3\x23\xf2\x52\x4f\x33\x88\x10\xbd\x54\x69\x26\x3f\x68\x6f\x2a\x2c\x1f\xe3\x15\x92\xba\x5c\x78\xc5\x69\x3b\x8d\x57\xd4\x6d\x3d\x4f\x9c\x65\x3d\x34\x15\x49\x57\x2f\x29\xd1\x6b\xc5\xae\xa6\x53\x07\xe5\xf1\xd7\x49\xb2\xed\x37\x92\x8f\xa4\xfd\x6c\x94\x4d\x6d\x4a\xc3\x56\xbd\x21\x69\xa5\x3d\x66\x65\x65\xdc\x48\x83\xe6\x8a\x66\x0a\xd3\xde\x65\xa5\x64\x15\x12\x05\x29\x17\xc9\x5e\xa4\xf5\xb8\x4d\xf2\xaf\x0c\x1c\x72\x3f\xc5\x25\xcb\x19\x6e\x4a\xf1\xa6\x50\xc0\xa2\x94\x44\x5a\xa5\x5f\x0f\x15\x98\xad\xec\x36\x4f\xd3\xce\x29\xb5\xd7\xa2\x13\x73\x4b\x2d\x7c\xb2\x77\xf2\x72\x0c\x56\x53\x62\x93\x24\x46\xa6\x48\xc9\x89\xdb\xdd\x92\x99\xad\x89\x62\xcd\x16\x14\x32\x1e\x5d\x53\x45\xb7\xc6\x2b\x71\x14\x73\x1c\xf0\xb7\x0a\x32\x19\x5f\xf1\xb1\xf4\x33\xb9\x8b\x89\xa6\x24\x21\x33\x9d\xf0\x3c\x11\x99\xa7\x9c\xd4\x80\x26\xe5\xa5\xa6\x18\x44\xd6\xe7\x8b\xa7\x3d\x83\xaa\xe4\xfb\x91\x8c\x83\x84\x05\xa7\x33\x34\xbd\xaf\x15\x7c\xce\xdc\x71\x76\x29\x3a\x4b\x11\xb1\x9e\x2f\x4e\xa0\x19\x99\x9c\xa2\x6a\x61\x1d\x26\x86\xb3\x5b\x30\x35\xfd\xf7\x73\xeb\x30\x32\x6d\xed\xf9\x19\x68\x54\x63\x40\xd1\x11\xf4\x8d\xaa\x51\xd6\x0d\xd4\xd7\x92\x37\x25\x8e\x68\x9b\xdc\xe9\x52\x3b\xf4\x0a\x39\xa4\x74\x1d\xf3\x2d\x55\xbf\xcc\x37\x4e\x2c\xfe\x56\xd9\x24\x0e\x13\xe3\xca\xd6\x49\x50\x0f\x4b\xe6\xa8\x25\xde\x00\x2f\x71\xe6\x92\x2e\xfb\x3b\x56\x1c\x48\xb9\xef\xde\x59\x29\x91\xa6\xea\x20\x5f\x45\x48\xdf\x63\x1e\x5d\xe0\x12\xfd\x74\x56\xaa\x38\x12\x31\x31\xbc\x51\xea\x8e\x70\xea\xd6\xe4\x88\x46\xad\x35\x0f\x54\x04\x46\x45\xd5\x9a\x56\xb9\x47\x3d\xe7\xf4\x56\x37\x45\x79\x17\x46\x72\x59\x51\x23\xd9\xe6\x3c\x23\x04\x33\xe3\x06\x8f\x1f\x5d\x93\x74\xb2\xc6\x08\xb9\x80\xbd\x58\x33\x1b\x2b\x85\xf0\xab\x2d\x44\xfd\x86\xe5\xd7\x15\x61\xd5\x01\x1f\xea\x7f\xe2\x0c\x7d\xae\x34\x26\x27\x44\xbb\xb8\x37\x7d\x20\x28\xda\xe8\x94\x8b\xc0\x4f\x2c\x2a\x56\x9d\x0e\xcd\x19\x9f\xe3\x4e\x84\xbe\xee\x7f\x5d\xeb\x03\xe3\xb7\x75\xd4\x4f\xc0\x34\x1a\x8d\x1a\xc3\x60\x0a\xd5\x47\x9b\x3e\xc1\xd4\x4a\xa6\xf8\x8d\x30\x16\x73\x47\x80\x08\xbd\x4c\x3d\x2d\x58\x86\xdb\x10\xf7\x35\xdf\x0a\x0b\x4f\x58\x6b\xfe\x13\x9e\x89\xba\xde\x52\xfb\x1f\x62\x0a\x87\x11\x0a\x21\x2d\xad\xd3\x48\x60\xe0\x99\x76\x53\xd4\x3d\x4f\xad\xce\x5d\xd8\xc7\x0e\x5e\x75\x23\xc0\x8d\xe5\xd5\x46\x01\x30\x6f\xaa\x46\xa0\x09\x04\x0f\xf9\xb5\xc4\x02\x6f\x75\x3d\x68\x4d\x04\x6c\x36\x8b\xb5\xab\x03\xa6\x6b\xc5\x3b\x8c\x00\x3b\xe5\x37\x3b\xdf\x00\x2d\x8a\x3c\xbb\xce\x82\x76\xe7\x54\x75\xd5\x81\xd6\x32\x7f\x74\xdf\x0e\xbe\x9a\xa2\xd8\xdd\x14\x12\x85\xd3\xed\x81\x43\xe6\x91\xe8\x5e\x07\x18\x1c\xce\xeb\xab\x80\x8f\x80\xc6\x06\xa4\x23\xde\xfa\xae\x0d\x32\x10\x13\xae\xaa\xad\x7a\xbe\xcf\x56\xf3\x3a\xce\xfa\x8a\xcd\xc4\x74\xe9\xf8\x1e\x18\x69\xea\xb1\xf3\xf9\xd9\xab\xd0\x27\xef\xb3\xd4\x0a\xec\xe7\xfa\x74\x35\x4c\x0e\xa4\xfb\x9e\xa8\x36\x19\x04\xfa\xea\x97\xb6\x0f\x3d\xf3\x3b\x90\xaf\x3b\x7c\xc4\xaf\x91\xd6\x3a\x5c\xea\xbf\x9c\x2e\x3f\xf2\x38\xf0\x01\x01\x31\xf2\x3e\xa8\x07\xc3\x1b\xcd\x03\x5a\x46\x4d\x8d\x6d\x82\xab\xa0\xdc\x09\x28\xc4\x31\x28\x71\x4a\x21\xd4\xc9\x73\xa1\x5f\xd6\xb5\x7c\x75\x75\x90\xe0\x5a\x36\xcb\x1d\x4e\x77\x2d\x19\x6b\x19\x25\xba\xd2\xfa\x97\xc6\xf7\xb9\x16\x75\x74\x4e\x28\xbb\x76\x09\x52\x27\x8f\xbb\x29\xd6\x7a\x4c\xf6\xba\xe5\x54\x3c\x9e\x8a\x76\x7f\xc1\x3a\x3c\x7d\xc1\xe3\x45\x6e\xfd\x74\xb7\xa7\x26\xc5\x79\xc6\xc5\x2b\x2d\x6d\x76\xe6\xab\xf7\x02\xde\x62\x96\xe2\x9b\x84\x7a\x34\x67\xe2\x7f\x2a\x42\x61\xc1\x38\xc8\x32\x38\x78\xc9\x1a\x64\xe4\x37\x3f\xd9\x66\x3b\xf0\xce\x6c\xe6\xa5\x6d\xcd\xbc\xd1\xdc\x82\xed\x8b\xc9\x83\x0b\xbe\xb6\xf0\xa1\xba\x25\x51\xdb\x84\x1e\xd0\xd2\x55\x3b\xff\x56\xec\x92\xa1\xfd\xcd\x46\xf4\xd2\x47\xfb\x01\x2e\x6f\x19\xe3\x00\x63\x2f\xac\x88\x3a\x46\x17\x2e\xaf\xa4\x3a\x95\xe4\xb4\xad\x9e\x77\x7e\x9f\x05\x5b\x65\xb8\x6a\xa7\x7c\x7f\xf7\xca\x8d\x1d\xff\xfc\xfd\x35\x8f\xe8\x98\x03\x1f\x9e\x7a\xb5\xc3\xa1\xeb\xfb\xfd\x24\x80\x6a\x4e\xf4\xce\xdf\xbc\x7f\xce\xf6\xdd\x4f\x39\x57\x9c\xe0\x7d\x47\x0a\xcf\x39\x79\xf6\xaf\x66\x9b\x39\x79\x0d\x2a\x66\x68\x39\xdd\x19\x3a\x43\x28\x77\xdc\x1c\xda\xc0\x00\x1c\x3b\x87\x91\x51\x96\x8e\xfc\x91\x53\xd0\x65\x47\xe0\x48\x2d\x80\xee\x78\x79\xd4\xc6\xe7\x83\x43\xd7\xe8\x6f\xb7\x3c\xfb\xc5\xb1\x1e\x07\x03\x7b\xd0\x18\xd3\x92\x60\xbf\x31\x26\x65\x34\xe1\xa0\x3e\x4a\xd7\x75\x74\x98\x1a\x19\x78\xa1\xed\x2e\x68\x7d\x55\xe7\xed\xa9\xde\xba\x59\x61\xef\x75\xbb\x6d\xa0\x38\xd4\x2b\xa7\xe3\x3e\xc3\xd9\x6b\xa3\x33\x3b\xeb\x82\xb7\x44\x57\x7b\xb2\x8f\xb7\x54\xcf\x51\xec\x9c\xd7\x8f\x5e\x67\x04\xc6\x2b\xa3\x8f\x06\xdb\xf0\x92\xed\xcf\x07\xf6\x7a\x56\x0c\x50\xfd\x0e\x79\x3a\x0f\x26\xb8\xaf\x7a\x1e\x1c\x72\x77\x6c\xf1\xe0\x0f\x41\xad\xf7\x7a\xa0\x87\x9e\x1a\x7f\xf4\x28\x1c\xec\xd7\x7b\xe1\xf9\x7c\x70\xcf\x4b\x79\x1f\xa8\xe0\x46\xc3\x37\xbf\xd7\x02\xfb\xaa\xac\x80\xbd\x02\x44\x09\x24\xe0\x4f\xb3\x3f\xf3\x72\xe0\x40\x8b\x0f\xf9\x63\x90\xb3\x30\x28\xf5\x6d\x90\xb0\x35\x0d\x57\x17\x34\xd6\xb6\x86\x34\x0d\x6a\xe8\xb0\x83\xfb\x07\xb9\x76\xbe\x07\x1b\x06\xee\x74\xfb\xfa\x3f\x0f\x64\xf6\x9e\xf6\x3c\x19\xf8\xa4\xcf\xc7\x79\x4f\xc0\x7a\xdf\x9c\x8d\x7b\x40\x71\x1f\xc3\xf4\x60\x40\x49\x9f\xa3\xde\xd7\xc0\xf0\xde\xfd\xaf\xf6\x05\x4a\x34\x3c\x11\xec\x03\xc0\xeb\xbb\x78\x47\x41\x4d\xf5\x46\x65\x94\xe0\x5b\xf5\x8b\xf9\xb7\x42\x3c\x1b\x6a\xa9\x13\x10\xed\x46\x06\xd1\x0c\xba\xa7\x89\x90\x30\x0c\x7d\xc1\xef\x8f\x0d\x82\xfa\x37\x2b\x85\x3f\x80\xea\xb6\x34\x87\x68\x42\x0f\xb4\x9a\x07\x6a\x42\x86\xda\x56\xbd\xda\x21\x71\x1d\x10\x17\x24\xe4\x4e\x67\xbe\x9d\x24\xe4\x72\xe7\x13\xb3\x46\xc8\xcd\x8e\x2f\x6f\x63\x20\x7f\x3b\x2e\xbd\xb6\x02\xf7\x70\x99\xad\x7c\x48\x7e\xf5\xb7\xda\x75\xd8\x52\x75\x5a\xb9\x05\x9c\x5f\xcd\x2c\x5c\x0b\xd7\xe7\xca\x65\x63\x23\x52\xb9\x2b\x19\x47\x22\x89\xbc\x79\x02\x28\xea\x58\xed\x75\x8c\x54\x94\x76\x1d\x35\xb2\x36\x4a\xa5\x21\x16\xea\x14\x75\xac\xe9\x0e\x00\x14\xf9\x95\xdf\xe3\x23\x88\x1c\x6c\xb6\x75\x33\x8a\x4c\x6e\xd9\x70\xd8\x17\x59\xd5\xd2\x6b\xd1\x10\x39\xd1\xd2\x6c\x18\x1c\xd5\xdd\x82\xd2\xd1\x86\x2b\x94\xef\xef\xda\x1d\x11\xc8\xd9\xdb\xc0\x8f\xa2\xb3\xbb\xab\x9c\xa2\x1b\xd9\x39\x25\xfb\x62\x08\xec\x9e\xdc\x6c\xd4\x0d\x8e\x12\xf9\x2e\xda\xaa\x5c\x24\x85\x86\x51\xac\x10\xc5\xdd\xc3\x00\x2b\x21\xc8\xf3\x98\xe4\x6a\x31\xb8\x29\xc6\x8f\x27\x05\xd6\xc4\xdc\xad\x3d\xe7\xff\x08\x23\x59\xb7\xe9\x11\x88\x9e\x6e\xe8\x71\x1c\xc4\x9c\x6d\xf4\xb4\xaa\xc5\x04\x34\xe6\x18\x7b\x60\x9f\x37\xed\xd2\xf5\x8a\xbe\xcc\xb2\xee\x95\x8a\xa5\x15\x9f\x6f\x3e\x85\x79\x56\xe4\x57\x23\x15\x17\x5b\xa4\xc4\x2e\x8c\x8f\x2e\x3a\x57\x70\x1b\x6f\x58\x74\x91\xc6\x4b\x04\x17\xad\x93\xee\x11\xac\x8b\xfb\xf0\x4c\x42\x71\x89\x2d\x0a\x4e\xd8\x2a\x9d\x8c\x70\x26\x6c\xb2\xc7\x21\xcf\x08\xbd\xe5\xa3\x41\xf7\x09\x93\x95\x89\xde\x8f\x08\x0b\xd5\xb7\x5c\x1c\x92\x4e\x71\xb1\xb6\xa1\x49\xd5\xbc\x9b\x66\x56\xc9\xc1\xbc\x4f\x6f\xf7\x61\xe3\xf2\xc4\x07\x74\x13\x54\x72\x73\xdb\x2c\x08\x28\x06\xae\xe1\x49\xf2\x04\xe3\x79\x65\x41\xea\x17\xc6\x19\x96\x02\xb1\x94\xf1\x98\x91\x96\x7e\x84\x51\x94\x75\x3a\xbd\x35\x17\x9d\x1c\x97\x61\xcb\xac\x8d\xd3\xcd\xe8\xca\x7f\x19\x6d\x9e\xb1\x55\x28\x15\x5a\x99\x51\x5b\x6c\x0c\x42\x64\xe0\x4b\x3c\xfc\xde\x64\x2c\x94\x4e\xb9\xab\x65\xca\xb0\xf5\x1d\xae\x64\x69\x71\xbc\x2c\xfd\xc8\x7e\xe5\x68\x23\xa5\x24\x67\x9a\xe7\xc8\xfd\xb4\x70\xca\x74\x97\x7e\xfa\x3a\x79\x45\x10\x9e\x15\x44\xb6\xe1\x4d\x51\x90\xe4\xbd\xec\x97\x34\x4d\xb2\x72\x7e\x0d\xbd\x86\xec\x4d\x53\xca\x86\x50\x6e\x10\xa9\x39\xe7\xa9\x47\xf1\x72\x39\x04\x1a\x0d\xe5\x9e\xf3\x35\x5b\x35\x82\xc4\xd8\xcd\xb8\x0d\xf1\xc9\xd9\x64\x9a\x07\x99\x30\x5e\xe4\x1f\xf2\xda\x62\xd4\x15\x44\x3a\x47\xe4\x26\x16\x89\xdb\x78\x32\xdb\x8b\x3b\x4d\xf7\x66\xd5\x92\x5a\x27\x5e\xd0\x82\x88\xc8\xde\xbf\x39\x8f\xd3\xde\xb7\x66\xe7\x4e\xa6\x99\x35\xbc\xc9\xfb\x94\x76\xb2\xb2\xb3\xa0\x21\xf5\x23\xeb\x4d\xe1\x7a\xda\x63\x46\x5e\xd1\x40\x5a\x7b\x96\x5a\xb1\x33\xb1\x36\x79\xab\xb8\x9f\xb4\x1e\xb7\x58\xfc\x2f\x03\x88\x3c\xc1\x52\xcc\x52\x81\x7b\xb0\x6e\x50\xa4\xc1\x17\x59\x06\xb4\x43\xfe\x22\x25\xf7\xe9\x79\xee\x76\x25\x3b\x39\x4f\xed\xe7\xcb\xac\x72\xbd\x2c\xae\x32\xeb\x08\xd0\x99\x23\x05\xfd\x89\x94\xa1\xd2\x62\x3c\x7e\xb1\x73\xbb\xf4\x02\xfe\x89\x80\xcc\x36\x48\xf8\x5c\x73\xab\x5c\x32\xa1\x8d\xdd\x50\xf1\x02\xbf\xb7\xe0\x71\xa5\x3a\x3e\x90\x56\x59\x99\x9b\xe8\x4c\x8a\xac\x3a\x48\xf0\x4a\xb4\xa8\xd2\x4b\xea\x46\xe3\xaa\xa0\x29\x4f\x23\x07\xaa\xbe\xa4\x9d\x85\xbe\xad\x7e\x45\xfc\x1e\xb4\x53\xbd\x93\x3e\xe4\x0d\xe4\xee\x64\x92\x9c\x79\x35\xca\xe4\x42\xeb\x9c\x32\x32\xd6\x75\x01\x53\x4e\xc4\x74\x8e\x6b\x56\xbd\xc0\x68\xf5\x05\x73\x39\xe8\xf6\xb6\x23\x35\xdb\x68\xb3\x06\x4a\x1d\x1a\x7d\xb1\xea\x4e\xfd\x1a\x5a\x8a\x35\xd9\x40\x46\xc7\xe4\x12\x1b\xaf\x61\x4e\x93\xad\x1b\x03\xb1\x52\xa9\xb7\x1a\xcb\xe2\xae\xc4\xab\x35\x7e\xc0\x05\xc6\x78\x34\x5d\x8c\x9f\x08\x63\xf2\xe5\xf1\x5d\xc1\xa7\xf9\x73\x04\xae\x7f\x4e\xb3\x7a\xca\x1e\x8f\x83\x2d\xee\x69\x0f\x1c\xa4\x79\x1f\xa3\x11\x2b\xf9\x75\x8b\xd1\xf2\xd3\xba\x8d\x9e\x08\xde\x50\x1b\xbf\x00\xf1\xb4\xcb\xa0\xb9\x26\xaa\x5c\x30\x2c\xb4\x8d\xf2\xa9\x09\x69\x65\x46\x99\x70\xee\xb5\x05\x47\x11\x0a\x95\xdb\xfe\x21\xf6\x65\x2b\xb7\xdb\x21\xc6\x32\xc4\xdb\xc9\xd1\xf3\x49\x7b\x3a\x4e\x22\xb7\xb1\xd7\x3b\xb0\xb1\x27\x11\xa8\xce\x37\xa8\x0e\xd8\x42\xd7\x53\xcc\x2c\x50\xa7\xdb\x0b\xa7\xee\x43\xea\x15\x49\x98\x77\x71\x12\x8c\xc1\x3d\xdf\x37\x0b\x13\xe0\xe7\xe7\x26\xdb\xfe\x86\xd2\xc7\xdc\x3b\x2d\x43\x95\xfa\x76\x77\x1b\xc2\xca\x5a\xf3\x7b\xa5\x61\xa6\x0d\x2e\x7d\x17\x60\x2f\xab\xbc\xfb\xcf\xc2\x74\x4a\xa0\xfd\x29\xb0\x45\x26\x6b\xe0\x68\x68\x30\x65\x66\xc0\x09\x4e\x48\xfb\x36\x50\x12\x96\x8e\xdf\x37\xe8\x1d\xce\x44\x69\x0f\x5d\xfe\x0f\x31\x87\xad\x11\x4a\x21\x3d\x23\xbe\xc8\xb0\xc0\xf3\xa3\x9d\x28\xb8\x47\x47\xf7\x05\x10\x79\x5d\xaa\x77\x15\xa4\xb9\xb0\xd2\xff\x07\xb8\x33\x31\x3f\xb8\x0d\x2c\x1f\x14\x19\xce\x05\x06\x77\x4a\x8e\xca\x01\xb5\x04\x57\xc7\xae\x02\xef\xd6\x78\x8d\xfd\x05\x1a\x71\xaa\xc7\xab\x81\x75\x45\x62\x13\x96\x20\x9f\x9c\xe8\x89\x55\xb0\x41\xe6\xfa\xa4\x43\x70\x48\x8a\xc1\xe4\x66\x48\x36\x2e\x7d\x8a\x0b\xf9\x80\x2c\x9c\x6e\x87\x61\xe1\xf4\x59\x8f\xb0\xa3\x20\xec\xbc\x4a\x44\x91\xaf\xf6\x88\xb7\xef\xf7\xf5\xed\xb1\x66\xdf\x8a\x25\xc6\xc4\x90\x6f\xf4\xf4\xe9\x29\x8e\xaf\xcd\x70\xcd\x8c\x9b\xef\x8d\x1e\xcf\xd9\x08\x5f\x59\x61\xdf\x5c\xb8\xaf\x74\xc3\xcb\xf9\x1b\xbe\x9e\x55\xdb\xf3\xab\xbe\xa5\xa5\xd4\x05\xac\x5f\x70\xfe\xfd\xc5\x2b\xfe\x77\x69\xad\x8b\xcd\x01\xb6\xe9\x5a\x4b\xfa\x81\xf9\x84\xfa\xe5\xc3\x00\x65\xcc\xf2\xf2\x26\xb0\x20\x6a\x7a\xd5\x37\xf8\x38\x14\xff\xfe\x3a\xa4\x33\xe8\xcc\x5c\xaa\xdb\x89\x0d\xe7\x85\xcf\xae\xe3\x2b\x22\xcb\x0f\x5c\x31\xb3\xbb\x57\x5a\x5c\x53\xc7\x5e\xbd\xd3\x74\xcd\xef\x4f\x7f\xf7\xdb\xed\x68\x47\xfa\xfb\x2c\x37\x6f\x01\xfa\x83\xa1\x5b\x4f\x6d\xc2\x87\xdf\xee\x2f\x2a\xb2\xd6\x42\xdd\x37\x59\xa8\xf5\x93\x1e\x43\x4c\xc3\xf5\x48\x4f\x21\xe5\xcb\xc6\x11\xaf\xbf\x44\x8b\x8d\x74\x9f\x1b\x78\xf6\x26\xcd\x6f\x2f\x2a\xe0\xe3\x8a\xff\x66\x84\xe2\xe7\xb0\x20\x6a\xf0\x21\xaf\xbe\x5e\x40\xdd\x3f\xef\x84\x3e\x5e\x25\xcb\xbb\x74\x20\xb4\x04\xec\x95\x31\x7c\x88\x69\xec\xd5\x3e\x62\x4f\xe9\xf3\x02\x8e\xfa\xa4\xd9\x79\x9d\x19\x73\x49\x38\xe9\x59\x38\x7e\x36\xf6\xbe\xa7\xef\x78\x52\x78\x84\x07\x77\xc2\x30\x04\xe5\x61\x3b\xd1\x1c\x18\xe9\x2e\x98\xb4\xf5\x7e\xea\x56\x30\xa5\xe2\x7a\xdc\x2d\x69\xea\x85\xdd\x67\xd7\x8d\x29\x19\x0b\x53\xb7\x73\x93\x34\xc3\x26\xb7\x7d\x93\xf7\xde\xa8\xfb\xf7\x77\x1e\x6c\x34\x0d\x54\xec\xac\xaf\xae\x09\xd2\xed\x22\x96\xf9\x05\x8d\x77\x0f\xe4\xc7\x03\x24\x7a\x1f\xd2\x88\x00\x8d\xbe\x58\xd2\x49\xc0\xf1\xfe\x5a\x3c\x28\xa8\x62\x60\x05\xe5\x11\xa4\x3d\xf8\x33\x02\x18\x48\x1b\xfa\x0a\x49\x0a\xf8\x39\x3c\x12\x54\x12\x10\x30\xc2\xf6\x71\xf3\xdf\x1a\x85\xbb\x79\xf8\x7b\x8d\xdd\x71\xf0\xf2\x3f\x30\x76\xc0\x32\xdf\x2f\x6f\xb4\xc3\xa8\xcd\xaf\x78\xf4\xad\xae\x0c\xb0\x5f\xb8\xc5\x7f\x0f\x4e\x6d\x55\xe0\x0d\x84\x88\xb5\x62\x38\x37\x21\x52\x6d\x46\x85\xc6\x90\xa2\x76\x8f\x6c\x4d\xe8\xa9\x0e\x5c\xfa\x7b\xa8\x55\x67\x33\xc1\x0a\x6a\xd9\x2d\x87\xfe\x0e\xbd\xd1\x93\x10\x49\x80\x54\xf4\xed\x81\x42\x21\xe7\xfa\x55\x00\x0d\x21\xe8\x81\x07\xbe\xee\x21\x27\x07\x9f\xba\xc3\x82\xf1\x43\xb7\x1c\x13\x82\xe5\x86\xae\x59\x2d\x82\x1b\x07\xd7\x8d\xfb\xc0\x95\x83\x76\xba\x3b\x90\x15\xfe\x70\xcb\x3a\x6c\x94\x5f\x57\x27\x0e\xcf\xe4\x77\x57\x3c\x0c\x97\x12\xc8\x16\x1b\x45\x88\x09\xb6\x19\xaa\x11\xab\xcd\x4b\x99\x9f\x23\x43\x5a\x3e\x26\x87\x47\x36\xb5\xca\xc5\xa9\x44\xb6\xb5\x05\x22\x46\x22\xf1\xed\x4b\xa1\x76\x91\xb2\x9d\xae\x20\x74\x04\xa9\x6b\xc1\x6f\x38\x42\xb2\xc7\xdd\xa3\x3c\x1c\xdd\x3b\xea\x54\x11\x2e\xd6\x27\x65\x73\x27\xac\xb5\x97\x68\x2a\x1a\x26\xec\xf9\xa2\xf7\x39\xfc\x6a\xbd\x4f\x87\x66\x64\x42\xbd\x48\x43\x01\xa2\xa0\x6e\xb6\xaa\x09\x49\xae\xeb\x2b\x99\x88\x19\xab\xcf\x66\x12\x62\xdf\x35\xe0\x28\x46\x28\x4c\x23\x24\x75\x00\x7d\xaa\xc9\x25\x1e\x8c\xd6\xe2\x47\xc7\x58\xa0\x5f\x0b\x3a\xc2\x70\xe8\x43\x2d\xce\xc1\x7d\xa8\x22\xe1\x46\xe0\x29\x94\x49\x9b\x9b\x57\x45\xec\x6a\xfb\xa4\x4b\x68\x2c\xba\x63\xcd\x4e\x3e\x36\xa3\xa3\xc0\xfc\x54\x6c\x75\x07\xf8\xad\x7f\x8c\x4c\xf5\xc7\x9e\x3c\xd4\x44\xf5\x53\x41\x08\xe6\x5d\xf5\x6e\xde\xdf\xb8\xe6\xaa\x5f\xec\xcd\xf8\xd7\xd5\x86\x05\x95\x09\xa8\xea\x15\xba\x1b\xde\x82\xdb\x40\xda\xc0\x7f\xe4\xb1\x13\x9d\x13\xa5\x6b\x36\xd1\xf7\x13\xaf\xd5\x29\x47\x9e\xc6\x2f\x34\x9c\x82\x8a\xe0\xd3\x1a\xe7\x00\x8f\xf0\x8e\x7c\x17\x9f\x6a\xbc\x9c\xa0\xc7\xcd\x3a\xa1\xa5\xe5\xa1\x83\x28\x5e\xb4\xc5\xc1\xe2\x0f\xde\xb1\x25\xde\x90\x1d\xb7\xc8\xf9\xd8\xcf\x4c\x28\x61\xaf\xb5\xfa\x12\x34\xd8\x8f\xeb\x53\x92\xd5\xd8\x5a\x95\x90\x94\x5f\x6c\x7d\x96\x65\x9a\x1f\x9b\xc2\xd8\x26\x26\x70\xa4\xb3\x10\xa4\xd3\x9c\x2f\xc9\x9f\x49\xbe\x15\xfb\xe2\x98\xa4\xd4\x4a\xd3\xe8\x12\x52\x74\xd5\x3b\xb8\x2a\xe9\x02\x77\x12\xac\x49\x6c\xaa\x69\xf2\xb7\x25\x66\xd6\x19\x78\xb0\x88\x56\xf5\xef\x9d\xa4\x89\x49\x0d\xb5\xd6\xea\xa4\x53\x8d\x17\x8d\x97\x93\x45\x58\x55\xc3\x92\x69\xf6\xc5\x4a\x9d\x7e\xe9\x8a\x45\x77\xf9\x75\x99\xaf\x0a\x67\x78\xee\x64\xa9\x42\x0e\xfb\x12\x85\x5e\x38\x9e\x5f\x4f\xdb\x5b\xa4\x4e\xd3\xa4\xf9\x15\x6d\x13\x69\xb4\x9c\xe2\xfe\x84\x1f\xb4\x99\x12\xed\xd8\xbf\xf4\x13\xa5\xb4\x88\x43\xb4\x25\x36\x1d\x72\x9f\x96\x52\x9e\x16\xe4\x46\x8b\xab\x54\xf4\xc6\xd1\x32\xab\xa2\x5c\x9a\x69\x53\xd5\x42\xbb\x7d\xf4\x6a\x2e\xd7\x6c\x23\xf3\x27\x13\x3d\xce\xa1\xda\xe6\x9e\xea\xdd\x93\xbd\x9b\x91\x28\x6c\x63\x98\x30\x94\xeb\x93\x73\x7f\x31\x76\x57\x6a\xe5\xf9\xe6\xfc\x2a\x9e\xcd\x47\x30\x9e\x31\x1e\x15\xe8\x31\x5a\x33\x2b\x0a\xaa\x73\x19\xc9\x86\x05\xef\x99\x5d\x71\x17\x0a\x96\xf2\xaf\x47\xdf\x2f\xe8\x2e\x58\x0c\xad\x2c\xa0\x14\xfd\x04\xf1\x0a\x7c\x59\xff\xfc\x6a\x0b\x2a\x4a\x6d\xdc\xd3\x0b\xbe\x96\xe5\x39\x14\x14\x7e\xe2\xec\xb5\xcc\xca\x9d\xa2\x3a\x4c\x47\xe5\x6f\x50\x9c\x07\xa3\x8a\x3c\xc9\xad\x1d\x5f\x58\xe9\xe4\xd7\x7c\x7e\xe9\x43\xf2\x11\x1e\xb8\x0c\x97\xf5\x85\x2d\xc5\x76\x27\xab\xe5\x07\x72\x8e\x91\xc1\xd4\x7c\x0e\x8c\x62\x45\x0c\xe4\xcc\x50\x9f\xe0\x1f\x71\xde\xd3\x9a\x50\x08\xce\x70\xf6\xd5\x08\x2e\x67\x86\x71\x10\x92\xc5\xe9\xcd\xdd\x0a\xa2\x95\xab\xe5\x65\x7b\xbb\x97\x17\x15\x28\xb8\x9c\xa8\x70\x28\x6c\xb7\x49\x2a\xfd\x43\x3a\x3f\x0f\xe1\x14\x11\xa1\x63\x2a\x95\x47\xd2\x36\x7a\x43\xaa\x0f\xa6\x61\x5a\x1f\x71\x07\xd2\xee\xd7\x7f\xaf\x91\x48\x3b\x51\x99\x58\x7b\x39\xed\x20\x4b\xb1\x96\x93\x86\x60\x24\xd6\x9d\x20\x6a\x64\xc9\xd4\x5d\x26\x49\x25\x4f\xd7\xdd\x4b\xd7\x8c\x1b\xad\xbb\x98\x51\x8c\xd4\xa8\x53\xcc\x7a\x08\xa7\xd7\x9d\x22\x7f\x07\x7b\xd6\xed\xa1\x16\xfb\x3f\xae\x57\xa1\x9b\xbb\xd3\x1b\xc4\xb3\xff\xd8\x6f\xf3\xce\x10\x5e\xac\x5c\xae\x5d\x4b\xcc\x9a\x4a\x6d\x50\x4b\x94\x18\xfc\xda\x24\x8b\xe7\x75\x22\xf8\xd3\xf8\x00\xc1\xd5\xe6\x6b\x78\x4d\xde\x5c\xcb\x23\xbc\x32\x1b\xdb\xd2\x8b\xf7\x29\xb8\x24\xbc\x80\x9f\xa0\xb5\x0b\xed\x13\x1b\x48\x54\x61\x38\xa1\x2a\x31\x44\x98\x9c\xf4\x1d\x5d\x2b\x4c\x4e\xd1\x89\x12\x15\x7e\x4f\xdb\x0f\xa5\xb7\x6a\x11\x07\x01\xc6\xad\x3f\xd2\xdb\xbc\x07\xda\x6f\x65\x0e\xb8\xec\xe7\xff\xc1\x22\x3f\xbc\x6a\x69\xc7\xfc\x9d\xcb\x6b\x5d\xc6\xa4\x8c\xdd\x69\xff\x88\xb9\xd4\x3b\xdd\x59\x80\xee\x6b\x8d\xed\x7e\x82\x8e\x68\xb8\xd5\xa3\x81\x06\x55\x6e\xf7\x6c\xa2\x23\x59\x55\xbd\x6a\xe8\xcf\xb9\x29\xbd\xe6\x18\x18\x39\xa0\xd7\x1f\xeb\x95\xfa\xb6\x17\x1b\x67\x1b\xff\xa2\xb7\x05\xe7\x1f\x93\xdd\xb7\x2f\x9e\x12\xbe\xbb\x6f\x16\x9f\x18\x8c\xe8\x8f\x21\x60\x02\xe4\x06\xd6\x52\xb4\x3d\xb4\x3b\x3d\xa2\xa7\x37\xb0\xdd\x5b\xd1\xc1\x4b\xf0\xbe\xf3\xd1\xc7\xa7\xee\xf5\x7f\x45\x64\x0c\x0a\x07\x33\x10\x77\x3b\x1d\x87\x8f\x45\x2d\x09\x8e\x8e\x48\x44\xd5\xf1\x16\x47\x3e\x46\xb1\xd8\x7d\xa3\xc0\xa8\xbf\x05\x4b\xa3\x9d\x88\x90\xec\x83\x63\xf2\xd1\xf7\x32\xae\x8f\xf9\x21\xe5\x93\xac\xc7\xa6\x63\xd4\xb1\xb1\xe3\x06\xb1\x06\x08\xce\xc4\x01\xb4\x18\xec\xc3\xc4\x26\x56\x0b\x78\x69\xf2\x1f\x0e\xeb\xf3\x68\x80\x1f\xa6\xb2\xb5\x35\xec\x0c\xef\x59\xe5\x8c\xc2\xe0\x4e\xb3\xa9\xe3\xd0\xd0\xa1\x51\xe9\x49\x9b\x50\x83\x9e\xae\xa9\x9a\x50\x11\x61\xf5\xf4\x57\x58\x43\x7d\xf5\x4c\x2d\xac\xa9\x72\x71\x16\x04\x1b\x29\x39\x3b\xfb\x2e\xd4\x85\xe9\x35\x67\x16\xba\x45\xa9\x9f\x6b\x85\x8f\x11\x55\xe7\xaf\x85\x15\xe2\xd1\x0b\x47\xc3\xcb\x50\x31\x0b\xf3\xff\x21\xe6\xd2\x0b\x44\x68\x48\xce\x72\x62\xcc\xa9\x80\xdc\xc9\x4a\x70\xc1\xa7\xcf\x33\xc7\xc1\x6f\xde\xc7\xce\x49\x83\x66\xe6\xc9\xf3\x5b\xa0\xe4\xf1\xd6\xc5\x2c\x90\xd5\xc0\xa1\xa5\x19\x90\x5a\x87\xf9\xf2\x2f\xe0\x36\x9f\xb3\x32\x0e\xfc\x51\x73\x6d\x35\x0d\x24\xc3\xa9\x7b\xf7\x10\x84\x29\xd2\x7c\xd7\x0c\xbe\x9e\x53\xfa\xfe\x59\xf0\xde\xac\xb3\xef\x79\x21\x27\x52\x02\x3e\x18\x42\xe4\x71\xf9\x6b\x2f\xa1\x86\x48\xe6\x7a\x18\x6c\x18\x9e\xb0\x69\x18\x06\x05\xed\x5f\xb6\xf0\xeb\xf8\xfc\x73\x15\xee\x17\xb6\x76\xfa\x3d\xd2\xef\xe2\x62\xd4\x9a\x9a\xdf\x99\xa9\x8b\xeb\x31\x7e\xb2\xc3\x87\x36\xaa\xfc\x94\xbb\x97\x37\x8b\xfd\x0e\x08\xcb\x3f\xa6\xf9\x6e\x37\x24\x6f\xbd\xf6\xbb\x55\x1d\xb9\xb5\xe5\x17\x5a\xe6\xf6\x29\xdc\x5f\xae\x60\xd7\xa7\x7f\xfe\x53\x74\xc8\x67\x64\xe0\x9e\xf4\xde\xed\x53\x41\xb7\x93\x24\xb6\xbf\x03\x4a\xb0\xe2\x5f\x2f\x80\x0e\x44\x7d\xf9\x01\x08\x16\x87\x78\x02\x6e\x0c\x7c\x69\x52\x01\xee\x1e\xda\xcd\x5d\x01\x26\x0f\xbf\x65\xaf\x00\xfd\x47\xfe\x16\x06\x03\xaf\x8f\xa1\xb2\xe7\x01\x85\x13\x87\x33\x8f\x00\x0e\x4e\x6a\x27\x8d\x04\xbd\x9a\xd2\xc6\xfe\x0e\x04\x4f\x1f\x8d\x76\x0c\x28\x9e\x2e\x82\xdf\xf5\xff\x3c\x73\x15\x0c\xf1\x7f\x3c\xc3\xf4\x17\xf8\xc5\xcf\x9e\xf6\x6c\xf1\x9d\x9d\xf5\x73\x16\xf8\x6a\xcf\xc6\xda\x66\xf8\xb4\xcf\x3e\x33\x7f\xe8\xa3\x3b\xf3\xcf\xa0\x3a\x84\xd4\x13\x2a\x38\x01\xd9\xe9\xdd\x55\x13\x0d\xdd\xe8\x13\x29\x0f\x85\x05\xf4\x5f\x29\x7e\x09\x7b\x33\x40\x64\x84\xc0\x44\x87\x0e\x65\x91\xa0\xb3\xc3\x26\x29\x6f\xa1\x80\x11\x3c\xee\x01\x64\x68\x34\x1b\x09\x86\x48\x8f\xa5\x87\x49\x85\x38\x8c\xfb\x07\x83\x82\xa9\x13\x97\x03\xf8\xc1\xbb\x26\xc6\xbc\xba\xc1\x4e\x93\xfe\x2e\x4b\xa0\xe6\xc9\x21\xbb\x59\xd0\xe3\xc9\x48\x0b\x23\x60\xc5\xe4\x65\xc3\x6c\x38\xa7\xc3\xb3\x85\x1d\x6e\xd3\x01\xae\x23\x45\xd0\x3b\x95\x2b\x6d\x22\x9b\x3a\xff\x94\xdc\x88\xfc\xdb\x7d\x85\xf9\x34\xea\x48\x4f\x30\xc5\x2e\x4a\xbd\x77\x34\x75\x3b\x4a\xac\xff\x52\x3c\x27\xb2\x7a\xc0\x2d\x26\x3f\xf2\xfa\x20\x2e\x6c\x27\x02\x3e\x44\x0a\xf1\x0c\x6f\x1c\x4e\x0a\xec\x0e\x57\x1c\x09\xf3\xee\x09\x8b\x1b\x35\x72\xfd\x0a\xdf\x1a\x13\x75\x90\x82\xdb\x8d\x96\x5a\x02\x42\x07\x46\x5f\x18\x51\x10\x8f\x85\x80\xb6\x4a\xe4\x65\xe1\xdb\x46\xa5\x18\xa6\xb0\xa5\xba\x34\xf6\x5f\xeb\xeb\x32\x43\x54\x53\xdb\xe3\xfc\x50\xf4\xb3\x76\x4b\x5a\x2e\x3a\xba\x23\x82\x64\x8f\xce\xea\xe4\xe2\xff\xa0\x3d\xba\x0f\xa0\x26\xd1\x67\x7b\xdc\x22\x4a\x51\xe0\xde\x3e\xc8\x7a\xac\xb0\xef\x07\xc0\x36\x56\x61\xe0\xb8\xaf\x5a\x4c\xc2\xe0\x39\xf7\xa7\xc8\x9f\x43\xc7\x1c\xed\x90\xf1\x83\x7f\xac\x86\x90\x57\x06\xf1\xc6\xef\xd0\xd6\x7c\xbf\xce\x01\xac\x2a\xff\x91\x40\x29\xae\x91\x6f\x52\x73\x35\xfe\x32\x3f\x9d\x83\x49\xd0\x11\xdc\x2d\xac\xc6\x8b\x37\x2b\x67\x77\xe2\xa9\x2d\x72\x19\x65\xf8\x59\xa1\x4c\x92\x19\x7e\xae\xf5\x26\x56\x0b\x5f\xd9\x66\x85\xd0\xc4\x9b\xb5\x0b\x42\x65\x12\x3a\x3b\x1f\x80\xc2\x13\x2e\x75\xd1\xfd\xbe\xc5\x63\x7b\x0e\x78\xf4\xe1\x06\x7b\x9d\x9d\x6a\x71\xb1\xbd\xeb\x36\x26\xb8\xec\xde\x1a\x53\x8d\x84\xad\xba\x99\x5e\xb1\xc4\xb5\x3a\x82\x30\x20\xa9\xa7\x0e\x52\xaf\x9d\x62\x53\xd7\x59\x19\x96\x5a\x5b\x7f\x8b\x55\x9d\x16\xd9\x70\x3e\x37\x9e\x78\xba\xe1\x1f\xd9\x99\x68\xd7\x58\x95\x7a\x8a\x18\xdd\x84\xc4\xad\x13\x3d\xf9\x11\x31\x52\xc4\x1b\x82\x9c\x30\x52\x5a\x77\xcb\xc5\x90\xbd\x69\xc6\x42\x46\xa0\x67\xea\x97\xd6\x9f\xde\xa2\xa9\xb1\xed\xba\x2e\x83\xa9\xf2\x1d\x10\x3b\x78\xea\xa3\x8e\x65\x73\xe7\xd4\x3f\x5c\x95\x01\x01\xc9\xa1\x1a\xd5\xa1\x90\x01\xaa\xbe\xc6\x17\xc9\x92\xaf\xd6\xe2\x49\x90\xd3\xab\xfd\xd8\x3a\x94\x9c\xea\xd5\x02\x15\x6a\x20\x37\x82\xb6\x49\x2d\xe2\x3d\x24\x61\xa8\x35\xbc\xbf\x89\x62\xd4\xb4\x5a\x79\xf4\x25\xaa\x79\xdd\x83\xc8\x07\x14\x7e\xc3\x1e\xe8\x33\xca\xcd\x46\x36\x20\x99\xbc\xc9\x3f\xe6\xab\x4c\xee\x11\x3c\x73\x1b\x25\xa7\x37\x47\x3b\xa4\x92\x87\x5b\x0c\x2c\xa3\xc8\x29\x1c\xe1\x08\x86\xba\xc0\x11\xe9\x5e\xc9\x3e\xc7\x2e\x6f\xf9\xc9\x38\xc4\x0e\xad\x97\xca\x45\xb1\xb1\x95\x97\x98\xfd\xec\x42\x96\x5a\x1e\x87\x73\x98\xd1\x9c\xaf\xc9\x89\xcb\xb2\xc9\x7f\x58\x6e\x95\xbc\x92\xaf\x5c\x61\x12\xd7\x94\xb7\x55\x19\x15\xfd\x23\xaf\xa8\xea\x2b\x9c\x9c\xf7\x94\x3b\x0c\x9e\x66\x96\xd5\x14\x07\x1c\x65\x12\x6b\x77\x3c\x6d\x98\x5e\xf5\x3a\x4e\x7c\x66\x4c\x83\x8e\x75\x0b\x73\xa0\xb8\x67\x52\xa6\x40\xb7\xf8\xc2\x80\x54\x91\x51\x51\x7d\xc7\x59\x96\x72\x91\x25\xff\x71\x49\x70\xd1\x03\xde\xe3\x52\x4c\xd1\x63\xf6\xd5\xb2\x97\x45\xf0\xfc\xda\xb2\x89\xa2\x7e\x9a\x72\xd9\x46\x71\x32\x91\x5e\x36\xc9\x72\xc6\x8b\x96\xd9\x94\xe0\x50\xfb\x4a\xdf\x95\xe6\x47\x88\x96\xce\xb3\x09\x10\x5a\x69\x69\x79\x20\xe0\x5c\x69\x4e\xc5\xb6\x8f\x49\x29\xbf\xea\xa2\x6b\x74\xe9\x4a\xb5\xab\x5d\x42\x59\x73\x6e\xd5\x6c\x5e\xf9\x99\x5c\xe3\x91\x92\xca\x3d\x8c\xed\x1e\x48\x55\x2c\xa3\x40\x88\xa9\x1e\x65\x80\xeb\xd1\xdc\x1a\x46\x50\xa5\x0e\x0f\xc4\x88\x2b\xfe\xcc\x6b\xcb\x3d\xc8\x78\xcb\xdb\xce\x65\x66\x76\xf0\x56\x99\xc1\xc9\x3e\x3c\x7e\x1e\x26\xce\x91\x17\x92\x3f\x11\x9d\xc7\xbb\x54\x68\x0a\xbf\xcf\x5d\x2d\x96\x07\x1b\x70\x53\x58\x9f\xfc\x7d\xb9\x03\xa5\x6f\x3c\x9e\xf0\x44\xca\x92\x1d\x95\x6b\xb0\x94\xef\x4b\xb0\x3a\x1e\x25\x70\xb2\xa0\x01\x45\x11\x19\x84\x36\x2e\x91\xf9\x9d\x2f\x9b\xfe\x90\xe9\x82\x43\xfc\x69\x72\x34\xaf\x4c\x90\x4a\xf6\x60\xbf\x14\x4c\x91\xbb\xf2\xeb\x04\xdf\x29\xd6\x34\x79\x41\x17\x55\x99\x58\x2d\xa0\x53\x7f\xe1\xad\x04\x28\xba\x2f\x6a\x44\x60\x91\x3d\x1c\xf9\x52\x70\x9d\xe1\x0d\x55\xe3\xff\x61\x1e\x01\xa8\x08\x9e\xe7\x31\xbc\x3f\x08\x06\x0a\xd4\x5d\x2c\x9a\x51\x24\xfd\x77\x42\x61\x2b\xb1\x75\x76\xa5\xcd\x92\x08\x1d\x6d\x6c\x9f\x20\xde\xe8\xcd\xeb\x94\x22\xee\x6d\x05\x75\xbd\x4c\x1b\x6f\xd0\xee\x1a\x4e\x9b\xad\x9c\xea\xd6\x4e\xfb\xc9\x02\x75\x3f\x27\xba\xe5\x1e\xee\x7e\x44\xfc\x92\x55\xd4\xad\x40\xea\x4f\x09\xec\xfa\x9b\x3e\x8a\x73\xef\xe2\x67\x5e\x43\x72\xbb\x10\x59\x79\x61\xf2\x5d\x26\x14\x1d\xf0\x7c\x97\x14\x75\xd6\xbf\xa2\x3b\x92\xde\xe8\xb1\xbb\x8b\x42\x28\x5e\xaf\xea\xa9\x21\x9c\x5d\x5c\xed\x03\x25\x32\x26\x2b\xfa\x3f\x27\xda\x0d\xa6\x0e\x3e\x49\x94\xef\xf4\x18\xf2\xc0\x6f\x09\x2e\x0c\xcb\xe2\x3f\xf3\xa6\x86\x53\x13\xcf\xb0\xa3\x87\xbb\x12\x9d\x0a\x8c\x86\xe7\x13\x9b\xe8\x17\x87\xd7\x09\xf0\xf4\x73\xc3\x6b\x49\x86\x04\x91\xe1\x8d\x64\x18\xe6\xfe\xf0\x6c\x0a\x3f\x2a\x76\xe4\x56\x5a\x00\xec\xe0\x08\x8a\x74\x13\x90\x3f\xfa\x28\xe3\x86\xcf\xae\xa1\xc7\x71\x57\xb6\x5c\x46\x5e\x60\xb9\xab\xc4\xd1\x5f\x58\xa3\xd9\xe0\x71\x24\xe6\xeb\xa8\xd6\xc4\x5f\x0c\xa9\xf7\xe4\x94\x04\xc6\x59\x38\x3b\x7d\x0e\x73\xbf\xbe\x7c\x3a\x1d\x63\x58\x89\x9d\x39\x81\x09\x61\x01\x67\x0c\x30\xd3\xb9\xc4\x99\x78\xac\x21\xb9\x7e\xa6\x31\x4e\x3c\x75\x75\xe6\x5d\xdc\x5a\xc2\xbe\x99\x8d\x78\xf5\xd8\x03\x33\xcb\x09\x51\xe1\xc7\x67\x6b\x12\xe1\xc1\x3e\x73\x51\x49\x7e\xfe\x95\x13\xdf\x91\xf3\xdb\xbc\xe9\x73\x48\xcc\xda\xf3\x99\x76\xe4\xc9\xc5\x1b\x73\x6e\xd1\x49\x13\x9f\xe7\x57\xa3\xd5\x07\x08\x8b\x62\x88\x77\x1d\x3e\x4b\xca\x88\x6a\xbe\xc7\xd2\x3a\xa2\x8c\x07\x5a\x26\x21\xaa\xd9\xd8\x15\xd1\xe8\x3d\x05\x82\x15\x60\xb4\x67\xf6\xde\x95\x31\xe4\xf1\x0c\xfd\xd5\x47\xc8\xb1\x24\xd2\x6a\x5b\x4c\x37\xb6\xe5\x9d\x5b\xec\x47\xc4\xf8\x7b\x5f\x74\x37\xec\xc3\x87\xf7\x71\x72\x80\x9e\xf9\x2f\xe1\xe5\xdf\x2f\x2e\xea\x85\x27\x6d\xae\x2d\x6b\x86\x7d\x5e\x61\xad\xec\x84\x05\xce\x44\xbc\x2b\x81\x7f\x1d\x39\xfa\xe1\x22\x3c\xa9\x7b\x66\x4d\x17\x6e\x26\x94\x5c\xb7\x82\x2b\xd7\x7b\x6e\x5c\x80\x2b\x55\xb6\x6f\x7c\x84\x5f\x2a\xb9\xb4\x69\x0e\x27\x31\x43\x37\xeb\xe0\xff\x28\xad\x1f\xe5\xc3\xea\x88\xbb\x3f\x86\x87\x7b\xe0\xef\x6d\xc1\x23\x24\x50\xb6\x9f\x02\xfe\x43\xcc\xaf\x43\x88\xaf\xc1\xb4\x35\xbb\xe0\xc2\x1d\xd0\xfa\x58\x70\xf1\x96\xfe\x26\x3c\xf8\xcd\x3b\x9f\xad\x03\xe0\xcd\xb9\xd4\x4f\x2e\xe0\x86\xb1\xe5\xcf\x05\x60\x52\xff\xcb\xed\x06\xb0\x7b\xfb\xa7\x2f\x3d\xe0\x47\x7c\xee\x57\x16\x58\xbb\x26\xf8\x9b\x1f\xd8\xa5\x5c\xe5\xbb\x28\xb8\xad\xa8\xf2\x3b\x3d\x38\x88\x21\xbf\x73\x3d\xe4\x62\x16\x6c\xa7\x29\xe4\x57\x4a\xe3\x0f\x4f\x48\x3d\x6e\xe9\xa7\x37\xd4\x0e\xd9\xf6\x57\x1e\x56\x1e\x6a\x08\xcb\x1f\x4d\x6d\x89\x0a\xed\x1e\xd5\xa9\xfd\x06\xb7\x1a\xb3\xa9\xdc\x0d\xaf\x1a\x67\x97\xdc\x80\x6b\x4e\x06\x33\xcb\x43\x01\xd3\xaf\xa9\xa6\x30\xe1\x0c\x9b\xe8\x01\x9d\x9f\xfd\x83\x47\x42\x16\xe6\x1f\xa2\x2f\x85\xb4\x2c\xa8\x45\x56\x04\x7f\x58\x28\x86\x1d\x09\x3e\xbb\xf0\x19\x08\x05\xeb\x2e\x5e\xf7\xbb\x0e\xca\x59\x8c\xf0\x70\x01\xed\x5e\x1c\x71\x22\x00\x9f\x2f\x96\xdb\x80\x01\x84\xc5\x87\x66\x27\x22\x4b\x06\xd8\xc2\x38\xc4\xed\x81\xac\x7a\x0c\x62\x63\xb0\xaa\xaa\x24\xda\x7f\x68\xb8\x74\x2d\xfa\xd9\xc8\xc3\x7c\x38\x62\x7a\xb4\x87\x7e\x1c\x01\x1e\xbf\x91\xae\x1e\xb5\x39\x11\x42\x90\x88\x92\x99\xc4\x60\xfc\x23\x2f\x4f\x45\x45\xad\x47\x68\x4e\xeb\x84\x9e\x0e\x37\x99\xfe\x0b\x8a\x08\x03\xcf\xd0\xfd\xcf\xc0\x9b\x67\x65\x3d\x5f\xc3\x95\x67\x33\x9c\xa3\x43\xdd\x66\x59\xb6\xe1\xb0\xd5\x59\x57\xf3\xe7\xb1\x8e\x3d\x29\x6d\x38\xb4\x7e\x4f\x64\xa3\x10\xa3\xd3\xeb\xc8\xe5\x60\x8f\xf7\xb9\xb2\x9b\xb1\xa6\xfd\xa9\x85\x11\xd8\x1b\x03\x5b\x39\x7b\x31\x3b\x43\xfa\x99\x4f\x31\xe4\xe1\x84\xe4\x63\x98\xe3\x23\xb5\x71\x4a\x68\xed\xd1\xae\x68\x7f\x94\xfb\x58\x2b\xdc\x34\x36\x6a\x3c\x1f\x3c\x16\x93\x39\x11\x1a\x60\x8e\xfc\x3c\xa9\xe5\x05\x47\x1a\x4f\xee\xb8\x14\x45\xd7\x4d\x01\xed\xba\xa3\xf1\x53\x66\x16\x6c\x9c\x59\x47\x41\xa7\x71\x82\x72\x47\xb2\x00\x8e\x4f\xed\x94\xab\x95\x4a\x44\x74\x89\x94\x6f\x13\x8c\xbb\x0f\x17\x77\x10\x02\x7a\x14\x72\xd5\x09\x21\xbd\x86\x64\x14\xe1\x5a\x1f\x2e\xf5\x45\x62\x53\x7f\x4d\xbc\x4a\xa2\xdc\xc0\x58\x8c\x19\xde\x7b\xf0\x6b\xd8\x50\x42\xc2\xd0\x9f\x10\xdb\x78\xd6\xf0\x4e\xe0\x12\xee\xef\xc8\x5f\xef\x39\x9c\xfb\xe8\x5f\xb7\x3d\x71\xcd\x63\xeb\x0e\xea\x71\xef\xc7\x7e\x59\x1d\x4c\x6a\x6c\x3d\xda\x73\x23\x25\xbd\xf5\xa6\xd0\x34\xed\x59\x6b\x78\x7d\x03\xd1\xae\x4d\xb9\x0a\x46\x0a\x6b\x1b\x2c\x75\x20\x09\xdb\x93\xf3\x4a\x49\xcb\x1d\xfa\xb4\xa3\xa4\xee\xce\x97\xa4\xa3\x24\x5e\x97\x7f\xa2\x38\x49\xaa\x1b\x8e\xb6\x20\x62\x7b\x0a\x22\xe9\x69\xc2\xde\x77\xd0\x9e\xd4\xf5\xbe\x1d\xa0\x72\xaa\xf6\x80\x94\xef\x48\x4a\xfd\xa0\x8e\xfb\x44\x8a\xda\x90\xaf\xe3\x7c\x0a\x7e\xf8\xa1\x75\x71\x3a\x54\x80\xea\x7f\x90\xe9\x2e\x08\x6e\xbf\x4f\xbe\x21\x20\x34\x31\x29\x51\x82\x6d\xde\x13\x2a\xb7\xd9\x8d\xb3\x8f\x66\xd5\xbc\x5a\x18\x4c\x43\xb7\x04\x65\x17\xd1\xa2\x84\xe7\x33\xf8\x34\x6f\xe1\x56\x52\x1b\x75\xb3\xb5\x15\xfb\x87\x6a\xd5\x56\x19\xed\x4a\x69\x6f\x9f\x85\x1b\x53\x24\x3b\xd5\xc0\x5c\x32\xbc\x0b\x18\x70\x95\x2c\xde\xcd\xf7\xda\x93\x95\xdd\x2b\xe1\xbc\x90\x15\xd3\x17\x63\x5b\x44\xcb\x6f\xb8\x39\x64\x9f\xfd\xae\x7e\xa1\x0b\xc3\xe8\xad\xef\x69\xb9\xcc\x0c\xaa\x9f\xa9\x1b\xcb\x43\x37\xdc\xae\xb4\xce\xf7\x6f\xc8\x64\x0d\xe7\x33\x1b\x1f\xe6\xbe\xcb\x2f\x6b\xec\x22\xff\xc9\xb7\x6f\x0a\x4f\x9d\xcb\x3f\xc4\x7f\x11\xbf\x9c\x17\x24\xb8\x16\xfb\x9c\xf9\xa9\xf9\x61\x78\x37\xf3\x69\x0b\x19\x22\x95\x9b\x2c\xfc\x1d\x04\xcb\x7d\xd0\xf6\xca\x47\x96\xf1\xb7\x1d\xeb\xba\x91\x2b\xd3\xa9\xe6\x20\x52\xe0\xc0\xdb\x3d\x16\x5f\x44\xe2\x86\xf7\xd1\x59\x10\xae\x6f\xfb\xe3\xd2\x63\x5c\xdd\xa6\xf5\x32\x31\x2e\x84\x67\x51\x36\xc0\x2d\x61\xe7\xb3\x6f\xf0\xc4\x0b\xca\xd9\x3a\xbc\x04\x7a\x2a\x7b\x77\x8d\x76\x7a\x60\x59\x42\xed\x49\xc2\xeb\xd2\x3f\x75\xa2\x18\x5a\xa9\x4b\xfd\x45\x84\x6c\x09\xaf\x21\x3f\x74\x1f\xeb\x6f\x93\x06\x48\x82\x05\xe0\x63\xfd\x5c\x59\x6f\x04\x74\xf7\x6d\x96\x7e\xf3\x27\x47\x06\x67\xa0\xfc\xed\xd4\x64\x45\x53\xf9\xb1\xe1\xdd\x55\x8d\xe5\xa7\xba\x61\xd5\x63\x9c\xc5\x96\xef\xdc\x11\xce\x58\xbd\x27\xcf\xa1\xfc\x60\x25\x9a\xd7\x5b\xfe\x92\x95\xc9\x6b\x2f\xaf\xca\xbd\xc9\x63\x55\x3c\xc9\x9a\xe2\x69\x54\x2c\xa4\x40\xb9\xd9\x95\x1c\x9c\x3f\x77\x7f\x55\x03\x72\xad\x3a\xa8\x7a\x3b\x8c\x56\x35\xcd\x83\x07\xaf\x56\xdd\xaf\x3d\x1c\x28\x5b\xf9\xab\xce\xd4\xeb\x6d\x65\x5f\x7d\xa1\x33\xa2\xae\x92\x25\x35\xdf\xd4\xe0\x5e\xdc\x3d\x5e\xdf\xb4\xbf\x38\x7f\xe0\x3c\x7f\x4f\x71\x5a\x87\x33\x7f\xa8\x38\x89\x5f\x2a\x30\x2e\xae\xe6\x35\x08\x32\x8b\x37\xd8\x05\x02\x34\x4b\xb7\xe0\x81\xc0\x94\xd5\x4a\xa3\xf1\x97\x4b\xdc\x48\x97\xf9\x3e\xa5\x87\xf1\x35\x4d\xeb\x65\x52\x68\x89\x26\x1b\xf6\xe5\xc8\x98\xc6\x15\x0e\x11\x5a\xd9\xe8\x58\x71\x00\xf0\xaf\xf1\x40\xa5\x8b\xaf\x7a\xc3\xa7\xaa\x7a\xb7\xd3\xad\x04\x66\xf9\xca\x4e\xbb\x28\xf3\xc9\x0c\xab\x23\x8a\x69\x32\x7a\xb2\xd3\x9c\x29\xd9\x6b\xd2\x75\x9e\x29\xda\xea\xdf\x55\x98\xfb\xad\x01\xde\xd5\xc6\x94\xac\x52\xe9\xe2\x32\xaf\xb0\x6a\xba\x1c\x99\xf8\x5c\x95\xae\x63\x79\x52\x59\xac\xce\xb4\xbc\xe9\x14\xb7\x4e\xb1\xfc\x6e\x9c\x79\x07\xa6\xf0\x30\x32\xb7\xe3\x50\x91\x59\x98\x72\x3b\xad\x78\x34\x58\xb1\x5d\xad\xc4\x22\xe0\x72\xbb\x71\x29\xdd\x83\xd6\xe7\x49\xad\x5b\x83\xf4\x67\x51\xed\x17\x2d\x07\xb2\xa9\x4f\x26\xe1\x83\x70\xea\xd5\x41\xce\xd0\x03\xaa\x74\xa7\x60\x88\x4f\xf9\x2d\xa0\x0d\x9f\xa7\xee\xa9\xb1\x1d\xbe\x4d\x95\x65\x7f\x1d\x3e\x4f\xf5\x2b\x88\x1f\x1a\xa4\x8e\xd3\xe5\x87\x92\x68\x28\xd2\xcc\x90\x21\x5d\x3f\xb1\x68\xf0\x77\x76\x0a\x7a\x6d\x30\x38\x67\x22\xea\xda\xe0\xdd\x5c\x33\xe8\xe6\xc0\x17\xe6\x30\x60\x72\x60\x23\xff\xa2\x8f\xcd\xe8\xef\xf4\xc3\x1f\x95\xc7\x77\x93\x04\xab\x47\x27\xf6\x92\x52\x66\x95\x27\xcf\x91\x5c\x46\x5f\x4e\x49\x93\x6e\xf6\xfa\x4c\xb1\x48\xf2\xad\x2f\xa7\x6f\x92\xce\x37\x28\x4c\xbb\x90\xde\x54\xce\x4d\x63\x49\x68\x16\x63\xda\x81\xb4\x9c\x1b\x35\x7d\x2b\xdd\x8a\x6c\x3f\x2d\x9a\x21\x9a\xaa\x37\xf5\x31\x63\x2b\x5e\x6f\x8a\x9f\xf5\x32\x06\x3f\x95\x4a\xce\x0d\x9b\x9f\x22\x53\x6f\x06\xc3\xa7\xea\xe9\x47\x02\xce\xcc\x4a\x26\xf9\x7d\xee\x9b\x73\x48\xba\xf4\x81\x3c\x6f\x99\xb4\x77\xa1\x62\xc1\x94\xd0\x3b\xd1\xba\xa8\x43\x48\x1c\x98\x5e\xda\x4d\xf0\xef\x18\x5e\xa2\x11\xac\xf9\x8d\xcb\xc7\x09\xe1\xbc\xbc\x65\x67\x42\x03\x3b\x6e\x39\x21\x69\x4f\x41\xfc\x72\x65\x92\x19\x9d\xb6\x3c\x94\xb4\x9d\x5e\xbd\xfc\x3d\xb9\x9c\x30\xb0\xa2\x91\x32\x8d\xf9\xb1\xa2\x9d\xa6\x8a\x50\x5d\x99\x25\x2e\xc3\x62\x56\x4b\xd2\xff\x00\x1e\x2d\x8b\xe2\x7c\xbf\xd5\xaf\xd8\xe2\x54\x37\x9d\x57\x81\x71\xef\x56\xdc\xdf\x85\xc5\xe5\xcf\x78\xbe\x47\xc7\xd9\x8f\x98\x7d\x88\x8e\x93\xee\xd1\x59\x33\xc0\xfe\x15\x9a\xac\x1f\xc2\xae\xd7\xbb\xad\x23\xe2\x4e\x56\x86\xaf\x6f\xc7\xdd\x67\x65\x6e\xe8\xc5\xc5\xe4\x0a\x37\x0a\xe2\xe6\xc9\x1f\x37\xf7\xe2\xf2\xd2\x64\x36\x9d\xe3\xa1\x09\x2f\x36\xc7\x12\xca\x62\xed\x3e\xfa\xe2\x77\xc2\x83\x3e\x5b\x25\x5d\x02\xff\x5e\x83\xc5\x1a\xfc\xbc\xbe\xce\x8c\x95\xff\xbc\x6f\x43\x18\xb3\xf2\xe1\xc0\x66\x7b\x4c\xee\x82\xe8\xc7\xd5\x98\xb7\xe3\x6b\x9f\x94\x90\x9f\xfb\x59\x9f\xd5\x91\x8d\xed\x63\xdb\x6a\xc8\x12\xbe\xc6\xf6\x1f\x64\x0d\x2f\xfc\x4b\x35\x52\xc8\xee\xff\x6a\x12\x73\xbc\x50\xfe\xeb\x5c\x8c\x5f\xb6\xcf\x37\x58\xec\xfe\x8c\xea\xef\x67\x62\xeb\x92\xf7\xec\x28\xa2\x2a\xe3\x74\x7e\x6c\x63\xa4\xa2\x11\x7f\xe3\xb0\x86\xd0\xdf\x9f\xc9\x11\xc5\x7f\xd2\xb7\xb1\x11\x9d\x5f\xe3\xbe\xc4\x47\xd4\x6d\x30\xbf\xe2\x22\x20\xcb\xb9\xdf\xe2\x22\x54\xa7\x49\xdf\xfb\xc3\xe9\xc3\x46\x3f\x94\xc2\x6f\x74\x07\xfc\x54\x0a\x17\x6d\xd9\xf9\x25\x1f\xf6\xab\x1e\xf9\xeb\x47\xd8\xf7\xaa\x3d\xbf\x3b\xc2\xf7\x96\xc0\xff\x00\xc3\xdd\x99\xd3\x7f\xa5\xc2\xfb\xa8\x77\xfe\x36\x44\xbc\x24\xe2\xfe\x51\x22\x92\xf0\x83\xff\xfe\x45\x7c\x42\x8d\xfe\xfb\xf7\x1f\x62\x8a\x88\x38\x83\x82\xc0\xff\xd3\x9b\xf9\xbf\xdb\xff\x1f\x7c\xa0\x3b\x22\x22\xbb\x1e\xfe\x5f\xba\xbb\x45\x44\xfe\xfd\xfb\x7f\xcb\xff\xcd\xf9\xb9\xab\x94\xf7\xef\xef\xdb\x17\xff\xa7\xbd\xb3\xf8\xfc\xbf\x7f\x46\xef\xff\x6b\x8f\x88\xfc\xcf\xfc\x2f\xdf\xe7\xde\xff\x3c\xa6\xa6\x22\xbb\xc8\xbe\xff\x23\x1f\xb2\xd3\x15\x11\xd9\x7d\xf5\xdf\xbf\xd1\xc3\xff\xcd\x1b\xfa\xbf\x7a\x09\x69\xff\xd5\x3b\x18\x20\x22\xb2\x5b\xfb\x7f\xdf\x5b\xf2\xfc\x1f\xf9\xf0\xb6\x9e\x88\xc8\xae\xd9\xff\xd9\xdb\xbd\x7b\xf7\xff\xcd\x2b\xfa\x5f\x47\x89\x72\x22\xba\x92\xef\x94\x5a\x15\x23\x36\x1e\x7b\xab\xf5\x70\x6f\xa6\x3f\xf5\xee\xd7\x3d\xf8\xe4\xc7\xaf\x20\x3c\xe3\x81\xdb\x5b\x30\x29\xaf\x6f\xc3\xff\xfe\x0d\x5e\xfc\x6f\x7f\xed\x76\x73\x13\x11\xf9\xe4\x2c\x22\x72\xec\xa5\x88\x88\x28\x5e\x44\xe4\xf0\x09\x11\x91\x3d\x37\xfe\x33\xff\x5f\xf7\x7c\x9f\x3e\xf9\xff\xbd\xc3\x55\x52\x93\xde\x5c\x00\x94\x25\x51\xad\xb2\xfb\xe5\xbc\x29\xc7\x69\x12\x0a\xd0\x2c\x6a\x46\x9e\xb2\x6b\xfa\x64\x32\x5f\xe9\x6e\xa6\x6e\x82\xbe\xca\x97\xf4\x32\x0c\x46\xa5\x8e\x14\x8e\x3a\xa3\x06\x88\x0f\x04\x42\xd5\xde\xc5\x15\xb8\x65\xab\x55\xc4\xd9\xba\x24\xaa\x45\xc4\x9d\x72\x82\xc8\x6d\xc6\x72\x74\x5a\xe4\x8f\xa1\xda\x55\x91\xf2\x29\x68\x39\xa5\x62\x05\x59\xb4\x9f\xc2\x0d\x39\xc7\x58\x84\xd4\xe0\xf9\x0e\xda\x8b\x2a\x9e\x04\x84\x12\x9f\xf7\x4b\x4e\x34\xeb\x14\xd5\x4a\xfe\x74\x86\x61\xe6\x9a\xe2\x37\x12\x39\xc5\x5b\x99\x90\x26\x95\x40\x57\x52\x27\x0a\xd1\x18\xf5\xe5\x18\x17\x90\x84\x3a\x09\xc3\x0d\x2a\x52\xed\xc5\x4e\xb9\xdc\x56\x1b\xc4\x8c\x39\x8d\xa9\x5d\x43\xc7\xd9\xec\xc8\xb7\x84\xbb\xaa\x7d\x50\x28\x8d\x18\x51\x91\x56\x38\x11\xf3\x5d\x41\x57\x61\x36\x36\x45\x76\x49\x31\x0b\x25\x25\x3d\x7e\xae\x94\x72\xac\x0a\x7a\xf6\x4f\x66\x0b\xe7\xb4\xc4\xb5\xf4\x75\x46\x8d\x5c\x15\xd1\x35\xc3\x45\xfe\x67\xca\x6a\x6a\xb7\xf2\xd9\xa4\xdf\xb8\x49\x45\x7d\x44\x4b\x08\x50\xb5\x15\xf5\x3c\xe4\x88\xfa\xb9\x68\x67\x6f\xaa\xfa\x62\xf4\xbc\xf3\x55\x75\xe9\x18\x53\xbb\x53\x8a\x2c\xf8\xc8\xeb\xa3\x8a\x94\x10\x37\xd5\x6a\xc5\x8e\x30\x19\x25\x6d\x25\x62\xc4\xac\x3c\x5c\xc9\x05\x59\x27\xdd\xa6\x2c\x1f\x03\x92\xec\x38\xb1\x90\xd5\xd6\x76\xf7\xb4\x02\xb1\xa5\xc2\xe1\xdc\xae\xd4\xe4\xa2\xfb\x12\x8e\xf8\x9c\xcc\x6c\xe9\xf0\x84\x8e\xe4\x78\xd9\x17\x91\xba\xf0\x35\xc5\x2f\x61\x7b\x41\x10\x55\xcb\x50\x51\x5f\x29\x75\x0d\x48\x90\xf3\x11\x75\x27\x00\xcc\xd0\x5f\xed\x1f\x18\xa2\x77\x4d\xf9\x96\x2f\xed\x82\x9b\xca\x3a\xd0\x46\xa5\x4b\xf9\x5b\xb0\x96\xc2\x82\xca\x93\xd0\x9f\xb2\xbd\xaa\x87\x22\xde\x4b\x35\xa9\xfc\x8c\x8e\x15\xf7\x3f\x7a\x23\xb9\xb3\x0d\x78\x52\x1f\x7b\x85\xcd\x3d\x15\x89\xb2\x66\xb8\x9d\x15\x8f\xae\x23\xde\x97\x4c\x80\xed\x43\xde\x95\xbe\x0b\xc0\x83\x5c\x14\x08\x80\x53\x7e\x47\x55\x49\x7e\xc3\xce\x21\xea\x6f\x3c\xfe\x19\x09\xd4\x95\x7d\x4f\xe9\x77\xab\x6c\xb9\x4d\xde\xe6\x28\xdb\xb8\x9d\x50\x2e\x54\xd5\xf7\x22\x29\xd4\xab\x75\x04\xbd\x90\x07\xa9\x55\x80\xaf\xca\xe8\xa9\xef\x82\xcd\x49\xa6\x99\xb7\x63\xe3\xcf\x3e\x3f\x74\x17\x0d\xed\xb0\x3d\x7c\x16\x55\xd7\x08\x3a\xc1\x0c\xc5\xd2\x58\x67\xa2\x81\xdf\xe3\xf5\xc4\xf1\xfe\xcf\x23\x11\x12\x25\xee\x6b\x81\xd2\x72\x4b\x2e\xfb\x9c\xa7\x55\x45\x1d\xc7\x2d\xc3\xd4\x4e\xd8\xad\xbf\xa9\x50\xcb\xb5\x20\xde\xfd\xa1\xa6\x6f\x21\xa2\x56\xa8\xe6\x6a\x7b\x48\xb1\x4d\x15\xe7\xb4\x2a\xf5\x47\xfd\xad\x87\x87\xe4\x97\xe7\xc9\x41\xfb\xc4\xb9\x16\x9d\xe1\x1d\x62\xfa\x9e\x4f\xe2\xad\xc5\x79\x07\xf6\xc2\x59\x9d\xb4\xfd\xa6\xf0\x1d\x3e\xfd\x58\xb3\xdf\x2f\xb2\xc8\x69\x05\x4f\x16\x0e\x7c\x8e\xe6\x30\x06\x9d\x3e\x07\xb3\x2c\xf2\xc2\xcb\x5e\x31\xa9\xb2\xbe\xa1\x7c\xd6\xb0\xe8\xad\x84\x5a\xb3\xde\xea\xe3\x08\x8d\x83\xaf\x7b\x2e\xce\x5d\x40\xea\x0b\x55\xbb\x2f\x9a\x1a\x8b\x48\x3b\xde\xfb\x67\xb5\x72\xde\xe9\xf5\x94\xbb\xd5\x79\x9a\xe5\xe3\xa0\x9b\x62\x79\x2e\xea\xa1\xe2\xe2\x7b\x02\x4e\xc5\xce\x8a\x9f\xd8\x7d\xd1\xc7\xac\xe7\xee\x2e\x2f\x2f\x54\xb3\xcb\xa1\x35\xdb\xfb\x64\xc2\xe1\x6c\xf3\x70\x94\xd8\x89\xcb\x86\x10\xa0\xa6\xe8\xcd\x57\x97\x1d\xe2\x64\x8e\x3e\x9b\x37\xce\x56\x82\x69\x41\xb4\xfd\xd4\x51\x8f\x2e\xde\xda\x7f\x71\xe6\xf1\xa6\x86\xe1\xcd\x57\xcf\x6f\x28\x9a\x3c\xee\xd0\xe3\x4b\xfd\x78\x53\x67\x11\x22\x7e\xd8\x2c\xdc\x71\xf6\x5c\xab\x33\xd0\xef\x99\xd8\xef\x40\x47\xc8\x2b\xf1\x91\xb0\xb9\xe8\x65\x89\x43\x47\x6d\xad\x5f\xf4\x24\xed\x19\xb2\x6c\x6b\xf1\xdc\x8b\xd6\xbb\x4f\x5d\xdd\x2f\x78\x45\x44\x47\x1c\x45\x68\x55\xfb\x03\xce\x3d\xbe\xa7\x61\xfb\x57\x72\xf3\xea\x8a\x8e\x8f\x62\xd2\x65\xa9\xfb\x53\x6a\xdf\xfe\x73\xef\xb8\xdc\xba\xa6\x7e\xe6\x69\xd4\xe3\x2a\xc5\x61\xfd\x0b\xaf\x5f\xcb\x9a\x5a\xa4\x9a\xa8\x49\x9d\x70\x02\xd8\x0e\x8a\xc5\xf8\xe5\x79\x86\x88\x0f\x40\xbb\x40\x4c\x49\xe3\x58\x72\xc4\x2e\xa9\x3b\x1a\xee\x57\x4f\xf5\xef\x91\x90\xbf\xf1\xba\x2d\x60\xef\xe3\x47\xa0\x5c\x97\x83\x7a\xb7\x7f\xa2\x2b\xcf\x0d\x5d\x1d\x07\x3c\x91\xfb\x71\x51\xc3\x4e\x57\x4d\xa8\x9a\xad\x9b\x73\x4d\x51\x79\xee\x51\xc6\x5d\x73\xa5\xcc\xcb\x81\xda\x84\x8b\x96\xea\x95\x6f\xbd\x6e\xf5\x2b\x4d\x59\x51\x34\x6f\xcb\xfb\xb9\xcc\xbf\xb9\x29\x73\xc9\x37\xde\xcc\x59\x42\x03\xe2\xec\xe4\x26\xf9\x16\x93\x13\x14\x26\x23\x9f\xf8\x27\xa4\x54\x26\x43\x23\xec\xaa\x48\xff\x21\x8d\x67\x57\x3e\xf5\xcd\x9d\x17\x55\xff\xc8\xbe\x25\x06\x52\x8d\x4e\xd8\x56\xdc\x54\xfe\x15\x7c\xf9\x92\x94\xe2\x7e\xc7\xd1\xdb\x0d\xd2\x3f\xde\xda\x3c\xbe\x29\xfd\x42\x93\xfb\xfc\x87\x94\xc8\x35\x23\xc3\x0a\x15\x3b\xb5\x12\x6b\xda\x05\x09\x65\xa2\x0b\xfd\xe6\x8c\x7c\xb2\x7f\x9e\x96\x92\x4c\x29\xf8\x83\x8e\x97\xe4\x79\xe4\x37\xf3\x9f\x52\xc1\x84\xbf\xae\x67\x64\x47\x53\x67\x02\x1c\x64\x6d\x35\x52\xae\x7c\xea\x3f\xa1\x11\x70\x65\xb0\x6f\x5d\x96\xa0\xb4\x51\xff\x50\x61\x4e\x86\x9d\x71\xf5\x66\x8c\x0c\x23\x4c\xf7\xe9\x11\xd9\x20\x9f\x6f\xba\x26\xb2\xb7\x6c\x0f\x19\x65\x48\x75\xea\xcb\x9b\xa7\x48\xe0\x1e\x66\xd8\x3d\x97\x16\xbf\xf4\xc3\xd5\x54\xf1\xb8\xd2\x2f\xff\x69\xe5\x62\x79\x7a\x70\xdc\x15\x90\xf4\xb7\x98\x6b\xcf\xf6\x4b\x46\xe3\xc5\x5e\x15\x4a\x4b\xa7\xbe\x37\xd9\x91\xc9\xa6\xbe\x71\x44\xcb\xae\x69\x14\x5e\x59\xe8\x3f\xa7\x91\x75\xa5\xbc\xef\xa7\xea\x59\xb9\x3c\x21\xfd\xe9\xba\xe4\x22\xe3\xac\x41\xa4\xcc\x18\xf6\x8f\x75\x88\xdc\x1d\x58\xb2\x83\xb5\xac\xd0\x73\xaf\x9b\xb8\x94\x82\x95\xb7\x47\x8b\x18\xf9\xd5\x86\xdf\x47\x89\xf9\x7b\x7b\x01\xc5\x32\x3f\xd5\x9a\x61\x43\x72\x61\x0a\x7f\x11\x7f\xe4\xbf\xcb\xed\xc2\xea\x5c\xa8\x14\x4b\x4c\x31\xd6\x2c\x97\x70\xcf\xd0\xd6\x35\x92\xfe\xce\x78\x6f\x7a\x41\xc6\x41\x83\x7f\x65\xa0\x5f\x4a\xa3\xe3\x4a\x4a\xff\x7e\x3d\xc3\x33\xb6\x42\x96\x3d\x48\xd2\xa8\x60\xd8\x2f\x52\xe6\x69\xba\x51\x90\xbb\xec\x50\xcc\x6f\xd0\x51\x99\xc0\x10\x26\xe4\x82\xc4\xa0\x3b\x35\xf4\xa6\xd8\x3b\x33\xbb\x08\x27\xf1\xc7\x2f\xf6\x44\xfb\x49\x2c\xdd\xa1\xc4\x6e\xca\x44\x28\x4f\x27\x02\xe5\x22\x14\x7e\xa5\x35\xcb\x9f\x94\x1d\xa2\xed\x55\x68\x96\x09\xcc\x23\x69\xbd\x93\x94\x2d\x7a\xab\xd3\x23\x05\xbc\x18\x7c\x79\xb1\x2f\xe4\x62\xfa\x65\x52\x9f\x67\x70\xc7\x39\x93\x0e\x4b\xc4\xf0\x79\xf7\x46\x5d\xe4\xba\x64\x20\x73\x2f\x2a\x5b\x6a\x98\x74\x02\xbb\x28\x25\x85\x92\xc3\x07\x48\x64\x82\x3f\x12\xd2\x24\x87\x9d\xc7\x52\x9c\x24\x43\x4d\x5c\xd3\x52\x24\x41\xda\x7d\x19\x3b\x52\xf9\xb7\x7e\xa5\x37\xcb\x6a\x29\x5f\xa0\x43\x65\x9a\xe4\x89\xac\xbb\xb2\x53\xb2\xd6\x4d\xe5\x4a\x9f\xe4\xe7\x04\x55\xaa\x5e\x8a\xd2\x97\xf8\xb7\xd7\x3b\x64\x23\xb5\xa4\x1a\x06\x0e\xe3\x15\x25\xd3\xbb\x7e\xa6\xf7\x4a\xc4\xb6\x5c\x4d\xbf\x28\x15\x57\x7e\x84\x32\x2e\x1d\x5d\xe8\x4f\x5b\x97\x3e\x98\x6e\x41\x11\x4a\xed\x89\xca\x22\x47\x48\x41\xbc\x93\xa9\x63\xd2\x26\xd6\x04\xfa\x37\xa9\x2b\x3a\x6b\xf4\x3f\x92\xf1\x0f\x52\x73\x37\x24\x2f\x29\xf7\xd5\x0a\x24\x55\xe5\x9b\x04\xca\x0a\x32\x8a\x3f\x9a\x47\x94\x6f\x29\x55\xb6\x2c\xa9\x5e\x50\xbe\x8c\x3a\x23\x5b\x39\xb4\x9a\x66\x2f\xcb\xec\x1f\xa1\x20\xa5\x4d\xba\x4b\xe8\xdd\x92\x56\x6d\xef\xd9\x25\x52\xf5\x42\x68\x9d\x8c\xb4\x22\x5f\x8b\x6d\x20\x73\x9a\x31\x56\xa1\x27\x7d\x2c\xf5\x50\x7d\xad\xd4\xee\xc8\xcf\x25\x4b\xd2\x92\x2e\xc6\x25\xa2\x52\x8f\x8c\x6d\x59\x1a\x12\xf5\x4f\x48\x9c\xcf\x67\x3e\x5d\x51\x68\x8e\x93\xf5\x50\xb9\xd2\xf2\x49\xf1\xb8\x8a\xb3\xb0\x5b\xd9\x59\x25\xa6\xd5\x49\xe5\x9f\x0a\x55\x92\x9b\x63\x5c\x84\x92\x7d\x4b\xdb\x64\xa4\xc9\xa9\x51\x19\xf4\x01\x85\x27\x94\x8b\x59\x8f\x95\x5f\x64\xde\x49\x3d\xaf\xa4\x94\x15\x81\x87\xa9\x8c\x66\x74\x63\x33\x54\xb2\xd2\xd3\xd0\x7b\xd5\x2e\x27\x58\x82\xde\xaa\x4d\xe3\x9e\xbb\xdb\xa9\x31\xe2\xb6\x5c\x8f\xa9\xb9\xc7\xa5\x3b\xb1\xe5\x3e\xa0\x66\xde\x3c\x91\xfb\x89\x1e\x56\xdb\x2d\x8f\xc1\xc8\x2a\x7d\x94\xc5\xa1\x7e\xca\xde\x91\x91\x4d\x18\x96\x68\x16\x43\x67\x4b\x70\x5b\x25\x42\x68\xe6\x85\x00\xd9\x16\x72\x35\xfd\x91\xdc\x40\xe6\x77\x72\xa9\x62\x5f\x86\x7c\xea\x86\x32\x90\xe8\x83\x5f\x53\x92\x20\x4d\x62\x32\x54\xcf\xa6\xfe\x8e\xb9\xa4\x7e\x35\x4e\x11\xa0\xaf\xda\x12\xe7\xea\x42\x55\x6b\xc6\xbe\x70\x56\x51\xfd\x88\x66\x5a\x33\xe5\x3e\xc4\x9c\x78\xf9\x45\xbe\x08\x49\x52\x2e\x56\x38\x16\xfb\x59\xc1\x4b\xa1\x16\xe5\x29\x9b\xa5\x88\x45\xad\x49\x07\x9c\x8f\xa7\x49\x71\xbb\xcf\xcd\x52\x24\x2b\xaa\xc4\x6b\x33\x39\x79\x26\x72\x9e\xe9\xc7\xb2\x4c\xe5\x05\x69\x21\xc4\x70\xa5\x5f\x29\x6f\x12\x2e\x2b\x4a\x22\x4f\x42\x3e\xa9\x56\xa2\x36\x42\xde\xab\x55\xc4\xce\xfa\x93\xd5\x5c\x63\x4f\x3a\xfb\xa8\xfd\x89\xfd\x62\x1f\xa1\x00\x0e\x1f\x79\x85\x53\x58\x83\x2d\xa8\xf6\x2b\xd2\xc3\x7a\x95\xb4\x14\x3f\x23\x35\xe5\x76\x2b\xb9\xc4\x40\xa4\x75\x94\x6f\xc4\x5e\x95\xd4\x38\x79\x9b\xea\xd0\x51\x7c\xfa\x5e\x86\x56\xf5\xc1\xb3\x93\x44\x01\xeb\xab\x84\x08\x21\x93\xbc\x28\x0d\x25\xec\x4b\xcd\x96\xf5\x88\xd1\x44\x84\x2b\x4f\x87\xad\x87\x04\xab\x9a\xc2\xfd\xfd\x44\xd5\x95\x61\xc9\x2e\x5f\xd4\x9b\x82\x37\xcc\x8a\xd4\xd0\xc1\xeb\xba\x6c\x25\xff\x80\xd6\x4b\x37\x54\x16\x41\xcb\xaa\x22\xca\xf9\xd0\x28\x05\x25\x15\x37\x78\x8c\xec\x2b\x95\xb0\x68\x35\x89\x24\x55\x4d\xa4\xaa\x18\xee\x68\x65\xda\x7c\xe7\xf9\x13\xb5\xa9\x0f\x9b\x5f\x9c\xd2\xc2\x50\xf2\x96\xcf\x4c\xc5\xa2\xd2\xa7\x25\xf7\xc0\xff\xa2\x0e\xca\xdc\x0d\x79\x0c\x89\x52\xd0\x00\xda\xfb\x47\xa8\x66\x06\x98\xba\x84\xaa\x0d\xfa\xe0\xcc\xaa\xd4\x8f\xfb\x8e\xe8\xaf\xaa\x94\xbb\x7f\xbc\x0d\x55\x5a\x76\xcf\x52\x06\xab\xd2\x7c\xfe\x2a\xb0\xd5\xc5\x00\xdb\x72\x2b\x6a\x5b\x90\x07\x52\xbd\xea\xad\xa1\xb5\x12\x71\x16\xb7\xe2\x31\x67\x1f\x1d\x6e\xc4\x3d\xea\xb6\x3f\xbc\x19\x97\xd3\xdc\x7e\xe4\x64\x8c\x4f\xc9\xd2\x69\xb3\x50\x3f\x62\x8e\x38\x24\xa8\x07\x69\x2a\xe1\xeb\xbd\x04\x32\x96\xbb\xec\xfe\xcc\xdd\x57\x65\xd9\x19\x6d\xc5\x54\xed\x75\xbc\xaf\xd7\xae\x86\xb6\xb9\xfd\xe0\x9b\xea\x92\xe5\x80\x5a\xb5\xda\x2d\x3b\x29\x05\x13\x35\xa6\x4b\xae\xd4\xbd\xeb\xda\x3e\x7f\x24\x74\x5e\xd6\x80\x4e\x89\xdf\xb2\xd2\x8b\x68\x12\xbb\xef\xdb\x9b\x74\x5b\x02\x71\x28\x2e\x72\xb4\x27\xf7\x80\x54\x64\xbc\x50\xee\xd8\xf9\xe0\xfb\x85\xd5\x27\x42\x02\x4e\xa5\x1c\x3a\xc7\x74\x75\x8c\x30\x3c\x8f\xb4\x7d\xea\x67\x2a\xe3\x6a\x3e\x6b\x47\x54\x96\x35\xd1\x37\xf8\xaa\x0a\x32\x48\xd6\xea\x56\x2f\xd0\xed\xb9\xf2\xf4\x02\xc4\xe0\x92\x32\xfd\xba\x9c\xa9\xa5\x24\x5f\x53\xcf\x6e\xe7\x1c\xe4\x4d\xa2\x67\xd1\x79\x86\xf5\x11\xd0\x55\xb1\x69\x77\xe3\x88\x64\xb1\x2e\xc0\x26\x76\x4e\x9c\xb8\x4f\xda\x7f\xa7\xbf\x75\xd7\x6d\xbf\xcd\x36\x8b\x03\xba\xde\xfd\xec\xa9\x23\x31\x76\x25\x89\xde\xc7\xf3\xcc\x0f\x40\x1f\x9d\x06\xeb\x94\xbb\xca\x4b\xd9\xbd\x7c\x68\xda\xac\xe8\xf9\x74\xe2\x45\x9f\x3a\x4a\x6b\xf0\xee\xe1\x4b\x25\x9a\xf1\x6a\xe7\x6f\x8f\xbd\x0c\x96\x1f\x78\xc2\x35\x40\x4a\x39\xea\x15\x59\xb5\x9f\xdf\xb2\xf2\x72\x0b\x17\x73\x72\xbf\x1d\xb8\x28\x7e\x03\x18\x15\x3a\x24\xbe\x1a\x0e\x8a\x11\x17\x5f\x3b\x9e\xe2\xa0\x34\x70\x6a\x8f\x8f\x5d\x7a\xc7\x95\xbd\xe6\x86\x8f\x72\xf3\xf7\xbb\xe8\xd2\xe2\xf9\x87\x20\xcf\x1f\x02\xb6\xa5\x3c\x34\xc7\x5c\x58\x2a\x47\x1f\xe4\x9a\xfc\xb9\x2c\x79\xf7\xf3\xf3\xda\x9b\xc1\xb7\xbc\x6e\xa1\xef\x07\xdf\x79\xaa\x1a\xf3\x5c\xea\xc9\x6d\x85\x61\x83\x5b\x6f\xb6\x65\x32\xac\x66\xcd\x86\x24\xbe\xba\x66\x3b\xca\x89\x25\x04\xa5\xf9\x56\x4b\x3c\x08\x17\x42\x2b\x25\xe9\xe8\xc1\xc8\x51\x49\x96\x06\xf0\xaa\x64\xff\xf1\x63\x0d\x3a\xc6\x9d\x27\xf7\x22\x9f\x79\x95\x0c\xef\x3e\x7c\xc7\x07\xd7\x75\x36\xf3\xf6\x0f\x50\xb5\x4a\xe0\x0d\x8e\xeb\xca\x75\xe4\xb5\x33\xa6\xc4\xfb\x7f\xaf\x84\xbf\xe8\x7a\x52\x75\x39\xec\xce\xc8\x4b\xd4\xe5\x14\xb5\xdb\x46\x79\xf7\xe4\x15\x7b\x6c\xb6\x9e\xbd\x94\x7b\xe9\x96\xa7\xaf\x29\x7d\xd8\x9f\x6d\x75\x5a\xe2\x55\xe8\x3f\x57\xbc\x64\x1a\x36\x1b\x00\x97\xb9\x92\x4c\x83\x15\xc9\x64\x6b\x60\xaf\x1e\xe9\x3f\xa3\x61\x73\x75\x7f\xdf\xf7\x93\x35\x57\x45\x79\x17\x4e\x2b\xa8\xef\x24\x1f\x54\x0e\x55\x07\xc0\xa4\x6e\xed\x55\x63\x7a\x9e\xd6\x9a\x57\x65\x5b\xba\xbe\x32\x50\xb9\xac\x03\xd7\xff\xa5\x2c\x7f\xff\x9a\x71\x99\x92\x96\xfa\x61\xdb\xac\x8b\x97\x94\x1a\xdc\x5f\xdf\x5e\x96\xa3\x06\xd4\x3e\xb5\x94\x91\x84\xee\xd2\xd7\x95\xf8\x8a\xde\x63\x5d\x2b\x7d\x23\x05\xec\x11\x2e\x5b\x99\x41\x01\x5e\x95\xbd\xa0\x41\xbd\xf2\xab\x5f\x52\x03\x7d\x65\xb5\x7f\x8f\x2c\x5e\xd9\xb1\xe9\xef\xff\x41\x82\x3d\xbf\xe5\xfd\x38\x6e\x1f\x9f\xdd\xb6\xdc\x85\xd7\x65\x2b\x73\xb5\x5a\xb6\x6d\xdb\xb6\x6d\xdb\xb6\xb5\x6c\xbb\x65\xad\x5a\x5b\x33\xdf\x33\xee\xe3\xfe\x7e\x7e\x39\xff\x85\xc7\x71\x3e\xb1\x11\xd0\xf3\x7c\x05\xfe\x64\xa0\x3a\x4c\x50\x7a\x1d\x36\xef\x60\xa5\x62\x08\x2b\x30\xc6\x69\x9f\x43\x5f\xaa\xf0\xea\x6f\x82\x1d\x45\x5e\x9a\x09\x40\x7d\xd8\xb3\x6c\x59\x50\x82\x98\x20\x37\x3e\x3c\x16\x71\xee\x2f\xc2\xb9\x0f\xcd\x89\x0d\x92\x0c\x84\x1c\x65\x96\xa8\xb6\xc2\xbc\x72\x9e\xeb\x3c\x85\xd5\x97\x39\x5b\x6e\xc3\x27\xc8\x3d\xec\xaf\x57\x91\xe4\x2e\xf6\xe9\xd5\xfb\x14\x5b\x40\x77\x5a\x44\x4a\x1c\x12\x58\xbb\xa4\xf1\x0c\x16\x9e\x9a\x6d\x2a\x88\xfc\xe2\x7f\xdf\x9a\x00\xdf\x77\x38\xb4\xcb\x87\x48\x18\xfa\x3a\x4a\xb0\x69\xca\x7b\xb9\x33\x80\x2b\x1f\x88\x7a\xc7\x40\xbf\x91\x8d\x03\x17\x11\x12\x68\x20\x5a\x10\x25\x01\x37\x4b\x51\xa5\xf9\xb3\x9d\x67\x2f\x8b\x4f\x82\x4b\x4b\x9e\xaa\x0e\x01\x9f\xea\xa3\xb5\x7c\x80\x04\xf2\x12\xfb\xfe\x2a\x9e\x12\x41\x9b\x5b\xf1\xd4\xe8\x63\x54\x5b\xa8\xb1\xcb\x60\xfe\xdc\xf3\xcc\xed\x10\x06\x29\xf8\xe8\x23\x81\x98\x88\x65\x0b\xf8\x06\xcf\xf3\x4d\x0d\x78\x03\xaa\xb4\xcd\x0d\x75\x04\xc1\x74\x6a\xc3\x1f\x83\x8e\x65\xfe\xc6\x92\xc1\x35\x02\x1b\x09\x93\x40\x2d\x3e\x35\xeb\x02\x42\x08\xd5\x53\x20\x87\x64\x83\xb3\x57\xe5\x62\xff\x83\x99\xd7\x7f\x11\x1f\x80\xe0\x9a\x4c\x94\xe1\x50\x55\xd2\x37\x6e\xae\x15\xb8\xd3\x6b\xe8\xe4\xe6\xa3\xa0\x20\x50\xfe\x12\x43\x1c\x3f\xeb\xf3\xf1\xfc\x58\x24\x24\xaf\x5e\x31\x51\x0b\x10\xcc\xdf\xce\x08\x07\xf8\x93\x5d\xd3\x8f\xc1\xef\x7c\x82\xb3\x15\xa0\x89\x56\xaf\xb3\xfb\x20\x69\x9a\x5b\xf9\x0b\x90\x2c\xa9\xf4\x12\x2b\xc8\x07\x3e\x78\xc9\x09\x4c\x08\xcb\x58\xfb\x01\x86\x44\x7c\x19\x5e\x44\xd1\x23\xb6\xc6\xbe\xe1\xa0\xa8\xa1\x89\x16\x82\x3a\x7a\x26\xe0\x01\x7c\x63\x3b\x28\xaa\x02\x36\xf5\x84\x3e\xcb\x09\x58\x5f\xb6\x2d\x11\x01\xef\xcd\x88\xd4\x7b\x40\x2f\x8c\xc5\x94\xb7\x00\x7b\x8d\x0f\xab\xe5\x01\xd5\x82\xc4\xda\x43\xc8\xd7\xd8\xbc\xaa\x7e\x68\x89\x4b\x64\x55\x38\xa0\x69\xcc\x5f\x59\x08\x6d\x57\x74\x6b\x80\x82\x43\x45\x0d\x9b\x2f\xb2\x05\xe2\x3b\x46\x17\x61\x44\xf4\xd1\x84\x2d\x5a\x06\xb3\x3d\xb9\x8c\x83\x60\xcd\xa6\x9a\xf1\x67\xd8\xbe\xa4\x2b\x48\xb1\xcd\xab\x79\x22\xc8\xab\xeb\x69\x15\x2b\xb0\x95\xe5\xa7\x35\x55\xe0\xf5\x85\xfa\xce\x2e\xe8\xd6\x8c\xff\x68\x3c\xe0\x3f\xfe\x7e\xdc\x09\x16\xd4\xfe\x6b\x1c\x00\x06\x8a\x7e\x8f\x9e\x40\xd9\x23\xd2\x47\x2e\x43\xc9\xae\x62\xad\x93\x50\x1d\xcd\xfb\x2d\x5f\xc0\x13\xe2\x1a\x83\x70\xfa\x3c\x3c\xdf\xe4\x3a\x22\x05\x7f\x7f\xea\x35\xfa\x0b\xfe\xde\x74\x2e\x0e\x86\x67\x98\xa1\xc3\x17\xe1\x59\xa0\xfc\x55\xcf\x9a\x8b\xe0\x8c\x15\xad\x35\x49\xf0\xfd\x72\xa7\xca\x21\xe4\xdf\xd2\x77\x25\x37\xb1\xc8\xa2\xa9\x9c\x7c\x0c\x5d\xf1\x59\xda\x16\xae\xa3\x08\x9c\xb8\x8f\xf3\x2e\x78\x16\x8f\x24\xe8\xa6\x75\xfb\x30\x90\x9e\xc7\xff\xb1\x31\x25\xa4\x24\xd5\x5b\x35\xa0\x96\x93\xd8\x4d\x8e\xd1\xb4\x7c\x0b\x43\x2d\xc4\x69\xc2\x4d\x42\x3a\xac\x38\xbe\x16\xe5\x07\x28\xa7\xce\x03\x0b\xc0\x48\x9a\x28\x58\x1e\x24\x5f\xf9\xbe\x7f\x05\x02\x54\xe8\x35\x5f\x84\xdb\x97\x16\x54\x5a\x20\xa2\x8a\x77\x4b\xfb\xd1\xf9\x85\xcf\x72\x3b\xb1\xaa\x79\x3f\xd2\x9d\x30\x57\x0b\xf0\x09\x27\xb8\xaf\xb9\xe8\x18\x1e\xc2\x58\x52\x82\x27\x89\xf0\x27\x51\xde\xba\x96\xd0\x96\xb0\x6d\x91\x8a\xaf\x8a\xfb\xa5\xef\x87\x68\x88\xe5\x92\x3e\x42\xca\xc5\x96\xe1\x38\x50\x37\xe3\x40\xa8\x24\x44\x4f\x74\x09\xd4\x13\xee\x9b\x74\xc0\xca\xcf\xe6\x50\x41\x1b\x80\xb1\xee\x94\x05\xf5\xda\x80\x54\x8a\xd7\x1b\xd4\x10\xb7\x0a\xfe\x96\xe4\x23\x43\xf3\xf4\xf2\x23\x30\xdb\xd9\x27\xa9\xb3\x78\xdf\xe4\x8a\xc8\x33\x7c\x59\xdc\x86\x3f\x1b\x21\x27\x4e\xd9\x8d\x40\x90\x8b\x1d\xb0\xba\x49\x38\x8a\x53\x37\x2d\x41\x02\x61\xcf\x64\xd9\x50\x94\xe0\x75\x02\x33\x5a\x3d\xcc\x13\x73\x19\x6d\x1a\x1d\x02\x0f\xc1\x58\xc7\x18\x40\xdb\xb0\xb2\xb1\xf7\xc1\xce\xf7\x9d\xca\x73\x16\x6d\x18\x54\x8b\xbe\xf4\xfd\x60\xfe\x51\x60\xde\x4e\x60\xb5\xcb\x79\x53\x9d\x0d\xa0\x32\xff\xe4\x6d\xa1\xf9\x52\xbc\x92\x9b\x51\xef\xa2\x64\x02\x92\xf1\x8e\x61\xed\x1e\xc5\xc4\x1b\xc1\xfc\x36\xc7\xc4\x3a\xff\x52\x3d\x1b\x02\xc9\xcf\x49\xd1\x0d\xc3\xee\x5e\x49\x2d\xc5\x2c\x7a\xc5\x63\xff\x61\x6d\x83\xe8\x90\xd6\xb8\xa4\xd0\xcf\x40\x3e\x6e\x3c\xf2\x18\x54\x84\x1f\x8c\x86\xb1\x7e\xbe\x4b\xcb\xbf\xbf\x78\x72\xef\x5f\xde\xc9\xb4\x3b\x03\x32\xd3\xa2\x4b\x86\x89\x21\xee\x69\x31\x37\xf4\x66\x64\x6f\xfa\x5d\x18\x25\xc8\x26\xc4\x08\x79\xe0\xd3\xe5\x79\x09\x7f\xdb\xeb\xa6\xdd\x3f\x42\x87\x5b\x8f\x11\x0b\x71\xd4\x79\x5f\xe5\x00\xa7\x6b\xef\x20\x50\x89\xe5\xb4\x8b\xc1\xfe\x23\x5c\x71\xd1\x46\x05\x10\xe6\x3c\xb6\x61\x6f\x88\xe6\x01\xce\x10\x1a\xf5\x3c\x2c\x1f\x9c\xad\xff\x23\x55\x98\x59\xf5\xee\x78\x2a\xcb\xd2\x97\xdb\xc5\xa9\x4a\x33\xa8\x5b\x4f\xe3\x1c\x3b\xac\x18\x5f\x87\x5c\x2e\xa4\x07\x65\x78\x97\xc5\xfe\x00\xab\xba\xaa\xf8\xeb\xc2\xef\xd9\xa7\xdb\x3f\xc5\x45\x5b\xa5\x1a\xdd\xc4\x67\x5b\x98\xab\x54\xe2\x07\x8c\x5b\x44\x42\x08\x1c\x86\x3d\xa4\xdf\xf8\x59\x13\x75\xf8\x00\x05\x6f\x1d\x08\x36\xe3\x9b\x71\x69\x06\x81\x95\x06\xfc\xc9\x6c\xf9\x46\xf3\xa1\xb3\x2c\x7f\x9d\x1b\x32\x79\xc0\xb5\x77\xfc\xa3\x2f\xae\x56\xdc\x18\x8c\xe4\x9f\x9d\xbd\x69\x10\xe2\xd4\x13\x77\xb7\xdc\xb3\x2b\xbf\x9a\x29\xc0\xde\x29\xe2\x07\xeb\xb6\x19\xc4\x5d\x0e\xa6\x65\x90\x6e\x5e\x8b\x25\xe9\x2a\x6b\xbc\x21\x60\x35\x4a\x25\xef\x13\x53\x54\xe3\xb9\x84\xc9\x49\x2a\x7b\xf0\xd7\xbc\xf4\x3a\x81\xe0\x3b\x8f\xde\x9a\x3d\x66\x49\x54\xa2\x73\x38\x60\x6d\x30\x06\x7c\x35\xd8\x7e\xdb\xd9\x85\x6b\xb3\x1d\xf9\x69\xa6\x75\x81\xed\x6e\x44\x7a\x80\x37\xc4\x2f\xa6\x7a\x2c\x2f\x62\xae\xf3\xba\xbc\xed\x31\xba\x65\x6f\xb5\x54\xe0\x71\x57\xc9\xf0\x56\xa8\x02\xe4\x54\x93\xe8\x6c\x83\x53\x51\xf5\x36\x19\xa4\xfc\x54\xba\xa7\x3a\xc5\x65\x26\x7f\xfb\xd1\x65\xde\x1d\xd9\x38\x0e\x2e\x41\x17\x39\x3b\x78\x8d\xe4\xa4\x86\x27\xe4\xbe\xaa\xb6\x51\x3c\x4b\xad\x51\x95\xdd\x7f\x6c\x71\xf6\x62\x5e\x0a\x20\x4b\xef\x7b\x21\xac\xa0\xd7\x11\x77\x13\xc8\xe0\x81\xfb\x9f\xac\x58\x36\x1a\x6e\x70\x58\xc5\x2e\xe5\x5c\x5c\x34\xbd\xd6\x17\x71\xfd\x82\xa6\x40\xee\x24\x2b\x8b\x32\x47\xc8\x2d\xcc\x98\xdc\x4b\xa7\x5d\x0e\x46\x29\x3f\x63\x66\xfe\x5e\xf1\xdb\xca\x2f\x1e\xc6\x88\xc6\x8a\x56\x49\x3c\x78\xa4\xc2\x81\x92\xc9\x95\xf0\x45\x6c\xaa\xdb\x2a\x17\x02\x71\x46\x60\xbd\x3c\xd0\x88\xed\x98\x95\x24\x48\xc5\x6b\xc5\x0d\x00\xbb\x87\x5f\x0a\x14\x85\xac\x24\x7a\x47\xe5\x41\xd9\xc8\xa1\x1c\xd8\x55\x30\xbd\x99\xda\xeb\x15\xa3\xcb\xa6\x8a\xe8\xc1\xc7\x77\xc5\x1f\xfd\xc9\xf9\x84\xbe\xfa\x88\x12\x9a\xcb\x45\x78\x08\x72\xe6\x17\x8e\x15\x6a\x33\xe6\x96\x7c\x2b\xd0\xa6\x12\xad\x00\xe3\xef\x16\xc3\xa9\x3a\x0b\xd8\x71\x3c\xd3\x3c\x12\x1a\x43\x39\x18\x7f\x97\xc6\xc1\x6d\x6c\x73\xd5\xb2\x20\xdf\x3d\xe8\x8c\xe4\xc0\x75\xa1\xdb\x76\xe7\xd0\xb8\x64\x6e\x6f\x23\x98\x69\x76\x5f\x70\x18\xac\x80\xb3\x8d\x96\xb6\xe2\x46\xf6\xe2\x00\xad\xde\xbd\x29\xc6\x1b\x31\x34\x0a\xa8\xf2\xbc\x2e\xfd\xc7\xf9\x9b\x7b\x26\xfc\xd7\xa3\x32\xae\x56\xd7\x18\xc5\x76\x4e\x3e\xb3\x6c\x75\x3d\xf6\x76\x8d\x75\x1d\x6d\x9a\xb9\x84\x80\xa1\x3a\xb5\x93\xcb\xc7\xb4\x8c\xfd\x3e\xfa\xaa\x5d\xb6\xa0\x36\xfc\xd0\xa3\x48\x6a\x1e\x9a\x1c\xcc\xaa\x9e\x0a\xf1\x4f\xba\x61\xae\x00\x57\xcb\x5e\x74\x9a\x44\x28\x17\x67\x7a\xbe\x82\xc3\xc8\xcd\x1c\x57\x56\xb1\xe4\xf2\xff\x6f\x19\x32\x0f\xeb\x34\x81\xe2\x16\xc6\x31\xd5\x8e\x4b\x5a\x11\x60\x89\x3d\xaa\x9f\x89\xd7\x7d\xd9\xf5\xb4\x09\x02\x36\xf3\x26\x54\xdc\x45\x5d\xbc\xc5\x0e\xba\x5f\x26\xdd\xc6\x18\x69\xce\x4b\x6f\x5f\x8d\x90\x40\xff\xf0\x50\x22\x06\xc0\x73\x03\xdf\xf0\x82\x21\xbe\x71\x65\x52\xe3\xd0\xfb\x59\x63\x1a\xe7\xb0\x9c\xa2\x75\x13\x0a\x42\xbb\xb6\xdc\xd1\x0b\xa8\x22\x4f\xb0\x7f\x5d\xa5\xfe\x4f\x19\x41\x22\x0b\xcf\x7c\xa0\x9c\x29\x98\xad\xe5\x95\x3e\x03\xb0\x91\xf6\xcb\xfc\x08\xd1\x1f\xbc\x68\xe7\x00\xaf\x71\xfa\xed\x78\x0d\x1a\x69\x44\x75\xed\x04\x8b\x2a\x7e\xf7\xa2\x82\x1d\x85\x2b\xfd\xbb\x01\x4d\x5a\x6d\xc8\x16\x42\x13\x8d\x8f\x65\xc0\x08\xc1\xa4\xd3\x8d\xb9\x55\x41\x5e\x79\x1f\x24\x0f\xc0\xcb\xd5\x06\x1a\xab\x30\x52\xe3\x25\xbd\x1c\xa0\x98\x1c\xc1\x59\xb9\xfc\x82\x52\x40\x3b\x58\x49\xb0\xc8\x05\x5d\x5f\xf3\x71\xbb\xc9\x64\x39\x24\xe4\x1d\x00\x7e\x55\xf6\x2f\xc8\x1c\xba\x96\x12\x18\x62\x0a\xe9\x0f\xf4\x0c\x75\x05\xdd\xb5\xcf\x8a\x78\x0b\x92\xd2\x3b\x8a\x1e\x01\x3f\x90\x9b\x48\xc8\x07\xdb\x0a\x09\xa6\x50\xa0\x27\x44\x50\xce\x07\x04\x1d\xca\xbb\xd4\x0d\x59\x03\xdb\xab\x7f\x42\x8a\x83\xdd\x6d\x32\x94\x91\x84\xb6\x35\xf7\xaa\xe5\x41\x6d\x29\xa9\xb4\xaf\x2b\x69\x5e\xed\xf0\xd8\xed\xcf\xe1\x50\xe8\xe0\xea\x42\x0a\x2b\x9b\xc1\xf4\xbb\x74\x4d\x88\x70\x37\x43\x1e\x03\x2c\xa5\x6a\x32\xf7\x0d\xec\x46\xba\x40\xee\x1b\xc8\xf7\x40\x50\xae\x0a\xf4\xad\xcd\x9d\x7c\x10\x14\xad\xed\x58\x74\x17\x52\x2b\x95\x59\x7a\x06\x49\xe1\xf3\xaf\x98\x01\x0c\xb1\x82\xcd\xb1\x80\x20\x82\x34\x9a\x8b\x7e\x8c\x62\x9c\x10\xc2\x4b\xa3\x8b\x26\x6b\x88\x02\x18\x8f\xd0\x61\x64\xeb\xce\x8b\x04\x38\xe2\xc9\xc6\x4e\xee\x23\xf8\xc9\xda\x8d\xf2\x34\x48\xcf\xfc\x71\xf3\x36\x34\x66\x52\xb2\xc5\x06\x38\xe9\x31\x69\x61\x07\x76\xca\x8f\x5a\x34\xa1\x16\x49\x72\xcd\x96\xd0\x12\xaf\xda\x66\x19\xe8\xb9\x99\x6a\xd3\x0a\x64\x58\xf5\x66\x93\x00\x38\x4c\x8c\xb1\x37\x97\xd1\x16\xef\x3c\x5e\x00\x5f\xc4\xc2\x27\x1b\x31\x6e\xd8\xde\xa9\x69\xfc\x45\xdc\xdd\x69\x5f\x42\x29\x4e\x2a\x8d\x1e\xcd\xbf\xcd\x5e\x00\x46\x59\x6f\xc8\x56\x9b\x23\xac\xd6\x50\x5d\xd7\xa0\x4b\xcb\x0f\x7a\x7e\x01\xdc\xf3\x82\x53\x70\x60\x67\xf2\x78\xf2\x06\xac\xaa\x63\x6f\x62\x1d\xd8\x28\xde\x1e\x4f\x81\x4a\x47\x92\xc6\x04\xa1\x24\x37\xd0\xe8\x19\x58\xd6\xc8\x62\x4c\x8d\xed\x87\x12\x71\x9c\xcc\xb4\xcb\xa1\x3a\xcd\x86\xec\xc5\xbf\x9f\x7e\x86\xd9\xc6\xf7\xcd\x98\xe3\x76\xf0\xc5\x33\x3d\x84\x07\xf8\x44\x68\x6f\x8d\x6f\x6b\x27\xdc\xa3\x2a\xa3\x2e\x0a\x1e\x55\xe9\x5a\xfd\x1a\xd9\x5a\xfe\xae\x8c\x09\xf3\xad\x24\x2d\x4f\x0f\xfd\xa1\x34\x32\xc3\x11\x17\x5d\x5c\x93\xac\x87\xf3\x2e\x5a\x48\xe8\x27\x04\x67\x82\x7c\xb7\x09\x33\x99\xcf\x5c\x93\x09\x9e\xc9\x15\xd6\xc1\xb8\xda\x02\x16\xcb\xab\xe8\xf2\x42\x07\xa3\x00\xa0\x38\xb1\x18\x7f\x1d\x6a\x9e\x7e\x0d\xb9\x06\x5d\x4b\xf7\x07\x7c\x01\x85\x9c\x63\x30\x3f\xf8\x4e\xf5\xf8\xe0\x0e\x64\xb6\xca\xa8\x35\x05\x7e\xb9\x7c\xa2\x7a\x1b\x41\x2a\xa3\xab\x60\x41\x2b\x16\xff\xcd\xdf\xc6\xe2\x0a\x9e\x64\x8a\xa0\xdf\x14\x8e\x24\xb9\xe1\x56\xf2\xb2\x63\x43\x08\x36\xc9\xdd\x5e\x86\x84\x0f\x49\x54\x9b\x27\x84\x9c\xc4\x6a\x4b\x24\x12\x95\xd8\xa3\xb3\x86\xb0\x49\xf0\x91\xba\x80\xe4\x8e\x67\xc0\xf5\xc3\x6b\x62\xb5\xe1\x1b\x30\xfd\x94\x68\xf0\x3d\x78\x47\x6a\x09\xab\x3c\x48\xbe\x4a\x74\xc8\x85\x6d\xa3\xe2\xb4\x9f\x19\x2c\x56\x56\xd8\xdc\x0e\xcf\x2f\x56\x29\x57\x40\x92\x0b\x4a\x0a\x3f\x61\xea\x73\xf7\xd2\xa7\xb0\xd7\xb2\xa1\x89\x56\xf8\x90\x04\x74\xc0\x3c\x49\x2f\xa6\xda\x5d\x8e\xc0\x1f\x77\x68\x35\x4e\x98\x89\x6b\x33\x2d\x40\x9c\x45\x94\xc9\xd6\x21\x1b\x43\x6f\x11\x66\x50\x7a\xd1\x74\x68\x3c\x5a\x38\xa6\x18\x7e\x1d\x63\x19\xeb\x06\xf9\x82\xac\x8b\x9f\x61\x10\xa5\xcf\xa8\xfc\xbc\x42\x62\xe8\x2d\x7d\x3f\x44\x61\x89\x2e\xf6\xec\x9a\x63\x39\xc8\x6f\xab\x17\x84\x3e\xcd\x31\x2b\x8c\x40\xdf\x4a\xeb\x4e\x63\x45\xcb\xc4\x62\x83\x43\x70\xa4\x50\x13\xf7\xa7\x84\x77\x61\x34\x07\x18\x09\x16\xc2\x64\xbc\x8c\x5f\x0c\x60\x55\x0c\x40\x8a\x79\x9d\xf2\x60\x31\xc2\xbe\x6f\xb1\x6f\xb0\xde\x41\xaf\x11\x3b\xb8\xab\x91\xae\x10\x75\x3c\x38\x6a\x96\xcd\x41\x52\x2e\xf5\x25\x7d\x2a\xa3\x76\x21\x6a\x79\xfe\xfe\xa3\xa2\x95\xb9\x3f\x0c\x3a\x39\x73\x8f\xd9\x19\x44\x32\xdd\x9b\xee\x41\x7a\xe2\xb2\x73\x32\x80\xa6\x70\xcb\x28\x25\xa4\x79\x00\xbb\x97\x30\x6e\xd4\x27\xd4\x71\x8b\xd0\xe8\xc9\x6b\x92\x4a\x6c\x76\x8d\x57\x8d\xc1\xdd\x72\x7c\x22\xf4\x1f\x66\xda\xc1\x04\x37\x4c\x88\x70\xcb\x46\x7e\x22\x9a\x7a\x8f\x00\x57\xa8\x27\x81\x43\x50\x3a\xb5\xa5\xc4\x26\xa6\x41\xa3\xd5\x74\x16\x66\x1b\xfa\xdb\xe9\x53\xab\x9b\x77\xaa\x32\xc5\xe7\xdf\xdc\xfa\x97\xe4\xd5\x1b\x47\x2f\x16\x43\xaa\x51\x66\x0e\x0c\x1e\xcf\xb8\x08\x15\xf3\x0c\x0b\x8a\x87\x89\x3b\xd5\x39\xf3\xe2\x6e\xda\x7b\x99\xf7\x11\x9e\x5a\xe7\x6b\xa0\xf0\xe7\xe6\x17\xc5\x72\xb1\x9e\xc6\xaa\x64\x00\x5f\x63\xf4\x83\xf5\x07\x57\x93\xed\x09\x68\x4e\xe2\x97\x7b\x15\x68\x59\x63\x35\x44\x8d\x4d\xdd\x86\x1a\x67\xc4\x7a\xd5\xa5\x36\x4b\x1b\xbc\x7a\x4f\x36\x2e\xe1\x49\xed\x6d\xcd\xd8\xd9\x25\xda\x0d\x4a\xf4\xec\x58\xfb\x3d\x3a\x7f\xe6\xf2\x06\xa6\x28\xd7\x96\xf8\x29\xe8\x9a\xad\x91\x7f\x2a\x0e\x6c\xd1\xea\x10\x42\x39\x34\xf9\x69\x24\xc2\xe1\x69\xa8\xa5\x34\xce\x79\xa6\x87\x7a\x40\xe1\x5e\xd0\x0d\x21\xa2\xf9\xec\x74\x0b\x58\x7e\x4a\x7d\xb4\xbc\xc0\x2a\xac\x09\x75\xe5\x65\x6b\x35\x33\x0e\x70\x63\x3b\x72\x3a\x89\x99\x60\x7b\x16\xf8\x38\x2b\x18\xbc\x7c\x7b\xd1\x67\x64\x7b\xee\x1a\x87\x9f\xc4\x1a\xf3\x35\x26\xbf\xbb\x63\x9d\xb7\x90\x0e\x89\x15\xb2\x4c\xd9\x96\xfc\x09\x7a\x18\x1f\xa3\x75\xdf\x54\x9a\x8d\x1e\xc8\x8e\x8e\x77\x48\x4b\x48\xcf\x48\x48\x4b\x5d\x41\x6e\xfa\xa1\xab\x9a\x85\xc0\x1b\x71\x69\x0d\x1c\x51\x54\x5a\x55\xfb\x0a\x88\xaa\x81\x32\x4d\x66\x11\x35\x55\x72\xfc\xc2\x36\xe5\xb4\xed\x87\x01\xd5\x04\xf4\x46\x3a\x83\xbe\xc5\x5e\x4f\x3b\x81\x72\x32\xbe\xb4\xdd\xd8\xfe\x7e\xc7\xcf\xfe\xfd\xfa\xd2\x45\x0b\xeb\x3f\x13\x62\xf7\xa9\x46\x2d\x15\x0a\xc8\x0f\x3a\x99\x71\x34\x76\x1f\x0d\x49\x1f\x6d\x41\x11\xe5\x68\x1b\xec\x23\x51\x05\x5e\x5d\x4e\x99\x6d\xd9\x75\xd9\x6f\x8a\x86\x0a\x9c\x82\x2a\xaa\xb6\x4a\x0f\x48\x45\x9a\x2f\xd5\xf4\xa1\x6a\x26\xaa\x86\x79\x20\x21\x47\xc0\xb6\x17\x94\xee\x2b\xee\xf9\x18\xc2\x1c\x95\x10\x2a\x06\xf9\x92\xa2\x14\x57\x04\xfd\x4c\x4e\xe2\x60\x5f\xc5\x32\xfb\xea\xec\x6d\xf0\x5f\xbe\xaf\x7e\x32\x3d\x0d\x76\x56\xfe\x54\xa3\x4c\x93\x53\xd0\x4e\x0c\x13\x51\x94\x09\xf0\x49\x96\x79\x28\xe9\x61\xa3\xaf\x72\x53\xbc\x46\xf7\x99\x66\xf5\xa3\x4a\xb9\x3c\x3d\x37\x71\x94\xe0\x96\x91\xbc\x64\x02\x05\x65\xf6\x4d\xae\x15\xf6\xd6\x81\x5e\xb3\x1e\xfc\xcb\x27\xc5\x2c\x13\x92\x12\xcd\xee\xb2\x04\xb4\xa4\x2e\xfb\xa9\xc2\x6c\x72\x4e\x43\x01\x20\x93\x5c\xce\x01\x5f\x25\x93\x93\x38\x68\xab\x58\x66\x88\x28\xd7\xdc\x08\x89\x55\xb4\xb5\xe9\xce\xc3\xda\x87\x40\x02\xa7\x52\xac\xb0\xa9\xdf\x6d\x1d\x8a\x50\xbb\x3d\xbb\x21\xab\xa0\x8b\x61\xa2\x19\x81\x5f\x45\x51\xce\x0a\xca\xcf\xfb\x20\xdb\x76\x42\x20\x93\x52\xef\x58\x2a\x4c\x83\x5b\x78\xf1\xcb\x1e\x43\xba\x23\xa0\x3a\xf7\xa1\xf8\x54\x27\x2b\x3d\xf8\x70\xce\x96\x2b\x37\xdc\xa8\x9c\xdf\xc7\x10\xb6\x4d\x7e\xcc\x71\x6f\x95\xeb\x7f\xcb\xae\xcc\xae\x3c\xdb\x2c\x2a\xc4\xee\xde\x91\xa2\x71\x87\xab\x34\x9d\x66\x0c\x70\xfd\x0a\x6e\xb3\xbc\xcb\x99\xe2\x32\x6e\x3b\xcf\x5e\x68\x3a\xe9\xf8\x9a\x0a\x57\xe9\x72\x55\x23\x7b\x3e\x24\x7b\xd8\x93\x24\xa9\xd7\xbd\x47\x28\x93\x30\x87\xe0\x0a\x81\x77\x10\xa1\xc4\x50\x99\x5e\x68\x71\x0e\x4d\x8b\x01\x96\x57\x46\x36\x17\x82\x6f\x34\x3c\x75\x99\x03\x14\xc9\x2b\x1c\x17\x56\x05\x28\x51\xec\xf7\x56\xb2\xa5\xfc\x61\x5e\x3b\xb1\xba\x11\xa8\xb0\x81\x16\xab\x1f\xf8\x9b\xc5\xfb\xce\x0d\x44\xc9\x58\x25\xf7\x46\x7c\x9d\xcf\x88\x77\x3e\xd6\xd0\xe6\x92\xdf\x32\x9a\x47\xf3\x6f\x40\x1c\x3c\x5a\xbc\x31\xe8\x22\x64\x82\xfd\x30\xfc\x15\xc2\x1c\x2d\x16\x97\x84\x73\x83\x28\x64\x86\xf2\x25\x81\x9a\x4b\x78\x64\x37\x00\xa0\xfe\x95\x26\x17\xa0\xd9\xf4\xd0\xa8\x1e\xe8\xa6\x44\xb1\xdf\x5f\xc9\xa6\xb4\xd3\x3e\xad\x54\x3a\xc6\x00\x7f\xb6\x75\x3c\xf6\x58\xaf\x4f\x7c\x0e\xd1\x05\x44\x2b\x7b\xa3\xe8\x90\xb7\x93\x56\xc2\x37\x01\xc5\x50\xe3\xa8\x6a\xf0\x8c\x4b\x74\x2c\x02\x54\x61\x78\x35\xfe\x03\x38\x42\x61\x39\xe9\x0b\x54\x58\x44\x3e\x43\x1c\x68\xa3\xe0\xf3\x66\x11\x22\xa8\xfc\xca\x4f\x68\x06\xd8\x8b\x56\x0a\x47\x24\x14\xd5\xaa\x24\x3d\x02\x8d\x6d\xe5\xd3\x80\x41\xe5\x28\x05\xec\x17\x57\x0a\x03\xde\x22\x7b\xf7\x84\x62\x57\xe0\x7f\x37\x70\x59\x24\xa8\xe5\xa2\x68\x51\x3d\xd8\x60\xd8\xae\xe8\x09\x20\x55\x9f\x50\xf0\x15\x16\x98\x49\x28\xe2\x83\xb8\x04\x3b\x17\xde\x03\x12\xec\x90\xc5\x1f\x01\x7a\xdd\x98\xb2\x3d\xc8\x9c\x4c\x59\x05\x18\xfc\x8f\xef\x5f\x5d\x26\xf8\x04\x93\xda\xff\x06\xc6\x83\x68\x1b\x37\xc3\x9a\xa0\x55\x26\xfd\x09\xee\x98\x80\xa9\x12\x12\x0c\x0b\x44\x13\xd1\xc1\x7b\x0f\x52\xfd\x50\xdb\x5b\x59\x05\x0c\xc8\xaf\x4f\x2a\xaa\x19\x61\x5e\xcb\x55\x1d\x33\xd0\xbc\xd9\x4f\x7d\xf7\xa0\xcf\x47\x27\x3b\x78\x60\x77\xaa\x3e\x74\xeb\x42\x0f\xd3\x9f\x77\x5a\x43\xcf\xfd\xc4\xdb\xa0\x00\xc2\x82\xbd\x55\x19\xf2\x5a\x0d\xdd\x72\x08\x8e\x10\xfb\xd7\xff\x89\x81\x8a\x3b\x98\xb4\x41\xba\xe1\x0c\xa7\xde\x61\xf3\x71\x59\xd3\xc3\xf8\x17\xb8\xc7\x33\x8f\x88\x86\xb8\x95\x4c\x5e\x4c\xcc\x4e\x6f\xe1\x7f\xe8\xb9\xcd\xbf\xb5\xfe\x28\xc6\x27\x6a\x7d\xac\x80\xd5\xda\xf2\x20\x23\x10\xb3\x04\x9d\x5c\x82\x87\x4d\x24\x4e\x5f\x87\xed\x74\xd1\x4f\x7d\x07\xbe\x96\x5e\x9f\xac\x84\x9a\x45\x5d\x9e\x50\x85\xe2\xdd\xb6\x26\x18\xc1\x3c\xc6\x1c\x93\x10\xc8\x0d\xe5\xb9\xc9\x43\x56\x02\x97\xe3\x8c\x01\xea\x29\x61\x65\xe6\x00\x3b\x44\xb0\x99\xcd\x21\xb1\x12\x45\x67\x9f\x10\x5b\x09\x17\x00\x91\x3a\xba\xf6\x25\xf8\x7a\x8d\x5f\x43\x10\xfc\x45\x75\x7e\x1d\x11\xa9\x51\xf5\xa0\xc2\x19\x33\x5e\x56\x57\x60\x8a\x5e\x2a\x77\xcb\x92\xc3\x85\x97\x0e\xa6\x0a\xe0\xba\x4b\x95\x92\x66\x08\xa5\xd9\x11\xfe\x65\x44\xdd\xfc\x66\x2f\x7a\xd2\xbf\x34\x41\x7b\x6d\x4c\x5d\xc9\x05\x73\x31\x0c\x43\xb1\x8f\x71\x05\xc4\x23\xa3\x1d\xaf\x03\xe9\xcf\x64\x44\xce\x40\xdb\x0b\x1f\x01\xfe\x08\x74\xe9\x16\x70\x0f\xbc\x5c\x9b\x37\xfc\x14\xea\x53\x63\xd5\x81\x84\x6b\x54\x3d\xa8\xf3\x82\x0f\x55\x94\x54\xed\xa1\x5e\x95\x85\x14\x59\x63\x3e\x16\xb3\x65\xbb\xa0\xe7\x8a\x87\x53\x2c\x70\x85\x05\x7e\xf1\x64\x82\x72\x5a\xb0\x4f\x25\x21\x22\xed\xb5\x8b\x3e\xc1\x25\x69\xdb\xf2\x37\xaa\x2a\xab\xc7\x10\x84\xb8\x92\x4a\x96\x2c\x80\x39\xc6\x7b\x61\xaf\x01\x9c\xa9\xc7\x30\x73\x98\x5a\xda\x08\xe8\x0c\x11\x99\xe7\xc5\x36\x04\xa6\xd4\xa8\x8e\x0c\x83\xd6\xab\xe5\x06\x47\x40\xcf\x2a\x7f\x77\xce\x42\x71\xe5\x81\x35\xb6\x88\xa1\x62\xa7\x92\x0f\x18\xdb\x02\x93\x2c\x25\xcc\x8b\x5c\x64\xb2\x39\x3e\x26\xfd\x55\x78\x25\xf1\x7b\x9c\x91\x87\x23\x01\x96\x10\x6f\xd3\x48\xc8\x8c\xa7\x9a\x32\x23\xde\x44\x35\xca\x65\x21\x4e\x22\x78\x88\x1f\x91\x9b\xb1\x4a\x68\x1b\xf4\x9d\xb8\x7b\x30\x47\x44\x5a\xa2\x3a\x53\x31\xaa\x2a\x65\x8a\x51\x9f\x11\x5b\xa3\xba\xf6\x94\x49\xb6\x92\x7e\x54\x8a\xf5\xbf\xb2\xf3\xc7\xcd\xac\xb2\xc5\x7e\xcd\xbb\x50\xad\xfc\x8d\xd2\x76\xd4\x7c\x26\x5b\x46\x09\xfa\x6e\x52\x62\xf4\x6d\x6c\x5a\xb8\x9d\xe7\x07\xc2\x4e\x04\xd8\x09\x4d\x82\x84\x96\x98\x0a\xe3\x57\x83\xf4\x95\x2f\x21\xca\xfd\xea\x04\xd8\xd1\x3e\x81\x36\xd8\x6f\x58\xdf\x30\x79\xb8\x2b\x4e\x2b\x2a\x13\xf4\x17\x3f\x1f\x23\xcc\x9a\x28\x05\xca\x10\xa6\x17\x60\x7a\x51\x32\xb3\xd6\x4b\xcf\x54\x4e\xb7\x74\xc4\x90\x5a\x50\x3f\xd8\x46\xff\x36\xd7\xad\x6d\x1a\xe2\x97\x94\x56\xd0\x0f\x9d\x8f\x9e\x4d\x98\x46\xbe\x08\x62\xf0\x33\xc3\x8d\xfb\x05\x39\x3f\x22\xd4\x78\xff\x33\x0f\x22\xb8\x7a\x28\xa9\xab\x60\x03\x5d\x05\x44\x3e\x61\x3e\x3a\xfb\x93\x88\x44\x39\x8f\x02\x44\x0d\x75\xcf\xff\x16\x64\x90\xb3\x3e\xf4\x14\x54\xaf\xa9\x96\xbc\xcf\xd4\x6b\x3a\x92\x09\x30\x07\x33\x4a\x66\xab\x3c\xc9\xbc\x97\x9c\x6b\xbb\x3c\x7f\xef\x47\x56\xe9\x14\xe4\xfe\x76\x82\x53\xd3\x43\xa6\x93\x88\x84\xdc\x35\x60\xd0\xff\x49\xd4\x55\xbc\xa4\xf7\x25\x9f\x2e\x8a\xb4\xdb\x88\x3d\x94\x3d\xda\xe9\xc4\x60\x9b\xbd\xc9\xfe\xa2\x3c\x33\x3b\xd6\x66\x89\x8f\xc0\x11\x67\x43\x43\x3d\x10\xe8\x70\x54\x65\xeb\x90\xb6\xf0\x7a\x0a\xe2\xd5\x5a\x0c\x63\x66\x23\x3a\xf0\x26\xef\xb3\x2a\xba\x98\xe5\xd4\xb3\x8d\x31\x8c\x24\xe4\x6e\x41\xef\x7e\x48\x72\x5a\x8b\xbd\xc9\x9d\xf0\x77\xc6\xf3\x76\x78\xb8\x46\xcb\x2d\xb0\x81\x8f\x61\x66\x26\x56\xc4\xed\x5a\xf8\x36\x95\xd1\xf1\x82\x67\x02\xb7\x9b\x8d\xb1\xe5\x39\x7f\xb2\x85\xb7\xb6\xb4\xc0\x94\x69\x95\x64\xd8\x83\x46\x53\x1f\xce\x71\x51\x23\xb3\x28\x84\x8d\xac\x93\xcd\x3f\xd6\x2e\x9d\x65\x4f\x12\xdb\x17\xcb\x92\x90\x0f\x6c\x05\x6e\x9f\x13\xef\x82\x9c\x82\xd3\xb3\xdb\x21\xb7\xee\x05\x04\x9a\xec\x63\xef\x1e\x87\xbe\xdf\xbc\x76\x9d\x3e\x84\x34\xdb\x77\xe7\xbd\x87\x60\xd3\x4b\xb4\xa5\x63\x7f\x66\x14\xd5\xce\xba\x2d\xbc\x87\x2f\xcf\x8c\xc7\x9d\x45\x24\xc0\x88\xd3\x9c\x41\xdc\x5b\xdf\x4e\x3d\x4f\x86\xac\xf7\x4b\x9c\x51\x41\xc6\xa0\x9a\x8b\x4e\x85\x66\x1c\x89\xb2\xd7\xbe\x61\x31\xc1\xf2\xd2\x8a\xdf\x75\x1e\x64\xea\x56\x1e\x68\x0c\xda\x0d\x3a\x8d\xfe\x0d\x3a\x8d\xc7\x66\x76\x42\xa3\x58\x1f\x39\xf5\xee\x25\xdd\xff\xe9\xea\xb1\x43\xba\x70\xc1\x25\x7c\xd5\x83\xc5\xd8\x4e\xaa\xed\x84\x54\x6e\x86\xcf\x91\x13\x88\x32\x70\x08\x93\x11\x2f\xd3\xb9\xe9\x5a\x28\x5f\xa7\xc9\x64\xa6\xa9\x76\x43\xfd\xb2\x3a\x55\x6b\x52\xe3\x83\xf8\xba\xde\x94\xf6\x27\xee\x02\xe3\x0b\x06\x38\x6c\x93\xd9\x98\xc9\x1b\xb6\x24\x17\x27\x47\x19\xd0\x76\xa0\x93\xdf\x5d\x88\x66\xec\xfd\x70\x19\x88\x53\xb6\x6c\x6a\x10\xcc\x0d\x30\x33\x88\xdb\x73\x00\x8d\x1a\x1d\xee\x52\xee\x0e\x99\x46\x3f\x21\x63\x63\xf4\x92\x3a\x0e\x05\x19\x34\xab\xb3\xae\xc8\x1c\xaa\x7a\x87\x59\xa9\x05\x2b\x65\xba\xdd\xd4\x9d\x52\xf8\x63\x7e\xd7\x98\xa4\x20\xa3\x5e\x61\xde\xae\xe0\x24\x81\xb6\x6e\x52\x7e\xc2\xf3\xda\x5e\x4e\x5d\x05\x2f\xe6\x54\xa2\xeb\x0c\xb9\xe5\x8f\xb5\x24\x40\x54\xe2\x1e\xb8\x1f\x02\xcf\x32\xe2\x03\x1d\x60\x7e\x45\x8c\x51\x44\xd8\x34\xb9\x95\x83\xb0\xca\x47\x7a\xcf\xf9\x64\x75\x12\xd1\x27\x3f\xb0\xa3\xc9\xf3\x5b\x01\xd5\xed\xa8\x90\x2f\x4b\xc9\x32\xd3\x6d\x92\xbe\x16\x5e\x68\x3a\x2b\x99\xe8\xe1\x67\xa5\x21\xa1\x67\x15\x6d\xf7\xef\x91\x83\xe6\xa0\xb3\x98\xd8\x33\xc9\x58\x77\xac\x84\x26\x6f\x94\x97\x94\x74\x1a\x81\xce\xb7\x46\xb1\x19\xdc\x12\x55\xa0\x2f\x04\xdd\xca\xb0\xb6\x8d\x81\xd7\x15\xda\x78\xa2\xe1\xc4\xea\xd6\x80\x7c\x78\x04\x79\x8a\x03\xb4\x2a\x4c\x5e\xe7\x40\xaf\xca\x09\xaa\xf3\xdf\x7f\x3a\xa1\xd8\x21\x80\x1e\xca\x33\x39\x78\x50\x9b\xdf\x63\xa7\xfe\xe0\x7b\xcc\x7d\xa7\x12\xa1\x09\x9f\xbf\x6e\xa9\x02\xff\xec\x94\xbd\xbe\xf2\x85\xeb\x22\xfc\xf8\x79\x6a\xa4\x7b\x02\xb9\x79\xee\xf1\x16\x87\x28\xf2\x2d\xe1\xbd\xc2\xe6\x84\x64\x41\xd4\x54\xb2\xc2\x39\x20\x9f\xb7\x61\x20\x88\xd0\x2d\x7f\x67\xd5\x04\x4f\x6c\x22\xb9\x8f\x02\x91\xe4\x04\x0e\xf7\xc5\x06\x4a\x11\x3b\x7a\xa5\x59\x43\x1c\xfb\xfc\xa5\xbe\x75\x1c\xf1\xdd\xf4\x33\x4f\x80\x23\xb0\x32\xc6\x6f\x8c\x2b\x24\xe5\x69\xe0\x05\x4e\x72\x48\x6b\x28\x0b\x4d\xd4\x79\x21\x7c\x9a\xbc\x69\x38\x1c\xb9\x4a\x54\x92\x5f\x8f\x01\xe1\xf6\x04\xaf\xc4\xd1\xb0\x8f\xf1\xf3\x09\xab\x04\x51\x36\xb7\xdc\xe8\x07\xf4\x60\xc6\x2a\x2e\x25\x69\xc0\xbb\xd1\x57\x2b\x19\xe0\x69\xde\xb6\xb8\x01\x44\x51\xd2\xd8\xd9\x56\xca\x29\xf3\xec\x57\x57\x06\xbc\x75\x50\xe7\x07\x47\x61\xf4\xb0\xfe\x15\x93\xf8\x50\xcc\x8b\xb6\xbf\xc9\x30\xc2\xa3\xbc\x9f\x89\x47\xd8\xda\xb8\xa8\x14\x63\x74\xbe\x4f\x74\xca\x2a\x62\xcb\x9c\x25\x0d\x04\xd3\x52\xbd\x9c\x66\x09\xbd\xf9\xd0\x3f\xa7\x14\x68\x61\x57\x2a\x4e\x86\x47\x20\xd7\x1a\x40\xb8\x3f\xb0\xef\x3d\x28\xbe\xef\x90\xe0\x61\x4f\xc9\xdb\x90\xed\xf1\x14\x2d\x7b\xd8\x1d\x4a\x2d\xfb\xcd\x95\xba\x70\x0e\x8c\xca\x41\x52\x8a\x11\x9a\x6f\xdb\xae\x08\x84\x98\x58\x33\xaf\xcc\x06\x3f\x9b\x2c\xaf\xb8\x01\x9c\x36\xed\x54\x6a\x03\xd8\xbc\x6f\x15\x79\x50\x74\xb8\x48\x65\x26\xa0\xe7\xf4\xac\x72\x19\x50\x36\xa8\xa9\x0a\x84\xce\xca\xdb\xd7\xe7\x83\x5e\x08\x9e\xb6\x64\xb3\xcd\x60\x29\xa3\x4a\x88\x05\x54\xee\x24\x09\x7f\x1d\x13\x3f\xd5\x4f\x2c\xc0\xea\x4c\x8d\x4b\xc4\x21\x6b\x63\x2b\xb1\x8c\xfb\x3f\x32\xa9\x58\x8e\xdd\xb6\x92\x50\x8c\xca\xe6\x87\xba\x4c\xa4\xf8\xba\x61\xef\x35\xe8\xf4\x52\xc9\xb0\x17\xa0\x38\xb1\x3b\x54\x06\x33\x6d\x8a\x1b\xc1\x43\x1b\x73\xf2\x47\xf8\x20\x7f\x43\x4c\x86\x90\x90\xbf\x0e\xd2\x43\xc2\x60\x9c\x2e\xfd\x40\x32\x2b\xa7\x84\xd5\x98\x3e\xe3\x1e\x91\x6b\x9a\x13\xcd\x84\xcf\x9f\xe1\xc0\x8d\xe3\x3d\x67\x7a\x08\x8b\x78\xcb\x19\x0e\xea\x3a\xf1\x7d\xee\x28\xf6\x68\x77\xbe\x78\x15\xcb\xbe\xdd\x56\x9f\x8d\x9e\xda\xf4\x1f\x9c\x81\xcd\x6f\x59\x8e\x4d\x01\xa7\xab\xcb\x33\x5e\xf0\xed\x69\xc4\x6c\x1e\x1c\xda\x3d\x3e\x3b\x04\x43\x96\xd5\xcd\xc8\x41\x23\xa3\xf9\xa7\xbe\x40\x31\xee\x4f\xa7\xa1\x50\x6b\x53\xd4\xf4\x09\x00\x52\x75\x9e\x4d\x07\x4d\xf2\x28\xcd\x11\x31\x5f\x89\x3d\x73\xaa\xf8\x48\x22\xcb\x9c\x35\x11\x4f\xe8\x9a\xf3\x24\xc9\x12\x3c\x80\xa9\xfa\xaa\xce\x57\x08\xae\x3a\x93\x26\x4f\x84\x4a\xed\x44\x83\x0d\x92\x56\x3b\x5d\xab\x83\x89\xae\x44\x14\x4d\xa1\x2b\x2b\x47\x72\x62\x70\x13\x15\x8f\xd2\x95\x71\x5f\xca\x9f\xa4\xec\x11\x38\x2a\xdc\xa2\x66\x88\x8d\x15\xe8\x20\x0a\x21\x2c\xff\x8f\x4b\x17\x96\xb9\x8c\xce\xc2\x19\x13\x52\x1a\x69\xb2\xc0\x8c\xcc\xf1\x40\x77\x82\xcf\x4b\x64\x10\x67\x08\x5c\xf5\x3e\xa2\x1c\xdd\xd4\xe1\x86\xc4\x42\xb2\xea\x9d\x47\x9f\x03\x94\x3a\x97\xae\x2e\xf8\x7a\xcd\xe3\xc6\xdb\xf0\x77\xd5\x19\xb5\x9f\x50\xce\x95\x49\xa5\x21\x98\xa6\xd2\xd7\x79\x44\x74\x69\x99\x5a\xda\x09\xce\xaf\x58\x21\xb1\x90\x90\x94\x15\xe7\x5f\x4d\x58\xce\xaa\x70\x7b\x8c\xf9\x9a\xdc\x6c\xe5\x87\x1e\x2f\xf8\x62\x3c\xc1\xe2\x97\xcb\x21\x92\x0e\xd9\x4d\xdf\xc6\x7c\x05\xdd\xcb\x88\x04\xff\x81\x0f\x14\x25\x40\xda\xd1\x76\x15\x17\x21\xbf\x21\xf7\xeb\x2c\xc6\x6f\x81\x37\x6a\x5b\x46\x6c\xc0\xff\xd5\x2c\xf6\xe2\xa0\x7e\x55\xad\x0d\x9a\x08\x8e\xb2\x9f\x15\xdd\x98\x9b\xc5\xcd\xb9\x05\x98\xde\xfc\x77\x69\x08\xbc\x46\xb6\x4a\xd4\x1a\x51\x27\x61\xde\x2b\x95\x70\x29\xc9\xc9\xee\x04\x3d\x1a\x3f\x68\x6c\x85\x78\x19\xdb\x2b\xbf\x85\x00\xe2\x06\xd8\xc5\xe1\xf9\x31\xc7\x48\x21\xf8\xed\x64\x45\xb6\x0c\x64\x58\xea\x77\x66\x7f\xcc\x50\xfe\x06\x4b\x33\x53\x5f\x5d\xf3\x46\x36\x7d\x7c\x23\x6a\x6d\x1e\x64\x5d\x65\x3a\x98\xc2\xf6\xbd\xfc\x5d\xe7\x65\x48\x56\x71\x7c\x55\x28\xca\x2c\x27\x3a\x47\x14\x97\x95\xc4\x14\xeb\x85\x5f\x8c\xda\xf6\xfd\x41\x7c\x19\x01\x76\x5a\x25\xd4\x47\x90\xcc\x8f\xf0\x7a\xc1\xdf\x54\x85\x11\x9f\x82\x8c\x85\xaa\x50\x15\x21\xda\x38\x2f\xcc\x7a\x14\x09\x10\xc7\xcd\xc6\x70\xb3\x01\x38\xd3\xf8\x3b\xf7\x2f\x4b\xdf\xc8\x7a\x7f\x7f\x8e\xc5\xa7\x22\x70\xa3\x8d\x51\xbd\xea\xd7\x5a\xee\xfd\x1b\x15\x39\xf3\xaa\x0c\xe0\xa2\x94\x9e\x05\x56\xb5\x2c\x78\x95\x0d\xa0\x1a\x57\x93\x72\x1f\xfb\x35\x0a\x1d\xf6\x83\xdc\x11\xfe\xc0\x7b\x83\xc6\x16\x6c\x62\x07\xa2\x1d\x04\xdc\xd6\xdb\xa4\xd2\xfb\x3e\x94\xfe\x42\x32\xf1\x86\x71\x4e\x53\xf4\x3d\x51\x80\x3a\xd7\xcf\xc0\x19\x70\xb0\x64\x70\xd4\x0a\xa3\x98\xf6\x9b\x34\x13\xa6\x16\x07\xe1\xa2\x39\x16\x34\xb3\x7f\xde\xde\x96\x29\x83\x67\x61\xf6\x7a\xd3\xfd\x98\xfc\x0f\xf3\xd3\x0c\x84\xf4\x37\xbd\x4e\xcc\x16\xf1\xb7\xca\x8c\xd1\x3f\x22\x6c\x93\x3f\x53\xa4\x83\xf9\x43\xd6\xb8\x60\x7e\x77\xdd\x9e\xf3\x42\xbd\xc8\x16\x46\x7c\x24\xb7\x53\xf5\x2a\x3e\xbc\xcb\xd8\x43\x0e\x41\x92\xeb\x75\x8a\x94\xd8\x35\x17\x5b\x08\x4d\xbe\xd7\x5f\x9c\xad\x5c\x3f\x27\x6c\x91\xc5\xc3\x69\x37\x6d\x8a\xd5\xcb\x2d\x29\x4f\x16\x74\x91\xd9\x39\x25\x7b\x97\x9f\x21\x2a\x9d\x65\x73\x97\xee\x38\xed\xea\xe2\xc4\x2d\xee\xd8\xdd\xde\xab\x48\xa1\x90\x4f\x25\xbc\x94\xcb\x7e\x01\x49\x71\x3c\xf1\x9e\x37\x02\xb7\x04\x1d\x5c\x38\x1c\xcf\x1e\x3e\x70\xb0\x37\x06\x89\xbd\xb2\x3d\x51\xa2\x4a\xac\xdb\x0e\x0b\x61\xe5\x74\x1d\x30\x24\x2f\x65\x1e\xa7\xf7\x90\x73\x83\x7b\x3e\x07\x20\xb8\x8d\x42\x78\x0e\x5b\x97\xcf\x87\x34\x69\xb0\x62\x68\x6c\x2e\x2b\x44\x86\x11\x08\xfd\x79\x14\xc0\xe8\x12\x8d\xd8\xad\xb8\xf3\x34\x5a\x72\x0d\x60\x2e\x0d\xa6\x7b\xdc\x40\xc0\x7a\xbd\x28\x1d\xe4\x99\x74\x81\x27\x4e\x88\xbc\xb2\xcb\x09\xa8\x90\x9a\xb7\x2a\x72\xc0\x2b\xdc\xb4\xc0\x19\x78\xab\x5e\x36\xaf\x57\x40\x69\xca\x58\xf2\x3d\x60\xd6\xf5\xb4\xf1\xa3\xc0\x8d\xc0\xf6\x4b\x40\x87\x8d\x9b\xa7\x1d\x48\xcc\x93\x23\xc4\x03\xf4\x2c\x6c\x28\x41\x0d\x1c\x94\xfc\x3a\xef\x06\x80\x05\x3d\x75\x97\x3a\x92\x66\x6e\xf3\x66\x3c\xac\xbd\x35\xef\x3b\xbb\x5f\x8e\x4c\x74\x47\x0f\x58\xf2\xdc\xb2\x97\x28\x5d\x10\xbf\x68\x51\x97\x90\xaa\x48\x34\x71\xf4\x6f\xd7\xf8\x6c\x74\xd9\xbe\x53\x9f\x6c\x80\x32\x50\x36\xae\x37\x9c\x54\x98\x37\x0f\x34\xc9\x11\xce\xb1\xd6\xb7\x60\xa3\x31\xda\xab\xd8\x10\x10\x0e\xee\xb5\x2e\x2f\xc1\x98\x90\xb9\x40\x7d\x48\x4f\x42\x6f\x74\x2e\xe4\x43\x6e\x52\x26\x0e\x7e\x0d\xbe\x6c\x5a\x75\xb8\x05\x1f\xb3\x34\x3e\x74\x00\x07\xda\x4d\x1c\x35\x73\x68\x5b\xe2\x86\x59\x25\x7e\x19\xd5\x97\x76\xa9\x23\xf4\x1e\x24\xde\x36\x68\xd0\xae\xf1\xff\x6a\xfe\x50\xf3\xc0\xc1\xd2\x06\xaa\x29\x6e\x30\xe4\x10\xa1\x19\xae\xf0\xd1\xc5\x49\x67\x53\xc4\xda\xe3\xa1\xc1\x31\x7b\xbb\xf7\x43\x53\x31\x94\x67\xb0\xa8\xdd\x05\xa8\x72\xc2\x86\x97\x04\x50\x9c\xfd\x32\x38\x17\x48\x28\xff\x93\x08\x85\x7f\x26\x0f\x70\x70\xaf\x8a\x93\x2f\xf3\x71\xad\x4f\x51\x2f\x69\xd3\xce\xa8\xe2\xc6\x9a\x05\x63\x1c\xda\x2f\xd4\x58\xca\x50\xe6\x73\x2a\xb2\x49\x70\xfb\x32\xe5\x5b\x41\x10\xe7\x21\xc5\xef\xce\xed\x1e\xc2\x0a\x66\x46\x5a\x3e\x29\xf2\x46\x8a\x5f\x03\x1c\x95\x18\x45\xda\x83\xe7\xd5\xee\x72\x44\x87\x9d\x6b\xed\xa3\xe6\xe2\x08\xc6\x12\x80\x55\x76\x84\x93\x10\x42\xb3\xcc\xcc\xab\x16\x8e\x68\x08\x0f\x19\x82\x0f\x91\xd7\x39\x30\xab\x72\xe4\x15\x0e\x8e\xd5\x50\xd9\x6f\x62\xe7\x6f\xcf\x0d\x6e\x8a\xb7\xce\xde\x76\x60\x92\xfc\x5d\x79\xe2\xc1\x22\x15\x97\x76\xc3\x47\x4e\xb2\x3e\x8c\x16\x80\x91\xf0\x76\x1b\x0a\x29\x10\x8b\x31\xf9\x18\x7e\x26\x4a\xa7\xc2\x1b\x7d\xe5\xe1\xdb\x87\xd5\x71\x20\xf1\x9b\x1c\xcc\x09\x2b\x52\x08\xe4\x4a\xe6\x05\x75\x38\x2c\xb4\x24\xd9\xa4\x16\xc1\xd5\xa0\xeb\xc8\x00\x98\x34\x27\x7b\x06\x02\x75\x94\x68\x76\xce\x95\x1a\x4a\x27\x3b\xff\xca\x94\xc5\x53\xf6\x9a\xaf\x82\x5e\x9b\xdc\x76\x6b\xf4\x21\xdf\x04\x2c\x5a\xd2\x23\xd4\x84\x9e\xe6\x05\x45\x45\x0b\xa9\xc7\x52\xe3\xdc\x05\x98\xbd\xcb\x12\x53\x79\x7d\x2c\x5d\x92\x77\xb9\x27\x34\x0c\xd3\xee\x71\x4a\x88\x73\x66\x84\x70\x70\x70\x44\x67\x73\x72\x0b\x20\x69\xc5\xc2\x0f\x03\xc1\xfe\xf5\x33\xaa\xbe\xd0\xbf\xcd\x76\x7a\x43\x00\x77\x57\xa3\x75\x05\xc4\xed\x7f\x4a\xba\xf4\x13\xbe\xbf\x50\x0c\x2e\xc2\xef\x9f\x02\xa9\xad\x38\x86\x7d\x8d\xec\xd7\xe4\xe0\xe1\xa8\xec\x56\x6a\x52\x6d\x47\x4e\x38\x35\x2a\xe3\x66\x9e\x11\x39\x38\x58\x3a\xbf\x92\xc4\x6c\x2f\x55\x78\x9d\x70\x4d\x97\xbb\x08\x89\xe5\x95\x16\x29\x19\x41\x9e\x72\xcf\x54\x7a\xc2\xe4\x10\x2a\x6d\x74\x44\x2a\xa0\xdf\x7f\x26\x94\x00\xd9\x1c\x7b\xa7\x88\x85\xdd\x9f\xd4\xd6\x0f\x81\x3d\xa1\x74\xb2\x33\xad\x74\xc5\x2a\xe1\x76\x8f\x86\xb2\xd8\x70\x2b\xfb\xbb\x95\xf4\xd8\x6b\x5b\xab\x2d\x64\xc8\xe6\xf2\x7c\x93\x2e\x40\xeb\x15\x6b\xa8\x04\x9a\x4a\x1c\x1a\x76\x20\x6f\x62\x80\x86\x37\x00\xdc\x6d\xac\x11\x03\x7c\x36\x71\x68\xd6\x80\x18\x2b\xb9\xb6\x04\x83\x34\x84\x7e\xf4\xfe\x66\x9c\xc4\x46\x4c\x98\xa2\x4b\x30\xdd\x53\x1f\x08\x4d\xd8\x89\xe9\x5f\xa4\x29\x1c\xcf\x0c\x45\x2e\x1c\xd5\x1e\xdf\x8f\x2b\x3f\x9c\xcc\x13\xc4\x5f\xdf\x37\xad\x54\xc4\x99\xef\x44\xb6\xa8\xa3\xdf\x6c\x9d\x0e\x19\x00\xf4\x1b\xb9\x93\x83\xc0\xcc\xac\xec\x24\x1a\x56\xda\x21\x33\xb1\x04\x5d\xc9\x67\x1d\xff\x05\xe5\x0c\x93\x1d\xfb\x00\xf9\xee\xe4\x3e\x8e\x04\x7d\xd2\x07\x26\x02\x40\xa1\x32\xdb\x53\xc7\xac\x73\x94\xa2\x59\x2f\xfc\x10\xb1\x79\xf6\x05\x61\x86\xa0\x39\x07\x26\x45\x11\x6e\xcf\x09\x92\x4b\xf1\x87\x45\xc2\x78\xce\xbd\x83\x8a\x66\xdc\xe6\x2e\x6b\x63\x17\x36\x64\xbb\x70\x64\x14\xa9\xbd\x2b\x3e\xff\x04\x06\xdb\x7c\xb1\x70\x11\xa1\x3e\x97\xb9\xf0\x1e\x1e\xfd\x18\xbd\x30\x0b\x90\xca\x22\xe7\xbb\xa0\xed\x31\x67\x73\x6a\x80\x85\x67\xd7\x1c\x0e\xd6\x65\xce\x32\x57\x0d\xa7\xa9\xd3\x2d\xc0\xa0\xf7\xf9\x4c\xe7\x75\x71\x0c\xa4\xd4\x79\x41\x82\x19\x71\x70\x1e\x43\xdc\x23\x0a\xcf\x33\x91\x4e\x08\x67\x30\xf5\x46\xd1\x9e\xeb\x88\xb4\x06\xe9\x16\x07\x44\x4f\xfd\x87\xa6\x4a\x64\x55\xa3\x57\xfd\x3a\xea\x66\xcb\x64\x4d\x19\xda\xad\x26\x2b\x5f\x02\x7f\xb9\x6a\x2e\xd3\x16\xcf\x59\x65\x96\xf6\x89\xe0\x5b\x25\x18\x83\x27\xae\x54\x06\x07\xdf\x20\xda\x56\x64\x78\x8e\x62\x43\x2a\x00\xcb\x12\x4c\x73\xb9\xab\x49\x27\x9b\x4f\x25\x08\x47\x81\x97\xb6\xca\x60\x62\x31\x97\xfb\x3f\x61\x7e\xe1\x88\xc3\x18\x8c\x3d\xd4\xb8\x51\x62\xfc\x15\x70\xd6\x10\xd8\xab\x80\x50\xad\x17\x6c\xae\x40\x04\xd6\x25\x37\xde\x44\xce\xd5\x7b\xd7\xf8\x63\xb4\x2a\x63\x0b\x2b\xd0\x96\x95\x63\x59\x3c\xb8\xe3\xf2\xe8\x54\x26\xbc\x57\xf9\x40\x34\x96\xf8\xa2\xcc\xdb\xbf\x83\x60\x57\x10\xef\xe4\x8e\x89\x28\xf1\x35\x9d\x61\xf6\x2f\xa4\x7f\x68\xc4\x42\xce\x1d\x45\xa6\x00\xfc\x25\x75\xb0\x7a\x54\x53\xbd\x2a\xac\x0b\xdb\xd6\x6e\x06\x57\x63\xe1\xeb\x7c\xbe\x05\x83\xec\x34\x30\x8d\xdf\x85\xde\xae\x2f\xed\x0f\x06\xd2\xea\xae\xb7\xf0\xc2\xff\x54\x47\xd4\xfa\xa3\xbd\x2a\x84\x8b\xe0\x18\x97\x12\xd6\x2c\x1a\xa6\x22\xdf\x3b\x0e\x45\xfc\x92\xb2\xec\xaf\x4d\x06\x12\x4b\x9d\x5f\x11\x0a\x63\x3f\x9a\xae\x21\xbc\x53\xf8\x14\xe7\x01\x91\xc4\x08\x0e\x75\xe8\x69\x1a\x04\x41\x07\xbc\xc9\x4c\x60\xcd\x45\x3f\x2e\xc2\xb2\x15\xe1\x2b\xaa\x2e\x82\x6d\x59\x54\x1a\x6f\x6f\xcb\x31\x9e\xb6\xf2\x6d\x1c\x81\x0f\x6b\x77\x46\xed\xc1\x6d\x35\x36\x8f\x71\x90\xbc\x8a\x97\x0d\x3f\x91\x35\x85\x07\x85\xbb\xd8\x96\x0c\x95\x04\x22\x71\x2d\xf5\x7e\x38\x0f\x55\x2f\x69\xcf\x87\x99\xda\x17\xff\xd2\xd6\x9c\xb2\x19\x33\xa8\x53\x81\x7b\x11\xb5\x26\x8e\x46\x72\x46\x3c\x25\x30\x60\xfe\xc6\x4c\x41\xd8\xb1\x3c\xf1\x23\xf7\xfe\x88\x5f\xcf\x9a\xb9\x6f\xa3\x55\x56\xea\xc4\xe0\xce\x76\xa5\x46\x64\xbb\x9b\x39\xa6\x4e\x78\x53\xeb\xbe\x66\xdd\xf6\x9a\x06\x93\x5c\xc5\x93\xa1\x61\x40\x3e\x07\x5a\xbb\x8b\x79\x9d\x21\x9e\x27\x4a\xac\x48\xb1\x48\xd4\xe1\x78\x14\x7f\x3d\x78\x86\x5b\x2a\xaa\xdf\x0d\xc9\x9d\x13\x7e\x6a\x96\xc0\xf5\x39\x54\x41\x79\x83\x23\x26\x98\x49\x60\x89\xe7\x5e\xb0\x08\x66\x58\x20\x27\x2c\x90\x55\x4c\xfa\x4d\x12\x3b\xe3\xb0\xee\x5e\xa6\x3a\x93\xa7\xe3\xe5\x32\x3d\xe6\x28\xd6\x8e\x22\xdb\xdd\x87\xcc\xc6\xa5\x8f\xb6\x52\x19\xf7\x4b\xd7\x56\xd7\xee\x95\x17\xfa\x4e\x18\xc2\xa3\xd3\x45\x1a\x4e\x88\xe2\x89\x88\x3c\x59\xce\xb9\xe8\xf8\x98\xdf\x7c\x0e\x61\x8e\x7e\xeb\x82\x42\x81\x1d\xf6\x47\x0f\x3a\xfc\x36\xf4\xef\x88\xdc\xf4\x19\x96\x66\x7d\x74\xc3\x17\xc7\x9d\x26\x9d\xe4\x37\x80\x9a\x56\xb6\x08\x0e\x60\x7b\x64\x4c\x88\xee\x66\x61\x71\xe1\xca\xb6\x06\xef\xfa\xec\x15\xa9\x82\xdf\xb2\x01\x19\xf1\x07\x3a\x2c\x2c\xd9\x23\x7b\x18\x46\xce\x9c\xfb\x4f\x02\x18\x60\x69\xdf\xc6\x33\xb0\x51\x71\xd7\x1b\x7e\x72\x29\x87\x3d\xcb\x51\x16\x7c\x11\x58\x1a\x15\x2d\xb6\xe0\xf3\xc6\x2b\x57\x2a\xdf\xd3\xc8\xfa\x96\x9c\xb1\xfb\x45\xad\xa7\x8a\xdb\x6e\x66\x12\xe5\xea\x93\x1e\x7f\xb9\xcb\x75\x66\xbc\xf3\x31\x8a\xc6\x2d\x01\xed\x20\x41\xc7\xd0\x58\x26\xb6\x01\x7f\xfb\xac\x00\x70\x60\x78\x59\x5e\x37\x24\x06\x64\x14\x53\x7c\x9c\xc2\xfa\x39\x41\xe5\x08\xcf\xf4\x20\x49\x62\x57\x0f\x46\x8a\xde\x98\xf4\xe6\xe0\x0f\x56\x6c\x50\x12\x76\xf6\x49\xce\x41\x49\x37\xba\x63\xa3\xa2\x95\x69\xce\x55\x9e\x71\x1a\x63\x8e\x82\x96\x0e\xba\xdb\x0e\x7d\x1a\x2b\x46\x77\x1d\x8f\x25\x7e\x99\x35\xbb\x2a\xf1\x2c\x5a\xdb\x7b\x34\xe1\x74\xed\xcf\x7c\xd9\x41\x7e\xbe\x3c\x11\xd2\xa0\xd1\xa8\xb9\xb4\x75\xe8\xf5\x34\x4c\x7e\x21\xa0\x08\x6d\xf4\x7e\x7d\x0a\x07\xcf\x04\x08\x3e\x63\x61\xee\x09\x47\xbe\x08\x20\x5b\xf9\x4f\x4f\xbf\x14\x51\x77\x2f\x6f\x50\x51\xe0\x73\x7c\x94\x6d\xa6\xe5\x65\xeb\x17\x75\xd5\xf0\x9f\x35\xa3\xa7\xab\x85\xa3\xa5\x8d\x65\xae\x8d\x9b\x95\xb8\xa6\x9c\xfd\x77\x5b\x7a\x29\x73\xe7\x0f\x0e\xa3\x7c\x2e\xee\x2b\x2e\x24\x82\xaa\xd7\x77\x8f\x20\xb0\x7a\xf8\x79\xe8\x65\x48\x7d\xf2\x59\xfc\x01\xf4\x57\xe1\xbf\xdc\x61\x78\x3c\xfa\xa5\xd5\xd9\xb1\x07\xc6\xdc\x3e\xe8\x34\x09\x17\xed\x41\xff\xaa\x51\x58\xc8\xd1\x60\x8e\x53\x39\xd4\x9a\xa7\x61\xce\x60\xdb\xec\x28\xbb\xcd\x2a\xd9\xc4\x2d\xca\xd6\x61\xd6\x98\xe0\x45\xe7\x5a\x63\x24\x69\x39\xe6\xd9\x66\x84\xd2\x6c\xf4\x0d\x32\x15\x92\x3a\x09\x78\x66\x09\xf0\x87\x84\x70\xd8\x2a\x11\xbf\x86\xe5\x3b\xb1\x01\xd7\x52\x28\x7e\x49\xb0\x87\x79\x9d\xe1\xad\x30\xd3\x9a\x85\x34\x13\x04\x17\x79\x86\x43\x64\x55\x89\x96\xa6\xc9\x77\xc2\x26\x24\x66\xb2\xf7\xbe\x44\xe5\x3f\x23\xb1\xc5\x1f\x66\x83\xfa\xc4\xc6\x07\x8e\xb5\xba\xda\x39\x13\x9e\xda\x3a\x77\x62\x88\xbe\x23\xda\x7a\xbe\x0f\x82\x0c\x34\xa7\xad\xa3\xc2\x98\x35\x6a\xb4\x72\xa3\xa0\xda\xa2\xd2\xb4\xd8\xab\x7a\x1d\xfc\xe7\xf1\xfe\x46\xb6\xa4\x8e\xc4\x18\xcb\x75\x38\x7f\xee\x8a\xeb\x75\xb8\x49\x65\xab\x1f\x2f\xec\x67\xd3\xb7\x08\x15\xf8\x2f\xf2\x38\x07\x6e\xd5\x8b\xf2\x97\x96\xb3\x16\xa0\x43\xa7\xc0\xf8\xad\xd5\xe6\x58\xa9\x78\xbd\xcb\xfb\xb2\x72\x42\x2b\x57\x10\x93\x0a\x4f\xc1\x70\x98\xa0\xb2\x66\x02\x4b\x94\x8e\x12\xc9\xbf\x25\xee\x44\x3e\xd4\xd6\x2c\x49\x40\x4e\x4e\xa7\x3a\xd5\x47\xfe\xae\x4c\x67\x86\xb9\xe2\xac\xc0\x9d\xac\x42\xd5\x08\x32\x3c\xa7\x57\xab\x02\x56\x50\x3e\x67\x01\x81\x17\x35\x89\xba\x00\x80\x54\x7b\x87\x8f\x0a\xf0\x8f\xf2\x9e\x66\xb7\x66\x42\xe5\xa0\x79\xae\xc5\xbb\x59\x08\x5d\xfe\xf7\x2f\xfc\x48\xe4\xc7\xde\xdf\xf8\x4f\xe2\xa9\x03\x4a\x49\x81\x92\xb5\x15\xe3\x29\x38\xc9\x93\xb4\x99\x0c\x3d\xf1\xc5\xe0\x9e\xec\xdf\xa2\x3a\x8e\x8c\x79\xd9\x22\x0d\x06\xbc\x05\x2f\x85\x05\xe4\x13\x8b\xd3\x1f\x08\x09\x32\x94\x15\x88\xc4\x11\xed\x2a\xbe\x8b\xdf\x07\x87\x35\xf5\x68\x68\x41\x87\x3b\x61\xc6\x51\xa0\xa7\x03\xf9\x4e\x27\x60\x5e\x4a\x1d\x3b\x75\xa5\xcf\x7b\x95\x62\xfa\x6a\x28\xf6\x05\x25\xe3\xc5\x7e\x09\x9c\xe3\xcb\x0b\x96\x72\x55\x1e\xf4\x82\x75\x69\x0f\x7f\x63\x5b\x6a\x29\x8f\x00\x5d\xc1\xe7\x0a\x28\x6f\x7e\x94\x47\x95\x2a\xb7\xaf\xdb\x54\xf5\x7f\x9c\xcd\x26\xef\x6a\x13\xd8\x57\x94\x13\x1a\x3e\x92\xba\x1f\xb8\xb6\x98\xe1\xf9\xf1\xa9\x8f\x7d\xa8\x54\x00\x33\xc6\x2f\x56\x07\xe3\x9a\x2c\x54\xe7\x83\xa7\x4f\x75\x9b\x75\xc1\x4d\x43\x04\x88\x69\x67\x46\x89\x4d\x44\x89\x13\x72\x81\x02\x71\xfb\xe8\x7b\xc3\x35\xa2\xcb\x01\x57\x5f\x1b\xe6\xf5\xbe\x5b\xef\x3b\xdc\xec\x78\x68\x0f\x33\xee\xb8\xee\x65\xf7\x3e\x56\x33\x55\xa9\x7b\x01\x83\xf5\xe7\xe9\x36\x40\xc3\xad\xe9\xbb\x3f\xc2\x3f\x6a\x88\x3d\xae\x05\x79\x3d\xbc\x38\x18\xc8\xf0\x98\xf0\x65\xda\x19\xe7\x86\x5b\x9b\xe9\x22\x69\xe0\x7e\xcf\xca\x8b\x06\xa0\x67\x66\x87\xd4\x59\x50\xe7\x49\xb1\x04\xa9\xa7\xfe\xc5\x64\xc2\xd6\xe1\xf5\x3a\x18\x21\x6c\x9f\xa5\x8b\x03\xcf\xb4\xd7\x3c\x49\x41\xbe\xd8\xfb\xb4\x78\x08\x73\x5a\x89\x98\xcb\x86\x0b\xf4\xb8\xcf\x15\x03\xd7\x8a\xba\x66\x79\x00\xd5\x48\x91\x99\x8b\x30\xaa\xab\xc6\xcc\x27\x98\xae\x11\xdd\x6c\x2c\x74\x43\xe1\xee\x3c\x23\xc4\x93\x7d\x79\x9e\x0f\x2f\x44\xa2\x9f\x67\x21\xbe\x20\x92\xe7\x2f\x91\x2d\x08\x6d\x73\xff\x51\x34\x08\x56\xa5\x9c\x04\xf7\x03\x68\xcd\x0a\x41\x60\x6f\xa4\x79\x1b\xff\x70\xb7\x77\xbc\x1b\xfd\xfc\x00\xbe\xee\x0a\x97\x3d\x30\x5a\xf9\x83\xbc\xbc\xec\xbc\xda\x8f\xa0\x1f\x18\x5d\x5d\x03\xbc\x2b\x0b\x57\xee\xc3\xae\xc6\x47\x2e\x6e\x21\x10\x3e\x90\x45\x1c\xf2\xa6\x25\xd3\xa2\x03\x52\x5e\xa3\x6d\xa9\x1a\xa6\x2f\xe0\xb6\x10\x8b\xe7\x24\xdb\x2d\xa0\x88\xa2\x24\xcb\xf9\x63\x52\x2a\x71\x7c\xbe\x93\xec\x4f\xd4\x81\x1d\x37\xed\x3d\xc6\x21\x3e\x34\x51\xda\xcc\x91\xb0\x26\xa0\xe5\x18\x25\xdb\xf2\xaa\x49\x0a\x65\xd1\xa1\x50\xff\x02\x4d\x69\x40\x16\x35\xe3\x1f\xd4\x1a\x67\x27\xe0\xf3\x6a\xbc\x33\xf6\x09\x23\x35\x97\x62\xfd\x88\x9f\xab\xb6\x83\x9f\x13\x43\xab\x64\xbc\xa8\xd8\xe7\x55\x34\xab\x15\xb6\x8c\xaa\x1c\x29\x2d\xd8\x9d\x81\x0d\xc2\x11\x3a\x6a\xdc\x90\xc0\x85\x8b\x9f\x1a\xc6\x2f\x13\x70\xd3\x34\x3c\x1d\x80\x6b\x66\x9b\x7c\x05\x84\x35\x53\x87\xa2\x11\xcb\x8d\x7d\x6d\x42\xc8\x5b\x8d\x29\x2d\x30\x54\x40\x0b\xb9\x41\x18\xd9\xd5\xda\x59\x23\x82\x0e\xac\x73\xcc\x8b\xc0\x4b\x57\xaf\x66\x14\xe1\xcf\xab\xc9\xb1\x7d\xc4\xdd\xca\xbd\x60\x67\xe2\xb5\x0a\x26\xb7\x4b\x58\xc1\x8a\xab\xe6\x8b\x2c\x59\x65\xf3\x62\xfe\xe0\x0f\xd5\x1a\x58\x3a\xd4\xed\xb6\x87\xe8\x8b\xd8\xf3\x7e\x76\xb4\x0a\xfe\xe7\xe0\x2b\xd4\x08\xeb\x50\x4f\xd3\x8e\x02\xf4\x69\x53\xe0\x64\x0b\x40\x68\xf2\x18\x7a\x02\x6b\x6b\x34\xef\x60\x45\x1c\x35\x68\x34\xb9\xa2\xac\x1b\x6a\xaa\x15\xd1\x6f\xaa\x4e\x0b\xc6\xd1\x6f\xcb\xc6\x52\x99\x88\x39\x85\xab\x91\x76\x54\xad\x5c\x37\xef\x65\xb2\x61\xd6\x98\xf5\x32\x7c\x2c\xdb\x57\x65\x9b\xa5\x35\x8f\xc0\x67\x03\xa6\xe4\x2d\xc2\xc8\x28\x52\x99\x0f\xe4\x13\xae\xb7\x01\x0c\xb5\x25\xae\xb5\xad\xc2\xae\xb0\xbe\x6c\xb6\xde\xfd\xc9\x42\xee\x14\xdd\x3e\x84\x1a\x36\xaa\x4f\x8a\x42\x7d\x1a\x4e\x86\xc4\x80\xc1\x7a\x5a\xfb\x21\x56\xbe\xe2\x66\x85\x0b\xe1\x57\x31\x4b\x76\x27\xd5\x3b\xff\x5b\xc2\x4b\x4e\xa6\x6c\xee\xe0\xe7\x5c\xae\x19\x2c\xae\x2b\x9c\x40\xca\x1f\x53\x31\x72\x57\x8a\xbb\x2c\x02\xfb\x20\x29\x89\xba\x81\xdd\x4a\x2c\x64\x7e\x87\x57\xcc\xec\xa5\x57\x7b\xb4\x54\xe4\x73\x4f\xcc\x7c\xa5\x9e\x8b\x5e\x0a\x94\xde\x40\xb7\x37\xc3\x3a\xda\x18\xb8\x4b\xc7\x58\xdf\xa2\xb3\xa5\xc6\x6a\x5b\x6f\x37\x75\x1b\x00\x2a\x2a\x7b\x2e\x10\x6a\x8b\xb6\x2b\x35\x68\xfd\x39\x47\x59\x86\xdc\x63\xe9\xf5\xd1\x55\xfc\xe4\x64\x8c\xef\xbe\x00\x38\xbe\xcd\xae\x83\xbf\x3e\xe6\x9f\xf6\x06\xdf\x71\xcc\x15\x31\xa8\x60\x46\x4c\x0f\xa9\x4f\xf8\x34\xfa\x33\x8b\xbd\x3c\x6f\x5a\x02\xa3\xbf\x11\xb6\xd0\x88\xe9\x81\xc3\x7f\x35\x2d\x4c\x1a\xa0\x97\xa5\x7f\x0e\x50\xe0\xd9\x0a\xfb\x5d\x5b\x56\xfb\xea\xc9\xad\xa7\xf7\xa8\xd5\x89\xcb\xf3\xc8\xc6\x22\xd6\x5e\x01\xf6\x88\x4c\xf7\xf2\x7e\xbe\xe6\xe4\x84\x34\x88\xb0\x40\x3c\x63\x78\xb8\xd8\x72\x94\x9c\x47\x90\x78\x55\x78\x9c\xb9\x8a\xa4\x7a\xa8\x82\xb2\xb6\xac\x78\x68\xbb\x10\xb3\xb2\x71\xc4\x55\xf2\x43\x2d\x58\x84\x16\x28\xde\xe2\x6f\xd2\x19\x4b\xb8\xab\x73\x2e\x0f\xab\x7d\xa0\x55\x59\x3e\xa4\x0d\x3c\x99\x13\xf1\xd4\x13\x22\x90\xd7\x7a\xb0\xc7\x16\x57\x04\xec\xf1\x41\xae\x14\xe8\x2c\x73\x92\xeb\xd2\x35\x7b\x5e\x0a\xc4\xc5\x7b\x97\x5f\x13\x67\x88\xba\x95\xe2\x28\xbb\x13\xfa\x25\xb8\x5c\x99\x29\x28\xc3\xf9\x8f\xba\x78\x80\x96\xb1\x8c\xd6\xbe\xbf\x8b\xc2\x3b\x7d\xf3\x40\x6f\xa1\x01\x93\xb9\x90\x48\xca\x99\xf5\x72\xb8\x30\x1c\xe5\xf2\x35\x51\x04\x24\x1e\xb8\x9e\x53\x0a\x9e\x4c\x0a\x2d\x7b\x0d\xd8\x01\xef\x12\xa0\x27\xd3\x80\x73\xca\xfa\x89\x20\xb4\x3d\xc3\xf4\x58\x1c\x8f\x48\xf1\x5c\x11\xe1\xff\x15\xbd\xdf\x6d\x2c\xf9\x3d\x14\x28\x6b\x54\xd1\xf5\xff\x9d\x22\xaa\x3d\xe3\xb3\x17\xb4\x69\xf8\xdc\x2b\xc4\xa9\xd3\x6c\xc0\x73\xce\x70\xc4\xfa\x82\xd7\x8c\xa2\xbd\x3d\xbb\x6f\x8d\xf0\xa2\xb3\x4d\xc0\x21\xcd\xd2\x23\x36\xe4\x1f\x82\x2f\x10\x14\xf3\x0a\xf4\x25\xee\x72\x56\x17\x34\x24\xc7\xb7\xdc\x10\xf6\x08\xa1\x19\xc0\x7e\xb6\x8a\xba\x19\x72\xeb\xac\x00\x07\x8f\x3c\x39\xf3\xe2\x8b\x09\x7f\xb7\x9a\x28\xe3\x1a\x70\xb3\xdb\x54\xb3\xcc\x73\xa3\x4c\xd6\xd8\xc0\x4d\x34\xe5\x92\xb5\xac\x8b\x46\xb0\x8e\xe3\x0f\xa7\x2f\xce\x04\x57\x03\x67\x46\x23\x3a\x4f\x16\x57\x33\x25\x77\x9f\x26\x8f\xee\x87\x29\x01\xf6\x3e\x6d\x1c\x3a\xc1\x27\x01\x01\xc8\xdf\xd1\x8a\xe1\xdd\x10\x6a\xa6\x46\xaa\x29\x0c\x5d\x6a\x58\x40\x8f\x20\xe0\x4a\x1d\x48\x67\x2c\x44\x07\x57\x8b\x73\x7b\x6e\x77\x4f\xd1\xe7\x7b\x72\x10\x4f\xdf\xb5\x5f\x7a\x48\xe7\xf6\xee\xdf\x56\x2b\xf6\xd1\x65\x28\x17\x25\xdb\xba\x94\x19\x2f\x23\x1b\xff\x10\x0e\x7f\x82\xf5\x96\x33\x4f\x30\xd9\xda\xd5\x68\x3e\xac\xc9\x56\x54\x99\x3b\xf2\x8b\xc3\x2b\x51\x93\x58\xa2\x2b\x82\x33\x2f\x7e\xc3\x33\x0d\x73\x33\xdd\x29\x08\x06\x93\x2b\x4e\x8e\x11\x85\xdf\x6e\xf8\x9c\xc9\x8c\x84\x92\x37\x38\x64\x56\xf5\xb8\x91\xfa\x96\xcf\xdd\x64\x6c\xad\xdc\xde\x0a\x1a\x0d\x59\xed\x6f\x2c\x3b\x8e\x58\xb0\xf4\xf2\x7b\xff\x67\x56\x58\xae\x1e\x9c\x6e\xea\x99\xe6\x1e\x3e\x69\x52\x10\x7e\x23\xe6\x91\x31\xc9\xa5\x3e\x41\xc5\xc8\xd2\xb8\x27\xf9\x3f\xe3\x5f\xca\xf5\x69\x35\xe6\xb2\xa2\x3f\x33\x1f\x58\x6f\x70\x79\x66\xab\x3a\x08\x63\xfb\x8a\x08\x9e\x97\xe0\xc4\xba\x81\xa0\x19\xf8\x40\x7b\x7f\x1c\x3d\x7c\xfa\x7f\x2f\x8c\xca\x46\xab\x5f\x4b\xb7\x30\xd7\xe8\xfb\xf8\xda\xab\x56\x67\x70\xf7\x24\x0c\xa5\x8b\x1b\xd4\x8d\xc9\xd0\x1d\xa8\xe1\x4c\x98\xd4\xbd\x97\xd5\x9e\x8a\xd0\x3e\x8f\x94\xcd\x74\xd2\x94\x70\xcb\xcc\x19\xd2\xb8\x6b\x2a\x58\x00\xd6\x38\x54\xb5\x2f\xfa\xa2\x5d\x2c\x16\x53\x32\xaf\x1f\xc2\x5d\x5e\xe6\x63\x62\x8d\xe3\xa9\x95\xb0\x39\x85\x3d\x69\xe9\x72\x77\x03\x42\x7b\xd6\x03\x59\x61\x30\xca\x6f\x9a\xc7\x9a\x3d\x55\x9e\x16\xb3\x56\x1e\x14\x2b\xf6\xea\x87\x47\x3a\x4a\xee\xd6\x99\x41\xae\x87\x62\xd1\xcc\x60\x2e\x45\xf9\x55\x8b\x6c\x5e\x97\x0a\xba\xb0\xad\x98\x4e\xb1\x39\x16\x5b\xf6\x53\x4e\xd7\x53\xb7\x32\x51\x26\xc7\x42\xa5\x86\x51\xfa\x54\x3d\xb2\x6e\x4b\xba\xff\x51\x70\x23\x54\x5e\x8f\xd3\xb8\x39\x4b\xe9\x02\x0a\xd5\x31\xae\xa9\x00\x7a\x3a\xf0\xd1\x22\x89\xb5\x6c\x3c\xd2\xb5\x09\x7c\xf2\xbf\xaf\x17\x4c\x63\xef\x7c\xbb\x13\x5f\xc2\xa3\xf2\x2a\xa2\xa1\xf3\x41\xdd\x47\xf7\x66\xcc\xc3\xb9\x2d\x70\x83\xaf\xf8\xab\xfe\x8f\xf5\xa1\x12\xac\xd5\x2a\xcd\xc0\xc3\xbf\xc9\xa9\xad\x0a\x0f\x12\xfc\x5c\xda\xbd\x05\x9e\xd9\xd8\x75\xfa\xf2\xad\x68\xfb\xf6\x98\x70\x2f\x48\x9c\xf4\xb3\x71\x0a\xd3\xf6\x07\xbf\x70\x4f\x41\x7b\x27\xf7\x64\x18\x10\x49\xd3\x7d\x3a\x25\xc8\xbb\x33\x16\xd6\xfc\x08\xa1\xf0\xeb\xe4\xb4\x17\xb1\x29\x3b\xe4\xd2\x67\x8b\x65\xe6\x94\xed\xd3\x4b\xed\x8c\xb4\x2b\x27\x9e\x93\xff\xd8\x97\x9f\xaf\x4f\x3c\xe4\x10\x5d\xaa\x1a\x33\xe1\xe0\xe9\xdc\x19\x93\xa7\x51\xf2\x93\xc6\x24\x29\xc4\x08\xbe\x31\x55\xe2\x99\x33\x6d\x5c\x08\xd7\xa2\x7f\x34\xd9\x82\x78\x25\x95\x3a\x2b\x07\xd1\xe7\xd0\x9f\x3b\x24\x31\x12\xce\xe7\x56\x29\x43\x04\xfc\x5c\x8b\x54\x03\x66\x68\xde\x45\x47\x01\x3d\x91\x5e\x49\x7c\x7d\x5c\x54\xfe\x88\x94\x7f\x34\xde\xf4\x8d\xd4\x74\x58\x3d\xc2\x43\xc2\x3d\x95\x5b\xa8\xc3\x7d\x39\x7e\xb7\xab\x07\x43\x1e\x69\x6d\x7d\x04\x3e\x8d\x07\x6f\x91\xa0\x05\x35\x69\xab\x39\xf0\xae\xb8\xae\xa5\x4f\x48\x0d\xcf\x99\x25\x34\xf2\xd4\xcc\x7f\x29\x1c\x21\xa4\xfc\x60\xf9\x25\xbc\x91\x6b\x7e\xe1\x84\xb0\x42\x96\x58\x10\x27\x5f\x23\x5d\x9a\x7f\x49\x11\x23\x6a\xcf\xb7\x51\x6f\x12\x5e\x95\xcd\x12\xeb\x0f\x13\x1a\xfe\x23\x96\x1d\x38\x76\xc4\x12\xc5\x0f\xf2\xa7\x6a\x71\x81\x47\xdf\x76\xba\xd1\xc8\xe3\xb5\xcd\x38\xf4\xfa\x93\x4f\x9b\xc6\x68\xcf\x91\xb5\x4d\x25\xa4\x46\xad\xdd\xfa\x63\x14\x26\xa9\x6c\x15\x8c\xa6\xf8\xb9\xaf\xc0\xd0\x16\xd6\xf4\x2b\x14\xb4\x83\x96\xde\x2a\x05\x51\x29\x14\xb2\xd8\x4d\x50\xa5\x88\x2d\xde\x26\x01\xe4\x5b\x0b\x45\x64\x29\x92\xfc\x82\x06\x85\x91\x38\x03\xd3\x1d\x55\xd8\x78\x8e\x54\x69\x61\xee\xd0\x45\x46\xb6\x28\xb6\x03\xa8\xc3\x0e\xdf\x96\x49\xd4\x40\xf7\x6e\x33\x15\x7d\xb5\xfb\x65\x2d\x0d\xef\x5a\xff\x33\xb7\x03\xbf\x5b\xaf\x93\xd5\x45\xd2\x6c\x52\x4d\xba\x4a\x5a\xad\xd9\x0f\x11\x20\x66\xd6\xd0\x7b\xd5\xe2\x14\x6a\x24\x6c\x2e\x81\x5e\xd6\xd5\xc9\xdc\x41\x16\x4c\x87\x91\x83\x31\xe7\xd3\x3f\x89\x5e\x78\xa6\x19\x09\xc2\x03\x42\xe1\x8c\x37\xde\x1e\x26\x30\xd2\xba\x85\x82\x51\x46\x72\x37\x30\xf0\x93\x16\x8b\xce\x6c\x64\x4e\x4b\x5a\x3b\x37\x1a\xd2\x79\xa1\xe5\x1e\x4a\xba\xdb\xa1\xd1\x1e\x23\xd4\x05\xa9\x30\xc4\xd7\x35\x90\x73\x38\x49\x62\x8d\x37\x93\xa6\x48\x9b\xb5\x69\x21\xff\x88\x42\xd5\xcb\xee\x9d\xd8\x57\xd5\xf9\x96\xeb\x6c\x1d\xb5\x0c\x12\x10\xf8\x78\xff\x02\x41\x14\x0b\x1a\x43\xe0\x12\x08\x9e\x53\xcd\xb8\x52\xd2\x8d\x69\x6e\xec\x2f\xb6\x7f\x8f\x67\xf7\x0a\x21\xfa\xc3\x17\xb7\x07\x81\xa7\xc3\x66\xeb\xab\xf0\xfd\x96\x91\xee\xef\x48\x8f\xd6\xab\xed\xab\x68\x64\xc7\x69\xd3\x14\x36\xac\x35\xa6\x5a\x92\x08\x34\xbc\xc8\x6b\x25\xa5\xd6\x77\x24\xef\x92\x79\x6a\xde\x87\x1e\x12\xda\x2a\xb7\x5d\x56\x10\x59\x65\x4d\x3a\x96\xac\xbd\x65\x3f\xf9\xbf\xc2\xaf\xd7\x92\x50\xda\x38\xe6\xb6\xaf\x08\x1b\xe2\xcd\xbe\x3b\x88\x65\x39\x9f\x09\x32\xb4\x9f\xd5\xa8\xfd\xcd\x11\x23\x9b\x71\xaf\xc8\xde\x0c\x58\xa3\x3f\x6e\xeb\x1b\x4c\xa1\xd5\x78\x5c\x03\xfe\xab\xd5\xfb\x71\x2f\x32\xa0\xbd\xa5\x23\x94\xbc\xd1\x40\x57\x41\xe5\x7c\x59\x29\x9d\xd9\xc4\x73\xb5\xd4\x2b\xa6\x92\xe7\x6b\xd1\x23\x3f\x3e\x1e\xe3\xfc\x7c\x9b\x12\x0e\xfe\xdc\x35\x95\x65\xe2\xf7\xbc\x8b\x5c\xbe\x64\xc1\x5c\x2f\x70\x28\x55\xb7\x5c\x88\xf1\x4c\xea\xb0\x3a\x9c\x41\xdd\x9a\xae\xd9\x9a\x91\x01\xa2\xd9\x3c\x78\x38\x01\xfa\xdb\xd2\x7f\x30\xc6\xf2\xba\x73\x66\x9f\x97\x2d\xad\x7b\x73\x23\x05\x52\xde\xde\x35\x95\x47\xdc\xac\xdb\x68\xbb\xc9\x73\xb9\xcc\xb6\x68\x4d\xc0\xbb\x60\x31\xa5\xfc\x41\x55\x4e\x74\xd8\x63\x91\x6f\x99\xc1\xee\xa2\x22\xae\x69\xab\xc6\x0d\xc2\x6b\xa9\x83\x32\x32\xa2\x4b\xa9\xaf\x39\x24\x25\x56\xd3\xfa\xa0\x42\xca\xf8\x9c\x6a\x86\x1f\x56\x26\x55\x9b\x8c\xb3\xae\x2d\x8d\x24\x56\x66\x28\xb8\x32\xff\xe9\x1d\x40\xb4\xe6\xe3\x61\x14\xe4\x52\xe3\xf4\xc1\x37\xa6\x3f\xad\xeb\x7b\x69\xb8\x9c\x1a\xeb\x89\x48\x5e\x50\xb1\x7c\xd3\xa0\x70\x73\x8e\x47\x3e\x9d\xc4\x8d\x8c\xab\x09\x85\x72\x84\xe4\xee\xc0\x16\x05\x42\xa2\x89\x83\xba\x92\x66\xbc\xbe\x8e\x9a\xda\xb5\x78\x1b\x71\x9c\x76\x58\x22\x9c\x8b\xd1\x70\x2d\xc9\x0d\x79\xd1\xc6\x30\xbd\x80\x25\xd5\xb3\xa8\x34\x08\x74\x1a\x32\xd6\xa0\xcd\x76\x11\x16\x9f\xdf\x76\xfc\x05\x9e\x5d\x44\x78\xba\x0a\x33\x2e\xdf\x39\x96\x41\x5d\xa8\xba\xba\x9b\xc7\x39\x5e\x08\x1e\x0f\x10\xd3\xc9\x28\x68\x6c\x90\xbf\x98\x34\x91\xc7\xad\xf6\x30\x9e\x23\x66\x5d\x3b\x27\x86\xc9\x57\x49\xff\x67\xe4\x3f\x9b\x04\xe3\x37\x91\x24\xad\x2b\x16\xd2\x51\x53\x12\x21\x76\x92\xb1\x91\x3c\x6a\xce\xce\x09\x6a\x38\x09\xcf\xe8\x54\x3d\xd0\x4a\x48\x49\xbe\x13\x84\x25\xdd\xbb\xee\x0c\xfc\x1f\x4a\x2d\x99\xee\xe4\x0f\xda\x23\xdd\xf3\x64\x00\x67\x9c\xbd\x7b\x12\xcf\xa9\x90\xb3\xbe\x53\x2d\x36\x93\x32\x33\xa6\xa9\xb4\x1d\x7b\xd4\xe8\xa8\xf3\x24\x92\x92\x67\x6d\x12\x19\x46\x8a\x31\xb5\x3a\x0a\xfe\xe0\xc3\x6c\xff\x2e\xf8\x82\x55\x81\xcb\x9d\xe0\x03\xad\x2b\x1e\x17\xc3\xac\xa4\x94\xbd\x77\x23\x47\xf8\x28\x01\x3e\xb1\x0c\xf8\xa9\x90\xcd\x84\xd7\xe0\x88\xc4\xc2\xbc\x54\xe8\xb7\xdc\xd3\x4a\x0b\x58\x31\x66\x29\x48\xff\xf9\x1d\xc2\x85\xf0\xc0\xb3\x43\xda\x60\x6c\xe3\xd9\x2f\xf1\xc9\xf8\x94\x9d\x48\xb5\xad\x08\x9d\xd1\x01\x63\xd5\x20\xeb\x46\xb2\x4d\x9e\x7f\x79\x9e\xa8\x4b\x8e\xef\x64\xec\x1d\xef\x60\x9f\x60\x9f\x4e\xbf\x14\x1f\x1e\x6b\xe6\xa0\xeb\xbe\xef\xb5\x3e\x86\x7a\x04\xbc\x90\xfe\x13\x31\x19\xe2\x2a\x70\x23\x86\x2f\xc2\x9e\x38\x19\x7f\x37\x56\x05\x5a\x9c\x2b\x95\x39\x00\xfb\x5b\x09\x2d\xa9\x44\x1c\x10\xdb\x5d\xa9\xe7\xbe\xb4\x05\x0f\xd7\x73\x7d\xe1\x51\x7f\xb1\x73\x41\xed\xd0\x80\x67\x3b\xbb\x16\x3b\x3e\x3c\xa3\xfb\xae\x1a\x1e\xb9\x0d\x01\xbe\xcb\x6e\x8f\xf3\x96\x43\x20\xae\x93\xb1\x9f\x22\x6f\xb9\xd2\xfb\xf4\xc7\x2c\xb8\x84\x5a\x37\x24\x98\xba\xa6\x6a\x2b\x26\x2b\x7a\x34\xca\x58\xa7\xe1\x7c\xb4\x05\x2a\x32\x32\x03\x9a\xc9\x0f\xb3\xcb\xc2\x98\x61\x7d\x15\xae\x89\x66\x88\x4b\xcd\x35\x39\x83\xc8\x78\xf2\x14\x87\xfc\x6a\xb4\x10\xc2\x74\xfe\x4d\xb3\x06\xc6\xe1\xda\x1b\x2e\xc7\x2b\x4e\x7f\xf7\xc9\x3e\x47\x0e\x87\xe3\x1f\xc2\x3c\x1d\x6e\x34\x4d\xc6\xdd\xb3\x07\x17\xba\x26\xfe\xb1\xfd\x93\xf0\x3c\x2d\xd7\x46\xc6\xef\x5a\x56\x99\xf5\x84\x4d\x63\xde\x45\x9b\x43\x9d\x1b\x05\x3a\xf6\x3e\x32\xab\x45\x19\x4e\x8d\x02\x3b\x25\x43\xee\x59\x94\xb4\x72\x94\x9f\x28\xe2\x7b\xd3\x54\x58\x0b\xfc\xbc\x27\x3f\x89\x09\xc1\x4a\xde\xe3\x10\x5c\x4d\xa4\x72\xd2\x06\xd7\xea\x9c\x7f\xe9\xa7\x7e\x64\x08\x83\x99\xf7\x1c\x3d\x4b\x98\x36\xfb\x3a\x97\x99\x2e\x63\xee\xd2\x79\x33\x7b\xd7\x9c\xa7\x2c\xa0\x00\x66\x9a\x9f\x3c\x5d\xc2\x6f\xb4\x1e\x70\xb1\xdc\xdd\xb0\xdc\xf6\x67\x55\x92\x91\xbc\xee\xaf\x9a\x57\x26\xc9\xb2\x2d\xf5\x57\xcc\x05\x04\xea\x1a\x2a\xad\x96\xc9\x67\x8d\x4f\x1d\xf6\xe1\x15\xdd\x32\x5e\x39\x80\xe8\xf0\xed\xb0\x11\xc8\x17\xea\x2d\x5a\xe0\x9a\x0f\xd5\x82\x96\xbf\xd6\x1b\x4d\x27\xef\xf3\x1f\xbe\x98\x53\xfd\xe6\x3b\xaf\xb2\x0e\x9d\x1b\xeb\xaf\x2a\x59\xf5\xa4\x06\x28\x55\x02\x7a\x1e\xb5\x02\x75\x1a\xda\x9a\xe9\x79\x8d\xef\x35\x18\x83\x7c\x5a\xdc\xd5\x0c\x1d\xe6\xdb\x5e\xab\x76\xe9\x8f\x77\xce\xab\x36\xc8\xf9\xf6\x50\x34\xf8\xf9\xe7\x7b\x4f\xb5\x4c\x08\x13\x8f\x43\x8c\xa8\xd0\xf3\x71\x5d\x7b\x53\xc8\xda\x14\xc2\x9b\x03\x92\x48\x19\x65\x17\x5b\x59\x0b\xf3\xe6\xfd\xf4\xb6\x30\x0f\xc1\x47\xfb\x78\xb9\xdd\x55\xbc\xed\x8d\x57\x5f\xa0\xfc\xfd\xe3\xe6\xde\x38\x45\xa7\x99\x9a\x6e\x57\x25\x68\x9b\xe9\x63\x3d\xd9\x6f\xb9\x76\xfd\x39\x52\x4c\x61\xb3\x83\xeb\xe2\xbc\x2e\xc3\x23\xda\xa2\xc9\xc6\x98\xb1\x04\xe1\x47\xf2\x93\x53\x80\x90\x38\xaf\xce\x8c\x90\x08\x0b\x5a\x64\xd6\x40\x45\x16\xf5\x74\x0e\x67\x84\x40\x99\xcd\x19\xd9\x33\x21\x88\x31\xee\x54\xeb\x97\xaa\x59\x04\xda\xdd\xe7\x3f\x6a\x48\xec\xcb\xcf\xaf\xb6\x87\xf0\x44\x9d\x1e\xac\x62\x85\xde\x7e\xc4\x2e\x33\x3e\xc0\xec\xdc\x5d\x10\x14\xfa\x3d\x24\xb7\x60\x2b\x60\x54\xa1\xb5\xb0\xc0\xab\x91\x10\xb2\xf8\x80\x73\xdb\xeb\xe7\x52\x0f\xed\xa2\xb9\xe1\xaa\x1d\x81\xa0\x44\xde\xb8\x80\x7e\xc5\xb7\xb0\xd8\x49\xfa\x40\xfa\xb0\x90\xc8\xce\x4e\x84\x2c\xe4\x29\x14\x63\x5b\x16\x4c\xf4\x3d\x30\xc9\x39\xe5\xe4\xe8\x93\xde\xca\x10\x8a\xd6\xf1\x44\xdb\x36\xe5\xf9\xb1\xd8\xe4\x0e\x35\xe9\x19\xfe\x09\x37\x45\xeb\xfc\xc6\x56\x3f\x4d\x7f\x57\x78\x3b\x81\xb2\x34\xf1\x6c\xbb\x8a\x84\xab\x6b\xdc\x72\x21\x78\xa4\x14\x3c\xa1\xe2\xfb\xfc\xe4\xd7\x3a\x71\x1f\xac\x90\x6b\xb9\x58\x4d\x55\xc8\xfa\x0e\x5a\x9d\xf7\xdd\x52\x02\xc9\x9a\xe2\xb5\xe8\x44\xc1\x92\xb6\x17\x56\xa8\x70\xe2\xcf\x45\x59\x59\x1b\x5c\x73\x85\x29\xe9\xd9\xd1\xf7\x96\x13\xf2\x9d\x23\x4c\xaf\x03\x59\xe2\xe9\xbd\xb9\x8f\x44\x89\x53\xa7\x8d\x43\x32\xef\xbe\xf5\xd6\x2b\xe2\xda\x66\xc6\x56\x3b\x91\x6d\x2c\x7d\x6b\x0d\x8f\xae\x5f\xdd\xb4\xc5\x05\xa4\xf2\xac\x67\xe1\x6a\x03\x12\xd7\x74\x70\xa1\x36\x5f\xd6\x42\x70\x77\x75\x2e\xaf\x37\xa3\x3e\x08\xc7\x2f\x9d\x12\x5d\xa8\xa0\xc5\x4f\xa4\x5f\xe4\xd6\x45\x7d\xf2\x4f\xd2\xea\xc2\x47\x4a\x23\x49\x08\x5a\x32\xe1\xb2\x23\x87\x6c\x6c\xbb\xd0\xa5\x82\x7c\xd9\x16\xd0\xa9\x87\x36\xef\x81\xb5\xab\xa3\xd9\xfa\x9c\xda\xbc\xd0\x45\x7d\xf3\x0d\xc1\x78\x6a\xd7\xb5\xb2\x09\x02\xad\x89\x2b\x47\x82\xa4\xde\x32\x90\xf4\x91\x0c\xb4\x69\xc5\x32\x11\x2b\x6a\x3f\x78\x73\xe0\x5a\xea\xf4\x6c\xb9\x71\xd7\xe6\xef\x18\x68\xa0\x6c\x66\x5f\x50\x88\xd8\xe4\xd9\x27\xc4\xdf\xf8\x92\xd9\x69\x42\x3d\x91\x61\x76\x10\x3f\x0d\x9b\x1e\x1b\xdb\xe1\x82\x26\x4e\xa8\xee\xdc\x40\x34\xb6\xb5\xf6\x98\x21\x0f\xda\xeb\xba\xda\xe0\x0f\x06\x18\xbb\x36\x51\xfb\x03\xbc\x6d\xf9\x58\x50\x9f\x5e\xcd\x22\xbe\xac\x9d\xbe\x30\x8d\xa4\xd8\xaa\x99\x2a\x49\xc6\xb4\x2d\xc7\xaa\x10\x0d\xea\x0d\x3c\x1f\xe1\x7c\x1a\xcc\x6d\x06\x81\xa4\xe9\x9b\xaa\x56\xa8\xf3\xe9\x0e\x52\x1d\xee\x60\x46\x84\x60\x40\x44\xce\xc4\xe0\xf1\xa4\xec\x99\x2e\x9c\x3d\x84\x3c\x50\x7c\x48\x0f\xad\x1a\x7b\xbb\xa7\x08\xb5\x9d\xb8\xb9\x9d\x0b\x31\x9e\xeb\xd9\xd4\x44\xa5\x76\x35\xf4\x14\xc1\x2d\x86\x53\x7a\xb5\x51\xb2\xa3\xdc\x5d\x4e\x38\xf0\x00\x53\x0d\x89\x78\xef\xf1\x50\xbe\x30\x09\xda\x5d\x15\xbf\x89\xff\xaf\xa3\xcc\xd7\x05\xf1\xae\x2d\xc0\xe8\x01\x5b\x69\xdb\xbc\xf0\x24\x2a\xb0\xaf\x01\x1b\x42\xb0\x1b\x39\x43\x7f\x20\xc7\x4e\xa5\x62\x76\x15\x16\xa7\x4e\x81\x38\xb6\xe3\xee\xbd\xe3\xef\x60\x83\xfe\xa5\xc3\x41\x28\xf3\x88\xe7\xde\x3a\x94\x79\x5c\x7b\xab\x01\x4c\x3f\xfd\x63\xed\x23\xd4\x79\xbc\x67\x62\x80\xb0\xd4\xf7\xab\x6d\x97\x33\xbd\xbd\xa9\xb4\x9a\xe7\xb8\x39\x36\xdd\x8f\xbf\xa8\xc1\x2f\xe2\x2d\xff\xa5\xda\x68\x57\x1d\xee\xb4\xaa\x57\xda\x27\xd4\x5b\x35\xb9\x7c\xb7\xa8\xbb\x35\x55\xe0\x7c\x71\x91\xfe\x0d\x70\xa5\x9a\xea\x48\x07\xe8\xb1\xfb\xcf\x49\x80\x4d\x02\x80\xb5\x09\x1f\x97\x40\xc5\xda\xbf\x1f\x7b\x81\x59\xfb\x48\x4f\xff\x40\x72\x86\xc4\xf7\xbb\xc1\xd0\x51\xf8\xc6\x31\x31\xb5\x67\x67\x58\x82\x77\xa6\xf9\x76\x7d\xa6\x70\x49\x4d\x53\x3e\xfc\x51\x4b\x79\x6d\xfc\x99\xe4\x7f\xa5\x62\x01\xf3\x52\xb4\xa2\x42\x1b\x2e\x49\x9e\x42\xa8\x72\xb6\xf4\x76\x61\x32\xaf\xa0\x82\x62\x31\x27\xe2\x9f\xba\x79\x99\xc9\xdd\x72\xdb\x9b\x0d\x2e\x8c\x50\xcf\xc6\x56\x17\x96\x1d\xf8\xe5\x1a\xd8\xf1\x57\x04\xa6\x11\x75\x72\x0d\xce\xd0\x6e\x7f\x5a\x08\x21\xf7\x7d\x7c\xfe\x97\x58\xd0\xc1\xb9\x6a\xce\xff\xa2\x5e\xa7\xaf\x49\xa2\xba\x2c\xa0\x42\x4e\xbe\xa2\xf0\x5b\xe6\x27\xb5\xa4\xbc\xab\x51\x8d\x9a\x37\xb2\x7f\x7b\x0e\x68\x1f\x66\x49\x99\xf6\xe9\x0f\x64\x09\x2b\x48\x98\xec\x64\xe7\x0b\xa0\x2d\xd3\x72\xdb\x09\x22\xf6\xdb\xf9\x38\x96\x0c\xff\xe0\x1a\x6e\xf0\x85\x24\x50\xef\x31\x8b\x04\x7a\xa5\xa0\xff\x58\x00\xa3\x51\xb2\x7c\x3c\x87\x6d\xa8\xfa\x72\x32\x49\xac\x6e\x8e\x3d\xcb\x16\x0c\xa8\x9a\x59\x32\x96\xb1\x2f\x72\xeb\x05\xd4\x56\x73\x04\xcb\xf7\xf4\xa6\x32\x76\xd3\x8c\x4c\xb4\x53\xb7\xc3\x0a\x2d\x2f\x25\xef\xba\xae\xd8\x72\x26\x7b\x1a\xcd\x3a\xf2\xa6\xc4\x28\xf2\xb9\x2d\xa5\xcd\x08\xed\x7b\xa7\x66\x46\x51\x7a\xfc\x62\x72\xd2\xa0\xd4\xb8\xf4\xb2\x52\xc0\x24\x9b\xae\x45\x1f\xf4\x1b\xfb\x3c\xf5\xf8\x14\x45\x88\xce\xb4\x38\xa9\xa2\xb4\xe6\xbd\x3a\x35\x11\x6a\x2c\x75\x39\x4d\x93\xbf\x9a\x9b\xb5\x20\xa4\xdd\x90\x46\xdf\x3d\x6a\xea\x9b\x64\x59\xc1\x6d\x5b\x10\x5f\x9a\x86\x70\x61\x8c\x0d\x0e\x4d\xf3\x54\x8e\x09\x77\x3e\xf1\x15\x8e\x95\x36\x9a\x0e\x58\x8e\x37\x53\x6a\x0b\x91\x49\x7a\xf4\xf0\x7e\x04\x35\x55\x82\xb6\x16\x1d\x92\xa9\x0a\xff\x9d\x36\x56\x62\x02\xc4\x94\x9c\x34\xfc\x04\x76\x08\x05\x21\x47\xcf\x29\x94\xcc\xa8\x8e\xe7\x57\x78\xad\x13\x9b\x9e\xfd\x56\xca\x4f\xef\x3f\x49\x32\xf0\x4d\x0c\x5a\xb8\x6d\xc3\x13\xed\xda\x9d\xe3\x46\x1f\xd1\x54\xd1\xe9\x47\x1f\x2e\x97\xf6\x23\x94\x29\x0c\x1c\xa6\x1a\xc1\x1e\xda\xe4\x22\x10\xed\x15\x36\x62\x1c\x13\x57\x1e\x79\x47\xe5\x5a\x62\x45\x4c\xac\x98\x44\xca\x62\x42\x32\xa7\x52\x7a\x64\xca\x20\x5a\xa6\x50\x2d\x77\x12\xee\x58\x37\x50\x8d\x46\xde\xa1\x4a\xba\x1f\x9c\x2b\x73\xbd\xf1\x6c\x7a\xbe\x26\x37\x13\xf4\xf1\xc5\x45\x33\xb9\x48\xbe\x53\x69\x67\xe9\xd0\xf8\x85\x8f\xfe\x2a\x81\xf0\xae\xe1\x08\x54\x00\xa5\xd2\x31\x8e\xdb\x3f\x34\x43\x2c\x99\xce\x2f\x27\x2c\x22\xed\xc0\xf7\xb9\xcb\xeb\x2c\xb8\x5f\xa1\xf1\x79\xae\x40\xc0\x89\x8a\x7e\x7e\x5e\xc8\x43\xb1\xc7\x85\xab\x11\xd3\x5c\x87\x25\x22\xb1\x10\xcc\xdf\x5a\x74\x6a\x2d\x82\xd4\x1a\x9f\xff\x01\xa5\xc7\x8d\x30\x79\xf1\x52\x42\x7a\xc6\x66\xf8\x4d\xa3\xe1\x57\x97\xf1\x57\x85\x3e\xe1\xde\x27\xcf\x75\xc3\xef\x78\x3d\x5b\x3e\x4c\x38\xf5\x2c\xea\x7b\x90\x11\xee\xb1\x55\x93\x9e\x13\xec\xf1\x30\x5b\xa7\xf0\x82\x9b\x7a\xf8\x5a\xc9\x8c\xab\xa2\xeb\x49\x79\x93\x6b\xaa\xc9\x68\xe5\x5f\xf7\x1a\x95\x6f\x35\x8c\x5e\x99\x62\x07\x75\x72\xfe\xaa\xdc\x84\xfa\x2f\x21\x0e\xb8\xfb\x6d\x3a\x51\x58\x78\xd1\xe3\xef\xa9\x01\x08\xa7\xff\x6b\x89\x81\xa6\x54\x9d\xd0\x0f\xab\xde\x13\xa6\x4f\xdf\xd7\x24\xba\x39\x1c\xbc\x0a\xca\x2e\x71\x64\xde\x40\x14\x1d\x38\x96\x8c\xc8\x94\x7d\x73\x4c\x69\xfc\x5d\x75\x64\xff\x31\x4f\xa3\xee\x97\xcd\xdf\xc8\xfa\xc6\x37\xd6\x46\xee\xc6\x2d\xba\xd6\x36\x66\x99\x6d\x3e\xb6\x57\xd5\x2e\x76\x54\xd8\xdb\x88\x29\x76\xee\x39\xe7\x72\x5d\xee\xda\xf4\xc8\xc6\xb8\xf4\xe7\xf8\xdf\x82\x2a\x8d\xa7\x44\x39\x41\xe6\xa8\xac\xb4\xe8\xb5\x08\xdf\x6c\x79\xd8\xd7\x7f\x09\xc2\x6a\xf5\x9f\xd1\x65\x26\x06\xbf\xde\x30\x34\x08\x59\x70\xef\xfd\x69\x59\xb4\x28\x9e\xb9\xd2\x46\x67\xd1\xdb\x31\xdc\xe9\x6f\x5a\x56\x44\xed\xf9\x63\xf8\x29\x86\xf5\xf1\x37\x03\x0b\xcf\xb8\xfe\x17\xfa\x7e\x16\x37\x86\xdc\xf4\xce\xd5\x80\x91\x14\x03\xd4\xc3\xca\xd1\x17\x46\xca\xd4\xd4\xb1\x24\x4b\x7d\xc4\xf8\xd4\xa9\x8b\x3a\x8c\x7d\x46\xc0\xdf\x0e\xe0\xfd\xbf\x62\x99\x90\xa4\xc9\xc7\xfa\x39\xa8\xf4\x8b\x28\xf5\xc3\xa7\x56\x7d\x85\xb1\x37\x2f\xa7\x82\x35\xcb\x5f\x7f\x18\x5d\xd5\x01\xaf\xeb\x8f\xee\xeb\xf8\x0d\xa4\x8e\xff\xd5\xb0\xab\x30\x9a\x1c\x53\x89\x4c\x98\x9e\xb6\x55\x0c\xf5\x0d\x99\xe5\x91\xab\xb5\x56\x9c\x1f\x92\xae\x56\x7f\xb8\x94\x28\xd9\x25\x3c\xbe\x32\x27\xc3\x44\x34\x58\x14\xd4\xa6\xc3\x5a\xcd\xff\xb3\xe8\x42\x0d\xcc\x07\x3b\xdf\x41\x46\x27\x91\xd8\x25\x5f\xb9\xe7\xbb\x73\x02\xe7\x35\x75\xcd\x5c\x87\x2f\x1e\x8e\xea\x0a\xb1\xbf\xa3\x5b\xe7\x11\x87\xbe\xe7\xdf\xb4\x96\x19\x3a\x1e\x5c\x8f\x95\x29\x9b\xea\xd8\x10\x94\x78\xda\x98\xba\xd1\x29\x76\x3b\x23\x79\x63\x43\x58\x32\xe8\xed\x96\xb8\xc0\xb1\x7d\xdf\xee\x32\x37\xa3\xc6\xdb\x9d\x1b\xb4\x5d\xa1\x9a\x95\x40\xf6\x64\xca\xcf\x65\xd3\x47\x9b\x84\xb1\x25\x0f\xcd\x76\x5c\xde\xe2\x2b\x93\x2a\xac\x44\x01\x3f\xb5\xe4\xd9\xdf\xea\x01\x1a\xd3\xe9\x58\x67\x3e\x3b\xfb\xe9\xc2\xb4\x1a\x57\xd9\x99\xde\x13\x34\x37\xeb\x09\x74\x3b\x82\x47\x62\x57\x6b\xe7\x33\xd7\xdf\xa9\xed\x5d\x59\x8e\xb1\x46\xf9\x9d\x8f\xec\x57\xd2\xa7\xb6\x46\xa8\x57\x03\x53\x36\x9e\x91\x43\x6d\xbe\x6f\xd8\x90\x2e\x6a\xdc\xd9\x6c\xc6\x2f\x3f\xa8\x5f\xe1\x24\xff\xa5\x56\x2f\x65\x51\xa5\xc8\x4d\x8b\x9d\xd4\x7f\xa4\xb2\xa5\x7a\xf5\x4d\xfc\x85\xca\x6f\x14\xd8\xb1\x65\x5b\x3b\x25\xfe\xe9\xce\x34\x84\x7a\xe5\x74\x79\xc5\x9f\xfc\xfb\xf9\xf3\xcd\x2c\xda\xaf\x7d\xfc\xf6\x19\x8d\x63\xab\x7f\xbb\x9c\x8a\x1c\x6f\xdc\x3e\x25\xeb\x36\xa4\x6f\x5b\x90\xc4\xd2\xc9\x1b\x35\xc4\xe6\x20\xe9\x27\xc2\x44\x5e\xbb\x84\x27\xc6\x84\x46\xdd\x80\x8d\x38\xec\xec\xc3\x92\x95\xbb\xa4\x14\xea\xc7\xa5\x1d\xf2\x0e\x45\x6b\x89\x99\xd2\x4c\xd6\x5d\x4c\xa1\x4a\x92\x1a\xa0\x2a\xd3\x9f\xf7\x56\xa1\xef\x97\x8c\x77\xa5\x51\x74\x1d\x3b\xdd\x7f\xe1\xb6\x43\x57\x7b\xb6\xd1\x1e\x43\xd7\x3a\xfb\x30\xbc\x43\x75\xcd\xd3\x78\xd1\xc7\x96\x55\x95\x04\xf5\xee\xc4\xe2\xbf\x24\xfb\xb6\x1f\xc9\xdd\x64\x4a\xfb\x72\x1c\x40\x8b\x9c\xe7\x89\x2a\xa1\x0e\xcc\xdb\x79\x8f\x10\x12\x16\xb4\x0c\xeb\xd1\x7c\x0b\xca\x94\x27\x38\x9e\xf9\x36\x52\x18\x81\x34\xaf\x40\x64\x23\xc6\xcf\x5f\x21\x60\xe1\x3a\x13\xdb\x7b\x12\x50\x9f\x99\x47\xfb\x77\xa0\xef\x97\xc2\x77\x25\xc1\x06\x5b\x5b\x3b\x7f\xe1\xa9\xa3\xe6\x7d\xbc\x68\x8f\xb1\x7b\xdd\x0b\xd8\x1f\xc3\xe9\x8d\xbc\xf8\x8f\x03\xea\x55\xed\x24\xe7\x1e\xcd\xac\x5b\x64\xd1\xce\xa0\x78\x1a\xcd\x6b\x1e\x1b\x79\x42\x2e\x9f\x7f\xec\x74\x13\x27\x37\xef\xa3\x55\x8f\xb9\x3b\x7f\x97\x9c\x8f\xef\x9e\x2b\x21\xde\x20\x2e\xcd\x99\xe0\x9b\xc8\xf8\x39\x7e\xdc\x36\x34\x7a\x04\xf4\x14\x04\xf7\x9a\xc4\xed\xd3\x03\xdd\x33\x16\x7b\x8f\xa1\xef\x97\xa6\x77\xc5\x20\x22\x5b\x02\xdb\x50\x04\x62\xc6\x61\xc4\x1d\x3a\xbb\x96\x39\xc9\x83\xb2\x58\x0c\xe8\x32\xc6\x67\xce\xe5\x56\xe7\x10\xbd\xa6\xaf\x65\x01\xf8\xe9\x09\xb3\x90\x39\xa4\xd2\xd8\x63\x73\x27\x50\xf7\xc4\xdd\x87\x0b\xb8\xfb\x33\x18\xc2\x22\x29\x68\xa6\x03\xe7\x23\x16\x32\xeb\x84\xf8\xa9\x64\x39\xfb\x12\xf1\x18\x7c\xd4\xe7\xf8\x4c\x13\xca\x34\xd4\x78\x7c\x0a\xac\x4e\xea\x1c\xe5\xc3\xa0\xb3\x86\xfb\x43\x10\xf6\xd5\xd3\x3d\x57\xd6\xad\xcd\x3b\x9b\x3d\x38\xa6\xf9\xa3\xd1\x22\xf6\xd9\x09\x42\xcb\x00\xaf\xf4\xb0\x5f\x89\xb4\x80\xcb\x00\x22\x19\x2f\xc0\xf8\xd8\xc9\xb7\x85\x47\xad\x07\x66\x44\xe0\x34\xef\x95\x12\xd2\xe0\xda\xef\x6d\x03\x4a\x65\xef\x8d\xdf\x80\xc6\x6a\xf3\x4c\x26\x81\xdf\x7a\x7a\x4f\xe7\x83\x96\xe0\xe2\x1d\x96\xa7\x1f\xa0\x7f\x7a\xde\x3d\xbf\x0a\x44\x0c\x23\xce\xf0\xb0\xd3\x49\x8b\x53\x33\x60\x67\xc9\xf0\x94\x46\xb2\x9b\xda\x5f\x62\xe2\x9b\x19\x7c\xda\xfb\x55\xac\xb0\x2b\xb0\xea\xb7\xcc\xd5\xb6\x87\xd9\xbe\x8a\xc7\x4d\xa8\xe8\x24\xa5\xb2\x86\x87\xae\x93\x4a\x16\xf5\x9a\xda\xaf\x94\x7f\x36\x80\x85\xf4\x34\x8d\x9b\x0e\xf0\x09\x26\xfe\xad\xbf\x58\x66\x1d\x36\xdb\x8b\x99\x58\x43\x93\x27\x2c\x98\xc3\x31\x88\x5a\xf5\x63\x7f\xf4\x76\xcb\xcd\x53\x0b\x4c\x45\x67\xfb\x19\x14\xdb\x3b\x38\x74\x4e\xa5\xbd\x1f\x4e\x3f\x14\x13\x2e\xef\xe1\x9f\x1e\x93\x27\x36\x1d\x34\x2f\xaa\x3f\xac\xad\x2d\xa9\xd1\x6b\xab\x8c\x4d\x31\x36\xb2\x2e\x27\x04\xab\x99\x5a\x94\x1e\xd9\x2b\x59\x22\x4b\x3f\x6a\x1e\xda\xf5\x95\x93\xc4\xb8\x5d\x7d\x2a\x0e\x39\xb6\xbc\xcd\xaa\xa3\xe1\x9f\x83\x1c\x5a\x70\x2c\xed\x69\x3a\x43\xed\xcc\x33\xb8\x17\x85\x75\xc7\xc3\x04\xa6\x72\xcd\x93\x22\xd2\x4e\xed\xe3\xd3\x37\xdc\x02\x2d\xfe\xcf\x52\xc5\xbf\x37\x07\x6c\xf6\xab\x84\xd7\x04\x8f\xf1\xeb\x0b\x96\x95\x36\xb9\x9b\xa7\x16\x7d\x2d\x08\xb0\x2d\x2e\xb8\x97\x10\xee\x94\x97\x87\xf7\x37\x75\x3b\xca\x1d\xb6\xfe\xe1\xf5\x24\xcf\x59\x73\xd4\xff\xa0\xc0\x5c\x62\x3d\xa4\xba\x98\x8f\x47\x3e\xf2\x47\x69\x0e\xa6\x33\x31\xb7\x2e\x11\x1c\x94\xdb\xd8\x75\x00\x46\x10\xce\x32\x6e\x9d\x2a\x50\xee\xe5\x30\x9f\xe2\x39\xb1\x85\x6d\xcf\xee\x4a\xd0\xca\xbf\x9c\x0e\x6a\xde\x2d\xc5\xaf\xa7\x98\x72\xe6\x69\x8d\xc8\xd8\x75\x65\x37\x35\xb5\xb9\xfd\xc9\xb4\x2e\x40\xf8\x8e\xa6\x77\xc4\x7b\x07\xad\xa5\x75\xfa\x3a\x86\x2d\xa4\x33\x59\x4f\x47\x89\x66\x64\x6a\xcd\xc6\xba\x65\x5f\x95\x7e\x90\xf0\x35\xf7\x0b\x9f\x54\x8a\x44\x21\x1d\x5e\x3c\xcb\xad\x62\x0d\xc6\x50\xc1\xd9\xfc\x18\x66\x4c\x1e\x0a\x3f\x7b\xce\xc1\x41\x8a\x1d\x7e\x0e\x11\x43\xa4\xb8\x3f\x8b\xd4\x9e\xcb\x92\x39\xa9\xb0\x5a\xcb\xbc\xfa\x84\xc9\x35\x2b\xc5\x6a\x44\xcd\xbf\x2c\xe9\x56\xd3\x8b\xf0\x85\x84\x1f\x85\xa2\xf1\x17\x13\x6e\x27\x88\x25\x89\xc4\x17\xfa\x76\xa7\x72\x25\xe0\x6d\x84\x33\x78\x12\x5b\xb4\xd3\xb2\x32\x52\xe6\x64\x9e\xe5\xfc\xc8\x88\x14\xc0\xe4\x0f\x67\xdb\x13\x25\x4a\x33\x8a\xe0\x08\xc1\xa6\x9d\xfa\x8f\xc8\x51\x0e\x11\x4f\xc4\xb9\x89\xc0\xa1\x3f\xfa\xc5\x4f\xcd\xe9\xd0\x85\xb3\x3e\x3b\x99\x98\x3f\xa7\x0b\xbe\x7f\x63\xeb\x37\x02\x23\xc6\xa3\xfa\x47\xc9\x89\x87\x51\x40\xcb\xa3\x0c\xb1\x48\x85\xa2\x8d\x5c\xe3\x08\x97\x84\xf1\x42\xba\xf0\x14\x3f\x9b\xe2\xba\xf0\x41\x9b\x57\x65\xec\x91\x16\x3a\xed\x15\x01\x31\xc1\xb2\xca\x55\x86\xf1\xc7\x02\x11\x35\x92\xc9\xfe\xa4\xb0\xc6\xc2\x4c\x45\x24\xbe\x8b\x56\x6c\x86\x18\xe6\x0b\xb4\x88\x79\xa5\xa1\x91\xeb\xa4\xf1\x6a\xd5\x6e\xc8\xa3\xef\xfc\x20\x24\x23\x60\xf9\xb9\x4b\x52\x71\xc8\x8d\xed\xc7\xd9\x45\xc1\xd2\x93\xc6\xc5\x2c\x41\x6b\x1d\x77\xcb\xb1\x41\x45\x65\xb3\xd5\xc9\x01\xa4\xa4\x8b\xf5\x14\xff\xcb\xfe\xc8\x46\x79\xbf\x73\xdb\x8f\xcd\x96\x01\xb2\xba\x29\xad\x17\x83\x62\x65\x15\xdb\xb6\x43\x67\x05\x78\xda\xdf\x44\x4a\x12\x5f\xf7\xc8\xc7\xed\xc3\xa7\x87\x1c\xd2\x3e\xc3\xea\xa9\xb7\x69\x65\x6b\x31\x0e\x27\xc6\x13\xef\xc7\x83\x55\xac\x9a\xdf\x13\x33\xc6\xdd\x18\x5f\xa7\x95\xaf\x7a\x2b\x1e\x15\xd5\xbc\xf7\x26\x2f\x5c\x6e\x7a\xe4\x9d\xd8\xeb\xd0\x5a\xee\x25\x5c\xf1\xb7\x33\xda\xed\x63\xb2\x71\x0f\xaf\x6b\x74\x40\x6b\x6f\xad\x4b\xbf\xbd\x4c\x5f\xa0\xeb\xa8\x9e\xd7\x00\xd9\xbd\x47\x96\x71\xb0\xc1\x2b\x8b\x1f\x39\xe4\xe8\x7b\x82\x27\x8d\x36\x07\x85\x80\x0b\x27\x03\x63\x28\x10\x2b\x2a\x86\x96\xb2\x96\x12\x5e\xad\x1e\xfc\xdf\xe5\xd4\x6a\xdd\xec\x0f\xb9\x55\x6d\xe6\x93\x2f\x83\xbb\xf3\x9c\xa2\x5f\xf0\xf5\xe9\x38\x55\xaf\xb7\x0d\x84\x38\xf5\x0f\xdb\x0d\x6b\x3a\x90\x6a\x1d\xc6\x2e\xd8\x68\xa4\xb5\x8c\x6b\x5a\xa9\x04\x5f\x9a\xd0\xb1\x54\x74\xa8\x9b\x5c\xb7\xc8\xd7\xbb\x36\x9d\x67\xa9\x2d\xd5\x3d\x6b\x6a\x3d\xc3\xf5\x6c\xae\xc3\x9e\x0e\x85\x98\xab\xf2\xd8\x81\xcf\xce\xe9\x06\x57\xc2\xd6\x22\x9a\xf9\xdc\xbe\x62\x32\x98\x84\x25\xbe\x0c\xd6\xd4\xc9\x1e\xbe\x0d\xec\xac\x50\xcf\x79\x73\x77\xe2\x3f\x23\xf2\xcb\xc7\xb3\x93\x96\xda\x07\xd4\x05\x8c\x19\x64\x86\xb6\xa4\x6b\x14\xd7\xb2\xb4\x3c\xa0\xf7\x29\x97\xb8\x92\xaf\x7d\x18\xfe\x76\xb5\x4c\x93\xec\xfc\xdf\xda\x3d\xf5\xdf\x7a\x7f\xd6\x9f\x6b\x60\x24\x19\x36\xaf\x6a\xf2\xb1\x7f\x5c\xb1\x31\xc4\xe2\xb7\x16\xff\xd8\xce\x63\xf4\x17\x41\xee\x3e\xa8\xb1\x84\xdf\xdc\xe7\x2f\x27\xca\xd3\xb8\xe3\x5f\x92\x5b\x39\xf8\x92\xde\x30\x4c\xd9\x88\xf9\xbf\xe7\x5b\x31\x50\x30\x7b\x1d\xb7\x7d\x41\x45\xfc\x48\x65\x7f\x52\xfd\xcb\x2a\xf6\xf0\x89\x0a\x5d\x8f\xe6\x91\xa4\xfc\x7a\x11\xd7\x61\x8a\xcc\xad\xe8\xba\xa3\x59\x89\x38\x0f\xf0\x41\x9b\x90\xb0\xee\xd5\x3d\x6e\x9e\x45\x91\xff\xd6\x57\x79\x58\xd8\xef\xad\x3a\xc8\x45\x93\x94\x57\xdc\xf4\x4e\xf0\x43\x4b\x3e\xd6\xaa\x58\x52\x71\x00\x3b\xe2\x79\x69\xed\x77\xf6\x27\x67\x43\x6d\x99\xdc\x82\x27\xb8\xe5\x0a\xde\xdb\xaf\x6b\x76\xec\x79\x7e\x3f\x03\x76\xee\x08\x48\xef\xfa\xee\x5d\xe2\x1f\x9c\x11\xd8\x93\xe2\x59\x6d\xea\xda\xe3\xe5\xe6\xcf\x74\xdf\xb5\xe5\xa4\x04\xff\xda\x36\x60\x47\xda\x53\xb6\x6a\xa8\xcb\x5a\xd6\xdb\xca\xe4\x17\x0f\x69\x4b\x6b\x5c\x11\x9c\x3b\xcb\x03\x34\x1b\x4a\xe4\x52\x16\xed\x98\x2c\xb3\xc2\xab\x1b\x85\x6f\xab\x4e\xa6\xea\x9f\x2c\x76\x44\xd2\xee\x9c\xc4\xcf\x4d\xd1\x1e\xbd\x30\xdd\x6a\x67\xd7\x78\x1e\xba\x05\xe3\x9c\xdf\xfb\xba\x63\xc8\x19\xbc\xad\xbb\xa3\xc5\x81\x9b\x30\xda\x69\xa3\xc5\x37\xe6\xee\x98\x52\xbd\x33\xf4\xb7\x6c\x29\x1a\xc1\x3d\x1b\x87\xe4\x34\xfb\x17\x9b\x17\x49\x7f\xf4\x06\xb6\xee\x12\x7c\xc5\x22\x56\xf9\xc8\x2d\xb4\x99\xe5\x21\x4a\x0f\xe5\xf7\xd2\x0a\xd5\x82\x7c\xb4\x44\xa1\x1e\x92\x01\x18\x7c\x6e\x7b\xff\x0c\x98\x58\x09\xdc\x57\x81\x90\xf7\xee\x1f\xf0\xc2\xcb\xc6\xe8\xfa\xce\xd1\x2b\xa3\x95\xbd\x97\x30\x4b\x63\x61\xed\xb7\xf1\x7a\x03\x9d\xb5\x4e\x04\xdf\x7e\xb7\xf2\x23\xca\xa7\xc5\xa8\x92\x79\x5a\xff\x7c\x5a\xa6\x16\x2d\x67\x5e\x26\xaa\x96\x76\x75\xbe\xda\x5b\x82\x84\x58\x44\x1a\x85\x63\xa7\x16\x7f\xd0\x18\x70\x87\x8b\x09\xe4\x1b\x84\x9e\x85\x65\x62\x34\xe9\xf2\x82\x22\x21\x02\xfe\x72\xea\xed\x81\x06\xcc\x69\xbe\xe0\xa0\x0e\x76\x73\x55\x6e\xff\x3d\x14\xbb\xb7\xb9\xff\x02\x2c\x7a\x08\xec\xdc\x85\x55\xcd\xcf\x8d\x76\xa2\x1e\x2d\x65\xf4\x43\xf0\x8c\xe3\x07\x0d\x06\x14\xdb\xa5\xfe\xca\x28\x5a\xd0\xfc\xf3\xec\x9b\xb4\xb4\x79\xa9\x48\x5d\xca\xb3\x85\x10\x27\x61\xe2\xeb\xc5\x60\x35\x10\x0e\xbb\x74\x85\xf2\x1f\x21\x73\xf1\x12\xb1\x8b\x14\xb4\x20\x48\xe0\x21\xf7\xcc\x3f\xc6\x4b\x03\x53\xe3\xb5\x27\x9c\x08\xc1\xe9\xa7\x87\x53\xb0\xef\x0b\xfb\xff\x8f\xb5\xb7\xfe\xaa\x42\xeb\x1a\xfd\xb7\x7a\xc4\xf6\x1c\x8f\xad\xb4\xf4\x4e\x5a\x45\x41\x09\x91\x10\x29\xe9\x0e\x11\x04\x69\xe9\xee\x96\x06\x41\xba\x4b\xba\xbb\x61\x6f\x36\xbb\xbb\xd8\x45\x83\x1e\xf3\x58\x7c\xc7\xf7\x3c\xef\x1d\xe3\x79\xc7\xfb\xdc\x3b\xc6\x1d\xe3\xfe\x36\xe7\x5a\x9f\xb5\xe6\x9a\x73\xfd\x01\x1f\xc6\x77\xc1\x67\x84\x2b\x4c\xa4\xe0\x43\x7a\x0e\x1d\x2d\x38\xc8\xe4\x11\xb5\xc5\xf3\x69\x82\xcb\xdf\xa5\x27\x88\x4f\x46\x9d\xc1\x66\xe8\xa2\x16\x77\x48\x1f\xa2\xbf\xe4\x2c\x24\x1f\x6e\x12\xaf\x07\x34\x5c\xd1\x77\x97\x96\x72\x42\x22\x35\xbf\x0b\x0f\xae\xda\x8a\x3d\x04\x8e\x20\x8e\x49\x7b\x69\xf2\x10\x38\xd1\x59\xa3\x03\x44\x9c\x18\x4f\x48\x6d\xec\x25\xef\x9d\x70\xde\x74\x0e\x37\x51\xcc\x73\xf1\x80\xf5\x56\x74\x08\x39\xbd\x76\x42\xe8\x3b\x45\x93\x9d\x77\x15\xc9\x7f\xca\x63\x4b\xa9\xd1\xca\xd0\x05\x8a\x32\xb8\x9b\x63\xf4\xdb\x82\xab\x77\x5a\x3f\xde\xc5\xc3\x91\xc5\x4d\xea\xa0\xa5\x0f\xb1\xdf\xd4\x26\x96\xa4\x9d\x79\xaa\x12\xcb\xc7\xd4\x6f\xdf\x7e\xb5\xac\x2f\xb6\xfc\x28\x6e\x39\x46\xec\x9c\x63\x0f\xdc\x5c\xd8\x21\x54\x05\x7e\xfd\x7a\xa5\xf8\xa5\xde\x18\x6e\xa7\xa8\xfb\x30\x63\x3d\x4c\xdc\x71\x4a\x82\x57\x2d\xe1\xb8\xe8\xc0\x8d\x96\xb9\x8e\xda\xe0\x38\x43\x44\x08\xed\x74\x81\xbb\xbf\x21\xb6\x17\x66\x1f\x1c\xcc\x71\xfb\x34\x8c\x5d\x26\xe6\x6b\xef\x99\x67\x8d\x01\x72\x4f\x59\xf4\x8d\xa4\x87\x9b\x59\x0e\x0e\x1b\x3b\x1d\xb1\x46\x8c\x94\x69\xba\xdb\xf7\x8f\x8d\x00\x37\x9f\x75\x4f\xd0\xae\x79\x45\x48\xcd\xef\x5c\xe6\xa6\x69\x2c\x92\xcf\x6f\x49\x45\xb6\x50\xd9\x09\x52\xd4\x2e\x14\xb7\x5a\x66\xbd\xdf\x8b\x7f\x07\x48\x9d\xbc\xbc\xd1\xa5\xac\xbc\xe4\xb0\x79\xf3\x81\xe1\x0c\x08\xa3\x6c\xaa\x30\x6a\x37\x16\x69\x67\xd5\xf7\xb0\x35\xdf\x55\xb0\xcb\xf2\x75\xbe\x07\xa8\xe3\x5b\x9a\x8c\x17\xa6\x7d\x2d\xe8\xd0\x0b\xb3\x76\xac\xc3\xb9\xc0\x89\x8e\x95\x87\xaf\xc2\xe4\xba\x06\x95\x8b\xa2\x8d\x7a\xe1\x12\x37\x12\x70\xc3\x27\x2f\x9c\xc9\x7f\x3a\x6d\x7f\xd1\x59\xd6\xbf\x22\x88\x6d\x0d\xbc\x5a\x37\xcd\xb1\x82\xce\xb6\x4c\x73\xaa\x6e\x3e\xe8\xd1\x5b\xb7\x7b\xc4\xee\xd3\xa0\x2c\x58\x4d\x76\xbf\x85\x93\x5d\xad\xda\x66\x06\xc7\xbc\x45\x9a\x4f\x35\xf8\x06\xbc\x6f\xb8\x50\x48\x0c\x3d\x5a\x67\x9f\xa8\x12\xa9\x5c\x3b\xe7\xd7\x1d\xab\x5e\x97\xe9\x70\x31\xf1\x41\xc3\x51\x83\xd6\x94\xb5\x66\xa3\x5b\x6e\x99\xcd\x6d\xb7\x64\xbf\xe6\x3e\xe8\x84\x5c\xdd\x7e\x13\x3f\xba\x7f\x35\x19\xc8\x2c\x30\x66\x1f\x40\xd6\x4a\x7b\x38\xf9\x4a\xcf\x2b\x68\xdc\x7a\x83\x83\xfa\x9f\xdc\x6c\x07\x91\x46\x33\x32\xef\x59\x57\xcd\xd4\x62\x47\xa0\x68\x15\x62\xf0\x6c\xc4\x52\xc5\x4c\xfd\x40\xc2\xb1\x37\xf7\x0b\x2a\x52\xaf\x94\xdb\xc6\xeb\x65\x50\xca\x55\xfd\x34\xb3\xb7\xde\xd8\x38\xbc\xcc\x0d\xa8\xcc\x31\xfa\xbd\x40\xbb\xc6\xe7\x6e\x79\xb1\x7f\x7d\x24\x98\x5c\x5a\xdf\xfc\x4a\xe4\x44\x53\x44\xdf\x8c\xf0\x10\xc4\x3d\x09\xc7\x87\x28\x46\x67\xba\x73\x39\x7a\xd1\xb9\x8b\xdc\x4b\xf6\xdd\x25\x2d\x9c\x01\x5f\x9b\xb2\x30\x4a\x6a\xf8\x56\x69\xde\x32\x34\x31\xab\xe8\xfd\xe0\xed\xcc\xb5\x22\xb5\x86\x99\x82\xeb\x85\xd2\x85\x76\xc5\x1e\x85\xc7\xe2\xc7\x5e\xdf\x2d\x40\xfb\x35\x97\xdb\x17\xb6\x39\x6a\x54\xa8\x97\x84\x3d\x4e\xac\x72\x2b\x5b\xd5\x68\xaf\x69\xa8\xbc\x0a\x2b\xaf\xe3\xd6\x9c\x12\x0b\xeb\x24\xbe\x85\x89\xee\x29\x8c\x06\x4b\xf2\xa7\x1e\x12\xa3\x17\xf9\x58\xdb\x94\x44\x77\xfe\x05\xbf\xf6\x8c\x64\x6e\x47\xfc\x40\x6e\x12\x33\x33\xeb\xdd\xab\x54\x84\x43\xb1\x79\x8e\xc2\x70\xd0\x9b\xb2\xec\xe1\xa6\x9e\x1a\x44\x16\xb5\xc8\xba\x41\x3a\x73\x3a\xe1\x5e\x53\x6e\xa6\x96\xff\xa9\x16\xfb\xcc\x03\x27\x60\xdb\xb9\x1c\xd0\x63\x42\xfb\x6c\x9e\xa1\x46\xed\x5b\xd5\xc2\xa7\xb0\xc9\xae\x6b\x25\x89\xe2\xe7\x86\xb2\x6b\xff\x14\xd3\x7a\x70\xdf\xeb\x8f\x1d\x59\x9b\xdb\x01\xa7\xb7\xec\xfc\x12\x42\x02\x36\x3e\xa7\x28\xc7\x8e\xad\xcf\x94\x28\xa4\xda\x72\xfa\xaa\x5f\xa6\xba\xac\x6e\x36\xb5\xa5\x8a\x8d\xe7\xb4\x3f\x4c\x19\x68\xcb\xec\x52\x4d\xca\x29\xce\xed\x59\x4b\xc0\x27\x1e\xef\xfb\x9e\xe0\xef\x4f\x1c\x38\x95\xb0\xef\x7c\x71\x10\x98\x64\xf9\x98\x32\x14\x94\x32\xaa\xde\x30\x8c\x4e\x77\x82\xba\x8e\x70\x32\x33\x44\xac\xa7\x3f\x15\x41\x85\x8b\xc1\x97\x21\x2d\x98\xbc\x80\x37\xce\x55\xfb\x36\xa9\xe9\xcf\xeb\x77\x3a\x8b\x73\x83\x88\xdb\x41\xed\x55\xb1\xb7\xb7\xf6\x7b\x0c\x62\xbf\x12\x72\x07\x81\xb1\xdd\x33\x53\x23\x5a\x31\x2e\x6f\x81\x13\xe7\x23\x6d\x4b\x7a\x27\xcd\xc3\xed\x92\x6e\x4e\x99\x84\x99\x07\x1a\x4f\x3f\x0c\xab\x70\xde\x9a\xd1\x0a\x6f\x79\x5c\x36\x0b\x8c\x9c\xbe\xf3\x75\x2e\x2a\xba\x17\xf8\x72\xfe\x8f\xd8\xa5\x6b\xe8\xc5\x3b\xe9\xa5\xd7\x2b\xc0\xf2\x90\x52\x4c\x59\xf2\x55\x8b\xc2\x0f\x6b\x25\xc5\x8e\x3f\x76\x94\x9a\x35\x9f\x7a\x6e\x86\x0d\x1b\xf9\x71\xb7\xca\x66\x6b\x43\xe1\xcc\x89\xf9\xba\x10\xb7\xe5\xb9\xc5\x96\xe0\x82\x5e\xc5\x65\x84\x3f\xf1\x0d\x1d\x4e\xf4\x35\x4d\xdd\x46\xbc\xf5\x71\x0a\x36\x59\xf1\xf4\x0e\x70\xee\x41\xd6\x78\x4f\x3e\xc2\xaf\xb2\x5e\x94\xdc\x6a\x41\x4d\xfa\x6f\x49\xc1\x57\xbc\xc2\x3e\x8a\x0f\x23\x12\x12\xae\x88\xb6\x67\x56\xdf\x71\xf8\xfc\xf0\xb5\x86\x0e\xf8\xfd\xe3\xc6\xab\x8f\x68\x3b\xbe\x03\xaf\x6d\x75\x37\x9d\x16\x05\x5c\x06\x37\x13\xb1\xca\x2f\xbe\x6f\xd4\xe1\x96\x7c\x4e\x62\xb5\x88\x97\x3c\xcb\x87\x1b\x48\xda\xee\x95\x35\x57\x49\x5d\x2e\x06\x99\xc7\x48\x69\x8e\x6b\x21\x66\xa4\xaf\xf6\x51\x2e\x3a\x14\x43\xfb\x39\x83\x44\x5a\xa6\xbd\xaf\xca\x18\xee\x94\x4b\x82\x9c\x35\xea\xa4\xcf\xbe\xd4\x59\xe4\xec\xcb\x7d\x89\x4b\x45\xe7\x15\x3e\xec\xba\x34\x28\xab\xbc\xdc\x39\xe8\x7f\xa4\x16\xfe\xee\xe8\x9c\x92\xfe\xe7\x9d\x19\x94\xa9\x59\xeb\x86\x0d\xfe\xa7\x65\x38\xdd\x96\x3a\x60\x8d\xc7\x3a\xb0\x4e\x99\xbb\x0c\x3d\x63\x60\x4c\x20\x95\x4d\xac\x2f\x06\xab\xa9\xdb\xec\x07\xba\x17\x82\x94\x58\xa6\xf7\x55\x6c\x57\xe9\x0f\x6e\x8f\xde\x57\x22\xd5\xdf\xbf\x2c\x1f\x8b\xfd\xf9\x98\x0d\xc4\xa2\x5b\xec\xb3\x65\x10\xab\x83\x5e\xfb\x52\x27\x6b\xdc\x61\xed\xfc\x9a\xc6\x6a\xa5\x23\xcc\xcd\x3e\x0b\xe5\x7e\xee\x2f\xcc\xe2\x4d\xf7\x3d\x63\xf2\x07\xd5\x29\xf6\x51\xf2\x67\xcd\x29\x0a\x8d\x1e\xa1\xad\x82\xa4\xd3\x3a\x6e\xaf\x74\x5a\xd0\xce\xa9\x9c\x2b\x0c\xa2\x85\x28\x25\xc6\xe2\x28\x26\x0a\x17\x9f\x6f\x90\x63\x60\xdf\x2d\x4d\xc9\xf9\x50\xd9\x7b\x6a\xd8\x00\xa8\x3c\xec\x37\x14\x13\x9a\x09\xb6\x47\x77\x1a\x5c\x96\xb3\x44\xbb\xd8\x74\xca\x84\x36\xc7\x40\x05\x39\xec\x3e\x2b\x68\x1e\x57\x65\x51\x4c\x61\x97\x03\xc2\xbf\x54\x20\x32\xb5\x89\x29\x8a\x7f\x53\x51\xe4\x54\xc5\x9f\xa4\x5a\x32\x4b\x21\x6a\x76\x89\x62\x22\x7f\xaa\xdd\x90\x22\x0b\xfd\x51\x00\x26\x6d\x41\x9a\x62\x76\x88\xfa\xe0\x46\xef\xf3\xc4\x40\xf0\xef\x36\x68\x92\x9a\xdc\x07\xcd\x5b\x18\x47\xd0\x2a\xb4\x02\x55\x03\x2e\x02\x57\xaf\xa6\x43\xae\x81\xdc\x90\x8b\x90\x70\x60\x8e\x30\x01\x79\x83\xb1\x28\x5c\x81\x29\x61\x98\x0b\x96\xd3\xff\x62\x5e\x11\x3c\xc6\xb4\xa4\x9f\x91\x00\xcf\xe9\x8e\xe8\x89\x1e\x5a\x3d\x34\x7e\xf5\xc6\xc8\x5c\x71\xe7\x3d\xa0\x00\x06\xd2\x71\x0a\xdc\xba\xf2\x77\xe5\x0a\xf4\x18\x7c\xa0\x00\x00\xa9\x85\x9b\x27\xb5\x41\xee\xc0\x09\xc1\x23\x40\x95\x95\x76\x87\xcb\x32\xbf\xad\x5e\x82\x0a\xca\xd8\x21\x99\xa0\x2b\xb2\x3a\x48\x53\xd9\x4f\x72\x91\x2b\xf9\x32\x2c\xd1\xc8\xa5\xa3\x4c\x2f\x11\xdb\x55\x4b\xd6\x71\x41\x16\x71\x72\xcd\x47\x90\xc5\x44\xb1\x42\x85\x54\xd7\x5c\xa8\x8b\xe2\xef\xe8\xaf\x51\x07\x12\x99\xd4\xf0\xf9\x58\xb9\x18\xbc\x72\x9f\x1d\xb8\x7d\xb5\xac\x0e\x0b\xd9\x46\x40\x0b\x11\x90\x0a\xb8\x79\xc2\x2c\xb8\x00\xb1\xeb\x23\x09\xf2\x42\x62\x4c\x55\x64\x55\x56\xb3\x20\x35\xb2\x0d\xab\x6a\x72\x05\x40\x10\xf2\x4f\x99\x51\xd0\xc3\x15\x35\xe9\x5e\x91\xea\xf9\x50\x8e\x96\x58\xcd\x12\x9c\x95\x22\xfa\x1d\xe5\xbe\x26\x28\x9c\x43\x29\x62\xcf\x0a\xc7\xb3\x1d\xd8\x27\xc4\xf5\xd7\xf2\x48\x46\xd2\x3d\x0c\x3b\x44\x18\xb0\x8e\xbc\x3e\x6e\x06\xad\xc7\xf0\x5b\x55\xa0\x9a\x08\x5a\x71\x1f\xa4\x07\xae\x13\x57\x03\xb6\x45\xda\xb9\x57\x02\x07\x30\xe7\xee\x37\x81\x4e\xa1\xca\xc1\x45\xa0\x1f\xab\xb6\x32\x8e\x7a\x28\x94\xad\xf8\x29\x33\xed\x55\x7b\x51\x49\x51\x8d\x09\x53\x1e\x57\x2c\x71\x76\x9c\x3b\x7a\xe3\xd7\x72\xc2\xda\x90\x44\x12\x3a\x99\xad\x79\x43\x85\x5e\xc2\x7d\x28\x63\xc8\x79\xb8\x26\x06\xa9\x5b\xab\xc3\xcd\xa9\xbe\xe7\xb8\xc3\x1f\x69\x8c\x33\xc5\x07\x1b\xb4\xff\xa2\x1a\xd7\x54\xe9\x40\x29\xb6\xe9\x40\xad\x44\x72\xa9\xa7\x9a\xc6\x15\xea\x9f\x5a\x78\x6d\x31\xa2\xbe\xac\x97\xd9\x55\x74\xa3\x98\xa6\x5f\x21\xfa\x94\x70\x6c\x78\x17\xd2\x57\xa8\x58\x22\xb3\x2f\x88\x67\x79\xa3\x75\xec\xf2\xfa\x7b\x49\xbf\x19\x5f\xfe\xb8\xcc\xad\xe5\x2d\xde\x25\x68\x11\xf6\x0f\xce\xa3\xdb\x1b\xcc\x4d\x9e\x84\xee\x6d\x8a\x11\x0e\x6a\xcc\xc5\x4a\x4c\xfd\xb0\x64\x22\x45\xde\x02\xec\xb6\xe1\x80\xb2\x6e\x87\xf0\xe5\x53\x09\x14\x47\xce\x52\x9d\x67\x9a\x73\xcf\xf2\x8c\x61\xb4\x67\x17\x82\x25\x5f\x1b\xf0\x19\xe9\x2b\x44\x8d\x00\xc3\xbf\x5d\xaf\x7b\xe5\x05\x9f\xbf\x6c\x2a\x93\xd0\x6e\xcf\x89\x97\xb5\xea\x8d\xe1\x2d\x02\xaf\x0e\x45\x6c\x9c\x81\x92\xa6\x25\x36\x88\x1a\x36\xf0\x3d\x3e\xd9\xf4\xc7\x8a\x26\x79\xc8\x36\x77\xe9\xf1\x72\xb8\x7b\xc1\xf4\xf2\xa0\xaf\xb7\xff\x84\x7d\xe3\x2d\x7f\xad\xd1\xa7\x05\x19\x41\x4d\x23\xcb\x31\x36\xa1\x7a\x23\xf4\x67\x2f\x22\xd1\xa3\xdd\xc6\x93\xf1\x42\x13\x17\x6e\xeb\xa7\x28\x4f\x1f\x93\x7e\x95\xe6\x3c\x1d\x77\xb1\xbe\xa8\x7c\xc1\xe3\xcf\x0c\x60\x56\xd5\x10\x9b\x0f\x2e\x6a\x14\xe2\x1e\x91\xc7\xb5\x0d\x73\x69\xf7\x74\xfb\x47\x37\x12\x2c\xf5\x26\xee\x71\xca\x5d\x4f\x8d\xee\xe3\x4e\xfa\x58\x0d\xbe\x99\x99\x7b\xa9\xda\xf7\x67\xb7\x63\x54\x5c\x77\x53\xf5\x68\x7c\x54\xe7\x74\xce\xcf\xe4\xf2\xb7\xcd\x11\xd9\xe9\x4d\x9d\x42\x1e\x53\x59\x1f\xba\x82\xcd\x8f\xbe\xfa\xd5\x6b\x76\x0f\x99\x5f\x32\x10\x02\xc9\x2d\x9e\x1e\xaa\x16\x0c\xa9\xbe\x3b\x2d\x7c\x35\x16\xfc\xa1\x88\xc0\x31\x97\x57\x2a\xbf\xc5\x3d\x74\x67\xac\xea\x31\x37\xce\xdc\xae\x59\x9a\x77\xd4\x43\xe9\xad\xf3\xda\x5e\x60\xc5\xdb\xc3\x98\xf9\x28\x85\x56\xbd\x69\x8f\xe4\x63\xcd\xb5\x9d\xbf\xb2\xf2\x9b\x6c\x2a\xeb\xf3\xde\x34\x1a\x66\x7e\x2f\x02\x36\xec\x86\xcb\x95\x10\x1a\xb3\x3c\x72\xca\x8e\x34\xeb\x3f\x21\xbc\xd1\x69\x13\xd7\xfe\x56\xb9\xff\x56\x4a\x29\xba\xe6\x51\x77\x9c\xc4\x6e\x9b\xea\xc8\x49\xe1\x31\x58\x5d\x6a\x1b\x5f\xf6\x4e\x48\x8e\x33\x4f\xdb\xbc\x2a\x3f\x97\xfd\xcc\x75\xa6\x6c\x8e\x1b\x1d\xca\xa8\x8b\xe2\x08\x25\xfd\x56\x7b\x05\x7b\x39\xfb\x7d\xb5\xc6\x74\x4c\x71\x55\x55\x4b\x57\x42\x45\x54\x65\x46\xe5\x6c\xf5\x4c\x65\x52\x26\xa7\x4e\xaa\x62\x29\xdc\xa6\x9e\x50\x69\xf3\xec\x68\x63\x74\xf5\x5d\x4b\x68\xd3\x8f\x3a\x0f\xdd\x7b\xad\xc7\x1b\xc3\x55\xd5\xda\x3d\x5b\xbc\xa4\x59\xfd\x47\x7b\x9f\x88\x61\x54\x03\x43\xca\x38\xed\x66\xd8\x58\x27\x5e\xaf\xab\x49\xb2\x3b\x47\xe2\xe5\x46\x8e\x22\xcf\x3b\xeb\x6c\xa9\x2d\xaf\xaa\x14\x50\xba\x87\xbf\x5b\xed\x5c\x42\x98\x75\x6b\xd2\x2d\xe9\xec\xd1\x6d\x0f\x2d\xb9\x5c\x85\xec\x3c\x5c\xb4\x9a\x25\xd7\xf5\xa1\xf0\x47\x78\x72\xcf\xed\x22\xe1\x67\xac\xde\x07\xc5\x5d\x96\x6d\x7d\x5d\xa5\x7f\xeb\x1e\x1d\x10\x2e\xcf\x55\xf9\x6b\x70\xb2\xb2\x49\x7a\x77\x02\xd2\xac\x2a\x96\x6a\x7e\xc4\xef\xf0\x56\xb0\x2b\x2b\xa8\x6b\xe3\x49\xa8\x5b\xb8\xd2\x26\x28\x1d\x94\xf0\x75\x5d\xa8\x82\x95\xbd\xc9\xc7\xb6\x6d\xe6\xf9\x90\x6d\x7a\x0c\xf2\x20\x4b\x27\x06\x2f\xe7\x5d\x18\x08\x1d\x39\x9b\xf3\xb5\x46\x74\xcc\x39\x5b\x30\x6b\x62\x3c\x30\xeb\xb7\x88\x07\x13\xc1\x99\xaf\x3d\xbb\x26\x7e\x64\x95\x5a\x29\x4e\x8e\x64\x33\x1e\x64\x4d\x35\xbd\xda\x54\x3e\x33\xbd\x92\x1f\x22\xb1\x34\x87\x2d\xdd\x12\x1e\xf6\xb2\x72\xb6\xdb\xd7\x8a\xf0\xf2\xf0\xda\x1b\x48\xff\xe8\x77\x65\x97\x50\x5e\x10\x1a\xb1\x9d\xd5\xf5\x3e\x49\x70\x8b\x35\x1e\x9d\xd1\xc9\x54\x9f\x96\x48\x5f\x43\xf6\xcf\xb2\xd2\x2a\x87\xb5\x16\x6e\x26\x63\x6b\x4b\x17\x03\x13\x5b\x72\x0e\x2f\x52\x13\xdc\x22\x5d\x97\xcc\xe2\x3b\xbd\x2c\x96\x65\xe2\xe7\x2c\x5d\xe0\x7f\x24\x8c\x69\x8b\xc2\x29\x49\x59\xf2\xc1\x88\xee\x94\x0c\xd1\x79\xc4\x99\x6c\x82\xd0\xce\xcb\x1e\x0b\xd6\x87\xcb\xe9\xdd\xf6\x1f\xde\x43\xca\xf9\x2e\x84\xed\xbe\xf6\xbb\xcf\x4b\x36\x3b\x47\x57\x42\xee\x6e\xe4\xad\xaa\x27\x08\x6f\xe1\x50\xe7\xe3\x1b\xf0\x32\x18\xd5\xd8\x2b\x13\x16\xd8\xb6\xa8\xb3\x4d\x87\xb1\xdf\xc2\x1d\x72\x59\x38\x60\xe8\xe3\x68\x51\xdc\xf9\x97\x03\x5e\x1e\xb8\xa9\x97\x7e\x4f\xe0\xf8\xec\x10\xa9\x7b\x2f\x08\xeb\x61\x86\x20\x16\xaa\x2c\xfa\x6f\xc9\x7a\xe4\x7c\xca\x5d\xf1\xbc\x6c\x90\xb6\xdb\xc7\xb9\xca\x53\xfa\x3f\xf6\xe3\x5b\x47\xcc\xaf\x6f\x4b\x0d\x9b\x39\x3f\xd8\x20\x2e\x51\x9e\xdd\xd8\x78\x4f\x68\xf2\xdb\xe6\xff\x22\x3f\x08\xd0\x25\xd2\x68\x3c\xbf\x8d\xa9\x0e\xc6\x59\xef\x81\x66\x7b\x3a\xc9\x33\x36\x97\x4b\x97\x7b\xda\x1f\x25\x44\xe9\x77\x2b\x7f\x3a\xcc\xe8\x72\xd2\x7c\x6c\xc0\x3c\xe6\x9a\x77\x6b\x1d\x1f\xe5\xf9\x0e\x54\x8d\x1e\x0e\x68\x94\x39\x83\x12\x88\xd4\x91\xb4\x2d\xa9\x57\x62\xed\xbb\xb4\xa5\xdc\xea\xdf\xc7\x8c\x0e\xeb\x7c\xd8\x13\x5f\xbc\x6c\xe4\xb8\xe3\x8b\x81\xdb\x38\xf0\x87\x88\xad\xf6\x9f\xe8\x6c\x0a\xd6\x81\x88\xfb\x40\x1f\xb6\xfd\x30\xc2\x61\x94\x5a\xb4\x56\xbb\x32\x0c\xcc\x4c\x33\x62\x19\x75\x8f\x7f\x84\x00\x58\xe3\xfa\x87\x1d\xff\x62\x7a\xe9\x3c\x7b\xe0\x47\x53\x7a\xf8\x45\x09\x48\xf0\xb4\xbe\x03\x7e\x80\x2d\x75\x3d\x2a\xcb\x42\x1f\xf1\xf5\x91\xfa\xd6\x50\xa9\x70\x75\xdd\xa4\xeb\x93\xd2\xb1\x4d\x95\x99\x23\xb7\x80\xbb\x7d\x58\x9c\x3a\x60\x2f\x9a\x74\x5d\xbb\x86\xa1\x46\x89\x7a\x58\x4e\x05\x30\x5a\xf4\xd3\xd1\x02\x8c\x1a\xed\x3b\xbd\xda\x74\xf2\x1d\xb1\x92\x13\xf4\xa7\xaa\xca\x71\x74\xea\x96\x52\xb2\xcf\x23\xaa\x80\x62\xbb\xd5\x16\xa5\x54\x1e\x73\xff\x23\xfe\x04\x0c\x2b\xaf\x82\x01\xc0\xba\x20\x4a\x58\xd7\x27\x15\x72\x1b\x98\x6b\x0e\x69\xb2\x7f\xb4\x47\xc2\x5c\x79\x6a\x03\x10\xf9\xab\x3c\xf6\xaa\xa6\x22\x75\x2b\x9b\x60\xa3\x9c\x40\xff\x44\xa4\x28\xf7\x53\xbb\xc8\x2d\xca\xdb\x24\x3a\xc5\x58\xc9\x76\xee\x37\x0a\x5a\xf1\xf7\xf6\x59\xca\x92\xc2\xd1\x82\x59\xca\x6d\xd8\x50\xec\x3e\x29\x0d\x1a\xe7\x73\x81\xb8\x01\x49\xb1\x6e\x20\x8b\x82\x41\x5a\x23\xd8\x24\xf0\x7b\x58\x10\x3a\x19\x12\x0c\xd1\x41\xdd\x87\x60\x40\xbb\xab\xae\xd0\x8b\xa0\x23\x22\xaf\xd1\x2f\x58\x15\x42\xc2\xa4\xb7\xec\x07\x42\xfa\xac\xae\xb5\x0c\x21\x53\xb6\x37\x73\x46\x9c\xcb\xb8\x8f\x5d\x93\xe0\xd2\x18\xcb\xda\x12\xaa\xab\x8c\xe1\x6b\x20\x79\x0c\xb9\xe3\x19\x44\x01\xa9\x53\xd9\x03\xbd\x07\x9f\xcf\xaf\x84\x34\xc1\x6d\x92\x6e\x43\x3c\xe1\xbf\x82\x81\x20\x00\xf2\x4f\x87\x04\xd9\x81\xd5\x6d\x28\x4f\xf6\xf3\x6a\x37\x58\x55\x4e\x79\x35\x4a\x6e\x51\xee\x13\x92\x22\xab\x2e\x36\xb1\xac\xcc\x0a\x12\x13\x41\xff\x58\x13\x13\x9e\xa3\xc0\xd9\x04\xe1\xaf\x6b\x9b\x6c\x45\x31\x05\xb6\x22\x0d\x26\x39\xc9\x58\x46\xe3\xa4\x30\xb4\xcf\x0b\xaf\x41\xf2\x84\xdb\x7d\x3f\x21\xd1\xa8\xeb\x75\x6c\xa8\x3c\xc2\xb0\x30\x08\x52\x07\x77\x48\x00\x42\x8e\xad\xdc\xf2\xde\x81\x9c\x5d\xed\x36\xa5\x00\x0d\x50\x05\xd0\x59\x60\x2e\x4a\x03\x64\x00\xa4\xaf\x6e\xc9\x6a\x81\x28\xc8\x31\x19\x09\xb1\xc5\xc5\x1c\x8e\xfd\x0d\x9f\xe5\xd5\x35\x5d\x89\x4c\x8c\xf3\x1a\x48\x2c\x91\x7e\x8f\x33\x2b\x7e\x86\xfb\x3b\xc7\x41\xea\x08\xfb\x15\x09\x2b\x07\x67\xbe\x59\xd1\x06\x33\xa9\x8f\x27\xbc\x61\xc3\xd8\xe0\xd6\x68\xd8\x45\xc4\x93\xa2\x74\x48\xd3\xd2\x5c\xac\x2d\x04\xb3\xf2\xd1\x3d\x1f\x52\x83\xcd\xd5\xd4\x86\x44\xa0\x99\xd0\x0c\x48\x37\x5a\x4f\xae\xc4\xe8\x35\x4e\x48\xbc\xd1\x72\x02\x13\x26\xda\x29\xbe\x32\x75\x8d\xb7\x70\xe3\xe3\x3c\x83\xcb\x92\x12\x83\x8f\xb0\xd3\x65\xcd\xb1\x6e\xec\xdf\xa4\x4f\xb1\x5c\x79\xc1\xe0\x2c\x8e\x2b\x0b\x2f\x1f\xcf\x76\xc1\x43\xd5\xec\xb8\x8f\x10\xd7\xb4\x75\x58\x6b\xc3\x60\xfd\x61\xda\xa5\xda\x7d\xbd\x4a\x5a\x6a\xc6\x83\x87\x51\xd4\x45\xaf\x66\x9d\xdf\xe9\x66\x3a\x2c\x03\x29\x4a\x04\x24\xd3\xda\x93\x7c\xe7\x46\x61\xf0\x11\xac\x8f\xb8\x5b\x14\x14\x3d\x21\xf2\x4a\x6a\xa8\xdf\x80\xc7\x97\x4a\x1e\xdf\x5e\xa7\xc8\x80\xe6\x72\xf8\x74\xe0\xcd\x15\x3d\x6e\x9b\xa2\x1f\xde\x9a\xd3\x73\xcf\x8f\x75\x86\x63\xfe\x68\x85\x63\x43\x1b\xb2\x09\x61\x2d\x23\xff\x72\x9b\x20\xce\x0e\x4d\x3e\x1b\xc6\x53\xea\x53\x9e\x5b\xe2\x90\xd9\x8c\x17\x00\x5c\x6f\xb0\xbe\xff\x2d\x3c\xd4\xe6\x59\xd0\x7d\xca\xae\x6a\x66\x98\x18\x89\x2e\xd9\x90\xa0\x89\xb9\x24\x92\x52\x78\x71\x55\xfd\x9a\x8d\x9c\xd6\x5b\x3c\x37\x0c\x88\xef\x6b\xe7\x3b\x83\x11\xa3\x8f\x37\x6d\x14\x5e\xcd\x6c\x6c\x10\x0d\x5a\x57\x9f\xf0\xab\xec\x31\xa4\x2a\xce\x07\x0f\x0d\x1c\x1a\x07\xf3\xb5\x5b\x0d\x9b\x05\xbe\xd4\x80\x37\x75\xbf\x8b\xa8\x5f\x3a\x54\xe9\x1d\xe3\xb9\x00\x4f\xc7\x24\x98\x2d\x04\x05\x6e\x24\xf7\x2d\xfc\xb2\x8d\x4c\x33\x5c\xbe\xaf\x75\x38\xe7\x3a\x3c\x0d\xb8\x98\xf7\x0e\x31\x7e\xb9\xb5\x0c\x83\x50\xbd\xb4\x0e\x76\xac\xf9\xc2\x79\x0e\x53\x68\xbe\xc6\x39\x50\x82\x77\xcc\x71\xcf\x18\xae\x0d\x2e\xaf\x87\xd8\xbf\x9a\xb1\xe0\x09\xbd\x50\x5e\xdc\x64\x5c\x0b\x09\x9d\xcb\x42\x7e\x8e\x35\x98\x9a\x1b\x7f\x92\xb2\x3c\x21\xd8\x8e\xce\xe4\x8c\xc9\x95\x5d\xcb\x15\x1a\x79\x9f\xbc\x55\x08\x18\x29\x0c\x10\x2d\x1e\x1e\xb5\xb4\x0f\x2b\xdd\x1b\x2f\xd0\xbb\x5c\xfe\x69\x4a\x5c\x09\x51\x89\x9c\x89\x17\x53\xa9\x17\x58\x48\xbd\x9a\x07\x1d\x2c\x35\xe5\xd4\x28\xde\xa8\x88\xe0\x46\xea\xc4\xd5\x2a\x73\xf6\x6c\xef\xb7\x41\xb8\x4d\xde\xef\x7a\x62\xd9\x9b\xd1\xa0\xc1\x3d\x4a\x60\xca\xc1\xe0\x1f\x08\xc9\x57\x61\x7d\x90\x91\x96\x12\x97\x9e\x89\x96\xd5\x37\x37\xbb\x07\x4b\x2e\x54\x75\x76\x9f\x48\xec\xab\x15\xef\xf6\xf1\x7f\x51\x57\xd2\x13\xe5\xf0\xaa\x21\xa1\x8f\x6d\x38\xd5\x34\x3b\x58\x77\xbb\xab\xe5\xdd\xc8\xa2\xec\x58\x97\xe2\x54\xa2\xb0\xae\xa2\x40\xa6\x3e\x97\xa6\xcd\xcc\xcd\xe3\x2e\xdb\x1d\x29\x3e\xcf\xb1\x78\x2e\x58\x69\xcc\x3b\x1f\x1d\xd1\x28\xce\xbd\xfe\x4a\xb6\xdd\x9f\x96\x58\xea\xd5\x2e\x80\xd8\xae\xc9\x68\xd5\x1b\xcd\x6e\x7e\xd8\x62\xd5\x52\xd8\xf6\xb0\x05\x56\x1c\xdf\x11\xdc\xec\x9e\x58\xfc\x16\xdb\x6c\xe4\x5f\xdc\xc9\x6f\x99\x75\x6c\xea\xd6\x69\x37\x78\x7c\xa9\x87\xd2\x69\xac\xbe\xdd\x47\xef\x51\x00\xef\x8e\x1c\x1b\xda\xbd\x11\xad\xbb\x14\x73\x87\x3f\x62\x53\x9f\xf0\x37\xff\xa8\xd7\x85\xf4\xd3\x9c\x77\x31\x5d\x79\xef\xf8\x37\xf3\x2f\x94\x63\x79\x17\x6b\x87\x6b\xd9\x0c\x62\xab\x4b\xed\xfa\xea\x83\x9e\xcb\xb5\x90\xf1\xa1\x81\x4f\x35\x36\xad\xf5\xc3\xe7\xab\xb5\x8b\x9b\x47\x7c\xab\x74\x13\x97\x47\x2f\x55\xbe\x0b\xd0\x1e\x5d\xa9\x2a\x74\x4a\x1e\xe3\xd7\xb8\x3f\xbe\x39\x21\x5d\xd7\x7c\x97\x35\x79\xbf\xd1\x17\xb4\x3b\x2b\xd8\x8e\x10\x97\xb3\x76\x08\x2a\xd9\xfc\xf9\xa2\x20\x54\x7c\xa3\x2a\x06\x11\x6d\xc6\xaf\xc9\xca\x4b\x31\xe5\xe3\x6a\x0d\xf2\x1a\xd6\x25\x07\xe0\xe5\x09\x9c\x83\x51\xf9\xf2\xe7\x58\xab\xa9\x99\x72\xfb\x69\x91\x59\xe8\x6b\xad\xb6\x85\xb9\xc9\x92\x4b\x25\x0e\xf3\x85\x45\x8c\xa4\xe0\x79\x66\x91\x70\xe0\xf5\x05\xd9\xa2\x3b\xce\x17\x16\xa6\x8b\x0d\x8c\xc8\x8b\x59\x25\xcf\xee\x1c\x59\x2a\x79\x6d\x27\x27\x01\xbf\x57\x49\x14\xf9\xe1\x1f\xee\x76\x68\x6f\x39\x3e\xe4\xf9\x97\xed\xb7\x39\x07\x41\xb8\xad\xdd\x2a\x91\xa8\xf8\xcd\xa1\xfe\x33\x69\x0f\xb7\x95\x97\xee\x14\xfe\xda\x44\x21\x42\x0a\x75\x48\xee\x48\xd3\xfc\xa5\x59\x16\xea\xf7\x5c\xeb\x8e\x16\x14\x2f\xe7\x64\xe9\x3a\xfa\xcf\xac\x27\xc9\xb7\xd0\xf2\x99\xf7\x03\xb3\xd1\xd2\x19\x8d\x4e\x09\xe8\xe2\x4c\x80\xe1\x0c\xe6\x7a\x66\xe3\xcd\x3c\xac\x50\xf6\x3d\xa9\x2a\xd4\xf1\x02\x09\x31\x8b\x04\x4d\x5b\xfe\x5f\xfd\xd9\x3d\xce\xb3\xbb\xe1\x15\x26\x1e\xb2\x9b\x0b\x9d\xc7\x7d\x2d\xb6\x36\x26\x15\x22\x62\x36\x61\xa8\xb4\xa4\x99\xf5\x6e\xe2\x83\xb4\x4e\xda\x13\xda\xb1\xf4\xe9\xa5\x35\xba\x62\x0a\xac\x9b\x43\xbf\x92\x80\x2e\x0b\xa0\xfa\xc4\xae\x25\x07\x53\xcc\xa3\x26\xfc\x93\x48\xae\x91\x74\x5b\x37\xa2\x71\x24\x5b\x07\x4b\xb0\x8b\x7e\xaf\x10\x89\xa5\x26\x0a\xc8\x34\xa2\x05\x33\xbc\x24\xb2\x73\x0f\x0c\x00\xef\x49\x35\xa9\x26\x92\x3b\xc5\x9d\x2e\x0e\x59\x9b\x57\xc6\x64\x5c\x5d\x37\x16\x56\x02\x7c\x66\x36\xd5\x88\xfb\x41\xf7\x39\x57\x49\x7f\xbf\x8c\x22\x39\xd2\x6a\x82\x7f\xcd\x5e\xa2\x53\xfc\x3f\xb6\xea\xd1\xc3\x7d\x8f\x17\x9c\xa3\x22\xbc\x3f\x46\x4f\x51\x6c\x3d\xb7\x3c\x41\x94\x27\x5e\x87\xcc\x2c\xe9\x26\x9e\xd6\x77\x32\x49\x45\xbe\xdf\xa1\xc1\xd8\xbf\x42\x72\x64\x7f\xa0\xfb\x62\x0d\xa5\x06\xde\x1c\x52\x4d\xf8\xeb\x44\x57\x99\xb6\xc1\x8e\xc6\xa4\xe7\x23\xd3\x1d\x0c\x9c\x63\x29\xb0\x2d\x80\x57\x75\xfa\x9d\x37\x47\xd2\x76\x82\xd2\xa7\xc9\xf5\xee\xf6\xc4\x1b\xf4\x2c\xa7\x8b\x63\x01\x8c\x19\x3b\xab\xba\x5d\x86\x88\x15\x23\xab\x94\x31\x65\x71\x31\x2c\x8a\xa5\x66\xdc\xea\x12\xbc\x76\xfb\x11\x5a\x1f\xce\xf8\xdb\xd4\x44\x05\x45\xda\x71\xa8\x85\x7c\xc4\x36\x78\xd6\xc8\xe5\xa2\xb7\x03\xcf\xcb\xdc\x6c\xb3\x57\x12\xdf\xcc\xe8\x0f\x53\xe6\x6f\x4b\x20\x94\xee\x55\xef\x0f\xa2\xc5\x1f\x70\x36\x95\x48\x3d\xfa\x7a\x74\x3a\xf5\x82\xb1\x07\x35\x92\xe6\xf6\xe4\x32\xe6\x32\x4b\xd1\x80\x38\x18\xc9\xaa\x7b\x70\xab\x1c\xcd\x34\xb9\x3b\x9a\x38\x49\x57\x57\x29\x7e\xf1\x82\xf6\x48\xf9\x97\x8d\x3a\xd5\x57\xe9\x98\x96\x1f\xa1\x4c\xe1\xa5\xc2\x33\x42\x86\x4e\x0c\xe4\x1d\x5e\xca\x36\x08\x88\xc0\xc6\xba\x0e\xca\xf6\xb6\x6e\x2a\xc6\xb1\xb3\x7a\x81\x4a\x31\x1c\x3a\xba\x45\xe5\xe4\x0e\x8a\x30\xa4\x82\xa7\xbf\x25\x09\xab\x8a\x51\x5f\x53\x4e\xdd\x3a\x20\xdf\xa6\xbc\x55\xfe\x30\xa7\x42\x55\x53\x1a\xec\xf8\x83\xfa\x58\xb1\xab\x10\x42\x75\x54\xc8\x8b\x83\x93\xeb\xe4\xa5\x7d\x3e\x90\xfe\x82\x19\xdb\xac\x90\x79\x50\x41\x9d\x8b\xb8\x66\xe8\x79\x79\x3d\xcc\x53\xa8\x35\x64\x0f\xf5\x37\x34\x03\xfc\x12\xeb\x63\xf5\x4a\x2e\x4f\xfc\x30\xf6\x16\x2b\x5a\x78\x8d\xf2\x8d\xcd\x12\x81\xae\xf5\xb0\x1f\x8a\x6a\xb1\xbf\xb3\x0e\x4b\xd0\x98\x67\x71\x4f\xa5\x06\xe8\xcd\xcb\x33\x32\xba\x94\xac\xe9\x33\xe0\x6b\x58\xab\x8e\x7a\x48\x21\x32\xb8\x32\x0d\xea\x0d\x5f\xcc\x57\x82\xb4\xc0\x9d\x12\xab\x20\x39\x08\xf1\xa0\x52\x50\x29\xd2\xc1\x01\x0f\x3c\x8d\xca\x85\x25\x00\xd5\x50\x16\x90\x6b\x40\x4f\x94\x38\x90\x03\x7c\xbd\xba\x2f\x4b\xb8\x21\xb4\xfc\xf7\xda\x29\x89\x2b\xd8\x11\x16\x43\x94\x40\x87\x71\xb2\xc4\xb4\x38\xa7\x39\xbf\x4b\xe8\xb1\x31\xb4\x30\xe9\x4d\x66\x13\xc6\x4b\x26\x87\x71\x7a\xd1\x03\xec\x47\xd8\xeb\x77\x81\x9e\x41\x79\xd6\xad\x42\x5d\x11\x66\x85\xa7\x21\x0d\x70\xd7\xf8\x57\x10\x9b\x15\x3f\xef\x1a\xe8\x1d\x94\xa9\x99\x1a\x08\x8e\x7e\x0c\x2b\x00\x7d\x45\xfd\x04\x67\x80\xa5\x50\x3d\x72\x2b\xda\xfd\x38\xe5\x1b\x23\x12\x61\xcb\xf7\xd9\xc2\x12\xbf\xe0\x6f\xd7\xb6\xa4\xe5\x71\x7e\x6b\xcf\x25\x8e\x31\x7b\xb9\x6f\x24\x4d\xb9\x26\x1c\x4f\x99\x66\x8e\x0a\x59\x04\x44\x63\x79\xae\x8c\x43\x4d\x68\xca\x93\x72\xb0\x7e\xac\x79\x4b\x2e\x4c\x04\x21\x5a\x48\x85\x30\x17\x0f\x62\xf2\xa1\xf2\x2b\x07\xee\x40\xd8\x73\x5c\x98\xa6\x23\xf4\x0b\xa6\x1a\x36\x7a\xaf\x88\x90\x23\xe7\x6a\xea\x44\x20\x48\xc7\x85\x78\xe2\x4f\xde\x10\x91\x40\x4e\xf5\xf3\x2f\x4a\x1d\x5a\xdc\xe3\xee\x49\xef\x23\x46\x38\x30\x90\x26\x3e\x89\x6d\x2c\xfb\x9e\xbd\xc5\x37\x87\xb5\x72\xe2\x58\xe3\x8a\xd1\x1c\x08\x7e\x41\xb3\x82\xdb\x89\xa8\x7e\xe4\xc4\x0a\x1d\x56\x7b\x9c\x4a\x47\xd7\x27\x18\x9d\x67\xa4\x65\xfa\x3d\xea\xa4\xff\xf2\xb6\x35\x32\xa5\xc5\x19\xaa\x98\x2e\xd1\x0c\xe4\x33\x1d\x25\x69\x45\xd2\x7f\x87\x1b\x90\x04\x24\x56\x63\x3a\xf1\xa7\xc4\x32\xa5\x1d\x07\x83\xd7\x1f\xcb\x30\x27\xdf\xae\x77\xc8\x59\x2c\x94\xf3\x37\xc0\x60\xa4\x27\x4f\x55\x25\x91\x98\xc0\xf9\xa6\x25\xc2\x31\xe4\x05\x5b\x4c\xb3\x8f\x51\x35\x5c\x85\xd9\x5b\xa8\x34\xdf\x29\xce\xa9\xd9\xe1\x20\xad\x35\xc1\xce\x5b\x2f\x23\x99\xbb\xaf\x61\x61\x44\x66\x65\x6c\x61\x64\x05\xb3\xe8\xa9\x72\x54\x29\xd7\xe0\xae\x5c\xdc\x2c\x23\x0b\xbc\x9c\x56\x4d\xdc\x97\x10\x2c\x39\xc0\x75\x8b\x56\x01\x17\xbb\xf5\x78\x9e\x60\x62\x7f\x31\x7f\x17\x76\x7a\x7c\x7e\x4b\x56\x45\x6f\xe1\xca\xe6\x57\xb3\xef\xe8\xd5\xf5\x0b\x8e\xf7\xa8\xd7\x79\x65\x2f\xb8\x74\x65\x7a\x50\xd8\x2c\x35\x60\x35\x2a\xce\x9c\x40\x19\x67\x24\x3d\xc5\xfd\x6a\x3d\x92\x66\x8b\xcd\x2d\x8c\xcd\x04\x63\xf8\xd1\x02\x39\x39\x98\x5e\xf7\x5f\x05\x29\xa8\xe9\x47\x8d\xa5\x67\x50\x28\x65\xdb\x32\x0e\x2e\x58\x84\x5d\xed\x87\xb6\xbc\x76\x00\x79\x57\x0f\xe1\x6c\xc9\x37\xb6\x68\x70\x43\x6e\x32\xbb\x3d\xd7\x65\x9f\x28\x8e\xf8\xf0\xa9\xce\xc5\xb3\x38\x8e\x75\x40\xfe\x92\x36\xdd\x3b\x1e\xb6\x1a\x4c\xdc\x4e\x47\xac\xa8\x2e\x32\x73\x8d\x96\x97\x07\x33\x8b\x63\x16\x75\x1b\x04\xcb\x1a\x17\xb4\x73\xa7\x2b\xcf\xcd\x47\x46\xd6\x55\x07\xcf\xe7\x7b\xe8\xd4\x0a\xcf\x0f\x98\x8a\xd5\xe7\x2f\xb9\xdc\x89\x6c\xf2\x47\x8c\xc8\x64\xb5\x06\xae\x8e\x5e\x36\x92\x57\x2f\x9b\xe1\x7c\x52\x39\x5a\xa9\xca\xed\x35\x33\x6b\x68\xe0\x65\x3a\x52\x3a\x9e\x70\x0a\x02\x34\x7b\xbb\x59\xf9\xf1\x3b\xa3\x66\x94\x87\x79\x75\xd3\x9f\xf0\xd8\xb2\xe3\x93\xf8\xb9\xad\xda\xdd\x09\x99\x7e\xa5\xc6\xfd\x71\xf9\xda\xb2\xd6\x87\x63\x0e\x39\x15\xed\x75\x63\xee\x11\x98\x8e\xfd\xf1\xdb\xcf\x24\x3a\xaf\x4c\x1c\x3c\x09\xeb\x06\x4c\x17\x68\xd6\xf6\x1e\x9d\x0b\x80\x39\xf7\x1f\x5d\xcc\x17\xa9\xbf\xf5\x2a\x7b\x81\x27\x6a\x26\x97\x67\xc2\xbe\xe4\x70\xb7\x94\xcb\x79\x17\x98\x54\x23\xc6\x13\x4e\xec\x6b\xee\x64\x4f\xe5\xe7\x75\xba\xd0\xd6\xea\xda\x07\x22\x08\xe9\x6d\xe8\xbe\xc5\x79\xbb\x9e\xa9\x5e\x7c\xdf\x1f\xfd\x98\xde\xd5\x9a\xad\x41\x6c\xaf\x5f\x0e\x68\xf8\x62\x6f\x60\x44\xef\xf0\xf7\xbe\x0c\x4f\xa5\xd1\x0b\x03\x05\x96\xa9\x63\x16\xc3\xaf\x75\x1f\x8d\x77\x8c\x7d\x52\x31\x9b\xe0\x4f\xc4\x49\xa8\x9a\xae\xc5\x1e\xe3\x8d\x3a\xfe\x96\xa2\xc6\xd7\xf2\x3f\x9d\x25\xcf\x6b\x4d\xdc\x2a\x7c\xc9\xa3\x15\xcb\x57\x36\x70\xad\x1b\xed\x1a\xfc\x18\x9f\xfb\x29\x1d\xcd\x94\x13\x63\x02\x1d\x92\x8b\x15\x53\x4e\xed\x0a\xfd\xbf\xcf\x80\x5a\x4b\x6b\xca\x67\xad\x5b\xa8\x39\xaa\x73\x87\x5b\x1a\x23\x58\x73\x25\x2d\x48\xcf\xc8\x79\xe3\x36\x80\xa5\xf7\x82\x4c\x3b\x55\x47\x73\x51\xe8\xed\xb4\xa2\xc6\x92\x59\xf7\x79\xf1\x27\x8e\x92\x41\x55\xeb\x9b\xfe\xd6\xe1\x1e\x1b\xd3\x29\xae\xf1\x7f\xad\x5f\xca\xbf\x96\x71\x89\x1f\xdd\xb8\x5c\xe4\xb5\x1e\x3c\xd8\x5d\x79\x96\x93\x37\x2f\xdd\xf0\x89\x3e\xbd\x2c\x5f\xbf\x0b\x7f\x8e\xe8\xaf\x33\x1f\x80\x21\xf3\x6b\x8a\x6a\x85\x57\xd5\xab\x93\x72\xf0\xab\x4f\xab\xb2\x23\x1b\x57\xc7\xab\x1c\x3c\xff\x5e\xfd\x5a\x95\x6c\x79\x15\x85\xa8\xa6\x68\x1f\x41\x71\xaa\x3f\x41\x69\xe8\x1f\xb5\x4e\xc2\xd7\x83\xf5\x3d\x65\x76\x7f\xa4\x16\xfb\x1f\xde\xfd\xfd\x55\xdd\xcb\x8d\xad\x89\xfa\x43\x71\x5b\x9b\xa5\x83\x7b\x59\xc2\xdb\x16\xcb\xdf\x4b\x36\xb7\x56\xb0\xd2\x6f\x4e\xb3\x14\x49\x67\x2a\xdc\x56\xdf\x93\xf3\xcb\x66\x86\x6e\x90\xeb\x4b\x15\xeb\x7e\x23\xeb\x15\x1b\xe6\x7c\x20\x1d\x14\xfa\x46\x2e\x13\x4c\xf2\x9c\x9f\x7e\xc6\xf1\x73\x83\x4d\xcc\xb1\x7d\xb9\x26\x6a\x5d\xd8\xf9\x82\x4a\x08\x0a\x7b\xb2\xd4\x54\x4a\x38\x4d\xcd\xe9\xc3\xfb\x4b\xf9\x51\xae\xdc\x1d\xbb\xaa\x0c\xaf\x95\xad\xf3\xbd\x32\x41\xfa\xdb\x02\xb3\x47\x62\x0e\x36\x7f\xa0\x7b\xd3\x14\x79\x5e\xc4\xd1\xcc\x21\x6a\x2e\x75\x32\xbb\x0c\x71\x84\x7e\x3e\x63\xba\x4f\x80\x7e\x26\xd5\xe0\x8d\x27\x55\x2f\xa9\x38\xb5\x94\x22\x1e\x5f\x1c\xf8\x9d\x88\x8b\x6b\x74\x10\x22\x74\xc4\x91\x1f\xee\xe0\x0d\xe3\x2b\x95\xba\x71\x97\x52\x7b\x41\x1d\x58\xa9\xec\x74\xe9\x6b\x45\xf5\x86\xf7\xdf\xb5\xd7\x58\xdb\x18\x6c\xaf\xf7\x60\x5c\x2c\x36\xc8\x93\x57\x9f\xbd\xdc\xd8\x43\x85\x07\x4c\x6d\x7a\x12\xcf\x86\xa8\x33\x01\xa4\xfe\xf0\x16\x52\x1f\xed\x49\x84\xfc\xfc\x4d\x1a\x23\xe4\x73\xfb\x3b\xba\x51\xd0\xa3\xc2\xef\xd4\xba\x80\x0b\xb1\x1f\x29\x47\x7d\x1d\x9e\xef\x93\x3f\xf8\x02\x2d\x04\x68\x66\x2f\x18\x1a\xc2\x24\xeb\x60\x98\x3c\x8f\xa0\x1e\x99\x0c\x3a\x8a\x0d\x48\xb4\x90\x11\x69\x3a\xa1\x73\x68\xb7\xfa\xed\x2d\x83\xa5\x6d\xe2\xcc\x9f\xc6\x2b\x3b\x4a\x88\x10\x3b\xc0\x56\x23\x01\xe9\x7c\x99\xf3\x95\xa4\xe6\xc6\xa5\xfd\x22\x2b\x78\x0e\x12\xa3\xe8\x86\xee\x6e\x93\x30\x46\x85\xd3\x6e\xa3\x18\xa3\xd0\xc1\x30\xe7\x80\x11\x6d\x9b\x14\x91\xca\x0c\xb3\xfa\xe5\x9e\xc0\x92\xb2\x7a\x69\x8c\x67\x39\xda\xd0\x6e\x2d\x52\xde\xb8\x5e\x86\x95\xe0\xb5\x5e\x94\x03\x49\x58\xa7\x10\x1f\xd9\x27\x1d\x4a\xca\xcd\xdb\x72\x23\x47\x54\x57\x76\xcf\x2f\xef\x3d\x8c\xdd\x3d\x83\xbf\x6f\x78\x98\xeb\x4f\x6e\x32\xf9\xc1\x90\x24\x1d\xb7\x7c\x48\xb1\xa7\xde\xb4\x9e\xc4\x3f\x60\x1d\x37\x8d\x1e\x21\xad\x19\x1b\x3c\xa8\x54\x5d\xbb\xa3\xeb\x94\xda\xc2\xf6\xd3\x38\x1b\xa4\x42\x4f\xba\x75\xd4\x96\x41\xbb\xa1\xcc\xd5\x1e\x21\xc9\x29\x5d\x51\x7c\x4d\x72\x7c\x6c\x00\x93\x21\xc4\xda\x17\x83\x96\xb0\xd7\xbd\x6e\xcb\xf2\x3a\xff\x54\xc2\x71\xd5\x27\x76\x94\xeb\xb7\x0c\xb1\x48\x95\xa9\x3d\x09\xe2\x09\xd5\xf7\xf4\x20\x52\xc5\xed\x3d\xea\x00\x55\x40\x37\x84\x4c\x60\x88\xe9\xda\xa1\x7c\xa9\x05\x2a\xd7\x3b\xee\x50\x27\x95\xaf\x15\x06\xd1\x94\x94\xa0\xf1\x9e\x94\x4a\x85\xda\x17\x7d\xe4\x35\xf9\x1d\x5b\x3c\xa5\x00\x86\x7e\x60\x84\x5f\x82\xdd\x52\x10\xc7\xea\xc0\xd4\xa0\x85\xe8\x0e\x98\x36\xf8\x27\xae\xcc\x4e\x12\xa8\x22\xde\x85\x9b\x5c\x4b\x17\x7d\x49\x57\xe5\xf8\x8b\x32\xd9\xd9\xec\x2d\xf1\x05\x8e\x15\x4b\x48\x2a\x9e\xd9\x89\x5b\x95\x51\x66\xe8\xc1\x25\x64\x7d\xa8\x0e\xd3\xd3\x60\x3c\x76\xa0\x03\x0e\x61\x22\xf3\x2a\x4d\xa1\xaf\xe0\xd3\x79\xb3\x90\x16\xb8\x6b\xa2\x00\xe4\x04\x62\xd3\x1f\x0d\x3e\x87\x2c\x73\xbc\x0c\x12\x41\x5f\x90\x3f\x04\xd2\x44\xd1\x21\x28\x90\x1b\xaa\x09\xb4\x04\x4a\x45\xbd\x94\xe3\x4a\x1c\x41\x38\xb2\x63\x24\xde\xe0\x6d\xd8\xc2\xe2\xdd\xcc\x60\xee\xcd\x1b\x1a\x9c\x9f\x9c\x29\xa9\x29\xce\x23\x5a\x87\xec\x1b\x96\x11\x86\x2c\xfb\x8e\xc1\x5c\x3a\x02\x71\x25\xfa\xf6\xd7\x40\x83\x50\x25\x75\xf5\xd0\x54\xc4\xe3\x82\x0a\x48\xf2\xf2\x46\xdc\x2a\xa4\x7c\xa5\xc2\xdb\x18\x26\x86\x5a\x36\x0b\x02\xef\xa2\x69\xf2\x0a\x90\x93\xe8\x6c\x48\x34\x44\x16\xfd\x00\x74\xc2\x30\x95\xb0\x28\xe1\x22\x39\xbe\x7c\xc0\x2e\x92\xf2\x58\xb9\xca\xd1\x92\xf6\x22\x28\xb0\xf7\xa4\x24\xd9\x27\x78\xe6\xd2\x34\xae\x1d\x47\x57\xae\x8e\xd3\x42\x36\x80\x44\xb0\x46\x56\xc6\x60\x96\x34\xc2\x64\x9f\x3c\x07\xb3\xd1\x12\x04\xbd\xb1\x14\x52\x00\x80\x90\x17\xf9\xd1\x64\xf9\xab\x08\x4b\xf7\xa7\xf2\xf5\xf8\x6b\x9a\x77\x60\x9f\xb1\x37\xe4\x53\xb5\xc9\x24\x00\x70\xcd\x3c\x8a\x84\x96\xed\x8c\xa0\x11\xbf\x4b\x44\x49\x1e\xcc\x74\xf0\xb1\x32\xf7\xe1\xad\x9c\x31\xd9\x6f\xc8\xab\x5c\x1b\x20\x97\x18\xc5\xbd\x01\xd2\xe7\x6c\xf0\xb4\x15\xe0\x9c\x54\x56\xe1\xad\x2b\x3c\x45\x52\xbd\xee\x59\x9e\xfb\xca\x4b\x93\xc8\xb5\xa9\x91\x2e\x4b\x0e\x63\xa8\x29\xcc\xf2\x38\x9d\x95\xad\xfc\x44\x9d\x11\xeb\xa7\x6e\x56\xc7\x50\x30\xca\xb7\x9c\xa2\xb3\x15\x26\x3d\xd6\xe8\x21\xa0\x87\x31\xa5\xb4\x57\xd2\x0f\x92\xe2\x89\xde\x12\xaf\x64\xde\x8d\x48\x6e\xbc\x94\x83\x4f\x7b\xae\x87\x80\xce\x2d\x95\xf2\xa9\xd0\xf7\xab\x25\xfc\x23\x6a\x6b\x94\x34\xde\xe8\xe3\xee\x35\x53\x76\xba\x9d\xef\x5a\x36\x55\xf1\x59\x01\x7b\x02\x95\x18\xb0\xcd\xbf\x30\x7f\x3a\xb8\x97\x6b\xd2\xad\x13\x1a\xcc\x09\x7d\x5d\x11\x85\x62\x7c\x8e\x13\x8a\x94\xe7\x7c\x70\xb9\x1d\xb7\xb5\x96\xfd\x40\x2a\xf5\x02\xeb\xae\xc2\x6e\xa1\x0e\x25\x4e\x52\xe7\xcd\x4f\xd2\xc7\x1b\x30\xf0\xf5\xde\x41\xbe\x39\xb4\x78\xc0\x6d\xfd\xa9\x3c\x66\x32\x74\x93\x67\x7a\x61\x79\x98\x67\x6a\x45\xc4\x06\xae\x67\xba\x45\x53\x8f\x70\x90\xc1\xf7\xa8\x9e\x54\xa1\xd8\x10\xc6\x16\x66\x3a\xf3\x38\xe7\xf6\xb2\x68\xee\x0b\xfa\xdf\xbd\xad\x85\x3a\xb4\x2f\x95\xe5\x25\x48\x6a\x4a\xaa\x7f\xd9\x28\x99\xe3\xfb\x57\x85\x35\x49\xc9\x32\xbc\x56\x9a\xf0\x54\x7d\xa2\xee\x03\xf5\xab\x34\xa5\x51\x84\x90\x2e\x72\x1d\x36\xd9\x28\xcc\x99\x56\x68\x6d\x33\xe3\xfe\x61\x94\x34\x20\xce\xdf\xb3\x8b\x1e\x63\xf2\x21\x6e\x5f\xe7\xe0\xec\x73\x21\x16\xcb\xd7\xa8\xdc\xa4\x7d\x74\x2e\x91\x58\xa8\x40\x8a\xc6\x5e\x7a\xb3\x81\xad\x9a\xb9\x5a\xdd\x83\x7d\xde\x25\x5b\xf7\x05\x33\xf9\x46\xa4\x49\x1a\xcd\x4a\xc9\x69\x71\x46\x93\xfc\x6d\xdb\xe2\xd0\x77\x6c\xf5\x3b\x10\x68\x8a\xf6\x42\x97\x25\xbe\x0b\x9a\xd9\x73\x1a\xaf\x2e\xf9\x9b\x12\xa4\x2c\x91\x7d\xe1\x9e\x65\xd5\x73\xce\x75\x9b\xe7\x2d\xca\xbc\x92\xa7\x67\xbb\x1d\x79\xda\xc1\x0d\x7d\xf3\x0c\xd3\xe4\xed\xf1\x32\x52\x71\x91\xde\x6c\x07\x7e\xb6\x1e\x05\x37\x44\x79\xb7\xcd\x2e\x7d\x9d\x54\xed\xfa\xba\x74\xad\xa3\xa5\x4f\x6c\xd1\xae\xec\xda\x80\xdc\xa2\x51\x8a\xd6\x60\xfc\xd2\xa5\x80\x99\x21\x9b\xe5\xbf\x1d\xb2\x46\xfe\x44\xe4\xe9\x17\x8d\xb6\xaf\x9a\xdc\x14\x1e\x8f\xc3\xc8\x49\x0d\xdd\x2f\x7e\x85\xe4\xe6\xd9\x7c\x2e\xcc\xe7\x9c\x74\x29\x2b\x9f\xe7\x66\x87\xf4\xd5\x17\xf2\xcf\xa7\x4c\xb7\x4c\x33\x77\x4b\x3c\xba\x3d\x29\x27\x1a\xc3\x86\x9a\xf1\xe8\xfe\xe6\xc9\x54\x94\xd2\xb8\xdd\x44\xcc\x44\xe7\x24\x77\xf2\x74\xbb\xee\x74\xd0\x04\xae\x94\x3c\xe3\x3f\x79\x32\xd9\x7a\xd6\x69\xea\x69\xa0\xeb\x9c\xf5\x8c\xa9\xd3\xd2\xbc\xde\x1c\xef\xf1\xb7\x85\x8b\x0b\x7d\x77\xfb\x17\x35\x16\x7f\x00\xcf\xd9\x68\x27\xbc\xe1\xfd\x72\xdb\x4e\x2d\xe6\x78\x86\x5c\xc8\x79\xc7\x0b\x4a\x8f\x2e\xd5\xe6\xd5\xbf\x2e\xaf\x2e\x65\xbf\x6a\x49\x6b\x22\xd1\x72\x06\xf1\x9d\x4f\x48\x46\xb3\xbd\x03\x77\x51\x3b\x4b\x09\x03\x8a\x13\xf5\xf0\x99\x7e\xbf\xb6\xc9\x15\xf3\xfe\x63\xa5\x69\xc8\xeb\xfd\xf7\x92\xc3\x91\x8b\xfd\x65\x81\x4f\x57\x83\x06\x66\x9c\xe6\x51\x42\x43\x26\x46\xa6\x28\xe4\x30\x42\x6d\x0d\x73\x74\xec\xa2\x5c\xaa\xf7\xf1\xd0\xda\x4d\x91\x60\x4c\xd4\x8f\x8d\xe5\x34\x99\xe4\x53\xfc\xa1\x12\x87\xec\x41\xbe\x4d\x47\xe9\xeb\x20\x7e\xcd\xb0\x6a\xf5\x95\xb5\xbd\xc5\x96\xe6\x53\xd4\x56\xac\xcd\x5b\x22\x6e\x17\xc7\x6e\xff\x3c\x59\x45\xac\x6e\xfb\xd6\xde\x45\x92\x69\x25\xbc\x3e\x44\xdc\x6a\x59\x4c\x16\x25\x69\xb5\xc8\x05\xfc\x22\x40\x9a\x9c\xed\xb7\x71\x9c\x26\x85\x87\xdf\xb1\xfa\x8d\x0c\x25\x0a\x56\xb7\xdd\x02\xf8\x33\x4a\xda\x3b\x78\x07\x98\xf6\x25\x58\x78\xe7\x69\xc1\x97\xf0\xc0\xad\xe0\x66\x83\x24\xd4\x66\xc3\xe8\x7e\xee\xa1\x6d\x45\x38\xa2\xec\xd0\x46\x38\x0e\x5d\xa9\x45\xfb\x4c\x69\xac\x13\xc0\x0d\x30\xfa\x6a\x2f\x4c\x9a\xd2\xe9\x95\xe4\xe6\xaf\x54\x97\x72\xd7\x7c\x1a\x69\xa7\x84\x17\x5d\x46\x90\x2b\x92\xf6\x94\xc6\x95\x15\x9a\x99\x11\xb1\xb1\x05\x74\x75\x11\x6c\x4b\x49\x81\xfc\x02\xd6\xf8\xcd\x33\x60\x78\x3a\xc9\x45\xf8\xdd\xeb\x12\x2f\xaf\x1b\xdb\xbf\xd5\x8d\xbf\x28\xdf\xd2\xee\x07\x87\x4b\x6e\x1c\x2c\x78\x27\x6a\x6c\xd5\x63\x73\x32\x86\xd9\x89\x44\x52\x0e\x8a\x2a\x41\xb5\xc8\xfb\xb1\x12\x47\x57\x7b\x75\x66\xc0\x93\xb6\x90\xf9\xb3\xf2\x27\x85\x9d\xb6\x97\xee\x40\x0e\x4b\x81\x04\x23\x89\x11\x49\x42\x8e\x3f\xf0\x7f\x27\xf2\xf5\xd9\xb8\x95\xe4\x0b\xca\x43\xd8\x8a\xcc\x3c\xa8\x1a\x96\x9e\x0b\x02\xc6\xbf\xe6\x99\x76\xef\x2d\x36\x04\x39\x7f\xde\x7c\xdc\x5f\xec\x9a\xb5\x31\x3b\xed\xe5\x83\xde\x34\xc2\xc6\x86\x5e\xd9\x6c\x21\xde\x09\xff\x8b\x3e\x4a\x3a\x1f\x23\x40\x72\xa0\xb2\x63\x8f\x2c\x56\xd1\x78\x51\x97\x3a\xd7\xe8\x7e\xa1\x95\xa5\xca\xd4\xe4\xe0\xa2\x78\x3b\x0a\x3a\x30\xd5\x67\x85\x3c\x16\x74\xc8\x1a\x42\xea\x0f\xbe\xae\xc5\x27\x1a\x87\x99\x2a\x72\xf0\x41\xb1\x29\x90\x67\xb8\xf3\xa9\x06\x72\xca\x8d\x15\x06\x82\xbb\xd6\x6f\xf5\x8d\xda\x76\x46\x26\x2d\xec\xbe\x6e\x9a\x23\x3f\xba\x58\x6e\xe6\x92\xb4\x5c\x5f\xb1\xbd\x49\x8a\xcf\x30\x34\x2d\x12\xff\x45\x00\xb1\x8c\xf6\xd7\xf3\xb0\x19\x1d\xc6\x39\xb7\xc8\x06\x3b\x46\xac\x33\x3b\x57\x9b\xa1\xe5\xf4\x22\x4a\x9c\x7a\xd9\x29\xcb\xc3\x87\x31\xe2\x60\x67\x9a\xcd\x3c\xe1\x5a\x71\x67\x8c\x0e\xf1\x14\x50\x70\x22\xec\x07\x96\x83\xe5\x71\x9c\x08\xb4\x5c\x52\xe7\x49\x55\xf9\x9d\xa5\xa1\x7e\x8d\x99\x6d\xa9\x15\xfa\x23\xf0\x8e\x13\xd1\xc0\xec\xd3\xda\x5f\x04\x07\xcb\x3f\x68\x95\xa4\x9f\xf6\x09\x54\x63\x8a\xb6\xfd\x43\xe2\x34\xbd\xdd\x8a\x38\x16\xc9\x18\x30\xdd\xad\x11\x60\x21\x0d\x45\x32\x80\x6c\xa9\x87\xfa\x21\x16\xcc\x41\xf5\x11\x87\x22\x7a\xc1\x5d\xb4\xbe\x2c\x15\x70\xf3\xbe\xb2\x3d\x25\xce\xfa\x93\xbc\x34\xd1\xdb\xf9\x1d\xb8\x1c\x77\xef\x05\x4d\xee\xed\xb0\x94\x72\xc4\xa6\x15\xfa\xcc\xed\xc7\xef\xcc\x48\x9e\x37\x0b\xf8\x4a\xc4\x52\xb5\x5c\x7a\x10\x19\xf9\x30\x84\x76\x86\x0a\x32\xb8\x4b\xb9\xca\xd8\x34\x18\x40\xfb\x32\x20\x9a\xec\xbe\x73\x34\x31\x15\xc3\xc2\x4a\x5a\x8b\x72\x52\xfc\x08\x35\x4e\xf1\x87\xaf\x03\x65\x50\xd1\xc5\x6e\x9e\x0a\x51\x78\xa2\xeb\x43\xe0\xc9\xbb\x28\x7c\xc7\xdd\x90\x17\x85\xa9\x11\x0c\x1e\x07\x43\x2e\xe3\xe3\xed\xc1\xc0\x4d\x89\x43\x78\xb3\xb5\x5d\xb1\xf7\x4c\x27\xce\x81\xb8\x3b\xe7\x11\x27\x48\x12\xc0\xf1\x61\xfe\x94\xde\x60\xa9\xe2\x25\x64\x03\x19\x08\xb8\xaf\x9c\x1b\xed\xf4\x8c\x1d\xc4\x07\x77\xa8\x83\x0d\xbd\x86\xac\xa9\x3c\x0f\x95\x41\x88\xe6\x1e\x87\xb4\xc0\xdd\x13\xbc\x20\x52\x88\xef\xfe\x0c\x70\x10\x12\xee\x68\x00\x06\xa0\xe3\xe4\xbd\xc0\xd7\xd1\x7a\xd0\x67\x60\x65\xf4\x25\x70\x0a\xd8\x14\xc5\x07\xce\x4b\x6a\x23\xcd\xd8\x60\xa9\xb3\xf8\xef\xec\x14\x09\xcb\xb5\x16\x2e\x4a\x52\x81\x7b\x9f\x83\x93\x99\xe7\x74\xd0\x08\xc0\x43\x2c\x14\x16\x04\x3c\xcb\x4c\x5e\x8a\x81\x8a\x13\x57\xfa\x97\xa0\x1f\x50\xe4\x3a\x73\x68\x19\x42\xbd\x40\x06\xd2\x05\xd7\x89\x53\x03\xe7\xae\xd4\x3c\xef\x82\xe1\xd1\x40\xb3\x7c\x08\x0a\xf3\x50\xbe\x0d\xc2\x41\xff\x82\xaa\x43\x3e\xa3\x87\xc1\x87\x4d\xce\x92\x2f\x49\x7c\x91\x5a\x83\x37\xb1\x7f\x49\xff\x44\xfe\xe0\x38\xc9\xfc\x24\x70\x38\x56\x32\x02\x9c\x59\x9e\xac\x2c\x89\xeb\xc4\x91\x01\x01\x39\x07\x64\x77\x68\xf1\x9a\xd0\xca\xbe\xfc\x55\xba\xe9\x94\x94\x42\x36\xb6\xa8\xd5\x54\x7e\x78\x35\xb0\xe8\x1a\x04\xb3\x48\x88\x16\x97\xf7\x44\xb8\xb8\x7d\x57\xc8\xc2\xe7\xdd\xff\x28\xbf\x8e\x91\x52\x88\xd2\x93\x21\x27\x82\x66\x2c\xad\x29\xb5\x32\x6a\xb1\xc7\x28\x0c\xc9\x2d\xe9\xf4\xb9\x2c\x7e\x93\x6c\x0c\xe2\x29\x57\x04\xd8\xb0\xfa\x8b\xeb\x0b\x4c\xa1\x1a\xf3\x03\x21\xbf\x71\x3e\x70\x31\x4a\x66\x9c\x0c\x56\xc0\x5d\x41\x5e\x3d\x89\x6a\xa6\xc6\x55\x5e\x31\xb2\xbd\xc7\xc6\x8e\x7d\xb1\x57\x67\xdd\x6a\x91\x72\x0c\x65\xc6\xbf\x42\xd9\xf8\xb1\x4e\x04\xa0\xec\x38\x4c\x4b\xb3\x72\xdb\x05\xda\xca\xcd\x53\x01\x6d\x2c\x0d\x88\x67\xc2\x30\x23\x43\x2e\x27\x3d\x90\xb2\x22\xf5\x51\xce\x6b\xac\x79\xd3\x01\xe8\x3f\x7b\x64\xc3\x0f\x1c\x06\x4f\xe7\x4f\x28\x05\xa3\x3a\xb8\xa9\x06\x3d\xf4\x7c\x7e\x8e\x95\x32\x73\x9a\x65\xeb\x7a\x82\xe9\x4b\xee\xf6\x17\x64\x4d\xaf\xc6\x84\xf8\x72\xc8\x73\xbf\x87\x7d\xe0\xfc\xe8\x8e\x89\x69\x60\xc6\x95\xb5\xc5\xbf\x66\x0c\xc5\x2f\xc6\x7b\x70\xc4\xdc\x8f\xa6\x57\xb0\xa4\x1e\x15\x64\x5f\x62\x5e\xb8\x39\xf9\x3a\x87\x3a\x23\xb7\x52\x2b\x40\x17\x97\xc4\x42\xca\xfb\x8f\xf1\x89\x30\xd5\x21\xf0\x86\xab\xa2\xf8\x34\x64\xb3\xcc\x3a\x1f\x61\xc7\xab\xb1\x43\x62\x13\xf9\x40\x6f\x73\x8a\xc9\x5a\x60\xb8\x15\x35\x9e\x7a\x39\xf1\x3b\x03\x81\xbd\x9d\xa3\xc5\x2e\x58\xe4\x14\xbc\x60\x1d\xef\x7f\x51\xe2\xc1\xd0\xab\x5e\x7d\x9d\x4e\xaf\x4c\xfb\x58\x61\x47\xf3\x0d\xd0\xad\x39\x44\xed\xb1\xb9\x57\x3f\x41\x16\xbb\x3f\xd7\xbc\x49\xd9\x86\x86\xb4\xee\x93\xbe\x4b\x8a\xc9\x17\x34\x8b\x73\x2d\x94\x3f\xbd\x6d\xe4\x9f\x35\xb3\x1a\x60\xf2\x77\x1d\xfc\x27\xac\x79\xd2\xcf\x3f\xcd\xdf\x60\xf6\x46\xb5\x2c\x87\x52\x44\x33\xce\x60\xa6\x08\xa1\xa5\xbf\x11\x34\xb1\x06\x8d\x1f\x18\x22\x2b\xfd\x6d\x79\x74\xc5\x11\xc9\xce\xb3\x34\xed\xc6\x2f\xdd\xe6\x54\x5c\xfe\x99\x5e\x57\xda\xa5\xa8\x85\xde\x67\xc4\x2f\x2e\xa4\x3e\x69\x7c\xbf\x7e\x75\xbf\x07\xe9\x93\xf2\xf5\x41\x18\x71\x17\xb8\xac\xc8\xae\xc0\x71\x4b\x8d\x04\xea\x32\xb8\x96\x76\xcf\xdb\x7e\x72\x31\x3e\x27\x7b\x66\xd8\xf0\x30\xfb\x81\x76\xfa\xf1\x34\xfc\x64\x0e\xd1\xf2\xb5\xda\xdc\x16\x2e\xb3\xf9\xfd\x8a\x14\x72\xaa\xbf\x14\xdb\xb1\xfc\xfb\x48\x37\x96\x3e\xe4\x38\xb6\x87\x45\x36\x28\x4d\x9a\x63\x9f\xe7\xd9\x4d\x45\xe0\x9c\xa2\x1a\x67\x34\xf0\xe5\xcf\x8e\xce\x32\x88\x12\x66\xd4\xd9\x7b\xc4\x30\x0d\xe1\xd9\x6c\xfc\x24\xf4\x4f\xc3\xbb\xf9\x11\xdc\x60\xfb\x23\x25\x76\x9c\xf2\xe7\x51\x55\x4e\x3c\xd5\xa8\xc1\x46\x63\xae\x7c\x86\x5b\x5b\x33\xc3\xbc\x0c\xdc\x5b\x44\x36\x6b\x26\x8d\x4c\xe3\xe0\x23\x67\xa7\x57\x91\x8f\x96\x3a\x96\x3a\x96\xef\x2e\x79\x2f\x97\x0f\x8c\x2f\x6f\x2c\x7f\xaa\x7b\x83\x70\x86\xd7\xe4\x1a\xaf\x58\x23\xd8\x51\x1f\x91\x91\xc8\x5e\x2f\x4b\x24\x07\x15\x6a\x75\x66\xb5\x0b\xa3\xac\xf3\x1e\x55\x87\x0d\x57\x8c\xb5\x2d\x49\xce\xe1\x4b\x78\xe5\xa5\xf3\xb9\x47\x63\xd6\xf2\x1d\xf9\x90\x2c\x52\xb9\x0f\x8f\x5b\xa1\x56\xbb\xbe\x26\xdc\xde\xd3\xaa\x44\x95\x1c\xee\xeb\x46\x12\x74\x17\x21\x43\xf5\x48\x37\x94\xc3\x44\xdf\x42\x00\xbe\x75\x4a\x7e\x40\x94\xa8\x3d\x15\x5b\x77\x85\x18\x3f\x55\xfd\x6a\x8e\xf8\x6b\x5a\x33\x4a\x85\x60\x34\x75\xe6\x99\x28\x2e\x6e\x72\xc6\x6c\x01\x43\x9c\xf8\xa1\x21\x82\xe6\x4d\x7b\xc1\xd0\x3e\xb4\xf0\xe0\x8d\xfb\xf1\x81\x71\x59\xeb\xe2\xe9\xa9\x69\x6a\xfc\xba\x37\xed\x79\x7d\xfc\xbe\x2e\xf9\x37\x97\xb9\x43\xa3\x61\xb5\x2f\x98\x6e\x70\xdf\x56\x1f\x32\x0a\xf3\xb2\xfb\x22\x36\x90\xa6\x3d\x70\x74\x71\x96\x41\xe9\xdb\xe8\xcb\xa7\x43\x7a\x12\xab\xc4\xc8\xef\xde\xd2\xd3\x0a\x48\x97\xdb\xdd\x83\x42\x09\x17\x5b\x7b\x1c\xe3\x71\xdb\xad\xbb\xfa\x78\x2c\xb3\x15\xa3\xf2\x1a\x7b\xb2\xdb\x1e\x26\x10\x37\xe9\x6f\xbd\xed\x99\x71\x2c\x84\xbf\x9d\x58\x22\x1c\x6d\xb8\x25\xd8\x61\x92\x1e\xbb\x59\x3d\x99\x53\x08\xdd\xf6\x41\x4a\xbe\x69\xe7\x1d\xe0\xab\xaa\x57\x68\x2a\x64\xb7\xc6\x5b\x84\xb3\x0c\x54\xe3\xe1\x99\x93\x8c\xeb\xb5\xa9\x6d\xf2\xb4\x7b\x55\x1a\x45\x26\x64\x9b\xf2\xe7\xb1\x26\x44\xf8\xeb\xaa\xe7\x79\x78\xe3\x92\x3a\x0b\x1b\xdc\xb3\x52\x7b\x4d\x4b\x6c\x6e\xd9\xbe\xa2\x31\xd6\xa6\x1a\x0a\x71\xce\xfa\xe1\xfa\x65\xd7\xbd\x34\xc2\xe7\x8f\x6d\x8d\x26\x3b\x7f\x87\x2d\xe5\xa1\xb2\xe8\xac\xcd\x11\x78\x61\x9a\xc0\xf6\x79\xfc\xfd\xec\x6c\x66\x25\x31\x3e\x3f\x89\xfc\x83\x7a\xbc\x68\x17\x05\xa2\x75\x16\x54\x0e\x69\xd2\xbe\xe5\xaa\xd5\x2c\x52\x8f\x64\xb5\x65\xea\x93\xed\x32\x30\xa1\xba\x04\x62\x9a\x94\x4b\x30\x3e\x33\xb5\xd4\x70\x05\xa7\x9e\x2e\x73\x53\x1f\xab\x9b\xf3\x09\xb6\x88\x1d\x28\xc0\x82\x57\x2a\x46\x1c\xe5\x76\x02\x9b\x13\x5c\x0f\x6f\x8a\x0d\xc0\xdc\xbd\x36\x8f\xcf\xc2\x03\x7e\xdb\xf0\xc0\x76\x44\xd4\x6e\x5c\x23\xa0\xa2\xc3\x68\x4e\x24\xa1\x78\x24\x69\x96\x8a\x49\xa4\xc3\xef\xd3\x76\x63\x8f\x74\x9f\xa7\xa7\x47\xd5\x96\x4d\x50\xd7\xc3\x85\x13\x07\x28\xb5\xa1\x4e\x7e\x72\xe4\x07\xa1\x82\x36\xbb\xc4\xf1\x70\x84\x6e\x32\xa1\x2b\x4a\x45\x09\x87\xdb\x4d\xbc\x09\x03\x60\x2b\x32\xde\x83\xf4\x9a\x9e\x1a\x3e\xda\xbd\xd2\x8f\xb1\xc3\x6e\x6a\x4e\x7f\x72\x0e\xdc\x6c\x43\x3f\x72\xad\xdf\x6c\x20\x7a\x79\x50\x99\x69\xc4\x03\x9f\x63\xd4\x0e\x12\xda\xdf\x95\x38\x46\xeb\xf6\x7b\x3f\xd7\x4f\xff\xe2\x69\xd9\x94\x4b\xa7\x7a\x88\xe5\x79\xd2\x2d\x9e\x2a\xc4\xe8\x52\xba\x9f\x3e\xf7\x3c\x60\x68\xb9\x36\x9b\xab\xd0\xc7\x3d\x6c\xd4\x87\xc8\x91\x2f\x56\x15\xad\x88\x2f\x43\xa6\xa0\x27\xf0\x2f\x63\x8f\x02\x97\xbb\xfb\x6e\x2d\xef\xc7\x2f\xc4\x18\x20\x76\x83\x57\x82\x8c\x33\xb6\x03\x88\x80\x27\xad\x8c\x7c\xe2\x82\xfd\x34\xbd\x9a\x0c\x75\xc8\xa0\x86\x92\xc7\x9c\x8b\x88\xb3\xf4\x00\x87\xdc\xa9\x63\x0c\xba\x25\xa8\xae\x91\x01\x33\x1b\xc8\xea\x60\x9e\x35\x6e\x0e\xdb\x5b\xfb\xa6\x3f\xed\x66\xce\x72\xd7\x9b\x31\x56\x66\x98\xea\xef\xab\xbe\xa5\x95\x3a\x9d\x50\x70\x21\x0b\x79\x98\x40\xb2\xf0\xae\x01\x6d\xc0\x8c\x91\x31\x15\xce\x56\x3f\xe6\x9c\xba\xd5\x3b\x53\x52\x80\x1a\x91\x77\x8e\xb4\xa5\x07\xa6\xd7\x52\xae\x1a\x56\xd1\x20\xd4\x01\x13\x1b\x4a\x2b\xed\xac\x85\x0e\xf6\x22\x33\x5b\x5f\x70\xe8\x17\xfd\xfd\x9d\x88\x12\x6d\xfa\xef\x2a\x5d\xf1\x5f\x69\x8f\x94\x15\x7d\xdf\x51\xc3\x95\x86\xed\xab\x29\x7b\xca\xe9\x06\x36\x24\x80\x42\xba\x22\x16\xf7\x4b\xe1\x08\x8c\x43\xfa\xc3\x36\x00\x92\x4d\x90\x75\xfe\x0c\x72\xfb\x37\x97\xe6\xff\xf2\x74\x1e\x6a\x8a\x3d\x38\xe8\xca\xf9\xbf\x5d\xff\x0f\xce\xd0\x12\x00\x00\xb0\x08\x00\x1c\xba\x07\x00\x1c\x4a\xfc\x6f\xee\xd1\x7f\x77\x82\xfe\xef\xdc\x9f\xff\x8f\xb8\x7f\xe5\xc5\x81\xff\x63\xef\xbf\xe2\x83\x5f\x49\x4e\x07\x07\x3d\xdf\xfe\x95\x8d\x9f\xfd\x6f\xf7\xfe\xd3\x4b\xfb\x69\x00\xe0\x7a\x27\x00\x70\xa6\x05\x00\xb8\x10\xf1\x1f\xeb\xff\xc3\xbd\x95\x03\x00\x04\x8f\x01\x00\x67\x41\xff\x67\xae\x4e\x17\x00\xb8\xa6\x07\x00\x9c\xea\xfc\x77\xee\x3f\xf9\x62\x9f\xbe\x7b\xf2\x4a\xdc\xda\xe8\x9b\x55\xe4\x27\xc5\xcb\x5f\x7e\x9e\xff\xe7\xbd\x07\x18\xea\xc1\x01\x00\x00\x96\xd8\x38\x7e\x78\xe7\xe0\xa0\xeb\x68\x63\xc2\x49\x78\xe9\xef\x2d\xbe\xf4\x86\xff\xee\xa6\xf5\x6a\x05\x9c\xfe\xb3\xfc\xe0\xbb\x58\x16\x20\x4d\xe9\x16\x00\xe0\x61\x7a\x70\xf0\x7e\xe7\x60\xb1\xe5\xee\xff\xe0\x04\xc6\x83\x0f\x7e\x8e\xe8\x00\x0c\xeb\xbe\x00\x00\x16\xea\xff\x70\xfc\x9b\x97\xff\x07\x77\x64\xef\xce\xc1\x41\xb0\x11\x00\xd4\x3a\x0c\x00\xdc\x48\xf8\x87\xfb\x9b\x38\x13\xe8\xe9\xf1\xcf\xdf\xfb\x05\xf8\x78\x58\x59\xdb\x88\xfe\xab\x83\xcf\x84\x7f\xcd\x18\x0b\xf6\xf1\x0e\x76\xfd\xb7\xa9\x9f\x76\x7f\xf1\xc4\x0c\x00\x00\xd8\x00\x00\x00\x41\x80\x16\xc0\x17\xe0\x07\x08\x03\x04\x00\x3c\x01\x1e\x80\x67\x80\x20\x80\x28\x40\x01\x00\x03\xc0\x00\xaa\x00\x51\x80\x1e\xe0\x05\x20\x08\xe0\x0e\x08\x00\xbc\x00\x38\x03\x82\x00\x9e\x00\xdf\x7f\x22\x6f\x80\xe8\x3f\x27\xbd\x01\xbe\x80\x80\xff\x8a\x5f\x00\x02\xff\xc9\xfe\x7f\x2a\x18\xe0\x03\x00\x04\x3e\x55\x54\xf8\x57\xd5\xd3\x06\x00\xc0\x51\xee\xc1\xc1\x07\x19\x00\xe0\x58\x39\x00\xf0\x33\xe5\xe0\xe0\x7b\xf5\xc1\xc1\xcf\x5a\x00\xe0\x70\x0d\x00\x30\x99\xf9\xff\x05\x00\x00\xff\xff\x12\x78\xef\xbb\x20\xee\x00\x00"); +func _de ()([]byte ,error ){return _ge (_fd ,"\u0073\u0052\u0047B\u0032\u0030\u0031\u0034\u002e\u0069\u0063\u0063");};var _baf =[]byte ("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xf1\x75\x54\x94\x6f\xf8\xee\x81\x8e\x5d\x28\xd8\x8a\x85\xa2\x02\x06\x22\x28\x61\x53\x62\x01\x12\xa2\x80\x4a\x88\x20\x48\x49\x33\xf3\xf6\x74\x37\x4c\x30\x0c\xc3\x0c\xdd\xdd\xdd\x25\xa2\x52\x2a\x26\x62\x77\xf7\x59\xdf\xfd\xdb\x6b\xed\xb3\xd7\x39\xfb\xfa\xe7\xfd\xbc\xd7\x73\xad\x75\xdf\xcf\x73\xe1\x74\xb4\xdb\xad\x4f\x9f\x3e\x35\x5d\x07\x87\x8b\x8c\x8a\x89\xb2\x75\xf4\x3c\x79\xca\xcf\x5f\x6f\xce\x28\x6e\x3a\x6e\x1e\x4e\x1b\xb7\x1b\xb7\xda\xef\x52\x74\xe4\x7f\x19\xdc\xff\x53\x5f\x47\x70\xd3\xfe\xfb\xde\xda\xe9\x7f\xdc\xd6\xf6\xff\x9d\xfb\xff\x2b\xad\x80\xcb\xd1\x97\x70\xb8\x69\xcb\x70\x38\x9c\xe5\xa5\xc8\xa8\x18\x1c\x6e\xda\x7f\xb3\x7c\xe3\x63\x22\xff\xe3\x7c\x1c\x0e\xb7\xcc\xff\xea\xff\xe2\xe6\xff\xd8\xda\xd4\xc6\x04\x87\x9b\x76\x1b\x37\xed\xf2\x79\x6b\x53\x9b\xdd\xb8\x69\x41\x26\xff\x9b\x4d\x71\xd3\xfb\x59\xff\xb1\x8d\xa9\xb5\x09\x6e\xe6\xee\xe7\xb8\x99\xd7\x4e\xd8\x98\x5a\xef\xc6\xcd\x55\xef\xf9\xdf\x6c\x8a\x5b\xb8\x0c\xc1\xe1\xb2\x7a\x83\xfc\xc2\x62\x70\x0b\xeb\x4f\xe1\xa6\xad\x99\x19\xe3\x17\x15\x84\x5b\x34\x7a\x1a\x37\xcd\x32\xea\x7f\xf6\xf9\x5f\xd2\x3b\xee\xe6\xac\x67\x1b\xe1\x17\x73\x39\x40\x2f\xce\x54\xcf\xcc\xc4\x64\x8b\x9e\xa1\xbf\x5f\xf4\x71\x5b\xdb\x88\xd0\x88\x28\xa3\xff\xaf\x6b\x4c\xc3\xc5\x5c\x4e\x88\xf9\x8f\xfe\xcf\xb9\xde\x7f\xcf\x19\x7c\xe9\xaa\x5e\xdc\x6e\x63\x53\xbd\x9d\x7a\xb6\x11\x91\x89\x51\xc1\x41\x57\x62\xf4\x0c\x2f\x19\xe9\x99\x9a\x98\x98\xef\x34\x35\x31\xb1\xd0\xfb\x9f\xb0\x5b\x44\x68\x6c\x4c\x70\x44\x78\xf4\x0e\x3d\xeb\xd0\x50\x3d\xd7\xff\x82\xd1\x7a\xae\x97\xa3\x2f\x47\xc5\x5d\x0e\x30\xc6\x9d\xf3\xf4\xd2\xfb\x9f\x59\x63\x76\x38\xdc\x43\x47\x1c\xae\xf1\xce\xff\xf1\x66\x9c\xc0\xe1\x66\x5c\xc3\xe1\xa6\xb7\x86\x05\xc6\x98\xfe\xe7\xcc\x9c\xb1\x00\xf7\x3f\xbd\xfc\x5f\x6b\xfe\xff\xfc\x4f\xfb\x5f\xe6\xb4\x6f\x33\xde\xce\x9a\x9a\x73\x7f\xde\xc8\x82\x5b\x0b\xc7\xb5\x9f\x2e\xfe\xb0\xf4\xcf\x8a\x79\xab\x96\xea\xae\x5b\x6b\xb4\xde\x54\xcf\x6a\xd3\xc1\xcd\x87\xb7\x1e\x31\x3c\xbc\xed\xd0\x8e\x83\xc6\xfb\x4c\x2c\x4d\xf7\x9a\x95\xee\x29\xde\x5b\x60\x9e\x67\x91\x63\x99\x65\x95\xb1\x4f\xb3\x5f\x7d\x20\xfd\x60\xfa\xa1\xf4\xc3\xe9\x47\xd4\xd6\x19\x36\x59\xb6\x39\x76\xf9\xf6\x45\x47\xcb\x1c\xaa\x8e\xd5\x1d\x6f\x3e\xd1\x7e\xb2\xfb\xd4\x80\x63\xaf\x53\x97\x73\xc7\xe9\x56\x97\x26\xd7\x7a\xb7\x1a\xf7\xca\x33\xa5\x1e\x45\x67\xf3\xce\x65\x79\xaa\xbd\x94\xde\x29\xe7\x65\x17\xa4\x17\xe5\x3e\x4a\xdf\x0c\xbf\x02\xff\xaa\x4b\x6d\x01\x37\x2e\xdf\x0f\x9c\x0c\x7a\x7c\xe5\x61\xf0\x83\x90\xfb\x57\x27\x42\x27\xc2\xee\x87\xdf\x8f\x78\x10\xf9\xf0\xda\xa3\xa8\x27\xd1\x4f\x63\xa6\x62\x9f\xc7\xbd\x8c\x7f\x9d\xf0\x36\xf1\x03\xfe\x13\xe1\x0b\xf0\x1d\xfc\x09\xfd\x41\x70\x48\x0e\xea\x8a\xfe\xc6\x32\x88\x4e\xc4\xef\x24\x15\xf9\x24\xf9\x33\x25\x95\x7a\x8c\xfa\x81\x26\xa7\xdb\xd3\xdf\x31\x24\x4c\x1b\xe6\x6b\x56\x32\xdb\x9a\xfd\x8a\x93\xc4\x3d\xc2\x7d\xc5\x4b\xe2\xdb\xf0\xdf\x08\xa4\x42\x7b\xe1\x47\x91\x52\xec\x28\xfe\x95\x94\x9b\xec\x25\x99\x2f\xa9\x93\x86\xc9\x56\xca\x5a\xe4\x21\x29\xcb\x52\x1a\x15\xc1\xa9\xcb\x52\x9b\x94\x57\xd3\x56\xa4\xb5\xaa\xc2\xd3\x75\xd3\x3b\xd4\xd7\x34\xeb\x34\x3d\x19\xb1\x99\x1b\x33\x07\xb2\x12\xb3\xb7\x64\x0f\xe5\x80\xb9\x46\xb9\xc3\x79\x68\xfe\xce\xfc\xb1\x02\x52\xa1\x49\xe1\xdd\x22\x4a\xb1\x69\xf1\x44\x09\xad\xd4\xac\x74\xa2\x8c\x51\xbe\xaf\xfc\x45\x85\xa4\xf2\x68\xe5\xe7\x2a\x55\xb5\x53\xf5\xcf\x9a\xcc\x5a\xd7\xda\xbf\x75\xb9\xf5\xe7\x1a\x66\x37\x54\x34\x06\x34\x2d\x6d\x6a\x6d\xbe\xd6\xb2\xa1\xe5\x7a\x2b\xd0\x66\xd4\x36\xda\x4e\xec\xd8\xd5\x71\xa7\x93\xd4\xb5\xb3\x6b\xb8\x1b\xec\xd1\xef\xe9\xe9\x0d\xeb\xd3\xe9\x2b\xeb\x77\x1f\x30\xb8\xce\x1f\xfc\x31\xe4\x73\xb3\xf5\xf6\xa6\x61\x64\xe4\xde\x98\xf9\x38\xfb\xce\xe3\x7b\x7b\x27\xa8\xf7\x47\x1e\xea\x3f\x8a\x78\x5c\x33\x39\xed\xe9\xf1\x29\xc1\xb3\x6f\x2f\xbc\x5e\xd6\xbf\x5e\xfb\x86\xf0\x76\xf4\xbd\xe9\x07\xc6\xc7\x47\x9f\xf7\x7c\xa1\x7c\x1d\xfe\xbe\xe9\x47\xc4\xcf\x86\xdf\x0b\xff\x5c\xf8\x5b\xf8\xef\x1f\x0e\x37\xed\xc7\x8c\x0f\xb3\x5e\xcd\x99\x9c\xf7\x70\xc1\x83\x85\xcf\xb5\x3f\x2e\xfe\xb9\x6c\xc6\x8a\x05\xab\x96\xea\xae\x59\xbb\x79\xfd\x0e\x3d\xd3\x4d\xe6\x9b\x2d\xb7\x5a\x1a\x5a\x6c\xdb\xbb\xc3\xcc\xd8\xd4\xc4\xd4\xd4\xd4\xac\x64\x4f\xd1\xde\x7c\xf3\x5c\x8b\x6c\xcb\x4c\x2b\xcd\x3e\xf5\x7e\xd5\x81\xb4\x83\xa9\x87\x14\x87\x53\x8e\xc8\xad\x65\x36\x52\x5b\xa9\x9d\xcc\x3e\xe5\xa8\xd2\x21\xfd\x58\xf6\xf1\xc2\x13\x55\x27\x5b\x4e\x0d\x38\x76\x3b\x75\x38\xb7\x9d\x6e\x73\x69\x73\x6d\x77\xeb\x74\xef\x3e\xd3\xe7\x71\xfd\xec\x8d\x73\xb7\x3c\x6f\x7b\x0d\x7b\x8f\x9c\x1f\xb9\x30\x72\x71\xc4\x67\xc4\x77\xd4\x6f\xcc\xff\xce\xa5\x89\x80\x87\x97\x27\x03\x1f\x07\xdd\xbd\x32\x1c\x3c\x18\xd2\x7b\xb5\x23\xb4\x25\xac\x31\xbc\x2e\xa2\x3a\xb2\xea\x5a\x65\x54\x65\x74\x65\x4c\x55\x6c\x4d\x5c\x7d\x7c\x73\x42\x47\x62\x2f\xfe\x06\x61\x0c\x78\x08\xbe\x80\x3e\x21\x38\x44\x8d\x3a\xa0\xaf\x31\x01\xd1\x92\xf8\x80\x44\x25\x1b\x93\x47\x29\x08\xd5\x88\x7a\x8b\x06\xd2\x0d\xe9\xb7\x18\x30\x73\x1b\x73\x94\x45\x64\x9b\xb0\x27\x38\x0c\xae\x05\xf7\x29\x4f\xc8\xb7\xe6\xbf\x15\xa4\x08\x4f\x08\xbf\x8b\x32\xc5\xee\x49\xd3\x93\x4a\x92\x7d\x24\x8b\x24\x0d\xd2\x30\xd9\x0a\x59\xa3\x3c\x30\x45\x3b\xa5\x5a\xe1\x9f\xaa\x95\x5a\xa5\xf4\x4f\x5b\x98\x56\xad\x0a\x48\xd7\x4e\xaf\x53\x07\x69\x96\x68\x1a\x33\x42\x32\x57\x64\xb6\x66\x85\x67\xeb\x66\x77\xe6\x44\xe5\xae\xcf\xed\xcd\x8b\xcb\xdf\x94\x3f\x58\x40\x28\x34\x28\xbc\x55\x04\x17\x6f\x2f\x1e\x2b\x21\x95\x9a\x94\xde\x2b\xa3\x95\x9b\x96\xdf\xab\xa0\x54\x9a\x54\xde\xa9\x22\x57\x9b\x54\xdf\xab\xa1\xd5\xee\xad\x7d\x52\x27\xa8\xb7\xa9\xff\xd8\x90\xde\xe8\xda\x34\xa3\xa9\xac\x39\xa0\x65\x59\x4b\x7b\x6b\x74\xdb\xa6\xb6\xa1\x76\xb8\x63\x47\xc7\x78\x27\xa9\x6b\x57\xd7\x58\x37\xda\x63\xd8\x73\xbd\x37\xaa\x6f\x79\x5f\x65\xbf\xc7\xc0\xf6\xeb\xaa\x1b\x4b\x87\xd0\x9b\xaf\x6e\xbb\x0c\x97\x8d\x2e\x1e\x0b\x1d\x6f\xbb\xbb\xe2\x5e\xd0\x44\xf9\xfd\x7f\x0f\x1d\x1e\xb1\x1e\x0f\x4e\x2e\x7e\x7a\x7a\x4a\xf8\xec\xd7\x0b\xff\x97\x9d\xaf\x0d\xdf\xd0\xde\x4e\xbd\xb7\xfe\x20\xfb\xf8\xee\xb3\xf5\x17\xde\xd7\x89\xef\x86\x3f\xa2\x7e\x36\xfd\x5e\xf8\xe7\xfc\xdf\x82\xff\xfa\x9f\x3e\x67\xe6\xa2\xd9\xcb\xe7\xae\x99\xbf\x41\x6b\xfd\xa2\xb5\x3a\xab\x97\xe8\x2e\x5b\xb3\x62\xcd\xaa\x35\xba\xcb\xd7\xfc\x5b\xf7\x6a\xc3\xdd\x8d\x43\xfa\xd7\xb7\xdc\x32\x98\x30\x7a\xb1\xfd\xbb\xf1\x3c\x93\xd5\xa6\xdb\xcc\xca\xf6\x94\xee\x2d\x35\x2f\xb1\x28\xb1\x2c\xb6\x2a\xda\x57\xb0\x3f\xff\x40\xee\xc1\xec\x43\x99\x87\x35\x47\x54\xd6\xa9\x36\x72\x5b\xa9\x9d\xc4\x3e\xf9\xa8\xc4\x41\x7e\x2c\xed\x78\xd6\x89\x92\x93\x0d\xa7\x06\x1c\x5b\x9d\xea\x9c\x2b\x4e\x97\xba\x14\xbb\x16\xbb\x15\xbb\x97\x9e\xa9\xf0\xa8\x3e\x5b\x77\xae\xc9\xb3\xd5\xab\xc3\xbb\xeb\x7c\xcf\x85\xbe\x8b\x03\x3e\x83\xbe\x43\x7e\xb7\xfd\x47\x2f\xdd\x0d\x78\x70\x79\x32\xf0\x49\xd0\xfd\x2b\x63\xc1\xb7\x43\x06\xaf\xf6\x87\x76\x87\x75\x84\xb7\x45\xb4\x44\x36\x5f\x6b\x8a\x6a\x8a\x6e\x8e\x69\x89\x6d\x8b\xeb\x88\xef\x4e\xe8\x4f\x1c\xc2\x8f\x12\x26\x80\x49\xf0\x35\xf4\xe5\xff\xea\xff\x3e\x89\x4c\xde\x49\x1e\xa6\x80\xd4\xad\xd4\x41\x5a\x22\x5d\x9f\x3e\xc0\x48\x60\xea\x33\xaf\xb3\xf0\xec\xad\xec\x9b\x1c\x88\xbb\x9d\x3b\xc6\x23\xf3\xcd\xf8\x0f\x05\x1c\xe1\x01\xe1\x4b\x91\x54\x7c\x4c\xfc\x2d\x29\x2b\xf9\xac\x64\xae\xa4\x56\x1a\x2a\x5b\x2a\xab\x96\x5f\x48\x99\x99\x92\xa7\x70\x57\xfc\x49\xcd\x52\xba\x2a\xff\xa4\xe5\xa8\xdc\xd3\x71\xe9\x05\x6a\x4f\xcd\x6c\x4d\x69\x86\x4f\xa6\x56\x66\x4d\xd6\xe5\xec\x25\xd9\x4d\x39\xa1\xb9\xab\x73\x3b\xf3\xa2\xf3\xf5\xf2\x07\x0a\xf0\x85\x5b\x0b\x6f\x15\x21\xc5\x3b\x8a\xc7\x4a\xc8\xa5\xbb\x4b\x27\xca\xe8\xe5\xe6\xe5\x4f\x2a\xb8\x95\xfb\x2b\x9f\x55\xf1\xab\x0f\x54\x4f\xd5\xf0\x6a\xf7\xd7\x4e\xd5\x09\xea\x0f\xd7\xbf\x6e\x90\x37\x9e\x68\xfc\xd1\x94\xdd\x7c\xb6\x65\x4e\x4b\x65\x6b\x40\xdb\xd2\xb6\x96\xf6\xf0\x8e\x35\x1d\xdd\x9d\xd1\x5d\xeb\xbb\xba\xbb\xaf\xf5\xac\xee\x69\xee\x0d\xea\xd3\xea\x2b\xee\x77\x1b\x30\xb8\xce\x19\xfc\x34\xe4\x71\xb3\xf2\xf6\xb2\xe1\xc8\x91\xde\xb1\x4d\xe3\x09\x77\x06\xee\xe9\x4d\x44\xdd\x6f\x7d\xb8\xf8\x91\xef\xe3\x82\x27\x3f\x9e\xda\x4d\xf1\x9f\xbd\x7d\x71\xe2\x65\xc6\xab\x7f\x6f\x3c\xdf\x96\xbe\x9f\xff\xc1\xef\x63\xd5\xe7\x85\x5f\xfc\xbe\x56\x7c\x9f\xfb\xc3\xfb\x67\xe1\xef\xe9\x7f\x3c\xfe\xe6\xfe\xd7\x3f\xee\xf3\xb4\xe7\xd3\xef\xcd\x18\x9a\xd9\x3b\xab\x7b\xf6\xc0\x9c\x5b\x73\x87\xe7\x8d\xce\x1f\x5b\x70\x47\xeb\xde\xc2\xfb\x8b\x1e\x6b\x4f\xe9\xbc\x5a\xfc\x7e\xc9\xe7\xa5\x3f\x96\xfd\x5b\x31\x73\xe5\xfc\x55\x3a\xab\x57\xe8\xea\xae\xd1\x5d\xab\xbb\x4e\x77\xfd\x9a\x0d\x6b\xf4\xd6\x6c\x5c\xb3\x69\x8d\xbe\xee\x66\xdd\x2d\xab\xb7\xae\x32\x58\x69\xb8\xdc\x68\xe9\xb6\x25\xdb\x17\xef\xd0\xd9\xb9\xd8\x78\xe9\xae\x15\x26\xba\xbb\xf5\x4c\x8d\xcc\xcc\xf6\xec\xd8\xbb\xd5\x5c\xdf\x62\xa3\xe5\x46\xab\x8d\xfb\xf4\xf7\x6f\x39\x60\x78\x70\xfb\xa1\x5d\x87\x4d\x8f\x98\x5b\x5b\xd9\xec\xb7\x3d\x64\x77\xc4\xde\xfa\xa8\xad\x83\xdd\xb1\xa3\xc7\x1d\x4e\x1c\x3f\x79\xe2\xd4\x29\xc7\x13\x4e\xf6\xce\x47\x4e\xef\x77\xb1\x70\x35\x73\xdb\xe5\xbe\xe3\x8c\x91\x87\xc1\xd9\x2d\xe7\x36\x7b\x6e\xf6\xda\xec\xbd\xf9\xfc\xd6\x0b\x86\x17\xb7\xfb\xec\xf2\xdd\xe3\xb7\xcf\xff\xc8\xa5\x63\x01\x2e\x97\xbd\x02\x03\x83\x2e\x5c\xf1\x08\x76\x0e\x39\x71\xf5\x68\xa8\x6d\x98\x4d\xb8\x75\x84\x75\xa4\xf5\x35\xdb\x28\xfb\xe8\x63\x31\x27\x63\x9d\xe3\xdc\xe2\xcf\x25\x5c\x48\xf4\xc7\x07\x11\x42\x81\x6b\x60\x2c\x84\x87\x21\x04\x44\x13\xb0\x28\x62\x18\x29\x88\xec\x47\x39\x4f\xf5\xa0\xb9\xd0\x1d\x19\xc7\x99\x47\x59\x76\x6c\x5b\x8e\x2d\xd7\x8e\x77\x94\x7f\x5c\xe0\x24\x74\x17\x79\x8b\x03\x92\x22\x92\x09\x12\x86\x54\x2a\xe3\xc8\x49\x29\x80\x22\x26\x35\x42\x19\x92\x16\xa8\x0a\x48\xf7\x57\xfb\x6b\xfc\x33\x02\x32\x03\xb3\x82\xb3\x43\x73\xae\xe5\xc6\xe6\x11\xf2\xd1\x02\x5a\x21\xb7\x28\xa9\x38\xb5\x24\xb3\xb4\xb0\xac\xb4\xbc\xb4\xa2\xa4\xb2\xb8\xaa\xa8\xba\xb0\xa6\xa0\x36\xbf\x2e\xaf\x3e\xa7\x21\xab\x31\xa3\x49\xdd\xac\x6a\x51\xb6\x2a\xda\x52\xda\xe5\x1d\x29\x9d\xa9\x5d\xaa\xee\xcc\x9e\xfc\xde\xf2\xbe\xa6\xfe\xfe\x81\xe6\xeb\x95\x83\x85\x37\x72\x86\x32\x6e\xaa\x6f\xa5\xdf\x4e\x1f\x56\x8f\x64\x8c\x66\x8f\xe5\x8d\x17\xdc\x29\xbe\x5b\x7a\xaf\x62\xa2\xfa\x7e\xdd\x83\xc6\x87\xad\x8f\xba\x1e\xf7\x3f\xb9\x39\x39\xfe\xf4\xd1\xd4\xc3\x67\x63\xcf\x07\x5f\x74\xbf\x6c\x7d\x55\xff\xba\xea\x4d\xd9\xdb\xe2\x77\x05\xef\xf3\x3f\xe4\x7d\xcc\xff\x54\xf8\xb9\xe4\x4b\xe5\xd7\xfa\x6f\xed\xdf\x07\x7e\x8c\xfe\x7c\xf4\xeb\xc5\xef\xf7\x7f\xbe\xfe\xfd\xf5\xef\xdf\xbf\x7f\x08\x0e\xfe\xfd\xae\x13\xc1\x21\x73\xef\xff\x46\x70\xc8\x8a\xfe\x4c\x04\x87\x6c\xa9\xc9\x40\xa6\x21\xa6\x9a\x4c\x64\x1a\x62\xcb\x69\x45\xa6\x21\xae\xb1\x7d\xc8\x34\xe4\xb2\xb7\x3b\x32\x0d\x21\x1c\xd8\x86\x4c\x47\xa4\x4b\x6e\x23\x5b\x11\xc5\x3f\x63\x18\x4f\x5a\xff\xf6\x0e\x1c\x45\xcc\xbb\xaf\x05\xc7\x12\xcf\xf4\x0d\xc3\x18\xf6\xa3\xba\x17\xf6\xc1\x76\xaa\x7f\xc3\x19\x18\x89\x33\x07\x2e\xc5\x5c\x62\x6d\xe0\x76\x4c\xdb\x4b\x05\xdf\x41\x47\xf6\x8b\xe0\x57\xa8\x78\xc9\x41\x44\x0f\xb5\xff\x7b\x18\x9e\x43\x8b\x7b\x33\x09\x4f\xa3\x8a\x26\x56\x43\xaf\x28\x8d\x7d\xf3\xa1\x5f\xe4\x3b\x55\xaf\x60\x2d\xf2\x06\xb5\x0b\x6c\x43\x7a\xcf\x76\x86\xcf\x91\x12\x62\x8a\x60\x90\xf8\xcc\x6b\x11\xac\x21\x7a\xec\x5f\x06\xb7\x62\x6d\x8b\xdb\xe1\xbf\xd8\xd2\xdf\xde\x50\x10\xff\xe4\x6b\x1c\xe4\xca\xed\xbe\x6b\x07\xb9\x70\xb6\xf4\x1c\x85\xce\xb2\x32\x2a\x0f\x41\x97\x99\xd6\xaa\x2f\x10\x9e\xb1\x89\xf9\x03\x92\xd3\xe7\x44\x6b\xa0\x09\xea\xf8\xb9\xef\xf0\x1a\x4a\xf2\xbe\xfd\xb0\x03\xd9\x7d\xf1\x36\x38\x91\xf8\xe0\xa7\x06\x8c\x93\x6f\x7f\xe9\x02\x46\x4a\x3a\xc6\xbd\xc1\xc8\xa4\xb0\xae\x20\x90\x20\xb2\x2c\x8f\x02\x93\x04\xba\x69\x4e\x60\x39\x6f\x27\x03\x01\x9f\x70\x0e\x45\x11\xa0\xdd\xac\x43\xe7\x70\x10\xc4\x30\xb3\x62\x42\x85\xb4\xfd\x3a\x0f\xa1\x56\x72\xcb\x77\x2e\x50\x96\x81\x3e\x37\x06\x4a\xd3\x13\x47\xa3\x81\x52\x65\x50\x07\x03\x68\x4d\x89\x2e\xcd\x01\x86\xa5\xbc\xd4\x6c\x70\x4e\x52\x3b\x7d\x11\x68\x21\x7c\x7f\xcd\x13\x64\xf1\x17\x9d\x5d\x05\x3e\xe6\x6c\xb7\xfc\x04\x69\x33\x13\x74\x9a\xc0\x7f\x54\xf5\xd7\xd9\x80\x69\xa5\xdd\xd3\x51\xc0\xa0\x54\xff\xf6\x2b\x60\x65\xc1\x9f\xb6\x25\xc0\x8a\x9c\x9b\xc5\x27\x81\xed\x19\x39\x29\x78\xe0\xa4\x8a\x44\x5d\x0f\x60\x0a\xdb\x88\x3a\x60\x48\xf2\xe6\xcc\x43\x50\x4f\xa4\xb4\xb4\x04\x1d\x78\x77\x74\x8a\xc1\x85\x0c\x87\x4f\xb9\x80\x41\x77\xdb\x13\x47\x00\xd7\x76\xec\x26\x8d\xf0\xa0\xe1\x47\x73\x15\xe1\x7a\x35\xab\x70\x16\xe1\x7a\x99\x96\xcc\x9b\xf0\xaa\x20\x9e\x6c\x05\xac\xcb\xaa\x08\xd7\x07\x7c\x54\x23\xee\xf9\x40\x46\xca\x12\x0b\x00\xe8\x48\x0e\xd2\x91\x02\xf1\xac\x8e\x0f\x04\xe0\xd4\x5d\xe3\x47\xf6\x80\xe1\xed\x1b\x37\xfc\x08\x3f\xae\x9f\x6e\x94\x11\xc6\xba\x2a\xf3\xfe\x10\x7a\x9b\xdf\x4a\xe2\x09\x63\xb5\x3a\x44\x16\xe1\x5f\xe9\xa7\xd0\x52\x60\x45\x5e\x88\x5b\x37\x70\x44\x13\x60\xfe\x11\x08\x54\xdc\xd3\x91\x01\x4b\x38\xe3\xef\x3b\x80\xab\x4f\x6a\x1e\x5e\x06\x0e\x4c\xac\x19\x64\x02\x73\x46\x1c\x1a\x9a\x09\xf7\x06\x37\xe5\x6d\x23\x74\x74\xb5\x25\x97\x11\x7a\x9b\x1d\xb1\x87\x84\x17\xd5\xbc\xd0\xa5\x84\x77\xc5\x66\x6e\x04\x60\x66\xb6\xdc\x7c\x04\x30\x4c\x3b\xa2\xd3\x49\xe8\xe5\x32\xde\xaf\x00\x04\xaf\x46\x1f\x14\x00\x8e\x93\x05\xd7\x5f\x01\x33\x26\x12\x1a\xf4\x08\x03\xc3\x0f\x72\xf9\x84\xdc\x81\x3f\xc9\x06\x04\x4d\x27\x0e\xbb\x4a\xa8\x6d\x28\xbe\x2a\x21\x94\x94\x43\x6e\x7e\x84\xbc\x7c\x0b\xf3\xa7\x84\x7e\xd5\xf0\x62\x73\x82\x0b\x77\xe0\xe7\x09\xe2\x19\xa8\xf7\x65\x28\xf6\x12\xba\x75\x67\x21\xc6\x84\xbe\x74\x9b\x63\xd6\xf0\xa2\x8a\x30\xf4\x39\xa4\x54\x19\xa0\x95\x30\xc6\x4c\x43\x23\xe1\xe6\x68\x77\xd4\x00\xfe\xea\x69\x81\x4c\x20\x56\xfb\x72\x91\x34\x04\x59\xfc\x03\x21\x23\x05\x3f\x02\xb1\x66\xe2\xea\x17\x64\xec\x3c\x96\x3b\xbe\x05\x9b\x8e\x9d\xeb\x0a\x40\xdb\xb1\x45\xe5\x19\x28\x80\xd2\xd3\x12\x51\x2f\xf4\x1e\xe3\x0d\xaa\x87\xf6\x47\xd5\x20\xaf\xd0\xdc\x73\xe9\x48\x0d\xca\xd9\x67\x84\x50\xd1\x84\xc5\xb1\x08\x09\x3d\xf6\x9d\x80\x1d\xa1\x06\x3f\x4f\x41\x1f\x52\x34\x63\xfb\x50\x80\x3c\xd5\xc9\x45\x5d\xc8\xcb\xca\xee\xa2\x6b\x48\x80\xb2\x1f\xf9\x4e\x72\x65\x1c\x46\x7a\x89\xef\xa2\x0c\x91\x6c\x22\x7a\xf6\x2f\x42\x26\x6a\x59\x15\x22\x3e\x98\x72\xf1\x52\xe4\x22\xb6\xe8\x6b\x15\x1a\xcb\xb3\x9a\x1a\x47\x97\x73\x6e\x8f\x20\x48\x0f\xfb\x78\xfb\x53\x84\xcb\x7c\x5a\xea\x8c\xf8\x31\xc4\xa9\x71\x88\x09\x9d\x43\xfb\x81\x68\xd3\xe8\xd7\xb6\x23\xf3\xa8\x21\x67\x67\xc2\x7f\x28\x0e\x96\x4f\xe1\xe7\x64\x33\x1d\x1e\x3c\x42\x1c\xf9\xfc\x09\x19\x94\xd6\x3c\xdd\x84\x04\x26\xf3\x6e\x2b\x91\x25\xe2\x4b\x6d\x8b\xe1\xbb\xc2\xe3\xc5\x44\xb8\x98\x7f\x2c\x65\x18\x26\x73\x13\xa8\x34\x38\x80\x9d\x13\x39\x1f\x0e\x60\xb6\x7b\xe8\xc2\x97\xe9\x0f\x2c\x6d\x61\x67\xda\x3a\x1d\x77\x78\x0b\xb9\xf1\xe3\x2f\x64\x95\xfa\xc7\x93\x95\x70\x9b\x6a\xc3\xcd\x16\x98\x90\xba\xad\x65\x1f\x7c\x44\x7e\xb6\xb0\x12\xd6\x95\x08\xe5\xe6\xd0\x73\xf1\x1b\xca\x3a\xa8\x53\x78\x38\xfc\x2d\xd4\xc5\x23\x9d\x39\x04\xf5\xb2\xfb\x2d\xea\xa0\x22\xa6\xb3\xce\x31\xc8\x9b\x2a\x7a\x0f\xc3\xf8\xf2\xab\x0f\xeb\xe0\xed\xc5\xf1\x37\x0e\x40\x13\xf9\xc4\xc6\x3e\x88\x93\x4d\xc8\x0f\x83\xdc\x34\xb1\xd2\xa5\xd0\xb6\x34\x90\x64\x01\x2d\x49\x09\x09\xf3\x86\xb4\x25\x47\xdd\x97\x42\xf3\x45\xc6\x16\x4b\xc1\x47\xbc\x1c\x9d\x93\xa0\x3f\x63\xdb\x5b\x6d\x98\xda\x99\x72\x7f\x37\x3c\xb3\xc5\x75\x60\x0c\x4a\xad\xdf\x5f\x1f\x0b\xed\xab\xfc\x98\x6b\x06\x3e\x2b\x91\x26\xfd\x03\x9b\xf2\x2d\x30\x2f\x30\x37\xb3\xe0\xea\x00\x98\xa2\x9a\xe7\xfa\x12\xe4\xca\x69\xe6\xfe\xe0\xf9\xe4\xcd\x3a\xb6\x40\x07\x4b\xfa\xea\x25\x5c\x38\x26\xb8\x67\x0c\xef\xb8\x09\xf6\xb5\x42\x85\xfd\xb6\xb5\x01\xd0\xfe\x8e\xf1\xec\xbd\xe0\xfd\x26\x7b\xf1\x66\x30\xb3\x3a\x15\x29\x07\xc9\x25\x0d\x21\xc1\xa0\x5b\x2e\xc9\x75\x06\xb8\x53\x5d\xbf\xf7\x21\xf0\x53\xe1\xaf\xe3\x0c\x78\x73\x54\xaf\x4c\xe1\xce\x47\x1b\xef\x9e\x83\xad\xef\x94\xf5\xbe\x84\xaa\x6f\xeb\xd4\xb0\xa0\xfd\x03\x9b\xb3\xfc\xc1\xf1\x4e\x9c\xc8\x1f\x4c\x6a\xec\x44\x16\x80\x11\x55\x0e\xc1\xb7\x40\xa3\x22\x5b\x97\x06\xe0\x7d\xd6\xeb\xbd\xf5\x40\x8b\xb2\x46\x07\x04\x16\x73\x9d\x5e\x2a\xe0\x7b\xcf\x7f\xde\xa9\x84\x8f\x3d\xd6\xef\x75\x84\x4a\xee\x6e\xac\x7e\x0b\x6d\xbf\xd5\x93\xd9\x07\xd6\xf6\x6f\x13\x8e\x80\x61\xed\x57\x60\x31\xb8\xaf\xde\x33\xd8\x0f\x78\x59\xc6\x76\x49\x06\x52\xf2\xa2\xf7\x76\x00\x81\x2a\x7b\x9d\xe7\x04\x11\x97\xff\xd9\x93\xd2\x0c\x76\x4f\x3e\x20\xff\x03\xa7\x6e\xdf\x23\xdb\x81\xe3\x6d\x34\x52\x3e\x78\xaf\x44\x8f\xb4\x11\x9a\xa6\xb8\x44\xd4\x40\xf5\x34\x2b\xa2\x2e\xbc\x25\x92\x89\x31\x60\x92\xc7\x6b\xf4\x0f\x3c\x65\xf9\x01\x85\x11\x07\x9d\x76\xf4\x14\x22\xfd\x14\x4d\xd1\xc7\xe6\x3c\xf9\x4d\x0e\x43\xab\x6f\xfd\x25\x35\xa0\x7e\xad\xd5\xa4\x7d\xe8\xec\xe2\x8b\xc4\x1a\x64\x22\xa5\x9c\x78\x12\xd5\xa3\x72\xb1\xeb\xa8\x71\xc4\x07\xcc\x0d\xdd\xeb\x61\x8f\xde\x45\x2d\x2d\xa3\xd1\x50\xf4\xa8\x8e\x07\x7a\x14\xdd\xf6\x91\x46\xa6\x53\x22\x9e\x6c\x22\xdd\x27\xd7\xdd\x5a\x43\xda\x47\x5e\xd6\xf2\x88\xd8\x41\x3a\x53\x24\x27\xba\x11\x07\x52\x56\x62\x4f\x89\x4c\xca\x0b\x2c\x81\xe8\x1b\x11\x80\x2d\x26\x2e\x3c\x53\x84\xe6\x62\x65\x96\xd3\xd0\xa3\x58\x98\xf6\x6f\x74\x33\xfa\xee\xfd\x08\x29\x87\x6b\xfc\x28\x8a\x34\x8b\x3d\x35\x44\x20\x46\xb1\x22\x9b\x3d\xb0\x9f\xcc\x75\x85\xeb\x30\x21\xfd\xa9\xac\x16\xdb\x42\xfb\x40\x2e\x43\x9b\x68\x33\xc2\x43\xd0\x18\xca\x0f\xf7\x5e\x74\x33\xf9\x85\xc5\x51\xe4\x06\x79\xba\x36\x1f\x51\x11\xcb\xde\xcd\x21\xb9\x48\x4e\x3f\xa8\x20\xd2\x92\x7c\x07\x35\xd8\xa4\xc8\xbb\x91\x82\x5d\x14\x9c\xcf\x3f\x8f\xbe\xe1\xc5\x4b\xd7\xa3\x24\x4e\x13\xe9\x38\xba\x85\xbd\x20\xec\x34\x32\xce\xb4\x71\x7b\x83\xf0\xe8\x80\x79\x09\x62\x45\x7d\xa5\x7d\x05\x7e\x4e\xe6\xbd\xd9\x4a\x2c\x4f\x8f\x9a\x68\xc0\xfe\x2a\x7b\x06\xae\x63\xf1\x29\x6f\xea\x2b\xd1\x31\xd9\xbe\xdc\x14\xf4\x62\xb2\x38\x99\x82\x7c\x16\xeb\x60\x4f\x11\x91\x80\x12\xba\x1f\xb1\xe3\xbe\x73\x5b\x03\x7f\x65\xfb\x99\x9b\xc2\x12\xa6\xae\x76\x28\xbc\x96\x7a\xf1\x65\x13\xf6\xa4\x94\x79\x37\x00\xf3\x2c\xec\xed\x73\x44\x6f\xe7\xcd\xa9\x3d\x85\x1a\x66\x6d\xca\x76\x43\x54\xea\x43\xe2\xab\x88\x95\x32\x02\x9d\x0b\x3f\x90\xd3\x43\xca\x60\x46\xb2\xc8\xe5\x37\x6c\x29\x2c\xdd\x2b\x82\xfa\x79\x91\xda\x20\xa4\x47\x7f\xf6\x7c\x3f\x71\x71\x7b\xcc\xd8\x18\x66\xde\x74\xae\xfb\x19\x2a\xa8\x8d\xab\xfa\x82\xdc\xae\x70\xc9\x5c\x8b\xec\x2f\xde\x20\xf4\x86\x6f\xe4\xbe\x87\x4d\xe1\xb8\x8c\x94\xe0\x1d\xb0\x6e\xda\xde\xd3\xe3\x50\x83\xec\xfb\x9e\x77\x90\x5d\xd2\x63\x6d\x0c\x04\x58\x47\xa7\x36\x13\xad\x86\x3f\x8d\x4c\x60\xfe\x37\x36\x74\xde\x43\x85\xbd\xdb\x2a\x3e\x20\xd7\xdb\x3e\x6b\x0c\x90\x1d\x0d\x42\x3e\x0d\x2e\xa9\xda\x02\x0a\xe1\x13\xc5\x58\xd0\x20\x74\x23\x47\xe4\xfc\x01\xf2\x51\xaf\xdc\x13\x04\x4e\xa6\x3c\xd6\xe6\x82\x0b\x38\x87\x9f\x5e\x26\x3a\xdd\x47\x47\x96\x61\xd1\x63\x87\x3a\xe7\xa3\x8a\xa1\xa1\x8a\x75\xc8\x40\xdf\x66\xf5\x39\x44\xbf\xdd\x8a\xd7\x0d\x2b\x1b\x2c\x81\x57\xf0\xae\x8a\x5f\x41\x47\xa0\xac\x42\x17\xe7\x0c\x68\x4b\x96\xcd\x1e\x1b\x30\x57\xb9\x59\xbb\x11\x68\xe1\xbc\x9c\xbc\x4f\xf4\x9a\x32\x1c\x26\x62\x01\x0f\x64\x1d\xe1\xa8\x68\xac\xb9\x1c\x40\x1a\x87\x8a\xd2\x9b\x90\xd9\xbd\xce\xbc\x43\x70\x6c\x6b\x3f\x10\x0f\xfd\xaa\x9b\x16\xf8\x00\xba\x5c\xaa\x72\x06\xc0\x5b\xb9\xd5\x7b\x4e\x80\xce\x69\x6a\x9d\x2d\x80\x1d\x77\xc7\x73\x77\x76\x06\xb0\x6b\x3c\x86\x75\x19\xf0\xec\x0d\x65\xce\x04\xa0\x9a\x76\xfa\x2f\x40\x92\xbd\x84\xf6\x07\x18\x12\x9f\xa3\xbe\x01\xbd\x91\x3f\x94\x47\xe0\xaf\x10\x2a\xb9\x07\x4a\x75\x19\x20\xd5\xc2\x66\x7b\xde\x10\xef\xc2\x03\x0b\x87\x88\x09\x88\xc5\xb3\xab\xec\x05\xc8\xc1\x31\x15\x73\x18\x59\xd8\xc3\x61\x60\xf0\x83\xea\x6f\x74\x12\x5c\x94\xe5\x47\x93\xc2\x42\x51\x29\x55\x00\xf7\x22\x97\x29\x12\x64\x7e\xf0\x17\x72\x0a\x62\xe7\x62\x43\x4a\x41\x80\x3d\x78\xe2\x75\xa4\x67\x21\x81\x78\x0d\x69\x9c\x82\x58\x09\xa4\x6b\xa3\x3d\xcc\x13\xc4\x17\xdd\x05\x8c\x69\xc4\xe0\xea\x3d\xf4\xe5\xd8\xf3\xcc\x42\x9a\x09\x86\x88\x16\x50\x2d\x31\x6f\xf8\x06\xe5\x28\x66\x17\x1c\x49\xf6\xc2\xd6\x9f\x6e\x21\x85\xa1\xef\xf6\xac\x22\xe6\xa2\xcf\x17\x5a\x11\xdd\x50\xc2\xd3\x6d\x4c\x21\x7b\xef\x48\x08\xe3\x2a\x6b\x7e\x97\x0f\x7d\x0f\x63\xb0\x72\x84\x66\x43\xcf\xce\x38\x4d\xbd\x40\x93\x0a\xfa\x28\x31\xd4\x76\xa8\x86\x2c\xa0\xfc\xbc\x12\x45\x6a\xa3\x2c\x70\x9e\x20\x7e\x22\xaf\x37\x4b\x20\x5a\x91\x12\xb5\xbe\x63\xfd\x44\xa3\x27\xa6\xcc\x2d\xe2\xa7\xb7\xeb\xe8\xe3\x22\xa3\x0e\x16\x2d\x4b\xe0\x53\xb1\x8c\x5a\xce\x13\xab\x95\x94\x21\xce\x3d\xbe\x2d\xf9\x0d\xdb\x03\x3c\x4f\x5e\xc6\x1c\x0a\x3a\x4f\xb2\x62\x58\x38\x2f\x26\x06\xd0\x32\x4c\xff\x60\x2a\x6a\x88\xd6\x07\x6c\x31\xe9\xf3\x23\x3f\x06\x5d\x49\xbb\x59\x4a\xbf\xa4\x58\xda\x56\x43\x33\x97\x71\xca\x1c\xa9\x87\x24\xcb\x54\xdf\x29\x67\xc5\x39\xdc\x3a\x72\x8c\xd0\x0f\x98\x4e\x4a\xe3\x2f\x0b\x3c\x43\x2c\xe5\xb4\x3a\x9d\xc3\xae\xb3\x60\x53\x21\xfa\x8f\xa1\x5c\xb8\x00\xb5\xa5\x94\x3f\x70\xa1\xff\x2a\x5a\x79\x43\x4d\xeb\xc8\xe3\xb7\xd8\x53\xa5\xd9\xb3\x8b\x3f\x50\x24\x9a\x48\x65\x1d\x59\x93\x76\x8f\x5d\x48\x6a\x51\x78\xe2\x2d\x88\xaf\xa4\x3d\x01\x93\xd8\xcf\x24\x33\xc7\x13\xd8\x12\x41\x85\x29\x0e\x35\xe5\xfe\x5a\x68\x82\xd8\xd1\x37\xde\x4b\xa0\xbf\x6c\xfa\x3c\x30\x49\xcb\xac\x73\x6e\x9c\xa4\x7a\x55\xb6\x17\xa6\x51\x1c\x4a\x67\x2a\xa8\x64\x87\x02\x33\x66\x06\xe9\x42\xf6\x95\x84\x50\x22\xaa\x86\x2f\x85\x61\xac\x54\xee\x29\x53\x54\x2e\xbd\xbb\xdb\x07\xc9\x49\x72\x5a\x78\x10\x16\x31\x2f\xdc\xa1\xd0\xbf\xdd\xf8\xd2\xaf\x4d\x2b\xe8\x4b\xae\x9f\xa0\x86\x74\x6a\xe7\xe7\x52\x6c\x9a\x2d\xe4\x1a\xb2\x49\xad\x15\x7d\x92\x64\x56\xbe\x2f\xee\x1e\xd1\xa1\x70\x99\xff\x56\xcc\x26\xab\xfb\xa4\x0d\x6a\xaf\x7a\x6a\x72\x1b\x39\x21\xbf\xbe\xf0\x14\xbc\x86\x6d\x39\x5e\xc7\xd8\x3e\xee\xd9\x67\x4f\xeb\xb9\xc5\xa8\xd7\xa6\x46\x0e\x70\xf2\x46\x28\xd6\x5d\xe6\xb2\x3b\xe4\xcd\xcd\xc5\x74\x03\xd2\xba\x5a\x83\x38\x73\xe2\xd6\xb2\x08\xbf\x54\x4c\x37\x9f\x78\xe2\x39\xba\x34\x73\xa1\x49\x1e\xa2\xa3\x98\x5c\x18\x03\x5d\x67\xdf\x19\xdf\xc4\x38\xf3\xf0\x69\x6f\x06\xed\xde\x9d\xe6\xba\x50\xea\xd5\xdb\xbe\x79\x7b\x29\xbb\x06\x54\x32\x6b\xf2\xcc\xce\x0c\x5a\x0a\xf1\x7d\x53\x5a\x6c\x0b\xf6\xb6\xfa\x8a\x9f\x03\x3a\x5a\x7c\xf7\x44\x2d\xd2\x9e\x63\x6b\x52\x0c\x57\x28\x9d\x17\x0e\x41\x67\x39\x7a\x77\x5d\xc4\x96\xf8\x7f\x03\x09\x42\x3b\xc2\xc1\xc6\x31\x7e\x24\x21\xb4\xf0\x37\x77\x8c\xa0\x49\xdd\xc2\x39\x49\xf8\xc9\x0a\x64\x95\x00\xdc\xc4\xb5\xcc\x55\xe0\x81\x4b\x3d\x74\x22\x38\x75\x6a\x3d\xf5\x0f\xc4\x36\xf1\xa4\x74\xc1\xae\xf3\x39\xe4\xef\x70\xff\x1d\xb1\x48\x04\x0d\xf4\xe7\x0a\x5a\xa0\xba\x86\x7f\xfc\x19\x90\xb2\xd0\x9c\x9b\x00\x31\x15\x51\xec\x4f\x90\x84\xd9\xcc\x0a\x81\xc6\x12\x98\x8c\x07\xf0\xee\x4b\x36\xf4\xf3\x30\x74\x52\x45\x9d\x82\xaf\xef\xfa\x44\x69\x42\x8e\xce\x3f\x4e\xfe\x8a\x38\x8e\x0f\x09\xbf\x62\xcd\x7d\xc3\x02\x6b\xcc\xbf\x61\x23\x2f\x19\xfd\x55\x10\xcb\xd5\x45\x53\x53\xba\xd8\x0a\xd4\x87\xb9\x89\xb5\x16\x75\x8a\xff\xc3\x90\xa3\x6e\xfe\x2d\xf4\xad\xa8\xfd\xc9\x5d\xd4\x46\xd4\x6a\x97\x92\xa2\x44\x03\xe6\xaf\x23\xdf\x42\x7e\x8c\xed\x10\xee\x63\xce\xed\xf5\xe5\xb3\x18\xf3\xea\x46\xb9\xef\xe8\xd3\xf2\xf5\x38\x57\x69\x73\xe5\xb1\xac\xcf\xd4\xcd\xf4\xf7\xcc\x04\x4a\x42\xdc\x5b\xc6\x74\xf2\xa8\x5f\x0f\x2d\x8d\xbc\xf4\xc4\x79\xea\x49\x92\xe7\xae\xd5\x14\x63\xe2\xcf\x79\xff\xc8\xa7\x30\xce\x88\x40\xa0\x16\x86\x75\x0f\xf2\xde\xf0\xdf\xd6\x5a\x70\xcf\xf0\x3c\x72\xf9\xec\x5b\x9c\x26\xd9\x0c\xd6\x05\xf6\x7e\x5a\x32\xe3\x0d\xf3\x69\x6c\x03\x1d\x63\x24\xfb\x76\xd1\x96\xd1\xb7\x1d\x2f\xa2\xd4\x50\x6f\x19\x57\x92\x45\x94\x67\xf3\x57\x91\x58\xa4\x03\xc3\x8b\x05\x3b\x52\xee\x77\x6d\xe2\xc5\xcb\x78\xd5\x42\xce\x88\xe4\x70\xf6\x3f\xb6\x8b\xf8\x9f\x84\xca\xbc\x23\x1c\xa0\xee\x67\x84\xf3\x5b\x63\x58\xf4\xb9\xdc\x5a\x9f\x36\x2a\x8b\x2d\x3e\x8e\xa3\x6c\x61\x2a\x8c\x2f\x90\xde\x33\x36\xcf\x3f\x42\x6c\x26\xbf\xb8\x39\xca\x07\xf2\x04\xed\x93\xdc\xfb\xd9\x57\x2a\x8f\x72\xac\x33\x76\x67\xf6\xb0\xca\x54\x8f\x93\xa2\x98\xbb\x53\x05\x64\x0f\x7a\x8b\xdc\x2f\xea\x09\xcd\x53\xb2\xf5\x22\x46\xb9\x27\x1a\x39\x36\x8b\x1c\xce\xaf\xdf\x39\x42\xda\xc8\x15\xcd\x8f\xc1\x9a\x68\x96\x37\x82\xf9\x05\x75\x77\x5b\xa9\xdc\x81\xaa\xd4\xf2\xd9\x9c\xd9\x65\xe7\x34\x52\x56\x50\xe1\x2b\x91\x2f\x63\x2c\x37\x8a\x18\x4a\xf7\xcd\x9c\x73\xcd\x8c\xfa\x51\xc5\xbc\x60\x4c\x89\x54\xe0\x8e\xfe\x24\xfd\x90\xf4\xec\xb4\x20\x4a\xc5\xc9\xf3\xa9\xd8\x4c\x86\xf3\xf5\xb3\xfc\x27\xfd\xdb\x9b\x69\xdc\xdf\x5d\x5b\x4a\x5e\x71\xb6\xb7\x3c\x4b\xe7\xb3\xe2\xea\x63\x04\xe1\x8c\xc1\xca\x47\x68\x2a\xdd\xa6\xe4\x4c\x84\x94\xda\x9a\x57\xe2\x7d\x97\x62\x92\xf1\xf5\x28\x8e\x94\x97\x36\xb4\x23\x9b\x68\x25\x63\xcf\x17\xa1\x18\x6b\xee\x00\xc8\xff\x7d\xdb\xa4\x29\x9d\xa7\x7b\xbd\xaa\x64\x3e\xc7\xa6\x67\xb1\xaa\x88\x85\xb4\x19\xf2\x25\x8c\xfe\x86\x95\xc8\x28\xdd\xac\x6a\x5e\xf8\x0b\x6a\x46\xf1\x23\xef\x53\x14\xad\xdc\x34\x7b\x09\x09\xd6\xb4\xee\xc0\x13\xa7\xa5\x44\xcf\x2f\x47\xcd\x58\xe9\xfd\x37\x05\x5a\x77\xaf\x36\xbe\xe6\x19\x0d\xa7\x16\xbb\x70\x4e\x0c\xa6\xa4\xfd\x62\x25\xf6\xb8\xf1\xde\x30\xaa\x5a\x47\x91\x83\x74\xed\x7a\xaf\xf0\xcb\xd4\xd8\x8a\x06\xaf\x17\xe4\xc1\xc2\x3f\xf6\x97\x49\x66\x59\x45\x3b\xf0\x58\x86\xa2\x63\xc1\x4c\xa4\x8d\xf5\x7c\x40\xa1\x38\x88\xd7\x6d\x36\x93\x3d\xc0\xfb\x97\x82\x12\x14\x9f\xa3\x8e\x49\x3a\x8d\xff\x21\x24\x8b\xb6\x13\x02\xb0\x41\xfe\x57\x60\x5a\x64\x01\xb7\x03\x28\x3f\xcf\x66\x6b\xc0\x4b\x47\x67\x30\xd3\xa0\xc5\xdb\x2f\x31\xd6\xc2\xb8\x39\x5e\xb4\x40\x98\xdb\x5f\x98\x32\x04\x16\x34\xf9\xcb\x10\x30\xa7\x24\x4f\x62\x04\x66\xa7\x97\x89\xff\x81\xe5\x82\x21\xe1\x03\x70\x0c\x33\xe5\x37\x40\xdb\x22\xb7\x70\x65\x10\xfb\xfc\x62\x36\x05\x7a\x6e\x9f\xc4\x64\xc3\x36\xdb\xb5\x19\xcb\xe1\xc9\x39\x3b\x69\x7e\xf0\xf7\xbe\x5b\x29\x41\x68\x48\x23\x55\xb6\x05\x5d\x59\x7c\x3b\x79\x08\xb9\xa9\xfa\x25\x2e\x47\x24\x82\x3d\xc2\x14\x24\x06\x4d\xe5\xc3\x08\x3e\x42\xc1\x0d\x40\x04\xde\x12\xf6\x59\x44\x6a\x6f\xca\xbc\x82\x68\xb6\xb5\xd3\xbf\x21\x3f\xe7\x2c\xa5\x1d\x46\x44\xbd\xa0\xbc\x97\xbe\xb7\xc1\x40\x4a\xa3\x39\x17\x89\x93\x4f\x50\x23\xd2\xaa\xc5\x06\x94\x54\xde\x0f\xe1\x12\xf2\x24\x42\xe0\xfd\x20\x7b\x87\xa7\x70\x26\x49\x0f\xbd\xca\x58\x8f\x48\xb6\x76\x28\xe3\x07\xb1\x72\x9b\x17\x9d\x4a\xe4\xce\x59\x4c\xad\xc6\xb4\xba\x1f\xc8\x67\xf1\x0f\xd6\x3d\x92\xf4\x72\x5f\x14\x6e\x4f\xd2\x70\x60\xe5\x25\x11\x95\xbd\x82\x5b\x2f\x88\x65\xb6\xc0\x9e\xbc\x40\x86\x3c\x4c\xc6\xb9\x40\x47\x3c\xab\x59\xae\xb4\xc3\xb6\x8f\x18\x21\xd4\x4d\xdb\xb4\x68\x2f\x28\x94\x39\xfb\x28\x7f\x88\x9a\xae\x78\x59\x84\x6c\x4b\xed\x1e\xc9\x31\xc9\xb6\xfc\xc6\xa4\xe5\x49\xab\x53\x67\x0b\xbf\x8a\x16\x72\x12\xf8\xcf\x05\x4b\x21\x13\xee\x43\xde\xd1\xd0\x64\xf6\x04\x07\x3c\x97\xc3\x6c\x67\xd1\x6c\x1d\xe8\x23\x8c\x3b\x46\x7d\xb4\x83\xf4\xeb\x73\xf0\x94\xed\x64\xd3\x0e\x23\xd9\xa2\xec\xc3\xd5\xc7\x92\x1b\x33\xfc\x72\x35\x62\x52\x7a\x5c\xca\x0c\xe1\x79\xe5\x15\x56\x12\xff\x48\x8a\x2f\x10\xcf\x35\x97\x42\x57\x57\xb0\x4d\x92\x52\xce\x96\x33\x57\x09\x65\x36\x7e\xf4\x0d\xbc\xfb\x46\x5e\xd4\x20\xae\xfb\x9c\x5a\xb2\x3e\xf5\x7c\xdb\x0e\xe9\xcd\xaa\x07\x95\x33\x92\x93\xcb\x6e\x67\xf3\xc4\xc7\x8a\xbe\xca\x70\xc2\x25\x79\x13\x8c\x02\xde\xf3\xac\x5a\x7c\x05\x67\x58\x5d\x1e\x4c\x67\xf5\x28\xb3\x3d\xe8\x8c\x62\x39\xcd\x3a\x88\x96\x93\x3c\x66\x38\x40\x19\x15\x55\xcd\x19\x21\xf9\xd0\x4f\xb5\x9c\x97\x1d\xed\xba\x56\x6e\x95\x7c\xb7\x55\x93\x19\x2e\x86\x1b\x1a\x93\xdf\x08\x77\x55\x17\xd2\x2a\x79\xaf\xca\x18\x09\x8f\x39\xcd\x85\xf1\x41\x2f\x58\x8a\x1c\xaf\x33\xa6\x8c\x58\xcd\xc1\x23\x57\x68\xfe\xca\x01\xc3\xbd\x14\xbc\x74\xcd\x9c\x27\xc4\x11\xc6\xa3\xe6\x63\x32\xf0\xfa\xeb\x32\x7b\xc9\xdc\x9e\x1b\x19\x04\xb1\xaa\x9d\x9e\x3c\x5d\x68\xdd\xa4\x43\x1d\xe5\xbd\xa9\x49\x4c\x58\xc6\xa9\x28\x7b\x1f\x64\xc6\xa2\x14\xfa\xb8\x2b\x19\x67\xb2\xef\x1e\xfe\x47\xb3\x50\x3b\x1a\xfc\xa5\xd8\xca\xfa\xe6\xfc\x21\xd2\x98\x11\x4d\x5e\xb2\xfc\xe1\x9c\xd2\x20\xc9\xb6\x1b\xa7\x35\x25\xe2\x8a\xde\x8e\xa4\xc3\x42\xfb\xf6\x6f\x54\x3d\xde\xc3\xa6\x19\xf1\xe1\x1c\x49\xcd\xb2\x40\x0d\xcb\xb3\x6c\x83\xfb\x6e\xc6\xfa\x82\xcd\x87\xeb\xa9\x9f\x33\x9e\x1b\x7c\x20\xbf\x94\xff\x99\x6b\x43\x5c\xc5\x2c\xab\xd6\xca\x25\x25\x82\xf9\xb8\x2c\xab\xc4\x09\xe5\x6a\xcd\x12\xfc\x46\xbe\x7f\xda\x27\x3c\x01\x1b\x57\x8c\xe2\xbf\x44\x17\xcb\xea\x09\xfc\x4b\x56\xc9\x29\xc0\xb1\xd3\x9f\x45\x00\xb8\xf0\xc0\x05\x3e\x1f\x1c\xd6\x8f\xe6\x66\x42\xfd\xd3\x3f\x31\x31\xd8\xb3\xea\x5c\xae\x1e\xd0\x95\x77\x26\xf3\x09\x30\x9e\x1a\xa3\xee\x02\x46\x78\x43\x69\x85\xc0\x17\xcc\x4b\x21\x05\x77\x47\xef\x93\xd1\x41\xba\xff\xad\xe4\x58\xf0\xe7\x69\x89\xc8\x17\x8a\x3e\x30\x8f\x8f\x41\xaf\xf5\xcd\xb9\x2a\x58\x32\xfd\x0e\x13\x80\xb3\x2a\x53\x73\x9a\x11\xf3\xdc\xb4\x4c\x36\xfc\x57\xd1\xab\x26\xc0\x55\x3c\xeb\xb4\x2b\xb0\x1c\x7d\xac\xf0\x84\x93\xa3\xfa\x64\x4e\x70\xa1\x7f\x64\xb2\x35\x7c\xef\xf4\x01\xd1\x5e\x64\xce\xfe\x7a\xbe\x2f\x62\xa5\x3f\x8d\x4b\x42\x0a\xa6\xdf\x66\x7a\x23\x06\x15\xd2\xec\x8f\x54\x20\x27\x23\xe3\x09\xa5\x34\xe5\x51\xfa\x6b\xf2\x04\xd7\x49\x39\x41\x36\x43\x3e\xa6\xdc\x24\xa9\xaf\xbd\x97\xf6\x91\x0e\xf8\x95\x24\xb5\x10\x5f\x3a\xf3\x84\x2d\x44\x64\xbf\x39\xef\x03\x71\xfb\xa6\x1a\xae\x0e\xf1\xd8\xf4\x77\x8c\x31\x34\xa6\x3c\x30\x5b\xc2\xb9\x97\x9d\x98\xe1\xcb\x2e\x90\x97\xa7\xbb\xb2\xfc\x38\x66\xca\xa3\xcc\x9d\xf0\xfb\x14\x6b\xc6\x92\x6b\x33\xa4\xb6\xf4\x4d\xbe\x0f\x93\x6c\x68\xb6\x4e\xf7\x84\x96\x54\xa7\x7d\xcd\x3c\x3f\x0a\xb4\x89\xc5\x09\xa1\x78\xce\x30\x61\xac\xc3\x9e\x94\x9d\xc9\x7a\x95\xbc\x29\xeb\xa4\xa6\x5f\x6c\x27\x43\x55\x3d\x42\x1f\xf6\x92\xd4\x46\xbe\x14\x7a\x26\xaf\xe3\x4e\x45\xea\x48\x5a\x38\x01\xbe\x0b\xc5\x9d\xac\x8f\x4e\x9b\x04\x25\xcc\x2b\xfb\x9c\xb8\x5d\x0c\xdd\x4d\x11\xec\x42\x7a\xed\x0c\x88\xee\x48\x3a\x59\x72\x30\x2b\x48\xad\xc8\xb8\xa8\x39\xa6\xda\x29\xa9\x56\x1d\x4c\x55\x32\x2f\xa6\x1a\xca\x3f\x81\x2e\xf2\xd5\x52\xb7\xf0\x34\xc9\xea\xa4\x07\x17\x07\xc5\xba\xa2\x44\x47\x73\xfe\x5f\xc1\x0c\x2b\x29\x77\x01\xf7\xdd\x26\x43\x56\x0f\xa7\x70\xc6\x7d\x9a\x0d\xc5\xb1\xc8\x34\xeb\x6c\xc9\x77\x75\x94\x66\x7d\x61\x7c\xd2\xab\xb4\xbf\xb9\x2f\xe9\xe9\x8a\xbb\x59\x8e\x84\x22\x59\x83\xba\x3c\x6c\x43\x72\x45\x9a\xed\x05\x50\x54\x92\xf2\xf0\xd4\x0e\x3e\x5b\x8a\x5a\x76\x73\x04\x49\xdd\x1b\xeb\x58\xbb\x84\xf3\x66\x2e\xa4\xc6\x52\xbf\x17\xec\xc9\x52\x34\x4f\x57\x91\x35\x8e\x75\xaf\xc5\x0b\x54\x8b\xab\xf2\xa9\x83\x8a\xd1\x32\xf3\xc4\x0f\x32\x55\x61\xd5\x55\x72\x32\x25\xf7\xfc\xf9\x25\xa2\xf0\xcc\xe5\x27\x67\xf2\x6d\x55\x7f\x2d\x3e\x70\x0e\x29\x7e\x6c\x3c\xc8\xec\x4e\x52\xcc\xdc\x41\xb9\x4f\x3f\x93\x9f\x90\x95\xd6\xb5\x33\xad\x51\xe3\xdd\x5a\x24\x32\x55\x6d\x69\x9c\x4d\xf9\xa5\xb8\x53\xb3\x3b\xd1\x50\x96\x54\xee\x12\x32\x90\x1c\x51\x24\xf2\xbe\x26\x72\xcc\xfd\x74\x82\xc8\x5f\x93\x49\xb7\x48\xe6\xe8\xa4\x8d\x6e\xd4\x61\x32\x25\x73\x67\x1e\xa7\xf0\xe8\xb7\xf3\xc6\xb2\x14\x03\x85\x69\x0b\x35\x3e\xdd\x77\x85\x09\xaa\xed\x6d\x0f\x29\xc7\x15\x83\x8d\xed\x09\x98\x8c\x50\x23\x09\xb1\x48\x76\x28\xe7\x78\x7d\x10\xad\x2a\xca\x39\xa1\xcf\xbb\x9f\xbb\xd9\xc2\x87\xdd\x95\xfe\x6f\xe3\x02\xe6\x76\xe9\x8a\x99\x4c\xca\x36\x86\x5e\xfa\x86\xea\x3c\xfc\xa6\xa4\x07\xe5\x3c\xfc\x69\xe6\xaa\x62\x2e\x9e\x00\x15\xe7\xc7\xe1\x6f\x5e\x93\x65\x5f\x20\x38\x06\xcc\xd2\x9c\x24\xdc\x3f\xe3\x98\xb6\x07\xe0\xd8\x7d\x4b\x59\x04\x5e\x32\xf5\x91\xd8\x40\x47\xd7\x6c\x48\xda\x06\x9f\xc5\xe1\x38\xd6\x70\x8b\x4a\x51\x7d\x11\xf8\x99\x14\x56\x7e\x1c\x78\xc3\xc8\x2e\x3e\x05\x4c\x42\xae\xf9\x56\xe0\xdc\x6b\x2e\xd9\xfa\xa0\xe3\xa5\x66\xcd\x6a\x50\x73\x46\x3b\x6d\x3e\xb4\xca\xae\x56\xfe\x01\xca\x30\xdd\x2a\x31\x85\x8f\xe8\xfe\x4c\xd2\x43\xb4\x71\x38\x8e\x15\xfc\x46\xb5\xaa\x7a\x29\xfc\x4b\xfc\xa9\x1c\x07\x17\x33\x4c\x8b\x67\xc3\xf1\xe0\xd7\xbc\x4f\x70\xd8\xb5\x59\x59\x8f\x61\xe0\x12\x5e\x7d\x0f\x96\xb9\xdf\x54\xde\x82\x87\xed\x50\x79\x2b\xb2\x6e\xf7\x47\x89\x16\x12\xa7\x7b\x47\xfc\x17\x5d\x8b\xc3\x71\x96\x21\x2e\x69\x84\xaa\xcb\x14\x91\xd8\xb1\xcc\x8b\x3c\x4e\x2f\x2c\x0a\x22\xeb\x81\xbe\x79\x17\x49\x9c\xc8\xab\x59\xee\xa4\xb5\xfe\xef\xd5\x2e\xc4\xeb\xee\x3e\xca\x13\xc4\x14\x3b\x5d\xb9\x0d\xd1\x7f\xb7\x32\x59\x48\x3c\xa1\x5b\x2e\x86\x89\x83\x38\x1c\x9b\x86\x5e\x55\xba\x54\x4e\xb2\x03\x44\x57\x4a\xbb\x59\x87\x68\x7d\x85\xfd\x4c\x6d\x80\x9b\xdb\xc3\x98\x19\x51\x9c\xd9\x41\x5f\xee\x6f\x9f\xde\x4d\x73\x73\xeb\x4d\xed\xa5\xe6\xdb\xe6\xc8\x2a\x29\x7f\x77\x7b\x25\x7d\xa1\x50\x74\x2b\x45\x0d\x94\x3b\x38\x5b\x56\x0b\x56\x92\xea\x5b\xb9\x5b\xc4\x17\x5e\x29\x35\x11\x2e\xa6\x3e\x2e\x3c\xc2\xbf\x42\xa8\xca\x3d\xcc\xbd\x1b\xfe\x36\xf3\x20\x27\xd8\x4f\x98\x6e\xcb\xde\xee\xb6\x3b\xd5\x81\x35\xdf\xd6\x5c\xa6\xcf\x78\xb4\x7b\x55\xd2\x49\xc6\x42\xdd\x3e\xe1\x04\xbd\x0a\x27\x62\x4e\x12\xdf\x29\x66\x54\xa4\xa6\x99\x0b\xd6\x94\x48\x15\x77\x29\x94\x82\x2c\x39\x8c\x0f\xcd\x91\x4b\x0d\xc3\x1a\x32\xd8\x49\xcf\x7d\x11\x15\x47\xf4\xd0\xf5\xa8\x82\x2b\xf8\x66\x83\x48\x2f\xf1\x97\x99\x64\x88\x41\x6e\xbb\x6e\x8b\xe0\x16\x3b\x1d\xf7\x93\xd1\x4d\xce\x95\xe3\x2b\xae\xe4\xb7\xf3\xe8\x25\x4e\x39\x6c\xb2\x6e\x81\x7b\x26\x25\x51\x3b\x67\xbf\xfa\x62\x68\x42\xc6\xc6\x34\x07\x1f\x0f\xd5\x1a\x45\x98\x8b\x9d\x62\x85\xac\xc6\x3a\x5f\x32\x29\x31\x32\x59\x2c\xfa\x98\x74\x40\x97\x2b\xd0\xe5\xcf\x9c\x66\x4f\x7f\x43\x5d\x23\x6d\xaf\xb8\x56\x93\xc1\x9d\x57\x72\xb2\xe2\x1b\x51\x56\x60\x5e\xba\x3f\x5e\x92\x33\xbb\xd0\xf5\xaa\xb6\x66\x24\x37\xe1\xa2\x56\x5a\x5b\xe6\xbd\xd3\x9b\x53\x8a\xd4\xf1\x47\xba\x24\x40\x9a\xcf\xae\x58\x11\x49\x3e\xaa\x6b\xcb\x17\x0b\xef\x4d\x8b\xa7\x3b\xd1\xec\xa4\x76\x15\x71\xcd\x87\x39\xd7\x4a\x9c\xea\xcd\xb0\xe7\x05\x3b\xaa\x57\xc5\xbd\xcc\xfe\x50\xf6\x38\x24\x58\x53\x5e\x54\x77\x21\x2e\x4d\x92\x77\xdb\x39\x3d\x05\xcc\xb6\x3c\x72\x49\xe2\xa0\x99\xb9\xcb\x4c\x74\x22\x75\x99\xee\x0e\xfe\x51\xf1\xac\x69\xc9\xb4\xdf\xb4\x12\xc9\x78\x45\x6c\xe7\x61\xf6\x9b\x12\xdb\x96\x97\x98\x53\xc1\xaa\x06\x4a\x9c\x47\xf6\x60\x8d\x6e\xf0\x43\x0d\xa9\xbc\xf1\xfc\x9f\xb4\x0b\xc5\xd9\xce\x87\x52\x2c\xf3\x8f\x1f\x59\x93\xfc\x27\xf3\xc6\xae\xc5\xc2\x6f\xca\x1e\x5d\x2b\xde\x5d\xf1\xd4\xb4\x5b\xb4\x24\xda\x2b\xb6\x71\xe7\x6b\x42\x3a\xd1\xa0\x65\x90\x50\x9c\x90\x58\x7f\x87\x50\x1e\xe6\x50\xf5\x82\xf0\xc6\x2f\xa9\xf4\x0d\x70\xe6\x8c\x7b\xc1\x3f\xe0\xfe\xb1\x0d\x39\x5a\x20\xc7\xca\x5a\xb3\x09\x0a\x36\xf4\x57\x8e\xc1\x21\x4b\xf2\x14\x4f\x10\x39\x0e\xc7\x7b\x80\x84\xb3\x17\x76\xc6\x43\x0e\xd8\xdb\x96\x38\x48\x37\xc1\xa4\x9e\x0b\x4e\x85\x69\x55\xa9\xc1\xb7\x7e\x41\xa5\x05\xd0\x86\x33\x06\x05\x1d\x50\xb4\xc3\xd7\xec\x51\xe8\xb5\xd5\x36\xf5\x4f\x98\x69\x78\x50\xd9\x88\x1c\x5b\x22\x53\xf4\xa1\x26\x38\x1c\x6f\x00\x81\x58\x4f\x3a\x17\xa1\x4b\xb0\xb2\x16\x5d\x24\x3f\xfe\x75\xfd\x21\xc4\x3e\xf4\x7a\xd5\x19\x44\xd7\x6f\x6f\x69\x00\xb2\xda\xfd\x47\x01\x84\x58\x39\x5c\xcf\x4e\x42\x60\xab\xb9\xea\x36\xe4\x91\xe1\x06\x25\x07\xbd\xba\x84\xad\x90\x62\x2b\x70\x38\x9e\x12\xe9\x61\x6d\xea\xb0\xa6\x74\x60\x5b\x9b\xbd\x29\x73\xe3\xc9\x75\x2c\xb2\x43\x68\x60\x65\x01\xa9\xd2\x77\xb0\xa4\x9d\xe4\xe2\xae\xcc\xbf\x4f\x5a\xe2\x40\xca\xfa\x42\xfc\x65\x39\xae\xb6\x20\x7e\x31\xf8\x9e\xfa\x8b\x64\xbc\x24\x39\xe5\x25\xc9\x15\x87\xe3\xfe\x45\x6b\x99\x70\x7b\x09\xdb\x00\x55\x35\x35\x33\xdf\xc7\x2f\xa8\x7d\xc6\xa8\xbe\xfa\xbd\x52\x9b\xde\xe8\x1b\x56\xb2\x83\xf6\xc6\xdd\x3e\xdf\x81\xe6\xe0\x60\x99\xe5\x4f\xed\xb5\x4c\x4d\xe7\x50\x03\x0c\xee\xa7\x1e\xa6\x06\x2e\x69\x92\xff\xa2\x54\xe3\x70\xdc\x8d\xd8\x3d\xe6\x9e\xf6\x45\xc2\x7b\xe8\xae\xa6\xcd\x82\x1d\x71\xac\x5a\x17\x1e\x76\x95\x58\x91\xc8\x5d\xed\x3b\xbb\x38\x99\x3d\xea\x36\x95\x57\xca\x6a\x3b\xfa\x22\xb3\x97\x39\x61\x79\x45\xf5\x98\xa9\x6b\xd0\xa7\x88\x66\x7c\x5e\xf2\x4b\xf6\x8e\x3e\x1d\x87\xe3\x6c\x27\x7e\x66\x1c\x6e\xb3\x57\x8c\x20\xb6\x8d\x17\xe4\xf5\xb1\xb2\x1a\xa2\x54\x11\x92\x52\xae\x49\xa6\xf9\xec\x2e\xaa\x13\x4b\xdd\x8c\x73\x6f\x08\xef\x1f\x3d\x9b\xf1\x58\xe0\x6d\x39\x33\xed\x23\x7f\x85\x41\x56\x4a\x24\x0f\x59\x7a\x44\x2a\x67\xad\xc1\xe1\x58\x6f\xc8\x51\xf4\xf8\xd6\xfb\x39\x0e\xb0\x63\xc3\xa3\xcc\x4b\x31\x82\xea\x6f\x6a\x4e\x70\x6a\xf9\xa2\xb4\xce\x8b\xb6\x45\x6b\x53\x0d\x5c\xbd\x72\x77\xca\x3b\xec\x73\x32\xac\xa4\x05\x16\x58\x9a\xbd\x64\x96\x81\xaf\xbc\x54\x1c\xb0\xf4\x9c\x44\xc9\xa9\xc1\xe1\x58\x38\x4a\x01\xcd\xa3\x15\x2a\xff\x04\x1d\x6e\x60\x97\x24\x44\xf3\xab\xd3\x0b\x17\x5e\x49\x2d\xcb\xcc\xcd\xbd\x70\xbc\x50\x95\x15\xe1\x02\xe7\xe4\x68\x18\x76\x5f\x34\x85\xe9\xf3\xcc\x7f\x2b\x2b\x53\x8b\x0c\x36\xcb\x57\x4b\xa9\x4b\xaf\x24\x8f\xf2\x7e\xe3\x70\x4c\x57\x6a\x26\xb5\xa6\xd5\xb5\x56\x0c\x56\x37\x04\x56\x7e\x89\x5e\x56\x0d\x95\x9d\xbd\xb2\xb9\x2c\xbe\xa8\xe6\xfc\xed\xc2\xa0\xfc\x13\x2e\xba\x39\x21\x39\x76\x76\x1a\x4d\x70\xc6\x94\x79\xbb\x32\x5c\xe5\x69\xa0\x23\xeb\x91\x5b\x2c\xc5\x27\x47\xf0\x5f\xe1\x56\x33\xfe\x50\x7f\x50\x8d\x5a\xf5\x9a\x54\xe0\xe1\x06\xcb\xba\xd7\x51\x79\xd5\xa7\xab\x0f\x06\x35\x96\x1d\x2c\x07\xcf\xc7\x16\xea\x15\xbf\x3f\xdd\x9f\xb3\xb6\xc0\xde\x2e\x54\xb3\x2c\xfb\xa1\xb9\x52\xa9\xa3\x0e\x30\x58\x25\xf3\x4b\xa1\x2e\xcd\x4d\x7a\x2e\x50\xe0\x4e\x33\x38\x34\x1d\x12\xb7\x7f\x02\x18\xc0\x47\x77\x65\x00\xed\x91\x9b\x5b\xe3\x01\xc5\xe5\xab\x0d\xe6\x40\xa3\xd7\xa9\xaa\x29\x50\xc7\x49\x5c\x9a\x01\xb2\x6c\x66\x16\xf8\x40\x7b\xcc\x06\xb3\x0d\xe0\x79\xfa\x79\xea\x6e\x64\xbd\xb6\x8e\xca\x05\xdd\x85\xc3\x09\x56\x20\xb5\x24\xbb\x7e\x22\xec\x81\x3f\xd1\xe5\x0c\xeb\x44\x7c\x68\x35\x80\x9a\x2e\x1f\xaa\x7f\x05\xe5\x79\xed\xac\x52\x41\x9d\x4e\xd1\xa5\x01\xb0\x96\xf5\xb3\x82\x2d\x30\x6a\xd6\x92\xf5\x1b\xd9\xa0\xcf\x53\xe7\x20\xdf\xb4\xe7\xab\x76\xa0\x99\x38\x1c\xff\x0f\xd2\x42\xfc\xdc\x6f\x84\xcd\xc0\xaf\xed\xfc\x82\x52\x23\x6a\x5a\x86\xd0\xf9\x97\xb5\xea\x93\x90\x26\xaf\x19\x55\x2e\x48\x8e\xd3\xe9\xd2\x95\x48\xb3\x75\x47\xfe\x1d\x74\x86\x59\x7e\x56\x13\x7a\x55\x1f\xaf\x8e\xc4\x56\x68\xcf\x48\x7b\x83\x85\xe0\x70\xfc\x2e\x74\x06\x31\xb2\xcf\x93\x1a\x94\x58\xda\xb9\x83\x22\x88\xb8\xd2\xa2\x45\x6e\x0c\x68\xaa\xbb\x4f\xde\xec\x59\x59\x99\x4e\xaa\x72\x9a\x5f\x12\x44\x8a\xb7\x66\xe7\x1b\x92\x02\xcc\x64\x59\x1b\x48\xe1\xfa\x7e\xe9\x7d\xa4\x71\xed\x35\x69\xdb\x48\x7e\x38\x1c\x7f\x25\xfa\x92\xb8\xbd\xb7\x8d\x1d\x91\x18\xdd\xc1\x62\x99\x45\x18\x34\xfb\x32\xfe\x04\x10\xeb\x2c\xe8\xff\x3c\xd1\x4a\x1c\xdd\xc4\x71\xbc\xb8\x9d\xc6\xb6\x0e\xc8\xa3\xd0\xd6\x99\xc5\x67\x5e\xa5\x8e\xea\x7b\xa9\xbe\xd3\x36\x6a\x3b\x2a\x8d\x28\x0c\x1c\x8e\xb7\x9d\x88\xc3\x9e\xf7\xea\x0a\x3b\x12\xb7\xb5\x4f\x09\x36\x87\x3f\x6c\xaa\xe7\xb1\x02\x6c\x6a\xc5\x5c\x03\xcf\x63\x15\xbe\xec\x0f\x8e\x9a\x62\x3d\xd6\x33\xeb\xfd\xb9\xf7\x59\x2b\xcc\xce\x66\x14\x33\xa9\xfa\xe7\x55\x2b\x99\xf5\xda\xfc\xd4\x45\x34\x29\x0e\xc7\x35\x24\xcd\xc3\x36\xf7\x98\x28\x2e\x24\x84\xb4\xfd\x95\x3b\x84\x6f\x69\xbc\x21\xb5\xb8\xc4\xad\x49\x4f\xde\x73\x4e\x55\x7e\x59\xec\xef\xa8\x5b\xb4\x49\xd8\x71\xe4\x76\xce\xa8\x20\xd2\x6c\x9d\x46\xc5\x47\xf5\xfd\x95\xef\x78\x72\xed\x0f\x29\x72\xe6\x79\x1c\x8e\x3d\x4e\x0e\x45\xaf\x75\xcb\xb2\xcd\xe3\x73\xda\xbc\x32\x82\xc2\xdc\x1a\xd7\xa5\x67\xfb\xb7\x55\xbf\x48\x9b\x75\xf6\x71\x59\x96\x42\x7c\x2a\xba\xf0\xa2\xfc\xca\x11\xd7\x1c\x6d\xa9\xd2\xb4\x43\x3d\x2c\x59\xaf\x6f\xab\xd4\x11\xb5\xe9\xe8\xcb\x21\x76\x11\x0e\xc7\x7a\x48\x61\x21\x65\xdd\xcb\xca\xac\xe2\xa6\x5a\x1f\x14\x4d\x84\x8a\x1a\x32\xf2\x93\xfd\xa7\x57\xfb\xe6\x04\x9e\xdd\x54\xa6\x95\x19\x75\xf2\x66\x41\xa3\x7a\xea\xf0\x68\x76\xb0\x2a\xc2\x34\x5a\x6d\xa4\xa8\xd5\x3f\x90\x7a\x46\xe2\xa8\x73\x59\x26\xe2\x96\xe1\x70\x2c\x23\x6a\x20\x72\xb0\xeb\x41\x35\x3f\x2e\xa6\x55\x5d\xfe\x37\xf4\x40\x43\x58\x89\xd0\x2f\xbb\x7a\x43\xe1\x5e\x8f\xbe\xd2\x96\xbc\x15\x27\x19\x05\xd7\xb2\x0f\x1f\xce\xca\x5e\xa5\x29\x31\x3d\x9b\x7e\x43\xf9\x43\xdf\x41\xf1\x59\xda\xa9\xc3\x95\xad\xe7\x51\x71\x38\xe6\x0d\x6a\x36\x7c\xbd\x4b\xd3\x70\x36\x6e\x5e\xab\x7f\x4d\xd6\xd5\x17\x0d\x3b\x2a\xcd\xfc\xbc\xaa\x6e\x97\xd6\x79\xa0\xa5\xa1\x45\x5e\x27\xdd\x0a\x96\xe7\xa5\x1c\x26\x66\x55\x66\xed\x36\x75\x48\xf7\x57\x15\xea\xfb\x29\x20\xd9\x33\x9d\x01\x29\x97\xbf\x11\x87\x63\xfa\x50\x2b\xc1\xf9\x43\x03\x90\x73\xb4\x51\x3f\x01\x5a\x1e\x6c\xdc\x65\x0c\x96\x5f\xec\x6c\x69\x00\x8b\xdc\x97\xd6\x5b\x80\x0f\x8f\xb5\x56\xb6\x40\xb6\x07\xca\x4a\x6c\xa1\x7b\xbb\x74\xf2\xfa\x60\xf5\x06\x62\x56\x22\xd2\xa9\x75\x5e\xfd\x0e\x25\xe1\x70\xc2\x8d\xc8\x33\xe0\xc3\x50\x24\x52\x13\xbd\xb6\x7f\x23\x72\x3c\x78\x61\xe7\x28\xdc\x73\x31\xbb\xe5\x2a\xcc\x74\xfb\x5e\xf7\x02\x26\x1f\xcb\xac\x4c\x80\xab\x0e\x48\x8b\xff\x21\x6b\x76\xe1\xf2\xd2\x90\x82\x0d\x21\x59\x2e\xa8\x48\xcb\x53\xdd\x84\x3e\xc3\xe1\x84\xd3\x91\x29\xa0\x6a\x68\x2d\xf1\x78\xf4\xea\xbe\x1a\x2c\xf5\xca\xf3\xce\x44\x6c\xf6\x45\x72\xcb\x42\x94\xef\x76\xaf\x4e\x80\x7a\x1f\x63\x55\x6e\x44\x2f\x1c\x40\x8a\xf3\x51\xb1\xf1\xa7\x3c\x7f\xf4\xdb\x06\xcf\x2c\x1d\xac\x42\xeb\x84\x1a\xc4\x92\x71\x38\x41\x1b\xaa\x0f\x84\xde\xb0\xa3\x85\x45\xb5\xf7\xbe\xa5\x46\x5e\x51\x77\xa4\x51\xa0\x8b\x0e\xcd\xb6\xe4\x5e\x37\x75\xed\x10\xf9\xd4\xb1\xb3\x15\x3e\xa4\x3f\x07\x3c\x8a\xa6\x48\x53\xc6\x4f\x72\xeb\x48\xbf\x37\x9c\xca\x3c\x47\x16\x69\x5d\x4a\xcf\x26\x5d\xc6\xe1\x04\xd3\xb1\x19\x00\x71\x50\xcd\x31\x8c\xea\xe8\xb5\x61\x8d\x5c\x11\xb7\x3f\x67\x26\x5d\xdc\xd7\xc4\x65\x50\xdc\x24\xb5\x9b\xe8\x05\xc7\x4e\x96\x17\xd0\xa7\x1d\x70\x2c\xda\x4d\x13\x19\xdf\xcf\xf9\x48\x0b\xd9\x70\x26\x23\x82\xf6\x45\x4b\xae\x12\x51\x7c\x71\x38\xfe\x4c\xe2\x12\xc0\xe1\xfa\x67\xd1\xce\x28\x55\x0f\x5f\x40\xbf\x42\x6c\xdf\xc3\xfb\x72\xd1\xa0\x71\x82\x4b\x72\x63\xd4\x44\x71\x1c\x8f\x1d\x2c\xfb\xc6\xb6\x3d\x60\x57\x18\xc7\x42\x8c\x27\x72\xd6\xb3\x36\x6c\x08\xd4\xc4\xb2\x76\x6b\x3d\x4e\x0b\xa2\x1d\xc6\xe1\xb8\x1f\x49\x4b\x09\xc5\x03\x8f\x15\x71\x51\xcb\xba\x31\xb9\x6b\xd0\xbf\x36\x7d\xa9\xf5\x85\x8c\x86\xae\x64\x6b\x37\xed\x6a\x0f\x31\xec\x70\xaf\x74\x58\xf8\xf9\xc0\xac\x02\x47\x41\xa7\x71\x77\xd6\x2b\x81\xf1\x06\x96\x5a\x9f\x17\xbf\xd0\x23\x75\x8c\xd1\x8d\xc3\x71\x92\xc8\x51\x84\xc5\x03\x2b\xb3\x3a\xaf\xc5\x75\x15\x69\xbe\x04\xf9\xb4\x1e\x4d\xb7\xbe\x30\xbf\x7e\x4a\x59\xea\x4a\xa8\x8a\x52\x5c\x76\xf0\x2f\x79\x2b\x0f\xd8\x9f\x9f\xef\x23\x9d\x34\x16\x65\xfe\x94\xcc\xda\x20\x4c\x5f\x2f\x9a\xbf\x30\x4b\x21\x63\x3d\xc0\xe1\xd8\x14\x4a\x14\xbe\xba\xff\x72\xa9\xe1\xb5\x79\x5d\xf3\x0a\x6f\x05\x4e\xb6\x68\xf2\x34\xe7\xa9\xf5\xe6\xd9\x12\x97\x2f\x95\x65\x19\x13\x47\xbf\x97\xec\x54\x0b\xf7\x07\xe7\xc9\xd2\xba\x8d\xa1\xcc\xad\x29\x1d\x1b\xea\x55\x07\x93\xd7\x2c\xfc\x99\x92\xc2\x51\xe3\x70\xac\x36\xea\x26\x7c\x60\xff\x96\x2a\xcb\xc8\x9c\xce\xda\xb2\xcc\xc0\x8c\x96\x73\xc5\x5e\xe7\x1d\xea\x1e\x17\x18\xb8\x54\x56\x9e\xcd\x3d\x75\xb4\xa7\x78\x30\xcb\x7e\xbf\x53\x9e\x95\x9a\x66\x9c\x90\x51\x95\x9a\xb3\xe1\x6e\x5a\x9f\xc4\x7f\x91\x49\xca\x7a\xee\x79\x1c\x8e\x15\x44\x3d\x87\x5f\xd5\x77\xbf\xae\x3c\xd2\xa9\x33\xa0\xea\x47\x60\x64\xcb\xf4\xf2\x8c\xf3\xcb\xeb\x48\x25\x17\x5d\x28\x15\xef\x0a\x26\x8f\xe6\x17\x5f\xca\x5d\xbe\xdf\x21\xb7\x27\x43\x63\x8c\x66\x98\xa6\x2d\xd5\x5b\x92\x66\x23\xf5\x5d\x04\xc8\x19\xdc\x49\x1c\x8e\xf9\x93\x7a\xf9\x97\x37\x64\x03\x2e\x7b\xe5\x03\x79\x81\xc7\xef\x3c\x80\x62\x41\x66\xf7\x4b\x28\x05\x6c\xaf\xdc\x0c\xf1\xc1\x04\x55\x1a\xf4\x0e\x8a\x62\xfe\x81\x97\x40\x03\xd1\x42\xf8\x20\xbc\xc1\xd3\x03\x0e\x87\xe3\xf7\xc1\xb0\x12\xee\x59\x1c\x00\x7f\x83\x07\x7f\xc2\xa0\x1a\xc5\x5e\xc2\x60\x3b\xba\x67\xfc\x07\xf8\x12\xf9\xd7\xbd\x16\x5a\x85\x0c\x55\x9c\x85\xf4\x90\x6b\x69\xef\x20\x1e\x32\xc2\x3c\x0e\x35\x23\x8f\xa3\x3e\x41\xff\x90\x89\x73\xe5\xb0\x0d\x32\x6a\xf5\x13\x26\x22\x3d\x3a\x8f\xe1\x0f\x48\xe2\x0f\x22\xb8\x99\x7c\xf7\x05\x0d\xb4\x27\x5b\x8d\x2f\x02\xfd\x48\xf2\xae\x63\xa0\x94\xf8\xac\x1c\x00\x7b\x88\x57\xd3\x6c\x20\x23\xe2\x39\x86\x0c\xba\x44\x5c\x1c\x75\x19\x2a\xc3\xea\xcf\xcd\x86\x67\x61\x3e\x56\x28\x7c\x06\xfd\xae\x13\x0e\x77\xa0\xce\xdf\xc8\x80\x17\xa7\xee\x19\x13\x80\xd9\xd7\x46\x0d\x00\x0d\x4b\xbb\x03\x02\xc6\x18\xdd\xa5\xb7\x41\x5d\xba\x38\xf5\x15\x78\x8e\x96\x49\x3f\x0d\xa6\x51\x1b\xae\x05\x43\x0b\x28\x35\x67\x57\x42\x71\xe4\x5c\xcb\x6a\xe8\x06\x29\x59\xfb\x13\x6c\x45\x34\xfe\xd2\x41\x08\x93\x84\x3d\x9d\x20\xa4\x26\x79\x0d\x1f\x23\xdc\x14\x39\xb4\x15\x01\xb3\x05\xc7\x4b\x96\x00\xc7\x78\x01\x0a\x47\x80\xc3\xc9\xa7\x3e\x02\x9e\xb0\x3e\x46\xda\x81\xde\xcc\x2d\x1e\xbb\xc0\xdb\x74\x17\xcb\x15\x90\x09\x95\xab\xdd\x0c\x41\xe4\xad\x9f\x3a\xf1\xdd\xe9\x7d\x4f\x06\xf1\x1f\xd3\x66\xdd\x0a\x21\xe8\x2b\x76\xb4\x8c\x11\x5c\x65\xd1\x45\x2e\x04\x46\x72\xa7\xbc\x98\x70\x4f\x6c\x49\x49\x04\xcc\x05\xca\x88\x2d\x40\x39\xf7\xdb\x99\x13\xe0\x5e\xb6\xb3\x05\x13\xe4\x30\x6e\x68\x17\x80\xf5\xd4\x85\x1f\xec\xf1\xeb\xcb\xb0\x47\xa1\x78\x9b\x22\xc9\x8d\x07\xf8\x80\xbc\x92\xa6\x4b\x78\x4e\x56\x7b\xfe\x37\x7c\x9f\x7a\x44\x4a\x23\xac\x52\xbe\x25\x71\x09\x09\xf2\x97\x61\x1c\xc2\xa7\xe4\x9b\xee\x2b\x81\x48\x61\xa7\xf9\x5d\xa0\x85\x67\xad\x9d\x0d\xf4\xd3\x6b\xde\xf6\x25\x4e\x76\x0c\xdc\x1f\x4d\xfc\xd9\x2c\xb9\x1e\x87\x9f\x57\xc7\x6e\x98\x8d\xdf\x59\xe9\x9b\x5b\x8e\xf7\x2f\xd9\x98\x1c\x86\xcf\xcb\xeb\xc5\x8a\x08\xf3\x33\x8f\x5f\xfd\x41\x00\xd2\x8a\x5c\x27\x09\xef\xe4\x7b\xcc\x37\x02\x96\x49\x23\xda\x62\xc0\x94\xb5\xef\x35\x15\x6f\x38\xfa\xe5\x5e\x03\x7e\xdd\xd0\x83\x7e\x5b\xfc\xf2\xbe\xbc\xda\xbb\xf8\x9d\x1d\x5e\xd9\x69\x78\x8f\xc6\x09\x31\x84\x17\x54\x5b\x23\xdf\xf1\x53\x25\x21\x21\x0c\x82\x49\xee\x3e\x97\xdf\x04\xb2\x1a\xdc\x2b\x25\x0c\x29\xcc\xb4\x05\x84\x36\xce\xc9\x57\x4d\xf8\xed\x0f\x81\xbb\x77\xf1\x46\x77\x56\xf4\xf9\xe2\xd7\xdd\x02\x6a\x7e\xe2\xb7\xf7\xe7\x64\xf5\xe1\x1d\x3b\x52\x45\xe5\x78\xa4\x31\x14\x39\x81\xef\xab\xfc\x16\xfc\x81\x30\xad\xf0\xaf\x4b\x29\xc1\x36\xab\x6c\x6f\x14\x81\xab\x14\x6a\xd7\x13\x62\x38\x7f\x5e\xad\xc3\x9b\x3c\x3f\x7e\x77\x1b\x7e\xcb\x23\xa8\xb7\x1a\xbf\xec\x0e\xbd\xc6\x1d\xbf\xf2\xd6\xc9\x2c\x03\xbc\x71\x5f\x9b\x48\x1f\x7f\xa6\x7d\x21\xdc\x8f\x97\xd4\xcf\x0a\x06\xf0\x0d\x65\xc7\x5c\xf8\xf8\xa7\x79\x76\x7b\x13\x08\xbb\x54\x9b\x75\xb6\xe2\x3f\x71\x6d\xbe\x88\x51\x10\xb0\x9e\xd2\x42\x0f\x00\xc1\xc3\x3f\x90\xbf\x40\x5e\x3b\x88\x8c\x01\xef\x4a\xe7\x21\x19\xc0\x87\x54\x7d\x44\x01\x8e\xd3\x9e\x21\x00\xe4\x7e\x6d\x26\xe2\x0b\x75\x9c\xb5\x45\x8e\xc3\xfb\xad\x66\x21\xfb\xe0\x62\x1d\x1a\x72\x0e\xbe\xfb\xb9\x16\x19\x43\xf8\x4f\xcd\x11\x35\xe2\x32\xbc\x1e\x89\x45\x8c\xda\x4a\x11\x4f\x64\x66\x89\x0d\x62\x06\x8f\x29\xf0\x88\x05\xb2\x93\xb6\x13\xd1\x43\xce\x47\x92\x91\x35\x08\xc1\x23\x05\x59\x86\x24\x59\x92\x91\xe5\x48\xa9\xce\x4c\xc4\x12\xa1\x7d\xea\x45\x5c\x49\x0f\x26\x1d\x10\x3d\x92\xc7\xed\xfd\xf0\x7b\x62\x4f\xeb\x04\x3c\x49\xdc\x5d\x1c\x07\xdf\xc0\x7a\x53\xba\xe1\x5b\x58\x1d\x95\x0e\xb7\x63\x82\x88\xcf\xf0\x30\xe6\xe5\xb1\x16\xbe\x87\xad\xb2\x5c\x00\xbf\x40\x27\xb4\x0b\x11\x1d\xd4\xeb\xc3\x2b\x38\x8e\xad\x79\x1c\x0e\x9f\x64\x01\x37\x83\x61\x43\xe6\xae\x16\x23\x78\x25\x63\x5a\xe1\x33\x78\x09\xed\xb9\x3c\x18\x9e\x4f\x5b\x41\x39\x09\x2f\xa3\x1e\x0c\xff\x06\x9b\x50\xdc\xce\x18\xc2\x2e\x64\x5f\x0b\x5f\x38\x88\x84\xd7\xf6\x84\x99\x44\xb3\xf7\xc6\x50\x55\xb2\xf6\xc3\x66\x88\x21\x36\xbe\x21\x83\x42\x84\x36\x4d\xc1\xd0\x59\xfe\xe5\x82\xbd\x90\x0b\x57\x2e\x7d\x0a\xb9\x72\xa6\x91\x3e\x43\x7e\x2c\xff\xb0\x51\x88\xcd\x28\x73\xb7\x85\x1a\xe8\x33\xcc\xbb\xa0\xdb\xd4\x6b\xda\xdb\xa1\x47\xe4\x4d\x6f\x8f\x41\xb3\x55\x4e\xf7\x3b\xc1\x67\xa9\xd5\xd7\xfb\xc0\x21\xf9\x9f\x06\x05\x58\x26\x0d\xc8\x8b\x01\xb3\x92\x86\x25\xce\x60\xbe\x28\x94\x28\x00\xeb\xf9\x9f\x43\xdb\xc0\xb7\xdc\x08\xb7\x68\x68\x3d\xeb\xa3\xb9\x33\x64\xcc\xc8\xd3\x36\x83\xd6\x50\xfe\xbd\x6a\x05\x7d\x4a\x4a\xef\x5d\x04\xf7\x15\x7c\xef\x3f\x04\xae\xcc\x3d\x58\xb7\x03\xf8\x94\x19\x9f\xb3\x03\x78\x9c\x5e\x9c\x64\x02\xbc\x48\x7d\x8f\x96\x81\xd3\xe5\xab\xaf\x5a\x82\x3b\x93\x77\xbb\xba\x83\x67\x85\x9e\x7b\x2b\xc0\xf3\xbc\x25\xda\x67\xc0\xb5\xf4\xcc\x17\x07\x40\xab\xb6\xcc\xf1\xeb\xc0\xb7\xc6\xac\x9e\x1b\x40\x4b\x4d\x7f\xf5\x0d\x40\x50\xde\x97\xf9\x06\x88\x2d\xaa\x10\xad\x01\xf0\xb9\x02\x78\x04\xe0\x67\x1c\x0d\xce\x07\xca\x95\x2f\x5c\xb6\x02\x23\xb2\xc2\xbd\x3a\xc0\x60\x52\x92\xb6\x3b\x40\x60\xad\x7a\xa6\x05\x5e\x1d\x0e\x1b\xad\x02\x57\x0c\xa6\x74\x15\x01\x9d\x3d\xd9\x95\xe5\x00\xb3\x8d\xa2\x99\x02\x02\x1a\x0e\x08\x2c\x00\xaf\xca\x51\x68\x27\x10\x54\xbc\xff\x8a\x03\x10\x98\xe3\x7a\xda\x16\x88\x48\x1f\xdb\x43\x05\x82\x52\xea\xb5\xbd\x80\xb9\x9c\x35\x53\xf6\x60\xec\xc4\x9b\x91\x09\x70\xd3\x68\x43\xe7\x4d\xa0\x6f\xc8\xbb\x62\x0c\xa0\xf6\xd6\x69\x96\x00\x9e\x6d\x93\xfc\x28\xc0\xbe\xfe\x0d\x88\x00\x27\x2b\xca\x83\xca\x01\xab\xc2\x85\xce\xdf\x81\x9d\x59\x33\xf7\xf8\x00\x86\xca\x05\xda\x20\xa1\x86\xd3\xfe\xb4\x00\x24\x3c\x4d\x1b\xd9\x07\x6e\x78\xb0\xac\x73\x27\xd0\x38\xe6\x52\x61\x06\x5c\x1b\x3a\xa6\x4e\x00\x2c\x7a\xbe\xf3\x9e\x00\xab\x5b\x01\x70\x0e\xb0\xa4\xb6\x2a\xe8\x24\xe1\x7d\xa9\x9b\xf3\x0d\xc2\x50\x2e\x65\xcf\x65\x42\x47\x9a\x58\xfb\x21\xc1\x9c\x3b\xef\x5d\x11\x69\x84\x70\xea\x21\x9b\x64\x4d\x48\xbe\x71\x93\x58\x4e\xb8\xd9\x34\x4e\xb4\x03\x70\x05\x1d\xd8\x3d\xc0\x5b\x16\x88\x51\x40\x63\x32\x0f\xdb\x04\x76\x86\xdb\xa3\x2d\xd0\x45\xf7\xfb\xe8\x25\xe8\xa3\x85\x1b\xba\x16\xa6\x68\xfb\xa2\xcb\xe0\x9b\x6f\x47\x49\x7b\x61\xd6\x83\x4a\x62\x21\x1c\x73\x63\x1e\x71\x3b\xec\xd1\xa4\x8d\xf5\xc0\x3b\x0a\x66\x60\x61\xb0\xa9\xb4\x1a\xdb\x04\x73\x48\x8f\xd0\x6e\x78\x24\xac\x1d\x45\x91\x25\xee\x21\xe8\x5e\xc4\xc1\x7c\x18\xf9\x8d\xd0\x16\xfd\x41\xbe\x21\xc0\x9b\x37\x44\x25\xf1\xf9\xfd\x09\xe2\x66\x62\xe4\xa0\x11\x96\x43\x9c\xd1\xb8\x0f\x3b\x83\x01\xf9\x07\xb1\x39\xd8\x66\xe9\x32\xb4\x1e\xd3\x21\x1d\x41\xa3\xb1\x85\x61\x16\xe8\x01\xf4\x8d\xdb\x7d\xe4\x2f\xda\x65\x7e\x15\xb9\x81\x96\x2d\xaa\x40\x6e\xa0\xc7\x5f\xaf\xc0\x2a\x58\x49\x13\xcb\x31\x6b\x26\x6b\x20\x14\x1d\x67\x9c\xae\x97\xa1\x24\xfa\xfe\xdc\x62\xf4\x28\x6d\x5f\xb2\x06\x9d\x4e\x8d\x21\x4e\x43\xba\x28\x55\xa1\x7b\x11\x15\xf9\x91\xeb\x27\x04\x24\xcf\xdb\xdb\x8c\xb8\x93\x9c\x16\x5d\x40\x4e\x13\x97\xbd\x3c\x8f\x19\x89\xab\xee\x06\xa2\xe9\xa2\xd9\x7d\xf9\xa8\x99\xe0\x60\xed\x6b\xe4\x16\x0f\xcc\x59\x85\xb0\x39\xfd\x49\x16\x88\x33\xfb\x04\xda\x8c\xac\x65\xf6\x5c\xdd\x0e\xff\x61\x98\xb9\xae\x87\x27\x69\x9a\xbd\x87\xe0\x6a\xaa\xf5\x22\x27\x38\x85\xf4\xf3\x39\x03\x25\x29\x47\xc7\x89\xe8\x02\x45\x68\xcf\x2b\xa4\x48\x36\x50\x63\x88\xd8\x48\xdc\xb3\x2e\xc3\x6f\xc5\x4f\x44\xf9\x70\x99\x30\x09\x09\x82\x29\x7c\x9b\x90\x35\x70\x00\xe7\x9e\xcb\x39\xd8\x81\x45\xde\x33\x00\xaf\x64\x24\x2c\xba\x08\x8d\x51\xae\x4f\xcd\x43\xba\x8b\x1e\x8f\x2e\x45\x7c\xf3\x3d\xba\x2e\xc2\x7f\xb2\x3b\x2b\xeb\x61\x4a\xc6\x96\x8c\xf5\xf0\x4e\x15\x2c\x10\x40\x9f\x14\xcf\x21\x0e\xd4\x2b\x3b\x78\x45\x0e\x65\x24\x91\x4f\xdb\x43\x44\xc1\xe3\x3d\xd6\x90\x3d\xf7\xfe\x22\x11\x38\x4a\x0f\x7d\x12\x8b\xd4\xb6\xe0\x6f\xd3\x10\xfd\xfa\xd2\xf6\x57\x70\x41\xf5\xac\xf2\x0b\xf0\xf6\xb2\x5d\xe9\x93\x50\x5b\xa1\x2d\x0f\x83\x28\x39\xae\x40\x35\xe4\xad\x39\x18\xb4\x0c\xda\xa5\x5c\xed\xac\x07\xcd\x94\x6d\x34\x53\x81\xd5\x49\x6e\x8b\xd4\xe0\x2e\xe6\xc0\xa3\x33\xc8\xbd\x9b\x13\x37\xe3\x90\xc3\x03\xce\xad\x77\xe1\xbc\x2e\x45\xa9\x33\xbc\xae\xa5\x28\xed\x39\x54\x50\x27\xe4\xe4\x41\x7e\x15\x01\x84\x95\x90\x61\xd1\xec\xcb\xd5\xe0\xa3\xec\x20\x27\x2b\x30\x2d\xdd\xc2\x6c\x25\x78\x3a\xe5\xc0\xa2\x1c\xa0\x8a\xdd\xfc\x90\x8b\xbc\xbe\x7b\x76\x28\x13\x39\x39\xec\xdd\x3a\x03\x2e\x18\xdc\x5d\x12\x0b\x2f\xef\xee\x4d\x5b\x09\x29\x5b\x37\xb3\x9f\x41\xc7\xeb\x02\xf1\x61\xd0\xbc\xf2\xf0\xcb\x46\x60\x79\xc1\x3a\xc7\xe7\xa0\x5f\xa6\xaf\xe9\x5b\x50\x27\x35\x61\x51\x1f\x10\xc4\x09\x7c\x38\x1d\xf9\xf4\xf8\xd5\xd0\x22\xc4\xe1\x9e\xb4\xc5\x1f\x56\x8e\x68\x17\x0f\xc1\xd3\x07\x0f\x2b\x09\x10\xd8\x6d\xc0\xf6\x84\xd6\x34\x3f\x4b\xfc\x0c\x0e\xd6\x5c\x0e\xe8\x06\xaf\x96\x5c\x72\x6c\x04\x67\xe7\xf4\x9a\x7e\x02\x0a\x94\x5f\xb5\x77\x10\x9e\x70\x72\x9f\x74\x33\x55\x89\xcd\xc3\x2e\x0c\x2e\x7e\x7b\x27\x93\x7e\x1e\x8f\x54\x9a\xd1\xf0\xf8\x61\xcd\x08\x35\x87\x70\x58\x10\x45\x69\x23\x7c\x82\xa2\xc8\x8f\x80\xfa\x2b\x7e\xa4\xdf\x20\xdd\xf9\x37\x49\x0f\x72\x36\x0b\x26\xc6\xc1\xba\x5a\x2a\xe2\x5e\x98\xf5\xf8\x33\x73\x09\x38\x78\x1b\x63\xcc\x01\xef\x76\x34\xd3\x26\xc1\x27\x15\x11\xb4\xf9\xe0\x53\xcd\x1a\xaa\x1d\xf8\x8b\xdf\x49\xf1\x87\x2e\x81\xa3\x64\x11\x34\x10\x34\x4a\x6a\x86\xcd\x9d\xa3\x89\xdf\x60\x99\xe9\x0f\xa2\x17\xb2\x44\xcb\x93\xb8\x11\xd9\xf2\x78\x15\x83\x86\xcd\xba\x55\x40\x27\xa1\xe5\xed\xef\x69\x61\x68\x44\x79\x16\x35\x05\x5d\xaf\xf6\xa2\x4c\x20\x53\xfc\xa5\x14\x2d\xe4\x1d\x78\x90\x6c\x8b\xce\x0d\x72\x24\x61\xa8\x8e\xd3\x57\x62\x1f\xba\xd4\x54\x4e\xb4\x40\xad\xb4\xf4\xb0\xbf\xc8\xb3\x87\x02\x7a\x22\xa3\xe0\xa6\x09\x8d\x41\x6f\x6a\xc3\x53\x21\x5a\x7d\x99\x2d\xa5\x81\x7a\x3d\x7d\x31\x65\x36\xe5\x0b\xf7\x39\xf9\x28\xc5\x15\x30\x25\x71\xc8\x55\x81\x4e\xc4\xf7\xa4\x7f\x4e\xba\x44\x77\x92\xa3\xe9\x1c\xac\x8b\x78\x7b\xc1\x0b\x0c\xc3\xd4\xf7\x9b\x69\x6f\x85\xde\x37\x64\xd4\x27\xfc\x47\x2d\x75\x94\x57\x3c\xd7\x12\x31\x45\x9f\xd3\x98\x86\x27\x07\xb3\x0f\x72\xa2\x48\x65\xcc\x67\xf8\x29\xd2\x2c\x86\xe8\xf2\x49\xa2\x37\xdd\xcc\xf1\x0c\x56\x43\x1d\xdf\x2d\xc7\x0c\x28\xfd\x0b\xbe\xa3\x1d\xa4\xa8\x7b\x6f\x68\x97\x15\xd3\xae\xab\xa8\x11\xb2\xeb\x4d\x3f\x29\x09\x12\xa4\xe8\x09\x39\x23\xe9\x60\xea\x03\xd2\x23\xd1\x1c\xd6\x0f\x92\x31\xff\x63\xa2\x9c\x48\xe1\x8e\x07\x38\x60\x83\xec\xda\x53\x1a\x4c\x8f\x99\xbf\x7b\x0f\x4a\x62\xcc\xd4\x5a\x8e\xfc\xa5\xec\xbd\x23\xa2\xd6\xe5\x5f\xea\x0f\xa4\xb4\xe6\x18\x36\x20\xe4\xc1\x8c\xa7\x05\x28\xe9\x73\x3a\x35\x45\x49\x32\x52\x1a\x32\xde\x10\x63\xe4\x13\xf1\x37\xb1\x01\x09\xd9\xff\x31\xa6\x2d\xde\x71\x52\x83\x9e\xe7\xbf\x31\x69\x41\xf2\xb9\x61\x5a\x81\xf0\x17\x5a\xc9\xe8\x47\x6a\x56\xc3\xde\x9e\x5a\x8a\xac\xba\xa7\x4e\x97\x4c\x29\x47\xf3\x76\x92\x52\x8a\x7e\xc9\x82\x89\x1d\x79\x01\xb4\xc7\xc4\xf9\x99\xb7\xe3\x66\x63\x17\xd2\x8d\xfc\xae\xa2\xa9\x0a\xf0\x04\x1f\x79\x20\xd5\x32\xd9\x88\xac\x17\xd7\x69\xc5\xc1\xb6\x8c\xb7\xc3\x8f\xa9\x95\xd7\x97\x77\x75\x53\x24\xdd\x2f\xaa\xff\x90\x91\x36\x59\x8e\x01\x89\xde\x38\x43\x42\x26\x66\x54\x3b\x50\x37\x62\xe3\xa5\xd4\x98\x38\x6c\x7d\x7e\xba\xef\x26\xd4\x31\x53\x79\x5c\x81\x90\x54\x0b\x77\x25\xc1\x95\x72\x03\x2d\x14\x6a\x63\x75\xdc\xfe\x4b\xbd\x39\x72\xbc\xf3\x35\x25\xf3\x46\x75\xf5\x6a\x32\xd2\xfb\x23\xfb\x14\x09\x69\x7f\x91\x5c\x4f\x14\x34\xe6\x50\x2e\x63\x8d\xd5\x7e\xd1\x43\xe8\xf7\x92\xb7\x3e\x32\x54\x2f\xef\xf4\xf1\xc3\xc8\xa9\x8c\x1d\xbb\x42\xe0\x38\x85\xa5\x56\x36\x14\xce\x0e\xbc\x7d\x8a\x3a\x35\x91\xd1\x69\x45\xc9\x19\xed\xaa\x0a\x22\x47\x0d\x15\x66\x65\x90\xae\xf4\xed\x4f\xde\x44\x0c\x6f\x67\x92\xef\x60\xac\x86\x9e\x68\x6f\xb4\xb6\x72\xd4\xe7\x30\x32\x5a\x94\x72\x7c\x31\xfc\x35\xdb\x63\x57\x08\xbc\x34\x35\x5d\xeb\x2f\xf8\x8e\x9d\x3f\xaa\x23\x34\x4a\xc8\xee\x89\xe7\x07\x25\xae\xac\x5b\xcf\x6d\x4e\xc4\xe7\x09\x39\xae\x89\x4f\xe4\x0b\x58\x6f\xf1\x61\xf4\x74\x26\x4a\x30\x8e\x2b\x65\x2c\x07\xe6\xfa\x55\xd2\x4a\x81\x89\x13\xa1\xd4\x8b\x60\x99\xf1\x6b\x4a\x00\x94\x35\x2f\x9d\x5c\x04\xdb\x8f\x78\x09\x68\x00\xa1\xbb\x9c\x37\x05\xc8\x6a\xdd\xb9\x67\x81\x92\xdc\x71\xf6\x47\x60\x48\xe6\xcb\x92\x80\x0b\xe9\xb3\x99\xe6\x20\x18\xb7\x85\x3e\x0e\xfe\xf6\x33\xa1\xd1\xa0\x84\xe3\x4f\xa9\xc7\xa1\xcf\xc6\x18\xc5\x1b\x16\xcf\x73\x27\xe7\xc2\x1d\xc3\x0a\xfe\x5b\x24\xae\xeb\x25\x2f\x04\x39\x5a\x43\xe2\xbc\x47\x16\xe7\xae\x63\xf3\xe1\x27\xd2\x0a\xd6\x21\x78\x90\x16\xc8\x98\x82\xdf\xc4\x26\xd3\x05\xc8\x3a\xdf\x1a\xda\x49\xe4\xc8\xf1\x04\xaa\x2e\x72\xc9\xd8\x92\xb2\x1b\xa9\x9c\xb7\x87\x0c\x23\x31\xb7\x7e\xf1\x67\xd2\xa4\x9d\x57\xb8\x42\xea\x8d\x6a\x3d\xce\x36\xca\xdf\xec\x3a\xd6\x30\x65\xbf\x24\x90\xc9\x26\x73\xa9\x7b\x18\x87\xc8\x3a\x31\x0c\xda\x67\x92\xd2\xa7\x95\xda\x4e\x5a\x7c\xac\x88\xa2\x26\xb2\x76\x36\x92\x1b\x89\x67\xe6\xe9\x93\x7e\x62\x4b\x6f\x9e\xe3\xb9\xf3\x17\xb5\xdf\xe5\x4c\x71\x1b\x2b\xb9\x6c\x2a\xc7\x33\xeb\x00\xcb\x94\xf5\x35\xe9\x0f\xe3\x15\x33\x93\xfc\x82\x9e\xc5\x40\xa3\x03\x69\x57\xe9\xfe\x17\x6f\x52\x4d\x69\xc6\xc7\xe6\x51\x16\x52\x17\xed\x0c\x21\xaf\xa3\x9c\x9a\x77\x8a\x64\x49\xec\xbf\xd1\xc1\x1d\x91\xf9\xb7\xed\xe1\x5c\x96\x78\x94\xff\x64\x4f\x4f\xb2\xcb\xa8\x60\x66\x89\xf6\x8a\xd9\x0c\x6f\xc1\x5e\x92\x8c\xbe\x81\x77\x21\xca\x9a\xfa\x9c\x43\xb9\x70\x8f\xa2\x61\xc9\x1c\xae\x90\x63\x19\xc3\x3b\x57\x91\x62\xe9\xac\x79\x08\x31\x92\x0c\x5d\xf7\xe1\x9a\xe7\xcc\x6c\x9e\x60\xf7\x67\x2e\x2d\x4d\x63\x05\xa9\x57\xaa\x13\x98\xd3\x95\xff\x84\xf1\xf4\xfc\x94\x17\x58\x29\x2d\x5c\xfa\x26\x32\x89\x6a\x9e\xf4\xe2\xbc\x98\xfc\x4e\x38\x7c\xf4\x1a\xa9\x9a\xf7\x6d\x47\x0a\x51\xcd\x9d\x3d\xaf\x01\x0b\xa7\x0e\xf5\xcf\xe4\xee\xae\x59\xdd\x08\xb0\x33\x2b\xd6\x14\xbb\xb0\x0c\x4a\x74\x54\x87\x19\x65\xf9\x93\x7c\x5f\xba\x73\x76\x0e\xd2\x41\x9b\xab\x49\x0c\x9f\xa4\xf4\xa5\x59\x7a\x1f\x22\xc3\xf2\x0f\xf6\x61\xa4\x03\x12\xdc\x8e\xf9\x44\x1d\xd1\xdf\x79\x37\xd1\x52\xfa\x54\xcf\x08\xd7\xb7\xe7\x50\xfd\x15\x76\x73\x7b\x6c\xa1\x05\x6b\x57\x13\x5e\x69\xce\x28\xa8\x3d\xc1\x8d\xa6\xef\x2b\xff\x09\xfd\xa6\x3e\x28\xca\x0f\x73\xa6\xf0\x73\x1d\x3c\x5f\x93\x2d\x34\xb7\xec\x42\x89\xcf\x95\xbf\xb7\xc7\x63\xd9\xd2\x47\xf3\xee\xa3\x06\x4c\x45\xf7\x37\x6e\xe8\xd0\x96\x3a\x84\x3d\xd8\xf7\xae\xc0\x91\x65\xde\xc9\x4c\x3d\xc3\xc8\x6b\x7e\xc1\x49\xa3\x1b\xd7\xad\x87\xac\xa8\x5d\x15\x2e\xa1\xe9\x94\x88\xa2\x60\x4f\x1f\xf2\xc2\x9c\x38\xbb\xd9\xc4\x0a\xf5\xfd\xed\xc7\xb0\x60\x79\xcb\xfc\x59\xc8\x4d\xd6\xbe\x6e\x3b\x6e\xc4\x98\x75\x6d\x27\x7b\xf0\x66\x4d\xbe\x80\xb5\xbb\xff\x9f\x22\x9d\x21\xeb\xfc\xc7\xfe\x4e\xd7\x69\x1e\x00\x55\xd4\x94\x5a\x7e\xe8\x46\x8a\x79\xb9\xe5\xb9\xdf\xa4\xde\x82\x2e\xdb\x41\x62\x60\x66\xd3\x76\x1b\x6c\xb6\x62\xf1\x7c\x0f\xe4\x2c\x8b\xd8\xe3\x2e\x37\x8c\x6f\xae\xf7\x92\x7c\x4b\xb0\x2d\x7c\x99\xd4\x99\x50\x9f\xb6\x5b\xd4\x9c\x78\x98\x27\x10\xb4\x25\x8e\x20\xbb\x78\xcd\xf8\x8c\xf0\x00\x4e\x13\x81\xea\xc5\x67\x0d\x01\xbe\x76\x67\x98\x33\x40\x4b\xa3\x7f\xf4\x26\xe8\xd4\x6c\x22\x6d\x35\x3c\xbf\x9b\x2c\x2b\x25\x04\xd6\xd1\x25\x62\x02\xab\x70\x73\x52\x38\xa1\x4d\x89\x8a\x22\x00\x1c\x77\x4a\x10\x0f\xb8\xc3\x0a\x1e\x09\x18\x0a\x9b\xe0\x70\x41\x6f\xaf\x15\xac\x02\x70\xca\xf6\x15\xe3\x1d\x14\x66\x94\x4f\x2f\x87\xb7\xcd\x0e\xa0\x2d\x87\x13\xbb\x72\x65\x76\xb0\x5e\x6d\xa5\x64\x2f\x8c\x2b\x38\x9b\xb4\x1c\xfa\x92\xda\x27\xda\x00\x4d\x72\x4f\x0a\x4c\xa0\xd7\xf0\x3c\x9e\x35\xbc\x3e\xcc\x9b\xe3\x0e\xfb\x7b\xa6\xb1\xf0\xb0\xd4\x96\xc1\x68\x87\x6f\x18\x5d\xa1\x73\x11\xdb\xd9\x0e\xd4\x17\xc8\xfc\xce\x93\x52\x06\xa5\xa7\xc6\x35\x99\x42\xd9\x9c\xaf\x25\x8e\x23\xc7\x2a\x30\x21\x91\x74\x87\xb3\x8c\x9f\x42\xf2\x00\x5f\x70\xcb\x88\x3f\x43\xbd\xd8\xfd\xc4\x82\x73\x4d\xcc\x7f\xc4\xa3\x36\x8f\x18\xce\xd8\x4b\xa3\x19\xf4\x35\xd8\x93\xd9\x47\xa8\x97\x50\x7a\xfb\x75\x49\x0f\xe7\x65\xf5\x9a\xa4\x5a\x76\x67\x6e\xb1\xa8\x95\xc5\x49\xb1\x10\x8c\x30\xcf\xb2\x1e\xf2\x3e\x31\xcc\x80\xeb\xdc\x95\xf4\x83\x57\x2f\xb1\x0f\xd3\x5c\xce\x3e\x64\x86\x52\x1d\x6c\x4e\xd1\xeb\x29\x17\x0d\xfb\x68\x31\xe4\xa7\xb3\xe9\x14\x15\x71\x4f\x9b\xbb\x64\x5d\x72\x5f\x65\x7c\xd2\xd6\xa4\x99\x39\x4e\x22\x43\xd1\x0e\xd9\x13\xc1\x41\xc1\x69\xa6\x8a\xe7\xcd\xc3\x08\xf9\x1c\x1a\xe7\x69\x48\x20\xab\x9a\xed\xe4\xf1\x8a\x71\x87\x29\xb2\x6e\xa3\x6f\x66\xac\x36\x54\x52\xdb\xe9\xe6\xb3\x1f\x93\xc7\x48\x37\x5b\x16\x25\xa7\x66\x14\x94\xc7\x8a\x85\xea\x45\x59\xeb\x85\xd2\xb4\x8b\x92\x5b\xfc\x34\x05\x8b\x5e\xcf\x2d\x95\x35\x26\x7e\x60\xdf\x95\xe8\x5c\x79\xc2\x9a\x27\xf6\x3d\xf3\x84\x61\x24\x90\x1e\x79\x40\x0b\xe2\xad\x33\x34\xa1\xbc\xe2\x34\xcd\xd9\x4c\xba\x4e\x9d\xde\x78\x2b\x39\xaa\x62\x71\xe9\x32\x71\x78\x89\x93\xe6\x83\xd0\xa7\x20\x2b\xa9\x85\x7f\x26\xe7\x16\xf5\x3a\xf7\x5c\xc6\xf7\x04\x43\x76\x62\xba\x51\x90\x0b\x53\x99\xea\xe1\x9e\x4f\xaf\x97\x25\x1e\x9e\xa2\xbe\x49\xd6\x36\x50\x51\xce\x88\x16\xcf\x31\x27\x69\xd3\x5e\xd6\xbf\x4d\xae\x69\x8f\x2d\x3e\x22\xe6\x34\x7d\x49\x7f\x2c\x8c\xa8\xf3\x10\x35\xf0\x3d\x2a\xd9\xe4\x47\xdc\x63\x25\x05\x71\x7e\x6c\xb7\xfc\xe1\xcb\x0d\xcc\xa0\xac\xaf\x6e\xe7\xe9\xf1\xea\xf5\x87\x9e\x52\x53\x53\x3f\x1b\xcc\x25\x7f\x90\x04\xcc\xb1\x23\xe2\x19\x60\xdd\xe7\xe4\xd1\xbe\xc9\x22\x4f\xb1\xa6\x6b\xb1\xea\xa7\x90\xd0\xba\x54\x38\xce\xf7\xaa\x7f\x40\x9e\xc9\xb5\xab\x62\xc6\x4a\xd8\x87\x4b\xad\x2f\xcf\x63\x1e\xcb\x7f\xe3\xda\x4b\x3f\x9d\x55\x76\x08\xa0\x86\xa7\x07\x6e\xbd\x45\x2e\x91\xe9\xcc\xb9\x40\xdc\xc2\x9c\x5f\xa7\x97\xfc\xe6\xa6\xb8\x90\x23\x2e\x1e\xc0\x54\xfb\x84\x84\xee\x83\xc2\x0d\x7c\xc7\xd6\x0a\x92\x07\xd7\xa8\x61\x76\xcc\x0f\xf6\xca\xaa\xb3\x01\x44\xa6\x4e\x49\x86\xab\x0f\x5d\x27\xef\xe3\x21\x73\xaa\xbe\xe6\xe7\xd6\x1e\xf2\x29\xb9\xfd\x9c\x74\xac\x80\xe9\x56\xbe\x34\xfb\x42\xfc\xd1\xec\xf3\x19\xfb\xe3\xfb\xe5\x3d\xe9\xd6\x09\x07\x39\xbe\xca\xd3\x09\x9d\xc8\x96\x94\x80\xc4\x88\x6b\xc7\xa5\x89\x78\x0b\xbf\x8d\x49\x1c\xc2\x5a\x67\x7d\x61\x06\xb0\x70\x5f\x1f\xef\x3b\xf0\x67\xd3\x6e\xae\x1b\xb4\x6c\x7a\x00\x73\x2f\xf4\xad\x2c\x3a\xeb\x03\x5e\x9c\xd5\xa8\x99\xc0\x0f\xc9\x77\xab\xde\xe2\x7f\xb1\xc7\x94\xb3\x09\x47\xe1\xc2\x14\x7d\x42\x49\xe4\x84\xd4\x16\x30\xf3\x6d\x49\xf2\x05\x6e\x38\x75\x0b\xc9\x60\xd4\x3e\x88\xf7\x14\x5a\xb1\xf1\x33\xf7\x04\x34\x39\xdd\x99\x69\x08\xdb\x94\x0e\x65\x51\xa0\x79\x59\x2b\x35\x28\xf8\x47\x26\x50\x49\xc1\x49\xb6\x53\x6a\x2d\xf8\x0e\x36\x93\x4f\x40\xcb\x22\x43\xa4\xd3\xa1\xb3\xbe\xde\x49\x5b\xa1\x12\xa7\x48\xe1\x19\x78\xde\x3e\x73\x5e\x23\x1c\xb8\xb1\x9b\x6b\x00\xff\x9c\x7e\x92\x39\x03\x6e\x2b\x69\xca\xcc\x27\xeb\x65\xea\xa8\xbb\x49\x7c\xa9\x38\xed\x37\xf1\x33\xcb\x39\x75\x23\x91\x00\x1d\x91\x9f\x24\xae\x8b\x60\x4b\xe2\xb0\x27\x3e\x72\xb1\x12\x6b\x74\xec\x11\x8c\x63\x14\xab\x5a\xde\x71\xcc\x67\xa3\x80\x93\x83\x29\xa6\xc7\x32\x20\x74\x45\x71\x54\xe6\x16\x16\xa2\x19\x55\x9b\x30\xa9\x92\xb0\x34\x4f\x46\x3c\x73\x9f\x02\xa3\x27\x80\x76\xb2\x62\x1a\x3b\x3c\x23\xf9\x29\xb5\xff\xe2\x0d\xf1\x6a\xea\x1a\xc7\x8d\x82\x13\x94\xb3\x56\x4e\xdc\x72\x72\xd5\xc6\x08\xf6\x3f\x72\xd9\xf4\x66\x7a\x17\xc6\x2f\x32\xcd\xe0\x8b\x54\xea\x94\x74\x95\x70\x49\xf2\x41\x65\x1f\x3f\x92\xb1\x36\xe5\x33\xf7\x01\x70\x48\xb6\x89\xe3\x1b\x56\x95\xec\xcd\x5e\x74\x71\x9a\x48\xcc\xec\x39\x15\xcd\xaf\x63\x5c\xb3\x7c\xc2\x5d\x49\x3f\xbb\xf1\x02\xfb\x20\x7d\xe3\x8c\x0d\xb4\x6f\xa4\x39\x05\x76\x19\xda\xaa\xed\xaa\xba\xf4\x95\xa9\x9f\xc5\x61\xca\xfd\x29\x0a\x5a\x40\xca\x59\x99\x21\x3e\x53\x9a\x98\xdc\x18\x6a\x9f\x54\x24\x06\xce\xb7\x0a\x9f\x0a\x1d\x4e\x22\xfc\xd9\xfc\x79\x96\xbb\x39\x1e\x5c\xe3\x8d\xcb\x58\x67\x38\xf3\x67\x44\x52\xdf\x90\xff\xe6\x19\x6a\xee\x16\xb9\x28\xdb\x54\xf7\xf3\x97\x0a\x93\x52\x7f\x64\x77\x53\x54\x29\xb3\x32\x02\x13\x71\xd2\xd5\xe9\x33\x43\x5a\x92\x1c\x52\x7b\xbd\x23\x84\x09\x72\xf9\x89\x68\x9e\x40\x92\x60\xe1\xcf\x1e\x15\xff\xd3\xcb\x62\x56\x09\xbc\x66\x28\xa9\xeb\xa9\x39\x39\x4e\x19\x8b\x1a\x7c\x15\x2f\x54\x9f\x6a\xa2\xf8\xb5\xa9\x1f\x2b\x2e\x91\x86\xe5\xef\x4b\xb6\xc5\x3b\x49\x3e\xe6\xbf\x0c\xde\x9d\xb4\x28\xbb\xc7\x6b\xa1\x70\x97\xa6\xfe\xb8\x33\xcf\x3a\x6d\xd2\x9c\xcc\x06\x14\xba\x7a\x86\xcc\xa3\xe2\x47\x33\x1a\x29\x28\x7d\x76\xb6\x38\x63\x41\xbb\x87\x42\x4f\xf5\xad\x59\x87\xf7\x38\xf5\x73\x5d\x3a\x69\xb6\xfc\x59\xd5\xe2\x38\xa6\xe4\x41\x69\xcc\x15\x54\xfc\xa1\xe0\x93\x67\xb4\x70\x6e\x0e\xe7\xd8\x0d\xde\xf2\x8c\x4b\xe6\x46\xec\xe3\xca\x57\x1b\xfe\x32\xa7\x25\x3b\xce\x98\xa0\xec\xa0\xd3\xb2\x7e\x69\xfe\xf5\xa6\xa6\xc4\xa8\xde\x77\x2e\xe5\x6d\x4b\x7d\xd9\xe2\x47\x3c\x2b\xbf\x59\xcf\x8e\x7d\x2e\x69\xa8\xca\x0a\x7a\x23\x6e\x2d\xbd\x7b\xee\x9b\x60\xa0\x70\xcf\xb1\x68\xee\x50\xf6\xd7\xbd\xef\x58\x3f\xd2\x17\x6d\xf8\xce\x48\x96\x9c\x9b\xa9\x47\xae\xa5\xdf\x4e\x3d\x5b\x79\x3e\xbe\x47\x48\x28\xc5\x27\xec\xa6\xcd\x2a\xcc\x4f\x10\x11\x5e\xe6\x76\x25\xae\x8c\xd0\xcb\x7c\x94\xd8\xe8\x77\x53\x3d\x1d\x0f\xb9\xf9\x2b\xf5\x08\xde\xb6\xf6\xf2\xfd\xc0\x79\x93\x47\xc9\x95\x60\xc0\xea\x29\xf1\x3b\x88\x83\xc3\xb1\x7f\xc2\x01\x8a\x67\x15\xbf\xf1\x25\xc2\x25\xa5\xfa\xf8\x71\xaa\xba\xd0\x8b\x30\x87\x20\xcc\x85\x08\xae\xe1\x37\x33\xd3\x08\xcd\x7e\x9c\xf4\x5e\xc0\xde\x4d\x2f\xf5\x3d\xf0\xd4\x56\x4b\xbe\x12\x54\x9a\x94\x26\xa7\x41\xfe\xab\xbb\xc4\x0f\xe0\x93\x38\x1c\xfb\x15\x2c\x50\x44\x54\xa8\xc0\x7a\x81\xba\xa4\x0f\xcc\xa2\xee\x2b\x9c\x05\x6a\x08\x56\xb9\x26\x60\x5d\x38\x2d\xd3\x13\xfc\xe0\x67\x9f\x4e\x85\x0e\xba\x3e\x4f\x2d\x83\x32\x6c\x86\x65\x93\xf0\x2a\x13\x4a\x72\x2c\x2c\x5b\x5d\x28\xae\x45\xbc\x70\x38\x76\x2b\xfc\x2d\xa5\xb8\xfc\x05\xe9\x10\xff\x65\xc9\x1a\x62\x1b\x25\xb9\xe0\x22\x71\x3f\x5e\x98\xc3\xc7\xc6\xc2\x9e\x67\xb4\x60\x22\xdf\x2a\xd5\x47\x2c\xd6\x35\x22\x75\x13\x16\x61\x73\x4d\xe6\x83\x05\x98\xec\x4f\xfa\x8c\xc5\xac\x16\x89\x77\x11\x17\xe3\x70\xec\x3d\xa8\xae\x5c\x59\xee\xc2\xf8\xc9\x9f\x56\x0c\x31\x56\x92\xcb\xf3\xdb\xe8\xfa\x89\x6d\xd9\xdf\x68\xa7\xc2\x4c\x32\xb6\x53\xf9\xbe\x8b\x54\xfe\x94\x3f\x2e\xf7\x14\x12\x0a\xd1\x66\xa6\xb4\x87\x32\x63\xd7\xef\xa4\xd3\xe4\xca\xd5\x6a\x91\x3f\x65\x23\x0e\xc7\x8a\xc4\x82\x65\xa2\xb2\x2a\x81\x01\xf7\x7b\xd1\x5b\xde\x24\xa9\x2b\xdf\x82\x7b\x2d\xe1\x79\x76\x08\x67\x7d\x68\xb8\x46\xce\x7a\xea\x73\x21\x6d\x84\x39\xec\x62\xaf\xd0\x61\x3c\xb2\x4e\x92\xee\xa6\x3f\xdf\xd5\x22\x56\xd3\x8f\xac\xee\x12\x12\xe8\x73\x70\xae\x4c\x21\x31\x4f\x7a\xbc\x6c\xa9\xa2\x8a\x53\x5e\x74\x4a\xae\x26\x5e\xcb\x13\x4b\x99\xf1\xaa\xac\xfa\xe4\x2b\x57\x0f\xa9\x9f\x88\xcf\x5f\x3c\x95\xa6\x2b\xc4\x4e\x5f\x4c\x39\xcd\xef\x3a\xf2\x58\x12\xcc\x5b\xb9\xcb\x55\x34\xc8\xf9\xb9\xba\x4a\x70\x8d\xf5\x0e\x57\xc7\x88\x23\x07\x25\xd7\x96\x8e\xe6\xba\xb3\x0d\x0a\xbf\x64\xb9\x61\x5a\x79\x56\x1a\x66\xdc\xb1\x2c\x77\x15\x2f\xf8\x87\x3a\x2c\x35\xf3\xc2\x66\xa5\x52\xfe\xcf\xf9\x82\x7c\x48\x4a\x38\xb2\x24\xf9\x69\xb2\xbe\x71\x93\xe8\xa0\x38\x78\x35\x9b\x5f\xc4\x73\x9a\x36\x93\x9e\x42\x19\x4b\x32\x2a\x6d\xa9\x5a\xc3\xcc\x2e\x7c\x50\x26\x42\xc0\xbc\xf9\xc5\xb3\x63\xae\x67\x2d\xcb\x3f\x77\x45\xaa\xde\x90\x5d\xe5\xfd\x44\x69\x97\xe1\xea\x64\x2f\xbf\x9a\xae\x7f\x78\x77\x72\xa2\xd2\xd6\x78\xbd\xb0\x47\xf6\x7e\xf5\x41\xfe\x46\xe1\xba\x69\x7b\x69\x9f\x68\xb3\xc5\x84\xd2\xfa\x86\x38\xc6\x8f\xc2\xd1\x1a\x0d\xdc\x9e\xfb\xad\xa2\x39\x66\x43\xe6\xcf\x92\xfe\xa0\xaf\xe9\xdf\x0b\x9e\x79\xbb\x2a\x57\xe6\x5a\x39\x76\xc8\xf7\x66\xde\x3e\x34\x90\x6c\x93\xfe\x70\xe7\x7d\x21\x5d\xb1\x6d\xb5\x11\xaf\x4f\x64\x3f\xed\x0c\x4d\x4e\x8b\x11\x3d\x2e\x2d\x69\xdb\xcb\xb8\x50\xd8\xd6\x64\x04\x6f\xce\xbd\x53\x37\x3f\x9a\x95\x39\x54\xf9\x22\x28\x3a\xbd\xb3\xf4\xb6\xd7\x44\xea\x9d\xc2\xaf\x8e\x57\x64\xef\x72\x1f\x1d\x22\x27\x7d\xca\xc8\xdc\x59\x2e\xdc\x9d\x3a\xba\xda\x9c\xe7\x26\xde\x3a\x8d\x42\xdb\x4e\xcb\xa7\x17\xb5\x87\x24\x1e\x85\x3f\x35\xc9\x12\x69\xb1\xbc\xda\xc9\xc4\xc6\x90\x94\x4a\x63\xfc\x66\x9f\x6d\x25\x11\xf8\x4a\xb7\x5d\xf9\x95\x84\xb0\xa3\x87\xb3\xfe\x00\x27\x2c\xf2\xd5\xe7\x40\xe7\xad\x9f\x95\x17\xa0\xd8\xc5\x78\x45\x21\xdc\x80\xc3\xf1\x14\xc8\x22\x3a\xdc\xf6\x97\xf0\x1c\x6e\x6c\xb2\x22\x7c\x8e\xf5\xa8\xe5\x11\x7e\x84\x84\x54\x3c\x06\x0c\x7d\x70\x25\x46\x00\xd1\x6d\x6e\x7e\x3c\x38\xf3\xe8\xda\xac\x76\x30\xc7\x82\xaf\xde\x0e\x45\x6e\x1d\x57\x1e\x80\xdd\x17\x27\x28\x98\xc8\x39\x1c\x8e\x47\x41\x36\xd3\x8f\xb7\x71\xa0\x42\x18\x6d\x1c\x83\x28\xb1\xcb\x6b\xad\xa0\xf3\x21\xbb\x2b\xb8\xd0\xd9\x8b\x43\xc5\x77\x21\xd8\x75\x22\x7f\x27\x34\x60\xff\x3d\x0b\x84\x8f\x58\xc4\xa4\xbf\x83\x7b\xb6\xb6\x2b\x67\x22\xf8\xc5\x09\x0a\x67\xd4\x0e\x87\xe3\x9d\x41\xa2\x68\xfc\xd6\x1e\x52\x1c\xf4\xb6\x71\x2d\xf1\x65\x8c\xaa\x86\x42\x3c\x17\xdc\x5e\xfe\x08\xfb\x76\x31\xbc\x78\x0f\xd6\xe0\x4a\xc9\x23\x63\x05\xf6\xa5\x99\xc3\xd8\xff\x87\xa2\xfa\xf0\x87\xf2\x61\x00\x00\xfe\x34\x54\x66\x7b\x4b\xd2\x4e\x8a\x4a\x7b\x4a\x11\x22\x23\x23\x45\x08\x15\x49\x38\x77\xf7\xcc\xdb\x7b\x6f\xe7\xee\x9c\x73\x0e\x67\x9c\xbd\x47\x56\x54\x8a\xf6\xd0\xde\x7b\x8f\x5f\xfb\xfd\xbc\x7f\xc4\xf7\xf3\xed\x5c\xe7\x67\x88\xa2\x3c\x5d\x54\xa2\x3b\x4a\xdd\x35\x51\xa1\x11\x53\xd9\x00\x20\xac\x26\x9f\x64\xfe\xe9\x9a\xca\x29\x45\x13\xdb\x52\xd8\xcd\x59\x33\x1b\x6f\xb0\x7a\x8f\xed\xab\x5d\xcf\xfc\x17\x63\x6f\x11\x31\x63\x43\x56\x98\x9f\x30\x9e\xee\x3a\x6a\x5a\xcb\x90\xae\x9b\x96\x5f\xcc\x88\x5e\x24\xd7\x9a\x18\xb4\x89\xfd\xb9\x1a\xfa\x7f\x00\x20\xb8\x42\x51\x31\x45\x9d\x27\xc4\x7e\xc8\x70\xeb\x19\xe1\xab\x4c\x56\xe3\x2a\x01\xe7\xe8\xe5\x1a\x05\x3f\xf2\x50\x61\xc5\x47\x5e\x40\xf0\x90\x79\x27\x37\x71\xd7\xec\x42\x19\xc7\xbc\xf6\x81\xfe\x33\x67\xca\x22\xa6\xe6\x06\x67\xea\xa4\x91\x6a\x09\xcb\x17\x00\xf8\xf7\xa9\x16\x86\xf9\x74\x65\x2e\x0a\xff\x6a\x1d\x91\x23\xca\x30\x36\x24\x29\x8d\xc9\xef\xab\xdb\xe5\x9d\x07\x07\x2b\xc6\xcb\xac\x82\xa7\x96\x1c\x92\x10\xbc\x59\xc6\x12\xb1\xcb\x5a\x34\xef\x9f\xc8\x7e\xd1\xf1\xdc\x01\x61\xc1\xa4\xd0\x9c\xb5\xdc\x63\x00\xc0\x33\xd1\x37\xd3\x5b\x4e\xcf\x33\x35\x43\xbf\x5b\x70\x46\xc7\x53\xe6\xfa\xeb\xf9\xec\xa4\xef\xd5\x0b\x74\x1f\xa3\xef\x97\x1f\xd7\x60\xfb\xbc\x8a\xeb\xd4\x81\x3b\x6f\x15\xfc\x51\x1d\xf1\xfc\x9b\x17\xa8\x78\xb7\x68\x51\xae\xb5\x8c\x32\xe9\x94\x6a\x95\xc0\x1a\x00\xb8\x75\x0c\x02\x4d\xd5\xd1\x51\xed\x04\xbe\x6e\x99\x59\xf1\x2f\x5d\x57\x9f\x5d\xfa\x20\xf1\x4b\x55\x43\x71\xcd\x81\x57\x65\xef\x0a\xcb\x83\x8e\x17\x7b\x18\x7e\xef\x5c\x5c\x90\xa5\x2f\xf7\x24\xea\xda\xb4\x82\x85\x4f\xd5\xc7\x54\xb9\x93\x40\x65\x92\x68\x27\x00\x70\x47\x30\x8f\xd2\xc6\x76\x08\x1b\x86\xc0\x84\xe6\x37\xb5\x19\xe9\x4e\xf5\xfe\x55\x13\x13\xa1\x2a\x7a\x79\xf9\x01\xb0\xac\xc6\x8c\x0f\xb2\x2e\xfa\x52\x54\xe4\x75\xab\xc0\xc3\xc8\xf6\xf4\xd2\xe1\xf4\x6b\x17\x5e\x54\x4f\x53\xef\x9a\xc4\x52\xfc\x10\xaf\x04\x00\x4e\x21\xb3\x89\x4a\xe9\x88\x68\xfd\x48\x7c\xd3\xdc\xd8\x14\x77\xb2\xaa\x7e\x6a\xdd\xad\xc4\x69\x55\xde\xd5\x51\x07\x1c\xcb\x8e\x5a\xec\x03\xdb\x8a\xf2\x4b\x8b\xbc\x0a\x0c\x37\x8b\x28\x9e\x0b\x74\x53\x0c\xbb\x16\x5e\xcd\x31\xe5\xca\x26\x35\x28\x8e\x89\x1f\x01\x93\x39\x1e\xcc\xeb\xa4\xef\xe7\xd2\xc0\x04\xfc\xde\xde\x4c\x90\x75\x62\xcf\x69\x12\xa8\x8d\xef\x69\x41\xc1\x17\x11\xcf\xea\xd3\xa0\x23\x01\x69\x55\x47\x60\xbb\xed\x0b\xcb\xa2\xe1\x47\xab\x3c\x8b\x4e\x22\x8f\x5c\x96\x17\x24\x63\xd3\xec\x3f\xeb\xff\x90\xc2\x00\x40\x7c\x83\x74\x98\xd4\x73\xce\x16\x7e\x89\x5f\xde\x3b\x05\xbe\x75\xc2\xe5\xf4\x12\xb8\x33\x3e\xbf\x65\x05\x7c\x23\xa2\xb7\x7e\x3e\x32\x3b\x20\xa4\x6a\x2e\x22\xda\x6e\x5b\x36\x1b\x75\x5f\xb5\xb4\x68\x13\xfa\xcd\x65\x5e\xc1\x26\xec\x83\xfd\x3f\xfd\x05\xd2\x15\x00\x10\xb7\x91\x52\x48\xb4\xb3\x66\x4c\x86\x1f\xd5\x53\x8b\x85\xa6\x7e\xeb\xb8\x80\x8d\x8f\xcf\x6e\xbe\x86\xbe\x8d\xc8\xaf\x1b\xc2\x46\x06\x78\x56\x5e\xc4\x7c\xb7\x7d\x28\x1d\xc0\xea\x57\xcd\x36\x7d\x27\xf9\xb8\xcc\x36\x7c\x27\x4f\x76\xb0\xd6\xd3\xc8\x3a\x00\x10\xd3\x49\xb5\xd8\xbf\xfe\x47\xf4\x71\xd9\x92\xee\x4f\xb4\xa3\xa9\x39\x1d\xf6\xd4\xfe\xf8\xa5\xcd\x8e\xd4\xc8\x88\x43\x75\xb3\xa8\x33\xfc\x7f\x54\xce\xa0\x5a\x6d\x3b\x5d\x3a\x99\xea\xb4\x6a\xbc\x29\x88\x1a\xea\x32\xc3\xb0\x93\xfa\xd0\x61\x5d\x5e\x15\xb5\x10\x00\x44\x83\x64\x23\x56\xd5\xbf\x90\xf3\x29\x7b\x7b\xf7\x5a\xf6\xcf\xd4\x6d\xed\xfb\xd8\xa3\xe3\x1e\x36\x25\xb2\xd6\x45\x2c\xa9\x4d\x61\xaa\xfc\xcf\x59\x8e\x31\x5d\xb6\x69\xcc\x89\x8c\x3b\x1e\x5f\x0b\x85\x8c\x2e\x97\x09\xf9\x27\x99\x2b\x1d\x4e\xea\x4a\xe9\x57\x01\x40\xf8\x90\xd2\x8a\xf9\xf5\x65\x8a\x77\xe0\x86\xbb\xa8\xc2\x27\x29\xf7\xda\x72\x05\xc2\x38\x49\x63\x0d\x3f\x26\xfc\x7d\x4d\x07\x2f\xda\x5f\x5e\xd1\xc8\x25\x6d\xcb\x28\xa9\xe2\xdc\xf2\xb8\x61\x3c\xcf\xc1\xbb\xd8\xeb\x85\x9c\x8b\x0e\x65\x5a\x19\xf3\x09\x00\x08\x1e\x51\xbb\xd1\x92\x33\x32\xf5\x4f\xdc\xea\xce\xfc\x9c\x29\x29\x9e\xad\x55\xca\xb5\x87\x9f\x37\x74\xc8\x93\xc2\xbd\xab\x4f\x4b\x7b\xfd\xc7\x94\xd7\x4b\x22\xb6\xd9\x16\x17\x8b\x57\x78\xe8\x0b\x1a\x44\x27\x5c\x96\xe4\x45\x08\x6b\xc7\x3b\x6a\x66\x73\xea\x01\x80\xaf\xa0\xaf\x47\xee\xf4\xbe\x2e\x34\x67\xa5\x9d\xfe\x5a\x30\xfb\x78\x56\x2b\xa0\xcf\x3d\x3c\xaf\xc1\x4a\xb7\x68\x3f\xb3\xea\x77\xee\x0b\xbf\xd8\xb2\xf7\x39\xaf\xb6\x32\x8b\xee\xaa\x02\x3d\x76\x19\x5e\x2a\x47\xcc\xfb\xa7\x23\x4a\x6f\x8f\x0f\x51\xff\xe4\x5b\x03\x00\x4f\xcd\x88\x42\x26\xf6\xc6\x57\x9e\xcc\x34\x9c\xce\x2a\x4f\x38\x66\x69\x21\x99\x8f\xc6\xc6\xd6\x13\x8a\x4e\x84\xf5\x56\xc5\x1b\xcb\xf7\xb4\x95\x85\x18\x42\xb7\x5a\x17\x6d\xd2\x4f\x76\xff\x66\xd8\xa4\x51\xb9\x8c\xd4\x56\x2b\xa3\xc7\x0b\xd4\xb6\xc2\x31\x00\xc0\xbd\xcf\x74\x85\x0b\x7a\x97\xd5\x5d\xc9\x5c\x7f\x7a\x5d\x35\xf5\x58\x68\x8b\xb7\x25\x24\x76\x74\xbd\x67\xd9\xf2\xb0\xf4\xaa\x69\x25\xde\x7b\xf0\x65\x56\xa6\xe2\x2d\xc3\xa6\x97\x05\xfb\xdd\x6f\xe4\x3f\xd6\xdd\x74\x19\xa3\x0d\x52\x5d\x19\x6f\xc9\x91\x09\xaf\x03\x00\x97\xc2\x4c\x85\x37\xf7\xbc\x6c\x36\x65\x5c\xef\xf8\xd8\xe0\x7a\xf4\x6f\xf3\x9f\x9a\x9b\x31\xcd\x75\xcf\x2a\x75\x61\x1e\x95\x6d\xe5\xa4\x3d\xbb\x4a\x0b\xcd\x63\xb7\x74\x98\x68\x85\xb7\xdc\x07\xf2\x71\x7a\x99\xcb\x14\xcd\xcd\x9c\xcf\xe3\x5f\xa9\x7e\x8b\xb2\x00\x80\x6b\xc3\xc4\x88\xa5\x83\x87\xa0\x33\xe9\x4e\xe7\x02\xa0\x8e\xa4\x88\xde\xad\x50\xc1\x41\xa7\xd3\x0e\x50\x7f\x70\x4e\xf3\x79\x78\xfe\x6e\x61\x9d\x10\xae\xdd\xd8\x5d\x19\x84\x10\xdc\x92\x4b\xdd\xd0\x54\xa7\xd1\x45\xcb\xb0\x52\xdb\xe0\x02\x06\xa9\x0a\x00\x24\x6f\x49\x52\xa2\x70\x10\x40\xd7\xa6\x4f\x3b\xfb\x0e\xf9\x99\xb4\xb3\xe7\x01\xd2\x78\xd0\xba\xa3\x01\x31\x05\xf3\x9a\x41\x64\x60\x37\x5a\xb7\x1d\x5d\xb6\xb1\xae\x72\x1c\xda\xec\x76\xd8\xfc\x03\x23\xcc\xf9\x61\xfa\x49\xc2\x6c\x0f\x14\xec\x23\xcf\x02\x00\xc9\x00\x49\x49\x3c\x7a\xb1\x80\x74\x3e\x7d\xf4\x59\x1e\x29\x26\x69\x69\x0f\x86\x7d\x8f\x7e\xdf\x11\x89\x55\x04\xe3\x9a\x9d\x30\xe3\xee\xd4\xda\xe7\xd8\xb5\x8d\x46\x8b\x85\xb4\xce\x2d\xca\x5c\x4d\xea\x9d\xf3\xd1\x54\x45\x36\xda\x1e\x2a\x18\x41\xbe\x00\x00\x12\x0e\xe9\x3a\x71\xf2\x85\x6b\xf4\x9f\x27\x6b\xfb\x3b\xe8\x9e\x89\x77\xbb\x2b\x69\xc4\xe8\xc6\x76\x11\xf5\x63\xf0\x9e\xa6\x03\x54\xdd\x6e\x9f\xda\x79\x54\x64\x23\xb3\xe2\x29\x55\xe2\x16\x59\xf2\x9b\x7a\x65\xce\x87\xc2\x37\x34\x86\x2d\xc3\x30\x97\x6a\x02\x00\x71\x27\xb9\x91\x38\xee\x82\x3d\xb7\xf0\xa4\xb4\xef\x2b\x47\x9e\x58\xd9\xf5\x90\x2d\x8e\xce\x6d\xeb\x67\x55\x05\x6f\x6d\xcc\x65\x8d\xdd\xbd\xa9\x26\x96\xc9\xde\x48\xa9\x98\xc7\xdc\xed\x16\x51\xb2\x94\xb9\xc7\x69\x84\xf1\x07\xf3\x9d\x6d\x6f\xbe\x15\xbd\x14\x00\x44\x5d\x94\x01\x82\x69\xc0\x5f\x5c\x7d\x32\xb0\x6f\xa5\xc8\x37\x11\xe9\x9a\x26\x78\x17\x4d\x68\x1b\xcd\xaf\x09\x5e\xd9\x30\xcc\xb3\xec\x76\xab\xce\xe5\x5e\xde\x08\x96\x87\x73\x37\xb8\x45\x15\xfb\x73\x47\x39\x39\x16\xfc\xe2\x6e\xb4\x9b\x96\x77\x93\xa9\x02\x00\x61\x3d\xf5\x26\xc1\xf7\xfc\xae\xdc\x91\x69\x4f\xce\x2c\xcd\x99\x9c\x68\xd7\x69\xa7\x5c\x7b\xe0\x4f\xcb\x7b\xf9\xb1\x7d\x55\xf5\x6d\xd2\x9b\xbb\xfa\xab\x08\x12\x64\xe3\xfa\x32\x37\x31\xd1\x6d\x67\xd1\x54\xb1\x83\x53\x80\x21\x5f\x48\xb3\xa3\xe8\xf6\x72\x16\x02\x80\x20\x92\xbe\x0e\x9f\x7b\x0e\x2d\x5c\x9b\xe6\xdf\x1b\x6d\x30\x1c\xa1\x9c\x5e\xa3\x5f\x72\x20\xa5\x65\xbc\xf6\xec\xbe\x59\x75\xd7\x73\xcb\x77\xf9\x55\x0a\x73\xee\x6c\xb8\x53\xba\x4d\xc5\x74\x9b\x62\x72\x51\x3c\x72\x8a\xc8\x57\x48\xa7\xdb\x5d\xd1\x3a\xf0\x36\x01\x00\x7f\x2f\x63\x03\x7e\xd1\xd9\xb3\x96\xc4\x13\x43\x3d\x95\x65\xd1\x47\x46\x76\x08\x4a\x32\xa2\x9e\x37\x1f\x32\xe5\x06\xc9\xeb\x66\x1a\xa7\x78\x3f\xb2\x0c\xe5\xff\xdd\xa0\x34\x63\x79\x27\x96\x7f\x2e\xdc\x97\x9b\xef\x84\xe8\x2d\x8a\xf9\xf6\x4b\x35\xf6\x82\x11\x00\xc0\x63\x33\xde\x65\x0f\x9f\xa5\xd7\xc2\x27\x48\x3d\x71\x55\x2b\x13\xba\x3b\xb6\x54\xcc\x88\x2a\x69\x1e\x5b\x3a\x37\x28\xa2\xb6\xb1\x98\xe0\x5d\x6b\xc9\x28\xac\xde\x80\x98\x67\x19\x56\x2c\x7f\x6f\x7c\xa4\xe5\x38\xe5\xeb\xd7\x2a\x4f\xda\xc7\xe6\xb2\x05\xcd\x00\xc0\x5b\xc2\x5c\x94\x2d\x3b\xbb\xbe\x09\x38\xe1\xd9\x63\x5b\x47\x4f\x10\xb4\x3f\xae\x0e\x8d\xc2\x37\x19\x2d\x7b\x82\x96\xd5\xee\x2b\x9b\xea\xad\xb2\x8c\x2e\x66\x6c\xc0\x95\x94\x19\x83\x96\xff\x33\xc6\xe8\xfe\x38\x0d\xe6\x95\xa8\x8e\xd9\x17\xa9\xdf\x08\xff\xff\x85\x85\xe9\xf9\x2d\x15\x66\x81\x1b\x9e\x9d\x81\x3b\xc0\xaa\xeb\x1a\xf8\x21\xf8\xa5\x77\x32\x32\x1f\x5a\x57\x4d\x40\x92\x20\xad\x8e\x88\x9c\x83\x95\x6c\x47\xd4\x1e\xd9\x70\xca\x1d\x4d\x40\xae\x44\xf8\xa2\x1d\xe8\xd1\xf5\xcf\xb0\x19\xe8\x93\xf1\xff\xb0\x5c\xf4\xdb\x57\x21\xf4\x10\x35\x3d\x7d\x09\x3b\xa3\x25\xd7\xda\xe1\x30\x34\xb7\x67\x07\x6c\x42\xd1\xaa\x4a\xf8\x03\x2a\xd3\xf6\x23\x47\x30\x7b\xd6\x29\xa4\x0e\x0b\x4f\x57\xa3\x4e\x98\x22\x5c\x88\xb2\xb0\xf3\xeb\x63\xd0\x6f\xd8\xfb\xf1\x12\x8c\x87\x15\x7d\x91\x41\xde\xd4\x55\x4f\xbe\x41\x0a\xca\xd9\xab\x77\xa0\xf3\x94\xd4\xee\x78\xd8\x95\xfc\xb4\xf2\x01\xcc\x20\xcb\xb4\x1e\xf0\x0b\xb2\x98\x79\x16\xd9\x4f\xce\x4d\xb7\x46\x86\xc8\x94\xf0\x51\xe8\x1e\x72\xe4\xba\x37\x68\x27\x79\xfe\xf8\xf5\x58\x1c\x89\xfe\x89\x06\xfa\xf2\x66\x3f\x7a\x03\x16\x70\xc7\x5d\x7e\x08\xbe\x62\xbf\xe8\xd4\x42\xe1\xac\xab\x16\x1f\xe8\x34\xf3\x56\x6e\x3b\xec\xcc\x9c\xcd\xe0\xc0\x02\x46\xfc\x49\x7b\xc4\x99\x2e\xdc\xef\x8c\x54\xd2\xca\xd7\xad\x40\x57\x53\x87\x1c\x06\xd1\x0b\x94\xac\x0f\x2d\xc4\x68\xb9\xfe\xe1\x56\xe2\x69\xe9\xbd\x4b\xb6\xe0\x02\xc9\x84\x8e\xcb\x20\x2a\x0a\x2c\xe7\x83\x0f\x05\xf9\xea\xe5\x50\x20\x7f\x36\x7d\x21\x34\xc0\x95\x9d\xf8\x08\x1f\x67\xff\x0e\xdb\x82\xd8\xb2\xa2\xd6\xe6\x20\x7c\xc6\x25\x87\x02\xd4\x81\x96\xfd\xae\x8f\x30\x90\xf7\xf9\xfe\x56\xa2\x8b\x16\x19\x5c\x4b\xa4\xaa\xef\xb6\x8f\x22\x9e\x51\x25\x95\x5e\x03\xe7\xca\xbf\xab\x54\xa0\x4c\xaa\xa5\xf6\x40\xb3\xc4\x1b\x53\x6f\x41\xa7\x05\x17\x43\x8f\xc2\x47\x79\x71\x6b\xa7\xc0\x4f\x39\x33\x1d\x72\x90\x00\x46\xe2\x9b\x68\xfc\xe7\x4a\xfd\x9d\xdb\x04\xbf\xb2\xaf\x03\xc5\x04\x6d\x49\x40\x8b\x80\xf0\xa1\xd0\x50\x82\x11\x83\xf3\x3f\x2a\x32\x89\xfd\xba\x9d\xe4\x87\x60\x98\x1a\x4a\xf1\x06\xff\x53\x14\x84\x6c\x80\x74\x92\xeb\x9e\x47\xe1\x29\x42\xb1\x83\x0e\x3e\xc4\x9e\xfd\xb2\x0b\x2f\xea\x6a\xbf\xbd\x0e\xff\xb0\xed\xc2\xb9\x4d\x04\xa7\xa6\xd1\x4d\x1e\x04\xa8\xd6\xb1\x68\x0b\xe1\xbe\x65\xb6\x2c\x9a\x18\x62\xb6\x22\x8d\x21\xde\x31\xf6\x1e\xab\x03\xa1\xbc\xf4\xe0\xb1\xd0\x6c\xf5\x96\x35\x35\x10\x43\xb1\xcc\x41\x08\x75\x71\x35\xcf\xd3\xf0\xef\xaf\xea\x6f\xda\x12\x46\x5f\x1c\xec\xfb\x46\x58\xd0\xff\xa2\xfe\x37\x21\xbb\xeb\x79\xe1\x5c\xc2\xf9\xd6\x2a\xc9\x11\xe2\xea\xfa\x48\x74\x37\xb1\xda\x72\xe6\xe8\x6e\xd0\xb5\xf8\xd5\x3e\x47\xb0\xd4\x00\xae\x59\x00\x4d\xd3\x64\x38\xf0\xa1\x20\x7e\xc5\x33\x11\xfe\xde\xdd\xf9\x37\x96\x12\x46\x5c\x7f\xd7\x37\x9e\xe0\x3c\x24\xa9\x9f\x44\x48\x3f\x37\xdb\xb8\x83\xd0\xd1\x1d\x2d\x96\x13\xe7\xb4\x9e\x44\x44\x44\x59\xdd\xf6\xe4\x4a\xe2\xaf\x72\x73\xd0\x10\x98\x68\x2a\x5d\xfd\x0f\x1c\xd4\x9d\x75\xa8\x01\x7f\x0a\x62\x9f\x7e\xc0\x77\x3f\xb1\x5c\x67\x13\x46\xdc\xf3\x3e\x13\x4b\x98\x70\x03\xac\x4b\x24\xec\x1f\xd2\x15\xe4\x12\x34\x67\x8f\x8b\xfe\x12\xde\x77\xfe\x44\x26\x12\x0f\x36\x6f\x4b\xf6\x23\x5a\xaa\xbe\x04\x95\x83\x23\xcc\x6b\xd6\x58\x83\x09\xfa\xf0\xf1\xd3\xc0\x0c\x81\xe9\x43\x1d\x56\x4d\x84\x1e\x52\x30\x11\xf1\xcb\xa5\x4e\xec\x28\x18\x75\xda\x88\x1d\x07\x8b\x2a\x08\xd8\x11\x68\x41\xee\x18\x2c\x03\x9e\xce\x98\x8e\x65\xc0\x83\x69\x55\x18\x09\xa1\xef\x9f\x83\x89\x51\xcf\x75\x29\x98\x05\xbd\x39\x7e\x15\xf6\x15\xb3\x79\x7f\x0f\x1b\x83\x5c\x79\x50\x81\xfe\x87\xbc\x1a\xfa\x88\xde\x47\x3e\x74\xdc\x44\x5f\x21\x8f\xca\x4b\xd0\xd7\xe8\x18\x75\x10\x36\x0e\x45\xe9\x51\x98\x2d\xfa\x2c\x6d\x19\xb6\x09\xdb\x1e\x66\xc4\xc2\x31\xc1\xda\x6b\x18\x0b\x1b\x76\x28\xc5\x7a\xb1\xf6\x77\xaf\xd1\x13\x94\x35\xf7\x7b\xd1\xe3\xe4\xf7\x43\xb6\xe8\x21\x72\x6e\xc7\x08\xf4\x24\x79\x73\xd9\x23\x94\x4a\x1e\x95\x53\x82\x6a\xc8\x13\x68\xcd\x68\x0d\x79\xf1\x89\x5c\xf4\x3d\x79\x51\xd8\x74\x6c\x0e\x79\xc6\xda\xa3\x58\x04\xd9\xde\x21\x16\x33\x90\x14\x6f\xbe\x22\x27\xb9\x23\xef\xde\x41\x70\x9c\x29\x17\x5d\x11\x02\x7b\x74\xdb\x76\x44\xc1\xb2\x2b\x0d\x42\x9a\x98\xcb\x54\x6b\x90\x5b\x0c\x2a\x95\x88\x8e\xa5\x3f\x48\x95\xa3\x7b\xe8\x4b\x42\x97\xa1\x0a\xda\x71\xcf\x33\xe8\x15\x6a\xbd\x83\x1d\xb6\x98\x02\xbe\xde\x0e\x2b\x65\x61\x77\x3c\x61\x83\xa4\x65\x20\x15\xae\x15\x8f\x6f\xc9\x81\xfb\x85\x27\x4b\x3a\xe0\xa7\xfc\xbb\x8a\x8b\x88\x3d\x2f\x93\xe2\x85\xec\xe2\x5a\xa7\x88\x91\x1c\x36\x3f\x24\x06\xf9\xc4\x9a\xec\xb9\x17\x75\x63\xd4\x3a\x4c\x44\x53\x69\xd9\x2f\x13\xa0\x6f\x3a\xee\xed\xbd\xd0\x3f\xcd\xa6\x73\xa5\xf0\x94\x9c\xb6\xa6\x9b\xf0\x6c\x65\x7c\xb1\x03\xec\x26\x1f\x2f\xf7\x86\x63\x24\x37\x49\xaf\x61\x8d\x48\x79\x9c\x04\x7f\x15\xf8\x04\x2b\x91\x40\x1e\xb0\xe6\x16\xc2\x64\x7f\x76\x98\x8f\x94\x30\xa2\x9f\xdd\x86\xd6\x54\xdc\xbf\x71\x0b\xda\x50\x1a\xd7\x3f\x03\xda\x56\x74\xbf\x21\x19\xf2\x33\xc6\x14\x76\x43\x87\xf5\x97\xa5\x4b\x20\x89\x36\x00\x1b\x0f\xdd\xc8\xa9\x3c\xfa\x13\x5e\xa9\x18\xbb\x0f\x83\x69\x92\xb4\x35\x01\x70\xb9\xf0\xa8\xc3\x7e\xb8\x8c\xed\xf0\xc4\x0b\xbc\x73\x5a\x7e\xcd\x0b\xbc\xd9\xf2\xb8\xd7\x00\x0e\x35\xec\xac\xb3\x06\x6f\x55\x73\x0b\x18\xe0\x9b\xf2\x26\xf1\x54\xc8\xb1\xf8\x2a\xb2\x01\x3a\x5c\x70\x36\x39\x03\xb2\xe8\x2c\x41\xa1\xd0\xbf\x9c\xd6\xd5\x45\xf0\x1c\xf9\x1b\x87\xc3\xf0\x58\x2e\xf5\xd1\x28\x68\xe6\xe5\xa5\x57\x66\x80\xef\x07\xb4\xdd\x38\xf0\xfc\x99\x0f\xd5\x4f\xc0\x73\x9d\x8e\xf9\x78\xf0\x4a\xcb\x4c\xa1\x1b\xf8\xad\xf6\x2b\xc4\x80\x56\x56\xe8\x92\x1c\xa0\x98\xe2\xb1\x81\xa9\x90\x24\x7f\x78\xf5\x1c\xa8\x34\xf7\xb7\xc3\x61\x48\xc8\xa7\x3c\x5c\x09\x4d\xbb\xad\xbb\xbc\x19\xfc\x78\xb5\xa4\x4b\x0a\x9e\xbf\xc8\xaa\x06\xc0\xae\xfe\x75\x7a\x2d\xd8\xd3\x59\x26\x48\x04\xef\x36\xff\x07\x5e\x87\xc6\xd7\x5a\x25\xc2\x90\x5b\x59\x6b\xe0\x1c\x28\xd0\x04\xac\xfa\x0a\x25\xea\xbc\x1d\x30\x68\x93\x60\xf9\x03\x39\x64\xfd\x68\xfe\x25\x35\xf8\x78\xf8\x7e\xe7\x4b\xb0\xe5\x5a\x42\x55\x04\x68\xba\x58\x92\xf7\x0b\xcc\xeb\x2b\xe6\x0f\x81\xe5\xa7\x33\xc1\x28\xf0\x4a\xe3\xf7\xc4\x59\xe0\xfd\xca\x3f\x7b\xbf\x83\xaf\x4b\xf0\xab\x7e\x83\xbf\xf2\xce\x3a\xdc\x07\xab\x04\x99\xaf\xba\x29\x9f\x08\x03\x77\xe6\x53\x40\x62\xcc\x80\x91\xe2\x48\xec\x6c\x1d\x4d\x1e\x02\xa7\x9b\x77\x93\x85\xa0\x4a\x79\x98\x1c\x08\xa5\x51\x2e\x92\xa7\xc2\x51\x29\x5f\x49\xf7\x11\xd7\x90\x07\xa4\x32\xe4\xb3\x67\x37\x49\x8c\x36\x38\x2c\x25\x55\x63\xe3\x5f\x39\x50\x82\xe0\xef\xc3\x81\xe4\x4f\xc8\xfc\xf3\x5f\xc9\x52\x64\x63\xcb\x36\xf2\x7e\x64\x57\x09\x44\x76\x44\x32\x14\x06\xd2\x6b\xe4\x25\x65\x26\xa9\x01\x3d\x91\x72\x92\xa4\x45\x1f\x86\x1c\x21\x11\x30\x5f\x4f\x37\xd2\x49\xac\xde\xbe\x84\xc4\xc6\x1a\x5e\xce\x25\x57\x91\x23\x6e\x67\x92\xe3\xc8\x33\xce\x4f\x24\xdb\x93\x9e\x35\xa7\x90\x9e\x93\xa8\xc5\x4d\xa4\x6a\xd2\x31\xf9\x47\x12\x87\x84\x92\x61\x52\x3c\xc9\x72\xfc\x1b\x29\x94\xd4\x16\xfc\x8c\xb4\x9d\x34\xb0\xa6\x9b\xb4\x89\xf4\xca\xfe\x28\x29\x8e\xc4\x7d\xbe\x9c\xd4\xc2\x7e\x7f\x53\x48\x3a\xc5\x5e\x70\x76\x2d\x69\x2d\xcb\xb9\xf1\x0c\x69\x24\xd3\xbf\x68\x13\xf6\x82\xc1\x90\xc9\xb0\x73\xf4\x8f\xa4\x60\xac\x91\x7e\xe4\xd8\x27\xac\x96\xd6\xbe\xef\x0f\xd6\x46\x9b\xb1\xc6\x15\x6b\xa1\x0a\xec\xe7\x61\x8f\x28\x47\x9e\x72\xb0\x1f\x52\xfb\xeb\xef\xb0\x0a\x71\x6e\x1f\x1f\xc3\x89\xc6\x37\x2c\xc6\xb6\x0a\xb8\x85\x95\xd8\x6c\xfe\x14\xa9\x1b\x66\xc5\xed\xc6\x66\xa0\x7f\x38\x59\x47\xdf\x61\x63\xd9\x53\xf7\xed\xc4\x66\x32\x5b\x57\xf7\x63\xd3\x18\x1c\xfb\x9d\xd8\x62\xda\x81\xc7\xfd\x98\x8f\x76\xf1\x35\x67\x6c\x9c\xfa\x67\xef\x43\xf4\x86\x4a\x5d\x97\x85\x6a\x15\x07\x8d\x76\x68\x9a\xcc\x45\x6c\x41\x63\x25\xd6\xc8\x39\x34\x46\xf8\x2a\xf9\x31\x7a\x9c\xdf\x15\xc4\x46\x89\x5c\xe3\xea\x14\x34\x9d\x7d\xc1\xfe\x04\x7a\x84\xb1\xe5\xe1\x62\x34\xbf\xdc\xe5\xb2\x06\x8d\x28\x39\xdf\xed\x8b\x4e\x35\xa5\xd5\x8c\x45\xae\x16\x4c\xcd\xef\x45\x0a\xf3\xcc\x42\x15\xa2\xd2\x04\x40\xdf\x90\x5c\xd5\xed\xa4\x64\xc4\x28\x8f\x0b\x84\x10\x8b\xf8\xcf\xaa\x87\x88\x42\xb8\xde\xde\x84\xc4\xb3\xee\xdc\x63\xa1\xa1\xed\xc7\x86\x26\x20\x7f\x9b\x3e\x9d\xee\x43\xea\xea\xa0\xca\x22\x24\xb5\xf2\x5b\x1e\x0b\xf1\x2c\x0b\xe4\xb3\x90\xf9\x45\x6a\x70\x3e\xb2\xd0\xd0\x7b\xe4\x31\xb2\x44\xfb\x6c\x6f\x24\xe2\x9a\xe3\xb9\x6a\x07\x62\x25\x2f\xb6\x6f\x81\x1b\xb9\x5b\xef\xc4\xa2\xe9\x83\x65\x17\x5e\xa2\xb6\xe7\x12\xda\x2b\x90\x92\x9e\x4f\x15\x02\x64\x7f\x47\x80\x96\x85\x4c\x6b\x22\x70\xcb\xe1\xef\x35\x5c\x02\x02\xbf\x29\x3f\x99\xc0\x84\xaf\x15\x39\x05\x9c\x80\x3b\xf3\xb7\x78\x34\xc2\xd2\x5c\xc4\xbe\x1d\xde\xcc\x5f\x31\x2c\x43\xe1\x9b\x13\x2e\x4c\x46\x27\x5e\x8e\x6a\xbb\x89\x98\x07\x70\xe5\x16\x64\xcf\x99\x20\x4d\x2d\x62\xd5\xf1\x99\xf3\x02\xbe\xd3\x84\xc7\x5f\x82\xcf\x56\xf7\xc5\xff\x07\x17\x96\x0e\x04\xcc\x84\xd1\xc2\x58\x0f\x3e\x1c\xa0\xad\xb4\xbf\x07\x3d\xe5\x5f\x1d\x1e\x81\x22\xf7\x85\x03\x78\xd4\xf6\x16\xad\xcd\x13\xc9\xb9\xb2\xbd\x7c\x34\xb2\x72\xa0\x42\x33\x15\xbe\xd7\xfb\x80\x13\x09\x97\xb4\x3f\xc3\x47\xc0\xbc\x86\xf2\x78\x35\x1c\x5e\x69\xe3\xff\x01\x9e\x5b\xdc\xe6\x21\x85\x1e\xe5\xb9\x39\x6c\x82\xa2\x05\x8e\xf7\x67\xb1\x73\xf0\x3e\x97\x6c\x59\xd5\xf8\xcf\x5d\x2c\xa6\x99\x40\xa8\xa6\x33\xbe\x11\xfe\xe4\x13\x19\xbb\x89\x5a\x61\x1a\x9d\x0e\x22\xd0\x79\xda\x79\x28\x23\x69\x0e\x6d\x12\x9c\x1a\x68\x4d\x4d\x44\x22\x3d\x86\x29\xaf\xd1\xbd\xb6\x12\xca\x39\xf4\xc1\xbd\x48\xf6\x24\x28\x72\x68\x1b\x6b\x15\x94\xd7\x39\xc8\xdc\x0c\x0d\x57\xb5\x30\xb8\xb0\xad\xbe\x94\xfe\x04\x0e\x17\x54\xd3\xdd\xe0\xc7\xd0\x62\x1a\x09\x21\x27\xf2\xa9\xc3\xe8\xcc\xbd\x24\xea\x4e\xb4\xc4\xe3\x30\xe5\x1a\xe6\x63\xbb\x94\xd2\x80\x41\x77\x85\x2c\x19\x26\x18\x4c\x65\x36\x60\x19\x9d\x13\x18\x83\x58\x62\xe5\x6f\x86\x23\xb6\x3d\xef\x37\x1d\xc6\x36\x0b\x26\xd3\x2e\x63\xa7\x40\x25\x6d\x15\xd6\x98\x38\x85\x9a\x83\x7d\xdc\x6b\x47\x9d\x40\x5a\xe4\x61\x43\x29\x26\xe1\x6d\xfe\x51\xb8\x24\xef\xe1\x6b\xcc\x48\xd6\xb4\x0b\x97\x18\x7a\x66\x62\x47\x3a\xbd\x85\x91\x63\xe1\xd3\x97\xd1\x1f\xeb\x2c\x34\x1d\xdd\x8b\xf7\x98\x66\x45\xbb\x40\xe4\x53\xb3\x68\xf1\x47\x9c\x28\x7f\xa8\xf7\x03\x76\x50\x78\xd4\x23\xee\x2c\xca\x32\xea\x4c\x9b\xc7\x94\xd1\x94\xd1\xb7\x97\x30\xca\x45\x9d\x03\xa1\xf4\x47\x42\x66\x5b\x2f\xdd\x45\xb0\xaa\xfc\x13\x8d\xc2\xbb\xae\x75\xa5\x7e\xe0\x72\xb8\x18\x35\x8e\x93\x48\x08\xa5\xdc\x63\xef\x4a\x58\x48\x39\xcc\x72\xf4\x17\x90\xdf\x30\xfe\x73\x5f\x49\xa6\x33\xa6\xd8\xda\x92\x7d\xa8\x77\x6f\x86\x31\x3c\xd5\x47\xcf\x1d\xa7\xa7\xaa\xf0\xad\x53\x68\x66\x45\x4c\x59\x08\xf5\x9b\x2c\x34\xd7\x40\x0d\x97\x04\x73\x66\x50\x06\x45\x69\xf8\x19\x94\x10\x01\x3b\x7e\x21\xf9\x22\xcf\xe0\x77\x8f\x1c\xca\x39\xb7\x72\x90\xf4\x98\xbd\xdf\x76\x29\x89\x4b\x2f\xbe\x56\x43\x4f\x29\x51\xf7\x8f\xa1\x55\x98\x4a\x9a\x94\xd4\x2f\x05\x15\x25\x6f\xa8\x1b\xf5\xac\x9c\x78\x8a\x42\x7b\x98\x65\x4b\x19\xaf\x0e\xc0\x05\x91\x65\x4a\xd7\xc3\x3d\x64\x1b\xd9\xc4\x3d\x6f\x49\x0c\xf1\xc4\x95\xc7\xb0\x7f\x82\x5e\x5b\x39\x06\xb1\x56\x5c\xf1\xa1\x87\x35\x1f\xea\x3d\x4e\x43\xea\x5d\x1b\x96\x53\xf3\xaa\x97\x14\x49\x29\x77\xca\x6f\x2b\x97\x52\x96\x97\x20\x0c\x80\x9c\x57\xb8\x34\x93\x4c\x76\xd6\x37\xc7\xfa\x93\x24\x9a\x10\xdf\x1b\xa4\xd1\xaa\x45\x2b\xce\x63\xa9\x72\x7b\xdb\x42\xf4\x2c\xe7\xd8\xa5\x99\xf4\xa4\xf3\xb3\xbb\x63\x69\x99\x67\x5c\x6a\x3f\x50\x59\x9d\xe3\x0a\x59\x94\xd6\x96\x5a\xf9\x6e\xca\xa8\xfa\x4d\xb4\xed\xe4\xe4\xca\xe6\x53\x5f\x48\xc3\xa5\xd3\x63\x46\x93\x36\x17\x1e\xf2\x79\x88\x15\xe8\x67\xac\xd8\x8c\xfe\x51\x27\xd9\x5a\x50\x2f\xde\xd6\x21\x27\x7a\xca\x95\xb9\x5d\xe9\xb4\x8c\x0b\x03\xb5\x23\xa9\x68\xff\x1e\xa3\x99\x62\xe9\xa2\xca\x10\xf2\xdb\x56\x36\x95\x4e\xf6\xa9\xa7\x9c\xda\x47\xaa\xae\x0c\x39\x04\x93\x6c\xcd\x80\x0f\x05\x4b\x36\xae\x5c\xe1\x80\x36\x68\xd2\x6d\x2f\x23\xaf\x78\x0f\x06\xc3\xe9\xc9\xb7\xf7\x74\x96\xd2\x12\xaf\x56\xd5\x78\x51\x93\x2f\xde\x2b\xf8\x4b\x11\xf6\x37\x4b\x9f\x90\xbb\xbb\xf6\x53\x7e\x92\x27\xb6\x5c\x4f\xbf\x4d\x3a\x59\xb7\xfc\x90\x33\xd6\x5a\xe1\xe5\x13\x8c\xd9\x16\x05\xac\x70\x40\xf7\x6a\xaf\xdb\x2d\x44\x12\xf8\x4b\x2e\x57\x88\xa7\x67\xfb\xf6\x86\x0b\x29\xd9\x2f\x1b\xbc\x05\x56\x78\xb8\x78\x3c\xaf\x8b\x30\x47\x79\x93\x4b\x27\xdc\x62\xf4\x70\xb6\x11\xbb\xb3\x96\xb3\xfe\x82\x67\x62\xb9\xcc\x3e\xa8\xdf\x97\xcd\x30\xc1\x67\xdc\x52\xe8\xf7\x90\xe1\x71\x66\xfa\x06\xd4\x74\xe9\x9f\x88\x00\xce\xeb\xd1\x08\xad\xc0\x93\xf5\x2c\xbe\x1e\xac\x2f\x3a\xc8\x8b\x87\xc6\x29\xdd\xb9\xae\xd0\x29\xc6\x12\xf6\x27\xd8\x26\x33\x9f\xd5\x06\x37\xc6\xda\x32\x95\x48\x82\xef\x78\x06\x1b\x1d\xe7\x36\x9a\x7e\x01\x1d\x18\x77\x80\xbe\x1c\x9b\x7f\xc9\x57\xf8\x00\x9d\xd7\x3d\x2c\xe0\xa2\x4e\x75\x3d\xfc\xad\xe8\x2c\x93\x9e\x37\x02\x9d\xac\xa0\x71\x2e\xa2\xee\x74\x1e\x5b\x8b\x42\x99\xd3\x58\x99\xe8\x8d\x18\x05\xf3\x00\xe6\xea\x53\xca\x88\xc2\xe0\xe5\xed\x74\x03\xf6\x65\x9c\x37\x1d\xc0\x6e\x0f\x16\x09\xfa\x18\xb3\xbb\xfc\xf9\x62\x3a\xbb\x76\x37\x2f\x8a\xf6\xaa\xd0\x93\xbb\x86\x16\x2b\xf7\xe0\x4c\xa1\x3e\xa7\x85\xb3\x3e\x50\x55\x19\x63\x99\x97\xa8\xfb\x0f\x99\x19\x03\x94\x5f\xbb\x3f\xd2\x6f\x53\xcc\xcb\xf7\xd3\x17\x51\x94\xe3\x7c\x68\x04\x32\xf5\xc2\x6f\xfe\x1f\x41\xfe\xe9\x6e\xde\x65\x3e\x5a\xdd\xcb\x2d\xe3\xf9\x17\xf4\x70\xa8\x5c\x47\xe9\x0d\x76\x22\xfb\x2f\x75\x16\x6b\x2f\xdb\x3a\xfd\x23\x73\x33\x6b\xf6\xc1\x5e\xc6\x6a\xa6\xd3\xee\x10\xfa\x16\xc6\xea\xe5\x76\x34\x84\x9e\x33\x0e\xa3\xd6\x53\x7d\x06\xc2\xf9\x78\xe5\xb5\x0e\x27\x9e\x8f\xc2\xa6\x6a\x0b\x77\x8e\xcc\xd3\xe0\xcf\x7e\x23\x89\x92\xe0\x58\xe7\x44\x6c\xf2\x0d\x66\xb3\xe0\xf1\xc9\x1b\x8c\x2a\xfe\x96\xe8\x6b\xf4\x02\x2e\x6f\x57\x35\xad\x88\xfd\xdb\xb5\x9b\x7a\x93\xf5\x60\x5c\x35\xe5\x17\xed\xe7\xd9\x6e\xde\x13\x53\x7c\x6b\x0d\xb7\xa4\xc0\x5c\x71\x83\x03\xe9\x9f\xe9\x47\xb3\xb7\xeb\xac\x45\x07\x58\x53\x73\x97\x62\x6f\x98\xa3\x54\xf1\x69\xae\xf4\x9f\x72\xd9\x01\x1e\xed\x85\xa4\xc3\xbb\x87\xfa\x58\xe4\xe8\xea\x4f\xf9\x25\x88\x1b\xf7\x8d\xfc\x8d\x19\xda\x07\xf3\x0a\xeb\x77\x34\x07\x70\x4f\x54\x93\xcb\x88\x9c\xb5\x15\xd5\xda\x6e\xd6\x6b\x73\x9f\x60\x1b\xb3\xd2\x74\x16\xf9\xcd\xc8\x31\x5c\x49\xcd\xa6\x73\x75\x17\xa3\x56\xd1\x32\xd4\xe7\x76\x76\x53\xe3\x94\x8e\xcb\x3a\x28\x71\xb2\x3d\xd6\xd3\xc9\x6b\xd9\xa9\xbd\x6b\x78\x83\x67\xd6\x37\x2e\xe4\x66\x76\x96\x9a\x23\x38\x2e\xad\x9f\x73\x3b\x58\x97\x1a\xc7\xf1\xa2\x98\xfc\xea\x5f\xf0\x46\xc6\x91\xf2\x97\xc7\x5f\xd0\x7d\x8a\x7b\x22\x1e\xd1\x5c\x0a\x54\x5e\x9d\xd4\x31\x79\x76\xcb\x16\x91\x3f\xe7\xcc\xb4\x9e\x4f\x32\x71\x5d\x7a\x82\x78\x17\x2f\x02\x0d\x5b\xb9\x99\x67\xed\x4b\x4e\x71\x66\x77\xbf\x55\x3f\x64\x9d\x69\x97\x72\x59\x4c\xb0\xc9\x0e\x02\x19\x3e\x35\xe8\xf1\x6d\x74\xe7\xf2\x9b\x11\x51\xd4\x4f\xc5\xee\x5e\xd1\x94\x8b\x86\x07\x4b\xbf\x92\x2b\xd4\x5f\xad\xbd\x49\xfe\xdc\xd6\x6e\x05\xaf\xf7\xea\xef\x7a\x0a\x37\x69\xb0\xad\xb8\x96\x33\xe6\x9c\xaf\x7a\x05\xab\xb4\x47\xc2\x79\xc2\xdc\xdf\x5e\x0c\x3e\x67\x4c\x6e\x2c\x3f\xd6\x45\x7b\x50\x9d\x13\xfe\x8d\x5a\x5c\x86\xf3\x72\xa6\x10\x0a\x1b\x97\xbe\x25\x7b\x6b\xb6\x5b\x8b\xb1\xb3\xbc\xb1\xbd\xa3\x55\x7f\x70\xe1\x8d\xe1\x4a\x9b\xec\x69\xa5\x1b\xe4\xa3\xb2\x7b\x35\xb7\xa4\x4b\xf0\x18\x9f\x2b\x0e\x25\x04\x20\xa0\x10\x22\x6e\x4b\x05\xf8\x46\x30\x20\x12\xe2\x3e\x81\xf6\x79\x89\x38\x7b\xe0\xa0\x25\x54\xf6\x16\x84\x68\x55\xc8\xd4\xa0\x99\x3d\xeb\x55\x6c\xc2\x9f\x06\xb1\xc2\x40\x4c\x32\x23\xb2\x62\xe2\x55\xcd\x0a\xc9\x55\x70\x3b\xef\x85\x78\x34\xd8\x0e\xbf\x14\xae\x87\x92\x52\x50\x7e\x1a\xec\x1c\x09\x70\xdb\xe0\x2b\x5e\x8b\x39\xee\x08\x7d\x89\x27\x7b\x05\x7a\xc0\x8a\xcd\x14\xa2\xb7\xbb\xe3\x55\x73\xe0\x0b\xf5\x3d\x8a\xad\xf0\xbd\x92\x66\xd9\x5e\xc4\x36\x17\x95\x90\x90\x79\x3c\x3f\x51\x2d\x12\x02\x47\x08\x3e\x20\x55\xc7\x7f\xf1\x57\xa0\x2e\x11\x52\x2e\x13\x65\xed\x18\xe2\x58\xa1\xef\x96\x8c\x60\x8f\xc1\x30\x2b\x94\x79\x0c\x23\x77\x7e\x55\xee\xa4\x05\xd5\x45\xcb\x09\xd4\x57\xc5\x09\x52\x39\x35\x4d\xbd\x5c\x3c\x44\xb5\xe6\x8e\x17\x4d\xa1\x34\x42\x9e\x82\x70\x0a\xfb\xd8\x6f\x9e\x8e\x72\x3c\xbc\x99\x6b\x45\xf1\xdc\xb1\x92\xcd\xa5\xd8\x2e\x2e\x66\xf1\x28\x0b\xac\x68\x8c\x27\x64\xab\xd3\x1a\x05\x83\xc7\xae\x5d\x25\xcb\xe7\xca\x8a\x26\x4b\xae\x72\xf8\xaa\x37\xe2\xe9\x6c\x16\xfb\xb1\x30\x81\x25\x07\x17\xf0\x6b\x98\xe7\x8f\xd9\xf3\xac\x99\xe3\xf7\xbf\xe1\xa4\x30\x36\x6f\x2f\x65\x7d\xa4\x53\x17\x63\xcc\x07\xf4\x55\x56\xb7\x18\xcb\x28\xad\x1d\xb3\xe5\x55\xf2\xe8\x6a\xa5\xf4\xbb\xf4\x42\x61\xab\x64\xb9\xc4\x4d\x99\x2f\xca\x12\xa1\x2c\x8b\xa0\x5b\x70\x97\x68\xc3\x77\xe4\xa7\x1f\x9d\xce\x85\x78\x36\xfb\xa7\xb0\xaf\x72\x78\xdb\x5d\x58\x61\xec\x9d\x8b\x43\x99\x8b\x59\xdc\x31\x1b\xe9\x91\xb4\x83\xad\x97\xe4\xf3\x0a\xac\x2b\x29\xd2\x28\x7d\x71\x41\x96\x58\xab\x5b\x25\xa7\x08\xaf\xe4\x6a\x18\x9d\x82\x29\x39\xa3\xf1\xbe\xbc\x54\x05\x3b\x49\xcc\x39\x2b\x1b\x1f\xfa\x91\xed\x2c\x66\x6c\xdb\xc9\x14\x0b\x77\x2d\x7a\xc9\xd8\x2d\x98\x3c\x06\xa6\x05\x33\x04\xcd\x91\xf2\xd1\xd5\x6e\x15\x23\xa5\x6b\x2b\xaa\xf2\x3d\xc4\xf1\xa5\x5e\xd2\x38\x21\xa3\xa8\x91\x76\x91\x5f\x63\x9c\x83\x83\x79\xa3\xf5\xcc\x23\x3f\x39\xd1\x9a\xb7\x21\xb5\xac\xb2\x9c\xb0\xad\xfe\xcc\x89\x8a\x15\x8b\x62\xe8\x16\x69\xc8\x18\x21\x55\xc2\xc2\x37\xc6\xc9\xe7\x76\xc6\x97\x2d\x91\xba\xb7\xad\xcc\x5b\x2b\xf6\x6f\xbc\x21\x3e\x21\x4c\xad\xdd\x4f\x79\xc3\x17\x5b\x1a\x33\x3b\xb9\x83\xa5\x73\x12\x32\x39\xd3\x4c\x60\x70\x32\xeb\x70\xfe\x8b\x2d\xbe\x8c\x56\xed\xbf\x85\xed\xf4\xed\x4a\xc5\x18\x2d\xe5\x3b\xc7\xba\x81\x2c\x5f\xd0\xdf\x5b\xba\x4f\xea\xde\xb3\x51\x17\x25\xde\xd5\x41\x15\x49\x85\xb1\xcd\x2a\xca\x0c\x3e\xa9\x8e\x9d\x09\x70\x6b\x2a\xa1\xf8\x73\xec\x77\xa5\xc9\xfb\x86\x59\x1e\xa6\xcc\xcd\x77\x19\xcc\xfc\xa4\x85\x34\xda\xaf\x9c\xcd\x63\x6a\x28\x3a\x8e\xbc\xbe\x5f\xee\x3c\x78\xdc\xac\x94\x2e\x3a\xa7\xd1\x1a\xc5\x1e\xbd\x5a\xe1\x3d\xe1\xee\xd3\x91\xe4\x34\xfe\xc1\xe6\x0f\x19\x89\x5c\x72\x1d\x25\xde\x87\x6d\xa9\x1c\xbf\x2f\x93\xf9\xca\x6c\xda\xac\x64\xac\x2d\xf8\xb8\x30\x93\x26\x52\xa7\x8e\xf9\x4c\x99\xc3\x79\x60\xf9\x6d\xf2\xc0\x8d\x31\xca\x0b\x36\xe0\xea\x54\xd1\xfa\x23\xd9\x41\xdc\x5d\x5a\x03\xde\x1a\x39\xa0\x7e\x8c\xbf\x97\xd6\xaf\x5a\x44\xb8\x12\xf3\x4e\x7e\x8c\xf8\x70\xaf\x87\xa4\x01\xfc\xbd\x61\xae\x68\x17\x3c\xd9\xf9\x8c\xe0\x31\xb2\x73\x44\x13\xa7\x0e\x25\x58\xd2\x0b\xeb\x08\x11\xc6\xb1\x86\x21\x42\x87\x72\x50\x3f\x8e\x38\x8d\x73\x46\x1b\x42\xe4\xc1\x8f\xd4\x1a\xd0\x31\xed\x80\xf2\x25\x78\x3e\x86\x27\xf7\x84\xa4\x01\xb7\x25\x22\x38\x7e\xfd\x2d\xd1\x72\x64\x85\xb3\x5c\x70\x19\x9d\x3a\xa2\x9c\x53\x88\xf6\x56\x5c\x2d\xf4\x83\xae\x16\x9c\x34\xa4\x40\x9f\x94\x9b\xf2\xca\xe1\x31\x9c\xcd\x9a\xbf\xf0\x2a\x38\x49\x1d\x04\x63\x27\x5e\x2a\x0b\xe0\xf7\x31\x4b\x65\xdf\x11\x5c\x00\x53\x72\x10\xf9\xb9\x5e\x25\x1a\x81\x92\x9c\x4f\x0a\x4a\xb0\x95\x23\x6a\x38\x10\xe6\x57\x7e\xc6\x18\x4b\x69\x34\x44\xe7\xeb\x29\x09\x8a\xc5\xba\x3f\xe4\xbf\x6c\x77\x4d\x24\xb9\x01\x3a\x91\x53\x4d\x66\x9e\x18\xa7\xb4\x23\x83\x87\x92\x64\x49\x64\xb2\xff\x73\xf1\x4d\x32\x71\xbd\xab\x90\x4a\xc6\x9c\xfd\x04\x2e\xe4\xe1\x11\x2f\xd9\x5f\x49\x85\x65\x31\x05\xc5\x9c\x69\xf9\x53\xf4\x9f\xd9\x21\x72\x2b\x5d\x08\x0b\x63\xcd\xcb\xad\x64\x56\x83\xd9\x39\x0e\x8c\xef\xa9\x8b\x14\x19\x8c\x84\x83\xf9\xd2\x1b\xf4\xfb\xfe\xbb\xc4\xbb\xe8\x81\xeb\x4e\x0b\x5e\xd1\x86\x9d\x5d\xf9\x99\xb4\x6f\x23\xd7\xb2\xbd\x28\x0b\xcd\x6f\x0b\x96\x4b\x26\xe5\x9d\xd7\x27\x8b\x2e\x4a\x6f\x69\xdb\x85\xa7\x98\x63\x72\x67\x09\xa6\x11\xb3\x54\x04\x5e\x5f\xca\x26\xf9\x23\xae\x21\xfa\x9a\x34\x80\xc3\xf5\xd3\x89\xaa\xd8\xc7\xd6\x45\x09\xf6\xb0\x50\x67\x27\x5e\x19\x2b\x71\x64\x2e\x2b\x8b\x9a\x57\xb2\xcc\x50\xaa\x2b\xd1\xfe\x97\x77\x53\x63\x92\x8c\xd0\x2e\x56\xb3\xe8\xbe\x6a\x9c\xca\x1f\x7f\x5b\xd9\xa7\x98\x72\xac\x5f\xbe\x42\x36\xea\x80\x5c\xa2\x14\xff\xdb\x63\x16\x7e\x13\xfe\x5c\x5b\xca\xa7\x0a\xc2\xe6\x0e\x73\x5b\xf9\xfe\x23\x3f\x32\x8f\xd1\xd5\xa6\xbf\x86\xe0\x32\x65\xee\xe7\x3c\x41\x49\xae\xc8\x45\xf3\xd0\x24\xa5\x62\xea\x39\x05\xc9\xd9\xab\x94\x31\xfa\xed\x47\x77\xca\x3a\xb4\x1b\xa2\x76\x48\x16\xa8\x77\xf8\xe6\x0a\x61\xe5\x41\xcf\x3b\xbc\xbf\x72\xa7\xb9\xe9\xdc\x69\x62\xf1\x28\x67\x86\x8e\xe9\x5d\xe8\x63\x38\xd5\x5c\xaa\x5e\x96\xc7\xae\x7f\x2c\xd8\xa3\x69\xaf\x19\x41\x6e\xc9\xf9\x6a\xb1\xc9\x62\x2b\x97\x97\x8e\x4b\x6a\x93\xa1\x45\xce\x11\xaf\xc4\xd7\x0a\x02\x7c\x08\xc2\x45\x79\xd5\x6b\x7e\xf3\x34\x9a\xb9\x4e\x2f\x39\xf9\x72\x9b\x51\x9b\xe9\xbf\x59\x06\xa3\xcc\x90\xd4\x79\x2c\xe7\x48\x1e\xad\x2d\x9a\x9f\xa9\xa9\x6e\x5a\x42\xfa\x94\xf3\xa4\x76\x38\x73\x40\x39\xa5\x12\x4d\x9a\x20\x3b\x54\xb6\x21\x22\x4c\x6c\x2e\x1e\xbf\xfb\x97\xe0\x8b\x71\xd1\x1a\x1d\xef\x88\xee\x85\x53\x13\x27\x42\x71\x72\xd4\x01\xba\x81\xbd\xb0\xe0\xaf\x61\x7f\x1f\x51\xd5\x9a\x97\xd1\xbd\x8e\xd7\xae\xc9\x69\x1f\x20\xed\xce\xe9\x6d\xde\x96\xe9\xa1\x78\x5d\xa7\x4f\x64\xc8\x16\x57\x4d\x08\xbf\x2f\x3e\x56\x56\xbc\x5b\x27\x30\x17\x59\xd6\xc4\xf3\x1c\xf2\x47\x3b\x59\xd8\x4f\x94\xc4\x51\x4a\xfa\x52\xf6\x49\x35\xae\x76\x34\x2e\x45\xf8\xbb\x32\x3a\xdb\x9e\x76\xbd\xac\x25\xdb\x40\x1c\x57\x32\x06\x1f\x92\xca\x2e\x0c\x21\xcc\x8f\x25\xe7\x1b\x89\xe3\x83\x23\xb5\xdf\xc0\x99\x3b\x70\xea\xbd\xd0\xce\x95\x3b\x95\x0e\xf0\xc9\x19\x90\x5c\x8b\x94\x00\x00\x9f\x8c\x7e\x56\x4f\xaa\x91\x11\x0e\x0a\x73\x2d\x9f\x08\x2d\x34\x52\xd9\x01\xa2\x13\xa1\xa9\xb8\x86\x28\x4e\xdd\x52\x68\x0b\x2e\x8a\xdd\x9c\x9f\x08\xde\x08\x76\xd4\x76\x40\xc6\x1d\xdb\xd4\xf3\x61\xfa\x4a\x47\xc5\x47\xe4\xc4\x8c\x04\x39\x1b\x3d\x0a\x00\xfc\x13\xd8\xbc\x9c\xe2\x9a\x85\x50\xa6\x70\x8d\x85\x0b\x49\x69\x2e\xa5\xdf\xa1\x5e\xc2\xe1\xe2\x83\xd0\xdf\x94\xb7\xc6\x76\x38\x32\xe6\x53\xfe\x1c\xf8\xd2\xbe\xbb\x5a\x18\x49\xd8\x61\x93\xf3\x0a\x05\x56\x7c\x57\x9c\x46\x8b\x67\xec\x97\x47\x61\x20\x00\xf0\xb7\x61\x6c\x55\x5f\x75\x02\xf9\x81\x20\xb9\xe2\x22\x59\x4f\x8d\x2f\xdd\x4d\xf6\xc3\x9b\x8a\x6a\xc8\xd3\x52\xbc\x8d\xb3\x48\x7f\x62\x0e\xea\x51\xb2\xcd\xbe\x18\xcd\x23\xb2\xc7\xf6\xe2\x9c\x83\xe4\xe0\x15\xf5\x8a\x75\x64\xe6\x8c\x7d\xb2\x36\x8a\x27\x00\xf0\x2a\x49\x75\xca\xc1\xaa\x1a\x16\x95\x0f\x55\x2c\x64\x3e\xa2\xc0\xe6\x62\xe6\xe2\xec\xeb\x45\x53\x19\xac\xe3\x82\x02\x90\xfe\xeb\x50\x5d\xde\x53\xba\x2c\xe8\xa2\x26\x88\xbe\x6b\xfb\x76\x55\x27\xed\xe3\x0a\x58\xce\xa7\x5d\x98\x11\x2f\x7d\x4d\xf7\x05\x00\xee\x6b\x8a\x8d\xa2\xa4\xca\x5d\x68\xe1\x1d\x2d\x57\x0b\x8a\xc8\x3c\xf3\x6c\xfe\x51\xdc\x2f\x13\x99\x17\x76\xec\xbc\xe1\x09\x37\xe8\x90\x55\x5e\x30\x27\x25\x68\x5d\x6e\x1b\xdb\xb0\xed\x8a\x6a\x3e\xeb\xe6\x0a\x6f\xd9\x5d\x56\xf4\x0c\xae\x14\x60\xad\x02\x00\xee\x44\x6a\xb0\x3c\xbd\x92\x90\xbb\x84\xeb\x5a\xf6\x26\x27\x9a\xb4\xb9\x24\x5d\x49\xcb\xaa\x2f\x3c\x2b\x97\x1f\xd5\x18\x5c\xa4\xcd\xd1\xdf\x74\x3c\xc9\xc4\xc0\x10\xf5\x7f\x22\xca\xb6\xf9\xca\x48\xe1\x18\xb7\x5b\xb2\x11\x82\xe9\x33\x10\xf1\x1b\xde\x2c\x20\x91\xfd\x9d\x3e\x41\x7a\xa7\x72\x5d\xd1\x15\xb6\xb1\x8c\x5b\x38\x06\xbd\x57\x62\x63\x40\x33\x0f\x17\x86\xe7\x95\x26\x1f\xc8\xd7\x6b\x3e\x1e\xb8\xa4\xb3\x56\x43\x7b\xf7\xab\xd3\x55\x4b\xb6\x86\x2b\xce\x29\xac\xdc\xfc\xa5\xc7\x65\xc8\x8c\x70\xf1\x7c\x21\x0e\xa8\x60\xcf\x64\x50\x25\x69\x95\x23\x6a\x51\xd6\xd2\xb2\xb8\x2a\x27\x64\x47\xf1\xb9\xf2\xb6\x53\xcf\x0b\xc7\x9b\x7d\x92\x46\xe5\x07\x9b\x1e\x45\xa9\xb4\xe5\x05\x55\x01\xbb\xd4\x76\xfa\xc6\x2d\x99\x8a\x18\xdd\xc4\xe5\x06\xc9\x87\x9c\xf7\xd3\xff\x8a\xc4\x92\xf5\xc0\x3d\xd6\x09\xa6\x45\x2c\xb3\x7c\x6e\x56\x33\x13\xca\x82\x1a\x00\x98\x54\x6c\xa9\x09\x3b\xb5\xd9\xf8\xd1\x62\x48\x4c\xce\x5f\x5a\xfa\x27\xca\x4e\x8b\x15\x33\xfd\x2f\xe4\xdc\x28\x8c\xda\x32\x59\x31\x3f\xdf\xb8\x3c\x56\x52\xa6\x99\x37\xfd\x8d\x68\x8d\x34\x16\xf8\xc5\x1a\xcf\x72\x12\x0d\x5a\xee\x9d\x9e\xc1\x28\x2f\x5b\xd5\x1a\x0a\xdd\x2e\x66\x35\x82\xe9\x45\xc6\xce\xda\x82\x23\x2f\xf4\x1f\x2b\x2f\x47\x6a\xb5\x5b\xcb\x3d\xfc\x33\x72\x04\x25\x87\x37\x5f\x94\x0f\x1a\x13\x97\xaf\x91\x04\x68\xcf\x4f\xff\x29\xac\x94\xed\x18\xb1\x8c\xa9\x64\x45\x31\x26\x77\xbe\xc8\x7e\x0c\xe7\xb7\x45\xe0\xf7\x67\x70\x1a\xef\xe1\x4f\x27\x5f\xa9\x8d\x27\x04\x1d\xcc\xb3\x0c\x13\x6d\xf6\xbd\x2e\x8d\x20\xbe\xf1\xde\x6a\xba\x0e\x7e\xf1\x7c\x65\xc8\x82\xe7\x2f\x8c\xd3\x9d\x41\x92\x27\xcc\xd7\xfa\xa2\xe7\x01\x40\xb4\x04\x33\xd1\xaf\x77\xe2\x88\x18\x7c\xa2\xf5\x03\xb1\x2b\xe3\x50\x23\x99\xf8\x37\xd9\x5c\xeb\x00\x86\x1f\x24\x58\xc4\xe0\x8d\x7d\x7d\xa5\x93\x21\x9a\xb7\xb3\x49\x09\x87\x79\x5e\x35\xec\x40\x76\x2d\x0c\xd4\x69\x51\xdf\x09\x6e\xda\xd9\x58\x22\x00\x88\x6c\xb1\x26\xba\xb4\x73\x34\xbc\x03\xf6\x68\x65\xc2\x11\x19\x0b\x1b\xe7\xc1\x89\xc9\xf8\x9a\x06\x98\x7d\xd0\xdf\xb2\x15\xbe\xbe\x2f\xcf\xdc\x83\xec\xdb\xf9\xcf\xe4\x8f\xbc\xf1\x6c\x35\x00\xa8\x7e\xe1\x0e\x5d\x2c\x76\x6a\xc2\x3a\xcd\x35\x52\x28\x00\x08\xaf\x93\xec\x69\x0f\x4f\xef\xa4\x38\x42\x8a\x96\x8b\xe4\xd3\xa7\xf2\x1a\x52\xc8\xb1\xc9\xa3\x6b\x46\x93\x97\x44\xbf\xaa\x10\x92\x67\xee\xf3\x33\x4f\x25\xaf\xd9\xd9\x5a\xa8\x23\x67\x78\x2a\xf3\x63\xc8\x9d\x0b\xdd\xb4\xcd\x94\x6d\x13\x92\x34\xb6\x94\x02\x00\x10\x2e\x27\x4f\xa2\x1d\xe8\x48\x61\xb9\x40\xe3\x5a\xc6\x30\x71\xa7\xc6\xd5\x5b\x18\xfd\x49\xdc\xea\xbd\x8c\xd5\xd1\xec\xf2\x7b\xf4\xf6\xa0\xcf\x25\xc9\xf4\x53\x3b\xb3\x8c\x1f\xe9\x7b\x3c\x93\xf5\xc5\xf4\x4d\x0b\xe7\x6b\x3e\xd0\xe9\x13\x72\x73\x27\xd1\x67\x02\x80\x60\x1f\x65\x07\x75\xa0\xbd\x4d\x50\x0a\x26\x35\x47\xf0\xd5\xe9\x47\xea\xfe\xf1\xc8\x49\x63\xab\xf4\x5c\x6e\xf4\xdc\xf2\x55\x9c\xf2\x20\x59\x71\x33\xfb\xd3\xce\x45\x46\x6f\x76\x9c\xa7\x67\xde\x5b\xd6\xf7\x85\x33\x35\x8e\x6c\xc7\x09\xb7\xd5\xa3\x98\x69\x00\xc0\x8f\xa5\xc6\x52\x3e\xb7\xdb\xe5\xcc\x20\x0a\x9a\x24\xca\xd0\x93\xbc\x3a\x37\xb9\x32\x71\x71\x65\x97\xf4\xc5\x01\xdf\x32\x3f\x49\x74\xe0\xad\xa2\x21\xd1\x5f\x2f\x69\x41\x98\xf0\xca\x9a\x6b\xba\xaf\x82\xb7\x0b\x47\xe4\xda\x0a\x4a\x26\xae\x50\x15\x70\xc4\x00\xc0\x5b\x44\x7b\x4f\xbe\xd7\x16\x62\x74\x22\xf0\x1a\xbf\xe4\xf7\xa4\xe9\x6a\xf3\xf2\x32\x8f\xac\xac\x74\xd1\x8e\x8e\x8a\x28\xd5\xa9\xbb\x02\xad\x8a\xe6\xa9\xba\x76\x3c\x36\x14\x28\xc7\xac\xd9\xaf\xdb\x22\xef\x5a\xd0\xad\xde\x2e\xa5\x4d\x0c\x52\x2a\xf9\x2b\x00\x80\xbb\x96\xb1\x88\xd4\xd2\xfa\xc6\xb2\x1e\x9f\xdd\x28\x2e\xcb\x3c\xc1\xa9\x5d\x53\xa2\x4d\x70\xb3\x54\x9a\x0a\x23\x93\x4b\x5d\x0a\x6e\xec\xf5\x30\xe9\xf3\xa3\x76\x78\x1a\xe6\xe4\x6d\x59\x7d\x49\x5b\xa6\x09\x5f\x00\xe5\x68\x95\xa2\x89\x61\x8a\x5e\x61\x3c\x00\x70\x10\xe6\x54\x92\x67\x6b\x53\xed\xef\xec\x77\x8d\xb1\x55\xc3\x27\xc6\xd6\x8e\xaa\xa8\x8f\xaf\xb7\x40\xa5\xbc\x88\x1f\xe6\x27\xc5\x92\x80\xcb\xa6\xd8\xc2\xcf\xdb\x5f\xe6\xdf\x2a\x98\xbc\x5a\xad\x8d\xd5\xfd\x5c\x10\x9f\xe3\x9d\xb3\x7e\x62\x8c\x22\x58\xe4\x0f\x00\x1c\x47\x66\x12\xd6\xdc\x8a\x36\xbb\x67\x13\x1a\x17\xd6\xf7\xa4\x2a\x6a\xce\xd4\x24\xc4\x07\x5b\xd6\x56\xce\x8f\x30\x98\x95\xe5\x93\x03\x78\x26\xbb\x92\x4f\xdb\xeb\xf3\x49\x26\xfb\xd5\x90\xe6\x57\xbe\xf5\x82\x44\xd5\xa0\x9a\x36\x91\x25\x6f\x11\x03\x00\xc0\xce\x67\x72\x11\xaf\xbe\x4f\xf8\x8f\x59\xf6\xdd\x2b\x08\x3b\x8f\xef\x6b\xc7\x13\x24\xb1\x3f\x9b\x6a\x89\xa3\xf7\xef\xab\xbd\x4f\x2c\xf1\x5b\x58\x69\x07\xa2\x5b\x67\x95\x6e\x85\x60\xf7\x53\xa6\x5c\xd8\xe4\x2c\x33\x3c\x42\xbe\xd9\x55\xeb\x4f\x60\xc9\x00\x20\x8e\xc3\x7e\x22\xf3\xfa\x18\x60\x56\xe6\x87\xae\xb3\xa0\xf2\xf8\xda\xf6\x19\x60\x63\xec\xe3\xa6\x43\xe0\xb7\xfd\x1b\x6a\x45\x50\x82\xdf\x44\x4b\x17\x3c\x72\xab\xb5\xf9\x3f\x78\xc0\x3d\xd5\x74\x18\x69\x76\x16\x1b\x2a\xd0\x41\xbb\x73\xfa\x55\xd8\x53\x00\x10\x7b\x91\xc6\xc0\xdf\xfb\x1c\x91\xd9\x99\x03\x5d\x09\xc8\x94\xe3\x53\xda\xea\x10\xeb\xd8\xee\xa6\x91\xc8\xc4\xfd\x4e\xb5\x1b\x90\xbd\x7b\x7e\x58\xd2\x90\xb6\x2d\xdf\xcc\x85\xe8\x7e\xf7\x78\xd3\x54\xcc\xde\x59\x6c\x38\x82\x7d\xb5\xbb\x93\xf7\x98\x54\x0b\x00\xe2\xd1\xa4\x20\x38\xfd\x4c\x34\x45\x97\x19\xd2\x59\x44\x71\x3f\x56\xd4\xfa\x9b\xdc\x15\x8b\x6b\xdc\x45\xc6\xc2\x1e\xd4\xa0\xe4\xa3\x7b\x7a\x2a\xaa\xc9\xe4\x2d\x43\x25\xcf\xc9\xdd\xee\x07\x0b\xe3\x29\xce\xce\xca\x7c\x13\xe5\x9c\xfd\x8c\xbc\x31\x94\x6e\x00\x10\xed\x25\xef\x82\xa7\xf5\x12\x59\xc9\x19\xaf\x4f\x5f\x64\x56\x1f\x5b\xdb\xea\xca\xf8\x1d\xbb\xb4\x01\x65\xc4\x85\x95\x56\x77\xd0\xdf\xee\x91\x97\x7f\xa6\x17\x6c\x29\x2b\x59\x42\x67\xba\xfb\x18\x73\xe8\x0a\xe7\x5c\xfd\x59\xc6\x7c\xfb\xfd\xda\xdf\xb4\x5f\x00\x20\x8c\xa5\x1c\x81\xf8\x3d\x4d\x02\x4b\xc6\xf1\xd3\x76\x7c\xf9\xd1\x96\x96\x23\x3c\x52\xcc\x60\x7d\x0b\x97\x1d\x96\x56\x3d\x8a\x53\xb7\x27\xb6\xdc\x93\x33\x7a\x0b\xad\x38\x99\xcd\x72\x5f\x59\x70\x9e\x1d\xe8\xac\xcf\x7b\xc4\xee\xb5\x97\x69\x1e\x31\x27\x01\x80\xe0\x08\xf5\x14\x34\xbe\xfb\xa9\x8a\x71\x6a\xb8\x63\x85\x62\xe8\xa8\x4b\x33\x24\x5f\x18\xb3\xa8\xae\x57\x4a\x0f\xed\xaa\x1a\x21\x99\xe2\x3b\x58\xb6\x52\x74\x75\xcb\x8c\xa2\x83\xc2\x6b\x2b\xff\x33\xd4\x0b\xbd\x9c\x5b\x75\x85\x82\x0a\x07\x87\xdc\x44\xf6\x0b\x00\xe0\xcf\xa2\xbd\x06\x17\x76\x2f\x29\xb0\x3f\x35\xb1\x1d\xd4\xb7\x27\x9f\x6a\x1a\xd0\x81\x87\x0e\xd7\x8d\xd5\xb8\x87\xfc\xad\x5c\xaf\x9e\xe7\xbb\xb0\x34\x49\xb5\x7f\xb3\xd8\x24\x54\x3c\x5e\x99\x97\xff\x50\x3e\xe0\xac\xd5\xb6\x49\x2e\x39\xf8\xaa\xb7\xf2\x36\x01\x00\x6f\x1e\x63\x1c\x31\xa0\x4b\x5b\x2e\x4d\xdf\xdc\xf6\xc5\x7c\x33\xc9\xd4\xe4\x5d\xbc\xe8\xa0\xb6\x16\x5f\x18\x13\xb2\xcb\xa2\x33\x5c\xf1\x61\x9a\xcf\xe9\x4b\x37\xcf\x28\xfc\xa8\xcb\x5f\x19\x94\xef\x99\x1b\xe3\x2c\xd7\x7c\x51\xf8\x39\x20\x39\x7e\x02\x0f\x00\xe0\x1e\x66\xdc\x22\xbc\xe8\x8a\xab\x19\x7d\x72\xb8\xad\xde\xf2\x5f\x92\x5f\x93\x55\xd9\x9f\x83\x5e\xb5\xab\xcc\xd6\xc1\x9f\x2c\x21\x45\xb1\x3e\x5e\x66\xd0\xf8\x6b\xd3\xd3\x42\x7d\xfe\xe3\x95\x2b\xf4\x77\xb4\x5a\x67\xb9\x46\xa0\x6c\x73\x50\xaa\x06\x05\xff\x00\x80\xf3\x9b\xe9\x48\xe0\x76\x39\x36\x3c\x3d\x49\x6f\x3b\x51\xab\x4d\xfc\xd4\xd8\x50\x75\x22\xfa\xbf\x9a\xfb\x15\x69\xc1\x95\x15\xdf\x4b\xa5\x3e\x93\xcc\x8e\xc5\x51\x9b\xfa\x0b\x37\x1b\x8f\xae\x9c\xaf\x4f\xc9\x3b\xe8\x5c\xac\xb1\x57\xdd\x73\x18\x50\xad\x16\x6a\x00\x80\x43\x66\x7a\x66\x4f\x1d\x78\x4a\xdc\x98\xfa\xac\x7f\x02\x31\x3a\x21\xbe\x7b\x3d\x91\x11\x15\xd2\x1e\x40\xbc\x12\xf8\xb7\xc9\x17\xdc\xef\xbd\xb1\xd6\x1b\x9a\xbc\xbe\xc2\xe2\x05\xfd\x73\x55\x99\x71\xc8\x1c\xc7\x48\x53\x0f\x9a\x65\x33\xc9\x70\x0f\xeb\x07\x00\x09\x4c\x5a\x9e\x6d\x37\x80\x41\xa5\xa9\x6f\xfb\x8a\xa0\xfc\x84\x88\xae\xeb\x90\x26\xca\xaf\xed\x3d\x54\x13\xf8\xbd\xf1\x13\x0c\x78\xaf\xaa\xf9\x0c\x73\xd7\x17\x55\x7c\x41\xbc\x5d\x73\xcc\x9e\xa8\xab\x63\xa4\x89\x8d\xf9\xda\xb8\x19\x74\xa4\xd5\x00\x20\x09\x23\xb9\xe3\xfe\x0e\xcc\x42\xbd\x52\xef\xf7\xed\x40\xed\x12\xfc\xbb\x4e\x22\xc3\x51\x1b\xdb\x84\x48\x47\xe0\xeb\x46\x19\x72\xd7\x7b\x69\x8d\x1c\xdd\xb8\x3e\xbf\x42\x85\xf6\xba\xaa\x4a\x9e\x60\x44\xc7\x48\xd3\x7a\xd2\x49\x9b\xcd\x86\x5d\xa4\x97\x00\x20\xb1\x27\xa5\xe3\x72\xcf\x87\x52\xc1\x54\xda\x19\x94\xf2\x26\xfe\x4b\x67\x19\x25\x31\xca\xba\xb5\x97\x32\x2e\x70\xa0\xe1\x3c\xf9\x9e\xf7\xf8\xea\xb3\xe4\x57\xeb\x25\xe5\x67\x29\x8b\x5c\x75\x25\x0b\x28\x02\xc7\x23\x85\x49\xd4\x03\x36\x99\xf9\x07\x28\xe7\xff\x2f\x8b\x1c\x85\x4b\x3b\x77\x84\x3d\x35\xd5\xab\x57\xc6\xda\x15\x5f\x74\xba\x87\x89\x44\x3e\x6a\x79\xcd\xb8\x10\x78\xba\xfe\x27\x23\xc8\xdb\xaa\xea\x1b\xfd\xcf\x7a\x61\xd9\x67\xfa\x23\xd7\x82\x62\x6f\x86\xad\x23\x62\x4c\x65\x9c\xb7\xa9\xd7\x6f\xa5\xdd\x02\x00\xd1\x2e\x0a\x2e\xeb\xe9\x59\x91\x70\x49\xca\xad\x9e\x46\xfe\x8f\xf8\xe0\x8e\xc7\xbc\x1b\x91\x55\x2d\x93\xb9\x97\x02\xcb\xeb\x97\x71\x7e\xef\xfc\x5a\x35\x9f\xe3\xb7\x9e\x59\x36\x8b\x7d\xcb\xb5\xb8\x28\x9a\x3d\xe0\xa8\x2b\x38\xca\x71\xb1\xf9\x95\x37\x85\x71\x0e\x00\x84\x5b\xa8\x8c\xac\x8e\x7e\x99\x0a\x49\x91\x75\x37\x29\xba\xe3\xbe\xb6\xdf\x95\xcf\x8c\xdc\xdc\xf4\x57\x8a\x04\x2e\xaf\xb3\x96\x38\xee\xe4\x5b\xfe\x89\xde\xad\xf7\x32\xbf\x17\x4d\x75\x95\x9b\xe6\x0b\xaf\x39\x5e\x33\x58\x09\xd2\x6d\x21\x2d\xc6\x3e\x08\x00\xfc\x87\xb4\x17\x59\x23\xfa\x2e\x1a\x14\xc7\xff\x74\xbd\xd3\x6f\x8e\x23\xb5\xdb\x68\x7f\x45\x94\x34\xcd\xc9\x3d\xb7\x57\x5c\x3b\x37\xe7\xde\x4e\x5b\xcb\x64\xd5\x96\x75\x0f\xcd\x23\x94\x13\x5d\x13\x0a\x5d\xe5\x06\xc7\xa7\xfa\x4f\x92\x51\xb6\x97\x35\xdb\xb8\x44\x00\xe0\xdd\xa4\xbf\xce\x3c\xd5\x37\xa3\x4c\x72\x3c\xab\x6b\x47\xc9\xa5\xc3\xbf\xdb\x62\x8b\xdc\x22\x16\x34\x1e\x37\xb2\xf7\x3a\xd4\x24\x18\x3c\xbd\x0a\x2a\x22\xf5\x61\xeb\xd4\x25\xbb\xb5\x3f\x5c\x7d\x8c\x07\xd5\x09\x73\xac\xf5\x63\xe5\xd6\x76\x4e\xb9\xeb\xf9\xab\x01\x80\x37\x91\x91\x97\xb9\xe2\xcc\x50\x55\xe5\xf1\xd5\x9d\x9f\x2a\x8a\x0e\xb7\xb6\xd9\x96\xf6\x86\x3f\x6f\x9c\x52\x02\x04\x5c\xa9\x19\x63\x92\x79\x65\x97\xff\x34\x5a\xaf\x43\x8b\x9f\xeb\xdb\x5c\xb7\x17\x7c\xd0\x04\xcd\x59\x9a\xc7\x55\x84\xda\xed\x55\xd7\xf0\x5f\x03\x00\xb7\x9c\x31\x9c\xf1\xfe\x0c\xa9\x7e\xeb\xb1\x9f\x9d\x9a\x1a\xe0\x30\xb3\xb5\xdc\xf2\x29\xbc\xae\xa1\xbc\x7c\x5e\x40\x51\x75\x8e\xd9\xc3\x2b\xba\x9c\x67\x7a\xb0\x8e\x58\x8c\x33\x3c\x74\x0d\x2c\x38\xa9\x3d\x3f\x27\x42\xf7\x55\xb9\xcf\x4e\xa2\x9e\x20\xc8\x04\x00\xee\x4a\xc6\xfb\x37\xcb\x89\x41\x59\xc5\x77\xe7\x13\x1b\x71\xec\x0b\xf5\xa0\x53\xf6\xfe\xd6\x07\x20\x15\x3f\xce\xfc\x13\xfc\x80\xbf\xa6\xfc\x0c\xc5\x12\x5e\x51\x37\x40\x77\x41\xfb\xd4\x08\x18\x83\x3c\x42\x67\x23\x8b\xe0\x8d\x9e\x0c\xe4\x34\x32\xc5\x3e\x01\xe5\x20\x5b\x5f\xa7\x10\x30\xa2\xf5\x9d\x70\xc2\x5f\x22\x34\xf0\x9b\x88\x23\x7e\x69\x75\x21\xbe\x02\xc3\xcc\x9b\xc1\x14\xb0\x4f\xe9\x0d\xbe\x81\x50\x8a\x06\x82\xe1\x9d\x29\xbd\xb0\x3b\xfc\x3b\x84\x09\x3f\x46\x0a\x3c\x6d\x11\x31\xba\xc8\x7e\x14\x7a\x14\xf9\xf9\x4a\x8b\x6f\x41\x04\xc3\x24\x42\x00\x22\x1d\xd8\x40\x18\x42\xda\x5a\xa2\x88\x51\x48\x57\x09\x48\x7c\x86\x3c\x54\x48\xc1\x2c\x74\x13\xf9\x1f\x34\x19\xcd\x4b\xd9\x08\x5d\x47\xbf\x85\x8c\x84\x55\xd8\xda\x35\x85\x48\x20\x16\x6b\xd7\x89\x7a\xa2\x8f\x5e\x28\xb3\xa9\x8c\xc1\x5b\x0a\xfc\x0c\x86\xd3\xb9\x60\x7c\x17\x9d\xde\x54\x44\x08\xa2\xdd\x2f\xfa\x8f\xf0\x8c\xb6\x57\xbe\x8e\xc8\xa1\xbe\x27\x5d\x06\xb7\x50\x65\xc7\x3d\xa0\x19\x54\xa7\xe0\xa9\xd0\x4f\x8a\x6a\xcd\x04\xb8\x92\x32\xcb\x8e\x86\x18\x48\xcf\x9e\xdd\xc4\xed\x14\x85\xde\xf8\x83\xfb\x4f\xf0\xab\x1f\xcc\xb6\xf0\x75\x0d\xcf\xf0\x7e\xbc\xdd\xa6\x60\xfc\x47\x2e\x20\x6d\x20\x98\xd8\x0f\x30\x8c\x98\xc6\x6a\x3b\x36\x0d\x8c\x62\xf2\xf6\x79\x41\x3b\x19\xc1\xab\x99\xd0\x0f\xfa\x52\x3b\x1c\xfc\x98\xf2\xe3\x49\x77\x96\x9f\x1a\x7f\x6d\x18\x37\x56\x95\x7a\x26\x0f\xd7\xa3\x08\xae\x77\xce\x4e\x96\x6d\x33\x9a\xf1\xd3\x25\x9b\x24\xab\xf1\x77\x45\x7b\xd0\xe5\x84\x6a\x41\xf0\x51\x1b\xa2\x91\x17\x11\xc4\x00\x85\x9c\x98\xd5\x13\x21\x1f\x16\xc9\x8e\x09\xcf\xa3\xfd\x7e\xe4\x98\x59\x6c\xce\xbf\x82\xcb\xda\x5e\xa4\xea\x99\x95\x75\xc7\xc8\xae\xa9\xc6\x61\xf9\xbe\x86\xa8\x6c\x0f\x9d\x95\x68\x56\xf6\x7f\xea\xf3\x70\x24\xfe\xaa\x92\x90\x44\x23\x5c\x94\xcd\x09\x8c\x21\x36\x8b\x06\x57\x1d\x07\x13\xf9\xff\xec\x72\x20\x4f\x66\xe7\x7d\x4b\xe6\xf8\x56\xfd\xd0\x95\xcc\xba\xc6\x45\x9d\x35\x59\x47\x6a\xde\x57\x45\x67\xfd\xb1\xe0\xf4\xf3\x70\x45\xe6\x57\x02\xbb\xec\x13\xa6\x10\x90\x83\xdf\x93\x2f\x4f\x1c\x43\xd8\xaa\xe9\xdf\xbb\x82\xe8\xa6\x9a\xef\x51\x47\x1c\x94\xa9\xec\xc4\x60\x2e\x67\xf7\xdd\x3d\x99\x5b\x2e\x2e\xbe\x58\x98\x39\xd0\xff\xa8\x23\x3c\x2b\xb2\x9b\x6a\x99\x90\xf5\xbc\xed\x9d\xf6\x03\x8e\xd6\xb8\x92\x37\x26\x7b\x47\x75\x14\xa1\x15\x3f\xa5\x2c\x24\x41\x8f\x7f\x6e\x72\x0e\xf0\x22\xd4\xea\xbd\x3c\x96\x10\x43\xd4\x75\x76\x42\x70\x01\x2f\xfc\x4e\x54\xa6\xcf\x75\xd6\x85\xa6\xcc\x6b\x43\xf7\xdb\x13\xb2\x0e\x9e\xb7\xab\x98\x93\x75\xbf\xe7\x9b\xd6\x1a\x97\xd1\x5e\xc6\x75\xcf\x5e\xd8\xe8\x43\x00\xb2\x3f\x55\x95\x24\xd8\xe1\xeb\xcc\x57\xfd\x3f\x10\x8e\x19\x8f\x78\x00\xc4\x51\x5a\xc0\xae\x9a\x78\x9e\x6f\x33\x6c\xca\xf4\xbb\xfb\xf9\xc2\x88\xcc\xa1\x1b\xbf\xda\x8a\xb3\x82\x2e\x5d\x28\x4f\xce\xea\x3e\xbf\x57\x13\x8d\xf3\xeb\xe1\x73\xc4\xb8\x8f\x6d\x25\x78\x7c\x76\x6d\x3d\x35\xbe\x09\x7f\xc8\xe2\xe0\x7f\x01\xff\xb7\xe8\x8e\x87\x1d\x81\xa7\x63\xdb\xdb\x13\x37\xf3\xc3\x9f\x9d\x86\x3d\xb3\xa6\xdf\x5c\x00\xef\xc7\x8d\x3c\x3b\x13\xce\xc6\xdd\x6b\x2c\x81\x35\xd9\xfa\xa2\x95\xf0\x05\x7c\xb6\x4c\x01\xff\x21\x28\x48\x21\xc8\x26\x62\xdf\xb1\xcf\x88\x1c\xfc\x11\xbc\x00\xf9\x0c\x4f\x5b\xb3\x08\x0d\x41\x66\xda\xb5\xa2\xd7\x91\xb4\xa7\x6f\x21\x98\x10\x71\x23\x04\x2a\x27\x0c\xf7\x87\x42\xf7\x89\x47\x1a\x1e\xc2\x53\x88\x43\xa6\x43\xf0\x7e\x30\x54\x7a\x03\x56\x40\xb3\x30\x23\xfc\x1c\x7a\x7f\xcc\x0f\x09\x87\x5b\xf7\x09\x91\x73\x08\xb4\x5a\x8d\xba\xa3\x73\xec\x7c\xd0\x21\x74\xf1\xd3\x09\xe0\x00\xdc\x76\x3d\x1b\xb2\x81\x6f\xf5\xd1\xa1\x3d\xc8\xa4\x06\x3b\x88\x85\xb8\x15\xca\xa0\x2b\xc8\x61\xa9\x23\x3c\x1f\x19\x40\x7f\xc3\x74\x74\xe7\xd1\x3e\xf8\x37\x5a\xb6\x6f\x06\x02\x61\x36\xab\xb7\x22\x2f\xb1\x30\xbb\x59\xa8\x0c\x1b\xf7\xd8\x8e\x48\xa4\x5f\xb8\xaa\x24\x5e\xa2\x6f\xee\x2d\x00\x17\xd1\xea\xea\xe2\x40\x98\x36\xcf\xb8\x18\xbc\x43\x35\x89\xfb\x20\x2f\x6a\x34\xf2\x08\xaa\xa3\xce\x4e\xee\x84\x7d\x29\xbd\x41\x1b\xe0\xbb\x94\xe4\x55\xa5\xc8\x7e\x8a\x9d\xed\x63\xd4\x8a\x3c\xe2\xa1\x86\x90\x20\x9c\x77\x65\x2a\xa1\x8f\xff\xbe\xfb\x25\x71\x15\xaf\xa6\xe6\x0c\x91\xc1\xcd\x32\x18\x89\xcf\x39\xbe\xa2\x4c\x30\x9a\xed\x05\x57\x81\x0f\x59\x9b\x92\xce\x42\x74\xe6\xb2\xc0\x93\xf0\x12\xc6\xb4\x55\x9b\x60\x1d\x7d\x9a\xed\x1b\x64\x0f\x75\xec\xfd\x2c\x3c\x33\x67\xd9\xa5\xb1\xf8\x37\x4a\xaf\x2e\x57\x42\x92\xdc\xb7\x7a\x1a\xa1\x4e\x1a\x94\x6f\x47\x9c\x2a\x4e\x10\xfc\x23\x2a\x84\x12\x28\x15\x5c\xca\x6f\x4e\xec\x05\xaf\x72\xef\xee\xed\x80\xf0\x1c\x2b\x8f\x1b\xd0\x6b\xd6\x61\xbb\x49\x30\x9d\xf6\xef\xce\x8d\xec\xf2\xe2\x9f\x17\x75\xf8\x09\x26\xa7\x8e\x0a\x3c\xbe\x60\xad\xa5\x1c\x3f\xa0\x9f\xae\xeb\x24\xb8\x6b\xbe\xf1\x5e\x11\xea\x73\x1e\x12\xb5\xc4\x20\x45\xd3\x91\x50\xe2\x6f\xa9\x20\xa0\x16\xd4\x8a\x4e\x79\x1c\x82\x46\xf0\xef\xd9\x1d\x86\x68\xcc\x8e\xdb\xa9\xd9\xeb\x9b\xb5\x03\xe3\xb2\xf9\xf5\x11\x6d\x01\xd9\x5f\xab\xfd\xcb\x23\xf1\x7b\xca\x7f\x69\xe8\x78\x73\x49\x0e\xe7\x1e\x61\x45\xa1\x3b\xfe\x12\xe1\x8c\xbe\x30\xfe\x36\x31\x4d\x33\xc5\x5f\x0a\x3a\x28\x4b\xdd\x5b\xc1\x04\xd9\x41\xbb\x4c\xf0\x2e\xc7\xf3\xe6\xdc\xec\xdd\xe7\x7b\xce\x3e\xca\x16\x9d\x69\x6c\xfe\x93\x3d\xdc\x29\x2a\x9d\x83\x5f\xdc\xea\xae\x3e\x8e\xa7\xd4\x97\xb0\xde\xe0\x7f\x55\x8d\xcb\x9e\x4a\xe0\x94\xae\x8f\x83\x88\x53\x0a\x77\xf9\x15\x13\x95\x79\x65\xee\xab\x88\x4f\xd4\xde\x76\x04\x30\x86\xb7\xf6\xc6\xc2\x6c\xbf\x2b\x3f\xfa\x3f\x65\x8b\x2f\x72\x9a\xc7\x66\x5f\xed\x7f\x6f\x5e\x89\x9f\xd1\x3d\x3d\x87\x81\x3f\xd9\x66\xc7\x9a\x83\xbf\x53\xff\x00\x77\x90\x90\x54\x09\x1d\x7e\x43\xb8\x5f\xf2\xca\x2f\x88\x18\x54\xd0\xe9\x6e\x43\x94\x6b\x30\x3b\x0d\x38\x92\xf7\xf4\x7a\x62\xb6\xcf\xf0\xd6\xfe\x35\xd9\xf4\x6b\x94\xa6\x80\xec\xf6\x41\x61\x09\x9c\xfd\xdf\xd9\x08\xd5\x13\xbc\x57\xd7\x7d\x26\x1d\x5f\xd4\xba\x26\xeb\x3e\xc1\xa5\x6e\xcf\x61\x29\x81\x53\x31\xcd\xcf\x8d\xf0\xb8\x68\x81\xfb\x44\xa2\xb3\x0e\xb0\xfb\x4e\xcc\xe0\xbb\x3f\x9c\x86\xed\xc8\x14\x5c\x7e\x8e\xcd\xce\xa2\xf6\x6c\x41\x7f\xe3\x8e\xd5\x6e\x44\x9f\x67\xaf\x28\x98\x8b\x3e\xc2\x4f\x12\x7d\x41\xaf\x11\x36\x21\x8b\xd0\xeb\xc4\xec\xe4\xdd\xe8\x3b\xb0\x2e\xf0\x23\x66\x0d\x3d\x5c\x45\xc6\x56\xc0\x7f\x6c\x87\x30\x0e\x42\x7d\xb0\x06\xcd\xc5\x57\x5c\x1e\x8f\x52\x09\xdb\xbb\x53\x50\x1c\xe1\x5a\x4d\x3c\x9a\x4c\xdc\x6b\xf0\x43\x4f\x12\x9f\x8a\xdc\x50\x1c\x58\x0b\xa7\xa1\x1c\x48\x9e\x64\x42\x2d\x70\x7a\xe0\x31\xf4\x1e\xb2\xcd\xe3\x27\x66\x83\xfc\xb1\x8d\xc3\x50\x74\xc5\xfd\x00\x74\x24\xf4\xf9\xd2\x6a\xe4\x0b\x3c\xaf\x4b\x8a\x7c\x81\x8f\x55\x73\x91\x67\xb0\x2a\x3f\x0d\xf9\x0d\xdf\x16\x42\xa8\x35\x12\x09\x35\xa1\x6b\x91\xdb\x49\x4e\x68\x1c\x1a\xb9\x77\x08\x2d\x46\xfb\x3c\xb8\xe8\x75\xcc\xc3\x16\xc0\xa2\xb0\x31\x77\x7d\x61\x29\x6d\x70\x30\x1a\xae\xa3\x1d\x3a\x5d\x07\x37\x53\x1f\x57\xbe\x83\xef\x53\x0f\xeb\x1d\x10\x1b\xca\x0f\xc1\x62\x64\x35\xa5\x1b\x2c\x46\x52\x29\xf2\xc4\x85\x88\x85\x12\xbd\x77\x02\x6a\x45\x99\xeb\x31\x05\xdd\x46\x7e\x6c\xf3\x1b\xed\x26\x7d\xb9\xb3\x04\x32\xf3\x3f\x5d\xf8\x08\x9d\xe6\x3d\xed\x98\x09\x3d\xe5\x9e\xb1\x9c\x84\x3e\x72\xb4\xba\x4a\x78\x3a\x9b\xc5\x7b\x0d\xef\x65\xa9\x89\x5a\x58\xc2\xac\x38\xb2\x05\x7e\xcf\x68\x0e\x38\x89\x04\xd0\xcf\xb9\x77\x23\x6c\xda\x5b\xdb\xed\xc8\x1f\xca\x8f\x5b\x6f\xc0\x37\xca\x87\xe7\xbf\x82\xff\x14\xd3\xdb\x08\xd0\x7a\xd9\xa6\xf2\x21\xc8\x43\x12\xa5\x5d\x02\x05\x88\xa8\x5c\x06\x24\x10\x5c\x22\x24\x41\x0f\xf9\x33\x12\xb6\xc2\xbb\xb8\x87\xfd\xdb\x60\x03\xbb\xc2\x3d\x1e\xbe\xc9\x5a\x6b\x1b\x8b\x6c\xa3\x3d\xb9\x71\x80\x38\x5c\x14\x7c\x96\x0f\x8e\x37\xe6\xb5\x8c\x02\xbd\xf3\xef\x95\xa6\x80\x3e\xba\xbb\xea\x07\xe0\x89\xdc\xbb\x6c\x1c\x58\xab\x7a\x9f\x9d\x03\xd9\xc8\xdf\xc5\x5d\x83\xd2\x24\x9f\xfc\xba\xa1\x33\x22\x9b\x95\x3f\xa0\xd7\xfc\x4a\xdb\x5e\x78\x3d\x33\xe7\xea\x07\x22\xb7\x51\xd1\x37\x82\x28\xad\xa5\x34\x9a\x88\xad\x95\x86\x92\x29\xc4\xbe\x32\xbc\xaa\x90\xf8\xaa\x78\x2b\xf3\x18\xb8\xc2\x38\x3a\xeb\x22\x48\xcb\x2b\x3b\x7c\x08\x7c\x94\x1b\xba\xa7\x18\x5a\xa7\x5c\xbe\x32\x01\xda\x23\x9b\x61\xfb\x18\x62\xb1\x7f\x5d\x6e\x25\xc2\x67\xa3\x7a\x9e\x12\x69\x3d\xf4\xfa\x83\x44\x61\x87\xd8\xf4\x96\x98\xdb\x9c\xaa\xc8\x23\xb6\xd4\xcd\xa4\xb3\x89\x5f\x2d\x65\x99\x0b\xc1\xed\xe6\xe9\xb1\x63\x41\x86\x31\xd1\xb7\x19\xec\xc9\x9b\xb6\xe2\x26\x78\x2e\xa7\xdf\xf6\x0d\x64\xc5\x7d\x73\xa9\x81\x08\x5e\x8a\xeb\xfe\x40\x44\x07\x96\xd7\xa5\x12\xc9\x67\xce\x9a\x6c\x88\xac\xce\x0d\xf2\xb3\x44\x43\xcb\x31\x5a\x37\xf1\x4a\xdd\xa9\x0c\x3c\x38\xdd\xe2\x1f\x03\x83\x41\xc5\x7f\x7d\x63\x40\xa4\x60\xc9\x8a\x0a\x10\xce\x7d\x6f\x37\x01\x2c\xe6\x29\x86\x5e\x13\x33\x6e\x62\xdd\xae\xc4\xd4\x2b\x40\x6d\x25\x31\xe1\xc2\xee\xc2\x70\x62\x62\x5f\xac\x7c\x11\x11\xd7\xb9\x84\xe6\x4e\x54\x37\x37\x9e\xfa\x49\xbc\x52\x3b\x21\x66\x11\xf1\xbf\xf2\x45\xbe\x1b\xc0\xc9\xa6\xf4\x15\x35\xa0\x95\x36\xc9\xee\x18\x38\x9d\xf7\xe8\x5a\x37\xbd\x3e\x23\xad\x7f\x0b\xdd\x3e\x33\xab\xf9\x14\x2d\x2e\x2b\xb3\x74\x34\xf5\x11\x2e\x42\xad\xa2\xa6\x65\xef\x67\x6f\xa7\x7c\xc2\x33\xb2\xa3\x29\x64\xc2\x40\x1c\x8e\x32\x1b\x9c\xe3\x37\x97\x7c\x0e\x3a\xbc\x62\x80\x2c\x80\x73\xad\x33\xc9\x79\x48\xe6\xd5\xeb\xf4\x99\xd9\x31\x7d\x49\x34\x0c\x3f\xb1\x49\x49\x7d\x84\x6f\x36\x7b\x50\x33\x09\x41\x39\x97\xa9\x36\x84\xdf\x2c\x36\x45\x4b\xbc\x8f\x6b\xa1\xac\x07\x87\x0e\x3f\x24\x3f\x83\xce\xee\xd1\x93\xf3\xe0\xaa\x15\x3b\xc8\x04\x44\x61\x3d\x89\x2c\x41\xed\xaf\x3c\xa0\xd1\x41\xdc\x19\x06\xf5\x07\x78\xbd\xb1\x8e\x9a\x04\xb9\x96\xec\xa7\x8e\x81\x4e\xe6\x58\x51\x0a\xa0\x8b\xcc\xab\x94\x6d\x70\x0c\x6e\x26\xf9\x39\x02\x1c\x3e\x4a\xce\x45\xb4\x7b\xe6\x91\x13\xd1\x15\x6e\x2f\xc8\x5e\x68\xf7\xb8\x1b\xe4\x64\xf4\xf2\xe5\xed\xd4\x40\xca\xef\x9e\x47\x94\x61\x8a\xa5\xc1\x9d\x12\x4b\x89\x29\xfa\x4c\x19\x49\x19\xa3\xec\x20\x57\x93\x7b\x18\xa5\xe4\x38\x72\x45\xd6\x4c\xf2\x6c\x72\x7e\x2c\x87\xf4\x8e\xcc\xf1\x3d\x45\x1a\x22\x13\xdc\x60\x52\x2d\x19\x1a\xf7\x82\x74\x8b\x64\xbe\x34\x9e\x92\xc9\xad\xea\x2e\x24\xbf\xe2\xdc\xae\xd3\x93\x33\xd8\x1f\x4d\x04\xb2\x33\xeb\xab\xe2\x30\xe9\x2e\xcb\x96\x9e\x4a\xd2\x30\x7d\x32\x01\x52\x12\x83\x15\x63\x22\x6d\xa3\x0f\xf8\xdc\x22\xcd\xa3\x4f\x76\xdb\x86\xfd\xa5\x91\xad\xdd\x49\xd3\x29\xaa\x8b\xaf\xc8\xc7\xe4\x9e\x9d\x26\xf2\x54\xa9\xa9\x76\x1c\xa9\x58\x62\x6f\xfc\x46\x8a\x11\x1d\x91\xfd\x24\x39\x0b\xfa\x68\x0b\xb0\xd7\xfc\x3d\xa7\x1e\x63\x9d\xdc\x73\x87\x3a\xb1\x1c\x4e\xa4\xcf\x4e\x2c\x8b\xf5\xc1\x6d\x0c\xb6\x9b\x79\xc9\x9a\x8c\x05\xd3\xc0\x81\x03\x24\xb6\x71\x6b\x87\x0f\xc9\x3d\xbf\xae\x0a\xc6\x6e\xe5\xb9\x18\x38\x18\x4f\x93\x2c\x69\xc2\xfc\x73\xca\x29\x33\xb1\x59\x4a\xab\xf4\x39\xe8\x17\x59\xc8\xc1\x78\xf4\xbc\xb8\x7a\xf7\x7e\x54\x23\x5c\xb6\xdc\x80\x86\xf1\x7d\xad\x5f\xa1\xdb\x99\x23\xcf\x1a\x48\x81\xb5\xb4\x56\x2a\x76\xbf\xf2\xaa\x65\x14\x96\x5e\xee\xa3\x5f\x86\xcd\x2a\x49\x17\xa1\xe8\x60\x21\x97\x34\x1e\xcd\xcd\x37\xa7\x85\xa0\x99\xda\xba\x03\xcf\x50\xef\x9c\xc1\x5d\x5e\xe8\x04\xc5\xd2\xe5\xa3\x91\x7a\x29\xd1\xfa\x0f\x22\x62\x6f\xed\x23\x92\xbc\x7a\xda\x9a\x95\x58\xdf\xe9\xc3\xe5\x00\xb6\xaf\xe5\x8e\xce\x13\x7d\x5d\xff\x5b\x60\x40\x65\x55\x7f\xd0\x70\x34\xac\xec\xbf\xd4\x73\xe8\xfc\xa2\xeb\x51\x45\xc8\x43\x43\x99\xb7\x3f\x52\xa0\xfd\xe5\x9a\x82\x6c\x56\x95\xd9\x8c\x45\xac\xb8\x13\xcf\xd4\x91\x02\x06\x4a\x9b\x86\xb0\xfe\xbe\xa7\x65\xcb\xb0\xdd\x5d\x1f\xb5\x89\xe8\x8d\x36\x1d\x7f\x18\xcd\x6e\x74\x41\xf2\x50\xb7\xea\x9c\xd4\x65\xc8\xe7\xb2\x8f\x51\xf3\x90\x92\xa2\x75\x3b\xdf\x22\xb1\xf9\xbf\x5c\x37\xc0\xef\xd4\x66\x9b\x45\x70\x11\xb7\xe6\xcc\x42\xd2\xbe\x2b\xed\x4d\x9e\x58\xc7\xc5\xa2\x52\x16\xb6\xe2\x6c\xa4\xe6\x0c\x5a\xdd\x5d\xc4\xdf\x8d\x7a\xb7\x75\x22\x33\x90\xf7\x0d\x7d\x29\xf5\x48\x49\x55\x71\x64\x37\x12\x56\x1a\xbb\xb3\x11\xfe\x59\x38\xc6\xd5\x13\x26\x6a\x6c\x6c\xb2\xe0\x19\x3c\xe0\xec\x0d\xde\xcb\x53\xa2\x36\x2b\x6e\x53\x86\xda\x22\xe0\x68\x32\x35\xfa\x97\xec\xdc\x2c\x89\x38\x88\x55\x88\x33\x92\x9e\x30\x0b\xb3\x1f\xa4\xfd\x61\x54\x10\x56\x47\x8f\xa3\x0f\x10\x39\xde\x0d\x74\x2b\xf0\xda\xb2\x28\x1a\x07\x76\x1d\x53\x42\x1b\x8d\xec\xe8\xff\xce\x0b\xc0\x85\xb4\xae\xe1\xae\xcd\xb6\xad\x38\xc7\x59\x91\xdd\xae\x5f\xcd\xf6\xc0\x1f\x13\x95\xb0\xb6\x11\x96\x93\xfc\x98\x81\xc4\xd9\x69\x59\x8c\x44\xd0\xe9\x80\x90\xae\x80\xe6\x7b\xef\xa4\x3d\x84\x67\x2e\x7d\x4d\x23\x20\x33\xc7\x1c\xa7\xfe\x40\xce\xf5\xdb\x71\x1b\x88\x9b\x5a\x22\x39\xf5\xc4\x82\xf2\xdf\xec\x2e\xd0\x36\x2f\x8b\xd5\x0b\x1e\x15\xfe\x62\xde\x00\x1f\x60\xe5\x8c\x8f\x10\xf5\xc4\x2b\xc6\x64\x78\xed\x81\xf9\xf4\x20\xf8\xc5\xce\x77\x34\x13\x22\x58\x5a\x4d\xf3\x42\xb7\x8f\x39\x4a\xed\x43\x19\x67\x8a\x39\x3c\x72\x44\xd3\x30\xdb\x44\x9e\x52\x96\xc5\xea\x21\x5d\xd1\xfe\x65\x3e\x22\xe9\x05\x5a\xa6\x1d\x89\x8a\xa6\x33\xd6\x90\x04\xa9\xb7\xe8\x89\xa4\xc2\xa8\x00\x5a\x2d\xa9\x6e\xa7\x1f\x6d\x16\xa9\x6f\x69\x04\xb5\x81\xf4\x73\x0c\x99\xba\x85\xb4\xad\x77\x14\xbb\x8c\x5d\xdb\x18\xc5\x6a\x65\x7d\x2f\x1d\xc5\x7c\xc8\x5a\xa0\x31\x32\x6d\x98\x61\xfc\x18\xc6\x36\x86\x02\x09\xa4\x67\xd3\xff\xa6\xdc\xa6\x35\xd0\xd3\x22\x21\x9a\x1d\xed\xae\x57\x23\x15\x47\x0b\x5d\x3a\x97\x6a\x45\x1b\x39\xa6\x9b\x42\xa3\x4c\xec\x8e\x62\x5d\x96\xbc\xad\x6f\x63\x7e\x14\xa7\x97\xb0\x98\x4e\xc2\x2f\xb9\xdb\x18\x7b\x05\x18\x6f\x3a\x9d\xc9\x9f\x0a\xcf\xa7\x9d\xe7\x0e\x1e\xbf\x4e\x9b\xc6\xe1\x46\x14\x50\x4f\xb0\xf7\x78\x39\x53\x06\x59\x33\x97\xdc\xa6\x04\x31\x83\xc7\xfc\x47\x3e\x4d\xbd\x78\xfa\x1c\x6b\x61\xfe\x92\xda\x20\xe6\x5a\xdd\x70\xd1\x34\xc6\x21\x0d\x51\xf5\x81\xce\x56\x03\xec\x2f\xb4\x0e\x25\x0b\xf4\xa4\x8d\x96\x2f\x3d\xb6\x8c\x1a\x2a\x39\x13\x1e\x41\x29\x10\xa5\xed\xd8\x41\xfe\x25\xd8\xb8\x04\x23\xc7\xf0\x6e\x8f\x3d\x44\x6a\x63\xac\x6a\x3f\xc6\xac\xad\xbc\x57\x75\x95\x71\xbd\xfc\x84\xd1\x42\xff\x63\x06\x14\x85\x74\x27\x13\xc8\xbc\x42\xf3\x37\xbc\x20\x78\x51\x05\x79\x47\x92\x33\x29\xb7\x73\x2f\x87\x7d\xa1\xcc\x55\x85\x6e\xf7\x26\xa7\xc8\x17\x2f\xfe\x47\xaa\x91\x18\xc7\xaa\xb1\x6f\xac\xb0\x56\x27\x66\xcb\x69\x9c\xe5\x3c\xa3\xa7\x75\x97\xa1\x82\x7e\xa3\xe1\x9d\xac\x8e\xf6\xa6\x26\x9d\xfe\x87\x66\x5b\x71\x33\x5b\x4a\xf5\x32\x6f\x4f\xfc\x46\xa1\x16\x2a\x42\x6b\xc9\x9d\xfa\xef\xdb\xbc\xc9\x63\x34\xdf\x17\xc7\x91\x36\x2a\xc3\xc6\x1a\xb0\x23\x9c\xb1\x2d\x2b\x99\x79\x7d\x4f\x2b\x1e\x32\xaa\xbb\x13\xf3\xaf\xd0\xcf\xb5\x37\x49\x1f\xd2\xae\x35\x0d\xd1\xd7\x52\x5f\xd7\xf6\xe0\x86\xa9\x33\x2c\xd5\x89\xe1\x94\x60\x33\x3f\xd4\x8d\xcc\x2e\xc4\x6f\x7d\x48\xea\xd1\x57\x2d\x5e\x8e\xbd\xce\x59\x30\xb6\x15\x1b\xc3\xc9\x6f\x4e\x67\x22\x17\x99\x15\x4b\x19\x39\x67\x2f\xe5\x2f\xa2\x57\xf5\x3c\x96\x6e\xa6\x55\x74\x18\x69\x1a\x6a\x7d\xf3\x06\x5c\x30\xe5\x56\x6d\xc7\x91\x87\x14\x2b\xcb\xca\x90\x8b\x64\xcf\x12\xe3\x56\x3d\x29\xb1\x80\xb0\x78\x1e\x96\xa5\x4e\x19\xfb\x07\x85\x38\xef\x5b\x4f\xc9\x3a\xd2\xcf\x54\x86\x48\x67\x9f\x7a\x58\xf0\x5a\x4c\xcc\xf8\xab\x98\x26\x7c\x95\x35\x82\x79\x48\x90\x84\x5b\x80\x7f\xc9\xbb\x9e\x7d\x24\x79\x12\x37\x10\xdf\x1d\xe6\xca\x7e\x4a\x9c\xb9\xf5\x09\xcb\x08\xc6\x2d\xc4\x33\xbf\x43\x6d\xa3\x9e\x33\x0e\x21\xee\x2d\x75\x32\xdf\xac\x70\x4b\xae\xa4\x1c\xe7\x5c\xb0\x45\x3c\x0b\xf7\x5d\x7e\x4a\x28\xc8\xae\x64\x74\x09\x6c\xf0\x74\x7c\x34\x8f\x4d\xc0\x92\x64\x5c\x3b\xa2\x38\xb4\x85\x5d\x0b\x6a\xb7\x52\x58\x74\x28\x77\xe1\x52\xe6\x53\x58\x37\xaa\x8f\x11\x80\x48\x9a\x3f\x48\x6f\x10\xec\x2a\x86\x25\x5e\x04\x86\x81\x29\x6a\x25\x3a\xca\xba\x84\x6e\x44\x06\xc3\x99\x6f\x06\x27\x64\xf7\xf3\x56\x81\x3d\x49\x93\x38\x9d\x10\x2f\x34\x9c\x9d\x09\x07\x6e\xf5\x64\xed\x43\x46\x2d\xf8\xc6\xac\x47\x4e\x8f\x6a\x67\xb8\xa0\x9e\x4d\x3e\x92\x1a\x8c\x54\x1e\x20\xf6\xc2\x90\xfc\x91\xc2\x7e\xec\x94\xf4\x90\x20\x1c\x3b\x4c\xbb\xc5\x7b\x8d\x25\xe1\xf2\xb9\x14\x4c\x90\x38\x91\xe3\x84\xf5\x85\xc8\x58\x77\xb1\xef\x5b\x2a\x99\xdd\xa4\x25\x0b\x3a\x99\x2e\x24\xea\xe8\x91\xf4\x1c\xec\x7e\x43\xbf\xb8\x8f\x59\x59\x36\x5d\x14\xc4\x9c\x9d\x57\x27\x78\xcb\x20\x48\x16\xf3\xe9\xf4\x4b\xd4\xd3\xbc\x85\xf4\xcd\x59\xf9\x9c\x73\xb4\x8b\x47\x56\xb1\x71\xb4\x94\xe0\x5b\xac\x8d\xb4\xd1\x5b\x96\x30\x5d\xa8\xc5\x0b\x38\x8c\x54\x2a\x7b\xf4\x3a\xda\x1d\x32\xb5\x3e\x5d\xf4\x4c\xb4\xc7\x0c\x0b\x99\xc2\x25\xba\x58\xc1\x0a\xfe\x37\xd1\x73\xde\x00\xaf\x8a\xa2\xe5\x66\x70\xf1\x99\x4a\x8e\x0b\xe7\x68\x82\x3f\xeb\x1a\x3b\x36\xd8\x85\xa9\x66\x45\x6c\x6e\x64\x10\x98\xa9\x0b\x44\x74\x03\xe3\xf3\xe8\x3e\x9a\x1d\xd5\xab\xd6\x45\xb4\x4c\x37\xaa\x38\x53\x30\x90\xfb\x5d\x33\x81\x4f\xc8\xb9\x2b\x68\xe5\x4d\x54\x16\x92\x0c\x9c\x6a\xf9\xa9\x53\x17\xd8\x47\xa4\xd1\x71\x1d\xac\x59\x62\x9f\xa0\x0f\x8c\xab\xc2\x2d\x9b\xee\xd2\xcd\xfc\xa4\x05\x4b\x68\x35\x3c\xbc\xd5\x24\xaa\x1d\x1d\xa9\x52\x0a\x1f\x95\x35\x17\xde\x16\x60\x25\xc5\x39\x7d\x7c\x47\x53\x13\x4f\xc6\x2d\x2b\xa0\xa1\x46\x8e\x97\xde\xf7\xe4\x4f\xd6\x07\xad\xcb\xe1\x05\xcc\xc2\x9c\xef\x81\x4a\x46\x94\xe2\xfe\xc6\xe7\x74\x47\xd9\xc6\xf9\x3a\x9a\xad\x58\x63\xb5\x8a\x12\xc8\x4c\xb5\x3c\x15\x5e\x6c\xe9\x37\xae\x10\x44\x37\xbc\x56\x0e\xf1\xde\xd6\x7c\xe3\x54\x72\xd3\x2d\xc3\xf0\x3d\xf6\x8f\xd2\xf2\xb4\x68\x96\xa6\x88\x19\xd3\xc8\xdc\x55\x10\xbd\x37\x89\xfe\x5f\x5e\xf0\x86\xc7\xb4\x96\xdc\x67\x2e\x7f\xa8\x12\x79\xa7\xd5\x66\x72\x35\xeb\x5f\xc5\x1d\x61\x4f\xd7\x8d\x82\x3d\x82\xbd\xed\xcd\x8a\xaf\xbc\xe1\xe6\x74\xf6\x3d\xee\xfe\xba\xcf\xf0\x4c\xf6\xb5\xaa\x98\x13\xc5\xac\xb4\xb2\xbe\x98\x39\xcc\xf1\xc5\x2b\x03\x1e\xd0\x3b\x0a\xfa\x36\x10\x68\x68\xde\x5a\x97\x2e\xaa\x97\xf2\xb0\xd5\x3e\x72\x08\x5b\x50\xfe\x53\x58\x77\x76\x91\x81\x24\x58\xdf\x73\x53\xe1\xcd\x6b\x3f\x1d\xce\x5e\xc7\x75\x6d\x11\x40\x08\x3b\xaf\xbe\xf0\x84\x13\xcb\xb5\xaa\xea\x90\x99\xd1\x59\xd6\x1e\x90\x49\x4f\x2d\x7a\xb4\xc1\x83\x36\x2f\xbf\xce\xc5\x42\xe9\x57\x71\xac\x98\xa4\xb3\xec\xdb\x45\x0f\xf2\x59\xe9\x7e\xda\xe9\x79\x63\x4e\x65\x8a\x39\x9a\xfc\x0c\x2a\xed\x87\x7a\x5d\x26\x1f\xaf\x55\x5e\xca\xaa\x3b\xa6\x97\x27\xe3\x7e\x1f\x88\x95\x02\xf8\xe8\x3d\x1e\x22\x0b\xa1\xdf\x53\x2b\x30\x83\xce\x73\xda\xf9\x5d\x50\x3a\x90\xc2\x4e\x45\x22\x8a\x0e\xe6\x5b\x67\x56\x68\x24\x3a\x45\x16\x22\xb6\xd2\x6c\xc5\x6d\xa6\x81\x39\xb7\xb3\x47\xe1\x17\x2a\xe1\xec\x17\xc7\x3c\xe4\xb3\xf1\xaf\xa3\xfe\x4a\x3a\x88\xe3\x7c\x1f\x89\x60\x70\xb9\xe7\x11\x01\x0d\xda\x3a\x27\x8f\x6f\x82\x77\x02\xe9\xec\x48\xa4\xd8\x74\x41\x2f\xc4\xaf\xd7\x8c\xd4\x2d\xc5\x5b\x44\xf8\xdc\x61\xc2\x5c\xea\xbb\x1c\x98\x60\xcc\x36\x29\x9d\x89\x3e\x47\xdb\x64\x67\x41\xdb\x28\x95\x04\x07\x3e\xf3\x55\x89\x36\x43\x3d\x9e\xcb\x05\xfb\x60\xe1\x1c\x1a\x3f\x13\x89\x01\xc8\xec\xe5\xe8\xea\x42\xaf\xbc\x0a\xd4\x4a\xad\xd1\xee\x45\xa7\x08\x57\xe4\x8e\x43\x27\x53\xfa\x55\x0d\xe8\x3c\x9c\x4e\x71\x14\xdd\x9d\x7c\x59\x36\x1b\x15\x46\x0e\x88\x87\xd0\x57\xbe\xa3\x85\x85\xd8\x8e\x35\x43\xfc\x4e\x4c\x3e\xe7\x38\xef\x2a\x69\x06\x70\x86\x95\x83\x69\x8c\x81\xba\x6b\xf4\xc8\x1c\x86\x06\xa3\xfd\x12\x4c\x52\x6f\xa1\x09\xc9\xa7\x95\x5f\x68\xd3\xb2\xaa\xe4\x95\xd4\x9a\xa4\x1f\xd2\x54\x2a\x2e\x72\xa2\xd8\x8d\xea\xeb\x73\x42\x38\x8a\x3a\x73\xcd\x09\xbe\x33\xe5\xbf\x39\x07\x79\x33\xa9\x1b\x46\x8c\x65\xbe\x21\xcf\x37\x88\x75\x2e\xfc\x3d\x2a\xe7\xdc\x73\xbc\x64\xde\x8b\x1c\x0e\x37\x8b\x54\xaa\xdc\xcd\x39\x91\x59\x2f\xb7\x62\x13\x93\xa6\x49\xce\xb1\xca\x23\xfc\x45\x22\xe6\xbb\xdd\x97\x05\x71\x4c\xf7\x35\xe3\x79\x59\x0c\xcd\x9c\x43\xdc\x9d\x0c\xf3\x88\x54\xa6\x13\x45\xaf\xaf\xd0\x1e\xc9\x61\x2a\xb6\xe6\x4e\x52\x8d\xe0\x8e\x54\x0d\x2a\xc2\xd0\xa7\x0a\x86\x0c\x9f\x31\x5d\xb6\x4d\x62\x38\xa2\x97\x8c\x16\x7d\x08\xb7\x13\x0e\x08\xfd\x77\x0d\xf3\x95\xfc\xba\xd5\xc9\xdc\x3c\xde\xc9\x39\xf3\x39\x3b\xb8\xec\x11\xe7\x19\xd3\x69\x26\x9d\x46\xf3\xaf\x28\x4c\xb6\x49\x6d\x36\xb6\xb0\x67\xa9\x92\x0c\x93\x91\xe9\x8a\xc9\x79\x61\xe9\x27\xa4\xdd\x1a\x65\x82\xa3\x98\x91\xf3\x3d\xac\x51\x18\xa0\x4c\xf2\xee\xe2\x4f\x92\xfd\x58\xa5\xe5\xda\x49\x17\x3b\x36\xb2\x85\xc2\xf6\x91\x23\xe9\x41\x8c\x28\xcd\xb0\xe6\x6a\xed\x90\x04\x54\x93\xab\x74\xcc\x68\xd5\xda\x8a\xed\x50\xaa\xfc\xa6\xb9\x2e\xed\x8e\x14\x2c\x5a\x10\x57\x21\x5e\x53\x50\x1a\x4a\x14\x7c\xd2\xef\xda\x59\xc9\xab\xd6\x2e\xf6\xa8\xe7\xe8\x73\x7e\x3a\x2e\x61\xdb\x4a\x9d\x46\xce\xa0\x99\x99\xcd\x9a\xcd\x9a\xf3\x2d\xa8\xb8\x5f\x8d\x6b\xf8\xcc\x90\xab\x16\xd5\x6e\x03\x2b\xe4\x6d\x95\x71\x69\xcb\xa5\xe1\x65\x84\x38\x07\xb1\x75\x71\x61\xc8\x7b\x41\x87\xf1\xed\xce\x75\x3c\x38\x9f\xea\xb1\x9f\x13\xab\xa9\x9e\xfd\x95\x55\x2f\x83\x47\xae\xa2\xf9\xb1\xb6\xe5\xb6\x69\x9a\x3b\x61\xf1\x2a\x75\x6c\x9b\x85\xfe\x41\x35\xae\xa9\x05\x9c\x2c\x97\xd6\xe9\x4e\xe8\xa4\xce\x55\x59\x87\xc5\xa2\xfe\xf2\x03\x21\x4c\x01\xae\xe4\xa8\xd7\x7d\xde\x12\xe3\x1f\x8f\x69\xec\x3f\xba\x33\xb3\x1f\xb3\xd6\xc8\xc9\x23\x93\xa9\x7d\x2c\x9e\xa4\xcb\xb2\x27\xbd\x81\x35\x54\xfa\xef\x54\x1d\x8a\x2f\xee\xc9\x68\xca\x5c\x56\x98\x99\xd9\x9e\xbc\xda\xe0\x9c\xf5\xe4\x40\xa3\xee\x62\xf6\xfc\xbd\x8e\xb9\x18\x9e\xb4\xa5\x50\xe5\x4b\xf8\xe6\x7a\x45\xce\x03\xe3\xa6\x06\xc8\x86\xa0\x7c\x00\xe0\x6d\x41\x3e\x4b\x62\x2b\x2e\x66\xe6\xb1\x08\xa5\xec\xac\x04\x74\x5e\x71\x14\x6e\x65\xc6\xf5\xc2\xc9\xb8\x9f\x49\x8f\xf3\xcf\x67\x3f\x3d\x90\xa6\x23\xe1\x5f\x05\x0c\xe7\x6e\x24\xda\x6c\x81\x55\x13\xc1\xf5\xae\x75\xf2\x38\x28\x66\x6a\x90\xcc\x08\xc7\x01\x00\xcf\x19\x9d\x2f\xfe\x54\x11\x91\x5d\xce\x9a\x5e\x3a\x15\xbf\x11\xe9\x2a\x7a\x8b\x1f\xcc\xc8\x36\x56\x11\x8e\x24\x71\xf3\xd3\x89\xd3\x0e\xcc\xd5\xb9\x12\x1f\x05\x28\xd4\xaf\xc1\xfe\x2d\x7e\xca\x01\xa8\xde\x35\x57\xbe\x00\x56\x4f\x0d\x93\xc5\x21\x99\x00\xc0\x7d\x87\x0a\x44\xd7\xca\xe9\xc8\x7c\xa6\x9d\xd9\x0f\xd9\x0d\xf7\x14\xb9\x23\x07\x4f\xe9\x0a\x3e\x23\x70\xe2\x65\x7d\x1d\xd2\x12\x45\xd4\x66\xa3\x8e\x01\xd6\xea\xcd\xa8\x7c\xf3\x13\xe5\x32\x6c\xac\x6b\x8a\x8c\x83\x91\xa6\xc6\x4a\xcb\x48\xab\x01\x80\x1b\x86\x75\x8a\x16\x96\xd5\x53\xdb\x18\x7b\x4b\x58\x54\x3e\xf4\xd4\x94\x4a\xdd\x93\x7e\xa9\x60\x1d\xe5\x4b\xe2\xec\xbc\x7f\x94\xe6\xc8\xab\x9a\x7e\x4a\x91\x3f\x9c\x23\xa3\x98\x37\x53\x14\x08\xa5\xc4\x75\x8b\xf4\x0a\x65\x60\x2a\x55\xd2\x43\x0d\x04\x00\x8e\x90\xec\x2c\x38\x57\xfa\x8f\x3b\x9e\x3e\xab\xf8\x02\x27\x08\xfc\x59\xd8\xcc\x16\x9f\xfc\x6e\x60\xb3\x4e\x1f\x89\xc8\x0b\x63\x8d\x8d\x9c\xaf\x99\xc7\x24\xf8\x3d\x55\x7d\x60\x8e\xdc\x3c\x49\x7e\x9d\x21\x74\xb5\x95\xce\x60\x1c\x9c\x6a\x16\x0f\x32\xb6\x02\x00\xbb\x95\x72\x8a\xcf\x2a\xf5\x57\x04\x52\x1f\x15\x4f\x92\xdd\x21\xaa\x8c\xaf\xa4\x71\x69\x65\xf9\x35\xe2\xab\x09\x6e\x3a\xa2\x28\x3a\x62\x46\xae\x8f\xd0\xd6\x6f\x8c\x6a\x06\xff\xda\xa6\x2c\xd9\x07\x5e\xdd\xb2\x62\xc9\x72\xde\xac\xa9\xd5\x22\x3d\x67\x09\x00\xb0\x74\xb4\xed\xdc\x01\x73\x99\x21\x96\xb2\xb9\x08\xd4\x3b\x11\x96\x19\xe3\xb5\xdf\x4f\x84\xe6\x2f\xc8\x2d\x8e\xfb\xa0\x7d\x94\x93\xbc\xff\x87\xba\x52\x19\xbc\x67\xbc\x12\x93\x1f\xdc\x68\x94\x1d\x92\xe6\x2d\x9b\x2b\xa6\x4b\x4e\x4c\xa5\x0b\xfb\xf9\x04\x00\x60\x76\xd3\x6b\x39\x07\xcd\x68\xc5\x5b\xd2\x83\xa2\xbd\x65\x40\x76\xa7\x71\x61\x89\x4d\xca\x4f\xfd\x2d\x93\xdd\xe1\x72\x2d\xa7\x60\x66\xd8\x35\x75\xa8\x3e\xd8\x77\xb2\xd2\x49\xdb\xb6\xe1\x92\xf4\x45\x2e\x79\x69\xaa\x78\x94\xb2\x75\xea\x32\xe1\x22\xd1\x32\x60\x2c\x73\x32\xe3\x1e\xbb\xd6\x9c\x58\xfb\x80\xb4\xad\x68\x5d\x55\x7b\xf6\x1c\xa3\x4d\x05\x2b\x25\x46\x5f\x5f\xba\xeb\xb0\x93\x36\xb6\xd8\x21\x6c\xbf\xda\xa5\x70\xb4\x4f\xa1\xe2\x85\x61\xdb\x86\x0c\x69\x45\xde\x98\xa5\xf3\x44\x8d\x39\xf7\xa7\xda\x0b\xba\xc4\x7e\x80\x13\xa3\x82\xb9\x97\x3d\xdf\xec\xd3\xbc\x0a\xab\x2e\x9a\x56\xff\x16\x27\x2d\x78\x5a\x23\x3e\x7e\x5f\x4f\xaf\x74\x8a\x2d\xd3\xce\x2f\x6b\x0e\xfd\x94\x73\xaf\x84\xe9\x13\xae\xd0\x98\x36\x6d\x58\x26\xdd\x9f\xdf\xb2\xe4\x8b\xc8\x3f\x97\x31\x75\x82\xc0\x5d\xb2\x18\x08\x62\x2c\x67\x4a\xd0\xa0\xb6\xd9\xa7\xae\xe0\x78\x8d\xef\x32\xce\xa4\x2e\xab\xbd\x91\x59\x1a\x6f\x5d\xd9\x9e\x25\x8b\x48\x28\xd3\xe0\x8a\x02\xd6\x16\x43\xd9\x77\xb6\x3b\x18\xe3\x09\xab\x57\x6d\xd5\x53\x88\x15\xf3\xbe\x69\x8f\x43\x2e\xf6\xd1\xb9\xc3\xf0\x19\x00\x10\xdc\x44\x7b\xd0\x95\xad\xea\x2c\x31\x2e\xa5\x11\xc2\x79\xa5\xda\xd6\x66\xe0\x5e\xc7\x3d\xab\x8c\xcd\xd6\x44\x6c\x2f\xdb\x85\xc7\x05\x4c\x2f\x5e\x46\xc8\xda\xf6\xd5\x38\x83\x28\x5d\xb5\x5c\xef\x05\x5e\x9c\xf7\x45\xeb\x01\x8f\xb2\xc7\xe5\x6a\x91\x58\x00\x10\xd4\xa0\x37\xd0\x51\xad\xb3\xf1\x38\xdc\xf6\x46\x6b\xfc\xf3\x94\x3b\xb5\xd6\x84\xfd\x71\x0d\x96\xbf\x84\x4b\x11\x53\x4b\x5f\x10\x71\xfe\x9f\x8a\x2e\x81\x3b\xb6\xdd\x28\xe8\x86\x96\xaf\x9a\x99\xf7\x05\x76\x9d\xf7\x5e\xf3\x14\x71\xb3\x17\xe7\xee\x41\x83\x00\x40\x80\xc3\x96\x20\x1d\x2d\x2b\x90\xe0\xac\x4b\x0d\x6e\x48\x48\x4a\x70\xcd\x56\x24\x28\x6e\xa7\x65\x1d\x92\x11\x5e\x57\xba\x18\x69\xf5\xcf\x2b\x9a\x84\x2e\xdb\xa6\x2c\x18\x8d\xd6\x7b\x7c\xce\xdb\x84\x85\xcc\x7b\xab\x71\x25\x8d\xb2\xef\x57\xa7\x92\x8a\x00\x80\xdf\x4b\x5a\x05\xdf\x68\x8e\xa4\xba\x66\x2d\xae\xdf\x4f\x1d\x71\xfc\x4a\xf5\x61\x4a\xef\xe1\xa1\x8a\xc3\x14\x5a\x78\xa8\x39\x92\x92\xe4\xef\x6b\xf2\xa5\xa4\x6c\x0b\x36\x6c\xa6\x88\x3d\xfa\x74\xa7\x28\x43\xf3\xde\xe5\x06\x53\x43\x1c\xec\x73\x12\xa9\xae\x00\xc0\x7b\x45\x3e\x09\x7b\x34\xd1\xd8\x2f\x32\xd9\x75\x54\xf6\xc6\xe3\xbe\x55\x22\x16\xe7\x70\x70\xb9\x82\x79\x7f\xff\x93\x12\x09\x33\xdc\xef\x79\x21\x99\xf1\x6e\xdb\xc8\x7c\x1c\xc3\xec\x21\xd7\x9a\x18\x82\x79\xaf\xd5\x99\x8c\x0f\x0e\xa1\xaa\x10\x3a\x0f\x00\x78\x23\x28\x5a\xe8\x44\x63\x96\xf4\x47\x46\x49\x2d\x47\x52\x75\xcc\xbb\x52\x27\x4e\x88\x8d\x2d\xcb\x13\x4d\xdf\x6f\x5d\xac\x12\xbc\xf1\x5b\x6a\x64\xf1\x9f\x6d\x4d\xd5\x43\x7c\x7b\x8f\x0d\x9a\x7c\x1e\x3c\xef\x5e\x4e\x20\x0f\x72\x30\x29\x9e\xb0\xaa\x00\x80\x73\x8e\xe6\x06\x06\x35\x3c\xd5\x7d\x3e\xc5\xa8\x79\xac\x79\x75\x74\xa5\xe5\xb5\xfa\x75\xcc\x81\xd2\x97\xaa\x5f\x61\x33\x8a\xee\x28\x5d\xf7\x84\x16\x5c\x90\xb3\xb6\xb4\xe4\xb5\xcb\x9c\xdd\xdb\x73\xef\x4b\xd7\xcd\x2b\x52\x65\x89\xfd\x1c\x7a\xe5\x17\xb9\x7b\x00\x80\x7d\x9b\x7e\x90\xb8\xbd\x21\xb1\xa4\x27\x9d\x5e\x93\x5d\x94\x90\xec\x69\xa1\x1a\xdf\x1f\x4a\x2e\xc5\x19\x4e\x84\xae\x29\x3a\xa4\x1f\xef\xcb\x2d\xd8\xab\xfd\xbc\x65\x6a\xde\x36\xcd\x6a\xf7\x2d\xb9\xfb\x72\x5a\xe6\x85\x2a\xcf\xc9\x77\x38\xf4\xc9\x9e\xf3\x33\x01\x80\x3d\x87\xe1\x4f\x28\x69\xd8\x60\x39\x9a\x3e\xb2\xc6\xa7\xac\x2c\xa9\xcb\x12\x56\xf2\xe6\xe0\xcf\xd2\x2d\x45\xeb\x42\x2e\x16\xcd\x31\x9a\x7d\x57\x17\xd8\x19\x4e\x6e\x1e\xd4\xfd\xd2\x8f\x76\x1f\x9b\x3b\x4a\x13\x3d\xcf\x53\x99\xaa\x78\xe0\x30\x28\x4b\x11\x1c\x04\x00\xd6\xff\x28\xa6\x0f\xbf\x18\x1f\xc7\x01\xe0\x8f\x59\x42\x1f\x9b\x50\xa4\x08\x95\x90\x28\x54\x1a\x54\x46\xa1\xa4\x3d\xb5\xeb\xf6\x78\xee\x79\x6e\xef\xdd\x75\xd7\x5d\xb7\xba\xeb\xae\x6b\xef\xbd\x07\x21\x23\x9b\xec\xcd\x07\x1f\xe3\x6b\xef\xf8\xbd\x7e\x7f\xc4\xbb\x93\x5b\x0e\xae\xec\x9a\xde\x4e\x41\x16\xb6\xcd\x6d\x21\x65\xa6\x36\x2d\x69\xa4\x26\x98\x6a\xbf\xd5\x35\x1c\xa6\x57\x5e\xa8\x99\x11\xf2\xd9\xdc\x59\x99\xbb\xb3\xdc\x60\x32\xff\xf5\x78\xa7\x55\x1b\x0a\x1c\xbd\x54\xaf\xd5\x6e\xb6\x5f\x14\xa3\x85\x0b\x00\x80\xef\xc9\xbd\x86\x57\x8e\xd8\x61\x6e\xe5\x4f\x0c\x8e\x60\xf5\xe9\xf7\x7b\x49\xb8\xf8\x38\xb7\xce\x45\x78\xd7\x83\xb3\x5a\xaa\x09\x6b\x77\x67\x35\xec\x24\x46\xf8\xdc\xad\xbe\x0b\xea\xdc\xba\x2c\x23\xd0\x4c\x7b\x07\x53\x1d\xcc\xb5\x59\x61\xd0\x50\x30\x00\x20\xb3\xa5\x2d\xc3\x8b\x4f\x94\xe3\x91\xf9\x5f\x06\x8f\xe0\x27\xd2\x6f\xf4\xce\x23\x70\xe3\x1c\x3a\x3a\x89\x2b\x22\x7e\xb7\x1c\x20\x3e\xdd\x9d\x58\xff\x2f\x38\xee\x73\xb5\x5a\x44\x7a\xe3\xd6\x65\x21\xc3\xf6\xf6\xab\x4c\xd9\xe4\x04\x9b\x5d\x86\x28\xca\x5b\x00\x28\x7c\x42\x5b\x85\x87\x4f\xb8\x81\x6e\xf9\xcf\x06\x9e\x83\xdc\xf4\x91\x9e\x6a\xf0\x7e\xdc\xcc\x8e\x83\x24\xdf\x88\x37\xcd\x6f\x48\x97\x77\x1f\xa8\xe7\x43\x0a\x9f\x73\xd5\x1e\x30\xc1\xad\xcd\xb2\x86\x8c\xb5\x5f\x6f\x9a\x4b\x61\xda\xa4\x95\x7e\xa5\x0e\x02\x40\xa1\x81\x96\x83\x0f\x3d\xee\x4f\x69\xca\x37\x0d\x4c\xa1\x58\xd2\x11\xdd\x97\x29\xaa\xd8\x33\xed\x34\x4a\x73\x44\x57\xb3\x13\xe5\xd3\x6e\xa7\xba\x41\x6a\xa2\x4f\x73\x55\x1a\xf5\x8d\x5b\x63\x79\x3c\x4d\x66\x1f\x50\xe6\x47\x3f\x66\x63\x29\xb5\xa1\x8f\x03\x80\xf4\x09\xfd\x18\xae\x6a\x38\x82\x95\x90\xef\xde\xbf\x80\xb5\x3a\x7d\x65\xd7\x23\xe6\xc3\x58\x56\x5b\x09\x53\x17\x41\x6f\x0a\x64\xd2\x83\x3f\xd7\x3e\x64\xf2\x7c\xa4\x95\x6c\x66\x97\x9b\xd1\x4c\x61\xd9\xda\xc7\x1a\xf7\xb3\xce\xdb\x7c\xd2\x7d\x61\x39\x02\x80\xe4\x07\x43\x81\x8b\x1a\x42\x0a\xae\xe5\x5d\xeb\xf3\x14\xac\x4c\x3b\xd3\xf9\x8b\x8f\x88\xf5\x6c\xed\xe6\x9d\x89\xf0\x6d\xcc\xe6\xed\x0b\xee\xab\x9d\xca\x7d\xeb\x73\xac\xa2\x82\xdb\xe7\x56\x68\xd2\x70\xc7\xec\xf3\x0d\xd1\x3c\xe2\x4c\x3f\xed\x0d\xce\x5e\x00\x90\x4c\x65\xb6\x61\x8d\x83\xf9\x8a\xa4\xbc\xd9\xbd\xee\xf2\x65\xa9\xdf\x3a\x3e\xc8\xee\xc4\xa0\x5a\xea\x0a\xcb\xc3\xc5\x0d\x47\xa5\xca\x60\xe7\xea\x4f\x92\x3a\xef\xcf\x16\xb9\xf8\xa7\x5b\x64\x19\x45\xdc\x61\x2f\x28\x9d\x21\x4e\x9a\x59\xaf\x39\xc4\x5f\x0e\x00\xa2\x21\xf6\x7a\x4c\xf9\x80\xaa\xb4\x27\x77\x45\x4f\xa2\xee\x42\xea\xbc\x0e\x47\xcd\xcb\xa3\xaa\xe6\x5b\xea\xe5\x07\x46\xea\x59\x2a\x38\x88\x50\xbd\x52\x39\xc3\x3b\xab\x7c\x50\xf1\xc2\x6d\x92\x51\xa7\x58\x6f\x4f\xd1\xcf\x92\x91\x67\xbe\x56\x3b\x08\x0b\x00\x40\x78\x9a\xe3\x87\x7e\xd7\xff\xab\xda\x31\x27\xbd\xfb\x52\xc5\xc9\x94\xa8\xf6\xd2\x72\x44\xf4\xfd\xe6\xbd\xa6\x95\x07\xe6\xd5\xbd\x34\x4e\x0b\x7c\x58\x25\x28\xdd\xbe\xed\x7d\xf9\x5a\x9d\xc2\xb5\xc1\xf0\x5d\xdd\x69\x9f\xa2\x0b\x52\xbc\x98\xb5\xa0\x64\x95\x38\x16\x00\x84\x93\xb8\x73\xd0\xf8\xfe\x53\x0d\x19\xd9\x13\xdd\xca\xda\x53\xc9\xbf\xda\x93\xab\xdd\xa2\xf9\xcd\x93\x2a\x5a\xf6\x9f\xac\xd3\x95\xe3\x03\x0d\x55\x3b\x4c\xb4\x6d\x43\xe6\xbb\x86\x71\x57\xa9\xc1\xa8\xfd\x6e\x1f\xa7\xbd\xa1\x3c\x3c\xcb\x5d\xa5\x93\xac\x03\x00\x81\x86\x1b\x8b\x9e\xd6\xcf\x6f\xb5\xcf\x36\x77\x1f\x6e\x0a\x4b\x6e\x6d\x9f\x5f\xcf\x8d\x0e\x69\x6a\xaa\xf9\xb9\x5f\x58\xe7\x5b\x55\x1a\x88\xad\xbc\x6d\x79\xbc\xad\xd2\x8c\x37\xa5\xb9\x0a\x0c\xab\xf5\x43\xf6\x78\x6d\x90\x0a\x9c\x95\xa1\xfc\x2c\xb9\x08\x00\x82\x45\x5c\x16\x22\xe7\xcc\x3f\xb8\xd9\x19\x57\x47\xea\x71\xea\x84\xd1\xa1\x70\xbc\x73\x64\x72\xef\x71\xfc\xe5\x30\x73\xa7\x33\xa1\xc9\x3f\xa5\x45\x4c\x1c\xdc\xb2\xbf\x61\x12\xf8\xc5\xa5\xbb\xfa\x06\x14\xb7\xa4\xaa\xe2\x06\x3c\x66\x25\x28\x3b\x4d\xb9\x0b\x00\x45\x8e\x34\x7f\x04\x69\xd4\x48\xe0\x64\x3c\x1d\xf1\x27\x3c\x49\xb8\x39\xf8\x9c\x18\x10\x99\xdb\x9b\x40\xec\x0c\xab\xe9\x38\x05\x26\xf8\xe7\xb4\x6c\x24\xf9\x6c\x39\x5a\x5f\x0d\xed\x70\x19\xac\xe6\xc0\xe9\x4b\x3a\x2a\x38\xe4\x52\xab\xa6\x32\x22\x75\x17\x00\xc8\xde\xd1\xfc\x10\xf4\xd1\x4d\x24\xe7\x8c\xd7\x27\xae\x92\xa2\x13\x1e\x0c\x82\x24\x51\x64\x41\xcf\x07\xd2\x68\x58\x6d\x47\x12\xe4\xeb\x9f\xdf\x7c\x1e\x7a\xb3\x25\xa9\x3e\x10\x1e\x76\x39\x5b\xed\x44\xee\x5a\x72\xaa\x62\x15\xe5\x8c\xd5\xa5\xb2\x79\xd4\x5f\x00\x20\x33\xd1\xe8\x88\xb8\xd3\xfe\xd4\xf8\x8c\x33\xc7\x9f\x53\xb7\x26\x0c\x0e\x48\xa9\x0b\x22\x63\x7b\xe6\x53\x17\x85\x95\xb5\xf3\xa8\x61\xfe\x39\x4d\x1f\xa8\x95\x5b\x32\xeb\x8e\xd1\xdc\x5d\xee\x56\x05\xd3\xc6\x97\xfc\x6b\xd9\x46\x1f\xb0\x5e\x60\x9c\x47\x7f\x02\x00\x85\x37\xe8\xb8\x82\x89\x53\x9b\x58\xaf\x33\x8a\x86\x1f\xb0\x94\x09\x65\xfd\x02\xd6\xce\xc8\x5d\xdd\x0b\x99\xaf\xc2\x64\x6d\x32\xe6\x29\xff\xa4\xc6\x9f\xcc\x93\x5b\x8e\xd5\xe6\x31\x3f\xb9\x3c\xaf\xdc\xcb\x4a\xb1\xb3\x2d\x77\x65\xef\xb2\x4e\x2f\x7d\xcf\xb2\x02\x00\xe9\x43\x86\xa1\x60\xe2\xe4\x2e\xe1\xfa\x0c\xe2\xd0\xbf\x82\x94\x04\x42\x9f\x84\x6f\x8e\xb4\xef\x72\xe0\x7d\x09\x23\xb6\x1a\x79\x24\xff\xbd\x8d\xd3\x79\x76\x5b\x12\x6b\xd0\xdc\x0f\x2e\x9f\x2a\xf6\xf3\x5c\xed\xb6\x9a\x97\xf0\x2c\xd6\xf5\xfa\x11\xce\x0c\x00\x90\xdc\x67\xf6\x14\x44\x8f\x04\x2b\x82\x8e\x5d\x1e\xbc\x56\xf4\x39\xfe\x46\x6f\x86\xac\xed\x30\xbb\xe3\x6b\x21\x33\xf4\xbf\x16\x9c\x94\xe3\x77\xab\xfe\x8e\xa4\x7e\x8b\x6d\x75\x80\x64\x85\xcb\xb8\x65\x8e\x64\x9d\x1d\x5c\x66\x10\xfd\x9a\xe1\xaa\x5b\xc7\x2b\x05\x00\xb1\x90\xbd\x32\x9f\x78\xc2\xa9\xd4\xf6\x98\xf5\xc0\x45\xdd\xba\x78\x87\x1e\xac\x26\xfa\xd0\x78\xc7\x94\x12\x63\xe8\xde\x66\x86\xca\xc9\x2f\xbc\xee\x55\xf1\x1d\x4f\x4b\xd5\x41\xc5\x2f\x97\x96\x72\x6b\xf9\x3b\x3b\x8d\x11\x2c\x2c\x9c\xc1\xd4\x3c\x10\x74\x01\x80\x88\xcd\xb1\xcf\xb7\x3f\x9e\x55\xb5\x24\x5d\x39\xb0\xc2\xd2\x1a\xa7\xeb\xbe\x68\xce\x3a\x14\xd5\x1e\x55\xe6\x1f\x72\xbe\x69\xd4\x90\xe8\xfb\xa2\xce\x4b\x7f\xc7\x33\xb6\xb2\x4c\xfb\xdc\x85\x6f\xde\x5b\xd2\x6a\xd7\x6e\xe0\xca\x25\x33\xce\xa8\xaf\x88\xfe\xdf\x45\x1f\xe7\x66\xde\xf1\xe3\x6b\xea\x81\xf4\xfd\xfd\xe3\x35\x99\x71\x89\xdd\xe4\xca\xb7\x87\x16\xb7\xfd\xb6\x98\x43\x14\x4d\x39\xe6\x5a\xdf\xfe\xda\x9b\x65\x72\x4f\xbf\xca\xa0\xd2\x66\x17\x96\xe9\x89\xc6\x62\x77\xde\x30\x45\x71\x75\xc6\x47\x75\x88\x78\x2d\x00\x08\x0f\x71\x97\xe4\xe5\x0f\x3f\x68\x8e\x49\x9f\xd1\xcf\x69\xd0\xc7\xb9\x76\x3b\xd6\x59\x1f\x7c\xdd\xa6\xae\xee\x08\x29\x68\xfc\x5d\x19\xee\x5b\x51\x9b\x5d\x8e\xf1\xdc\x5e\x71\xd5\x78\xdf\xc5\x68\x3a\xac\xf3\xb0\x9b\x28\x4d\x2e\xbe\x65\xb3\xb5\x44\x2f\xee\x01\x00\xc1\x25\xae\xef\xe3\x2b\x78\x0c\x72\xed\xb5\x44\x82\x0b\x2a\xe1\x64\x10\xe1\x26\x9a\xdf\xbe\x92\x88\xc3\x74\x98\xbf\x80\x4b\xb1\xbf\x65\x5d\xe0\x59\x7c\x3e\x79\x9c\x24\x26\xbc\xc9\xfc\x0e\x65\x83\x50\x78\x0d\x7c\x80\xf4\x66\xd3\x27\xf2\x22\x78\x95\xcd\x73\x4a\x28\x4c\x79\xf4\x0c\xa7\xc4\xe6\x5e\x95\xe1\xa3\x70\x61\x23\x62\xc2\x5c\xbc\x53\x5b\x3e\x61\x04\xff\xcb\xbc\x87\x48\x27\xbc\x92\x2d\x06\x83\x89\x7f\xc8\xc1\xa4\xe5\xa4\x15\x99\x28\xc8\x06\x0a\x0d\xf7\x80\x01\x38\x6e\x93\x08\xbe\x49\xf6\xb2\xa9\xa2\xac\x24\x87\x3e\x7c\x83\x1d\x21\x5e\xbe\xd2\x85\x13\x82\x09\x27\xc6\xf0\x07\xc1\xe7\xad\x55\x84\xa5\xa4\x63\x26\x01\xe1\x25\xe9\x77\x61\x01\x71\x00\xea\x84\x5b\xc0\x0a\x98\x9c\xf1\x9a\x54\x41\x0e\x38\x50\x0d\xd5\x91\xff\xb7\x69\x1b\xcc\xa7\x60\x6d\x88\xe4\x67\x14\xef\x07\x5e\x98\xf5\x8c\xb9\x97\x9e\x60\x1d\xe9\x37\x87\x5f\xe2\x16\xd1\x4b\x9a\x7f\xe2\x5e\xd3\xf3\xcb\x66\xe2\xc7\xe8\x47\xa4\x4b\x09\xbd\xf4\x64\x48\x4e\xec\xa1\x23\x8e\xfd\x0b\x5e\xa7\xe7\xef\x1f\x24\x7d\xa4\x1f\xd9\x58\x0d\x5d\xa6\x6f\xb3\x09\x22\x87\xd2\x02\xef\xed\x45\x5d\x17\x8a\x2e\xce\x41\xdf\x14\xe8\x87\x1c\x30\xd7\xf8\x75\x4d\xfb\xb0\x03\xbc\x8b\x06\x0a\xae\x83\x37\x55\xdc\x8a\xef\xe6\x1e\x22\xc5\x12\x2e\x73\x4a\xd3\xaf\x13\xff\xb2\x1f\xec\x9f\x47\x72\x62\x2f\xdf\xe8\x09\x59\xb1\xf6\xdb\xc4\xc0\x5c\x46\xda\x1d\x27\xe4\xa5\xe2\x86\xb1\x7f\x50\x03\xf2\x89\x81\x83\xe8\xbe\xa2\x88\x06\x25\xa6\xbb\xb0\x5b\xff\x1c\x3b\x24\x75\x13\x05\xe0\x6e\x88\x5b\x41\x7b\xfc\x6f\x91\x47\xda\x10\x71\x87\xa0\x62\xdf\x41\x30\x9d\xbf\xc6\xe3\x1c\x29\x98\x5b\x6f\x83\x80\x4e\xb3\x30\x37\xa9\x08\x95\x45\x74\x16\x87\xac\x34\xbd\xec\xed\x41\xd5\x19\x03\xea\x1c\xd0\x35\x7a\xb6\x56\x83\xe9\xd2\x8c\x08\x36\x60\xc7\x4b\xa6\x13\xc2\xf1\x36\xc5\x5b\x52\x13\x08\x07\x8a\x62\xf6\x6e\x24\x52\xa5\x62\x0f\x57\xf0\xa0\xd8\xdd\x46\x4a\xba\xc7\x0d\xbe\xae\x2f\x78\xd1\x71\xfa\xf4\x28\x72\x4a\xab\x6d\x77\x30\x6a\x7e\x63\x58\xf5\x10\xda\xb6\x36\x4e\x9d\x84\x59\x5c\x19\xcf\x73\xc6\xfa\x98\xf7\xe1\x58\x38\x94\x61\x59\xf2\x1b\x7c\xab\xe6\x7e\xd8\x74\xc2\x33\xe5\xe9\x0d\x20\xb1\x56\xde\x63\x53\x44\x0a\xe1\x8f\x5d\x1d\x2c\xe8\x1f\x5d\x76\xb2\x19\x71\xe5\x44\x44\xe7\x24\xe4\xe5\x81\xfc\x4a\x05\xea\x64\x77\xb6\x6a\x1f\xfa\x54\x9b\x3f\x67\x1b\xe6\x49\xc3\x4f\xcc\x39\xdc\xc2\x6a\x41\x92\x1c\xbf\xdb\xfc\x2b\xd4\x9e\x90\x5a\x7a\xc2\xfd\x7f\x44\x27\x75\xa3\x4d\x31\x78\x59\xf8\xf0\xca\x58\xc1\xc0\xa5\x80\x91\x2b\x88\x91\x73\xb6\x1d\x0e\xc8\xbe\x93\x1d\x15\x4d\x28\xcb\xd0\x16\x25\x1a\x6d\xe8\xe1\xb2\xf3\x31\xed\x6d\x9d\x98\xc5\xd8\xc7\x0d\xed\x49\xd3\xf1\xd3\xab\xc4\x21\xa3\x84\xf9\xa6\xcb\xee\x67\x09\x17\xb5\x6f\x6c\x3a\x40\x50\xa4\xbc\xb2\xb8\xa0\x6f\x1c\x3d\xe2\x88\x68\xbe\xfc\xb6\x1d\x83\x54\x9f\xdf\x5c\x31\x1d\x85\x3f\x15\x51\x7c\x05\x9d\x3e\xb4\x81\x75\x1b\x83\xec\xfe\x17\xad\xc6\x2a\x5a\x53\x12\x3b\x70\x15\x75\x15\x21\xd5\x78\x53\x85\x97\xfb\x2d\xc2\x01\x3d\x66\xa6\x0d\xf1\x85\xe8\xe5\x3d\x22\x58\x80\x28\xba\xc8\x06\x4f\x22\x9f\x0c\xdd\x23\x39\xa2\x9d\x9b\x17\x91\xf8\x98\x04\xe3\x5e\xd2\x37\x6c\x83\x84\x0c\x65\xe2\xdd\xa1\xb9\xd0\x0b\x42\xdf\xb1\x7a\x18\x06\x23\xf7\xbf\x24\x2f\x26\xdd\xdf\xd8\x4e\x2e\x87\xb7\xda\xb0\x28\x85\xf0\xad\xbb\x66\xa2\x14\x73\xf2\x42\x3f\xf1\x17\xb6\x6f\x68\x05\x88\xc0\x55\x37\xc5\x83\xff\xe2\xa5\x06\x39\x29\x9f\x20\x14\x5f\x27\xbd\x21\xb6\x90\x40\x88\x06\x3e\x39\x66\x07\xaf\x87\xec\xf6\x87\xc2\xf7\x60\xbf\x8d\x9b\xc8\x18\xb2\xb7\xcd\x5c\x0a\x48\xe6\xdd\x19\x21\x74\x13\x97\x8d\x3d\x22\x6e\x27\xf6\x0c\x1e\x21\x0e\x82\x51\x8d\xc5\xe0\x6e\xf0\x79\xe9\x38\x78\x93\x24\x16\xaf\x23\xe5\x40\x31\xe0\x13\xc8\x16\xde\x98\xae\x86\x46\xc9\x56\xfb\xc6\x61\x1e\xf9\xb2\xc7\x23\xf2\x2a\x0a\x66\xc6\x2b\xca\x4e\x0a\xea\xd6\x0f\xbc\x0b\x7d\xd5\xf9\x45\xf8\x73\x74\xeb\x7e\x1e\x01\x4b\x7b\x56\xff\x99\x38\x87\x36\xaa\xcf\x22\x76\xd2\x86\x85\xf7\xc1\x2c\xda\x03\xe2\x39\x92\x33\x7d\x5a\x9a\x86\xf4\x93\xee\xb8\xcf\x06\xba\x48\xdf\xe2\x91\x0c\xe3\xe8\x9b\x66\x5c\x25\x97\xd3\xb0\xe3\x3f\xb1\xaf\x04\xe8\xb3\xc1\x38\x35\xbf\xaa\xf7\x34\x3e\x8c\x77\xbd\xee\x08\xfe\x0b\xcf\x56\xfb\x96\x50\xcf\x8d\x15\x48\x89\xf9\x9c\x61\x42\x0d\xe8\xcf\x59\x97\x6a\x22\xad\x65\x0b\xf6\x1e\x82\xac\x58\x2f\x37\x4c\x40\xf5\xac\xa0\x19\xff\x83\x5f\x30\x18\x37\x6c\x30\x37\x15\xc9\xa3\x49\x58\x51\xd1\xbd\x1e\x00\xb7\x5f\x76\xb0\xa6\x0a\x0f\x48\x6f\x68\x12\xf0\xc7\x25\xe9\xfc\x75\x04\xb9\x78\x06\x1e\x24\x62\x84\x35\x29\x65\x60\x96\xc0\x37\xac\x92\x14\xca\x7b\xb0\xa1\x92\xf4\x82\x5b\x6c\xb3\x1a\xb6\x67\x09\xae\x1e\x44\x77\x99\xff\x9e\x1c\xc6\xc0\x65\x9c\x4e\x0c\xd6\xab\xf4\x77\x95\x2f\xf6\x9d\x2e\xb5\x64\x25\xae\x4b\x7d\x9a\xbb\x12\xaf\x50\x6d\xc0\xb6\x10\x18\x0a\x4e\x72\x00\x11\x92\x5d\x0f\xd5\x83\xc9\xd2\x6d\x1b\xd6\x80\x6f\xc4\x73\x6c\x92\xa1\xf5\xdc\xfd\x97\x2c\xe8\xf9\x6d\x5f\x4f\xac\x47\xdf\x6c\x4e\x68\x9f\x82\x51\xd6\x77\x5a\x5e\x62\xf7\x57\x7f\x2e\xfe\x88\x9b\x5b\xe1\xc8\x5e\x81\xfb\x68\xf2\x45\xbf\xc5\x3f\x2b\xdd\x99\x78\x87\x70\x5f\xb3\x25\x84\x4b\x1c\x51\xc6\xb9\x2b\xc1\x9d\x72\xba\x0d\x95\xc4\xe1\x1f\xbf\xa0\x44\x8d\x9f\x7c\x3e\x3c\x0d\xad\x19\xde\xdb\x72\x16\xb3\xb7\x4f\x6d\x1e\xc1\xfc\xee\x3c\x2d\x7f\x8d\xed\x6f\xb9\xc2\xf4\xc3\xa9\xea\x07\x50\x01\x78\x4e\x15\x33\x81\x4d\x28\x30\xbb\xef\x29\x21\x06\x96\x7a\xba\xcf\x26\xb6\xa9\x03\x6c\x24\x24\x2b\xe1\xa9\xb1\x6a\xd4\xf9\xb1\xfb\x43\xab\xd0\xcc\xd1\x67\xcd\x8f\x31\x1b\x4e\x0c\x9b\x9e\x60\x6e\x0d\x80\xf2\x45\x58\x79\xf7\x64\x06\x84\xcb\x68\xcd\x42\x2a\xf0\xe1\xf5\xda\xf8\xdf\x04\xf7\xca\x96\x3d\x81\x84\xcf\x26\x4f\xb7\x17\xc4\x44\x2d\xc2\xa6\x1b\xac\x16\x41\xe7\xbf\xa0\xfa\xaf\x3d\x1b\x44\xa1\xb3\x2e\x9a\x9b\x37\x63\xac\xcf\xae\x36\xf9\x60\xaa\x46\x68\x45\x44\xec\x91\x01\x1d\xfd\x25\xce\xa1\x8b\x87\x5c\x8c\xfb\xd3\xb2\x33\xbe\x06\x7f\xa1\x76\x70\xcf\x0a\x02\xdb\xc2\x74\x7b\x4f\x78\xa8\x7b\x33\x73\x3e\xb8\x40\x74\x61\xfc\x29\x2c\x42\x4c\x3a\x5b\x00\x0b\x90\xf9\x7d\x5b\x61\x35\xea\x78\xdd\x38\x7c\x06\x33\x55\x97\x4d\x9e\x86\x4d\x15\x4e\x26\xef\xc0\xfd\x4b\xb4\x26\x33\x08\x94\xb4\x25\xe4\xab\xe0\x8a\xbd\xbd\x14\x0f\x52\xab\x87\x33\x85\x01\x3b\xce\x68\xa1\xfa\xc3\x13\xe3\x6b\xa1\x1a\x8c\xf3\x99\x72\xe8\x1c\xd6\xa3\x17\x09\x7d\xc3\xb9\xd7\x2d\x82\x37\xe1\x1d\xb5\xf5\x30\x8d\xb0\x4e\x70\x14\x3e\x45\x8c\x26\xe4\x93\x1d\x40\x45\x2a\x97\xcc\x26\xdd\xdc\xbb\x81\xfc\x09\x9e\xb5\xc1\x48\x39\x44\x76\x98\xe1\x47\x5d\x43\x36\xdd\x48\x23\x5d\x26\xe4\x8d\xde\x87\xe6\x13\xed\x7a\xcc\x50\x3c\x71\xb8\x36\x1c\x2a\x01\x8f\x69\x3e\x41\xff\x23\x2d\xe6\xb7\xc0\x21\xa4\xf7\xf8\xdb\x70\x0b\x34\x9e\x3a\x9d\xec\x02\x0f\x84\xf5\x92\x6b\xc8\x9a\x0d\x87\x28\xb6\x94\xc8\x19\x8b\x28\xdf\x29\x94\x6b\x6c\x30\x8c\xe6\x7d\x7a\x3a\x58\x49\xdb\xda\xf5\x82\x34\x99\xe6\x56\xdd\x4d\xca\xa4\x2d\x55\x4b\x48\xe3\xb4\x35\xbc\x02\x28\x94\x16\x8d\x3b\x05\x9d\xa3\x15\xa6\x2c\x84\x13\x69\x27\x43\x3f\xc3\xdf\x68\x9f\xdc\xaf\x93\x33\xe8\x33\x67\x58\x51\x32\x69\x05\x57\x30\x44\x67\x7e\xdc\xc9\x9d\x44\x36\xaf\xb5\xd3\x83\xf8\x81\xfb\xa3\xca\x15\x8c\xe1\xee\x2d\x71\x04\x6f\x70\xea\xb8\x2e\xa4\x38\x8e\x0b\xb6\x85\xf4\x8e\x5d\x95\xec\x0e\x15\xb1\x9d\x43\x0f\xc1\x1b\x59\x26\x77\x01\xac\x67\x39\xcc\x08\x24\x9b\x18\xf0\xa5\x6e\x82\xb5\x7c\xee\x09\x34\x81\x2b\xeb\x69\x47\x13\x67\x15\xee\xaf\xe0\x11\xb1\x92\xf7\xca\x32\xe2\x17\xb1\x8e\x7d\x09\xe4\x89\x62\x31\x02\xd2\x3a\xe1\xc2\xa4\xad\xa4\x71\xfe\xf9\x90\x16\x08\xc3\x13\xbb\xfb\x41\xe3\x5c\xd4\x0c\x36\x7c\x8b\x05\x8d\xfd\x87\xfb\x6b\x42\x0f\x5d\xc1\x53\x8c\xcb\x5b\xde\xe0\x3f\xea\x5b\xca\x9d\x09\xa9\x5a\x5f\x45\x2e\xe1\x4d\xc9\x09\xe6\x45\xa2\x50\x79\x00\x35\x06\x7a\xcb\xcf\x26\xdc\x03\x5f\xc9\x82\xf6\x74\x91\x04\x92\x71\xb7\x73\xa4\x5b\xa2\x97\x33\x2e\x43\xf7\xb8\xee\xe7\xb0\xb8\xec\x56\xc7\x81\x43\xb8\xdb\x8d\xe6\x26\x16\x7e\x5f\xdd\xf2\xb2\x6b\xf8\x81\x2a\x6e\xd1\x2e\xc2\x9e\xf2\xbb\xf4\x6b\x84\x97\x65\xce\x48\x5b\xa2\x56\x1f\x19\x0f\x82\xfb\xd4\x8c\xdd\x75\xe0\x7f\xc5\x4f\xdc\xc2\x48\xab\xe5\xbe\x36\x53\x21\x57\xbe\xe2\x8c\x17\xce\xe1\x44\x75\x9f\x03\x4e\x36\xe8\xd7\xb0\x0f\xf7\xb5\xa7\xcb\xd0\x83\xcf\xee\x70\x28\x0c\xc6\xbf\x6d\x8e\xa5\x4e\x10\x84\x75\xc4\x82\x02\xe2\xb6\x4a\x74\xdc\x5a\xe2\x3d\x53\x5c\x70\x3f\x98\xaf\x2f\x77\xed\x07\x75\x25\x27\x6d\x16\x91\xaa\x85\xdc\xd1\x7d\xb8\xe9\xe7\x10\xbd\xde\x38\xcc\xa9\x96\xfa\x63\xb8\x9b\xc3\xc3\xa5\x77\xf1\x01\x7d\x5d\x52\x2c\xfe\x44\x27\x8e\xba\x93\x70\xb4\x65\x76\xfe\x08\xe1\x4f\x1d\x39\xd6\x4c\xd4\x55\x5c\x0d\xce\x04\x57\x94\x99\x5c\x55\x60\xb0\xe6\xa1\x8d\x3f\x29\x4c\xb4\xf5\xb4\x16\xfb\xfa\xca\xbe\x1e\x36\x2e\x62\xec\x40\x5d\x1b\xae\x7e\xf4\x9f\xd2\x8d\x78\xdb\xe3\xd5\x92\x5b\x78\x56\xdf\x5f\x4a\x13\xc1\xb6\x73\x55\x7e\x18\xa1\xbe\x79\x51\x6c\x38\xd1\xa7\xe6\x6e\xb0\x2f\xb1\xa5\xfc\x9a\xab\x81\x78\x52\x17\x69\x53\x02\xb6\x89\x04\xe7\x47\x18\xcf\x0a\x96\x0f\x2d\x63\x1c\x43\x54\xb6\xf4\xd3\xbf\xa0\x16\x99\xbf\xd3\x7b\xd0\x19\x8a\x1d\x74\x3e\x66\x8c\x69\xa0\x1f\xc6\x45\xa3\x68\xf4\x75\xf8\x4f\x09\x28\xda\x04\xb1\x6c\xf7\x7b\xda\x0b\xd2\x4e\xd7\x5c\xda\x33\xe8\xa4\x55\x1a\x7d\x0f\xfc\xfe\xbc\x0d\x63\x39\x7a\xc9\x60\x22\xbd\x09\xb3\xab\xf9\x07\x3d\x1c\x1b\x63\xde\x49\x5f\x8d\x8b\x94\x0b\xe8\xd3\xf1\xb9\x8c\xdf\xb4\xa7\x84\x72\xe4\x47\xda\x59\xe2\xbb\xf8\xff\x68\x9d\xa4\x90\xdd\x4c\x5a\x33\x24\x5e\xff\x81\x76\x1c\xee\xb1\xb2\xa3\x7b\x90\x0b\xcf\xed\xa1\x27\xe0\x7d\x06\x24\xb4\x3f\x84\xc9\xcd\xeb\x68\x8d\x84\x11\x13\x8e\x56\x4c\xcc\x2a\xba\x41\xa3\x83\xee\x8c\x38\x5a\x0e\x69\x09\x32\x9d\x96\x0c\xcd\x8f\x27\xd2\xe2\x61\xbb\xdd\xb6\xb4\x02\xb2\xf5\x7a\x23\x8d\x4b\x7e\x3c\xfd\x0d\xdd\x9a\x72\xf0\x4c\x21\xf5\x1d\xa5\xaa\xef\x01\xb5\x85\xd2\xd2\x48\xa3\xd2\x29\xad\xc6\x4f\x54\x02\xe5\x82\x8c\x48\x25\x52\x26\xe8\x8e\x54\x02\x35\x0c\x11\x4d\x65\x52\xcb\xe2\x2a\xa9\x5a\xda\xa4\xe0\x2c\xea\x69\x5a\xd4\x7a\x5f\xea\x53\x9a\xd1\x6a\x12\x0d\xa6\x6d\x39\x7d\x81\x52\xca\x4d\xee\xdd\x46\xe1\x71\xee\xd4\xbf\xa6\x10\x38\xe1\x06\x88\x42\x66\x9f\x2a\x5c\x41\x91\xb0\xf7\x53\x5f\x53\xca\x58\x6f\x0b\xf6\x52\x06\x58\xca\xd8\xb3\x94\x3b\xac\x3d\x41\x97\xa8\x36\xcc\xcf\xeb\xad\xa8\xf6\xcc\x26\xab\x20\xea\x20\x63\xed\xc9\x3a\xf2\xb9\xc2\x86\xee\x04\x72\x95\xb4\xb8\xee\x00\x59\x21\xc9\xd5\x7f\x27\x5b\xc4\x9e\x92\x41\xf2\xb0\xc8\x8a\x52\x4f\x7e\x28\xf8\x94\xbf\x95\x62\xc3\x7f\x18\xf3\x9a\xe2\xc2\xbb\x18\x14\x4c\x09\xe7\x8e\xad\x1b\xa7\x44\x71\xad\xad\x34\x94\x4f\xac\x25\x27\x32\xe0\x76\x43\x7e\xc7\x77\x58\xa5\x4f\xaa\xbe\x02\xf3\xb5\xbe\xda\x32\x58\x5f\xf2\x4b\xa4\x82\xfb\x95\xbd\x70\x0f\xfc\x5c\xc1\xc9\xe5\x91\x97\x16\x85\x1c\x35\x91\xfd\x0b\x97\x06\xe6\x91\x93\x24\x53\xd7\x49\xc9\x7b\x44\x2c\x6b\x57\xf2\x2d\x4e\xd3\xd0\x5d\x78\x5e\xa3\xbe\x0d\x09\x4d\xd4\x1d\xae\xcc\x81\x5e\x57\xdb\xa8\xa3\xa1\x5f\x96\x76\x01\x1e\x5e\x6c\x3a\x44\x3a\x03\x07\x95\xbe\xcd\xbe\x0e\x43\x5a\x30\x7a\x2b\x5c\x59\x32\x37\x20\x05\x3e\xa9\x78\xb5\xf6\x1b\xac\x29\x52\x59\x87\x90\xdd\x79\x6f\x07\xce\x41\xbd\x83\xe8\x96\x0c\xa8\xb1\x37\xc5\x12\x0d\x69\x3b\x37\xaa\xa2\x21\x4b\xcb\x5d\x5e\x11\xd4\xdd\x90\x0b\xda\x40\xf7\xab\xff\xcb\x0a\x85\xff\xb1\x44\x46\x7d\x83\x3d\x8d\xdd\xbb\xf2\xe0\x7d\x3a\xe5\xda\x34\xf8\x1f\x95\xc5\xfa\x08\x5c\x26\x18\xee\xbf\x04\x9d\x3d\xf5\xaa\x99\x0a\x99\x8e\x17\x96\x93\x20\xf2\x80\x95\x92\x0e\x91\xbb\x83\xb9\xa3\x90\xa0\x2d\x81\x78\x08\xaa\x6a\x4c\xce\xac\x80\xae\xd6\xec\x8e\xc2\x42\xef\x2d\xce\xbb\x6c\x61\xc0\x48\x5d\xbb\x05\xea\x56\x97\x58\xe3\xe0\x00\xe1\xb1\x7e\x6b\x68\x7c\x8c\xdd\x74\x1e\x2a\x1c\xfd\x6d\xbe\x04\x1d\x1e\xd9\x58\x7c\x1f\x0a\x1d\x5c\xc8\xf5\x80\xc2\xba\xcf\x12\x46\xa1\x84\xb6\x94\xcc\x4d\x10\xb9\x61\x3c\x6a\x11\x24\xaf\xf6\xf0\xbf\x0b\x15\x9b\xf1\x6b\x37\x43\xde\x9a\xcf\xd6\x83\x50\x8b\xb0\x6b\xd8\x91\xdf\x99\x2f\x6c\x5f\xc4\xbb\x52\xf0\xbd\x2a\x90\xfb\x07\x19\xab\x09\xe4\x86\xa2\x3a\x84\xd1\x1c\x3d\x66\x03\xa4\x66\xbf\xc6\x0e\xe7\x20\xd9\x81\xf8\x9c\x68\x17\x56\x05\xd1\x6e\x57\x0d\x6b\x15\xd8\xb6\xe6\x3b\xf3\x1d\xe4\x37\xf5\x38\xd3\x04\x5f\x18\x42\xf3\x7e\xa3\x42\xdb\x92\x78\x6e\xe8\xcc\x4a\x19\x37\x07\x43\x51\xeb\x38\xc7\xb1\x22\x41\x1f\x67\x15\xae\x03\x9a\xc5\xa6\xe3\xbf\x65\x7f\x60\xbd\x24\x1e\x3c\x32\xc8\x4a\x03\x9b\x76\x05\x30\x3f\x93\xbe\xaf\x31\x30\x2f\xc1\x1e\x53\x95\xcc\x42\x72\xcc\x60\x27\x6f\x1f\xce\xb5\x55\xc7\x15\xe1\x26\x2a\xae\x71\x6e\xe1\xcf\x97\xbc\xe0\x6c\x27\xb0\x05\x8b\xd8\x55\xc4\x64\x12\xc8\x9e\x07\xc6\x64\xa3\x58\x3c\x52\xfa\x91\x38\xd6\x3f\x10\xd6\xff\x3f\x66\x2b\x8c\x58\x93\xc3\x94\x93\x63\xa6\xca\x99\x29\x94\x45\x03\xab\xb9\x53\xc9\x0b\x5b\x66\x70\x62\xc9\x7e\x96\x00\xf6\x30\x39\x53\x45\x64\x6f\x23\x1b\x78\xa3\xac\x2e\xf2\x6b\x70\x3f\xcb\x8b\x12\x95\x55\xc0\xec\xa7\x9c\x8b\xd2\x32\xe3\xa8\xbe\xfe\x87\x99\x8b\xa9\x35\x6b\x96\x32\xbe\xd0\x16\x4e\x6d\x67\xdc\xa1\xde\xe9\xc3\xb1\x9b\xd8\x70\x53\x36\xdb\x93\xbd\xd8\x3c\xca\x6a\x65\xb5\x28\xed\x58\xdb\x59\x11\x5c\x11\xf3\x0c\xf3\x27\x71\x03\x33\x96\x79\x2a\x93\xc8\x78\xcf\x54\x46\x5e\x62\x98\x98\xd9\x7e\x27\x19\xe9\x4c\xef\xd5\x6f\x18\x9b\x99\xeb\xa6\xfe\x60\x38\xd3\x3b\x7a\xf8\xac\xeb\x12\x4a\xc3\x09\xd6\x11\x31\xcd\xb4\x8d\xf9\x50\x44\x51\x58\x98\x05\x42\x0c\xc7\x9b\x69\x25\xc0\xe3\x7f\x33\xca\xf9\xc5\x19\x08\x46\x28\xaf\xf3\xf0\x0f\xfa\x57\xee\x35\x3f\x7f\x7a\x2d\x77\xd2\xea\x6e\x7a\x16\x87\x3a\x2d\x84\x1e\xc3\xa4\x76\xed\x63\x76\xe9\xc4\x75\xa9\xcc\x28\x4d\x93\xe1\x2a\xe3\x79\xc9\xe9\xa2\x4c\x06\x51\x79\x9c\xe5\xc6\x98\xaf\x18\xc0\x39\xd3\xbb\x8b\xce\xa7\x8f\xd3\x33\x0a\x6f\x1c\x1a\xa0\x2f\x90\x3c\xf6\xcd\xa5\x9d\x10\x2f\x5a\x9d\x41\x4b\x13\x4d\x9b\xd6\x46\x3b\xca\xfe\xaf\xfd\x32\xd3\xae\xf6\x62\xf5\x47\x46\x6f\xd5\xff\xf4\x64\x46\xa4\xe5\x77\xe1\x66\xfa\x63\xd3\x07\x86\x13\x1d\x34\xdc\xc3\x84\xd1\x57\xe8\x2e\xa6\x6d\xa5\x5d\x50\x77\x1c\x44\xd2\x20\x65\xd5\x4e\x02\xcd\x51\xfe\xda\xf9\x13\xd5\x2c\x6b\x9d\x3e\x8d\x2a\xe6\x2d\x6c\x35\x30\xde\xf5\x4e\xaf\xbc\xc7\xe0\x74\x1e\xd0\xe2\x19\xb3\x5b\xa9\x92\x5d\xf4\xe2\x46\x2e\xed\x20\x7d\x55\x2d\x1e\xa5\xa7\x1d\xaf\x4c\x48\x19\xa0\x65\x99\xbd\x22\x36\xd2\xfe\x31\x2c\xdc\x41\xa1\x36\x6a\x55\xce\x31\xd4\x25\xca\xc0\xe9\x73\x29\x3f\xf9\x67\x5b\xaa\x18\xff\x1d\xdf\x52\xf1\x8e\x01\x0e\x6c\xd2\x94\xd0\x3f\xf5\xcc\x12\x17\xd0\x31\xed\x4d\x54\x11\xed\x47\xf3\x66\xe4\x4b\x5a\x61\x9d\x39\x65\x25\xcd\xa3\x6a\x5a\x78\x23\xf5\xb2\x99\xb0\x63\x31\x35\xd3\xb0\xd5\x79\x15\x65\xa8\xc4\x6a\xfa\x6a\x8a\x4e\x90\xd1\xfc\x90\xf1\x78\x54\x51\xb1\x85\x91\x34\x92\xae\xfe\x8f\x7e\x69\xf0\xbb\xe8\x0c\x3d\xb0\x77\x1f\xe5\x13\x6d\xa0\x03\x8f\x4c\xa5\x85\x35\x33\x93\x9b\xa8\x0f\xea\xe8\xe1\x07\xa9\xb8\x4a\xde\xf6\x3b\x94\xdf\x65\xef\x9d\x97\x50\x7c\xd5\xfb\xa7\x27\x53\xfe\x11\x74\xb6\x99\x64\x79\x79\x2f\xaa\x57\x48\xff\x14\xa4\xea\xad\x24\x16\xc4\x45\xe9\x0d\x71\x1e\x6a\x2b\xfd\x94\x68\x3b\xba\x0f\xfd\x5d\xf0\x07\x1b\x99\x7a\x99\x3f\x86\x9f\x1c\x91\xcd\x6b\x27\xb4\x6c\xff\x8f\x7b\x0a\x0c\x5e\xb5\x88\x5b\x40\x3a\x39\xd9\x89\xfd\x11\xbe\xd8\x3a\x56\xd8\x83\xa4\x56\xe5\x49\xb3\x50\x75\xba\x6c\x89\x23\xfa\x8a\x34\x40\xf4\x1e\xf3\x86\xbe\x53\x78\x16\xb7\x06\x0d\x0b\x0c\x78\x64\x6a\x32\x1f\x22\x5c\x8e\x98\xc3\x23\x80\x9b\xb6\xab\xb8\x6a\x12\xec\x78\x9b\x1b\x0e\x55\x4f\xfe\x87\x7d\x93\xec\xd9\xf2\xba\xd0\x16\xbb\xa3\xb2\x5e\x72\x03\x67\xaf\x1d\x12\x9b\x71\x7f\x24\x46\x11\x09\x7f\x92\x56\x25\x8c\x21\xd4\xa3\xbe\x08\xbc\x89\x6d\x29\xaf\xf9\x2b\xc1\x0b\xe1\xdd\xbc\xf5\xa4\x27\xdb\xf7\x73\x13\xa0\x67\x8e\x1d\xdc\xf9\xf0\xc5\xc9\xf6\xec\x5a\xf2\x83\x66\x86\xe4\x14\xc4\xab\xf0\x11\xd7\x43\xaf\x34\x11\x22\x0d\xec\x2b\x8e\x10\xf2\x60\x29\x95\x24\x80\xe1\x2f\xc8\x67\xfc\x3c\x32\x98\x02\xf0\x52\x29\xb3\xc2\x67\x72\xe9\x14\xb1\xcf\x49\xce\x49\xea\x4c\x47\x12\x07\x45\x65\x4f\x0e\x67\x3b\x52\xe9\x8d\xdf\xc4\xa7\x99\x65\xe5\x67\x44\xf5\x4c\x42\xc9\x2b\xa1\x9e\xe9\x2d\x9a\x26\x28\x61\x7c\xa1\x1c\xe2\x6b\x19\x27\x11\x77\x78\x5a\x46\x5b\xb2\x1d\xd7\xcc\x68\x38\x90\xc0\x39\xcf\x28\xf5\x89\xe1\xfc\xc3\x28\x72\xcc\x64\x57\x31\xca\x27\x37\xb3\x72\xe8\x01\x0d\xf6\xa2\x07\xa2\xad\x66\x17\xe1\x39\x21\x4e\x45\x12\x0c\x0b\x4c\x82\x66\xfe\x08\x7f\x84\xbc\x9c\x77\x91\xf7\xa1\x60\x84\x7b\x97\x17\x90\xb4\x96\xf3\x96\xab\xdd\xdf\xc4\x59\xcc\x79\xed\xfd\x99\x1d\xc5\x39\xe2\x88\x64\x8d\x72\x66\x4e\xd9\xce\x2c\x66\xfc\xad\xfd\x9f\x70\x42\x4d\x37\xbe\x12\x3c\x54\x7d\x2c\xde\xc2\x1f\x57\x1e\xe1\xa9\x78\x77\x15\x22\xc8\x93\xfb\xa2\xe8\x74\xfe\x4c\xce\x4f\xd9\xe2\x84\x06\xce\x7c\x69\xde\x3e\x06\xdb\x4f\x3c\xe0\xbd\x92\x85\x15\xed\x76\x9c\xcf\x3c\x25\xe4\x4f\xe1\x33\xb4\xec\x80\x6a\xad\xd0\xb5\xca\xa1\x54\x2b\xf0\xb5\xf0\x8a\x26\xf8\xfb\x4d\xaf\x39\x4c\xde\x7e\xa3\x1b\x78\x80\x7b\x58\x9f\x9d\x1b\xce\xc9\xd2\xb4\xc4\xaf\x65\x33\x55\x5f\xf7\x06\xb0\xaa\x8a\x83\xb7\x6d\x66\x5e\x2b\xfa\xbb\x52\xc2\xb4\x29\x94\x4f\xe9\xa6\x3f\xe2\x6e\xaf\x94\x0a\x5d\x3a\x0a\x74\x66\xc1\x3f\xad\xab\x65\x36\xfc\xd9\x8d\x03\xac\x2a\xde\xb4\x3a\x67\x42\x31\x77\x72\x15\x29\x7b\x90\x63\x5b\x7e\x2e\xf6\x1c\x7b\x65\x99\x5d\xd8\x6c\xd6\x2e\x3d\x75\xeb\x26\x66\x86\x86\xb9\xe2\x15\x83\xa6\x30\x4e\x39\x41\x0f\xe6\x5d\xaa\x10\x0a\x17\xf6\x27\x68\x7b\x05\x93\xba\x87\x0b\x37\xf3\xbe\xb6\xff\x66\xde\xe5\xfe\xdb\x62\x85\xbf\xc9\xb9\x5b\xff\x2b\x7b\x1e\xfb\x51\xf5\xa3\x58\x2f\xd6\x2b\xcb\x99\x50\x29\x6b\x4a\xd9\xb8\xd7\x28\x73\xa5\x7e\x68\x45\x33\x63\x8d\x72\xeb\x94\xbb\xb4\x27\xfc\x2c\x4b\xa3\xe0\xef\x09\x81\xe6\x37\xff\xe5\x60\x9b\x94\xcd\xbb\xde\x5b\xc9\xf4\xe1\x76\x77\xe6\xe2\x83\x39\xe5\xad\x73\xb2\x8a\xd8\xfa\x86\xd2\x98\xb3\x2c\x6d\x8d\x7b\xe8\x26\x66\xad\xe5\xae\x17\x8b\xd1\x63\xdc\xbc\xc2\x48\x37\xaa\x52\xa6\xce\xa6\x1d\xe5\x77\x1a\x89\xfa\xcb\x79\x9d\x4a\x17\x6d\x75\xc1\x4a\xe1\x5a\x75\x31\x82\x48\xdd\xac\x12\x20\xef\xa2\xc1\x62\x26\x3a\xe5\xd8\x12\x39\x06\xf3\xe3\x08\x2c\xcb\xc2\x35\x04\x9f\x94\x82\x84\xd4\x4d\xa7\xc5\xb7\x89\x3f\x96\x1e\x11\x67\x93\xa2\x00\x80\xf7\x9b\xbc\xd8\xf0\x5a\xbf\x05\xf1\xab\xd8\xa8\x5d\x8e\x5a\x2e\xa8\x57\xcf\x47\x6f\xa6\x0c\xaa\x16\x60\x22\xd1\xb3\x8b\xed\xb0\xc5\xe9\x9d\xf2\x85\xb8\x57\x47\x56\xcb\x16\x13\x8e\x06\x33\xa5\xde\xc4\x91\x4d\x4a\x71\x35\x69\xde\xd2\x00\xb1\x1f\xe4\x02\x00\xbc\x27\xe4\x1c\x43\xa4\xce\x80\xc9\x2e\xb6\xd5\xc8\xb1\x81\x82\xd5\x25\x0a\xdc\x62\x8a\x9f\xb2\x0c\xf7\x09\xa5\x56\x34\xe0\xff\x97\xbe\xbf\xa8\x95\x68\x15\x75\xb6\x70\x00\xf4\x0a\xde\x25\x79\x4b\x8a\xd9\x94\x21\xce\x81\x32\x96\xba\x8a\x01\x78\x17\x00\xf0\x5a\xc8\x5f\xf4\x63\xda\x62\xd2\x74\xf9\xa0\x5a\x4e\x12\xf1\x3e\xa9\xaa\x48\x5f\xc9\xeb\x8b\x07\xa0\x34\xa4\x59\x7e\x03\x7a\x9e\x86\x96\xbd\x80\xb9\x51\xb3\xa5\x7f\xc8\xdb\x83\x86\x24\x3b\xc9\xe3\x9b\x96\x88\x4e\x52\x10\x4b\xbd\x45\xfe\x94\x3f\x00\xc0\x9b\x4f\xcd\xd7\x95\x6b\x78\xf4\x98\x22\x7e\x89\x91\x9e\xcc\x1d\x56\xf6\xd0\x63\xe1\xb9\x8a\xbb\xf4\x40\x44\x55\xd1\x5f\xfa\xae\x54\x99\xcc\x9e\x9e\x18\xb9\x4f\xea\x4f\x17\x05\xb9\x89\x85\xf4\xfa\x8d\x83\xa2\x85\xf4\x6b\x4b\xdd\x84\x04\xc6\x6a\x00\xe0\xe6\xd2\x7e\x6a\x97\xa8\x07\xf8\xf6\x32\x4f\xd5\x19\x5e\x3d\x87\x5e\xfc\x82\xe7\x40\xfa\x4f\x31\x87\x4b\x2d\x30\x14\xf9\x70\xfe\x97\x52\x56\x98\xc2\x61\x1c\xa6\x48\x84\x9c\x15\x81\xc5\xa2\x9b\xec\x81\x8d\x39\xc2\x58\x36\x69\xe9\x16\x41\x21\x5b\x05\x6c\xe7\xe8\x18\xb0\x3a\xa4\xa4\xb5\x38\x5d\x1a\xae\xbc\xa9\x58\xcf\x2a\x57\xfc\x29\xba\x0d\x7a\xc8\x5d\x64\xd9\xf9\xb6\xb2\x83\x85\x40\xb2\x8f\x94\x22\x69\x3b\xb4\x57\xdc\x20\x46\x05\x94\x0b\xbf\x8b\xb6\x78\x9c\x11\x20\x85\xc1\x4b\xa7\xf0\xd1\x02\x34\x20\x67\x2b\x59\x52\x55\x68\xc9\x1e\xd3\x88\x38\x5e\x19\x61\x54\x33\x46\x14\x88\xd2\x54\x42\x41\x91\x5c\xb7\x28\x17\x53\xd8\xa1\xbe\x90\x38\x22\x79\xa6\x2a\x39\x38\x4d\xbc\xa8\x18\xb1\x4b\x23\x4c\x94\xa7\x78\x58\xf1\xcf\xca\xfe\xb5\xd3\xf3\x6a\x25\xc5\xc0\x69\xd6\x79\xce\xc1\x62\xb6\xea\x65\x93\xa3\x50\xa6\x9c\x51\xef\x49\x07\x14\xab\x6b\x36\xe2\x4e\x14\x05\x54\x3a\x65\xbf\x2c\x4c\x2c\x9f\x97\x90\x20\xe1\x97\xcd\x08\x3f\x2f\xea\x28\x5d\xe4\xcf\x15\x7c\xd4\xc6\x6f\x70\xe0\x1f\x2c\x91\xd8\x59\xf1\x16\xcb\x1e\x02\x8f\x58\x2e\xdc\x2e\x45\x97\xea\x6c\x47\x9e\xe0\x64\xf1\x8b\xd6\xdd\xb4\x6d\x8a\x19\x8d\xbf\x70\xd3\x8b\x1c\xea\x8c\xd9\x3b\x0b\x37\x57\xef\x88\x3f\x21\x39\x6a\xb9\x1f\xbe\x47\x44\x33\xe9\xfd\xe7\x09\xda\x0d\x7a\xf7\x3e\xfe\x74\xed\xb6\x25\x97\xb9\xdd\x72\x2f\xe0\x0b\xf3\x34\x6f\xa7\x62\x96\xaa\xba\x6f\x9a\xc0\xa1\x78\xb8\xab\x8f\xaa\x90\x3f\x6e\x0f\xc0\x22\x64\x6f\x9a\x1b\xb2\xda\xa4\xdf\x1a\x66\xc6\x87\x49\xe6\xd5\xe4\x1f\x78\x2c\xda\x54\xf1\xd9\xaf\x5f\x10\x67\xb6\x76\x27\xf3\x74\xfa\xc0\x25\x7d\xdc\xb5\x0a\x9f\x49\xab\x99\x41\x3c\x99\x70\xa8\x36\x36\x7f\x01\x23\xb7\x2a\xb7\x20\x9b\xc8\xb7\xb0\x11\xdd\xf9\xd7\x4c\x3a\xd4\xbc\x54\x82\xa1\x05\x2d\x3d\x22\xd1\x0d\x63\x1d\x43\xf9\xea\xeb\xb8\x2b\x3e\x0c\xd5\x1c\x02\x7b\xad\x95\xe2\x36\xb8\x68\xee\x98\xc2\x42\x0a\x05\x00\xe1\x69\xf2\x35\x61\x54\xcd\x28\xe2\x2b\x63\x4e\xe5\x43\xd4\x3c\xe2\xb6\xf2\xbf\xe8\xf5\xf9\x1c\xd3\x1a\x4c\x58\xaa\xbb\x61\x1f\x56\x74\xe4\x80\x2e\x15\xf7\x2c\x34\x42\x4d\x27\x44\xfb\x24\x28\xcf\x13\x47\x5c\x3e\x28\x8c\xa4\xb9\x73\x1f\x2b\xd2\xa0\xe9\x00\x20\x34\x53\xa6\x08\x1e\xd5\x6c\xc7\x00\xf4\x9a\xca\x68\xcc\x0b\xc2\x9d\x72\x08\x7b\x26\xdf\xb5\xac\x05\xd7\x9c\x72\xbf\xf4\x01\xbe\xeb\xc8\x34\xed\x6f\xc2\xed\xd0\x79\x6a\x47\x70\xae\x8f\xa7\x92\x48\xf2\x75\x79\xa4\x38\x02\x1d\x98\xfb\x59\x31\x0b\xb6\x03\x00\x61\x36\x25\x9f\xff\xb6\xda\x0d\x8c\xa0\xf5\x57\xa4\x83\x97\xf1\x1f\xcd\x66\x52\x40\x5e\xaa\xf1\x1a\x69\x20\xc5\xbd\x74\x0a\x14\x1d\x95\xab\x5d\x07\xdb\x86\xc8\x4a\xa2\xe1\x3b\xde\x77\x8a\xfb\xc9\x62\x97\x41\xb9\x85\xb2\x65\xde\x32\xf9\x36\xca\x3d\x00\x10\x9c\xa2\xd6\xf2\x3e\x54\xed\xa1\x5e\xa1\x9e\xb7\xc0\xd4\xaf\xf8\xc9\xa6\x1e\x9a\x55\x2e\xcf\xf0\x99\x36\x3f\xb9\x40\xef\x4a\xf3\x89\x1c\xd0\xc4\xd3\xe8\x7b\x26\x54\x45\xb4\x3b\xde\x44\xc5\x6f\xba\x8b\x8b\xb6\xe8\x1e\x9d\x3d\xcf\xaf\x68\x17\x7d\x02\x00\xf8\x13\xf4\x45\xdc\xb7\x95\x09\x9c\xaf\x94\x13\xe5\x26\x8e\x12\x37\xbd\xec\x05\xc7\x39\xa7\xcc\xb0\x86\xdd\x9b\x54\xa6\x4b\x67\x67\x46\x4e\x55\xab\xd9\x5e\x7b\x92\x95\x57\xd8\x4b\xbc\x6d\x14\xfe\xac\xbf\x2e\x79\x45\xf3\xd8\x8b\xe6\x1d\x93\xed\x62\xbd\x05\x00\xbe\x1b\x03\xe4\xe0\x2a\xf6\x17\x4d\x27\xc7\x98\xcb\x0a\x7f\x61\xca\x8d\x1f\xa5\x8f\xb2\x8f\x96\x6e\x94\x0c\x27\x42\xda\x7c\x71\xcb\x61\xa0\xa4\x52\x74\x7c\x37\xb7\xf8\x89\xf0\xe5\xb6\x5c\xf9\x7e\xa1\xb3\xcb\x02\xd9\x6c\xc1\xd5\x79\x6c\xe9\x7f\xbc\xe7\x00\xc0\xb3\x65\x1d\x60\x9d\xb2\x54\xe8\x27\xa0\x53\xa6\x1f\xba\x35\x68\x6f\xe3\x3e\x4d\x64\xd6\x14\x3d\xb7\x04\x9f\xb0\x5b\xd3\xa7\xac\x38\xf8\x4a\xf5\x43\xf1\x29\xb8\xa4\xd8\x5b\x9e\xb4\xb5\xae\xc8\x28\xfb\xbd\xa6\xb8\xf0\x90\x6c\xde\xbc\x28\xc9\x2f\x91\x2b\x00\x70\xb7\xb3\x87\x99\x3b\x2d\x31\x35\xd6\xa4\x30\x93\xb9\xb2\x08\x39\x64\x78\x65\x59\x94\x61\xd6\x3b\x98\xe4\xf1\x93\x35\x11\xc6\x65\x11\x27\x55\x62\xfd\x60\x90\x46\x71\x41\x5b\xe4\x75\xa1\x68\xb5\xba\x79\xf5\x6d\xe9\x29\xe5\x8e\x79\x93\x25\x3e\x92\x1b\x00\xc0\xe1\x72\x5e\x33\x44\x16\xfb\xc6\x3b\xa0\xda\x84\xad\x77\x41\x2e\x34\x0c\xd5\x64\x66\x4c\xd3\xbd\xab\x2c\x8f\xc3\x68\xec\xca\x5f\x47\xec\x56\x45\x99\x0e\x05\xb9\x2b\xe4\x86\x6f\x5e\x28\xd9\x63\xfd\x9a\xd5\x6c\x29\xb6\x24\x62\xee\x75\xf1\xa8\xf4\x0d\x00\x70\x1c\xb9\x09\xf4\x8f\xe5\x0f\xda\x6d\xc1\xe9\x26\xdf\x16\x4f\x04\xcf\x20\x6c\x0c\x3a\xc6\xd6\xb5\xd4\x45\xc5\x4d\x52\x5f\xad\xc6\x84\x3f\x55\x59\x55\xb4\x06\x3e\x54\xf8\x9b\xff\xf3\x72\x97\x51\x0d\xb7\x57\x1f\x95\xfc\x52\x7f\x9a\x7b\x5e\xec\x52\x78\x06\x00\xd8\x5a\x6e\x0d\xe1\x5d\xf7\xcc\x82\x20\x84\xb0\x7d\x33\x22\x35\x83\xd3\x8c\x43\xd2\xe3\x3f\xd6\x8f\xa1\x86\x0f\x8d\xd7\x2c\xc7\xac\x0e\xf1\xae\x38\x86\x6d\xd8\xa1\x31\xf5\xe2\x0f\x6d\x58\x67\x88\x27\x4e\x73\x70\xd1\x3d\x07\x55\x36\x64\x4d\x11\x64\x01\x00\xc9\x6e\xca\x29\x42\x57\x17\x16\x79\x0d\x11\xdb\xd6\x80\x1a\xcd\x48\x6f\xfa\x83\xee\x8d\xbf\x50\x9f\x84\x39\x7e\xa8\xb3\xba\x1b\xfb\xbf\x90\xe5\x15\xd3\xf1\x01\x3b\x38\xa6\x34\x42\xe3\x86\x95\x86\x59\xe0\x2a\x07\x77\x9d\x8e\x84\xb7\x31\x6b\x42\x60\x6f\x00\x90\x2c\xa1\x5c\x23\xe0\x3a\x1f\x61\x44\x88\xe5\x6d\xeb\xb1\x71\x19\x1b\x9a\x38\x38\xfb\x78\x63\xdd\x3b\xdc\xfb\x43\xe2\xea\x03\xf8\xd7\x7b\x7e\x58\xca\x88\x33\x77\xe4\x96\xfd\x05\x83\x37\xcc\x2b\x6d\x21\x51\x1d\xbc\x74\xbb\x20\x83\xcd\xa0\xfa\x05\x79\x35\x00\x88\xaf\x52\x57\xe2\xff\xed\xb8\x04\x1e\x2e\xd0\xb5\x6e\x00\x9b\x8f\x35\x36\x1a\x48\x36\xf1\xee\x75\xb3\x48\xc2\x43\xeb\xab\x30\x90\xfb\x9e\xca\xf2\x73\xd0\x87\x1d\xae\x65\x6e\xf0\x45\xf7\x0f\xfa\x27\x64\x8b\x43\x80\x36\x8f\x42\x9a\x39\xa5\xe4\x2b\x95\x01\x00\x62\x07\xda\x06\xbc\x7f\xfb\xbf\xd4\x88\xfc\xdf\x2d\xbb\xa8\x09\xc7\x96\x37\xd4\x52\x73\xe3\x6a\x6a\x57\x52\x05\x07\x7b\x2b\xa5\xd4\x73\x7b\x82\xcd\xaf\x68\x2e\xdb\xef\x1b\xc3\x69\x06\xf7\x33\x7a\x2b\xba\x93\xc3\x3e\x0d\x95\x7e\x69\xe6\x01\xd5\x23\xc6\x5c\x00\x10\x05\xd3\x41\x9c\xac\x6d\x82\x7d\x2d\x3f\xb2\x39\x8e\x8d\x4b\xa7\xd4\x9f\x66\xcf\x8f\x5b\x5a\x13\xc0\x1a\x3b\xe8\x5b\xd1\xc6\xaa\xdc\x3d\x6e\x9e\xcb\x52\x6f\xe7\x18\x70\xac\x6a\xf7\x12\x9d\x3b\xeb\xa1\xc3\x01\x75\x21\x1b\x31\x53\xab\x1c\x61\x51\x01\x40\x98\xc6\xe8\xc0\x1a\x5a\xdb\xa4\x94\xbc\xf8\x26\x2f\x49\x77\x1a\xbb\xae\x5d\x7c\x33\xd6\xb3\x7a\xa3\xe8\x6b\x04\xd2\x62\x12\x6d\xde\xbd\xc6\x34\x45\x28\xf4\xf9\x59\x9a\x23\xb4\x76\x0f\xd1\xce\x13\x9c\x71\xd8\x57\x12\x21\xf8\x3c\xf3\x6d\x71\x20\xd7\x04\x00\x02\x77\x56\x20\x26\xa2\xe5\x89\xc6\x3d\xd7\xb5\x31\xb3\xa4\x27\x95\x5a\xfb\x42\xb5\x23\x66\x67\x55\x4a\x71\x5f\x78\x61\xf9\x65\x45\x4c\x70\x4a\xd9\x56\xf9\x02\x9f\xa3\xfa\xd2\xa2\xe9\x6e\x37\x35\xbe\xb2\x5c\x87\xe5\xaa\x54\x69\xf7\xac\x39\x8a\x85\x02\x6f\x00\xe0\xfb\xb3\x51\xe8\xf0\x96\xad\xe5\x8f\x73\xdc\x1a\xae\x98\xbe\xa5\x80\xb5\xb1\xc6\x6f\x47\x77\x57\x5e\x2c\x7d\x7b\xa0\xb6\xdc\x47\x3f\x25\x48\x69\xac\xd0\xee\xf7\xae\xd7\x2f\x50\xbf\x71\x8b\x50\x97\xab\xae\xdb\x0f\x29\x1b\xe5\xea\x59\xb3\xe5\x4b\x45\x09\x00\xc0\xe3\x72\xd2\x50\x77\x9b\x7f\xd6\xf8\x67\xb7\x36\x48\xaa\x6c\x52\x80\xda\xc5\x96\xb1\xe8\xf1\x4a\xae\x59\x76\x60\x8f\xf9\x4d\x19\x14\xe4\x67\x8c\x33\x54\x79\x1f\xd3\x9d\xd3\x77\xb8\x2d\x55\x47\x68\x30\xf6\xa5\xca\xd0\x62\xcf\x59\x0b\x8a\x64\xe2\x10\x00\xe0\xd9\x73\x8e\xa3\x88\xcd\xbd\x8d\x33\xb2\xf7\x35\xec\xa9\x2b\x4d\x36\xd4\x8c\xd5\x6c\x89\xa6\x56\x7a\x56\x3e\xdc\xff\xc3\x2c\xb3\x74\x06\xfe\x35\xfc\x32\x6b\xbc\xb7\xe9\xb2\x8d\x4d\xae\x7f\x4a\xee\xea\x98\xf6\x25\xc5\x03\x4a\xca\xac\x6d\xb2\x87\x92\xa9\x00\xc0\x55\x72\xfe\x20\x42\x06\xa7\x23\x96\x65\xce\xed\x9d\x8c\x9c\x9f\xb8\xbf\x73\x2e\xca\x36\x6a\x65\xab\x33\xda\x73\x2f\xbb\x71\x03\x86\xbd\x2b\xaf\x76\x23\xf6\xb7\x57\x6a\x65\x30\x5e\xbe\x56\x6b\xee\x26\xee\xb4\xdb\x5e\x76\x18\x3c\x6b\x45\xd0\xdd\x82\x33\x01\x40\x8a\xa4\xae\x44\xac\x19\x20\xa2\xe4\x19\x5f\x7a\xd8\xe8\xd4\x44\x9f\x0e\x03\x66\x53\xd4\x3f\x2d\x3d\x58\xc7\xbd\xc4\x86\x51\xdc\xf6\x5d\xa9\x35\x97\xf0\x34\xaf\xc4\x8a\x17\x84\x47\x6b\x0d\xe6\x74\x70\x9f\x5d\xa8\xf1\x0f\x49\x6f\x65\xd0\x71\xe1\x5b\x00\x20\xdd\x46\x75\x28\xf8\xd5\xff\x1f\x76\x53\xc6\xe5\x9e\x69\xd8\xbb\x89\x0e\x1d\xae\x38\x56\xe4\xb7\x96\x50\xfc\xf6\xbd\xa9\x0d\x71\x84\xd5\xbb\x0e\xd6\x64\x10\x7d\xbc\xa2\x2a\x68\x60\xce\x5a\x83\x19\x20\x19\xec\x22\x8d\x5a\x68\xc4\x6a\x48\xb7\x82\x5c\x09\x00\x92\x37\xd4\x94\x02\x43\xdf\x3d\xd0\x90\x41\xe9\x9e\x0a\xbe\x4c\xb8\xd8\xbe\x95\xb4\x31\xb2\xa5\x39\x91\x54\xb5\x77\x4d\x3d\x04\x05\xed\x5a\x55\xcd\x85\xa7\x78\x6d\xb5\x94\xc1\x8f\xd6\x6a\x4c\x8e\xe4\x41\x3b\xb4\xa1\x89\x52\x61\x3d\x43\xeb\x48\x1d\x01\x00\x89\x1b\x2d\xb9\xc0\xad\xf7\x36\x35\x35\x63\x5e\xd7\x14\x6a\x4e\x42\x7e\xdb\x56\x6a\x4e\x64\x6c\x53\x26\x95\x1b\x76\xbf\x4e\x48\x3d\xeb\xff\xbc\x4a\x4d\x73\xf1\xb2\x29\x6f\xa6\x55\xac\x95\x94\x6d\xa4\xfb\xd9\x95\x94\x56\x30\xe6\x5a\xa7\x68\x00\x86\x3d\x00\x88\xf7\xd2\x8d\xf9\xbd\x3d\x8f\xd9\xf5\xc7\x0c\x9d\xf3\xd8\x7b\xe3\xff\xb4\x06\xb3\x9e\x1f\xfe\xda\x48\x62\x55\x84\x09\x6a\xcd\x2c\x91\xbf\xa1\xb2\x89\xc5\xde\x72\xc3\x7c\x92\x65\x59\x4b\x35\xfa\xb1\xfe\xda\xf5\xeb\x4b\xd8\xa3\xd6\x9d\x25\x37\x59\xd1\x00\x20\x4a\x60\x5c\xc9\x7b\xdd\xdd\x2c\xf9\x2f\x7d\xbc\xfd\x95\x64\x59\xfc\xce\x16\x7b\xb1\xdf\xe1\xe0\x86\xc3\x22\x54\xe8\xab\x1a\x58\x78\xc6\x7f\x49\x85\x50\xb8\x7d\x0b\xce\x64\x12\xdc\x5f\x7b\xd8\x60\x23\x78\x6a\x77\x47\xb7\x45\xd0\x38\x63\xa9\x2a\x90\xeb\x04\x00\xc2\xe5\xac\x5d\x79\xd3\xba\x6a\xd5\x2b\xd2\xbe\xb5\x7d\x51\x99\xe3\xf2\x9b\xbd\x94\xeb\x0e\xd1\xea\x73\x14\xe7\x42\xbd\xab\xe5\x72\xa5\x1f\xd5\x52\x59\xc4\xf0\xfc\x59\x36\x2c\xeb\x5c\x6b\x5b\xba\x58\x16\x62\xf7\xaf\x76\x89\xe4\xec\x8c\xa4\xe2\xdf\x7c\x34\x00\x08\xd6\xb0\x0f\xe4\x2e\xed\xfc\x60\x3e\x9c\xe6\xd2\x16\x5c\x96\x12\x6b\x69\x12\x1a\x72\x0f\x9e\xa8\xeb\xd3\xcb\x43\x78\x55\x0f\xb4\x2f\x7d\x9f\x95\x4f\x68\xe8\x9e\x70\x99\x83\x7a\x97\x4b\xbb\x3e\x53\x79\xca\xae\x4d\xb3\xbf\x68\xcd\x0c\x9a\xe2\xbd\x30\x1e\x00\xf8\x19\x9c\xb5\x39\x55\x9d\xcd\x55\x09\xa9\x03\xad\xdf\x2b\xdc\x63\xc3\x9a\x7c\xca\x27\x1f\xcc\xaf\x4b\x37\x4d\x0a\xf1\xa9\x62\x19\xbd\x7d\xcd\xe5\x96\xd2\x16\xcf\x50\xe3\x59\x1d\xcd\x45\xa9\x9f\xa6\x9e\x66\xd7\xac\xbe\x26\x97\xce\xd0\x2b\x92\x45\x1e\x00\xc0\xfb\xc5\xa1\xe6\xf8\x77\xe6\xd4\xdd\x48\x3d\xd6\x5a\x51\x43\x8e\x99\x68\xbc\x57\xe5\x79\x70\x7d\x1d\x50\xb1\x2a\x64\x52\xd5\x92\xf2\x10\x5f\xb0\xdc\xdb\x34\xc7\xd3\xdd\x98\x60\x98\xed\x52\xa8\xe3\x6a\x2e\xda\x5d\x52\x6f\x56\xf4\xce\xb8\x2a\x6f\x10\xdd\x03\x00\x1e\x96\xd3\x9e\xb5\x74\x64\x1a\x72\x49\xd2\xd3\xc1\x4f\xc8\x07\xd1\x5e\xbd\xff\x43\xd5\x1e\x08\xef\xbc\x8f\xae\x0f\x9e\xd5\x3a\x88\x79\xb8\x3d\xb2\x51\x8d\xf3\xf3\xe8\xab\x15\xe0\x07\x9c\xa0\xca\x2f\xc4\xa3\x0b\x48\x96\x5b\xe0\xa9\xa9\x9f\x4a\x8d\xf0\x35\x00\x28\xc4\x51\xbd\xb3\xfe\x39\x01\xa3\xa9\x49\x0f\x07\x41\x8c\x7d\xb4\x57\x2f\x0d\x33\x74\xe0\x60\x27\x12\x2b\x09\x9e\xdb\x1a\x89\xe3\x6f\x8f\x6d\xdc\x84\xef\xf4\x38\x55\xeb\x4c\x9c\xec\x24\xa8\x54\x82\x29\x0b\x8a\x2c\x58\x92\x7c\x9a\x63\xe9\x6e\xb2\x27\x00\x14\x7a\x52\x3d\x32\x7f\x1e\xff\x84\x9b\x95\x74\x75\xe0\x37\x8e\x1b\xbd\xa1\x77\x36\x7e\xf2\x81\x7d\x1d\xbf\xf0\xea\xe0\xd9\x2d\x8f\x09\x59\xdb\x63\x1b\x8e\x13\xb3\x3c\xce\xd5\x74\x82\x1c\x27\x55\xe5\x1a\x52\xdb\x82\xfa\xf2\xdf\x50\xdf\xb4\xdd\xfa\xeb\xe4\x77\x00\x20\x7d\x4c\x45\x65\x8e\x0d\x3f\x25\x6d\x4c\xaa\xef\xff\x48\x8a\x89\xb6\xed\xb1\x22\x31\x0f\x6c\xe8\x98\x4e\x7a\x1a\xf4\xa5\xf9\x3b\x84\xda\xbe\xaf\xfe\x26\xec\xe8\x71\xbe\xfa\x0c\xfc\xc9\xa9\xa6\x62\x0b\x79\x7c\xc1\x63\xf3\x07\x4a\xd7\x34\xa5\xee\x34\xf5\x29\x00\x48\x17\xd2\xf2\x33\xa5\x43\x23\xd4\xd3\x49\xd8\xbe\x3b\xd4\xae\x23\xb7\xbb\xbe\x53\xcb\x0f\x00\x6d\x7f\xa9\xad\x41\x57\x9b\xbe\x53\xdf\x6c\xdf\x5c\x77\x83\x16\xe0\x31\x54\x75\x9c\xd6\xe7\xd4\x65\x59\x47\xcf\x58\xb8\xc8\x34\xc6\x08\x99\xf6\x52\x5b\xc2\x98\x07\x00\x12\x17\xba\x25\xf3\xe8\x60\x37\xfb\x45\x92\x57\xef\x4d\x36\xea\x88\xae\xf3\x13\xeb\xef\xfe\x33\x6d\x00\xab\x3b\xa8\xa2\x71\x82\x65\xd8\x6e\x5b\x7b\x8b\xa5\xf2\xa8\xaf\xec\x67\xf5\x3a\x0d\x96\xaf\x60\x7b\x2d\x0c\x2c\xab\x64\xf7\x4c\xf7\xd2\x24\xb3\x1c\x00\x40\xec\xca\x18\xcd\xa8\x1c\xd0\x4b\x2e\x26\x96\xf4\x54\x88\x9f\x1d\xb1\xed\x68\x11\x4d\xec\xdf\xd3\x32\x28\xda\x16\xb4\xb1\xa1\x5f\x58\xe6\xd3\x5a\xa3\x15\xae\xf2\x40\x55\x50\x04\x4f\x9d\x06\x4c\x27\x85\x1e\x0b\x35\x46\x6b\xc1\xf2\xe9\xad\x25\x9d\x9c\x0e\x00\x10\x3e\x63\x6d\xcd\x58\xdf\x1f\x57\xa2\x4a\x9c\xd6\xcd\x51\x4d\x89\xc2\xb6\xd7\x14\xd3\xf6\xb5\x35\x77\x2b\xb6\x06\xd6\xd6\x77\xc9\x9d\x7d\x02\xaa\x35\x45\xde\x1e\xcb\x2d\x74\x59\x8d\x53\x59\x59\x6b\xe1\x87\x85\xa3\xa5\xa7\xc4\xad\x56\x33\x55\x09\xbc\xb3\x00\x20\x78\xc6\xf6\x3a\x76\xb8\x4f\x6a\x3a\x9a\x90\xd2\xd5\x69\xdc\x1f\xf9\xb2\xed\x5e\xe9\xa1\x7d\xee\x4d\x2f\x74\x86\x40\xd7\xba\x27\xda\xf5\xde\x37\xaa\xae\x68\x66\x6d\x38\x53\x7e\xb2\x84\xed\x04\x1a\x1f\x17\x37\x2e\xbc\xad\x3f\x53\x58\x6b\x15\xa6\x0c\x15\x30\x01\x40\x60\xcf\xfe\x5f\xfa\xc3\xbe\x90\xca\x39\x09\xd6\x5d\x49\xe5\x37\x22\xab\xdb\x40\x53\xcb\xde\x8f\x4d\x54\xe3\xc3\x80\xaf\x75\x04\x43\x8c\x77\x6d\x55\xae\x7e\x70\x43\x6d\x79\xaa\xf6\x80\x13\xc2\x88\x55\x99\x17\xbe\xd0\xef\x92\xbd\xb6\x42\x15\x77\x0a\xfd\x01\x80\xdf\xca\xf1\x4e\xc7\xf4\xfe\xa8\xdd\x11\x3f\xd8\xf9\xb7\xea\x69\x24\xbe\xcd\xa6\xa2\x6a\xef\x99\x26\x9b\xf2\x0b\x01\xd7\x6a\x7f\x98\x7e\x78\x2b\x2a\xff\x67\x2c\xdb\x60\x36\xbf\xd0\xd3\x9d\x98\x86\xc7\xea\x4d\x8b\x1c\x75\xa2\xa2\x09\xab\xc6\x62\x2b\xe1\x3d\x00\xe0\x7b\x70\x0a\xc6\x23\xd1\xca\x1c\xfb\x33\x08\x4c\x4e\xee\xed\xde\x1d\xd8\xb0\x7c\x49\xed\x55\xdc\x4a\x84\xb7\x36\x0b\x3f\x1d\xf9\x4d\x30\x05\xff\x13\x7d\x9e\x60\x45\x9c\x86\xad\x4b\xdd\x06\xae\xc0\x5b\xc2\x5e\x93\xfc\x88\xac\x0d\x4e\xd0\x3a\xd2\x7c\x6b\x0a\x79\x3a\xe9\xf4\x0d\x0e\x0a\x2e\xc8\x1a\x6d\x47\xe7\x21\x86\x7b\xb8\x98\x34\xd4\x8a\x5a\x27\x6c\x34\x1a\xab\xb9\x88\xdb\x87\x79\xcc\xcf\xc3\xa7\xe1\xa2\xf1\x54\x02\x1b\x7f\x3b\xa5\x87\xd8\x4a\xc4\x84\x41\xe0\x53\xf0\x83\xfb\x28\xe9\x3e\xe4\x68\x1d\x0e\xdf\x82\x24\xd7\xfb\x91\xe9\xe8\xe7\xa7\x9f\xa2\x20\xcc\x68\xf7\x28\x9a\x86\xbd\x59\x93\x8a\x91\xe1\xae\x6b\x66\x63\xab\xf1\xff\xf2\xce\xe0\xce\x12\xad\x70\x9f\xf0\x13\xe0\xe6\x94\x1d\x44\x5f\x52\x6e\xd8\x2c\x90\x02\x09\xdc\xf1\x24\x0a\x9c\x6c\xed\x0a\x2b\x61\xea\xd5\xb2\x82\x1a\xe8\xf5\xc9\x8f\x88\xcb\xb0\x67\xe7\x0b\x94\x2d\x9c\x57\xd5\x8b\xde\x08\x0f\x95\x94\x60\xd2\xc8\x6b\xb9\x74\x6c\x19\xb9\x14\xfb\x04\xf7\x91\xb2\x34\x39\x88\x10\x41\x91\x87\x06\x10\xcd\x94\xef\xee\x93\xc1\x6a\xaa\xab\xb5\x03\xf4\x9a\x52\x7a\xf9\x55\xde\x57\xb6\xdf\x48\x6c\x81\x1f\xeb\x51\x87\x1b\x42\xca\xc2\x56\x2e\x47\x5e\x65\x2d\x54\x2d\x45\xaf\x62\x9e\xe5\xb8\x61\xc8\x4c\x01\xe6\x04\xf6\x25\x73\x7f\xd2\x1a\x7c\x3a\x73\x72\x08\x8b\x70\x82\xd1\xe3\xa6\x25\x9e\x62\x84\x58\x7b\x40\xae\xb4\xd1\x8b\xd7\x72\x33\xa5\x31\xc7\xfd\xf2\x2e\x4a\x5c\xdb\x72\x0b\xfc\xc4\x53\x2c\x20\x42\x27\x7c\x5d\x6c\x40\xfe\x15\x3c\x63\x5d\x47\x13\xf8\xf7\xd1\xa5\x98\xaf\xbc\xdb\x09\x9f\x71\x85\xdc\xa1\x3d\xa7\xf1\xff\xe3\x9c\x70\xdb\x4e\xf8\x8f\x5d\x6d\x7d\x88\x84\x64\xdc\x3e\xff\x37\xe7\x40\xe9\xe3\xc1\xde\xdc\x32\xdd\xb9\xe6\xb3\x79\x5f\x35\xb5\xa6\x3f\x05\x09\x25\x18\xf9\x41\xc4\x15\xa5\x0f\x63\x14\x75\x58\xfe\x17\x39\x8e\xfe\x57\xd6\x11\x7f\x16\x4b\x97\x26\xee\x6e\xc6\x7d\x10\x2f\x71\xad\xc1\xdf\x15\xae\xb5\xa6\x81\x3c\x76\xd7\xd9\xd0\xec\x98\xa6\x49\x7d\x6f\x72\x46\xeb\x38\x8d\x7b\xf3\x3c\xab\xf7\x1b\xcb\xf2\x35\x96\xb7\x32\x07\x84\xad\x89\x46\x1b\x45\xaa\x4b\xff\x20\x16\xa2\xb7\x68\xd3\xe2\x08\x98\x0b\xaa\xee\xe0\x22\x5c\xb0\x62\xab\xeb\x54\xbc\xa3\x4c\x63\x2d\x23\x7e\xe2\x05\x8e\xae\xc9\xfa\x3c\x84\xef\x99\xc8\x89\xea\xdb\x5d\xbf\x31\xb7\xb9\xf3\x77\x69\x49\xfe\xfc\x56\x89\x74\x43\x01\xb7\xe1\x0f\xe5\x27\x72\x6e\xcd\xa1\x7c\x3c\xaa\xc9\x42\x89\x75\xc7\xec\x36\x96\x04\x35\x63\x3b\x75\xd6\xeb\xa9\x38\xb1\x2a\xcb\x5a\x47\xa4\x0b\x62\x4e\x1f\xc9\x3a\x3f\x9a\xd6\xe3\x99\xb3\xf6\xc4\xa9\xba\xf8\x5c\xda\xc0\x5f\xfd\xe9\xbc\x7b\x3d\xcb\x24\xd9\x05\xa1\xed\xb3\x29\xbb\x10\x17\x1b\x6f\xe7\x5d\x42\xe5\xd4\x90\x62\x1a\xd1\xdf\x2d\x53\x83\x52\xb0\xa9\xc6\xc9\xeb\x13\x70\x1b\xd4\x1a\xeb\x41\xe2\x7a\xe1\xbc\x53\x23\x59\x96\x8b\xd1\xdd\xfa\xec\x1f\x67\x53\x6b\x8f\xe7\x86\x9c\xf4\xd1\x6f\xcc\x2b\x19\xfc\x2a\xbe\x9d\xff\xb3\x87\x4c\xee\x47\x80\x6d\xd7\xf2\x12\x50\x36\x0d\xdf\x63\x52\xd1\xb2\xaa\x5f\x41\xfe\x98\xb7\xe6\x88\xf5\x59\xd8\x3a\xed\xd2\x19\x73\x09\x06\x61\xde\x95\x38\x5c\x62\x76\xeb\xc8\x5b\xdc\xeb\x5c\x7a\xe7\x3f\x78\x5e\xfe\xf6\xca\x6f\x84\x4d\x05\xef\x55\x0f\x09\x4f\x90\xdd\x9c\xd7\x44\x2d\x5a\x8b\xcd\x02\x53\xb0\xe2\x64\x2b\xd2\x66\x7c\x61\xe8\x66\xc8\x9a\x08\xbb\x7d\x80\xba\x48\x6b\xad\xd7\x90\xf7\x43\xce\x97\x05\xd8\xb4\xfc\xd7\x23\x2b\x71\x93\x10\xfb\x3a\x8e\xe2\xda\x90\x5d\x95\x61\x78\x3c\x7a\xb9\x6a\x07\x21\x18\xc3\xe3\x1c\x25\x5a\xe3\x96\x60\xee\x13\x1f\xe2\x2b\x92\xa8\xe0\x18\xf1\x50\x48\x0f\xa9\x13\x7c\xe8\x26\x84\x30\xd0\x5a\xab\x3f\xe4\x55\xd0\xfd\x4b\x3d\x98\x68\xf4\x81\x13\x87\xb1\xf6\x18\xbf\x76\x25\xf6\x19\x36\xb1\x42\x8c\xeb\xc2\xe5\x29\xc5\x78\x05\x9e\xc1\xee\x22\x20\x08\x9d\x98\xa3\xc4\x44\xe2\xe7\xc4\x5f\x60\x1c\x69\x67\xc8\x0e\x52\x34\x54\xe0\xb6\x03\x5a\x0c\x27\x58\x5d\x85\x9f\xc3\xfd\x17\xce\xa2\xc4\xd0\xa6\x61\x3a\xba\x00\xe2\xb6\xde\xc4\x64\x40\xe3\xe5\xbf\xb0\xe1\xb0\x67\xb1\x2b\x2e\x08\xae\x64\x41\xf8\x40\xb2\x07\x3a\x94\x10\x45\x1e\x4e\x9c\x45\xc4\x52\x0e\xed\x21\x80\x3c\xca\x55\xd7\x13\xa4\x7d\x54\x67\xab\x0e\x78\x3f\xe5\xcc\xf9\x57\xc8\x69\xac\xc3\x83\xd7\x90\xdf\x59\xb3\x5a\xe6\xa0\x7e\x31\x5b\xcd\x47\x31\x53\x98\x59\xf2\x46\xec\x12\xa6\x3b\xd3\x0d\xb7\x81\x69\x8d\xda\x84\x3f\xc2\x78\x9a\xb0\x98\x20\x60\xf4\xec\x7e\x42\xb4\x30\x0a\x5d\x59\x60\x36\x23\xc8\xea\x33\xc4\xa6\x7d\x3a\x7b\xbb\x80\x22\x71\xee\x3f\x81\x50\x8a\x57\x37\x05\x21\x87\x45\xff\x94\xd5\xa1\x1e\x09\x17\x14\xad\xc3\xd8\x0a\x1c\xe9\xb7\xb0\x5b\xf8\xc1\xc8\x05\xb8\x02\x5e\x6a\xfc\x54\x7c\x27\x37\x77\xb7\x17\xe1\x32\x47\xe8\xba\x89\x28\x62\x1b\xac\x5d\x48\xc7\x19\x7f\x46\x17\xe6\x47\xeb\x19\xbd\xde\x05\xe9\x5a\x5a\x7d\x2d\x02\xab\xc6\x1a\xf6\x20\x75\xaa\x54\xe9\x04\xea\x4a\x71\x38\xf5\x01\x66\x96\xdc\xa7\x20\x1e\x1b\x2b\x5b\x14\x7b\x0d\x57\x2d\x79\x19\xec\x81\xbf\x22\x1a\x5b\xdf\x43\x20\x0a\x17\x58\x63\xc1\xb3\xec\x0b\x27\x53\xf2\x92\x1a\x5c\xbb\x48\xf9\x9c\x9a\x47\xb5\x9e\x05\xd5\x95\x63\xba\x6f\x88\x0b\xe5\x3a\xf1\x33\x14\x50\x96\x40\xfe\x1f\x3a\xac\x74\x6a\x5e\x25\xc6\xac\x29\x8e\xa1\x61\x3f\xa9\x96\x07\xad\xc0\x3b\xca\x2f\xad\x5f\x8f\x6f\x97\xa5\x58\x2b\xc0\x75\xbc\xa0\x13\x7b\xf2\x80\x81\x9c\x0e\x56\xfe\xdc\x9e\xcc\xea\x25\x05\x4e\x1d\x7b\x34\xff\x43\xec\x69\xb1\x16\x7e\x43\x12\xeb\x6b\xe1\x35\xa8\xe1\xea\xf5\xb9\xb3\x30\x4b\xcb\xf9\x47\x77\x62\x73\x0c\xb7\x02\xfd\x70\x0a\x2d\x7d\x5d\x2d\x7e\xb9\xf2\x97\x75\x25\xb1\x4d\x10\x7c\x3c\x37\xf7\xe2\x29\xaf\xf6\x96\xbc\x27\xc3\xe7\xaa\x02\xf2\x3f\xf4\x6f\xd1\x38\x20\x66\x77\x31\x84\x9b\x90\x3e\xad\x65\x10\x02\x45\x6e\x30\xe6\x64\xa3\xaf\x55\x63\xa2\x07\xb0\xcb\xcb\xb7\x06\x7c\xc2\xf9\x1a\xf2\xd6\xf1\x70\x43\xea\xe5\xd6\xe7\x89\x71\x82\x9f\xc3\xe7\x72\x4d\x63\xf3\xda\xe7\xe5\x35\x8e\x46\x56\x9a\xf3\xbb\x4f\x24\xab\xd9\x05\x67\x06\xf6\x09\xca\x10\xaf\xba\xa7\x90\xfe\x43\x39\xb7\x4a\xb2\xbf\xa1\x31\xf5\xaf\xa2\x11\x98\xf6\x2a\xe7\x80\xf3\xd8\xf3\x26\xcb\x3a\x39\xce\x5b\xa3\x9e\xe1\x48\x18\x15\x1e\x19\xdb\x4c\x0c\xcc\x8e\x1f\x5a\x46\x54\xe5\xae\x6e\x31\x13\x3f\xe5\xfd\x6b\x7e\x0d\xe6\x17\x34\x2b\xbc\xc0\xf7\x48\x0e\xb3\x94\x54\x80\xce\x42\x31\x49\x3f\xb1\xc9\x09\x22\x88\x8f\xcf\xde\xe3\x0e\x2f\x23\xc6\xb9\xe6\xc0\x0a\xd2\x3c\x2b\x2c\xf9\x2b\x74\xe4\x7c\x22\x21\x32\x1f\x1c\x8c\x26\xf4\x17\xdc\x69\xfe\x8f\xe8\x89\x8c\x30\xfb\x12\xbb\x51\xa7\xe4\x22\x30\x02\xe3\xcb\x9c\x0e\xde\xc7\x5e\x46\x4e\x90\x28\xf8\x82\xf8\x09\x68\x0d\x71\xd9\x6e\x13\x74\x05\x6c\x77\x9d\x02\x1f\x81\x6c\xad\x82\xc9\x57\xa0\x89\x73\x54\x3c\x02\xd5\x37\xc0\xc1\xff\x87\xee\x6c\x5e\x43\x00\x31\x8f\x4d\x4c\x22\x80\xfd\x5b\x74\x9f\x68\xc1\xaf\x64\xe4\x80\x21\x84\x24\x24\x0e\xfc\x45\xac\x8a\x17\x92\x7a\x48\xc0\x6e\x7f\x08\x07\x05\xad\x3f\x0d\x03\xf0\x5e\xab\x0d\x64\x15\xfc\xe4\x4c\x0f\x56\x49\x22\xf5\x5d\xc1\x6d\x21\x8d\x37\x0a\x70\xaf\x21\x3f\xe3\x4f\xbc\x0e\x2a\x95\x51\x08\x09\xf0\x32\xfa\x06\xe2\x4a\xb8\x0d\x91\x4d\xfc\x42\x8e\x8e\x2b\x07\xaf\x52\x80\x60\x98\xd4\x44\xd1\xad\xdf\x0b\x05\x52\xa7\x5a\x4d\x27\xcf\xa6\xdc\x38\xdd\x82\xf1\x61\x66\xf6\xce\xc5\xdc\x67\x7a\xd5\x77\x61\x35\x8c\xff\x0c\x71\xb8\x34\x46\x47\xa1\x2d\xde\x97\x51\x48\x7d\x4d\x58\xc2\x20\x17\x1c\x25\x4e\x61\x14\xc4\xf6\x13\x3f\x31\x92\x83\x3e\x82\x17\x19\x11\xeb\x97\x91\x12\x18\xab\xad\x62\x60\x7f\xda\xb7\x93\x0d\xa8\x21\xd1\xe7\x6e\x1b\xb4\x50\xb4\xac\xf6\x1e\x06\x23\x5c\xa8\x6f\xc6\x1e\x12\x04\x48\x4a\x70\xfe\x7c\x14\xa5\x0c\xbf\x9e\x57\x99\x1f\x40\x58\xcd\xbd\x13\x73\x9a\xe8\xc4\x9d\x1a\x74\x98\x38\xc1\xf1\x5b\x77\x15\xa4\xb1\x29\x56\xc5\x10\xcc\xf8\x79\xfc\x0b\x52\xa8\x73\xe8\x20\xa3\x22\x35\xee\xd5\x11\xe8\x55\x25\x5e\xda\x18\x8c\xb5\xf2\x90\x88\x88\x9d\xa4\x48\x83\xdb\x70\x40\x51\x5e\xae\x12\x6f\x5b\x98\x73\x94\x4f\x58\x2c\x49\x0b\x4c\x20\xfc\x12\xa1\xd6\x65\x13\xb3\x05\xef\xac\x3e\x90\xc8\xec\xee\xa1\x00\x84\xb4\x2e\xbc\xf5\x1c\x12\x5d\xed\x59\xf1\x00\x75\xb8\x22\x48\x3d\x1f\xbd\xd5\x1c\x2c\xc8\xc4\x6c\x30\x7a\x90\x2e\x61\xbd\x75\x7f\xb3\xff\xc3\x1d\x52\xf7\x45\xef\xc0\x27\x2b\xb1\x01\xb1\x84\x50\x79\xf2\xda\x37\x04\xa3\xcc\xde\x7a\x3d\x78\x91\x67\x3f\xb0\x11\xb1\xb5\x2f\xaa\xf9\x22\xe2\x6f\x17\xa5\xfc\x04\xf2\x7c\x1b\x4f\x65\x8b\xaa\x6f\x82\x79\x30\xba\xbc\x6e\x1f\x68\x83\x69\xac\xfc\x99\x75\x14\x7b\xc6\x2c\x8c\xfa\x8e\x1b\x37\xcc\xdd\x85\xc7\x0f\x68\xbe\xaf\xcd\x22\x4c\x57\xd2\xac\xfd\xc1\x83\x02\xdb\xfe\xd0\x82\x3f\x23\x40\xd3\x17\xc4\xd8\xe0\x29\xf3\xbf\x48\x75\x6f\xb2\xd2\x1b\x85\xee\x78\xc0\x6d\x47\x1f\x6b\xd9\x44\x3c\x8c\xc9\xad\x4f\xca\xec\xc0\x52\xab\x72\xa3\x20\x1c\xdf\x9c\xb1\xcb\x05\x9f\x5d\x7a\x6f\x6d\x20\xbe\xaa\x44\x6a\x7d\x8c\xf8\x45\x30\xd8\xa7\x29\x38\x77\xf6\x44\xd3\x5e\x84\xf2\x94\x8f\x39\x10\x99\x34\x0c\x15\x6b\x50\xee\x7d\x6a\xae\x23\x7a\x41\x27\x8b\x70\x01\x33\xb7\x25\x30\x33\x08\xeb\x50\x37\x1e\xe5\x8a\x5b\x59\x79\xd0\x7f\x02\xf7\xb5\xec\xd7\xda\x30\xbc\x83\x7a\xc2\xba\x87\x98\x2a\xb4\x3b\x4e\xa7\x68\xb3\xde\x75\x2c\xa1\x60\x73\x9a\xaa\xd9\x94\x7d\x79\x7c\x6d\x3e\x25\xaa\x60\x97\x28\x93\x92\x87\x5c\x0a\x17\x51\x28\xa8\xaf\xb9\xfe\x14\x0b\xe6\xd3\x51\x7b\x4a\x2b\xee\x6f\x40\x31\xe5\x32\xe1\x83\xcb\x69\x2a\x00\x76\x4e\x3b\x46\xfd\x1f\x84\x1c\x1e\x22\x97\xe4\x5d\x68\xcf\x22\x4b\x0b\x3c\xab\x6e\x91\xf1\x88\x61\xcd\x08\x59\x8b\x5a\x2d\x3c\x4e\x3e\x8f\xae\x80\xbe\x93\x3f\x63\x7d\x72\x06\x28\xee\xb8\x47\xd1\x6a\x4a\x1c\xc1\x10\x60\x43\x51\x80\xbe\x2e\x31\x94\xcb\xa4\x9a\x69\x9e\xd4\xdb\xf0\xe4\xa1\x8f\xb0\x16\x79\xb5\xad\x16\x6e\x42\x3d\xaa\x72\x84\x2d\x18\x47\x8d\x35\xfc\x0c\xeb\x2a\x5c\x40\x5e\x8f\x8b\x87\x12\xc8\xc7\xf0\xe6\x9c\x6d\xe4\x06\xc2\xef\xe8\x75\xe4\x77\x60\xce\xae\x6a\x4a\x00\xa9\xdf\x65\x11\x45\x00\x8d\x4f\x5b\x44\x6d\x84\x2f\x0c\xbc\x82\xa6\x10\x3b\x5b\x46\x21\x77\xf0\x70\x45\x08\x74\x00\x3c\x53\x82\x82\x74\xa4\x18\x7e\x2b\xf4\x99\xf4\x97\xb4\x0a\xde\x07\x35\x67\xbb\xc2\x8d\x30\xe2\xc8\x41\xf2\x5c\x72\x88\xff\x4f\x32\x8f\x32\x7d\x8d\x85\x7c\x9d\x22\x99\x36\x99\xea\x4a\xa9\xe8\x0f\x07\x49\x74\x56\x73\x04\x78\x8e\x4e\x2f\x6f\x22\x2d\xa3\x67\x2b\x7f\x90\xa8\xf4\x48\x5e\x1a\xe9\x1d\xfd\x20\xf1\x2b\x14\x4b\x8f\xcb\x5a\x07\x5d\xa5\x17\x44\xf1\x60\x1f\xba\xd4\x1f\x05\x77\xd0\x2d\x6b\xc8\xf0\x47\x7a\xed\xb4\x48\x4a\x2e\xad\xa1\x37\x9d\x08\x0a\x81\xc6\x23\xc4\x21\x81\x9f\xd9\x16\x5c\xc0\xa7\x17\x43\x20\x8f\x37\xc0\x9d\x41\x9a\xce\xb3\x22\x9c\x20\x31\xb9\x29\x99\xab\xa0\x19\x9c\xfe\xc8\x76\x08\xcb\x59\xe2\xf7\x3f\xe8\x09\x9b\xbc\xe6\x30\x3c\x8f\x3d\x63\x5a\x2d\xd9\xc0\x28\xef\xaa\xc7\x7f\x54\xbb\xd7\x4f\x21\xc4\xa8\xaa\x8d\x95\x84\x01\xe5\x6c\xf9\x0e\xe2\x4e\xc5\x1e\xd6\x1f\xe2\x68\x11\x0b\xf7\x06\x8c\x2a\x3c\x75\x4c\x02\xbe\x91\x02\x87\xb9\xa4\x4c\xf1\x01\xbf\x4d\xa4\x1b\xc2\xea\x35\x1b\x49\x8f\x04\xb4\xe9\xa9\x30\x96\xbd\xbb\x23\x10\xbf\xa6\xea\x55\x4d\x1a\x9e\x51\x61\x5f\x1a\x83\x7f\x68\xa6\xc8\xfe\x21\xa4\x1a\xeb\x18\x7f\x08\xef\xf4\x97\xb0\x4b\x89\x1c\xcd\xdb\xb4\x6f\xe0\x1a\xd5\xc4\xa1\xb5\x60\x47\xf1\x62\xdf\x8d\x24\xe7\x22\xf4\xea\x4a\xd2\xf2\x42\xd4\x74\x01\x34\xc6\xe5\xb6\xfe\xc4\x59\xba\xb6\x57\xa1\x70\x13\x6d\x67\x74\x3b\xf0\x47\x9b\x37\x49\x67\xe0\x6f\xd5\xe7\xd1\xed\x08\xc7\xaa\x45\xe8\x44\xc2\x4f\x8b\x2a\x15\x41\xd4\x94\x49\x22\x7e\x82\xeb\xf5\xfc\x9d\xc1\xa0\x5e\xfd\x69\xf5\x12\x90\x5e\x1c\x37\xbd\x0c\x0a\xe4\xc7\xb7\x2e\xc5\x81\x83\xe6\x4a\x0d\x6e\xac\x77\x4c\x1b\x87\x5f\xd9\x79\x56\xe2\x89\x2f\x6d\xd5\xd1\x22\x08\xce\x8d\xfb\x50\x95\x84\xb6\x9a\xfb\x29\x17\x89\xe1\x15\x31\x11\x38\xe2\x83\xb2\xeb\x3b\xde\x80\x7b\xf5\xc3\xce\xef\xc1\x15\xaa\xe0\xe9\xc3\xa4\xa7\x82\xa9\x2d\x48\x5c\xf8\x29\xb7\x8a\xd7\x38\xed\x71\x1b\x4d\x23\xee\x59\x7f\xab\x58\x8a\x8f\xee\xde\x48\xed\xc2\x5f\x6b\x63\xa3\xec\x09\x71\x8d\x4d\x29\x71\x84\x37\x35\x43\x11\xf3\x88\x04\xcb\xd0\x8e\x3e\xe2\x4d\x63\xb5\xf3\x07\xa2\xbc\xc4\x60\x65\x43\x8a\x12\x24\x75\x4c\xb0\xbd\xb3\x82\x6b\x65\xac\xda\x9c\xa5\x06\x88\xe5\x94\xfb\xbc\xc8\x89\xd9\x97\x5f\xcf\x7c\xc5\x4c\x46\x48\xb0\xcf\x18\x7f\x51\x84\x74\x2a\xa3\x0e\x43\x3c\xf8\x91\x11\x83\x63\xef\x8c\x65\x2c\x24\xa0\x9d\xe2\x18\x76\xe0\xfa\xc9\x2f\x19\x7b\xa0\xd4\x8e\x03\xac\xa4\xdc\x17\x35\xaf\x98\xf7\xf3\x29\xa5\xb7\x99\xc7\x10\xd6\x32\x01\x73\x3e\x92\xcc\x8c\x61\x8c\xa1\x6d\xb1\xa9\x0c\x1a\xa6\x2a\x7d\x26\xc3\x17\x77\xe4\xa0\x8a\x01\x10\xe6\xee\xf8\x4b\x1f\x27\xb6\x3a\xd9\xd1\x5f\x91\xec\x26\x8f\x33\xdc\xa0\xe7\xed\x32\xa6\x04\xd1\x5c\xb3\x85\xb9\x10\x35\xa3\x74\x03\xa3\x0a\x1d\x55\xf8\x88\x81\xc0\xe4\x33\xfa\x19\x3e\xd8\x5a\xcc\x38\xfd\x17\xee\x77\x9a\x9c\x7e\x86\x90\x7e\x70\x3b\xbd\x8c\x78\x65\x47\x2d\x5d\x40\x5a\xb3\xea\x5f\xba\x19\x0a\x9c\x7c\x95\xfe\x1b\x2e\x6f\x7d\xc1\x98\x4b\xa0\x56\x49\xe8\x9d\xc4\x55\xba\x42\x7a\x2e\xb1\x4f\x8a\xa7\xfb\x81\xa9\x74\x0a\xdd\x81\xb4\x0c\xdd\x43\xfb\x4a\xfa\x37\xd5\x40\xbb\x0b\x0d\x46\xe0\x69\x17\xe1\xa2\xed\x9f\x69\x0f\xc9\x71\xab\xc8\xb4\x2f\xe4\x2f\x93\x2f\xd3\x19\x94\xb4\x16\x37\x1a\x93\x7a\xb5\xe2\x06\x6d\x2f\xf5\x85\x76\x36\xcd\x8e\xfa\x55\xb2\x80\x36\x97\x36\x8d\x16\x4c\xfd\x46\x5b\x8a\x32\x51\x3f\xd1\xc2\x53\x1a\xa8\x0f\x68\xb4\xf0\x11\xea\x4f\xda\xe0\x76\x22\x6d\x09\xed\xbf\x55\x89\x34\x7b\xfa\xfc\x29\xcb\x68\x17\x68\xc1\x4d\x5a\x6a\x10\xaf\xd7\x72\x88\x1a\xc4\x0b\x55\xe7\x51\xb7\x71\x87\x44\x72\xaa\x07\xd7\x99\xf2\x92\xea\xc1\x51\x22\x73\xa9\x6e\x1c\xfb\xe4\x72\xea\x66\x76\xcd\x81\x6f\x54\x7f\xf6\xba\xed\xf3\xa8\x81\xac\x9e\x55\xfb\xa8\x5b\x58\xc8\x29\x52\xea\x77\x86\x43\x83\x03\xf9\x97\xb2\xd4\xf4\x9c\xfc\xb7\x78\xab\xca\x8e\xfc\x55\x7e\x56\x90\x4f\xfe\x5e\xb4\x1d\xfe\x4a\x99\x52\xd8\x58\x50\x47\xf9\x47\xea\x9e\xe4\x4c\x71\x12\xd7\xee\xbf\x44\xf1\x11\x39\xfa\x84\x52\xfc\x04\x03\xab\x26\x53\xfe\xe1\xbf\x9b\x3a\x93\xf2\x81\x25\xaf\xcd\x24\x6f\xb7\x08\x8d\x18\xb2\x87\x79\xb9\xe2\x2e\xd9\xc5\x58\xc7\x8b\x24\xbb\x96\xae\x84\x66\x93\xb7\x69\xc5\x79\xef\xc8\xfb\x4b\xbe\x25\x18\xc9\x59\xca\xf8\x7d\x4a\x32\x43\x7e\xc2\x3b\x9d\xcc\x95\x81\x8e\x5a\xf2\x16\x29\x34\x35\x99\xb2\x8e\xd3\x57\x1d\x0f\xbf\x68\x73\x2c\xcd\x87\x4f\x35\x03\x45\x37\xe0\xee\xfa\x01\x4e\x16\xdc\x57\x13\x01\x06\xc1\xa7\x2a\xce\xe7\x86\xc3\xe3\xe6\x2d\xf1\x9b\xe1\x77\x06\xc5\xde\x54\xf2\x34\xed\xf7\x6d\x48\xf2\xa4\x92\xef\x8e\x36\x70\x89\xfc\xcd\x54\x90\x5c\xc2\x23\x56\xa5\xc3\x27\x7b\x57\xea\xf9\xb0\xa5\xb3\x5e\xf6\x03\x2e\x6c\xb3\x65\xab\x61\x71\x93\x3f\x91\x05\x17\xd6\x1d\xc9\x31\xc2\xba\xaa\xf0\x38\x1d\x5c\x5f\xee\x1b\xf6\x14\x1e\x34\x6e\xdb\x36\x0b\x6e\xd3\xd1\x57\xde\x86\x37\x17\xd7\x4d\x55\x92\xbd\xf8\xcb\x2b\x35\xb0\x69\x38\x5c\x77\x05\x26\xf7\x5b\x64\xe1\x70\x72\x77\x3f\xeb\x1b\x7c\xa8\xdd\x4c\xf8\x08\xef\x6f\xce\xc8\x71\x80\xf7\xd7\xfd\x8d\xf3\x80\xa3\xaa\x0a\xc3\xc4\x70\x7c\xb9\xdb\xd6\x9b\x70\x80\xc1\x75\xe5\x0d\xa8\x4c\xf9\xbf\xa9\x57\xe1\x3a\x3e\xbe\xe6\xb2\xc8\x92\x59\x67\xb8\x27\x34\x66\x8b\x15\x2d\x02\x45\x6e\x01\x6f\x25\xbf\x23\x7f\x07\x69\x90\x77\x0f\xb1\x3c\xaf\x9c\xfb\x03\x35\x2f\x61\x33\x77\x05\x66\xf1\xde\x30\x4e\x02\x6e\xf5\x56\x23\x7b\x18\xff\xdb\x21\x85\xdd\x4e\x2c\x06\x12\x59\x32\x28\xbd\x66\x95\xf0\x46\x6e\xa4\x61\xb7\xe0\xdf\xbc\x71\xc5\x4a\xfe\xab\x02\x02\xd7\xc0\xb7\x43\x7c\x25\x85\xf2\x0e\xa2\xd4\x79\x9b\xb9\x0c\xcc\xa6\xf8\x8b\x9c\x3e\xec\xb3\xbd\xb3\x39\xb3\xf0\xa6\xad\x09\x6c\x16\xd1\xc3\x61\x27\x9b\x0d\x52\x80\x6c\x16\x06\xba\x59\xcd\x16\xce\x44\xd8\x95\x96\x0b\x36\x21\xc3\xe4\x2c\x7e\x00\xaa\x8e\x6b\xc3\x63\xa3\x2f\x81\x27\xb8\xe7\xb1\x8b\x72\x7b\xb8\xd6\x38\x74\xfc\x31\x4e\x38\xfe\x51\xd8\x45\x76\x33\x31\x62\xab\x1d\x7b\x3b\xa8\x72\xb0\x63\xfb\x92\xca\x01\x32\x2b\x00\xe6\x55\x4d\xe6\xd7\xe3\x23\xf5\x9b\x79\x4f\x08\xff\x14\xb9\xf0\x96\x13\xc6\xd8\x97\xb9\x08\x22\x93\x58\xc7\x39\x03\x86\xe7\x0c\x71\x16\x93\x36\xc4\x49\xd9\x08\x68\x65\xd8\x56\xd6\x7b\xe8\xa3\x97\x82\xa5\x84\x07\xed\x5f\xb3\x24\xe4\x44\xa0\x83\x39\x40\xf1\xaa\x40\xf0\x92\x28\x81\xda\x87\xdc\x72\x8a\xb0\xb0\x96\xf3\x89\xd2\xcd\xc2\x73\xa2\x29\xf7\x08\x78\xf6\x09\xea\xfc\xec\x5a\xf6\x6a\x6a\x5a\x6c\x19\x4b\x46\xed\x0b\x95\xb1\x1c\x69\x53\xbd\x3c\x99\xa7\x68\x7b\xec\xff\x63\x5a\x68\x94\x49\xce\x8c\x3f\xd4\x6f\xe5\xfd\xdc\x6d\x9c\x6b\x9a\x79\x1c\x25\x07\x2b\x5d\xc5\x7e\xcb\x99\xc5\x9c\xcd\x4e\x64\xab\xf0\x5b\x58\xd7\xd9\x1b\xb3\x84\xac\x50\xd6\xd3\x98\x6a\xe6\x30\xcb\x10\xf2\x94\x19\xc9\x3a\xb0\xe5\x2e\xe3\x13\xcb\xda\xfe\x13\xa3\x86\xf9\x68\x52\x19\xc3\x89\x5e\x5d\xf6\x83\x33\x55\x2e\x57\x5d\x65\x27\x14\xe9\x44\x1f\x59\xc3\x32\x01\x7d\x06\xcb\xa7\x70\x23\x36\x83\xd9\x25\xb9\x9f\xf1\x86\xe9\x2d\xd6\x1e\xdd\xcd\x18\x10\x1d\xdd\x33\xca\x38\x2a\x9c\xb9\x65\x1e\xfd\x13\xff\x8d\x7d\x19\x9d\xcd\x0f\x9f\xf4\x83\xee\xce\xfc\x6a\x9c\xce\x5e\x66\x72\x29\xe6\xb0\x38\x86\x71\xc1\x45\xe6\x84\xfe\x1a\x75\x16\x93\xa8\x95\xa2\xd5\x8c\x6f\xea\xdd\xc7\xc2\x18\x14\xe5\xdf\x23\xb7\x18\x56\x8a\xbe\xdd\x5a\xba\xa5\x08\xed\xb9\x89\xbe\xb3\x50\x68\xbf\x9a\xd6\x22\xf1\x9d\xec\x4a\xc3\xb1\x3f\xe9\x6f\xb3\xa4\x8d\xe7\xe4\x1d\xac\xe5\xf5\xf3\x79\xcf\x99\x96\x1a\x1f\x72\x00\xd3\xbe\xd2\x09\xf9\x89\xa1\x36\xff\x4d\x1b\x63\x2c\x35\x9e\x8f\x92\xd0\x8d\x7a\x4d\x30\x9e\xee\xa9\xc1\x6d\xf6\xa1\xf5\xaa\x9e\x2c\x17\xd3\xe6\x14\x6d\x9d\x1c\x46\xbd\xc5\xd5\xe8\x27\xb1\xf8\x1d\xaa\xa2\x97\xac\xe9\xad\x34\xde\x02\x26\xb7\x69\x27\x4c\x63\x7c\xaf\xbb\x82\x0c\x64\x20\xaa\x0f\xa5\xb9\xd1\x5f\x59\xba\xa2\xa6\xd0\xb3\x4c\x2b\x82\x7e\xd3\x3e\x94\xd6\x6c\xba\x4e\x2b\xd0\xda\x2c\x8f\xa4\xd6\xca\x47\x27\x1f\xa3\xe2\x79\xde\xba\x23\x2c\x66\x9f\xa9\xc8\x97\xf9\xa1\xdb\x8f\x8b\x60\xa6\xb4\xd7\x40\xff\x32\x46\x9b\x7f\x23\xfa\x18\x9e\x0d\x5b\x52\x3b\xe8\xe5\x35\xbb\x23\x4d\xf4\xc5\x15\x89\x41\x35\xb4\x62\x53\xf1\xa6\x62\xea\x84\x1e\xbb\x3c\x94\x3a\x5f\xf1\x75\xb2\x8e\xf2\x9a\xa7\x54\x05\x97\xdc\xcd\x3c\x2e\x6e\x52\xcd\xcc\xe6\x31\x53\x8b\x0f\xe4\xfa\x12\xad\xe4\x55\x79\x7f\x73\x3f\x17\x4d\x2a\x78\x98\xb4\xad\x30\x02\x79\xf1\x60\xa0\xa4\x0a\x7d\x63\xd7\x1c\xb1\x3d\xf6\xba\x7b\x99\xf0\x05\xde\xbc\x48\x29\x7c\x47\xf8\x06\x00\xdc\x12\x68\x5c\x59\x53\xb2\x22\xe7\xbd\x78\x9d\x32\x21\x8f\xcc\x78\xa7\xa8\xc9\xff\x46\x28\x93\x2f\x44\x60\x73\x8b\x65\x4c\xd4\xbc\xc4\x87\xd2\x87\xe8\xde\x88\x2f\x92\x60\x2c\xe4\x7f\x57\x74\x16\xbf\xd9\x1d\x2f\xac\x21\x74\x2e\x2a\x14\xb6\x11\xcf\x00\x00\x17\x0b\xbb\x28\x27\xab\x72\x0a\x42\x44\x9a\xe2\x66\x84\x8e\x81\x54\x58\x21\x1f\x10\x5c\x8a\x78\xe8\x39\xb9\xeb\x64\x00\x26\x2b\x91\x26\xcd\xc6\x5e\x8f\x30\x8b\x6f\xe2\x8f\xf8\x97\x89\x50\x84\x93\xee\xfb\x85\xf1\xa0\xf5\x22\x9e\x30\x1d\x7c\x02\x00\x5c\x7f\xb8\x4b\x71\x4b\x69\x8d\xfd\x23\xc4\x2a\x20\xdc\x1d\x7a\x44\xd1\x4f\x7c\x19\x7e\xb5\x8c\x4c\xc8\xcf\x09\x2e\x9c\x4c\x3c\x98\xd0\x26\x21\x81\x7b\xc3\xbf\x88\xbe\x91\x8e\xfa\xbb\x0a\xcb\xa1\x9d\xee\x33\x05\x7a\x78\xee\x22\xad\x80\x09\xab\x01\x80\xa3\xa1\xb8\xc8\x73\x14\x13\xd0\x4f\xc1\x2a\x79\x3a\xcc\xa1\xcd\x90\x3d\x84\xff\xc5\x4e\x14\xa2\xc9\x5b\xb2\x7d\xa5\x53\xc9\xaa\xf8\x33\x62\x21\x65\x4e\xb8\x9b\x68\x11\x45\xe3\xa7\x13\xdc\xa6\xce\x76\x6b\xe3\xdf\xa2\x82\x8b\xf4\x7c\x23\xf5\x24\x00\xb0\xdf\x51\x4f\x14\xad\x96\x9f\x63\xde\xe5\x9d\x2b\x3a\xcc\x1c\xa4\x74\x17\x3e\x61\x0a\x30\x67\xa4\x14\xe6\xa1\x2c\x57\x89\x1d\x73\x7d\xdc\x55\x51\x3d\xd3\xfe\x40\xac\x30\x90\xb9\xcc\xcf\x5a\x30\x93\x39\xdf\x2d\x8f\x6f\xc5\x5c\xb6\xa8\x9e\x57\xca\xdc\x0e\x00\xec\x15\xf4\xe8\x42\xa0\xa8\x41\x6a\xe6\x5c\x97\xb9\x4b\xbe\xc0\x4f\xa4\x83\x12\x7b\xb4\x9d\x24\x55\xbc\x2c\xa3\x46\x3c\x45\xb4\x2a\x16\x12\x96\x09\xb7\xef\xf7\x12\x04\x08\x12\x7c\x9d\xf9\xb3\xf9\x34\xd7\x71\xee\x04\xef\xe1\x22\x2e\x37\x99\x37\x13\x00\x58\x4e\x4c\xbc\x64\x95\xac\x5f\x37\xcc\xfa\x58\x18\xab\x75\x84\xe6\x4a\x7e\xab\xf3\x91\xb9\x62\x83\x4a\x75\x6c\x95\x68\x57\xf1\xc9\x98\x25\x82\x67\xf2\x5f\xfb\x26\xf3\x05\x45\x7e\x3b\x5d\x79\x47\x0a\x65\xae\xab\xb8\x3b\xa5\x79\x8b\x5c\x39\x24\xd1\x72\x00\x60\xc6\xb0\x77\x88\x36\xca\x68\xd5\xb7\x99\xcb\x0b\x27\x55\xa6\x82\x11\x12\x59\xf9\xbd\x82\xd3\xe2\x4d\xa6\x88\xb4\x0a\xe1\x55\xc3\x60\xf4\x90\x80\xa8\x5f\x1f\x76\x83\x6f\xaf\xa9\xdb\xb1\x82\x7b\xaf\xe4\xe8\x7a\x5f\x4e\x73\xf1\xb3\x85\x25\xec\x31\x69\x0c\x00\x30\x5a\x39\xe5\xc2\x24\xd9\x96\xc6\xef\x8c\x70\xe9\xf9\xfa\xdd\x44\xa1\x24\xb3\x06\x53\x30\x57\x3c\xa5\x52\x97\x06\x08\x8d\xe5\x03\xd1\xae\x02\xff\xb2\x5b\x61\x47\x78\x4f\x0d\xb6\xdb\x9b\xb8\x25\x3a\xca\xba\xbb\x9c\xc4\x12\xea\xc2\x14\x76\x62\x61\x0d\x00\x30\x0e\x70\x37\x0a\x1a\x0b\x5f\xb5\x67\xd0\x2b\xa4\x45\x2d\x7c\xc2\x2b\xc9\x96\x46\x66\x3e\x55\x74\xb6\x8e\x90\x4a\x17\xc6\x57\xa7\x1e\xe9\xe3\x7f\xad\xf0\x0b\xfd\xc1\x2b\x32\x07\x6c\x4f\xe1\x7a\x19\x6e\xaf\x2b\x65\xbf\xd0\x30\x16\x1e\x61\xf5\xca\x3a\x80\x69\xf4\x93\x5c\x29\x73\x51\x85\x4f\xd6\x4a\x52\x86\xb9\x24\xfb\x12\x2a\xa8\xcc\x3a\x57\x9c\xb9\xa6\x54\x92\xbf\x23\x3e\x53\x37\x0f\x61\x7b\x70\x81\x9a\x8d\xfc\x12\x54\xa5\x9a\x82\xfe\xea\x35\x47\xd1\x89\x7d\xee\xf4\x4a\x3e\x13\x5f\x62\x9b\x5e\xa4\x27\xbc\x07\x00\xc1\x6e\xb8\x9d\x31\x62\xa1\xe5\x02\xa4\x05\xa6\xb7\x79\x38\xe4\x17\x63\x66\xfe\xd7\x8c\x07\xfa\x3f\x88\xfc\x78\x27\xad\x12\x35\x39\xe2\xae\x7a\x1e\xba\x25\x88\xa0\xd4\x61\xf1\x5b\x3e\x28\x52\xf0\x0e\x4e\x0f\x8a\x8e\x13\x24\xb6\xb4\xa2\x70\xa2\x19\x00\x04\x76\xf0\x5d\x46\x5a\xf9\xd9\x02\x6b\xb0\xcb\x14\x8c\x08\x46\xea\x0c\x27\x91\xd2\x0c\x91\x1e\x8d\x1a\x8b\xbb\xad\x9d\x8f\x59\x1f\xa1\x2e\xd1\x60\x4d\x41\xbb\x94\xeb\xf1\x6e\x5b\xc6\xe4\x13\x84\x62\xa7\x2b\x45\xd9\xc4\xd3\xb6\x2a\xd9\x6b\xb0\x11\x00\xf8\xb7\xc9\x7b\xe8\x78\x73\x33\x76\x2f\xf1\x66\xd9\x6a\x9c\x23\xe2\x4c\xe9\x29\xdc\xfb\x63\x17\x74\xf9\xf8\x33\x71\x9e\x9a\x39\x84\x81\x08\x2b\x55\x39\xf1\x42\xe0\xe9\x62\x5f\xf0\x7f\x5b\x28\x72\x17\xd2\x63\xa7\x1e\x99\x16\x6a\xb0\x1d\x2a\xfc\x0d\x17\x00\x00\x7f\x33\x45\x4c\x4b\x33\x61\x48\x0a\xc2\x53\xe3\x6c\x68\x45\xc1\xa8\xbe\x05\x92\xa4\xbf\xd0\xa6\x42\xbf\x63\x73\xd5\x73\x60\x66\x78\x94\xb2\x81\xec\x1c\xe8\xae\x38\x44\x1e\xdf\xb2\xbc\x28\x84\x82\x74\xd2\x16\xf6\x50\xfe\xda\xbe\x93\xbe\xa6\x96\x00\x00\x2f\x8f\x36\x89\xea\x5e\x46\xa3\x93\xf0\x2d\x86\xe9\x74\x49\x7e\xaf\xae\x8d\x0e\xa7\x7d\xd4\xe4\xd1\xa1\x98\xe2\x92\x15\x74\xf1\x01\x79\xf1\x29\x7a\x6f\x80\x40\x8e\xa0\x7f\xf3\x6c\x92\x15\x30\xbc\x9d\x70\xd2\xdb\x0c\xd9\x3f\x6b\x25\x37\x19\xc5\x00\xc0\x35\xd2\x73\xc9\x97\x8d\x0b\x44\x68\x5c\x9a\x7e\x4c\x78\x31\x2f\x56\x2b\x16\xae\x4a\x6d\x52\x87\x09\x90\x47\x09\xaa\x49\xfc\xb1\xfd\x25\x8a\x16\xbe\xff\xae\xde\xa2\x34\xde\x49\xcf\xa5\x85\x89\xbc\x58\xa7\xf5\x92\x56\xde\xde\x7f\x02\xc5\xc7\x38\x1c\x00\xe0\x14\x31\x77\xc2\x8b\x0c\x19\x25\xbe\x98\x21\xdd\x27\x65\x67\xce\x57\x4d\x5f\x31\x32\x25\xab\x84\xa8\x98\x16\x1d\xae\xf4\x28\xaa\xda\x27\x95\x3f\x97\xc5\xf9\x8f\xcb\xf4\x85\x2e\x9b\x73\xa5\x0a\xe9\x8a\x55\xdd\xe2\x5b\x12\xd4\x3f\x1e\xa2\x10\xfe\x15\x00\x60\xb7\xb0\xfa\x48\xb8\xd2\x06\x73\x3d\x3a\x48\x97\x5f\x76\x25\x1b\xaf\x71\x37\x3c\x49\x9e\xaa\x7a\xa3\xbf\x73\xe4\x9f\xe2\x0a\xed\xfd\xbd\x08\x79\xba\xfa\x9d\xdf\x7d\x99\x53\x89\xeb\x26\x89\x74\xa6\xb2\xd2\xf1\xb3\xd8\x57\x8e\xb5\x1d\x17\x26\x88\xd0\x00\xc0\x9e\xc4\xfe\x00\xb6\x95\xe2\xaa\x73\x50\x32\x9d\x67\x65\x50\xd6\xa8\xfa\x83\x65\x7a\x52\x96\xaa\xc1\x34\x12\xc5\x2e\x4e\x37\x0a\xc3\x3e\xc8\x57\x96\xa6\xf8\x61\x0b\x1f\xe9\xb0\x9b\x3c\x24\x03\x1a\x5b\x47\xb3\xe8\x71\x31\xc5\xb6\x46\x70\x51\xcc\x05\x00\x56\x29\x27\x1e\xb4\x29\xdd\xd1\x20\x40\x7e\xd6\x7e\xa9\x73\xcd\xda\xa6\xae\xaf\x6e\x4b\x7c\xa1\x4a\xad\xdc\x1b\xb5\xa8\x78\x6e\xf9\xeb\x30\x65\xd1\x98\xa9\xcc\x6f\x6d\x21\xdf\x18\xbf\xf1\xbd\x24\x4a\x37\xe0\x88\x14\xa5\xa8\x96\xda\xf6\x08\x96\x48\x08\x00\xc0\x9a\xcf\xe9\x43\x2e\x6f\x85\xb3\x97\x67\x2d\x6b\x5a\x99\x53\x99\x64\xac\xbb\x96\xe7\x76\xa4\xb8\xda\x9c\x3f\xb4\x7f\x4a\x45\x1e\x82\x14\xf0\xc5\xec\x88\x3a\xbc\xf5\x89\xe1\x35\x26\x68\xdd\x15\xfd\x42\x9c\xfb\xd2\xc9\xda\xc3\xf8\x31\xab\x46\x55\x22\x48\x05\x00\x51\x25\xb9\x19\xd1\xdb\x72\x33\xb7\x39\xf3\x66\xa3\x30\xdf\x3a\x09\x5d\x17\x56\x90\x70\xa4\xa0\xda\x11\xd1\xbb\xef\xa9\xe5\x33\x6a\x67\xc0\x1d\x53\x0b\xfa\xd1\xd6\x4b\x06\x16\x56\xb3\x6e\x4c\xd7\x81\xdf\xbd\x74\xbe\xe6\x2b\xa1\xda\xea\x8e\xca\x86\x64\x0d\x00\x22\x34\xb9\x13\xb1\xbf\x65\x6b\x01\x22\x53\xd0\xf0\x05\xa1\x4a\xf2\xae\x1d\x44\xf6\x1e\xf1\xad\x32\xa2\x1e\xef\xeb\xb1\x80\x98\xcd\x01\x5d\xa6\x9d\xd8\x8a\xad\x1d\x86\xb9\x78\xb7\x75\x27\x75\xfb\x08\x86\xa5\x2b\x35\x02\xe2\x25\xab\x3f\x4a\x1d\xe9\x13\x00\x88\x5c\x28\xd3\x11\xd6\x4d\x9f\xb1\xab\x32\x9d\xeb\x2f\x62\xef\x26\x0e\xd5\xb4\xe0\xe4\x51\xe7\x2a\x75\x78\xc4\xbe\x23\xe5\x14\x42\x7e\xc0\xb1\xb2\x50\x22\x67\x2b\xa1\xd4\x11\x6c\x59\x67\xd1\xa6\x92\x86\x96\x6e\x53\x2b\xa0\x3a\xeb\x90\x62\x25\x39\x0a\x00\x84\x08\xea\xb2\x02\xd7\xc6\x6b\xe0\xf5\x8c\x8c\xba\x1e\x52\x4a\xa2\x5d\xb5\x81\x74\x33\xca\xab\xa2\x08\x3a\xba\xf7\x86\x19\x86\xbe\xed\xfa\x62\xdc\x07\xd7\x6e\x75\xd0\xaf\x25\x63\xd7\x51\x35\xf9\x94\x9d\x4b\xc3\x4a\x44\x54\xc0\xba\x58\x91\x4f\x7d\x03\x00\x02\x15\x2d\x2f\x3f\xb8\xe1\x5f\x5a\xdc\x31\x7d\xed\x00\x2d\x2d\x21\xab\xaa\x94\x96\x16\xa9\xb4\xa8\x68\xac\xbd\x61\x26\x2e\x6d\x70\x17\x6c\x88\xa1\xcf\xf4\xea\xd7\x79\xd1\x0b\xd6\x85\xa9\x21\xfa\xfb\xa5\x87\x54\x1c\x86\xc1\xfa\xa9\x3c\x88\x91\x02\x00\xfc\x6e\x7a\x43\x1e\xbe\x5e\x24\x58\x97\xde\x55\x83\xe6\x6b\xe3\xa1\xca\x64\xfe\x9c\xc3\x03\xe5\x09\x3c\x6d\x98\xb8\xec\x20\xcf\xdf\xff\x6e\xe9\x7a\xee\x67\xaf\x5d\xda\x59\xdc\xd1\x75\x56\x25\x01\xdc\x6b\x4b\xe3\x94\x2b\x79\xf6\x33\x7c\x65\x4d\x6c\x21\x00\xf0\xa4\xcc\xdd\x39\xef\xeb\x04\x8a\x94\x34\x56\x35\x28\x8f\x8b\xe3\x56\xe4\x17\x45\x1c\xba\x6b\xce\x95\xf9\x85\x1e\x37\x26\x17\x86\xfa\xaf\xd3\x07\x4a\x33\xb6\x34\x6b\xd6\x4b\x9a\xd6\xd6\xa8\x0e\x49\x12\x97\xfa\x16\xcf\x15\xdd\x9a\x81\x28\xc4\xf0\x56\x01\x00\xd7\xc2\xa2\xe4\xac\xab\x6d\x2c\x7d\x9c\x2a\xab\x6a\xd5\x47\xc6\x92\x2c\xcd\xda\x13\x07\x9f\x98\x5a\x34\x1e\x21\x8f\x0d\x35\x25\x3d\x7e\xc9\x3a\xad\x2a\x6b\xcb\x14\x75\x91\x32\x7d\xed\x0a\x65\x95\xa2\xc5\xee\xa6\xe2\x60\x61\xe5\x8c\x1c\x69\xbe\x60\x37\x00\x70\xde\xb0\xd1\xd9\xac\xda\x23\xe6\x89\x54\xab\xaa\x58\xd3\xf6\x58\xc0\x12\x6f\x44\x1c\xc4\x99\x62\x4a\xeb\x43\x68\x86\x70\xfd\x6c\x3f\x1b\x5d\xb0\xd6\xe4\xd9\xa7\xf6\xd3\xb8\xb8\xbc\x54\x86\xa9\xf6\xda\xb5\xc8\x1f\x17\xf9\xce\x40\x48\xee\x0a\x37\x01\x00\x87\xcd\xbe\x91\xf5\xb6\xe6\x67\x15\x37\x45\x5a\xf9\xa7\xa2\x34\xa6\xb4\x7c\xa2\xbc\xfe\xa0\x43\xd9\x17\xd3\xb5\x10\xef\xd2\x67\x65\x4e\xbe\x97\xb4\xb7\x0d\x1c\x4f\x69\xc9\x75\xbd\xa3\xcb\x85\xe2\x8b\xea\x24\xbb\x3a\x79\xa8\x5c\x30\xa3\x50\xe2\x22\xfc\x0a\x00\xec\x9f\x9c\xe5\x99\x70\x77\x4e\xf6\xed\xa4\xc1\xf6\xe7\xb9\xdb\xa3\x49\x2d\xf9\x79\xaa\x03\x37\x1a\x7e\x15\xcc\x0d\xee\xaf\x65\x21\xda\x77\x78\x54\x7e\x47\x91\x37\x56\x97\xf3\x30\x09\xce\xde\x65\x0a\x9c\xcf\x82\x47\xc6\x59\xf8\xfe\xa9\xb7\xd4\x2e\xa4\x48\x00\x10\x1f\xa7\xcc\xcc\x0c\xe8\xba\x9e\x17\x9e\xa4\x68\x8f\xcb\x67\x46\x27\x34\xbf\x2e\x68\x3a\x30\xd0\x40\x43\x7c\x0d\x6e\xa8\x9d\x81\x4a\xdf\xe1\x54\xc9\x43\xff\xd8\x68\x29\xb7\xc3\x56\x38\xfb\x95\xb9\xe3\x83\x17\x02\x86\x52\x82\x6c\x9a\x6d\xc9\x45\xd2\x71\x00\x10\xb3\x28\xd3\x32\x7e\x76\x05\x14\xfc\x2f\x29\xbe\xed\x0a\xe2\x4b\xb4\x67\x73\x36\xf2\xfb\x81\xd2\x06\x00\x6d\x1d\x2c\xaf\x29\xc4\x84\xee\x98\x53\x69\x8b\x6d\xda\x58\x62\xae\xc4\xaf\x73\xf6\x37\xf6\x11\x14\x0b\x97\x19\x56\x11\xdb\xa7\x79\x94\x24\x40\x22\x00\x10\x7b\x52\x42\x33\x4e\x74\x4e\xc1\xee\x4b\xb2\x6b\xad\xc0\x7e\x3e\xf2\xa2\x29\x02\xa7\x3a\x70\xb8\xee\x0b\x3e\x37\xf8\x40\xb5\x82\x90\xb2\xfd\x76\xc5\x62\x22\x6e\x23\xde\xd4\x08\xea\x9d\xb7\x1a\x4e\x92\x1a\x16\x86\x94\xce\x81\x94\xd3\xe8\xaa\x70\x72\x13\x00\x88\x0a\xa8\xe1\x19\xf6\xed\x97\xc0\x87\x89\xe2\x16\x36\x29\xee\x08\xaa\x71\x2b\x69\x60\xff\xcb\xda\x7f\xa1\x1d\x41\x9f\xaa\xc4\xd0\xdd\xed\x52\xcb\x1c\xb8\x70\xa3\x5f\x59\x25\x39\xce\x79\x43\x69\x0f\x65\xe3\xc2\x7c\xdd\x1b\xca\x9f\x69\xd7\x95\xab\x68\x73\x00\x40\x28\xa2\x15\x1f\x83\xdb\xee\xd1\x9c\x12\xbe\x37\xb3\x68\xce\x51\x6f\x1b\x36\xfc\x1f\x85\x75\xa1\x16\x05\xda\x28\x00\xf8\x03\x01\x15\x0b\x0c\x4c\x42\x29\x03\x01\x05\x24\x14\x90\x92\x12\xa4\x1b\x86\x98\xee\xee\xee\x62\x9a\x18\x86\xee\x06\xb1\xbb\xbb\x75\xad\x35\x7e\x5d\x63\xcd\xb5\xbb\xce\x73\xee\xe2\x15\x78\x6f\xa6\x0c\x3c\x12\xa4\x24\xe8\x7a\x75\x02\x5d\x54\x44\xd7\x1c\xc1\xc3\xa0\xdf\x6d\x3d\xc2\x4c\x9f\x25\xcd\x5b\x85\xff\xcd\x33\x34\x9d\x11\xed\x74\x5a\x65\xfe\x22\xca\x00\x40\xd5\x2d\x3c\x55\x73\x78\x42\xa1\xac\x2a\x8b\x1b\x0b\x52\x3c\xce\x8b\x1e\xba\xa7\x80\xa7\x5f\xeb\xaf\x57\xd8\x27\x4c\xea\x49\x90\x1f\x8e\x3c\xdd\x71\x59\x5e\x1b\x34\xd6\x8a\x90\x8b\x7d\x26\xdb\x8a\xe4\xe7\xe6\x9d\xb7\x86\xca\xfb\x9d\x5a\x4c\x10\xa9\x2f\x00\x4a\x9c\x78\x53\xf5\xa1\xad\x65\xa6\xe4\x52\xf8\xe8\x7c\x63\x54\xae\x74\xf0\xb2\x61\x75\xba\x7f\x9f\x56\xbf\x21\x1e\xdd\x1d\xad\x23\x45\x26\xb5\x5f\xa9\xdd\x17\x94\xd6\x82\xaf\x8d\xf7\xbe\xd1\x94\x51\xeb\x35\xef\x6e\xc3\x4f\xf5\x31\xa7\x7f\x8d\x8b\xe4\x24\x00\x14\x7c\x49\x7e\xb5\xf3\x38\xa2\x39\xa9\xa4\x73\x64\x6d\xd3\x9e\x9c\xdd\x03\xdf\xac\x2b\xd3\x50\xbd\x3b\x1b\x4e\xc4\x1d\xe8\x42\xd5\x6b\x23\x06\xdb\x67\xd5\x49\x03\x4f\x35\x1f\xb4\x0c\x79\xb3\xac\x6a\x93\x69\xde\x58\xc3\x02\xdd\xbc\xc9\x93\x0d\xae\xca\x2a\x00\xe4\x47\xa5\x1b\xaa\x4c\xe3\x76\x1d\x0b\x4a\xd6\x0f\x9f\x6b\x2b\xca\x81\x0c\x18\x5b\x1a\xd2\xe6\xf6\x66\x34\xcf\x8a\xa3\x76\xfe\x6c\xda\x16\x81\x6e\x1b\xb2\xb6\x04\x9a\x9a\xab\x1a\x9e\x78\x97\x58\x3d\x2d\x97\xe7\x8d\xd4\x37\xe8\x45\x93\x3d\xf4\x12\x55\x38\x00\xf2\x22\x69\x43\x95\xef\x98\xb5\xa7\xb8\xf8\xc1\x70\x55\x17\x3b\xc7\x65\xc0\xbb\xa3\x33\xf5\x7a\xcf\xed\x76\xe7\xb8\x8d\x9d\xd2\xd6\xc1\x88\xf8\xb6\x90\xe6\x3f\x81\x2c\xdb\x8b\x26\x96\x77\x4e\x63\x63\x7d\xdb\xbc\xbd\x75\x6f\x0d\xc3\x93\xd3\x75\x57\x54\xcf\x00\x90\x5d\x91\xde\x86\x24\x1c\x80\xa1\x46\x0b\x8d\x7b\x6e\xa1\x6f\x6f\x41\xed\xcc\xc2\x3a\x24\x3b\x4c\x1c\xc2\x95\xc7\x44\x8f\xf9\xe1\xff\x09\x73\x1e\x62\x11\x8d\x2b\x5f\xf5\xfd\x47\xce\xf7\xf8\xdc\x03\xa8\x8b\x5c\xd6\x75\xc1\x68\x2d\xf6\xf5\xd6\x1e\xd6\x45\x00\x6a\xf7\xf0\x56\x41\x56\xef\xbf\x8f\x9d\x59\xc8\xdf\x53\x88\x9b\xb9\xa5\x78\xc7\x4d\xfc\xcc\x4d\x3f\x26\x36\x11\x42\x63\xd6\x8f\x0e\x13\xa5\x61\xd3\x87\x26\x91\xed\x56\xbe\xef\xe3\x52\x4c\x9e\xd3\xba\xf5\x34\x4f\x97\xe2\xce\x37\x74\x98\xfd\x21\x6b\x02\x7b\x25\x00\xb5\x54\x9e\x27\x64\xda\xfe\x42\x7c\x63\x61\xd5\xee\xeb\x04\xd2\x96\x98\x1d\xa5\xc4\x94\x4d\x2f\xb6\x9e\x20\x45\xc5\x04\x8d\xae\x26\x57\x84\x4d\x1e\x54\x50\xc6\x56\x7e\xea\x03\xb4\xd9\x9e\x0b\xbb\x67\xd3\x89\x2e\x8c\x4e\x14\x43\x6d\x7f\xb3\xf1\x34\xfb\x1f\x00\x6a\x17\xf3\x2a\x2a\xee\xee\x5b\x48\x19\x2b\x8c\xda\xd5\x49\x5d\xb7\xc5\x63\x7b\x30\xf5\xc0\xa6\xa3\xe3\x13\x34\x6e\xcc\x94\x91\x55\xf4\xaa\xd0\x97\x03\x0a\x06\x6c\xe5\x8b\x9e\xdf\x4c\xbe\xe7\xaa\x2e\x47\x96\xc9\x65\xbc\x23\x91\xcd\x9b\xe4\xdd\x30\xc1\xbd\x0f\x80\x36\x8d\x5f\x52\x81\xdf\x73\x91\x15\x5a\x70\x7f\x27\x91\x25\xcf\xbc\xb2\xcd\x85\x75\x75\x93\x60\xac\x89\x9d\x10\x7d\x65\x78\x21\xfb\xef\xd0\x43\xfd\x64\x8e\x78\xe5\x95\xee\x47\xdc\x24\xcf\x75\x1d\x8f\x78\xde\x2e\x4f\xda\xa7\xf0\xa7\x4d\x62\xd5\x0b\x05\xf3\x00\xd0\x94\x09\x1a\x2b\x66\xed\xbe\x22\x48\x2c\x10\xef\x80\x09\xd6\x64\x72\xb7\xfe\x14\x2c\xdd\xb4\x76\x54\x23\x88\x8d\x36\x0c\xcd\x12\xc8\x43\x6b\xfb\xe0\x82\x6b\x2b\xc7\xbb\x2e\x0b\xe3\x3c\x23\xdb\x4f\x08\x3f\xbb\xba\xb5\x5e\x12\xe9\x27\x5d\xae\xcb\x14\xad\x06\x40\x8d\x16\x9e\x29\x87\xee\xe2\x2a\x1d\xf3\x3f\x6c\x77\x52\xa8\x32\xa7\x8c\x9b\x14\xd3\x92\xce\x8c\xf8\xca\xc7\xa2\xc3\x06\x86\xe5\x9c\xd0\xe4\x5e\x67\x79\xc1\x4a\x4d\x27\x4d\x0e\xf5\xcc\x6c\xdb\x24\xff\xd7\x95\xde\xe2\x2a\xfb\xea\x90\x69\x1e\x93\x9c\x01\x40\xb5\x5c\xbc\xa1\xec\xe9\xce\x65\xc6\xc1\x7c\xda\xc4\x49\x83\x34\x43\x3d\x86\xd4\xa3\x92\x72\x86\xfe\xe8\x74\x1b\xce\xf7\xab\x6b\x1f\x87\x7c\xe8\x7e\x53\x9b\xb3\x32\xbb\xa3\xb2\xd6\xc5\x33\xb9\x75\x81\xb6\xdf\x75\x9b\x6d\x4c\x65\x71\x18\x32\xc1\x64\xff\xfc\xbf\xc4\x24\xf1\x65\x09\x3b\x66\xda\xc2\xf2\xee\x6e\x3d\x6c\xd5\x6f\xfe\x3e\x8a\x6d\xf8\x99\x78\x71\xc8\xb1\x7e\xdf\x86\xec\x3e\x53\xdd\xf6\x10\x45\xf7\x4c\xcb\x87\x15\x9f\xdb\x2d\xe6\x7b\x9e\xf3\x5b\x22\x8c\xe5\xae\x07\x9b\x3a\xb5\x4a\x87\x47\xc6\x52\x45\x2b\x00\x0a\xb2\x74\x72\xe9\xb7\xed\xd6\xb6\x23\x79\x0d\x5b\x53\x5b\xde\x6f\xde\x37\xf2\xb1\x39\x3c\xd1\x32\xa8\x6e\xba\xbd\xc1\xb3\x6f\x9e\xf5\x70\x48\x59\x57\x53\x63\xf7\x8a\x1b\xed\x2b\xea\xfb\x3d\x67\x34\x1f\x32\x67\xbb\x5e\x69\x9a\x55\x7b\xd9\xd1\xc9\x70\x5e\x59\x0e\x80\x62\x9a\xb4\xa4\x74\xc7\xf6\x65\x5d\xfb\xf3\xca\xc7\xcf\x77\xdc\xd8\xac\x1c\x21\xb5\x4f\x4d\x44\x0f\x3a\xb4\x76\xad\xff\xd3\xab\x6e\x81\x84\xa4\x74\xcd\xb6\x69\x56\x9c\x6b\xeb\x69\x7c\xe8\xb9\xb8\x79\xb9\xe5\xa9\xeb\x6f\x6b\xbe\xee\x91\x63\xb4\xc1\x4b\x05\x00\x90\xcb\xa4\xb6\x13\xab\xd1\xaf\x2a\xb9\xbb\x83\xb0\x6b\xaa\x4f\x0c\x1a\x70\x58\xe8\xfb\xe6\x78\x7c\x2f\x62\x4b\xed\x64\xc2\x5b\xd4\x31\xee\x43\x52\x3e\x76\x35\x66\x23\xf9\x0a\xbe\xb7\xf0\x1a\xb5\x8a\x94\x1c\xf7\x83\xf6\x94\x72\xc4\x7f\x2b\xfd\x35\x6d\xd0\xe1\x38\xbb\x91\x31\xff\xb8\x17\x6a\x04\xda\xbe\xab\x10\xfd\x0b\x6e\x19\xf8\x0b\xbb\x05\x89\xb3\xd5\xe3\xfa\xd1\x2c\x2d\x8a\x30\x0f\xdb\xc8\xcd\x21\x5a\xf0\xc3\xe8\x23\xe4\x40\xe2\xf9\xc2\x1a\xca\x0d\xca\xcc\xb8\x06\x1a\x81\xe6\xef\x8f\xa7\xb3\xe9\x13\x0e\x43\xec\x1c\xc6\xc3\x63\x4b\x91\x04\xe4\xdb\x9d\x64\xd4\x65\xb4\x6a\x60\x26\x26\x1c\xeb\xd2\x74\x03\xbb\x15\x77\x4a\xb3\x0f\x1f\x43\x30\x70\xf6\x12\xae\x93\xb2\xd1\xf1\x24\x05\x65\x49\xc1\x7f\x94\x04\xea\xaf\xb8\x30\xea\x2b\xfa\x1e\xff\x55\xb4\x1f\x8c\x8f\x0e\x36\xf6\x24\xe6\xdd\x23\xcb\xe1\xd3\x48\xb7\xb7\x9b\x11\x83\xe4\x7d\x7d\xe9\xa8\x2d\x14\xad\x35\x19\xfd\x8e\xda\xa8\x2e\xc3\xf6\xd0\xb6\xb1\x95\x78\x38\xfd\x1a\x2a\x91\x18\xc3\xf8\x52\x30\x9b\xec\xc1\x5a\xb4\x51\x4c\xb9\xcb\xf6\xf6\x3b\x44\x7d\xc2\x3e\xee\xd0\xcc\xda\xcc\x99\x7a\xa8\xa2\xe6\x2e\x67\xe6\xc4\x05\x58\x3f\x67\x7d\x8f\x0d\x81\xe1\x20\x1a\xf6\xa3\x22\x38\x27\x94\x5f\x31\xf3\xb9\x21\xac\x6c\xec\x1f\x6e\x27\x32\x06\xff\x83\xe7\x92\xef\x4f\xfc\xce\x13\xc5\xde\x26\x9f\xe5\xdd\xf1\x43\x51\x4e\xf0\x5e\x3a\x1c\x62\x4a\x78\x89\x07\x42\xaa\x97\x48\xbb\xc7\x9f\xd6\x3c\x93\x86\x77\x3d\x85\x1d\x92\xec\xab\x0f\x40\x4c\x48\xa0\x0a\x23\x6a\xbb\x64\x3e\x73\x0e\xe6\x80\xf8\x1c\x22\x0c\x77\x5d\x2c\xc8\x8b\x21\xbc\x11\xaf\x8e\x0d\x25\x9d\x13\xdd\xf2\x5b\x46\x1e\x17\x65\x38\x7c\x61\xec\x14\xa0\xf7\xb6\x40\xae\x5a\xc0\x68\x6a\xd5\x7d\x13\xaf\xa3\xa0\xe6\xbe\xe1\xb3\xf9\x1c\xec\xb5\x5e\x2e\x43\x22\x67\xe8\x16\xd2\x57\xa1\xc3\xb4\xdd\xb0\x3a\x2c\x4e\xe3\x9d\x6b\x8f\x6f\x51\x35\xc5\xc4\x11\x15\xca\x45\xbe\x63\xa4\x12\xf9\x79\xc7\x50\xfa\x55\x71\xc5\xae\x7d\x15\x75\xdd\x21\x43\xc3\x95\x8d\x1d\x5d\xad\x6f\xab\x5b\xda\xa6\x18\x35\xd0\x03\xcd\x1c\x49\x09\xfc\xb5\xf5\x29\x35\x17\xb5\xa2\x61\x03\x14\x60\xa8\x16\x5e\xf6\x51\xdc\x56\xe3\x8e\xe8\x54\x42\xa7\xde\xc5\xd7\x8f\x88\xa9\x5d\xe8\x08\xa1\xaf\x97\xfe\xb7\xc3\x5a\x7e\x7d\x7b\xf2\x40\x1b\xe4\xe2\xf8\xd6\xe6\xb7\x55\xd7\x47\x5c\xf5\x5d\x35\x5f\x07\x84\x22\x2d\x7c\x75\xcf\x4d\xf2\x10\x92\xd4\x39\xab\x5a\x83\x3e\xda\xba\x2a\xab\x0d\xe7\xd0\x14\xb7\x41\x86\xff\x54\x3f\xe2\xb3\x9b\xb0\xc3\x34\xe4\x28\xa1\x9d\x57\x4c\xdf\x7e\xac\x9c\xb2\xaf\xa7\xff\x0a\x84\xbf\xeb\x50\x73\x60\x95\x6e\xdb\x1e\xdd\xa3\x9a\xe1\xb1\x3d\xc2\x1b\xb0\x7b\x43\x8d\x64\x27\xa4\x47\x5f\x76\xd5\x37\x34\xae\xf3\x79\x56\x08\x76\xa4\x55\xb0\x21\x09\xdf\xd8\xa4\xf1\x69\x27\x64\x5a\xce\x3a\x8e\xd2\x78\x8a\x2b\xdb\x57\x95\x7b\x1d\x9d\xd2\x1f\x0b\x09\x3b\xf0\xc4\xd6\x5d\x95\xba\xa7\x5e\x57\x51\x53\xbe\x23\x5a\x58\x0c\x93\x8e\xef\x26\xd5\x23\x0e\x0c\x3b\x56\xd9\xd0\x4e\x7d\xcb\xb7\x7c\xc6\x46\x77\xa6\x6e\x58\x83\xf7\x68\xd9\xe3\xb3\x13\x7f\xbc\x3e\xdd\xf1\x0f\xf5\x97\x32\xe6\x70\x3e\x6e\x5f\xa5\xf7\xb6\x47\xf8\xad\xd5\x92\xde\x11\xc2\x10\xf4\x60\xe3\x76\xe2\x28\xc2\x57\x75\x85\x74\x1c\xd5\xc6\x9e\x45\x7e\x8e\x9d\x87\xbc\x4b\xf5\xc7\x37\xe5\xdf\xa0\x91\x48\x89\x1b\xe1\xf4\x51\xca\x71\xbf\xdd\x0c\x0a\xed\xbc\xc3\x36\xf6\x19\x86\xe9\x10\x0c\xcb\x80\x6e\xd8\x36\x0b\x27\x83\xc7\xf4\x7c\xc4\x37\x20\xfd\x1a\xa7\x12\x0e\xa0\xa3\x55\xa1\xc4\x0f\x58\x24\x4b\x4a\x0e\xc1\x2b\x90\x55\x14\x35\x71\x22\x1f\x46\x7d\x49\xfe\xb5\xd1\x91\xbe\x81\xe6\xed\x87\x66\x4c\xa7\x5f\x70\x30\xb2\x8d\xcc\xf4\x83\x68\xcc\x06\x24\x67\x62\x35\xb6\x12\xbd\xac\x27\x18\xa7\xc2\xec\x6c\xd8\x82\xbf\x80\xe3\x2a\xd5\xc4\x25\x84\x0c\xe6\x6b\x12\x9d\xb4\x08\xf1\x80\xfc\x98\xfc\x3e\xef\x03\xb5\x94\xfa\x28\x76\x80\x76\x90\x3e\xee\xb7\x92\x6e\x64\x4e\x76\xe0\xb2\xd3\x58\x11\xfb\x8d\xc8\xfb\x24\xbf\xf1\x6a\xf4\x46\xb2\x7f\x17\x0f\xd3\x47\x99\x53\x77\x16\x37\x83\xba\x5c\x11\x86\x97\xd0\xb2\x19\x47\x89\x53\xe8\x3c\xf8\x63\x52\x1b\x63\x6b\xde\x22\xca\x06\xe6\xab\x98\x6f\xd4\x5d\xec\x19\xbe\x07\x68\x32\xf6\x39\x07\x22\xab\x95\x93\xb9\x77\x00\x7e\x8b\xbd\x72\xd4\x80\x2c\x60\x8b\x3b\xce\xa0\x6e\xb2\x2f\x58\x62\x31\x70\x4e\xa4\xec\x3a\xce\x81\xb3\x93\x5e\x8b\x1f\xe6\x46\xc2\x1e\x13\x61\xdc\x43\xb9\xf1\x64\x0f\x5e\x4a\x4c\x35\xa5\x9f\x77\xc8\x97\x4b\x45\xf0\xfe\x73\x18\x64\x5e\xe2\x89\x76\x5b\x61\x73\x25\x5b\x87\xc7\xe1\x9d\x92\xca\x76\x17\x64\xb4\xf8\x97\x69\x14\xf5\x4a\xbc\x4b\x4a\xc0\x8c\x8a\x05\xb4\x02\x1c\x59\xbc\x05\xfa\x3f\x42\x92\x78\x49\x0e\x8c\xe4\x26\x7a\x16\x7d\x9a\x3c\x24\x1a\xf2\x8d\xa7\xe4\x8a\xb6\x38\x7c\x67\xfc\x10\xf4\xec\xf8\x56\x7d\xcf\xd4\x37\xb8\x18\xda\x61\xcc\x6f\xd1\xc3\x21\xfa\xcf\x86\x0a\xe4\x0a\x5d\xa7\xb8\x14\xed\x54\x9b\x45\xe1\x60\x5e\x6a\xbe\xd7\x6c\xc6\xdd\x57\x37\x65\x07\x13\x4e\xaa\xd6\x6d\x78\x4a\x82\x2b\xee\xf8\xdc\x23\xfd\x96\xef\x77\x4c\x60\xb8\x88\x85\xdb\x36\x55\xd9\x3a\xbb\xfb\xea\x6a\x8a\xdb\xc3\x6d\xe1\x30\xf7\x96\xa3\xba\x60\xf8\x27\x5b\xb1\x10\x82\xbc\xdf\xf8\x94\x34\x81\xbe\x53\x5f\x59\x75\x14\xfb\x8f\xf9\xf4\x96\x2f\xf8\x5b\xc6\x55\xeb\xbf\x13\x85\xba\x1d\x3e\x78\x92\xa3\xf6\x89\xa3\x94\x8e\x91\xfe\xd8\xba\xa0\xf2\xfa\x04\xb6\x87\x5f\x5d\x3b\xe6\x60\x0d\x83\xe6\x0f\x99\xb4\xa9\xf0\x35\xfd\xfe\xfc\x46\xa4\x67\x77\x0f\x71\x2e\xda\xbb\xc3\xa9\xb2\x00\xbb\xa6\x25\x33\xf3\x0e\x7e\x95\xd5\xb2\x3e\x82\x70\xad\x3e\xd8\xc7\x89\x98\x6a\x4a\x72\x1c\xa7\xbd\x53\x4c\x1e\xdf\x5c\x29\xdd\xb3\xbf\x7b\x6b\xf5\xa6\x1d\xbf\x1a\xd1\xd0\x99\x13\x4b\x35\x2a\xd8\xd3\xd1\x54\xde\x53\xc4\xa5\xc1\x6c\x02\x19\x75\xb9\x37\x1c\x72\x06\x73\xaf\xe3\x4f\x26\x01\xf7\x57\xcb\xf1\xa8\x2f\x04\xaa\xf5\x8f\xf7\x07\xc2\xff\x2c\x45\x8e\x0f\x69\x4d\x8a\x33\x63\xfb\x2b\xe3\x0f\x2f\xe8\xf6\xaa\x76\xd8\x3f\xbf\xe1\x56\xcd\x99\x5d\xaf\x35\x76\xb0\xba\x6d\xfb\x79\x48\x04\x7d\xac\x8a\x30\x09\x85\x1f\xbc\x0b\xc1\x62\x68\xbd\x6b\x33\x43\x71\x35\x1d\xd2\xa8\x7f\xf0\xdf\x5a\xe6\xfb\xcc\x20\x64\xd4\x5d\x76\x0a\xa7\xb9\x29\xd7\xee\x2b\x27\x76\x42\xfe\x1a\x2b\x24\x15\x56\xc7\x76\x6a\xc9\x6e\x50\xa5\xe5\x1d\xf9\x21\xfc\xbb\x1c\x46\x39\x83\xe2\x30\x00\x75\x0f\xe6\x03\x3c\x98\x76\x08\xcf\xcb\x95\xd3\x4f\x91\xfc\x63\xc4\x8c\x63\x94\x51\xdf\xcd\xcc\x42\xda\x71\x87\x35\x1c\x38\xe3\xe1\x5e\x06\x01\x5e\x73\x77\x54\x49\x0c\x83\x3d\xef\xb8\x49\x9a\x81\xb8\x6b\x49\x27\x7d\x41\xdb\xc9\x4e\x93\x7f\x60\x57\xd1\xa9\x54\x27\x7c\x16\x6c\x27\xcd\x9b\x28\xcd\x5d\x44\x4f\x24\xdf\x88\xf1\x63\x14\xd0\x1c\x7d\x1d\x18\x9f\xe8\x07\x1d\x5c\x39\xa1\x4c\xed\x1e\x21\x3e\x08\xe9\x34\x32\x4a\x58\x80\xda\xdb\x31\x9f\x38\x15\x53\x6c\x36\x91\x66\xe0\x56\xc8\xbc\xc8\xab\x08\x80\xf6\x3f\x4a\x06\xf1\x3a\x2c\x9c\x2a\x26\xef\xce\x19\xa1\xed\xa1\x6e\x8b\xbe\x4c\xbf\x4b\xd7\xfa\x9c\x63\x08\x18\x9f\x1c\xec\xd8\x6f\x58\x84\x5d\xc7\x31\xd7\x89\xd4\xa1\xaf\xd8\x3f\x24\x63\x1b\x1e\x1f\x48\xb6\x98\x5c\x08\x85\x94\x11\xc9\x05\x62\x13\xf5\x7f\xd4\x1d\xa4\xa7\xf4\x85\xd0\x68\x4a\x02\xa3\x2c\xfb\x1e\xb5\x95\x39\x1c\xbd\x82\x76\x8f\xf5\x8f\x0f\x89\xce\x65\xef\x76\x70\x62\x6f\xe2\x30\x76\x1c\x40\x7d\x63\x25\x0d\x2e\xc1\x04\xb1\x4e\xb6\xec\xc5\x52\xd9\x81\x06\x15\xee\x10\xbb\x5f\x4c\x23\xf8\x72\xd6\x52\x54\x44\x33\xe7\x44\xcd\x46\xb2\x0b\xb7\x3c\x7b\x06\x45\xc9\xfd\xb5\xa1\x99\x7a\x95\xa7\xf1\x09\xa7\x55\xf2\x6e\x38\x24\xb2\x58\xbc\xe6\x6d\x67\x90\xc1\xe2\xfd\xfd\x71\x28\xa5\x58\x66\xfb\x89\x7e\x29\x8e\xd0\xfd\xc2\xe6\x89\xa7\x89\x16\xe2\x6e\x8a\x9e\x92\x0b\x09\x95\xa2\xd3\xd5\x71\xc4\x2f\xa2\xa1\xac\xf5\x64\x89\x48\xb7\x61\x3a\xe5\xa6\x08\xe7\xe3\x40\xcd\x14\x85\x38\x34\x32\xfb\x05\xbb\xb6\x7a\xc0\x5d\x8d\xe9\x3d\x13\x08\xa3\xc1\xdf\xaa\x41\xcd\xd6\xbd\xd5\xee\x47\x9b\x6b\xf7\x08\x5c\xb1\x6b\xb5\x22\xa2\x0a\x77\x57\xb3\xa9\x72\x0f\xc1\xa4\x76\xd8\x32\x9d\x14\xa6\x3c\xb2\x7e\x1d\xb9\x5e\xa1\xf5\x1e\x22\x7f\x91\x5b\x1d\xde\x31\x76\x88\xb9\xa3\xcd\xd0\xf3\x1d\xd3\xbb\x92\xe1\x69\xad\x27\x1a\x62\x11\x57\x9a\xa9\xea\x26\x54\x45\x53\x20\xcf\x0b\xe3\xdc\x70\x17\x7f\x16\x7b\xae\x8e\x05\x89\xc0\x5b\xcc\x93\x33\xee\x10\x37\x19\xea\xa2\x72\x49\xc3\xba\x2c\xef\x64\xd2\x37\x6d\xa7\x63\x34\xc3\x41\xfa\x64\xb8\x12\x6a\x3f\xae\xea\xf0\x81\x09\x46\xb2\xea\x22\x11\x53\x06\xa7\x28\xb7\x23\x6d\xbd\xc7\x39\x95\xe8\xcc\x2e\x24\x2e\x14\x3b\xaf\xed\x63\xf9\x75\xdc\x93\x66\xcc\xe6\x23\x84\xa6\xc6\xfb\x91\x06\xe2\x9f\xba\x89\x65\x77\x49\x51\xc6\xb3\x8e\x38\xba\x4c\xfe\x70\xa8\xb5\xe6\xd8\xae\xd3\xed\x85\xb0\xd8\xed\x21\x16\x04\xfc\xd8\xb8\x50\xf1\x01\x99\x35\x7c\x91\x3d\x8a\xfa\xd5\xff\x07\x6b\xc2\x1c\xe9\x71\x2d\x4f\xc1\xe9\x3b\xa6\x6d\x2e\x20\xc4\xb7\xd8\x47\x66\x10\xdb\xad\xcc\x65\xa7\x88\x17\xcc\x17\x1c\x5b\xe8\x2b\x15\x6d\x43\x73\x6b\x8c\x07\x97\xb4\x9d\x80\x39\xec\x8d\x33\x5f\x80\xf3\x76\xae\x57\xc0\x91\x60\x22\x98\x1d\x8c\xea\x1e\xb5\xc3\xfa\x60\xaa\x06\x46\xcb\x5e\xe3\xfc\x7b\xa2\x36\x2f\xc4\x5f\x6d\x3f\x14\x19\x46\xf4\x6e\x66\x2d\xbb\x4b\x8c\xa8\xdb\xe0\xf8\x8e\xd6\xa5\x74\xda\x1a\x49\xdf\x0d\x29\xec\xb5\xa7\xbf\xa9\x7a\xde\xe4\xca\x58\x03\xcd\xaf\x9d\xca\x18\x86\x6f\x17\x78\x31\x23\x50\x7e\x44\x02\xf3\x38\xa6\xa3\xb2\x8a\x05\xc3\x07\x64\x72\x58\xef\x89\x37\xa2\x96\xb1\x85\x94\xac\xa5\xbb\xd9\x37\x69\x50\x7b\x2e\x2f\x83\xb9\x7c\x5c\x49\x63\xd7\x6c\xe8\x29\xa0\x5d\x80\xa1\xad\x58\xfa\x2a\x04\x57\x0b\xa7\x9f\x46\xa9\xf8\x52\x06\x09\x33\x46\x78\xc4\x5c\x88\xbb\x0d\xf9\x97\x79\x85\xe8\x96\xe9\xca\x62\x93\xf1\x91\x17\xd8\x1e\xd4\xa6\xa5\x24\xb6\x98\x9e\x6b\x5f\xce\xf3\x67\xee\x1b\x3b\x4b\x4d\x44\x24\x77\xb7\x50\xb7\xa2\xe6\x36\x4e\xd0\x02\xd1\x27\x35\xe3\xb4\x7f\xb1\x12\xde\x03\xfa\x00\xbe\x82\x90\xcd\x40\x11\xa3\x21\x68\xe6\x3a\x72\x40\xc6\x30\xf3\x13\x35\x22\x52\xc0\x1a\xa6\xcf\x5d\x9a\xc4\x9e\xc3\x10\xdb\x97\x70\x9f\xb0\xb4\x23\xbd\xe4\xa5\x84\xbc\xce\x2e\xf2\x09\x22\xb6\xfe\x19\x85\x4c\xa2\xa8\xfd\xa9\x29\xe4\x7e\xae\x8e\xb6\x9a\xf2\x11\xbf\x9c\xee\x42\x8b\xab\x20\x32\x00\xdd\xb6\xf9\x2d\xe3\x21\x73\x4e\xc4\x7b\xe6\x6e\x56\x99\xd7\x37\xd6\x42\x76\x92\xbd\x90\x1b\xcb\x11\x0e\xbb\x13\xf3\x19\xb7\x3b\xdc\x48\x4e\x4c\x5c\x5d\x21\xe9\x1c\xf3\x89\x72\x1f\xf9\x04\x8b\xc5\x49\xa7\x9c\x65\x2f\xc5\x4d\xa5\x5e\x64\x5f\x28\xe7\xd2\xee\x71\x44\x9b\x83\xe9\x57\xb9\x9b\x23\x28\x8c\x9d\xdc\x2f\x5e\x77\x98\x0e\xbc\x4a\xfb\x13\x1c\x06\x4f\x35\x18\x87\x6f\x15\x2d\x68\x2b\x26\xd0\x85\x9f\xcc\x47\x89\x9b\x85\xfb\x15\xc9\x24\xb4\x70\x8c\x6d\x47\xd6\x08\x07\x31\x4f\x28\x03\xc2\xa1\x32\x29\xf5\xb2\x70\x6b\x3a\x86\x76\x45\x78\x38\xfc\x1b\xfd\x88\xf0\x8c\xd7\x3e\xfa\x47\xe1\xc1\x49\x1e\xec\x31\x81\xb6\x8f\x86\xa5\xe8\xde\x35\x5f\xc0\x31\x6a\x7f\x18\xd1\x78\x91\xf6\x9d\x6c\x29\x61\x42\xf3\x88\xe9\x4a\x7c\xa3\xfe\x1b\x1d\x44\x5e\xa5\xba\x52\xea\x4a\xc1\x29\x4f\xa4\xa5\x53\xb5\x8a\x93\xe1\x31\x34\x9e\xfc\xaa\x97\x92\xa6\x93\x2f\x9b\xd4\xc3\xea\x10\xaf\xee\x09\x44\xff\x6a\xf9\xd8\xa4\xc0\x2e\xb1\x7d\xd0\x87\xe1\x36\x58\x1f\x49\xe6\xe0\x79\x0d\xd7\xe8\x61\x84\xb3\x75\x07\x91\x52\xd2\x42\x73\x5b\x71\x37\x19\x67\x64\xa6\x2e\xa1\xb4\xeb\xcb\xd6\x95\x53\x4d\xb5\x44\xaf\xf9\x54\x9d\xe6\xf1\xa4\xc7\xcc\x8f\x52\x4a\xd7\x62\xb4\x64\xf8\x4d\xa3\x1c\x43\x1c\xf8\x56\x9b\x80\x65\xf5\xbe\x13\x45\xe3\x0e\x75\x7d\xa1\x8a\x08\x2e\xed\x2f\xe1\xdf\x89\x88\x96\xb3\x45\x9b\x49\x47\x9a\x5a\x53\x5c\xc8\xdf\x1a\x68\x61\x16\xca\xbf\x96\xbd\x9e\xdd\x94\x53\x86\x36\x87\xb9\x4c\xb8\xbc\xa4\x73\x03\x7a\xc5\xb6\x7d\x0d\xdb\x30\xcb\xc7\xe5\x5a\x0e\x76\xcd\x48\xa0\x50\x88\xa3\x0c\x5c\xa1\x5c\xc1\x1f\xe9\x2d\x85\x97\x11\xe7\x75\x9e\x2d\x3c\x4e\xc2\xb6\xad\x4c\xee\x23\x77\xdb\xf4\x61\xe9\x14\x65\x23\xdc\x53\x45\xc9\x37\xf1\x1c\x62\x98\xce\x8a\x99\x1d\x26\xd4\xdd\x3d\x43\x0d\x73\xd0\x0f\x76\xa6\x6b\x9e\x60\x5e\x4e\xec\x13\x7c\xc4\xf9\x8c\xb9\x52\x72\xf1\xc8\xa1\x44\xd8\x6b\xc2\xf6\xbe\xbc\x42\x14\xc9\xb1\x2b\x37\x19\x4e\x0e\x6d\xcb\x08\x0b\xa0\x38\xdb\xc2\x3c\x1b\xc8\x3b\xcd\x37\x1d\x94\x0c\x91\x82\xde\xbb\x8d\x17\x0c\x49\xb2\xbd\xe6\xcd\xaa\xea\x34\xe8\xb8\xdf\x6a\xde\x4a\x63\x78\xce\xf0\x74\x86\x3b\xcf\x0f\x79\x12\x15\xc6\xdb\x84\x89\x2d\x01\x3c\x0a\xee\x4a\xca\x30\xaf\x8d\x88\x0a\x73\xe3\x5d\x23\x5f\x71\xcf\xe1\xcf\xa6\x9e\x00\xf9\x02\x33\x33\xa5\x77\x3a\xd7\xb1\xfa\xae\x2d\x95\x0b\xa0\x9f\xf4\xef\xb9\xd3\xe0\x3f\x24\x03\xdc\x08\xd4\x54\xba\x9e\x4b\xc0\x84\x21\x77\x72\x7b\x71\x35\xc5\x06\xee\x33\x42\x5f\x4a\x11\x2f\x80\xf4\x36\xf4\x32\x8f\x46\x9d\xe1\xbe\x82\x77\x94\x36\x02\xb2\x05\x68\xe6\xe9\x9e\x42\xf6\x3f\xf0\xa6\x26\x1b\xfb\x2b\x92\xa4\x4f\xe3\x2c\x45\x07\x4b\xec\x38\x48\xcc\x0b\xda\x17\xce\x4e\xdc\x19\x64\x10\xe7\x0f\x61\xa2\x78\x09\xb7\x80\x34\x92\x62\xcf\x1d\xa3\x8c\x84\x1a\x78\x53\x69\x7c\xf7\xe9\xbc\x42\xfa\x4d\x50\x2d\x58\xc5\x52\x74\xd1\x99\x47\xf0\xb1\x8d\xf7\x58\xee\x04\x4a\x6d\x0f\x8b\x47\x34\x8a\x1a\x59\x0f\x49\xd7\xa8\x07\xd8\xd9\x94\x00\xc4\x22\xf6\x3e\xaa\xae\x68\x0d\x27\x98\xf6\x2b\xb9\x80\xd3\xc3\x40\x87\xce\xe3\x7a\x30\xb7\x2f\xb9\xc9\xad\x61\x19\x81\x89\xaf\xe1\x14\x77\xfc\x45\xff\x4c\xc7\x37\x94\x30\x10\x8c\x05\xda\x70\xc6\x2d\xc6\x98\x30\x9d\x59\xc1\x2c\xa5\xd4\x33\x5f\xb3\x16\xc2\xe7\xb2\x18\xac\xc7\x85\x79\xec\xc9\xec\x9d\x9b\x06\xd9\x2d\x1c\x55\xc8\x20\xc7\x9b\x9b\xb0\xe4\x38\x27\x93\xbb\x15\x3c\xe4\x9d\xe5\xa5\xb7\xcf\xa6\x69\x04\x8b\xea\xb6\xd2\xbe\x09\x42\xd4\xa3\x74\xb2\x20\x8c\xff\x92\xe1\x2a\x48\x24\xe7\x33\xf6\x0a\xca\xa1\xbf\x99\xa5\x02\x55\x41\x39\xcb\x4e\xb0\x3d\xe9\x1d\xab\x57\xf0\x20\x24\x89\xbd\x56\x38\x79\xc9\x00\x3b\x5a\x38\xcd\x6e\x2d\xcf\x51\xe0\xd3\x52\x46\x61\x6b\x53\xcd\xe1\xd4\x39\x9a\x76\x65\x19\x75\xa7\xfa\x16\xf7\x24\x0d\xaf\xfa\x41\xa4\xd0\x83\x55\xbe\x35\x69\xf4\x57\xca\x9c\xbc\xf7\x8c\x41\x85\x20\xf1\x0e\x13\x2a\x1f\x5d\x5b\xcb\xfc\x20\xfb\xb8\x84\xc0\xbc\x25\xe3\xd9\x0d\x70\x67\x8a\xba\x9b\x7e\x90\x17\x35\x1d\x32\xbc\x25\x9f\xb3\x4e\x97\xc7\x51\x84\x0d\x71\xec\xab\xd4\x94\x3a\x12\x7e\x98\xb6\xc0\xdc\x5a\xb5\x93\xf6\xcc\x78\x32\xd7\x4a\xdf\xab\x7f\x99\x70\x84\xc1\xd1\xcd\x5d\x73\x90\x39\x49\x2b\x5a\x32\x97\x71\x5a\x7d\xd5\x7e\x0a\x27\x49\x72\xcf\xea\x4e\x52\xf7\xff\xa7\x9f\x41\x5e\xd4\x0b\x91\xc2\xc9\x97\xba\x0e\xb0\xe6\x52\x9a\x3a\x66\xe3\xe6\x51\x71\xad\x25\x95\x29\xb4\x44\x9b\x21\xa7\x82\xbe\xb8\xf1\x58\xfc\x6e\xfa\x9d\xba\x5f\xc1\xaf\x18\x45\xe6\x93\x8b\xeb\xe9\x5f\xf4\x1e\xf6\x21\xec\x31\x59\x6f\x63\x0e\x29\x76\xcc\xa4\x8b\x23\xdd\x19\x9e\x90\x74\x91\x75\x03\xfb\x98\x10\x4a\x7e\xef\x0e\x2c\x91\xea\xd3\xd5\x04\xd9\x4e\xfd\xda\x8e\xca\x7e\x48\xbb\xd0\x12\x1a\x9f\x4d\x57\x34\xcd\x0c\x6e\xa1\x7f\x6d\x58\xbd\x98\x44\xe7\x19\xfe\xb2\xcf\x61\x67\xcb\x73\x1a\x76\x11\xff\xec\x80\xd5\xf6\x90\xda\x27\x32\x24\xb3\xc8\x5b\xc6\xe6\x31\x6e\x51\xa6\x0f\x9d\xc1\x7c\xa7\x5c\xed\x87\x40\x32\xa9\x6d\xdd\xb7\xb2\x6b\x69\x98\x8e\x8c\xf8\x59\xf4\x45\x2d\xd7\x83\xe9\x74\xb6\xf5\xc4\x62\x26\xed\xa6\x69\x89\x7d\x3d\xeb\x94\xfc\x60\xd3\x90\x94\x03\x01\x86\x9b\x92\xfb\x55\x55\xf2\x1c\x49\x6e\xcd\x10\xfb\x98\xf8\x1d\xdc\x01\x4f\x11\x37\x20\x39\x55\x70\x71\x14\xfa\x6b\xae\x9b\xe8\x25\x4e\x1d\x4f\x15\x8d\x12\x5d\x82\x94\x22\x03\x39\x6f\x41\xb9\xe8\x21\x75\x26\x00\xa2\x93\x4c\x5a\x93\x8b\xa4\xb8\x9a\x65\x88\x17\x3f\x82\x9a\x64\x87\xc5\x3c\x78\x23\x3b\x56\x1c\x88\xec\xc6\x7d\x15\xbd\x40\x5f\xad\xfc\x28\xea\xc6\x4d\xca\x99\x10\x21\x09\x69\xf1\xab\x44\xf1\x24\x71\x50\x81\x28\x82\x22\x5a\xb0\x49\x64\xa0\xbe\x00\x40\xd4\xc8\x7c\x68\x45\x89\xa3\xe1\x0b\xf5\x6d\xa2\xd7\x88\x57\x32\x1f\x51\x1f\x6a\x9c\x35\x20\x22\x60\x50\x38\x82\x28\x1a\x97\x5a\xc9\x11\x4d\x21\x44\xe6\xa4\x0a\xef\x93\x36\xc4\x3d\x16\x9e\xa5\x04\x06\x2d\x17\x5e\xa2\xfe\xbb\x20\x52\xe4\x4b\x9f\x01\x80\xa8\x8c\xa5\x6d\xd8\x29\x24\xe0\x8a\x74\xb3\x85\xeb\xf1\x0d\x92\x6d\x42\x17\xc2\x61\x26\x4c\xf0\x87\x34\x0b\x9b\x2b\x78\x43\xa6\x40\xf8\x82\x1b\x94\x7f\xb3\x49\x82\x13\x34\x54\x5c\x8a\xe0\x0c\xfd\x4c\xe0\x45\xc1\x73\xe6\x8c\x05\x2b\x85\xab\x99\x67\x01\x10\x1e\xe3\xc4\xd6\x57\xf1\x6d\xb4\x25\xda\xdd\x7c\x23\xed\xae\xb8\x8c\x2f\xa7\x2b\x19\x6b\xf9\x6a\x46\x3a\x26\x9a\xdf\xc8\x74\xaf\xd0\xf2\x9b\x59\x8e\x59\xad\xfc\x4e\xd6\x87\x8d\xe3\xfc\x93\xec\xf3\x81\x54\xfe\x3b\x8e\x6e\xc1\x2a\xc1\x5c\xce\x6b\x00\x84\x93\x79\x73\x2d\xe3\xbc\x24\x5e\xa1\x26\x8c\xb7\x82\xa7\x17\x4d\xe5\x2d\xe6\x4d\xd0\x3e\xf1\x22\x79\x0f\xd0\xcb\x79\xe5\xfc\xc5\xe5\x26\x1e\x93\x8f\xd9\x72\x81\xd7\xc8\x3f\xb2\xd1\x97\x77\x5a\xe0\x1c\x18\xc5\xfb\x4f\x90\xb9\x20\x95\x77\x5f\x50\x04\x80\xc0\x8b\x7f\xcf\x54\xc6\x59\xa2\xda\xab\x7c\xc3\x49\x55\xe5\xf3\x2f\x72\xe8\xca\x53\x94\x4f\x9c\x21\xa5\x07\xb2\x98\xf3\x48\x41\x29\xfd\xcd\x5d\x24\xbf\x97\x89\xe5\x26\xc9\x63\x63\x17\x73\x75\xb2\xce\xd5\x7c\xee\x6e\x99\xfb\x02\x27\x2e\x51\xba\x15\x00\x7e\x82\x68\xbd\xfe\x29\xeb\x4b\x43\xaf\x7c\x80\xed\x5e\xef\xc3\x3d\xc0\xce\xb0\x18\xc9\x4e\x6c\xbd\xd9\x01\xde\xcd\xbe\x61\xa4\x96\x10\x39\xee\xfa\x27\x19\xde\x9c\x2a\x5d\x49\x8c\x03\xa7\x5f\x7b\x21\x60\x1b\xe7\xa4\xc6\x32\xbf\x95\x53\xa4\x62\x00\x1f\x9e\x50\x92\xa8\x5b\xc6\x9a\xdf\x7d\x5e\xfa\x94\x55\xd3\xb9\x93\x03\x58\x83\xed\x14\x22\x86\xf5\xa6\x75\x09\x6c\x2d\x3b\xdc\xb6\xb7\xd8\x97\x2d\xb5\x66\x6c\x9e\xc2\xbe\x54\xff\x28\xda\x99\x33\xcb\xa2\x5e\x75\x97\xe3\x61\x1a\x9e\xbf\x90\xad\xaa\xcd\x06\xb9\xdc\xfb\xd2\xf7\xb5\x41\xcc\x77\x43\x5e\xd2\x79\xac\x80\xfe\x83\xec\x14\x16\xbe\x37\x90\x70\x94\x35\xd6\x25\x86\xda\x58\x1f\xda\xcf\x14\x75\xb0\xa3\x5b\x7e\xa6\x37\xb2\x15\xb6\xf0\x0d\xfd\xec\x83\x8d\xe6\x55\x2a\xf6\xc1\xba\xdd\x6e\x2f\xd9\xae\xba\x7b\x80\xce\x65\xcb\x1a\xb5\x70\xe6\x8d\xf1\x09\x09\x86\xf9\x67\x74\x11\x6b\x2f\x2b\x74\x28\x8b\x90\xc0\x42\xf7\xc3\xa1\x41\xac\x9e\x1e\x78\x51\x22\xeb\x59\x67\x56\x7a\x36\x7b\x55\x5b\xdc\x06\x0c\x3b\xaf\xb9\x78\x55\x31\x3b\xa6\x71\xae\xdb\x4b\x16\xca\xe0\x02\xba\x38\x5f\xe5\xf6\xca\x06\x43\x0a\x24\x46\xb0\x5d\xf7\xbc\x8a\x49\x77\xab\x1d\xac\x19\xc2\x8c\x6a\x0d\xb0\x37\x95\x16\x0d\x07\x59\x98\x77\x5e\x0d\x41\x9f\x4d\xfe\x5b\xb5\x05\x97\x17\xd1\xa6\xac\x26\x1c\xf7\x7b\xa2\xb8\x4c\xfa\xc7\x65\x40\xe9\x47\x89\x02\x40\x7a\x84\x35\x49\x69\xaf\x8f\xaa\xce\x13\x04\xd5\xfe\x81\x16\xd0\xba\xb5\x77\xe0\x99\x98\x04\xcd\x6d\x64\x76\x65\xb0\xfa\x0e\x9a\x96\x47\x53\x5d\xc2\xf6\x26\xd7\x2a\x2f\xe3\xff\x8b\x40\x2a\x3e\x91\xdc\xfc\xce\x2a\xa8\xe4\x77\x2e\xdd\x8a\xf3\x94\xef\x00\x48\x8d\xac\x54\x45\xa5\x6e\x0d\xcc\xcc\x6f\xa9\x5d\x80\xa8\xa1\xf9\x6b\x67\xa0\xbc\xd0\xe7\x34\x3e\xe8\x3b\x90\x63\xea\x70\xec\x81\xbc\xb9\xaa\x28\xfc\xf6\xe4\xf5\xca\x14\xe2\xfe\x88\x10\x85\x90\xdc\xe5\x37\xaa\x98\x4a\x8d\x71\x19\x51\x14\xd0\x66\x03\x20\xcd\x62\xdd\x90\xfd\xad\xb5\x61\x83\x78\x69\x9a\x3a\x9c\x98\xf2\x55\xdd\x87\x3f\x8a\x3a\xac\x3a\x4f\xf4\xa8\xf8\x5b\xf9\x89\x64\xcc\xdd\xa4\x74\xa1\xcc\xdf\x54\xab\x08\xa1\x0e\x85\xef\x92\xf3\xe8\xb3\xfc\xb8\xf2\xf9\x8c\x24\x97\x4b\xf2\x0d\x8c\xd3\x00\x48\x3a\x38\x45\x52\x9b\x66\x32\x25\x86\x3b\x53\x3d\x9f\xba\x8c\xbc\x5b\x15\x44\x7d\x8d\xec\x54\x62\x68\x97\xca\x1f\x28\x86\xe8\x27\x73\x10\xf2\xbf\x19\x97\x92\x2e\xc8\x5d\x98\x8f\xc2\xa3\x64\x6c\xd6\xdf\x7e\x31\x32\x77\xf6\xa8\xcb\x03\xd9\x42\xf6\x57\x00\xc4\x2f\x78\x53\x25\xa5\xaa\x09\xf6\x4b\xf6\x45\xe5\x6e\x4e\x04\x49\xa5\xf8\x8b\x43\x45\x98\x15\xde\x9c\x1b\x65\xff\xc8\x19\xdc\xf8\x6c\xbd\x6c\x2f\xf7\x7c\xd2\x14\xe9\x77\x5e\xce\xba\xa3\x52\x0e\xef\x8e\x9f\xb3\x74\x09\x3f\xcb\x75\x92\xe4\x11\x9f\x09\x80\x78\x15\x7f\x4c\x14\xac\x38\x21\xcf\x61\x5e\x90\x7f\x96\xcf\x24\xf4\xcb\xd7\xcb\x06\x61\x77\x65\x2d\xb2\xb4\x52\x8c\xcc\x5e\xfa\x29\x2b\x4a\x5a\x22\x1d\x4c\xf8\x28\x19\x97\xc2\xc3\x9e\x4b\x22\xa4\xbe\xbe\x2a\xf1\x55\xa9\x93\xcb\x3b\x31\x46\xb2\x0e\x00\xd1\x32\xe1\x2d\x41\xb8\x9c\x64\x3a\x41\xff\x24\xdb\x65\xdc\x87\x7b\x23\x9b\x67\x50\x42\xb7\x48\xf9\x7a\x68\xf1\x6f\xc9\x3b\x5d\x6c\xe6\x0f\x49\x49\xad\x57\xfc\x53\xf1\x59\xed\x94\x30\x17\x71\xaa\x66\x92\xcf\x4b\xd1\x65\x35\xcc\x65\xa7\x28\x55\x11\x05\x80\x30\x57\xdc\xc9\x23\xcb\x7a\xdb\x26\xd1\xd2\xa5\x3f\x5b\xf2\xb1\x44\x69\xb1\x4d\x52\xfd\x3f\xc9\x05\x6b\x7f\xd1\x5e\x49\x5c\xc3\x85\x8c\x1b\xe2\x3d\x75\x6f\xe2\xde\x88\x83\x2c\x3e\xa1\xc1\xa2\x41\x93\xc8\x67\x99\xc8\xd3\xd0\xe4\x92\x28\xa4\xab\xf1\x00\x08\xc6\xa5\xf3\xb8\x3d\xb2\xea\xee\x9b\x54\xa3\x74\xa2\xf3\x19\xe6\x84\x74\x6e\xfb\xb5\xea\x8d\x12\x79\xeb\xd6\xa2\x35\xe2\x8f\xcd\xb5\x19\xe5\x62\x5c\x13\x2c\x4e\x2d\x7a\xdc\x58\x10\x72\x5d\x94\x5b\x2f\xf0\xbe\x22\xdc\x6d\xf6\x72\x59\x22\xf8\xa5\x39\x00\x80\x20\x57\xda\xc1\xf9\x2e\x5b\x31\xf0\x93\xf2\x4d\x4a\xee\x7b\x88\x89\x95\x5c\xe8\x69\xa9\xba\x24\x09\xed\x4a\x2b\xbc\x20\x6e\x69\x7f\x93\x31\x45\xec\xda\x6a\x88\x4b\x16\x49\x9a\x73\x43\x5a\x84\x8f\xac\x67\xbd\x3b\x85\xc1\x75\x4b\x5c\x3c\x05\xb9\xda\x6b\x00\xf0\xaf\xc8\x00\xcd\xd2\xfc\x02\x32\x82\x6b\x68\x7a\x57\xf5\x00\xfa\xc7\x3a\x09\xea\x54\x7a\xa4\xc1\x17\x1e\x9a\xfd\xa4\x2e\x15\x29\x4f\xa6\x98\xab\xd0\xff\xad\x7f\x62\x54\xe3\x10\x81\xce\xfa\x6f\x84\x9d\xee\x58\xbd\x3f\xa9\x69\x6a\x6b\xad\x0f\xa5\x1b\x00\x45\x0a\x7b\x06\xcd\xbd\xd9\xa3\x9a\x8d\x8b\x68\xf2\x86\x52\xa0\xdb\x1b\x23\xe0\x55\xa5\xac\x7a\x32\x32\x3f\xbb\xd3\x32\x8a\x46\x27\x47\x98\xae\x61\xad\xeb\x77\x18\xa7\xe2\x6f\xad\x7e\xa3\x57\x10\x9f\xb8\xe3\x74\x07\xc8\xca\xa9\x87\xb5\xc7\xa9\x69\x00\x28\x66\xb2\x57\x52\x9b\x6c\x79\x30\x0a\xf6\xbc\xb5\x10\x11\x0a\x2d\x6b\xc0\x20\x5f\x94\xfa\xd5\x1d\x47\x77\x67\xe7\x5b\x66\x60\x25\x9b\x3e\x9b\x62\xf0\xdc\xf5\x02\x03\x9f\x28\x59\x7d\x55\x3f\x9d\x9c\xe7\x8e\xd1\x25\x51\x0e\x4d\xbd\xab\xcd\xa4\x6d\x01\x40\x7e\x8a\x6d\xa0\xe0\xad\xc7\x30\x68\xcc\xa9\x86\xd7\xd8\x0b\x35\xac\xfa\xe5\xf8\x25\x25\x10\x0b\x97\x20\xcc\x1a\x36\x5d\x22\xfe\xde\x54\x6d\x74\x25\x5b\xd6\x3b\xea\xab\xa8\xa1\xab\x45\xb5\xbf\x69\x06\xf7\x9a\xda\x68\xfa\x80\xb3\x8b\x26\x9a\x69\x07\x80\xdc\x8d\x73\x87\x7c\xb8\x31\x9a\x74\x18\xfd\xb4\x9e\x45\x3e\x5b\xcd\xb3\xec\xa5\x8c\x17\x73\xcd\x4b\xa9\xc3\x5b\x1e\x19\x15\xb4\x43\x49\xdb\xf4\x7f\xd3\xff\x8d\x22\xeb\x22\x98\x0b\x57\x07\x6b\x5f\xb0\xfc\xdd\xf3\xb5\xde\x6c\xe0\x1c\xaf\x76\xe3\xac\x06\x40\x96\xc5\x2b\x27\xb1\xeb\xbf\x30\xf7\xa3\x4e\xd6\xf9\xb1\x56\x57\x31\xcc\x70\x96\xa1\x48\x65\x7c\xc4\xf6\xda\xe2\x62\xc8\x61\x1f\x49\xfc\xaa\x9b\xe0\xd0\x23\xaf\xd7\x2e\xe2\xae\x0b\xb8\xa2\xb9\xcb\xfd\xcf\x3d\x5e\xe3\xca\x33\x3b\xb3\x94\x6f\xf9\x61\x00\x48\xd9\xfc\x3b\x84\x1d\x75\x53\x24\xc1\xc8\x48\x33\x54\x32\xaf\xd2\xd3\x78\x56\xfc\xba\xb0\xc8\x90\x2d\xbe\x96\x39\x49\xf7\x97\xf8\x6c\xe2\xcc\xda\x34\xf1\x85\xc8\x05\x9a\xa3\xe2\x7b\x01\x99\x6a\xa9\xf8\xab\xbb\x83\xaa\x43\x12\xe6\xdc\xaf\x40\x89\xbd\x00\x90\x60\x84\xfb\xf1\x4b\xcc\xdb\x75\x74\xf8\x49\x93\x67\xed\x68\xc5\x88\xa1\x47\x7b\xb1\xc0\x5d\xbf\x42\x3b\x6b\xf3\x8b\xda\x1d\x9a\xbc\x84\x79\xda\x68\x75\x67\xc4\x26\xf5\x49\xf5\xa4\x55\xdb\x54\x62\x95\x66\x49\xbf\x52\xad\x5a\xed\x3c\x2c\x5f\x2f\xc3\x02\x20\xd6\x89\x63\xb0\xf7\x4c\xb7\xad\x2a\x18\xc3\x98\xd2\x18\x5d\x2e\xd2\x1f\xad\xbf\x9d\xf7\x45\x57\x58\xc7\x49\x7f\xa1\x7d\x66\xf1\x8f\x5f\xab\x11\x99\xee\x87\x2b\xd4\x0b\x8d\x7b\x56\x39\x29\x2f\x18\x2e\x2e\x71\x50\x1c\xd7\x4d\x73\x66\xcb\x0a\x94\xb3\x00\x10\x3d\x93\x50\xb1\xa1\xa6\xea\xd6\xff\x41\x1f\x18\xfe\x69\x29\x2a\x7b\xa7\xc7\xd8\xf6\xe6\x31\x6a\x7f\x35\xf9\xa6\x73\xb4\xb5\x8d\x0d\x71\x57\x35\x2b\x1a\x16\x84\x87\xab\x4e\xd6\x5d\x58\x79\x48\x89\xb3\xf8\x2d\x3e\xaa\xc8\x33\xcc\x74\xae\x90\xde\x56\xad\x04\x40\x54\x2b\xf9\x07\xd3\x6d\x7c\xd7\x55\x07\x85\x18\x84\x1d\x2f\xca\x04\x7a\xd7\x76\xbf\xbc\x79\xb5\x2d\xad\x98\xf4\x55\x5a\xbf\xe6\x3d\x71\x06\xf5\x11\xdb\xa2\xf0\xc9\xaa\x72\x6b\xcb\xca\x06\xc5\x87\xfa\x6b\x8b\x3b\xe4\x87\x8c\xa3\xce\x18\xe9\x1a\xb5\x3b\x00\xa2\x69\xd2\xf8\xea\xfb\x83\x4e\x95\xa4\xd2\x03\x7d\xe9\xd5\xcc\xbc\xb9\xdd\xdd\x50\x66\xfa\xad\xce\x25\x70\x75\xc2\x9c\x36\x0b\xf2\x70\xe4\xb9\xe6\xef\x98\x59\x41\x8c\x26\x01\x0e\xeb\xed\xd4\x28\x27\x0c\xcc\xe1\x36\xbc\x26\x6d\x99\x74\xcb\xb8\x8c\x86\x07\x40\x25\xe2\x78\x54\xb7\x0e\xa4\x54\xbf\x2b\x55\xf4\xea\xa0\x67\x72\x5f\x75\x3d\x87\xdb\xd2\xc7\x3b\x28\x48\x7a\xfc\x9b\xd6\x1f\x68\x6a\xe4\xd6\x66\x2c\xd6\x10\x04\xb3\x7e\xc3\xef\xf2\x76\x6a\x9c\x4c\xdc\x35\xa7\xbe\x01\x4b\xf6\x72\x00\x86\x43\xb4\x97\x00\xa8\xa2\x39\x8b\xaa\xb3\xfb\x35\xb0\xe6\xd2\xe4\x9e\x2b\x88\xf4\xdc\xf1\xae\x40\xe4\x8b\x74\x5e\xfb\x19\xb4\x21\xfe\x68\x6b\x19\x16\x12\xa9\xb1\x5d\xc7\x6f\x0e\x4a\xb7\xa2\x89\x71\xde\x93\x1a\xf8\x64\xe7\x39\xa3\xf5\x77\x29\xf1\x0e\x7e\x86\x64\xfa\x79\x00\x94\x2f\x38\x35\x55\xa4\xde\x37\x18\x8f\x12\x43\x37\x04\x5b\x93\xeb\xde\xf1\x00\xd7\x95\xf6\xa3\x4d\x44\x70\x8a\xcf\x6f\x59\x4a\x54\x44\xae\x6d\xea\x21\x7b\x04\x39\x37\x26\x50\x0e\x2c\x7b\x52\x5f\x42\x5b\x36\xe7\x5a\x5d\x0f\x7d\x81\x03\x51\x1f\xc2\x0a\x00\x40\xb9\x82\x4b\xaf\xfc\xd9\x43\x24\x5e\x28\x01\x9d\x9f\x48\xf7\x72\x08\xed\x12\xf2\xa5\xb4\xca\xd6\x10\xca\x9d\xb8\x2b\xb6\x07\x34\x10\x71\xcc\x4a\xa0\x87\x05\xee\x6c\x70\x61\x50\x97\x9d\xae\x0b\x64\xb6\xce\x79\x6f\x29\x67\xe1\x1c\xf6\xeb\xa6\x72\x2e\x01\xa0\xc8\xe2\x5d\xae\xcc\xea\x5e\xc6\xf0\x2d\x4e\xe8\x18\x60\xec\xcd\xde\xdb\x16\xc5\x8c\x49\xdd\xdf\xfc\x85\xf9\x32\x2e\xa1\x69\x8c\xb5\x35\x62\x73\x63\x12\x5b\x12\x58\x52\xf7\x8c\x53\xb1\xac\xcd\x32\x85\x9b\x31\x77\x8a\xd9\x83\x37\xd9\x71\xba\xf6\x01\x3f\x17\x00\x39\x49\xe0\x57\xb1\xbd\x13\x2d\x6c\x2e\x9a\xdd\xf6\x41\x38\x91\x75\xa3\xa5\x41\xb8\x3f\xe5\x9d\xad\x52\x78\x67\x63\x9d\xd5\x5b\xe4\x12\xbe\xaf\xfe\x9c\x28\x6b\xf5\x1b\x0b\x4f\xd4\xb5\x8c\x64\x52\x8a\xbd\xe7\xfa\x1b\x61\x62\xb9\x23\x46\x53\x24\x92\x02\x20\x4b\x11\x9e\x29\xdf\xde\x7e\x43\xbd\xb3\x70\x61\xab\x4e\x1d\xb3\xe5\x63\x73\x9a\x6a\x67\x8a\x6f\xd3\x12\x55\x5c\xec\xfd\x86\x57\xca\x7f\xc2\x7d\xea\x3a\x95\xc6\xd5\x64\x33\x42\x59\xb1\x6c\x95\xb1\x5c\x29\x99\xbb\xcc\x30\x5b\x11\xeb\xd8\xaf\xf6\x96\x7a\x03\x20\x85\x8a\x1d\xcb\x8e\xb6\x8d\x59\x5e\x17\x2c\x6f\x11\x9b\x1f\x6c\x99\x64\xcb\x30\x5d\x49\x4e\xb7\xfa\x1a\x1f\xc6\xfa\xd4\x7f\x36\x3a\xaf\x63\x5b\x4e\x18\x36\x07\xbc\x30\xd9\xf4\x17\x97\xee\x37\xa8\x74\x47\xe7\xdc\xd0\x2f\xd6\x38\x3b\xee\x56\x05\xca\xd3\x01\x90\x6c\x93\x4c\x2e\xdb\xd8\x16\x6f\x3d\x94\xbf\xb3\x65\x7a\xa3\x2c\xd3\xd6\x74\xb7\x21\x6d\xd3\xcb\xc6\x6d\xf5\x41\x31\xd7\xeb\xc5\x75\x6b\xd6\x85\x5b\x8a\x2c\x45\x01\xdb\x4d\x61\x66\xe3\x52\xb3\x61\x81\xb1\x64\xce\x01\x9d\x49\xdb\xe7\xb8\x5b\x39\xa4\x08\x01\x40\x92\x2f\x81\x97\x5e\x6a\xfd\xbb\xe5\x57\x7e\x5e\xb3\xad\x79\x28\x33\xa5\x09\x69\x2b\xd8\x34\xd4\x18\xde\xe4\x1b\xd3\x5e\x6f\x67\x9d\xbf\x6e\xa6\xf9\x76\x63\x60\x80\xd5\xb8\xbb\xbe\x71\xa9\x42\xaf\x34\x33\xe7\x1c\xab\x7d\x58\xfb\xc7\xf1\xbe\x72\x92\xd2\x09\x00\xf1\x55\xc9\xb1\x12\xe9\xf8\xe4\xca\x4f\xb9\x6d\x23\x8b\xab\x6f\x6d\x5e\x3b\x18\x09\xdd\x91\x98\xdd\xc7\x86\x0f\xaf\xff\xd2\xbd\x17\x79\x2e\xc4\xa7\xe3\x29\xc6\x71\x45\x6a\x5b\x34\x2e\xd5\x1d\xd6\x12\x43\x20\xce\xdc\xd1\xec\x4b\x8a\xb0\xa3\x9b\xfe\xa2\x97\x02\xa0\x96\x70\xd8\x25\x55\x63\x89\x35\xe5\xb9\xc2\xe1\x0a\xd8\xec\xcd\x0b\x06\xe4\xf0\x23\x89\x11\xbd\xd7\x90\xb2\xf5\x8f\xba\xbd\xd0\xf8\x90\xf9\x1d\xb9\x58\xc6\x8a\x4d\xad\xe3\x78\x85\x3b\xae\x79\x27\x91\x38\xf3\xa6\xcd\x46\xfa\x66\x57\x67\xc2\xd0\xf7\x01\xa0\x8e\xe0\x60\x4b\xd6\x8e\x4a\x60\xef\x73\x0b\x86\xda\x11\xbc\xf4\xb7\xfd\x97\x91\x7f\x12\xdd\x7a\x57\xa0\xb5\xeb\x8f\x77\xf1\xb1\xa9\x21\x76\xed\x7b\xf1\xbe\x2b\xa2\x5a\x17\x11\xa7\xb8\xd3\x9a\x97\x91\xf6\xcd\xfc\x64\x03\x94\xb9\x76\x3b\x8c\xaf\x18\x42\x00\x54\x0f\x38\x03\xc5\xdd\xc3\x6f\x30\x41\x39\xd7\x07\x03\xb0\x65\xe9\xfc\x3e\x06\x4e\x92\xb0\xa3\xfb\x0e\xfe\xee\x7a\x7a\x67\x34\x31\x77\xed\x89\x36\x31\xe9\xe1\x8a\x79\xcd\xff\x52\x68\xee\xa4\xa6\x57\xd4\x4b\xb3\x56\x5a\x77\xd2\x5e\xda\x7d\x37\x5c\x61\x75\x03\xa0\x72\xe5\x0e\x15\xc7\x0c\x95\x13\x4f\xe7\x94\xf6\xef\x21\x8d\xa5\x7d\xef\x75\x27\x2b\x13\x36\x76\xe9\x28\x86\xf5\x73\xda\xbf\x53\xb7\xaf\x65\xb4\x26\xd2\xfe\x5d\xfe\x8f\x6d\x90\xb1\xd4\x9d\x6c\xed\x63\x66\xce\x2a\x6a\x2c\x62\x65\xd8\x67\xea\xbb\xb9\xb3\x00\x50\xae\xe6\x7d\x29\x62\x0d\xba\xd0\xf7\x66\x6f\xeb\xc3\x32\x12\xd3\xb0\xdd\xd7\x19\xe7\xe2\x8f\x77\x66\x31\xf9\x51\x03\x6d\x27\x59\xe9\x6b\xbd\x5b\xe6\xb0\x3d\x97\xf7\x36\xd1\x39\x76\xee\xa8\x46\x0c\xd7\x6e\x96\xa0\xc1\x8e\xfb\xd3\xbe\x57\xc7\xe5\x57\x02\xa0\x48\x12\x24\x14\x2a\xfa\x8b\x05\x37\xb3\x5e\xf7\xec\x10\x3c\x49\x3d\xd1\xe5\x27\x78\x15\xbf\xaa\x7d\x5c\xe8\x1e\x15\xd8\x1a\x20\x84\xaf\x39\x62\x53\x0b\xf7\x2d\x47\x36\x7e\x11\xad\x70\x47\xd4\x9f\x17\xfd\x35\xeb\x4c\x9d\x8f\xd8\x71\xd2\x1c\xed\x5b\x51\x2c\x00\xf2\x85\xc2\x23\x05\xe7\x7b\xc7\x54\xe2\xac\xf0\xee\x48\x95\x5d\xaa\x47\xc7\x19\x25\x37\xae\xa9\xad\x50\xe9\x13\x39\xd2\xfc\x40\xf1\x72\x4d\x51\xd3\x66\xc5\xd1\xe5\x8b\x1a\xce\x2a\x8e\xba\x67\xd6\x29\x94\xae\xb3\x3e\x98\x87\xe4\xc1\x93\x2a\x35\x7b\x25\x66\x00\x64\xab\x45\xff\xcb\x7f\xde\x23\x31\xaf\xda\x02\xef\x9a\x67\x0a\x48\x81\xb4\x8f\x18\xd7\x6c\x7c\xdd\x1a\x67\xc0\x47\xce\xb7\x5d\xd2\x9f\x0f\xfe\xcb\x9a\xaf\xcf\xf6\x1f\xab\x7f\xa1\x9f\xee\x3e\xc9\x62\xad\x95\xce\xba\x67\x52\xa9\x74\x93\x94\xea\x23\x32\x19\x00\x52\x91\xf8\x64\x3e\xbb\x67\x66\xc3\xc9\x2d\x8e\x9d\xd6\xfa\xe6\x94\x19\xed\x01\x75\xec\x8d\xdd\x2d\x87\x2d\x96\x88\xbb\xb6\xcd\xe6\x1b\xc1\x5d\x8d\x7f\x9b\xb7\xf8\x2b\xeb\x19\xa6\xc2\x25\xaf\x2c\x8b\xf5\xe7\x66\xdd\x35\xbe\xd1\xd8\x4d\xea\x57\xaf\x97\xc3\x01\x90\x7a\x48\x02\xf3\xe7\x77\xb7\xd9\xae\x66\xee\xe8\x74\x6f\x32\x25\x5f\x68\xeb\xb3\x96\x6c\x24\xb7\x84\x36\xc2\x22\x76\x34\xed\x6b\xe8\x09\x56\x36\x66\xd6\x9f\xf4\x67\xd7\xbd\xae\x03\x4b\xde\x9a\xb9\xc6\xa1\x59\x5f\x8c\x81\xda\x98\x49\x7f\xa9\xea\x14\xcb\x01\x90\xb4\x4a\x64\xb9\xb4\x1d\xfe\x55\xfc\xcd\xb6\x09\xdf\x9a\x90\xa4\x94\xb1\xd5\xd0\x27\xd1\xad\xc3\xf9\xf0\xfd\x61\xaa\x01\x3e\x72\xef\x6a\xc7\x5e\x03\xfa\x86\x37\xa7\xeb\x1e\xf6\xe3\xfc\xaf\x9d\x93\xf1\x1f\x9d\xb7\xb7\x55\x92\x52\x00\xb0\x14\xd0\xef\x02\xa0\xa9\xe6\x98\x72\x71\xdb\x21\x35\xb7\x37\x1b\xb7\x22\x61\x95\x49\xeb\x47\xf9\xf0\x47\xd1\xe6\xa1\x51\xa4\x22\x4c\xdc\x7f\x0f\x9d\xb3\xda\xa9\xe7\x33\x36\xc6\x5b\xd6\x95\x8c\x0f\x58\xe0\xd2\x41\x24\xbc\x77\xbe\xd5\x7a\x81\x0c\x00\x30\x3f\x65\xac\x01\x40\x33\x9b\xc3\xcf\x2d\xdd\xd6\x00\xaf\xda\xcc\x19\x1f\x46\xec\x4f\x5a\x36\x72\x0e\xe5\x16\x2d\x18\xb2\x43\x4b\xc2\xc8\xfd\x11\x58\xef\x80\x9f\x3d\x05\xb8\x27\xde\xf2\xce\x01\x42\xdf\x02\xdf\xf6\x0b\xa4\x18\xe7\x6f\xad\x2b\x29\xf3\x01\x30\x43\x18\x0f\x01\x50\x6f\xe5\xec\xca\x5d\x34\xe1\x88\x41\x6d\x5e\x33\x16\x84\x25\x24\x5e\x1b\xae\xc1\xd1\xa2\x37\x0c\x0c\xe0\xf7\x84\x45\xf7\xbe\x21\xba\x07\xdc\xee\x9e\x4d\x6a\xf0\x66\x76\xc0\x28\x73\x16\xac\x6f\xe3\x52\x4b\xa7\xad\x6d\x3e\x47\xfb\x02\xd6\x98\xc2\x59\x0f\x01\x50\xdd\xe0\x4e\xe4\x1c\x1b\x2f\x25\xfe\x48\x3f\x3f\x32\x4e\x1a\x49\xa4\x0e\x4d\x21\xd7\x6c\x78\xd1\x5f\x44\x29\x0b\xfd\xd1\xd3\x43\xa5\x06\x0c\x76\x9e\xa3\x59\xbd\x6b\xda\xe7\xd3\x8f\x2e\xc8\x6c\xf5\x64\x3c\x99\x06\xb7\x95\xb0\xa8\x80\x6a\xf8\xc9\xf5\x07\x40\xf9\x8c\xf7\x2d\xfb\xd1\xd8\x2c\x7a\x7d\x7a\xd8\x30\x94\x31\x2b\x71\xd6\xc0\x01\x86\x62\x83\xa9\x6f\x1e\x33\x24\x74\xa2\x1b\xc5\xfc\x15\x40\xeb\xd0\xb2\xce\x7a\x6f\x6a\xbd\xca\xee\x5e\x50\xdc\x7c\x8e\xd3\x3b\xcd\x6a\xfd\x8f\xe7\x0c\x76\xe8\x2f\xf2\xf3\x01\x50\x02\x41\x4c\xb6\x75\x24\x47\x80\x4d\xbb\x39\xd8\x2e\x40\x26\x74\xf4\xfd\x14\x94\x6f\x08\xed\xa9\x10\x98\x42\x11\x9d\x7b\x04\xff\x06\xc4\xb5\xbd\x16\x26\x7b\xaf\x6d\x89\x14\x1e\x5b\x20\xb2\x4d\x16\x69\xa6\x83\x86\xcf\xa2\x3a\xbb\xf9\xba\x08\xe1\x4f\x00\xe4\xa7\x85\x7d\xd9\xcb\x86\xd4\xca\x7d\x69\xd5\x03\x53\x94\x3e\x09\x21\xbd\x4a\x85\x79\xfd\xb5\xae\x77\x8a\xcc\xd0\x05\x1d\x79\x8a\xe0\x00\xa7\xd6\x46\x85\xaf\xf7\x6c\xdb\x5b\x45\xf6\x02\xb3\xb5\x55\x51\x36\x7d\x73\x7d\xa5\x2c\xdd\x0e\xa6\xfd\x25\x59\x02\x80\xec\x6f\xd1\xee\xac\xb4\xc1\x7c\xe3\x93\xd4\x89\xbe\x73\x86\x07\xf1\xbd\x3d\x69\xfa\x37\xeb\x73\x3b\xf7\xea\xd3\x43\xfa\xdb\xbd\x75\xb7\x56\xf5\xb4\x88\x75\xd6\x65\xc7\x9a\x3e\xe9\x02\x17\x60\x1b\x0d\x5a\xdf\xe9\x90\x3a\x2f\xe5\x16\xbb\x7a\xad\x9d\xf4\x01\x00\xb2\x00\xb1\x79\xcb\xeb\x81\x9b\xf5\x19\xa9\xd0\xbe\xb8\xba\x65\xf1\xc8\xee\x1d\x96\xe9\xeb\x3d\x3b\x7d\xcd\x99\x21\xbc\xb6\x5a\xd3\xb9\x55\x92\xe6\xcf\xa6\xf2\x65\x03\x4d\x54\xa3\xcb\x02\x44\xa3\xbd\x6e\xe5\x74\xaa\x85\xa1\x6a\xb7\x9b\xd0\xb0\x65\xa3\x00\x48\x2f\x8b\xdf\x6e\xb1\x0e\x94\x35\xad\x48\xf5\xeb\xdd\xd5\xf8\x22\x3e\xaa\xdb\xbd\xe1\x58\xd4\xaf\x0e\x45\x83\x5d\x08\xa2\xf5\x45\x3d\x63\x15\xad\xb9\xa8\x0e\xbe\xac\xdf\x7a\xd7\x8c\x58\xc0\x6d\xc8\xd1\xdf\x9c\xde\x66\x1e\x56\x1f\xb5\xbb\xaf\xbe\x29\xaf\x04\x40\x9a\x2b\x09\x9d\x18\x82\xce\x28\xa4\xf5\x6e\x83\x19\x4a\x70\x4d\x49\x88\xc9\xe5\xf9\xb5\xb3\x91\xbd\x95\x35\x02\x27\x74\x79\x8d\x9c\xe8\x87\x5d\x07\x97\x43\x9e\xe3\xfd\x51\x96\x8c\xa7\xc4\x15\xd8\x5b\x91\x6a\x32\x20\x3c\xf4\x1a\x25\x9f\x21\x4f\xb5\x2b\x62\x91\xa9\xdb\xb7\xee\xad\xce\x2e\x55\xf4\xdc\xad\xf9\x5d\xb1\xcc\x2a\x82\xf5\x56\xee\xd4\x56\x23\x70\x35\x14\x3e\x1a\x95\x01\x4f\x20\x34\x63\x52\x90\x1f\x20\x14\x5c\x09\x66\x24\x83\x47\x60\xe1\x8d\x91\x01\x24\x18\x29\xda\x8b\x48\xf6\xa5\xcc\xb0\x4b\x64\xad\xa0\xb1\xc6\xf7\x57\xb6\x43\x0e\x75\x7f\xab\x26\x57\xfd\x69\xdc\x06\x4d\x81\xc6\x6a\xfa\xe0\xeb\xe0\xa3\xbc\x93\xc8\xf5\xa8\xd5\x84\x99\xe8\x42\x8c\xba\xe2\x07\x56\x81\xfb\x90\x31\x17\x7f\x98\xc8\x8a\xf8\x8b\x78\x80\x7c\xc6\x6b\x3d\x89\x4c\x4d\xb1\x8b\x66\x5e\xa2\xd3\x47\x8f\x97\xeb\x90\x9c\xae\xe5\x90\x66\xf4\x92\x06\x97\xaa\x93\x98\x56\xf5\x9a\x9a\x0f\xb8\x0a\xae\x00\x1e\x42\x58\x83\xfb\x80\x94\x13\xdf\x55\xb8\xa2\x5f\x92\xf7\x6e\xce\xc0\x65\x52\x55\x11\xa1\x84\x1a\xba\x9f\xe7\x3d\xc2\x77\xc6\x62\xbb\x54\xe6\x54\xe6\xd8\xf0\x70\xc9\x7e\x52\x65\x07\xb4\xdc\x81\x5c\x51\x47\x84\x54\x50\x92\x94\x07\xaa\x8e\x53\x4b\x39\x51\xd0\x8d\x34\x31\xf6\x36\xfc\x04\xbd\xa5\xdc\x0f\x55\xc2\xd8\x93\xae\xc5\x3c\x64\xde\x0d\xef\xc4\x4f\x65\xdd\xf4\x34\xe2\x59\xec\x4d\x76\x42\x46\x30\xfb\xd7\xe0\xed\x22\x77\xf6\x89\xb6\xc6\x92\x76\xce\x0a\xf3\xe5\xf2\x10\x4e\x91\x22\x15\x72\x9e\x73\x80\xf5\xa9\x9a\xcd\x5d\x8b\x39\x0c\x0b\xe0\x36\x97\xc5\x22\x9e\xf3\x9c\xd2\x2e\xa3\xf5\x3c\x4a\xb8\x1b\xf6\x38\xef\xb8\x27\x0c\x37\x99\xd7\x67\xb7\x8b\x8e\xe2\x05\xf5\x3b\xe5\x17\xaa\x04\x2d\x53\x0a\x5f\x28\xaf\x1b\x21\x25\x6a\xa5\x97\x6c\x66\x79\x91\x82\xce\xf8\x5c\x19\x29\xbf\x8e\x76\xa8\x71\x97\xfb\x94\x5c\x86\x4f\x95\x61\x53\xc7\x91\xd7\xa5\x5b\xd7\x65\x61\x16\x49\xde\x79\xce\xc7\x64\x48\xbc\xed\x7d\x69\x34\x61\x48\x0f\x39\xe7\x81\x75\x59\x53\x53\xfe\xd9\x86\x22\xbd\x4f\x51\x47\x5d\xab\xf8\x4f\xa9\xd1\xfc\x0f\x7d\x49\x45\x9d\xc9\x07\x59\x53\xd5\x62\xc8\x2e\xa6\x40\x07\x75\xa4\x94\x26\x84\x51\xab\x0e\xd3\xa0\xfe\x51\x1f\xf6\xd8\x85\xf6\x55\x25\xd9\xe3\xa9\xb7\xc5\xff\xeb\xea\xcb\xa6\xf4\xc7\x35\x5e\xce\xa3\xf4\x0c\xd4\x16\x16\x52\x3a\x7f\x8a\x52\x4b\x48\xed\x29\x54\x61\xb9\xa4\x45\x0a\xff\x58\xd9\xdc\xd4\x59\x14\x5e\xb3\xbb\x61\x38\x79\x10\x3e\x66\x39\x14\xfa\x1e\x35\xd9\xe4\xef\x41\x42\x41\x75\x36\xfb\x1d\x54\x94\xcc\xb5\xf3\x46\xf6\xa2\xb1\x8a\x46\xb7\xbc\x99\xc3\x95\xda\xc1\xc2\xa9\x03\x49\xc2\xae\x12\xa7\xde\xe5\x94\x27\xe5\x0b\x3a\x3f\xc1\xd1\x95\x6b\xda\x6c\x85\xc7\x6a\x32\x9b\x57\x25\x17\xc2\x93\x1b\x2f\x84\x9e\x44\xb6\xd4\x3d\xf5\xc0\x22\x7f\x1a\x06\xed\x9f\x51\xbd\x64\xf7\x3b\x13\xb3\xee\xef\x10\x36\x58\x72\x8f\x4d\x84\x6a\x23\x0a\xc6\x46\x8f\x09\xc3\x8b\xbb\x87\x72\x29\x82\xb2\xd1\xbe\x63\xf0\xb9\x90\xa3\xdd\x8e\x85\xfc\xea\xbf\xdb\x57\x25\xaf\x81\x5d\x6a\x86\x85\x9e\x44\x7a\x34\xbe\xf2\xa8\x43\x72\x4d\xfe\x93\xa2\x29\xbb\xe4\x39\xa3\x39\xf0\xa3\x85\xf9\x9d\x17\x91\xa0\xa4\xb0\x7e\x04\x95\x52\x1e\xa5\xba\x82\x1e\xaa\xcc\xe4\x7a\x61\xfd\x6a\x18\x38\x2b\xee\x24\x9c\x57\xbe\x9f\xc0\x41\x99\x37\xcf\x22\x45\x60\xff\x8e\x98\x45\x3e\x45\x78\xee\x79\x91\x92\x49\x5e\x63\x57\xc4\x6a\xa3\x85\x8e\x60\x61\x53\x4a\xb3\x3a\x7e\xc1\x19\xe5\x9f\xea\xde\x23\xfe\xad\x54\xa9\xfc\x50\x8c\x9a\xcd\x1c\x31\x66\x31\x7c\x29\x6e\x36\xf6\x3e\xf2\x4e\x79\x12\x7e\x1b\xa6\x39\x7d\x90\xa8\xc1\xab\xc2\x8f\x93\x03\x49\x71\x9e\xf5\xe4\x6d\x94\xd5\x76\x29\xac\x62\xda\xab\x61\x76\x4d\x31\x84\xd8\xb1\x0c\xfa\xb1\x6a\x6f\x5d\x00\x5c\x03\xb5\x53\x12\x91\x89\x70\x26\xfb\x31\xda\x05\xf9\x0b\x2b\xc5\xbc\xc3\xd4\x94\x5d\xc1\x3d\xc5\xdd\x4c\x4f\x22\xdc\x20\x22\xc2\xa9\x24\x0d\xf9\x94\x27\x9a\x3c\x99\x0a\xb7\x8b\x63\x39\xd2\xef\x0f\xf2\x2b\x71\x48\xd0\x96\x5e\x1d\x85\x9a\x30\x4b\xa1\x7e\x98\x0d\xf2\xef\x70\x57\x9c\x03\xab\x0d\x39\x1b\xff\x10\x83\x41\xaf\x20\x8e\x95\x3e\xc3\x66\x91\xe5\x69\x52\x3c\x9a\x8a\x58\x77\x87\x18\x41\x5f\xec\xb9\x90\x68\x65\xac\xb5\x2b\x61\xc6\xb3\xa6\xf6\x4b\xcb\x5b\x88\x7b\x5b\x74\x90\x11\xd2\x5f\xc6\xe7\x55\x17\xc8\x57\x64\xea\x9a\xff\x28\x6f\x98\x10\xb8\x0f\xcd\x0b\x9d\x8f\xc4\xd1\x53\x4b\x01\xfa\x28\x83\x95\x7a\x01\x67\xcf\x1c\x5b\x97\x86\x7f\xcc\x3a\xec\x71\x97\xe0\xc9\x2e\xb4\x6b\x60\x60\x38\x69\xbd\x1d\xa5\x4b\xd9\xf3\x6c\xa7\xcb\xcb\xd9\x5a\x43\x06\x64\x9c\x7d\x51\xba\xa8\x1a\x70\x36\x30\x3c\xa1\x35\x9c\xbd\xa8\x58\xf8\x4d\xee\xba\x92\xc5\xa8\x3c\xee\xf6\xd4\x85\x98\x6d\xbc\xc8\xb0\xeb\xb8\x4e\x5e\xaf\x47\x1f\x6e\x07\x6f\xdc\xee\x01\xbd\x85\x47\xea\x9e\x5c\x14\xa3\xa4\x5b\xb3\x4b\xba\x14\xaf\x6b\xdf\x97\xcf\x55\x14\x89\xde\x43\xcc\xf2\xfd\xb4\xa0\xea\x15\xf2\x00\x84\x09\x7a\x51\x66\x29\xda\x83\x60\x4a\xbf\xa6\x38\xa0\x7e\x4a\xcb\xc2\x16\x60\x7e\x48\x0e\x78\xf0\x31\x7f\x24\x8b\xed\x2b\x69\xad\xc2\xf2\x0e\x64\xfe\x97\x86\x1b\xf5\xef\x8b\x2c\xf5\x7e\x9a\x73\xa5\x6b\x2c\x26\xc1\xc7\xf2\x6b\xa6\x57\x94\x9a\x4a\xa5\x71\x13\xec\x77\x4d\x96\xde\x54\x88\x80\x2f\xaa\xbd\xba\xe9\x2b\x72\x8f\x76\x56\x68\x19\xfa\x98\x1a\xe7\xe1\x83\xbe\xae\x9a\x67\x3f\x4e\xfd\x26\x7e\xdf\xc6\xcc\x33\xf4\xb6\xd5\x39\x17\xa6\x76\x87\xaa\x3e\x94\x38\x76\x6c\xe3\xc7\x96\x6d\x6f\x5b\x48\xba\x06\x61\x35\x53\xa0\xd6\xea\x1c\xeb\xce\x82\x75\xb0\x80\xfa\x67\x9b\x5c\x10\xb7\x2d\xde\x21\xa7\x50\x4f\x8d\x5b\xdd\x9f\xa0\xa7\xe9\x62\xed\x7f\x52\x45\xb2\xb9\xad\x03\x79\xeb\x46\x3a\x2d\x69\x05\x4f\x06\xaf\xaa\x62\x8b\x9b\xfb\xfe\xe1\x35\x96\xa5\x75\x3f\x22\x45\x41\x66\x74\x9c\x87\xce\xad\x7a\xd6\xda\x9c\x7f\x12\x7a\xc4\x56\x90\x74\x08\x41\x6c\xf4\x0a\x69\x45\x31\xeb\x20\xee\x8f\x51\xed\x86\x8d\x93\xd6\x52\x43\x65\x77\x5a\xe7\xe5\x7e\xd9\xb6\xcd\x7c\xac\xc0\x3a\x6e\x51\x1e\x2b\x8e\x1b\xc9\xe0\x2d\x2f\x7d\x36\xf0\x8b\xf8\x77\x45\x4f\x6f\x6d\xcd\x91\x2a\x56\xe7\xb7\x7c\x05\x74\x4b\xdb\xe6\x24\x1b\xfc\xb3\x6d\x2c\xc4\x86\xfc\xda\x98\xe3\x31\x1d\xb5\xd0\xb8\x63\x92\x92\x72\x40\x9e\x3a\x70\x1c\xd5\x50\x18\xd1\xba\x15\xdd\x58\x12\x6b\xfa\x1b\xb3\xab\x7c\x89\xbc\x10\x7b\xaf\x32\x8c\xf9\x0d\xbf\xbc\x06\x82\x3e\x43\x30\xc3\x91\xa5\xa9\xa4\x39\x28\x71\xea\x1b\xb2\x1e\x7b\x72\x5d\x02\xe5\x7f\x84\xeb\x1e\x22\x6a\x04\x79\x15\xf8\xcd\x5e\x4d\x33\xf7\xbf\x40\x3c\x2c\x5d\xd4\xf2\x2f\x6a\x41\xf9\x49\xd3\x72\x74\x61\x65\xb1\x6c\x1b\x66\xa4\xc6\x9b\x59\x89\xf3\x81\xfd\x40\x27\xe0\xb7\x22\x77\x96\xdc\x24\x66\x61\x04\xa9\x3a\xd2\xbf\x78\xec\x3a\x7b\xca\x66\x92\xbf\x47\x26\xa5\x8b\xb2\x14\xbc\x61\xbd\xa2\x47\xf7\x3b\xc2\x43\x20\x4b\x5b\x66\x23\x5a\xab\xa8\x46\x0c\xf2\x7b\xcd\x41\x99\x3d\x5a\x04\x5f\xcf\x38\x82\xf5\x44\x1e\x45\xed\xc2\x9d\xc5\x04\x97\x54\x12\xe4\xb8\xe1\xd4\x00\xd2\x3a\x62\x7c\xd8\x4e\xf2\x30\xb9\xdf\xc3\x93\xfc\x83\x9a\x0b\xfe\x63\xd9\x18\x7e\xbd\xf6\x35\x44\x84\xd4\xb6\x0e\x66\x87\x4a\xd4\x1f\x84\x6f\x47\x5f\x97\x28\x91\x95\xd8\x6e\x3a\x0f\xbd\x0a\xaf\x40\xb6\x61\xa7\x11\x21\xc5\x0c\xdc\x17\x72\x7c\x0a\x95\x70\x85\x1a\x1c\xe6\x4f\x82\xd0\x3e\xb9\x3f\x24\x35\x30\x3c\xec\xdc\x98\xb7\x58\x09\xdd\xcb\x2b\x3b\x88\x73\xac\x82\x6a\x21\x69\x93\xce\x0f\x8a\x25\x17\x88\x3d\xe1\x9b\x28\x6c\x5a\x3c\x32\x91\xba\x1d\xa1\x45\xe7\xd2\x5e\x14\x99\xb1\x38\x86\x7f\xf2\x51\x3c\x8e\x49\x0c\xed\x23\xce\x64\x59\xdc\xc7\x89\x5e\xec\x18\xbb\x32\xa6\x03\x87\xd6\x19\x5a\x91\xce\xaa\x6a\x38\x54\x99\xc4\x7a\xa1\xd5\x55\x57\xb0\xa3\x85\xdb\xa0\xd5\xec\x71\xea\x64\xb8\x92\x13\x0e\x67\x21\x8f\x72\x8e\x17\x8e\x62\xec\xb8\xb9\xc9\x73\x71\x5e\xdc\x57\xa1\x1b\xf0\x97\x78\x24\x77\x1d\xfe\x30\xaf\xd1\x6e\x80\xb1\x8e\x67\x6a\xbb\x52\x9a\xa9\x40\xd6\x55\x97\xab\xe4\xbf\xd5\xa9\x90\x8b\x72\x05\xbf\xb9\xea\x97\xec\x1b\xd9\x0f\x9a\x2f\x63\x41\x6f\xc1\x0f\x49\xbf\x15\x14\xa0\x02\xa4\xb4\x4d\x53\x30\x38\xc9\x87\x10\x05\x6e\x95\x84\xe6\x0e\xc5\xcd\x16\x7f\xb1\x0f\xa1\xaf\x15\x62\x5a\x56\x16\x47\xd4\xcb\xcc\x2e\xa5\x1a\xcb\x2b\x65\x68\xf9\x07\x33\x9f\x3b\x54\x99\x60\x7c\x49\x84\x55\xef\x32\x94\xd7\x64\xc1\x12\x75\x27\xf3\x5d\x10\x57\x6a\x57\x24\x4d\x42\x07\x68\x54\x6b\x2f\x61\x3e\xa8\x67\xba\xcf\xc7\xbc\x52\x5e\xb6\x57\xd1\x14\xe2\x17\xb6\x39\x85\x77\xba\x3f\x1a\x9d\x4b\xb2\x3a\x77\xc9\x73\xca\xce\xb7\x57\xb1\xbf\x43\xfc\x5a\x1e\xe0\x1f\x56\x0d\xd9\x8a\xab\xbe\x40\x53\x1b\x8f\xe4\x3e\x87\x3f\xad\x5f\x92\xe8\x85\xda\x6c\xe6\xad\x8d\xc2\xcc\x33\x46\x2c\xb9\x8a\x59\x56\x7b\xc2\xfe\x32\xcd\x59\xfa\xb9\x29\xa9\x90\x3f\x74\xdf\x90\x58\xfc\x7a\x60\xbd\xac\xae\x0c\xda\xcb\x60\xe7\x56\x1c\xea\x32\xe1\x33\xaa\xe2\xda\x5b\xab\xa8\x35\x0f\x5a\xea\x73\xb9\x70\x7e\x13\x3f\xe1\x32\xf2\x51\x03\x69\xad\x2b\xba\xc7\xf2\xf7\x92\xab\xe8\x9d\xfa\x5d\x93\x26\x53\x77\xcb\xf6\x5a\x47\x0b\x63\xb6\xde\xd5\xef\x28\x6e\x1b\x7d\x21\x9b\x55\x36\x6d\xe8\x12\xeb\x7e\x05\xa4\xdf\x86\xfb\xaf\xf2\x56\x4f\x56\x95\x4f\x0d\xb9\xe3\x59\x6e\x0c\xdc\xb9\x15\x97\x30\x8a\x44\x37\xfd\x58\x3b\x1d\xed\xdd\xb0\x6f\xc9\x6f\xb4\xaf\xd1\x6f\x52\x19\x35\x46\xee\xdf\x2e\x24\x24\x17\xae\xae\xfb\x4e\xf8\x5e\xe2\xad\x99\x4a\x6c\x2a\x77\x11\x38\x93\x54\x95\x33\xc8\x71\xe4\xda\x1a\x1f\xe8\x1e\x8a\x0d\xbe\x32\xff\x05\x75\x2f\x2a\x29\x69\x39\xed\x24\x96\xbd\x76\x26\x7d\x98\x40\x5b\xf4\x8e\x7e\x8b\xb4\x03\x00\xce\x1b\xba\x7d\xdb\x41\xdc\x8e\x92\xdb\x75\x29\x78\x5d\xb9\x58\x8d\x21\x14\x54\x7a\xf3\x09\x44\x5c\xf5\x35\xd2\x30\xa9\x1e\xd6\x02\x0d\x23\x1f\x43\x16\xe5\xb3\xa8\x76\x18\xbf\xc4\x1b\x34\x7f\xbc\xcb\x9a\xdb\xf4\x65\xc4\x3d\x8b\x2e\xd2\xd3\xc9\x5d\x00\x70\x76\xd2\x1b\x5b\xdf\x62\x57\x56\x8c\x58\x34\xb8\xe5\x55\x53\x55\xc7\xf0\x73\x6b\x20\xbc\x13\x84\x5c\xd8\x31\xd2\x2c\x62\x2b\x32\xbe\x66\x90\xf4\x0c\xbd\x3d\x7f\x12\x25\x16\x17\x91\xc8\xa1\xf2\x08\xd7\xd6\x98\x69\x4a\x72\xd0\xa2\x71\xda\x08\xe5\x0a\x00\x1c\x28\x03\xdf\x7c\x01\xc5\x80\xcb\x4d\xdd\xe8\x41\x64\xb9\xe2\x13\xe6\x2e\x7a\x12\x77\x13\x2e\x09\x73\x8b\x70\x09\x7f\x10\x77\xb2\xda\x4c\x8c\x24\x0c\xe5\x2d\x20\x1d\x24\xb5\x24\x9c\xa1\xf8\x50\x3a\xd7\xac\xa0\x26\xd3\xc8\x8b\xc8\xd4\x42\xba\x09\x00\xf6\x20\x8b\x60\xcb\x83\xef\x21\x4c\x36\x06\x22\x03\x88\xc1\x72\x12\xaa\x95\x94\xc0\x7e\x86\x89\x22\xf3\xf1\xad\xd8\xc7\x94\xf3\x55\x72\xbc\x96\x36\x3f\x37\x9c\xb8\x9e\x8e\x49\xf0\x25\x9d\x60\x5c\x0c\x3e\x45\xfe\xc3\x9a\xb6\x08\x45\xfe\xce\xda\x0d\xc2\x58\x0f\x39\x4a\xeb\x46\x28\x91\xb1\x57\x5f\x02\x9f\xc5\x24\x48\x5f\x23\xea\x98\x8f\x58\x1a\x54\x19\x8b\x83\x43\x63\x42\xd8\xbe\x95\x2c\x9c\x3d\xfb\x7c\x4e\x1e\xfe\x1a\x87\x15\xcf\x26\xf2\xb9\x6b\x83\x6b\x48\x47\xb9\xb7\x16\x95\x90\xfa\x78\xb3\x81\x9c\xb5\x80\xa7\xac\xef\xad\x6a\x95\x25\xd6\x3a\xd6\xe4\xcb\xec\xc5\xbb\x61\xf3\xa5\x5b\x19\x2a\xc4\x0c\x69\x21\xa6\x1b\xe5\x22\x9d\x52\xf1\x16\x33\x53\xb2\x35\xdb\x15\x37\x45\x52\x1a\x27\xc3\x5f\x95\x4c\x0f\xda\x4d\x5c\x26\x3e\xbc\x28\x8a\x38\x4b\x4c\xb2\x5b\xc4\x9c\x23\x4c\xb2\x64\x43\x68\xe6\x5e\xf5\xc5\xaa\x0a\x53\x8d\x70\xac\x26\xc1\xb8\x8c\x36\x02\x2b\xd2\x5f\x41\xfd\x40\xb0\x75\xa2\x72\x2e\xaa\xb1\xd6\x77\xcb\x6d\xcc\x84\xe6\xe4\x46\x09\xce\xac\x46\x05\x4d\xc6\x3f\x53\x45\x2c\x7c\x81\xff\xa2\xf8\x6d\x87\x60\xc0\xc5\x2d\xa6\x89\x8a\xb0\x8e\x33\x2a\xbf\xca\x15\x6d\xdb\xf9\x3f\xab\x7d\x5b\x54\xd4\x85\xd0\x14\x5b\x31\x52\x03\x67\x58\xdd\xcb\x42\x91\x7d\xf5\x97\x33\x8f\xa1\xaf\x58\xf8\xb1\xdb\xb0\x7b\x4c\xc1\x81\x78\xfc\x14\x43\xda\xc2\x1e\x7c\x90\x56\x63\xb7\x9d\x7e\x57\xaa\x36\x5e\x2d\x3f\xd3\x9f\xad\x44\x41\x0e\xf5\xbc\xe5\xe7\x55\x1d\xec\xc2\x52\x78\x35\x0f\xdb\xef\x23\x7e\xc1\x5d\x5a\x63\x4a\x77\x23\x37\xda\x54\x99\x65\x68\x4c\xe3\xc5\x58\x18\x36\xaf\x7e\x71\x60\x34\xae\xc1\x7c\x71\x61\x2b\xee\x98\xae\xdc\xee\x09\x5d\x29\x4b\x32\xfa\x96\x33\x47\x7e\x2a\x6e\x41\xd0\x43\x55\xbc\xff\x55\xc1\xfb\x5b\x28\x73\x6b\x84\x3d\x27\x10\x1d\xb0\xfe\xce\xbf\x4a\x31\x88\xbf\xda\xce\x64\x2e\x43\xfd\x68\xde\x19\x1b\x86\xb9\x61\xed\x0f\x0c\xc1\xcd\xa8\xe7\x2f\x3c\x8c\x0b\xd4\x1f\xb0\x0f\xa1\x4f\x97\xed\xac\x2f\xa1\x75\x15\x3c\xd3\x0a\x69\x9f\x8b\x3f\x89\xdd\xe8\x45\x65\x4f\xe9\x67\xe8\x8f\x21\x7f\xa1\xf7\x33\x84\xd5\x0f\xca\xdf\x32\xbd\x61\xff\x6e\x79\xc9\xbc\x8e\x9a\x14\x7b\x80\x25\xc4\x2e\x59\xed\xcf\x76\xc3\xbf\x72\x83\xb1\x0b\x89\xff\x02\xc0\x77\xa1\xa7\xd5\x0d\x53\x17\x97\xa8\x34\xf7\xa8\x6d\xe5\x91\x22\x1e\x2d\x08\x72\x93\x1e\x46\xbb\x53\xcd\x41\x07\xd1\x1b\x61\x1b\xca\x29\x8c\x42\xc4\x8f\x2d\x7c\xa6\x0f\xfa\x62\x2c\x89\xf9\x2f\xae\x25\xe0\x15\xcb\x44\xf4\x70\x2b\x61\xdd\x26\x9d\x05\x80\x77\x9b\x7e\xc2\xf2\x81\xdc\x54\x91\xad\x09\xa4\x6c\xae\xec\x13\xfe\x4d\x75\xaa\xfe\x48\x33\x51\xaf\xc2\x32\x50\x4d\xb4\x61\xc4\xc9\xb2\x37\x74\x39\x7a\xe3\x96\x19\x0c\x2c\xf6\x7c\xac\x17\x33\x89\x90\x1d\x70\x98\xf9\x8b\xa4\x73\xcb\x67\xa5\x92\xbf\x00\xc0\xd3\x33\x14\xe6\x02\xc2\x7f\xb0\xc7\x2a\x05\xf1\x1f\x44\x8b\x60\x2d\xe9\x2e\x2a\x95\x1a\x40\xbe\x8d\xf1\x41\xa2\x28\x8f\x70\xf3\x4b\x1f\x53\x9f\x13\xa6\x67\xae\xa2\x7d\x27\xcd\x8c\x11\xd1\x3f\x52\xa6\x04\xb0\x19\xc7\xa9\xa7\xdd\x12\x98\xb3\x69\xfb\x00\xe0\xde\x67\xc1\x8d\x3b\x70\x45\xb8\x7d\xca\xe9\x78\x05\x61\x2a\xef\x1e\x61\x2b\x31\x86\xfc\x95\x78\x8f\xa4\x44\x14\x93\xdd\xc8\x4f\x4b\x3e\x53\x92\xa9\x29\x19\x35\x54\x2e\x6d\x5b\xf4\x5b\x5a\x2b\x63\x61\x40\x30\x9d\xc7\x2c\x70\x8b\xa6\x9f\x61\xfe\x03\x00\xd7\x9d\x83\xd2\xff\x87\xf1\xa5\x6f\x94\x8b\xb0\x64\xfa\x5b\xae\x1c\xb7\x93\xa1\x23\x1d\x25\x4c\x63\x6e\x84\xa7\x10\xb1\xac\x49\x25\x93\x49\x87\x59\x67\x36\x37\x53\xdc\xd8\xf5\xd1\x10\x6a\x11\xa7\x66\xd5\x1d\x5a\x22\xd7\xcd\x2d\x94\xa6\xe1\x46\x03\xc0\x29\xe4\xe5\xd6\x62\x90\xad\x92\xa9\xd2\xd5\xa8\xff\xc4\x5f\xd9\x05\x98\x6c\xf1\x55\xc2\x69\xec\x35\x71\x27\x54\x8d\x2f\x17\xf3\x8a\x24\x84\xff\x89\xf3\xd2\x8b\x49\xa5\xe2\xe0\x0d\x28\xf2\x4e\xf1\xd4\x55\x51\x94\x1e\xd1\x0b\xb7\xf9\x54\x27\x51\x2f\x00\xec\x1a\xc1\x7f\x9a\x20\x78\x9e\xe1\x2f\xf1\x24\xc4\x7b\xfd\x19\x66\x26\x4a\xa3\x9b\xc0\xfd\x87\x59\x59\xdb\x54\xfd\x04\x7b\x4d\x2b\x2b\x74\xc1\x53\x35\x88\xb4\x65\xc4\x19\xea\xf4\xf5\x24\x12\x5b\xb5\x76\xa5\x8e\x8c\x52\x6e\x9e\x77\x8d\xfc\x49\x7e\x1a\x00\x56\x97\x78\x85\xaa\x04\x36\xb3\xb5\x4a\x98\x03\x3f\xd5\x2c\xa7\x4f\x20\xe9\x4d\x56\x2c\x15\xbd\xb4\x71\xac\xca\x84\xb9\x51\x7f\x30\xff\x29\x4e\x65\x39\x94\xba\x9c\x10\x6a\x3a\x1a\xd5\x45\xec\x34\x5c\x5e\xf1\x8a\x24\xd7\xe7\xce\x53\x92\x23\xd5\x6f\xc0\x4c\xd6\x7c\xc9\x77\x65\x23\x74\xa0\xbb\x4b\xd0\x01\x2f\xef\x94\xd1\x5d\x90\xae\xed\x49\x98\x87\xa8\x7d\xad\x0e\x55\xae\x18\xbc\x6d\x67\x3e\x1d\xe7\x63\x2d\x4a\x39\x8f\xbf\x52\xff\x33\xaa\x84\x18\x6d\xd9\xb6\x62\x82\x34\xc7\xa4\x9f\x47\x23\x5d\xd3\xb6\x80\x40\xe6\x71\xe9\xa0\xd2\x11\x5a\x36\xe8\x26\xf0\x84\x3b\xf5\x9d\xa2\xb5\x20\xf6\xf6\x64\x60\xb8\xa8\x92\xce\xd3\x95\xfb\x30\x4e\xed\xc1\xf9\x6b\xb0\x7b\x5a\xa4\x29\x4d\xf8\xea\xa6\xbf\xa3\x42\x09\x47\x1a\xd3\x56\x74\x13\xc5\x75\xb3\xe6\x29\x48\x31\xb5\xcf\x80\x88\xb9\x51\xb6\x54\xb3\x81\xdb\x57\xf0\x5b\xec\xc0\x1d\x2f\xfe\xc1\x24\x73\xdb\xcb\xae\xe3\x1e\x71\x0f\x41\xb6\x55\xdb\xb8\x2f\xab\x27\x0a\x9a\x78\x8b\x60\xbb\x52\x91\xbc\x42\xe4\xe5\xc8\x1b\xbc\x56\xcc\x71\xff\x7d\xbc\x0f\xf8\x52\x57\x3e\xbf\x89\x38\x0b\x00\x61\x02\xbd\x56\x6d\xe0\x14\x95\x14\x88\xd0\x1c\x46\xf9\x14\xc6\x03\x8e\x01\xd2\x81\x2b\xe6\x9c\xa9\x0e\xaf\x5e\xc4\x9d\x05\xfd\xaf\xc0\x8f\x5b\x84\x18\x4d\x75\xe0\x8e\xa2\xc5\x91\x46\xde\x74\x5c\x90\x7f\x33\x8f\x48\x10\xb9\xe2\xf8\x2b\x88\x0f\x00\x10\x3a\xd2\xdf\xab\x6e\xb1\x67\x96\xdf\x16\x1e\x63\xc7\x57\xc6\x31\x12\xd9\xc2\x6a\x1b\xf6\x28\xfb\x32\xf4\x79\x95\x8e\x13\x84\x28\xc9\x1f\xe2\x18\x50\x7f\xa7\x58\x39\xbf\xb0\xa8\xc8\x34\x2e\x01\x7f\xc5\x9f\xcb\xbd\x47\xfc\xc7\x95\xcb\x6b\x21\x3b\x00\x20\x38\xc0\x68\x55\x2e\x67\x88\xa1\x2f\x05\xa1\x8c\x97\xf0\x07\xb4\xd3\x4c\x28\xd2\x86\x61\x30\x5f\xa0\xd9\x95\x44\x16\x07\x4b\xc9\x1b\x65\x3b\xe2\x69\xc9\x87\xd9\x75\x44\x49\xc4\x7e\xce\x0a\x32\xda\x3f\x91\xd3\x43\x75\x76\x6d\xe4\x12\xa9\x17\x01\x10\xb8\xb0\x10\xf2\xdd\x34\x3b\x6c\x13\xdf\x8e\xd6\x8b\xfb\x4e\xed\xa3\xa7\x13\x36\xa2\x49\xf4\x5f\xc4\x06\x88\x8a\xb1\x8b\xec\x98\xfb\x88\x89\xa2\xf0\x92\x17\xb0\x16\x53\x7f\x46\xa4\xb2\xae\xd2\xab\xfc\x5d\xd8\x10\x86\xce\xb5\x87\xb3\x8e\xf1\x03\x00\x7e\x16\xa7\x40\xa6\x20\xdf\xa7\xb6\x70\x87\x29\x43\x34\x29\x45\x4a\x2d\xa3\x47\xa1\x90\xb4\x50\x86\x43\x45\x1b\x7d\x2e\xe3\x41\xee\x7c\xfa\x13\xe6\xc9\x4d\x44\xc6\x0e\xd6\x44\xf8\x5f\x4c\x15\x5b\xe7\x77\x97\xe5\xcd\x49\x71\xfd\x8b\xf5\x84\x83\x02\x80\x07\xe3\x45\x88\xbf\x12\x63\x84\x07\xd8\x7c\x92\x97\xf0\x7f\xa4\x4a\xf2\x2c\xe1\x2b\x04\x87\xe2\x22\x7c\x5a\xf6\x86\xba\x40\xf8\x2a\xbb\x85\x36\x47\xf8\x31\x29\x84\xee\x24\xfc\xb3\xee\x29\xfd\x3f\x91\xbd\x5f\x2a\x43\x24\x9a\xe2\xba\x95\x49\x12\x6e\x03\x80\xab\x12\xb4\x0b\x0f\xe0\x57\xd7\x3e\x65\x26\x13\xd2\xb5\x7f\x08\x95\xc4\x02\x6d\x08\x6c\x90\x44\xd1\x14\x94\xe6\x91\x1b\xd4\xfc\xac\xb5\x94\x71\x55\x47\x22\xa0\x1e\x56\x9e\x0d\xfb\x4c\xdb\xa1\xf8\xe4\xdb\x4d\x8f\x57\xe4\xb9\x62\x19\x68\x59\x0e\x00\x9c\xb3\xa2\x11\x81\x27\xce\xad\x69\x2b\xfd\x12\x7e\xa5\x35\x00\xf7\x90\x90\xdc\x60\x84\x66\x13\xf1\x75\xef\x4a\x7c\x49\xcd\x96\xcc\x2d\xab\xc8\x67\x4d\x9d\x09\xcb\x29\xff\x19\xfe\x84\x45\x50\x1f\xea\xb1\x3e\x3f\x69\x65\xba\xa5\xae\x5e\xf4\x09\x95\x3b\x00\x9c\x70\x49\x25\xbf\x1a\xab\x6f\x3f\x42\x5f\x89\xdb\xde\xfa\x1e\x97\x86\x7f\xd4\x32\xa9\xe6\x2c\x71\x8a\x6d\x76\xf1\x56\x52\xa8\x75\x61\xe6\x59\x32\xac\x61\x61\xfc\xdf\x14\x5d\xdd\xd2\xd0\x8f\x54\x96\x39\xdd\xe7\x10\xf5\xb1\x71\xa6\xab\x03\x3d\x43\xdd\x07\x00\xfb\x89\xd4\x89\x77\x11\xeb\xd5\x3b\x93\x36\x88\xcb\xee\x9e\x8c\xbd\x8b\xd7\x74\xdc\xad\xc1\x13\xfa\xda\xc6\x8a\x11\xc4\x73\x2d\xd4\x4c\x3d\xe9\x87\x2d\x28\x7e\x1b\xc5\xab\xf1\x4b\xe8\x5f\x94\x5f\xf5\x2f\x7c\x7a\xa9\x59\xe6\x12\x57\x2f\xda\xb8\xe6\x29\x00\x6c\x88\x54\xc1\xce\x55\x7c\x2b\xdc\x44\x0e\x52\xc4\x94\x84\xa0\xe0\x72\x5b\xf9\x64\xc8\x53\xf9\x1c\xc8\xd9\xfc\x83\x32\x4b\xf5\x58\xda\x73\xd9\x6c\x58\x67\xcc\x3b\x69\x07\xb2\x2f\xd8\x28\x2d\xc0\xd0\x3d\x69\x52\x24\xee\xb4\xf3\x07\xe9\x26\xc2\x7e\x00\x24\xcb\x19\x65\xac\x7e\xf9\xd6\x92\x6a\x52\xb7\x7c\x61\xb9\x03\xf2\x93\xcc\x02\x31\x42\xd8\xb2\x15\xd5\x73\xf2\x0b\xa5\x27\xa1\xbb\xd2\xf4\xd2\x12\x04\x2e\xa6\x4b\xf2\x1b\xbd\x26\xb8\x42\x72\x0a\x7b\xc0\x13\x2e\x79\x8c\xbf\x34\x6d\xba\xe4\x1a\x91\x09\x80\xf8\x39\xc3\xca\x7c\x27\xc3\x94\x0f\x92\xa6\x4b\x3f\x56\x4e\x42\xb2\xa5\xb5\xd5\xe9\x10\x3b\x69\x2c\x54\x9d\xf7\x4c\xf2\x01\xfe\x3e\x6d\xb5\xa4\x19\x85\x8d\xc9\x92\xe4\x60\x3e\x06\x07\x4a\x02\xf0\x09\x9e\x85\x92\x2d\xc4\x45\xd3\x3c\x25\x59\x24\x15\x00\xe2\x66\xe6\x52\xc6\x56\x89\x2b\x74\x2d\xe1\x9c\xf8\x2e\x7c\x2a\x62\x83\x78\x1c\x71\xae\xfc\x8d\x58\x80\xda\x9a\xfb\x4b\x9c\x8f\x19\x4b\xad\x10\x7b\xe2\xf6\x45\x77\x8a\x3e\x10\x2e\x07\xed\x13\xfd\x43\xea\xf7\x5c\x2f\x9e\x45\xf1\x9e\x96\x28\x0e\xa6\x6e\x04\x40\xf4\x9c\x35\x41\x5f\x25\x9a\x8b\x7e\x8d\x17\x09\xff\x87\x65\xc1\x57\x0b\xb7\xe3\x1e\x97\x7d\x13\xf6\x13\x72\x73\xbd\x85\x9d\xc4\x5b\x29\x1d\x42\x0d\x19\x11\xed\x20\x64\x53\x7e\x07\x95\x0a\x6b\x69\x04\x4f\x0f\xe1\x41\xba\x69\x1a\x54\xe4\xc8\xa0\x01\x20\x5a\xc9\x21\x53\x6f\x09\x5c\xc9\x78\x5c\x0e\xff\x2d\x05\x09\x5b\xc4\xbf\x43\x4d\x2b\xfd\xcd\x7f\x4b\x8b\xce\x49\x14\x4c\xa5\xc7\x27\xdf\x17\x4c\x67\x64\x6f\xa8\x11\xb8\x32\x61\x81\x9f\x04\x71\x2c\xa4\x27\x10\x30\xd8\xe1\xd3\xe4\x82\xdb\xec\x4f\x00\x08\x09\x3c\x5f\x0a\x8a\x8b\xe3\xb5\x61\x1a\xb9\x12\xde\xc7\x9a\x32\x6e\x33\x3f\xb0\x24\x8d\xfb\x9c\x5f\x99\xb5\x9d\x17\xcc\xef\xda\xc4\xe7\x95\xf2\xdf\xac\x0f\xe7\x49\x05\x1b\x03\x7d\x79\x13\x02\x83\x47\x3d\xef\x8c\xe0\xca\xb4\x56\x3e\x44\xd0\x03\x80\xa0\x4c\x50\x40\x4a\x63\x17\xaa\x0e\xa3\xae\xb0\x9b\x54\x21\x55\x0d\xec\x8f\x4a\x4b\xd1\x67\xce\x1a\xa5\xdb\x96\x36\x8e\x50\xd1\x94\x54\xcb\x39\xa7\x70\x8f\x82\x71\x3d\xe5\x3d\xab\x55\xdc\x2d\xf2\x78\x8f\x65\x5c\x94\xdc\x61\x9a\x8e\x17\x2b\xb1\x02\xc0\x37\x8b\xfc\x08\x3a\xd6\xca\xba\x6c\x64\x1e\x8b\x62\x49\xa8\xc4\xb0\x4e\x98\xe7\x15\x9e\x65\x7b\x1a\xff\xcd\x6c\x64\x73\x0c\xfb\x13\x87\xd8\x77\xf5\x86\xc8\x83\x9c\x50\x1d\x25\xe0\x31\x87\x50\xcb\x76\x97\x73\x88\x9a\x6f\xd3\xb2\xb9\x34\xf9\x05\x00\x78\xdf\xc4\x03\xf8\x8f\xcc\xde\xa6\xbb\x88\x43\xcc\x6f\x56\x1d\xe4\x31\xab\xa0\x71\x69\x61\x2e\x6b\xac\x7e\x3c\x33\x94\xed\x5c\x17\x9b\x58\xc0\x26\x9a\x2f\x46\xb2\xd9\x97\x4d\xd4\x80\x7e\x8e\x9d\x31\xd3\x3d\x93\xfd\x9f\x0e\x33\x2d\x96\xeb\xac\xf4\x00\x80\xd7\x21\xd9\x88\xe7\x32\x23\xda\x76\x21\xb2\x98\x86\xd6\x38\x88\x90\xf9\xae\xb9\xaf\x10\xb0\xe2\x6d\x8e\x19\xef\x59\xf5\xd6\xaa\x44\x5f\xd6\xcf\x86\x83\x91\xc5\xec\xd2\xfa\x98\x80\x5a\x36\xcf\xa2\x70\x5f\xc7\x4e\x37\xc0\xa7\x65\x70\x28\xaa\x0d\x00\xf0\x56\x49\xb6\x21\x17\x5b\x6a\x8a\x66\x54\x05\x99\xde\x97\x9c\x2d\x66\x18\x1b\xcb\x49\xd9\xae\x86\xd2\xca\x85\x29\xae\x7a\x9f\xea\xc7\x31\xb4\xda\x67\xb0\xa3\x21\x07\xb5\xa7\x90\x23\x7e\x1a\xcd\x4f\x4c\x86\xdb\x7a\xed\x12\x5c\xb8\xe3\x5a\xe5\x27\x62\x37\x00\xb2\x36\xa6\x0c\x71\xc2\x1c\x5a\x72\xb4\xf2\xa6\xf1\x6e\x79\x72\x71\xa0\xa1\x0e\xb2\x2f\xeb\x8c\x9e\x51\xbd\x3c\xf9\x82\x0e\x02\xdd\x19\x13\x59\x1b\x86\x28\x0f\xa9\xd5\x7a\xa3\x67\xfa\x51\x35\x08\x2c\xc1\x2d\x59\xa3\xc6\x7b\x3a\xe6\x2a\x55\xa4\x18\x00\x64\xa5\xcc\x46\x44\x95\xc9\xb1\xbc\xbb\x92\x62\x38\x05\xf9\x50\x74\x5b\xaf\xaf\x0e\xcb\xa2\xe9\xea\xa0\x88\x64\x5e\xad\x05\x7e\x28\xfa\xb3\x96\x8d\x5a\x1b\x52\xa0\xa1\x61\x86\xfd\x8a\xd4\xa7\x70\x37\xdc\x32\xd5\xcf\x08\x39\x8e\x2c\xa5\x33\x39\x0a\x00\xd9\x54\xe6\x6f\xf8\x46\x43\x40\x0d\x15\x82\xd3\x7d\x84\x51\x0a\xff\xad\x7d\x89\x08\xdb\xd2\xab\xfd\x88\x72\xdf\x74\x45\x6b\x8f\xf1\x8c\xae\xd2\xd8\xe1\xd6\xae\xbd\xab\x76\x25\xa4\xf9\x2d\x50\xd1\x49\x2e\x6e\x85\x2a\x0d\x79\x83\xe3\x88\xfc\x2d\xf5\x29\x00\xd2\x6c\x76\x16\xcc\xbd\xf6\x3b\x6a\x5b\x45\x99\xf6\x27\x26\xad\xe0\xa3\xd6\x01\x7b\x38\xf3\x9c\x26\x00\x9f\xb8\x69\x86\xba\x80\x70\x6f\xc3\x1e\x15\x8e\x24\x59\x9b\xa5\xd4\x53\x02\x7c\x2f\x2b\x67\x50\xbb\xdd\x2a\x94\x1e\xb4\x46\xc7\xe7\xb2\xe3\xcc\xc5\x00\x48\x44\x9c\x87\x50\xa0\x9d\x4f\xcc\x2f\x2f\xd7\xf8\x90\xac\xf9\xbf\xd5\x91\x64\x63\xc6\x73\x15\x97\x32\x98\x94\xa4\x3c\x48\xbd\xb1\xc1\x59\xf1\x82\x3e\x7d\xcd\x71\xc5\x22\x46\x92\xaf\x50\x3e\xc2\xc4\xb8\x55\xcb\xf7\xb2\x82\x9c\x96\x49\x3b\x38\xfe\x00\x88\xf7\xf2\x10\xd5\xad\x2a\x29\x7b\x57\xe9\x37\xe5\x3e\x4e\x68\xde\x1e\xc5\x6f\x4e\xf7\xe6\xf3\x8a\x32\xae\x47\x62\x9e\x7c\x37\xb7\x7f\x7d\xac\xdc\x89\x17\xbe\xc6\x47\x96\xc7\x3b\xe7\xeb\x25\x7d\xca\xaf\x72\x4b\x91\x9e\xe3\x1f\x75\xe2\x4a\xe6\x09\xe6\x00\x20\x6a\x10\x14\x56\xcd\x50\x28\x65\xea\x92\x7e\xf9\x6d\x59\x71\xae\x4e\x1e\x26\x5b\x9b\x7e\x44\xd6\x27\x73\x4a\xc0\xcb\x16\x48\x9f\x45\x31\xa5\x62\xe9\xb9\x60\xa9\xe4\x85\x74\x9f\xcf\x36\x09\x47\x7a\xce\x6d\xae\x24\x59\x5a\xe7\xa4\x13\xbd\x11\x17\x03\x20\x3c\x2a\x7c\x04\x79\x2e\x5f\x60\x08\x2e\x96\xca\xd4\x7a\x49\x8e\x54\xfa\x47\x77\x2c\xed\xa6\x94\xab\x9b\x1a\xdf\x27\xf9\x5a\x5b\x18\x79\x49\x22\xd0\x8e\x06\xfd\x96\xd8\x6b\x97\xf9\x44\x89\x35\x9a\x03\xf3\x3a\xc5\x11\xaa\x2c\x27\xb9\xc8\x4d\xe6\x00\x80\xd0\x5b\xec\x0f\x81\xc8\x34\x75\x9b\x8a\xa7\xca\xec\x2c\xd5\x39\x0b\xa4\x42\x33\x22\x8d\x23\xf9\x69\xa2\xc5\x97\x4b\x58\x46\x5d\xa4\x49\x32\xc5\xb0\x2d\xe8\xaa\xd8\x62\xb0\xf3\x99\x25\x9e\xad\x07\xf3\x58\xa2\x7e\x4d\x96\x13\x55\xd8\x2d\x5f\x0c\x80\xe0\x8a\xb8\xa5\xe2\x8d\xcc\xd5\x7a\xb0\x68\x50\xaa\x6c\xdc\x9e\x7d\x46\x3a\xa5\xc1\x98\x16\x2d\xe1\xd7\x73\xe3\xd7\x88\x3f\xd5\x91\x22\xa9\x62\xb9\x85\x1d\x74\x4c\xec\x66\xde\xee\xe3\x20\x12\x1b\x07\xe6\x91\x85\x6f\xb5\x5f\x9d\x8c\xc2\x19\x8a\x85\x00\x08\x4a\x25\x53\x0a\xb2\x3b\x12\x8a\x46\xb3\x02\xda\xdc\x4b\xc3\x53\x89\x2d\x2e\xe5\x7b\xe3\x3e\xdb\x22\x2a\xe3\x23\x3f\x5a\x91\xd5\xaf\xd7\x60\x1b\x64\xb0\x21\xff\xb3\x75\xd7\x90\x98\xc5\xf7\x2c\x17\xd0\xcf\x66\xa4\x9a\xbf\xe0\x1c\x41\x9d\xf6\x18\x79\x04\x00\xc5\x3e\xd6\x68\x81\x7f\xfb\xdc\x52\xff\x2c\xd0\x3a\xa3\x9c\x97\x9a\xdc\xbc\x10\x72\x21\xee\x7c\x53\x69\xb5\x47\xe4\xf9\xc6\x0e\xa8\x69\x4d\x46\xfd\x45\x84\x87\xff\xce\x3a\x7f\xd4\xe0\xe2\x87\x96\xe5\x98\x57\x33\x10\xe6\x5c\xdc\x29\x30\xaa\xcd\xa3\xb8\x03\xa0\xc0\xb1\x3a\xf3\xdf\xb5\x3e\x2d\xbf\xbc\xe5\x4c\xf3\x0f\xc8\xc7\x54\x57\x9b\x67\xf5\xdc\xb8\x3a\x2b\x0f\x1a\x10\x69\x6d\xb8\x0e\x27\xae\xf1\xad\x9f\x81\xbc\xe4\x6f\xb3\x10\x31\xab\x16\x3f\x30\xd3\x70\x51\x33\x44\xa6\x66\xfc\x43\x70\x51\x73\x99\xf2\x15\x00\xc5\x5c\xd6\x93\x7c\xef\xe6\xcf\x35\xbe\x5b\x9c\x6c\x81\xd0\xe7\x29\xa5\x56\x1a\xbc\x2b\xce\xbe\xe1\x26\x52\x1e\xe9\x53\x1f\x8b\x96\x06\x9f\xb2\x68\xb0\x26\xff\x02\xd3\x77\xbc\x6d\xf1\x59\x13\x20\xa6\xcf\x18\x36\xce\x25\x8d\xda\xcd\x55\x8f\xd3\x8b\x00\x90\x27\xb1\xff\xe4\x71\x9b\x3e\x20\x0f\x65\xe6\x5a\x33\xd1\x49\xc9\x43\x0d\xe3\x98\x5d\x1b\xe1\xf5\xfe\xb8\xa4\x88\x56\x4b\x17\xfe\x45\x70\xa9\xe9\x37\xb1\xc9\xdf\xd9\x48\x23\x6f\x5a\xbc\xdb\x20\xa0\x1c\x9f\x71\x5d\xcf\xa6\xfe\xb1\xab\x56\x89\x58\x4e\x00\xc8\x10\x5c\x78\xae\xd4\xba\x1a\xff\x4f\x86\xb4\xc1\x42\xf8\xb9\xe9\x4b\xbd\x1d\x69\x6a\xec\x71\x4b\x2d\x39\x3a\x62\x8e\x79\x21\x45\x11\xf4\xc2\x28\xa4\xde\xf0\xdb\xad\xff\x41\xf7\x5e\xdc\xaa\x77\x64\xe0\x67\x7c\xaf\xfd\x97\x59\x67\x37\xa1\x2c\xe7\xd8\x00\x90\xea\x79\x67\x72\x18\xf5\xdb\x98\x53\x37\x1b\xea\x36\x30\x77\x6f\xf2\x35\x9f\x63\x95\xc4\xba\x9a\x70\x6c\xc7\x70\xb1\x71\x26\xfb\x44\x10\x43\x6f\xe6\xa8\xfd\xb0\x3a\x1f\x6e\xc1\x62\x43\xed\x7c\x5e\xe8\xcc\x08\xcd\x2e\xbe\x8b\xbd\x97\xfc\x32\xff\x06\x00\x12\xa8\x80\x97\xbd\xc5\x72\x58\xf4\x21\xbd\xd3\x5c\x26\x76\x48\x4a\x33\x39\x8b\x67\xc6\x94\x1a\xf6\x88\x03\xd7\x3d\xd3\xe3\xc4\x90\xc0\xaf\xba\x19\x62\xab\xdf\x0c\xed\x1e\xf1\xd3\xc5\x48\x4d\x9d\xa4\x72\x66\xb1\xea\xbb\xf8\xbc\x3d\x4e\xd6\x2e\x12\x02\x20\x16\x0b\x4f\x67\xf5\x99\xe3\x34\xe3\x69\x0f\x8c\xcf\x35\xa9\x89\x36\x83\x55\x7d\x2b\x7a\x9f\xbe\x40\x2d\x59\x07\xd7\xcd\x51\x27\x04\xd6\x6a\xaf\xa8\xe7\xfa\x1e\xd0\x58\xd5\x73\x17\x2f\x57\xe3\x55\x9a\x99\x31\xca\x2e\x79\xb7\x7d\x9d\x74\xbb\x64\x2b\x00\xa2\x5b\xa2\x4b\x59\xab\x4c\x1a\x43\x5a\x1a\xdf\x18\xa7\xdf\x93\x98\xaa\xff\xa3\x5f\x1a\xcd\xd0\xed\xd3\x75\xae\x5b\x53\xcb\xd4\xc5\x06\x56\x6b\xe3\x6b\x3f\xfa\xb6\x69\xe6\xd4\x5e\x5a\x3c\x57\xf5\x3f\xad\xff\xcc\x28\xc5\x57\x65\xba\x7d\xbd\x34\x46\xda\x08\x80\x48\x23\xf6\xdf\x72\xc8\xf8\xd8\x92\x93\xb6\xda\xd0\x6d\x1e\x49\x9c\xae\x47\x99\x7e\x45\xa7\xe9\x96\x9a\x30\xeb\xe6\x69\x6f\x1a\x3f\x07\xe6\x68\x7a\x8d\x43\xbe\x36\x35\xd7\xf0\x78\xf1\x12\xd5\x5a\x5d\xee\xcc\x2d\x8a\x60\xd5\x76\xfb\x63\x92\x5e\x19\x03\x00\xd1\x3c\x71\x6d\x26\xbf\x2f\xa8\x78\x4e\x0a\xa5\xfb\x9f\x52\x62\xdc\xa3\xce\xbe\xf2\x33\x51\x07\xdb\xdb\x2a\x23\x42\x16\xb6\xb6\x57\x9f\x5b\xf9\xbd\x59\x0b\x23\x2c\x3d\xd0\xb4\x1b\x39\xc3\x2d\xd5\x7a\x09\x8d\x9c\x4a\xae\x7f\x81\xdb\x08\x80\x8e\x4f\x19\x07\x40\x39\xc2\x76\xcb\x2c\xeb\x9d\x59\x8a\x4d\x29\xe8\xba\x55\xde\x12\x77\xa6\x63\x1b\xe4\x74\x54\x4f\xdb\xe1\x6a\xfb\x10\xd0\x72\x03\x5a\xb1\xf2\xb9\xed\x02\xfc\xaf\xa5\xbb\x9b\x26\xa1\x62\xdd\x72\xac\x8b\x31\x90\xa9\xcd\xf5\x1b\x71\x9f\x01\xd0\x39\x51\x1d\x00\x50\x16\xb3\x7e\x66\xae\xee\x7e\x55\xfe\x31\x65\x55\xe7\x79\xc8\x8f\xb8\xce\xf6\xfd\x55\x3f\xa3\x38\xad\x0f\xa0\x60\xed\x9d\x16\x07\x78\xe0\xca\xcb\xb6\xc9\x48\xd6\xd2\x41\x6b\x02\x7a\xaf\x5b\x61\x63\x39\xb6\x73\xea\x9e\x3a\x1e\x61\x12\x00\xb5\x1c\xea\x21\x00\x14\x5f\xd9\x61\x19\x94\xce\x1f\x35\x0e\xc9\xe2\xf6\xef\xd0\x9d\x71\x53\xdb\x9c\xe1\x95\x51\x93\x5a\xc2\x90\xe1\x6b\x85\x36\x38\x7a\xc5\x4a\xb5\x95\x89\x5d\xb9\x54\xd4\xb0\x0f\xef\xe5\xb6\xa5\xfe\x0a\x61\x74\xea\x0b\xf3\x7d\xd2\x49\x00\xb4\x59\xf4\xa7\x00\x28\x3c\x39\x91\x9b\xff\xb4\x7f\x42\x8a\x37\x7d\x6f\x5b\x8a\x7a\xb6\x91\xdd\x92\x85\x49\x8a\x54\xd8\xb4\xd8\x8b\x6b\x17\x5a\x2f\xe2\x09\x2b\xa3\x1b\x9e\x13\x17\x2e\xcd\xad\x0f\x20\xed\x75\xab\xaa\x0b\xa5\xf8\x39\x2f\x30\xad\xa4\x2d\x04\x40\xe3\xc6\xaa\x01\x40\x1e\xce\x35\x6f\x9e\xdd\x96\x82\x0f\xdf\x14\xd7\x42\x26\xe4\xc4\xfe\x6b\x1b\x24\xc2\x22\x9d\xac\x9f\x49\xb6\x35\xa3\x8d\x89\xe4\xe7\x2b\x5e\xd5\xc3\xa9\x51\x4b\x97\x5a\xfa\x69\x0a\x37\x9c\xb9\x83\x7e\xd9\x39\xc3\x20\x65\x1e\x01\x40\xf5\x92\x73\x0a\x00\x59\x01\xef\x55\x7a\x76\xf3\x4d\x46\x40\x52\x9d\xcd\x83\x71\x31\x36\xdb\x4a\x64\xc2\x22\x54\x0d\x97\x58\x9e\x6b\xb6\xd4\x07\xb2\xde\xae\xe8\xb7\xa0\xd9\xa7\x96\xda\x9b\x0e\x72\x7a\xdc\xb4\x46\x03\xd7\xe2\x3c\xa4\x4b\xe5\x3d\x06\x99\xca\x0a\xfe\x6e\x00\xa4\x2b\x05\xc2\x34\x6a\xd3\x45\xa1\x3e\xf1\x81\x35\x50\x38\x14\xb3\xbb\xa1\x5d\x78\x38\x62\x46\xfd\x74\xe1\xb7\xe0\xcf\x16\xb2\x28\x7d\x45\x99\xe9\xaa\xa8\xd7\xeb\x82\x31\x49\x3c\xdf\xcd\xac\x7f\x2b\x9e\x70\xfe\xa4\x55\x8a\x3d\x41\x8b\x62\x85\x68\x21\x00\x92\x54\x61\x77\xea\x5e\x6b\xa0\xea\x48\x62\x68\x43\xab\x8a\x17\xe3\x5d\x3f\x4f\x15\x1c\xae\xb2\xe8\x54\x0e\xc1\x22\xb3\x93\xf2\xe3\x0a\x47\x23\x57\xf9\xdb\xcb\x64\x98\xa2\x5a\xe7\x86\xd7\x0d\x2b\xd7\x38\x7f\xd7\xac\x90\x19\xc1\x01\xf9\x06\x89\x0b\x00\xe2\x0e\x91\x3a\x15\xd2\x48\xd4\x85\x25\x3c\xae\xff\xb7\xf6\x44\xf4\x9d\x3a\x64\x6d\x6e\x78\xa6\xf9\x71\xad\x63\x70\xb6\xa9\x48\x7b\x77\xf9\x13\xc3\x3d\xed\x4d\x2f\xaa\x9e\xa6\x35\xb9\x21\x74\xd3\xd4\xf2\x69\x53\xd5\x4c\xc5\x6c\x70\x4b\xb6\x5f\xf2\x13\x00\x71\x92\xe8\x43\xaa\x6b\xc3\x11\x93\x7b\x42\x77\x7d\xb4\xb1\x2e\x7a\xc4\x72\xcc\x38\x2d\x3c\xd0\xbc\xce\x30\x11\x9c\x68\x1c\x30\x48\x97\xdf\x37\xac\x31\x54\x7a\xf1\x75\x97\xf5\x99\x6e\xdc\xda\x0c\x2d\x77\x9a\xbf\x6a\x5c\x59\x66\x37\x47\xe6\x21\xbd\x02\x80\xe8\xb6\xb8\x28\xf9\xce\x70\x5a\x31\x21\xee\xe4\xc0\xfb\xd2\xfa\xf5\xe1\x7d\x23\xe5\xfb\x43\xe3\x7b\xcc\x95\xd3\x03\xae\x77\xc9\xab\x79\x3e\x5f\x3a\x60\xd0\xff\xe3\xe0\x2e\xdc\xa2\xc0\x9f\x3f\x80\x7f\x14\x41\x54\x14\x10\x04\x01\x05\x15\xa4\x4b\xe9\x46\xba\x6b\x61\x61\xbb\xbb\xbb\xbb\xd9\x05\x96\x4e\xc5\xee\x6e\xcf\x3c\xbb\xc5\xee\x3c\xef\xec\x3b\xf3\x8c\x33\x7e\xcf\xf7\xf7\x47\xcc\xbc\x66\x9e\x79\x3f\xf3\x23\xe8\xd3\xe8\x30\x85\xe9\xf5\x7d\xc9\x7a\xda\x6e\xb7\xd4\xc1\x40\x96\x01\x80\x8e\xff\x84\xb9\x00\xd8\x64\xf2\xa4\xd2\xc3\x1b\x92\x11\x5b\x17\xed\x58\xfb\x37\x6a\x6b\x56\xcc\xea\x7d\x98\x2d\xc9\xc9\x2b\xb7\xe1\xce\xc5\x9e\x5a\xbe\x8b\xe8\x16\xf6\x71\xe9\x08\x19\x1e\xf4\xdf\x92\xdb\xd4\x41\x6f\xff\xc5\xcf\xe8\x6b\xdc\x60\x03\x38\x76\x24\x00\x1d\x2a\xa1\x01\x00\xdb\x5c\xb9\x6f\x69\xff\xfa\x59\xe8\xb9\x8b\xba\xd7\x3c\xc3\xfc\xcc\x9a\xbe\xea\x28\xee\x76\x72\xc0\x8a\xf3\x84\xc3\xb1\x9b\x97\x3d\x24\x5d\x0c\x7b\x3a\x7a\x81\xf2\x2d\xe8\xbf\x25\x53\xe9\x5e\xde\x91\x8b\x67\x32\x5e\xbb\xc9\xfa\x7b\x38\x89\x00\xb4\xff\x23\x5a\x00\x80\xf5\x37\x79\x69\xc9\xab\xb5\xf3\xf1\xdf\xf2\x7f\xac\x9e\x4a\xec\xc8\xec\x5c\xe9\x42\x0e\x49\xda\xbb\xdc\x8f\xf2\x28\x96\xb1\x34\x89\xb6\x3f\x6c\xcf\x92\x38\xc6\xca\xa0\xe7\x23\x6c\x96\xcc\x3b\x6f\x98\xc3\x71\x71\xdb\xdc\xfb\x07\xef\x2b\x00\x6d\x7b\x24\x29\x00\x58\x6e\x2a\x8a\x4a\xd6\xae\x0e\xa0\x32\xf3\x87\x56\x2e\xa4\xad\xca\x9c\xb3\xbc\x9e\xfe\x34\x09\xb6\x94\xc7\x44\xc7\x86\x2c\x19\x64\xfd\x13\x66\x1a\xe9\xe3\xd8\x82\x6e\x0e\x5d\xe2\x79\x79\x37\x0e\x1e\xe4\x8b\xdc\x9e\xf4\x84\x89\x08\x00\x38\x84\xb2\x0e\x00\xcc\x2f\x95\x4b\x8a\x7f\x5f\xa9\x67\x1d\xc9\xfb\xbc\xbc\x8b\x7d\x25\x63\xf3\xd2\xad\x9c\xfb\x0b\xbf\x2c\xb9\xc7\x9b\x1a\x73\x75\xb1\x07\xbf\x31\xac\x61\x78\x8a\x60\x24\xe8\xf8\x60\x96\xf0\xb6\x37\x65\xc0\x5f\x3c\x77\xe2\xcc\x2e\xf9\xff\x7f\x44\x29\x51\xdc\x04\xc0\xec\xaa\x7a\x5f\x5c\xbd\xdc\x57\x3c\x98\x67\x5f\x9a\x2e\x09\xc9\xa8\x5d\xc2\x90\x2c\x5f\xb8\x79\x64\xb5\x14\x1d\xb3\x7c\xe8\xa9\x2c\x25\x2c\x73\xe0\x9b\x7c\x7a\xd0\xa5\xfe\x74\xf9\x47\xef\x0d\xbd\x7f\x2a\x3e\x4d\x74\x38\x8b\x55\xfb\x00\xb0\x6d\x55\xf7\x00\x60\xbc\xa4\x11\x14\xed\x1e\xfd\x47\x63\xcb\x0b\x58\x92\xa4\x19\x4d\xff\x39\xa2\xd3\xec\x5c\xc8\x19\x3a\xa3\xf9\x2f\x46\x3e\xe8\xa3\xc5\x85\x45\xf4\x2f\xd2\x5e\x0f\xba\xd6\xdb\xad\xc3\x78\xff\xd9\x13\xa8\xbb\x3d\xf1\x9f\x76\xa3\xae\x03\x00\xab\x58\x7b\x02\x00\xc3\x0b\xad\xa9\xf0\xc5\x92\x68\x6b\x4e\x2e\x7f\x44\x6b\x9d\x9a\x2e\x1f\x7a\x60\xb9\xbd\x10\x0c\x2e\xb0\x9c\x89\x09\xe9\x37\x5a\x1e\x86\x3e\xe8\xbd\x66\x0d\x08\xea\xeb\xa9\xb1\xa6\x7b\x5f\xef\xda\x6b\xfe\xdd\xdd\xab\x2d\xd4\xb8\x16\x00\x8b\x5e\x3f\x04\x80\xa1\x58\xd7\x5c\xb8\x65\x31\xde\xd1\x95\x9b\x31\x7c\xc0\xb1\x20\xbd\x70\x68\x8e\xfd\xe6\x82\x6b\x03\x02\xfb\xe6\x98\x71\x7d\xa7\xec\x7b\x42\x4f\xf5\x86\xd9\xff\x0c\xb2\x74\x6f\xb4\x27\x7b\xdf\xe9\x72\xb5\xde\x75\x8f\x70\xf0\xcd\x13\x01\x30\xff\x32\xc8\x00\xd0\x7f\xd0\x1d\x29\x54\x8e\xac\x71\x62\x73\xa7\x0e\x83\x8e\xa7\xe9\xb3\x06\x89\x1d\xfc\x05\x07\xfa\x77\x74\x94\x45\x7f\xea\x1b\xd7\x81\x0c\x3d\xd9\x43\xea\xf0\x0e\x6a\xef\xfa\xb7\x6d\x83\xf7\xbf\x9d\xa9\xad\x2b\xdc\x1b\xec\x6b\x2c\xd9\x00\x98\x29\xc6\x45\x00\xe8\xad\xfa\x90\xa5\xbf\x50\xe3\x6a\x53\xfa\x02\xd0\xbf\x37\x1c\x6c\x1d\xc2\xf6\x42\x23\xd5\x14\xbc\x13\x76\x8c\x27\x20\x6e\x41\x09\x08\xfb\xc8\x8f\x70\xb3\x1a\x0f\xd1\x22\x88\x97\x0a\xc7\x18\x26\xea\xaa\xc4\x0b\x2c\x38\xd3\x37\x20\x89\x3d\x9e\x9d\x0b\x80\xb4\x90\xbf\x62\xa9\x37\xfc\x29\xa4\xb4\x37\x1f\x39\x06\x15\xd8\xc6\xd0\x57\x61\x56\xd5\x6e\x9c\x0b\xf2\x3c\xf7\x16\xa1\x01\x1b\x41\x48\x24\x6d\x21\x28\x1b\x4b\xa9\x73\xc9\x77\x0a\x65\xf4\xc5\x74\x48\x22\x97\xd9\xca\xc2\xcf\xfc\xc0\x6a\xe1\x64\x01\x20\xf9\x2a\x20\x8f\x86\xb4\x9c\x69\xd6\xf6\x60\xe0\x7f\xc0\xeb\x6d\x00\x15\x84\xf2\x52\x7e\xc5\x48\x31\xbf\xb8\x69\xb8\x0f\x04\x37\xfc\x4a\xa2\x9c\xec\x0e\x19\xa3\x4c\xa7\x4d\x2f\x9c\x41\xdb\xc0\x8c\x4e\x0c\x64\xac\x63\xff\x31\x73\x07\x73\x15\x97\x03\x80\x64\xb1\x90\xb2\x18\xd9\x78\x0e\x73\xae\x6b\x5d\x73\x25\xde\xdb\x82\x87\xfd\x41\x5c\xa4\x70\x20\x1d\xe4\x0e\xf6\x57\x4c\x1d\xf5\x5f\x5c\x27\x3e\x94\x01\x6b\x78\x43\xfc\xc5\x3a\x5a\x40\xa5\x9c\xe0\xce\x49\xd0\xd3\x1e\xf0\x17\xce\x44\x30\x16\x08\x32\x01\x10\x5f\x14\x6f\x1d\x4e\xa8\x2f\xa1\x76\x3b\xaf\x42\x3e\xd1\x73\x4d\xb7\xa1\x87\x19\x37\xe5\x0b\x61\x5b\x59\x1a\xd6\x25\xe4\x6f\x9c\x5c\xac\x03\x73\x95\xfb\xa9\xc1\x1b\xff\x96\xbf\x75\xd1\x0e\xd2\x33\x21\x3e\xfe\x17\xd5\x4b\x74\x63\x66\x04\xed\x88\x18\x0f\x80\xe8\x83\xcc\x67\xb0\xa4\xfa\x35\xef\x65\xc7\xbc\xba\xeb\xfc\xa7\xc6\x16\xc8\x03\xc1\x79\xe9\xc3\xe6\x69\xc2\xd3\xcc\x0d\xf0\x16\xd1\x2d\x4c\x07\x6a\x8b\xf8\x5e\x7d\x1e\xce\x4d\xf2\x64\xd1\x54\x62\xb8\xf4\x49\xbc\x83\x0c\x93\xed\x98\xe9\x43\xa5\xc8\xce\x01\x20\x0a\x53\x20\xfa\x36\x96\xef\xd4\xe6\x39\xb6\x55\x7d\xd7\x26\xe9\xbd\xeb\x5a\xb4\x81\xe2\x2b\x90\xeb\x5a\x1f\xfa\xfd\x66\x9a\xd6\x1f\x3d\x19\x31\x51\x3b\xad\x6e\x32\x7a\xb1\xd6\x25\x3f\x16\xf7\x46\xf3\x2e\xde\x83\x18\xaf\x39\xef\xff\x8d\xfc\x58\x53\x01\x80\x30\x5b\x2d\xea\x29\x28\x91\x77\x54\xb4\x4a\x2b\xa6\xb7\x87\x6a\xa7\x56\xef\x71\xfc\x10\xfe\xa8\x67\xd8\xff\xa1\x65\x37\xa5\xb4\xfe\x85\xdc\x00\x9b\x6c\x3b\x53\xf3\x01\x79\xd9\xba\x36\x0f\x83\x2d\xb5\x18\xe2\x7a\xf1\x03\x66\xae\xff\x13\xd2\x33\x53\x11\x00\x82\xcd\xba\xa8\xae\xde\x22\xe3\x62\x99\xf5\x56\x59\xfc\xf0\x52\xb5\xa2\xf2\xed\xe0\x26\x81\xb5\xf6\x78\xff\x76\xca\x33\xc8\x96\xde\xad\x08\x67\xf3\xd2\xee\x91\x9a\x00\x84\xbe\x53\x9d\x3b\x86\x09\xee\xa0\xc7\x91\x70\xea\xb6\x55\xfe\xdf\x48\xd9\xad\x0c\xd0\x24\xa8\x33\xd0\x3b\x9f\x16\x7e\x58\x99\x61\xcd\x2e\xed\x5b\xf6\xe9\x7f\xfe\x8c\x0e\x0a\x5c\x6a\x63\x16\x67\x50\xd8\x90\xd9\x43\x17\x10\x89\xcd\x3e\x03\x35\xd5\x37\xe0\xdf\x7b\x8f\xe5\x6e\x46\xaf\xe8\x2e\x8d\x63\xe2\xdc\x3b\xf3\x67\xce\x27\x3e\x76\x08\x41\x97\x20\xc8\x98\xd3\xc9\x2d\xec\x5e\xf7\xc3\x72\xb3\x74\xfe\x1a\x8a\xaa\xbf\xe2\xf2\xca\xdd\xfc\xdd\x35\xeb\x96\x4f\xa2\x44\x37\x0c\x8e\x96\x21\xc6\x43\x3b\x46\xb8\xd5\x47\xe1\xd2\x41\x53\xee\x26\x74\x44\xdf\xc6\xb8\xc5\xd8\xd6\x9e\x39\x33\x05\x44\x6a\xdb\x7b\xf0\x92\x7f\xd4\xb8\x7d\xe4\x17\x66\x4f\x6d\x41\x17\x07\x97\xd2\x70\xdc\x92\x85\xbf\x08\x8d\x56\xc0\x88\x76\xd8\x71\xf6\x5e\x32\x13\x25\xc6\xd5\x53\x09\xb8\x90\x86\xed\x74\x1e\xf1\x5a\x41\x2c\xd3\x46\xdd\x90\xc0\x67\x07\x32\x67\xcf\x6c\x66\xef\x64\x63\x00\x90\x72\x05\xa1\x23\xf3\x50\x7d\x90\x9c\xce\x51\x4c\x05\x14\x6f\x56\xe1\xfc\x60\x02\xf9\x16\xc2\x44\xe4\x01\xf6\x3c\x92\x1f\x36\x08\x7b\x89\x92\x4d\xe0\x37\xe4\xd3\xb8\xe4\xeb\x8b\xce\x33\xd6\xd0\xab\x12\x82\x59\x35\x2c\xd2\xcc\xb9\xec\x19\x9c\x26\x00\xa4\x11\x82\x3b\xc3\xa9\x08\x4d\x33\xc2\x79\x12\x45\x84\x47\x98\x76\x61\x70\xc8\x3f\x65\xdf\x70\x06\xcc\x03\x96\x95\x70\x10\xff\x12\x5b\x4a\x9e\x42\x7a\x5b\x7f\x91\x4a\xa6\x81\x45\x6c\xfa\x7e\xe6\xec\xf8\x31\xa6\x80\xfd\xd8\xff\x05\x8b\xca\x35\x03\x20\xb9\x20\xbc\x3c\x58\xdd\xbc\x1e\xc3\xeb\x70\x85\xfd\x85\x3b\x61\x0c\x46\xe6\x10\xbe\x4b\xfb\xd0\x2b\xc8\xf5\xcc\x06\x5c\x38\xf5\x20\x26\x87\x70\x90\x11\x51\xf7\x8e\x8c\x60\x0d\xe5\x9f\xa0\xde\xe7\xba\xc5\x97\xd1\xb7\xf2\xa3\xfc\x57\x31\x7e\x0a\x6a\x00\x90\x00\xc9\x94\xfe\x96\xc6\x19\x54\xff\xb6\x62\x68\x0f\xed\x9a\xbe\x17\x16\xcf\x90\x4a\xb2\x11\x37\x59\x91\x8c\x68\xf4\x30\xfb\x6f\x74\x26\x4e\xc2\xdd\x56\x17\x40\x6c\xe0\xcb\xf2\x67\x51\x26\x08\xb3\xe3\x2e\x51\x9f\x8b\x8e\xfb\xab\xe8\xbd\x62\x1e\x00\xe2\x08\x19\xba\x97\x59\x77\x91\x57\x6a\xef\x82\x58\xf9\x2d\x3a\x5f\x28\x56\x50\x2f\x7a\x09\x2b\x14\x42\xe9\x93\x90\x8b\x44\x5c\x54\x1e\x06\x26\x36\xd4\x96\xe1\x99\x92\xa1\x3c\x05\xa9\x44\xba\x39\x8e\x4a\x49\x97\x0d\xf8\x13\x68\x65\xb2\x0b\x00\x88\xe0\x8a\xfe\xae\x8f\x55\x23\x9a\x5c\x5b\x7e\xed\x2e\x0d\x4a\xfd\xb2\xe1\x81\x86\x2a\x78\x07\xf5\xd2\xb0\xa8\x65\x30\x84\xc6\x80\x38\x85\xdc\xa7\x69\xaf\x09\xc1\x4e\xd1\x0c\xe5\xae\x22\xf8\x6a\x56\xc6\x7e\x22\x79\x6a\x46\xfc\x39\x94\x9d\x9a\x7c\x00\x84\x04\xf5\x72\xa7\xad\x5c\xdb\x3e\xc1\xe2\x5f\x75\xad\x6d\x8a\xf2\x57\x5d\x9a\x63\x2a\x3f\x01\xb2\xda\x3e\x9d\xbc\xab\x39\xa6\x35\x04\xce\x87\x1f\xb2\x05\x57\x4f\x47\x17\x58\x03\x73\x9e\xe0\xd8\x16\xdf\x58\x1b\x41\x62\x0e\xf5\xc7\x93\xb7\x9a\xfc\x40\xa6\xe0\xb4\x2e\xb7\xfd\x44\x29\x7f\xf8\x8b\x89\x54\xf1\x6c\xa8\x4a\x41\xa8\xe1\x0d\xe8\xb9\x07\xea\x7f\xf4\x2d\x21\x31\x9a\x46\x7b\xf6\xc2\xf0\xb0\xfa\xae\x63\x55\x79\xc8\xb7\xce\x33\x39\x30\x6c\x7e\xfb\x9d\x58\x38\x1e\xd6\x96\xe4\xaf\x25\x7d\x6f\xf5\x02\x2b\x04\x78\x03\xad\x7d\x6e\xc9\x8d\xe5\xc3\xc6\xb3\x15\xe5\x4b\x2d\xf2\x0b\xd5\x97\x96\x34\x72\xd3\xea\xb1\x23\xd3\x88\x5f\x9a\xdc\x07\x8f\xc0\xdc\x5a\x8e\xf4\x13\x2b\x7f\x22\xc9\x3d\xbf\x72\xd2\x30\xbf\x77\xad\x8b\xc5\xe1\x1e\x39\xf7\xfa\xaf\x27\x2d\x76\x78\x80\x47\x82\x08\x63\x72\xdb\xae\x12\xe6\xda\x2a\x23\xa1\xfc\xca\xaa\x3f\xe5\x9c\xea\xea\x15\x58\xce\xf3\xba\xdb\x4b\x2f\x11\x77\x37\xea\x96\xc4\xb4\xdc\x6d\x49\x1f\x96\x55\xbe\x44\x3c\x1c\xd8\x93\x93\x8b\xc9\xeb\x73\x8b\xed\xc6\x61\xba\x5b\xfd\x7f\x90\x02\xda\x4c\xe3\x92\xf9\xe7\x8d\xeb\x06\xae\xe2\x2d\xb5\x90\xf6\x0e\xc2\xc5\x86\x73\x86\xb5\xa4\x14\x68\x8c\xd4\x9b\xbc\x0b\x76\x94\x71\x98\x8a\x45\x71\xd1\x1b\xe8\x11\x38\xbf\x3a\x02\x13\x10\xcf\xe6\xc7\xb3\x6e\x51\x07\xe2\x8e\x71\x12\x99\x93\xfc\x7e\x72\x5e\xb3\xcb\x00\x90\xbe\x17\xd8\xfa\x7f\x60\x59\x90\x85\x6d\x67\x71\xaf\xa1\x75\xfa\xf7\x04\x0b\x0c\x2e\xe1\x92\x32\x90\x6b\x18\x09\x14\x1f\xac\x0b\x3a\x8e\xe6\x4a\x80\xd5\x7e\x62\xb8\x92\x0f\xe6\x5d\x65\xfe\xa0\x2f\x88\x93\xb0\xe9\xac\x4a\xbf\x0b\x9c\x26\x4e\x26\x00\xd2\x8d\xc2\xa4\xfe\x59\xe8\x96\xe6\x54\xc7\x57\xac\x07\xec\x87\x3e\x05\x77\x1b\xb9\x57\x7c\x92\x70\x10\xb3\x87\x3e\x48\x3a\x8a\x3f\x8e\x5a\x4f\xb9\x4b\x3a\x57\x6b\xa1\x03\xea\x83\x3c\x39\x73\x06\xe3\x6b\x5c\x02\xab\x9b\x7d\xd4\x6f\x29\x7b\x2b\x97\x0a\x80\x14\x22\x0a\xe9\x9d\x0a\xdf\x84\xf1\xb3\xc7\x22\xd7\xe1\xc4\xda\x95\xe8\x63\x84\x7d\x22\x2a\xf6\x25\x79\x0a\x8d\x45\x48\xa7\xca\x91\xab\x49\x83\xf4\x97\x35\x5b\x29\x3f\x59\x84\xdc\x9b\xf4\x3c\xce\x8d\xd8\xad\x8c\x9b\x7c\x17\x3f\x1e\x0b\x22\x48\x00\x40\xd2\x2a\xa9\xe8\xae\x6b\x9e\x44\x19\xb4\x19\x60\x18\x1a\x51\x13\x84\x38\xcb\x08\x10\x4e\x47\xc7\x30\xcf\x50\x4b\xb0\x7b\xd8\xbd\x88\xd5\x04\x38\x17\x57\x7d\x9b\xf4\x1f\x3f\x29\x37\x85\xca\x12\xba\xc4\x16\xd1\x67\x88\xfa\xfd\x20\x8c\x0f\xe2\x7a\x00\xc4\xbb\x64\x9d\x9d\x68\xc8\x0d\xee\x32\xcb\x45\x28\x95\x77\x42\xd5\x0f\xf3\xe1\x5f\xe6\xff\x8e\x58\x2e\xb8\x4b\x99\x8f\x26\x0a\x7f\xc2\x37\xe2\x16\x89\x67\x57\x4f\x26\xce\x94\x14\xe6\x0c\x93\x77\x4a\xa9\x31\xcf\xa9\x54\x19\xc1\x6f\x11\x7d\x83\x6c\x1d\x00\xa2\xbf\x14\x47\x3a\x26\xd5\x6e\x56\x67\x9a\x06\x1a\x86\xd5\x1a\x85\xb5\xa9\x53\xbd\x99\x7b\xa7\x45\xa6\x3e\x4c\xe2\x23\x6c\xea\xa7\xb0\x5c\xf4\x06\x8d\x4b\xe5\x0b\xdc\x61\xcd\xfc\xec\x8b\x44\x93\xa6\x38\x46\x43\x5e\xa4\x69\xf1\x6b\xa1\xf9\x69\x7c\x01\x10\xbe\x51\xef\x72\x0c\x57\x6d\x75\xfc\x66\x50\xd5\x9e\xb0\xbf\x91\xed\x6e\x78\x63\x9f\xc1\x09\x87\xfa\xb6\xc6\x11\x5e\xc2\xd0\xb6\xba\xe6\x8f\xc8\x5d\x56\x6a\xc5\x1f\x98\xaf\x16\x4d\xb6\x2f\xfe\x91\x79\x30\x26\x88\xb8\xc6\x74\xda\xaf\x91\xea\x69\x3c\x06\x66\x09\x6b\x74\x19\xad\x87\x2b\xec\x43\x6c\xdd\xbe\xea\x2b\x03\x6f\xa4\xd3\xea\xc3\xfb\x6b\x59\xbb\x1a\x29\xbd\x7a\xfc\xfa\xe6\x8b\xdd\x7b\xa1\xaf\x10\x85\x9d\x4f\x2b\xfc\xd0\xab\x9d\x9e\x59\xed\xb8\xcd\xed\xf9\xd1\xaf\x08\x16\xc7\x7e\x3f\x31\xa5\xd1\xd6\x05\xac\x82\xc7\x86\xda\xd6\xf0\xf2\x17\x4b\x3f\xeb\x82\xab\x13\x46\x3d\x25\xdc\x3a\xe3\x62\x77\x56\x22\xe4\xf4\xd0\x3d\x7c\x66\xf3\xc2\x81\x8d\xd0\x4e\xf8\x96\x3e\x51\xf9\x4d\x74\x60\x4f\x5a\x16\x13\x17\xdb\x35\x21\xfa\x3d\x61\xb2\x33\xd9\x6f\x31\xf9\x83\x5d\x0b\x8e\x09\x96\x1a\xfd\x6c\xc7\xcb\xc5\xab\xbb\xb4\xbb\xab\xb6\xad\x84\x4b\xdc\x6b\x7f\x2d\x77\x61\xde\x87\xe4\x8d\x3a\x70\xdf\xa1\x6b\x16\x4f\x82\x92\xe1\x61\x43\x9a\xf2\x63\xa8\x8e\xfe\x17\x59\x02\xec\xea\x5e\x4c\xcc\x1c\xbc\xbe\xeb\xbd\xdf\x3f\x64\x9a\xe3\xc3\xb8\x99\x82\x45\xc6\x36\x27\x93\xf2\xb1\x56\x64\xee\xa6\xfe\xd3\xf0\x5c\x19\x4b\x77\x83\x16\xf1\x22\x19\x95\xb0\xc3\x24\x3a\x73\x0b\xaa\xa5\xe5\x3d\x7b\x36\xf6\x5d\x65\x15\x67\x98\x38\x92\x75\x9c\x37\x9e\xda\x10\x75\x8c\xef\xca\x58\xe9\xc3\x10\x68\x58\x3b\x00\x90\x8f\x08\x3d\x3b\x34\xe4\x40\x48\x88\xe9\x2a\x25\x03\x5a\xa4\xe8\xa7\x72\x61\x8d\xdc\x7e\xda\x53\xa4\x8e\xf8\x94\xc1\xc7\x9c\x6b\x51\xb0\xdc\x09\x33\x2b\x9e\xb1\xd7\x93\x85\x59\x2c\xee\x42\xda\x8d\x28\x2b\xaf\x9c\x79\xdb\xa7\x8a\xff\x2f\x7b\x04\x00\x79\x8b\x70\x59\xbb\x85\x58\x0c\x7d\x6f\x9a\x44\x32\xc1\x4e\xcb\xff\x26\xff\x81\x6c\xe7\x7c\xa3\x2a\x31\x2c\x62\x33\x3d\x01\xcf\x6c\x19\xc7\x78\x45\xe2\x54\x68\x58\x5b\xa8\x9a\x2c\x7f\x4e\x23\xa3\x33\xaa\x8c\x2b\x67\x97\xfa\xa4\xf0\x51\x9c\x53\x00\xc8\x27\x88\xe4\x8e\x03\xd8\x23\xe8\x56\x03\x1a\x9f\x87\x7d\x28\xa3\x12\x1e\x10\x02\xd9\x1b\x48\xc7\x48\x42\x42\x36\xe5\x20\xe5\x45\xb3\x07\xed\x00\x1d\x51\xbe\x83\x71\x80\x79\x3b\x53\xc0\xea\xe4\x34\x45\x3e\x62\x9f\xe5\xa9\x7c\x7c\x79\x3e\x7c\x0b\x00\xb2\x02\x89\xd5\x1e\x88\x4a\x21\x8f\xe9\xee\xa3\xbf\x53\xbb\x25\x9f\xb1\x2f\xe9\xe9\x2c\x0c\x61\x06\xe3\x3b\xde\x9f\x54\xcf\xba\x01\xf5\xa0\xb4\x73\x36\x95\xdd\xa3\x9d\xe0\x39\x32\xee\x31\xce\x08\x18\x91\xad\xac\xe9\xa2\x49\x3e\x9e\x9c\xe3\xa2\x2d\x00\x48\x45\xb2\x23\x36\x23\xec\x2e\xa7\x57\x5b\x8f\xf8\xc1\x5d\x23\x76\xa0\x17\xf0\xd6\x33\x67\x62\xfb\xf9\x63\xd8\xcf\x84\x69\x42\x8f\x26\x1f\x92\x4e\x94\x5f\x36\x95\xf2\x52\x2c\xcf\x28\xa3\xcf\x90\xec\x8d\xcc\x66\xd0\xa4\x67\x7c\xa6\xb1\x8d\xb2\xa9\x00\x48\x56\x2b\xee\x9a\x1f\x43\xa3\x94\x74\xd5\x8f\x16\xbe\xf2\xac\x50\x0b\x7f\xa2\xf2\xa5\x17\xa0\xda\x54\x75\x18\x24\xb6\x4c\x35\x0c\xd9\x87\xff\xa1\x7a\x50\xf2\x1f\x69\x99\x3a\x2c\xdd\x42\x79\xa3\xa6\x46\x3c\xa6\xe5\xab\xd7\xfa\xc4\x33\x3f\xaa\x45\x00\x88\xb7\xab\x57\x1b\xb7\x36\x9c\x6d\x85\x29\xbe\x35\x39\x6d\x3b\xf9\x1b\x5a\x50\xb6\xf1\xd4\x11\x44\xb6\xb5\x1e\xf5\x02\x1d\x6e\x59\xd3\xa0\xc1\x79\x99\xdf\x97\x8c\x27\x3c\x31\xe7\xa6\xdd\x22\x97\x99\x5a\x23\x8c\x94\x25\xc6\x7f\x7d\x12\x18\xaf\x0d\x57\x01\x10\x7b\x6a\x7f\xe9\x6f\xd5\xbd\xe9\xb7\xc9\x61\x90\x9d\x7d\x19\xbc\x05\x50\x67\xcf\x69\x4a\x09\xac\xb5\x3b\x17\x79\x00\xe9\xec\xdc\x59\xaf\xc7\x0c\x3a\xe7\x15\x67\xe1\xed\xed\xbd\x69\x30\xd2\xd4\xb6\x09\x11\xd5\x64\x91\xfd\x9c\x4f\x0d\x23\xda\x5a\x0e\x80\xa8\x4f\xff\xaf\x7e\x66\x5d\xcb\xe2\x63\xb2\xed\x10\xbf\x91\x40\xee\xaa\xa6\xbf\x86\x1a\xc8\x67\x5a\xfe\x18\x60\x21\xeb\x10\xff\xf4\x19\xeb\x63\x31\xa0\xa7\xaf\xe8\x3b\xee\x5b\xd7\xfa\xb4\x4c\xa2\xc5\xf9\x7b\x44\x35\xe9\x6d\xc7\x5c\x1f\x2e\xfd\x64\xeb\x4c\x00\x44\x8d\x86\x9d\x3a\x5b\xed\xbb\x15\x21\xb2\xdc\x86\x81\x65\x29\xdc\xca\xa6\x96\xd1\x28\xb2\xaa\xa5\x7e\xe4\x17\xd2\x07\x81\x18\x3a\x5d\x0f\xd0\xec\x01\x67\xd1\x33\x1c\xb5\xaf\x25\xad\x80\xf0\xb9\x67\x6e\x84\x90\x84\xe9\xdc\xe7\xb3\x9f\x9e\x6a\x57\x03\x1f\xe1\x5b\x63\x82\xf9\x2e\x3b\xb3\xb6\x57\xb5\x9e\x7d\xaf\xe1\x3f\xc1\x55\xce\x5a\x68\x35\x4d\xcc\x75\xc0\x76\xa2\x89\x3c\x1b\x2a\xb3\x61\x98\xdf\x85\x3d\x51\xbc\x49\xb0\x86\x48\x4c\x5d\x2a\x3c\x44\x79\x3f\x7f\x86\xc8\xcc\xf0\xf1\xac\x91\x6c\x63\xb9\x00\xa0\xdc\x2e\x14\x98\x43\x99\x8d\x90\x40\xe5\x4f\x56\x12\x34\x4e\xb0\x88\x1d\x0f\x4b\xa2\x3e\xe5\x64\x23\xeb\x50\xf7\xb8\x18\x8c\xa3\x21\x94\xd7\x86\xbf\x54\x5c\xcc\x3f\x4e\x0e\x4b\x85\x08\xbe\xd0\x88\x61\x8f\x85\x63\xcc\x0c\xcf\x1c\x49\x12\xeb\x11\x00\x4a\x91\xf0\x95\x09\x4b\xe7\x42\x4f\x29\xcb\x19\x36\x98\x83\x3f\xc0\xdc\x87\x2c\xa4\x96\xb2\x9e\x61\x02\x50\x55\x9c\x78\xbc\x67\xfd\x2a\xae\x86\xe4\x51\x74\x8b\x77\x9d\x3a\x33\x75\x82\x20\x94\xe1\x19\xb6\x4d\x38\x91\x35\xe2\x99\x20\x5e\xc1\x99\x00\x80\x72\xbe\x68\x8b\xa1\x95\x12\x86\xfa\x2c\x5f\x49\x65\x61\x6b\x79\xbe\xb4\x1b\x78\x13\xf9\x23\xa3\x8e\xf8\x10\x19\xc9\xbc\x4f\x69\xa8\x5b\xcb\xa6\xd3\xce\x16\x4d\xe0\x7c\x66\x56\xa7\xd0\x78\x4c\xf6\x9e\x30\x2c\x1f\xc3\x3d\xe9\x19\x21\xa2\xf1\x8e\x03\xa0\x60\x48\x56\xeb\xe7\x10\xb6\x93\x4e\xca\x72\x48\x55\x94\xa5\x9c\x73\xe4\x5f\xb4\x26\xd2\x19\xea\x7e\x46\x28\x62\x16\xdd\xc2\x9a\x58\x7b\x98\x59\xc3\x7e\x5d\x58\xc0\x9e\xc6\xbd\x95\xfc\x84\xb3\x99\xbf\x3b\x2c\x98\xbb\x4e\x58\xe9\x99\x2a\x9c\x2b\xfc\x00\x80\x7c\x89\xec\xb4\x56\x83\xdd\xc3\x4e\x96\x8c\xe1\xc5\x1c\x24\xdb\x4c\x84\x71\xc5\xc4\xe5\xe4\x7a\xde\x36\xf8\x0c\x6a\x13\xff\x57\xcd\x1d\x7a\xbd\xb0\xb2\xc0\xc4\xcc\x12\x8d\x24\x63\xd9\x40\xfc\x32\xf4\x31\x67\x9c\xd4\xc5\xb3\x9a\xff\x4c\x0a\x07\x40\x76\x4d\x71\x46\x5d\x85\x7c\x28\xb7\x8b\x76\xa0\xff\x55\x8c\x63\xf6\xe2\xfc\x15\x48\xfc\x53\x42\x9d\xe2\xb7\x96\x4e\x52\xaf\x32\xaa\xba\x9b\x72\x49\xd9\xb5\x48\x47\xfb\x57\x05\x92\xb6\x30\x6e\xaa\x78\xa1\x4e\xe6\x65\xd5\x05\x4f\x22\x8f\xaa\x3a\x09\x80\xf4\x4f\x35\x5b\xe9\x0e\x7b\x61\x79\x21\xd8\x87\x4c\xb2\xc0\xe8\x37\xd0\xed\xe6\x23\xb8\x46\xec\x57\x73\x5e\x73\x12\x81\x6d\x3a\x59\x45\x25\xdd\x33\x95\xe5\x3b\xa9\x89\xc6\x8b\x49\x93\xe8\xb1\x46\x7c\x68\x06\x23\xd4\xe8\xe6\x29\xe5\x42\xf4\x47\x00\x90\x26\x68\x37\xca\x2b\x9a\x4f\xf5\x48\xf8\xf1\xf0\x92\x6e\x28\x8d\x83\xbc\xd0\x35\x19\x3b\x03\x53\xe3\x3c\x08\x9d\x8b\xbb\xd3\xc1\xad\xd4\x13\x69\xed\xe1\x79\xf7\xc8\x0f\x1c\x4f\x16\x3a\xa8\xef\xec\xbb\xe6\xfd\x4b\x7b\xd7\x7a\xca\xd3\xc6\x19\x34\xdf\x02\x40\xb2\x5b\xaf\x95\xed\x6f\x0e\x1d\x92\xf3\x56\xc0\x86\x07\x01\xf5\x05\x72\x7e\x3f\x16\xb3\x0c\xbd\xae\xf7\x50\xd3\x11\x5c\x5a\x4f\x40\x65\x32\xe1\x52\x97\x2c\x6f\x05\xb9\xca\xf9\x64\x21\x83\x4a\xea\xa0\xcf\xfb\x9b\x46\x68\x7b\xe4\xb9\x9c\x93\x6a\xfd\xdf\x3c\xc9\x31\x64\xca\x60\xd0\xb5\xa3\x1b\x78\xc5\xb0\xe9\x8b\xdf\x52\x9d\x88\x81\x11\x6f\x0c\x0c\xed\x37\x14\xdf\x64\xc7\x2e\x1d\x28\xa8\xf4\x22\x64\xf6\x61\xf3\x3a\x49\xfb\x7a\xcc\x0b\x39\x94\x2b\x5d\x97\x43\x3d\xa8\xa7\x9d\xd5\x9e\xf7\xd8\x9b\x6c\x77\x00\x90\x4c\x34\xec\x51\xbe\x12\x7e\xaa\x7d\x29\x9c\x2b\x6a\x84\x24\xd1\xef\x8a\xce\x41\x99\xb8\x58\x71\x09\xec\x00\xf4\xaa\xf8\x3a\x2a\xbe\xf2\xa4\x84\x87\xdd\x90\xd7\x27\x0d\x20\xa6\x2f\xf0\x91\x3e\xa6\x0c\x86\xfc\x29\xd3\xd3\x05\x53\xf2\x15\x27\x98\x03\x00\xa8\xef\x09\x5f\x28\x27\x09\x6a\x20\x11\x02\xba\xe0\x32\x34\x8e\x5e\x26\x64\xc3\x42\xb1\x23\xa2\x29\xc8\x44\x68\xb9\xe8\x00\x06\x55\x59\x29\x96\xe3\xfb\xf2\xe2\x24\x05\xa4\x7b\x89\xa7\xa4\xf3\xa8\x1f\x43\x8e\x4a\x2f\x31\x5a\xa7\x64\x29\x6a\x58\x14\x00\xd4\x4b\x44\xe5\x8a\x20\xde\x06\x68\x07\x7f\x1d\xbf\x16\x06\xa1\xad\x17\x4c\x43\x4e\xc2\x8e\x13\x9c\x45\x5f\x6d\xda\x2b\x1c\xc1\x1d\xaa\x38\x27\x92\x13\x77\xe5\x1e\x12\x63\x28\x7b\x13\x0d\x92\x46\x7a\x7b\xc8\x72\xe9\x64\xe6\x93\x29\x59\xf2\xe3\x6c\x03\x00\xea\x1a\xd1\x17\x99\x91\xcd\x41\xd9\x79\x01\x9c\x3a\xcc\x39\x6a\x18\xb7\x06\xf7\x15\xbd\x91\x07\x21\xd6\x37\x76\xf0\xa9\xe4\xe3\xe5\xa7\x05\x2a\x5a\x5e\xce\x13\x61\x37\xe3\x68\xc2\x6b\xd1\x3a\xf6\x8c\x10\x9a\x98\xc0\xf9\x31\xa5\x5a\xd6\xcb\x2b\x04\x40\xd5\x23\x39\x2f\xf9\xc2\x08\x20\x3e\xe1\x9c\x67\x96\x92\xf7\x51\xc6\xb3\xba\xa8\x42\xd4\x2a\xf6\x0d\x7a\x15\x64\x84\x1b\xc1\xcc\x28\xfb\xca\xe3\xb1\x63\x73\x52\xf9\x3b\xb8\xf3\x12\x54\x82\x7f\x78\x3f\x42\x72\x85\x1b\x05\xf2\x29\x7c\x69\x93\x50\x02\x80\xf2\x9c\x6c\x4c\xbc\x93\xf2\x93\x79\x8d\xdd\x4f\x53\xb1\xbd\x48\x6f\x18\xe3\x39\x39\xc8\x25\x4c\x0d\xb7\xad\x61\x0b\x7b\x22\xef\x6d\x59\x3c\x47\x2b\x68\xcc\x6e\xe7\xbe\x10\xee\x4b\xf0\xe1\x17\x89\x7d\x43\xfc\xf9\x3f\x25\x11\x53\x36\x48\x7c\x24\xaf\x00\x50\xbc\x55\x1c\x14\xda\x89\xa3\xd2\x6e\x66\x1f\x39\x4c\x36\x8b\xe8\x4b\x39\x2d\x1b\x40\xb8\xd0\x0c\xf2\x59\xf5\xe5\x8c\x52\xf9\xa6\x92\x9f\xcc\x5f\x8a\xfc\xac\x21\xf6\xa8\xe2\x6a\x3c\x97\xeb\xaf\x64\x05\x5f\xe6\x9e\x50\xde\x9b\x72\x41\x34\xa0\x4a\x00\x40\x31\x59\x9d\xc9\x67\xe3\x94\xa6\x10\xfa\x41\x42\x93\xf1\x0c\x5e\x46\xca\x32\x32\x60\x6d\x94\x08\x63\x70\x9d\x3b\x2d\xd0\x70\xbb\xf8\x19\xc3\xc5\xd0\x9b\xb9\x9f\x79\xcd\xd0\x18\x77\x83\x8d\x35\xc4\x05\x1b\x38\x13\x0d\xe3\xa7\xdc\x13\xda\x75\x7b\x00\x90\x43\xb4\xf5\xdc\x7f\x30\xba\xce\x7c\x5a\x0b\x4e\xe5\x2c\xc4\xc5\x11\x0c\x1d\x49\x2d\x2c\x92\xae\x3d\xbc\x36\x80\x62\x6e\x0b\x2a\x9e\x45\xeb\x72\xcc\xce\x9c\xcd\x30\xda\x23\xe2\x70\xac\xd0\x56\x58\x70\x32\xeb\xa2\xcd\x3e\xe5\x91\xe0\x9a\x49\x0c\x80\xec\xb2\xde\x9d\xcb\x44\x9f\xeb\x1f\x47\xbd\x8d\x3d\xd7\xbb\x0b\xbb\x05\x7f\xaf\xa7\xa1\xc5\x85\x78\xb7\xeb\xdf\x9a\x13\xe4\x27\x9d\x43\x45\x77\xa8\x9f\x9d\xb5\x19\x6f\xe8\x1f\x3a\xbc\xe2\xf2\x99\x3d\xed\x13\x83\xe7\xb3\xf2\x1d\xa8\x29\x6f\x04\x02\x8b\x1b\x00\x32\xab\x7e\x3f\xd7\x07\x9d\x3d\xfc\x8b\xaa\xc3\xe6\x0c\x49\xb1\x30\x7c\xed\xc0\xcd\xe6\xa3\xc4\x92\xfe\xfc\x9a\x41\x72\x59\xef\xca\xa2\x43\x54\x5c\x4f\x48\xc6\x23\x3a\xba\x6b\x7d\x5c\x01\xe3\x7b\xa7\x38\x38\x9d\xb9\xa4\x7d\xd4\x23\x90\xff\xda\x5a\x0a\x80\x6c\x8e\x21\x97\x29\xd7\xce\xac\x43\x12\xbf\x6b\x0e\x42\x06\x91\x77\x34\x4e\xe8\xe1\xc6\x08\x0d\x0f\xf6\xa6\x62\x4c\x43\x44\x65\xe7\x8f\x69\xc8\xd8\xde\x94\x2d\x1a\x35\xe1\x5b\x64\xa1\xe6\x24\x25\xca\xff\xae\xb6\x99\xb6\xcc\xf5\x9d\x6e\x0e\xf3\x3a\x00\xba\xa3\xa2\xa7\x8c\xaf\x6a\x1a\x04\x4a\x54\xa9\x0b\xa1\xb5\x48\xaa\x7a\x11\x2c\x0d\xb2\x4b\x5d\x8c\x8c\xa8\x20\xab\x5b\x30\xa9\xf9\x02\xb5\x14\xdf\x98\x82\x55\xaf\x27\xc9\x23\xa7\x6a\x26\x51\x89\xfe\xe7\x35\x4b\xe9\x43\xae\x3f\xb4\xeb\x59\x16\x00\x74\x1a\x71\x20\x83\xad\xfc\x0d\xaa\x22\xbc\x57\x9e\x81\xa5\x20\x9e\x28\xff\x46\xdc\x87\x64\xa9\xa6\xa3\xbb\xca\xdf\xab\x8a\x70\xd4\xfc\xa9\x2a\x2d\xb1\x2a\xc5\x43\x75\x96\x92\x1c\x71\x5f\x9d\x4d\x7b\xec\x7f\x50\x7d\x9d\x71\xdf\x6d\x92\x36\x8c\xdd\x09\x80\x2e\x41\xbc\x92\x9e\x28\xeb\x44\x01\xfc\x5e\xd9\x3f\x98\x44\xf8\x4e\x39\x1a\xd7\xd2\x10\x2d\xff\x8d\xb0\xbe\x7c\xbc\x22\x94\xec\x9f\x97\xab\x68\xa7\xb6\x27\x63\x94\x80\x31\x31\x82\xa1\x74\xb0\xb2\xfd\x97\xab\xe6\xb0\xef\xb9\xc5\x68\x00\xaf\x08\x00\xad\x58\x9a\x4d\xbd\x23\x3e\x4b\xe8\xc5\x69\x25\x25\x24\x25\x6c\xaf\xe4\x14\xa5\xa1\x7e\x91\x14\x41\x4b\x2e\x4b\x90\x7e\x65\xc4\xe4\xda\x65\x1d\xac\xc8\xa4\x4b\xf2\x70\x4e\x78\x44\x80\xfc\x02\xf7\x3f\x7f\xa7\xa2\x91\x5f\xec\x06\x53\x5d\x11\x6a\x00\xd0\x6c\x95\x7b\x51\x08\xc2\x59\xf4\xa3\x58\xa8\x70\x3b\x33\xb9\x65\xb7\x08\xc6\xea\xa9\x43\x88\x03\xd9\x3f\x4b\x91\xe2\xe7\x5c\x59\xce\x1d\xc9\x4a\xde\xb7\xa4\x1c\x29\x5c\x20\x0e\x3f\x25\x0b\x14\xbe\xf2\x37\xca\xfa\x44\x4f\xdd\x46\x94\xa3\xd2\x71\x00\xa8\x9f\x2b\x6e\x92\xd6\x72\xb7\x89\x96\xa3\xf7\xf1\xc8\x62\x71\xf3\x4c\x7e\x83\x24\xbc\xe6\xb3\x20\x4f\x72\xbf\x64\xb6\xb0\x5a\xba\x32\xfb\xbc\xa8\x40\xc6\x58\x48\x16\xc7\xcb\x53\xc2\xb3\xc4\x6f\x14\xe3\xfd\x4b\x24\x30\x85\xc4\x6d\x4c\x11\xa9\x1c\x05\x40\x75\x5f\xed\x47\x78\xca\xda\xaa\x43\xa0\xc2\xd9\x9b\x75\x15\x4d\xd7\x39\x87\x74\x91\xd5\x63\xdc\x3b\xba\x88\x62\x7f\xbe\xbf\x2e\x31\xdb\x55\x10\xaa\xcb\x5a\xb0\x4b\x58\xae\xab\x99\x7f\x5f\xe4\xa5\x53\xfb\xcf\x12\x6d\xd4\xe9\xdd\x3e\xca\xa7\x6a\xf5\x00\xa8\x42\x34\x6f\xf1\x47\x18\x26\xc7\x6a\xc4\x67\xe6\x71\xfb\x8b\xc6\xbd\xac\xef\xf6\xe8\xaa\x73\x9c\x94\x56\x7d\x11\x84\xcb\xb7\x3d\xca\x2a\xe3\xed\xb3\xd5\x2c\xc8\xe0\xbf\xb6\x9e\x9b\x4f\x13\x5c\xb4\xb2\xfd\xee\x0b\x1d\x96\xd2\x89\xae\xb2\x3a\xc3\x6f\x00\x28\x47\x74\x1c\xbc\x37\xfd\x65\xe7\x25\x84\x80\xe9\xe3\xfc\xab\xb1\x98\x55\xd3\xf1\xa1\x8a\xc3\x56\x77\x4c\x29\xf2\xe1\xec\x6b\x0f\xcb\x9a\xc1\x73\x6f\x6b\x5c\xe0\xcf\x2f\x70\x0c\xcf\x87\x08\x62\x1d\x3e\x7e\x77\x04\x3f\x6c\xbb\x27\x4e\x91\xfe\x6d\xf2\x02\x40\xd9\xa0\xf7\xc6\x19\xe8\xc2\xbe\x32\xc4\x14\x86\xb9\xb7\x1c\xf2\x2f\x73\x67\x4f\x4a\x55\x06\xeb\x5e\xf7\xec\xc2\xf7\x9c\x49\x5d\xae\x59\xe3\xb9\x88\xce\xc9\x0b\x7c\x78\x7d\xce\xc4\xf9\x48\xbe\xba\x23\xc9\xef\xa3\x00\x62\xdf\x37\x31\x4b\x4a\x36\xa7\x01\xa0\x78\xae\xef\x45\x5c\xb4\xdf\xab\x2f\x6d\x8a\xb1\x7b\x36\xe6\x54\xff\x6a\x6d\x6a\x4e\x2c\xa9\xb6\x75\xc1\x33\x72\xdd\xac\xf7\x50\xe4\x94\x60\xeb\x22\xec\x92\x18\x1f\xcb\x19\xc2\xcd\xe0\xdd\x96\x6d\xe4\xd3\x9e\x75\x96\x5b\xd4\xef\xe3\x04\xa6\x0e\x76\x2c\x00\xc6\x54\xc9\x42\x44\x43\xab\x02\x72\xbe\xf1\x84\x6d\x3f\x74\xa4\x7a\xa3\xcd\x0b\x46\x2a\xfe\x65\x65\x21\x33\x72\x8e\x58\x6e\x62\xe2\x93\x9f\x58\x1a\xf1\x09\xd1\x4f\xcd\xef\x48\x09\xc1\x4b\xcc\x2f\x29\x8f\x3d\xe1\x96\x19\xb4\x9b\xe3\x3a\x4d\x41\xec\xfd\x00\x18\x5e\x4b\xf2\xe1\xe7\x6d\x01\x50\x5d\x63\x93\x95\x00\x8b\xab\xae\xb5\x9c\x44\x5c\x2a\xde\x68\x29\x44\xb3\x73\x38\xe6\xb3\xb8\xc4\xe4\x51\x33\x92\xf0\x2b\x7a\x8b\x79\x2a\xf9\x74\xb0\xcd\xec\x43\x2b\xf0\x24\x98\xf3\x18\x2e\xe3\xb6\x18\xfb\x38\x9b\x01\x30\x0c\x48\x96\xc3\x5e\x98\xe7\x23\x21\x10\xa9\x69\x0f\x7a\xa8\x4a\x61\x42\x62\xaf\x14\xbd\x34\x8d\x23\xcc\xc9\x3e\x66\xdc\x4e\xb2\x24\x7b\x1a\xe9\x94\xaf\xd1\xb9\xc6\x0c\x3a\x31\xb8\xdc\x58\xc3\x14\x7a\x0a\x8d\x7a\xd6\x5f\xe3\x5e\x19\x04\x7c\x08\x00\xfa\x5b\xd2\xef\x2d\xcb\x0d\x7d\x78\x4a\x03\xdd\x90\x44\x24\x55\xae\xd3\x3f\x21\x57\x14\x45\xe9\x77\x53\x53\xb3\xfd\xf5\xdd\xf4\xb4\x24\xad\x9e\xc9\xcc\x8f\xba\xac\x6f\x62\x2f\x0a\x0e\xd6\x2b\xb8\xd3\x3c\x2d\xfa\xfd\xbc\xc2\xf1\xb1\xfa\x6c\x91\x1d\x00\xdd\x4f\xf9\xea\x66\x93\xce\x85\xfa\xad\x5e\xa1\x3d\x40\xb7\x55\xdc\xd4\xda\x98\x13\x0a\xe9\x5a\x13\xcb\x96\xc5\xd0\x5a\x39\x21\x0b\x3f\x68\xb5\xdc\x03\x51\x24\xad\x8a\x5f\x37\xfb\xad\x76\x93\xe0\x86\xe7\x32\xdd\x24\xe1\x9d\xf1\x0c\xdd\x6c\xe9\x62\x00\x74\x49\xca\x6c\xa8\x5c\xa5\x16\x4c\xaf\x5b\xa4\x52\x0a\x3e\x95\xef\x54\x69\x84\x97\x0b\x4a\x54\x47\x45\x7b\x32\xf1\x6a\x57\xf1\xa6\x85\x7e\xea\x58\xc9\xa6\xc8\x5d\x6a\xa4\x74\xe3\xec\x76\x35\x57\xb6\xd1\x73\x50\x7d\x45\x8e\x1a\x7f\x5c\x33\xa4\x34\x01\xa0\x9d\xab\xce\x6c\x5c\x26\x3f\xa7\x72\xd6\x7c\x96\xdf\x53\x9d\x2d\x5b\xa9\x98\xa4\xfa\xb9\x48\xaa\x68\x56\x57\x64\xec\x51\x1c\x53\x6f\x58\xa0\x55\x4e\xd3\x4c\x8d\xcc\x55\x92\x34\x92\xd9\x65\x4a\x9d\xe6\x95\x67\xa7\x2a\x4a\x3b\x73\xfc\x4f\xb5\x4c\x73\x06\x00\x0d\x54\x73\x0a\xb2\x49\xba\xd6\x72\xb8\xfa\x97\xf4\xb9\x45\x57\x7a\x42\x96\x64\x49\xce\x3f\x2d\x33\x98\xdf\x67\x94\xc8\x6e\x9a\x0f\x2e\x48\x96\x97\x9b\x87\x22\xe7\xc8\xb7\x99\x1d\xb3\x33\xe4\x5f\xcc\x03\x9e\xdb\x14\x9f\x8d\x0f\x5d\xd2\x55\x6b\xf5\xff\x73\xf3\x98\xce\x0f\x52\x29\xb9\xee\x70\x56\xaf\x94\xce\x72\xcc\x2d\xa5\x4a\xa5\xf6\x15\xf9\x6a\xe9\x29\x7b\x5c\x86\x97\x2c\xa0\xf5\xe8\x82\xa9\xb2\xde\x56\x41\xa4\x9b\xdc\xb5\xb5\x60\x76\xb4\xbc\xda\x76\xde\x73\xbb\x82\x6c\x7e\xe1\x92\xaf\x2a\x32\xac\x06\x40\xad\xd2\x75\x41\x5c\x25\xf3\x9c\xc7\xab\x31\x12\xae\x33\xbd\x34\x42\x32\xd6\x31\x9c\x5f\x27\xf5\xeb\x70\x49\xff\x57\x8a\x6b\x17\x2f\x00\xd2\x87\xed\xd3\x22\xdd\x65\x8d\x6d\x63\xb3\x33\x64\x9d\x0e\x81\xe7\x45\xf9\x7e\xeb\x4a\x17\x8a\xf2\x98\x71\x25\x00\x6a\x3f\xbd\x4f\xc5\xe8\xc0\x60\xfd\xb6\xe2\xf8\xbe\x1f\x8d\x7d\x79\xb3\x7b\xad\xcd\xfc\xf4\xf2\x9e\x1c\x78\x4b\xe2\xcb\xee\xf1\x28\x4c\xe4\xc7\xce\x3f\xb0\xac\x90\x8b\x9d\x1e\x04\xb6\xaf\xd2\xf9\x88\x3c\xd7\x3d\xb7\x6d\x0f\xcd\x0e\x80\x2d\x83\x8b\x07\xc0\xbc\x48\xaa\xad\x50\xf4\x47\x37\x4e\x2a\xfa\xd9\xbb\x19\x7a\x3c\xf7\x45\x0f\x14\x26\x4c\x9f\xd5\x1d\x8a\x9c\x9f\x78\xa2\x6b\x3c\xfa\x4b\xe4\x1d\xe7\xbf\xb8\x5b\x21\xc7\x9c\xb1\xc4\x55\xbe\x4a\xe7\x14\x4a\xa0\x3b\xcc\xf1\x85\x9e\x0f\x80\xf5\x08\xf7\x38\x00\xa6\x7f\xa4\x94\x8a\xca\xde\xbd\xd0\xae\xa2\xdf\x7b\x10\xb0\xf9\xb9\x1b\xba\x67\x21\x36\xa5\x3d\xeb\x1a\x8f\x8e\x4d\xec\x73\xfe\x8b\xbd\x14\xb9\xaf\xe3\x3b\xc1\x10\xb2\xb9\x23\x97\x3c\xcf\x57\xd7\x31\x87\x8a\x77\xe7\x3b\xe6\x33\x6a\x01\xb0\xa6\xf0\x06\x01\x30\x75\x4a\xd7\x95\x6b\xba\x03\x11\x97\x8a\x02\x3b\xef\xa2\x3d\x73\x67\x39\x7f\xc7\xe6\xa5\xd1\x3a\xce\xe1\xb5\x89\x71\xed\x4f\x88\xb7\x23\xa9\xed\x13\x28\xf9\x21\xca\x36\x18\xad\xcb\x57\xd8\x96\xc3\x60\xb9\x2f\x6e\xe5\xb2\x7d\x00\xb0\x4c\x12\xba\x00\x60\x3c\x2c\xbb\x52\x76\xd7\x09\xc5\xb5\x17\x52\x3a\xf0\x04\x7a\x0e\xaf\x9d\x45\x2a\x4e\xbd\xde\x36\x40\x59\x90\xb0\xd5\x31\x46\x5b\x10\x39\xd9\xe1\xce\xc8\x0d\xc9\xb7\xd3\x59\xa9\xbe\x7c\x7b\x11\xfb\xb9\xfb\x59\xeb\x16\x1e\x1e\x00\xd3\x15\xf1\x31\x00\x0c\x8f\x15\xd5\xa5\x1f\xdb\xe7\x53\x38\x05\x2b\xdb\x66\xd1\x40\xf6\x39\x47\x22\xdd\x94\x5a\x68\x97\x31\x03\x12\xd2\x5b\x2f\xb0\x0e\x46\x6c\x6a\x0d\xe4\xb0\x43\xdc\x6c\x26\x9e\x87\x2f\xcb\x06\xe1\xb7\xbb\x7f\xb7\x8c\x17\x7e\x02\xc0\xb8\x51\x46\x01\xc0\xe0\xa5\x3c\x5e\xb2\xab\x75\x13\x57\xb5\x68\xb3\xed\x2f\x5e\x77\xb6\x87\x2d\x99\x3f\x9a\xd2\x6f\x5d\x2b\xd8\x12\xbf\xd4\x1a\x2a\x1c\x8b\xc8\xb5\xf4\x8b\x7e\x05\x9f\xb6\xcc\x92\xcc\xf7\x15\x9b\xcf\x4a\x73\x27\xd5\x19\x2f\xcb\x89\x00\x18\x82\x95\xdb\x01\xd0\x3d\x53\x6b\x8a\x0f\x58\xfe\x96\xfd\x97\x7f\xd7\x52\x26\xb7\x67\x11\xcc\xbb\x14\x53\x53\x66\x9b\x93\x15\x83\xf1\xe5\xa6\x93\xca\xb4\xf0\xcf\xa6\x66\xe5\xab\xe0\x41\xe3\xdf\xaa\xa5\xbe\x52\xe3\x4a\x35\x74\x52\x9b\x21\x46\x93\x04\x80\xee\x87\x86\x02\x80\x6e\x9a\xe6\x6a\x71\xb0\xe9\x99\xa1\x25\x3f\xd1\x54\x60\x50\x65\x1e\x32\x1e\x34\xb4\x25\x77\x1a\x4b\x0d\x9b\xe2\xde\x19\x9e\x18\x6e\x85\x1f\x34\x98\x8c\x51\xc1\x3a\x43\xbe\x51\xef\xab\xd5\x7f\x32\xd2\x27\xed\xd0\x3d\x36\x04\x81\x00\xdd\x4c\xdd\x2e\x00\xb4\x1c\xed\xcb\xa2\x6e\xe3\x57\xcb\x91\xbc\xdb\x46\x9c\xe5\x50\xa6\xd2\xf0\xc2\xb2\x39\x19\x6a\xe0\x59\xd6\xc6\x9d\x35\x4c\xb0\x1c\x08\xdf\xa8\xdf\x66\x79\x1d\xac\xd3\x73\xac\x71\xbe\x03\xfa\x60\x8b\xdf\xa4\xbb\xba\x7c\xe3\x35\xb0\x50\xbb\x4e\xbf\x19\x00\x6d\x8c\xae\xaa\xc8\xcf\x18\x65\x1f\xce\xb3\x1a\xfa\xed\x96\xcc\x5a\x43\xa8\x9d\x98\x5c\xa0\x5f\x6e\xaf\x8a\xfb\x4d\x3f\xdf\x5e\x1f\xbe\x43\xf7\xd0\x2e\x0e\x1e\xd4\xad\xb4\x67\xfa\x5e\xd4\x65\xda\xaa\x26\xcf\xd1\x9a\xcc\x95\x80\xa1\x0d\x31\x74\x01\xa0\x39\xa5\x3b\x50\x38\x7e\xc9\x92\xfa\x5b\x39\x63\x23\x67\x1a\x97\xa5\x4f\x1d\xf6\x6e\x26\x2f\xb0\x0f\x8e\xc0\x53\xa2\x35\x03\xf9\xa8\x79\xf3\x9e\xf4\x8f\xc7\xfa\x06\xba\xf5\x45\xe2\x5f\x7a\xaa\x7b\xb9\xa4\xbd\xae\x79\xce\x50\xba\x07\x00\xad\x0f\x79\x62\x00\x2c\x51\xd2\xcf\x05\x0f\x16\x67\x36\xce\xcd\x59\x3f\xac\x85\x1e\x4e\x7b\x31\xf8\x14\xd6\xbc\x80\x33\x60\x42\x7c\x88\x66\xf5\x67\xa3\xd7\xcf\xbb\xd7\x37\x15\xc7\x0d\xf4\xec\xcd\x21\xfa\x79\x9a\x7a\x9c\xe4\x15\xae\xe8\x0e\x3c\x7d\x13\x00\xad\x38\xde\x01\x00\xcc\x63\xd2\xb1\x82\x2d\xc3\x57\xa0\x8b\x73\xe4\x43\x49\x30\xef\xb4\xbd\x03\x5b\x11\x9a\x05\x95\xfd\x44\xd4\x5f\xd1\x35\x7d\xf1\x58\xfe\xbc\x33\xbd\xd3\x08\x9e\x81\x93\x7a\x8a\x49\x76\xcf\xee\xee\x21\xca\x63\x57\x59\x7b\x07\x63\x3b\x00\xb6\x8b\x7c\x09\x00\x66\x86\x6c\x62\x41\xc2\xa0\x17\x62\x4f\x0e\xe8\x5f\x85\xba\x9c\x56\xd1\xd7\x84\xf9\x33\xf1\x55\x6f\x2c\x3e\x20\xda\xb5\xc7\x87\x48\x98\x37\xd8\x3d\x89\xbc\x3f\xe0\x4b\x57\x35\xf5\x9d\xe7\x40\xe7\x0a\xfa\x43\xd7\xf5\x8e\xdb\x6c\x36\x00\xd6\xc5\xc2\x4d\x00\x98\xba\xe5\xb3\x16\xb5\xf7\xb1\x70\x1e\xd9\xd4\xde\x34\xfc\xab\xd4\x9d\x3d\x9e\xc4\x43\x89\xcc\xee\x71\xe4\x95\x51\xcb\xbb\x00\x75\x78\x5e\x43\xe7\x24\xfa\x68\xc0\x75\x67\x2d\xd3\xe4\xb9\xa1\xc3\xc9\x6e\x72\x7d\x60\x0f\xe4\xfd\x0e\x80\x05\x27\xc9\x03\xc0\xb8\x55\xd1\x96\xff\xa4\x27\x8e\x7c\x30\xeb\x44\xd7\x67\x6a\x45\x6a\x68\xe7\x5d\xda\x58\xc2\x5b\xe7\x33\x06\x3e\x6a\x51\xc7\x0f\xd6\x84\x79\x9e\x1d\xd3\xd9\xbb\x02\xf6\xb4\xc3\xb9\x15\x9e\x87\xdb\x8c\xbc\xcf\x6e\x33\x6d\x6c\x11\x06\x00\x73\xaa\xec\x7f\x66\xdd\x51\xfe\x9b\xb7\xdd\x79\x9d\x43\xc9\x7c\xd7\x31\xc6\x6d\x4d\xe9\x6f\xbf\xcf\x5b\x9e\x20\x68\x9f\xc4\x3f\x14\xf9\x47\x5b\xa6\xe0\xcd\xdc\x5b\x0e\xb6\x28\x3a\x60\x8b\xfd\xa4\xb8\xc9\xf3\x4b\xeb\x25\xc9\x6a\x37\x8b\x25\x5f\xde\x0a\x80\x71\x85\xf2\x30\x00\xfa\xb5\xea\xc1\x3c\xbf\xf6\x40\xa9\x26\x93\xdc\x16\x2b\x0b\x4b\x99\xe7\x80\xca\x0e\x27\x44\xda\x1d\x72\x62\xe4\x96\xd6\x4b\x8a\xa0\xb9\xfb\x5b\x67\x2b\xde\x04\x6c\xb3\x59\x95\xdb\xbc\xc2\xac\x76\xd5\x4e\xb7\x7b\xa6\x76\xf5\x7d\x00\x0c\x3c\x4d\x3a\x00\xba\x8b\x9a\x23\xb9\x87\xec\x9f\x74\xba\x8c\x17\xf6\x69\xba\xfd\xc9\xa3\xad\x45\xba\xf7\xf1\x7b\x6d\x7a\x7d\x56\x24\xd7\x7a\x41\x3f\x3a\xb7\xc7\x9a\x60\xf0\x09\x58\x63\xd9\x69\xe8\xf5\xaa\x34\xef\x36\x94\x4c\x0c\x33\x16\xea\xe9\x00\xe8\x1d\xba\xe6\xff\x89\xa3\xdd\x97\x5b\x64\x07\xa6\xd3\x19\x4b\x5a\xe7\x98\xee\x26\xd3\x6d\x18\xd3\xdb\xf8\x2e\xeb\xa8\x39\x28\xb2\xc9\xf2\xd4\x4c\x98\x6b\xb7\xd4\x98\x4f\x06\xac\x33\xdf\x35\x7f\xf4\xa2\x98\xee\x9b\x36\x4e\xac\x37\xac\xfc\xff\x5b\x79\x80\xbe\x06\x00\xed\x73\x5d\x4c\xce\xb5\xd6\xf9\x36\x6b\x06\xcc\x56\x6e\x6b\x4d\x2e\xb3\xda\x6c\xad\xf1\x06\xcb\x01\xdb\xa6\xc8\x62\xf3\x27\xdb\xbf\x73\xfb\xcd\xd4\xd6\xaa\x80\x73\xa6\x7f\x6d\x47\xbd\x56\x18\xff\xb1\xec\x9d\x38\xac\x7f\x61\x42\x02\xa0\x6b\x37\x44\x00\xa0\x6d\xd7\x99\xb3\x55\x2b\x9e\xd6\xff\x95\xc6\x5c\xf6\xa2\xb1\x63\xc1\xa5\xa5\xbe\xcd\x29\x31\xd2\x25\xfd\xb0\x3f\xc2\x86\x17\xa7\x23\x37\xcf\x5e\x38\x02\x30\x72\x5f\xde\x70\x33\x7e\xc6\x94\xd2\x81\x47\x24\xde\xf8\xbd\x5d\x81\x74\x35\x00\x8e\x2a\xfe\x3c\x00\x2c\x6f\x65\xb1\xd9\xd0\xe5\xd6\xc6\xf0\xb4\xda\xa5\xab\xa1\x2b\x16\xec\x59\xf2\x02\x16\x18\x43\x5b\xac\x42\xf4\x86\x0d\x8e\xc4\xa3\xe3\x66\x67\x0c\x8f\xc7\x5e\xf0\x6d\x1d\x42\x11\xb2\xa7\x60\xfb\x3f\x93\x9b\xc7\xdf\xec\x6c\x62\xf8\x00\x60\x3f\xc9\x6f\x06\xc0\xd2\x2e\xfd\x37\x7b\xfe\xb2\x18\xe8\x48\x5a\xe8\x28\xae\xe5\xf5\x82\xae\xc5\xfb\x10\x19\x31\xf5\x23\x48\x94\x36\xcc\x3e\x1c\x88\x79\x3d\x3b\x6d\xf0\x0b\x9e\xe2\xdb\x37\xd8\x4c\xdc\x32\x45\xd8\xf7\x99\xd2\x3e\xfe\x83\x53\xcb\xf4\x04\xc0\x1e\xcf\xff\x05\x80\x65\xbe\x2c\x3c\xeb\xed\x92\x2c\xc4\xea\xd4\x7b\x23\x07\x51\x3d\x0b\x0a\x86\xe1\x18\x5d\xcc\xf4\xa1\x59\xb8\xd1\x30\xcc\xc0\x47\xc2\xe5\xd9\xf3\xfb\x9f\x90\xa7\xf9\xae\xe8\x2f\xa0\x06\x4e\x71\xf6\xbc\xa0\x3b\x5d\xe6\xb5\x9f\x62\x9f\x03\xc0\xf6\x51\xe4\xfb\xff\xe9\xa6\xe4\xac\xea\xe1\x3d\xd8\xd1\xd4\xfa\x21\x24\x5e\x9a\x78\x60\x30\x98\x98\x1d\xbd\xaa\xff\x23\xd9\x2b\xcc\xb3\xef\x01\xe5\xe3\xac\x77\xbd\x37\x69\x7f\xfa\xf6\xf5\x26\x32\xd6\x4d\x59\xd7\x75\x80\xed\xe2\x02\x6d\x73\xe3\xc7\x03\x60\xdd\x2e\xb1\x03\x60\x42\x2b\x56\x65\xde\x19\xc4\x93\x17\xa4\x9c\x1d\x08\xa6\x6c\x4b\xcc\xea\xfb\x40\x8b\x89\xce\xe9\xbd\x4b\xdf\x16\x7a\xbc\xe7\x1a\xb3\x6c\xd6\xf1\xee\x6b\xac\x37\xbe\x6d\xdd\xe1\x1c\xca\x94\x63\xce\x61\xde\x6a\x17\xa7\x1d\x21\xba\x03\x80\xc5\x20\x7b\x09\x80\x51\xa1\xf2\xc8\xd8\xd5\x17\xc9\xb6\xa7\xf8\xf7\x02\xce\xb6\x84\x47\xdd\xaf\xb9\x67\xa2\xbe\x74\x3d\xe7\x3d\x0f\x1d\xe9\x7c\x2b\xf0\x9f\x75\xa2\x73\xa2\xb0\xd9\x77\xaf\x13\x2f\xe2\x7b\x04\xb5\x9d\x96\x10\x26\x78\xda\x12\xe4\x6b\x01\x30\xbd\x56\x9e\x06\xc0\x50\xa5\x5e\x9c\x21\xea\xa6\x49\xea\x93\x2f\x74\xd5\x4b\x7e\x25\x2c\xee\x84\x48\x57\x47\x5d\x70\x62\x64\x2d\xa1\xd6\x0e\x91\x3c\x78\xd6\xe5\xf6\x15\xf2\x4f\xbe\xaf\xda\xbd\x14\xdb\x3c\x44\x76\xb5\x2a\x73\x82\xcd\x22\x55\x77\x01\x60\xdc\xa9\xf1\x06\x40\xcf\xd0\xec\xc8\xc0\x77\x06\x6b\xdd\x92\xb5\xce\xe9\xda\xba\x84\xf4\x8e\x30\xed\x48\x94\xb2\x3d\x4d\xfb\x33\xb4\xa6\xad\x5e\xa7\x9b\xb5\xdd\xd1\xaf\xf7\xf4\x7d\xe9\xf0\xd3\x1b\x3c\xd6\xda\x96\xe9\xeb\x26\x3c\x31\xc7\xea\xc6\x00\x30\x5c\xd0\xb9\x00\xa0\xbb\xa9\xed\x4d\xff\xe4\x0c\x31\x2e\x4c\x2e\xec\xf0\x33\x42\x13\xbc\xdb\x63\x8d\xea\x28\x7c\x5b\xb6\xf1\x42\x68\xae\xa3\xd1\x54\x34\x6b\x9b\x7d\x99\xe9\xac\xef\x67\x7b\x98\x69\xc4\xe3\x9c\xf5\x77\xa3\xd9\xd5\xdb\xe4\x30\x94\x00\x60\x80\xe9\xfe\x06\x40\x37\xa0\x7d\x97\xde\xd5\x91\x69\x79\x90\x3c\xb9\x3d\xc1\xf2\x3a\xfe\x4b\x5b\x81\x75\x7c\x54\xb3\xa3\xdc\x0a\x09\xcd\xb7\xb7\x58\x6f\xcd\x3a\xda\xba\xda\x36\x73\x46\x60\xeb\x3c\x6b\x86\xc7\x4f\xcb\x55\x33\xc7\xb5\xc6\x78\xd3\xd8\x07\x80\x7e\x4c\x7f\x0e\x00\x5d\xba\x4e\x32\xf0\x0c\x36\x56\xb9\xbf\x3d\x1a\xd1\x57\x4b\x32\xc4\xa2\xb8\x0d\xdf\x25\x34\x4c\x1b\xf4\x12\xfd\x3d\xee\x22\x7c\x0f\xea\x00\x31\x00\xbd\xba\x16\x42\x16\xe3\x17\xe7\x3e\xa7\xfe\x41\xde\x1c\x2b\xa1\x6b\xe8\x99\x33\xe0\xcc\xd3\xcc\x12\x00\x24\x23\xbc\x9d\xfd\x37\x9b\x39\xb5\x07\xda\x20\x30\x2a\xc4\x57\x8f\x43\x28\xa1\x68\xf1\x6e\xd4\x45\xd8\x4d\x3a\x1c\x5b\x8a\x22\xa2\x16\xe2\x8f\x61\x7f\xd5\x3c\x20\xd5\x12\x97\xe5\x3a\x29\xf7\xa8\x4d\xb1\x01\x34\x3b\xc3\x3a\x23\x90\xb9\x90\x95\x07\x80\xa4\x91\x2f\xed\x3b\xd4\xe4\x0b\x79\xe4\xe0\x35\xe7\x40\xff\xd1\xb5\xc1\x6c\xb0\xe7\xa2\xaf\xc8\xe9\x28\x77\xda\x3e\xf4\x5e\xec\x22\xe4\x6a\x1c\x89\x60\xae\x21\x11\x83\xc8\x57\x73\x93\xc8\x27\xe9\xe1\x31\xc7\xa8\x26\x96\x8b\xef\x55\x46\xe7\xff\xfa\xad\xf8\x3f\x81\xa2\xe7\x46\xdd\x06\xe4\xcc\xd6\x6d\x90\x5c\x74\x97\xe6\x5d\xd3\x5b\xec\x7f\xc2\xee\x96\x13\x04\x33\x55\x83\xd8\x47\x8e\x42\x0c\xa0\x0f\x50\x2f\x54\x1b\x71\x47\x18\xd2\x9c\x1e\x62\x37\xdb\x33\x26\x8e\x4c\xe5\x96\xfb\xea\xe9\x29\xbc\x0c\x00\xc4\x71\xa2\xb1\xae\x5b\x55\x66\xe2\xef\xd6\x0f\xb5\x78\xf2\x26\xb5\xbc\x01\x46\x75\x08\x4a\x9b\xb4\x74\x2e\x85\xd4\x72\x9c\xc9\x84\x2f\x43\xfa\xb3\x09\x55\xdb\x31\x78\x2e\x26\xfb\x0f\x3c\x93\x5f\x11\xbd\x9d\x58\x28\x78\xe2\xdb\x44\xbd\x2a\x24\x02\x20\xaa\x91\x56\x38\x7f\x96\xad\x64\x7d\xb2\x40\x2a\xcf\x70\x32\x54\x1e\xb5\x53\xb8\x62\xbe\x7b\x83\x8c\xb7\x99\xdc\x04\x9d\xc0\xff\x01\xdb\x09\x1b\x15\xe6\x57\xbe\x46\xc5\x88\x2c\xd9\x25\x58\x82\xf8\x48\x74\x15\x3e\x5b\x72\xd0\xb7\x88\x62\x93\x5c\x02\x40\xa8\x97\x0f\xb7\xdb\x0b\xaf\x28\x3e\x1a\x7f\x95\xb6\x28\x17\xc9\x1f\x57\xfc\x50\xda\xb8\xfe\x35\x27\x95\xc7\x88\xcb\x1b\xd6\xaa\xa6\xb6\xd4\x40\x7b\x54\x65\x15\x77\xe0\x74\x95\x29\xcb\x86\xba\xa1\xfa\x2d\xea\x23\x66\xa7\x6a\xcc\xb7\x99\xec\xaa\x6a\x01\x40\xb0\x5c\x75\xd0\x11\x92\x3f\xa1\x75\x89\xfe\x6e\xe1\x0b\xdb\x63\xe9\xf7\xd2\xe7\xb6\x60\x36\xb1\xf2\xa3\xb5\x85\x10\x56\x37\xd3\x32\xdc\xec\xdb\x58\x64\x3e\x5f\xfe\xb2\xa5\xc9\xf4\x5f\xe6\x33\xc4\xdf\xa6\xe8\xa8\xf5\xa8\x07\x46\xb4\x2f\x81\x34\xdd\x90\x0d\x80\x20\x58\xcb\x6f\xed\xca\xe9\x18\x30\xea\x60\x8b\x86\xfb\x27\x48\xda\x8a\x8f\xf5\x4a\x58\x33\xca\xbf\x75\x9f\xc1\x7d\xae\x29\xeb\x0a\x84\x46\x35\x0c\x39\xd1\xe5\x25\xd0\x4b\xed\xa3\x99\xed\xf0\x61\xc7\x8b\xa8\x1d\xc8\xd5\x76\x89\xef\x41\x62\xbd\xb5\x05\x00\xfe\x79\xfd\xde\x56\xb7\xec\x8b\xa3\xe3\xb4\x27\xf3\x6f\x2c\x8e\x96\x4c\x2f\x1e\x3f\x9c\xc4\x5c\x5d\x5e\x30\x38\x0f\xd7\x59\x3d\xd2\x3f\xb5\xe9\x8f\xfa\xcf\x3d\x6f\xca\xc3\xa0\x69\x5d\xa7\x32\xad\xf0\x59\xce\xcd\x51\x4f\x90\x0b\x3b\xc6\xcd\x70\x25\xbc\x69\xc5\x02\xc0\x5f\x6a\xb0\xdb\x76\x64\x97\xaf\x34\x68\xe9\xf9\xc5\xcb\x19\xe2\x8b\x45\xf4\xa5\x73\x98\xf4\xb2\x8d\x8b\x8f\xe3\xf0\xd5\x93\x86\x51\x4d\x67\xeb\x29\x03\xcf\xcb\xe7\x35\x6d\xec\xa3\x65\x0e\xc1\x96\x75\x7f\x8a\x0e\x43\x1c\xee\x3c\x3b\x83\x43\x60\xda\x1f\x01\xc0\x6f\x31\x4e\xe8\xf9\x80\x14\x54\x9e\x6b\x5d\x8e\xfa\x55\x2b\xd2\xfc\x89\x59\x07\x99\x24\x64\xe1\xf4\xd0\xdb\xd4\x0a\x82\x09\x7e\x08\x81\x25\xf5\xa1\xd7\x57\x37\x50\x7e\xc3\x2f\xcb\x29\xa1\x3d\x26\x6f\x8e\xf1\x64\xa4\xd2\x33\x7d\x05\xac\xa5\x4c\x38\x00\x92\xd3\xfc\x05\xdd\x3f\xe0\xb3\x6a\x77\xd8\x2e\x23\xee\x43\xa6\x68\x42\x51\x47\xa0\xf5\x82\xa3\x98\x8b\xb0\x8b\x94\x9d\xf8\x09\x28\x14\xfc\x3e\xb1\x04\xfb\xa5\xea\x11\xb9\x9f\x38\x9c\xfd\x96\xfa\x80\x5a\x19\x7d\x82\x5e\xc6\x30\xf8\x16\xb2\xa6\xb0\x6a\x01\x90\x68\xf9\xaf\xba\xbe\x34\x9f\x83\x1c\xb6\x7e\x82\x1d\x86\x9e\x57\xc3\x11\x37\x60\x47\x04\x5e\xe8\x00\xe4\x1b\x4a\x20\x56\x89\x8d\x81\xc3\xf0\xff\x10\xf8\x55\x6c\x12\x8d\x7c\x2c\x7b\x90\x72\x9e\xee\x17\xad\xa1\x95\x31\x7f\xf8\x7a\x31\xe9\x6c\x2d\x00\x92\x70\xc1\x9f\x9d\x93\x21\x12\xc4\x6d\x4b\x7a\xd3\x05\x34\x4c\x79\xa1\xa5\x08\x7b\x8a\xb7\x0b\x7e\x8b\xd0\x48\x7a\x83\x6a\x23\x7d\x82\x35\x63\xeb\xa8\xcb\x2b\xfb\x08\x33\x19\xf5\x59\x3f\x48\x2b\x58\x9f\xa2\x7e\x50\x92\xb9\xb9\x3e\x37\x18\x9e\xbc\x4a\x00\xc4\xcd\xe2\xb8\x8e\xc0\x5a\x1c\x11\x61\xd2\x36\xb8\x91\xeb\x15\xf5\x8d\xa7\xa9\x19\x5c\x5a\xf3\x6a\x7a\x28\xf1\x2a\x7c\x39\x33\xb4\x05\x87\xda\xcd\x0e\xab\x38\x8d\x3d\xc2\x8d\xce\x82\x13\xf4\xfc\xf9\x51\x06\xd2\x0c\xc1\x45\x9f\x2d\xb4\x5d\x42\x2e\x00\x22\x95\xb4\xb7\xad\xb4\xb2\x97\x45\x35\x3c\xae\x31\xb1\xf7\xca\x1e\xd5\x3b\xb9\xe3\x38\x91\x8d\x5b\x79\x05\x84\x13\xcd\x2f\xf9\x43\xcd\x22\x44\x91\xe0\x65\xc5\x78\x74\xbb\x28\x2f\xf3\x10\x4e\x23\x6e\x8b\x9a\x4b\xf0\x96\x8c\xf8\x2c\xa6\x0a\x25\x63\x00\x08\x77\xcb\xaf\xb7\x3e\x2d\xb9\xa0\xf0\xd6\xad\xae\x98\xa9\x50\x49\xae\x55\x6b\x14\x0f\x58\xd5\xf5\x40\x39\x1f\x1f\xd2\x38\xa0\x54\x43\x83\x5a\x8a\x94\x17\xca\x7e\x20\xae\xab\xe6\x64\x4e\x47\x7f\x51\x71\x22\xff\xc4\x76\xaa\x96\xfa\x9c\x27\x3f\x56\x55\x03\x20\x38\xa1\x7a\x61\x1d\x2d\x04\x36\xad\x66\x65\xc9\x4a\xeb\x63\xb1\x67\x05\xce\x9a\xc5\xd8\x56\x13\x6b\x31\x63\xb7\x37\x4c\x31\x3f\x68\x7c\xd3\xf4\xd9\x1c\x51\x36\x03\x76\xd4\xc4\xcd\x10\xa1\xbc\x8c\x07\x23\xfb\xd0\x3b\x8c\x53\x7c\x9e\x91\x9e\x18\x3c\x00\x10\xa4\x6a\x6d\x96\x71\xf9\xdc\xfe\x28\xb5\x5f\x51\x45\xef\x19\x61\x7f\x59\x66\x0f\x8c\x4e\xa8\x8a\xea\xfa\x1d\xe3\xa8\x5b\xd8\x19\xd3\x38\xa9\xb1\xb0\xa3\xbd\x54\xd2\x92\xda\xf6\x36\x23\x14\xb1\xd3\x81\x8a\xdc\x8e\x52\xd8\x27\xf8\x16\x93\xfc\x2c\x3f\x00\xe0\xdf\xd3\xef\x32\x73\xf3\xd6\x2e\xee\x52\x99\x0b\x35\xc3\xd7\x84\xd3\x4b\x85\x83\x3f\x68\xef\x2b\xd9\x03\xae\x98\xf8\x5a\x6d\xdf\x64\xc8\x49\xc8\x70\xcf\x94\xd2\xc6\xe6\xc1\xae\x49\x19\x41\x88\x78\xa7\x6f\xe4\x1d\xd4\xb8\x76\xa9\x6f\x2b\x71\xbb\xed\x33\x00\xfc\x4d\x06\x9d\xd9\x3f\x6f\xf6\x0a\x57\x55\x4c\xc1\xcb\x65\xe3\x04\x27\x4a\x6e\x2e\xb9\x45\xdb\x55\x71\x65\x64\x10\x33\xa1\xe6\xe5\x50\x35\x64\x2b\xc4\xb5\xff\x5b\x29\xbc\x79\x72\xef\x8a\x8c\x24\xf8\xa6\xee\xa6\xa8\x00\xa4\xa5\x73\x81\xef\x27\x62\xb4\x5d\x08\xb2\xf8\x58\xc3\x37\xe7\x45\x4c\x7a\xe5\x03\xf3\x5f\xd8\x8e\x5a\xab\x92\x86\xf7\x84\xf8\xf2\x52\x08\x6b\xa1\x0f\x48\x28\x12\x0f\x7e\xa8\xe5\x14\xa5\x01\xbd\xb2\x72\x12\x6d\x11\x7e\x20\x0b\xca\x88\x24\xf7\x47\x51\x99\x25\xf4\x79\x3e\x53\x39\x6e\xcc\x0c\x00\xa4\x95\xfc\xde\x8e\x37\xc8\x97\xb5\x1b\xcd\x41\x68\x05\xc4\x45\xb1\x0d\xbb\x00\x9a\xcf\xed\xc1\x03\xd8\x11\xe2\x65\xc2\x37\x54\x6d\x4b\x25\x79\x32\xf6\x69\xc5\x28\x35\x8c\x68\xca\x9a\x40\x8f\xa5\xc6\x44\x85\x32\xd0\x0c\xdc\xf4\xbf\xd9\x7c\x56\x1c\x00\x52\x17\x41\x41\x87\x0b\x7c\x05\x64\xa9\xa9\x14\x49\x85\xae\x96\xbf\x47\x37\xc0\xfa\x38\xff\x60\x1b\x91\x97\x88\xf9\x78\x25\x76\x6a\xf3\x79\xe2\x7e\x42\x43\x45\x12\xf9\x27\x79\x79\xe6\x56\xda\x5c\xda\xdb\xc8\x47\x74\x3c\xf3\xfa\xf4\x63\xac\x1b\x6c\x24\x00\x92\x0d\xc2\x85\x6d\x53\xa1\x64\xc4\x90\xc1\xd1\x62\x42\xcf\x96\x09\xe0\xa7\xb0\x6d\xec\xe5\xa8\x20\x42\x00\x61\x0e\x66\x90\x74\x08\x7a\x1d\x1f\x41\xa5\x97\x93\x89\x3b\x18\x21\x99\x01\x94\xf1\xac\x93\x91\x0c\x6a\x33\x77\xfa\xf4\xe5\x4c\x2d\x2f\x02\x00\xf1\x63\x31\xd3\x1e\xdb\x80\x23\x7c\xd0\xdd\x69\xbc\x4e\x7a\x27\x79\xdf\x4c\xa6\x3c\x66\xb5\xc0\xbe\xd2\xce\xe1\x5d\x91\xfb\x19\x57\x9a\x1e\x62\xfa\x58\xb7\xca\xfa\xf1\x44\xce\x5f\x19\x6a\xe2\x4b\xde\xeb\x88\x9f\xe4\x7c\xc1\xd2\xe9\x26\x46\xac\xb0\x1a\x00\xb1\x87\xf4\xb4\x0d\x5d\xb3\x81\x79\x4b\x9b\x55\xcf\x60\x27\x8b\x95\x8d\x25\x1c\x33\xd3\xaf\xd9\x8b\x7b\x1e\xfb\x09\xee\xc1\x8f\x6b\xfc\x84\x8a\x15\x58\x4b\xaf\x63\x53\x84\x2f\xd2\x5f\xe3\x9f\x89\x4b\x23\xd6\x13\xf3\x25\xe4\xe9\x32\xda\xdf\x92\x8d\x00\x88\x16\xc9\xbf\x5b\x26\x97\xbf\x97\x47\xa9\x67\x56\xbb\xca\xb7\x0b\x9d\x75\x29\x8a\x78\x7a\x0d\x84\xa6\xd0\x60\x50\xd0\xe3\x8a\xe7\x90\x55\xf0\x64\x65\x79\xc9\x35\x94\x59\xb9\x39\xbd\x18\x4b\x52\x79\x47\x08\x71\x87\x54\xf0\xe9\xfb\xa8\xcd\xaa\x50\x00\x84\x75\xaa\x6f\xc6\xd7\x25\x11\x56\x94\x32\xad\xbc\xdd\x72\x97\xff\x57\xb5\xa7\xa5\x96\x7a\xa4\x6e\xc8\xbc\x09\xf5\xa5\x31\xcf\x3c\xb3\x41\xd3\xfc\xb7\x49\x5e\xfc\x2f\x42\x61\x7c\x90\xb6\x0d\xad\x36\x96\x46\x2c\xc0\x3c\x32\x6c\x99\xfe\x80\x52\xa3\xff\x0d\x00\xc1\x01\xad\xd6\x90\x55\xa8\xed\x3d\x2d\x1f\x2e\x8d\xea\xb1\xf0\x08\x15\x4f\xbb\x53\x28\xc2\x1a\x67\xe7\x76\xe4\xe3\x06\xa4\x33\xb5\x7e\x25\x74\x61\xfb\xde\x62\x04\xec\xaf\xb6\xac\x34\x3c\x2a\xc8\x7e\x26\xa2\x1c\xbd\xa6\xb5\xcd\x27\x87\xac\xb7\x68\x00\x10\xc0\xf4\x43\xfa\x95\x05\xdb\x47\x02\xe5\x53\x4b\xe0\x43\x12\xee\xf5\x8a\xa0\x81\xc3\x14\x50\x7d\xbe\xef\x01\xd2\x58\xbf\xbc\x77\x7c\x3d\xae\xc9\xd8\x3d\xbf\x38\x15\x56\xd4\x59\x9a\xd6\x82\x74\x74\x88\x22\x18\xe8\xc8\xb6\x77\x3e\x32\x72\x88\x8d\x02\x80\x20\xdc\x40\xd0\x17\x15\x84\x2c\xd3\xca\xb6\x15\x1f\x19\xed\xe2\x6a\xca\x95\x8b\xed\xe4\x23\xd5\x31\xc3\x44\x64\x4b\xfd\xb8\xc1\xd4\xfa\xea\xc6\x67\xfd\x53\x8a\xd3\x5b\x36\xf6\xdc\x4b\x13\x22\x5d\xba\x76\x47\x6c\x46\xad\x73\x0e\xfb\xdc\x27\xf5\xb7\xde\x03\x81\xfc\x6b\x86\xfb\x56\x1d\xb1\xa3\x2a\x4c\xe3\x47\x1a\xaa\x3d\x24\xf2\x25\x9f\x83\xe4\xd2\x45\xd4\x44\xe8\x0b\x4c\x3c\x6d\x07\x7c\x07\x24\x9e\x91\x87\xb6\x94\x78\x30\xaf\xe1\x19\x69\xae\xec\x62\x72\xf9\x7c\x0d\x67\x16\x6d\x8f\xe7\x3e\xfe\x10\xe3\x77\x00\x64\x6f\x05\xf3\x2d\xeb\xf0\xb2\xda\x33\x6a\x2c\x61\x2b\xc4\x4f\xa8\x22\x4d\x83\x56\xd3\x9e\x91\x97\xc2\xd6\xa1\x37\x52\xab\x51\x73\x1b\x0e\xd1\x27\x60\xd7\x17\xaf\x63\x1c\x23\xe6\xa5\xee\x60\x41\x29\x67\xe7\x67\xb1\xb3\xe8\x7f\x78\xae\xe5\x4f\x63\x6e\x04\x40\xb6\x5e\xb0\xcf\x7c\x1a\x4b\x82\xf4\xaa\x96\xe2\x4e\x41\x07\x05\xf7\x09\xb5\x30\x2b\xad\x99\xe4\x8e\x1c\x40\x47\x93\x1f\x60\x4e\x34\x54\x50\x8f\xe0\x7f\x15\x57\xd0\x57\x91\x4b\x53\x71\xcc\x16\x9a\x7e\x3e\x60\x95\x31\xab\x3d\x7b\x79\x52\xd6\x4d\x00\x64\x2d\xc2\x6e\x93\x27\xb2\x1a\x11\xae\xf4\x46\x8f\x43\x2d\xe5\x8b\x30\xb7\xb0\x93\xa9\x73\x71\x2f\xf1\xfd\xa8\x30\xe2\x0c\x52\x7e\x3d\x95\x5c\x44\x79\x59\xd4\x4e\xa5\xd3\x97\xa4\x9c\xa2\xd7\xb1\x0a\xc2\x46\x18\xe5\x1c\xad\xa7\x88\x9b\xce\x1d\x06\x40\x3a\x20\xde\x6d\x10\xb6\xb4\x10\x4a\xe4\x1d\x70\x28\x29\x95\xe7\x85\x94\x52\x66\x92\x1f\xa2\xef\xd0\xbc\x90\x6e\xb8\x5a\xc6\xdc\x3a\x1e\xe1\x04\x2b\xb1\xf0\x30\x39\x9a\x53\x92\x92\x4a\x5d\xc4\x6b\x08\xab\xa1\x65\x09\xa6\x7a\xca\xd9\xaf\x04\xe7\x00\x90\x9c\x91\x7e\xd3\x1d\x6c\xec\x64\x5c\x94\xb9\x43\x9f\xb2\xc2\x39\x7b\x60\x10\xb6\x88\xb4\x1a\xf1\x8d\x73\x15\xfe\x01\xbd\x93\x57\x56\x6b\xc4\x51\xf9\x3b\x0a\xbe\x13\x27\x08\xc3\x93\xb7\x90\x8b\x45\xfd\x61\xd3\x28\x79\xe2\xd3\x9e\x16\xd6\x16\xc9\x42\x00\xc4\xdf\x14\xc1\x9a\xda\xba\xb9\x52\x8b\xf8\x7a\xc3\x51\x59\x28\xeb\x78\x93\x51\xb6\x85\xf0\xaa\x45\x29\x8f\x80\x09\x10\x7a\xf9\xd6\x9a\x12\xb4\x51\xb1\xa0\xc0\x1d\x47\x56\xec\x4a\x9e\x46\x38\xa5\x4c\x09\xbd\x43\xdc\xa7\x5c\xe1\xf9\x3b\x73\xbe\x72\x15\x00\x62\x2f\xd5\x3b\x55\x5a\x15\xc7\x1c\x27\x7c\x5f\x2b\x30\x9d\x63\x7a\x37\xb4\x9b\xd0\x78\x4a\xd3\x09\xe3\x9b\x96\xb9\x30\x77\xa3\xa5\x3a\x11\x59\x66\xf4\x5b\x94\x84\xc1\x1b\xd6\x27\xb5\xe2\x1e\x1a\xf2\x43\xb7\xe2\x5f\xea\x1f\x78\xbe\x65\xcc\xd0\xbd\x06\x40\xc4\xd3\xd6\x2a\x8e\x96\x3f\xec\x0e\x11\xb4\x56\x7b\x76\xb9\xd0\xf7\xd6\x35\x3a\xaf\xe2\x52\x21\x5b\x3a\xda\x9a\x83\x9a\x67\xb4\x57\x55\xa1\xe0\xea\xb6\x29\xf9\x43\xa8\x23\xf6\xb1\xa4\x0c\x2c\xb9\xb5\x3b\x74\x07\x6e\x97\x6d\xc8\x2b\x9f\x5e\x6b\xae\x05\x40\xe4\xae\x2f\x52\x4c\x2b\xf7\x1b\x8c\xe2\xff\x5b\x95\xdb\xbf\x8f\x9e\x55\xab\xec\x5b\x80\x3d\xd3\xf0\xb8\xa7\x13\xfa\x3b\xb4\xb2\xeb\x5d\xd5\x2c\xd8\x89\x4e\x64\x3e\x1f\xe5\xd5\x71\x2e\x29\x11\x73\xae\x3d\x33\xf4\x3c\x2e\xc9\x71\xc7\x4b\x40\x7b\x63\x0d\x04\x40\x78\xd1\xe0\x2a\xb7\x97\x19\x96\x40\xf9\xce\xca\xc5\x23\xab\x68\x1f\x6a\x2e\x0f\xdd\xc5\x76\x35\x2c\x1c\xf8\x0a\x1d\x6c\x5a\xd1\xef\x59\xe5\x06\x9b\xd5\x9b\x94\xcf\x43\xf2\xba\x11\x49\xd5\x98\xc4\x4e\x53\xd8\x74\xec\x86\x0e\xa2\xd7\x45\x1a\xc9\xa6\x05\x40\x28\x35\x98\x34\x2c\xfa\xd9\x2a\x8a\xb8\x9d\x21\xab\x7d\xcb\x02\x4c\x1c\x04\x4d\x70\x61\x11\xa0\xef\x5a\xb0\x6c\x0d\x7c\x65\xf5\x44\xce\x1a\x34\x21\xdf\xc9\xbd\x85\x4f\x5a\x08\xf8\x2e\xa4\xbf\xe6\x3c\xe7\xaf\xa0\x85\x78\xb8\x88\x97\x31\x2a\x01\x50\x8e\x17\x8c\xaa\x0f\x52\xd7\xd7\xde\x16\xfd\x45\x1b\x81\xcc\x64\x32\xe8\x07\xa1\x79\x78\x1e\xe3\x15\xcc\xd6\x7c\x9b\x15\x8f\xfc\x50\xe5\x64\x6b\xb1\xb4\xfc\x28\xce\x0d\xc2\xdf\x0b\xb6\xf1\x66\x51\x1a\xe7\xac\xe7\x9d\xa5\x67\x4f\xf9\x24\x9e\xc3\x0c\x07\x40\x71\x54\x38\x53\x3d\x9e\x6c\x87\x88\x44\xa9\x94\x43\x50\x3a\xe3\x3c\xcd\x1f\x56\x8d\xbb\x43\xa7\x21\xeb\x9a\x2b\x19\xd7\x31\x82\x2a\x1f\x56\x35\x7e\x79\xde\x11\xf6\x49\xd2\xc3\x05\x04\x6e\x04\xf5\xbf\x39\x7c\xee\x3d\xc6\xe0\x94\xbf\x44\x3d\xac\x52\x00\x14\x22\xe1\x63\x65\x1a\x7e\x29\x7c\x8b\xa0\x9b\x18\x8e\x9a\x4f\xaf\x23\x9d\xc7\x18\xb1\x9d\x14\x21\x7e\x1a\x34\x91\x96\x40\xdc\x5e\x19\x4c\x7f\x43\x41\xe4\x7e\x60\xae\xa0\x4f\x4b\x3c\xcd\x8e\x67\x2e\x9e\x13\xc2\x7e\xca\x3e\x30\xe5\x81\x10\xcf\x9d\x02\x80\xfc\x80\xf8\xb1\xfc\x0c\xfa\x1e\xbe\x96\x9f\x84\x5d\x41\x44\xd0\x3c\xf1\x0e\x72\x21\x86\x49\xd4\x51\x0b\x9a\xc2\xc9\x66\x3a\xbc\x22\x93\x6a\x62\xf2\x72\x53\xe8\x02\x76\x47\x62\x05\x33\x92\x3b\x10\xf2\x92\x79\x87\x5f\x38\xe5\xab\x60\xb6\xa0\x00\x00\xd9\x3f\x32\x4f\xd9\x7c\x04\x84\x3e\xc0\x3d\x8b\x82\x33\xbe\x51\x6e\x61\xb4\xac\x1a\x74\x1d\x6e\x1f\xfb\x50\x63\x38\xe1\x17\xb7\xa8\x1c\x4d\xce\xe0\x1d\xcd\xd1\x50\x61\x82\x92\x84\x6b\xf4\x64\xe1\x89\x90\x23\xf4\xe7\xa2\x6f\x1e\xc1\xbc\x3f\xc5\xbb\x01\x90\xcd\x57\xcc\x12\xff\x82\xfe\x12\x5f\x64\x5f\x87\x95\x4b\xe4\x64\x0f\xc4\x0e\xe9\x44\xe4\x1e\x74\xa6\x74\xb4\xe1\x14\xf6\xbc\xac\xac\x2c\x93\xd0\x20\x7b\x99\xbd\x94\xb4\x4b\xde\x95\x50\x46\xd9\xaa\xc8\x0d\x71\x52\xb5\x8a\x43\x1e\xb5\x5c\x86\x72\x2e\x00\xd2\x2c\xd5\x29\xe1\x3b\x08\xc5\x70\x8f\x35\xa1\xe9\xbb\xa1\x9d\x28\x6b\xd9\x6e\x48\x44\x34\x20\x44\xfa\x97\xf5\xdd\xe8\x45\xfa\x1d\xa5\x99\x38\x57\xbd\x30\xeb\x36\x61\xb9\x3e\x27\xfe\x0a\x69\x8f\x3e\x20\x44\x41\x3e\xa6\x7b\xe3\x61\xe1\xb4\xfc\x6f\xd7\x93\xf4\x6b\xc7\x09\xe4\x75\x47\x9c\x29\x8c\x55\x90\x65\x1d\x85\x84\x24\xa8\xa1\x3d\x0e\x9e\x06\x23\xb6\x85\xd4\xad\x46\x56\x3b\xfc\x4a\x94\x98\x6c\xfb\xcc\xac\x1a\x3c\x68\x0d\x8d\xd7\x11\xb3\x6c\x95\x21\x44\xd2\x80\xb5\xd3\xe3\x18\x7b\xd0\xe4\x01\x80\x24\x4c\x77\x9b\xff\xad\xf6\xdf\x3e\x6f\x46\x5c\xc3\xf9\x9e\x13\xf8\x83\x4d\x5b\xbb\x61\xb0\xeb\x2d\xfd\x9d\x5f\xea\x60\x08\x93\xb3\xb7\xa4\x00\xad\xef\xa8\xc8\x8a\xc2\xd5\xb7\xbb\xc5\x8b\x08\x83\x8e\xe7\x21\x72\x92\x9f\xbd\xcf\xe3\x3d\x3b\xcd\xfc\x1b\x00\xe2\x3f\xf4\x7d\xfc\x35\xb5\x84\xe1\x59\xf4\xfb\x0d\x61\x83\x0e\xbc\xa8\xc9\xa5\xff\x11\x6c\xb4\xf9\xaf\xbe\x9c\xba\x54\xf8\xb5\x9e\xfe\x92\x44\xd4\xf5\xee\xa9\x59\xd1\xd8\x0d\x9d\xed\xf1\xed\xf8\x2f\xce\x94\x90\xbd\x44\x63\xdb\x7f\x53\xf3\x59\xdb\xac\xd3\x00\x10\xb7\x1a\x82\x44\x8f\x78\xf9\x55\x4f\x59\x14\xde\xa9\xba\x62\x62\x03\x5f\x08\xe9\x46\x8c\x13\x78\x34\x7b\xd4\x7b\x09\xf6\xc3\xd7\x96\xd0\x85\x32\x74\x7d\xe6\x3a\xd1\x22\xbc\x7b\x6c\xaf\x38\x9a\x64\x0f\xda\x2b\xde\x41\x65\xba\x37\xc9\x9d\x8c\x99\x00\xa8\xa3\x85\x51\x22\x4f\x0e\xb1\xce\x87\xb9\x8b\x3b\x03\xb2\x90\x70\x84\xfb\x12\x9a\x0f\xe7\xf0\x36\xc0\x24\x75\x66\xbe\x12\x79\xb9\xf8\x95\x80\x80\x4d\xc9\xcc\x13\x56\x12\x56\xc7\x96\x88\xaa\xc9\x4f\x82\x86\x44\x0f\x69\x06\xf7\x66\x79\x20\xe3\x4f\x00\x54\x7f\x0b\xcd\xc2\x85\x2c\x1b\x84\xc5\xf8\xc2\xc6\x41\x6b\x08\xf3\x38\x48\xd8\x6c\xd8\x18\x37\x1f\x39\xa3\xf6\x15\x2f\x0d\x13\x5f\x4c\xe3\xe7\xe1\xeb\x32\xce\x09\xca\x49\xea\x98\xef\x42\x14\x55\x18\x24\x12\x7e\xa0\x5f\x77\x6f\x90\x75\x31\x7f\x02\xa0\x5a\x2a\x4a\xe7\x8b\x69\xb7\xe1\x30\x7a\x13\xfd\x2b\x72\x0f\xae\x97\x99\x89\x71\x6b\x91\xb3\x38\x38\x7b\xcd\x21\xf6\x4e\x62\x4c\x11\x9e\xf3\x1f\xf9\x4a\xfa\x1b\x5e\x16\x4d\x1b\x83\xe2\xb3\x18\x1f\x83\x52\x05\xe3\x58\x7f\xb9\x13\xa5\x24\xce\x61\x00\x94\x4f\x25\x33\x78\xf3\xc8\x73\x71\xab\x69\x81\x94\x76\x42\x0f\x56\x46\x0b\x24\x71\x9a\x05\xf4\x01\x8a\xb8\xfa\x2c\x33\x94\xd6\x5b\xd8\xc5\x5a\xc5\xd8\x99\x9e\xcf\x99\xc9\xba\x11\xfd\x89\xcb\xe3\xdc\x08\x9a\xc8\xf3\xe2\xc1\xdd\xdb\x24\xd1\xfc\x6f\x00\x28\x03\x64\xe1\x9c\x15\xf8\x6d\x34\x0c\xe5\x06\x11\x43\x3f\x85\x61\x93\x23\x98\xf3\xa0\x62\xca\x73\xd6\xaa\xaa\x47\xb4\x1d\x9c\x9c\x82\x73\x0c\x26\xf7\x62\xda\x52\xd6\x14\x3e\x3e\x7a\x80\xad\x11\xbc\x0c\xfc\x9b\xb3\x48\x34\xd9\xfd\xac\xe8\x93\x58\x0c\x80\xa2\x46\x11\xc0\xba\x8d\x36\x8a\xdc\xc8\x73\xb0\x68\xd1\x1e\xd4\x45\x3c\x5c\xdc\xd4\xe4\x46\x24\x4a\xa6\x56\xae\x26\x4b\x24\x37\x16\x1d\xa7\xca\xa5\x8b\x53\xaf\xd3\x11\x32\x4a\xf4\x5c\xc6\x6b\x79\x56\xe0\x1d\xe6\x57\xf9\xb1\x49\xd3\x84\x52\xc5\x0e\x00\xe4\x28\xd5\x28\xe3\x06\xfc\x86\x0e\x42\xa4\xa1\x5c\x75\x31\x48\x2c\xa6\x42\xfb\x0e\x72\x12\xd7\xa1\xbd\x5b\xd1\x4f\xb8\xab\x1d\xcb\x7f\x4c\x9e\xa5\x3d\x9d\x3a\x9f\x9a\xa4\x3d\x11\xb5\x9f\xf6\x44\xfb\x2c\xf0\x04\xa3\x52\xfb\x68\x52\xb9\x80\xae\x8d\x02\x40\xb6\x5b\xb3\x9b\x2e\x68\xe9\x68\x4b\x26\x84\xc1\xc7\x1c\x28\xc4\x42\x54\xa4\x9d\xdd\x70\x0a\x63\x6c\x1d\x2e\x3f\x8b\x7b\x66\xbb\x94\x9f\x45\x6c\xb0\xf9\xa7\xac\x25\x77\x5b\x19\x51\x1c\x2a\xce\xf2\x26\x70\x33\x3d\xde\x52\x35\x89\xc7\xdf\x62\x78\x04\x80\x2c\x57\xc7\xa3\x7d\x6e\x1e\xed\x3a\x8a\xdf\x02\x7b\xdb\xb9\x14\x7e\x18\xd9\xe8\xc4\x37\x70\xd0\x3b\x3b\x8a\xca\x2d\x38\xff\xf6\x39\xf9\x93\x08\x5d\x6d\x11\x29\x66\xd2\x3d\x47\x6a\x14\x91\xf2\x9b\xdd\x10\x78\x84\xb6\xbe\x75\xfa\x24\x27\xbf\xde\xc4\x01\x40\xfa\x4b\x1f\x49\x5b\x01\x7d\xdc\xef\xc4\x63\x61\x99\x7d\x29\x70\x25\x62\x5d\xcf\xef\x0d\xb9\xe8\xf1\xdd\xe4\x72\x0e\x96\xd8\x35\x39\xef\x27\xfe\x89\xf3\x46\x4a\x3b\x29\xb5\x63\x4f\x94\x94\xe2\xdd\x7e\x2b\xf0\x05\x6d\xba\xa3\x7a\xd2\x39\xde\x35\xf3\x56\x00\xa4\xcb\xf4\xdb\xc8\xb1\xca\x80\x6a\x07\xfa\xba\xd2\xb5\xee\x2c\xf4\xb6\x32\x18\xf2\xb9\x46\xac\x0c\x6b\x2e\x2d\x96\x2a\x73\xe0\xfb\xb3\x2e\x28\xb9\xe8\x8c\x05\x2e\xca\x3d\xb8\x83\xa1\x9f\x54\x89\xa4\x89\x3e\xfb\x54\x2f\x28\x1c\x97\x41\xcd\x61\x46\x3f\x00\x3a\x5f\x51\x26\x69\x48\x0e\xa9\x93\xa0\x6b\xe5\x34\x88\x08\x8a\x93\xaf\x82\x12\xab\x7f\xc9\xc7\x60\xf2\x62\x77\xc5\x14\xe4\xf6\x2c\x86\x02\x8b\xf9\x90\xb8\x5d\x71\x9c\x90\x1e\xba\x57\xd9\x40\xce\xf2\x59\xa7\x0a\xa1\x12\x5c\x46\x35\x95\xcc\x62\x00\xb4\x57\x44\x7c\xe2\x7f\x52\x07\xa4\x13\x75\x50\x7a\x06\x5a\xdb\xf4\x50\x16\x01\x73\xa9\x36\xc9\x78\x88\x27\x45\xdd\xb2\x31\xf4\xa3\x2c\x77\x79\x11\xee\x59\x22\x4a\x7e\x8c\xf8\x4f\xa8\x45\x41\xa0\xec\xf2\x19\x54\x16\xd1\x56\xb8\xac\x55\x9f\x62\xd5\x00\xa0\x35\x8a\xbe\x13\x8e\x09\x5f\xc2\xfe\x46\xda\x44\x4a\x64\x66\xe3\x76\x71\x0c\x5a\x51\x25\x11\x1f\xc2\x7e\x2a\x5c\x21\x41\x13\x6c\x99\xe9\x52\x77\x72\x78\xc2\x36\xe9\x2e\xea\xe1\x50\x3f\x19\x87\x31\xcd\x47\x2b\x57\x30\x47\x5d\xce\xa9\xd6\x70\x5d\x00\xd0\x5c\x90\x0c\xe2\xbb\x78\x1b\xb1\x3a\x04\x93\x4f\xc6\x2b\x20\xbf\x0b\x52\x89\xb4\xca\x01\xa1\x3b\x59\x50\x70\x5d\xf8\x17\xb5\x37\xc3\x21\x3a\x4a\xdf\x9b\x10\x2d\x1e\x60\xde\x9a\x77\x51\x42\x66\x5f\xf4\xe1\x4b\x37\x71\x27\x4d\x18\xa7\x94\x0a\x4a\x01\xd0\xb8\xc8\xa4\xb8\x28\xb6\x84\xd2\x0d\xaf\xe3\xe0\x68\xc1\x0d\xb7\xb9\x24\xfa\x70\xc5\x61\x1e\x8f\xb9\xa0\x60\x2a\xdf\xc2\xba\x93\xfe\xa7\xa0\x83\xa3\x8b\x5f\x23\xb4\xf0\xc2\xe6\xb5\x89\x28\xfc\x83\x3e\x42\xf1\x47\xc1\xc6\x09\x95\x8a\x4a\xf1\x39\x00\xd4\xd9\x8a\x0a\x8c\x8c\x2e\xe2\xa7\xb6\x1c\x61\x74\x08\x12\xea\x89\xcc\x8b\xc2\xc9\xe5\x4a\xb6\xaf\xf0\xef\xfc\x6f\x1c\x9a\xe8\x69\xfa\x38\xee\x76\xf1\xdd\xb8\x2f\xbc\x3f\x25\x57\xe6\xc5\xf1\xcf\x48\xc7\x7c\xe8\xc2\x13\xb2\xb2\x09\x03\xb2\xeb\x0a\x3c\x00\xaa\x2c\x55\x27\xea\x3a\x25\x50\xf5\x5b\x33\x9c\x8a\x57\x5d\xad\x2b\xa2\xfd\xae\xba\x5f\xa6\x67\x64\xaa\x27\xe7\xcf\x65\x1e\x57\x17\xa7\x21\xd8\x19\x6a\x4b\x1c\x8f\xb3\x4a\x7d\x61\xee\x5b\xee\x90\x26\xc5\x47\x22\x98\xa5\xa9\x9d\x70\x43\x7a\x48\x93\x01\x80\xd2\xa2\x21\x23\x77\x11\x7b\xad\xfb\xa1\xf9\x64\x6f\x6b\x72\x6d\x06\x65\xd8\xb2\xbc\x74\x88\x16\x69\x89\xcf\x13\xd0\x8f\x9a\x7f\x4f\x3d\xca\xa4\x99\x59\x71\x53\x59\x6f\xcc\xe1\x73\xd7\x70\x5c\xcd\x6e\x3e\x6c\xfe\x38\xd3\x78\x57\x57\xe9\x38\x3d\x03\x00\xe5\x54\xed\x3b\x64\x02\x61\x7d\xdb\xc5\xa6\x2b\xa4\xb8\x36\xbf\x9a\x6b\xe4\x63\x8e\xca\xd2\x1a\x6a\xbd\x7d\x20\x2f\x8f\xf6\xb4\xf5\x59\xea\x52\xc6\x40\x2b\x2c\xf6\x2b\x2b\xc2\xf6\x64\xee\x0a\x76\x99\xad\xdf\x47\xcb\x13\x5b\x18\xae\x41\x92\x55\x86\xa3\x00\x28\x2e\xea\xba\x11\xa7\xf1\x7f\x77\x25\x35\x69\x88\x82\x4e\x44\x8d\x93\x3c\xd9\xc9\x2a\x0d\xa5\x74\x74\x58\xf3\xa2\x69\x01\xed\xeb\x52\x07\xe8\x63\x6d\x1f\xe3\xc6\x31\x09\x6d\xb8\xb9\xbf\xb1\xcc\x8e\xd5\x3e\x5b\xb9\x57\x6c\x6c\x57\x98\x24\xc2\xf8\x37\x00\x0a\xa6\x3e\x04\xea\x62\x79\x5c\x53\x51\xdb\x61\x29\xac\x47\x97\x99\xcc\x67\x1a\xa9\x8b\x66\x9b\x13\x9b\x7b\x32\xe6\x98\xd6\xc3\x9f\x24\xaa\x4c\x35\xe8\xd4\xf0\x1d\xa6\xd9\x38\x63\xe0\x0a\x53\x15\xd1\xea\x11\x61\x9a\x41\x49\x04\xc0\xe8\xc1\x8a\x02\xc0\xe0\x10\xaf\x6c\x32\x98\xcb\xeb\xce\xd7\x86\x9a\x8e\x40\x76\x97\xc5\x99\x10\xd0\xde\xfc\xf3\xc6\x67\xb0\xb6\xf4\xdb\x46\x1d\x72\x65\x62\xa1\x31\x0f\x73\x3c\xdc\x68\x8c\xc0\xdf\x0a\xb4\x18\x49\xa4\x11\x8f\x24\x23\x94\x3a\x11\x00\x43\x3f\x6b\x2b\x00\x86\x45\xe2\x4d\x8d\x5f\x8d\x1b\x21\xda\x9a\xcd\xc6\x74\x68\x7e\xe9\x05\xc3\xb3\x96\xcf\xf9\x52\x43\x07\xe2\x70\xba\xd9\x50\x81\x5e\x95\xf0\xcb\x10\x8a\xeb\x0a\xaf\x33\x04\x13\x05\x81\x0c\x03\x83\xfc\x9f\x47\xa6\x41\x4b\x4b\x00\xc0\x30\x9d\xbd\x14\x00\xfd\x1b\x89\x57\xe3\x04\x1d\x04\x56\x5d\x7d\x55\x17\x8c\xd8\x58\x3a\x59\xe7\x8e\xfa\x99\x77\x50\xfb\x0a\xcb\x4d\xbb\xa7\x7d\x80\xff\x96\x20\xd0\x3e\x21\x39\xe6\xff\xa1\xfd\x45\xf5\x0c\x8c\xd3\x21\xe9\xf1\x1e\xd5\xba\xa3\xcc\xe9\x20\x44\xf7\x86\x57\x01\x80\x3e\x5a\xca\x6f\xb8\xa8\xc6\x62\x0a\xaa\x6e\xa9\xb3\x70\xa4\x92\x4a\x75\x0a\x81\x9b\x37\x55\x5d\x4d\xd2\xa5\xe5\xaa\x05\x94\xd5\xf1\x1f\xd4\xa3\xb4\xb1\xf9\x56\xf5\x6d\xc6\x9b\x40\x7f\x4d\x06\xeb\x92\x07\x55\xf3\x1f\x87\x07\x28\xda\xc3\x42\x03\x00\x3a\x84\x7c\x4e\xfd\x15\x45\x2d\xe9\x6a\xe5\x77\x05\x8c\xa2\x2b\xee\x52\xa8\x69\x73\x73\x09\x8a\x33\xf4\x0b\xa9\xab\x95\xb3\x98\xd6\x78\x85\x92\xc9\x2e\x9f\x9f\xa4\x3c\xc8\xf9\x1e\x38\x51\x35\x9b\xb7\xc4\xa3\x4d\x5d\x29\xf0\x04\xbb\x35\xcb\x24\xfd\x00\x68\x7b\x15\x67\xeb\xc4\x92\x46\xce\x60\xc5\x71\x49\x1f\xf7\x50\x11\x42\x3a\x99\x77\x29\x87\x28\x55\xf1\x1f\xa5\x8c\xc9\x26\x0b\xc7\xc7\x5d\x90\x75\x89\xe2\xc2\x76\xc8\x7d\xc4\xb5\x01\x17\xe4\x58\x09\xc7\x63\xb3\x72\xb6\x74\x70\x9c\x97\x7a\xae\x42\x07\x80\xc6\xa8\x3a\x51\x1b\x2e\x04\x72\xb7\xf2\x95\x42\x89\x5c\x5a\x68\x11\xb9\xcb\x6f\x64\x6f\x12\xad\x51\x54\xa4\xe4\x8b\x5b\x14\x63\x71\x75\x12\x1f\x25\x31\x8c\x22\xd9\xa6\xfc\x10\xb0\x51\xea\xab\xea\xf1\x78\x2c\x17\xaa\x4b\xc7\x11\x55\x6e\xea\x23\x00\xa8\x8f\x6a\xe0\x35\x31\x3c\xa9\x71\x42\xd9\x71\xbe\xbf\xe1\xbf\x82\xdf\xf9\x17\x0c\xf7\xb2\xbe\x0b\x8c\x86\xb3\xc9\x07\x85\xf9\x86\xb3\xb1\xff\x8a\x7c\x0c\xf7\xc2\x22\x44\xb7\x0d\xdf\x03\xfa\xc5\xb5\xc6\x05\x1e\xff\xca\xaa\x0d\xe3\xc7\xad\x52\x66\xeb\xa4\x00\xa8\x33\xb4\x6b\xab\x6f\x72\xed\xd6\x13\x65\x3c\x5e\xbc\xd5\x54\x40\xe5\xbd\xb0\xa6\x64\x1d\xe2\x0f\x58\xfe\x49\xee\x12\xd4\x58\xf6\xc6\x3e\x15\xc6\x58\x96\x86\x05\x09\xbf\x5b\x46\x03\x96\x8b\x74\x16\xf8\x54\x6f\xe9\xef\xa6\xe9\xe3\x4e\x28\xee\xe8\xd7\x02\xa0\xfa\xaa\x8b\xaf\x1e\xe1\x9c\x75\xbc\x2a\x4b\xe1\xd2\x1d\xd6\x82\x14\xde\x1c\xc7\x8c\xac\xb5\xbc\xc3\xf6\x8d\xc9\x3d\x7c\xbc\xbd\x2e\xf6\xad\xa0\xc2\x1e\x1a\x96\x29\x9c\x65\x9f\x1e\x70\x41\xb8\xc6\xf6\x7d\x6a\xb9\x34\xc8\x7c\x75\xbc\xbb\x82\x68\xd8\x0d\x80\x6a\x89\x6e\x4f\x31\xac\xa7\xa5\x66\x4d\x7e\x70\x37\xa8\xdf\x98\x99\xd7\x79\xab\x71\x6d\xd2\x56\xe7\x91\xe6\x6d\xb1\xce\x8e\x63\xf0\x9b\x61\x97\xdb\xbf\xa0\x41\xd0\x95\x76\x03\x6e\x9a\xd7\xf3\x76\x38\xe1\x1f\xb7\xc9\xad\x47\xa9\xf3\x00\xb0\x0c\x71\x64\x00\x98\xba\xa4\xee\xc5\xb3\xbb\x8e\xd5\x7d\xc9\x7b\xdc\x69\x87\x5c\xc9\x74\x73\x6a\xa0\x2b\x93\xf4\x1d\x46\x98\x2c\x96\xdd\x3e\x82\x64\x85\x1d\x68\x7b\x8e\xa1\x04\x9d\x6b\x33\xe0\x0b\xbd\xfe\x6a\x23\x11\x9f\xba\x85\xd9\x7e\x51\x2f\x03\x60\x99\xcb\xb9\x0a\x80\x29\x57\xf2\xaa\xe8\x46\x67\x04\x44\x99\x37\xe8\xf4\x82\xc6\x67\x1c\xed\x98\xd3\x72\x2b\xa9\xbe\x3d\x1d\xa1\x8a\x2d\x68\x63\xa2\xf3\xc3\x46\x1c\xe7\x70\x9e\x41\xbf\x39\x84\x84\xc3\x5e\x2f\x1d\x2d\xe4\x28\xb7\x4c\x5b\x3c\xed\x1e\x00\xe6\x6e\xee\x5a\x00\x8c\x8f\xa4\xf1\x45\xa1\xed\x89\x2d\xa3\x79\xe3\xdb\x12\x11\x1e\x19\xe5\x0e\x38\x8a\xb5\xf0\x8e\x7d\x35\xe6\x72\xcc\x43\xbb\x3b\xbe\x22\xac\xb1\xd5\x42\xbc\x18\xd4\xd9\x5a\x44\x49\xf2\xfa\xa3\x35\x8e\x96\xec\x46\xb4\x48\x98\x4b\x01\x30\x31\x04\x33\x00\x30\xce\x90\x21\x0b\x17\xd9\x67\xa1\xcb\x73\x33\x5a\x51\x58\x4c\xfa\x2a\xdb\x06\x3c\x77\x61\x8d\x6d\x0e\x51\x15\xc3\xb0\xae\x26\x2f\x0e\xfd\x69\x2d\xa0\x9e\x0d\xc2\x59\xa7\xd2\x6f\x79\xbd\xb4\x3c\x60\x6e\x77\xeb\x33\xed\xe3\x7c\x00\xc0\x98\x26\x7a\x00\x80\x21\x47\xfe\xb4\x00\x6d\x15\x12\xc3\x73\x54\x96\x1d\xa4\x37\xe9\x93\x2c\x3e\x94\x8d\x0b\x4e\x99\x37\xd2\xb0\xd1\x3f\xcc\x8d\x8c\xf0\xd0\x6d\x66\x37\xe6\x97\xa0\x4c\xd3\x5d\xf6\x16\xaf\x2f\xa6\x5e\x2e\xca\x6d\xcc\x38\x45\xd0\xfa\xbf\xda\x94\xb6\x01\xa0\xe7\x2a\x89\x8b\xea\x8d\x04\x96\x5b\xf6\x62\xc3\x5b\x36\x36\xad\xc5\xd0\xc3\xd9\xb2\x20\xda\x00\xe7\x3e\x8f\xd6\x1b\xc2\xf9\xb1\xa1\x78\xc3\x78\x81\x21\x68\xb6\xfe\x9d\xf0\x84\x77\x88\x7e\xa5\x78\xea\xc4\x14\xdd\x03\xe9\x77\x00\x74\x66\xc5\x43\x00\x74\x15\xea\xe8\x7c\x81\x2e\x50\x2c\xca\x7a\xa1\xbd\x24\xc9\x4f\x3d\xa1\x5d\x2c\xf9\x9e\x78\x52\x2b\x92\xee\x88\xce\xd2\xa2\x64\xd2\xd0\x78\x6d\xa3\x1c\x1d\xf8\x43\x5b\xaf\x88\xf7\x4e\xd7\x16\x2b\x67\x4f\x34\x68\x8b\x54\x67\x00\xd0\x32\xd4\x4b\x01\xd0\x8a\x34\xca\xbc\xe3\xea\x7d\x9a\xdd\x59\xc5\x6a\xba\xd6\x2b\x35\x49\x5d\xac\x45\x27\x96\xa8\x63\xb4\x1b\xa3\xbe\xa8\xa3\x75\xae\xf3\x7e\xaa\xe3\x74\xa6\xc0\xcf\xea\x02\xfd\x14\x6f\xb8\x5a\xac\x8f\x9b\xb8\x5d\x33\x5e\x77\x08\x00\x4d\xab\xf6\x27\x00\x9a\xc7\xda\x25\x79\x05\xaa\x9d\x46\xcf\xcc\x7f\x54\x6c\x63\x61\xca\x37\x55\xa9\x91\x95\x18\xa6\x0a\x33\xf6\x45\x3d\x56\xcd\x34\x3e\x0a\x75\x55\x45\x98\x52\x83\x3c\x55\x25\xa6\x65\xde\x16\x55\xb7\xf1\xd6\xc4\xb7\x6a\x82\x41\x04\x80\x66\x8e\xee\x1b\x00\x9a\x65\xba\xa9\xb9\x63\xca\x6b\x96\x07\x99\x6b\x95\x0e\xcb\xaf\x94\xeb\x4a\x9c\xd5\x27\x71\x86\x32\xd9\x1a\x17\x75\x45\xe9\x61\xc5\x87\xfa\x2b\x13\xac\x5b\x82\x32\x95\x4d\xd6\x95\xde\x37\x95\x1b\x2c\x9e\xee\x70\xd5\x06\xe3\x3b\x00\xd4\xa3\xfa\x47\x00\x68\xea\x75\xb4\x9c\xbf\x87\xe0\x35\x9b\xd3\x5f\x0e\x9c\xaf\x5f\x92\x64\xec\xaf\x69\x1c\x89\x4b\xea\x9b\xdd\x6c\x0c\xe7\xf5\xfc\x07\x1f\x08\xfe\xd1\x33\x17\xb5\xd4\x2f\xaf\xfb\x30\xd6\xe0\xd1\xdf\x15\x42\xb8\xe6\x22\x6c\x0b\xa2\x9e\x00\xc0\x96\xc2\x1d\x04\xc0\x2c\x95\x76\xe4\xac\x1a\xb8\x59\xf7\x2a\x7d\x4f\x3f\x16\xb2\x23\x09\xda\x07\xa0\xc6\xb8\xc0\x9e\x27\xb0\x9c\x70\x4c\xf7\x75\x64\x40\xf0\x8f\xee\x29\xe8\x2f\x7e\xe5\x5d\x3b\x70\xeb\x3d\x96\x76\xce\x23\xee\x73\xe9\x75\x20\x68\x04\x00\xac\xbb\xb9\x37\x01\x30\xcf\x96\xe2\x72\x1a\xfa\x6b\x20\xe8\x74\x51\xef\xdf\xd0\x71\x49\xf3\x7a\xd6\xb4\x6c\x88\xfd\xd2\x3d\x80\x48\x0c\x2f\xea\x5a\x81\x7a\x10\xfc\xba\xf3\x19\xb6\xc7\xaf\xaa\x73\x80\x10\xec\xb1\xc1\xe9\x41\x7a\xef\xb2\xdd\x6e\xa3\x13\x01\xb0\x86\xf1\xba\x00\x30\xed\x93\xf6\x64\xdf\xef\x49\x6d\xc1\xa4\x7b\x75\x8f\x87\xef\x59\x78\xb9\xf3\x39\x6a\x7a\xec\xaa\x4e\x77\x0c\x21\x7c\xba\x33\x1d\x37\x16\x7c\xb1\x63\x80\x58\xe8\x57\xdf\xd1\x44\x6e\xf3\xd8\xdd\x76\x85\xfa\xd6\xe5\x0f\xdb\x55\x56\x08\x00\xe6\x4f\x82\x31\x00\x8c\x7f\xc9\x76\x64\x7b\x75\x66\xa3\x0e\xa4\xc1\x9d\x99\x98\xcb\x0b\xe3\x3b\x2a\x70\x7f\xc5\x86\xb7\xdb\x08\x2f\xe7\xaf\x6e\xbb\x45\x1e\x17\x6c\x6e\xab\xa0\x86\xfa\x25\xb4\x4d\xa6\x07\x7b\x5c\xb0\xb3\x99\xe4\x09\x33\xac\xd3\xb9\x42\x00\x4c\xfb\xc5\xdc\xff\xc9\xa5\x48\xce\x6a\x69\xb7\x11\x10\xa9\xfb\xdb\xba\x49\x11\x0b\x96\x3b\xf6\x91\x3f\xc7\xec\x70\x04\x50\x57\xce\x6f\xb4\xab\xe8\xe4\xe0\x06\xbb\x0b\x33\xdd\x2f\xa4\xf5\x24\xeb\xa9\xc7\x6b\x5b\x04\x77\xf2\x84\x1a\x33\x51\x38\x13\x00\xa3\x53\xfa\x09\x00\x43\xaa\x72\x55\x26\xab\x75\x39\xe3\xcf\xd4\x09\xb6\xc7\xac\xea\x05\x7e\xb6\x5c\xf6\xd6\x98\x7c\xeb\x7e\xce\xfb\xb0\xef\xd6\x5c\x5e\x71\x70\x82\xe5\x11\x7f\xad\x5f\x9c\x65\xab\xe0\xc5\xd4\x2c\x73\x8e\x68\xef\x84\xcb\xc6\x6c\x59\x29\x00\xfa\xef\xca\x49\x00\xe8\x27\xab\x6b\x33\xee\x58\x6a\x84\x9f\x52\x1c\xe6\xbd\xa2\x1b\x89\x07\xcd\x19\xe2\xdf\x62\x5c\x4c\xe7\x24\xfa\xb0\x47\x26\xac\x94\x14\x1c\x63\x0a\x91\x61\xfd\x6a\x4c\x40\x9e\x35\x55\x6e\x78\xa2\x38\xe0\x9a\xa8\x6f\x55\x8d\x00\xa0\x3b\xa3\xee\x06\x40\x97\xac\x51\x65\x10\x8d\xbb\x54\x37\x52\x7c\x8d\x09\xea\xfa\xc4\x22\xc3\x39\xf5\x85\xe8\x35\x06\xac\x26\x3f\x6c\x8f\x61\x82\xe6\x7e\xb0\xb7\xfe\xbc\x96\xed\x57\xa7\xdf\xa5\xf3\x9a\xfa\x9b\xde\x55\x07\x75\x6d\xd3\xd5\xe9\xb2\x00\xd0\xbe\xd7\xee\x07\x40\xbb\x52\xab\xcf\xf0\x33\xac\xd4\x7b\x26\x3f\x36\x84\xe8\x89\x89\x21\xfa\x03\xfa\x63\xd1\x6d\xfa\x1a\x43\x40\xd8\x6a\xdd\x2b\xc3\x60\xb0\xbf\xee\xa0\x71\x86\x1f\x57\xb7\xde\x28\x9c\xfa\x42\x17\x6d\x38\xec\x7a\x41\xbb\x4d\x7f\x19\x00\xad\xf9\xff\x93\x24\x58\xed\xc7\xf4\x31\xfd\x6e\xd3\xef\xc9\xbb\xf4\x71\xe6\x09\x89\x53\x75\xc7\xcc\xd0\x68\x93\xae\xcc\xbc\x3c\x6c\x95\xf6\xb2\x65\x7e\x70\x9a\x76\xb3\xa5\xdf\x6f\x97\xb6\xd7\x52\x3b\x2d\x4b\x9b\x6d\xba\xe2\x16\xa9\xf9\x6a\x4c\x03\x40\xeb\xaa\xef\x04\x40\xeb\xa3\x6b\x48\xeb\x1c\x5d\x59\xd3\xbd\x70\xf5\xe2\xff\xea\x29\x71\xea\x91\xfa\x46\x68\x04\x7d\xd8\xa7\x39\x62\xce\xe9\xc1\xff\xe0\xbe\x01\x96\xc1\x04\xe4\x57\xef\xc9\x03\x7b\x31\x87\xdc\xdf\xf7\xbc\x23\x9c\x1c\xd7\xdc\x31\x9d\xd6\x08\x40\xeb\x08\x0f\x02\x80\x25\x5f\x3a\x96\x96\xb6\x24\xb9\xee\xc4\x42\xf9\x48\x0f\x44\x1c\x87\x1e\x9e\x08\x4d\x89\x40\x0c\xde\x6e\xb9\x31\xe7\xf8\xc0\x25\x44\x7b\x40\xef\xc0\x34\x74\x85\xf7\xdc\xfe\x51\xec\xc3\x49\x1e\xdd\x6f\x88\xab\xc6\x09\xda\xab\x69\x0f\x01\x68\x9d\xc1\xd3\x02\x60\x7e\x20\xed\x4d\xbd\x32\x72\x10\x12\xbb\xb0\x60\x38\xb2\xe9\x60\x5c\xd2\xe0\x8e\x96\xba\x88\xd2\x01\x27\xfc\xf7\x39\xc7\xfa\x7b\x50\x95\x01\xc3\x7d\x8f\x30\x7f\x78\x67\xf5\x49\xf1\x4d\x93\xe6\x75\x5d\x26\xdd\x1e\xd7\xd6\x26\xa6\xdf\x01\xc0\xa6\xe0\x47\x02\x60\x16\x4a\x8f\xa6\x0e\x0f\xaa\x5a\x66\x2f\x9c\x36\x10\x01\x47\xc7\xfe\xec\x7b\x87\x1c\x89\xf0\xef\xfd\x8a\xbe\x3f\x67\x75\x6f\x08\x2e\x21\x60\xb0\x47\x4d\x70\x78\x37\xf7\x04\x92\x8e\x4e\x2a\x75\xf6\x51\xef\x8e\xfb\xcd\xbe\x8f\xd5\x07\x80\xb5\x48\x58\x0e\x80\x69\x50\x76\x33\xe5\x71\xdf\x20\x2a\x67\x01\xb5\x97\x8e\xa9\x88\x65\xf7\x20\x71\x4d\xe1\xab\xba\x55\x84\x8a\x39\x8d\x5d\x7b\x49\x35\x01\x94\xae\x30\x0a\xd6\xbb\xa6\x73\x1f\xad\x76\x12\xa6\x3d\x8d\x59\x39\xee\x6f\xdb\x17\xee\x77\x00\x2c\xae\xe2\x8b\x00\x18\x77\x2b\x1a\x53\xea\xba\xaf\xe3\x37\x24\xde\xed\x3a\x49\x94\xc6\x3c\xeb\xbc\x41\x2e\x08\xcf\xe8\x9c\x4a\x79\x3e\xc7\xc3\x09\xa7\x8d\x04\xe4\x77\x5c\x62\x10\xbc\x2b\x3b\x30\xac\xc9\x93\x34\xf6\xaf\x9c\x37\xe3\xa3\xad\x55\xc2\x8d\x00\x98\xae\xc8\x72\x00\x30\xdc\x52\x9e\x4a\xd6\x39\x7d\xe8\x9f\x13\xcb\x3b\xe6\x31\xc9\x31\x9d\xed\x75\xac\x2b\xf3\x7f\xb6\x8d\x70\x66\x84\xbc\x76\x7c\xe5\x52\x03\x6a\x1d\x7a\xde\x45\x6f\x8b\x23\x44\xe0\x3d\xe9\xa9\xcd\x5f\xb4\x7a\xfc\x56\x73\xa8\xcc\x02\x80\x31\x4b\x99\x00\x80\x7e\xab\x1a\x93\x9c\xea\xd8\x2c\xd8\x9f\x38\xd9\xfe\x42\xb8\x21\x06\x69\xcf\x17\x0d\xcd\x7f\xd8\xba\x44\x2c\x0c\x79\xd6\xea\xfe\x7f\xec\xba\xe5\x57\x94\xff\x17\xf7\xfb\xc1\x06\x95\x52\xe1\x2b\xa0\x12\xd2\x28\x48\xa9\x94\x74\x77\x77\xce\x30\xc0\x0c\xcd\x0c\xc3\xd4\x75\x5d\xd3\x05\x43\x77\x77\xb7\xa0\x82\x12\x82\xa0\x02\xb6\x22\x76\x8b\x2d\x76\x9f\xf5\xbb\x9f\xdd\x6b\x9d\xff\xe0\x9c\xfd\x60\xaf\xb5\xf7\xd3\xd7\x7a\xef\xbd\xdf\x6b\xed\xec\xd8\xdd\xe9\xbc\x4e\x62\xa4\xcc\x15\x5e\x64\x8e\xad\x84\x37\x7b\x8e\x4c\x58\x6f\xca\xc4\x51\x89\x00\x30\x36\xd0\x58\x00\x20\x97\x21\x9a\xd1\x4f\xde\x2d\x8a\x87\xfe\x18\xcf\x98\xf2\x44\x57\x82\xdb\x47\xa5\xaa\x37\x71\xa5\x69\x52\xfb\x26\x39\x14\xda\xf8\x6e\x1c\xc7\x00\x4a\x94\xf9\xc4\x7e\x05\xcb\x48\x34\x30\x9f\xc2\x35\xeb\x3b\x19\x9a\xf0\x39\x00\xe8\x5a\x30\x11\x00\xc4\x17\xf6\x32\xba\xc7\x3d\x0e\x27\xe9\x77\x70\x65\xe0\x3b\x3a\x6f\x38\x85\x48\xb0\x7a\x21\xfb\x35\xb2\xbc\x6f\x84\xed\x47\x87\x76\xe3\xd9\xe2\x0c\x25\xd9\x9d\xac\x93\x0c\x0b\x89\xeb\xcc\xf5\xf4\x07\xeb\xdf\xd0\x45\x74\x17\x00\x90\x71\x04\xfb\x3f\xa7\x06\x9f\x35\x9a\xe3\x8c\x32\x37\xea\x97\x71\xb6\x33\xd1\x3a\xb7\xd9\x4c\xe6\x15\x75\x11\xeb\x3a\x2b\x70\xdf\x24\xcb\x98\xbd\x61\x77\x01\xf3\x29\x3b\x5b\xd6\x8a\x59\xc6\x7a\xb2\x55\x9a\xa1\xc0\xbc\xb1\x41\x07\x79\xcc\xa8\x07\x00\xb1\xa4\x07\x02\x00\x9f\x46\xfc\x0a\xf4\x83\xb6\x39\x4f\xb0\xef\x05\x5f\x74\x17\x51\x30\xa1\x85\xde\x7e\xe9\x62\xe1\x27\xfd\x3d\x51\x5f\xa3\x24\x82\x23\x82\xf5\x63\xc2\xc2\x61\x57\xe7\xb8\xd1\xe8\x2e\xb3\x80\xf8\xff\x50\xaf\xb4\x42\x31\x46\x09\x88\xcc\x3c\xee\x40\x52\x32\x00\x84\xb7\x69\x2b\xf9\x16\xfe\x18\xf7\xb3\x6c\x99\xc0\x20\x6f\x3b\x72\x45\x30\xca\xef\x78\x9a\x67\xe8\x5c\x90\x2f\x2a\x34\xc2\x37\x6c\x4b\x50\x4b\xd4\x4a\xe4\x75\x97\x4b\xb1\x09\xb1\x1d\x47\xbf\xa0\x5e\xc4\x33\x35\x7f\xc4\xcb\x26\x9e\x95\x29\xc4\x56\x60\xe3\x01\x20\x34\xa7\x37\x8a\x0e\xf8\x4c\x79\x3f\x63\x39\xfb\xbd\xf5\x57\x22\xcd\x04\x9a\x04\xd9\xa4\x16\x05\xdf\x0c\x85\xe3\x4e\x87\x15\x47\xdc\x0f\x52\x8c\xf4\x89\x09\x76\x09\x89\x91\x42\xdd\x3a\x5a\x1d\xd7\x9a\xe0\xa5\x59\x8f\xba\x8d\x35\x97\xb1\xc2\x6e\xc3\x95\x02\x40\xf0\xc8\xe8\xca\x55\x71\x7f\x11\xb2\x8d\x91\xe6\x45\x08\xeb\xcd\xd1\xf3\x3d\x10\x69\x95\x72\x30\x60\x6f\xf4\xa7\x58\x6e\xf0\xa1\xb8\x89\x40\x99\x30\xcf\xf8\x52\xe7\x9c\xc8\x98\xc4\xcc\x23\x9f\x62\x54\x71\x07\x35\xb7\xc7\xfa\xa7\x20\xd2\x1f\x13\xcf\xa4\x26\x00\x80\xe7\xe1\xff\x13\xf8\x3b\xcb\xc7\x94\x23\x57\xdd\x36\xc7\x0d\x67\xcf\x78\xee\x43\x5f\xc4\x7d\xf6\x49\xc4\xdc\x8e\xa1\xfa\x5f\x4b\x12\x0b\x50\x0f\x76\xc5\x69\x39\xf5\x85\x75\xa5\x04\x1c\xf1\x8f\x6c\x48\x43\x6b\x54\x47\x5d\xc8\xd8\x23\x7d\x3d\x01\x95\x51\x0b\x40\xd6\x70\x76\x2d\x4f\x60\x57\x9f\xd4\x0d\x3b\x38\xae\xe2\x0e\x10\x70\xae\x41\xc9\xed\xd8\xf3\x1e\x6b\xa9\xdb\xa3\x19\x3e\x1d\x69\x02\x7f\xb7\x80\xcc\xf4\x3f\x8e\xdf\x42\x14\x32\x33\x0f\x9f\x0f\x3f\x96\x75\x53\xc3\x2e\x82\x8e\x7f\x2f\x7d\x07\xa3\x40\x90\x05\x20\xf3\x59\xce\x6f\x8e\xb5\x95\x1a\x31\x84\x26\x6f\x73\x93\xf8\x31\x2b\xca\x61\x20\x87\x91\xf8\xcd\x65\x38\xe7\x6d\xe4\x3b\x8f\xcb\x24\x9c\xdf\x26\x9f\x6f\xa4\x7b\x8e\xe2\x01\x6b\x64\xbf\xc3\xc6\x21\x1e\xe4\x33\x1a\xbb\x42\x5f\x92\xff\xca\xec\x44\x17\x93\x3b\x01\xc8\xdc\x4e\x35\x60\xde\x3c\xda\xc7\x6e\xa2\x6c\xb4\xbc\xc6\x36\xcb\xa8\xb5\xdd\xcd\x5a\x4a\x48\x72\xc4\xb1\x2c\x23\x4a\x5d\x97\x99\xa7\x7d\xbe\x78\xb9\x30\x75\x1d\x6c\xfd\x78\x8c\x2a\xd3\x33\x41\xff\x31\xb6\xab\x7f\x0f\xd1\xa2\x67\xc9\x04\xa1\x0a\x10\x18\x80\x0c\x21\xf4\x92\x91\x62\xda\x55\x6c\x47\xea\x36\x17\x2f\x92\x4a\x0f\x39\xc6\x2b\xb8\x8a\x71\xb0\x97\xcd\x8f\x0c\x2f\x76\x1e\xca\xfb\xe8\x63\xe1\xe1\x9f\x0b\xd9\x2f\xfb\xcc\x0a\x25\x4d\x9b\x02\x2a\xf8\x9d\x1a\x36\xc1\x1b\x79\x04\x99\x2b\x71\x57\xd9\x54\x00\x32\x3c\xe9\xca\x8c\x4d\x26\xc3\x95\x30\x49\xd9\x4c\xba\x42\x2c\xed\xbd\x55\x7d\x59\x64\xfc\xaa\xdd\xd1\x12\x41\xb8\xbd\xd3\xab\xa2\x71\x9f\xed\xee\x55\x05\xab\xf6\x0b\x3e\x7b\xf2\xe5\x4d\xfb\x03\x76\xe5\xf9\x69\x30\x83\xaa\x85\x2f\x64\xf5\xe3\x52\xb9\x34\x00\x32\xf4\xe9\x5f\xe9\xcb\x26\x5b\xea\xce\xe4\x9c\x3f\x1a\x54\x2b\x9d\x36\x6e\xf9\xb6\x5a\x29\x7e\xca\x56\x58\x29\x16\xae\xe9\xe4\x58\xf6\xd0\x67\x9b\xdb\xdf\x92\x49\xfb\x37\xde\xc2\xa2\x6a\xd3\x15\xff\xd6\x02\xb2\xc6\xbb\x20\x63\x51\x83\x6c\x67\xec\x67\xde\x1f\x00\xd2\x7f\x32\x72\x72\x29\x21\x75\xce\x4f\x19\xd4\x30\x35\xf7\xde\x9c\x83\xe1\xe7\xbc\x31\x29\x32\x91\x9d\xfe\x21\xb1\x5e\xd1\x23\xc1\xf1\x01\xb7\x62\x17\xc3\x99\xce\x0e\xa8\x77\xd1\x3d\x47\xfa\x31\x1b\x50\x4f\x34\xfe\x62\x56\x12\x68\xd2\x6b\xb8\x9f\x49\x4c\x00\xb2\x77\xa4\x87\x08\x99\x41\x12\xee\x53\xf4\xbe\xe0\x73\xde\x56\xc4\xa4\xd0\x36\xbf\x9e\x64\x4c\xf8\x74\x90\x5b\xcc\x64\xd4\xe6\x30\xb1\x80\xa0\x98\xc0\xc8\x05\xa7\x9b\x71\xad\xb1\x75\x47\x42\xd0\x77\xe2\xb3\x35\xba\xe3\xa7\x12\x4f\x4b\x9f\xc5\xe1\xb0\x54\x00\x08\x0b\x19\xbb\x04\x74\x7f\x82\xf7\x39\x64\x39\x30\xc1\xef\x77\x76\x43\x30\x3b\x48\x09\x77\x3c\x74\x25\x34\x21\x46\x33\xc2\x27\x62\xd1\xff\x46\xd4\xb5\x18\x3b\x27\x74\xac\x1f\x6a\xf6\x88\x18\xaa\x31\xc1\x42\x23\x0c\x2d\xc2\x1a\x48\x73\xb1\xb7\x70\xdd\x00\x10\xb2\x33\x77\xf0\xf2\xbc\x6a\x83\x9f\xc3\x7b\x7d\xbe\x87\xb1\x08\x7b\xfd\xc9\x91\x3b\xb1\x71\x41\x7a\xd1\xe7\xa2\x37\x86\xfc\x89\x2b\xf1\x5b\x09\xbf\x1b\x9f\xe2\x58\x1c\xd5\x9b\xe8\x75\x38\x3a\x56\x1b\x27\xab\x7e\x39\x4e\x26\x05\x27\xed\x9e\x24\x4a\x25\x03\x80\x1f\xc6\xa7\x72\xda\x5c\x7f\xc7\x38\xd0\xb2\x3c\xfa\xe2\xd0\x59\xfd\xde\x7c\x34\x2d\x49\xc3\x4f\x80\x11\x45\xfe\x08\xec\x4a\x1c\xf7\xfd\x10\xf2\x18\xfb\xca\x61\x31\x02\xa4\x28\x9b\x9e\x8f\xea\x4f\xb3\x54\x47\x47\x97\xa7\xff\x93\x3e\x9a\x78\x38\xa3\x07\x80\xac\xfb\xd9\xcf\x59\xef\x1c\xeb\x93\x0c\x29\xab\x2e\xdd\xd8\x13\x99\x3e\xee\xf7\x93\x4d\x13\xbe\x7b\x6b\xa6\x34\x45\xfc\xf1\x13\xa4\x69\xfb\xca\x05\xc9\xa6\xb7\x39\xc8\x87\xe2\x33\x75\x4c\x1d\x22\xbc\xb3\xea\xd4\x95\x23\x13\xf0\x4b\xd2\xbe\x98\x55\x82\x32\x00\x59\x52\xa4\xc3\x8c\x26\x1b\x83\xec\x7c\xd2\x92\x7d\x15\xd1\x22\x1d\xe3\x6c\x40\xbc\x8f\xb1\x72\x7b\x95\x13\x10\x4e\xf4\x3a\x9d\xf3\xc4\xfb\xbe\x5f\x03\x09\x6d\x6f\x18\x14\x40\x7a\x67\x72\x32\x34\x8e\x9c\xa2\x0e\xc2\xee\x91\xe7\xa5\x99\xf1\x58\x72\x1d\x00\x99\x06\x54\x3f\x84\x6b\xd1\xc0\xea\x24\x7e\xb2\x66\xb2\xbc\x53\x2f\xd8\x73\x99\x9f\xd0\xe7\x9d\xeb\x98\xf8\x30\x3d\xf7\xf3\xcc\x4d\x5e\xb7\xbc\xbf\x32\x84\x76\x78\xff\x0f\x0c\x39\x13\xdf\x60\x7d\x7a\xe3\xfe\xb5\x50\x65\xba\xba\xf4\x35\x74\x24\xe2\x0e\x40\x46\x3b\xf4\x05\xde\x79\x14\x2e\xda\x96\x2d\xb2\xec\x2a\x78\x95\x92\x63\xf3\x29\x7f\x02\xd5\xe2\x78\x44\x14\x13\x7a\xd8\xb5\x24\x6f\x9b\x97\xa6\xe7\x57\xe1\x88\x9d\x94\x9f\x8a\x20\xce\xc4\x24\xb0\x89\xbf\x57\xdd\x2a\xf8\x37\x4f\x4c\x26\x18\x55\xc4\x56\x03\x20\x23\x9a\xae\x08\x95\x1f\x61\x55\x98\x65\x6f\xb3\xe8\x2d\x9b\x49\x11\xb7\xd9\x58\x6a\x84\x72\x76\x08\x2e\x26\x85\xbc\x76\x39\x57\x38\xed\xf9\xcb\xd3\xa8\x40\xd2\x6e\xa3\x6f\x86\x28\xca\xc4\x29\x70\x47\xee\xb8\xba\x20\x98\x27\x8c\x93\x39\x89\xd2\xe5\x2a\x01\x90\x61\x49\x7f\x03\xf9\x1d\xbe\x5a\x9b\x4e\x18\x31\xff\x5c\x3d\x91\xbc\x68\xed\x56\xf9\x10\xb5\xc7\xbe\xb9\xfc\x41\xc8\x55\x97\x5d\xa5\xcb\x9e\xbf\x3c\x72\x8b\x57\xec\x54\x7d\x6e\x15\xde\x36\xc9\x09\xa8\xc8\x7f\xa0\xfe\x3a\x58\x59\xb4\x4d\xd6\x20\xae\x9b\x57\x0c\x40\xfa\x3f\x46\x12\x8f\x17\xee\xed\xb2\x19\x7a\x13\x51\xee\x7e\x13\x7f\x36\x4a\xdb\x9b\x94\xf4\x22\xfa\xa2\x3f\x2a\x2a\x35\xb6\x3a\x38\xc1\xcf\x01\xc5\x0c\xa7\x3a\x8a\xc5\xa7\x44\xd7\x9b\xce\x24\x58\xa3\x66\xd5\x3d\x12\xee\x27\x84\x4b\x15\xa5\x84\x26\xa5\x03\x90\x5d\x92\x7e\x9a\x5b\x13\xb2\xe4\x3e\x0b\x29\x86\x85\x7b\x5b\xe3\xc5\x23\xe4\xfd\x9a\x92\x9c\x22\xd7\x82\x6c\x22\x5f\x44\x7f\x0b\xfd\xe6\xbb\x10\xb7\x23\xf2\xa4\x43\x19\xfa\x40\x2c\xd7\x34\x0d\xa3\x12\xef\xa7\xbe\x0e\x73\x31\xb1\x54\x8a\x94\x7c\x01\x8b\x06\x20\xdb\x27\x03\xc7\xe9\x08\xf2\xf4\xee\xa0\xd9\x86\xec\xf4\x5b\xce\x72\x0b\xdb\x14\xf8\x39\xb1\x39\x62\x47\xa8\x7b\x64\x68\x94\x73\xc4\xa0\xaf\x4f\x4c\x59\x8c\xba\x83\x41\xdc\x03\x54\x93\xe9\x6e\xf4\xfb\x04\xd9\xfd\xa3\xf1\x35\xd8\xf5\x52\x9e\xc9\x26\xb8\x22\x00\x08\x7f\x33\xa3\x59\x8b\xbe\xd9\xc1\x93\x94\x5a\xff\xa6\xb0\xb0\x8c\xbb\x81\x3f\x23\x5e\x24\xa0\x43\x70\xd1\xc5\x11\x4e\xe1\x1b\xe2\x62\x7c\xd0\x91\xdd\xf1\x66\xf6\xb8\x18\xbb\x44\x45\x13\x46\x1c\x84\x7d\xb8\xdf\x0c\xa5\x93\x62\x26\xa5\x85\x7d\x9f\x1a\x03\x00\xc1\x1c\xdf\xc7\x38\xef\xb9\x39\x7a\x8d\xf4\xd4\x9b\x11\xb7\x23\x1d\xe3\xa7\x89\xd6\xc3\x68\x05\xdc\xc5\x58\x85\x9b\x07\x4f\x24\xa6\x7a\x93\xc3\xc6\xb1\x0d\x76\x2d\x91\x35\xc9\x77\x8c\x3f\xc6\x6c\x4f\x13\x53\x5b\x89\x59\x4a\x3f\x2f\xb5\x27\xa9\x36\xa3\x18\x00\x7c\x02\xf1\x3f\xba\xaa\xcb\x5c\xe2\x48\x4e\xb8\x7b\x15\xd6\x2a\x4d\xcc\xab\x14\x37\x81\xfe\xe6\xcb\x49\x31\x0c\xb3\x08\xe8\x4c\x9d\xf4\xaa\x0f\xfe\x9c\xee\x68\xfb\x21\x5c\x3e\xe3\xba\x71\x46\xe4\x60\x56\xa0\x5a\x6d\xd4\x20\x3e\x5f\x4a\x3b\x31\x9a\x00\x00\xc8\xaa\x20\x45\x42\x37\xec\x13\x08\xd3\xd9\x7e\x4e\xf9\xd9\x70\xca\x51\xd7\xc7\x44\x13\x94\x9f\xa7\x37\x71\x34\xe4\xac\xcf\xcb\x1c\x5f\xcf\x8c\x80\xbc\x9c\x67\xb6\x3b\x42\xc4\x48\x54\xa3\x4f\x61\xf3\x64\x59\x35\x41\x84\x29\x99\x2a\x45\xc6\x5c\x23\xd3\x00\xc8\x1c\xa5\xc6\xd1\xb6\x1c\x1b\x67\x76\xe3\x7b\xec\xd0\xcc\x58\xdc\xb8\xd3\x41\xe6\xce\xd8\xb7\x6e\x5b\x18\x2d\xc1\x4c\xcf\xef\x0c\x57\x8f\x2c\xdf\x97\xf4\x67\x36\x11\x81\xf5\x74\xb6\x91\x28\xa4\x90\xae\xa7\xc6\x09\xa3\x21\xb3\x52\x57\xe2\xa7\x90\x75\xff\xd3\x05\xf4\x82\xc2\xb5\x60\x14\x5c\xc9\xb2\xb4\xa6\xe6\x4f\x62\xa3\xec\x0b\x45\xad\x31\x17\x9c\xcb\xf2\x22\x83\xca\xdd\x47\x72\x95\xdd\xe7\xbd\x6f\x0b\x5e\x58\x7f\xf7\x9f\xe1\x0f\x1b\x11\x83\x7e\xf2\xf2\xd4\xae\x85\x06\x73\x39\xd2\xc1\xe8\xcf\xac\x3e\x00\x32\xee\xd0\xd7\x91\xbf\x98\x33\xcb\xde\x67\x8e\x1d\x43\x4a\xe1\xa4\xe7\x76\xb5\x25\x1b\x62\xb0\x4e\xbd\x45\x31\x41\xde\x6e\x2b\x05\xb3\xee\xb5\xde\x92\xf9\x86\xd6\x6f\xfc\xb7\xe7\x35\x1b\x09\x82\x62\x72\xf7\xef\x57\x0a\x79\x24\xb8\x23\xdd\x8b\x2e\xe0\x94\x00\x90\x31\x44\x5f\x22\x97\x9b\x2d\xd4\xec\xcb\xc4\x5a\xcd\x56\x25\x26\x35\xd8\x3e\xac\x68\x88\xb1\x74\xfc\x54\x76\x22\xe8\xb0\x9b\x6a\xc9\x25\xf7\x3a\xaf\xa8\xa2\x4f\x36\x5b\xfc\x12\x0b\x15\x8d\x26\x02\x97\xf3\xdd\xf6\x53\x42\xd2\xf2\xb2\x64\xd4\xd1\xd2\xbc\x8d\x00\x64\xa4\x33\xdc\x11\xa7\x98\x42\x17\x1c\xf1\x40\x6c\xb5\xc7\xee\x14\x56\xdc\x0d\xef\x3e\x94\x15\xda\xc6\x9f\x14\x12\x1c\x7f\x29\x18\xed\x71\x3a\x21\x26\x1c\x65\xb3\x2d\xf1\x73\x74\x9a\x21\x06\x1b\x84\x8a\x57\x71\xc5\x36\x62\xee\x6c\x43\xa7\xdf\x48\x92\x03\x20\xc7\x3a\xc3\x07\x66\x47\x99\x79\x6c\xcd\x66\x44\x93\xbc\x53\x93\x3f\xc4\xbc\xf0\x9b\x88\x3b\x11\x87\x04\x99\x07\x3f\x46\x9b\x87\xde\xf0\x08\x88\xff\x17\xc9\xb2\xee\x4f\x98\x88\xb5\x35\x94\x4f\xb2\x45\x3f\x51\xd9\x90\x54\x9a\xb8\x61\x5b\x68\xba\x1b\x16\x00\x40\xfc\x93\xf1\x0a\x1a\x0b\x7f\xe6\x7d\x95\x70\x25\x32\xc8\xef\x7d\xb2\x7f\xd4\xd7\xc0\xdf\x71\x07\x62\x4e\x86\x6a\x06\xc7\xc7\xd5\x44\xe0\xdd\x57\xd1\x05\xd1\x2b\xd6\x81\x18\x12\xca\xf9\xd0\xc5\xc4\x3d\x98\x72\xe5\x73\x89\x39\x49\x49\xdb\x9c\xd2\x4e\xe1\xf4\x00\x20\x76\x67\x2e\xd1\xe4\x83\x0d\x82\xa3\xf0\x91\xa1\x1b\x42\x3f\xe2\xa4\xc3\x41\x04\x3e\x56\x26\x52\x3f\x7a\x7f\x50\x66\x34\x21\xf6\xa3\xfb\xee\xd8\x71\xf4\xf4\xb1\x4e\xd4\x87\x84\x9a\x43\xc7\xe2\x67\xb0\x81\xca\xb1\x18\xeb\xe4\xca\x6d\x87\x52\x99\x29\x9f\x01\xc8\xfe\x88\xff\x43\xe1\xf8\xcd\x47\x87\x67\x3e\x0d\x78\x11\x9b\x94\x74\x2a\x58\x0f\x45\x88\xbe\x13\x3a\x10\x5f\x14\x18\x1d\xe1\x9e\x70\xc1\x4d\x37\xea\x49\xd2\x3f\xab\xa7\xb1\xc1\xc9\x16\x06\x83\xa8\xd0\xd4\x18\x65\x45\xf4\xee\xf4\xfd\xdb\x8e\xa5\x58\x64\x18\x00\x90\xbd\x9f\xe8\x4d\xea\xf7\xe2\x26\x74\x66\x84\xf9\xfc\x4c\x3a\x9a\x98\xe9\x5f\x80\x9d\x88\x1a\x0e\x42\x27\x3b\x04\x84\x85\xba\xa6\x3c\x75\x75\x8b\xd0\x4a\xcb\xb6\x3a\x10\xb5\x92\x21\x63\x60\x1d\xbb\x3e\xb3\x61\xdf\x6a\x9c\x6a\xd6\xfd\x6d\x81\xc9\x9b\xf1\x4d\x00\x10\x42\x48\x54\x22\xd9\xd5\x09\xef\x92\x16\xe8\xa1\x43\x90\xc1\xd4\x78\x1f\x24\x2c\x46\xca\xfb\x45\x67\xa7\xf9\x7d\x0b\xac\x27\x6a\xbb\x1c\x0c\xb9\x49\xbc\x69\x19\x12\x7e\x33\x47\xa0\x3f\x11\xb5\x9b\x64\xb2\xef\x79\xf4\x24\xe9\xe4\xb6\x01\x2c\x44\x56\x05\x00\x4f\xa0\x86\x11\x68\x8e\x87\xe8\x5d\x29\x85\x2e\x68\x7a\x4e\xbc\x94\xfb\x49\xba\x75\xf8\xa8\xb7\x11\xf2\xc7\xf7\xa2\xdf\x18\xb2\xe8\x6c\x19\x64\x86\x14\x58\x74\x87\x52\x90\x08\xfd\xec\xf0\x27\x88\xc1\xbe\xb5\x28\x69\x78\x75\xfb\x96\x24\x1c\xec\x0d\x40\xd6\x23\x68\x0c\x9f\x61\xfb\x50\x14\x9b\x9c\xec\x18\x9f\x97\x88\xba\xe3\xba\x21\x37\x21\xac\xd7\xa3\x5b\xe8\xef\xf3\xd6\x27\x4a\xe0\xee\x54\x11\xb0\x83\xef\x6e\x61\x1f\xcc\xe5\x05\xea\x07\x84\xed\xe7\x46\x2b\x9b\x46\xac\x72\x0a\xb7\x33\x12\x1b\x99\x75\x00\x64\x71\x91\xde\xac\x0b\x36\x2b\x25\xc7\x70\x6f\x1c\x22\x8a\x3e\xa3\xb2\x9c\xff\x15\x56\x85\x85\xb8\x0f\x16\x1c\xf2\xe9\xf2\xce\x14\x2d\x3a\xa5\xf8\x1f\xce\xa3\x58\x18\x05\x9d\xc9\x35\xd5\x47\x85\x12\x04\x9f\x94\x33\x23\x52\xf8\x67\xb6\x5f\x48\xb4\x63\xa3\x01\xc8\x0a\xa1\xa7\x67\xf9\xd9\xc8\x57\x5a\xe0\x4a\xec\x0b\xca\x87\x51\x66\xce\x7a\x65\x0a\x61\x06\x6e\x8f\x4a\x52\x7c\x8a\xbd\xda\x8a\xa6\x9c\x70\x7e\x84\x42\x03\x0b\x97\x20\x89\xfc\x4e\xfd\xb6\x90\xc7\x22\x7d\xe5\xab\xe1\x6f\x72\xcd\x25\x0f\x27\x4c\x73\xe6\x00\xc8\xda\x49\xff\x4a\x6c\xc5\x4c\xb8\x5c\x4c\xfd\x9d\x90\xe8\x81\x8a\xef\x4e\x0c\xf3\x7e\x12\xfe\x2f\x09\xed\x9f\xef\x7b\x02\x2b\x08\x8e\x75\x1a\xc3\x9d\x0e\xb7\x37\xef\x48\x7e\x1b\x6d\x7c\x80\x98\xba\x2d\xee\x9f\x52\x75\xaa\x0d\x46\x67\xcb\x07\xfc\x89\xc4\x39\x00\xc8\x01\x19\x77\xb2\xff\xa2\x63\x3d\x0e\xa6\x46\xc4\x07\x7a\x33\xe2\xe5\x30\x1c\xbf\x89\xf0\x8c\x84\xd3\x41\x1a\xbe\x86\x49\x52\xa1\xbd\x4e\x0e\xd8\xd4\x48\x27\x73\x7b\xdc\x7c\xcc\x9b\x03\x3a\x29\xeb\xd1\x18\xa5\xf0\x14\xbf\x04\xdb\x2d\x6f\xf1\xa6\x49\x4d\x00\x90\x77\x64\x86\x64\xbb\xc7\x6d\xf4\x1e\x4b\x19\x44\x59\xfb\x2d\xa1\x49\xe8\xde\xc0\x0b\x61\xf7\x30\xdb\x42\x56\x7d\xda\x12\x78\x11\x07\x1c\x17\x92\x76\x46\x43\x66\x77\xb1\x85\x71\x2b\x7a\x2b\xb8\x17\x98\xad\x4a\x3a\xc9\x81\x89\xb5\x5b\x1e\x67\xf5\x62\xcf\x03\x40\x3a\x97\xa5\x81\xcf\x8b\x4c\x0f\x06\xc9\x7b\xa2\xf7\x84\x72\x51\x52\x31\xef\xc2\x7f\x85\xd6\xc5\xf5\x47\x35\x79\x17\xa3\x39\xb1\x89\x0e\x0f\x31\x91\x68\x63\x33\xf9\xc4\x7d\x09\x9b\xf5\x9c\x92\xaa\x92\xba\x15\x1f\x60\x83\x70\x33\x5b\x9e\x67\xd2\x53\x4a\x00\x20\xc9\x12\x8c\xb3\xf6\x85\xfa\x46\xe1\xb1\xe7\xc3\xf5\x63\x9a\x63\x6f\x47\x5a\xc6\x75\x87\xd0\xa3\x03\xd0\x0b\x5e\xa2\x58\x6a\x82\xb8\x03\x40\xd5\x24\xd9\x1c\x8d\x88\xaf\xc2\x41\xba\x8b\x09\x47\x53\x1a\x14\x7b\x12\xa3\xd3\x5c\xc4\x37\x64\x38\xa6\xdf\x04\x20\xc7\x8d\x88\xcb\x20\x06\x1e\xc0\x54\x27\xc5\x06\xc7\x27\x6a\xc7\x0c\x86\x4e\x24\x35\x07\x67\x44\xa8\xe3\x0e\x7b\x56\x44\x95\x26\x3f\xb3\x3f\x10\xf3\x23\x95\x75\x64\x08\x75\x20\x5d\x4f\x17\x8d\x7e\x99\x71\x5e\x91\x8e\xe1\x65\x7e\x17\xd7\x49\xff\x0f\xef\x07\x00\x91\x41\xa2\xa7\xc5\xf9\x78\x66\x0e\x27\x14\xf8\x9d\xca\x62\x46\x6f\x0f\xf4\xc7\x1b\x07\x89\x85\xec\xc4\xaf\x79\x44\x85\xdd\x23\x9c\xb3\x33\x88\x2c\xcd\x2e\x3c\xfc\x23\x46\x8e\x88\xd2\xdd\x14\xfb\x3e\xc7\x52\x51\x84\x3e\x96\x33\x27\xce\x49\xad\x20\xcd\x00\x90\xdd\x40\x35\x4f\x11\xb9\xff\x83\x09\xf1\x1f\xbc\xae\xc0\x21\x91\x5d\xbe\xf3\xb0\x7a\xc0\xc5\x80\xcb\xf0\x56\xf7\x90\xe0\x7b\xb0\x98\x6d\x54\xd8\x03\xe8\xf3\xe1\x98\xc8\x06\xe8\xbd\xce\x74\x74\x15\xbc\x49\xb1\x33\xae\x18\x7a\x23\xfe\x28\x85\x03\x89\x00\xc8\xde\x08\xe1\x93\x63\x5d\xce\x0a\x6b\xd1\x93\xee\x6b\x82\x0b\x11\x3c\x6f\x65\xfe\x6d\xff\xdb\x7e\x6e\xbc\x6f\x6e\x65\x81\x34\x9e\xaa\xcd\x42\xc8\x10\x37\xfa\x30\x08\x6f\xe5\x74\xea\xb4\x46\xde\xe0\xc8\x2b\x3e\x8a\x4d\x63\xc3\x12\x36\xc9\xe7\x19\xac\xff\xb9\x24\xc4\x15\xf7\xc9\xf9\x72\xa1\x3f\x3a\xcc\xed\x5d\x81\x46\x84\xba\xd7\x1e\xd1\x1d\x7f\xbe\xaf\x4f\x5e\x87\x5b\x64\x40\x6e\x2e\xd5\xa6\x35\xf8\x9a\x30\xc3\x74\x2d\x6c\x59\x80\xd7\xe9\x8f\xdc\xc3\xaf\x55\x92\x8c\xf9\xcc\x4b\x93\x20\x27\xe3\x58\xba\x00\x10\xd2\xe9\x5b\x70\x03\xce\xfb\xca\xcc\xd0\x4a\x6e\x6a\x25\xb3\xe1\x6f\x3c\x5d\x8b\x8f\xf8\xa3\x7d\x68\x85\x73\x6e\x1e\xfe\xa7\x0a\x82\x6c\xda\x83\xb7\xe6\xef\x3c\xbc\x39\x4c\x31\xef\x91\xce\xd3\x08\x42\xee\x2d\x25\x6c\x4c\x8c\x60\x51\x62\x19\xf7\x81\x4d\x03\x80\xa0\x43\x2f\x4e\xcd\x4a\x7e\xef\x9a\x82\x51\x4f\xc9\xf7\xb8\x1e\x69\x97\x1a\xee\xa3\x1d\x60\x95\xfa\xdb\x7f\xcc\xad\x3e\x6d\x38\x38\xc3\xc6\x33\x1d\x0e\x3f\x6c\xf2\x2c\xc3\x33\x7a\x8b\x96\x76\xa6\x41\x5c\xb5\x3c\x31\xf3\x66\x3c\x66\x63\x63\x0e\x2d\x71\x1e\x00\x2a\x31\x93\x94\x32\x84\xbd\xeb\x51\x18\x4f\xc1\x75\x7a\x8f\x46\xf4\x25\x37\xf8\x5d\xf2\xef\x4c\x49\x0e\x52\x75\xdb\x9e\xea\x15\x5a\x66\xbd\x90\x66\x1f\xf9\x9f\x49\x56\xba\x69\x4c\x83\xe6\xed\x0c\x43\xd4\x5b\x79\x8f\xcc\x8d\x98\x8c\x8d\x5d\x39\xeb\x93\xca\x00\xa0\x1e\xc9\x5c\x49\x7e\x95\x78\xce\xfb\x21\x7a\x3e\xe9\x8c\xdf\x85\x88\x1d\xd8\x87\x81\xcd\xfe\xdb\x71\x57\x43\x4e\xb9\x66\x26\xdf\x0f\xff\x60\xed\x90\xf2\x33\x5a\xdf\x44\x2c\x4d\x2a\x2e\x4b\x93\x97\xae\x14\x4f\x95\x57\xcf\x50\x4b\x98\xda\x58\x45\x64\x63\x07\x00\xa0\xbc\xce\x12\xe1\xb6\xa0\x2b\x82\xce\xa0\x64\xe3\x1f\x87\xea\x84\xd1\x13\xfc\xc2\xb9\xbe\x7d\x89\x0d\x51\x3a\x2e\xb6\x58\x10\xf3\xf2\x98\x05\x2e\x16\xd5\x6d\xac\x92\xdc\x87\xc9\xd4\xf8\x92\x72\x3b\xf1\xaf\xdc\x6a\x9a\x37\xf6\xea\xc6\xbe\x6c\x54\x0a\x09\x00\x8a\x19\x81\x90\xf4\x21\x26\x33\x6a\x63\xec\x87\xb8\xed\xd1\x3f\x42\xd3\x51\x67\x63\x9f\xfa\x74\xc7\xa3\xd1\xe2\xce\x9e\x09\x3b\x30\xce\x56\xc9\x89\x27\x13\x99\x46\x44\xac\x05\x76\x4a\x83\x87\xa3\x25\xaf\xc8\x4d\xa7\x90\x52\xdd\x36\xde\x27\x18\xa4\x4f\x02\x40\xc6\x13\xf3\x13\x4d\x22\x9a\xe2\x59\x31\xb5\x51\x19\x09\x12\x21\x29\x31\xb1\x89\x0c\xef\xd1\x38\x2f\xac\xa6\x13\x06\xed\x88\x7b\x62\xd9\x89\xd1\x48\x29\x32\xbc\x9b\x70\x3b\xcd\x4e\xe3\x60\xd2\x81\xf4\x17\x72\x7d\xb8\x89\x8c\xaf\x9b\x54\xf1\xeb\xf0\x8e\x00\x90\x06\x48\x22\xcc\xe5\xe0\x92\x0c\x85\x68\xfd\xd0\xc1\x8c\xbb\x41\x7f\xc3\xdf\x65\x16\x78\x11\xa3\x0c\xb3\x92\x1d\xc3\x63\xc8\xf8\x08\x8b\x6b\x71\x7d\x04\x17\xc3\x63\xe8\xee\xec\xa3\xea\xaf\x30\x0a\x44\x53\xb9\x6b\x49\x08\xf1\xf4\x26\x46\x26\x9f\x44\x05\x20\xe7\x22\x75\x1f\xfa\xa5\xbf\x33\xed\x60\x64\x5b\xe0\x38\x6d\x77\xe0\x62\x88\x2b\xf5\x87\x67\x7a\xd8\x55\x9a\x84\x03\x3d\x32\x92\xa6\x63\xb1\x3f\xfa\x0e\xcd\xeb\xd0\x64\x9c\x3c\x8d\xac\x7e\x02\xd5\x4a\xbb\x24\x2f\x96\x70\x8d\x76\x77\xd3\xfd\x0c\x02\xed\x11\x00\x39\x3a\x90\x29\xaa\xdd\xa7\x95\x77\x39\x02\xf6\xdf\xcd\xdb\x1c\x30\x11\xd8\xc3\x35\xf4\x28\x0b\xf1\xe5\x70\xec\xef\x87\xfd\x60\xbf\x34\x6f\x8d\xec\x64\x27\x1c\xc2\xc6\xec\x62\x7d\x53\xaf\x8c\xbd\xc6\x1a\x91\xd7\xc6\x0c\xb3\x0c\x37\xeb\xa6\x9f\xa1\xb3\x01\x20\x9e\x85\x3f\xa1\x8c\xbc\xf1\x22\xfd\x88\xff\xfc\xd6\xe7\xa9\x04\xc4\x06\x74\xe7\x02\x0f\x9f\xe0\x40\xa1\x84\xfd\x60\xd8\x3a\x81\x92\x39\x2f\xe2\x2c\x3f\xf4\x50\x64\xb4\x35\xaf\x5b\xbd\x29\x76\x27\xef\xb0\x7c\x00\xe6\x10\x67\x75\x73\x44\x3a\x9a\x29\x0d\x00\x31\x17\xe9\x89\x7b\xe6\x85\x14\x2d\x84\x2f\xfb\x2a\x17\x0a\x02\x74\xfc\x97\x0b\x4c\x3d\x0e\x05\x51\xf3\x37\xd9\xb7\x87\x6a\xe7\xdd\x36\xcf\x0b\xff\x9c\xfb\xf2\x50\x66\x14\x39\x57\x5a\x7d\x31\x26\x5a\x88\x97\xaf\x8b\xaf\xe0\xef\xdb\x5c\x97\xf6\x89\xe5\x0d\x00\xd1\x9a\x6e\x1e\x9d\x49\xa4\xb8\xb9\x86\x68\x12\x6b\x3c\x09\x3e\xf6\xc4\x55\x9f\x6a\x17\x15\xe2\xdf\x00\x31\xeb\x84\x1c\xad\x60\xbe\xe9\xbf\x1c\x62\xb8\x92\x1e\x21\xe7\x7a\x54\xdf\xbe\x4e\x52\x70\xec\x3f\xa9\x79\xf2\x45\x34\x41\x2c\x92\x46\x4b\x62\x03\x00\x63\xb2\x1a\xa3\x96\x08\xd5\x9e\x5a\xc1\xe5\x84\x15\x1f\x79\xef\x0b\xd9\xb6\xfe\x62\xce\x5d\xd9\xb4\x20\xfd\x63\xdf\xb2\x97\x42\xa9\xa6\x35\x44\x9b\x88\xab\x7a\x6a\xc4\x89\x18\xf5\x7d\x69\x39\x81\x28\x43\xa9\x11\xb2\x78\x7c\xbc\x18\x9a\x26\x89\x3d\x02\x00\xac\x97\xf5\x20\x6a\x6f\xd6\x09\x1f\x93\xa0\x7f\x78\x69\xbf\x57\xde\x4e\xf8\xc2\xc0\x4a\xe7\x43\xf8\xf7\x21\x45\xc7\x20\x02\x26\xbc\xc3\xd4\x94\xf0\x3b\x6a\x56\x77\x21\xbb\x34\xf6\xee\x3e\x2b\xe2\x31\x74\xa7\x54\x2b\xc9\x08\xd3\x2c\x96\x46\x15\xe1\x6c\x01\x80\xee\xe3\x71\x11\xaf\xd2\x4a\x82\xd2\x03\x2f\xa7\xbb\x85\xcc\x7a\xa9\x64\xa8\x84\xef\x70\x52\xcb\xb8\x19\xd9\x6c\x95\x9b\x59\x11\xe3\x6d\x82\xc9\x4a\x42\x89\xe9\xaa\xe2\x8d\xe2\x3b\xf7\x5e\xc1\x7f\x48\xdc\x28\x95\x4f\x24\x26\x35\x89\x15\x53\x08\x29\xff\x00\x80\xf4\xb2\x65\xc2\x1f\xe3\xae\x47\x6e\x0c\x58\x4c\x1e\x8b\x06\x9e\x56\x29\xd3\x31\xdf\x1d\x3d\x53\x27\x50\x8a\x96\xe7\xd2\xe6\xe2\x03\x8d\x67\xd2\x2f\x25\xe4\xeb\x34\x65\x9c\x4d\x9a\xde\x2b\xca\xe4\xe2\xce\x49\xe5\x12\x06\x53\x76\x8a\x5d\x22\x7b\x64\xf8\x00\x40\xc3\x10\x7f\x86\x09\x12\xb7\xa3\xfe\xf9\x4f\x27\x59\xc4\x17\x7a\x24\x60\xd9\x09\x4a\x0e\x2c\xdc\x6c\xe2\x92\xe5\xb6\x14\x09\x6c\x91\xb1\x5e\xaa\x63\xb2\x9f\x8e\x61\x5a\x74\xea\xd6\xbd\x21\xe9\x1a\x69\x23\x52\x55\xf8\x75\xe9\xe3\xeb\xe4\x49\x3a\xf8\x9b\x00\x50\xbb\x48\x37\x42\x5e\xa0\xa2\x53\x13\xfd\x5c\xd1\x73\x69\x59\xee\x07\x30\xc7\xd2\x71\xf6\xc4\x84\xd9\x8c\x54\x8b\x43\x49\x1e\x99\x0c\x23\x1a\xf6\x72\x56\x85\xf6\x68\xf2\x7e\x7c\xd7\x5e\xfd\xe4\x5f\x84\x79\xa9\x6b\x19\xd7\xb3\x71\xeb\xb2\x88\x27\x49\xb1\x00\x50\x46\xa9\x4a\xc1\x09\xd1\x15\xa4\xd3\xbe\x3b\x63\x77\x91\xde\xba\xe9\xc4\x0d\x90\x65\xed\xaa\xd1\xa9\xe4\x68\x73\x18\x73\x90\x7c\xda\xf0\x53\xc2\x07\x8a\x86\x76\x68\x52\x0e\x25\x7f\xaf\x2c\x56\x40\x55\x92\x96\x4a\xd7\xa6\x12\xd6\x5d\xca\x6e\xa3\xe9\x00\x40\xd9\x4e\xfb\x1a\xe4\x11\xd1\xc5\x22\xf9\x6c\x8d\xf2\x62\xc9\xb8\x9a\xc5\xec\x60\xd6\xdb\xde\x89\x7d\xc6\xf4\x32\xfb\x80\x1a\x65\x8a\x1b\x72\xe3\x9b\x19\x4f\xb5\x77\x26\xf8\x31\x2e\xee\xf9\x93\x78\x8e\x71\x4b\xda\x2a\x6d\x13\x43\x7a\xfd\x1e\xc2\x1b\xc4\x1f\x00\x72\x0d\xcc\x0d\x5c\x0b\xc7\xf0\x49\xde\xa3\x91\xba\xbc\xdb\x2e\x4f\xa2\xb7\xf2\x74\x6d\xab\x63\xee\x73\x2b\xcd\xe6\xe2\xfa\xb9\x3b\x0c\x53\xd0\xdd\x9c\x93\xda\x5b\x30\x09\x9c\xb4\xbd\x9b\x13\x37\x72\x82\xa4\x51\xa9\x10\x2b\x6d\xbd\x23\xa1\x90\xde\x0d\x00\x19\x85\x68\x07\x8e\x84\x45\xe6\x2d\x78\x43\x11\xe6\x79\x1b\x5c\x7a\xa2\x0e\xe4\xea\xdb\x92\xa3\xbf\x09\x53\xcd\xce\xc4\xce\x08\x4e\x1a\x66\xa2\xe6\x04\x56\xda\x0a\xf1\x3c\xfe\x9d\xbd\x06\x09\x36\xfc\x00\xe9\xe6\x94\xa7\x9c\xd4\xf5\x5c\xc2\x3e\xc6\x32\x00\x64\x79\xa4\xcb\x7b\x96\xe9\xec\x76\xd7\x15\xc3\xb8\xe0\xf9\xcb\x0e\xcf\xc8\xf6\x95\xb1\x70\xa4\x7f\x09\xf0\x34\x46\xe8\x82\xe0\x5e\x3d\x69\x7a\x44\xb8\x94\x2a\x96\x1e\x11\x15\x2d\x27\xa0\x1f\x8f\x8d\x13\x77\xa0\x77\xa1\xfb\x01\xa0\x17\xe3\x3c\x00\xa0\xaf\x10\xb4\xbc\x6d\xe9\x78\xcf\x08\x97\xef\xf4\x9d\x3e\x9e\x76\x0a\xc8\x7d\x7f\x13\xf3\x4f\x08\x1c\x64\x67\x7c\x18\x31\x0d\x4d\xd3\xbd\x8e\x68\x44\x54\xa9\x5a\x22\xd6\xd1\xc3\x72\xd9\x48\x6b\x5c\x8e\xb8\x17\xf2\x3a\x9e\x0e\x00\x5d\x0d\x77\x1d\x00\x7a\x09\xc1\xc0\xeb\x38\x5c\xe9\x23\xed\x02\xc1\x81\x7e\x37\x6d\x8f\xc3\xe6\x81\x05\xe6\xb5\xd0\xf7\x90\x0c\xa3\xe7\xd0\xf5\xf0\x14\xdd\x02\xe8\x41\x54\x82\xaa\x04\x2c\x19\xeb\x21\x17\x0d\xd3\x50\x2b\xe2\x41\xc8\x6e\x4c\x17\x00\x48\x63\xf2\x3c\x00\x74\x7b\x42\xa9\x67\x2f\xe5\x4a\xe0\x3d\xe7\x16\xca\x4c\x88\xbd\xed\x26\xca\xbd\xb0\x7a\xb3\xb7\x94\xd5\x48\x4d\x23\x2b\xea\xe6\xe8\xb3\xba\x5b\xa8\x0e\x71\x28\x95\x46\x6a\x09\xfa\xbd\x9c\x31\x6d\x5b\x82\x92\x78\x32\x84\x4a\x2a\x04\x00\x66\xa5\x11\x01\x40\xf2\x88\x62\x1e\x79\x39\xa9\xe1\xc3\x4e\x67\x72\xf0\x91\xef\x6c\xc2\x73\x1a\x62\xa4\xcd\xbc\x73\xde\xc4\x99\x1a\xf6\x91\x1c\xd0\xa9\x3a\x55\xa4\x1e\x4c\xb7\x4a\x18\x59\x29\xf1\x8a\x9c\x2a\x39\x1f\x7b\x4a\xbc\x80\xda\x92\xfc\x13\x00\x28\x3a\x73\x04\x00\x78\x3e\xe7\xb4\xfb\x20\xfe\x5a\x9c\xb3\x93\x18\x41\x11\xbd\xd9\x7a\x9c\xc0\x88\x1f\x3f\x7a\x3a\x7b\x63\x02\xcd\x50\x37\xbb\x28\xc9\x5b\xe7\x08\x51\x15\xb7\x5f\x45\x99\xd8\x9e\xfc\x4c\x4e\x21\xc7\x30\x95\x2f\x3e\x45\xfe\x92\x5e\x07\x00\xcd\x99\x70\x15\x00\x78\x23\x19\xeb\xb6\x25\xdd\x0d\x37\xe5\x30\x94\x3e\x93\x22\x73\x6c\x26\x23\x32\xd5\xf3\xc8\xc7\x4c\xb9\x34\xf2\xa1\xbc\xcc\x1b\xe9\xa3\xda\xb3\x59\x75\x19\xbf\x94\xef\xe2\xbd\xb3\x8c\xe5\xf6\x12\xf4\xf1\xb1\x12\xb2\x39\x57\xb2\x8f\x02\x40\xb9\x41\x1a\x05\x80\xf6\x97\x9a\xea\xea\x9b\x6c\x9b\xad\x67\xbf\x96\xb2\x2e\x7b\xc8\xea\x77\xca\x7d\xe2\x81\x23\xde\xa9\x53\xc4\x89\x43\xf2\x69\x6d\x39\x51\xda\xe9\xe9\x6d\x24\x19\xe5\x9e\x0c\x06\xe9\xa4\xdc\x81\xcc\xab\xe4\x6c\x09\x0c\x51\x9d\x72\x1d\x00\xf2\x14\xf5\x03\x00\x34\x3b\x68\x93\x8b\x53\x92\x0d\xbc\x66\xbf\x15\x7b\x10\x11\xb7\x3a\x82\x33\x45\xa4\x0e\x8f\x26\xab\x23\x8a\x06\xdd\x29\x3b\x11\x13\x6d\x8d\xd4\xa3\x48\x9a\x32\x3d\xcd\x08\x69\x97\x33\xce\x90\xa5\x6f\x96\x68\xce\x06\x08\x17\x98\x92\xbe\xc0\xa3\x00\x50\x67\xe1\x68\x17\xb1\x44\x53\x56\x9b\xdd\x4c\xd2\x3e\x16\xc3\xf2\x3d\x56\x8d\xe5\x7b\x98\x89\x93\x64\xe9\x1a\xe4\xe1\x7e\xb2\x64\xb5\xe5\x53\x74\x58\xea\xca\x50\xea\x41\x96\xb9\x9c\x73\xba\x2b\x4b\x5d\xe2\x22\x81\xc8\x28\x02\x31\xa4\x1a\xe4\x05\x00\x54\x01\xfc\xcd\xf9\x6a\x42\x2c\x6f\xca\xae\x2c\xd1\x8a\x87\xb7\x9c\x4a\x32\xe1\xed\x39\x8c\xc5\xee\xe2\xde\x34\x10\x60\xbf\x72\x6b\xb4\x55\x93\xf5\xb8\xd5\xca\x65\x29\x87\xb8\xed\x72\xd9\x69\x39\x9c\xd9\xad\xeb\xf0\x8f\x58\x01\xa0\x84\x74\x88\xbe\x0a\x00\xd5\x06\x21\x5b\xd7\xe7\x13\xdc\x0f\x9a\x73\x45\xde\x5e\x8e\x26\x57\xf2\x22\x7c\x03\xf4\xf1\xb9\x09\x01\xa9\x5a\x2c\x61\x71\x70\xbb\xf2\xaa\x50\x32\xec\xae\xfc\x37\xc1\xdb\xc8\x17\xdb\x4f\xf2\x3f\xc7\xaa\x6f\xd8\xc1\x55\xc5\x6c\x00\x80\x2d\x97\x32\x07\x00\xf3\x59\xf6\x80\xb5\x7b\xde\x88\x67\x8e\xb9\x4d\x6e\xbf\x0f\xc6\xa4\x40\x78\xcf\xdf\x4d\xdf\x5e\xb8\x2e\xc8\x48\x0b\x25\x70\x0c\x3d\xaa\x7c\x9d\xbf\x1c\x61\x2d\xff\x89\x3f\x17\xad\xb0\xfd\x0c\xef\x41\xdc\xee\x0d\xba\x9c\x58\x4c\x2f\x00\xac\xea\xd4\x3d\x00\x30\x0b\xb3\x85\xc7\xde\x0a\xdf\x7b\xff\x34\x7b\x25\x94\xf0\x9b\x30\x71\x16\xf8\x06\x92\xf5\x77\xf0\xf9\x21\xa6\x5a\xe6\xbc\xd5\xf0\x6d\xca\x27\x79\xf9\x91\xab\xf2\x2f\x78\x79\x31\xe5\xdb\x67\xb8\xc3\xa8\xc8\x0d\xc7\xd8\x85\x09\xa7\x00\x60\xc9\xa6\x7e\x00\x80\x79\x24\xfb\xf2\xb1\x40\x5e\x51\xe0\x26\x33\x1c\xf7\x74\x70\xa9\xf1\x4b\xae\x5c\x98\xfc\xc1\x1e\x4e\x51\x44\xae\xe6\x43\x8e\x4e\xf4\x7f\xca\x14\xf6\xd7\xd8\x2e\xf9\x05\xce\x26\xb4\xec\xf6\x0b\xec\x60\x4c\xda\x86\x24\xe6\x7d\x2c\x04\x00\xe3\x7d\x06\x0a\x00\x06\x31\x67\xb3\x95\x09\x5b\x25\xac\xee\xa8\x90\xc5\x88\x78\x6c\xec\xce\x02\xd1\xbb\x0f\x6a\x31\xbb\x63\xcd\x34\xf1\x4c\x1c\x0a\xab\x7c\x88\x19\x1c\xdf\x21\xdf\xc9\xcc\x4a\x18\xdf\xbe\xc2\x58\x4b\x5a\xdb\x50\xcb\x50\x4b\x59\x01\x80\x3e\x85\x3f\x02\x00\xbd\x93\x54\x6b\x19\x48\xff\x14\x43\x3e\xb2\x4c\x47\xc5\x25\x1b\x8d\x21\x7f\xd0\xbe\x07\xfa\x90\xab\x18\x05\xcd\x5d\xc8\xc9\x84\xb5\x7d\x9f\x91\x33\x49\xcb\xf2\x25\xc8\x53\x5c\xf9\xf6\x35\xa4\x3b\xa5\x61\xc3\x03\x24\x3b\x83\x0c\x00\x52\x97\xfd\x16\x00\x64\x85\xa2\x65\x01\xd3\x8c\x93\x0e\x1d\x91\xa3\xfe\xc1\xce\x18\x29\x50\x9f\x27\x3b\x1c\x38\x44\x7d\x9c\x52\xac\x71\x86\xfa\x3a\x75\x6d\xdf\x02\x6d\x77\x7a\x9c\x7c\x03\x2d\x20\xa3\x4f\xd2\x92\x36\x9a\x15\xb2\x31\x02\xf2\xca\x5e\x03\x00\xfe\x8f\xec\x01\x00\x3c\x45\xfd\x66\x3e\x45\x72\xce\x2c\x3d\x8c\x90\x1c\xb3\x44\x86\x2d\xa4\x58\x3c\x51\xef\x0e\x89\x4a\x70\xd1\xe0\x93\xea\xb2\xb5\xf7\x1d\x27\x3d\x22\x1e\x96\xaf\x24\xab\xe4\xa8\x48\x46\x53\x42\x48\x99\x1b\x5b\xa8\xe3\x94\x33\x00\x40\x1b\x69\x72\x00\x40\x5f\x21\x4f\xf3\x75\xd9\xd9\x94\x49\xd3\xa7\xd9\xc9\x54\x27\x43\xf5\xec\x22\xea\xa4\x1e\x35\x7b\x88\x76\x40\x23\x23\xfb\x37\xad\x6f\x5f\x35\xf1\x28\xe4\x27\xdf\x4b\xe4\xc3\x40\xb2\x91\xc4\x84\xa1\x8d\x2f\x29\x7c\x78\x12\x00\x9a\x0e\x8c\x07\x00\x4a\x81\xb3\xcc\x84\x04\x5f\x44\xca\xb4\x82\xe0\x82\xa4\x1e\xfa\x4e\x40\x23\x93\x7a\xd1\x04\x88\xbe\x4d\x23\x8c\x70\x8a\x0e\xef\x6b\xc9\x96\xa0\xbf\x97\xbf\x91\x4d\x62\xa4\x4b\x3e\xcb\x69\x61\x28\x6d\xf2\x27\x3f\xa3\x27\x01\x40\x9d\x41\x08\x00\x40\x66\xf0\x63\x33\x15\x7c\x04\xf3\xba\x69\x10\xde\x89\xb5\xef\xd0\x1d\x7c\x10\x2b\x54\x2f\x08\x1f\xcf\x2a\xd3\x70\xc1\x93\x59\xef\xf7\xcd\xe2\xdf\xb3\x03\xff\x93\x21\xa4\xb0\x93\xa5\x9c\x89\x93\x2c\xd7\x4d\x17\xc9\x87\x18\xcf\x00\xa0\x7a\xd1\xc3\x01\xa0\xad\x21\x5e\x47\x93\x4a\xd3\xdd\x77\x1b\xb3\x4b\x14\xbd\xf6\xe9\x87\x14\x2d\xfa\x5a\x6a\xbb\x17\x9e\x0a\xb0\x51\xed\x2c\xb8\x14\x1c\xab\x18\x5a\x70\x2c\x8c\x28\xdb\x51\x70\x30\x32\x4c\x42\x3c\xcf\x28\xd6\x5b\x6c\x8d\x9f\x8e\x59\x04\x80\xd3\x91\xfa\x0d\x00\xd6\x22\xd1\xf9\xc8\xef\xe2\x45\x4f\x37\x63\xfb\x22\xa6\x8f\x81\xbe\x66\x61\x90\xbf\xaa\xb6\x7e\x41\x60\xe0\x37\xd5\xca\x7c\x5a\xc8\x13\xc5\xb0\xfc\x0d\xe1\x4b\xb2\xc7\x45\xbf\xa2\xe8\x12\x4a\xb9\x1a\x71\x26\xeb\xa4\x79\x03\x09\x18\x00\x38\x3a\x69\x86\x00\xb0\x32\x89\xb2\x47\xe8\x45\xca\xde\xc7\x8d\x7e\x15\x3c\xf7\xa3\x1c\x7c\x9d\x7f\x23\xd0\x56\x5b\x5a\xf4\x38\xf8\x95\xaa\x40\xa4\x1c\xd6\xa6\x18\x90\x37\x1a\x99\x2c\x3b\x93\x77\x32\xfa\x97\xc4\x01\xe1\x16\x54\xea\x3a\x4d\xee\xbd\xc4\x78\x00\xd8\x55\x69\xaf\x01\x60\xed\x20\x3a\x1f\x51\x10\x75\x04\xd4\x1b\x75\xe4\x15\x06\xeb\x1e\x1c\xc8\xad\x0f\x1d\xd6\x5a\x14\xbe\x8b\xd8\xab\x1a\x2c\x8c\x88\xaa\x50\xb4\x16\x4a\xc7\xee\x93\xbd\x2a\xdc\x83\x4a\x95\x70\xe0\xcd\x62\xb2\xd6\xf9\x72\x34\x71\x6a\x00\xb0\xd2\x33\x0f\x01\xc0\x74\xcb\x49\x39\xac\x26\x74\x09\xdb\x62\x78\x47\x10\x13\xe1\x7a\xf0\x3f\x7e\x65\x14\x5f\xcb\x97\x2f\x19\xd3\xac\xf2\x9b\x57\x13\xb7\xa0\xb8\x91\x87\x89\x5f\x2f\x3b\xcd\xc3\x27\x6c\x96\x88\xe4\xa0\x93\x56\xd7\xb1\x59\x89\xa9\x08\x00\x4c\xab\xff\xf3\x07\x92\x4d\xfa\x69\x1a\xc9\x93\x8d\x2e\x35\x3c\xca\x75\x8a\xad\x38\x20\xe4\x34\xa0\xca\x34\x9f\x70\x0e\xc7\x47\xa8\xf4\xb0\x9f\x24\xe8\x2b\xac\xb0\xa7\x92\xe4\x65\x4f\xb3\x97\xb0\x4b\x12\x0c\xd6\xfe\x94\x82\x75\x0b\x8c\xc9\xcc\x03\x00\x30\x64\x88\xa9\x00\xd0\xeb\x29\x24\x93\x71\x26\x33\x51\xfc\x50\x0f\xe3\x53\x52\xdf\x01\x79\x06\x0f\xe7\xa6\x29\x64\x58\x26\xb7\xa9\xe4\x30\xc4\x52\x25\x15\x6e\xd3\xff\xa4\xe5\xc9\x7e\x60\xec\x4e\x5f\x96\x78\x49\x3f\x9a\x65\xb7\x3e\x18\x29\x27\xc6\x00\x80\xd0\xc9\x25\xff\xcb\x34\x75\x13\x63\x98\x9a\xb1\xeb\x90\x3d\xac\x9b\xa9\xa5\x77\x11\xfa\x9d\x75\x58\x33\x1c\x9a\xc7\xab\xaa\x60\xa0\x3a\xc2\x1e\x85\x17\xd0\x50\xf6\xd1\x1d\x3a\xd0\x13\xa2\xce\xd6\x63\xd0\x6d\x92\xd3\xfa\x45\xe8\x1d\xe5\x38\x00\xb0\x37\x4d\x05\x00\x78\x04\xc2\x1a\x37\x52\x83\x48\x77\x0d\x16\xa9\x2a\x64\x91\x5e\x1a\x55\x96\x62\xa3\xa9\x44\x79\x48\xb9\xa5\x12\x4e\xb9\x4c\x2d\x56\x78\x45\xb9\x43\xb3\xdf\x11\x44\x35\xa7\xfd\xde\x5a\x44\xfd\x06\x3d\xdd\x60\x4a\x1b\x86\xc3\x01\x80\xd8\xf0\xff\x94\x65\x0a\xc7\x1a\x23\x14\x35\x68\x8b\xc1\x30\xf9\x39\x54\xaa\xe7\x4d\xbe\x02\xeb\x6a\x8a\x91\xeb\xe0\x26\x15\x5f\x32\x84\x38\x29\xfc\x22\x17\x23\x4f\x77\xc0\x14\x71\x7a\xfc\xd6\x5b\x54\x79\xba\xf7\x06\x06\x4d\x11\xf9\x01\x00\xa4\x86\xb8\x00\x00\x7d\x87\x1f\x19\x27\x90\xf7\xd0\x07\x0c\xaa\x49\x37\x18\x07\xf4\x2c\x49\x43\x8c\x6e\x4d\x71\x52\x32\x53\x53\xc5\x85\x64\xcc\x1c\x57\x54\x25\x45\xb2\xfc\x77\x4c\x93\xde\xb2\xf4\xb6\x19\x52\x0c\x99\xe1\x1b\x3e\x52\x93\x19\xd1\x00\xd0\x3a\xe8\x87\x00\x80\x86\x11\x3f\xa3\xa3\x55\xe3\x6e\xcb\x07\xd3\x2b\xbd\x3c\x2f\x6a\x77\x96\x4f\xf8\x7c\x51\x5b\x2c\xeb\xf4\x7f\xb0\x27\xb8\x74\x2e\xe8\xb1\xdc\xa1\xd2\x80\xd0\x6b\x92\x16\x25\x29\x11\xef\x37\xfd\xc8\x5f\x8c\x65\x00\x53\x61\x54\x02\x01\x00\x9e\x78\xda\x34\x00\xec\x12\x62\xb9\x61\x67\xa5\xb1\xc7\xaf\x83\xa6\xe5\x93\xde\xb7\xb4\x91\x32\x2f\xbf\xcb\x6a\x63\xa5\x2e\x81\xfc\x3d\x51\x25\x19\x21\x21\x72\xce\x25\x92\xe1\xaa\x92\xe1\xc5\x87\xa3\xa4\x36\x2b\x88\x2e\xc6\x85\x00\x2f\x41\x59\xc2\x3f\x00\xb8\xec\xb4\x37\x00\xb0\xcd\x88\x11\x86\x52\xe5\x4d\xde\xfe\x07\x3e\x96\x69\xfa\x29\x69\x7b\x95\x5c\x0f\x58\x55\x6b\x2b\xbe\x15\x9c\xb5\x27\xaa\x78\x7b\x98\x9c\x5c\x40\xd1\x48\xc4\x69\x49\x7c\xe1\xeb\x68\xc6\x66\xd3\xbc\xe3\x28\x21\x40\xf3\xa7\x13\xbf\x03\xc0\x79\x93\x5e\x0c\x00\xeb\x3a\x51\x70\x68\xb9\x44\x3c\x40\xff\xc0\xf9\xa2\xb3\x41\xa3\xda\x66\x85\xcd\xa1\x96\x6a\xa2\x82\x7b\xe1\xa5\x7b\xfc\x0a\x8e\x45\xfe\x96\x8b\xcb\xff\x13\x83\x95\x6c\xc8\xb7\x8a\xfb\xba\x19\x25\x24\x60\xca\x81\x88\xb7\x19\x77\x1c\x00\xf6\x89\xcc\x71\x00\x98\x7f\x72\x1a\x0f\x6d\x2a\x18\x09\xcd\x3e\xb0\x33\xbf\x2a\x7c\x58\xab\x4e\xd4\x19\xf9\x55\x4d\x5e\x04\x62\xc4\xf6\x80\x3c\x52\xdc\x6e\x39\xe3\x3c\x07\xf4\x31\xc9\x8a\x5c\x1a\x86\xbe\x99\xca\x57\xc3\xae\x07\x67\x39\xce\x69\xca\x00\xb0\xa8\x04\x0f\x00\x98\x7b\xc9\xea\x06\x41\x79\x19\x51\xe7\xf4\x08\xb9\x8c\x98\x1b\x5a\xb2\xc2\x93\x71\x8f\x55\x7b\x84\x3a\xe8\x5a\xa5\x33\x82\x51\x0c\x5a\x6e\x97\x20\x2f\xd1\x5e\xb2\x96\x7f\x16\x6b\xb9\xb9\x81\xf3\x2e\xa5\x5d\x6c\x1d\xab\x3a\xf3\x2e\x00\x4c\x77\xe2\x2d\x00\x18\x2e\x94\x4e\xfd\x67\x7c\x99\x04\x09\x3d\x79\x9e\x75\xe2\x19\xcd\x59\x6e\x15\x16\xab\x4a\xe2\xaa\xe0\xe6\x95\x3a\x38\xe3\x29\x46\x72\xa6\x9c\xd6\xd4\x21\xc9\xd7\xec\x3f\xe9\x4e\x5b\x64\x59\xe2\x59\x68\xb1\x42\x06\x9e\x38\x09\x00\xfd\x14\x79\x09\x00\xba\x0e\xed\xa8\x7e\x3e\x6b\x35\xed\xb2\xee\x0a\x2b\x3a\xfd\xa7\x66\x1d\xf3\x4f\xa6\xaa\x2a\x8e\x59\x9c\xb5\x47\x69\x94\x69\x81\xd7\x92\x4b\x63\x5a\x13\xcc\xa5\xdc\x18\x2f\xb3\x53\xb7\xe4\xd3\x07\x49\x86\xeb\x54\x91\x49\xca\x09\x00\x10\x3e\x4d\x03\x00\x04\x0d\x05\xeb\x6b\xd3\xe3\x73\xec\x74\x79\xf4\x3d\x24\x65\x4d\x14\xf2\x99\xf4\x4b\xd5\x09\x11\x90\x87\x94\x1a\x10\x23\x0a\x49\x8e\x8d\x98\x53\x6d\xa5\xf2\x10\x13\x9a\xd5\x96\x7f\xf0\x2c\x14\xb3\xae\x1f\xa6\xc2\x92\xff\x53\x04\xac\x06\x00\xfc\x1a\x76\xd1\x8f\x41\xf6\x52\x83\x74\xeb\xe0\x05\x9a\xa4\xa6\x17\xdc\x48\x5b\x54\xb5\x84\x8d\x20\xbc\x52\x3d\x74\x1d\x36\x94\xab\x86\x6e\xc3\xef\xa5\x4e\x42\x7f\x10\xac\xb8\x39\xf4\x14\xe9\x58\xf7\x05\x7a\x89\x94\x00\x00\xfb\x22\xca\x00\xc0\x03\xf0\x79\xfd\x2a\x78\x3d\xfc\x52\xf7\x24\xd4\x84\xe4\x6b\xda\x43\x29\x74\x7b\x55\x1b\xda\x07\xfa\x3b\xa5\x6e\x1a\x93\x71\x5a\xee\x2c\x8d\xc6\x0c\x90\xfa\x40\x3b\xcf\x54\x11\x87\x69\x7f\x19\x1d\xeb\xad\x21\x17\xfa\xff\xae\xc1\xfb\xf4\xed\xff\xf3\x7a\x48\x00\x00\x62\x60\x1d\x58\x0f\x36\x80\x8d\x60\x13\xd8\x0c\xb6\x00\x71\x20\x01\xb6\x82\x6d\x60\x3b\x90\x04\x52\x40\x1a\xc8\x00\x59\xb0\x03\xec\x04\xbb\x80\x1c\x90\x07\xff\x81\xdd\x40\x01\x28\x02\x25\xb0\x07\xec\x05\xfb\x80\x32\x50\x01\xaa\x40\x0d\xec\x07\xea\x40\x03\x68\x02\x2d\xa0\x0d\x74\x80\x2e\xd0\x03\x07\xc0\x41\xa0\x0f\x0c\xc0\x21\x60\x08\x8c\x80\x31\x30\x01\xa6\xe0\x30\x38\x02\x8e\x02\x33\x60\x0e\x2c\x80\x25\xb0\x02\xc7\x80\x35\xb0\x01\xb6\xc0\x0e\xd8\x03\x07\xe0\x08\x9c\x80\x33\x70\x01\xae\xc0\x0d\xb8\x03\x0f\xe0\x09\xbc\x80\x37\xf0\x01\xbe\xc0\x0f\xf8\x83\x00\x10\x08\x82\x40\x30\x08\x01\xa1\x20\x0c\x84\x83\x08\x10\x09\xa2\x40\x34\x88\x01\xb1\x20\x0e\xa0\x00\x1a\xc4\x03\x0c\x48\x00\x89\x20\x09\x60\x01\x0e\x24\x83\x14\x90\x0a\xd2\x40\x3a\xc8\x00\x99\x20\x0b\xe0\x01\x01\x64\x03\x22\xc8\x01\x24\x40\x06\x14\x40\x05\x34\x00\x01\x18\x20\x80\x0e\x18\x80\x09\x58\x80\x0d\x38\x80\x0b\x78\x80\x0f\x04\x40\x08\x72\x41\x1e\x10\x81\x7c\x50\x00\x0a\x41\x11\x28\x06\x25\xa0\x14\x94\x81\x72\x50\x01\x2a\x41\x15\xa8\x06\x35\xa0\x16\xd4\x81\x7a\xd0\x00\x1a\x41\x13\x68\x06\x2d\xa0\x15\xb4\x81\x76\xd0\x01\x3a\x41\x17\xe8\x06\x3d\xa0\x17\xf4\x81\x7e\x30\x00\x06\xc1\x10\x18\x06\xc7\xc1\x08\x18\x05\x27\xc0\x49\x70\x0a\x8c\x81\x71\x70\x1a\x9c\x01\x13\x60\x12\x4c\x81\x69\x70\x16\xcc\x80\x59\x70\x0e\xcc\x81\x79\x70\x1e\x5c\x00\x17\xc1\x02\x58\x04\x4b\xe0\x12\xb8\x0c\xae\x80\xab\xe0\x1a\xb8\x0e\x6e\x80\x9b\xe0\x16\x58\x06\xb7\xc1\x0a\xb8\x03\xee\x82\x7b\xe0\x3e\x78\x00\x1e\x82\x47\xe0\x31\x78\x02\x9e\x82\x67\xe0\x39\x78\x01\x5e\x82\x55\xf0\x0a\xbc\x06\x6f\xc0\x5b\xf0\x0e\xbc\x07\x1f\xc0\x47\xb0\x06\x3e\x81\xcf\xe0\x0b\xf8\x0a\xbe\x81\xef\xe0\x07\xf8\x09\x7e\x81\xdf\xe0\x0f\xf8\x0b\xfe\x01\x00\xc4\xc4\xd6\xad\x5b\xbf\x7e\xc3\x86\x8d\x1b\x37\x6d\xda\xbc\x79\xcb\x16\x71\x71\x09\x89\xad\x5b\xb7\x6d\xdb\xbe\x5d\x52\x52\x4a\x4a\x5a\x5a\x46\x46\x56\x76\xc7\x8e\x9d\x3b\x77\xed\x92\x93\x93\x97\xff\xef\xbf\xdd\xbb\x15\x14\x14\x15\x95\x94\xf6\xec\xd9\xbb\x77\xdf\x3e\x65\x65\x15\x15\x55\x55\x35\xb5\xfd\xfb\xd5\xd5\x35\x34\x34\x35\xb5\xb4\xb4\xb5\x75\x74\x74\x75\xf5\xf4\x0e\x1c\x38\x78\x50\x5f\xdf\xc0\xe0\xd0\x21\x43\x43\x23\x23\x63\x63\x13\x13\x53\xd3\xc3\x87\x8f\x1c\x39\x7a\xd4\xcc\xcc\xdc\xdc\xc2\xc2\xd2\xd2\xca\xea\xd8\x31\x6b\x6b\x1b\x1b\x5b\x5b\x3b\x3b\x7b\x7b\x07\x07\x47\x47\x27\x27\x67\x67\x17\x17\x57\x57\x37\x37\x77\x77\x0f\x0f\x4f\x4f\x2f\x2f\x6f\x6f\x1f\x1f\x5f\x5f\x3f\x3f\x7f\xff\x80\x80\xc0\xc0\xa0\xa0\xe0\xe0\x90\x90\xd0\xd0\xb0\xb0\xf0\xf0\x88\x88\xc8\xc8\xa8\xa8\xe8\xe8\x98\x98\xd8\xd8\xb8\x38\x14\x0a\x8d\x8e\x8f\xc7\x60\x12\x12\x12\x13\x93\x92\xb0\x58\x1c\x2e\x39\x39\x25\x25\x35\x35\x2d\x2d\x3d\x3d\x23\x23\x33\x33\x2b\x0b\x8f\x27\x10\xb2\xb3\x89\xc4\x9c\x1c\x12\x89\x4c\xa6\x50\xa8\x54\x1a\x0d\x82\x60\x18\x41\xe8\x74\x06\x83\xc9\x64\xb1\xd8\x6c\x0e\x87\xcb\xe5\xf1\xf8\x7c\x81\x40\x28\xcc\xcd\xcd\xcb\x13\x89\xf2\xf3\x0b\x0a\x0a\x0b\x8b\x8a\x8a\x8b\x4b\x4a\x4a\x4b\xcb\xca\xca\xcb\x2b\x2a\x2a\x2b\xab\xaa\xaa\xab\x6b\x6a\x6a\x6b\xeb\xea\xea\xeb\x1b\x1a\x1a\x1b\x9b\x9a\x9a\x9b\x5b\x5a\x5a\x5b\xdb\xda\xda\xdb\x3b\x3a\x3a\x3b\xbb\xba\xba\xbb\x7b\x7a\x7a\x7b\xfb\xfa\xfa\xfb\x07\x06\x06\x07\x87\x86\x86\x87\x8f\x1f\x1f\x19\x19\x1d\x3d\x71\xe2\xe4\xc9\x53\xa7\xc6\xc6\xc6\xc7\x4f\x9f\x3e\x73\x66\x62\x62\x72\x72\x6a\x6a\x7a\xfa\xec\xd9\x99\x99\xd9\xd9\x73\xe7\xe6\xe6\xe6\xe7\xcf\x9f\xbf\x70\xe1\xe2\xc5\x85\x85\xc5\xc5\xa5\xa5\x4b\x97\x2e\x5f\xbe\x72\xe5\xea\xd5\x6b\xd7\xae\x5f\xbf\x71\xe3\xe6\xcd\x5b\xb7\x96\x97\x6f\xdf\x5e\x59\xb9\x73\xe7\xee\xdd\x7b\xf7\xee\xdf\x7f\xf0\xe0\xe1\xc3\x47\x8f\x1e\x3f\x7e\xf2\xe4\xe9\xd3\x67\xcf\x9e\x3f\x7f\xf1\xe2\xe5\xcb\xd5\xd5\x57\xaf\x5e\xbf\x7e\xf3\xe6\xed\xdb\x77\xef\xde\xbf\xff\xf0\xe1\xe3\xc7\xb5\xb5\x4f\x9f\x3e\x7f\xfe\xf2\xe5\xeb\xd7\x6f\xdf\xbe\x7f\xff\xf1\xe3\xe7\xcf\x5f\xbf\x7e\xff\xfe\xf3\xe7\xef\xdf\x7f\xff\xfe\x7f\xfe\xff\x5f\xe7\x9f\x1c\x9f\x65\x08\x00\x00\x1b\xd6\x6f\xfd\xdf\x32\xf8\xbf\xe3\xff\xa5\x16\xfb\x3f\x4d\xb1\x6f\xeb\xdf\x6d\x7c\xbe\xf9\xbe\xf8\xcd\xad\xd7\xb6\xdf\x96\x7a\x26\xf3\x71\xc7\x1f\x39\xf1\xff\x76\x28\xec\x51\xd2\xde\x6b\xa8\x7c\x54\xd5\x72\xff\x31\x0d\x6b\xad\x63\x3a\x56\x7a\x96\x07\xcd\x0c\x8e\x18\x9a\x18\x0d\x1a\xf7\x9b\xf4\x98\x76\x1d\xee\x38\xd2\x76\xb4\xc5\xac\xd9\xbc\xc9\xa2\xd1\xb2\xd1\xaa\xf1\x58\xa3\x75\x93\x4d\x8b\x6d\x9b\x5d\x87\x7d\xb7\x43\x9f\xe3\x90\xd3\xa8\xf3\x98\xcb\xa4\xeb\x8c\xdb\xbc\xfb\xa2\xc7\x05\xcf\x39\xaf\x59\xef\x69\x9f\x09\xdf\x71\xbf\x93\xfe\x23\x01\x83\x81\x7d\x41\x5d\xc1\x6d\x21\x4d\xa1\x75\x61\xd5\xe1\x95\x11\x15\x91\x55\x51\x75\xd1\x2d\x31\x3d\xb1\xa3\x71\x67\x51\x97\xd1\xf7\xe3\x9f\x62\x1e\x27\x3c\x4c\x7c\x90\x74\x1f\x7b\x0f\x77\x2f\xf9\x7e\xca\xfd\xd4\x07\x69\x0f\xd3\x1f\x65\x3c\xc9\x7c\x96\xf5\x1c\xff\x92\xf0\x2a\xfb\x0d\xf1\x5d\xce\x47\xd2\x27\xf2\x17\xca\x77\xea\x4f\xda\x1f\x18\xc0\x1d\x88\x2f\xf2\x9b\xde\xc2\xf0\x64\x7c\x67\x36\xb0\xdc\x58\x9f\xd9\xb5\x1c\x67\xce\x47\x6e\x15\xcf\x81\xf7\x9e\x5f\x2e\xb0\x15\xbc\x11\x96\xe5\xda\xe4\xbe\xce\x2b\x15\x59\x8b\x5e\xe7\x97\x16\xd8\x16\xbc\x2d\xac\x28\x72\x28\x5a\x2b\xae\x2b\xf1\x28\xf9\x55\xda\x59\x16\x5a\x2e\x51\x3e\x56\x91\x5c\x29\x5f\x39\x55\x95\x54\xbd\xb3\xfa\x4c\x4d\x62\xed\xce\xda\x89\x3a\x6c\xbd\x5c\xfd\x74\x43\x4a\xa3\x42\xe3\x6c\x53\x7a\xf3\x9e\xe6\xf3\x2d\xf8\x56\x95\xd6\xc5\xb6\x9c\x76\xf5\xf6\x2b\x1d\xd4\x4e\xed\xce\x1b\x5d\x48\xf7\x81\xee\xe5\x1e\x66\xaf\x41\xef\x9d\x3e\x76\xbf\x61\xff\xbd\x01\xee\xa0\xd1\xe0\xbd\x21\xfe\xb0\xd9\xf0\xea\xf1\xf2\x11\xc7\x91\xcf\xa3\x0d\x27\x3c\x4f\xfc\x3c\xd9\x7a\xca\xf7\xd4\xdf\xb1\xce\xf1\xe0\xd3\x9b\x4e\x1f\x3f\x83\x9a\xd8\x31\x31\x3d\x99\x3e\xb5\x6f\x6a\x69\x9a\x72\x56\xfb\xec\xad\x19\xc6\xac\xfe\xec\xca\x39\xe6\xdc\x81\xb9\x1b\xf3\xd4\xf3\x6a\xe7\xcf\x5f\x48\xbe\x28\x7d\x71\x68\xc1\x7f\x51\x73\xa9\xe0\xd2\x8f\x2b\x51\x57\xa7\xaf\xab\xde\x80\x6f\xde\x5d\x36\xbd\x9d\xbb\xf2\xf8\xae\xc9\x3d\xce\xfd\x9b\x0f\xd5\x1e\xa5\x3e\x3e\xf9\x54\xec\x99\xcb\xf3\xc2\x17\xdf\x56\x43\x5f\x8d\xbf\x51\x7a\x4b\x7e\x77\xeb\x83\xe1\x47\xfe\xda\xa3\xcf\xc6\x5f\xd8\x5f\x6f\x7c\x57\xfd\x91\xfa\xf3\xf4\xef\xed\x7f\x22\xfe\xf6\xfe\x9f\xa9\xf1\x63\xfd\xc7\x8d\xaf\x37\x3f\x15\x7f\xb8\xf5\xc1\xf6\x97\x52\x6b\x32\x3f\x77\xae\x97\xdb\xfa\xdf\x0e\x05\x45\xa5\xfd\x7b\xf5\x94\x0d\x55\x4d\xf7\x1f\xd1\x38\xa2\x75\x58\xc7\x44\xcf\xe8\xa0\xa1\x81\xa1\xa1\xa1\xd1\x80\x71\x9f\x49\xb7\x69\xe7\xe1\xf6\x23\xad\x47\x9b\xcd\x9a\xcc\x1b\x2c\xea\x2d\x6b\xad\x6a\x8e\x55\x5b\x57\xd9\x54\xda\x56\xd8\x55\xd8\x57\x3a\x54\x3b\xd6\x39\x35\x3a\xb7\xbb\xf4\xba\x8e\xba\x4d\xb9\x2f\x7a\xcc\x7b\xce\x7a\x9d\xf5\x3e\xeb\x73\xd6\x77\xc6\xef\x9c\xff\x7c\xc0\xc5\xc0\xa5\xa0\xcb\xc1\xd7\x42\xae\x87\xde\x08\xbb\x19\x7e\x33\xe2\x66\xe4\xcd\xa8\x9b\xd1\xb7\x62\x96\x63\x57\xe2\xee\xa1\x1e\xa2\x9f\xc6\x3f\xc6\xdc\x49\xb8\x91\x78\x29\xe9\x02\x76\x16\x37\x95\x7c\x26\x65\x2c\xf5\x44\xda\x68\xfa\x48\xc6\x48\xe6\x48\xd6\x28\xfe\x24\x61\x3c\x7b\x92\x38\x9b\x73\x81\x74\x99\xbc\x4c\x79\x48\x5d\xa5\x7d\x82\x01\xdc\x84\x38\x21\x6f\xe8\x85\x8c\x23\x8c\x07\x4c\x0e\xeb\x20\xeb\x16\x1b\xe6\x68\x73\xae\x71\xa9\x3c\x2d\xde\x35\x3e\x24\xd0\x11\xdc\x12\x32\x72\x0d\x72\xef\xe5\xf1\x45\x87\x45\xcf\xf2\x8b\x0a\x6c\x0a\xde\x15\x56\x17\xb9\x16\x7d\x2f\x6e\x2d\xf1\x2f\x5d\x57\x3a\x50\x16\x55\x2e\x59\x7e\xba\x22\xb9\x52\xae\xf2\x4c\x55\x7c\xb5\x54\xf5\x89\x9a\xd8\xda\x6d\xb5\xa3\x75\xb1\xf5\xdb\xeb\x4f\x34\xa0\x1a\xa5\x1a\xc7\x9a\x30\xcd\xb2\xcd\x67\x5a\x92\x5a\xe5\x5a\xa7\xdb\x52\xda\x15\xda\xcf\x75\x64\x74\xee\xed\xbc\xd0\x45\xe8\x56\xed\xbe\xd4\x43\xee\xd5\xec\xbd\xd6\x07\xf5\xeb\xf6\x2f\x0f\x30\x07\x0d\x06\xef\x0e\x71\x87\x0d\x87\xef\x1e\x67\x8f\x18\x8c\xac\x8c\xb2\x4e\x18\x9c\xb8\x7b\x92\x7b\xca\xe4\xd4\x93\xb1\xc2\x71\xdb\xf1\xb5\xd3\x8d\x67\x7c\x27\xd6\x4f\x0c\x4d\xa2\xa6\x76\x4e\xcd\x4c\x67\x9e\x55\x3d\x7b\x65\x06\x9a\xd5\x9b\xbd\x7d\x8e\x39\xa7\x3f\xb7\x3c\x8f\x9c\xd7\x3a\xbf\x74\x21\xe3\xe2\xae\x8b\x23\x0b\x81\x8b\xba\x4b\x0d\x97\x77\x5c\x41\xae\xbe\xbe\xee\x73\x63\xe8\x96\xcc\x32\xee\xf6\xd9\x3b\x72\x77\x31\xf7\x86\xef\xff\x7b\xe8\xf4\x48\xf8\xf8\xd2\x53\x99\x67\xde\xcf\x8b\x5e\xfc\x5a\x8d\x7d\x75\xee\x8d\xd6\x5b\xee\xbb\xe7\x1f\x6c\x3e\x56\xae\xbd\xff\x6c\xf3\x25\xff\xeb\xbd\xef\x5a\x3f\x32\x7e\x4e\xfc\xde\xfe\x27\xfc\x6f\xcf\xff\xf8\xaf\xdb\xbc\x41\x72\xd3\xae\x2d\x8a\x12\xfb\xb6\xed\x95\x54\x92\xde\x2d\xab\xb0\x53\x51\x4e\xf1\x3f\x45\x85\x5d\x8a\xff\xf6\xbc\xde\x77\x47\xe5\x8a\xda\x92\xfa\x35\xcd\x7b\xda\xab\xba\xdf\x0f\x8a\x1b\xec\x36\xd4\x31\x1a\x32\x1e\x34\x19\x34\x1d\x38\x3c\x70\xa4\xff\x68\x9f\x59\x8f\x79\xb7\x45\xa7\x65\xbb\x55\xeb\xb1\x66\xeb\x06\x9b\x5a\xdb\x2a\xbb\x0a\xfb\x72\x87\x32\xc7\x72\xa7\x2a\xe7\x7a\x97\x36\xd7\x01\xb7\xd3\xee\x8b\x1e\xd3\x9e\x63\x5e\xc7\xbd\x07\x7d\xfa\x7d\xfb\xfd\xfa\xfd\x07\x03\x8e\x07\x9e\x08\x1a\x0b\x9e\x08\x99\x0e\x9d\x0d\x9b\x0b\x3f\x1f\x71\x31\x72\x31\xea\x52\xf4\x95\x98\xeb\xb1\xb7\xe2\xee\xa0\x1e\xa0\x9f\xc6\x3f\xc1\xdc\x4f\x58\x4e\xbc\x9e\x74\x09\xbb\x80\x9b\x4f\x9e\x4d\x39\x9b\x3a\x95\x36\x99\x3e\x91\x31\x91\x39\x99\x35\x85\x3f\x4b\x98\xcd\x9e\x27\x2e\xe4\x5c\x21\xdd\x22\xdf\xa3\x3c\xa5\xbe\xa1\x7d\xf9\xbf\xf8\xdf\x67\xb2\x58\x07\x58\x37\xd8\x54\x8e\x06\xe7\x12\x37\x87\xa7\xc6\x5b\xe4\x13\x05\x6a\x82\x25\x21\x29\x57\x23\xf7\x6a\x1e\x4d\xa4\x2b\x5a\xce\x67\x15\x18\x15\x3c\x2c\xcc\x2b\xb2\x28\x7a\x55\x5c\x51\xe2\x5c\xf2\xad\xb4\xad\x2c\xa8\x7c\x4b\xf9\xa9\x0a\x5c\xe5\x8e\xca\x13\x55\x11\xd5\x1b\xaa\xbb\x6a\xfc\x6b\xfe\xd4\xb6\xd5\xf9\xd6\xfd\xa9\xef\x68\xf0\x6f\x04\x8d\x3d\x4d\x21\xcd\x9b\x9a\x07\x5b\xa2\x5a\xb7\xb5\x9e\x6c\x43\xb7\xcb\xb6\x4f\x74\xe0\x3a\x77\x77\x9e\xeb\xca\xec\x56\xee\x5e\xec\x21\xf5\x6a\xf4\x5e\xeb\x83\xfb\xf5\xfa\x97\x07\x58\x83\x87\x06\xef\x0d\xf1\x86\x4d\x87\x9f\x1c\x17\x8d\x98\x8f\xbc\x18\x2d\x38\x61\x71\xe2\xf9\xc9\xfc\x53\xe6\xa7\x9e\x8f\x15\x8e\x1f\x1b\x7f\x73\xba\xea\x8c\xeb\x99\x1f\x13\xed\x93\x41\x53\x9b\xa7\x46\xa6\x51\x67\x77\x9c\x9d\x9a\x49\x99\x55\x9c\x9d\x3f\x97\x39\xb7\x77\x6e\x7e\x3e\xfd\xfc\xee\xf3\x93\x17\x30\x17\xb7\x5d\xec\x5f\xf0\x5b\xd4\x5c\xca\xbb\xf4\xe9\x4a\xe0\xd5\x91\xeb\x3b\x6f\xa4\xdd\xbc\xb0\xac\x7a\x9b\xb8\xb2\x78\x57\xf9\x5e\xc6\xfd\xe9\x87\x32\x8f\xa2\x1f\xf7\x3c\xf9\xf1\xcc\xfe\x79\xc1\x8b\x77\xab\xae\xaf\x5a\x5e\xff\x7b\x1b\xf2\x6e\xf0\x83\xc4\xc7\x98\xb5\xd1\xcf\xdb\xbf\xc4\x7c\x3d\xfe\x7d\xcb\x8f\xb0\x9f\xbd\xbf\xd7\xfd\x09\xfc\xdb\xf9\x3f\xfe\xe0\xb3\xd8\xcb\x75\x77\xd7\x5f\xd9\x70\x61\xe3\xfc\xa6\xc5\xcd\xd7\xb6\xdc\x10\xbf\x25\xb1\xbc\x75\x65\xdb\xdd\xed\xf7\x25\x1f\x4b\x3d\x97\x7e\x2d\xf3\x41\xf6\xf3\x8e\x1f\x3b\xff\xc9\x6d\x90\x97\xf8\x4f\x7a\xb7\x9c\x82\x82\xa2\x82\x92\xc2\x1e\x85\xbd\x8a\xfb\x14\x95\x15\x55\x14\x55\x15\xd5\x14\xf6\x2b\xa8\xef\xd6\xf8\x4f\x53\x5e\x6b\x97\xf6\x0e\x1d\x59\x5d\x19\x3d\xe9\x03\x32\x07\x77\xe8\xcb\x19\x28\x1c\x52\x36\xd4\x36\x32\x32\xd6\x33\xd1\x30\x55\x3b\xac\x72\x44\xe5\xa8\x8a\x99\x9a\xb9\xba\x85\x96\xa5\xae\x95\xfe\x31\x43\x6b\x53\x9b\xa3\xb6\xe6\x76\x56\xf6\xd6\x0e\x36\x8e\x76\x4e\xf6\xce\x8e\x2e\x4e\xae\x2e\x6e\xae\xee\xee\x1e\xae\x9e\x0e\x5e\xd6\xde\xe6\x3e\x87\x7d\x8d\xfc\xf4\xfd\xf5\x02\xb4\x03\x35\x83\xd4\x83\xf7\x87\xec\x0f\xdd\x1f\xb6\x3f\x5c\x23\x42\x2b\x52\x37\x4a\x3f\xda\x38\xc6\x2c\xd6\x3a\xce\x19\xe5\x83\x0e\x8d\x8f\xc7\x44\x24\x04\x26\x7a\x25\xb9\x62\x1d\x71\x76\xc9\xb6\x29\x36\xa9\x36\x69\x36\xe9\x76\x19\x0e\x99\xce\x59\x6e\x78\x2f\x82\x5f\x76\x30\x31\x22\x27\x96\x84\x21\xe3\x28\xe9\x54\x3c\x8d\x04\xd1\x60\x2a\x42\xa4\x67\x30\x92\x99\x18\x56\x0c\x3b\x9c\x13\xc8\xf5\xe1\x79\xf0\x5d\x04\x8e\x42\xfb\x5c\xbb\x3c\x3b\x91\x7d\xbe\x63\x81\x4b\xa1\x67\x91\x7f\x71\x58\x09\xaa\x34\xb5\x8c\x5c\xce\xaf\xa8\xa8\xcc\xab\x62\x56\x53\x6a\xb2\x6a\x53\xeb\x92\xea\xe3\x1b\x50\x8d\xb1\x4d\xb1\xcd\xb1\x2d\xa8\xd6\xf8\xb6\xc4\x76\x5c\x47\x7a\x27\xbe\x8b\xdc\x8d\xf4\x70\x7b\x45\x7d\xa5\xfd\xb5\x03\xad\x83\xbd\x43\x83\xc3\x83\xc7\x07\x46\xfa\x47\xfb\x4e\xf4\x9e\xec\x39\xd5\x3d\xd6\x35\xde\x71\xba\xed\x4c\xcb\x44\xd3\x64\xc3\x54\xdd\x74\xcd\xd9\xea\x99\xaa\xd9\xea\x73\xb5\x73\x0d\xf3\xad\xe7\xbb\x2f\x0c\x5f\x9c\x58\x58\x58\x9c\x5c\x1a\xb9\xd4\x7b\xb9\xe3\x4a\xcb\xd5\xa6\x6b\x8d\xd7\x1b\x6f\x34\xdd\x6c\xb9\xd5\xbe\xdc\x75\xbb\x67\xa5\xff\xce\xe0\xdd\xe3\xf7\x4e\xdc\x1f\x7b\x70\xe6\xe1\xf4\xa3\xb9\xc7\x0b\x4f\xae\x3e\xbd\xfd\xec\xd1\xf3\x87\x2f\x96\x5f\x5e\x5a\x9d\x7f\x35\xfd\x7a\xfc\xcd\xe8\xdb\xa1\x77\xfd\xef\x7b\x3e\x74\x7f\xec\x5a\xeb\xfe\xd4\xfb\x79\xe0\xcb\xc8\xd7\xf1\x6f\x33\xdf\x17\x7f\xdc\xfa\xf9\xe8\xd7\xea\xef\x0f\x7f\xbe\xfe\xfd\xf5\xef\xdf\xbf\x7f\x30\x80\x7e\xbf\xbf\x0b\x03\x78\xf3\x83\x00\x18\xc0\x3b\x17\xc9\x30\x80\x55\xc7\x0c\x60\x00\x1f\x6c\x3b\x0a\x03\xd8\xb2\xb0\x0f\x06\xb0\x1b\xb9\x19\x06\x70\x44\xdc\x65\x18\xc0\xa9\x2e\x66\x30\x80\xe9\x7a\xad\x30\x80\xcb\xfe\xe9\x42\x24\xc6\xc4\xbb\x0f\x50\x16\x23\xe8\x7e\x02\x94\xcd\x10\x5f\xe8\x87\x98\xf4\x91\x53\x51\x50\x3c\xf2\xa7\xb5\x1c\x6a\xa1\x7b\x16\x02\x68\x80\xae\x42\xd6\x84\xce\x22\x4f\xe3\x0c\xa1\x65\xa4\xd3\x79\x0a\x7a\x85\x04\xea\x05\x40\x3f\x91\x8d\x7f\x8f\x40\xeb\x39\xc3\x6f\x7f\x42\x80\xfd\xe2\x5e\x0e\xed\x1d\x5b\xfd\xe2\x2b\xda\x3f\x56\xd0\x49\x2e\x24\xc3\xec\x6b\xf9\x0a\xd9\x32\x39\x05\x01\x50\x30\x53\x91\xd4\x00\x51\x18\x25\xb1\xfd\x50\x13\x63\x83\x73\x28\x34\x43\xf7\xd5\xdb\x09\x3d\x46\xf2\x7e\x7b\xd0\xbc\x44\x67\xdf\xc8\xd1\x6c\xf2\xe2\xee\x74\xd2\x1c\x85\x2f\x2f\x18\xd2\xbc\x05\xb9\xa3\x6f\x68\x31\x7c\x8f\xe6\x1e\x1a\x91\xe7\x9e\x2f\x4f\xab\xe0\xba\xe7\xf4\xd0\xee\x70\x0c\x63\xc6\x21\x25\xd6\x7b\xa7\x6e\x28\x80\x89\xd3\x9d\x86\x78\xf4\x0b\x3f\x0b\xa8\x8e\xe5\x0b\xaf\x30\x54\xb7\xd2\x9a\xdb\xf3\x54\xff\x62\xca\x7c\x0c\x35\xbe\x90\x36\x62\x44\x65\xe7\x97\x36\xed\xa1\xb6\xe7\xdd\xce\x3b\x41\x5d\xc9\xdd\x45\xac\xa3\xe9\x0a\x8c\xa2\x1f\xd3\x10\x9e\xaa\x93\x32\x6d\x81\x3d\xa6\x5b\x0d\x49\x33\x35\xbe\x13\x29\x51\x8d\x4e\x2f\x9d\x28\xb8\x3a\xc6\xad\x55\x0a\xa9\xfa\xc4\xb9\x42\x4a\x49\xe5\xb6\x61\x1a\x65\xb0\x2c\xad\x41\x44\x79\x55\xfc\x3c\x37\x86\xaa\x5a\xe8\x9e\x5d\x4e\x85\x44\xa2\x68\x79\xea\x33\x61\xb9\x63\x1b\xcd\x8a\x67\xa2\x9b\x4b\xcb\x63\x15\x7f\x59\x25\x0b\x07\xfa\x9e\xad\x91\xcb\x7a\x9e\xdf\xc0\x91\x6b\x3a\xf7\xcc\x1c\x20\xf7\xb7\xfa\x0e\x9a\x91\x6f\x36\x72\xeb\x10\xca\xe6\xda\x71\x41\x09\xc5\xab\x72\x96\xa0\x4c\x19\x28\x2d\x8e\xda\x4c\xdd\x5b\x28\xe5\xb8\x83\xca\xcb\x95\xd1\xe5\x53\x5f\x73\x4e\x7e\xe2\x92\xe5\xa7\xbb\x9f\xe0\xc8\x32\xa7\xeb\xaf\xed\x24\x4b\x9d\x98\x9a\x7a\x46\x56\x1a\x9a\xeb\x97\x22\x1f\xed\x3d\x51\x43\x27\xa7\x77\xf0\x78\xd7\xc9\x13\xcd\xbb\xb2\xfa\x28\xaa\xb5\x8e\x11\xbf\x28\x25\xe5\x1b\x1c\x20\xaa\x54\x81\xa9\x2e\x83\x4a\xe7\xbd\xff\x18\x4c\xba\x7e\x0d\xf7\x28\x91\x74\x6b\x91\x75\xf9\x07\xe9\xca\x1c\x7d\xe2\x0e\xe9\xd6\x14\xaa\x77\x1f\xe9\xc3\x98\x6c\xd5\x18\x79\xff\x70\x09\xd7\x89\x9c\xd1\xd3\x97\x19\x43\x3e\xd5\xba\x35\xc2\x84\xa2\x52\xbb\xd5\x61\x07\x65\xa8\xc4\x51\x97\x4b\xb5\x12\x3c\xfe\xd0\x40\x9a\xbb\xb3\xed\xa1\x80\x34\x7d\xfd\xd1\x65\x2d\xd2\x89\x25\xf6\x84\x38\xe9\xe4\xdc\xbd\x9e\x40\xd2\xe2\xe4\xc7\xaa\xf5\xa4\x3f\x27\xaf\x72\xda\xc9\x2e\x83\x87\x33\xae\x92\xd9\x1d\x8d\xe1\x6b\xe4\x87\xf5\xb3\xf6\x7f\x28\xa4\xd2\xbf\xba\x8d\x54\x19\x21\xf3\xfd\x1a\x69\xee\xb1\xea\x83\x9b\xa4\x81\x3b\x29\x97\x84\xa4\xd2\xeb\xfd\x67\x52\x49\xa2\x45\x51\xf7\x2c\xa9\xfa\x9c\x42\x25\x4c\x9a\x3d\x83\xe1\x58\x90\xb7\x8d\xa8\x66\xc4\x91\x6d\xba\x1b\xc3\xef\x92\x39\x8d\xdf\x1c\xc4\x29\xda\xe5\x26\xba\x0f\x29\xf3\xc2\xce\x9f\x0e\x0c\x69\xda\xd3\x57\x42\x7a\x2f\xed\xed\x0a\x8d\x1e\x0c\x6d\x3d\x7f\x90\xbe\x13\x52\x1d\xd5\x44\x66\x69\xe3\x4d\xaf\x91\x52\x48\x20\x9a\x41\x02\xa0\x99\x1c\x14\x22\x03\x7d\x8d\xf9\x04\x9f\x87\x8d\x9c\x37\xc2\x1c\x18\xab\xa7\x0f\x1f\x81\xdb\x7e\x44\xd2\x29\xf4\x4b\xab\xad\x74\x55\x3a\xf6\x76\x25\x72\x85\xae\x32\x1f\x8b\x54\x22\x0f\x46\x30\x48\x28\x12\xdf\xe4\x84\x98\x21\x43\xa2\xbd\xc8\x26\xa4\x95\x78\x0b\xbe\x81\xb0\x63\xd2\xe0\x16\x04\xe3\x54\x03\xa7\x22\xe6\xba\x2f\x60\x13\x64\xfb\xf7\x74\xe4\x27\xfb\xf4\xcb\x33\x48\x33\x5b\x62\x79\x08\x71\x63\x45\xcd\x15\x21\x9a\xcc\x86\xe3\x2d\xf0\x77\xe6\xee\xc6\x66\xf8\x36\xe3\x4b\x1e\x05\xee\x67\xd4\x10\xfd\xe0\x02\x86\x69\xf4\x43\x38\x9d\x3e\xe1\x64\x0e\xbb\xd2\x0d\x74\x07\x61\x45\xa4\xf0\x6b\x07\xb2\x2f\x6f\xee\xf9\x6f\x78\x31\x97\x71\x0b\xc0\xb9\xc2\xbd\xb3\x5f\xe1\x08\xfe\xbd\x61\x1d\xf8\x30\xaf\xaf\x21\x06\x96\xe4\xce\xe4\x7a\x40\x9f\x38\xb7\xb2\x93\xa1\x35\xf6\x85\xe8\x8d\xd0\x6b\x56\x93\x63\x15\x74\x9f\xe9\xa2\x8b\x83\xa6\xe8\x4b\x9f\x1f\xc1\x91\x65\xd9\xcf\x9c\xe0\xcd\x25\xf0\x0d\x2d\xe8\x6c\x11\x77\xc6\x00\xaa\x28\x68\x1a\xcc\x80\x72\x44\x37\xea\x96\xa1\xe0\x3c\x43\xc1\x37\xc8\x46\x28\x20\x60\x20\x17\xfe\x54\xd4\x51\x28\x80\x7b\xd9\x51\x11\x0a\x64\x97\xea\x7a\x42\x6e\x4c\x83\xb5\x17\x10\xa3\xfe\xee\x13\x1b\xc8\xb6\xd6\xfe\x9a\x1f\x24\x59\x55\x32\x9d\x40\x7b\x5a\xb1\xb9\xff\x14\x6d\xb1\x94\x53\xeb\x43\xeb\x2c\x56\xe6\xb7\xd1\xca\x0a\xda\xf1\xf1\xb4\x16\xd1\xb6\xc8\x1c\xda\x29\xa1\x99\x43\x1f\x6d\x8e\xb7\x41\xd7\x8d\x36\xcb\x2a\xfd\x90\x40\x2b\xef\xfb\xfe\x70\x95\x86\xea\x0e\xbb\x7c\x97\x66\xd0\x3e\x35\x29\x49\xfd\xdd\x22\xdf\x2b\xa4\xde\x6e\x48\xae\xf6\xa2\xce\xd5\xcc\x73\x9f\x51\x67\x2b\x7e\x66\xfe\xa0\xae\x94\x7c\x8a\xc0\x53\xbf\x14\x54\x39\xe8\xd2\x24\x85\x57\x74\x7d\x69\x7b\x39\x03\x6f\xbf\xd2\x2c\x26\x3b\xef\xc7\x53\x1f\x8d\x2d\x2d\xb1\xa8\xf5\xa3\xfb\x4f\x2f\x52\xa3\x07\xdd\xbb\x53\xa8\x87\x7a\xa2\x2b\xc3\xa8\xda\xed\x51\x9c\x03\x54\x93\x26\x85\x8c\x42\xaa\x5b\x0d\x35\x3c\x93\x9a\x5c\x96\x61\xdf\x40\x2d\xcc\x7f\xa0\xeb\x47\x1d\xe0\xdd\x7e\x7d\x95\x06\x2e\xff\xbe\x9b\x44\xed\xba\x18\xb6\x40\xa5\x86\xcd\x56\x8c\x5d\xa6\xca\x4d\xb4\x77\xf2\x28\xcf\x4e\xb2\xca\x6b\x29\xcb\x43\x47\x58\xed\x94\x27\xdd\xac\x74\x1f\xca\xb3\x16\xb5\xb0\x6e\xca\x9f\x9a\x00\x7b\x0b\xaa\x71\xf1\x4d\xdd\x48\x6a\x92\xe0\xcc\x6b\x05\xea\xdb\xe5\xea\x3b\x65\xd4\xf2\xab\x0d\x17\xbb\xa8\xd6\x0b\x84\x31\x31\xca\x97\x73\x62\x1d\x53\x94\x99\x09\xd7\xb2\x55\x4a\xff\x89\x48\xd6\x36\xca\xa9\xfe\x6f\x69\x17\x28\x7d\xed\xdd\x61\xa9\x94\xb1\xfa\xf5\xf6\xca\x94\x7f\xa5\x6c\xdd\x1c\xaa\x85\x30\xfc\x15\x8b\xfa\xe0\x41\xe6\xca\x37\x2a\xed\xb6\xd4\x45\x59\xaa\xd2\x55\xe4\x54\x22\xe5\xe2\xc5\xaa\x0e\x43\x8a\x68\x26\xa6\x2c\x9e\x42\x18\x7f\xc8\xac\xa7\x10\x87\xaf\xa6\xa1\x28\x09\x5d\x2d\x61\x9e\x14\x4c\xa3\x86\xbd\x26\xa5\xbf\xec\x84\xee\x71\xca\x07\x21\xfd\x73\x00\xdb\x84\xfa\xfd\x99\x14\x8b\x49\xdb\x71\x03\xcb\x5c\xa1\x6d\x9e\x69\x67\xfa\xd0\xc4\x87\xb6\x32\xae\xd1\x74\xea\xa3\x18\xd1\xb4\x1b\xc2\x2a\xfa\x63\xc8\x84\x70\x97\x1e\x06\x09\xa3\x3e\x20\x97\xa1\x17\x8e\xcd\x88\x3d\x6c\xa6\xcb\x84\x07\xe0\xc6\x4f\xc9\xac\x4a\xe4\xfa\xd3\x83\xcc\x2f\x48\xee\xf5\x02\x66\x20\x72\xec\xec\x7d\xc6\x43\xf8\xcd\xa0\x0f\x03\x07\xcf\xd7\x9d\x62\x6c\x41\x36\x09\xfe\xd2\x4b\x91\x9d\x04\x6f\xba\x1a\xa2\x10\x15\x89\xf4\x20\xff\x39\x5a\x23\x87\x10\x29\x5d\x27\xb8\x1b\x59\xbf\x86\xb0\x00\xeb\xd6\x93\x40\x66\x3c\xcb\xf8\xda\x20\xe3\x1a\xb3\xf6\xac\x24\x03\xcb\x58\x1b\x28\x63\x6c\x62\x10\xeb\x34\xe8\x4d\x0c\x2b\x01\x8a\x6e\xcd\xf8\x0f\x7f\x19\x79\x44\xbf\x10\x79\x07\xa1\xd0\x93\x1d\x9e\x23\xdb\xe9\xeb\x74\xe5\xe0\x12\x84\xf7\x61\x91\xb9\x23\xf7\xca\xa3\x0e\x06\x5d\xd8\x7e\x55\x81\x21\x26\x08\x9a\xca\xa7\x57\xf0\x35\xfa\x75\xe8\xd6\x3c\xc9\x9a\x7b\xc8\x03\xae\x11\xdf\x01\x61\x71\xc2\xb2\xde\x21\x76\xec\xe8\xc8\x1d\xf0\x77\x96\xab\x83\x1f\xdc\xc8\xfc\x4f\xe7\x1e\x6c\x45\x9f\x7d\xf7\x9b\x51\x55\xaa\xf3\xe0\x3d\xfd\x4d\x71\xe2\x65\x4f\x7a\x64\x61\xe9\xc4\x65\xe4\x4d\xfe\x85\x5e\x1a\x92\x2b\xda\x55\x1d\x8a\x18\xe7\x72\xb9\x5f\xe1\x27\x82\xef\x99\xef\xe1\x66\xbe\x63\x84\x1f\x1c\xcf\x4d\xb3\xbf\x0f\x2b\xb2\xa3\x74\xce\x43\x67\x99\x6a\x6f\x15\xe8\x2b\x75\x99\xf7\xfe\xd0\xad\x6b\xc4\x97\xe8\xc8\xd5\xca\x8c\x33\xd2\x88\x47\xf9\xba\xee\xeb\xf0\x6a\x49\x6d\xe5\x1d\xb8\xa8\xc8\x9f\xd3\x03\x3b\xe6\xff\xca\xf8\x02\x6f\xc9\xa3\x85\xd7\x40\x8b\x82\x4b\xf6\x24\x48\xc8\x9d\xd1\xb9\x04\x99\xb3\xd8\xaf\x86\x91\x99\x5e\xf3\x3b\x5d\x48\x48\xe7\xa5\x05\x19\x78\xad\x2d\x6e\xec\x34\x9c\xd8\x74\xbb\xb3\x1d\x16\xab\xf7\x2c\x7f\x0c\x0d\x57\x2f\xb1\xbe\x40\xf8\x0a\x8d\xf4\x22\xc8\xa2\xc4\x31\xac\x19\x92\x28\x50\xb0\xfb\x47\xbb\x21\xa4\xeb\xdc\xa7\x15\x70\x2a\x5f\x1e\x42\xf8\x67\xda\x6f\x6b\xc3\xf7\x4e\xfe\x38\x3f\x06\xc7\x1e\x47\x4e\x52\xa1\xcb\xfd\x17\xda\xf3\xa0\xe8\x6e\xb1\xd2\x4f\x90\x42\x9b\x1e\xd3\x9e\xf6\xbc\x71\x57\x9a\x11\x6d\xa0\xba\x33\xb4\x83\xc6\x28\xbd\x6e\x07\xd1\x82\xf2\x29\x3a\xcf\x69\xca\xbc\xe3\xcf\xf7\x20\xbe\x4b\xbc\x5b\xa6\x70\xef\x79\x8d\xb9\x09\x78\xc7\xd9\x96\xd1\x3c\x88\x7e\xfa\x69\xeb\x10\x24\x3b\xfa\xae\xe4\x18\xed\xdc\xc0\x15\xfa\x1c\x4d\xd4\xe5\x93\xf2\x93\xe6\xd6\xac\x1b\xf2\x98\x26\x5f\x5d\x6c\x27\x47\xfd\x55\x1c\xa2\xb3\x46\xbd\x21\xc8\x7b\x16\x85\x58\xde\x54\xbf\x99\x0e\x97\x5f\x0e\x38\xf7\x19\xfa\x71\x21\x7c\xe4\x2c\x14\x33\xa3\xd2\xf2\x9e\xf6\xf6\x74\x55\xb1\x90\x56\x33\xf2\x90\x7e\x80\x16\xdb\xd7\x9b\x42\xa2\xc9\xb5\x75\x84\xd4\x53\x97\xeb\x0c\x6d\x7f\x52\xcf\x95\xfc\xd3\x95\xa4\xb6\x0a\xb5\x9f\xde\x46\x34\xef\x2e\xdc\x78\x02\x63\x6f\xf6\x9e\x0b\x87\xae\x5f\x76\x1c\xd1\x86\x8e\x9e\xaf\x6f\x89\xa2\x8d\x4d\x57\x17\x6f\xa5\xc5\x8e\x79\x21\xd3\x34\xd5\xa1\xec\x14\x35\xea\x62\x67\x6d\x08\x95\xca\x69\xf0\xb0\x03\xd4\xec\x32\x1d\x5d\x67\x6a\x88\xd0\xe7\x25\x4a\x98\x47\x81\x6f\xdf\x14\x24\x51\x5a\x2f\xda\xf1\xb5\x29\x73\x63\xb6\x3c\x33\xca\xfd\xce\x54\x6e\x00\x55\xa6\xfc\x2a\x27\x82\x9a\xc7\x7a\xcd\x8e\xa7\x29\xa7\x27\xb1\x22\x68\x27\xc2\x48\x4c\x77\xc8\xc1\x8e\xc2\x38\x0a\x5d\xd3\xbe\x49\xdf\x09\x13\x5e\x50\x04\xdf\x60\xfd\xdb\x9b\xf8\xf7\xe0\x0d\x17\xb0\xbc\x4e\xe8\xce\x29\x2a\x77\x16\xea\xef\x38\xc7\x59\x83\xca\xca\x4d\x39\xeb\xa1\x0b\xac\x28\xf6\x5e\x78\x63\xda\x0b\x96\x3e\x6c\x1e\xb6\x8e\x79\x00\xc6\xd9\xa9\x31\x74\xe0\x46\xed\x16\xba\x34\x7c\xed\x79\xbe\x00\xc5\x5c\xb7\x7c\x88\xef\xc7\xe0\x9e\xcf\xe7\xe9\x30\xe4\x4e\x4e\x73\x03\xe9\x8d\x1d\x4a\x1c\x1e\xdd\xa1\xac\x92\xdd\x41\x57\x67\xde\x64\x5d\xa4\xcb\xa4\xa5\x32\xdf\x22\x6f\x42\x8b\x18\x7f\x90\x13\xb6\xb7\x18\x5b\x10\x81\x36\x8c\xfc\x46\x82\x9e\x59\xf0\xb3\x84\xe0\xe6\x2d\x1e\x96\xff\x69\xde\x95\x1b\xc0\x5b\x3e\x91\xce\xa1\x71\x2f\xb5\x5d\x66\x0f\x71\xee\x96\xa6\xb0\x1e\x73\xf6\x30\x6e\xb0\x76\xb1\x51\xa9\x02\x66\x00\x0b\x09\x59\x62\x30\x99\x7c\xdb\x70\x7a\x03\xa3\x58\x3b\x02\x69\xa4\xe7\x3e\x71\xe6\xbd\x29\xfa\x70\xc3\x80\x3b\x53\x18\x7d\x8e\xc5\x39\x9e\x3f\x33\x32\xc5\x7e\x24\xd2\x6a\x35\x65\x2b\xe4\x56\x95\x00\x96\x8f\xd0\x8c\x5e\xcc\x14\xf1\xaf\xa5\x14\x30\xce\xf1\x9c\x43\xf6\xd1\xbf\x71\x6a\x6d\xfe\xd0\x77\xb3\x6e\x68\x47\x20\xfb\x19\xcf\x1f\x91\x79\x06\xd5\x33\xd7\x0e\x71\xf5\x2b\x05\x33\x93\x1c\xed\x72\x87\xe3\x92\x6c\xbf\x52\xf1\xe6\x56\x96\xb0\xe8\x76\x51\x21\x73\xae\x60\x16\x09\x62\x4a\x8a\xea\x93\x5b\x19\x47\x72\xc3\x83\x61\x7a\x0c\xff\x95\x4d\x37\xc2\xe7\x1e\xd4\x4e\x83\x2b\x58\x8e\x0f\x52\xb8\x11\x5d\x12\x57\xf4\x38\xfe\x6d\x37\xa7\xa3\xd9\x01\xcd\xf5\x83\x0b\x2c\x6a\x43\x64\x23\x8f\x39\x50\xab\x50\xd0\xc1\xf8\x5c\x79\x17\x1a\x64\x58\x97\x51\x70\xe1\xf4\xb4\xa2\xd5\xa0\x0a\xa4\x31\x7f\xab\x8d\x05\x7c\x4d\x70\x49\x5b\x00\xbd\xe2\x78\xdd\xad\xe3\xac\x9d\xa2\x2c\xd1\xd8\x4f\x47\x2c\x27\x77\xb2\x96\x06\xe5\xfa\x4b\x99\xef\x7a\xc6\xea\xf1\xcc\x7d\x1d\xce\xa2\x59\x46\x5c\xf3\x3c\x4d\x92\x3e\x54\x2f\x8e\xdd\x8e\xac\x56\xfe\x0a\xec\x42\xf6\x95\x08\xac\xa7\xe1\x00\x51\x9d\x76\x39\x94\xce\xf3\x5b\x19\xe6\xb4\x9f\x7f\xb8\x30\xcc\xae\x98\x79\x7b\x66\x1f\xab\x70\xe2\x4a\xef\x28\xb3\xf5\x54\x5c\x6d\x1f\x63\x69\x78\x3a\x6f\x3f\x43\xbc\x6f\x1d\xa5\x81\xee\xd7\xfe\x34\xf1\x15\xc2\x6a\x3c\x1a\xf0\x00\x1e\xaf\xda\x6c\x1d\x02\xfd\x2c\xf2\xd2\x6e\x81\x94\x05\x72\xb7\xdf\x70\x06\xaf\x78\x5e\x7c\xcf\xce\xbf\xf8\xe6\x74\x08\x2b\xfb\x5c\x58\xcf\x3b\x26\x67\x12\x5b\xf3\x91\xd1\x71\xca\x3c\x17\x4f\xbf\x3f\xf4\x90\x22\x41\x57\xed\xd9\x95\x98\x8e\xf8\xb6\x54\x07\x14\xc2\xac\x1a\xb6\xb5\x19\x74\xae\xf8\x89\xf6\x19\xda\x3b\x41\xef\xed\x00\xce\xa9\x5b\xd7\x2e\xfa\xb3\x99\x57\xff\x1b\x1f\x67\x05\x2f\x28\xf7\x04\x30\x23\x67\xa7\x6a\x62\x18\x84\x09\x69\xe1\x67\x7a\xe3\x09\x4d\x72\x1d\xf2\xa0\x7f\x3c\x51\x0d\x11\x6f\x27\x07\x60\xe1\xc3\x75\x79\xd6\x56\x10\xb1\x74\x8b\xf6\x67\x5a\x83\xe0\xde\x9d\xe2\x22\x21\x39\x7e\x49\xbd\x60\x96\x5c\x3b\xb9\x33\x7f\x0f\x79\xbe\xff\x4b\x5e\x0f\xf9\x67\x83\x64\xae\x23\xc5\x29\x3f\x47\x70\x99\x72\x89\xd6\xc7\xf7\xa7\xa6\x60\x23\xb8\x97\x68\x92\x81\x65\x9c\xc3\xb4\xfe\x63\x3f\x59\x22\x28\x4d\xf3\x19\xe3\x02\x6c\xbb\xb2\x52\xf8\x96\x76\x67\x31\xbc\xc0\x81\xb6\x30\x61\x27\x1a\xa4\x0d\xf5\x1f\xc9\xf3\xa4\x35\xd4\xa3\x85\xef\x69\x3d\xa2\x07\x02\x1e\xed\x25\x4d\x87\xaf\x08\x99\x27\x3d\xe3\xb6\x42\x8c\xc0\x03\x9c\xbd\xd0\xd2\xb1\x1e\x16\x03\x36\xd6\x1c\x67\x5c\x84\xeb\x56\x76\x17\xfa\xd0\x33\x17\x72\xf3\xcf\xd1\x95\xcf\x24\x8b\x1c\x91\x99\x3e\x38\xf7\x3d\x92\x5e\x37\x23\x2c\x47\x8e\x8a\xdc\x05\x66\x88\x2e\xb5\x9d\x77\x13\x31\x48\xca\xe0\xa6\x22\xaa\x01\x0b\xec\x2f\x88\xf4\xb1\x14\x56\x1c\x22\xa7\xd9\xc4\x18\x46\x94\x96\x49\x05\x7c\x3e\xb8\xa8\x9c\xbf\x85\xa7\x78\xfa\x60\x5e\x09\x57\xbf\xd7\x3c\xd7\x8c\xe3\x5d\xcb\x16\xbc\x62\x33\xf3\x0c\xf8\x85\xac\x55\xca\x00\xcf\x8c\x15\x90\x58\xc2\x79\xc1\x2c\x0b\xd8\xcd\xa6\x33\x96\x8e\x49\x30\x7f\x33\xe4\x34\x8b\x19\xc1\x74\xd7\x9b\xcf\xf3\x1f\x14\x74\x9d\xaf\x14\x05\xe5\xfb\x8f\xd5\xe4\xbe\xc9\x7b\xde\x3d\x21\x2c\xcd\x25\xd6\xe8\x08\x5c\x84\x8a\xc2\x0f\xbc\xbf\xfc\xa7\xe4\x2a\xee\x20\xaf\x3b\xa1\x9f\x13\xc4\x75\xf2\xe7\xb0\xd6\xd8\x4b\x56\x93\xcc\x2c\x96\x9d\x66\x1b\xfd\x1a\xa3\xfc\x06\x36\xdf\xb9\xd2\x7b\xee\x47\xde\x6c\xb9\xc5\x29\xf1\xdc\xc0\x52\x8d\x2e\x1b\xc1\xbf\xe2\x7d\x55\xb3\xfc\xe3\x85\xaa\x82\x5e\x5e\x7a\xbe\x2d\x89\xc5\x3d\x90\x17\x8c\x39\xcf\x3e\x2f\x34\xf5\xfb\xc4\x8a\xe2\x03\x2b\x1a\xe3\x29\x27\x57\x73\x86\xee\xc0\xfc\x7c\xcd\x5c\x14\xd9\x76\x61\xf6\x62\xee\xd7\xe6\xb7\xa3\xd7\x85\xa2\xc6\x0d\x1d\x9a\x02\xd3\xba\x75\x15\x57\x78\x2f\xab\x7e\xf2\xde\x72\x5b\x2b\xc4\x72\xd6\x73\x30\x25\x2f\xe2\x7b\xd8\x12\x85\x5c\xbf\x7d\xcc\xe6\xbc\x35\x2b\x05\xc6\x01\x81\xa4\xe6\x2a\x52\xc0\x5e\xbb\xbc\x22\x3a\x32\xd2\x7b\x16\xc9\xad\x1c\xbc\x72\xbc\x5b\xb8\xa3\x77\xb5\x6d\x17\x7f\xb0\x73\xb9\xec\x11\x2f\xb2\xb5\x9f\xab\xcd\xdd\xd3\x08\x67\x93\xd9\x0f\x6b\xe5\xd1\x08\x8b\x53\xe1\xeb\x7b\x8c\xb9\xbf\xd8\xd8\xb2\x85\xde\x97\x37\xa4\xf9\x13\x91\xe6\xde\x5f\xba\x2e\x52\x9c\x45\x4d\x15\xe5\x52\x26\xcf\x0e\xb5\x0b\xd6\xc6\x5e\xb5\x68\xf3\x19\x23\xd7\x4b\xa5\x79\x2a\x03\xb9\x6c\x88\x73\xad\x5b\x8b\xb0\x99\x9d\xdb\x9a\x8c\x0a\x64\x1d\xac\xd7\xf4\x49\x61\xcc\x57\x60\x2c\x2d\xe9\xfe\x85\x86\x5a\x9b\xe0\x13\x7c\xc1\x12\x10\x49\x2f\x64\x4e\x1e\xcf\x25\xce\xc5\x0c\x5e\x11\xbc\x9a\x56\x6a\xf6\xe7\x67\x8c\x0b\x4a\x9c\x79\x9b\x47\xc6\x58\xf3\x9c\x81\xfe\x29\x7c\x02\x3b\xb6\x33\x3a\x6e\x99\x05\x9a\x42\x7d\xe4\x19\xe5\x55\xb3\x96\x8a\x74\x95\xa2\x61\x2d\x45\x98\x21\xd8\xb7\x18\x22\x5a\x7f\xb5\x65\x72\x53\x2e\x6e\xd1\x6c\x50\x45\xb0\x32\x57\xd4\xd4\xc9\x0f\x9c\x2a\x2f\xee\xe0\x3e\x1c\xf3\x64\x99\x71\xa0\xe1\xc5\xac\x8f\x6c\xcd\x9e\x2b\x71\x08\xf3\x74\xeb\x0e\xef\x37\x0c\x8f\x9a\x13\x96\x8a\xc8\xf5\xe2\x2b\x5a\xee\xf0\x61\x81\xff\x92\x49\xe5\x1f\x92\x68\xca\xa7\x7c\x99\x74\x79\xd8\xaa\x74\x88\x2c\xdd\xba\xa9\xf8\x04\x39\xa8\x4c\xbe\xf0\x1c\xf9\x04\xa7\x3c\x7f\x82\xe2\x9c\x0d\xf2\xfa\x29\xef\x51\x1f\x84\x95\xd4\x52\x9f\x14\x7e\x02\xcd\xc1\xc2\x83\x2b\x07\x19\xaa\x3f\x63\x95\xc1\x7a\x8b\xee\x95\x45\xd4\x4b\x93\x9c\x72\x12\x75\x61\x08\x5f\x1a\x4e\x5d\x68\xf1\x2a\x4e\xa0\xde\x2a\x4d\x2d\x24\x51\xbf\x73\x36\xe7\xb3\x68\xf6\x04\x56\x1e\x93\xd6\x80\x62\x08\x73\x68\xdf\x7d\x76\xf0\x7d\x21\x5f\x0b\x69\xae\x04\xf4\x54\xfd\x3c\xab\x14\x26\x2f\x10\x2a\xb5\x10\xd3\x89\xa1\xf2\xbd\xf0\x9b\xc1\xf6\xd2\x0d\x70\x5f\x73\x43\xb1\x12\x4c\x29\xb9\x5b\x68\x0a\x47\xb0\xa1\x7c\x47\x18\x45\x90\xc8\x73\x87\xc9\xa8\xdd\x42\x17\x98\xee\x3d\xc1\xd7\x85\xb9\xe6\x2b\x9c\xd7\xf0\x29\xf5\x53\x2c\x08\xfe\x78\x51\xab\x02\xe1\xfa\x9c\x89\x2a\xcb\xe1\x30\x07\x08\x25\x59\xec\xf1\xa6\xb4\x22\x2e\x5b\xac\x78\xa4\xa0\x8d\x15\xc6\xca\x14\x8d\x31\x1f\xe0\x55\x72\xe7\x99\xb8\x38\x2f\xc1\x25\xc6\x15\x6f\x3d\xde\x18\xc3\xc0\x3c\x8f\xc3\xa2\xb7\xa9\x8f\xb3\x94\xe9\x72\xe7\x4b\xca\x7b\x45\x6d\xa7\xf7\x97\xf6\xe6\x11\xfb\xf7\x14\x4f\xe7\x1a\x37\x1e\x2c\xbc\x2f\xf8\x50\x24\x2a\x10\xe3\x8f\x33\x13\x44\x2a\xbc\xbe\xac\x23\xb9\xe6\xdc\xa6\xd8\x4c\x81\x05\x27\xc6\xab\x8d\x77\x90\x2d\x6f\x1e\xc8\xfe\xc5\x9c\x55\xbf\xc3\xac\x60\x44\xcf\x9b\x96\xfd\x2b\xbb\x34\xc6\x2d\xdd\x55\xba\xa5\x77\xaa\x58\xb9\x58\xaf\xfe\x59\xa1\x45\xa1\x5f\x61\x4c\x7e\x7c\x3e\x87\x11\x9c\x97\x97\x77\x37\xd3\x4b\x38\x90\xab\x11\xc3\xe2\xb7\x0b\x34\xbd\xb4\xb8\x55\x3c\x6d\x73\x2d\x76\x3c\xfb\x97\xc6\x16\xe6\x3a\x66\xef\xec\x8f\x32\x74\xf3\xc9\x93\xbd\x25\xa1\x8d\x6a\xdd\x53\x45\x71\x75\xb4\x3a\x50\x40\xa9\x1e\xc9\x6f\x10\xd5\x56\xbc\x46\xce\xe6\x5e\x28\x33\x4a\xff\x2c\x78\x5f\x1c\x1d\xdd\xc7\x7b\x5f\x70\xd4\x33\x89\xf3\x28\xf7\x89\xd9\x2d\x56\x17\x3f\x48\xc3\x94\xe1\xc0\x2e\x9f\xd9\x56\xfa\x78\xf0\xd7\x28\x52\xbc\xd6\xe7\xde\x39\x57\xf8\xb6\x6b\xba\x46\xa9\x00\xb4\xfd\xc8\xbb\x23\x52\x6c\xde\x0d\x6b\xe6\x3a\xd4\x1f\x4d\x13\x09\xb0\xd5\x1a\x51\x5d\xbc\xf4\xb2\x2e\x8f\x6a\x4e\x74\xe1\x03\xb3\x2c\x96\x66\xee\x05\x0d\x0f\xfa\x38\x37\x69\xda\xb5\x6c\xcb\xe4\xa7\xe3\x17\x8a\x3f\x8c\x73\xda\xa7\x0b\x9f\x8f\xfe\xac\xd2\xc9\x7f\x3e\x74\x24\x57\x3c\xef\x7d\xaf\x2b\x8d\x92\x2b\xde\x61\x97\xaa\x20\x50\x6e\x7a\x1d\x09\xf3\xf6\xd5\x6e\x77\xbf\xc8\x91\x28\x9b\x34\x93\x60\x2e\x14\xc8\x6a\x84\xd2\x23\x79\x7f\xa6\xac\xcb\xf6\xce\xe5\x0c\x3f\x2c\xfe\x3b\x3d\xd6\x76\xb7\xf0\xcd\xe9\xf9\x4a\xcf\xfc\x87\x27\x8a\x85\x66\x79\xf7\x86\xd4\xa9\x93\xc2\xb7\x3d\xa2\x94\x6c\xfe\xaf\xb6\x8a\x48\xc0\xfd\xd2\x20\xe1\x8e\x67\xdf\xa9\xf8\x75\xf4\x29\xb3\xb2\x90\xaa\x81\xa3\x6b\xf1\xf9\x93\x61\x65\x86\x8b\xba\xc3\xdb\x4b\xb6\xcc\x6b\xb7\xed\x29\x7c\x35\xfd\xa2\xa2\x3c\xff\xca\x69\x6f\x41\x41\xde\xe4\x68\x2a\x55\x5b\x78\x76\x20\x30\xf9\x1b\x7f\xb6\x73\x31\xa2\x81\x7b\xa2\xa9\xcc\xdd\x8a\x5d\x5e\x75\xf9\xe8\x1d\xa6\x77\x91\x40\xa3\x1c\xb9\xcd\x9f\x3a\x89\x6d\xc3\xe5\x7c\xec\x5d\xd7\x9c\x46\x72\x6e\x78\xd0\x50\x42\x62\x97\xc8\xd6\x9e\x21\x2d\x73\xea\xab\x9e\x90\x9d\x73\x26\xcb\x7f\x93\x57\x92\x5e\x94\xfc\xa0\xf0\x42\xaf\x14\x9e\xa7\xba\xb9\xd0\x44\x49\xb4\xdd\xa6\x67\x04\xab\x90\xbc\xea\x57\xae\x0e\xbc\xff\xc4\x99\x36\x09\xca\x87\x9e\xa8\x66\x45\xaa\x58\x83\x7d\x83\x1b\x15\x14\x0b\x6a\x73\xa8\x7b\x38\xba\x55\x2d\xd4\xc0\x9c\x80\xf2\x79\x6a\x47\x52\x6e\xc9\x65\x9a\x5c\x28\xbd\xb0\x93\x96\xeb\x62\x2e\x0a\x84\xc4\x4d\x4b\x04\xf7\xa0\x6e\xd5\xe7\x5c\x2d\x38\xee\xc4\xd6\xd6\x4e\x58\xa6\x7b\xa8\x69\x16\x7a\x54\xdf\x5c\xff\x17\x6a\x2c\xde\x58\x6b\x04\x09\xd8\xe3\x55\x28\x88\x4f\xfc\x50\x2e\x84\x1a\x92\x4c\x4a\x2a\xa1\xa5\x50\xa3\x42\x0a\xf4\xdd\xf9\x8f\xe8\x10\xac\x6e\x9a\x21\x98\x80\x33\x54\x9f\x70\xa5\xe1\x85\x51\xe9\x96\x65\xf6\xf1\xae\x99\x26\x39\xf6\xba\xba\xf9\xfa\x24\x96\x7d\x91\x6a\x4d\x13\xb3\x87\xf5\xb0\x72\x99\xa9\x47\xd4\x29\xdf\xc0\x58\x4a\x14\x94\xc8\x31\x68\x21\x75\x85\x1b\x19\x52\xce\x85\x79\x53\xf4\x1a\x53\x5b\x41\x10\xdd\x5a\xf5\x27\xa7\x1b\x79\x74\x7c\xb5\x25\x39\x37\xb3\xb3\xad\x91\x23\x8c\xaf\xed\xa9\x3b\x27\xb0\x2c\x54\xac\xd9\xc0\xd7\x62\xae\x55\x5a\xf3\x34\xb2\xfd\xca\xf0\x5c\xc7\x84\xab\xc5\x05\x1c\x6c\xc8\xc6\x82\x6c\x36\xda\xd9\x38\xcf\x88\xe5\x67\xaa\xce\xbf\xc0\xb4\x51\xd3\xe5\x28\x31\xf6\x0c\x3f\x69\xee\x2d\xd9\xd4\xc1\x6d\x78\x5c\x14\x5a\x23\xac\x3b\x58\xd0\x52\x20\x59\x9d\x92\x2f\xce\xf8\x57\xd1\x9b\x97\x43\x20\x96\xae\xe6\x6e\x4d\x90\x2f\xde\x26\xa8\x08\x8e\xcf\x7f\xc5\x7b\xe3\x74\x3b\xb7\x9a\xab\x6b\x2a\xcb\x3f\xc8\xf6\x54\x43\xb3\x69\xcc\xd0\xc1\x27\xcd\x62\xf5\xe9\x6d\xc7\x1b\x0e\xd7\x5a\x55\x3d\xac\x85\xaa\x5e\x8b\x48\x55\xa7\x2a\x08\x74\x41\xf9\x5a\x19\xc0\xeb\x96\xea\x16\xd7\xc7\xff\x2d\xf2\x2c\xd4\x09\xaa\xc9\xd7\x13\x25\x38\xb9\x08\x1f\x08\x49\x26\xcf\x78\x58\x1e\x46\xad\x9b\x35\xc2\x3e\xd4\xff\xa1\x69\xa4\x87\xdc\xf2\xb4\x7e\xa5\xd3\xa9\xd2\xa0\x76\x47\x9b\x58\xee\xfd\x2a\x87\xa6\x7a\x64\x5b\x79\x56\xfd\xc1\xcc\xcb\x25\x9d\xd5\x53\xe8\xeb\x85\x0b\x15\x3a\x81\x63\xa2\xf6\x12\x43\xc7\x66\x61\x58\xfe\x67\x93\x7a\xee\x03\x21\x5d\xed\x0a\x4b\x85\x73\xa9\x6f\x6b\xd3\xd4\xc9\x4f\xcd\x3b\xea\xaf\x8d\x68\x96\xa7\xd6\x7c\x1d\xd4\x14\xea\x57\xc9\xf7\x3c\x82\xf0\xe5\x46\x1d\x19\x19\x51\x25\x61\xcd\x1f\x51\xc5\x85\xa9\xf5\x7a\x01\x13\x22\xe7\xca\x35\x87\x9f\x82\x1f\x25\x21\x26\xde\x5c\x92\x28\x4b\xed\x15\xf3\x38\xcf\xa8\x37\xb8\xa9\x6b\x52\xb1\x29\xa8\xfe\xfc\xd8\xb3\xb2\x96\x9a\xcf\xa3\x59\x02\x6c\xd5\xe6\xc1\x49\xda\x99\xf2\xff\x7a\x56\xd2\x4f\x95\x98\xb6\x5f\x47\x6d\x2a\xb4\x6d\xa2\x04\xf8\x8a\xe4\x6b\x9a\x1c\x86\x04\xe7\xca\x22\x4c\x8c\xb9\xf6\xf9\x63\x6a\xff\x98\x14\xde\xf1\x9e\xa9\xa6\xe2\x59\x6a\xe3\x40\xfd\xd8\xe4\xeb\xd2\xef\x35\xab\xe3\x8a\xfc\xb9\xca\x77\xa3\x5b\x69\x1a\x65\x1f\x07\xc6\xd2\x8d\x4a\x36\x74\x5b\xc6\x95\x16\x6e\x6c\x8d\x08\x00\x79\x37\xea\x3e\x38\x70\x04\x50\xc5\x26\x93\x43\x9c\x1f\x05\xc3\xfb\xf5\x98\xfa\xbc\xef\xcd\x55\xc3\x0f\x48\x99\x95\x7b\x07\xd4\x48\xb5\x22\xe3\x1e\x32\x69\x8e\xb1\xd0\x31\x44\x56\xc8\x7e\xd8\xb2\x42\x16\x61\xdb\x1a\x3e\x50\x94\x22\x5b\x6b\x6e\x52\x2e\xfc\x3f\x04\xc0\x07\x20\x54\x0f\x03\x00\xf0\xf6\xfe\xda\xbb\x8c\x54\x32\xda\xa4\x34\x48\xa8\x94\x06\x4a\x44\x92\x42\x1a\xf6\xba\xbb\xb7\xdf\xdd\xbd\xdb\x7b\xbb\xe5\x38\x9c\xb3\xb7\xec\x2d\x92\x96\xa6\x96\xf6\xfc\x37\xb4\xd7\xf7\x3b\x98\xab\x8c\x00\xf5\x1e\x39\x12\x13\x44\x5f\x17\xc7\xbf\x08\x33\xad\x93\x59\x62\x44\x97\x6d\x5d\x21\x06\xa7\x28\xcb\x4b\xee\x83\xa3\x78\x97\x0a\x37\x01\x7f\xf0\x54\x53\x0a\xb8\x24\x4d\x6b\xd4\x83\x91\x67\xcf\x64\xd6\x83\x75\x61\x09\x9a\x7c\x68\xcd\xc1\x14\xa5\x07\x54\xe7\x41\x91\x88\xe1\x80\x75\xc1\xfc\x5a\x64\x94\x75\x22\x8b\x8b\x74\x66\x65\x55\xec\x86\x7b\x94\x1e\x25\x12\x98\xc5\x3b\x5e\xf0\x09\x0e\xc6\x97\x98\xd6\xc0\x87\xd2\x82\x8d\x61\x70\xd4\xd9\x95\x99\x10\x4c\x0f\xdb\xaa\x49\x80\x9b\x0f\xee\x54\x4e\x47\xc6\x78\x1c\x92\x9c\x45\x0e\xac\xdb\xc5\x97\x23\xc5\xd6\x64\x56\x3c\x6a\x91\x35\xb5\x5c\x4a\xbb\xae\x30\x16\xbf\xa6\xad\xe6\x3e\x2b\x38\x40\x65\x61\x8a\x3c\x19\x75\x42\xea\xe5\xec\x4b\xb8\xe1\x4c\x99\xfe\x3f\x3c\xf8\xd8\x1d\xf5\x33\x7c\xe9\x81\x8f\x0a\x1e\x76\xc7\x63\x8e\xf8\x33\xc6\x5d\xb7\x9e\xef\x80\x1d\xb1\xce\x62\x8d\xc4\xe6\x65\x7e\x29\x9f\xc4\x99\x26\xef\x2f\x3e\xc0\x9e\xc4\x9d\x65\x2e\x64\xfe\x44\xef\xe4\xfe\x64\x8e\x4f\xb5\xcd\x76\x61\x38\x9c\x59\xa8\x0f\x27\x62\x8f\x05\xa9\xc3\xe8\xf5\x07\xc4\xf2\xbf\xb4\x97\xdb\x1f\x8b\x43\x68\xe3\xd7\x6d\xe0\x09\xa9\xab\xac\x9f\x30\x23\xf1\x6d\x99\x33\xcb\x7c\x45\x7a\xd9\xa3\x22\xb3\x70\x37\x67\x8b\x79\x2e\xbf\x0b\x9d\x95\x1b\xc5\x3b\x9a\x92\x96\x65\xe4\xfc\x89\x01\x75\x57\xd9\xad\xa1\x37\x32\xae\xb3\x98\x07\x9c\xe5\xd1\x4c\x8b\xed\xc5\xa2\x5a\x42\xb5\xce\x93\xfb\x8c\x3e\x6e\xc9\x6a\x46\x0d\x35\x5c\xd7\x53\xaa\xd4\xb8\x4b\xf3\x0b\xbf\x67\x2c\x64\xfd\xcc\x3f\xa9\x78\x0f\x3f\xcb\x31\xcb\x1a\x92\x4f\x19\x1e\x4b\x84\xa7\x99\xba\xc9\x22\x38\x74\x52\xc6\x14\xc1\xf1\xfd\x5a\x99\x96\xfb\x73\x7b\x90\xf0\x03\x3b\x76\xdd\x76\xee\x4c\x46\xcf\x12\x2e\x31\x48\x1f\xa3\x0d\x2e\x75\xcd\xe3\x49\x9c\x0b\x19\x46\x39\xd3\x6c\x7a\x6f\x68\x82\x72\x73\x56\xe9\x6a\x92\xb6\x1b\x8e\xaa\x73\xa3\x31\x2d\xa2\x34\x86\xac\x54\x41\x32\x6c\xdf\x07\xd9\x54\xf1\x78\xf7\x57\xc2\x30\xbe\xdf\x3a\x5b\x4e\x2a\x9b\xbc\xe4\x1a\xb1\x81\x48\x50\x37\x95\x2e\x28\xef\x17\xf5\x17\x86\x95\x04\x32\xf6\x98\x0a\x0b\x2e\x80\xfe\xc6\x3b\x79\xf7\x12\x7e\x67\x7e\xce\x7e\x1c\x75\x5c\x3b\x55\xff\xf0\xa8\xb3\x6a\xa4\x3a\x67\x9f\xb3\x54\xac\xf8\x9f\x7b\xb2\xe0\xb9\x78\xd9\xda\xdf\xec\x7f\xbc\xd1\x4b\xfe\xd1\x1b\x19\x7a\xf5\xae\xd2\x49\xb5\x47\x44\x3b\x0a\x0f\x54\xa6\x13\x39\x26\x49\x69\x1c\x50\x61\xac\x2a\x5c\x95\x10\x9d\xd9\x91\xd7\x11\x79\x4f\x73\x3b\x7b\x77\x70\x87\xb2\x43\xc7\xf4\x1d\x92\x06\xaa\x4e\xb9\x7b\x0a\x4c\x92\xa1\xb5\x1f\xd8\xcd\xfc\x45\x36\x8b\xe9\x08\x73\x6a\xc6\x93\x92\x1f\x8d\xcb\x85\xdd\x85\x1b\x6b\x3f\x12\x0b\x4c\x29\x95\x2c\x60\xb5\x91\x55\x32\x1c\xff\x36\x93\x53\xb0\x32\x32\x5e\x23\xcb\xdd\x11\x1c\xa7\x24\x1b\xc6\xfb\xe6\x4a\x27\xaa\x4f\xb8\xdb\x0b\x42\x64\x7e\x6b\xbf\xb3\x13\xf9\x1f\x6c\xf6\xd0\xd7\x30\x3d\x84\xd3\x5b\x73\x29\xb5\xc4\x60\xc3\x7f\x94\x5e\xc8\xaa\xd6\x9f\x72\x23\xe9\x5f\x45\x0e\x30\x3d\x86\x55\x7c\x1d\x20\x85\x35\xe5\x0f\x81\xa3\x03\x22\x8d\x79\x60\xc5\xae\x65\xba\x3f\x10\x67\xb3\x9f\x6a\x2c\x9c\xbe\xb2\x42\xac\x45\x4e\x59\xaa\x38\x5d\x68\xb8\xe0\x63\xab\x13\xb4\x9c\xc8\x6b\x90\x43\x23\xc1\xfb\xb5\x13\xc0\xdb\x49\x3d\x15\xe1\xe0\xf3\x98\x13\xc5\x22\x68\x51\x98\x22\x3f\x07\x4a\x08\xf0\x34\x26\x42\xaf\x77\xcd\xd4\xdd\x80\xd1\xcd\x1b\x95\x2f\x10\xeb\x95\x66\x31\x81\x34\x5b\xea\x39\xb5\x68\x9c\xa0\xa7\xa5\x07\xa9\x20\x12\x1b\xb6\x20\xc7\x40\x5d\x4d\x15\x32\x26\x49\x5c\x31\x03\x7e\x12\xb3\xa1\x78\x37\xfc\x32\x2c\x21\x3f\x0c\x99\x14\x60\x63\x5c\x83\xec\xdb\xf9\x4d\xa7\x46\x74\x9b\x6d\x94\xd5\xc8\xf7\x95\x46\xf1\x31\xd4\xcf\xb2\x88\x23\x41\xcb\x05\xf3\x9b\xff\xd0\xde\xd2\x3f\xd4\x93\x69\x3b\xc1\x1d\x35\xa3\xa8\xaa\x24\x97\xf2\x28\xea\xfc\xd3\xf7\x8a\xb2\xf1\xba\xb0\xa5\xa6\x3a\x1c\xf0\x7f\x9a\xcd\xc1\x03\x77\x5e\xd3\xcd\xc0\xed\x36\x8f\x53\xae\xc2\xbe\xad\x2c\x14\xdd\xc5\x3a\x2c\x87\x38\x73\x30\x11\x1f\x6d\x8e\x64\xb7\xd1\x53\xeb\x6e\xb3\x0a\x80\xeb\xd5\x47\x98\xc2\xc4\xeb\x65\xad\x8c\xfc\xd3\xb4\xa2\x71\xc4\xe3\x63\x37\x4d\x56\x84\xb3\xbf\x31\xeb\x0b\x5d\xbe\x33\x5b\x7b\x86\xf6\xdc\x75\x58\x81\xd2\x56\xad\xec\x10\xad\xa6\x9e\xb5\x5a\xc9\x3e\x8d\xeb\xf9\x5b\x9a\xaa\x84\x8f\xe9\x53\xeb\xd6\x0b\x82\x81\xf0\xaa\x6a\xde\xd5\xc4\xb3\x65\x4b\xb9\xc0\x69\x87\xc2\x18\xce\xf6\x63\xd4\x3c\x8c\xbd\xd0\xff\x64\x56\x10\xf3\xcf\x4e\x92\xa6\x89\xd1\xec\xfa\x5c\x7e\x91\x48\x5e\xf9\x52\x98\x48\x9f\x6d\x85\xb3\xf2\xa8\x39\xbc\xe0\xc6\x3b\xaa\x57\x34\x97\x0b\x41\x8a\xef\x14\x5a\xe5\x2d\xd9\xb7\x04\x75\xa9\x9b\xe4\x73\x74\x6c\x01\x24\xfa\x1d\xfa\x2c\x57\x2c\x9c\xed\xf7\xca\x10\xcd\x5f\xb1\xd3\x41\xdd\xcf\x9d\xe8\xda\x27\xbb\xcf\xea\x5b\x35\x43\x80\x32\x50\xab\x1f\xcc\x12\xfa\x2c\xae\xbe\xf1\x90\x71\x26\xf5\x70\x6d\x8b\x21\x98\x2c\xab\x74\xd6\xa9\xe2\x6b\x4b\x44\xea\xeb\x51\x1a\x73\xaf\x6a\x5a\xe8\x9a\x9c\xfb\xf2\xfd\x7e\x41\x99\x45\x12\xb2\x77\xbb\x7a\xbe\x30\xdc\x35\x43\x66\xc7\x9b\xbf\x6a\x09\xff\x22\xab\xcd\xfa\x08\xe3\x1b\xe1\xc3\x91\x35\xdc\x29\x1e\x81\x87\xd5\x1e\x32\x67\x92\x8a\x2a\x3a\xf3\xd6\xc7\xdd\x28\x99\x9d\x6d\x8a\x6c\x31\x6f\xc9\x9c\x11\x92\x98\xb3\x53\x93\x7c\xb0\x35\x73\xa6\xb2\xc4\x3b\x24\x03\x92\x66\xb8\x26\x48\x25\xc2\xbd\xab\x56\xf1\x37\x73\x6e\x59\xeb\x18\xf1\x0c\x2f\xce\xb8\x86\xac\x72\x1a\xf6\xa4\xd6\xa6\xf8\x3f\xd2\xb6\x0a\x45\x81\x73\xdc\xe9\xe2\x7b\x79\x7e\x91\x47\xf3\xbf\x67\x1f\x09\x59\x64\xfc\xab\xf7\x3f\x08\xeb\x3b\xd5\x8b\xbc\xd7\x64\xac\x97\x73\x5c\x4f\x4a\xf7\x88\xea\x57\x6d\xe2\x7d\xe6\x5e\xb0\xee\x64\xac\x62\xc8\xd8\x58\x43\x4c\x75\x30\x96\x52\xf3\xb6\x5c\x9e\xfe\xa0\x22\xa2\x38\x37\xee\x7f\xc5\x2a\x73\x7a\xe4\xf8\x7c\x73\xae\xdd\xd1\xdb\x46\xb3\xa1\xeb\xe0\x41\x7d\xac\xd6\xd1\x7b\xa6\xea\xa6\xd2\xde\xf5\xb4\xe4\xa3\xf8\xf9\x2a\x7f\x9e\x9a\x77\xdc\xfa\x3b\x71\x83\x91\xcd\xb4\xee\x4e\x03\x9a\xe0\xd7\x6d\x7a\xa0\x21\x55\xde\xd8\x0c\x64\x9e\xfb\x55\x5b\x09\x5c\x3c\xb9\xb4\x22\x15\xb4\x0e\x1a\x2e\x9e\x0e\xea\xf6\x1f\x36\x05\x40\xbb\x77\x3c\xcf\x9a\x06\xcf\xd9\x38\x4b\xcd\x84\x7f\x3b\x94\x4b\xa3\x90\x1b\x96\x23\xb9\xad\x68\x25\xe3\x5e\xb7\x25\x3c\x03\xee\x68\xdb\x03\xdd\x4e\x8d\x69\x8c\x87\xa4\xe7\xae\xd7\xc6\x40\xec\x93\x13\x2a\xd6\x42\x85\x41\xb7\x8a\x2e\x43\xdf\xf6\xbb\x99\xe6\xc3\x67\x76\x0c\x1a\x9e\xc2\x3f\x36\x8e\x54\x47\x23\x72\x87\x12\xa9\x0f\xba\xd4\x72\x3c\xb7\x18\xad\x63\x08\xbb\xda\x51\x1a\x9c\xd1\xfa\x01\x5d\x98\xba\xb1\x71\x21\x52\x74\x2e\xb7\x76\x16\x12\x1f\xf1\xa4\xfc\x21\x12\x11\x54\x5b\x84\x20\x94\xfd\x36\x79\x97\x90\xea\x1d\x97\x0c\x79\xe8\x38\x97\x4f\xea\xb5\x68\xb8\x43\xa1\x74\x01\x9a\x6b\x39\x87\x4b\x43\xbf\x31\xe6\x77\x7e\xa6\x27\xc3\x5b\x5a\x97\xd3\xaa\x53\xde\x37\x04\x50\x7f\x9e\x3b\x59\x13\x4c\x8d\x8d\xd0\x97\xaf\xa2\x4e\x08\x82\x0a\xfb\xf0\xb6\x7d\xc3\x79\x0b\x71\xe5\x8e\x46\xc3\x54\xfc\x8c\xcb\xe3\x0c\x15\xee\xee\xd0\x20\x61\xe1\x63\x2c\x77\x73\xfe\x60\x97\x88\x3b\x9d\x87\xd9\x5f\xe1\x91\x2d\x10\xeb\x4e\x4a\x45\x7d\x26\xb3\xe1\xdc\xea\xea\x02\x46\x7f\x44\x52\x19\x9d\x31\x3a\xe8\x70\xe1\x0a\xc2\x6f\xdf\xf5\xdc\x54\x7a\xf9\x8e\xac\xcc\xe3\xf4\xf1\x2e\x83\xaa\x47\xb4\xc3\x0e\x83\xe2\xeb\x54\xb9\xa5\x98\xb3\x13\xbf\x4a\x64\x74\x18\x84\xb5\x50\x53\x73\xbf\x60\x4b\x4a\x72\xdd\x30\xaf\xe9\xec\x70\xf5\x28\xee\xe9\x08\x8f\xd2\x87\x9c\xd5\x41\x76\x05\x10\x7b\xec\xbe\xd2\x9c\x3e\xe6\xab\x1d\x6c\x7d\x3e\xa3\xd6\xe5\xbe\x6a\x31\x01\x38\x8e\x15\xff\x8f\xbe\xd2\xf2\x2d\x1b\xa0\xf6\xd1\x5f\xb6\xe7\xaa\x42\xa0\x19\x4d\xb7\x14\xd1\xc9\x7d\x17\x7e\xc8\xce\x9d\x0d\xac\x1a\x29\x89\x3d\x51\x52\x72\x5b\x84\x1f\x29\x33\xa7\x08\xb2\xf6\x1d\x33\xb6\xf0\xda\x76\x84\xe9\x0c\x9c\x7a\x97\x47\xca\x85\x2c\xb5\xa3\xbb\x68\x32\x23\xde\xea\x34\x2b\x95\xbe\x8c\xee\xd5\xf6\x23\x6b\x08\x8c\x68\xb2\xc8\x5c\x9f\x3c\xfd\xc2\x7a\x2d\x70\x26\xb3\xd2\x25\xa3\xe3\xc4\xa4\x92\x09\xca\xf9\x47\x96\xe7\x1b\x64\x67\x7c\x3f\x65\xbf\x13\x97\xec\x58\xa8\xbd\x2e\xb8\xe0\xd2\xab\xf0\xe3\x6a\x1c\xc3\x84\x9e\x2c\xd0\xaa\x97\x59\x4e\x78\xd0\xe4\x6d\xa1\x85\x73\x80\xb2\x46\xae\xa9\x23\x29\xb2\x36\x27\x27\x2a\xe6\x5b\x85\xca\x30\x1c\x7e\xb2\x38\x54\x07\x05\xaa\x4d\x9f\xd4\x63\x7d\x79\xd9\x5b\x14\x71\x1e\xf7\xb4\xcb\x24\x7c\x97\x4e\xb9\x59\x80\x3a\xd2\x05\x39\x9c\x20\x6b\x6b\xa6\x0d\x63\x21\xcd\xb1\xcd\xaa\xd4\x13\xd8\xdb\xe8\x53\x68\x4e\x9a\x57\x1b\x95\x3f\x39\x26\xb7\xc2\x2f\x67\x67\xf8\xbc\xe2\x49\x86\x84\xc0\xe3\x26\xad\x56\xed\x1b\x95\xf5\x5c\xa5\xf5\xe8\xd4\x5c\x92\xed\x75\xb9\x2c\x0f\x16\xf6\x3a\xea\x04\xc1\x5c\x2b\x6b\x1f\xc6\x3d\x46\x30\xb5\xb3\xf5\x41\x45\x07\xe5\x75\xe3\xa8\x92\xef\x89\x97\x6a\xad\x0a\xed\x63\x22\x2a\x46\x9a\x16\x1d\xbf\x55\x54\x92\xfd\x23\x70\xad\xc9\x5d\x7f\xd9\xd7\x27\x0b\x57\x27\x79\xd4\x6a\x4e\xca\x2b\x5d\x1e\xca\x7e\x8a\xfa\x1d\x5b\xf9\x7f\xb8\x66\x6b\x88\x81\x30\x8e\x61\x3b\xfa\x0e\x43\x73\x48\xfe\xdd\x21\xe0\xcb\xf8\xd0\xb6\x03\xa0\x22\xda\xa2\xe1\x1f\xa8\x3b\xd6\x58\x13\x0b\xde\x39\x34\xb1\xac\x00\xda\xb1\x67\x5c\x01\x06\xdd\x75\xf7\x37\x96\xc2\x22\xe7\x10\x6d\x2d\x72\xd6\x7e\x89\xec\x0d\xba\xc4\xa2\x96\xc7\x43\x87\x30\xc7\x4b\xdf\x91\xbd\xa4\x9d\xdd\x23\xe1\x77\xf1\xee\xad\xdf\x60\x38\x7a\x74\x43\x01\x7c\xf0\x58\x6e\x8d\x35\x7c\x28\xe0\x53\x59\x04\xcc\xf2\xf9\x58\xb0\x0d\x7e\xed\xbe\xd3\x48\x47\x4e\x39\xef\xd5\x0a\x90\x2f\xf6\xd6\xb2\x2e\x34\xca\xe2\x02\x2f\x1d\x7d\x8c\x7e\xbd\x94\x85\x65\x93\x3c\xbb\x14\xd8\xb4\x78\xcb\x56\x05\xca\x8a\x7a\xd6\xb0\x1f\x5d\x7e\x8c\x5f\xdd\x8d\xfc\x08\x18\x2c\x9b\x8c\xfc\xf1\xb9\x6f\x7e\x8d\xda\xbb\x6f\x33\xfa\xa0\x51\xce\xdb\xb5\x01\x68\xb9\xfd\x7c\x99\x14\x7d\x6a\xd1\xc1\xf3\xc1\x16\xa0\x65\xbd\x17\x89\x23\xe9\xdf\x3a\x7b\xe9\x29\x71\x8f\x5b\x1a\x69\xaa\xa8\xa2\x7a\x94\x3a\x7c\x2c\xac\x7a\x2c\x95\x12\x50\x52\xba\x8b\xba\xd4\xa7\xce\x6c\x8b\xbf\x71\x5f\x97\x9d\x8f\x97\x3b\x6f\xd4\x94\xe0\xa8\xbd\xbd\xf4\x27\xee\x62\x31\xcc\xad\xc2\x5e\xa3\x5d\xbd\xd6\x1c\x7e\xfa\xf7\xce\xf9\xec\x90\xb8\x81\x96\x11\x2c\xa7\xa8\xac\xba\x8b\xcc\x35\xc7\x0e\x57\xf9\x33\x0e\x05\xe4\x94\x48\x08\xbe\x4f\x45\x7e\x32\xfd\x99\xfb\xaa\xac\x77\xf4\x0d\xce\x5b\xd5\xaf\x68\x54\xfb\x7d\x52\x17\x6a\x9d\xe5\x66\xce\x30\xfe\x06\x15\xf4\x44\x8b\x46\xa5\xdf\xee\x08\x13\x80\x71\x1d\xcd\x5e\xbc\x7f\x51\xe2\xba\xe9\x5c\xd9\x31\x9f\x4a\x2d\xc7\x2f\x40\x55\x7c\x9f\xbd\xc0\xa7\xd0\x54\xcf\x1c\x76\x5f\x99\x65\xcb\x68\x77\xde\xa9\x9e\x4b\xb0\xed\x49\x92\x08\xfa\x36\x4b\x2e\xc7\x9a\x3a\x84\x8e\xbf\xb8\x4b\xb5\x2f\x3d\xb8\x7d\x87\xc2\x3b\xee\x40\x93\xad\x6c\x7b\xd4\x92\xda\xf7\x92\x4d\xa1\x0f\x2b\xd2\x44\xbe\x01\x3e\x45\x15\x82\x48\x1f\x72\x9e\x98\x47\x77\x5f\x64\x18\xc3\x61\x39\x87\xa9\xfe\xb0\xc8\xf6\x2d\xe2\xfd\x8c\x08\xab\x29\xec\xe9\x74\x57\x24\xad\x3b\x26\x6b\x5b\x5a\x6f\xdb\x31\x3d\x16\xdb\xd2\xe8\xaa\xe9\x8e\x54\xd6\xfc\xcd\x98\x11\x1a\x5e\x4e\x53\x9c\xf5\x1f\x2a\x6c\x91\xb6\xf9\xac\xcf\xd5\x8b\xe7\xba\x0d\x67\x2e\x14\x6c\x74\x8e\x50\x59\x70\x5d\xed\x3f\x8b\x92\x59\x1e\x56\xc9\xac\x2d\x84\x0b\x62\xdb\x95\x6d\x6e\x49\x8b\x69\x35\xe6\xc5\xc4\x1e\x6a\x20\x8c\x53\x22\x6d\x6b\xb6\x67\x1a\x42\xde\x96\xd5\x6a\xdd\xfc\x99\x05\x5f\x54\xf7\x76\xff\xce\xb9\x29\x3f\xe5\xf6\x44\x7f\x40\x5c\xe8\x0c\x2a\x23\xf9\xd7\x1c\x6c\x85\x3d\xec\x67\x56\xed\x4c\x03\xf1\x14\x1e\xec\x0a\x2d\xd6\xa4\xcd\x6a\x3d\x68\xfe\x1a\xbb\xb8\xc1\x39\xef\xd8\xa9\xf7\xd5\xcf\xb2\x0d\x21\x55\x65\x47\xf4\x2f\xfc\x23\x0a\xc4\x9a\xd5\xbb\x9f\xe7\x24\x2b\x83\xdc\x1e\xe8\x5e\x48\x9d\x9d\x85\xca\xc9\x82\x2f\x0e\x3b\x85\xe9\x1c\xa1\xd5\x07\x66\x10\x63\x0e\x2c\xed\x9a\x5e\x76\x25\xb5\xa5\xe5\x6b\xd1\xab\xf3\xef\xea\xef\x9a\x97\x9e\x6a\xad\xc6\x73\x57\x84\x70\x4a\xdf\x66\x2d\xf1\xf7\x29\xb0\xd5\x59\xee\x7e\x94\x33\x5e\xf5\xcd\xed\xa9\x2e\x56\x76\xc6\xb9\x42\x91\x2d\xbc\xe3\x90\x28\x9c\xcf\x9d\x68\x6d\xc7\xf8\xc7\x98\xff\x2b\x12\x8a\x03\x83\xdf\x30\x21\x2a\xc8\xbc\x77\x18\x52\x83\xed\x17\x9f\x40\x4d\xe0\xb7\xea\xbb\x50\x05\x58\x9a\x1d\x0e\x4f\x80\x24\x82\x45\xf0\x0a\xe8\x39\x49\x03\xef\x87\xd7\x47\x4c\x81\x01\x98\xba\xeb\x11\x5c\x04\x5f\x75\xbc\x0b\x3f\x41\x96\xfc\xa4\x83\xd7\xd0\xf0\xd7\x26\xf0\x23\xba\xe0\x6e\x22\x34\x1b\x79\x75\x71\x21\xe4\x86\x34\x57\xcf\x81\xbc\x91\xd3\x59\xb5\x50\x3e\xd2\xc1\x4f\x86\x6e\x22\x57\x48\x93\xe1\xe9\x48\xef\x09\x08\xf6\x43\xda\x76\xa5\xc2\x12\xc4\xe4\x28\x86\x07\x11\xfe\x0f\x06\xe8\x47\x0b\x7c\x55\x0e\x26\x50\xdb\xee\xb0\x41\x0e\xd5\xb9\xdb\x17\x6c\xc6\x85\x55\x9e\xe0\x3b\x7c\x49\xd6\x1c\xc8\x0b\x9f\xc9\xbb\x0a\x91\xb0\x6b\xe9\x2c\xa8\x03\xc3\xc3\x9f\xc1\x73\xb0\x65\xbb\xe6\xc0\x67\xd0\x1c\xc7\x43\x70\x03\x6a\xf1\x8d\x06\x90\xb8\xb1\x2f\x6a\x00\x1d\x67\xc7\xad\x02\xa0\x83\x3d\xaa\x53\x00\x7c\x67\xde\xab\x28\x04\x37\x32\xba\x32\xaf\x82\x09\xc4\x47\xae\x16\xac\x22\x2c\xd2\x8c\x90\x05\xdd\x21\x7c\x36\xc4\xa4\xcd\xdf\x99\x02\x0d\xe3\xbd\x8e\x33\xe1\x30\x2c\xf2\x4b\x0b\x25\x55\xe6\xfb\x7c\x32\xc5\x2c\x89\x19\x18\xa0\x0c\x89\x18\xed\xfd\xc0\x7c\x41\x5d\xd9\x5f\xe0\x28\x7f\x9c\x7e\x2f\xa0\xe3\x92\x38\x7b\x80\xcf\xec\x67\xa9\x19\xe0\x19\xd6\xfa\xe3\x3e\xe0\x6b\xc6\x21\xef\x2f\x50\x14\xdd\xd6\xe1\x07\xf4\x08\xbf\xf2\xb9\x89\x6c\xd6\xf5\x3d\x1d\x49\x7e\xa0\xd9\x79\x63\x04\x65\x9e\xaa\xa4\x6d\x3c\xc5\x57\xe1\x5a\xea\x47\x61\x4a\x2f\x6b\x3b\x29\xf7\xc5\x00\xeb\x37\xb0\x59\x38\x3f\x45\x0e\x34\xf0\xf8\x61\x18\xb8\x8f\xdd\xef\x4d\x80\xb7\x18\x06\x87\x4f\xd0\x31\xda\x8e\x8f\x9b\x49\xe5\xc5\xf6\x8f\x0d\xa4\x17\x66\xc9\x55\x8c\xbc\x20\x6f\x6c\x73\x0e\xd9\x3f\x3b\xa9\x78\x16\x39\x43\xff\x50\xdd\x48\xfe\xac\xf1\x61\x6e\xa4\x1c\x57\x32\x93\x6d\x29\xaf\xa5\x82\x63\x69\x00\x55\xb8\xd3\xeb\x0f\x68\xcd\xa1\x39\x7c\x01\x6b\x88\xb8\xf7\x8d\xa4\xd9\x4d\xdf\x1e\xce\x26\x79\xd5\xad\xea\x5f\x41\x3a\x57\xc5\x69\x0c\x23\xe5\x95\xf6\x15\xbc\x21\x7d\x2e\xf8\xa1\x6a\x27\xfb\xe7\x8d\x22\x28\xe4\x6e\x43\x57\x62\x2d\xe5\x88\x66\x43\xe8\x39\xca\x37\xf9\x7a\xaf\x73\x80\x41\x90\xeb\xf0\x01\xdc\xcb\x34\xbd\xa5\xa4\xbf\xbf\x02\xdc\x1f\x41\x1a\xd7\x73\xa7\x6f\x14\x69\x49\xc7\xe2\xfa\xdd\xa4\xa3\x4d\x1e\xf9\x9f\x48\x59\xb5\x4e\x8a\x61\xd2\xbf\xb2\x0f\xb4\xe7\xe4\xd4\x82\x5d\x09\xb1\xe4\xb7\xd9\xff\x85\x64\x53\x60\x8d\xa3\xd7\x28\x60\xbb\xa4\xc4\xe1\x33\xf0\x8f\xad\x79\x53\x9e\xde\x75\x7b\xd1\xa0\x4d\xfa\xab\x6b\xb6\x97\x96\x93\x46\x5f\x1a\x59\x17\x47\x72\xe9\x30\xe4\xaf\x20\x01\x4d\x23\x15\x1b\x49\x03\x35\x96\xb4\x9d\xe4\xdd\x25\x2d\xf1\x4f\xc9\x65\x79\x48\xc8\x29\x8a\xab\xee\x91\xe7\x53\x60\xac\x2c\xda\x71\x0a\xd0\xc7\xf1\x78\x33\x33\x3d\xef\xc1\xfb\x7b\xc9\xe9\x1d\xb7\xc5\xbd\x58\xfa\xe0\xb5\xe9\x17\xae\x90\x26\xf4\x6e\x37\x71\x48\xbb\xda\x17\xca\x8b\x49\x8a\xfa\x6c\xea\x35\xf2\xf8\x0a\x6d\x3c\x85\x1c\x6d\x86\x42\x76\x91\x07\x0d\x93\x3c\x5f\x51\xca\xe4\x1a\xc7\xdd\x00\xc4\x39\xfb\x45\x8b\x46\x01\x8a\xe7\x5e\xa8\x03\x50\x7f\x93\x85\x7c\x04\xbe\x75\x64\x20\x97\x41\xe7\xf2\x77\x88\x0e\x74\xce\x9c\x8b\xc8\xa0\x71\xdc\x6d\x48\x1a\x94\x9a\xe6\x83\x84\x42\x0f\xc2\x37\x23\x5e\xf0\xbe\x9d\x65\xc8\x7a\xb8\xde\x31\x1c\xb1\x40\x56\x0d\xb7\x22\xed\x08\xfe\x2c\x0e\x91\x20\x3e\x03\x65\xc8\x59\x64\x79\xfb\x4d\xc4\x1f\x19\x5d\xbe\x06\x59\x03\xdf\xd3\xa7\x22\xeb\x11\x7b\x8e\x10\xb1\x40\x0e\xa5\x0e\x20\xf3\x91\x84\xe3\x79\xc8\x0c\x84\xd8\xe9\x8b\x4c\x47\x24\x8e\xf3\x90\x71\x88\xee\xf3\x15\x64\x1b\x35\xf6\x29\x86\xcc\xc0\x3f\xdd\xb8\x01\xbf\xc0\x93\xda\xc7\xc3\xf7\xb1\xd7\x65\xe7\xe0\x4b\x18\x57\x77\x19\xee\xc7\x50\xf6\x77\xb8\x05\x3b\x96\xea\x0f\x5f\xc3\xec\x8e\x6f\x82\xef\xa2\x4f\xbc\xdf\xc2\x2f\x51\x8e\xc3\x4b\xf8\x35\xea\xf8\xf1\x3d\x7c\x98\x73\x7e\xa8\x00\x5e\xcf\x3e\x71\x7d\x32\x3c\x97\xe5\xdc\x7a\x02\x9e\xc4\x5c\x5e\xf2\x1e\x9e\xc8\xb0\xd3\x52\xe1\x31\xc4\x39\xd6\x35\x78\x1a\x3d\x37\xe5\x3c\xbc\x8a\xd6\x1b\x76\x12\xf6\xa7\x5e\xf3\x8e\x84\x93\xf1\x02\x87\x3a\x98\x8f\x25\x7e\x58\x03\xc1\xd2\x89\x8f\x47\x42\xc7\xc4\x87\xaf\x7a\x43\xbb\x84\x8a\xe6\x12\x68\x2b\xff\x75\xf1\x41\x68\x1b\x6f\xbf\x66\x1e\xe4\xc9\x19\x64\x4a\xa0\x40\x76\x78\xf2\x69\x88\x60\x76\x1e\x53\x43\xcd\x8c\x09\x5e\xef\xa0\x4f\xf4\x51\x0e\x46\x78\x31\x7e\xf7\xfd\x6e\xd0\xac\x3d\xff\x70\x0a\xa8\x52\xcf\xea\x47\x40\xa1\x52\xd5\x38\x0c\x22\x72\x8f\x42\x23\x08\x4b\x3e\x66\x28\x41\xae\xa8\x99\xb1\x0f\xcc\x11\xa4\x27\xc5\x82\x8f\x79\x53\x43\x5f\x40\x36\xec\x24\x2f\x3e\x14\xce\x48\x76\x28\x84\x64\x34\xef\x37\xad\x40\x4d\x21\x65\xd0\x0c\x98\xf2\x67\xf7\x8d\x06\x32\x72\x8a\xeb\x95\x00\x27\xcb\xc3\x4c\x02\x78\xba\x2b\x4a\x35\x90\xa3\x0e\xa3\x8b\x81\x2b\x8a\x8e\xc4\x49\xe0\x34\xc9\x70\xc8\x7f\x60\x90\xe0\xa6\xd7\x3c\xd0\xc8\xd9\xe5\xd0\x09\xbe\x22\xce\xbd\xda\x06\xac\x69\xf8\x7a\x77\x19\xf0\xbf\xda\xf0\x1e\x23\xe5\x6b\xc5\xbb\x0b\x87\x28\xcf\x4a\x8e\x98\x8e\x50\x9e\x99\xf3\xe4\x79\xc0\xd8\x9c\x87\xd4\x7b\xc0\xa6\xcc\xab\xf1\x46\x80\xa2\x4e\x3c\xfa\x1a\xb8\x24\xcb\xf6\x94\x83\xcb\x04\x87\x1d\x7a\xc1\x74\xa6\xfc\xc5\x34\xca\xef\xcb\x56\xb7\xe7\x52\xfa\xbb\x1b\xbb\xc5\x94\xdc\xb6\x6d\x35\xfb\x29\xe2\x06\x5e\xee\x59\x8a\xa8\xba\x50\xfa\x94\x52\x54\xaa\xc2\x0f\x51\x86\xcc\x4b\xe3\x22\x81\x19\xd9\xe3\x8e\xda\x02\x41\x6a\x92\xe7\x2a\xa0\x55\xe2\xe9\x70\x1d\x74\x60\x03\xcf\x7d\x28\x83\x03\x95\xb7\xb6\x53\xca\xfb\x87\xbb\xea\x29\x44\xcf\xd8\x6a\x0a\x25\xb6\x6d\x20\xc7\x40\x39\xdb\x10\x21\x5d\x49\x41\xab\x4a\xb1\x4a\x4a\x79\x31\x11\xfb\x98\x72\x3b\x97\x15\xfc\x1c\x98\xa9\xb3\xf2\x9c\x0a\x30\xa5\x1f\x1c\x5e\x02\xdf\x38\x0b\x9e\x95\x51\x9a\x06\x63\x6f\xea\x29\x82\x9b\x07\xbb\x2c\x28\x61\xfd\xbf\xab\xee\x53\xdc\x2f\x1e\xcb\x99\x4e\x71\x6a\x8d\x91\xe4\x50\xbc\xea\x96\x61\x3b\x29\xb1\xe5\x87\x63\x31\x0a\x33\x1f\x0e\x6e\xa3\xd4\x64\xba\x7b\xce\x02\x9c\xe5\x36\x8e\xd6\x40\x0e\xc7\xeb\xbf\x46\x2a\x89\x52\xfd\xe8\x0e\xfe\x91\xf2\xeb\x2a\x8e\xc7\x03\x6b\x5b\x96\xe0\x93\x80\xa0\xe2\x41\xcc\x0c\x98\x34\x42\x2c\x14\x3c\xcd\x5a\x8e\xfe\x03\x3f\x27\xf7\xa2\x59\x10\x1c\x66\x83\x7a\xc3\x93\xbd\x8f\x22\x1f\x60\xa5\x43\x2d\x22\x44\x56\xbd\x7f\x86\x0f\xc2\x92\x47\x63\xf0\x13\x30\x74\xa5\x11\x7b\x0d\x9f\x6c\x0e\xc3\x44\xf0\xb6\xe2\xa5\x98\x1b\xbc\x43\xfd\x0e\xfd\x09\xcb\x98\x38\x9a\x0b\xdf\x4e\x0e\x44\x4f\x21\xd3\x8e\x35\xa0\xf3\x11\x77\xaf\x6f\xc8\x35\x24\xde\x01\x43\x40\x44\xfb\xee\x17\xbe\x13\x67\x3f\x5c\x85\xdd\xc6\xad\xfa\x9f\x60\x31\x58\x43\x93\x00\xb3\xc4\x3c\x8b\xa2\xd0\x3b\xe8\xb0\x3a\x00\x95\xa2\x4f\x18\xef\x51\x7f\xf4\x71\xd2\x2d\xd4\x0a\x6d\x3b\xe6\x89\x0c\xa1\x0a\xaf\x6c\x24\x1f\x8d\x72\x38\x8a\x44\xa0\xf6\x6f\x97\x62\x01\xec\x94\xfb\x67\xd0\xb7\x2c\xda\xe5\xb5\xa8\x88\x79\xba\xe1\x2f\xba\x9b\x11\x57\xf0\x16\x9d\x45\x30\x54\x3f\x91\xdb\xf4\x5b\x44\x17\x92\x4d\x77\x4c\x7c\x8f\xe0\xb4\xf0\xd0\x34\xe4\x24\x15\xf1\xb2\x44\xb6\xe0\x88\x83\x23\x32\x09\x3b\xfb\x3a\x06\x2d\x14\xf7\xdd\x6b\x42\x37\x89\xbc\x2f\x51\x90\xbb\x02\x53\x7d\x38\xc2\xe4\xcf\x35\x9f\x46\x0e\x70\x05\xca\x2c\x64\x31\xc7\x89\xae\x83\x3f\xb3\xae\x26\xfc\x85\xef\x33\xf7\x87\x34\xc1\x7d\x44\x81\x67\x2d\x5c\x46\xbb\xec\x60\x0b\x0b\xf0\xfe\x97\x0a\xe4\x99\x66\xd6\x9d\x27\x08\xaa\x1a\xea\xe9\x40\x5c\x15\xf8\x85\x42\xf8\x91\x6c\x97\xa9\x17\xd6\x48\x66\x2a\xd6\xc1\x09\xc2\x5f\xb4\x13\xb0\x1f\xff\x5a\xc2\x44\x78\x1b\x17\x0b\x99\x0d\xaf\x67\x8f\xf7\x3c\x01\x2f\x63\x6c\x74\x70\x82\x27\xd3\x36\x3e\x5f\x00\x3f\x31\x5f\xbe\x05\xc2\xb2\x3c\x71\xf7\x1e\x78\x9f\x31\xb0\x26\x18\xfa\x64\x98\x94\x6b\x80\xca\xb4\xd5\xb2\xcd\x10\x2f\x23\x06\x2f\x84\x28\xf2\x2f\x71\xc5\x50\xac\x64\xdf\xd1\x15\xd0\x59\xc1\xd1\x1d\x5f\xa0\x33\xec\x3f\x0e\x41\x50\x28\x11\xfc\x84\x09\x27\xd5\x7d\xba\xf1\x07\x1e\x5d\x2d\xe8\x78\x05\x95\x94\xfb\x54\xcd\x82\x02\x8a\xee\x1a\xe9\xd0\xd4\xfc\x83\x12\x5f\xf0\xa3\xb1\x0c\xfd\x0b\x3e\xd7\x5f\x8f\x3d\x08\x3e\xc8\xc8\x0a\x76\x04\x1f\xcb\x26\xed\x20\x83\xaf\xf8\xc3\x0e\x51\xe0\x0b\x66\xea\xe3\x58\xd8\xa5\xb7\xee\xda\x57\xa8\xa3\x53\xd5\xf6\x1a\x0a\x6b\x09\xac\x58\x04\xfe\xa9\xbb\x99\x95\x03\xd6\x56\x59\x8a\xa4\xa0\xbc\xc4\x15\x81\x41\x96\x69\xf8\xfc\x02\x30\x39\x6b\x66\x50\x24\x18\x9f\x51\xbf\x63\x06\xc8\x10\x5f\x74\x88\x05\x65\xec\x7d\x8f\xf2\xe1\xc5\xd7\x77\x5f\x73\x80\xf2\xfb\x2e\xb4\x2d\x80\xb6\x75\xfd\x2b\xdf\x0b\xde\x6c\x1d\x65\x78\x04\x0a\xea\x2e\x08\x1f\x82\x31\x95\xae\xf0\x13\x30\xb8\xc8\xf3\x9c\x12\xdc\x9a\xc3\x0c\xb2\x06\x57\x6b\x03\x3c\x3e\x82\x07\xa4\xe7\x1d\x70\x30\x82\xfd\xf2\x91\x25\x3c\xf2\xce\xd0\x55\x19\xc4\xb8\xfe\xbb\x15\x84\x66\xf5\xdd\x2f\x2b\x02\xf3\xbb\x12\x0c\xfb\xc0\xe0\xe6\x02\x61\x08\xe8\x50\xab\x82\x53\xc0\x59\x65\x23\xce\xed\x00\xde\x99\x52\x8e\xfc\x06\x06\xf4\x31\x1e\x5f\x80\x9f\x32\xa5\xc3\x05\x70\x1a\x67\xf6\x93\x61\x56\x2d\x79\xef\xc0\x00\xb3\x89\x5c\xd0\xc5\x64\xe4\x91\xbf\x57\xdf\x27\xee\x51\x3c\x73\x23\x08\x4b\x4a\xa6\xcc\x82\xee\x0b\x78\xe1\x62\x1a\x05\xf8\x1d\x47\xa6\x66\x82\x75\xc1\xcf\xf1\x26\x88\xb4\x63\x1f\xf6\x08\xf6\xb0\xb7\x41\x3f\x21\xff\x7b\xb2\x84\xb5\x0a\xfc\x35\x30\x91\xb9\x05\x1a\xd7\xd9\xce\x58\x0f\xfd\xaf\x7a\x09\x11\x0b\x4d\xcb\x29\xa5\xd7\x41\x36\x52\x90\xf6\x0e\x42\xf1\xb1\xb4\x35\xd0\x50\xec\x5f\x6a\x24\xec\x15\x1c\x8f\xcb\x60\x83\xc7\x37\xac\x03\x99\x62\xf7\x1d\x7d\x86\xa4\x0e\xed\x62\x66\xa3\x57\x6e\x6c\x62\xd4\xa2\x44\xc7\x4f\xa2\x1e\xf5\xa9\x3a\x41\x8c\x40\x47\x1a\x7f\xd2\x0f\x23\x97\x25\x03\x34\x39\x72\x1b\x4b\xa3\x3e\x40\xfe\x8b\xc5\xa8\x2b\x90\xaf\xc1\x63\xf1\x33\xc8\x67\x8f\x62\x2c\x1b\xf9\x65\x77\x1b\xed\x43\xfe\x3e\x6a\x63\x08\x98\xe5\xd7\x5a\x89\x0b\x8c\xfb\xed\x7c\x7a\x0f\xf1\xa5\x72\x0a\xdd\x92\xb0\xca\x6e\xa5\x01\xf4\x63\xe2\x46\xea\x15\x5a\x0f\x8a\x51\xed\x68\x5b\xcf\x6b\x70\x09\x95\x13\xb4\x1b\x1b\xc6\x2f\x7b\xb8\x61\xee\xf8\x64\xbb\x3a\x34\x1d\x73\x7b\xf0\x85\x78\x2f\xcc\xbc\xea\x4c\x8c\x14\xec\x6b\x7d\x40\xb7\xe5\x3d\x2f\x8f\xa7\xa5\x71\x29\x59\x1e\xd4\x1b\x9c\x25\xa2\x13\x54\x27\xd6\x1b\xc4\x1f\x57\x30\x4b\xcf\x55\x61\xbf\x19\x21\x47\xf4\xd8\x31\xfa\xf3\xed\x6f\xd1\x32\xda\x41\xbb\x6e\xe4\x2b\x9e\x71\xdf\x8e\xf0\x52\xa5\xf5\xef\xa4\xc7\x2a\x28\x2d\x8e\x34\x85\x2c\xaa\xf4\x2a\x75\x48\x12\x9a\xd9\x40\xdd\x2c\x0a\x15\x8e\xc2\x75\x82\x14\x78\x29\xfe\x3f\x1e\x7c\xb6\x0f\x8b\xe1\x9c\x39\x32\x11\xed\x64\x39\x6e\xd7\xa2\xcb\x08\x93\xdd\x7d\xe4\x3c\xf5\xdf\xdd\x9b\xf4\xe0\x3c\x49\xdf\x7c\x1a\x61\x34\x36\x76\x51\x2f\x18\x4a\x8a\xd9\xd4\xd1\xba\x4c\x9d\x0e\x0f\x51\x73\xf9\x8b\xb0\x4e\x25\x0a\xa2\xd8\x56\x59\xc0\x19\x3e\x9a\x21\xfa\x1e\xb8\x06\x1d\xc1\x0f\xd8\xbe\x0b\x89\x62\x1f\xb4\x9f\x05\x57\x12\x33\x6e\xbb\xd1\xde\x56\xff\xee\x81\x68\xd3\xca\x3f\xd5\xa7\x51\x1d\x4a\x26\x16\x06\xe0\xb1\xe6\x21\x0d\x0b\x6b\xcd\xcd\xe2\xba\x60\x6b\xb3\x8e\x50\xee\xa3\xf9\xda\xfe\x18\x0f\x74\xa6\xf2\xef\x61\x6f\x84\x24\xb9\xe8\xde\x0f\x3f\xe3\x2f\xb6\xb7\x81\x5d\x99\x73\x6f\x6e\xa4\x65\x77\x79\x77\xab\xa8\xf5\xad\xc8\x85\x38\xfc\x6e\x83\xc2\x1c\x8d\x2f\xa8\x89\xcc\x68\xc7\x62\xca\xfe\xb1\x65\xe8\x95\xc2\x54\x72\x02\xba\x33\x57\x78\xda\x02\xc9\xcb\x5c\x7e\x28\x0d\x99\xa9\xda\xe8\x1e\x0d\xd3\x44\xed\xf6\xab\xa0\x21\xd6\xed\x81\x20\x9a\xe2\x32\xbb\xab\x9d\x6a\xbc\x18\x51\x2b\xc1\x2f\xb4\x4f\xc8\x97\x63\x9f\x1b\x83\x32\xc6\x63\x6e\x35\xd1\xac\x97\xa8\xbe\xcc\x9b\x74\x0f\x9d\x6e\xae\x8c\xce\x46\xe2\xb3\xe1\x43\x2b\xe0\x9b\xea\x22\xf7\x9d\xb0\xaf\xe4\x88\xbd\x37\x94\xcf\x8e\xbf\x91\x4f\x63\xdf\x78\xd5\x35\x8f\xca\xee\x8f\xab\x79\x8d\x8b\x2e\x56\x9b\x7e\x60\xed\x6d\x6a\x55\x1a\x36\xbe\x61\x35\x2b\x1a\x3d\x5e\x05\x93\xe2\x90\xee\xe2\x83\xd1\x87\x10\x9b\xdc\x80\x43\x23\x60\x4c\x5b\xea\xbe\x13\xfa\x21\x05\xec\xd3\xa1\x23\x6c\xc3\xad\x54\x61\x21\x69\x57\xcf\x3e\xc1\x2c\x92\xb9\x9e\xe0\x89\xc9\xa3\x0b\xeb\xb9\x3e\xe4\x13\x5a\x5b\xce\x38\xf2\x20\xf7\x15\xab\x86\xc2\x06\x48\xcc\x48\xe0\x50\x0c\xc6\xf8\x1f\x68\x71\x78\x29\x3d\x1b\xfc\xcf\xed\x19\xcd\x09\x7a\xb9\xc2\x1f\xcf\x83\xdf\xde\x6c\x13\xce\x00\x5a\x2e\xf2\xf9\x32\xe0\x7e\x5d\x3b\x6f\x15\xf0\xb1\x70\x12\xe7\x35\x38\x55\x43\x63\x97\x82\x5e\xdc\x20\x56\x2c\x98\x4f\xf9\xce\xb4\x87\xac\x63\x26\x13\x43\x90\xf4\x50\x29\x9d\x03\x4f\x75\x93\xd1\x6c\xe1\xdc\x15\x4b\xf1\x5c\x64\xf7\xcd\x89\x02\x32\x12\xde\xdd\xc3\x5f\x84\x6c\xb8\xf0\x9b\xdb\x89\x8c\x2b\x38\xc2\x61\xc1\xf7\xd5\x4f\xd9\x41\x70\x2f\xa7\x9d\x65\x09\xbf\xa0\xa4\x31\x86\x90\xd9\xa7\x33\x09\x23\xb2\xe1\xd0\x61\xfa\x31\x24\xc0\xed\x38\xf5\x1f\xc2\x59\x31\x03\x67\x21\x5d\x37\x62\xf9\x6c\xa2\xa7\x2b\x80\xe7\x4e\xcc\xad\x35\x72\x7e\xd1\x8f\x9a\xc7\xb3\x7b\x68\x05\x19\x26\x56\x16\x6d\x26\x3b\x8f\x99\x44\xd5\x93\x31\xc6\x0e\xea\xc6\xe8\x4e\x62\x31\x5e\x10\x60\xa6\xbd\xc0\xe7\xbb\x8d\xa5\xca\x31\xe1\x8a\x49\xf8\x2a\xf4\xcf\xb5\xeb\xbc\x1e\x3e\xb5\xe3\x2a\x17\xe7\x1d\xa9\x59\xc6\xd9\xcb\x9d\x67\xca\x60\x2f\x66\xdf\x56\x1d\x61\x7e\x67\x99\x58\xa9\x8c\x1b\x4c\x2d\x29\x9d\x28\x63\x88\xa2\x3e\xd2\x09\xe2\x44\x80\x15\xed\x10\xdd\x72\x5b\x17\x75\x32\xb5\x7d\x85\x1d\x96\x8d\x07\x5c\xdd\xc5\x5b\xad\x98\xda\xee\xc2\x79\x29\x73\xa9\xd2\xb1\x8b\x25\xc1\x79\x76\x2c\x48\x04\x29\xfe\x32\x83\x05\x45\xcc\xed\x0c\x77\xde\xef\xf4\x58\x62\x39\xd7\x2d\x6a\x3e\x6d\x98\xed\xe7\xaf\xa0\x36\x31\x7d\xb7\xb1\x71\x32\x31\x75\x85\x2f\x36\x97\x5a\x71\xf9\x3f\x6e\x80\x31\xbd\xe5\x13\x67\x81\xa1\xbf\x22\x8c\xf5\x54\xbf\x28\x67\x22\xb3\x58\xb3\x57\x3e\x89\x41\xa8\x52\x09\x90\x48\x90\x17\xa6\xbe\xa1\x1f\x93\xb4\x9f\xfa\x46\x5b\x27\x54\xfb\x5d\xa4\x8e\xe0\xb9\x6f\x5b\x8b\xb5\xb2\x44\x2b\xd2\xd1\xe3\xf4\xca\x4b\x06\xce\xef\x8a\xd5\x4d\x39\xec\xfc\x12\x56\x99\x3d\xeb\x54\xc1\xed\xac\xff\x98\x76\xa6\x91\xd2\xb9\xc4\x4f\xe3\x0c\x5a\x35\xfd\x69\xe6\xec\x94\x08\xda\x75\xf5\xa3\x93\x17\xa9\x66\x45\xd0\xc1\x0f\x38\x45\x4c\xda\xda\x89\xb9\xf1\x9c\x57\xb0\x90\x7b\x8c\xcc\x1e\x9c\x73\xa7\xb5\xb9\xc1\xc8\x26\x35\x1e\x29\xb1\x63\xd9\xd5\x5e\x30\x8c\x61\x3c\xaf\x78\x24\xde\x4b\x94\x16\xdf\xa0\xce\xa2\x0b\xf2\x73\x92\x86\x69\x69\x46\x9b\x08\x3d\x75\xaf\x6e\xe1\xc1\x85\xf8\x42\x85\x7a\x6b\x28\x7a\x5f\x68\x5e\x21\x43\x00\xd6\xbe\x8b\xf9\x9c\xd6\x8b\x35\xf5\x9d\xec\xe8\xf6\xa1\xe2\x3d\xac\x99\x4d\x77\x32\xd7\x32\x7a\x2e\x10\x22\x3a\xc1\xaf\xf8\x82\x87\xd3\xa3\x8a\x9d\x92\x82\x68\xbb\x4c\x93\x22\x96\x51\xe7\x19\x76\x1e\xe8\xc0\x9e\xaa\x3e\x6f\xdd\x8c\x1a\xc5\x8e\x2b\x8a\x91\x1d\xac\x27\xdd\x7f\x38\x79\xfd\xd7\xeb\x67\xb3\xf7\xf5\xe4\x16\x29\x98\x5f\x3a\xb6\xeb\x09\x46\x76\x13\x4d\xf8\x9a\x08\xaf\x05\xb0\x1b\xf4\x55\xe5\x4e\x89\x4f\x69\x63\x0a\x12\x4f\xf4\xe1\xfd\xd9\x5f\x0f\xc8\x31\x99\xfa\xd1\x56\x17\x34\x40\xb2\x6b\xc5\x63\xf8\x3d\x7b\x51\xcf\x02\xe5\xfc\xf4\xf3\x0d\xb9\xf2\x45\xe9\x43\x25\xf7\xa5\x56\xa4\x03\x86\xaf\xe2\x3d\xa4\x76\x49\xb0\x90\x42\xf6\xa5\xad\xe2\xeb\x29\x13\x93\xdf\x71\x1b\x28\xf7\x4e\xae\x66\x5f\x07\x0a\x0e\x8e\x61\x5e\x07\x19\x5b\x7c\x88\x1a\xc8\xb4\x3c\x88\x96\x06\x5f\xbb\x78\x40\x61\xa4\x34\xd6\xdf\x97\xd5\x51\x1e\x95\x58\x4b\xba\x81\x99\x86\x83\xa2\x9f\x80\x8f\xb8\x46\xb8\x16\x90\x52\x73\xf9\xa7\xc0\x09\xc9\x49\x5c\x0e\xc8\x8c\x68\x65\x17\x41\xd3\x0e\x14\x30\xeb\x21\xc5\x96\xa9\x84\x09\x0e\x5c\xee\x4d\x4b\x41\x96\x77\x93\x15\x9b\x60\x9b\xfa\x99\xb2\x50\x78\x5c\x71\xa8\x24\x0e\xfa\x93\x99\x2d\xca\x87\xde\x8b\xed\x04\x2f\xa1\xaf\x54\x2b\xfe\x12\x78\x79\xd2\x1f\xee\x41\x38\x32\x22\x84\x4d\x86\x55\x07\x42\x98\x02\xb8\x7f\xf3\x7d\x82\x86\xac\x5a\xee\x44\x0b\x42\xc4\x5d\xcb\xe4\x69\x74\xcb\x0b\x75\xd2\x5c\x1a\xbb\xc8\x5a\xdc\x4b\xfd\x4f\x1f\x2b\x9a\x44\x8d\x14\x8d\x13\x1c\xc4\xff\xc3\xe7\xf2\xf8\xb8\x3a\x69\x2e\xa7\x03\x3f\x74\x42\xc6\xfa\x8d\xbd\xdd\x7f\x85\xb9\x08\x83\x36\xcb\x08\x0b\xcc\x66\xb9\x13\xf5\x3b\xda\xd8\x51\x26\xcb\xe7\xb2\x6b\xf9\x92\xab\x1c\xa2\x60\x40\xfc\x3f\x76\xbc\xce\x45\x78\x88\x15\x2c\x78\xc1\xd7\x33\xfd\xb0\x59\xdc\x77\x8c\xb8\xc4\x8d\x9c\xf5\x04\x2f\xfc\x3a\x2b\x8a\x8e\xec\x3f\xcc\x60\xd3\xce\x6e\x8e\xa5\xf3\xa8\xbb\x96\x47\x53\x4f\xe3\x73\xda\x3d\xa5\x2f\xa4\x05\xd5\xbf\x25\x2b\x24\xb3\xcd\x54\xd1\x09\xd1\x39\xcd\x57\x81\x59\xd0\xc8\x6f\xe2\xfd\xe2\x2f\x40\x27\x72\xfd\xb9\xaa\x84\x43\x6c\x03\x67\xc6\xf1\x3f\xcc\x7e\xd6\x9e\x7d\x4f\x89\xaf\x0c\x68\xf3\x01\xda\x0f\x3a\xba\xdc\x88\x5f\xa7\xc6\xb5\x4e\x93\x3a\x19\x22\xab\xa6\x89\x23\xf5\xe3\x4d\xf1\xc2\x5c\x8d\x5c\x3d\x8e\xff\x2a\x63\x2c\xf7\x0f\xcf\x49\x11\x0b\x27\x71\x38\xd2\x67\x71\xdf\x59\x0f\xc5\xee\xc7\xe7\x31\x67\x0a\x0e\xec\xb3\x27\x36\x71\x37\x6c\x1e\x49\xdb\xc6\x7c\xb0\x7c\x00\x9f\x45\x3f\xde\xf4\x52\xd2\x5c\x92\x50\xde\x2d\x1e\x51\x38\x3a\x37\x5c\xe8\x6c\xca\x57\xcd\xe1\x9f\xcf\xb1\xe6\x38\x71\x8b\x0d\x30\x78\x8d\x33\x4e\x7b\x35\x56\xc0\x0a\x56\x7d\x0c\x9b\xc8\x10\xc8\xca\x7d\x8f\xd1\x2b\x44\x2b\x5c\xb5\xd4\x2a\xee\xde\xe5\xcf\x31\x0e\x63\x65\xe3\x6c\x49\x7d\xa3\x57\xd9\x44\xd1\xe0\x05\x0b\x63\xac\x70\x42\xe5\x15\x85\x13\xdf\xb5\x74\x1f\xeb\x2c\x37\xa1\x20\x03\x70\x62\x5f\xc8\xed\x3e\x6f\xcb\x1a\x65\xc8\x0d\x7d\xc6\xd8\xa0\x19\xb7\x97\x4d\x0f\x92\xfd\x74\xdd\x40\x0d\x14\xb0\x97\x7f\xc6\x96\x31\x1b\x1a\x96\x4a\x2e\xb4\xb7\x97\xae\x12\x0d\x34\xef\xca\x16\x0b\x7e\xd6\x49\xe5\x61\xfc\xe5\x55\x5a\xa6\x8e\x1b\x5c\x1a\x43\x01\xd8\xb2\x82\xc9\xe7\x68\xcc\x9b\x39\x7b\x43\xa3\x19\x63\x74\xbf\xf7\xba\xd0\x97\x29\x57\xbb\xce\xa0\x5a\x08\x87\x6d\xc7\xa2\xaf\x58\x7b\xea\x83\x24\x55\x3d\x89\x25\xe7\x44\x17\x3b\x8a\xb2\x1e\x08\x9e\x35\xe7\xcb\x4a\xf8\xe3\xea\x0e\x32\xfe\x71\x57\x57\x9a\xc9\x6f\xd8\x11\xc5\x3d\xe7\xa6\x32\x65\x26\x4a\xe8\x24\xa2\xd9\x80\xef\xf9\x43\xbb\xa7\xfa\xe7\x3a\x09\xef\x15\x8f\xb5\x5d\x87\x8a\x59\x44\xa5\xc9\x98\x9a\xf6\x3e\x5f\x66\xd0\xa6\x47\x6b\xbb\x74\xaf\xd3\x2f\x89\x76\x6b\xb6\x92\x76\xd3\x96\xa9\xd8\xa4\x27\x69\x42\xf9\x65\xb2\x36\x66\x82\xe4\x07\x25\x3d\xd8\x4d\xf8\x03\x88\xde\xbd\x89\x77\x05\x3c\xb9\xe1\x29\x9b\x80\x24\x36\x42\xc6\x44\x78\xb0\x72\x9a\xf1\x7f\xe4\x8f\xf9\x23\x0c\x3b\x28\x76\xda\x4d\x3a\x25\x65\xbf\xb0\x47\xfd\x99\x22\xa6\x56\xa9\xf6\x50\xbe\xa6\xad\x91\xcb\x81\x84\xd3\xe5\x92\x1e\x70\x7c\xd0\x07\xe1\x2d\xd0\xb4\xeb\x17\xaf\x16\x3a\xbc\xa1\x9e\x9d\x0e\xaf\xb4\xc1\x19\xa3\x90\x05\x15\xc9\xd9\x59\xd0\x3c\xd3\x89\xcc\x17\xd0\x54\x4d\x96\xce\x1b\xfc\x2e\xf4\x51\xe7\x42\x63\xa8\xde\xaa\x31\x90\x5d\x6a\x97\x3c\x10\x3a\x7d\x3a\x58\xc2\x87\x9a\x82\x8c\x42\x23\x3c\x77\x57\x2b\x4f\x00\x27\x6d\xd0\xb1\x03\xe1\xcf\x36\x18\xf1\x1c\xc1\xca\xcf\x67\x75\x53\x05\x79\xd1\x99\x8e\xd4\x99\xea\x4a\x6d\x36\x4e\x17\x84\xaa\x27\xe3\x8b\xf0\x28\x65\x1c\xd6\x95\xf2\x4f\xd6\x89\x89\xa3\x8b\x25\x63\xb1\xd8\xa0\xb9\x42\x5b\x6c\xed\xae\xe3\xbc\x45\xe8\x87\x0d\x00\xeb\x15\xda\x69\x93\x45\x40\xa8\xba\x6c\x4d\x96\x33\xfb\x40\xae\xbb\x9e\xc9\x4a\xcc\xd0\x69\x7e\x30\x61\x7e\x48\x46\x24\x43\x89\xc1\x8a\xcb\x44\x5b\xca\x6a\xd9\x1a\x62\x6a\xd4\x6f\x31\x89\x1e\x76\x84\x10\x48\x68\xcc\x5d\x93\xb8\x2c\x6a\xfe\x86\x28\x56\x08\xde\x63\x33\x48\x7f\x8f\x3d\x2e\xf9\x63\xe0\x89\x5a\x72\x66\xeb\x5e\x0b\x43\x54\x98\xe6\x18\xff\x09\xcf\x5f\xd5\xc3\x4b\x43\xf9\x8a\x0d\xdc\x39\xc9\x47\xa4\x6a\xf6\xf5\x28\x6f\xd1\x3b\x16\x3b\xf0\xb3\x60\x04\x73\xfa\xce\x4a\xce\x47\x82\xba\x21\x84\xd9\x40\x7b\xb8\xd4\x86\xbe\x8f\x6a\x5f\x6c\x9b\xf9\x44\xbb\x39\x7b\xbf\x6e\x8b\x7a\xb3\xe2\x8a\xda\xac\x9a\xcf\xb9\xa0\x9a\x2e\xbf\x81\x2c\x94\x27\x49\xf9\x49\x93\x24\x77\xc5\xa1\x91\x2b\x45\x2b\x85\xb3\x03\x97\xf3\xb7\xf3\x88\x9d\xf6\x9c\x75\xec\x6b\x1b\x56\x33\x7e\x30\x86\x97\x86\xd3\x68\xb4\xef\x85\xcb\x32\xd3\xcc\x73\x0d\x89\xda\xfe\x3c\x4b\xf9\x7c\xf5\x56\xe3\x2c\xf6\x02\xa5\x3c\xf3\x39\xa4\x94\x7d\xd4\xe6\x24\x14\x4a\x0e\x67\x9c\x39\x35\x4a\x98\xa3\x18\x7d\xd8\x83\x77\x41\xe2\xe5\x4d\x67\x9b\x04\x9e\xce\xaf\x19\x67\x39\x93\x96\xd2\xa8\xef\x08\x99\x39\x22\x33\xae\x5a\xae\xaf\xd0\x16\x97\xff\x27\x0d\x55\x8f\x2b\x59\xc8\x4c\x50\x06\x15\x4c\x02\xff\x27\x33\xe6\x5e\x8f\xdf\x29\xfe\x93\x45\x8f\xe8\x15\x7a\x6a\xbf\x1e\xda\xc3\x3b\xa4\xfc\xea\x75\x87\xed\x21\xc9\x70\xce\x60\x8c\xe0\x0d\x2f\xd5\x52\x01\xc6\xcf\xfc\xf2\xcc\x43\x0d\x52\xdd\x77\xad\xa6\x56\x20\x11\x67\x0c\x57\x06\x30\xca\x94\xdb\x4a\x06\x81\x50\x19\x5e\xb0\x2e\x2e\x4f\x7c\x3d\x37\x3c\xc2\x4b\x38\xc3\xe0\x1e\xf0\x90\x67\xa5\xd6\x7b\x09\xd9\x93\x64\x72\x67\x94\x68\x17\x6c\x5d\x5a\x49\xdd\xc6\x84\xf3\x97\x64\x6e\x68\xbd\xac\x0b\xd4\x52\x1b\x29\xe2\x97\x19\x77\x6b\x5f\x33\x66\x28\x17\x56\x2e\xa0\x74\xc9\x0e\x97\x8c\x8f\x5b\x26\x56\xe5\x37\x9f\xb8\x25\xe8\x37\x2e\x08\x10\x70\x6f\x69\x5f\x7a\x9d\x64\x35\x28\xb6\x3a\x43\x44\xa2\xd0\x69\xe9\x13\xfc\x05\xb3\x35\x73\x4e\x59\x6b\xfa\x41\xd9\x8f\x62\xd7\xf4\x62\xce\x71\x73\x3d\x69\x12\xba\x23\x6f\x09\x89\x96\x62\xc8\x4e\x26\x2f\x8d\x29\xd1\x57\x92\x07\x43\x7f\xa8\x2f\x52\xaa\x0f\x6c\x51\xb0\x81\xba\xed\x88\x64\x0a\x78\x75\x6d\x19\xff\x24\x3c\xc9\x7a\x31\x2b\x09\x09\xd4\x9b\xcb\x22\xc9\xdf\x64\xf2\xa2\xa7\x14\x0b\xce\x18\xf3\x39\x8a\x0f\xf2\x39\xf7\x0e\x45\x98\x12\x92\xed\x44\xf9\x15\x93\xac\x07\x00\x30\xb4\x59\x2d\x07\x17\x1f\x98\xa2\x88\x04\x6f\x6f\x3f\x26\xfe\x04\x65\xae\xd5\xf3\x0f\xc2\x74\x6b\x6b\x56\x34\x02\xe9\x37\x97\x4d\x06\x9b\x64\x6b\x8a\xb8\x60\x31\x3b\xcb\x3c\x1f\x2c\x46\x32\x73\xd9\x60\x77\xca\x82\xac\xb7\xe0\xdf\x18\x67\xbd\x2b\xe4\x13\x2a\x50\x07\x43\x25\xfb\x1f\x2a\xd6\xc2\x36\xdb\xb7\x8a\x3b\x61\xed\x5a\x11\x7f\x15\xb2\xc1\x7a\x35\xcb\x1b\xb9\xa9\xa3\x97\xfa\xe1\x15\x52\xac\xf0\x2e\xbe\x9b\xfd\xbf\xfc\x58\xec\x0a\x32\x31\xe7\x15\x46\x4a\x66\x66\xf9\x61\xdb\x4e\x57\xe9\x32\x31\xeb\x50\xbb\x8c\x0e\x6c\xee\x7e\xae\x3c\x1f\xfd\xbd\x7d\x8c\xd8\x07\x7d\xbc\x96\xc6\xbb\x80\x3e\xb2\x8e\x60\x5e\x43\x6f\x6a\xe9\x25\xa5\xcc\x07\x12\x53\xa1\x0b\x73\x0e\x6b\x8b\xa9\x8f\xb1\x19\xde\x9b\xe3\x43\xa4\x25\x3d\x31\x54\xd2\x2f\x9e\x5e\xa2\x9b\x4c\xdf\x14\x92\x9f\xe1\x42\x2b\xdb\xef\x2c\x9f\x49\x9b\xea\x3e\x20\x2a\xa4\x1e\x5f\x2b\xe0\x59\xe0\x17\xac\x4d\x4c\x17\x7c\xb4\x86\x5d\x32\x59\x10\x2f\x2e\x2f\x50\xf1\xf7\x33\x4f\x98\x5c\xb8\x7f\x20\xaa\xb1\x8c\xd3\x91\xb4\xc1\xb0\x98\xad\x8e\xa6\x69\x53\x59\x9c\x10\x3b\x55\x0e\x13\xde\x77\x47\x96\xc6\xf0\x72\x37\x89\x26\xd1\x87\xd7\xe6\x72\xe3\x69\x4a\xeb\xaf\x0c\x06\xd5\x41\x7d\xa8\x78\xb7\xea\x8f\x88\x66\xbe\xaf\x9c\xcf\xb0\xcd\xa3\xc8\xed\xc1\xa3\xd9\xef\xa5\xb6\x89\xcb\x32\xfd\xc4\xf6\x51\x12\x8d\x49\xe8\x79\x34\x42\x79\x9b\x7f\x70\xdf\x4e\x69\x2e\xd7\xd2\x3d\x50\xb8\x8d\xd5\xbd\x36\x93\xa3\x65\x84\x2c\x09\x22\xf2\x69\x97\x55\x0f\x8b\x9e\xe4\x84\x0a\xe7\x98\x23\xb2\xa4\xf4\x07\xb9\x7f\xf4\x5f\x80\x25\xd9\xa7\xb5\x73\x13\x46\xea\x9b\x33\x56\x47\x0a\x34\x73\x15\x21\xc1\x74\xa5\x97\x34\xda\x57\x2d\x9d\x25\x5a\xea\xf6\x4a\x90\xc3\xcb\x59\xcb\x61\xff\x65\x4f\x58\x92\x41\x8c\x26\x36\x2b\x4f\x17\x65\x97\x72\xf8\x65\xe6\xe5\x45\xce\xb4\xf8\xdc\x82\xfc\x16\x72\x4f\xf6\xa4\xdc\x79\x71\x9d\xfa\xc0\x2c\xbf\x53\x29\x6a\x83\x0e\x0b\x92\x29\xba\x33\xc0\xbd\x4f\x25\x52\xf9\x22\xb7\x04\x81\xbd\xe8\xdc\xda\x13\x6c\x8c\xcb\x5a\xd2\x45\xa7\x33\xce\x2a\x3a\x8b\xb8\x55\x8f\xf9\xd3\xcd\x53\xca\x37\x50\x3b\x73\xd9\xc5\xc7\xc8\x8e\x59\x43\xe6\xc0\x38\x67\xfd\xd2\x5c\x87\x93\x5f\xd5\x67\x0c\x43\x41\xf6\x0a\x86\x36\x68\xaf\x58\x12\xa8\x3c\xe7\xb6\x83\xff\x42\xb2\x62\xed\x11\xb6\x1b\x2f\x73\xc9\x13\xba\x27\xe3\xae\x62\x53\x51\x52\x1d\xc4\x43\xf2\xdf\x56\xb3\xa8\xce\xb9\x11\xe5\x11\xa4\x9c\xac\xe2\xe2\xa9\xb1\x4d\xba\x97\xf9\xc4\x49\xbe\x7a\xb9\xf1\xfa\x91\x3b\x8a\x6d\xfa\x6b\x7b\x83\x24\x63\x33\x4e\xb9\xd9\xf0\x25\x52\xfe\xda\xe3\xac\x97\xfc\x54\x9b\x69\xb4\x37\xcc\x29\xdc\xbb\xcd\x81\x24\x31\xf5\xbf\xba\x21\xd2\x75\x0a\xa5\x9a\x42\x9e\x94\xa0\x2c\x1f\x49\x8e\x8f\x3e\x59\x14\x4e\x19\x19\xfa\xc8\x94\x41\xa9\xf5\xeb\xcf\x16\x02\x4a\xef\x47\x3a\x2b\xd0\xe0\xea\xab\x3c\x01\xb5\xac\x9c\x28\xde\x08\x3f\xb1\xf4\xe0\x98\xd1\x19\xdc\xa2\xa6\xb7\x94\xdf\xd4\xc6\x3a\x1c\x98\x42\xd9\x59\x6d\x07\xcc\x4d\x38\x57\x56\x09\xf8\x44\xbb\x15\x2d\x04\x72\x42\x9b\x4c\x21\xa0\xbd\x5f\x59\xf6\x11\xf0\x8a\x77\xaf\xf6\x23\x24\x73\x75\x55\xba\xc1\x67\x56\x4e\x14\x2f\x46\x76\x58\xfa\x73\xe4\xe8\x32\x2e\xd0\x04\x42\x04\x95\xa8\xb3\x81\x4e\x53\xa6\x54\x5d\x85\x76\x25\xb8\x96\x45\x40\x3e\xd1\x73\x0a\x2f\x41\x29\xa1\x2a\xd3\x74\xa8\xc3\x4f\x92\x3d\x0d\x76\xf1\xae\xd0\x56\xc2\xd5\xae\x8e\xca\x89\x88\xf7\xca\x49\xa2\xf7\xc8\x4d\xcb\x33\x9c\x58\xf4\x2c\xe7\x5a\x63\x0d\x7e\x9d\x3a\xe2\x42\x24\x1e\x4c\xce\xaa\x5a\x8c\xdd\x8e\xbf\x5d\x5a\x86\x61\x51\x8d\x85\x36\xd8\x81\xd0\x03\x79\x51\xd8\x36\xbf\xa3\x59\xd1\x98\x97\xb7\x44\x6b\x83\xed\x74\x9d\xaf\x20\x63\x7b\x56\x5a\x88\x22\xb1\x03\x96\x05\xec\xd7\x58\x00\xc7\xa7\xe1\x2f\x13\xc5\xf1\xda\x62\x46\x3e\xd9\xae\xf2\x34\x71\x29\x3e\xbe\x74\x34\x31\x27\x2a\xa6\x80\x44\x27\x87\x8e\xc9\x6d\xa6\xfd\xf0\xb3\x30\x74\xd0\x98\xde\x67\x35\x29\xb4\xc9\xae\x93\xe4\x97\xa8\xb4\x95\x5b\x84\xd5\xf8\x4f\xcb\x1f\xec\x2d\xf8\x29\xf6\xb3\x06\x5f\x3e\x17\x1f\x5b\x3b\x92\xb7\x8f\x64\xac\xa8\xe3\x4e\x88\x1f\x51\x12\xcc\x7e\x1e\x35\xd5\x7c\x8d\x35\x18\x52\x9e\xbb\x80\x39\x74\xf0\xbe\xc1\x8a\xf1\xc9\xdb\x43\xdd\x46\xbc\x70\x1d\x21\x9f\x45\xef\x5f\x19\x26\xf8\x43\xcb\xb5\xda\xc7\x02\xa8\x31\xec\x19\xf5\x64\x45\x2f\xb6\xa9\xc6\x4e\x3e\x32\xfd\x56\xf9\x7d\xe9\x9a\x38\x97\xe2\x04\x71\x50\xa4\x7f\xfe\x63\xa1\x30\x64\x56\x8e\x2d\xff\xe6\xc1\x93\x99\x8e\xbc\xf9\x5e\xc3\x19\x57\x38\xab\x37\xbd\x95\x2d\x65\xd9\xaf\xe4\x09\x26\x31\xe6\x5b\xf5\x33\xa9\xb4\x27\xac\x0d\x75\xfd\x86\x6e\xf4\x60\x35\xa6\xdf\x97\xf6\xa5\x7c\x83\xa6\x27\x36\xb8\xa8\x25\x63\xf5\x29\x24\xdf\x4e\x21\x3d\x1a\x66\x3c\x2b\x1b\x73\xe0\x9a\x3e\x4e\x1c\xee\x25\xc8\x98\x2b\x00\x37\x35\x48\xcf\x72\xe3\x57\x1a\xf8\x07\x58\xc1\xd6\xab\x19\xdd\xc4\x02\xa6\x43\x9d\x7f\x01\x8c\x1c\xa9\xfe\x9f\x29\x21\x6d\x4c\x59\x43\x8e\xf7\xf9\xc4\xa2\x6d\x86\x77\x27\x4d\x26\xb9\x8e\x08\x36\x66\xdf\x50\x5b\x1c\x70\xd7\x0d\x28\xb8\x5e\xf6\x2a\x8a\xa4\x64\x93\x40\x72\x4d\xa0\x5c\x99\xcf\x6b\xe0\x44\x59\x27\x31\xb6\x31\x26\x33\x8c\x75\xf3\x4a\xe7\xc1\x83\x55\x03\x85\x75\xa9\xc2\x32\x22\x7f\xd3\xf9\xf1\x45\x23\x73\x58\x27\x77\x99\x02\x0c\x9d\xc1\xfe\xd9\x3c\xed\xd7\xfd\xff\x74\x6c\xd5\x17\xcf\xbf\xaa\x35\x32\xcd\x26\x44\x42\x13\x8d\x5d\x59\xce\x4b\xe4\xee\xb2\x96\x10\x5f\x18\xa1\x0c\xc7\x0b\xb7\x2a\x47\xc2\xf1\x55\xca\xd2\x93\xa9\x6b\xca\xf6\x14\x66\x9c\x2b\x2c\xac\x35\xe5\x46\x7c\x31\x8d\x34\x8a\x82\x67\x64\xbb\x64\x46\xef\xbf\xa6\x5b\xa3\x19\xe5\xf9\x5c\x79\x55\xb1\x75\x13\x55\x62\x2b\x5e\xb5\xb2\x8f\x37\x87\xfb\xce\xba\x8d\x50\x32\x12\x68\xb7\x3b\x5d\xc8\x1c\x70\x5a\x8b\x88\x5c\x91\x3c\xb6\xfe\x09\xb9\xff\x8c\xb6\x66\x0a\xc5\xea\xc4\xf8\xf2\x51\x14\xdd\x91\x85\x85\xdd\x80\xaf\x6f\x77\xde\x56\xd0\xd6\x23\xcf\xb0\x01\xb2\x75\x99\x96\xf1\x12\xde\xee\x30\x59\x3a\x1a\xd9\x6f\x91\xc3\x35\xa3\x51\xb4\xfc\x8e\x01\x60\x10\xf8\xd8\xe2\x0c\xdc\x48\x1a\xaa\xe7\x00\x9d\x67\xe0\xea\x7a\xe0\x49\xf8\x9b\xb2\x6a\x70\xf5\x91\xd1\x85\x18\x98\xeb\x5b\x9e\xfb\x0b\xf2\xf1\xd0\x19\x46\xc1\x13\x5d\x26\x64\x34\xc1\x83\x0e\xb3\x24\x8f\x91\x4c\x8b\x1a\xae\x04\x8d\xa3\xc5\x75\x24\xc3\xfb\x81\x4b\xcd\x37\xe0\x05\x49\x75\xf5\x6b\xa1\xa1\x33\xc1\xd5\x27\xa1\xde\xf0\x4b\x65\x27\xa1\x17\x81\xaf\x0b\xd7\xc1\x6b\x7c\x35\xb9\x05\xb0\xca\x43\x9a\xd9\x82\x2c\x74\x19\x93\x81\x21\x26\x87\x85\x92\x02\xd4\xde\xe2\x3a\x37\x0a\x2d\xa5\x7e\x69\x37\x53\xf7\x01\x51\xcd\xd3\xf1\xe6\xa4\xe8\xba\x38\x7c\xfd\x99\x39\x55\xb9\x58\x7f\xb8\xb0\xd4\x8c\x49\x02\x6b\x0a\xc8\x18\xe8\x9b\x9a\xf3\x05\xc3\x3c\x38\x99\x4b\x30\xba\xcb\x28\xd5\x33\x4c\xe0\xb0\x51\x32\x17\xe3\x5b\xce\xe6\xdc\xc4\x78\xd4\xa2\xb6\x57\xcc\x0a\x60\x51\xd3\x01\xc6\x40\xd2\xbc\x0b\x85\xc4\x70\xcc\xcd\xca\xb7\x84\x73\xf8\xc9\x92\xef\x74\x59\xa0\xc0\xdc\x4d\x9f\xe1\x1b\x9c\xb3\x8b\x96\xe9\x91\xae\x8f\xa1\xd9\x6f\xf8\xad\x72\xa4\x9a\x1d\x8e\x8a\x8f\x51\x6d\x2d\x8f\x73\x16\xe3\x12\xea\xc1\xb6\xd5\xfc\x44\x4a\x73\xa3\x84\xb7\x3e\xb1\xb9\xf6\x03\xe7\x73\x8c\xa0\xd2\x89\xdd\x17\xbe\xbe\x64\x27\xab\x3d\xf0\x94\x79\x16\xb3\xc7\x77\xa3\x51\xcc\xb8\xe7\x71\x42\x57\x48\x3c\xdc\xf0\x53\x19\x43\xbf\xe1\x80\x88\x94\xb4\x3a\xcb\x72\xf6\x61\x2a\x0f\x6f\x68\xdd\xa6\x70\xa6\xd8\x35\x64\xca\xce\x25\xda\xd7\x7c\x93\xe8\x4e\xff\xa8\x58\x27\xea\x3f\xae\x2d\xde\x2c\x9c\x7d\xf8\x4d\xfe\x38\x7e\xc4\xde\x27\xd9\x34\x6e\x99\xc7\x46\xad\x81\xfd\xd8\x65\xb2\x22\x9c\xf9\xdd\xa1\x5d\x28\x65\x4c\xb0\x72\x67\xed\xa3\x7d\xc1\x47\xb5\x80\x99\x2a\x72\x6a\xfd\x23\xdd\xb2\x04\xb0\x66\xbd\x3a\xf7\xf4\xde\xf2\x53\xaa\x45\x61\x3f\x8b\x22\xe5\x9a\xc3\x61\xa6\xb5\x52\xab\xbd\xe9\x59\xc5\x22\xf9\xf6\x4f\x9a\x6b\xfc\x3b\x1b\x3e\xc8\xe5\x9c\xaf\x0e\xcf\x05\x97\x58\xb3\xad\x72\x99\x04\x31\x03\xf3\x69\x7e\x90\xaf\x27\x35\xd6\xef\xc9\x95\xc7\xf7\x55\x6b\xb3\x29\xd1\xfa\xb2\xf6\xcc\xcd\x61\xfe\x85\xb5\x9a\xaf\x87\x06\xf2\x70\x55\xc9\xde\x99\x59\x23\xe5\xfb\xb7\x57\x69\x6c\xc4\xb9\x1b\x3e\xc9\x5e\xf3\xaf\x3a\x4e\x16\x38\xb2\x5f\x5b\x0d\x33\x86\x89\xa7\xe8\xb3\x66\x75\xd1\x03\xd2\xf1\xfa\x31\x66\x2c\x9e\x52\x1d\x9c\x37\x2f\xfa\x60\x19\x29\x9b\x16\x36\xb1\x30\x4a\xff\xec\x90\x2a\x6f\x8d\xc6\x6b\xcf\x5b\x83\x59\x49\xd9\xae\x55\xf7\x48\x23\x36\x7c\x91\xc9\x84\x0b\x1d\xad\xf8\x83\x9c\x62\xeb\x79\x0c\x33\x63\x29\xca\x68\x3e\x5c\x96\x40\x1a\x57\x57\x53\x34\x10\xbf\xa6\x7a\x8a\xd9\x3e\x7a\x5a\xd9\xb2\xdc\x43\xc7\xae\x15\x4e\xc8\x8a\x39\x14\x9f\x7b\x49\x97\xb2\x67\xc0\xb0\x33\xc3\x6f\xbb\x54\x7d\x52\x76\x65\xc3\x5f\x99\xb3\xc8\xd2\xd1\x83\x4f\xe6\xba\x5b\xef\x61\xec\x65\xac\x82\x9d\x7a\xa7\x51\xba\x52\x25\x9d\x7b\x29\xdd\xe7\xaf\xb7\x24\x52\x6a\x4f\x75\xd4\x07\x51\x5e\x86\x28\xaa\xfe\x00\xbe\xfe\xab\x4a\xa3\x81\x67\xbb\x93\xcd\xe7\xc0\x22\xb7\x59\xd9\x0f\x21\xad\xd3\x29\xed\x3c\xd8\x6c\x07\xc9\x38\x88\xca\x22\x82\x07\xa3\x0a\x78\x61\x4f\x19\x34\x3a\x95\xdb\xf1\x0e\xbc\x71\xbe\xa5\x65\x0e\xa8\x3f\x55\x5e\x3f\x12\xcc\x08\xe1\x56\x15\x80\xbd\xfe\x56\xa5\x0b\xa0\xb5\xbb\x63\xcc\xb6\x50\x8b\xdb\xd4\xec\x42\x38\xd1\xe9\x98\xe6\x35\xb2\xd9\x8e\x2a\x8b\x44\x9e\x58\x9c\xe7\x45\xa2\x19\xd0\xb7\x9e\xc3\x48\x78\x2a\xd8\xc1\x46\xc6\x9c\xcf\x6f\x2e\x87\x0b\x4f\xa9\xeb\x32\xe1\xa4\x10\x52\xd5\x41\x38\xc9\x7f\x7a\x49\x33\x9c\xbb\x3b\x24\xff\x32\x32\xda\x6d\x62\x76\x0c\x92\xe6\x14\xa4\x31\x21\xbf\xec\x08\xd9\x4a\x34\xc2\x02\xe6\xad\x47\x07\xa0\xfc\x8b\x34\x9a\x65\xea\x86\xf6\x7a\x6a\xdc\xf9\xe8\xa6\x27\x78\xd7\xa9\x73\x17\x6e\xe1\xbe\x21\x87\x2a\x59\xd8\x1f\xbf\x8f\xc5\x3f\xb1\x81\xdd\x5e\xf9\x13\xb0\xcb\x6e\x13\xb2\x9a\xb1\x4b\x4e\x47\x34\x23\xb0\x3e\x3b\x83\x94\x85\x5d\xb0\xa8\xe4\xca\xb1\x5c\x48\xdf\x5d\xcd\xf2\x49\x9d\xdf\xf6\x8e\xe9\x77\xde\xbd\x69\x1a\xe3\xc4\xa9\x80\x0b\x53\x08\x76\xc8\xde\x8a\x8b\xf4\x07\x7e\x2f\x8b\x37\xd1\x7d\x76\x6f\x37\xf9\xd0\x2e\xbb\x8d\x37\xfc\xa2\x1d\x72\x3a\xa1\xde\x40\xbd\x61\xd7\x2b\x69\xa3\x7a\x5b\x8e\xe4\x5c\xc5\x0b\xa0\x5d\x5d\xef\xf9\xed\x29\x77\xdb\xac\x79\x29\xe7\x67\x36\xba\x71\x57\x9e\xda\x50\xbb\x83\xfd\x25\xc4\xad\x62\x1c\x6b\xc8\x6f\xb0\x28\x99\x79\x67\xf7\xe6\x3c\x9c\xf1\xc4\x6d\x82\x61\x35\xf1\xd2\x29\x21\xe3\x24\xfd\xa9\xdd\x5f\xf1\x47\xda\x15\xcb\xa3\x9c\x11\xd4\x42\xf0\x53\xe7\x6d\xc5\x82\x14\x4a\xeb\x64\x99\xc7\xb9\xa2\x06\x5b\xc9\xd9\x93\x3d\x35\x4b\x44\xe2\xa3\xd7\xca\xee\x0b\x6e\xf9\x31\x0a\xf7\xf0\x97\xec\x1e\x9b\x1b\xc2\x4d\xdc\xf6\x2d\x73\x12\xbb\xd0\x89\xaf\xda\xc5\x1c\xb0\xdf\x21\x7a\x48\xfc\xb0\xbc\xc7\x7a\x47\x1f\x0d\x1e\xee\xf8\xa3\xff\x92\xfc\xa9\xc5\x51\x1b\x7f\xce\xb9\xde\x2d\xe3\xcd\xc9\x3d\xd5\xeb\x95\x11\x47\xfd\x4a\x5f\xca\xde\xf8\x59\x15\x04\x4a\x52\x76\xd5\xe5\x9c\x16\xfe\xdc\x76\x43\x6f\xcd\x0f\x74\x92\x29\x23\x39\x22\xfb\x14\xd1\x58\xe6\x2d\x2b\x4f\xd6\x22\x62\x14\xf0\xa6\xc3\xc5\x74\x38\x99\xda\x1c\x97\xb3\xfd\x6c\x5b\x1d\x91\x65\x13\x71\xab\x2a\x41\xf7\x2a\xf8\x61\xa9\x85\xba\xfa\x60\xb7\x99\xa3\x64\xec\xa2\x1a\xb3\x64\x3b\xb7\xd5\xe9\x8e\x88\xba\x9c\x8a\x15\x26\xfe\x72\xfb\x7c\x61\x30\x1b\xb0\x92\x30\x11\xa2\x12\xc8\x6b\x7f\x5d\xb8\x2d\x79\x6b\xf3\x02\xd3\x8d\xb3\xec\xba\xb5\x39\xe7\x22\x32\xab\xe6\x18\x9e\x07\xe7\x97\x54\xeb\x42\x0f\x1a\xcc\x0e\x19\x77\x77\xc5\x19\xdd\x14\xae\xdb\x6a\xb4\x1f\x24\x7e\x4e\x9d\x0a\x5f\xc1\x1e\xfb\x5e\xe1\x28\x8e\xbd\x55\x13\xd3\x89\x78\x05\x9c\x6e\x57\x94\x80\x49\x3f\x9a\x1a\x0b\xae\x9d\x0d\xbd\x70\xd5\xb4\x3a\x22\xa5\xb2\xc8\x18\x1d\x8c\x97\xf8\x66\xca\x0f\xb2\xf2\xeb\x34\xbd\xbb\x4e\x67\x5f\x57\xde\xdd\xd6\xa6\x25\x4b\xb9\x4e\x4f\xe4\x8f\x85\x8e\xf6\x5f\x04\x6a\x4e\x96\xd5\x57\xc6\x55\xe2\xfd\x57\x2a\xf0\x88\xdc\xfa\x62\x3c\x38\x83\xb2\xfa\xd6\x7a\x70\x0d\xe5\x4c\xe7\x7a\xf0\x0c\xc5\x58\x11\x0a\x1a\x29\xff\x32\x63\xc0\xbf\xc0\x63\x6e\x1c\xe4\x0a\x26\xa7\xc5\x43\x0c\x68\x64\xf8\x56\xe8\x11\xc4\xdf\x29\x87\xdd\xe1\x19\x8e\xd3\xe1\x3c\xd8\xf0\xc5\x08\xb8\x41\xdd\xcf\x1d\x81\x34\xa8\xe7\x66\x10\x90\x03\x35\x74\x44\x01\x1f\x20\x43\xb9\x1a\x5c\x0f\x55\xea\x5b\x41\x15\xbc\x94\x73\x05\x7c\x02\x47\xa6\xbe\x80\xbc\x60\xfd\x71\x15\x64\x86\xaf\xee\x74\x84\xad\xe1\x4f\x0e\x37\xe0\x0c\x64\xd6\x70\x1e\xc5\x80\xbd\x79\xe6\x4a\x79\x8f\xb1\x07\x48\x80\x25\xb6\xb1\x9d\x07\xa4\xa2\x0d\x65\x03\xc0\x45\x34\x49\xef\x04\x2e\x41\x13\x38\xce\x20\x15\xa5\xa4\x9e\x02\xbf\xa1\x27\x8f\x5b\x43\xb1\xe8\x46\xef\xab\xd0\x47\xe4\xb3\x83\x01\x06\x10\xe3\x27\x29\x59\xcb\x9e\xf4\xc4\x89\x3c\xcc\x9a\x71\x9d\x41\xd9\xc8\xfc\x5f\xeb\x2d\x8a\x9a\x31\xbb\x74\x3f\xe5\x2f\xb1\x5e\x7b\x13\x38\x42\x27\xd8\x53\x80\x06\xda\xc3\x14\x18\xdc\x4d\x5b\x10\x76\x14\xbc\x4b\x75\xf2\xde\x02\xa5\xe0\x4b\x1d\xce\xc0\x73\xd0\x6f\x1f\x7a\x48\x1a\x71\xe3\x63\x06\x79\x84\x68\xf9\xd5\x7a\xf2\x09\x01\xde\xb2\x88\x5c\xc3\x7b\x57\x9c\x47\x99\xc7\x3d\xab\x09\xa1\x40\x9c\xc9\xcc\x56\xca\x57\x96\x31\x19\x02\x84\x4c\x9b\x63\x52\xd0\x95\x48\xf6\xea\x04\x9f\xd2\xa8\x0e\x87\x21\x11\x1e\xf3\xfe\x46\xfa\x4b\x8d\xf3\x43\x2e\xc9\x43\xf5\xad\xff\x03\x29\x5b\x21\x6d\x0a\x25\xbd\x96\x85\x14\x8d\x21\x7b\x4a\xec\x32\x1e\x92\xab\x44\x63\x19\x14\xca\x66\xfe\xd5\x24\x94\x32\xc4\x85\x42\x07\x01\x25\xeb\xab\x57\x18\xe8\xc7\x18\xe3\x10\x00\x4d\xa1\x3e\x7e\x1b\x9d\xd6\x59\x40\xbf\xbf\x26\x7d\x85\x69\x65\x5f\x62\x3a\xd5\x78\xab\xfe\x4f\xfa\x23\x03\x66\xee\x25\xed\xd6\x2d\x57\x0e\x92\x3a\x32\xda\xe8\x0d\xe4\x20\x85\x6b\xe2\x6c\xca\x44\x09\x29\x64\x80\xd2\x27\x38\xe3\x79\x1b\x50\xb2\x5f\x3a\x84\x82\x91\xc4\xdc\x57\xfd\x69\xa3\x1a\x1c\xef\xca\xd2\xa2\x6a\x32\x7b\x67\xa7\x55\x55\xb8\x5d\xa8\x4a\x5f\x56\xdc\x68\xca\x49\x57\x98\x6d\xe4\xcf\x49\x8b\x73\x22\x69\xe3\x49\x35\x99\xa7\xe2\x0b\xc8\x09\xea\x69\x47\xfb\x28\xee\x32\x5f\x4f\x5f\x60\x81\x60\xbc\x43\x30\xf0\x85\xe9\xff\x02\x4c\xfd\xd2\x97\x74\x3b\x31\xcd\xbe\x7b\x46\xf7\xc3\xb4\xa8\xd6\x8c\x1a\x45\xda\xd5\x86\x89\xb9\xd9\xe9\x1e\xd5\x9b\x65\xd3\xd2\xdb\x4b\x9d\xf0\xb3\xa4\x13\xf9\x5d\x71\x11\xe4\x31\x59\x35\x47\x47\x93\xdb\xd4\x2e\x3b\x1e\x50\xca\x24\x13\x1c\x8e\x01\x46\xf6\xae\xe7\x99\xa9\x75\x03\xd3\x6f\x49\x52\xff\xf4\xef\xed\xfa\x97\xb6\xed\x62\x78\x75\x75\x5a\x7e\xdb\xa1\x9c\xab\xe9\xf3\xeb\xbf\x4a\xf7\xa7\xcb\xaa\x0e\x62\xed\xa4\x75\xc5\xeb\x62\x07\x49\xdd\xb9\x5e\xc1\x2d\x64\xb2\xf6\xc9\x8e\x16\x4a\x92\xb4\xce\x21\x19\x88\x65\xbf\x7b\x3e\x2a\x15\xbe\x57\x7c\xf3\x5b\xea\xe0\x40\x61\xd7\xe1\xb4\xe9\xfd\x01\xd5\x33\xd3\x52\xba\xef\xe6\x38\xa7\x3d\x6c\xf9\x2b\x69\x49\x0f\xbc\xd0\x89\x1d\x48\x7f\x5b\x3e\x2a\x16\x21\xa5\xe6\xef\x08\xce\x22\xcf\xcf\x9c\xb0\xe3\x22\x65\x9e\xec\x83\x43\x21\xb0\x80\xb3\xe8\xc3\x55\xb8\x8b\x3c\xfb\xf1\x00\x9c\x4b\x46\xaf\x25\xc3\x28\xf9\x5e\xcb\x1b\x18\xa3\x58\x97\xb0\x61\x0a\x85\xaf\xb5\x87\xe9\xc0\x19\x96\x01\xa6\x82\x33\x52\x1c\x61\x01\x58\x1b\x76\x04\xd6\x43\x27\xbc\xcf\xc0\x4d\xf0\x04\x07\x35\xfc\x00\x2e\xfd\xef\x3b\x6c\x0d\x8d\x7b\x3c\x1a\x9e\x05\x2d\xba\x9a\x07\xfd\x86\xac\x5b\x96\xc3\xe3\xa0\x99\xc5\x1d\xf0\x38\x68\xbd\x06\x84\xad\x20\x2d\xf3\x13\x6c\x0d\xfd\x49\x2e\x85\x7d\xe1\x83\xc7\xde\xc1\xd1\xb0\xd2\x6b\x18\x56\xc3\x8f\x1d\x0e\xc2\xf5\xc8\x8a\xff\xc6\x42\x4c\x6c\xd4\xa3\xc5\x10\x81\xb6\x5d\xe9\x82\x28\x68\x5a\xf3\x61\x88\x83\x2e\x29\x1e\x0f\x69\x91\xf7\xea\xc7\x50\x05\xf2\x93\x79\x1c\xba\x88\x4e\x4f\x5e\x0b\x8f\x44\xa7\x1e\x4b\x82\xd7\x20\xbf\xbd\x74\x70\x3c\xf2\xc0\xc1\x16\x36\x20\xd5\xef\xa6\x82\x54\xd6\x84\x07\x9b\x40\x0e\x73\xdd\xe5\x4f\xa0\x88\xb1\xa5\x31\x1b\x2c\x26\x42\x0b\x09\xf0\x2a\x5d\x98\x81\x81\xff\xd1\x7e\x31\x5c\xa0\x45\xb4\xe8\x24\x4f\x28\x94\x5a\x1b\x6a\x84\x0a\xf0\x61\x2f\x6b\xe8\x37\x3e\xde\xfe\x27\xbc\x17\x1b\xf7\x26\x08\x50\x88\xb8\x83\x52\x20\x4f\xb8\xb0\x6f\x1b\xd0\xc8\x57\x34\x4c\x06\x06\x78\x4b\x0a\x26\x01\xc3\x9c\x6a\xd5\x7a\xd0\x82\x1d\x4f\xcc\x03\x0f\xb3\x96\x25\x06\x81\xf9\x8c\xda\x90\x61\x68\x0a\xb1\xc6\xb3\x15\x3a\x47\x8b\x70\x18\x09\xf5\xe2\x29\xaf\x00\xca\x8d\x8c\x97\x77\x2b\x28\xcf\x95\xfd\xbd\x04\x30\x5a\xce\xad\x0b\x01\x66\x4a\xcf\xe7\xc7\x02\x8e\xe2\x00\x45\x0b\x70\x5c\x78\x80\x76\x17\x30\xf0\x5d\x13\x22\xc0\x91\x9c\xbf\x21\xbb\xc1\x73\x2c\xb9\xe7\x69\xf0\x1e\x71\xd3\x61\x1a\xe4\x4d\x7d\xfe\x7c\x98\xdc\x93\xff\xe2\xf6\x6e\xf2\xa3\xdc\x9a\x8b\x63\xc9\x5f\xb3\x89\xda\x51\x94\x69\x99\x41\x79\x1e\x14\x27\xed\x62\x59\x17\x25\x41\xf5\x80\xba\x8c\xd2\x2a\x27\xc7\x8f\x06\x1c\xc5\x43\x47\x8f\x00\x7a\xfe\xbf\x1d\xbf\xc0\xc5\xec\x12\x87\xf5\xa0\x8c\x98\xf7\x34\x9c\x3c\xbb\xce\x61\xa0\x81\x6c\x5f\x75\xaf\x33\x93\xbc\xb9\x4c\x57\x55\x4f\x3e\x5a\xb4\x37\xc7\x86\x4c\x35\xdd\x95\xdc\x22\xf7\x18\x77\x63\xc9\x94\xe5\xfa\xe4\xd8\x2c\x8a\x28\xc3\x2f\xf8\x30\x30\x43\xda\xb6\x03\x00\x54\xfc\x1a\x07\x37\x70\x09\xd3\x6b\xc8\x96\xf4\xb6\x77\xc5\x75\x2d\xe9\x69\xe7\xb8\x76\x3a\x69\xa8\xb9\xab\xa2\x88\x3c\xb2\x2e\x2c\x7b\x0d\xd9\xa1\xb2\x41\x3c\x8d\x7c\xbe\xf8\x29\xf2\x8c\x7c\xd1\x64\x3a\x7f\x8a\xb2\xdc\x70\x3d\x88\x4f\x51\x66\x30\x77\xcc\x02\xd6\x8b\xb5\x0e\x9e\xc0\x65\xf6\x8a\xc7\x87\x48\x4d\xd7\x2a\xaf\x75\x92\x1a\xfb\x56\xb6\x99\x49\x0d\x5d\xa4\xf2\x1b\xa4\xdb\x2d\x82\xac\x08\xd2\xbf\xba\x13\xa2\xc3\xe4\x6d\x15\x6f\x10\x4f\xb2\xbc\xf0\xef\xb9\x21\xf2\xab\x1c\xbf\xa0\xbd\x14\x7f\xad\xad\xc7\x30\xe5\x8b\x74\xb7\x43\x20\x20\x67\x77\x3d\xaa\x27\x09\xef\xec\xb9\x66\x47\x12\x5e\x8f\x6b\x1b\x4f\x12\xf6\x85\x96\x3b\x91\xb2\xbb\xc6\x18\x2e\x92\x3a\x9a\x0f\x0b\x7b\x48\xbf\x6b\x0f\xc0\x57\xc9\x07\x4a\x9b\xce\xb1\xc8\x52\xd3\x8e\x20\x07\xf2\x27\xbd\x87\xc7\x0f\x4a\x86\x2c\xdd\x81\x0b\x6c\x67\x7f\x7d\xfd\x0a\x6b\x25\x25\x0d\x72\xb1\x43\xa4\x6f\x7d\x64\xf4\x0f\xf9\x40\x43\x1a\x5a\x43\xce\x28\xe0\xa2\x00\xe5\x7f\xaa\x7a\xd4\x9d\x72\x99\x50\xa0\x13\x81\xec\xc4\x32\x64\x00\x8c\x0a\x3d\x85\x64\x42\xb6\x5e\x16\x08\x00\xbd\x77\x18\x83\x1c\x86\x6b\x5e\x3b\x61\xcb\xc1\xad\xf7\x2e\xa0\xfd\xe0\xa9\x4b\xfd\x28\x09\x4c\xaf\xaf\x45\xb7\x83\xa8\xf9\x12\x3a\x05\x34\xa9\x26\x21\x0f\xa0\xd9\xf4\x8f\x48\x21\xc4\x4d\x74\x45\x24\xd0\xf7\x90\xef\x48\x2c\x7c\xd4\x33\x0f\x39\x06\xb7\xda\xd7\x21\x9b\x10\xbb\x57\xde\x28\x13\xdd\x78\x77\x08\xf5\x40\xfe\xf6\x7e\x44\xbe\x20\x57\xeb\xde\x21\xd7\x91\x34\xf3\x2c\x24\x0b\x09\x57\x9e\x42\x20\x24\x89\x1e\x8e\x04\x23\xfa\x84\x4b\xc8\x5e\xa4\x30\x84\x8d\x6c\x42\xaa\x3d\x03\x91\x35\x48\x93\xbd\x1c\x59\x84\x54\xbf\x08\x40\xb8\xcc\x29\x77\xc6\x22\xbe\x8c\xc3\x3d\x36\xc8\x02\xe2\xcc\x85\x23\xf0\x5b\xba\xd9\x94\x07\xdf\xa4\xfd\x54\x58\xc0\xf5\xb4\x14\x9a\x2f\x5c\x48\x1d\x8e\x1f\x82\x0b\xa8\x81\x47\x5b\xe1\x1a\x3c\x77\xc7\x23\xb8\x11\x7b\x64\x9f\x00\xb7\x62\xa3\x9f\x95\xc1\xd5\xc2\xf0\x5b\x67\xe0\x74\xc1\xcc\x6e\x2a\xec\xc3\x2b\xac\xe9\x86\x17\x73\x0f\xe6\xad\x83\x47\xb2\xff\xca\xfa\xa0\x8f\xac\xcb\xd4\x95\xd0\x7b\xa6\x32\xee\x3b\xf4\x97\xb1\xfb\xa8\x0d\xbc\x80\x7e\x6f\x87\x04\x5e\x43\x73\xb6\x67\xc2\x1e\x78\xfc\x93\x4f\xd0\x33\x55\xe6\x40\x36\x54\xa1\xc8\xeb\x7c\x0a\x09\x65\x58\xb5\x2d\x14\x29\x01\x72\xb2\x20\x4f\x11\x49\x1a\x0d\x6d\x13\x08\xb0\x1f\x90\x37\x4f\x1e\x37\x01\x0a\xe5\xc0\xc1\x18\x04\xb0\xb6\xec\xd8\x07\xe9\x08\xa3\x7d\x0e\x54\x47\x1d\x7a\x1c\x08\x7e\x37\xf9\x5e\x77\x04\xdb\x73\x76\xb4\x1f\x07\x15\x59\xce\x15\xd7\xc1\x73\x7a\xfb\x6c\x0a\xe8\xa7\x99\x2c\x4e\x06\x0f\x2b\x3f\xa0\x7b\xc1\x18\x59\xc9\xf9\x72\x90\x10\x6f\x0f\x52\x81\xa5\x7c\x86\xc7\x13\xf0\x11\xfb\x8c\x7d\x1f\x34\x81\x18\xff\xa0\x11\x3c\x50\x6b\x7b\xa5\x10\x5c\x50\x39\xbd\xe5\x33\xf0\xbe\xe4\x67\x19\x17\x68\x2d\x18\x30\x84\x01\x79\x79\x0c\x21\x03\x28\xcd\x5e\x02\xeb\x80\xcb\x3a\xf2\xb9\x20\xe0\x93\x8a\x38\x92\x09\x2e\x93\xae\xf6\x88\x01\xc3\xf8\x47\xed\x1f\x82\x02\xe6\xf2\x41\x35\x38\xa5\x7b\xe0\xb2\x18\xe8\x6b\x1b\x6e\x7a\x0b\x88\x1a\xdf\x96\x70\x81\x53\xb5\x85\x7a\x0a\xb0\xb7\x62\x03\xff\x32\xe0\x57\xc4\x82\x2c\x80\xf3\x79\xc8\xd9\x25\x00\x2d\x73\x28\xf0\x0e\x50\xac\xba\xe2\x31\x12\xf8\x26\x5e\x61\xff\x0c\xdc\xcc\xfa\x75\xef\x06\xf0\xfe\x8a\x5f\x5f\x2b\x50\xd8\x3b\xba\xc9\x02\x88\xeb\x60\x14\xd7\x00\xae\x4d\x9d\xba\x72\xc0\xaa\xb6\x99\x3f\x0f\xb0\x2e\x27\x81\x08\xe0\x5a\xd0\x72\xc6\x00\xec\x31\xfa\x05\x0a\x81\x33\x9a\xb0\xed\x8f\x81\x5a\x49\x97\xfd\x0f\x70\x24\x5b\x7e\xcf\x13\xb8\x7c\x73\xb0\xcf\x01\x60\x5c\xdd\xd4\x88\x00\x9e\xbd\xc1\xc5\x73\x80\xf1\x1d\xcb\x74\x96\x94\xa7\x8d\x99\x3c\x21\xe5\x7e\xf5\x25\x70\x3a\xe5\x43\x49\xc2\x99\xfd\x94\xaf\x79\x2e\x81\xb1\xc0\xff\x74\x71\xdb\x9f\x01\xc7\xa5\x9f\x1d\xd6\x00\x26\x76\xf7\xc3\x28\xc6\xa3\xf4\xa9\x57\x2b\x18\xff\x4b\xcf\x6b\x2b\x25\x2c\x48\x56\x15\x61\x74\x12\x49\x9a\xbd\x91\x76\x97\xbc\x54\xbc\x9f\x66\x4f\x7e\x87\x2e\xa5\x02\x94\xbe\xf3\x71\x78\x0f\x50\x1d\xe4\x82\xcf\x01\x35\x1e\x0b\xb0\x18\x28\xc3\x0e\x42\x2b\x60\xc3\x03\x23\xe3\x18\xa5\xe9\xca\x5b\x42\x48\xf9\xd7\xfa\x87\x5e\x0a\x38\x97\x6b\xe8\x33\x80\xb0\xac\x64\x1a\x19\xc8\x14\xe9\xa8\xd7\xc1\x25\x08\x97\xba\x1e\x2c\x3b\xf7\x1e\x17\x43\xdb\x8f\xb4\x60\x9f\xa1\xde\xed\x75\x58\x00\x7c\xda\x6e\x3b\x9a\x87\xfc\xef\xfe\x7d\xe2\x11\x2c\xbe\x62\x41\xcc\x87\xc9\xad\x5e\x74\x6f\x38\xb6\xec\x39\x2d\x1b\xde\x67\xe8\xa7\xcd\x82\x7d\x44\x93\xa8\xe9\x30\x19\x99\x88\x3f\x85\xeb\xce\x61\xb8\x1f\xfc\xe1\x48\x18\xd6\x82\x58\x6f\x27\x63\x0e\x48\x98\x9d\x1d\xca\x44\x94\x83\xf6\x74\x23\x11\x7c\x99\x4d\x1f\x41\xbf\xd0\x5c\x46\x5b\x4f\x1f\x5d\x4a\x50\xcb\x68\xe1\x99\x12\xea\x06\x6a\xbf\xe0\x3f\xdc\x4c\x8d\x82\xe7\xe0\x2b\xa8\x63\xce\xe6\x60\x55\x38\x2d\xb0\x14\xdb\x8e\xfd\xdd\x3e\x1f\xad\xc3\x12\xed\x16\xa1\x0e\xe8\xe0\x5d\x94\xf6\x82\xef\xd5\x37\x87\xe6\xc4\x73\x68\x9a\x43\x65\x71\xbe\x15\xff\xc5\xff\xb2\x9b\xf4\xb6\x38\xc4\x92\xf0\xb3\xf1\x11\x4c\x16\xf8\x15\x63\x33\xa0\x33\xdd\xd8\x3c\x22\x34\x70\x3e\x6a\xa4\x5b\xb8\x0f\xa0\xab\xa8\x35\x76\x9b\x10\x23\xee\x7e\xbb\x9c\xb6\x5f\xb1\xb0\x77\x13\x55\x2f\x3b\xda\x90\x84\x7f\x97\xa4\x14\x25\xe0\xc7\x44\x5a\x6d\x05\x76\x43\xd0\xc7\x0b\xc4\xc2\xf9\xb3\x80\x9b\xe8\x17\xae\x6f\xcc\x53\x14\x61\x9f\x3d\x8c\xa3\xd3\x98\xe1\xee\x5c\x24\x93\x98\x6b\xb7\x1f\x59\x42\xcd\xbf\x69\x41\xdd\x9d\x33\xb9\xfb\x29\x9e\x9f\x15\x5e\xf7\x3f\x7c\x9a\xbe\xa0\xc0\x1e\x4b\xd1\x5c\x51\xcb\xd0\xff\x54\xef\x38\x71\x28\xa6\x98\x49\xd9\x80\x5a\x4b\xe7\x9e\xce\x47\x8a\x85\xc3\x87\xaa\x11\x4f\x1e\xcb\xdd\x03\x1e\x64\x35\xd9\x49\xe1\x08\x7a\xeb\xf5\x7a\xfc\x76\x65\x74\x67\x28\xee\x50\x2a\xaa\xb9\x80\xa5\x14\xbe\x30\xbd\x47\xef\x9a\x3e\xab\x10\xd4\xcf\xf8\x92\xc5\x46\x5e\x64\x5e\x25\x09\x11\xb6\x06\x8a\x0e\x45\xac\x15\xaf\x03\x2e\xc1\xb5\xe2\x61\xb7\x4b\x70\x30\x8f\xb0\xcb\x86\x9e\x32\xba\xae\xaa\x70\x51\xbb\xb8\xfd\x04\x76\xa5\xe9\x4f\x95\x0c\x9b\x5b\xe7\x9d\xfb\x17\x25\x57\x1d\x50\xd4\x23\x1f\x4a\x97\x31\xde\x21\xa8\xf9\x5a\xba\x1d\xb2\x24\x67\x45\xd4\x66\xb8\x4c\xf7\xdb\xff\x0f\xbc\x4f\xe9\xe7\x16\x01\x0d\x8b\x56\xd8\x15\x43\x04\x8b\x71\xc5\x88\x27\xf4\x96\xb4\x91\xb1\x82\xce\xe6\xca\x32\xf4\x6d\x8b\x26\x77\x25\x7a\xb0\x7e\xad\x62\x04\xd2\x52\x05\x30\xb6\x23\xfb\x4a\xc4\x69\x62\xf8\x55\xbe\x5b\x64\x2b\x9c\x96\xb5\xc7\xbf\x10\x9e\x96\xd1\xea\xb6\x1d\xaa\x11\x57\xd9\x75\x40\xbe\x6c\x9b\xfe\x21\xfc\xc0\xd5\xe7\xad\xf5\x18\x7e\xa9\xa0\xe2\x17\x5a\xdf\xe5\x94\xc3\x44\x17\xb6\x1c\x97\x27\x20\xb4\x3a\x27\xa2\x19\x99\x50\xd1\x94\x66\x07\xab\x0b\x2f\x47\x26\xc0\xcb\x72\xe6\xfa\x53\xa1\x2a\x4d\x93\xdb\x76\x28\x5c\x72\xd7\xee\x1b\xf8\x89\x7d\xe4\xfa\x16\x7e\x4f\x9a\x75\xe7\x11\x5e\x70\x5a\x49\xcd\x20\xe7\x5f\xba\x53\xfe\x19\xf6\xbd\xf4\xd6\x0c\x3b\x56\x1d\xe9\x0c\xdb\x83\x29\x20\xbb\x91\x1d\x19\x27\x29\xab\xa2\x45\x84\x13\xb0\x24\x80\xa0\xfd\x04\xad\xb6\xb5\x53\xeb\xa0\xdd\xb6\x95\xf8\x69\x98\x7a\x8d\xcf\x5f\x47\xd6\x75\x64\x71\x1f\x91\x9f\xd5\xac\xe0\x68\x28\xcb\x4c\xcd\x6c\x90\x72\x5e\xc5\x62\x9d\xa4\xf4\xb2\x4a\x99\x5e\x40\x20\xa9\x90\xb1\x14\xf8\x16\xbd\x84\x18\x0d\x2a\x03\xac\x69\x83\x90\xdb\xb6\x74\x6a\x1e\x3c\xd1\x96\x8a\x9f\x80\x1f\x5c\xbd\xc7\xd3\x40\x3b\xda\x5f\x70\x4f\x43\xee\xd5\x67\x39\x5b\xa0\xad\xa6\xff\xb1\x2d\xa0\x0d\xca\x57\xac\xf1\xd0\x01\x96\x35\xe3\x03\x24\x21\xad\x26\xee\x40\xaf\xa3\x6a\xe9\x9d\xb0\xab\xff\x25\x5a\x01\x4c\x6c\xf3\xa6\x22\xf0\x67\xdb\x74\x7c\x07\x12\x71\xc5\x93\x4b\xa3\x11\x6d\x27\x39\xb1\xb4\x31\x95\xbf\xd9\x81\xd4\xd4\xdc\x4a\xd6\x01\xfc\xa7\xc2\xcc\xf4\xc5\x79\xcc\x51\x0c\x0f\x7c\x57\xfa\x26\xc2\x05\x9f\x18\xf9\x92\xbe\x09\x2b\xf1\x5f\x4b\x5b\x8b\xf9\x6d\xfd\x4e\x9d\x85\xfe\xb2\x85\xb0\x47\xa8\xee\x72\x26\xa7\x90\x7b\xb0\xe5\x05\x3b\x8b\xb3\xb7\x82\xcd\xd2\xb0\x37\xe5\x1c\x61\x4a\x59\x76\xf2\x68\x86\x94\x69\x4b\x3c\x20\x14\x8c\x9d\x69\x5b\xe9\x6a\x22\x2a\xd2\x92\xa6\xa1\x9f\xf1\x33\x53\x15\xb4\xd0\xad\x6d\x38\x4e\xdd\x60\x9b\x83\x1d\xc2\xfe\xf4\x8d\xe1\x4c\x96\xd6\x37\x1f\x64\xfd\x93\x58\x97\xcf\x66\xfe\x10\x91\xb3\x3f\x31\xde\x0a\x2e\xc9\x16\x13\x6f\xf9\x2b\xe8\x15\xf4\x1f\x5c\x43\xea\x56\xfa\x04\xce\x8c\x53\x7b\x69\x13\x58\x21\x7e\xb6\xd4\xb1\x0c\xf6\x56\x1e\xf6\x95\x8e\xd9\xf6\xa0\x7d\xd4\xf0\x1e\x8c\xed\x96\x35\xbb\xe1\x27\x6b\x95\x5e\x5b\x72\x91\x69\xaf\xb5\x30\xf4\x32\xe6\x67\x60\x92\x65\xc4\x1c\xc5\x03\xea\x07\xfa\x0a\x99\x57\x72\x2d\x6d\xab\x98\x73\xd2\x9e\xea\x21\xd0\x1e\x3c\x8e\x7b\x70\x49\x5b\x37\x62\x9b\x58\xe3\x6c\x7f\xa1\x33\xe8\x51\xdd\x7b\x58\x65\xa5\xaa\xba\x7c\xa6\xb9\x68\x75\x11\x83\x61\xcc\x2f\xd3\x9b\x09\x4e\xee\x5c\xd1\x6a\x3a\x96\x15\x8a\xdb\xd1\x64\x3a\x71\xd2\x1a\x6a\x71\x86\xe4\xc4\x4f\xbc\x4a\xee\x73\x80\x85\xd5\x88\x4c\x5b\xae\xa3\x25\xdc\xac\x15\x73\x10\x06\xe3\x50\xe7\x6c\x16\xab\x79\x5c\xad\x92\x19\x5d\x77\xbd\x00\x61\x1c\xa8\x4e\xd4\x76\x10\x9b\xca\x6e\x0a\xce\xd0\x57\x16\x8d\x45\xd9\xb4\x8d\xa6\x29\x09\xdd\xd4\x3d\x59\x2d\xe1\x37\xf0\x83\x9a\x1f\xfb\x2b\x30\x7f\x79\xc3\x96\x28\x74\xaf\x70\xc6\x8a\x25\xc8\x32\xe6\xbf\x0e\x17\x56\x74\xe7\xb3\x9a\x3a\xe6\xae\x56\x5f\x73\x0e\xc3\xb1\x01\xd6\x7c\x21\x66\xd5\xc4\xf2\xf3\xe8\xa3\xcb\xe7\x21\xf7\x68\x13\x0a\xb9\x09\x6b\xa9\x73\x72\xb5\xe1\xa1\xf8\xbc\xcc\xc5\xfb\xc3\xb1\xf9\xaa\xa9\x5b\x3c\xd1\xe9\x22\xfe\x8a\x8d\xf0\x33\x96\xb4\x9d\xca\xda\x71\xe9\x55\xcd\x78\xe6\x92\xae\xbf\xf9\x9f\x19\x23\x5a\x07\x34\xfb\xe8\x4f\x1b\x42\xf9\xd3\x69\x7d\xd5\x22\xe4\x10\xb5\xab\x14\x8b\x6f\xc2\x2f\xe5\xff\x09\x1f\x8b\x5d\xcc\x6a\xdb\xbf\x06\xed\xc8\xf8\xb2\xc5\x0d\xa9\x15\x9b\x56\x44\xc3\x6c\xd6\x95\x8e\xef\x72\xcb\xd4\xad\xb5\x03\xd2\xe0\xd4\x97\x85\xe1\x62\x2c\x8d\xaa\xbb\x21\xbc\x9e\xee\x20\x64\x0a\xec\xd2\x9f\x60\x25\xbc\x24\x52\x4b\x62\x2b\xa7\x92\x5c\x77\x22\x90\xf5\x85\x52\xb5\x9f\xc1\x5c\x0a\x34\x6e\xde\x48\x6c\x85\x26\x2e\x6b\xa7\xb9\xc0\x67\x3a\xd6\xcb\x8a\x48\xbc\xda\xf9\x92\x2f\xa4\xb7\x05\x85\x62\x07\xf2\x7e\x9d\x93\x10\x25\x17\x0b\x3e\xf2\xef\x52\x96\x60\x8e\xbc\x75\x94\xba\xc4\x7d\x1c\x18\x88\x09\x7f\xc3\xea\x03\xe7\xed\x5f\xcf\x9c\x00\xf6\x6f\x1e\x41\x38\x40\xb5\xcb\xca\x68\xab\xe1\xea\xf6\x08\x99\x27\x38\xae\x26\x40\x22\x02\xe7\x98\x3f\x8b\xae\x80\x6e\x5a\xae\x70\x35\xe8\x2f\x08\xe3\xb3\x41\x18\x35\x72\x5f\x81\xb7\x12\x6e\x71\xdc\x21\x8f\x70\x0e\x4b\x06\x65\xef\x7b\xcd\x18\x84\x27\xbb\xde\x23\xc6\xc2\xca\x65\x85\xb4\x99\xc8\x86\xb6\x11\xd2\x68\xfc\x41\xd5\x77\x71\x0f\x4e\xcb\x2f\x14\xcd\xc5\xe7\x6a\x0e\x08\x40\xac\x9e\xef\xca\x7b\x85\x25\x23\x19\xdc\xfd\xd8\x9e\xf8\x4f\xec\x42\x6c\xd5\xf1\xcb\xac\x59\xe8\xd7\x7d\x51\x8c\x53\x68\xbd\xab\x86\xae\x42\x85\xcb\x2a\xa9\x25\xe8\xc9\x96\x52\x89\x96\x1d\x51\x79\x57\xf4\x9a\xc5\x30\xc5\x0a\x7d\x99\x1a\xb5\x0d\xbf\x81\x51\xc6\x5b\xca\x5b\x4f\xdc\x84\x33\x39\x46\xc2\x22\x7e\x11\x7b\x16\xfd\xf4\xf1\x45\xcc\x74\x1a\xdf\xf7\x27\xd1\x4f\x2d\x70\x45\xe9\x93\xf0\x86\x65\x9f\xa8\x4b\xb1\xb6\xe6\x6d\xe2\x6a\x71\x6a\x85\x9f\x68\x95\x68\x46\x9e\x9d\x40\x22\xc8\x50\xbd\xe1\x4f\xe6\xcf\xe1\x8e\xe5\xd2\xb9\x4a\x48\xcf\x19\xc3\xf1\x8e\x73\x67\x81\xac\x57\x61\xc7\x19\xf7\x99\xa1\xbe\x2c\x62\x23\xd1\xea\x1a\x41\x8b\xa3\xfd\x5a\xee\x82\xd3\xa8\x56\x8d\xe3\x45\xc3\xba\x7f\x65\x01\xc2\x08\xcd\x1d\xe3\x3f\xfe\xbd\x0c\xad\xe2\x3f\xde\x2e\xa5\x07\x7b\x2b\xa7\x56\x76\x17\x1c\xcb\xde\x22\x41\xce\x3f\x66\xd6\x88\x26\x1f\x3b\xc9\xb0\xe0\x07\xee\xbd\x41\x4f\xe1\xa4\xb8\x2e\xa0\x96\x30\x03\x97\x47\x63\xed\xf4\x19\x75\x39\x22\x61\xe1\xf5\xe2\x0f\xc2\x11\xf9\xc6\xac\x41\x7e\x4c\x2e\x24\xfb\xc8\xbd\x98\xed\xc2\x8c\xe5\xac\xd1\xf7\x53\x22\x58\xa5\x9a\x43\xe7\x52\x99\x6b\x94\x79\xa1\x07\x09\x99\x34\x6f\xef\x24\xda\x3b\x61\xe8\xa6\x0b\x54\x7b\x4e\xfd\x72\x12\xb6\x85\x78\x58\xdb\x2a\x3a\x55\x87\x14\xad\x12\xd4\x56\x6b\x33\xff\xf2\xe7\x97\x0b\xa5\x96\x5c\x4a\xf1\x3e\xa2\x8c\xfd\x28\xff\x26\xa9\x9f\x75\x24\xc7\xf5\xec\x02\xc6\xa5\xcc\xfd\x21\xeb\x08\xe7\x8c\xb7\x7b\x36\xd1\x38\x32\xeb\x4d\xfb\xf1\x56\xfe\x97\xe5\x74\xf4\x32\x33\xae\xe6\x8d\x68\x4f\xcb\xcf\xc2\xe3\x02\x4d\x43\x43\xe6\x6a\xde\xf7\xda\xbd\x92\x00\x6e\x50\x85\x84\xfe\x1f\xbb\xae\x58\x4d\xb2\x62\x39\xe4\x27\x9e\xc1\x18\x8a\xec\xb7\x47\x6b\xe8\x7f\xb4\xf7\x7c\x86\x68\x87\x14\xfb\x37\xad\xc0\xe9\xc2\x90\xe5\x32\x94\xcf\xfc\x5d\xb3\x59\xb4\xba\x2b\xab\xa0\x44\x00\xb4\x59\xe8\xa9\xbc\x2b\x8d\x47\xc4\x66\xee\xaa\xda\x4d\x74\x7f\x36\xb3\xfc\x6a\xba\x98\xf9\xae\xc8\xee\xcc\x54\x86\x5f\xde\xac\xa3\x61\xf4\xb2\xcc\x10\x1f\x13\x6d\x9c\x6a\xe1\xa6\xc5\xf8\x5a\x51\xcc\xf2\x66\x74\x3d\x6b\x5b\xe9\xa5\x2c\x72\xca\x50\xee\x24\x7d\x57\x2a\x9c\x21\xd1\x3a\xa7\x4d\xe4\x9f\xce\x28\x4a\x2b\xc5\xc4\xca\xe5\xe9\xc9\x29\x7b\x65\x02\x52\x50\xf4\x4c\xf1\x13\x72\xc8\x11\x81\x70\x16\x25\x65\xe7\x43\x9e\x05\xa0\x77\xfe\xc4\x9e\x04\x8d\xb2\x99\x4b\x74\xc3\x50\xe9\xce\xac\xd1\xe9\x2f\x72\x70\x7d\x04\xc9\x3b\x63\x86\xe6\x1e\x49\xcc\xfb\x94\x11\x4e\xfa\x87\x2d\x57\x3c\x24\xe3\xc9\x2f\x65\x01\x14\xbb\xa8\x7a\x71\x31\xe5\xe5\x91\x9d\x82\x37\x40\xf5\xce\x3c\xde\x48\x50\xec\x7c\x8d\xf5\x15\xca\xb0\x99\x4a\x34\xc0\xf5\x25\xa5\x06\x15\x30\xc7\xf8\x59\xf7\x0f\x58\xa7\xa2\x6b\x50\xc0\x8b\x97\x98\x31\x15\x38\x8f\x56\x28\xc4\x40\x65\x32\x26\xfb\x1f\x68\x15\x75\x4a\x1c\x0f\xea\x03\xff\x09\xaa\xa0\xe5\x3b\x53\xb8\x03\x50\x99\xf3\x05\xd6\x15\x38\xd2\x66\x36\xa1\x46\xec\x8a\x8b\x33\x4b\xb0\xf0\xec\xf7\x3a\x67\x6c\xae\x12\x57\x5f\x41\xeb\xb9\x24\x55\x14\x0a\x21\x57\xe4\xc3\xe8\xa1\xa4\x6a\x69\x32\xea\x13\x59\x23\xba\x8f\x1e\x08\x4c\x13\xac\x45\x77\xec\xb4\xe2\x1e\x45\x9d\x9d\xb3\x58\xc7\x51\x37\x1b\x77\x62\x2d\xba\xab\x28\x48\xff\x89\x69\x99\x55\xab\x45\x18\xf1\x8a\x64\xb5\x15\x51\xce\x81\x94\xb5\xf4\x5f\xf0\x7b\xf9\x5e\xfa\xc1\xc4\xb7\x92\x01\x5a\x47\xe4\x64\xd1\x1e\xda\xf6\xc3\xef\xf9\x19\x54\xad\x77\x2f\xa7\x0b\xff\xe8\x2c\x60\x5e\xc1\xbd\x6d\xc8\xf4\x4c\x4c\x50\xf0\x43\x7f\x52\x10\x6b\xc0\x34\x4f\xf9\xbe\xf2\x90\x0c\x90\x37\x93\x4d\x52\xce\xe3\xdc\x84\x47\xc9\xcc\x6c\x7d\xe2\x7c\xc9\x56\x16\x71\x2a\x48\x58\xcd\x3c\x7b\xf8\x04\x7f\x34\x63\xb9\x37\x99\xb3\x92\x7e\xc9\x99\xc9\x5c\x4b\x0b\xb1\xe9\xa0\xfd\xc5\x07\xcd\x7b\x75\xb5\x19\xc3\xfa\x1e\xcd\x3a\x95\x8d\xd4\xa0\xea\x54\x38\x33\xef\x2b\x02\x65\x36\x20\x47\x3a\x24\x99\x1c\xdf\x2b\x4e\x16\x8d\x3d\xe9\x2e\xf8\xc4\x7f\x73\x48\xcc\x73\xe7\x4a\xbd\x3e\xb1\x4f\xb3\xe7\x39\x9f\x60\xc4\x30\x12\x96\x8e\xa7\x39\xd1\x0a\x4d\x5b\x75\x8e\x79\x3a\xed\x53\x75\x95\xf1\x89\xf8\xa9\x2a\x20\x6b\x16\x63\xa3\xfc\x96\x7e\x1e\x30\x49\x1a\xa4\x99\x1c\x17\x27\x7a\xa5\xfc\x1b\x31\x47\x10\x2d\xbb\x18\x50\xc4\x2d\x17\x7b\x7b\xf9\xb1\x06\xf9\x88\xb3\x35\x71\x8b\x8d\x2f\x5d\x49\x55\x13\x7b\x73\xd5\xba\xe9\x95\xf6\x9a\x8d\x6a\xb0\x34\x4b\xb4\x52\x35\xba\xf0\x2b\x5d\x2e\x27\xf2\xad\xc9\x0c\xe9\xa8\x9c\x25\xb1\x33\x45\x4c\xc3\xf8\xf0\x57\xfc\x7f\x9a\x02\xff\x0b\x5c\x1f\xc5\x0b\xcf\x2c\x56\x9c\xf8\xa2\x53\x1f\x11\xc3\x3b\xb5\xd4\x8b\x6a\xcb\x28\xc9\xf9\xac\x7d\x7f\xe1\x97\x1a\x54\x47\x54\xaf\x10\x46\x29\x9f\x94\x5b\xd2\x1e\xca\x4f\x15\x3d\x21\x0d\x4a\xee\xe6\x27\x9c\x4f\x13\x1d\x35\xde\x0c\x8f\xe2\x5f\xd4\xbf\xf5\xf7\xe3\x4e\xcb\x60\x79\x1e\x65\x39\x4b\x9b\x9c\x4a\x08\x07\x7e\xde\xd2\xa3\xf8\x13\xa6\x4b\x4e\x94\xb6\xa7\x79\x72\xc6\x23\xb5\x7b\xdd\x37\x41\xa3\xb2\xae\x3a\x9b\xe6\x21\xdf\x58\x3e\x93\x74\x40\x62\x2c\x72\x3b\xf7\x5b\xb4\xc8\xb4\x3a\x7c\x04\x1f\xcd\x6a\xf1\x1f\xcd\x69\xd5\xf4\x7a\x3a\x32\x87\xe4\xc7\x9d\xcc\xf4\x6b\x02\xed\x52\x2a\x4e\x30\x49\x9a\xf4\x12\x75\xea\x0a\x71\x7d\xa1\x57\x6a\x1d\x33\xc1\xf4\x5f\x9a\x27\xa4\xcf\x01\xd3\x9e\x27\xed\x31\xfc\x4a\x2f\x88\xd6\xeb\x22\x49\xfc\x10\xa7\x0c\x23\x59\xbe\xaf\x46\xae\xa2\x5c\x74\xf7\x16\x07\x80\xd3\xd6\xdc\xe3\x0d\x41\xa0\x55\x25\x6b\x1d\xfc\x47\xb3\xa8\x64\x6d\xfa\x2d\x71\x44\xc1\x43\xd2\x1a\xa6\x8d\x49\x48\x62\x43\x41\x39\x2b\x49\xdf\x92\xc6\x19\x2a\xc9\xb4\xe8\x93\x3a\x5b\xca\xba\xa3\xff\x32\xce\x53\xfe\xec\xe3\xc8\xe3\x80\x67\xee\x76\x62\x67\xf0\xe1\x9a\xcb\xbc\x3e\xe8\x97\x55\x13\xcb\x1a\x59\xae\xae\x2e\x6e\xa7\x98\xc5\xa3\x0a\xc8\x94\x1e\x46\xaf\x69\x2d\xe5\x27\x34\xde\x78\x13\x58\x97\xd8\x68\x38\x0d\x30\xa3\x6d\xb4\x0f\x80\x7f\x47\x2f\x66\x38\x80\xc2\x7d\x27\xe4\x1b\xa0\x75\xee\xff\x13\x8f\x81\x1e\xac\xe9\xe2\x65\xc3\x66\xab\x1b\xcc\x1f\x08\x9c\xf1\xb4\x78\x14\xca\x11\x79\x9a\x1b\xd0\x40\xc6\xc2\x3c\x08\x9d\x04\x86\x19\x57\x22\x0f\x12\x57\x64\xb6\x21\x3d\x51\x5a\xed\x36\xe4\xf6\xd1\x63\x2a\x1e\xf2\x73\xdf\x0c\x59\x2e\x3a\xcd\xed\xbe\x08\x45\x97\xaf\xe9\xe4\x39\xa0\xc1\xd6\xd3\x98\x38\x4a\x57\xfd\x2a\xf2\x25\x32\x85\xa7\xcd\x53\x89\x99\xc4\xae\xdc\x7b\xf4\xb3\x40\x66\x36\x83\x76\x2f\x01\xcf\xb4\xa4\x05\x45\x4d\xd6\xe8\xa8\x9f\x82\x1f\x2b\xbf\x52\xe5\xbe\xf5\xb2\xc9\x54\x1b\xb7\x32\xe1\x10\x6e\x5c\x73\x9d\xcb\xc1\x37\x58\x87\x32\x9e\x62\xd5\xca\x97\x85\x0d\xbc\xf5\x82\x98\xfc\x74\xae\x37\xfd\x4c\xae\x17\x67\x29\xe5\x6e\xd6\x1b\xf6\xb2\xf8\x01\x3d\xcc\x72\x8c\x8c\xd7\x8c\x66\x7a\x07\x87\x2b\xc3\x18\x27\x7d\x4f\x4a\xcf\x12\xc1\x6e\x4c\xa1\x1b\x7d\xeb\x9a\x77\x9c\x47\xb4\x79\xd6\x05\x8c\x8d\xf8\x90\xa2\xad\xe0\xa5\xc2\xcc\xf7\x34\x95\xc8\xc7\xd1\x5c\x72\x10\xa9\x3f\xb9\x3c\xcb\x52\x0c\xc5\x75\xea\xf2\x85\x45\xa7\x30\xf5\x6a\xfe\x97\x20\x8d\x82\xcd\x5b\xbd\xf7\x86\x44\xc9\x59\xe7\xb6\x59\x70\x8e\x35\x7d\xcd\x2b\xce\xa4\xff\x13\x00\x1f\x00\x31\x2e\x0e\x00\xc0\xcd\x67\x3c\x0f\x7f\xe3\x59\x0d\x21\x15\x21\x29\x23\x95\x06\xa5\x44\x2a\xa5\x52\x69\xa1\xbd\x6e\x7e\xfb\xbb\xef\xf6\xde\xd7\x5d\x57\x77\xed\xbd\xf7\xde\x91\x6c\xb2\xe7\xf3\xec\xfd\x8c\x6c\xfe\x3f\xee\x2d\x8b\x79\xdc\x30\x36\x3f\xdb\xb7\x1a\x29\x5e\x2e\xbe\x59\xb1\xbe\x80\xc1\xfc\x54\xf2\xd5\xb8\x1c\x40\x0a\xc5\xb9\x47\xd3\x4a\x8d\xf3\x74\x45\x71\x0c\xbd\x52\xf3\xeb\xf0\x48\xf6\x5b\x95\xd3\xbe\x8d\xca\x9f\x72\x5b\x97\x4b\xd2\xcb\xe2\xe7\x9b\xae\x09\x4f\x08\x58\x16\x01\x9c\x7a\xce\x7b\xf5\xa7\x6a\xf3\xba\xad\x22\xa8\xfc\x76\xf5\x64\x02\x2a\xd1\x96\xb7\xd0\xad\x0b\xad\x4b\x5c\x53\xc9\x86\xa2\x82\xda\xd8\x74\xbd\x99\xe1\x7f\x21\xf7\xb2\x29\x39\xee\xbe\x54\x25\xa6\x59\xe2\x12\x2c\x3d\x28\x2f\xd8\x54\x2e\x78\x26\xfa\x65\x01\x73\x36\xf1\x56\xaa\xd7\x57\x4f\x6e\x0e\x15\x0e\x97\x77\xd4\xdf\x63\x9c\x29\x49\xaf\xd9\x4e\x13\x17\xfc\xa8\x48\x4d\x79\x6e\x48\x2f\x81\x62\x3e\xe5\x3c\x2e\x48\x08\xa1\x67\x6f\xcb\x5b\xec\x6b\xad\x74\xd1\xc6\xb8\xac\x91\xfe\xa9\x0c\xd9\x64\x14\x14\x48\x16\x5a\x68\xd8\xcf\x78\x32\x15\xb9\xea\x7e\xfb\xb0\xd0\xb4\x5c\xd6\x32\x8f\xb1\xa5\xc4\xa5\x61\x2d\x6d\x46\xc1\x60\xcd\xe2\x14\xba\x61\x63\xf9\xb9\x18\x55\x4e\x5e\x71\x60\xc8\x3a\xcd\x33\x23\xdf\xe7\x9d\xe2\x59\xce\x21\x97\x69\x92\x46\x55\xd7\xa6\x72\xc1\x6e\xc9\x33\x8b\x7e\xb6\x80\x77\x52\x20\xec\x9d\x4a\x3b\xce\x78\xd6\x71\x92\x76\x99\xde\xdb\xa2\xa4\xef\x48\x5f\xd6\xe0\x43\x1f\x39\xb6\xaa\xfa\x3a\x80\x86\x3f\x2b\x77\x01\x63\x0f\x9a\x17\x45\x43\x19\xbb\x21\xc3\x1a\xb8\x72\xfb\x66\x6d\x1e\xf2\x7d\xbd\x97\xa2\x11\x3b\x64\xfa\x48\x94\x84\x77\x09\x82\x7a\x94\xc0\x18\xa3\xbd\x23\x06\x9c\x43\x57\xb7\x6c\x03\xf7\xa6\x7d\xac\x9f\x00\x0b\x8e\x4d\xaa\x16\x43\x6b\xc2\x4f\x97\x7d\x81\xae\x1c\xfc\xa3\xc8\x02\x2e\xdf\x9d\x94\xf7\x1f\x62\xdc\xbe\x46\x4b\x45\x4b\xd6\xfb\x29\x14\x58\x93\xe9\x57\x51\x00\x7e\x56\xb0\xb8\x67\x0d\x1c\xc0\x60\xb4\x7f\x83\x93\xe8\x71\xcd\x37\x60\x24\xed\x54\xbd\x11\x2e\x89\xbf\x59\xed\x04\x4f\x84\x97\x95\x55\x20\x59\xfe\x2f\x0b\xaf\xa2\xf3\x76\x1f\xce\x6b\x40\x07\xb7\xaf\xd0\xba\x60\xc4\xfa\x20\xc5\x51\x7c\xaf\xd9\x12\xd1\x1a\xc6\xdf\xfc\xcc\xee\x78\x46\x1d\xfe\xb1\xdd\x8d\x11\x4d\x7b\xd1\x6c\xc1\x98\x93\x16\x53\xf7\x12\xbf\x17\xcf\xaa\x12\xe0\xe3\xe1\x47\x4b\xbf\xe2\x6f\xfc\x9b\x0b\xad\x19\xab\x76\xef\xcc\x5b\xcc\x08\xd9\x3e\x37\xbb\x82\x21\x58\x9f\x21\xbf\xc4\x38\x65\x16\x2d\xcc\x21\x26\xf3\x3e\x75\xf1\xb9\x0e\x38\xa9\x8d\xc2\xc9\xa1\xc5\x36\xc5\xb0\x7f\xa6\x7e\xaa\xb3\x63\x93\xe3\xed\x2a\xc7\xd9\x53\xc3\x17\x97\x7a\xb3\x6a\xfd\x81\x02\x90\x95\xbc\xfb\xef\xdc\x78\x96\xd9\xf6\x19\x9a\xcf\xcc\xb1\xf5\x72\xf9\x2a\x26\xd5\xac\x49\xf0\x82\xb9\x84\x97\xd5\x79\x59\x6c\x8b\xdd\x6f\xed\x15\x39\x50\xcf\x37\x56\x0a\xed\x52\xf1\x5a\x48\xb0\x27\xee\x4a\xe5\x2a\xfe\x89\xb0\xe1\x12\x35\x4f\xe7\xbf\x23\x7f\x8c\x7b\xd5\xf3\xad\xbe\x96\xf3\x73\xfb\x24\x8d\x0b\x67\xe9\xfa\x36\xd9\x71\xf6\x5a\xf3\x3f\x05\xb6\xac\x55\xdc\xaa\xce\xd9\x9a\x7c\x6c\x45\xcb\x63\xd5\x77\xea\x9c\x86\x93\xca\xe0\x94\x8e\x1a\xb1\xbc\x36\x6e\x49\xc5\x7a\xd9\xc2\xb0\x35\xc5\x06\x09\xf7\x40\xbf\xf1\xb2\x68\xc2\xb3\x24\xa7\x5d\xe8\xb1\xed\xad\xda\x97\x9f\xb5\xfe\x85\x34\x8b\xab\x35\x17\xf3\xb7\xb0\x8d\x9c\x9a\x8e\x6d\xf9\xe9\xa8\x5d\xcb\x46\xc3\x66\xca\xd6\x86\x95\xfa\x17\xc9\x77\xab\xaf\xeb\xc8\xb1\x7b\xca\x93\xb3\x67\x86\xa6\x17\xdd\x55\x95\x1f\xd8\x64\x5c\xa0\x70\xf0\xf4\xd0\x7d\x95\x0a\xb6\x8d\xa8\x24\xa2\x16\xdb\x49\x92\x66\xfe\x35\xf3\x17\x3c\x1a\xe7\x22\xbb\xa8\xbd\xad\xe2\x35\xe2\xd0\xdc\x50\xb6\x91\xec\x5a\x9f\x57\xbc\x3b\xe9\x4b\xf5\x81\x02\xd3\x18\x72\xd9\xcd\xbc\x97\x87\xbb\x8a\xf6\xe6\x34\xef\xcf\x37\x40\xd9\xa1\x1e\x77\x74\x51\xca\xa6\x6d\x2a\xe5\x7b\xe9\xb8\xed\x1f\x12\x73\xe1\xdd\x95\x1b\xb8\x4f\xb9\x03\x6c\xeb\x76\x7a\xad\x0e\xee\x68\x26\x57\x91\x49\xa3\xf5\x31\xe5\xd6\x49\xd2\xea\x79\xc5\xf5\x31\x8b\xca\x14\x05\xab\x0f\x27\x15\xfe\xca\xe3\xec\x8f\x35\xd8\xe9\xba\x3c\x1a\x75\x73\xd5\xb9\xdb\x98\xca\x02\xb9\x8b\xed\x5f\xe2\x8b\xa2\xee\x95\x07\xb8\xb9\xbc\x05\xac\xf6\x76\x87\x46\x2d\x7c\xa0\xd9\xbe\xce\x84\x14\x57\x6f\x5a\x85\x24\x39\x56\x0d\x95\x0d\x47\x8f\x96\xed\x2a\x7a\x76\x78\x63\x61\xa9\xf1\xe3\xfe\xed\x79\xe3\xfa\x93\x1e\x39\xda\xda\xec\x1d\xdb\xd8\x4a\x57\x45\x9c\xad\xa5\x38\x4d\x7c\x6c\x25\xc2\x75\xe2\xd9\x11\xf4\xa1\xa7\xf4\x00\xd0\xac\x2f\x9d\x5e\x94\x19\xd6\xf9\x9e\xfe\x31\x61\x75\xab\x3f\x90\x18\x35\xdc\x40\x01\x17\x04\xaf\xad\x3e\x0e\xbe\xde\xb7\xac\x6c\x06\xf4\xc9\x6d\x7f\x81\x13\x62\xe3\xf0\x5b\x6f\x81\xd2\x6c\xf6\xa9\x10\xac\xcb\xd4\x43\x9c\xca\x98\x43\x84\x0f\x21\xa0\x11\x9c\xd6\x37\x07\x3c\x99\xe9\xd1\xa9\x02\x5f\x25\xcc\x6b\xf9\x0a\xd9\x45\xd5\x37\xac\x85\x8a\x82\x17\x57\x9b\xc0\x3e\xfb\xe6\x94\x0e\x22\xcb\xdc\x7c\x0a\xa6\xa0\x73\x1c\x7e\xe6\x7c\xc0\x16\xd8\x84\xab\x82\xf1\xb9\xa6\xe1\xe2\x40\xc6\xdf\x84\xc3\xd0\x22\x64\x2e\xf0\x6f\x6f\x29\x32\x37\x73\x4d\xa7\x3d\x32\xe7\xc4\x87\x16\x03\x62\x12\xa5\xab\xbf\x80\x1c\x0d\x9e\x5c\x35\x8a\x8c\xfb\xfe\x2c\xcd\x44\x53\xdd\x3c\xf2\xbb\x30\x73\x87\x9f\x39\x4d\xd8\x3f\x36\xc7\x55\xa6\xb8\xd6\x14\x14\x9b\x31\x42\x19\x1d\x83\x81\xc4\x0a\x80\xd2\xf3\x9c\xd1\x9d\x31\xd4\x41\x63\x44\x9e\xa8\x6b\x7e\xc0\x58\x13\x15\x5f\xbf\x90\xb1\xe0\xd0\xd5\xaa\x39\x0c\x6b\xdf\x7b\x25\xad\x8c\x23\x6e\xae\xf9\x0b\x19\x72\xc7\xc9\x39\xff\x63\x9c\xb7\x11\x29\x09\x62\xaa\xe9\xb0\x48\x40\xec\x60\x9c\x18\x48\xe5\x1e\x07\x96\xf6\xfc\xc5\x19\xca\x88\x6a\x2f\xe2\x98\x9e\x48\x69\x5e\xcc\x16\x45\x6d\xab\x0b\x60\x2f\x3b\x54\x5b\xe9\xc7\x1a\xf0\x1d\x28\xfe\xca\xc2\xdc\x36\x1a\x83\x59\x4e\x8e\x53\x75\x87\x98\xff\xd9\x34\x29\x4e\x31\x8d\x66\x8b\x85\xe7\x99\x7b\xf0\x17\xfd\xa5\x62\x33\x7a\x71\xf7\x6e\xd1\x8a\xf4\x77\x6d\x57\x85\x4b\x4e\x98\x36\xf9\x09\xac\xa2\xa6\xd4\xca\xf8\xfb\x0e\x31\x2a\x84\x3c\xc4\xb7\xa0\x78\x07\xb7\xc7\xcd\xc4\xa0\xe0\x7c\x70\xfc\x43\x2b\xe3\x98\xd8\xdc\x56\x4c\x65\xef\x30\x4b\x11\xce\x64\xed\xc6\x69\x7d\x7d\xea\x5f\xf4\xd5\x5d\xc1\xaa\x98\xf4\x84\xd6\xbb\x8a\xc1\xe3\xfc\xc6\xbd\xf2\x95\x91\x69\x35\x0c\xa9\xf2\xd0\xcc\x72\x48\x32\xdf\xd7\xb7\x68\x9d\x48\xb2\xeb\x7d\x1e\x57\xf0\xd1\x71\x69\x36\x87\xef\xbe\x6e\xad\xec\x27\x97\x67\xf6\x55\x30\x89\x5d\x8f\x15\xf5\xbe\x32\x7a\xd2\x52\x3b\x45\x79\x7f\xa4\x9d\x69\x5d\x9e\xd3\x7f\xec\x76\x03\x4d\x1b\x19\x31\x52\x5d\xa6\x99\x13\x04\x94\x15\x2a\xfb\x7d\xee\x16\x06\xca\x13\x76\xd5\xe5\x36\x4a\x9e\x38\x4e\xd3\xb4\x8b\x9c\xd7\xed\x93\xd9\xf3\x15\xe6\x91\xfc\x9d\x9c\xd3\xe8\xbd\xde\x7d\xe5\xcb\xa9\xb5\x1d\xff\x95\x84\xa6\xfd\xdd\x82\x14\xa2\xc7\xec\xea\xc7\x8d\xa9\x11\x6b\xab\xbe\xe7\x46\x04\x7e\x2a\x9d\xd0\xf9\xfa\xc0\x05\xe5\x1a\x93\x5d\xa4\xdc\x69\x8a\x5a\xc7\x49\x9a\x59\xd2\x79\xeb\x52\xa5\x12\x61\xac\x79\x15\xaf\x88\x9b\x83\x32\x7b\xa7\x57\x27\x50\x0f\x77\x54\x54\xec\x4d\x1d\x69\x71\x2c\x9d\x1f\xff\xa0\x9e\x53\x58\x7b\xe4\x5e\x55\x99\xd1\x3b\xb0\xab\x34\x5f\x7f\xcb\x27\xa8\x20\x48\xeb\xb5\x2b\x5c\x5f\xad\x3a\xee\x38\x49\xdd\x28\x3b\xb4\x0e\x91\x3a\x8b\xac\xcc\x2f\xf0\x82\xb9\x77\xd0\x4d\x3d\x1d\xf5\x73\xa8\xb3\x3a\xc2\xab\xf3\x53\xa9\xcd\xff\x54\x2c\x8d\x37\xd6\x6f\x2c\x01\x8f\x94\x54\x79\x17\x9c\x0c\x54\x94\xba\x1a\x66\xfa\xec\xcc\x7f\x9b\xb3\x62\x57\xa0\xde\x53\x7d\xd5\x71\x8e\xda\x57\x1e\xba\x2e\x57\x72\x4d\xd4\xbe\x72\x32\xf7\x3d\xf7\x35\xf4\x69\xb4\x0f\xa0\x90\xea\x86\x6d\x81\xdc\x64\xbb\x3e\x14\xb8\x10\xeb\xdf\x99\x03\x5a\x86\x85\xb6\x64\x82\x8d\x07\xb7\xd5\x4f\x87\x20\xaf\x53\x95\xdb\x61\xb2\x73\x57\xd1\x2b\x24\xc7\x3e\x38\x2f\x10\xbd\x6b\xd5\xae\xf9\x13\x9f\x6e\xf2\x59\xb2\x97\xe1\x02\xbd\x1e\x0d\x87\x9a\x48\xad\x43\xc3\x50\x63\xb2\x55\x9f\x29\xd4\x16\xbb\xb7\xd3\x15\xba\x15\x16\xd8\x62\x02\x6f\x39\xb8\xb9\xae\x05\x1e\xf5\x1a\xac\x78\x8d\xf0\x9d\xbb\x8b\x1a\xd0\x0c\xfb\xe0\xbc\x95\x58\x8a\xd5\x69\xf5\x3d\xdc\xdf\x74\xa6\xc4\x9a\xe1\x06\x3d\x38\xf5\x09\x5d\x40\xaa\x18\x8a\x42\x9e\x27\x9b\xf4\xb6\x22\x23\xb1\x3b\x3b\xee\x21\xad\x61\x7b\x9b\x7b\x91\xfb\x07\x6d\xea\xc2\x50\x4f\xaf\x9e\x0a\x15\x7a\xc1\xb9\xab\xe8\x38\x46\xb5\x0f\xce\xbd\x8d\x6f\xb2\xba\xa2\x36\xe2\x17\x4c\xcd\xc5\xef\x18\x20\xc4\x3d\xb5\x81\xb8\x49\x0a\x1d\xd4\x11\x91\x49\x17\x7b\xfe\x63\x3c\x89\x9d\xdf\xb1\x90\xa1\x0e\xdb\xd8\xf4\x89\x91\x79\x70\x51\xad\x94\x41\xf7\x6a\x28\x3f\xc3\x30\x3a\xf7\x17\xb6\x32\x2e\xd9\x47\xe4\xda\x12\x33\xad\xbe\xa8\xbe\x12\xb6\xa6\x47\xc5\x07\x89\x40\x28\xea\xa4\x13\xf7\x33\xc9\x74\xa0\x9a\xeb\x94\x24\xea\xf9\x83\xc3\x88\x79\xdb\xbe\x95\x7d\x2b\x6c\x4d\xd3\x6a\x76\xd8\xc1\x39\x35\xbd\xac\x0f\x5e\x75\x65\x3f\x59\xa5\xce\x43\x05\xcf\x58\xd1\xf6\xc9\xfa\xa3\xac\xc5\xd6\x6b\x54\x9b\x99\x3d\xa6\xf5\x22\x3e\x33\x0a\x7c\x38\x12\x2d\x06\xb2\xfa\xfa\xc7\x44\x47\x93\xdc\xba\xcd\x85\xbe\x31\xc3\x6d\xe1\x02\xef\xb0\x45\x8d\x01\xfc\x58\xff\xdf\xd5\xaf\x78\x5c\xaf\x8a\xb2\xf5\xdc\x3e\xe7\x93\x05\x0b\x39\x5f\xed\xb1\x1c\x11\x67\xbd\x75\x80\x32\x86\xed\x67\xf6\x97\xb0\x9d\x15\x0f\xf6\x0f\x07\xa9\xaf\x66\x11\x7d\xdd\xaa\x0d\x89\x6f\xbb\xe6\x28\x38\x31\x47\x5b\x77\xc8\xee\x86\x96\x36\xac\x95\x1e\xf4\xaf\xa8\x1a\x10\x8f\x79\x65\x95\x4e\x11\xf9\x39\xb7\x1b\xdf\x09\xfa\xec\x0b\x74\x69\x7c\x53\xeb\x42\x85\x2f\x97\x6e\x26\x15\x94\xb0\xbb\xc1\xc5\x43\xa0\x21\x2f\xf3\x7b\xef\xfd\xdc\xfd\x89\xbc\x4e\x1b\xdd\x8f\xe8\xfb\x2d\x3e\xd9\xc6\xd0\x55\xf5\x1b\xd4\x87\xfd\x5d\x2a\xc7\x94\x8b\xbc\x2c\x4b\xe6\xc9\xce\x38\x2b\x8d\x53\x24\x31\xf6\xd5\x5a\xbe\xf0\x86\xf5\x2d\x79\x06\x3f\xdc\xec\x33\xff\x0a\xa7\x1b\x50\x0e\x36\x96\xde\xcc\x64\xf4\xae\x2c\x9e\x9e\xb8\xa8\x23\xb5\xc0\x32\x3a\xa5\x99\x63\x30\x3d\xdc\x54\x17\xa7\x37\x3d\xf0\xb4\x72\x9a\x76\xf5\x9e\xd7\xc5\xfe\xea\xc5\xce\xa8\xc1\x45\x7e\xd1\x7e\x28\xfb\x8c\xe4\x98\xcd\x6c\x59\xbf\x60\xc2\xdc\x9b\xbf\x95\x9b\x0e\x1c\x1e\x8c\xa9\x3c\x9b\xe9\xdd\x33\x56\x56\x90\x70\xbb\x63\x41\x71\x52\xf4\xb6\xe6\x75\x05\x7f\x1f\xc6\xeb\x26\xe5\x0d\x1c\x18\xac\x28\xcc\x21\xed\xb9\x5e\xf4\x36\x7b\xa6\x33\x90\x77\x53\x79\xc4\xfe\x7a\x76\x8a\x94\x67\x63\x25\x4b\x10\x16\x99\x67\xf2\x9e\x70\xcb\x01\xb3\xc1\x3f\x6b\x97\x67\x2e\xea\x49\xab\xac\x48\xa8\x6e\xaf\x2b\xb3\x8e\xfe\xb3\xa9\xaf\x48\x7d\xf8\x48\xad\xdc\xf8\xed\x40\x55\xc5\x96\xdc\xf8\x3d\x97\x8b\x18\xda\x4a\x67\x22\xef\xb8\x2a\xcf\xfe\xa3\xe6\x87\x2c\xd9\xe6\xa0\xf4\xa7\xc8\xcc\xbc\x8c\x87\x73\x9b\x5e\x25\x02\x13\x94\xd6\xbb\x79\x60\x10\x15\x3f\xaf\x06\x6b\x69\x5b\x7b\x43\xa0\x19\xb4\xab\x35\xbb\xa0\x13\x74\xa1\xde\x17\x3a\x0d\x30\xb9\xdf\x61\x27\x50\x40\x9a\x09\x5f\x84\xb4\x11\x0a\x84\x02\xeb\x3c\x9f\xa1\x36\x88\xcc\x46\x88\xbe\x43\xb5\x2f\xcb\x80\xcd\x40\xfd\x9d\xcb\x40\x11\xf8\xf7\xb9\x7b\xe0\x5f\x20\xd1\x63\x00\x29\xe0\xb5\x6a\x01\xf8\x0c\x72\xce\x29\x81\xc2\xa1\x07\xdc\x24\xe8\x0e\xac\xc8\x62\xc1\x2c\xc4\x35\x62\x01\xb2\x15\x79\xe0\xc9\x43\x27\xa3\x34\x9b\x43\xe8\x55\x6c\xde\x8b\x9b\x74\x0a\x72\xe6\xf6\x6f\xfa\x17\xe4\xc2\xb9\x95\x40\x1a\xf2\xb1\xfb\x0e\xf0\x1c\xf9\x5c\x75\x09\x3c\x81\x2e\xd0\xfd\x06\x9f\xa0\x71\x9c\x9b\x10\x15\xed\xcd\xfa\x03\xde\x80\xcd\x3d\x62\x84\xdf\x62\x7e\x9e\x3b\x90\x51\x0c\xb6\xd9\x84\xd6\x62\xa5\xcf\xae\xd0\x5c\x39\x3b\x6e\xad\xa0\x9d\x64\x6b\xcf\x78\xd2\x63\xd8\x73\xbb\x9c\xe8\xff\xb0\xe8\x95\xb1\x40\x12\xf3\x93\xb6\x1d\xf8\xc5\xcc\x67\x0f\x81\x45\xcc\xfd\x99\x4b\x20\x12\x71\x37\xfc\x32\x1c\x46\x1c\xf2\x38\x89\x78\x30\xda\x6c\xe6\xa1\x9e\x8c\x69\x4f\xff\xa6\x7c\x92\xbc\xb8\xc1\xa5\x1a\xc4\x8d\xa7\x01\x9a\xb7\x88\xd6\x21\xa0\x5d\x13\xba\x97\x5f\xa4\x67\x08\x56\x64\x1f\x04\x96\xf0\xff\x66\x09\x80\xcb\xbc\xd9\x19\xcb\xc0\x16\xce\x93\x70\x13\xa8\x8a\x6d\xf4\x88\x80\xcb\x59\xab\x6c\xfe\x44\x3a\x09\xfc\xf1\x34\xf2\xbf\x5a\x87\x6b\xe9\x14\x8d\x26\xec\x54\x15\xd5\x47\x95\xd9\x76\x95\xfa\xaf\x42\x51\xb6\x8b\xc6\x93\xf5\xa9\x1f\xd3\x3d\x25\xdf\x98\x81\xc0\x5c\xf1\xda\x74\x6b\xe0\x97\xd0\x39\x0c\x04\x7f\xf1\x2d\x3d\xa6\xc0\xff\xe3\x54\xdb\x2c\x47\x36\xb1\xa6\x3f\x8c\x26\x7d\x29\x9b\x33\xbe\x80\x2c\x2d\xde\x3b\xb2\x9d\xb2\xae\x00\x6f\xc1\x29\x67\x0c\xc2\x92\xbf\xa8\xa0\x5e\xae\x7c\x4b\x73\xd1\x6a\x19\xc5\xf4\x65\x6a\x5a\xea\x18\xb0\x42\x61\x1d\x0a\x83\xb6\x12\xb9\x3b\x01\x05\x0a\x24\x36\xeb\x61\x26\xc7\xeb\xfe\x17\xd2\x94\x36\xf5\x25\x94\x54\xdf\x04\x0e\x3e\x22\xc7\xd7\xe5\x35\x79\x50\xa6\x57\x11\x85\x1f\x28\x2d\x65\x07\x15\xd3\xa9\x44\xd1\x34\xec\x07\x2d\xd1\x40\x4f\x21\xd3\xc9\xba\xbc\xc3\x74\x40\xab\x8a\x74\xfb\x0a\x5e\x94\x14\xdb\x6c\x80\xe7\xf1\x58\x77\x75\x59\xa3\xa7\x24\x17\x22\x48\x27\x06\xeb\xfa\xf5\xe4\xa9\x3d\xad\x0d\x0b\xc8\x45\xed\xdc\xfc\x87\x94\x80\xa6\xd5\xb2\x55\x54\xf3\x1a\x39\x1a\x4c\x9b\x55\x66\x4c\x76\xa0\x4f\x29\x58\x1b\x52\x07\x2c\xc9\xb1\x72\x93\x80\x71\x0a\x85\xcd\x66\xa8\x43\x00\xdc\xa9\xce\x2a\xbd\xf0\xbf\xf3\x14\x92\xd7\xe9\xf3\x7d\xf5\xa4\x7f\x86\x63\xea\xd7\x91\x81\xde\xda\xfc\x99\x94\x55\xed\x9d\xd2\x23\x94\x57\x8d\x22\xa4\x82\x7a\xb5\xea\x55\x52\x3d\x6d\xa4\xb8\x34\x24\x91\x7e\x26\x77\xd8\x2d\x03\x5c\xa9\xda\x65\xe3\x0d\x21\xc2\x55\xb7\x7f\x64\xb1\xaf\x66\x9f\x1b\x24\xad\xbc\x38\xa5\xf7\x07\xa9\x75\x6c\x6b\x1d\x4c\xf6\x1c\x5e\x68\x8c\x27\x3f\xea\x31\x4a\x4e\x51\xca\x5a\xff\x45\x6c\xa9\xc2\xba\x82\xa4\xe3\xb4\x84\x32\x5d\xc8\x3e\x7a\xbc\xe1\xbe\x1b\x00\xf4\xa8\x49\x36\x08\xb4\x52\x18\xf6\x74\x36\x9c\x47\xd9\x7c\xa3\x0d\x6e\xa7\x4e\x1b\x5b\x0e\x8f\x53\x47\x3b\x7d\xe0\x8f\x34\x72\x45\x09\x62\x46\xb7\xd7\xae\x42\xbc\x01\x07\xf6\x7e\x04\x01\x7d\x32\xee\x23\x97\xa0\xf8\xf0\x7b\xe8\x26\x18\xf4\xb8\x86\x16\x23\x5a\x1b\x1b\xcc\x0c\x6d\x7d\xb2\x0d\x7a\x03\xcc\xb9\xfe\x0c\x5e\x06\x10\xa7\xc3\xe0\xdd\xc0\xcf\x0e\x3e\x9c\x05\x46\x94\xdf\x83\xab\xc0\x8b\xd9\xe9\xf0\x23\x88\xc9\xaa\x46\x6c\xe1\xdd\x19\xde\x88\x12\x99\x1a\x1e\x89\xce\x44\x7a\x3c\x92\x50\x2e\x9a\x65\xfd\x18\x5b\x8c\x6d\x78\x7c\x04\xda\x8d\xfc\x79\x7d\x1e\x04\x23\x6b\x46\x65\x50\x13\x72\xb8\xbd\x1b\x7a\x89\xa4\x95\x9b\xc3\x1b\x10\xbd\xa6\x1f\x26\x23\x3f\x58\x0b\xe0\xb3\x68\x62\xfa\x25\xc4\x19\x1d\x0b\xfb\x8c\xf4\x62\x6b\x3c\x56\xa3\xfb\x30\xb2\xf5\x59\xf4\x39\x36\xf8\x6f\x38\xf0\x89\xed\x77\x75\x3b\xe8\xc5\x3a\x7d\xb2\x0b\x54\xb1\xfc\xdb\x2c\xc0\x87\xcc\xb1\xd2\x61\x68\x07\xf3\x88\x9a\x01\xa9\x99\x4b\x99\x73\xa1\xdf\xc4\xdd\xb4\xc7\xb0\x88\x10\x84\x6d\x43\xac\x89\xb5\xee\x8d\xc8\x79\x46\xb9\x75\x3d\x8a\x33\x4c\xff\x79\x49\xbf\x2a\xbe\x74\xa5\x1b\xd8\x22\xea\x1e\x99\x0b\x64\x0b\x8d\x2d\xd9\xc0\x13\x01\x5e\x12\x0c\xba\xf1\xb3\x54\x9e\x60\x35\x8f\xc5\x98\x80\xd6\x71\x15\x69\x33\xa0\x33\x1c\x41\xa8\x00\x86\xd9\xc7\xdc\x23\x11\x07\xd6\x6c\xeb\x4e\xe4\x2b\xa1\xba\x3f\x4a\xbb\x97\x3d\xe5\x52\x3b\xdd\x5d\xbd\x77\x28\x92\xde\xaa\x44\x9b\xbe\x02\xd3\xe4\xad\x45\x57\x80\x68\xe9\x57\xc5\x33\xe0\x8e\x24\x00\x3f\x03\x26\x8b\x74\xa9\x66\xd0\x52\xc1\xe9\xc3\x1f\xa0\xcb\xbc\xf3\xee\xff\x83\xf3\x38\x2c\xeb\xab\x48\x2a\x6b\xe1\x5d\x7b\xea\x50\x09\xe7\x42\x04\x6d\x5d\xe1\xab\xfe\x8f\x34\x55\xbe\x4f\x43\x25\xed\x75\x5e\x56\x41\x39\x3d\x38\x27\x5b\xf6\x99\x7e\x37\xbb\x0f\x5b\x0d\x80\xaa\xa1\xe4\x2b\xa0\x83\x3c\xef\xf0\x3c\xf0\x87\xc4\xce\xad\x05\xba\x26\x88\xb2\x99\x0d\xb7\x72\xfc\x6e\x9d\xa7\xbc\x6f\x69\x3f\x7b\x95\x1a\xdc\x70\xbe\xb7\x8c\x3a\x5a\xbb\xbc\x2e\x83\x66\x53\x69\x69\x14\xd3\xb2\x4b\x97\x4a\xe7\xd1\xad\x0a\x3e\x21\x28\xfd\x7c\x9e\x32\x89\x09\xc8\xb4\x2f\x43\x96\x81\x27\x94\xf7\xdc\x76\x42\x07\x24\x11\x36\x2b\xe0\x9d\x3c\xf0\x86\x80\x62\x1c\x39\x3c\xd6\x43\xf9\xd9\x5f\xd3\x9d\x4a\x8d\xec\x7a\x56\x73\x90\xda\xd7\xfa\x2c\x4f\x41\xb3\x6b\x68\x15\xbb\xd3\xfa\xaa\x03\xa0\xe7\xf4\xc4\x52\x49\xa2\x2f\x60\x9a\xef\x13\x1c\x00\x3c\xd7\xb1\x76\x8d\x83\x0f\x14\x76\x36\xab\xa1\x07\x82\xa8\xeb\x2a\x0a\xfd\x6c\xfd\xe9\x71\xca\xf5\x53\xc5\x5d\x0c\xaa\xfd\x60\x72\x75\x1a\x55\xd6\xfd\x2e\xb7\x8b\x36\xb9\x6d\x8b\x88\x41\x13\x34\x6c\x85\xdc\xe8\x0e\x95\x23\x09\x67\xe8\xf7\x8a\xda\x83\xff\x00\xf2\x73\xe7\xef\x6a\x05\x0d\xca\x2b\x36\x4e\x50\xa1\x70\xca\xb5\x1b\x94\xa0\x2b\x0b\x4e\xaf\xa0\x54\x9d\x6b\xed\x3c\x47\x9d\x34\xba\xb2\x6a\x98\x7a\x78\xd0\x35\x77\x35\xb5\xaf\x7b\xa6\xf0\x23\x6d\x77\x0b\x0c\x9e\xa7\x3d\xae\x4d\x49\x80\xe9\xac\xd2\x9c\x43\xcf\x81\x1d\x06\x8b\x5d\x5d\xa0\x8b\x7a\xb2\x4d\x06\xb4\x5b\xb8\xfd\x1f\x12\x76\x82\xdc\x74\x45\x8b\x79\x52\x24\x23\xc7\x30\x4b\xea\x91\xd6\xd9\xd8\x7c\xda\xec\x92\xb3\xd8\x2c\xda\xb8\xaa\x1b\xfd\x4e\xbf\x4f\xc4\xa0\xdf\x80\x9f\x69\x54\x6c\x1e\xb4\x36\xf4\x0b\xb6\x1e\xf6\x73\x97\x63\x47\x10\xb6\x75\x1e\x26\x47\x87\x1e\x28\xd0\x31\x7a\xe6\xe5\x61\xb4\x89\xfe\x61\x58\x87\x16\x03\xf4\x96\x9d\xa8\x06\x78\x58\x32\x05\xd5\x83\x89\xaa\x29\xa8\x01\x5a\xc3\x68\x47\xeb\xa1\xff\x52\x9f\xa0\x97\xe1\x9e\x50\x26\x36\x05\xe1\xb9\xaf\xc3\x9c\xd1\x23\xd6\x11\x18\x1b\xdb\x72\xbf\x1a\xdd\x0a\x07\x5e\x7a\x85\x5a\xc3\xd0\xd0\x28\x6a\x05\x77\x35\xa7\xa2\xcb\xe0\x47\xc5\xf6\xe8\x7a\xc4\x5c\x19\x81\x3a\x22\x32\xc6\x02\x34\x0a\x9d\x91\x9a\x8a\x72\x50\x24\x74\x12\x7a\x1e\x7d\xee\x76\x0d\x9b\x8f\x85\x5a\xaf\xc6\x12\xb0\x91\xbb\x35\xf0\x05\x56\xdc\x45\x53\xf8\x0d\xf3\xc7\xc0\x57\xf8\x03\x53\xd2\xf8\x0f\xb2\x98\xb9\xb4\xf0\x31\xe2\x4c\x74\x29\xcc\x91\x18\x42\x88\x2f\x41\x34\x44\x4c\x8a\x04\xb9\x41\x58\x1f\x8e\x40\x1d\x18\xff\xba\xc1\xa8\x8c\xc1\xb4\xb6\x44\xbf\x33\x4c\xef\x48\xa0\x9b\xa2\xae\xf3\x9d\xd0\x3b\xe1\x68\x7f\x12\xbc\x48\x70\xb2\x21\x0b\xb6\xe0\x77\x15\xe4\xc0\x5e\xbc\x01\xd9\x17\x18\xe0\x3e\xc7\x56\xc3\xdd\xdc\xb9\xc9\xbd\xc8\x72\x8e\x45\xc8\x15\x84\xcd\x36\x71\xdb\x85\x7c\x66\x3e\xb0\x0e\x42\xd3\x08\xf5\xad\x70\xf0\xb7\xfa\xca\xd9\x31\x68\x89\xca\xb1\xf7\x1a\x14\xa0\xe0\xd6\x3d\x81\x0e\xca\xc6\xf3\xad\xa1\x34\xe9\x7a\x69\x35\x54\x2f\x36\xa0\x7f\xc0\xd3\x44\x53\x92\x6e\xc3\x69\x82\x80\x90\x9d\xf0\x3f\x3c\xda\xae\x09\x24\x96\x13\x68\x9d\x84\x3c\x66\xcd\xbb\x7e\x19\x68\x29\xfa\x3d\x96\x09\xbc\x2b\x10\x75\xd3\x40\x5b\xe3\x5f\x35\x79\xe0\xce\xdc\x40\xc3\x14\x30\x49\xa7\x12\xf7\x83\xed\x9a\xbb\x70\x0c\xb4\x54\x35\x35\x51\x07\x89\xe4\xd3\x83\x4f\xc0\xb3\xc5\x43\xbb\xca\xe0\x1c\x81\xa9\x75\x2d\xb2\x8e\xe3\x71\x35\x13\x98\xdd\x74\xe3\xd4\x04\xb0\xb6\xde\xb4\x73\x33\x10\x55\x2d\xaf\x8a\x03\x90\xf2\x5e\xfd\x73\xa0\xa1\xf8\xaa\xf0\x16\xf8\x47\xfe\x2d\xb0\x17\xcc\xc8\x2d\x4e\xd8\x07\xbe\xd4\xae\x3b\x44\x83\xa8\xca\xc0\x5d\xdb\xe0\x79\x92\x69\xd6\x27\xe1\x4a\xde\xd1\x2b\x7b\xe9\xc6\xa1\xa5\x23\x2f\xe8\x03\xbd\x45\x6d\xbf\xe8\x8f\x3b\xff\xaa\x08\x05\xe6\xb4\x78\xe6\x4c\x05\xbc\xea\x5d\x05\x66\x80\xbe\x6a\x3a\xb0\x13\xfc\xa3\x24\xeb\x84\x09\x48\x33\xc6\x04\xd5\x82\x3f\xb4\xe3\xae\x17\xa1\x42\x79\xbf\xf5\x45\xd8\x4f\xe0\x78\xd9\x87\x4e\x19\xf3\x1a\xfe\x49\x57\x8f\x64\xb4\x2d\xa5\xb7\xf4\x27\x97\xe3\xf4\x5b\x5d\x76\x3a\x27\x60\x61\x4b\x29\xff\x04\x10\x5f\x37\x4e\xcf\x03\xce\x56\x68\x8e\xe7\x83\xdb\x0a\x7b\x83\x62\xc0\x16\x7d\xa0\x6b\x03\x14\xad\x0c\xb7\x7e\x0a\xff\x25\xb8\x7a\x89\xa0\xfb\x5d\x64\x0e\xbb\xd2\x8f\x9d\x89\x6e\x8d\xa7\x23\x23\xbf\xcb\xae\xd1\xf3\xfb\xe3\xb4\x85\xf4\xcb\x9d\xc7\x78\xf7\x81\x15\xcd\xb3\xe8\xeb\x01\xb4\x66\xc3\xf1\x43\xc0\x9d\x12\x65\x90\x3b\x78\x30\x2f\xd4\xb5\x05\xfc\xad\x62\xda\x98\x40\x35\xc2\x39\xd7\x82\xd9\xc1\xa4\xf2\xd3\x3b\x58\x9d\x64\x45\xd7\x27\x96\x09\x85\x5a\xe3\xce\x2c\xa7\xba\xe5\x0d\x30\x5d\x69\xab\xc4\x32\xe2\x0c\xdd\x11\xb6\x22\xa2\x81\xa3\x89\xee\x8c\x1f\x60\xee\xa1\x9b\x8c\x22\xe8\xbe\xeb\x10\xc3\x1b\x71\xb7\xda\x80\x7f\x46\xdb\xaf\xa6\xb0\x06\x68\x3b\x47\x4f\xb0\x1c\x68\xb7\xbb\x56\x33\x8b\xe9\x59\xd5\x74\xa6\x2b\x7d\x22\x6f\x06\x71\x0f\x90\x89\x9e\x10\x00\x18\x09\xa9\x89\x65\x90\x53\x42\x2f\x63\x14\xb6\x3c\x94\xca\x00\x91\xbf\x5c\x23\x18\xf6\xe8\xfc\xb5\xef\xf1\xd7\x98\xc5\x38\xc8\xb2\x07\xdf\x9f\x12\x33\x1b\x21\x9f\x4e\x1f\xa6\x2d\xa4\xae\x2a\x23\xc6\xa1\x4b\xb9\x5e\x04\x08\x5b\x8a\x5c\x09\x53\xb8\x1c\x9a\xcc\x18\x43\x5c\x12\x02\x19\x18\x72\xe9\xd0\x14\x86\x27\x1a\xeb\xba\x9c\x31\x0d\x9b\xba\xf6\x02\x7e\x0e\xab\xbc\xfc\x0f\x73\x12\xd1\x3a\xf2\x89\xd0\x12\x99\xed\x57\x08\x6b\xc2\xba\x32\x84\x71\x95\x71\x53\xbf\x88\x21\x62\x18\x84\xeb\x19\x1e\x0c\x01\xb8\x94\x31\x99\x81\x9e\x10\xe3\xd7\x18\xc7\x83\xd2\xf0\x16\x86\xaf\xcb\x18\x2e\x62\x58\xad\xbd\x87\xc7\xe3\x3f\x2f\x35\x13\xcb\x05\x15\xc3\xfd\x8c\x7c\xfe\xb3\xb6\x40\x86\x23\x7f\x49\xf9\x1b\xfc\x0d\xcf\x51\x37\x86\x37\x71\x63\x05\x53\x71\x90\x53\x07\x2c\xc5\xf7\xb1\x7f\x1c\x1f\xc2\x6d\xd8\xee\x81\x6f\xf0\x79\xac\x34\x17\x03\xf6\x91\x49\xb6\x9a\x8f\x5d\x27\xd2\x2e\xe4\xe2\xbf\x94\x47\x07\x2f\xe1\xed\xf2\x2f\x2d\x67\xf0\x70\x19\xb7\x0c\xc3\x4d\xa5\x33\xb5\x20\xf6\x42\x2c\xe7\x8d\x63\x7d\x22\x7b\xfa\x62\xcc\x28\x18\x3d\xf6\x15\x63\xf0\x0f\x05\x66\x60\x49\xdc\x0e\x17\x32\x76\x84\x7d\xdb\xca\x1b\xf3\x66\x3e\x3b\xb7\x1c\x7b\x52\xb0\xbe\x9f\x8d\x15\x18\xee\x37\x85\x63\x91\xb9\xfc\x12\x07\x6c\x75\xce\x5f\x9a\x28\xf4\x63\xb6\x98\xf3\x1f\x7a\x45\xbd\x90\x0a\xa0\xbd\x0a\x30\x7e\x08\xad\x90\x9e\x0e\xa8\x40\xb5\xa2\x71\x97\xf5\xa8\x9c\x4f\x58\x49\x50\x06\x67\xea\x18\x19\x0b\xad\xff\xbb\xe7\x16\x36\xbd\xba\xbd\xfe\x27\xda\x58\x41\x2f\xfc\x84\xd2\x4a\xde\xaa\x7c\x50\xef\x42\x7f\xf6\x7c\xd4\xd6\x90\x4f\xbe\x85\x9a\xe7\x74\xc6\x91\xd1\x79\x9a\xdc\x83\x43\xe8\x4c\xc5\x5a\xe7\x76\x74\xb6\xd8\xd9\x2a\x1f\x9d\xc4\x9b\x39\x1a\x8e\x4e\xf4\x5e\xe8\x9e\x84\x1a\x3a\x47\xeb\x16\xa0\xbe\xad\xda\x02\x13\x74\x56\xe3\x2c\x85\x18\xb9\x56\xb3\x8f\x09\x22\x1d\xe5\x27\x48\x74\xa4\xba\x68\x53\x6c\x04\x92\x9d\xc7\xf6\xff\x84\xa8\xb2\xe3\x9c\x7d\x91\x02\xd9\x98\x55\x15\x92\xcb\x3f\x75\x4a\x8f\xde\x1c\xb9\xdf\xe5\x86\x42\x03\x19\xb5\x5e\xe8\xca\xee\xf3\xf9\xa1\xc8\xcd\xb6\x53\xf2\x71\x24\xbf\x91\x20\x2e\x23\x68\xcd\xac\xac\xa7\x48\x5a\x99\x6d\xcc\x13\x24\x24\xbf\xdf\xbf\x0c\x39\xa8\x1b\x71\xb6\x42\xa2\x15\x41\x56\x7d\xc8\x11\x41\xdc\xa9\x79\x68\xcf\xd9\x3f\x3b\xab\xd0\xe0\x53\xde\x35\xd5\xc8\xdb\xc1\x3d\xc6\x21\xc4\xd0\x7d\x4d\xee\x83\x44\xb4\x2d\x23\x42\x10\xfb\x86\xe5\x59\x18\xb2\xa2\xb2\x38\x46\x05\xff\x2a\x02\xfc\x21\xf8\x3f\x7d\x9b\xf3\x1a\x64\x8a\x92\x6c\xf5\x16\xfe\x2a\x30\x8e\x75\x08\xbf\x64\xdd\xe8\x8d\x17\xfc\x4b\x1a\x69\x10\xf2\x1f\x90\x2b\x8b\xea\x78\x13\x14\xb6\x7a\x2e\x6f\x31\x15\x64\x8f\x73\x6d\x68\x5a\x0a\x89\xb3\x8b\x7e\x29\x4e\xca\x8e\x02\x97\x1d\xdc\xc7\x42\xa0\xd4\x9d\x18\x53\x03\x7f\xb7\x4c\x20\x6a\x51\xf5\xe9\x7b\xc2\x78\xaa\x7b\x4f\x8e\xe0\x04\xf5\x49\xfd\x05\x3e\x8d\xc6\x2e\x9a\xca\x93\xd3\x4d\x55\x24\x6e\x33\xfd\x2c\xdb\x8b\x73\x15\x28\x21\x7f\x66\x7f\x01\xd5\x71\x96\x6c\x1b\x48\xea\xff\x92\x15\x06\x4b\x76\xda\x31\x99\x48\xa7\xa5\x1b\x51\x86\x4e\x8c\x7e\x15\x5c\x05\x2e\x74\x9f\xe4\xbf\x02\x6d\xeb\x67\xf3\xe7\x82\xbc\xc2\x03\x3c\x6b\xf0\xb6\xf2\x12\xd7\x1f\xf2\x66\xb5\x70\x40\xe8\x36\x19\x64\x97\xc3\x44\xec\x49\xd6\x23\x64\x83\x7f\x31\xcb\x02\xb9\xb1\x73\x26\x33\x18\x2d\xb2\x74\x27\x18\x18\x72\xca\xc0\xaf\x67\xd8\x77\x85\xf0\xfe\xc1\x27\x6a\x55\xbc\xc5\x78\x57\xfe\x6b\xae\x0f\x2e\x51\x08\x38\x1c\x9c\xcc\x54\xb0\xfb\x70\x94\xc4\x64\xfd\xc0\x55\xb1\xb3\x58\x7e\x78\x81\xbf\x29\x33\x17\xaf\x74\x3a\x45\x3c\xc0\xbb\x2c\x43\x88\x65\xf8\xc8\xc9\x69\xbc\x51\xde\xd5\x8e\x87\xdc\xff\x78\xb6\x35\x0e\xdc\x0d\xdc\x74\x63\x29\x27\x95\xd3\x2c\x8f\x61\xb7\x72\x66\x12\x5c\xd6\x6f\x36\x92\x95\xc7\xda\xcf\xfa\x18\x13\xc8\x2c\x61\x1d\x3d\x50\x4c\xfc\x66\xb6\x39\xe5\x13\xfb\x89\xcf\x96\x1c\x86\x84\xd8\x38\x7c\x82\x7b\x5b\xee\xdd\x1e\xc2\x5d\x2c\x7d\x57\x75\x86\x73\x44\x92\x63\x08\x61\x17\x89\x7d\x64\x76\xac\x8f\xc2\xdf\x0c\x0a\x6b\x9f\xe0\x52\x66\x13\xb3\x94\x9f\x13\xad\x66\x4e\xe7\x1d\x38\x60\x45\xc4\x70\xfe\x71\x4a\x67\xb4\xb1\xbd\x2c\x6b\xf0\xef\x4c\xdd\xc0\x2b\xce\x57\xc3\xa1\xd6\xc9\x9c\xf5\xb9\xbb\x2a\xe8\xec\xcc\x9c\xbf\x73\xd7\xb1\xba\xb2\xaf\x4a\x1c\x58\x7f\xa9\x25\x58\x3d\x33\x45\x19\x98\x61\x4f\x5c\x92\x7d\x3f\x4a\x26\xec\x25\xc4\xfe\x74\x86\x52\x78\xd6\x69\x13\xfe\x8e\x77\xc6\xf2\x23\xbe\x83\x5d\xda\x67\xe4\xb8\x55\xb7\x35\x15\xb0\x79\x15\x8a\xb2\xcd\xac\xab\xa5\x69\x39\xd3\x58\x26\x45\xb6\xa2\x9d\xcc\x54\xe3\x15\xe4\x19\x71\x29\x37\x23\xad\x9c\x70\xd6\xde\x8a\xda\xc5\xc8\x53\xcf\xf2\xcb\x67\x4c\x92\x3d\xd9\x71\x1d\x3f\x2a\x8a\x5a\x6b\x81\x95\x71\xb5\x3d\x89\xec\x2f\x9d\x97\x1a\xea\xd8\x1b\x5b\x3f\x94\xec\x63\xa5\x37\x3e\xd7\x6e\x61\x36\xd4\xd6\x0a\x78\xc4\xcf\xca\x3d\x70\x14\x11\x59\xd2\x9e\x1a\xc4\x38\x99\x7f\x27\xd2\x86\xb1\x5e\xaf\xde\x77\x01\x57\xa9\xef\xee\x48\xc2\x26\xa4\x3d\x6b\xd7\x63\x2e\x7c\xf7\x6e\x16\xbb\x7b\xe0\x44\xfd\x45\xd6\xaf\x9e\xad\xc5\x30\x6b\x4f\xfb\xe5\xec\x54\x26\xa3\xd9\x92\x7f\x91\x38\x55\xb7\x13\x6a\x23\x56\x55\x9a\xa7\x0c\x33\x78\xc5\xc5\x11\xcd\xf8\x4b\x43\xe9\x3e\x14\x0f\xd4\x5a\xec\xf0\xc2\x5a\xe4\x0e\x6b\x5d\xd0\x6f\xfc\x1b\x5d\x67\xd9\xf8\x29\xcb\x7a\x0b\xd6\xd9\xc1\xd6\xa2\x9b\xac\xc5\xbd\x7f\x68\xae\x30\xbd\xdb\x27\xf8\xee\x04\xb3\x29\x17\xda\xc1\xb8\x5e\xf3\x2b\xe5\x08\xc3\xa1\xec\x5d\x44\x0c\xae\x2e\x70\xdd\xe7\x83\x7d\xd5\xfd\xdc\xb1\x0b\x3b\xac\xf0\x5b\x7b\x02\xcd\x16\x2c\xef\x39\xad\xdc\x99\xb5\xa4\x71\xa7\xbc\x97\xb4\xb0\x14\x95\x79\x90\xff\xa7\x63\x48\xae\x93\xbf\x08\xcf\x8b\x49\x94\x5f\x88\x5a\xf8\x9b\xb6\x2a\xcd\x5f\xc0\xa5\x27\x47\x8a\xf8\x4b\x80\x8e\x7d\x30\x37\x07\xfa\x7b\xfb\x3c\xce\x22\x78\x60\xb5\x92\x05\xa3\xdc\x9e\x45\x8a\x33\x94\xa0\x06\x91\x3c\x84\x3a\xa3\xe4\xa6\xf4\x19\x75\x54\xfb\x54\x82\xd1\x52\x85\xbb\xc4\x2b\xe8\x1b\x90\x45\xc2\x66\x60\x41\xea\x3d\x81\x37\xb8\x30\x72\x3d\xef\x09\xb4\x7c\xdf\x06\x2e\x08\xaf\xdf\x76\x93\x33\x09\xc9\x5c\x8d\xb2\x32\xd1\x8b\xdd\xc1\x8a\x28\x7a\x53\xfd\xb8\xec\x2d\xb0\xb2\x64\x83\x54\x0c\x94\x69\x3d\x25\x16\xe0\x1f\x82\x0a\x51\x2f\xc8\x84\x25\xc2\x68\xc8\x26\x35\x89\xff\x13\x7a\x1c\x31\xce\x2b\x85\x8b\x7d\xdf\x70\xbd\x91\xe3\xdb\xda\xd8\xd7\x51\xff\xd5\x20\x2b\x00\xf3\xed\xec\x96\x7b\x60\x58\xdd\x61\xe9\x27\x0c\x29\xea\x91\x18\x30\x92\xe6\xa3\xf8\x00\x16\xcf\x07\x45\x53\xb0\x24\x88\x21\x68\xc0\x64\x29\x2c\x7e\x04\x36\x12\x61\xcb\x5b\x88\xbd\xf7\x65\x72\x06\x70\xd3\x6d\x4a\x76\x24\x7e\x64\x75\x0d\xf3\x11\xae\xec\xd8\x27\x0b\xe0\x7c\xab\xb5\x93\xfc\xe2\x50\x0b\x09\x71\x1f\xfb\x91\xfa\xb2\x08\x64\x1f\xe0\xd1\x84\x3b\x58\xa7\x40\x2d\xff\x33\x2b\x26\xb9\x87\xd7\xc0\x9a\x74\x44\xc8\xcd\x64\xca\x7d\x17\x73\xac\x99\x0b\xb6\xa5\xb1\x4e\x13\xd8\xea\x6b\xcc\x40\xc6\x93\xf6\x49\xd2\x58\xc9\xad\xea\x0a\x89\xb5\xf8\x7a\xc1\x2e\xd1\x47\xd1\xb0\xaa\x4c\xd8\x2a\xcc\xe3\x26\x09\x10\x01\x0a\x94\xf2\xbd\xf9\x58\xd2\x5b\xde\x1c\x1e\x14\xfe\x9a\x73\x91\x7b\xd4\xa7\x8b\xcd\xe5\xac\xdb\x46\x62\x59\xb3\x46\xd7\x38\x13\xb5\xcc\xd0\x96\x31\x09\x5d\x9f\x51\xd9\x21\xde\xad\xd3\x18\x17\x88\x96\x65\xd7\x28\x0a\x05\xb7\xd5\xc5\xec\x6c\x7e\xa1\x32\x9b\xfe\x07\x8f\x24\xd7\x26\x4a\xb9\x6e\x52\x22\xec\x09\x67\x8a\xd8\xcb\xe7\x4f\x56\x9f\xe0\xf2\xb6\x4d\xcc\x38\xde\xaa\x35\x14\xc6\x4b\x76\x40\xd3\x11\xf1\xdb\xf2\x7f\xcb\x3d\x44\x3d\xa5\x8b\x72\x5f\x09\xf9\x45\xd1\xb2\x7c\xc1\xde\xfc\x78\xe6\x20\xff\xcf\xbc\x40\xea\x51\xee\xfd\x9c\x9d\x09\xab\x38\x8d\x9a\x4f\xa1\xbd\x6c\xaa\x32\x7d\xaf\x17\x6b\xa3\xb4\x68\xeb\x55\x62\x5c\x88\xad\x91\x31\x22\xb9\xab\x1a\xba\xc5\xea\x56\x72\x69\xb5\x28\xac\xf1\xbe\x7e\x91\x70\x55\x9d\x8d\xe4\x3e\xff\x76\x95\x3b\x61\xc1\xd3\x96\x6d\x24\x3f\xe5\x26\x14\x7e\x3d\xfe\x80\xb3\xcd\x00\x1d\xee\x60\x4f\xd5\xe9\xbc\x69\xcc\x93\x2a\xbf\xad\x29\x44\xa2\xa4\x6c\x8d\x1e\x7f\xc9\x6b\xaa\xef\x13\xa7\x75\x57\x94\x8c\x8b\xec\xda\xcf\xe7\x78\x0b\x3e\x37\xf7\x48\x4c\xf8\x95\xf5\x09\x8c\x54\x5e\x4c\xd5\x5d\xb2\x17\x77\x7d\x99\xd9\xf1\xc3\xec\x89\xc2\x59\x87\xbd\x59\x43\xb9\xa0\xb7\x05\x93\xa7\x49\xdd\xea\x45\x58\xc9\x66\xad\xa9\xc4\x4b\xf8\xbb\xeb\x9e\x89\xbd\x07\xe7\x95\xfc\x2d\x9a\xde\xf3\x5d\x57\x28\x38\xd9\x51\x22\x66\xf0\xd3\x9b\x3f\xe1\xf7\x78\xa6\x75\xbf\x49\xa7\x39\xf7\x2a\x87\x8f\xfd\xc7\x2e\x28\x59\x13\xf2\x82\x95\x66\x78\xe1\xf5\x9c\xb9\x59\xbb\x79\xab\x13\xe3\xb4\x7c\xe1\x9a\x0b\xb8\x1b\x9f\x57\xb9\xce\x68\x9f\xa9\xc8\xff\x23\xf7\x45\x56\xae\xda\x39\xa7\x93\x24\xe3\x67\x6b\x99\x64\x1c\x09\xd4\x78\x53\xa4\x19\x05\xca\x6f\xd4\xfe\xb8\x3f\xe4\x3a\xfa\x82\x43\xab\xa4\xe6\x00\x73\xf7\x22\x11\x1f\x9a\x66\xff\x8d\x7f\x1b\x3e\x69\x31\x8b\x3b\x1b\x2d\xa9\xa8\x36\x74\x92\x2b\x8c\xbc\x5c\x9c\x12\xab\xea\xcf\x89\xa0\xce\xe5\x5b\x68\xd7\x51\x07\xe1\xc7\xea\x4f\x34\x55\x86\xab\xb2\x81\xce\x8b\x6d\x90\x87\x01\xfa\xa0\xfb\x92\x57\xe0\xb0\xe7\x33\x51\x1c\xf4\xd5\xfe\x29\x7f\x00\x89\xb6\x98\xcb\xf9\x86\x3e\xae\x58\x63\xd8\x43\xfb\xd7\x38\x39\x77\x09\xfd\x80\x6a\xa7\xee\x27\xbd\x89\x97\x9f\x7d\x01\xb0\x85\x33\xd5\xb9\xc0\x50\xfa\x35\x65\x34\x08\xc7\x86\xca\xe7\x43\x07\x83\x0a\x24\x35\xb0\xbd\x67\x8f\x68\x33\xb2\xd4\xfe\x3a\x5f\x83\xae\xb7\x30\xe3\x5c\xc5\x82\xcb\x6a\xf2\x12\xd1\x65\x79\xf5\x7a\x37\xd4\x5a\x39\x4b\xb7\x11\xb5\xe6\xca\xb3\xff\x42\xb7\x42\x0c\xd5\x13\x34\x3c\x7d\xaa\xa2\x09\xcd\x8f\x29\x95\xa5\xa0\x5f\x82\x2c\x25\x4b\xb1\xfd\x9e\x54\x61\x25\x66\xb4\x3f\xcd\x5f\x82\xcf\xb5\x88\xe2\x84\xe3\x68\xe9\x48\xae\x98\x75\x2e\xb7\x32\x27\x9d\x05\x2b\x26\x69\xa3\x59\x26\x1c\x83\x66\x2f\xb3\x0e\xac\x50\xad\x67\x06\xa7\xb9\x2b\xa6\x30\x97\xc7\x4c\x91\x9e\x22\x9e\x07\x96\x89\x69\x44\x95\xe7\x3a\xe1\x02\x22\xda\x7e\x90\xc7\x26\x96\x59\xe8\xd9\x67\x19\x67\x4b\x2c\xf4\xe7\x45\x8b\xf4\xe1\xba\x3a\xa1\xaf\xec\x65\x76\xb1\x20\x9d\x6d\x54\xcb\xf9\x18\x30\xa2\x04\x78\xb9\xa9\x54\x79\x18\xf7\x5a\x74\x88\xd4\x92\x3b\x2f\xd0\x52\x74\x95\xb3\xc9\xe3\xa1\x20\x93\xed\x64\x3f\xc2\x7d\xc0\xb2\xb3\x78\xc9\xb6\x64\x2e\x2f\x0a\xcd\x79\x9b\xbd\x4f\x97\xad\xbd\xae\x7e\x21\xb5\xd6\x9c\x55\xc5\x30\x7f\xa9\xda\x15\x25\xf4\xfd\x0a\x83\xec\x69\x8a\x8d\x8c\x90\xee\x38\xea\x26\x39\x24\x06\x03\x0e\x8b\xa6\x09\x95\x1e\x31\xfc\x62\x3e\x66\x5f\xc2\x5d\xc8\xf5\x5e\xe5\xc8\x0a\x66\x7d\x2c\x88\xcf\x09\x29\xba\x93\xdd\xa2\xf5\x28\xa0\x8b\xe3\x34\x4e\x86\x5f\x44\x88\xca\x22\x37\x8e\x7a\x46\x31\x45\xd7\x96\x74\x41\xfa\x3c\x7b\x56\xd4\x32\x71\xaf\x6a\xeb\xc1\x54\x61\x86\xdc\xda\xfd\x14\x7f\x9e\xf8\xba\xfd\x09\x0e\x22\x08\x58\x15\xc3\xec\xe2\x68\x8d\xbd\xba\x89\xba\xa7\x9a\x05\xd9\x4f\xab\x9f\x08\x4f\xaa\xef\x55\xd4\xe2\x17\x94\xbd\xa5\x3b\x28\x31\xf2\xec\x42\x63\xa2\x40\x0a\x18\x5e\x46\x4e\x13\xfb\xe5\x7c\xf5\xe7\x0b\x7e\x69\x6a\xdd\x97\xf0\xf4\x8a\xe9\xf6\x0b\x39\x33\xc4\xab\x56\x91\x98\xee\xdc\x6f\x46\x6b\xdd\x78\x4b\xa3\x3a\x25\x7b\xa4\x31\x48\x38\x4f\xdd\x51\xdb\x85\x5b\x28\xe5\x95\x0f\xc9\x83\xf2\xb8\xd2\x9b\x09\x3f\xa4\xee\x85\x65\x11\x62\xf1\x3c\xc3\x3a\x7f\x4b\xc1\x80\xce\xd3\xed\x1c\x2f\x4c\xf9\x76\xf3\x04\x7b\x50\x12\xb3\x8a\x4d\x7c\xe5\xe1\x86\x06\x5d\x7d\x67\x8f\xea\x41\x76\x5e\xdb\xff\x04\x34\xb5\xa8\xc9\x06\x53\x29\xc3\x6b\xbf\x93\x3d\xe4\xab\x2a\xe5\x09\x62\xc9\x97\x92\x37\x11\x5b\x44\x7d\xf9\x1f\x0e\xdc\x11\xa4\xe8\x01\xb7\x3c\xee\x6f\x35\x6f\xf3\x2b\x76\x9c\xf4\xd0\xaa\x2a\x42\xc5\x1b\xd5\x04\x56\xef\xca\xbc\x23\x36\xad\x70\xca\x1a\x64\x6a\x4b\x5d\x48\x75\x80\x4f\x91\x05\x39\x3f\x0d\x36\xbe\xa7\xb4\xc6\xc5\xe4\x56\x52\x5f\x1e\xe6\xe9\x9c\xe8\x7b\x7d\x15\x6a\x29\x70\xd9\xb9\x51\xde\x00\x51\x36\xce\x11\xd7\x22\xfb\xcc\x2e\xf3\x53\x30\x7b\xf5\x44\xd5\x18\x99\x25\x3a\x53\x3e\x46\xd9\xca\xf4\x29\xb9\x46\xf9\x8f\xfe\xb3\x70\x98\x5a\x9b\xe6\x60\x34\xd2\x24\x71\x2b\x73\xa3\xe8\xa2\xc3\x01\xda\x09\xa0\xc6\x37\x53\x1d\x06\xbe\x71\xce\x93\xf3\xe0\xdd\x1b\xe7\x8a\xc5\xc8\x69\xb3\xa7\xfc\x20\x2c\x5c\x2d\xab\x0a\xa5\x1d\x14\x65\x96\x87\xd3\x2e\x11\xef\x4b\xd2\xe8\x47\xe8\xa5\x85\xc7\xe8\x4f\x53\x9f\x18\xbd\x00\x79\xec\xed\xdc\xd9\x60\xd8\xe1\x25\xda\x72\xc8\xcd\xd7\x47\xbd\x18\x76\x76\x16\xc8\xfd\x91\xdd\x1b\x17\x88\x23\x50\xc0\x7c\x1a\xdf\x0a\x6b\x55\x71\x2a\x85\xc8\x4e\x21\x54\xa6\x44\x22\x89\xd9\xc5\x4d\x08\x99\xf6\xb0\xa0\x02\x51\xa7\xba\x1b\x44\xc8\x95\x58\x5f\x7d\x30\xba\x25\xc4\x98\xfd\x15\xad\xf0\xf9\xac\xa2\x62\x2b\x9c\x13\x64\x83\x98\x74\xe3\x0a\xd1\x75\x7c\xbd\xf9\x3e\x5e\x09\x3e\xa8\x7c\x58\xd1\xc9\xdc\x2b\x18\x2b\x3d\xcf\x34\x67\xb8\x16\xbd\x26\x1e\xd1\x6c\xf2\x5f\x10\xda\x14\x43\xde\x15\x22\x2e\xa6\x33\xa7\x98\x38\x10\x62\x9d\xed\x4f\x78\xfb\x94\x2b\xcf\x12\x9b\x9c\xbd\x65\x26\xc4\xa2\x8d\xf6\xa2\x2d\xc4\x1c\x73\x23\x6f\x0a\xe3\xbb\xc2\x58\xfe\x9d\xff\x8b\x5f\x57\x3a\x87\x1f\x80\x9f\x28\x72\xe0\x15\x53\xe3\xf3\x1d\xb9\x0f\x93\xdf\xe5\xad\xe2\x6e\x8e\x59\xa9\xfb\xcc\xc9\x0b\x2e\xd7\x94\x71\xe6\xf9\xf8\x2b\xd7\xb2\x8f\x39\xaf\x96\x66\xb1\xaa\x36\xfa\x0a\x39\xcc\xff\xcc\x3f\x72\x0f\x33\x6d\xe5\xa4\x72\x5b\xd5\x1e\x9e\xb4\x64\x87\xe2\x3f\x6c\x4d\xa1\xbf\x5c\x4a\x71\x32\xee\x97\x2d\x4e\x7a\x9a\xbb\x55\x92\x1f\xbd\x5d\x37\x4f\xec\x7c\xe8\x95\x7a\x58\x78\x7e\xef\x45\xc5\x2e\x81\xe3\xce\x3b\x92\x6c\x1e\xba\x31\x48\x50\xce\x69\x59\x19\xca\xa1\xb0\x6e\x4a\x6f\x94\x25\x1b\x37\x70\xff\x2c\x66\xe4\xfd\x0f\xb9\x5e\x50\xa1\x9f\x42\x9e\x6a\x28\xd4\xf6\x26\x9e\xd7\x73\x35\x99\x47\x5d\xb5\xb1\x2a\xab\x43\x26\xea\x65\xf2\x81\xbd\xeb\xe4\x46\xa9\xf9\x4e\x50\xfc\x41\xe4\xb7\x71\x97\x60\x12\x3f\x74\xa5\x96\x7d\x86\xe3\x26\x61\x96\x2d\xac\xdc\xce\x3e\x5b\xbc\xb1\x2c\x09\x96\x14\xf8\x14\x33\xb2\xce\x19\xb6\x17\x50\x12\xea\xf5\x0b\x0d\x07\xa2\xdc\xb3\x5f\xe9\x17\x07\xed\x55\x15\x66\x57\x79\x13\xf2\xe5\xca\xf7\x4e\xdf\xc4\xc9\xd2\xd7\x1b\x17\xf0\x41\xe1\xf0\xca\x01\xf6\x1e\x6e\xb2\xf8\x59\xe9\xf3\x3a\x77\xf6\xf6\xe2\x19\xd5\xf6\xd0\xd7\x02\xf3\xf2\x2f\x59\xee\x86\x19\x25\xb2\x84\xcd\x39\xb7\x0b\xa7\x45\x5e\xce\xae\x37\x84\x05\xbe\x52\xc5\xe7\x64\x79\x6f\x93\xdd\xd2\x6c\x76\x1a\x16\x5b\xc8\xd5\x1b\xa7\xf1\x37\x89\xae\xad\xbc\xc6\xfa\xc2\xbd\x23\x8e\x2d\xed\x69\xd2\xb0\xda\x8a\x6e\xd6\x07\x41\x70\xfe\x9b\xea\xdb\x99\x17\xf2\xce\x56\xac\x3d\x71\x36\x47\x53\xe2\x19\x09\x67\x1f\x2b\x70\x08\xac\x54\x2d\xcc\xbd\xe3\xf5\x53\xc6\xd0\x2e\x75\x2a\x16\xf5\x29\x3e\x6f\x9c\xc1\x3b\x23\x2e\xb7\x98\xca\x92\xf3\x4c\x98\x99\x1d\xa2\xac\x93\x10\xad\xa5\x90\x54\x9e\xf5\xa3\xa1\x9f\x8c\x27\xbe\xaa\x39\x45\x89\x8d\x66\x57\x94\x51\x33\x43\x6e\x94\x44\xd0\x2a\xfd\x0a\xf2\xaf\x00\xf3\xdd\xf5\xfa\xdf\x60\x95\xe3\x4d\xcd\x7d\x38\xdc\xa6\x58\x9e\x80\x9a\x98\x2e\x14\xe6\x63\x9f\x98\x41\x1d\xf3\x29\xbe\x50\x58\xcb\x16\xca\xbb\xac\x07\x0d\x51\x54\x45\xe2\xb9\x9a\x64\xda\xae\xe8\x13\x15\x81\xf4\xa5\x21\xbd\x25\x7f\x01\x26\x7e\xe2\x7c\x21\xb8\xd7\x5d\xa2\x1f\x84\x0c\x8e\x37\x34\xb5\xc8\x34\x9b\x66\xb9\x2b\x0a\x9a\x6e\x12\x62\xf8\x74\xe6\xfa\x76\x35\xed\x3f\xc8\xbe\x79\x98\x1e\x95\xd5\x5a\xff\x99\x7e\x3a\xb1\xb8\xe6\x4f\x60\x4f\xb4\x47\xf9\x04\xf0\x32\xc4\x58\xdc\x02\x76\xfb\x51\xf2\xb7\x41\x0d\xee\xb8\x9e\x0e\x0f\x39\x5e\xd5\xa4\x22\x0f\x6d\x4e\xca\xa7\x61\xf3\x4d\x03\x85\xbe\xf8\x7e\xe2\x75\x5b\x15\x12\x08\x9e\x6b\x7a\x89\x1c\xce\x72\xaa\xdf\x88\x84\x27\xba\x54\xef\x41\x88\xa3\x6f\xcb\xb7\x22\xe7\x43\xc2\x8a\x3e\xa3\x2e\x7e\xee\x46\x18\x1d\x75\x8f\xcb\x39\x8d\x45\x38\x8e\xab\xcf\x63\xef\x6c\x9e\xcb\x92\x71\x95\x69\xb1\xa0\x8d\xe1\x4c\x2c\x6b\xbd\x4a\xd4\x81\x0e\x4d\x0b\x08\x71\xe6\xe9\x3a\x7f\x22\x2c\xe1\x46\x55\x2a\x61\x7e\x34\xa7\xec\x18\x31\x35\x64\x7e\x91\x2d\x31\xc5\x6f\x96\xa1\x95\x58\xec\xee\x91\x33\x8b\xb0\x72\xbc\xaa\x5e\x4c\x6c\x5b\xb7\x58\xda\x4a\xec\x33\x9b\x2a\x98\x4a\x44\x32\x18\x2d\xdf\x79\x37\x81\x92\x46\x27\xde\xce\xcc\xfd\xb5\x00\x57\x9b\x90\x50\x99\xc7\xf9\x78\xd4\xa9\x34\x87\x93\x10\xdc\x5b\x18\xcb\x7e\xbb\xef\x74\xde\x5b\x36\xee\x6e\xa2\xf3\x66\xcf\x74\xbc\xa2\x0a\x65\x09\xd6\xb9\x4b\xbe\xb1\xa6\x9a\xc5\xf1\xbd\x98\x54\xfc\x42\xf3\x6d\xf9\x2f\xfa\xad\x86\xcd\xb2\xb1\x8c\x63\x35\x74\x29\xef\x84\xb2\x42\x2b\x71\x8d\x42\x4a\x94\xe2\xc9\xc1\x66\x05\x51\xc2\x73\xfb\xfc\x73\xdf\x0a\x34\x6e\xd7\xb5\x3e\xfc\xbd\x8e\x63\xca\x08\xee\xbf\xeb\xa8\x92\x49\x1c\xaa\xd9\x7d\x9e\x1f\xeb\x03\x36\xd6\x6c\xa7\x1f\xa5\x8d\xd7\x67\xe9\xae\xa4\xa7\x55\xd7\x66\xdf\x38\x5e\x53\x7e\x56\x7d\x3d\xb2\xa6\x78\x48\x79\xfd\x50\x52\xbe\x5c\x3e\xee\xdb\x9f\x6b\x29\xed\x75\x03\xb3\x59\x62\xa6\x63\x99\x42\x2b\x34\x5b\x27\x12\xbb\xf1\x6a\xcd\xb7\x73\x25\x1c\x13\x74\xbc\x49\x53\xf2\x3f\xea\xab\xba\x17\x85\xd5\x69\xd2\xea\x0d\xf9\xa6\xc7\x6e\x94\xbb\xe7\xc5\x45\x3c\x2b\xde\x98\xa3\x0f\x1a\x34\xfe\xcc\x1e\xf5\x75\xd2\xab\x55\x97\xdc\x96\x69\x5e\xc9\xf3\x1c\x33\xe5\x9f\x25\xb6\xeb\xe4\xa2\x62\x41\xb5\x39\xc8\xf9\xca\x9d\x83\xee\x6b\x8a\xac\xa8\xa4\x52\xeb\xea\x4a\x1f\xa6\x59\x57\xbd\x2f\xfa\x74\x8c\x5e\xf6\x2b\xff\x59\x84\xac\xe8\x71\xde\x70\x10\xdd\xd8\x94\x23\xf5\x9d\xa2\xf7\xcd\xde\xb0\xeb\x9d\x26\x4f\x89\x3b\x46\xc9\x0b\xa5\x92\x75\xd9\xa2\x40\xa1\xd0\x5c\xcf\x29\xe7\xc6\x23\xe7\x9b\x56\xd6\xe4\x50\xe7\xd5\x65\x54\x62\xa9\x97\xab\x6a\xcb\x3c\x8f\xad\x2b\x6b\x28\xfa\x2f\x62\x7f\x91\x24\x1f\x0b\xf2\x34\x86\xe5\x4e\xf8\xdc\xcb\x79\xab\x73\xdc\x75\x57\xb3\x5d\x6d\xe2\x18\x25\xdf\x26\x6b\x5a\x57\x2b\x7c\x26\xda\x66\x7e\x86\xb3\x8b\x2b\x85\xf0\xbe\x08\x52\x25\xa9\xaf\x6b\x17\xf9\x58\xb2\xaa\x6d\x39\xc5\x3c\x6e\x72\xe3\x20\xe5\x5d\xb8\x5d\xed\x76\xea\xfb\x00\x8b\x0a\x80\x6e\xe9\x5d\x52\x9c\x06\x70\x5d\x10\xe3\x1c\xc8\xc4\x7e\x40\x77\x18\xbe\x60\xd5\xa2\xb4\x45\x51\x93\x14\x51\x09\xbe\x07\xa2\xf7\x3e\xa7\xfe\x49\x6a\xef\x1c\xa7\xaa\x93\xc5\xad\xad\x34\xd3\xd8\x4f\x8d\xf1\xb4\x8e\xf0\xd5\x35\xf7\xe9\xac\x80\x65\x15\x6b\x01\xa6\xb7\xa1\xd8\x02\xac\x71\x41\x0c\x67\xa0\x9f\xf6\xc3\xba\x95\x48\x82\xd5\x98\xe2\x07\x7a\xc1\x84\x2f\xc2\xf0\x7d\x50\x62\x2f\x85\x2e\x25\x55\x74\x1e\xa7\x3f\x4f\x46\x5b\x0f\x00\x1e\xb1\x8f\x1b\x27\x01\x15\xe1\x8b\x6b\x70\xd0\x33\x60\x4e\xf9\x18\x34\xdf\x5b\x5b\x74\x1a\x9e\xe2\x02\x1a\x60\x64\xa1\xfd\x69\xed\x4d\x74\x9b\xd5\x03\x45\x17\x16\x6e\x52\x23\xda\x83\x0b\xa1\x9d\x3d\x02\xc4\x40\x4a\xed\xe0\x20\x39\xc9\x5b\x5a\x68\x88\x3a\xb6\xaa\xc1\x0e\x69\x0d\x7b\x5e\xdd\x8e\xfc\x3a\xf8\xa2\x7c\x2a\x9a\xec\xcd\x2a\x9a\x86\x7e\x76\xa1\xe5\x0d\x62\x12\xfb\xeb\xda\x8d\xf8\x46\xeb\x39\x8a\x25\xf8\x98\xc9\x6f\x61\x39\x23\x03\xac\xe8\xce\x21\x2e\x91\xa6\xb7\x6b\x88\xc2\xa4\x37\xcd\x1c\xe2\x58\x6c\x7a\xbd\x37\x61\x1d\xd6\x59\x75\x9d\xf8\xeb\xe0\x50\xd9\x5a\x62\x8e\x77\x62\xa1\x2d\xb1\xca\x25\x25\xf7\x13\xe1\x62\xff\x24\x3b\x91\x88\xb0\x76\x93\x1f\x26\xb2\x4c\x8f\x0a\x9e\x13\x02\x30\xaa\xab\x99\xd7\x96\xd5\xd2\x56\xcf\x5b\x90\x94\xdf\x94\xc7\x4d\x8e\x5d\x57\x17\xcf\x39\x1d\xc6\xa8\xfc\xc6\xf1\x3c\xa8\x2a\xf5\x65\x9f\xf5\xde\x5b\x10\xc4\x8e\x73\x89\xce\x5d\xc5\xfa\x61\xff\x5e\x93\xcf\x92\x5a\x67\xca\xe4\xac\xa5\xa6\x03\x82\x55\xcc\x1c\xa0\xab\xb3\x50\x1e\x92\x35\xad\x35\x57\xb6\x2a\xf1\x59\x23\x5b\xf2\x24\x06\xaf\xf5\x15\x97\x85\xbe\xa8\xb8\x27\x02\x0f\x2e\x29\xd9\x2c\x0c\xf4\x7a\x9b\xef\x2a\x58\xef\xe2\xa0\x5f\xcc\xfb\xbc\x65\xba\x5a\xc6\x6d\xb0\x6e\x97\xf2\x38\xc7\xcc\x3c\xf9\x26\xec\x69\xf4\xeb\x1d\x6d\x39\x60\xe6\xa6\x96\x36\xad\x36\xd1\xac\xa1\x50\x53\x15\x3d\x54\x73\x4c\xd5\x13\xba\xab\xfc\x8b\xe2\x9a\x3f\xb7\xd8\x5f\xf6\xc2\x0b\x37\x46\x4b\xfe\x73\xfe\x92\xb3\x5d\x74\xd7\xfe\xb7\xaa\x43\x50\x6a\xfd\x50\xd2\xc1\x4b\x31\x2b\xe2\x05\x73\x16\xd1\x1d\x3a\xa6\x17\xed\xc9\xe0\xb6\x2c\xcc\xbf\x99\x40\x6d\x98\x69\x08\x89\x5e\x55\x3d\xa8\x6f\x3d\x5c\x51\xbe\x4f\xf7\x3f\xff\x3f\x8b\xca\x34\x71\x5e\xab\x0c\xbd\xca\x1c\xe7\x2e\x9d\x52\xa6\xb7\x7f\xab\x9a\x25\x4e\xb1\xfe\x25\x59\x28\x70\x30\x7b\xc7\x6d\xe7\x3c\xa1\x9d\x6a\x1f\x2e\xa3\x65\xd8\x36\x5f\x28\xee\x48\xb0\xae\x1f\x28\xb8\x77\xf4\x46\x75\xa6\xe1\xf5\xe1\xe3\x65\x13\xfa\xff\x0e\x5c\x2d\x0a\xd4\xbe\xda\xf3\xc3\x90\xaa\x1e\x70\x2e\xd6\x39\x2b\x02\xed\x5f\x29\x6b\x24\x95\x36\x73\xc5\x5d\x82\xef\xe6\x8b\xb9\xc7\xb8\x1b\x69\x71\xed\x78\xd5\xf4\xf4\xdb\xcd\xec\xf2\xa9\x27\x9e\xd6\xa7\x15\xff\x7b\x34\xbf\x7a\x59\x41\xe3\x61\xc7\x32\xa5\x21\xf9\x40\x43\xe1\x1b\xfd\xd2\x3d\xcf\x0c\x33\xb3\xb3\x9d\xf3\xb5\xe7\x94\xc3\xf6\x3f\x95\xce\xd2\x7a\x1b\x3b\xf1\x01\xa1\xca\xdc\x87\xf3\x9d\x1b\x48\x99\x3d\xbc\x81\xdc\x9b\x1a\xde\xf7\x89\xb2\xf7\x58\x48\x57\x05\xe5\x46\xa4\x49\xdb\x9f\x54\xf1\xa1\xfe\xc6\x8d\x34\xd0\x6f\x53\xcd\x02\xba\xc1\xd3\xbf\x4c\x0f\x7c\xdc\xf1\xb2\x60\x04\x22\xec\xfe\xd6\x73\x91\x75\x6b\x97\xa8\x7a\xd0\xfe\x15\xbf\xc5\x5c\x3c\x81\xb2\x74\xa8\x9f\x36\x35\x35\xb1\x4f\x48\x8b\x3d\x16\xdf\xe5\x41\x1b\x8d\x5c\xdb\x5a\x41\xdf\x7b\xe8\x54\xc3\x65\xfa\x4f\xbf\xad\xd5\x9d\xc0\x6b\xcf\xc3\x65\x3e\xd0\xec\x1d\x6f\x0b\x50\xf8\x90\x9d\x99\xde\x07\x69\x5b\x6b\xa7\x62\x63\x7f\x98\x2c\x17\x1f\xc1\x8f\x53\xcc\x87\x82\x80\xe4\xd4\x8c\x3e\x73\xa0\xf0\x58\x72\xe7\x75\xe0\x41\xa4\x4d\xab\x1b\x68\x73\x68\xb4\x21\x0d\xac\xf1\xdb\x51\x1d\x06\xa5\x78\x46\x96\xbe\x80\x83\x76\x7c\x2e\xb0\x46\x8e\xda\x59\xe5\xfc\x40\x91\xb5\x5e\x2a\x57\x8c\x6f\xe2\x24\x5e\x81\x17\x91\x7f\x0e\xc6\xa1\x5b\x52\x03\x7b\x1d\xd0\xa5\xc7\xfc\x3b\xde\xa2\x53\x22\x97\xb6\xc4\xa3\xf3\x0e\xf5\xd7\xe7\xa0\x3e\x7e\xdb\xaa\x38\x68\x95\x67\x5c\xe9\x32\x6c\xa3\xd3\xb4\xfc\x58\x6c\xc8\x6e\x67\xce\x6e\x3c\x7a\x2d\x45\x29\xc4\x9f\x9b\x70\x45\x64\x06\x8b\x5c\x39\x10\xcc\xdc\x9b\x6a\xd1\x63\x4b\xfc\x3c\xe6\xd8\xfe\x82\xa8\x89\x9c\xda\x7c\x82\x88\x39\xd4\x54\x57\x4a\x38\xfb\x6d\xac\x54\x13\x76\x9e\xb1\x25\x1b\x08\x57\xa7\x3f\x8d\x4c\x22\xc2\x2e\x48\x97\x45\x80\x6b\xab\x14\x03\x04\xdf\xe4\xa1\xb0\x8a\xc8\x23\x57\xf6\x47\xf1\x26\x52\x67\x77\xdb\xf1\x9c\x8e\xfd\xaf\xed\x05\x97\x15\xf1\xb8\x29\x8d\x73\xfd\x90\xa1\xb6\x85\xb3\xdf\xcf\xac\xa2\x84\x7d\xd6\x33\xa2\x78\x17\x3b\xca\x69\x91\x21\x9f\xf5\xcb\x2e\x59\xab\x67\x69\xd6\xde\x95\xbf\x67\x59\x9a\x7a\x08\x6e\x31\xab\xc8\x8b\xfa\x0e\xc9\xcd\x53\xa8\x5d\xf3\xa5\xb7\xe3\x59\xad\xad\x12\x6d\x44\x6c\xa3\x93\x38\xf8\x90\x75\x0d\x2e\xb2\xdd\x37\x50\x4e\x16\x4e\xf5\x34\x2f\x5a\xc8\x7f\xb8\xe3\x77\x1e\xc2\xeb\xb5\x53\x67\xd3\xb8\x42\xab\xcd\xb2\x1b\x9c\x20\xd3\x11\xfe\x69\xf6\x6c\xd2\xfe\xde\xd5\xba\xea\xe4\x91\x8e\x6f\xd9\x27\xe3\x1e\xb5\x34\xab\xef\x1e\x39\xdb\xb0\x5d\xf9\x31\xa8\xa0\x1a\x53\x2c\xdf\x17\x50\x46\x97\x6d\xf7\x38\x57\x68\x26\x39\xb8\xe3\x71\x2e\x57\x14\x6a\x57\xae\x11\x09\x3c\xac\x92\xa5\xdf\x78\x5b\xcc\xd6\xf2\x3e\x73\xa6\x67\xfd\xe8\x09\x2a\x9c\x9a\x1c\xdd\xb1\xc3\x48\xc4\x65\x35\xff\xcc\xfd\x72\x24\xb2\x9e\x9e\x13\x1f\xb4\xad\xaa\x2d\xfb\x8a\xef\xaf\xd2\x76\xb5\xab\x87\xaa\x20\x51\xa1\xd9\x31\xaa\xbf\x2c\x1d\xb2\xeb\x54\x9f\x15\x9d\xb4\xca\x91\xee\xe5\x9f\x35\x03\x78\xc1\x9c\xde\xac\xca\x9e\x59\x25\xe3\xc9\xe6\xed\x4f\x8b\xfe\x8a\x73\x6e\x2e\xce\xdf\x7e\xc4\xa6\x7e\x79\x5e\x48\xd0\xcc\xaa\xa0\x9c\x2c\xdf\xdb\xa5\x87\xb3\x45\x1e\x58\xc1\x1c\x95\x70\xc7\xb0\x9e\x24\x3f\x68\x37\xaa\x4e\x10\x3f\xb6\x6a\x91\xbc\x16\x20\x66\x85\xbc\x49\x9c\x9f\x59\x51\xdd\x9d\x15\xd3\x92\x1e\xb5\xcb\x4a\xa7\xc7\xcd\x6f\xf6\x2c\xfc\x78\x64\x6a\x5d\x83\xf1\x6a\xe0\xb3\xca\x7f\x73\xab\x7c\x47\x4b\x9e\xe9\x70\x0f\x28\x3f\x5f\xb3\x79\xc7\xf5\x9c\x2f\x8a\x5c\xbb\x27\xaa\xf7\x92\x73\x56\xf7\x25\xb0\x70\x8a\xd9\x75\xae\x86\xbb\xe2\xe1\x6e\x6a\x46\x46\xe7\xb8\x39\x6d\x41\xe6\xb9\x11\x90\x56\x97\x75\xa3\xe5\x3b\xdd\x89\xf4\x6f\x49\x25\xfd\x1c\x65\xba\x8a\x03\x24\x51\x0f\x10\x7f\x83\x2b\x68\x95\x69\xb6\xe0\x4b\xc0\x24\xb4\x19\xba\x06\x0a\xdc\xcd\xe0\x7b\xd0\x0f\xeb\x99\xe8\x34\x04\xfb\x27\x94\x52\x4c\xd6\x5c\x09\xa6\xfa\x53\x22\x87\x47\xa9\x9f\xa9\xe6\x2d\x07\x68\x6a\xea\xbd\x92\x69\x74\x17\x5a\xa3\xf2\x1d\xfd\x15\xbd\x92\x21\x03\x1a\x80\xfa\xd4\x46\x50\x09\x8e\x84\xfa\x41\x32\xe8\x9a\xdb\x05\xb8\x1a\x7e\x64\xf5\x08\xf9\x17\xf9\xf5\x20\x96\x7c\x8f\xae\xba\x8c\x53\xe4\xc0\xff\x86\xff\xa2\xba\x03\xc2\x66\x39\xf5\x13\xf0\xbd\x38\x80\x56\x03\x12\xca\x00\x7a\x0a\x64\xc3\x98\x05\xb8\x41\x77\x53\x77\x82\x5b\x60\xf5\xe1\x1b\x90\x07\xe2\xe9\x26\x85\x53\x90\xd7\x56\xa7\x91\x66\x54\x77\xaf\x96\x14\xcc\x98\x74\xb1\x89\xec\x80\x9f\x19\xdc\x4e\xf9\x1f\x2e\x6b\x9c\xa0\x5c\xc4\x13\x0b\x9f\x51\x75\x78\x90\x62\x31\x2d\x03\x8f\xc0\xa7\xd0\x8f\xe0\x89\x29\x01\x40\x32\x7e\xfc\xf0\x7c\x50\x8b\xfb\xbb\xad\x86\xae\xe3\x1b\xad\x6a\x11\x67\xec\xdb\x9d\xd1\xcc\x5f\xfc\xd2\xf3\x2f\xb3\x5e\xf0\xce\xf7\x23\xa4\x0b\xdc\x8f\x0d\xe1\xe4\x22\xee\x86\x82\x74\x0a\x8b\x43\x95\x8d\x50\x33\xd8\xe3\xe8\xbf\x34\x0a\x7b\x43\x72\x04\x3d\x97\x45\x0e\x41\x80\x1b\xcc\x92\x5d\x67\x20\x07\x22\xcf\xaa\x1f\xae\x66\x20\xb7\xca\x33\x1e\x29\x5e\x9f\x9d\xc8\x1c\x90\x1f\xeb\xed\xcd\xaa\x92\x3e\xa8\x6b\x23\x29\x25\x99\xc6\x37\x64\xb6\x78\xb6\x34\x95\xc2\x11\xd6\x23\x03\x54\x83\xc0\x3b\xe9\x18\xed\x16\x6f\x24\xf8\x06\xb0\x86\x6b\xb5\x0b\x06\x35\xec\xf5\x56\x97\x61\x13\xe6\xec\x1b\x73\xd2\xc9\x05\xe8\x58\x72\x06\xc5\xb8\xb4\xdb\x35\x33\x39\xb7\xbe\x26\x32\xeb\x48\x8e\x7d\xde\x30\x29\x3c\xbb\x56\x8c\x93\x53\xd4\x96\xf0\x72\x8a\x4e\x41\x4f\xb4\xa1\x3e\x96\x1a\x0e\x3d\xa2\xfb\x88\x38\xbb\xfe\x00\x2e\xf2\x67\x5b\xbd\x86\x92\xd8\x41\x57\xb7\xa6\xa5\x35\x1c\x3a\x75\x31\x9d\xa8\x79\xd5\xf1\x20\x43\x50\x49\xaf\x5a\x91\x89\x97\xde\xd6\x57\x65\xb1\x8a\xac\x85\x7a\x52\x91\x31\x04\xa4\x93\xef\xe9\xf7\x9e\x78\x48\xdd\xa6\x79\x1b\xf4\x8c\x56\xa7\xd8\xee\xca\x00\x7c\xc4\x0b\xac\x26\xc0\x4f\x5c\xf9\x95\xe8\xd4\x7f\x06\x2c\x47\x46\xd3\x26\xba\x5b\xdb\x9a\xd3\x3f\xb7\xdb\x55\xcc\xce\x78\xdb\xc4\xd2\xb5\x67\x7e\xaa\x2d\xe3\x5f\x26\x2d\xaf\xd0\xd0\x9f\x90\x23\x8b\xd7\x1f\xaf\xa3\x34\x19\xf6\x04\xad\xa1\xd9\x64\x3f\x70\x35\xa1\xdf\x92\xbd\xb1\xfa\x09\xea\xf9\x9c\xcb\xa4\xd4\xd6\x51\x60\xf8\x5d\x5a\xff\x50\x71\xeb\xad\xf4\xde\xde\xb2\x72\xfb\x8c\xba\x0e\x58\xfb\x2a\xb3\xa9\x79\x21\x7f\x49\xd6\xb5\xda\x24\xba\x27\x79\x59\x79\xf0\xf1\x2d\x94\x94\x82\xca\xc0\xdb\xd4\x3b\x39\xc9\xae\x93\xe9\x6a\x85\xca\x7a\x21\x18\x29\xb0\xbf\x34\x98\x2a\x3b\x7f\x65\x78\x4f\x9a\xf8\x74\x65\xab\x63\x3a\x36\xec\x53\xa6\xc8\x48\xe8\x6d\xd6\x86\x64\xc6\xb7\x5f\xe0\x49\xb3\x18\x8d\x79\xb4\x8b\xa4\x81\xaa\x17\xc7\x5e\x52\x66\x16\x73\x02\x07\xa8\x99\xb9\xb0\xeb\x1c\xfa\x46\xe5\x49\x6b\x6f\xe0\xbb\x20\xeb\xce\x6f\xc0\x26\x63\xd3\x85\x78\x80\x9a\x19\x31\xe0\x04\x8c\x66\x81\x8d\xe6\xe0\x2a\x92\xb4\x70\x0b\xc8\x22\x77\xca\x09\xf0\x09\x75\x01\x26\x84\x8e\xd0\xe0\x14\x13\xe8\x39\xfd\xeb\xe1\x2d\xb0\x04\xc4\xdc\xd6\x23\xc1\xf0\x42\xab\x73\xe8\x66\xa4\xf5\x8e\x2d\xfd\x08\xe9\xe7\xf9\x7c\x7a\x37\xf9\x56\x3f\x01\x58\x50\x6a\x1a\x52\x00\x21\x15\x28\x60\x83\x93\x69\x61\xb2\xc7\x20\x89\x1e\x83\xfe\x06\xbf\x02\xb4\x64\x1d\x94\x0b\xe6\x84\x54\xc2\xa1\x50\xdf\xae\x51\x64\x23\xfc\xca\x8a\x8f\x2e\x47\x2d\x6f\xfb\xd3\x14\xb4\x37\xe7\x4e\xd3\xff\xa0\x43\x7d\x7d\x74\x08\x98\x5e\x5f\x4b\x7f\x0f\xb0\xf3\xaf\x00\x64\x70\xb9\xcc\x0b\x98\x00\x2f\xa1\x14\x50\x0c\x69\x92\xd7\x42\xbb\xe0\xe8\x10\x1f\x78\x36\x62\xb3\x4b\x08\xbf\x41\xde\x59\x65\x21\x2f\xd1\xde\x9b\x02\xea\xff\x70\xcb\xb3\xb3\xa8\xc5\xf8\x5f\xbd\x93\x68\xce\xd8\xab\xba\x95\xb4\x51\xec\x92\x11\xa0\x47\x62\x63\xd2\xff\xd1\x7f\x60\x8f\x11\x0a\x50\x85\xcf\x4c\xf2\x00\x21\xdc\x22\x58\x0f\x45\xe3\x9b\x77\xad\x87\x63\x70\x1b\xab\x44\x84\x8a\x9b\x5d\x57\x92\x2f\xf1\x8a\xc7\x3c\x28\x99\xdc\xd7\xdd\xfe\xd4\x05\xdc\x4d\x35\x2a\x6a\x0d\x07\x36\x2c\xa2\x05\xb1\x6f\x8a\x6f\xd2\xa7\xb2\x0f\xc0\xa9\xf4\xd3\xac\x81\xc4\x63\x40\x1d\x6b\xcd\xa1\x5f\x60\x39\x93\xec\xfa\x10\xea\x23\x64\x56\x38\xfc\x82\xa1\xbb\x5a\x49\xaa\x95\x77\x8e\x26\x92\x83\x65\x11\x9d\x3a\xca\x0c\xc9\x44\xd5\x37\x4a\x8d\x38\x3f\x57\x4f\x8d\x16\x05\x88\xc4\xb4\x55\xc2\x45\x50\x08\xed\x2b\x7f\x2c\x81\x41\x7f\xc7\x8b\x3b\x94\x06\x7c\xe2\xfc\xe3\x5a\x00\xad\x64\xff\x65\x55\x0a\x07\x33\x57\x5d\xfe\x91\x15\x92\xbf\x60\xe4\x2e\x69\x41\xde\xe5\xf6\x35\xa4\x61\x3d\xbb\xa2\x96\x4c\xd1\x59\xe5\x30\x28\x8e\x9a\x61\x41\x25\x75\xb6\x2a\x02\x68\xa7\x4e\xc8\xaf\x9c\xf0\xa1\xfd\x90\x9a\x05\x89\x81\x25\xa2\x4d\xae\x9e\x60\x30\xef\x81\xd5\x25\xc8\xc8\x3e\x7a\x31\x2a\x33\xaa\xae\x6c\xe8\x48\x96\x45\x75\x44\xcb\xf9\xac\xfb\x15\xd3\xcb\x68\x24\x4d\x89\x4c\x4b\x21\x47\x14\x4e\xe3\x5d\xa0\xec\x32\x84\xd2\x4d\xa9\x4e\x39\xa4\xe3\x7f\xd2\x0e\x68\xf6\x06\x16\xd1\x21\xf9\x88\xcb\x0d\x60\x44\x74\xd9\xea\x05\x64\xc1\x15\x9c\x3f\x92\x31\xd2\xb7\x74\xc0\x3b\x53\xd2\x79\xbd\xa9\x3a\xcb\xbb\x15\x2d\x49\x27\x4d\x69\xf8\xad\x91\x92\xce\xd6\x1c\xe4\x2e\x24\x37\x95\x27\x52\xb5\x94\xb6\xa2\xf5\xf1\x77\xa9\xa7\xf3\x28\x01\xb7\x69\x5f\xb2\xbd\x5c\x28\x40\xb0\x4c\x69\xf5\x15\x1c\xe2\xa7\x9d\x23\x65\xc8\x4e\xba\xf5\xa7\x64\x06\x0c\x14\x34\x9e\xcf\x9a\xd5\x7d\xb5\x38\x27\xab\xbf\xed\xae\x7a\x94\xc4\x6b\x2c\xe1\x44\x91\x53\x6b\x6c\x28\xdf\x28\x99\x65\xee\xf1\xc7\xa8\x8c\xfc\xb1\x00\x15\xad\x5a\x37\xe8\x12\x0e\xcc\x57\x6c\xb2\x5e\x0c\x32\x04\x7f\x9f\x1d\xc9\x38\x7a\x96\xd4\xd7\x9f\xb9\xe4\x14\xaf\xd1\x2a\xf3\xd4\xe0\xd1\xa2\x6f\x59\xb4\x9e\x49\x6a\x07\xd2\xf6\xb6\x83\xec\x1b\xe4\xa5\x0d\xbe\x14\x01\x65\x49\xe5\x68\xbc\x09\xd5\xbc\x28\x3b\x80\x4a\xf3\xd4\x9f\x72\x89\xa1\x57\x29\x8f\x58\xfb\x81\xa6\x82\xe0\xeb\x1c\x78\x6a\x7a\xe5\x58\x16\xf4\x3b\xe3\x4d\x77\x3f\x3c\x3b\xcb\xb4\x76\x01\xbc\x85\xe4\x6c\x10\xc0\x09\xe4\x2c\xc9\x1e\x38\x9b\x72\x01\x1e\x82\xaf\xd1\x3c\x12\xcf\x23\x96\xf4\xb1\xe0\x10\x44\x08\x46\xba\xfe\x42\xe7\xc0\xb3\xad\xf6\xa3\xc5\xc8\xd8\xb5\x73\x90\x3d\x29\xe9\x74\x35\x74\x80\x1c\xda\x3d\x09\x22\x53\x9c\x6a\x8e\x40\xa5\xd4\x85\x79\x37\xa1\x17\xd4\x5f\xe2\x52\xd8\x9a\x3e\x07\x76\x80\x01\x60\x63\xa2\x1f\x7c\x1b\x3c\x7a\xe8\x3e\x72\x08\xd2\xb8\xe6\x20\x4f\xe0\xbb\x56\x33\x50\x31\xea\x70\x6d\x36\x78\x82\xe6\x37\xfa\x12\x2c\xa4\x3d\xed\x72\x02\xff\xa1\xc3\xd5\xb9\xd0\x22\xe0\xaf\xbc\x75\x50\x2c\x50\x23\x9e\x03\xd5\x83\x19\x50\x2d\xfc\x3f\xc8\x33\xe1\x16\xcc\x84\x4d\x0f\x21\xc8\x7c\xf8\x9b\x6b\x34\x52\x8f\xdc\x5e\xfb\x0e\x4d\x40\x4f\x8d\x3b\xd0\xdf\x61\x07\x4e\x59\x00\x9e\x98\x5f\x87\x14\x50\x63\x1e\x55\xcb\x80\x37\xd8\x66\xfd\x4d\x30\x10\xdb\x29\xbc\x0f\x76\x60\x27\xc0\x46\xc8\x1e\xd3\x27\x4c\x83\x06\xb1\xb3\x41\xd7\xe0\x14\x6c\xc2\x75\x1a\x62\x8d\xcf\x5e\xfb\x12\xf9\x82\x9b\x5f\xb6\xa5\x8d\x72\x8b\x47\xe2\xe8\x2b\xb9\x73\xda\x9e\xd1\x99\x9c\xe3\x15\x46\xfa\x03\xf6\x68\x0e\x13\x08\x64\x6f\x17\x34\x00\x67\x59\xfd\x40\x1b\x18\xca\xda\x7b\x62\x2b\xf8\x83\x79\x32\xc8\x0f\x6a\x66\x6e\x76\x39\x07\xb3\x89\x14\xab\xc5\xc8\x71\x46\xde\x45\x90\x9a\x27\xe3\x0d\x95\xd2\x16\x4a\x03\x5a\x77\xd2\x64\x92\x99\xe5\xf3\x69\xef\x44\xe7\x75\xcb\xe9\x89\x42\x2d\x3f\x8b\xfe\x41\x90\x49\xaf\x04\x64\xfc\x5d\xc7\x8f\x80\x9e\xdc\x89\xc0\x93\xd0\x54\x8e\xcc\x45\x03\x3d\x61\xfd\x6b\xe5\x09\x5f\x62\xae\x3e\xd7\x45\x89\x32\x14\x0f\x2c\xa7\xdc\xcc\xe5\x36\x5d\xa2\xfa\xe5\x04\x97\x9c\xa3\x76\x6a\x97\x67\xcf\xa0\x79\xa8\xc7\xb9\x5a\xda\x3d\xa5\x80\xb6\x98\x2e\x95\x5b\x1c\x5b\x07\x04\x48\xe4\x01\x1f\x41\x4b\xe1\x69\x17\x77\x68\x19\xaf\xd4\x0a\x80\x17\xb3\x0f\x9f\x09\x22\x53\x6a\x26\x7a\xeb\xc9\xaf\x2a\x87\x1b\x08\x4a\x7c\x99\xa0\x48\x4f\xb9\x53\xec\xaa\x9e\x4c\x4d\xce\xbf\xca\x1e\xa6\x2d\xca\xf3\xa7\x30\x68\xe3\x3a\x45\xdc\x3b\x7a\x91\x5a\x15\xb0\x08\xe0\xc9\xdd\x9d\x1f\x81\x5c\x11\xc3\x2a\x1f\x92\x71\xc9\xa7\xd7\x90\xae\xf4\x4c\xeb\x96\x93\x03\xdb\xff\xab\x8b\x27\x9f\x6c\xee\x2b\x30\x52\xbc\xea\x49\x4a\x2b\xca\xad\xaa\xd7\xac\x85\x54\x5e\x99\x1d\x79\x26\xed\x40\xa1\x59\xec\x28\x7d\x65\xae\xee\xe0\x7e\x60\xa6\xc6\xe8\x8c\x81\x4b\x64\x36\x56\xf5\xd0\x26\xbe\xcf\xa8\x3b\x49\x35\xf4\xb3\xab\x89\x3c\xbf\x4f\x5d\xcb\x23\x73\x3a\xbf\xe4\x9f\xa7\x4c\x69\xdd\xa6\x88\xa7\x68\x1a\xd6\x33\x63\xa9\x1e\x55\xb7\x48\x69\xb4\x19\xa5\xab\x62\x03\x69\xd7\x8d\x77\x0f\x4e\xa7\xf7\xe8\xe6\x3a\xc7\x03\x97\xe4\xdd\x56\x67\xc0\x57\xfc\xd7\xa7\xd4\xa4\xf0\xb1\x99\x5d\x7f\x90\x2e\x8e\x1c\xa9\xb9\x4f\x76\xef\x4f\xca\xdf\x40\xee\xe8\xf2\x94\x5f\xa1\xec\x69\x19\x26\x1e\x50\x5e\xd6\xbd\x24\x4d\xa2\x56\x57\xe8\x63\x67\xd2\xc8\x85\x79\xfe\xff\xd2\x0f\xeb\x67\x38\x27\x01\x29\x8a\x7f\xad\x27\x83\x1c\x81\xed\xd9\x6a\xc6\xd5\xb4\xf1\x7e\x1a\xe3\x68\xc6\x96\xa6\x2a\xfc\x4b\x26\x54\x52\x8e\xf7\x67\x15\x6b\xee\xe2\x0a\xd2\x23\x6e\x0a\x7e\x94\xe2\x4d\x3d\x8f\x6f\xa7\x0e\xc6\x9f\xc2\xff\xa2\x87\x07\xf8\x62\x5f\x80\xdf\xce\x2e\xd8\x27\x68\xdc\xf2\x26\x3e\x0b\x69\x3f\xf3\x99\x61\x92\x95\xd9\xd7\x8b\xb7\x91\x80\xc6\x77\x78\x24\x39\xab\x78\x02\xdf\x4a\x09\xd0\x6c\xc3\x97\x52\x7d\x39\xd7\xb0\x09\x5a\x3c\xf5\x00\x76\x97\xae\x8e\x0f\xc0\xc6\x80\x7b\x07\xdf\x60\x23\x90\xed\xce\xc7\xd8\x0d\xd8\x60\x59\x85\x7d\x42\x57\x9f\xd9\x86\x27\x52\x37\xf7\x7e\xc2\xff\x47\x7d\xd4\x68\x83\x9d\xa4\xc9\x8a\xb7\x63\x35\x74\x0b\xb5\x04\xd3\xd1\x2f\x73\xdc\x30\x02\x28\xa3\x9c\xc5\xe8\xa0\x24\xee\x15\x46\x86\xf8\x07\xc5\x18\x17\xc6\x77\x56\x62\xe5\x88\xd8\x52\x86\x5d\x43\xcb\x4f\x0b\xb0\xd9\xc8\xdd\x9e\x60\xf4\x32\xf2\xb8\x5e\x8e\x16\x23\x8f\x0b\xcf\xa2\x39\xc8\x4f\x95\x37\x9a\x83\x5a\xb3\x57\xa2\x5a\x34\x95\x7c\x13\x2d\x42\x7b\xe3\x1c\xd0\x6e\x6c\xd9\xc1\x29\xe8\x1b\x2c\x69\x67\x3c\x66\x89\xb5\x58\x16\x61\x89\xf8\x94\x53\xe3\x48\x37\xfb\x72\x57\x37\x52\xc1\x3e\x52\x37\x0f\xc9\x61\xdd\x2d\x48\x40\xf2\x59\x31\xca\x3f\x90\x7a\xe6\x47\xd6\x14\x64\x90\x99\x47\x7a\x82\x3c\x60\xfa\xc4\x66\xa1\x93\x89\xcf\xfe\x2c\xd4\x8d\x90\xed\x74\x45\x39\xc4\x0c\xcb\x2b\xe8\x2d\x06\x7d\x64\x10\xbe\x2e\x09\xe9\xf8\x00\x77\x8a\xc3\x6b\x58\x70\x95\x68\xbf\xf1\x3b\xdc\x23\x74\x90\x77\xc3\xb7\x04\xab\x89\xbb\xf0\x77\xfe\x9a\xac\xd7\x88\x0d\xcf\x24\xa6\x0e\x39\xc8\xfd\xc3\xff\x7f\x88\x9c\x7d\x75\xe7\x0a\xe4\x09\x2b\x6b\xed\x3c\xd4\x9d\xf8\x39\x24\x82\x14\xfa\x7b\x6d\xa5\x10\x96\x33\xa5\x6a\x2d\x04\x6a\x17\xe5\x9d\x84\xd4\x9a\xe9\xd2\x4e\xa8\x5b\xf9\x1f\x63\x21\xf4\x4a\x7e\x3f\x33\x11\x5e\x2f\x6d\x88\x96\xc0\xf1\xe2\x94\x03\x51\x70\x9d\xe0\xa5\xd3\x73\x64\x2e\x6f\xe9\x5a\x12\x92\xc6\x5e\x39\xf0\x37\x58\x5a\xd9\xd6\xb2\x0d\x2c\x2c\x6b\x2d\xbf\x0b\x16\x14\x37\xeb\x8d\x60\x7f\x41\xbe\xb8\x1f\x7c\x69\x20\x63\xfb\x20\x2b\xbd\x63\xfa\x3f\x50\x56\xf6\xd0\xd1\x00\xa8\x47\x65\xb2\x9f\x80\x97\xc8\x56\x3b\x61\x30\x21\x1c\x5e\x2b\x84\x5f\x72\xd7\xf4\x2d\x01\x7e\x75\xac\x68\xf2\x04\x67\xb5\x84\x95\x3e\x06\xff\x6a\xa0\xe8\x7a\xc1\x0d\x35\x71\xc2\xdf\x60\x58\xc5\x6a\xa4\x09\xd4\x16\xb7\xa6\xa1\xe0\x33\xe3\xf7\x28\x67\x68\x47\xce\x35\xbf\x0e\x28\x4f\xed\xe6\xb4\x14\x5e\x28\xdd\xb5\x56\x07\x13\xbc\x7f\x7a\x2d\x81\x27\x7d\x27\x1b\x4f\x00\x37\xbb\x3a\x4a\x17\x01\x17\xdb\x00\xed\x04\xf0\xb2\xf1\x83\x70\x37\xb8\xa8\xd6\x1e\x99\x0d\x1e\xac\x70\x4c\x7d\x05\x1a\x8b\x6e\x44\x9e\x06\xdf\xe5\x7d\xf5\x4b\x85\x82\xb3\x95\x3b\xbe\x42\xe7\x65\x03\x6b\x6b\x61\x17\x3e\xd6\x73\x0c\xb8\x32\x22\x6d\xe8\x06\xaa\x06\xf6\x97\x90\x00\x49\xf7\x80\x36\x12\x28\x6c\xbb\x21\x68\x03\x86\x1a\x8b\x61\x11\xf0\xa5\xc6\x32\x95\x05\xba\x97\x39\x46\xd2\x41\x79\xbe\xd1\xcf\x13\x7c\xaf\x03\x76\x7c\x81\x92\xe5\xf7\xd7\xde\x85\xae\xf3\x87\x06\x12\x79\x26\x69\xde\x2d\x0f\xb9\x7e\xe9\xa2\x8a\x46\x8e\x30\xe3\x64\x2e\xce\x7e\x9c\xf9\x5d\xa2\x60\x7b\x93\xfc\xf0\x59\xac\x42\x72\x47\x46\x12\x6b\x32\x75\xf7\x51\x37\x66\x1c\xed\x89\xdf\x53\xe2\x0c\xa0\xd9\xf1\x3f\x62\x37\x24\x58\x63\xce\x18\x44\x54\xfd\xbd\xdc\xcc\xcc\xea\x96\xcd\x9c\xa6\xac\xaa\x8a\x99\x9c\xc9\xa4\x22\xfd\xbf\xec\x13\x64\xa5\x64\x0a\xeb\x2a\xc5\x80\xf1\x58\xae\xd4\xa1\xf4\xaf\xcc\x6a\xfa\xb4\xa8\xc7\xcc\xd5\x40\x98\x9f\x82\xc8\x07\xdb\xb7\x5f\x21\x6c\x60\xbf\x35\x53\x19\xcd\xc8\xa7\xfe\x59\x9c\x33\x14\x87\x66\x2a\xc7\x84\xf2\xb6\x3c\x98\x4d\xa7\x96\xe9\x9d\x58\xcf\x68\xfb\xc4\x89\xac\x68\xfa\x7c\x6c\x32\xf3\x2a\xfd\x43\x3a\x9b\xe9\x0f\xbc\x8e\x92\x10\x57\xc1\x09\xbf\x7d\x44\x1c\x3c\x75\x7b\x2d\xe3\x0b\xb2\x75\xcd\x54\x86\x14\x45\x7a\xd9\x6c\x05\x9c\xd8\xf8\x89\xf5\x19\x96\x94\x5e\x67\x25\xc3\x0d\xba\x07\xcc\x37\xf0\xbf\x22\x7b\x26\x1d\xb1\x41\xde\x10\xbf\x11\x7e\x5a\x1e\x21\x44\xbe\x44\x3e\x25\xac\xd1\x13\xfb\x2e\x30\xc6\xd1\x6b\xdb\xe9\x0c\x10\xf3\x5f\x63\xce\xb0\xc4\xce\x76\xff\xcb\xf2\x64\x2d\x6e\x38\xc6\xbc\xc2\xec\x2a\xc9\x64\x1e\x65\x46\x6b\xb5\xc4\x07\xe6\x0c\xe1\x5f\x84\x90\xe8\x84\x9f\x13\x96\x04\x3f\xb5\x9f\x31\x48\x84\x47\x6e\x63\x90\x09\xeb\x7d\x11\x8c\x8d\x8c\x47\xdb\xc3\xf0\x07\x0c\xc5\x9a\x20\x5c\xc3\x70\xee\x9a\xc9\x0c\x13\x1d\xaa\xbb\x4c\x3c\x17\x66\x14\x4d\x10\x0c\x01\x37\xdb\x89\x30\xe5\x6b\xf8\x57\x18\x43\xbc\x5a\xe8\x32\x23\x91\x7b\x27\xe5\x0a\x63\x09\x77\x5a\x04\x8a\x9f\xe1\x2c\xf6\x7d\x87\x33\xd9\xf3\xb6\x6f\xc5\xdd\x99\x8f\xd6\x88\xb0\x2f\x44\x6d\xfb\x03\x62\x91\xce\xa9\x46\xcc\x18\xcc\x16\x14\x34\x31\x8e\xa9\xcf\xab\x57\x31\x66\x29\x3f\x71\xdf\xe2\xad\x8a\xbf\xc1\x35\x78\xb2\xcc\x25\xf9\x04\x6e\x25\xd9\x77\x24\x15\x7b\x22\xda\xe2\xbb\x1b\xab\xe0\xbf\xda\xf6\x1b\xcb\xe2\x1e\x5f\x73\x1b\xb3\x63\x0d\xb4\x62\x0c\x87\x32\xc7\x2a\x67\xfc\x55\xb1\xda\x88\xe1\x79\x05\xf7\x95\x0b\xf1\xdd\xc6\x3f\x39\x73\xb1\x8f\xb9\xab\xe8\x64\xac\x51\x67\x93\xf8\x11\xa3\x6b\xa6\x84\xef\xc7\xdc\x14\x79\x3e\x18\x36\x47\xf2\x76\x5b\x33\x7a\x43\xf0\xd6\x72\x09\xaa\xe1\xb4\x35\xc7\xe3\xbd\x2d\x93\x2a\xdc\x71\x52\x83\x38\x4f\x83\x2f\xaf\xf9\x29\xf7\xc4\x06\x2a\x9d\x58\xd1\x58\x46\xa9\x2f\xf5\x2d\xb6\xa9\x70\x53\x42\x09\xfa\x39\x6f\x2c\x6c\x27\x3a\xa2\xfd\xbe\xb7\x0d\xd5\x2a\x47\xb7\x1d\x40\x13\x24\xce\x96\x6b\x50\x6b\xde\xd1\x26\x3a\x9e\xdd\x15\x5b\x7e\x14\xf7\x6a\x2b\xc8\x3d\x89\x3d\x6a\x6a\x95\x61\x18\xb7\x8e\xcd\xac\xc2\xec\xab\x56\x50\xfd\xd0\xd7\xa5\xe4\x84\xe5\x68\x53\x01\x25\xf4\x0c\x8a\xeb\x27\xf6\x1e\x43\x83\xd4\x3f\xb7\xad\x47\x57\x4b\xab\x2d\xb7\x20\xff\xf0\xbe\x36\x76\xe0\xa4\xfe\xd7\x65\x75\xf8\xc2\xee\x89\xdc\xd5\x58\x65\x7b\xb7\xf4\x09\xb6\xbb\x79\x23\xd3\x1c\x7d\x5a\x17\x4a\xb9\x84\xea\x2b\x1d\x4e\xb4\xa0\x47\x8a\xcb\x42\x21\x74\x8d\x01\xd9\xeb\x80\x7c\xc8\xbe\xb4\xcd\x12\x19\x90\x0d\x5a\x86\x21\x20\xdf\xbd\x25\x51\xba\x2b\xb5\xac\x12\x16\x7f\x48\xfb\x6c\xfc\x5b\xd4\x9e\xe1\xac\xe8\x13\xea\x33\x11\x76\x9b\x80\x91\x75\x87\x6e\xcd\x0f\x23\x07\x26\x6a\x78\x76\x94\x67\x61\xc7\xb9\x73\x68\xca\xbd\xce\xec\x7f\x81\x03\x8e\xbd\xac\x3e\x28\x6c\x55\x10\x53\x85\x70\x9b\x73\x25\xfa\x8c\x17\x15\x97\xc4\x09\x99\x13\x06\x5c\xb4\x2b\xeb\x87\xc2\x51\x68\x4d\xfa\xca\xde\x21\x58\x42\x59\x4c\x6b\xe3\xfd\xa2\x7a\x26\xda\x73\x1f\xd2\xe4\x61\x2b\x38\x97\xe8\xff\x79\x7f\x65\xb7\x83\xd1\x8e\x1a\x56\x11\xfc\xe7\x2a\x2f\x26\x86\x5c\x6a\x1a\x11\xff\x20\x07\x54\xac\x10\xdd\xa7\x2c\xcf\xfb\x47\x78\x8a\xf2\xaf\xdc\x20\x68\xa3\xaa\x58\xf5\xfc\x6a\xda\x09\x9a\x0b\x2f\x8f\x1e\x96\x70\x86\x2b\x02\x8e\x85\x5e\xe4\xf0\x40\xc8\xbb\x97\x8d\x43\xb9\x8e\x28\x8b\x0c\xbf\x5c\x15\xc8\x0c\x47\x03\x1a\x93\x44\x83\xe0\x97\xb2\x2e\xe1\x10\x74\x30\x97\x23\x38\x0d\xe9\x65\xc7\xf8\xe7\xa1\x47\xcc\x1c\xde\x35\xd8\x93\xea\xc5\xbd\x06\xf7\x9c\xf8\xc6\xb9\x82\xf8\x84\x3a\xb3\x1f\x23\x63\xde\x81\xac\x8f\xe8\x21\xc7\x50\xe6\x07\xf4\xcd\x2a\x90\x78\x81\x29\xeb\xff\x13\x0e\x13\x51\xa5\x91\x82\x11\x62\x87\x7e\x2b\xff\x3c\x31\x45\x6a\xcf\x7b\xc0\x38\x49\x08\xb8\x9f\x19\x39\x94\x60\xee\x0c\x86\xe0\xc4\x46\xce\xdf\x0c\xe2\x70\x19\x7b\x2b\x23\xd9\xeb\x27\xeb\x00\xc3\xcf\x71\x3f\x33\x94\xb1\x7a\xd5\x30\x71\x08\xff\x5e\x67\x2b\xb8\x2c\x70\x2e\xbe\xcc\xbf\xc5\x97\xe8\xee\xf0\x5e\xf0\x2e\x8a\x3f\xf1\xfe\xe0\xfd\xc1\x48\xe7\xae\xe5\xee\x21\x87\x71\x76\x73\x0c\xc7\xc3\xd8\xd1\xec\x89\xc3\x0b\x59\x6c\xb6\xa3\x57\x2d\xb3\x90\x15\xeb\x18\x4c\xd4\x30\x93\x56\xdb\x30\xca\x89\x94\x9a\xa5\xfc\x33\x9a\x94\xc2\x26\xde\x39\xf5\xb4\xec\x6e\xee\x43\xa5\x48\x34\x85\x3b\x4d\xfe\x04\xab\xe3\xd8\xc8\x5c\xb2\xce\xb2\x03\x25\xb9\xc7\x66\xb3\x40\xd1\xb3\x90\x85\xcc\x0a\xe1\x0c\xaf\x19\xc4\x05\xde\x2f\x47\x13\xc6\x43\xce\xd0\xea\xe3\xf8\x43\x56\x52\xe5\x03\xde\x60\xd1\xd9\x7c\x36\xf7\x73\x41\x8a\xba\x92\x6b\x6d\x9c\x22\xf8\x9b\xb3\x2f\x37\x1d\x79\xcf\xce\xd4\x9d\xce\x74\x66\x15\x66\x2f\x89\x6b\x66\x8e\xab\x9c\x82\xa7\x32\x67\xc8\x97\xee\xf1\x23\xb6\x88\xdb\x1d\x4e\x33\xfc\x04\x8b\x57\x8b\xf1\x00\x8e\x7b\xf9\x1b\x1e\x58\xdf\x66\xa8\xe2\x8a\x6a\xca\x95\x37\x38\x4d\x95\x19\xbc\xa3\xec\xf1\xd2\x1f\x70\x34\xeb\x4b\xd1\xd1\xf4\x71\x96\xb5\x51\x13\x8b\x33\xc3\xf4\x82\xa0\xdf\x84\x3c\x7b\xd1\x6e\x26\x63\x48\xb1\xc7\x21\x1e\xbf\x25\xde\xb4\x5a\x87\xdd\xe2\x5e\x2e\xfb\xc2\xf3\x6d\xbd\x9a\x77\x89\x1b\xdb\x94\xae\x9c\xc7\x61\xd6\x5d\xe3\x16\xb1\x8d\x55\xdf\xa0\x66\x56\x5f\xd9\x8b\x74\x27\xe6\xcb\xa2\xdc\x98\x5f\xcc\xa5\x86\x5f\x41\x2a\xc2\x5f\xf7\x70\xb7\x1d\x83\xa1\x3a\xe2\xe0\x8e\xab\x25\xc2\xd5\x55\x98\x8c\x97\x58\x66\xcd\x33\xe9\xb6\xca\x33\xe3\x6e\x69\xc7\x14\xa9\x9c\x03\xcd\x4a\xee\x5c\x76\x4c\x7d\x34\xb4\x91\x05\x54\xbd\x4c\x3b\xc9\xcc\x2b\x5b\x1b\x63\x24\x86\x0a\x27\x05\xed\x61\x4c\xe4\x7a\x7b\x7e\x67\xac\xd1\xfc\xed\xb0\x0d\xb7\x97\xaa\x57\x9f\xc3\xd6\xf2\x1a\x0b\xf7\xe4\x5c\x4b\x8d\xd7\xe6\x69\xef\xa5\x95\x49\xe2\x34\x9f\xd3\x6f\x31\xc3\xd4\x8b\x32\x4d\x68\xed\x4a\xdb\x2c\x46\x72\x99\x7c\x13\x79\x72\x54\x9b\xd4\x82\x52\x7e\x30\x46\xf4\x8b\x96\xec\xbe\x58\x70\x0a\xf0\xb6\xbb\xcb\xc3\xa0\x64\xf3\x67\x1c\x33\xa4\xbe\x60\x20\xc7\x2b\xe3\xa8\xd6\x4c\x1b\x91\x19\x23\x7e\xa7\xc1\xb2\xc2\x89\xb7\xaa\x52\x52\x34\xed\xb0\xe2\x34\x99\x97\x7c\x50\x76\x9d\x32\x16\x95\x22\x19\xa7\x6d\x3a\xb8\x5e\x34\x40\xaf\x74\x7b\x27\xd0\x81\xdb\xed\x2e\xf3\x22\xe1\xe9\xe6\x9f\x39\x33\x90\xff\x0a\x36\xeb\x3a\x48\x58\xb6\x26\xfb\x36\xd9\x43\x4c\xd2\xfc\x41\x99\x42\x00\xaa\xed\x94\x31\xea\x6b\x45\x2c\xb5\x29\xe9\xbd\x8c\x4e\xeb\x8e\x32\x95\x20\xf4\x47\xfe\x1f\x45\x00\xf8\xb7\xdb\x59\x41\x14\x14\x6a\x77\x92\x67\x0b\x5f\x58\xf9\x27\xfb\x2e\x1a\x63\x1c\xd0\x76\x03\x02\x4d\x84\xe6\x09\x38\x55\x74\x58\xbd\x1a\x3c\xc6\x80\x95\x91\xe0\x28\x75\x9e\x5c\x0e\x79\x26\x6d\x92\x36\x42\x77\x23\x41\xf1\x10\x2c\xf6\x17\x08\x2f\x22\x9b\xdd\x94\xfc\xd3\xc8\x3f\x76\x17\xb9\x06\xb4\x79\x65\x0c\x3b\x04\x53\x1a\x2a\xb2\x9b\x70\x57\xb5\x93\x7a\x02\xf7\x12\xee\x54\x6d\xc7\x3d\x70\x48\x81\xe0\x9b\x28\xb6\xb2\x6e\x7c\x63\xe2\x09\xc9\x0b\xdc\x37\xe2\xb2\x78\x06\x4e\xf2\x9f\x2f\x5c\x8d\x8b\xdd\xfc\xf9\x36\x78\xa1\xdd\x59\xee\x4c\x7c\x78\x65\x31\xeb\x14\xfe\x38\xcf\x51\xf3\x90\x1b\xa5\xfc\xa1\x5e\xc6\xf9\x26\x58\xa8\x8c\xe1\x80\x58\xaa\xbc\x86\xfd\x94\xec\x22\xfd\xc0\x8e\x49\x50\x48\xd6\xb1\x3e\x46\xac\x14\x05\xb0\xf8\x07\x94\x02\x32\x6b\xb6\xdb\x7c\x1e\xc6\x84\xed\xc6\x39\x47\x89\x3b\x2b\x3f\xb2\x4c\x88\xad\x7a\x5c\xdd\xad\x30\x2a\xb6\xab\xe6\xc9\x09\x5e\xb8\x22\x46\xe6\x87\xdc\x90\xd5\x4b\xde\x67\x8d\x4b\xbe\x8a\xb5\x27\x82\xc5\x3b\x44\x7b\x8f\x2c\x15\x26\x09\x9e\xef\x3f\xc7\x57\xf1\x63\x76\x65\x73\x4b\xb9\xed\x76\xdd\x6c\x2e\xfb\xa3\x85\x37\xd3\x9b\xb5\x4c\x57\xa0\x36\x37\x5c\x92\x25\x28\x23\x72\x2f\x70\xf2\xe5\x55\x39\x9d\xb0\xab\xf4\x9b\x96\x97\x19\x2b\x71\xd7\x78\x1d\x9f\x2d\xe2\x29\xbf\x85\x4f\x12\x0c\xc8\x45\x7e\x1f\x78\x6f\x25\xff\xec\x9a\xc1\x9d\x2e\xfc\x65\xc7\x66\xbd\xe0\x7d\xb4\xa0\x10\x15\xec\xbe\xec\x6f\x2a\x69\xe5\xa8\xa4\x57\xf1\xa4\x7c\x2a\x7b\xb2\x7c\x5b\x89\x29\xd8\x29\x65\x16\x2e\xcb\x98\x24\x1e\x35\x7c\x88\x3f\x2f\x9a\xaf\x2f\x0f\xfd\x20\xf0\xd5\x5a\xfa\x2d\xe0\x51\x54\x1e\xae\xe1\x1c\x81\x6c\x81\xdd\x16\x56\xba\xb0\xcd\x42\x40\xd8\x72\x57\x66\xef\x54\x85\xd5\xbb\x4b\x26\x2b\xea\x6a\x76\xb2\x7c\xe4\x33\x2a\xa7\x80\xf3\xa4\x07\x4a\x8d\xe9\xc7\xc5\x92\xa2\xb9\xf1\x5e\xc2\x2b\x46\xdf\x50\x86\xe0\x4f\xbd\xfb\xbe\x26\x9e\xbd\xe6\x94\xeb\xff\x38\x9e\xf2\xf7\x76\x8b\x59\x56\xa2\x77\x16\x3a\xc6\x3f\xdc\x52\x8d\x5e\xb5\xb6\xf9\x97\xf8\x84\x82\xde\x70\x92\xd9\x28\xbb\x58\xeb\x07\xb0\xa5\xf3\x2a\x75\x69\x2f\xc5\x7b\x4b\xab\xe3\xee\x08\x39\x85\x70\xe8\x7a\x7e\x7b\xde\xd7\x7d\xa9\xdc\x9b\xda\xf7\x2e\x0f\xd9\xff\x2a\x99\x76\xb3\x99\x43\xe2\x47\x16\xdd\x0c\x80\xfb\x59\xf2\xac\xac\x3c\xd5\xc0\x39\x50\xfc\x3e\xed\x12\xe2\x5e\xe8\x9a\x31\x8d\xc4\x37\x22\x99\x7b\x12\x0f\xe7\x56\x64\xd5\x44\x8d\xeb\x9a\xc9\x5b\x83\x72\x35\x39\x94\x97\xde\x0e\xca\x00\xda\xf0\x8e\xb7\xd2\xbb\x40\xa7\xad\xa9\x68\x0f\xf4\xc1\xf4\x06\x8f\x8a\xfa\x4a\xd8\x65\x2b\x33\xdc\xd9\xdf\x8b\x33\x32\x3d\xe1\xcf\x05\x03\x59\x9e\x24\x4f\xe3\x5c\x92\x7f\xe2\x92\x5c\x6f\x32\x23\x2a\x57\x17\x46\xb9\x12\x94\xaa\xf1\xa1\xf9\x79\x2f\x51\xce\xa3\xdf\xdd\xf1\x40\x5a\x01\x72\x6d\xd7\x89\x96\xc1\xe9\xa6\x9f\x79\x21\x68\x96\x64\x59\xa9\x9e\x34\x9b\x9d\x5b\xf4\x96\x74\x07\x2e\x2a\xf0\x24\x57\x65\xbd\x37\x18\x28\xec\x84\x8b\xfa\x7b\x54\x46\x54\x94\xf6\x33\xcd\x10\xe4\xa4\x7e\x4d\xbf\xeb\xf5\x59\xd1\x0f\x5a\xef\x18\x97\x26\x40\x1c\xdb\xad\xc2\xfb\xc8\x4a\xb3\xa5\xbc\xd5\xe8\x59\xf1\xf6\x12\x1d\xfd\x32\x6b\xb0\x68\x3a\xe0\x03\x5d\xcc\xcf\x04\x9a\xb2\x5c\xf2\x4e\x82\xeb\x12\x1c\xf5\x33\xc1\xde\xc8\x1b\x5a\x1b\x88\x1c\x78\x4e\x6d\x05\x7b\x7a\x35\x28\xe6\x22\xd3\x77\xf4\x48\xce\x21\x97\x6c\xfd\x85\xfb\xd1\x6b\x66\x89\xdc\x6c\xec\x8e\xc8\xbf\xb8\x15\x1d\x63\x3e\x2e\x5c\x89\xbe\x05\x27\x8c\x42\x6c\x72\x26\x90\xfb\x1c\x9b\x77\x42\x98\x63\x8f\x39\x46\x7a\x66\x47\x60\x60\x60\xa0\x2a\x1e\x3b\xef\x15\x27\x0f\xc6\x17\xee\x28\x96\x98\xe1\xa1\xb6\xc7\x05\xc5\x78\x97\x59\x2f\xe7\x1d\x63\xb9\x30\xaa\xe8\x34\x3b\x8c\x78\x5f\xe0\xc1\x9e\x02\xfe\xcf\xd0\xc2\xd2\x67\x54\xe6\x2e\x61\xed\x38\x7e\x4d\x77\x9c\xf9\x34\xa2\x48\xa3\x61\xd6\x07\x9c\x57\x16\x33\x71\xaf\xbf\x64\x06\xa6\xcb\x0e\x96\x38\x95\x78\x6b\x8b\xf1\x27\x88\x7c\x73\x13\x8e\x27\x11\x22\x98\x52\x58\x2a\xa5\x33\xca\xf2\x37\x49\x18\xf4\x0b\x79\x75\x62\x5a\x3a\x4b\xbf\x40\x14\x73\xec\x8a\x36\x56\x78\xf0\xc8\x90\x5a\x27\xd8\x17\xb0\x5c\x51\xc7\x77\xdd\x23\x93\xd6\xf1\xe6\xec\xf0\x16\xb1\x38\x7d\xb6\x1a\xfe\x9f\xec\x64\x73\x06\x3b\x82\x35\x83\x47\x29\xb8\x97\x73\x00\xdf\x66\x4c\xd4\xca\x69\xdc\xdc\x57\x9a\xf3\x69\x87\x72\x0e\xa8\xde\xc7\x0f\x67\xeb\x95\xf3\xc2\xaf\xa8\x6e\xca\xad\x0e\x06\xc9\x27\xa4\x6b\x76\x7f\x97\x7c\x17\xbd\xd8\xfe\x56\x38\x2e\x60\xda\x32\x78\x47\x79\xd3\xcd\x7b\x58\xcd\xec\x64\xee\x9c\x82\xc4\xe2\x37\xe8\x1d\xc3\x9b\x42\x3e\xd5\x3e\x37\x31\x7f\x6e\xea\x32\xdd\x68\x5e\x56\x5c\x79\xf6\xc2\x9c\xde\xb0\x1b\xaa\x43\xd9\x6f\xfc\x19\x72\xaa\xea\xdd\xee\x03\x12\x92\xdc\xb8\x3d\x4d\xe8\x25\x99\x63\x1b\xc6\xbd\x2c\x38\x61\xfe\x98\x65\xc5\xd1\x70\x12\x0b\xcc\x2a\x1e\xa2\x3b\x0d\x75\x65\x8e\x14\x5d\xae\x5d\xf1\xb1\x14\xb1\x4e\x50\x90\x15\xb7\x4e\x73\xc9\x10\x19\x96\xac\xfa\x9f\x7e\xa5\xbf\xb5\x7c\x4b\x76\xe5\xee\xe9\x92\xf5\xca\xcb\xdb\x1d\x04\x9f\xa5\x95\xb6\x1e\x5c\x96\x90\x64\xfe\x99\x79\x83\x3b\x8b\x7d\x37\xff\x72\xad\x15\xd2\x6a\x48\xad\xf2\xa0\x2c\xd3\xbf\x2b\xdf\x90\xb2\x5c\xe7\x59\xfc\x5f\xec\x29\x0d\x51\xc0\x0f\x5b\xa2\xec\xcd\x7b\x75\xe0\xa9\xec\x6e\xce\x9f\x9e\x97\xc4\x67\xd4\x2d\xdb\xff\x16\x48\xe5\xb3\x6c\x5d\xb9\x26\x22\xef\x95\xd6\xcc\x64\x6e\x20\xdc\xde\x3c\x9a\x96\x43\x31\x6b\x58\x9d\x5e\x9c\x3a\xad\x46\x90\xd1\x1c\xcf\xac\x78\x97\xf9\xe2\x48\x55\xe9\x26\xd2\xfe\x40\x75\xa1\x13\xf9\xde\xde\xaf\x86\x3f\xa9\x06\x57\x44\xa7\xa7\x4b\xb6\x84\xaa\x9e\x83\x39\x56\x0f\xa5\x4f\xe0\x93\x26\xb6\x02\x23\xb6\x10\xe6\x34\x6f\xcf\xf8\x44\x7e\x5f\x5f\x92\x79\x33\xe5\x49\xcd\xb2\xac\x81\xf8\xb8\x0a\x0e\x69\xf0\x88\xac\xe4\x3c\xf9\x5d\x20\x5a\x70\x9f\xea\xb7\xf7\x79\x5e\x1b\xed\x8a\x2b\x4d\x17\x04\x60\x5b\x22\x54\x35\x90\x87\xd5\x37\x69\x13\xb2\xca\xc4\x5f\x40\xc5\xcc\x61\x9f\xa6\x2a\x12\x99\xdc\xf5\x7f\x02\xe0\x02\xa0\x89\x46\x01\x00\xb0\xdd\xdd\x0a\x08\x92\x2a\x02\x0a\x08\x48\x88\x82\xa4\x74\x77\x33\x18\xeb\xde\xed\xee\xd6\xdd\x1b\x0b\x06\xa3\xbb\x1b\x04\xbb\xbb\xbb\xfb\xb7\xf5\x59\xd8\xfa\xbe\x3e\x27\xb2\x37\x7a\xb4\xab\x99\xfc\xb9\xc8\xaf\x7d\x0d\xe5\x68\x26\xba\x19\x41\x3d\x9c\x90\x5f\x0f\xd1\x5e\x87\x5f\xab\x4e\x07\x7c\xb7\x63\x4c\x93\x18\x8d\x1e\xf9\xba\x22\xc8\x7a\xfd\x7c\x15\x01\x1e\xb1\x24\x4b\xb7\xb1\x8a\xc0\x53\x03\x8d\xf4\xa3\xe4\xf0\x5e\x77\xc0\x1a\x1d\xda\x79\x14\x00\x0a\x6f\xb6\xf9\x03\x3f\x33\x57\x37\xa9\x18\x75\x09\x56\x75\x9d\x60\x59\x78\x83\x59\x01\xc5\x6f\x4f\xae\xd8\x09\xfb\x79\x20\xcb\x47\x99\x9b\xd7\xfb\x29\xcf\xb3\xfc\x2d\xcf\x48\x6a\xd8\xc9\xe0\x96\xfe\xfd\xcc\x20\xd2\x58\x4f\x28\x33\x11\x75\xac\xe3\x32\xb3\xb8\xb0\xa8\x35\x9e\x29\xce\x18\x6b\xec\x62\x9e\x89\x3f\x5b\x7b\x8e\xe5\x10\x5e\x54\x35\xcc\xd2\x6f\xf7\x36\x52\xd9\xb3\x3c\xf0\xda\x09\x36\xb4\x1e\xad\x5c\xcc\xfe\x65\xe5\x26\x7e\xce\xe1\x30\xb4\x7d\x97\xf9\xbe\xa4\x75\xdd\xd9\xbc\xe7\x28\xef\xf6\xd7\x3c\x79\xc1\x8b\x16\x1c\x2f\x22\x23\xa6\xe1\x22\xcf\x3a\x1e\x5f\xf3\x99\x37\x2d\x7c\x6d\xe5\x43\xee\xd7\xed\x4b\x0d\x1d\xdc\x17\x1e\x44\xad\x3b\xf7\xf2\xfa\x5a\x45\x3c\x77\xaf\x95\x49\xec\xc4\x6d\x05\x46\x7b\x21\xc5\x74\x62\x70\xd7\x26\x79\x44\x59\x66\xdb\x59\x19\xa6\x60\x6d\x73\x82\x54\x9c\x5e\x53\x3f\x20\xe9\x8f\x7b\x50\x7d\x5f\xfc\x20\xac\xcf\x74\x45\x3c\x27\xe0\x96\xbe\x56\xe4\xe0\x41\xd4\x6c\x14\x6e\x5c\x7f\x43\x1e\x27\x70\x5e\x3b\x5f\xb4\x91\xbf\x8e\x2e\xe9\x29\x37\xe8\x08\x1e\x9d\xa1\x7a\x47\x24\xa9\xf5\x65\x79\x63\x7e\x58\x13\x56\x3b\x37\xed\x61\xdd\x45\x35\x25\xce\xb7\x7a\xb2\xf2\x46\x98\x5b\xc5\x1f\x85\x53\x80\x50\x77\x5e\x96\xec\x91\xaa\xce\x92\xe4\xac\xff\x9f\x4c\x2a\xca\x5b\x5b\x2c\x44\x0a\xc2\x69\xf5\xdd\x17\x6a\x2f\xe1\x63\x3b\x2a\xaa\x6f\x96\xca\x5b\x83\xaa\x86\xf2\xf0\x8d\xc7\x4d\xa8\x34\xcb\x3a\x3b\xe3\xb2\x58\xad\x39\x5b\xd7\x15\xda\x56\x51\xa4\xb5\x0d\xb0\xd3\xb9\xa8\xd2\x3d\xac\x55\x23\xf2\x8c\xf5\x9f\xa5\x6f\x24\xa9\x6b\x9b\x05\xd7\x84\xbe\xb4\x6d\xdd\x82\x26\x7f\xdc\x93\x8e\xf0\xfa\x37\xa5\xb6\x2d\x5f\x6b\xc9\x79\x8b\x1a\x49\xe6\x3b\xa9\x27\x6b\xcf\x57\x3a\xc7\x46\x9a\xe7\x18\x8b\x43\x71\x15\xcb\x74\x64\xff\xdf\xe5\xb7\x35\x5e\x1e\x73\x55\x59\x8a\xd1\xf5\x3f\xa4\x7a\xa9\xf7\xda\x93\x02\xb6\xb0\x92\xfa\xb0\xdb\xaf\x6d\x0a\x4e\xd8\xfe\xbd\x19\x59\x72\xb6\xa5\xbe\xa1\x3b\xf7\x68\xe3\xaa\xda\x2b\xa9\x82\x5a\x94\xf9\x76\xec\x8a\xaa\x56\xd3\x91\xd0\xdd\xc6\x01\x03\xd5\xff\x45\x39\x56\x7b\xde\x63\x96\xf2\xad\xf2\xee\x86\x85\x52\x47\xe9\xab\xb5\x3f\x04\x8b\x85\x57\xc8\xff\x8d\x4b\x70\x69\x18\xf1\x48\x37\x7e\x57\xf1\x81\x81\x0b\x04\xdf\xec\xa1\x9e\x1b\xc4\xdc\x64\x6c\x47\x37\x69\x2c\x6a\xa2\x25\x84\x12\xba\x6b\x69\xbd\x9e\x36\xcd\x17\x30\x9b\xe8\xdf\x36\x67\x19\x63\xc0\xd9\x0e\xff\x34\x75\xb0\x93\x05\x57\x56\xcf\x2a\x24\x9f\x1e\x9f\x4c\x30\x63\xf0\x23\x9e\xc4\xc2\xe2\x9e\x81\x3c\xd2\x96\xec\xe6\x1e\x1c\xd9\x3e\xb9\xb0\x23\x92\x12\x1e\xf5\xa1\xf9\x25\xb5\x7e\xd7\xa2\xfa\x40\xba\x93\x2f\x64\x8e\x01\xae\x6f\x2e\x32\x2e\x00\xeb\x1c\x57\x6b\x10\x30\xc9\xa2\x51\x86\x67\xe5\x93\x1b\xc6\x00\xf2\x74\x4c\xec\xf0\x38\xb9\xa3\xd8\xd0\xff\x3f\x4a\x42\xb6\xa6\x67\x32\x75\x61\x72\x7c\xfb\x23\xda\xf4\xa8\xc7\xcd\x5c\xfa\xa6\x5d\xb3\xeb\xee\x03\x90\x2f\x54\x35\xc1\x78\xb5\x19\x65\x38\x04\xe1\x1d\x37\x6b\xac\xe1\xdf\x16\xa7\x64\x6e\xac\x6a\x72\xec\x1e\x22\x30\x05\x33\x63\xe8\x20\x10\x53\x1c\xdf\x3f\x09\xa8\xca\x4e\xee\xb6\x60\xac\x4a\xb6\x69\x9f\xce\xd8\x1f\xb5\xaf\xa9\x03\x14\x05\x7f\xae\x9b\x03\x11\x7d\x81\x2a\x37\x18\xb1\x19\x36\xcc\x66\x96\x3a\x16\xaa\xf1\x2c\x9c\xa5\x95\x54\xca\x16\x90\x5e\x8d\x12\x99\x91\xe8\xd6\xc1\x83\xcc\xb4\xa2\x5f\x7d\x53\x98\xb9\xd9\x73\xba\x1c\x98\x9c\xa4\xa7\x6d\x2b\x99\x27\xa3\x64\x8d\x87\x58\xf6\xc1\x97\x6b\xed\x59\x26\x5f\x42\x65\x0a\x7b\xd5\x66\xbd\xde\x9f\x5d\xed\x58\xab\xea\xe0\xd8\x58\x0a\x24\xa7\x39\xdd\x24\xde\x08\x8d\x3f\x07\xbd\x63\xe0\x1c\x6f\xa0\xa8\xaa\x77\x3e\x2f\x39\x6b\xb8\xd3\x8b\xb7\x22\xa9\xba\xd5\x95\xfb\x35\x2a\xbe\xe1\x36\xf7\x7e\x70\x5b\xcd\x0e\xee\x0d\x5f\x84\x09\xe2\xde\xde\xdc\xa5\x2b\xe3\xde\x72\xbc\xa3\x7c\xc4\xbd\x6c\xf9\x49\x32\x89\x7b\x9e\x78\x7a\xd8\x4f\x5e\x8a\x52\xf5\x1b\x65\xb5\x85\x9f\xba\xef\x4a\x8f\x66\x59\x76\x4c\x93\xbc\x4e\x5a\xd9\xfc\x57\x62\xbf\xfb\x79\x7d\x9f\x38\x37\x38\xbb\x7a\x9d\xc8\xec\x1b\x56\x91\x2f\xbc\xb6\xf9\x50\x79\x82\xe0\xbb\xd3\x5a\xc5\x65\xc1\x1a\xab\x52\xd1\x0f\xfe\x66\xc2\xef\xa1\x75\x7a\x52\xd9\x99\x3e\x75\xf9\xb7\x42\xff\xae\x47\x5a\x5c\x26\xa9\x7d\x8e\xfa\x4d\x22\xb7\x79\x86\x0a\xbf\xbb\xb4\xee\x90\xe2\x75\xd0\x3f\xb3\x9f\x3c\xc3\x77\xa5\x11\x92\xf6\x6f\x3e\xa3\xc5\x89\x5f\x38\x45\xcb\x7f\x8b\xac\xac\x0e\x8b\x36\x0b\xb6\x11\x36\x0e\x26\xd4\x58\x94\x2d\xe9\x3d\x6d\x5e\x52\xa0\xec\xb2\x31\xbd\xcd\xb8\xdc\x16\x6e\x3c\x90\xf0\xbe\x69\x87\x5e\x1a\xf9\xa6\x6e\x66\x79\x44\x50\x4d\x95\x4a\xfd\x7e\xdb\x2d\xc3\x79\x65\xee\xe6\x5e\xcd\x7e\x59\xbd\x13\x42\x9e\x28\x7e\xba\x76\xb1\x50\x2b\x5c\x86\x3f\x3a\x38\xa3\x61\x3d\x72\xa8\x97\x54\x7b\xb5\x60\x7b\xe7\x89\xea\xbc\x0c\x51\xeb\xcb\xca\x67\x09\xdd\x8d\x0f\x2a\xb2\x23\x47\x6a\xdb\xf5\x27\x83\x68\x55\xde\xe5\xf3\xb7\x1d\x31\x10\xd4\x8b\x36\xf7\x68\xb2\xe4\x77\x9d\x00\xd9\x77\x49\xf7\xda\x00\xa1\x9f\x10\x89\x47\x0c\x8c\x36\xeb\x90\x88\xde\xd5\x8d\x53\xf2\x7f\x77\x16\xd6\x25\x66\xc4\xb6\xb2\xab\x2b\x13\x98\x8d\xb8\xca\xb3\x91\xba\x5a\x7f\xe3\x9b\xa0\x82\xca\xf3\xba\x47\xdb\xf6\x1b\x26\x69\xd8\x9b\x0f\xab\x9f\x2b\x9e\x3a\x99\x65\x42\x69\xcc\x5a\xbc\xe0\x9c\xb0\x0a\x0b\x1d\x4c\xc1\xfb\x97\xb8\xed\xcd\x20\x4c\xca\x55\x8d\xc6\x11\x2e\xa7\xde\x1f\x5c\x4a\x7c\x18\x37\xab\xa7\x82\xec\x14\xbe\xb0\xfd\x0a\xa5\x2d\xf0\x64\xd3\x08\x2d\xdb\xeb\x73\x6d\x08\x10\xed\x32\x64\xa2\x82\xe9\xf6\x99\xe5\xce\x70\xce\x9a\x09\x39\x9f\x45\xc7\x12\x0f\x5c\x21\x12\x4a\x36\x8d\x3f\x23\x2d\xca\x55\x8f\x3c\x23\x8d\xa7\x3e\x1c\xe8\x20\xeb\xe3\xe6\xf5\xb8\x53\x5a\xc2\x97\xb5\x13\xa8\x5f\x02\x2f\x36\x65\xd2\x89\x5e\x7f\x6a\xbe\x30\xac\x5d\x0e\x9b\x5c\xc1\xa7\xf6\x0c\xed\x2b\xb8\xde\x62\x85\x3c\x8a\x85\xc7\xe6\x1d\x88\x21\x9f\x29\x59\x37\x8e\xa6\x84\xe5\x4a\x47\x28\x94\x73\xa9\x77\x07\xb6\x51\x09\x71\xb3\xbb\x8f\xd3\x92\xc3\x97\xb5\xcf\xa4\x13\x03\xaf\x36\x4e\x00\xe3\xde\x33\x6a\x0c\xe0\x06\x97\x4b\x15\xb7\xa0\x76\x7b\x9d\xb6\x92\x69\x6f\x11\x20\x9f\xce\xea\xc2\x7a\xef\xdf\x05\x70\x4b\x26\x8d\x95\x00\x03\xb9\xb8\x61\x0a\xf0\x32\xf5\x68\x7f\x24\x23\x39\x76\xa2\xeb\x09\xe3\x7f\xe1\x73\xda\x9c\xc0\x81\xc0\x6b\x8d\x6b\x20\xa3\xf7\xd2\xea\xe3\xb0\xc6\xe5\x7d\xc5\x32\x66\xb9\xfd\x79\xcd\x43\x96\xc2\x42\x27\x4b\x61\xeb\xb0\x93\xf6\x39\x32\x6b\x11\x17\xf6\xc4\x33\x2b\x72\x83\x86\x4a\x99\xca\xd4\xea\xbe\x10\x66\x73\xec\x9d\xce\xff\x98\xcf\xc2\x26\x5a\x5d\x59\xdb\x02\xcf\x36\xd8\xb3\xda\xbd\x2d\xcd\xf7\xd9\x6e\xae\xf3\x8d\x7e\xec\x51\x87\xd9\x9a\x85\x1c\x4f\x8b\x2f\x52\x39\x67\x0c\x73\x69\xef\x6a\xbe\x27\xa2\x62\x34\x8a\x77\x32\x77\xde\x60\x01\x2f\x3b\x15\xdb\x1b\xca\x5b\x19\x3b\xdc\xf1\x8e\xfb\x39\xec\x4e\x8b\x37\xf7\x7a\xe0\xfe\x7a\x37\xee\x19\xef\x75\x55\x5f\xb9\xd7\x5d\x9d\x0c\xb9\xdc\xdb\x0e\x3b\xd4\xfe\xdc\x9b\x96\x29\x92\x31\xee\x45\x8c\xc7\xd8\x47\xf9\x56\xc4\x82\x91\x85\xb2\xb8\x9c\xf2\x81\x15\xd2\xe2\xd4\x49\xdd\xbf\x25\xf2\xd8\xe4\xf6\x56\xf1\xb9\x30\x4d\xd3\x0f\xf1\xec\x40\x75\xed\x6f\x51\x8c\xb7\x4d\xe5\x31\x61\x85\x6b\xba\x7e\xb3\xe0\x92\x83\x51\x65\x29\x98\x69\x79\x4b\xdc\xce\xdf\x8a\x3e\xbe\xa7\x4e\x77\xba\x58\x39\xf4\xa8\x7c\x4b\xce\xfc\xbe\x7f\x1a\x7d\x0a\xaf\xeb\xa5\x7a\x55\xcc\x7f\x6d\x06\x65\x67\x98\x77\xe3\x27\x85\x47\x60\x7c\xed\x64\xd9\xb0\xf7\x3c\xd3\x39\xa9\xb3\x2b\x45\x17\x20\xe6\x39\x5c\x57\x6e\x13\x3e\xb6\x0a\x10\x5d\x17\xb8\xa3\x67\x8c\x1e\x32\xbf\x2e\xfa\x33\xf8\xaf\xf2\x70\xb6\xbe\x6f\x5d\x85\x24\x65\x49\xd7\x2c\x43\x69\x0c\xb3\x75\x48\x17\x11\xfa\xa4\xd1\x46\x6b\x1f\xb8\xb4\x26\x48\xf5\xc6\xeb\xa3\x69\xae\x42\xea\xca\x2d\x67\x48\xff\x39\x4e\x56\x88\xc4\x4c\x2b\x89\xc8\x5d\xf0\x0e\x55\x37\x8a\xab\xab\x2e\xea\x1b\xac\xa9\xf1\xc8\xce\xe9\x1d\xa9\x1a\x4d\x7e\xd4\x69\x32\x45\xc5\x24\xb4\xee\x32\xdc\x0f\x3d\xd4\x30\xaa\x43\x6e\xff\x5d\xfd\x48\x73\xc7\xeb\x75\x45\x9b\x6a\x99\xab\xac\x7c\x99\x7c\x8d\xa3\x85\x62\x83\xc4\xc3\xaa\x4f\x78\x47\xb8\x15\x15\x38\xba\xa6\x71\xb0\x08\x37\xb8\xad\x7e\x55\xb6\x7b\x6f\x70\x0d\x22\x79\x5f\xe7\xba\xaa\x43\x31\x5b\x5b\x4e\x98\x16\x84\x76\x37\x6c\x37\xa4\x6d\x9f\xa8\xc6\x96\xb3\xbd\xbe\x55\xb8\xaa\xf3\x5d\x3b\xb5\x26\xc5\x1c\xc7\x5d\xf2\x61\xc9\x71\xab\xa7\x42\xac\x10\x71\x73\x11\xf1\x29\x2a\xf0\xb4\x82\x54\x8f\x3e\xb3\xf7\x1e\xb9\x0c\x1b\xdd\x6d\x47\xd9\x80\x3b\x55\x5d\x4d\xf9\x46\x48\x56\xa4\x53\xaf\x11\xbf\x83\xd7\x69\x67\xc9\x5d\xc8\x49\xf4\xfb\x54\x61\x52\x2d\x63\x29\xbd\x74\xbb\x17\x48\x65\x64\x3a\xf2\xe1\xc9\x50\xc1\x8d\x10\xc2\x33\xdc\xba\x53\x37\x89\x7b\xf1\x49\x7b\x5d\x48\x46\x82\xbc\x0b\x22\xe3\x89\xe3\xd5\xf3\x28\xbb\x49\xff\xe4\xe7\xa8\x61\x94\x68\x30\x8d\x96\x44\xed\x29\x55\xd3\x01\xba\x5b\x52\x20\x70\x14\x18\x0a\xf8\x04\xfa\x83\x81\x8e\xa5\xd0\x6d\xe8\xc1\x75\x16\xfe\x29\xc9\xf3\xd4\x5c\xc2\x7d\xd2\x9f\x71\x0a\xf1\x04\xf9\x43\xe7\x51\xd2\x18\xe5\xa2\x39\x85\x3c\x48\x3d\x2a\xf7\xa4\xec\xa1\x9d\x60\xdc\xa6\xde\xa0\xdf\x2c\xb5\xa1\xcf\x07\xfe\x26\x3e\x01\x4a\x41\xfb\x80\x61\xc6\x67\x28\xdc\x31\x09\x6a\x80\x81\xab\x68\xdc\x2e\xb0\xf4\x84\x13\x3e\x1a\x6c\xdb\xd3\x42\x40\x82\xb7\x3a\x36\x13\xd1\x90\x6d\xe5\x04\x89\x09\xb1\x65\xd3\xc8\xb5\xd0\x2b\xe0\x31\xe5\x36\x9c\x55\xb2\x8b\xe6\x06\x9f\x4f\xf4\xa6\x37\x33\xbd\x03\xf2\x19\xb1\x4c\x95\x63\x3c\x64\xc1\xfc\xef\xf2\x3e\x4c\x1d\xef\xd5\x31\x13\xf6\x24\x4f\x37\xf2\x1b\xf7\x95\xb7\xa5\xad\x85\xb0\x8a\x7b\xcf\xa4\x26\x86\x71\x8d\x92\xd3\x24\x1e\x37\x8b\x7e\x87\x7c\x8b\x6b\x8b\x08\xa3\xc6\x71\x6e\x27\x18\x69\xf7\x38\xe2\x80\xe5\x40\x1d\x67\x8a\x63\x01\xc8\x67\xe3\x2e\xf6\xa3\xe7\x2b\x9c\x8e\xa8\x30\x49\xf2\x95\xc3\x51\xd8\x06\xd9\xdc\xd6\x95\xb8\x87\xd2\x05\x15\x9b\x08\x76\x12\x6b\xb1\x94\x08\x8b\x5d\x68\x97\x48\xaf\x44\x3e\xc5\x3e\x14\x9e\xd0\x26\xfe\x07\xcd\x4a\x30\xd3\xff\x22\xfd\x3b\x4f\xe9\x08\x33\x3e\x72\xfe\x9c\x7b\x5b\x76\xa8\x0a\x79\x68\x2d\xea\x87\x89\x3f\x70\x02\xe3\x69\x34\x34\x1d\xc0\xb2\xf4\x1a\xc3\x54\xdc\x9d\x72\x91\xb0\x99\x10\xa2\x21\x53\x3d\x88\xe7\x55\xc1\x45\x5b\xc8\x14\xf9\xf3\xf8\x45\x54\x0f\x69\xb2\x3f\x82\xbe\x41\x54\xea\xd8\xc0\xf0\xe5\x47\x9d\x09\x45\x42\x9d\x4e\xfb\x4b\xcb\x6e\xb5\x7e\xeb\x2b\x44\xbb\x35\x4f\x6d\x60\x63\x78\xf5\x2f\xcb\xbf\x62\x5f\xd4\xec\xe1\x9f\xc7\x17\x55\x21\xc8\x66\xe2\x24\xe3\x83\xc2\x19\xa4\x11\xdd\x82\xb8\x75\x14\x95\xea\xb5\xdf\xff\x68\x66\x59\xae\xe3\x10\x70\x58\x28\x39\xe5\x5e\x7a\x60\xdc\x6d\xaf\xac\x6c\xc9\x48\x7c\x4f\x3e\xaa\x70\x20\xb5\x4e\x87\xde\xd7\xe3\xae\x75\xc4\xae\x6f\x7f\xc4\xb3\xc7\xf5\x37\xa7\x92\xec\x09\x59\x75\x40\xfe\x73\xd2\xda\x2a\x97\x58\x04\x65\xba\x1e\xe3\xa7\xa5\x6d\x54\x6d\x70\x3c\x0c\x20\xc4\xf0\xc9\x92\x52\xd4\xe1\xe4\xf1\x53\xc8\x43\xfb\xe7\x76\x1b\x50\x8b\xf6\xe8\x6b\x2f\xa2\x4b\x06\xbf\x6b\x30\x98\xcb\xbd\xd6\x5c\x00\x97\xd9\x31\x85\xa8\x24\xcc\x6a\x62\xe5\x53\x89\xe7\x6a\x68\xb1\xf6\xe4\x61\xe3\x2b\x3f\x90\xfa\x44\x7d\xca\xf1\x36\xe0\x24\xd9\x74\xe2\x76\xa9\xed\x49\xee\xb8\x37\x92\x78\xe4\x61\xf7\xb4\xb2\xfd\x07\xa6\xd5\x06\xa1\xe7\x8d\x4d\x52\xbf\xc4\x10\x06\xfb\xb9\x93\xb0\xdf\x7a\x16\x10\x1d\xf1\x0d\xad\x5f\xf2\xdd\x89\x85\xf5\xfe\xb1\xb3\xc9\xbb\x4d\x6f\xfc\x78\x54\x58\x33\xe1\x34\x9f\x7e\x5c\x42\xbe\xe2\x49\x41\x97\xdd\x3d\xee\x46\x79\x83\xa6\x8e\xde\xa1\x52\x31\xff\xda\x01\xda\x7c\x1c\xaf\x72\x37\xad\x8b\xb0\x4a\xca\xa0\x27\x10\x4f\x03\x78\x60\x2e\x59\x55\x32\x1f\xb8\x43\x25\x27\x6e\x60\x9c\xa1\x23\x02\x12\xc1\x77\x0c\xaa\x63\x0c\xec\x0a\x55\x5e\x46\x90\x25\xd8\x9e\x63\xa5\x94\x15\xb8\x17\xa3\x1b\x28\xc3\x04\xe7\xb6\x6b\xd4\x7c\x62\x89\xa9\x8f\xb6\x86\xd4\x21\xf9\x1f\xed\x1c\x65\x29\xfd\x13\x5d\x47\x65\x22\x74\x00\x4c\x5f\x92\x70\x94\xc1\x05\xda\x02\x66\x81\xe3\x60\x8c\xa3\x17\x3c\x07\x5e\x78\xa9\x92\xa4\x23\xb6\x1d\xad\x25\x87\x90\x98\x23\x38\xf2\x04\x19\x6e\xb3\xa1\xf4\x53\x30\xa6\x79\x54\x2a\xb5\x48\x92\x45\xf3\xa7\x81\x74\x3a\x7d\x0d\xbd\x06\x61\x03\x2c\x03\xae\x27\xa4\x33\x5c\xc1\x85\xfe\x17\x40\x0a\x14\xed\x68\x09\xdd\x84\xeb\x2e\x0c\x12\x5e\x30\xf6\x1f\xbe\x4b\xec\x03\x67\x0d\x1d\x21\x29\xc0\xd8\x96\x46\x72\x36\x58\x6f\x3c\x4c\xf1\x81\x66\x8a\xbd\xa9\x36\x10\x8f\xc6\xa5\xd9\xc0\xb3\x8a\xa3\xe8\xfe\xb0\x36\x7e\x08\xa0\x30\x57\xfa\x53\x19\xb7\x99\x72\xc7\x85\x50\x26\x6b\xda\xb9\x07\x78\x14\x6f\xf1\x21\x3f\x42\x08\xf7\xf2\xe0\x02\xa2\x2b\x97\xd5\xbc\x8c\x64\xc1\xf5\x33\x64\x91\x97\x73\x67\x88\xa6\x50\x96\x72\x9e\x51\xf9\xd4\x8d\x9c\xc3\x45\x64\x5a\x2e\x47\x1f\xef\x43\x6f\xe7\xe4\xfb\x47\x30\x36\xb0\x7f\x3b\x06\x80\x47\xd8\x9a\x33\x77\xb0\x8f\xe5\xf3\x0f\xf8\xe3\x1e\xc9\x1c\xfb\x93\xf0\x1f\xa4\xce\x8d\x2c\xc2\x57\x49\xb8\xee\x03\x69\x96\x18\x25\x38\x45\x5e\x2d\xaa\xa5\x70\x29\xbb\x84\xa7\x0a\xb9\x54\x9d\xe0\x52\x5c\x1b\xed\x35\xff\xb2\xff\x02\x80\xcd\x63\x3a\x16\x82\xce\x5c\xcb\x53\xeb\x31\xd2\x4a\xc7\xbd\xa7\xb0\xbc\x8a\xa4\x9e\xdb\x38\x96\x81\x5e\xef\x87\xd7\xea\x0c\xda\x97\x84\x21\x6d\x0f\x6f\x82\xf8\x50\xbd\x8f\xf4\x99\xec\xa8\xec\x2e\xa0\x52\xc4\x72\x52\xec\x05\xda\x24\xe9\x4c\xbf\x3d\xf4\x6e\x51\xb8\x63\x15\x03\xc5\xcf\x3d\x2e\x44\x87\xb5\x53\xc7\xec\x30\xf9\x2d\xa4\x2e\x16\x96\xda\x58\x5f\x3b\x1f\xa7\xac\xeb\x53\x7f\xc6\x8f\x54\xb7\x73\x5d\x09\xdf\x2b\x41\x62\x29\x29\xc5\xb8\x3a\x3f\x8a\x7c\xaa\x9c\x1c\xf3\x8e\x9a\xa1\x62\xfa\x25\xd2\x57\xc9\xec\x1d\x47\x80\x37\x42\xf1\x51\x08\xa5\xd9\x13\x39\xba\x03\x5d\x3d\xa4\xef\x60\x62\x3a\xfa\x0e\x57\xdb\x63\x4f\x77\x9d\x54\xad\xc7\x7d\x6f\xab\x63\xcb\x08\x21\x4d\xdb\xf1\xdf\x88\x7d\xb5\xd2\xbc\x2d\xe4\xcd\x95\xe8\x18\x0f\xca\x65\xdd\x7d\xdf\x9f\xb4\x26\xe5\x55\xc7\x53\x80\x4a\x5c\x72\xa4\x15\xe5\x73\x30\x6e\x84\x86\x8e\xd8\xeb\xd9\xde\x8f\x49\x1d\x79\x65\xce\xc5\x92\x06\x68\x4a\x3c\xae\xa1\xfb\x04\xeb\x09\xfe\x43\xdb\x35\x7c\x21\x31\xbb\x11\xca\x3d\x42\x7a\x50\xdd\x1c\xfd\x95\xc2\x36\x46\xfa\x3e\xa1\x65\xab\x4b\x1c\x1f\x03\x31\x92\xc5\x47\xe6\x95\xbd\x3e\x5e\x3c\xfc\x00\xf5\xfd\xd0\xe7\xf6\x35\x98\x69\xfb\xc2\xaa\x2e\x60\x57\x8d\x62\x14\xaf\x70\x3b\x07\x22\x58\x48\xbc\xb4\xeb\x32\xee\x0f\xe1\x6b\xcb\xf3\x5c\x98\x44\xad\xcb\x8e\xbe\x46\x59\x6d\xda\xe9\xfb\x86\x3a\xa1\xd1\x3a\xad\xa4\xbf\x90\x64\x9c\x77\xa1\x2f\x2a\x93\x1c\x12\xd1\x33\xd1\x36\x83\x35\xf4\x6e\x4c\x6f\x73\x23\xb0\x1a\x17\x62\xb8\x0b\xa8\xf0\x2f\x44\x65\x8c\xc9\xc4\x0a\xea\x79\x86\x80\x5c\x5c\x74\x1b\x5c\x4e\x4d\x8c\xa7\x80\x47\xe8\xb1\xfe\x9e\x50\x03\x83\xe0\x70\x0f\xae\x87\x06\xcf\x65\xd3\x7c\xb0\xc1\x07\x4f\xd1\xf4\x38\x78\xe0\x1d\xed\x2f\xfe\x74\xd3\x5f\x3a\x99\xb8\xdc\xe0\x4f\xff\x45\x2a\x12\x3e\x04\x20\xf2\x45\x6a\x12\x63\x09\x35\xb2\x28\x8b\xb1\x97\xf6\x34\x7e\x12\xc8\x01\xc4\x7e\xaf\x21\x32\xb8\xcb\xe1\x10\xcc\x81\xad\xcf\x72\xa9\x25\x44\x9b\x03\x7f\xa9\xd7\x88\xff\x06\xb6\xd0\x12\xc8\xb3\x9b\xa2\x69\x67\x28\x33\xf5\x26\x7a\x16\x75\xb6\x30\x86\xfe\x3f\xda\x7a\xca\x2d\xa0\x82\x9e\x5a\x38\xc1\x48\x01\xea\xe2\x7a\x40\x37\xc6\x7b\xbf\x03\x90\x07\x14\xe6\x30\x04\xc7\xc3\x23\xa7\x4f\x91\xbb\x19\xcb\xf6\xa7\x51\x7c\x19\x88\xbe\x16\xca\x7d\xc6\x91\x86\xdb\x54\x00\x5c\xa1\x8b\xa5\x39\x82\x42\x81\x33\xed\x36\xb4\x88\xfc\x9c\x5e\x0f\xb5\x16\x3a\x03\x2c\x38\x22\x6e\x2e\x83\x0d\xbf\xf4\x2b\x06\x1b\x98\x34\x87\x5a\xe8\x11\x6b\xc1\xc9\xf3\xa4\x74\xae\xcf\xde\x56\xd2\x5b\xee\xdc\x9e\x97\x64\x1d\xe7\x64\x7d\x1c\x25\x82\x63\xd4\x7e\xa7\x2e\xe4\x90\xf9\x93\xa9\xb7\x38\x85\xa4\xf7\xb4\x51\x4e\x62\x41\x1e\xbd\x8b\x13\x14\x5b\x09\x8c\x70\x9c\xfc\x76\x31\x3e\xb2\x9f\x38\xdc\x81\x82\xd9\xa6\xe3\x37\x09\x0f\xa4\x13\x63\x83\x44\x83\xd4\xbd\xdb\x8e\x84\x94\x84\xd4\x1e\x20\x7b\x8a\x85\x9a\x4a\xca\x02\xd1\x49\xee\x65\xca\x2b\xd1\x7c\xe2\x67\xea\x5d\x61\x64\xbe\x98\xf6\x4c\x80\x8f\x5d\x4e\xff\xc1\x17\xfb\x2d\x62\x84\xf3\x32\x1d\x67\x80\x9d\x5c\xdb\xa3\x1e\x78\xa8\xe2\xd1\xe8\x76\x82\x8f\x71\x6d\xc7\x30\xe1\x87\x3e\xa9\x5a\x4c\xbc\x54\x5e\xa5\xaa\x25\x8d\x6b\xae\x72\xe6\x91\x7b\x55\xbf\x08\x04\xca\x3e\xe5\xec\x3c\x22\xf5\xae\xec\x63\x4c\x24\x7d\x81\xa4\xdd\xf7\x04\x40\x12\x2d\x77\x8c\x60\xfc\xc7\xcf\x3a\xa4\xc7\xf9\xb6\x1e\x1c\x6a\xc3\xaf\x68\x7a\xd9\x56\x88\x7f\xdf\xe0\x55\x55\x4c\x38\x5b\x4b\x54\x0c\x12\xf7\x9b\xd5\xac\x38\xd2\x09\x13\x1f\xf7\x91\xfc\xd2\x10\x96\x1b\x4b\x5d\xa3\x3d\x1b\x4d\xa1\x21\x54\xd3\x7c\xf1\xf4\x3b\xd2\xbb\x8e\x64\x46\x8e\x90\x72\x40\x8f\x55\x8c\x64\x0d\x1c\xc6\xa5\x0c\x5c\x6a\x29\xc0\xdb\xf5\xae\x33\xb1\x09\xd3\x3b\x93\x64\x6f\x89\x93\x5a\x93\xe0\x7e\xd2\xb2\xc6\xd5\x58\x11\x39\xb8\x46\x95\xe3\x45\xe1\x9b\xaa\xa3\xc6\xa9\x8f\x74\x3b\x7c\x97\xd3\x11\x4a\xbc\xa3\x08\xf8\x2d\x0e\xd9\x3f\x82\x75\xdb\x1f\xd4\xff\x11\x37\x69\x2c\xa1\x59\x8b\xbb\x34\xec\x5e\x31\x8a\xef\xed\x7b\x2b\xf3\x20\x74\x74\x95\xc0\xb3\x89\x07\x5a\xab\x30\x5f\x49\xef\x1b\x08\xd9\xa7\x28\xee\xe6\x13\x51\x0c\xaa\xc6\x50\xb3\xed\x37\x7d\xad\xea\x97\x63\x1d\x30\x2e\x7e\xbd\x7f\x3e\xe6\xde\x51\xff\xfe\x18\x6c\xf7\x81\x5f\x4d\xdf\x70\xf0\x38\xb3\xc2\x16\x9f\x32\x7c\x51\xda\x49\x88\xe8\xbb\x01\xa9\x88\xe9\x9d\x12\x8c\x8a\x24\x6a\x3e\x93\xcd\x23\x9f\xa9\x25\x46\xa5\x52\x37\x56\xc8\x7c\xa7\xd0\x46\x35\x6b\x1d\x6f\x00\xf1\x12\xcf\x23\x17\xe1\x87\x65\x6b\x47\x5e\xc0\xe3\xa8\xae\x8e\x77\xb0\x1e\x13\x5f\x5d\x03\x9b\xb1\x37\x55\x1a\xb8\x0f\xcf\x64\xbf\x81\x0f\x13\x37\x11\xd6\xc1\xff\x91\xa7\xe4\x2d\x86\x7f\x52\x7e\x46\xd7\x33\x37\xd0\xa7\x6e\x33\x31\xe5\x8c\x70\x7b\x01\x6b\x06\x34\x70\x64\x29\xf4\x05\x53\x37\x12\x00\xbd\xc6\x3e\xe8\x88\x80\xae\xe0\x03\xcd\xff\xa0\x4f\x04\x48\xf9\x0d\xb6\x22\x5e\x65\xe7\xc2\x41\xe4\x9d\xf8\x2e\x98\x4e\x39\x9d\x6b\x86\xdb\x69\xb4\x68\x37\xf8\x33\xe0\xba\x2d\x8a\x59\x0a\x2e\xb6\x47\x30\x3f\xc1\x4b\x0f\x47\x41\xf3\x09\xa1\xc3\x22\x68\x2d\xd1\xab\xbd\x0a\x5a\x4c\x4a\x32\xc7\x42\x11\xe4\x1d\xca\x14\x48\x44\x89\x63\x5d\x82\xf6\x51\x01\xbc\x07\x3c\x99\x36\x9e\xeb\x0f\x87\x02\x96\x51\x0f\xe1\x4e\x06\x7f\xdb\x5a\xa6\x3b\x34\xcd\x3e\x99\x79\x1e\xae\x39\x98\xc4\xd0\xd0\xc9\x83\x7b\x18\x43\xf4\x7f\xad\xb7\x19\x17\x81\x92\xca\x8b\xe0\x52\xe0\xa5\x62\x3e\x58\xc8\x60\x32\xfb\xc0\x01\xd0\x06\x17\x04\x2d\x06\x2f\xe7\xb0\x20\x3a\xd4\x18\x15\x07\xcf\x80\x51\x3e\x17\xe1\x76\xa6\xa3\x7d\x34\xb3\x80\xf9\x7e\xff\x49\x60\x39\x1b\x1a\x88\x05\xb2\xd9\x40\x4b\x32\xd0\xcc\x2e\x34\xe1\x80\xbf\xec\x38\xd9\x75\x46\x21\x3b\x1a\xae\x61\x9c\x64\xa7\x60\x33\x41\x7f\x36\x22\xfb\x12\xd8\xc5\xe6\xee\x7e\x04\x45\xb2\x55\x3e\x43\xd0\x5f\x36\xcb\x5e\x02\x9f\x61\x93\xf6\xbe\xa5\xcf\x91\x38\xf7\xa1\xe8\xbb\xc5\x50\xd3\x19\xba\x49\x74\xa9\x62\x26\x30\x45\x64\x23\xd5\x03\x74\x21\x00\xf1\x81\xf7\x82\xfb\x18\x1c\x83\x2c\xd8\x9e\xbd\x9a\xf1\x9e\xaf\xdd\x4d\x03\x15\xbc\x2b\x3e\x15\x50\x12\xf7\xad\xfd\x29\x78\x23\xe7\xf7\x58\x2c\xb5\xd8\xe0\xd2\xe3\x41\x3d\xa1\x3b\xdf\xc0\xa3\x39\x95\xa7\xe9\xdf\xd1\xea\x35\x7b\xc4\xfd\x74\x27\xf5\x0a\xc6\x4d\xfa\x90\x12\x87\x9e\x0e\x24\xc8\xfb\xb3\x96\x01\xff\x49\x9f\x44\xde\x67\x98\xc4\x77\x7c\x78\x20\x4a\xa8\x74\x08\x87\x42\xf9\x0e\x23\xbf\x29\x29\x4d\x35\x9d\x03\x94\xa1\x86\x85\x75\xc9\xd4\xe5\xb5\x2d\xe5\xcf\xa9\xa6\xea\x59\xc2\x5b\xb4\x8d\x95\x29\x80\x1b\xed\x94\x51\x5e\x56\x45\x07\x74\xfa\x8c\xe7\x80\xab\xa6\x34\x72\x3e\xf0\x45\xf1\xcd\xc7\x89\x71\x53\xea\xec\x80\x04\x0f\x0b\xd7\x0f\x9d\x23\x4b\x06\xd4\xed\xb7\xc8\x6f\x7a\x73\x6a\xd2\x28\xb1\x5d\xd3\xb4\x53\x28\x77\xda\x88\x82\xd5\x54\x62\xd3\x30\xad\x8a\xb6\xba\xee\x38\x32\x80\x76\xcd\x2c\x4f\x7f\x4c\xaf\x30\x7e\x8d\x88\x05\x48\xda\x4f\xde\x67\x18\x05\x0a\xad\x03\x0c\x26\x8b\x9e\x0d\x4e\x90\xb7\x8d\xb9\xb7\xcf\x23\x57\x0e\x57\x57\xf3\xc9\xbf\xfb\xaf\x6b\x7c\x29\xc2\xee\x6b\xfc\x5c\xaa\x55\x7b\x15\xf5\x0b\xf5\x68\xb3\x75\x69\x0f\x8d\x55\x17\x99\x8e\xa5\x47\x54\xfe\x8b\x98\x05\xac\xd7\x6f\xf5\xee\x63\xac\x51\xcd\x77\xd0\x81\x0b\xc4\x82\xc1\x04\xd2\xa7\x03\x5f\xda\x4a\xc8\xd1\x7b\x17\x9a\x9f\x90\xdb\x47\xde\xaa\xeb\x29\x9b\x06\xe4\xbc\xab\x94\xfd\xdd\x2f\xa8\x74\x6a\x6e\xdb\xbb\xd2\x30\xda\xaa\x46\x69\xfa\x1a\xda\xd3\x6a\x55\xf8\x63\xfa\x11\xe3\x62\xef\x01\x60\x50\xbd\xde\xe1\x18\xa3\x59\x7c\x79\x74\x1f\xef\x0b\x12\xe8\xba\xc3\x23\xa1\xd6\xd4\xa3\xb9\xdf\xd1\x03\xba\x57\xdc\x4a\x6c\xa8\xa8\x9f\x1b\x82\x9b\x00\x9e\x73\xde\x12\x86\x50\x8b\x38\x66\x52\x79\xc6\x00\x27\x82\x62\x88\xc8\x60\xff\xa3\x75\x79\x29\xd8\x77\x19\x73\x6c\xaf\xb3\x4f\x42\x9a\xd1\x25\x3c\x37\xf4\x89\x2e\x5f\xee\x18\xd6\xad\xee\x1a\x37\x12\xa7\xd4\xa5\x73\x27\xe1\x6f\x8b\x9c\x39\x07\x88\xc1\x00\x96\x43\x25\xed\x29\x6b\xe7\x78\x51\xa2\x32\x0a\xd9\x3f\x68\x53\x22\x96\xb0\x4f\xd2\xcf\x78\x15\xb0\x47\x18\x67\x6c\xcf\xb0\xfb\xa1\x77\x23\x59\x5c\x3c\xde\xab\x53\xc9\x9d\x42\x40\xd6\xb9\x73\xcc\x44\x4d\xf9\x5e\x4e\x09\x49\x2a\xac\xe2\x6c\x25\xb7\xd1\x3f\xb0\x7f\x51\x1e\x94\x05\xb0\x4f\xd3\x36\x67\x2c\x63\xd7\xd1\xab\xc2\x2f\xb0\x79\x8c\xa5\x5e\x3b\xd8\x6c\x70\xc8\xf6\x0c\x5b\x02\x93\x87\x8e\x71\x16\xd0\xe2\xdb\x7f\xb1\xc7\x68\x4f\x6b\x3a\xd9\x44\x3a\x5a\x5b\xca\x8e\x00\x26\x09\x28\xec\x8d\x40\x3b\xed\x2d\x7b\x1a\xa3\x08\x59\xc4\x7a\x05\x6e\x49\x47\xb1\xee\x43\x53\xc3\xfd\x59\x6f\xa1\x47\x5b\x7f\xb2\xfe\xc2\x27\x6c\x2f\xb0\xed\x98\x07\x06\x2d\x58\x2a\xe6\xdb\xb6\x74\x56\x26\xf3\x5f\x75\x20\xcb\x85\x35\x4f\x63\xcd\x72\x60\xad\xe1\x27\xb1\xe6\xb3\x5c\xa8\xef\x59\xb3\x59\xd9\xa5\x4a\xe6\x37\x96\x2c\xed\x0a\x6b\x39\xeb\x78\xd8\x6d\x96\x1f\xeb\xdd\xd6\x17\xac\x2c\xf6\x42\xbb\x59\x2c\x35\xdb\xa3\xbf\x92\x19\x2b\x5a\xd6\xf2\x92\x19\x2b\xec\xa9\x1a\x61\x86\x08\xdd\x55\xa3\xcc\x40\x41\x33\x6f\x19\x73\xa7\xc0\x96\x72\x8d\xb9\x93\xdf\x57\xd2\xc0\xdc\xcd\xf7\x4f\xb3\x67\xe6\xf3\x06\xc2\x24\x4c\x88\x67\xb1\xf5\x3e\xb3\x97\x8b\xb0\xcb\x66\x3e\xe7\xf4\xf7\xfa\x42\x2f\xca\xaf\x34\x99\xa1\x0f\x5a\x85\x49\x0c\xbd\xd5\xec\x54\xec\x81\xbe\xa8\xae\x70\x76\xc3\xd3\x95\x79\xe4\x1d\xf0\x6a\xf9\x7b\x44\x2c\xec\x23\x2b\x4d\x75\x82\x0b\x24\xe3\xa1\xaf\x60\xad\xe8\xc5\xd6\x7e\xf8\x9a\xe0\xa9\xdd\x38\x73\x09\xef\x54\x57\x03\xf8\xaa\x9e\xdb\xb0\x1b\x7c\x5d\x1b\x6e\xc4\x82\x1f\xaa\x67\xca\x4e\x80\xff\x2a\x5b\x58\x52\x68\x55\xc5\x16\x62\x0f\xe4\xaf\x6f\x2d\xfa\x0e\xa1\xb4\x5f\x52\x2c\xa1\x66\xf5\x94\x50\x4f\xe8\xa5\xfc\xca\x56\x02\xbc\x59\x92\x63\xf7\x13\x26\x0b\xf6\x76\xf4\x83\x71\x3d\x87\xeb\x0a\xc0\x9d\x9d\x37\xf5\x12\x30\xac\xed\x84\xe4\x2f\x98\xdd\xcc\x84\x5f\x80\x50\xc3\x7c\x82\x37\xd8\x5c\x53\x5a\x38\x02\xde\xad\x64\x27\xaf\x84\xac\x0d\xee\x21\x64\x08\xa5\x91\x6d\x5d\x09\xed\x95\x57\xda\x2f\x82\x27\x8b\x10\xed\xc7\xc1\x79\x43\x7f\x6b\xe5\xe0\x94\xfe\x83\xba\x7d\xe0\xd4\x9e\x68\x49\x20\xb8\xb2\xc3\x0c\xfb\x80\x1e\x2d\x23\xf8\x4a\x30\xb3\x41\x56\xb8\x05\x54\xd7\x2c\x48\xea\x02\xaf\x9b\x56\x84\x38\x42\xf6\xe5\x03\x9e\x3f\x20\xa2\x72\x9a\xbd\x03\x34\x22\x9e\xde\x3e\x83\x71\x71\xbc\xb8\xe6\x21\xe3\xc8\xc8\x2b\x9d\x25\xe3\xc0\xa0\x83\xb8\x83\x71\xa6\xd7\x02\x1a\x64\x3c\xee\xb8\x88\x77\x04\xa7\xb4\x38\x17\x5c\x01\x3d\xea\x1d\x93\x0a\x40\x72\x95\x62\xd7\x6f\xf0\x90\x1e\xf2\xfc\x0e\xcd\x51\xad\xb2\x8f\x81\xa2\xc5\x49\x5d\x56\xd2\xcb\xa5\x8f\xea\x8f\x49\x9e\x97\xc9\x8c\x91\xe2\x8f\x68\x1f\x99\x51\xec\x88\xb9\xce\xda\x29\xca\xc6\x89\x89\x25\x42\x11\x21\xb5\xa8\x5c\x30\x40\x0a\x4a\xfa\xcd\x7f\x4c\x49\xdc\x75\x86\xbf\x94\x86\xf2\x88\xe6\xa5\x00\xf7\xd6\xcd\xe0\xd6\x40\x40\x27\x4d\xba\x02\xed\x51\xbf\x55\x12\x80\x91\x1a\x8e\x88\x53\xb0\x7f\x65\xd6\x22\x23\x3e\x85\x79\x5d\x78\x8f\x70\x99\x38\x45\xb8\x8a\xb4\xbb\xc8\x4f\x90\x4c\x7e\x9d\x74\x86\x6f\xa4\xf6\xec\x32\xf0\xee\xd3\x01\x0f\x6f\xde\x16\x86\x66\xdd\x22\x2e\x1f\xba\xd0\xf1\x48\x92\x8d\x6b\xa8\x33\x8b\x8d\xf8\x3e\x83\x9b\x68\x2f\xe1\x9d\xd4\x20\x9a\x4f\xfc\xc4\xcc\x10\xe6\x91\x2d\x09\x7a\x41\x2b\x25\xa7\xf0\x01\xff\x03\xf5\x40\x92\x9e\x1f\x4c\xf7\xdc\x55\xc0\x33\x03\x83\x1e\xb6\xdc\xdf\x20\x71\xdd\x3a\x6e\x06\x1c\xdf\x4e\x10\xaf\xa0\xfa\xd4\xee\x10\x65\x53\x1f\xe9\x5e\x09\x5b\x69\x52\x09\x49\x38\x93\xee\x0a\x67\x0a\x50\xf4\x57\xf8\x21\xfe\x11\x60\x6f\xa1\x2d\xdf\x82\xd1\x98\xb4\x9c\xa7\x06\xe1\xe0\x9f\xbc\xd9\x10\xca\x63\x26\x17\x80\xe9\xeb\xe2\x38\xaf\x98\xe6\xd6\x8f\xc2\xeb\x30\x50\x33\x49\xb8\x11\x1e\x2f\x17\x08\xc4\xf0\x33\xb1\x3b\xff\x3b\x73\x3a\xb4\x83\x8f\x61\xfa\xe0\xf6\xf2\x6e\x31\xb9\x05\xf1\xbc\x10\xe6\xcd\x44\x29\xf7\x3c\xcb\x3a\xb8\x8f\x9b\xc0\x2a\xf2\x98\xcd\xb9\xc8\xea\x5e\xd7\xc2\x09\x67\x4f\x6b\x49\x16\x74\x0b\x12\xcc\x31\x82\x35\xfc\xdf\xda\x55\x7c\x0e\xbf\x56\xf8\x1f\xef\x2f\xdf\x13\xb4\xe0\xb1\x79\xd7\xb1\x63\xdc\xdf\x3c\x59\x3e\x9d\x0b\xf0\x82\x12\xbe\x73\x67\x73\x9f\x06\x63\x38\x15\x5c\xaa\xc7\x12\xce\x6a\xce\xff\x6c\xa7\xb1\xcb\x39\xa8\xc6\x3d\xfc\x3c\xcd\xf4\xca\x2d\xbc\x33\x6a\x47\xf5\x02\x5e\xa0\xca\x59\x30\x87\x7b\x4a\xf1\x06\xa0\x72\x93\xe5\x1d\x98\x50\xce\x53\x19\x26\x2f\x88\x43\x94\xae\x4d\x98\xc3\x59\x2a\x6e\x08\xba\xc2\x1e\x14\x4d\x77\x7f\xca\x0e\x12\x04\xdb\xee\x66\x9d\xe4\x11\xeb\x1f\xf1\x76\xd5\xe4\x55\xcc\xe6\x9e\x30\x6f\x57\x2e\xe6\x26\x56\xe6\xf0\xbc\x38\x4f\x2b\xb6\xd1\xae\x72\x68\x86\xa9\xa8\x4b\x9c\xc5\xe5\x63\xb9\xd3\xd8\x3d\x9a\xa8\xf8\x85\xec\x6c\xa5\x3e\xc8\x81\x3d\x47\xd6\xea\x6e\x66\x35\x8b\x25\xb6\x24\x96\xbb\x20\xb4\xf6\x2a\x97\xd9\x31\x62\x48\xe5\x3a\xb4\x6d\x90\xef\xe6\x9c\x6c\x26\x70\x34\x9c\xcc\x06\x12\x35\x85\xfd\xa9\x36\xae\x0c\x62\xab\xaa\x7e\x64\x3f\x63\x6f\xae\x28\x8e\xb3\x60\x3d\xd6\x95\xec\x2c\x65\xa9\xd5\xab\xdd\x83\x59\x2e\x32\x83\xad\x84\x39\x26\xbc\x55\x3b\x8b\x9b\xd6\xb7\x4f\x6f\xe4\x7c\xee\x3e\x2f\x93\x72\xd4\x1d\xad\xec\x87\x9c\x75\xad\xe1\x94\x11\xf6\x48\xe3\x28\xf2\x3d\x3b\xae\xf6\x51\x36\x9a\xf5\xa1\x6a\x7f\xec\x08\xab\xda\x68\xbd\xd3\x82\x15\xa9\xb5\x75\xb7\x65\x3e\x93\xbf\xb3\x35\x33\xd1\x22\x62\x0d\x82\xeb\x33\xfc\x43\xf7\x9d\x73\x72\x60\x8f\xf4\x7f\x9c\xd4\x5e\x1f\x76\x22\xfb\x51\xa7\x90\xe2\xc7\xc6\xb6\x1a\x91\x7c\xf6\xe4\xc6\xa8\xec\x95\xac\xca\x9a\xf6\x58\x02\x2b\xc8\x44\xdd\xf1\x9a\xf9\xaa\xfc\xba\xbb\x15\x13\x56\xfc\xb4\x3d\x0a\xff\x13\x9d\x36\x75\x19\x7c\x4a\xef\xa8\xf7\xeb\xd4\x65\x38\x91\x87\x76\x02\xf5\x1d\x3a\xa9\xc1\x62\xd4\x84\x8b\xaa\x07\xb8\xdd\x88\x62\xa5\x37\xc1\x26\xc3\x49\xce\x23\x59\x45\x91\xa4\x07\x29\xbe\x01\xef\xc4\x6f\x69\x04\xd7\x4e\xd1\x42\xe0\xef\xda\x8b\x02\x07\x68\xd4\xb4\x46\xaf\x44\x1d\x56\xef\x2c\xff\x88\xb1\x13\x9e\xd6\xe6\x61\xe9\x10\x52\xfd\x02\x77\x85\x40\x57\x95\x12\x12\x10\xab\x14\x17\x88\xcf\xd3\x9f\xcb\x1d\xc9\x75\x51\xe1\x52\x02\x95\x12\x70\x41\x3c\x4c\xcf\x71\x6d\x17\x3e\x67\x18\xd6\x3e\x13\x4c\x87\xbe\x55\xc0\xba\x17\xd8\xf3\xaa\xbd\xe5\x09\xb8\xbf\xc2\x24\xcd\x19\x82\x2d\xf8\x4b\x5d\x48\xdc\x46\x58\xa5\xfc\x40\xa2\x17\x1f\x55\xe4\x90\xaf\xa5\xd7\xc8\x0e\x51\x13\xa3\x56\x49\xad\x69\x0f\x02\xfa\xc4\x04\x00\x72\x6d\x11\x76\x81\x79\x6b\xff\xf2\x6f\xc2\x48\x23\xa2\xbc\x9a\xfc\x51\xd9\xae\xdd\x4c\xd9\x23\xd8\xad\x3e\x47\x45\x83\x8b\x54\x25\x34\x27\xfc\x6e\xc5\x1f\xda\x9f\xe2\x45\x72\x90\xfe\x3e\x7d\x8e\xf4\x0d\xf0\x63\xf7\xb8\x24\x9f\xf1\x25\x80\x23\x3a\x0b\x4d\x73\x1d\x12\x2e\x86\x77\x58\x27\xf2\x43\x99\x3a\xc3\x42\xad\x19\x4c\x55\xe0\x35\x76\xe0\x0d\xbe\xb5\x6a\x2f\xb4\x99\x31\x55\x59\x04\x01\xb8\x5c\xc5\x4c\xe8\x46\xd1\x4e\x59\x39\x1c\x95\x96\x23\x5d\x0a\x5f\xd9\x1d\x22\x6e\x60\xee\x0e\xd8\x29\xb2\x61\x1e\x77\x1d\x13\x90\x58\x49\xd6\x8d\xbc\x7e\xd6\x7b\xdd\x23\x0d\x9a\xab\x95\x6f\x51\x2f\xe5\x02\xdc\x57\xca\x83\xdc\x08\xfa\x6b\x05\x81\xbb\x02\x8b\x94\xaf\xe5\x7c\x2c\x44\x4a\x47\x39\x4f\x52\x3b\x24\xc1\x9c\x5b\x91\x17\x44\x0f\x39\x07\x02\xe6\x0b\xcb\x38\x55\xae\x27\xf8\x47\x38\x78\xeb\x1f\xbc\xa9\x9c\x48\xed\x23\xb5\xbf\x22\x5f\x9a\xaf\xbc\x2f\x3f\xc2\xf1\x55\xc8\x65\x3f\x69\x85\xf2\x70\xd9\x0c\xcc\x22\xe9\x1f\xe9\xd2\x02\x3f\x49\x93\xc4\x3e\x65\x40\xbc\x43\xbc\x31\x72\x85\xf0\x95\x68\x8e\x7f\xbd\x80\x25\xb8\xe8\x3a\xca\x7b\xca\xe7\xdb\xc4\x70\x3d\x78\x9b\x34\x76\x2a\x07\x53\xa6\xb8\x49\xf1\xdc\x78\x93\xa5\x91\xb7\x1b\x7c\x28\xf7\x65\x48\x1d\x1e\x35\x24\xb5\xd5\x9a\xf3\x67\x88\xaf\xab\x47\x93\xbb\x45\x90\x72\x38\x22\x46\xe8\x26\x27\xfb\x5b\xf3\x2f\x4a\xa7\xb9\xca\x78\xfe\x22\xc0\x86\xc5\x51\xf3\xaf\xaa\x92\x94\x83\xcd\x6b\x84\x9f\x14\xb9\x0d\x87\xe0\x09\xf9\xf2\xba\x28\x72\x81\xf4\x56\xf5\xbe\xb2\x7c\x89\xbe\x6a\x7e\xee\x6d\x71\x6c\xc5\x96\xa4\x5e\xe1\x1f\xbd\x6d\x38\x4d\xd0\xad\x19\xf0\x63\xf0\x23\x15\x7f\x5d\x77\x70\xc7\xa5\x9b\x6d\x2a\x38\xf3\x84\xee\x4a\x8d\x32\xa9\x83\x28\xdc\xaa\x58\xde\x7a\x1d\x0e\x92\xdd\x6a\x9e\x4d\x3a\x20\x35\x35\x58\x23\x2f\x48\x92\x6a\xe7\xe4\xa6\x89\xe7\x55\x8d\x27\x05\x0b\xf7\x56\x6c\x08\xb7\x12\x20\x74\x4e\x7e\x9e\xbc\x7f\xaa\xab\xae\xf6\x5c\x8c\xac\xd8\xa6\x93\xbd\x57\x78\x40\xf1\x5e\xf1\xa3\x77\x91\xc0\x24\x3f\xdb\xe5\x0f\xf5\xca\x8c\xed\xae\x24\x5f\x69\x42\xf3\x77\x64\x96\x64\x46\x83\x22\x67\x42\xb4\xb7\xe6\x7a\xe2\x57\x21\xa2\xf2\x52\xd8\x03\xc1\x2c\x43\xa8\xdf\x2c\x5e\xa5\x26\xc7\xd5\x86\x3b\x4d\x9e\x6d\x73\x89\x1d\x25\x5a\x2d\x7c\xd7\x70\x1b\xb9\x94\xf9\xa5\xae\xa4\xac\x92\xda\x58\xfd\x17\xbd\x05\xc3\xaf\xaa\xc1\x1c\x2d\xfc\x64\x72\xc6\xb1\x33\xe6\x1b\x94\x84\xbc\x58\xa8\xfc\x0a\x09\x17\xdc\xa1\xfe\x48\x31\x7b\xcf\x55\xbc\xa7\xbd\xde\xe8\x28\x3d\xc4\x90\x5b\xde\x12\x91\xe0\x64\x61\x5d\x83\x2b\x6a\x98\xd9\x51\x7b\x06\x33\x93\x9a\x5d\x5d\x8a\x2d\xc3\xec\xaa\x5a\x85\x3b\x55\xb8\xa7\x62\x84\x10\x9d\x7e\xcf\x60\x47\xfc\x16\x9b\x54\x4e\x20\x9f\x0d\xd6\xaa\x1b\xa8\x7d\xde\xd3\x14\x7d\xf4\x81\x8d\xde\x52\x05\x38\xd9\xf2\xa7\x68\x37\x4c\x13\x86\xd5\x0b\xb1\x10\x33\xb9\x76\x13\xce\x4c\x9d\x6b\xbe\x84\x3f\x8f\xfe\x59\x59\x4e\xf8\x5e\x48\xab\xf0\x23\x45\xa4\x37\xea\xfb\xc8\x07\x62\x9d\xca\x67\x50\xd3\x82\xa9\xea\x30\xda\x37\xaf\xdf\x0a\x04\xd0\xb3\x31\x54\x1a\x05\xf6\x5a\xd9\x89\x16\xc3\x97\x05\x98\x3a\x26\xd9\x17\x96\xd4\x58\x51\x26\x51\xa2\xab\x1e\x50\x0e\xa3\xe3\x4d\x95\x54\x55\xc1\x7f\xc6\x60\x1a\x9c\xee\xa4\x3b\x46\x57\xc4\x1c\xd5\x3a\x00\x63\xc1\xbe\x2a\x2e\xe3\x8a\xd7\x5b\xf9\x38\xf8\x7d\x63\x81\xa4\x07\x46\x58\x31\x84\x30\xf3\x39\x1f\x5f\x1b\xcd\x98\x04\x75\x56\x2f\x64\x70\xc9\xc5\x95\x57\x18\x6f\x50\xfc\x0a\x23\x98\x52\xe0\x65\x88\x04\xef\xa4\x29\xcb\xaf\x43\x60\x4c\x88\x26\x08\x76\x0b\xfa\xa0\x1c\x80\xaf\x7b\xdd\x92\xfd\x65\xb2\x36\x72\xc5\xbf\x58\xf1\x56\xb7\x04\x97\xd8\x1b\x79\xc9\x35\x99\xec\x14\x50\x67\x9e\xc3\x2e\x23\x91\x4c\x37\xd8\x59\x65\x9d\xc6\x06\x76\x56\x3e\xa8\xcf\x64\x63\x53\x5f\x69\xff\xc7\x36\x46\x1f\x50\x17\xb3\x4f\x07\x99\x15\xff\xb1\x3f\x7b\x1d\x94\x05\x71\x96\x6d\x6c\x13\x87\x71\xb6\xaf\xf5\x12\xac\xe3\xa0\xb8\xcb\xcd\xff\x49\x0b\x19\x45\x95\xc7\x25\x67\x89\x5e\x15\x4d\x12\x27\xa4\xdc\x40\x15\xd3\xf3\xb8\x3a\x4f\xd1\xc5\xd4\x65\x9a\x1b\x22\x97\xe8\xe5\xaa\x74\xa1\x20\x68\xa3\xfc\xa9\xe0\xa0\x97\x52\x1a\xce\x7f\xb2\xf1\x80\x28\x85\x3f\x6d\xad\x9e\xbf\x83\xb7\x92\xcd\x31\xaf\xd4\xaf\xa0\xbf\x34\x5d\x2e\x6f\xc4\x7f\x33\x8e\x6b\xf3\x4a\xcb\xf4\x4a\xf5\xff\x72\x39\xe5\x71\x2a\x46\x8a\x87\xfa\x97\xe2\x5b\x54\xa6\x52\x2a\xcf\xd9\xd9\x24\xb7\x90\x6a\xbc\x76\x49\x44\x62\xf3\xc6\x31\x61\xad\xd0\xbc\xf6\x01\x4f\xcc\xe7\xb3\xa6\x56\x05\xd6\x7a\xd2\xd4\xa6\x0d\xd5\x59\xb8\x1a\xe3\x82\xaa\xfc\x92\xcd\xba\x17\xa6\x6d\x39\x68\x6d\xb7\xe1\x67\x72\xa0\xba\x48\x57\xb1\x5b\xa3\xf8\xa7\x9d\xbf\xe3\xb7\x4c\xaa\xda\xb4\xf5\xb8\xf8\xa3\x7c\xe1\x46\xb9\x70\x81\xf8\x93\xf5\x02\xee\x4f\xc1\x08\x33\xb1\xf2\x6b\x93\x25\xf5\x7d\xc5\xa3\xfa\xff\xe1\xa6\x1a\x8e\xd6\x9a\x10\xcd\xba\xaa\xea\xb5\xd9\x9f\xb5\x79\x95\xbc\xa4\x1b\xea\x55\xc6\x3d\xbb\xfd\x14\x23\xba\xb1\x1d\xc3\x32\x3f\x4d\xe2\x56\xb5\xb8\x5a\xd1\xb2\x91\x2c\xd8\x2b\xf9\x69\x3d\x97\xdb\x21\xb4\x87\xc7\x2a\x7b\xda\xd2\xa8\xf9\x15\xfa\xe6\x17\x58\xae\x81\xd4\xb8\x0b\xe1\xa9\x0b\xad\x13\x64\xeb\xb4\x33\xaa\xcd\x49\x62\xd5\x81\x4a\x6a\xe4\x5f\x45\x96\x71\xd1\x0e\x81\xf4\x56\xf9\xe6\xad\x78\xf1\x16\xe5\xbf\x8d\x2c\x41\xb4\xf4\x8e\x75\x14\xd7\x5b\xc8\xa2\xd4\xf5\x82\xc8\xa7\x58\x74\xd7\x2e\x54\x22\xe2\x5e\xfb\x5c\xf4\x89\x9c\x17\xcd\x37\xb0\xb1\x29\x0d\x0d\x20\x7e\x4e\xcc\xfa\x9a\x27\x84\xaf\x21\x2e\x55\xcb\xc9\x4b\xfc\x42\x8c\x8b\xa8\xd9\x9b\x8f\x68\xaf\xd0\x4f\x39\xae\x50\x46\x82\xf9\x16\x9e\x12\x25\xd3\x82\x12\xde\xf3\x04\x1d\x84\xdd\xdc\xb9\x07\x23\x40\x0c\xb5\x49\xb0\x67\x72\x8e\x37\x67\xe1\xd7\xa5\x88\x1a\xe6\x10\x5a\x63\x96\xd4\x00\xa4\x9c\x10\xeb\xca\x21\x4a\x90\x5f\x90\x61\x1f\x2d\x72\xf3\x39\xad\x02\x40\x3b\x7a\x28\x17\x82\x7b\x2c\xf2\x25\x59\xcc\x75\xe4\xe7\x3d\xbb\xb1\xa7\x30\xaf\x3b\x9d\x71\x0f\x11\xdc\xb6\xe9\xf8\xef\x39\xe6\xa6\x47\x44\xcb\x94\xa2\x7a\x1d\x89\x14\x3d\x51\x33\x9b\xfc\x3d\x64\x6e\x65\x24\xb5\xc5\xcf\xdf\x90\x43\x47\x6d\xbe\xa6\xf5\x65\x84\x39\x46\x29\x8e\x41\xbb\x2d\x14\x92\xd5\xcc\x52\x72\x5b\xf7\x2a\xf2\x4c\x8c\xa6\x63\x31\x79\x0c\xb1\xaa\x75\x2a\x05\x9d\xb3\xad\xf1\x39\x35\x22\x65\x51\x5d\x03\x2d\x2a\x7a\xa0\xda\x9a\x4e\xda\x75\xc7\x54\x0a\x8c\xf9\x39\xea\x15\xe0\xa4\xcd\x4f\x35\x30\x94\xee\xc8\x52\x2c\x87\xaf\x59\xbc\x11\x93\x59\xb9\xa4\xc7\x5d\x93\x80\x5d\xe8\x17\xed\x53\x81\xb3\xc5\xc2\xe6\x09\xc6\xce\xec\xb1\x86\x47\x8c\x63\xc9\x4d\xb5\xcd\x60\x49\x74\x9a\x79\x03\xb4\x6e\x97\xa1\x82\x01\x7d\xf6\x9b\xab\xeb\x87\xcf\x6e\xfe\xa0\xee\x63\xb6\x3a\x0e\xcb\xe3\x58\x46\xcb\x58\xd1\x08\x5b\x4d\x5a\xd2\xb9\x94\xb5\x03\xed\xd9\x36\x93\xb5\xbb\xe8\x75\xd3\x57\x56\x6c\xb6\x5b\xfd\x7f\x2c\x42\xb2\x6b\x4d\x3f\xab\x33\xea\x4b\xd5\x36\xd6\xa7\x5d\x91\x46\x35\x3b\xd4\xf7\xbf\xf2\x1b\xec\xe6\xcd\x13\xaa\xa7\xec\x7f\x8e\x6f\x65\x32\x4e\xa6\xe5\x1e\xe1\x04\x67\x8c\x98\xde\xde\x27\xde\x8c\x42\xb6\x0c\x8a\xda\x8a\x2c\x1a\x7b\x45\x36\x59\x94\xba\x26\x61\x63\x92\xaa\x9a\x22\xdc\x1a\x45\xac\x9c\x23\x38\x19\xfc\xda\x80\x15\xa4\xfb\x8e\x6a\xc7\xf8\x8f\x37\xff\x53\x9e\xe5\xa7\x38\x39\x4b\x39\xbc\x0b\x56\x9e\x82\x1f\x3c\x3f\xfc\xef\xb6\x4a\x4d\x6a\x59\x5a\x73\x8b\x3a\xae\x30\xb4\xa1\x5d\xe5\x9b\x39\x58\x5b\xaf\x5c\x98\xf8\xdc\x4c\x95\xff\xb7\xfb\x89\x69\x95\xac\x2f\x18\xd4\x4b\xa4\x28\x5f\x8a\xe6\x96\x64\xd6\xe6\x8f\x8a\xf7\x22\x9e\x53\xac\x64\x40\xf0\xcf\x4a\x29\xd8\xca\x2f\xc3\x47\xb6\xb6\x56\x12\x91\x9c\xa6\xd3\x15\x97\x0a\x32\xeb\x6f\x1a\x57\x65\xdc\xaf\xb9\xaa\x0f\x4a\xdc\x50\xd5\x5d\x9e\xb7\x7b\x7b\x45\xae\xa6\x24\x68\x42\xf7\x54\x15\xeb\xbb\x4c\xe3\x22\xff\xbe\x79\x4c\xb1\x53\x8a\x77\x8a\x97\x2c\x14\x7d\xb6\x3a\xc7\xaf\x16\xe4\xe0\x46\x5a\x83\x6a\xba\x90\xb3\x9a\x8a\xcd\x27\xf3\x3f\xd6\xd3\x2a\x0f\x66\xb0\x6a\x08\x15\xe6\x84\x9b\x55\x91\x06\x44\xe4\x8f\x8a\x29\xba\xa5\x41\x07\x75\x0a\x4d\xc5\xb6\x77\xea\xab\xca\xf3\x9b\x9b\xe4\x4f\x65\xa7\x9d\x52\xc4\xc3\xe2\xab\x56\x6f\xf8\x61\x82\xa3\xb8\xcd\x2d\x0f\x1a\x42\x4a\xab\x9b\x26\xd7\xad\xcf\xaf\xac\x5f\x5c\xfd\x34\x63\x6b\xcd\xcc\x2a\x6e\x42\x55\xe5\x3d\xd3\x8c\xc8\xd3\x46\x83\xa1\x38\xc8\xac\x73\x28\xd7\x6d\xbb\xa3\x2e\x56\x17\x6c\x6e\x90\x63\xe5\xef\x9c\xd0\xe2\x20\x89\x62\xed\x1a\xde\x35\xe1\x4c\xcc\xb3\x61\x9b\x32\x79\xc9\xe4\xfe\x7e\xd4\xfd\xdc\xf1\x9e\xad\x18\xf7\xb4\x80\x8e\x26\x6c\x5f\x9c\xb0\xe5\x09\xbe\x30\xbc\xa3\xe1\x26\x31\x7a\x07\xa2\x46\x4a\x46\x79\xe7\x9b\x7e\x53\x0f\xb8\xdc\xd5\xaf\x07\xb6\xd8\xfb\xab\x7e\x80\x07\xd7\xf0\xa5\x52\x66\x09\xa6\x6f\x48\x87\xbe\x84\xb8\xdb\xef\x8a\xf9\x96\x5b\xdf\xbd\x17\xb7\x2e\x6d\x43\x87\x2b\x1e\x13\xc7\x68\xc1\x11\xde\x86\xd7\x37\x60\x48\x8d\x3b\x0a\x6b\x1c\x29\x52\xef\x62\x53\x33\xcd\xe4\xf2\x4e\x77\x0f\x38\x69\x9f\xaf\x1a\x81\x66\xaf\x19\x90\xc6\x33\x0b\x30\x84\xa1\xd9\x38\x3f\x44\x47\x5f\x27\x7e\x5b\x2e\xb3\x7b\x3b\xc1\x2f\x6d\x61\xfb\x30\x31\x31\xae\xa8\xf9\x27\xa9\x39\x5c\x5b\xff\x8b\xe2\xbc\x23\xa3\x7a\x1f\xf5\xae\x37\xc2\x14\x4c\xef\x70\xf9\xad\xe3\x33\xf4\xf6\x80\xaa\x04\x52\xaf\x79\x28\x9d\xcd\xac\xc5\xec\x18\xb8\x4d\xde\x88\x20\xf4\xca\xc8\x97\x73\x03\xba\xdc\x28\xf4\xd4\x4b\x6d\x83\xd4\xc4\xb8\x4d\xcd\x33\x69\x69\xe1\x25\xf5\x0b\xe9\xbc\x1d\x3b\xcd\x37\x80\x8b\xde\x79\x15\x18\xd0\xce\x75\x45\xf9\x3e\x48\x69\x3f\xa4\xec\x62\xce\xb4\xf0\x93\xa4\xb3\x14\xe8\x9e\xfe\x2e\x20\xb2\xf8\x6b\x0f\x1e\x38\x96\x73\xa3\xd3\x92\xb1\x29\x95\xda\xda\xc6\xe8\x8f\x7d\xd2\x34\x1d\xcc\x08\xdf\x54\xb7\x18\x5a\xbd\x63\x55\xd5\x03\xe8\xa3\x77\xa6\x51\x00\xdf\x72\x75\xd1\x3e\x63\x1e\xb7\xff\xa8\xb8\xcf\xda\x67\x51\x2b\xd6\xb2\xc7\xd1\x6b\xfb\xc6\x58\x33\x8a\xc9\xdd\x38\xd6\xbc\x9c\xe2\x8e\x65\xac\xc5\xa9\x4b\x5b\x5a\x58\x3e\xb1\xaa\xc6\xd9\x2c\x38\xec\x65\xed\x6a\xd6\x99\xc0\x97\x95\xaf\xd9\x4e\xde\xb1\x86\x1a\x76\x85\x6b\xb0\x76\x1e\x67\x9a\x83\x9b\x62\x01\x07\x67\x39\x47\x74\x9a\x73\x07\x05\xf4\x66\x89\x4a\x8b\xae\x75\x2d\x15\xbe\xcf\xbe\xd0\xb6\x4f\x88\x4b\x91\x37\x27\x0a\x27\xc5\x5a\xd5\xef\x13\x34\x85\xa9\xaa\x6f\x0b\x42\x03\xbb\x4d\xe3\xfc\xb7\xde\x3b\xf5\x78\xbe\xd6\xb5\x54\xfd\x84\xef\xe8\xc0\x96\x7d\xe5\xed\xb7\x94\x0b\x0f\xf2\x22\xcb\xf4\x3d\x36\x6a\xf7\xa2\x65\x1d\x6f\x54\x36\xd9\x6e\xad\x75\xca\x29\xc9\xbf\x9a\xfc\xe5\x6f\x63\x6a\xeb\x3a\x65\x0f\xc3\xd6\x9b\xaf\x4b\x8f\x05\x16\x54\x1c\x97\xd4\x79\xdb\xe8\x58\xe2\x52\x57\x8a\xea\xab\x68\xb1\xc3\x88\x6c\xb5\x60\x9f\xe5\x43\xc1\x04\x3f\x19\xf9\xb5\x7b\x65\xc5\x78\x21\xb2\xfd\x93\x71\x49\x16\xab\x65\x58\x9f\x90\x9c\xd9\x98\x54\x5e\x11\xb3\xb8\xf6\x94\xe6\x76\x68\x8f\x79\x86\x7a\x76\xe0\xe4\x8a\xf9\xca\x75\x5e\x4f\xca\x8f\xcb\x67\xb8\xe6\xa9\x7c\x25\x07\x1c\x2e\x4a\x31\x22\xa1\x95\x87\x20\x55\xe0\x8f\x94\x75\xb5\x9a\x1b\x0b\x17\xb6\x73\x2b\xf7\x64\xb9\xb7\x84\x54\xf4\x26\x2f\x6d\x78\x66\xe8\x8a\xbe\x5e\x9b\xa2\xab\x0c\x05\xab\x6a\xb4\xe0\xf6\xdb\xc6\x5e\xb5\xb7\xd7\xf9\xf2\x42\xc5\x80\x6b\xbe\xf2\xa6\xf4\x87\xc3\x23\xe9\x22\x71\x82\x55\x2a\xff\x9f\xc0\x88\x74\xee\xf2\xa9\xfd\x50\x70\xb0\x7d\x71\xf5\xa5\xcc\xf7\xcd\x97\xab\xb4\x49\x0f\x1a\xd0\xa6\xa4\xe8\x8e\x9a\x7b\xc6\xc9\xa1\x99\x55\xeb\x75\xa6\xed\x27\x8c\x81\xda\x59\x5e\xa7\xb4\xef\x55\x76\xae\x48\x65\x8e\x7c\x8a\xc3\x5f\x49\xa5\xf8\xa7\x95\x88\xaf\x10\xdc\x28\x61\x8d\xdd\x42\xc5\xe7\x8d\x8f\x44\xa2\xe9\xe9\xcd\x03\x8d\x98\x8e\x04\x66\xcf\x79\xdc\xb2\xdd\x9e\x1d\x7b\xf1\x63\xc1\x37\x5b\x12\x88\x55\xfe\x2e\xf5\x95\xe4\x41\x8f\x0f\x66\x3d\x6d\xa6\x73\xb4\x31\x00\x60\xd8\x36\x68\xe8\xe0\xa7\xd5\x3f\x64\xa5\x4c\x76\x09\x7a\x2c\x1d\xc3\xc9\xeb\x18\xbe\x84\x65\xa7\x57\x0c\x6c\xc6\x49\x12\x68\x3d\x19\xf8\x23\xbb\x3d\x3a\x22\x88\x1e\xc1\xb7\x9b\xff\x23\x3d\xf1\x77\xaf\xdf\x4a\x39\xe2\xf1\xdb\xec\x4b\xbb\xe1\x9c\x6f\x78\xc3\x98\x62\x7b\x42\xe3\x06\x79\xac\xb1\x96\x6d\x64\x52\x4b\x62\xf7\xdc\xc2\xdd\xca\xd3\x0c\x27\xe1\x07\xd2\xb9\xfd\x63\x04\x5d\x42\x59\xf7\x43\x62\xe5\xee\x8d\xed\x97\x48\x0f\x82\xaf\x37\x13\x29\xd9\xfe\x9e\x75\x27\x68\xb3\x3c\xa7\x57\x5d\xa5\x3f\x70\x26\x19\xe4\x8c\x93\xb6\xf7\xd5\x77\xa0\xa1\x35\x91\xd2\xbb\xcc\xbe\x12\xc7\xd1\x16\xb2\x30\x0f\x3f\xb4\x89\xb2\x34\xbd\xa4\xcf\x44\x69\x4d\x88\xe8\xba\x41\xa5\xed\x9e\xdb\x76\x9b\x46\x09\x3e\xd4\xc4\xa6\x57\xf9\xbb\xd4\xde\x05\x9e\x79\x2e\xae\xfc\x0c\x86\x3a\x1b\xf4\x63\xd0\x80\x9d\x85\x7a\x19\x73\xdd\x9a\x66\xe9\x3a\x56\x05\xe2\xc4\x48\x01\x60\xc8\xb3\x19\x9c\x04\xbc\x4f\x77\xec\x65\x32\x42\x12\x96\x74\x1e\x65\x1c\x89\x7c\xd8\x7a\x01\x2c\x09\xae\x6d\xa4\x43\xeb\xfc\x2d\x6a\x6e\x42\xdf\x3c\x57\x99\xfe\xc1\x2f\x9c\x47\x75\xd7\x98\x77\xed\xb2\x54\xbe\xac\xf3\x16\x33\x25\x71\xec\xc3\x08\xd2\x70\x31\xcb\x2a\xf7\x72\xff\x57\xd6\x92\xb4\x07\x3d\x28\xd6\x9c\xf8\x2b\x1d\x23\x2c\x97\xc8\xce\x96\x53\x2c\x52\x30\xbd\x81\xc2\xda\xeb\x3f\xb5\xfa\x16\x7b\xa5\xe7\x1a\xd3\x7c\xb6\xc6\xf9\x46\xf9\x47\xce\x0c\xbb\x6a\x65\x1e\x87\x66\x81\x12\x33\x39\xcf\x8a\xef\x0f\xcd\x12\x4d\xce\x4d\xe9\x53\x09\x85\x69\x50\xd7\x1f\xe1\xb4\x78\xb0\x3d\x46\x50\x11\x59\xd0\x5c\x22\xd8\x15\x1c\x5c\x6f\xc7\x7f\xe3\xf7\xca\x6c\xe0\x57\x7a\x3a\x19\xcf\xf3\x93\x36\x2d\xd2\x0e\xf1\xfe\xd8\xfd\x50\xf8\xf0\x3a\x2d\xde\x8a\x90\xbc\xe8\x62\xdc\x40\xbd\x0a\xce\x79\xd5\x1b\xac\x8c\x4d\x5b\xdc\x79\x52\x61\x15\xbf\xba\xcd\x5a\xbe\x38\x72\x41\xd3\x0e\xd9\xb2\xe0\x29\x75\x73\xa4\xb3\xfd\x0e\x56\xa9\xc4\x3f\x3d\xed\x0c\x67\x44\x4f\x36\x79\x69\x46\x84\x3d\xf6\x01\xf2\x78\x81\xd8\x32\x5e\x68\xe4\xc7\x17\x3d\xea\x87\x8c\xac\x9c\xe2\x1e\x17\xfd\x58\xaa\xb1\x63\x7f\xf9\x9b\xb8\xce\xd6\xd5\xda\x1d\x11\x9d\x8d\x81\x6a\x63\x50\x6f\xad\x9d\xf2\xb9\x1f\xb3\xf2\xa8\x62\x9d\xe7\x0c\xfd\x3f\x99\xd7\xa6\x1d\xea\xf7\x12\x3b\xfb\x12\x99\x59\xb4\xde\xb2\x4a\xf0\x55\xb0\xaa\xa8\xb6\xef\x5f\x95\x65\xce\x86\xee\x1e\xd3\xea\xd4\xfc\x8e\xed\xc6\x59\x71\x60\x8b\x49\xbf\x22\x82\xd7\x70\xa8\xdc\x26\x48\x59\xd3\xab\xb1\xf5\x2b\xa9\xcc\x52\xcd\xf5\x9c\xa4\x37\xc8\xf7\x6f\x8a\x52\x0b\xa4\x41\xf6\x6c\x99\x9f\xe8\xa1\xe5\x61\x41\x8d\x00\x55\x54\xd4\xc7\xad\xb1\xc9\xfe\xd6\xed\x52\xf5\x21\xd5\xab\x7d\x8f\xa9\x23\x2e\xad\x65\xb1\x91\x15\x81\x6c\xf0\xd2\xef\x0e\x62\xd6\x6c\x2a\x5f\xe0\x97\x6b\x7a\xaa\xee\xf3\x9c\xad\x5f\xa3\x9c\xb7\x09\xa1\x9e\x29\xf3\xb4\x6f\x91\x1e\x13\x33\x2c\x3f\x0a\x5c\x04\x1d\x27\x00\xf4\x40\x61\xc9\xd8\x67\xcc\xad\x62\x4c\xd7\x7b\xec\xd7\x92\xf4\xda\x7c\xfc\x62\x24\x41\xb3\x92\x10\x88\xaa\xe3\x5a\x11\x65\x98\xb3\xc4\xc9\xa4\xef\xf8\x45\x79\xcd\x14\x35\x51\x1b\xfd\x8a\x96\x4e\x71\xdc\x06\x03\xb9\xb4\xd3\xf6\xf3\xc0\x3a\x86\xf2\x38\x19\x55\x59\xe2\x38\x66\x87\x3e\x55\xfa\xb8\xcb\x17\xf3\xbd\x8c\x57\x73\x00\xe7\x86\x4e\x54\xf3\xf1\x20\xd6\x9b\x53\x49\x78\x80\x5f\x41\x50\x91\x10\xc4\xb9\x79\xc1\x94\x15\xe4\xad\xd1\x06\xea\x04\x15\xb5\x2d\x06\x58\x44\x6f\xb3\xfb\x03\x16\x80\xf3\x8e\x81\x65\x2c\xd4\x82\x3d\xa1\xa8\x7d\x68\x7a\x27\x8c\xfe\x83\xb9\x52\x33\x1b\x1b\x8f\x4b\x53\x3d\xc6\x8d\xe1\xff\xc7\x59\x40\xd8\x42\x14\x10\x2c\x89\x17\xc9\x2e\xb9\xf7\xc9\x3a\xca\x9f\xe8\x50\xaa\x84\x76\x63\x9b\x35\x7d\x0c\x18\xb4\xfb\x0a\x5a\x81\xdd\x47\x34\xa5\x29\x24\x87\x11\x00\x79\x9a\xf4\xae\xfd\x22\x6a\x27\xb9\xc5\xac\x41\xef\xa1\xe8\x94\x95\xd8\x60\xaa\x96\xf5\x15\xf7\x98\x66\xc4\xfb\x10\x1a\xe9\x2d\xb9\x56\x24\x25\x70\x24\x6a\x90\xd2\xcc\x78\xea\x73\x8d\xf6\x03\xfc\x65\xf7\x9b\xc1\x86\x6d\x0f\x5d\x43\xc4\x82\x92\xa1\x63\x25\xaf\xc1\xbe\x36\x4f\x24\x13\xbc\x5e\x65\x85\xb2\x84\x36\x28\x62\xd1\x17\x20\x19\xf3\x16\x56\x03\xfd\x0f\x17\x85\xa7\xc3\xa9\x39\x71\x44\x11\x7c\x3c\x6a\x03\xf9\x00\x73\xa3\x8f\x89\xe6\xce\x24\xda\xaf\x01\x6e\x30\x47\x0f\xec\x2d\xaa\xe1\x47\x0f\x7c\x44\xf8\xf2\x5e\xb7\xe8\x4b\x1e\xf3\x00\x53\x13\xb2\x91\xb7\x41\x3e\x19\x45\xe7\x3e\x81\x87\x30\x59\xdc\x2a\x6c\x0e\xae\x80\x1b\x9f\x2d\x24\x94\x73\xfe\xec\x6e\x20\xfd\xc7\xa9\xf2\x41\x52\x49\xec\x5f\xf6\xa1\xc0\x26\x76\xe2\x3e\xdf\x82\x30\x6d\x71\x1f\xbe\xc8\x56\x33\xa3\xc9\xb1\xf8\x8b\xaa\xc1\x58\x5a\x72\x5d\x99\x20\x9d\x84\x3c\xab\x98\x04\x4e\xa0\xae\xc9\xea\xd1\xaf\xb0\x53\xa4\x1b\xb2\xc8\xf8\x54\xb1\x36\xf2\x3e\xf1\xaa\xf0\xb2\x8f\x15\x45\xca\xbf\x64\x4f\xa7\xa3\xb8\x83\x63\xc4\xbc\xb3\xf5\xbb\xbb\xff\x57\xd0\x5c\xf3\xa9\xfe\x71\x11\xcf\xac\xd4\x47\x23\xa0\xca\x2d\xe2\xd5\xa5\x52\xe3\x31\x46\x58\x59\xbf\x7e\x2b\x8a\x85\xfe\xab\xa5\x67\xe6\xe2\xf0\x2a\x66\xe4\x32\xe2\x42\xf9\x76\xef\x63\xe4\x37\xe2\x21\xfb\x6a\xda\x2b\xfe\xff\x46\x8b\x73\xf7\xf4\x4d\xee\xfc\x95\xaf\xed\xea\xab\xfd\x53\xc8\x68\x8f\x2b\xe7\x17\xb3\x9a\xbf\x08\xb1\x25\xd5\x0d\x04\xfa\x71\xe4\xcd\x9a\xd1\x32\x77\xb4\x4f\xe5\x50\x46\x11\xf6\xb0\x21\x29\x82\x46\xa0\x69\xd4\xde\x4c\x32\x51\x8e\xb0\xdf\x4b\x53\x09\x9f\x8d\x18\x73\xdd\x47\xba\x3a\xbd\xf3\xad\x07\xe7\xd4\x86\x16\x2e\xed\x0d\xd6\x5e\x2e\x5e\xd5\x49\x16\x9c\x28\xf1\x6e\xc5\xd3\xdd\x90\xe4\xc6\x0d\xc8\x3e\xd4\x9d\x1a\x49\xc6\x4c\x2c\xd2\xc4\x88\x08\x26\x38\x94\x4f\x78\xe3\xc9\xce\x8a\x5f\xf6\xb7\x68\x49\x22\xd3\xc8\xf4\x9c\xc3\xfb\xf2\x3b\xba\xf2\xc6\xf7\x30\x6b\x8e\x15\x0c\x0d\x21\xb5\xc9\x45\x83\x7d\xdb\x04\x89\x88\xf3\x9d\x27\x68\xa7\x91\xb3\x5a\x27\x23\xb3\x50\xd8\xfa\xcb\xe9\x57\x31\x7f\xcc\x36\x11\x1e\xf8\xbd\xfa\x97\xde\x6c\xd2\x69\xd5\x06\x87\x05\xd4\x6f\xa2\x89\xc3\xa7\x71\xdb\x0b\x97\x0c\x5f\xc5\xaf\x2d\x76\x69\xf7\x23\x4c\x2a\x71\x30\xcf\x24\xbc\x45\x86\x2a\x57\x13\xdf\xa2\x20\x96\x80\xf4\x17\x33\x88\xbb\x45\xf1\xc0\x4f\xcf\x79\x41\x95\x11\xcb\xa3\x2a\xe9\x0b\x29\xee\x3e\x17\x80\x8b\xb4\xcf\xf6\x53\xc0\x63\x8c\x3b\x87\x1e\x61\x6d\x11\x27\x87\x67\xe2\x96\x97\xaa\xda\x64\xf8\x79\x65\xdb\xab\x10\x84\x15\xe8\xd5\x0a\x11\x71\x0b\x76\x36\x6b\x06\x29\x13\xf7\x19\x57\x46\x6e\x21\x7c\xc9\xe1\x53\x97\x93\x37\x46\xed\xa6\xf5\x53\xf1\x3e\x15\x80\x94\x7e\xd6\xee\x1d\xa8\x01\x63\x0e\xbe\xc3\xcc\x29\xab\x1b\x72\xc5\x2e\x42\xaf\x6c\xbd\x8c\x5b\x83\x81\x2b\x47\xf1\xdb\x71\x8b\xe4\xaf\x08\x38\x7c\x1f\x13\x24\xf6\x11\xe3\xb1\x13\xe4\xc5\xe4\x99\x39\xeb\x28\x06\xca\xcb\xa8\x49\xb4\x70\xda\x75\x1f\x34\xe0\x05\x5c\xb0\x7b\x0c\x26\x80\x2f\x0e\xd8\x95\xbd\x20\xb2\x07\xa8\x68\x3b\x52\x51\x8b\x07\xa6\x88\xbc\xd5\x14\x81\x6d\xa6\x38\xcb\xba\x70\xdf\xa9\x5e\x30\x92\x90\x4f\x0b\xc3\x2e\x23\xbe\xa2\x97\x64\x17\x93\x0d\x40\xd5\x6e\x3c\x15\xcd\xb8\xee\xb3\x8e\xce\x84\x66\xdb\x3d\x64\xec\x87\xe3\xf6\xed\x46\x4e\x67\x8c\xf6\x8d\x96\x65\x80\xd3\x9b\xf4\xa8\x41\x30\xcc\x78\x03\xb3\x1a\x6c\x95\x16\x63\xb5\xd0\x4a\x28\x16\x6f\x09\xa9\x30\xae\x84\x13\xf0\xbc\xac\x76\x92\x0e\xd6\x46\x4e\x50\xc4\xcc\xa5\xde\x5f\x69\x7b\x98\x74\xfb\xf9\x8c\x25\xcc\xa7\xe3\xd1\x25\xf1\x3c\x6c\xcf\xdb\xd2\x11\x9e\x7d\xc3\xe7\x32\x27\xee\x19\x43\x0e\xaa\x9b\x2b\x95\xac\xc6\x84\x73\x53\x40\x0f\xec\x07\xee\x7a\x74\x08\x7e\x84\x33\x91\xf9\x9a\xd8\xc8\xd9\x1f\x09\x90\x07\x38\x44\xef\x8b\xd4\x1f\xec\x5f\xf6\x11\x40\x31\x9b\x3d\x7a\xbc\x78\xa1\x66\x43\x17\x19\xd1\xae\x9a\xa8\xd3\x97\x06\x2a\x47\x75\x9e\xc8\x27\x0a\x96\xc8\x05\x65\x96\x87\x02\x5c\x0c\x52\x36\xa5\xec\x3e\x2e\x4d\xd2\x96\xf1\x90\x50\x26\x76\x8f\x38\x4a\xaa\x15\x96\x7b\x2b\xa9\x8b\xf8\x7b\xed\x79\xf4\x7a\xee\xf9\x61\x97\x42\x4d\xed\xdd\x8e\xf9\xc5\x2e\xd5\x8d\x35\x39\x88\x4b\x55\xf9\xda\x8d\xa5\x62\x93\xbd\x20\xad\x2c\xd5\x70\x9d\xf6\x04\xbd\x4b\x87\x40\x32\xb1\x89\x9a\xb3\xe9\x57\xf0\x3c\xe5\xb7\x88\xe9\xc4\x3b\xb2\xc7\xde\x61\x94\x52\xb1\xd0\x7e\x84\xbe\x8a\x3f\x31\xb8\xa2\x00\xea\x89\x6c\x5b\x54\x64\xd1\x69\x67\x66\x14\x9f\x69\x7d\xab\x2e\x2a\x51\x35\xf5\xf3\x86\x91\xe8\xfa\x38\x6a\x19\x0a\x5d\x3d\x5e\xea\x8b\x51\x9b\xee\xa7\x3d\xc0\x5d\xd7\xb7\x86\x97\x11\x83\x35\x8b\xbc\x67\x90\xdf\xc8\x2d\xed\xef\xd0\x46\x84\xb7\x07\x12\x0a\x66\x0e\xfd\xd7\x1a\x5d\xd8\xdf\x5f\x52\xb5\xb7\xb8\xa8\xfb\x84\xaa\xbf\x64\x43\xc7\x1a\xde\x62\xe4\xcc\x16\x5f\xca\x4d\xd4\x9c\x86\xd5\x25\xfb\x31\x1e\xd5\x0d\x69\x5c\x1c\xb3\x62\x7f\xb8\x17\xe1\x63\x79\x89\xd7\x2f\x72\x83\xa2\xcd\xfe\x17\x8d\x22\x92\xf6\x9f\xca\x6f\x19\xd7\xb6\x1c\x2d\x4c\x1c\xb9\x50\xe5\x5e\x3c\x63\xe0\xb6\xca\x1d\x71\xac\xe7\x1c\xb7\xba\xb4\xa6\x83\x49\x21\x96\xd5\x34\x3f\x2a\x29\x43\x9f\xac\xbb\x97\x16\x8b\x5b\x52\x95\x1a\xee\x40\x10\xe9\x63\xbc\x17\x90\xfd\x94\x17\x1d\x3c\x69\xcb\x45\x4f\xf6\xfd\x25\x3c\x29\x38\xd1\x0f\x10\x45\x45\xaf\x9b\xe3\x49\x5b\x11\x1f\x2a\x98\xa4\x0f\x48\x0b\xe9\x1b\xf2\x09\x54\x2a\x34\x4a\x69\xc7\x68\x31\x04\x6a\x07\xee\x6d\xd6\x13\xda\x31\x22\x73\xf7\x7c\x60\x26\x65\xa3\xf7\x15\x86\x88\x3e\xd9\xae\x13\xf2\x02\xa7\xee\xb3\xc1\x9f\x43\xa0\xfb\x06\x09\xa2\xd2\x80\xa6\x66\x62\x24\x72\xc2\xf8\x84\x64\x8d\x7a\x20\x4d\x27\x2f\xc0\x5c\x80\xbc\x29\xb3\x70\x07\x31\x53\xa9\xd6\x84\xb3\x59\x7c\x5a\x3c\x79\x6e\xe4\x51\x7a\x37\x35\xcf\xbb\x9e\x11\x42\xbf\x62\x67\x84\x66\x83\xf8\xbd\x5b\x70\x7b\xca\xdc\x7b\x9f\xe0\x25\xa8\xa1\xc6\x0f\x84\x02\x8c\xbd\x71\x2b\x31\x0a\x7b\x58\xb2\x9f\x94\x80\x2f\x01\x7b\xc9\xf9\xc4\xc5\x68\x2d\x45\x49\xba\x9a\xe5\x48\xbd\x49\x39\x1c\x09\xd3\xc3\x69\x07\xbd\x19\xc0\x57\xe0\x92\x9d\x0a\x3c\x07\x4d\x1f\xe3\x63\x4c\x84\xbb\x3d\x81\xd8\x46\xe2\xad\x86\x2c\xdc\x00\xe9\x80\xfe\x2c\x7e\x3f\x79\x8f\x98\x47\x78\x4a\x39\xc7\xa8\x25\xad\xa6\xbe\x41\x0d\x90\xd1\xf4\x35\x99\x44\xca\x5d\xa0\x28\x62\x82\x46\x62\x8c\x78\x07\x00\xc1\xd0\x74\xbb\x0a\xd0\x0f\x2e\x1b\x55\xa3\x1e\x00\xcf\xba\xe8\xe8\xcf\x8c\xd4\xba\x83\xd8\xe5\x8c\x41\x5d\x36\x2e\x10\xb4\x11\x85\xe0\x85\x60\x35\xa0\x20\xdc\x83\xec\xcb\x2e\x91\xe2\xa0\xc1\x8c\x83\xe4\x47\x70\x5c\x84\x80\x5a\x0e\xbf\xf2\x5e\x49\x67\x31\x51\x76\xa7\x19\x1a\xe6\xb7\xe1\xde\x32\x27\xae\xa2\x63\x10\x95\xc9\xcd\xa8\x5d\x83\xae\xe4\x2e\xd3\xbe\xc6\x3c\xe6\xbc\x11\x4e\xc5\xed\xe2\x9c\xa2\xd3\xf0\x23\x9c\x4e\xe4\x3b\x62\x18\x47\x91\x31\x87\xf4\x99\x83\x8a\x58\x4c\x39\xc4\xf1\xf3\xfa\x46\x3b\xc2\x7e\x6e\x3f\x0b\x78\xc1\xd6\x0c\xda\x94\xfc\x51\xbd\x6a\xdb\x85\x4c\x57\x3e\x32\x9f\x2b\xdb\xa3\x38\xae\xbe\x84\x5e\x23\x6f\xe3\xdb\x63\xaa\x65\x42\xea\x55\xdc\x56\x69\x46\xa9\x1a\xff\x56\x62\x91\x3e\x83\xb8\x5f\x74\x24\x1c\x41\xee\x13\x86\x78\x1d\xa4\xde\xe2\xeb\xed\xa3\x81\xb5\xdc\x4b\x7d\x7b\x10\xac\x9a\xa2\xe6\xef\x25\x8f\xcd\x31\x95\x8d\xc8\xe8\xca\x4d\xca\xab\x65\x47\x2a\x16\x70\x33\xd0\x19\xfa\x7b\x94\xed\xd8\xc5\xe5\xb2\x12\x3f\xdc\x0b\xcd\xe2\xb4\xc9\x84\x9b\xca\x82\xb0\x7e\xd2\x2b\x19\xd5\x8b\x43\x75\x11\x47\xd8\x8b\xe8\x0a\xfe\xeb\x1e\x43\x71\x59\x97\xac\xf1\x23\xe2\x6a\xbb\xb2\x62\x5f\x69\x44\x0b\xac\x58\x88\x3c\xd7\x58\xc4\x3e\x88\x22\xd7\xd9\x93\x2e\x60\x02\xcc\xfd\x88\x49\x38\xa7\x8a\xdf\xa9\x8b\x08\xce\xba\xb7\x61\x2b\x48\x49\x6a\x9e\x57\x20\xa5\x57\x76\xcc\xbe\x9b\xee\x24\x3c\xd0\x7d\xaf\x78\xc6\xe0\xf2\x46\x37\x04\xa1\x77\x9f\xf1\x5b\xc9\x7f\x5d\x81\xf2\x2c\x64\x69\xdb\x10\xdb\x02\xb5\xa8\xe9\x1b\xc9\x1f\x7d\xb7\xee\x57\x31\x1f\x7b\xc6\xdc\x9d\x32\x8c\xbf\x66\xfc\x18\xfa\x98\x34\x45\x7b\xce\xcb\x83\x52\xac\x08\xb3\xbf\x40\x7b\x2a\x42\x75\xa7\x17\x0d\xef\x19\x6d\x68\x46\x58\x0c\x2f\x33\x96\x94\x48\xfa\x03\x65\xb7\x91\xd3\xba\x13\x59\x6d\x65\x6d\xed\x1b\x89\xb7\xd0\x84\xa6\xe1\x62\x0f\x6c\x4e\xed\xbd\x14\x0e\x1e\x59\xc9\x0e\xbd\x40\xac\xd0\x75\x78\x05\x91\xff\x2a\x91\x0e\x33\x68\x6c\xd1\x91\xc1\x20\x1a\xae\x20\xa2\xcd\x40\x6b\x2a\x52\x57\xc7\xd0\x9e\x20\x46\x34\xab\xe8\xc9\xa5\x97\xf9\x5b\xe8\xb7\x51\x53\xa9\x63\x40\x01\x26\xa4\x74\x3b\x63\x3a\xae\x25\x4d\xc0\x68\x25\x06\x87\xf1\x41\x3c\xf9\xeb\xd6\x52\x88\x4c\x7b\x6b\xcb\x82\xeb\xc1\xe5\x03\x15\xd4\xd4\xe2\x4b\xad\x9f\xa8\x8d\x25\x07\xcd\x03\xd4\x1f\x48\xbd\x9a\x4d\x93\xa0\x4a\x79\xf5\x74\x27\x4c\x0a\xd5\x97\x7e\x0a\x17\x57\x72\x05\xe0\x10\xca\xd2\x36\x32\xb6\x93\xc6\xc3\x76\x80\xd6\xd4\xb5\x5b\x7d\x21\x7f\x7a\xbf\x2d\x0a\x66\x82\xd4\xfe\x27\x94\x5d\x48\xb0\x35\x88\xd2\x82\x5a\x66\x9e\x4a\x5d\x81\xd6\xab\x6e\x52\x0f\x62\x6d\x79\x73\x68\x24\xdc\x79\xca\x30\x7d\x03\x81\x5f\x52\x48\xff\x4a\x4a\x4d\xbd\x06\x9c\xa2\xe4\x84\x4d\x61\x1c\xa6\xe1\xb6\x5a\x81\x1f\x81\x26\x5b\x14\x1c\x02\x4d\xeb\xbd\x4e\x4a\xc1\x9f\x6f\x2e\x20\xbd\x24\x9c\xa8\x4c\x22\xf3\x88\xbd\x4a\x24\x25\x84\x74\x8c\x73\x95\xba\x92\xfc\x3f\x72\x1b\xf5\x3d\xd5\x0e\x21\xa0\xdd\xa3\xa1\x53\x3d\xe8\x57\xe9\x4f\x42\xcb\x81\x09\x46\xa2\xe7\x3b\x30\x0c\xbc\x60\x2b\x87\x46\x61\x44\x4f\x36\xa1\x8b\x5e\xde\xf8\x8a\x18\x01\xac\xac\xb8\x4b\xfc\x01\x70\x15\x2b\x48\x77\x19\x33\xd9\x1d\xe4\x73\x8c\x3a\x52\x33\xe5\x08\x18\x58\xdc\x43\xbd\x08\xbe\x49\x51\xd3\x1e\x41\x43\xa1\x6e\x80\x35\x4c\xf4\xbc\xc7\x90\x30\x1d\x6c\x8f\x42\x8b\x98\xaf\xbb\x0c\xf8\x19\x9c\xd9\x0d\xc1\xf8\x93\xec\x57\xc6\x5c\x82\x98\x3d\x2c\xdb\x47\x54\xb0\xdb\x58\x20\xc9\xc4\x6e\x24\x56\x93\x3b\xd8\x8d\x45\x57\x29\x57\xd8\x2d\xc9\xaf\xa8\xdf\xd8\xbd\x21\x17\xe9\x09\xec\x2e\xcf\x33\xc0\x45\xb6\xda\x6e\x26\x58\xc6\x86\xda\xdf\x62\x6e\x28\x0e\xd5\xde\xc5\x1e\x95\x3f\xd6\xbb\xe0\x46\x65\xef\x25\x07\xf0\x57\xa4\x5f\xe1\x61\xc2\x1f\xc9\x6f\xc2\x12\xd2\x16\xf1\xef\x42\x39\x19\x12\xbd\x4b\xfa\x4a\x39\x2b\xbc\x12\x12\x40\x0b\x12\xa8\x3c\x7b\xe8\xf7\xf8\xb6\x76\x18\x86\x82\xdb\xda\x7a\x18\xed\x51\x25\xab\x1e\xc1\x04\x9a\x86\xca\x2d\xb1\x31\xc6\xb3\xa2\x5b\x38\x96\xfe\x3e\x34\x05\x7f\xb8\xfc\x21\x4e\x4b\x5c\xac\x39\x55\xb0\x9b\x04\xa8\x14\x89\x5f\xc9\x6f\x14\xeb\x77\x29\xa8\xb0\x94\xef\x89\xa2\x7b\x8a\xba\xec\x6a\x81\xdf\xfc\xce\xe6\xd3\x28\x6c\xfb\xd6\xaa\xab\xe8\xa4\x16\x92\x26\x0a\x93\xd2\x58\x29\x74\xc4\x96\xd7\x1d\x62\x90\x71\x4f\xab\x8f\x62\x37\x13\x76\x55\xea\xf3\xd7\x12\x0f\x1a\x37\x26\x2e\x25\x87\x96\xa3\x82\x3f\x52\xde\xaa\x12\x3d\x9d\x68\x43\xd2\x5f\x76\x47\x00\x99\xb0\xb4\x69\xa2\xec\x6b\x6f\x42\xd5\x3c\xd4\xfb\xae\x18\xb5\x06\xfd\xb9\x7d\x9d\x80\x86\xdd\xd2\x7c\x1f\xb8\x86\xe3\x36\x20\x31\x8d\xf8\xff\x6a\xf6\xe4\xb5\x12\x8b\x2a\xc7\x13\xf6\x92\x3e\x1b\x12\x83\xf7\x50\xcc\x1a\x9e\xe7\x2a\x1a\x52\x8e\xb5\x7b\x08\xec\x12\x2d\x6c\x4a\x2e\x53\x0d\xe9\x2b\xa9\x28\x65\x7f\xae\x7a\x06\xda\xd8\xfd\x91\x3f\x81\xb9\xd4\x91\x0c\xe4\xe3\x2c\x5b\x18\x98\x40\x3c\xdc\x90\x98\x97\x4a\xf8\x55\x7d\x39\x81\x4f\x92\x56\x9c\x0b\xae\xa3\x78\x94\xc7\x7b\xda\xd2\x26\x29\xc4\xf6\x4b\xe8\x77\x45\xc8\x76\x5f\x38\xa7\x60\x63\xed\x3c\x78\x57\x51\x90\x2e\x1f\xf6\x40\x44\x8b\xdf\xc2\xa1\xa5\x25\xd0\x35\xb8\xb8\xac\x09\xef\x02\x4b\xd0\xaf\x0b\x8c\xf0\x3e\x5c\x66\xa2\x1a\x9e\x20\x4c\x04\x8b\x98\x61\xe4\x01\x77\x3d\xf3\x24\xed\xb0\xcd\x57\x16\x12\x9c\xd1\x56\x05\xa5\x16\xa3\x6b\x08\x50\x52\x49\x78\xf9\x45\x28\x0f\xb9\x4c\x5c\x00\xc9\xca\x5e\x43\x09\xd0\x61\xf4\x63\xdc\x5e\xe8\x07\xf6\x59\xc1\x56\x78\x07\x61\x7e\x62\x04\xac\x21\x65\x07\xc7\xc3\x3f\x29\x67\xdd\x21\xa6\x86\x0e\xda\x7c\x61\x85\x80\xb9\xad\x1f\xc0\xa4\xd2\x2b\xd5\xe7\xc1\xd2\x32\x72\xb9\x3b\xa8\x44\x4f\x11\x9d\x04\x2f\x61\x94\xe0\x49\x68\x0d\x6e\x07\x2e\x08\x2a\x24\x4c\xcf\xbf\x08\xed\x27\xbe\x4e\x9c\x0c\xdb\x91\x3f\x07\xdb\xc0\xf5\xb4\xc5\xee\x28\x66\x04\x50\xbc\x6e\x2a\x6b\x01\xf8\xa2\xc5\x11\x28\xc5\x9d\x32\x6f\x00\xc6\xf1\x77\x34\xed\x8c\x45\x84\xdb\x42\x80\x81\x26\xfe\x62\xb4\x33\xae\x91\xbd\xb0\x11\xa0\x1f\x85\x9d\x3f\x19\x1c\xa0\x3e\x49\x20\x40\x3e\xf4\xf4\xa0\x23\xd0\x43\xe0\x81\x7b\x34\xdc\x0c\x42\xeb\x36\x31\x79\xb0\x7f\x93\x89\x76\x90\xb6\xb3\x72\x1f\xdd\x8e\x76\x5b\x9d\x48\x97\xd0\xf3\x04\xa1\xc0\x54\xfa\x6f\xc0\x0c\x88\x81\x4e\x4c\x2e\x63\x3e\x03\x99\xb7\x83\x51\x0f\x6e\x8d\x7f\x0c\x46\x41\x0b\x82\xf0\xd0\x42\xe8\x85\x7b\x08\xf4\x06\x3e\xb1\x0e\x0d\xdf\x67\xee\x6d\xf8\x40\xcd\x67\x79\x98\x5c\xa8\x47\x59\x11\xca\xe7\xb4\x2d\xac\x48\xfe\x64\xda\x51\x56\x1a\x9d\x4e\x2f\x60\xe1\xd0\x08\xfa\x3f\x96\x31\x17\x09\x74\xb2\x0e\xc6\x87\x31\x30\xac\x17\x41\x76\x60\x18\x7b\x96\xbb\x0f\xb4\x95\x6d\xb1\xae\x1b\xde\xca\xf6\xa9\xcb\x25\xc7\xc8\x62\x0c\x77\xc8\x77\xa4\xc3\xf2\xfd\x14\x82\xe4\x0f\x77\x16\xd5\x5a\xb2\x99\x7a\x84\x7a\x5b\x5c\x54\xf6\x98\x66\x10\xe9\x73\x5c\xe8\x05\xc2\xb1\xb8\x5c\x20\x54\x70\x72\xa7\x91\xb1\x9d\x3f\xee\x6e\x01\x46\xf0\x94\xb6\x73\xa0\x42\x6e\x5a\x8d\x0d\xf1\x78\x85\x5e\xb7\x87\x84\x35\x4e\x93\x9e\x26\x5b\xea\xd3\xd8\x01\xe4\x87\xe5\xf5\x14\x47\x4a\x8f\xe6\x1e\x12\xa0\x0a\xd5\x93\xb3\xa7\xd0\xf0\xca\x19\xb1\x14\x7a\x99\xec\xf6\x8e\x9f\x00\x55\x02\x6e\x79\xcd\xa8\x10\x7e\xb2\x8d\x03\x0f\xf2\xa3\xcc\x39\x84\xaf\xcd\x4c\xed\x57\xa2\xa0\x71\xa5\x64\x31\xc9\xb7\xce\xc8\x6c\x26\xcf\xaa\x99\x44\x1a\x21\x3f\xa9\x0a\x2f\xf5\xa4\x9c\xad\xc8\xcf\xfc\x48\x3d\xae\x0f\x8e\xa9\xa4\x5d\xd0\x9c\xdb\x91\x49\x7f\xa9\x9c\xbb\xa5\x89\xb1\x5c\xba\xca\x16\x0f\x86\x0a\x3e\x57\xd5\x12\xe4\x9d\x04\xad\x37\xd1\xb9\x6d\x54\x9c\x4d\x7c\xdc\x7c\x0f\xfe\x47\xea\x69\x78\x4c\x5a\x47\x96\xd4\xee\x29\xe9\xa7\x90\xcd\x89\x99\x02\x2a\xb1\xa2\x3d\x26\x84\x06\xeb\xb4\x3b\x6c\xe8\x26\xb5\xed\x16\x35\x70\x5a\x06\xda\x0a\x19\x3f\x85\x86\xaa\xf9\x04\xcf\xbe\x72\x4d\x33\xe1\x76\x77\xa5\xe8\x1a\x51\xd9\x41\x81\xf9\xa4\xe4\x56\x47\xe2\x08\xd9\xb9\xd1\x5c\x92\x42\x59\x5a\x7b\x32\x33\x80\xba\xb0\xaa\x26\x66\x21\x6d\x95\xe1\xd3\x8e\x29\x74\x77\xcd\xc3\x2d\x06\x20\x4f\xae\xb6\x1d\x61\xc8\x85\xdf\xaa\xef\xf0\x57\xe5\xdf\xd6\x35\xf1\x14\x85\x13\xd2\xdb\xbc\x25\x88\x49\x6c\x57\xee\xbe\x52\x4b\xf2\x07\x2e\xba\x2c\x13\xe9\xc2\x5d\x85\xee\xce\x92\x72\xce\xe3\x36\xc4\x64\x70\xe4\x84\x93\x81\x61\x9c\x54\x32\xcf\xad\x9a\xb3\x93\xd6\x66\x9d\xcf\x09\x04\xa7\x55\x87\xf3\x56\x15\x4f\xd6\xad\xe2\xf6\x22\x1e\x4a\x13\xb8\x49\xa5\xdd\xac\x61\xee\x82\x32\x01\x99\xcd\xb9\x8c\xe6\x95\x9e\xe2\x68\xb0\xea\x2c\x4f\x4e\x1a\xfe\x44\xcc\x5a\x8e\x0b\x69\x75\xa0\x2d\x67\x21\x45\xe6\xa6\xe1\xcc\xa5\x27\x5a\xa3\x39\x2b\xc1\x44\x73\x07\xd7\xa2\x34\xa6\x9c\xcd\xb9\x8a\x7c\x2f\x39\xcc\xd1\xa3\xb8\x2c\x67\x4e\x01\x66\x11\x79\x1a\x67\x2b\xf6\x54\x69\x16\x67\x1a\xbe\x32\xf3\x36\xfb\x1e\x51\x13\xfd\x8c\x7d\x8c\x5c\x13\x38\x89\x3d\x46\x3d\xea\x26\x63\x1f\x07\xb6\x58\xb3\xd8\x8f\xc1\xcb\x55\x8b\xd9\x0c\xec\x6b\xed\x7c\x76\x24\x7e\xa6\x18\xcd\xb6\x25\x2c\x66\x4e\x65\x2f\x21\x06\x91\xa6\xb2\xa7\x92\x64\x25\x10\xeb\x2d\xf9\x4d\xa6\x35\xeb\x3e\xb5\x24\xba\x88\xf5\x98\xf6\x68\xfb\x01\xd6\x1f\x80\xe6\x26\x64\xdb\x82\x3e\xd6\xe3\xec\x34\xd8\xd2\x74\x89\x79\x9a\x3a\x4d\x7d\x86\x79\x90\xda\x2f\x72\x63\x0e\xd1\xa2\xa0\xd7\xcc\x51\xda\x3f\xe2\x6c\xe6\x51\xfa\x11\x44\x0b\xf3\x14\x50\x97\x81\x64\x5e\x66\xc8\xa2\x5e\x32\x7f\x82\xe4\xed\x10\x6b\x0b\x54\xe2\x26\x63\xa1\x60\x9c\xcd\x42\x56\x3f\x53\x5d\xe1\x0b\x73\x60\xb5\xaa\x00\x46\xc0\x47\x05\x13\x70\x1a\xfc\x14\x3c\x0d\x93\x99\xf3\x09\x0b\x61\x23\x33\xa4\xf8\x34\x3c\xc8\x54\xa7\x8f\xc0\xb7\x99\x4f\xa3\x68\xcc\x15\xac\x4d\xdb\x13\x98\xd9\x2c\x92\x5b\x3d\xb3\x91\x35\x6c\x43\x62\xbe\x62\xcf\x32\xcc\x05\xb3\xc4\x9f\x14\x21\xa0\x50\x6c\xe0\xbd\x04\x07\xc4\x4b\x80\x09\xf0\x3f\x11\x09\x87\x83\x6c\x84\x17\x8a\x8a\xa1\x2c\xe1\xd6\x34\x11\xa4\x17\x48\x76\xd7\x40\xdf\xf9\x27\x03\x4e\xc1\x39\xbc\xb7\x6e\x5c\x78\x0f\x6f\x92\xcd\x18\x73\x23\x77\x41\xf9\x01\xc6\x22\xfd\x88\x6c\x03\xc3\x57\x17\xc7\x9d\xcc\xc0\x6a\xaf\xd3\x3d\x19\xc3\x9a\x54\xcc\x0b\x70\xaa\xea\x5c\xe1\x4c\x30\x45\xe9\x96\x8a\x05\xfb\xe5\xb4\xc8\x7d\xd0\x3a\xa9\x30\xc0\x03\x32\x8a\x51\x6e\x31\xf0\x4c\xa1\x87\xcd\x3b\x58\xc8\x7b\xac\x5d\x05\x4c\xaa\x6f\x92\x88\x80\xf8\xda\x36\x36\x12\xa8\xab\x06\xa8\x07\x81\xff\x55\xad\x47\x57\x33\xc2\x2a\xf6\xe4\x3f\x67\xb4\x1b\x2c\x53\x98\xe0\xb2\xf2\xe8\x88\x4f\xa0\x5c\x6d\xef\x6f\x84\xe6\xc9\xc7\xdc\xe6\x40\x42\xc9\xa6\x75\x8b\xe1\xc9\x02\x8a\xc6\x8b\xbe\xbf\x35\x54\x7c\x02\x98\xd2\xf4\x93\x75\x08\x88\x6d\xa0\x51\x1d\x81\x9a\xda\x13\xe8\x15\xc0\x57\xf3\xbb\x7c\x02\x23\xcd\x74\x2b\xc5\x9a\x71\xd2\xc0\x8f\x68\x04\x03\xb5\x47\xfd\x33\xc1\x03\xca\x41\xd7\xcf\x90\xaf\x14\x5e\xe7\x0c\xf5\x08\x97\xab\x41\xba\xb4\xcb\x4e\xbc\x81\x7e\xa8\xbd\x92\xb5\x1d\x98\xda\x72\x85\x32\x08\xec\x6e\xbc\x8a\x1a\x06\xcc\x75\x35\xf9\x36\xc0\x9f\x6a\x9b\xe4\x27\x8c\x32\x53\x52\x04\x91\x71\x5f\x3f\xd3\x7f\x1b\x98\xa6\xce\x71\xfd\x0a\x5e\x96\xc9\xd6\x45\x41\x41\x42\x40\xfe\x59\xb5\x3c\xff\x33\x7f\xaf\xe2\x7a\xe1\x47\xf0\xa5\xbc\xaf\xf8\x1d\x91\x20\xeb\x28\xf9\x57\x4a\x97\xd6\x97\x6d\xcf\x59\x24\x11\xa1\x2b\x12\xde\x88\x11\x38\x87\xd0\x3c\x51\x20\xe1\xca\xb6\x69\xc2\xe5\xe4\x26\xe7\x5c\xfe\x5b\xda\x3d\xab\x00\xde\x79\x30\x54\x8e\x54\xda\x17\x1d\xe3\xef\x54\x4c\x43\x68\x40\xb6\xec\x5b\x69\x3a\x71\xb1\x6c\x7a\xd9\x96\x52\x1b\xe9\x22\xb4\x7b\xf6\x71\xc9\x74\x6c\x5c\x42\xa7\xe8\x0b\xbe\x3a\x74\xab\xf0\x21\x69\xaa\xcf\x27\xc1\x59\x8a\xcc\x39\x87\x3f\x4c\x2f\xb5\x4a\xe3\x35\x80\xb0\xec\x8a\xc2\xab\x64\x2f\x6f\xaf\x7c\x2b\x32\x0b\x5c\x20\x0b\x28\xfb\x1f\xa1\x59\x9a\x8f\x16\x97\x1c\x94\x80\xd8\xe8\x6c\x82\x18\xc6\x6f\x4d\x40\x88\x00\x62\x48\xe8\x3c\x21\x40\x2e\xf1\x79\x28\xa0\x50\x9b\x9d\x8b\xf9\x68\x60\xb3\x15\x83\x57\x02\xbe\x96\x22\x65\x27\x31\x27\xb9\x3c\xe9\x75\xec\x4f\xe0\xa7\x64\x02\xbf\x16\x3f\x2c\x71\x24\xe4\x23\x3e\x8a\x13\x89\x87\xb3\x0e\x8a\x50\xe4\xc0\xf8\xeb\x42\x98\x72\x2f\xa4\x53\xa0\xa7\x11\x7d\xf6\xf3\x87\x80\xf5\xce\x30\x6f\x3f\xb8\xc8\xea\x0a\xf7\x34\x6c\x21\x09\x92\xc6\x93\x77\x72\xf2\x25\x44\xca\x62\xfa\x4d\x71\x05\xe5\x1c\x6e\x48\x74\x8f\x5a\x87\x58\x26\xb2\xa6\xc9\x33\xff\x0a\x77\xd3\x35\xf1\x5b\x05\x04\xa0\x2b\x24\x82\xdf\xcb\x38\xe6\x53\xce\x7b\x03\xbe\x74\x96\xf3\x66\xc3\x4e\x6b\xed\xb8\x0e\x4c\x48\xbc\x46\x32\x17\x8c\x61\xfb\x8b\x6d\x41\x3d\xed\x98\x28\x0a\xbc\x80\x3d\x2c\x6c\x80\x9c\x8b\x3d\x05\x3f\xa0\xf2\xcc\x5d\x02\x5f\x78\x4d\x9c\x86\x8f\x83\xeb\x77\xbd\xe5\x9d\x63\x6e\xf1\xc1\xf3\xd6\x32\xc7\x9d\x9b\xb9\x61\xac\xdd\x6b\xf1\x1c\x90\xf5\x54\xb8\x46\x64\x27\x38\xcd\x44\x08\x0b\x05\x52\xea\x22\xc1\xb0\x60\x13\xc6\x47\x60\xc3\xbf\x58\xf8\x9a\x2f\xe5\xd3\x33\xac\x79\xcf\xf8\xf6\xb1\x5d\x3c\x2f\xde\xd9\x5d\xc1\xdc\x76\x5e\x8e\xcf\x2a\xee\x32\xee\x43\xe7\x46\x4e\x1a\x37\x79\xed\x5d\xb6\x8e\x73\x86\x1f\x21\x18\xd5\x6c\x82\x46\x05\x0b\xd5\x6e\x64\x2e\x1f\x52\xcd\x42\xdd\xe0\x7d\x54\x3c\x2f\xe8\xe0\x61\xe5\xc3\xe9\x0b\xb8\x0f\x65\xb4\x98\xf3\xdc\x04\xe9\xba\xe0\x2a\xce\x39\x71\xad\x77\x0f\x27\x48\xf8\xdd\x59\xca\xae\x12\x04\x58\x2f\x67\x3d\xe5\xe1\xb9\xed\xfc\xe3\xe6\x2d\xa0\x07\xdf\xad\x52\x49\x5a\xcf\xab\xab\xd8\x5f\xa6\xe4\x39\x18\xae\xe6\x2b\xb9\xed\xba\xcb\x69\x4b\xb9\xae\xda\xb6\x98\x29\x9c\x3e\x75\x72\xd0\x7b\x8e\x87\xa2\xdf\x7b\x03\xbb\x5b\x7a\xcd\x39\x9e\x3d\x5f\xf4\xcc\xda\x8d\x95\xc1\xbf\xc1\x79\xc7\x47\xd7\xc7\x33\xa4\xbc\xab\xb5\xc5\x44\x25\x2f\xb2\x3a\xac\x6c\x32\xf7\x52\xd5\x8c\xfc\x95\xdc\xf8\x8a\xc6\xd4\x2e\xce\x5d\xc3\x82\xe8\x5e\x4e\x41\x79\x50\x50\x1b\xfb\x89\x7a\x89\xd7\x17\x76\x86\xbc\xda\x39\x80\xb5\x5f\xb2\xc4\x7a\x27\x6b\xae\x20\x8f\x13\xc7\x5f\xd7\xbc\x0f\xf8\xc7\xe3\x35\x56\x12\x97\x73\x27\xea\xb7\x23\xcd\x5c\x72\xcd\x48\xde\x41\xce\x67\xf3\xa4\xd4\x22\x0e\x64\x9a\x1b\x4d\xe7\x4c\xd5\x5f\x0d\x82\xd9\xb0\xd6\xce\xeb\x06\xeb\x7f\x4a\x5b\xe7\x9d\xac\x58\xe9\x02\xeb\x0c\x66\xb5\x60\x3f\x48\xa9\xfc\x5c\xe0\x47\xf6\x30\xad\x29\xf2\x47\x53\x8c\xbb\x10\x3e\x45\xbe\x7a\x42\x69\x58\xa6\xbe\x5c\x55\x26\x4c\xa8\xd7\x48\xd0\x1f\x22\x16\xaa\x50\x38\xf9\xf6\x1d\x8a\xad\xc4\x08\xf7\x83\xd2\xd7\x94\xcd\x4e\xbe\x62\x2e\x9d\x6a\x81\x15\x2e\x00\x5f\x81\xb3\x2b\x03\x8a\xce\x93\xee\x57\xe4\x21\x2a\xd1\xee\x06\x59\x69\x51\xe1\x2f\xdd\x85\xb2\xed\x99\x59\xe5\x93\xd1\x21\x09\x78\xcd\x2c\x2c\x3d\xfc\x95\xf2\x1b\xfe\xde\xf6\x4d\xf2\xab\xa4\x24\xf7\x43\xd2\x4a\xca\x47\xa7\x78\xf1\x4e\xfa\x73\x0b\x9d\xe0\x36\x34\x95\xa1\x35\x89\x4a\x44\x24\xc8\xd8\x8a\xb4\x43\x3d\xd3\x5f\x2a\xdb\x5b\x38\xa0\x73\x45\xe7\x65\xae\xd1\x62\xb0\x9e\x09\xdb\xd4\x2c\xbc\x67\xf8\x01\x25\x40\xcc\xdd\xbe\x52\x5e\x4a\xd6\xbb\x1f\x94\x06\x52\x5f\x3b\x15\x89\x3e\x03\x6a\x8b\x71\x81\x11\x4a\x03\x38\x15\xab\x31\x53\x88\x1a\x43\x26\x36\x12\xb5\x46\xd7\x82\x13\x14\x4e\xd3\xfe\xc5\xdf\xcd\x90\x68\x42\x89\x49\xf1\x07\x54\x48\xd2\xa7\xf0\x6c\x05\x85\xd2\x1f\x70\x4f\x06\xd3\x0a\xdc\xf7\x4a\xa8\x80\xa7\x93\x54\xb4\x1d\xdc\x65\xb9\x84\xff\x05\xc6\xd0\x9f\x19\xba\x89\x37\x08\x27\x75\xff\x48\x17\xca\x7c\xcb\x63\xc8\xed\x05\x01\x9a\x51\x4a\x4d\xfa\x7d\xf5\x62\x6a\x5f\xfc\x26\x65\x28\xed\x61\xd8\x4b\x79\x11\xe0\x14\x50\x2f\x55\x30\xd0\xee\x43\xe2\x5a\x70\xbf\x53\xaf\x10\x80\x3d\x2c\x91\xfc\x40\xe6\x38\x6d\x9f\x9e\x02\xec\xc2\x1f\x2b\x1f\x07\x7a\x91\xf1\xda\x59\x8c\x45\xf9\x48\xb5\x90\x51\x9d\xbe\x5e\xf9\x1a\xdc\x1e\xa7\x51\xb8\x80\x13\x61\x28\x59\x26\xb4\x3f\x20\x4b\x52\x07\x8b\xdd\x3b\x44\xe7\x99\x49\x4e\x37\x05\x43\xac\xf5\x96\x97\x78\x4c\xf6\x3c\xaa\x6d\xb9\x82\x7b\x0f\x97\xa7\xf9\xc3\x3d\x5a\xba\x4e\x4d\xe0\x9a\xf3\x72\x95\x3f\xb9\xec\xb4\x60\x05\x89\x8b\x8f\xbd\x28\xbb\xcc\x2d\x0e\xbd\x21\x5d\xc5\xcd\xf0\xff\x23\xc6\x73\x77\xba\x8b\x85\xbd\xdc\x55\x4e\xbf\xf9\xdd\x9c\x97\x56\xa1\x5c\x25\xe7\x08\xb9\x5f\xbb\x41\x61\x85\x5d\xae\x6e\x97\xa7\x23\xee\xa8\x02\x64\x40\x6e\xb4\xe2\xa4\xb4\x27\x35\x49\x1e\x23\xb9\x15\x3b\x45\x7a\x44\xfc\x2d\x74\x8b\xc4\x56\x3c\xdd\x5f\x21\x12\x0a\x3f\xba\x27\x09\x2e\x0b\x0e\xac\x9f\xc1\x7b\xc4\x07\xac\x74\x9c\x8b\x3c\x57\x92\x56\xb3\xc5\x30\x81\x7e\xad\xda\xa3\x6f\x2c\xbe\xa2\xdc\xa5\x73\xc9\x89\x91\x3f\xd1\xb6\xa7\x30\x64\x44\xcd\xd2\x98\x30\xc9\x6f\x55\x5e\x48\x95\x98\xa8\x90\xfa\x2f\x12\xde\x95\xa1\xb6\x7c\x15\x38\x4b\x2c\x9c\xde\xf3\x42\x84\xc7\xad\xc6\x38\x3b\xf9\xb9\xc4\x1f\xea\xee\x2a\x35\xba\x50\x15\x62\xfa\x5e\x9c\xa8\x78\x5c\xb1\x2d\xfb\xa1\x9c\x69\x28\x49\xb1\x94\x2d\xd2\x01\xd1\xdf\x25\x75\xda\xa2\x90\x6c\xf1\x5a\xb5\x9d\xdf\x7d\x21\x4f\xc1\xdf\x72\x91\x7f\x59\xda\xe9\xf4\x88\xfb\x49\x74\xd6\x6a\x90\xfd\x85\x7f\x89\x48\x57\xbb\xd7\xf2\x50\xff\x53\xde\xae\xde\x53\xf4\x5e\xc1\xac\x3a\x98\x2d\x95\xaf\x34\x75\x25\xdf\x92\x36\x1b\x29\xd1\x47\x24\x3e\xfa\x79\x21\xde\xa2\x71\x2d\xca\xef\x90\x70\xb5\x2a\x7d\xcb\x7e\x7e\xbe\x7c\x8a\xd3\x6b\x2e\x57\xdc\x6d\x75\x97\xcd\x17\xb8\x96\x55\xb5\x86\x17\x3c\x29\x0a\x6d\xaa\x29\x3a\x93\xad\xa8\xff\x8a\x18\x4d\x21\xd4\x26\x96\x1e\x8b\x9d\x6d\x56\xa3\x66\x86\x11\x4d\x1a\x0c\x14\x58\x6c\x28\xc6\x6f\xf0\x02\xca\x97\x91\xe6\xba\x4c\x53\x99\xa8\xcb\xec\x20\xd9\x73\x20\x66\xf5\x0b\xf1\x12\xa8\xaf\xac\xa0\xc5\x5c\xec\x56\xb4\xb2\xf1\x23\xe2\x7d\x36\xaa\x3e\xb2\xb4\x3f\x25\xb6\x66\xb4\x4c\x1a\xf3\xd6\x3c\x15\x5d\x11\x96\x6d\x5a\x88\xbd\x13\x98\xa6\x7f\x4f\x88\xf5\x02\xb4\x5d\xa4\x0f\x2e\x4b\x55\x3b\xa9\x7d\x76\x15\x32\x33\x50\xbd\x66\xa1\xe8\x1a\xd4\x5b\xb6\xb6\xf9\x43\x49\x73\xe1\xc3\xc6\x60\xe4\xf6\x6c\xef\xba\xea\xb2\x2b\x29\x0e\x35\x6b\xd0\x8c\x98\x93\x55\x78\x6c\x46\xd8\x8e\x0a\x01\x1e\x13\x18\xa2\xc7\x11\xbb\xbc\x68\x5a\x3f\xca\x5c\x97\x75\xca\xfb\x34\x91\xdd\x90\x2c\x84\xe1\xbc\x66\x9b\x48\x04\xfd\x0f\x99\xd6\x84\x47\x8f\x15\x06\xd6\xbf\xc6\x7c\xca\x1a\xab\x2d\xc2\xb9\x24\x8f\x9a\xff\xc3\xeb\x63\xb0\x95\x11\x44\xc7\xd0\x9f\x46\x34\xe9\x41\xe0\x72\x5d\x31\x65\xcc\xab\x48\x13\x4a\x33\xb9\xf8\x28\xa7\x02\x46\xbb\xb7\x52\x26\x38\xb0\x46\x23\xbc\x06\x3f\x2b\xfd\xd8\x38\x93\x30\x51\x70\xa4\xae\x9c\xf8\x27\xcb\xbe\x66\x15\xe9\x43\xf2\xd6\xaa\x36\xca\xa4\x98\x29\xa6\xd5\x54\x8f\xd0\x46\x43\x04\x8d\xbb\xfd\x66\x79\x2c\xfd\x8d\x57\xbc\x3a\x92\x51\xec\x12\xa5\xb0\x00\x5f\xd9\x3b\x4a\x5a\x61\x70\xcd\x17\xe1\x3c\x96\x45\x69\x7a\xfd\x71\xda\xd9\x02\xab\xda\x04\x7a\x6e\xa6\xd8\x7c\x87\xfe\x5f\x52\x67\x25\x0d\xa8\x88\x56\x1a\xbf\x30\x10\xa1\x21\x7a\x37\x30\x64\x7b\xb9\x76\x07\xe4\xe9\xe5\xa5\x4a\x80\x03\x5c\xb2\xe4\x3e\xcc\x10\xfb\x02\xf1\x25\x56\x84\x45\x81\x60\x27\x3b\x19\xf1\xbe\x6e\x11\x9b\x98\xbf\xb4\xba\x8e\x2d\xca\x38\x5e\xe5\xcf\xd6\x24\x4d\xae\xf8\x8f\xdd\x15\x3d\xd9\x40\x64\xdf\x0a\xb9\x56\x7e\x82\x33\x73\x7b\x88\xfa\x13\xc7\xd7\x6b\x95\x72\x21\x87\xec\x42\x92\x4d\xe2\xd4\xda\x77\x88\x86\x39\x07\x2c\x1e\xf1\x7d\x38\x0f\x11\xf3\x6a\xc8\x12\x71\x9e\x9f\xd9\x5d\x32\x27\x63\x9a\xe9\x85\x98\x96\x98\x62\xac\x16\xbd\x8e\x42\xeb\x7d\x45\x05\x21\x39\xda\x06\xe1\xe5\x80\x57\xaa\x37\x42\xcf\xad\x6f\x14\xf3\x05\x72\x17\xaa\x74\x0e\xff\xb8\xfd\x6d\xe1\x0d\xde\xff\x2c\xb7\xf3\x70\xbc\xc5\xc5\x3e\xd5\xbe\x5a\x6c\x6e\x59\xd5\x32\x4d\x74\xba\x57\xc5\x6d\xb5\x45\x42\x9d\xa1\x42\xf9\xf6\xff\x04\xc0\x03\x60\xd4\x0b\x03\x00\xf0\xcc\x97\x39\xa3\xb6\xe6\xb5\xdd\x9a\x6d\xdb\x3b\xdb\xd6\xff\x6c\x63\x77\xb7\xdd\x6c\x65\xe3\xcb\xf6\x72\xbd\xac\x97\xb1\x5e\xb5\x8c\xd7\xf7\x2b\xb8\xd1\x94\x60\xde\x95\x79\xc7\x76\xd4\x44\x48\xd2\x58\x7d\x8d\x53\xd6\x0c\x9a\x0a\xf5\xa4\xd0\x0a\x7d\xa1\x76\xed\xca\xd7\x9a\x40\xf5\x63\x77\x99\xe2\x86\x6a\x01\xfa\x54\xe7\x31\x27\x17\x36\xbd\xbd\xb9\xd9\xb5\xf6\x7e\x2b\xdc\x31\x52\x5e\xea\xf4\xb6\xaf\x2e\x68\x76\x9c\x68\x5c\x9f\x39\x6c\xab\xb0\xce\x48\x82\x59\x8e\x98\xb3\xd6\x18\x8c\x2f\x8d\x09\xa1\xb9\xba\x17\xfa\x09\x2b\xdf\xaa\x2f\x69\x0e\xb8\xdb\x15\x2a\x15\x03\x8d\xec\x2c\x6f\xfb\x07\xba\xbd\xdd\xa3\xb5\xa1\xd6\xd9\xf2\xdc\xb9\xbb\xdc\xb5\xb9\xaf\x79\x6a\x01\xd1\x91\xe9\x48\xce\xd4\x34\xde\xb6\x55\x26\x15\x58\x8a\xad\xa9\x6b\x94\x46\x86\xe9\x6a\x68\x91\x8e\x62\x08\xf2\x9b\xae\xae\xd3\x2a\xdc\x0f\x2a\x16\xaa\x2e\xa0\x12\x37\x3e\x46\xc1\x21\x91\xeb\x3e\x62\x22\xab\xcf\x0d\x7f\xc2\xfd\x55\xea\x35\xf0\x9d\x30\x3f\x2f\xa5\xf7\x2a\xa9\x34\x3d\xad\x0b\x4e\x39\x1d\xff\xa4\x6d\x0f\x9d\x17\x79\xb3\xf9\x11\x0b\x17\x54\x67\xbb\xc6\x15\xfa\x1c\x37\x4b\x81\x75\x2e\x31\xfa\x89\xa2\xaf\x28\xcf\x8d\xe1\x98\x36\xc8\xf2\x75\x99\xb8\xb4\xea\x9d\xc3\x25\xf8\xf7\xa5\xb3\x07\x60\xc4\xe3\x79\xe1\xbd\x99\xe4\x4b\xe9\x31\x9d\xf7\x68\x8b\xe3\x1f\xb7\x25\x31\x4c\x91\xf7\x9a\xd9\xec\xb8\x20\x8a\x8d\xc3\x9b\xe6\xf3\xd0\x1c\x01\xbc\x76\xa9\xd3\x1d\x12\xbd\x45\x7e\xde\x20\xc6\xfd\x04\x7f\x5a\xdb\x44\x10\x55\x3b\x86\x86\x49\x13\x4b\xfe\xed\x3f\x4a\xee\xcd\x5b\xd6\xb3\x85\x2a\x4b\x5f\xd5\x59\x4a\x77\xc6\xdf\x6e\xdd\xc7\xbc\x1b\xf9\xb8\xe9\x3f\x4e\x76\x90\xcc\x36\x9b\x77\xd9\xe7\xb7\xe9\x9a\x80\xe2\xa2\xd4\x91\xc5\x2b\x91\xc0\xfa\x49\xe4\xcb\x60\xcd\x48\x34\xe5\x67\x35\x68\x10\x41\x0b\x2c\xe9\xed\xd3\xd2\x1d\xb9\xb7\xbb\x95\xcc\xc0\xb4\x1f\x1d\x91\xac\x97\xf1\x87\x5b\xd6\x73\x46\x23\x1f\x36\x4d\xe2\x1d\x08\xea\x6f\xf4\x07\xce\xf9\xc6\x9b\x26\x0a\xff\x71\xb9\xaf\xdd\x24\x99\x83\xf4\x59\xab\x66\x7c\x03\x7b\x0c\xdd\x60\x3e\xaa\x3a\x31\xb0\x8c\x75\xbc\x24\xb5\x37\x8f\x7d\x27\xd7\xd8\x55\xc6\x5d\x96\x76\xb8\x7d\x16\x8f\x16\xdf\xe1\xb4\xf2\xff\x89\x7c\x64\xff\x25\xa0\x05\x1d\xb5\x82\x44\xd3\x7c\x45\x46\x2f\x71\xa7\x6b\x86\xe6\x8e\x34\x09\xc1\x1d\x49\xe7\x51\x1a\xcc\x83\x76\xde\xcf\xaa\xa2\xbe\xdb\x7c\x63\xf1\x9d\x9e\x25\x40\x5e\x6e\x4c\x67\xa0\xc0\x2f\x4d\xda\xfa\x56\x38\x37\x9e\xd1\x2c\x10\xcd\x8e\xbc\x6b\xfb\x29\x0e\x0e\xba\x67\xc9\x92\xe4\xf9\x1e\x31\xa4\x4a\x1b\x5c\x77\x6a\xa6\xca\x58\xf0\xc1\x21\x8b\xf4\x7f\xf5\x4f\xfb\x1f\x4a\xcf\x54\x1e\xed\x5d\x2d\xbd\x5a\x0c\xe9\x12\x4b\xff\xe4\xfc\xdd\xde\x25\x4b\x49\x8b\x6e\x01\x64\xca\xf8\xec\x26\x5f\xd9\xc5\xc8\xbb\x8d\x1b\xe4\x01\xc1\x73\x4c\xff\xc9\xd9\x2b\x16\xeb\x97\xcb\x37\xb8\x05\xab\xbe\xc9\x1f\xc3\x27\x0d\x3c\xd0\xd5\xd5\xe7\xf5\x41\xb4\x57\x2b\xd7\x74\x5f\xd0\xa6\x16\xbd\xe8\x5c\xa1\x39\x9f\x43\x6f\xab\xd2\x20\x52\x5f\x38\x73\xd4\xff\xc6\xcf\x77\xcc\x51\x73\x22\x2f\x5a\xbb\x54\xdf\x83\x83\x8d\x3f\x54\x88\x15\xa5\xba\x08\xe5\x16\x37\xa3\x6a\x95\xe2\x1b\x2c\xa9\xbf\xaf\x71\xa4\xce\xd9\x1b\x64\x35\x57\x34\x77\x0d\x59\x70\x45\xf5\x1d\x53\xcc\xb5\xd9\x3f\x5a\x53\x4d\x59\xa9\xaa\xe6\x32\xe3\xca\xb8\x93\xf6\x68\xfd\xbb\xc8\x01\xcb\xa8\xae\x31\x78\xa5\x31\x5c\x3b\x6b\x05\x43\x2b\x52\x73\xdd\x2e\x29\xad\xca\x87\xd0\xfb\xfd\x2b\x9a\xa8\x75\x19\x3d\xc3\x0e\xd7\x8a\xd2\x2e\x4f\xdb\xae\x22\xcf\x76\x69\x23\x22\xfb\x7c\xcb\x01\xeb\xe4\x54\x58\xd3\x6d\xb3\x3d\x6e\xbd\xed\xbc\x69\x6a\xa4\xd3\x82\x30\x24\x05\xfb\x1b\x4e\xea\x72\x56\xe8\xb5\x6e\x9a\x7c\xb7\xef\xca\x58\x55\x2e\x54\xdb\xb7\xb1\xa5\xa7\xf6\x4f\xcf\x4a\xa7\x77\x85\x6b\x67\x73\x93\xa1\xf0\x73\xdb\x47\xfb\x9f\xec\x8d\x2d\xe1\x36\x74\x6a\x7e\x53\x95\x75\x5b\x5c\xaf\xad\xcc\x7c\x27\xb2\xdd\xfc\xc4\xb8\x2b\x38\xc6\x90\xad\x6f\x58\xb1\x4e\x33\xa0\x9d\xe4\xee\xa7\x38\xa3\xea\x86\xb8\x6c\x6b\x45\xbd\xad\x59\xbd\x99\x8f\xe9\x29\xfd\xb9\x21\x1d\x07\xcf\x1f\x5c\x3b\x89\x50\x93\x19\x32\x68\x22\x59\x92\x36\xf4\xee\xa7\x4e\x8c\x7e\xd4\x39\x42\xdf\x14\xde\xd6\x0a\x66\x0d\xae\xfa\xe6\xb8\xcc\x3d\xe8\x1d\x65\x19\x03\xae\x2d\x37\xe8\x6f\x8a\x27\x43\x16\x6d\x7d\x84\x75\xa9\x09\xd8\x74\x0e\xd7\x57\xfa\x61\x7d\x2f\x21\x3a\xbf\x73\x04\x4f\xfc\x95\xb9\x6a\xe0\x07\xf9\x4f\xd2\xc6\x5e\x10\x2d\x2d\xfa\x45\x67\x20\x63\x4f\xf8\x48\xcb\x1b\x36\x39\x60\x9e\x83\xc4\x4b\xf2\xae\xb0\xb4\x09\xe6\x2d\xdf\xa4\xb7\x8a\xc6\x21\x53\xb6\xae\xc2\xd3\x6a\x96\x6e\x72\x23\x5c\x2c\xbd\xbf\xee\x07\x29\x21\xdf\x34\x7c\x86\x3c\x9a\xe9\x36\x80\xa4\x0e\x26\x0d\xf5\x0c\xd0\xf7\x44\xbf\xec\xe8\x67\xfe\x08\xdf\xd1\x42\xe3\xd0\x03\xfc\xec\x3f\x79\xbf\xbd\x99\x96\x28\x81\x61\xf9\x4d\x7d\xb4\x38\x00\x7c\x61\xf3\x26\xca\xc2\xea\x5b\x1b\x76\x52\x7d\x4b\x3b\xd7\x0e\xd3\x92\xf3\x6b\x86\xd4\xf4\xfe\x8c\xf1\xfe\xd5\xcc\xe8\x24\x53\xb7\x98\xf5\x29\xfa\x61\xbb\x81\x73\x3b\xfc\x88\x93\xc8\xfb\x3b\xa0\xd0\x3e\x13\x78\xe1\xbd\xcd\x5c\x2d\xfc\xec\x12\xa1\x23\x49\xe6\x82\x15\x9b\x96\x31\x23\xab\x95\xeb\xb3\x99\xef\x4b\x8b\x47\xea\x59\x07\xf2\x97\x0e\x66\xb2\x2f\x67\x1c\xed\xfd\xc1\x9d\x9b\x44\xec\x2a\xe3\xe1\xa2\xaf\xb4\xe1\xf8\xf7\xc2\xcf\x37\xd7\x0b\xb8\x01\x0c\xdb\x6c\xd1\x12\xef\x71\x13\x41\x3c\xec\x62\xd3\x5a\xa5\xc9\x0d\xc7\x36\x5c\xe1\x55\x56\x4f\x59\x37\x91\x77\xb3\xe4\xe7\xb0\x0b\x1f\x9e\x77\x79\xe0\x2f\xc0\x2b\x43\xdf\x73\x41\x30\x21\x29\xb3\x33\x58\xf0\x36\xfa\x50\x6b\x81\x70\x2c\xfc\x5a\x53\x89\xd8\x3d\xa0\xb9\x71\xa1\x24\xdb\x07\x64\x54\x49\x21\x2e\x6f\x35\xfb\x65\xcc\x06\xd5\x7a\x57\x69\x45\xd5\xee\x91\x2c\x69\x65\x49\xdf\x20\x42\x5a\x9a\xa7\xee\x43\x4a\x55\x19\xa5\xdd\x91\xd2\x2b\x49\x5e\xed\x1b\x64\xde\xd1\xdb\x9c\x2f\x64\xfc\xf0\x31\xfb\x07\xd9\xeb\x80\x3b\x96\xfd\xf2\x22\x1f\x9b\xa1\x58\xde\xe2\x4a\x56\xf7\xca\xaf\x34\x78\xae\x2d\xd5\x5a\xab\x2a\x87\x36\x68\x3e\x96\xe4\xf4\xbf\xd5\x54\xe6\xc5\xf6\x7c\x57\x8f\x65\x2c\xee\xbc\xa5\x76\x26\x7e\x6a\x23\xa9\x63\xa3\x3b\x9b\x4f\xa8\x6e\x86\xff\xb4\xdd\x50\x89\x02\xe7\x9a\xd7\xaa\x66\xfa\xdc\xd5\x43\x95\x80\xeb\x05\xd5\x79\xc5\xc3\x7a\xcc\xc8\x6c\x6b\x79\xe5\x91\x41\xa4\x25\xac\xf8\x5a\xdf\xb0\x79\x56\xee\xd5\xee\x43\xa6\x39\xe9\x87\x3a\xd6\x19\x97\x24\x6e\x6e\x85\x1a\x16\x47\xe3\x9b\xee\xea\x27\x85\xbf\x6a\xfc\xa4\xbd\x16\xe8\x65\xba\xa2\x91\xfb\xce\xd6\x0d\xa8\x3d\xdd\xdc\x54\xe1\xca\x03\xf5\x4b\x87\xd5\xf6\x07\x95\x92\x81\xab\x36\x79\x71\x6f\xdf\xdc\x46\xcf\xdc\xb5\xdd\x01\x96\x47\xe9\x5d\x1d\x4b\xcd\xbd\x89\xcd\x2d\xb7\x4d\x95\xd1\x35\x4d\x38\xc3\xc7\xf0\x97\x8d\x0a\x3d\x22\x30\xcc\x84\xd0\x0e\xfb\xfa\xeb\x52\xd4\x4f\xdc\xe2\x95\x0f\x54\x6e\x75\x17\x87\xa7\x34\xdf\xaa\xcc\x1f\xc8\x6c\x2a\x2b\x16\xf4\x72\xec\x87\x72\xcd\x5d\x66\x5b\x61\xba\xb1\x5d\x68\xbd\x9a\x68\x6c\xc9\xb3\xe4\x47\x57\x3b\x9e\x9a\x06\xc3\x3f\x5b\x7f\x1b\x0e\x06\xe6\x19\xef\xeb\x86\x7d\x0b\xb5\x27\x35\x16\x37\x94\x92\xa6\x82\xef\xfc\x1f\x36\xb0\x21\x68\x5d\x01\xce\x0a\x39\xdb\xa5\xc1\xbf\x81\xd7\xdb\x7c\x89\x54\xd4\x3c\xd5\x12\xf2\x1c\xcc\x7d\x2e\x95\xf2\x37\xbe\x19\x77\x9a\x76\x81\x44\xa9\xf9\xc2\x9c\x44\xed\xce\xfe\xc1\xe6\x32\x5e\x45\xad\xe7\xc5\x71\xb2\x7c\x7a\x05\x39\xfc\xab\x3b\x2e\xa3\x37\x41\x6f\xad\x95\x60\xd7\x20\xfc\x3a\x2f\xe0\xf6\xa1\xc8\x8d\x12\x02\x0c\x73\x57\xa9\x26\xf9\xe0\xe1\x9c\x0f\x94\x19\xc4\x2b\x38\x28\xcd\x83\x02\xa9\xe9\x64\xd0\xe8\x6b\xb2\xb7\xb2\xfe\xb0\xfc\xa2\x14\xdc\xdb\x5c\x6f\x9f\x26\xc1\x44\xa0\x68\xfb\x3d\x54\x0c\x72\xdd\xc8\x30\xfa\x01\x7a\xb8\x73\x36\xd6\x80\x1d\xb4\x5e\xc2\x97\xe2\x2f\x2a\xde\x11\x23\x49\x7f\x71\xe8\xe4\x68\x4a\x14\xf6\x13\x15\x47\xe3\xd5\xa4\xd3\xaf\x33\xbe\x64\x13\x59\x12\xb6\x21\x0a\xce\xa5\xf1\x56\xfa\xd8\x81\x4d\xc0\xbf\x5b\xbf\xc3\xf5\x44\xe7\xd0\x5b\x24\x92\x3c\xa3\x5d\x86\xae\xa6\x40\x2d\x2c\x6c\x19\xf5\x9d\xfc\x28\x1e\x47\x6f\x62\xd3\x88\x5d\xcc\x70\xac\x1f\x65\x02\xeb\x61\x75\x1b\xad\x93\xb3\x35\xeb\x2d\x93\xcd\x33\x46\xf9\x71\xec\x00\xc5\xa7\x9f\xff\x49\x48\xd9\xfc\x15\x3a\x85\xb9\x75\x30\x19\x3e\x8f\x65\x6f\xfd\x86\x0c\x65\xc3\xcc\xcb\xd1\x0d\x9c\x5a\x99\x13\x3b\xcc\x45\xb3\xe8\x84\xd9\x3c\x02\xa6\x8a\xd4\xcd\x07\xaa\x3e\x53\xb1\x40\x6f\x16\xc0\x20\x08\xce\x80\xbe\xb2\xb7\x0a\x9f\xfb\x5c\xe1\x87\x8b\x17\x6c\x8a\x6d\xe8\x12\xe6\xf4\x1b\x20\xf7\x84\xbd\x2d\x0c\x78\x98\xf0\x8c\xf1\x10\xd2\x28\x5a\x21\x25\x61\xa6\x8a\xcc\x4c\x26\xce\x29\xfa\x17\xad\x27\x56\x8a\x2b\xab\xaa\x29\x59\xe2\xe3\x59\x7f\xd1\x69\x92\x55\xa0\x87\xac\x1b\x12\x92\xef\x04\x9e\x50\xf2\xbf\xf5\x9a\xda\x77\xba\xf3\xbd\x1e\x0d\x29\xba\xd5\xcd\xab\x20\xbd\x5a\x83\x7e\x23\x3c\x42\x33\x26\x6e\x41\x3e\xd2\x54\xd1\xff\xc1\xac\x55\x6f\x40\x65\xe3\xbb\x55\xe3\x95\x48\xd2\x19\x55\x50\x26\x93\x16\xa8\xcc\x00\xed\x64\x8e\x2a\x62\x7d\xab\xb9\xc3\x72\xef\xb5\x0b\xaa\xd1\x2d\xa1\x5d\x57\xea\x66\x37\xeb\x1d\xf3\x1b\x86\x1c\xef\xb5\x27\xa0\x50\x7b\x99\xf0\x19\x22\xa6\x71\x2d\x8d\x84\x0e\xb1\x3c\x40\x2e\xc6\x95\x99\xc6\x2b\xf8\xc4\x0d\x86\x9b\x19\xb7\xa9\x89\x3a\x35\x48\xca\x5c\xaa\x99\xea\x6b\xe2\x7a\x2b\x31\xc3\xe0\xca\x03\x43\xb3\x3a\x7d\x6a\xa4\xfd\xbd\x36\x64\x7d\x4e\xaf\xbb\x26\x1c\xb2\xac\x4b\x27\xa0\xc0\x67\xb6\xdf\xa0\xfa\xa0\xdc\x5b\xc6\xe0\x7f\xb0\xf0\xa6\x73\xe5\x9b\x09\x0f\x6c\xb0\x0c\x14\xc5\x61\x1e\x04\xd5\x33\x5a\xf5\x3d\xbe\x47\x38\x67\xd5\xd0\x21\x67\x65\xf2\x06\x69\x07\xb3\xfa\xc7\xda\x6d\x8d\x47\xea\x8e\x0d\x1d\x56\x3b\xc1\xce\xfe\x83\xc0\x23\x98\xa5\xc7\x46\x19\x42\xae\xed\x5c\x01\x6f\xc3\x7c\x6e\x25\x97\x13\x08\x92\x26\x58\x46\x3a\x25\xc5\xfa\x11\x54\xcf\x28\x33\x06\xf9\x3e\xe3\xd8\x35\xae\x43\xb3\x2b\xfe\xd9\x36\xb1\xfd\x6b\xb5\x63\xd3\x93\xc6\xea\xba\xb2\xf5\xad\xea\x48\xb0\xef\x48\x02\xa0\x84\x2d\x1f\x18\xa6\xd4\x22\x23\x7b\x8e\xc3\x21\x18\x45\x87\xa6\x3c\x8f\xb0\xc0\xf9\x24\x23\x9d\x7c\xcb\x76\x19\xc4\xa5\x7f\x33\x55\xae\xf0\xe1\x64\x6b\xa4\x5b\x2d\xf8\xce\x86\xe9\x43\xad\x84\x93\x90\x2d\xed\x2b\x88\x5f\xe1\x89\x16\x17\x72\x16\xf2\xab\x1c\x4f\xd9\x82\x19\x65\xbb\xd3\xb2\xf1\x26\xcc\x4d\xc6\x74\x12\xad\x1a\xc9\xfc\x45\x1d\xc9\xba\xc0\x09\x61\xfc\x89\x72\xe1\xad\xe5\x00\x3e\xfd\x02\x0a\xe0\xbb\x65\x3b\xce\x07\xda\x3b\x78\x05\xcf\x84\x7f\x69\x63\x11\x4e\xa1\x92\xcd\x02\x52\x3c\x66\x87\xec\x26\xf9\x0c\x3e\x99\xd5\x4f\x15\x13\xf7\x61\xa8\xf4\x06\x4a\x69\xf5\x5f\x4c\x32\x7d\x4d\x96\x9d\xbd\x87\x15\x0d\xfa\xcc\x2b\xe2\x16\xfa\xb4\x09\x82\x01\xe7\xe6\x73\x98\x8d\x48\xf0\xe0\x44\xdc\x0a\x34\xaa\x75\x2f\xbe\x05\x8b\x33\x5d\x26\x86\xe3\xdb\x64\xd9\xa4\x87\xc4\x07\x2c\x5f\xca\x16\xca\x7c\xcc\x0c\xda\x7a\x1a\xbc\x6a\x37\xe3\x06\x63\x2c\xab\x82\x1d\xcf\x6e\x06\xdd\xe6\xbe\xe0\x15\xf9\xb4\x00\xf7\x04\xa0\x8d\x4f\x51\xde\x44\xdf\xfe\x0c\xf4\x11\xd2\x40\x4b\x30\x56\x4c\x99\x68\xe4\xe0\x53\xa8\x6d\x52\x37\xa2\x07\x3d\x8f\xb9\x92\xec\xc9\xf8\x88\x8e\xa7\xe6\xb1\xb6\x57\x2d\xa2\x0f\x70\x5a\x32\xef\xb2\xa2\x79\x46\xd0\x5a\xee\x3c\xc0\xe4\xb3\x15\x08\x14\x6e\xd8\x30\x11\xde\xc5\x5c\xda\xdb\x85\xe4\xb1\x16\x34\xaf\x43\x23\x59\x1f\x0d\x5e\xd8\x0a\xf6\xb8\xf8\x0b\x1e\xc1\x9d\xc9\x08\x24\xda\x78\x1e\x28\x2a\xf9\x0d\x3f\xb5\x92\x4f\x63\x02\xa2\x4c\x22\x33\x42\xb0\x1f\xa4\xe2\xac\x16\xfe\xf2\x79\xc2\xc7\x8b\xf3\xd6\x45\x41\xab\x05\x83\xdd\xef\xe1\x35\xc2\xb9\x4d\xab\x90\x74\x61\xae\xee\x1c\xda\x24\xdc\x20\xba\x82\x3d\x29\xf2\xa4\x87\x13\xbc\x44\x36\xe4\x10\x69\x50\x3c\xab\xe2\x11\xb5\x52\x6c\xcb\x9c\xcf\x88\x93\xcc\x07\xe1\xd8\x0d\x12\x9e\xaf\x27\x6f\x9b\xe4\xf5\xf0\xbe\x06\xab\xf6\x66\x67\x27\x64\x8f\xb6\xde\x36\x0e\xfb\x57\x73\x45\x73\x1e\x99\xa0\x49\x13\xfe\x85\x5e\xab\xde\x4b\xdd\x84\x8b\x55\xfb\x21\xa8\x84\x71\x95\xb6\xfc\x2b\xf9\xae\xf2\x6e\x86\x84\xf6\x45\xb9\x08\x54\xc9\x2a\x52\xac\xf6\x95\x73\x6f\xc9\xd3\x06\x93\xea\x40\xcd\xbf\xda\xe1\x0d\xce\x26\xaa\xf5\x3d\xe4\x97\xfd\x9b\xea\x13\x9c\x6e\x23\x03\x78\xd4\x14\xeb\x2d\x4a\x06\xe6\x88\x25\x08\x9e\x83\x5f\x67\x02\x97\x2f\x23\x1d\x31\x20\xd2\xc7\x68\xb3\x74\x6b\x40\x2b\x98\x4d\xea\x7f\x7c\x0f\x70\x0b\x95\x8c\x7e\x5c\x4d\xf3\x80\xb6\xb5\xb9\x7e\x79\x5f\xb6\x25\x0e\x3c\xd0\xfd\x4a\x89\x80\x85\x76\x92\x79\xbf\x10\x77\xdb\xae\x91\xa7\xa0\x77\xb5\xfc\x05\x4b\xc2\x1d\x6c\xfa\xab\xac\x8a\xf8\xa5\xf1\x54\xba\x90\x8a\x30\x47\x82\x26\x33\xe7\xe9\x11\xbe\xe3\x9c\x7f\xd5\x75\x7d\x03\x35\xcb\xd6\x3d\x69\x79\x5c\xd7\x3c\x92\x6c\xb6\x81\x7d\x06\x99\x8a\xd3\xd0\x2d\x7d\x06\x1e\x03\x01\xef\xe6\x93\xcc\xe8\xf4\x8e\x30\xe8\x5d\x5c\x79\x4b\x67\xd9\x42\xa2\xd3\xb1\x2b\x1d\x4c\x9d\x65\x65\x82\xa6\x32\x4e\x19\x1e\xaf\x70\xe5\xec\xd2\xcc\xed\x5b\x5a\xbd\x77\x4b\x45\x0b\xb2\x2e\x6c\x23\xc4\xec\xd9\xb0\x75\x5d\x8c\x02\x0e\x4d\x1c\xfa\xc2\x73\x85\xbf\xed\x97\x90\x32\x50\x17\xbb\x0f\x43\x07\xb1\x8f\xdb\xd7\x97\x7e\x22\x06\x38\xc3\xd2\xeb\x29\x83\xb6\x6c\x90\x37\x83\x60\x9a\xb2\xa2\x9a\x03\xd6\x50\x36\xae\x21\x85\xd6\x3f\xef\xdb\x4e\xf6\x86\x38\x9c\x26\x4a\x18\xdc\xd5\x70\x9f\x9a\x8d\xbc\x27\x51\xd0\x34\x98\x1d\x8c\x46\xfa\x3b\x3c\x1f\xb5\x91\x29\x21\xa1\x2a\xed\xec\x18\x6a\x4f\x26\x92\xbb\x8a\x39\x01\x94\xc9\x87\x73\xec\x3e\x28\xc1\x43\xa0\x6a\x03\x86\xb0\x0b\x4a\xe8\x1d\x27\xde\x80\x9f\x6a\x7e\x46\xfa\x8d\x9a\x63\xc8\xa2\xa4\x60\xf4\xe2\x2f\xd4\x21\xfc\x72\xc6\x32\x7a\x10\xb1\x15\x95\xc3\xb8\x49\x89\xaf\x4c\x65\x6d\xa0\xaf\xcc\x0c\xe7\xec\x66\x45\x80\x56\xf2\x67\x72\xa1\x3e\xf5\x82\x7e\xe0\xd8\x7a\x03\x3e\x0d\x39\xaf\x37\x90\x60\x46\x7b\x34\x83\x88\x17\xb0\x7e\xfa\x5e\x72\x1c\x1e\x2a\x46\x53\x8e\x12\x87\xe9\x6d\x34\x04\xf9\x31\xf2\x21\x23\x90\x96\x58\x31\xc6\x5a\xc6\xb8\x9e\xf1\x89\x93\xc8\x36\x80\xa6\xf3\x46\x78\x75\x3e\x60\x41\xb5\xa0\x61\x6d\x0f\xe6\x36\x61\x53\x37\x0e\x97\x49\x4a\x70\xf4\xe1\x2f\x91\x7b\x74\xe9\xc4\x3a\x6a\xb2\x28\x91\x3c\x83\xf6\x99\xd6\x45\xb9\xc5\x58\x87\x5c\x48\xbb\xc4\xe2\x55\x94\x33\xde\x72\x28\x19\x1a\x76\x32\x8f\x17\xf9\x84\x7b\x1d\xb0\xfb\xc8\x80\x21\xe1\xa5\xe1\x7b\xa8\x1a\x86\xa0\xf3\x2c\x66\x1a\xd3\x64\x5f\x89\x3d\xc1\x92\x6a\x3e\xe1\xb9\x6c\x8d\xd0\x9d\x58\xc1\x19\xa2\x0e\x93\x4b\xb9\xa7\x10\xf9\x54\x0e\xef\x5b\xf9\x41\xfa\x61\x20\x37\x63\x05\x2b\x51\xd0\x1d\x79\x86\xf3\x55\xf8\xdd\x67\x1f\xff\xa5\x18\x3b\x34\x11\x01\x02\x7e\x77\xf8\x22\xbf\x0b\xf8\x8d\x23\xe8\x47\x82\xa3\xea\x01\xec\x5e\x61\x20\xf0\x0b\x7f\x40\x38\x44\xd9\x42\x7c\x22\x0a\x84\x2b\x28\x11\xa2\x1d\xe5\xc1\xb4\x41\x71\x49\xfa\x15\x66\x8e\xf8\x45\xe4\x1e\xce\x0a\x09\xd5\xe7\x1b\x3f\x52\x3a\xb9\xff\x20\xb4\x5a\xf3\xa0\xf5\x15\xbc\x5e\x23\xb6\xe8\x91\x24\xcd\x7c\xe5\x6e\x34\x5d\x6d\xe2\x67\x63\x47\xd4\x8b\xc8\xf1\x84\xc9\xaa\x66\x58\x35\x49\xab\x9a\x5b\x56\x40\x5d\xad\x14\xa6\xe7\x30\x66\x28\xae\x46\x0e\xb2\x97\x29\x16\xfb\x22\x79\xd5\xf2\xa2\xde\x78\x70\x50\xd3\x49\xe7\x7e\x68\x81\xa3\xd0\xd4\x06\x57\xd8\xbe\xc9\xdf\x22\x37\x37\x8a\xb9\x9b\x31\x33\x2c\xff\x11\xef\xe1\x1a\xcd\x44\x68\x3c\x31\xcd\xb8\xaf\x94\x49\x59\xae\x7f\x98\xb6\x9f\xee\xa1\xbd\x19\x29\x62\x81\xd5\x5b\x7d\xfb\xb8\xa7\x94\xe4\xee\xb4\xfa\xd6\xbe\x5f\x4d\x7f\x83\x1f\xf4\x3c\x31\xdc\x86\x45\x74\x6d\x92\x41\x11\xf4\x8e\x2c\x4e\x31\xea\x59\xeb\x69\xc2\x5a\xac\xc1\xe9\x0d\x89\x27\xd4\x3b\x32\x4b\x76\x93\x4b\x1b\xbd\xd2\xf2\x69\x1c\xd3\x8e\xc8\x3a\xe6\xdf\xfa\xc5\xbe\x37\xb8\x28\x75\x5a\x97\xa4\xde\x65\x6d\x4a\x93\x3b\x18\x3a\x74\xd4\x10\x04\xdd\x36\xe0\x2e\x3d\x09\xff\xdc\x5b\xc0\x3e\x83\xa2\x74\xd5\x10\xa2\xb0\x2e\xed\xe1\xe0\x7b\xf8\x8f\xce\x13\x25\x6c\xd2\x07\xc7\x84\xb4\x60\x9a\xa7\xe5\x79\x24\x98\x69\x32\x18\x7d\x7f\x71\x57\xaa\xc7\x3b\xdf\xd7\xed\xdf\xd4\xe1\x68\x69\xf8\xba\x7e\x54\xbf\x19\x9a\x31\x32\x2a\xad\x87\xab\x07\x07\xd9\x4c\xe4\xf7\xbe\x42\xfc\x18\x66\xb8\x6b\x3b\x78\x18\x2f\x6f\x3b\x55\x52\x4b\x52\x35\xd3\xd2\x02\xa8\x7b\x1a\x77\x44\x02\xcc\x40\xe3\xfa\x15\xb1\x9c\x33\x9a\xf2\x01\x1c\xbd\xbe\x7e\xb4\x4d\xc0\x98\x01\x21\x5a\x13\x19\x43\xf0\xc9\x2a\x57\xa6\x05\xb9\x89\x0f\x66\x59\x31\x7c\xb2\x0b\x7b\x00\x9f\x06\xfd\xc8\xb9\x45\x8a\x2e\xd5\xf3\x7c\xa8\xec\x34\x2f\x7e\x2b\xe3\x7e\xc4\x02\x41\x0d\xc7\xec\x8d\x13\x95\x00\xa2\xfe\x2d\xb4\x89\x50\xef\xd6\x6b\xb4\x8b\x70\x81\x65\x1d\xdd\x8c\xbc\xac\x34\x32\x5a\x30\x31\xbc\xeb\xcc\xbd\xb8\x43\xa4\x01\xd6\x4b\x62\x26\xd4\xca\x89\x23\x8f\x97\x66\x71\xbb\x68\xaf\x52\xbf\xf2\xc3\x99\x7f\x56\xff\x16\x4c\xe5\x96\x78\xa3\x45\x2e\xc0\xc3\xbe\xb7\x94\x0d\x88\xb6\x56\x1f\x6a\x0b\x6a\xab\xe5\x2f\x1a\x07\x73\x42\xf1\x8e\xde\x87\x7b\xc9\xcb\x62\x3c\x22\x86\x92\x56\xb1\x02\xc9\x4c\x68\x20\xdb\x41\xbd\x5f\xf2\x83\x3b\x9f\xa1\x4d\x3d\xc6\xdb\xcf\x2e\x5c\xfd\x16\x58\xc7\x4b\xf7\x66\x09\x2f\x0a\x98\x3d\xcf\x49\xa5\xf8\xfd\xce\x5a\x32\x81\x08\x33\x41\x29\x0a\xd2\x4d\xb9\x99\x7a\x95\x22\xe1\xae\xa0\xc7\xd1\xd2\x88\x61\x8c\x2d\x8c\xe9\x10\x08\x2b\x9b\xf9\xa6\x04\xcb\x7e\xcf\x99\x98\xca\xe2\x9e\xe6\x05\xae\x3e\xcf\x7f\x04\x90\xbc\xfb\x84\x2b\x84\xf7\xbb\x15\xf8\x07\x74\x49\xd3\x77\x62\x18\x43\x6b\xf8\x42\x92\x31\x25\xb2\x42\xf2\x6f\x56\x07\x67\x2e\xd5\xc6\xbe\x44\x48\xa1\x47\x72\xa7\x83\xdb\x19\x9f\x78\x95\xc5\x0f\x59\xe7\xf8\xa7\x52\x83\x38\x17\x04\xe9\xab\xcf\xf1\x67\x0a\x4f\x7b\x3f\x17\x50\xc5\xe4\x4e\x13\xf6\x34\x9f\xe3\xc8\xc0\x27\x03\xcb\xf5\x16\x42\x3f\x20\x93\xce\x26\xe5\x08\x66\xb3\xbe\x52\xa6\x0a\xd6\xe2\x4b\xa9\x17\x84\x39\x0d\x7f\xd3\x77\x09\x3f\x14\x97\x33\x77\x8b\xb6\xa5\x3c\x64\xdf\x17\xb3\x56\x9f\xe2\x45\x49\x42\x7c\x02\x80\xbd\x92\x5f\xed\xcb\xd1\x4b\x54\xcf\x6c\x4b\x30\x83\xaa\x75\x5a\x05\x2e\x4d\x05\x11\xaf\x21\x2c\x55\xcd\x64\x42\x48\x93\x94\x07\xb0\xe3\xe4\xdf\x4a\x4c\xfd\x61\xda\x72\xe5\xcc\x22\x3d\x23\x5f\xb1\x36\x05\xce\x1a\x52\x80\x56\xef\xe7\x86\xca\x77\xf9\xb4\xf0\xef\xc8\xa3\x5a\x5e\x20\x1e\xd8\xbd\xac\x53\x50\xbd\x8d\x9f\xd4\x7d\x18\xb4\xf5\x8c\x50\x81\x83\x58\xb4\xf4\x07\x04\x9a\x39\x05\xb3\x9e\xe4\x30\x3e\xac\xdb\x41\xb9\x63\xc0\x16\xee\xa6\xc7\xe9\x4e\x27\xdf\x63\x1e\xd4\x4e\x5c\xdd\xc4\x61\xaa\x03\x7d\xae\xf0\x33\x95\x71\x4e\x24\x9c\xdc\x33\xdb\x2c\x40\xa6\x76\x2d\x55\xcd\x47\xfb\x74\x4c\x15\x2c\xc0\xae\x6e\x7d\x42\x73\xe0\xeb\x9c\x43\x68\x3d\xb1\xbd\x29\xa9\xf6\x24\xf9\x8f\x6d\xa8\xf0\x2f\x1a\xdf\x72\x32\x99\xcc\x5c\x66\x1c\x58\xcd\x62\x3f\xd7\xc1\x7d\x67\xf1\x6e\xa8\xbe\x34\x37\xc2\x9e\x0e\x7e\x30\x9d\x43\x1c\xec\xdf\xac\xe4\xa0\x86\x7a\x53\x01\x25\xe6\x7f\x5d\x7b\x69\x8b\x71\xcf\x3b\x66\xa3\xdd\x89\x61\xad\x01\xb5\x14\x72\x47\xf3\xf4\x82\x0b\x34\x4f\x9b\x29\x39\x97\x71\xcc\x7c\x78\x35\x93\xdd\xa1\x3f\xeb\x1b\xc6\xb3\xab\xfb\x9b\xde\xc1\x04\xeb\xfe\x33\x65\x20\xca\x47\x44\xca\x99\xa8\xf8\xc1\x33\xc0\x0a\x4c\x5e\xdf\x5b\xea\x51\x1c\xa7\xfb\x01\xea\x16\xe1\x50\x87\xa5\x36\x81\x1c\xd6\x32\x5e\x30\x4c\xdd\xea\x78\x9e\x9c\xce\xa8\xb5\x8a\x57\xeb\xd8\x31\x86\x27\xbe\x58\xde\x6a\xcd\xb4\xb6\xeb\xdc\xc0\x7a\x61\x63\x3b\x57\x09\x59\xad\x79\xc3\x7d\x0d\xbb\x28\x52\xf0\x00\x24\x8d\xa1\xe5\xbb\x63\xa2\xb1\xb3\xf9\xa3\xf8\x99\x75\xfb\x01\x27\xe9\xaf\xc2\xd9\x02\x36\x35\x2b\x89\x2e\xe4\x32\x36\x86\xd1\x45\x3b\x38\x2c\xaf\xa5\x12\x4f\x40\xd5\xb6\x9a\x7d\x0b\x72\xaa\x71\x12\xa7\x01\x1e\xa8\x81\x72\x5e\x21\x25\xc2\x9f\xdc\x26\xf4\x03\xc6\x0c\x5e\x05\x0e\x89\xe9\xe4\xbb\x13\x3e\xd7\x41\xf9\x7f\xc8\xbb\x0a\x2e\x00\x5f\x68\xc3\x49\x59\xc2\x45\xcc\x03\x61\x24\x11\x96\xbb\xca\xcb\x45\xfc\x06\xb8\xdd\xaa\x60\x19\x11\xd1\x56\x28\x7b\x0d\x2a\x4f\x7d\x9a\xfd\x02\x53\x23\xc4\x72\x36\xe1\x38\x74\x05\x57\x4d\xd8\x87\x09\xe0\x61\xc9\x73\x6b\x7f\xf3\x11\x54\x53\x81\x09\xa0\x33\xd6\x24\xf9\x09\x06\x58\x7f\xc2\x88\xa2\x39\xbc\x05\x5e\x11\xe2\x61\x01\xca\xf9\x1f\x63\x0d\xde\xdd\x7c\x9d\xb9\x8c\x30\xa4\x4a\x65\x4d\x20\xf9\x09\xbc\x58\xef\xc9\xd7\x69\x74\xf6\x38\xb5\x0f\x9d\xc8\xf9\x4d\x17\xd5\x26\xf0\x7c\x99\xfc\x82\xd9\xfc\x3a\x76\x73\xe2\x38\xb0\x87\x7b\x3e\x0c\x23\xcc\x07\x42\xbc\x30\xe2\x89\xc2\x23\xcd\x3c\xea\x73\x5a\xb6\x89\x4d\xfb\x49\x67\x2a\xa7\x31\xe6\x31\xf4\xc0\x74\x66\x20\x73\x0f\x55\xc4\xaa\x66\xfd\x46\x91\xd8\x7a\x4e\x49\x8d\x8d\x73\x83\xbb\x2f\xdf\xc9\x4b\xe0\x27\x26\x1e\xe2\x1f\x05\x2e\x85\xe1\x04\x7c\x21\xe0\xb5\x41\x54\x2c\xce\x73\x5c\x20\x3f\xe5\x2d\x31\x4e\xa5\x2e\xe2\xed\x94\x9f\xa3\x25\xf3\x33\x78\x63\x74\x09\xff\x05\x45\xcb\xb8\x0a\x74\x23\xdb\x58\x81\x02\x48\xf5\x0b\x76\xbb\x30\x38\xdf\x87\x1b\x24\x9a\x9e\x28\xe7\xdd\x14\xbd\x0c\xc3\x03\xeb\xc4\xe7\xbd\xc6\x84\x1d\x92\xb3\x36\x36\x51\xa0\xf8\x5b\x77\x8f\xb4\x59\x71\x4a\x7a\x86\xfc\x4d\xd1\xcf\xf5\xa1\x62\x14\x6c\xd2\x37\xda\x53\x45\x31\x22\x8b\x41\x51\xac\xa8\xba\xc1\x9a\x2b\xff\x9a\xd7\xc0\x3e\x2f\x3f\x92\x38\x87\x3b\x24\x17\x87\x21\xf8\x83\xf2\x35\xde\xe5\x82\xc3\xb2\x71\x2b\x14\x1f\x6c\x55\x69\xee\x11\x36\x5a\x8c\xe2\x37\xa4\x30\xb3\x92\xcd\x26\x1f\x34\x71\x88\x32\x2a\xc2\x88\x80\x4f\xa4\x2f\x34\xc4\x56\x5e\x64\xdc\xd3\xfd\xcc\x6d\x66\x1d\xd1\xb6\x25\xd8\x39\x47\x34\x4b\xc2\x32\x79\xff\xa8\xd4\xde\x7d\x82\x65\x8a\x17\xe6\xf5\xd8\xfd\x1d\x8f\xd4\x85\x78\x70\xbb\x87\x88\x45\xf8\xde\x9a\xc6\xf2\x24\x75\x3a\x1b\x08\x15\x94\xaa\x26\x08\xf4\x37\xcd\xd7\x1e\x53\xf1\x93\x31\xdb\xfa\x22\xe7\x03\x6b\xaa\xb9\x24\xc1\x87\xe3\x6e\x90\x84\xad\xe0\x55\x6a\x9b\xbd\xaf\x03\x3d\x2a\x9b\xe9\x33\x36\xa9\x4f\xae\x5a\x87\xbb\xd7\xc3\x13\x3e\x24\x28\xba\x32\x98\xed\xa4\x80\xf6\xdf\xf8\x47\xe4\xa7\xad\x0e\x68\x27\x75\x6f\xf3\xb7\x8a\xcd\xf4\x0d\x0e\xbf\x9c\x3d\xcc\x8d\xd6\xaf\xf1\xdf\xd9\x67\x4c\x8a\x30\x77\xde\x4c\xdd\x7b\xef\xb7\x40\x9d\x3a\xc6\x44\xc1\xdc\x1e\xae\x56\x45\xe0\x98\x83\x8b\x85\x5c\x82\x6b\x5f\x17\x33\x85\xb8\xbf\x67\x1a\xbe\x89\xcc\xe9\x4c\x83\xc2\xa9\x85\x6d\xc9\x15\x2a\x7a\x5a\xf3\x97\x9c\x36\x66\x9a\x3d\x39\xfe\x3d\x1b\x62\x01\x85\x05\x70\x07\x0d\x53\x7c\x82\xf8\x6f\xd5\x03\x56\x92\xa8\xab\x1e\xd0\xdc\x15\xed\x82\xf8\x4a\x66\x8a\x76\xc2\xb6\xb2\x31\xa2\x87\xc8\x3c\x62\xac\x78\x39\x66\x0e\xcc\x2e\xae\xc1\xbd\xae\x0c\x10\x8f\x10\x7f\xe6\x64\x48\x66\x51\x43\xe2\x34\x12\x3d\xc3\x1a\x7c\x42\x1a\xc1\xa1\x7a\xb4\xcb\xa6\x02\x06\xcb\x79\xa1\x04\xa2\xd2\x14\x09\x47\x60\x6f\xc4\x2a\xe1\x59\x64\x2a\xeb\xa5\x68\x16\xba\x9d\x70\x52\x54\x87\xf3\x80\x85\x8a\xb6\x10\x0e\x54\x5c\x17\x2f\x23\x9b\x72\xe6\x88\xed\x34\x7e\x1c\x43\x12\xc0\x6c\x0c\x3e\x20\x79\xc5\x9d\xef\xb1\x5d\x3a\x0a\xdc\xb0\x78\x0b\x90\xf0\xdd\xea\x1d\x82\x76\xe4\x7d\xd1\x67\xc1\x7d\xf4\x4f\x16\x5c\x18\x81\x5b\x42\xc8\x13\x3a\x09\xf5\xd0\x63\xa2\x89\xa4\x43\x15\x02\x91\x94\x5a\x9c\x7d\x43\xbc\x80\xfe\x29\xae\x41\xbc\x9f\x75\x2c\xf8\xb4\xa4\x91\xfb\xc6\x63\x54\xaa\x13\x54\x98\x2c\xfc\x55\xb8\x20\x55\x06\xdf\x84\x1f\x13\xb6\x03\x13\x89\x12\xe6\x1a\x40\x45\x8e\xc6\x17\x08\x96\x52\xe7\x41\x9e\x0b\xd6\xd2\x27\x94\x9f\x10\xe6\x33\x17\x67\x63\x44\x53\xd8\x51\x71\x6b\x44\xd7\xb9\xac\xe0\x7b\xe2\x0b\xfc\xaf\x9e\x8b\x25\xcf\x85\x23\xc6\x58\xce\x1b\x6a\x94\x32\x80\xab\xa2\x31\x05\x76\x9e\x17\xbd\x83\x91\xc7\x3b\xc7\xb8\x8d\x93\xf0\x15\x2c\x10\x24\x06\x88\x67\xf7\x95\xc7\x08\x26\x72\x03\xb3\x67\x0b\x5e\xf2\xf6\xc7\x2d\x14\x3e\x01\xe0\xc1\xaf\x45\x7f\x84\x91\x9e\x38\xc9\x1a\xb1\x9f\xc1\x83\xf5\x95\x63\x95\xbf\x63\xef\xe4\x22\x00\x3d\xa7\x9e\x37\x83\xde\xc0\x0d\xe0\x9d\xc4\x6e\xe1\x4d\xe1\xb7\x80\x35\xbc\xfb\x00\xbf\x6c\x03\xff\xb4\x80\x98\xb5\x15\xf8\x5b\x88\x8c\xfd\x57\xf0\x43\x84\x08\x99\x25\xf2\x11\x73\x3d\xaf\x89\xe1\x92\xf5\xda\x43\x0c\x81\x6c\xb7\xf4\x1d\xb3\x50\x76\x83\xd7\xc2\x0a\x95\x3d\xa2\xf6\xb2\x57\xca\x6e\x63\x22\x38\xc1\xb2\x7b\x0d\xa9\xdc\x48\xd9\xa3\xd2\x01\x5e\x9e\xec\x69\xe6\x17\xbe\x5c\x76\x27\xd6\x00\x8c\xca\x4e\x85\x4c\x10\x7a\xc9\xf6\x79\x79\x8b\x9a\x65\xbb\xd4\x5b\x68\x58\xd3\xa8\xf8\x39\x9d\x6d\x1c\xe7\x9c\x62\xb0\x8d\x61\xe4\x3f\x4c\x93\xa1\x0a\x75\x9a\xb5\x53\xcf\xab\x9f\xce\xfe\x47\xa7\x2f\x19\xe4\xfa\x68\x0d\x99\x09\x3c\xa1\x06\x1b\xeb\xce\x7f\xa1\xf6\x0b\x7e\x22\x80\x2a\x6f\x7b\x35\x08\x5f\x2b\xf4\xaa\x08\x6a\x60\x2b\x55\x64\xa5\x45\x39\xbf\xb2\xc9\xf4\xc2\x66\x24\xe9\x3c\x83\xe3\x38\x80\x3c\xc8\xdc\x62\x9f\x50\xe7\xcf\xfa\xd9\xe8\x53\xfc\x91\x53\x67\xf1\xc8\x58\xcb\x3d\x65\xbc\x1c\xb3\x89\x9f\xa9\x2f\x0d\x3e\x0a\x5c\xd2\x1c\xf3\x32\x0a\x09\x2a\x4f\xa5\x92\x62\xed\xba\x23\xfc\x46\xdd\xd8\xb9\x84\xf5\x84\x76\xab\xdd\x9f\x54\xc1\x98\xdc\xba\x12\x59\xcb\x4c\x75\x4e\xaa\xbd\xc6\x6a\x72\xec\x2c\xde\xce\xfe\x6d\x03\x65\xb0\xb9\x14\x4b\x4d\x8c\x86\xf7\xaf\x31\x31\x78\x17\xa0\xd0\xcd\xf1\xb2\x0b\xbd\x55\x87\x15\x3f\x29\xf3\xfa\x55\x42\x25\x35\xae\x57\xc6\x92\xd1\x98\xdd\x05\xa4\x89\xf4\xd6\x8e\xff\x90\xcb\x18\x57\xdb\xd4\xb5\x7d\xac\x40\xe7\x8d\x62\x3b\xbb\xd9\xf1\x3c\xa3\x81\x3b\xa5\x51\x1b\xc3\xe3\x69\x4c\xf7\x83\x4f\x03\x4b\xf5\x5e\x5e\x77\x05\x9b\xd5\xd1\xd2\x93\x5a\xf7\xfa\x76\x7e\xb9\x46\x0c\x49\xa2\xd7\xa9\xdf\xc3\x2e\xe3\xae\xa9\x01\x24\x0c\x7a\x4b\x3d\x0d\xe3\x59\xc5\x57\xe9\xf1\x93\x0a\xe8\xaa\x79\x24\xef\xd4\x39\xca\x0e\x2a\x1c\x34\xae\x04\x31\xae\xad\xfa\xa6\xb8\xc5\x39\xe0\xb6\x5f\xd1\x0a\x3c\x91\x06\x6a\x26\x40\x18\xbc\xeb\x6a\x09\xec\x2a\xed\x93\x7a\x36\xd2\x1f\xc7\x52\x6d\x44\x0b\xa1\x52\x55\x39\xf6\x4f\x55\x88\xf2\x15\x61\x43\x41\x84\x52\x45\x36\xa6\xbc\x50\xfa\xd3\xb4\xa0\xd7\x8a\xeb\xcc\xed\x01\x33\x15\x46\x6e\x86\xdb\x3f\x0a\x88\x60\x89\x44\xae\x7a\x0a\x67\xf2\xf2\x55\x12\xa4\x9d\xa6\x56\xad\x44\xaf\xc3\xcd\x50\x3e\xc4\x1e\x83\x7a\x2a\xdb\x08\xf3\x2a\x6f\x2b\x33\x48\xaa\xfc\x77\x8a\xf7\xd4\xa0\x94\xe3\x8a\xb5\xf4\x67\xa0\xc7\x0a\x02\xeb\x4c\xc0\x32\x45\x24\x6f\x9a\xfb\x44\xc5\x12\x81\x58\x0c\x56\x5c\xc3\x52\xb9\xab\x14\x43\x78\x37\x2a\x5e\x21\x25\xec\xc7\x2e\x55\x54\x90\x54\x90\x0a\x45\x30\x85\x51\x19\x2c\xff\x4c\x93\xe4\x23\xe4\xc7\x18\xdb\x52\xa8\xf2\x76\xd6\x6b\xd0\x65\xb9\x8a\x9b\x1b\x10\x25\xa7\xf0\x5f\xba\x57\xcb\x49\xc2\xdd\xc2\x6f\xf2\x39\xe4\x2e\xf6\x2f\xd9\x7d\xea\x4c\x0a\x57\xb6\x9b\xd6\x80\x49\x92\x6d\xa0\xff\x0f\xec\x94\x0d\x31\x41\x15\x26\x99\x95\x75\x3a\xef\x1f\x99\x88\x03\xa4\xac\x92\xa9\x78\xd1\xa0\xc3\xb2\x26\x60\x46\x40\x89\xac\x5b\x38\xd9\x7d\x44\xb6\x47\xec\x2d\x38\x2e\x8d\x66\xa9\x59\xaf\xa5\xcb\xd9\x64\xb2\x4c\x3a\x95\x93\x86\x86\x4b\x5d\xb8\x41\x0d\x7f\x4b\x23\x79\xc1\xe5\x2f\xa5\xb1\xfc\x94\x3c\x84\x34\x1d\xc0\x26\xdf\x93\xb2\x05\xed\xa0\xcd\xd2\x0d\xc2\x5b\x01\x24\xe9\xa8\x38\xd0\x7d\x4c\x36\x5d\x62\x01\x38\xa2\xbd\xe2\xab\xcc\x06\xd1\x45\x89\x0f\xf1\xa3\xe8\xa5\xa4\x16\xf9\x58\x0c\x92\xe8\xea\xc5\x62\xa1\xe4\x4c\xd9\x31\xf1\x26\xe9\x82\x5c\x86\xf8\xa9\x14\x9a\x9c\x2e\x09\x95\xae\x05\xd1\x25\x02\xe9\xeb\x00\xa5\xe4\xb0\x2c\xdc\x83\x2c\x9d\x25\x13\xf2\x74\x82\xb5\xba\xf7\xf4\x63\x82\x37\x3a\x1c\x01\x26\xcc\xd2\x9e\x47\xec\x11\x6a\xb5\x39\x75\x8d\xc2\x87\x9a\x83\xa5\xdf\x45\x71\x1a\xff\x9c\x73\xa2\x61\xb5\x2c\xe9\xb2\x78\xa6\xea\x04\x28\x54\xac\x50\xbe\x0d\x50\x8a\xdf\x2a\x67\x7a\xec\x90\x54\x2a\x56\x70\x3e\x03\x28\x07\x82\x46\x06\xb6\xda\xcb\xf1\x55\x82\x19\x36\x77\xf8\x36\x01\xd9\x7a\xab\x76\x8b\xe0\xa6\x45\x59\x9a\x2c\x2c\x31\x2f\xc8\xc9\x16\x5e\x30\x4a\x92\x6a\x45\xc5\xfa\x0d\x91\x57\x45\xd7\xb5\x9b\x02\xb0\xe2\x32\xf5\xa0\xc7\x43\xf1\x39\xa5\x83\x43\xe4\x5f\x69\xcd\xa5\x3e\x07\x82\x9c\x1f\x71\xf7\x01\x6b\x33\x0b\x9e\x07\x7c\x76\xdc\xab\xad\x17\xa0\xed\xc1\x25\xdf\x04\xcf\x1a\x2b\x72\x16\x08\x69\x96\xd2\xa4\x10\xe1\x47\xe3\xb7\xc8\xed\x22\x81\x9e\x18\x00\x13\x4f\xd0\x5c\xf0\x18\x17\x8b\x54\xab\xd8\xbf\xf9\xd5\x9d\x12\xaa\x92\xbf\xbb\xfd\x33\x4e\x0d\xf8\xb4\x25\xc0\x27\x02\xca\x16\x78\xad\x2f\xf0\x6f\x33\xa2\xe4\x92\x80\xe3\x88\xc8\xfe\x2a\x9c\xda\x38\x9a\xe4\x22\xd4\x98\x7f\x46\x0e\x8b\xfe\x32\xbc\x09\x20\x8a\x1c\xda\x0b\x9e\x8b\xc4\x8b\x54\x2d\xb4\x68\xfb\xd6\x86\x58\xc2\x44\x5b\x3d\xe4\x10\x32\xa0\x71\x01\x3c\xbe\xfe\x92\xe5\x16\xf2\x54\xc5\x72\xb3\x13\xa3\x2b\x58\x6a\x8a\xc3\x0b\xd3\xf5\x86\x4b\xa4\xf5\xb1\x27\xf5\xf5\xd4\x5f\x61\x44\xed\x43\xa6\x74\x65\xa9\xa6\x9a\x4b\x71\xf5\x55\xdd\x10\x34\x51\x5f\xd9\x86\x21\xbb\xf0\x3b\x1a\x31\xf0\x99\x88\x97\xd6\x10\x64\x4d\xbd\xdd\x32\x0f\xbd\xb9\xfc\xa1\xe9\x25\x2e\x36\xff\xb9\xb1\x93\xf0\x25\x1d\x6d\xc8\x20\xbf\x8d\xdd\xa5\x7b\x42\xfb\x15\xc6\xd0\x8a\x59\x71\x2b\xf1\x9a\xe9\xdc\x1b\xae\x29\xaa\x16\xc1\x30\xb5\xb1\xb1\x03\x0e\xc6\x37\x58\xe9\x48\x19\xa2\xdb\x92\x89\xee\xab\xcf\x37\x67\x63\x8f\x95\x77\x99\xa2\x08\xae\xf9\x5b\x0d\xdf\x48\xc3\xe9\xf1\xfa\xcd\x54\x74\x6c\xbf\x0e\xc5\x88\x0e\xe3\x6a\xe7\xb3\xc3\x56\xaa\xd4\xeb\x79\x62\x57\x82\x2a\x4f\xf0\x93\x62\xb6\xfc\xc0\xec\xc6\xb1\xcc\x57\x70\x0e\xf8\x79\xd3\x45\x42\x5a\x5d\x9b\xf1\x2a\xc9\xb3\x7c\x8e\xe1\x22\x65\x65\x7e\xac\x7e\x23\xad\x2c\xed\xbe\x4e\xc4\x18\x89\xe5\x69\xab\xd8\x13\xc2\x24\x9a\x95\x5c\xde\xca\x4d\xaa\xfb\x40\xa4\xeb\xff\x94\xad\xa2\x85\x64\xbd\xe9\x3f\x12\x80\x55\x98\x66\x92\xbf\xc1\xbe\x1a\x17\x53\xe1\xb5\xf7\x0d\x6b\x68\x0f\xcb\x88\xfa\x22\x86\x34\x6f\x9b\x2e\x8b\x95\x9c\xc6\xd2\xae\xe6\xb8\xc7\x66\x6b\xa2\x78\xd3\xc3\x34\xea\x50\x60\xf2\xca\xfb\xaa\x09\xc2\x20\xb7\x65\x8a\x2b\x62\x02\xc9\x68\x4c\x67\xb4\x60\xfa\x0c\x35\xcc\x73\x30\x1f\x3d\x95\x75\xa0\xd6\x5d\xb7\x8e\x7d\xbd\xf4\xb8\xf6\x0e\x77\x46\x9e\x9f\xe6\x0d\xaf\x2c\x6d\xa6\xfa\x1d\x7f\x6b\xec\x7c\xb5\x9b\xc0\x37\xcc\xac\x4a\x12\x76\xf9\xcd\x52\x06\x88\x57\xba\xb1\x14\x8b\x25\x47\x88\x65\xba\x1b\xc2\x95\x68\xbc\x6e\x81\xb0\x13\x3a\x5d\x5b\x25\x9a\x59\x13\xa4\xd9\x28\x52\x94\xfc\x52\xff\x12\xcf\xce\x55\xaa\xa3\xc5\x1d\xa9\x36\x15\x5a\x12\x11\x73\x49\xb9\x55\x72\x36\x4c\xa3\x78\x2f\xad\xf7\x2b\x51\x4c\x94\x3e\x73\x9f\x29\x9f\x2a\x53\xe0\xc7\x34\xff\xa8\x27\xa3\x52\x35\x71\xaa\x4b\x90\xa9\xea\x56\x55\x5f\x75\xae\x7a\x86\x8a\x58\x92\xac\x62\xaa\x62\x72\x9e\x29\xaf\x28\x7f\xa4\xba\x28\xfd\x95\x3b\x63\x34\x0a\xb3\x12\x1a\xc6\x90\xbf\x56\x7c\xf0\x43\xcb\x57\x28\xa8\xee\x08\x59\x86\xfc\x13\xee\xb5\x1a\x67\x51\x23\x53\x55\x8f\xcd\xe7\xc1\xde\x2a\xb0\xe9\x4b\x95\x42\x79\xcf\xb4\xb4\xb8\x43\x59\x6b\x0c\xca\x81\x2b\xee\x18\x02\x52\x76\x2b\x2a\xf5\x7f\xc5\xc4\xc8\x4f\x6b\x77\x85\xc5\xcb\x57\x6b\x62\xfd\xb0\x32\x91\x6a\xb7\xbb\x5e\xba\x53\x19\x8e\xa3\xab\xae\xd8\x3f\x20\x6e\xa8\xca\x6c\x5f\x1a\x8e\x2b\x6f\x35\xde\xaa\x5a\xa3\xac\xb7\x6e\x2a\x86\x2a\xee\x5a\x68\x39\xab\x15\x04\xf3\xc2\x94\x66\xf9\x07\xa3\x2d\xc6\x5d\x8e\xd1\x1f\x09\x5b\x25\xbb\xac\x3d\xea\x07\x95\xf9\xab\x77\xb9\xdb\xa4\x44\xe5\x10\x6e\x8e\xaa\xc4\xb9\x0f\xa1\x50\x5e\x6d\x36\x37\x48\x95\xe0\xa6\x98\xaa\x09\x8a\xbb\xf6\xcb\xc5\xf1\x8a\x06\x5b\x51\xce\x72\xf9\x7b\xeb\x40\x8a\x41\xae\x30\x8f\xc6\x2c\x95\x8d\x1b\x2d\x61\xfe\xb2\x06\xfd\x72\x3f\x96\x74\xb7\xa6\xcb\x7d\xbd\x74\x82\x6a\x3e\x8c\xd5\xdd\xda\x70\xbd\xde\xa5\x93\x0f\x4d\xad\xac\x68\x87\xc1\x77\x15\xcf\x6e\x85\xa2\x32\x73\xe4\xce\x2c\xec\xfc\xd4\x2b\x8e\x0f\x84\x85\x71\xbb\x6d\x12\x72\x79\xc4\x39\xcb\x37\xda\xa5\x40\xb2\xa9\x96\x25\xf4\x59\xa8\x6f\xe2\xd5\x2d\x3f\xa8\x39\x2b\x44\xc2\x4a\xba\x0c\x50\x8f\xba\x4f\x1d\x6a\x78\x7d\x65\x44\x9b\x12\xd9\x57\xf4\xaa\xa5\x0d\xfd\x3b\x07\xd9\xdc\x8c\x6b\x4a\xdd\xe7\x28\x23\x62\xe2\xd6\x36\xbe\xa3\x50\x23\x46\x2d\x42\xfa\xfa\x40\xa9\xf1\x1d\x7b\x8e\x4f\x90\x3e\x85\xd7\xbb\xfc\xb9\x46\x2e\x04\xc3\xbc\x3b\x85\x70\x7b\xdd\xc9\xf6\x46\x64\x7f\xe5\x94\xd6\x01\xf4\x81\xa2\x03\xce\x6b\xd8\x27\x39\xf1\x4d\x0f\x09\x85\xa9\x9d\xf6\x75\xa4\x7f\xe3\x9a\x1b\x2b\xa9\x27\x22\x46\xcd\xe3\x8c\xa3\x81\x8d\x46\x3e\xfb\x91\x4f\xae\xee\x36\x3f\xc8\x65\x9e\x26\x44\xd8\x0a\xa5\xb6\x1f\xc4\xc8\xeb\xbc\x5a\xff\xc5\xc5\x55\x90\x5a\x7c\xf0\x9f\x8b\x32\x9b\xab\x89\x2f\xb3\x1f\x38\xd8\x94\x99\xa9\xd5\xb6\x6a\x5a\x55\x1c\xd6\xea\xc2\x38\x1b\x71\xd8\x74\x83\x9d\x1f\xb8\xd9\x20\xe4\xfe\xeb\xa3\xd2\x7e\x07\xb6\xba\x90\xd5\x18\x91\x15\xf2\xa0\xf5\x39\x71\x73\xad\xb6\x25\x96\x1c\x5a\x7e\xab\x59\x41\x19\x2c\x3c\xe9\x18\xa5\x65\x64\x73\xec\x13\x18\x33\x53\xa7\x5a\xbf\x32\xdf\xc5\x45\x98\x2f\xb3\xc7\x23\x76\x19\xb7\xf2\x16\x07\x8e\xea\xd9\x40\x96\xcf\x09\xed\x6c\xa1\xd4\xe5\x92\xca\x2a\xbe\x0c\x99\xd1\x92\x4a\xaf\xad\xb9\xd9\xdc\xc5\xa0\x97\xa7\x3b\x3e\x32\xd5\x85\xe9\xf6\x32\xd6\xd9\xec\x19\x8d\x6d\x9c\xd0\x94\x6d\x96\x41\xee\x50\xec\x77\x93\x8d\x0f\x8a\x18\x36\x34\x02\xaf\x03\x5f\xea\x58\xc2\x61\xdf\xa9\x1a\x3f\x71\x8d\x6b\x84\xf2\xa8\x74\x31\xd8\xbb\xe9\x25\xff\x40\xcd\x0c\x07\x16\x20\x94\x35\xd9\x1e\x08\xe6\x14\x6c\x6b\xac\x16\x1c\xce\x6a\xb1\xec\x13\x6a\x53\xc0\xa6\x31\x51\x75\xec\x49\xe3\x14\x71\x78\x44\x9f\xde\x45\xe2\x11\xb4\x44\xbb\x40\x3a\xc5\x17\xa2\x7a\x23\xbd\xe2\x7a\x54\xb1\x4e\xb6\xb1\xc1\xd7\xfe\x47\xbe\xa5\x3a\xc5\x66\x97\xef\x2f\x7d\xd8\x18\x2c\x3f\x54\xe0\x65\xd9\x2d\xbf\x9c\xe5\x6d\x8e\x92\xbf\x4e\xfe\x63\x34\x29\x26\xc6\xaa\xf5\x17\x14\x0b\x23\x2c\xda\xf7\x8a\x55\x41\xab\xd5\x3f\x14\x7e\xbe\x1d\xca\x1f\x8a\xe9\x6e\x41\xf2\xdb\xf2\x57\xf5\x0e\x9b\xd8\x10\x57\xd5\xd1\xe8\xa9\x3f\x50\x5a\x6c\x39\xa4\x0f\xcd\xef\x36\x43\x74\x43\x99\xfb\x8d\x6f\x75\xae\xc9\x5b\x0d\x24\xad\x24\xb6\x44\x77\x5d\x73\x29\x82\xa2\x9d\xa1\xfe\x11\x14\xa0\x5e\xa9\x9e\xe4\x7b\x48\x99\xa6\xfc\xe1\x86\x95\x27\x2b\xc6\xea\x03\x1a\x8f\x5b\x3c\xaa\xf2\xac\x6c\x33\xa1\x74\x96\x65\x85\xa9\x27\x1f\x67\x3a\x69\xbc\x96\x69\x37\xd6\x19\xfe\x4b\xb6\xe9\x5f\x1a\x16\xc4\x26\xe8\x10\xfa\x59\x11\x68\x4d\x9b\xf6\x54\x50\xa0\xea\x7f\x9a\x3a\xdf\x63\x8a\x17\xaa\xab\x6e\x64\xd9\x77\x65\x76\xdd\xf9\x46\x57\x1b\xb1\x6a\x8a\xe5\xef\x46\x5b\xc9\x2d\xb3\xd5\xda\x96\x9f\x61\x5a\x6d\x69\xcd\x14\x19\x4e\x98\x35\xc9\x6a\x3d\xc4\x54\x13\x1b\xa7\x7d\x62\x9c\x12\x41\xd2\xb8\xe8\x61\x41\xb1\xaa\x38\xad\xc1\xf7\xa9\x82\xa1\xee\x73\x33\xca\x2c\xca\x4d\xb5\xdb\x06\xbe\x80\x73\x2b\xb4\x7d\x2d\xd0\xb6\xe2\x69\x3d\xab\xe1\xdf\x73\xc3\x3b\x6f\xa1\x34\xe9\xfe\xed\x10\x6c\x65\xe2\xec\x96\x56\x42\xc3\x9a\x96\xa6\xb5\xe4\x9e\x30\xbd\xad\x8f\x1e\xbe\xca\xc5\xc2\x61\xbd\xf6\xea\x34\xba\xf0\x0e\x2f\xf7\xd5\x6e\x14\x6e\xa9\x6d\xea\x1f\x87\xb2\x2b\x68\xbd\x6b\xe1\x5d\x45\x1f\xba\xab\x91\x57\x73\xdd\x3a\x17\x62\x42\xd3\x17\xb5\x6d\xc0\x9d\x4a\xf8\xe3\xfc\x44\xec\x5a\xd3\xd4\xb4\x98\xb2\x21\xcc\x62\xf3\xa4\x7f\x5f\x15\x65\x99\xc6\xa6\x79\x6d\x33\x1c\xe2\x7d\x5d\x9e\xaf\x85\x09\x3b\x6a\x29\x7d\xef\xe0\xa3\x15\x85\x3d\x7b\x90\x17\x8b\xae\x76\xf1\xd1\x77\x73\x7e\x74\xe4\xe1\x26\xa7\x7d\x6d\xfd\x40\xa0\x25\x8c\x39\xf3\xc8\xcb\xd7\x18\x1d\x5c\xea\xe7\x30\x5b\xa3\x9d\x39\x61\x55\xae\x59\xcf\x01\x79\x5d\x34\x94\xf3\x59\xcb\x59\xda\xc9\xc2\xcb\x35\x97\x7a\x03\x31\xa2\xf2\xc3\xdd\x73\x71\xab\x8b\xaa\x3a\xde\xe2\xdf\xe4\x74\xb6\x9d\x22\x3e\x4d\xdb\xd1\x22\xa5\xcc\x4d\x38\xd0\x34\x46\x43\xaf\x61\xd8\x23\x19\x4f\xc2\xcc\x56\x32\x9b\xb9\x8a\x6c\x92\xf3\x02\xbc\x67\xe8\xf1\xc0\xb3\xe5\xe7\x35\x20\xd1\xde\x1a\x4a\x77\x31\xd1\x5a\x5e\xdc\xd9\x40\xfa\x59\xf8\xb8\xbd\x9a\x42\xce\x89\x6f\x4d\xa7\x2d\x49\xc3\x38\xe7\xd1\x5f\x26\xa8\x1d\x8d\xcc\xbb\x6b\x2a\x1a\x5f\xb2\xc7\xc2\xda\x2c\x29\x3c\xdf\x55\x56\x23\x15\xc0\x7a\x97\xe8\xa8\xc2\x61\x97\x10\x75\xa5\x78\xbc\x7a\xb0\x73\x3f\xed\x6a\xd9\xce\xf6\x33\xf4\x4f\x85\xc4\xd6\x0b\x4c\x97\xec\x1b\xce\xf3\x2c\x52\xda\x92\xa6\xf5\xec\xc7\x09\x85\xf6\x44\x2e\x71\x0d\xc8\x3a\xc2\x9f\x15\xd6\x6f\x5e\x0e\xdc\x5f\xb5\xc7\x80\x16\x6e\xf7\xee\xd0\x4a\xc4\x54\x17\x8b\x4a\x2c\x05\x55\x4f\x6a\x27\xf1\x27\x94\xf9\xb7\x36\xf1\x47\x0a\x3e\x38\x77\x03\x79\xd9\xec\xa6\x51\xc1\xfc\xd4\x8b\xf6\x53\x82\xf7\x09\x1e\x8d\x32\xe1\xed\x35\xde\x96\xa5\xa2\xd1\xb0\xbd\xc6\x56\xf1\xc3\x55\x3f\x74\x5f\x24\x2f\xbd\xbf\x68\x52\xa4\xa7\x5c\x97\x29\x51\xb2\x1d\x55\xb9\xad\x54\x19\xb1\xd4\xe6\xdc\x21\x53\x16\x70\x9b\xbe\xc9\x1c\xd9\x8b\x1c\xbe\xb2\x23\xa9\x26\x5b\x98\xec\x67\xfc\x4b\xeb\x52\x79\x64\xd4\x1f\xd3\x5d\x39\x36\xec\xb8\x01\x2b\xdf\x10\x10\xae\xbd\x2a\xbf\xe9\x93\xa1\xce\x92\x5f\x76\x15\x28\xec\xf2\x8b\x95\x1b\x9d\x17\x75\x88\xd2\xc9\xcd\xfe\xba\x29\xf9\xff\x39\xb8\xda\xa6\xac\x8d\xb6\x1d\xda\xf0\xd4\x35\xd6\xdb\x9a\xf3\xf1\x1b\xcc\x4f\x34\x0d\x51\x77\x8d\x97\xd4\x77\xc2\x76\xe9\xe9\xea\xe4\x80\x78\xcd\x7b\x95\xdc\x07\xa3\xd2\x2b\x5b\x5d\x0f\xc8\xbf\x29\x76\x54\xc2\x9c\xf3\x4c\x4b\x4b\x8e\x36\xd1\x8d\xe2\xfc\x13\xf6\xf3\x86\xab\x59\x12\xdb\x3c\x43\x48\xea\x02\x6b\x8c\x5e\x11\xdf\x64\xae\xd2\x9d\x8c\x3a\x6b\xac\xd0\x8e\x87\xed\xd4\x7d\xd7\x8c\x05\x64\x6b\xc4\xea\x63\x3e\x32\xd5\x4a\x15\xc7\xf5\x9a\x7c\x50\xe9\x51\xe9\xd1\x0c\xb3\xc6\x97\x98\x1c\xa7\x2d\xdc\xfc\x1e\x7b\x90\xb9\x3d\x0b\xd3\x48\x32\x1d\x4f\x9d\x6e\x69\x35\x3e\x8a\xb7\x9a\x8e\x18\x9e\x45\x5d\x31\x5c\xd4\x8f\x86\x1d\xd3\xb1\x74\xe4\x80\x06\xf5\x0f\xcd\x43\x9f\xed\xca\x11\x75\x82\xeb\x57\x79\xba\x52\x55\xb1\x70\xad\x18\x7c\xa8\xe8\xc7\xd0\x07\xe8\xbb\xdc\xce\x81\x6a\x04\x28\x63\x79\xef\x3e\xd4\xbe\x24\x76\xd7\x07\xac\x3a\xe6\x6a\xfb\x45\x82\x31\xe2\x6d\x0b\x8b\x7c\x39\xb8\xd7\xf1\x8b\x4e\xf1\x9b\xde\x58\xc5\x5e\xed\x09\x32\x31\x79\x2f\x96\xd9\x75\x4c\xe1\xc1\xf2\x9f\x23\x0a\xe8\x8d\xa2\x37\x43\xd3\xe1\x8f\x72\x1d\xfd\x22\xe4\x9f\x8c\xb9\x3d\x1f\x31\x55\x49\xc4\xae\x78\xdc\x9b\x98\xcb\xed\x7e\xc4\x63\x11\xef\x9d\x77\x28\x57\x83\xb7\x38\xd8\x8c\x60\x3f\x2f\xeb\x03\xf6\xb0\x67\x99\x69\x3e\xdf\x65\xd9\x4e\x9d\xaf\x70\xb0\xfc\xce\xb0\x1a\xb1\xbc\xe8\xca\xa0\x2b\x6a\x52\xae\xac\xaf\x07\xfd\x5f\xfa\xf7\x1e\x3f\x9c\x77\x52\x6d\xa7\x98\xa0\x8f\x39\xd5\xc6\x26\x47\x45\xbc\x77\xc6\xd0\x16\x06\xef\xb5\x3f\x66\x86\xf8\x45\x5b\xc1\x1c\xb8\x27\xc9\xd8\xc7\x6f\x5c\x76\x57\x7b\x54\x78\xbd\xbc\x60\x70\x37\xc6\x59\x54\xd3\x8f\xc5\x25\xe6\xba\xf6\x4e\xc5\xbf\x4f\xdf\xda\xd5\x4a\x7c\x99\x14\xd0\x31\x91\xb2\x38\x66\x6d\xeb\x3c\x1a\x35\xe2\x59\xd3\x2b\xc6\xc7\xe0\x33\xb6\x6d\xec\x26\x3f\x98\x25\x8f\x97\xeb\x39\x60\xd8\x00\x7c\x5b\x1e\xa4\x79\x29\xda\x5b\xbe\xb8\xff\x06\xb1\xa3\x68\x7a\xef\x36\xd2\xeb\x9c\xa3\xdd\x1c\x4a\x71\x3a\xbe\x73\x39\xf5\x47\xe2\xc7\x36\x3b\xfd\x5a\x8c\xd6\xb9\x95\x79\x21\xe2\xae\xa3\x93\xfd\x3c\xf8\x66\xa3\x90\x17\xe2\xa7\x33\x07\x03\x42\xcf\xd7\xfa\x11\xe1\xb6\xe5\x32\xcd\x14\xf1\xd7\xb2\xca\xbe\x72\x9a\xb2\x50\xd9\x13\x48\x1f\xc9\xc1\x75\x7e\x60\x5c\x49\xf7\x6a\x1f\x60\x05\x27\xee\x6f\x0d\x65\x6f\x88\xc1\x34\x37\x70\x93\x23\x2e\xdb\x6b\x79\x2f\x83\x9f\x5b\x8b\x81\x4b\x7e\xdb\x4d\x4b\x85\xbb\xbc\xc2\x74\xdb\xc5\x9c\xe5\xb7\xd4\x81\xd2\x98\xd2\xcf\x3d\x53\x79\xe6\xc2\xd0\xce\x8f\x7c\x9f\x1c\xcf\xf6\x6b\xfc\x7d\x69\x2f\x5b\x3b\x01\x73\x62\x9b\x33\x4d\x20\x8e\xa9\x76\xb4\x0a\xb9\x11\xb7\x1a\x8f\x8a\x84\x21\x8b\xcc\x27\xc5\xeb\xfc\xa7\x1b\x3a\x24\xa3\x5e\x0e\x2d\x4e\xba\xd7\x05\xad\x9a\x2c\x5b\x5f\x0a\x74\x7e\x90\x4a\x0b\xae\x74\x4c\x94\x3a\xb3\x1f\xb6\x4d\x96\x6e\x48\xdb\xeb\xfc\x47\xfa\x2a\x51\xdc\xd4\x23\x8b\x8f\xc9\xb7\x7b\xca\x8c\x11\x0f\xac\x4c\xd9\xdd\x90\x78\x93\x4a\x9e\xe1\x5f\xa2\x27\xca\x9b\xbd\xfe\xd5\x60\xe4\xc3\x2e\x67\x94\x21\xf2\xff\x95\x5c\xea\x08\xd3\xbc\x2f\xc8\x6f\xab\xd4\x0c\x66\xf3\x5a\xc8\x9a\xfc\x34\x4c\x33\x54\xfd\x3b\x31\xd1\xb1\x5a\xbd\x3b\xc6\xa5\xf1\x9e\x1a\x17\x71\xd0\x82\x50\xcf\x0e\x89\x35\xaa\x54\xdd\xfe\x24\x9d\x44\xb5\xc0\xdb\x4b\x3d\xa8\x2c\x75\x9d\xa2\x68\x52\x18\x4b\x7a\xda\x71\x06\x51\x81\x7b\xab\x43\xff\x6f\x76\xa1\x73\xa7\xbe\x3a\x2d\xb3\x69\xbd\xee\x7c\xa2\xbf\x5d\xa5\x4b\x8f\x99\xd5\x98\xa1\xdd\x18\xb1\xdb\x7c\x5f\x3b\x39\x24\xd9\x38\x4d\x03\xf2\x17\xeb\xa6\xab\x93\xbd\x13\xd4\x49\x2a\x4f\x57\x3f\x45\xae\xe2\x4b\x09\xa7\x6d\xb3\x59\x94\xff\xad\xe5\x9e\xe9\x70\x76\xa8\x73\x82\x71\x3c\x2d\xc2\xf1\xcd\x18\x9f\xe8\x61\xbb\x6e\x10\xc5\xcc\xb4\xf6\xeb\x37\x44\x1c\x30\x17\xeb\x8e\x85\x94\x1a\x00\x6d\xa7\x7f\x87\x56\xa2\x29\xf2\x86\xa9\x4e\xa9\xee\xb8\x66\xc9\x9f\x2b\x6b\x07\x5e\xc1\x8a\x2a\x5a\xda\x3a\xe0\x3f\xab\x77\x58\xae\x21\x0f\xd4\xfd\x4f\x29\x46\xaf\x07\x8f\xf1\x9c\xd8\x53\xf0\x14\x92\x3f\x61\x06\xaa\x03\x72\x97\xa4\xc5\x79\x96\xd4\x52\xa9\xc4\x9f\xa9\x2e\x0c\x13\x75\x2c\xfc\x2b\x67\x0e\xf3\xb3\x17\x85\x3f\xc6\x4b\x1e\x98\x0e\x31\xd6\x64\xb6\x5e\x82\x35\xd4\xcf\xb7\x2c\x43\x64\x80\xcf\x29\xee\xa0\x20\xb0\x1d\xbc\x99\x98\x3e\xe4\x3e\xe2\x46\xfc\x2c\xcc\x28\x84\x4d\xdc\x46\x98\x54\x32\x9f\xb2\x97\xac\x4f\xb9\x46\xff\x43\xf7\x08\xbf\xc6\xee\x66\x8d\x7a\xc1\xf9\x7d\xbc\x3d\xfd\x3e\x0d\x67\x1a\x96\xb6\xfc\x84\x1c\x84\x38\xcc\x55\xb0\x2b\xf0\x49\x8a\x10\xe4\x7c\x64\x1f\x97\x87\x16\x60\xa0\xc4\x70\xdc\x0c\xbc\x3f\x64\x0e\xe1\x3a\x69\x7e\xf1\x41\xf2\x6f\x6a\x42\x8a\x9d\x8e\x63\x00\xe1\x5b\xd8\xfe\xec\x8b\x5e\x70\x7e\x06\x1f\xdc\xcb\xa9\xc5\x22\xbb\x9c\xb0\xfa\x6d\xe8\x3e\xe3\x75\xc8\x52\xac\x43\x76\x0f\xd6\x8c\x1f\xe2\x54\x23\x93\x89\x7f\x13\xe2\x31\x0b\x28\xf3\xc0\xb9\x78\x6f\x1a\xa6\x38\x9c\xa4\x60\xdc\x4f\xf1\xa1\x45\xb0\x49\xe1\x72\xd6\x2a\xde\x02\x2f\x09\x8f\x01\xbc\xe8\xc6\x56\x21\x89\x9d\x4d\xc3\x35\x57\xc9\x2e\x06\x6c\x3d\x82\xa2\x95\x76\x43\x3c\x69\xd3\xd8\xb9\xf0\x69\xf4\x5e\x7c\x39\xca\x8d\x99\xd4\x60\xc0\x52\x58\xef\x8b\xda\x89\xf3\x38\x07\x93\x8f\x50\x7e\xf2\x5a\xc3\x09\xcc\x95\x80\xca\x6b\x0f\xb7\x45\xd8\xd6\xd9\x5a\xce\x64\xf9\x3b\xe6\x57\x2d\x62\x4f\xd3\x4f\xac\xb9\xcd\xfe\x5b\x82\xab\xbf\xcc\x39\xc0\x4a\x85\x8c\x73\xf7\xe0\x98\x88\x2c\xde\xe6\xfa\x1b\xe8\x1b\xfc\x1d\x45\x0b\xf1\xdb\x81\xb3\xc9\x24\xf2\x4d\xc1\x93\x70\x34\x23\x4c\x34\xc3\xeb\x37\xe7\xb2\x38\xaf\x7d\x65\x71\xb7\xac\xa4\xf1\x4c\x59\xb3\x2c\x43\xf3\xac\x72\x9d\x2c\x58\xa4\xa9\x79\x25\x5b\xc1\xe8\x6e\xa8\x96\xf9\x63\x5d\xa0\x9f\x64\xee\x75\xa3\xc8\x4b\xb2\xf9\x85\x0d\xd8\xaf\xd2\x3f\xc9\x73\x49\x58\xe9\xe3\x70\x38\x7d\x8e\xf4\x9c\x37\x8c\xfd\x59\xba\xaf\xe5\x41\x81\xc2\x12\x60\xd9\x55\x7c\xc6\xbc\x5c\x3d\xa3\xdc\xcf\x34\x55\x70\xbb\xaa\xd7\x38\x95\xbe\xaa\x2e\xdf\x30\x19\xfd\x04\x12\xa0\x7b\x5e\x7b\x1f\x91\xa9\xdd\x55\xb0\x0b\xb3\x49\x83\x49\xfa\x1f\x11\xac\xfa\x18\x0e\xa1\xe5\x29\xe5\xde\x5b\xd9\x6c\xc5\x34\x67\x41\x1e\xa3\x23\xd4\x1c\x51\x78\xa9\x8d\xae\x6c\x2e\x2d\x6d\x71\x02\xea\x8a\x4f\xcd\xeb\xa9\x9f\x6a\xce\x39\xd6\xa3\x5e\x37\x5c\xb5\xa9\x6a\x57\xc0\x5d\xad\x91\x05\xe9\xe8\x03\xa6\x91\xa4\x56\x42\xab\xfe\x45\x38\x9b\x7a\x5c\x3b\xcd\xfb\x3f\x76\x88\x6a\x56\xf3\x50\xee\x89\xbe\x32\x53\x6f\xa1\x4f\x4f\x88\x72\x41\x49\x5f\xe7\x0b\xe0\xaf\x8a\xd2\x76\x3b\x55\x57\x03\x6a\xf5\x42\x39\x1b\x72\x9a\x25\x35\xaf\x61\xdd\xf6\xa1\x82\x55\xe8\x4a\xab\x22\xa9\x87\x90\x62\xf2\x09\x6f\xa4\x2a\x74\x06\x9f\x10\xf6\x34\xd5\xf9\xe6\xd8\xdc\xbc\x61\xa5\x29\xbd\xa0\x63\x70\xb6\xe2\x78\xc9\xc2\x3e\x1a\xff\x54\xf9\x89\xee\x93\xd4\x82\xea\x0d\x1d\xef\x51\xd4\xfa\x93\xad\xcf\x6a\x6e\xc3\x56\x34\xdb\x0b\x56\xa1\x5e\xd9\x9e\x24\x9d\xc4\xdf\x36\xbf\x0f\x3f\x4c\x8d\xd4\x6f\xf1\xa1\xb0\x4e\xaa\x41\xbd\x9e\x88\x23\x15\xed\xce\x40\x14\xa8\x7a\xbb\x71\x0b\xfa\x68\xdd\x0e\xd9\x46\x2c\x00\x7e\xc5\x71\xc1\x43\xe1\x29\xf8\x3f\x44\x2a\xaa\x07\xbc\x90\xbc\x0f\x17\x58\xf4\x93\x86\x20\xcd\x49\x59\xc4\x4c\xa5\xcd\x0e\xe7\x73\x84\xac\x50\x2f\x32\xb0\x84\x67\xee\x29\x82\x7d\xaf\x01\x35\x63\x11\xad\x75\x3f\x0c\xff\xa1\x4a\xc1\xdb\x64\xf3\x30\x20\x58\x2f\xdb\x86\x4b\x45\x6e\xc6\x1b\x09\x7c\xcc\xc9\x86\xad\xa4\x57\x84\x29\x45\x1b\xa9\xdb\xc9\xd6\xe4\xeb\x8c\x3d\xf4\xa8\xf0\x7a\xce\x02\xd6\x6f\x2f\x2c\xff\x3c\x7f\x62\x37\x15\x1a\x57\xff\xae\xa9\x1d\xf6\x07\x82\x33\x64\x22\x1e\xc1\x6e\x48\x09\xa8\xb7\x48\x29\x7b\x2a\xd6\x13\x93\x81\x5f\x88\x17\xe0\x17\x36\x14\x91\xe6\x93\xa6\x15\x41\x29\x3f\xa9\x09\xc9\xed\x8c\x15\x0c\x43\x78\x22\xbb\x93\xfd\xc3\x8b\xcc\xa7\xf3\xfb\x3b\x7b\xea\x7f\x20\xb3\xec\x9f\x21\x33\xd1\x35\xba\x73\xb0\x68\x6c\xa9\xc4\x17\x21\xc2\x13\x99\x63\xa8\x31\x62\x1f\xce\x1f\x6b\x22\x3f\xad\xb7\x12\xd0\xb4\x9c\xc2\xeb\x64\x1d\xe3\x72\x72\x34\x6d\x9c\xcd\x0a\x77\x65\xf5\xf3\xd6\x78\xb5\xf0\x06\x04\xab\xda\x4f\xd7\xbc\x20\xae\xb2\x95\xd7\x87\x91\x76\x6a\xa1\xe0\x26\x4a\xa8\xe8\x19\x6c\x11\x75\x17\xe3\x1f\xc4\x61\x7a\x0d\x36\x0d\xdd\xc3\x9c\x58\x77\x03\xb7\x87\x75\xbc\x30\x9f\xe4\xca\x19\x4c\xba\x4f\x3d\xc6\x73\x86\xcf\x64\x0e\x02\x3d\x5e\xd7\xb9\x17\x85\x57\x5a\xbf\x56\xcd\x60\x5a\xac\x07\x6a\x14\x2c\xa5\xfa\x47\xbd\x27\x1b\x2d\xdc\x0a\xbe\xca\x29\xa7\xdf\x87\xed\xe0\xd6\x62\x50\xc8\x4b\x3c\x58\x9d\x2f\x76\x25\x9f\x53\x70\x9a\x70\x14\xe8\x4b\xb2\x53\x06\x04\x37\xc2\x27\x32\x76\x8a\x96\x7a\x2f\xe3\xce\x12\xf3\x9c\x43\x65\x09\x52\xa4\xd9\x5e\x39\x4b\x2a\x56\xfe\xa8\xfe\x28\xd5\x00\x4f\xea\x3e\x4a\x0d\xb4\x3c\x88\xb7\xb4\x0b\xbd\x0c\xae\x95\x8e\xd4\xae\x44\xaf\x92\x6e\x2f\x70\xc5\xcf\x91\x1e\x48\x4a\x21\x47\x49\xf7\x87\x2f\xa4\x5b\xa4\xa7\xbd\x6d\x9c\x00\xe9\xc3\x26\x78\x71\x92\xe9\x97\xd1\x5a\x96\x6b\x5a\xa2\x88\xae\x24\x1b\x57\xf1\xf3\x6a\x36\x1a\x62\x29\x0f\x1b\x5c\xf5\xf9\xc8\xb7\xd0\x23\xba\xec\x9a\x14\x64\xaf\x36\x22\x5f\x8c\x3d\xa1\xfe\x93\xf8\x91\x14\xa8\xda\x12\xbe\x84\x76\x52\x89\xf5\x7e\xc5\xee\x51\x2c\xb1\xef\x2d\x74\x6d\x3b\xa3\xff\x55\x52\xd0\x1a\x25\xdb\x5f\xde\xe1\x94\x72\xbf\x55\x4f\x6c\x5a\x4b\xfe\x5f\x5d\xab\xfd\x08\xe2\x37\x84\xd0\xb8\xa7\xda\x84\xe0\x5a\x34\xf9\xf3\x31\x57\x4d\x5e\x89\xd7\x89\x68\xbd\x32\x3c\x9c\x16\xaf\xb9\xe0\x13\xcb\x2e\x55\x4d\xb6\x7b\x15\x60\x7b\xae\xe8\xc9\xc5\x6d\x5d\x7f\xcb\x22\xca\xde\x74\xec\xe1\x4a\xab\x1a\xda\x00\x72\x59\xed\x7f\x2d\xde\x88\x4d\xe0\x7b\x4d\x3d\xd5\x55\xf0\x6f\xb6\x57\x79\x9f\x31\x78\xcb\x9b\xc4\xbb\xc4\x59\xc6\xcd\xe1\xf9\xd4\x2f\xba\x1c\x1f\x2c\xdb\x4f\x75\xc0\xb6\x2f\xff\xc9\xe0\x7b\xfd\x9c\xe2\xb9\xfd\xfd\xd2\xbb\x65\x0d\xbd\x21\xdc\x98\xca\xd1\xae\x0e\xf2\xd2\x5a\x76\xfb\x63\x84\x16\x5c\xd3\xf2\xad\x3a\x0b\x2e\x6c\x3a\x97\xf7\x13\xfd\xcd\x96\x99\x34\x91\x30\x60\xe6\x84\x8b\xa8\xbd\x7a\xac\xcf\x20\xeb\xb1\x7a\x45\x67\x28\xba\xb0\xa2\xcf\xae\xc5\x58\xab\xb7\xe9\xc0\xd8\x0f\x75\x9b\xc5\x23\x78\x16\xf8\x09\x13\x4b\x0c\x82\xc7\x62\xfb\xc9\xf3\x50\x6d\xf5\x0b\xa8\xc1\xb8\x80\xc2\x2a\xba\x93\xf4\x57\xd2\x15\x56\x02\x6d\x49\xd8\x4e\xee\x1a\x56\xbe\x57\x2c\xa0\xe3\x9d\xec\x40\x21\x0d\x35\x3e\xb6\x8b\xa8\x1f\x75\xff\x68\x77\x60\x74\xe0\x26\xf1\x22\x5c\x14\x4c\xcf\x78\x4a\x58\x84\x6c\xc1\x46\x92\x3c\x31\x5b\xeb\x76\x50\x60\xf8\x2f\x85\xb3\x69\x63\x64\x4d\x52\x1b\x73\x37\x3d\x36\xac\x9d\x73\x91\xbd\xc4\x2b\x0a\x48\xe3\x47\xb6\x5b\xe1\xe7\xea\x4f\xda\x66\x23\xb1\x90\x78\xed\x14\xb4\x07\x6c\x44\xc4\xc3\x7c\x42\xd6\x32\xc0\xb8\x6f\x18\x6f\xcc\x21\xa2\x3f\x6e\xbc\xae\x92\x6c\x24\xfe\x5b\x70\x8c\x16\x4f\x0d\x4a\x42\x33\xfd\x19\xba\x30\x25\x07\xcc\x99\xe3\x95\xce\x7f\xc9\xbf\xd4\xda\x0d\xd9\x8a\x78\x6b\x05\xc3\x74\xe8\x99\x6a\x1b\x42\x86\x9d\x27\x8c\x41\x59\xf1\x01\xf4\x62\xcc\x55\x22\x1a\x7d\x1b\x9f\x4e\xde\x52\xdb\x49\x7c\x41\x73\x2f\x48\xa6\x5c\x62\xec\x48\x9a\x41\xff\xcd\xc6\x87\x51\xd9\x04\x5e\x9a\x17\x83\xef\x23\x28\x76\xfe\xaa\xb7\x12\xb6\x98\x2f\x83\x77\x90\xf2\x55\xfe\xd0\x0f\xe4\x6b\xc0\x1f\x44\x24\x15\x4c\xcb\x42\x6d\xa6\x4f\x43\x7d\xc5\x42\x18\xfb\x6b\x9e\x12\xd2\x58\x86\xfc\xfd\x64\x3c\x47\x94\xb8\x8f\x76\x85\x27\x0f\x43\xb1\x68\xc0\xa0\xd7\x4e\x5e\x99\xf0\x63\x73\x40\xcd\x31\xc6\xb8\x29\xae\xde\x95\xf9\x43\x71\x04\xdc\xc8\x1a\xe3\x8f\x42\x7f\xb2\x1f\x51\xd3\x10\xeb\x39\xef\x51\x6e\x68\x07\x6f\x4a\x4d\x14\x6e\x3b\x3f\x38\x3f\x85\xb4\x18\x20\x25\xf2\xa9\xbb\x04\xbb\xc2\xe0\x4c\x85\x68\xa1\xd7\x7f\x5c\xb3\xb8\xc9\xfe\xbd\xe2\x8f\x84\x69\x08\xae\x5e\x27\xd9\x2a\xbb\x5b\x87\x95\xdc\xe1\x2d\x00\xfb\x4b\x5e\x91\xf7\xc3\x7c\xa5\xb3\x11\x77\x90\x55\xd2\x80\xea\x64\xcc\x21\x69\x5e\x5e\x07\x01\x23\x25\x25\x86\x52\xf2\xa4\x9a\x30\x1e\x03\x2c\xdd\xee\x2d\xe0\xac\x93\xbe\x6b\xdc\x51\xe6\x6d\x3c\xaf\x8b\xa9\xf8\x64\xfc\x4b\x1a\x5e\xfd\xd4\x90\xc6\x51\xd7\xbd\xd0\xa3\x48\x10\xc8\x0a\x9d\x1e\xbe\x17\xde\xac\xed\xaa\x42\xa0\x93\x34\x7d\x79\xd3\xf0\x5e\x6a\x4b\xc2\x0b\x72\xb2\x0a\x16\x26\xa5\xdb\x94\x71\xde\xd7\x38\xee\x8a\x85\x96\xaf\xc5\x6f\x5b\x1b\x34\xcd\x65\x9f\x9d\xef\xc4\x1b\xaa\x96\x36\xc3\xd8\x31\xb5\x89\x8e\x2e\x62\x6a\x43\xaf\xed\x22\xec\x2a\x2c\xc9\xfa\x4f\xe5\x4e\xd4\x62\xf3\xd5\xdc\x4e\x5c\x88\xd1\x90\x70\x96\x24\xd0\x2f\x0a\xeb\xa0\x4f\xd6\xe8\x7c\xfc\xd8\xa7\x94\x63\x16\x7c\x71\x54\x77\xbe\x66\x6a\x59\x6a\x27\x4f\xec\x5a\x89\x6f\x97\xb0\x0e\xd7\x38\x5b\x6b\x08\xf7\x1a\xa6\x38\x5d\x60\x2a\xe8\x16\xc7\xff\x2a\xa5\xc8\x66\xdb\xca\x5c\x05\xf6\xa8\x25\x37\xe1\x32\xc9\xcb\x08\x0a\xdb\x49\x3b\xa4\xfd\xee\x53\xc6\x6e\x56\xf5\x5b\xe6\x14\xad\x1f\xa8\x54\x0f\x95\x6e\xeb\x0b\x17\xed\xaf\xb8\xd9\xfd\x98\xc5\xae\x99\xd6\x89\x23\x0c\xd5\xf3\xda\xce\xc1\x60\xd0\x80\x96\xc9\x95\x34\xe4\x52\xc7\xcf\x5c\x1d\xb6\xa4\xb1\x2d\x61\x9c\xb8\xdb\xf4\x21\xec\x29\x0d\xa3\x5f\xe2\xd3\xc8\x2e\x52\xcf\x6e\xca\x26\xc4\x55\x6c\x32\x2e\x22\xc6\x57\xef\x93\xd3\x48\x35\x75\x7b\x78\x15\xe4\x11\xf0\x2d\xf2\x66\xaa\x37\xdc\x07\xd1\x48\xdb\x85\x92\x55\x6d\x63\x08\x71\x8b\x73\x0f\xb0\xd8\xc4\xaf\xf1\xcf\x38\x5b\x69\xd3\x43\x8e\xf2\x23\x58\xf5\x9e\x30\xc1\x1f\xde\x2f\x07\x1e\xb7\xa5\xfa\x8f\x01\x8e\x1f\xad\x3b\x23\x7b\x4e\x9c\x0c\x56\x72\x2f\x91\x04\x30\x18\x39\x9a\xb2\x14\x89\x42\x04\x50\x2f\x61\x24\x55\x0d\xf4\xff\xe1\xcf\xe5\x72\x99\x37\xc8\x90\xf8\xfd\x1c\x10\xdd\x3d\x64\x3b\xef\x32\x7b\xb9\x27\x52\x70\x80\x0f\xb1\x4b\xb1\xab\xea\x79\xfa\x21\x1c\x14\xfc\x4b\x56\x80\xdf\x05\xe3\x72\xd3\x88\x05\xc8\xb9\xa4\xff\x91\xa7\xa3\x2f\xc3\x0f\x52\x9e\xe0\xd6\x56\x4d\xa6\x8d\x11\x37\xe7\x46\x32\x43\x28\x9f\xe2\x2d\xec\xf5\x0c\x44\xc8\x5a\x1e\x9a\x33\xdd\x93\x29\xc0\xf3\x3f\x34\x5e\x45\x85\x22\xe0\x3a\x17\x74\x0b\x8a\x23\x79\x8a\x5d\x89\xe1\x72\x16\xe0\x7e\xe1\xda\x89\xfb\x09\x5f\x09\x8f\x61\x2f\xc8\x0b\xc8\xd1\x95\x35\xd4\x5a\xea\x8e\x9c\x2d\xf4\xeb\x0c\x54\x7c\x16\xcb\xcc\x5e\x1d\xd2\xc9\x05\x78\x41\x9e\x5b\x81\x75\x02\x8c\xb5\x10\xee\x83\x7f\xa7\xd9\x89\x38\x43\x54\x8a\xed\xa8\x76\xf2\x04\xd6\x53\xcc\x16\x4a\x37\x61\x37\xee\x05\xad\x1e\x36\x83\x98\xc8\xf0\xae\xe8\x27\x1f\x66\x4d\xcd\x89\xa5\xf1\x39\x8b\xe2\x67\x32\x49\xbc\xb8\x90\x5e\x8e\x1e\x50\x7a\x7e\xe1\x3f\x15\x4d\x34\x5f\x81\x44\xd0\xbf\xa9\xb3\x61\x01\x8c\x7f\x45\xd9\x88\x58\xe6\x5d\xe6\x01\x94\x8a\xf5\x06\xbf\x1b\x33\xce\x59\x02\x0d\xc7\xcb\xb8\xe9\xe5\x9f\x48\x09\x3c\x55\xf6\x71\x6a\x28\xff\x79\xdc\x35\x46\xb5\xa0\x36\x64\x84\xdd\x2b\x7c\xea\x55\xc0\xf7\x12\x77\x19\x21\x75\x77\x45\x27\x94\xde\x0d\x5f\xc4\xee\x02\x1c\x34\x45\x0c\x63\x2c\x86\x5f\x14\xb7\xe0\xf2\x50\x0a\xf1\x03\xc8\x64\x6c\xb5\xc4\xab\x7c\x1e\xa1\x4e\x82\xcd\x0e\x21\xeb\x25\xdb\xe2\x9a\x69\xef\xa5\x93\x42\x8e\xb3\x44\x52\x8c\xd7\x51\x5e\xbc\xf4\xb1\xbe\xb2\x7a\xbd\xbe\x55\x9e\x5d\x97\xa8\xfb\xcd\x3f\xd0\xf0\x48\x57\x49\x6b\x83\x0e\x6b\xd7\x62\x27\x22\x6c\x9a\xdf\x0d\x9f\xd0\x03\x9a\xd4\xb2\x14\xdc\x13\x35\x2f\x6b\x80\x94\xa7\x72\xc6\xd5\x52\x9f\x29\xd7\x85\x5c\x64\x6e\x51\x9c\xf4\x76\xe3\x0e\xc9\x5f\x68\x7b\x2a\x0f\x35\xaf\x97\x9e\xae\xa9\x6d\x22\xf0\xd0\xf5\x8b\x1c\x93\xa8\x58\xf0\x6f\x9b\x00\xfd\x15\x3e\xcf\xfa\xa4\xc1\x15\x55\x64\x89\x28\x6d\xc7\x1e\x34\xc1\xb3\xd2\x88\x95\x86\xf2\xb8\x18\xea\x0a\x9d\x7f\xc8\x4b\xa6\x9b\xfa\xad\x37\x91\x9b\xa2\x5c\xaf\x19\xab\x5c\xda\x51\x24\x0d\xab\xde\xd8\xb6\x9d\xfb\xac\x0e\xd1\xf2\x81\xf2\x05\x5c\xe1\x9c\x8e\x6e\x85\x31\x9a\xa6\xd6\x5f\x46\x1e\xb4\x3d\x29\xc5\x62\x93\xac\x4d\x59\x81\x84\x97\xa6\x6f\x71\xf1\x94\xd3\x86\xf0\x90\xff\x18\xd7\xb4\xc5\xde\xcd\xdc\x99\xaa\x3a\x0d\xa1\xa2\xa3\xd7\x45\x72\xbc\xda\xbb\x3b\x8e\xeb\xa8\x3d\xd7\x19\x46\xd9\xde\x70\xa8\xed\x33\x1a\x05\x7d\xd8\xd2\x52\xbf\x01\x09\x6a\x5e\x5c\x5a\x85\xd9\x6f\xaf\xc9\x5a\x4d\x60\x58\xe3\xe3\x6a\x28\x10\xe3\xe3\xd0\x40\x06\x4f\x87\xf1\xbe\xcc\xd9\xa3\x3a\x6d\xac\xa6\x8e\x57\xec\x52\x5c\xa6\x0d\x57\xef\x05\x4e\xd0\x15\x75\xdb\xe9\xd5\x0c\x21\xf8\x34\x16\xcb\x74\xc2\x67\x82\x27\xb3\x46\x51\xf8\xd2\x77\x9c\x20\xdc\xa4\xcc\x01\xee\x09\xe2\xbd\x98\x0e\xbe\x83\xfa\x3e\x88\x27\x70\xb2\x6a\x3c\xd6\x88\x6e\xf3\x97\x18\x36\x50\x1a\xaa\x5f\x28\x22\xa9\x69\x75\x03\x40\x0a\x2d\x0b\x5c\x47\xbb\x46\x47\xc0\xc2\x30\x63\x8c\x2e\x64\x58\x43\x07\xf3\x33\xa6\xb0\xb4\x85\xcd\xc6\xf7\x67\xe2\xb8\x61\xe4\x88\x18\x3e\xdf\x9d\xf6\x39\x88\x26\x48\x64\x4f\xf3\x48\x12\x75\xf1\xf1\xfa\x2f\xa4\x13\xf5\x29\x72\x23\xf9\x2e\x78\x0f\x7f\x88\x3a\x1b\x16\x40\xcb\xa6\x65\x20\x0e\x61\xa8\xf4\x6e\xb4\xac\x21\x8c\xb9\x14\x07\x2b\x4d\x62\xed\x24\x32\x32\x83\x38\x66\xca\xff\x62\x6a\x79\x6d\x8c\xd0\x20\x22\x70\x83\xfd\xca\xa3\x44\x54\xc2\x7f\xaf\x4b\xc7\xff\x80\x8f\xca\x66\x10\x63\x91\xcf\x79\x99\xa4\x56\xf4\x0b\xea\x12\xca\x42\xdc\x7c\x34\x99\xba\x91\x00\xad\xaf\xa4\x43\x48\xc7\x4b\xcc\xcc\x28\x6a\x45\xc6\x76\x76\x06\x63\x56\x8c\x2f\x57\xc3\x7a\x19\x44\xe6\x8f\x73\x7f\x7b\x18\x84\x6d\x82\x2a\xcd\x38\x76\x32\xee\x83\xe4\x30\x4e\x43\xe8\xe2\xba\x10\x56\x91\x42\x28\x33\x89\xf7\xc8\xb7\x50\x32\xf2\x56\xea\x60\x9d\x89\xda\x4e\x97\x15\x8f\xd1\xd7\x31\x25\x19\xf9\xcc\x71\x76\x4f\xf4\x57\x0e\x89\xfb\x30\x48\xc4\x9f\x0a\xe4\x79\xdc\x13\x5c\x15\x8e\xa9\x19\x28\x02\x6d\xb3\x98\x8e\x99\x4d\xdf\xcf\x1e\xc7\xde\x64\x1c\x22\x4f\xc4\x1f\x67\x3e\x43\xb6\x11\x2f\xb0\xfd\x6b\xcf\x90\xc7\x38\xf4\xe2\x32\x5a\x38\xf7\x6a\xfa\x0b\xc6\x56\x7e\x65\xf4\x25\x36\x18\x78\x15\x64\xe3\x79\x09\x3b\x3d\x23\x05\xf3\xc5\x52\x25\x11\x36\x2e\x9c\x29\x94\x23\x9e\x0b\x39\xac\x08\xd4\x98\xf0\x1c\x91\x85\x75\x11\xad\x40\x64\xe1\xb1\x22\x4b\xcd\x36\xe2\x79\xd1\xd7\x22\x11\xa5\x5a\x4c\x4c\x87\xd3\x17\x8a\x5f\x47\x77\x32\x7f\x48\xc8\x41\xeb\x39\x7f\xa4\x13\x3c\x7b\x80\x60\xe9\x36\x79\x25\x64\x95\xb6\x1a\xd8\x09\x2b\xd6\x5c\x64\x74\x23\x6c\x9a\x44\xc2\x3c\xd4\xb8\xfa\x00\x7c\x31\x96\xa7\x4e\xa9\xde\x41\x70\x51\xed\x2e\xdc\x43\x7a\xac\xf2\x4f\xfb\x87\x7a\x4d\x69\x8a\xc6\x33\xfe\x55\x3c\x09\x3a\xc2\x09\x50\xa4\x78\x4d\xe6\x2b\xe5\x23\xd2\x7d\x0d\x53\xed\x97\xf8\x85\x10\x94\x6d\x37\xbd\x01\xf6\x77\x23\x0d\xf7\x09\x59\x63\xf5\x80\xf9\xa1\x7f\x9b\x0f\x56\xbd\xc7\x8d\x9a\x0a\x0a\xfd\x88\x27\x0c\x07\xd3\x54\x94\x67\xfa\xa9\xd1\xe9\x8c\xd5\xda\x80\xa0\x6b\xec\x26\x75\x8a\x57\x01\x7f\x99\xb2\x5c\x1a\x53\x5f\xde\x9a\xc0\xbb\x08\xde\xec\x3c\x43\xfb\x07\x16\xd8\x1c\x80\xb3\x20\xb6\x3b\xf8\xd0\x2b\x68\xb8\x6d\x7b\xd5\x66\x5c\xb2\xf5\x7a\xc1\x57\x62\xb6\xf9\x52\x1a\x99\xc2\x37\x5a\xa2\x53\xe9\xd7\xf5\x1e\x41\xcf\xd8\x79\x9a\x26\x2f\x36\xef\x8e\xf2\x8f\xe4\x7e\xdd\x99\xce\xbb\x3c\x3e\xd8\xad\xc3\x97\x66\x87\x3a\xdb\x12\x70\xc5\x08\xcf\x96\x14\xe8\x00\xea\x62\xb3\x4f\x55\x23\x76\xa7\xfd\x45\xc1\x2b\xc2\xa9\x46\x20\x8d\x46\x99\x6c\x3e\x10\x5d\x4d\x27\x1a\x8e\x05\xcf\x64\xbd\xd6\xae\xf5\xda\xc0\x93\xa9\x58\x0a\x1f\x8e\x6f\xc5\x5b\xc1\x1c\x4e\x5b\xf5\x5d\x46\x07\x37\xa0\xee\x04\xfe\x09\xf7\x08\xf8\x22\x6c\x37\x8f\x05\x9f\x55\xed\xc9\x4f\x42\x91\x0b\x1e\x01\xfe\xb8\xd9\xa9\xb5\x82\x32\xe2\xc3\x28\x7f\xe1\x30\xf5\x7d\xc0\x62\xb1\x07\x0b\xe7\xf6\x5a\x72\x91\x1f\x21\x2f\x63\x1d\xad\x7e\x00\x60\xd9\x55\x75\x0e\xc6\x32\xce\x64\x70\x3a\x1e\xc5\xf9\x1f\x6c\x01\x2c\x99\xab\x47\xce\xaf\xda\xcd\x63\x62\xa2\x0a\x0c\x7c\x01\xde\x9e\xea\x05\x1c\x23\x7b\x46\xcd\x17\x82\x68\x4f\x03\x16\x89\x4e\xb3\xa7\xba\xfd\x27\x71\xf0\xb9\x32\x2e\x13\x51\xf7\x9d\xbf\x9b\x35\x1f\xcc\xa1\xeb\x58\x77\xa1\x6f\x71\x77\xd8\x1b\x10\x32\xe8\x61\x4e\x1b\x3a\xb3\x2a\x8f\xdb\x8b\x0b\x2d\x58\xcd\x3b\x49\x2c\x48\x79\x0b\x04\x50\x1c\xa0\x5f\x82\x5d\x8c\x39\x01\x4b\x45\x28\xf6\x5d\x77\x17\x49\x16\xff\x93\x74\x02\x6d\x10\xde\xc0\xcb\xa7\xab\x91\x68\x5a\x20\x43\x83\x46\x61\x37\x30\x9d\x58\x07\xe4\x20\xeb\x28\xfe\x4d\x25\x95\xfd\x9b\x84\xc8\x97\x70\x6b\xa8\x53\x52\x44\xbc\x37\xf4\xe3\xa0\xdb\xc0\x5a\xd6\xd6\x80\x00\xa1\x9a\xfb\xc0\x1d\x21\xb6\x08\x0a\xc5\xcd\xe4\xe3\xb8\xa5\x5c\x77\xca\x0b\xfc\x09\xaa\x1f\x2d\x84\x08\xc1\x1c\xa7\x73\xc8\xae\xe0\x37\x8c\x5b\x94\xaf\x15\x47\x58\x79\xb4\xb7\x79\x9f\xd8\x7f\x33\x27\xa7\x04\x71\xfb\xd9\x09\xa0\xc3\x7c\x07\xd7\x16\x90\x23\x68\x03\x5c\xdd\xf7\x89\xce\x0a\x6f\x8b\x28\xc4\xd9\x54\x0c\x67\x0a\x89\x47\xd3\x52\x42\xc9\xef\xe9\xbd\xe8\xbb\x54\x2a\xe3\x11\xd8\x93\x3e\x9d\x95\x58\xb1\x94\xb1\x8e\x3d\x9c\x47\x61\xe1\xb8\x01\xc9\xf7\x38\x18\xde\x79\xd0\x3a\x9e\x06\x50\x06\x30\x81\xf5\x42\xa8\x47\x88\xf0\x8b\x18\x27\x60\xe3\xa6\x02\x31\xac\x28\x3c\x1f\xd8\x4d\xd2\x10\x17\x08\x82\x51\x0c\xd2\x05\xc1\x86\xfa\x57\x94\x41\x61\x7c\xf9\x32\x9a\x59\x78\x25\x77\x3d\xa3\x51\x44\x4f\x46\xb3\x46\xc5\x2b\x41\x4a\x6e\x80\xf8\x4e\x80\x9d\xaf\x93\xf4\x7a\x18\x85\x4b\xa5\x4a\xbe\x16\xbd\x4c\x75\x94\xa1\xc7\xdc\x53\xd1\x88\xcb\x71\x7b\x54\x8b\x90\x81\x84\xb5\xca\x13\x75\x7f\x93\x76\x2b\x81\xb2\x70\xca\x1d\x65\x60\xce\x77\xba\x87\xe2\x5a\xd2\x27\xa6\x51\x21\x05\xd5\x71\xdc\x14\x1e\x01\xc3\xbc\xed\xf2\x9d\x1e\x0f\x04\x04\x39\x8c\x17\x8c\xf4\xb6\x5e\xa4\xe7\xa2\x67\x5b\x6e\xe0\x3f\x60\xff\x32\x1f\x47\x84\xe2\x97\x9b\x36\xd4\xcd\x24\xa6\x1b\xb5\xa5\x5a\x72\x93\xa1\x3e\x47\x44\x9b\xae\x5f\x9c\xd4\xc3\xe8\xd7\x6e\x01\xad\x66\x43\x34\x81\x01\xdb\x79\x6e\x2a\x8b\xa7\x37\xf0\x51\xf1\x99\xbb\x13\x81\x68\xfa\x46\xfb\x1b\x55\xe9\xd8\x84\x97\x63\xd0\xf6\x74\xf8\x15\x1c\xa7\xf1\x72\xed\x31\xc2\x88\xb5\xa0\xb4\x94\x3c\xc3\xbc\x27\xa7\x86\x6a\x32\x4d\x48\xd2\x31\xa2\x0d\x2e\xa0\x20\xf6\x24\xdd\xb4\x80\x43\xdc\x0b\xea\x9b\x9e\x69\xc0\x56\x65\x0f\x17\x05\x3f\xd3\x86\xa2\x69\x91\x87\x5b\xfe\xc6\xaf\x41\x5f\x77\xfa\xc1\x5b\xb1\x4f\x9a\x88\xb5\x9d\x84\x25\x76\x7b\x69\x1c\x49\xda\x38\x92\x53\x44\x9d\x63\x31\x27\x19\xe9\x47\x4d\x91\xa0\x38\x56\x8b\xbe\x27\xe0\x1e\x97\xa0\x79\xe1\xc9\x02\x2a\x54\x6e\xac\x65\x52\x72\xe5\x1a\x72\x85\x34\xba\x66\x15\x66\xae\x34\xb0\x7e\x1e\x04\x2d\x0d\x84\xcc\xad\x2a\x97\xc6\xc3\x33\x0a\x5f\x49\xeb\x50\x43\x19\xef\xa5\x06\x5c\x5e\xdc\x23\xe9\x7d\x52\x48\x78\xb2\xac\x90\x56\xbc\x72\x9f\xec\x22\xeb\x92\x6b\xba\x1c\xe0\xf7\x30\x07\xc4\xff\x55\xff\x4b\x7a\x2c\xfe\x52\x37\x84\x5e\x2f\x99\x03\xae\x86\x4c\x94\x84\xc0\x3c\x2b\xbf\x49\xea\x91\xae\x85\x5d\x92\x66\x4c\x66\xc6\x0e\xc9\x63\xfc\xc6\xb8\x7d\xd2\x32\x72\x7e\x78\xb4\xf4\x2e\xdd\x67\xe5\x09\x19\x97\x5d\xea\x0a\x96\xc7\xf1\xcf\x31\xfd\x44\x8d\x75\xd7\x48\x18\xd1\x2e\x70\x09\x3a\x4a\xf4\x0e\x7a\x06\xdc\x2a\x0e\x44\x34\x54\x3a\xc5\x2c\xf4\xca\xc2\x7c\xf1\x59\xdc\xf2\x0c\xa6\x24\x9c\x98\x19\xd7\x26\xd9\x47\xe9\x0d\x0f\x93\x42\x19\xe1\x2b\x2f\xc9\x16\x70\xe6\xba\x0a\x64\xaf\x01\x10\x63\x3a\xf0\x00\x76\x91\x58\x24\xc8\x46\x5c\x45\x05\x09\x8e\xa0\x6e\x37\x6c\x14\x86\x62\x17\x57\x8c\x0a\xd7\xe3\x45\x05\xfd\xa2\x70\xd2\xcc\xf4\x31\xd1\x09\xca\xc9\xb8\x7c\xb1\x84\xde\x19\xee\x2b\xa9\x60\x0d\xaf\x7c\x27\x8d\xe4\x8e\xb9\x9e\x90\x45\x0a\x68\xb4\x6b\x3c\x01\xe6\x3e\x21\x96\xf7\x0b\xd7\x8f\x2c\xe2\x6b\x08\xf0\xfa\xa7\x80\x3f\x29\xaa\xc2\x0d\xf8\x9b\x12\x5a\xb0\x40\xa0\xa7\x65\xa4\x4b\x85\x85\x0c\x69\xdc\x42\x51\x1c\xeb\x61\xb8\xbb\x38\x89\x0b\xf7\x5b\x22\xc9\x05\x66\xbb\x79\x48\xc9\xc2\x97\x54\x05\x67\x05\x59\x88\x0f\xe7\x1c\xa0\xdc\x44\x90\xb9\x78\x5a\x40\xbd\x27\x2f\x8a\x6e\x2a\x27\xf2\x17\x33\xe7\xe6\x2b\xf8\x1f\x59\xc3\xe9\xf3\x81\x47\x9c\xda\xd8\x3b\x82\xff\x78\x31\xe1\x6e\xa2\xd5\x40\xa0\x5f\xbe\xb8\x5e\xb8\xc6\x4d\x26\x19\x16\xe3\xc8\x5f\x98\x4b\xb8\x4a\xec\x31\xe6\x79\x5e\x21\x7c\x12\x6b\x1f\xef\x6b\xed\x18\x7b\x27\x7f\x73\x19\x9c\x73\x0b\x10\xe4\xad\xe3\x7e\x11\x94\xa4\x51\xf8\x41\x42\x50\xac\x10\xa0\x8b\x56\x87\x4f\x14\x8c\x8a\x41\x7e\x7c\x51\x84\x24\xce\x7d\xba\x78\x40\x0a\x27\x21\x69\xc5\xf2\x6c\x0c\x94\x5e\x20\x8f\x82\xbe\x62\x20\xe4\x8b\x6a\x3e\x32\x2d\xf2\xb9\xa5\x5a\xd6\x2b\xf9\xfc\xbc\x59\x9c\x10\xf9\x82\xd4\x97\xdc\xf5\xf2\x85\xb1\x89\x7c\x77\xb9\x47\xd8\x38\xb0\x5b\xee\xe6\xd7\x2e\x2c\x94\xcf\x72\x47\x8a\xde\xc9\xe7\x13\xa1\x94\x35\x46\x29\xba\x82\xca\x36\x1c\x86\x7c\xa4\xed\xd1\x7f\xab\x59\xcc\x98\xa1\x4f\x28\x79\xc6\xa4\xe9\x78\xb9\x6c\xd6\x67\xed\xa6\x54\x23\xc7\xa6\xb9\x1c\xf3\x81\x17\xa3\xbe\x13\x76\x9b\xff\x51\x75\xda\x6f\x8b\x60\xb3\xb2\xd7\x5d\x23\x62\x2a\x44\x84\xe3\x64\x67\xe3\x42\xd4\x43\xca\x09\xab\x17\xc4\x4a\x9b\x63\x71\xa9\x3e\x45\x07\x9b\xe7\x94\x6c\x65\x9c\x32\xfe\x9b\x5b\xc8\x6a\x30\x9c\x49\x65\x72\xa6\xeb\x95\x31\xcf\xb8\xc7\x74\x8b\xc3\xee\xf2\x6d\x1a\xa9\xdf\x1e\x01\x58\x75\xd6\xbd\x57\x14\xaa\x74\x25\x64\x92\x5d\x1d\x5f\x51\x2a\x4a\xb4\xfd\x09\x24\x9f\xca\xb3\x6d\xae\x6e\xa5\x1d\x6b\x84\x97\x34\x33\xfc\x2d\xdf\x73\x93\x98\x27\xcc\x8a\x54\x3a\x5b\x68\x7c\x12\x33\xc6\xcd\x30\xcc\x0c\x1b\xe3\x7b\x6b\xff\xf8\xdd\x06\xc6\xd5\xa3\xee\x67\x85\xa3\xca\x76\x74\x80\xa1\xb4\x6a\x0a\xb4\x54\xdf\x53\x73\xb6\x76\x89\xee\x7b\x7d\x7b\x99\x56\x97\x0e\x69\xce\x5f\xab\x35\xc3\x2f\x65\xe8\x34\xf7\xd1\x89\x09\xef\x35\xa1\xb8\x31\x10\x5b\x2d\x27\x3d\x0b\x92\xab\x1e\xd1\x97\xf9\xac\x55\xa5\xb2\x7b\x96\xff\xa3\x3c\x0c\xe0\x50\xfb\xf5\x2b\x6a\xaa\x21\x5f\x75\xa2\xba\x1f\x35\x97\xb4\x4f\xc0\xc3\x65\xd9\xda\x3c\x18\x23\x9f\xa6\xd9\x86\xe4\x65\xd4\x6b\x5c\x31\x5b\x13\x2e\xaa\x15\x84\x00\x10\x46\xf5\x91\x7c\x3f\x48\xa7\x22\xd1\x4f\xfb\x1c\x56\x3e\xe5\x4c\x74\x99\xaa\x04\x00\x2e\x2a\x4b\xfb\xb9\xee\x06\xc4\xa9\xad\x06\xd7\xd7\xc8\x34\x67\xa1\x4f\xca\x26\x6a\x0a\x11\xe2\xfc\x30\xf5\x25\x74\x65\x86\xbf\xba\x18\x07\x4e\x58\xab\xba\x48\xec\x02\xd5\xaa\x6a\xa9\x0b\x83\xac\xca\xd7\x8c\x3d\x3e\xb7\x94\x42\xce\xa0\xcb\x2a\xe5\x2a\xe0\x34\x52\xaa\x26\xc2\xd6\x80\x6f\xaa\x67\x21\xe0\xd5\xa3\xaa\x3d\x28\x7d\x29\x5c\x05\xc7\xdc\xce\x1b\x54\xfd\x85\xaf\x4b\xff\x9f\x72\x17\x69\x4a\x42\xad\x12\x4a\x79\x08\x8a\x50\x2e\xa1\xdf\x08\xea\x56\xdc\x66\xfd\xf4\x9d\xad\xb0\xf3\xea\x5c\x24\x0a\xac\xe0\x09\x02\xae\x8c\x42\xdf\x68\x78\xa7\xb8\x8f\x3d\x58\xed\xaa\x68\xc2\xb7\x97\x1c\x55\x10\x88\x96\x3c\x37\x45\x3a\x79\x7d\x7a\x81\x62\x21\xf5\x55\xc2\x6c\xf9\x53\x46\x09\x68\x99\x7c\x94\x75\x3f\x68\xab\xfc\x00\x57\xe7\x9b\x2e\x6f\x01\x6a\x5d\xfe\x91\x9b\x44\x85\x70\xbc\xec\x23\xf1\x55\x83\x8f\x6c\x27\x99\x54\x45\x90\xe9\x28\x4f\x4b\x56\xc8\xd4\x34\x76\xae\x5d\xa6\x65\xf8\xa5\x3d\x92\x89\x99\x1f\xe2\x0f\xcb\x38\xec\xdb\x91\x3f\x65\x06\xee\xe7\xa0\x53\xb2\x61\xc0\xd7\x97\x2f\xdb\x24\xac\x73\x4d\x93\x1d\x13\x6f\x83\xc9\xc4\xa3\xec\x98\xfa\xc5\xe2\x4b\x9c\x65\x95\x6c\xf1\x2d\xce\xe7\x62\x90\xc4\x83\xfb\x3c\xe7\xb0\x04\xc5\x7b\x97\x16\x27\x71\x00\xb3\xe2\x33\x25\x17\x05\xd1\x91\xc7\x24\xbf\x84\xaa\xa0\x51\x29\x48\x74\xc3\xf7\x98\x94\x2e\x71\x77\xbd\x28\xdd\x23\x95\x42\x9e\x09\x4b\xc5\x97\x6a\xbf\x0b\x09\x92\xe9\x15\x56\x61\xaf\x24\xa1\xc8\x28\xfc\x26\x51\xe7\xc4\x89\xe8\x92\xc7\xa9\x67\x45\x57\xa5\x89\x71\x1f\xc4\x79\xd2\xb6\xc8\x2e\xf1\x88\x6c\x62\xd0\x55\xc9\x22\x19\xdc\xf7\xb3\x44\x26\x1b\x70\x0b\x91\x7c\x96\x7d\x84\x2c\x04\xf2\x34\x63\xb5\xfe\x80\x43\x33\x50\x7e\x03\x78\xab\xc9\x2e\xfc\x25\x28\x53\xbf\xce\x7e\x2c\x38\xa6\x36\xa5\xda\x84\xb5\xea\xe0\xb8\x07\xc2\x2f\xaa\xfd\x91\x1d\xa2\x16\x55\x62\xd0\x3b\x71\x8a\x72\x60\x85\xbf\xf8\xb2\xe2\xbd\x1b\x4c\x42\x54\x44\x83\x0f\xf1\x85\x46\xdf\x9a\xdb\xfc\x4b\x86\xae\x72\x2d\x90\x60\x98\x54\x78\x04\x18\xd4\x43\xb3\x77\x0b\x5c\x75\x5b\x53\xd9\x82\x23\xda\x9f\x71\x17\x84\x74\x6d\x68\x64\xb3\xc8\x47\x93\x14\x34\x2e\xba\xad\x0e\x5e\x11\x2e\x16\x29\xbf\xb8\x11\x25\x01\x8a\x6d\x60\x39\x6f\xd4\xb2\xb7\xa6\x9b\x1f\x68\x99\x5d\x5e\xc6\xef\x34\xa7\x14\x76\x00\x93\x4c\xc8\xec\x7e\x80\x6f\x64\xa5\x92\x04\x01\x06\x5e\xdc\x65\xc1\x73\x7d\x5d\x64\x9f\xb0\x57\x37\x2d\x78\x9a\x08\xad\xd1\xad\x28\x12\x2f\x56\xdd\x73\xb3\x88\xcf\x28\x23\xaa\x92\x9b\xef\x56\xd9\x4b\x07\x9a\x72\x6a\x91\x05\xed\xf6\xd3\x0d\x29\xd9\x4b\x6c\x95\xd0\xf4\xd4\x1a\xeb\x35\x84\x3e\x9e\x63\x49\xc5\xcc\x88\x5a\x63\xea\xc4\x8f\x86\x32\x0c\xf7\xc8\xaf\xfd\x93\xf5\xbe\x8c\x35\x9e\x3f\xb5\x60\xce\x86\x65\xb7\xd4\x43\x82\xb2\x2a\xef\xa6\xee\x9a\x83\xa5\x22\x87\x7f\x3d\xbe\x80\x6e\x3b\x02\xf1\xc8\xfa\xd8\x88\x86\xfd\x9b\x9a\x68\xf9\x85\x9a\x1c\x8f\x32\x4b\xb1\x15\x51\x61\xc6\x0f\x84\xc7\xa1\x0c\x43\x01\xe5\x80\x7f\x99\x6e\x98\x71\xd8\x6b\xb1\xe6\x07\xe7\xcd\xb2\xff\xd4\xb5\x82\xb4\xca\x6f\x0e\x68\xfd\xb2\xd2\x7c\xfb\x24\x70\x77\x41\x72\xe3\x76\x58\x58\xd6\x59\x2b\x15\x71\x39\xd5\xc5\xe2\x8e\xde\x1d\x5f\x68\xda\x89\xbb\x15\xe5\x63\x4c\x20\x81\x42\xd9\xfa\x4d\xd4\x0b\xfe\x28\x9d\x07\xd3\xec\x05\xd2\xe8\xb8\x8c\xe5\x81\xaa\x5f\x02\x51\x65\x91\x6d\x39\xf4\x53\xc9\x11\xeb\x4d\x44\x58\xfe\x79\xcb\x7a\x14\x39\x0b\x67\x36\x60\xae\xa6\x9c\x37\x41\xf1\x94\xf8\xc5\x46\x77\x52\x42\xd4\x24\xfd\x59\x6a\x6c\x28\x55\x87\x63\x94\xf9\xab\x35\xbf\xd9\xed\x5e\x4c\xb5\x95\xf7\x73\xb9\x42\x15\x2c\x14\x57\x9c\xb0\x6c\x44\xe7\x94\x84\x9a\x37\x63\xfd\xf3\xd3\x4d\x83\xf8\x85\x99\x9f\x8c\x23\xc4\x95\x29\x34\x43\x2f\x19\x15\x77\x4d\x2f\xa3\x5e\x00\xdd\xd7\x95\x31\xc0\xa1\x74\xed\x52\xb6\x87\xff\x7a\xf5\x15\xee\x67\xaf\x5d\x2a\x03\x70\x6d\xf9\x43\x65\x91\xe8\x42\xc5\x64\xd3\x41\xc2\xde\x62\xb3\x71\x33\xa9\x24\xef\xa0\x61\x0b\xf9\x45\xa6\x52\x7f\x8d\xda\x93\xb2\x54\xf7\x2f\x5d\x18\xe7\xd0\xbe\x67\x0a\x41\x7b\x35\x4f\xd8\xce\x50\xa6\xfa\x02\x77\xdc\xff\xaa\x6a\x13\xd0\xe0\xf5\x49\x69\x17\xee\x70\x01\x29\x24\x12\x9f\xb2\x6f\xfa\x1e\xe6\x9c\xa2\x13\xba\x2b\xac\x80\x3c\x3f\xdd\x5c\x76\x7a\xc6\x1f\x2d\x92\x43\x49\x1e\xd1\x6c\xe5\xee\x88\xcb\x51\xbf\xe2\x2f\x00\x39\xd4\x4b\x01\x49\xa8\x54\xb5\x52\xe8\xb1\x6a\xa1\x32\x40\xb4\xcf\x1b\xa6\x48\x95\xc4\xb8\x9c\x91\x43\xa4\x87\xcb\x82\xb4\x6e\x82\xe1\xa2\xe5\x1a\x86\x70\x4d\x6e\xaf\xfa\x9a\x70\x7f\x46\xbf\x3a\x59\x54\x94\x8c\x57\x6d\x13\xbd\x8f\x5b\xa6\x72\x15\x0f\x82\x00\x25\x57\x52\x17\xaa\x57\x1c\x92\xfa\xaf\xca\x90\xff\x27\x7d\xe6\x3d\x20\xcf\x93\xb1\x5c\x23\x65\x66\xf9\x94\xd2\xb5\xea\x28\xc5\xd3\x42\x8b\xca\xa6\xf8\x96\xeb\xa1\x9a\xa1\xf8\x9c\x11\xa3\xd4\x2b\xbe\x26\x07\x28\x97\x28\xbe\xc6\xbe\x57\x0c\x28\x27\x80\x68\x8a\x35\x8a\x1f\xa1\x4e\xf9\x88\xe2\xf5\x2a\xb4\x7c\x81\xe2\xa4\xf7\x73\x99\x56\xc1\x75\x65\x49\xbf\x2a\x96\x95\x46\xa9\xca\x35\x83\x85\x39\xca\x43\x1a\x75\xce\x2b\x65\x96\xa6\x24\x63\x96\xe2\x9c\x66\x41\xf2\x5f\x8a\x5a\xf5\xf5\xd8\x67\xf2\x6f\x6a\x13\x88\x29\x6f\x57\x83\x42\x47\xe4\x9e\xaa\x7d\xab\xe4\xb2\x2e\x95\xaf\xf7\x6f\x59\x88\xb2\xd2\x55\x25\xdd\xa3\x00\x4a\x46\x95\x26\xfd\xb5\xc2\xa9\xca\x89\x7a\x47\xce\x49\x45\xa3\x7e\x4d\xfa\x4f\xc5\x62\xdd\xe9\xe4\x09\xf2\x4e\x5d\x69\xec\x1b\x79\x99\xf6\x14\x48\x25\x9f\xaa\xf5\x0d\x3d\x2d\x6b\xd4\x94\xac\xda\x22\x5b\xae\xae\xf2\x09\x94\xee\x57\xf9\xba\x8e\x48\xeb\x14\xaf\x8b\xef\x76\x78\x57\xbd\xcc\xb7\xb7\x25\xd4\x6e\xcd\x7a\xd7\x52\xdf\x60\x4c\xbd\xdb\x6c\x87\xda\x13\xda\x1d\xbb\x11\x0f\xa3\xb3\x6d\xfb\x30\xd8\xd5\xfd\xd6\x7e\x42\x64\xd0\x7a\x33\x8c\x02\x5f\x59\x60\xf4\x62\xec\xf4\x38\xa1\x3b\xc7\x75\x5f\x46\xd0\x48\x04\xeb\x8a\x0f\xb5\xbd\xad\x9d\x9e\xcf\x6e\xf5\xaa\x1f\xc9\xba\xea\xac\x81\xd4\xa5\x9e\x6a\x1a\x82\x87\x27\x98\xed\x0f\x50\x39\xd1\xe9\x8d\x5f\xb1\xbd\xab\x47\x2c\x9f\x89\x31\x41\x9b\x4d\xe7\xa9\x3e\x2b\x11\x86\x2e\x66\x88\xc7\x7d\x1d\x9a\x5b\xb8\xcc\xaa\x09\x16\x98\x8a\x5b\x5b\x77\xd6\x57\xe5\x17\x3b\xff\x80\x2f\x65\x6d\x6c\x2e\x81\xd5\xa7\x6e\x70\x6c\x45\xfc\x4e\xe0\xdb\xfe\x43\xbf\x8a\x8e\x6e\x0c\xc6\x2f\x5d\x3d\x68\x49\x22\x09\x83\xf6\x98\x82\x68\x2b\x57\x72\x0d\xf3\x98\x63\x1e\xbf\xb5\x6f\xb8\xa7\x97\xed\x55\x9f\x15\x1c\x2e\x5e\xed\x2c\x80\x2d\xcc\x1b\x6b\x3a\x85\x88\xcd\xaa\x71\x64\xa3\x28\xa9\x68\xdb\x28\xe6\x5e\x42\x56\x63\x32\x5e\x11\xbd\xcc\x62\x25\x41\x57\x77\x98\x4e\xff\x9f\x00\xb8\x00\x68\x32\x51\x00\x00\x6c\xfb\xec\x96\x1e\x08\x48\x83\x20\xdd\xdd\x0d\x83\xb1\xee\xee\xfd\xeb\xfe\x63\xc9\x68\x10\x04\x1b\x0b\xbb\x15\x3d\xdb\xb3\xbb\xbb\xbb\xcf\x6e\xdf\x27\xe2\x84\xed\x75\x3e\x90\x36\x07\x2e\xb2\x3f\x91\x3f\x41\xa5\x59\x5f\xa9\x33\xdd\xc7\x22\x1f\x75\x5b\xcb\xd7\x77\x7c\x63\x8c\x28\x96\xb7\xaf\x60\x7e\xc8\x7b\xd4\x56\xca\x7e\x9e\x35\xaa\xe5\x3d\x6f\x74\xca\xdf\x66\x48\x50\x1b\xff\xc2\xf5\x49\x74\x36\xda\xd6\x58\x2e\x15\x85\x9d\x71\x38\xe4\xb9\x81\x27\x6c\x9b\x54\x11\x28\xb3\xe5\xae\x76\xac\x3b\x09\x99\xa2\xff\x53\x3e\xab\xed\x07\xb7\xa8\xe8\x43\xeb\x6a\xde\xd3\x3c\xa0\x85\x24\x68\xce\x5c\xd3\x3c\x4b\x84\x4e\xd9\xe3\xba\x24\xc9\x8e\xdf\xd7\x48\x97\xd5\x47\x2b\x1d\x77\xe4\xd6\xb0\xbb\xf6\x64\xe5\xdf\xc0\x6f\x56\x58\x63\x44\x1d\x42\xee\xea\xee\xb9\xaf\x83\x33\x8c\xa5\x65\x61\xcd\x5f\xa4\xa9\x45\x25\x4d\xd7\x65\xbc\xbc\xff\xb9\xf6\x01\xbd\x99\x15\x8d\x6b\xe4\xb7\x53\xb4\x4e\x9b\x32\x2d\xbe\xcf\x51\xae\xda\x11\xad\xb0\xfd\xd5\x64\x84\xff\xcf\x0a\x6a\xff\xcc\x2e\x47\x3e\xea\x77\xfb\xc6\xc1\x88\x31\xc7\xa3\x08\x9a\x66\xba\x5e\xba\xde\xa5\xd6\x70\x0b\xef\x34\x2a\xb5\x53\x72\x37\x3a\xcd\xda\xed\x99\xee\x0e\x8b\x8e\x95\x82\xb1\x5b\xf4\xa1\xf1\x4e\x9b\xde\x30\x34\x5a\x6f\xa5\x18\xae\x87\x87\x5b\xa6\x19\xcf\xcd\x6e\x81\x77\x9a\xb6\xfb\x36\x41\x46\x73\x9d\xc7\x7a\x30\xc7\xfc\xb9\x94\xed\xd4\x82\xd9\x85\x3a\x87\x05\x14\xe4\x96\xda\x97\x81\xad\x19\x47\x6d\xff\x80\xbb\x53\x22\xac\xd7\xc0\xb7\xf1\x32\xcb\x17\xc8\x2b\xda\x60\x19\x0f\xe5\x86\x97\xc0\x6f\x20\xda\xec\x63\xd0\x61\x88\xeb\x7b\x1e\xdc\x0b\x45\x7b\x7c\x31\x6f\x00\x5f\x97\x8e\x70\xb4\x23\xd7\x0b\xb3\xec\xab\x91\xb3\xb9\x01\xb6\x4b\xc8\x9e\x8c\x35\xd6\xcf\xc8\x40\x8a\x87\x75\x06\x32\x3f\x5e\x64\xc9\x47\x4c\xd1\x10\x22\x41\x30\xe1\x24\x98\x81\x4c\x9b\xfd\x1c\x2a\x87\x37\xfb\xbe\x05\x49\xf0\x64\xcf\x09\x66\x0e\x44\x2e\x19\xb0\x1f\xb6\x3d\x2a\x1c\x63\x7b\x60\xdb\x91\x3b\xc6\x36\xd5\xa6\xce\x58\x6c\x8d\xb1\xa5\xa4\x4c\xb4\x54\x59\xbf\xc6\xab\x91\x0e\xeb\x92\xe8\xf9\xf0\x39\xeb\xdc\x70\x18\x3a\x6b\xe9\x09\xf2\x02\x8f\x20\xd7\xfd\xbc\xcc\xaf\xe0\x6b\x9e\xc1\xe6\x69\xd0\x9e\x62\xfb\xe2\xae\xfa\xf8\x7c\xf5\x42\x7e\xc3\x87\x6c\xf7\xbe\x3c\xfc\xb1\xb4\x86\xf9\xe9\xa4\xd3\x89\xda\xee\x99\x34\xaf\xb9\x7d\x9d\x87\x99\xab\x22\xb5\xed\x25\x5c\x65\x48\x58\x4b\x97\x70\x9d\x7f\x9b\xeb\x9e\x6c\xb4\xf7\x3a\xe7\x44\x25\xd6\x6d\xba\x2d\x59\x7b\xb6\x98\xb7\x88\xdd\x50\x9e\x4f\x5b\x80\xc6\xdd\xcf\x1e\xd5\x9b\x4f\x74\xa4\x55\xf4\x54\x51\x08\x89\x9a\x79\xe9\x74\xd5\xdc\x25\x1d\x7f\x58\x97\x23\x6d\x6d\xbd\x3c\x49\x48\x4a\xf3\x1f\x11\xc3\x7f\xb5\x0b\x23\x93\x7b\x1f\x75\x2c\x53\x9a\xdd\xe2\xad\xf7\xb4\xfd\xc5\xb9\x0b\x13\x71\xdd\xf9\x59\x7d\xa9\xc4\x21\x59\xaf\xe6\x67\x91\xcd\x69\xe9\xdd\x04\x9a\x5f\xa2\xa4\x0b\xcf\x9c\x30\x77\x71\xc7\x1c\x4e\x56\x64\x73\xeb\x3d\xfe\xda\x90\xa2\x66\xac\x98\xe8\xbf\xaf\xf1\x30\x10\xe6\xfd\xc8\x11\xa8\xfc\xe0\x86\xb6\xea\xb4\xe7\x8a\x3d\x7b\x57\x91\x73\xf2\xc7\xf6\xbc\xa7\x56\x65\x6d\xea\x8e\xa7\x2b\xd2\xa6\x74\x29\x98\xcf\x12\xd1\x1d\x3d\x9c\xf6\xb9\x5d\x6d\x2d\x7c\x55\xe4\xbc\x16\xba\xc8\x19\x42\x6a\xfa\x9f\xf4\x1f\xff\x67\xce\x16\xc5\x34\x1f\x2f\xbb\x97\x9a\xe2\xd6\x65\x59\xa2\xdb\x5f\xd4\xd3\xc3\xa7\xdf\xcf\x5b\x3c\xef\x3a\xf3\x5a\x56\x59\x57\x0e\xfb\x42\xea\x91\x8e\x85\xdc\x4f\x89\xbe\x6d\x77\x04\x45\x73\x95\x2d\x1f\x44\xe7\x22\x5b\x9b\x9e\x4a\xb5\x21\x40\xe3\x6a\x39\x29\x60\xba\xa3\x4a\x55\xe9\x83\xb5\x8d\xd6\x06\xb9\xdd\x43\x76\x1b\x26\x14\x65\xcc\xc3\x71\x87\xe7\x25\x76\xde\xe6\xf5\x67\xbe\xee\x20\x08\xaa\x53\xb5\x6d\xe7\x45\xbe\x09\x6f\x5a\x23\x25\x6e\x73\xf1\xcd\x64\x59\x6a\x64\x93\x4b\x26\xd7\x84\x38\x9d\xb5\xaa\x91\x01\xf9\x76\x2f\x4d\xa7\x4f\x9f\x75\x88\xee\xb3\x7b\x3c\x7c\xd3\x48\x28\xac\xef\x10\x4a\x56\xe5\x6e\x68\x9f\x21\x7d\x98\xb9\xa6\x75\x37\x80\x4a\x2d\x6d\xa9\x92\x4b\x12\x2e\x37\x5d\x54\x3c\x98\x4b\x74\xa5\xa8\x24\x91\x6b\x9c\x16\xcd\xf8\x90\x93\xf6\x66\xed\xd3\x80\x01\xab\x51\xbf\x0b\x35\x09\x59\x62\xcc\x77\xdf\x0c\x6d\x31\xdd\x2e\x0c\x6a\xfd\xa0\xd6\xe6\xaa\x5a\x36\x6a\xe6\x66\x6a\x9b\x01\xcd\x8b\xd4\xa8\xa6\x10\xed\xa6\x84\xe3\x8d\x67\x74\xae\xb9\x6c\x27\x47\xaf\x8c\x3c\x63\x7f\x69\x60\x84\x8e\xb5\x79\x1a\x4d\x81\xa3\x2c\xb1\x26\x3b\x4a\x0e\x77\x98\x13\x3d\xfc\xc1\xeb\xe6\x37\x85\x1e\xcd\xd7\x4d\x3f\x72\xd3\x9b\x56\x9a\x13\x33\xa3\x5d\xa0\x59\x96\xf2\xb9\xb1\xcc\xbc\x2b\x61\x99\x73\x1c\x38\x76\x6e\x83\xfd\x22\xd8\x10\x79\xc5\x66\x05\x17\x87\xce\xb5\x3c\x07\x9f\x05\x96\x22\x89\xd0\x0c\xd4\x3e\xe8\x2c\xf8\xc1\x83\x05\x96\x80\x67\x0b\x0e\x37\x3d\x87\x85\xb9\x13\x5d\xfb\x60\x79\xe6\xb4\xc6\xe5\xb0\x3c\xe5\x91\x53\x01\x23\x09\x3d\x8e\x74\x78\xfe\x5c\x9c\x7d\x26\xdc\x1f\x79\xdf\x7a\x0f\x5e\x14\x5a\x6a\xa9\x87\xad\x81\x62\x78\x2f\x5c\x89\xba\x0b\x09\xa1\x13\x1e\x1a\x70\x22\x14\x51\x20\x6f\x9a\x6c\xc5\xe7\x3c\x6c\x7c\x65\x4d\xce\x1c\xe2\xbc\x62\x9d\x90\x72\xcb\xb1\xca\xf2\x29\xa1\xd7\x2e\xb3\xdc\x9a\xcb\xb6\x61\x2d\xeb\x23\xbf\x58\xe7\x5a\xf8\xa1\x42\x64\x8f\x65\x48\x60\x1f\x1c\x8f\x48\x7d\x87\x81\x3f\xe1\x1e\x8f\x6e\xf3\x56\x68\xc7\x82\x1c\xc2\xac\x2a\x4a\x7b\x08\xf1\x6e\xed\x7c\xdb\x53\xf2\xd6\xfa\xa3\x86\xff\x51\x2f\xe0\xe6\x48\x57\x32\x02\x88\xbb\x98\xff\xb2\xfa\xa8\x78\xac\x0f\x17\xcf\x0c\x2b\xcd\x12\xf4\x70\x31\x69\x17\x25\x63\x85\x6d\x91\x87\x80\x97\xd2\xe7\x28\x8d\x3a\x56\x69\xeb\xcb\xc6\x85\xd7\xfe\x6e\x23\x11\xa6\xd6\xbf\xb7\x85\x91\x66\x62\x6f\xea\x19\x14\x0a\xe1\xb3\xd4\x9b\xf6\x80\x12\xc5\x2c\x65\x5a\xe8\xb6\x86\x41\x8e\x8c\x3d\xa6\xe4\x3b\xff\x32\xef\x6e\x5a\xb3\x18\x10\x1d\x8c\x5c\x0a\x28\x65\x7b\x51\x7c\xd5\x13\xd5\x90\xde\xa4\x86\x64\xcc\x3f\xad\x8d\xb8\x02\x9c\xd4\xca\x22\x68\x88\xd3\x75\x3b\x49\xff\x91\x1f\x48\x1a\xa9\xf3\x69\xe7\x19\xe7\x19\x5c\xe6\x9d\x86\x6a\xb6\x89\x3b\xb5\x64\x3d\x7f\x94\xa0\x31\xad\x52\x74\x41\xe2\x16\x69\x90\x7d\x05\xf6\xa2\x78\x2a\x8b\x6a\x65\x8f\x00\xdd\x44\x9e\xdb\xfc\xbc\xfe\x03\x95\x89\xbc\xc0\xea\xe8\x2e\xad\x98\x10\xcb\xbc\x26\x96\x92\x7d\x39\x39\xf4\x87\xb4\x0c\xde\x7e\x4c\x1b\xb3\x5f\x48\x2a\x89\xe4\x32\x25\xb3\x52\x1f\x09\x2d\xc0\x90\x48\x8c\xf4\x85\xe2\x2f\xaa\x51\xb9\x4e\x93\x34\xcf\x55\x3d\x89\x3d\xb3\xa9\xa8\x76\x13\xe7\x2c\xdc\x5c\x2f\xe7\xe9\x35\xd9\x58\x40\x10\x27\x02\x08\x2b\x45\x63\xe9\xff\xa3\x4c\x15\x3f\xaf\xbf\x4b\x3f\x2c\x7d\x54\xbc\x98\x7d\x11\xf8\x91\xda\x28\x48\x54\xfa\x47\x16\x48\xae\xaa\x65\xa8\x93\x8a\x93\xda\x0f\x9d\xe7\xca\xff\x11\x83\x8d\xff\x56\xf5\x49\x96\x43\xe9\xb5\x8b\xa5\x87\xd5\xa8\xfa\xbb\xb2\x07\x42\x13\xae\x56\xee\x41\x4b\x22\x8d\x56\x54\xd7\x27\xd0\x86\x28\x17\x14\xcf\x62\x61\x54\x3f\x53\x73\x79\x7f\x35\xec\xc8\x7c\xf1\x55\xed\x27\xdf\x99\xf2\xbf\xfa\x81\x76\xb8\x58\xaf\x27\x3a\xfa\xca\xb6\xe8\x97\x99\x33\xaa\xa6\xe8\x1f\x29\x71\xb5\x2b\x0d\xee\xfc\x1f\x18\x99\x81\x48\xf9\x8b\x37\x18\x7a\xea\x2a\xc8\x67\x0d\xd7\x8b\x1a\x19\x3a\xa3\x67\xea\x28\xae\xda\x88\x89\xc4\x8b\x06\x8c\x5b\x7c\x11\x79\x80\xc9\xbf\x35\x33\xff\x8b\xe3\xae\x6d\x71\xb1\xd5\x11\x65\x04\xcb\xd3\xed\x2a\xf9\xf9\x6a\x77\xdb\x20\x6f\x45\x5d\xa4\xf5\x2f\xf9\x0d\x16\xb2\x46\xa1\x11\x92\xaf\xa5\xaa\x68\x1c\xdd\x0d\x21\xa6\x5c\xe1\x90\xe1\xea\x48\xa1\xf0\x31\x84\xf7\x7d\x00\x0c\x80\xe2\xe6\x33\xb9\xd0\xbc\xa5\xd6\x94\xc2\x8c\xae\x04\x43\x4c\x69\x60\xc7\x20\xb0\xb4\x32\xb6\x7d\x3a\x77\x7e\xad\xa1\x95\x46\x9e\xd5\x30\xb2\xb9\xad\xf6\x27\xe1\x9a\x6b\x51\xe1\x51\xda\x74\xa7\x36\xe5\x21\xbb\xd9\x1e\x1d\xb9\x4a\x88\xb7\xdc\xf0\xcb\x00\x04\xb0\xaa\xb9\x24\x67\xe3\x02\xa7\x65\x4b\x81\xb0\xf7\x98\xfe\x40\x09\xa1\xe7\x3e\x90\x56\xa1\x99\x77\x99\x9b\x59\x73\xb5\x73\x0b\xe9\x31\x46\xd8\x2e\xac\xbd\x47\xa8\x6a\xf9\x51\x78\x88\xba\xb6\x29\x27\x75\x14\x7b\xae\x93\x16\x79\x51\x88\xb2\x61\xfd\xa4\x40\x25\x92\xd4\xf4\x3b\x67\xe6\x52\xd8\x42\xcc\x3f\xb3\x58\xaf\x87\x8a\xf7\x2c\xcc\x00\x46\x95\xdf\xeb\xbd\xcf\x9d\x51\x93\xd7\x43\x21\x9d\xab\x7f\xdc\xb5\xbd\xf6\x2e\xfe\x62\xfb\xd9\xc2\x0b\xd4\xdc\x96\xe6\xd4\x24\xd6\x45\xd7\xec\xa8\x89\x82\x2b\x76\xad\xdf\x76\xc0\x1b\x59\xde\x63\x23\x41\x55\xcc\xe6\x9b\x94\x09\xb5\x4b\x90\xdb\xd4\x5d\xf5\xa7\xb4\xa5\xf4\x05\xb8\x38\x71\x06\x73\x27\x71\x2f\x7d\x3d\xfb\x0f\x95\x86\xa1\xf3\x1a\x99\x89\xc5\xaf\x84\x0e\x2e\x3b\xf5\x94\x64\xbf\x70\x5d\x64\x81\xbc\x41\xe6\x83\x02\xd4\x38\xe5\xe5\xee\x25\x84\xce\xda\x37\xcd\x6e\xa4\x92\xfa\x07\x48\x28\x25\x10\x7b\x5c\xb3\x91\x16\x47\x78\x21\xda\xc9\xd0\x51\x82\xe9\x29\xac\x37\x74\x04\x33\x8c\xbb\x92\x3d\xbe\x78\xa5\xe0\x04\xef\x49\xea\x3c\x49\xb8\xe8\x6a\x64\x14\xf0\x54\xf6\x1a\x25\x56\x4f\x54\x15\xcf\x5b\x83\x1b\xc0\x74\x37\x95\x10\x1c\xb8\x12\x58\x4c\x6a\x21\xbc\xd2\x8c\xa7\x9c\x22\x1f\x15\x45\xd2\x93\x69\xff\xd0\x8e\x32\xaf\x31\xcf\xd5\x2f\xe5\xec\xe2\x8e\x2f\xa6\xf0\xff\x0a\x5c\xa9\x0c\xb1\x4b\x12\x1a\x39\x03\xe0\x02\x2f\x50\x5a\xd5\x46\xd5\x9b\xce\x9b\x98\x49\xa4\x8f\x8d\x6b\xb1\x59\xd4\x08\x68\x28\x7e\x1e\xbd\x41\x75\x9e\xe4\xc6\x5c\x25\xf4\xa5\x9c\xe1\x4c\xa3\x3e\xa2\xef\xe0\xf5\xd5\xbd\x60\x3d\x15\xe6\x16\x3d\xe2\x71\x24\xee\xa9\xa3\x45\x05\xc0\xb8\x88\x5f\x32\x8a\x32\x10\xb5\x5a\x79\x43\xa3\xed\x18\x53\xbb\x88\xb5\xcd\x39\xb5\x7e\x32\x47\x69\xee\x6f\x58\xc5\x8b\x54\x2e\xc3\x73\xf8\xaf\x05\x01\x24\x92\xf0\x38\x75\x3c\xb5\x53\xbc\xb5\x2e\x95\x39\x5e\xba\xbb\x88\xca\xb9\x05\x3c\x49\xd9\x2c\xf8\xab\xf4\x8f\x78\x2b\x45\xab\x9b\x51\x4f\x15\x7f\x74\x61\x6d\xe8\x2a\x92\xe8\xb7\xbd\xad\x76\xb2\x24\xc2\x54\x55\xf7\x54\x5a\xaf\x30\x35\x3c\x92\x19\xf8\x73\x09\xd3\x80\x03\x94\x0c\x72\xab\x62\x24\xba\x93\x5e\xa5\xa4\x16\x3e\x61\xb3\x54\xd7\x52\x04\xfc\xd3\x9a\x86\x88\xd7\x12\xac\x6e\xb8\x6f\xb4\x22\x49\x7f\xb5\xc5\xa3\x2c\x44\xd7\x68\x35\x57\x46\xe8\x5e\x1b\x24\x35\x18\x7d\x3e\x70\xa1\x6e\xa3\xde\xc6\x1d\xc4\xa6\xeb\x6f\x91\x27\x13\xa7\x18\x42\x6b\x77\x51\x83\x0d\xa6\x42\x22\xb3\xd5\x70\x3b\x25\x8f\x57\x60\x8c\x8f\x9c\x22\x0e\x31\x6e\xf6\xdd\x26\xaf\x35\x15\xba\x7e\x16\xad\xb0\x5f\x45\x56\x94\xfe\xb1\x67\xeb\x2e\x54\x1a\x6c\xcb\x65\x84\x5a\x7f\xeb\x57\x8e\xa2\xfe\xb7\xb5\x8a\x34\x16\xef\x6d\x99\x57\xf3\x85\xac\x47\x2e\x14\x3c\x64\xcc\x81\x7f\xa5\x4c\xe1\x46\xc2\x13\x23\xc3\x45\x24\x28\xc7\xcf\x03\xb8\x00\x82\x8d\xda\x02\x54\x17\x19\x4e\x28\xde\xd8\x39\x45\xab\x2d\x67\xb5\x6f\x90\xce\xa9\x4e\x6e\xf3\x61\x4b\xea\x8a\x5b\x20\x62\x3e\xb6\xb7\xe9\x4c\x0d\x40\x9a\xdb\xf8\xa3\xa0\x9f\x1e\xec\xf8\x9e\x12\xce\xc1\xda\x2e\x44\xb2\x85\xe7\x2c\xfd\x7e\x1a\xa0\x19\x16\x3b\x3f\xe6\x17\xf6\xc5\x41\x9b\x8b\x6e\xcd\xb7\x6b\x87\x96\x2d\xe8\xde\x2b\x39\x59\x65\xec\x3a\xce\xf6\x41\x2f\xea\xd8\x47\x1c\xd7\xf0\xb7\xad\xbb\xa6\x9e\x38\xd0\x92\x5f\xb0\x88\xb6\xc7\xb5\x25\xa5\x84\xfd\xcb\xf1\x31\xb2\x55\xd8\x66\x73\xf7\x1b\x00\x44\x48\xa8\x73\x69\xde\xc0\x12\x14\x44\x2c\x4a\x5e\x14\xaa\xd9\x53\xfa\x6d\xc1\x18\x49\x47\xe5\xfd\xf9\x47\x58\xdf\xd0\x63\xbb\x49\x84\xef\x0d\xb2\xce\x8b\x35\x04\x62\x48\xfb\xe4\x82\x2d\xb4\x8a\xe6\xaf\x29\x1a\x76\x6f\xe3\xfa\xc8\xd3\xc2\x3c\x7b\xbc\xdf\x0b\x20\x1e\xe9\xec\x5c\x46\x1d\x5e\x25\x6c\x24\xd1\xa8\xb5\x03\x60\x3f\xfd\x79\xfd\x59\x15\x96\xd9\x81\x8b\x13\xf4\xb1\x0d\xc4\xbd\x54\x2a\xb7\x97\x4a\xad\x13\xf1\xbf\x31\x53\x8a\xb0\xa2\xdd\x5c\x76\x4a\xaf\x74\x50\x38\x18\x61\x51\x4c\x95\xa5\xa0\x92\xd5\xe7\x54\x63\x3a\xce\x91\xbd\x6b\xef\x3a\x97\x52\x06\xea\x2f\x9a\x7f\xd0\x88\xd8\xad\xca\x63\x8c\x04\xc2\x0d\x01\x8a\x55\x4c\xf1\xa4\x7c\xe6\xb4\xd2\x95\x75\xd3\xf9\xee\xec\xe1\x45\xee\xa2\x21\xbc\xdb\x29\x5c\x69\x98\xe8\x46\x84\x52\xde\x0f\x8c\x40\xa5\xaa\x11\x95\xa6\xfd\x23\x31\x19\x03\x38\x6e\x93\xde\xe3\x66\x99\x4b\x28\xe7\x09\xfb\x95\x31\xb4\xcb\xe4\x55\xfc\x05\xcc\xc9\xb4\xa5\x14\x2b\x1b\x64\xee\x40\x0f\xf2\x62\x38\xdf\x0b\xaf\x08\xd3\x05\x86\x94\x14\x49\x8b\x24\x28\x82\x2a\x0f\x03\x7e\xa1\x4a\xd4\xa1\x6a\xf7\x36\x1f\xec\x16\xd2\x56\x7b\x36\x7e\x1b\xe5\xbd\xf1\x25\xf1\x0e\xdd\x4f\x31\x9c\x12\xcc\x94\xf0\xfa\x68\x1b\xd8\x0f\xc9\x1b\x98\x3c\x9e\x10\x3d\x9e\xc3\x14\xfa\x15\x12\xf9\x9b\xc4\x7f\x93\x9f\x8b\xab\x80\xa1\x11\x75\x40\x88\x32\x1a\x65\x52\xe1\x34\x8b\x5a\x08\xf5\x95\xac\x6a\xeb\xc6\x86\x1e\x8e\xa7\xc1\x81\x1f\xc5\xbd\x09\x5c\x27\x5a\xf9\x7d\xdc\xc5\x94\x32\xa1\x89\x74\x9d\x5e\x23\x96\xd5\x92\x58\x5d\x52\x6b\xc1\x23\x5e\x38\x70\x30\x79\x81\x68\xb2\x72\x6a\x44\xb9\xcc\x5f\xdd\x81\x3a\xa8\xb4\xe8\x4a\x9a\xd6\xd7\x06\x88\x94\x96\x39\x75\xeb\xc5\x9b\xf4\xb1\x0d\x78\xc9\x63\xd9\x76\xfc\x44\xd9\x14\xce\x7a\xd2\x38\x80\x44\x1a\x4f\xad\x97\x6f\xaa\xd9\xc3\xb8\xab\xf4\x2a\x90\x70\x06\x55\x2b\x92\x69\x82\xfb\x9a\xf4\x88\x0a\x69\xa8\x6e\xa8\xef\x54\xc5\x5e\xfd\x7f\x8d\x50\xc5\x4f\xed\x36\x38\xa1\xfa\xbc\x2e\x46\x2b\x45\x9f\xd1\x2d\x93\x7a\x60\x1e\xeb\xde\xb2\x73\xf1\x59\xfa\x1a\xc2\x0b\xd2\x03\xfd\x96\xea\x27\xb4\x03\x06\xef\xfc\xb7\xac\x97\x86\xd6\xe4\x4c\x3e\xd1\x38\x22\xc2\x20\xfe\x66\x5c\xec\x3b\x4f\x7e\xdd\x84\x76\x38\x4b\x0d\xb6\x13\xa0\xae\x62\x99\xad\x52\xfd\xa6\xfa\xad\xf5\xa4\x78\x6b\x1d\xc9\x1a\xc9\x1a\x8d\x1d\x6b\x99\x8f\x7f\x4d\xf8\x84\x7c\xa9\x8e\xa0\xa2\x90\xd2\x7c\x1d\xd3\x05\x77\x24\xcf\xe4\xe5\x42\x47\x22\x16\x88\x43\x21\x0f\xdf\xdf\xf2\x6a\x50\x6b\xfb\x5e\xf4\xa4\xd3\xcd\x3c\xa4\xac\xa2\xfd\x89\xaa\xa9\xf2\x46\xdb\x42\x91\xa3\x16\x68\xf5\x65\x4e\xc1\x54\x35\xf7\xe1\xe7\xe0\xc5\x4d\xc3\xab\xd6\x91\xcf\x37\x56\xe4\x67\x32\x20\x87\x30\x39\x92\x2b\xb1\x71\x22\x6e\x8a\xe6\x5b\x68\x7e\x14\xf9\x48\xb8\xc1\x26\x2c\x1a\x37\xff\xaa\xc9\x58\xaa\xee\xc9\x51\x8d\xaf\x9c\x38\xaf\x5d\x34\xab\x66\x6b\xe7\x66\xc6\xfe\xfa\x25\xed\x87\x71\x5f\x70\x17\x5a\x77\x57\x35\x93\xf3\x9b\x1d\xf9\x49\x8c\x29\x2e\xf7\xe4\x22\xee\x54\x87\x21\xe2\x8f\xa8\xc1\x7a\xc6\xaf\x0d\xb8\x8f\x4c\xb2\x4d\x2f\xe4\x2c\xda\x6c\x0a\x2b\xb9\xb4\xe0\xbc\x72\x5f\x05\xaf\xf7\x8c\xf0\x79\xcd\xd4\x9e\x45\x8c\xf9\xf5\x23\xe7\xd5\xe0\x9e\xe0\x32\x3b\x5e\x54\xb5\x91\xf6\xb7\x95\xe4\x57\xd2\x17\x37\x63\x92\x35\x9c\xf5\x8d\x31\x91\x89\xa2\x31\xb6\xa7\x7e\x17\x80\x65\x88\xce\x75\x87\x79\xa7\xaa\x07\xf1\x61\x7d\xaf\x3d\xa1\x7d\xc2\x49\xaf\x7f\x2e\x4d\xe0\xee\xc5\x25\xb1\xa7\xf0\x79\xc4\xed\x04\x8d\x30\x95\x5a\x57\x1d\x2b\xce\x63\xce\xc9\x7b\x2e\x6d\xe1\xa2\x13\x6f\xca\xa3\x85\xdb\xc3\xd6\xaa\xa6\xc8\x2a\x7d\xe8\xda\x12\x55\x9e\x6b\x3a\x23\xa8\xf6\x29\xac\x60\xb2\xea\x2f\x6b\xf1\xac\xb3\xd8\x6d\x92\x1d\x1c\x39\x61\x3f\x6b\x11\x2f\x9f\xfc\x91\xe0\x2e\x48\xa7\x57\x55\x3d\x10\x89\x59\x0f\xf2\x56\x4b\x1e\xf2\x76\x25\xae\x03\x06\x44\x87\xc3\xfa\x95\xab\x81\xf1\x3e\x7c\xed\x30\xd5\xaa\xc6\x5c\x9a\x04\xd3\x00\x1d\xa1\x5f\xc4\x8d\xd6\x9c\x60\x12\x09\x03\x92\x38\x76\x00\x59\xca\x0a\xe7\xba\xd3\xe8\xf8\x6d\xfc\x24\xa6\xa6\xaa\x5d\xd8\xca\x39\x9c\xc7\x91\x84\x0b\xca\x12\x11\xc0\x4d\x32\x22\xac\x4f\x99\x00\xfc\xf0\xd1\x6b\x36\xa8\x53\x1d\x03\xe4\x91\xa4\x34\x10\x4d\x59\x4b\x01\xd4\x20\x4d\x43\x5b\x2a\xf6\x61\x34\x31\xbe\x32\x73\x59\x67\xd9\x72\xdc\x7f\xdc\x04\xde\xe8\xca\x2f\xfc\xcb\x82\xa3\xb9\xff\x89\x76\x88\x77\x25\x66\x4b\x9f\xca\xce\x85\xb5\x2a\xb2\x94\x3e\x3e\xdb\xd5\xaf\x35\xdb\xec\x11\xf8\x8d\xcc\x01\xd3\x7f\xc4\x0e\x36\x47\x95\x46\xee\xe7\xa2\x84\xbf\xa8\xbf\x79\xef\x19\x85\x0c\x58\xf0\x18\xe7\xc3\x8e\x11\x3d\xab\x2c\xe5\xcd\x90\x4e\xcc\x05\x85\x19\x00\x2d\x71\x82\x64\xa3\xe2\x4a\x58\x9f\x3c\x47\xad\x46\x0d\x57\xa3\x74\x38\x6b\x57\x03\x20\xd4\x1b\x9d\xb8\xa5\xa2\x6d\xca\x61\x84\xcf\xe2\x67\x82\xc7\xe4\x16\x69\x14\xbd\x8e\x56\x2f\x6b\xc7\x56\x33\xf3\x81\x9f\x15\x6b\x38\x3c\x85\x39\xd7\x93\x7f\x55\x15\x9e\xf0\x48\x6c\x55\xbf\x0a\x5b\x0b\x94\x6b\x6f\xa2\x68\x2a\xb4\xfe\x0f\x52\x8f\x6e\xd1\xc4\xe8\x6d\x98\x11\x9a\x03\xf2\x0c\xec\x0a\x6d\x36\xbf\x81\xd0\xac\xdd\x4a\x1b\x41\x5e\xae\x4b\x6a\xc8\xa1\x3d\xd3\xed\x2e\x7f\xc8\xa2\xea\x8b\x72\x16\xf3\xa6\xeb\x1f\x24\xfc\x2b\x1a\x63\x70\x85\x5d\x97\xf9\x1a\x71\xa8\x1b\x4a\xa9\xa9\x18\xe2\x54\x47\x5a\x0e\x6b\xcf\xa0\x87\x58\x58\xb2\xed\xf5\xdf\x91\xdf\xdc\x3f\xb8\x40\xa4\x99\x72\x87\x68\x44\x82\x30\x75\xd4\x31\xf0\xc6\xf2\x38\xc6\x69\x38\x2e\x27\x8d\xb3\x07\x5a\x97\xb0\x51\xf0\x1a\xf2\x0b\xfb\x23\x2d\x06\xb7\xf8\xe6\x2a\xee\x80\x68\x70\x4a\xc5\xe6\xb6\x45\x1a\x4b\xf5\xb6\x56\x97\xd4\x88\xbe\xd3\x42\xe3\xbc\x6b\x88\x6f\xf6\x22\x7f\xc3\xef\x73\x9d\xaa\x5f\x46\x36\x37\xf2\xca\x76\xd1\xf5\x8e\xff\x72\x86\xb0\xd7\xd8\xf3\x12\x06\x05\x3e\x56\x67\x78\xbc\x64\x07\x72\xd6\x77\x89\xc2\x02\xcf\x34\xf3\xcb\xef\x75\xbb\xa9\xff\x54\xdd\xef\xda\x24\x9d\x80\xfe\x5f\x67\x18\xa7\x19\x23\x69\x87\xc8\x6b\xf0\x23\x5a\x8f\xd7\xf3\x49\xb7\x9b\xff\x94\xf5\xd0\x5e\x36\x4d\xca\xfe\xc1\x8e\x73\xde\x48\x38\xc3\x3f\x60\x77\x84\xd7\x4b\xa4\xd6\x08\xdf\x0b\x8a\x7a\xf8\x98\xe9\x63\x79\x76\xdf\x6e\xf5\xd2\xaa\xe4\xde\x49\x92\x33\xb5\x84\x9e\x1c\x0e\xa9\xfe\xdf\x79\xe5\x64\x1b\x8e\xd9\x99\x5a\x8f\x25\xe5\xb5\x4f\x2f\xeb\xa1\xd1\x5a\xfe\xc9\x99\xc2\xda\xd5\x34\x21\xe1\x2f\xbf\xc1\x19\x17\xee\x92\x78\xd9\x72\xfc\x26\x2b\x26\x23\xa9\x88\x88\xdf\x54\xb5\x5f\x9f\x25\xc0\xd6\x3e\x01\xac\x42\x52\xfd\x0f\x9e\x59\x64\xc5\xa5\x51\xc7\x88\xaf\x12\x37\x61\x82\xa4\xc5\xd4\xd2\xb2\x65\xb2\x37\xcc\xe0\xec\x61\xf2\xfb\xdc\x82\xb8\x23\xaa\xe9\xc2\x75\x21\x66\x8d\x5e\x86\xf5\xce\xd3\x47\xaa\x98\xf0\x69\xee\xc9\xda\x07\xba\x55\xbc\x73\xf5\x47\x65\x7f\x05\x23\xb0\x0b\xb9\x7f\x84\xd5\x84\x25\x94\x0e\xd1\x61\xf2\xa5\xfa\x83\x12\x22\x3d\xb2\xac\x42\x16\xc4\x3a\x9c\x75\x54\x9e\xc6\xeb\x8e\x5b\xa0\xec\x12\xad\x0d\xd1\x6a\x3c\x81\x91\xde\xc5\xba\x37\xaa\x1d\xb0\x2f\x67\x34\x26\x4c\x37\x8a\x9b\x8b\x3d\x27\x13\xf3\x56\x13\xf8\x5c\x95\x60\x1a\x79\x0e\xc5\x4d\xb8\x86\x16\x50\x8f\x11\x73\x98\xe9\xa5\xdf\xa4\x75\x9c\xd6\xac\x46\xa0\x59\xe0\x15\xa7\x56\x8e\x15\xdf\x0d\x91\xab\x37\x00\x4f\xbc\x71\xba\x45\xea\x4c\x50\xcd\x38\x44\x3c\xa4\xb1\xb1\x72\xc9\xdf\xa5\xee\xec\x97\x34\x7f\x4e\x2d\x77\x19\x43\x4f\xf6\xe3\x83\xac\xbf\x75\x36\x21\xc4\x5d\x54\x5a\x23\xde\x22\x10\x65\xb9\xc9\xc2\xc5\x9c\xb8\x3c\xf9\x13\x59\x7b\x88\x4a\x75\x50\xf1\xdd\xbb\x47\xfb\x48\xb3\xd6\x1c\x42\xed\x62\xec\x55\x17\xd2\x2b\x58\xf3\xc5\x5f\x99\xd1\x1c\x2c\xbb\x92\x1d\xc9\x4b\x22\x25\x73\xab\x05\xa9\xe8\xa3\xfc\x4e\x51\x75\xc9\x2e\xd1\x48\x49\x4b\xe6\xa0\x64\xbf\xec\x5b\x5c\x00\xb0\x53\x61\x0d\x69\x55\x1e\x53\x17\x79\x7f\xd4\xce\xd4\x95\x1b\x57\x92\xda\x04\x38\xe5\x1f\x8a\x59\xb8\x50\x74\x9f\x36\x5f\x74\x83\x55\xcb\xb8\x22\x89\x27\xe2\xd9\xc9\xd2\xcd\xe8\x09\xdc\xdd\x40\x5c\x49\x90\x80\x2b\xbf\x96\x49\x13\xd3\x95\xcb\xe3\xc6\xc9\x3a\xd4\xae\x90\x8d\x8a\xcb\xda\xc5\x3e\x68\x4d\x85\xfe\xa5\x7e\x03\xee\xb8\x6a\xbe\x22\x89\xf0\x45\x9d\x24\xcc\x25\x57\xaa\xf7\x32\x5e\x52\x6f\x68\x2a\x09\xe1\x8c\x46\xcd\x97\x5a\x77\x36\x45\xbb\xa8\x18\xe0\xd1\x75\x98\x8c\x9f\xc2\xe5\xfa\x90\xd8\x8f\x52\x4f\xc3\xc8\x90\x1b\xf2\x01\xe3\x10\x9f\x93\x6a\x8e\xc9\x5f\x7b\x06\x83\xc0\x8b\x80\x0e\xec\x4f\x18\xcd\xbf\x45\x58\x02\xfd\xa0\x6f\x22\xf3\xa0\x6d\x78\x7f\x1a\x09\xd2\xd4\xe4\x30\xf5\x50\x5c\xd1\x15\xce\x49\xf0\x7d\xc6\x0a\x41\x11\xb8\x39\xf6\xad\xf8\x07\x28\x0e\x1d\x05\x9c\x05\x13\x51\x11\xaa\x53\xe0\x4c\x8d\x0a\xfd\xab\xf9\xb9\xac\x1e\xb3\xbf\xe9\x27\x6f\x17\xae\xdb\xf5\x9c\xb6\x8b\x68\x6f\xbc\x84\xc3\x50\x56\x3a\x77\x56\x2f\xa7\xff\x74\x74\x16\xb1\xd9\x90\x9d\x98\xc1\xe7\x67\xd8\xc6\xc5\x3e\x17\x47\x5b\x96\x86\xc6\x01\x89\x48\x14\x0a\x51\x31\xa1\x23\x9a\xe1\xe8\xc8\xce\xb9\xd2\x97\xf5\xaf\xda\x5f\xf2\x2a\xb1\x27\xdb\xf4\x34\x1a\xe1\x58\xeb\x78\xdc\x0c\xf2\xfb\x66\x47\xb5\x9c\x8e\x6b\x1a\x5a\x54\xc2\xfa\xd4\xd8\x90\xc1\xe0\x1d\x77\x20\xb1\x3f\x44\x97\x6c\x4d\xa1\x68\xd9\x5b\x0b\x88\xda\xa6\x8a\x82\xe5\xea\x5d\xb5\xad\x3d\x5b\xa4\xcb\xea\xb3\xba\xfd\x79\x93\xb0\x7e\x5d\x02\x5a\x2c\x01\xd5\xb1\x11\xfb\x95\x5c\xde\x76\xa3\x9a\x45\x3b\xd8\xf2\xbd\xa8\x8c\xc5\x6b\x7a\x9b\xa1\xe6\x95\x37\xf6\xc7\xcd\x16\x71\x1d\x91\xa1\x16\x59\xbb\xb5\x13\xf5\x56\xf9\x00\x7e\xa7\x5b\x26\x35\x55\x7b\x01\x4f\x64\xc1\xe8\x00\xfe\x46\xd9\x57\x4c\x00\x9d\x04\xec\xc5\xe1\x70\x2b\xe4\x2b\x88\xc7\xaa\x6d\x8a\x0d\x54\x6a\xe1\x65\xe5\x3d\x66\x46\xda\x7f\x6a\x3e\x17\x1b\xa3\xd7\x86\x0b\x07\x83\x52\xf5\x63\x65\x0a\xaf\x91\xc6\x08\x95\x43\xfb\x48\xfc\x05\x3d\x0c\xc8\x93\x1c\xac\xbf\xc0\x8f\x90\x6e\xc1\xce\xa7\xdd\x91\xf5\x11\xe6\xe1\xa2\x80\x65\xe4\xe3\xd5\x3e\xf2\x0b\xf4\xc0\x42\xb3\x32\x80\x75\x20\x6d\x97\xea\x3c\xaf\x33\x86\xa7\xd9\x24\x5a\x17\x94\xa9\xdb\x08\x4c\xf1\x72\x37\xbc\x57\x9d\xd6\x7a\x88\x84\x98\x29\xb2\xf9\xe2\x06\xec\x1a\xde\x62\x09\x97\x90\x46\xab\x91\x4a\xc9\x43\xb1\x03\xb2\x3e\xea\x8f\xaa\x4d\xc0\x4b\xa6\x67\x61\xa0\x82\xc2\x51\xa6\x41\xaa\x50\xc1\xf0\x18\xb4\x26\x54\x7c\x3e\x28\x53\x97\x0f\x3c\xf6\x8a\x31\x2c\x55\x97\xaa\x11\x3e\x8e\xc8\x92\xa2\x04\x10\xb9\x89\x9b\x2e\x3c\x4f\xdd\x48\x0d\x12\xfb\x31\x26\x35\xac\x92\xb4\xb3\xfa\x2a\xaf\xca\xfc\xb8\xc5\x05\x72\xe0\x92\x20\x2c\x6d\xb2\xe2\xb2\x38\x2a\x26\x5a\x3d\x4e\xc6\x0b\xaa\xd5\xe2\x14\x4f\xbd\x4c\xfa\x87\x9a\xb5\xaa\x4a\x4e\x3c\xc3\x53\x32\x9c\xbb\x84\x79\x8f\x93\xcd\x8f\x61\xf7\x52\xb2\x04\x47\xb8\x0e\xcc\x55\x91\x86\xbf\xa8\x32\x4c\x92\x27\x3c\x95\xff\x46\x16\x2f\xf1\x4b\x3d\x2a\x57\xc8\x16\xc7\xb8\x29\x1f\x29\x72\x83\x94\x1a\x9a\x3a\xd0\xeb\xae\x7e\x86\x2e\x47\xf1\x91\x59\xc0\x4f\x10\xdd\x67\xbd\x14\xc0\x6c\x34\x67\xb3\xf0\x14\x99\xc1\x43\xc4\x59\x98\x49\x02\xb5\xe4\x6a\x85\x55\x64\x94\xa9\xf3\x25\x92\xd5\xf2\x94\x54\x04\xf0\x53\x86\xc6\x4c\x50\x1c\x51\xc7\x05\xad\x54\x8b\xb5\x3c\xef\x32\x5d\xa9\xfe\xaa\x1c\x4d\x5d\xa6\xf8\x24\xc4\xd0\x25\xca\x3e\xe6\x63\xa6\x40\x15\x4b\x0a\x64\xdb\x55\xcf\xeb\x47\x72\x4f\xa8\xb7\x95\x6f\x14\xf8\x6b\x6c\x79\x17\x45\x4b\xb5\x82\xd4\x18\x29\x55\x27\x8f\x19\x2b\x2f\xd3\xdb\x82\xee\xaa\x32\x0c\xeb\xbd\x0f\x6b\x09\xc6\x9f\x32\x88\x54\x03\x16\xf2\xcf\x51\x64\xa0\x1f\x63\x19\x6d\xa7\xf9\x05\x71\x12\x73\x9a\xf9\x62\x9d\x1f\xbb\xcb\x7c\xa4\xec\x0b\x2f\xc9\xbc\x2b\xaf\x44\x38\xd4\xbc\x3e\xe5\xa5\x64\x98\x79\x57\xcc\x68\x20\xdc\xbc\x37\x78\x92\x92\x66\xde\xe3\xe3\xa5\x19\x34\x5f\x97\xe6\x12\x82\x5d\x9e\xbc\xf5\x24\x4a\x63\x01\xbd\x87\x72\xc8\x89\x21\xc4\xd2\x33\x1d\x1a\xb4\x9c\xf9\xd8\x3e\xaf\x4c\xcc\xd9\x67\xdb\x91\xfb\x8a\x7f\xc8\xfa\x6f\xca\x2e\xd1\x6f\xcb\xa9\x98\xe1\x32\x1a\xb2\x3b\x78\xae\xe2\x28\xdc\xea\xc3\xd4\x94\x40\x32\xc9\x25\x7c\x6a\x9b\x3b\x2f\x9f\x68\x6b\xf9\x4c\x8f\x25\x7f\x6f\xde\x84\x7f\x46\x33\x35\x19\xd0\x69\xcc\x08\x57\x5c\x59\x21\xc7\xdb\xf9\x35\xf7\x02\x3f\xd6\xd1\x9b\xb2\x45\x64\xb7\x07\xc7\x4c\x95\x8d\xb0\xb6\x05\x97\x28\xb4\xc8\x35\x1f\xa7\x66\x32\xec\x27\xb1\xe3\x0c\x5d\x58\xee\x5f\xc2\xe5\x8e\x6f\xb4\xef\x64\x74\xbb\x1c\xbf\x97\x7a\xa3\xf5\x0b\x3a\x84\xe1\x6c\xa1\x95\x65\xb2\x91\xa6\x73\xb9\xd7\x79\xeb\x5c\x33\x53\x0e\x8b\x26\x38\x63\x63\xa2\xa4\xbd\xf6\x80\x60\x99\xc2\xdb\xf2\xd4\xe7\x1f\xf5\x3f\xf0\x32\x21\x51\x87\x54\xf7\xb1\x4e\xe8\xfa\xd0\x1d\xe4\x9d\xba\xdb\x18\x7b\x03\x57\x3f\x19\xb7\xa9\xea\x80\x1e\x4f\x9a\x59\xf4\xaf\xfe\x30\x75\x7d\x56\xb1\x21\x8f\xd9\x98\x70\xdd\xf0\x83\xbb\x33\xe2\xa5\xf1\xb2\x28\x28\xc0\xc7\x74\x58\xf6\xda\x43\x6d\x7e\xaa\x1e\x25\xb8\xa9\x1d\x8b\x2e\x62\xd5\x68\xf3\x30\xa3\xc9\x95\xda\x7e\xec\xd1\x86\x11\xda\x6f\x84\x3d\x55\x74\x1d\x8d\xfc\xaa\x48\xa5\x7b\x45\x2f\xc9\x1a\xaf\x77\xb1\x5e\x25\x6c\x34\x50\x79\xe7\x22\x1e\x1a\x71\xa2\xcf\x01\x01\x26\x36\xc0\xf3\x68\x34\xaf\x54\xc7\x08\xca\xd4\x2d\x98\x59\xcc\x0b\xea\x97\xd8\xd5\xa4\xbb\x1a\x16\x21\x16\xb3\x40\x73\x8d\xf4\xb5\x6a\x98\x96\x4e\xfd\x50\x14\xa2\x1b\xcb\xf4\xca\x3c\xa3\x3b\xc9\x01\x13\x5a\xf4\x7b\x05\x01\x11\xb7\x0c\x97\x25\x43\x03\x22\x8d\xbf\xe5\xc1\x1e\xab\xcc\x18\x75\x2f\x3f\x5e\x01\x12\x7e\x32\x0e\x2a\x83\xc8\x28\xe2\x75\xe5\x4b\x6a\x6e\xfd\x0e\xd5\x22\xfa\xfa\xca\x54\x35\x87\x55\x58\x08\x6b\x8a\xb8\x63\x33\xcb\xb5\x59\x82\x21\x09\x79\x3a\xbe\xd8\x27\xe2\xa2\x7e\xa7\x4c\x11\x50\x61\x9c\xae\x1c\xe5\xf1\xc1\xd4\xa7\xb9\xc9\x9b\x2d\xfb\x97\x3e\x8e\x7e\x0c\x68\x62\x3c\x25\xfe\x4f\x2e\x61\x1d\xac\xfb\xae\x20\x73\x8e\x54\xb4\x2b\xd9\xbc\x0f\x05\x3f\x55\x06\x61\x46\xc6\x0b\xf5\x3a\xf1\xf6\x84\x99\xda\x09\x32\x52\xc4\x05\x5d\x8b\x22\x2a\xc0\x60\xf0\x56\x87\x78\xd6\x1b\x4f\xe9\x88\x9c\xc7\x92\x31\xdc\x76\xda\x19\xc9\x2f\xfe\x18\x42\xa6\x6c\x92\x40\x5f\x97\x03\x24\x8a\xa6\x96\xbf\x95\xab\xc5\xa7\x0a\xd4\x8a\x43\xd2\xf9\x19\x0e\x55\x20\x60\x8f\x7f\xad\xde\xad\xd8\x12\x71\x43\x2b\x52\x7d\x09\x18\xd4\x07\x69\xeb\x3d\x0f\x1b\x87\xea\x9f\xb1\x99\x82\x16\x80\x41\x15\x0b\x37\xc9\x6b\x71\x7f\x44\x7f\x15\x91\xe8\x18\x09\x5d\x39\xb3\x7c\x82\xf4\xa5\xca\x33\xff\x28\x00\xaa\xc3\x33\xc6\x28\xe2\x34\xd5\xf1\x1b\x55\x23\xb4\x4b\x23\xee\xa9\x3f\xea\xfe\x04\xfc\xd4\xbe\x33\x90\xbc\xf2\x0c\x43\x8c\xcf\x99\x1f\xb8\x6d\x86\x6f\x94\x44\xde\x03\xe3\x14\xdc\x68\x41\x9d\x11\x55\x4b\x11\x7e\x34\x96\x95\x11\xc5\x83\x46\x7b\x7e\xbe\xb4\xd1\x78\x2a\x7d\x15\xd0\x64\x9a\x16\xef\x52\xf4\x98\x74\x11\xff\xa9\x4e\x99\xee\x04\x46\x6b\x87\x9b\x23\xbc\x96\xe8\xab\xcc\x5d\x8c\x4f\xec\x54\xdb\x7b\x72\x36\xe7\xb0\x8d\x85\x0d\xe0\x71\xac\x67\x6a\x16\x09\x66\x5b\x8b\x4b\xcf\x8b\xfe\x67\x39\x98\x77\x4e\xe2\x61\xc9\x4a\xa7\xc8\x8a\x90\x2d\xf1\x74\x79\x07\x12\x18\xf1\x55\xf9\x13\x06\x03\x71\x1a\x2a\xb4\xdf\xeb\x86\xee\x26\x34\x9e\x61\x64\xe1\x5d\x32\xd2\x43\xf6\x9b\xc6\x8d\x0d\x67\xb8\x4b\x9d\x97\x6b\xc8\x7c\xa6\x73\x68\xe9\x2a\x61\x89\x63\x56\xde\x76\xb1\xc8\x5e\x98\x5e\x23\xdd\x6a\xab\x8f\x67\xc8\x67\x5a\xd1\x91\x23\x95\x3d\x96\xb8\x40\xa1\x66\x2a\xfc\xcc\xeb\x93\x6e\x11\xb4\x86\x11\xc8\x5c\xd1\x5a\x44\xea\x65\xa7\xb5\x10\x1a\x3a\x38\x5f\x9a\x2b\x6b\x52\x79\x3b\x9a\x52\x4a\xe7\x09\x7a\x5d\xd3\xf3\x36\x8a\x4e\x3a\xdf\xa6\x63\xa5\x3e\x8e\x81\x78\x25\xd0\x61\xcf\x8a\x0c\x50\x86\x5a\x37\x07\xf6\xaa\x37\x22\x6f\xbd\xc3\x75\x79\xf0\x5c\xf2\x30\x2b\xa5\xa6\x0c\x4b\xb7\x3c\xad\x8b\xab\xc5\x5b\x6c\x0d\x41\xe5\x41\x96\xd1\xf8\x8a\x82\x55\x48\x1b\x69\x30\xf3\x35\x32\x97\x86\x4d\xfa\x17\xbe\xcd\xca\x89\x7e\x04\x77\xf0\x90\x90\x5e\x98\x24\x1e\xe5\x47\x81\xe3\x81\xcb\xee\xb9\x70\x82\xfa\x31\xa9\xc3\x32\x06\xbd\x10\x3b\x1a\x59\x8a\xa1\xd4\x4e\x45\xea\x70\xe1\x65\x8f\xe1\xaf\xc4\xd9\x05\x62\x78\x31\x85\x98\x79\x00\xc6\xd3\x4f\x25\xad\x80\x03\xd8\xda\xe8\x8b\xd0\x37\xbe\x3a\xa4\x1f\x7a\x24\xde\xea\x27\x81\xae\xc8\x63\xdc\xe9\xd0\x5b\xf5\x7b\x92\x17\xbc\x01\xe3\xdd\xd0\x0f\x37\x60\xf7\xd4\x1c\x84\x51\x04\x5a\xd9\x12\xe8\x26\x39\xba\x20\x0a\x5a\x46\x4b\xc9\x6c\x86\x74\x4c\x65\x12\x08\x11\x39\xef\xa3\x0f\x41\x35\x82\xb5\x21\x6b\x20\xac\x64\x89\x9f\x05\x62\xc9\x2f\xba\x5b\xa1\x5e\x4d\x36\xb1\xd0\x7c\x8b\xa0\xc5\x3c\x37\xff\x43\x3a\x54\xe3\x6b\xde\x49\x9d\x58\xf6\x3f\xf3\x3a\x7a\x53\xfe\x80\x79\x1d\x2b\x33\x33\xc8\xbc\x93\xeb\x9b\x94\x68\x3e\x2d\x88\x8d\x5e\x64\xfe\x26\x16\x87\xfc\x03\xc6\xc9\x1e\xfb\xed\x04\xc5\x4a\xa7\xfb\x0d\xf0\x92\x96\x4e\x48\x35\x12\xa9\x7f\x31\xd3\x8c\xe5\x8c\x29\xd5\x66\x23\x96\xe5\x55\xaa\x35\x42\x9c\x8c\xfc\x28\xe3\x2e\x5e\x53\xc6\x71\xe3\x47\xe1\xb0\xc4\x1f\xa6\x64\xf1\xb2\xe8\x0e\x53\xb7\x4c\x1d\x72\xd9\x3c\x4c\x21\xf3\xfb\x62\x16\xa9\x5d\x1e\x29\xe6\xdf\xba\x73\x78\x9a\x6e\x1f\x67\x7a\x3d\x56\x77\x83\x3b\x58\xf5\x4c\x3f\x89\x4f\x2a\xf9\x4f\xcf\x17\xa2\xf2\x76\xe9\x2f\x89\x87\x67\x48\x0c\xe9\xd2\x51\x89\x07\x0d\x9b\x81\xb0\x68\x97\x31\x43\xd1\x1e\xf2\xd1\x78\x53\x3d\x69\x56\x8a\x49\xa3\xed\xf4\x58\x60\x9e\x6b\x28\xc0\x25\xaa\x4b\xa5\x9e\x75\xd5\xea\x05\xb2\xb4\xca\x27\x9a\x59\x40\x5d\x49\xa0\x66\x9d\x5c\x9d\x37\x4d\x8b\x51\x0c\xa6\xff\xa7\x1b\xa3\x9a\x92\x28\xd0\x1d\x57\xeb\xa2\xa5\x7a\x8b\xd6\x3b\x74\x9a\xa1\x56\x77\x64\x96\xdd\x18\x6d\x20\x7a\xce\x36\x05\x98\xa6\x61\xdd\x15\x38\x6d\x3f\x9a\xac\x78\xa0\x9b\x51\x99\xa8\xb4\xeb\xd4\xc5\xed\xaa\x22\xdd\xc7\xdc\x15\xea\xd9\x7a\x28\xbd\x5b\xe3\x65\xf0\x4d\x4c\xd1\xce\x30\xec\x8d\x66\xe9\xdc\x8c\xd6\xd0\x74\xbd\xbf\xa9\x68\xd6\x39\x43\xaa\xe9\xb1\xa7\xcd\xc8\x34\x37\x37\xe4\x00\x13\xe0\x9e\xda\x7e\xe0\x00\x6c\xa9\xe8\x92\xb7\xc3\xf8\xe2\x91\x0a\x05\x9c\x90\x9b\xad\x14\xc1\xee\xe9\x18\x55\x13\xf4\x2b\x71\x9a\xfa\x08\x74\x23\x9a\xae\xf9\x0d\x0d\x86\xa2\x75\x85\x90\xd5\x7f\xb4\xde\x09\xc5\x78\xee\x37\xdc\x07\x2f\x62\x7e\xca\xa2\x6d\x07\x6b\x49\xb2\x57\x36\x51\x45\x19\x70\xcc\x36\xb2\xe8\xb2\x7c\x8d\x75\x7e\xee\x2c\xc5\x4a\x6b\x58\x7a\x89\xf2\xba\x65\x6f\xe2\x44\x75\x90\x25\x3b\x5a\xa4\xd1\x20\xdb\x43\xb9\xda\xfb\xc8\x64\x7f\x5f\x7d\x12\x9c\xe2\x79\xc9\xd0\x0f\x61\x30\x27\xa4\xda\xc6\x8a\xda\x08\x59\x82\xf3\x74\x85\x3f\x30\xcd\x19\x5d\x74\x18\x78\xe3\x70\xe5\x06\xc8\x1f\xda\x6f\xa5\xa3\x95\xc1\xf6\xf0\xc4\xd9\x2a\xd8\x46\x8d\x6e\x54\xbf\xb6\x6a\x42\x9b\xb5\x3c\x8b\xd8\xbf\x4a\x77\x03\x09\xf1\x1a\x66\x28\x87\xee\x55\x0d\xb6\xb5\xd4\x3c\x29\x23\xb7\xe6\xd7\xdd\x2d\xec\x69\x99\xd9\xf0\x34\x87\xdf\x74\x9f\xe0\x99\x3e\xda\xb5\x82\xdc\x99\x08\x35\x0a\xe9\xc5\x31\x2b\x9d\x91\xec\x82\x70\x9e\xfd\x1c\x7f\x5d\xe0\xbf\x36\xbb\x24\x03\x35\xdc\x9a\x2d\xff\xea\xa6\xb4\xb8\x69\x1e\x57\xd9\x5b\x13\xeb\xc6\x97\x45\xb5\x8c\xc5\xdc\x2d\xe4\x37\x7d\xc6\xed\xcf\x29\x72\xdd\x24\x1e\x4e\x7b\xd7\xb8\x93\x3a\x3e\x51\xee\xec\x65\xb4\xc5\x2c\x73\xc8\x39\x0d\xe1\x5c\x7b\x9c\x40\x1b\x78\xdd\x36\x5c\x72\x04\xe5\x65\xb9\xad\x88\x75\x5b\x88\x1c\xd3\x5c\xa8\x2a\x6f\xbe\x89\xa1\x95\x7e\x6a\x3a\x89\x9b\x5c\x98\xe0\x3a\x47\x38\x9d\x13\xd0\x78\x9c\xbc\x2c\xed\x9c\xf3\x10\xed\x9f\x44\xb2\x63\x2f\x6b\x7a\x4c\x8f\x7d\x33\x77\x20\x5c\x60\x73\x09\x1d\x81\x2f\xac\x80\xb4\x15\x95\x6c\x61\x28\x06\xdd\xfe\x45\xf8\xda\xf1\x95\xbb\x5d\xf5\x84\xd0\x52\x6d\x23\x81\xd4\x5d\x70\xcd\xa9\xa7\x4e\xcc\x3e\xe9\x58\x43\x5f\x91\xe6\xb0\x5f\x65\x01\x89\xd1\xb6\xbf\x5c\x75\x0c\x68\x9b\x25\xd8\x14\xce\xb7\xc6\x49\x26\xcc\x9e\x60\xc9\x06\x16\xa3\x94\x08\x43\x95\xef\x3e\x03\x5e\xa8\x9b\x5c\x39\xc4\xb1\x9d\x2a\x2c\xb9\x6e\xff\x4a\x77\x16\x60\xec\x69\xcc\x6d\xd9\x14\x5b\x17\xfb\x73\x5a\x82\xf5\x0d\x8f\x95\xf0\xd5\x9a\x2d\x1c\x13\xc3\xb4\xb4\x8a\x2f\x87\xcb\x91\x53\xb2\x5b\xb3\x13\x91\x11\x8a\x3f\xa8\x41\x18\xa3\x09\x70\xe7\x43\x07\xf5\xbc\x8a\x02\x9b\x98\x75\xb7\x24\xdb\xba\x85\xb3\x21\xff\x8e\x75\x02\xcf\x9a\xf5\xd3\xd2\x22\x10\xa4\x3e\xb7\x4c\x15\xe9\x12\x8e\x20\xcd\x92\x6d\x31\x15\xc8\x68\x60\x7c\x38\x04\xf3\x14\xdb\x66\xb3\xa0\xb3\x6a\x2e\xea\x0f\x54\xa7\x1b\xef\xbe\x0f\xfc\xcf\x70\xb4\x9c\x07\xbf\x10\x8f\x2d\x6e\x86\xd5\x12\x41\x3e\x1a\xf6\x90\x9e\xcd\xb2\x42\x17\x81\xa8\xd4\x36\xa8\x51\xbe\x3a\xa1\x0d\x2a\x56\xe6\xc6\x64\x41\x23\x55\xef\xc3\x97\x81\x0b\x34\x77\x66\x6f\x07\xe3\x75\x67\x7c\xa5\xe6\x6f\x86\x79\x1e\x0d\xe6\xb3\x26\x71\xd9\x0e\x70\xb4\xaa\xa7\x78\x88\xf9\x90\x9a\x95\xf7\xc8\xdc\xa1\x09\xcf\x4a\x37\x0b\x35\x1f\x53\x29\xe6\x3a\xed\xd9\x04\x89\xb9\x48\x77\x2c\x26\xd6\x9c\xac\x3f\x14\xbe\xc7\xec\x6d\x78\x34\xfb\xa3\x79\x98\xf1\x87\xef\x5e\xd3\x5f\xd3\x15\x8f\xfd\xa6\xbf\xe6\xad\x65\xa1\xc6\x27\xa6\x03\x45\x46\xe3\x4a\xf3\xc4\x3c\xc0\xd8\x6c\xae\xc8\xbc\x6b\xb4\x98\x9d\xa9\x73\x8d\x9d\xe6\x63\x09\xb5\xc6\x75\xa0\x5b\x4c\x92\xf1\x22\xc8\x0c\xbf\x6e\x7c\x0b\xae\x0c\xf2\x36\x4d\x00\x1f\xfb\x8d\x32\xa5\x82\xf7\x3d\x47\x98\x24\xe0\xf9\xd2\xfd\x86\xef\xb0\xb2\x28\xc5\x70\x14\x6e\xcb\x2b\x34\x6c\x81\x17\x64\xfe\x6b\x18\x80\xe7\xa7\xfa\x1b\xf6\xc0\x4b\x12\x70\x86\xe7\xf0\x82\x98\x12\x63\x30\xdc\x19\xfe\xc5\x88\x83\xe5\x41\x45\xc6\x2e\x38\xd3\x2f\xd8\xf8\x00\x3a\xe8\x19\x64\x8a\x85\x32\x4b\x69\x86\x28\xeb\xc2\xa2\xa1\xfa\xdf\xd6\xee\xbc\x70\xfd\x2b\xab\x3a\x73\xb7\xfe\x81\xb5\x28\xd5\x5d\xff\xdc\x3a\x35\x81\x63\x88\xb6\x5c\x8c\x61\x1b\x10\x8b\x2e\x22\xc8\x70\xc4\x32\x3a\xa8\xc5\x38\x11\x91\xf9\x51\x8d\x0a\xb8\xd5\x33\xd7\xf8\x0c\x5a\x50\xd2\x37\x6f\x77\x6d\x54\x41\x4b\x97\x5f\x7d\x50\x4e\x55\x07\x84\xcd\x4d\xb7\xb5\x0f\x23\x28\x92\x06\x5a\xb9\xe4\xdf\xb1\x6b\x9a\xcf\xd3\x07\xa3\x58\x4d\x01\xec\x83\x21\xcf\x1b\x33\x05\xb1\x01\xff\x73\x00\x92\xe3\xde\x3f\x6c\x2b\x14\x0a\xb7\x08\xcb\x2b\x6d\x69\x09\xb5\x4b\x52\x97\x57\xc0\xee\x78\xdd\xe0\x96\x13\xd5\xce\xc3\x8f\x4d\x57\xb4\xfe\x25\x4d\x4c\x5a\xd8\x62\xa4\x92\x63\xd7\x34\xfd\x66\xbc\x8d\x12\xb8\xb8\x9c\x83\x21\x6f\x9d\xfd\x82\x77\x01\x7e\xf6\x57\xd2\x4c\x9f\x19\xb6\x54\xc5\x52\x37\xb4\x65\x9e\x36\xb4\x04\xd5\xe9\x8f\x71\x15\xc4\xb5\x6f\xc3\xa5\xe7\x8c\x6e\x2b\x21\x8e\x4d\x27\xb6\xfc\x47\xbe\x9d\xd4\xd8\xec\xa4\xfd\x89\x5d\xd2\xe4\xcb\xa2\x45\x89\x1a\x97\xf3\x86\x87\x7c\x71\x7c\x17\xbe\x0f\x48\xb4\xd7\x4b\xff\xf8\xc4\x59\xf7\x2b\xbd\xdc\x74\x96\x38\x6d\x43\xf1\xa1\x36\x33\x21\x2e\xff\x69\x6b\x2a\x69\x51\xf6\xc9\xe6\xbf\x54\xdf\x74\xff\xa6\x6b\xf4\x7f\x92\x78\xae\x25\xac\xee\xd8\xe6\x46\x2a\x77\x6d\x94\xcc\x39\x43\xf0\x29\x74\xa8\x7d\xa9\x04\x1f\x40\xb5\x79\x03\xdf\x7c\x44\x96\x5d\xaa\x6e\xb7\xc3\x08\x55\x57\x5b\x8c\x6a\xfe\x40\x9d\x9b\xdf\xd0\x74\x87\x4e\xc8\xae\x74\x9d\x62\xf6\xa4\x1d\x6d\x3c\xc1\x7e\x92\x34\xcb\xb9\x9b\xc7\x88\xa5\x39\xfa\x85\x1e\x51\x14\xbb\x49\xfc\x35\x74\x86\x2d\x06\x98\x1a\xd0\x64\xb9\xa2\xcc\xf3\xd9\x84\x2c\xd7\xf0\xdc\xc7\xc2\x88\x7e\x4d\x91\xcb\xb5\x84\xc5\xc9\xbb\xd3\xd8\xc7\x29\xc9\x7a\xea\xec\xe7\x65\xa6\xc9\x1d\x27\x04\xd1\x89\x2f\xed\x77\x44\x95\xb1\x39\xb6\x77\x92\x25\x51\x58\xeb\x67\x60\x52\xe8\x1c\xcb\x09\xc5\x85\x80\x7d\x48\xb7\x7a\xa1\xcf\x67\xb8\x57\x57\xe0\x4e\x82\xd6\x1b\xfe\x14\x5e\x74\x64\x8a\xb2\xf2\xaa\xec\x32\xf1\xae\x2c\x93\x6d\xa7\x34\x31\x2d\xc0\xf6\x3f\xd9\xfa\xc4\x4d\xd6\x6a\x79\x6e\x6c\x94\x65\xb1\xe2\x67\x14\x1b\x79\xac\xfa\x37\x94\x0b\xbf\xd3\x5c\x0a\x0c\x84\x3e\xeb\xee\xa1\x64\x50\xbc\x61\x93\xfb\x47\x10\x31\xb5\x15\x92\xad\x18\x25\x37\xf7\xb3\x65\x50\x55\x93\x95\x61\x09\x57\xe7\xa4\x7e\x47\x96\x69\x66\x27\x2e\x46\x66\x68\x67\xc7\x46\xc1\x0b\x75\x19\x51\x10\xec\xa3\xc7\x87\xf6\x42\x4c\x43\x7f\xa0\x18\x1c\x30\xde\x46\xdd\x04\x83\x4d\x27\x3d\xf0\xe6\x6d\xe6\x1d\x85\x23\x90\x31\xc6\x90\xdc\x5e\x18\x31\xf6\x64\x3e\x86\x3d\x4c\xa3\x52\x77\x41\x2b\x4d\xdc\x44\x0b\x94\x61\x7a\x1c\x1b\x00\xbe\x34\x57\x47\xb9\xc0\x5e\xf3\xd1\xd0\x93\x60\x30\x98\x12\xb8\xd3\xbc\x1d\x5c\xe8\xeb\x63\xe6\x83\xeb\x3d\x56\x99\x43\xc1\x5d\x05\x47\xe1\xe9\xe0\xf6\x5c\x00\xea\x02\xff\xcb\x3c\x01\xcd\x85\x22\x53\x57\x82\x47\xa1\xfa\x44\x2d\xc8\x80\x9a\x63\xc3\xc0\xd9\xd0\xf6\xa8\x65\xe6\xd7\xd0\xad\xd0\x97\xe6\x0e\xe8\x75\xe0\x53\x73\x0a\xf4\xd4\x37\xd3\x3c\x09\x6a\xf1\x38\x68\x7a\x0e\x45\x14\xb4\x40\x99\xc8\x60\x6e\x35\x78\x10\xb9\x98\xf9\x0f\x48\x42\x9e\xa7\x2e\x35\xbf\x47\x1e\x27\x6a\xcd\x4e\xe4\x6d\x6c\xb6\x99\x86\x5c\x8f\x3a\x6d\x4e\x45\x76\x87\xa1\x4c\x9f\x10\x60\x76\x90\x69\x03\x32\xc5\x57\x6e\x5a\x0a\x63\x3d\xae\x9b\x16\x41\x8d\xf9\x48\x9f\x5b\x2d\x2b\x7b\xfd\xfc\xac\x7a\x5c\xfa\xd1\xee\x1a\xac\x31\x99\xdc\xd5\x4c\xd8\x15\x77\xb3\x63\x0b\x25\x2b\xba\xba\xed\x30\x63\x54\xb8\xb3\x65\x90\x33\x35\x68\xa0\x89\x2e\x68\x9a\xe5\x6a\x0c\x92\x86\x79\xbb\xd9\xef\x29\x0e\xce\xfc\x6e\xed\xd7\x1a\xf2\x33\xe6\xdf\xaa\x53\x64\xbb\x7a\x26\x37\xe4\xa7\x6f\x9c\x97\x89\x4f\x4b\xae\xeb\x6c\x21\xe5\xc7\x5d\x6f\x3f\x4a\xed\x89\xc6\xb5\xbe\x63\x46\x87\x77\x37\xff\xe4\x8e\x0e\xda\xe3\x3a\x22\xcc\x9a\xb5\xcc\xd9\x23\x6d\xf3\x8e\xb0\x4b\x14\x0f\xdd\x66\x5a\x4b\xb4\x15\x79\xef\x7b\x7a\x31\xdb\xb3\x69\xf3\xee\xe0\x98\xe9\xad\x5d\x81\xc4\x98\xe4\xa2\x0e\x84\x32\x26\xee\x7a\xdb\x05\x7a\x78\x34\xa9\x75\x0a\xab\x37\x7c\x65\x73\x02\x2f\x27\xe8\x94\xcb\x5d\x94\x34\x6b\xa7\xe3\xb7\xac\xd0\xbb\xd0\xf6\x56\x59\xeb\x36\xd7\xf2\x44\xab\xca\x3b\xd6\x75\x8d\x50\x9a\x9d\xd6\x59\x4f\xda\x98\xce\x6f\xbf\x49\x0d\x4d\x0e\x69\xe3\xd1\xcf\xc6\x1d\x6b\x79\xca\xda\x18\x4d\x6a\xae\xe2\x5e\x08\xdf\xe9\x5a\x2a\xf4\x0f\x7a\xee\xfc\x47\x32\x7f\xd6\x7d\xfb\x4e\x79\x9c\xb7\xd6\x7a\x5f\x75\xd4\x4d\x60\x19\xaf\xe3\xe7\x25\x76\x60\xa9\x53\xb2\x0e\xb4\x0f\xa1\xe7\xa4\x0f\x6f\xdd\xc0\xb4\x26\xdd\x6c\xa1\xb0\x6f\xc5\x75\x34\x0f\xe1\xd1\xa3\x73\x5c\x6d\xc2\x90\xf0\x6d\x8d\x63\x25\x53\x82\xfe\x3a\xf2\x80\x34\xff\x49\x36\x8e\x52\xe5\xbd\xcb\xf2\xaf\xa6\xd3\x6d\x23\x12\xac\x3f\x94\x7b\xbc\xf5\x1b\xcb\x2d\x0b\xd3\x72\x80\x33\x3a\x6d\x59\x73\x0b\x6f\x74\x52\x5b\x13\x4d\x30\x32\x8e\xe5\x0a\x12\xcd\x89\x8e\x70\xde\x92\xb4\x85\xef\x70\xe8\x81\xc9\xc1\x5e\xb6\x6b\x8a\x67\xfe\x79\xd6\x00\xf5\x21\xef\xbf\xc8\x56\x1d\xdf\x7d\x38\x5c\x64\xf4\xcc\x0d\x6b\xda\x25\xdc\x98\xf9\xca\xb5\x52\x9c\x98\xc6\x6a\x5c\x2a\x39\x99\xc4\x73\x2e\x90\x55\xc5\xd5\x3a\x9a\x80\x6f\xd1\x89\x76\x93\xe2\x58\xf8\x7d\x1b\x45\xb5\x32\x98\x6d\x79\xaf\x39\xe3\xbf\x09\x51\xe8\xde\xfa\x68\xe0\x52\xc3\x61\x77\x04\x0a\x34\x2d\xcd\xf9\xe8\x3c\xa6\x80\x33\xf7\x39\x9e\x29\xc1\xb4\x1c\xc7\x74\x95\x25\x09\x63\x8f\x57\x23\x71\x35\xb6\x4a\x4d\x5f\x74\x95\x55\xa7\x3d\x11\x31\xcd\xd2\xa7\xfb\x15\xbc\x1d\xa1\x18\xd8\x01\xee\xb0\xb7\xf1\xb0\xcf\x6b\x28\xc1\xb4\xdf\xfd\x2b\x58\x6c\x1e\xcc\x39\x6a\x2f\xd1\x3f\xcb\xb4\xd8\xda\x0d\x8a\xb4\xff\x59\x5f\x1b\x87\x27\xcd\xb1\xce\x36\xda\xe3\x52\x2d\x44\x93\x57\x34\x1a\xd9\x69\xda\x10\x11\x8d\x8c\x35\xa7\x05\x7f\x80\xa7\x9b\xaf\x06\xc8\x20\x0f\x10\x8b\x4a\x02\x15\xa0\xd6\x23\xca\x7c\x0e\x74\xe6\x6c\xb6\x95\x98\xab\x33\xd5\xd6\x6e\xf3\x40\xea\x47\xcb\x2f\x70\x78\x52\xa0\x25\x05\xac\x8d\x4b\x44\x74\xe0\x96\x68\x22\xfc\x0c\xfc\x1d\x51\x08\x97\x40\xb9\x21\x33\x21\x35\xa4\x0b\x58\x0e\x2e\x81\xfa\x50\x78\xd0\x1d\x6a\xf0\xc8\x31\x77\x40\x43\x72\x96\x58\xb9\x70\x62\x26\xdf\xb2\x13\xe6\xa5\x3e\xb5\x78\xc1\x3d\x49\xfe\x08\x01\x3e\x1c\x97\x09\xf7\xc3\x1f\xa3\xa5\xb0\x37\x32\x2e\x82\x06\x75\x21\xd3\x42\x32\xc1\x6b\xf0\xaf\x80\x8b\xa0\x07\x7c\x04\x05\x99\xd7\xc2\xb1\x1e\x78\x73\x26\xd4\xd5\xf9\x0b\x5b\x57\x3e\xbf\xb1\x16\xef\x59\xf5\x19\x5c\x44\x78\x8b\x2e\x55\x05\x92\xc3\x31\xb7\x04\x89\xd4\x55\x78\x17\xe5\x12\xa3\x94\xcc\x45\x1f\x60\x67\xd3\x55\x85\x20\xef\x1c\xfb\x65\xf2\x79\x91\x43\x40\x0a\x3f\x21\x3b\x28\xf9\xea\xb3\x45\x25\x52\x3c\xea\x74\xc7\x44\x55\xa7\x38\xe7\x61\x3d\xd1\xd5\xe6\xfb\xf8\x50\x0c\x45\x09\x12\xbb\x71\x8b\xf8\xeb\x28\xf9\xa4\xa1\x14\x3c\xdd\x8b\xda\x86\xc6\xb1\x72\x99\xd5\x85\xf1\xdc\xef\x5c\x56\xb2\x4b\xf8\x42\x68\x09\x5f\x2f\xcb\x97\x9e\xf4\x59\xae\xf2\x52\x92\x3a\x3c\xeb\x46\xa2\xbf\x39\x6e\x61\xfc\x31\xe7\xcd\xde\x58\x1a\x6e\xa1\xe2\x1a\x61\x04\xd1\xc1\xf7\x25\xdd\xa5\x2c\x26\x3f\xa4\x3e\xa1\x3f\xa9\xfd\xc2\xcc\x60\x63\x0a\xde\x72\x3d\xf8\x13\x93\x2b\x84\xe9\xa2\x1b\xe1\xa0\xf4\x5f\xd9\x29\x9f\x7e\xe5\x6e\xd5\xe8\xb6\x39\xd5\xe3\x08\x64\x7b\x60\xad\x86\xb4\xc3\xb8\xa2\xde\x8d\x3a\x4c\xde\xd1\xf0\x87\xae\xe4\x8d\x27\x04\xb2\xc6\x93\x7e\x90\xad\x9c\x03\xb5\x29\xf4\x24\xfe\x82\x02\x2e\x1b\x2f\xea\x4b\x7a\xce\xbf\x2b\x3d\x18\x4e\x94\xac\x57\x4c\xf2\x39\xa8\x78\xa2\x5e\xd2\x62\x2e\x9f\xc8\x08\xb3\xae\xa8\x3c\xc3\x9a\x60\xc0\xd7\xec\x63\xbf\x07\x54\x75\x1f\xb9\x17\xb8\x28\x2c\x87\x7f\x99\x14\x49\xf4\x17\x3e\xab\x69\xa3\x46\x48\xbc\xf3\x5f\x33\x57\xca\xc4\x49\xbd\x3c\x83\xfc\x61\x78\x9d\xb8\x45\x85\xa0\x86\x28\x46\x6a\x69\x4d\x57\x8a\xab\x04\x1a\x4b\x7c\x19\x5e\x78\x59\xef\x57\x39\x4f\x1c\x29\xe3\xd6\x4e\x97\x28\x39\x59\xf5\x17\xa5\x77\x89\x12\xdc\x7d\xa0\xa8\xfa\x2b\x39\x5d\x7e\x3a\xdf\xcc\x18\xa3\xe4\x26\x91\xb8\xd1\x6a\xaf\x70\x9a\x08\xd2\x8e\x42\x61\xe4\x73\xf5\x01\x8d\x5b\xf3\x16\x68\xc6\xc1\x73\x8b\x46\x6a\xba\xb4\x59\xa5\xcb\xb5\x5e\x92\x7f\x2b\x2d\x5a\x23\xeb\x46\xed\x6a\xed\x37\x02\xa6\xc1\x53\xc7\xab\x8e\x21\xdc\xd1\xbd\xcc\x9f\x40\x1b\xaf\x97\x25\xe5\xb0\x3b\xf5\x7f\xc3\x5b\x84\xa5\x86\x23\xa8\x73\x00\xce\xb8\xce\x21\xcf\x5a\x6e\x8d\x07\x4b\xf2\x14\x96\x8b\xea\x55\x45\x5a\x0b\x5f\x4c\x29\xdb\x80\xdc\x67\x0e\x54\x07\x23\x54\xbc\xa0\xee\x1d\x7c\xa6\xaa\x09\x3f\x06\x8e\xcf\xdb\x4a\x69\x81\xda\x93\xe2\x59\x42\xf0\x41\xf8\x41\x81\x09\x64\xf9\x66\xcb\x1e\x9b\x7f\xd9\x83\xd2\x8f\xb5\x0f\x9a\x27\x64\x5f\x69\xeb\x50\x99\x0a\x3c\x5a\x29\x22\x6c\x49\x63\xf3\x07\xc6\xd1\xca\xfc\x26\x13\xee\x2c\xba\xb8\xf1\x6b\x55\x22\x76\x99\xb3\x2e\x6f\x09\x59\x63\x6f\x4a\x92\x30\xdb\xad\x6b\x23\x26\xf3\xff\x22\x97\x7c\x57\xca\xf6\x40\x5f\x6d\x47\xd3\x4e\xf5\x70\x4c\xae\xac\xbb\xf3\xbe\xa8\x7c\xf3\xe3\xbb\x08\xa2\xd1\xc5\xff\x74\x34\x32\xcc\x15\xae\xb6\x75\xb8\x95\xb5\x2b\x5a\xb6\x56\x45\x61\xa7\x37\xcd\xcb\x5b\x47\x9e\xdc\x98\x91\xb4\x8c\x99\x6c\x3f\x1b\x51\xc4\x3f\x61\x2d\xf7\xbd\x23\x5b\x0b\xef\xb6\x2d\x48\x9b\xb6\x70\xb6\x29\x2d\x6b\x56\x9f\x49\xf9\x5f\x1e\x38\xbf\x4d\xf8\xa8\x78\x5a\xb7\x84\xc1\x2e\xff\xaf\x2b\x1e\xb7\xb2\x76\x46\xfb\xdd\xaa\xe2\x86\xf6\xd6\xba\xbc\xb3\xa4\x8d\x4d\x8a\xa4\xb7\x8c\xdb\xce\xc6\x88\x66\xbe\xcb\xc6\xf7\x9b\x25\x73\x22\xd1\x6d\x08\x7e\xa0\x7c\xb3\x7d\x0e\x31\xb5\x7a\x8c\x71\x05\xe9\x3d\x1a\x23\x57\x52\x3e\x62\x1e\x72\xaf\xd0\xe3\xf0\x5d\xa4\x23\xcc\xd5\x64\x59\xed\x58\x0e\x9f\x6e\x29\x88\xe1\xef\x64\x7f\x4d\xba\x25\x4e\x11\xe8\xc3\x6b\x80\x30\x69\xa8\xcf\x7a\x55\x8b\x32\xa6\x75\x01\xb6\xb9\x3a\xda\x26\xc1\x97\xa3\xf3\x0d\xff\x11\x13\x31\xb5\xc0\x6d\x32\x07\xd7\xc5\xad\xa7\xde\x24\xfe\x22\xa1\x19\x66\x6a\x4b\xcd\x7a\x36\xc0\x44\xe7\xbf\xe6\x3d\xe7\x8a\x92\x96\x89\x16\x0b\x17\x85\xa7\xc8\xb6\x49\xbf\xfb\xac\x56\x65\x2b\x57\xb5\xac\xc1\x00\xe8\xcb\xd6\x01\x2c\x09\xb3\xce\x90\x84\xd7\xe1\x94\x40\x2a\xf1\x36\x51\xc2\x39\x4b\xd1\x52\x5a\x89\x8f\xe8\x55\xf4\xeb\x35\x15\x2c\x80\x5d\x93\xbf\x8a\x37\x99\x3f\x39\x89\x27\xfc\x26\x7a\x1d\xee\x2d\x8b\x93\x7d\xf2\x59\xa7\x7c\xa4\x2a\x6d\xba\x56\xab\x25\x24\x58\x26\xd7\xfd\x43\x72\xe9\xae\x36\x44\x51\xae\xcb\xc6\xe2\xee\xd1\xcb\xd8\xa7\x89\x67\x98\xcf\x88\x63\x29\x3f\x39\x4b\xab\x97\x30\x94\x7c\x6b\x7e\x28\x87\x28\xea\x48\x1a\x27\x58\x22\x3d\x11\x3e\x54\x1a\xa0\x88\xf6\x39\xaf\x9c\xaa\xbe\xed\x9a\x52\xb9\x82\x7e\x03\xb6\xd6\xc4\x30\x0f\x6a\x6d\xe8\x77\xec\x55\x92\xd7\x98\xa7\xdc\x26\xd6\x3d\xbc\x0f\xbf\x9b\x90\x49\x5a\x26\xdc\x56\xf5\x83\x06\x88\xbf\xe4\x6d\x63\x6d\x92\xe1\x13\x0f\xf3\xf3\xe4\xf7\xc2\xfe\x4a\xc6\xa8\x16\xa2\x66\x28\xe2\xb4\xdd\x4e\x55\xe9\x1f\xc1\x28\xc8\xb3\xe2\xaa\x90\xa5\x29\xac\xbe\x2f\x3a\x2c\xbe\x5d\xe7\x21\x99\xc1\x1a\xd2\xd0\x2e\xb5\xe1\x61\x02\x57\xf6\xb7\x8a\x4e\x71\xc9\x3b\xf2\x2a\x98\xee\xca\xfc\xc4\x2e\xee\x2f\xf5\xe4\xf0\x99\xa2\x3f\x5a\x0f\x94\x42\xce\xd0\xd7\xd8\xeb\x0b\x31\xea\x2a\x73\x58\x09\xac\x7e\xa3\x72\x94\x3f\xd7\xc0\xa2\xca\xea\x26\xcd\x47\xc6\x40\x9d\x5c\xab\xc7\xa9\xb0\x1b\x75\x43\x2a\x57\x92\x12\x74\x9d\xb9\x8f\xe8\xfe\xfa\xb8\x44\x84\x43\xd3\xdf\x0d\xcf\x14\x9e\x34\x1c\x40\x7d\x00\xec\xc6\x13\x56\x7a\x6e\x91\xa5\xd2\xa8\x2c\x78\x8c\xfc\x50\x4e\x2d\xd9\x8a\x2c\x15\x0e\xad\xd8\x81\x04\xd3\x2d\x35\x3f\xe0\x41\xec\x3c\x8c\x13\x4e\xab\x1c\x47\xe0\x42\x7b\x73\xbb\xa8\xab\xa0\x84\x44\x88\x9d\x04\xae\x0c\x57\x0b\x7e\x80\x45\xbe\x7c\x60\x02\x38\xca\x32\x2e\x0b\xd3\xd6\x63\x88\xce\x4b\x6b\x85\xe5\x0f\x8a\x6a\x5a\xc8\xfc\x5f\x65\x4d\xcd\xa3\x68\x1b\xaa\x27\xb9\x06\xb0\x43\xea\xee\x36\xa6\x56\x0c\xe2\x7e\x3b\x76\xe6\x82\x14\x97\x7d\x52\xe2\x3e\x16\xd1\x5a\x19\x7e\x46\x00\x20\x0b\x7c\xaf\xca\xee\x40\xef\x90\xf9\x99\xb8\xee\x24\xfd\xae\xdc\xdc\xae\xb3\x72\x5d\xa1\xa0\x33\x8f\x3f\x50\xba\xbb\xdd\x49\x13\x54\xd5\xb6\x1e\x6c\xb8\x55\x17\xd7\xfc\xa4\x62\x0b\x8e\xef\x7a\x91\xdb\x46\xf1\x72\x6e\x4b\xfc\xc2\xfc\x6d\xe7\x44\x8c\x16\xa4\x58\x27\xf9\x4d\x94\x9d\x80\xd7\x21\xd8\x8c\x45\x7d\x6f\xf4\xdc\x1c\x6b\x6f\xae\x3c\xbf\x60\x5b\x0f\x87\x0f\x97\x8e\x9f\x47\xa2\xd5\x57\x6e\xe8\x4c\x6d\xb8\x8d\x5e\xd4\x3e\xbc\xe2\x14\xf6\x51\xcb\x82\xdc\x41\xf2\x16\xd7\x93\xa4\x54\xe6\x32\xa7\x67\x44\x29\xff\xab\x2d\xc4\xaf\x5a\xb6\x18\xf1\x69\xba\x48\xf2\x28\x3f\x86\xdc\x27\xab\xaa\x67\xeb\xcc\x54\x14\x9a\x26\x9d\x47\x7b\x8e\x79\xce\xce\x65\x7c\xc5\xf7\x10\x10\x76\x0e\x19\xa8\xf6\xe3\x5e\xa5\xdb\xf3\xd6\x0a\x1e\xb3\xbf\x24\x6e\x90\xc4\x0b\xec\x61\x2e\xe0\x99\xb4\xd8\x87\xaf\x1e\xa1\x64\xb8\xbe\x10\x26\x54\x87\x21\xbe\xc4\x15\xe8\x4c\xed\x55\xb2\x18\x93\x27\x1d\x45\xe5\xe2\x1c\xac\x93\xf4\x15\xc4\x4f\x04\x2f\x96\x1f\xd5\x52\x75\x9c\xf3\x98\x59\x91\xc7\x15\xa0\xb8\xac\x44\x9d\x78\xb1\x70\x79\x98\x19\x00\x64\x53\x7c\xf8\xaa\xdd\xca\xcb\xae\xa9\xb8\x61\xe8\xcd\x70\x3d\xfe\x38\xc6\xa2\x0d\x21\x1e\xc0\x95\x4b\x00\xf2\x53\x62\x1d\xab\x82\x56\x46\xd1\xe2\x37\x33\xbe\xd0\x8f\x54\xc9\xd8\x2f\xd8\x39\x79\x41\xfc\x72\xfe\xb0\xc4\x22\xd1\x2f\xd1\xeb\x30\x9e\xec\x0b\x30\xda\x07\x50\x91\x55\x72\x27\xa6\x7e\x2c\x61\x02\x78\xa9\x61\x36\x89\xa2\xbe\x89\x93\x51\xd6\x8a\xd1\x84\xb7\x74\x1f\x26\x9e\xbc\x9e\xb9\x07\xf7\x94\xb6\x9e\xa3\xa9\x3c\xcf\xfc\xcc\x67\xe6\x6e\xe1\x2e\x17\x19\x12\x3e\x09\xd7\x4a\x0f\x86\x11\xa4\xaf\x14\xa9\x3e\x8b\x95\xed\xea\xbf\x76\x75\x0d\x85\x6e\x37\xa7\xa1\xf7\x31\x01\x95\x15\x53\xc1\xc6\x89\x12\x71\x23\xb9\xb9\x0c\x11\x71\x2c\x1f\x8d\xf3\xa1\x90\x85\x9a\xca\x08\xfa\x2f\xf1\xbf\xb9\x39\xec\xbf\xb2\xe4\x84\xed\x82\x7a\xf9\xb9\x30\x92\xe4\x9a\xaa\xdf\xe7\x95\x62\x97\x76\x87\xf5\x7d\xc5\x05\x7e\x9b\xf1\x72\xb5\x4e\xf0\x49\x99\x8d\x6e\x10\xd5\x09\x83\x30\x85\xe2\x0d\xf4\x66\x9c\x53\x1a\x86\xa5\x92\xe6\xc8\xd6\x57\x74\xd3\xbc\xe5\x55\x39\x0f\x58\x22\xe5\x8c\x84\x66\xfe\x54\xd5\xe7\x30\x91\xf8\x92\x76\x3a\xaa\x4a\xfe\x52\x2f\x40\xce\x95\xa4\xa8\xda\xf5\x5f\xca\xa3\xd4\x59\xf2\xfe\x2a\x82\xfa\x19\x7f\x43\xed\x21\x0d\x8d\x96\x8b\xd1\x6a\xbe\x37\x90\xf1\x90\xb6\xa5\xfc\x21\xf9\xa2\x2e\x3e\x07\x64\x18\x75\x6f\x12\x6c\x5c\xad\x7e\x53\xd8\x1a\x51\x9f\x61\x03\xea\xbc\x7c\xbc\xf1\x0a\x1c\x54\x30\x1d\x61\xe8\xe4\xc5\x66\x04\x05\x94\x96\xa3\xe0\x8b\x3c\x71\xd5\x7f\x30\x9b\x1a\x51\x37\x1a\x1e\x8f\xb1\x61\x99\xd0\xf2\xf2\x0a\xd2\x78\x28\x3d\x27\x91\x3e\x0a\xbc\x90\xe0\xe2\x54\x82\xe4\xb0\x67\xc2\x63\xe0\x2c\xdf\x5c\xa0\xd5\xfc\x03\x3c\x92\x3b\xb5\x15\xd0\x06\x16\x9c\x6b\x11\xca\x26\x97\xec\x6d\xc6\x72\x85\x15\x47\x9a\xa6\x51\x48\xb5\x33\x1a\x4f\xd7\x7f\xc1\x6c\x71\x6a\xca\x7e\x13\xfa\x1c\xd3\x72\x42\xa8\x4f\x6d\x8d\x09\xc7\xd9\x80\xe5\x55\x78\x86\x30\x03\x21\xf9\xee\x00\x6a\xa1\x1b\x60\x7a\xce\xf4\x79\xc3\x35\x1b\xf2\x6f\x74\x2e\x96\xf6\x17\x5f\xe9\x08\xe6\xba\x97\xbf\x6e\x03\x29\x7e\x35\x55\x2d\x17\xea\x2f\x61\x86\x37\x4f\x2b\xfb\x44\x18\xe9\x4a\xc8\x49\xa2\x4a\x9c\x81\x09\xbf\xd9\xd3\x6c\xdf\xc2\x01\xe1\x08\xcb\x51\xdf\x77\x40\x0a\xdc\x6e\x7e\x96\x5d\xdf\xbb\x51\xc3\xcc\xf7\x9e\x3f\x4c\xca\x2c\xf6\xea\x4e\xe1\xbc\x2f\x4f\xe9\x2a\xa0\x8c\xab\x5e\xd5\x91\x5e\x7f\xb9\x9e\xdd\x16\x58\x3e\x1e\xaf\x6e\xbe\x9f\x43\xa5\xfc\x71\x55\x27\x66\xb3\xb6\x3b\xfa\xc3\x77\x09\xf6\x59\x6f\xf9\xc5\x00\x63\x91\xe1\x56\x7f\xda\x83\x8a\x89\x86\x41\xc6\xb8\xea\x6a\xf9\x03\x26\x07\x6d\xe5\x77\xb0\x47\x61\xbe\x53\x6f\x71\x6e\xe1\x17\x60\x06\x79\xb7\xc8\x92\xb2\x3f\x42\x14\x1d\xce\x2e\x10\xef\x63\x3f\x8c\xfb\x21\xdb\x24\xb0\x86\x6c\x56\xbc\x91\x92\xbd\xb5\x1a\xa7\x72\xbe\x45\x4c\xf9\x51\x8d\x31\xf8\xd0\xaa\xd0\x78\x39\x8e\x7e\x1d\x83\xe6\x7b\x31\x17\xe0\x40\x2a\xc0\xee\x21\xde\xc1\x50\xb8\x47\xa9\xbc\xb2\xad\x82\x44\x66\x7c\xf6\x18\xf1\x70\x6e\x4e\xdc\x19\x99\xbf\xb0\x3d\x64\xbd\xc2\x24\xf3\xf4\x36\x69\xf2\x94\xbf\x90\x6d\xe4\xe9\xe8\xa3\x7a\x2d\xa5\x03\xd3\x04\x9c\xa1\xe5\xe3\xca\x78\x8b\x19\x11\xc4\xb9\xd4\xd1\xac\x0a\x4a\x29\x66\x04\x67\x80\xde\x59\xc6\xe5\xe7\xb3\x67\x64\x9d\x17\x65\xf0\x2e\xc7\xad\x90\xda\x45\xe7\x43\x56\x28\xfe\x07\x8c\xf6\x6e\x55\xbf\x55\x75\xc0\xd1\xf8\x38\xfc\x2a\x5d\x10\x71\x24\xf1\x8b\x6c\x35\x79\x34\x25\x83\xbb\x8c\x5a\x4e\xdb\x45\x89\xa5\x9f\x60\x92\xea\xd1\x2c\x05\x67\x56\xe9\x5d\x2e\x9d\xef\x96\xc5\x16\xac\x17\xa5\xc7\x31\x25\x05\xd2\x79\x21\x4b\xe4\x63\x14\x61\xde\x27\xd5\x61\x9a\xe9\xe0\x7e\x4c\x0b\xed\x8b\xe6\x0c\x76\x31\xe3\xa2\x14\xc0\x3f\x64\x6d\xe6\xb4\x90\x94\x9c\x01\x72\x2e\x35\x9b\x77\xbc\xce\xc9\xc8\x14\xfc\x28\x4d\x67\xeb\xc5\x98\xcc\x3f\x7c\x37\xe9\x83\xb8\x64\xd1\x2f\xf9\xbc\x90\x2d\xb2\x3f\x2a\x87\x8f\x9f\x0a\xa3\x3d\x6a\x9e\x80\x1e\xc2\xeb\x52\xb3\xeb\xb1\x82\xa1\x92\xb2\x86\xc7\x42\x1e\xdb\x81\x3f\x24\xba\x41\xa2\x90\xae\x49\xf8\xe8\x33\xb4\x59\xb2\xe1\x25\x03\xcc\xb5\xc0\xbe\xcc\x01\x6e\x9b\xa2\x3f\xce\x5b\x78\x40\xb5\x3a\xe4\x84\x6c\x88\xe6\x9d\x8f\x43\xe9\xd2\x03\xc6\xd1\x95\x56\x65\xbc\xb2\xad\x26\x5f\xf9\x46\xb4\xb2\x2e\x41\xb5\x90\xe5\xd5\x20\x51\xa7\x10\x23\xf0\x0f\xd5\xff\xd5\xde\x21\x37\x69\x56\x94\x0c\xa1\x6b\xb4\xe2\xcc\x52\xf6\x46\x5d\x71\x9c\xbf\x20\x5c\x9f\x1d\x3a\x41\x72\xdc\x20\x42\x8d\x53\xac\x35\x9e\xd0\xc7\x97\xbe\x82\x1c\xf2\xaf\x15\xdf\x20\xac\x30\xbb\x26\x09\xf2\x67\x3c\xa9\xdb\x0f\x3e\x20\x84\x62\x41\x70\x63\xed\x74\x22\x08\x4a\x8b\x95\xd4\x43\x60\x62\xa6\x3b\x2b\xdd\xfc\x27\x2e\x96\xf7\xc7\x7c\x24\xb4\x5c\xfc\xce\x7c\x10\x05\x2b\xfc\xcc\xd7\x74\x59\x45\x37\x9a\xa3\x81\xb7\x65\xc9\x4d\x99\x82\xa8\xca\x13\xae\x6c\xfa\xaf\x5a\x5b\x63\x18\x9e\x87\x81\x9c\xd3\x6b\x1a\xf1\x47\xec\x5f\x8a\x03\x29\x25\xb6\x13\x99\x43\x99\x53\xac\x40\x1c\x87\x17\x68\xf1\x0e\x5d\x22\x26\xc3\x97\x50\x2f\xe4\xd7\xa1\x1e\xed\xaa\xc2\x9b\x1d\x66\x40\x53\x9a\xde\x9e\xc6\xbf\x58\x71\xb5\xf5\x11\x7d\x73\xcd\x8a\x16\x31\x3e\xa6\x7e\x5b\xd3\x7f\x35\x1c\xfc\x04\x97\xa8\xd8\x9d\xbc\xce\x79\x3e\x73\x22\xa3\xc3\xfe\x3d\xae\x83\x7b\xd4\x36\x35\xf4\xac\xd8\xcf\x12\xe9\x8b\x92\x6f\x87\x4b\xb5\x29\x85\x6e\xdd\xdf\x81\xf0\x12\xe5\x3c\x05\x7f\x71\xc5\x84\xce\x2b\xf4\xe6\xea\xc7\x1d\x33\xf0\xa8\xba\x3f\x6d\xd9\x35\x6c\x1c\xbb\x85\x5d\x1c\x46\x76\x6f\xe2\x64\xe6\x30\x3c\x1a\x67\xc7\x5d\xe6\xd2\xec\xdb\xc3\x26\x8b\x2e\x59\xb3\x7c\x89\x72\x23\x7c\xc4\x18\xca\xb1\x57\x54\x2a\x93\xb8\xa4\x6a\x8b\xf0\x08\xcf\x88\x5e\xcf\xf4\xe0\xff\xdb\x30\x89\x30\x4e\x98\x8e\x5f\x5d\xd3\x23\x7a\x44\x96\x17\x75\x4b\x0e\xd1\x91\xf4\x26\x60\x1c\xfb\x7e\xcc\x6f\x45\x9f\x00\x09\xea\x50\x53\xa4\x42\xaf\x62\x9d\x5e\xb9\xcb\xd0\xc2\xea\xae\x66\x28\x56\xb1\xd7\xa1\xc9\xc2\x0c\xee\x70\x4c\x39\x63\x01\x4f\x82\x93\xe2\xbb\x05\x93\x89\x27\x6b\xe2\x85\x0f\xa8\xb5\x45\x05\xe2\x57\x4c\x54\x3a\x5a\x46\xe0\x46\xc6\x5c\x55\x4c\x17\x9a\x82\x3a\x55\x5f\x65\xee\x5e\x68\x5d\xa2\x6a\x82\xfe\x35\x63\x25\x7a\x89\x62\x3c\xf3\x3b\x86\x2e\xd8\xc2\x46\x70\x1e\x0c\x0f\xee\x74\xc2\x1f\xbc\x2f\xef\x16\xc5\xb3\xfa\xbc\xe0\x2a\x9d\x5e\xf8\x51\x3c\x86\xf5\x22\xdd\x53\xba\x8c\xb7\x21\x66\x97\xdc\x2c\xda\x14\xd4\xa6\xb2\xc9\x7e\x78\xf1\xb4\x4f\x55\xbd\xba\x5a\xca\x03\x7c\x1e\xb0\x90\xd6\x49\x6c\xe6\x0b\x19\x4a\xf2\x19\xfa\x50\x16\x85\x56\x82\x8b\xe5\xe8\x18\x9f\xab\xc7\xf1\x0e\xb3\x0f\x15\x62\x84\xb9\xbc\xa3\x69\x9b\x24\x41\xc2\x1f\x31\x2e\xa0\x44\xca\x08\x5a\xa0\x6c\x55\x4c\xf1\xda\xa4\x0d\xd5\x4c\xd1\x8e\x20\x6a\x68\x9e\x32\x1e\x19\xc3\x70\xe7\x61\xa9\x12\xe6\x77\xda\x68\xfa\x00\xfb\x37\xb6\x96\x35\x8d\x17\x5e\x55\xcd\x59\x25\x10\x15\x1c\xe1\x03\xa2\x7b\x69\x0d\xa2\x45\x52\x38\x46\x2a\x1b\x27\xaf\x0b\x1a\x54\xb8\x54\x74\xef\x49\x1a\xbc\xf6\x1f\x35\x84\x1b\xc1\x9d\x2f\x0d\x22\xc4\xf0\x47\x71\x6b\x48\xcd\x02\x2e\xd5\x83\x3a\x45\xf8\xba\xc1\x4c\xff\x57\xdc\x55\xd9\xcf\x5a\x26\x2d\x28\xc8\xe4\xee\x00\x7c\xd2\x26\x0a\x83\x14\xc1\x31\x04\xc9\x15\x55\x6d\xd0\x2d\x79\x9b\x66\x8f\xb7\x56\xdd\xaa\xa7\x29\x17\xd5\x3d\x92\xef\x17\x23\x0d\x59\x0a\x90\x7d\x1b\x77\x57\x19\x4a\xbe\x46\xdc\xa3\x7c\x8c\x51\x50\x4e\xa9\xf6\x54\x5c\x62\x8c\x55\x77\xe5\x6f\x60\x83\x1a\x5b\xea\x69\x7e\x9e\x76\x51\x8c\x48\x9c\xa7\x3b\x11\x1c\x00\x60\x0d\x7e\xde\x3f\x55\xeb\x8c\xab\xe5\x9f\x6b\x7c\xcc\x66\xd1\x04\xf4\x6d\x33\x83\xd5\x8f\xb9\x62\x8e\x25\x9d\xc4\xfd\x35\x7b\xd6\x77\x93\x88\xe6\xc9\x15\x21\xd4\x0f\xe6\xe1\xf9\xc9\xcc\x03\xa6\x3f\xa9\x8b\xb8\xa7\xcd\x93\x62\x1c\xa2\xe9\x66\xff\x60\x8e\x4c\x67\xae\xf1\x11\xa8\x66\x9a\x17\x02\x4f\x2a\x43\x1a\x17\x0a\x7e\xd7\xe4\x39\xcf\x30\xfb\xeb\x74\x8e\xbb\xc4\x6f\x0d\x97\xed\x5f\xeb\x3e\x12\x58\xf6\x29\xe5\x9b\x28\x69\xb6\x39\x79\xef\x18\x95\xd6\x9c\xd4\x66\xce\x2a\x4b\x59\xcc\x36\x61\x3a\x52\x10\xbc\x41\xfa\x0c\xce\xf2\x39\xae\x3c\x00\x95\x00\x60\x45\x5a\xeb\x51\x41\x7f\x75\x65\x4b\x1f\xb3\x14\xdd\xd2\x5c\x41\xdc\x86\xf9\xd2\x34\xa1\xee\x30\xbe\xa7\xf1\x70\x79\x3b\xd9\xea\x04\xf3\x9e\xd0\xb7\x3a\x42\x52\x7b\x38\xa1\xb6\xed\x31\x97\x05\x0f\xad\x21\xc1\x57\xa5\xfd\x48\xb3\xcf\x17\x65\x17\xf4\x13\x28\x28\x77\x76\xcd\x16\xf0\xab\x1a\x3b\x36\x31\x3d\x6a\x4f\xb6\x7b\x12\x3b\x31\x89\xad\x2d\x75\x3b\x70\xf7\x9b\x3f\x94\x77\x92\xee\x35\x91\xf2\xbe\xd0\x51\x8d\xab\x53\x0f\xb0\xd7\x39\x4e\xcc\x9d\x2c\xd0\xd8\x0e\x85\x4c\x95\x56\x5a\x96\xa0\xe6\x28\x1b\x60\xa3\x62\xaf\x28\xbd\xe2\xbc\x28\x56\x3c\xae\xfa\x1e\x2b\x55\x32\x06\xfd\x9a\x94\x2d\x79\xdb\x90\x53\xf7\x4a\xfa\x07\x7f\xb9\x3c\x09\x48\x27\xf7\xe6\x0d\x95\xaf\xa7\x0f\x24\x6f\x57\xb6\x71\x86\x44\xbd\x53\x6f\x13\xf4\x07\x4a\xb5\x1f\xa5\xf3\x3c\x67\x19\x40\xe5\x2b\xc5\x44\x41\x63\xf5\x7a\x61\x9f\xd0\x84\xb6\x30\x77\x89\x96\x61\x08\xc4\x83\xe2\x0d\x38\x5d\x9d\x48\xf2\x84\x78\xa9\xec\x8c\xac\x8c\x8a\xcf\x1d\x00\x1e\x33\x43\x92\x0d\x8a\x37\xdc\xc4\xa8\x6b\xea\xb9\xc2\xa6\x40\xad\xb6\x45\x36\xd7\x33\xde\x90\xa5\x8a\x96\x63\x78\xd7\xd0\x5b\x04\x3f\xf8\xef\x30\x18\x66\x94\x30\x11\xfb\x9d\x98\x24\x62\x11\x1e\xa2\x5f\x8b\x8f\x50\x86\x95\x91\xa5\x35\xf4\x8a\xdc\x2a\x60\x0a\xeb\x56\x72\xbe\x22\x8d\xb7\x22\xea\xa0\x6a\xb9\x68\x63\x20\xa0\x9d\x0d\x8c\xf4\xac\xd6\xbf\x53\x6d\x91\xf5\xb3\x79\xb8\xdf\x7c\x29\xe7\x38\x31\x8e\x7e\x9a\x57\x4f\xe6\x11\xc6\xf0\x6f\x52\xdf\xd4\xbe\x14\xda\x19\x4b\x4b\x6d\x62\x12\x5b\x97\xb3\x5c\xca\xe0\x35\x25\xdd\x03\xce\x0b\xcf\x47\xf5\x2b\x95\xd2\xe2\x40\xa7\x26\x56\x31\xd6\x73\xa1\x3e\x4e\xe3\x21\x5d\x49\xff\x49\x5d\xcf\x13\x33\x97\xd0\x75\xb4\xdb\x6c\x11\xb3\x14\x1f\xc6\xcd\x62\x93\x6a\x7d\xf8\xe9\xdc\x85\x25\xf7\x85\x04\xfe\xe7\x9c\x00\xf1\x80\x48\x9f\x34\x4f\x86\x91\xa6\x44\x75\x28\xd2\xe4\x81\x81\xdb\xd4\x73\x55\x65\x5e\x43\x74\x2c\xed\xa0\xc4\x8d\x72\x8e\xd3\xcd\xcd\xa1\xf5\xf3\x86\x51\xbf\x33\x56\xf1\xf9\x38\x0c\xeb\x90\x70\x74\x0d\x81\x3b\x56\x74\xb2\x24\x97\x2f\x90\xf4\x64\xaf\x17\xfe\x96\xb9\x92\x1a\x24\x2f\xe5\x7b\xa2\x5a\xe4\xe3\x55\x13\x03\x5f\xa9\x12\x35\x9d\x5e\x52\xed\x42\x7d\x83\xe8\x1a\xc1\x02\x14\xb2\x7f\x91\x96\xcb\x87\x50\x76\x51\x3e\xcb\xb7\x60\x0b\xe8\x5c\x45\x6b\xb5\x91\x35\x56\xe9\x2c\xee\xe6\x9c\x55\x35\x67\x27\xf2\x0f\xab\xd7\x26\x45\x88\x47\x6a\x7e\x46\x6d\x94\xe9\x75\xa4\xd9\xc9\x8a\x5f\xfa\x5b\x5e\x6f\x35\x9b\x8d\x0e\xe1\xac\x86\x93\x46\x16\x6b\x29\x3e\xdd\x88\x26\x6f\x20\xde\x37\x26\x37\xb0\x28\x8b\x8d\x65\x55\x27\xe8\xcd\x46\x71\xf1\x78\xd6\x1a\xe3\xfc\xac\x1b\xdc\xaf\xc6\x33\x49\x13\x85\x56\x53\x68\xd4\x65\x69\x91\xc9\x31\x1b\x54\xcc\x34\x3d\xf3\xc6\x69\xa6\x99\x39\x82\xe1\xf5\x2c\xc7\x50\xe6\xc2\x86\xc7\xf6\x34\xd2\x11\x7c\x9f\x8d\x83\x59\x4f\x82\xad\xdb\xab\x72\xa8\x0b\xad\x23\x8b\x06\x18\x3f\x2d\xcc\xac\x3e\x4e\x13\xb2\x37\x69\x88\x80\x85\xcc\x8a\xfa\x22\x91\xc3\xea\xd9\xfb\xe4\x06\x68\x9b\xf7\x06\xf5\x56\x68\x24\xbf\xaf\xae\xa4\xe9\x32\x33\x07\xf3\xc4\x75\x94\x04\xe0\x76\x34\x2e\xc5\xc8\x88\xab\x9d\x3d\x55\x28\xca\x39\x87\xa3\xa8\x9d\x91\x6f\x6f\xca\x6a\x67\x7f\xb0\x99\x92\xc6\xf2\x5f\x58\xc5\x73\xa6\x49\x66\x5a\x0a\x67\x3f\x92\x27\xc0\xdf\xbc\xaf\xaa\x21\x68\x07\xbf\x1e\xcd\x68\x7b\xc5\x1c\x83\x99\xda\xba\x9c\x94\x8b\xfd\xdc\x92\x8d\xc1\x10\x5e\x34\x7d\xa8\x72\xa3\xcc\x74\x75\x14\x75\xd3\x17\x36\x96\x64\xf5\xb3\x89\x8e\x27\x49\x61\x7c\xbe\x5d\x34\x27\x5b\xbc\xd1\x7a\x39\x68\x0a\x70\xdf\x32\xda\x67\xa4\x3a\x0d\xce\xe0\xcc\x55\xfd\xad\xb4\x52\x77\xa8\xd1\x35\x00\xee\x8c\xfa\x72\x1d\xaf\xf6\xac\x26\xb2\x61\x4b\x99\x51\xb3\x82\x90\x9a\xf7\x48\x5b\x46\xfe\x99\x76\x55\x37\x9d\xf1\xbf\xd8\xcf\xfa\x00\x8e\x24\x6c\xbd\x81\x22\x0c\x98\x05\x1b\x77\xc8\x50\xee\xdd\xe6\x0a\x95\x9c\xbd\x58\xa9\xaa\x09\xa1\x26\x2b\x1f\xa1\xef\xe1\x18\x2a\x3d\x66\x59\x2d\x4f\xf5\x0d\x37\x58\xe6\xaf\xee\x22\x4d\xc8\xeb\xd6\x50\xa8\x5d\x69\xbd\xda\x0a\x26\x33\xf6\xbc\xce\xcc\xb5\x87\x2d\xd7\xdf\x17\xbe\x9d\xe5\x34\x36\xc8\x16\xb9\x0f\x98\xa7\xaa\xfa\xd9\xc3\xe5\xaf\xd1\x5f\x28\x5b\x15\x22\x8c\x0e\xfb\x51\xe9\x83\x1b\x5b\x3b\x42\x39\x48\xf8\x50\x7a\x40\xa5\xa7\x4c\xcf\x2b\x54\xf3\xe9\xac\x34\xbc\x46\xcf\xfa\x19\xbb\x59\x7b\x81\x77\x33\x6c\xa1\xbe\x46\xf4\x6d\xd6\x3c\xc3\x2b\x00\xef\x7e\xdc\x74\x50\x3d\x89\xf9\x51\x6a\xc4\x6d\x23\xaf\x91\xd5\x11\x9e\x34\x7c\x05\x6a\xc8\xa8\x1a\x7f\x79\x16\x75\xa0\xe4\x97\xa2\x82\xc1\xcd\x5d\xa5\x34\xb1\xeb\x52\x1f\xa8\x2e\xf0\xb4\xb1\x42\x0d\x5b\x78\x25\xac\x5b\x17\x24\x15\xcc\xda\xad\xff\xae\x48\xf7\xf0\x32\x8d\xd0\x60\x98\x63\x45\x0c\xca\x31\xd2\x09\x31\x87\x36\xd0\x90\x20\xe9\x64\x74\x55\x4b\xa5\xc7\x59\x7b\x4a\x08\x80\x0f\x77\x72\x6e\x98\xbc\x99\x6f\x4d\xb5\x29\x67\x89\x22\x63\xf3\x55\x1f\xa4\xd3\xc3\x16\x6a\x5e\xc9\x83\x66\xbd\xd3\x7d\x55\x31\x3d\xcc\xc6\x58\xed\x63\xfa\x6d\x7e\x06\x3b\x85\xf8\x40\x80\x70\xf6\x61\xcc\xc2\x77\xbc\xfc\xaa\x93\x62\x96\x60\x48\xf1\x31\xc9\x1f\xe1\xc3\x9c\x1d\xb2\xf5\xe2\x5b\xa9\x89\x72\xa3\xf4\x67\xec\x6c\xa5\x4d\xce\x08\xdb\xa0\x1e\x54\xbe\xf1\x8f\xd4\xfe\xd4\xcc\xf3\x78\x6a\x10\xea\x55\x34\x3e\xbb\x5a\x72\x93\xb0\x80\x73\x56\x7a\xaf\x5e\xc1\x13\xc8\x6e\x56\xbe\x16\xcc\x01\x5e\x16\xbb\x8b\x66\x2a\xdc\x72\xe6\x4a\x7c\x95\x98\x94\x87\xb2\x32\xd5\xe6\xd8\xc9\xf2\x95\x9a\xd2\xb0\x5b\xaa\x10\xed\x57\x7f\x83\x66\x50\xbf\xdc\x93\xaf\x97\x1a\xf5\x54\x6f\xc6\x74\x5d\x2e\xbe\x8d\xb9\x4e\xa7\xac\xeb\x65\x2b\x75\xcb\x2a\x13\xb9\x3a\xdd\xb7\x22\x17\x7f\x95\x9e\x92\x7d\x52\x34\x54\x7f\x3d\x65\x99\x04\x34\xe0\x62\x47\x01\x81\xc6\x69\xe1\x63\x15\xef\x8c\xe7\xfc\x4f\xa8\x4f\x9a\x24\x9e\x97\x75\xc7\xcc\xd1\x94\x20\xaa\x01\xf9\x8d\xdb\x40\xcf\x45\x3a\xd0\xe7\x99\x99\x88\x5f\xc5\x7c\x36\x0b\x3e\x52\xe4\xc5\xdd\x09\x0b\xb3\xb5\x82\x4a\x38\x24\x05\x10\x4f\x86\xee\xc4\x0e\x93\xfe\x81\x06\xc2\xa3\x15\xd3\x21\x5e\xc0\x58\x75\x10\x34\xcc\x0b\xa5\xc3\x81\x9b\xc8\xd7\x28\x0d\x0e\x31\x8e\x45\xcb\xb2\x1f\x45\xdb\x18\x78\xfb\xf8\x0a\x26\xcb\x69\xa3\x15\xfe\xe4\x3c\xb1\x6e\xcf\x66\xf3\xbb\xac\x9e\x29\x42\x91\xd8\x22\x8d\x9d\x20\xd5\x23\xe7\xc2\x4b\xe5\x9b\x11\xf7\x80\x30\xd5\x4d\x38\xd4\x2b\x53\x17\x00\x95\x93\xfb\xc9\xac\xa6\x04\x5c\x02\x95\xe3\x22\xa2\x71\xf4\x9e\x46\x51\x45\x29\xf3\x98\xd3\x52\xf8\x89\x13\xe4\x68\xcb\x16\xf0\x9e\xd8\x37\xa5\xe8\x85\x17\x6d\x3b\x63\xc3\x24\x5f\xac\x5b\xc3\x01\x79\xbe\xa5\x23\x00\xab\x32\x21\x11\x5e\x7c\xed\x2d\xe8\x0c\x8e\x09\x5d\xa9\xf2\x46\xbf\x84\xac\xb5\x6e\x95\x13\x20\x5c\xbd\x5f\x71\x00\x34\x02\xcb\xc9\xf9\x02\x1e\x24\x7c\x4b\x6b\x07\x07\x28\x07\xe2\x4f\x83\xcb\x19\x57\xa2\x94\xe0\x76\x6e\x7d\xd0\x49\xf0\xb1\xc8\xdb\x77\x12\x14\x02\xa0\xdc\xfa\xa1\x25\x6a\x11\xf6\x13\x58\x5d\x23\x44\xbb\x40\xef\xba\xac\x8a\x43\xe0\xb8\x06\xdf\xa2\x07\xe6\x6b\xf8\xb4\x9c\xbd\xe6\xed\xa4\x05\x69\x6c\xf3\x3e\x5a\x74\xfc\x06\xf3\x2d\xd6\x84\x28\x3e\x38\x89\x57\x12\x74\x11\xa4\x88\xfe\xf5\xf5\x03\x8f\x01\x3a\xb7\xfd\x10\x51\xad\xc1\xea\x4c\xc7\xd1\x6f\xd0\x41\xa6\xf5\x98\xde\x0a\xb1\x69\x07\xae\xba\x68\xa1\x69\x21\x31\x3f\xc7\x64\x5a\x42\x51\xa7\x25\x9a\x4e\xd0\x6f\xc7\x37\x99\x47\xb1\xa1\x28\xb2\x99\xc0\x37\x06\xdd\x34\x9f\x13\x6f\xf1\x4d\x06\xeb\xe4\xbe\x6e\xf7\xa1\xb1\xea\xd3\x0d\xbd\xfa\x55\xb8\xf2\x5a\xb1\x7e\x1f\x61\x45\xf9\x7d\xfd\x37\xf2\xa8\xa2\x29\x86\x08\xea\xaa\xec\xbf\x06\x05\xc3\x94\x7a\xc5\x70\x8b\x6d\x8f\x2f\x31\xd6\xf2\x4e\x46\x15\x19\x5f\x88\x4a\x82\xde\x9b\xfa\xa4\xdf\x7c\x65\xe6\x06\xc5\x2d\xf7\x48\xb0\x44\xf3\x19\xb3\x5c\x73\x87\x3c\x58\xb3\x41\x3b\x9a\xfa\xbc\xbc\x4e\x8b\x65\x4c\x2d\xec\xd2\x9e\x61\x61\xb2\x3b\x75\xf5\x9c\x33\xa9\x76\xdd\x27\xbe\x20\xde\x47\xbf\x4a\x94\x1c\x95\x6d\x00\xa4\x55\xc1\x93\x8d\x38\x79\xa3\xef\x06\x53\x95\xea\xa1\x7b\xa3\x59\xad\x13\xd5\xbf\x54\xde\x66\x5e\xac\x99\xa2\xca\x63\xb7\x94\x5d\x56\x9d\xe7\x56\x17\xfa\xab\x4d\xfc\xb8\xec\x18\x4d\xbe\x30\x3b\x35\x57\xeb\x29\x16\xc5\x7d\xd3\x8d\x90\x1e\x8c\xca\xd1\x8f\x90\x73\x83\x93\x0c\x28\x55\xb8\xef\x07\x63\x8d\xe6\x93\xfb\x07\xd3\x5a\xfd\xcb\x3a\x33\x30\x43\xd4\x55\xf5\x13\xd8\x20\x7e\x5a\x36\x4e\x2e\x91\xce\x29\x80\x14\x14\x99\x26\xeb\x1f\x25\x0f\x78\x94\xf2\x51\xd5\xae\xe0\xc4\x9d\x55\x5f\x54\x8d\x8e\xaa\xd0\xfa\xaa\xdf\x05\x6b\x74\x56\xed\x13\xbf\x7a\xc3\x50\xfd\x61\x0f\xb5\x71\xb1\xf1\x10\xfa\x85\x78\x85\xda\xbb\x8a\x20\xb1\xa9\x57\x97\xf2\xa4\xed\x9a\xa8\x82\x91\xb2\x41\xcd\x85\x2c\x06\xf0\x47\x6b\x4f\x19\x54\xc8\x74\xf5\x71\xdb\x54\x43\xf5\x51\x51\x54\x75\xa7\xa1\x28\x78\xb7\x36\xd7\x48\xf3\xdb\xa0\x1f\x65\x2a\xf1\xb8\x6f\x78\x6c\xce\x46\xff\x4f\x38\xd1\x7c\xbf\x72\x91\xc8\xdf\xfc\xbe\xe4\xb4\x98\x62\xfe\x2f\xbf\x59\xb2\xdc\xfc\x29\x6b\x86\x6c\x8c\xf9\x6f\x8a\x15\xd8\x05\xfa\xc4\x2d\x56\x58\xc0\xa4\x28\x89\x8a\x01\xca\x82\x5f\x69\x28\xe0\x62\xbf\x8f\xba\x1a\xb0\xd7\x33\xcc\xc0\x01\xdb\x6b\xcf\x0a\x66\x21\x7f\x2a\x19\xc2\x44\xe4\x54\x49\xbb\x48\x8b\xd8\xf3\xd9\xe2\xc3\x48\x7e\xe6\x5f\x69\x0c\x32\x3c\xc5\x20\xfb\x02\x5f\x8a\x5b\x2a\xbf\x0d\x77\x47\x99\x95\xb7\x60\x6e\xc8\xff\xd4\xdf\xe0\xe0\x59\xd3\x75\xa3\xa0\x7e\xcf\x32\x43\x34\x14\x52\xbb\x8a\x4f\xb3\x83\x95\x99\x02\x99\xdd\xbb\x44\x28\xdc\x6c\x5b\x96\x8f\x16\x7d\xb7\x85\x66\xfe\x91\x70\xac\x03\x29\x56\x59\x86\x35\x39\x6e\x9b\x3c\xc1\xb2\x2d\x6a\x91\xb2\xd2\x12\x11\x12\xa5\xb6\x21\xf6\x59\xa9\xda\xb5\xb0\xc3\x13\xd0\xbf\x80\xd6\x95\xfd\xd3\xb4\xba\xea\x48\x51\x87\xab\xb7\xf6\x46\xde\xa8\xc6\x35\x98\xa1\x99\xfe\xce\x15\xb8\x86\x94\xf1\x8e\xe5\xc4\x9f\x71\x57\xed\xfb\xa8\x37\xe7\x54\xda\x6e\xb0\x46\x86\x5a\xad\x97\x79\xcb\x03\xb8\x96\x6f\x62\x85\x8f\xa7\x25\x5c\xce\x74\x0b\x46\x10\x4d\x67\x99\xda\x15\x5b\xf3\xac\x08\xdf\x98\x53\x77\x35\xf7\x8a\x53\xd2\x70\x35\xe3\x8f\xc3\x8a\xff\x93\xfc\xd9\xbe\x94\x2c\x8e\x3b\x61\xbb\x41\xf7\x9d\x53\x6e\x9b\xc6\x9e\x11\xea\xb4\xc6\xf0\xa5\x01\x3a\x8b\x50\xfc\xcd\x67\x2e\x72\x58\xbe\xd8\xad\x04\x89\xd7\x68\xcb\xc2\x9d\x83\x75\x69\x45\x33\x1d\x4f\x1b\x46\xe5\x2e\x74\xcc\xc1\x3d\xc8\xb8\x69\xc7\x11\xef\x24\xdf\xb0\x75\x52\x7d\xe3\x76\x59\x5f\x30\xfa\xe7\x14\x5a\xb3\x39\xac\xd0\x16\x8b\x49\x60\x0e\x70\x21\x57\x25\x47\x7c\xca\x90\x12\x45\xa0\x1b\x17\xbe\xad\xd9\x5e\xba\xd9\xf6\x01\xfb\xae\x70\xab\x2d\x9a\x60\xcf\x45\x5b\x5b\xc8\x61\x19\xad\xd6\xa1\xd4\x47\xc9\x7d\x16\x2d\xe3\x7a\x5c\xbb\x65\x14\x67\xcc\x9c\x64\xa4\x8b\x2f\x09\xed\x46\xa6\x88\xff\x17\xb0\x05\xee\x92\x5d\xf1\xb1\xc2\xf9\xca\xed\x6e\xeb\xe1\x99\xda\xfd\x25\xc7\x2c\x33\xc9\xa1\x85\xc3\x10\x27\x55\x9d\x73\x07\x99\x42\x3f\x9f\x31\x07\xde\xc9\x8a\x4b\xae\x86\x99\x9c\x53\x71\x74\x78\x36\xbf\x77\x4e\x30\xf4\x42\xd4\x15\xba\x0a\x6a\x97\xde\x08\xb8\x0f\x15\x29\x52\x7c\x4e\x40\x73\xd5\x0b\xdc\xfe\x42\x99\xfa\xd9\x25\xd3\x21\x05\xa3\xaf\x40\x01\xfe\x64\xf5\xe5\x88\xc1\xe5\x9c\xa5\xe9\xd7\x40\x1d\x6f\x20\x79\x32\x48\x14\xdc\x8d\x4b\x07\x2b\xc4\xf9\x73\x7c\xc0\x02\xe9\xd9\xd0\xbd\xa0\x8f\x7c\x5b\xe0\x4c\x70\xa8\x6a\x2d\x6a\x06\x18\xa2\x6d\x72\x67\x82\x1c\x83\xab\x98\x6b\x34\x0b\x96\xe5\xdf\x35\x92\x44\x59\xd9\x5f\x8c\x58\xf1\xcd\x74\x83\x91\x2b\x25\x26\x5d\x35\xda\x80\x61\x71\x41\xc6\x23\xf2\xb3\x73\xc2\x4c\x63\x95\x1b\x43\x3f\x9b\x42\xd5\xf7\x03\x35\xa6\x7a\xdd\x4c\x94\xcb\x74\xc4\xe0\xeb\xfe\xca\x5c\x61\xca\x28\xba\xa8\x4b\x52\x04\xe7\xf3\x75\x15\xca\xa0\xec\xc5\x3a\x44\x85\x4a\xcf\xd2\xfd\xab\x9e\x98\xb4\x4d\xef\xae\x99\x1e\xe7\xa9\x6f\xd2\x16\xcf\x99\x63\x98\xa2\xb3\x86\xcd\x34\xb8\xf4\x2f\x03\x77\x18\xdd\x8c\xc5\xa8\x5b\xc6\x53\x26\x9a\x07\xda\x64\x31\x3b\x8a\xd2\xd4\x57\x0d\x69\x79\x1f\xd4\xff\x19\x76\x67\x67\x69\x32\x8d\xe1\x69\xbf\x35\x7d\xc6\xf6\xa4\x95\xda\x20\xd3\xa8\xb8\xc9\xda\xbd\xa6\x8e\x39\xf9\x3a\xa5\x39\x34\xac\x48\x5f\x60\xde\x18\xf8\xd6\xe0\x0f\xe6\xfa\x86\x18\x47\x81\x12\x8f\x5e\xd3\x10\x70\x5d\xe1\x5d\xd5\x1d\xf3\x8b\xbc\x5d\xaa\xdf\x60\x5c\x36\x4a\x5d\x02\x0a\xd3\x5e\xa8\xd7\x81\xf3\x93\xba\x35\x29\xe0\xf5\x38\x0f\xcd\x5b\x68\xfc\x1c\x8a\xf6\x04\x94\x13\x26\xd7\xad\x83\x14\xb3\x53\xf4\xcb\xa1\x76\x5f\x9a\x61\x03\x54\xe7\x71\xd8\x78\x16\xf2\x2c\x74\xa8\x26\x20\x63\xf2\x2c\xaa\x20\x24\x3a\x7b\x8c\x4a\x8c\x64\xa5\x3d\x52\x5d\x44\x32\x93\x5c\xea\x5a\x24\x33\x2e\x46\x13\x81\x24\xcf\xb1\x6a\x51\x48\x60\xd8\x66\xdd\x54\x64\xd8\xec\x46\xbd\x0f\x7c\xd4\x77\x91\xa1\x18\x9e\xed\xf1\xd2\xe8\x80\xec\x05\x4f\xda\x77\x55\x0f\xcb\x1d\xd3\x46\x44\x7b\x67\x4e\x6b\xf9\x89\x61\xa6\x2c\x69\x5e\x8d\x3b\x92\x30\xb2\xa9\x9a\x24\x8d\xc1\xb8\xc6\xd2\x08\x11\x34\xe7\x5e\x56\x5b\x70\xa9\x23\x8e\x9f\x31\xeb\xbd\xed\x9a\x64\x8a\x77\xa9\xd5\x2a\xff\xe2\x36\xc2\x82\xd1\x8e\x2f\x68\x6e\x6b\xa8\x9d\x9a\x73\xad\x75\x42\xfd\xb8\x8c\xb7\xcd\x27\xb1\x61\x29\xae\xa6\x26\x02\x2e\xfe\xa7\xab\x92\x7c\x29\xa6\xa1\x31\x98\xde\x12\xc1\x75\x7c\x66\xb7\x06\x37\xd8\x5b\xf8\x3f\xfc\x47\xdb\x8a\x25\x16\x6f\x9a\xd5\x53\xe1\xeb\x16\x64\x19\xae\x79\x54\x10\xd5\xf2\xa1\xae\x2e\x67\x71\xf3\xae\x86\x98\x8c\x43\x4d\x6d\xf8\xa0\x14\x95\x8b\x43\x0a\x89\xff\xd0\x58\x40\x95\xc6\xd4\x39\x93\x99\xc3\x23\x64\x8e\xd9\x9c\xcb\xc1\x4c\xdb\x5d\xc1\x4f\x7f\x4f\xeb\x3a\x69\xae\xb7\xde\xb2\x50\xd1\xe3\x96\x87\xac\xd0\x4e\xcb\xbf\xdb\x34\x1d\xfb\x32\x87\xd6\xf8\x87\xe0\xca\x98\xef\xfc\x45\xce\x4b\x29\x76\xce\xa4\x8d\x89\xbf\xe8\x88\x66\x8e\x8d\x29\xb1\x63\x38\x15\x11\x3a\x9b\x96\x7f\x34\x58\x6b\x05\xc4\x02\xff\x1c\x0b\x1d\xc8\xf2\xde\x84\x74\xa8\xdc\xdd\x8c\xf0\x4d\xdd\xd4\x7c\x1f\x67\x3e\xe9\x5b\xf6\x51\x07\x99\x5a\x9b\x11\x6a\x6f\xa4\x1f\x4c\xfe\x64\xbb\xcc\x8a\x8d\xef\xb6\xa1\x38\x37\x62\x42\xac\x4a\xfe\xbe\x08\xb9\xe5\xb4\xe8\x74\x70\x1b\xf2\x46\x16\xe0\x2f\x45\x26\x28\x3a\xbc\x3f\xc0\x5a\xf5\x67\xb7\xa3\xf0\x10\x3d\x90\x67\xb1\xf5\x31\x66\x65\x97\x59\xaf\xb0\xd2\xd3\x0f\x5b\x43\x38\xac\xe4\x55\x96\x45\x3c\x63\x3c\xc3\xe2\x26\x38\x14\x33\x09\x59\x2c\xce\x8d\x50\x20\x41\xd2\x27\xc1\x9b\x61\x89\xfc\xa9\xff\x7a\xe8\xa0\xea\xa3\x4f\x0e\xc4\xd2\xde\x74\x0f\x82\x02\x0d\x97\xf3\xc6\xc0\x57\xf8\x8f\xb2\x1e\xc3\xe5\xc2\x05\xe9\x12\xe8\xb1\xb8\x21\x59\x08\x35\x4b\x3e\xc7\xe7\x41\x99\xb2\xad\x31\x53\xa0\xc9\xf2\x45\x11\xbd\xe0\x23\xe5\x82\xe0\x5f\xa0\x5c\xfd\x3a\xc0\x07\x1c\xaf\x4b\xf7\xd9\x6b\xfe\x6d\x28\x75\x1f\x00\x47\x99\xb8\xb9\xcb\xcc\x7a\xf9\x98\xac\x6e\x73\xa2\x22\x38\x3d\xd5\x3c\x59\x59\x9c\x5c\x61\x7a\xae\xc2\xc7\xa7\x9a\x4e\xab\x2d\x31\xbe\xa6\x9b\x9a\x1b\x11\x47\x4c\x6f\x75\x73\x43\x32\x4c\x67\xf4\xfb\x02\xb4\xa6\x9d\xc6\x0c\x54\xb4\xe9\xb9\x89\xe7\x31\xc5\x9c\x6e\x5e\x95\x1b\x6b\xb8\xa1\xdb\x92\x95\x69\x18\xd4\x13\xd2\x7e\x18\xf6\x1a\x46\x26\x07\x18\x36\x1b\xba\xe3\x13\x0d\x47\x8d\xf9\x31\xa1\x86\xcf\xc6\xb7\x11\xcf\x8d\x39\xa6\x85\x21\x06\xa3\xca\x8c\x0f\x38\x63\x1c\x04\x47\xa3\x94\xa6\xb9\x60\x8d\x07\xd1\x74\x00\x5c\x90\xeb\xa5\xbf\x62\x8a\xcf\x8a\xd4\x6f\x37\xad\x4b\x7b\xac\xdf\x6b\x0e\x48\x9e\xa2\xdf\x6b\xd6\xc5\xc7\xea\xaf\x98\x5f\xc7\x24\x1a\x7c\xc0\xaa\xc8\xe1\x06\x13\xb8\x23\x64\xad\xe1\x3a\x34\x29\x70\x94\x31\x13\xc2\xa0\x16\xfd\x9f\xbd\xba\xfa\x8a\xfa\x8f\xd7\x40\xff\x31\x31\x90\xb0\x11\x93\x50\x41\x69\x41\x05\x14\x10\x2c\x44\x50\x40\x44\x05\x95\x6e\x11\x95\x9a\x99\x6f\x4f\x77\xc1\xc0\xd0\xdd\xdd\xdd\x52\x02\x2a\x82\x58\x88\x08\xf6\xcf\xee\x3c\x6b\xef\xbb\xbd\xd6\xf9\x0f\xce\x79\xdf\xbd\x9f\xdb\xd7\x5a\xcf\x03\x3f\xc0\xcd\xd4\xa2\x11\x2a\xbe\xc1\x76\x11\xf9\x1b\x6e\x6c\xbd\x9e\x7c\x07\xa7\x5b\x8e\x93\xef\xe3\xb7\xf6\xae\x21\x8f\x11\x0a\xa6\x06\xe4\x57\x84\xb5\x91\x33\xe5\x24\x11\xac\xb7\x83\x32\x48\x30\xb6\x3f\x83\xf6\x10\x62\x2d\x57\xa8\x9e\x20\x36\x4e\xc2\x11\xc4\x52\xb5\x04\xe4\x00\x2e\x3a\xb0\x2c\xfe\xcf\x49\x9d\xfd\xc1\x71\x01\xae\x47\xcc\x5f\x4a\xf2\x4f\x97\x9a\x8d\x88\xd5\xce\x2d\x37\x96\x09\xa1\xf3\x7d\xfa\xee\xfc\x17\xde\xcd\x3a\x93\x3c\x5b\xff\x1f\xda\xee\x9c\x43\x21\x15\x9b\x2b\x58\xa4\xcb\xb8\x7a\x12\xa3\x2e\xd2\x65\xf5\x7f\xf4\x65\x24\x07\x9b\xf4\xb8\x0a\x17\x83\xfd\x56\xd2\x8d\x6e\x26\xe6\x43\x62\xf8\x4c\x90\x59\xb7\x68\xbe\x47\xb2\x71\xb2\x00\xbe\xa8\xae\xef\xc7\x5f\xe0\x33\xad\xf3\x81\x4b\x09\x78\xa3\x1d\xce\x4e\x0f\x3d\xbf\xb9\x87\x39\x7b\xf9\x85\x7a\x3e\xc3\x3e\x32\x62\xcd\x1c\x5a\x23\x69\x83\x8d\xae\xf4\xfc\xa9\xc0\xfd\xcb\xc4\xc3\xee\x2e\xe6\x85\x22\x87\x73\xe7\xcd\xea\x04\x4f\xcf\x5f\x34\x4e\xe1\x47\x7a\x95\xea\x87\xf1\xd6\xf8\x39\xe8\x02\x4e\x61\xd0\x56\x6d\x2a\xeb\x6d\xd8\xa9\xcd\x13\x4c\xbb\x88\x14\xf5\xeb\xf4\xae\xc8\xa7\x6b\xd6\xd2\xdc\x49\x87\x6c\xe6\x8a\xfc\xce\xbc\xde\xf7\x51\xa8\xe8\x21\x33\x4f\xe1\x77\x5c\x38\x67\x56\xc0\x8b\xf3\xde\x6e\x2c\xe3\x7a\xf9\x19\xeb\x47\x73\xcc\x02\x69\xba\xeb\x59\x7f\x42\x17\x6b\x17\x30\x63\xc3\xdb\xb6\x00\xfa\xc7\xab\x3c\xf5\xef\xb4\xf2\xe8\x33\x6b\x9c\xa8\x18\xd9\xdc\xda\x8f\x9f\x71\xfe\xc1\xbe\x4b\xbc\xab\x5e\xfb\xcd\x8d\xb8\x67\x7d\x9a\xcd\xce\x72\xdc\xfd\xcd\x8c\xfd\xd8\x27\x02\x9f\xe9\x9f\x67\xb9\x84\x3c\xd4\x55\x67\x1e\xbb\xf4\x53\xbb\x93\xfe\xe1\x8a\xd7\x16\x23\x5a\x5c\xe4\xf8\x7a\x13\xaa\x28\xd6\x60\x8d\x98\x48\xa5\xc4\x5b\x4d\x73\x5e\xfb\xf4\x5b\xfe\x66\xbf\xf1\xfb\xb5\x77\x84\xf5\x2f\xd0\xca\x6c\x15\x6b\x6b\xb0\x97\xf1\x7e\xe6\xd1\xd0\x0a\x7d\x47\x06\x29\xfc\x90\xae\x26\x3d\x2b\xe2\xa7\xf6\x53\xda\x95\x48\x95\x2d\xc1\x54\x9b\x98\x1d\xeb\xa3\x09\x0a\x59\x75\xcd\x23\xfc\x3a\xf4\xd7\x4a\xc8\x3c\x19\xe2\x66\xd9\xc8\x20\x85\x69\xef\x4d\xa6\xb7\x5d\xfa\x65\xfa\x95\xbe\xfa\x72\x81\xb1\x09\xed\xd2\x15\xb2\xbe\x2f\x75\xf6\x1a\xa2\x7b\x8e\x7a\x3a\x2a\x6e\xab\x39\x11\x1a\xf3\x67\xcb\x14\x4e\x90\x2f\xae\xff\x82\x2b\x41\x97\xd6\x9e\xc3\xf2\x11\x8a\x95\x0b\x75\xe6\xaa\xbe\xa5\x90\x7a\xe6\x5a\xc0\x5e\x2a\xf1\x22\x32\xcf\xf4\x1d\x11\x12\x35\x6a\xbc\x1f\xff\x12\xa3\xa6\xcf\xc5\x4b\x63\x21\xdd\x54\x3c\x80\xf4\x72\xab\x0c\x6b\xa7\x24\x6a\xb8\x60\x1b\x61\xcb\x0d\xfe\xe8\x0f\x24\x6c\x6d\x17\x3a\x8b\xc6\x59\x2d\xc2\x7e\x93\x62\x2c\x4f\x63\x35\x64\x87\xbd\x1e\x18\x9d\xb2\xc1\x74\x02\xd3\xa6\xdc\x31\x36\x43\x6f\x43\x49\xfa\x99\x68\x23\xec\xaf\x7b\x13\x2d\x44\x0c\xb6\xbe\x44\xcf\xa1\xca\x1a\x1d\xe8\x2a\xf4\xfe\x86\x76\xd4\x1c\x33\x52\x9b\x87\x86\x61\x74\x2b\x13\xf4\x0d\x74\xcf\x32\x10\xcd\x86\x63\xf6\x3a\xa2\x10\xb2\xc6\x74\x14\xd5\x46\x52\x8c\xf7\x22\x8f\x50\x03\xfd\x2a\x64\x02\xad\xd5\x7d\x8b\x4c\x62\x66\xdb\x56\x22\x75\x58\xbd\xc6\x57\x24\x09\xdf\xbc\xe1\x25\xf2\x04\x57\x53\x5b\x8d\x9a\xe2\x8b\xad\x2e\xa2\x00\xad\xb7\xa4\x20\xd5\xd8\xae\xbd\x87\x11\x1e\x56\x6c\x7a\x17\x31\xc3\x95\x8c\xed\xe0\xcf\x78\xac\xfe\x10\xfc\x07\x1f\xd8\xb1\x1c\x59\x49\xa8\x6c\xb3\x43\x54\x08\x6b\x4d\x7d\x64\x1d\xe1\xba\x51\x09\x21\xe3\xdf\xd4\xb6\x22\xff\xe1\x49\x00\xcc\x01\x73\xc1\x3c\x30\x1f\x2c\x00\x0b\x81\x02\x58\x04\x16\x83\x25\x60\x29\x50\x04\xcb\x80\x12\x50\x06\x2a\x40\x15\x2c\x07\x2b\xc0\x4a\xb0\x0a\xac\x06\x6b\xc0\x5a\xa0\x06\xd6\x01\x75\xb0\x1e\x6c\x00\x1b\xc1\x26\xb0\x19\x6c\x01\x1a\x40\x13\x68\x01\x6d\xb0\x15\x6c\x03\xdb\x81\x0e\xd0\x05\x3b\xc0\x4e\xa0\x07\xf4\x81\x01\x30\x04\x46\xc0\x18\x98\x80\x5d\xc0\x14\x98\x81\xdd\x60\x0f\xd8\x0b\xcc\x81\x05\xb0\x04\xfb\xc0\x7e\x60\x05\xac\x81\x0d\x38\x00\x6c\x81\x1d\x38\x08\x0e\x81\xc3\xe0\x08\x38\x0a\xec\xc1\x31\xe0\x00\x8e\x03\x47\xe0\x04\x4e\x80\x93\xc0\x19\xb8\x00\x57\x70\x0a\xb8\x81\xd3\xc0\x1d\x9c\x01\x67\xc1\x39\xe0\x01\x3c\xc1\x79\x70\x01\x5c\x04\x5e\xc0\x1b\xf8\x00\x5f\xe0\x07\xfc\x41\x00\x08\x04\x41\x20\x18\x84\x80\x50\x10\x06\x2e\x81\x70\x70\x19\x44\x80\x2b\xe0\x2a\xb8\x06\x22\x41\x14\x88\x06\x31\x20\x16\x90\x00\x19\x50\x00\x04\x60\x80\x00\x14\x60\x00\x07\x04\xa0\x02\x1a\xa0\x03\x06\x60\x02\x16\x60\x03\x0e\xe0\x02\x1e\xe0\x03\x01\x10\x02\x11\x10\x03\x09\x90\x82\x38\x10\x0f\x64\x20\x01\x24\x02\x39\x48\x02\xc9\x20\x05\xa4\x82\x34\x90\x0e\x32\x40\x26\xc8\x02\xd9\x20\x07\xe4\x82\x3c\x90\x0f\x0a\x40\x21\x28\x02\xc5\xa0\x04\x94\x82\x32\x50\x0e\x2a\x40\x25\xa8\x02\xd5\xa0\x06\xd4\x82\x3a\x50\x0f\x1a\x40\x23\x68\x02\xcd\xa0\x05\xb4\x82\x36\xd0\x0e\x3a\x40\x27\xe8\x02\xdd\xa0\x07\x5c\x07\xbd\xa0\x0f\xf4\x83\x01\x30\x08\x6e\x80\x21\x30\x0c\x46\xc0\x4d\x70\x0b\xdc\x06\xa3\xe0\x0e\x18\x03\xe3\xe0\x2e\x98\x00\xf7\xc0\x7d\xf0\x00\x3c\x04\x8f\xc0\x24\x78\x0c\xa6\xc0\x13\x30\x0d\x9e\x82\x19\x30\x0b\x9e\x81\xe7\xe0\x05\x78\x09\x5e\x81\xd7\xe0\x0d\xf8\x0f\xbc\x05\xef\xc0\x7b\xf0\x01\x7c\x04\x9f\xc0\x67\xf0\x05\x7c\x05\xdf\xc0\x77\xf0\x03\xfc\x04\xbf\xc0\x6f\xf0\x07\xfc\x05\xff\x00\x00\x73\xe6\xcc\x9d\x3b\x6f\xde\xfc\xf9\x0b\x16\x2c\x5c\xa8\xa0\xb0\x68\xd1\xe2\xc5\x4b\x96\x2c\x5d\xaa\xa8\xb8\x6c\x99\x92\x92\xb2\xb2\x8a\x8a\xaa\xea\xf2\xe5\x2b\x56\xac\x5c\xb9\x6a\xd5\xea\xd5\x6b\xd6\xac\x5d\xab\xa6\xb6\x6e\x9d\xba\xfa\xfa\xf5\x1b\x36\x6c\xdc\xb8\x69\xd3\xe6\xcd\x5b\xb6\x68\x68\x68\x6a\x6a\x69\x69\x6b\x6f\xdd\xba\x6d\xdb\xf6\xed\x3a\x3a\xba\xba\x3b\x76\xec\xdc\xa9\xa7\xa7\xaf\x6f\x60\x60\x68\x68\x64\x64\x6c\x6c\x62\xb2\x6b\x97\xa9\xa9\x99\xd9\xee\xdd\x7b\xf6\xec\xdd\x6b\x6e\x6e\x61\x61\x69\xb9\x6f\xdf\xfe\xfd\x56\x56\xd6\xd6\x36\x36\x07\x0e\xd8\xda\xda\xd9\x1d\x3c\x78\xe8\xd0\xe1\xc3\x47\x8e\x1c\x3d\x6a\x6f\x7f\xec\x98\x83\xc3\xf1\xe3\x8e\x8e\x4e\x4e\x27\x4e\x9c\x3c\xe9\xec\xec\xe2\xe2\xea\x7a\xea\x94\x9b\xdb\xe9\xd3\xee\xee\x67\xce\x9c\x3d\x7b\xee\x9c\x87\x87\xa7\xe7\xf9\xf3\x17\x2e\x5c\xbc\xe8\xe5\xe5\xed\xed\xe3\xe3\xeb\xeb\xe7\xe7\xef\x1f\x10\x10\x18\x18\x14\x14\x1c\x1c\x12\x12\x1a\x1a\x16\x76\xe9\x52\x78\xf8\xe5\xcb\x11\x11\x57\xae\x5c\xbd\x7a\xed\x5a\x64\x64\x54\x54\x74\x74\x4c\x4c\x6c\x2c\x89\x44\x26\x53\x28\x10\x04\xc3\x08\x82\xa2\x18\x86\xe3\x04\x41\xa5\xd2\x68\x74\x3a\x83\xc1\x64\xb2\x58\x6c\x36\x87\xc3\xe5\xf2\x78\x7c\xbe\x40\x20\x14\x8a\x44\x62\xb1\x44\x22\x95\xc6\xc5\xc5\xc7\xcb\x64\x09\x09\x89\x89\x72\x79\x52\x52\x72\x72\x4a\x4a\x6a\x6a\x5a\x5a\x7a\x7a\x46\x46\x66\x66\x56\x56\x76\x76\x4e\x4e\x6e\x6e\x5e\x5e\x7e\x7e\x41\x41\x61\x61\x51\x51\x71\x71\x49\x49\x69\x69\x59\x59\x79\x79\x45\x45\x65\x65\x55\x55\x75\x75\x4d\x4d\x6d\x6d\x5d\x5d\x7d\x7d\x43\x43\x63\x63\x53\x53\x73\x73\x4b\x4b\x6b\x6b\x5b\x5b\x7b\x7b\x47\x47\x67\x67\x57\x57\x77\x77\x4f\xcf\xf5\xeb\xbd\xbd\x7d\x7d\xfd\xfd\x03\x03\x83\x83\x37\x6e\x0c\x0d\x0d\x0f\x8f\x8c\xdc\xbc\x79\xeb\xd6\xed\xdb\xa3\xa3\x77\xee\x8c\x8d\x8d\x8f\xdf\xbd\x3b\x31\x71\xef\xde\xfd\xfb\x0f\x1e\x3c\x7c\xf8\xe8\xd1\xe4\xe4\xe3\xc7\x53\x53\x4f\x9e\x4c\x4f\x3f\x7d\x3a\x33\x33\x3b\xfb\xec\xd9\xf3\xe7\x2f\x5e\xbc\x7c\xf9\xea\xd5\xeb\xd7\x6f\xde\xfc\xf7\xdf\xdb\xb7\xef\xde\xbd\x7f\xff\xe1\xc3\xc7\x8f\x9f\x3e\x7d\xfe\xfc\xe5\xcb\xd7\xaf\xdf\xbe\x7d\xff\xfe\xe3\xc7\xcf\x9f\xbf\x7e\xfd\xfe\xfd\xe7\xcf\xdf\xbf\xff\xfe\xfd\xff\xfe\xff\x5f\xf7\x0f\xf3\xbf\x66\x0c\x00\x00\xf3\xe7\x2d\xfd\x9f\x31\xf8\xbf\xf7\xff\xf2\xcf\xf9\xdf\x70\xce\xb7\x79\x6f\x17\x3c\x53\x98\x5c\x3c\xbe\x74\x74\xd9\x3d\xe5\x59\xd5\x0f\x2b\xfe\xac\x5e\xbc\x76\xc5\xba\x0d\xeb\x75\x36\x1a\x6f\xde\xab\xb1\x4f\xcb\x6a\xab\xf5\x76\x2b\xdd\xfd\x3b\xf7\xe9\x9b\x1b\xee\x31\x36\x35\xa9\xdc\x55\x6e\x5a\x62\x56\xb4\xbb\x60\x4f\xde\xde\x1c\xf3\x6c\x8b\x2c\xcb\xcc\x7d\x99\xfb\x33\xad\x32\xad\xb3\x6c\x72\x0e\xe4\xd9\x16\xd8\x15\x1f\x2c\x3b\x54\x75\xb8\xee\x48\xd3\xd1\x76\xfb\xee\x63\x7d\x0e\x43\xc7\x07\x1c\x7b\x9d\x7a\x4e\x74\x9e\x6c\x73\x6e\x76\x69\x70\xad\x3d\x55\xe9\x56\x76\xba\xc8\x3d\xef\x4c\xd6\xd9\xb4\x73\xc9\x1e\x72\xcf\xc4\xf3\x49\x17\xd2\x2e\xe6\x78\x95\x78\xd7\xf9\x74\xf9\xde\xf4\x9b\xf4\x9f\x09\x98\x0e\x9c\x0a\x7a\x1c\x3c\x19\xf2\x28\xf4\x51\xd8\xe4\xa5\xc9\xf0\xc7\x97\xa7\x22\x9e\x5c\x79\x7a\x75\xf6\xda\xb3\xc8\x17\x51\xaf\xa2\xdf\xc4\xbc\x8d\xfd\x40\xfa\x44\xfe\x42\xf9\x0e\xfd\x84\xff\xa0\x00\x2d\xc0\x9c\xb1\xdf\x78\x0e\xe1\x48\x7c\xa7\x66\xd0\x8e\xd1\x3e\xd3\x53\x19\x47\x18\x1f\x98\x49\xac\x83\xac\x77\xec\x04\xce\x01\xce\x1b\xae\x8c\x67\xc3\x7b\xcd\x8f\x17\x58\x0b\x5e\x0b\xe3\x45\x07\x44\xff\x89\x13\x25\x07\x25\x1f\xa5\x69\x71\xc7\xe3\x7e\xc5\x17\xca\xce\x26\x2c\x49\x68\x4a\x0c\x93\xaf\x91\x77\x24\x05\x27\xaf\x4c\x6e\x4d\x09\x4a\x5d\x99\xda\x96\x16\x92\xbe\x3a\xbd\x33\xe3\x52\xe6\xba\xcc\x9e\xac\x88\xec\x0d\xd9\xfd\x39\x91\xb9\x5b\x72\x87\xf2\x62\xf3\xb5\xf3\x6f\x15\x40\x85\x3a\x85\x63\x45\x58\xb1\x5e\xf1\x44\x09\xb5\xd4\xb0\xf4\x41\x19\xbd\xdc\xb8\xfc\x51\x05\xb3\xd2\xa4\xf2\x51\x15\xbb\xda\xbc\xfa\x65\x4d\x42\xed\xa1\xda\xcf\x75\x19\xf5\x8e\xf5\x3f\x1b\x72\x1b\x9d\x1b\xff\x36\x15\x36\xbb\xb7\x2c\x6c\xa9\x69\xf5\x6d\x5b\xd1\xd6\xd9\x1e\xd1\xb1\xa9\x63\xb8\x93\xd2\xa5\xd3\x75\xb7\x9b\xe8\x31\xe8\xb9\x7f\x9d\xda\xab\xd7\x3b\xd6\x07\xf5\x6b\xf6\xf7\x0f\x84\x0d\xaa\x0c\x56\xdd\x70\x1d\xda\x36\x2c\x1a\xf9\x71\xeb\xc2\xed\xce\x3b\x1a\x63\xe8\xf8\xc3\x09\xb3\x7b\xbc\xfb\xd3\x0f\x4d\x1f\x31\x26\xc7\xa7\x34\x9f\x84\x4f\x37\xcc\xcc\x99\x3d\xfa\x4c\xfc\xfc\xdb\xcb\xb3\xaf\x9a\xdf\xac\xff\x8f\xfc\xf6\xee\x7b\xe3\x0f\xec\x8f\x4f\x3e\xef\xfa\x42\xff\x3a\xf6\x5d\xe3\x47\xf8\xcf\x96\xdf\xcb\xfe\x78\xfe\x2d\xfd\xdf\xd6\xf8\x31\xef\xc3\x82\xd7\x0a\x33\x8b\xa7\x96\x3e\x5e\xf6\x42\xf9\xa3\xea\xcf\x95\xf3\x56\x2f\x5d\xbb\x62\x9d\xfa\x7a\xad\x8d\x3b\x37\x1b\x6b\x98\x69\xed\xd9\xba\x67\xfb\x6e\x5d\xd3\x9d\x26\xfa\xc6\x86\xc6\xc6\xc6\x26\x15\xbb\xca\x4c\x8b\xcd\x0a\x77\xe7\xef\xc9\xdd\x9b\x6d\x9e\x65\x91\x61\x99\xbe\x2f\x75\x7f\x8a\x55\xb2\x75\x92\x8d\xfc\x40\xa2\x6d\xa2\x9d\xfc\x60\xf2\xa1\xb4\xc3\x99\x47\xf2\x8f\x96\xda\xd7\x1d\xeb\x70\x18\x3a\xde\xe7\xd8\xe3\xd4\x75\xa2\xeb\x64\x97\x73\xb7\xcb\x75\xd7\xbe\x53\x83\x6e\xc3\xa7\x6f\xba\x8f\x9e\xb9\x73\x76\xec\xdc\xb8\xc7\xb8\xe7\xf8\xf9\xf1\x0b\xe3\x17\xef\x7a\x4d\x78\xdf\xf7\x79\xe4\x3b\xe5\x37\xe3\x3f\x1d\xf0\x20\x70\x2c\x68\x24\x78\x20\xa4\x27\xb4\x23\xac\xf5\x52\x53\x78\xfd\xe5\xba\x88\xda\x2b\xb5\x57\x6b\xaf\xd5\x45\x36\x44\x35\x47\xb7\xc7\xf4\xc4\x0e\x90\x6e\x92\x27\x28\x53\xd0\x4b\xf8\x13\x0a\xd0\x2c\xec\x30\xf6\x06\x17\x13\x7b\x88\xc7\x54\x06\x4d\x9f\x76\x97\x8e\x32\x74\x18\xa3\x4c\x88\xb5\x9d\x35\xca\x46\x38\xba\x9c\xbb\x5c\x82\x67\xc8\x7b\xc4\x67\x0b\x76\x0b\x66\x85\x12\x91\x8d\xe8\xad\x38\x59\x62\x2f\xf9\x2e\xcd\x8d\x73\x8d\x9f\x1b\x5f\x21\xbb\x90\xa0\x94\xd0\x92\x18\x26\x5f\x2d\x6f\x4d\xf2\x4f\x56\x4e\xae\x4f\xf1\x4e\x55\x4c\xad\x4b\xf3\x4e\x5f\x96\x5e\x9f\xe1\x9b\xa9\x9c\xd9\x94\x15\x90\xbd\x3c\xbb\x35\x27\x38\x77\x75\x6e\x67\xde\xa5\xfc\x75\xf9\xd7\x0b\xae\x14\x6e\x2c\x1c\x28\x8a\x2a\xd6\x28\x1e\x29\x21\x97\x6e\x2b\x1d\x2d\x43\xca\x77\x94\x4f\x54\x50\x2b\x0d\x2b\x1f\x56\x31\xab\x8d\xab\x1f\xd6\xd0\x6b\x0d\x6b\xef\xd7\xd1\xea\x0d\xeb\x1f\x36\x30\x1b\x4d\x1b\x9f\x36\x89\x9b\x0f\x34\x7f\x6c\xc9\x6c\x75\x6e\x9b\xd7\x56\xd5\xee\xdb\xb1\xb2\xa3\xbb\xf3\x6a\x97\x46\xd7\xad\x6e\xa4\x67\x67\xcf\xbd\xeb\xd4\x5e\x83\xde\x89\x3e\xac\x7f\x7b\xff\xf0\xc0\x95\xc1\x55\x83\xb5\x37\xdc\x86\x76\x0c\x67\xdc\x5c\x71\x0b\xbb\xfd\xfa\xce\xc9\xb1\xaa\xbb\xaa\x13\xa1\xf7\xba\x1e\xac\x7e\x18\xf0\xa8\x7a\xf2\xdf\xd4\xe1\x27\xdc\xe9\x91\x19\xd5\xd9\x13\xcf\x24\xcf\x7f\xbd\xf4\x7e\x75\xfd\xcd\xf6\xff\x98\x6f\x9f\xbd\xb7\xf9\x20\xff\xf8\xee\xb3\xcd\x17\xe1\xd7\x47\xdf\xb7\xff\xb8\xf2\xb3\xed\xf7\xb2\x3f\x1e\x7f\x4b\xfe\xc7\x7f\xae\xc2\x7c\xa5\x85\xab\x16\xa9\x2f\xd9\xa4\xb8\x51\x69\xbd\x8a\xda\xf2\x75\x2b\xd5\x57\xab\xaf\x55\x5f\xb7\x4a\xfd\xdf\x86\xd7\x9b\x1e\x6c\xb9\xa5\x39\xac\x3d\xba\xed\x91\xce\xcb\x1d\xdf\xf5\x17\x1b\xaa\x19\xeb\x9a\x54\xed\xaa\x34\xad\x34\xab\xd8\x5d\xb1\xa7\x7c\x6f\x99\x79\x89\x45\xb1\x65\xe1\xbe\xfc\xfd\xb9\x56\xd9\xd6\x19\x36\xa9\x07\x92\x6c\x13\xed\x12\x0e\xca\x0e\x25\x1c\x4e\x3a\x92\x7e\x34\xcf\xbe\xe2\x58\x8b\xc3\xd0\xf1\x4e\xc7\x26\xa7\x9a\x13\x95\x27\xcb\x9d\xcb\x5d\xca\x5d\x2b\x4f\xd5\xb8\xd5\x9f\x6e\x72\x6f\x3b\xd3\x79\xb6\xe7\x5c\xaf\x47\xbf\xe7\xe0\xf9\xa1\x0b\x23\x17\x6f\x79\xdd\xf1\xbe\xeb\xf3\xc0\xf7\xb1\xdf\x8c\xff\xd3\x80\xc9\xc0\x89\xa0\x3b\xc1\x23\x21\x37\x42\xfb\xc2\x7a\x2e\x75\x85\x77\x5c\x6e\x8f\x68\xbb\xd2\x76\xb5\xfd\x5a\x47\x64\x57\x54\x4f\x74\x5f\xcc\x8d\xd8\x5b\xa4\xbb\xe4\x47\x94\x19\xe8\x0d\xfc\xe5\xff\xf8\x4f\x52\x69\x34\x3d\xda\x18\x1d\x62\x6c\x65\x8c\x30\x63\x59\x9a\xac\x21\x76\x0c\x47\x93\x33\xcc\x25\xf1\xb6\xf2\x6e\xf3\x61\xc1\x0e\xc1\x84\x90\x26\x32\x11\x4d\x89\xf9\x12\x4b\xc9\x2b\x69\x62\xdc\x91\xb8\x6f\xf1\x79\xb2\xd3\x09\x8b\x12\x1a\x13\x43\xe5\x2b\xe4\xf5\x49\x9e\xc9\xf3\x93\x8b\x52\x5c\x53\xfe\xa4\xe6\xa5\x39\xa7\xfd\x49\x2f\xc8\x70\xcd\x04\x99\x25\x59\x67\xb2\x17\x66\x57\xe6\x5c\xc8\x55\xcc\x6d\xc8\xf3\xcb\x5f\x9e\xdf\x56\x10\x5a\xa8\x56\x78\xbd\xe8\x6a\xf1\xe6\xe2\xa1\x12\x52\xe9\xd6\xd2\xd1\x32\xb4\x7c\x67\xf9\x44\x05\xad\xd2\xa8\xf2\x51\x15\xab\xda\xac\xfa\x69\x8d\xa0\xd6\xa2\xf6\x79\x9d\xa8\xde\xb2\xfe\x59\x83\xb0\xd1\xa2\xf1\x59\x93\xb8\xd9\xaa\xf9\x4d\x4b\x52\xab\x7d\xeb\x8f\xb6\xfc\xf6\xd3\x1d\x0a\x1d\xb5\x9d\xbe\x5d\x2b\xba\x3a\xba\x2f\xf5\xa8\xf7\xf4\x5d\xbf\xda\xbb\xb1\xb7\xaf\x2f\xa2\x5f\xad\xbf\x7d\x20\x60\x50\x71\xb0\xfc\x86\xcb\xd0\xb6\x61\xfe\xc8\xa7\x5b\x6e\xb7\x6b\xef\xac\x1c\xbb\x3c\x3e\x30\xa1\x71\x2f\xe6\xfe\xd0\xc3\xcd\x8f\xae\x4c\x76\x4e\xa9\x3e\xb9\x38\x5d\xf2\xf4\xc7\xac\xdd\x33\xd1\xf3\xb7\x2f\xed\x5f\xe5\xbc\xfe\xf7\xdf\x99\xb7\x95\xef\x97\x7c\xf0\xfa\x58\xf7\x79\xd9\x17\xaf\xaf\x35\xdf\x17\xfd\x38\xf7\xb3\xf4\xf7\xdc\x3f\x6e\x7f\x0b\xff\xc7\x1f\x7c\x9e\xf3\x62\xee\xc3\x79\xb7\xe6\x0f\x2c\xe8\x5b\x38\xa4\x30\xba\x68\x6c\xf1\xdd\x25\x13\x4b\xef\x2b\x3e\x5c\x36\xa9\x34\xad\xfc\x4c\xe5\xb5\xea\xfb\xe5\x9f\x57\xfc\x58\xf9\x6f\xf5\xfc\x35\x4b\xd6\xaa\xa8\xad\x5e\xb7\x4e\x7d\xdd\xfa\x75\x1b\xd6\x6d\x54\xdf\xa4\xbe\x59\x7d\x8b\xba\x86\xba\xe6\x3a\xad\x75\xda\x6a\x5b\xd7\x6e\x5b\xb3\x7d\x95\xce\x0a\xdd\xe5\x3b\x54\x77\xaa\xe8\xa9\xea\xaf\x30\x58\x6d\xb8\xce\x68\xb3\xb1\x8e\x89\xc9\xae\x9d\xa6\x5b\xcd\x34\x77\x6f\xd9\xb3\x65\xef\x16\x73\x4d\x0b\x6d\xcb\xed\xfb\x76\xec\x37\xb0\x32\xb6\x36\xb3\xd9\x7b\xc0\xc2\x76\xbf\x9d\xf5\x41\x9b\x43\xb6\x87\xed\x8e\x1c\x3a\x7a\xd8\xfe\xe8\x31\x7b\x07\x87\xe3\xf6\x8e\x07\x9d\xac\x4f\x58\x9c\xdc\xed\x6c\xe2\x62\xe0\xba\xf3\x94\x8e\xdb\xb6\xd3\xda\xee\x5a\x67\xb4\xce\x6a\x9d\xd3\xf2\xd8\xea\xb9\xfd\xfc\x8e\x0b\x06\x17\x77\x79\x99\x7b\x5b\xfb\x1c\xf1\x3d\xe9\x77\xd6\xdf\x3f\xc0\x33\xd0\x2d\xc8\x29\xd8\x3e\xe4\x50\xa8\x6d\xd8\x81\x4b\x36\xe1\x36\x97\x6d\x22\x6c\xaf\x1c\xbc\x7a\xe4\xda\xb1\x48\xa7\x28\x97\x68\xf7\x18\xcf\x58\x6f\x52\x00\x39\x94\x12\x01\x45\xc2\x24\x04\x46\x21\x2c\x06\xbf\x42\x84\x51\x03\x68\x5e\x74\x0f\x86\x1b\xf3\x24\xeb\x38\xfb\x28\xe7\x10\xd7\x8e\x67\xcb\xb7\x15\xd8\x09\x0f\x89\x8e\x8a\x1d\x25\xae\xd2\x73\x71\xbe\xf1\xe1\x32\x72\x02\x3b\x31\x51\xce\x4f\xa2\x26\x53\x52\xae\xa5\x86\xa7\x05\xa7\xfb\x67\xf8\x66\x7a\x67\x79\x67\x7b\xe7\xf8\xe6\xfa\xe7\x05\xe5\x87\x16\x44\x14\x46\x16\x91\x8b\xb1\x12\x66\xa9\xa0\x2c\xbe\x3c\xb5\x22\xb7\xb2\xb4\xaa\xb2\xba\xb2\xa6\xa2\xb6\xbc\xae\xac\xbe\xb4\xa1\xa4\xb1\xb8\xa9\xa8\xb9\xa0\x25\xaf\x35\xa7\x2d\xab\x3d\xa3\x23\xad\x33\xa5\x2b\xb9\x3b\xa9\x27\xf9\x7a\x6a\x6f\x46\x5f\x6e\x7f\xf1\x40\xf5\x60\xdb\x8d\x1b\x43\xed\xc3\xb5\x23\xa5\x37\x0b\x6e\xe5\xdc\xce\x1a\xcd\xbc\x93\x39\x96\x35\x9e\x73\x37\x7f\xa2\xe8\x5e\xc9\xfd\xf2\x07\x95\x0f\x6b\x1e\xd5\x4f\x36\x3d\x6e\x9d\xea\x7c\xd2\x3b\x7d\xe3\xe9\xed\x99\x7b\xb3\x4f\x9e\x4d\x3d\x9f\x78\x31\xf2\xb2\xef\x55\xe7\xeb\xe6\x37\x75\xff\x55\xbd\x2d\x7f\x57\xf2\xbe\xf8\x43\xd1\xc7\xe2\x4f\xa5\x9f\x2b\xbe\xd4\x7e\x6d\xfe\xd6\xfd\x7d\xe8\xc7\xdd\x9f\x4f\x7e\xbd\xfc\xfd\xfe\xcf\xd7\xbf\xbf\xfe\xfd\xfb\xf7\x0f\x05\xc8\xef\xb7\x8a\x28\x40\xda\x1f\x2e\x42\x01\x22\xe9\x7b\x89\x02\xe4\x4a\x0d\x1f\x05\x88\x67\x3a\x81\x02\xc4\x9d\xdd\x80\x02\xc4\x27\xa2\x15\x05\x08\xee\x36\x89\x02\xa4\xda\xec\x2b\x0a\x90\x7f\xaa\x27\xd0\x95\xa8\xe1\x9f\x76\x84\x45\x18\xbd\x59\x82\x10\x78\xfa\xfd\xa3\x08\x15\x37\xe8\x65\x22\x7c\xac\xb3\xda\x07\xb9\x82\xcd\x4b\x93\x22\x45\xd8\x01\xd6\x08\x52\x83\xa9\x47\xa8\x21\xd7\xd1\x2f\x6e\x6b\x91\xfb\xe8\xb4\xd9\x19\xe4\x35\x7a\x43\xe5\x01\xaa\x82\xc6\xfd\xba\x82\x6c\xa4\xa7\xbd\x5a\x88\xa8\xd1\xba\x26\x44\xc8\x42\xea\xd7\xeb\xa6\xc8\x4a\xaa\x56\xd5\x2a\x44\x83\xa0\xa4\x66\x23\x8e\x84\x0b\xf3\x15\xe2\x8d\x7f\xbb\x1c\x84\x10\xb8\xf0\xd4\x55\x24\x0f\xd7\x33\xbd\x8d\x5c\xc7\xda\x54\xc8\xc8\x2f\x6c\xd5\x37\x03\x38\x9a\xd7\xf7\xec\x00\x1c\xc0\x85\xc6\x4e\xc2\x41\x1c\xf5\x2e\x6f\x38\x9c\x35\x51\x9e\x03\x43\xcc\xca\xe4\x41\x58\xc8\xb8\xc1\xb0\x81\x4b\xe8\x6f\xc3\xb7\xc3\xaf\xe8\x73\x5d\x2d\x90\x6d\xd4\x9f\xbb\xde\x20\x9e\xc4\x75\xe5\x7f\x48\x01\x6e\xf1\x29\x14\x82\xe2\x97\x4c\xff\x86\x60\xa9\xca\xed\x1d\x10\x55\xbc\xa5\x3d\x01\x12\x09\x5d\x4a\x8d\xa0\x12\x7e\x92\xbc\x12\x1a\xe0\x2d\xa3\xc1\xd0\x37\x0e\x14\x36\x02\x1f\x60\x4d\xb8\x68\xc3\x12\xa6\xd2\x2e\x63\xf8\x3e\x7d\x8e\x72\x07\xb2\x87\x40\xdf\x35\x52\x52\x53\x5f\x3e\x16\x50\xf2\x92\x43\x47\x0e\x52\x2a\x13\x67\x5b\xfe\x52\xfa\x64\xa4\xa2\x27\x94\x27\x71\x1b\x13\x2a\xa0\x95\xe2\x3b\xc4\x4d\xe8\xb0\x90\x12\x4a\x83\x52\xf9\x8b\x9c\x35\xa1\xbf\x1c\x3f\x13\x21\xec\xcc\xf4\x53\xce\x86\x5b\xa9\xe3\xaf\x21\xf2\x8d\x92\x8c\x07\x93\xe4\x3b\x85\xfa\x83\x15\xe4\x89\xdc\xfa\xc6\x36\xf2\xcb\x2c\xab\xfc\xaf\x94\xa5\x69\x3d\xf1\x1a\x94\x3d\xc9\x47\xb1\x54\x0a\x25\x21\x37\xb8\x81\x32\x21\x1d\x3e\x31\x04\x59\x09\x8b\x8d\x07\xa0\x1c\xee\x66\x65\x29\xbc\x95\x3e\xfe\x62\x0b\xd9\xb5\x75\xdd\x04\x9f\xec\xd8\x10\xd2\x57\x47\x3e\x56\xfd\xac\xee\x2b\xd9\xad\xfc\x50\xae\x2f\x39\xa2\x48\x24\x19\x26\xe7\xe6\xb6\x20\x12\xf2\xfb\x8c\xfc\xa0\xf9\x14\xc7\x64\x6b\x27\x82\xd2\x14\x7f\xd9\x58\x01\x32\x14\x6a\x2a\xa3\x50\x37\x73\x76\x96\x20\x2b\x0f\x47\x8c\x1b\x90\x97\xf7\x3d\xbf\xee\x4c\x56\xec\xb2\xa9\x29\x27\xab\xb6\x60\xd9\xd6\x64\x9d\x3a\x81\xe8\x2e\xf9\x5c\x45\x24\x34\x4e\xce\x29\xfc\x1e\x40\x90\x5f\x65\xf5\x39\x8a\x28\x0e\xc9\x87\x8c\x62\x29\x13\x52\x55\x65\x14\xa2\xb1\x6b\x66\xaa\xc8\x73\xc7\xa6\xc7\xf6\x93\xfe\xdc\x5c\xd1\x73\x99\xf4\x69\x60\x55\xf5\x4d\xd2\xe7\xae\xa1\xac\x60\xb2\x42\x8b\xad\x48\x95\x6c\x5a\xcb\x81\xb6\x91\xa1\x32\x4f\xff\x27\xe4\xfa\x3c\x5b\x47\x2b\x8a\x52\xea\x2b\xa3\x73\x94\x8c\xb8\x26\xe5\x4c\xe8\x2c\xc7\xe1\xe9\x57\xf2\x9c\x87\x83\x77\x10\xd2\x9b\xf1\xc8\xee\x1b\xa4\xdb\x37\x57\x55\xeb\x93\x06\xfb\xdd\x32\x6f\x91\x26\x3a\x0f\x0b\x69\xa4\x7f\x8d\x7f\x28\xe5\x64\xdb\x2a\x5d\x7f\x5f\x72\x64\xe1\x0e\x47\x4d\x72\x7d\xc6\x12\xa3\x20\x8a\x4b\xfc\x0b\xe5\x1f\xd0\x4a\xce\x95\x1f\xf1\x78\x15\x3c\xf3\xc2\x12\xf7\x81\x8b\xc6\x27\xf0\x0d\xb0\xa8\xfb\x22\x36\x03\x53\x2a\xdc\xb0\x74\xe8\x6f\x8a\x32\x16\x0b\x97\x33\x32\x30\x2b\x78\x26\xfc\x28\x36\x07\xd1\x74\xad\x47\x5b\x11\xd8\x34\x12\x45\x91\x37\x2a\x79\xa8\x03\x6a\xf9\x2d\x0b\xdf\x85\x3b\x3c\xe3\x63\x2f\xb1\x8e\xb1\xf3\x58\x0e\x76\xaa\x6b\x1b\x16\x8d\xfe\x28\x3f\x81\x59\xa1\x91\xc9\x3a\x98\x16\x5a\x49\xbf\x8e\x7e\x41\x0b\x2e\x89\xd1\x7e\x34\xd5\x55\x15\x4d\x46\x73\x76\xfd\x87\x06\xa1\x35\x2a\x56\xa8\x3d\x2a\xff\x12\x8c\xf5\xd0\xea\x66\x52\x31\x32\xf5\xd3\x68\x09\xa6\x47\xb5\xec\xe8\xc7\x94\x09\x52\x99\x3a\x3a\x8b\xbf\x4f\xda\x8b\x0e\xe0\x37\x68\xaf\xd1\x1c\x9c\x08\x9b\x41\x59\xf8\x5e\x97\x73\x68\x08\xf6\x6e\x57\x28\x7a\x08\xcb\x50\xfe\x80\x9a\x60\xab\x3f\xf8\x62\x0b\xb8\x53\x4f\x54\xd0\x26\x4e\xe9\x4d\x19\x8a\xb1\x2f\xb6\xa9\xa1\x6e\x2c\xd3\xe2\x3b\xa8\x09\x73\x73\x62\x20\xba\x8c\xe1\x44\x75\x41\x3e\xd1\x89\xd0\x2a\xe4\x23\x2d\xcb\xd9\x1a\x79\x43\xad\x31\x91\x21\x8f\x89\x3c\x65\x1a\x32\x85\x5b\xfe\xd7\x80\xba\x49\x47\x1f\x3d\x44\x17\x4a\x96\x0e\xf1\x90\x5e\x91\x4d\x73\x00\x92\x26\x60\x17\x06\x21\x18\xef\xa5\xec\x1c\xe2\xc5\xbd\x8a\x27\x21\xc7\xd8\x7f\x43\x7c\x10\x67\x56\xf8\xc9\xbd\x88\x27\xa3\xdb\xf8\x35\xe2\x49\x9b\x52\x76\x46\xae\x10\x8c\x57\x7b\x10\x4e\x4a\xea\x7d\x39\xe2\x98\x74\x78\xa0\x0d\x59\x9f\x70\xaf\xe1\x11\xfc\x39\x9e\x95\xbf\x01\x9e\x94\x1e\x8a\xf3\x85\x9b\xc5\xeb\xd1\x2f\x70\x81\x60\x26\x78\x33\x5c\xc3\x13\x9c\xb0\x83\xfb\x39\x4a\xc6\x67\xe0\x31\xe6\x5e\xe5\x43\xf0\x67\xea\xd8\x33\x0d\xb8\xa8\x58\x71\xfc\x3b\x4c\xca\x6f\xef\xdd\x07\x1f\xc9\x89\xac\xad\x82\x57\x67\xae\xcb\x39\x0e\x7d\x4e\x6d\x15\xcf\x40\xd3\x49\xfe\xf0\x08\x34\x25\x7b\x11\x78\x11\xfa\x24\xdd\xe3\xf8\x0b\x56\x14\x5a\x1b\xe5\xc1\x5a\x9c\x59\xe5\x83\xf0\x69\xfa\xd0\x74\x07\x7c\xb2\xd9\x62\xb4\x1a\xfa\x59\x57\xd7\x6d\x0f\x35\x57\xf9\x54\x7d\x81\x90\xd2\xe9\xcc\x41\xc8\xb9\xf0\xb8\x30\x19\xb2\xcf\xc9\xa6\x0c\x41\xa7\xd2\x9b\xfd\x6b\xa0\xe0\x24\xe2\x78\x33\xc4\x8e\x7b\x6e\xf8\x1e\x2a\x11\xdc\x52\xde\x07\x7d\x64\x0e\x4f\x99\xc2\xab\x6f\x68\xdd\xba\x08\xf5\x5c\x7f\xd8\xf1\x0b\x8a\xed\xb8\x5a\xd1\x02\xed\x6e\x7a\x94\x5e\x09\x2d\xaa\x5d\xcb\x2f\xa5\xfc\x2a\xd7\x25\xaf\x81\x16\x16\x4c\xfa\xd9\x40\x0a\x99\xff\x39\xf4\x41\x1b\x93\xe4\x86\x21\x90\x8b\x24\x5f\xd9\x0e\x2a\x67\x8b\x1e\xfb\xc1\xf3\x47\xa5\x37\x49\x50\xd5\xd0\xc7\x0e\x35\xe8\x7c\xdf\x96\xf2\x29\x68\x4d\xe7\xe2\xb4\x87\x94\x17\x4d\x95\xbc\xd7\x94\xb1\x1a\x5d\x52\x30\x65\xb2\x54\xcf\x37\x8f\x72\x27\xf7\xac\x03\x44\x79\x9c\x6a\x6c\x78\x08\xda\x1c\x67\xaf\x1c\x08\x51\x39\xda\x93\x5d\xd0\xd7\xfb\x56\x23\x37\xa1\xc4\x3b\xa6\xed\xd1\x90\xe5\xf0\xdc\x72\x6b\xca\xdb\x5e\x72\xda\x41\x4a\x4d\x7b\x36\xef\x3c\x25\xa5\x81\x1d\xfb\x99\x92\x56\xf1\xda\xd7\x84\x22\x2c\xb0\x74\x70\xa5\x08\xd2\xed\x0c\x8f\x53\xc6\xe2\x23\x94\x5b\x20\x0b\xce\xb1\x8f\x7f\x69\x08\xf4\x71\xda\x86\xfa\x1e\x1a\xbe\x15\x48\xf5\x85\xc4\x6d\xf1\xc4\x47\x28\xb4\x64\x2e\xc1\x80\x2e\x27\x3a\x11\x9a\xf0\x5c\xaa\x25\x5e\x05\x7b\x86\x92\xf1\x3d\x70\xbb\xb3\x37\x56\x8f\xec\x35\x69\xc2\x76\x21\xed\xca\xb5\x68\x27\xba\xeb\x43\x00\xf5\x37\xe6\x39\xf5\x98\x7a\x0d\xfd\xef\xa6\x09\xf1\x0e\x45\x5b\xc5\x04\x17\x5d\x5d\xbc\x91\xd0\x41\xa6\x12\x10\xfc\x36\xaa\x42\xc4\xe2\x61\xa8\x46\xc8\x0d\x7c\x3e\x6a\x71\xb2\x10\x93\xa1\xe7\x4d\x76\x63\x1a\x28\x5f\xd9\x13\x6d\x45\x79\xef\x4c\xa9\x10\xf5\xd1\xe3\x45\xc4\x2f\xaa\xce\x30\x87\x80\x09\x7a\x8b\x2e\xa1\x8d\x8f\x15\x7e\xc6\x87\xf0\x33\xb2\x0c\x3c\x0a\xd7\xc0\x73\xf1\x0d\xf8\xa2\x10\x0d\xec\x3a\x36\x7e\x72\x1e\x16\x88\xe5\x18\xb7\x63\x00\x8b\x51\x5e\x89\x16\x62\x4b\x5e\x5f\x24\x6a\x39\xbf\x1f\x64\x11\xbb\xd9\x4f\x07\xd3\xf0\x1e\x56\x5e\x63\x0e\x1e\xc4\xe4\xe6\x77\xe2\x6a\x0c\x4e\x5c\x1f\xd6\x41\xef\xc7\x36\x61\xe1\x74\xd5\xa0\x2f\x98\x31\xed\x80\xd3\x5f\xf4\x35\xd5\xd7\xe8\x17\x2a\x27\x28\x4a\x4d\xe8\x59\xdc\xf0\xf9\x4d\xc2\x55\x92\x39\x41\xe0\x35\xe2\xa5\x7d\x55\xf8\x2e\xa1\x4f\xfd\x02\xec\x06\xbf\x33\x37\x04\xbb\xc6\xdb\x23\xe9\xc1\x34\x38\xe3\xc8\x65\x74\x9c\x1d\x1d\x58\x8a\x26\x31\xff\x3a\x2d\x40\xbd\x18\xa1\x46\x1e\xa8\x1a\xad\x54\x29\x1e\x79\x4e\x44\xcf\x90\xf1\x82\x64\xd7\x31\x3f\x5c\x5d\xbe\xad\xe7\x37\x56\x23\x1b\xaa\xe1\x61\x7b\xe3\x12\xb2\x4d\xd0\x07\x92\x70\xd1\x7d\x94\x23\xba\x00\xdd\x41\x0f\x08\xec\x02\xae\xa0\x0a\x3c\x45\xc7\x75\xc8\x08\xbb\xd8\xf0\x0e\x22\x62\xfc\x55\x8a\x47\x02\xa8\x9d\x53\x52\xac\xb0\x30\xe2\xd6\x43\xec\x50\x9e\x73\x27\x0f\x9d\xc9\x36\xaa\xbc\x82\xfa\xa4\x7f\xca\x08\x41\x41\x4a\xa5\xc0\x1f\xa9\x93\x43\xe4\x7a\x84\x2c\xd3\xf4\x6b\x45\x0e\x4a\x64\x0e\x93\xc8\x2a\x41\xbf\xa1\x1e\x3c\xcd\x49\x56\xca\x80\x7b\xe9\x55\x8f\x0c\xb1\xa8\xc6\x73\xc3\x59\xe8\xed\xda\x39\x6d\x99\xa8\x67\xc5\x83\xb2\x46\xe4\x76\x49\x4c\xea\x3b\x24\xa0\x60\x3e\x4f\x0b\xd1\xca\xa6\xc6\xb6\xc2\x1f\xd3\x7a\x7d\xd7\xc1\xed\xf2\x96\x63\xb9\xb0\x34\xce\xc5\x80\x80\x83\x04\x91\x4a\x99\xf0\x79\x66\xfe\xfd\x46\xec\x40\xff\xd8\x0d\x0f\x34\xa7\xfb\x7a\x8b\x37\xaa\xda\x96\x54\x22\x42\x18\x8d\xc6\xc9\x53\xc8\xfa\x6a\x19\x67\x3f\x3c\x5a\x7a\x37\x46\x19\x4e\xcb\x6f\xf2\x2e\x81\xcf\x67\xce\xb3\xaf\x80\x77\xca\x67\xf4\xbf\xc3\xaa\x12\x63\xa5\x62\x78\x2d\xfb\xe2\xbd\x19\x4c\xff\x96\xf5\x20\x15\x15\x0e\xf6\x34\x33\x90\x1f\xd7\x35\x8b\xeb\x90\x80\x76\xdb\x64\x25\xf8\x7b\xe3\x3a\x36\x05\x2e\xae\x6a\x8f\xf6\x85\xaf\x15\x7f\xf5\x5e\x07\xef\xc8\xf1\xb3\xbf\x08\xbd\x4f\x09\xd3\x1f\x85\x1e\x4b\x07\x95\x6e\x41\xaf\xd9\xef\xef\x9d\xc4\xd4\xee\x36\x0d\xbc\x41\xfd\x6e\x7d\x6a\x7a\x86\x8c\x0d\xce\x14\xaf\x42\x6c\x7a\xe4\x49\x91\x70\x7f\xeb\x57\xd6\x47\xf8\x6a\xfd\xb2\xa8\xff\x60\xb3\xf2\x4c\xaf\x5a\x68\x36\xdf\xd6\xde\x14\xca\x4c\x8b\xd6\xbf\x07\x49\xe2\xde\x28\x6b\x42\x19\x9c\xb5\xb3\x4f\x38\x96\x94\xc0\x71\x2d\xf6\x09\x8a\xfb\xf5\x78\xd6\x01\x8a\x63\x4d\x21\x93\x4c\xb1\xcd\x7a\xc7\xa8\xa7\x9c\x17\x39\xd0\x1f\x53\x06\xa0\xb9\xf4\xb9\x90\xbb\xbf\x1f\x4d\x15\xfa\x7d\x5c\x93\xba\x12\xce\x35\x68\x25\x96\x23\xfe\xcb\x5c\x70\x75\x14\xcc\x8c\xb3\xeb\x90\x9e\x31\x5b\xd6\x2d\xe4\x6a\x4f\x05\x73\x04\xd9\x51\x7d\x9f\xa9\x02\x3f\xcf\xda\xc7\xf0\x84\xdb\x84\xb9\x74\x0e\xfc\x92\x12\x44\x6b\x43\xb6\xf9\x0d\x53\x9f\x21\xe1\x0e\x42\xe2\x1b\xd2\x69\x70\x94\x98\x8f\xea\x2f\x5b\x8a\xab\xa1\xa7\xa6\x07\xd9\x47\x88\xcd\xa3\x6c\x96\x1f\x2e\xed\xd6\x61\xfa\xe3\xab\xaa\xb2\x18\x95\x58\x62\xa6\x39\x63\x0e\x66\x2e\xe8\xa6\x5b\x60\x1b\xc8\x05\xb4\x6b\xd8\x2a\x3f\x3d\x6a\x01\xb6\xd4\x01\x10\x03\x18\xd0\x9f\xc6\x9f\x62\x4a\x8a\xb7\xf1\x45\xe8\xcd\xc7\x0c\x96\x98\xed\x70\x33\x83\x59\xcc\x3a\xde\x51\xc8\xa8\x63\xda\x55\x5c\xa0\xff\x60\x38\xa6\x9b\xd2\x0f\xd2\x2f\xf3\x95\x69\x4c\x5a\x3f\xc9\x8e\x3a\x44\x33\xf0\xf9\x4b\x55\xa7\x46\xd9\xff\x21\xdc\x89\x5a\x7d\x0b\x1c\x27\x16\x28\x26\x60\xd5\xd8\xfb\x87\x4b\x59\x86\xa2\x84\xa1\x56\xe6\x36\xa1\x5e\xeb\x2c\xc3\x98\x5f\x5b\xfa\x9c\x7e\x85\x67\x93\x0a\x68\x2d\x9c\x87\xdc\x1d\xb4\x05\xec\xac\x98\x3c\xea\x49\x56\xb0\x77\x33\x11\xcf\x5c\x65\xbf\x06\x1f\xa5\x17\xeb\xd5\xe1\x80\x66\xac\x28\xc0\xf6\x13\xc6\x13\x3f\x98\xb2\xc4\xa9\x81\x3a\x46\x89\xec\x51\xb3\x23\xbd\x29\x6e\xa8\x98\x4f\xfb\x2a\xe9\x4d\x7a\x47\xdb\x2f\x1a\x62\x9f\xa6\x32\x04\xef\xa2\xd7\x11\xf7\xf9\xf3\xbd\x44\x84\x0a\x77\xce\xd1\xc3\xb8\x1d\xeb\xbe\xde\x61\x2c\x86\x11\xa5\x98\x89\x36\x53\x49\x63\xf1\x8c\xe7\x79\x68\x6f\x12\xfd\x5d\xb6\xa4\x61\x09\x1d\x64\x64\x16\xc8\x68\xa6\xa9\x39\x89\x36\xd4\xc8\xa4\x5c\xc6\x0f\xa2\x2b\xa1\x34\x72\x25\xb1\x36\x4e\x76\xe1\x1b\xee\x22\x76\x39\xb2\x11\x13\xf0\x87\x77\x96\xa0\xfd\xec\xef\x8a\xad\xe8\x1a\xfa\xc5\xdb\xf3\x18\x82\xda\xc8\xee\x63\x74\x41\x25\x51\xbb\x9b\xc6\x28\xcd\xcb\xfd\x40\xad\x2c\x94\xc7\x8f\x10\x6f\x73\xa3\x68\xdd\x84\x45\xe6\xa1\xab\x5b\x71\x49\xca\xc3\xf3\x3e\xd8\x68\xa2\xee\xa1\x4f\xd8\x72\xe9\xe6\x9d\x8b\xd1\x93\xfc\x7c\xc5\x5e\x24\x97\x69\x35\xd2\xca\x70\xec\xb9\xdc\x69\x42\x77\x68\x1f\xac\x9e\x43\x3b\xd9\xf4\x2f\xfb\x3e\xf5\x72\xed\x8c\x74\x8c\xc8\xac\x48\x24\xde\xe3\xcf\x8a\x8d\x22\x68\xf8\x9e\xdc\x08\x4f\x45\xec\x6a\xba\xfe\xc1\xaf\x68\x55\xe2\xe5\x1d\x30\xf2\x53\x6c\xae\x78\x1b\x39\xc7\x9a\x1a\x9e\x62\x9c\xbd\x51\xd2\xe1\x49\x3f\xd8\x2b\xaf\xda\x49\xdb\xd3\x79\x36\x7b\x2e\xd5\xa5\xb9\x5d\xba\x88\x40\x6a\x5f\x12\x46\x78\x4b\xf9\xab\xcb\x0f\xf1\x25\x85\xb8\x07\x82\xd9\x66\x45\x1f\x94\xa1\x48\xd2\x83\x1d\xae\x48\x9f\xa4\x43\xf1\x13\xb2\x83\x1d\x36\xbc\x9f\xe1\x3d\xba\xb0\xbd\x9e\x6e\x3e\x94\x54\xc9\xa0\xa9\xf7\x7e\xcd\xf2\xa2\xee\xec\x78\x27\x09\x27\x9c\x9a\xe4\x78\x0e\x4e\xad\x51\xb9\xec\x8b\x0d\x94\x2a\x7a\x68\xa1\x7f\x72\xad\x0e\x06\xa0\xbb\x52\x6e\xef\x70\x47\x60\xe9\xc3\x65\xd6\xf0\x13\x76\xd2\xc4\x3c\x51\x21\xd9\xb4\x3f\x57\x68\x48\xb6\x69\x6c\xe3\x0f\x90\x0f\x17\x8e\xf0\xc4\xe4\xf3\xf2\x45\xdc\x73\x64\x19\xd3\x87\xa3\x42\x59\x19\xb9\x91\xd5\x48\xa9\xba\xc0\x67\xba\x41\x5e\x87\x4f\xd2\x1f\xc0\x9b\x77\xd8\xd0\x1c\x10\x95\x25\x6c\xa2\x17\xe9\xb8\x6b\x21\x5a\x0f\xfb\xf7\xdd\x14\xb4\xc0\xa6\x0d\x4f\xf9\x41\xf0\xdc\xc2\x45\x3c\x0b\xe8\x61\xe2\x29\xee\x52\xe8\x11\xa3\x95\x3d\x0c\xaf\xb8\xc6\x65\x51\xe1\xd0\x0b\x0b\x98\x06\x70\xef\xa1\xdb\xf4\x2e\x64\x97\xee\x43\x9a\x0d\x32\xb4\xe4\x38\xd1\x8f\xae\x1e\xbb\x2d\xcc\xc2\xd2\x7b\x31\x81\x3b\x66\x51\x5f\xc6\x57\x45\x47\x0b\x94\xb8\xaf\xd0\xd8\x04\x2a\xa7\x0d\xb5\x66\xcc\x63\x33\x51\xb3\xab\xcf\x58\x87\xd0\x23\xe7\xaf\x30\xfe\xa0\xae\x87\x5c\xe9\x29\x68\xb0\x2e\x9d\xa6\x89\xe6\x2d\xd1\x26\x6a\x50\xf6\x6d\xaa\x50\x83\x79\xb9\xbb\x89\x3f\xca\x88\xaf\xbd\xc0\xe3\xd2\x1b\x72\x3f\x71\xcf\xd0\x5e\xc7\x67\x70\xf4\x68\x26\xb4\x20\xd6\x17\x6a\xe9\x15\x11\xb3\x91\xba\xdb\xd3\x81\x81\x12\x19\x07\xfd\xe8\xc6\x84\xa2\xce\x2f\x6a\x07\x1e\xb7\x44\x81\xb8\x88\x65\x8d\xc8\x05\xa5\x02\xa2\x73\x3d\xdf\x89\x7f\xac\xea\x35\x6f\x11\xf7\x6f\x76\x37\x67\x94\x53\x25\x6d\x60\x67\xb1\xc9\x44\x33\xeb\x2a\x2b\x28\x42\x9b\x69\xc5\xf4\xf0\xd0\xa0\xff\x64\xec\xb0\xcb\xa0\x15\xd2\xde\xe9\x88\xa9\xd6\xd4\xb2\x25\xeb\xf0\xa7\xf8\xfd\x21\x20\xb0\x93\x65\xb6\x49\x78\x4f\xe2\xda\x2a\x52\xb8\x42\xc9\x83\xcc\x0a\x8e\xab\x78\x81\x78\x92\xad\x21\xdc\x8b\xaf\x67\x7e\xe1\x73\xc2\xbb\x18\x3d\xdc\x89\xb3\xbf\xe8\x51\xec\xcf\xb6\x8f\x68\x9b\x58\xf3\x75\x4c\x89\x3a\xfa\xcc\x12\x4b\xdc\x93\xba\xb1\xbf\x80\xcf\xc9\xc6\x9b\x2f\xf3\xcc\x33\x9e\x96\xa6\x70\x5e\xa5\xed\x4d\xfb\xc4\xce\x4d\x8e\x12\xfa\xb2\x42\x13\xcb\x90\xff\x98\x96\xf1\x5f\xc3\x66\x18\x4a\xd2\xcd\x67\x24\xb4\x2e\xd1\xb2\x03\xfd\xd4\x4b\xbc\xc1\xed\x85\xc4\x62\xf6\xe1\x25\xfe\x58\x35\xed\xdb\xf5\x44\x3e\x54\xf9\xaa\x41\xca\xfd\x5c\xe6\x52\xf4\x9b\x83\x15\x55\xa4\x90\xd8\xc6\x79\x2f\xf8\xea\xcc\x77\xd9\x4b\xa0\x7b\x8c\xd6\x74\xed\xd0\x15\x74\x61\xb2\xa2\xbb\x36\xed\xb0\x2c\xd5\xa6\x84\xf8\x22\x7e\xb2\x7d\x29\x2e\xe4\x0d\x2f\x89\xc4\x2c\x18\xad\xdd\x76\xfc\xd0\x8e\x3d\x75\xde\xdc\xa9\xe6\xa9\x82\x66\x4e\x50\xbd\x73\x92\x3b\x7b\x49\x15\x9b\xbb\x8a\xd9\x50\x2a\x21\xff\x64\x90\x0a\xb0\xe0\x00\xba\x6d\xf6\x66\xb7\x0e\xea\xa7\xd4\x7d\xd6\xf9\x44\x8a\xec\xd5\x36\x04\x37\x17\x19\x2e\x81\xd1\x97\x2c\xfb\xae\xf3\x7c\xdf\xbe\x35\xb5\xd7\xb8\x8f\xbb\x9c\xf2\xef\x72\x7c\x5a\x4f\xcb\xaf\xb1\x7e\x37\xac\xe1\xec\x63\x66\x54\xc9\xc9\x46\x8c\xb3\x25\xdf\x82\xaa\xe8\xeb\xf2\x3e\xbb\xe9\x51\xfb\x32\xdc\xac\x2d\x89\x70\xb9\xe9\xb6\x93\xf8\x62\x71\xce\x12\x39\x5a\xc7\x1a\xed\x2c\xe1\x9f\x19\xde\x54\xd3\xc2\x1d\xeb\xfb\x97\xbf\x91\x73\xaa\x2b\x2f\xb1\x83\x35\xdd\xf2\x97\x2d\x65\x52\xea\x97\x92\xe2\x19\x3b\x2a\x66\x82\xf4\x68\xd3\x45\xf6\xa7\x7a\xa9\xcc\xac\x9f\xd6\x0b\x89\xed\xc9\x6a\xdb\x4e\x60\xed\x92\xfa\x25\x53\xe8\x25\xf6\xc2\xfe\xba\x84\x34\x92\x5d\xb3\x52\xfc\x2d\x92\x57\xe9\x41\xe9\x4f\x12\x3d\xed\x88\xc4\x8e\x54\x2f\x88\x14\xf1\xc9\x4b\xe1\x51\x41\x0b\x39\x2e\x34\x8b\xf7\x88\x62\xed\x6e\xc4\xf9\x40\xf9\x66\xb3\x9a\x35\x0b\xf5\x6c\x85\x19\xb5\xf0\xa4\x42\x16\x8d\x8d\x24\xf5\xb5\x25\xd8\x40\x47\x9b\xf6\xc6\x43\xd0\x8e\x92\x08\x69\x31\xb4\x36\x95\x21\xfe\x09\xad\xe2\x77\x8a\x0e\x43\x06\xb0\x99\x80\x01\x91\x42\xd7\xf1\xaa\xa1\xa9\xd3\x55\x9c\xdb\xb0\x83\x75\x1e\xeb\x26\xdc\xb7\x55\x9f\x51\x88\x70\x14\x62\x68\x1c\x64\xa6\x37\x51\xf6\x16\x0d\x6c\xd4\x8b\x37\x46\x55\x8a\x21\xa9\x17\xd2\x9f\xd2\x2a\xae\x47\xc4\xfc\x75\xa2\x25\xc8\x55\x48\x2e\x38\x8e\xa0\x21\x4c\x1e\x86\xe4\x9c\x36\xe6\xe4\x22\xd7\xad\x2d\x59\xc5\xc8\x27\xed\x19\x06\x0f\x3d\xa3\x70\x81\x16\x85\x9e\xec\x9e\x91\xc5\xd1\x1f\xd5\xd5\xc4\x0d\xd1\xd5\x0b\xbd\xa5\x73\x69\x17\x93\xc6\xc4\xc7\xa8\x35\x5c\x5f\xa1\x9c\xaa\x41\xd9\xc0\xbf\x47\x34\x07\x1f\xe1\x2d\x23\xfc\xdc\x34\x38\x7b\xf0\xf7\x56\xd7\x58\x76\x38\xaa\x1d\xcd\xd0\xc3\x4d\x15\xce\xd2\x36\x62\x5e\x9d\x7a\x32\x05\x5e\x41\x0d\x2b\xce\x9c\x1b\x9f\x6f\x2b\x81\x38\x97\x13\xbf\x88\xba\xd9\x0e\xec\x76\xa1\x32\xcb\x9c\x54\xc6\x77\x65\x9e\x08\x52\xe1\x0a\x18\xa1\xa7\xe6\xb1\xcb\xe9\x1e\xfb\xdb\x98\xed\x34\x07\x6d\x6d\x7a\x21\xd5\x4a\x01\xa6\xa6\xe1\x92\xb6\x87\xf1\x82\x38\xf7\x2a\x6d\xe9\xb0\xa4\x39\xf7\xa0\xf8\x9f\x78\x69\x82\x8e\xc8\x5a\x78\x81\xb5\x5d\xc0\xe1\x77\xc4\x1e\xe5\xdd\xe6\xd9\x05\x3c\xe1\xae\xe0\x74\xb8\xdc\x61\x6f\x63\xfd\xdd\xbf\x92\x69\xc6\x3c\xa0\x35\x4d\x5f\x4f\xf7\x56\xa8\xa7\xaa\x12\x03\xcd\x19\xf1\x3b\x33\x2a\xca\x63\xa4\x07\xd2\x9c\xb3\x24\xe2\xe0\xe4\xd9\xb8\x0a\x61\xba\xdc\x9d\xfe\x96\xff\x48\xd6\x17\x7d\x9c\xa7\x19\xe7\xe0\xaf\xcf\xf1\x12\xd7\x3b\x37\xb1\xc8\x82\x7b\xfb\xd4\x18\x74\xee\xa8\x56\x38\x2d\x98\x95\xa1\xf0\x9e\xb8\x40\x13\x34\xae\x8f\xbb\x51\x46\x2a\x19\x94\x7c\x2d\x56\xcc\xd8\x29\x5e\x9a\xdf\x21\xb9\x24\xdc\x9d\x63\x41\xbd\xc3\x0f\xce\x48\x8b\xf4\xe5\x16\xa5\x2e\xf0\xc5\xd8\xcf\xe5\xfb\x4e\xc6\xb0\x16\xc4\xaf\xb2\x54\x61\x28\x8a\x72\x34\x9f\x51\xff\xe3\x7e\x5d\xa4\x80\x4f\x32\xf6\xd5\xaf\x8c\xfb\xd7\xa2\x58\x74\x57\x0a\xea\x67\x52\xdf\x8b\x95\xaa\x53\x44\x87\x85\xda\xe5\x5a\xf8\x0d\xfe\xc1\x22\xfc\x2a\xc6\x8d\xcc\xed\xf7\xbe\xc5\xce\xcc\xe8\x39\xa1\xca\xac\x4f\xb6\xb3\x58\x44\x6f\x8a\xbf\xa0\x79\x8a\x2a\x13\x6e\x5a\xb4\x02\x67\x30\x4b\x6b\x7f\xc7\xaf\xed\xf2\x2b\x9c\x94\xaa\xb4\xbe\x49\xf9\x25\x5e\xdd\x68\x23\x3c\x27\xd4\xa8\x71\xc7\x5e\xf3\xcd\xca\xf7\x5c\xa9\xe0\x7a\x14\x7e\xf6\x5e\xc3\x46\x73\xdc\x9c\x62\x98\xc2\x34\x5d\xf3\x64\x3a\x3f\x81\xa9\xb9\x85\x1a\x28\xa2\x2c\xd2\xc5\x5d\x59\x86\xb5\x2a\xf1\x7a\x7d\xef\x0b\xe7\x49\xd7\x77\x9b\xa4\x98\x88\x57\xb7\x99\x0b\xe4\xc2\x95\x0d\x1f\x30\x53\xbe\x7a\xb5\xd7\x95\x25\xdc\x5d\xa5\xa9\x5e\x34\xb6\x43\x7e\x84\xd3\x22\xa6\x5b\x46\x96\xf9\x69\xba\xa3\xdc\x51\x73\x05\x55\x43\x8c\x2c\x0a\xc2\x15\x58\x7e\x55\x0d\xd9\x21\xb1\x68\x5e\x75\xc6\x68\x6c\xbb\x7c\x36\xcd\x39\xf6\x2d\xef\x78\xf2\x0d\x92\x19\xfc\x50\x6e\x41\xca\x08\x2f\x93\xc5\x93\x4d\x2f\x2c\x92\xde\x24\xbf\x71\x38\x27\x9a\xa0\x74\xec\x76\xe2\x97\x40\x25\x9b\x76\x70\x3c\xe1\xb1\x79\x4e\xcc\x55\x48\x54\xd5\xbc\xec\x15\x94\x13\x79\x8b\x32\xe8\x94\x93\x72\x9b\x34\x25\xca\x61\x6e\x4b\x32\x8f\x72\x1e\xf6\x94\xcf\xa1\xc8\xc2\xf7\xca\xfc\x28\xef\xcf\x67\x48\x0b\xa0\xe0\x63\x7f\x44\x4d\xd0\x37\xb3\x5f\xfc\x24\x58\xba\xf1\x0b\xc7\x19\xf1\x9b\x67\xc6\x5c\x89\x94\x55\xda\x66\xb5\x22\x56\xb9\x2e\x19\x7b\x11\x85\xc4\x84\xd4\x3e\xb8\x9b\xab\x9f\xec\x00\x97\x40\xb3\x89\x3d\x70\xc5\xa5\x7e\x99\x1e\x7c\xfb\xfc\x3e\x69\x14\xa2\x72\x2c\x5d\x24\x40\x5c\xcd\x4a\xf8\x31\x48\xee\xc6\x6e\x8e\x29\xaa\x35\xcf\x90\xf1\x17\x55\x29\xdf\x93\x75\x88\x76\x36\x9b\x9d\x7e\x93\x5a\x9d\xb0\x32\x35\x88\xba\x90\xdd\x9b\x34\x4b\x20\x94\xf4\xc4\xd3\xc4\xf2\xb0\xd2\xf8\x66\x7c\xc0\xf3\xb8\x74\x3e\x1e\x67\x7f\x5b\xa4\x85\x1f\x33\x5b\xcd\x57\xc1\x17\x6e\xa4\xb0\x47\xb1\x27\xf3\xec\x19\x19\x98\x4a\xa9\x59\xd6\x26\x4e\x6e\x66\x75\x3a\x99\x5d\x15\x7f\x3e\xe5\x2b\x2b\x8f\x75\x20\x29\x94\x59\x46\x76\x48\x78\xc4\x18\x0a\x25\xe2\x6d\x19\x4a\x1e\x27\x24\x02\xba\xbb\x3d\x10\x66\xd1\x10\x53\x31\x8f\x43\xcd\xda\xe8\xc8\x76\x24\x6e\xce\x63\x33\xd4\x70\xd3\xe2\xe8\xcc\x34\xf1\xad\xf4\x5f\xe9\x8b\x44\x0e\xd2\x96\x14\xba\xa0\x8d\x31\x28\xff\xca\x3f\x46\x9a\x93\xe0\xcb\x9d\x09\xb9\x10\x37\xc8\x49\x3f\xe7\x2e\x59\xcb\xf6\x38\xaa\x27\xdc\xc2\x9c\x35\x5d\xc1\xfd\xcb\xf0\xda\xa8\xcf\x6a\xa4\xf5\xcf\x9b\xa0\x13\xc4\xb9\x82\x86\x4c\xa3\x94\x8e\x54\x22\x4d\x9c\xd4\x22\x26\x52\xe6\x25\x26\xd1\x5a\xe4\xfe\xb2\xb3\x31\xda\xb2\xee\x38\xb5\xa0\xfa\x38\x4d\xf1\xdb\x33\x1f\xc4\x21\xc2\xca\x23\xda\x82\x08\xbe\xd1\xae\x13\x5c\x07\x0e\x67\xc3\x0b\xd6\x3c\x66\xe7\x7c\x53\xda\x75\xda\xb2\xbc\xe3\x99\xcb\x0a\xcf\x25\x1f\x4d\x3b\x95\x77\x41\x18\x9d\x5c\x99\xed\x4c\x0c\xcb\x15\x32\xf4\xa2\xce\xc8\xce\xa4\x7c\x0f\x5c\x25\xad\x90\x0f\xb8\x53\x45\x5f\x64\xd1\x87\x15\xf8\x5f\x25\x03\x26\xd1\x9c\x11\xc1\xe3\x0d\x04\x13\xe1\x34\xcf\xf7\xa1\x99\xd3\x59\x39\x06\x99\x3a\xb5\x51\xf2\x03\x69\x9e\x95\xb3\x7c\x2c\x39\xb3\x4c\x03\x7b\x95\x38\x53\xb4\xf1\x1a\x47\xb6\x25\xf7\xb3\x7f\xb0\x34\x38\xb3\xe1\xf4\x22\x51\x7a\xaa\xcd\xc1\x9b\xfc\xe4\x44\x0f\xe3\x24\xce\x55\xe9\x96\x0d\xaa\x4c\x0d\x3e\x6f\x3e\x46\xbd\xc3\x18\xce\x0e\xcd\x5c\xdb\x1c\x91\x18\x9d\x76\xba\x3e\x86\x97\x97\x9c\x55\x7d\x04\x5b\x99\x78\xb7\x6c\xe2\x6a\x9b\x6c\x49\x91\xb9\x5f\x99\xf4\x48\x2e\xec\xe6\x25\x8a\xca\x88\x3e\x78\x8c\x7f\x29\xe9\xbb\xb1\x15\xe7\x40\xfc\xaa\xf5\x2f\x18\xef\x04\x3d\xf3\x53\xa8\xa9\xcc\x83\x59\x37\x32\x17\x74\x14\x27\xf4\xa5\x1d\x6f\x39\xc3\x7d\x97\x2c\xaf\xbf\x81\xfa\x24\x76\x54\xcf\xbd\xba\x36\xfe\x59\xe9\x1f\xbf\xd5\x52\xb5\x82\xa1\x53\x93\x22\xcb\x6c\x1b\xbb\xe7\x7c\xc3\x54\x63\xe3\x85\xec\x7f\xb2\xf2\xf5\xd3\x8c\x7c\x61\xe5\xfc\x49\xaa\x2b\x93\x9a\xd2\x5f\x71\x26\xf6\xb1\xb8\xa4\x74\x21\x69\x0e\x63\x61\x61\x0b\x49\x9b\x54\x9d\xe7\x48\x8a\x0e\x4b\xca\xea\x25\xbd\xbd\x30\x9d\xae\x43\x26\x4e\x3c\x4e\x76\xa3\xec\xb7\xd6\x4c\xd8\x0e\x6d\xd3\xf3\x97\x54\xc2\xba\x6b\x17\x0a\x56\x20\x4e\x00\xb0\x63\x91\xbe\x94\xc3\x15\x2b\x29\xae\x62\x8b\x92\xeb\x94\x43\x74\x59\x21\x42\xb1\x26\xb9\xe5\xad\xa4\xf8\x87\x39\x67\x89\x28\xe5\x17\x52\xd2\xbe\x43\xaa\x27\x32\x92\xf5\xa0\x38\xab\x67\x09\x8b\xe1\x3d\x7a\x06\x92\x14\xf8\xfd\x9a\x17\x82\xf9\x48\x37\x00\xec\x6b\xc8\xeb\xe4\xae\xf2\x9b\xf0\x6b\x51\x67\x09\x01\x17\xd3\x35\x0a\xf7\xc3\x48\xec\xcf\xdc\x51\x18\x0d\x5b\x90\xe5\x02\x27\x5d\x70\x4b\x6b\x81\x07\x4e\xf8\x24\x7d\x43\xd6\x58\x95\xc8\xee\x23\x91\x3b\x7f\x49\xa2\x91\xa7\x6b\x6e\xf0\x67\xd1\x20\x00\xd8\x67\x50\x8b\xa4\x6b\xe5\xe1\x54\xb6\x50\x5c\xa2\x46\x7c\xa1\x99\x15\xdc\x20\x7c\x62\x57\xe5\x5e\xc0\x3f\x85\x1a\x64\x4e\xe2\x99\xe7\x53\xd3\xec\xf0\xcb\x4e\x43\x49\x14\xfc\x94\x95\xbe\xcc\x0f\xd7\xdb\x99\x2a\x59\x84\x2f\x5d\x93\xc7\x47\xb1\x7f\x00\xb0\x3e\x60\x9a\x89\xf5\xe5\xba\xec\x60\x81\x49\x71\x1d\x0b\x21\xde\x17\x9c\x61\x72\xa2\xbf\xe6\xbc\x64\x54\x87\xec\xcd\xf4\xa5\x7f\xf1\xec\x49\x1d\xa4\xbb\x3b\xad\x49\x5a\x40\xeb\xdf\x9f\x1f\xff\x84\xb6\x69\xe7\x09\x31\x89\x7a\x69\x4d\x16\xef\x3d\xd1\x0e\x36\xb3\x3c\x71\x93\x04\x97\xb2\x3c\x61\x01\xef\x76\xb1\x9d\xe0\x0a\x5e\x97\xff\x8a\xbf\x2a\x6a\x32\xe7\x1a\xf7\x46\xf0\xc1\x8c\x37\x9c\x38\x8f\xb7\xa9\x4e\x6c\xcc\xd1\x5b\xce\x64\x45\xec\xd7\x8c\x77\x63\x9a\xed\x5c\x28\x9a\xa6\xbf\x5a\x53\xc6\x73\xa4\x51\x01\x93\x59\x4f\x58\xc7\x93\xca\x4c\xe4\xf7\xb9\x5b\x8a\x7a\x12\xa6\xb0\xc5\xf9\xde\xf1\x4f\x22\x4f\x64\x3f\x94\x4e\x06\x3e\xca\xb0\x13\x4f\x9f\x2b\x4b\x49\x17\x81\xe3\xee\x89\xa3\x82\x15\xfb\xce\xc4\x25\x71\x5f\xec\xe0\x88\xb4\xd8\x29\x6b\x32\xb8\x4c\xe6\xb6\x39\xcb\x18\xcf\xa8\x5d\xd2\xd2\xd2\x1f\x39\x7d\xec\xd3\x45\x51\x59\xf3\x90\x4b\xf9\x8b\xd2\xcf\x5f\x1d\xcc\x8e\x4c\xe1\x06\x44\xa7\xdf\x94\x57\x9d\x0d\x4e\xd1\x92\xbd\x74\xb0\x4e\x3c\x19\x37\xd7\x32\x3a\x6e\x95\x68\x50\xf7\xb3\x50\xce\xbf\xb0\xe6\x1a\xe7\x2b\xbb\x66\x4e\x28\xe3\x30\x7d\xb9\xf8\x49\xe9\x9b\xf2\x4a\x66\x47\x91\x67\xc9\x25\xe8\x41\xde\x78\xe1\x92\x2b\xb6\xd9\xfa\xb9\x01\x7e\x7f\xd3\x23\x33\x8b\xce\xa8\x24\x37\xa7\xbe\x3c\xa6\x9a\xf0\x48\xfe\xc5\x82\x29\xcd\x88\xcf\xd7\x3d\x23\xd4\x11\xaf\x58\x63\xc2\x61\xf2\x36\xcc\x29\xa4\x8f\x31\x74\xc5\x67\x4b\x9f\xd6\xaa\x30\xb5\x8b\x9c\x2b\x83\xa0\xad\x79\x9d\xa5\x49\x11\xe2\x6c\x95\x42\x99\x9f\x4b\xfa\xb1\xdc\x08\xf7\xc8\x64\x76\xe6\x6e\x7b\x4e\x42\x4e\x4a\x87\xc5\x16\x69\x60\xc2\x1b\xdd\xb5\x82\x77\x92\xae\x35\x9b\x39\xc7\xf9\x5b\xe7\xdc\xa1\x27\x32\x04\xa2\xff\x4a\xc7\x1b\x1b\x19\xe9\x45\xfb\x6b\xdb\x29\xdc\xbc\xdc\x4a\xd9\xe5\xbf\x59\xcf\x4b\x6d\x7c\xfb\xd2\x57\x17\xb4\x9c\xfe\x91\xec\x90\xb3\xce\x5e\x2b\xe1\x7c\xfa\x0e\xf3\xbb\xd2\x4d\xf2\x7b\x3a\x5f\x04\x39\x71\x5b\xd7\xe8\x70\xe6\xf1\xdf\xcd\x5d\x43\x3f\xc6\x68\x63\x2d\x68\xad\x20\x2b\x22\x1b\x1a\x7d\xc8\x1b\xaf\xa1\xb5\x3a\xe4\x9d\x41\xf6\x15\xf7\xc8\x97\x3c\x49\x25\xe7\xc9\x8f\x4f\xfc\xc9\x6f\xa7\x5c\xb3\x8d\xc9\x1a\x87\x4c\x77\x79\xa6\x52\xe0\x2d\x9a\xb3\x09\xa3\xc8\x36\x55\x8a\xb8\x0f\xdd\x04\x00\xb7\x10\x3d\xc7\x7c\xda\x6a\x07\x9d\x81\x67\x1a\x55\x20\xf3\x6b\xbb\x6b\x9e\x42\x6a\x41\x4a\x15\x32\xc8\xd0\xf3\x58\xc9\x66\xe8\xf2\x89\x91\x7c\x06\x74\xc7\xd6\x29\x2b\x0b\xbe\xb0\xeb\x70\xea\x29\x64\x99\x66\x67\x42\x1d\x32\xa0\x1a\x26\xae\x44\xa3\x00\xe0\x26\xa3\x41\xcc\xbc\x96\x57\xc8\x75\x38\xa3\xa1\x15\x89\xb9\xfa\xa9\x46\x86\xec\x0c\xbc\x55\x71\x1c\x59\xe3\xa9\x56\x7c\x1f\xd9\x71\x22\x23\xdf\x16\xf1\xb4\xd5\xca\xf2\x45\x6a\x76\x6d\x4e\xdd\x82\x6e\xd1\xcc\x4c\xe0\xa0\x72\x55\x6f\x31\x17\x03\x00\x70\x63\xd1\x7c\x46\x44\x8b\x3f\xb5\x0c\xaa\x68\xd8\x4b\x5d\x7f\xd5\xa2\x66\x39\x41\x0d\xd4\x2d\xef\x25\xd6\x7a\xe0\xc5\x2e\xf8\xad\x13\x5b\xf2\x6a\xf1\x82\x03\xed\x99\xa3\x78\xaa\xc9\x74\x4a\x26\x2e\xd2\xbc\x96\xb0\x04\xa7\xab\xfa\x89\x97\xe3\x5e\x00\x70\xe7\x60\x51\xf4\x80\x96\xa5\x6c\x73\xca\x78\x7d\x3f\x6b\xff\x15\x72\xb5\x88\x69\x1d\x40\x2d\xb7\x63\x44\x9e\xfb\x5c\x34\x42\xef\x77\xca\xcb\x33\xa0\x5b\x1c\x38\x9f\x79\x8c\xd6\x66\x22\x4f\x59\x44\x33\xd5\x74\x95\x05\x52\xf3\x55\x11\xd1\x65\xe2\x23\x00\x9c\xb3\x78\x04\xad\xaf\x59\x20\x5c\x4e\xd9\x5c\xef\xc8\x2f\x8e\xe8\xaa\x5e\xc9\x3b\xe2\x3f\x5d\xd6\xc9\x5d\x75\x2e\xa8\xe8\x28\xfb\x8f\x93\x5e\x6e\x36\xeb\x97\xcd\xaf\x8c\x66\xd6\x02\x13\xf7\xe4\x20\xc6\x17\x4d\x8b\xf8\x46\xfa\x7d\xd5\x7c\x61\x1b\x8d\x06\x00\x3b\x83\x08\xa4\x12\x4d\x2f\x12\x3a\x49\xef\xea\x32\xe3\xbf\x5f\x96\x55\x79\xc4\x6d\xf6\x1b\x28\xfd\x2b\x39\x7c\x36\xb4\x90\x24\x22\x3b\x9e\xca\x19\x14\xb4\xd9\xb8\xa4\x4f\xf2\xe7\x18\x3f\x4f\x62\x72\xd7\x6a\x2e\x8f\x7b\xc0\x5e\xad\x7a\x57\xf0\x88\x71\x0b\x00\x56\x05\xb5\x8d\x60\x34\xd1\x33\x25\xb1\x23\x75\xba\xe9\x8b\xc3\x43\x2a\xef\xa4\x90\x7c\x4b\x4b\x03\xe5\x33\x67\xfc\x0a\xee\x27\x38\x1f\x0f\xcb\xd1\x8e\xeb\xb1\x8e\x4f\x37\x96\x6c\x37\xf6\x94\x3f\x14\x1e\xd3\x18\x88\x33\xe0\x1d\x54\x9d\x15\x18\xb2\x3e\x01\xc0\xfc\x4b\x9b\xc6\x5d\x9a\x36\x17\x9b\xc4\x94\xd6\x8e\x14\x28\x5c\x3a\x5b\x19\x99\x33\xe4\x93\x52\xf2\x23\x93\xe4\xee\x51\xe0\x96\xa6\xee\x40\xcd\x96\x27\x35\x58\x4d\xa4\xa5\x27\x98\x18\x8d\xca\x8f\x49\x7d\x34\x04\xd2\x2c\xa1\xa7\xea\x3b\x7e\x11\xe7\x05\x00\x4c\x32\x7d\x00\xab\x6e\xfc\x50\x1e\x17\xa3\x55\x9b\x55\x62\x12\x76\xaf\xd2\xa1\xa0\xcc\x67\x73\x49\x4f\xee\xc2\xd3\x4f\x0b\xd6\x66\x1e\x76\x50\xcf\x76\x4b\x45\xad\xa8\x69\x67\xe4\x6c\xa3\x44\xf9\xbc\x78\x3b\x0d\xb2\xd4\x53\xd4\xa9\xfa\x9b\x1f\xc8\x6d\x01\x80\x69\xce\x58\x8d\x6d\x6d\x6c\xae\x76\x88\x2e\xaa\xbd\x52\xde\x16\x76\xa9\x52\xbd\x44\xc1\xbb\xbe\x84\x59\xb0\xf2\x34\x96\x7f\x33\x67\xee\xb1\x81\xec\x45\xe9\x4f\xac\x8e\xa6\x2d\x48\x66\x1b\x5d\x4b\x2c\x92\xdd\xd1\x40\xa5\x8b\xc4\xd3\xcb\x37\xf2\x57\xf1\xce\x80\xed\x8c\x19\x86\x36\x4a\xee\x3e\x45\x59\x18\x15\xdd\xf6\x9c\xb2\x38\x54\xbf\x29\x90\xfc\xd5\xcb\xb7\xb6\x91\xb2\xcd\x4d\xbd\x62\x8c\xc2\xb2\xd7\x2a\xee\x86\x56\xed\x73\xc8\xf3\x80\x86\xf5\xff\x65\x5c\x82\xcb\x37\x25\x27\x59\x22\xe5\x4a\x05\x52\x02\xa5\x01\xc0\xcb\x40\xd3\x50\xa3\xee\xb9\xf0\xbe\x28\xa7\xb6\x78\x58\x31\xe4\x57\xd3\x06\x68\xcc\x6b\x77\xed\x55\xe8\xee\xa9\xdf\x15\x62\x78\xa1\xfd\xdc\x62\x3a\x7c\x71\x9f\x61\x9e\x16\xfc\x4c\xff\x63\xc6\x41\x84\xbb\x09\x4b\xda\x80\x1e\x52\xca\x92\x06\xa2\x23\x00\xf0\x04\x68\x0e\xd2\xda\xd5\x81\xf2\xa3\x96\xb4\x1d\x47\x8d\x42\xea\x1a\x6f\x23\x63\x17\xff\xd6\x6a\x23\x79\xa7\x6e\x54\x1c\x41\x0a\x8e\xde\x2b\xde\x8f\x8c\xed\x5b\x94\x3b\x89\x6e\xd5\xbf\x9b\xa1\x84\x0a\x36\x05\xcb\x5f\x62\x8b\x94\x92\xa5\x96\x98\x03\x00\xbc\x00\xf4\x11\x7c\xbf\xcb\x90\xb6\x27\xf2\x44\x6b\x1d\x55\x14\xa2\xd5\xb8\x9b\x78\x7d\x91\x52\xc3\x27\x22\x4f\xb9\x95\x57\x12\x5b\x8f\x46\x16\x65\xe0\x3f\x2d\x1b\x73\xf7\xe1\xaf\xf5\xeb\xd3\x51\xfc\xc1\x26\x07\xb9\x27\x3e\xa6\x54\x24\xa9\xc5\xe3\x01\xe0\x3e\xc5\x72\x61\xeb\xce\x7e\x76\xf4\xb5\xfe\xd6\xfd\xac\xa8\xe0\x82\x86\x22\x66\xf4\x45\xd5\x1a\xc0\xc8\x75\xfd\x53\xae\x49\xff\x76\x54\xa7\x48\x89\xee\x6b\x89\xe4\xe4\xd3\x9e\xeb\xb3\xd3\x1e\xd1\x2e\x6e\xda\x9f\x58\x42\x9d\x50\x1a\x96\x2c\xa1\xae\x04\x80\x6b\x8c\x27\x41\xf5\x9d\x76\x82\x5f\xd7\x8e\xb4\xd4\xf0\x53\x83\x8d\x1b\x36\xf2\x0e\x5e\x28\xac\xbe\xcc\x55\x75\xcd\x2d\x13\xb3\x7f\x1c\x99\x2c\x8c\x62\x7d\xb6\x3c\x94\xb3\x8c\xf9\x4f\xdf\x2b\x6d\x17\xe3\xe7\x26\xf3\x84\xcf\xf4\x37\xca\x73\xc4\x27\x68\x62\x00\x38\xe1\x04\x8b\x52\xd9\x41\x4e\xb0\xbf\xea\xd8\xfc\x32\x1e\x0a\x3a\x54\x7f\x54\x5a\x74\x7e\xb8\x4a\x20\x1e\x77\x99\x2c\xcd\x11\xad\x3a\xb2\xb7\x80\x2a\xb8\x68\x31\x9c\xbd\x82\x57\xaa\xbf\x3e\xd5\x92\x73\x6f\xd3\x6e\xd9\x3f\xd6\x7b\xe5\xa3\x22\x4f\x46\x2d\x00\xec\x08\xea\x20\xf9\x4e\xfb\xbb\x0c\xf4\x4a\x50\xf3\xf1\xd4\x3f\x81\xa7\xea\x92\x93\xa3\x3c\x5f\x54\xde\x4f\x7c\xe7\xb2\xa4\xe4\xa5\xec\xca\x61\x3c\xbf\x43\xfa\xd5\xc2\x2a\xcb\x51\x1c\xa1\xd7\x9a\x12\x2b\xa8\xd9\xb4\x5a\x66\xc3\xbd\xab\x1c\x2a\xcc\x60\x65\x03\xc0\xaa\xa6\x8d\x93\xe7\xb7\x07\x14\x06\x45\xc4\x37\x8d\xe4\x1d\x0b\x60\xd4\x6d\xce\xde\xec\xa9\x56\x79\x3c\xfd\xa9\xb3\x65\x89\x7d\x4a\xf6\xa1\xb1\xfc\x0d\x72\x1f\xf3\x96\xcc\x5c\xd9\x62\xbd\xc0\xe4\x3b\x92\xe0\x4d\x4b\xe3\xb3\x04\x99\xca\xa9\xc2\x65\x1c\x1f\x00\x58\xdb\xe9\x69\x24\x4e\xbb\x51\x69\x74\xc4\x96\x26\x51\xd1\xf2\x80\x9d\xb5\xb3\x79\xf9\x1e\x4d\x95\x8b\xb3\xd5\x4f\x3e\x29\xfe\x93\x8e\x1c\x62\xe7\x0d\x27\xcf\x9a\xb3\x32\xdd\x12\xb7\xea\x39\x24\xa3\x71\x6b\x37\xad\x8c\x3f\x25\x9c\x52\x6e\x13\x74\x73\x37\x02\xc0\x7c\x4a\xbf\x4f\x5a\xdf\xf6\xa5\x62\xf2\x72\x4d\xd3\x89\xd2\x43\xfe\xe3\xb5\x59\x85\x25\x1e\xc1\x15\xad\xb9\xf7\x4e\xc6\x15\x17\x64\x7e\x3a\x74\x22\xef\x5a\xda\x42\x73\xdf\x8c\xef\xf2\x37\x7a\xe6\xc9\xeb\xe3\xa3\x36\xe9\xc4\xfd\x12\xdd\x57\x7e\x2b\x08\xe3\x66\x02\xc0\xe4\xd0\xa7\x62\x15\xfa\x97\x43\x27\xc2\x4d\xbb\x61\x68\xa7\x9f\x69\xdb\x2d\xca\xcb\xb3\x95\x8d\x8f\x29\x7f\x9c\x46\x6a\xf2\x21\x3b\x3b\xab\xf2\x7d\x50\xf3\xee\xef\x85\x21\xb0\x9f\x6e\x60\xd6\x17\xc4\x58\xfd\x47\xca\x29\x54\x4b\x31\x2c\xee\x2f\xda\x07\x00\x3f\x00\xed\x8d\x79\xde\xd7\x8a\x84\x84\x6f\xef\xde\x8e\xa8\xfb\xad\x6a\x83\xe1\xe6\xb3\xd2\x46\x21\x9c\xec\x54\x5d\x73\x1e\x2e\xb7\xd3\x2c\xfb\x06\x7f\xdf\x3d\x59\xa8\x83\x84\xe8\xba\x65\xdd\x40\xfe\xa8\x3f\x49\x31\x40\x0b\x14\x83\xe3\x1e\x62\x8b\x01\xe0\x3b\xa3\xbd\x31\x48\x1f\x13\xcb\x0a\x07\x5d\xf7\xb0\xcd\xbe\x13\x6d\x46\x68\xe9\x59\x9f\x46\x2b\xd4\xc3\x89\x57\xa3\x8c\xda\xda\xfe\x2b\xcb\x47\x3d\x76\xb7\x14\x4c\xa2\xa9\xba\x07\xb3\xa4\xe8\x17\xf5\x91\xe4\xaf\xd8\x45\x45\x8f\xb8\x52\x0c\x05\x80\xaf\x85\xfe\x8a\x9e\xed\x7d\x4e\x57\xbb\x14\xd4\x65\x49\x73\xf2\xf5\x6c\x45\xa8\xbc\x33\xdf\x1a\xc4\x54\xe0\x64\x54\x1d\x40\xa4\xd9\x96\x97\xfe\x20\xbc\x76\x63\x05\xba\x84\x9d\xae\x6e\xd6\x1c\x62\xa7\x7a\x4b\xb2\x07\xb1\x41\x31\x34\x6e\x03\xde\x0a\x00\x4f\x86\xb5\x47\x57\xf7\x5e\xe2\xac\xb8\x64\xd0\x59\xc9\xfa\xe3\xbb\xb1\x65\x86\xf9\xf9\x4c\x57\xfd\x37\xa6\x92\xd3\xa2\xaa\x41\xc6\x49\x5b\x7e\xe9\x19\x7a\xd1\xee\xc0\x7c\x06\x5d\x43\x57\x3d\xf3\x24\x4d\xa6\xde\x92\x94\x4e\x53\x52\x94\x49\xfd\xa8\x7a\x00\x70\x1f\xe0\x15\xd1\xd6\xd7\x1f\x0b\x8f\x87\x3d\xec\x54\xe7\xbf\xf2\x99\x69\x39\xc4\x13\x9c\x11\xd5\x9f\xe6\x1e\x75\x7c\x52\xb5\x83\xb3\xcd\x36\xac\xa4\x8a\xbd\x72\xb7\x73\xde\x23\xd6\x2a\x5d\xd5\x8c\x78\xa6\x92\x7a\x8f\x7c\x82\x31\x4f\x71\x58\x92\x42\x4b\x04\x80\xab\x44\xc8\xa3\x2e\xf7\xbc\x4d\x38\x16\xb6\xb1\x63\x7b\x7c\xb0\x8f\x59\xb3\x83\x94\xef\xfe\x5f\x9d\xab\xb8\xcc\xd1\xbe\x72\x93\xf0\xbf\x03\xdf\x8a\xd3\x05\x46\xbb\x17\xe4\xf6\xf2\x60\x9d\x0f\xe9\x54\x4e\x95\xfa\xe3\xc4\x61\xd6\xdd\x65\x3b\xc4\x89\x8c\x54\x00\x38\x0a\xd4\x87\x91\x65\x3d\x46\xe9\xef\x42\xbd\xda\x2f\xa6\x7a\x79\x53\x9a\x62\x92\xc6\xdd\x2d\x6a\x49\x89\x8e\xc7\xb3\x2b\xac\xe3\x27\x0e\x5c\x2a\x6a\x95\x7a\x99\x65\xe4\x3c\x15\x3d\xd7\xa9\x4f\xcb\x13\xd8\xa8\x3f\x4e\xf8\xc9\xa5\x2c\x0b\x16\x0d\xb2\x2e\x00\xc0\xde\x4b\xeb\x8f\xb4\xed\xc6\x0a\xf4\x43\x66\xda\x1a\x73\x17\x79\x7d\x6e\x1c\xcf\x9c\x3c\x5d\x54\x33\x98\x56\x70\x7c\x79\x39\x9e\x4c\xb6\xf9\x59\xf8\x2f\xd1\xc9\xcc\x3d\x47\x3b\x5e\x55\x27\x35\xf5\xb9\x38\x51\xfd\x5f\x82\x03\xff\xf7\xb2\x12\xd1\x0e\xf6\x2b\x00\x58\xd9\xf4\xe0\x6b\x6f\xbb\xad\x8a\xdf\x84\xe0\x6d\xa1\x05\xb1\x5e\x15\x8d\xac\xdc\x55\xa7\x03\x6b\xa2\x32\x45\x0e\x23\xe5\x5b\xd3\x94\x6c\xfa\x0b\xb3\x92\x04\x66\xe6\xd9\x7d\xb2\x2f\x3a\xf1\xa9\x54\xe9\x8a\xf5\x6b\x65\x5f\x85\x2b\x97\x4d\x08\x1f\x71\x38\x00\xb0\x3c\xe9\x09\xd7\x52\xbb\x7e\x94\x2f\x08\xd1\x6e\x5b\x5b\x7c\xca\x8b\xd4\x68\x9a\xdf\x7d\xda\xa4\x66\x5d\xce\x5c\x87\xe4\xb2\x8e\x0c\x33\x9b\x82\x42\x8b\x94\x70\x33\xa3\xec\x8b\x89\x0c\x9d\xe4\x54\x95\x38\xab\xf5\x87\x64\x52\xe1\x3b\xa5\x95\x42\x8c\xf3\x1b\x00\xd6\x42\x7a\xca\xcf\x34\x38\x0d\x8a\x7d\xa9\x09\x97\x40\x17\xef\x26\xc1\x6d\xd0\x85\x9e\x05\xf0\x03\xc8\xbb\xe2\x37\x3c\x0c\x81\x14\x08\x51\x83\x7a\x18\x5f\x90\x5d\xb0\x4a\x38\x81\xb8\xc3\x01\xae\x63\x08\x0e\x8f\x9b\x1e\x41\x2a\x11\x77\x15\x23\xe4\x17\xd2\xf4\xc3\x17\x5e\x81\xad\x7c\xb1\x08\xd6\x41\x93\xc7\x85\xb0\x1d\x7a\xa0\x5b\x13\xf6\x43\xbe\x55\x68\xc3\x81\x08\x27\xb9\x1d\xee\x44\xc6\x18\x66\xf0\x0b\x64\xea\xd2\x04\xb2\x01\xf9\xcf\x55\x07\x39\x8b\x2e\xda\xd5\x8e\x24\xa2\x3a\xca\x03\xc8\x57\x74\xcb\xb7\x85\x50\x32\x15\x99\xfd\x09\x55\x12\xa3\x77\xee\x40\x3d\x84\x51\x67\x0b\xf4\x1e\x27\xca\x66\xe1\x55\xf8\xd2\xa4\x01\xd8\x1b\xfb\x4e\x77\x87\x45\x58\xd7\xa5\x9d\xf0\x38\x26\x70\x09\x40\xb6\x60\xe7\x76\x59\x21\x11\xd8\x06\xe5\x30\xe4\x3e\x9a\xfd\x31\x83\x32\xc4\x29\x98\x5e\x4b\x79\xc5\x66\xdf\x82\x20\x05\xd6\xb9\xb6\x49\xc8\x88\x79\xa8\x24\x06\x0a\x60\x1c\x4e\xfc\x00\xc9\xe9\x4c\x6a\x1d\x74\x97\x76\x3b\xf4\x07\x6c\x46\x5b\xe2\xec\x06\x27\x51\x0d\x4d\x82\x10\x40\xe8\x2b\x2b\x20\x04\x36\xfe\xf6\x3e\x79\x54\xd2\x3a\x39\x4a\xfe\x2b\x56\x18\xf6\xa6\xec\x14\x9e\x6c\xd1\xa6\x9c\xe5\x97\x15\x2d\xa3\x48\x79\xda\xb2\x29\xca\x2d\x4e\x17\xfe\x1b\xda\xc0\xbe\x10\x92\x09\x71\x98\xb3\x27\x9d\xe0\x79\x0c\x07\xe3\x16\x38\x86\x76\x4d\xe9\x01\xb2\x8c\xd0\x79\x6d\x4e\x5e\x9c\x9c\xf2\x80\x4c\xde\x25\x77\x1b\xa4\x91\xfd\x65\xff\x1a\x85\x64\x49\x5c\x77\x7e\x37\xb9\x5f\x12\x17\xf7\x8c\xb2\x4a\x84\x60\x6e\x94\x10\xc1\xd9\xe0\xb3\x94\x59\xde\x9a\x13\x27\xa1\x30\x76\x9e\xf1\x76\xe8\x3d\xe3\x81\x52\x1f\x2c\xa6\xe2\xcf\xe7\x93\x94\x8a\x0e\xdc\x6d\x25\xed\xcb\xfb\xd7\xfb\x96\x14\x9c\xdd\x56\xe7\x42\x4a\xc9\x20\xe7\x3c\x24\x4d\xa5\xee\x92\x9c\x25\x1b\xcb\x5f\x21\x3a\x64\x99\x8c\x1c\x28\xa5\xac\x93\x4c\x38\xfe\xa3\x14\x0b\xde\x1a\x5d\x82\x6c\x38\xc9\x4a\x1d\xd0\x37\x3a\xeb\x29\x2f\x36\xa4\x89\x7d\xc7\x37\x56\x56\xa7\xd6\xfd\x36\xb6\xb9\x72\xb8\x9a\x19\xfb\xb9\xd4\x2f\xcb\x9e\x64\x51\xf0\x42\xb4\x98\x24\xcd\x39\x0a\x6d\x21\xcf\x4f\x0f\xf1\x7f\x42\xe6\x26\xed\x3b\x5e\x43\xd1\x8e\x2b\x30\x2c\xa5\xf4\x09\x92\x95\xca\x20\x31\x33\x69\xea\x41\xac\xf5\x60\xce\xad\xcf\xb1\x6e\xd7\xcf\x75\x22\xb1\x97\xdb\xbf\x57\xee\x8a\xcd\x6d\x8a\xc9\x58\x1f\xfb\xba\xa6\x57\xa0\x40\xb2\x2d\x9b\x21\x9f\x21\x55\x17\x64\xf8\x79\x91\xb5\x33\x1b\x1d\xda\xc8\x15\x49\x57\x0c\x35\x28\xc1\x12\xaa\x52\x11\x74\x8c\x1d\xf2\xf8\x67\xac\xda\xe8\xca\x5b\x73\x63\xf7\x0e\xc5\x74\x88\x62\x9d\x7b\x4b\x2b\x8e\xc7\xe2\x1d\xc5\xe9\xb6\xb1\x3d\x4d\x21\x7c\x0b\xd2\xba\xea\xd7\xa4\x7c\x12\xb3\xe4\x87\x6f\x37\xe9\xbf\x5c\x03\x87\x08\xf2\xa5\x54\x55\x83\x9f\x14\xa3\xb8\x9d\x4a\x37\xa0\xf5\x9c\xf9\x8f\x1d\x62\x7e\xde\x6b\xbe\x79\x34\x76\xf5\x68\x53\xfb\x6c\xec\x8e\x21\x49\x79\x6e\xec\xa9\x5e\x8d\xb4\xb4\x58\x71\xfb\x79\x5e\x41\xec\xe3\x06\x27\xd2\x76\xd2\xd1\x8a\x7a\x5f\x07\x52\x4e\xc1\x6a\x07\x07\xf2\xaa\x74\x1d\x83\x7f\xe4\xe9\x78\x77\xe5\x2d\x94\x11\x8e\xde\xe7\x60\xcc\x92\x52\xf7\x54\x84\x2d\xa1\xc8\x6e\x27\xa1\xf7\x28\x89\xed\x32\xb4\x99\x92\x57\xf2\x1e\x15\x53\x58\x72\x15\x94\x03\x59\x51\x5f\xa1\xe1\x50\x5e\xe8\x67\xd4\x0d\x56\x73\xae\x47\xad\xe1\x1c\x93\x61\xd4\x00\x39\xac\x4c\x45\x77\x21\x5d\x9f\xec\xd1\x12\x74\xff\xb4\x14\xa5\x22\x63\xb7\x0a\xd1\x8b\x08\xa3\xad\x07\x3d\x86\x1c\x2c\xd9\x8e\xee\x40\x14\x12\xbd\x50\x7d\xc4\x96\xaa\x83\xaa\x23\x61\xa1\x21\xe8\x6a\x44\xee\xac\x80\xaa\x20\xa3\x26\x47\x51\x65\x74\xad\xf2\x3a\x74\x33\xba\xf3\xc3\x62\xd4\x8c\xc8\x9a\x4a\x44\x95\x89\x65\x23\x7f\x90\x97\x38\xb9\xf5\x3c\xf2\x18\x7b\x56\xf4\x05\x19\xc1\xb0\x84\x00\xe4\x36\x16\x41\x9c\x42\xba\xb1\xd3\x21\x2d\xc8\x1d\xcc\xe2\x64\x24\xf2\x10\xdb\x6c\x3c\x80\xbc\xc4\x14\x94\x46\x51\x05\xb4\xf4\xcd\x2c\xe2\xcb\x6e\x7a\xf8\x19\xb1\x65\x35\xdc\xb8\x81\x6c\x67\x26\x37\x65\x22\xeb\x19\x29\x05\xf9\x88\x1a\xbd\x3a\x9e\x85\xac\xa0\x2f\xc3\xba\x90\xf5\x34\xff\x60\x36\xb2\x87\x5a\x75\xe2\x02\x72\x96\x78\x6f\xbc\x12\x21\x11\x2b\x95\x38\x48\x15\xf6\xf8\xa5\x2d\x9c\x22\x8e\xbf\xd7\x07\x53\x44\x4b\xfa\x6f\xc3\x7e\x82\xc8\x86\x79\xf0\x19\xde\xdb\xbc\x53\xb0\x3b\x97\x2c\x8d\x87\x3d\x38\xc6\xe8\x16\x38\x94\x35\x1b\xb4\x17\x96\x33\x71\x27\x4f\x78\x84\xa1\x60\x14\x01\xff\xa5\x9d\x52\xf2\x41\x8e\x10\x06\xb3\xb7\xa1\xd1\xa4\x73\xe3\x71\x50\x47\xa2\x65\xef\x72\xa8\x2e\xfe\x5f\x2d\x15\xca\x91\x4e\xe5\xac\x82\x32\xc5\xfd\xe2\x3c\xa8\x54\x78\x0b\x26\xa0\x6e\xfe\xf5\x80\xdf\xd0\x2f\x6e\x9a\xe3\x55\x78\x0f\xdb\xd9\xf0\x3d\x7c\x95\x51\xa1\xe4\x0f\x0f\x50\x89\x27\x15\x94\xe7\x05\xb5\xb7\x9f\x53\xee\xe6\x26\x77\x31\x29\xfd\x59\x78\x95\x1b\xa5\x21\xfd\x7c\xa6\x1d\xa5\x31\x65\xb7\x50\x87\x32\x22\x57\xa6\xf8\x50\xbe\xc6\x77\xfb\xdb\x42\xc6\x92\xc3\xc7\x77\x43\x51\x02\xba\xa1\x03\xd4\xce\xf1\x51\x82\xe1\x6d\x74\xda\xe4\x3e\xca\xf9\x86\xa2\x91\x54\xca\xbe\x9a\xe0\x76\x1e\x65\x5b\xc5\xd1\x72\x31\x65\x75\xc9\xc2\xb4\x26\xca\xaa\xfc\x62\xde\x63\x8a\x49\xf6\x1e\xd2\x05\x8a\x4f\x1a\xd5\x37\x91\x92\x25\xa7\x1f\xfb\x44\x79\x1f\xa7\x65\x90\x01\xd9\x09\x9c\x94\xc8\x50\x0b\x93\xf5\x20\x97\xa2\xdb\x1f\x3c\xb4\x87\xfc\xaf\xfb\x7c\xab\x31\x79\xa2\xcd\xa4\xd4\x89\xdc\xd3\xf0\x28\x25\x91\xdc\x5d\xed\xc6\x79\x41\x9e\x2c\x4d\x8f\xc9\xa6\xa8\xe4\xf3\x7c\xb4\x28\xfb\x32\x26\x8f\xcd\xa1\x60\xf2\x01\x83\x55\x94\x67\x92\x0d\x4a\x30\x14\xc9\x3e\x76\xbf\x8f\xb2\xe4\xe6\xcd\x1b\x8e\xe4\xa7\x83\xbe\x2d\xc7\xc8\x0d\x3d\x43\x25\x61\xe4\x8c\xb6\x6f\xc9\x9d\xe4\xd4\x86\x27\x9c\x2d\xe4\xaa\x2a\x51\xf4\x67\xf2\xd3\xe2\x11\x6f\x2e\x65\x61\xce\x21\xfb\x4a\xca\xfe\x94\xb3\xfa\x6f\x28\x65\xd2\x66\x25\x39\x74\x90\xfd\xe8\xbe\x26\xf9\xed\x5d\xcf\xc1\x2c\x72\xc7\xad\xf8\xe6\x2c\xb2\x68\x50\x5e\xdc\x4b\xbe\xd6\x73\x3a\x79\x1b\x39\xb0\xb5\x8b\x2d\x22\xc7\xd4\x4d\x47\xc7\x92\xd3\xcb\x11\xef\x4d\xe4\xc6\x7c\x2d\x7b\x06\xf9\x79\x5a\x90\xfe\x07\xca\xf9\xb8\x19\xa5\x97\x94\xaf\x1c\x85\xff\xde\x12\x3f\xc8\x23\x8f\x2a\x08\x36\xf9\xd6\x90\x25\xb1\x91\x7c\xbb\xe9\x21\xde\x47\xbe\x59\x90\x87\x47\x51\xe6\xc4\xbb\xe1\xc6\x94\x7c\x2c\x0e\x7b\x0c\xed\x0c\xd6\xc3\x38\x50\xc7\x09\x3b\x6c\x17\x1c\x64\xbc\x1e\x9d\x41\x74\x94\x64\x68\x2e\xd2\xf6\xe6\x1f\x71\x09\x71\x7d\x38\x48\x2c\x46\x14\x6f\x04\xe3\xd9\x70\x7f\x93\x12\x7e\x16\xa6\xe5\xcf\xe0\xcb\xe1\xab\x71\xf9\xd8\x5d\xb8\x1e\x7d\x86\x71\xe1\x9f\x41\x85\xd8\x09\xc4\xda\x69\x10\x5b\x8c\x88\x8c\x92\xd1\x3e\xe4\x87\xd2\x21\x54\x8a\x6e\x7f\xf5\x01\x7f\x87\x0f\x3e\x58\x8d\x8b\x71\xbb\x81\x17\xb8\x31\x36\xdc\x30\x88\x7d\xc4\x8e\xe4\x8d\x62\xb5\xe8\x07\xe9\x0d\x8c\x84\x4e\xa2\xeb\xb0\x7d\xe8\x6c\x10\xc0\x94\xd1\xc7\x4e\x7a\xe8\x38\xfa\xd0\x48\x0f\xcd\x44\x9f\x29\x2d\x46\x29\x68\xc1\xb3\x4f\xf8\x06\xd6\xd8\xdd\x04\xac\x93\xf9\x5f\xef\x63\xec\x0a\xe3\x71\x9d\x3e\x66\x48\xff\x9c\x23\xc4\x00\x7d\xb3\xf8\x31\x3a\x40\x23\x60\x26\x2a\xa7\x7e\x0e\xe8\x47\x29\xd4\x93\x8e\x5b\xd0\xf3\x44\xae\x61\x34\xba\x07\xff\x6f\x59\x2b\xba\x03\x1b\x7b\x1a\x8d\x71\x44\x91\x77\xa8\xd8\x16\xa1\x4a\xcf\x42\x74\x80\x9f\x50\x5d\x8a\xa2\xbc\x1d\x59\x17\x51\x7b\xce\x0d\xd1\x22\x74\x1d\x3b\x1e\x02\xc8\x27\x96\x97\xbf\x10\x99\x64\xae\x3c\x6e\x88\x8c\xd0\xab\x0c\xde\x20\x35\xb4\xad\xcb\x4a\x91\x06\x62\xcb\x94\x01\x3a\x26\xdf\x78\x2b\x16\x8d\x49\xd0\xee\xf4\x46\x4d\xe3\xfe\x56\xda\x20\x4f\x24\x3f\x32\x4c\x90\x4c\xd1\x2f\xc1\x76\x24\x46\xb8\x8e\x1c\x86\x9c\xe1\xef\xf4\x73\x47\x0e\x71\x37\x3a\x9c\x44\x2c\x58\xef\x0c\xae\x22\xfa\x0c\xd2\xb2\x7a\xc4\x82\x1a\xf1\x70\x27\x32\x93\xaf\x3b\x74\x0f\x49\xca\xd9\xd3\xfa\x1c\x71\xcb\x3c\x50\xa6\x09\xff\x4b\xdb\x97\x1a\x02\x77\x26\x1b\x73\xab\xe0\xb4\xc4\x1d\xb1\x2e\x30\x2f\x7e\xae\x4f\x21\x8c\x8a\x8b\x8e\x6d\x81\x21\xc1\x0a\xfd\x49\x98\xc2\xd9\xb4\x6c\x1a\x96\xd1\xc3\x27\x9a\x90\xd8\xba\x81\x81\x0c\x44\xa9\xaa\xbe\xe9\x3d\xdc\x56\xd6\x5e\xec\x0d\x07\x14\x65\x24\xbd\x82\xb5\xf3\x82\xd8\x97\xe1\xc5\x59\x1b\xa2\xdd\xa1\xbf\xa9\xf1\xde\x0b\xa0\xaf\x89\xdd\x47\x9f\x43\x3f\xa4\x52\xfd\xbd\x30\xe0\x7f\x59\xf6\x1a\xd6\x61\xfa\x8f\x5b\x22\xfb\x7b\x75\xfa\x0e\xc2\xb7\x3b\xcf\x34\x14\xc1\x97\x5b\x02\x0b\xf5\xe1\x15\xf5\xfb\x12\xef\x40\xb7\x2b\x1f\x31\x69\x50\x65\x89\x4b\x64\x0e\x94\x93\x17\x7e\x31\x11\x12\xa6\x7f\x3f\xf2\x11\xe2\xca\xd7\xea\x95\x42\x59\xe2\xc2\x65\xef\xa0\x49\xf6\xba\x31\x2f\x44\x7b\x98\xd6\xeb\x0f\xd7\xf7\x1f\xad\xef\x87\x4f\x74\x4d\x17\x9c\x80\xde\xb6\xee\x4b\x04\x50\x51\xfd\x09\x46\x1b\x44\xaf\xd4\xbb\xf6\x0d\x8a\x2a\x4a\xbe\xb8\x00\x3a\x9b\xed\x7a\x24\x05\x3a\x9e\x2c\xd7\x23\xa0\x30\xa9\x8d\xd2\x12\xa8\x84\x5d\x74\xa7\x0f\x59\x7a\xe7\xd3\xf5\x5e\x38\x61\xe4\x62\xbd\x16\xbc\xbd\x5f\x96\x5f\x08\x75\x75\x51\x13\x7c\xa0\xa8\x96\x0d\x0c\x23\xe8\x68\x6d\xd8\x35\x08\x32\x29\xb3\xbc\x90\x01\x29\xe7\xe9\x1c\xb9\x4c\xf9\x9e\x9a\xa6\xc7\x80\xd4\xe3\x7c\x94\xdc\x21\x0f\xf6\xf8\x13\x25\x56\x1a\xc9\xf1\xd6\x3d\xe6\x28\x29\xaa\x33\x93\xf1\x9c\x14\x57\xb9\x9a\x61\x41\x6a\x4a\xaf\xa7\xcb\x49\xff\xf8\xc1\xb4\x69\xb2\x90\x14\x45\xdb\x4a\xb1\xf5\xdd\x4d\xbd\x08\x29\x1e\xb3\x23\xf8\xd0\xac\xbe\x25\xde\x02\x3f\x54\x74\xc6\xfe\x20\xb2\x29\x1d\x96\x06\x54\x79\xf3\x1f\xd3\x03\x12\x76\xdc\x66\x50\xa0\x6b\x15\x4e\xf4\xbb\xd0\xb9\xb4\x3f\x74\x2b\xc8\x83\xd7\x4e\x63\x41\x15\xb1\x0f\xa8\x8f\xe1\x15\x3e\x45\xd4\x6d\x30\xcd\xbe\x9e\x08\x40\xe6\xe9\x0d\xe1\x59\x48\x86\xe2\x4a\xec\x13\xf2\x7d\xb2\x9d\x59\x8e\x69\x8e\x74\x33\xfe\x43\xdb\xdb\x1b\x19\xab\xd0\x4b\xe5\x67\xe9\x91\xe8\xda\xb4\x4d\xb4\x69\x64\x92\xfb\x85\x66\x8e\x3c\x8b\xd5\xa3\x4a\xd1\x85\x3e\x2a\xc4\x7f\xa8\xa6\xbd\x01\xb1\x1f\x3d\xac\x17\x8a\x53\x51\xc6\xd2\x69\xec\x11\x1a\xf5\xe0\x28\xe3\x0e\xd3\xe8\x46\x33\x43\x9d\xe1\xdd\xba\x92\x7e\x98\x4e\x2b\x55\xa5\x55\xd0\x9a\x53\xf4\x68\x5b\x68\x4b\x39\xae\x54\x3a\x95\x1b\x7d\x9b\x78\x43\x55\xf3\x7a\x44\xf8\x12\xc2\xa3\xbb\xf0\x11\x62\xc1\xce\x9b\xb8\x16\x4e\x5d\x5a\x8e\x09\xb0\xb4\xbb\xef\x19\x6e\x82\xa8\xfe\xb7\x74\x9c\x6f\xdd\x74\x81\xd6\xcc\xfd\x51\x54\x40\xdb\xc8\x29\x4f\x52\xa6\xb2\xd9\xb1\x2c\x84\xf8\xca\x0a\x8c\x3a\x44\x04\x30\xcf\x5c\x2c\xc3\xc7\x18\x66\x47\x4e\xe1\xd6\xb4\x7f\x3b\x3d\xb0\x54\x6a\xcd\xd2\x46\x6c\x15\x3e\x7b\xe7\x1e\x7d\x40\xd6\x74\xfd\x0b\x7d\x61\xdc\xfb\xfa\xbb\x34\x1b\xa9\x62\x81\x37\x55\x2e\xde\x95\xa8\x40\xfc\x15\x06\x30\x1a\x88\x4b\xfc\xca\x6b\x3d\xf8\x2c\xf7\xf3\x05\x1a\x7e\x8c\xb3\xe1\x30\x0f\xab\x60\x69\xef\x78\x8f\xad\xa6\xff\x58\x3a\x82\x4a\xa9\x46\xb7\x0c\x68\xff\x72\x0c\xbb\x4a\x69\xe6\x99\x78\x0d\x97\x4a\x4a\x1b\xce\xf5\x21\x86\x53\xe6\xc4\x9f\x22\x0c\xe5\x06\xb4\xb3\x78\x96\xcc\xef\x4a\x3b\xbe\x59\x0a\x7b\x7e\xc5\x98\xa2\xf0\x43\x57\xd0\xcf\xfc\xcd\x3b\x22\x51\x2f\x36\xaa\xb8\x1c\x79\x46\xdf\x34\x34\x42\xcb\xac\x5e\xd3\x1e\x4e\xbd\x59\xee\x56\x59\x45\x7c\x2b\xae\xc9\x6a\x20\xec\xf2\xef\x49\xa6\xf0\x8c\xec\xe7\xc4\x66\x7c\x75\xfa\x8b\xcb\x23\x58\x7c\x72\xa5\x87\x17\xb6\x20\xc1\xe2\xe0\x31\xf4\xaa\x24\x48\x77\x14\x79\xc6\xdf\xa9\xb8\x01\xb9\xca\xf8\x3b\x18\x46\xf3\xee\xfc\xda\x6a\x49\xa5\xb6\x52\xca\x03\x89\x92\x86\xa9\x0c\x09\xfe\xa5\xfa\xaf\x68\x06\x3f\x5e\xf6\x1a\x73\xc0\x9a\x0a\xeb\xc3\xf5\xb0\xdd\x39\x06\xe7\x14\xd0\xf4\xb4\xed\x76\xc7\x50\xd5\x84\x22\xdd\x23\x08\x5b\x54\xab\xa8\x8d\x68\xb0\x52\x07\x62\x69\xa7\x07\x96\xb6\xb8\x52\xc3\x7b\xf4\xcb\x60\x42\xd0\xae\x99\x5e\x8d\xdf\x6a\xec\x11\xad\xc1\xb5\x6a\x76\xa0\x5c\x8c\x57\xe6\x7d\x89\x8a\xcd\x2f\x30\x39\x4b\x42\x43\x32\x03\x6d\x5f\x20\x77\x93\x94\x74\xd7\x23\xae\x12\x4b\xc5\x83\xf0\x1b\xf6\x8e\xfe\x76\x9a\xc3\xcd\xfd\xcd\xa9\xd4\xd3\x83\xaa\xa5\x83\x44\x50\x4f\x41\xfa\x32\x3c\xbb\xed\xa9\x10\xc2\xde\x37\x0c\xa3\x00\x73\xaa\xa2\x5c\x5a\x8a\xb6\x15\x57\x9c\x5d\x8f\x6e\xce\xd1\xb6\xad\x43\x18\x29\x73\x74\xd5\x91\xf9\x52\x77\x45\x1e\x9c\xcc\xf6\x18\x4d\x10\xce\x8b\x35\xec\x11\xf1\x8b\x63\xfd\xea\x00\xcf\x3f\x56\x96\x17\xcc\x3d\x1e\x3b\x11\xff\x99\xb3\x8b\xb4\x9f\x96\xc5\x56\x24\x4d\x5d\x29\x67\xde\x27\xe7\x79\x46\x30\xd2\x28\x94\x83\x12\xba\x13\x14\xac\xf3\x80\xfa\x19\x16\x2e\xae\x21\x0a\x90\xe0\xdb\x13\x82\x68\x4a\x60\x77\x2f\xdf\x82\x72\xa1\xd6\x84\xb7\x98\xe2\x96\x5b\xca\xf9\x42\xf1\x8c\x3f\xca\x9e\xa5\xd0\x68\x0a\xac\x5e\xca\xec\x15\x0d\x66\x26\x74\xc1\xe3\x05\x23\x0a\x7a\x76\x70\x31\x7d\x2f\x8c\xe8\x44\x52\x5f\x20\x47\x17\x5f\x26\x0a\x91\xd6\x5b\x3f\xf8\x1f\x91\x96\xae\xd7\xbc\x21\x24\xb6\xe6\x3c\xb7\x18\xd9\x93\xf3\x91\x93\x82\xcc\x8b\x4b\x63\x4b\xe0\x57\xd4\x40\x16\x05\x51\x88\x10\x33\x2f\x20\xfb\x3c\x42\x19\xfb\x90\x48\x3b\x19\x5d\x11\xa9\xd7\xd9\x41\xed\x42\xb7\x2e\x76\x26\x04\xe8\xae\xe1\x72\xfe\x61\x7a\x60\x87\x1a\x6f\x3b\xad\xa1\xf2\x33\x77\x19\x6d\x61\xd6\x08\x07\x50\x7d\x25\x5d\xac\x1f\xc4\x3d\x7c\x84\xf9\x8c\x20\x5d\xde\xc7\x18\x21\x74\xcf\x1d\xa2\xb7\xe1\xdd\xb6\x95\xb4\x54\xdc\x6b\x7b\x31\xd5\x0b\x5f\xbb\xd8\x9a\xd8\x8b\xb9\x0e\xd6\xf1\x9a\x78\xd4\xd6\x58\x6e\x02\x37\xa2\x9c\xcb\x41\x39\x8e\x19\xc5\xec\x4b\x6c\x7d\xd1\x34\xcb\x97\xb5\x19\xd3\x63\xba\x33\x77\x5f\x7a\xc8\x70\x60\x38\x9f\xdd\x49\xdf\x45\x77\x3e\xf0\x99\xb6\x82\x66\xbf\xdd\x99\x78\x48\xdd\xbd\xd8\x1b\xaf\xc7\x25\xfd\x4b\x78\x47\xe3\xe8\x4d\x9f\xb8\x9b\x24\xf7\x4b\x8f\x72\x80\x58\x37\x2d\x83\xf5\x5c\x08\x09\x55\x98\x13\xfc\x07\x88\x8c\x71\x9b\xe7\x1e\x46\xa3\x0f\x70\x86\xce\xac\xa4\x15\xb1\xd7\x1f\xb0\xa2\xd2\x99\x67\xb7\xfd\x26\x9c\xe9\x61\x8b\xf9\xb8\x09\xf1\xa0\x87\xc1\x4d\xca\x74\xae\xaf\xe5\x44\xa6\xcd\x14\x59\xb0\x5d\x53\x42\x92\xef\xb3\x8c\xe5\x77\x79\x12\xa6\x7a\x82\x15\xe4\xc3\x58\x15\x57\x1d\x92\x49\x57\x91\x2c\x3b\x9d\x43\xfd\x2c\xd4\xb7\x31\x24\x6e\xf1\x34\xb6\x51\xf0\x4c\xd6\xed\xc5\x9d\x18\x9d\x56\xdf\xc9\xe4\x9e\x2b\x67\xd7\x8c\x73\xd4\x4b\x74\xf2\xd9\xac\x67\x05\x8d\xf2\xd3\xcc\xc6\x5c\x1d\x8e\x2d\x23\x29\x13\x25\x1f\xa3\x4b\x52\x07\x83\x86\x68\x02\xf9\x8c\x9b\x31\x35\x32\xbe\xc2\x5a\x9d\x70\x11\x1b\x6e\x7d\x8d\x6b\xf1\xdc\x16\xdf\xc6\x96\x32\xe0\x76\x35\xae\x5d\x6b\x75\x95\x80\xfd\xb9\x51\x94\x7b\x8c\x55\x55\x6b\x99\x60\xc2\x44\x2b\x4a\x58\x07\x18\x67\x8a\xdf\xc5\x86\xd3\x0f\xe6\x2f\x0f\xdc\x4a\xdb\x9b\x39\xeb\x3a\x42\x5d\x97\xb2\xcf\x4a\x09\xff\x26\xd3\xdd\xea\x81\xf5\x09\xcb\x16\x3f\x44\x2b\x59\x8b\xda\xf4\xb8\x86\x3d\x94\xca\x34\xf6\x6c\xfb\xdb\x1c\x4f\x56\x5a\xb3\x81\xcc\x89\xe9\x5f\xa7\xcb\x0c\x65\xec\xad\x78\x19\x53\x40\xdf\x58\x4c\x09\x88\xa4\x2d\xcd\x2d\x75\xb5\x24\x5e\xa6\x9f\xd8\x9f\x8d\x77\x25\x5e\xda\xaa\x8f\x49\xc4\x5b\x16\xff\x41\xc9\x2c\x49\x6b\x14\x57\x6d\x30\xac\x62\x86\x3d\x74\x9d\x9d\x9d\xc9\xa2\x75\x5c\x8a\x4f\x66\xda\x36\xcf\x63\x74\x33\x96\xd5\x3a\xc6\xa8\xd0\x9e\x97\x7b\xfa\x7f\xa0\xde\x28\xf8\xed\x32\x46\x64\x67\xbe\xde\x1f\x8c\xc7\x26\x39\x6c\xdd\x86\x1d\x94\x98\x2c\x39\x88\xea\xb2\xfa\x7b\xce\xc6\xbf\x8f\xb1\xa8\x37\x8c\xb3\x89\x61\x17\xd6\x4a\xb8\x31\xf7\x92\x15\x45\x9f\x63\x77\x73\x99\x42\x8f\xd8\x0a\xca\x2e\x7e\x05\xc9\x3f\xd8\x85\xfb\x83\x6c\xee\xb6\x9d\x63\x46\x51\xb3\xf2\x60\xb9\x43\xcb\xb5\x75\x19\x1e\xb0\xe7\xc2\x3b\xb4\x70\xc4\xa6\x9b\x88\x67\x91\x9d\xeb\xce\x49\x5f\x93\xdd\x0b\xde\x49\xf6\x91\xaf\x26\x79\x88\x8a\xc8\x72\xce\x43\xe1\x6a\xf2\x23\x72\x26\x3f\x96\xe2\x18\x34\xc8\x1d\xa4\x8c\x9f\x2a\xe2\xac\x80\xc2\xf7\x7f\x60\x1d\x80\xd7\x6a\x3d\x62\x38\x22\x0b\x16\xd6\xd1\x2e\x21\xbc\xae\xcc\xf8\xed\x30\xa9\x96\x26\x8d\x83\xed\x0b\x36\x8b\xdf\xc0\xc6\xf2\x3c\x91\x17\xac\xce\x39\x20\xb8\x03\x6f\x26\x2b\xf1\x2d\x60\xe7\xa0\xc3\x5c\x09\x9c\x7a\xca\x84\x3d\x0d\xbf\xde\xcf\x67\xad\x45\xec\xb4\x92\x18\x3b\x91\x3b\x0b\xe5\x34\x57\xe4\x63\xc7\xf2\xb8\x62\xea\x78\xf5\x2e\xe9\x1a\xea\xe1\x3c\x0d\xf1\x15\xa2\x3a\xe1\xbe\x70\x9a\x30\x65\x15\x0a\x4e\xe1\x43\xb1\x39\xbc\x66\x9c\x1b\xa8\xca\x5d\x83\x7b\xba\xea\xb1\xc3\x71\xb5\x7d\x37\x99\xc5\xd8\x3d\x2d\x53\x7a\x3f\x56\xb7\x50\x4c\xfd\x85\x29\xb4\x5e\x8b\xdb\xc2\xa9\xaa\x5c\x2e\x89\x61\x5f\xcf\x59\x26\x9a\x62\xf5\xcb\x80\xd0\x89\x39\xc2\x5c\xca\x6f\x67\xcc\xc6\xec\xe3\x19\x30\x34\xfd\xa7\x39\x12\x7a\x80\xcb\x76\xd6\x0c\x8d\xb1\x6f\x2b\x53\x8b\x5a\xa8\xf9\x9d\x7e\x80\xe8\x5f\x38\x46\xbd\x8a\x1f\x6e\x56\x92\x4a\x25\xee\x65\x55\xe2\x9f\xa2\xe7\x59\xab\x44\xee\x42\xff\x38\x73\x41\x17\x7f\x9a\x1e\xcd\x37\xe6\x05\x46\x3d\xe0\xe6\x70\x57\xfa\xd5\x73\x54\xd8\x4d\xce\x2b\x58\xee\x2c\x3d\x4b\x0e\x23\x81\x91\xae\xd9\x4b\xab\xa6\xbd\x53\xd8\x46\x3c\x23\x58\xf5\xf7\xa5\xab\xd2\xe0\xe2\xf7\x62\xbf\x14\xd7\xf4\xe3\xc2\xae\x24\x35\x71\x95\x60\x73\x42\x2b\x75\x37\x8f\x88\xbf\x70\xed\x01\xe7\x93\x54\xd9\x77\x0e\xdb\x53\x94\x7b\xe2\x39\x33\x9f\xff\xdb\x42\x42\x9f\xe5\xea\x6b\xba\xd3\xe6\xb0\xf4\x15\xbc\x09\x23\x9a\x6b\xed\x5a\x49\x57\x89\x4a\xe1\x36\xf1\xba\x82\xa9\x94\x21\xa1\x7f\x6e\x97\xf0\x22\xbf\x36\x2b\x16\x5f\xcd\x53\x4a\x5f\x77\xe5\x15\x87\x94\x5c\xe6\xed\xc4\x9a\x4e\x5c\xe3\x24\x63\xea\xc7\xe9\x9a\x73\xe8\x81\xc2\x6f\x1a\xc3\x54\x9c\x4b\x51\x88\xc0\xab\xe8\xbf\xab\x7e\x4b\x86\x1a\xa1\xfc\x6d\xe2\x79\xb5\xb2\xa4\x74\xe1\xc1\x4a\x1e\xff\x10\x9f\x53\x7a\x02\x5d\xcd\x9d\x28\x78\x1e\xa1\xca\x31\xcd\xb9\x78\x31\x9f\x25\x4a\x17\x3a\x9a\x32\x26\x92\xec\xf7\x62\x74\xd5\xb8\x2c\x8d\x7d\xd4\x6d\x82\x64\x05\x0a\xee\xcc\x0c\xa9\xfc\x25\x19\x6e\xbf\x99\x67\x21\xfa\xd7\x2c\x95\xd7\x08\xcd\xeb\xb7\xf1\x2e\xf2\x49\x55\xb1\xc8\x6e\x6e\x67\xa9\xf0\xf2\x41\xce\xca\x02\xfc\xc2\x3b\x56\x40\xf6\xda\xe3\x69\x8c\xc2\x54\x9d\xbd\xab\x69\x8f\x65\xd7\x35\x96\x12\x1f\x85\xdf\x14\x24\xf8\x3a\xe6\x7f\x95\xdb\x24\x43\xd7\xdd\x72\x23\x44\x5f\x3b\xee\x24\x7e\x15\x6e\x6b\x59\xc3\xcd\xe3\x7b\xd6\x2f\x82\x59\x5c\x79\x65\x65\x78\x36\x7b\xba\x44\xeb\x42\x00\x6b\x47\x9e\xc1\x71\x03\x46\x50\x7a\xf2\x9e\x61\x5a\x62\x22\x53\x03\x10\xd9\xa2\xdf\x0a\xb7\xb1\x5e\xd6\xb6\xb2\xae\xcc\x82\x68\x69\xf6\xda\x74\xbd\xe8\x2f\xb2\xb4\x94\xc1\x98\xa3\x6c\x97\xa4\xc0\x98\x06\x8a\x6e\xc2\xaf\xd8\xe3\x61\x76\xf1\x14\xd2\x22\x8f\x59\xc9\x63\xd2\x4b\x7b\x8a\x68\x05\xf9\xa5\x69\x1d\x5f\x1d\x02\x1b\x17\x73\x00\x7c\x66\x6e\x03\xe3\x3b\xa2\x57\xb6\x25\xd3\x9e\x14\x9c\x45\x4a\xbb\x47\x12\xc8\x14\x52\x30\x52\x21\xeb\x46\x92\x36\xe9\x39\xb9\x32\xa1\x8d\x7c\x24\xf4\x6e\xfc\x11\x72\xaf\x07\x55\x52\x45\x09\xb4\xdf\x2c\xfc\x04\x6d\x32\x0d\xe1\x2f\x84\x5e\x6d\x18\x65\x7f\x80\xdf\xcc\xcd\x62\x7c\x44\xfc\x4a\xe1\x8c\x57\xd0\x85\xcc\xd1\x34\x3a\xe4\x10\x1f\x94\xb2\x0b\x32\x64\x1d\x90\x3f\x86\xcc\xc9\x7b\x12\x60\xc8\x2b\xd4\x27\x7e\x29\x54\xe0\xb1\x41\x42\x86\x95\xff\x1f\x0a\xea\x82\xaf\x89\x87\x01\x00\xf0\x89\x2d\x61\xa2\x22\xa0\x80\x85\x94\x85\x82\x05\xa2\x28\x4a\x18\x28\x0a\x22\x92\x02\x8a\xa2\xd4\xe2\xfa\x76\xeb\x6e\x16\x8c\xd1\x39\xba\x1b\x04\x0c\xec\x6e\xfd\xdb\xdd\xdd\xef\xef\xfd\x10\xcf\xb3\xf9\xb8\x74\x00\x45\x97\xcd\x11\xdd\x47\xff\xda\x9b\xf8\x17\x31\x93\x99\x91\x73\x03\x1b\x34\xb5\xe5\x6f\x27\xa3\xf2\xfd\x72\xff\x30\x9e\xaa\x46\xe5\xb4\x33\xf6\x73\xbe\xe9\x62\x19\xa3\x41\x0b\x0d\x40\xf4\xa7\xec\x51\x89\x88\xfc\xc8\x95\xf2\x7f\x84\x6a\xf3\x28\xe9\x36\x82\xe6\xa9\x13\xa5\x11\xf1\xf6\x14\xfe\x41\x22\xd5\xec\x14\x87\x8a\x9f\xae\xd0\xe6\x0f\xe7\x95\x18\x23\x73\xd5\xdc\xfb\x8a\xed\x39\xbe\xdc\x11\xec\x4c\xed\x03\x8e\x37\xad\x33\x1b\x66\xa3\x07\x3d\x55\x96\xac\x67\x7b\xd6\xc9\x99\xac\x3d\x9b\xfc\x24\x43\xcc\x5a\x4f\x07\xe1\x4b\xe6\x70\xfb\x6d\xbc\xc7\xe4\xbe\xe1\xd6\xec\x77\xc4\xf7\xb2\x8a\x3c\xad\xb4\xc6\xa0\xc8\x75\x96\xa4\xc8\xea\xf4\xa7\xc5\xd3\x98\x7f\xb5\x89\xc2\x0b\xd4\x74\xf5\x6f\x81\xf2\xc0\x24\xa5\x88\x4f\x8f\x08\x91\x8f\xe2\x45\x05\xd0\x25\x7e\x5c\xeb\xa5\x65\xc2\x3d\xec\x7e\xfb\x95\xbc\xad\xac\x7d\xc3\x33\xd9\xbb\x48\xe7\x92\xf1\x79\x6e\xfa\x32\xfd\x6c\x43\x95\xf6\xaa\xe4\x90\xde\x3f\xfb\x01\xe3\x85\xe6\xbc\xea\x5c\x96\x4c\xbd\x5b\xd1\x91\x94\xa4\x78\x20\xeb\xd8\xfd\x58\xb6\x4b\x52\xb1\xf1\x80\x58\x22\x8a\x5c\xf2\x42\x50\xcc\x7f\x6d\xf7\x89\xab\xe6\xee\x18\x3e\xc8\xd2\x32\x2f\x17\x4a\x8d\xcf\xca\xa6\x68\x6e\x19\x62\x8b\xb7\x8b\xc2\x74\xef\x0a\x60\xfc\x83\xe6\x90\x91\x97\xd1\xa7\x7a\x96\xc3\xdc\xdf\xab\x48\xd1\x32\x77\x65\x4a\xef\xa8\xf7\x6d\x08\x10\x4f\x92\x3f\x5f\x32\x51\x30\x57\xe2\x6d\x27\xe1\x4e\x12\x04\x0c\xff\xc8\x1a\xc7\xde\x92\x2f\x33\xbe\x6f\x5c\xae\x7e\x68\xd8\x5e\x7b\x42\x10\xab\x3b\x51\xe5\x81\x4d\xd2\x78\x97\x47\xa5\xfd\x52\x15\x17\x27\x27\xcc\x54\xd8\xe6\xc7\x84\x01\x52\xc2\x30\xc3\xdf\x5a\xd4\xa0\x39\xb4\x78\x31\xbf\x5f\x71\xd8\xce\x9e\x53\x2d\x1e\x3f\x62\x02\x33\x8f\xa3\xc8\xbb\x68\xbc\xdd\x3e\x46\x3d\xd5\xe0\xdf\xec\xc3\x67\xeb\xda\xea\x7d\xd1\xb5\x1a\xc7\xea\x71\x69\xcb\x54\xec\xf2\xa2\xf8\x64\xf9\x97\x62\xbb\x9d\xb1\xd2\xd0\xbc\xcd\xeb\xe5\x22\x42\x3f\x6c\xd1\x15\xbe\x44\x15\x61\xfb\x8d\x43\x91\x04\x8c\x58\xc8\x4c\xe0\x5a\xe6\x2d\x37\xf6\xf6\xd8\xaa\x0e\x1a\x3c\x3a\x46\xf0\x2e\xe8\x0a\x9a\x1b\x11\x99\x66\x58\xfd\xfc\xa3\x52\x55\x64\x55\x54\xdc\x25\x79\x4f\x59\xec\x8e\x07\xd2\xc9\x85\x16\xeb\x17\x8b\x56\x1b\xbc\x16\x69\xf8\x1b\xd4\xef\x6d\x3f\x70\x9c\xa5\x4b\x46\xa4\x33\x27\x72\x83\x75\xe3\x6b\x52\xa9\x57\x25\x61\xa6\x0d\xb4\x05\xe4\xaf\x72\x07\x1a\x42\x7d\x57\x7c\x93\xf6\x25\xc5\xbe\x80\x4e\x57\x46\x15\x1b\x87\x81\xa1\x5b\x9e\xe9\xc3\xa1\x15\x3e\x49\xd9\x7b\xe1\x2d\xae\x6f\x14\xf6\x08\x3a\x6d\x84\xb8\x01\xbd\x0a\x00\xfc\x28\x0c\xd5\x1a\x6b\xa6\x83\x11\xe2\xd7\x95\xdf\x40\x1a\xa9\x2d\xbb\x06\xe6\x53\xb5\xc5\x2a\xf0\xe5\xc1\x73\x05\xab\xa1\xf0\xa8\xd8\xdc\xd3\xd0\xa3\x2d\x45\xfa\x05\xb0\xd4\xc7\x3d\xdb\x1b\x89\x75\xed\x55\x8c\x40\x03\xa6\xbe\x12\xe7\x63\xc1\x00\xc0\x0f\xc5\x0a\xb4\xce\xd5\xc7\xe1\x5f\x62\xa4\xb2\x04\x7e\x41\x2e\x2e\xe3\xc2\x2f\xa9\xbe\xc5\xc1\xc8\x98\x83\xcc\xfc\x1f\xc8\x86\xa8\x69\xb9\x42\xc4\xb0\x25\x45\xf7\x16\xb5\x5e\xf3\x35\x7b\x14\x6a\x74\x55\xcb\x6f\x61\xab\xa6\x5e\x13\x13\xd8\x67\x00\xe0\x2f\xc1\x3e\x67\xff\xa8\xf6\x67\x48\x45\xa9\x95\x0e\x0c\x0f\xc6\x96\x32\x80\x18\xa0\x24\x17\x0d\x12\xf0\x81\x9e\xfc\x0c\x22\x74\x6f\x4a\xee\x48\x62\x73\xc8\x6d\x5d\x32\xb1\x7b\x0d\xa1\x16\x10\x51\xae\xeb\xe5\x89\xc4\x81\xa9\x9d\x62\x6b\x42\x08\x00\xbc\x41\xfc\x81\x7a\x47\xd5\x4b\x6e\xa4\x70\x4c\x45\x13\xa7\x94\x18\x59\x2a\x66\x3f\xc9\x0a\x28\x0a\x62\xaf\x4a\x3e\x99\xf7\x99\x55\x16\xa9\x30\xb0\x58\x4b\x43\xe6\x69\x5f\x32\xcf\xae\x01\x54\xff\x98\xdb\x5d\x7e\xc9\x2e\x93\x17\xa6\x1e\x13\x31\xc8\xed\x00\xc0\x5b\x4c\x7c\x57\x5e\xa8\x42\xc5\x1a\x7e\x4e\x45\xa0\x48\x89\x9d\x28\x9d\x29\x4c\xc8\x74\x2d\xbc\x2c\x08\x49\xba\x94\x97\xc9\x0f\xd8\xd3\x6e\x18\xce\x8b\x0c\x4e\xd7\x26\x73\x29\xab\x31\xd5\x51\xce\x01\x97\x56\xd9\x4a\x76\xc8\xd4\x5b\xc2\xfb\xac\x19\x80\x27\x57\x40\x8e\x53\x8c\x30\xfd\xd2\x34\x71\xdf\x96\xf7\xa9\x7f\xa0\x33\x4a\x24\xaa\xa5\xe9\xb9\x85\x4b\x15\x7b\x13\x0f\x1a\x8f\xcb\x84\x11\x48\x4e\x88\xe4\x4a\x50\x8a\xc6\x24\x9e\xb4\xaa\x45\x59\x2d\x9c\xee\xe2\x27\xa5\xf3\x81\xa9\x27\x84\xb6\x9c\x76\xa0\x8b\xd3\xc2\x14\xc9\x3c\x4c\x5d\x85\x75\x9c\xf9\xe5\x49\xf9\x33\x60\xb2\xc4\x3d\xb7\x22\xcd\xb6\x60\x40\xff\x6f\xff\x70\xe3\x26\x6d\x70\xf8\x0a\xfd\x90\xba\x26\x70\xa7\x66\xae\xe2\xcb\xca\x9b\xca\xb9\xd2\x8f\x0b\xaa\x24\x2f\x45\x5d\x53\xf3\x05\x2c\xbe\xff\x30\x1b\xce\x74\xd6\x6d\x09\x61\x92\x57\xf3\x59\x92\xf2\xd5\x95\xfb\xc1\xff\x8a\x5f\x95\x2d\x38\x22\x2e\xc8\x28\x6a\x8d\x97\xe6\xbe\xcc\xf7\xd8\xf5\x54\x1f\x63\x30\x6c\x76\xcb\xae\xd7\xde\x5a\xf1\x56\x51\xad\x3a\xb6\xc0\x52\x92\x29\x4b\x98\xba\x4f\x30\x49\x58\x34\x2c\x82\x9d\xc7\xfe\x26\x3e\x6f\x22\x1a\x9a\x99\x77\xca\x9d\x6b\xd7\x82\xb3\x8b\xcf\x9b\xf2\x53\x6f\x17\x6c\x2b\xbb\x16\xf7\x22\xb7\xa3\xe8\xc5\xae\x6d\x7a\xb7\xbc\x87\x9b\xca\xb2\x29\x39\xc6\x15\x5c\x45\x86\x06\x70\x3e\x27\x59\xa6\x98\x38\x35\x84\x7f\x59\x64\x1a\x46\xb0\xa3\x39\xfb\xc4\xcb\x4d\x29\xad\x8b\x99\x6b\xcb\x2d\x1a\x33\xe9\x64\x71\x45\x2d\x27\x35\xa0\xc0\xd1\x94\x16\x17\x9f\xcb\x2c\x73\x0d\xbb\xae\x7b\x55\xd8\xb9\x29\x20\x7b\xa1\x71\xe4\x8a\x35\x8a\x79\xda\x17\xce\x45\xe2\xa7\xca\xd4\xa9\xbb\xf8\x84\x38\x6b\x58\x1f\x7b\x1c\x47\xc4\x52\x74\x4a\xe8\x00\xf4\xbe\x15\xa5\xfb\xa4\x69\x1a\x33\xe8\xd4\x44\x5d\xed\x36\xfa\x83\xc8\xe1\x26\x33\x90\xbe\x65\xa8\x54\x08\xad\xf2\x13\x16\x9c\x83\x9d\x97\x0c\x1a\x2a\x90\xf5\x4e\x22\x8d\x17\x0a\x4e\x10\xc9\x93\xb0\x7c\x00\x10\xca\x71\x73\x56\x42\xa7\x1b\x14\x0c\x75\xb4\xce\x81\xa2\xd2\xf6\x35\xce\x85\x0e\x27\x26\xd5\x8e\x81\x4a\xf7\xdc\xa8\xec\x81\x2d\xb7\x14\x96\x6e\x85\x0d\x7e\x07\x0a\xb2\x91\x1d\x4b\x2a\x0d\x28\xea\xe1\x94\xa9\x99\x8a\xd9\x4f\x10\xca\xb7\x60\xbf\x01\x40\x88\xe2\xf6\x2c\x8f\x8e\x01\xa4\x05\xc2\x5a\x4e\x21\xb9\x69\x33\x1b\x2e\x23\xac\x44\x8f\x9a\x76\x44\xbe\xa7\xbc\x92\x82\x0c\x6d\xa1\x96\x8e\x41\x17\xf8\xf9\x17\xec\x40\x4d\x4b\xc4\x86\x0d\xd8\x06\xa7\x98\xec\xc7\xd8\xfb\x09\x7c\xf9\x6c\x9c\x0b\x00\xc2\xdd\x78\x0c\x73\x56\xc7\x72\x46\x0b\x58\xd6\xe2\xcd\x08\x3e\x4a\x6d\xf0\x25\xee\xee\xd7\xd7\xcc\x21\xb4\x7b\xe6\x57\x3c\x20\xe8\x5b\x46\x97\x1c\x21\xe0\xb5\xaf\xf2\xdb\x09\xfd\x92\xdd\x39\x5d\x44\x87\x93\x4f\xf6\x3e\xe2\xe1\x04\x83\xac\x90\x78\x0b\x00\x82\x9b\x84\x17\xe9\xd8\xde\xc1\xb5\xa1\x9f\x68\x6e\xe6\x44\x1c\x29\xad\x6f\x66\x2b\x13\x5e\x57\x6b\x58\xdf\x22\xb4\x15\x3b\x58\x94\x10\x71\xf1\x3d\xd6\xc4\xb5\xbc\x7c\x67\x66\xcf\x92\x29\x39\xf6\xcc\xfd\x4e\xb3\xd5\x1d\xcc\xb1\x13\xba\x65\x00\x49\x02\x80\x60\x11\xc3\x9b\x11\xdd\xbe\x46\x74\x8f\xf6\xb5\x79\xa9\xb0\x33\xf5\x76\xbd\xbb\x20\x3b\xc1\xb7\xda\x9c\xaf\x8a\xb0\x28\xef\xe7\x55\x86\x4c\x2e\x0e\xe4\x5e\x5e\xbb\x20\x4f\xca\x1d\xb3\xf8\xb2\x9e\xca\x99\xef\x64\xa5\xb6\x60\xfb\x4c\x78\x26\xdd\xce\xb2\x01\x00\x3e\x95\xf4\x20\x9c\xda\x0a\xd4\x3d\xd4\x33\x4d\x7c\xd5\x8c\xc3\x6d\x75\x54\xc5\x91\xf8\x05\x55\xfe\xb2\xde\x70\xcb\xb2\xb7\x52\xa7\xe0\x15\x45\xa9\x62\x99\x2f\x66\xac\x11\x01\x8b\xe3\x75\x4a\xc1\x26\xc7\xd7\xaa\x05\x3c\x68\xa2\x83\xe4\x30\x27\x19\x00\x78\x1c\xa6\x0c\xfb\xdb\x66\x97\xb7\x9f\x92\xdf\x34\x3c\x77\xea\x21\x4d\xed\x4b\x7d\x6f\xdc\x44\x53\xa5\x76\xc7\x6e\xb3\xb2\x4d\xea\x97\x41\xdb\x0a\xfb\x95\x02\x9f\x5e\xe3\x30\xb9\xed\xa2\xdb\xda\x27\x92\x0c\xc7\x32\x25\x24\x2c\x99\xb8\x54\xdc\xcd\xe3\x01\x00\xf7\x22\xab\x11\x3d\xde\xda\x54\x7e\x3e\x0b\x6e\xcc\x2f\x79\x9f\x02\xd5\x32\x0a\xbf\xc6\xfc\x36\x2d\xcf\xbb\x1c\xf6\xa7\x74\xc0\x50\x14\x78\xb0\xd0\x4b\x97\xee\x33\x32\x37\x2d\x7b\xe6\xa2\x1d\xda\x1d\x0a\xd2\x31\x59\xf1\x42\xd2\x38\xd1\x4b\xbc\x4c\x40\x05\x00\x6e\x20\x5b\x85\x2e\x69\x25\xaa\xd7\x67\x7e\x68\x3c\x52\x69\x73\xf0\x5b\x6d\x68\xe9\x50\x0c\x5e\xf9\xaf\x68\x47\x18\xb7\x94\x95\x77\x2a\x70\x64\xc1\x57\x83\xe7\x9a\xc6\x5c\x57\x6d\xfa\x22\x5b\xad\xb9\x2a\xc6\x71\xbb\x22\x4f\x36\x65\xa2\x9f\xe8\x9d\x30\x10\x00\xb8\x23\xd9\xff\x21\xa6\xd6\x8d\xf5\xe3\x33\x69\x8d\xde\xd5\x45\x07\xb9\xb5\x36\x95\x93\x63\xa6\x57\x76\x96\x86\x87\xcd\x2f\xf5\x2e\x44\x37\x37\x17\x14\x1a\x65\x6b\x20\xc3\x15\xfd\x91\x85\xbf\x34\xf5\xea\x8f\x8e\x61\x8a\x8d\xf2\xc5\x13\xe3\x45\x6a\xe1\x53\x00\xe0\x98\xd8\x5f\xe0\x37\xc7\xd6\xd1\xdf\x66\x84\x75\xfd\x03\x6d\x0e\x6c\x6b\x33\x81\x2b\xf7\x35\x35\xb9\x83\xf2\x1d\xa5\xb5\x54\xc8\x36\xe0\x6d\xa5\x04\xba\xbc\x2a\xa1\x64\x27\xdc\xe1\x7e\x20\xcf\x88\x9c\x9d\xb9\x4e\x57\x88\xfe\xb5\xec\x54\xce\xc3\x87\x01\x80\x48\x84\xef\x80\x3b\xfb\x9e\xc1\xb3\x33\x3c\xbb\x4a\x60\xc7\x03\x0b\xda\x22\x60\xbb\x7d\xb2\xc6\x07\xf0\xfa\x1d\x9c\xda\x45\xb0\x2e\xe0\x72\x65\x30\xe2\xb8\x2a\xb0\x64\x2a\x72\xd9\x3d\x2a\x2f\x15\x2d\x9b\xb9\x42\x07\x63\x2a\xcb\xe3\xca\xd1\xf8\x36\x00\x10\x51\xf0\xbd\x30\xd4\x27\x44\xe9\x19\xe6\x5d\xc1\x68\x48\xf2\xdf\x36\x33\xd4\x71\x5f\x62\xa3\x08\x9d\xbe\x23\xbe\xe6\x3f\x74\x5d\x40\x53\xc5\x3f\x54\xb7\xca\xa3\xf8\x34\x36\xdd\x7d\x5b\xde\x62\xac\x66\xe6\x22\xdd\x7a\x7c\x8f\xe5\x59\xc5\x55\xfc\x22\x00\x88\x02\x71\x1d\x64\xec\xfd\x43\x2e\x49\x0f\xef\x6c\x62\xb4\x24\xa7\xb6\xee\x67\xac\x8e\xfa\xd4\xf0\x9a\x78\xb3\x63\x58\x8d\x2f\x71\x3c\x20\xae\x22\x92\x18\x5c\xf9\xba\x78\x0e\xf1\xd0\x7d\xb9\xd1\xc0\x18\x3e\x73\x9e\xb6\x86\xb1\xd0\xf2\xad\x62\x33\x63\x36\x00\x08\xbb\x89\x83\xe0\xcf\xde\x0c\xee\xce\xb4\x8e\xce\x39\x1c\x71\xd2\xf5\x96\xd3\xec\x13\x51\x60\x43\x28\xdb\x31\xb4\xb8\xba\x98\x95\x1b\x30\xb5\xbc\x8b\xb5\x6c\x65\x63\x11\x8b\xf9\xc8\x7d\x42\xee\x47\xa6\x78\xe6\x34\x2d\xc0\xf4\xb2\x9a\x26\xd7\x93\x45\x00\x20\x34\x67\xc4\x82\x21\x3d\xcf\x45\x97\xd2\x6c\x3b\x64\xc2\xba\xa4\x0d\x2d\x0b\x05\xb2\xa8\xe1\xf5\x8d\x7c\x41\x68\x48\xf5\x38\x5e\xc1\xc6\xd3\xe5\x33\xb8\x43\x2b\xc1\xc2\xff\x38\xff\xdc\x9e\xe7\xae\xe3\xb8\xce\xb4\xd2\x6c\x62\x87\x58\x6d\x90\x3d\x62\x39\x01\x80\x20\x90\x0c\xa6\xc7\xf7\xb8\xaa\x7d\x8f\x2e\x6b\x3f\xad\xd4\x27\x26\x35\xef\x95\x7f\xde\xeb\x5e\x77\x59\x16\xbc\x1d\xaf\xb2\x91\xb4\x6e\x74\x2c\x9b\x23\x5e\xb8\x72\x58\xc1\x13\x61\xa5\x5b\xa9\x21\x40\x30\x76\xa6\x7d\x76\x08\x2f\xcc\x4a\x2f\x7d\xcb\xd9\x02\x00\xfc\x40\x66\x2e\xed\x60\xb7\xd8\xb8\xe3\x48\x60\xbb\xb3\x61\xcc\x7e\x4e\x53\xbd\xae\x25\x32\xb8\xce\x4e\x13\xb1\xcd\x64\xda\xad\x1e\xbb\x21\xb9\x34\x5a\xd1\xb9\x22\xad\xc0\x5e\x96\xe8\xb6\x31\x87\x14\xff\x67\xff\x49\x2d\x11\x7a\x5b\x1d\x93\x2e\xe6\xad\x02\x00\x9e\x80\x55\x4e\xe5\x77\x8f\x28\x9b\x98\x7a\xa8\xad\xa8\x78\x79\x42\x5d\x93\x47\x41\xd0\x1e\xb0\x56\x60\xf4\xd9\x7a\xa7\xb2\x2d\xc7\xc3\xbf\xbd\xa4\x5b\x3b\xcb\xfb\x75\x3e\xa8\xfa\xea\xfa\x59\x7f\x57\x2e\xb6\xff\xa8\x7a\x25\xfe\x61\xf5\x5e\xa2\xe3\x7f\x06\x00\xee\x6f\xf6\x21\xaa\x4d\xd7\x29\x93\xfb\xe1\x7f\x6d\xfb\xcb\xcd\x12\xb6\x35\xbe\x2b\x3e\xbd\xc7\xb6\x76\x43\x41\xea\x56\xb2\x32\xc5\x38\xca\xff\x68\xc9\x11\x7d\xae\x77\x7b\xfe\x02\xcd\x44\xd7\xcb\x7a\x9e\x72\xa5\xfd\x67\x55\x8e\x74\xd9\xf8\xb1\x92\xad\x82\x2a\x00\xe0\x36\xb1\x4b\x29\x75\x5d\xdc\x9a\xe2\xc3\xba\xb6\x59\xa6\x55\xf1\x3f\x1a\x4b\xcb\x06\x22\xce\xd5\x7c\x2d\x9e\xbf\xd5\xaf\x72\x72\x7e\x96\xff\xea\x92\x89\x86\x2e\xef\x9c\xbc\x53\xda\x1b\xae\x27\xf4\xf3\x55\x39\xf6\x7f\x55\x3e\xb2\x85\xe3\xbd\xc4\x1f\x85\x9e\x00\xc0\x0d\x67\xd7\x67\xd5\x1c\xff\x06\xcd\x3c\xe4\x7a\x4c\x0e\xcd\x8b\x8b\xe8\x9e\x02\x39\xee\xfe\xd7\x16\x0a\x45\x86\x6c\x6c\x0c\x81\x86\xfc\xfe\xd6\x8c\x83\x8f\x2e\x1f\x5e\x1e\x8f\x6c\x72\x3e\x53\xe8\x8e\x06\xcd\xa8\xce\xe9\xc0\x52\xcd\xd9\xaa\x62\x7c\x3d\x00\x88\xf7\xe0\x78\x96\xe2\xb8\x11\xf1\x3b\x34\xfb\xd8\x0a\xc4\x2e\xce\xbf\xab\x03\xfe\xbc\xfb\x65\xeb\x3f\xf8\x4f\xc8\x8a\x46\x00\x59\xe5\xf7\xa6\xba\x17\xa9\x59\xf6\xa5\xdc\x11\xdd\xee\x3c\x58\xf0\x07\x9b\x36\xa3\x28\x47\x8a\x7d\x37\x17\xaa\x88\xff\x4f\x2b\xf6\xc3\xc9\xac\xfd\xc7\x83\x31\xc6\xa1\x89\x7d\x77\xb1\xa5\x71\x2e\x5d\xd1\xe8\xab\xdd\x17\x5a\x8b\xd0\x63\x21\x4e\x0d\x65\xe8\x25\xbf\xdb\xd5\x29\xd8\xf4\x65\x8f\xca\xce\x62\x1c\xe7\xce\x82\x6e\x7c\xd2\x0c\x5d\xce\x0e\xbc\xce\x5c\xac\x0a\x26\x00\x00\x10\x8f\xc7\xdb\x33\x3b\x07\x5b\x98\x40\x0a\xd8\xe7\x4b\x26\xc6\x56\x74\x36\x31\xae\xec\x4e\x6b\xf9\xce\x38\x12\x7c\xa3\xfe\x27\x63\xb9\x5f\x6e\x55\x3b\x63\xee\xb2\xc6\xb2\xe9\x8c\xe5\xce\x35\x05\x8e\x8c\xed\x33\xe4\xfa\x46\x46\x86\xb9\x49\xd9\xc8\xf0\x07\x00\x11\x48\x60\x99\x49\x83\x76\xdc\x37\x29\x76\xbd\x39\xdc\xf1\xb1\x9b\x3b\x47\x71\x56\xee\x76\x6d\x09\x66\xe3\xc1\x55\xf5\xa1\xac\xb7\x7e\x50\x95\x39\x8b\xb2\x2c\xb7\x34\x99\x65\xe3\x5c\x98\x7f\x80\xd9\x37\x43\xab\xfb\xcc\x4c\x32\xbf\xa7\xf8\x41\xb6\x02\x80\xb0\x9d\x91\x95\x31\x34\x80\x8a\xdd\x0f\x16\xf7\x7c\x16\xfe\x89\x79\xd3\x11\x26\xb8\xb2\xeb\x59\x73\x0e\xbf\x3b\x98\x59\x57\xc4\x3b\xed\x17\x61\x8a\xe0\x3e\x5e\xc6\x2b\xa9\xe3\x4e\x74\xd6\xe7\x95\x71\x7c\x66\x94\xeb\xdc\xd9\x09\x16\xb3\x14\x4b\x59\x6e\x00\x20\x78\x4f\x26\x65\x78\xf4\x6b\xd5\x4b\x0e\x8e\xea\x19\xab\xc4\x62\xb6\xb5\xc7\xca\x2f\xec\xda\xd4\xa4\x93\xcd\x0a\x7a\x51\xab\x96\xf0\xd7\xde\xab\xdc\x28\xfa\xb3\xcc\xbb\x38\x47\x48\x73\x86\x8c\x2a\xfe\x83\x19\x43\x5a\x07\xde\x0a\x0b\x8a\x7c\x31\xc7\x13\x00\xf8\x4f\x99\x65\xe9\x7b\x8f\xdd\xcf\x3d\x76\x20\xa4\x7b\x63\x4e\x72\x74\x65\x9b\x5c\x37\x3e\x2c\xb7\xb1\x2f\xbb\x31\xc8\xa7\xa6\x49\x75\x70\xed\xf6\x8a\x78\xc5\x6c\xcf\x8b\x45\xad\xd2\x9b\xce\x01\xb9\xad\xe2\x94\x19\xe7\x34\x41\x82\xdb\x16\x2d\xb2\x04\xee\x17\x00\xe0\xcf\x60\x69\xd2\xae\x1c\x73\x2f\xb9\x97\xdc\xd7\x95\x53\xf8\x3d\xda\xae\xf5\x75\xbe\x79\x98\x45\xe3\x84\xdc\x91\x81\x55\xd5\xdf\xf5\xa3\x7c\xef\x97\x17\x6b\x2c\x3c\xd9\x85\xff\x54\xc3\x9c\x9d\x0c\x3f\x64\x3d\x33\x5e\x66\x6b\xc5\x3b\x2d\x7e\x4b\xfb\xf8\x18\x00\xf0\x98\xec\x35\x69\xac\xbe\xe7\x15\xa5\xc9\x87\xbb\x42\x4a\x8f\xee\xbb\xd1\xaa\x2f\x5a\xb9\x73\xa8\xa1\x3d\xef\x45\xe0\xa1\x6a\x8d\x41\xed\x5b\x5d\xbe\x59\x17\xe4\x79\xa0\xd0\xa8\x7e\xec\x6c\x67\xc8\x56\xac\xb6\x1d\x9d\xed\x27\x49\xb5\x74\x96\xa6\x0a\x9c\x00\x80\xb7\x92\x9d\x9a\xb6\xba\x2f\xa7\xea\x6c\xb2\x43\xe7\xf7\x8a\x5d\xfb\xf2\x5a\xd7\x95\x3c\xdd\xa9\x6a\x88\x28\xdc\x15\xb8\xaa\x7a\xa9\xb1\xc7\x57\x5a\xf6\x5f\x8e\x9b\x67\x74\xe1\x0a\x0d\xd5\x79\x81\x61\xbe\xf2\xb0\xad\xbb\xfa\xb6\x74\x83\x65\x9c\xd4\x52\xa0\x04\x00\xee\x2d\x76\xd6\xe7\x7f\xc8\x6a\xf0\xf7\xe3\x09\x48\x0c\x64\x7f\x79\x2c\x92\x09\xcd\xec\x33\x43\x0a\x21\x97\x6a\x1f\xe4\x32\x14\xa3\xdb\x82\x3a\xc2\x73\x59\x56\x68\x18\x5c\x73\xd8\x1a\x35\x20\xfe\xa1\x4d\xe8\x5b\xe4\xed\xd2\x0a\x6c\x13\x5a\x30\x7e\x32\x36\x88\xad\xf9\xf4\x19\x36\xa1\x05\x8f\x26\xc0\x57\xd1\x83\x97\xa6\xc0\xdf\xd0\x45\xbd\x8e\xc8\x52\xe4\x53\xd5\x61\xe4\x00\xf2\x5a\xab\x45\x06\xd0\x4d\xcc\x18\x74\x04\xca\x3d\x04\xa1\x51\xe8\xa5\xed\xdf\xd0\x4e\x6c\xce\x52\x47\xcc\x05\x83\xad\x3a\xb1\x76\xac\xe4\xe3\x41\x78\x26\x63\xe7\x83\x4e\x38\x9c\xb8\x70\xe1\x23\x0c\x12\x31\x3d\x73\xe0\x63\xf8\x55\x93\x18\x19\x83\xa3\x9a\x8f\xc8\x0e\x3c\x93\x2c\x47\x2a\x71\x46\xca\x5d\x74\x0a\x8e\x6f\x8f\x41\x19\x38\xbc\xc4\x84\xfe\xc5\x33\xad\xd2\xb1\x5c\xdc\xfd\xcd\x1b\xc8\x91\x87\xdc\x3d\x09\xed\xe7\xf2\xce\x92\x90\x9e\x23\xee\xdc\x00\xbd\x67\xe7\x57\xb8\xc0\xfe\xac\x73\xea\x2f\xb0\x9c\xb5\x8c\x31\x1e\x7e\xc3\x2c\x3b\x58\x8a\x1c\x66\x8e\xdd\x16\x89\x7c\x21\xc3\x17\x3f\x40\x39\x0c\xa9\x95\x0d\xe6\x4b\x24\xbf\x9c\x0d\x3a\xc9\xf6\xdf\x62\x81\x59\x92\x77\x43\x19\xe0\x49\x71\x7a\x9b\x18\x9a\x24\x1a\x56\x3a\x08\xed\x17\x14\x29\xdf\x40\x7d\xfc\x14\x3c\x0a\xf6\xe0\x2d\x39\x10\x0e\x77\x71\x9e\x6c\x8d\x40\x22\xd9\xf4\xc5\xeb\x90\x3f\xcc\x3b\x96\x1f\xd1\x41\x46\xdf\x53\x21\x3d\x49\xe7\x79\x7d\x25\xbd\x51\xb3\xe8\x84\x11\x34\x57\x8f\x6e\x31\x03\x03\x94\x23\x8b\x99\xa0\x5a\x3e\x56\xfe\x13\xfc\x27\xb5\x47\x3b\x21\x9a\x78\x6e\xf2\x54\xd8\x5a\x68\xbd\xe5\x00\xdc\xc7\xbb\xb5\xa8\x11\x39\xca\xd9\x68\xf9\x14\x0d\x60\x3a\x3c\x3c\x40\xf3\x29\x3b\x75\x19\xa2\xa9\x8b\x3b\x06\x46\xd0\x5e\x15\xd4\x35\x0c\xd0\x7d\x8d\x25\x05\xb9\x74\x63\x8e\x5c\x9a\x06\x4e\xd6\xd2\x61\x05\x68\x50\xaf\x49\xdc\x0e\xf9\xcb\x2f\x84\xcc\x80\xfe\x4a\x66\x2e\xfc\x0b\xf7\x0a\xc6\x58\x3e\x43\x2a\xd8\x1e\xf7\xae\x52\x33\x5b\x1f\x5f\xb0\xa6\x5e\x6c\xac\xe9\x03\x68\x76\xb5\xb9\xb5\xdf\x69\xa4\x29\x2d\xcf\x92\xf6\xbe\x6c\x81\xd8\x91\x7e\xb8\xb0\x0f\x94\x80\xc3\x8c\x33\x12\x0a\xc0\x3a\xdd\xbc\xa0\x8b\x50\x96\xf2\xfc\xc2\xf5\xf0\x06\xc9\x48\xcb\x1b\xc8\x3a\xae\xdf\x9d\x29\xd4\x7d\x27\xfb\xce\x2a\xa9\x92\xfe\xa6\x6e\x8c\x7a\xaa\x5b\x55\xad\xa3\x79\xb4\x45\x1a\xae\xd0\xb4\x0d\x4f\x85\xd6\xf4\xa9\xd5\xab\x69\x5d\xf4\xca\x32\xcf\x78\x47\x30\x20\x5f\x1e\x78\x03\xfc\xa3\xe3\x79\xd4\x43\x0f\xe5\x4f\x2c\xaf\xc2\xdf\xf9\x13\x6f\xcf\xa2\xce\xb9\xe0\x71\x26\x9f\x1a\x3f\xd4\xd3\x25\xa6\xe6\x0d\xba\x55\x55\xd0\xc6\xf4\xd0\x73\x3e\xd2\xd2\xda\x68\x02\x7f\xda\x8b\x86\xa5\xb4\x11\x74\xc4\x04\xc7\x71\x40\xcb\xe2\xe1\x81\x1c\xb0\xc5\xe0\xe0\x21\x80\x4a\x94\x7c\xcb\x4f\x70\x3f\xbf\xf2\x56\x3a\xe5\xe5\xb5\x82\xd3\x3f\xa8\xeb\x2e\x7c\xed\xbc\x45\xcd\x1c\xfa\x62\xfa\x4d\xbd\x32\x70\x3d\x27\x88\xb6\xa2\x3b\x92\x5f\x45\xab\x6c\xe1\x50\x49\xfa\xaa\xda\x85\x71\xf6\xf4\x9e\xd2\x17\x81\x71\x60\x84\xd1\xd3\x43\x09\x85\xa8\x1a\xad\xfc\xe1\x34\xfe\x8d\x77\xd6\xd8\x59\x30\xf4\x5e\x2b\x56\x0b\x52\xce\x2d\xc6\x44\xa0\xaa\xb3\x14\x13\x82\xa6\x8a\xdd\x18\x0b\xfc\xa6\xfe\x80\x89\xa1\x66\xc6\x34\x4c\x00\xef\x38\xa8\xc2\xd4\xc8\xf0\x6d\x04\x56\x8c\x0c\x2e\x59\x84\x1d\x43\x0d\x56\xa9\xd8\x4f\x6c\xd3\xdb\x89\xd8\x0a\xe4\xf9\xdd\x41\xcc\x15\x19\x38\x1b\x8c\x4d\x41\xf4\x1d\x67\x31\x5b\x24\xa5\x1c\xc3\x6c\x90\x34\xf5\x72\xcc\x03\x39\x43\xec\xc2\xdc\x51\xe7\x83\x16\xd8\x2e\x94\xb7\x6d\x38\x96\x8a\x7e\x5c\xac\xc3\xf2\xb0\x23\x56\x00\x76\x07\x6b\x7a\xcd\x42\xeb\x08\xca\x9d\x54\xd4\x44\x4c\x3a\x33\x0b\xcd\xc5\x2b\xda\xcf\xa1\x15\xb8\x5f\x59\x01\xda\x8a\x03\x2a\x04\x1d\xc2\x47\xe2\x25\xe8\x1d\xdc\xe1\xc0\x11\x6c\x3c\xbe\x64\xeb\x21\x6c\x05\x1e\xb0\xd8\x05\xa3\xe0\xf1\x96\xbd\xd8\x20\xbe\xf2\xf9\x3a\xa4\x87\x2b\xba\xd1\x84\x1c\xe3\xb4\x9e\xbc\x8b\xf4\xb3\x4f\xb7\x9a\x21\xb7\x58\x5f\x4b\xb6\x22\xdf\x58\x2b\x14\x24\x3a\x81\xd9\x88\x59\xa2\xcb\x99\x2b\x92\x17\xa1\xe9\x64\xdd\x96\xbd\x68\x27\x39\x6b\x11\x8c\x8d\x61\xd0\x2c\xe9\x58\x16\x91\xf1\xb8\x02\xbe\x27\x0d\xb9\x2a\x85\x9f\x8b\x7f\x0e\x7e\x84\x7f\x88\xb4\x4d\x74\x64\x9c\xd0\xbf\xc8\x16\x99\xc3\xff\x2b\x33\x21\x01\xbc\x3b\x08\x1f\xa1\x73\x3b\x12\x7f\x22\x27\x39\xac\x90\x74\x74\x0e\x7b\xd5\xc2\x1f\x28\xca\xec\xb6\x04\xd1\x3f\x8c\xa1\x07\x6b\x61\x7b\xed\x88\x4b\xa9\xb0\x6b\xb6\x43\xff\x5a\x78\xbd\x6a\x4a\xc3\x08\x38\x44\xb1\x20\xff\x19\x1c\x27\xf3\x97\x9c\x80\xa5\x92\x2c\xe8\x0b\x7c\x4e\xa4\xdd\xdf\x8b\xcc\x13\x18\x83\x65\x88\x80\x47\x2e\x44\x90\xcf\x1c\x3b\x4b\x16\x8a\x32\x9d\xee\xda\x40\xd6\xa5\x81\xe7\xea\x21\xe7\xa2\xf8\x9e\x6a\x68\x55\x3e\xbd\xe6\x2a\xb4\x2d\x57\x66\x9c\x0c\xa5\xe9\xf5\xa2\x40\xa8\x42\x53\x44\xbf\x06\x7d\x51\x09\x12\xc6\xc1\xe1\xf2\xf5\x41\x91\xf0\x09\x71\x87\xc7\x53\x64\x0d\xff\xaa\x65\x25\x72\x8b\xed\x71\x53\x0d\xee\x6b\x19\x79\x3a\x01\x4c\x6b\x18\xd5\x59\x09\xe2\x35\x36\x55\xe3\xc1\xdc\x4a\xeb\x1c\x01\x38\x58\xf2\x45\x30\x0c\x1a\x5d\xd0\x44\xbd\x01\x45\xe5\xae\x88\x8b\x87\x06\xb5\x99\x81\x36\xf0\x1a\xe5\x56\x8f\xd5\x70\xaf\xb8\xc3\xb2\x0e\x39\xc4\x5d\x7a\xed\x23\xb8\xe4\x78\xf6\xc9\x57\xa0\x4b\xdf\x89\xf6\x8d\xa0\x73\xe7\xed\x8a\x63\xe0\x86\x96\x13\xba\x68\xf0\x50\x3d\xca\x1b\x01\x9a\x4c\xff\x28\x93\xa0\x11\xa5\x73\x63\xde\x40\x91\x79\xed\x9b\xe7\x40\x43\xda\xa7\xee\xb5\xf0\x5e\x39\x61\x59\x8b\xcc\xe2\x7d\xbc\x36\x1a\x1c\x75\xf6\xf3\x89\x7f\xe0\xc8\x93\x5d\x6d\x11\xe0\xf0\xfe\xe8\xf2\x1b\xa0\x7d\xd7\x59\x2d\x09\xae\x6b\xf9\xce\x5d\x01\x22\x75\xff\x65\xed\x03\x2f\x57\x46\xc4\xec\x86\x9c\x8a\xec\x37\x5d\x80\xd8\x39\xa9\xee\x1c\xd8\x49\x69\x6f\x79\x0a\x7e\xc5\xe7\x5c\x8d\xa5\xdf\xbc\x12\x75\x62\x17\xfd\xe6\xb9\x6b\xad\x26\xfa\xcd\x53\xd3\xcb\x3d\xe8\xaf\xfa\x6d\x34\x0f\xc0\x71\x9d\x27\x38\x85\xa0\x6f\xf3\xec\xcc\xfb\xa0\xb8\xfa\x77\xf4\x07\xf0\x62\xc9\xd7\x4d\xa5\x90\x4b\x2e\xcd\x5d\x08\x9d\x51\xad\xb7\x9a\x06\x67\xf3\x1b\x9f\xe7\x33\xb2\xe8\x45\x37\xc7\x33\xa6\xd3\x9f\x9c\x7c\x4f\x9c\x03\x47\xb7\xfc\x21\x14\xa0\x73\x89\x2b\x11\x0d\xd2\x15\x61\xc4\x02\xc8\x09\xbd\x8c\x7f\x87\xde\x24\x5d\xc5\x4f\xc1\x2d\x5b\xbc\x70\x0d\x22\x5d\xc4\xc7\x29\x28\xc7\x52\x85\x1f\xc1\x82\x9e\xdd\x26\x5e\x20\x76\x37\xdc\x88\x7c\xc4\xea\xe4\x4a\x62\x17\xfc\xad\x65\x19\x31\x17\xbe\x5f\x1c\x8d\x7f\x87\xdf\xca\x35\xf8\x79\x24\x10\x9d\x89\x17\x20\xbd\x49\x21\xb8\x00\xf5\x0e\x69\xc5\x93\xd1\xb6\x85\x5f\xf1\x70\x2c\xcc\xd2\x15\x0f\xc3\xea\x9f\x42\x44\x34\x5e\x77\x7d\x38\xe1\x84\x87\x9d\x70\xc4\xef\xe3\x16\xcd\x9b\xf0\x3e\x2c\xaf\x48\x8c\xab\x31\x48\x76\x0b\xcf\xc2\x38\x48\x06\xbe\x03\x6b\x4d\x3c\x89\x6f\xc4\x6e\x85\x2c\xc4\x97\xe1\x63\x16\xf2\x70\x37\x7c\xb3\xc5\x67\x7c\x15\xbe\xfc\x61\x1c\x8e\x73\x0a\x2e\x27\xe3\x1b\xd8\xaf\xfa\x7f\xe2\xd3\xd8\x63\x1a\x0a\xb0\x37\xac\xed\x05\xbb\xb1\x1b\xcc\x2a\xc9\x2f\xac\x97\xe9\x0d\x7d\xc4\xea\xc8\x0b\xfb\x45\x58\x2d\xb9\x2b\x78\x2e\xd6\xc1\xb8\xe5\xf1\x14\xeb\x63\xec\xb2\x68\xc2\x5e\x10\x87\xee\xfd\xc2\x3a\x25\x2b\x2e\xc4\x60\x0c\xf1\xe8\xbe\x65\x58\x98\xb0\xb7\xce\x03\x73\x11\x90\x79\x8b\xb1\x09\xfc\x1d\xe2\x05\x18\xc0\x0b\x00\x8f\xa2\xbf\xb9\xab\x13\xc2\x31\x73\x8e\x7d\xd0\x56\x6c\x0e\xeb\xad\x07\x88\x79\x33\x55\x16\xe7\xb0\xa3\x8c\xbe\xdb\x7d\xe8\xf7\xec\x1b\x67\x0f\xa0\xa7\xd4\x13\xbb\x8b\xd1\x52\xe5\xcc\xea\x0b\x28\x22\x0f\xcc\x9d\x84\x46\x4a\x41\xe1\x0e\x34\x4c\x3c\x40\x7b\x8a\x46\x8a\x86\xc7\xcf\x45\x8f\x0a\x5c\x02\x61\x54\xcc\x5b\xe8\x31\x15\xad\x61\xbf\xb7\x78\x87\x7e\x60\xda\x5e\x37\xa0\xd6\xc5\xe7\x4f\x35\x20\x8f\x0a\xc7\x76\xcc\x44\x5a\xf3\x7c\x2b\x6b\x11\xb1\x81\xaa\xdf\x84\x64\xe8\x0c\xbc\xfb\x08\x25\xfb\x38\xe5\x02\xc2\x55\x9e\x8f\x05\x91\x22\x59\xd5\xe6\x6d\xc8\x69\x71\x88\x3b\x89\x7c\xe7\x2b\x2d\x6d\xd1\xcd\x6c\xdb\x2b\x73\x90\xa3\x4d\xb3\x8f\x43\xc8\xea\xba\x88\x56\x1b\x64\x72\x95\xa4\xec\x0d\xfc\xa2\xbc\x59\xd3\x0f\x9f\x2f\x6e\xe5\xe8\xe1\xeb\xf9\x79\x99\xd7\xe0\x4f\x86\x2d\xd1\xd7\x11\x6b\x4d\xcb\xa6\xe9\x88\xbf\x62\xc0\xed\x3e\x02\x89\xe3\x2d\x5d\x90\x1b\xdc\x49\x17\x73\x10\x8f\x81\xc4\x01\x73\xf8\x43\xcf\xe5\xa6\x21\xb8\xad\xc3\xb6\xa4\x06\x16\x35\x7b\xa8\xcb\xe0\xac\x3a\x73\x56\x25\x0c\x56\xb6\x66\xd8\xc3\xaa\x12\xcb\x7d\x07\x60\x93\xf1\x7a\xc0\x2c\xf8\x8a\xd6\xdb\x6d\x27\x62\x23\x9f\x68\xe9\x8a\x70\x79\x83\x17\x3a\x91\x09\xa7\xeb\xfa\xe7\xc2\x97\x8e\xd7\x37\xbe\x80\xb3\xfb\xb8\xc5\x43\x70\x7c\xa7\xad\xea\x02\x1c\xd8\x7c\x98\xf9\x08\x0e\xaa\x65\xa4\x1f\x86\xe3\x2b\xdc\xa3\xae\xc2\x19\x85\xae\x1b\x8f\xc3\x72\x7d\x9d\x9b\x0b\x7c\x57\x51\x64\xb9\x01\x09\xe5\xef\xba\x30\x13\xfe\x70\x69\xc2\x31\x06\x5c\x7d\xa6\xb3\x71\x3d\x7c\xe8\xc4\xa2\xe2\x99\xf0\xd2\xbe\x50\xd5\x62\x78\x62\x87\x0b\x33\x14\x36\x6f\x6c\x4c\x7b\x0f\xdb\x57\xf5\x46\x65\xc2\xb3\x8b\x7f\x6c\xd4\xc3\x2b\x0c\x75\x6e\xee\x30\x47\x79\xdc\x52\x06\xff\xe1\xb3\xee\x38\x72\x7e\xd3\x5c\xce\x1e\xe5\x6c\xa1\xf1\xba\x65\x6c\x06\xed\x62\x75\x12\xeb\x3b\xdd\xd1\x10\xcd\x3a\x42\x57\x08\x52\x98\x97\xc1\x40\xea\x59\xa6\x17\x34\x3b\xf6\x39\xa9\x82\xad\x37\xaf\x63\xbc\x41\xac\xdd\xea\x18\xc1\xa8\xaf\x79\x22\x31\x88\xb9\xdd\xde\xc6\xe1\x40\xf2\x33\x7a\xf6\x3d\xa8\xb0\xeb\x12\x7b\x16\x54\x5f\xa5\x67\x69\xa0\x9e\x1c\x19\x6b\x2a\xf4\x96\x5f\xcb\x24\xe1\x38\xea\x02\xf2\x23\xfc\x29\x36\x8c\x8c\x45\x24\x9b\x9a\x19\x67\x51\x6f\xb7\x15\x0c\x2f\x6c\x94\xb9\x39\xd1\x81\x89\x6f\xd1\x39\xd3\x30\x9b\xd3\xdd\xec\x34\xf4\x6e\xd7\x78\x56\x17\xda\x6c\xba\xcd\xf2\x44\x09\xfd\x23\x66\x0b\x9a\xc6\x9f\xc0\xf4\x40\x0d\x14\x2d\x59\x8e\x3e\x8e\xb9\x4d\xce\xc6\xdc\x37\xf9\x30\x0c\x18\xe1\xfa\x88\x31\x01\xfb\x34\xee\x29\x61\xc4\x27\x5c\x7b\xc5\x9e\xc8\x1e\x77\xb2\x99\x45\xb2\x0e\xb6\x47\x32\xcf\x32\xdb\x2a\xf2\x99\x51\x4c\x7b\xdd\x70\xf2\x2d\xa9\xe1\x52\xc9\x74\xd2\x27\x6b\x3d\xe3\x07\xe3\x73\x74\x1d\x43\xc6\xd0\x04\x84\x31\xe6\x30\xfc\x5c\xf7\x10\x25\xc4\xe7\x71\x43\x44\x00\xb1\xfa\x72\x23\x2b\x53\x14\x30\xf8\x9b\x79\x59\xb8\xa1\xa5\x99\xb9\x4a\xe0\x56\xb6\x99\xec\xe2\x4f\xcc\xfe\x42\x6e\xe2\x8d\x64\xd7\x31\xae\x70\xed\x33\x8e\x33\x92\x39\xde\xfb\x04\xc4\x6f\xf6\x86\x8d\x6c\x42\xc6\xf2\x73\xf9\x41\xcc\x62\xce\x1d\xf7\x0a\x1f\x62\x70\x2f\x64\x33\x3f\xab\x38\xfd\x13\x98\x61\x8a\x4f\x4d\xab\xc9\x76\xf9\xaa\x92\x89\xa4\xab\x54\xa6\xfa\xcb\x30\x89\xdf\x31\x7f\x32\x7c\x45\xfb\xd3\x77\x10\xb7\x05\x97\xa2\xf6\x13\x87\xf9\x6e\x1b\x7a\x09\x33\x6e\xa2\x8b\x02\xd7\xb2\x53\xcd\xcd\xf0\x2d\xe4\xad\x33\xa5\x4c\xf3\x82\xb3\x3d\x79\x24\x35\x2f\xba\xee\x35\xe3\x89\xe1\x59\xa1\x25\x63\xa7\x7e\xb3\x62\x13\x71\x4d\x53\xcc\xd0\x10\x47\xd4\xe3\x8e\x06\x13\x93\x14\xa1\x91\x37\xf0\x12\x29\xdd\xbf\x11\x5f\x2b\x8a\x73\x99\x87\xdd\xe5\x7d\x33\xdf\x8b\x69\x59\xe7\x4e\x81\x64\x69\x5d\x51\xe7\x51\xd2\xac\x7a\x6a\x8d\x25\x63\x57\x45\x4d\x5e\x14\xd1\x5f\x3a\x5c\x7a\x9e\xf0\x2b\x5c\x87\x47\xe1\x77\x8c\x94\xd4\x08\x9c\xa9\x4f\xdf\xe3\x87\xcf\xcc\x5e\xb6\x9e\x8f\x75\xca\x8d\x0b\xb8\x58\x8c\x28\xcf\x3c\x19\x9b\xc3\xa9\x3a\xfe\x8b\x4c\xee\xdd\xdf\x3e\x97\x51\xd3\x39\xcd\x54\x4c\xfc\x69\xa9\xc8\x5d\x4c\x24\x37\x0c\x13\x5f\xc2\x9f\x54\xcf\x47\xb9\x38\x54\xee\x7c\xa8\x15\x9f\x55\x78\x2d\xfc\x19\xd6\x94\x6b\xb5\x8e\x8b\xed\xcc\xbe\xe8\xfc\x13\xfd\x27\x73\x32\x3f\x82\x9e\xe5\x05\x0d\x7e\x24\x37\x9f\x08\x6d\x73\x65\x88\x8e\x55\x56\xd6\x12\x57\xbb\xae\x18\xb6\x10\x6b\x5b\x5b\xc4\xa3\xf0\xd6\x86\x5d\xc8\x29\x7c\x73\xd5\xc0\xa1\xf1\xd8\x8b\xd2\xb3\xe1\x7b\x30\x24\x7f\xdd\xba\x39\x98\x8d\xce\xc3\xf9\x0c\x7a\x5c\x5e\x68\x2e\x44\x55\xbc\x9b\x83\x73\xc9\x05\x67\xf7\xb5\x26\x30\x12\x4f\xa6\x56\xbc\x27\xca\xfa\xd7\xe5\xe4\x13\x96\x5d\xbd\xa2\x43\x38\xd6\xf2\x12\x59\x8d\x8f\xae\xbb\x90\xa2\xc6\xf2\x2a\xd7\xed\xfe\x85\xb9\x17\x7e\xf3\xfb\x80\x0e\xe4\xd8\x3a\x0f\xa1\xe9\x8a\x2e\xf3\xcb\xa8\x0f\xdf\xe2\xfc\x44\xf1\x2e\xaa\x43\xdf\x3e\xd1\x2c\x2a\xde\xe0\x24\xf8\x4e\xbd\x5d\xf8\x92\xff\x87\x16\xa4\x38\xc9\x37\xa3\xdd\x61\x9c\xe0\x7e\xa7\x17\x1e\x9d\xcb\x79\x0e\x4a\x22\x57\xb0\x2f\x42\xa2\xf5\xf9\xac\x6a\xb8\xd8\x79\x3f\x93\x81\xfc\x18\x73\x89\x4c\xc5\xcc\xce\xed\x11\x9d\x01\x63\x7a\xf3\x84\x75\x20\x56\x9f\x20\xc8\x05\x8d\x85\x5e\xfc\x52\xf0\x82\xc2\x81\x57\x07\xcd\x62\xb8\x71\xeb\xa0\x82\x23\x3a\x8e\x09\xde\xb0\xa7\x85\x5d\x04\x7f\x5b\x3f\x97\x25\x47\xda\x9d\x87\x33\x8f\xa2\x0d\x63\xb8\xe4\x41\x6c\xe7\x59\x9d\x68\x23\xd2\xd3\x73\x53\xe8\x8f\x18\xeb\x0c\x82\x0d\x08\xbb\x00\xe4\x6f\x45\x8e\xca\xb3\x78\x91\x08\x83\x90\x72\xe3\x91\xc1\x23\x96\x9c\x44\x74\xf6\x1e\x5f\xf6\x41\x94\xb3\xae\x87\x95\x80\x7e\x9b\xdf\xcb\x0c\xc4\xd4\x63\xb2\xc8\x10\xec\xdc\x50\xb7\x30\x89\x19\xd6\xb5\x53\x40\x25\x2f\xd4\x1c\xe0\x93\xe4\xc6\x3c\x3e\x2f\x87\x71\x41\xda\xcb\x6d\x66\xa4\xe2\x93\x38\x83\x8c\xe5\x87\x4f\xb1\x2f\x32\xac\x22\xdc\x59\x4f\x89\xeb\x7e\x6f\x99\xef\x88\xe2\xf9\xa1\xe4\x23\x42\x30\x26\x8b\xf1\x11\xff\x72\xa2\x49\x70\x4c\x00\xb6\x37\xf2\xaf\xf1\xf9\x55\xe6\xbc\xd7\x3c\x49\x6e\x1a\xf7\x2f\x57\x27\x7e\xc5\xb5\xe6\x34\xa1\x08\xc7\x9d\xfd\xe9\x50\x16\xdb\x9f\xed\x1d\x3e\x93\xb5\x8b\x75\xc0\xcf\x8b\x19\xc3\x54\xcc\x1f\x4e\xee\x21\x6b\xc7\x94\x30\x52\x19\xab\x06\xbe\x08\x36\x2a\x22\x5b\x17\xf2\x43\x65\x4f\x2b\x2e\xf3\xe2\xa5\x07\x72\xd2\xb9\x29\xe2\x27\xa2\xb9\x1c\x54\x94\x02\x7f\x60\xe7\x08\x27\xa5\xcc\x67\x75\xf0\xeb\x76\x9b\x33\x87\x78\x4b\xd7\x92\xe4\x55\x4e\xd1\xbc\x66\xc6\x15\xd6\x8b\x31\x17\x89\x77\x24\xbb\x6f\x3d\x3f\x3f\x6f\x52\xe3\x5d\x5e\x81\xe1\x72\x69\x2b\xb7\x46\xcf\xd3\x1a\x39\x35\xda\xf9\xfc\x3c\x76\x87\xba\x0b\x6c\x65\xdd\x56\xee\x3b\xe0\xc7\xfc\x23\x7b\x12\xa6\x61\x5a\x49\xd6\xf8\xc2\xa4\xad\x30\x69\xde\x4a\xc6\x4c\xde\x96\xb1\x96\x84\x0f\x2b\xb1\x7b\x37\xdf\xbd\x7a\x7a\xdd\x57\x9e\x67\xc5\xeb\xa2\x6f\xdc\xd5\xa5\xb5\xd9\x93\x39\x8b\x8b\x76\x71\x83\xd8\xcb\xf2\xfe\xa3\xe9\x59\x3b\x0d\x51\x49\xc9\x4c\x9a\xb6\x7c\xe7\x6c\x52\xa0\xaa\xf5\x49\x61\x68\x65\x29\x73\xeb\x08\x83\xf0\xcc\x58\x67\xbc\x9b\xe3\xd1\x71\x8e\x3f\xbe\xd3\xb6\x26\x87\xfb\xb3\xd5\xb5\xa0\x86\xf3\xae\x71\xbc\xf2\x03\xfb\x49\x4d\x27\x7b\x0b\xeb\x49\xe5\x72\xca\x00\xf3\x57\x89\x60\xff\x09\xa6\x4d\xbe\x2a\xb4\x8f\x74\xc9\x71\x59\x13\xc5\xf0\x56\xef\x9a\x6b\x47\xac\x91\xda\x8e\x5d\x8c\xc7\x70\x5b\xda\xef\xf2\xde\x1f\x1b\xaa\x36\x71\xef\x76\x53\xf2\x07\x38\xe7\xda\xde\x2b\x27\xb0\x8f\x35\xb9\xb0\x40\x56\x4f\xad\x23\x05\x60\x9e\xaf\x78\xb9\x7f\x3a\xf9\xac\x78\x67\xe8\x12\xc6\x67\xe3\xb2\xd5\x9f\x19\x80\x46\x35\xe7\x35\x31\x52\x26\x18\xbb\x15\x9f\xcb\xf3\x6b\x77\xe0\x9d\x3b\x59\x5c\xf5\x8e\xdb\xde\xff\x2f\x7f\x34\xa7\xa4\x67\x96\x22\x8a\xad\x6e\xfb\xc4\xbc\xca\x12\x34\x82\x59\x29\x4c\x59\x75\x6f\x82\x86\xcc\x2f\xd3\x6c\x3f\xcd\x28\xcf\x3f\xbe\xba\x99\xa8\xd3\x1d\x9a\xf3\x18\xaf\x97\xeb\xc6\x2a\xb0\x73\x3c\x7a\xef\x4f\x95\x1b\xc5\xa9\x71\x81\xc2\x44\x29\x29\x1d\x2b\x9f\x42\x75\xd2\x74\x4a\x73\xa8\xb5\x3c\xb6\xc4\x89\x16\x4e\xc7\x44\x1a\xba\x47\xd2\x33\xa1\x19\xe8\xbc\x73\x04\x3f\x01\x5a\xb4\x46\xc0\xad\x83\x77\xcc\xee\x67\x3f\x45\x8e\x8f\xfc\xc5\xf2\x44\x6f\xf4\x3a\x2b\x4f\xd2\xd7\x34\xc4\x29\xb6\xd3\xa1\x92\x60\xd9\x00\x7d\x40\x33\x51\xba\x0d\x9c\xcc\x7d\x24\xbe\x09\x42\xb4\xb7\xa2\x48\x68\x62\x52\x82\xe0\x3c\x34\xb8\x83\xc3\xf7\x81\x99\x6b\x1c\xb9\xd9\xc8\x9e\xd9\x20\xfb\x2a\x7a\x74\xe4\x7d\x96\x3b\x36\xab\x27\x58\x99\x0c\x83\xf5\x72\xf9\x77\x38\xbd\x98\x2b\x4b\x83\xf9\xd9\xb1\xd2\x11\xb0\x82\xbb\x51\x2c\x85\x3b\x69\x91\xa2\x69\x88\x75\xe2\x7d\x81\x02\xe1\xed\x98\xce\x1f\x87\x9a\xad\x3e\xc5\x4d\x45\x05\xb3\x03\xd9\xf5\xd8\xe6\x91\x57\x59\x53\x30\x65\xd7\x2c\x45\x37\xa3\xbf\x56\x29\x0f\x67\x24\x17\xf6\x4b\xaf\x13\xbf\x55\xdd\x92\x43\x44\x19\xfb\xbc\xd8\x8c\x48\xa1\x9a\x0b\x85\xc4\xd6\xfd\x5d\x02\x4b\x62\x53\xe8\x1c\x9e\x8c\x58\xbc\xda\x86\xf3\x87\x70\x72\x7a\xcf\x0e\x26\x16\x8e\xbc\xc9\x6c\xc3\x2b\xdb\xf5\x0a\x4f\x5e\x5d\x35\x28\xab\xe2\xbe\xcc\x6f\x92\x7a\x73\xad\x15\xaf\xc5\xe7\x38\xeb\x58\x5e\xa2\xfd\x6c\x22\xab\x42\xf0\x8d\xf5\x24\x41\xc9\x67\xb0\x42\xb7\x2f\xe2\x99\x31\x8b\x56\xe1\x9c\x34\xf2\xab\x53\x3f\x6b\x80\x0c\x18\xe5\xc2\xf4\x24\x3e\xb7\xba\xcb\x19\xb2\x8d\x26\x47\x99\xad\x74\xb8\x71\x50\x52\x28\xae\x93\xbb\x8a\xbd\x45\xa1\x64\x85\xf0\xbc\xe0\x6f\xe6\x56\x41\x32\xff\x72\xfc\x51\xde\x0f\x5e\xd1\x36\x2f\x6e\x1a\x37\x78\xe5\x53\xf6\x43\xf6\x3b\x27\x39\x6b\x11\xeb\xe8\x28\x16\x99\x4b\x7a\x37\x7e\x92\x7d\x32\xac\x2c\xdf\x2c\x85\xf4\xfe\x39\x8f\x24\x96\xda\x55\x12\x95\x48\x96\x3d\x89\x88\x16\xce\x50\x3e\x48\x0f\xe0\xd7\xcb\xbb\x62\x1b\x79\xfe\x52\x72\xcb\x7b\x4e\xb7\x78\xc2\x8a\x4f\x6c\x17\x01\xdd\xc9\x99\x09\x71\xab\x46\xf5\x32\x9e\xb3\x46\xd4\x7d\x91\x55\x57\x28\x4b\x62\xa4\x4b\x4a\xf3\x74\x21\xe2\xda\xa2\x06\xd1\x62\xd1\xdc\xfc\x52\xcc\x4b\x90\x97\x8b\x1d\xdd\xc6\xf7\xd4\x6f\x88\xfe\xcd\x1d\xcc\xbe\x1f\xa2\xe1\xf8\x2a\xdd\xbd\x5f\xb3\x2a\xa4\x5e\x8e\x05\xe4\x2f\xc1\xa7\x51\x17\x19\xc9\x6c\x53\xcd\x71\x99\xa4\xe5\x56\xd1\x1e\xc9\xf7\xc6\x65\x9a\xc5\xe2\x94\xda\x64\xc1\x6c\xe1\x03\x53\x32\xb2\x56\x10\x51\xe6\x95\x4a\xf0\x1e\x16\x3e\xde\x17\xcb\x4d\x36\x6e\x0a\x5e\xc5\x7e\xa4\xf3\xf1\xfa\x8f\x15\xa2\xbc\xe2\x68\x41\xea\x25\xe3\x46\xdd\x61\x98\x71\x67\x54\xdf\x91\x81\xdd\xf3\x0a\x41\xc9\x7f\xed\xce\xd9\xdb\xc4\x5b\x9a\xbe\xf3\x37\x0a\xfb\xea\x38\xf0\x01\x81\x97\xe9\xe6\xe1\x0e\x5e\x4b\xe9\xef\xa8\x7a\xae\x57\xc1\xa9\xa0\x72\x76\xb5\x61\xaa\x57\x06\x6b\xba\xfa\x83\xc3\x35\x32\x4e\x1a\x3b\xea\x3d\x71\x9c\xab\xaf\x76\x94\xc5\xf6\x97\x14\xf4\x49\x8e\xf5\xc4\xaa\xf5\xe2\x05\xed\xf7\x78\x72\xa1\xb6\x79\x0c\xd4\x25\x18\x5d\xfb\xe6\xf0\x2c\x1e\x5a\xa9\x8a\x72\xe3\x7c\x2e\xbe\x11\xb4\x86\x9d\x64\x64\x78\xb9\x32\xcf\x69\x6a\x1c\x06\xc9\x89\xb2\xf8\xd1\x6e\xc4\x21\xee\xcd\xca\xfa\xbc\xff\xb2\x8c\x79\x91\xb9\x04\xc5\x49\xb9\x32\x67\x25\x45\xc7\xf1\xd1\xfe\xa0\x7a\xd2\xa3\xb3\xab\xa9\xef\x0e\x76\xaa\x42\x69\x97\xf6\x94\xc8\x6f\xd2\x6f\x6d\x82\xa5\x2b\xa1\xe1\x9e\xa3\x45\x69\xf0\x26\xbb\x41\x3e\x0f\x39\x6f\x66\xc6\xe9\x42\xcf\x55\xce\xc9\xcb\xa0\xd1\x8c\x67\x72\xe7\xd0\xfa\x15\x35\xfa\xe7\xf4\xe1\xec\x5e\x6d\x2d\x3d\x89\xf6\x2c\xfb\x30\xfd\xd9\xc1\x2d\x2a\x1b\x50\xbc\x67\xbd\xbc\x0c\x0a\xdf\x34\x5b\x3a\x05\x5e\xb1\xb4\x4f\xb4\x1b\x59\x62\xa7\xe3\x53\xd0\xf8\x61\x9f\x39\x0d\xd8\xe8\x0a\x4e\xde\x64\x88\x6a\xf4\x34\x0c\x41\x6c\x85\xad\x5e\x05\xc9\xd8\xcb\xb5\x09\x50\x0b\xed\x50\xf6\x3c\x18\x38\x70\x47\x79\x1d\x4e\x8b\xb8\x27\x3f\x0c\xff\x0b\x38\x27\x79\x88\xe8\x96\x12\x22\x77\x74\x93\x1d\xc8\xdf\x8e\xcd\x1b\xf6\x8b\xa3\xc4\x52\xca\xed\x8d\x3b\x89\x5d\x86\xdb\x06\x07\xc2\x4a\x76\x4d\xf7\x07\x6f\x67\x8d\xd2\x5c\xc4\x59\xd4\x70\x75\x36\x9e\x98\xfc\x58\x19\x8c\xa7\x44\x8c\x96\x3d\xc1\xd9\x01\xb3\x24\xfb\x71\xcd\x52\x4b\x61\x1b\x5e\x6f\x17\xc6\x7b\x86\xbf\x31\xf3\xe4\x2c\xc4\xb3\x4a\xee\xe4\xde\xe3\xe8\xf5\x0f\x73\x4a\xd9\x7f\xa5\x73\x74\x30\x3b\x8c\x64\x6b\x02\x59\x0d\x94\x71\x6a\x0b\x96\x63\x52\x9f\xa2\x9f\x59\x17\x3e\x45\x16\xc7\x0c\xde\x18\x2d\xbe\x43\x5e\x5a\xa2\x10\x2e\x22\xc3\xec\x96\xf2\x62\x18\xf7\xcd\x48\x76\x19\x51\x52\xd4\x95\xcb\x15\xe3\xba\xb1\x39\xab\x44\x90\x98\xa9\x33\x13\xc6\x32\x26\x66\x9f\x10\x6c\xcc\xec\x53\xb1\xf8\x9e\x89\x79\x8a\x35\xbc\xb5\xbb\x1d\xa5\xf7\xb8\x21\x1b\x72\xc5\xdb\x38\x5e\x4b\x66\x09\x72\xd9\x53\xed\x1c\xb9\xa7\x98\xf7\xcd\x5e\xb2\x2d\x19\xb7\x0a\xd6\xe7\xda\x6a\x19\xd9\x05\xfa\x8e\xec\x9b\x42\x4f\x6d\x96\x7a\x1a\xf6\x29\x7b\x81\x72\x69\xfa\x1d\xe5\x0d\x79\x50\xc2\x27\xb9\x40\x4a\x09\x6b\x92\xba\x88\x65\xfe\x22\x91\x4e\x48\x59\x9c\xc0\x7f\xc2\x5f\x65\xfb\x1f\xd7\x8a\x73\x65\xf8\x5a\x56\x08\x93\x63\x6c\x30\x34\x15\x77\xaa\x82\xf4\x31\x85\x4b\xf8\x93\xb4\x76\x79\x6a\xe4\x93\xba\xc7\x70\x21\x6d\xb4\x32\x46\xf7\x27\x3e\x50\x3e\x5e\xe3\xb2\x73\xbd\xa4\x52\xe5\xb9\x3e\x59\x34\x4d\xf6\x75\x91\x98\x1f\x2b\xc6\x6c\x31\x0e\x9b\xdf\x3f\x3c\x95\xd9\xc3\x36\x33\x5c\x32\x98\xea\x9e\x28\x62\xf5\x5e\xd5\x6a\xee\x2c\xcd\xed\xca\xd9\xf0\x74\x35\x5c\xca\x3f\xb2\x59\x39\xa5\x70\x28\xb6\x56\xd6\x6a\xfc\x14\x7a\x4b\x12\xa4\xff\x6f\x9d\xb7\xb0\x31\x3b\x65\x61\x25\xef\xa7\xbc\xd8\x76\x34\xc7\x41\x44\x0c\xe7\x33\xb7\x71\x02\x0c\xd3\x0d\xd2\x16\xa1\x5c\xad\x77\x6c\xf8\xc0\xd9\xa8\xe9\xa9\x9d\x03\x05\xab\xa3\x4c\xce\xa9\x1c\xc5\xfb\xd2\x1f\x31\x7f\x64\xc2\xc2\xa2\x50\x1f\xc9\x74\xe3\x28\xbf\x66\x21\xa2\xfd\xb1\x30\x98\x77\x4c\x29\x9c\x71\x87\xfd\x44\xdc\x38\xbc\x94\x39\x81\xd3\x97\x43\x18\x8e\x76\x52\x64\x6f\xf4\x66\xad\x06\xb6\x4c\xa3\x6f\xe4\x82\x46\xf5\xd2\x5a\xaf\xc3\x2f\x15\xdd\x95\x65\x31\x47\x65\xdb\x4b\x1e\x6e\x1f\x14\x5f\xc9\x1f\xf4\xdb\x25\x5c\x9a\xe3\xbc\x70\x3c\x2f\x53\x3d\x73\xc6\x65\xb6\x4c\x92\x3b\xfc\x31\xd9\xc2\x05\xd4\xab\xab\xe8\x59\x83\x82\xff\x2a\xe8\x94\x20\xfc\x72\x29\x85\x72\x3a\xcb\xb2\x28\x94\x7a\x20\x19\xcb\x9f\x4e\xf3\x88\xdc\x6c\x18\xa4\x5b\x07\x9f\xd7\x6d\x00\xe7\xaf\x16\xa8\x69\x50\xb2\xcb\x6e\xf9\x61\xf8\x84\xf5\x5d\xf1\x0a\x74\x0b\x00\xf0\x1d\xb1\xd9\xaa\x9b\x55\xd6\xb4\x50\x01\x5e\x61\x4b\xcb\xc7\x91\xd2\x59\xb4\xef\x99\xdd\x45\xa3\xe8\xf1\xc9\x4b\xf3\xae\xd1\x3f\x47\x0e\x37\xf0\xc1\xd2\x60\x99\x6e\x02\x84\xad\x0e\x53\x6f\x85\x41\x97\x25\xf2\xad\x88\xc4\x7a\x48\x3c\x0f\x3d\x0e\x00\xfc\x89\xd8\x26\xd5\x11\x53\x1d\x34\x4c\x30\xa3\xbc\x1b\xb2\xc3\x67\x95\x0c\x40\x41\x99\x89\x85\x4d\x10\x2b\xe9\x61\x9e\x18\x7a\xb4\xa7\xd5\xb0\x11\x8e\x0f\xde\xae\xbd\x80\x8c\x58\xed\xa0\x9e\x8e\xb4\xbb\x8c\x97\x3b\xa1\x6c\xeb\x5e\xd1\x3f\xec\x08\x00\xf0\x5e\x63\x39\xca\x58\xd3\x78\x5c\xc4\x77\x29\xb7\xc5\xa3\xb0\x4d\x25\xf3\x70\xdb\x0c\x7d\xa1\x1d\xf6\x33\xc9\xcd\xf8\x0d\xfb\xb2\xc7\x3a\xa7\x0e\x9f\x1c\x74\x42\xeb\x8b\x07\xad\x6a\x52\x29\x70\x64\xc1\x69\x59\x09\xde\x62\xdd\x22\x12\x11\x63\x01\x80\x07\xe3\x52\xf9\xb9\x4a\x23\x7b\x1d\xb7\xa7\xac\x98\x35\x80\xfc\x2c\xae\x67\x2d\x4e\xa7\x16\x18\x98\x2d\x89\x9e\xc6\x23\xcc\xa0\x88\x35\x39\x0b\xc8\x7f\x41\x93\x35\xad\xe4\xb1\x55\x5e\xaa\x11\x64\xda\x02\x8e\x6c\x22\xe9\x60\xdd\x2b\xfc\xc1\x38\x0f\x00\xdc\x27\x44\xa5\xcc\xad\x32\x50\x08\x71\x36\x94\xf9\x0a\xca\xe0\xa6\xe2\x75\xfc\xa2\xb4\xf0\x02\x07\x5e\xff\xfe\xd5\xb9\x2f\xb8\x2f\xc3\xe3\xf5\xf9\xdc\x79\x81\xd1\x9a\x85\x9c\x03\x2b\x5b\x95\x47\xd9\xfc\x05\x01\x52\x2a\xcb\x68\x7d\x5b\xb8\x9b\xa9\x03\x00\xee\x5a\x46\x9f\xe4\x70\x45\x93\x9a\xc1\xd2\x96\x9a\x54\x66\xd0\xb8\xa2\x0a\x45\xd6\x91\xa1\x7c\xaa\x6c\x28\xfe\x72\xee\x62\xe9\xdc\xdd\xf3\x75\x8f\xc4\xd9\x9b\x23\xb2\x53\x85\xff\x56\x7c\x52\x98\x04\x5e\xce\x57\x25\x75\xbc\x50\xeb\x21\x81\x84\xb3\x12\xd8\xca\x39\xc4\x0c\x10\x89\x2b\xd2\xf2\x05\xe4\x95\xd2\xcd\x46\x07\x3a\xb5\xc8\x37\xe7\x69\xea\xa6\xbc\x3f\xba\xa8\xb8\x43\x86\x8a\xec\xab\x61\x8f\x75\xbb\x55\x09\x9b\x36\xa8\xef\xcb\x6f\xac\xb0\x51\xd8\x4a\xc7\x38\x6f\x90\x38\x88\xc6\x59\x97\xf0\xbf\xf1\xfa\x80\x2a\xf6\x29\x56\xb6\x10\xa8\x58\x60\xda\xca\xf0\x29\x35\x2f\x0f\xa6\x0e\x14\xbe\x2d\x59\x76\xa8\x3d\xaf\xa4\xe0\x4b\xec\x30\x43\xa0\x31\x77\xa7\x56\xfb\x26\x67\x4d\xc0\x3c\x75\xaa\xa6\xda\xdb\x5d\x5e\xa4\x3c\x3d\xdf\x28\x2e\x96\x16\x59\x47\xf3\x09\xe1\x74\xe0\x15\x3b\x84\x5d\x2b\x98\x53\x31\xb1\x2e\x90\xc8\x2c\x79\x57\x3d\x82\x0a\x14\x0e\x55\xa8\x0e\x8d\xcb\xc3\x4a\x87\xc7\xc4\x18\x66\x14\x86\xec\x1c\xad\x6d\x35\x82\x1b\xcb\xd5\x4b\xf5\x29\x5e\x43\xf2\xc4\xec\xe1\xf3\xf7\x89\xe3\xe5\x41\xd6\x5b\xf9\xbe\x22\xfb\x61\x13\xd9\x63\x38\xd3\xf9\xb1\xe5\x9f\x9b\x54\x78\x4f\xc9\x50\xbd\x35\x25\xbc\xd0\x50\xbd\x3f\x25\x23\x6f\x73\x85\x24\xfa\x5e\xce\xdd\x12\xd6\x0e\x95\x36\xb3\x20\x64\x63\xa0\xea\x85\xe1\xb4\x17\x43\x6e\xad\x79\x3a\x7f\xa9\xd8\x4a\x51\x64\x1d\xc1\x7b\x26\x7a\x3a\x6c\x0b\xab\x8a\x13\xc4\x18\xde\x9e\x42\x79\x4d\x2b\x6a\xe6\x51\xc3\x52\x65\xf5\x26\x6a\x67\xfc\xa9\xea\x46\x5a\x50\x78\x4a\x85\x8c\x3e\x36\x98\x52\xe2\x47\xff\xec\x8b\xe4\x57\x43\x96\x8b\xcd\x72\x3a\xe0\xdd\x8e\xd3\xb2\x11\xa4\x7b\x3c\x24\x7b\x89\x59\x03\x80\x70\x37\xd6\x48\x9c\x68\x37\xa3\x7b\xd2\x8e\x36\xbb\xd0\x29\xa9\x09\xf5\xbb\xe8\x4d\xf1\x79\xd5\x89\xe0\xe4\xf0\xf5\x15\x81\x60\x6e\xf0\xf6\x12\x00\xda\xed\x1b\x9d\x9f\x0e\xaf\x5c\xf4\x3a\x47\x80\xf8\x3b\x8e\xca\x0e\x47\xe3\xc6\x33\x64\x67\xb0\xa3\x00\x20\xf4\xc1\x06\x09\x66\x9b\x0e\x32\xd0\x3c\x9b\x86\xa0\xb6\x54\xf7\xba\xdf\xd0\xa5\xf8\xc3\xd5\x53\x60\xb3\xf0\xa9\xe5\xbf\xe1\x7d\xc1\x0b\x8a\x9b\xe0\x67\xbe\x3e\xf9\x2e\x88\x72\xd1\x95\x9c\x2d\xe8\x5e\x87\x9f\xd9\x8e\x98\xf7\x78\xbe\xcc\x80\xfd\x01\x00\xe1\x24\xdc\x1c\x37\xb5\xfe\xc0\x9b\xa8\x68\x93\x33\x9e\x7e\x58\x59\x17\x8e\xbb\xc5\xbd\xae\x3a\x82\x5b\xee\x2e\x2f\x8f\xc0\x27\x07\x0d\x15\x4f\xc4\x7d\x7d\x3e\xe4\x71\x71\xde\xa2\x32\x7d\x27\x7e\xc3\xe1\xa1\x5a\x4d\xb8\x8f\xaf\x94\x4d\x27\x92\x01\x40\x20\xc2\x9f\x63\xed\xad\xfb\x58\x6f\x29\xea\x46\x39\x2b\xe9\x50\x5d\xed\x00\xf3\x7e\xdc\x72\xd3\x0d\xe6\xe1\xdd\x33\xca\x7a\x98\x93\x83\xb6\x15\x65\x91\x37\x7c\x64\xc6\x57\x64\xdd\xa2\x83\xfa\xe9\x24\xcb\xe1\x82\xea\x1d\x19\x3e\xfe\x82\x34\x93\x1c\x06\x00\xfc\x47\xc4\x5b\xf4\x72\xcb\x6d\x41\x6e\x56\x45\xe3\x18\x7e\x6f\xca\x85\xda\x25\xbc\x1b\xb1\xb8\xc9\x8f\x37\x6e\x17\xb7\x6c\x2e\x37\x30\xf0\x4a\xe1\x35\x4e\x8e\xcf\x42\x63\x20\xfb\xe7\x22\x57\x5d\x2a\x7b\xb3\x43\x8f\xca\x97\x25\x1b\xff\x47\xd2\xcf\xd4\x02\x00\xdf\x95\xf1\x12\xc9\x69\x09\x56\xd6\x65\x92\x0d\xd1\x8a\x85\x07\x5b\x6a\xa8\xb2\xaa\x98\x94\xca\x2c\xa9\x5b\x18\xbb\x34\x48\xdc\xba\xf9\x5b\xc1\x57\xd1\x8e\x35\xac\xdc\xfd\x82\x37\x0b\x7b\xb4\x5c\x7e\xb2\x43\x9e\x32\x82\x7b\x76\xc2\x4a\xf1\x3d\xf6\x0b\x00\xe0\xad\x64\x6e\x83\x43\x9b\xf3\x72\x17\x64\x84\xd6\x9f\xca\x99\x72\x20\xaf\xfa\xb5\xf6\x5b\xf4\xf6\x8a\x6b\xd9\xd5\x3b\xe9\x25\xb9\xaa\xb4\xcd\x96\x05\x1b\x15\x6b\x57\x0f\x1a\x1a\xa4\x7f\x17\x7a\x69\xae\x88\x85\x0e\x71\x8a\x52\xc1\xe7\x09\x5b\xc5\x6e\xbc\x91\x00\xc0\x65\xb2\x52\xa1\xe9\xcd\xcb\x4b\x23\xd3\xe7\xd7\xef\x2b\x3a\x99\x4c\xaf\xa6\x17\x58\xee\x5b\x53\xb1\xd7\x68\xb3\x83\x5e\x32\x23\xc7\x76\x93\x6b\x7e\xa7\x76\xc6\x6a\x4b\xc3\x3c\xd5\x77\x8f\x1a\xcd\x3a\xb9\xc2\xc1\x4e\x31\x59\xfc\x7d\xc2\x36\x51\x3e\xff\x0d\x00\x70\xbe\xb3\xb7\x82\xc2\xa6\xbf\x95\x0f\xd3\x74\xf5\xce\x65\xaf\x93\xde\x57\xaf\x2f\xbe\x14\xd5\x57\xe1\x54\x20\xd9\x31\xaa\xf8\x86\x71\x45\xc0\x89\x7c\xaa\xfe\xda\xaa\xee\x9c\xfb\x9a\x00\x0f\x5a\xf6\x57\xe5\x21\x87\x11\xf2\x13\xd2\x9d\x13\x76\x8b\x76\x0b\xba\x00\x80\x53\xcb\xd6\x81\x13\x9a\x7a\x6b\x8e\xa5\x39\xd5\xbd\x32\xd1\x92\x90\xea\x11\xe5\x96\x51\xe1\xe5\xb7\x8b\x05\xa1\x95\xc5\xfc\xfc\xe7\x01\x48\xfe\x9c\xdc\x45\xab\x78\x39\x5c\xdd\x3a\x8f\xf0\x6c\xbd\xea\xb7\xc3\x48\x79\xb2\xec\xc8\x04\x8a\xf0\xa7\x70\x2f\x00\x70\xb6\xb3\x5b\xe8\xeb\x7a\x1d\xa8\xe7\x8e\x4e\xeb\x1c\x4e\x73\x4c\x0c\x6d\xb9\x43\xcb\x8a\xbc\xdf\x20\xa4\xbd\xdf\x3e\xbc\xc6\x8c\x9e\xbf\x41\x5d\xe1\x07\xb2\x56\x6c\x29\x5e\x08\x69\x5d\x4d\xc6\x3a\xf8\xae\xdd\x35\xed\x53\xd4\xd7\xc2\xa4\x28\xc7\xd2\x00\x40\x14\x8a\xfd\xa6\x3b\xf6\x74\x82\x66\x47\x7e\x76\x14\x83\x6e\x89\xde\x2d\x0c\x30\x22\xf2\x64\xc3\x4a\xb0\x78\xdb\xab\xea\x16\xc8\x69\x03\xa3\xfc\x27\x74\x65\x85\x4f\xd1\x1b\xb8\xde\xb5\xc4\x08\x21\xad\x76\x57\xb4\xed\xe8\x55\x8b\x5e\x05\x89\xf5\x00\x80\xc8\x1b\x1f\x45\xfb\xd6\x13\x01\x87\x1d\xb9\xd6\xb1\x01\x8e\x4c\x9c\xda\x32\x0f\x8e\x8b\x2c\xab\x7f\x0c\xa3\xdb\x2e\x54\x27\xc0\x67\x37\x1c\x2c\xaf\x40\xb6\xad\x70\x2d\xca\x43\x7e\xba\x1a\x8c\x5e\x68\x9f\xdd\x15\x2d\x82\x19\x2c\xce\x29\xb6\xe2\xeb\x00\x40\x34\x0a\xdf\x40\xdb\xd8\xdd\x46\x38\x1d\x59\xd3\x5e\x80\x5f\xdc\xaf\x6c\xc6\x70\x46\x64\x60\xbd\x17\xbe\x67\x1b\xbb\xaa\x05\xdf\xb3\xc1\xa5\xec\x37\x4e\x7a\xff\x2a\xfc\x88\x9f\x76\x95\xe4\xea\x08\x5b\xbb\x8b\x9a\xc7\x04\xcd\xe2\xb7\xbc\x9b\xd0\x02\x80\x90\x42\xd8\x50\xe5\xdd\xe3\xd9\xf3\x53\xf9\x6d\xdf\x59\xda\x84\x47\x4d\x57\x59\xe3\xf6\x9c\xae\x13\x31\xa5\xdb\x5c\xaa\x26\x30\x97\xf9\xdf\x2b\xdb\x4e\x7e\xf5\xee\x2f\xdc\x40\x5e\x70\x4d\x35\xbc\x20\x2b\xed\xce\x6a\x96\x90\x1c\x4b\x17\xf9\x78\x72\x26\x00\x08\xfa\x18\xd6\x94\x9e\x2e\xba\x20\xf7\xf0\xe9\xb6\x08\x7e\x73\x82\x67\x93\x0b\xef\xdc\x9e\x80\xda\x07\xdc\x5f\x5b\x4f\x9b\x12\xb9\x6b\xfc\xa5\xa5\x85\x1c\xb1\x37\xbf\x40\xc9\x7e\xe7\x1a\x64\x58\xca\x0e\xb2\x1b\xca\xa6\xb3\x72\x2d\x23\x65\xbb\x98\xf9\x00\x20\x18\x46\x8e\xca\xfa\xd8\x79\x42\x39\xf7\xd0\x8f\xd6\x6c\x79\x45\x7c\x42\x63\x84\x6c\x61\x44\x5a\xcd\x5f\x49\xfd\x96\xdf\x95\xe9\xe2\xa0\xf5\x8f\x4b\x2a\x84\x6f\xbd\x2d\xf2\xb5\x02\x95\xeb\xd8\x1c\x6f\xbe\xb3\xdd\x2d\x35\xc2\x2d\xb5\x6c\x97\xc6\xb0\xcf\x01\x00\x7f\x18\x73\x6f\xe6\xed\xce\xe9\x06\x9b\x43\xa3\x5b\xde\xe8\x47\xc4\xc9\x1a\x6a\x35\xcf\xc3\xc5\x35\xfe\xea\xba\x2d\xb3\x2a\x4c\x4a\xe1\xfa\xf9\xc5\x0f\xe5\xa9\x5e\xb4\xbc\xf3\xd2\x8d\x2e\x95\xfa\x23\xa2\x1f\x76\x6d\xaa\x76\x01\xdb\xf2\xa9\x24\x9f\xdb\x0a\x00\xbc\x75\xac\x84\x8c\x37\x1d\xa2\xe2\xb2\x94\x59\x2d\xfb\x0b\x27\xc5\x36\x34\xcc\xc9\x4b\xdc\xdd\x5e\x5d\x6b\x60\x87\x84\x57\x58\xe9\xca\xd6\xa1\xc5\xeb\xb2\x87\x96\x7f\xcf\x5b\xa4\xbc\xec\x12\xae\x3b\x2d\xcb\xb7\xab\x51\x59\x8b\xd7\x58\x8d\x97\x8c\xe6\xa7\x00\x00\xb7\x86\x3d\x2f\x83\xec\xd8\x52\x7e\xe5\x60\x5b\xcb\x9c\x92\x87\xb1\x3b\xea\x1f\x16\xde\xde\xbd\xa7\x3a\x39\xaf\x2a\x04\x28\xef\x35\x40\xeb\x96\x15\x7d\xd0\x6d\x58\x7e\xcc\x78\x5f\xfd\xca\x65\xb9\x8e\xaa\x08\xb2\x33\x29\x8f\x49\x28\x56\xb3\xc5\xed\x82\xd9\x00\xc0\x4d\x60\xc7\x67\xcc\xe9\x18\x53\x15\x79\x30\xa6\xf9\x56\x85\x43\xcc\xf7\x7a\x65\xc9\xe9\xdd\x96\xd5\xd6\x85\xf1\xc1\xed\xe5\xfb\x8d\x4f\xd7\x0d\x2b\x52\xe6\xc4\x2e\x2f\x34\xe2\x9a\x3a\x17\x17\xdd\x64\x65\xb5\x5d\x87\x32\x46\x7a\xc4\x2a\x44\x1c\x2e\xa8\x04\x00\xee\x08\x76\x56\xfa\xac\x81\x4b\xb4\xe7\xc9\xef\x7b\xb5\xf4\x29\xd1\x91\x9d\x6b\xe9\x5b\xc2\xe6\xb6\xd4\xd0\xab\x02\xf5\xf5\x37\x40\x7f\x5f\x7d\x55\x27\x34\x7d\xe9\xf3\x32\x5f\x78\xe6\x7c\xcb\x82\x8d\xc8\x4e\x9b\xb5\xfa\x7f\x68\xc5\xb8\x83\x2a\x77\xac\x16\x00\xc4\xf3\x70\xe7\xf4\xa9\x03\x19\x90\x55\xf2\xf7\xde\xe5\xd0\x94\xe8\xed\x1d\x8f\xa1\xd9\x61\xf6\x2d\xe1\xd0\xf6\x40\x65\x3d\x07\x6a\xf6\x55\x54\x1d\x85\x23\x96\x3e\x2c\xfd\x8e\x2c\x98\x6f\x55\x60\x85\x3a\xd9\xac\xd5\x9f\xc7\x3c\xc7\x31\x54\xc3\xb1\xaf\x00\x20\x1e\x8d\xbb\xa5\x8f\x1e\x98\x8c\x84\x26\xbf\xe8\xb9\x8a\x2c\x8d\xf6\xef\x60\x20\xb6\x61\x56\xcd\xbf\x91\x19\x81\xdc\x7a\x77\x24\xd4\x97\x5f\x35\x1d\x19\x5c\x7a\xa7\xb4\x10\x8d\x9f\x6f\x99\x7f\x1c\x9b\x65\xb3\x56\x2f\xc6\xde\x8f\x13\x29\x4f\xe2\x47\x00\x40\x74\x11\x8f\x4b\x4b\xef\xcf\x20\xee\x26\x1f\xe8\x59\x48\xa4\xef\xbb\xdc\x7e\x95\xb0\xda\x79\xaa\x79\x03\x7e\x21\x30\xb2\x2e\x0b\xef\xf1\x4d\x30\x45\xe1\xb7\x96\x1e\x2b\x79\x4e\x4c\x9b\x3f\x2e\xdf\x89\x88\xb7\x59\xa7\x7b\x41\xb4\x8e\x6b\x57\xba\x11\x2d\x00\x20\xf2\x22\x3c\x8e\x7e\x3f\xd6\xcc\xee\x48\x7a\xda\x7d\x94\x6d\xbd\x6f\x5b\xfb\x44\x56\xe6\x4e\x6a\x13\x97\xf9\x34\xd0\xbd\xb6\x8b\x89\xfa\xfa\x55\xe6\x33\x97\x2c\xad\x2e\x71\x61\x0e\x9b\x6f\x96\x17\x4b\xde\xb2\xd9\xaa\x9b\x4f\xd6\x8f\x7b\xaf\x48\x23\x17\xff\xdf\x05\xc3\xe5\xe8\xe2\x63\xe3\x84\xc3\x92\x36\x77\x35\x0b\x86\x47\x9d\x6b\x0b\xe6\x5b\xec\x74\x6a\x3c\xc9\x9b\xb7\xf9\x5f\xed\x30\x6e\xb4\xaf\x7d\xc5\x03\x4e\xe1\x52\x4d\x71\x32\xfb\xf7\xbc\x3f\x46\x2d\x3b\xd2\x26\x41\x1b\xc3\x6a\x30\x77\x96\x57\x31\xcb\x00\x40\x60\x22\x1d\x8f\x9c\xec\xf3\x50\x9a\x27\x9e\xe9\xbc\x24\x67\x47\xf9\xb7\x46\xc9\x86\xef\xe0\x36\x1c\x97\x60\x9b\xa3\xab\x3f\x88\xa7\xf9\xe4\x96\x9f\x15\xb6\x2c\x5d\x5f\x14\x2a\x88\x9d\xf7\x5f\x2e\x87\xf7\xcf\x86\xaf\x09\xe5\x72\xcd\x65\xb2\x12\x76\x3d\x00\xf0\xf3\x99\x09\xa9\x8f\x7a\xa9\x39\xec\xc4\xc9\x9d\x93\x74\xd1\x7b\xeb\x5a\x94\x1a\xef\xd0\x3b\xf5\x6f\xd4\xa3\x36\xd5\x56\x5b\x28\x5e\xfa\x58\x94\x3d\x97\x5d\x59\x72\xa3\x30\x55\xd2\x36\xaf\xdc\x50\x22\x62\xd8\xc8\xb3\xe9\x82\xf9\xe6\x37\xa4\x37\xb8\x14\x00\xe0\x5d\x63\x85\xa5\xfa\xf6\x0c\x14\x61\xfb\x69\x1d\x89\xf9\xd7\xf7\xda\x37\xbf\x30\xce\x0b\xdd\x5c\xbf\x22\x67\xcb\x26\xc7\xaa\xed\x5a\x7c\x8d\xae\xcc\x43\xdd\xba\x44\x50\xd0\xa6\xb8\x3f\x8f\x97\xf3\x4a\x7a\xc5\xc6\xa4\x3e\x2e\xd2\x5a\x4c\x95\x2e\xe1\x7d\x03\x00\x9e\x0f\xeb\xd7\xe1\x6f\x3d\x50\x59\xe8\xfe\x25\x1d\xd3\x8a\x77\x45\xde\x68\x56\x15\x6c\x0b\x1d\x5d\xf7\xd8\xb8\x30\xe0\x81\xe9\x73\x8e\xd5\x9a\x83\xa5\x97\x34\x5f\x96\x1c\x2e\xd8\xa7\x3a\x36\x0f\xcf\x11\xca\x43\x6d\x06\xd5\x87\xc4\xb5\x16\x6b\x24\xf7\xf9\x5a\x00\xe0\xbe\x67\x2f\x3a\xdc\xd4\xe3\x5a\xc9\x4e\xf8\xda\xde\x57\xb6\x31\x32\xaf\xd9\xbb\xe8\xfb\xf6\x4b\x75\x58\xbe\x2e\xa0\xc1\x24\xc8\x5d\xb6\x26\xb8\x34\x59\x77\x6d\xc9\xfe\xfc\xaf\xd9\xbb\xe6\x09\x72\x66\x29\x78\x36\x2f\xd5\xc3\x24\x3c\x0b\x8a\x84\x2e\xb0\x04\x00\xae\x88\xbd\xfa\x85\x04\xd4\x53\xac\x6f\xe6\x81\x0f\x28\xca\x53\x65\xd0\x7c\xaa\x55\xab\x08\x4a\xa5\xc2\x25\x05\x50\x17\xcd\x52\xd1\x0e\x4f\xa4\xbd\xc2\xec\xe0\x4c\xfa\xd3\x64\x47\xf8\x0f\xf8\x7d\x4b\x3c\xa2\x86\x27\x2e\x5a\x87\xfa\x22\xcb\x2d\x9e\x63\x33\xd0\x65\xcf\x4b\xe8\x2f\xe8\x1d\x37\x9a\x41\x3f\xfa\xe3\x93\x37\x41\x25\x38\xab\xe5\x18\xf8\x0c\x0c\x29\xbe\x03\x05\x80\xd9\x8a\x51\x50\x39\xb4\x00\x85\x61\x3b\xe8\x5a\x92\x00\x6e\x82\x45\x21\xa7\x91\x3d\x48\xf0\xc2\x93\xa8\x0d\x3a\xd5\x22\x1b\x33\x43\x0b\x9f\xd5\xd1\x7d\x11\xe4\xfa\x00\xbd\x18\xd9\x79\x72\x38\x68\x86\xec\x6c\x7e\x03\x26\x22\xab\x8a\x27\x83\xe7\x11\x7f\xf9\x76\x68\x35\x22\x40\xee\x40\x1d\xc8\xf3\xc4\xdf\x70\x1c\x1a\x18\xb2\x0e\x99\x8a\x56\x2e\x8c\x47\x1e\x62\x93\x2c\xa2\xd1\xfb\xd8\xc2\xc7\xe5\xb4\x19\x2c\xfb\xab\x33\x69\x4c\x66\xfa\xa0\x82\x3e\x82\x7c\xd0\xf8\x88\x7e\x98\x0c\x2c\x0c\xa7\xff\xc7\x38\x2d\x3d\x03\xc6\x30\x30\x58\x06\x7e\x62\xf8\xee\xbf\x03\xd5\x11\xef\x82\xfd\x61\x0e\xa1\xf2\x38\x83\xc4\x13\x2b\x2c\x5c\x51\x08\xa7\xfc\xf7\x98\x72\x46\xf8\xf5\xe2\x0b\xea\x1e\xc1\x95\x63\x38\xf5\x25\xbf\xae\xde\x93\x96\xc0\x53\xe5\x8f\xa0\xbd\xe2\x0a\xc5\x57\xe8\x18\xa7\x18\x7c\x0d\x2e\x60\xf7\x24\x08\xc1\x9f\xac\xa1\xa0\xed\xd0\x7f\xcc\x1e\x0f\x6f\xf8\x3c\x29\xb6\xb0\x45\x7e\x11\x37\xee\x2e\xcc\xaa\x51\xc9\xce\xa1\x94\x20\xc5\xe3\x9e\x12\xca\x0b\xb9\x4b\x4d\x35\x35\x4d\x4a\xcf\xbd\x44\x1b\x29\xbe\x2a\x7c\x4b\xab\x11\xad\xa5\xef\xa6\x1f\x14\xe4\xc7\xef\x00\x37\xf3\x3e\x05\xd2\xa1\x95\xdc\xd9\xee\xed\xb0\x2f\x7b\x98\xc5\x7c\x84\x46\xae\xbb\x71\x2d\xd3\x54\x58\x3c\xd4\x9d\xe5\x99\xef\xd4\x39\x29\xab\x2f\x57\x6f\xca\xa4\x84\xe9\x9f\xeb\xdf\x50\xbe\x69\x17\xf3\x0f\x51\x4d\x6a\x90\xba\x82\x06\x2a\xf2\x62\x75\xf4\xc3\x52\xe3\xe6\xc5\xe0\x51\x51\xb4\xfb\x38\x88\xc3\xeb\xb3\x58\x02\x5f\x67\x45\x5e\x3d\x90\x51\xd6\xa0\x3b\x11\x9e\x19\x54\x73\xb6\x6d\x72\xe6\x67\xd3\xaa\x72\x53\x96\xa0\xec\xb0\x36\x8e\xb2\xb8\x88\xcb\x75\xa2\x7c\xcc\x13\x66\xf9\x50\xcf\xe6\xec\x8c\xfe\x49\x3b\x9d\x7d\x25\xe0\x05\xfd\x81\xfc\xa7\xdb\x76\x68\x9c\xa8\xc9\xc2\x05\x4e\xe1\xa4\x5e\xd2\x66\xc4\xf7\xcf\x1d\xb8\x92\xf1\xb3\x5b\xd5\x0c\x66\x8a\xdb\x5e\x97\x7a\x65\xcd\x6b\x9a\x90\x3d\x39\xeb\x74\xed\x30\xf6\x48\x8a\xa4\xe2\x78\x46\x24\x35\xb5\x78\xc9\x3e\x9c\xb6\xd7\xe8\xb8\xf1\x1d\x3d\x41\xa3\x72\x3d\x06\x16\xc8\x18\x16\xf3\x60\x5b\xde\xea\x8b\xf2\x0c\xdf\x21\x6a\xff\xf5\x8c\xeb\x83\xcc\x26\x38\x33\xa5\x37\xb9\xc4\x27\xf3\x57\xc7\x38\xb5\x73\x56\x4e\x53\x2a\xcb\x95\x12\x55\x93\x93\xae\xa3\xae\x2e\xdf\x17\xf5\x94\xe6\x58\xc0\xda\xa8\xa1\xdb\xea\xed\x5d\x75\x60\xac\xc2\xc9\x62\x3d\xf4\x90\x77\xf3\xc2\x95\x0c\xfb\x0b\x97\xfa\x6d\x32\xea\x4e\x8b\x1b\xbb\x33\xd7\x1e\x9f\x52\xcc\xce\x3c\xde\xbb\x49\x45\xcf\x8a\x69\x5f\xc8\x14\x50\x66\x34\x5c\x4a\x1f\x4f\xf9\x6c\xfa\x1a\x25\xa1\x9e\x2c\x8e\xdd\x98\x4e\x6b\x33\xcc\x73\x2d\x02\x87\x2b\x83\x2c\x24\x10\x97\x6f\xf5\x78\x14\xfc\x3d\x4b\x76\x25\x17\x19\x43\xb1\x1d\x9c\x86\xd8\x52\x0a\x1b\x0f\x23\x4b\xa8\x0e\x05\x1f\x90\x1d\xd4\x76\x69\x3a\x92\x45\x2b\x80\xfd\x90\x42\x7a\xc5\xfe\x0e\xe4\x1d\x38\x14\x1c\x8f\x6e\x84\xbe\x79\x3c\x43\x1b\x11\x3f\x8b\x48\x6c\x13\xba\xf5\x91\x15\xbc\x87\x6e\x7b\xb9\x0e\xa6\xd1\x77\x0d\xf8\xc2\xd9\xf4\xbc\x06\x3d\xdc\x4e\xbf\x55\x60\x03\x3f\x07\x97\x48\x6a\x90\xe9\xe0\x65\x48\x82\xec\x86\x24\xfb\xc7\x23\x4d\x70\x78\xd0\x29\xd4\x11\xf1\xf0\x88\x42\x35\xe8\x14\xf3\xef\x98\x1f\xda\xf9\xd0\x0a\xea\x83\x8f\x5f\xea\x80\x5e\xc0\xf5\xfd\x31\xf0\x24\xb8\xa7\xbe\x1d\x5e\x03\x77\xe4\x6f\x86\x33\xe0\xab\xe2\xf7\x70\x0d\xe2\x06\x3e\x81\xff\x20\xfa\x04\x2e\x12\x87\x5a\x06\x6d\x45\x6e\xa3\x5c\x0f\x33\x34\x1a\xb3\x34\xbf\x88\xd9\x60\x01\xf7\x47\x83\x3c\xa6\xcf\x85\x99\xe0\x49\xb2\xa6\xf7\x0b\x34\x8a\xf4\xa8\x6d\x84\x36\x30\xca\x8c\x79\x90\x88\xb1\x5a\x94\x06\xdd\x61\x0c\xa3\x57\xc2\x2b\x89\x1b\xf1\x07\xe0\x0e\xa2\x30\x30\x1a\x09\x26\x0e\xb9\x1f\x42\x9e\x13\xee\xe6\x05\x68\x0b\xce\xbf\x5d\x4b\x3f\x24\xf8\x74\x76\x1a\xbd\x8d\xff\xa1\xdb\x12\xb4\xe4\xbd\xa8\x5e\x0e\x6e\xe5\x3e\x32\x50\xc0\x1c\xce\x3b\x41\x19\xf8\x8b\x33\x8b\xe6\x0a\x1d\x66\x6f\x8f\xf3\x81\xcd\x58\x94\xcd\x14\xb8\x94\x29\x70\xfb\x84\x84\x91\x74\xf3\x12\x74\x05\xf1\xec\xfa\x4f\x5a\x9a\x92\x76\xea\x3c\xed\xb8\xfc\x79\xc7\x5e\xba\xbb\x2c\xb0\xf2\x3c\xfd\xa8\xa4\x5a\x1f\x41\xef\x13\xcf\xe4\x5d\x03\x17\x0b\x8b\x28\x45\x60\xa3\x60\x56\xac\x15\x14\xc6\xe3\x6d\xaa\x84\x47\x70\x2e\xbb\x71\xe0\x01\xd6\x5d\xf3\x7e\xa4\x89\x0c\xb9\x7c\x82\x1a\x5c\xb0\xfa\xb8\x03\xb5\xcc\xf8\x5f\xcb\x7d\xda\x58\x03\x58\x56\x44\x8b\xd0\x3d\xd2\xe0\xb4\x36\xcd\x26\x4e\x24\xdd\x4b\x55\x9b\x29\xa2\x0f\xc9\x7f\x44\x1f\x00\xe9\xd2\x99\x01\x04\xb4\x5c\x34\xd2\x6d\x24\x3c\x92\xa7\xb2\x18\x8e\x8c\x61\x45\x5f\x38\x48\x49\xaf\xbb\x7b\xec\x22\xe5\x5c\xf5\x9a\xc6\x37\xd4\x95\x15\x17\x8a\x1f\x53\x95\xa5\x73\x55\x5f\xa9\xbf\x0b\xe3\x59\xd6\x34\xa6\x51\x94\xae\xa2\x3b\xe9\x91\xa8\xf3\xf4\x5b\xd9\xee\x1b\x03\xc1\x52\x39\xe9\x1a\x0d\x91\xa2\x74\x8b\x09\xb0\x8a\x93\x70\xb6\x8d\x32\xbd\xcf\xaa\x37\x92\x92\xd6\x59\x5b\xbf\x9f\x72\xa6\xd5\xbb\x10\xa7\x2e\x68\xe0\x28\xba\xa8\xca\xea\x32\xd2\x9c\x66\x5f\xae\x39\x3a\x48\xeb\x29\x5a\xb4\x77\x2f\xfd\x60\xee\xb6\x0d\xdb\x40\xf7\xec\x5f\x2e\x57\x21\x1b\xd9\x3c\x8b\xc9\xf0\x5a\xde\xec\x33\x15\x59\xef\x4f\x2e\xef\xd9\x4b\x09\xea\xa7\xd6\x25\x51\xf2\xbb\x85\x05\x42\xca\xaf\xb6\x78\xf9\x15\x6a\x62\xc3\x6f\x86\x37\xf5\x45\xf5\xee\xa3\xa3\x68\x82\xb2\x80\xc8\x13\x74\x8f\xfc\x22\xff\x4f\xf4\x67\xba\x0c\x17\x13\x78\x4b\xde\x61\xb1\x18\x1e\xc9\xeb\x38\xfd\x20\xeb\xf4\xb9\xd4\x6e\x0d\x65\xd6\xa9\xe8\xda\x32\xca\xd1\x01\x9b\xfc\x1b\x94\xfe\x6e\x81\x7c\x31\x75\x5e\xab\x89\x30\x52\x8b\xeb\x91\x23\x6c\x9a\x6f\xe5\xc5\xc8\x83\xb4\xeb\x45\x47\xfc\xcf\xd1\x99\x39\x19\x2e\x75\x20\xa2\xb8\x6f\x81\x40\x15\xbc\x77\xf7\x02\x30\x6a\xd6\xe4\xf3\xf1\x58\x58\x56\x69\x6f\x30\xe6\x4d\x59\x59\x3b\x03\x9b\x4d\xe9\xc8\xfd\x8b\xcd\xa0\xc6\x0a\x9f\x62\x16\xb4\x1d\x74\x07\x6c\x2c\x7d\x7f\xbc\x39\x66\x07\xca\x03\xe7\x61\xcb\xa0\xf3\xee\x81\x58\x1c\xb2\xc4\x5c\x81\xb5\xa2\xbb\xef\xae\x47\x5f\xd0\x98\xe7\x32\xd1\x4b\xb4\x33\x3d\x29\xe8\x31\xba\x63\x8d\x37\x5a\x4f\x4f\xcc\x9d\x8d\x36\xd2\x2f\x09\xed\xd0\x26\x10\xa2\xed\x47\x07\xa0\xf5\x71\x49\xe8\x43\xd8\x66\xb3\x0e\xb3\x82\xff\xb9\x0d\x62\x1b\xd0\x61\xe6\x4b\xb1\x1a\xb4\xfb\xce\x6a\x34\x01\xb6\x3e\x4b\xa0\x3b\xe1\x89\xdd\x4c\x74\x2b\xec\x56\xbd\x1b\xf5\x85\x57\x18\xfc\xd0\x60\x38\x4e\x90\x88\x86\xc2\x27\xa9\x55\x28\x05\xf1\x8b\xbd\x8b\xea\x90\x13\x9b\x7e\xa3\x77\xd1\x9d\x6e\x11\x98\x2d\xfa\x75\xdc\x3d\x4c\x85\xf9\xdf\x5c\x88\xd8\x92\xf1\x43\x8f\x91\x25\x8c\xb7\x9d\x36\xc8\x12\x06\xdd\xb4\x17\x09\x66\x0c\xd3\x17\x20\x87\x88\x52\xde\x53\x44\x40\x60\x14\x10\x69\x23\x12\x63\x86\x90\x2f\x44\xe0\x26\x57\x34\x90\x58\xe4\x7a\x1f\xcd\x27\x2c\xc7\xdd\xc4\x16\xe1\xac\x6b\x01\xf0\x42\xfe\xc7\x93\xe6\xb0\x0f\x7f\x7c\xdb\x3e\x38\x92\xe7\x58\x61\x06\xc7\x71\xdd\xb4\x85\x30\xc1\x09\xe6\x7a\xc1\x55\x6c\x69\x96\x13\xfc\x82\x75\x3d\xba\x1a\xf1\x65\x4d\x0d\x38\x8c\x14\x32\x37\xbb\xb2\xd0\xf1\xe4\x4e\xf3\x49\x68\x25\xf1\xe4\x92\x1c\x0a\x57\xc4\x0d\x3c\x83\x0e\xca\x5e\x35\x5f\x83\x72\xa4\x89\xa5\x4d\x50\xb6\xf8\x6e\x76\x0e\x54\x2b\x8a\x66\xd3\xa0\x57\x82\xbf\x19\x95\xb0\x37\x5f\xb9\x8f\x05\xeb\x78\xb6\x1b\xf3\x91\x51\x1c\xa6\xab\x3d\x82\xb3\x6a\xcd\x17\xa0\x2e\xe4\x86\x73\x4c\x70\x62\xde\xe5\xbe\x10\x70\x63\xae\xae\xe1\x28\x08\xe7\x84\x15\x69\x41\xae\xf6\xba\xf2\x2c\x58\x9f\xbd\x9b\x39\x12\xfc\xa9\xbc\x97\xa6\x85\x76\xca\x37\xee\x7d\x05\xf5\x49\x64\x1b\xf8\xb0\xb7\x30\xcf\xa5\x12\xee\xe3\xed\x31\xc7\x10\x3a\x2b\xf4\xb4\x17\x3d\xae\xd6\xbe\x7b\x12\x1d\x32\x95\xd5\x0a\xe9\x35\xe5\x31\xf9\x77\xe9\x67\x8a\xaf\xca\x03\xe8\xbf\x0b\x3c\x89\x3e\x30\x38\x97\x79\xa4\x00\xac\xd5\x19\x22\x43\xa1\xb9\x6a\xba\x7f\x04\x54\x2e\x1f\xe6\x32\x09\x5e\x25\x72\x30\x57\x23\xc3\x38\x01\x27\x8b\x69\x5f\xba\xdf\x75\x54\xd2\xad\xdb\xfb\xab\x2d\xe9\x5e\xcd\x54\xa3\x84\xbe\xb7\xee\xa7\x74\x36\x5d\x5e\xe5\x8f\x9d\xa2\x3f\x2a\xdb\x77\xf8\x11\xb8\xb9\x70\x4e\xc4\x73\xb0\xc9\x40\x59\x1f\x05\x79\x66\xef\x5a\xc0\x85\x2e\x4b\xbb\xcc\x73\xe0\x72\xee\x8f\x13\x12\xda\xe9\xc1\x37\xed\x15\xb4\x17\x7d\xb1\x55\x53\xe8\xa3\x3b\x4b\x73\x8b\xe9\x2e\x2d\x1d\x92\x4d\xf4\xd8\x7a\x26\xfa\x8f\x5e\x5d\x35\xe6\xf0\x22\x70\x62\xa9\x73\xc4\x2e\x90\x9a\xd7\xba\xee\x0f\xf8\x5e\xdb\xbb\x60\x1f\xa4\x94\x6f\x36\x6f\x87\x0f\xf3\x44\xc7\x3b\x68\x05\x67\x80\xb6\xfb\xb4\xf6\x13\xf3\x4d\xbb\x68\x17\x8f\x4d\x31\xbc\xa7\x7d\xec\x3c\x29\x2e\xa2\x3b\xb5\xcc\x42\x0f\xd2\x93\xeb\xec\x0f\xd5\xd0\x8f\x57\x14\x86\xff\x01\x1d\x0a\x29\xeb\xae\x80\x12\x7d\xd3\x82\x58\xc8\x4b\x91\x64\x31\x12\x9e\xc0\x3b\x76\x29\x8e\x79\x29\xe3\xdd\xc0\x21\xe6\xd6\xcc\x9c\xe6\x44\xf2\x78\xd6\x96\x92\xe7\x64\x6c\xd6\x7b\x35\x8f\x1c\x41\x69\x60\xad\x67\x18\xa8\xf5\xe9\xbb\x18\xab\x69\x97\xa3\xe6\x11\xff\x81\x53\x37\xac\x20\xc4\x50\xea\x82\x5a\xc2\x0b\xfe\x3e\x16\x23\xac\xd1\x75\x17\x0f\x30\x43\xa8\x7e\xfd\x22\xf2\x2a\xb5\xba\x89\x47\x86\xd3\x6c\x4b\xac\x19\xff\x68\x98\x6a\x80\x51\x49\x37\x63\x8a\x18\xdb\xe9\xbd\x69\x4d\xc4\x0f\x50\xb7\x57\x4a\xd4\x40\x12\xff\x16\x22\x09\x96\x2f\x70\x21\x66\x23\x7d\x63\x9d\x09\x2b\xb4\xe0\x42\x22\x79\x06\x6c\x38\x56\x42\x46\x83\x0f\x1a\x0b\x19\x2f\x21\xcb\x62\x6f\x46\x2e\xb4\x58\xf9\x8d\xb1\x05\xca\x22\x6f\x10\xbf\xa0\xf7\x69\x93\x88\x1a\x98\xb3\xd7\x9a\x38\x88\xb8\xfa\x2f\x27\x96\x22\xb7\x9d\xaf\xe2\xdf\x51\xd3\x98\x8f\xf8\x07\xcc\xe1\x9c\x35\xa3\x83\x38\xdb\x0b\x33\x62\x08\xb0\xbe\x93\xf8\x43\x2c\x28\x94\x13\x0d\xf8\x75\x05\x83\x48\xc3\x73\x19\x02\xc2\x03\x97\x1d\xf9\x82\x7f\xc4\x55\x91\x0e\xf8\x10\xae\x5d\x4f\xc5\x4d\x78\x89\x73\x12\xce\xc2\x3b\xc7\x0e\xc3\x25\xf8\xde\xd3\xa1\xc4\x7b\xde\xe8\xae\x5f\x04\xc1\x0d\xad\x75\x23\x66\x71\x64\xf9\x61\xf8\x3d\x76\xbf\x4c\x81\x97\xb1\x47\xe3\x8f\xf1\x0c\x56\x6a\xaa\x12\x0f\x60\xde\xde\x63\x81\xcf\x63\x6e\x5e\x37\x80\x5b\x91\x95\xce\xb3\xb1\xcf\x8c\xcf\x63\x7d\xf1\x71\x44\xd3\x89\x47\xf8\x6b\x99\x43\xfb\x37\xdc\x24\xb9\x5d\x75\x12\xdf\x29\x16\x19\x97\xe3\xb6\x22\x4f\x49\x1b\xf6\x4a\xf0\x18\xdb\x8c\x1d\xe3\x57\x1f\x5e\x8d\x15\xf2\xd2\x23\x00\x8c\xc3\x5d\xba\x6e\x1a\x96\xc6\xbe\x3e\xff\x11\x16\xc7\xda\x30\x96\x8d\x31\xc8\xa9\xfd\x7f\xb1\x67\xb9\xde\x2d\x6c\xac\x24\xc7\xb1\x22\x11\xdb\xaf\x03\x72\xe6\x63\x1e\xd9\x9d\xc2\xbf\xd8\x30\x55\x16\xfc\x18\x7d\xa0\xf0\x4c\xf1\x44\xcf\x4a\x6f\xee\x4e\x47\x5b\xc5\x87\xfc\xac\xd0\x32\xc1\xc0\x7c\x1a\x9a\xcf\x3d\x33\xf6\x3f\xf4\x04\xcb\xbc\x97\x8b\xc5\x98\x74\x8d\x1e\xd8\x84\x72\xb8\x94\x8a\xf6\x95\x80\xda\xc3\x28\xaf\x70\x29\x1f\x43\x23\x8d\xd7\xc1\x62\xd4\x2f\x27\xf5\xc0\x5a\xd4\x53\x73\x29\xec\x1a\x3a\x57\x35\xd2\xf7\x19\x3a\x53\xfa\x62\xde\x6d\xd4\x41\x98\x38\xf6\x1d\xba\x85\xfd\xa2\xdb\x0a\x1b\xd6\xfe\xac\xee\x1f\x5a\xd5\xe2\x58\xec\x87\x46\x35\x2c\xcb\x0e\x45\x67\x55\xbf\xe3\xb2\x90\xb7\x15\x30\xed\x32\x72\xa9\xf8\x59\x52\x01\x72\x3c\x7f\xf8\x4e\x26\x52\xaf\x6f\xf6\x79\x84\xd4\xa8\x7e\xcf\xdb\x80\x74\x4a\xae\x8c\xfd\x86\x7c\xe0\x32\xbb\xbc\xd0\x27\x7d\x83\x75\x2e\xa8\xb0\x4b\x5b\x14\x87\x2e\x6b\x5b\xa3\x86\x90\x0f\x8d\x0c\x4e\x1b\xd2\x5e\x23\xa4\x4d\x43\x74\x15\xfb\x13\x7f\x23\xfc\xa2\x07\x3b\xbe\x21\x19\xb9\xd7\x7d\x08\x24\x55\x13\x38\xcf\x1a\x41\x65\x5b\xc7\x4d\x44\x1a\x78\x53\x3a\x0d\xe8\xd0\x89\xe3\xb5\x3c\x34\xa9\x3f\xa0\xb0\x0b\x1d\xd5\x2d\x52\xdd\x46\x5a\xdb\x52\x38\x8e\x08\xbd\x11\xa0\x8a\x90\xed\xd5\xbb\x12\x59\xc8\xaa\xb2\x35\x3b\xd4\xc8\xac\x7c\xc8\x27\x10\x99\xac\x73\x9f\x37\x1e\x99\x2b\x4f\x18\x17\x86\xec\xe4\x85\x1c\x1f\xce\x7f\x99\x61\xd6\xfa\x8d\xf7\x37\xa3\xb3\xf2\x30\x6f\x56\x26\x35\xe7\x02\x77\x67\xd6\x62\xd1\x66\x8e\x98\x62\x05\xbf\x60\xb7\x53\xed\x0e\xbe\x60\x3d\xa1\x6d\xdb\xa5\x65\x4d\xa5\xe7\xf9\x36\x30\xfd\xa1\x71\x73\xd3\xc8\x14\xb8\x7b\xd4\x6b\x46\x3f\x3a\x79\xd0\x96\x9f\x40\x59\xd2\xea\xc4\x13\x51\x4c\x15\xa5\xdc\x1e\xea\x82\x9c\x19\x9c\xaf\xd4\x12\x61\x11\x67\x29\x6d\x3d\xbc\x95\x9d\x42\x9f\x74\x30\x9a\x55\x00\x9a\xed\x9a\xc9\x7c\x0c\x8d\xf1\xf5\x61\x3a\xc1\x8e\x73\xc7\x92\x11\x08\x75\x54\x0d\xa3\x1b\x4d\x19\x70\xe6\x3d\xa2\x93\x2d\xeb\x79\xf6\xf4\xee\xf2\x1b\xdc\x7d\xf4\x7f\xfa\x3d\x1c\x15\xe8\x2b\xf8\xc6\xbe\x0a\x1a\xa1\x3a\xf6\x54\x68\xe1\x81\xcb\xac\xdd\xd0\xad\xb0\x1a\x66\x01\xac\xf6\x79\x46\xbe\x41\x62\xe6\x5c\x25\xdd\xd1\xf0\x51\xd5\x0c\x3d\xfa\xe2\x18\xc8\xbd\x8b\x47\x36\x29\xb8\x6e\xf8\xe4\xb2\xc5\x1c\x08\xbb\xa8\xbd\xcc\x3e\x89\xe5\xf3\x45\x6c\x5b\x8c\x07\x1e\x64\x25\x61\xba\xe4\x26\x66\x13\xd6\xbb\xf3\x0c\x73\x32\xf6\xcc\x67\x35\x79\x04\x9f\x36\x07\x66\x74\xe3\x51\xa3\x8e\x33\x56\xe2\x33\x7a\xb2\xb8\x8e\x9c\x9d\xf5\x9f\x38\x71\xec\xe6\xe2\x7b\xec\x06\xf6\x98\xec\xd3\xec\x51\xac\x68\xee\x59\x56\x34\xf3\x24\xed\x05\xb3\x85\x19\x96\x94\xc9\x9c\x4c\xbe\xdc\x71\x9e\xa4\x90\xf0\x1a\x19\xe3\x16\x39\x6a\x8e\x0f\x63\x09\x83\x39\xda\x8c\x68\x21\x0e\x76\x56\x70\xc2\x25\x4b\x6b\xd3\xd9\x85\xa2\xdf\x85\xd5\xac\x1f\xc2\xe3\xaa\xdb\xac\x6d\x02\x0d\xc7\x8e\x59\xcd\x4f\xa7\xa6\x33\x27\xf2\x0e\x26\xae\x20\xa9\xdc\xa8\xd0\x4b\x8c\xfb\x9c\xf5\xab\x9f\x30\xfc\xd9\x93\x66\x7f\x21\x0a\x99\x3d\xa3\x97\x10\x6e\x8c\x8e\xd6\x1f\x6c\xb5\x5e\x5b\x35\x9d\x75\x4d\xdb\x90\x47\xb0\x9c\xb3\x3b\xe4\xbf\x98\x88\xaa\x8a\x29\x20\x6f\x2a\xf4\x59\x8b\x49\x3f\x99\x32\x61\x1b\xa3\x5a\x42\xdd\x1e\xc9\x98\x2e\xf2\x59\xf5\x96\xc0\xf9\x17\x67\x67\xe3\x4f\xb8\x73\x46\x8b\xf0\x2c\x66\x41\xd3\x7b\xd6\x87\x72\x4a\xc5\x0c\xd6\xfa\x12\xa1\xa1\x81\xa9\x2b\x2c\x94\xc6\x90\x2f\xf3\x8c\x0c\x37\xd2\xdf\xc0\xca\xb0\x60\xd4\xe8\xe2\xe3\xd2\x18\x4e\xd9\x93\xb6\xde\x22\xf8\x0a\xf1\xca\xff\xf0\xcf\x92\xde\xd9\x33\xf0\xbd\x02\xd5\xe8\x01\xec\x15\x3b\xb5\x21\x8e\x55\xdf\x32\xaf\xf4\x16\xf3\x43\x03\x5b\xcf\x61\xae\xaa\xe9\x12\x6f\x21\xd9\x95\xc7\xf1\x95\x8c\x5b\xa5\x85\x69\xfe\x8c\x75\x85\x31\x31\xf7\x88\xba\xdc\x2b\x5b\x38\x84\xbd\xf6\xc9\x8a\x6b\xb8\x48\x29\x71\x22\xb1\x1f\xe2\x4b\xa3\x87\x30\x2e\xe7\x53\x7d\x32\x0b\xec\x12\x95\x3c\x63\x0e\xb4\xe5\xe8\x8a\x98\x53\x9a\x40\x51\x26\x19\x51\x37\x19\x4b\x65\x94\x9a\x32\x8e\x72\x19\x63\x4b\x8b\x63\xbc\x09\x4a\x01\x1a\xf2\x13\xff\x2f\xe7\xee\x8a\x23\xf8\x16\x75\x9f\xd3\x36\xac\x43\xba\x72\xf4\x03\x6c\x33\x17\xad\x2b\x66\xf9\xf5\xcf\x2e\x71\x63\xaa\xba\x3f\x6b\xbf\x90\x4f\xdb\x39\xc2\x73\xa4\x53\x53\x2f\x7a\x91\x91\x58\xdb\x70\xe4\x27\x71\xac\x32\x31\xba\x9b\x98\x57\x5c\x1b\xa2\xc6\xc5\xc6\x98\x15\x6e\xd8\x0f\x8d\xd8\x69\x03\x16\x27\xdb\x38\xc6\x1e\x7d\xc1\xed\x6c\xdd\x29\xab\x4e\x9f\x6b\x9a\x27\x4d\x4a\xff\x6e\x3c\x21\xb1\xcd\xb8\x22\x1f\x25\xba\x9d\x99\x4f\x46\x0b\x73\xb3\x94\x19\xcf\x05\x21\x94\xea\xb8\x27\xbc\x2f\xd4\x2f\x5b\x95\xdc\x3c\x7a\xc8\x8a\x53\x9c\xd5\x60\x9f\xc3\x4b\xd6\x19\x58\x3a\x62\x05\x93\x8b\x7c\x6e\x51\xc9\x36\x65\x2d\xaa\x4c\x95\x8e\xc9\xea\x33\xda\x88\x4f\x52\x12\x65\x71\x22\x3e\xe5\x1b\x63\x50\x18\x4c\xad\xc8\x88\x14\x8c\xa6\xf1\xe2\xf6\xf3\x5a\xe9\xc2\xad\x4e\xdc\x74\x30\x7f\x45\x12\xc7\x1e\x3a\xeb\x50\xc8\x6a\x43\x56\x8e\x98\xce\xc4\x50\xaf\xe6\xd3\xd2\xa7\xb4\xc8\x0a\x93\xa4\x82\x56\x95\x1b\x2f\xce\xa4\xcf\x94\x36\x8a\x96\xd2\x8f\x30\x66\x0b\xbe\xd0\x9f\xa4\x9f\xe0\xb7\x82\xbc\xd8\x87\xbc\x74\x28\x78\x4b\x07\x77\x19\x6c\xbf\xc2\x86\xfd\x06\xfe\xe3\x40\x61\xc9\xd1\x89\x23\x26\x30\xe3\xd0\xb2\x26\x3b\xc9\x23\xb4\xbd\xdc\x56\x3c\x80\x56\xe6\xdc\x13\x69\x50\xad\x64\xab\xf0\x08\xca\xc5\xef\x08\x36\xa2\xb2\x34\x23\x7f\x0a\xda\x13\x73\x97\x7b\x1b\x1b\x11\xf2\x85\x53\x81\x05\x79\x2b\xd8\xa9\x98\xde\xc1\x9f\x35\x13\x1f\x37\x22\x8c\xfc\x85\xdd\xaa\xc7\x25\xae\x2c\x5d\xa9\x99\xe8\x0f\xcb\x41\x77\x5f\x78\x9f\xa9\x17\xc9\x05\x6d\x4c\x6b\x2c\x9a\xaf\x24\x0b\x8e\x86\xf2\x0e\x91\xa1\xd1\x83\x5c\x1f\xd2\x32\x64\x32\x67\x32\xa3\xdf\xeb\x2b\xeb\x1e\x23\xc3\x61\x1c\x53\xc6\x98\x31\x82\x4b\xa6\x13\x53\x6a\x97\x8b\x53\x84\x5f\x8b\x8a\x44\x5b\x84\x96\x9a\xd7\x42\x4f\xc1\x54\xc1\x0d\xc1\x78\xbe\x15\x72\x8f\xf7\x86\x37\xf1\xc8\x70\xee\x59\xee\xb2\x7d\x26\x4e\x09\x27\x3c\x78\x15\x1b\x61\xa7\x78\x65\xb2\x36\xb0\x52\x1d\xc6\x90\xdf\x99\x21\x23\xad\x19\x57\x19\xa9\xa6\x37\xa2\x3a\xcd\xdb\xfc\xf3\x42\x59\xb6\x8f\xea\x97\x00\x54\x11\x3c\x0f\xfe\x56\x45\x29\x44\xf0\x16\xc8\x86\x0e\xbd\xe1\x9a\x4b\x7e\xef\x7d\xce\x7e\x21\xb6\x0b\x7c\xc8\xea\x10\xda\x2d\x67\x33\xb9\xbc\xd7\xb3\x0a\x48\x1f\x0e\x7b\xe4\x5e\x86\x3d\xd3\xaf\xfc\x96\x68\x7d\xf1\xe3\xdc\x21\xa1\x63\x61\xa0\x22\x82\xff\x27\x6f\x88\xdd\xc3\x3b\x9b\x3b\x8a\xbe\x99\x9b\xa7\xf7\x38\xf8\x9a\x43\x6a\x76\x46\x3a\xb3\x13\x54\x5b\x37\x1f\x66\x79\xc9\x27\x2e\x23\xc9\xbf\x62\xd5\x2c\x07\x46\x0b\xbf\x67\x24\x9d\xd0\xb0\x5e\x95\x3e\x17\x7e\x6b\x30\xcf\x79\x29\x18\xaa\xa9\x95\xad\xe1\x17\x98\x96\x31\xbb\x78\x07\xcb\x84\xd4\x64\xee\xf2\xa2\x8e\x03\x9e\x9c\xc9\x79\xa7\x23\x4a\x58\xef\x73\x34\x9b\x5c\x99\x43\x9a\xb1\x9e\x34\x52\xaf\x98\x3e\x53\xc0\xd8\x29\x1a\x18\x49\x10\x1e\x9c\x88\x92\xeb\xc2\x2b\x6d\x93\xf5\x7f\x05\xc5\x4d\x19\xd2\xbd\x7c\xb0\xce\x48\x3e\xe1\xad\xae\x12\x52\x72\xb9\x66\xe5\x1b\x93\x61\xf6\xad\xa2\x0b\x11\x23\x59\x0d\x79\xe3\x02\x8c\x4c\x91\xee\xb2\xe7\x38\x32\x46\xe5\x3c\x33\x8c\x31\x55\x62\x3d\x52\x89\xbf\xe2\xdc\x2d\xfe\x22\xac\xeb\x0e\xd5\x7b\x0a\x90\x76\x50\x52\xc1\x0f\x6e\x8e\x23\x57\xf3\x46\xd6\x7d\xa5\x00\x9c\x63\x55\x9b\x92\xde\xb2\x65\x65\x11\xe1\x22\x56\x5c\xa1\x45\x80\x07\x73\xb5\x61\xe1\xd2\x63\xa4\xa5\xfa\xde\xcc\xf5\x44\x97\x74\xd2\xc8\x53\x38\x9f\x6b\x57\x58\x9a\xf3\x27\x0d\xd2\xbc\xd7\xfd\x48\x3f\x20\x02\xb5\xa3\x33\x02\xf0\xdf\xd9\x63\x33\xe7\x67\x18\x55\x66\x59\x6e\xfb\x49\xf9\x13\x4a\x44\xd8\x4f\x69\x1d\xb5\xda\x3f\x4a\x1c\x43\x77\x59\x84\x09\x3e\x80\xc7\x66\xcc\xe2\x25\xc3\x85\x40\x2a\xc7\x0a\xf9\x5c\xe8\x94\x23\xc9\x3c\xa0\x49\xd1\x65\x67\x99\x0b\xbf\x6a\x6a\xb2\x4a\x71\x58\xdd\x4c\xd9\x9a\x31\x5f\xd9\x44\xb5\xdd\x3f\x45\x9e\x47\x1b\x1f\x96\x2d\xcd\xa4\x3b\xfb\x5b\x88\x17\x81\x31\x8b\x02\x04\x67\xa1\xea\x19\x23\x79\xdb\x10\x2f\x20\x93\xfd\x0f\x5d\x58\x20\xcf\x99\x4d\xa5\x64\xdf\xd1\x2d\xa7\x5e\x14\x26\x6b\x76\xd3\x5c\xb1\x0f\xea\x58\x5a\x6e\x7a\xa9\x32\x96\xbe\x34\x21\x57\xbe\x93\xfe\x2e\x6c\x91\x74\x21\x78\x76\x7d\x9f\xe8\x33\xd4\xb7\x68\xa2\x20\x17\xee\xb7\x79\xc7\x9b\x8f\xfc\x02\xf8\xec\x3b\x68\x76\xfe\x68\xfd\x1e\x24\x4c\x4d\xd5\x1e\x45\xf6\x09\x1c\xb3\xb3\x91\xbd\xe8\x69\x95\x09\x39\x9c\x66\x54\xb4\x20\xd9\xf1\xb5\xb2\x3a\xe4\xf9\xce\x58\x89\x12\xdd\xbe\xde\x55\x94\x84\xf6\x2c\x6c\x16\xd8\x63\x9e\x36\xb7\xb8\x35\xd8\x10\xf0\x98\x9d\x8c\x55\x1a\xb3\x74\x0d\xa4\x4a\xf9\x40\x73\x9a\x0c\xe6\xe5\xa9\xdf\x32\xbe\x23\x14\xd5\x08\x86\xfe\x28\x45\x31\x99\xb1\x23\xae\x5c\x36\x89\xe1\xb1\x83\x10\xff\x61\x4c\x5b\x07\x09\x2f\x12\xbf\x16\x06\xf0\xc5\xc4\x2d\x9b\xe3\xdc\x79\x44\xcf\xb0\xe5\xac\x07\xf8\x03\x83\x99\xce\x83\x9f\x22\x7f\xac\x59\xc5\x6b\xe1\xfc\x56\x87\x73\x3f\xc3\x80\xf2\x10\xd7\xe1\xc8\x22\x39\x9d\x13\x19\x2b\x92\xc2\xec\xa6\x50\xb9\xf8\x20\x7b\x92\xdf\xa0\x70\x15\x6b\xaf\xc7\x5d\xde\x37\xa6\xce\xa6\x8f\xc3\x27\x7b\x86\x15\xb3\xd6\x31\xa6\xea\x12\xb4\x7c\x95\xad\x34\x39\x5b\xa5\xb8\xc3\xd2\xa8\x2a\xe4\x34\xfa\x55\x45\x93\xf4\xc9\xe1\xb5\xb2\x76\xc9\xf6\xe8\x9b\x92\x0e\xd1\xf9\xed\x73\x44\x15\xc2\xb5\x6b\x6b\x05\x34\xbe\xc4\x63\x01\x6f\x19\xb7\xcd\x86\xc7\x1e\x62\xd7\x99\x8d\x66\xa2\xe4\xe9\xec\xc7\xda\x69\xf9\xcb\xc5\x16\xd9\xb3\x72\xff\x91\x49\xaa\xc5\x39\x8d\xd4\xd3\x0a\x4f\x5d\x50\x4a\x82\x6c\x61\xf6\xe5\x7d\xae\x92\x45\xaa\xc8\xad\x75\x22\x07\xf9\x31\x5f\x06\xff\x8d\xe4\x8b\xfb\x1e\x6e\x99\xf0\xb5\xcd\x02\xb6\x0f\x4f\x6d\xe6\x43\xbe\x66\x05\xa9\xbe\x69\x4e\x9b\x1e\x08\xe7\xaa\xaf\x56\x4c\x24\xb8\xca\xc7\xa5\x56\x94\xe1\xf2\xbb\x85\x17\x0f\x74\x48\xcf\xe7\x65\xec\x2d\x15\x0f\xe5\xfc\xd9\x12\x25\x6c\xd6\x6e\xf1\x89\xe5\x33\x54\x5b\xdc\xd2\xb9\x2b\xa5\xdf\xa7\x57\xb3\x2e\x0a\xfd\xcc\xc2\x48\xda\xff\x38\xba\x0b\xb7\x26\x1e\x87\x01\xe0\x27\x16\x60\x8b\xa2\xa2\xd8\x94\xd8\x82\x22\x48\x2a\x21\x08\x08\x4a\x88\x20\x22\xd2\xb9\xbe\xbe\xdd\xba\x37\xd6\xa3\x46\x77\x87\x80\xd8\x89\xdd\xdd\xfe\xec\xee\xfc\xaa\xef\xf3\xbc\x7f\xc9\x47\xa0\xd6\x85\x1b\xdb\xbb\xd8\xd2\x1c\x7d\x5f\x7b\x0c\x7b\x9f\xf6\x68\xf3\x17\x86\xaf\xba\xa7\x21\x36\x6b\x84\xca\x5c\x23\x4b\x04\x14\xba\x8a\x92\xf0\x73\x32\xb4\x34\xdd\xfb\x89\x24\xc4\x70\x7e\xf1\x24\xe1\x6f\xf5\x95\xe9\x1c\x7e\x91\x3c\xdf\x22\x9f\xbb\x4a\x38\x5e\x7b\xda\xa8\xec\x4b\x93\x5c\xd6\x6b\xba\xdf\xb3\xa7\x6a\x8b\x3b\xfc\xe8\x55\x6a\xb2\x25\x32\x93\xaa\xda\xd5\xe0\xb8\x1d\x57\x6c\xae\x1e\x0a\x4f\x91\x2d\x37\x4f\xf7\x16\x8b\xbf\x9b\x3e\xb9\x5e\x16\xd6\x69\x93\xa7\x53\xf9\x6b\x14\x5b\x2d\xea\x38\x97\x84\xd1\x8a\xea\x46\x98\xd2\xc0\x1b\xaa\x3b\x4c\xc5\x61\xa4\xc6\x8a\x96\x5c\xe0\x5a\xb9\x9c\xbe\x31\x75\x7a\xb9\x1f\x23\x31\x36\xb5\x64\x15\x53\x1d\x42\x35\xfc\x66\x7d\xf5\xa8\xd7\x8a\x20\xa9\xd3\x30\xd5\x03\x24\xc0\x26\x49\x3e\x0d\x73\x04\x00\x71\x2e\x1e\xa3\xf0\x6f\x1c\x4f\x5f\xce\x2b\xac\x8b\xa7\x5f\x87\x1d\xaa\x1b\x19\xa2\xfc\x1b\x15\xb7\x98\xfe\xbb\x4e\x96\x7d\x62\xcd\x8b\x9d\x5e\xfc\x1a\x5c\x10\xb2\xdc\x30\x08\x85\x7b\xe0\xda\xad\x70\x99\xe3\x33\x55\x3f\x6a\x6d\x93\x2c\xfb\x81\x95\x03\x80\x78\x2b\x8e\xc8\xaf\x36\xd4\x30\x6f\xf3\x26\xd4\xbe\x67\x45\x43\x27\xab\x83\x59\x37\xf2\x59\x15\x04\x98\xba\x2b\xbf\xac\x1c\x9a\x18\x33\x54\x5c\x0a\xdd\x0f\x7e\x6d\xa0\xc0\x97\x3c\x36\x69\xa7\x20\x0f\x1c\xcf\xa9\x38\xd8\x30\x9b\x54\xd9\x69\x3c\x08\x00\xc4\x2e\xf8\x25\x59\x7f\xfd\x33\x14\xe1\x8e\xaa\x5d\x83\x96\x82\xa7\xab\x4c\xe8\x9e\xbc\x72\xf3\x05\xf4\x7e\x4a\x4f\xe9\x3b\xcc\x31\x66\x8e\xe9\x03\xa6\x0e\xde\xae\x3f\x83\xdb\xad\x79\xa6\x41\xf1\x1a\xc7\x4a\xe5\x6f\xc2\xc3\x26\x57\x16\x4e\x3c\x01\x00\x51\x2b\x71\x5a\xda\x53\xef\xc7\x59\xc6\x01\x6a\xf4\x9c\x09\xac\xae\xca\x8f\xe4\xc3\xdc\x1a\xb3\x0b\x59\xb3\xf3\x56\x69\x28\xc9\xd9\x9a\x64\xda\x4c\x92\x41\x7d\xfa\x65\xa4\x66\x0d\x5d\x7d\x9f\x2c\x76\xcc\x51\x26\x93\xb5\x36\xa4\xb4\x9b\x6c\x05\x00\xd1\x64\xf6\x5b\xf1\xc5\xba\x83\x22\x21\x7b\x47\xcd\x28\xe1\x7b\x66\x4e\x65\x8a\x30\x3e\x87\x5d\xae\x15\x74\x24\xdf\x29\xe9\x12\xd8\x6d\x21\x8d\x7d\xfc\xea\xa0\x61\x3a\x3d\xdf\x7d\xf5\x27\xf5\x06\x5e\xa7\xe3\x0a\xc5\x41\xde\x42\x1b\x93\x74\x12\x17\x06\x00\x61\x3e\xc7\x5a\x34\xac\x6e\xa9\x3a\x1e\x6f\xaf\xce\x28\x5a\x48\x6f\xac\x68\x50\x3e\xc9\x7a\x5e\x76\x49\xa1\xd8\x41\x2d\x7e\x22\xf7\x8d\x0e\x34\x3c\x97\x59\x6c\xf8\xa7\x3d\x21\x39\xb8\xda\xb7\x28\x4f\x1c\xeb\x30\x24\xff\x20\xbc\x66\x63\x92\xf8\x0b\xa6\x03\x80\x40\xc3\x2d\xe3\x7f\xab\x35\x94\xde\x45\x4f\x54\x5d\x2e\x7e\x41\x1b\x56\x31\xc7\x34\x2c\x33\xa9\xcc\x47\xff\x2a\x69\x5c\xf1\x46\xed\x99\xa8\x91\x86\x50\x75\xe7\xfa\x0f\x5a\x67\x15\xee\x9e\xa2\xba\xa1\xb0\x75\xf0\x95\xc7\x48\xb9\x36\x54\x71\xad\x48\x0f\x00\xfc\xf7\xbc\xb7\xbc\x9d\xb5\x31\xf5\x72\x24\xb4\x4a\x5d\xf3\x86\x82\x98\x2f\x54\xad\x4a\x7f\x5d\xfa\xc8\xbc\x6d\x7b\xb7\xe9\x51\x69\x46\xe4\x39\xfd\x7d\x53\x7a\xc0\x13\xcd\x5e\xbd\x87\x9b\x50\x95\xa0\x3e\xbc\x50\x23\xbb\xa6\x1c\x65\xe3\x2a\x76\x91\xdc\x03\x00\x7e\xbe\x60\x04\xb7\xb3\x76\x45\x4b\x01\x5c\x59\x45\x69\x54\x14\x5e\x32\x37\xd5\x09\xd2\x43\x4a\x7b\xab\xb7\x6e\x9f\x65\x6a\xad\x00\x22\x83\xf5\x75\xa5\xaa\x00\xaa\x86\x6d\x7c\xe1\xe6\xa8\xb2\xd7\xbe\x5b\x18\x2a\x53\xa8\x2a\x6c\x6c\x44\xff\x93\xde\x07\x00\xfe\x02\x41\x3e\x77\x76\xad\x75\x47\x15\x3c\xb9\x2a\xb8\x55\x59\xb8\xc1\x8c\x35\x85\xa5\x1d\x2f\x25\xea\xce\x25\xd4\x99\xf2\xaa\x1d\x22\x1e\xe8\x77\x9a\xb7\x06\xcc\xd1\xac\x2a\xf1\x5d\x75\x47\x79\x4a\x7f\x62\xe1\x6c\xd9\x8a\xa2\x6f\x36\x53\x44\x7c\x59\x35\xb0\x96\x77\x48\xd0\x04\x47\xed\x09\xa7\xb2\x29\xda\xae\x2e\x5a\x42\xa6\x73\xfb\x4c\xfa\xd2\xa4\x57\xcd\x39\x8c\x89\x5b\x26\xd6\x17\x31\xe7\x05\x9b\xab\xc5\xac\x1d\x5e\xab\xcc\xeb\xc1\x33\x4b\xe2\x8b\xbb\x60\xaa\xfd\x2f\xdd\x55\x74\xd5\xb8\x45\xaa\x5e\xec\x7f\x00\x20\x35\xe0\xdf\xe0\xe5\xbd\x37\xe9\x2f\x28\xb4\xae\x8d\x0c\x49\xa6\x65\xdb\x41\xa6\x6b\xd2\x89\xe6\x29\xcc\xdb\xd1\x6f\xeb\xfd\x58\xfd\xc1\xec\x6a\x1f\xf0\x88\xd7\xcc\xf2\x7f\xd0\x8f\x25\xc1\xc5\x20\x92\x64\xff\x53\x57\x8b\xde\x18\xe7\xa7\x92\xe3\xeb\x00\x40\xca\x22\x46\xc2\x23\x7b\x77\xb3\xa8\x94\x90\xce\x47\xac\xfb\x19\xb7\xda\x92\xc0\xb0\x24\x43\xd3\x00\x78\x36\xfa\x48\xdd\x4b\x08\x0a\xde\x5e\xf5\x1a\xde\xe2\xf9\xa7\xbc\x1d\xd9\xba\xc4\xbd\x78\x05\xca\xb2\xff\xaa\xcb\xc0\x5a\xc7\xc5\xab\xe2\xf0\x33\x00\x20\xdd\x40\x84\x42\x87\x7b\x84\xa8\xae\xf0\x66\xe7\x14\xb4\x22\x23\xa2\xb5\x02\x6d\x49\x9a\xdf\xf8\x17\xbd\x1f\x9d\x52\xb7\x0a\x73\x0f\x1e\x5d\xb5\x1a\xeb\xf2\xdc\x5f\xf6\x1f\x1e\xb1\x64\xa2\x49\x82\xff\xb4\xff\xac\xbd\x48\x34\x8e\xe3\x29\x4f\xb2\x3d\x01\x40\xd2\xcb\x5e\x0c\xd6\x74\xdf\x24\x5b\x0b\x2d\x3a\x12\x49\x7d\x7a\x73\xcb\x5d\xb2\x30\x51\xdd\xb8\x8e\x0c\x8e\x7a\x56\xcb\x20\x7d\x82\xca\x2a\x51\x32\xca\x33\xb3\x2c\x90\x44\x16\xdf\x36\xde\x20\x1b\xed\x5f\x6b\xe7\x91\xb7\xc7\xf5\x2b\x67\x93\xb7\x00\x40\x32\x9a\x5c\xc7\x32\x75\xaf\x11\x8a\x0b\x26\xb5\x77\x0b\xfe\xa5\xdd\x6b\x59\x2a\xa0\x6e\xbf\xdb\x20\xe3\x3f\x8f\x0a\xaf\x39\xc6\xa7\x07\xcd\xaa\x38\xc1\xb7\xf5\x1c\x51\xaa\xe0\x1d\x5f\x5c\x62\x9c\xcf\x2b\xb0\x7f\xa8\x29\xe0\x4d\x1f\xf7\x56\x91\xc7\x05\x01\x40\xbc\x99\x13\xc8\xa4\x74\x6d\x55\x85\xe5\xdd\x69\xbb\xa7\x74\xdb\xad\x6e\x8e\x53\x4c\x4e\xe8\xa8\x6f\x96\xbd\xdc\xbc\xa1\xfa\xb6\xf4\x7c\xa0\x97\xf9\xb6\x64\xff\xda\x98\x92\x2a\x71\xcb\xe2\x55\x06\x37\x91\xd8\xfe\x8c\x9a\x14\x46\x8f\x5f\x2c\xe7\xf2\x4f\x00\x80\x28\x89\xdb\xc2\x98\xda\x79\xd1\xb4\x2f\x97\xdf\xe6\x67\x78\x93\x1a\xd5\xd4\xa4\x9f\xb6\x8d\x5f\xf7\x5d\xeb\x13\xe9\x56\x3d\x5b\x9d\xb9\x21\xdc\x3c\x5b\xa5\xf2\xd0\x15\x3f\x53\x34\xb8\x76\xea\x61\x99\xd9\x5e\x5b\x34\x24\x29\x18\xef\x2f\xbb\x20\xbc\x03\x00\xc2\x3a\xde\x11\xda\xab\xce\xf0\xaa\xfe\x9c\xac\xd6\x33\x15\xc8\x2e\xdf\x26\xcf\xf2\xe9\xf1\x58\x1d\x52\x22\x8b\xf0\xae\x32\x18\xbf\xac\x67\x96\xeb\xf5\xd1\x6b\x9e\x16\xef\xd4\x14\xb9\x2e\xd5\xbd\x56\x19\xec\x83\x8a\x96\xcb\x93\xc7\xfb\xc9\xbc\xc5\xfd\x00\x20\x9c\xca\xaf\xa6\x6d\xea\x9c\x59\xbf\x24\xfb\x41\xab\xa1\x46\x95\x72\xbc\x69\x64\xe5\xa5\x78\xeb\x3a\x9f\xf2\x2f\xe1\x97\xaa\xb6\x94\x0e\x5f\x3f\xa3\x7c\xb3\x69\xf8\x9a\xd2\xe2\x19\xba\x5b\x8b\xbe\xeb\x2a\xd4\xd9\xf6\x8b\x54\x0f\x15\xdd\xe3\x03\xa5\x1f\x24\x22\x00\x10\x9c\xe4\x7f\xa1\x1e\xec\x78\xd2\xf4\x37\x3b\xab\x75\x47\xc3\xc4\x94\x9d\x8d\x27\x6a\x47\xc4\xb5\xd6\x7e\xab\x7c\x1a\xce\xae\x1a\x56\xde\x10\x70\xa3\xec\x77\x49\xec\x9a\x3c\xd3\x51\xc3\xc5\x45\xf7\x74\x7e\x9a\x9f\xf6\x4e\x2a\x44\x79\x76\xfc\x2e\xa9\x4c\xea\x02\x00\x82\x14\x81\x3d\xa5\x7c\xf0\x0d\x2d\x31\xcb\xa2\x7f\x36\x7d\x4a\xf2\xb9\x9e\x0d\xf4\xf3\x31\x5f\x3a\x56\x33\x2a\xc3\x4a\x9b\xbf\x32\xeb\xfd\xfa\xeb\x51\xd6\x03\xb7\x7f\x55\xfd\x50\xa8\xb3\x55\x59\x39\xfc\x6a\xc6\x65\xe3\x0a\xb4\xd5\x3a\x5d\x9d\x8f\x7b\x00\x80\x4c\x47\x78\x53\x74\x83\x04\xa3\x26\xf3\x57\x5f\x3f\x73\x49\xf2\xf1\xee\xa7\xcc\xbe\x98\x67\xed\xf7\x58\xf1\x61\xf2\xe6\x0a\x70\x91\x5f\x5b\xfd\x12\x68\x85\xdb\xb7\xaa\x02\x38\xcd\xd9\xaa\x6c\x27\x72\x74\xc6\x0d\xc3\x1f\xcc\xdf\x9a\xab\xf6\xc7\xf9\x00\x20\x2b\x24\xd6\x53\x78\x83\x93\xc0\x71\x99\x2f\xfb\x36\x83\x59\xc9\x3d\xdd\x1c\xf0\x64\xcc\x95\x76\x1c\x72\x0f\x43\x9b\x83\xa0\x9b\x7e\xe6\xba\xeb\x70\xbb\xdb\xfb\xaa\x99\x48\x9b\xf3\xc8\xb2\xa9\xe8\x85\x19\xf7\x0c\x03\xb8\x95\x75\x85\x7a\x04\x61\x09\x00\x32\x0f\x82\x4d\x89\xde\xbb\x12\x7d\x92\x59\xb7\x07\x45\x5f\x24\xef\xe8\xea\x43\xdf\xc6\xa8\xda\xfa\x31\xbb\xb0\x90\x26\x21\x56\xe0\xc7\xa8\x9b\x8e\xbd\x72\xbb\x5e\x99\x8c\x0b\x9d\x87\x95\xa6\x12\x6e\x33\xde\x1b\x6c\x89\x77\xd6\xb7\x8a\xb2\xd8\xa9\x00\x20\xad\x60\xc7\x17\xe2\x03\x59\xe4\xf5\x4c\xcb\xde\x56\xb2\x67\xc7\xfb\xce\x47\xa4\x30\x66\x45\xeb\x33\x32\x31\xf4\x77\xe3\x5e\x72\x8b\x9f\x7b\xed\x26\x32\xc3\xad\xae\x42\x4f\x6a\x9c\x9e\x97\x54\x93\xa7\x66\xfc\xd6\x27\x72\x46\x8f\x99\xa1\xea\x25\x3f\x03\x80\xe4\x39\xb9\xab\xe0\x7a\xff\x80\x90\x9e\x91\xd5\xf3\x59\xf0\x64\x47\x52\xe7\x6c\xc1\xd6\xad\xdd\xad\xf3\xf9\x67\x42\xb5\x0d\xdf\xf8\x3b\x7c\x1f\xd5\xf0\xf9\xc3\xdc\xb2\xcd\xe7\x79\xbd\x4e\x67\x8b\xef\xf3\xf2\xed\x86\xeb\xcc\xbc\x85\x63\x62\x95\xbf\xb9\x6c\x00\x90\x38\x72\x52\xf3\xcf\xf5\x3d\x50\x0e\xa4\x6f\xef\x99\xa8\xa8\x4a\x8a\xea\x58\x26\xe7\x6f\x39\xd8\xe2\x2a\x4b\xdf\xb8\xaf\xfe\xbb\x34\xc1\x77\x49\x35\x4f\xb2\x75\xd5\xf3\xf2\x73\xe2\x68\x27\x81\xe9\x91\x28\xc8\xce\x46\x5b\x2e\x74\x1a\xd3\xa1\xb4\xe0\x37\x02\x80\xd8\x99\xdb\x97\x57\xda\x37\xd3\x28\x49\xf3\xeb\xde\xa4\x3f\x9b\x18\xd8\x9e\xa9\x1b\x19\x7d\xbc\x79\x87\xc6\x27\xe4\x56\xbd\x43\x11\xee\x93\x53\xd5\xad\xdc\xb7\x2a\xa2\xec\x8f\xfc\x9d\xd3\x32\xd3\x24\x99\xb5\xdd\x70\xcd\x55\xf1\xdf\x31\x8f\x15\x7e\x42\x25\x00\x88\x32\x78\x7d\xb9\x67\xf7\xb0\x2b\xc7\xee\xce\xe9\xda\x57\x3e\xb4\x9d\xd2\xf6\xa0\xb4\x30\xea\x47\xd3\x69\xd3\x7f\x21\x33\xea\x04\x06\xbe\xf7\xa9\xaa\x69\xba\xd1\x2b\x2f\x94\xa5\xab\x0b\x1d\x6f\x19\x19\xca\x86\x19\xcf\x35\x4b\x65\x75\x63\x2d\xe4\x35\x62\x0f\x00\x10\x5e\xe0\x23\xb9\x9b\xf6\x04\xd7\xda\xa7\xfe\xeb\x22\xaa\xc4\xdb\x27\xb7\x99\xcd\x77\xa2\xca\x9a\x88\xb2\x19\xc1\xc7\xeb\xd6\x14\x47\x78\x73\x2b\x4f\x1a\x90\x95\x65\x65\x33\xb4\x7c\xc7\x01\xe3\xfc\xa2\xa8\x19\x0f\xd5\x37\xe4\xd7\xc7\xda\xca\xa3\xc4\x1f\x01\x40\x48\xf0\x0f\xe4\xdc\xde\x63\xd5\xa0\x4c\xad\xe8\xf2\xac\x1d\x48\x38\xde\x16\x55\x35\x14\xb5\xad\x69\x89\x79\x28\x58\x58\x7b\xbb\xb4\xc7\x3b\xa6\x32\xcb\xa4\x5b\x49\x96\x0e\xe8\x37\x39\x76\x1b\x06\xd4\x7d\x33\xbe\xaa\x73\x15\x17\xc7\x6e\x90\xbd\x94\xb0\x01\x40\x38\x9d\xff\x30\x9b\x7e\x48\x47\xcf\x4c\xb9\xb8\xaf\x99\xfe\x39\xbe\xbe\xbf\x89\x21\x8c\x9c\xd8\x13\xc7\xf4\x0f\x9c\xd9\x7e\x8c\xe5\xe6\x59\xdf\xf4\x11\x4c\x5e\xc6\xaf\x3d\x0e\xed\x5f\x90\x5c\xe1\x89\xc4\xd9\xae\x2a\x0e\xc5\xc6\x59\x4e\xd0\x7c\xc7\xf3\x01\x40\x4e\x21\xb6\x67\x73\x0f\x2d\x61\xea\x53\x1e\xed\x0b\x62\xfe\x88\xef\xeb\x0f\x61\xa5\x46\xce\xea\xfe\xc5\x7a\x1d\xb8\xb0\x3d\x17\x6c\xf0\x6c\x6f\x2a\x83\x2a\x97\x29\x6b\x99\xf0\xa9\x05\xbb\xcd\xdf\xd0\x79\xb6\x3e\xc5\xe3\x31\x9d\xe5\x4a\xcd\x61\xbc\x03\x00\xe4\x41\x44\x42\xb6\xf4\xe0\x71\xf0\x49\xca\xcb\xc1\x07\xd0\xdc\xf8\x83\x7d\x8f\xa1\xf4\xc8\xb9\xdd\x3a\x68\x20\xd0\xa1\x7d\x1c\x1c\xe2\xd9\xdd\xe4\x8f\x4c\x5e\xa6\xaf\x9d\x85\x8e\x5a\x90\x6f\xae\xc1\x16\xd8\x86\x9a\x8e\xe3\x5b\x2d\x37\x6b\x70\xc2\x15\x00\xe4\x96\x84\x36\x3b\xed\xc0\x63\x0c\x4c\x39\x39\x08\x60\x99\xf1\xe5\x7d\x23\xb1\x1d\x91\x63\xbb\x8e\x61\x50\xe0\xcc\xb6\xf5\xd8\x61\xcf\x8e\x46\x10\x5f\xb5\xac\xbc\x66\x2b\x7e\x72\x01\xbb\xfc\x39\x41\xb1\x4d\x35\xd9\xb2\x17\x5a\xca\xd5\xd7\xff\x5f\xf1\x48\x67\x67\x66\x5d\xdd\xff\x97\x13\x99\x92\xb6\x77\x26\x67\x4a\x7c\xf2\x1e\x7b\xf2\x5a\xc4\xed\xce\x07\x64\xd9\x86\xef\xad\xa9\xa4\xd4\x53\xd7\x60\x22\xb5\xcb\x94\xd5\x20\x39\xb0\x00\x2f\xb7\x25\x3f\xda\x22\xc6\x28\x8e\x8b\xe5\x25\xf5\x0c\xf2\x0f\x00\x48\xab\x49\x4a\x96\x74\xff\x5a\xe1\x60\xca\x84\x81\x8d\x42\xdb\xf8\x91\xbd\xfe\x02\x30\x42\xd9\x39\x82\xff\x64\xc3\xa1\x16\x29\x9f\xe6\x99\x53\xbf\x9f\x3f\x6e\x19\x58\x55\xc2\x1b\x5c\x40\x94\xf9\xf3\x60\x5b\xad\x41\xc8\x5b\x6a\x35\xb1\x28\x96\x4b\x00\x80\xe4\x16\xa7\x20\xb3\x74\xdf\x2e\x65\xd1\x4e\xd7\xfe\x58\x45\x4e\xdc\x8a\x1e\x77\x79\x70\xf8\xb9\xf6\x4f\xb2\x85\x1b\x6c\x9a\xa9\xd2\x99\x6b\x1f\xd6\xd5\x48\xa6\x2c\x9b\x51\xc9\x15\xdb\x2e\x88\x2f\x5d\x26\x9a\x61\x7b\x54\x4f\x13\x0e\xb7\xc2\x54\x9b\xf8\x12\x00\x10\x5f\xe4\x0e\x64\x14\x0d\xc6\x1b\x2e\x25\xaf\xeb\x4b\xd1\x4f\x88\xdd\xd6\x1d\xa9\x0d\x0b\x1f\xde\x6e\xa9\x16\xaf\x4f\x6c\x12\xa8\xae\xaf\x0d\xaa\xdd\xab\x9c\xb5\xb4\xae\xa2\x4c\xbe\x63\xc1\xd2\x92\x20\xa9\xc6\xf6\x9a\x4e\x2f\x2e\xb1\x3a\xa9\x44\x84\xa1\x00\x20\x1e\xc9\xab\xcd\xb0\xdf\x6b\x36\x3f\xde\xd1\xb3\xa7\xa7\x4c\x12\x73\xb4\xab\xb1\xc4\x75\x13\xa5\x2d\xde\x78\x34\xe0\x62\xe3\x39\x7d\xb2\xc7\xf5\xda\x51\x9a\x1f\x4b\x63\xcd\x9f\x8b\xd8\x0b\x86\x17\x97\x28\x1e\xd9\x3e\xd3\x3e\x96\x59\x58\x8f\x50\x5c\x11\x9d\x04\x00\x51\x26\x3f\x2a\x7d\x70\x6f\x52\xb5\x76\x47\xda\x9e\xec\x8a\x1f\x31\x44\x57\x5c\xf9\xe6\x4d\xcb\xda\x80\x92\xd2\x00\x4d\x63\x81\xf1\x85\x47\x7d\x4d\xb3\x7e\xe5\x52\x0f\x73\x89\x26\x6d\xfe\x7f\xc5\xfe\xaa\x14\xdb\xef\x5a\xae\x7c\x8a\xb5\xb3\x02\x13\xe7\x02\x80\x68\x2a\x5f\x96\xbe\x6b\xef\x94\xba\xe6\x1d\xb3\xf7\xcc\xa8\xbe\x19\xb3\xb1\xf3\xbf\x8a\x6f\x61\xff\x5a\xcb\xca\x47\x07\x64\x37\x8e\x2c\x99\xe0\xa1\xa8\x09\x30\xda\x2e\x5d\x69\x76\xd3\xfe\x59\x60\x63\x3a\x53\x54\x35\x6d\xb6\xd6\x46\xfe\xd1\x7a\x97\x62\x92\xf8\x25\x00\x08\xdb\xf9\x4d\xf7\x3d\x59\x29\x94\xe5\x17\xd6\xb0\x1e\x51\xfe\x1c\xbc\x0c\xee\xa4\x9e\x6b\x2f\x01\x2f\xd1\x1a\xca\x85\x50\x38\xbd\x56\x46\x85\xae\x31\xae\x81\xf5\x30\x8d\xe5\xb0\xab\x02\x59\x01\x9a\x36\x0e\xa1\x63\xe0\x59\x8b\x3b\xb0\xe1\x48\x9f\xf5\x3e\xdc\x07\x9b\x7d\xcf\x85\x59\x47\x3f\x72\x3e\x8a\xb5\x94\x11\x71\xd0\x8a\xb5\x87\xf1\xa0\xed\x2e\xe8\xc1\x64\x95\x5d\x06\x4f\xb0\x96\x4a\xcf\x43\xc9\xe0\x14\x70\x32\x3c\x01\x9a\xb2\x6b\x0a\x7c\x0f\x5e\xb9\x31\x0c\x19\x42\x12\x17\x87\xa1\x57\x51\xa3\x35\x1f\x9f\x8b\x69\xef\x4e\x60\x7c\x04\x69\xe7\x76\x32\x09\xf0\xd0\x01\x0f\xd6\x38\x68\x4a\xdb\x38\x56\x35\x94\x5e\x36\x01\xf4\x85\x6e\x49\xe7\x82\xcf\x60\x06\x0b\x85\x6a\x10\x97\x14\x29\xcc\x41\xde\x87\x1c\x44\x70\x74\x9f\xeb\x0f\xd4\x80\x19\xad\xb7\x63\x5f\xf0\x85\xb7\x67\xd0\x45\xec\x75\x67\x92\x18\xeb\x88\x8f\xfb\x3c\x18\x9f\x88\xba\x96\x08\x66\x11\xc1\x28\x11\xb2\xd6\x11\xdb\xc5\x27\x58\x3f\x89\x4c\x66\x2c\x78\x86\xe0\xec\xc4\xa1\x63\x44\x71\xf0\x79\xf8\x2e\xd1\xe2\x9a\x8b\x5a\x12\xc7\xad\x97\x60\x7c\x22\xf7\x86\x1d\xcd\x5d\x34\x6f\x68\x1f\xed\xa7\x30\x7a\xe0\x26\x7d\xaf\x80\xdb\xb4\x86\x91\xcf\x3f\x6d\xea\x60\xae\xe0\x2f\x14\xb9\xb2\x86\xf3\x8c\xf4\x9f\xac\x77\xbc\xf1\xc9\xd1\xe0\x5f\x2e\x16\x3c\x09\x76\xe0\x3c\x5e\xf4\x0d\xc9\xe3\xcc\xb6\xf6\x45\xff\xb2\xaf\x5d\x09\xa3\x0e\x53\xb5\x1e\xcf\xa5\x1e\x54\x86\xf4\x8d\xa2\xc9\xe4\xcf\xeb\xf7\xd1\xb7\xc9\x4a\x0c\x22\xc6\x0a\x69\x82\x60\x0b\xd3\x4e\xe2\x4c\x63\xb0\x66\x8a\xde\xec\x18\x07\xfa\x0b\x2b\x82\x56\x41\x2c\x41\xc0\x22\x3e\x7c\x8d\xa7\xb3\x8e\x44\x99\x9c\xa0\xf3\x5f\x0a\x29\xe5\x05\x87\x19\x94\x84\xd2\x80\xee\x24\xaa\x67\xb1\x4d\x0d\x93\x66\x6b\x38\xaf\xad\xa6\x0f\xd3\xf1\xb9\x97\x19\x80\xc6\x83\x12\xc7\xb4\x53\x9d\x49\xa4\xb3\xa2\x15\x1e\x1b\x3e\x81\xd5\xd2\x42\x97\x07\xf0\x34\x51\xb4\x75\x26\x72\x81\x97\x76\x66\x46\x41\x74\x6b\xdb\x01\x8b\xc2\xad\x4d\x92\x8e\x08\xca\xa6\xfa\x84\xca\x6a\xea\xaa\x9a\xe1\xea\xc9\x34\xa7\x0a\x03\x29\xa4\xaf\x2e\x1b\x5f\x90\xc8\x48\x31\x85\x27\x3c\x60\x36\xe8\x42\xd7\x77\x80\xe3\x55\x9f\x5c\x16\x41\x3a\x99\x87\x75\x16\xb2\x4b\xc0\x1a\x3a\x99\xdf\xb7\xdf\x7a\x50\x53\x70\xa0\xff\x69\xeb\xd9\xc2\xae\x9e\x46\x73\x30\xa5\xac\x63\xa3\xf2\x0e\x55\xdf\x3c\x48\xe0\xb4\xd6\xba\xff\xf2\x24\xf4\x47\x95\x2f\xb7\x15\x30\x9d\x4a\x77\x07\x0c\xb0\x64\xfa\x1c\xe7\x0a\x68\x91\xf2\xb3\x75\x16\x32\x5e\xb4\xe1\xe4\x81\x7c\xf1\xb1\x25\x7b\xab\x0b\x04\x07\xab\x5a\xee\x16\x82\x7b\x3f\x96\x6f\xa7\x24\xed\x99\xaa\xf8\x8f\x1a\xd3\xf1\x17\x6f\xa3\x65\x37\x37\xe7\x5e\xa2\x9b\x6b\x3f\xc5\xdf\x63\xfc\xcf\xdc\x16\x90\xc4\x0a\x30\x3e\x76\x46\xc0\x17\x45\x62\x6b\x01\x7c\x45\xf4\xbf\x13\x7f\xf3\x53\x4e\x27\x0e\xbc\x2a\x88\x3e\x8e\xb7\xb8\x16\xae\x3d\x94\x53\xd6\x4e\x99\x36\xe8\xa4\xd8\x46\xb5\xec\xd5\xe3\xd3\x69\xd3\xdb\xf7\xe7\x46\xd2\x43\x1b\x73\xe2\x85\x0c\x4e\x15\x2d\xc0\x8b\x79\xa7\xf8\xb1\xb3\x10\x14\xa8\x3b\xac\x2f\xc2\x74\xf1\xdc\x9b\xb7\xa1\xcb\x85\xf5\xa7\xb3\xe0\x31\x14\xc5\x20\x09\x87\x52\xa9\xcd\xad\xb0\x86\x16\x5f\xfc\x1d\x7e\x42\x4f\x16\x87\x21\x1e\x8c\x72\xc6\x6b\xa4\x82\xf9\xdf\xce\xcd\xe8\x3c\x10\x09\xfe\x87\xee\x85\xa7\xba\xc2\x18\x03\xb9\x68\x9d\x8e\x67\x63\x9b\x6f\x3c\x85\x6c\xe9\x4b\x4e\x49\xa0\x9d\xf4\x0b\x7b\x7b\xa0\x0e\x06\xb5\xe9\x05\x3c\x8a\x39\xbd\xd8\x13\xce\x66\xde\x11\x99\xe1\xb3\xac\x4b\x8c\x48\x64\x3d\xf8\x28\x79\x00\xb9\x09\x8f\x0d\x4e\x40\x05\x48\xe8\xa2\x5f\x58\x24\x5a\x65\x3d\x0c\x8f\xc5\xf6\x5c\x7f\x06\x26\xb3\xae\x0e\x19\xc1\x01\x70\xc5\xc0\x5d\xc8\x16\xd4\x35\x4d\x87\x40\xf0\xbb\x09\x84\x9e\x41\xa0\xf0\x03\x1c\x0b\x2f\xa4\xf7\xc0\xf7\xe0\x97\xc9\xee\x08\x81\x1c\x0a\x7a\x8a\xae\x43\xeb\x17\x35\x63\x93\xb1\x72\xab\xbb\xb8\x2b\xbe\xe1\xea\x43\xe6\x5f\x22\xff\x44\x0d\x8b\x4a\xf8\xf4\x7d\x64\xbd\x23\xc6\x35\x64\x80\xbb\xf0\xe7\x86\xbf\xe0\x43\xfc\xae\xa0\x0c\xca\xc1\x7f\xd1\xf4\xf0\x68\x62\xd1\x8e\xa5\xf0\x71\x22\x31\x68\x32\x52\x4c\x68\x16\x2d\x45\x65\xc4\x51\xab\x21\xec\x00\x21\xbd\x74\x85\x71\x4c\xb8\xf2\xd8\x48\x66\x88\x80\xdd\x5b\xca\x3c\xcf\x3f\x5b\x97\xcc\x8a\xe2\x3b\xe8\x3d\x59\x8f\x78\x6a\xfe\x0c\x10\xe5\xcd\xa2\x46\x42\xcb\xb8\xcd\x49\x76\xb0\x05\xd7\x2d\x30\x04\x7e\xc5\xd9\xe3\x72\x1a\xf9\xc8\x99\x6a\xf5\x18\xf3\x64\xbf\x3d\xbf\x85\xae\x51\xaa\x0f\x3d\x66\xcc\x57\x6c\xe9\xba\xcf\x38\x20\x1f\x5f\xfd\x95\xb9\x59\x7a\x5b\x3b\x97\xf9\x5e\xd2\xce\xdd\xcc\x32\x8b\x8d\x85\x37\xc1\xdd\x22\x68\xfb\x6b\x68\xa3\x30\x68\x03\x17\xf6\x11\x58\xb8\xe4\x20\xdb\x78\x88\xf5\x04\xb4\x8d\xb3\xfd\xd4\x1f\xda\xc2\xb2\xd9\xfb\x7e\xd2\x2e\x94\x4c\x69\x0f\xa7\x53\x8c\x7f\x2a\x8e\x33\x26\xeb\xaf\x17\x6d\x66\x1c\xd5\x36\xb3\xef\x32\xc5\x6a\x34\xff\x38\x2b\x5d\xb5\x22\x21\x0e\x4c\x94\x1f\x5e\x1f\x0f\x65\x4a\xe7\x3a\x3f\x81\xf5\xa2\xc5\xd6\x7e\xa8\x05\xaf\xe0\x44\x1a\x75\x66\xcb\xec\x81\x06\xea\xa5\xc6\x29\x2d\x9b\x68\xdc\xda\xbf\xe5\xc3\xe8\x4b\xab\xce\x2a\xce\xd3\x5f\x9a\xf9\x78\x29\xe3\x60\xe9\x9c\xdc\xcb\xcc\x16\xa3\x20\xfe\x2c\xab\x4b\xdb\x1a\xb0\x18\xbc\xa4\x12\x38\x6f\x86\xc7\x48\xff\xb3\x8e\x47\x64\x82\xc2\xa3\x6f\x28\xd0\xe0\xcc\xbe\xe5\xd4\x35\x7d\xf3\x1a\xaf\x51\x9f\x77\x4f\x28\x69\xa3\x19\xdb\x6e\xcb\x6a\xe8\xf1\x4d\x2c\xd4\xcc\x70\xab\x7d\x90\x33\x96\xb9\xb8\xe2\x7b\xdc\x4e\xd6\x8a\x92\x0a\xff\xa5\x60\xb4\xee\xb6\xd3\x29\xa8\x42\x59\x6a\xbd\x1b\x71\x13\x2d\x3d\xf2\x92\xe2\x7f\x64\xf2\x1e\x6f\xca\xcf\xfd\x83\x0d\x8f\xa8\x0d\x03\x1e\xc5\xc7\x69\xb1\x3d\x32\xe9\x29\xfa\xd4\xf6\x6a\xe4\x1a\xfd\x7d\x13\x92\x1d\xc7\x78\x51\xf3\x36\xf6\x12\xf3\x75\xf9\x6d\xbf\x6b\xa0\x95\x31\xc0\xa9\x1a\xda\x51\xe4\x62\x2d\x86\xbf\x8a\x4e\x1f\x71\xa5\x4c\x1c\x9a\xd9\xcb\xa3\x1c\x3c\x0a\x36\x2c\xa5\x66\x1c\x28\x2e\x9e\x41\x9b\x30\x20\x96\x3a\xd3\x4e\xf6\xb8\x22\xfe\xf4\xb2\x36\x34\xeb\x26\xa3\xa8\x21\x3e\x16\x66\xca\x2b\x8b\xfc\xda\x58\x35\xc5\xab\x9d\x9a\xc0\xbf\xea\x8d\xd6\x37\x61\x9d\x78\xd4\x95\x60\x74\x77\xe1\x82\xe3\xa9\xe8\x36\xca\xfc\x3d\x5f\xd1\x44\xea\xf4\x7a\x29\x8a\xd0\xac\x0c\x2b\xd1\x3a\xfa\x2c\xfe\x13\xf4\x1c\x23\x85\xfa\x12\x1b\xc1\x1c\x4a\xea\xc3\x36\x81\xd1\x81\x27\xb1\x26\xe8\x87\xcb\x77\x7c\x01\x72\xc6\xaa\x05\xbf\x83\x25\x5f\xce\x47\xea\x68\xe5\xc7\xb8\xc8\x1e\x7a\xf4\x9e\x79\xc8\x25\xc6\x88\xba\xa3\xc8\x0f\x46\xbf\xbe\x10\x5d\xc1\x14\xf2\xdd\xd1\x34\x16\x97\xba\x11\x6d\x01\xcd\x49\xf3\xb1\x91\xd0\xcd\xc0\x35\x18\x13\x71\x74\x61\x62\xff\x50\x83\xd5\x06\xfc\x24\x76\xe8\x92\x0c\x7e\xcb\xf2\x38\xda\x84\x4c\x67\xd5\xf4\x06\x23\x1b\x41\x9b\xda\x4f\x48\x21\x28\xd4\x75\x22\x9d\x90\x0d\x4f\x86\x7c\x81\xce\x50\xba\xd1\x50\xb8\x2c\xb1\x0c\xed\x42\x78\x1b\x0e\x61\xee\x28\xee\xb2\x08\x3b\x83\xc9\xad\xe6\xe2\xb5\x78\xc8\x05\x16\xa4\xc3\x6b\x0e\xb7\x40\xd7\x70\x71\x37\x05\xb6\xc5\xf3\x6b\xc2\xe0\x1d\x78\xb4\xd6\x1f\xee\xc2\xe3\xb8\x7e\xc8\x58\x5c\x50\x68\x40\x58\xf8\x89\xed\xb5\xc8\x6f\x62\xfc\xfa\x2f\xa8\x89\xd8\xe1\xdc\x85\x85\x12\x8d\x56\x93\x71\x6f\x42\x74\x76\x1b\xc8\x12\xac\x3f\x38\x15\xdc\xcf\x6f\xef\x5c\x00\x4d\xe0\x4f\xaa\xda\x02\x25\xf2\x70\xb5\x18\x3a\xc0\xfd\x43\x1e\x83\x5d\xb8\xa6\x82\x44\xb8\x9e\xeb\x95\x50\x81\xf8\x70\xee\xaf\xf7\x45\x5e\x72\x60\xe7\xdd\x68\x1b\xf9\xd5\x2a\x18\xeb\x66\xbf\x3d\xe5\xc8\xda\xa8\x60\xed\x9b\xc3\x6a\x93\x27\xb5\x21\xe0\x4c\xd9\x4a\xf3\x7f\x60\x9e\x74\xba\x8a\x07\xde\x92\x8c\x60\x8f\x81\x62\xc4\xc3\xf2\x3e\x42\x4f\x85\x3f\xb7\xa1\xb0\x54\xf0\x38\x40\x80\xf8\xf2\xfb\x9d\x27\xa3\xb6\xbc\x58\x2b\x36\xe6\xc8\x89\x3f\x76\x85\xf1\xa7\xe4\x6c\x7f\x10\x33\xd7\xf4\xb8\x19\x60\x5e\x35\xfc\xaf\xf4\x3e\x6b\x8d\xee\xae\xfc\x10\xab\x47\x73\x16\xab\x06\x03\x8b\x06\x72\x5e\x82\xaf\x94\xb2\xb8\xf7\x50\xa5\xdc\xc7\x3f\x0f\xce\x92\x1c\x71\x32\x20\x51\xc2\xef\x56\x87\x50\x06\x6f\xf7\x61\x84\x61\xd5\x24\xe9\x9d\xca\x00\xeb\xf5\x0d\x63\x19\x2f\x6a\x4a\x8a\xe7\x33\xe3\x2b\x95\xd2\x20\xe6\xfd\xf2\x4c\x24\x87\x85\x97\x38\x65\xfd\x07\xae\x32\x74\xc7\x66\x82\x3f\xb4\x23\xfd\x36\x41\x97\x55\x63\x9c\xa6\xc2\xc7\xa5\x9d\x56\x6f\x91\x1f\x82\x6d\x07\xee\xd1\x77\x0d\x38\x75\xe9\xe9\xb7\x7b\xe3\x6a\x4b\x18\x21\x9d\x59\x86\xbb\x8c\x23\xad\xbb\xc5\xce\xcc\x88\x46\x67\x08\x64\x7e\xa9\xe9\xcf\x5c\xcf\xea\x30\xff\x8a\x19\x06\x42\xc5\x97\x7c\x23\xa1\x58\x9d\xb7\xa3\x04\x4e\x50\xae\xb1\xfa\x8d\x94\x89\x2c\xf7\x3f\xa0\x2f\x38\xf8\xbe\xb3\x92\x6e\x1c\x3c\x53\xd3\xc8\xb0\xea\x63\xe8\xbf\x31\x88\xae\x3f\xa2\xcd\xcc\xb1\x6d\x3e\x60\x17\xb3\xa3\xd1\x27\xa3\x88\x95\x5b\x7d\x7f\x2b\x1d\x5c\x59\xf6\xdb\xe7\x0b\x34\xde\x60\x74\xdc\x0d\x4f\x53\x0d\x5a\xcf\x41\x92\x44\x15\xfb\x1d\x68\x2f\x8f\x5f\xec\x78\x46\xdf\x76\x38\xb3\xfa\x33\xfd\xf8\xbe\x83\xfa\x10\xc6\x9a\xbe\xff\x09\xbb\x18\xfb\xbb\x7a\xc0\x79\xcc\xc4\xd6\x65\x19\x36\xac\x29\xf5\xeb\xb6\xce\x62\x5d\xa9\xa8\xf1\x19\x02\x5b\x4c\xa4\x63\x36\xd4\x57\x74\xdd\x3a\x17\xfe\x2d\xba\x3b\x34\x95\x6c\x2a\x08\x1c\x74\x26\xfd\x0b\xd3\x5a\x9b\xd8\x4f\x28\x50\xf9\x53\x76\x17\x15\x54\xae\x61\x8b\x68\x46\xbc\x9a\xbd\x8d\xfe\x34\x37\x87\xed\xc6\x8c\x8d\x1f\xc6\x1e\xcb\xfa\xe8\xf7\x8a\xf8\x01\x35\x38\x66\x11\x5f\x11\xf3\xe8\x22\xf6\x1a\x6c\xfd\xc9\x18\xd2\x82\x5a\xb7\x37\x8d\x5d\x4f\x03\x5b\x9e\xb2\x63\xe8\x81\xe5\x2e\xec\x95\x8c\x61\x0a\x01\xdb\x96\xf1\x08\x1f\x46\x7c\x63\xbe\xca\xb9\x4b\x3c\x00\x6d\xe3\x40\xe2\x2c\x94\xee\x07\x11\x43\xf0\x69\x87\xaf\xc4\x6d\x34\x75\x74\x18\xdb\x11\xab\x3d\x21\x66\x27\x33\x9d\x06\x54\xec\x09\xcc\xd6\x96\x89\xc4\x69\x96\x7b\x59\x22\xd1\xc5\x6a\x96\x9f\x23\xcc\x60\x08\x96\x40\x88\x21\x9b\x9c\x10\x82\x80\x7e\xc6\x0d\x23\x10\x04\xf0\xb3\x20\xe4\xe8\x64\x87\x06\xa2\x05\x0b\x1d\x3d\x8f\x6d\x8d\xcf\x39\xd6\x4a\xcc\xc1\x42\xfb\x8e\xe1\xaf\x31\xcf\xa6\xcd\xf8\x01\xcc\xb9\xe4\x1c\xde\x8d\xb9\xc9\xd2\xf0\x4e\x2c\x01\x9d\x81\xb7\x62\x15\xd9\x6e\xf8\x1e\xec\xbf\x58\x17\xfc\x1c\x9e\xe7\x1b\x8b\xff\xc6\x1f\x39\x84\x11\xcb\x88\xe4\xd1\xee\x44\x2d\xb1\xeb\xf0\x0d\xec\x15\xaf\xa8\x37\x04\xbb\xce\x9b\xd9\x30\x1b\x3b\xce\xad\x36\x3d\xc2\x86\xb8\x2b\x24\x7b\xb1\xab\x9c\x4b\x70\x2d\xf6\x3f\x8e\x2c\xf3\x17\xf6\x87\x13\x15\xe3\x8a\xcf\xe4\xcc\xf3\x69\xc6\x63\xc8\x17\x0e\x93\x70\x03\x59\x32\x9a\x46\xcc\x66\x1f\x38\x90\x8d\x8d\x97\x51\xba\x52\xd0\x8f\x52\x59\x6d\x0b\xfa\x50\x62\x32\x0c\xa2\xef\xc4\x65\xa2\xfb\xd8\x68\x51\x33\x34\x0e\x5b\x28\x3c\x9f\x51\x8f\x45\x08\xde\x6e\x5d\x80\x51\x04\xa3\x7c\xac\xb0\x36\xfe\xf8\x85\xb7\xb0\xbf\xdc\x0f\xa3\x0f\xe1\x72\x8e\xf3\xde\xd3\xc8\x65\x93\x57\xdb\x73\xe4\xa0\x41\x56\xb5\x15\xe9\xd7\x9d\xd5\xee\x45\x2e\x6a\xde\x0a\x56\x23\x9f\xd5\x63\x98\x83\xe8\x1c\xd5\x92\xb4\x2e\x34\x41\xb1\x26\xba\x01\x55\xca\x96\x7b\xdb\xa2\xd7\xc4\xdf\x16\xca\xb0\xe5\x42\x86\x65\x20\x76\x8c\xe7\xd8\x07\xc2\xaf\xea\xb9\xcd\x87\xe1\xa7\x35\xfb\xcc\x14\xf8\x7f\x95\x5f\xd4\x13\xe1\x7f\xe6\x59\xdc\x33\x88\x73\xe9\x52\xba\x0a\xd9\x69\x5a\x96\x7a\x09\xa9\xd7\x5b\x44\xcd\x44\xde\xa9\xeb\xbc\xbe\xa3\xeb\x95\xc3\x16\x7c\x47\x9b\x24\xff\x2c\x13\xb1\x50\xc1\xb0\xde\xc9\xf0\x86\x5e\xb0\x91\x0a\x47\x74\x7e\x29\x73\x86\xa3\xdb\x36\x2b\x9f\xc1\x85\x4d\x24\x79\x1c\x36\xd5\x09\xa9\xbd\xf0\xb5\xaa\xd4\x5d\x8b\x91\x79\x65\xdf\x23\x87\x90\x02\x93\x8b\xe7\x37\xe4\xbc\xe6\xcb\x82\x0c\xd4\x5f\x11\x6b\x99\x81\x3e\x17\x16\xf7\x8c\x86\x5d\x07\xbf\x34\x10\xf0\x9c\x7e\xc7\xd2\x00\xd8\xb6\xc7\x49\x69\x05\x2f\x6f\x7f\xce\xfe\x02\xc7\x35\x17\x50\xbe\xc2\xaa\xba\x83\x29\x1c\xf8\x4e\x65\x6f\xa4\x37\xe2\x5c\xba\xca\x53\x87\x88\xf5\xee\x0b\xbc\x50\x40\x39\x64\xc9\x45\xeb\x44\xae\xdd\x9e\xf0\xf4\xc3\xda\xfa\x13\xd0\xa7\xfd\x45\x25\x1a\xe8\xfa\x40\x88\x62\x17\xf4\xb2\xa7\x9e\xbd\x0d\xb6\x6a\x3f\x48\xc9\x80\xbd\x9a\x54\x29\xd6\x30\x59\xf3\x23\xe2\x0e\x7c\xae\xfc\x98\xe7\x4e\x64\x91\x71\xcc\x02\x0f\xa4\x4a\x75\xdb\xf2\x04\xba\x5e\x94\xb3\xcf\x59\x98\x9f\x6f\x6c\xff\x27\x18\x28\x68\xaa\x76\x16\x4c\x2c\x1c\xd0\xb9\xf3\x71\xca\x59\xc1\x36\xde\x47\x9a\x05\xd3\xc4\x4b\xa4\xef\x48\x0b\xe4\x0e\x31\x1e\x47\x69\xb9\xab\x59\x62\x2f\x09\xa7\x01\xda\x34\xdf\x97\xe3\x82\xa4\x8c\xb4\x24\x9f\x63\x93\x07\x69\x82\x4b\x94\x53\xed\x81\x82\xc5\xd4\xd2\x2a\x06\x5f\x45\x2b\xd0\x2a\xf8\x56\xf4\xf5\xfc\x03\x3c\x01\x63\x2d\x73\x2c\xf7\x2f\x33\x7a\xf7\x09\x2e\xc8\x2a\x8a\x72\xe1\xfc\x04\xdf\x7b\xcd\xe3\x10\xf0\xee\x79\xef\x38\x13\x50\xfb\x11\x77\xc9\x3b\x58\xce\xde\x1e\x81\x27\xc3\xae\x8d\xcd\xaf\x62\x74\x54\xf6\xf3\x27\x33\x43\x35\x77\x78\x6a\xe6\x4d\xfe\x0c\xde\x0c\x96\x82\x01\x72\x4b\xc0\xec\xdd\xeb\xb9\x73\xa1\xf4\xcd\x47\x39\xed\x30\xea\x79\x8a\x13\x88\xd4\xcc\xdb\x4f\x3e\x44\xff\x8d\xb8\x4d\x0e\x60\x2f\x07\xec\xf8\xb3\x90\x3b\x2d\xaf\x78\x5a\xe4\x4d\x85\x03\x6f\x06\x0a\xa8\x73\xb8\x4d\xa8\x33\xf7\x0c\xd7\x0f\xcd\xa1\x87\x72\x2e\xa3\xe7\x52\xbd\x39\x19\x58\x70\xe4\x3f\xce\x18\xec\xac\xe7\x72\x72\x3f\x9e\x34\x8f\x41\x66\x12\x23\x47\xfc\x47\xc6\x12\x73\xf7\xb4\x73\xdf\x73\x3e\x34\xf5\x71\x65\x1c\x43\xf9\x3a\xee\x42\x8e\xbf\x6a\x2f\xe7\x08\xf9\x81\xb3\x99\x93\x4a\xb6\x53\xff\xe3\x8c\x22\x95\xbb\xe6\x91\x4d\x24\x2b\x72\x06\x99\x42\xa6\xaf\xd5\x90\x73\xc8\xf0\x79\x81\xec\x6b\xe4\xaa\x91\x7e\xec\x0b\x6c\x56\x77\x19\x77\x8e\x44\xdf\xb0\x90\x33\x20\x3e\x59\xf2\x9e\xb3\x4d\xf4\x55\xd1\x4d\xfe\x11\xcd\x61\x2b\xc8\x26\xe1\x16\x0a\x48\xc6\x08\x2a\x77\xde\x23\x2d\xf9\x6f\x23\x66\xb1\x0f\xf3\x5d\x3d\x7e\xb1\x31\x5e\xc2\xbc\x71\x6c\x1f\x6e\xc1\x48\x09\xdb\x93\x3c\xdf\xb1\x8a\xfc\xaa\x3f\x53\x73\x91\x6c\xd4\xad\x37\x9e\x22\xa3\x34\x9d\xd2\xfb\xec\xdf\xea\x11\xf8\x78\x76\x8b\x6a\x4b\x41\x08\x3b\x4d\xd1\x94\x3c\x92\xed\x20\x7b\xb3\xa9\x87\x78\x2e\x9d\xe0\x31\x9e\x68\x15\x8f\x99\xdb\x47\x40\x82\x0b\x23\x3f\x12\x28\x77\x6f\xeb\x78\x72\x61\xcd\xba\xca\x1b\xec\x87\x95\x17\xf5\x23\xd9\x3a\xf3\x66\xf1\x16\xb6\x5f\x69\x37\x72\x88\xf8\x52\x3c\x3c\x6f\x35\xd1\x6b\x08\x4a\x5a\x4b\xe0\xda\xe4\xb0\x20\x22\xa4\x28\x60\x8d\x35\x31\x4d\xfe\x64\x6e\x08\xfe\x42\xb2\x6a\x94\x0f\xfe\x9a\x2f\x6e\x52\xb3\x7b\x3b\x4b\xcc\x02\x76\x5e\x5b\x8a\xe6\x3c\x7b\x7a\xf3\x58\xa1\x27\x71\xb4\x5e\x04\x9d\x23\x98\xd5\xb7\x72\xf2\x08\x8f\x0a\x8b\xed\xf5\x84\x45\xc9\x8b\x8d\x9f\xf1\xcb\x86\xdc\xd5\xa3\xf1\x7a\xb5\x6e\x4e\x3f\x4e\xc8\xb7\x8f\x0a\xc6\x79\xc2\x71\x8d\x0a\xb6\xb2\xef\x7c\xb9\x82\x1d\xd0\x13\xa2\x7e\x41\x3c\xed\x28\x16\xec\x24\x64\x2d\x4d\x10\x40\x78\x35\xf0\xb2\xbb\xf0\x9f\x35\x8e\xdb\x87\xe3\x87\xcd\xcc\x8d\xd9\xb8\xaa\x38\xd2\xbd\x1c\x4f\xd3\xf6\xcf\xe1\xe3\x3e\x8a\x81\x51\x09\xb8\xbf\xd0\xd4\x70\x84\x9d\xb7\x7f\x45\xd9\x45\xf6\xa4\x01\xa6\x7a\x0d\xd1\xda\x0b\xf3\xfb\x89\x4d\x9d\xcb\xc0\xdd\xf8\xe7\x96\x8a\x6c\x47\xbc\xa9\x7e\x28\x41\x8e\xe7\x55\x29\x36\x5a\xe2\x1e\xa5\x87\xdd\x93\x71\x6b\x3d\x36\x07\xc1\x1e\x29\x8f\x8c\x52\x61\xf7\x84\xf7\xda\xd9\x8a\x49\x79\xf7\xaa\xff\xc8\xde\x17\x0c\x37\x7c\x92\xde\x2a\x74\x90\x5c\x96\xdc\xa5\x84\xa1\xa7\xc5\x0f\xa8\xba\xbc\xd7\xa2\x4b\xb4\x7f\x49\x42\xe1\x21\x46\x51\x68\x8b\xa0\x93\xb5\xde\x7d\x3f\xbf\x04\x9a\x64\x7f\x9d\x27\x44\xbc\x2c\x92\xb8\x9d\xe8\x97\xb6\x06\x39\x52\xf8\xa9\x7a\xa3\xac\x80\x72\xdb\xb0\x45\x9a\x45\x3d\x22\xf1\x91\x50\x68\x8d\xa8\xbf\x18\xa1\xef\xc9\xcb\x17\xa1\x8c\xbb\x49\x53\x85\x4c\xd6\xa2\xd0\x2d\x02\x08\xd4\xba\x67\xf1\xa9\xb0\x9d\x7d\x05\x2f\x17\x79\x6e\x11\xc2\x2d\xc7\xd6\xb4\x9e\x90\xbd\xa4\x3b\x55\x89\xa5\x1f\xe9\x57\xf4\xcd\x92\x5f\x0c\x9e\xb8\x4c\x62\xc9\x74\x40\x5a\xc4\xd3\x98\xef\x72\x9f\x89\xe6\xb2\xee\x26\x9a\x85\x0e\xe0\x9b\x8d\x3f\x05\x6e\xf0\x44\xf7\x39\xfc\x75\x48\x98\x3d\x9b\xe7\x8b\x1e\xb2\x88\xe3\xa2\x58\x5b\x4b\xbc\xf4\x14\x9c\x5b\x39\x55\xf2\x0a\xee\xd6\x79\x49\xc6\xc3\x9f\x44\x11\xe2\xa5\x88\x3b\x8c\x8b\x22\x11\x75\xce\x55\x61\x1a\x3a\x69\x7b\x87\x80\x89\x36\x6e\xdc\xc8\x37\x61\x7e\x6e\x06\x5e\x1f\xf6\xda\x3e\x9c\x7b\x1c\xef\xb4\x90\x71\x6d\xf0\x5b\x4d\x05\x92\x17\x64\x8c\x39\x5e\x32\x9a\x5c\xaa\x29\x11\x2f\x62\xff\x16\xdc\x14\x6d\x65\x9f\x84\xdc\x84\x6c\x76\x7d\x76\xab\xa0\x86\x5d\x9f\xd0\xc5\x3f\xc6\xee\x09\x11\xf3\xbe\xb0\xf7\xbb\x2d\xe0\xd9\xb1\x4f\xda\x7b\x70\x57\xb2\x2f\x58\x7c\xe6\xf0\xd9\xce\xf5\x26\xc9\x5c\x51\x5d\xe9\x6b\xb1\xaf\xc8\xba\x48\x28\x4a\x15\xa6\xf0\x2d\x84\x6a\x41\x3b\xab\x4c\x70\x54\x60\x99\x15\xce\xff\xc0\xc7\xb7\xc9\xf8\x33\x79\x3f\x82\x07\x78\xe1\xbc\x9d\xab\xda\xb8\x2c\xee\x41\x7b\x0f\x8e\x8a\xf3\x77\x38\x4e\x3e\x24\xd9\x35\x39\x62\x7f\xed\x2a\xd3\x1d\xd1\x56\xf5\x3b\x85\x49\x08\x15\x95\x70\x76\x09\x1a\x54\xf6\x8c\x30\xfe\x1d\x45\x79\xc6\x06\xfe\x44\xb9\x4b\xdc\x35\xde\x06\x69\x5d\xd0\x6e\x2e\x26\xfe\x6f\xe5\x10\xa7\x4d\xb4\x72\xd6\x7d\xf2\xa2\x60\xd5\xf0\x33\xa4\x23\x37\xae\x92\x14\x6d\xad\x9c\x60\x98\x22\xd4\x96\xdf\x97\x0d\x13\x5c\x2c\xad\x61\x03\xfc\x7f\xc5\x1b\x68\x0e\xfc\xe5\x86\x2b\x69\x31\xbc\x1c\x5d\x7c\xac\x33\xb7\x5e\xdd\x17\x38\x8a\xf3\x44\x79\x6b\xc5\x79\x8e\x9d\xec\xd8\xac\x54\x72\x83\x78\xc7\xf0\x5f\xec\x32\xfe\x68\xf3\x1a\x91\x6d\xab\x46\xfb\x52\xe8\xd6\xd4\x27\x7e\x22\x48\xab\xef\xc5\x87\xf1\x55\x35\x08\x25\x9c\x77\xb0\x72\x66\x6a\x03\xf7\x47\x99\x7a\x6b\x27\x77\x95\xe9\xcc\xfa\xc3\x1c\xba\xae\x66\xf9\x10\xd9\x5e\xb4\x78\xe6\x25\xf6\x6d\x59\xd4\x08\x0b\xf6\x52\x01\xad\xdc\x45\xf8\xaa\x9b\xab\xf9\x21\x1c\xd7\x11\x2d\x1e\x21\xf0\x68\xf9\x84\x2d\xe1\x27\x37\x46\x17\x8a\x79\xe2\x5a\xce\xae\xaf\xdc\x03\x95\xe0\xd6\xa9\x9c\xaf\x65\x0b\xd7\xaf\xe3\xb8\x1b\xb7\x2f\x4f\x24\x0b\x35\x2b\x66\x96\xb1\x4d\xf2\x92\x11\x33\x89\xe7\x82\xbf\x65\xa1\xc2\x43\xfd\x6d\x9a\xd5\x82\x47\xbd\xde\xa2\x2d\x82\x51\x9d\x52\x54\xc4\x5f\xd8\xaa\x2f\xf8\xc8\x0b\x6a\x4c\xdd\x55\xc0\xa5\xd7\x3c\xdb\x52\xc3\xa9\xa9\x18\x1f\x70\x9b\x7c\x58\xdc\xba\x7c\x1a\x39\x4d\x7b\x7f\xa6\x9c\xbd\x4e\x61\x18\xb1\x89\x20\x85\xeb\x4b\xa2\x4c\x16\x79\x8c\xa2\x29\x06\xff\xfc\x12\x81\xa3\x4e\x56\xd0\x0f\xaf\xd1\xdc\x28\x7c\x91\x57\xa0\xb6\xa3\xfa\x27\x3f\x56\x6d\xa0\x0d\x6e\xfe\xac\x48\x64\xec\xf2\x3d\x2f\x4b\x64\x2d\x5d\xdc\x22\x09\x84\x66\x4d\xf3\x15\xcd\x46\xe2\x00\x40\xe0\x86\xfe\x57\x7c\xdc\x88\x16\x86\xaa\xe4\xfa\x21\x8a\x1b\xbf\x59\x37\x8b\x3a\x13\x3a\xaa\x29\xa4\x4d\xc9\x1b\x5e\xb4\x9f\xbe\x2a\x99\x50\x7e\x64\x50\x37\x97\x28\x6c\x98\x77\x7c\x65\xb2\xf9\xe0\xae\xc5\x98\xc4\x0e\x1e\x39\x6d\x99\xf0\x2f\xf2\x1a\x00\x04\xb3\x31\x8f\xe2\x25\x86\x5f\xb4\x00\xe5\x7f\xfa\xcd\xb4\x4f\xfc\x85\xda\x66\x7a\x0d\xb4\x5e\x63\xc5\x48\xcd\x95\x17\x25\x32\x83\x93\xa7\x28\x8d\xac\xa8\xcd\xbe\xf2\x43\x20\xe1\xbb\x51\x7a\x0f\x3a\xbc\x38\x52\xfc\x08\x99\x39\x6d\xb6\xf0\x22\xda\x0a\x00\xfc\x6f\x58\xa5\xb1\xde\x30\x09\xfc\xab\x68\xd5\xe5\x41\xb9\xdc\xcf\x9a\x1b\xd0\x10\xb8\x4c\xbd\x0e\x76\xc9\x31\xa8\x0c\x70\xfd\x8e\xd5\x8a\x7b\x48\x48\x24\x21\x9f\x88\x8e\xf4\x39\x29\xf5\x46\x0f\x2e\x1e\x29\xde\x82\xc9\xa7\xb9\x08\x43\x71\x0c\x00\xf8\x0c\xfc\xa0\x81\xa5\xb7\x27\x62\xe5\x85\x5a\x25\xb1\x83\xb3\x57\xfd\x87\x48\x62\x4d\x2e\xca\x26\xa2\xb3\xf5\xca\x0b\x44\x52\x52\xb8\x62\x2e\x21\x8a\xe8\x91\x25\x13\xc7\x7d\x96\x48\x4c\xc4\x6f\xd7\x26\xd1\x20\xdb\x7d\x9a\xbd\x60\x3f\x9b\x01\x00\xbc\x77\xc4\x0f\x9d\xab\x8e\x23\x18\x26\x45\x35\x0f\xf9\x4d\xec\x9f\xea\x4d\xfc\x75\x0c\x9e\x6a\x80\x77\x20\xcb\x47\x39\x9b\x17\x99\x38\x4f\x4e\xe7\xfe\x17\x3e\x28\xed\xe3\xb6\x7b\xc3\xe2\x6f\xdc\x58\xd7\x50\xd1\x4c\xce\x97\x69\xf6\x82\xd9\x1c\x3a\xb0\x92\x17\x46\xae\x50\x2b\xb5\x06\x55\xa7\xe8\x83\x66\x94\xb2\x0b\xd7\x14\xd1\x15\x25\xb4\x04\xe5\x3d\xf9\xee\x8c\x18\x85\xaf\x6c\x59\x02\x4b\x66\x94\x8e\xda\x14\x27\x79\x2c\xbe\xbc\x2e\x47\xbc\x50\x84\x2c\x2a\x17\x46\x08\xad\x6d\xdf\xf1\xb7\xf2\xd3\x80\x2a\x2e\xc9\x79\xa7\xb2\xd3\xce\x2a\xcd\x11\x94\xaa\x29\xc5\x6a\x34\x55\x75\xc3\x58\x4f\x89\x55\xae\xd3\x57\xa6\x71\xe5\x26\xad\x22\xfe\xaa\xf4\x9b\x9a\x1e\xfa\x5e\x12\xa8\xf2\xf2\xda\x24\x12\xcb\xcf\xba\xdc\x12\xf4\x4a\x17\xdb\xea\x79\x47\x44\xeb\x80\x27\x9c\x17\x3c\x48\x31\x5f\x53\xd9\x00\xf0\x6a\xd5\x63\x6b\xb3\x60\x44\x45\xa9\xea\x29\x90\x28\x2e\x99\xff\x97\x7a\x47\xee\x5a\xfa\x25\x6e\x8b\x54\x68\x7a\xbc\xb1\x42\x7c\x4d\x5f\xee\xe9\x2a\x9a\xaa\x19\xe6\xfc\x49\xe0\xa7\x9c\x63\x3b\x93\x17\x25\xb9\x31\x6c\x18\xa7\x90\x7f\x54\x1e\xa6\xa1\xb4\x46\x72\x2f\x16\xdd\x6e\x82\xa0\x26\x55\x50\x3d\x2d\xff\x84\xa2\xb2\x26\x28\xd5\x49\xf6\xb5\xe2\x5d\x6c\x87\x34\xa2\x2c\x63\xe3\x14\x71\xb1\xa9\x62\x6d\x97\xf0\xba\x8e\xe2\xac\xe6\xff\x51\x7d\x98\xfa\x96\x37\x4e\xfa\x67\x98\x2d\xc7\x49\xe0\x2b\x2b\xd5\x04\x74\xbe\xe0\x3a\x16\x35\xb4\x3d\x82\x2c\x54\x36\xcd\x25\xf9\x2e\x8a\xf4\x86\x79\xbb\x8c\xb2\xee\x9a\x82\xd8\x55\xd2\x91\x15\xec\x90\x66\x71\x58\xe9\xfa\xb5\xdb\x84\xa4\x41\xea\xbc\x85\x5f\xa9\xa6\x4f\xbd\xcd\x6d\x97\x3d\x1e\xb6\x91\x3c\x2a\x90\x0a\x7a\x6b\xfd\xf2\x74\x58\x5e\xd5\xe9\xfc\x3e\x9a\xac\x22\xaa\xe0\x6e\xe6\x89\xb2\x21\xca\x94\x24\xdf\x92\x45\x54\x66\xd4\x54\x63\x26\xed\xef\xfa\x41\x1d\xc1\xd8\xe3\x46\x51\x67\xb0\x8c\x0b\x76\x2b\xe7\x43\xe6\x89\x4d\xd2\xa3\xc8\x0d\x00\x10\x89\xb0\x2c\x41\x58\xcd\xe1\x42\x3b\xcc\xa6\x6a\x33\x65\x3c\xcd\xcb\x7c\x87\x3a\x22\x93\x55\xb6\x93\x66\x95\xf8\xad\xf8\x1c\x7d\xed\xe6\xab\xc6\xc9\x0c\xe9\x7a\x8e\x6e\x25\xcb\xda\x2d\x5c\xed\x0c\xd6\x2f\xd8\xac\xf8\x00\xa7\x4d\x1c\x94\x9a\xd0\x08\x00\x10\x65\x61\x2a\xfe\x8d\x9a\x40\xea\x51\xb4\xa5\xf2\x06\x4d\x42\xbd\x6f\x4e\xa3\x47\x67\xda\x97\x7e\x63\xb8\x24\xd6\x16\x67\x33\x1d\x36\x4b\x0d\xbd\xac\xc0\xf5\x1b\xb4\x77\x40\x99\x9b\x43\xd1\x3d\xe8\xd9\x02\x3f\x45\x17\xb2\x7d\xe2\x69\x69\x2a\xfa\x0d\x00\x44\x1e\xd8\x13\xde\xd3\xea\x18\x30\x04\x39\x54\xf1\x1f\xb8\x97\xf2\xad\xbc\x02\x5a\x98\x11\x5d\xea\x0a\x95\x6f\xff\x62\xaa\x80\x3d\x22\xdf\xea\x3f\xc2\xdf\x03\x0e\x69\xe7\x20\x57\x56\x9d\x2b\x5a\x85\x36\x2d\x98\xaf\x98\x8d\x15\x4d\x7c\x29\xb9\x85\xeb\x01\x40\xd8\x81\x3f\xe3\xbe\xaa\x22\xb1\x1f\xf0\x85\x0a\x47\x7c\x0e\x65\x64\xd9\x10\xbe\x26\x9d\x59\x92\x80\x47\x6e\x5f\x61\xbc\x86\x93\x91\x3e\xfa\x65\xf8\xb5\x00\x57\x4d\x1a\xe1\xbd\x2a\x5b\xc5\x25\x4a\xe7\xff\x93\x83\xec\x61\x93\x2c\x24\x5e\xec\x5d\x00\x20\x1c\xcf\x9e\xcc\xa1\x54\x0e\xf1\x5c\xa0\x34\x33\x8d\xfb\xb0\x60\x6f\xd9\x54\xae\x24\x6d\x73\x71\x2d\xd7\x2b\x61\x85\x71\x1e\xe7\x6f\x44\xa2\x0e\xe3\xdc\xf7\xcf\x57\xf7\x72\x4e\xad\x7c\xa5\xbc\xc5\xa9\x9f\x7f\x5a\x76\x89\xc3\x9e\x64\x27\x36\x72\x96\x00\x80\x20\x9d\x5c\xc7\xde\x59\xf1\x4c\x7e\x8e\x85\x96\xeb\x65\x1f\xf3\xde\x96\xae\x93\x0d\x4f\xed\x30\x1d\x97\x8e\x8d\x3f\x6e\xf0\x92\xcc\x0c\x5f\xa0\x35\x8a\x3d\xfc\x28\x45\x57\x45\x51\x2b\x57\x2b\x7e\x0a\x43\xe7\xe7\x4a\xbf\x0a\x96\x4e\x5a\x2c\xda\xc7\xbb\x04\x00\x7c\x21\xe7\x2a\x1e\x5b\x11\x62\xf4\x64\x94\x96\x7d\xd6\x57\xe6\xfa\x97\x18\x74\xc3\x77\x39\x98\xec\x34\x11\x71\xbb\xf5\xe2\x22\x6d\xd8\x4b\xcd\x0b\xe5\x0d\xdf\xcc\x22\x67\xc5\xf0\x15\xd9\x8a\xcd\xd2\xbf\xf3\xde\x4b\x23\xc4\x97\x26\x59\x88\xec\x85\xeb\x01\x80\xf7\x94\x37\x0f\xad\x36\xbf\xac\x22\x69\xbf\xca\x64\x15\x81\xd9\x75\x25\x0e\x65\x5f\x77\xd6\x19\xab\x4b\x84\xb1\xa3\xf4\xe3\x4c\xc3\x43\xdb\x34\xf9\xfa\x74\x9f\xed\xaa\x4e\x8d\x79\xb9\x40\x7e\x51\x25\x9b\xe7\x2d\x19\x92\x7b\x4d\x3c\x24\x2c\x16\xe3\x00\xc0\x4b\xe4\x7b\x20\x2f\xcc\x75\xf5\x11\x34\xbf\xb2\x2d\x35\x67\xb3\x3e\x17\x7f\xac\x5a\xb4\x13\x30\x66\x9b\x33\x62\xf2\x75\x17\x4b\xf9\xa1\xce\x9a\x65\x26\xdc\xfb\x95\x8a\xaa\x5f\xbf\xdc\x49\x2e\x53\xb7\xce\x7d\x27\xc1\x15\xa7\x26\x96\x08\xa3\x25\x2c\x00\xe0\x4d\xe4\xd7\x20\x61\xe6\x94\x66\x2a\xb5\xa9\x6c\x5a\xc3\x40\x56\x4a\xf1\x9e\xda\xab\xc9\xb0\xd1\xb9\xea\xf4\xd6\x1f\x3a\x81\xd9\xb0\xf1\xb0\xfa\x51\xe9\x2a\x6f\xa3\x6a\xae\x51\xb5\xec\x7f\xf2\x15\x5a\x72\xee\x31\xc9\x4c\xd5\xcc\x89\x6a\xc1\x07\xe9\x3a\x00\xe0\xd6\xf3\x5f\x52\xbf\x76\x3e\xcc\x27\xb3\x25\x6d\x64\x01\x37\x25\xbf\x79\x51\xa1\x22\xae\xbb\xfe\x02\xe5\x50\x78\x52\xcd\x26\xda\xfc\x00\xb4\x42\x43\xef\x59\xdd\x58\x5a\xc1\x04\x5d\x62\x8c\xb9\x20\xc5\xae\x5c\xf3\x0d\x96\x58\xd7\x29\x37\xa1\x6a\x00\x90\xd4\xe0\xb3\xa8\x07\x3a\xe3\x0b\x8f\x65\x6f\x6b\xb3\xa6\x54\xa6\x6c\x6a\x3a\x48\x15\xc4\x29\xea\x73\x68\xc2\x70\xef\xea\xf7\xf4\x3d\x01\x3b\x2b\xd6\x31\xa7\xae\xd6\x95\x6e\x66\x55\xb9\x84\x1b\x9d\xa0\x6d\x76\x35\x9a\xfd\xc8\x62\xeb\x21\xe5\x4c\xf4\x25\x00\x48\x50\xdc\x99\x8a\x74\x5c\xa1\x39\x67\xcf\x6a\xd5\xd0\x9e\xa7\x4c\x6b\x8a\xa2\x57\xc5\xed\xac\x1f\xc1\xa0\x87\x4f\xae\x96\x33\x99\x01\xde\xe6\xfb\xac\x9a\xd5\x48\xc9\x37\xf0\x8f\x8b\x9f\xe1\x26\x4c\xb3\x6b\xd2\xb0\xd0\x61\xd6\x8f\x14\xf7\x30\x06\x00\x48\xfc\xf0\x6c\xca\xdb\xf6\xdb\xa0\x4f\x56\x49\x4b\x0b\x58\xba\xd3\xd0\x88\x82\xbf\x62\xdf\xd4\xad\x84\x38\x9b\x3a\xaa\x0e\xc1\xcb\xfd\x5f\x9b\xa7\x21\xc3\x57\xaf\x2b\x71\x43\xbe\xbb\xcc\x33\xcc\x47\xbf\xd8\xf5\xaa\x2f\xe3\xc0\x18\x7b\xc5\x7a\xfc\x19\x00\x88\x9b\x88\x08\x4a\x70\xbb\x05\xc6\xce\xfc\xdd\x7c\x0e\x33\xee\x1c\xde\x60\xc0\x7a\x62\x33\x6a\xb7\x60\x8f\x37\xf9\x54\xbe\xc4\x57\xf8\x0b\xcb\xd7\xe3\x25\xee\xef\x8b\xd3\x09\x7b\xe7\x5f\xfa\x9d\x44\xbd\xdd\x3e\xb5\x1d\x7b\xcd\x98\xed\x72\x35\x5b\x0a\x00\xa2\x6f\xec\xac\xc2\x88\xb6\x00\xee\x92\xcc\xa9\xcd\x56\x9c\xe7\xc9\xab\xea\x2f\x70\xcc\x31\x1d\x35\x52\x4e\x41\x58\x65\xe5\x7c\x4e\xbc\x3f\x50\x86\x71\xb6\xb8\x73\x4d\x15\x9c\x44\xe7\xfd\xba\x2a\x4e\x8e\x5d\x6f\x51\x0a\x87\x31\xc6\x24\xbb\xcf\x59\x01\x00\x22\x1f\x92\xc8\x7f\xdf\xba\x44\xaa\x4d\x3f\xd4\x34\x5e\xf2\x3e\xe9\x75\xdd\x3d\xc9\x92\xad\xa2\x6a\x8d\x78\x77\x68\x45\xc5\x02\x51\xa3\xdf\xa2\x52\x42\xf8\xd5\xed\xa1\xb1\x5e\x18\xe0\xbc\x53\x5b\x2f\xe0\xd8\x35\xaa\xb2\xf8\x2d\x63\x6e\x4b\xdf\xf2\x60\x00\x10\x6e\xe4\x3c\xce\xdb\xde\x52\xa0\x1d\x4a\xdb\xda\xb8\x49\x03\x25\x76\xd5\x4d\x57\x4f\xdb\x92\x51\x75\x4a\x55\xb5\xb1\xdc\x1c\xab\x5c\xe1\x1b\x56\xd2\x2b\xef\x77\x5b\x62\x78\x24\x5b\xe9\xf4\x4a\xf3\x48\xa2\xb0\x43\x94\xf5\xa2\x03\x63\xbe\x48\xdd\x04\x12\x00\x10\x28\xb8\xdf\x73\x57\x37\x1f\x2b\xdb\xb3\xdb\xbd\xa1\xbb\xe4\xe1\x76\x55\x2d\xdf\xf4\x24\x3a\xae\x6a\xb9\xe1\x58\x48\x6d\x79\xbf\xce\xe8\x53\x58\x62\xaf\x49\x5a\x05\x19\xa2\x8b\x86\x3b\xed\xd2\x84\x2a\x0a\xed\x9c\x94\x63\xa5\xa6\x31\xef\x25\x15\xa2\x1d\x00\xc0\xff\xcb\xbb\x9d\x33\xd0\xcc\xad\xfc\x9b\xda\xd5\x90\x63\xbe\xb2\x7d\x62\xad\x4f\x19\x3f\xea\x51\xe5\x93\x92\x69\x21\x9e\xe5\x99\x46\xbd\xcf\x94\xe2\x8b\x7a\x60\xd5\x52\xc3\x28\x4d\x80\xd3\x12\xf5\x6f\x95\xb7\x9d\xa5\xa2\x5f\xf6\x6c\xcc\x17\x49\xa4\x78\x29\x00\xf0\x5b\xf8\x6e\x39\x91\xcd\xbe\xb5\x75\xa9\x41\x0d\xf3\xaa\xdd\x13\x1a\x6a\x3e\x54\xd4\x44\xf1\x2a\x95\x65\xdf\x83\x5f\x94\x8f\x2d\x59\xea\x7d\xa9\x98\x6a\xdc\xb8\xf2\x9f\xbe\x51\xe7\xe6\x34\x51\xad\x2b\x3a\x69\x37\x4c\x11\x21\xff\x33\x76\xa2\xf8\x99\xf8\x2a\x00\xf0\xfd\xf9\x59\xd9\x9b\xfa\xf2\x0a\x3c\x77\x8d\xe8\xbe\x51\x38\x7f\xdb\xec\x8e\x75\x14\xdb\xc8\xa3\x2d\x7c\xaa\x67\xe0\xdb\x86\x52\x9a\xce\xab\xb4\x86\xce\x58\xb8\x1c\xaf\x18\xc1\x7c\xb6\x70\x46\x49\x28\xf8\xc8\x56\xa3\xf7\x87\xff\x8e\x7e\xa3\xfa\x83\x3e\x01\x00\xa9\x19\x4f\xcd\x76\xdd\xf3\x86\x92\x91\xf2\xb2\x3b\x8d\xea\xba\x6d\x6c\xfb\x15\xea\xcf\xc8\xae\x96\x05\xb4\x77\x81\x0f\x1b\x7c\x18\x53\xbd\xb4\x35\x33\x99\xd4\xe5\xb0\xb9\x8b\xf5\x6f\xa1\x7d\x89\x05\xd4\x67\x5b\xae\x1f\x81\xa8\x2c\x27\xaa\x8e\x63\x8b\x01\x40\x5a\x80\xef\xca\x06\xf6\xe4\xd2\xfa\x52\x8e\x76\x7d\xa4\x27\xc6\x7f\x68\xcf\x62\x8c\x8a\x2c\x6e\xde\xcb\x38\x19\x78\xba\xfe\x16\xf3\x88\x17\xa7\x7a\x2f\xeb\xfd\x72\x8a\x39\x06\x0a\x59\x68\x5f\xdc\x06\x1f\xb6\xad\xd7\x0d\xa0\xf1\x96\xcb\x54\x1c\xac\x15\x00\xa4\xcb\xf1\x92\xac\xea\x5e\x1a\xc8\x4e\xa1\x74\x0d\x07\x2f\xc6\x57\xb6\xf1\xa1\x85\x91\x5b\x9a\x1e\x42\x8d\x81\xca\x7a\x4b\x38\xce\x2b\xa6\xea\x0d\xe2\xba\x3c\xa6\x5c\x8a\x2e\x58\x38\xc3\xf4\x01\x73\xb6\x3d\xa0\x1b\x83\x7b\x5b\xd2\x94\xf7\x89\x31\x00\x20\x51\x11\xac\xac\x15\x3d\x24\xa6\x4a\x19\xd9\x39\x09\xab\x8b\xf7\x69\xd5\x62\xfd\x11\xbf\x1b\xbf\x61\xcf\x03\x03\xeb\x1c\x71\x4f\xaf\xe9\x55\xe3\xf0\xba\xe5\x8b\xca\x3a\x88\x25\x0b\xc7\x9b\xe6\x11\x87\x6d\xef\x68\x37\xb2\x13\x2d\x0f\x2b\x17\xb0\xab\x00\x40\x7c\x95\xad\xc8\x24\xbb\x3b\xb8\xd6\x3b\x93\x3a\xfc\x39\x47\xe2\xea\x5b\xf6\x73\x58\x11\xac\xc6\xb9\x9c\xb0\x0d\x37\x6a\xa3\x39\xde\x9e\x83\x95\x6b\x39\x9e\xcb\x9e\x96\xde\xe5\x84\x2e\xf8\x6c\x8c\xe1\x64\xda\x7e\xd4\xf0\x38\x84\xd5\x58\x45\x3a\xc7\x03\x00\xc4\x93\xc8\xf2\x8c\x2d\x5d\x1d\xd2\xb1\xc9\x41\xed\xbe\x92\x84\xd8\xaa\xe6\x3d\x62\x63\xb8\xa2\xc1\x46\x74\x7b\xc3\xb8\x1a\x7f\xd1\x72\xcf\xe9\x15\x2e\x42\xd1\xb2\xc2\x92\xcb\x82\x27\x0b\xf6\x19\xc2\x04\xbe\xd3\x00\x35\xc6\x47\xad\x52\xe4\x19\xbc\xed\x00\x20\xb2\xe1\xbc\x49\x5f\xd1\x79\x48\x73\x78\xc7\xaa\xb6\x44\x75\x5a\x4c\x5d\xd3\x2d\xd5\xdf\x4d\xb5\xf5\x2b\x95\xa5\xeb\x7d\xab\x77\x28\xd6\xaf\xcd\x32\x87\xc9\x1e\x2f\x7d\x55\xfc\x5b\x0a\x2d\xa0\xe9\x69\xe2\x5f\xd3\x86\x17\x35\x88\x42\xad\x8a\x65\x66\x81\x17\x00\x08\x37\x73\x9f\xa6\x39\x76\x8e\x29\x9d\x9b\x14\xd4\xda\x5c\xec\xb5\xf5\x78\xd3\x12\xa3\x57\xd8\x95\x3a\x52\xef\x1e\x80\x56\x35\x68\x17\x79\x1c\x29\x37\xab\xa7\x2c\x4d\x2b\x4e\x50\x3e\x5b\x60\xa7\x3b\x27\x17\xdb\x5e\x2f\x1a\x26\x79\x6c\xd5\x2b\x1b\x26\x7c\x04\x00\x82\x3e\x5e\xd7\xee\xa6\x8e\x93\x15\x63\x13\xaf\xb6\x26\x95\xdd\xdb\xba\xab\xf1\x76\x89\x26\x8c\x51\xe7\x6c\xf2\x0f\x70\xa9\xda\xa4\x7f\xe6\x81\x96\x07\x69\xb1\xa5\xcb\x8b\x47\x15\x7d\x9e\xff\x4b\xc7\x54\x2e\xb6\xbd\xa4\xaa\x93\x8d\xb3\x3a\x27\x6d\x16\x95\x02\x80\x60\x17\xdf\x62\xb7\x77\x07\x51\x9d\x98\xc8\x6c\xb5\xaa\xf8\xb4\x75\x52\x23\x56\x9e\x1f\xb6\xac\xf6\x44\xc9\x23\xff\xb7\x95\xff\x33\xf9\x79\x6c\x2e\x7b\xa0\x57\x2e\xb5\x31\x55\x69\xfa\xe6\x7f\xd2\x59\xab\x94\xb6\x2f\x54\xee\x72\x4b\xab\xff\xa4\x3e\xe2\x95\x00\xc0\xff\xce\x5f\x91\x3a\x7d\xdf\xc4\xc2\x19\x09\x27\xfb\x13\x0a\xef\x46\x7d\xe8\xd1\x52\xda\x43\x6e\x76\x98\xa8\x07\x7d\x53\x5a\x76\xd2\xad\xdc\x79\xf5\xf7\x18\xf2\x45\xff\xaa\x47\xb0\x82\xe7\x50\xcb\x6e\x41\x3e\x93\xdf\x1a\xb7\x20\x51\x23\x05\x6a\x12\x1b\x07\x00\x32\x14\xa7\xa7\x8e\x1b\xd4\x50\x3d\x12\x8e\xf5\xbd\xa2\xde\x8c\xfa\xd8\xb3\x84\xc6\x0f\xb9\xdd\xe1\x4e\xdf\xed\x9b\xde\xfc\x8f\x01\xbb\x4b\xea\xd9\xcc\x73\xae\x56\x55\x6d\x60\xf4\x1c\xa2\x4c\x06\x5b\x4e\xfe\x6b\x1c\x8f\x5c\x1f\xd9\xa5\x0e\xc0\xc2\x01\x40\x16\x88\xe7\xed\xfa\x31\x68\x4b\x87\x12\xfa\xfa\x40\xfa\xcf\xa8\x57\xdd\x47\x19\xdc\x90\x6b\xed\xa7\x98\xcb\x7c\x53\x9b\x0d\xac\x19\xee\x92\xfa\x99\xa0\x8f\xeb\x84\xaa\x70\x48\x31\x47\x5a\xb6\x12\xb1\xb2\x99\x6c\xd8\x8f\x6a\x47\x5e\x2f\xfa\x8e\x0d\x01\x80\x0c\xc0\xeb\x76\x9d\xde\x3b\x03\x1a\x96\x50\xb4\x87\x0d\x79\x44\x9d\xe9\xba\x00\xb1\x42\xfa\xdb\x9e\x41\xef\x7c\xc3\x9a\x0e\xc0\x1a\x77\xbc\x2e\x10\xd9\xe9\x3a\xb1\x12\x41\xa3\xe6\x94\x96\x66\x63\xdb\x6d\xd6\x1a\x86\xe3\xd9\xa3\x16\x14\x05\x13\x33\x01\x40\x1a\x4b\x90\xbb\x64\x03\xd6\xd8\x8b\x84\xf8\x5e\x10\x7b\x13\xa5\xef\xbc\x88\xbd\x0f\x91\xb6\xbe\xc5\xa7\xf8\xba\x34\x9e\xc7\x53\xdc\xd3\x6a\xe3\xf1\x13\xae\x23\x2a\x54\x44\xf0\x9c\xfa\x12\x39\xf1\xc8\x26\x59\xbf\x9a\xcd\x1c\x45\x51\x71\xd9\xf5\x00\x20\x51\xb3\xf5\xbb\x66\xf6\x3b\x71\xbd\xb6\xbd\xee\xd1\x73\x1e\x46\xad\xea\x78\xce\x91\x84\xac\x6e\x1d\xcd\x89\xf3\x79\xda\xf0\x9a\x13\xec\xbe\xac\x86\xce\xf1\x59\xf4\x3f\x73\x0b\x27\x74\x4e\x75\x71\x37\x27\xdf\x06\xd4\x65\x72\x88\x51\x7d\xca\xfd\x9c\x65\x00\x20\x3e\x41\x96\xa6\xcc\xe8\x5b\x2d\x79\xbe\xcd\xaa\x5b\x2c\x99\xb9\x39\xaf\xfd\xb8\x38\x34\x58\xd0\xfc\x48\x24\xf3\xd9\x54\x7f\x54\xf8\xc2\x6d\xa0\x3a\x42\xe8\xbf\x48\x5f\xae\x10\xd4\xcc\xd1\x99\xb4\x82\x09\x36\x9d\xda\x30\x7e\xf4\x68\x67\x45\x2b\xcf\x13\x00\x44\x07\x38\x6f\x76\x66\xee\x99\xa8\x59\x14\x1f\xda\x85\x17\x75\x47\xb6\xb4\x9d\x55\xad\x0d\xba\xda\xf4\x4c\x71\xcf\xbb\xad\x6e\x48\xae\x76\x5b\x53\x95\x20\xf3\x59\xb4\xb6\xac\x4a\xf2\x74\x0e\xd5\xd8\x28\xe6\xda\x9c\xd7\x64\x08\x9f\x8c\x06\xe5\x37\xf8\x9f\x01\x40\xf8\x91\x7b\x3b\x99\xde\x1b\x52\x32\x2a\x4e\xda\xd9\x6d\xb2\x88\x1c\xd3\x66\xa1\xff\x18\xe4\xd5\x34\x5d\xfb\xdd\x7b\x5e\xed\x57\x0d\xb0\xea\x48\xa5\xbe\x68\xa4\xcb\xa3\xd2\xf7\x8a\xef\x73\x42\x0c\x9f\x64\xc7\x6d\x6e\xa8\x3b\x24\xbe\xa3\x3b\xe4\xcb\x85\x54\x00\x10\x6e\xe1\x89\x77\xfc\xec\xf9\x57\x5e\x12\xe7\xda\x99\x50\x1a\x1f\x71\xac\xb5\xbc\x78\x64\xe0\xaf\xc6\x0e\xc3\xd1\x75\xcf\x6b\x65\x3a\x62\x95\xb6\x72\x95\x66\x8d\xcb\xa1\x52\xb5\xea\xfa\x1c\x6f\x83\x56\xe1\x6f\xf3\x50\xbd\x59\xba\x69\xf4\x65\xd9\x0d\xd1\x0c\x00\x10\xfc\xe1\x9d\xdd\x21\xec\xe9\xac\x34\xc5\xde\xed\xf8\xcf\xec\x18\x21\x6f\x5d\x59\x5a\x1e\x78\xb6\xd1\xb7\x78\xc1\xba\xc3\xb5\x53\x0d\xe5\xab\xa0\x8a\x43\xba\xa9\x2e\x7b\x4a\x1d\xd5\xf9\x73\x36\x19\xe6\x2a\xb9\x53\xac\x8b\xee\xca\x96\x59\x8e\x91\x65\x8a\x2a\x01\x40\xa0\xe3\xfd\xbe\xf4\x93\x3e\x39\x67\xe8\xe8\x39\x7a\x63\xde\xc4\x5e\x01\x23\x32\x7f\x7b\xdd\x52\xc6\xfb\x82\x46\xdd\x3b\x66\x05\xc5\x86\xd7\xcd\xda\x45\x2d\xa7\x1c\x02\xfd\xe9\x41\x89\x7b\xa0\x75\xcc\xf9\x1b\xee\xc3\x49\xe0\x54\xe7\xf7\x48\x0b\xbc\xd8\x52\x8c\x85\xa1\xc3\x2f\x8d\xa3\x39\x15\x64\x1e\xf9\x4b\xbb\x5a\x98\xd2\x73\x84\x2e\xa5\x64\xd7\x32\x19\x01\x54\x9a\x2e\x82\xf1\x97\x56\xc2\x9b\xc6\xbc\x47\xbf\x49\x71\x63\x5d\x64\xae\x4a\x74\x07\xef\xb1\x06\x37\x64\xc3\x93\xa0\x18\x67\x03\x42\x47\xac\x2c\x93\x30\x27\x94\x79\xd1\x89\xba\x96\xe6\x7e\x64\x3a\x6d\x14\xed\x62\xf7\x57\xda\x10\xbd\xb4\xa6\x99\xae\x67\xec\xd0\x0a\x19\x05\x4c\x6f\x6e\x01\x33\x96\xe5\x5e\x58\xcb\xda\x06\x06\x6e\xef\x06\x59\x10\xb8\xfe\x07\xb4\x17\x1e\x70\x0e\x46\x96\xa1\x56\x96\xde\xe8\x17\x6c\xe4\xb9\x1b\x85\x7d\xf0\xdd\x43\xc3\x29\x2a\x64\x58\xe7\x5f\x2a\x1b\x99\x53\xf5\x8d\x96\x84\x6c\xd7\x58\xd2\xc3\x90\x6e\xce\x3c\xc6\x26\xd4\xbe\x40\xc1\xcc\x42\x4b\x12\xba\x59\xd5\xd8\xfc\xf5\x4e\x10\x80\x75\x38\xdd\x82\xd5\xb8\xb7\xe5\x72\x94\x81\x6f\x3b\xf3\xa9\x60\x39\xe7\xd4\x81\xd0\xc2\x85\x9c\xfc\x8e\x25\x94\x05\x9c\x31\x95\xa1\xd4\x59\xe4\xde\x22\x0e\xcd\x81\xc4\xd8\x27\xe8\xbe\x64\x54\x7e\x3a\x83\x41\x2e\xdd\x26\x67\x5e\x20\x47\x05\xec\x06\xfd\xd9\x8f\x9d\x18\xd0\x6b\x76\xb1\xa5\x3f\xf2\x82\x38\x31\x74\x2d\x4f\x23\xdd\x3a\x98\x95\xdf\x22\x49\x68\xbd\x59\x70\x41\x9c\x66\xf6\x2a\x7c\x26\x22\x95\x7b\xa9\xa3\x85\xad\xc4\x1a\x9a\xaf\xe0\x4e\x9e\x1d\x5d\x2e\x18\x13\xef\xcb\xb4\xe2\xcf\xf7\x37\xb2\xc4\x3c\x3f\xa7\xa9\x50\x28\x77\x82\xe5\x4e\x24\x89\xf4\x38\x16\x9a\x3b\xce\x38\xd8\xc7\xc9\x73\x32\x8c\x68\x9a\x9b\x1f\xa8\x0b\x2c\x79\x53\x40\xd3\x50\x64\xe7\x0b\xbb\x8b\x4c\x68\x2f\x75\x84\x72\x30\x07\xa0\x51\xe5\x47\x62\xef\x32\x86\x49\x6b\xfd\x76\x32\xeb\xc4\x3b\x1c\x09\x90\x2b\x38\x69\x29\x82\x3b\xb9\xdb\x0f\xa9\xb3\x6b\xeb\x6f\x74\xbf\xc9\x79\x55\xf3\xac\x7e\x78\x9e\x6b\xd5\x52\xd3\xd4\xfc\x2c\x73\x94\xc4\xb7\xa0\xbf\x34\x05\x2e\xa4\xcc\x31\x45\x65\x59\x51\x6b\xf5\x13\x63\x52\xe8\x81\x6a\xa5\xaf\x0b\x73\xb4\xe2\xa8\xc3\x6d\xd6\x7f\x92\x62\x4b\x1d\xec\xc7\xcf\x3d\x00\x64\x5d\xdd\x93\xdd\x59\x99\x63\xdb\x75\xbe\xa6\x3a\x37\xa6\x7d\x9a\xfe\x46\x5e\x69\xb3\x87\xc8\x31\xff\x5b\xfd\x52\x90\x2c\xcc\xad\xfa\x98\x11\x4e\x1d\x5e\x9e\xb6\x15\xa0\x75\x98\x68\x3e\x6b\x19\xa4\x76\xba\x43\x2c\x4b\xa9\xf0\xb1\x2c\x87\x5e\x0b\xd7\xec\x9f\x9a\x85\xed\x4f\xea\x38\x92\x7d\x78\x20\xae\xfa\x50\x2e\xd0\xeb\xa4\xfb\x9d\x17\xdc\x71\x59\x18\x97\x5f\xd1\x12\xc8\x3a\x58\x38\xad\x9e\x95\x6e\xa6\x74\x56\x85\x6d\x81\x69\x3b\x4b\xab\xbd\x9f\x32\xdc\xf4\x6c\x07\x37\x56\xa8\xf2\x9c\xe5\x7e\xa8\x5d\x78\x73\x1f\x3d\x6b\xe5\xd1\x1d\x1d\xf3\xb2\xa9\x07\x87\x55\xcf\xc9\x69\xdb\x9b\xaf\xdb\x99\xfb\xb6\xb7\x47\x70\x34\x3f\xa0\xa3\x87\xb5\xba\x60\x4f\xf3\xee\x74\x27\x4a\x44\x6d\xcd\x16\x67\xea\x6f\x73\x94\xf7\x61\xfa\x79\x23\xc5\x61\x1d\xf3\x95\xea\x9d\xd5\x68\x68\xb3\x68\xd6\xb9\xb1\xcc\xc4\x9c\xdd\x07\x77\x31\x0f\xe6\xee\xef\x64\xb0\x96\xe7\x4f\xac\x2a\x64\xb5\x15\x64\xa8\x09\x70\x4d\xe1\x6d\xb2\x19\x1c\xa2\xd2\x0b\x1c\xa1\x7c\xfa\xd2\x04\x36\xbc\x98\x39\x65\xbd\x3d\x32\x06\x9c\xe6\x74\x1a\xb5\x87\x37\x5a\xae\xc5\x40\x74\xf5\xd9\xb9\x0c\x69\xfe\xf7\x03\x5c\xc6\xaf\x82\x1f\x1d\x1d\x4c\x94\x32\xbe\x72\x90\x35\x8e\xea\x50\x74\x8d\xd5\x4a\x0b\x27\x27\x83\xa1\xf4\x9a\x7c\x23\xf8\x97\x69\xb5\xed\x0b\x74\x85\x55\x15\x50\x09\x9f\x80\xc2\x9d\x32\x91\x37\x88\x9d\xe5\x14\x2c\x0e\xad\x3a\xb3\x9a\xde\x48\x6d\xdb\x5f\xc5\xf0\xa0\xc5\xb5\xff\x8f\x71\x9a\xbe\xbc\xe2\x1b\x33\x93\x61\x51\x34\x8f\x65\xc3\x78\xca\x2e\x60\x1d\x61\x7e\xc8\x1f\x0f\x4a\xc0\xc9\xdb\xf2\xa0\x02\x68\x6b\xc0\x5c\x98\x09\x37\x38\xcd\x42\x9a\xd1\x49\xa3\x5f\x61\xce\x98\xf3\xa9\x29\xb4\x99\xb0\xe7\x60\x1b\xed\x20\x9c\xd3\x36\x9e\x0e\xc2\x66\x73\x2c\xc3\x05\xfe\x9f\x72\x0f\xe3\x39\x12\x40\x2c\x62\xf6\x22\x07\x73\x7f\xb0\xca\xd0\x88\x78\x06\x58\x85\xbe\xf5\x8f\x81\x4e\x60\x3a\xc7\x06\xc4\x16\x5f\x37\xfa\x22\xda\x83\x53\x4f\x8e\xa5\x0c\x70\x80\x81\x27\xd4\x1c\x72\xa0\xc5\x8d\xb6\x8c\x4c\x2b\xab\xa5\xfd\x22\x17\x2a\x56\xd0\xaf\xb1\xbf\x63\xd7\x18\x7d\xec\xff\xe5\xdc\x62\x76\xb3\xaf\xc5\x81\xac\x8b\xec\x53\x7e\xfb\xa0\x11\xec\x43\x8e\x79\x70\x3e\xdb\x60\x39\x06\x5d\x48\x3c\x3d\xfa\xa7\xd0\x55\x12\xd9\x37\x89\x32\x52\x0c\x37\x5e\xa7\x7c\x14\xe9\x4a\x8a\xa8\x37\x85\xa7\x64\xc9\xb4\x73\xc2\x51\x68\x28\xfd\xa8\x20\x2e\x5b\xcb\xb8\xc6\xaf\x89\xdd\xc8\x1a\xcb\xbb\xe5\x07\x80\x9b\x78\x13\x1d\x67\x42\x67\xb9\x16\x96\x9e\x88\x8e\xdc\x7a\x50\x9f\xdf\x60\x50\x75\xaf\x2e\x10\xe9\x5e\xd5\xb9\x15\xe6\x69\xbd\x8c\xc9\x94\x4c\xb5\x48\x5c\x4c\xa5\xa9\x2e\x40\x0f\x68\x22\xe5\x84\x4c\x09\x7d\xaf\x7c\xcd\xd6\x47\xcc\x51\x52\x2f\x9f\xdb\xac\x6c\xb1\xad\x43\x19\x34\x4c\xd0\x64\x89\xc3\x0f\xb9\x79\x83\xef\xf3\x42\xeb\x02\xda\x07\xf2\xa3\xaa\x91\x6a\xc7\x82\xad\x15\x8f\x75\xc5\x85\x09\xe5\x8b\x85\x4e\x94\xc2\x92\x54\x56\x33\xb5\xc2\xc8\x48\xaf\xa0\xbd\xd6\xc5\x6d\xc9\x60\x84\x16\xfd\xf3\xee\x61\x0e\x29\x76\x38\x8c\x03\xa9\x92\x5d\x96\x46\x38\x93\x9f\x33\x90\x9d\xcb\xeb\xa9\x6c\xcd\xc9\xe3\x74\xba\x56\x0c\xe5\x93\xad\x46\x4d\x72\x41\x51\xe3\x23\xfe\xa4\xc2\xce\x3a\x80\x71\x98\xf2\xae\xf2\xc5\xee\x57\xb4\x90\x32\x6e\xf4\x58\xfa\x1e\xe3\xfe\x75\xc7\x99\x1b\x34\xaa\x85\x4a\x70\x84\xfc\x8d\x65\x23\x3c\x59\xb8\xa0\x9f\x99\xeb\x32\x48\x6f\x11\xe4\x2d\xee\x33\x99\x1f\xe7\x2f\xe9\x56\xab\xb9\x05\x5e\xed\xe9\xbc\x80\xc2\xc4\xa6\xbf\x0c\x80\x52\x5c\xb7\x6d\xb7\x0f\xf5\x7b\x65\x6c\x94\x80\x9e\x5e\x72\x77\x1d\x83\xf1\x4d\xf7\x72\x61\x2e\xeb\x90\xb2\xc0\xf2\x34\x74\x55\x78\xa8\xef\x54\xce\xed\xc3\x3b\x9a\xef\xe5\xde\xd9\xbf\xcc\xbc\x2e\xef\x4e\xff\x50\xd1\xff\xf2\x1f\xf7\xac\xe6\xb6\x14\xfc\x69\xdf\x41\x07\x29\x1e\x4d\x6b\x52\x4f\x52\xd5\x35\x35\x51\x2b\xe9\x16\xe5\xf8\xba\x50\x86\xc6\x70\x71\x21\x93\xb5\x43\x25\xb7\x9a\x06\x15\x8a\x46\x9d\xfc\x02\x1e\xce\x99\xbc\xb7\x19\xfc\x95\x9b\xd5\xea\x0c\x79\xe6\x1d\x2d\xe7\x41\xda\x82\x25\x8a\x77\xd0\xcf\xc2\x36\x3c\x0f\x4e\xa2\x86\xe4\x06\xc2\x57\xe8\xd6\x71\x7f\x91\x58\xc6\x4f\xff\x89\xc8\x77\x70\xa4\x63\x2c\x7a\x1a\x0e\x19\xad\xc1\x5e\xa0\xa1\x27\x2d\x59\xbf\xf2\x15\x03\xd7\xc0\x80\x02\x75\x4b\x1a\x68\x28\xec\x2c\x3b\x0f\xfe\xa2\xdc\x54\xf8\x42\xf9\xb4\xb1\xd8\x65\xe8\x01\x3d\x3d\x67\x1f\x9c\xce\xb8\x13\x97\x8b\x00\x2c\xd8\x8f\x44\x06\xa0\x55\x0e\x5f\xd1\x72\x64\xca\xe8\x0c\xec\x0c\xda\x7a\x62\x12\xcb\x93\xea\xda\xff\x95\xa5\xa4\xde\x6f\xd6\xb3\xbe\xd3\x8e\x94\x8d\x05\x13\xe8\xd5\x72\x19\x78\x8b\x51\x84\xad\x80\xb6\x33\x6b\x73\x96\x41\x9f\x58\x57\x62\xbf\xc0\x15\x90\xa3\xdf\x2c\x24\x07\x96\x39\x0c\xa2\x3b\xd1\xf1\xa3\xb7\x60\x66\x6c\xed\xb1\x39\x8c\x4a\xa8\xa4\x6f\x2e\x73\x32\x74\xa5\xf1\x09\xb3\x18\x9e\x59\xc2\x60\xcd\x86\x77\xc9\xe6\xb3\x7a\xe1\x33\xc8\x3b\x70\x0b\x12\x93\x3d\x13\xb2\x44\xbe\xc6\x8e\x82\xae\xa2\xcd\xbe\x5b\xe0\x63\x58\xae\x43\x10\x72\x0d\x77\x1d\xbd\x18\x5b\x8d\x83\x87\x3f\xd1\x77\x93\xab\x7b\x83\xe9\xb7\xc9\x61\x0d\x00\x23\x9d\x3d\x68\x3a\xc3\x04\xd8\x32\x49\x33\xb3\x95\x5d\x08\x57\xb3\x76\xb2\x73\xb3\x2c\xc0\x45\xec\xc2\x98\x69\xd0\x18\x36\xee\x73\x12\x1e\xce\x96\x3b\xcc\x40\x16\xb3\xc9\xd1\x30\x5a\x45\xbc\x38\xf0\x95\xfa\x4a\xbc\xa9\x8b\xa0\x09\x44\xc6\x5a\x03\xdd\x47\x78\xc8\xd0\x47\xff\x20\x9c\x2a\x7a\xc6\xe8\x12\x14\x40\x73\x99\x20\xff\x52\xc6\x51\x56\x0c\x7f\xf9\xd6\x11\x60\x18\x8f\xf4\xb1\x85\x22\xb8\xe7\x16\x5e\x80\xa5\x9c\xff\x8d\xee\x46\x27\x93\xb1\x7b\xdb\x28\xd9\xfa\xd4\xb6\x6e\xaa\x8d\xf6\x4c\xd5\x38\xea\x11\xcd\x62\x6d\x09\x4d\x50\x54\x2e\x58\x49\x4f\x52\x8d\x60\x1e\x67\xf8\x29\x12\xd3\x86\x98\xeb\x64\xe6\x68\x15\x6b\xa3\xe4\xa8\xb7\x05\x98\x23\x3a\xb8\x30\x05\x3a\x20\x40\x2c\x47\x21\xf1\xdc\x8c\xbe\x19\x85\x53\x6b\x1a\x9a\xc3\x0b\x1f\x57\x59\x99\xc7\x52\x5a\xcc\x8a\xa2\x67\x54\xa4\xcc\x82\x7b\x9a\xb6\xa3\x78\x3b\xbd\x9c\x1e\x6f\x90\xa7\xbe\x62\xe4\x68\x35\x51\xb3\x99\xf2\xa2\x14\xaf\x57\xac\x21\xf9\x9b\x05\x4f\xa0\xc5\x92\x59\x96\x6b\xe1\x9b\xfc\xb8\x9e\xca\x82\xc4\xae\x8b\x0d\x7f\x0a\x67\xb6\x93\xa5\xed\x85\xf7\x5a\x26\x2a\xdb\x29\xdd\x0d\x5c\xb2\x9f\x5a\x59\x73\x92\xda\x4f\x6b\xa8\xb8\xb2\xcb\x93\x7e\xaa\xd4\x10\x79\x8c\xf1\xdb\xf0\xcb\xf3\x27\x2b\x58\xfd\x67\x41\x2a\x78\x40\x2e\xb3\x0c\x83\x51\xe1\xb0\xee\x9a\xfc\x3f\x03\xbc\x86\xc9\x05\xc7\x7a\x2f\x97\x9c\x28\x14\x77\x7e\x56\x9c\xa7\xec\x68\xfd\xc0\x7e\x4e\x0d\x6f\xec\xa2\xfc\xa0\x6d\xad\x5d\x99\xa2\xa4\x33\x2b\x12\x22\x7d\x18\xcd\x25\xd6\x9e\xf5\xcc\xdf\xba\x90\x05\xbe\x20\xac\x1c\x65\x99\x0b\x7b\x0b\x4d\x5d\x2f\xf3\x9b\x0e\x6e\xa9\x4f\x2e\xa0\x0c\x46\x97\xcc\x2a\xf4\xe8\x9b\xae\x58\x44\x19\xdd\xd5\xc6\x8e\xa4\xbc\x6b\xfd\x47\xc9\xa3\x7e\x6a\x1c\x96\x32\x9d\x6e\x53\x6d\x8c\x78\xc5\x08\x2e\xab\xf0\x84\x98\x46\x83\xc3\x82\x0d\xe0\x34\x95\xbd\xe5\x00\x74\x43\xf8\x60\x3f\x88\x8f\xcb\xae\xed\x78\x83\xbd\xc8\xf9\x5e\x13\x85\x1d\xc9\xcb\xd6\x07\x61\xc7\xf3\x87\x84\x5b\xb0\x6b\x85\x91\x2c\x1c\xfb\x1f\xe5\x65\xfa\x28\x7c\x38\xad\x27\x9a\xc0\xa7\x30\x5a\xd7\x65\xe1\x7e\xac\xe3\xf3\x3f\xe0\x65\xb0\xf3\xc8\x32\x22\x10\xf5\xde\x57\x81\xb9\xe7\xbd\xeb\x70\xc5\x9c\xf2\x7f\x56\x9b\xb0\x71\x85\xcb\x74\x7a\xcc\x89\x12\x2a\x68\xc0\xc2\xa8\x22\xe6\x23\x2c\x87\xf6\x2c\x8d\xc0\x4a\x18\x59\x51\x5f\xb1\x93\xac\x59\x5e\x77\xf1\xb1\xe0\xb3\xf9\x12\x1c\x81\x5f\x8f\xcc\x23\xdc\x50\xfd\xe0\x7e\x34\x85\xb2\xad\x3d\x19\xcd\xa1\xce\xa9\xba\x89\x26\xd0\xa6\x6b\xaf\xa2\x62\xda\x2b\xfe\x37\xf4\x00\xfd\x39\xd3\x0f\x7d\xc3\x1c\xb5\xfb\x2b\xb6\x88\x15\x14\xc5\xc5\xb2\xc0\x4e\x2f\x08\x1b\x82\x97\xcf\x0f\xc7\x83\x91\xeb\x23\xa3\x88\xc9\xd8\xb4\x01\x15\x62\x01\x4e\x6e\x4d\x45\x66\x82\x9c\x8a\xb7\xc8\x12\xf0\xba\x66\x39\x92\x0e\x6d\xe4\x49\x90\x16\xe8\x06\xfd\x2f\xf2\x11\x86\x52\x1f\xa2\xc1\xc8\xca\xcd\x55\x68\x1d\x6a\xeb\x79\x02\x5b\x84\xfe\x99\xf7\x04\x3b\x86\x3d\x1d\xe9\x8d\xb7\xe3\xe1\x7d\xd7\xa0\x6a\xc2\xd8\x7c\x15\xba\x4b\x48\xcd\x41\xf0\x34\x82\x52\xd4\x0e\xa7\x12\x3b\xb8\x2b\xe1\x41\x22\x85\x76\x06\xb1\x21\x18\xbb\xae\x23\x18\x61\x8c\xbc\x84\x3c\x21\x2e\x7a\x7a\xa2\x2c\xf6\x88\x79\x07\xb1\x79\x6c\x97\x91\x0a\x7c\x0e\xd1\xdf\xf3\x1e\x2c\x11\x56\x37\xda\x82\x17\x85\x16\x65\x13\xa0\xc9\x82\x0c\xe5\x01\xa8\x80\x7f\x9a\xe4\x43\x37\xf9\x9e\xd4\x38\x38\x80\x37\x90\x52\x09\xef\xe7\x79\x46\x3c\x40\x96\x72\xf7\xac\x6d\x40\x8e\x70\x9d\xe7\xa9\x51\x82\x43\x8c\x7c\x8c\x89\x48\x87\x8e\x07\xcc\xaf\x9a\xc7\xb5\x0d\xac\x4d\xea\x3a\xd3\x31\x56\x75\x51\xac\xec\x02\x38\x59\x79\x1f\xff\x04\x2a\x14\x19\x85\x33\xa1\x49\xb2\xb7\xc9\x47\xa0\x1a\x69\x4a\x38\x01\x2f\x13\x9f\xf2\xb8\x08\xdf\x14\x0d\x9b\x97\x89\x54\xf2\xff\x8c\x52\xa1\x6d\x5c\xe7\xd6\x3a\xc6\xc3\xca\x7d\x55\xe9\xcc\x35\xe6\x9d\xfa\x4f\xcc\xa2\x32\x17\x89\x17\x6b\x6c\xf1\x21\xb4\x92\xa5\x33\x06\xe5\x5b\x83\x8b\x74\x7b\x92\x7e\x83\x97\xd4\x7f\xc3\xfe\x40\x98\xca\x76\xcd\x3e\x78\xad\xec\xd3\xdc\xc7\xc8\x14\x31\x7d\x54\x0f\xba\x82\x3f\xbc\x79\x14\x63\x62\xbb\x77\x85\x33\x23\xaf\x25\x40\x5b\xca\x38\xdb\x38\x4f\x34\x8a\x19\x59\x7b\x16\xd6\x31\x1f\x56\x45\xe6\x2e\x61\x11\xe5\xd5\x89\xb1\xe0\x8a\xe2\xee\xd0\x7e\xf0\x8d\x3e\x6f\xf5\x71\x68\x7f\xd1\xb1\xb9\x89\x70\x9d\xac\x67\xd4\x49\xe4\xac\xc0\xd4\x64\x43\x3f\xdc\xdb\x66\xf6\x67\xd8\x77\x45\x6b\xda\x19\x70\xdb\x09\xa1\x03\xe3\x4f\xf3\x08\xe8\x08\x53\x5e\x3f\x21\x27\x97\xe5\x5a\x75\x7b\x7b\x0b\xeb\x41\xf9\x96\x50\x57\xd0\x6c\xda\xb1\x3a\x1b\x62\x68\xbe\xce\x5d\x0d\xef\x52\xcc\x1e\xf5\x0c\x11\x09\x97\x34\xee\xa0\x23\x83\x41\xe5\x32\xfa\xa5\xbe\x12\xf5\x1f\x86\x4b\xf7\x1e\x01\xca\xa8\x6b\x37\x42\x0e\xcc\xe5\xcd\x6b\xb3\xef\x33\xcf\xd4\x49\xb6\xaf\x62\xa1\x95\xd0\xc6\xe3\xa0\x4f\xc9\xad\xd5\x6b\x20\x1b\xdd\xe1\xb9\xee\x30\xa0\x74\x1d\xbd\x08\x59\x20\x64\x74\x7e\xe6\x56\x67\xbd\xab\x43\xb9\xcb\x73\x92\x8a\x73\x38\x47\x72\x4f\xcb\xe7\x73\xf2\xf3\xbd\xf0\x77\x9c\x79\x05\x17\x0b\x6e\x92\x17\x28\x68\xf2\x6a\x92\x4f\x8b\xde\xb4\x9a\xf4\x60\xc4\xad\x99\xcf\xfe\xc4\x42\x67\xbf\x62\x5f\x82\xbe\x0d\x9f\xc3\xfe\x83\x4e\xe8\xf4\xe3\xbc\xcb\x1b\x57\x7b\x85\xc3\xcb\xdf\x68\x3a\xc3\x99\x5b\xc0\x91\x89\xc8\xfb\x85\xed\x78\x12\x59\x45\x1d\x5e\xb0\x95\xdc\x49\xcb\xd9\x71\x98\x74\xa0\xff\x0a\xbb\xc5\x7e\xc3\xdc\xb3\x7a\x88\xbd\x1f\x54\xcd\xee\x64\xb7\xc2\xed\xc3\xc7\xb1\x5f\xa1\xbb\x3b\xd8\x1c\x9f\xc2\x4d\xb5\xb3\xc9\x3b\x94\x38\xd3\x1c\x92\xa0\x26\x4b\x1f\x90\x91\x34\x3f\xec\x30\x39\x9f\x1e\x9e\x3f\xc4\x7e\xc3\x80\x77\x04\xb1\x0f\x30\xcf\x84\x21\x6c\x03\xe8\xb7\x9a\xc6\x46\xa1\xf3\xb3\xb9\x6c\x18\x51\x0f\xb7\x66\x1f\x47\x1f\xb6\x5d\x66\xff\x60\xfe\xab\x66\xb0\x9b\x59\xa0\x81\x64\x67\xb3\xde\x49\x18\xec\x0d\x20\x1d\xe5\xb0\x9d\x20\xdb\xbc\x46\xf6\x70\xe8\x62\x52\x04\xf1\x0a\xae\x09\xed\x24\xee\x23\x22\xf7\x7d\xc4\x5b\x94\x33\xdb\x91\xf8\x8b\x15\x0d\xb7\x64\xa7\xe3\x93\x5a\xc7\x10\x06\xdc\xa1\xb2\x9b\xc8\xc0\x97\xe8\xbe\x12\x5e\xb8\x9b\x78\x2c\xb1\x0a\xf7\x47\xfc\x88\x99\xf8\xb6\x5c\x11\x31\x0d\x57\x27\x6e\x25\x46\xe2\x97\x37\xfe\x20\xe6\x12\x8e\xee\x3e\xc4\x06\x82\x36\xdb\x9a\xd8\x4d\x1c\x1b\x1e\x4b\xdc\x21\x72\x9b\x30\x3c\x97\xdf\x65\x4e\xc5\x73\xf8\xb1\x9a\x5e\x7c\x27\xef\xb9\x70\x22\xbe\x8d\x97\x0b\x89\xf0\x04\xee\xdf\x9c\x31\x78\x3c\xb7\x66\xbb\x2d\x9e\xc2\x8d\xd8\x68\x8d\x33\x38\xaf\xdc\x86\x70\x05\x87\x63\xff\x09\x3f\xc4\x19\x3e\xfc\x0c\xb1\x96\x7d\xa1\x6e\x08\x9b\x52\xd4\x5b\xf2\x0b\xb3\x53\x15\xa9\x0c\x98\xad\x32\x9d\xb7\x11\x9b\xa5\x98\xc5\xb2\xc3\x5c\x65\x97\x33\xdf\x61\xde\x52\xf1\xb6\x68\x2c\x41\xb2\x22\xb8\x1b\x23\x45\xfd\xab\x5e\x60\x6d\xc2\xf9\xf6\x0d\xd8\x07\xfe\xb6\x11\x41\x78\x21\xe7\x60\xf5\x0e\xd4\xbe\xfc\xba\xf1\x1b\x6a\x5f\x7a\x5a\xfe\x04\x9d\x57\xdc\x47\x5e\x46\x97\x19\x85\xf4\xa7\x68\xb0\x3e\x28\xfd\x2b\x9a\xa9\xf9\x14\x57\x81\xea\x8a\xe0\xa0\x6d\xe8\x19\xc5\xa9\x95\x5f\xb0\x31\xd2\xff\xd9\x6f\xc0\x62\x45\x2d\x23\x4c\xd8\x1d\x9e\xa4\x72\x24\x22\x6c\x6e\xd0\xb7\x23\x60\xc3\x07\x69\x03\x82\xd5\x4d\x21\xf6\x22\xea\xea\x91\xd4\xaf\x48\xbb\xf9\x62\x9a\x1b\x72\xbd\x34\x3b\xd6\x16\xb5\x36\x9e\x0c\x9c\x84\x86\x69\x4f\xac\xf8\x81\x6a\x54\x8c\x59\x87\xd1\x97\xd2\x43\x23\x3a\xb0\x02\xc1\x44\xf3\x1f\x64\x43\xe7\x1e\xdd\x01\xc4\xab\xad\x59\x72\x04\xf1\x6a\xa6\xe0\x8f\x90\x88\xfa\xdf\xd4\xc5\x48\x56\xcd\xd6\xdd\x28\xa2\xac\xc8\x8d\x61\x21\x47\x4a\x3d\x36\xc8\xd0\x11\x06\xcd\x0a\x0d\x1a\xa9\x96\xce\xd2\xa2\x35\xf2\x69\x23\xce\x62\x4e\x82\x6a\xf3\x12\xc4\x6a\xcf\x57\x1d\x00\xff\xe9\x6e\x93\x4c\x82\x7f\x76\x2c\xc4\x3d\x91\x11\x2d\x71\x14\x1d\x62\xd7\x10\x9e\xfa\x15\xf1\xac\x7e\x1f\x33\x12\xc9\x34\xaf\xd9\xb0\x1c\xa9\x37\x7d\x5b\x91\x88\xbc\xd7\x06\xcd\x52\xa1\xfe\x0a\xfb\x91\xa3\xd1\xc3\x82\xb7\xb5\xbd\x92\x11\x59\xde\xc5\x43\x62\xb7\xec\xfd\xca\x66\x51\x42\x6e\x30\x77\xa1\xb0\x26\x6f\x88\x71\x40\xf0\xae\x20\x2d\x83\x14\x2c\xa2\x38\xc6\x1d\xe7\xa7\xd1\xc6\x04\xee\xe6\x55\x33\xe6\xad\x48\xe7\x3e\x62\x85\xd8\x29\xb9\xcb\xa0\xcb\x40\x0e\xe7\x1c\xf2\xb4\x76\x94\x38\x3e\x77\x77\xf1\x0a\x91\x31\xcf\xa0\xb4\x13\x9e\xca\x7f\xc3\xa9\x16\xce\x2e\x5c\xc2\x08\x11\x30\x28\xfa\x8c\x89\xfc\xc3\xb4\x51\x71\x3b\xf9\xe3\xe8\xd5\x81\x4e\xbc\x44\x66\xc1\x8a\x85\xdc\x36\x30\xdc\x8e\xc2\x1d\x0b\x93\x00\xc8\xe9\x45\xdd\x6a\xd2\x45\xad\x05\x75\x26\xa5\xf0\x6f\xa1\x5e\x81\x09\xd7\x52\xfa\x39\x13\x04\x65\xd4\x66\xfa\x61\x01\x40\x1b\x4a\xd7\xf1\xe3\x18\x23\x62\xbf\xf0\x5a\x98\xe9\x1b\x9e\xf3\xc6\xb2\x9e\x2f\x7f\xcc\x2d\x84\x50\xbb\xad\x9c\xdb\x48\x02\xa0\xe0\x28\xd0\xb6\xaa\xff\x09\x09\xc6\x63\xe3\x1c\xc1\x1d\x26\x53\x3e\x5f\xb0\x86\x35\x89\x7d\x8d\x5f\xcf\x6a\xa6\x35\xf2\xed\xc0\x5d\x69\x46\x1e\x0e\xb9\xc7\xda\x71\x9f\xc0\x0e\x1b\xc2\xb9\xbb\x90\xc9\xcb\x77\x70\x9e\xa0\xb3\xec\x96\x72\x76\x60\x61\xc0\x39\xce\x42\xec\x51\x65\x84\x20\x16\x3d\xa0\x3f\xcb\xdf\x8f\x7e\x95\xd6\xf1\x17\x63\x33\x09\x98\xd7\x84\xf9\x50\x29\x3c\x57\x8c\xb9\x9b\xcd\xad\xc2\x4e\xc7\x38\x73\x67\xe0\xcb\xd7\xd7\x72\x1a\x71\xf5\x72\x80\xb3\x1a\xff\x65\xb7\x94\xdc\x4f\x64\x0d\x0b\x26\x25\xc4\xf2\xf2\x0f\xfc\x4d\xbc\x49\x5a\x1a\xef\x24\xf7\x98\xb8\x8d\xe7\xc5\xa5\x61\x7b\xb9\x47\xb9\xd3\x0b\x5f\x73\x23\x38\x67\x53\x17\x71\xae\x70\x8c\x5b\x47\x71\xb6\x71\x72\x02\xee\x92\xef\x39\xcb\x97\x95\x92\x7c\xf2\xbd\xdd\x32\x72\x12\xa9\x1e\x76\x86\x7d\x9f\x8d\x97\x2c\xe2\xcd\x53\xda\x17\xc5\x73\x75\x8a\x38\xc1\x29\xae\x8d\x1c\x42\x1c\x39\xd5\xb2\x84\xfc\x66\xce\x1a\xa9\x77\x8a\x3b\x79\x46\xe2\x14\xbd\x9b\xdc\x29\xb6\xf0\x37\x90\xa3\x84\xfd\x4b\x8f\xb0\x9b\x05\x5b\x67\x3c\x60\x07\xf1\xf6\x5b\x38\xb2\xed\x39\x89\xc6\x22\xae\x5d\xc9\x6b\x85\x94\x53\x6d\xfa\xc2\x5b\xc7\x59\x6d\xf4\x06\xaf\x90\x67\xf5\x81\xb9\x46\x32\x4d\xeb\x93\xbc\x9d\x1c\xa1\x76\xdc\x7c\x8e\x5d\xa7\xfc\xe0\x17\xc1\x8e\x97\xb3\x96\xdc\x60\x5b\x49\xce\xcf\xa0\x10\x3d\xc2\x5b\x16\xf1\x84\x92\x37\x56\xbf\x80\xb3\xb3\xfe\xb6\x8c\xe0\x8c\xa9\x45\x38\xf3\xc9\xae\xaa\xcf\xcc\xfb\x64\x58\x85\x4b\xf6\x05\xf6\xf3\x32\xef\xa4\x03\x6c\x51\xf1\xbc\xc8\x0c\xf6\x12\xfd\x79\xdf\x69\xc4\x63\xcd\x8c\xc5\x77\x09\x9d\x72\xd6\xf4\x37\x44\xa0\x64\x9f\x05\x93\xb0\xe3\xf3\x74\xeb\x38\xeb\x5a\xbb\xa4\x35\xe4\xdd\xa6\x4f\x64\x30\x89\x37\x00\xcc\xc9\xe4\x94\x9a\x9b\xd9\x53\xd9\xad\x95\x64\xd2\x54\xf6\xa6\xb2\x97\x11\xd7\x88\xf7\xc5\x63\x7c\x0c\x44\xa5\x6e\x70\x31\x8b\x88\x2e\x9a\x32\x7d\x90\x00\x64\x80\x45\x11\x7e\x51\x30\x45\x2b\xe2\xcc\xee\x3a\x29\xf9\x4c\x76\xb5\xf7\xb3\x4b\xc8\xe0\x96\x3c\x06\x8d\x7d\xbd\xe1\x4b\x96\x90\x9d\x55\x1b\x90\x68\x64\x03\x95\x9e\x11\x79\x44\x79\xe9\x03\x1f\x3f\x22\xd4\xf0\x6f\xf1\x6a\xfc\xab\x7a\xef\xf4\x0e\xdc\x2c\xfb\x63\x71\x1a\xcf\x10\xa4\xa9\xdd\xb4\x47\xb3\x6c\x44\x2d\x9a\xa0\x6c\x29\x9e\x5e\x74\x25\xe7\x0f\x6d\x94\x2a\x3f\x8f\x93\x7e\x5d\x09\x14\x2c\xdb\xf6\x40\x0e\x16\xfe\x17\x56\x24\x7d\x4c\xfd\xe6\xf9\x5b\xe2\xc9\x98\xe1\x5c\x2c\x22\x59\xc9\x53\x3c\x05\x47\xa0\x1f\x00\xc0\x0f\x47\x81\x22\x93\xd6\x21\xe7\xa6\xc8\x49\xdd\x99\x37\x0f\xfb\x5c\x14\x94\xbf\x8b\x5a\xae\x7c\x5f\xd0\x9a\xce\x50\xa8\x28\xf3\xb7\x09\xe4\x53\xa9\x1d\x61\xeb\xa5\x12\x7a\xae\xe7\x71\xf1\x07\xe6\x46\x67\xaa\x28\x1c\xdc\x30\x65\xb5\xa0\x18\x96\x00\x00\x7f\x29\xba\x4e\xf5\x49\x23\xc9\x3f\x28\x34\xa8\xed\x0b\xee\x60\x74\xd5\x40\xe1\x3b\xaa\x83\x92\x46\xf9\x95\x6e\xa5\x98\x4d\x5b\xb9\x6d\xa1\xac\x99\x2e\x0b\x7d\x2f\x75\x61\x4e\xf0\x94\x88\xab\x58\x75\xce\x61\xa2\xb1\x50\xfc\x94\x15\x82\x34\x24\x0c\x00\xf8\x16\x68\x9d\xf2\x94\x3a\x8e\x6e\x12\x50\x8a\xc6\x33\xa2\xd1\xad\xca\xb3\x8c\xbf\x94\xf9\x0a\x01\xb3\x27\x6d\xbe\xdc\x93\x25\x8e\x8f\x95\x5e\x05\xf1\x50\x1f\x49\x32\xa4\xf1\xb4\x15\xbd\x85\x2b\x9c\xc7\x0b\xf3\x91\xd3\x53\xfc\xf8\x57\xb0\xa9\x00\xc0\x03\xb1\xfd\x8a\xed\x45\x99\x70\x3b\x7f\x9e\xca\x06\x71\x42\xc6\x2b\xce\x22\xec\x82\x9f\x72\x0d\x72\x76\xf7\x74\x59\x34\xba\x22\x2e\x43\xf2\x03\xed\xdc\x48\x15\xab\xb1\xe0\xb5\x7c\xd1\x1a\xec\xa6\xd3\xa0\xe0\x0c\x4e\x9d\xb2\x9e\xef\x43\x4c\x00\x00\xee\x2b\xfc\x9f\xec\x8a\x2a\x8e\xe4\x71\x95\xca\xd9\x24\x05\x52\xc8\x9f\x91\x9b\xf2\xcb\x64\xdd\xa4\xd3\xae\x67\x52\x88\x9c\x1c\x1b\x2b\x71\x25\xa7\x85\x88\x45\xe7\x49\x07\x8f\x27\x42\x82\x5c\xe4\x54\x20\x98\x4d\x2e\x9d\x12\xc6\x33\x92\x13\x01\x80\x1b\xc0\x0e\x12\xdf\x55\x26\x4a\x0f\xb2\x5f\x28\xa6\x4a\xdd\x59\x0b\x64\xb7\x25\x82\x5c\xa6\xb4\x49\xdc\x9e\x32\x42\x42\x13\xdd\xd9\xda\x23\x5e\x2a\x1a\x17\xbc\x42\x78\x4f\xb8\x76\xcd\x23\x81\x41\xb0\xc1\xf1\x12\xdf\x97\xbf\x6e\x8a\x03\x77\x88\xfb\x0b\x00\x38\x10\x67\xac\x10\x56\x64\x19\xd6\xe1\xc5\x72\x4f\xdd\x6d\xfa\x4f\xd9\x04\x6d\x72\x36\x2a\x79\xa8\x3e\x90\xec\x2f\x6e\x2a\x9a\xb2\x65\xbe\x28\x4f\xb9\x3d\xf0\xb6\xd0\x41\x2e\x5e\x7d\x95\xff\x42\x4a\x38\xce\xe4\x19\xc5\xe1\x36\xb7\xb9\x4b\x04\xc7\x00\x80\xbc\xcb\x35\xf2\xc3\x15\xa3\xab\x0c\xa8\x4a\x76\xb4\x22\x9d\x36\x46\x2a\x2e\xb7\xcf\xec\x92\x6c\x2f\xd9\x97\x54\x25\x76\x32\x79\x47\xb5\x08\x3f\xe8\xf5\x1b\x0c\x82\x56\xcd\x21\xf7\x7d\xfc\x3c\x95\xda\x61\x1d\xcf\x4e\xee\x68\x93\xce\xe9\x15\x6f\x06\x00\x32\x91\xf7\x90\x97\x2f\x6f\xaf\x3f\x8e\xf4\xc9\x88\xda\x68\xaa\x97\x34\xaa\xaa\x27\xe3\xa3\x64\xae\xf9\x77\xe2\x67\xd1\xab\x32\xbb\xa8\x09\xc2\xce\x62\x8b\x0d\x13\x05\x05\xfa\x76\xf7\x60\xbe\x8b\xfa\xf3\xc2\xfb\xdc\xcb\x8a\x57\x36\x9e\x9c\x3c\x09\x05\x00\xc8\xf1\xfc\x54\x6e\xbf\x3c\xa1\xc5\x17\xb1\x94\x79\x36\x1a\x28\x5a\xe9\x94\xba\x81\x8c\x6d\xe2\x7b\xd5\x7b\x12\x73\x45\x15\x15\xe4\x66\xa3\x70\x77\xd9\x88\xf5\xed\x82\xd9\x26\x3f\xb7\x6f\xbc\x0b\x3a\x60\x61\x25\x97\xaa\xca\xb0\x59\xc1\xb1\x96\x6e\x03\x00\x76\x35\x7f\x00\xb7\xab\x38\x97\xb5\x86\x91\x5d\xae\xca\x6e\xce\xf5\x2a\x8d\xcf\x5d\x99\xf2\xaf\xd8\x29\x6f\x20\x6e\x8c\xe1\x61\x41\x7e\x18\x55\x97\x4f\x09\xf5\xd9\xa3\xbe\x4b\xdb\xb6\xec\x87\xca\x81\x21\x9b\xa3\x96\x87\xb2\x9e\x8f\x7b\x2a\x89\x81\x21\x00\x10\x6a\x50\x14\x3b\x51\xb1\x38\x67\x1f\x63\x7a\xd9\x7f\xb9\xff\x72\xde\x96\x9c\xc9\x8f\x49\xe9\x33\x35\x14\x34\xc7\x0e\x19\x28\x94\x45\x61\x1e\x3a\x2b\xea\x65\x1f\xbe\x9a\x4d\x6f\x58\x76\x5b\x79\x9b\x69\x98\x23\x92\x4f\x00\x1b\xc6\xfd\x96\x38\xc0\x2f\x00\x40\x98\x8b\x96\x61\xe9\x66\x65\x7e\x1a\x7d\xb0\x2c\xa3\x00\xca\x51\x97\x78\x15\x56\xa4\xa4\x9a\x16\x51\x8e\xc7\x62\xfa\x3f\x34\x9b\xd0\xaf\xda\x52\xba\xd8\x27\x42\x6d\xc7\x74\x5a\xb6\x47\xc9\x65\x5d\x9e\x83\xcb\x4e\x41\x25\xe3\xc7\x8b\x5f\x20\x72\x00\x10\xae\x42\x3f\xa3\x50\xb9\x91\xf6\x84\x76\xa7\x34\x8b\x5e\x9d\x7d\xa0\x38\x8e\x91\xb2\xb3\xda\xe8\xcb\x5c\x1a\x73\x4d\x3f\x99\x35\x27\x34\x45\x33\x08\xba\x79\x5f\x29\xda\x00\x65\x2f\xcb\x56\x9c\x84\xb5\x73\x32\x65\x0b\x91\x4b\xe3\x97\x8b\xb7\x60\x4b\x00\x40\x50\x8d\xfd\x40\xd2\xcb\x60\x28\x8b\xfa\xbc\x24\x07\x7a\x99\xb5\xcf\xb4\x1d\x8e\xf9\x3f\x0e\xed\xfa\x2f\xaa\xc4\x51\xe3\xf8\x01\x01\xc5\x02\x45\x54\x40\x05\x11\x15\x44\x09\x09\x41\x52\x1a\x94\x4e\xe9\x1a\xa6\x3b\xcf\x99\xee\xee\x61\x86\xee\x94\xb2\xbb\x50\xd7\x46\xb1\x6b\x8d\x35\xd7\x76\xed\xf6\xbe\xbe\xf7\x7f\x78\xde\xcf\x4f\x9f\x8a\xfd\x96\x34\xe8\xaf\xfc\x69\xf5\x2b\x98\xd9\xa9\x43\x86\x5b\xcc\x5f\x51\xe1\x3a\x2c\xeb\xa8\xff\x74\x8d\x15\x9b\xe5\x9e\xa1\x24\x72\xe2\x66\x17\xc9\x86\x38\xbf\x01\x40\xfc\x93\xbb\x1a\xf2\x6d\x69\xe2\x52\x89\xc3\x4d\x0c\xae\x06\xd1\xdf\x80\xe7\x2a\xcb\x0f\x9b\x6b\xb9\x96\x3c\x1f\x53\x22\x77\x4f\xca\x03\x83\x15\xf7\xbf\x48\x95\xb6\x85\x17\xe6\xd7\xac\x8e\xe5\xb1\xdd\xbd\x15\x87\x79\x47\x66\x8b\x64\x53\x78\x17\x01\x40\x9c\xc3\x2b\x61\x78\x35\x23\xe5\x00\xfe\x62\x23\x4a\xc6\xaa\x9b\xb4\xa0\xa5\x6f\xca\x5c\xeb\xcb\xa5\x45\x39\x47\x8c\x51\x92\xb3\xc9\xc3\xba\x3f\x92\x84\x08\x8b\xa6\x5b\x7c\x70\xcd\x7f\xaa\x74\xf1\xa2\x25\x37\xe5\x97\x45\xa8\xd9\x46\xa9\xa7\x10\xfd\x3f\x9b\xfc\x37\xb4\x29\x4d\xc7\x8c\x49\xd8\x6b\x0d\x4d\xfa\xf7\x30\x4f\x73\xbb\x6e\xa2\xc4\x64\xd2\x6a\xb9\xd9\x75\x06\x9c\x66\x4d\x12\x4b\x17\xaa\x9a\x5c\xdf\xa8\x7e\xa8\xac\x5a\x13\xa2\xd4\xcb\x4f\x2c\x41\xca\x17\x49\xff\xcc\xe6\x48\x18\xe2\x5b\x00\x20\x3c\x29\x4c\xa0\x04\x34\x4d\x69\x9d\x89\x59\xdd\x30\xb5\xb9\xb0\x06\x34\xdb\x36\xf2\x8b\x67\x1b\xbf\x5a\x04\x59\xf6\xfa\x9b\xf5\xd8\xc4\x04\xed\x16\x63\x78\xb8\x5e\x5d\xa9\x7b\xb0\x3a\x4f\x39\x4d\x13\xb6\x78\xb7\x4c\xa7\xcc\x9c\x1d\x24\x7e\x2f\xb3\x03\x00\x61\x94\xa8\x9a\x5c\xdd\x38\xde\x79\x1e\x8d\xb5\xfc\xd5\x7e\xb2\x7a\xbc\x7e\xbc\xd5\xb2\xb9\xce\xb8\xbd\x39\x39\x93\xa2\xd7\x35\xdc\x4e\x38\xaa\xad\x36\xc7\x86\x7b\xaa\x17\x19\x69\xbe\x9f\x15\x87\x74\x19\x8b\xd1\xb2\x0d\xaa\xab\xb3\x67\x8a\x7b\x65\xff\xb3\xf9\x4e\x74\x9a\xb4\xa3\x91\xd7\xfb\x0c\x75\xd6\xc2\xeb\x6e\xad\x5e\x55\x4f\xeb\x5c\x5e\xf4\xc0\x58\xdd\x66\xcc\x04\xf4\x11\xcd\xb7\x12\x2a\xb4\xb3\x1a\x9e\x85\x5d\x51\x9d\xac\xdf\xef\xbb\x5b\x51\x6e\x70\x5b\x1c\x29\xbd\xa3\x59\x3c\x7b\x81\x38\x4a\x7e\x16\x00\x04\x3c\xb1\x3b\xda\x6d\xf8\x35\xf2\x67\x8d\xdd\xe0\x7b\x74\x55\x31\xa2\xef\x3f\xcc\xf9\xec\xd5\xdd\xef\x71\x99\xc9\x15\x1d\xe7\x09\x76\x51\xce\xad\x08\xe2\xdb\xc0\x47\x8d\x93\x94\x99\xcb\x97\x9b\x01\x5a\xe9\x82\x25\xfa\xaf\x8c\xc9\x69\xb3\xd5\x67\x99\x81\x00\x20\xef\x64\xaf\x41\xed\x1b\x2e\xc3\xc4\x57\x1f\x1b\xc4\x62\xd9\xc5\xeb\xfb\x68\xb8\x83\xd9\x36\xdd\x1c\x82\x63\x72\x74\x47\x25\xd1\x14\xf9\xbd\xd5\x86\xbc\x31\xf0\x52\x23\x99\xba\x76\xf9\xd2\xfa\xad\xf4\x0d\x0b\x7c\xf5\xbb\x41\xdc\xb4\x50\xb5\x81\x29\x02\x00\x39\x81\x1d\x8c\x4a\x1b\xba\x88\xdb\x5a\x4d\x1e\xf8\x17\x7f\xb4\x18\xe8\xfd\x46\xb8\x96\x75\xb5\x7b\x1a\xf1\x6b\xf2\xbc\xf6\x77\xe4\xac\xc8\x9b\x2d\x8d\x94\x1b\x81\x7b\x1b\x67\xd3\xe4\xcb\x5d\xea\x0b\x18\x45\x0b\x42\xf5\x70\x28\x6e\x5a\x91\x7a\x23\xcb\x01\x00\xe4\x7e\x6c\x06\xca\x6e\xcb\x30\x79\x5f\xf5\xec\xfe\xbb\x14\xd4\x66\x49\xaf\x0d\x75\x49\x56\x45\x97\x2b\xf5\x77\xd2\x58\xfb\x74\xba\x6d\xa4\xa8\x79\x3f\x63\x6d\x20\xd4\xb0\x0e\xe4\x7b\xfd\x34\x69\xa1\xeb\x0b\xd2\x74\x3b\x58\xb1\xd3\x9a\x55\xfd\x6c\x3e\x00\xc8\x34\x9c\x6a\xa4\xf7\x60\x0f\xe3\x68\x55\x46\xdf\x3d\x30\xa5\xe8\x5e\x8f\x1d\x78\x3c\xf3\x4c\xa7\x27\x94\x91\xe4\xd7\xe6\x0a\x7d\x8b\x74\x6e\x9a\x64\x1e\x0e\xf4\xb2\xe4\xb1\xda\xbc\x6e\x19\x0f\xb1\x65\x0b\x8a\xb4\xef\x38\xf4\x69\x0f\x95\xaf\xb9\x3e\x00\x20\xbd\xc6\x15\x20\x62\x07\x4e\x72\x58\x95\x82\xde\x77\x1c\x5d\xd1\xaa\xee\xb9\x9c\xf6\xcc\x95\x1d\x21\x9c\x89\xc4\x8e\xd6\xb5\x5c\xe7\x88\xa6\xc6\x57\x5c\x4c\xc0\x31\x33\x8d\x7b\xd9\xab\xd7\xf0\x9a\x97\xb2\xa0\x54\xeb\xcf\xdb\x6d\xef\xad\x0c\xe6\x5d\x02\x00\xa9\x1b\xaf\x19\x6e\xd5\xdf\x21\xb5\xae\x88\xee\x99\x94\xa8\x0b\xde\x74\x7e\x95\xb8\x66\xcc\x6a\x5f\x28\xde\x91\x30\xd6\xe2\x2c\x2e\x5d\x7f\xb9\xe1\x86\x78\x6a\xc0\xea\x7a\xa4\x68\x97\x57\xbe\xfe\x1f\x51\xe9\x82\xcd\x1a\x6f\xe1\x33\x7b\x8a\x22\x42\xb8\x08\x00\x24\x2b\x04\x76\x30\xbf\xbe\xdd\xda\x0b\x65\x27\xbb\x9f\x6b\x1e\xe4\x8f\x77\xce\x55\x3f\xdd\xf4\xb3\x2d\x40\x75\x2b\xfe\x48\xf3\x1a\xe5\xc5\xf5\x76\x96\x2f\x8a\x03\xfe\x2a\x93\x51\xde\xb8\xec\xbd\x7e\x96\xac\x62\x41\xb8\x7a\xb3\xe4\xad\x7d\xb3\x1c\x14\xaf\x00\x00\x31\x42\xb8\xac\x36\xa2\xf7\x41\x43\x43\xe9\x48\xb7\x97\x65\x7e\x9e\xb1\x23\xbf\x9e\xb7\xf1\x59\x2b\xc5\x78\x21\xee\x74\x13\xd9\x30\x37\x7c\xb5\x65\xa3\x6e\x83\xdf\x4d\xe3\x17\x4d\xde\x32\xb4\x0e\xa3\x5a\x33\xff\xa1\x6a\xaf\x7c\x8f\xbd\x49\xf6\x50\xf2\x09\x00\x44\xd7\x44\x53\x6b\x14\xbd\xa2\x96\xad\xa5\x2e\x5d\x67\x9a\x5e\xe5\x39\xb4\xff\x6a\xb4\xdf\x48\x68\x75\xb1\xcc\x8c\xab\x68\x5a\x60\xfa\x13\x76\xd9\xfc\xd1\x70\xc3\x4f\x63\xec\xd3\x29\x96\x85\xe8\xe6\xab\x3f\xcc\x1f\x57\x55\x2a\x7e\xdb\x9b\x65\x6a\xe9\x09\x00\x10\xf1\x45\x75\xd5\xaf\x7b\xbd\x3b\x56\x97\x34\x76\x61\xda\xd6\xe6\xf6\xb6\xb7\xb6\x38\x6d\x9c\xd7\xb2\xbb\xf1\x4e\x9c\x53\xe3\x98\x45\x1e\x66\x34\x6b\xea\x9d\xfd\xca\x8d\xf1\x06\xea\x32\x57\xed\xa8\x96\x39\xff\x80\xf2\xbd\xca\xc9\x7e\xbb\xcc\x43\x46\x00\x00\xd1\x5c\x51\x5f\x35\x66\x7b\x19\xaa\xab\xd8\x30\xb6\x0a\xfd\x32\x67\xd9\xd0\xbf\xd8\xc8\xd4\xb4\x01\x2d\x6e\x77\xcc\x8f\x5e\x5b\x02\x3c\x34\xa9\x33\x88\x94\xe9\x7b\xbe\xd5\x83\x82\xf3\xb0\x69\x98\xa0\xfd\xe5\xb4\xcc\x14\x0a\x46\xda\x16\x69\x49\x4c\x0e\x00\x28\xcc\x6c\x62\x75\xe0\xb6\x5b\x98\xc9\xe2\xba\xd1\x51\xec\x7f\x39\xb6\x43\x14\xfc\xc2\xd4\xb5\x03\xee\x84\x9a\x98\xd7\x3d\x0d\xc4\x87\xa1\x11\x1d\x17\xc8\x8d\xbe\xa7\x5b\x8e\x52\x85\x1e\xf6\x0d\x20\xbd\xc1\x29\xc2\xf8\x1a\x3c\x6f\xab\xd6\xae\x65\xfe\x05\x00\x8a\x0a\x36\xb6\xea\xc5\xb6\x7c\xfc\xb2\x62\xbf\xd1\x40\xc2\xe2\xec\xbf\xb7\xfc\x22\x2e\x49\x75\xea\x1f\x26\xad\x8b\xb9\xdc\xe3\x4d\x56\x86\x7a\x77\x54\x51\xe7\xf9\x1e\x6c\x29\xa1\x9d\xf6\x98\xde\xb0\x88\xd1\xee\x94\x69\x6c\x82\x0c\xb6\xa3\x9a\x67\xac\x04\x00\x50\xb8\xb0\xfb\xab\xb6\x6f\x0d\x21\xff\xb3\xf9\xf5\x88\x07\x45\x9e\xad\x1b\xfc\x49\x0d\x4a\x39\xdd\xb7\x9b\x36\x37\x46\xdd\xbd\x81\xbe\x28\xe4\x7d\x3b\x8f\x91\xee\xdb\xd2\xcc\x03\xbb\x3c\xac\x2d\x59\x4c\x6b\x27\x82\xe1\x6f\x16\xcd\xf6\x97\x66\x1d\xbb\x07\x00\xe4\x58\x8e\xbc\x6a\xd6\xd8\x42\xc6\xc4\xe6\xf2\xe1\x79\xe0\xc6\xec\x85\x03\x5f\xc0\xfd\x29\xa5\xbd\xfb\xa0\xe4\x98\xa0\xae\x8d\xd0\xb7\x90\x81\x36\x0d\xf3\xb8\x2f\xbc\xc9\xc8\xea\x77\xff\x69\x26\xb1\xdb\x9d\xd4\x06\x47\x4e\xbd\x5d\xa6\x9a\xc2\x8d\x06\x00\xd9\x30\xb7\xb7\x12\x39\x1a\xc4\xc9\x28\x3a\x33\xb4\x94\x53\x96\x65\xec\xff\xc9\xc1\x25\x3f\xed\x39\xce\xe9\x8a\x9e\xe8\x2c\xe5\x7c\x0a\xc9\x6d\xed\xe2\xe6\xf8\xfa\x34\x0e\x71\x8f\xba\x3f\xaf\x37\xf3\x92\x9c\x7a\xf4\x89\xbc\xfd\x76\xed\xaa\xed\xbc\x6b\x00\x20\x7d\xce\xdb\x55\x91\x3b\xe2\x20\xc9\x2a\x3c\x31\xf8\x59\xfc\x6f\x66\x4f\xdf\x05\x31\x27\x79\x6e\xb7\x49\xec\x15\xed\xd2\xb1\x46\x74\x2f\xf8\x44\x0b\x4b\xd4\xb0\xea\xaf\x06\x9d\xa8\xc8\xfd\x94\x09\x12\xb9\x39\x9d\xd6\xad\x11\xee\x9a\x6a\xa7\x1c\x14\xfc\x00\x00\xc9\x33\x81\x63\xf9\xcc\x61\x40\x73\xbc\x60\x74\xe0\xa3\xfa\x5c\xc6\xbe\xde\xcb\xaa\x33\x49\xd1\x5d\x0d\xca\xc9\xa8\xaa\xf6\x20\xc5\x83\xe0\xd5\xcd\x4a\xf9\xe3\x55\x79\x96\x21\xd9\x43\x77\x9d\xd1\x22\xbd\xe8\x34\xa1\xcd\x92\x30\xa7\xa6\x2a\x6e\x8b\xae\x03\x80\xc4\x4b\x38\xbd\x2c\x60\xc8\xc9\x02\xe4\x9f\x1e\x98\x57\x4f\x4f\x9f\xec\xf9\x65\xbc\x95\x88\xe8\x3c\x6e\x88\x8b\xec\x6a\xab\xd4\xf5\x07\x89\x9b\xce\x6a\x7e\xfa\x4c\x98\x7f\xab\x23\xdd\x43\x0d\xcf\x94\xe9\x4e\x7d\x9a\x4e\xb9\xcd\xd4\x5a\xc5\x7a\x09\x07\x00\xc4\x0a\xe1\xa3\xd2\x91\x2d\x23\x4d\xa7\xf3\x0b\xfb\x47\x1a\xfe\xa4\x63\x7b\xea\x2d\xae\x89\x33\x3a\x4b\xea\x23\x23\x73\x5b\x3f\x1b\xb3\x83\x62\x9b\x10\xfa\x62\x1f\xb3\xb9\x57\xbb\xc1\x7d\x81\x41\xa1\x7a\xe1\xd4\xad\x49\x54\xf8\x4d\x65\xc8\x1f\x4a\xd7\x03\x80\x38\x44\x14\x5e\xba\x7e\x4b\x52\xeb\xb7\xbc\x4f\xfd\xf1\xcd\xbf\xd3\x17\xf6\x78\x37\x3e\x49\x38\xd5\xf1\xc2\x72\x21\xd2\xb5\x55\x50\xdf\x13\xe4\xdc\xf8\xd5\x58\xe7\xc3\x34\x47\xe8\xa7\xb8\xcf\x36\xb8\x69\x32\x9c\x86\xd4\x97\x95\xde\x53\x3b\xe4\x24\xe9\x35\x00\x10\x9d\x14\x51\x4a\x96\xed\x7e\x81\xae\xcd\xcd\xd8\xd1\x80\x91\xa6\x7d\xd9\xea\x8b\xdd\x1b\x57\x39\xac\xc5\x7b\x84\x13\x06\xf6\x10\x4e\x04\xac\xed\x51\x90\xfa\x56\xe4\x75\x38\x50\x0e\xbb\x21\x9b\xd3\xe8\xce\x0e\x26\x73\x18\x28\xb2\xfe\xa1\x7b\xc5\xec\x02\x00\x25\x9e\x2d\x2e\x99\xb5\x9b\x88\xe5\xe6\x46\xec\xf0\xc2\xb1\xd2\x9e\x8d\x1d\xc6\x8b\xe3\x8a\x86\x97\x12\x8e\x84\xe3\x06\xd2\x48\x81\x01\xc1\x3d\xcb\xc8\xff\xac\x28\x6e\x1f\xa3\x9e\x70\x63\x36\x7d\xa0\xdf\x75\x18\xab\x7f\x01\x4d\x9d\xe2\xaf\xeb\x63\x3e\x00\x00\xe5\x5a\x36\xab\xf8\xd5\xae\x2f\xf8\x23\xb9\x4b\xb6\x8f\x12\x1a\xd3\x26\xc6\x36\x11\xd9\x71\x29\x43\xc3\x24\x49\x78\x4d\xff\x0d\xf2\x44\x80\x7f\xf7\x4e\x6a\xe6\x8a\xb2\xf6\x44\xda\x6f\x37\x69\x93\x8e\x71\xc7\xe1\x54\xbd\x0e\x3a\x3e\x25\x43\x57\xc0\xda\x0c\x00\x8a\x27\xec\x9d\xc5\x87\x76\x5e\xa5\xc4\xe6\x7c\xd9\x66\xa2\x4c\xa6\x8d\x8c\xae\xa7\xa2\xe2\x3c\xb6\x6c\xa5\xc5\x84\x47\xf5\xbd\xa2\xc7\x07\xcc\xeb\x9a\x60\x10\x56\xe4\xb5\xc1\xc0\x71\x37\x4b\xe3\x7e\xa6\x9f\xc3\x47\xd3\x19\x56\xc3\x94\x2e\x6d\x33\x7b\x0c\x00\x14\x81\x1c\x6d\x71\xc6\x8e\x4e\x70\x71\x4e\xd3\x56\x3a\xc8\x4a\xab\x1c\x59\x03\xfe\xbd\xe1\xee\xe0\x16\xa8\x3a\xdc\xae\xf7\x35\x73\x8e\xff\x8b\xce\xcb\xcc\xeb\x2b\x22\x5b\x31\xac\xbd\x6e\x9d\x0d\x97\xd8\x7b\x1c\x97\x18\xdf\x71\xfa\xa7\x7c\xd7\x4c\x70\x63\x00\x40\x5e\xc7\x1d\xd8\xfc\x76\xfb\x36\x0e\x26\x27\x7a\x0c\xe2\x60\xd3\xa6\x0f\xaf\xe4\x90\x36\xe8\x06\xb6\x70\xba\xc3\x4e\xf6\x7c\xe0\x7c\xf1\xdf\xd7\x71\x87\x9b\xb9\x62\x51\x0b\xc8\x3d\xe8\xd6\x69\x79\xc9\x4b\x75\xdc\x60\x74\xe3\xed\xb1\xc9\xd4\x00\xbc\xf3\x00\x20\x6b\xe2\xed\x2f\xfa\xb8\x4d\x21\xfe\x9a\x8d\x1d\x8d\x13\xeb\x53\xab\xb6\x3c\x14\x7b\xc5\xfe\xe8\xaf\x15\x4d\x84\xa5\x76\x6f\x15\x69\xfd\x8b\xdb\xbb\x44\xe9\xcb\x9f\x36\xa7\x8b\xe6\xb9\xf5\x9a\x0f\x09\x9f\x3b\x0a\xf5\xef\x85\x52\x9b\xd3\xaa\xe7\x82\x5b\x00\x20\x55\x0b\x66\x17\x85\x6f\xcd\xd2\x2c\xcd\x3a\x30\xb2\x48\x3d\x3b\x65\xef\xe0\x79\xe5\xb7\xd8\x9a\xbe\x6c\xe5\xf4\x75\xa7\xba\x3a\x15\x3e\x7e\x1f\xdb\x5a\xe5\x91\xcb\x3b\x9b\x0a\x64\xe9\x6e\xf5\xf5\x67\xa4\x05\x8e\xc3\x7a\x1b\x89\x93\xed\x52\x95\x83\xc8\x08\x00\x92\x71\xe1\x94\x42\xf2\x58\x4a\xfd\xdd\x2c\x9b\x61\x0f\xd3\xba\x14\x87\x81\x9b\x06\x55\xcc\xd9\xde\x0a\xfd\x94\x75\x91\x9d\xdb\xb4\x6c\x3f\x4e\xeb\x09\xf5\x9b\xe5\xf1\x8d\x66\x55\x96\x5b\x5d\xfd\x74\x85\xc2\x71\xab\x2e\x55\x06\xb3\xcd\x57\xc2\x24\x4e\xff\xef\xe2\x50\xa1\xfb\xe8\xb5\xc6\x92\xcc\xdd\x43\x5b\x2c\xcc\xe4\x53\x03\xd5\xf5\x9a\x18\x45\xcf\x33\xe3\xf8\x3a\xdb\xce\xf5\xfa\x77\x7e\x59\xad\x85\xba\x85\xcb\x3d\x1b\x43\x34\xab\xdc\x8a\x4d\xfd\x2a\x2b\xc7\x83\xda\x67\x72\xb2\x2d\x4d\x69\x2f\x39\x08\x00\xe2\x49\xd1\x8c\x82\x6b\xa3\x55\x2d\x49\x99\xb4\xa1\xb5\x4d\xe1\xc9\xda\xfe\xc7\x0d\x6e\x31\x25\x3d\x75\xe6\xf9\xa1\x0f\x3b\xf6\x98\xec\xfd\xc2\x5b\x6e\xeb\x3f\x2e\x77\x6e\x38\xa6\x1d\x77\xab\x35\x05\xaa\xe3\x1d\xef\x6a\x09\x8a\x42\xdb\x2d\x8a\x06\xe9\x26\x00\x10\x57\x8b\x92\x8e\x2e\xc2\x85\xd7\xfc\xde\xb1\x1c\x1f\x00\x3b\xdf\x3b\x40\x58\x06\x97\x5b\x94\x44\x17\x24\x28\xe3\x93\x96\xa1\x15\x0c\x06\x39\x03\xdb\x51\x77\x9a\xd2\x82\xbf\x93\x3b\x8d\x36\x9f\x54\x1a\x39\x4a\x3f\x4e\xf9\xed\x79\x0c\x1c\xa6\x1f\xb6\x79\xc9\x9a\x02\x05\x1e\xfe\x8e\x0d\x82\x8b\xb7\x47\xe3\x02\x91\x8e\x3d\xff\xe0\x43\x50\x0a\xf3\x0d\x42\x3c\x26\x5c\x7a\x8f\x88\xc2\x4d\xa1\x3f\x25\x6d\xc1\x5f\xa9\x4b\xa4\xcc\x21\x1e\xcb\x31\x51\xbb\xc8\xef\x22\x93\xe9\xb5\xb4\x30\x4f\x21\x58\xc5\x30\xdb\x5c\x62\x9e\x81\xfa\x0e\x3d\xc5\xf8\xa0\x83\xb7\xa5\x61\x43\x30\xd4\x1e\x47\x5c\x0a\x76\xd4\x3c\x07\x4f\xc4\xbb\x48\x7d\x09\xdb\x09\x6d\xf4\x54\x92\x1d\xc9\x07\x76\x8c\xcc\x27\x5f\xcc\x71\xa3\xae\xa0\x0e\x44\x3c\xa2\xfd\xa4\x9b\x3d\x13\xc1\xd9\x60\x83\xcd\x31\xa6\x8c\x19\x71\xe0\x34\x6a\x29\xe9\xda\x58\x0e\xba\x9c\x2c\xee\x8a\xc2\xf4\x50\x7c\x4d\x74\xec\x1b\xea\x0c\xf1\x71\x7c\x26\xcd\x8a\xe6\x48\x38\x49\xb7\xad\x3d\x44\xaa\x65\x2c\xca\x0e\xa3\xac\x06\xd3\x22\x56\xd3\x96\x41\xb2\xa5\xff\x30\x0a\x99\xe7\x6d\x8e\x43\x9f\x58\xf5\xfb\xee\x21\xd6\x41\xe3\x23\x34\x64\x23\x74\xbf\x83\x8b\xfa\x06\xfd\x31\x3c\xc4\xc0\x99\x39\xa2\x22\xec\x2b\xe6\x5e\xca\x25\xbc\x94\xb5\xa2\x66\x8c\x98\xcc\x6a\xcf\x4a\x20\x07\xb2\xbd\xd7\xf3\xa8\x49\xec\xed\x4b\x0d\xf4\x46\x8e\x9f\xcd\x13\x28\x9f\x33\x73\x4f\x73\x5d\x8b\xd0\x6e\x88\x03\xff\x23\x18\x6c\x3b\x8c\x24\x0a\xe2\xf4\xa9\x68\x2b\xfe\x6f\xc1\x0b\x4c\x3f\xff\x34\x59\x85\xab\xe4\x9b\xab\xdb\x08\xd1\x7c\x44\x66\x3e\x29\x95\x1f\x16\x7e\x83\xc2\xe0\xdb\x2c\xcd\xa2\x3d\xe4\xb5\xdb\x2e\x06\x77\x72\x15\x3b\xfd\x6b\x03\x74\xa9\x03\x31\xb0\x5b\xda\x99\xcd\xbb\xe0\x6c\xf5\x39\x8d\x06\xb9\x56\xd5\xc6\x63\xa3\x7e\x2b\x89\x44\x22\xe6\x81\x22\xa2\xf2\x26\xee\x99\xec\x5d\xfa\x6f\xe2\x02\xa9\x26\xec\x16\x99\x20\x99\xe1\xf1\x84\x66\x2b\x4a\xb7\x2d\x66\xfc\xe6\x1f\xdc\x9a\x5c\x4d\x69\x13\xf6\x9c\xaf\x5d\xdd\x52\xda\xd0\x0b\x7b\xde\xe4\xab\x3c\x0d\x1f\x6f\xb0\xe2\x4c\x45\x8e\xd6\x9f\xc1\xa7\xa2\x77\x19\x49\x15\x76\xd8\x7f\x74\xef\x37\x19\x09\x6b\x35\x91\xeb\xce\x92\xb6\x2a\x53\x3d\x2a\xa8\x58\x99\x9d\xad\x88\x21\x12\x9e\x1b\x19\xaa\x8a\x1d\x3e\xd0\x55\x5a\x63\x35\xd8\x63\xce\xaf\xbd\xd0\xc7\x95\x77\xd4\xed\xed\xae\x60\xd9\x21\xf6\x77\xb8\x61\xe9\xa8\x9b\x2d\xdd\x65\x38\xac\x5b\xc3\xbf\x1b\x0b\xf0\x12\xd3\xcd\xd0\xef\xa4\x45\x3a\x9c\xfb\x67\xca\x77\xa5\xca\xb6\x9f\xe1\x2f\xb6\x0c\xef\xab\xdc\xb9\x23\xb8\x93\x5e\x2d\x1b\x9b\xa8\xe7\xd5\xd6\x0c\x27\xc8\x2e\xd5\x65\x0e\xec\x64\xc6\x23\x72\x7b\xde\x63\x4e\xa1\xa8\x1d\xff\x95\x5e\xc6\x1c\x69\x69\x4b\x7b\x88\x0f\xb0\x3c\x0e\xdd\x45\x3c\x6f\x38\xea\x7e\x8f\xb2\x47\x3d\xdb\x76\x92\xfe\x59\xb2\x61\x78\x4e\x65\xec\xde\x23\x1d\x37\xab\x97\xee\x5a\x68\x7a\x59\x3b\x65\x5b\x9c\x2c\x1e\xf6\x62\x24\x17\x3a\x02\x7f\x39\xb8\x02\x93\x89\x9a\xd9\xb3\xa5\x14\x8b\x29\x68\x3f\x97\xd6\x81\x3b\xd5\x44\x09\x6d\x23\xd6\x99\x3a\xdd\xdf\x51\x36\x6b\xd6\xd8\x2d\xa6\xb7\x48\x1a\x0f\xd4\x10\xd4\x35\x5b\x46\xbf\x13\x93\x61\x9a\xce\x27\xa4\xa9\xf0\x22\xd3\x42\xd2\x15\x64\x8e\xb8\x82\xbc\x0b\x8d\xa2\x6e\xa5\x0c\x61\xd5\xb5\x35\xd4\xbf\xf0\x57\xb3\xa7\xd0\x6d\x48\x55\x11\xf3\x18\x04\xea\xcc\xa5\x7f\x43\x0b\xe8\xcf\x6d\xee\xb0\x56\x40\x8c\xfd\xe5\x78\x21\xdc\x67\x74\x21\x21\x13\x31\xde\xe9\x49\x5c\x8a\x4a\x35\xd6\x91\xec\x31\x53\x44\x87\xc8\x36\xd8\xdb\xd4\xa5\x14\x47\xfc\xae\x9a\xc7\xd4\x18\xe2\xd6\x2c\x0d\xcd\x44\x7e\xbe\x7e\x1b\x63\x3e\x2d\x76\xa9\x09\xbc\xc6\xd8\x6f\xb3\x8f\xf9\x05\x7a\xb4\x2f\x1b\xc7\x42\x9d\x1d\xf1\xc6\x6f\xc6\xb8\x74\xe4\x13\xa2\xb0\x15\x86\x3e\x62\x14\xee\x86\x68\x36\x69\x13\xa1\x96\x22\x26\xe3\x88\xdf\x6b\x2a\x28\xdb\xc9\x63\x59\x0b\x69\x6e\x54\xcb\xfa\x5c\xfa\x76\x7a\xe3\xd2\xcd\xa0\x18\xdc\x69\xd3\xcd\x3c\xc8\x24\xec\xc9\xc7\x30\x49\xe1\x43\x49\x58\x39\xd9\xa6\xcd\x80\x6b\x27\x1f\xd3\xcf\xc7\xef\xa7\x6c\x11\x6c\x25\xfc\x4b\x1d\x21\xe7\x90\x02\x68\x87\xaa\x4b\xc8\x0d\xf4\xc7\x99\x61\xd4\x95\xa0\x77\x78\x3b\xed\x01\xc4\xf1\xf8\xc4\xb8\xc6\xfc\xdb\xc6\xc2\x0c\x60\x1d\xde\x95\x8d\xda\x09\xfe\x1c\xac\x44\xdf\x82\x62\x5a\x26\xb1\x76\x10\x53\xcb\xc7\xc5\x41\xb7\xf8\x29\x78\x13\x33\x9d\x34\x9f\xf0\x83\x79\xa1\x2a\x97\x24\x64\x95\x64\x14\x51\x02\x59\xdf\xc3\xed\x68\x76\xec\x76\x8f\xfd\x8c\x85\x9c\x10\x9b\xcb\x90\x96\x13\xb2\x63\x15\x72\x81\x20\xb4\x9f\x88\xda\xc8\xff\xaf\x79\x26\x5a\xc3\xef\x50\x3f\xc7\xfc\xcb\x47\x73\xff\xc6\x95\xf0\x93\x08\xb7\xf0\x7f\xf3\x57\x57\x26\x13\x79\x7c\xe7\x74\x0a\x79\x23\xef\x77\x18\x92\xba\x9e\xf7\xc0\x43\x4c\xaf\xe1\x75\xd8\x2e\x05\x5f\x72\x77\x8d\x1d\xa9\x3b\xa9\xf5\xea\x89\x46\x84\x68\x1c\x1a\x9c\x91\xdd\xaa\x77\xca\x18\xb4\xbb\xf2\x36\x5b\x84\xd9\xa9\x38\x81\x3b\x8b\xab\x90\xf7\x97\xab\x09\xab\x65\xe0\x26\x2f\xd2\x62\x69\xe8\x3a\x16\x65\xad\xf8\x8a\xc7\x4a\x9a\x58\x14\x6e\x8b\x06\xd7\xf2\xaf\x0d\x3b\xc0\x9c\x5a\x7d\x3b\x5e\xd5\xe9\x9b\x97\xd5\x2f\x44\x2c\x68\x9c\x23\xd3\x22\xb7\x5b\x6c\x99\x9e\xe8\x5a\xd3\x73\xcc\x76\x6c\xb0\x61\x6b\xe9\x69\xfc\x0a\x5d\x56\xda\x71\x62\xb8\xfa\x70\x28\x93\x4c\x52\xbc\x77\xdf\x47\x7d\x22\xbd\x6d\xbb\x85\xb1\x4d\x78\x65\x10\x53\xf3\x70\x68\x49\x1b\x15\x86\x1a\xf0\x33\x9c\x81\x5b\xf7\x06\x48\x90\x88\xb1\x2e\x7f\xd0\x07\x45\x69\x9f\x8e\x7a\x81\x29\x6e\xde\x59\x12\x8e\xab\x6d\x58\x9c\xaa\x26\xa8\x4d\x21\x21\x23\xa4\xfb\xda\x4f\xee\x05\x54\xbc\x32\xd1\xf6\x2a\x23\x4f\xac\x19\x10\xd5\xc0\xb7\x49\x5b\xf5\xb5\x3f\x47\x37\xe8\x5f\xd5\x35\x6e\xf9\x5b\xdc\x84\x48\xe9\xc7\x32\x50\x28\x87\xee\x09\x54\x14\xfa\x5b\xfb\xbb\xe2\x2e\xdc\xb4\xe6\x13\xa9\xae\x84\x70\xcb\xda\x10\x04\x49\x6b\x08\x77\x8f\xa7\xfa\xa8\x0e\xd9\x59\x33\xe6\x4b\x82\xfb\x9f\xd4\x4c\xd9\x63\xdf\xf2\xa1\xb6\x65\x07\x4f\x9f\x55\xb7\x7e\xec\xb4\xd8\x1e\xfe\x68\xe8\x3b\xfd\x31\xb2\xbf\xff\x2d\xf2\x24\x5a\xd7\xdd\x58\x1c\x8d\xed\x68\x7b\x94\x72\x0b\x3f\xd9\xb8\x3b\x24\x8b\xe4\x63\x72\x74\xdf\x4c\x39\xa5\xbe\x6e\x97\x47\xdf\x27\x91\xee\x56\x93\xbe\xd6\x54\x6c\x31\x90\x79\xb0\xf4\xd6\xa7\x14\x27\xf8\x72\x1d\x91\xb2\x03\xe9\x2b\x98\x4a\x25\xa2\xd3\x48\x5b\x68\x51\x58\x62\xd5\x6e\xba\x37\xfe\x68\xc6\x16\xc6\x1a\x52\x76\xb8\x2f\x58\x4a\xb5\xf7\xd0\x41\xa7\xe8\xdf\x6c\x8a\x59\x66\xa8\x65\x57\x3d\xf1\x63\xdd\xa5\xc1\xdd\x24\x1d\x82\xdc\xea\x4d\x0e\x45\xd9\x69\xff\x22\xbf\x45\x4f\xf0\x61\x94\xe3\xd8\x5e\x92\x2b\xb5\x07\x2f\xad\x5a\x47\xeb\x21\xaa\x33\xd6\xd3\x8f\x92\x27\xc3\x2e\x82\x76\xb4\x60\x8f\x0c\x48\xc6\x38\x6e\xb3\x9e\x85\x61\x02\x3b\x95\x84\xf7\xa8\xaa\x81\x8b\xc4\x4e\xf4\xc1\x96\x0a\x52\x09\x76\xa6\xd6\x8e\xec\x8d\xd3\xf0\xf6\x52\xe6\x10\x3c\x89\x7c\xaa\x1d\x71\xbc\x72\x27\xcd\x95\xcc\x4f\x3f\x43\xdf\x48\xa5\x85\xd1\x19\x7d\x74\xa9\x87\x2b\x14\x01\xee\xb3\x59\xc5\x0a\x62\xca\xb7\x8f\xe2\x3e\x12\x5b\xfb\xa7\xe0\x6f\x92\xf8\x4d\xfd\x84\x13\xe4\x5c\x35\x48\x1c\xa5\xc4\x70\x4b\x49\xbb\xa8\x1b\x09\x19\xe4\x0b\x34\x64\xc5\x76\xaa\x1d\xbd\x6d\xd3\x7b\x5a\x09\xe3\xeb\xba\x09\xfa\x6d\xa8\xd6\xfd\x34\xa8\x67\xde\xb1\xf1\x63\x0e\xb1\xae\x6e\xd5\x62\x73\xc1\xd0\x5e\x67\x5c\x2c\xd8\xda\xf0\x14\x1f\x05\xbe\x57\x3e\x27\x24\x40\x65\xec\x9f\x44\x14\xf4\x37\xde\x95\xd4\xc9\xc4\x94\x0f\x93\xbf\xb2\xa6\x6f\x72\xa3\x62\x58\x47\xd6\x45\xd3\x6d\xd9\x4c\x77\x13\xe3\x06\xc7\xd7\x06\xc7\x9c\xce\x49\x1c\x15\xa3\x77\xf2\x61\xdd\xab\x31\x87\xf9\x21\x96\x25\xd8\xeb\xbc\x2f\x8a\x7c\xdc\x57\xde\x4d\x56\x23\x21\x8c\x77\x1c\xfb\x0f\x51\xce\xdb\x57\xd6\x47\xfa\xc1\xdb\xb5\x31\x8e\xa2\xe0\xed\x0c\x1d\xa6\x45\xf0\xc6\xdc\xe1\x8c\x65\x3c\x95\xcd\x31\x08\xc9\x3d\x36\xe4\x8a\xe4\xa9\x7f\x74\xd8\xa2\xf6\xaa\x67\x99\xd6\xa1\x3f\xaa\x1c\xa5\x07\xb0\x21\xca\xb9\x50\x3a\xae\x41\x31\x17\x7d\x9f\x30\x57\x3e\xa3\xe4\x33\x71\x48\xfa\x25\xf5\x2b\xb9\x42\x72\x31\xe4\x1c\x35\x54\xac\x74\x77\xa2\x27\x8a\x9c\x6d\x17\x81\x43\xfc\xeb\xfd\xdd\xf0\x1b\xcd\x13\x2d\x57\x91\x1e\x8d\x8f\xf5\x19\x28\xb2\xe5\x9d\xd8\x0d\x7d\xd1\x6c\x45\xff\x86\xcd\x30\x01\xc8\x2b\xb8\x97\xfa\x47\xc5\x91\x84\x7e\x6d\x57\x4a\x07\x89\xad\x0e\x0a\xbe\x46\xa1\x28\xb4\x4b\xb6\xd1\xba\xa4\x6d\xb6\x30\xd0\x53\x78\xb2\xe7\x5b\xdd\xf0\x20\xd8\x94\x8f\xb0\xea\xdb\xa6\xf9\x89\xac\xe9\xbe\x2e\xf8\x82\xba\xdc\xf1\x89\x36\x15\x53\xdb\xfa\x0e\xe1\x84\x9b\xdf\x74\xa0\x68\x37\xfe\x5f\x4b\x5a\x32\x86\x78\xd5\x28\x0e\xb6\x23\x3f\xd2\x12\x97\x6c\xa2\xf9\x2a\xde\xd8\x1a\x19\xc7\xc4\x94\x1e\xb7\xba\xb8\xb1\x4b\x8d\x64\x78\xf3\xf0\x98\xc6\x05\xf1\x6b\x10\x2d\xf0\x46\x61\xfa\xdc\xa8\xc9\x18\xa0\xab\x05\x5e\x87\xdd\xd5\xf6\xb0\xc8\x03\xaf\x6e\xba\x9b\xf4\x9d\xc8\x35\x93\x82\x8e\x92\x4d\xfa\xfe\x25\x61\xd4\x27\xaa\x72\xdb\x71\x06\x4f\x32\xbf\x5b\x08\x7b\xbb\x2b\xa5\xe1\x1a\x3c\x61\xdb\x3d\x35\x0d\xd1\x31\x9a\xc0\x37\xa0\xec\xb7\xd4\x53\x8e\xa1\x9b\xfa\x46\xea\xde\x61\x33\xba\x38\x85\x87\xf0\xcb\x5b\xdf\x27\xed\x25\x2e\x6c\x78\x19\xd4\x4b\xf6\x33\x52\x97\xa4\x50\x85\x6a\x92\xdd\x5c\x86\x87\x04\x31\xbc\x8b\xe1\x54\xfd\xa4\x53\xc1\x58\x5f\xfb\xa5\x7e\x8c\x81\xa9\x7b\x2f\x1b\x67\x5c\x44\xbc\x80\x9e\x81\x09\x68\x2b\xcc\x4a\xf0\x08\x36\xa0\xe4\x1e\x94\x8f\x97\xa6\x2a\xa1\x97\x24\xcf\xe0\x33\xcc\x7e\xca\xfd\xc5\x65\xac\x56\xfa\x6b\xeb\x36\xf6\x37\xa8\x6b\xe8\x03\x7d\x76\xdd\xfa\x8e\x4b\xf4\x34\xf8\xcf\x7a\x2b\xba\x1e\x39\x22\x5b\xc0\x70\x40\xd7\x40\x89\x8c\x16\xec\x7a\xb4\x05\xf4\xc3\xaf\x28\xa9\x04\x6f\x10\xc3\x53\x17\x43\x52\xb2\x2a\x98\xcc\x2c\xa6\xfe\x5e\xec\xce\x42\x30\x86\xac\xd9\xec\x9b\xd0\x8f\xa1\x15\xb4\x59\xc8\x1d\x1d\x33\x69\x65\xe8\x15\xa6\x18\xda\x41\x8c\x4c\x5a\x4a\xcf\xc6\xfe\x02\x5b\xe8\xef\xf1\x66\xd4\x1f\x86\x85\x18\x5f\x7c\x1f\xcc\x21\xcf\x4b\xd9\x05\xcd\xa7\x2e\x0d\x5e\xce\x04\xe8\x09\x8b\xbe\xb2\x3c\x40\xb3\x35\xc4\xee\x66\x72\x06\x9e\x51\x62\x08\xed\x6d\x00\x65\x3f\x91\x67\x80\x53\x63\x49\x85\xe2\xd3\xd4\x57\xe4\x72\x46\x2c\x6d\x80\x22\x40\x4e\xd0\x31\xd4\x1d\x9b\xef\x30\x92\xe9\x56\xc9\xef\xc1\x35\x0c\x71\x90\x05\x8a\x81\x66\x2f\xda\xc5\xe4\x30\x87\xad\xbb\xd8\x4b\x58\x27\xfb\x53\x48\x63\xf4\x9f\x2d\x35\xe4\x60\x06\x59\x77\x96\x7c\x9e\x71\x43\x94\x43\xa9\x07\x37\xd3\x3e\x52\xf1\xe0\x47\x44\x1f\x2d\x13\x6a\x2e\xba\x4f\x4f\x61\xe6\x27\xfb\x32\x92\x58\x41\x41\x0b\x40\x12\x7b\xce\xa2\x66\xe8\x2c\xfb\xa5\xf5\x0b\x16\x8f\xe3\xd7\xbb\x99\xe8\xc9\xfd\xdd\xd4\x40\x3c\xcd\x7d\xa0\xf5\x25\xe1\xb9\xdb\x05\xd7\xc8\x9b\xb9\xa3\xd4\x2e\xca\x46\xee\x6e\x38\x44\x4d\xe4\x9e\x2a\xbc\x4f\x2b\xe4\x3e\x4c\xaa\xa2\x23\x78\xf6\x6b\x5b\x19\xa3\x3c\xbf\x45\x5c\xc8\x95\x17\x35\x25\x89\xf9\x90\xdb\xdd\x79\x05\xf7\x51\xf9\xdd\x42\xc7\x9f\x56\x06\xa9\x2a\x08\x3d\x8a\x12\x5e\x1e\xb1\x5f\xce\x21\x63\x48\xfb\x65\xbd\x30\x15\xf9\x86\xf4\x54\x41\x1c\x75\xa6\xe4\x41\xe2\x72\x5a\xb2\xf8\x7d\xe0\x4d\xfa\xa0\xe8\xc9\xa2\x4c\x30\x48\xd8\x37\xe5\x32\xd3\x91\xdf\xd7\x36\x86\x8d\x68\x5c\x6e\x62\xe3\x82\x2d\x34\x79\x03\x3e\xb0\x7e\x0f\xfb\x32\x21\xc3\xf8\x89\x18\x44\x64\x1b\xbc\x6a\x1a\x49\xfb\x74\xd1\x79\x6d\x94\xd9\x9a\xb0\xf8\x4b\x54\x8c\xca\x21\xe0\x19\xed\x85\x7c\xd4\xed\x31\xa3\x5e\x6a\x63\xe3\x00\x49\x85\xbc\x96\x10\x4c\x5d\x5f\x81\x61\x25\x36\xa6\xfb\x2f\x69\x25\x2e\xa8\xd3\x9d\x39\x8e\xaf\x6c\x03\xf1\xe9\x84\xf6\xe6\x1d\x55\x4f\x88\x6f\x1a\x8e\xe6\xae\x20\x17\xd6\xd7\xc7\x8d\x52\xce\x19\x16\x07\x38\xd3\xca\x35\xf9\x6e\x2c\xc6\x22\xc5\x4a\x9b\x18\xc8\x55\xec\xd1\x1c\x83\x7e\x39\x1c\xaf\x8f\xc1\xdc\x18\x24\x4a\x24\xd8\x8b\x7d\x20\xf4\x09\xf7\xbb\x1b\x8b\xd3\x13\x62\x3a\x82\xaa\x22\x89\x86\x96\xf1\x1c\x13\xe9\x77\xe3\xd4\xb8\x68\x0a\xd3\xf4\xda\xff\x0c\x6d\x8e\x8e\xec\x56\x4d\xbf\xae\x94\xd8\x20\xc0\xeb\xe2\x83\x4d\x72\xb4\x78\x5b\xb9\xae\x1e\xc3\x18\x2d\x11\x3f\xc3\x52\x86\xbc\xa0\x4a\x5c\x5b\xff\x38\x6e\x3a\xfe\x4e\x8f\x57\xe5\x5f\xc4\xd5\x1d\x31\x39\x81\xa4\xc6\x16\xdb\x0d\x5f\x28\xf3\x2d\xd9\xfe\x03\xd4\x61\x43\xa0\x1b\x86\x4e\x52\xe9\x6d\xb6\x81\x04\xc9\x9c\x2e\x11\x5b\x5b\x7d\xd2\xf2\x17\x9b\x52\x3b\xa6\x22\xb1\xab\xea\x0c\xbc\x55\x6c\x02\x42\x45\x06\xd8\x4a\xd4\x58\xed\x7f\xec\x21\xcc\xa3\x7c\x1c\xfb\x36\x3e\x2d\xbe\x97\xe3\x40\x7c\xec\x7f\x8a\x53\x4a\xd9\xe2\x62\xe2\x5c\xa3\x9f\x03\x72\xb8\x7b\x21\x71\xe7\x05\x56\x13\xec\x6f\xcb\x7c\x96\x09\xae\x51\x5e\x60\x35\x23\xc3\xb8\x1a\xd6\x51\xd4\x7b\x12\x96\xf5\x0e\x73\xb5\x16\xcb\x5e\x86\x3b\x93\xf7\x9d\x5d\x4b\x78\x19\x9f\xc1\x1e\x23\x47\xfb\x0b\x38\x73\xa9\xfb\x5c\x88\x9c\x2e\x06\x07\xc8\xe0\x9a\xa1\x1b\x9d\x33\x98\x83\xc8\x79\xe6\x72\xe6\x1e\x94\x5e\xb9\x84\x79\x1d\x63\xcd\x79\xc0\x72\xc4\x32\x88\x17\x59\xb9\x78\x97\x9a\x87\xac\x7a\xc2\xd5\x3c\x3e\xeb\x5f\xd2\x9e\xb8\x4f\xec\x64\xca\x49\xff\x78\xf6\x21\xda\x47\x97\xcd\x9c\x72\xb0\x02\xa8\xe2\xd6\x30\xf3\xdb\xe7\x80\xf7\xf0\xc3\x26\x0d\xe4\x45\xe8\x93\x63\x20\x3c\xd1\xc8\xc6\x40\xe3\xa4\x01\x82\x92\xe9\x4e\xbe\x5d\x7d\x8c\xc9\xa2\x7a\xe6\xaa\x98\x2f\x68\xb2\xb8\x78\x16\x9c\x31\xd3\xef\x0c\xdb\x06\x1c\x70\x59\xc3\x3e\xce\xac\x02\xcc\x9c\x07\x2c\x7d\x6b\x09\x23\x8b\x36\x6e\xf8\xc1\xe8\xa7\xa7\x4b\xdf\x81\x00\x7d\x82\x35\x0f\xc4\x30\x60\xf8\x62\xf0\x09\xe8\x5c\xb5\x03\x2a\x07\x6f\xe5\xf4\x43\xcf\xa0\xed\x1b\x0c\x4c\x09\xb3\xdd\xaf\x82\x15\xcd\x32\xbb\x2c\x61\x3b\xb1\x0d\xc0\x2b\x4e\x3c\xfb\x63\xb3\x92\x3e\x8d\x93\xa6\x4f\xa6\x97\x70\x2a\x24\x65\xf4\x03\x9c\x5a\x68\x0b\x23\x9a\x03\xe2\x1c\x19\x17\x38\xcd\x95\x26\xb0\x9c\x73\x25\x7b\x00\xfc\xc5\x75\x8c\xbd\x0a\x6d\xe7\xe6\xaf\xf9\xc1\xe4\x72\x9b\x5d\xa6\xb2\xe0\xdc\xf3\x56\x09\xec\x6e\x6e\x5e\xc3\x52\xaa\xb5\x7c\x97\x26\x8c\xca\x95\xfb\x0b\x4d\xb4\x69\x32\x0d\x63\x25\xad\x5f\x7a\x07\xfd\x90\x9e\x2b\xf5\x2d\xef\x65\x58\x4b\x58\x59\x8e\x8c\x71\xf1\x89\x98\x4e\xd0\x22\xfa\xb5\x66\x3d\xc4\x17\x79\x2e\xbc\xcc\x94\x09\xe7\x59\x9d\x60\xfd\xcd\xdf\x68\xfa\x42\x26\x9b\xab\x95\xe9\x14\x47\xd3\x47\xde\x47\xca\x0e\x23\x8e\x7a\x92\x8a\xd4\xdf\x47\x9e\xa0\xad\xd6\x25\x94\x9e\xa7\x7d\xd5\x98\x33\xc4\xf4\x6b\xaa\x89\xe8\x3a\xc6\x31\xc5\xcd\xd5\x15\xe0\xb8\x6c\xdf\x42\x0e\xf4\x50\x92\x66\xbd\x92\x15\x25\x5c\x6a\xd8\x4f\x6a\xed\xba\x21\x77\x23\x2f\xef\x68\xe1\x5c\x27\x4f\xb6\xa5\x91\x27\x29\xa6\xe6\x47\xf0\xdf\xd4\x9a\xc6\xf2\x92\x75\xb4\x58\xf3\x68\xfa\x2a\xba\x9f\xf1\x7c\x54\x2a\xc3\x57\xd7\xe8\x2b\x07\xc3\xd4\xcb\x16\xce\x81\x10\xf2\x78\xeb\x5c\xe6\x69\xd1\xa8\xfe\x16\x29\x78\xa0\x49\x16\x49\x3a\xd7\x37\x9b\x33\x85\xcc\xe8\xae\x25\xcf\xa4\x44\x74\xb4\xc0\x37\x51\x67\xb6\x6e\x29\x6e\xa0\xbe\x6a\xe2\x6d\xea\xa6\xdd\xb3\xcc\x8f\xbc\x43\xbf\x6b\x4c\xf1\x0d\x67\xbc\xd2\xfa\x2c\x78\x07\x79\x28\x0c\xd6\x24\x26\x47\x9c\xa4\x0f\x24\xde\x1d\x31\x49\xeb\x49\xd0\x96\x73\x6c\x18\x79\x65\xff\x2d\x12\x8b\xfc\xb8\xe7\x48\xdd\x79\xca\xb6\x4e\x7c\xb1\x0f\x55\xd3\x7a\x73\x53\x2a\x8d\xdb\xf8\x21\xb2\x9e\xce\xaa\x37\xf9\x3a\x32\xe4\xba\x1b\x0b\x3e\x81\x87\x94\x66\xeb\xbd\xcc\x79\xe2\x4e\x73\x8f\xf0\x62\x35\x52\x75\x53\x98\x5d\x5b\x2e\x28\x14\xfc\x53\x97\x4c\x1b\x17\x18\x10\xc9\xa8\x02\x41\x2a\x0a\x5f\xe6\xc0\xff\x81\xd9\x96\x51\xcb\xdf\x85\xf7\x8a\xca\xe5\x33\x88\xc7\x56\x15\xf3\x93\x29\x32\x67\x39\x3f\x84\xbe\x17\x00\xf8\x12\x08\x67\xb6\x17\xfc\x03\xc3\xa8\xe2\x05\x02\xf8\x4a\xfe\x49\x81\x1f\xe2\x06\x2d\x8a\xff\x06\x65\x41\xde\xe6\xef\xc6\x08\x4a\x5b\xf8\x4c\x9c\x20\xfd\x0f\x3f\x89\xb0\x3d\xca\x9e\xbf\x84\x6c\xbf\x6a\x15\xdf\x9a\x2a\x75\xa6\xf3\xad\x19\x25\x00\xc0\xaf\x82\xf6\xd4\x57\xf1\x3f\x23\x0c\xca\x0e\xfe\x4e\x94\x13\xdf\x87\xcf\x44\xab\xa9\x7d\xfc\x74\xec\x54\x64\x26\x7f\x19\x6e\x6b\xa9\x07\xef\x33\x01\x4c\x37\xf2\x26\x49\xd8\xc8\x63\xbc\xfd\x14\x9e\xcf\x6f\xde\x56\xda\x4e\x67\x2c\xef\x28\x18\x00\x00\x7c\x3f\xe6\x6a\xe3\x18\x8f\x88\xbb\xa7\x98\xc7\x4b\xc4\x3f\xe1\xee\xe5\xb9\x13\xee\x53\xaa\x78\x8e\x24\x6b\x44\x00\xcf\x9a\x1c\x5f\xe2\xce\x7d\x4d\xe9\xd8\xb4\x87\x7b\x8f\xe6\x1e\xe9\xc5\x7d\x48\xef\xf5\x19\xe4\xfe\x02\xb3\x9d\xab\x79\x2b\x98\x1e\x00\xc0\x1b\x66\x55\x1a\x36\x71\xee\x52\x5b\x65\x23\x9c\x2b\xb4\x68\x4e\x01\xe7\x34\xed\x12\xd9\x93\x73\x96\xce\x83\x3b\x70\xae\x32\xe2\x8b\x97\x71\x6e\x82\x2b\x36\xde\xe1\x3c\x80\x16\x45\xc8\xb8\x76\xcc\x85\x3e\x39\xdc\xf5\xac\x15\xce\xb5\x5c\x88\x1d\x09\x00\xbc\x59\xec\xfd\x3a\x0d\x7b\x88\x75\x4a\xba\x98\xad\x63\x7d\x65\x7d\x61\xf3\xd9\xae\xc4\x3b\xec\x46\x76\x1a\xec\x2d\x7b\x2f\x5b\xb5\xd9\x9d\x7d\x99\xfd\x78\xa3\x35\xfb\x23\x27\x6d\xfd\x77\xce\x1a\xce\x88\x8f\x2b\x87\xc0\x5d\xe0\xcc\xe2\x1c\xe2\xd6\x01\x00\x37\x83\xeb\xa2\xe6\x31\x3b\xa5\x62\x51\x14\xf3\xa4\x34\x0c\x8a\x62\xbe\x91\x9c\xc2\x53\x58\x8b\x25\xb1\x35\x17\x59\x39\xe2\x9d\x85\x1b\x59\x0a\x71\x58\x2a\x91\x75\x44\x34\x12\x7e\x99\xbd\x48\xe4\xe4\x5d\xc8\x66\x0b\xe1\xce\x1b\xd8\xff\x08\x44\x00\xc0\xa9\xe7\x5b\x2b\x0a\xa0\x32\xe3\x6e\x7e\x0d\x24\x34\x10\xe8\xdb\xa1\x9d\xfa\x05\x58\x4f\xe8\xb3\xf6\x50\xd5\x19\x66\x8c\x66\x73\x3e\x87\xa9\x56\x3d\x49\xfe\xce\x7c\xa4\x2c\x09\xeb\x60\x65\xc8\xdb\x56\x4a\x58\x87\xa5\x87\xe7\xfd\xcb\x8e\x14\xcb\x81\x25\xec\xcf\x82\xbd\xb2\x68\x30\xb7\x7d\x1d\xb7\x10\xec\x68\xad\xa6\xee\x01\x5f\x34\x97\xa2\xb3\xa1\xd0\xc6\xb0\x4a\x5f\x48\x6e\xfe\x92\x37\x1b\x7a\x6a\xd2\x24\x1d\x67\x6e\xd2\x7f\x5e\x57\xcf\x3c\xac\x9d\xb5\x62\x1b\x2b\x5c\xf9\xef\x3c\x16\xeb\x84\x2c\x0f\xc8\x66\xd3\x44\x41\xd2\x30\x70\x4e\xcf\x30\x87\x02\xe6\x74\xc9\x28\x6f\xc0\x96\x8e\x40\x54\x23\xf8\xac\x75\x6b\x85\x04\x5a\xdf\x6c\x9f\xcb\x81\x1a\x1a\x7c\x93\x36\x32\xad\xeb\xe7\xae\xf3\x63\x52\xf4\xe6\x15\x15\xcc\x37\xea\xc9\x79\x05\x2c\xb6\x5c\x0b\xd0\xd8\xcb\x45\xa7\x25\x30\xc6\xfd\xc1\x1a\xf6\x51\x70\x6e\xbf\x0d\xa5\x00\xcc\xe9\x41\xa1\xe6\x80\x96\xce\x96\x8a\x39\xe0\xe3\xb6\x96\x5c\x57\x28\xb6\xb9\x28\xf1\x17\x34\x68\x39\x17\xfa\x9a\x39\xdf\x78\x6a\x85\x3f\x53\xad\x45\xcf\xcb\x67\xb9\x2a\x54\x40\x1f\xeb\x90\x78\x85\xa8\x59\xb3\xbc\x1a\xce\xdc\xab\xb6\xae\x4d\x25\x39\x2a\x3f\xd5\xad\x81\xab\x94\xb6\x88\xd5\xa5\xb1\x8a\x39\xa8\x92\x2c\x7f\xf9\x74\xcc\x60\xdc\x13\xe9\x4f\x7c\x40\x10\x5c\xf2\x94\x78\xcf\xd3\x4f\x3c\x41\xd9\xe7\xd0\x29\x3a\x4c\x7f\x06\x00\xa2\x59\x90\x4a\x64\xa7\x4e\x80\xb9\x32\x83\x54\x51\x75\x13\xc4\x36\x65\x32\x82\x0f\xf7\x50\x20\x51\x29\x25\x77\xe4\x52\x4c\x64\xe6\x0d\x99\x16\x97\x13\x67\x91\x6a\x09\xcd\x41\x01\x12\x25\xd9\xd6\x73\x81\x58\x42\x6d\x70\x68\x13\x29\x18\x18\x00\x10\x3e\x86\xc6\x85\x35\x2a\x18\xfc\x1d\xd4\xa9\x64\x22\x99\x44\x0f\x45\x03\xea\x57\x5d\xbf\xfc\x22\x46\x56\x82\x91\x7d\xc7\xc5\x67\x52\x64\xb3\x09\xcb\xe3\xe2\xa5\x6e\xa4\xe0\xb5\xbf\x24\xab\x28\xa5\x4b\x7f\x89\x83\x69\x03\x0e\xbd\xa2\x24\x70\x15\x00\x08\xb7\x30\x7d\xf8\xf7\x94\xb3\xb0\xfb\xc1\x0c\x45\x00\xee\x2e\xfe\xad\xbc\x16\xff\x19\xd6\x24\xeb\x25\x06\x16\xf3\xa4\x0f\x49\xaa\x8c\x6e\xe9\x74\xca\xf4\x0d\x46\x89\x2f\x75\x68\xad\x40\x9c\x4d\x4f\x5f\x7a\x49\xc4\x02\x9d\x1d\xc6\x85\x9d\xd0\x7b\x00\x10\xce\x61\xa5\xf1\x3a\xe4\x63\xe4\x97\x8c\x39\xb2\x47\x94\xed\xb8\x11\x99\x1b\x15\x59\xcb\x90\xe2\x68\x11\x9b\x05\x92\x23\x74\x9f\xf4\x23\xe2\x6f\x8c\xa0\xd8\x4b\xe2\xd5\x60\xd1\xda\xa9\x22\x1a\xc4\x5f\xda\x28\x3c\xc8\x3c\xe4\x30\x29\xf8\xca\x7a\x0d\x00\x02\x12\xbb\x91\x5b\x29\x63\x43\xfd\xb4\x4b\xd2\x7e\xe8\x0d\x96\x25\x79\xc8\xf4\xad\xa9\x93\x24\x32\xd5\x45\x5c\xf1\x00\xf3\xf7\xa6\x47\xa2\xcf\x2c\x7d\xac\xbd\x68\x1d\xdb\x27\x50\x2f\x6c\x65\x5f\x5c\x8a\x16\x7c\xe3\xd0\x1c\x5e\x09\xe2\x38\x1f\x00\x80\x3f\xc1\x79\xc5\x1a\x97\x1c\x14\x35\x52\xd0\x12\x7b\x11\x1c\x9d\x2c\x86\x8b\x5c\xab\x10\xa2\xbf\x85\x93\x05\x17\x45\x99\x42\xed\xc6\x4a\xe1\x0e\x61\x6e\xf4\x55\xa1\x83\x70\x7e\x40\xbf\x40\x2e\x38\xef\xf1\x82\xff\x53\x40\x75\xb8\xc5\xaf\xe1\x4f\x02\x00\xef\x35\x6f\x2f\x14\x24\xc6\x69\x21\x92\xb3\xe8\xa2\xc6\x82\x5c\x2e\x4a\x50\xab\x2b\x44\xc2\xa3\x2a\x79\xfe\x22\x61\x82\x12\x4a\x7d\x25\x38\xa4\xa8\x8c\xea\x10\x84\xca\xd7\xfa\x1f\xe0\xef\x91\xde\xf5\xc8\xe0\x87\x48\xea\x1c\x7a\x78\x3b\x44\x72\x00\xe0\xc5\x09\x12\x18\x5e\x22\x55\x93\x2b\x61\x95\xf0\x57\x43\x03\x1c\x23\xa4\x9a\x5f\x96\x3d\x12\x02\xf5\xde\xb9\xa3\x02\x85\x31\x33\xa5\x4f\xe0\xac\xcf\x89\x34\xf2\x5b\xb4\x01\x7e\x97\xf8\xcb\x55\x27\xdc\x75\xbc\x01\x85\xab\x43\x12\x2f\x50\x6a\x05\x00\xdc\xc3\x42\x23\x3d\x41\x14\xd6\xee\x88\xaf\x10\xf6\xb5\x26\xd7\x6d\x13\x7a\x35\x67\x96\x85\x0a\xc6\x1a\xc3\x72\x5d\x05\xa1\x16\xab\x14\x4f\xfe\x49\x53\x4b\xe4\x4a\x7e\x8e\xc1\xd6\x8f\xcc\xbb\xa9\x9d\xe3\x9e\xc8\x2b\x56\x5e\x74\xf0\xe2\x3e\x95\xb9\x02\x00\x97\x28\x9a\x47\xd3\x08\xff\xeb\x2e\xc4\x1d\x14\x16\x77\x16\xd7\x2d\x15\x5c\x6d\x5f\x51\x7a\x40\x50\xd4\x72\x36\x67\x84\x7f\xb7\x29\x2e\xf9\x14\x1f\x6d\xe1\x45\xdc\xe7\x7d\x31\xf1\xfc\xc2\x79\x74\xfd\x1c\x77\x17\xee\x67\x75\x9c\xc3\x72\x2e\x47\x6e\x03\x00\xdc\xa9\x22\x34\xd1\xd0\x88\xaf\xee\x40\x8a\x2c\x07\x6a\xd5\x95\xe7\xcd\xd3\xea\x18\x85\xe5\xa6\x02\x04\x94\x1e\x6f\x30\xa1\x46\xe3\x94\xba\x11\xac\x43\xe8\x09\xcd\x18\xbe\xdf\xc7\x4e\xd5\x40\x82\xb9\x4c\x2a\xd0\xd4\x1c\xfb\x3d\xb2\x08\x06\x16\x00\x24\xb1\xcc\xc5\x44\xd7\x86\xe3\xb0\x85\x48\x2f\xcb\x8c\xba\xab\x95\xbc\xfa\x22\x84\xae\x70\xbe\xf1\x00\xaa\x62\xd3\x1f\xc3\x2c\x4c\x59\x5c\xa6\x2e\x08\xa7\x08\xad\xd7\xc4\x12\x5e\x7a\xbf\x52\xad\x27\xd7\xb9\x5c\x52\x2c\xa1\xcd\xb4\xbf\x21\xfd\xc5\xb8\x0e\x00\x92\x99\xcc\x75\x04\x4b\xc3\x42\xf8\x1e\xc4\x1e\x73\x29\x32\xa1\xd2\xdb\x34\x80\x9a\x2c\x18\x37\x7a\x61\xb0\x9b\xb6\xe9\x79\xb8\xf5\x71\xb3\xb4\x5b\x09\xa1\xa1\x15\xea\xd3\xa4\x2a\xef\x4b\xca\xab\x94\x16\x97\x49\xf9\x29\xda\x2f\xfb\xb7\xd2\x9d\x20\x1d\x00\xc4\xe7\x99\x32\x3c\xd2\x7c\x14\xf3\x1d\xbe\xb5\x7e\x19\x2e\xac\x22\xce\xa8\xc1\x63\xf2\xbf\x18\x6c\x08\x87\x36\xd9\xe9\x10\xa4\xe0\x0d\x74\xcd\x00\xf9\x4a\xc8\x53\xd5\x25\x6a\xbd\xb7\x48\xf1\x91\x9e\xed\x72\x56\x3e\x15\x5c\x3b\xdd\x5d\x3a\x9d\xe9\xf4\xff\x2d\x8a\x16\x77\xb0\x1e\x41\x32\xd4\x4d\x18\xef\x90\x45\xe5\xf1\x86\x54\x4a\x79\xbe\xa3\xee\x02\x35\x77\x63\xb8\x36\x9e\x86\x88\x3d\xa9\x36\xd1\x5b\x42\x72\x95\x13\x8c\x57\xde\x61\x0a\x07\x28\xd6\xe5\xa8\x2c\x82\xd9\x33\x7d\x93\x24\x9b\xf5\x04\x00\x44\x1c\xf6\x59\x2c\xd9\x14\xcf\x38\x08\xdb\x62\x18\x00\x7d\xca\xc2\xf5\xf3\x40\x6d\x9e\xab\x76\x04\xf2\x4c\xab\xd6\xf8\x42\xe7\x62\xed\x55\x32\xa6\x26\x78\xb7\x62\x92\x55\xbd\xf2\x9e\x7c\x0d\x3b\xd6\x65\x9b\x94\xcc\x59\x3a\x9d\x2d\x6e\xe0\x1c\x04\x00\xe1\x71\xee\x74\x34\xcb\xc0\xe3\x3f\xab\xf9\x4f\x3f\x93\x7f\xab\xe4\x80\xb6\x91\x7f\x34\xe7\x94\x66\x3d\x7f\x67\xea\x7a\xd5\x39\xfe\xae\x98\x69\xca\x58\xfe\xe1\xa0\x57\xf2\x76\xfe\xb9\x95\x85\xb2\x59\xfc\x0b\x2e\x34\x49\x1d\xff\xe0\xf4\x6e\x51\x17\x3f\x13\x00\x04\xb7\x79\xfd\x48\xa4\x3e\x59\xb9\xab\x7a\xbe\xf6\x6f\xe5\xd4\xcd\xef\x34\x42\x45\x6c\x76\x82\x7a\xa9\x5c\x9b\xfc\xaf\xf2\xa0\xec\x5a\xd4\x53\x45\xbc\x6c\x6e\x10\x20\xdb\x2b\xdd\xb0\x62\x87\xd4\x5f\x92\xe7\xe2\x2e\x36\x8b\xc3\xa6\x77\x0a\x1f\x09\x77\x00\x80\x60\x29\xff\x17\xfc\xb9\x0e\x5e\x1f\x54\xa9\xd6\x02\xc6\x9f\x45\x46\x75\x9b\xa1\x37\xf3\xa3\x2a\x5d\x1f\x9f\xf4\x97\xe2\x8d\x76\x32\xf2\x85\x5c\xa1\x89\x5f\xbb\x56\x36\x57\x65\x5e\x61\x2b\x51\x2b\xfa\x17\xea\x44\x3f\x65\xa8\xe9\x44\x61\x9e\xf8\x0a\x00\xf0\x2d\x42\x57\xf8\x1a\xed\xab\xc6\xbe\x8a\x27\x9a\xfa\x86\x35\x85\x1f\xd5\x71\x66\x6d\x26\x5c\xf9\xd6\xf4\x4f\xd2\x26\x85\xc1\xe8\x12\x29\x90\x07\xe9\xd7\x04\xde\x93\x1e\xd3\xba\x2c\x3f\x2c\x09\x57\x8d\x2d\x2c\x10\x0d\xc8\x9f\x4c\x2f\x12\x4e\xfd\xff\x16\x25\x5d\x28\xac\x33\x68\xc1\x56\x46\x45\xb1\x26\xa0\xf9\x42\x21\x5d\xf5\xa4\xf1\x6b\xc6\x4f\xa5\xa6\x61\x46\xe2\x47\xc5\x9a\xfa\x9f\x91\xeb\x65\x93\xc6\x23\x81\x5b\xa4\x35\xfa\x8c\xe5\xf5\xe2\xab\x1a\xca\xc2\x70\x51\xb4\x72\xd5\xf4\x2a\x41\xab\xb4\x1e\x00\x78\xff\x08\xef\x94\x6f\xeb\x8d\xae\x89\x2f\xc4\x74\x8d\xc3\x96\x64\xd6\x77\xc4\xc3\x81\x64\xaf\xd6\x73\x48\x9b\x68\x9f\xe6\x40\x74\x4c\xf0\x91\x86\x52\xec\xc8\x2a\x7e\x7d\x09\x21\x7f\xc9\x45\x43\x08\x39\x64\xce\x37\xcd\x33\x5a\xa4\x4d\x8c\x52\x03\x2e\x03\x00\x59\x18\x73\xb2\x9c\xd0\xd3\x0c\x63\x16\x86\x76\x2d\x82\xfb\x65\x62\xdb\x3b\x11\xff\x26\xfd\x68\x0d\x45\xed\x8f\xb6\x6b\x1a\xc2\x1c\x0b\xee\xb5\x3c\xc0\xfd\x59\x45\x30\x3d\x27\x12\x96\x5c\xd4\x5f\xa6\xcc\x99\x3b\x4b\x63\xa4\x5d\xb6\x81\x2b\x53\x40\x1c\x00\x48\x7f\x30\x27\xcb\x97\x75\x7f\x81\xdf\x2a\xf8\xd4\x49\x47\x22\x32\x03\xda\x7e\xa2\x3e\x25\x9d\x69\xe9\xc4\x34\x44\xdd\x6c\x72\xc7\x51\x82\x79\x96\x32\x82\x68\x55\xa1\x89\x40\x1a\x5f\x32\xa1\xaf\xa3\x2e\x9b\xeb\xa1\x09\xa1\x77\xd8\xa8\x15\x9f\xc1\x0f\x00\x20\xdd\xca\x72\x28\xdb\xd0\xa5\xc2\x1c\x2a\x88\xec\x08\xc0\xbe\xcb\x68\x69\xbd\x82\xf7\x4e\x4a\x6c\x66\x11\x34\x51\xe8\x46\x3b\xd2\x92\x60\x6f\x73\x36\xf9\xfa\x2a\x17\x23\x89\xba\x73\xc9\x0e\x1d\x8b\xde\x3c\x37\x52\x5d\x07\x36\xd9\xdc\x50\x44\x30\xab\x01\x40\x6a\xcd\xfa\x5c\x7a\xae\x33\x94\x78\x2a\x7f\xa8\xed\x25\xe9\x5c\xfa\xab\x96\x06\xf2\xe1\xc4\x81\xa6\x0c\xca\x64\xe4\x53\xcb\x13\x9a\x5d\xd0\x81\xfa\x48\x7a\xb1\xcf\x19\x03\x92\x71\x66\x49\x93\x56\x09\x65\xcc\xcd\x55\x29\x99\x97\x6d\x97\xc9\x89\xec\xd9\xff\xd3\xcd\x59\x54\xba\xb8\xc3\x96\x5e\x9d\xf7\xb2\xf5\x00\xfd\x5b\x7a\x70\x33\x8a\x21\x49\xb4\x6e\x5c\x0d\x46\x47\x16\x99\x2f\x40\x4e\x41\x89\x26\x7f\xe8\x87\x0f\x51\x0f\x67\x7e\x5a\x42\xd3\xb4\xb3\x67\xcd\xad\x55\xee\xe2\xcc\xb1\x25\xc9\xfa\x38\x87\x01\x40\x0c\x71\x13\x8b\x69\x6d\x28\xee\xf6\xdc\xb1\x16\x4f\xee\xe4\xa6\xe4\xc6\x47\xdc\xa7\x09\xfe\x96\x6d\xbc\xd9\x11\xdd\xf5\x95\xbc\x94\xb5\x63\x86\x5b\x3c\xa9\x8f\x9d\x6e\x15\x6f\x62\x49\x8a\x1a\xcd\x5f\x3c\x97\xae\xd0\xf1\x63\x6d\x27\xa4\x2d\xfc\x69\x00\x20\x02\x79\xfb\x36\xcf\x6b\x05\x64\xb0\x9c\xda\xa6\xbb\xd2\x6f\x1b\x3d\x1a\xb6\x49\xa1\x78\x5f\xb3\x58\x6a\xb3\xfe\xb8\x69\x83\xc4\x18\xf8\x53\x7f\x46\xe2\xe6\x0d\x6a\x83\xc4\x8d\x8b\x7f\xa9\x18\x62\x87\xb9\x68\xf9\x90\x28\xd2\x6e\x8a\xe4\x9c\x70\x0e\x00\x08\x77\xf3\x6f\x16\xbe\x6c\x7e\xaa\xfb\x9a\x1d\xdf\x78\x5b\xfb\x2e\xcd\xce\xb2\x5f\x73\x2b\x2e\xb0\xde\xa4\x3e\x15\xfe\xce\x98\xa7\x1a\x0d\x8c\xd3\x7d\x51\x0a\x56\xbe\xd4\xd0\x14\x31\x8b\x0d\xca\xe3\xb2\x33\x73\xd7\xc8\x7e\x48\x3e\xda\x39\x4a\x56\x89\xee\x00\x80\x70\xa9\xe0\x4c\xe1\xe6\x66\x86\xe9\x6e\xd6\xb1\x46\x98\xb1\x25\x55\x6f\x49\x33\x24\x6f\x38\x59\xef\xa5\x7b\x1b\xde\x68\x78\xac\x95\x07\x7c\xd7\x69\x35\xd3\x57\xee\xd0\xb8\xa8\xb0\x8b\x51\x4a\x98\x42\x32\x77\xa1\xac\x45\x16\x66\x37\x5b\x7c\x4d\xdc\x03\x00\x82\x2b\x42\xcf\x82\xbf\x9b\x1d\x1b\x56\x67\x15\x34\x7c\x32\x1f\x4b\x0d\x31\xdf\xa8\x8f\xdc\xc0\x35\x8d\x18\x87\xc3\xcb\x0d\x68\xc3\xd4\x80\x09\x9d\x9b\x2e\x7e\xa5\x59\x3d\xa2\x29\x5c\x5c\xa6\xf8\xa8\x9a\x39\xd7\x55\xb6\x4a\x9e\x65\x17\x28\x86\x49\x8a\x01\x40\x50\x2b\x04\x0b\xc2\xb6\xb4\xd5\x1c\xcb\x5c\xd5\x7f\x0f\x26\x4f\xd6\xf6\xce\x86\x97\xc4\xb0\xbb\x62\x91\x85\xeb\x80\xf6\x44\xb4\xce\x6f\x75\x8b\x35\xce\xca\xab\xa7\x41\x4e\x18\x72\x79\x67\x7a\x48\x6e\x98\x1d\xad\x9f\x45\xeb\xb0\xda\xaa\x5e\x06\x62\x00\x40\xbe\x94\xe5\x50\x30\x7f\xf0\x13\xec\x69\xe6\xcc\xfe\x30\xb8\x38\x99\xd2\x43\x44\xfa\xc5\xc0\x3a\x47\x50\x3f\x42\x5f\xb5\x1d\xc6\x5a\xfb\x79\x34\x8b\xf0\x71\x5e\x5d\x0d\xf3\x88\x7b\x5c\xbe\x98\x98\x94\x9a\xd9\x9b\x75\x3b\xe9\xcb\xad\x6e\xaa\x6e\x82\x83\x00\x20\x7b\xc0\xb2\xcb\x7f\x3a\xb8\x09\xb1\x36\xe3\x9f\x3e\x3d\x72\x38\x39\xbd\x7b\x12\xbd\x3a\x26\xbe\x73\x3e\xe6\x54\xe8\x85\xb6\x00\x5c\x8f\xdf\x8c\xa6\x3f\x84\x3d\x5e\x16\x8b\x85\xf4\xdd\xe5\xb7\x69\x3a\x15\x3e\x9b\xa8\xcb\xa2\x3f\xb5\xb6\x52\x71\x21\x2f\x00\x90\xe9\x58\x11\xf9\x05\xfd\x8f\x31\xb7\x33\x2a\x7b\x13\x71\x56\x49\xb7\xba\x9a\xf1\x7e\xd1\x0f\xdb\x5f\x11\x2c\xa1\xfc\xd6\xb9\xa4\xd5\x6b\x2e\x37\xbe\x21\xbf\xf2\xa2\x9a\x4d\xd4\x4b\x2e\x3f\x8c\xae\xf4\x53\xb3\x5b\xb4\x0c\xf0\x8c\x75\xae\x72\x1f\x93\x0f\x00\xd2\x1b\xec\x85\x79\xef\xfa\x20\xe2\xa5\xf4\xc7\xdd\x9f\x48\xfb\x92\xf2\x3a\xab\xc8\x6d\xd1\xd8\xb6\x43\x94\x3d\xa1\xee\xcd\x6f\xa9\x5f\xd6\x48\x1a\xae\xd2\x73\xbd\x92\xea\x25\x8c\xf3\x2e\x3f\x0d\xee\x50\xf5\xec\x63\x1a\x23\xf3\xb9\xf5\xb0\xe2\x31\x7b\x09\x00\x48\xed\x39\x61\x79\x3e\xbd\x29\xf4\xb9\xe9\xe1\x5d\xc7\xe9\x3d\x89\x7f\x75\x04\x31\xc2\xa3\xde\xb5\x36\x30\x7e\x87\xec\x6e\xba\x06\xfe\xb3\x26\xd8\x72\x1c\xba\xec\xe5\x60\x62\x33\x6f\xb9\x7c\xd6\xaf\x62\xdb\xcd\x7e\xa8\xde\xc1\x71\x98\x32\x55\x31\xf7\x7f\xab\x96\xac\xe7\x96\xe5\x06\x77\x0f\x71\x67\x6c\x22\x76\x2e\xe7\x2e\x4f\x5c\xd4\xd6\xce\x8d\x88\x2a\x68\x71\xe2\x52\x43\x22\x1a\x4b\xb9\xc7\x56\x5f\x35\x57\xf3\x9c\x97\x5d\x36\x86\xf2\x88\x2e\xef\xb4\x2f\x79\x77\x1d\x5c\x54\x3c\xfe\xec\x29\x54\xd9\x0f\xde\x63\x00\x10\x87\xf0\x76\xe7\xac\xec\x5a\x23\xcd\xdc\x48\x6b\xbf\x20\xb9\x93\x10\xd9\x5a\x21\x29\x8f\xb4\x34\xdd\x14\xff\x0a\xb6\x34\xf8\x89\x07\x57\xe7\xd5\x27\x8a\x33\x96\x31\x0c\x6b\x45\xaf\x5d\x2e\x6a\xde\x88\x24\x0e\x41\x4a\xb5\xf0\xd2\x94\xa3\x32\x4f\xc1\x38\x00\x88\x50\xfc\x83\xd9\x73\x3a\x1d\xb5\x59\x69\x50\xdb\x1e\x4d\x66\xfc\xe6\x96\x2c\x75\x42\xc4\xc5\xc6\x8b\xaa\xcc\xa0\x37\x16\x5f\xe5\x66\xdf\x13\xa6\x0a\x45\xfe\x32\x7b\x3d\x42\x1e\xe3\x22\xd3\xac\x92\x7e\x76\x58\xa4\xb8\x24\xc9\x9e\xf2\x54\xca\x10\xd5\x02\x80\xf0\x86\xa0\x3e\xcb\xd4\xd1\x62\xf8\x9c\x36\xa3\x2d\x4a\x7f\x28\xee\x67\xf3\x65\x1d\x35\x82\xd5\x98\xa3\x8d\x0e\x1a\x36\x8f\xa9\xff\xf8\x6a\x8d\xaf\x55\xa3\x9e\xff\xe8\xad\x95\x09\x2e\x44\xf5\x49\xb9\xce\xc1\x45\x81\x93\x42\x36\x36\xd2\xc5\xe2\x95\x00\x20\x14\x08\xbe\x66\xad\xe8\xf0\x33\xcf\x4a\xdd\xd1\x7a\xdc\xb4\x25\x6e\x67\x73\x8e\x71\x6d\x44\x42\xc3\x84\xfe\x64\x10\xcf\xbc\x4a\xb7\xc9\x97\x60\x24\x68\x0e\x78\x5e\xd2\x69\xd4\xf6\x2e\x24\x75\xa6\xe2\x8b\xc3\x1a\xf9\x67\x19\xdb\xc6\x5f\x32\x24\x9e\x04\x00\xe1\x7c\x61\x6a\xe6\xac\xb1\x15\xb5\x99\x29\xf6\xc3\xeb\x60\xdf\x63\x15\x83\x01\xf0\x5d\x61\x87\xfa\xdc\x91\x7d\x01\xad\x5d\x37\xd1\x37\xbc\x13\xdb\xc3\x71\x09\xee\x45\xcd\x9b\x09\x2f\x9d\xe5\x96\x78\xf2\xdd\xe9\x77\x0d\x3f\x68\x77\x01\x40\xa3\x01\x45\x00\x20\xff\xc0\x9a\x9f\x69\x37\x4a\xaf\x43\x24\xff\x19\xd2\xc3\x5f\xc4\x72\x06\xcc\x48\x66\xd8\x8e\x5e\x15\x3a\x2a\xc0\xd2\x95\x8e\x8d\xf0\x4e\x6a\xdb\x8b\x07\xdd\xab\x9b\xfe\x21\xbe\x74\x6e\x31\xdf\xa0\xb4\x4d\xff\x65\x68\xa6\x17\x02\x80\x26\x1a\x3c\x04\x00\xf2\x11\xd6\xb4\x8c\x8f\x23\xa7\x10\x83\xc9\x2f\xb6\xbc\x40\x4d\x89\x85\xf5\x7f\x45\x63\xc3\xda\x7b\x3e\x62\x7e\x06\xc8\x3a\x0f\xe2\x2e\x7b\x47\xb5\xf9\x11\x1e\xba\xd7\x34\x55\x92\x97\x39\x0f\x9b\xab\xa8\x8d\x33\x5c\x0c\x81\x8c\x59\x00\xa0\xbe\x07\x05\x00\x80\xbc\x80\x15\x91\xb1\x63\xb8\x02\xbb\x34\xb9\x7d\xd0\x84\x0b\x88\x9d\xdf\xb7\x13\xbf\x29\xac\xac\xfb\x28\x61\x6b\x40\x7e\x47\x03\x29\xc1\x7b\x71\xeb\x7c\x8a\xb5\x7b\x61\x63\x1e\xf5\xb9\xf3\xe1\x7a\x38\xfd\xc5\x8c\x8d\xfa\x0c\xf0\x3e\x30\x55\x3d\x93\x29\x04\x00\x99\x9e\xed\x9c\x51\xb2\xe5\x2e\x69\x4e\x72\xf8\x40\x18\xe9\x52\xcc\x9e\x5e\x06\xb9\x33\x6c\x66\x97\x86\xb2\x37\x60\x7e\x3b\x91\xfa\x7d\xe5\xbb\xe6\x2f\xf4\x42\xf7\x84\x86\x18\xc6\x25\xe7\x09\x53\x2d\x44\x9a\xc1\xd0\x55\x30\xdf\x01\x95\xaa\x35\xec\xf9\x00\x20\x3d\xc0\x09\x4e\x67\x0c\x0e\xd0\xad\x93\x3a\xfb\xa7\xd0\x95\x31\xd9\x3d\x49\x0c\xb7\x75\xbb\x3a\x61\x8c\x07\xfe\x17\xda\x72\xc0\xd3\x2b\x8f\x34\xdd\x87\x0e\xb9\xfb\x5a\xfc\x99\xa7\x9c\xaf\x1b\xeb\x58\xbf\x67\xf4\x68\xa9\x1c\x6b\x60\x97\x32\x9f\x33\x0a\x00\x92\xd7\xdc\x82\x74\xff\x81\xa9\x9c\x1d\x49\xf1\xbd\x65\x9c\xa3\xd1\x8f\xba\xba\x39\x67\xd7\x15\xb5\x5f\xe4\x4e\xf7\x97\xb4\x9c\xe5\xd6\xae\xd4\x34\x12\xb8\xe3\xee\x0b\xeb\xff\xe6\xf9\x38\xbf\x37\xb8\xf1\x7a\x66\x7c\xd3\x04\xf1\xee\x5a\x05\x2b\x02\x78\xff\x7b\xfb\xdb\xbc\xce\x4d\xe4\x3e\xac\xa4\x31\xd1\xdc\xfd\x52\xe2\x18\x9d\xd2\x99\x25\x96\x86\x5e\x69\x13\x8a\x83\xfd\xdd\x9a\xe5\xa2\xf7\x2b\x63\x1a\x92\x44\x83\x4b\x5e\x9a\xce\x89\x2a\x9c\x3f\xe9\xe7\x88\x66\xcd\x0c\x52\xaf\x15\x12\xac\xea\xe5\xe9\x02\x26\x00\x88\x67\xf0\xdb\x37\xe2\x7a\x53\x34\xf3\x12\x8e\x76\x1d\x51\xdb\x47\xb5\x74\x78\xa9\x80\xd0\x88\xd6\x0a\xe5\x62\xbf\xe6\x26\x9c\x22\x76\xc5\x35\x4b\x9a\xbc\x78\x49\xb3\xf1\xad\xac\xce\x79\x52\x17\x23\x8d\x9c\x19\xad\x42\x8a\x8f\x5a\x5d\x96\xb5\x0a\x7f\x03\x80\x88\x22\xc0\x6f\xb4\xe9\x99\xd0\xf3\x13\xea\xba\xd6\xeb\x62\xa2\xf2\xda\xcd\x9a\x6f\x21\x7f\x5a\x2e\xab\x6f\xfa\xa1\x1a\x1f\xab\x76\xad\x18\x33\x9f\x57\x4a\x97\xf0\x8c\x7c\x45\xa2\xf3\x19\xed\x55\xd9\x9e\x99\x19\x2a\x40\x72\xc9\xea\x93\x2c\x46\xb4\x1d\x00\x44\xcb\x05\xa7\xd3\xfa\x7b\xf2\x4d\xd5\x09\x1e\x9d\xbb\x0c\x5f\xa3\x3c\xda\xed\xf4\xc2\x90\x9b\x2d\xb1\x3a\x7f\xbf\xcc\xc6\x6c\xcd\xd5\x15\xed\xe6\x78\x35\x66\x09\xd3\x68\xab\x7c\xe6\x7c\x5d\x5b\xa8\xb0\x9e\x49\x50\x8a\xa4\xe3\xd6\x3e\xd2\xb3\xe2\x2c\x00\x10\xee\x13\xda\x8f\xe4\xc1\x3f\x94\x5c\xee\x54\x21\x7d\xca\xe3\xeb\xf3\x51\xc5\x95\x23\xb2\x42\xf4\x8e\x9a\x0d\x10\x1e\xbb\x0a\xf6\x09\x6d\xc4\x4d\x20\x9a\x4b\x7c\x08\xed\x68\x54\xca\x09\xd2\x18\xae\x31\x78\x26\x15\x20\xbe\x5a\x54\x48\x6f\xa3\x96\x5b\xe5\x40\xc7\x18\xb4\xe1\xdc\x3a\x55\x45\x56\xc7\x16\xf8\x3f\x55\x54\x93\x1c\x19\x56\xd3\x2c\xed\x44\x6d\x83\xbd\x01\x2f\x60\x52\x11\xe5\x68\x5b\xdc\x34\xd4\xb1\xe2\x31\xfc\x17\x6c\x4a\x4a\x11\x69\x19\xc1\x33\x68\x94\xa2\x21\x2f\x59\xb4\x94\x1e\x4f\x0b\xb4\x8a\x82\x78\x8c\x67\x43\x49\xb0\x55\xd5\xef\xda\x0f\xd6\xb5\xd4\x9e\x37\xee\x44\x2c\xac\x1b\x95\x3c\x40\x8e\x21\xc6\xc1\x15\xe8\x3a\xd4\x1b\x14\x09\x1b\x8b\x9d\x55\x1c\x84\x4f\xc5\x67\x24\xbf\x24\x6a\x89\x57\x82\xf2\x29\x4e\x14\xba\xdb\x7b\xda\x3d\xfa\x1a\xab\x10\x28\x10\x64\x0d\x86\x56\xb7\xa1\xa0\xd6\xdb\xb5\x31\xe8\xeb\x06\x5b\xd8\x1f\xec\x62\x71\x15\xfc\x0c\xae\x83\x7e\x1d\xb9\x95\x10\x8d\xcc\x40\xef\x27\xde\xdc\xbc\x01\xfb\x81\xac\x4e\x5e\x42\x80\x51\x31\x6b\x77\x91\x9d\xe9\xe5\x6e\x1d\xb4\x19\x60\xa5\x55\x1c\x28\x84\xee\xf6\xcf\xa8\x5c\x47\x0a\x6c\x99\x56\x6d\x4f\x9e\xa6\x2b\xae\x79\x47\x9e\x14\x3e\x86\xbd\xa0\x9c\xa4\xc9\x11\x36\xd4\x2b\x88\xd5\xa8\x08\xda\xfd\xa2\x0c\x4c\x27\xfd\x57\x52\x01\x3e\x0a\x0c\x5f\xeb\x49\x9a\x0f\x71\xdd\xca\xa9\xc1\xcc\xa3\x56\x6c\xc6\x69\x56\x75\xef\xca\xb2\x57\x50\x65\x53\x60\xc5\x5b\x68\x9f\x66\x7b\xf5\x34\xe8\x99\x00\x59\xeb\xcf\x4c\xa5\x46\xd5\xd1\x98\x87\xe1\x33\x11\xd7\x59\x01\x85\x15\xe8\x3a\xd6\x50\x62\x3d\xce\x87\x1d\x1a\x68\x21\xae\x64\x1f\x75\x0b\xa7\xc0\x38\x3e\x56\xfb\x18\x4b\xd8\xcf\xbb\x52\x4b\x36\x4b\x37\x58\x1a\xcb\x70\x92\xbd\xaa\xf5\x15\x66\xc9\x4a\x9e\x77\xd5\x5b\x71\x27\x79\x5d\x2d\x52\xbc\x0c\x96\x5c\xf7\x5b\x64\xc9\x7f\x8a\x3c\x2e\x9a\x92\x80\xc5\x1c\x12\xd6\x06\x5c\xc6\xbf\x15\x6c\x75\xfd\x4c\x46\xf1\xcf\x58\xfb\xd3\x73\x78\x2b\xda\x23\x8b\x76\x9b\x3e\x99\xce\x97\x78\x1b\xe9\xf2\x5d\x65\x3a\x83\x0d\xfb\x5e\xe5\x42\x9d\x8a\xb8\xa6\x7a\x5c\x3b\xab\x86\x0f\x93\xaa\x09\x79\x58\x04\x5b\xb9\x27\x3e\x11\x3d\x28\xbf\x1a\x30\x1d\x3f\x43\x7a\xc2\xb5\x97\x74\x44\x0c\xb3\x66\xd3\x2e\x09\x52\x5b\x9e\x16\xdc\xee\xca\x30\x68\x36\x93\x3b\xe6\x4a\x15\xa5\x4e\xad\x47\x98\x77\xca\x0f\x34\x97\xe1\x73\xab\xc4\x0d\xf7\xaa\xee\xd7\xe2\xcd\xfe\xb9\xd3\xe1\x0a\x63\x5a\xdc\x7a\xd4\x5d\x9d\x97\x3f\x0c\x07\x53\xed\x76\xad\x21\x25\xcb\x26\xac\xcf\xd0\x58\x22\xaf\xe6\x8f\x05\x9b\x06\x34\xfa\xbd\x45\x8f\x7a\xff\x93\x9c\x28\x91\x74\x07\x31\x97\x96\x87\x74\xd4\xe1\xfa\xab\xa6\xb6\x92\xab\x92\x6a\xbe\x37\xc5\xe5\xc8\xe1\xee\xe6\x89\x0d\xf7\x51\x1c\xe3\x74\xff\x75\x38\x27\xcd\x7f\xae\x65\x24\x1b\x45\xbc\xf5\x2f\x5a\xb2\xe8\x6a\x73\x7a\xfe\xb3\x91\x27\x7a\xaf\x22\xea\x96\xef\x92\xf8\x92\x39\xfd\x4f\xa0\x81\xb2\x23\x3d\x47\x71\xa1\x95\xfa\x4e\x78\xe5\xd3\x1a\x49\xeb\x89\x9c\xa8\xba\xb1\xc6\x89\x0d\x3b\x51\xf3\xea\x41\xff\x20\xec\x56\xdd\x61\x57\x2e\x71\x4c\x59\x3a\x25\x8f\xfa\x4b\x1c\x34\xb8\x14\x15\x5a\xb2\xb5\xf5\x2c\x7a\x5d\xb9\xaf\xfe\x36\x26\xae\xd2\x20\xf6\xc5\x62\x6a\xd6\xd0\xeb\x71\x3b\x60\xff\x22\xa7\x11\xbc\x11\x96\xa2\x2f\xc4\xd3\x68\x42\xd2\x13\x72\x2b\xae\x77\xad\x91\x3a\x42\xb2\x75\xab\x67\x4c\xa3\x1a\xac\xf2\xa0\x67\x8c\xa3\x03\xab\x11\x93\x15\x6e\x2d\x6f\x90\x9f\xab\xd2\xf4\x0b\xd0\x4b\x6b\x48\x22\x08\x83\x83\x9d\xa3\xbd\xc7\xde\x40\x6c\x40\xb0\xf1\x48\xd4\x58\x11\x8b\xe8\x85\x8d\x49\x62\x93\xe7\x11\x96\xaf\x4d\xa1\x46\x91\x03\xdd\x6a\xe9\xdb\x69\xe5\x56\xf1\xd0\x20\xe8\xdb\xef\x0b\xc7\x57\x0f\xb4\x4c\x43\xec\xad\xd5\xe8\xd2\x50\xd6\x75\x74\xe1\x61\x34\x11\x61\xa0\x65\x61\xbe\xa3\x4e\xc2\x5f\xe2\x7a\x31\x6f\x8b\x6c\x08\x2c\x7c\x64\xd2\x3c\x92\x88\x78\x21\xf0\x2b\xe5\x24\x45\xe4\x16\x45\xcf\xa2\xe7\x5b\x45\x40\x15\xe0\xc1\x5e\x57\x98\x0d\x6a\x76\x93\x67\x1d\x05\x0d\x6a\x2c\x08\x6b\xcc\x29\x41\x0c\xb2\x01\x97\x43\xb5\x42\xa7\xe3\xbf\xd7\x9d\xc1\xae\x20\x76\x16\xce\xc5\xfb\x92\xeb\x12\xd3\x89\x15\xd4\xc2\xc0\x72\xf2\x05\x7a\x95\xeb\x57\x9a\x10\xe4\x5a\x15\x80\xbb\x99\x0b\xbb\x67\x55\x77\x10\x3b\x1b\x0a\x6b\x93\x49\x7a\xd5\x7f\x75\x56\x64\x34\xef\x24\xfc\x04\x05\x49\xde\x87\xec\xa3\xf2\x60\x5b\xd0\xc3\xb4\xe6\x02\x4f\xec\x5d\xfa\xd9\x04\x1d\x21\x12\x74\x0d\x98\x20\x5d\x85\xa8\xae\xc7\xa9\x63\xcc\x6b\x56\x0d\x8c\x3f\x2c\x4b\xa7\x5b\x25\x05\x3c\x63\x96\x56\xc7\x42\x6b\x95\x19\xb5\xcb\x21\x22\x37\xab\x6e\x0e\x74\x87\x44\x42\x2c\x62\x16\xd5\xaa\x51\x69\xcc\xdb\xf9\xa1\x98\x5e\x16\x22\xfe\x06\xde\x97\x3d\x3d\xa0\x98\xf8\x8c\x3d\xe2\x6a\xa1\x3c\xe1\x04\x5b\x3d\x65\x64\x73\x5c\xda\x28\x65\xe7\x25\xe5\xa6\xa9\x15\x87\xc4\xff\xc9\x5e\x56\x1d\x15\xb3\xd8\x1e\x35\xb7\xc5\xd6\x04\xa8\x6e\x81\xc8\x58\x7d\x1d\x01\x8a\xdc\x72\xcf\xa0\xa7\x0a\xdb\xe3\xf6\x63\x8f\x0b\x17\xf9\xb7\x11\x76\x08\x44\xae\x54\xf2\x53\xfe\xb8\x35\x8e\x2e\xe0\x25\x35\x57\x97\x14\x1b\x6f\xea\x37\x96\x69\x0c\x38\x09\x58\x71\x52\xbf\x08\xfa\xb7\x7a\x96\x76\x37\x8e\x53\x4b\xd3\x6c\xac\x5a\x04\xb7\x53\x9d\xce\x29\x45\x9e\x50\xae\xda\xd0\x86\xd9\x2a\xaf\xf3\xbb\x8f\xbf\x28\x05\x5d\xbd\xc9\x61\xe2\x78\xeb\x13\xb4\x1f\x82\xfc\x86\x37\x9b\x35\x1d\x0f\x35\x1f\x4b\x5e\xb6\x4d\x88\x92\xcb\xb3\x5b\xda\x18\xcf\x2a\xf7\x34\x65\x63\xb6\xd5\x6c\xb0\xbc\xac\x90\xc0\x3e\xd5\x97\x64\xdb\x20\x6e\x18\x2c\xb1\x2d\xe8\x7f\xb5\x26\xbf\x58\xfc\x2a\xd5\x46\x97\xd7\xa4\xfd\x32\xfd\x14\x27\x5a\xa7\xc8\xc3\xf2\x7b\xb3\x75\xbf\xbd\x66\x61\x49\x79\x8f\x51\x08\x95\x9d\xee\xfc\xc6\xf0\xad\x0c\x69\x4f\xc4\xd8\x55\x9f\x68\x41\x96\xbf\x87\x09\x1a\x8b\xb3\x64\x08\xac\xd9\x3e\x36\x1e\xad\x30\xa0\xfc\xe6\xe1\xae\x69\x18\x2e\x2f\x48\x14\xf9\xcf\x29\x1b\x69\x08\xd1\x19\x4b\x41\x51\xcb\x70\x86\x9a\x57\xfc\x7e\x50\x2e\x78\x57\x96\xd7\x67\xa1\x8f\x55\x8c\x77\xab\xd1\xcd\xd5\x59\x1d\x19\xe5\x66\x98\x43\xcb\x85\xac\x0d\xf0\xdf\x0d\xbf\x62\x5d\xd1\xee\xa6\x0b\x7e\xb3\x71\x64\x5d\xa4\xeb\x0c\xd2\x22\xa5\xc3\x94\x2e\xda\x5c\xf1\xb2\x9e\x03\x18\x73\x89\xbe\x71\x12\x0b\x2f\x9f\xab\x59\x81\xcb\xab\xa4\xf0\x4f\xe1\xd3\x6b\xe6\x53\x40\x02\x1e\x76\xb5\x6e\x3d\x71\x1f\x42\x56\xc0\x21\xaf\x46\x23\x13\x0e\x52\x4e\xe3\xba\x02\xce\xd1\x5a\x48\xd3\x5d\xe9\x8c\xbd\xd4\x61\xe0\x13\xb3\x80\xf1\xa6\xfb\x32\x3a\xa8\xfc\x59\xc3\x4f\x8c\x5f\xd5\x12\x35\x06\x1b\x54\x93\xc8\x5f\x8c\xcb\x85\xf5\x91\xff\xc6\x37\x22\x3c\x60\x63\x84\xdf\x28\x63\xc1\x54\x92\x1a\xeb\x9f\x50\x44\x89\x27\xb8\x04\xc8\x69\x01\xe4\x00\xd7\x8d\x0c\x18\x8d\x08\x3c\x66\x2e\x06\x73\xba\xee\x23\xaf\x54\x57\x34\x2c\x46\x7d\xa9\x4d\x57\xf5\x61\x9c\xea\xd6\xf3\x60\xd8\x12\x44\x19\x79\x1d\xee\x28\xca\x04\x73\x27\xc4\x60\x4e\xe6\xab\x88\xcf\xf0\x4b\xe2\x3f\x90\x77\x13\xf7\x07\x44\x53\x0f\x52\x38\xae\xcb\x18\xd3\xe8\x35\xc0\x23\xe8\x3a\x78\xbf\xe3\x34\x5c\x89\xec\x30\xaf\x45\x9c\x47\x2f\x54\xbc\x41\xf9\x61\xb0\x9c\x87\x68\x03\xf6\x0f\xf1\x25\x76\x11\x7e\xb4\xe6\x37\xee\x34\xb1\x32\xaf\x89\xd0\x4a\x5e\x1b\x1f\x42\x6a\xa0\x06\xf9\x6f\xa5\x9c\xa1\x67\xbb\xbc\xa5\xc7\x80\x62\xab\xd9\x90\x1f\x33\xac\xed\x6f\x98\x0f\xd1\xc1\x84\xab\xdb\x42\x72\x96\xa7\x23\x22\xc9\xd6\x6c\x02\xf2\x24\xc5\x96\xd0\x8f\x66\x52\x97\x57\x3f\xc4\xe6\xd2\x36\xe5\x8e\xe2\x73\xe9\xf2\x38\x0e\x11\x64\xbc\xf2\x0f\x24\x5f\x81\xca\x5c\xfe\xa2\xe1\x98\x97\xad\x4a\x40\x26\x6b\x5b\xcb\xdf\x35\xee\xa0\x9f\xa1\xa7\x76\x37\x38\x20\x1d\xa9\xc3\x83\x9f\x98\x3f\x11\x8b\xa1\x1a\x7c\x0d\xf2\x0b\xf4\xbc\xea\x14\xfa\x33\x93\x99\x73\x0c\xb7\x98\xe5\xb2\xe1\x1c\x01\xcd\xba\xe8\x77\x8a\xf4\x9c\x2d\x77\x19\xa4\xf6\x72\x7c\xad\x46\x18\x17\x38\xfe\x4d\xa8\xca\x1a\x31\x4d\x17\x55\x1d\x22\xf6\x12\x57\xd4\xce\x17\x9d\x01\xef\xc2\xde\x8a\x8a\xb1\x20\xfc\xbb\xf0\x5b\xa5\x1b\x6a\xb5\xd0\x9c\x5d\x89\x91\x08\x03\x62\xf7\xe2\xa7\x0a\x4e\xf8\x39\x13\xf7\x0a\x52\x5d\x24\x94\x01\x7e\xaf\xf5\x06\xfa\x4f\x5e\xb6\x25\xb7\x7c\x99\x61\xb7\x5a\x57\xe9\xa6\xaf\x10\x02\xd5\xde\xba\x35\xf4\x6d\xb5\xab\x35\x37\xd0\xf2\xba\x0a\x35\xb7\x1c\x87\x38\xa2\x72\xce\xfc\x85\x4e\x55\x18\x63\xba\xb0\x5f\x65\x6f\xd6\x94\x10\xae\x4b\x3d\x5d\x12\xc9\x5f\xc5\x73\xac\x5b\xe9\x44\x41\x96\xe9\x68\x29\xaa\x1d\xaf\xf4\x28\xd7\xb4\x72\x79\x7f\x55\x1e\x69\xa6\x52\x77\x57\xdf\x6f\x8c\x44\x9e\x86\xad\x35\xbf\x2d\x7d\x04\xdf\x65\x62\x67\x6c\x45\x55\xe9\xef\x44\xf7\x63\xd7\x6a\xbe\xac\x3e\x44\x58\xab\xbc\xea\x62\x47\x06\x65\x89\xd6\xcf\xe8\x73\x44\xf6\xc6\xc9\x92\xfb\xbd\x1c\x45\x74\xb9\x6d\xf7\x6a\xee\x7f\x95\xeb\x3b\xf6\x50\x7e\x54\x57\xb6\x2d\x44\x2e\xab\xdd\xd7\xbc\xb9\x34\x07\x9e\xd0\x80\xca\x08\x43\x7e\xaf\x8f\x8e\xce\xc4\x5c\xd3\x1f\x5d\xad\xc7\xdf\x55\x7f\x74\xb1\x21\x07\xc9\xfb\xa7\xb8\xd3\xae\x8a\xb6\x1a\x57\x96\x40\x5b\xc6\xe4\xed\x65\x4d\x03\x0e\xdc\xf2\x8a\x33\xbd\x1b\x28\x50\xd5\xdb\xae\x74\xc4\xbe\xda\xc4\xf6\x35\x25\xdf\xea\x2e\x37\x4f\xa6\xbf\x47\xaa\x1a\x56\x44\x7b\x63\x30\x26\xd7\xd5\x0a\x3c\xa4\xdd\xe6\xb2\x92\x74\x55\xb1\x7b\x0a\x8d\x06\x89\xed\x9b\xff\x22\xd6\x94\x80\xfa\x0a\xe2\xb7\xb2\x37\x12\x25\x89\x5f\x59\x0b\x75\x90\x73\xab\xff\xc3\x5e\xa5\x44\xc1\x7a\x2a\x57\x52\x23\x10\x65\xd9\xb3\x69\xc5\xe8\x94\x98\x47\x74\x0d\x4e\xb0\x7a\x90\xf1\x8e\xf8\xdf\x02\x0e\xd4\x48\x1d\x06\x00\xd6\x61\x70\x5a\xd3\x67\xc2\x92\xf2\x1e\x5d\x0f\xe1\x52\xe5\x6d\xf1\x13\x22\x58\x33\x17\xfc\x4d\x42\xc0\x2a\xb1\xe1\x64\x22\xfc\x4a\x45\x1b\x45\x8e\xda\x94\xd5\x40\x3d\x86\xf9\x14\xa3\xa5\x3b\xe2\x5f\xac\xa6\x32\x54\x64\xfb\x05\xd5\xd0\x46\x1a\x1c\x00\x58\x2a\xb0\xa6\x69\x11\xee\x4e\xd5\x7b\xed\x5d\xfc\x50\xcd\x4b\x71\x08\x01\x0f\x7b\x02\x66\x10\xb9\xf0\x8f\x18\x33\xa9\x1b\xb5\xaa\x62\x36\xf9\x0a\x06\x96\xb5\x84\xea\x85\x9b\x88\x59\x4b\x53\x10\xa1\xd5\x01\x8c\xc5\x94\x8d\x0b\x52\xc1\x8f\xf4\x2c\x00\x60\x25\x82\x2f\x2d\xcf\x30\x1d\x88\x23\xea\x7f\xb1\x4d\xa8\x74\x61\x29\xce\x8c\xde\x4d\x3f\x81\x3f\x85\xcd\x42\x6f\x22\xce\xc1\xcf\x28\x7b\x4d\x42\x13\x2e\x66\xae\x22\x3f\x23\xed\x8e\x86\xa8\x74\xca\x35\xdf\x33\xf4\x60\xba\xc3\x82\x05\x60\x28\x58\x05\x00\xcc\x6e\x66\xa4\xb9\x14\x95\x49\x58\xa1\xaa\x45\xb3\x88\x5e\xfc\x0b\x98\x11\x92\x33\xad\x0c\x67\x4f\xf6\x43\xcd\xc1\xb3\x29\xd5\xa5\x37\x88\x00\xb5\x3d\x63\x03\xa9\x97\xf6\x39\xea\x32\xa5\x9c\x01\xfa\x22\x69\x89\xd0\xac\x05\x8e\x0c\x14\xb3\x0b\x58\x02\x7d\x61\x8d\x9a\xa2\x10\x39\xf4\x71\x85\x14\xd9\xc3\xa8\xe2\xc5\xa2\x9e\x32\xce\x53\x3e\x63\x10\x60\x29\xe2\x2a\xce\x06\xb2\x2a\x39\x86\x1f\x86\x46\xd2\x0b\x88\x14\x26\x32\x6a\x19\xb9\x90\xb5\xc1\x77\x2a\xb5\x92\xed\xb9\xc0\x86\xde\xc9\x7e\x01\xd0\xa1\x8d\x1c\x0f\xbd\x19\x76\x54\xd8\x21\x5b\x01\xf7\x11\x12\x39\x56\x88\x4e\x61\x30\xe9\x25\x2a\x5b\xf0\x01\x3e\x05\xb3\x50\x70\xa0\x78\x0d\xf6\x3f\x01\x67\x93\x3d\xfe\x85\x20\x26\xd2\x87\xf8\x43\x60\xbd\xaa\x9a\x12\xca\xdf\x37\xff\x25\x6d\x90\x9f\x68\xe5\x02\x52\x78\xeb\x34\xb7\x6a\x04\xba\x28\x71\x23\xcc\x53\x1b\xc0\xdc\x5e\xf7\x97\xc6\x93\x70\x0d\xd1\xa2\x9e\x02\xf3\x45\xa9\x94\xf7\x8a\x0c\x18\xad\xa2\x37\x6d\x17\x6e\x97\xbc\x30\x62\x01\xe1\x83\xf4\x85\xcf\x56\x72\xa1\xa4\x74\xfe\x20\xf5\xbb\x48\x6e\x85\x65\x3c\x12\x2c\x51\x1d\xa9\xfa\xd0\x32\x24\x54\xd6\x0c\x37\xdd\x05\x07\x61\xa4\x86\x4f\xb8\x6f\x70\x98\xf9\x4f\x0d\x0f\x49\x34\xbd\x2d\x74\x43\x9b\x0c\x7b\x53\x99\xd8\x3b\xba\x82\xf5\x01\x84\x50\xf5\x4e\x9f\xb9\xa4\x5d\x8a\xeb\xf3\x31\x54\x9a\x54\x67\x75\x84\x41\x17\x1e\x55\x1e\xab\xaa\xed\xaa\x10\xec\xa8\xf1\xea\x48\x62\xbc\xa8\xfd\xd0\x66\x83\x4b\xad\x7b\xd9\x3c\x5c\xfd\x0f\xe2\x57\xa3\x7f\x81\x1e\xed\x63\x16\xa4\xda\x63\x41\x63\x4b\xf8\xdf\xf8\x7b\xba\x1a\xef\x7b\xa4\x1a\xd5\xbd\xf9\xb5\x54\x7f\xd9\x23\xab\x0f\x8c\x50\x51\x95\xd2\xa6\xf2\x53\x7f\x82\x60\x6e\xf5\xee\x9e\xd7\x8c\xba\x5a\x49\x17\x1c\x7b\xb9\x8e\xd5\x7e\xb0\x1a\x42\x68\x5a\x1e\x15\x44\xa0\x0e\x34\x9e\x4f\x39\x85\x75\x30\xe3\xc3\xfb\xf1\x14\xc3\xa0\xf7\x15\xe2\x6f\x8d\x6a\x3e\x87\x32\x29\x7f\x65\x9d\x40\xbf\x21\x3a\xa2\xff\x8f\x76\xae\xc4\x5f\xb6\x8a\xee\x52\x76\x88\x7d\x8e\x4e\xae\x0c\x27\xb1\xe8\x1f\xab\x8f\xd4\x15\x30\xe4\x30\xc2\xe6\x5c\xd0\x17\xb1\x36\xed\x2b\xf8\x0c\xed\xbb\x1e\x09\xed\xc5\x55\xad\x7c\xcb\x1c\x26\x4e\x38\x3d\x61\xdd\xa5\x9a\x01\x80\x23\x62\xfc\xd1\x87\x52\xb5\xe5\x39\x52\x36\xcd\xba\xd2\xc8\xf6\xa5\xf1\xaa\xcf\x13\x1f\xd2\xdd\x60\xce\xb0\xe3\xf4\xb3\x70\x49\xd1\x25\x86\x08\x35\x33\x4d\x0a\x16\x61\xfe\x5a\xef\x06\xc5\xe2\x77\xaf\xdc\xcd\x4c\x27\x5d\x75\xfa\x9b\x65\xa2\xc5\x01\x00\x27\x0f\x4c\xd7\x91\x28\xf9\x55\x8d\x92\x13\x94\x57\x35\x3a\x16\x8f\xaa\x82\x49\x88\xe1\xb4\x58\xb8\x1e\xe6\x4d\xb7\x43\x9e\x2a\x4a\xa1\xdf\xc0\xcc\x49\x9b\xcb\x18\xc7\x29\xc3\xcf\x82\x47\x89\xeb\x56\xaa\xa0\x87\x94\x99\x4e\xb7\x58\xb1\x74\x4f\x00\xe0\x38\x81\x13\x9a\x63\xa4\xa5\x08\x3f\xf1\x6c\xd2\x2b\x64\x0f\x74\x9e\x7c\x04\xed\x8c\x3f\x45\x69\xc2\xec\xad\x79\x4d\x95\xe1\xd8\x85\x6b\x69\x5c\x42\x7e\xea\x4a\xba\x9e\x94\x1b\xbe\x92\xb1\x9b\x02\xae\x4c\x85\xac\x68\x47\x9c\xce\x33\x65\xa0\x17\x00\xb0\xe9\x4c\x47\xb5\x23\xfe\x3d\xde\x56\x28\x21\xbc\x22\xac\x00\xd1\xc4\x67\xc4\x10\x9c\x8c\xf4\x82\x54\x51\x7d\x99\x02\x90\x7b\x0b\x22\xa8\x8b\x29\xdf\x53\x8a\x68\x79\x34\x5c\x98\x91\xde\x4b\xff\xb3\xd2\x1a\x9c\x0f\x0e\x38\x9d\x82\x8e\x31\xf3\x00\x80\x75\x9e\xc5\x51\x46\xe1\xa6\xd3\x98\xfc\x77\xf8\xc5\xf4\x85\x0c\x7b\x82\x1f\x7d\x00\x9b\x42\xcc\x63\x64\x55\xed\x21\x69\xc1\xd9\xf9\xf1\xe4\x0b\xe0\xad\x64\x39\xd5\x1b\xda\xbd\xee\x0f\xad\x93\x39\xb0\x62\x1b\x63\x1d\xab\xcf\x69\x1c\xfc\xc3\x96\x01\x00\xcb\x9d\xfd\x42\x36\x8a\x3e\xc2\xdf\xcd\xd5\x62\xae\xf3\xb7\x52\x27\x70\x36\xfc\x26\xf4\x06\x7c\x1e\x9f\x55\xf1\x8a\xb0\x97\x8f\xcc\xdd\x4e\x5a\xc9\xcf\x4f\x8a\x22\x8f\xf2\x13\xd6\xd9\x51\x73\xf8\x7e\x2b\x16\xd2\x9d\xf8\x4e\x4e\xc3\xa0\x3d\xef\x38\x00\x30\xd3\xb8\x9f\x24\x33\x90\x64\xf5\x45\xf6\x1c\xd4\x4d\xd5\x3b\x32\x1b\x13\xa3\xb2\x41\xae\xc6\xee\x54\x3a\x97\xcf\xc7\x47\x2b\x96\xe6\x2c\x24\x5c\x93\x2f\x4a\x78\x4e\x92\xc8\xec\x42\x01\x4a\x96\xe4\xf2\x72\x3c\x6d\x9d\x58\xe0\x44\x63\xe4\x09\x1f\x02\x00\xd4\xcf\x9f\x10\xfe\x05\x7f\xdf\xb8\x1d\xfa\x83\x64\x35\xcc\x25\xea\xd0\xd6\xe6\x52\x38\x16\xa3\x35\xb5\x95\x2a\x71\x81\x86\x73\x59\xe3\xf8\x67\xba\x2b\xf1\x17\x88\x7b\x35\xbb\x42\xdc\xc9\x4d\xaa\x02\xaf\x09\x6a\xa3\x7c\xdc\x29\x8c\x7e\x51\x32\x0e\x00\x50\x90\xb0\x4c\xf0\x14\x4e\x68\xf7\x84\x82\x11\xdf\x5a\x63\x08\x37\x51\x8a\xe6\xe0\xba\x53\x18\xb7\x46\x97\x92\x6f\xd8\x71\xf3\xdd\xac\x78\x3c\xd7\x44\x89\x47\x10\x8b\xf5\x37\x82\x27\xc9\xf1\x9a\x7f\xbd\x0c\xd4\x54\xe5\x56\x27\x6f\xba\x4c\x66\x0b\xb8\x81\x6f\x85\x5f\x05\x71\x70\xfb\xee\x49\xb0\x0b\xa1\xe9\xdc\x4d\x28\x40\x79\xb6\xa3\xea\xf2\xd1\x63\xad\x40\x49\x03\x36\xaf\x09\x93\xf9\x09\xef\x6c\x69\x8b\x0f\x20\x7c\x30\xe9\x83\xfb\x48\x7f\xeb\xdd\xbc\x04\x94\x87\xea\x4c\xa7\x20\xba\xb7\x7c\x2a\x40\x05\x25\xa2\x72\xa9\x3b\xeb\x4a\x49\x10\xfb\x39\xeb\xdf\xb2\xbd\x94\x0c\xd6\x93\xca\x95\xc8\x7e\xf6\x8c\xea\xbe\xf2\x00\x76\x0c\x2c\x3f\xfb\x5f\x36\x84\xf0\x4c\x28\x61\x9f\x40\x7b\x07\x73\x39\x9e\xb8\x7c\xcf\x1b\x9c\x26\xe2\x21\x47\x7f\x6e\x1c\x55\x0f\x00\xbc\x5a\xc6\x3b\x09\x92\x79\xb2\xdc\x95\x9d\xc4\x7c\x5e\x59\x45\xde\xc5\x9a\x5a\xdd\x8c\x9c\xcf\x8a\xab\x7d\x50\x36\xc8\x52\xc0\xb3\xb3\x71\xac\xdb\xc8\x47\xf1\x1f\xd9\x11\x98\x2d\xc1\xeb\xd9\x63\x78\xb3\xe7\x7e\x4e\x34\x69\x97\xa3\x27\xe7\x0f\xcd\x17\x00\x78\x7e\x60\xa8\x78\x00\x3a\x50\xb5\x92\x65\x81\x5e\xd5\xac\x25\xcf\x65\x7a\xc3\xc2\x11\x20\x93\x02\xdf\x50\xb6\x80\x79\x09\xc9\xc8\x7a\xc3\x0a\x41\x5f\x8e\x17\xb3\x86\x70\xa5\x41\xef\xd9\xc1\x44\x5b\xcf\x56\xf6\x75\xf2\xdf\x8e\x7e\x9c\x21\xda\x0f\x00\xe0\xbe\x06\x87\x84\x4f\x18\x9d\xf0\x6c\xe8\x2b\xe3\x27\xe2\x0f\x51\x06\xd6\xa1\x04\xf0\xa5\xe0\x3d\x8c\x5f\xc9\x1b\x08\x86\xfd\x93\xf9\x0c\x7a\x8d\x7f\x15\xd7\xcb\x14\x93\x80\xa0\x6a\x56\x30\xc5\xdb\x13\xc9\xfa\x46\xa3\x39\x26\xb0\x3f\x30\x5e\x03\x00\x37\x1b\x7a\x25\xa8\xa1\x89\x71\x33\xc0\xdd\x74\x47\x7c\x14\x61\x33\xbd\x8d\x50\x51\x37\x9b\x11\x41\x6c\x28\xfe\xc1\x78\x42\xfa\x2f\xd3\x09\xd4\x53\xaa\x36\x7c\x86\x36\x52\xdf\xad\x7d\xc3\x5c\x4e\xd7\x7a\x86\xb3\x9c\xc0\x54\xc7\x2c\x76\x20\x73\x06\x00\x70\x7a\x59\x05\x7c\x2f\xca\x08\x75\x1e\x23\x8f\xba\x99\xfa\x0f\x7e\x15\xf5\x1d\x4d\x56\xfb\x83\x36\x4a\x4f\x29\x9e\x4a\x87\x18\x1e\x19\xd1\x8c\x44\x70\xfa\x86\x14\xd0\x03\x9a\xbe\x16\x84\x3c\x98\xf3\x3d\xed\x99\x21\x2c\x7f\x47\x0a\xab\x92\xed\x0f\x00\xec\x1b\xec\x53\x1c\x31\x29\x9b\x7b\x98\xb6\x80\x3c\x87\xfb\x18\xf3\x95\x7c\x9f\xfb\xbd\xfa\x0f\xe5\x38\xcf\xaa\x28\x95\xba\x97\xe7\xbc\x69\x2f\x6d\x94\xb7\x26\x76\x0a\x7d\x27\x2f\x35\x50\xc9\xb8\xc3\x2b\x5b\x2a\x80\x9c\x79\x58\xc7\xcd\x4c\x3c\x2f\x1e\x00\xd8\x73\xb9\xbb\x98\x8f\x09\xc9\xca\x64\xb2\x9c\x18\xa7\x10\xa3\x46\x48\x81\xf2\x9b\x95\x6f\xc9\xeb\xe4\xae\x05\x10\x25\x5d\xb6\x79\xe3\x32\x2a\x52\xaa\x8a\xde\x41\xb3\x48\xb6\x05\x68\xe8\xf7\xc5\x7b\x3c\x1e\x83\xeb\x45\x9d\x8e\x4b\xa1\x03\xc2\x00\x00\x60\x61\xf9\x58\xf0\x2e\x7e\x8a\x99\x46\xdc\x8d\xff\x53\xbf\x04\xf1\x90\x38\xcd\x38\x54\x91\x4f\x5a\x6a\xf0\xc9\x9f\x4f\xde\xa8\x33\xa5\x7e\xa0\x48\x35\xf7\xa3\x0e\x53\xaf\xaa\xed\xfd\xc7\xe9\xfe\x8a\xff\x3c\x62\x19\xed\xb2\x76\x87\x7f\xa0\x50\xf1\x33\x00\x60\xbe\x13\x3c\x07\x6d\x70\xc8\xe6\xed\x84\xaf\x78\x46\x93\x23\x22\x98\x50\xdf\x90\x54\x7e\x80\xb8\xcd\x8c\xce\x33\x92\xee\x9b\xc8\xa9\x62\x8a\xa7\x21\x37\x0a\x41\x85\x74\xb6\xfe\x20\xed\x96\xba\xc6\xc3\x8e\x91\xa9\xa0\x38\x9c\x01\xdf\x48\xdd\x00\x80\x39\x28\xe4\x31\x2a\xb0\x2f\x3b\x42\x09\x08\xbc\x5d\x5b\x01\x7c\x2f\x21\xa0\x25\xa5\x3c\x97\x98\xd2\xb4\x3c\x2f\x9a\x44\xb1\xdc\x4a\x8d\x23\x1f\xa8\x2f\x8e\x5a\x4f\x9d\x6f\xe8\xf4\xcf\xa7\x51\xb4\x3c\xf7\xd7\xf4\x97\x2a\x6b\x87\xbb\xa0\x54\xe6\x0a\x00\xcc\xf5\xc2\xff\x68\x99\x92\x6d\x25\xe9\x38\x57\xc9\x92\xb2\xcb\xb0\xb5\xe2\x96\xca\x4d\x25\x42\xb1\x5f\xf5\xa9\x6c\x57\xd1\x09\x18\x25\xf1\x9b\x28\x13\x91\x16\xbe\x5f\xf8\x37\xba\xdc\x77\xb3\x10\x8f\x6b\x72\xc3\x0b\x67\x91\x1c\xa6\x9f\x17\x9c\xa3\x5e\x01\x00\xc1\xbf\x60\x28\xb5\x47\xdc\x5b\x3e\x15\xab\x11\xfb\x55\x66\xd4\x1e\x15\x9d\xa8\x56\x95\x38\x8b\x30\xb5\x17\xb3\xb6\x8b\x5c\xe0\x09\x89\xad\xc2\x3d\xc8\xc7\xe1\x18\x61\x11\xe6\xa0\xaf\xb7\x10\xc0\xef\x71\xab\x11\xec\x20\x3d\x9d\xfe\x50\x20\xa0\xe5\x02\x80\x60\x0c\xac\xa3\xbc\x14\x35\x55\xbe\xc0\x7c\x12\x45\x56\x7f\xa8\x8d\x17\x3e\xaf\xfd\x52\xdc\x24\xdc\x02\xb7\xca\x8a\x15\x22\x91\x1b\x12\xc3\x85\x2e\xe8\x91\x70\x17\xc1\x39\x5c\xfa\xaa\xef\x02\x19\xd1\xde\xad\x50\xb0\x89\xfc\x61\xfa\x07\x81\x1f\x7d\x06\x00\x08\x90\xe0\x19\xf2\x16\xc1\x40\xdd\x20\x7a\x9b\x80\x83\x48\xac\xb1\x12\x94\x22\x6f\x6e\x16\x09\x82\xd0\xe6\xcc\x6c\xc1\x6c\x2c\x33\x01\xc1\xff\x1b\x2f\x0c\x43\xf1\x87\x89\xbb\x56\xa9\xf8\x12\xf2\x47\xb7\x58\x3e\x89\x56\x36\xc3\x99\x4f\x63\x5c\x01\x00\xfe\x09\xe8\x3d\xc9\x93\xf7\x0b\xd3\x88\xaa\xe5\x4d\x62\xbf\x56\xbd\xe3\x0d\xe3\xe3\x8a\x14\xbc\x2e\x42\x63\x06\x89\xd7\x42\x9a\x13\xdf\xcf\x93\x91\xfb\xd6\x9d\xe7\xd1\xa8\xa5\xab\x02\x79\x6c\xfa\x32\x37\x1f\x9e\x1a\xb4\x9d\xb1\x96\xb7\x13\xba\x08\x00\x7c\x67\x56\x2a\xe1\x14\x77\x03\x39\x0c\xb9\x9a\xbb\x9c\xe2\x52\x79\x85\x3b\x97\xf2\xaa\x50\xc2\x5d\x4e\xbd\x9e\xae\xe2\x46\xd2\x6e\xc7\xdd\xe3\xc6\xd1\x3f\xae\xf3\xe1\x6e\x04\x97\xfb\x5c\xe4\x42\x10\xd2\xcd\x91\xbb\x95\xb9\x7f\x46\x36\xf7\x2d\xeb\x2a\x00\xf0\xd0\xec\x6e\x7c\x02\xeb\x5f\xb6\x13\xbc\x82\xf5\x83\x0d\xaf\x98\xc2\x9e\xcb\xee\xcb\x1f\x67\x17\xb1\xff\xd9\xf8\x9a\xdd\xcc\xf1\xdb\x40\x61\x9f\xe5\x48\x43\xbe\xb1\x7f\x73\x9e\xf9\xd8\x72\xe2\xb9\x69\xae\xbb\x38\x5a\x6e\xe7\x0c\x18\xe7\x03\x77\x0b\x00\x70\xa9\x5c\x2a\x66\x37\xf4\x46\xba\x15\x16\xce\x5c\x23\x0d\x2f\x7d\xcd\xe4\x4b\x76\xe4\xad\x62\x1e\x91\x24\xa4\x75\xb3\xe6\x88\xaf\xc4\x16\xb3\xea\xc4\x85\x21\x33\x59\x13\xa2\x8b\xde\xe5\x6c\x5f\xd1\x3a\xd7\x14\x76\xaf\x90\x3c\x23\x8f\xe3\x27\xc8\x01\x00\xce\x5f\x7c\x1b\x54\x2b\xb8\x43\xbf\xaf\x06\x0d\xfe\xd0\x1d\x2f\x61\x41\x99\xda\x2d\x39\x27\xa0\x11\x8d\x38\x15\xcb\x74\x52\x67\xc7\x14\x30\xc5\xaa\x29\xc1\x99\xcc\x5f\x8a\x86\x95\xdb\x59\x0c\xd9\x07\x97\x03\x6c\x6b\xa9\xcd\x0c\x57\x76\xbb\xe8\x20\x00\x70\x62\x04\x65\xc8\xe7\xe0\x72\x33\xa5\xfa\x30\x08\xd5\x47\x14\x3f\x00\x6f\x1b\xef\xe4\x44\x40\x11\x86\xba\x94\x1f\x50\x8f\xee\x56\xf4\x67\xa6\xbb\xd6\x27\xd8\x96\xd9\xad\xce\x5e\x49\x61\x79\x28\x57\xbb\xc8\x59\xa3\xb2\x2d\x33\xec\xd9\xb9\xe2\x0b\x00\xc0\xfe\x28\x78\x86\xac\x64\x8c\x36\x49\xab\x63\xc1\xe9\x8d\x6e\xc5\x38\x90\x60\x11\x66\xdf\x05\x27\xea\xcf\xa7\x6c\x85\x82\x8d\x1f\xa3\x0f\x41\x3b\xf5\x6f\x82\xee\x33\xa3\xb4\x7b\x57\x16\x32\xf7\xaa\x17\xbb\x90\x59\x49\x8a\xf9\x33\x9c\x58\xaf\x24\x07\x00\x80\xad\x11\x66\xd5\xbc\xd0\x8f\x96\x3c\x28\xbd\xab\x23\x94\x67\xe7\x7d\xd5\x46\x55\xee\xdf\xb4\x59\xe3\x52\xb3\x2e\xde\x4d\xf5\x12\xf6\x22\x3c\x4d\xd9\x85\xb8\xe4\x27\x53\xa4\xa3\x3f\x2f\xbd\x23\x7b\x89\x8f\x77\x7a\x2e\x15\x91\xfe\xb2\x65\x49\x82\x68\x28\x00\x10\x2f\x00\xaf\xd5\x18\x75\xdb\xcb\x93\x4a\x45\x5a\x59\xa5\x24\x6f\x44\x53\x5b\x7d\x62\x93\xa3\xba\x18\x36\x2b\xee\xba\x2a\x09\xae\x0c\x77\x50\xce\x42\xc5\xf8\x6d\x96\x9f\xc2\xae\x59\x7a\x52\x06\x11\x22\x9c\xde\x4b\x57\x92\x19\xb6\xad\xe2\x7f\x69\xe7\x01\x40\x74\x07\x7c\x5a\xe3\xaf\xdd\x5d\x79\xb5\xd4\x5d\xd3\x51\xfd\x34\xaf\x50\x2d\xab\xfd\xb6\xf1\x80\xaa\x19\xee\x10\x27\x51\x36\x21\xcb\xc2\xce\x2b\x88\xe8\x07\x7e\xcb\xe4\xe1\xb8\x86\xa5\x23\x32\x80\x88\x72\xfa\x2a\x39\x42\xa9\xb5\x3d\x26\xd6\xd3\xd1\x00\x20\xd2\x42\x61\xd5\xd3\x35\xab\x61\x3f\x4a\x9c\xd5\x0b\xe0\x67\x73\xab\x55\xcb\x91\xb8\xb4\xe7\xca\xf5\xe8\xf8\x0d\x37\x14\x49\xd8\xf8\xb0\x75\xf2\x10\x3c\x7a\xcd\x88\x6c\x3e\xf1\xc8\x52\x8a\xe4\x37\x65\xd1\x3c\x40\x7c\x9f\x66\xb6\xfd\x24\x9a\x04\x6d\x01\x40\xf8\x88\x19\x5b\xf9\x48\xb5\x11\x2d\x2d\x06\x94\x70\xcc\xcf\x1c\x94\x42\x80\x2b\x4f\xb3\x97\x6f\xc7\xdf\xda\x30\x47\x76\x93\x48\x5f\xa7\x91\xde\x27\x87\xae\x59\x2e\xb9\x45\x9d\xbf\x34\x48\xfc\x92\x3e\x6d\xde\x54\xd1\x27\xd0\xce\x2e\x50\x64\x05\xdd\x03\x00\xa1\x27\x4b\x5c\x71\x4c\xd1\x4f\x44\x16\xfd\x92\x9f\x27\x99\xb3\x09\xb2\xf7\x64\x59\xea\x32\xd9\x7a\x4a\x67\x6c\x92\x94\x4e\xbd\x11\xfa\x40\x62\xa6\x2f\x5f\xdd\x2a\xee\x63\x28\x3d\x5e\x89\xee\x41\xd3\xe6\xcd\x14\x39\x31\x05\x76\x08\x61\x28\x6b\x0f\x00\x08\x50\xec\xb3\xe5\x65\xb2\x52\xc8\x52\x68\x92\xf6\x32\xe7\x66\x2d\x97\x7c\x62\x8a\x53\xac\x24\x05\xac\xa9\x31\xb9\xe2\x6d\xac\xc6\x50\x67\xd1\x67\x76\xe8\xea\x29\x22\x7f\xf6\x1d\x0f\xb3\x50\xc4\x91\x38\x7d\x13\xdc\xe6\xce\xb1\x3b\x2a\x58\xca\x4d\x05\x00\x7e\x0d\x97\x52\x2a\x93\xc8\x45\xd3\x0b\xa6\x8a\x9f\x0b\x1f\x65\x9c\x12\xe7\x08\x4f\x24\x9d\x17\x9d\x15\xb6\x47\xa7\x89\x22\x85\xdc\x90\x50\x61\xb7\xb0\xc8\x37\x5f\x68\x25\x5c\xe5\xb1\x42\x80\x17\xbc\x73\x3a\xc3\x7f\x22\xa0\xdb\x5d\xe0\xe7\xf0\xbb\x00\x80\xd7\xc7\x9b\x2c\x99\x23\x5e\xa1\x5e\x9d\xd7\x2c\xea\x53\x49\xd3\x05\x22\x6f\xe5\x99\xc4\x6d\xc2\x51\xa5\x75\x54\x85\x30\x50\xb1\x36\x98\x22\xd8\x27\x4f\x5f\x75\x4c\x10\x2e\xcb\x71\x1f\xe1\xef\x94\x2e\x72\xc2\xf0\xc3\xc4\x1a\xbb\x71\xde\x1e\xe1\x21\x00\xe0\x2d\xe2\x7f\x2e\xc6\x8b\x1a\xf4\x84\xbc\x19\xa2\x25\x3a\x75\xfa\x14\xe1\x90\x56\x9e\x98\x2c\x0c\xd2\x40\x51\xf6\x82\xfd\xea\xe2\x60\x7f\x41\xba\x6a\xc9\x2a\x1d\xff\x8e\x62\xdc\x5d\xc8\x2f\x92\xcf\x75\x4a\xe3\xdd\x97\x02\x76\x63\xbc\x3a\x51\x1f\x00\x70\xaf\x0a\x60\x9b\xdf\x8a\x16\xd7\xbb\xe4\xb6\x09\xfb\x4c\xb6\x9b\x06\x84\x21\x86\xb3\x09\xbf\x05\xfb\xf5\x82\xc8\x6b\x82\x58\x9d\x7b\xf0\x74\xfe\x6d\x4d\xe3\x2a\x36\x9f\xa8\x7a\xee\x4e\xe5\xbd\x52\x9c\x77\x8a\xe3\x11\x64\x71\x76\x67\xb8\x3f\xc5\x2c\xe0\xff\x28\x2c\xeb\xb7\xa8\xf3\x36\x0a\x7f\x30\x50\x01\x51\x90\x12\xa4\x3b\x14\x29\xe9\x06\x29\xe9\x18\x18\x98\xee\xee\xee\xef\x74\xd2\x6d\x77\x77\xd7\x9a\x6b\xf7\xda\x9d\x6b\xac\x5d\xeb\x5a\xef\xf5\xfe\x03\xe7\x7a\x7e\xb8\x9f\x73\x6e\xa0\x62\x42\xa7\xea\x2f\x2e\x70\xef\x50\x55\x69\x46\xa7\x20\x6f\x97\x0c\x0d\x7b\x63\x0a\x73\xde\x0f\x26\xe3\x8e\xa6\x5e\xee\x4f\x27\x6a\x13\x9a\x7b\xc7\x52\x24\xe1\xd3\xbb\x36\xd3\x37\xfa\xe9\x1c\x95\xec\x70\xb7\x77\xd6\xcb\xbc\xfd\x60\xad\x19\x2f\x4a\x06\xc0\xf0\x5b\xda\x59\xbf\x62\xfe\x64\xe4\xb6\xaa\xe6\x91\x18\xf4\xa3\x12\xd6\x50\x09\x6e\x46\xce\xc9\x01\x11\x81\x91\xba\xae\xaf\x8b\xf4\x5f\x42\x46\x0f\x95\x7a\x28\xdc\xb9\x2b\x9a\x71\xd8\xcf\x68\xbf\xc2\xfe\x32\xd9\xc5\xca\xe0\x97\x81\xb3\xe6\x69\x22\x01\x00\x86\x3d\x52\x4b\x3d\x73\xd4\x0d\xe3\x59\x15\x38\x9c\x8f\xf3\x2e\xc9\x18\x64\x11\x22\x72\xba\xfa\xf7\x92\x8a\x52\x25\xbd\x8f\x28\xcb\x12\x3c\xba\x4f\xd3\x73\xc3\x5e\x77\xf6\xb1\x5c\xfd\x8c\xf6\x7a\xee\xb8\xc9\xc1\x96\x5f\x02\x0f\xf0\xd9\xb4\x4d\xf4\x05\x00\x03\x51\x7a\xac\x6e\xe1\x30\x9e\xf0\x57\x25\x6c\x70\x1b\x49\x5b\xac\x1e\x00\x94\x8c\xec\x9f\x7d\x75\xb4\x88\xd4\xf1\x3d\x26\x46\x7e\xfc\xae\x2e\x23\xcb\x10\xb6\xd9\x41\xe2\x7c\xf1\x13\xd8\x0a\xf8\xa2\xc9\x25\x96\x29\x22\x67\xa7\x52\xe3\x03\x09\x16\x00\xfd\x0a\xd9\xa6\xda\xcf\x83\x2b\xa8\x97\x2b\x96\x0e\x78\xd0\x2b\x8b\xce\xf7\x09\x18\x07\xb2\xd1\x3d\x37\x59\xad\x29\x9a\xee\x28\xce\x8c\xf8\xda\xce\x0c\xee\xef\x30\xaa\x7d\xa6\x60\x9c\x1f\xd9\x1a\x23\x8a\x99\x4c\x34\xfb\x49\xf2\x9d\x86\x8d\x40\xe6\x09\x80\xee\xaa\xfc\x7e\xcd\xb7\x01\x6f\x76\x59\xf9\xc5\x3e\x2b\x07\x51\xe4\xd7\xf3\x8d\xcb\xcd\x3a\xd8\xcd\xe6\xed\x4c\xfe\xb7\xf3\xa2\x20\x20\xee\xb1\xfd\xb3\x70\x20\x2c\xc4\xfa\x53\x1c\xe3\xd7\x68\xf1\x96\x3c\x9d\x6c\x30\x45\xc9\xd4\x4e\x6f\x0d\xd1\xf2\xd3\x00\xe8\x26\x2b\x3d\xaa\xff\xee\xbd\x2d\xee\x28\xbb\xd9\xc3\x96\xb8\x15\x96\x74\xfd\x96\xec\xc8\x72\xed\xb4\x4b\x19\xc9\x14\xc7\x44\x59\x4e\x9c\xc0\xd6\x20\xf7\x0a\xbd\x6d\x81\xe4\xff\xfa\x55\x98\xb6\x28\xde\x4c\xde\x6b\xb8\xa5\xdc\x34\x06\xaf\xfb\xad\xf2\x05\x00\xfa\xa1\xea\x99\xb7\xa6\x67\x8a\xfa\xcb\xdc\xeb\x5d\xbb\x34\x6e\x05\x6d\x9d\x78\xcd\x8c\xcc\x72\xc7\x38\x4d\x76\xd2\x9f\xb6\x01\x0d\x2e\xf6\x83\x75\x9c\xc6\x1a\xaa\x30\xb7\x6b\x36\xfa\x85\x1a\x47\x34\x67\x26\x5f\xd4\x5f\xd5\x2c\x1e\xb3\x55\x37\x43\x13\x06\x00\x94\xac\x3e\x50\x75\xb0\x6b\x83\x39\xae\xf4\x76\x27\xca\x74\x30\x5f\xea\xf0\x30\x15\x65\x40\xb6\xc3\xc6\x0b\x49\xb1\x56\xac\x11\x1e\x2b\x30\x7f\x34\x5c\x0d\x8d\x34\xb1\x0c\x05\xbe\x8f\x0d\x87\xf5\xec\xc9\xdb\xf5\xee\xba\xda\x31\x37\xb4\x2c\xe8\x1f\x00\x34\xf3\x35\x5b\xaa\x12\x3a\x7f\xdb\x5e\x95\x92\x1c\x87\x6c\x95\xf9\x7e\x76\x95\xb5\x3f\x23\xd9\x96\x6c\x79\x38\xfb\x95\xe5\xba\x25\x22\x76\xae\x59\x64\x6e\x08\x1d\x67\x1a\x63\x22\xf9\x5e\x30\xb4\x19\x23\x27\x6f\xd4\xad\xd1\x77\x8e\xb9\xa1\xf5\xd7\x6e\x01\x40\xd3\x06\x8d\xab\xdc\xd2\x89\xee\x0a\x28\x9d\xe4\x88\xef\x6c\xc9\xbb\x6c\xfb\xe4\x10\xa4\xff\xb4\xae\xb0\xdb\x67\x9f\xb2\x54\xd8\x06\x62\x93\x4c\x1f\xad\xba\x90\x9f\x46\xab\xa5\xc6\xf7\x8a\xfe\xa1\x69\xed\xe4\x03\xba\x64\xc3\xfa\xb1\xe3\xa1\xb5\x3a\x16\x00\xea\xf7\x10\xbe\xe2\xaf\xa5\xc9\x1d\x5f\x8a\x97\x2c\xfa\x82\xca\xcc\x79\xb5\x60\x2b\xc6\x9e\xb6\x7e\x54\x8e\x77\x9f\xe5\x32\x1c\x46\xbc\x18\x15\x3d\x00\x51\xce\x04\x2e\xed\xdd\xc5\x18\xe7\xe5\xd5\x75\x95\x6d\x9e\xb4\xc8\x7e\x8f\x1f\x0e\x80\xe5\xa9\x48\x0b\x80\xf1\xae\xf4\xaf\x8a\xad\x4b\x72\x50\x53\x8a\x75\x8b\xa6\x61\xe2\x73\x2e\xcd\x7f\x8c\x6b\x4e\xeb\x1d\xf9\x83\xb0\x72\xe6\x87\x21\x09\x79\x4e\x94\x5f\xff\x53\xda\x98\xc0\x85\xbd\x71\xcc\x09\x5e\x01\x5d\xad\x9c\xea\x49\xc7\xec\x02\xfe\x52\x00\x2c\x0e\xd1\x2e\x00\x8c\x3d\xd2\x23\x15\xda\xc5\xc5\x98\x86\x62\xf8\xc2\x99\xb8\x8a\x9c\x75\xf3\xa7\x10\xe6\xa5\x51\x87\x7f\x93\xe8\x33\xcf\x0f\x9e\xa0\x5c\x8c\x02\xfd\x45\x74\x76\x60\x4f\x4f\x2f\xab\xd4\x2b\xb8\xf3\x0a\xb7\x6a\xd2\x3d\xdb\x6f\x41\x07\x00\x96\x18\x71\x3c\x00\xc6\x4c\xe9\xe7\xf2\x13\x0b\xfb\x09\x37\x8a\x36\xcd\x1f\x26\xe9\x72\x3c\x46\x06\x28\x99\xa9\x9f\x86\x3a\x69\x09\x33\x45\x03\x24\x46\x5d\xe4\xa1\xde\x2f\xac\xc5\x81\xac\x6e\x04\xd7\xdf\x6b\xba\x63\x2f\x7f\x95\x8b\x8b\x6d\x82\x28\x1d\x00\x73\x95\x44\x07\x80\x81\x29\xbb\x5c\xde\x30\xff\x12\xf5\x40\x51\xd4\xc8\x77\x7a\x44\x36\x34\xec\xc5\xe8\x49\x95\x0c\x06\xb2\x32\x66\x4e\xeb\x9f\xc8\x99\x18\x29\xee\x59\xc3\xfd\x16\x58\xd6\x15\x26\x70\xf1\x8a\xb1\x8f\x8a\xf2\x5c\x52\xac\xe3\x24\x2d\x00\x98\xd0\xb2\x68\x00\xf4\x03\xf2\xef\x65\x98\xd1\x06\xd6\xc5\x42\xda\xb0\x9c\xfd\x2e\xeb\xed\xe0\x02\xae\x77\xca\x7f\xfd\xbb\x79\xa4\x84\xf5\xbd\xdb\xf8\xf7\x22\x67\x75\x13\x84\xe4\xc0\x19\x8e\x77\x62\x57\xaf\x24\x9b\x56\x72\xd7\x05\x67\x71\x91\x41\x00\x18\x15\xf2\x0b\x00\xe8\x8e\x29\xe3\xe6\x2e\x1a\x0e\x16\x6d\x2d\x38\x38\x88\x13\x23\xb2\xe0\xfd\x8b\x25\xe3\x52\xd4\xbd\x97\x24\x97\x12\xea\xbb\x9f\x49\x77\x45\xbc\xeb\x3c\x20\x5b\x15\x38\xd6\xce\x91\x2f\xf3\xaa\xb2\xfa\x29\xb6\xba\xec\x34\x6d\x53\x9a\x40\xa5\xa1\x4e\xf9\x1d\x00\xed\x56\x55\x5f\xe9\xbe\xc1\x1c\xd5\xd9\x82\x71\xfd\xa3\xaa\x37\x99\x07\x7a\xff\x55\xbb\xa4\x80\x9e\x1c\x75\x71\xfc\xd7\x2e\xac\xda\x12\xb1\xc2\x41\x50\x5f\x98\x71\xd1\x36\x57\x33\xcd\xab\xca\xfc\x4d\x53\xe7\xf2\xd1\xb8\x44\x53\x01\x36\xeb\x71\xea\xbb\x00\x40\x7f\xab\x17\x95\x1c\xeb\x3f\x64\xe4\xe5\x47\xf4\xcd\x34\x46\x66\xfc\xea\xe9\x31\x9c\x48\xee\xe8\x7a\x6a\x10\xc4\xd3\x3b\xc3\x0c\x11\x11\x05\xf6\x12\xfd\xa9\x19\x9d\xd6\x4a\x7d\xbb\x57\x94\xd9\x4b\xb7\xdd\xe5\x83\xe1\x82\xf6\x38\xb8\xa6\xdb\x06\x29\x01\x80\x1a\x34\xc2\x92\xe6\x7e\x77\xeb\xf8\xbc\x63\xbd\x5a\x8b\x2a\x63\x4d\xf7\x07\xf3\xf3\x64\xdf\xae\x2a\x33\x2c\x3e\xcd\x61\x36\x1d\x8d\x08\xb0\x1d\x30\x05\xcd\x60\x5b\xae\x1a\x91\x5e\x81\xa6\x15\x86\x6a\x97\x1f\x06\x9c\xee\x1d\xf8\x57\xd7\xa4\x2d\x07\x00\x02\x9a\x9b\xc5\xdf\xfa\x28\x0e\xf7\x3c\x49\xcf\x13\x3b\x22\x83\xdb\x0d\xb7\x0d\x26\xbd\xeb\xdc\x6c\xbd\x1e\x1f\x66\xff\x60\x75\x8b\x98\x6a\x9b\x6d\x89\x9f\x21\xb0\xc0\xcc\x11\x5e\x71\xa6\x68\xe3\x2e\x57\x2f\xfd\x73\xfd\x7f\x4e\x79\xda\x3b\xda\xdf\x00\x68\x96\x40\x59\xc5\x5e\x2b\x2d\x08\x56\xce\xdd\xe5\xe1\xa8\xbe\x39\x69\x4b\xd6\x63\x2e\x24\xe6\x2f\x4a\xc5\x57\x45\xff\x9c\xdf\x45\x72\x0d\x19\x19\xee\xa7\x8e\xf7\xdb\x3a\x80\x63\xe4\x4d\x9d\xd2\xeb\xc3\x3e\xef\xbc\xa4\x73\x2b\x1f\x03\x80\x2d\x57\x34\x08\x80\x69\xa1\xf4\x5e\xd1\xbf\x2b\x46\x51\xfc\x9c\xd3\xcb\x4a\x30\x82\x39\xb1\x8b\xef\xe0\xac\x89\xc9\x0b\x05\x84\x1b\xd1\xef\x46\x1f\x92\xf1\x21\x83\x43\x1f\x69\x49\x7e\xbb\xfb\x2f\x31\xd3\xa7\x46\xf4\xf4\x73\x0c\xce\x47\x3a\x0b\xf9\x97\x00\xb0\xde\x17\xfd\x09\x80\xa9\x5e\x7a\xa2\xe8\xe2\xf2\xb5\x98\x65\x39\x6b\x97\x62\x71\xba\x39\x9e\x8b\x5d\x08\xe2\x44\xdf\x05\x5b\x49\xbd\xd1\x37\x47\x67\x52\x3e\x85\x58\x86\x2a\xe9\x03\x7e\xbb\xfb\xe7\xb0\xe8\x53\x93\x7a\x26\x71\x15\xce\x0f\x1c\x27\x04\x1a\x00\xac\x02\x71\x1a\x00\xc6\x8f\xd2\xcf\x45\xe1\x4b\xdf\x13\xbe\xe5\x78\x2d\x3e\x4a\x1a\x4e\xeb\x59\xa8\xa5\x94\xcf\xda\x3b\x3f\x9d\x96\x15\x3d\x3a\x7c\x84\x81\x09\xc1\x0e\x7c\x61\x6d\xf7\x5b\xd3\xfb\x95\x9b\x32\xb5\xa4\xeb\x39\xff\xdc\x84\x69\xf6\x63\xa2\x1a\x00\x2c\xf6\xff\x53\x6d\x0c\x91\x9d\x2f\x7c\xb0\x24\x9a\x7a\x29\x7b\xcb\xa2\x30\x7a\x60\x5a\xd8\x02\x67\x86\x7a\x16\x72\xe4\x14\x2b\x36\xba\x69\x08\xcf\xfe\x1d\x32\xa7\x7f\x15\xf7\x8b\xdf\x68\xcf\x1e\xc1\xe4\xa9\xcd\x9d\x47\x44\x95\x13\x4a\x6c\xbb\x25\x18\x00\xcc\x43\xb2\x40\x00\x0c\x45\xf2\xef\x05\x5f\x16\xed\x62\xd9\xb3\xdd\x17\x6c\x60\x6f\x4e\xdd\x32\xda\xc7\xb9\x3d\xcb\x69\x98\xc0\x4b\x8b\x9e\x3c\x38\x95\xbf\x23\x64\x52\x1f\x46\x58\xe1\x67\xeb\xd6\x8a\x3e\x4f\xc5\x3b\x56\x4a\x2e\x4c\x10\x5a\xb7\xcb\x24\x00\x98\xb6\xc8\x0f\x01\xa0\x67\x28\x63\x0b\xb4\x0b\x0c\xa2\xea\xac\xe5\xa3\xdd\xa2\x67\xa9\x2d\xc3\x9d\x62\xfd\xcc\x7d\x83\x42\x09\x32\xea\x61\x7f\x96\xb4\x31\xf8\x73\xcf\x56\x59\x83\xdf\x60\xe7\x6f\x39\x6a\xea\x88\x3d\x45\x21\x9b\xf0\xc4\x52\xab\x44\x03\x60\x14\x29\x6f\x02\xa0\xab\x55\x19\xf3\x5f\x8d\xda\x94\x9f\xb3\x92\x87\x77\xa9\x7c\x52\x27\x0c\x5e\x55\xcd\x99\xa9\xec\xbf\xa4\x52\x47\xed\xeb\x5d\xa7\xba\x13\xfc\xb8\xbb\x52\x9d\xe9\x37\xec\x38\xac\xee\x9d\x7a\xd4\xe6\xac\x7e\x36\x31\xd7\x9c\xa4\xfe\x0e\x80\x41\xab\x5e\x0c\x80\x56\xa9\xd6\xe7\xbd\x1a\x7e\x6d\x98\x91\x89\x19\x8a\xd7\xdf\x4f\x41\x0f\xb4\xeb\x07\x12\x3e\xf5\x91\xf4\xf0\xa8\x9a\x9e\x46\x7d\x64\x70\x67\x57\x80\xee\x85\x1f\xdc\x7e\x44\xd7\x3f\x75\x93\xd5\x4f\xe7\x31\xb1\xc5\xd4\xac\xad\x02\x40\x7f\x1a\x4a\x00\x00\x7a\xa5\xa9\xca\x5b\x34\x9c\x6a\x36\x66\x4e\x1f\x14\x99\xdd\x52\x02\xfb\x37\x99\x0c\x09\x87\x7a\x0f\x98\xa6\x44\xc5\x76\x6f\x31\x8e\x04\x0b\x3a\x2d\x46\x7f\xbf\x0a\xfb\x5c\x83\x68\xea\x26\xcb\x32\x7d\xe7\x44\x8a\xf1\x99\xee\xff\x8b\x49\x82\xde\x00\x00\x2d\xd1\x6c\xce\x43\x0f\x19\x6d\xf4\x8c\x47\x03\x67\xac\x47\x93\xdf\xf4\x8f\xb7\xba\x25\x2c\xe9\xf5\xb6\x90\xa3\xfc\xba\x5d\xcc\x87\x82\x99\x8e\xf7\x66\x67\xbf\x2a\xdb\x21\x53\xe8\xd4\x23\x96\x20\xc3\xe3\x89\x0e\x23\x5e\x8f\x04\x40\xf7\x49\xbb\x10\x00\xa8\x08\x72\x1b\x5d\x83\xa9\x6b\x6a\xe9\xfa\x81\xbd\x00\xab\xd6\x6f\xc6\xe3\xe0\x29\x92\x25\xc4\x48\xc4\x3c\xfa\x6e\xb2\x2f\xda\x84\x7c\x42\x4d\xc4\xfd\x55\xbb\x82\xae\x27\x55\xe7\xb5\xb1\x0a\x69\x91\xf1\xf3\xb8\x69\xac\x00\xef\xaf\x02\x1b\x2f\x01\x00\x89\x4a\x78\x6f\x64\x33\x6a\x19\xec\x46\x57\x00\xa6\x18\xae\xd3\xdd\xc7\xfe\x40\x44\x88\x5f\xe1\x9f\xa3\xbe\xd0\xfd\x88\xbf\xb1\xaf\x90\x2d\x94\x5c\xc2\xfb\xda\x78\xda\x1e\x4a\x48\x1e\x60\xf6\xd1\x57\xc6\xbd\xe7\x6c\x64\x17\x7a\x1f\x13\x84\xf1\xbe\x03\x20\x49\x17\x55\x0f\x6f\x47\x7c\x6e\x57\x75\x26\xa3\x76\x23\x1e\xea\x26\x61\x46\xd1\xd9\xe2\x58\xdc\x5a\xec\x09\x1a\x97\xf0\x94\x20\x44\x1c\x27\xcf\x25\xa7\xd5\x6c\xa6\x3e\xa3\x05\xe4\x0e\x33\x1e\x32\x2b\xe2\x16\x70\x02\x39\xdd\xde\xdd\xfc\xcd\xfc\x0f\x00\x88\xef\x8b\x9e\x0c\xde\x87\xef\xc3\x6e\xb5\xb3\x3a\xce\xe3\x97\x43\x58\xe4\x6f\xa2\x49\xb8\x15\x53\x45\xee\xa2\xc6\xe3\x8e\x50\xf7\x76\xac\x21\x12\xe9\xef\xab\x8f\x51\x4a\x59\x95\x39\xcf\xe9\x22\xce\x99\x38\x17\xd6\x67\x3e\xd5\xbb\x8a\x77\x50\x14\x00\x80\xd8\x4f\x52\xdf\xbf\x06\x76\x9d\xda\x6e\xed\x82\x4f\xa1\x9d\x57\x5f\xe8\x20\x33\xe6\x08\xea\x90\x6f\x99\xdb\xc8\xff\x62\x96\xb1\xab\xdb\xe7\xe3\x0d\x9c\x77\xf3\x1e\x92\x56\xf0\xd6\xe7\x24\xd2\xbc\x04\x96\x58\x2b\xf3\xac\x48\xee\x1d\xce\x3d\x25\x61\x03\x20\x2a\x97\x3e\xed\xdd\xd5\x3c\x9e\x6b\x35\x5f\x87\x31\x78\x54\x55\x79\xdb\x77\x7e\x2e\xef\x4b\xc7\x3e\x41\x0c\xe9\x1c\x6a\x95\x30\x1e\x3e\x84\x3d\x26\x4a\x9c\x37\x91\x18\x2c\x2e\xcd\x36\x50\xfe\x94\xf0\x62\x67\x30\x76\x48\xd7\x79\x7b\x71\x1e\xc8\xfe\x02\x40\x68\x94\xab\xba\x7d\xea\x5b\x55\x71\x46\x4c\xd3\x34\x55\xbc\xfc\x7b\xcb\x3f\xaa\x70\xce\xc3\xb6\x0f\xaa\x04\xc2\x67\x44\x94\xaa\xb8\x6d\x22\xda\xa6\xaa\xaf\x3c\x83\x4f\x54\x61\xb2\x96\x92\x83\x54\xdc\x98\xa5\xf4\x26\x95\xd2\x7b\x0c\xfb\x82\x0a\x0f\x80\x60\x9b\xf2\x82\x63\x6d\x4d\x9b\x8d\xab\x8f\xaa\xc7\x58\x95\xd2\x4f\x4d\x1a\x8b\x91\x3d\x01\x76\xc8\xbc\x02\x5f\xd3\x9e\x68\x3a\x0a\x5b\x8a\xbc\x62\x3c\x5d\xb1\x11\xbb\xc3\x70\x24\xf3\x0a\xf1\x91\x7e\x71\x4c\x12\xad\x45\x87\xf3\xfa\xc0\xf6\x85\x9e\x02\x20\x98\xa3\xfe\xcf\x76\x62\x5e\xda\xd0\x7b\x6d\x5b\x6d\xc7\x60\x9b\x24\xa7\x61\x65\xff\x2a\x26\xaf\x65\x5a\xef\x13\xec\xbd\xb6\xad\x3d\x53\x5b\x38\x08\xa8\x6b\x7a\xf9\x71\x4c\x8f\xfd\x7b\x66\x1e\xe1\x9b\x75\x5d\xcc\x58\xea\x88\x39\xd6\x7b\x02\x6b\xc4\x90\x06\xd2\xf8\xef\xa0\xfb\xd6\xd7\x55\xac\x85\xf7\xa1\xe1\x9a\xd1\xf9\x8f\xc4\x9d\xf5\x2f\x46\x4e\x31\xae\x36\x13\x87\x96\x60\xeb\xda\xbc\x07\x90\x2d\x4e\x1d\x9f\x7b\xdf\x97\x0b\x30\xde\xdd\x75\x99\x5e\x84\x1e\x07\x23\x66\x3c\xb5\xd8\x3a\xcf\x3b\x9a\xd5\x61\x5c\x0a\xc4\xfc\x33\xda\x3e\x2b\xaa\xf2\xc9\xb2\xa7\x50\x50\xcd\xa4\x25\x43\xe2\x98\xfa\xc6\x45\x71\x0c\x71\xd3\xd5\xf9\x9b\x31\xbf\x5b\xad\x23\x53\x9a\x4f\x76\x70\x07\xb3\xca\xdb\xd0\xf3\xfb\x22\x32\xa7\x10\x62\xbb\xf6\xc4\x24\x51\x1e\xda\x27\x79\xe3\x58\x53\x4c\x3b\xc1\x0d\xbe\x4d\xfb\x65\xf0\x1c\x6e\xa8\xa9\xdd\xce\xc2\x3f\x82\xd5\x42\x24\x62\x05\x3c\x49\xb8\x98\x74\x13\x31\x8f\x0a\x28\x43\x68\x5b\x87\x98\x06\xe1\xee\x54\x77\x33\xd6\x90\xda\x73\xb6\xb0\x63\x69\x59\xb1\x3f\xb8\x0f\x59\xd9\xde\x15\x82\xcf\x3c\x1c\x00\x92\x95\xa2\xe8\x81\xa7\x98\xe7\xb0\x33\xb6\x41\x5c\x3b\x9c\xab\x59\x8a\x7f\x81\x98\x2a\x78\x47\x5c\x8a\x7a\x4e\x21\x90\x8d\xd8\x27\xed\xef\xa9\x43\x84\x37\xd5\x33\xe8\x0f\x29\x51\x39\x35\x2c\x88\xbe\x29\x76\x2d\x17\xc9\x86\x7b\x07\x09\xba\xf9\x71\x00\x48\xd0\xa2\x9e\xfe\xb7\xe8\xdc\xf6\x76\xeb\x4e\xcc\x55\xc4\x5e\xf5\x15\x9c\x05\x3d\x4d\x30\x87\x40\xc5\xae\x23\x1f\x27\x71\x09\xe8\x76\x3c\x65\x05\x39\x6a\xde\x0a\xba\x27\xcd\x27\xfb\x35\xf3\x0a\xb3\x3a\x16\xc9\xb9\xc8\x59\xe1\xf5\x41\x10\x26\x98\x01\x80\xc4\x45\x1c\xd5\xfb\x05\x11\x8e\xc5\x98\x5f\xa0\x9c\xf0\x18\x55\x32\xfa\x17\x71\x1e\xef\x04\xce\x87\xdc\x4e\x32\x10\xe0\x54\x2b\xbc\x9e\x74\x8e\x7e\xb6\xea\x30\x55\xc2\x4a\xca\x2e\x64\xb0\x39\x47\x62\xee\xb0\x37\xf2\x05\x5e\x07\xf8\x69\xa2\x5c\x00\xc4\xe5\x12\x47\xf7\x17\x78\x32\xe5\xad\x29\xb8\x63\x2e\x8d\xab\x58\x8c\x94\xd2\x9f\x72\x09\xe8\x93\x4c\x2a\xb1\x05\x57\xca\x76\x6b\x9b\x4b\xf8\xc2\xd9\x5b\xf9\x90\x7c\x9f\xa7\xcf\xea\xa3\x7b\x0a\x04\x31\x24\x96\x45\xa4\xf0\x5a\xc8\x2b\x91\x58\x00\x10\x29\x64\xfe\x5d\x63\x60\x5c\xce\x4f\x03\xa1\x6d\x17\xf7\xbd\xdc\xaf\x23\x98\xf7\x17\xc7\x15\xb9\x98\x7f\x82\x90\x80\xa9\x13\x5c\x6d\x2d\xc6\x67\x09\xff\xae\x74\x21\x21\xc4\xee\x99\xef\xa8\x27\x25\x75\x31\xe3\x98\x62\xe9\x62\x2f\x2b\x17\x23\x7b\x08\x80\xf0\x0f\xf9\x3a\xbb\xa6\xf1\xac\xb2\x5a\xe7\xd6\x82\x53\x72\x25\xcf\xda\xbc\x94\x66\x96\x4b\xfb\x7d\xe5\x42\x1c\x16\x79\x43\x79\xac\xe5\x10\xd6\x55\xf9\xb4\xfc\x06\x41\xa8\x72\xc9\xf4\xa3\x44\xab\xd2\xa2\x07\x19\xd3\x55\x1d\x5e\x03\x9c\x2a\x15\x1a\x00\xc1\x13\xe5\x07\xab\x57\xdd\x2b\x6b\x9b\xe6\x7e\xe3\x7e\x8b\x55\xf4\x6f\xcb\x6a\xf3\x6e\x46\x51\xdb\x66\xd3\x33\xcc\x89\x8e\xe7\x26\xdf\x66\x3c\x1a\x66\x4c\x2b\x3b\x8e\x07\x86\xb9\x19\x4d\xa4\x7f\xf4\x85\xd1\xc9\x74\x7f\x5d\x84\x97\x83\xed\x80\xce\x00\x1f\x01\x4a\x33\xc9\x1c\x54\xb3\x77\x70\xa9\x7a\x6c\xfd\xae\x81\xd9\xc2\xf4\xa6\x2b\x7d\x4b\x68\x5b\x5a\x9d\x7b\x3e\xa0\xf1\xed\xd4\xee\xd4\xa6\x7c\x94\x73\x67\xeb\xdc\x27\xd8\x7b\xf6\xb6\xf4\x3f\x49\x63\xac\xf1\xd1\xe3\x69\x08\xd3\x29\xaf\xd5\x6c\x37\xfd\x2f\x60\x11\x78\x42\x37\x4d\x75\xd5\x6f\x17\xf0\x55\x25\x75\x9f\x46\x17\x0b\x74\x4d\xbe\xc3\x6b\x69\xd3\x60\xad\x83\x43\xa8\x3b\xf0\x33\xfd\xcc\xc6\x2b\x48\x51\x6f\xd0\xdc\x41\x2c\xba\x6b\x51\xfa\x7c\xe2\xb0\xfd\x5e\xf4\x04\x9a\xb3\xe5\x9e\xd7\x09\xd6\x19\x23\x06\x9c\xe7\x3f\xd7\x1a\x8d\x67\xaa\x91\x4b\xc9\xca\x93\x75\xa8\xc5\xc5\x82\x69\x8d\xea\x05\xff\x51\xb7\xb5\x1c\x1f\x1d\x44\xd9\xe0\xf9\xc3\xee\x8d\xf3\x11\x1f\x06\xe0\x73\xe5\x98\x27\xbd\xa4\xf4\x85\xc4\x84\xae\xf0\xe8\x54\xea\x52\x5b\x8f\xf7\x44\x96\xc4\xc4\x76\x8a\xe1\xaf\xd4\x3e\xef\x3d\x4e\xf8\xd6\x84\x37\x6f\x20\xf9\xc1\xea\x95\xcf\xc9\x30\xf8\x6c\x1e\x9e\xb2\x13\x51\x45\x72\xa1\x55\xa1\x2d\x6d\xe7\x18\xee\xb8\xdb\x55\x99\xac\x09\x24\x54\xd6\x06\x4e\x2d\x2d\x37\x06\xc9\xbb\xc8\x2a\xf7\xca\x11\xae\xe6\xa9\x00\x90\xfa\x8a\xda\x7a\x9e\xe0\xab\x61\xfb\x4d\xf7\x09\x83\x70\x94\x32\x9e\xf8\xbb\xe3\x5f\xee\x7e\xb2\x01\x75\x8d\xc8\xa7\x16\x62\x2f\xb7\x55\xd0\x63\x08\xf7\x2b\x4f\x30\x4b\x29\x81\x59\x75\xec\x0d\xf4\x75\x31\xde\xbc\x7a\x36\xd6\xcb\x47\x38\x97\x5f\x08\x80\xe4\x2f\xd1\x81\xee\x6f\xd8\x65\xed\xe9\x26\x67\xbc\x0f\xa2\x57\x41\x26\xac\x40\xbd\xe2\xba\x91\x9a\xb1\x16\xc2\x0d\x4a\x0a\xa1\xb8\xf5\x30\x2d\x9b\x3c\xb9\xb2\x99\x21\xa5\x8d\xcb\xfc\xc4\x1e\xc3\x2c\x88\xbe\xc0\x3d\xc9\x59\x39\xed\x93\xe0\x96\x60\xd6\xff\xf7\x42\x5c\xd3\x79\x07\xb5\x01\x3b\xd5\x30\x13\xd3\x86\xf7\x97\x9d\xc5\x45\x11\x3d\xd9\xcb\x09\x6e\xe4\x50\xfc\x32\x52\x24\xb5\x05\xb6\x83\xc2\xa0\x2f\xac\x10\xd2\x5e\xb0\xdc\x32\x6b\x99\xab\x39\xeb\xa2\x5b\x38\xeb\xf9\xcc\x69\x17\xf9\x9f\x44\xe5\x00\x88\x8f\x4a\x36\x3b\x3c\x3b\x36\x53\xd4\x3a\x29\x72\x39\xcd\x43\x9a\x85\xde\x4e\xef\x65\x95\x62\x4f\x33\xa7\xe3\x78\x04\x7f\xd6\xd1\x96\x75\xa4\x05\x1c\x79\xf9\x10\xb5\x85\xd7\x98\xb1\x96\x51\x27\x68\x8c\x7a\xcb\xb6\x8b\xe8\xd3\xf6\xf0\x27\x48\xec\x00\x88\xbe\xcb\x32\x6d\x7e\x70\x27\x0e\x13\x3a\xd0\x11\xc3\xe5\x89\x37\x22\x19\x3c\x12\xe3\x1f\xf4\x3a\x3e\x0a\x5b\x81\x4b\x10\x08\x9b\xd7\x10\xfe\x16\xf6\x97\x1d\x25\xdf\x10\x9d\xc9\x70\xa7\xbb\x4a\x42\xa2\x86\x58\x0a\xa9\x7e\xda\x7a\x5e\xb4\xec\x36\x00\xa2\x3c\xf9\x9f\xe6\xbd\x2d\x44\x05\x5d\xad\x6a\xbd\xad\xd8\x26\x1c\x68\x27\x2a\x5e\xd2\x7e\x20\x3e\x2b\x27\xa1\xad\xe8\x43\xca\xdc\xa6\x24\xdc\x11\x25\x6b\xee\x08\xf1\x3f\xe5\xda\xf4\x02\x2a\x4b\xf9\x2a\x2a\x8d\x19\xaa\x4a\x98\xf6\x07\xd7\x43\x55\x09\x80\x10\xa3\x02\xc6\x8a\xc6\x65\x96\x6c\x25\xba\xa5\xc8\xdc\xcb\xff\xa3\xf5\x97\xe9\x21\xb5\xb0\xfd\x9c\x29\x18\xf9\x03\x79\xcd\x88\x6d\xb8\x8f\xf5\x36\x0c\x96\x76\x12\xcc\xfa\xc3\x73\xf4\x94\x74\xdd\x8d\xc8\xeb\x8c\x30\xed\xcd\x69\x07\x39\x8d\xd0\x02\x00\x04\x37\x34\xce\xfa\xbc\x7a\xe2\x40\x95\x9c\xd7\x94\xd7\xf7\x8b\xfb\x09\x36\xab\xb7\x87\xbc\x15\x1e\xd9\xfd\x15\xb1\x0c\xd1\xda\x55\x5f\x7f\x04\x7d\xcc\xd1\x5d\xb2\x1d\x4f\xb6\x6d\x49\xfb\x8f\x3c\xcf\xb2\x28\x72\x2d\x9d\x64\x42\x4e\xbb\xcd\x3e\xa7\xdf\x03\x98\x02\x1d\x74\x4c\x27\xaf\x1b\x99\x3f\x4e\xb6\xbd\x51\x3a\xd2\xc2\xcd\x68\x11\x0c\xe9\xc8\x5e\x6d\xe2\x01\x23\x22\xa8\x63\x4f\x9f\xb0\xbe\x15\x9d\xda\x53\x5a\x42\xc6\xbd\xec\x7c\x96\x76\x89\xf4\xd8\x5e\x1a\xb9\x9e\x3e\xc5\x42\x9e\xf6\x95\x6d\x33\x7a\x81\x4d\x82\x66\x2d\x53\xe7\x54\x37\x6e\xf1\x63\x59\x7a\xc3\xa3\x85\x4f\x39\x07\x9b\xef\xcf\x3f\x4c\xda\xd2\xfa\x74\x84\xdf\x71\xa5\x23\x7e\x68\x42\x7d\x18\x6a\x63\x3f\xbf\xa4\x1a\xc7\xe8\x59\x9e\x76\x85\xc4\xef\x84\x22\xaf\xd2\xd6\xda\xa6\x79\xa5\xb1\xd3\x4d\xc1\x4e\xae\x82\x29\xda\x4b\xd6\xc5\xd4\xde\x26\x81\xe6\x09\x4d\x0c\xc3\x88\x1c\x74\x29\xbc\x90\x6e\x61\x6c\x44\x54\xa2\xb7\xb2\x5c\xd0\xca\xa6\xb1\x6c\x1d\xee\xfc\xdc\xc9\xdc\x59\xa4\x96\x39\xb9\x7c\x17\x5a\x4a\x44\x9f\x30\x86\x55\xec\x61\x11\x77\xf1\x3a\x01\x90\x19\x44\x90\x65\x2d\x25\x10\xb6\x54\x13\x40\x9d\x01\xaf\x11\x7e\xa0\xa5\x77\xbc\xa7\x7d\xa4\x77\xa2\x76\xa3\xa3\x99\x93\xb1\xeb\x1a\x4d\xac\xd5\x84\x3d\xa5\xcb\x39\x7c\xf2\xcf\xb4\x27\x3c\x2e\xdd\x1e\xd1\x21\xd8\xc2\xae\xf5\xe0\x8a\x53\xf9\x25\x00\xc8\xe6\x8a\x6e\x9b\xd7\x90\x56\xc3\x3f\xa9\xab\xc8\x87\x10\x68\x61\x31\xe5\x5f\xd4\x9f\xb4\x3a\x1a\x13\x5b\x8d\xea\x63\xb8\x10\x9c\x1a\x27\x32\x4f\x90\x2e\x94\x66\xb0\xb7\x52\x2f\xa6\x39\xb8\x97\x98\x3e\x11\xa1\x82\x59\x1c\x8b\x07\x46\x74\x5e\x10\x03\x80\xf4\xab\x18\x67\xbc\x80\xbf\x8c\xe9\x51\xf6\x12\x03\x70\x03\xfc\xcd\x24\x03\xc1\x4c\xf9\x42\xc9\x26\x2d\x43\x32\x69\xd3\x28\x8f\x1a\x5c\x18\x2e\xf4\xd4\x12\x22\x2b\x91\xb9\x35\xf5\x39\xc7\xc4\x21\x85\xff\xc1\x0f\xe2\x17\x78\x54\x08\xdf\x89\x66\x03\x20\x2d\x94\x1c\x30\x84\x60\x5e\x92\x2f\x29\xc6\xe3\x18\xd4\x0e\x5e\x1a\xc1\x9f\x76\x85\xbc\x88\x34\x91\xc1\x40\xe4\x53\xfc\x59\xb1\xf5\x4e\xb4\x4a\xf6\x87\x62\x13\x63\x35\xf7\x6e\x6a\x1d\x3b\x87\xff\x35\x9c\xc5\x9b\x24\x4a\xf4\x28\x15\x4e\x96\x50\x01\x90\x40\xb2\x12\x9d\x12\x35\x83\x6d\x92\xb1\xd1\xaf\x38\x0a\xce\x61\xec\x15\x2e\x8d\x54\x83\xff\xc2\x53\x75\xf8\x90\x72\xf9\x9b\x6a\x7f\x53\x96\x0a\x9e\x16\x6d\xa3\xa7\x89\xd2\x52\xf6\x31\x7f\x8b\xd7\x84\x47\x73\x81\x34\xc5\x63\xae\x20\x49\xb6\xee\xff\x9f\x25\x3f\xa3\xb9\xd2\xfe\x52\x76\x47\xe2\x89\xb8\x2d\xcf\x61\xad\x45\xfd\x27\xb7\x10\x18\x58\xa4\xfc\x22\x9c\x8d\xff\x5b\x11\x5d\x33\x4a\xea\x52\xc8\x0b\x47\xa9\x14\xc5\xad\xe4\xef\x0c\xa6\xb2\x28\xec\x0a\x7b\xad\x72\xbb\x07\x9a\x1f\xa4\xfc\x06\x80\xe8\xa9\xf2\x9d\x6a\xa4\xf5\xb6\x69\xa6\x68\x52\x7b\x9e\x71\x15\xe3\x02\x62\x87\xd1\x0b\x77\x08\x5d\x6d\xd0\xb4\x7e\xc2\xb9\xea\x3f\x54\xb7\x11\xde\xe9\x1b\x0b\xe6\x53\xc6\xea\xd6\x27\x57\xd3\x73\xb4\x1f\xc3\x54\xac\x75\xda\x59\x1e\x58\x1e\x02\x8a\x02\x40\xd4\xac\xbe\xa9\x18\x6c\x79\xd9\x7b\x4c\x50\xd8\x06\xef\x59\x42\x4f\x6e\x7f\xd5\x0d\xc7\xce\x43\xae\xed\xfc\x02\xdb\x80\xe9\x76\xe8\xe7\x95\xe3\x97\xd9\xbe\xe7\x9f\x24\x3d\xb3\xc2\x92\x4e\xd3\x6a\xcd\xf2\xb0\x2a\xe6\x47\xa3\xcc\x43\xce\xbd\xa2\xf7\x07\x40\xf8\x01\x82\xe4\x5b\x5a\x92\x87\x53\xf9\x92\xd6\xa5\x83\x7b\x69\x96\xf6\xa4\x81\x40\xcc\x2e\xc4\x8f\x3e\x38\x6c\x26\xfa\x7d\x0f\x54\xf5\x08\xef\xd9\x65\xcf\x57\x92\x48\x0e\x56\xd2\x72\xea\x53\x9b\x6b\x58\x39\x73\xc4\xcc\xf0\xe8\xe3\x3a\x0c\x04\x00\x84\x07\xb4\xd1\x72\xd7\xe6\x0d\x0b\xae\xf3\xde\xb5\x4e\x9d\xef\x4f\x0b\x84\x0f\x8e\xa4\x61\xda\x11\x84\xa1\xa8\x96\x27\x68\x54\xff\xe7\xaa\x0d\x38\x4b\xef\xd2\x7c\x2c\xf1\x79\xb7\x7f\xd2\x6a\x2a\xd7\x91\x19\x46\x66\xa6\x5a\x5d\x3d\xce\x70\xe7\x18\x69\x00\x08\x99\xda\x4e\xa8\x9a\xf5\xbe\x49\x2f\x89\x66\x77\xc3\x28\xac\x5a\x4e\x1b\xbc\x0c\x7f\x8f\x9b\x87\x28\x6d\x5b\xc2\x2b\x41\xf3\xaa\xfb\xf9\x44\xdc\xd1\x82\x56\xc1\x26\x52\x7d\x52\x90\x28\x99\x16\x11\x52\x22\x7e\xc1\xca\x70\x6f\x91\xde\xe5\x59\x01\x50\xc0\x44\x16\x8d\x85\xc9\x84\xf5\x8a\x79\xac\x3c\x78\x2a\x73\x27\x3b\xa1\xe3\x0a\x7e\x2e\x27\x19\xd5\xdf\xe6\xc9\x85\x61\x75\xd5\x7e\xbc\x61\x42\x7f\xfe\x6b\x81\x13\xf9\xd1\xec\x4b\xc2\x65\x74\x66\x88\xb7\x58\xcc\x4e\x75\x2f\x97\x9a\xf9\x49\x00\x28\x82\x44\xd7\xd4\x07\xe9\xff\xc0\x4f\x88\x76\x32\x5e\x22\x62\x98\xce\x2c\x27\x94\x01\xb7\x94\x1d\x8a\x75\x6b\x55\x70\xf0\xf8\x43\xf3\xfa\xb9\xc7\x48\x03\xf9\x0a\x7e\x25\x75\xc9\x6c\xad\x70\x12\xe3\x79\xf0\x4b\xd1\x77\x0e\xc6\x3d\x57\x1a\x2d\x98\x08\x80\xfc\x8a\xb8\x45\x79\x93\x5a\x8a\x99\x22\x1c\x4b\x23\xe3\xfc\xe8\x7c\xfa\x7a\x82\x1b\xb6\x88\xe9\x4a\x8a\x87\x55\xb3\xcc\x14\x4e\x95\x83\x13\x4c\xbb\x9c\xb7\x8c\x7b\x9b\x89\x49\x7c\xce\x3f\xcf\x09\x0c\x5e\x2c\xfc\xc4\x1f\xef\x9e\x2e\x69\x10\x39\x01\x20\x0f\x97\xac\x51\xa0\x49\x3c\xd2\x0b\x7e\x27\xf9\x1a\xc5\x4a\x0b\xa6\xb6\xd2\xbc\x30\x6e\xb4\xb7\xf4\xfd\x2d\x73\x18\x2b\x98\xc6\xca\x05\x2c\x0e\x1b\x9f\x7b\x87\x83\xe5\x92\x13\xb1\x3c\x3b\xbf\x37\x98\x28\x78\x26\x7c\xe4\x5e\x2c\xe6\x4a\x66\x02\x20\xc3\xca\x66\xca\xb6\xe3\xbf\xb2\x5a\x79\xbe\x44\x09\x1b\x47\xb9\x48\x0e\xe7\x90\x50\xb7\x28\x6f\xb8\x5d\xcd\x51\xb4\x1b\xbc\x6b\x15\x9b\x19\xd7\x05\x31\xb9\xfe\xac\x6f\xc2\xfe\x59\x8f\xb8\x6d\xe2\x98\xe0\x44\xfe\x63\xc9\x65\x77\x98\x68\x44\x86\x04\x40\xba\x52\xbe\x56\xc2\xc7\xac\x91\x16\xb0\x5f\xe3\x44\xd2\x6d\xa4\xcb\x84\x76\x99\x27\x72\x0a\x09\x27\x13\x37\xf6\x53\x6c\xb2\xf7\xe5\x28\xda\x79\x39\x3d\xc7\x83\x99\x26\xff\x38\x2b\x85\x7d\x4e\x61\x0f\xfa\x9b\xd7\xad\x8c\x73\xa7\x0b\xad\xca\x4e\x00\x24\x27\x94\x07\x45\xb1\xc8\xef\x06\x4f\xe6\x2b\xf4\x0f\xfd\x02\xa2\x0b\x6e\xba\x3e\xa4\x43\x40\x68\xd2\xed\x6a\x98\x45\xda\xaa\x6b\x28\x4b\xa0\x26\x6a\x9f\x66\xcf\xa0\x5f\xd2\xf2\x67\x76\xb3\xe6\x43\x3f\x83\x46\xb9\x7d\x10\xc7\x5d\x21\x38\xac\x19\x06\x40\x12\xa1\x1e\x14\x14\x74\xdc\xed\xf6\x61\x64\xa2\x7c\xba\xa6\xe3\x35\x18\xbc\xe3\x5d\xfb\x74\xdc\x61\xfb\xc1\xfa\x71\xc4\x22\x9b\x66\x6e\x2a\xf9\x95\x35\x35\xab\x83\x76\xc0\x7c\x61\xa6\x07\x73\x97\x69\x6e\x10\x82\x73\xdf\xa0\x73\xb7\x09\xd2\x75\x24\x00\xc4\xfb\xa0\x58\xbe\xb5\x23\x78\xa0\x8e\xee\x40\xc2\xfb\x7e\xe0\xee\xa3\xb7\xf5\x2a\xe1\x0e\x9c\x7f\xf7\x87\xba\x2e\xc2\x8a\xae\xc6\xd2\xeb\x64\xa4\x63\x61\xd6\x74\x5a\xa1\xed\xcf\x84\x57\xcc\x79\x96\x3d\x41\x8d\x1c\xa3\x09\xe3\xbe\x88\xff\x4e\xbf\x1c\x00\xb1\x1a\x3a\xcb\xf7\x6c\xef\x1c\x39\x49\x0f\x40\x1c\x1d\x9e\x8d\xe3\xa3\x83\x06\x99\xf0\x74\xac\xa1\x7f\xa8\xae\x86\xe0\xd5\xbb\xbc\x74\x0d\xe9\x7a\xf7\x40\x96\x13\xf5\x58\x67\x5b\xc2\x4b\xc6\x6d\xdb\x95\x20\x2a\x27\xcc\xfc\xde\xfd\x2c\xbf\xdf\xb0\x12\x00\x71\xac\x36\x53\xec\x10\x1c\x6e\x3a\xc6\x3a\x20\x4c\x80\xf5\x13\x31\xc2\x4d\x70\x62\x87\x55\x94\x8d\x68\xab\xff\x26\x7a\x88\x86\xe6\x2e\x17\x2f\xc4\xfd\x95\x95\x24\x91\x90\x48\xf1\x1b\xa4\x7d\xb4\xd4\x80\xf5\xb2\x1b\xac\x62\x97\x8f\x8a\x1a\xde\x00\x00\xaa\x02\xd1\xa8\x68\x19\x9f\x07\x1b\x60\xfe\xe4\x7f\x83\x27\x11\x4e\x08\x86\x3b\xce\xb4\x7f\x12\x16\xa0\x8c\xf5\x14\xd1\x18\xac\x60\x6e\xa4\xe8\x2e\xc1\x96\x79\x5c\x7c\x95\xfc\x20\x1e\x27\x75\xa3\x93\x03\x1c\x32\x1a\x3b\xd1\xe5\xad\xfc\x27\x3f\x1e\x00\x95\xb3\xe8\xae\x70\x3d\x2f\x12\xde\xc5\x4c\xe5\x1d\xeb\xf8\x42\x08\xe5\xab\x50\xf0\xf6\x46\x41\x01\xe6\x5e\xdd\x25\x61\x10\xbe\xbf\x74\xb1\xc8\x9b\xc4\xcb\x6c\x14\xc7\x52\x2d\xf1\x21\x12\x09\xe3\x62\x00\x57\xfa\x81\x53\xe3\xf2\x56\xbe\x88\xff\x19\x00\xe5\x3e\x71\xb3\x60\x2c\xdb\x86\xde\x44\xef\xe3\xc0\xb1\x6b\x70\x36\x6e\x19\x7e\x7e\xdb\x3b\x5e\x09\xf1\x70\xed\x7c\x7e\x07\xc5\xa3\xa4\x57\xa0\xa7\x41\x19\x3c\xe1\x59\x66\x78\x9c\x5d\x5c\xc9\x7e\x1a\x50\x24\x79\xcf\xbb\xe5\xf2\x5b\x76\x5e\x78\x07\x00\xe5\x24\xc9\x7c\x1e\x89\x71\x81\x14\x49\xcb\x64\xde\x25\x9f\xc2\x22\xd8\x2e\xd4\x8e\xd6\x7b\x9c\x5c\xba\x57\xcd\x62\xae\x85\xf1\xb6\xf8\x00\xef\x29\xeb\x49\xfa\x31\x41\x07\xe7\x57\x5c\xa8\x68\x2a\x3f\x3f\x20\x50\xfc\x42\xb8\xc4\x35\x44\xfa\x4e\xfc\x15\x00\x45\xa5\xcc\x9b\xeb\x43\xcb\x64\xc6\x51\xbe\xd2\x2d\xac\x4a\x4c\x2e\xe3\x25\x1b\x07\x3b\xcb\xaa\xe5\x2c\xaf\x5e\xc3\xbe\xc0\x1b\x57\xf4\x0f\xb7\x95\xcf\x4f\x9f\xce\xfb\x25\xf8\x1d\xbb\x57\xf0\x48\xb4\xc9\xff\x87\xe8\x85\x44\xe4\xda\x20\x9d\x22\x9b\x0e\x80\x5c\x21\x77\xb0\xee\x93\x5b\xc4\xdd\xa4\xbf\x29\x9b\x24\x3e\xa8\x26\x5a\x82\xa4\xb7\x25\x8c\x7e\x56\x1a\x34\x6f\x0e\xd3\x28\xdd\x53\xb8\x95\xdd\x2c\x43\xcd\x09\xe7\xe6\xc8\xa7\xc6\x06\xf2\xdb\xe5\xb7\xfc\x0f\x0b\x17\x28\x16\xbb\xb2\xc5\xbf\x95\xd1\x00\xc8\x96\x2b\xed\x8c\x1d\x04\x8b\x76\x35\x71\x0c\x69\xb6\x96\x84\xd8\x48\x7e\xad\x0d\x6c\x5a\x42\x3d\x04\x3d\xaa\xfc\x87\xbe\x09\x5a\x5f\xd0\xcf\xdc\x01\x09\xd2\x8a\xd9\xb7\xa0\xac\x18\x0b\x2f\x06\x72\xf6\x57\x09\x16\x69\xb6\xb8\xaa\xc4\xe9\x9a\x09\x00\x48\x7f\xa8\xab\xe9\x6e\xb8\x51\xc7\x5c\xbc\x88\x40\xb6\x13\x3b\x0a\x49\xf3\x6c\xac\x46\x3c\x25\xcb\xca\xaf\x78\x46\x2b\xb3\xb0\xf2\xf7\x32\xa4\x66\x7c\xea\x28\xeb\x9c\xa9\x38\xc6\x8b\x5b\x6e\x9c\xe8\x9f\xc5\xff\x47\x6f\x76\xd5\x8a\xd6\x6a\x37\x00\x20\x35\x6b\xce\xd0\x08\xd8\x6b\xbd\xf9\xb8\x9b\xf8\x8d\x3d\x1e\xed\xab\x89\x4b\xbb\x8e\x37\x3c\x21\x0f\x75\xf2\x2b\xd4\xd4\x0d\x0e\x8f\x7c\x0a\xfd\x9d\x6d\x59\x2a\x8e\xd5\x6c\xf5\x8e\x7e\xcb\xb9\x6f\x6e\xf7\x8f\xe3\x0f\x18\xab\x5d\xed\x22\x8c\xee\x1e\x00\xd2\x0a\x88\x46\xfd\x84\xcd\x1e\xd4\xe2\x18\x78\xbf\x01\xef\xf6\x02\xa2\x67\x9f\xa1\xa1\x8f\x3c\xa1\xe7\x4d\x45\x39\x35\xa8\x3b\x27\xbf\x84\x4e\xed\x94\xa4\xd6\x32\x6f\xd9\xad\xd1\xaf\x39\x2c\x2b\xda\x3f\x83\x3f\xdb\x74\xd1\x75\xab\xc8\x49\x7f\x1b\x00\xc9\x1b\xe8\x3e\xb9\x48\xc5\x6f\x0e\x42\x2f\x51\x15\xc2\x3e\xb5\xd6\xaa\x52\xe1\xc7\x6a\x31\xaa\x54\xc4\xc6\xd2\x93\xaa\x62\xf4\xa5\x6c\x8b\x0a\x83\x0f\x9b\x5d\xa7\xea\x24\xed\x0e\xaf\x53\xdd\xa3\xf5\x78\xbb\xa9\xcb\x59\x1b\x9d\x03\xd4\x8f\x79\xaf\x01\xd0\xdc\x10\xfd\x20\xed\x52\xfa\xc3\xf6\xa1\xfd\x94\x9e\xf0\x36\xd8\x35\x65\x74\xc7\xe7\x9a\xe7\xca\x62\xd4\xba\xd2\x36\x25\x0b\x3b\x98\x1d\xa7\x5c\x49\xd8\x36\xdb\x49\xf9\x86\x32\x25\x3c\x50\xd5\x46\x5f\xe9\xed\xa4\xba\xc3\x96\x3a\x47\xab\xbb\xf8\x44\x00\x34\x23\xe2\x48\x52\xa8\xfc\x10\x5c\x83\xd2\xc9\x1f\x75\x3c\x87\x95\x2b\x7c\x51\xb5\x35\x64\x45\x0d\xe6\x72\xc9\x7d\x45\x2f\xde\x91\x75\x58\xf1\x84\x24\x4c\x5c\xaf\x2c\xa5\x0e\x87\xbd\x53\x9e\x62\xbc\xf3\xfa\xac\x22\x70\x94\xce\x29\xea\x24\xc1\x74\x00\x34\x35\x62\x33\xe1\xa2\x34\x05\x9d\x87\xcc\x94\xf6\x62\x53\x5b\x5c\x64\xe3\xf1\x89\xd5\x95\x32\x1a\x11\x55\xfc\x54\xf6\x80\x7c\x30\xf3\xb5\x1c\x49\x2b\x49\x04\xf2\x57\x8c\xef\x61\x06\xc5\x28\xfb\xb2\xd7\x43\x25\x99\x77\xd7\xb9\x59\x85\x16\xde\x06\x40\x3d\x2a\xd9\x81\xa7\x88\xde\x10\xa7\x76\x7c\x10\x93\x48\x67\x9a\x81\xf8\x6f\x8a\x66\x5e\x8b\x44\x41\xab\x2d\x9e\x24\x0d\x67\x94\x64\xa6\x4a\xcf\xb2\x5a\x67\xb1\x65\x3a\x4e\x5f\x58\x96\x9c\xc0\xfb\xe6\x75\x45\x81\x16\x4a\x9d\x21\xa5\x4e\x7c\x1d\x00\xd5\x6d\x59\x00\xf6\x91\x60\x07\x9d\xd1\xbe\x47\x58\xcc\x38\xd6\xf8\x41\xf8\x84\xe5\x59\x85\x17\x2d\x63\x0b\x8a\x66\x89\x85\x9c\x6f\x19\x2a\x49\x39\xaf\x6f\xe6\x7d\x69\xac\xa0\x2a\xf4\x8d\x2c\x53\x94\xe2\x75\x5a\x8e\x95\x84\x3b\x1f\x51\x2c\x97\xde\x03\x40\xe5\x2f\x37\x60\xbc\xb9\xe7\x85\xd3\xe0\xae\x3c\x91\xf0\x5e\x43\x31\x1f\x26\x72\x54\x7c\x10\x14\x8a\xe7\x15\x3c\x15\x36\x4b\xc2\xd2\xe9\x22\x9c\xd4\x69\xa6\x9b\xd8\x28\xfd\x18\xca\x94\x1c\x90\x3b\x79\x8d\xc8\x3c\xe5\x3f\x9c\x3f\xcb\x1d\x8a\x8d\x00\x28\x83\x95\x38\x54\x01\x3b\x56\x4d\x6f\xa5\x70\xbc\xd5\xa4\xba\x8f\x5c\x7f\x75\x53\xf9\x61\x5e\x9a\x1a\x95\x7f\x83\xaf\x50\x73\xe7\x2c\x15\x6c\x54\x1b\x13\x90\x22\x3f\xf5\xc2\x50\x5f\xb1\x58\x7d\xd8\x4b\x26\x9d\xac\xde\x34\xc1\x57\xb6\x4b\x3d\x0f\x00\x05\x4b\xf5\x1f\xe2\x0d\x33\xc4\x92\x07\xf3\x60\x55\x9b\x7b\x6b\xb7\xb3\x95\xa6\xc7\x65\x8b\x39\xfb\x4d\x79\x79\xbf\x78\x53\x8d\x7d\x69\xd7\xf8\x5a\xc3\xb3\xf8\x5b\x42\x17\x43\x4c\xc8\x2a\xd1\x42\x7d\xb5\xd7\x5c\x49\x8b\x2e\x6a\x42\x8c\x2c\x02\xda\x0c\x80\xfc\xab\xa6\x0e\x11\xc2\xd0\x38\x56\xb6\x70\x98\x8b\xec\xa7\x6b\x63\x59\xd7\x6c\xf7\xca\x12\x39\x5e\xd6\xd7\x79\x1b\xb9\x74\xcb\xeb\xb4\x21\xde\x6b\xf3\xd3\xf8\x2d\x02\xbd\xe9\x68\x88\x43\x94\x68\x64\x79\x15\x88\xbf\xeb\x8f\x4d\x48\x90\x5e\xd7\x1e\x06\x40\xbe\x5d\xf3\xa4\x43\xce\x18\xdf\x43\x6e\xfe\xc2\x9c\xd6\xcd\xa8\x39\xc5\x2a\xe9\x6a\x9c\xfb\x0f\x5b\xd9\x19\x9e\x07\x71\x2e\xd9\xef\xa4\x29\x78\x1d\x36\x63\xfc\x6a\xfe\x2f\xab\x7b\x48\x8f\x70\x87\xb9\xc6\xab\x41\xdc\x65\x9c\x35\x01\x26\xe5\xe9\xfe\x7f\x43\x0b\xd4\x01\xab\x34\xff\xd9\xfc\xb2\x4e\x6a\x0e\x6d\x1d\xa9\xf0\x37\x19\xda\x5b\x0b\x53\x8d\xb7\x90\x85\x19\x47\x8c\xb3\x31\xd4\xc4\x73\x06\x0b\xfe\x44\xd4\x38\xfd\x63\x32\xd5\xff\x98\xbe\x80\xde\xe2\x2e\xd5\xad\x63\x4b\x9c\xba\x74\x85\xfc\x45\x00\xe8\xa6\x8a\xb7\xb6\x9c\x35\xad\x69\x8d\xae\xf3\x34\x4d\x86\xef\x2a\x3f\x61\x54\x22\x1a\x0a\x9e\x1a\x5e\xa3\x27\x67\xc8\x0c\x48\xdc\xb8\xc4\x5e\xfd\x45\x62\x62\xe4\x0d\x7d\x01\x65\xc4\x7f\xb3\x6e\x37\x63\xae\x3b\xa4\xcb\xe1\x84\x3a\x6d\xd2\xbe\xe4\x7f\x07\x40\x7b\x56\x7c\xb8\xa5\xd8\x68\x85\x77\xd6\x2e\x36\x7c\x41\x8c\x29\x27\x1b\xb8\x28\x59\x41\xb7\xfe\x27\x76\x42\x46\x9c\xde\x88\xbf\x94\x58\xa7\x77\x27\x9d\x8b\x5c\xa9\xeb\xa7\x8d\xf5\x5f\xa8\x8b\x64\xb2\xdd\xcd\xda\x23\xdc\x09\x4e\x17\xb5\x46\x41\x1f\x00\x5a\xb9\xc4\xbd\x19\xa1\x0f\x45\x1d\xac\xf9\x43\x77\x12\x73\xbb\xac\x5b\x27\xc5\xfd\x9b\x7f\x4e\x17\x4b\xcc\x4d\x57\x6a\x6f\x91\xb7\xcd\x3a\xa6\x35\xd1\x9a\x23\x73\xb5\x73\x98\xb1\xfe\x54\xe8\x3d\x67\x86\xfb\x10\x74\x88\x3f\x7b\x8c\x07\xb4\x5e\x34\x13\x00\xe8\x90\x74\x46\xd3\x14\xed\x24\x42\x7c\xf5\x7a\x68\x17\x69\xe2\xdc\x7d\x10\x8f\x7c\x27\xdf\x15\xaa\xa4\x9e\x9a\x73\x05\x8a\xa2\xdf\x9f\x95\xa9\xf9\xc6\x9a\x1e\x71\x53\x73\x8e\x23\xf7\x2f\xd3\xec\xe2\x4f\x72\x5f\xab\xd9\x2e\x5c\x38\xa6\x45\x73\x48\xe2\x02\x80\xe6\x1f\x19\xb7\xe1\x8d\xfa\x29\x6d\xc2\xbc\xbd\xea\xb5\x74\xa8\xf4\x6f\xb5\x86\xf1\x25\xaf\x42\xad\x64\x69\xe7\xc4\xa8\xd5\x9c\xe4\x99\x9b\xd5\x22\xee\xaf\x08\x81\x9a\xc5\xff\xdb\x3f\x54\xad\x15\x39\xbb\x1f\x52\x6f\x94\xf8\x8c\x19\x51\x3f\x91\x3e\x07\x40\x13\x23\x3f\x56\x7f\x55\xf1\x82\xf7\xbd\x8a\xab\x78\xc5\xbf\x53\xb2\x5b\xf1\x51\xb0\x3f\x77\x86\x32\x55\xb8\x25\x2d\x40\x29\x14\x1d\x4c\xb8\xae\x5c\x2e\x7e\x10\x7e\x49\x79\x47\xea\x3d\xfd\x82\x6a\x92\x8c\xe2\xbe\x57\xd5\x20\xef\x1f\xf3\x55\xb5\x57\x21\x01\x40\x1d\xa1\x94\xd4\x3e\x97\xd9\x14\xe9\x95\x7e\xb2\x65\x0a\x61\xf1\xa8\xec\xba\x62\x7b\x4e\x99\x3c\x56\x39\x29\x95\x29\x1f\x55\x72\x13\x8a\xe5\xff\x2a\x6f\x85\x63\x14\x14\x55\xf9\xf4\x3e\xc5\x09\xd5\x0e\xf7\xed\xca\x52\xd5\xab\xb1\xa9\xca\x1b\xaa\x0b\x00\xa8\xc8\xaa\xeb\x35\x47\x25\xf3\xf5\xdf\xca\xbf\x48\x1e\xea\x0f\x14\x8d\x48\xd3\xf4\x9c\x6c\xb9\xb4\x5f\x1f\x9d\xf2\x5c\x06\x74\x77\xe3\x9f\xcb\x1c\xba\x9e\xf0\x4c\x79\xa4\x2e\x6b\xba\x4a\xfe\xa7\xf6\x80\xfb\x29\x85\x12\xfa\x6f\x2c\x53\x99\xa2\x79\x03\x80\xf2\xa1\xc6\xb9\xa6\x54\x7c\xd5\x32\xbe\x1c\x92\x44\x98\xbb\x8b\xa2\x25\x56\xb3\x4b\x76\xa8\xe4\x8d\x49\x96\xb2\x42\x8a\x34\x3e\x8d\xdf\x23\xfd\x61\xac\x08\xf7\x97\xad\x30\xf4\x4d\x67\xc8\x61\xfa\xe5\xee\x27\x15\xc1\x3a\xca\x58\xbe\xe2\x29\x74\x0f\x00\xe5\x12\x8d\xa4\xfa\x95\x38\xc1\x2e\x2b\x4f\x10\xeb\x6c\x0f\x0a\x6f\x88\x3f\xd8\x62\xb3\x9e\x4b\x1a\xad\xf8\x14\x48\x72\xd4\xd2\x19\xbf\x52\x4a\x33\x6f\x0c\xf7\x95\x85\x9a\xd6\x4d\x17\xca\xee\x1a\x5b\xdc\x6f\xcb\xb7\xe8\x37\x8d\x1d\x51\x40\xda\x2d\x00\x28\x4b\x34\xef\x4b\xb7\xf5\x9d\x6c\x51\x17\x04\xf7\x56\xb5\xe5\x65\xbe\xe9\x7e\xd8\xe1\x92\x32\xb1\x0b\x42\xfe\x8c\xdf\xdd\xe9\x83\x4d\x89\xf0\xb2\x0f\x11\x96\x06\x9c\xb4\x4d\xa2\xb4\x78\xf6\x5a\x90\x0c\xfc\x44\xa2\xe9\x14\xc7\x08\x80\xb1\x41\x00\x01\xa0\x7f\x21\x31\x97\x76\xf6\x8e\xb6\x0e\xe5\xbf\xed\xc9\x68\x4f\xce\xdc\xdb\xf5\x0c\x71\x23\xf9\x4e\xe7\x02\xf4\x68\xfc\x80\xa3\x02\xb7\x24\xfc\x87\xed\x3e\xf1\x51\xc0\x41\x2b\x81\x8a\xf5\xec\x35\xff\xc5\x4c\x9c\xa8\x32\x35\x72\x5d\x00\x30\x7c\x12\x1c\x04\x40\xbf\x50\x22\x2d\x45\xf5\x50\xe1\x77\xf3\xb7\x76\x87\x21\x9a\x33\xe5\x9d\x4f\x51\xd7\x93\x57\x3b\xb6\x61\xe9\xf1\x14\x3b\x8f\x50\x1a\x7e\xcf\x16\x44\x86\x07\x6c\xb0\xec\xa6\xad\xf6\x1c\x34\xe7\xb2\xd2\x27\x0e\x18\x2f\x73\xcf\x03\x60\x30\x09\xb3\x01\xd0\x97\x4a\xb6\x95\x74\x77\x15\xa2\xba\xf2\x27\x75\x7a\x62\x0e\x64\xbc\xb6\x7f\xc1\xbd\x4b\x4e\xb0\x3d\x23\x56\xc5\x8f\xb3\x9e\x26\xdf\x09\xef\xb7\x0c\xd1\x16\x07\x68\xcd\x2d\xcc\x5e\x4f\x87\xc9\x99\xb3\x7c\xe2\x41\xc3\x51\xfe\x1f\x00\xe8\x17\x88\xd6\x01\xa0\x93\x4a\x57\x15\xbf\xb2\x7f\xc4\x6f\xcf\x6b\xb6\x8f\x23\x9a\x33\x8a\x6d\x93\xc8\x8c\xa4\x51\xab\x3f\x55\x1c\xe7\xb0\x84\xd2\x37\x87\xe7\x9b\xa7\xb0\xa6\x05\xd4\x1b\xdf\x71\xe6\x7b\x3a\x0c\x7f\xf2\x9b\x27\xbe\xd0\xaf\x11\x7e\x03\x40\xb7\x4a\x82\x05\x40\xbb\x54\xf6\xb4\x78\x8c\x2d\x90\xf2\x39\xb7\xdb\x1a\x48\xd3\xa7\x2f\xb0\x24\x30\xfc\x92\xdc\xcc\x1d\xcc\xb3\x71\x01\x26\x1d\x7b\x79\xd8\x2b\x63\x0f\x77\x49\x40\xa8\xa1\x87\xbf\xd7\xd3\xa6\x77\x88\xdc\x26\xf9\xea\x06\x25\x39\x00\x68\x0f\xc8\x42\x00\x80\x6e\x28\xa2\x0b\x0f\x9a\xa3\x38\xbf\x73\x46\x4c\x38\x9e\xdf\x9c\x07\xc6\x75\xfc\xe4\xd9\x78\xe3\x44\x01\x32\xd6\x6a\x40\x0b\x57\x86\x19\xf5\xcb\xc4\xce\xfe\x6f\x74\xb7\x24\x22\xcf\x3e\xed\x4f\x99\xf3\x24\xbc\x36\x56\x4e\x02\x00\x52\x2a\x04\x00\x68\xfe\x50\x6e\x2c\x38\x6a\x38\x2c\xad\xc8\xfe\xd3\x10\x2a\xbd\x3d\x27\x4b\x6f\x95\x91\x12\xdf\xe8\x7e\xc9\x41\x6c\x96\x4e\x22\x5f\x17\x56\xa6\x7d\xa1\x20\xfb\x9f\xd4\xd6\x2a\x23\x3c\x07\xa1\x0d\xca\xdb\x93\x16\x40\x9e\x2a\x14\x00\x9a\x7e\x95\x1e\x00\xf5\x67\xd5\xc3\x82\xc9\xba\x4f\xd0\x9c\x6c\x67\x5d\x1b\xd4\x94\x06\x69\xaf\x43\x1d\x89\xcd\x5a\x14\x44\x8b\xb9\x01\xbd\x83\xa4\x61\xce\x90\x0e\xea\xf1\x5f\x03\x85\x40\x3d\x9e\x03\x9a\xd5\x10\x6d\xd2\x5e\x4d\x1a\x34\x19\xf8\xaa\x6f\x6b\xf0\x00\xa8\x71\xea\xc7\xf9\x64\x5d\x90\xfe\x72\xd6\xb0\xb6\x5b\x7f\x30\x2d\x51\x1b\xa4\x1f\x48\x9c\x0c\xad\xd1\x93\x63\x56\x41\xb9\xfa\x9c\xd0\xb7\x9a\x87\x7a\x67\xff\x65\x1a\xbb\x6e\x8b\xe7\x72\x4d\xb4\x2e\x74\xd2\x6d\xf5\x49\x6d\x03\x48\x57\xeb\xa0\x34\x00\xd4\x91\x9a\xbc\xbc\x9b\x5a\xac\xe9\x49\x56\x16\x74\xcf\xb4\x39\xf5\x0b\xc4\x35\x61\x67\xbd\xd5\xfc\x30\x39\xc7\x74\x69\xcc\xc6\xa5\xa1\x6f\x35\x45\xc6\x78\xff\xed\x1a\x27\x83\xd9\xf3\x94\x7a\x89\x7e\x91\x8b\xaf\xba\x52\xc7\x06\x42\xb5\x0f\xf4\x05\x00\xd5\x69\xcd\x9a\xdc\xf7\xc3\x97\x5b\xee\x64\xac\x1a\x9a\xd8\xd6\x9b\x7c\x7d\xa0\xa0\x03\x99\x80\xed\xeb\x46\x35\x47\xf6\xf5\x9c\xc3\xf6\x04\x59\xbb\x5e\x11\x27\xfa\x7c\x70\xbc\xa6\x1c\x75\xdf\x63\x3b\xce\xb8\x3f\xbe\xdb\xb2\x9b\xf3\x1d\x00\xd3\x7e\xc1\x5d\x00\x0c\xfb\x25\x37\x73\xcf\x0d\x6d\x68\x7d\x91\xa1\x19\xf8\xd6\x2e\x49\xde\xde\x5f\x89\x9c\x91\x50\xd6\xbb\x09\xfd\x24\x52\xdb\xfd\x1b\xf7\x26\xc8\xd0\x35\x9b\x94\xee\xf3\xcd\x51\x46\xfd\xc3\xfd\xa0\x2d\x83\x39\x3c\x7e\x93\x25\x97\xcb\x00\xc0\x04\x17\xfe\x9f\x6d\x9a\xe4\x8f\xdc\x45\x83\xba\xf6\xf0\x8c\x86\xfe\xbf\x11\x8e\x64\x5d\x5f\x0d\xda\x2d\x21\xa2\xe7\x38\x76\x59\x24\xa9\x3b\x96\x00\x05\x09\x3b\x99\xe4\x25\x3e\x9f\xed\x43\xb4\x7f\xdd\x4f\x5b\x17\xb1\x7a\xc6\x9f\x32\xef\xe2\x85\x03\x60\xfc\x5b\xa8\x00\xc0\x30\x59\xf2\x2e\x37\xb8\x3f\x03\xb5\x33\xfd\x66\xef\x29\xcc\xa5\x64\xbf\x1e\x04\xee\x47\xfc\xa9\xae\xaf\x44\x74\x64\x64\xa7\x92\xfc\x23\xa8\xda\xfe\x84\x76\xd6\xe7\x85\x2d\x85\x79\xd6\xfd\x82\x85\xc4\x79\x3c\xfe\x3f\xd3\x22\xfe\x6f\x00\x0c\x5f\x44\xb7\x01\xd0\xe7\x4a\xaf\xe7\x28\x7b\xc7\xe0\x15\xe9\x45\xdd\x47\x88\xd8\x24\x7d\x97\x94\x5c\x17\x5f\xd7\x99\x4c\x25\x45\x9c\xb2\x5f\xa3\xaf\x0f\x9a\x62\xeb\x60\x05\xfb\x9c\xb3\x9c\xe6\xec\x72\xbf\x6f\x0e\xe5\xcb\x9c\x13\x8c\x72\x51\x04\x00\xfa\x7f\x25\x7a\x00\x74\x18\xf9\xd4\xec\x4b\xdd\x33\x28\xbd\x73\x16\x77\xde\xa5\xc5\xcf\xfe\xd7\xb1\x9c\x7e\x3e\xee\x96\x5d\xcc\xec\x8c\x60\xdb\xb2\xd9\xe2\xc0\x6b\x96\xbb\x5c\x93\xcf\x4e\x33\x95\xbf\xc3\xfd\x9d\xf1\x89\xc8\xc7\x99\x60\xc0\x4a\x1a\x00\xd0\x3b\xcb\xd2\x01\xd0\xf6\x29\x2a\xb3\x16\x3b\xf2\x38\x05\x69\xe7\xed\x89\x5c\xfa\x6c\xb6\x2d\x82\x37\x1a\x87\xb3\x06\xf1\xef\x45\x04\x58\x5c\x84\x79\x81\xab\x4c\x0f\x44\x7b\x7c\xb6\x1a\x97\x49\x0a\xa6\x04\x1b\xe6\x4a\x1f\x3b\x5f\xd4\xbd\x94\xb7\x03\xa0\x3d\xa8\x60\x00\x00\x71\x94\x47\xb2\x9c\xad\xf7\x24\xe1\x69\xa5\x96\x97\x92\xf3\x89\xbf\x2d\x4e\x52\x51\x5c\xa0\x79\x9a\x6c\x66\xf8\x6b\x53\x88\xec\x4b\x60\x97\x31\x42\x7e\xd5\x67\xa7\xc1\x5f\xb1\x66\x4a\x89\xee\x8d\x52\x3d\x21\x4c\x7b\x58\x15\x01\x00\x74\x54\x85\x00\x40\xb3\x42\x75\x21\x73\x85\xf9\x3f\xf5\x96\xd4\xc3\x66\x4f\xf5\x93\x44\xa1\x29\x5b\xe3\x19\xbb\xd6\x88\xd6\x94\x85\xaf\x33\x18\x35\xc6\x40\xa2\x7e\x8b\xe6\xa0\xcf\x2a\xdd\x6d\xcd\xfd\x29\x48\xed\x6d\xcd\xbd\x09\x38\xe8\xae\x66\x35\x00\xd0\x24\x4d\x20\x00\x1a\x6f\xf5\xae\x4c\x2f\x73\x88\x2e\x32\x15\x67\x2a\xd4\x45\x25\x26\x1b\x45\xba\xe0\x58\xb1\x61\xb9\xce\x3f\xdc\xa8\x3f\xaf\x9b\x1e\x08\xd3\xbb\xe8\x5c\x7c\x96\xeb\xca\xb5\x37\xa7\xb0\xb5\xed\x5a\xe1\x04\x2b\xc4\x84\x6e\x00\xa0\xd9\xa0\x79\x0b\x80\xfa\xb2\x26\x3c\xa3\xd7\xd4\x61\xf4\x4a\x9d\x6a\xd4\x1b\x3e\x26\x3a\x1b\x0e\x19\x8e\xc6\xa2\xf5\x2f\x0c\x7d\xe1\x1c\xfd\x34\x03\x26\xb0\x43\x87\x31\x78\xf9\xec\xd3\x6e\xd1\xcf\x9f\x32\x1f\x3a\xaf\x7b\x3c\xe1\xbc\xe6\x1f\xed\x2b\x00\x34\x79\xd0\x5a\x00\xd4\x2a\x8d\x24\xbd\x7d\xa1\x2f\x6c\x76\x72\xd1\x7c\x97\xb6\xbb\x09\x9b\x47\x40\xc7\xd2\x28\xdb\xd0\x34\xd4\x50\x48\xe4\xc0\x44\xec\xb5\xe9\x8b\x7a\x2f\x13\xeb\x3d\x17\x75\x8b\xa8\xee\xae\x69\x8e\xa7\xcc\x99\x63\x27\xda\x98\xdc\x12\x00\xcc\xbf\x84\x13\x01\x30\xb2\x24\xdf\xd3\xe7\xcc\xff\xda\x36\x27\x39\x6a\x14\xb4\xef\x4d\x18\x1e\x76\x43\x36\x47\xa9\x06\x93\x30\xfe\x21\x11\xfd\x99\xf8\xa8\xe9\x2b\x7b\x7d\x48\x7c\xcf\x2d\x5d\x17\xa8\xbf\x5d\x2b\x1d\xcd\xcc\xbb\x63\xa3\xad\xaf\xb9\x6b\x01\x30\x0f\x08\x67\x02\x60\x9c\x2e\xb9\x92\x3e\x7e\xf4\x6a\x3b\x3d\xe9\xfb\xf0\x27\xc4\x89\x04\xe1\xd0\x34\x74\x76\x14\x65\xa0\x1c\x7b\x21\xc4\xaf\x0f\x43\xd8\x34\x7d\x45\x4f\x1d\xf9\x8a\xe7\xbe\xae\x19\xf4\xd9\xae\x1d\xf6\x3d\xac\xb3\x63\x8b\xad\x18\x5e\x0b\x00\xe6\x20\xe1\x20\x00\x86\xdd\x92\x9f\x73\x2e\x0f\xe3\x51\x6f\x92\x76\x0d\x1e\xc3\x7c\x48\x88\x1f\x08\xc5\xbb\x47\x25\xf6\x89\x89\x82\xe0\x8f\x3d\x5b\x29\xde\xd3\x07\xbb\x8e\xd2\xde\x78\xfe\xe9\xd8\xc2\xfc\xe2\x2a\xb0\x49\xb9\x53\xc7\xf2\x2d\x05\x82\x30\x00\x4c\x11\xa2\x97\x00\xe8\x9f\x4a\x1f\xcc\x99\x3d\x58\x8c\xc7\x27\x25\xf6\x1f\x27\x36\xc4\xaf\xed\x2b\x25\x97\x44\x9e\xe9\xd9\x41\x45\x07\xaf\xef\x76\xa3\xaf\x9b\xce\xe8\xcc\x60\xc5\x79\x1e\xb0\x97\x72\xce\xba\x5a\xad\xb3\xf8\x3d\x63\xd7\x9a\xbd\x45\xd9\x00\x18\x43\x24\x8e\xff\x93\x29\x0f\x48\xfb\xa3\xbf\x8a\x02\x9f\xbd\xae\xf7\x21\xf5\x53\x7c\x62\x8f\x80\xbe\x20\x92\xda\xf5\x93\x49\x0a\xa6\x76\xb2\xd8\xf0\xe9\x15\xf6\xdd\x5c\xb1\xe7\x6e\xeb\x63\xfe\x26\xd7\xa5\xe6\xd7\x22\xdf\xb1\x4f\x8d\x1f\x25\xed\x00\x18\x62\x64\x99\x00\xe8\x66\x2a\x60\xa9\xf3\x7b\x34\xec\x7d\x89\x3f\xbb\xb3\x39\x9f\xe2\x6e\x75\x7e\xe0\xcd\x8a\x4c\x70\x8c\xf2\xd5\xc1\xe5\xf6\xd9\x82\xf7\xd3\xab\xac\xeb\x44\x2a\xcf\x9b\x96\xa9\x12\x4f\xd7\xb7\xa6\x62\xe9\xb1\x71\x24\x03\x53\x5e\x05\x80\xee\x9a\x82\x00\x80\x76\xb2\xf2\x48\x2a\xba\x2b\x42\x5c\x9e\xb8\xcb\xf1\x41\x32\x26\x6e\xbe\xfd\x4f\xc9\x81\xc8\x09\x36\x9b\xd4\x14\x9c\x61\x2d\x92\x51\xa6\xb7\x9a\xdf\xca\x61\xd3\x9c\x4c\x36\x45\x86\x5b\xae\xe1\x99\x32\x6e\xdc\x43\xfd\x1c\xe5\x2b\x00\xb4\x97\x55\xd9\x00\x40\x19\xaa\x63\xa9\xb5\x8e\x70\x15\x94\x48\xb7\x8f\x51\x9d\x88\xcb\xb2\xfe\xa3\x76\x89\xd8\x6d\x39\xa1\x86\x07\x3b\x99\xfb\xd5\x3b\xa7\x67\x99\x58\x1a\x67\xcf\x9f\xc6\x3c\x4d\xae\x1b\x41\x7f\x52\x83\x18\x9f\xae\xab\xd4\x54\x00\xa0\x9d\xa6\xbe\x0b\x80\x66\xa3\x7a\x30\xe5\xbc\xbd\x18\xba\x92\x18\x64\x8b\x81\x9e\xc4\x8d\xb7\x06\x40\xef\x22\xfa\xcc\xdf\xb5\xae\x41\x2f\x4d\x97\xb5\x33\xa7\x27\x19\x0f\x6a\xd3\xa7\x39\x19\x96\x6a\x43\xdc\x54\xfa\x02\xe8\xd1\x78\x9c\xf6\x3a\x44\x07\x00\xda\xa1\x59\x09\x80\x86\xaf\x7e\x9b\xd2\x6e\x13\xe9\x57\xce\xba\x69\x45\xeb\x3b\x63\x1f\x59\x60\x7a\x4e\x84\xda\x9c\xa1\x27\x04\x3d\x31\x79\xea\xdb\xa6\x67\x19\xdd\xf4\xb1\xd3\x7c\xf5\xbf\x75\x7f\xb9\xad\xd2\x6d\xd4\x95\x8c\x5f\xa0\x6d\xd1\x4a\x00\x80\xca\x20\x0a\x00\x9a\x19\x1a\x76\xef\x02\x64\x76\x7d\x82\xd9\x07\x75\xba\xa9\x44\x59\x88\xe1\xc3\x9a\xb9\x83\x38\x22\x7c\x05\x71\x06\xc1\x86\xf4\x6f\x3d\x48\xba\x85\xd9\x50\xe9\x4a\x65\x11\x38\x99\xb5\x0c\x15\x65\x28\x7a\x0a\xfb\x28\xe3\x8a\xe7\x3f\x7c\x11\x37\x0e\x00\xf1\x45\x61\x64\x8f\xae\xa3\xbd\x69\x89\x29\x1d\x39\x0d\x26\x52\xb0\x51\x2f\xe0\x95\x9c\x7b\xd8\xf1\x88\x3a\x82\x12\xdf\x8a\x16\xb7\x26\x12\x2f\xe2\x8e\x57\xf4\x52\xba\x49\xf9\x19\x5f\xe8\x47\x69\x9e\x51\x3b\xd8\x29\xcc\x6f\x9e\xfb\xf9\x93\xb8\x5f\x00\x10\x1b\x85\xbd\xdd\x78\xb8\xaa\x35\xdd\x58\xd3\xd1\x0e\xff\x4b\x3e\x88\x44\x22\x70\x9c\x19\xe8\x95\xe8\x10\xfc\x75\x5c\x30\x6e\x0c\x6c\x11\xe1\x30\xd1\xb9\xc2\x9b\xbc\x9a\x32\x27\x63\x80\xf6\x8b\xbe\x39\x0a\xc7\x1a\x62\x97\x78\x1a\x79\x5d\xbc\x97\x00\x88\x13\x44\xf1\x9d\xcc\x96\xef\x28\xa4\x5e\xdb\x96\x80\xd1\x48\xdf\xb7\x6b\x70\xf3\x59\xeb\x90\x13\x08\x77\x71\xfd\xe8\x43\xe4\xc2\x16\x13\x6e\x23\x75\x7f\xf9\x4c\xe2\x43\x06\x22\xfd\x33\x95\xcd\x8e\x8e\xfc\x8b\xd9\xce\xf3\xf2\xac\xe4\x76\x0b\xa7\x02\x20\x42\x8a\x17\xd9\x89\x8d\x4b\x89\xef\xb5\xfb\x5b\xdc\xc8\x8b\x25\x9c\xd6\x51\x6a\x39\x13\xd6\x4e\xa0\xfd\xc2\x72\x90\x38\xc6\x5f\xcd\x26\xcc\x08\x6b\x57\x59\x13\xc1\x87\xb3\x37\xbd\x88\xfc\x86\x77\x3f\x12\xcd\x08\x10\xce\xf0\x8c\xe5\xd8\xc4\x78\x00\x84\x5a\x69\xb1\x55\x5f\xc7\x61\x4d\x80\x7c\x1a\xfd\xd8\xb1\xa2\x1f\xcd\x4f\x38\x95\x0c\x8f\xd6\x57\x5c\x06\xa6\xad\x23\x96\xb7\xbe\xa9\x17\xb5\x82\xff\x6e\xae\x19\x47\x14\x56\xce\x59\x46\xd2\x8a\x0e\x46\x3a\xd1\xde\x4b\x4a\x3d\x83\xd8\x23\xd2\x63\x00\x08\x0e\xca\x1e\x9b\xdd\xe6\xb5\xcb\xf0\xaa\xfd\xb5\x2d\xb2\xed\x82\x33\x0d\x52\xb9\x13\xcd\xb7\xf9\xaa\x7c\x2e\x6a\x41\x1b\x51\xbe\xa0\x31\x02\x91\x2e\x7f\x5d\xca\xc6\xcc\x53\x94\xa5\x3d\x23\xec\x57\xac\x8e\xd8\x4c\x95\x29\x5d\x3c\x13\x59\x0a\x65\x35\x00\xfc\x17\xca\x6c\xc3\xe2\xf2\x2f\x26\x8c\x62\x60\x5e\x85\xf1\x04\xef\x51\xed\x11\x63\x0c\x05\xdd\x88\x31\xe8\x91\x7e\xb0\x4c\xfd\xdf\xf5\x8f\xdb\xeb\xf5\xe9\x25\x32\xd4\x26\x9d\x22\xad\x14\x4f\xd2\x6e\x8f\xa0\x53\x58\xd0\x55\xcf\x2c\xe6\x31\xcd\x1f\x00\xf0\xb9\x6a\x92\x7e\xda\xdc\xe1\xbe\x65\x72\xaf\x4a\x9f\xde\x36\x2e\xb7\xfa\x60\xf7\x2f\xf2\xe4\xfa\xce\x2e\x65\xc7\xb3\xe6\x11\xc7\xa7\xba\x4f\x6d\x8f\xed\x35\xc5\x57\x91\x02\xab\x25\xf5\x35\x8e\x65\x1e\x8d\x10\x93\x57\x1b\x21\x4f\x35\xb3\x58\xef\x0c\x00\x3f\x1d\xaa\xd7\x91\x4b\xb7\x8d\x34\xc9\x48\x15\xe9\x43\x3b\x38\x0f\xe6\xbd\x1e\xf8\x4c\xb2\xd6\x5d\xec\x9f\xd6\xc1\x6b\x7a\xdf\x1b\x58\xb7\xac\x6d\x5e\xf7\x84\xe2\x0d\x88\x77\x8e\x93\xa9\x4f\x71\x93\x6c\x95\x11\xcb\xc9\x75\xe6\x51\xcf\xdd\x4c\x17\x03\x0b\x00\x7e\x80\x76\x82\xf6\x5b\xa9\xf3\xa2\x30\xe9\xc7\x72\xf3\x82\x22\x8e\x69\x5e\xd1\xe8\x4c\x52\x5e\x5d\xe2\xd0\x8f\x8e\xb4\xa6\xf6\x81\x75\x75\xaa\xd6\xc3\x7d\xc9\xc5\xcb\x10\xbc\x6e\x6d\xea\x07\xec\x32\x07\x14\xf1\x80\xf4\xd1\x5a\x35\x6d\x22\xe3\x98\x51\x05\x00\xef\x85\x96\xd9\x79\x0a\xcd\xaf\x4f\xd5\xaf\xc2\x5c\x6f\xaa\x91\xb9\xe2\xe0\x30\x24\x6b\x29\xc1\x17\xbe\x11\xc7\x25\xb9\x20\xc3\x5b\xda\x29\xf1\x98\xdd\xe5\x4e\xb4\x2e\x82\x26\x7d\x2d\x13\x4f\x59\x17\xb9\x87\xc3\x66\xbc\xf3\x2c\xe0\x3f\xe4\x22\x00\x10\x7f\x15\xd2\x1d\x67\x90\x0b\x9a\xfa\x75\xe7\xd1\x31\x30\x86\xb4\x18\x73\x13\x9e\xcb\x7c\x8f\xfb\x03\x51\x81\xbd\x4e\xb8\x8b\x16\x36\xff\x45\x8e\xc2\xfd\x59\x66\xa3\xee\x20\xcd\x4d\x6f\x64\x6c\xa0\xcd\x88\xe4\xb1\x1f\xb3\xa6\x7a\xce\xe0\xf3\xff\x6f\x11\xe2\x4d\xc2\xeb\xf6\x03\x1d\x27\x5b\x7d\xb5\xaf\x90\x32\xf8\x56\x09\x0f\xdd\x82\x28\x60\x66\x62\x89\x68\x17\x6c\x06\x7e\x0d\xf6\x63\x73\x15\x69\x06\xe1\x67\x99\x0f\xe5\x32\x25\x6d\xce\x77\xfa\x2b\xfa\x8e\xc8\x24\x76\x15\xbb\xd5\xe3\x0b\xef\x17\xdf\x0b\x00\x71\xb3\x88\x69\x3d\xd2\xd6\x82\x8a\x82\xc2\xda\x61\x98\x1a\xd1\x1d\x84\x12\xc7\xa4\xff\x85\xba\x48\xd8\x86\x71\xc2\xb6\x92\xa7\x37\xe5\x13\xa6\x51\x17\xce\x9d\x43\xf6\x62\x94\xcd\x41\xd0\x88\xec\xb0\x88\x9d\xac\x69\xbc\x30\x8f\x33\xbc\xb1\xc2\x14\x00\x44\x66\xf1\x3d\xf3\xc9\x96\x49\xc4\x41\x35\xa6\xb5\x82\x5c\x27\x84\xc1\x37\x51\x9d\x68\x2a\x44\x3e\xed\x20\xea\x1e\x7a\x1c\x63\xa4\xb1\x10\x37\x89\x65\x2a\xc5\x11\x6b\x39\x83\x69\xbb\x29\xaf\x78\xe7\x23\x4a\x18\xb7\x84\x41\x1e\x1b\xb9\xe3\xc5\x4a\x00\x84\x3b\xa4\x62\xe3\x9b\x86\x57\x4c\xbb\x72\x5f\x33\x85\xb5\x8f\x7f\xbf\xd5\x95\xfd\x8c\x9a\x0e\xbf\xca\xf5\x44\x9e\x44\x5c\xe6\xb5\x37\xd4\x60\x02\xf8\xeb\x4a\x06\xf1\x2b\x85\xde\x69\x01\x64\x83\x68\x51\xf8\x0b\xfa\x76\x49\xa6\xc7\x52\x8e\x9f\xf4\x12\x00\x82\xcf\x72\x77\xbd\xae\xe6\x81\x74\xb1\x5c\x5a\xbf\x41\xe6\xc2\x3d\xdb\xb4\x44\xc6\x22\x37\xc2\x8e\xca\xfe\x40\xf8\xb5\xfb\xcb\x23\xea\x5e\x22\x77\xc9\x8d\xc5\x56\x6c\xbf\xfc\x73\x2a\x8b\x78\x4c\xc1\x0a\xdf\x46\x2b\x50\xfc\xe3\x71\x82\xf5\x55\x59\x05\x80\xc0\x57\x89\xd2\xe6\x56\x29\x8d\x14\x29\xbf\x66\xa1\xe1\x05\xc7\xa9\xfe\x89\x01\x47\xdc\xdc\x5c\xa7\xbf\xd0\xbe\xbc\xf5\x83\xbe\xa4\x76\x47\xc7\x75\xdd\x9a\xa2\x45\xe8\x1f\xba\x09\x29\x57\x08\x5c\x2d\x3c\x9c\x4e\x4d\x85\x06\x3c\xee\xb3\x32\xff\xdf\x93\xfc\x61\xb5\x44\xb3\xb0\x62\x6a\xaf\x40\xfc\x74\x1e\xb1\xa7\x94\x65\xac\x7d\xd4\x3d\x96\x80\x6c\x94\x76\x0e\xc0\xc5\xb0\x5a\x47\x68\xcd\xb9\x76\x82\x6d\xa0\x08\xa0\x0e\x59\xde\xa5\x68\xf1\x42\x73\x58\xb8\x89\x42\x35\x46\x79\x46\x33\xb7\xe9\x2e\x03\xc0\x6f\x85\xaa\xd4\xef\xcb\x63\x87\x3d\xc5\x39\x55\x86\x41\x33\xf3\x75\xad\x47\xff\x63\xfc\xdd\x86\xfd\x7d\x3e\xf0\xc9\x2d\xcb\x7b\xd2\x6b\xd4\xf0\x33\x5d\xb9\x85\xd7\x50\x59\x8e\xc0\x14\x09\x7e\xb2\xf5\x68\xf8\x06\x8a\x87\x79\xb6\x67\x07\x53\x6c\x98\x0d\x00\x3f\x03\xfa\x4f\xad\x28\x93\x2c\xb8\x24\x3a\x55\x79\x7d\xfe\x18\xa6\xad\x06\x3f\xe2\x82\x77\x34\xf8\x0d\xbe\x6d\xbb\xda\x32\xb9\x7f\x57\x0d\x1a\x9e\xdb\xdb\x51\x78\x15\xb9\xb7\xeb\x62\x8a\x0d\xb7\xd4\xfe\x29\xfc\x19\x79\x9b\xe5\xba\xe7\x06\x66\xa2\x31\x07\x78\xf3\x9d\xb4\x68\xeb\x71\xec\xd9\xfa\x7c\x68\x0c\xde\xb9\xa9\x5d\xb4\x90\x40\x85\x11\xe8\x6c\xe2\x07\xf8\x36\xb4\x96\xbc\x1b\x19\xd3\xb8\x87\xba\x15\xb3\xbf\x74\x13\xfd\x15\xc1\x9c\xb6\x9b\x65\xa4\x6c\x8a\x48\xe0\xa2\x98\xc0\x23\x45\xd0\xcb\x95\x00\x20\xa1\x08\x47\x2c\xb7\xd1\x3f\x9a\x2c\x9a\x44\x2c\x0e\x86\x13\x3e\xc0\xbd\x87\xcf\xa4\x9d\x22\xac\x40\xe4\xa1\x3e\x90\x7a\xd0\xac\xc6\x4c\xca\x76\xdc\xc1\xd2\x42\xba\x37\xa9\x28\x8d\xc8\xbc\x4a\xf3\x0d\x7f\xc5\xb9\xc6\xf2\xf5\x98\x21\x88\xe3\x65\x01\x20\x09\x13\x39\x99\x9f\xa3\x12\x61\xdf\xd4\x4d\xe8\x83\xf0\x4e\xa1\x3f\x56\x88\x08\xa0\x05\xe1\x1b\x51\xef\x51\xed\x44\x12\xf6\x5e\xc3\x0e\xf2\x16\xc2\xcb\x92\xcb\xb4\x4c\x4a\x74\x9a\x07\x33\x80\xbe\x36\x7c\x03\xa7\x88\xdd\x36\xf5\x3b\x7f\x37\x3f\x0a\x00\xf1\x59\x51\x9f\xf1\x69\xfb\x45\xe4\x6b\xa5\x03\xb1\x12\xe3\xcf\xef\x42\x2d\xc7\xe5\x52\x4e\x60\x8e\x11\x74\xc8\x24\x7c\x08\xe9\x6d\xfd\x0e\xe2\x16\xaa\xb0\xf8\x17\x45\xc3\x88\x4b\x15\xd3\x17\xb1\xdd\xc3\x0b\xd8\x1e\xbc\x19\x53\x1f\xf1\x8e\x0a\xf3\x00\x10\x3b\x8b\x7f\xeb\xff\x6b\xed\x26\xe6\xca\x2f\xc3\xd7\x93\x7e\xf2\x9c\x3b\x5e\x53\x76\x91\x79\xa8\x02\x9a\x00\x31\x19\x73\x93\xd1\x5a\xb7\x0b\xbf\x85\x55\x5b\x1c\x4b\x3a\xce\xa1\xa4\xdc\xa5\xc5\xf3\x36\x87\xdd\x66\xde\x17\x7a\x4e\x3d\xc7\x3d\x2b\xd6\x00\x20\xca\x90\x0e\xe8\x22\x9a\x8d\x4c\x0f\x59\x02\xec\x01\xab\x82\x63\x86\x23\xd9\x4a\x52\x6c\xc7\x63\xce\xa6\xf6\xcf\xa8\xcd\xbc\x31\xb5\xc7\xb1\x67\xf8\xc8\x22\x2c\x31\x54\x70\x2d\xa5\x92\x72\x4a\xc4\x0d\xb3\x33\xf6\x4b\xc2\xa6\x1e\xe7\x3c\x90\x9e\x03\x40\x28\x94\x47\x6b\x4e\xd6\x5b\x24\xd7\x25\xa0\x29\x41\xda\xc1\xea\x6d\xf9\x22\xbd\x41\x80\xb5\xdd\x96\x25\xc3\x1b\x11\x63\x65\x2b\x6b\x68\x68\xb6\x7c\x7a\x61\x07\xde\x5f\x3e\x92\xbc\x82\xec\xae\x88\x0b\x43\xd0\x2b\x15\x7f\x4c\xfd\x97\x7d\x48\x99\x0e\x80\x60\x48\x49\x53\xad\xac\x99\x65\x60\x88\xfc\xeb\x83\x0c\xce\x8c\x27\x4d\x69\xfa\x41\xdc\x11\x18\x4b\x3f\xad\xf5\x19\xfc\xa9\x6e\xb8\x3a\x1f\x39\xa4\xf3\x2a\x90\x60\x2d\x5a\x4b\xb2\x27\xf1\x0f\xe8\x5b\x58\x18\x2d\x0f\xaa\xf3\xf0\x61\xfd\xd4\xc8\x01\x10\x78\xab\xb9\x8a\x4f\x55\x9b\x7a\x0a\x05\xf2\x9a\x87\xdd\x09\x74\x44\x43\x6a\xd7\x58\x2c\xa7\x79\xc8\xb1\x1a\x76\xaa\x2d\xd7\x5e\x31\x0f\x85\x08\xb7\xde\xc8\xbf\x83\xa9\xb2\xd4\x26\x1d\x27\x1c\x36\x2d\x0a\xcb\xa2\x0a\x0c\x87\x3d\xb0\x2c\xa1\xae\x1b\x00\xfe\x19\x28\x4d\x51\x54\x79\x6a\xf0\x14\xff\x7a\xcd\x98\x81\x16\xda\xbe\x7a\x7c\xdf\x69\xcc\xeb\xa6\x6b\xbd\x53\x61\xa8\x56\x7b\x77\xd5\xbc\x69\x1d\xc6\x4e\x66\xfe\x56\xf4\x51\x3b\x23\x69\x0f\xa1\xd1\x9a\x1c\x06\xa7\xce\x30\x1d\xf4\xe8\x62\x65\xe8\x9f\x02\xc0\x5f\x05\x3d\x94\x9f\xa8\xf4\x99\x2f\xe1\xe3\xab\x1b\x46\xf6\xd3\xea\xeb\x76\x0f\x3d\xc0\xcc\x6f\x9a\x3d\x70\x0b\x16\x05\x7b\xd7\xb7\xaf\xea\x53\xfb\xe7\x1e\x4d\xfe\x06\x74\x5e\x97\x77\xd2\x25\xfc\x13\x3b\x22\xac\x9f\xb2\xd7\x82\xf4\xb8\xc3\x7c\x6d\x78\x0d\x00\x9f\xaa\x2d\xd7\x6e\x22\xb5\xd6\xb3\xa4\x70\x72\x6b\x13\xc4\x46\x53\x54\x30\x13\x61\x07\xf5\x11\xfc\x30\xbc\x82\xce\x41\xc6\xd7\xb8\x31\x23\x30\xfb\x0a\x16\xb0\xa7\x10\xcc\x49\x34\x6e\x16\x65\x65\x48\x37\x7f\x0f\x73\xbc\xfb\x7c\x91\x8a\x6b\x03\x40\x7a\x57\xf8\x27\x74\x81\xb0\xb3\x69\x44\x32\x9f\x78\x03\xc6\x64\x1d\x21\x87\xc1\x33\x08\xa1\x94\xd5\x88\xd9\x6d\x47\x68\x6d\xe8\xa6\xea\x41\x46\x32\x6e\x79\x41\x06\xab\x98\x94\x90\x34\x9d\xd3\x47\xfd\x15\xd2\xc8\xcf\x60\xb9\xb8\x3b\x44\x33\x78\x05\x00\x48\x87\x44\xa1\x9a\x67\x78\x2f\xd8\xdf\xe2\xab\x04\x18\x5c\xcd\x9a\x41\x3c\x82\x98\x8a\xb7\x92\x89\xa8\x93\x6d\x59\xd4\x2c\xec\x86\xea\x20\x7a\x06\x61\x6f\xfe\x35\x26\x93\xfc\x6b\xf6\x09\xf6\x33\xba\x3e\x24\x88\xb7\x9e\x5d\xe8\xae\x14\x6e\xe6\x87\x02\x20\x2d\x17\xad\x53\x07\xa1\x2f\x21\x75\xa2\x4c\x6c\x13\x7a\x3d\x63\x35\xee\x37\xf6\x3c\xae\x82\xf0\x86\xe0\xdf\x1a\x47\x76\x21\x75\xcd\x4b\xa5\x56\x53\x83\xf3\xbd\xe8\x7f\xd2\xef\xce\x9e\xc5\xd2\xb0\xfe\x0a\x3e\xca\x35\x73\x3f\xb9\x13\x05\x27\x85\x31\x00\x48\x6c\x12\x0f\xa5\x08\xb1\x84\xb0\x52\xb0\x0e\x85\x22\x21\xe8\x19\x98\x0a\xca\x64\xcc\x4f\x9c\x8c\x7a\x07\x36\x86\x70\x93\x7e\xa1\x2a\x8d\x8c\x62\xfe\x95\x57\x40\x0b\xe0\x80\xc4\x85\x4c\x7f\x1e\x32\x58\xc1\x41\x09\x1e\xb8\xd3\xf8\x37\xc4\x58\x00\xc4\xc7\xa5\x4b\xe5\x3b\xe1\x66\x46\x02\x3f\xa0\xc3\xc1\xc4\x52\xaf\x22\xf7\xb0\x06\xd0\xfb\x30\x31\xec\x07\xcd\xcf\x70\xc7\xb8\x95\x95\xf9\x44\x33\x6f\x5f\xae\x84\x02\x09\xe6\x25\x4e\xa7\x1f\x16\x39\x07\x97\xb0\x8b\xc5\xb7\xdd\x45\xbc\x77\xd2\x25\x00\x88\x9d\xe4\x49\xd2\xfc\x96\xf3\x62\x36\xe7\x7e\x9b\xaf\xc4\x99\x7c\xbd\xdd\x26\xe9\x42\x7e\x46\x96\x4b\xa7\x34\xb5\x63\x66\x4b\x97\x96\x7f\xc3\x97\xca\xe6\xe4\x68\x48\x5d\xb2\x9b\xb3\xa4\xb4\x69\x72\x6b\xb0\x2f\xf3\x86\xa2\xce\x7d\x15\xf7\x8a\xe2\x35\x00\xa2\x08\x25\x42\x1c\xda\xe8\xd0\x99\x59\x9f\x5b\x52\x74\xb9\xa4\xc0\xd6\x1f\xda\xe7\x08\x72\xfb\x57\x6d\x57\xa3\x13\x2a\x54\x5b\x50\x76\x07\x2b\x83\x9e\x64\xaf\x21\xba\x41\xa6\x99\xdf\x29\xa7\xa0\x88\xa0\x8f\x8c\xd3\x9a\x6d\xee\x17\xb8\x2e\x9a\xa9\x00\x08\xfb\xd5\x55\xc2\x35\xf5\xf1\x9d\x6f\x99\xe6\xc6\x5f\x8e\x7f\x09\x7f\xb4\x7c\xb1\xbf\xea\x48\x82\x07\xda\x8e\xd5\x7f\x46\xf0\xad\x03\x65\xe3\x31\x63\x2d\xf0\xec\x29\xf8\x33\xe6\x49\x33\x37\x90\x8f\x19\x2d\x41\xdf\x18\xce\xfa\x17\x53\x3c\x38\x6a\xed\x37\x00\x84\xf9\x9a\x8f\x82\xbb\x75\xf5\xfd\xa9\x8c\x07\x8d\x91\xbd\xaf\x08\xb3\x5b\x42\x7a\x0c\xed\x3b\xda\x5a\xbb\xc7\xd4\x77\x76\xec\xef\x64\xcd\xdd\x87\xc6\xda\xcf\x65\x3d\xc2\xe7\xda\x5c\x67\x2e\x25\x37\x58\x26\x06\x4f\xa1\x6f\x30\x5e\x9c\x92\xcd\xc9\xd7\x17\x00\x20\xf4\x80\x46\x04\x85\xb5\xab\x86\x37\x32\x70\x0d\xc2\xa1\x08\xfc\xd5\x66\xe6\x80\xb4\x9d\xd9\xba\xae\x6f\x7d\x7d\x5b\xc7\x8c\x9e\xa3\x73\x47\x51\x67\xba\x4e\x66\xdd\xc2\xed\x72\x2c\x9e\xb9\x97\x74\xd3\x16\x13\x3c\x8f\x5e\x61\x26\x4d\xd1\xb1\x5f\x1b\x4a\x00\x10\x9c\xd3\x4e\x94\x9e\xa5\x6f\xa9\x5f\xc8\x79\xcf\xa0\x34\xad\x26\xb7\x32\x5b\x61\x2b\x90\xb9\x2c\x2a\xfc\x52\x23\x89\xbd\x0c\x99\x52\x76\x9a\xf3\x1b\x73\x30\xdb\x83\x67\x25\xd8\x13\xe4\x02\x1c\x65\xf9\x0c\x89\x48\xc6\x74\x76\xb5\x48\xfe\xe2\xf6\x00\x20\xdf\x21\xbc\x2d\x9d\x46\x1b\xd7\xb4\x88\x53\x48\xfb\x00\xa3\x91\xf6\x33\xdc\xe1\xb3\x10\x2b\x98\xc5\x88\xe0\x86\xdb\xac\x05\xe8\xa2\xb2\x5a\x4e\x10\xae\x33\x6b\x15\xf7\x1c\x29\x20\x61\x16\xff\x04\xf5\xe5\x8c\x62\xd1\x18\xe6\x4f\x57\x95\x44\xc4\x4b\x03\x40\x2e\x12\xc5\x48\x6a\x28\x30\xd8\x9f\x6c\x33\x55\x02\x6f\x21\xf9\xd0\x8e\x76\x3c\x44\x4c\x60\x78\xa1\x06\x1a\xca\x98\x5d\x58\xc5\xdc\xf3\xec\x54\x82\x3d\x2b\x87\x3b\x9e\x7c\x33\xfe\x11\x3f\x84\x8e\x99\xe1\x29\x54\xb0\xa3\x5c\xb9\x12\x0f\xfe\x24\x00\xe4\x71\xa2\xb5\x22\x3e\x31\x13\xe9\xcf\xbc\x41\x9a\x8f\x2e\x26\xd8\x28\x91\x58\x4c\xfb\x56\xea\x1f\xf8\x2d\xf5\xa1\x74\x35\x69\x66\xe9\x45\x26\x9e\x72\x22\x93\xc6\x16\xd0\xfb\xe3\x2b\xb9\xe7\x58\x3d\x01\x67\x04\x04\xee\x51\x57\xba\x38\x59\xf0\x1b\x00\x99\x40\x32\x4e\xf0\x0d\x97\x84\xbf\xc8\xa0\xe3\x4f\x13\x97\xe2\xf3\x89\x56\x32\x02\x0e\x91\x49\xd4\x8c\xba\xc9\x54\x2a\x3d\xab\xe4\x09\xdd\xc6\xac\xcb\x58\xc3\xbc\xcd\xee\x89\xbb\xc0\xe1\xf0\xc6\x06\x2c\xe0\x97\x08\x16\xb8\xea\x44\x65\xe2\x99\x00\x48\x37\x4a\xbb\xf9\x95\xe8\x5a\x7a\x38\xed\x2b\x76\x06\x03\x8f\xfd\x85\xf7\x60\x2e\x6e\x6b\x27\xc6\xb2\x7e\xd7\x8e\x23\x53\x38\xaa\x92\x31\xd4\x13\xbc\x89\xe9\xef\x19\xf5\xfc\x1d\x71\x48\x76\xa4\xb0\x33\x40\xca\x9b\x25\x36\xb8\xae\x10\x62\xa5\x68\x00\x24\xff\xc8\xa7\x73\xfd\x3a\x36\x0b\xbf\x50\xbe\x20\xf7\x88\x46\x31\x91\xe8\x57\xe2\x58\xd8\x4e\x5c\xad\xf8\xcf\xea\x61\xc2\x4d\x89\xb4\xe8\x1a\xd9\x28\x4d\x4a\x9f\x4a\xc3\x4a\x7f\xc4\x5e\x67\x4a\x64\x8f\x03\x1a\x38\x27\xe5\x17\x5d\x2f\x0a\xca\x15\x36\x00\x24\x93\x95\x29\x6c\xa7\xb6\x4e\xc8\x44\x9e\xd1\x7e\x0f\xaa\x41\x99\x90\x70\x68\x42\x4b\x19\xfa\x3f\xcd\xb5\x79\x08\xdc\x31\xcd\x96\xc2\x4b\xc4\xdd\x1a\xdd\x9c\x0a\xca\x6d\x4d\x47\x2c\x91\x31\x53\x93\x13\x50\xc4\xde\xa5\x99\xe0\x36\x86\x2f\x55\x3b\x00\x10\xf3\xd5\xae\x4c\x2d\x2c\xd4\x8e\x27\xee\x6c\xdb\x63\xeb\x42\x66\x77\x10\xad\x43\xcd\x91\xa8\x04\xcb\x92\x2a\x1a\x36\xd8\xbc\xbc\x70\x0a\xa1\xcc\xb4\x34\xed\x20\x79\x89\xb1\x2b\xd6\x9f\x3e\xcb\x40\x0a\x98\xcd\xfa\xa6\x1f\xe7\x96\xc1\x7b\xad\xad\x07\x40\xec\xa1\x59\xc4\x78\xdb\x52\xd3\x23\x23\x26\xb4\x3e\xe9\xae\x43\xec\x68\x1f\xe9\x1a\xd3\xb4\x13\xc9\x74\x6c\xab\xf2\xc2\x30\xec\x8d\x05\xe7\xf1\x6b\xad\xef\xd2\xfa\xc8\xbe\x16\x76\xac\x1b\x6d\xbf\xe9\x54\x40\x31\x6b\x89\xe1\xba\x1b\x9a\xb7\x5a\x67\x07\x40\x74\x1b\x2a\x65\x68\x9b\x57\x0f\x5c\x21\x1c\x6f\x4d\xe9\xc7\x22\xe0\xf0\xd7\xbd\xe7\x9b\xd8\x88\x63\x3d\x69\x95\x8f\xd1\x67\xba\xf4\x05\xdb\xf0\x5e\x8e\xf3\x69\x9d\xa4\x2e\xdb\xdb\xd8\x10\x5a\xa9\xe5\x4a\x80\x88\x95\x6d\xc2\xb8\x2d\xe1\xd5\xe9\xff\x9f\xd0\x0d\xed\xe1\x60\xb8\x55\x0d\x63\xc8\xb7\xb8\x4f\x9a\xde\xa1\x56\xf1\x96\xc3\x6e\xb5\xc4\xf2\xdb\xe1\x3f\xaa\xbe\x0b\x52\x91\xb0\x42\x2f\xe1\x4c\xcc\xc3\xb4\x70\x51\x35\x61\x73\x74\x89\xf8\x18\xe5\xa8\x9f\xa7\x94\xc9\x0c\x9a\x58\x21\x9f\xc7\x5d\x05\x80\x72\xa5\xf0\x5f\xb6\x91\x7d\xb5\xe9\x0c\x39\x98\xd3\x09\xd3\xa2\x26\x73\x59\xf0\x8c\xe6\x4e\x5e\x19\x22\xbc\x8a\xc6\xcf\x45\xcf\x2d\xe8\x12\xc0\x71\x7d\xa9\xbb\x85\xc3\xa4\xc8\xa8\x6f\xe2\xd9\xd4\x8f\xbe\xdf\x24\xdf\x58\x93\x26\xce\x93\x7d\xf9\xbf\x81\x28\xe9\xa2\x0c\xd6\x62\x16\x1a\xb6\x8f\x04\x67\x67\xc0\x0b\x90\x64\x4e\x5a\xc7\x91\xa6\x97\xdc\x78\x94\xb8\xf2\x0c\xaf\x08\x8b\x2f\x70\xe1\x2b\x09\x92\xd4\x62\xc1\x7d\xf2\xb9\xa8\x2d\xa2\x6e\x7a\x8b\xef\x2d\x89\x98\x1d\x3e\xb1\x4c\xd6\xcb\x77\x02\x40\x19\x2c\xda\xcc\xb8\x42\xe7\x22\x2e\x12\x56\x32\x74\xa8\x97\x1d\x67\x99\xfb\xb0\x4e\x8d\x06\xd6\x17\x3c\xac\xa2\x97\x53\x4f\xbc\x9d\xf7\x83\x7b\x92\xa2\x4d\xc1\xf1\xf1\x74\x4c\x54\x80\xb0\x8a\x45\xf4\x5d\x2d\x26\x71\x57\x4e\x6c\x93\xee\x14\x3c\x05\x40\x41\x14\xff\xa6\xb3\x29\x3c\x7c\x11\x1e\x49\x3d\x4e\xf8\xdd\xbe\x8c\x9e\x43\xda\xd1\xc0\x67\xec\xa0\x2c\x2a\xef\x63\xd5\xd3\xb6\xe4\x45\x72\xc6\x30\xee\x25\xef\xe4\xde\x64\xa7\x46\xee\xe6\xff\xe0\xee\xf1\x85\x44\xd5\x02\xdc\x44\x95\xe4\xac\x18\x00\x20\x5f\x28\x85\xa8\x4f\x88\xab\x68\xd3\x71\xee\xe4\x44\x3a\x1e\x6e\xa3\xdc\x64\xac\xaf\x67\xd0\x3a\x59\x61\x65\x4b\x19\x24\xf6\xbe\xdc\x36\x56\x1d\x17\x9b\xec\xcd\x41\xf0\xe3\x23\xd1\xbc\x9d\xc2\x08\x5f\xa6\x30\x57\x9c\x36\x71\xb7\xf8\x6f\x69\x38\x00\xb2\x5b\x72\x27\x8a\x2b\x2e\x41\xc0\xc1\x94\xe3\xef\x08\x03\x5b\xef\x11\xf7\x08\x0f\xd6\xbe\x23\xef\x10\xc9\xe7\x22\xa9\xd7\xc4\x8d\x39\xd5\x8c\x29\x92\x94\xa4\x2a\x16\x43\x1a\x1d\xf1\x9e\xeb\x2a\x2b\xf4\x45\xf1\x6f\xca\x5b\x26\x7e\x15\x9d\x54\xcc\x06\x40\xfa\x41\x39\x91\xf8\x1d\xed\xa4\x6e\x43\x19\x30\xbf\xd5\x05\x30\x02\x3e\x4c\xed\x5f\xb3\x92\xd8\xa1\xf6\x2e\x2d\x23\xef\x53\x07\x64\x13\x69\xd9\xea\x88\xd9\xf3\x19\x0f\xd4\x49\x11\xbd\xec\x7d\x6a\x98\x6f\x1d\xef\xa4\x1a\x36\x29\x51\xf8\x9f\x7a\x12\x00\xd2\x26\xd5\x69\x42\x0f\xe2\xb5\xe5\x18\x32\x13\x3d\xce\xe2\xdc\x92\x88\x2d\x36\x27\x55\x2f\xc6\xcf\x37\x31\x4a\x84\xa4\x40\xe3\xca\xac\x03\x94\x4b\x86\xc7\xb3\xc3\xe8\x9b\x0c\xd3\x22\x6a\x58\x47\xf4\x59\xbe\xf9\x3c\x57\x5d\xd0\xa4\x66\x21\x19\x5a\x0b\x80\xe4\xb9\x66\x1e\x61\x0c\x62\x4c\x67\x0f\x62\x1b\x6a\xa6\xc3\xdc\xbc\x11\xa3\xb0\x63\xaa\x73\x70\x0f\x6c\xf3\x4a\xe2\x88\x54\x6b\x78\x96\x9e\x92\x6a\x99\x90\xf8\x83\x1e\x61\xba\x10\x51\xc0\x6a\x30\x2a\x7c\xab\xb9\x5b\xf5\xb7\x27\x71\x85\xa1\xda\x9b\x00\x48\x36\x69\xde\xe2\x07\x3a\x0a\x7a\xd7\x23\x6a\x91\xe2\x1e\x72\x73\x1b\xfa\x7a\xf7\xd8\x79\x3f\x70\xd9\x9d\x2b\x4b\x9c\x09\xa7\x1d\xa9\x59\x5c\xf2\x22\xdb\xf1\xc4\x9f\xb4\x25\xd6\xd4\x88\x5a\xe6\x1d\x33\xdf\x97\xce\xad\x36\xb6\x4c\x5a\x29\x38\xa1\xfb\x0b\x00\x09\x12\xa2\x62\xf6\xc8\x0e\x37\xf4\xc2\xb3\x65\xd7\x9a\x79\x0d\x6e\x72\xcf\xd6\xc6\x0a\x96\xbc\xa8\x9d\x54\x30\x47\x6e\x42\xee\x9b\x83\x92\xbf\xc4\x16\xc6\x2f\x56\xe0\x89\x53\x83\x2b\x95\x9e\xd4\x24\x8f\x6b\xca\x47\xcc\x81\xb1\x07\x54\x2f\x79\xae\x00\x68\xaa\x45\x24\x4c\xa0\xb4\xbd\x39\xb2\x6d\xbd\xb4\x0b\x76\xa1\xde\x2e\x7d\x0e\x97\x97\x7f\x94\x65\x20\x50\xf9\x87\x65\xa3\x68\x55\xda\x77\xf9\x0c\xdc\xc5\xf8\x3a\xf9\x0e\x12\x3e\xd8\x53\xa1\xa6\xe5\x7b\x9c\x52\x32\x59\x88\xb1\x47\x54\xbd\x3c\x0d\x00\x9a\x29\xa2\x2e\x34\x5f\xfc\x11\xf6\xb0\xcd\x43\x52\x06\x6f\xa9\x1f\x27\xd9\xd7\x71\xa9\x9c\x2b\x8d\x44\x19\xf3\xcb\xa5\xab\xb1\xfc\xb4\x01\xd9\x5c\x42\x77\xdc\x4f\xd9\x0f\xf2\xeb\xa0\xbf\xe5\x8f\xe9\x26\x8f\x83\x8a\x37\x6c\xe4\xd8\xb3\xaa\x44\x7e\x32\x00\xea\x23\xa2\x4f\xa8\x58\xe1\x64\x84\x06\x76\x56\xb8\x0a\x35\x58\x7b\x52\x84\xc4\x6c\x2d\x6b\x15\x4f\xc0\x7b\xe4\xd5\x8a\x8f\x13\x97\xa6\x1e\x95\x0c\x53\x10\x71\xcd\x52\x1d\xbd\x3a\x48\x23\x5b\xcc\x22\x7b\xac\x93\x3f\xe0\xee\x1e\xfb\x4e\xd9\x2c\xf8\x08\x80\xda\x4d\x12\x81\x78\xce\xe3\xe1\x5a\x5a\x96\xf0\x67\x11\x62\x6a\xce\x08\xc6\x10\x7f\xce\x65\x09\x1e\x93\xff\xcb\x95\x0a\xef\xd0\xc2\x53\xbd\x44\x8f\x19\xf4\xd8\x4b\x92\xb1\xac\x47\x41\x85\xd2\x06\xae\xdd\x63\xa9\xec\xa4\xa0\x61\x5c\x8c\x82\x2e\x7a\x0f\x80\xaa\x48\xda\xdb\xc1\x62\xdf\xa4\x2c\x6a\x16\x71\xf6\xd3\x3c\xab\xaf\x71\x0f\xd2\xb5\xa5\x76\xde\x55\xa6\x5f\xce\x7a\xc1\x38\xd6\xa5\x14\xba\x30\x87\xb3\x24\xb6\x41\x64\xe3\xf5\x05\x4d\x90\xb8\x0b\x8e\x79\x2c\x97\xee\x16\xfd\x3b\x8e\x2b\xd7\x49\xbe\x03\xa0\x54\xc8\x27\xc1\x37\x30\x4c\x3c\xef\xc6\x6b\xcc\x41\xfe\xf8\x79\x8d\xac\xcb\xfc\x27\x25\xb9\x9c\x30\xc1\x5f\xd9\x3d\xdc\x3e\xe1\xfd\x64\x23\xdf\x5b\xf4\x2d\x66\x8d\x60\x9b\x24\x2e\x70\x9b\x88\x2e\x35\x7a\x2c\x94\x34\xca\xce\x8c\x3b\x2c\x43\xcb\xcf\x01\xa0\xd0\x2a\xde\xb4\x7e\xa7\x6e\x50\x94\x36\xe0\x68\x2f\x14\x94\xaa\x18\x46\x99\x42\x5b\x9c\xc3\x3c\xaf\xf8\x23\x6b\x07\x5b\xae\x74\x4d\x7a\xc8\x9d\xa3\x44\xc6\xc4\xf0\x83\x95\x7b\x03\x95\x42\x4f\xd5\x6c\x8f\x35\xe2\x1c\x15\x6f\xdc\x6f\x29\xa4\x22\x01\x20\xbf\xa1\x82\x60\x17\xc9\x5c\xc3\xfd\xfa\x7c\xca\x63\x03\xa9\xd2\x9b\xc6\xd6\x3f\x2a\xaa\x66\x78\xeb\xf9\x59\x63\x99\xf7\xf4\x63\x93\x2a\xd8\x57\x75\x23\xd1\xa7\xb9\xcf\x75\xd1\x81\xf9\x82\x19\xda\x15\x1e\xcb\x45\x52\xe8\xc1\xf8\xd9\x92\x57\x9a\x93\x00\xc8\x89\xea\x47\xb0\x74\xd2\x80\x35\xad\xee\x30\xc5\xd3\x62\xac\x58\x4a\xdd\x68\x3e\x56\xf8\x95\x0e\x37\x4f\xca\x3c\xc9\x8c\x36\x95\x24\x85\xb2\x13\x8d\xfa\xe8\x2d\xdc\x56\xc3\xb6\xc0\x0c\xfe\x0a\xfd\x5e\x8f\x4d\xa2\x40\x9d\x78\xfc\x5c\xc9\x12\xe8\x06\x00\xf2\x78\x8d\xb0\x65\x2f\xf1\xa1\xe3\x79\x1d\x9c\x8c\x75\x4c\xab\xa8\xa6\x3a\xdb\x83\x0b\x0f\xd0\x36\xd9\x22\x33\x57\x31\x64\xd6\x19\x49\x53\x59\x5d\x16\xaf\xe8\x6d\x9c\x93\xa6\x77\x81\xe5\xfc\x18\x63\xa7\xc7\x65\xe1\x76\xfd\xbd\xf1\x1a\x49\x91\xf6\x0c\x00\xb2\xbf\x34\x5f\xeb\xab\x0c\x6e\x8d\x35\x95\xab\xf5\x23\x2d\xa1\xc5\x74\x7d\x61\x1b\xc8\xbe\xa1\x3b\xd9\xe1\x93\x72\x48\xd7\x86\x62\xc6\x27\x6a\x7f\x63\x7f\x86\xde\xd6\x6e\x24\x5e\xf3\xad\xd2\x52\x68\x93\x5c\x4f\x6b\xf3\x58\x5c\x00\xb4\xe5\xbc\x2b\x00\x68\x1d\xe2\x94\xba\x53\xba\x3f\x9b\x2d\x95\xd9\x3a\x42\x6b\x56\xb1\x97\x2e\x08\xfe\x31\xdb\xa0\x3d\x8e\xb8\x9b\x22\xd5\x72\x31\xe3\xe2\xbe\x68\x93\xf1\xb8\xd0\x2d\xd0\x2f\xf2\x58\xdf\x14\xe8\x2a\xed\xb3\xeb\x55\xe8\x14\xdb\x17\x00\xe8\x35\x3f\xee\xff\x39\xe2\xfc\xba\x1c\xad\x02\xf6\xb1\xe2\x98\x36\x01\xae\x2e\xda\x0a\x7d\x41\xf8\x66\x27\x43\x3b\x51\xd7\x52\x62\x20\x08\x7b\x39\x6e\x27\x84\x20\x82\x50\x0d\x54\x48\x61\xf8\x06\x41\xe9\x8c\x40\xd7\xdb\x50\x19\xfb\x1b\x00\x90\x8e\x7f\x18\x00\xe8\x8b\xd8\x56\x5b\xac\xbe\x80\x08\x2d\x7f\xaa\xde\x8a\x6a\x2f\x7c\xad\xde\x88\x19\xc9\x12\xaa\x97\xe1\x27\x27\xab\xd5\xcb\x88\xdb\xe3\x12\xd5\x1b\x29\x96\xd0\x60\xf5\x11\x7a\x9f\xcf\x6b\xf5\x3f\xac\xd3\xae\xaf\x35\xc9\xbc\x10\xe0\xa5\x99\x2f\xec\x00\x00\x4a\x93\x2c\xaa\x01\x4a\x2e\x96\x57\x76\x5f\x89\xc5\x4b\x0a\xa3\x94\x0c\xa2\x24\xf3\x88\xb2\x8f\xdc\x97\xf4\x50\x79\x82\x7a\x27\x76\xbb\xf2\x37\xa3\x32\xe4\x9c\xaa\x88\xf5\xd4\xe7\xae\x6a\x3e\x77\xb7\x9b\xb3\xda\x53\x60\x07\x04\xf5\x3a\x71\x36\x00\x1a\xbc\xf4\xdb\xbc\xcf\xb2\x4f\xe4\x9a\xb9\x5f\xe5\x93\x29\xff\x14\xe0\xe5\x05\x34\x6b\xa6\xa7\x7c\x90\x51\x9e\x54\x26\xff\xc6\x8a\x8b\xcd\x53\x20\x39\xf1\x21\x2a\xc5\x59\x5e\x8d\xcf\x05\x65\xa3\x60\xbb\x5b\x94\xf2\x87\xd8\x19\x1c\x50\x1d\x93\x06\x03\xa0\x5e\x24\xef\xa8\x32\x88\x37\xb0\x7f\x97\x6e\x12\xff\xcb\x0d\xc9\x0f\x95\x08\x79\x59\x19\x6e\x92\x6f\x7c\xf4\x6c\xb6\x74\x54\xb0\x3c\xa6\x5f\x56\x22\x02\x21\xae\xb2\x6f\x62\xb6\xcf\x12\xf9\x16\xa9\xbb\x5b\x91\xc2\x2e\xd3\x39\x05\x2b\x1d\xf2\xed\x00\xa8\x06\x95\x53\x2b\x63\x04\x0f\xa4\x89\x25\x3a\x21\x52\xba\x2a\xaf\x54\xf8\x43\xe6\x99\x5e\x27\xda\x22\x1b\x4c\xbc\x2f\xd6\xca\x67\xc7\x04\x4a\xe8\xf2\x9b\xc1\xc7\xa5\x70\x85\xce\xc7\x28\x6b\x55\x16\xbb\x31\xe5\x2c\xe5\x65\x27\xa9\x62\x95\x6a\x12\x00\xca\x7b\x2a\x41\x45\x18\x6f\x23\x74\xb1\x78\x94\x0f\x83\x4e\xe5\x4a\x04\x81\xd0\x86\x39\xf3\x05\x9f\xa0\xa1\x44\x84\xf0\x01\x64\x8d\x3e\x21\x7a\x07\x69\x82\x6d\x12\x7f\x88\xe1\x23\x94\xd6\x42\x05\x6e\x6a\xd9\x52\xcd\x6d\xa7\x43\x0a\x27\x4d\x34\x00\x4a\x84\x7a\x45\xf9\x3e\xee\x0d\xc3\xc5\xe2\x0c\x9e\xd9\x60\xcb\xf5\xe4\xb7\x19\x52\xe7\x34\x0a\x66\xeb\x6f\x27\xc6\x0a\x83\xf5\xea\xe8\x0d\xa2\x22\x7d\x6c\xb0\x4c\xac\xd5\xed\xf3\x91\x49\x2e\xeb\x42\xdd\xfa\x65\x45\xda\x4a\xa7\x87\xf2\xad\x50\x08\x00\xca\x30\x4d\x68\x39\x9d\x1b\x6d\xc9\x29\x7a\xc9\xbd\x69\x3e\x93\x73\x81\xb7\xce\x5c\x34\x27\x89\x2f\x35\x6d\x4b\x0c\x13\xe0\x4c\xd3\xa3\xb7\x08\x87\x8c\xea\xe0\x6e\xd1\x73\xc3\x51\x9f\x11\x49\xb5\xfe\xac\xdb\x11\xe9\x65\x5d\xcf\x98\x68\x79\x8b\x16\x00\xa0\x38\xaf\x59\x52\x90\xd9\xb5\xbd\xf1\x7d\xd6\xa3\x4e\x45\xcb\xf5\xd4\xb7\x0e\x64\xdb\xb9\x59\x58\x7b\x66\xc7\xdb\x68\xb6\x6d\x0a\x1a\x16\x32\xdb\xf2\x0c\xf7\x9f\x5f\xa3\x79\x27\xe9\xe9\x94\x63\x26\x0a\x3d\xdd\xb9\xd4\x38\x97\x3d\x00\x80\xa1\x82\x7f\x06\x00\x3d\x46\x12\x92\xff\xab\x93\xd1\x32\x3e\x6b\x85\xa3\xbe\xf5\xcf\xd4\x9d\xf6\xaa\xf6\x81\x59\x69\xb6\x7c\xa4\x25\xba\xde\x9a\x80\x39\x1a\x12\x68\x09\x24\xa4\xfb\xd5\x98\x9d\xc9\xaf\xa7\x1c\x35\x5e\xa5\xff\x72\x46\x1a\x4e\x72\xbc\x01\xd0\x3f\x17\x8c\x05\x40\xef\x25\x99\x92\xbf\xd3\x11\xda\x5a\x96\x85\xb4\x87\xc0\x9f\xa6\xf2\x6d\x29\x88\xee\x59\xce\xd6\x2c\x74\x5b\x74\xb4\xa5\x08\x87\x0f\x71\x32\x57\x12\x37\xf8\x15\x98\xe6\x51\x53\xa6\x9c\x30\xa6\x31\xc7\x39\x73\x0d\x05\x9c\x6b\x00\xe8\x45\x02\x35\x00\xba\xbd\x92\xb2\xfc\x31\xd6\xfd\x1d\x4f\x33\xff\xb4\x5c\x44\x95\xa4\xfc\x30\xff\xc0\x6c\x9a\xd9\x67\x4e\xc3\x67\x45\x9d\x35\x31\x88\xdf\x83\x8f\x1a\x97\x50\x3e\xf9\x85\x1a\xce\x33\x42\xa6\x1c\xd1\xbf\x61\xb3\x9c\xe7\xeb\x43\x78\x27\x01\xd0\xe9\x85\xef\x00\xd0\x7e\x90\xe6\xe5\x05\x99\x73\x30\xdf\x33\x7e\x99\x4c\xf8\xc9\x29\xed\xc6\xeb\xc4\x84\x99\x93\x8d\x99\x64\x42\x14\xda\x30\x42\x3d\x17\x2c\xd2\x7f\x65\x10\x7d\xbf\xeb\x6b\xd9\xb1\x53\x4e\xeb\x86\x78\xc1\xce\xe7\xb4\x5f\x84\xe3\x00\xd0\x9a\xc4\x1b\x00\xd0\xce\x90\x19\x72\xb3\x8c\x9e\xa4\xdc\x8c\x22\x03\x8a\x32\x2e\xf9\xb0\xfe\x28\xf5\x6a\x82\x55\x3f\x8f\xbe\x23\xf2\x3f\xdd\x55\xe6\xc1\xe0\x14\x5d\x2b\xfb\x83\xef\x1d\xed\x0d\x5e\xe9\x94\x6b\xda\x4a\xc1\xf5\x09\xe3\xa1\x2b\xe2\x4a\x00\xa0\x3e\x29\x17\x00\xa8\x41\x7e\x3e\x27\x5e\xbb\x9b\x15\x92\x8e\xd3\x56\xb3\x95\xc9\x5e\xd0\x47\xce\xdd\xf8\xcf\xd0\x66\x5e\x4e\xa4\x09\xa2\xf3\x77\x04\xbd\x85\x66\x09\xeb\x7c\x4f\x68\xde\x88\x7e\x4c\xf9\xaa\x19\x94\xfc\x8f\xbd\xf7\x7a\x8a\xc2\x89\xbe\x07\x1b\x41\x11\x10\x50\x41\x50\x82\x92\x41\x72\x54\x04\x09\x22\x08\x48\xce\x19\x86\x30\xcc\x0c\x4c\x60\x72\xce\x01\x18\x72\x36\x8b\x59\x14\x51\x14\x23\x98\x31\x62\x40\x45\x31\x60\x46\x45\x45\x72\x06\xed\xad\xcf\xb7\xea\xb7\x5b\x5b\xb5\xff\xc1\x7e\xef\x4b\x57\xbf\xf4\xc3\xb9\xa7\xfb\x9c\x87\xae\x73\x1f\x29\xe7\x0a\x63\xd8\x4c\x00\x84\xc1\x9c\x47\x00\x08\x37\xf2\x10\x9e\x61\x82\x39\x7a\xe6\x86\xb3\x82\x4b\x0c\x47\x27\xa9\xa0\x94\x31\x63\xd3\x20\x40\x33\x3b\xcd\x83\x04\x51\xac\x23\x6b\x6f\x0b\xfc\xd9\x87\x74\x4f\x0b\x3c\x38\xbb\x97\xab\x0b\xec\xb9\x7b\x94\x5b\x05\x2e\x3c\x22\x00\x82\x14\xde\x77\x00\x04\x38\x7e\xb5\xc7\x1e\xde\x18\xdf\x6b\x83\x1a\xef\x02\xbf\xca\x71\x82\xb7\x9f\xff\xc6\x66\x0d\xaf\x5e\xb0\xce\x7c\x29\xef\x88\x00\xbd\xb6\x9e\xd7\x21\xb8\xa9\x7b\x9c\x37\x20\x54\x5e\x6e\xc6\xd7\x12\x5a\x29\xf7\xf1\xc3\xff\xe3\x33\x7f\x9f\xe0\x05\x00\xfc\x2f\x82\xbd\x1e\x8a\xbc\x15\xa2\xa7\x6e\x87\xb8\x9f\x44\x63\x8e\x27\xb8\x8f\xc5\xca\xd6\x3f\xb9\x9d\xe2\x15\x66\xdf\xb9\x2f\xc5\x16\x6b\x6b\x79\x8b\xc4\x36\xba\xe7\x79\xdb\xc4\x7a\xcb\xfd\x79\x45\xa2\xb7\x4b\xb5\x78\x7d\x22\x0c\x00\xfc\x40\xe1\x31\x00\xf8\xc7\x84\x4b\x36\xf1\xb8\x11\xd2\xd7\x6e\xa1\x5c\x23\xe9\x3b\x47\x26\x57\x53\x7a\xdf\xba\x9b\xbb\x58\x7a\xcc\xac\x9b\xab\x26\x15\xae\xdd\xcb\x8d\x91\x06\xeb\xbe\xe0\x36\x4b\x06\x96\xf3\xb9\x73\x92\xb8\xa5\x64\x5e\xaa\xb8\xe8\xbf\x5b\x29\xca\x03\x80\x9f\x26\x4c\x73\x3f\x5b\x77\x24\x76\x8b\xcb\xc1\x5a\xe3\x04\x4b\x7b\x9f\xea\x1d\xc9\x4e\x56\x3a\x55\xb6\x69\xd1\xc6\x17\x2a\x8e\x23\xee\xeb\xab\x97\x9b\xe6\x10\xb5\xfa\x4b\x4b\xd0\xc8\x65\x7e\xf2\xeb\xd8\x1b\x8a\x97\x8a\xcd\x88\x5a\x00\x14\x36\x51\x5d\x01\x90\xd9\x31\x05\xee\x79\xb5\x79\xf1\xdb\x5c\x08\xd5\xf3\x49\xca\xf6\xda\x55\x65\x29\x3f\x2d\x61\xa5\x5b\xfa\x7b\xe3\xa3\xe5\xf7\xb3\xd6\xea\xab\x97\x25\x23\x77\x6b\x0d\x96\xbc\xc1\xa4\x2e\x0b\x96\xdb\xe0\xa8\x8a\x6f\x8a\x0e\x11\x25\x00\x14\x6e\xa5\xa6\x01\x20\x7d\xc7\xcc\x74\xd7\xa9\xb1\x4d\x64\xb9\x38\x54\x3d\x4f\xd1\xb7\xfb\x52\xc9\x4e\x7b\x6d\xf9\xa9\xc2\x15\xb1\xc7\xb8\xa2\xec\x63\xf6\x69\x3d\x58\x2a\x43\x29\x6a\x0d\x97\x18\xe6\xd5\x2c\x8b\x29\x2e\xc6\xe7\x2b\x4e\x15\xe9\x90\xdc\x01\x90\x3d\xa6\x3e\x05\x40\xca\x65\x96\x6d\x3c\x5c\x79\x22\x75\xce\xf9\x71\x05\x2d\x23\xde\xae\xb6\x3c\x24\xf3\xa1\x65\x4d\x99\x73\x4e\x8a\x71\x76\xa9\x1a\x6a\xbd\xde\x0f\x79\x5f\x9e\x83\xd6\x44\x71\x23\x2e\x7f\x59\x5a\xd1\xd6\x82\x0e\x25\x2b\xd9\x30\x45\x1b\x00\xe9\x4b\xba\x03\x00\x92\x56\x16\x7b\x43\x6f\xb9\x67\xe6\x63\xe7\x35\x65\x6e\xd9\xbf\x6d\xa7\x4b\x9d\x72\x0d\x2c\xf5\x4b\xbc\xd0\x08\xe3\x45\x72\xcf\xbc\x97\x7a\xcd\xc5\xce\x38\x81\x56\x5f\x91\x41\x41\xec\x32\xa2\x6c\x80\x1c\xa3\x94\x2a\xed\xa0\x79\x01\x20\x79\xc6\xf8\x04\x80\xf8\x2d\xfb\xfa\x06\xe3\xd2\x25\xb9\xaf\x9c\x78\x25\x1a\xe8\xd3\xb6\x05\x72\xd3\xbc\xdd\x16\x67\x8a\x63\xb1\x32\xa3\xcb\x45\x14\xfc\x7e\x3d\x61\x61\x75\xc1\x80\xd6\x33\xd9\x11\x72\xe4\xb2\x32\x69\x1d\x75\x58\xa9\x5e\x52\xcd\x28\x00\x40\xfc\x8a\xb5\x03\x00\xb1\x0a\x17\xb8\xb9\x17\x3d\xc1\x63\x1c\xbb\x8a\xd4\x08\x7d\x36\x83\x85\xc9\xc4\x78\x8b\x40\x59\x1b\xa9\xcb\x08\x27\x5b\x42\xc9\xd0\xcb\x95\xa6\xd1\x56\x69\x7d\x90\x9c\xa6\xbf\x5c\xd6\x2d\xee\x65\x76\x2c\xd6\x13\x2f\x65\x73\x01\x10\x09\x38\x6f\x01\x10\x0e\xf0\xb8\xae\xc7\x64\x2a\xb4\x60\xc7\x44\x29\x99\xee\x6c\xb3\x43\xf2\x87\x61\x6a\xb1\x5c\x92\xcf\x54\x31\x8a\x17\x7f\x63\x2d\xd3\x43\x8a\xc9\x6c\x2b\xad\x39\xb1\x02\x67\xa3\xfa\x52\x11\x92\x1b\xb7\x98\x21\xec\xe6\x05\x02\x20\x64\xf3\x7a\x01\x10\x1a\xf2\xab\x5d\xdd\xc4\xbd\xdc\x9b\x0e\xfd\xe2\x24\xde\x06\x1b\x33\xd1\x38\xef\x84\x79\xbb\x48\xc6\x5f\x65\xe4\x2a\x32\xe5\xef\xd0\x8b\x10\xf6\x0a\x96\x68\xcd\x09\xeb\x04\x18\xf5\xcd\x42\x4f\xc1\xf9\xc5\xcf\x05\xbf\x05\xaf\x00\x10\xdc\x11\xec\x03\x40\x50\x2f\x90\xb8\xf4\x89\x86\x84\xb6\x0e\x47\x45\x34\x21\xc1\x7a\x4a\xb4\x5a\x78\xce\x7c\x87\xb0\x55\xf8\xdd\x68\x8d\x30\x56\x64\xa5\x17\x2a\x34\x10\x85\x6b\xab\x0b\xc6\x44\x59\xea\xe9\x82\x33\xa2\xd0\x25\x9a\x02\xba\x68\x29\x00\x02\xac\x90\x04\x80\x20\x41\x30\xea\x22\x15\x99\x49\xb4\x1c\xb0\xc2\x66\x89\xab\xf5\x6b\x61\xb8\x24\xd6\xbc\x50\xf0\x4d\x92\x6a\xb4\x5c\x20\x91\x14\xe8\x65\x0a\x72\x24\x89\xda\x5e\x82\xed\x12\x4b\xf5\x46\xc1\x1a\x71\xfb\x12\x24\x7f\x4c\xbc\x16\x00\x81\x82\xc8\x09\x00\x81\xa6\x70\xbb\x73\xd4\xce\x67\xb1\x42\x3b\xc2\x0e\xad\x84\x6c\x2b\x74\xbd\x77\x32\xc5\xe4\x68\x6d\x55\xda\x5e\x83\x23\xd5\x8f\x32\x57\xea\x48\x2a\x27\x73\xee\x68\x8e\x56\x28\xa1\x3b\x54\x56\x94\x3e\xc1\xad\x51\x90\xc9\x1f\x13\xf3\x00\x28\xfa\x44\x25\x00\x20\x7b\xcf\x3c\xed\x34\xbb\xe3\x70\x3c\xcf\x2e\xa0\x7e\x34\xc9\xdb\x6a\x7b\x9d\x7b\xaa\xa9\xc9\xce\x9a\xbd\x19\x86\x06\x07\xab\x7e\x67\x65\xe8\x54\x56\xda\x20\xfb\x97\x2b\x96\x47\x60\x9a\x54\xd6\x97\xba\xe3\x3a\x15\x0e\xcb\xb7\x11\xbb\x00\x28\xa2\x52\xcb\x01\x90\x15\x31\xc5\x4e\xf5\x0d\xa4\xc4\x93\x76\x9a\x75\x8f\x52\x42\xac\x4c\x6a\xad\xd3\x97\x9a\x14\x55\xef\x47\x3c\x37\x38\x58\xa5\x90\xdd\xaf\x53\x57\x91\x80\xf2\x5b\xbe\xba\xac\x3a\xef\x8d\x8a\x57\x49\x1d\xbe\x55\xe1\x5a\x71\x1b\x89\x06\x40\xe1\x1c\x75\x1a\x00\x99\x25\xf3\x84\x53\x56\x6d\x77\x9a\x9e\xed\x87\x9a\xec\x8c\x02\xcb\xb1\xaa\xb9\xcc\xf7\x26\xe9\x95\x7b\x73\x68\x06\x25\x15\xb6\xa8\xed\x3a\x75\x65\x27\xf2\xd2\x96\x3b\x94\x6a\xe2\x1a\x55\x32\xe4\xa1\x05\x53\x0a\x43\x45\x22\x4a\x00\x00\xb2\x79\x7a\x38\x00\xd2\x78\x56\xa5\xe3\xc9\xea\x82\xcc\x8b\xb6\x3e\x55\xeb\xb3\xfb\x2c\xf3\x2b\x06\x72\x57\x19\x4f\x97\x9f\x44\x67\x1a\x6c\x2b\x4b\xcd\xfb\xa0\x43\x28\x81\xb8\x1d\xcb\xad\xe5\x25\x05\x14\x15\x5a\xd1\x2f\x32\x7d\x91\x45\x61\x20\x2d\x1b\x00\xe9\x08\x63\x16\x00\x09\x93\xdd\xe3\xb8\xb6\xd2\x36\xb7\xda\xe6\x52\x85\x12\x9a\x61\x31\x58\xf6\x25\xaf\xc0\xb8\xbe\xb4\x13\x8b\x32\x50\x29\xd9\x81\x2f\xd6\x89\x92\xa7\x15\x7c\x5d\xbe\xbe\x78\x25\x39\x4e\xa5\xa6\xb0\x86\x0a\x17\xe5\xca\x74\x18\x45\x00\x48\x06\x59\x2d\x00\x88\x1b\xb9\xab\x1d\xe2\xca\xb4\x70\x03\x36\x76\xa5\x9a\x84\x3c\x8b\x7d\x25\xba\x05\x33\xc6\xd9\xf2\x75\x24\xb6\xfe\x48\xb1\x21\xc5\x48\x07\x51\x64\x40\xfd\xbd\x3c\xa9\x50\x8b\x7e\x51\x65\x44\xfa\x80\xd9\xb2\x68\x5c\x22\x64\xf3\x00\x10\x57\x70\x7e\xfc\xe7\xc7\x78\xc5\x0e\x9a\xf2\x00\x2a\xcd\x7a\xbc\xb8\x80\x46\xb6\x20\x14\x1d\xa7\xd3\x8d\xb7\x17\xf6\x30\x18\xfa\x43\xb2\x59\x66\x95\x0e\x57\xe6\xcc\x6a\x5f\x5e\x27\x45\xb3\x7b\x55\x23\x25\x51\xdc\x95\x8a\x5c\xf1\x66\x9e\x09\x00\x22\x31\xef\x3e\x00\xc2\xd3\xfc\x6a\xfb\x57\x85\xdf\x39\x0d\xd6\x27\x0a\x37\x72\xad\x2c\xcc\x64\x3b\xb9\xed\xc6\xab\xa4\x7d\xbc\x6d\xfa\x4f\xa4\xeb\x78\x1f\x74\xd8\x92\x42\x3e\x66\xf9\x19\xf1\x08\xff\x83\xea\x0e\xb1\x9e\x60\xbb\xe2\x84\x28\x48\x50\x0c\x80\xf0\xbe\x00\x03\x80\xd0\x5d\x10\x6f\x7f\x59\x36\xc6\xff\x6c\x5d\x27\x0b\x12\x78\x5b\x28\x4a\xcf\x0b\xf6\x1b\x03\xc9\x82\x60\x5a\xff\x86\x24\x58\x98\xac\xc3\x16\xdf\x16\xee\x5e\xde\x29\xf6\x14\xde\x53\xbd\x29\x2a\x14\xf6\x28\xb9\x09\x5f\x09\xcf\x01\x20\xc4\x0b\x3d\x00\x10\xfc\x13\x74\xda\xd7\xc8\x0c\x45\x27\xad\x69\x52\x8a\xe8\x9b\xf9\x77\xc9\x47\xb1\x81\xd1\xb8\x64\xbd\x38\x52\xff\x86\x98\x23\x16\xe9\x94\x8a\x95\xc4\x15\xcb\x3f\x89\xaa\xc4\x1c\xd5\x71\xe1\x88\x78\xb3\x12\x51\x18\x2f\xba\x0b\x80\x50\x49\xa4\x0c\x80\xa0\x59\x18\x51\x32\x9e\x22\x08\x27\x0b\x9f\xa4\xe9\x45\xb5\xd2\xe9\xe9\x77\x62\xff\x60\x0d\x10\xbd\x89\xb9\x19\x30\xdb\x32\x55\x29\x66\x09\xb2\x31\xe3\x99\x7f\x0f\x3a\x2f\xbb\xc7\xf5\x70\xfe\x7d\xb4\x8f\xe9\x3a\x42\x34\xf6\xec\x72\x5b\x72\x1a\xd1\x0f\x00\x86\x0e\x95\x2f\x9f\x49\x22\x46\xfd\x11\x2c\xa4\x38\xc6\xfe\xa2\x1d\x4a\xd3\x4e\xe8\xcf\xcf\xce\x88\x4d\xd1\xcc\x48\xcf\xec\x49\xcf\x8a\x66\xe4\x70\x33\xbf\xfb\x27\xa0\xe8\xc8\x7d\xae\x5b\xf3\xe6\x31\x2d\x26\x77\xf0\x97\x71\xdd\xcb\x15\x48\x3f\x48\x6a\x00\xd0\xef\x51\x87\x8b\xbf\x24\x20\xe2\x24\x02\xdb\xa4\xf0\xc4\x6d\xd4\xfb\x29\x88\x14\x85\xbc\x83\x69\xcf\xd3\x3e\xa6\xb7\x23\xb8\x88\x9f\x51\x3f\xb3\xe3\x72\xcc\xb7\xbe\xcf\xe5\xa1\xaa\x5d\x7e\xe6\x99\xe7\x07\x99\x90\xf1\xab\x08\x6b\x34\x6f\x90\xf0\x24\x08\x00\x1d\x4b\x93\x17\x76\xc5\x54\xa6\x36\xf2\x82\xe3\x1e\xa5\x0f\x50\x2c\x13\x37\x65\xae\xc7\xb8\x24\xff\xc9\xae\x4b\xe3\xa6\x7d\xce\x35\x8b\x7c\x95\xb9\x1c\xfd\xd2\x6f\x26\xa7\x3c\xff\xac\x8b\x2f\x9a\x8d\xbf\x68\xfc\x1b\x7b\x87\x38\xa0\x29\x21\x22\xa9\xe6\x00\xd0\xf6\x33\xd4\xa4\x13\x11\x1d\x39\x86\x9c\x43\xd1\x81\xc8\x19\xd2\x85\x38\x25\xd4\x2b\xd4\x68\xa2\x22\xe6\x7c\x2a\x26\x65\x6b\xfe\xa5\x88\x2f\xe9\x77\x71\x4f\xfd\xac\xb2\x76\x16\xa8\x39\x37\xe6\xbe\x26\xe5\x1b\x8b\xf3\x29\x94\x61\x4d\x7c\x41\x3c\x9d\x01\x00\xf5\x2e\xf3\xa2\xc4\x2c\xd4\x0c\x6b\xc0\xd6\x0c\x9f\xc5\xd1\x88\x09\x51\x7f\xf1\xdd\xb9\xd7\xe2\xb6\x16\xac\x4d\x41\x25\xde\x27\x96\x46\x28\xa4\xee\x25\x2b\x6c\xc1\x22\xae\x53\x6a\x9c\x75\x91\x61\xb4\xad\xc6\x2e\x79\x6e\x8c\x65\x9a\x54\x42\x02\xb3\x17\x00\xca\x2c\x3b\x53\xf8\x32\x70\x3f\x63\x23\xa3\x6f\xfb\x13\xc6\x03\xc2\xd6\x70\x17\x66\x72\x4e\x7f\xd4\x1b\xe6\xa3\xa4\x07\x71\x37\x58\xf1\x61\x6d\x49\x13\xac\x3e\x5f\x66\x3a\x93\x4d\x76\x92\x64\xe7\x72\x56\x1b\xab\xa1\x4f\x72\x3a\x35\x0f\xe3\x1d\xb9\x69\x00\x50\xac\xb8\xf7\xf9\x79\x5b\x1f\x49\xbe\xd1\xee\x07\x22\x24\x75\x38\x5e\x88\x95\x64\x6b\x76\x54\xc4\x3a\xf1\xb3\xc4\xbc\x98\x24\x31\x36\x74\x6f\xc2\x27\xd1\x94\xcf\x99\xd4\x4b\x22\xbe\xd3\x8a\xcc\x59\x91\xa2\xd1\x38\xaa\x5a\x48\xd6\xec\xc3\x15\x08\xee\x01\x40\x6e\xe3\xcf\xf0\x16\x6d\x51\xad\x1c\xa3\xe2\xfc\xdf\x56\x0c\x60\x37\x04\x7d\x2c\x7f\x91\x65\x15\xb6\xa2\xac\x30\x21\x27\x4a\x5e\xea\x1e\xf2\x39\x3e\x54\xde\xeb\xb3\x2d\x25\xb3\x18\xe1\x38\x8d\x18\x2e\x7c\x60\xec\x91\x7b\x4b\xa6\xbc\xdc\x17\x3b\x23\xfe\x0b\x00\xb9\x54\xf8\x8a\xbb\xd3\x77\x75\x7d\x1e\xe5\xd3\xd6\xc1\xba\xd5\xf9\x5d\x41\x4a\x35\x8d\x99\x5d\xa1\xdb\xab\xa6\x12\xb4\x22\xdf\x54\xfa\x84\x9c\x8d\x3b\x5d\x4e\xf4\xf1\x48\x7e\x53\x2a\x71\x5a\x82\x28\x91\x67\x19\x33\x73\xf1\x45\x2b\x96\xcb\xb1\x77\xa4\x08\x00\xc8\x5c\x51\x39\x37\xc3\x27\x79\xd7\x1c\x85\xb7\xd5\x76\x27\x3d\xbf\x22\x30\xa2\xa1\x25\x73\x4f\xc8\xc1\xba\x8b\xf1\xa3\x91\xbe\x35\xc7\x43\x5a\xe2\x4c\xab\x04\x3e\x49\xc9\x29\x15\xd6\x4e\x8e\x08\xfb\x52\xa9\xf1\xbb\xdc\x55\xc5\x57\x96\xff\xc4\x96\xc8\x70\x00\x90\x53\x45\xff\x8a\x52\xd3\x4e\x87\x97\xf3\x44\x19\xfa\x51\xf7\x29\xdb\x11\x27\x62\xff\x62\xec\xb3\x64\x89\xa4\xb4\x98\x9c\xfd\xa9\x2b\x22\x8f\xe4\x0e\x66\x7c\xf0\xbb\x8f\x91\x65\x7f\x73\x01\xd8\x23\xe8\x08\xe3\x0f\x84\x79\xec\x73\x4d\x29\xf9\x16\x91\x08\x00\x63\x03\xf5\x5e\x61\x6a\x4a\x73\xd4\x00\xf7\x54\x9a\x5f\xec\x57\xb2\x20\x43\x29\xa1\x0f\xcd\xcb\x5c\x96\xa2\x96\x7a\x3d\x3b\x36\x3d\x2b\xd2\x08\xf9\x2c\xf3\xa7\x5f\x3c\x7a\x27\xf2\x88\xf3\xf1\xfc\x8f\x98\x2b\xc6\xd5\x04\x14\xee\xb7\x26\x82\x1c\x4d\xda\x08\x00\xfd\x0f\xcd\x45\x16\x9d\x74\x3c\x2e\x97\xd3\x9d\x82\x49\xb4\x22\x9d\x49\x4b\x4d\xfe\x84\xba\x97\x51\x95\xd6\x95\x6a\x9c\xa5\x84\xf8\x18\xb1\x33\xa7\x25\xc7\x70\xcb\x67\xd4\x61\x54\x95\x73\x64\xfe\x8a\xfc\x70\xe3\x20\xfc\x3d\x82\xbd\xa6\x13\xe9\x0d\xd9\x1c\x00\x7a\x2d\xed\xa1\x24\x3a\xee\x6d\x2a\x97\xad\x96\x30\x9c\xde\x49\x34\x4d\x76\xc9\x5c\x92\x9b\x9f\x7a\x3e\x9b\x98\x3c\x99\x41\xc9\x5d\x1c\xde\x90\x45\x46\x77\x6c\x51\x43\x5e\xcd\x3f\xe0\x74\x1a\x43\xc4\x9f\x33\x7a\x80\xe3\x11\xc7\x35\x17\x11\x5f\x51\xfd\x01\xa0\x3d\x64\xf8\x8b\xb2\xa2\xed\xb2\x7b\x98\x89\xb1\xc5\xc8\x36\x42\x73\x82\x2e\xaa\x0e\x69\x9e\xd4\x87\x61\x26\x7d\x4a\xfd\x92\x2f\x0a\x3b\x8c\x70\xc1\x1d\xf4\xf5\xc9\xee\x26\xfc\x76\x5a\x83\x7a\x45\x4a\x31\x42\x63\x9d\x29\xc3\x1a\x13\x05\x5d\xf4\x0a\x00\xa8\xe3\xcc\x9f\x82\x83\xe1\xcd\xf9\xe7\xe8\x77\xa3\xa2\x70\x2b\xf0\xdb\x62\xad\xf0\x84\xec\xe1\x04\x3b\xc2\x9d\xc4\xf7\xc9\x24\xa2\x77\xe8\xed\x74\x2d\xd2\x75\x1f\x69\xe6\x3f\x0a\xc2\xb1\x3e\x37\x92\x66\x6a\x64\x9d\x37\xc3\x50\xd2\x54\x25\x3c\x61\x0e\x00\x40\x5d\xcf\x2e\xe7\x45\x6d\x77\xa1\x17\x53\x0f\x87\x59\x33\xec\xb0\xb1\x91\x49\x8c\xc7\x59\xb6\x31\x77\x99\x21\x09\xe1\x09\x54\x66\x7f\x88\x24\x85\xc6\x62\x79\xef\xc9\xb8\xc5\x36\x73\x54\xcf\x21\xb0\x3f\x1a\x69\x62\x0a\x38\x47\x34\x5d\xf1\x27\xb9\x89\x00\x50\x62\xb8\xfd\x1c\x97\x6d\xa1\x12\x0d\xf2\x9d\xe0\xd3\xe2\xae\xbc\xd6\x30\x7f\xb1\x0c\x71\x26\x4a\x5d\x6c\x16\x37\x1f\xb7\x4a\xf4\x74\x3b\x3d\x09\x2d\xc2\x7b\xbd\x4f\x5f\x2a\xd2\x74\x38\x9e\xbd\x58\x78\xca\x68\x09\x3a\x4e\xe8\xa1\x49\xc3\xfd\x10\x34\x01\x40\xee\x13\x2c\x62\x5d\xdb\x4a\xaf\xf8\x4a\xca\x08\x34\x2e\x1f\xc0\xa4\x6d\x9f\x2f\xfb\x9c\x51\x14\x3e\x57\xda\x14\xa7\x10\xe3\x5d\x42\x08\xee\x4c\x78\x22\xb7\xf0\xa2\xa7\x36\x17\x3d\x72\x28\xcf\x9c\x2a\x8c\x31\x0a\x47\x49\xa5\x2d\x9a\x5f\x70\x68\xf1\x7d\x00\xc8\xa7\x84\x4f\x59\x7e\x7e\x92\xba\x50\xe2\xbb\x6d\xce\xb5\x0a\xe8\xdf\xdb\xd7\x56\xef\xc8\x58\x1f\xee\x50\xa5\x18\xdb\x16\x2d\xaf\xc8\x0a\x6e\x48\xb0\x29\x3b\xed\x85\x4f\x35\x2a\xf9\xec\x70\x30\x53\x5e\xfc\xc9\xa8\x0e\xb5\xbe\xb0\x65\xb9\x03\xce\x59\x6a\x06\x00\x79\xa7\x48\xc4\x1c\xdd\xd2\xb9\xb3\x87\xc8\x0e\x20\xef\x08\x43\x1f\x0b\x46\xd5\xd7\xa7\xcf\x84\x49\x6a\xdb\x62\x1b\xa2\x7e\x56\x77\x04\xd7\xc5\xef\xaa\x6c\xf5\x92\xa7\xec\x2d\x67\x3b\xf4\x64\x5a\x94\xfc\x35\x1a\xca\x7d\x51\x1c\xba\xbc\x14\x3b\x26\xb3\x05\x80\x5c\x20\xfa\x23\x91\x64\xcc\x86\x1f\x63\x2b\x65\xba\x45\xfd\x28\xf8\x99\x75\x39\x4e\x3d\x77\x71\x0e\x22\x91\x93\x8c\xcb\x0d\x49\x5d\x13\xbe\x14\x4d\xcc\xe8\xf7\x65\xe5\x7d\xcc\xfe\xe3\xa4\x8b\xeb\x44\xc7\x18\x45\x17\xfc\xc6\x7e\xd6\xc0\x53\x18\xc4\x0a\x00\x18\x4d\xd4\x71\x71\x45\xfa\xe2\xa8\xef\x2c\xdb\x0c\x46\xec\x97\x02\xab\x4c\xc3\x84\xe7\x48\x44\xd6\x58\xca\xe2\xa4\x8f\xc8\xa5\xe9\x88\x30\x39\x2a\x35\xb3\xdf\x57\x03\x33\x83\x3c\xec\x78\x0b\xa7\x8c\xb9\x60\xa4\x51\x90\x8a\x9b\xd0\x48\xa6\xa8\x92\xc2\x00\x60\x64\xd3\x92\x45\x35\xa9\x2b\xe2\x82\x99\x21\x69\x67\x12\x95\x09\x39\x19\xc2\xe4\x6b\x39\x17\x33\x05\x69\x17\x92\xc2\xb3\xaf\x21\x9e\x86\xa9\xe5\xfa\xe4\x68\xfa\x1c\xc2\x2c\x45\x15\x3a\x62\xb1\x3e\xf9\x01\xeb\x1e\x10\x6e\x10\x9c\x35\x36\x92\x6b\xc9\x1b\x00\x60\xa8\xd3\xfe\x08\x4e\x24\xfa\xa7\x26\xd3\xf7\x24\xbb\xa5\xef\xc7\xfd\x4a\x4d\x40\x7c\xca\xc6\xa5\x37\x65\x07\x27\x3a\x65\x6e\x46\x7e\x0a\xd5\xcd\xd1\x44\xef\xf6\x7e\x87\xb2\xce\x97\x39\xf4\xe6\x1d\xc7\x1f\x5c\x97\x84\xe7\x12\x87\x35\xd6\x90\x1a\xa8\x61\x00\xd0\xb7\x31\x90\xbc\x7d\xb1\x37\xb3\x4b\xa9\x6f\xe2\xc7\x90\x04\x2c\x36\x29\x0e\x15\x99\x65\x91\xf2\x11\xb3\x31\x41\x3f\xfd\x42\x7e\x60\x88\x45\xe6\x3b\x1c\xc1\x7b\x39\x32\x90\x70\xc3\x21\x10\xa3\x43\xf2\x5e\xa7\x84\xdb\x48\xf9\xaa\xb1\x82\x58\x4d\xaf\x01\x80\x46\x66\x2d\xe1\x0c\x47\x25\xe4\x07\x51\x82\x63\x9e\x63\x9b\xf2\xfe\xc5\xf3\xf1\x6a\x88\xa1\x24\x1f\x02\x3a\x7e\x55\x6a\x54\xc1\xcf\xed\xfe\x19\xb7\x49\x54\xaf\x84\x6c\x36\xc5\xcc\xfe\x21\xaa\x9e\x3a\xbb\xf6\x09\x56\x81\xfe\x47\xc3\xa0\x60\x0f\xf3\x13\x00\xd4\x93\xec\xa3\xac\xdd\xa1\x43\xb4\xd7\x24\xf7\x88\x56\x7a\x19\xc6\x36\xfa\x14\xc3\x2b\xc3\x27\xee\x23\xe3\x4e\x6c\x75\x52\x16\x33\x3f\x58\x23\xcd\x85\xa5\xb5\x99\x9e\xb9\x9d\xf5\xc4\x3e\x0c\xd9\xc1\xde\xbf\xf6\x46\x1e\x87\xc3\xd2\xc8\x24\x50\xb9\xfe\x00\x50\x5e\x70\x87\x19\x0f\x82\xc6\xc4\xce\x05\xa5\xa1\x56\xa2\xbf\xa8\xa6\x88\x4a\xd1\x9d\xb4\xe7\x31\x36\xa2\x82\x98\xd0\x04\x15\x91\x7d\x90\x5a\x8a\x9d\xf0\xb3\xe7\xf5\x8c\x1d\xc2\x1d\x76\x43\x39\xb1\xc2\xc8\xb5\xd7\x31\x08\xc1\x94\x46\x13\xbe\x59\x20\x04\x80\x92\xc2\x9f\xa2\x6f\xdb\xa6\x5e\xfe\x94\xb0\x3a\xb8\xba\xec\x6b\x6e\x50\x58\x60\xe9\xef\xd4\x93\x51\xab\x4a\xee\x44\xa7\xc4\xd9\xc8\x1b\x03\x53\x93\x4a\x8b\x89\x9e\xc9\xe9\x1b\x8a\x9c\xed\xde\x64\xfb\xca\x7a\xd7\x2d\x41\x57\x48\xc3\x34\x57\xe3\x6d\xc4\xc5\x00\x50\xd6\x09\xaf\xd0\xda\x02\xd6\xd4\x5a\xe3\xeb\x83\x8e\x56\xf7\x23\x9f\x84\xa2\xab\xca\x52\xb7\x47\x6e\xab\x54\x8d\x5e\x19\x8b\x2f\x17\x04\x3a\x27\xf6\x97\xfe\xf2\x0c\x4f\x3b\x56\xb2\xc9\xee\x4f\xd6\xd3\xe2\xa4\x75\xdb\xd1\xae\x85\x5b\x34\x33\x70\x93\x92\x77\x00\x50\x94\x45\x18\x5a\xa8\x7f\xd2\x8e\x13\x78\xaf\xc0\x9f\x0d\x6b\x91\xc2\x90\x33\x75\xac\x54\xdd\x88\x86\x9a\x53\x51\x53\x31\x0f\xab\x1e\x07\x3a\x26\x86\x57\x7c\xf4\xcc\x4b\x33\x2a\xeb\xb2\x37\xce\xca\x2a\x21\xad\x3b\x88\x7a\x5b\xf4\x5a\xf3\x2a\xee\xac\xf4\x23\x00\xe4\xd7\xa2\x1e\x0e\x21\x87\x1e\x3e\x4e\xce\x44\x4a\xa3\xf5\x31\x17\x72\xef\xc6\x79\x64\x24\xa2\xb7\x25\xee\x88\xf5\xc7\x2c\xa4\x5a\x05\x61\xf2\xdf\x67\xfc\xf1\xa4\xe2\x60\xf6\xb8\x6d\x57\x01\x07\x1d\x6c\xd0\x41\x0e\xc6\x0e\xa8\x3d\xa1\xe5\x13\x0f\x00\xc0\xb2\xa2\xe9\xb1\x8f\x64\x1d\x8b\xd6\x27\x9d\xc9\xfe\x18\xa7\x8c\xd1\x43\x06\x25\xfc\x49\xef\xca\x1d\x4c\x59\x1a\x73\x1f\x7d\x2f\x3d\x2e\x70\x21\xaf\x27\xf3\xa5\xa7\x2e\xce\x14\x59\x6f\xcb\x21\x3c\xc4\xec\x35\xe0\x93\x6e\xe2\x06\xd5\x3a\x69\x8a\xa4\x68\x00\x98\xfd\x34\x06\xeb\x05\xa2\x37\x0e\x45\x9c\xce\xda\x90\xa8\x87\x66\x64\xdf\x4b\xbe\x9f\xee\x89\x2c\x4b\x6b\x8c\x09\x42\x95\x22\x4e\x05\x96\x62\x3a\xb3\x07\x3d\xda\xb1\x9e\xa8\x5c\x5b\x67\x82\x7a\xbe\x89\x41\x30\xc9\x9e\xb0\x4e\xad\x8d\x5a\x43\x76\x01\x80\x59\x45\x57\x66\x1a\xa5\x99\xa6\x2a\x16\xd0\xd2\xbb\xd3\xfd\x51\x56\x88\x16\x84\x28\x4d\x3b\xeb\x49\xd6\x78\x74\x08\xd2\x0c\x59\xbd\xed\x3c\xaa\x09\x1d\xe5\xb1\x2c\x8f\x90\x1f\x60\xd3\x84\x2b\xc7\xe3\xf5\xc7\x0a\xe6\x88\x4f\xd4\x0e\x51\x0e\x52\x37\x02\xc0\x78\xc1\xa0\xd2\x25\x49\x47\xb3\xd5\xf0\xa3\x29\x95\x39\x1f\x91\xf7\xd2\x9a\x73\x2f\xa7\xf4\x20\x74\xd0\x2d\x51\xf6\x59\x97\xf2\x1e\x05\xdc\x40\x96\xe0\xc0\x26\x3f\xf4\x5e\x42\xa6\x8d\x11\x56\x95\x38\xae\x7f\x81\x70\x9d\xd2\xa6\x76\x86\x7c\x94\x4e\x01\x80\xb1\x84\xb5\x92\x7a\x38\x7e\x73\x5e\x26\x2e\x23\x11\x97\xdf\x95\x43\x4b\x7e\x82\x73\x4d\x3e\x94\x26\xc0\x1f\x8b\x34\x46\xa0\x0b\xbc\xfc\xdf\x64\x4b\x89\xef\xdd\x8b\x72\x3f\x91\x0f\x5a\xb7\xe6\xd5\x51\xeb\xf4\x4b\xf0\x55\xf4\xe3\x6a\x77\x48\x17\x98\xe7\x01\xa0\x6f\x61\x37\x91\x73\xa3\x46\xa9\x75\xf9\x91\xb1\x12\x5a\x4c\x56\x7d\x42\x20\x5d\x2d\x71\x3e\x39\x9a\xde\x16\xde\x96\x56\xc3\x60\x6c\x3d\x9f\xa9\xce\xf4\xda\xd8\x96\x73\x97\xb5\xc6\x7a\x03\xfa\x1e\x5b\x55\xbf\x04\xb7\x9c\xb3\x62\xd9\x2a\x62\x05\xe7\x1f\x00\xb4\x5c\xee\x27\x62\x76\x38\x4b\x48\xc7\x48\xa3\x92\x84\x09\x99\x20\x16\x2d\x74\x4e\xa8\x4d\xb8\x2a\x5c\x1c\x26\x4c\x09\x15\xfc\xf2\xbb\x91\xa1\x2b\xb8\xb3\x51\x39\xdb\x44\x70\x74\xfd\x38\x2a\x57\x50\xa6\xbf\x33\x7f\x4c\x90\xb1\x2c\xab\xe0\x96\x40\x0f\x00\xea\x47\xfe\xb3\x82\xe8\x90\xa2\xd2\x33\xe8\x94\xf0\x0b\x25\xaf\x33\xee\x46\x6b\xc9\x27\xe2\xa5\x71\x7b\x8b\xe7\x43\xf7\x26\x65\x15\x2b\xf9\xad\x49\xc3\x15\x29\x6f\xd8\x9f\x79\x45\x06\xd7\xf7\xe4\x06\x4a\x9f\xeb\xf7\xe6\x9b\x49\x84\xcb\x1e\x15\x78\x88\x66\x01\xa0\xee\x14\x32\x09\x4d\xdb\x6b\xaa\x1e\xa3\x5e\x87\x75\x56\x1e\xcd\x48\x8b\xb2\xae\xc8\x8f\xb7\x8b\xed\x2c\x5f\x13\x9a\x94\xb8\xb7\xf4\xda\x96\xa1\xd4\x6b\x25\x88\x0d\x15\x99\xa6\xc5\xbf\xd7\x7f\x45\x3e\x29\xf2\x35\x58\x96\xd7\x25\x4b\x57\x57\x21\x40\xc9\x66\x00\xa8\x74\x91\x31\xc1\x3a\xf8\x59\xbd\x01\x8a\x15\x06\x6a\x2f\x66\xac\x8d\xcc\xad\xd9\x14\xaf\x10\xab\x52\xb5\x37\xd4\x37\xe1\x4f\xc5\xc8\x96\x5f\xa9\x6b\xcb\xbd\x37\x1c\x46\xd4\x95\xe6\x5b\x9b\x23\x93\xe5\x09\x06\x99\x79\xd8\xc2\x41\xf5\x6c\xc2\x79\xa9\x37\x00\xd4\x2d\xa2\x5a\xf2\x28\xa6\x2b\xc2\x2b\xdf\x2f\xaf\x2c\x3a\x29\xf3\x7d\x7e\x7d\x1c\x36\x51\x15\x7b\x37\xf1\x4a\x98\x1c\x6f\x91\xba\xc5\x2f\x8c\x70\x2e\xe3\xef\x06\x15\x22\x3d\x07\x58\x2d\x26\x1f\x44\x47\xaf\x6e\xa7\xad\xc4\x8e\x2c\xbd\xcb\xb8\x4f\x3c\x01\x00\x67\x19\xcd\x99\xec\x8b\x1a\x8b\x76\xce\xdb\x85\x1e\x8e\xd3\xcd\xf4\xcd\xb3\x4b\x18\x4f\xa0\xe5\x0b\x52\x96\x84\x42\xdc\x92\xf4\xc8\x2d\xcf\xf1\x1d\x99\x8f\xdc\x0e\x15\x9c\x40\x96\x5a\xb6\x93\xe6\x31\xb5\xab\xa5\xd4\x2a\xdc\xd7\xa5\x9d\x0c\x24\x29\x04\x00\xf6\x03\x9a\x98\x24\xcd\x5d\x1d\x17\x8e\x19\x40\x45\x26\xfc\x43\xec\x45\x5f\x4f\x3e\x1c\xff\x2e\xcf\x35\x8d\x1d\x8a\xcf\xff\x88\x28\xd9\x12\x8f\xbb\x9a\xfd\xd0\x6d\x13\xe1\x39\x2a\xc8\x12\x4f\x0a\xce\x57\x59\x9d\x4a\x55\x22\xa8\x2e\xbd\x42\x5f\x20\x1b\x01\xc0\x66\xd3\x55\x0a\x2e\x66\xf1\x52\xce\xa0\xfd\x73\x56\xa6\xfd\xc9\x30\x43\xf6\x20\x4c\xe3\x2a\x51\xfb\xb3\x1a\x42\xa2\x31\xbb\x90\x9e\xbe\xd9\xf9\xb7\xd0\x8a\xae\x64\xbc\x51\xbe\x92\xc5\xd7\x82\x0f\xf8\x4d\xab\xd7\x91\xfb\x88\xc7\x96\x5e\xa3\x6b\x51\x57\x03\xc0\xba\xcd\xc0\x13\x3c\x33\xbc\xb2\xfc\x73\xfb\x11\x73\x39\x1e\x69\x5f\xb3\x46\x72\x75\x62\x31\x48\x65\xb4\xee\xf6\xad\xa8\xb0\xbc\xad\x3e\x5c\xcc\x35\xac\xcc\xe5\x12\x36\x07\x3f\x6b\x81\x27\xa0\x88\x87\x74\xa7\x49\xcd\x14\xf6\xd2\x77\xb4\xb5\xf4\x6d\x00\x30\xe7\x59\x4a\xb8\xe2\x94\x21\x0c\x07\x49\x4a\x9b\xce\x1b\x48\x6d\x45\xd8\x63\x43\x62\x22\xb2\x4a\x71\xcf\x82\x03\x90\x6b\x08\x5c\xef\x23\xa8\xa7\x44\x57\x17\x8d\xbc\x76\xb2\x96\xc5\x32\x3c\xa0\x5a\xe9\xf6\x10\xa5\xf4\xe4\xa5\x90\xea\xc4\x64\x02\xc0\xdc\xc0\xae\xcd\xc7\x24\xcc\x52\x3c\xb3\xeb\x92\x1d\xa9\x8a\xc9\x30\xf5\x18\xb5\x2d\xea\x79\x46\x32\x8d\x19\xb4\x28\xcb\x97\x9e\xea\x75\x08\x19\xcb\xd8\xea\x1c\x87\xde\xcf\xdc\x66\xde\x86\x75\x61\x15\xe8\x7e\x29\x58\xca\xde\xa3\x12\x47\x51\xe3\x1c\x03\x80\x91\xc8\x6d\xc7\x94\xc4\xa6\xf0\x2b\x33\x7f\xc5\x8f\xf0\xc5\x49\x75\x49\xd7\xf8\xd9\x91\x75\xa9\x1d\xfc\xb4\x6d\x53\x19\x83\x7c\xd4\xe6\xa7\xd9\x31\x7c\xa2\xd3\xf5\xdc\x51\xbe\xc4\x9c\x96\xd7\xc5\x6f\xd5\x9d\xc7\xff\xe4\x5f\x57\x69\x22\x6f\xe2\x1f\x02\x80\x7e\x97\x5f\x87\x4e\x8c\x92\xca\x03\x10\x6d\xb1\x94\xe2\xd2\x44\x6c\x02\xb7\xe8\x62\xc4\x9e\xe4\xe3\x85\xbf\xb7\x39\xa4\xab\x15\x1a\x6f\xf6\xc8\x3c\x23\x4b\x73\x42\x20\x2b\xa5\x55\xe6\xe9\x98\x36\x49\xc7\x6a\x1b\xfc\x5a\x71\xb3\xea\x22\x52\x8b\x28\x0d\x00\x3a\x59\xb8\x1e\xf5\x23\xf2\x60\x85\x17\x22\x2c\xa6\xb8\xdc\x2e\x71\x49\xfc\xee\xd2\x7f\x11\x21\x49\x2f\x4a\xfa\x02\x26\xd2\xb6\xc9\xcf\x6e\xd6\xce\x5c\x54\x5c\xed\x14\x93\x33\x5f\x94\x6e\x8e\xc6\x6c\x2e\x54\x5f\x1d\x85\xbb\x2f\xa5\xa8\x6e\x20\xe1\xc5\x35\x00\xd0\x83\x85\x4f\x51\xfb\x23\xc6\x6b\xc8\x08\x95\xe8\x87\xd5\x06\x09\x0f\xe2\xde\x57\x1e\x8b\x30\x4b\x32\xa8\xf0\x0a\xf8\x9a\x5a\x57\xd6\xb9\x59\x07\x91\x55\x1a\xe7\x84\xce\xc1\xca\xef\x99\xef\x42\xdf\x29\x56\x5d\xdd\x88\xcb\x91\xcd\xa8\x16\x93\xd6\x4a\xfe\x3b\x41\x5d\x14\x92\xf7\x8c\x60\x1f\x71\x37\x0b\x4b\xf8\x1d\x7d\x2d\x09\x59\xd0\x1b\x77\x31\xd2\x8e\xd8\x9c\x38\xb7\x2d\x96\x74\x32\x95\xe5\xf9\x90\xdc\x8b\x70\x74\x0c\xa3\xba\xe4\x38\x99\x2a\xd3\x20\x9a\xab\x5d\xcf\x5c\x8a\x5b\xb3\xb8\x85\x1d\x48\x7c\x00\x00\x4f\x91\x96\x9e\xa7\x8c\xab\x8a\x96\x65\xb6\xe3\x49\x71\xdb\x13\x1f\x12\x84\x89\xcb\x23\x6a\x0b\xd8\x29\x6b\x03\xda\x89\xfb\xd3\x51\x9e\xfe\xa4\xd1\xcc\x2f\x0e\x7d\x14\x32\xf2\x90\x49\x07\x2d\x0b\x73\x42\x9b\xca\x28\xc5\xcd\x2f\xbe\xc8\x1a\x20\xa5\x02\xc0\xed\xa4\x35\x62\xdc\xf2\x47\xe3\x70\x08\x88\x9d\x4c\x54\x48\xb4\xc4\x5b\x26\xd7\x85\x0f\x13\xfc\xd2\x08\x01\x06\x05\x25\x08\xb1\x47\x3b\x69\x51\x76\xa7\x03\x86\x7c\x02\x15\x64\x42\xa4\x5e\xce\x5f\xa6\x1d\xc7\x50\x22\x68\x2d\x3e\xce\x92\x92\x4d\x00\xe0\x52\xe9\xfa\x28\x3f\xf4\xa9\x14\x76\x86\x3b\x66\x3c\xed\x68\xbc\x2c\x1f\x95\xf1\x22\x4c\x82\x7d\x91\x15\xb6\xf5\x33\x1e\x9d\x33\xbb\xa9\xb9\xc0\x1c\xf5\xd8\xbe\x94\xb4\x3c\xef\xad\xf1\x4f\x4a\x1a\xde\x40\xdb\x8a\xf6\x8d\x58\xb3\xf8\x2a\xf3\x00\x55\x19\x00\xce\x0d\x06\x31\x57\x1f\x99\x9b\xf9\x3b\x5d\x25\x77\x38\xfb\x6c\x1c\x06\x7d\x00\xc9\x0f\xa5\xe7\x25\xa0\xca\xfc\xbe\x61\xdd\x31\x0f\xdc\xdf\xe2\x3d\xb0\x46\x76\xdf\x0a\x30\xf8\x63\xc6\x85\xa4\x49\x22\x46\x5b\x8d\xda\x4e\x89\x58\x3c\xc8\x38\x4d\x37\x07\x80\x3d\xc3\x5c\xc8\x89\xc9\x4a\x47\xd7\xa6\x9e\xcc\xd1\xc6\xfc\x8d\x4d\x41\xce\xe6\xa3\x42\x18\xa8\x49\x9c\xd2\x96\xe9\x3c\x43\xfc\x03\x77\x6d\x6c\x46\xc1\x6e\xbb\x50\xfc\x53\x52\xad\xb1\x0b\x71\x07\xe5\x91\xd6\x3f\xca\x6e\xfa\xea\x25\x0e\xf4\xdb\xcc\x20\x00\xd8\xae\x6c\x59\xd6\xe7\x74\x7f\xd2\xe7\x14\x3b\x84\x1f\xb9\x31\xfa\x43\x56\x01\x25\x65\xbb\x7d\xce\x2d\xea\x16\xdf\x6f\x28\x1f\x5a\xc0\x46\x0f\xcc\x47\x7a\xac\xed\x59\x6c\x0b\x83\x67\x34\x4d\xb8\xcf\xfc\xa0\x6d\x40\x36\x62\x3b\x2f\x29\xa7\xed\xe4\x24\x00\xc0\x8a\xe0\xee\x40\x0c\x26\xb7\x72\x77\x25\xed\x4a\x03\xdc\x86\xa8\x43\x19\x5c\x6e\x69\xb0\x51\x96\x2e\xf7\x8c\xef\xe2\x9c\x8f\xdc\xfe\x0d\x72\xd4\x0b\x9e\x89\xed\xc6\xbc\x69\x5e\xbe\x51\x17\x3e\x85\xf7\x4e\xdb\x8f\xf8\x97\x6f\xbe\xe4\x07\xf5\x26\xdf\x0e\x00\xe6\x79\x7e\x5a\xc6\x91\xc4\xdc\xc2\x9e\x44\x6c\xf2\x8d\x42\xf3\xc8\x8a\xb4\x28\x19\x3a\xc8\x17\xb1\x52\xfa\xd8\x27\x3d\x5b\x51\xba\x71\xc3\xb2\xdc\x0d\x92\xb3\x36\xdf\x31\x7b\x24\x96\x46\x67\x71\xc1\xe2\xfd\xda\x39\xc4\x0d\xa2\x3e\x65\x17\xaa\xb3\xf0\x2e\x00\xcc\x04\xc1\xe7\x0c\xfb\x84\xf8\x52\x56\xe2\xa2\xa4\x47\x25\xd2\x48\x87\x54\x9a\x9c\x1d\x38\x9b\xe1\x5b\x5c\xe6\xe3\x94\xe5\x5d\xb4\xdb\x6d\x18\x59\x54\x78\xd5\xe6\x2d\x66\xa9\xac\xdb\xa8\x03\xfb\x42\xfa\x42\xbb\xb0\xe0\xbd\xa4\x52\x39\x9b\x32\x2c\x1a\x03\x80\x69\x25\x2c\x4a\x7f\x17\xcf\xa8\xcc\x4b\xb8\x96\xa4\x50\xe1\x1d\x31\x99\x72\xb5\x6c\x36\xb0\x37\xbd\xb8\xf4\x81\x8f\x55\x66\x59\x89\xdc\x6d\x22\x67\x40\x9e\x65\x33\x8c\x66\x15\x1b\x1b\x7d\xc5\xa6\x14\xb6\x6b\xdf\x2a\xe0\xc8\x96\x28\x1f\xa0\xec\x15\xff\x01\x80\xf1\x55\xb4\x34\xe5\x1e\x03\x13\x59\x1a\x1b\xc9\xb8\x14\x93\x13\xba\x89\xe9\x10\x1f\xbc\xf5\x23\x53\x94\xc4\xf3\x98\x64\x8e\xa7\x4e\x3a\xd1\x59\x95\x88\xc3\x96\x16\xec\xf0\x9c\x83\xfa\xf9\x9c\x48\xf4\x82\xc6\x05\xae\x00\xb7\x5f\x21\x8d\x37\x4c\xf2\x04\x40\x70\x8d\xf6\x3a\x65\x35\x6d\x32\x46\x3b\xe6\x32\x3d\x29\xee\x72\xc8\x25\xfa\x40\x22\x76\x6b\x36\x23\x35\x85\xec\x21\x64\x0c\xa7\x5f\x74\x5a\xc5\x3c\x9d\xe5\x68\xf1\x8a\x55\x85\x1c\xd7\x77\x67\xb7\xe5\xa9\x69\x1c\xe3\x2a\xe3\x33\x15\xb2\x79\x0d\xa4\x73\x00\x08\xc4\xf4\xc5\xc9\xe9\x54\x6e\xdc\xbd\x98\xd5\xd4\xa9\xc4\xcd\x21\xf6\xb4\x5d\xc9\xd7\xfc\xfa\xe9\xb6\x69\x0d\x1e\x8b\xe9\x5f\x11\xcd\x8e\xa7\x18\x77\xb3\xc7\x2c\xc4\xcc\x07\x28\xb6\xbe\x06\x5b\x3d\x3f\x4a\x63\x17\x47\x40\x40\x28\x10\x78\x8e\xe4\x1c\x00\x04\x6e\x74\x6c\xd2\x1a\x92\x47\x4a\x78\xd4\x6b\xb2\x62\x1a\x39\x78\x8e\x3c\x92\x71\x68\xcb\x23\x4a\x77\x96\xd9\x26\x75\xea\xd3\x9c\x77\x0e\x1f\x69\x23\xa8\x6b\xe6\x9f\x19\x4e\x79\x7d\x7a\x67\x98\xe7\xf0\x2e\x1a\xc5\xec\x1c\xe2\x45\x85\x06\x6e\x18\xd5\x02\x00\x3e\x97\x71\x38\x51\x81\x10\x90\x69\x19\x79\xaf\x60\x53\xf6\xa2\xe0\x65\xc4\x98\x9c\x01\xdf\x61\x12\x15\xa5\xe2\xee\x47\xbe\x84\x49\x72\xd8\x4c\x5d\x95\xdf\x65\x8e\xa1\xd5\xe2\x09\x7a\x0c\x46\x04\x31\x4e\xa3\x88\xe5\x49\x89\x54\xe8\xe5\x24\xd3\xd7\x03\xc0\x6b\x65\x19\xc6\xef\xc6\xfa\xa3\xd2\x23\x4e\xe3\xe8\xe8\x8f\x41\x76\xf8\xc7\x79\x48\xdf\xb5\x05\x0e\xd8\x75\x1b\x25\xc4\x56\x3c\xb0\x3f\x42\xde\x4e\x98\x33\xfb\x47\x55\x22\x19\xe8\x85\xd0\x26\x28\xc5\x1a\xb5\x4c\x3d\xda\xd8\x22\x33\x36\x8e\xe9\x0a\x00\x77\x94\xbd\x3b\xf6\x3b\x5a\x5a\x70\x34\xdc\x0a\xf3\x9b\x78\x6a\xdb\xb7\x7c\x12\xe9\x94\x8f\x0a\xce\x90\x7c\x6b\xc3\x11\xfc\x2f\xca\x94\xdd\x6c\xc1\x1b\x9a\x97\x59\x09\xe9\x37\xfd\x80\xde\x7a\xaa\x35\xd3\x57\xe3\x36\xbd\x91\xd5\xb9\xa8\x90\xe5\xcd\x51\x05\x80\x33\xcf\x15\xc7\x24\x23\xb1\xac\xd6\xd0\x1f\xb9\x7f\x58\x43\x01\x6f\xd0\xfb\xd8\x16\xde\x96\x79\x85\xec\x62\xb7\x31\x6c\x03\x1b\xda\x11\xf1\x2f\x38\x32\x33\x37\xa2\x2b\x77\xb5\xde\x4a\x72\x07\xf7\x85\xc6\x24\x8d\xc5\xcb\x5e\xf4\x83\x99\xc6\x3b\x08\x00\x27\x9e\xbf\x2e\x7a\x63\xd6\x98\x64\x65\x48\x6f\xce\x7e\xf1\x25\xff\xaf\xb9\x7c\x71\xa2\x57\x16\x5a\x2e\x5e\xee\x96\x95\x77\x55\xf4\xd8\x6e\x29\xce\x55\xb4\xcf\x74\x92\xd0\x23\xc2\xe8\x29\x90\x8e\x89\x9c\x34\x0d\xa9\xa7\x84\x77\x15\x3d\x18\xb7\x85\x0a\x00\xb0\x07\x05\x85\x51\xaf\x33\xdf\x16\x25\x87\x08\xb2\x8f\x15\xde\xf1\x97\x23\x8f\x14\x1a\x7b\x19\xa3\x2e\xca\xca\xdc\x36\x61\x26\xa4\x33\xb6\xc3\x58\xb1\x94\x66\xfa\x8b\xe0\x29\xf9\xaa\xa7\x46\xb2\x95\x6c\xd6\xf4\xa2\x46\x8a\x93\x14\x91\x0c\x96\x48\x0b\x00\xf6\x05\xa1\x7e\xd4\x4e\xc4\x58\xc9\xbf\x90\x80\xac\xd7\x25\x9e\xfe\xd1\x39\xbf\xe5\x39\x5e\x20\xf7\x6f\x71\x8d\x9b\x03\xc6\xab\xe8\x8a\xed\x44\xfe\xdb\xc2\x09\xd3\x39\xfc\x91\xc2\x95\x7a\x76\xc4\x66\x99\xb2\x26\x81\xf2\x53\xd2\xa1\xd8\xc4\x30\x11\x2b\x03\xc0\x2e\x10\xd6\x84\xbc\x13\x9d\x89\x72\x0b\x08\x17\x21\x63\x0d\xbc\xed\x45\x9b\x13\x56\x6e\x78\x2f\xfc\x9d\x1c\xe8\xa0\x25\x3c\x99\x76\xc7\xa2\x57\x58\x97\xc9\x32\xfc\x29\xac\x44\x72\xb5\xe6\x84\x07\x30\x83\x2a\xae\xc2\xd7\xf8\x0a\x00\x44\xe1\x64\x5d\x00\x44\x90\x7e\x23\x24\x4e\xe8\x1b\x43\xf2\x7f\x2f\x54\x8f\x77\xf6\x7a\x2e\xf8\x97\x04\x36\x94\x08\x1e\xa5\x2e\xb3\xef\x12\x34\x67\xa4\x58\xec\x17\x9c\xcf\xfa\x60\x78\x53\xf0\x2c\xf7\xa4\xd6\x6f\xe1\xa2\xbc\xd7\x2a\x9b\x85\x29\x04\x07\x00\x84\x63\x64\x3c\x00\xa2\x6b\xf4\xae\xed\x9d\xfc\x87\x71\x7d\xfe\x08\x7e\x6b\x22\xdd\x2b\x9f\x7f\x39\x65\xdd\x06\x37\xfe\x81\x74\x45\x7b\x36\xff\x70\xa6\xa5\x05\x82\xdf\x95\xc3\x31\xac\x15\x2c\x46\x6b\x69\xbd\x15\x24\x62\x17\xa9\xf8\x0b\x9e\x17\xac\x00\x40\x58\x48\x51\x06\x40\x84\x63\xe8\x05\x37\x73\x9e\xa5\x2c\xdd\xca\xe4\xfc\x48\x8b\xd9\x7c\x8e\x6b\x98\x71\xdc\x8d\xcf\x0d\xcf\xf2\xb2\x7b\xce\xad\x41\xaa\x9a\xf7\x71\x27\xd0\xca\x86\xee\xbc\xdc\x7c\x1f\xad\xcb\xbc\x49\xfc\x79\x95\x64\xfe\x19\x92\x3b\x00\x82\x1d\xd4\xa3\x00\x08\xcf\x31\x5d\x83\x38\x2c\x6b\x84\x9f\x9f\x8c\x15\x95\x85\xdc\x0c\x58\xfb\x72\x64\xae\xef\xd9\xcb\x72\x6f\xdb\xf9\xb3\xcb\x31\x4e\xe6\x14\x8e\x59\xfe\x03\x83\x59\xce\x13\x7c\xa5\xd6\x49\x6e\x15\x71\x9f\x0a\x8b\x27\xa6\x1c\x07\x80\xdf\x48\x2f\x02\x40\xf0\x9d\xb5\x33\xb0\x96\x1e\x9e\x6b\xb2\xe5\x3a\xfd\x0c\xea\xb5\x67\x32\xc3\x15\x53\xe7\x1a\xc8\x78\x93\x4f\xb5\xbd\xc9\xac\xc3\xf1\xcc\x75\x58\x19\x84\xe3\x06\x77\xd8\xde\xc4\x59\xad\xa3\x1c\x37\x4a\x83\xca\x51\x6e\xd2\xff\xcc\xb5\x69\x65\x52\x01\x10\xac\xe3\x28\x04\xf4\x92\xdb\xf0\xf5\xbe\x39\x14\x7f\x42\xbf\x47\x32\x65\x81\x68\xe7\x42\xa7\x7e\x24\x31\x6d\x2d\x68\xef\xc8\xdf\xcc\x9a\xe8\x93\x54\x9c\x41\x31\xd3\x9c\xbe\x5c\xeb\x04\x2b\x8f\x31\xa0\x32\xc2\x7e\xcb\x3a\x04\x00\x97\xc4\xd1\x04\x80\xaf\xc7\xbd\x1e\xb0\xba\x00\x47\xbf\xe3\xb3\x9b\xe8\xc7\x48\xd8\x54\x46\xf2\x61\xf4\x3b\xbf\x24\x27\x30\x2b\x6c\xce\x50\x4a\x58\x11\x66\xc9\xd4\x3f\x6c\x4b\x83\x4c\x7a\x1e\x67\x89\xd6\x05\xc6\x24\x57\x55\xd5\x8b\x75\x82\x3b\x00\x00\x47\xca\x43\x01\xc0\xcb\xe1\x5b\xf9\x2b\xe1\x26\x04\x1e\xde\x2d\xf8\x59\x41\xac\xfb\x9d\x02\x0b\x41\x96\xb3\x27\x31\x59\x40\xb6\x09\x22\x9d\x12\x94\x99\xad\xa2\x04\x0a\xda\x0d\x36\xd3\x16\x09\xde\x68\x5d\xa5\xbf\x16\xcc\xab\x52\x98\x2f\x05\xc3\x60\x3d\xbb\x57\x50\x0f\x00\xf7\xb7\x00\xb9\xb5\x03\xb7\x52\xe2\xec\x8d\xc4\xaf\x91\x2c\x73\x67\x13\x42\xc4\xaf\x9d\x97\x16\x88\xc5\x47\x6d\xac\x89\x1f\xc4\x34\x33\x65\x72\xb9\x38\xc1\xc0\x83\x9a\x25\x36\xd4\x7a\x4c\x4f\x10\xbd\x52\x6d\x60\x52\x44\xa9\x20\x99\x5d\x26\xac\x00\x80\xdb\x26\x18\xdd\x2a\xc7\xa6\x14\xd6\x7a\xbb\xe1\x52\x0b\xbd\xdd\xb7\xe3\xe5\xb2\x57\x4e\x43\x84\x9b\xb2\x02\x1b\x0b\xe2\x5a\x99\x92\x99\x06\xe9\x83\xf4\x88\x41\x28\xa5\x53\x6a\xa4\x35\x44\x7b\x2e\xe1\xab\xde\x65\xaa\x88\x0f\x83\x6a\xb6\x9b\x08\x05\x00\x97\x20\xc4\x79\xc6\x95\xc2\xa8\x9f\x1b\xd6\x97\x82\xd8\x5f\x8e\xb8\x12\xc3\x04\x68\x6d\x2d\xb7\x48\xf1\x37\x95\x17\x3b\xa7\xbf\x30\x68\x2c\x4a\xc8\xda\xbf\xca\xb4\x90\x97\x7b\x5e\xdd\x58\x26\xcb\xf7\x56\x0a\x96\x3e\x22\x74\x03\x20\x0d\xa0\xb8\x02\x20\x79\xce\xe8\xf1\x54\x28\xd9\x13\x33\xe7\xf6\x55\x7e\x29\xfe\x95\xa3\x43\xf1\x58\xd2\x9d\xf5\x0b\xc5\xda\xa9\x7d\xa6\xd8\x22\x4f\x84\xa7\x41\x79\x21\x37\xfb\xcd\x2a\x63\xd9\x4d\x54\x87\xba\xb9\xf4\x17\x56\x51\x09\x21\x0d\x2e\x08\x05\x40\xf2\x85\x92\x07\x80\x44\xc6\xe8\xf0\x38\x28\x77\x8d\xf7\x74\x2b\x2b\xc6\x25\x4e\x38\x0c\x14\xdd\x48\xb9\xb6\xfe\x71\xe1\x54\xfa\x49\xd3\xc0\x42\x8f\xcc\xf7\x06\x74\xd9\x0e\x64\xe4\xaa\xd5\xd2\x19\xcc\x22\x75\x1b\xe9\x16\x9c\xb2\x12\x45\x72\x85\xb8\x0c\x00\x09\x81\xf2\x1d\x00\x89\x23\x63\xc2\x43\xad\xb0\x32\xf9\x8e\xdb\x0a\xd9\xeb\xb4\x08\x87\x12\x99\x4f\xc6\x97\xf5\x78\xe9\xe5\xac\x72\x93\x49\xe9\x26\x24\xcd\xc0\x5f\xd2\x85\xde\xb9\x6a\xb1\x04\x91\x3f\xa6\xee\x24\xfe\x4e\xa0\x28\x35\x8a\x4b\x49\x10\x00\x31\x93\x96\x0c\x80\x98\xc8\x1c\x76\x1f\x90\xf4\x66\xbc\x70\x75\x91\x44\x67\xad\xb2\x1f\x17\x7f\xcc\xc9\xb4\x1a\x11\xcb\x73\xdb\x4d\x6a\xc5\x5e\x98\x40\x83\xc5\x62\x80\x55\xd3\xfe\x23\xba\x87\x9f\x57\xf7\x15\x71\x48\xe6\x4a\xaf\x44\xb1\x54\x1f\x00\x44\x34\x86\x21\x00\xa2\x46\xb6\x9f\xbb\xaa\x28\x1e\xa9\xe3\x22\x14\x7e\x41\xa9\xd9\xa3\x84\x95\x98\xa5\x56\x3c\x21\x26\x5f\xc5\xc4\x5b\x18\x86\xdb\xa8\xff\x5c\xe8\x4d\xa8\xd7\xfe\x20\xdc\x48\x5a\xad\x1e\x2f\x34\xa0\xbc\x5f\xac\x2b\x34\xa2\xcb\x01\x10\xb2\x98\xbf\x00\x10\x3e\xe5\xd4\x6f\x74\xe4\x55\x63\x5f\x3a\x5f\xe3\x91\xf0\x58\xbb\xfb\x3c\x5c\x81\x82\xd5\x12\x1e\x87\x28\x32\x1e\xe6\xed\x20\x9b\xeb\xb7\xf2\x9e\x53\x86\xb5\x7f\xf2\x57\xd3\xee\xa9\xd7\xf1\x03\x18\xcf\x16\xd7\xf2\xcb\x59\x57\x01\x10\x58\x70\xa2\x01\x10\x74\xf0\x1c\x37\xe4\xb3\x49\xd4\x65\xce\xe6\x6c\x19\x4d\xd5\x2e\x86\x7d\x99\xae\x68\xd9\xca\x9e\xa6\x4f\x1b\x5f\xe5\x6c\x63\x2a\xe8\xef\xe5\x9c\x67\x6d\xd4\xfe\xca\xf5\x64\xe7\xaa\x9f\xe5\xde\xe4\x1c\x58\xfc\x8e\x97\xcd\xbd\x04\x00\xdf\x8d\x47\x05\x80\x3f\xcb\x47\xbb\x35\x31\x6d\x39\xaf\x9d\x0a\x99\x01\xdc\x64\xdb\x1e\x66\x05\xf7\x99\x65\x3c\xf3\x3b\xcf\xd7\xf8\x38\x2b\x8f\x77\x55\xbf\x90\xf5\x97\x1f\xa2\x3d\xce\xbe\xc8\x7f\xa2\xfe\x93\x53\x21\xb0\x5b\xb2\x96\xcb\x13\x70\x00\xe0\xd1\x04\x48\x00\xf8\x74\x01\xd3\xcd\x89\xe1\x23\xc8\x71\xda\xcc\x48\x13\xb4\xd9\x1e\x63\x1c\x11\x4c\x5a\x7a\x30\x17\x09\x6d\x8d\xab\x99\xc5\x42\xaa\x7e\x39\x6b\x93\xf0\xf8\xaa\x95\x6c\x6d\x61\x97\xc6\x3a\xf6\x3f\x61\xef\x12\x29\x77\x89\xf0\x3c\x00\x3c\x63\xa1\x17\x00\xfc\x6d\x82\x4f\xae\xb7\xe9\x0c\x31\xca\x71\x8a\x5e\x21\xae\xb3\x95\xd1\x7b\xc4\x2d\x96\x76\x0c\x67\xf1\x15\x63\x0e\xe3\x94\xb8\x53\xff\x08\x53\x28\x6e\x5f\xb5\x99\x45\x12\xd7\x68\xe0\xd8\x58\x71\xe8\x92\x09\x8e\x54\xf4\x12\x00\xee\x75\x91\x02\x00\x7c\x45\x61\x90\xab\x46\xd5\xcb\x68\x07\x07\x9b\xca\xd2\xb8\x0d\xd6\xba\x15\x9b\x13\xf3\xcd\x42\xcb\xe6\x53\x2e\xae\x75\x2b\x3d\x9f\x11\xa9\x3b\x50\xc2\xcb\xb6\x58\x61\x20\xdf\x82\x0a\x50\x99\x2d\x7a\x9c\xff\x6a\x91\x7e\xe1\xfe\x82\x74\x00\x64\xbb\x29\xad\x00\x48\xf7\x32\x03\x5c\x0e\x54\xca\x62\xed\xed\x07\x2b\x42\x13\xb4\xd7\xff\x28\xd7\x4b\x36\x36\x73\x2e\xfd\x93\xe6\xb3\xd6\xb2\xe4\x3a\xe2\xa8\xee\x2f\xf9\x91\x9c\x88\x15\x16\xc5\x22\xf4\x66\x55\xd5\x22\x27\xac\x7c\x91\x47\xe1\xea\x82\x47\x00\xc8\x5c\x29\xbd\x00\x48\x43\x99\x6b\x5d\xac\x2a\x9c\xe2\xd3\xed\x0f\x97\x2b\x27\x59\xad\x6f\x29\x1d\x4e\x5d\x66\xa6\x5b\xf2\x32\xfd\xdf\x5a\x7d\xf9\xad\xac\x0d\xba\xdf\x8a\x6f\x21\x2f\xac\x70\x29\x6a\xc7\x50\x55\xf5\x0a\x8b\x71\xfc\x45\x51\x32\x09\x91\x07\x80\xf4\x2a\x35\x08\x00\xc9\x18\x33\xd4\xf9\x76\x29\x35\xb9\xcb\x3e\xbe\x04\x9f\x96\xb6\x9e\x29\x67\x22\x96\x98\xbe\x2d\xde\x97\x75\xcd\x70\xb4\xa8\x13\x79\x46\xb7\xb7\x70\x0a\xfd\x6d\x85\x4f\xa1\x29\x36\x4c\xd5\x51\xe6\x4c\xe8\x59\x24\x90\x46\x90\x53\x01\x90\xdc\xa2\x9d\x04\x40\xe2\xc0\xf2\x72\x7a\x5a\x7c\x3f\xa3\xc5\xae\xa2\x68\x28\x73\xc1\x6a\xa0\xc8\x3c\x27\xcd\x34\xaf\x90\x9e\xdb\x69\x78\x50\xf6\x10\x93\xa1\x7b\x5c\x66\x83\xdd\xb8\xc2\x4d\x5a\x4c\x70\x57\x0d\x94\xdc\x22\x61\x16\x5d\x90\x68\x50\xe5\x00\x88\x2f\x33\x72\x00\x10\xa7\xb2\xe5\x4e\x1a\x85\xde\x39\x27\x6d\xc7\x65\xa2\xdc\x0e\xab\x1c\xe9\x07\xf4\x5b\xd3\xc5\xd2\x94\xbc\x5f\x86\xe9\x92\x77\x38\x0b\x5d\x99\x04\x43\xd8\xb7\xc2\x59\x3c\x43\x72\x51\xcd\x13\xa7\x50\x97\x2a\x02\xd1\x2b\xfa\x6d\x00\x44\xe7\x58\x16\x00\x88\x64\x9c\x5e\x47\xa2\xf8\x28\xd6\xda\x16\x2f\x36\xc7\xbd\xb3\x9c\x11\xdd\x24\x54\x9a\x5c\x16\x11\x88\xeb\x0d\x5d\x44\x66\xa4\xaf\xba\xc5\xc2\x19\xca\xc3\x15\xa9\xc2\x1e\xda\x79\xd5\x4e\x21\x97\xf1\x52\xb1\x5a\xe8\xc1\x7a\x05\x80\x30\x9e\x43\x07\x40\x48\xe0\xc5\x3b\x0c\x09\x68\x14\x65\x5b\x35\x81\x2b\xd5\xd4\xf2\x9c\x40\x93\xb6\xd5\xa4\x92\xff\x93\x9e\x60\x68\xc1\x7f\xc2\x10\xe9\x36\xf0\x3f\x30\x9f\xad\x90\xf3\xe7\xd9\x5a\x6a\x2b\xf9\x23\x1c\xbc\x92\x1a\x7f\x96\x7b\x08\x00\x41\x30\x8f\x09\x80\xe0\x24\x5f\xe4\x90\xca\x1d\x67\xe7\xdb\xd4\x72\x7b\x38\xba\x96\xc9\xdc\xd7\x9c\xdb\x26\x31\xdc\x47\xdc\x64\x43\x03\xee\x67\xde\x32\xdd\x9d\x3c\x2d\x5e\xf3\x8a\x66\x1e\x86\xef\xa7\x96\xc2\x3b\xcd\x7f\xae\x44\xe3\xab\x0a\x36\x01\xc0\xdf\x29\x08\x00\x40\xe0\x2c\x40\x3b\x78\x70\xe6\x79\x8f\x6d\xd8\x9c\x3e\x7e\x90\xa5\x27\xe7\x2b\xbf\xd3\x64\x13\xe7\xab\xc0\xcc\x70\x25\x67\x41\xd0\xa0\x7b\x94\x1b\x28\x18\x5d\xf1\x80\xdb\x2a\xf4\x52\xab\xe1\xad\x11\xe6\x29\xdd\xe4\xd5\x0b\x89\x00\xf0\x03\x84\xfa\x00\xf0\xa7\x05\x9f\x1d\x0c\x39\x96\xc2\x16\x9b\x74\xce\x62\x91\xb2\xa5\x09\x47\x4d\x94\x64\xb2\x89\xb3\x44\xb4\xc3\x50\x91\x63\x20\x7a\xa6\x7b\x9d\x23\x13\x8d\xac\x98\xe2\x2a\x8b\xc6\xd5\x3e\x72\x85\xa2\x97\x8b\xed\x78\xab\x44\xff\xf3\x0f\x44\xd8\x0f\x00\xff\xa2\x30\xdc\xee\x57\xdd\xaf\xe8\xf4\xf5\x9b\x6b\x31\x71\x79\x66\xcd\xd5\x37\x12\xdb\xd7\xf9\x55\x05\xa4\x2e\x5b\xb3\xab\xe2\x6a\xc6\x29\xad\x67\xe5\x9b\xb3\x4b\xd5\xf7\x94\x9e\x44\x9d\x55\xb6\x97\x3f\xc2\x06\x00\x9f\x62\xf7\x82\x4e\x00\x0a\xef\xff\x4f\xf2\x40\x28\x53\x68\x97\x5e\xdb\x12\x1b\xbb\x7e\x71\x8d\x43\x42\x80\x59\x61\xd5\xe1\x64\xd4\x3a\x97\x4a\xaf\xb4\xe2\x35\x8d\xe5\x0f\x11\x93\x5a\x5f\xcb\xb2\x73\x8e\xa9\x5f\x2c\x19\x44\xef\x51\x0e\x93\x3b\x60\x7f\x81\xe4\xa2\x93\x44\x53\x00\x0a\x11\x54\x3d\x00\xa4\x0b\xcc\x38\xdb\x7b\x35\xf9\xf1\x2c\xab\xce\xaa\xe1\xa4\x18\xb3\xe4\x4a\x41\x6a\xe8\x3a\x93\x8a\xf5\x19\xde\x6b\x0e\x96\x3d\xce\x62\x69\x0d\x95\x0a\x72\x17\xab\x3f\x2a\x31\xc3\x3c\x52\x46\x15\x17\xe2\x5e\x02\x62\x91\x16\xf1\x31\x00\xb2\x8f\x54\xc9\xff\x24\x8a\xb0\x6d\x6b\x2b\xeb\x92\x5f\x59\x1d\xa8\x08\x4b\x23\x99\x05\x95\x6b\x21\x2c\xd6\x69\x96\x4e\x65\x7d\x5b\xb3\xab\xe4\x19\xf2\x93\xd6\xbc\xbc\x0d\x63\xa2\x3e\x5e\x2c\xc7\xd6\x29\xd7\x14\x59\x16\x18\x83\xfd\xb2\x97\xe4\x7d\x00\x48\xfb\x68\x1f\x00\x90\x74\xb3\xb2\x6c\x1e\x96\x8d\x65\xec\xb5\x9c\x2a\x7d\x91\x39\x66\xda\x5e\x72\x3f\x27\x6b\xed\x51\xf9\x8b\xdc\x67\x6b\xe2\x8b\x5f\x63\x28\x5a\x6f\x8a\x7e\x60\xd3\xd4\x87\x0a\x87\x08\x18\xe5\x66\xd9\x05\x52\x23\x78\x23\x2d\xa7\xde\x04\x40\xf2\x98\x51\x01\x80\x78\x92\x7d\xc2\xc6\xa4\x24\x35\x27\xd3\x32\x53\x9e\x97\x2b\x33\xf5\x28\x2e\x46\x5f\x5f\xbb\xbd\xe8\x4a\xde\xeb\x35\xc6\x85\x03\xb8\x75\x5a\xb7\x0b\x4d\x09\x4d\xea\x63\xb2\x54\x52\x90\xf2\x53\x69\x38\x75\xbd\xc2\x5a\x49\x38\x7d\x08\x00\xf1\x2d\x56\x02\x00\x62\x53\xce\x5f\xeb\x4b\x85\x7f\xf2\x9b\x2d\x97\x15\x1a\xe3\x48\x26\xd3\x32\x02\xc1\x77\xad\xb1\xf4\x49\xc1\xcf\x35\x2b\xa5\xf6\xa4\x0b\x5a\x1f\x24\x2d\x94\x56\x0d\x57\x89\x13\xad\x79\xe9\x26\x31\x8a\xf1\x5e\xe1\x8a\xe8\x04\x6b\x10\x00\x51\x06\xa7\x16\x00\x91\x3a\x2f\xd7\x3a\x4f\xd2\x44\xf6\xb1\x78\x29\x31\xa7\x50\x4c\x7a\xc5\x97\xa9\xad\x6b\x75\xc5\x5b\x69\xef\xd7\x18\x8b\x9e\x33\x4c\xb4\xd5\x45\xb5\x4c\xa6\x86\x44\x94\xce\xba\xb7\xf4\xb4\xb0\x87\xb3\x65\x51\xac\x30\x89\x5b\x07\x80\x30\x86\xc7\x00\x40\x18\xc1\x27\x58\xab\x08\xfb\x59\x41\x16\x25\xc2\x46\xb6\x81\xc9\x41\x21\x85\x3d\x64\x38\x2b\xd4\xe5\x34\xad\x59\x2e\xe8\xe2\x62\xb5\x8d\x04\x57\x79\x16\x1a\xed\x82\x76\x5e\xb7\x8a\x8e\x40\xca\xe7\x2f\xfa\x25\x48\x17\x28\x02\x20\xd8\x25\x30\x01\x40\xf0\x56\x10\x65\xed\x2b\xf8\xcc\x95\x5b\x1c\x10\xec\xe1\xd9\x98\x54\x0a\xe8\xbc\xc7\x86\xa3\x02\x33\x7e\xc2\x9a\xe5\xfc\x7e\xfe\x57\x6d\x07\xfe\x80\x20\x51\xa3\x8f\xbf\x20\xb8\xac\x12\xcc\xff\x25\x54\x53\x74\xe0\xff\x16\x3a\x01\x20\xd8\x2a\x58\x00\x40\x70\x58\xd0\x65\x4d\x13\x00\x41\x98\x45\x1b\xff\xa2\xe0\xb1\x09\x9f\x5f\x2d\xdc\x6e\x38\xc8\xf7\x15\xb6\xac\x59\xc9\x57\x16\xad\xd0\x0e\xe4\xaf\x11\x45\x68\x2a\xf2\xbd\x44\x34\x15\x29\x3f\x54\xc4\x54\x64\xf1\x0b\x44\xe1\x00\xf0\x3f\x0b\x1f\x01\x20\x48\x17\xc6\x00\xa0\x00\x16\x01\x45\xa0\x04\x16\x83\x25\x40\x19\x2c\x05\x2a\x40\x15\xa8\x81\x65\x40\x1d\x68\x00\x4d\xb0\x1c\xac\x00\x2b\x81\x16\xd0\x06\xab\x80\x0e\xd0\x05\xab\xc1\x1a\xa0\x07\xf4\x81\x01\x30\x04\x6b\xc1\x3a\x60\x04\x8c\x81\x09\x30\x05\x66\xc0\x1c\x58\x00\x4b\x60\x05\xd6\x03\x6b\x60\x03\x6c\x81\x1d\xb0\x07\x0e\xc0\x11\x38\x01\x67\xe0\x02\x5c\x81\x1b\xd8\x00\x36\x02\x77\xb0\x09\x78\x00\x4f\xb0\x19\x78\x01\x6f\xe0\x03\x7c\xc1\x16\xe0\x07\xb6\x02\x7f\x10\x00\xb6\x81\x40\x10\x04\x82\xc1\x76\x10\x02\x42\x41\x18\x08\x07\x11\x20\x12\x44\x81\x68\x10\x03\x62\x41\x1c\x88\x07\x09\x20\x11\x24\x81\x64\x90\x02\x52\x41\x1a\x48\x07\x19\x00\x01\x32\x41\x16\xc8\x06\x39\x00\x09\x72\x01\x0a\xa0\x01\x06\xe4\x81\x7c\x80\x05\x38\x80\x07\x04\x50\x00\x88\x80\x04\xc8\x80\x02\xa8\x80\x06\xe8\x80\x01\x98\x80\x05\xd8\x80\x03\xb8\x80\x07\xf8\x40\x00\x84\x40\x04\xc4\x40\x02\xa4\x40\x06\x0a\x41\x11\x28\x06\x72\x50\x02\x4a\x41\x19\x28\x07\x15\xa0\x12\x54\x81\x6a\x50\x03\x6a\x41\x1d\xa8\x07\x0d\x60\x07\xd8\x09\x76\x81\xdd\x60\x0f\xd8\x0b\xf6\x81\xfd\xa0\x11\x1c\x00\x07\xc1\x21\x70\x18\x1c\x01\x47\xc1\x31\x70\x1c\x34\x81\x13\xe0\x24\x68\x06\xa7\x40\x0b\x38\x0d\xce\x80\x56\x70\x16\x9c\x03\x6d\xe0\x3c\xb8\x00\x2e\x82\x4b\xe0\x32\xb8\x02\xda\x41\x07\xb8\x0a\xae\x81\xeb\xe0\x06\xb8\x09\x6e\x81\xdb\xa0\x13\xdc\x01\x77\xc1\x3d\x70\x1f\x3c\x00\x0f\x41\x17\x78\x04\x1e\x83\x27\xe0\x29\xe8\x06\xcf\xc0\x73\xf0\x02\xf4\x80\x97\xe0\x15\xe8\x05\xaf\xc1\x1b\xf0\x16\xbc\x03\x7d\xe0\x3d\xf8\x00\x3e\x82\x4f\xe0\x33\xf8\x02\xbe\x82\x7e\xf0\x0d\x7c\x07\x3f\xc0\x00\xf8\x09\x7e\x81\xdf\x60\x10\xfc\x01\x43\x60\x18\x8c\x80\x51\x30\x06\xc6\xc1\x04\x98\x04\x53\x60\x1a\xcc\x80\x59\x30\x07\xe6\xc1\x02\xf8\x0b\xfe\x01\x08\x00\x50\x50\x58\xb4\x48\x51\x51\x49\x69\xf1\xe2\x25\x4b\x94\x95\x97\x2e\x55\x51\x51\x55\x55\x53\x5b\xb6\x4c\x5d\x5d\x43\x43\x53\x73\xf9\xf2\x15\x2b\x56\xae\xd4\xd2\xd2\xd6\x5e\xb5\x4a\x47\x47\x57\x77\xf5\xea\x35\x6b\xf4\xf4\xf4\xf5\x0d\x0c\x0c\x0d\xd7\xae\x5d\xb7\xce\xc8\xc8\xd8\xd8\xc4\xc4\xd4\xd4\xcc\xcc\xdc\xdc\xc2\xc2\xd2\xd2\xca\x6a\xfd\x7a\x6b\x6b\x1b\x1b\x5b\x5b\x3b\x3b\x7b\x7b\x07\x07\x47\x47\x27\x27\x67\x67\x17\x17\x57\x57\x37\xb7\x0d\x1b\x36\x6e\x74\x77\xdf\xb4\xc9\xc3\xc3\xd3\x73\xf3\x66\x2f\x2f\x6f\x6f\x1f\x1f\x5f\xdf\x2d\x5b\xfc\xfc\xb6\x6e\xf5\xf7\x0f\x08\xd8\xb6\x2d\x30\x30\x28\x28\x38\x78\xfb\xf6\x90\x90\xd0\xd0\xb0\xb0\xf0\xf0\x88\x88\xc8\xc8\xa8\xa8\xe8\xe8\x98\x98\xd8\xd8\xb8\xb8\xf8\xf8\x84\x84\xc4\xc4\xa4\xa4\xe4\xe4\x94\x94\xd4\xd4\xb4\xb4\xf4\xf4\x8c\x0c\x04\x22\x33\x33\x2b\x2b\x3b\x3b\x27\x07\x89\xcc\xcd\x45\xa1\xd0\x68\x0c\x26\x2f\x2f\x3f\x1f\x8b\xc5\xe1\xf0\x78\x02\xa1\xa0\x80\x48\x24\x91\xc8\x64\x0a\x85\x4a\xa5\xd1\xe8\x74\x06\x83\xc9\x64\xb1\xd8\x6c\x0e\x87\xcb\xe5\xf1\xf8\x7c\x81\x40\x28\x14\x89\xc4\x62\x89\x44\x2a\x95\xc9\x0a\x0b\x8b\x8a\x8a\x8b\xe5\xf2\x92\x92\xd2\xd2\xb2\xb2\xf2\xf2\x8a\x8a\xca\xca\xaa\xaa\xea\xea\x9a\x9a\xda\xda\xba\xba\xfa\xfa\x86\x86\x1d\x3b\x76\xee\xdc\xb5\x6b\xf7\xee\x3d\x7b\xf6\xee\xdd\xb7\x6f\xff\xfe\xc6\xc6\x03\x07\x0e\x1e\x3c\x74\xe8\xf0\xe1\x23\x47\x8e\x1e\x3d\x76\xec\xf8\xf1\xa6\xa6\x13\x27\x4e\x9e\x6c\x6e\x3e\x75\xaa\xa5\xe5\xf4\xe9\x33\x67\x5a\x5b\xcf\x9e\x3d\x77\xae\xad\xed\xfc\xf9\x0b\x17\x2e\x5e\xbc\x74\xe9\xf2\xe5\x2b\x57\xda\xdb\x3b\x3a\xae\x5e\xbd\x76\xed\xfa\xf5\x1b\x37\x6e\xde\xbc\x75\xeb\xf6\xed\xce\xce\x3b\x77\xee\xde\xbd\x77\xef\xfe\xfd\x07\x0f\x1e\x3e\xec\xea\x7a\xf4\xe8\xf1\xe3\x27\x4f\x9e\x3e\xed\xee\x7e\xf6\xec\xf9\xf3\x17\x2f\x7a\x7a\x5e\xbe\x7c\xf5\xaa\xb7\xf7\xf5\xeb\x37\x6f\xde\xbe\x7d\xf7\xae\xaf\xef\xfd\xfb\x0f\x1f\x3e\x7e\xfc\xf4\xe9\xf3\xe7\x2f\x5f\xbe\x7e\xed\xef\xff\xf6\xed\xfb\xf7\x1f\x3f\x06\x06\x7e\xfe\xfc\xf5\xeb\xf7\xef\xc1\xc1\x3f\x7f\x86\x86\x86\x87\x47\x46\x46\x47\xc7\xc6\xc6\xc7\x27\x26\x26\x27\xa7\xa6\xa6\xa7\x67\x66\x66\x67\xe7\xe6\xe6\xe7\x17\x16\xfe\xfe\xfd\xf7\x0f\xc2\xff\xed\xff\xff\xdf\xfb\x8f\xcb\xa5\x38\x03\x00\x80\xa2\x92\xf1\x7f\x62\xf0\xff\xae\xff\x8f\xbd\xc2\x22\x05\xf0\xbf\xaa\x21\x80\x42\x28\x82\x62\x28\x81\x52\x28\x83\x85\xb0\x08\x16\x43\x39\x2c\x81\xa5\xb0\x0c\x96\xc3\x0a\x58\x09\xab\x60\x35\xac\x81\xb5\xb0\x0e\xd6\xc3\x06\xb8\x03\xee\x84\xbb\xe0\x6e\xb8\x07\xee\x85\xfb\xe0\x7e\xd8\x08\x0f\xc0\x83\xf0\x10\x3c\x0c\x8f\xc0\xa3\xf0\x18\x3c\x0e\x9b\xe0\x09\x78\x12\x36\xc3\x53\xb0\x05\x9e\x86\x67\x60\x2b\x3c\x0b\xcf\xc1\x36\x78\x1e\x5e\x80\x17\xe1\x25\x78\x19\x5e\x81\xed\xb0\x03\x5e\x85\xd7\xe0\x75\x78\x03\xde\x84\xb7\xe0\x6d\xd8\x09\xef\xc0\xbb\xf0\x1e\xbc\x0f\x1f\xc0\x87\xb0\x0b\x3e\x82\x8f\xe1\x13\xf8\x14\x76\xc3\x67\xf0\x39\x7c\x01\x7b\xe0\x4b\xf8\x0a\xf6\xc2\xd7\xf0\x0d\x7c\x0b\xdf\xc1\x3e\xf8\x1e\x7e\x80\x1f\xe1\x27\xf8\x19\x7e\x81\x5f\x61\x3f\xfc\x06\xbf\xc3\x1f\x70\x00\xfe\x84\xbf\xe0\x6f\x38\x08\xff\xc0\x21\x38\x0c\x47\xe0\x28\x1c\x83\xe3\x70\x02\x4e\xc2\x29\x38\x0d\x67\xe0\x2c\x9c\x83\xf3\x70\x01\xfe\x85\xff\xe0\x7f\x05\x00\x80\x0a\xff\x16\xfd\x55\x5c\x50\x9a\x5f\x3c\xb7\x64\x56\x79\x66\xe9\xb4\xca\x94\xea\xa4\xda\xc4\xb2\x71\xf5\x31\x8d\x51\xcd\x91\xe5\xc3\x2b\x86\x56\xfe\xd1\x1a\xd4\xfe\xbd\xea\x97\xce\x4f\xdd\x81\xd5\x3f\xd6\x7c\xd7\xfb\xa6\xdf\x6f\xf0\xd5\xf0\xcb\xda\xcf\xeb\x3e\x19\x7d\x34\xfe\x60\xf2\xde\xb4\xcf\xec\x9d\xf9\x5b\x8b\x37\x96\xaf\xad\x7a\xd7\xbf\xb2\x7e\x69\xd3\x63\xfb\xc2\xee\xb9\xfd\x33\x87\x6e\xc7\xa7\x4e\x4f\x9c\x1f\xbb\x3c\x72\xed\x72\x7b\xb8\xe1\xc1\xc6\xfb\xee\xf7\x36\xdd\xf5\xb8\xe3\xd9\xb9\xf9\xb6\xd7\x2d\xef\x9b\x3e\x37\x7c\xaf\x6f\xb9\xe6\x77\x75\x6b\x87\x7f\x7b\xc0\x95\x6d\x97\x03\x2f\x05\x5d\x0c\xbe\xb0\xfd\x7c\x48\x5b\xe8\xb9\xb0\xb3\xe1\xad\x11\x67\x22\x4f\x47\xb5\x44\x9f\x8a\x69\x8e\x3d\x19\x77\x22\xbe\x29\xe1\x78\xe2\xb1\xa4\xa3\xc9\x47\x52\x0e\xa7\x1e\x4a\x3b\x98\x7e\x20\xa3\x11\xb1\x3f\x73\x5f\xd6\xde\xec\x3d\x39\xbb\x91\xbb\x72\x77\xa2\x76\xa0\x1b\x30\xf5\x79\x75\xf9\xb5\xd8\x1a\x5c\x35\xbe\x8a\x50\x59\x50\x41\x2c\x27\x95\x91\x4b\x29\x25\x54\x39\xad\x98\x5e\xc4\x28\x64\xca\x58\x52\xb6\x84\x23\xe6\x8a\x78\x42\xbe\x40\xc0\x17\xf2\x44\x5c\x31\x47\xc2\x96\xb2\x64\xcc\x42\x46\x11\xbd\x98\x26\xa7\x96\x50\x4a\xc9\x65\xa4\x72\x62\x45\x41\x25\xa1\x0a\x5f\x8d\xab\xc1\xd6\xe6\xd7\xe5\xd5\x63\x1a\xd0\x3b\x50\x3b\x73\x77\x21\x77\xe7\xec\xc9\xde\x9b\xb5\x2f\x73\x3f\xa2\x31\xe3\x40\xfa\xc1\xb4\x43\xa9\x87\x53\x8e\x24\x1f\x4d\x3a\x96\x78\x3c\xa1\x29\xfe\x44\xdc\xc9\xd8\xe6\x98\x53\xd1\x2d\x51\xa7\x23\xcf\x44\xb4\x86\x9f\x0d\x3b\x17\xda\x16\x72\x7e\xfb\x85\xe0\x8b\x41\x97\x02\x2f\x6f\xbb\x12\xd0\xee\xdf\xb1\xf5\xaa\xdf\xb5\x2d\xd7\x7d\x6f\xf8\xdc\xf4\xbe\xe5\x75\x7b\x73\xa7\xe7\x1d\x8f\xbb\x9b\xee\xb9\xdf\xdf\xf8\x60\xc3\x43\xb7\x2e\xd7\x47\x2e\x8f\x9d\x9f\x38\x3d\x75\xec\x76\x78\x66\xff\xdc\xee\x85\x6d\x8f\xcd\x4b\xeb\x57\xeb\x7b\xad\x5e\x5b\xbe\xb1\x78\x6b\xfe\xce\xac\xcf\xf4\xbd\xc9\x07\xe3\x8f\x46\x9f\xd6\x7d\x5e\xfb\xc5\xf0\xab\x41\xbf\xfe\x37\xbd\xef\x6b\x7e\xac\x1e\xd0\xfd\xa9\xf3\x6b\xd5\x6f\xed\x41\xad\x3f\x2b\x87\x56\x0c\x2f\x1f\xd1\x1c\xd5\x18\x53\x1f\x5f\x36\xa1\x36\xa9\x3a\xa5\x32\xbd\x74\x46\x79\x76\xc9\xdc\xe2\x79\xa5\x05\xc5\xbf\x8b\xfe\x29\x40\xf0\xbf\x1c\xf8\x5f\x0e\xfc\xf7\x12\xf8\x25\x6d\x35\xd3\x2d\x85\x30\xc8\x25\x30\xdb\x70\x35\x84\xd1\x35\x21\xfe\xe6\x00\xc2\x14\x8b\xed\x34\xab\x58\x08\x11\xef\x22\xd6\x38\xde\x84\x10\xb9\x37\xea\xd5\xc6\x60\x08\x51\xdf\x12\x74\x7d\x4f\xc0\x63\x68\x90\x3a\xb2\x1d\x0f\x17\xa1\xb4\x73\xf4\xe2\x2f\xfd\x63\xa0\x82\x31\xe7\x32\xf6\xfe\xed\xc9\x25\x91\x77\x63\x4c\xff\x9a\x66\x4b\x85\x56\xc4\x0f\x0b\xed\x88\xda\x92\xd3\xb4\xe8\x05\x85\xf4\xa8\x86\x4c\xee\xd6\x79\x66\xca\x9b\x03\xe3\xc2\x73\xf3\xa1\x49\xcc\xa6\x6f\xa2\xf1\xb9\xc7\x09\x2b\xdb\x2e\xc9\xf8\x73\x4e\xb1\x53\xd7\xdf\xc8\xcb\x66\xdf\x47\x2b\x3d\x3a\x5c\xea\x3d\xdb\x16\xa1\xfe\xa6\xb7\xf4\xe8\x6c\x74\xa8\xce\x6f\xb3\xf2\xd0\x59\xbf\xed\xe7\xc6\x2f\x96\xfb\xcc\x7e\x0c\x7e\x30\xd1\x20\x37\x9f\xab\x0c\x3a\x3f\x59\x2b\xb5\x9e\xfb\x16\x64\x3f\xa5\x2e\x6a\x1a\xc9\x08\x16\x4d\x6d\x13\x85\x0d\x44\x6f\x2f\x9c\xaa\x17\xba\x7f\x72\x08\xd9\x38\xbd\x99\xe7\xf8\xfa\x4b\xa8\xfb\x74\x03\xe7\xf8\xb3\xfa\xb0\xbd\xd3\x9d\x1c\xeb\x07\x17\x23\x88\xd3\xef\x39\x2e\x9d\xed\x11\xcd\x33\x54\xc6\xcb\x9b\x8b\x22\x1d\x66\x2e\xd2\x31\x10\xfa\x99\xfa\xbd\xd3\x8d\x84\x30\x98\xb7\xed\xa5\xa1\x0d\x84\x71\x09\x81\xfa\x26\x21\x10\xa6\xe2\x82\xbb\xac\xbc\x20\xcc\x46\x87\x3f\x70\x7a\x0d\x21\xaa\x3a\xb2\x6d\xc3\x14\x9c\xc5\x86\xc4\x9f\xdb\x9a\x0b\x5b\xf3\xda\x52\x82\x82\xbf\xc3\x65\xf9\xc8\xcc\x8e\xf8\xd2\x7f\xd9\xe8\xfd\x68\x7b\xc4\xa9\xbf\x87\x50\xb3\xa4\xba\x7c\xc6\xc2\x00\xb2\x96\xd7\x45\x09\x5e\xd8\x9c\x45\x29\x29\x62\x3b\xcd\xa7\x21\xa8\xf5\xdf\x45\x6f\xe6\x66\xd3\x35\xf7\x5f\x90\xbe\x9b\x23\xa7\xcc\x1e\xef\x2e\xae\x9b\xd3\x4e\x3c\xdc\xf6\xa9\xe4\xf5\x6c\x7b\xdc\xa5\x1b\x98\xb2\xdb\xb3\x3a\x31\x06\x8f\xcf\x54\xa5\xcc\xfc\x88\xf8\xf2\xee\x72\xd5\x9d\x19\x87\x30\xc4\xa0\x65\x9d\xc7\x4c\x53\x48\xf5\xd8\xfb\x6a\xe5\xd9\x77\xc1\x4f\x27\xaa\xe4\x3e\x73\xda\xc1\xf4\x89\xaf\x45\x2d\x53\x39\xc1\xe9\x93\x72\x69\xeb\xaf\xee\x10\x95\xc9\x27\x52\x8f\x2f\x3f\x43\xba\xa6\xb0\xa2\x8a\xde\x4b\xe1\xdd\x53\x4b\xa5\xe5\xcf\x1a\xc2\xfb\xa7\xfe\x0a\xee\x3e\xec\x8b\x2c\x9b\x56\x15\x82\xbb\x36\x91\x7f\xa6\x6b\x78\x9b\x6f\x64\x45\x9d\x98\x59\xce\x3e\xd9\x71\x37\x7a\xf1\x0c\x96\xd9\x04\xe1\xd6\x5c\xbf\xcd\xba\xf5\x10\x86\xb3\xb7\x32\x0d\x72\x20\x8c\x2f\x0f\xb4\x31\xf9\x04\x61\x26\x32\xa8\x74\x7d\x30\x84\xc8\xd1\x90\x32\x07\x3b\x08\xb1\xfd\x11\x2d\xee\x9f\x20\xc4\x5f\x8e\x39\xe9\xbb\x15\x3e\x23\x2c\x4f\xf8\x1c\xb8\x13\xae\xc0\x57\x23\x74\xe3\x39\xff\xc2\xf2\x3e\xa3\x0e\x64\xad\xfd\x8b\xc8\x5f\x8f\x7f\x89\x0f\x5f\x68\x43\x1d\xe2\x58\xd2\xb6\xcf\x77\xe5\x1c\x28\x1e\xe1\xbb\xcf\xbb\x64\x5e\xab\xed\x97\xb8\xce\xe5\x66\xf4\xed\x7b\x2e\xdf\x38\xe7\x97\xea\xda\x94\x27\x9f\x9a\xdd\x99\xf4\xb0\x8d\x5a\x61\x3b\x33\x14\x7f\xe3\xe6\x68\xf5\x8f\x99\xb7\xd1\xef\xbb\xd5\xab\xcf\x4e\xff\x88\x4c\xfb\xf8\xaa\x41\x38\x7d\x38\x6c\xf1\x68\xde\x8e\x45\x33\x46\xa1\x09\x63\x7a\x75\xbe\xb3\x49\xdb\xab\xc7\x7b\xcb\x9a\xff\xcf\x3a\xb2\x2f\x24\x7a\x62\x97\xfc\x71\xbf\x69\x58\xc2\x04\x2c\xee\x7b\x9f\x15\xb6\x63\x72\x4a\xca\x79\xee\x11\xd9\x31\x79\xb4\x70\xe1\xd1\x40\x24\x73\xea\xa6\x88\x79\xf7\x49\x74\xca\xd4\x41\xf1\x9e\x5b\xb7\xa2\xcf\x4c\x1b\x0b\xf5\x3b\xf4\x63\xe4\xd3\x37\xb9\x9f\x2f\x81\xd8\xc8\x19\x25\x4e\x15\x84\x01\x1f\xfc\x2a\x56\x1f\x86\x30\xfc\x91\x5f\xb6\xfe\x21\x08\x93\xd4\xfd\xef\x1a\x37\x41\x98\xb5\x38\x70\x93\x95\x3e\x84\x98\xb8\x50\x7d\xa7\x3b\x10\xe2\x8f\x84\x53\xdc\x1d\x20\x24\xab\xc7\xe8\xf9\xb1\xe0\x39\x32\x35\xa1\x62\x7b\x23\x5c\x43\xd1\x49\x8b\x8f\x4f\xf9\x67\x43\xf8\x89\x84\x39\x99\x7f\x7d\xb1\x10\x4b\x22\x54\x2c\x6c\xc8\x7b\xc0\xac\x67\x2f\x9b\x4f\x43\x99\x14\x66\x88\x3e\xcc\x9d\xcc\x3e\x5f\xd3\x5a\x94\x35\x3b\x8f\xb8\xb6\xdf\xac\x6c\xc3\x6c\x51\xda\xeb\xa6\xcc\x4a\xc5\x19\x71\xaa\xd1\xb9\x57\xf5\xea\xd3\x9f\x13\x6b\x6f\xf6\xef\x34\x99\xb6\x89\xdd\xfb\x62\xc5\x1e\xdb\xa9\x7b\x91\x15\xdf\x7c\xf7\x6e\x99\xea\x08\x0f\x1a\x31\xda\xd3\xff\x7f\xe3\x41\x0a\xf9\x32\x56\x51\x93\x30\xb1\x2b\xe4\xc1\x78\x7e\xc5\xf8\x8f\xd6\x70\xda\x78\x74\x55\xf2\x27\x87\x88\x75\x13\xde\x65\xf7\x7a\xae\x44\x45\x4c\xdc\x2a\x75\x7f\xac\x1e\xdd\x32\xe9\x2f\x0f\xbb\x9b\x10\xf3\x68\xb2\xbb\x48\xf9\x86\x28\x6e\xd3\x94\x72\x61\xec\x55\xc7\x38\xdb\xa9\x53\x92\xe5\x17\x57\xc6\xef\x9a\x5a\x10\xdd\x69\x3d\x96\x70\x7e\x3a\x5d\xf0\x07\xc2\x80\xaf\xde\x4f\x75\x56\x41\x18\xd5\xba\xa5\xcf\x60\x0b\x84\x69\x36\xfe\x22\x53\x03\x08\x91\x33\x81\x14\x6b\x2f\x08\xf3\x75\xb6\x2d\xb5\x86\x10\x92\x39\x61\xda\x9b\xd6\x41\xc8\xc8\x0f\x5f\xf0\x89\x82\xd7\x19\x2d\xb1\x43\xdb\x01\x5c\x46\x7b\x9d\x5a\x95\x40\xf8\xe7\x42\xed\xcb\x9a\xcd\x49\x5a\x18\x26\xec\xc3\x56\x92\x7d\xe7\x1f\xe1\x2e\xd0\xce\xf1\xae\xce\x8d\x61\x24\x92\xdf\x32\xaf\xb9\x0c\xe4\x60\x65\x9a\x7c\xff\xac\x59\xb6\xc2\x3e\xcf\xea\x9e\x99\x62\x04\xe6\xd8\xbf\xfa\xa8\xe9\x0f\x69\xae\x6d\xeb\x76\xde\x99\x6a\x4b\xb6\xbe\xd5\xb5\x3f\x69\x0a\xc4\x79\xbd\xda\x7b\xe0\xfd\xe4\x89\xa8\xad\x3f\x3e\x1f\x2c\x9f\xfc\x13\x81\x1c\x9a\x6f\x1c\x99\xfa\x1e\xae\x31\x92\xba\x47\xf5\xff\xe0\x31\x68\x1c\x5e\x3d\xb6\xad\x8e\xfc\xa9\x37\xf2\xec\xd8\xe5\x5a\xc2\xcb\xf7\xd1\x4f\xc7\x13\xaa\xf7\x3e\x75\x88\xd9\x3d\xb1\xbe\x02\x7b\x2f\x38\xf6\xd2\xa4\x62\xc9\xec\xf5\xa1\x78\xca\x64\x86\xbc\xbd\x23\x33\xc1\x79\xb2\xb1\xb8\xf5\x02\x21\xb1\x64\x6a\x51\x91\x61\xeb\xaa\xa4\x91\xa9\xc0\xc2\xa5\xcd\xd8\x64\xc6\xd4\x77\xf1\x10\x84\xc1\xaa\xbe\xfc\xd5\x5e\x10\xc6\x5e\xf5\x81\xfa\x8f\x21\xcc\xbc\xe7\x57\x60\x32\x04\x21\x86\xb4\xcd\xd3\x9a\x0a\x21\xfe\x43\x60\x99\xfd\x2d\x08\x69\x07\x82\x0f\xbb\x75\x43\xc8\xaa\x89\xb8\xe8\xa7\x0c\x3f\xf2\xb6\x45\x6d\x0d\x24\x43\x67\xee\xc1\x44\x46\x9c\xcb\xbf\x0d\xcc\x8e\xcc\x75\x39\xd9\x0b\xa3\xd4\x42\x4c\x31\x59\x30\x8f\x23\xbe\x25\x9a\x0a\xcf\xce\x21\xb1\x19\x22\x47\x39\x72\x16\x87\x59\x52\x7e\xa4\xca\x76\x66\x17\x52\x6d\xcf\x8a\xfa\x0d\x33\x2a\x99\xfb\x8e\x65\xec\xf4\x9c\x06\xe9\x9d\xe7\x86\xf6\xe1\x26\x7b\x93\x9b\xee\x78\x1e\xc2\x4d\x46\xc5\xfd\xe9\x8d\x3c\x02\x26\x18\x51\x39\x83\xbf\x8e\xed\x9c\x3c\x10\xf1\x64\xa8\xfc\x60\xfa\x14\x29\xfc\xf4\xf0\x85\x7d\x59\xa3\x7e\x11\x1b\x47\xb2\xf7\x24\xf7\x3f\x8d\x72\x1c\x8d\xdb\x79\xe1\x2d\x35\x66\xd3\xe8\xef\x1d\x76\xdd\xf7\xe2\x78\x63\x11\x0d\x21\x0f\xce\xc7\xeb\x8c\x8b\xaa\xaf\xdf\xd2\x4e\xf8\x35\x3e\x58\x85\xbf\x72\x39\xc9\x71\xe2\x7c\x79\xf0\x45\x44\x92\xcb\x24\xae\x44\xf9\x0c\x37\xc5\x70\xb2\xbd\xf8\xf7\x49\x79\x4a\xeb\x14\x56\xb6\xe3\xf0\x5c\x5a\xe5\xd4\x4d\xa9\x0d\x84\x21\xea\x9b\xf1\x3a\x8b\x21\x4c\xb4\xf4\x71\x30\x08\x83\x30\x2b\xdc\x57\xcf\xe8\x31\x84\x58\x6b\xbf\x39\xcb\xf7\x10\x52\x34\xfd\xa7\xec\xfe\x40\xc8\x1a\x0b\x4c\x71\xbd\x0f\xa1\x00\x17\x6a\xe2\x73\x16\x9e\x13\x67\x46\xe5\x87\xd4\x42\x67\xe1\xa3\xf8\x27\x71\x59\xff\xb6\xf2\xcc\xd2\x5f\x67\xf7\x2e\xcc\x32\x4f\xa3\x52\xc9\x31\x73\x43\xa4\xdf\xa4\xf5\xd2\x9e\xb9\xe5\x04\x6d\x1e\xa7\xf4\xca\xcc\xd5\xfc\xcc\xd2\x91\xba\xc2\xe9\x72\xf4\xba\x9d\xb7\xf7\xb8\x4e\x91\x72\xe8\xc7\x48\x07\xf6\x4e\x0e\x23\x72\xda\xbc\x0f\x35\x4d\x06\xa4\x3c\xee\xf4\x3e\xaa\x3d\x7e\x2c\xbe\xaa\xcf\xed\xe4\xc3\x09\xf5\xa8\xa9\xc1\x98\xa6\xf4\x89\xc9\xc8\x2b\x7f\x76\x1d\xa1\x4e\xb6\x44\x5c\x1d\x6a\x3c\x68\xfc\xe3\x56\x34\x6e\x38\xac\xf1\xf5\xbb\xef\x71\x01\xc3\x8d\x8d\xf2\x27\xe4\x44\xce\x48\xf2\xbe\xbe\xfb\x31\x49\xda\xa3\x82\xdd\x4b\x6e\x69\x26\x25\x8d\x7d\xad\xfb\xd6\x7e\x25\xf9\xf6\x78\x5e\xed\x8a\xb6\x97\x29\x0f\x26\x52\x2b\xb7\xb5\x74\xa4\xf1\x27\xce\x56\x68\x37\xb1\xd3\x1d\x27\x99\x25\x8d\x47\x1a\xd2\xf3\xa6\x1c\x8a\x5c\x1b\xc7\x32\x42\xa7\xce\x48\x6f\x41\x18\x16\xb9\x59\x4f\x87\x02\x61\xda\x2e\xaf\x69\x43\x43\x08\x73\xf6\x79\x1f\x31\xf2\x80\x10\xff\x78\xcb\x4a\x8b\x3b\x10\xd2\xf7\x6d\xed\xb2\xd7\x84\x50\xb0\x65\x9b\xbf\xdb\x18\x84\x92\xcd\xdb\x91\x3e\x6a\xf0\x5b\x11\x2f\x2c\x3f\x10\x0b\x9d\x0a\x3f\xc6\xf2\xe3\x0e\xfd\x5b\x2d\xb5\x49\xbd\x93\x1b\xb6\xf0\x4d\x28\xcb\x59\x44\x41\xce\xaf\x64\xca\xf0\x81\x92\x3f\xb3\xb9\x14\x77\xfa\xa3\x2a\x9d\xe9\xf2\x02\xd3\x22\xf7\x3d\x31\x53\xc7\xf3\xa9\xf5\xaa\x8d\x3f\x27\x9b\x73\x6f\x1e\x51\x3a\x12\x3d\x11\x96\xbd\xee\xdc\x9e\x13\x2f\xc7\xaf\xa4\x36\xdf\x9b\x69\x46\x8d\x2f\x49\x88\xeb\x5b\xd6\xe2\x31\x56\x13\xf3\xf7\x97\xe7\x69\xf7\xf1\xef\xd1\xb6\x83\x7a\x27\x14\xff\xb0\x62\x96\x0e\xfe\x3d\xf6\xf2\x63\x64\xdc\xe8\x9f\xd9\x23\x1d\x2f\xc8\x89\x6f\x86\x76\x1c\x16\xde\xdf\x91\xdc\x3d\x3c\xd7\x58\x72\xf3\x4a\x6a\xf4\xc8\xc9\x7d\x92\x2b\x31\x69\x0a\x63\x56\x3b\x63\xdb\x46\xd3\x97\x8f\x3d\x69\x50\x6e\x79\x9f\xf1\x74\xdc\xbe\xee\xd1\x71\x57\x04\x7b\x22\xaf\xf2\xea\x61\x29\x62\x76\x12\x94\x3b\xee\xbb\x95\x95\x3c\x59\x51\x72\x63\xb7\x72\x96\xf5\x14\xab\xd0\x0e\xc2\xe8\x83\x1e\xa7\x75\x16\x20\xcc\xf8\xe7\x19\xa6\x5f\x02\x21\x7a\xd3\xe6\xd4\x75\xbe\x10\x92\xe5\x5e\xa6\x66\xfa\x10\xb2\x2f\xfa\xa2\x6c\xd2\x21\x94\x66\xfb\x7b\xba\xa1\x21\x2c\xaa\x0f\x96\xfb\x3a\xc2\x57\xe5\x31\xa1\xeb\x83\x06\xa1\x6d\xd9\xbb\x68\x6a\xbc\xc1\x3f\xff\x12\x98\xa4\x99\xa3\xbf\xf0\xae\x28\x23\x73\x0d\xe5\xeb\xdc\x59\x7e\x0f\xd6\xb3\x68\xc9\xcc\x05\x7a\x00\xf5\x4a\x5d\xd6\x14\x24\xe7\x8b\x5f\xec\x77\x9f\xec\xc5\xcd\xd4\xdc\x3e\xfc\x7a\xe2\x0e\xfa\xc8\x21\xd8\x14\x36\x5e\x94\xfd\xbc\xed\xe2\xa9\xf7\x63\xa2\xf4\xd0\x7b\xcf\x5a\x17\x8d\x3c\x4d\x78\xf8\xe5\xc7\xf9\xe6\x31\x85\xd8\xbb\x3f\x71\xad\x11\x63\x7e\x31\xb8\xdf\xaa\xa7\x74\xfa\x37\xc5\x8b\x7e\xbf\x3b\x79\xae\x67\x77\x32\x79\xb0\xe5\x44\xd0\xc3\x8a\xd4\xe4\x21\xe5\xa3\xcf\x6f\xe0\x32\xfc\x87\x76\x1e\xa9\xbb\x3c\x92\xb1\x66\xe4\xd4\xbe\xc1\x73\xfa\x88\xf1\x51\xcf\xbd\x01\xcd\xcf\xb2\xec\xc6\xd6\xee\x72\x3f\xda\x9c\xed\x3a\xbe\xa6\xbe\xfa\xc0\xaa\x9c\x98\xf1\x77\x35\xf5\x7b\x9f\xe4\x98\x4e\x3c\xa8\x90\x36\xdc\x41\x9e\x9b\x44\x94\x8e\xd7\xee\xcd\x9d\x9b\x24\x97\x5e\x82\x30\xc6\xdf\x3d\x77\x95\x10\xc2\x8c\x5e\x8f\x04\xbd\x26\x08\xb1\x16\x9e\x1a\xeb\x02\x21\xa4\xb1\x3c\xff\x98\x76\x41\xc8\x9f\xf0\x66\x5b\xd7\x40\x58\x74\xde\xf7\xb3\x53\x27\x84\x15\xb6\x01\xfa\x9e\xb3\xf0\x59\x75\x4e\x88\x5a\x70\x06\xb4\xaa\xf3\x89\x58\x88\x47\xfe\x8b\xaf\x89\x88\xfb\x90\x6d\xbc\x70\xa1\x62\x26\x1d\x4f\xcb\x9b\x23\x16\x2d\xa0\x2b\xe4\xaa\x33\xee\x9c\x16\xf2\xdf\x1d\xa4\x29\x0d\x5a\x8b\x50\xe1\xd0\xab\x09\x22\xb1\xb8\xca\xff\xc4\xd8\xf8\x76\xec\xe2\x03\xc2\xd3\x81\xa3\x17\x50\x1b\xce\x16\xb6\x71\x87\xbb\x11\xab\x1e\xd9\x5f\xbe\x30\x94\x92\x34\xd0\x1f\xd0\x31\x3b\x82\x8f\x9f\xf9\xe1\x7c\xe1\xec\xc0\x54\xc2\xf1\x81\x99\xb3\xd3\x6f\x4d\x93\xab\x7f\x5d\x3b\x1d\xf1\xc8\x31\xdd\xeb\x77\xfb\x29\xec\xcd\x01\xc4\x81\xc1\xa1\x13\x35\x97\xde\x66\x25\x0c\xe5\x1e\xdd\xdd\x32\x8e\x44\x0e\x1b\x1c\x7e\x7e\x1c\x99\xfb\x68\xc4\xf0\xc0\xad\x43\x2e\xa8\xce\x51\xa5\x7d\x4f\xf6\x5d\x40\x9b\x8c\xad\xde\x35\xba\x4b\x8a\x5e\x3f\xee\x57\x9f\x5f\x87\xc7\x14\x8e\xbf\xa8\x75\xab\x5e\x87\x09\x9f\xe8\xae\xe8\x2b\xe3\xe7\x75\x4f\xda\x96\x87\x43\x18\x27\xd8\xa8\xbd\xca\x02\xc2\xec\xb3\x9b\x12\xf5\xa6\x21\x24\xdc\xd8\x64\xbd\xb6\x08\x42\xce\xd8\xc6\x23\xc6\x1a\x10\x4a\xf4\x3d\xbe\x5a\x62\x20\x2c\x3b\xed\x73\xd5\x79\x03\x84\x35\xf5\x5b\xf7\x7b\xee\x87\x23\x0d\x20\x28\x76\xdb\x39\x18\xb3\x2b\x20\x4c\x23\x26\xf9\x1f\x6e\xd7\x99\xe8\x6b\x99\xdd\x0b\xcf\x6b\x77\xa7\x9a\x52\x3d\xe7\xa6\x2a\xc7\xb3\x6b\x64\x1a\x33\xca\xe2\xe1\x82\xd6\x9d\x7b\x27\x7d\xd8\x32\xd6\xe1\x63\xf8\xf1\x28\x5a\x7e\x89\xc2\x69\xd4\xe8\x60\x81\xeb\x9e\x33\x6d\xde\xc3\xb9\x79\x9e\x67\x4f\xb7\x5f\xfa\xe3\x90\xe9\xf3\x8c\x72\xa3\xfb\x8f\x5d\xca\x9e\x2f\xbb\x6e\xb8\x0d\xe3\x13\x33\xbf\x3d\xb8\xfc\xa2\xaf\x29\x6d\xc7\xf7\xca\xcb\x46\x8f\x63\x10\xf7\x06\x9e\xb7\x75\xde\x0c\xce\x7e\xfa\x6b\x73\xeb\x97\x8b\xc3\xc8\xfa\xdf\xa3\xa7\x5e\x9c\x7e\x95\xfb\xf8\xcf\xd9\x26\xdb\x63\x16\x98\xae\xa1\x2d\xc7\x7a\x1b\x31\xf9\x5a\xc3\x45\x87\x55\x77\xc9\xb1\xaa\x23\x57\x1b\x8d\xea\x89\xd8\xa0\xd1\xde\x3d\x9b\xaa\xda\x70\x71\x63\x0d\x3b\x29\xe5\xd7\xb1\x9f\xc7\xcf\xd7\xfe\x91\xf7\xe1\x75\x26\xd6\xd4\xc4\xca\xbc\xf1\x8d\x93\xaa\x15\x6b\x21\x4c\x8a\x77\x33\xd3\xbe\x04\x61\xee\xb4\xbb\xad\x5e\x3f\x84\xe4\xef\x1b\xb6\x18\xbc\xfa\x7f\x70\x28\x9e\xd9\x54\x63\xd9\x01\x61\x95\xc6\xe6\x76\xfb\x5f\x10\xee\x1c\xf2\x41\x6f\xd4\x86\x70\x7f\x5d\xc0\xda\x80\xa5\xb0\xe2\x50\x7e\x10\x31\xfc\xf1\xbf\xd2\xc3\x4b\x22\x16\x65\xbc\x5b\xb8\xbd\xef\x6e\x22\x93\x7a\x6a\x6e\x67\x43\x7a\xe6\x93\xa2\x5b\xd3\x17\xca\xc7\xb0\x8b\x77\x67\x4d\x44\x0a\x79\x8c\xe1\x93\xc4\xd1\xf3\xec\x33\xd2\x03\xe7\x0d\x86\xef\x53\xca\x76\x4e\xb4\x6b\x0e\xde\xc5\x0a\xce\x7b\xdd\x6a\xfa\xd9\x9c\x63\xd7\xb3\xe4\xfe\xf7\xdf\xbe\xe9\x05\x1f\xbf\xdc\x59\xfc\xe5\x5a\xfa\xcc\x97\xe3\x37\xea\xba\xc7\xb3\x83\xfb\xdf\x5d\xb5\xbf\x39\x9f\xbb\xf8\xc7\xc7\x8b\xb4\xf3\x41\x79\x2e\x03\x4f\xce\xbf\x6e\xde\x90\x9f\xf9\xdb\xee\x4c\xe2\xc1\x8f\xb8\xc6\xc1\x6b\xcd\xc4\x7d\x91\xb8\x91\xa1\xb5\xc7\x6b\x77\x74\x12\x74\x86\xed\x8f\x10\xaa\xfb\x0b\x12\x47\xb6\x1d\x58\x28\xdd\x43\x8a\x1f\x55\xdc\x5f\x5e\x34\x4e\xca\x18\xb3\xda\x9d\x5d\x18\x4b\x5c\x3b\x9e\x55\xcf\x12\x3d\x25\x21\xc6\xe7\x6b\x15\x78\x61\x64\xab\x89\x17\x95\xfe\x10\xa6\xdc\x73\x33\x5c\x15\x01\x21\xba\xd6\x45\x51\xe7\x19\x84\x0c\xac\x5b\xb1\x21\x12\x42\x51\xbf\x2b\x7d\x9d\x1d\x84\xe5\x21\x1b\x5d\xcc\x27\x21\x6c\xc8\xf1\xf0\xb7\x63\x41\xb8\xff\x9d\xf7\x6b\xf7\x26\x08\x8f\xdc\xf0\xe3\xf8\xb5\xc3\xc6\x13\xc6\xdb\xf4\xc2\x32\xff\x95\x9f\xd4\x0b\x7d\x99\x51\xfa\x57\xa7\xe9\x4c\x4c\x09\x71\x64\xee\xdd\xc1\x27\xa9\x0d\xb2\xa2\x69\x93\x1d\xe5\xe8\xdb\xfb\xd2\xc7\x3f\x54\x2c\x25\x75\x9f\xda\x34\xa2\x2c\x98\x14\xd0\xaf\xa0\x07\x0f\x32\x63\x77\xcc\xdd\x66\xfd\x0c\x24\x76\x9c\x9d\x79\x58\xfc\xcd\x0b\x75\xa8\x37\xef\x99\xdd\x80\x53\xf6\xb2\x77\x35\x5d\xa7\xba\xaf\xa0\x17\x7f\xfc\x7c\x77\x65\xc7\x28\x2e\xf8\xcb\x83\x9b\x3d\xe7\x8e\xe3\x97\x7f\xfb\xda\xe1\x79\xfc\x44\xc1\xa6\x01\xc4\x45\xff\x46\x3c\x29\xe0\x67\xff\xb9\xe9\x5d\xc9\xa4\xbd\xbf\x27\x5b\xde\xd7\x68\x51\x26\x07\x7f\x34\x53\x2a\x52\x29\xfb\x87\x24\xc7\x1e\x96\xa4\x50\xb2\x47\xb4\x0f\xbe\x90\xd6\xd3\x9e\x8e\x50\x0f\x1c\x16\x91\xa9\xbf\xc6\x34\x77\x7f\x16\x58\x53\x2f\x8d\xf5\xef\x68\x64\x4b\xe9\x21\xe3\xf8\x7a\x0a\x73\x9c\xba\x30\x51\x5b\x45\x80\x30\x63\xcc\xc5\x42\xfb\x25\x84\xd8\x5a\x17\x9f\xd5\x8a\x10\xb2\x1a\x5c\x69\x06\x9f\x20\x2c\xd4\x76\xd9\xb2\xf6\x37\x84\xd5\xeb\xdc\x14\xcd\xec\x20\xdc\x77\xc6\xed\x9c\xd5\x13\x08\x8f\xee\xf0\x70\x74\xbe\x0f\x61\x8b\xb7\xcf\x32\x9f\x6c\xf8\xe4\xec\x63\xbf\xd2\xe0\xba\x7f\x4f\xda\x4a\x83\x26\x52\x4a\xfe\x26\xb6\x7d\x88\x70\xc4\x1f\x9a\x57\x6b\xe1\x24\xfc\x94\x9c\x9c\x3e\x77\x0c\x95\xc9\xdb\xb5\x30\x6e\xb1\xab\x1b\x9f\x7a\xfa\xcd\x90\x4e\xf1\x71\xde\xca\xeb\x9f\x06\x7a\x45\xa3\x15\x2d\x5d\x3d\xfd\x65\x8c\x83\x67\xd6\xbd\x58\xf7\x55\x33\x5f\xbf\x27\xa9\xe7\xd6\x4b\x0d\xec\xd8\xeb\xdd\xdd\x1b\x6e\x1a\x14\x20\xde\x7f\x78\x70\xaa\x35\x86\x42\xfa\xd4\x73\x47\x7a\xe8\x1b\xed\x57\x3f\xf6\x7a\xc5\xce\x9f\xcc\xb2\xef\xb8\xf6\x77\xb5\x07\x98\x09\x03\xbd\x17\xae\x96\x2b\x30\x1f\xfe\x76\x6a\xb5\x2e\xea\x62\xbd\x19\xa4\x9f\xfa\x24\xbd\xc0\xda\xf1\xa7\xf7\x84\x82\xf0\x3c\xab\x7d\xd8\xfb\xc8\x75\xde\x5f\xd6\xd2\x91\x93\x8d\x90\xfb\x8d\x59\x3b\x4a\xde\xe7\xc6\x3e\xcb\x78\x38\xf6\x6b\x47\x3d\xfb\x03\xbd\x64\xdc\xbe\x41\xc8\xd8\xc5\xa0\x4f\x34\x54\x65\x43\x98\xd5\xe9\x74\x55\x1b\x05\x21\xfe\x94\x93\xb3\xce\x79\x08\x05\xb5\x8e\x24\x3d\x17\x08\x4b\x5b\x1d\x47\x0c\x0f\x40\xd8\xf0\xc6\x39\xdf\x64\x0b\x84\x87\x82\x5d\xbe\x5b\x26\x40\x78\x4a\xdf\x4d\x6c\xbb\x13\xc2\x0b\x4a\x9e\x24\x8f\xbb\xb0\xaf\xfd\xb9\xaf\x5f\x50\x38\x54\xed\x18\x0b\x68\x4e\x90\xff\x15\xdd\x58\x15\xb2\x07\xbb\x7d\xee\x6f\x7b\x7e\xcc\x1b\x89\x68\x9a\x7e\xfe\x49\x2a\x7b\xf7\xcd\x31\x69\xf3\x35\x14\xa9\xf5\xd6\xe0\xf7\x3d\x6f\x68\x2b\x6e\xdd\xea\x3f\x52\x72\xb9\xd8\xf5\x45\x78\x5f\xa4\x68\xac\xa5\xe9\x43\xd0\x1b\x36\x5d\xab\x2b\xf4\xfd\xae\xab\x03\xac\xbd\x3d\xcf\x5e\xda\x9e\x38\xc1\xbd\xf7\xf6\xd3\x93\xac\xdd\x85\x82\x8b\x1f\x23\xee\xa3\x6a\x1e\x0b\xf7\x7f\x31\xbd\x3d\x57\x5e\xc6\x1f\xf8\xbe\xa4\xe3\x4b\xb1\xb7\xc0\x65\xc0\xf4\x92\x54\x6a\xca\xbb\xfb\x5b\xa1\xf5\x81\xa8\x9b\xbf\x63\x30\xb2\x25\x95\xff\x8b\x5f\x37\xe4\x7b\xbc\x9b\x8f\xe3\xe2\x86\x43\x8e\xd4\x73\xd6\xf3\xbe\x8c\xbc\x68\x24\x32\x2f\xf1\x89\x63\x2b\x77\xbf\x67\x8c\xf3\x1e\x8d\x9d\xd9\x49\xa7\xc6\x09\x42\x26\x5c\x6a\x0c\xa8\x57\xb9\xe2\x89\xb6\xca\x3e\x08\x91\x07\x9c\xea\xb4\x47\x20\xa4\x7c\x77\x88\xd4\x21\x42\x28\xbe\xe3\xf0\x57\x8f\x0a\x61\xe5\x29\xc7\x00\xc3\xbb\x10\xee\x99\x75\x7c\x65\x9c\x0e\xe1\xf1\x4b\x4e\xb5\xe6\x66\x10\x9e\x3d\xec\x66\x60\x87\x80\xb0\x7d\x7e\xe3\x7d\xb7\x25\x10\x76\x26\x7b\x2d\xdd\xda\x0c\xa3\x1f\x6e\xde\x22\x8f\x96\xfe\xbd\xd6\x95\x17\xb4\x09\xa3\x3e\x2f\x7e\x58\x19\x4e\xe7\x33\x66\x54\xee\x67\xc7\x51\x1a\xae\x8e\xaf\xbc\xb6\x3a\xe3\xd7\x69\x9b\xdf\x97\xce\x6d\xc2\x65\xdd\xb1\xff\x7c\xf5\xd0\xa8\xc0\xa3\x57\xf4\xfc\x46\xe5\xd1\xa6\xad\x3f\x8a\xda\x6f\x94\x7c\xef\x54\xf9\x5a\x7c\xcc\x43\xee\xd0\x4d\x78\x33\x53\x47\x90\x5f\x78\xa3\xfe\x6c\x49\x65\x6c\xb1\xf3\x87\xa5\x0f\xa9\xa5\xe4\xa2\x6d\x9f\x77\x77\x8e\xc8\xd6\x14\x7d\xfb\x9e\xde\xe1\x26\xae\x2c\x34\x19\x98\xbe\x70\x40\xc0\x2c\xac\xfb\xad\xd6\xba\x9f\x7b\xb2\xf0\xd0\xe0\x7c\x33\x99\xbd\xbc\x30\x66\xe8\xd9\x31\x05\x26\x59\xf6\x6d\x78\xfe\x90\x1f\xfd\x97\x94\x33\x9a\xb8\xaf\x90\x56\x2a\x5b\x35\x3a\xb3\xc7\x99\xe2\x27\xa3\x8d\x5b\x34\x14\x12\xbb\xa4\xfb\x27\x8e\x57\xfe\x25\xfa\x4a\xcb\x26\xc6\x2a\x9a\x20\xc4\x28\x39\xba\x6a\xd7\x43\x48\x5f\x6b\xcf\xd1\xb1\x86\x50\x76\xc0\x96\xa5\x8b\x84\xb0\x76\xca\x7e\x83\x81\x17\x84\x87\x42\x6c\xe4\xfa\xfb\x20\x3c\x5d\x6a\x3b\xb1\x6e\x27\x84\xed\xca\x0e\x83\x16\x76\x10\x76\x96\xb8\xa6\x3a\x9a\x41\xf8\xc4\x66\x93\x8b\x97\x39\x6c\x7e\xb5\xc2\xeb\x45\xe8\xda\x7f\xfe\x6f\x67\xb6\xb6\x64\x8e\xcf\xbf\x7d\xb7\x3f\x78\x88\x7d\x78\xc6\xf1\x9d\x6e\xe4\xba\xba\xde\xb1\xe7\xaf\x36\x25\xae\x3a\xbd\xea\x57\xef\x53\x69\xb6\xca\x5d\xd4\xfb\x85\x4e\x5d\x2a\xa1\x4f\xe1\xa6\x5a\xd3\xd8\x41\xa7\xb1\xc7\x07\x16\x1f\x87\x37\x5a\xbe\x3d\xa8\xfa\x72\xa4\xbb\x7b\xe9\x5b\x3f\xb9\xfb\xfe\x7f\x6f\x72\xbb\x33\xa4\x88\xbd\xdc\x0f\x07\x1e\x24\x08\xfb\xeb\x73\xfa\x53\xaf\x0f\x0b\x4c\x6b\x25\xdf\x99\xed\xaf\x38\x5a\x35\x59\x3f\xff\xb5\xa9\x33\x7b\xaa\x83\x07\x15\x5b\x46\x19\xda\x55\xd6\x7f\x76\x9f\x10\xd3\xf9\xe5\xf7\x87\x6e\x1d\xd3\xa2\x74\x54\x2c\x1e\xa1\x1d\xe0\x51\x94\xca\x6e\x8e\x06\xec\x3b\x4e\x8a\x2f\x6d\x1a\xab\xd8\xd9\x45\x78\x53\xea\x3b\xa1\x52\x73\x02\xdf\x58\x96\x3c\x81\xae\x9a\xc7\x5d\x2b\xb9\x35\xe9\x51\xee\x0a\x61\xfe\x65\xdb\x2f\x2b\x59\x10\x72\xb6\x59\x57\x68\x35\x40\x28\x6f\x5e\x9f\xa2\x3d\x04\xe1\xce\x10\xab\x63\x3a\x12\x08\x9b\xda\x2d\x36\xae\xea\x86\xf0\x02\xc5\xea\x8f\xde\x13\x08\x6f\x07\xdb\xf2\x8c\x0f\x43\xf8\x44\xd3\x49\x6a\xab\x0c\x61\x6f\xf3\xc6\x1f\x9e\x10\xfe\xfa\xd4\xe7\x89\x0b\xbc\xfb\xaf\xfa\xa7\xa3\xef\x6c\xda\x85\x05\xf1\xd0\xce\x80\x6a\xca\xb5\x99\xab\xe3\x19\xdb\x53\xaa\xac\xc6\x97\x0f\x92\xa2\x0e\x9d\x52\xfb\x9d\xfa\xc5\x3c\x15\x74\x56\x3d\x3f\xff\xea\x32\x61\xf3\x4b\x6e\x53\xcb\xdd\xdc\xea\x5f\xfd\x15\x25\x17\x1e\x5c\xb8\xbb\xe5\x73\x2b\xbf\xe5\x81\xd6\xf3\xf5\xbd\x4d\xdc\x23\x97\xfc\xdf\x76\x3c\xf1\x63\x97\x9e\xb6\xf9\xb4\xee\xee\x65\x56\xf9\xb1\x53\x5f\xbb\x6e\x1c\xa5\x7e\x3a\x32\x38\xe0\x7d\xf1\x1c\x55\xf3\x60\xc2\x2f\xbd\x73\x34\x4a\xc4\x9e\xfb\x83\xbc\x53\x68\x52\xfd\x9e\xed\x7f\x3e\x34\xb1\x49\x71\x0d\xe1\xc3\x65\x87\xd3\x0a\xc6\xea\x4f\x8e\x1c\x68\xbc\x8a\x3b\xdc\xf0\x75\x2c\x66\x17\x19\xfb\xaa\x6e\xd7\x78\x7a\xfd\x76\xac\x4a\xad\xeb\x84\x79\xf5\x5c\xfe\x64\x95\xde\xc4\x40\xc5\x8e\xbc\xcf\x95\x2f\x27\x45\xff\xf9\x28\x42\xa5\xad\xf3\xca\xe3\x10\xf2\xd5\x2d\x1f\xae\x28\x83\xb0\xf2\x96\xf9\xa2\x15\x79\x10\xee\x87\x00\x00\x00\xe1\xa9\x70\xd3\x5f\x5a\xc9\x10\x5e\xfd\x6c\xdc\xb3\xa2\x1b\xc2\xae\x59\xb3\x93\x3a\xf6\x10\xf6\x3e\xb2\x57\xb0\x50\x80\xb0\xdf\xdb\xa9\xda\xee\x23\x84\xc3\xab\x36\xad\xf3\xab\x82\x76\xf3\x2f\xbc\x15\xe3\xf6\x2c\xdc\x9e\x15\x6c\x1d\x27\x29\xcd\xdc\x99\x58\xb3\xdd\xb9\x72\xe8\xd7\xc2\xe0\x85\x18\x79\xf3\xbd\x9e\xf7\x3f\xee\xa5\xbf\xbf\xc2\xbc\xb6\xe3\x63\x2d\x61\xff\xc3\xec\x5d\x2b\x5e\x87\x16\x6b\xf6\x3c\x90\x80\x67\x7a\x77\xde\xbe\x13\x52\xcf\xbe\xae\x7e\x39\xfc\x22\x86\xb4\xaa\x9b\xdf\x47\xfd\xbf\xf8\x78\xcb\xa8\x2a\xbb\x76\xfd\x1b\xbb\x03\xec\x0e\xc0\x00\x51\xc0\x20\xa5\xa5\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\x25\x24\x25\x05\x11\xa4\x44\x11\x14\xc5\x40\x04\xa4\x59\xac\xee\xf3\x1d\xcf\x46\xf4\xbe\x9f\xbd\xff\xef\xa7\xdf\xb8\x3e\x9e\x73\xcd\x39\xaf\x6b\xac\xe3\x37\x8e\x61\x25\xc7\xa1\xae\xac\x59\xf6\xde\x79\x07\xff\x96\xc7\xf3\x73\x1d\x0f\xec\x79\x9f\x69\x2e\xa6\x36\x27\xda\x1f\xa8\xac\x5d\xe1\xae\x33\xb1\x13\x2d\xe5\x5b\x63\xa9\xe2\xb0\x5e\x2e\xf1\xd8\x38\x55\xe2\x66\xed\x9b\x3f\x80\xa8\xce\x97\xb0\xa2\xcb\x3b\x8d\xdc\x9d\x65\x6e\x31\x92\x53\x85\xba\x9e\xb6\xdb\x72\x47\x66\x34\xaa\x37\xd9\xc3\x1c\x97\xd9\x89\x96\x4c\xa4\x37\x37\x49\xe7\xc7\x30\xc6\x0a\x9b\xcd\xa5\x96\x62\x3a\xa3\x2c\x00\x1c\xaf\x30\xeb\xd0\x39\xfe\xe7\x7b\xe9\xe6\x01\xda\x02\x80\x64\x4e\x06\x71\xda\x73\x00\xa5\xce\x5b\xeb\xd0\xcc\xba\xc5\x81\xf6\x2d\x7e\x4c\xdc\xe2\x4c\xcb\x0d\xc6\xb3\xbc\x00\x1b\x06\x77\x2f\x33\xce\x01\x50\x09\x1c\x42\xbc\x67\x81\x8b\xbc\xfc\x78\x4a\x19\x4f\x7e\x84\xef\x11\xc1\xb8\xdd\x5a\x91\x42\x93\xa5\xbe\xc4\x0c\x4f\xd2\x22\x02\x55\x05\x0b\x28\xbd\x1f\x57\x0f\x1a\x08\xd4\xcd\x54\x07\xcf\x13\x1c\xee\x77\xbf\x4c\x90\xf9\xbe\x11\x92\x35\xf4\xda\x27\xe8\x9b\xf8\x33\xf2\x48\x81\xad\xdb\xd7\xa7\xd3\xca\x23\xfe\x96\xb3\x33\x22\xdf\x8e\xbf\x0e\xb4\x48\x7b\x87\x9f\x3b\xd5\xf5\xd1\x92\xda\xe7\xfd\x8b\xf1\xf9\x0d\x8b\xc9\x8e\x86\xe5\xd8\x7a\x4f\xcb\xb6\xa6\x4f\x2b\x0b\x35\x5c\x96\x8c\x75\x0e\x6b\x6b\xe5\x65\xe6\xb1\x35\x9c\x1b\xb5\x45\x2c\xe6\x34\x55\xbb\x11\x8b\x79\x27\xcd\x0e\x97\x09\x21\x5d\x33\x0c\xcd\x5e\x17\x3d\x46\x92\xd2\x1c\x4d\x17\x0a\x5a\x51\x9f\x92\x26\x4c\xe8\x0b\xa2\xd0\x5f\xe3\x04\x4d\x8e\xe4\x84\x62\x3a\xa3\x6e\x1b\xcb\x65\xef\xc3\x9a\x86\x8d\x03\xb8\x46\xde\xee\xa1\x9d\x01\x08\x95\xa4\x99\xfa\xcf\x7c\x69\x1f\xb6\xe6\xac\x08\xa5\xd1\xfc\x0f\x3b\x1c\xb6\x9e\xdf\xfc\xd8\xe2\x57\x4f\x1a\xed\xff\x10\xe9\xbf\xf5\x0c\x59\xb7\xc4\xce\x4a\x01\x50\x7f\x72\x14\x3d\x56\xa5\xb6\x90\xd9\xf9\x6d\xb5\xf7\xaf\xdb\x12\xcc\x9f\xf4\x3b\x35\x4f\x9f\xc2\x9e\x95\xbd\x14\x61\x3e\x30\x8c\x6c\x57\xfb\x9a\x69\xd4\xe4\xb9\x2e\x6e\x84\xaa\x3a\x54\x62\xbd\x82\xb0\xa9\x79\xa6\x18\xe5\xb5\x70\x25\xa0\xfe\xc5\x2d\xaf\xac\x9f\x7e\x15\x32\x7d\x61\x16\xb1\xb3\x47\xbf\x04\xbe\xca\x36\xf1\x99\xe3\x9d\x15\xec\xf1\x37\x1c\x9f\x1d\x9b\x37\x6d\x4f\x31\xac\xff\xc8\xbb\xb8\xde\xa8\x66\x7c\x62\x30\x61\x25\xa3\x86\xcb\xb8\xbd\x67\xd7\x9a\x6d\x85\x93\x71\x52\x7b\xd8\xc6\xee\xe2\x61\x93\x8b\x4d\xa7\x10\x32\xf9\x23\x46\xf8\xfa\xb7\x9b\xb3\x59\x77\x8d\x17\x9f\x16\x23\x9f\x64\x4c\x1b\x73\x55\x20\x51\x51\xc9\xa3\x86\x1f\xca\xdd\xd0\x15\x71\x73\x46\xf4\xc5\x1c\x18\xfd\xe8\x7a\x03\xdf\x22\x12\x56\x28\x9c\xdb\x40\xbe\xa0\x0b\xdb\x1b\x52\x0a\xe0\x6e\x72\x83\x72\xec\x23\x40\xb4\xf5\xd6\x5c\xb9\x7e\x5b\xac\xdb\xb3\x35\xef\xcb\xdf\xbf\xff\xe4\xbd\x2d\xce\xaf\x6c\x91\x32\x41\xe3\xfc\x3f\xeb\x00\x37\xae\x9f\x0c\x00\xa0\xe2\x39\x44\x79\x19\x91\xfc\x64\x17\xfe\x64\xcd\x33\x33\x25\x44\x7e\x51\x1f\xdb\xc8\x31\x7a\x9c\x8c\x9c\x5e\x50\x71\xc7\x47\xb4\x97\xc6\xad\x24\xdf\x6a\xa9\x4d\x0e\x23\x52\x41\x6b\xd6\x93\xf5\x23\x76\xfd\xd5\xcd\x61\x1f\x97\x86\xfc\x1e\xb5\x2a\x7a\xb8\x2f\xde\x2a\x38\xda\x9e\x6a\xe9\xbd\x10\x3d\x1c\xdf\xf9\x5a\x9f\xf8\xab\x60\xfe\x63\x9b\xab\x0e\x61\x69\x6d\xf1\x49\xd3\x6e\x5d\xcb\xd9\x43\x4b\xf8\x7a\x49\x7d\x96\xc9\xe7\x2b\x25\x4f\x43\xf5\xaf\x8d\xfc\x5a\x83\x32\x16\xfd\xf3\x7d\x8a\x88\x1b\xf9\x19\xfa\x0d\x9d\x63\x9b\xc2\xd9\x08\x7d\xc9\x36\x21\xa4\x56\xfa\xaa\xfe\xed\xa6\xcf\x28\xf3\xe4\xf7\xfa\x7c\xf5\xe3\xe8\x87\x09\xe1\xfa\xd7\x6a\x26\xd1\x3f\x62\x93\xf5\xfd\x2a\xdb\x30\xde\x51\x53\xfa\xf8\x32\x77\xcc\xd7\xc8\x8b\x7a\xca\x25\xdf\xb0\xb8\x60\x59\x00\xbf\xc5\x6b\xc8\xc3\x41\x00\x09\xd7\xb6\xe6\x2b\xfc\x7d\x2f\xb4\xfc\xdc\xe2\x30\xdb\x16\xa7\xb5\xb7\x88\x0c\xfb\xbd\x0f\x80\xc6\x66\x8b\x4c\x7a\x17\x3e\x63\xda\xa8\x3f\x39\x24\x79\xd1\xf3\xef\xc8\x43\xfc\x93\x6a\x1a\x13\xe9\xc4\x75\x31\x09\x0b\xd2\xcb\x74\xfc\xa0\xdc\x92\x97\xd8\xb3\x78\xcc\xaa\x66\x64\x0c\x7d\x91\x2e\xca\xd0\x38\x23\xa3\x32\x59\x02\x91\x6b\x97\x55\x5c\x1f\x88\x5e\x37\xf0\x1a\xaa\xe6\x70\xf3\x5c\x19\xce\xec\x6e\x38\x6d\x71\x6b\x99\xf2\xa2\xb2\xf1\xb0\xee\xc8\x52\xf2\x42\x58\x13\x52\x13\xb5\x2a\xbc\xdc\x59\xf3\x5a\xf3\xc6\xea\xec\x8a\xc9\x53\x1a\x4d\x8b\x79\xe5\x55\x42\xf9\xa6\x66\xf3\x94\xdb\xc6\xb3\x82\xc3\x5a\x1e\x63\x29\x9b\xc7\xb3\x9b\xb5\xe2\x86\xee\x23\x6f\xa5\x7f\xd2\x76\x7d\xf9\x0a\xf9\x3d\x55\x49\xfb\x6d\xd7\x59\xd4\x68\x62\xad\x76\xf2\xf3\xfd\xe8\xf5\x98\x11\xed\x8e\xa6\x64\x8c\x77\x94\xa4\xf6\xea\x33\x41\x0c\x39\x7c\x5d\x87\xb3\x46\x11\x1b\x16\x2a\xa1\x85\x7d\x2a\x8d\x93\x0f\xc0\x00\x04\x9d\xa1\x09\xfc\xcf\x3c\xa9\xac\xff\x3e\x0f\xdd\xe5\x5b\xcf\xef\xc6\xb6\xb8\x10\xbf\x45\xaa\xed\x3f\xd7\x81\x90\x02\xc0\x3c\x79\xf5\xdc\xe2\x30\xf5\x07\x87\x0b\x2f\x7e\x2a\x9b\xa2\xc3\x9f\xac\xd0\x39\x28\x4d\xaa\x14\x1b\x33\xb6\x6a\x6d\x21\xe0\xe4\xe3\x9c\x06\x2a\x08\xb8\x04\xcd\xb6\xe0\xe2\x2c\x6b\xec\x05\x23\xb3\x18\x93\x18\x37\x54\xb6\xad\x44\x86\x9b\x5f\x09\xa2\xcb\xf3\x47\x71\x91\x73\xdf\x46\x67\xf2\xa5\xb2\x17\x16\x3a\x1b\x37\xeb\x4d\xcb\xdf\xea\x72\xad\x6b\x4d\x7e\xab\x68\x51\x67\x58\x77\x5c\x3b\x5c\xfe\x48\xed\xf4\x86\xc8\xda\x72\x49\x98\x4a\x27\x42\x61\x63\x6f\xc1\xbc\xea\xc2\xfc\x47\xc4\xb9\xdc\xaf\x6a\x3a\xd3\x9e\x9b\x23\x19\xdc\x6a\xeb\x13\x3a\xc8\xee\x94\x69\x8d\x43\x43\x04\x54\x4f\x22\x83\xc6\x97\x7e\x13\xf4\x89\x78\xa2\xfa\xf2\x8b\x19\x4c\x69\xc4\x5b\xf5\xac\xce\x19\xac\x52\xa8\xaf\x46\x40\x9b\x37\xd6\x24\x54\x41\x3d\xb3\xa5\x05\x27\x13\xe0\xa8\x3e\xdb\xd0\x87\xeb\xf5\x25\x01\x44\xde\xfa\xf7\x79\x68\x58\xda\x62\x3f\xcb\x16\x3f\xaf\x6d\x11\xf5\xf1\xcf\xfc\x5a\x34\x34\x54\x13\x80\x0b\xa3\x7b\xbd\x56\x43\x00\xee\x9c\xbd\x4e\x3b\xad\x01\x7b\x38\xe4\xb9\xbf\x8c\x5e\xa3\x64\x0a\x58\xcb\x15\x76\x22\xc8\x16\xe2\x4c\xba\x87\x6b\xdd\x88\x1f\x15\x58\x6c\xa2\xf2\x35\x08\x17\xb4\x0e\x7b\x39\x24\x0d\xe3\xd4\x8d\xa5\x42\x29\x61\xcc\x98\x0a\x9b\xc6\x78\x21\x4f\x22\x0a\xe5\x3e\x99\x2e\xed\x70\x07\x75\x27\xae\x20\x4b\xd7\xec\x0d\xd2\xaa\x7c\x28\xa7\x52\xb7\x01\x31\x3e\x38\x59\x78\x53\xed\x01\x22\xf9\xd7\xae\x02\x7b\xa5\xe1\xcd\x77\x88\x9c\x6c\x71\xc5\x11\x64\xca\xa6\x75\xc6\x23\x85\x36\x94\x31\x52\x2c\x65\x40\x49\x74\xd1\x0d\xd9\x95\x9c\xae\xf4\x60\xe6\x04\xfa\x5e\xec\x57\xe5\x37\x1f\x33\xd1\x96\xb1\x1a\x2a\x97\xdf\xb2\x63\x2c\x22\xf7\x2b\xff\x1a\x8a\xc4\x5a\x85\xb0\x29\xcf\xf5\x47\xe2\x76\x05\x32\x2b\xbf\xec\xa9\xc1\xf5\xfa\x5e\x50\xb9\xd4\x15\x81\xdf\xed\xdd\xad\xd2\xda\xd6\x8c\xe7\xf7\x8a\xfd\x7b\x1e\x4a\x79\xb7\xd8\x99\xfd\xef\x7d\xb0\xc8\xfd\xcf\xf9\xa1\x04\x80\x46\x87\x86\x66\x99\xfb\x7f\x72\x40\x9a\x99\xb3\x00\x2c\xb7\x18\xe2\xde\x05\xc2\x25\x8e\x40\x2e\xf7\x5e\x3f\xea\x59\x81\x7d\x12\xab\x8d\xea\xe4\xcf\x12\x3b\x34\x69\x4b\x8d\x49\x31\x8a\x34\x66\x84\x74\x31\xa2\x92\xd6\x01\xa7\x5d\x31\x36\x84\x1b\x86\x2b\x5e\xa4\x80\x57\x38\x59\x6b\x4a\x58\x95\x6b\x03\x36\xc1\xd5\x3f\xea\xbd\xed\x2d\xec\x81\x48\xd6\x58\x1f\xd3\x87\x18\xc1\x7c\x8d\x84\x6e\x9d\x9f\x68\x99\x0e\xf6\x64\xb4\x2a\x1e\x95\x3a\x25\x95\x1a\xa6\x78\x11\x75\x7e\x93\x90\xb6\x57\xbe\x15\xcd\x88\x3a\x99\x68\x29\x27\x83\x61\x45\xdf\x8d\x71\x97\xbb\x86\x91\x43\xcb\x45\x7f\x95\x7d\xb7\x4e\x87\xf1\x0e\x2b\x91\x2b\xfb\x29\x88\xe5\x0b\x76\x94\x3f\x31\xfd\x15\xfb\x2b\x40\x53\x3e\x6f\xe2\x3d\xce\xd9\xb7\x44\x41\xee\x6d\x34\x2e\xcb\xf7\x90\x62\xd8\x90\x1e\xae\xcb\xa7\x44\xd1\xa8\x3f\x18\x2f\xed\xe9\xac\x60\xfd\x52\x8b\x70\xc9\xe5\x09\x40\xa6\xdd\xef\x7b\x51\xf7\xf7\xfb\xf1\xe0\x16\xbf\xfc\xbe\x37\x71\xb1\xff\x5c\x87\x0d\xcb\xad\xf9\xbf\x8c\x6c\xf1\x7d\x11\xc0\x9d\x4d\xfa\xee\x3e\x23\x50\xe1\x90\x7a\xb8\xdc\x62\x4e\x95\x12\xe4\x14\x7b\x5b\x19\x4b\x51\x96\xa8\x57\x91\xcd\x09\x25\x3b\x28\xbc\xd3\x5b\x4e\x78\x4c\x92\xd6\x9c\xb2\xd2\x0c\x25\x10\xed\x0d\xef\x3a\x0e\x7b\x33\x11\xb8\xad\x0e\x79\xbd\x73\x22\xe2\x36\x5c\xe4\x83\xaf\x5b\x47\xe3\xb4\xc2\x24\xc3\x5c\x4c\x46\x71\x0a\xa9\xf3\x61\x2a\xba\x2c\xd8\xb4\xda\x73\x91\xfa\xea\x2c\x98\x17\x03\x92\x31\xce\x8a\x3b\xb1\x3b\xbf\xd3\x44\xd6\xc8\x16\x63\x2a\xd0\x35\x51\x67\x65\x28\xd8\xab\x98\x3b\xe1\x35\xd2\x07\x70\xae\xd8\xd4\x00\x5e\xa9\x01\x5c\x01\xb6\xcf\x9f\x4b\x5a\x65\xe3\x19\xee\x92\xef\xa0\x8c\xd8\xaf\x0e\x9c\xa4\xaf\x8c\x8c\xee\xb7\x79\xfc\x0d\x8f\x26\x99\x77\x9f\xb8\xf1\xde\x6e\x04\x59\xdd\x09\x5b\xfc\x33\xd7\x65\x59\x8b\xb1\x59\x02\x83\x33\x8f\xac\xf4\xc8\x19\x42\xa2\x83\x0f\x40\xd1\xe3\xad\x39\x3b\x56\xfe\xbd\x0f\x96\xef\xfd\x99\x9f\x86\x86\x06\xc7\xb1\xc5\x1f\xaa\x5b\x9c\x2c\x03\xb8\x1c\x79\x24\x6a\xe0\x27\x00\x4b\x26\xfd\xd2\xf3\x21\x08\xe6\x38\xc2\x9e\x59\x13\x42\xad\x15\xa8\x15\x32\x2e\x4c\xa6\xa4\x49\x8e\x29\x16\xa4\x70\x53\x8e\x2b\xd2\x6a\x94\x47\xdd\x20\x21\x35\xc1\xa4\x26\x70\x07\xc9\xd0\xe0\xb1\xd5\x61\xd7\x0a\x62\x98\xc5\x8c\xa3\x84\xdd\x2f\x42\x81\xd3\x17\x8f\x73\x16\xce\x04\x8d\xc0\x57\x5e\xe7\x8c\x62\xf0\x1f\x92\x9c\x7d\xd9\x75\x6f\xe2\x83\x8a\x9c\xfd\x5a\xd5\x95\xf1\x3b\x5a\xe5\x03\x26\x95\x76\xe3\xec\xde\xee\x0d\x7a\x27\xeb\x8c\xbb\xb0\x24\x17\x7c\x5a\x2a\x1b\xd7\x89\x9d\xf5\x4b\x90\x5c\xc7\xb3\xe0\xd4\xbd\x7f\x4a\xd2\xe3\x9f\xe2\x66\x3c\x1a\x25\x98\x08\xc2\x78\x3f\x97\x01\x09\x76\x54\x1c\x7e\xca\xe9\x93\x04\x76\xc5\x1b\x8f\x73\x4a\x90\x64\x9b\xfb\x45\x50\x75\xb0\x95\x94\xfa\x16\x4c\x18\xb0\x6d\x91\xac\xf9\xbc\x9f\x80\xb4\x79\x29\xb9\x34\xb1\x4c\xe4\xb7\x7a\x0f\x50\xf3\xfb\xbb\xa0\xff\xdb\xef\xef\xa3\x6b\xff\xbc\x0f\xa9\xfe\x5b\x73\xff\xfa\x7d\x0e\x26\xd8\xb7\xd8\xfb\x75\x8b\xed\x0b\x00\x2c\x5e\xd7\x59\xeb\xcc\xc1\x9e\x2b\xf9\x41\x5e\xf1\x47\xd8\x25\x60\xf7\x58\x2f\x23\x80\x7a\x5f\xf2\x8c\x24\x21\xd6\x96\x92\xa0\x80\x56\xda\x0c\xe1\x26\x97\x69\x7a\xea\xf6\x78\xf9\x92\x50\x86\x27\x4d\x48\x8e\xaf\x48\xa9\x66\x68\x0b\x15\xeb\x1e\xd2\x11\x7b\x7d\xdb\x93\xa6\xce\xc4\x36\xbf\x7e\xfb\x19\x43\x1b\x22\x6b\xf4\x9a\xf3\x8c\xce\x41\xc2\x6c\xf6\x88\x6b\x99\x9a\x3b\xa1\xbe\xc6\xc9\x8d\x5b\x29\x8a\x20\xd2\xad\xe8\xc1\x2f\xb7\x8f\x70\xe1\x7d\x81\xc7\x19\x49\x0c\xe1\xf2\x32\xd9\x2d\x44\x22\x8d\xb0\x13\xcf\xed\xe6\x2f\x1e\x41\xc8\xc7\xcf\x3a\xf1\x8a\x0d\x13\x0f\x11\x94\xec\xef\x8b\x5a\x12\x07\x88\xe7\x2d\x53\x45\xd5\xf0\xc5\x44\x6e\x8b\xd7\x62\x87\x11\xd1\x44\x4e\x4b\x09\x51\xec\xd2\x5d\x62\x91\x99\xa3\x98\xf5\xcf\x46\x62\xbb\xd9\x5e\xb1\xbe\x6f\xb7\x89\x4b\x26\xbf\xfe\xde\x07\x1f\x76\x6c\x71\xb3\xeb\x9f\xfb\x60\xfd\xd2\x16\xa7\x76\x6e\x71\x60\x7d\x8b\x9d\xc3\x00\x97\x5b\x8f\xf4\x3e\x53\x02\xb8\x7b\xec\x5a\x62\x69\x03\x0c\x71\xec\x67\xd9\x93\x1d\x0e\x5c\x02\xb9\x5c\x3f\x13\x4f\x53\xdb\xc4\xa3\x85\xf9\xc2\x37\xa8\x87\x14\xce\xc8\xcc\xf9\x55\x51\x74\x35\x6e\xa9\x0e\xbb\x2a\x91\x5f\xe8\x4f\xe9\x2c\xda\x0e\x93\x2f\x98\x0d\x18\x5b\x5a\x48\x92\x70\x76\x45\x26\x8b\x26\xf1\x24\x2f\xaf\x34\x4b\x7f\x7d\x75\x52\x60\xd8\x51\x4b\x36\xed\x73\xc4\x0f\x69\x51\x76\x6e\x6a\xbb\x89\xeb\xc5\x68\xdb\x1b\x8a\x54\x62\x68\xd3\x67\xfb\x28\xb9\xd7\x44\xae\x57\x07\x1c\x10\xd2\x3b\x89\xb7\x3f\x46\x38\x88\x8a\x4f\x10\x05\x56\xae\xd9\x99\x88\x1d\x20\x3a\x13\x7a\x6d\xae\x88\xee\x25\x12\x88\xf2\x16\x3b\x9f\x5c\x21\x59\x10\x07\x4c\x74\x9e\xec\x25\xb9\x10\x27\x8c\x71\xc2\xc9\xe4\xf3\xa4\x60\x3d\x1e\x91\x83\xb8\xab\x24\x4b\x7d\x29\xe1\xea\xf5\x61\xd2\x1b\x1d\x5e\xe1\xdc\x95\x36\xd2\xaa\xb6\x2c\xc0\xf0\xef\xf7\xe5\xaf\xba\x7f\xce\x8f\xfa\xcd\xaf\x63\x5b\x1c\xf9\x7d\x1e\xda\xda\xb7\xd8\xd0\x0e\x70\x5d\x9d\xf6\x7b\x45\x1b\xc0\xdd\xd6\xab\xf8\x5c\x31\xc0\x3e\x5c\xbc\xd5\x9e\xdc\x06\xde\xfc\x43\x0f\x56\x22\x5f\xc3\x2e\x71\x1d\xbe\x8c\x80\x12\xaa\xba\x42\xbf\xc4\xa0\x07\x8e\xb2\xac\xfe\x50\x0e\xe9\xf0\x95\xe2\xae\xbb\xa6\x52\x6a\x85\x24\x7f\x37\xb1\xd0\xb6\x37\x0b\x25\xb7\x5a\xb5\xe8\x3e\x32\x4c\x25\xc7\xba\x35\xe8\x73\xe8\x1d\x26\xdf\x0a\x7a\x67\x7c\x4f\xd3\x9d\x7c\x22\x6e\xde\xb8\x5d\xe5\x3b\x69\x35\xf7\x9a\x49\xb5\x22\x96\xd4\x50\x11\x6d\xc6\x2e\xc7\x44\x32\x68\xab\xb6\xb8\x26\x6d\x43\xa2\x1d\x62\xb4\xfc\x21\x51\x49\xda\xff\x89\xd9\x92\x4f\x74\x8a\xc4\xb0\x7a\xc9\x5c\x48\x84\x4c\xf2\x27\xbc\x31\xce\x17\xe1\x21\x8d\x93\x1e\x19\x8c\x0a\x8b\x93\xb9\x49\xa5\xba\xb4\x42\x71\xe4\x50\x12\x56\x4b\x50\xd0\x8a\x8c\x25\xdb\xa8\x2e\x08\x74\x92\x9b\xc9\x75\xca\xda\x02\x48\x4c\x33\xf9\xa9\x72\xc5\xdf\xf7\x22\x25\xf7\x3f\x24\x1d\xdc\x9a\x73\x36\x7e\x8b\x6f\x6d\xb6\xd8\x5d\xbe\xc5\xda\x0b\x5b\x2c\xd8\xbd\xc5\xdc\x6f\x00\xb7\x8f\x9d\x79\x91\xea\x03\xf0\xc8\xed\x26\x57\x74\x34\x0c\x3f\x76\x61\x99\x0c\x3e\x07\xcc\x12\x07\x79\xe6\x3d\x33\xa8\x93\xf2\xd2\x42\x97\x9d\x1b\xa8\x8e\xaa\xe6\xe2\x5a\xd6\x09\xd4\x7d\x3a\x99\xb2\xd2\x66\x6d\x94\x10\xa3\x6a\xe5\x5e\xe3\x15\x8a\x90\x65\xad\x3a\xb3\xfe\x57\x8a\x92\x23\x97\x5a\x8a\x4e\x28\x79\xd3\x37\x5a\xfb\xac\x86\x3e\x79\x31\x1c\xa3\xad\xa6\x72\x99\x5c\x97\x76\x51\x57\x4e\xb1\x88\xac\x56\x38\x67\x60\x24\xdb\x4c\x56\xae\x63\xd6\xff\x28\xe5\x47\x96\xed\xdc\xa3\xaf\x21\xa1\x4e\xa6\x1d\xea\x34\xf8\x22\x46\x4f\xa6\x99\x4a\x33\xa8\x17\x09\x24\xb3\x2d\x65\xeb\xed\x11\x6e\x22\x5f\xc1\x05\xe8\xdd\xfd\x33\xbf\x3c\x19\xc8\xee\xaa\xc1\x02\xf9\x14\x3e\x72\x9b\x12\x9a\xdf\x91\x52\x48\xb9\x21\x57\xc6\x7f\x94\xd2\x43\x11\x93\x15\x06\x58\xdf\xba\x1f\x02\xb6\xe6\x5a\x1c\xff\xaf\x7b\xe0\xc3\xef\xdf\x5f\x6c\x8b\x25\xb4\x5b\xcc\x17\x02\xb8\xf2\xee\x88\x67\xda\x2c\x00\xb3\xfb\x39\xbb\x78\x5a\x40\x73\x39\xdd\xd6\x09\x2d\x80\xb9\xc7\xca\xcc\x0a\xbe\x13\xe0\x25\xba\xf4\x30\xcb\x95\x07\xae\xc8\xce\xf2\xfe\xb2\x1b\xa3\xb6\xaa\xee\x11\x46\x98\xcf\x52\xed\xb5\x90\xe2\x7c\xc6\x24\xea\x31\x03\x46\x99\x4c\xc3\x3d\x94\x55\xb3\x87\x72\x15\xba\x83\x94\x6a\x87\x39\x25\x35\xad\x34\x4a\x96\xe7\x01\x65\x29\xb5\x01\x8a\x53\x48\xa8\xea\x2d\x25\x4f\x8a\x5f\xfc\x75\x15\x4d\x79\x2c\x85\x23\xeb\xbd\xba\x98\xac\x1d\xe5\x61\x11\x51\x7d\xb7\xd4\x1b\xca\xd1\xda\x41\x0d\x26\x89\x38\xf2\x8f\xf6\x9f\x9a\xf6\xa2\xd1\x64\xf4\xe0\x2e\xf5\x79\x91\x3d\x64\xd2\x14\x97\xda\x88\xf0\x5d\xf2\x8b\x85\x00\x8d\x5c\xa1\x14\x72\xf5\xe6\xb0\xe6\x01\x81\x57\x14\x36\xf2\x53\x65\x4f\x7e\x16\x4a\x0b\xe5\xb1\x6c\x03\xdf\x4d\xea\x5e\x4a\xbc\xd4\xa5\xc7\xbb\xa8\xaa\x94\x5f\x62\xfc\x00\xdc\xd6\x42\xb2\x74\xb2\x00\xc2\x33\xc2\x83\x67\xdf\x02\x48\x19\x89\x8f\x5d\x89\x03\x50\x8e\x95\x9c\x66\x8c\x02\xd0\x7a\x2d\xed\xc4\xf4\x1e\xc0\xd0\x54\x9e\x8e\xfd\x17\x80\x71\x81\x0a\x27\x8f\x03\xa0\x4d\xb8\x34\x66\x85\x69\xc0\xce\x44\x46\xbf\x49\x36\x9b\xfa\xc9\x04\x65\x1a\xaf\x61\x47\xd5\x37\x31\xb6\xdd\x34\x70\xa1\x0c\x1a\xca\xfa\xec\xb2\x64\xa4\x1c\xd1\xef\x09\x97\x74\x44\x92\x6d\x74\x39\x92\x2f\x7b\xa8\x92\x16\xb4\x1e\xe4\x6b\xfb\x1e\x27\x75\xaa\x07\x54\x70\xfa\x71\x93\x2e\xa9\xb2\x35\x5d\x0d\xde\x4d\x1c\x50\x56\xef\x7c\x16\x2a\x41\x74\x57\x38\x3c\xbc\x19\x86\x24\x7c\x93\x2d\xfe\xec\x16\xe5\x4b\x40\x49\x79\x2e\xc5\x45\x32\x12\x06\x25\x96\xd1\xee\x91\xcf\xff\xdb\xff\x20\xde\x11\x33\xc0\xce\xfa\xde\xda\xc0\x49\x1c\xc3\x36\xfa\xa1\x17\x4a\x25\xbc\x71\xc9\x5e\xb9\xdf\xaf\x4b\x1a\xe3\x56\x3c\xaf\x7f\x08\x93\x3e\x89\x03\x4f\xcd\xb7\x3a\x32\x9c\x78\x66\x8f\xfe\xc1\x59\x59\x19\xbc\x8b\xbb\xf5\x1f\x0f\xe4\xae\xfc\x5e\xfc\x2b\xb7\x03\x00\xdc\x37\x04\x33\x69\x71\x7f\xd7\x41\xf6\x88\xa8\xf0\xe5\x60\x00\xd5\xdb\xe2\x95\x0c\x0c\x00\xba\x9b\x92\xc0\x34\x0e\x60\x4c\x27\x17\x76\xff\x01\x80\x79\x84\x92\x15\x4f\x30\x6c\x58\x31\xab\xbd\x16\x91\x07\x6f\x2b\x79\x1d\x07\x59\x39\xea\x88\x19\xaf\xc9\xb8\xa6\x08\xf5\xa2\xb9\xb6\xb5\x8a\x31\x82\x92\x60\x6c\xe1\xf9\xc1\xba\x93\xbc\x60\x78\x39\x34\xc6\x39\x84\xcc\xad\x17\x99\x18\xe5\x25\x4c\xea\xd2\x16\xcf\x6d\xf6\x73\x23\xb6\x6a\x1d\xaf\x88\x0a\x8b\x22\xaa\xa9\xcb\x34\x32\x47\x90\x08\x83\x2a\x3d\xdd\xcb\x31\xc6\x04\x2d\xc5\x92\xd1\x9a\xb8\x4c\x02\xad\x9c\xfd\x97\xc4\xf8\x5a\x3c\x56\xda\x74\xf5\x78\x7c\xc4\xff\xcb\x87\x41\x5f\x93\x90\xc2\x6c\x04\xbd\x5d\x3e\x29\x99\x87\x15\x0c\x9c\xff\x71\x43\xfa\x0e\xd6\x22\x70\xe0\x23\x4e\x46\x1c\x77\xd0\x8f\xf4\x6e\x56\x36\x1b\x77\xd9\x7f\xc7\xb0\xa3\x5c\x3a\x2e\xd8\xf7\x4e\x3f\xbf\xfc\x4d\x1c\xd9\xab\xb1\x47\x40\x7e\x0d\x2f\xef\xb9\xbb\xa3\x56\xe1\x1c\x7e\xc6\xb5\x02\x80\x87\x57\x20\x95\x4e\x15\x40\xcc\x4e\x84\xfb\xbc\xf1\x5f\x1f\x44\x93\x53\xcc\x94\xa1\x15\xc0\xc0\x41\x62\x8a\xa9\x1f\xc0\x8c\x43\x3a\x89\x8d\x15\xc0\x5a\x41\x51\x80\x57\x13\xf0\x36\xe3\xaa\xac\xc2\xed\x60\x63\x55\xab\x83\x92\x4b\xa5\x3e\xb7\xfc\x66\x9c\xaf\x35\x4a\xd9\xb0\x3c\x64\x75\xc1\x8c\x85\x22\x6a\xa6\xe3\x16\x63\x4f\x43\x4e\x34\xa6\x0f\x5e\x71\x9b\x25\xf9\x1a\x1e\x4c\xa4\x0f\x18\x23\xae\xea\x3a\xe6\x1d\x0c\x15\x20\x1a\x6b\x05\x54\xfa\x46\xa0\x09\x3f\xd5\xab\x9a\xf7\xc4\x5c\x27\x24\xab\x5e\x7f\xb1\x23\x76\x18\xbf\xa4\xf8\x79\xac\x35\x51\x0d\x1f\x21\x17\xfc\xbd\x21\x69\x1c\xb7\x2a\x3d\x8f\xd0\x4c\xf5\xff\x6f\x1f\x06\x9f\x27\xf1\x09\xdd\x16\x91\xb2\x8a\x95\x52\xc5\x3c\x08\xbf\xf1\xf3\x83\x74\x38\xa6\x31\x54\x7e\xfa\xa4\xac\x0a\xe6\x4d\xa8\xf7\xfb\x44\x39\x01\xac\x6d\x50\xfb\x48\x9d\xc2\x05\xac\x51\xb0\xff\x2b\x50\x38\x85\x0b\xf2\xcd\xeb\x89\x52\x64\xc6\xe5\xfa\x2a\x75\xdc\x53\x3a\x83\x23\x7a\x87\xb5\x38\x2b\x09\xe1\xb3\xdd\xc7\x01\x1e\xb7\xf1\x99\x9e\x60\x07\x10\xcb\x16\x2e\x39\xbf\x0f\x40\x29\x51\xe4\xd9\x15\x3d\x00\x6d\x1b\x51\x02\xa3\x28\x80\xb1\xab\xf8\x28\xf3\x09\x00\xab\x7b\xd2\x01\xf7\x35\x01\xec\x50\xf2\xb1\xbc\xec\xb0\xe4\xd4\xa7\xdc\xf8\xa4\x07\xdc\x1c\xc5\x35\xcb\xe5\xcc\xa8\xaf\xed\xae\x1a\xb2\x68\xc9\x52\x7a\xad\x32\x2c\xa3\x2d\x2c\xc8\x93\x96\xd9\xce\x6b\xce\x95\xe4\x5b\xa6\x88\xc0\x73\x5e\x6f\x49\x17\x8d\xd9\xe3\x5a\x82\x29\x44\x11\xfd\xbc\x9c\x8e\x28\x1e\xc2\xba\x36\xae\x42\x37\x46\x8c\xa0\xac\x79\xbb\x91\x1c\xbf\x81\x2f\x53\x53\xea\x79\x96\x5c\x88\xbf\xa5\xf4\xf9\x6d\x40\xea\x34\xee\xbd\xdc\xab\xd9\xb9\xb4\xbe\xff\x97\x0f\x83\x6c\x93\xfa\x8e\xaa\x89\x5d\x5e\x70\x92\x31\x45\x87\x45\x61\xbe\x71\xca\x4e\xa0\xbf\x44\x52\xdf\xff\x94\x0f\xc5\xf8\x85\x17\x8f\x68\x29\xf2\x62\x9a\xc2\xaf\xbe\x6a\x53\x32\xc0\xb2\x85\x9e\x78\xf1\x59\xc9\x1a\xb7\x3f\x60\xa4\x9d\x47\x79\x12\xf7\x28\x80\xb9\xd9\x4c\x25\x02\x57\xe1\xfb\xa5\xfe\x80\x0a\x05\x2f\xef\xc5\x0e\xc0\xbf\x83\xaf\xfa\x04\x0a\x40\xea\x90\xd0\xd0\xf9\x2c\x00\x65\x59\xc1\x82\x4b\x3b\x01\xf4\x2e\x8a\xd8\xd0\x7f\x02\x30\x63\x13\x37\x62\xde\x04\xb0\xce\x93\x7c\xc5\xf6\x1e\xc0\xa9\x5d\xb6\x80\xa7\x0a\xc0\x65\x4a\xf1\xb4\xd0\x2b\x70\x76\x15\xd2\xb8\x22\x87\xa3\xd6\xbb\x9c\xd1\x3f\xa9\x73\x89\x52\x68\xf7\xd6\xe2\x8c\x95\x24\x39\xc3\xfa\xa9\xe3\x4b\x57\x34\xa9\xdd\x62\xce\x17\xe9\x97\x41\x34\x31\x1d\x8c\x15\x89\x74\x27\x64\x1b\xed\xcb\xca\x8d\x9b\x24\x9c\xd0\x1b\x2b\x6d\x48\xda\x87\x3f\xaa\x73\xad\xc1\x20\xbd\x6b\xdb\x87\xc1\xfe\x50\x96\x9f\xac\xce\x89\xc1\x7a\xcb\x67\x2e\xe4\xe6\x56\xfc\xb7\xff\x81\x4f\x95\xaa\x41\xf6\x26\x7a\xaf\x34\xcb\x50\x90\xa8\xc4\xca\x6f\x9a\xf2\xbe\x28\xc7\x84\xd0\x0f\x4f\x14\x39\x51\x6d\xf1\x33\xa3\x4e\x4a\x39\xe8\xd0\x98\x6f\xfd\xdd\xca\xdf\x31\x7b\xa2\xf0\x3d\xe2\x2a\x4a\x98\x77\xe1\x7a\xed\x4c\xaa\x5d\x58\xfa\xb0\x4b\x0d\x3d\xea\xc5\x58\xaf\x90\x81\x9a\x14\x8d\x26\xec\xcf\xa0\xe9\xaa\xb3\x1a\x9c\xb8\x3e\x5f\x3c\x80\x50\x1a\xdf\xb7\x53\x57\x01\xa4\xf0\x7c\x82\x67\x92\x00\xd4\x6e\xf3\xa7\x5f\x94\x05\x30\xac\x16\x66\x65\xa0\x05\xb0\xfc\xfc\x04\xcb\x34\x02\xe0\x80\x13\xf3\x60\x7d\x0c\xe0\x4e\x27\x93\xc9\xfb\x0e\xc0\xcb\x59\x5e\x54\x38\x17\xca\xbc\x58\x54\xf6\x4b\xb3\x53\x2b\x3d\xec\x75\xd5\x74\x46\x29\x99\x2e\x16\xa6\x7e\xd6\x3b\xc8\x12\x76\x23\x76\xb7\x3c\xa6\x88\x3f\x6d\xf7\x79\xad\x85\x86\x12\xcf\x9b\x3b\x44\x3f\x89\x4e\x23\x70\x19\x3f\xcc\x9c\x4e\xd4\xc5\x7b\x1b\xec\x2c\x7d\x96\x5a\x82\xeb\xd2\xd1\x6e\x94\xc9\x74\xde\xf6\x61\x30\x11\x2a\xb6\x53\xe7\x8a\xf0\xdb\xde\x03\x56\x57\x76\x68\x23\x2b\xb7\x6f\x7b\x3d\x36\x88\xb2\x6b\x9b\x7b\x32\xcf\xce\x92\xe5\xe3\x91\xba\x29\xdd\x9f\x38\x15\x97\x90\x3e\x29\xd8\xb7\x3b\x95\x2f\xa3\xd2\x12\xd6\x5f\x1f\x52\x69\x45\xdf\x88\xa3\x74\xff\x54\xa7\x47\x0b\xc7\xef\x7d\x7e\x58\x43\x0e\x43\x13\xb3\xe3\xd9\x8c\xe6\x3a\x46\x25\xaa\xef\x29\x68\xe9\x62\x2f\x84\xd3\x57\xd6\x6a\x55\x63\xb3\x42\x2a\x4a\xa5\xb5\x25\x70\x0c\x81\xab\x00\x22\x77\x78\xbf\x9d\x54\x04\x90\x4f\xe4\x3b\x7d\x76\x01\x40\x23\x9c\x7f\xe1\x92\xd9\x5f\x0f\xc2\xfa\x8b\x50\xec\xcd\xa7\x00\x2e\xe8\x27\x29\xf7\x6a\x00\xbc\x7a\x24\xc5\xb9\xba\x01\xfc\xba\x65\x6f\x08\xbd\x81\x0a\xff\x65\xc5\xd7\xd2\x7a\xd4\xef\xfe\x97\x34\x77\x6a\x8e\x53\x86\xbd\x8e\x1a\x4e\x58\x7c\x27\xdf\x70\x3a\x63\x83\xf4\x92\x26\xfa\xdb\x61\x3d\x65\x23\xac\x08\x52\x56\x5d\x11\xe6\x89\x87\xf0\x5e\xa6\x88\xf4\xbb\xa9\x54\x5c\x81\xe1\xb3\xd2\xa4\xac\x50\x6c\xb6\x9e\x79\x03\x36\xdf\x0c\x93\xa7\x45\xdb\x87\x29\x76\xc5\x30\xa8\xac\x4e\x9d\x2f\xe9\x40\xcb\x2b\x64\xad\xd6\x97\x3f\xf9\xef\xf5\x58\x94\x55\xa0\x47\x84\x66\xfb\x7d\xd6\x57\x96\x47\x6c\x66\xad\xbd\xf9\xae\x76\x7c\xd3\x3d\xb3\xb5\x1f\xa5\x7e\x15\x99\x9d\xda\xf6\xe2\x8d\x46\x08\x8a\x36\x85\xa3\xed\xb9\xc6\x30\x5a\x3e\xfe\xfa\xb3\xaf\xda\x07\xd0\xe5\x71\xfb\xaa\x7d\xb5\x37\x30\xe1\x51\x37\x2b\x6e\xe8\x1c\xc1\xb2\x84\x1f\x2e\xfa\xa0\x6b\x82\x8d\x0d\x95\xcb\x8f\xd2\x13\xc3\x0e\x84\x88\x03\x88\xca\x73\x99\xd0\x75\x03\x28\xee\xe7\xbd\x70\xe6\xeb\x3f\x3c\x88\x90\xc7\xa7\xae\xd2\x01\x38\x9c\x16\xbc\x7c\x73\x00\xc0\xa3\x5c\x24\x98\x75\x2f\x80\xdf\x0e\x89\x8f\xdc\x68\x80\xa0\x55\xe9\x97\xc2\x67\x20\x39\x7c\xaf\x02\x8d\xac\x24\x75\x3c\x98\x5e\xfd\xb9\x56\x17\xa5\x21\x40\x5e\xdf\xdb\x4a\x80\xf4\xc9\x83\xd5\x6a\xdd\x57\x99\x30\xe3\xbc\xe1\x7c\x3a\xa6\x13\xef\x65\x5b\x18\xf6\x38\xed\x38\x4e\xc1\x92\x2f\x05\x9f\x13\x8e\xd9\x30\x79\x5f\xca\x59\x7c\x0a\x23\x6b\x10\xd7\xd0\x5b\x1a\x8b\xbe\xa7\x1d\xd6\x9f\x52\x99\xbf\xed\x81\xa0\xf4\x14\xe7\x56\xb4\xab\xe9\xd1\x04\xf9\xc6\xb5\xfc\x12\xc3\x55\x7f\x45\x96\x75\x91\x22\xc4\x97\x76\x15\xe2\x7a\x5d\x51\xee\xbb\x4b\xea\xb5\x1b\x36\x05\x4b\xaf\x63\x35\x8d\x10\x9a\x79\x3c\x2f\xf8\xb4\x06\x37\xfd\xb3\x82\x9f\x37\x6b\x77\x23\x03\xd3\xf0\x0d\x8c\x3a\xf9\xa8\xb8\x24\x64\xf5\x4e\x3d\x6d\xf4\xbd\x84\x94\xd2\x36\x7d\x2e\xf4\x6a\xac\x73\xe1\x0d\x83\x12\x0c\x73\x8c\x6f\x4e\xb1\x41\x05\xf6\x4e\x78\x65\xba\x9a\xd1\x6e\x6c\x7e\xa8\x1f\x80\x38\x2f\x0f\xf7\x49\x4b\x00\x25\x09\x6e\xb9\xd3\x0b\x00\xfa\x72\xdc\xe9\x17\xf6\x01\x58\xc5\x3c\xb6\xbe\xe6\x0f\xe0\xa2\xc2\x7f\xf1\xe6\x79\x00\x1f\x6f\xa1\xb8\x7b\x67\x01\x42\x98\x44\x3b\xb9\x34\x00\x22\x34\x24\x79\x04\x57\x21\x27\xea\x98\x5c\x92\x4c\x3e\xf5\x6b\x64\xad\xca\x37\xad\x07\x94\xf2\xf0\xdb\x3a\x5d\x56\x2b\xe4\xe3\x7e\x19\xe6\x47\xbc\xe3\x08\x7d\xae\x99\x4e\x5e\xb1\x11\xb8\x4e\xc7\x85\x80\x77\x59\x42\x58\x5f\x6b\x62\x92\x4a\x41\x3b\x86\xcb\x3c\xae\xd0\xa5\xcc\xe8\x8f\x0f\x73\x42\x27\xe0\xf5\xae\x9a\xa5\xcd\x58\xb5\x3d\xb3\x9f\x1b\x58\xb7\x7d\x18\xe4\x5e\xc5\xa1\x95\xc5\xca\xfa\x1f\x08\xd5\xec\x55\xb7\xca\x0b\xef\x53\x35\xf6\xae\x1b\x95\x30\xbd\x96\xd3\x6e\x5a\x37\x2d\x79\xdd\x5d\xab\xcb\xb0\xf1\xaa\xa0\xbf\x39\x52\x0f\x85\x80\x1c\x54\xfd\xac\xfe\x35\x24\x53\xc6\x40\x95\x8a\xc1\x33\xe4\xa7\x34\xfd\x92\x65\xc3\x12\x54\x69\xb2\x70\x7e\x96\xd1\x5b\xb4\x44\x42\x43\xd6\x6e\x63\x73\x8c\x6c\xcc\xad\x34\x2e\xe3\x4f\x18\x54\xe4\x85\x24\x3b\x93\x75\xac\x60\x78\x15\x80\x64\x3e\x17\xef\x89\x57\x00\xaa\x1e\x1c\xc8\xd3\x07\x01\x8c\x0a\x39\xf3\xcf\xcb\x03\xd8\x9d\xe7\xe1\xbe\xea\x04\xe0\x29\xc1\xeb\xca\xf8\x06\x20\x88\x89\x6f\xf1\x8e\x3b\x40\x24\xa3\xb0\xea\x23\x0d\x80\x98\x40\x09\x51\xa1\x66\xe8\x4f\x48\x96\xea\x97\x54\x87\x9d\x09\x3d\x8a\x02\xea\x3f\x28\xe5\x71\x17\x34\xe7\xac\x90\xe4\x43\x61\x71\xc6\xb6\xde\x5f\x08\xc1\x7e\x57\xec\x9a\xe3\x1d\x70\x42\x2e\x2f\x7d\x59\x72\xc6\x30\xa5\xf6\x7b\xe3\x8f\x97\x74\xa2\x6f\x59\x36\x15\xd8\x55\xcd\x23\xc7\x4c\x76\x36\x8a\xd6\xa5\x6e\xee\xd4\x63\x1d\x2a\x6c\xde\x8b\x38\xa0\x16\xb2\x50\xdc\x82\xdc\x94\x51\xe9\x59\xb4\x69\x18\x9a\x1f\x50\x7b\xb1\xb4\x59\xf7\x7c\xf2\x86\x96\xdd\x4a\xf0\xd3\x90\x21\x01\xdd\xbd\xab\xc9\x55\x37\xbb\x51\xfa\x17\xd6\xf7\x96\x99\x3f\x97\xd0\x5f\xd8\x70\x2c\xe2\xa8\x3d\x61\xac\xb5\xf1\xbd\x50\xb2\x9c\xcd\x64\x13\x31\x92\x67\x50\xa4\x63\xd2\x82\xd4\xce\x68\xce\x0d\x35\x79\x81\x2a\x4f\x4e\x4a\xef\x36\xbf\x81\xea\x4e\xb6\x4c\x29\x33\x3f\x80\xce\x8d\x2f\x4a\x48\xb1\xa0\xc3\x9c\x88\x2d\x8a\x5d\x36\xe7\xc0\xde\x88\xd0\x07\x90\x7d\xfe\xe8\x06\xdd\x28\x80\xd6\xbe\x87\xfc\xa7\x38\x01\x4c\x49\x9c\xec\xe7\x57\xfe\x73\x1e\x38\xf5\x2e\x33\xfe\xf5\x20\x42\x99\x79\x83\x98\xb4\xfe\xfa\x20\xa9\x53\x22\x96\x7c\xef\xe0\x5d\xea\x27\x89\x4a\x09\x73\x2a\x2e\x1d\x2d\x4f\xab\x91\x48\xe9\x4c\xe6\x54\x0f\xb1\xdc\x20\xe1\x62\x0f\x18\x4c\xfa\xa4\x12\x4c\x43\xf7\x58\xa7\x26\x88\x62\xc5\x3c\x2d\x3c\x98\x0b\xcb\xd0\x2a\xce\xc8\xc8\xa4\x2a\x4b\x64\xba\xed\xab\x9c\x92\xfa\x9f\x9b\x3b\xcd\x90\x0d\xb4\xcd\xc3\xeb\x0d\xfa\xf5\x6f\x18\x3b\xbe\xad\xbd\xd4\xec\xfb\x69\xd3\x55\xb4\xb1\xa9\x56\xbe\x10\xd0\x2a\xf0\xc9\x50\xc7\xe7\xd7\x8f\x66\xed\xe1\x6b\xfa\xd9\x4b\xaf\x9f\x45\x77\x97\x1b\x89\xae\xc8\xd6\xb2\x35\xbb\x1b\xaf\xae\xed\xa9\xfc\x5e\xb5\x60\x16\xb6\x6e\x57\x76\xb6\x6c\x97\x39\xcf\x86\x77\xd1\x5a\x81\x82\x85\x10\x22\x2a\x3f\x36\x83\x6c\x95\xb8\xc9\x9d\x6b\x94\xca\x60\x25\x87\x8c\xce\xf0\x4e\x70\xb6\x2e\x45\x9d\x4a\xf3\x8c\x0d\xb2\x9a\x44\xeb\x24\x1e\x8a\x14\xb0\xb9\x89\xee\x8b\x97\x0d\xed\xb6\xfe\x8a\x19\x8d\x32\xf9\xc7\x3a\x4c\xdd\x0f\x3b\xc9\x00\x60\x8e\x7f\xe0\x78\x96\x01\xc0\x75\xf4\xd1\xce\x4b\xd6\x00\x81\x5a\x9c\xd3\x0c\xdc\x00\x91\x9d\xdc\xaf\x6e\x97\x00\x24\x39\xf3\xe6\xde\xab\x05\xc8\xd4\x14\xbe\xc4\x77\x1b\xe6\x72\xd3\x44\xcb\xc5\x5e\x52\x09\xf9\x0d\x32\x61\x1a\x9a\x94\xd9\xdc\x83\xca\x62\xe6\x54\x52\x63\xda\xb4\x6e\xac\xdf\x3b\xc2\xee\xf8\x3b\xe6\xcd\x49\x2d\x98\x4f\x81\x8f\x5d\xa6\x8a\x07\x91\xbf\x3c\x38\x43\x7b\xea\xd6\x37\xf7\x3a\x3a\x64\x3e\x6d\xe1\x5b\xff\x65\x75\xe2\x19\x6b\x27\xc3\xca\x57\x43\xa6\xf7\x34\x7d\x7b\x57\xe3\xb4\x83\x7e\xb4\xf7\x8c\xcd\xd4\xe9\xb6\xfe\x7c\xd1\x55\x38\xc2\x62\x94\xb2\x60\xda\xc6\xd3\xd5\x6b\x3a\xbb\x28\xd2\xdc\xd0\x74\xd5\xbc\x68\x59\xe4\x99\x52\x75\xaa\x45\xdf\xaa\xf1\x53\xda\x6d\x0f\x24\xbb\xdc\xa6\x66\xfd\x47\xa9\x68\xaa\xac\xdd\x31\xc4\xbe\xc2\xe7\x49\x18\x5b\xa5\x4d\xd1\x5c\xf3\xd8\x0e\xbb\x74\xe4\xe9\xac\x90\xc8\x75\xbb\x10\x94\x70\xea\x72\x68\x9d\x7d\x14\x6a\x2e\x59\x29\xd8\xc6\x7e\x07\x7a\x34\x5e\xcc\x4f\xd0\xc1\x02\xe3\x18\x23\x01\x20\xff\xed\x41\x3a\x9d\xf4\x5f\x0f\xc2\xf6\xde\x7d\xc4\xb9\xc3\x00\x5e\x71\xf7\xe5\x2f\x6c\x00\x84\x5d\x7b\xe0\x71\x55\x0f\x20\x71\xf5\x51\xf3\x8d\x0e\x80\xcc\x97\xbc\xbe\xec\xba\x00\xf9\x79\x02\xfb\x79\x84\x00\x4a\x7b\x84\xcf\x88\xc4\x81\x71\xf9\x67\x71\x69\x05\x02\x85\x58\x96\x2a\x5f\x6b\x16\x49\xbe\x53\xcc\xac\xee\xe0\x25\x45\x60\xce\xa4\x37\xde\x95\x58\x84\xc6\xc4\xd4\x39\x54\x95\xbf\xd8\x3c\xec\x27\xe6\xdf\xd2\xc2\xbf\xbe\xe2\xd6\x9b\xd2\xd3\x99\xbc\xc2\x67\x7f\xa5\xfe\x66\xbf\xce\xaf\x4d\x63\x99\xa9\xfe\x11\xfe\xf9\x01\x03\xa9\x6f\x75\x03\xcc\xa3\x3c\x66\x35\x3f\x9a\x5e\xde\xe8\xe2\xb3\x32\x98\xbb\xda\xad\xf4\x8c\xdb\x26\x7c\x01\xdb\x76\xb8\x0c\x61\x37\xb8\x74\xb0\xa9\x37\x0f\x61\xff\x65\xe5\x71\x5d\x66\x3a\xc6\xf1\xde\xea\xbb\xea\xe8\xa4\x04\xa7\x3d\xeb\xb7\xca\x5f\xc7\x7e\x73\x3a\xb4\x31\x58\xd4\x16\xd1\xe6\x7c\x05\xf1\x26\x5f\x2b\x62\x97\xd3\xb5\xcd\xaa\x1c\x9e\xc0\x01\xe7\x0f\xc8\x8c\x8c\x7e\x7f\x5f\xe7\x50\x94\x7b\x2a\x9f\xcf\xa2\xd3\x0c\x3a\x3e\xc1\xcb\x43\xdd\x79\x16\x23\x13\x7b\x1c\x40\x09\x7f\x9f\x9b\xee\x22\x80\xc9\x6e\xb6\x81\x93\x68\x00\x07\xec\x7d\x9e\x73\xda\x00\x3e\x3a\x6c\x3e\xe7\x03\x00\xa2\x98\xd8\xdd\xaf\xd0\x02\xa4\x38\xde\x6f\xa7\x37\x04\xc8\x3f\xc0\x69\xc6\xe2\x0d\x50\xc6\xff\x58\x90\xb3\x17\xe0\xe9\xa6\x60\xb8\x48\x17\xc8\xd7\x0b\x88\xd6\x29\xb1\x51\x0f\xd7\x1b\xc8\x38\x98\x4a\x93\xa5\x6a\x3e\x29\xdb\x7a\xbc\xc2\xcf\x95\xdc\xd5\x3f\x93\x7c\x16\x3d\x99\x3e\x6b\x9d\x59\xc1\x8c\xd8\x15\xea\xea\xb3\xa7\xcd\x65\xf9\xbd\xdf\x5a\xbc\xf7\x40\xd3\x42\x9f\xcb\xcb\xba\xf2\x31\xed\x39\x37\xf3\xaf\x1f\x94\xc6\x7d\xdf\xdf\xb6\x72\x9d\x3e\x35\x7a\xbc\xbb\xc4\x8e\xfa\x6d\xe9\xf5\xcd\xa7\xd5\x4e\x03\x3f\x8f\xf7\x8c\x14\xf7\x3b\xcf\xcf\x7f\xee\xe8\xc9\xbe\xe0\x7a\x6a\xd1\xa1\xc5\x2d\x79\xd3\x8d\x7d\xd9\xf1\xd9\x62\x5c\xab\x9b\xc4\xaa\xcd\xd3\xcf\x51\x93\x6e\xaf\xd7\x22\x2b\x07\x83\x73\x3d\x36\xd7\x9b\xcb\x8c\x02\xeb\xdd\xa3\x11\x2a\x85\x57\x7d\xeb\x3c\x6a\x11\xd4\xbc\xaf\xde\x1b\x6e\x23\xc8\xc6\x0c\xdb\x6d\xff\xc3\x73\x8f\xeb\x41\x74\x78\x42\x99\xfb\x45\x57\x77\x8c\x4a\xcc\x22\x80\x2a\x9a\xfd\x36\xdd\x51\x00\x93\x72\xb6\x95\x53\x8f\xfe\x7a\x10\xc1\x45\xec\x13\x97\x86\xfe\xe1\x41\xf8\xb1\x1d\xbf\x16\x0f\x50\x2a\xf9\xf0\x14\xd3\x0e\x80\x1a\x36\x2e\xcb\xfb\x04\x80\x26\x66\xfe\x72\xe1\x09\x48\x6c\xb7\x13\xca\x92\x65\xa7\x6a\x74\xca\x4a\xec\x37\x98\x21\x3b\xb5\xaf\xca\xef\x72\xab\x23\x08\x35\xac\x68\x2c\x27\xf0\xa2\x75\x2a\x03\x4c\x9a\x2b\xbb\xd7\xcb\xd2\x36\x5d\x2f\x76\x09\x2e\xbc\x0f\x27\x44\x5c\x1b\xcb\x9b\x39\xe7\xfb\xb8\x56\xee\x53\xc1\x67\x11\x47\xb7\xb7\x47\x3f\x69\x75\x90\xdc\xaf\x7f\x1c\x7b\xf7\xa6\xf2\xba\xf7\xfe\x2f\x6f\x87\x5f\x65\xfb\xfa\xf6\xcd\x14\xf7\xcb\xa4\xd5\x79\x97\xcc\xb5\x75\x0b\xc6\xb2\xfb\xc6\xfd\x92\x69\x13\x08\xd7\xf3\xfd\xbc\x94\xda\xc4\x19\x2c\xe2\x7b\x69\x65\xba\x36\x25\x88\xd5\x3b\x7e\xcd\xb2\x4a\x3c\xe0\x9d\x57\xf2\x7a\x41\xd9\x53\x3f\x67\x2f\xd8\x78\x51\x7c\xc1\xc7\xda\x8b\x69\x93\x37\x17\x3c\x77\xf8\x28\x22\xc3\x33\xcf\xbb\x13\x3c\x27\x51\xfd\xc9\xb0\xed\x7f\x38\xb3\xf8\x3c\xc2\x84\x45\x63\x01\x34\x77\xb2\x25\xd0\x29\x00\x58\xa0\xef\x39\x9e\x64\x01\x70\x37\x62\x95\xfe\xcf\xfd\x10\xea\x72\xf7\xee\x39\xfa\xbf\x1e\x44\x81\x26\xdb\x9e\xeb\x85\x00\xd5\x5d\xac\x05\x0c\x09\x00\x4d\xa8\x07\x08\x96\x45\x80\xae\xd3\x3c\x46\x8f\x7d\xa1\xab\x4f\x88\xbf\x43\xb2\x8e\x9a\x32\x50\xf5\xa4\x5d\x97\x9d\x9c\xda\x9f\x26\x3d\xee\x32\x45\x90\x7d\xd9\xab\xdc\x1c\xcf\x8e\x6e\xec\x2c\xd1\x99\x29\xaf\x5e\xf3\xaa\x36\xb1\x65\xeb\xd9\x33\xc7\x92\x3d\xe1\xff\xe3\x3d\x62\xaa\x2e\x42\xb1\x92\x79\xf6\x6e\xd7\x97\xe0\x9c\x41\xd2\xf7\x1b\xc5\xa5\x61\x27\x27\x86\x27\xcb\xd3\x27\x43\x37\x3e\x7f\x7d\xd3\x10\xf7\x3e\xb4\xea\x7b\xcc\x6b\x8e\x68\xc5\xe0\x4b\x3f\x3d\x7a\x7a\x42\x1f\x84\xd1\xfd\xda\xd5\xb6\x10\x44\x08\xe6\x5b\xea\x6b\x1c\x0c\x28\x08\xbc\xb7\xca\x5a\xf3\xd4\x27\x2b\xb8\x70\xfd\x70\x85\xb1\xd7\x78\xd0\xcb\x0d\xef\xe2\x35\xf7\xf2\x90\x00\xc4\x7c\x3e\xbd\x6b\x47\xc8\x1d\xe4\xe5\xac\x02\xd7\xa2\xc0\x45\xe4\x58\x3a\xca\xb9\x34\x70\x37\xfa\x42\x52\x80\xd3\x81\xc0\xcf\xe8\x96\xf8\x57\x8e\xfb\xfd\xe7\x30\x95\xd1\x82\x00\xba\xb7\x59\x3f\xd1\x35\x01\x58\x1b\xde\xf1\xa1\x93\x04\xf0\xe1\x62\x56\x39\xe9\x01\x10\xc5\xcd\x5c\x71\xc6\x1a\x20\x9d\x93\x25\xf6\xe2\x05\x80\xd2\xe7\x2c\xeb\x57\x6c\x00\xea\x6d\xef\xd5\x31\x1c\x05\xe8\x14\xbb\xff\xe4\x4e\x18\x40\xbf\x05\x87\x3d\x07\x2d\xac\x8d\x05\xf0\x0e\x89\x22\xa8\xb8\x89\x74\xc1\x11\xf5\x7b\x64\xcc\xd4\x65\xf1\xc3\x0e\x9c\x84\xa1\x0f\x48\xd9\xa6\xa8\x65\x74\xe2\xfb\x62\xd5\xb7\xe5\x3c\x6b\x8a\x43\xbb\x0d\x0d\x5f\xe4\xfc\x38\xfc\xfc\x92\x2b\x4c\xb1\xb5\xbf\x2f\xd6\xce\x1a\x59\xc8\xcc\xaf\xc8\xb3\x7b\xe5\x3b\xdb\x96\x30\x99\xbb\xf9\xfe\xf2\x47\xbd\xe8\x6f\x69\x15\x9f\x2b\xde\xcc\x87\xc5\xa5\x64\xcf\xec\x1b\x50\x0e\x78\x99\x44\x9a\x37\xeb\xa4\xf8\xf1\x25\x7c\x5a\x64\x6e\x15\xf7\x0a\x4b\xb8\xb4\xc2\x56\x7f\xc1\x73\x28\x66\x69\xf5\x5d\xf5\x5b\x77\x64\xec\xad\x35\x6a\x85\x95\xeb\x40\x74\xd7\xc6\x97\xa2\x64\x97\xbc\x28\x0d\x04\x35\xef\x99\xd3\x74\xd4\x23\xe4\xa9\xac\x5a\xc7\xa5\xf0\x9d\x28\x8f\xd4\x5b\xf6\xea\x11\x3a\x68\xef\x84\x56\xbb\x77\x61\xd2\x18\xde\x58\x01\xdb\x8b\x61\x7d\x18\x64\x64\x0f\x80\xfe\x22\xcb\x1a\x2d\x13\x80\xbd\x3b\x93\x30\xad\x00\x80\x7f\x29\x73\xc2\x29\x15\x80\x84\xbb\x8c\x8b\x74\x46\x00\x79\x6c\x37\x22\x4f\xae\x03\x3c\x9d\x67\x2c\x38\x15\x06\xd0\x6a\xc4\xdc\x71\xe5\x32\x40\xbf\xe9\xdd\x61\xc6\x75\x80\xb1\xfa\xfb\x63\x6c\x3b\x01\x3e\x4f\x71\x09\x0a\xb0\x01\xd7\xec\x3b\x3e\x50\xbe\x48\xf1\x59\xf4\x14\xb9\x6b\xb9\x41\x20\x2c\x9f\x94\xb4\x8a\xc8\x40\x7f\x5c\xbb\x23\xd7\x56\xf2\x7c\x65\x65\x4e\x4a\xf3\xcc\x8b\xd4\xd1\xc1\x4f\xfe\xb6\x23\xe3\x2a\xa5\x2c\x23\xec\xb1\xa4\x19\xc9\x28\xc3\x81\xb5\x01\xe5\x19\x44\x90\xe0\x73\xb1\xc9\xdb\x13\x9f\xfd\x84\xeb\x2e\x7d\xf1\x1c\x39\xed\xb3\xb7\x34\x63\xf6\xca\xcb\x7c\xf7\xee\xe2\x81\x05\xf5\xf6\xd7\xae\x1f\xf3\xbe\x2d\x25\x37\xbe\x76\x15\xcb\xbe\xb7\x22\x50\xd7\xee\xc2\x93\xee\xb1\xc6\x59\xe5\xee\xf4\x3d\x75\xff\xfa\x72\xa9\xfd\xb6\xff\xe1\xc0\x90\x64\xbe\x69\x9d\x43\xb4\x8f\x49\xb0\x42\x2a\x64\x96\xda\x30\x25\x8c\xa3\x2f\x26\x3d\xb2\x5e\x8a\x4b\x45\xbf\x8a\x17\xb7\x9a\x8b\xa3\xc1\x58\xc6\xf0\x5a\x8e\xc5\xb6\x61\xa8\x91\x1a\x00\x26\x37\xee\x4e\xd3\x35\x02\x38\xe3\xef\x2c\x9d\x94\x03\x08\xf6\xb9\x29\x4b\xbb\x09\x90\x34\xc8\xe0\x4f\xfb\x04\xa0\x64\x72\x27\x3f\x0d\x0d\x40\xe3\xa3\x2b\xcd\x47\xab\x00\x7a\x03\xe9\x69\x4e\xc4\x01\x8c\x46\x31\x5f\xba\x2a\x00\xf0\xb9\x89\xf5\x08\x13\x17\xc0\x82\xf7\xc3\xfb\x8f\x86\x21\x0e\xf1\x95\xb7\x41\xee\x30\xa5\x9b\xf8\x59\x70\xc1\xec\x25\x71\x37\x66\x40\xdc\x31\xbc\x66\x2d\x64\x63\x5a\x9e\xab\xb0\x7c\xc2\x75\xa9\x43\xe7\x4e\xd3\x66\xbb\xcc\x6c\xae\xed\xe1\x57\x11\x99\x97\x3e\x1f\x08\xbb\x3f\xde\x1a\x38\x31\x51\xde\x9d\x32\x75\xd5\xf5\xd0\xe4\x9d\x0f\x5f\xc6\x35\x5c\x76\xf5\x56\x7e\x6b\x7e\x6d\xed\xbc\xda\x5c\xf8\xf3\x46\x8f\x83\x23\x5b\x9d\xe6\xaf\xb2\xd6\x16\x87\xa6\xca\x93\xcb\xd7\x1a\xee\x3a\xec\x2c\x41\xac\x50\x6b\x82\xec\x2c\x0a\x2d\xd7\x79\xca\x1f\xd9\x3c\x2f\x18\xdb\x48\x2c\x02\x9b\xae\xec\x46\x04\x31\x4f\xc5\xba\x25\xb3\x13\x49\x9f\x75\xda\x8a\x31\x63\x0c\x25\x95\xea\x61\x79\x2b\x6d\x09\x2d\x95\xf8\xc8\x42\x39\xd5\x05\x73\x34\xb6\xcb\x5c\x2a\xb5\x05\x13\x1a\xed\x6e\x2e\x9b\x48\xc5\x4a\x86\x37\x01\x98\x95\xb3\x4c\xd0\x59\x03\xb8\x62\x6e\xd9\x1c\x1f\x07\x08\x7f\xb0\x93\xee\x3f\x73\x67\xdc\xde\xb5\xef\x9f\xb9\x6f\xfb\xcb\xad\xff\x73\x47\x5b\x68\x82\xff\x27\xef\x3a\xb0\xe3\xee\xff\x78\x00\xe2\xcc\x9a\xd7\x76\x00\xa0\xe3\xd8\x15\xee\x5d\x05\x32\x75\x17\xf7\x47\xf1\x5e\x4a\x15\xb1\x5b\xe8\x84\x79\xce\x06\x09\x3b\x2e\x8e\x0c\x7a\xff\xb9\x1e\xc9\xa5\x38\x92\xc5\xf2\xf2\xee\xda\xb0\x1e\x67\xd5\xb7\x6a\xf3\x45\x35\xdb\xb2\xb6\x37\xf1\xce\x3f\xe2\x82\x79\x5f\x3f\xf6\x69\xfd\x96\x50\xdf\x39\xf2\x78\xdb\x03\xb1\x7e\xfd\xc1\xe2\x7b\x58\x7f\xa2\x55\xc9\x00\x79\xde\xae\x23\xd1\x4a\xe5\x45\xc1\xe2\xc9\x16\x1e\x2b\xaf\x16\xfc\x72\x45\xbd\xb1\xd5\x9e\x67\x46\xab\x4d\xd5\xd7\x2d\xde\x3d\x0d\x5c\xa7\x94\xb8\x5b\x74\x55\xf8\x21\xe8\x0b\x26\xcc\x05\x4a\xdf\x6d\xbe\xcb\x9a\x37\xf3\x2a\xd2\x45\x5d\x4d\xfd\x60\x4a\x2c\x38\x80\xc2\x26\xe9\x99\x32\xe5\xfd\x40\x57\xc6\xf3\x9a\x56\x66\x35\x60\xa4\x63\x2c\x4d\x5e\x65\x5a\x62\x77\x46\x2c\x1a\x1b\xa7\x7f\xc2\x62\x82\x7f\x01\x58\xed\xb8\x81\x38\x32\x0e\xe0\xf5\x93\xbe\xf0\x88\x2f\x40\xcc\xf7\xad\x79\xb7\xbd\xa0\x67\xa1\x34\x2d\xff\x97\x07\x31\x87\xde\x22\x26\xf9\x7a\xee\xf1\x4d\x00\x80\xbb\x13\x8c\xc7\x00\x49\x41\xf3\xec\x91\x70\xde\x0c\x22\x52\x85\x3a\xcd\xf4\x67\xf6\xe1\x7c\xa4\x2e\x04\xf0\x0c\x77\xa3\x5d\x95\xcd\x13\xb3\x9b\x66\x36\x3e\x19\xfc\x2c\xdd\x5b\xb8\x7f\x35\xc4\x36\xac\x6e\x3a\x8a\x6d\x41\x20\x60\xa5\x7b\xc1\x73\x71\x8e\xa5\x62\xf7\x4b\x79\xf3\x81\x59\xda\x6f\xd3\xaf\x82\x8c\x8c\xe7\xdf\xfc\x5c\xee\x32\x30\x7c\xfb\x55\xe1\xd7\xc1\x56\x5d\x23\xf4\xd8\xa3\xe5\x73\xf5\x5f\x8c\x27\x5f\xdd\x58\xbd\x5f\xdd\x6f\x62\xd9\xb9\xbe\xd6\x51\x5e\x6d\x8c\x6f\xc9\xde\x78\x51\x18\x6f\xcc\xde\x40\xbf\x69\x91\x3d\x6f\x5c\x56\x13\x87\x7c\x94\x79\xc8\x98\xa1\xca\x1f\xc5\x97\xba\xc3\xc8\xbf\x3c\x17\x2d\x98\xd0\x69\x14\x5f\xd2\x86\xfe\x10\xf7\xd0\x30\xa5\xf0\x15\x66\x33\x62\xd1\xd0\x3d\xff\x21\xd6\x27\xec\x8e\xa1\x4e\x2e\x1f\x76\x21\x64\x0f\x80\xdd\x1c\x03\xed\x61\x75\x00\x7f\xb5\x9d\x57\xff\x33\x57\xa2\xfb\xef\xdc\x97\x6b\x8b\x6d\x26\xbf\x3d\x88\x9a\x7f\xe7\x9e\x7f\x7c\x18\xb8\x80\xd9\xab\xfc\x1f\xb2\xbe\xbc\x5d\x80\x34\xa0\xf4\xf3\xbc\x93\x7a\x39\xab\x4d\xea\x14\x3e\x68\x30\xff\x8e\x85\x70\x50\x6a\xc9\x3d\xb8\x6b\x0d\xb3\xa1\x2a\x1e\x2d\x53\x7d\x0c\x19\x6b\xf8\x28\xbb\x24\xc3\x66\x23\xc2\xb6\xb2\xfc\x4e\xc8\xf1\xd5\x3e\xef\x2f\x75\x6f\xdd\xc6\x96\xdb\x72\xb8\x9a\xda\x2d\xae\x2e\x9e\x1b\xb2\x6d\x0b\xd1\xbf\xbf\xc8\xb5\xe0\xf6\xfc\x92\xb6\xdf\x0a\xed\x92\xc7\x33\x3a\x1d\xdd\x19\xf5\x15\xab\xa7\xe9\x7a\x4c\x13\xc9\xab\x1f\x2a\x79\xf5\xce\x0d\xd9\x6c\x38\x14\xd6\xe8\x1d\x7a\x29\xbf\x79\x3b\x67\xaf\xde\x62\x47\x27\xf2\x68\x06\x41\x2f\xaf\x55\x1f\xf5\x20\x25\x56\x8f\xb6\x51\x12\x6d\x12\x1f\xa5\xb7\x50\xdb\x86\x9e\x88\x7d\xa9\x97\x5f\x3d\x84\x89\x89\xb2\xd0\xd7\xaa\x60\xc2\x4c\x47\x1e\xd5\xd3\x2e\xcd\xc6\x8e\x87\x9c\xd4\xbb\x56\xbc\x81\xe3\x0c\x5c\x01\x70\x66\xba\xfa\xe2\xa0\x08\x40\xe8\xef\x1c\x63\x3b\xf7\xdd\xce\xfb\x7a\x59\xff\xbd\x0f\x16\xf9\xff\x95\x7f\x03\xc0\xe5\xb4\x03\xe3\xd8\xfb\x80\x65\x75\x67\x4a\x9b\x23\x52\x0f\xf0\x14\x88\xcf\x4d\xfc\x20\xdf\x10\xb9\xa8\x8b\x7f\x59\x48\x20\xcb\x98\x3a\x8e\xd4\x1b\xe2\x46\xd5\x92\x03\x07\xf3\x7a\x31\x5a\x86\xbf\xe2\x51\xf1\x5d\xc8\x04\x5b\xc3\x9c\x5c\x3f\x1c\x42\xd9\x2b\xae\xf4\x90\xcb\xc9\x75\x7c\x0a\xb9\xf2\xb6\x79\xc8\x5a\x7b\xeb\x44\xf5\x77\x9d\xf7\xab\xcc\x33\x17\x6b\x93\xd5\x11\x6b\x13\xab\xc6\x95\xb7\xd5\xd2\xd7\xbf\xaf\xf9\x95\x7e\x50\x7b\x36\x7f\x79\x23\x22\xff\xab\x86\xe8\x54\x17\x62\x3c\x87\x4e\x93\xeb\xed\xcc\x66\x47\xe6\x39\xcd\xa6\xc1\xdb\x48\x7c\x4a\x96\xe6\xd7\xde\x2e\xf4\xd5\x78\x9c\x16\x43\x97\x14\x7a\x38\x96\x5e\x73\xf4\xb9\x0e\xe6\x47\xc4\x29\xad\x83\xcd\x67\xb0\x0a\xa1\x54\xad\xa5\x67\x96\x58\x9f\x50\x51\xad\x95\x9a\x5e\xdc\xd9\xa0\xab\x9a\xb7\xab\x29\xf8\xbb\xde\x03\x00\x1e\x96\x5b\x73\x6d\x9f\x87\x42\xc4\x16\x5b\x93\xff\xbd\x0f\x66\x6e\xff\x5f\xf9\x37\x9e\x1f\xe0\x5a\xfd\x31\xb5\x5f\x4d\xb0\x7a\x6f\x9e\x89\xfe\x03\x89\x1a\xca\x9d\x2f\x54\xd7\xaf\x45\xfe\x2c\x52\xa1\xde\xd7\x62\x42\xba\x2e\xb3\x62\xe9\x5b\xf6\x86\x20\xa0\xf6\xd3\x73\x5f\xda\x49\xdc\x75\x23\xd1\xf0\x23\x11\x8f\x30\xd6\x36\x0c\x09\x7a\xde\xbb\x50\x4c\x1e\xf5\x59\xc9\x8e\x9c\xc8\x23\x09\x89\x79\xcf\xcd\xd9\x36\xbd\xab\x12\x0a\x4e\xeb\x5a\x22\x98\x47\xd3\x8a\x79\x54\x93\x37\x2a\xd7\x55\x8a\xef\x29\xdb\x6e\x2a\x23\xce\xe6\xb2\x28\xc1\x66\x05\xc2\x31\x7b\x4e\x59\x72\x91\x65\x73\x23\x6d\x4e\xc5\xe8\xab\x39\x92\x9c\x2c\xa3\xda\x3e\x11\x85\x4a\x4d\x94\x50\x3d\x3c\x66\x88\x46\x45\x6b\xa9\xd2\x0f\x46\x61\x3e\x85\x0b\xaa\xd6\xf7\x29\x60\xb5\x42\xd6\x54\x8f\xbf\x90\xc1\x49\xfb\xaf\xab\x0a\x75\x30\xe3\x86\x7d\x45\xd4\xdc\x5a\x5c\x71\xb3\x3e\x54\xd5\xe2\xe6\x0f\x78\x0d\x2f\x06\x80\x80\xdf\xe7\x60\xdb\x87\xa9\xde\xb7\xc5\x9e\x8f\xff\xf6\xe3\x7e\xe7\x3d\xdb\xf3\xf7\x6c\xe5\x39\x73\xbb\x00\x76\x1c\xa3\xa1\xf9\xf4\x01\x3e\xb3\x06\x30\xef\x1f\x66\xa3\x36\xf0\x9c\x16\x88\x6f\xcf\xa3\xb8\x8a\x24\x29\x86\x3d\x5d\x26\xcd\xcb\x5a\x18\xcb\xe6\x14\x10\xd3\xd4\x6f\xdb\x57\xc6\xa5\xe0\x3f\x1b\x36\xf8\xcc\x6e\xfb\x0f\x6e\xf6\xd8\xd3\x6e\xb7\x62\xe5\xed\x2c\x31\x12\x91\xef\x12\x99\x4c\x8d\xd1\x4d\x85\xf6\xc9\xdc\xba\x9a\xa8\x8e\xce\x98\x34\x7d\x55\x15\x94\xdd\x74\x7f\x2a\x61\xdb\x7f\x50\xd8\x83\x5a\x45\x7e\x48\x72\x90\x9b\x43\xf7\xa2\x9e\xc7\xc5\xc9\x4d\xaf\x6b\xa3\x8b\xa2\x86\x14\xce\xfd\xe4\xc1\xf0\x45\x64\x28\x28\x7f\xb9\x89\xa5\x0b\x99\x56\xf0\x9e\xbc\x8e\x5d\x09\x78\xae\xc8\x3a\x2a\x86\x8b\xf6\xcd\x53\xba\x35\x08\x38\x57\x3f\x0d\x45\x93\x57\x27\xf1\xee\x1e\x8e\x4a\x2f\x5f\xcc\xe0\x35\x3c\x03\x94\x4f\x76\x2c\xe2\x1b\xdd\x5d\xff\xfa\x30\xdb\xf7\xe2\xf6\x3e\x78\xf3\x7b\x5d\x7e\xfe\x5e\x07\xb8\xff\xaf\xfc\x7b\xe5\xb7\x07\x61\x0d\x40\xef\x7d\x52\x6b\xf4\x22\x7c\x66\xa3\x61\xea\xea\x3e\x4b\x7d\xce\x3b\x2b\xf0\xba\xae\x86\x7a\x5e\x18\x23\x89\x2d\xd2\x20\xa7\xc8\xf1\xe9\x5e\x4d\xe1\x20\xc5\xa9\xcb\x99\x7f\x09\x17\x27\xd2\x19\x36\xb8\x24\x7a\x33\x12\xae\x59\x29\x79\x7b\xfe\x2f\xff\x21\x1f\xfb\x26\xf3\x78\xe4\xa9\x6d\xff\x41\xad\x02\x53\x3c\xf8\x26\xe6\x93\xc2\x3b\x8c\xce\x5c\x50\x4c\xc6\xb6\xff\x20\x3d\x86\x45\x60\xf7\x07\xf3\x4a\x87\xe2\xae\x63\x1f\x07\xd1\x4b\x4b\xa3\xf2\xb0\x3d\xfe\x91\x32\xee\x8b\x5f\x70\x87\xfd\xf2\x65\x62\xbe\xa3\x71\x08\x4f\x9c\xac\xd3\xe7\x8f\x38\x82\xd7\x39\xb9\xeb\xef\x9b\xf1\x86\x1e\x3b\xe4\xe6\xdf\xc8\xe2\x33\xdc\xc8\x72\xb9\x43\x21\x04\x06\xe7\x3c\x39\x6a\x7f\x36\xc1\xd0\x89\xe5\xef\xbd\xb8\xbd\x0f\xb6\xdf\x0b\xdb\xb9\xe7\x3f\xce\x41\xc8\x3f\xf2\xef\xcf\x5b\x1c\x7c\xb2\xc5\x9e\xbb\xb0\xc6\x4a\xbd\xb5\xd2\xd0\x0f\x0c\x3c\x1f\xb8\xc5\xcb\xb8\xa9\xea\x22\x78\xf1\xf3\x99\xa6\x94\x73\xf2\xbb\xd5\xf1\xb1\xd7\xc9\xb7\xd4\xe7\x8d\x22\x03\x19\x49\xa1\xfa\x65\x16\x13\xee\x23\x44\x7f\xf3\xaf\x8e\x7e\xf6\xec\x84\x71\xc7\xcb\x6e\xcf\xb6\xfd\x07\xc3\xf7\x04\xc1\xc4\x60\x2f\x07\xed\x59\xbc\x77\xd9\x3d\xbf\x36\xb5\x3c\xdc\x87\xf6\x8f\x81\x15\x0a\x95\xb8\xce\xf7\xfe\x01\xc3\x32\x6f\x71\x5a\xcb\x98\xc0\xe8\x3f\xfe\x83\x2f\xde\x19\x57\xec\x75\x6d\xdb\x7f\x90\xa4\xc1\xdb\xe3\xc8\x1e\x07\x25\x7e\xac\x7d\xc6\x7f\x70\x7e\x22\x69\x31\xcf\x49\xb8\xef\x68\x28\x19\x35\x63\x43\x08\xb4\x0f\x97\xb2\xfb\xf4\x99\x90\x63\xcf\x21\x55\x37\xc1\x46\x20\xd8\x60\xa5\x0f\xbf\x15\x20\xde\xb4\x9e\xfd\xbb\x0f\x9e\x4b\xfc\xf6\x40\x2e\x6f\x71\xd5\xe4\x9f\xf9\xf7\x26\xe2\xdf\xf9\xf7\xa8\xd2\x16\x5f\x32\x00\xd0\x7b\x9d\x7c\xd8\xbc\x0f\x56\xd9\x75\x6e\xdf\xae\xa4\x07\x05\xde\x87\x1c\xc6\x39\x63\xd4\x0e\x91\x11\xa1\xf8\x84\x6e\xca\xb4\x2c\x55\xfe\x54\x58\x31\x99\xaa\x36\xa0\x49\xf4\xb6\x22\xdf\xd7\x8f\x35\x8a\x75\x92\x23\x55\x99\xa9\x99\x67\x6c\xfb\x0f\x66\xc6\xc4\x0f\xde\xcb\x76\x14\x83\xaf\x44\xab\xe8\x70\xa7\x2b\x5a\x3f\x88\x0f\x72\xcc\x9d\xb9\xd4\xe8\x08\x43\x35\x3f\x5d\xbd\x15\x1f\x10\x2a\x5e\xcc\xb8\xea\xcb\xa6\x11\xf6\x7e\x48\xf2\x70\x96\x62\xc7\xc3\xf2\xb8\xbb\xa6\x38\x86\x60\x88\xcf\x77\x46\x88\xcd\x13\x28\x04\x11\xfb\x6c\x31\x41\xa2\x2a\xa1\xc8\x76\xa7\xa8\x39\xf1\x35\xf1\x82\x65\xac\xa8\x18\xa6\x9e\x68\x60\xde\x2f\x46\xbb\x9a\x46\xb4\xb0\x38\x2c\x26\x3a\xd7\x4b\xec\x34\x5d\x14\x4b\xff\x71\x97\xf8\xc6\x34\x45\x6c\xea\x0b\x07\x11\x4c\x14\x00\xaa\x8f\x6e\xcd\xfb\x2a\xea\xf7\x7d\x68\xf2\xcf\x73\x40\xc0\xfc\xce\xbf\xf3\xfe\x2b\xff\x2e\xd8\x62\x0b\x1b\x00\x63\xc2\x69\xc1\xaa\x0f\x00\xac\x28\x86\xba\x7c\x0f\x28\xe6\xce\x60\x5d\x4a\xb1\xa3\x52\x9e\x9c\xe3\xcb\x8b\x04\xaa\xbd\x8c\x8d\xf8\x65\xbf\x14\x4a\x92\x1a\x4e\x59\xcc\x55\x8a\x72\x54\x8f\x47\x33\xc2\xf6\x1d\x59\xda\xf4\x8b\x61\xd0\x1f\xff\xe1\x00\xa9\xde\x73\xc6\x3c\x4b\x5f\x81\x64\x1f\xd6\x6e\xf9\x5a\x13\x41\x32\x4d\xf1\xb5\x1c\x50\xbd\x40\xba\x54\xb2\x6a\x1d\xb7\xed\x3f\xc8\x76\x13\xdd\xfb\xc7\xed\x50\x52\xaa\x44\xe6\xe9\x47\xf6\xc4\xff\xf6\x1f\x9e\xec\x23\x39\x13\xdf\x1b\x93\xb7\xbd\x07\x91\xfd\xa4\x45\x92\xac\xc1\x4e\xe1\x32\x32\x1d\xc9\x4b\x2f\x44\xf8\x05\x2a\x97\x54\xa8\x1b\x2d\x82\x5b\x59\x23\x19\x18\x5c\x15\x31\x5f\xe0\x24\x8d\xeb\x04\xfc\xf5\x81\xb6\x3d\x90\xdf\x5e\xdc\x6f\xff\xe9\xd7\xd5\xdf\x1e\x54\xcd\xbf\xf3\xef\x36\x09\x80\xab\x1c\xc7\xe2\x8a\x4f\x00\xd0\x3c\xa0\xa1\x29\x7c\x05\xc0\x7e\x99\x41\x3d\xcd\x1e\x6a\x78\x25\x59\x15\x62\xc5\x80\x53\x84\xc4\x9d\x1b\xa4\x44\x7d\x29\x13\x2c\x4c\xef\xb5\x87\x7a\x45\x95\x4f\xe6\x94\xc3\x5d\xca\xa0\xce\x2d\x85\x42\x4b\x0c\x45\xd8\xa8\x52\x0d\xcc\x58\xc9\x63\x56\xa6\x3a\x3c\x86\x89\xe4\x2a\xd7\x00\xbd\x3d\x3a\x65\xe4\x98\xc0\x71\x7d\x6e\x4d\x4f\xf2\x83\xd8\x40\xa3\x28\x15\x65\x32\x6b\x76\xad\x11\xbb\x42\x37\xe9\x7b\x55\x8c\x49\xb0\xdc\x19\x52\x52\x6b\x86\x59\xb0\xe4\x2c\x29\x73\x88\xd5\x94\x55\x7c\x8a\xe4\xf9\xf1\x82\x69\xa4\xa8\x20\xc9\x70\x35\xdc\xf4\xa1\xc8\x3c\x29\x98\x38\x67\xec\x24\x9c\x43\x3e\x43\xf2\xd7\xd3\xf9\x5f\xde\xc3\x57\xca\x6d\x72\xb1\xf2\x7b\x81\x05\xe2\x1e\x72\x89\xf2\xa4\xe0\x75\x94\x35\xb9\x58\x85\xf6\xaf\x07\xf2\x0f\x2f\x8e\x86\x86\x66\xcd\xf7\xdf\x1e\x4c\xbf\xdd\x16\x9b\xc6\x01\xfe\xf3\x9d\x5d\xe6\xb0\xf5\x5c\x74\x1a\x80\x81\x9f\xae\x3e\x83\x07\xe0\xde\xa9\xcb\x27\xe2\x62\x00\xc9\xd5\x7c\x3b\x36\x54\x03\xa2\x85\xd5\xee\xa3\xbd\x7b\xe1\x9e\x54\x22\x4f\xa3\xf3\x27\x6a\x81\x72\xfd\x13\x5f\x1b\x46\xea\x19\xed\x49\x19\x3b\xd3\xd7\x94\x29\x83\x69\xf9\x28\x23\x47\x4a\xab\x99\x81\xa2\x8a\xfe\x11\x8a\x8d\x63\x96\xaa\x81\xf6\x49\x0a\xbb\x6f\xb1\xc6\x03\xf5\x44\xca\xde\x88\x40\xad\xe3\xca\x43\xe4\xc9\xd4\x9b\xda\x6f\xe4\x57\xc9\x6b\xf9\xb2\x5a\xba\x32\x24\x72\x45\xcd\x7e\x9d\x08\x29\x26\xb2\x47\xfb\x98\x6e\x8b\xf8\x45\xb2\xfe\xf0\x57\xdd\x3e\x51\x15\x32\xdb\x67\x56\xbd\xd7\x22\xec\x64\x95\xc5\xef\x3a\xcd\x42\x6b\x64\x0b\x82\x80\xb6\x99\xe0\x2a\xf9\x15\x99\x5b\xfd\xad\x00\x23\xc5\x8c\xfc\x4b\x91\xf5\xbf\xbd\x87\xc7\x53\xd4\x8b\x94\x0a\xc9\xc3\x7f\xbf\x0f\xff\x6f\x0f\x66\x28\x75\x8b\xcf\x7b\xb7\x58\x71\x79\x8b\xd9\xbf\xcf\x47\xa6\x29\x00\x43\x2e\x1d\x7d\x82\x1f\x00\xeb\xfe\x4b\xa1\x11\x47\x81\xc8\x3d\x74\xab\xd7\xef\x39\xf4\x08\x31\xdc\x3b\xe7\x96\x09\x46\x92\x08\x8e\x1a\xbb\x11\xea\x8a\x12\x42\x20\xde\x62\x07\xf5\xa9\x46\x9a\x88\xaf\x91\x00\x95\x5d\xff\xbb\x54\x8c\xbe\x10\x55\xd0\x44\x4c\x12\xaf\x2b\x4c\x21\xd9\xde\x96\xbb\xa9\x69\x43\x59\x70\xbf\x28\xef\xa1\xe6\x41\x79\x1a\x38\xa1\x64\xa4\xd4\x45\xb1\x8d\xb7\x53\x65\x90\x4f\xa2\x24\xa6\x09\x29\x73\xc8\x4e\x50\xf6\x97\x78\x6a\xa0\xa4\x34\x29\x8c\xb5\xbf\xd4\xcf\x8b\x33\x52\x98\x3b\x5e\xa9\x31\x8b\x5a\x93\xb1\x83\xbe\xea\x2f\xb7\xfd\x07\x21\x0a\xf9\xc3\x7c\xad\x7a\xaf\xa0\x3e\x85\x61\xfd\xb1\x0a\x17\x3f\x9e\xe2\x4a\xc6\x29\xc4\xf0\xd5\x50\xbe\x51\x4c\xa5\xd1\x8f\xad\xa8\xdc\x94\x41\xf1\x1c\x5e\x1d\x6a\x00\xf5\xd4\x93\xf3\xdb\xe7\x60\xdb\x83\xf9\x79\x60\x8b\x6f\x7e\xfc\xf6\xa0\x7e\xef\x83\xa7\x6f\x7e\xfb\x2f\xe8\x2d\x66\x1d\x03\x38\xff\x69\x1f\x47\x08\xff\xd6\x73\xe4\x00\x00\x5b\xfb\xa5\xf5\x40\x1e\x00\xce\x31\xfa\x59\x77\x43\x58\x13\x3c\xce\x64\xef\xc0\x0b\x25\x12\x0a\x6c\x9f\x2c\xd9\x40\x51\x41\x9e\xf3\xad\x49\x35\x75\x55\xdd\x53\x80\x45\x9f\x4c\xcd\xd3\xdd\x2b\x42\xd0\xdb\x43\x8d\x32\x64\x17\x35\xd1\xea\xa4\x5a\x59\x0d\x8a\x7f\x54\x0b\xa2\x7a\x3a\x73\x8a\x3f\x54\xe1\xa3\x8a\xf9\xb4\x49\x3d\x56\x60\xa0\x4a\x87\x1f\x90\x9c\x91\x97\xa2\x20\x12\x02\xe4\xca\x65\x77\x51\xfa\xb2\x92\x15\xa2\x24\x09\x94\x97\x25\x43\x0a\x37\xc5\x6f\x53\xda\xeb\x0f\xc9\x93\x9e\x0c\x53\x3a\xda\x45\xe5\x2d\x44\xcc\x29\x5e\xaf\x5b\x14\x3f\x09\xd6\x50\x7a\xc6\x43\xe4\x68\x05\xfc\x28\x75\xdf\x93\xe4\xcc\xf9\x59\x29\x6f\x56\xe6\x64\x9a\xf9\xef\x51\x9a\x89\xb5\xb2\x3d\xbf\xd7\x21\x9b\xf7\x20\x35\x85\xca\x24\x72\x04\x80\xf5\x96\x08\xfd\x91\x43\x00\x3c\x0c\x82\xd3\x74\x39\x00\xa2\x82\x4f\x8c\xcf\x8f\xff\x6f\x1f\x44\x87\x43\xc6\xfd\x4e\x37\x80\x41\x9b\x22\xf7\x43\x45\x00\x13\x2e\x55\x2a\x5f\x10\x34\x9a\x5e\xd2\xb9\x22\x71\x1a\xc4\x8c\xb9\x0c\x17\x15\xa2\xa9\xcf\x4d\x68\x2d\x1d\xb4\xa6\xa8\x5c\x86\xa2\x6e\x0d\xc6\x8f\x28\x21\x06\x6c\x81\xee\x36\xa1\xe4\x09\x9d\xef\x09\x1a\x2e\x2a\x64\x56\xcd\x8f\xb9\xcb\x5e\xf6\x24\x82\x5a\x4f\x85\x8d\xcf\x25\x52\xb4\x4a\x55\x83\xa6\x7f\xc8\x1f\x0f\xe4\x8b\x7c\xcd\x90\x6c\xc8\x71\xa2\x83\xcc\xc8\xa7\xb1\x30\xeb\x3f\x1e\xc8\x7f\x79\x0f\xa4\x93\x62\x33\x58\x85\x00\x2e\x6c\xb4\x98\x37\xee\x81\x77\xca\x4a\xa8\x38\x02\xa7\xe3\xed\xf7\x33\x5a\x72\x37\x2e\xcb\xab\x71\x7a\x9f\x54\x30\xae\xd3\x2b\x71\x02\xa4\xef\xe1\xe9\x3d\x52\x46\x99\x64\x02\xf0\xf6\xee\x92\x03\xc5\x32\x73\x78\xac\x8b\x60\xaf\x87\x1c\x07\x9e\xe2\xe2\xd1\x35\x22\xa7\x4e\x30\x75\xfc\x09\xf0\x80\x2c\x7c\xfd\x98\xe5\x5f\x0f\x62\x7b\x1d\xe4\xeb\x9e\xa4\x5f\xd9\x01\xa0\xb9\x5f\x5c\x8e\x31\x06\x40\xef\xb2\xcc\xfa\x5d\x55\x00\xa3\x76\xf9\xce\x07\x19\x00\x66\x27\x54\xe8\x1f\x1f\x85\x69\x8b\x59\x0d\xf3\x27\x54\x60\xb6\xb8\x64\xf0\x4c\x99\x99\xea\x6e\x7e\xc3\x0c\xa3\x67\x4b\x59\x34\xe9\x72\x66\x37\x7f\x44\x51\x31\x64\x0c\x94\xb3\x6b\x27\x2b\xeb\xdf\x8d\xbf\xee\x29\x43\xc2\x69\xef\xc9\x29\xf5\x09\x23\x71\x68\x10\x2a\x68\x83\x0a\x89\x2d\x6a\x6d\x0d\x32\x61\x0f\x88\xfe\xca\xc1\xdd\x4c\xe1\x4a\x84\x5f\x0a\xed\xa3\x2e\x51\x08\x42\x93\x6c\xfa\xf4\x74\x74\x10\xc1\x5f\xaa\x77\x25\x35\xe6\x34\x61\x58\xe2\x17\xda\x2b\xb2\xfa\x8f\x0f\xf3\x9b\x88\x26\x09\x1f\x2c\x5f\xa0\xdd\x5c\xb8\x14\x1f\x36\x2d\xc0\xff\x2b\x5e\x5a\x08\x3b\xe1\x5f\xf7\xe1\x81\xcc\x65\x9c\xb9\x0f\x71\xcc\x46\xf6\x12\x6e\xd0\x9b\x7b\x30\x4f\xce\x15\xf7\xcd\xfb\x5e\xdf\x51\x79\x2e\xfc\x13\xcf\xb3\x5d\x0a\x0a\x07\xf1\x4f\xdd\xbe\x3f\x1f\x56\x60\x22\x3c\x76\x36\x03\x78\x70\x58\xd0\xe3\x68\x1c\x80\xc0\x03\x61\xfe\xd3\xb7\x00\x24\x5a\x44\x1e\x5e\x78\x08\xa0\x88\x7b\xa2\x76\xe5\x19\x80\x86\xa8\x84\xf3\x0d\x5d\x00\xe3\x30\xc9\x05\x96\x1c\x00\xb3\x12\xd9\x0b\xf7\x9d\x00\xac\x1d\x95\x35\xf8\x9b\x60\xc6\x3a\x4a\xfd\xd0\x93\x29\x78\x64\xf5\x56\xff\xb0\x52\x35\xd5\xdd\xe2\x89\x99\xa8\x5e\x30\x65\xd0\xcc\xd3\x81\x6c\x91\x49\xc6\x18\x4f\xf9\xad\x38\xbd\x22\x7d\x34\x54\x8b\xfd\xe2\x3b\x4a\x0a\xd1\x55\xcb\xa2\x0b\xf0\x24\xa6\x69\xcd\x96\xd3\x87\x27\x12\x95\xd5\x4b\x1a\x1e\x45\x5e\x24\x0c\xaa\x44\xbe\x28\x8f\xd1\x27\x68\x2b\xe6\x8c\xf6\xc7\x25\xe3\x5f\xcb\x79\x7e\x93\x4e\x34\xc1\xcb\x49\x2b\x23\xd6\x92\xb9\x09\x9a\x92\xf1\xa8\x4f\x31\xc5\xdb\xfb\x02\xad\x28\x69\x89\xfe\x1c\x21\xb5\x6c\x24\x15\x8c\x71\x0f\xdb\xf5\xfd\xb5\xcc\x13\xcc\x9b\xd0\x0b\x7f\xfa\x50\x18\xe4\x94\xb1\xaf\x03\x28\xaf\xab\xe4\xdf\xe0\xf8\xfd\x48\x7d\x5f\x14\xd8\x70\x05\xbe\x3b\xba\xec\x15\xe6\xf1\x8f\x3d\x5b\x9e\xc7\x29\x59\xe3\x39\xbc\x1e\x35\xad\x2b\x79\xe2\xdb\xdd\xaf\x00\x70\xaa\x0a\x90\x8f\x0f\x00\x08\xe4\xf3\xa3\x4f\x71\x02\x48\xed\x13\x1a\x3f\x9f\x0f\xa0\x8c\x12\x3d\x7e\xed\x36\x80\x5e\xe6\x93\x9f\x8c\x09\x00\x26\x20\xa1\x7d\x27\x08\xc0\x7a\x46\x66\xec\x11\x33\x80\xad\xbd\x02\xf1\xb1\x21\x4c\xdb\x27\xa9\x3e\x17\x1d\x06\x36\xfb\x52\xdd\x03\xca\x8e\x54\x15\x6b\x59\xd3\x16\x83\x91\x3f\xfd\x28\xbd\x66\x07\xbd\x51\x2e\xbd\xa4\x3c\xa3\xcf\xd1\x48\xff\x46\x22\x59\xff\x4c\xa6\x6d\xc8\x57\xe2\x5d\x1d\xc6\x32\xad\xa8\x2c\xc2\x94\x86\x66\xe3\xe3\x98\x40\xc2\x39\xd5\x86\x9e\x0b\x09\x3f\xf0\xcb\x8a\x8e\xef\x84\x13\x05\x70\xe3\x72\x91\x3f\x37\xd3\xda\xff\x78\x0f\x4b\x52\x8f\x50\x5c\xf1\x1e\x7f\xfa\x50\x82\xa5\xac\xd0\x61\x51\x4c\xdb\x7d\x28\xd3\xe7\x64\x57\x31\xda\xe1\xaf\xde\x51\xe5\x17\x30\x49\xe1\x7a\xc3\x86\x0a\x7b\xb0\x95\x41\x74\x2f\xab\x94\x58\xb0\xb5\x41\x91\x5d\xb2\x4a\x99\x38\x1d\xff\x13\x6d\xb4\xca\xa2\xb8\x46\x5f\xb5\xc6\x9b\x2a\x67\xf1\xfc\x5e\x96\xb5\xa5\xaa\x4a\x78\x7d\xcf\x79\x00\x6e\x11\xbe\x42\x5a\x71\x00\x21\x0d\xfe\x5b\xa7\x78\xff\xf6\xa3\xa8\x73\x0b\xea\x5f\xe6\x01\xd0\x1f\x17\x8d\xbb\x31\x01\x60\x11\x2e\xf1\xe0\x2e\x3d\x80\x6d\xa3\x54\xdb\x03\x59\x00\xe7\x5d\xb2\x13\xbc\xcc\x7f\xbc\x18\x2e\xd7\x93\x5a\x66\xca\x8a\x54\x4d\x47\x46\xa3\x7e\x03\xa0\xc8\x59\x8f\x59\x0b\xdb\xce\x93\xef\x5a\x96\x7b\x9e\xf5\xd2\x25\x52\xcd\xf2\xc3\x9b\x43\xe6\x88\xe7\x0d\x87\x33\x34\xa2\xbd\x08\x91\xba\xd5\x65\x67\xe2\x77\x10\xee\x68\xba\x36\xd1\x24\x6c\xfc\xe9\x45\xe1\x53\xce\x1c\xef\xcc\x7a\x83\xbb\x2f\x97\xfd\xeb\x41\x26\x0a\x27\x2f\xe3\x85\x40\x66\x4c\x6e\xfb\x30\x98\x0e\x29\x04\xea\x40\x42\xc8\x76\x1f\xca\xd7\x66\xf9\x23\x28\x74\x9c\xd4\xbb\x22\xc5\x7a\xb4\x6a\xac\xc3\x90\xb0\xd2\x0c\x9a\x1a\xf5\xb5\x6f\x43\xd9\x13\x53\x12\x0e\x5d\x2d\x2a\x26\x58\xe1\xd0\x87\xed\xfb\x55\x48\xd8\xac\xe0\xf4\xc6\x00\x35\x01\xdc\xb9\x40\xe9\xda\x4a\xb5\x28\xdc\xb0\x6f\x70\xd9\x17\xcd\x42\x5c\x85\xdf\x5b\x00\xee\x1a\x5e\x24\xed\xe9\xff\x1f\x0f\xa2\x5e\x10\x49\x9f\xf9\xb7\x1f\xc5\x61\x40\xe2\x14\xbb\x2a\x80\xfb\x1b\x99\xef\x8f\xdb\xe1\xb3\xe7\xa2\xe2\x4b\xb1\x16\xb8\xef\x59\xa5\x51\xae\x4c\xa6\x8a\xbb\xf8\x1b\x96\x18\x3d\x20\xe3\x1d\x4e\x58\x95\x3b\xe2\x48\xb3\xd6\xee\xee\xa9\xbe\x47\x89\x51\x16\x4e\x61\x7e\x11\xaa\x84\x01\x63\xc3\x34\xf3\xd8\x97\xf8\x69\x7d\xc6\xb2\x1d\xc9\x46\x7f\x7a\x51\x5e\x6b\x60\x5e\x9e\xc8\x45\xff\xe9\x45\xd1\x95\x67\x5a\x67\x2d\x4a\xfd\xe3\xc3\x98\xc9\x68\x6d\x9e\xc8\x50\x59\x95\x94\x5d\xda\x9c\x4b\xa5\xcc\x3c\x52\xd0\x40\x8a\xa4\xea\x4c\x94\x28\x29\xa1\x58\x93\x34\x87\x7f\xa8\xec\x42\xbd\x4f\xb8\xf7\x2a\x57\xf5\x10\xda\x29\xb6\xbf\x7b\xbf\x2a\x06\xc3\x13\xe5\xdd\x9c\xa3\xe1\x8b\x31\x8f\xba\xd3\x48\xab\xbe\x88\x7d\x12\x3a\x57\xd5\xaf\xe5\x8d\xf5\x09\xe5\x29\xaf\xd7\x32\xc0\xd1\x07\x8e\x96\xd8\x6a\xc9\xe0\xfa\xfd\x04\x01\x1e\xd3\x3f\xa6\xa3\xf3\xf9\x9b\xff\x6f\x7b\x10\x3a\x2e\xfc\x8b\x97\xdf\x03\x98\xbd\x11\x0c\x64\x30\x01\xb0\x1f\x15\xaa\xbb\x1d\x05\xe0\x5a\x21\xfe\xe4\xfe\x3b\x00\xcf\x56\x69\xca\xe3\x80\x3f\xfd\x28\x2c\x7e\x34\xea\xa7\x54\x72\xa9\x1a\x5e\xbb\xf4\x1a\x0c\xfd\xc9\xeb\x2e\x2a\x16\x4f\x9d\x32\x49\x52\x0e\x22\x4e\xe7\x02\x57\x88\x0c\x56\xd1\x21\xca\xd1\xc2\xf8\x5e\xb3\xe4\x14\xa5\x14\x6d\xfc\x11\x43\x9b\x12\x9e\x8c\x87\xb8\xa3\xba\x69\x8d\x77\x73\x6f\x60\x06\x35\x97\xfa\x5a\x8a\x5a\xfe\x78\x20\xdb\x3d\x20\x8b\x72\x36\xeb\xa8\x82\x83\xa8\x8b\x72\xca\x1b\x43\xb9\x9a\x3f\x69\x15\xcf\x22\xbe\x66\x65\x7d\xb0\x50\x91\xd9\x3c\x96\xd5\xfb\x66\xaf\x2a\x13\xd2\x26\x8d\xa6\xaf\x5d\xbd\x06\xd9\x9e\xaa\xd7\xdd\xa7\x5e\x8c\xda\x4c\xf0\x6e\xf1\xd3\x98\x47\xe3\x62\x9e\x3c\x7b\xa2\xe5\x80\xb9\x19\x5d\x5b\xdd\xa8\x7d\x14\x43\x0e\x9f\x2c\x37\xd5\x7e\x8d\xf5\x08\xf5\x2b\x7a\xa9\x33\x8f\x9d\x08\x9e\xc8\x57\xd0\x99\xc2\x05\x07\x9c\x02\xe0\xdd\xcd\xbb\x9b\x36\x05\x40\xf2\x1a\xef\xdd\x53\x29\x00\xca\x4b\x3c\x85\x67\xf5\x01\xf4\x05\x78\xba\x2f\xee\x01\xb0\xf6\xe5\x3f\x4a\x9f\x06\xe0\xb4\x2a\x74\x8d\x89\x0b\xc0\x4b\x5f\xb4\xe6\xc1\x0e\x80\x00\x61\x09\x5d\x1e\x7f\xd8\x0c\x5e\x90\xdd\x23\x7a\x0e\xb4\x82\xa4\x94\x27\x15\xbd\xa9\x26\x01\x1e\xda\xb9\x86\x17\xc8\x93\xde\x11\xa6\xa9\xce\x4b\xdb\xfd\x28\x84\x52\xdb\x82\x80\xf8\xb8\x7c\xdc\xa6\x65\x75\x22\x47\xe6\x2d\xec\x0f\x13\x96\xa2\xc1\xbc\x08\x8c\x8d\x01\x7d\xa3\x61\x09\x75\xbb\x17\x05\xed\xa5\x52\xf2\x65\x57\xb9\xd9\x76\x0f\xc8\xf6\x7a\xfc\x32\x54\xf2\x5d\xe7\x2b\xd6\xfa\x34\xa1\xb2\xb9\x11\x95\x8f\xde\xee\x43\xe9\x77\xd0\x98\xd9\xd4\xcc\x6a\xe8\x3a\xa8\xe5\x87\x94\x4d\x0f\x6b\x79\xa6\xad\x8e\x92\x49\x1e\xae\x75\xd0\xe5\x44\x9f\x48\xf8\x59\xd9\xa9\xbb\x86\xee\x89\xdb\x57\xb6\x5f\x4f\x0c\x63\x12\x4d\x9f\x97\xaf\x8f\xc6\x5e\x0c\x9f\xcb\xcd\xd4\x3f\x89\xed\x0f\x31\xfb\xeb\x81\xf0\x7a\xf2\x7a\xd0\x62\x00\xa4\x5c\x78\xca\x4f\x65\x01\x68\x86\x73\x09\x9f\xbd\xf7\xd7\x0b\xb2\x6b\xe7\xfd\x7a\xdd\x12\xc0\x2d\x8b\x1f\x7d\xfb\x38\x40\xc0\x55\x21\x1c\x9b\x21\x40\x48\xb6\x58\x1a\xcf\x1e\x80\xc8\x1e\x49\xac\x08\x1b\x58\x45\xef\x57\x38\xac\x10\x4c\x35\x0b\xe3\xd2\x64\x36\x3c\x43\x46\x04\x1d\x31\xba\xee\x84\xfb\xd3\x8f\x72\xd2\xf1\xa9\xb7\x74\x92\x08\xce\xc0\x3a\x2c\xbe\x20\x87\x1f\x63\x6a\xd6\x51\xd4\x55\x9a\x82\x2e\x30\x92\xae\x9f\xa9\x08\x43\x85\xe9\xac\xbe\x3a\xf0\x54\x66\x73\x51\xd5\xf3\xa7\x6b\xfd\x06\xea\x80\x92\xd6\xf2\xec\x53\x57\x84\xb2\xe2\x8f\x55\xf9\x8a\xc2\x6f\xd2\xaa\xe4\x35\xd6\xf2\xfb\x6f\x39\x34\xcf\xae\x1b\x96\xe8\xf5\x95\x68\xfb\x6e\xd4\x16\x0c\x74\xf6\xe9\x64\x22\x7a\x73\x2d\x5a\xfa\x74\x9d\x36\x5f\x67\x22\xeb\xf8\xf5\xd6\x91\x9d\x69\xb1\x15\xe6\x06\x63\x28\xf1\x94\xca\x62\x75\x83\x1f\xe8\xa0\x78\x9f\x3c\x6d\x23\x0b\xf4\xfb\x38\x91\xac\xab\x46\x7e\x98\x57\x91\x9f\xd2\xec\x8c\x77\x60\x95\xc3\x2f\x27\xef\x30\xce\xc7\xf6\x85\x2c\x02\x08\x64\x71\xef\xa3\xad\x04\x90\xd6\xe6\x70\x38\x71\x0c\x40\xc7\x9a\x6b\xd7\xd9\xf1\xbf\x1e\x84\xe3\x27\x5e\xb5\xeb\x18\x00\x9f\xef\x3c\x8a\x8c\xad\x00\x41\x02\x82\xb4\xf7\x52\x01\xa2\x8a\x85\x73\x38\x62\x01\x62\xeb\x25\x6f\x3c\x61\x04\xab\xb8\x33\xf2\x3b\x15\xf2\xa9\xca\xb1\x73\x6a\x29\x46\x42\xe4\xfa\x88\x16\x03\x46\xd7\x94\x3f\xfd\x28\x7c\x6e\x21\xae\xaf\xd3\xd9\xb0\xba\x0e\x3a\x91\xbe\x85\x86\xe8\x5a\x4b\xc6\xfc\xc1\x8a\x8e\xff\xd5\x8b\xc2\xa3\xc6\xbf\xb0\xd2\xa2\xb4\xdd\x8b\xf2\x53\x55\xcd\x7b\xe5\xc8\x53\xec\x84\xb5\x66\xc1\x6a\x5c\x65\xd1\x80\x92\xee\xd1\x35\xdf\xf2\xc2\x6e\x5a\x3d\xc5\x75\x7c\xb1\x5b\xd3\x55\xc3\xe0\x0d\x9b\x22\xcf\xda\x05\xc3\x02\xc4\x4a\x6e\x4a\x85\x9e\x51\x00\xf2\x76\x26\x47\x21\xc9\xb8\x1b\x75\x36\xb5\x37\x3b\xd6\x94\x17\xf5\x23\xa9\x36\xdd\xcc\x6c\x37\xda\x2f\xe1\xdc\x76\x0f\x4a\xd2\x0e\x33\x16\x4c\x5b\x94\x79\x5c\xb8\x99\x1a\xd6\x3e\x6c\x0a\x40\xd8\x93\xab\x8a\xee\x1e\x80\x7c\xca\x03\x34\x9d\x1b\x80\xae\xe5\xa3\x17\x67\x44\x00\x2c\xf7\x73\x3c\x3e\x8f\x00\x70\xf9\xc2\xad\x74\xad\x0f\x20\x30\x9d\xc7\xe0\x66\x00\x40\x94\xf1\x63\x61\x16\x77\x80\x04\x1d\x21\x24\x97\x38\x40\x0a\xbd\xa8\x82\x60\x14\x38\xa6\x6d\x4a\x8f\x29\x9c\xa2\x26\xa5\x46\x28\x69\xe9\x35\x91\x7f\xc4\x97\xeb\x04\x39\x57\x11\x0b\xc2\x9b\xcd\xef\x86\x17\xe1\x86\xbd\xa6\x5d\x54\x32\xdf\x63\x4e\xba\x18\x87\x9d\x2c\x97\x44\x09\xd8\xdc\xcb\x25\xd5\xba\x6e\xf7\xa2\x20\x1e\xe9\x79\x8f\x44\xb7\x7a\x6d\x70\xaa\xd7\xcc\x7b\xb7\xb9\xae\x3a\xa9\xe1\x7e\xe9\x37\x07\x4c\x95\x6b\xbb\x2c\x09\x34\x30\x0f\x6e\xea\x2d\x2d\xff\xa8\x1d\xeb\xb2\x33\x8c\x59\x35\xa8\x56\x68\x7c\x62\x4c\x58\x6b\x29\x5f\xab\xae\x34\xf5\x5e\x87\x12\x89\xe2\x59\xf3\xcc\x8d\xf9\xc2\xf2\xdc\x67\x16\xbe\x9b\xac\xb9\xda\x19\x1f\x2c\xa5\x91\x17\xb3\x4e\xa4\x66\x59\x44\xa1\xfc\x52\x92\x12\x9f\x58\xd6\xa3\x69\x92\x22\x63\x2f\x59\x9d\x40\xcf\xc4\xd5\x45\x8c\x5a\x55\x63\x4a\xa3\x4f\x87\x7d\xb0\x62\xc5\x6a\x84\xc7\x00\x3c\xc9\x7b\x54\x79\x1c\x09\xa0\x30\xfc\xe0\x1d\x5d\x05\x80\x81\xe8\x83\x82\xd3\x8a\x00\xb6\x02\x0f\x12\xce\x15\x03\x78\xd6\x3d\x90\xbc\xf8\x1c\x20\x28\x9d\xab\x82\xb1\x1c\x20\x76\x8e\x7b\x83\xd9\x04\x20\xc5\xf9\xb1\x2d\xdb\x30\x40\x56\x8a\x88\x91\xa0\x3c\xd4\xe6\x7c\x12\x5f\x93\x56\xa6\xb6\xe4\x2d\xca\xe9\xeb\x78\x92\xe7\x33\xc7\x35\xdc\x9d\x8d\x89\xf1\xf1\x17\x4c\x76\x47\x5c\xc6\x5d\x0d\xa9\x72\xa8\xce\x0d\x43\xdf\xf4\x70\x0c\x7c\x52\x7d\x75\xb3\xc0\xc1\x3d\xf3\x73\x93\xe0\x86\xad\xa5\xe1\xb3\x87\xed\x45\xab\xdf\x0d\x4e\x8f\x2f\xf5\xc4\x6d\xf7\xa2\xcc\xf0\xe8\xb8\xcd\xeb\xb4\xbb\x0d\xe5\x19\x26\x2c\xee\x69\x7e\xd1\x2d\x65\x72\x79\xa9\xbd\x81\xe3\x59\x9a\x79\xf1\x0a\x5b\xdd\xb1\xca\x68\x8b\xaf\x6b\xfb\xab\xd4\x8a\xef\x59\x76\xae\x87\x95\x5d\xca\x46\x5a\xcb\x6d\x0c\x14\x69\xa4\xdd\xb3\x79\x8d\xc8\xcd\xaf\x4c\xa1\xb7\xce\x41\xee\xc9\x4a\x8a\xbb\x6c\x53\x8c\xba\x95\xc6\x1d\x99\x6f\xdb\x85\x1a\x4e\x2e\x0f\x35\xb1\xf3\x44\xc7\x26\x18\x86\x1c\xb0\xcd\xc3\x68\xc6\x94\x06\x50\x6d\xa7\x31\x10\xe9\x07\x20\x7d\xe1\x11\x0d\xdd\x49\x00\xb5\x14\xf6\x11\xba\x02\x00\x13\x31\x76\x89\x53\x56\x00\x4e\x07\xee\x9b\x9e\x1b\x01\xf0\xe5\x7f\x38\x72\x45\x1b\x20\x52\xe8\xa1\xfa\x75\x25\x80\x64\xa9\x47\x73\x37\x2d\x00\xb2\x29\xbc\xc1\xf7\x25\x01\x0a\xa5\x04\x99\xf9\x24\xe0\x5d\x99\xe2\x93\x73\x12\x7a\xd4\xee\xb2\x35\xe9\x76\xed\x71\xca\xfe\x22\x0b\x95\x2f\x8e\xed\xc4\xdc\xcc\x49\x7d\xa5\xf0\x28\xdc\xc9\x78\x26\xeb\xba\xdc\x6e\x64\x91\xbf\xb1\xb7\x48\xfd\xc7\x0d\x3b\x37\xe5\x14\x86\x8e\x2b\xab\x51\x36\xd3\xcf\xea\x5e\x4a\x2c\xdd\x34\xe6\x98\x74\x1a\x5c\x9f\xdb\xa7\x8f\xfa\xfe\xf6\x95\xfd\x70\x83\xd9\xb9\x59\x54\xcf\xce\xce\x32\x0b\xf5\x05\xf5\xb6\x8d\x7a\x43\xeb\x6b\x8b\x09\xcd\x11\xe5\x37\x6d\x8f\x2d\xdb\x3d\x33\xca\xb3\xb2\xbf\xb9\xba\xa3\x26\x3d\x3d\xdf\x81\x65\xed\x59\xe5\xae\x64\x19\xfb\xa5\x0d\xf3\xe2\xc9\xb8\x02\x87\x35\x84\x44\xe1\x9e\x98\x65\xfb\x95\xcd\x80\x9c\x8e\xb0\x13\x8e\x91\xc8\xc2\x8c\xb8\xc0\x46\xa7\x02\x94\x42\xea\x27\x7f\x11\xa7\x5b\x68\xf1\xc4\xe7\xde\x96\xce\x27\xd0\xdf\xe3\x8f\x7b\xf2\x3b\xb5\x62\xf2\xa3\xdd\x01\x64\x7d\x1f\x6e\xd0\x65\x03\x68\x8c\xdc\x3f\x76\x42\xf1\xff\xf0\x20\x4e\xb3\xbb\x5e\xe2\x01\x88\x93\x61\xe7\xba\xf2\x1e\x20\xe3\xf3\x43\xb6\x1b\x65\x00\x85\x3a\x1c\xfc\x77\x34\x00\xaa\xb2\xf8\x42\x1e\x5f\x81\xa5\x3a\x7a\xa1\x6b\x62\x5c\xd4\xa9\xda\x51\x09\x9c\xd6\x09\x8a\x50\x8d\x8e\x82\xa3\xdd\x02\x31\xa6\x5c\x5a\x4b\x3c\xbc\x1a\xbb\x9e\x39\x62\x7e\x33\xcf\x68\xf3\x63\x24\x8f\xbb\x4e\x63\xc9\x1a\x93\xf7\x9d\x84\x67\xbd\x3c\x4b\x0f\x1c\x93\xeb\x79\x86\x5a\xe6\x07\x4c\x87\xa7\xee\xbc\xe5\x19\x77\xb0\x5c\x99\xa6\x0e\x7f\xe8\x02\x5b\xde\x19\x5c\xdf\xfc\xd3\x4d\x47\x81\x39\xbd\x6e\x83\x92\x3a\x47\xc3\x5f\x75\xad\xb3\x99\x0b\x2e\x21\x4b\xe6\x4d\x62\x29\xbb\x5c\xc2\x57\xda\x6a\xf3\xe2\xcc\x5d\xa8\x6b\x01\x95\x63\xd1\xd7\x5d\x8f\xad\x97\x97\x59\x86\x20\xdd\xc4\x11\xfb\x8a\x2e\xfe\xf1\x40\xe6\xdc\x7e\x21\x77\x67\x9f\xf1\xae\x70\x0b\x43\x6e\xa6\xbb\x79\x26\xb9\xfa\xa1\xe9\x93\x6c\x3c\x54\x5c\xcf\xa3\x3f\xc5\xb3\xbb\x07\x3b\x8f\x60\xe2\xa2\x47\x00\x64\xf1\xf7\xc7\x69\x75\x01\x74\x3e\xb2\x95\x9f\xe0\x06\xb0\x3e\xcd\x86\x3d\xdd\x07\xe0\xf1\x9d\xad\xed\xdc\x1c\x40\xc8\x26\x7b\xca\xa5\x4f\x00\x49\x87\xd9\x88\x57\x5d\x01\xf2\x07\xd9\x08\xf4\xd3\x00\x65\xef\x1f\x31\xde\x61\x01\xa8\xd3\xe5\x09\xe5\xfc\x06\xd4\x26\x3b\x01\xde\x27\x72\x54\x4a\xfb\xa8\xe8\x43\x75\x53\x4a\x5c\x9b\xa7\xf4\x8c\x15\x86\xf8\xb4\xe9\x98\x6a\x42\x98\x00\x36\xbc\x72\xc0\x90\x2d\x9f\xb4\xc9\x97\x41\xe3\xb8\xa3\x39\x68\x29\x23\x24\x24\x7c\x74\x48\x79\x4e\xd0\xa3\xae\x26\xed\x7d\xde\x74\xbd\xdd\xa1\xf7\x3c\x1f\x6e\x75\x2e\xbb\x3c\xfe\xac\xf6\xa6\xa4\x3a\xcc\x9d\xf9\xbb\xc5\xc0\x7c\x2e\x87\x97\xf0\xcf\x3d\xbd\x02\x69\x3c\x5e\xcc\x0b\xf7\x3b\xf4\xe3\xed\xbc\x77\x2f\x5a\xb7\xf4\x85\xbf\xf1\xc6\x2d\x7f\x7b\x76\x2a\xb4\xc8\x6b\x60\xb5\xe0\xa9\x73\x60\x90\xf7\xb1\xf5\xfd\x15\x9e\xfe\x5e\x5e\x3c\x1b\xba\x25\xda\xbe\xae\x5e\xed\x08\x87\x82\x41\xef\x1e\x8f\xa7\x48\xba\xac\xb9\xed\x3e\x14\x8f\x49\xb7\x38\x34\x57\xd2\x11\x77\x7a\xf7\x72\xf4\xab\xf8\x24\xd7\x6a\xf7\x54\x8c\x57\xcc\x7d\x00\x79\x34\xbb\xc6\xf1\xef\x00\xfa\x5e\xac\x1f\x4f\x3c\x04\xb0\x19\xbd\xa3\x45\xe7\x0c\xe0\xdb\x77\xc7\xe9\xd4\x38\x40\x54\xf7\x5d\xde\xf3\x8a\x7f\x3d\x88\xe2\x5b\xac\xf2\xd7\x85\x00\xea\xb4\xef\x0f\x32\xf9\x01\x3c\x1f\x7c\xd4\xcb\xae\x0d\xd0\x5d\xcf\x77\x58\xc4\x06\xdc\xfa\xbb\x05\x79\xe4\x48\x94\xd8\x57\x74\x92\x42\x56\x31\xc4\xc1\xde\x0a\x45\xa6\x90\x3e\x6c\x5c\xbb\x92\x16\x39\x9f\x13\x61\x5c\xf5\xd3\xb2\xb6\xf5\xf3\xc2\x58\xea\xe5\x80\x13\x63\x29\x93\x37\xc2\x9c\xca\x76\x7c\xfe\xd0\x69\x1a\x10\x3d\xba\x30\xbd\x5c\x6c\x11\x3c\xfa\xf1\xea\xfb\xd3\xe9\x34\x21\xa9\x5f\xc2\x46\x7c\x63\x71\x21\x81\x3f\x68\x5e\x6d\x46\xba\x06\x55\xcc\x5f\xee\x6a\x09\x13\x0a\x50\x59\xf4\x69\xe9\x0d\x62\x09\xf4\x5a\xa1\xa9\xef\xf7\x4f\x0e\xbc\xb0\xba\x51\x5d\xe0\x77\x28\xa0\x6b\xfd\x54\x85\x9c\x77\x8e\xff\x35\xc4\xad\xc2\x0e\xcf\xbd\x81\x82\x9b\x47\xf3\xd2\xdc\x47\xfd\xed\x90\xb2\x99\x38\xb7\x0b\xfe\x7d\x28\xc6\xb4\x1c\x97\x0b\x7e\xa2\xe8\xa4\x04\x07\xa7\x74\xdf\x6e\x8c\x5d\x8c\xa9\xe3\x69\xdf\x0f\xd8\x0b\x91\x07\x00\x14\xbd\x58\x73\x8f\x9f\x07\x30\x36\x63\x51\xa1\xb5\x00\x70\x7a\x70\x77\xef\xc9\x35\x80\x80\x86\x5b\x15\x74\xaf\x00\xe2\xe3\x6e\xf1\x9c\x6c\x06\xc8\xb5\xbc\x7d\xe3\xcc\x0c\x40\x55\x13\x4b\xf5\x15\x12\x40\xd3\x5b\x56\xd3\x1b\xfb\x00\x7a\x66\x1f\xe4\xb2\x9e\x05\x18\xe2\xe6\x3e\xc8\x77\x13\xec\xde\x7e\xe3\x9f\x93\xf7\xa0\x1e\x9a\x48\x7a\xe2\x6a\xb2\x83\x88\x99\xe0\x90\x11\x0b\x72\xc7\x86\x8c\xb6\xaa\x9e\xcc\x8b\xdf\x28\x7b\xd9\x69\x78\xb4\x4d\xef\xe3\xbd\x67\xc7\xdd\x3f\x8e\x76\x3d\x77\xcd\xdf\x91\x6a\x34\xbd\x33\xdf\x2b\xed\xdd\x20\xff\x0c\x5d\x92\x7f\x8a\xe9\xe4\xc2\x44\x5c\x54\x53\xb2\xfa\xd7\x13\xc3\x8d\x61\xc9\xf1\x53\x3f\x88\x7d\x3c\x81\x91\xf1\xae\x0b\x37\x3b\x62\xfc\x32\x63\xef\x2f\x09\x34\xfd\xf4\x51\x89\x22\xaf\x34\xd4\x7e\xf7\x4a\x8f\x94\x59\xf3\xaa\x24\x7b\xe8\x46\x6a\xaf\x6f\x96\xa6\xb8\x0b\x85\xbb\x20\x1e\x17\xea\xb8\x26\x86\x7d\xd8\x74\xca\xbd\xe8\x4c\x08\x53\x42\x06\x67\x1e\x71\x24\x87\x3a\xa0\x3e\x26\xe7\x39\xbc\x09\x49\x44\x57\xc6\xe3\xec\xdd\x42\xd0\x18\xde\x58\x09\x3b\x97\x20\x6e\xac\x42\xf8\x2f\x00\x95\xc4\x7b\x97\x8e\xbd\x04\x30\xa5\x65\x19\xfa\xcf\x7d\xe9\x6a\x7c\x47\xee\xe4\x31\x80\x10\xfe\x9b\x53\x74\x09\x00\xa9\x91\x37\x2d\x4e\xb6\x01\x14\x0f\x30\xe6\x9d\x8c\x00\xa8\x5b\xbb\x7d\xf6\xbc\x11\x40\xb7\x05\x73\xda\x95\x97\x00\x83\x21\xf7\xbc\x6f\xc6\x03\x4c\x7e\x7b\xd8\xf4\x48\x04\x10\xdf\x2a\x78\x8c\xc4\x6e\x53\x75\x7f\x32\x0b\x89\xe8\x3b\x92\xaa\xe6\x5f\x88\x3b\x79\x37\x63\x57\x16\x3c\xe5\xf6\x67\xb3\x2c\xe8\x4c\xb7\x6b\x4d\xb5\xdc\x1e\x10\x1a\xd5\x72\xc8\x79\x6d\x59\xaa\xfb\xa2\x25\x46\xf3\x83\x69\xac\x7d\x1b\xfe\xd5\xe9\x2f\x69\x41\x6f\xeb\x47\x3f\x36\x8c\x5f\xf5\x5f\x2d\xa3\xfd\x96\x31\xc8\xed\x73\xa5\x98\x73\x16\xd9\xcb\xef\xb9\x3f\x77\xfd\x97\xf5\xf3\x4a\x0f\xfd\xcc\x3d\x4b\xd5\x8d\x75\x6e\x07\xd3\xb4\x57\xa5\x6b\x8e\xbb\xa8\xa6\xdc\x5f\xbf\x57\xde\xec\x6c\x99\x74\x7d\xc3\xae\xf8\xa3\x53\x70\xfc\x4b\x44\x73\x7e\xba\x83\x43\x02\xcb\xe6\x74\xb6\x85\xbd\x5d\xdc\x4d\x24\x29\xfd\xd8\x76\x0f\x8a\x6d\x43\x64\x11\x66\x57\x9c\x80\x75\x70\x94\x3d\x66\x2e\x12\x69\x2d\x13\x4e\xc5\x06\x86\x8d\x02\x68\xfc\xba\x2b\x74\xfc\x20\x80\xd9\xcc\xed\xa5\x63\x41\x00\x9e\x6d\xb7\x2d\xe9\xa4\x01\xa2\x16\xae\x1f\x3b\xb2\x0e\x90\x79\xf3\xba\xfe\xb1\x17\x7f\x73\x9e\x76\xb1\x2b\xf9\x47\xbf\x02\x0c\x74\x30\x08\x9d\xf2\x04\x78\xff\xeb\x0e\xc3\x75\x43\x80\x99\x63\xac\xde\xcc\xda\x00\xcb\x58\x2e\x1b\x61\x56\x2a\x01\x23\xcc\xf7\x51\x5d\x80\x34\x8e\xe7\x7c\x52\xe4\x99\xb3\x71\x13\xe9\x28\x13\x9b\x3e\x3a\x01\xab\xf7\x35\x0b\x6b\x83\x5a\xc3\xe7\x15\xac\x03\x5e\xd4\x64\xec\x9b\xde\x0c\x49\x7b\xbb\x2b\x60\x69\xea\x4e\x6b\xdb\x84\xb1\x2b\x71\xe4\xcc\x27\x9d\xb1\x18\x17\x42\xa7\xf1\xf7\xbe\x7e\x84\x93\x75\x43\xee\x7c\x40\xe7\x69\xc7\x7d\x4f\x67\x17\x73\x9b\x8b\x1c\xc2\xcb\xcf\x2e\x2f\xd6\x4b\x39\x1c\x29\x52\x5a\x1d\xa8\xb6\xb5\x6b\xcd\x2b\x5a\xff\x58\x6a\x69\x77\x34\x27\x78\xe3\x57\xd1\x7e\x9b\xc0\xcc\x95\xcd\xec\x9c\xd3\x36\x69\x69\x48\xa4\x5a\xa6\x91\x15\x21\xf5\x3e\xaa\x31\x79\xca\x2a\x2b\x45\x13\x7d\x31\xe9\x92\xc5\xcb\xa4\x78\x8c\x7b\xf4\x47\x8b\x53\x89\x57\xb1\xe7\x22\x5a\xcc\x0f\xc7\x7d\xc1\xed\x09\x9e\x02\xd0\x39\xcb\xfc\xe4\x68\x11\x80\xcd\x87\xdb\xe1\xc7\xb9\x00\x7c\x7d\xe8\x07\x8f\x20\x01\xe2\x4f\x5f\x5d\x3e\xc2\xf7\x37\xf7\x6d\x72\xdd\xe1\xfa\x7f\x79\x10\x33\xfe\xf4\xfd\x27\x53\x01\x36\xc6\xee\xb0\x5d\x5b\x02\x20\xf7\x3c\x9a\xe3\x61\xa1\xf6\x93\xc5\xf8\x85\xb5\x04\x37\xc6\xf0\x4d\xa2\x69\xee\x3a\xd3\x8c\x68\x3f\xf9\x73\x09\xca\xbd\x67\x36\x1a\x75\x9c\x4b\x66\x2b\x46\x97\xcd\x6c\xfc\x9a\xcf\xc4\x7d\x9c\x33\x0d\x50\x7d\xa9\xe3\x8d\x9b\xc1\x3e\x3d\xf9\xba\xde\x5a\xe9\x3b\xe7\x17\xf4\xd0\x1d\x8b\xaf\x13\xa4\xd9\x0f\x3d\xfb\x2d\xd9\xfa\x13\x7e\xb1\xb6\x12\xad\x04\x3b\x48\x4b\x52\x8d\xf1\x96\x6e\xcd\xeb\x2b\xaf\x6b\xfc\x2d\x23\x6b\x5a\xd7\xaf\x95\x5f\xb0\x8c\xaa\x70\xdd\xc8\x28\x2a\xb6\x70\x2c\x4b\x46\x7c\xca\xb3\x31\x0f\x2b\x3e\x82\x54\xce\xdc\x6d\xce\x9c\x7f\x10\x15\x94\xa2\x61\x76\x25\xd7\x03\xed\x9c\x20\x64\xaa\x93\xfd\x0a\xc3\x15\xd3\x6a\x7a\x2c\xc3\x0c\x4b\x17\x91\x6f\x92\x97\x9e\x86\xb5\x0f\x6b\x37\xd6\x48\x33\xc1\xf1\x05\x69\x02\x18\x32\xdf\x9e\x3a\x1a\x02\xe0\xd8\x7f\x1d\x71\x68\xe2\xff\xe8\x41\x08\xde\xca\xf7\x3b\xec\x69\xfe\xd5\x0b\x32\x93\xb2\xe5\xc5\xa0\x14\x76\x5c\xdd\xfa\xbf\xfb\x36\xdb\xb9\x5a\x00\x38\xf0\x88\xc4\xc3\x8a\x30\x20\x9b\xf0\x7f\xd7\x7c\xf5\x2d\x9b\xf0\x5e\xac\xc4\x61\x7e\xa8\x11\x5b\xa5\x90\x10\x16\xd7\x90\x8d\xec\xd0\x25\x67\x45\xe7\x66\xae\x87\xda\x24\x57\xdd\x0b\xef\x5e\x1a\xf2\x6d\x6e\x95\xf5\xd0\x59\x7c\x50\xc0\xd8\xee\x69\xe1\x30\xaf\x33\x6e\xd8\xbd\x62\xe0\xfe\x4b\x70\xde\xb1\x5d\x52\x1f\xf1\xed\xee\x62\x56\xe3\x90\x61\xd0\xdb\xb3\x2b\x97\x6b\x1f\x18\x57\xf4\x0e\xaf\x42\x65\xa1\xd1\x72\x97\xff\x7a\x47\x49\x82\xd1\xc5\xd6\x3d\x08\x5c\xae\x9c\xa1\x5a\xa3\x3c\x52\x3b\xe3\xa1\xb1\xc1\xd3\x5b\xc8\xd6\xf4\x73\x86\x56\x55\x66\x68\xf1\x04\x3f\x43\xb9\xb2\x10\x0c\x63\x4c\xc9\x76\x0f\x88\x61\x5a\x01\x1b\x96\x2f\xdc\xd6\xd0\x38\x4f\x14\xfb\x2c\xf4\xa4\x01\x7d\x36\x12\x57\xed\x5f\x04\x60\x72\xe7\xba\xf2\x81\x49\x00\x2f\xd9\xab\x1f\x0f\x9d\x00\x88\x7e\xb4\xb5\x0e\xdb\x79\x5f\x7d\xd0\xbf\x73\xcf\xed\xfc\x7b\x8d\x89\xe6\xbf\xfa\x30\x98\xed\x2f\xfd\xda\x7c\x42\x5d\xe5\x38\xcf\x6b\xf4\x7d\x83\xb2\x97\x7f\x44\xe5\xce\x58\x2e\x71\x51\x5c\xcf\x32\xa6\x43\x1d\xbf\x43\x29\xde\xff\x6d\x19\x0f\xe6\xb8\xbe\x5c\x22\x4d\xd2\xea\xe6\xa2\xcd\xb7\x7c\xda\x40\xca\xc6\x11\xcf\xb1\xca\xdb\x2e\x12\xeb\x47\xd3\x03\xab\x67\xcc\xd1\xab\x0c\x9d\x82\xf5\xb7\x74\x92\x97\xb9\x17\x53\x1b\x05\x34\xaf\xaf\x2e\xac\x58\x54\x63\xb4\xbc\x7f\x3c\x5b\x9d\xaa\x08\xd3\x8a\x9b\x5a\x5a\xff\x51\xd4\xa5\xdd\x31\x8c\x42\xfc\xca\xf1\xd3\x61\x7f\xf5\x63\x73\x29\xf3\x88\xee\x81\x4e\x1c\xea\x60\x0a\x5a\x27\xe3\x79\x3d\x9a\x3d\xe1\x8e\x6e\x44\xe3\x1c\x3a\x35\xae\x40\x57\xb9\xae\x02\x13\x12\xa5\xa7\x2b\xf6\x54\x12\xcb\x1c\xce\xab\x83\xab\x3c\x87\xfd\x19\x1c\xa5\xa3\x5a\x5e\x81\xb3\x0e\x88\xd3\x3e\x52\x22\x82\x0f\xf2\x3a\x0b\x60\x5e\x78\x40\xe2\x3f\x73\xf8\xb8\x6c\xcd\xf5\xc7\x87\xf9\xaf\x1e\x84\xb7\x7c\x5b\x9c\x5f\xdd\x22\x99\xb2\xbd\x0e\x3b\xf1\x34\x34\xa8\x3e\x00\xe6\x85\x6b\x3b\x67\x1f\xc1\xf5\x47\xec\x9c\xcb\xef\xc4\x29\x6a\x02\x83\x8a\x01\x3d\xbc\xa4\xb7\x12\xe2\x46\x55\xb5\x0e\x84\x7c\x65\x25\xd7\xe5\xec\x4f\x38\x67\x7d\xc6\x10\x42\xd4\x1c\x66\xbf\x75\x6c\x12\x8b\xcf\x25\xa4\x8f\xc7\x66\xae\x80\x53\xfc\x66\x55\xfc\xa1\x82\x3b\x66\x18\x44\x77\xed\xa9\xa2\x74\x1d\x9b\x0d\xb6\x49\x86\xb2\x0b\x6a\x27\x36\xc4\xd6\xd6\x4a\x7c\x95\x47\x36\x0f\x6d\x8c\xe4\xf1\xaa\x04\x2f\x3d\x44\x94\x67\x97\xab\xb1\x7f\xb9\xbc\xf9\x26\xe3\xc6\x7f\xf7\x5f\xa8\xdb\xf7\xef\xc5\x1c\x8a\xf6\x55\x7f\xf1\x42\x16\xf3\x31\xfc\xbb\x3a\xa5\x9d\x0e\x9b\x14\xa2\xa0\x31\xdf\xca\x8b\x8d\x0b\x49\xd4\xc8\x6b\x64\xc0\x69\x06\x68\x6b\xf8\xd7\x9f\xc6\x7d\xf7\x75\x52\x77\xac\x39\x89\xef\xf5\xd8\x05\xe0\xac\x7b\x49\x6d\x9f\xd7\x5f\x1f\x26\xc7\x63\x8b\x0d\x15\x34\xff\xea\x09\xfa\xbf\x7b\x10\x50\x73\x00\x17\xc8\xfb\x66\xe6\x58\x00\x98\x5f\x5c\x7b\x3f\xc9\x4e\xa5\x72\xee\xe2\xf1\x7c\x59\x49\x41\x0a\xc4\x48\x8d\x35\xa2\xc9\xf9\x12\x1d\xda\x7e\xc5\x87\x89\x3f\x94\xd7\x6c\xd6\x53\x4e\x13\xe8\xf4\xba\xbc\x39\x43\x54\x71\xff\x1f\x63\x7f\x19\x55\xd5\xfa\xbe\xef\xc3\xe8\xb6\x15\x14\xb1\x13\x2c\x50\x50\xa4\xbb\x9b\xc5\xa2\xbb\xbb\x1b\xe9\xee\x6e\xa4\xbb\x44\x40\x42\x04\x14\x41\x29\x15\x93\x50\xb1\x0b\x90\x96\x5c\x1d\xf3\x7a\xc6\xde\xb2\x70\xeb\xfe\x7e\x7e\xcf\xff\xd5\x35\x1c\xbc\xba\xa7\xf3\xbe\xe7\x1a\xf3\x3c\xe6\x71\x72\x38\x05\xc5\x19\xac\xf3\x0f\xed\x18\x52\x62\x50\x66\xae\x2d\x3b\x26\xb0\x72\xf7\x55\x3e\x13\xf2\xca\x54\xef\xad\xfc\x6c\x9d\x6f\x2b\x6c\x13\x77\x0b\xea\xfe\xe4\x1f\x34\x84\x17\xf6\xaf\xa6\xa4\x75\x6b\x26\x8f\x15\x61\x64\x53\xd0\x9a\x31\x1f\x3a\xb0\xba\xf1\x95\x5a\x7c\x2f\x2d\x70\x27\x63\x2e\x69\x35\x3f\x3f\x80\xeb\x8a\x94\xd2\x6a\x7a\xf4\x1a\xef\x17\xea\xa2\xbd\xb3\xef\x2e\xfe\x4d\x70\x80\x56\xe8\x7d\x84\x70\xd5\x9f\x41\xfb\xf6\x5d\x63\x42\x91\x3f\xab\x8e\x67\x3b\x23\xe1\x8d\xef\x2c\x80\x9f\xef\xcf\x75\xfd\xe9\xc3\xa0\x79\x51\x68\xe7\xe1\xef\x1c\x08\x2d\xf7\xfa\x72\xe7\xe7\x1c\x35\x01\xb8\xb0\xc2\xac\xf3\xe8\x0b\xa8\x0b\x6c\xe5\xe7\xba\x9d\x8a\x98\x4b\x5e\x91\x8f\xba\x9e\x44\xdd\x8c\x72\xd4\x27\xe6\x77\x52\xf6\x6b\x4b\x59\xd5\x27\x71\x90\xa6\x4d\xb5\x5c\x3f\x06\xdf\x21\x90\x1c\x7f\x04\xfb\x5d\xa1\x27\xc8\x78\xc5\x44\xb0\x38\xd7\xe0\xef\x46\x9f\x88\xd6\xb0\x0e\xc4\x7d\x29\x4c\x8c\x2f\x35\xc9\xc1\x05\x36\x7b\x25\xbc\xd7\x3b\x86\x8d\x7d\x96\x92\x22\xa3\x6e\x87\x95\x9d\x1f\x4d\x4e\x52\x3d\x8b\xfb\x0b\xcb\x10\x2f\xb3\xce\x3f\x34\x60\x4e\xe3\x9c\x22\x0c\xd1\xf7\x67\x2f\xe2\xda\xc3\x6d\x54\x15\xc7\x2c\xf0\xa2\x21\x14\x35\x9d\xf7\x6f\xf0\x7e\x21\x67\xd5\x4c\x47\x80\xa0\xe7\xaf\xa9\x7e\xe0\x79\x26\x21\xdb\xef\x84\xba\xc3\xe3\xed\x84\x25\x9f\x43\xea\x7c\x0f\xc2\x89\x0e\x5e\x4c\x6a\x39\x7d\x87\x89\x33\x6e\xf9\x00\xd1\x7b\xd7\xee\x83\x35\x2e\xaa\xb5\xf9\x77\x1e\x68\x9d\x03\xf9\x67\xbd\x34\x0e\x66\x7c\xf6\xe7\x1c\x5e\xcb\xff\x1e\x9b\x03\x5c\xdc\x76\xfa\x40\x47\x2a\x24\xf3\x27\x72\xbd\xbc\x61\x84\xdc\x91\xac\x97\x7a\x59\x42\xa6\x36\xa0\x4e\x6b\x14\x67\x1e\xa4\x14\x68\x53\x4d\xef\x46\x1f\x21\x47\x98\x19\x38\x8c\xff\x87\x7f\x08\x25\xc6\x85\x47\xfb\xbf\x5e\xe7\x1f\xb0\x84\xb0\xea\x0f\xa1\x15\xba\x54\xfc\x64\x57\x66\xc4\x65\x0d\x7b\x7c\xce\xeb\xf7\x11\xd1\x68\x15\xbc\xc5\xc2\xa1\x08\x41\x94\x0b\xfe\x23\x7e\x63\xc8\x9b\xff\xf0\x0f\x11\x4b\xa9\x04\x09\xdf\x39\x65\xd4\x54\x1b\x91\xd1\xeb\x24\xea\xf0\x37\x7b\xe2\x39\x4f\x2a\xaa\xe1\xfd\x41\x62\x80\xc7\x45\xd4\xd3\xd7\x49\xc4\x21\xb7\xdd\x2a\xa2\x43\x0f\x49\x5b\x5d\x9e\xaa\xb4\x3c\x1d\x25\xc9\x38\x1b\xfc\xba\x0f\x6a\x6a\xff\x5f\x1c\x08\x92\xfd\x7b\xfe\x3d\x7a\xf9\xe7\xec\x37\xf9\x39\x3b\x57\x01\xd8\xc7\x4e\xbe\x6c\xbc\x07\xc5\x02\xb9\x97\xef\x54\xb8\xc1\x46\xc9\x8f\x62\x29\x57\x73\x10\x6f\xa5\x54\x05\xcb\x04\x2d\xaa\x8f\xf6\x05\x1d\xdb\x10\x5b\x4a\x94\x29\xa7\xb9\x9e\x17\x96\x9c\x67\xa7\xec\x20\xea\x64\x4f\xf6\x74\x9b\x73\xac\xb3\xdb\x4a\xa6\x0b\x72\x72\x2d\xb7\xe8\x25\xa5\x25\x56\x7b\xd2\xd1\xf8\x07\x5d\x63\xe2\x7c\xd3\x36\x6f\x4f\x8d\x12\x62\x65\x9f\x96\x8f\x31\x5a\x89\x18\xf2\xd6\xd6\xe7\xa8\xd2\x02\xd1\x69\xe1\x8b\xb7\xb0\xa2\x2a\xb1\x97\xb8\xc5\x53\xf1\x7f\x7a\x1f\x8e\x2c\x8e\x90\x84\x1d\xa5\x15\x2e\x4f\xab\x90\xae\xda\xad\x28\xd8\x8d\x1d\x20\xbd\xb6\x45\x2b\x48\x7e\xf2\x22\xb3\x59\x7d\x53\x94\x7f\x3d\x4b\x16\xb4\x7a\x0b\x50\x68\xfe\x3b\x0f\x44\xf3\x81\xfc\x6b\x1f\xd0\xd1\xd1\xfd\x70\xff\x7f\x7b\x20\x9a\x54\x00\x2e\x58\x1f\x25\x57\xd9\x00\x81\x57\x81\x4d\x3c\xb7\x19\x42\xc4\x13\x79\xe3\x93\x53\x90\x1e\xa5\x8f\xd2\xc4\xc8\x70\x2a\x5e\xeb\x89\xda\x09\xbf\x33\x54\x59\x93\x0b\xfa\x47\x5c\xcd\x29\xe5\x36\xae\x66\x8c\x0e\xcf\x29\x1c\xce\xf7\xac\xde\x59\x97\x53\x36\xfa\x0d\xdb\x54\x9a\xc5\x92\x6f\xc5\xb2\xdb\xbb\x18\x56\x90\xbd\xae\xbe\x70\xd4\xd4\xb9\x4b\xbe\x5c\xad\xe3\x34\xa3\x81\x23\x2d\xb5\x4a\xbb\x70\xa3\x11\xd2\xdd\x47\x47\x5c\x46\x94\x07\x49\x0e\x1f\xce\xbb\x9d\x56\x20\x91\x0a\xe6\x55\x9d\x0b\xd6\xbd\x0f\x12\x64\x43\x52\xbb\xcd\xe7\x75\xee\x21\x97\x72\x98\x1c\x61\xa6\xb8\xee\x7d\x18\x5d\x94\x22\x77\x98\xcc\xcb\xf4\x4f\x37\x90\xf1\xc6\xdb\x65\xb2\x26\xce\x53\xb8\x0c\x99\xff\xeb\x03\xf9\x7d\x1f\x2c\x1b\xff\xee\x83\x79\x9a\xbb\xc6\x3f\x88\xfe\x9c\xcd\x71\x00\x27\xe9\xe9\x6f\x5e\xeb\x06\xe0\x08\x38\x1e\x5a\x50\x09\x08\xdf\x28\xeb\xfb\xb4\x78\x28\x95\xd8\xc5\xf5\x3d\xe6\x19\x70\x28\x32\x88\x0c\x04\xc9\x20\xa1\x9a\x77\x15\xd2\x3d\x0d\x90\xed\x86\x4f\x54\x15\x1d\x26\xa8\x06\x56\xb5\xba\xb3\x36\x6f\xa8\x1c\x0e\xdf\x0d\x4e\x59\x1e\xa0\x4c\x5f\x79\x6c\x6c\x6d\xa2\x42\xe9\x0e\x37\x37\x65\x33\xf0\xa4\x58\xa6\x1e\xb7\x68\xd3\x06\x8a\x59\x81\x8b\x85\x83\x86\x1b\xe5\xc0\x75\xbc\x55\x2a\x9a\x48\xee\xe9\xa8\xb4\xe9\x56\x6e\x26\xb7\x3f\xf6\xb7\xe1\x57\xdc\x4e\xce\x7e\xaf\x6e\x63\x21\xb7\x4c\x8e\x9d\x97\xb6\xc6\xad\x7b\x1f\xd8\x28\x8a\xe4\x5b\x26\x59\xff\xe1\x1f\x24\xa8\x66\x94\xcf\x9a\xa9\x92\x8f\xf1\x1b\x28\xed\xda\x7c\x12\xef\x97\xe3\xa9\x07\xd5\x03\x7e\x3d\x17\xdf\xad\xf9\xa1\x7e\x7a\x20\x68\xe7\xc0\x37\x87\xdf\xf3\xef\x7b\xe8\xb5\xfc\xfb\x03\x00\x9d\x31\x1d\x5d\xc9\x9a\x2f\xa5\xf0\x29\xc0\x79\xec\xa1\xe0\x4c\x03\x00\x3e\xa6\x33\x96\x71\x0f\xe1\x91\xf8\x87\x4b\x7a\x61\x2f\x40\x4e\x69\x87\xf0\x06\xef\x6b\xb0\x47\xed\x9d\xf8\x1e\xe7\x45\x24\xc9\x60\xb3\x7c\x23\x8d\x7f\xb0\x9c\xa3\x8e\xda\x76\xab\x0f\x99\xd3\x51\x33\xdd\xeb\xb5\xe3\x8c\xf3\xa8\xd2\x41\xb9\xfa\x81\xfa\xb1\x54\xf6\xd8\x72\x03\x17\xed\x1e\xca\x52\xd6\x2b\xa3\x56\x0d\x06\xca\x6a\x49\xb4\xd1\x09\xb4\x00\x85\x52\xd7\x6d\x78\x06\xb5\x87\xe2\xd2\xb9\x68\x76\x44\x61\x88\x12\xf3\xa4\xcb\x44\x4f\x2e\x9e\x92\xfa\xa6\xce\x58\x5c\xc6\x8b\x72\x7d\x32\xcc\x30\x5a\x5a\x8d\x52\x43\x78\x66\xb8\x41\x8a\x91\x7a\x80\x92\xa6\x93\x23\xd1\x4d\x8d\xa7\xee\x54\xef\x16\x5f\xa5\x3e\xa6\xaa\xa3\xc7\xc5\xd9\xfe\xf1\x1e\x9c\x14\xdb\x84\xe8\x52\x27\x15\x64\x7e\x71\x71\x8b\xda\xff\xcc\xb8\xb5\x73\xe0\xcc\xef\xe7\x60\xf7\x8d\x9f\xb3\xa9\xfb\xe7\x2c\x6f\xfa\x39\x8b\x0e\x03\x1c\xaf\xd8\xf1\x22\x23\x18\x80\xf5\xf3\xbe\xa4\x84\x77\x00\xbc\xcc\xcc\x4f\x22\x5e\xc3\x92\x58\xc8\x05\x7a\x7f\x17\x28\x91\xaf\xe1\x76\x75\x2f\x04\x05\x35\x41\xa1\xb7\xf6\x2a\xc8\xac\x9e\x81\xa4\xb3\xd5\x1e\xa4\xc2\x78\x44\x76\xc4\xac\x0a\xd1\xb7\xfe\xae\x54\x69\x7c\x1d\x91\x71\x7e\x8a\x12\xd0\x9f\x45\x0e\xf8\xf9\xa2\x71\x3a\xfc\xc8\xe1\x70\x49\xf4\x80\xd6\x65\xea\x60\x62\x87\x46\x94\x5a\x07\xb5\x3b\xbb\x4a\x03\x87\xfa\x48\xbd\x53\x11\xa6\xf1\x50\xe9\x23\xd5\xa1\xe9\x9d\x36\x55\xa1\x8d\xaa\x7a\x97\xa0\x53\x26\xa7\x41\x95\x1d\x78\xa4\x63\x2a\x13\x46\x15\x7e\xad\xa9\xc3\x2f\xa5\x41\xb5\x1a\xd7\xd3\x1c\x92\x62\xa2\x72\x2e\xd7\x6a\xb7\xfe\xc7\xfb\xc0\x8d\x28\x53\xdf\x29\x7c\xfa\x95\xfb\xff\xbe\x0f\xe6\x54\xd7\x7c\x40\x8f\xd6\xce\xc1\xb5\xe7\x62\xcb\xda\xdf\xab\xaf\xfc\x9c\x39\xf3\x3f\x67\xdc\x1a\x17\x13\xbc\x76\xbd\xa2\xf6\x01\xf0\x71\x31\x9f\x0f\x3a\x0b\x20\x96\xc0\x1a\xef\x25\x0b\x23\x72\xc7\x2f\x6a\x3a\xa2\xa1\x44\xc5\x8d\x9b\xcf\xf6\x31\x1c\xd1\xe9\x17\xc5\x9a\xa3\x90\x2f\x46\xe5\x92\x0f\x8d\x6b\x91\x41\x0b\x49\xe9\xad\x86\x4c\xc8\x1d\xfb\x39\x99\x59\xfd\x5d\x48\xba\xc7\x16\xf9\xdb\xda\x97\x90\xe8\x40\x23\x85\x62\x8d\x7a\x04\x15\x53\xa9\xbc\xa0\x6a\x86\xe8\xa6\x50\x94\x4f\xab\x3c\x43\x76\xe7\x75\xa2\x1f\x28\x51\x90\x9d\x15\x16\xe8\x38\x85\x7e\xea\xa7\xc6\x36\x35\x03\x1a\xff\x20\xd3\x41\x6d\x7d\x58\xae\x7e\x49\xea\x2e\xb5\x7c\xf4\x82\xba\xa5\xd4\x4e\x6a\xd4\xb7\xed\x1a\x76\xe2\xce\x54\xd2\xc2\x45\x54\xa6\x58\x39\xc2\x46\xbe\xab\xe4\xf6\xdf\xeb\xf0\xd3\x0b\x44\x3b\x07\x3e\xa4\xfc\x9c\x03\xf4\x3f\x67\xdb\xb7\xdf\x39\x98\x82\x9f\x3d\x3a\x74\xc9\x5f\x7e\xce\xb0\xb5\x7f\x87\xa7\x00\x30\xcb\xed\xbc\x14\x74\x14\xe0\x92\xd1\x01\xf0\x9e\x00\x10\x3d\x73\x3a\xc3\x35\x17\x16\x64\x55\x2e\x9c\xb3\x63\x86\x4e\x54\x30\xa7\x94\x79\x39\x64\x68\x18\x72\x4f\x1a\x5b\x82\x9c\x3e\xa7\xd0\x06\xc3\xcb\x70\xd1\x38\x45\x64\x8b\x1e\x33\x9c\xb4\xd9\x25\xda\xa4\xa3\x81\xe0\x5c\xde\x49\xd2\x6b\x1a\x23\x4b\xde\xd7\x24\x6b\xd4\x05\x90\x17\x21\x77\x64\x36\xa3\x1b\x91\xe6\xb8\x3c\xd9\x21\xe5\x79\xa4\x38\xa3\x56\xae\x53\x71\x16\x09\x2e\x8c\x55\xb0\x97\xaf\x43\x7c\xab\xf8\x15\x5c\x64\x9f\x20\xb6\x0d\xc1\x0a\x24\x19\x05\x44\xa8\x23\x56\x89\x20\x95\x83\x70\x3c\x10\x56\xbe\x20\x61\x8c\x18\x3c\x8f\x51\x30\x14\xa7\x43\x4c\xdf\x56\xc8\xf7\x89\xe5\x20\xe2\x93\xe3\x8a\x7c\xa2\x16\x88\x27\x66\x8b\x5c\xca\xaf\xeb\x70\xce\x40\x86\xb4\x4d\x02\x80\x47\x5e\x0a\xcb\x20\x09\x20\x29\x22\xa3\x70\xe0\xf2\xbf\x38\x08\x09\xa5\x2d\x2c\x6f\x00\x0c\xa2\x51\x33\xe7\x19\x01\x4c\x5b\x54\x67\x39\x15\x01\x2c\x8a\xb5\xee\x0a\x28\xc2\xaa\xd5\x90\x61\xa0\xf4\x30\xa4\x5a\x77\x98\xc5\xa1\x00\x36\xd9\x08\xd9\xfc\xa5\x6b\x89\x38\x59\x9f\x72\x47\x2c\x36\x50\x97\xcc\x9f\x87\xe4\xda\xab\x50\x75\x4d\x88\x49\x3b\xdd\x5e\x51\x6e\x18\xb6\xe6\x8f\xf9\x3c\xa0\xb0\xe8\x4d\x5c\x6b\x0e\xec\x23\x87\xeb\xe4\xb6\x2c\x87\x7d\x22\x6b\x6a\x2e\xdc\x93\x09\x5f\x24\x1f\x52\xe7\x79\x22\x1c\xc9\x43\xaa\x41\x67\xbf\x45\xa2\x3f\x90\x38\x50\xc7\x67\xba\xe2\xd2\x48\x8a\x4a\xac\xd8\x8b\xb1\x62\x34\x0f\x08\x39\x53\x61\x27\x7e\x6b\xb0\xc0\xea\x71\x85\x02\x7c\x70\xe0\x85\xe9\x18\xa5\xd3\xf8\x9c\x40\xab\xaf\x2a\x4a\xf1\x04\x0d\xdf\xf8\xb7\x7d\x28\x43\xc2\x69\x7f\xc5\x41\x92\x4a\x3d\x21\xda\x37\xfe\x89\x31\xda\x8b\xf0\xda\x7b\xaa\x7f\x59\x75\x0f\x51\xc0\xab\xb9\x3b\x50\xb5\x83\xe8\xeb\x89\xea\xcc\x51\x63\x23\x76\xbb\x87\x01\xb0\x49\x4b\x1f\xde\xf6\x1d\x40\x50\x4a\xaa\x6a\xcf\x04\x80\xf4\x84\xf4\x8b\x83\x2f\x00\x94\xbe\xca\xf1\x1c\xdb\x06\xa0\x39\x2b\x3f\xcd\xc2\x04\x60\xf8\x4a\xe9\x1d\x6b\x34\x80\xf9\x0f\x95\xf9\x4b\xcc\x00\xd6\x1f\xd4\xb1\x7c\x39\x7f\xf6\xe5\x20\x73\xb6\xe1\x36\x6c\xfa\x1c\x88\xb2\x6d\x80\xcb\x1b\xcb\x0c\xea\x13\x4b\x99\x60\x06\xc7\x83\xeb\x3d\x39\xac\x26\x3a\xb9\x8d\x81\x93\xe4\x64\x83\xd1\xea\xd9\xb0\x1f\xe4\xbd\xba\xdd\x2d\x9d\x51\xee\xa4\xc7\xda\x7c\xf7\x8e\xc6\xf0\x93\x4c\x35\x7c\x9f\x1e\x8b\xeb\x24\x6d\x57\x35\x7d\xef\x9c\xa0\x49\x4c\x41\xc5\xcf\xdb\x27\xd5\xff\xc9\xc3\x10\x1c\x15\xb5\x70\x62\xe1\x9f\x17\x96\x95\x2a\x71\xc6\xe1\x4b\xe3\x5b\x50\xf5\xb8\xd0\x08\xd6\x77\xe3\x2a\x27\xf0\x91\xc1\xdb\x69\x1e\x90\x67\x1c\xaa\x6f\xf1\xa3\x41\x17\x1e\x9e\x55\x4b\x26\x68\xfa\xe7\xd3\xfa\x70\xba\xe2\xd4\x26\x89\xea\x5e\xb9\xed\xb1\xea\x5f\x88\xd7\x3c\x72\x01\xd8\x7d\x25\x9f\xec\xe0\x02\x10\x54\x97\x44\xf6\x3c\xf8\x75\x1d\x68\x5e\x10\x1d\x36\x79\x29\x16\x67\x00\x93\x21\xc5\x74\xd6\x6c\x00\x1b\x1f\x94\xc3\xa5\xfb\x00\x0e\x0d\x1a\x72\x42\x2c\x40\x74\xbe\xae\x9b\x27\x13\x05\xf1\xce\x51\xc6\x26\x68\x17\x64\xdc\xae\xc6\xfa\x8b\xfe\x1b\x44\xdc\x6e\xd8\xa9\xc7\x6a\x3f\xd5\xc7\x86\x3d\x40\xd5\x05\x4b\x69\xb5\x34\x8a\xed\xf7\x49\x22\x2f\x9a\x66\xe5\xc8\x07\x7f\x27\x0d\x1b\xe5\x5e\xb3\x8c\x79\x4f\xd2\xd3\x57\xbb\x75\x2a\x9e\x44\xbc\xaf\x53\xd2\x5d\x9a\x5c\xb5\xee\x45\x91\x54\xad\xfe\xfc\x35\xd5\x9a\xd6\x7f\xf2\x67\x2f\xce\x32\x87\xd2\x1c\xf6\x79\x54\xcf\x94\x38\x4a\x0b\x77\x32\xf2\xcd\x27\x45\xf4\x4d\xec\x54\xf4\x8b\xd7\xd7\x55\xdf\xe1\x8c\x22\x29\xcf\xe8\xd4\xaf\xe0\x66\xc3\xcb\x68\x1e\x90\x3f\xfb\x70\x5a\xcd\xb5\x52\x08\x8f\x7c\x3f\x35\x17\x6b\x6f\x22\x1e\xf3\xfe\x02\xc0\x5e\x2c\xd9\xba\x43\xf2\x17\x17\x24\xc3\x27\xbd\xe5\xa0\xe5\x7f\x7b\x62\x2c\x1a\x15\x94\xd9\x36\x03\xd8\x35\xa1\x78\x39\x9b\x00\x5c\x38\xd4\x98\x04\x2f\xae\xf7\xe5\xe4\xba\xc9\x18\xc6\xa9\x44\x20\x33\x2e\x82\x96\x5b\xf4\x81\x3a\xe5\xb4\xd3\x71\xa3\x5d\x0c\xf5\x88\xdd\x1b\x3f\x5e\x8f\x55\x0a\xb3\xf5\x9b\x98\xc5\xa0\xf3\x64\x05\xf3\x85\x6c\x9d\xc8\x14\x52\x99\xb1\x4a\xf5\x9d\x38\x15\x62\x85\xc1\x83\x5b\x72\x29\xd3\xc4\x2c\x5d\xe6\xee\x1d\x29\x83\x84\x4f\x9a\x9f\x06\x29\x19\xa5\x04\x43\xb5\xe8\xaf\x23\x59\x6f\xd6\x3d\x20\x69\xca\x92\x98\x73\x49\x92\x04\x73\x65\x76\x8c\x5b\xe2\x86\x59\x36\x95\x1a\x4c\x44\x62\xcf\x37\x35\x74\x03\x56\x30\x8e\xfc\x76\x58\x75\x1a\xfb\x28\x66\xe8\x45\xb5\x06\x0f\x96\x1c\x13\xff\xd8\x4e\xc3\x1e\xd7\x17\xd1\xd8\x27\xac\x29\x83\x47\x85\x9d\xec\x0a\xd6\x7a\x82\xb7\x0d\xfd\x41\xeb\xc3\x69\x46\xe9\x44\x11\x42\x02\xb6\xdc\x08\xd5\xdd\x4e\x18\xf5\xdb\x0c\xc0\x29\x2a\x61\xb8\xb3\x0b\x40\xc4\x50\xac\x84\xb1\x0c\x40\x3e\x59\xc2\xfa\xc0\x0d\x00\x0d\x55\xa9\xb0\xa3\x2f\x01\x8c\xcb\xa5\x71\x2c\x96\x00\x56\x4a\xb2\x69\x67\x1f\x01\x38\x4e\x29\x78\x71\x54\x01\xb8\xfb\xa0\xb2\xf9\x4e\x00\x5c\xe9\xd4\xd8\x22\xc9\x0d\x8d\x5e\x38\xbd\x78\x14\x1d\x02\x1e\x22\x66\x7e\x7a\xdf\xa9\x73\x2e\x27\xec\x3f\xd9\x05\x51\x46\x1d\x29\x57\x58\xaf\xe4\x91\x6f\xdb\xb5\x47\x96\x87\x3e\x22\xb5\x59\x6d\xbe\xca\x18\xb7\x87\x74\xd9\xf4\xaf\x4a\x7c\x62\x21\x51\xd8\xf0\x76\xcb\x5c\x7a\x11\x21\x57\x2f\xa4\x27\x30\x0b\x08\x47\xb4\x1a\x86\xaf\xe4\x30\xaf\x73\x20\x7f\xf4\xe2\xac\x58\xa9\xa0\x57\x55\xd3\xf2\xbf\xf3\xa8\xee\xc7\x5c\x48\xee\x7b\xf7\x52\x5d\x1d\x13\x9d\x44\x18\xcc\xd7\x54\xc6\xee\x4c\x14\x18\xf0\xd0\x6a\xc2\x06\xc6\x67\xf6\xa8\xeb\xa0\xb0\xaf\xe2\xd4\xba\x50\x3a\x3c\xb8\xca\x28\x09\x5a\x1f\x4e\x63\xa0\xbe\x03\xde\x26\x6c\xba\xfe\x9e\x5e\x22\x41\x21\xb0\xe5\xda\xa4\xfe\x18\xc1\x3b\xe0\x33\x00\xb7\x96\x98\xcf\xae\xf1\x5f\x1c\x84\x82\xba\x78\xe1\x01\x4b\x00\xad\x5e\xb1\x86\xc3\x05\x00\xa6\x49\x92\x31\x27\x9f\x03\xd8\xb9\xc9\xc6\xb3\x66\x00\xb8\xe6\xc9\x55\x73\x70\x01\x78\x51\x94\x09\xfc\x32\xeb\x7d\x39\xc5\x7e\xf7\x74\x4d\x54\x7a\x91\x1f\x3e\xaa\x26\x0f\x0c\x9c\xa9\xcb\x57\x98\x6d\x14\xed\xaa\x29\xf2\x6e\x02\xee\xba\x01\x74\x64\x4b\x47\xa5\xb0\xc0\x88\x62\xd2\x39\x1b\x72\x7a\x42\x92\x30\xf1\xb0\x79\x7a\x65\x7e\xc6\xd2\xba\x17\xe5\x8b\x7e\x41\xcf\xc7\xbc\xcb\xb8\x97\xda\x0f\x5e\x29\x16\xcd\xe2\x36\xaa\x91\xe7\x3e\x96\x76\xfc\xe9\x45\x99\x3e\xac\xe6\xb8\xa2\x79\x35\xed\x53\xb4\x46\xf0\x4a\x4f\x56\xca\xc8\xac\xe6\x87\xd5\xe5\xb4\x73\x8f\xbb\x75\xf8\x30\xe7\x52\xbf\xf4\x54\xea\x62\x30\x0d\xc9\x98\x3f\xfb\x70\x9a\x84\x0c\xd9\x71\x9a\x31\xef\xaf\x5f\x37\xba\x84\xdf\x1d\xc9\x53\xcd\x6d\x74\x00\xdf\x15\xea\x56\xd1\x65\x74\x89\xc0\x1c\xcc\x07\xc0\xf3\x59\x34\x93\xde\x0f\x40\xfc\x90\xe8\xde\xbd\x97\x00\x50\xa7\xc4\x4e\x1c\x88\x02\xd0\x6e\x11\x09\x3f\x24\x00\x60\x81\x93\x64\x63\xbe\x0b\xe0\xe4\x21\xfd\x8a\xd5\x02\xc0\x63\x48\x6e\x3b\xc7\x0a\x80\x1f\x87\xe2\x37\xbe\x04\x80\xe0\xa7\xe8\x31\xa9\x2d\x70\x3f\x78\x41\x73\x59\xd9\x04\x59\x08\xe1\x36\x34\x35\x18\xa0\x3e\xf4\x73\xb7\x66\x75\xdc\xb4\xee\x47\xa9\x70\x39\x17\x7a\x29\x2e\x9a\x78\xd7\x6e\x5f\xba\x6d\xea\x59\x82\x99\x65\x40\x45\x7c\x8e\x23\x5e\xda\xd4\xb3\xa5\xa8\xe8\xc8\xba\x17\x25\x41\xc7\xf5\x2d\x53\xc5\xea\xba\x07\x24\x54\xb5\x68\xf1\x71\xf1\xc9\xa5\x12\x35\x91\xa5\x98\x82\x89\x6f\x1f\x35\x06\x97\x3d\xf2\xc2\x5e\x6b\x69\xc7\xae\x6c\xca\x65\x7b\xc6\xa0\xd3\xb9\x2a\x9a\xd9\xd3\x4b\xd2\x23\xad\xd6\x67\x04\x74\x69\xe8\x5b\x62\x6a\x53\x34\x6f\x8b\xea\x93\xb0\x16\x89\xdc\x8d\x1f\x8c\xaa\xb0\xa9\x09\xaf\xeb\xf6\x1b\x4d\xe2\xec\x62\x6e\x57\x9d\x31\x61\xc4\x11\x23\x17\xcb\x99\x4c\x2a\xf0\x8a\x11\x06\x45\x31\xa6\xc3\xf8\xec\xb0\x41\x00\x9e\x19\x21\x8e\x5d\xc3\x00\x92\xef\x84\x4b\xf7\xee\x05\x40\x2b\x89\x1e\x38\xe0\x0e\xa0\x7f\x4f\xd8\xeb\x50\xfe\xbf\x7a\x62\xbc\xc4\xe3\x4e\xf7\x01\x78\xaf\x4a\x57\xb3\x0f\x00\x04\x39\xca\x1f\xe1\x69\x02\x88\xcc\x42\x6d\x93\xe8\x85\xb6\x68\x59\xf5\x12\x94\x13\x82\x8d\x8a\xd1\xcb\x36\x48\xa0\x7e\x09\x55\x34\x8f\x70\xd8\x49\xd9\xe5\x93\xe9\x9c\x18\xe4\x4c\x32\x75\xe7\x0b\x48\x4d\x70\x20\xcc\x38\x52\x93\x56\xb2\xfc\xf1\x15\xd6\xfe\xe5\x87\x0a\xb2\x71\xb2\x66\x2d\xb7\x9a\xcb\x77\x63\x83\x0d\x91\x07\x0f\xab\xb6\x61\x4a\x75\x6c\x3e\xaa\x5e\x1b\xc0\xa4\x68\xc8\xff\xd8\x7e\x4d\xf8\xcf\x5e\x9c\x37\x6d\xba\x6c\x8b\xf3\x25\x03\xcf\x64\xf4\x9d\x97\x37\x14\x56\xf6\xed\x35\x14\x5d\xc6\xe6\xe5\x76\x8a\x1a\xa5\xad\xdc\xce\xc6\xb5\xb9\x18\xdb\xac\x5e\xcd\xac\x6d\xfc\x6e\xc2\x86\xa9\x48\x55\xae\xad\x32\xa5\xc3\x6a\x26\xa9\xd2\xfa\x70\x8a\x7f\x98\x35\xe0\xa6\xa2\x6a\x8a\x94\xcd\x74\xf0\xd6\xe1\xf8\x9c\x69\x8b\x0b\xf8\xab\xe1\x47\x01\xf8\x5e\x08\x3e\xa2\x2f\x07\x90\xc2\x0b\xf2\xee\xc1\x01\xa8\x76\xf1\x9f\xdf\x3b\xf4\x8b\x83\xb0\x2b\x11\x1c\x3d\x7a\x13\xc0\x23\x4e\x24\x8a\x25\x1b\x20\x90\x53\x72\x86\x7d\x08\x20\x5c\x47\x76\x92\xd7\x06\x20\xae\x48\x31\x4e\xdc\x1a\xde\xc4\x2f\xa0\xd3\x14\x5b\xe1\x54\xdc\x84\x76\xb6\x6e\x2b\xf5\x5e\x14\xd1\xb4\xd1\x71\x84\x3c\x1a\x90\xe9\xa4\x10\x12\x40\xbc\x76\x65\xd0\xdb\x3d\x55\x9d\x70\xc4\x25\x2e\x51\x31\x4f\x1e\xe7\x6e\xf7\xa9\x44\xa0\xec\x2d\x96\xc9\xa2\xf0\x56\xe2\xb5\x38\x0c\x8f\x71\xe6\x43\xf3\xda\xf4\x95\x3e\xdd\x0d\xdf\xde\x35\x2c\xd2\x78\x98\xb9\x0f\x5a\xe6\x3f\x98\xae\x35\x7d\x4c\xd3\x45\x2d\x38\x55\x86\x0d\xd6\x19\xe8\x2e\x4a\x94\xe7\xf5\x47\x19\xef\x5c\x3a\x52\x6a\x74\xb7\xd7\xf4\xc0\xd2\x4a\xd1\xdb\xd6\x09\x53\xbb\x15\x8d\x5c\x4c\x93\xb9\xe9\xf7\x55\xfb\xac\xbe\x9a\x0e\x73\xe2\x2a\x25\xa3\x86\xd6\x87\x53\x94\x61\x39\x88\xcd\x4a\x6c\xa6\xf5\xe1\xe4\xf0\x58\x6f\xc7\x99\xc6\x2e\x66\x58\x58\x33\xe3\x75\x22\x06\x00\x84\x45\x84\x95\xf7\xfc\xfd\xbb\x29\x4f\x28\x6a\xef\x77\x00\x4d\x01\xfe\xc7\xfb\x0e\x03\x98\x3e\x12\x70\x3b\x38\x0b\xe0\x98\x24\xb0\xeb\xc8\xf4\x2f\x0e\x22\xe4\xb5\x58\x2e\x1b\x16\x20\xce\x5e\x4a\x90\xfb\x1c\x40\x52\xbb\x7c\xac\x18\x3b\xcc\xa4\x1e\x44\xed\x51\x10\x84\x7d\xe9\x5a\x1a\xd3\x7a\xed\xd4\x3b\x49\x99\x46\x39\x4e\xc7\xc8\x6f\xa2\xee\xda\x5a\x87\x5c\x23\x1e\xf3\xe3\xbc\xa2\x9c\x31\x8f\x67\xf6\x68\x8a\x19\x2a\xce\xc1\xca\x3b\x1d\x2b\xd4\xbc\xa6\x80\x39\x66\x75\xfd\xe6\x62\x5d\xd9\xca\x6b\x93\xac\x81\xdb\x8d\x03\x4b\xb3\xba\xa8\xa9\x6f\xad\x47\x56\x4a\xb5\xe6\x66\xd1\x8d\x5b\xc7\x3c\x74\x87\xe7\xf7\xd7\xb1\x0f\xa7\x1a\xed\xfc\xc1\x78\x5d\xfb\x61\x89\x49\xea\xc2\xf9\xea\xd2\xae\x61\x33\xfd\x45\x9d\x0a\xfd\x36\x71\x73\xca\x92\x72\x69\xf0\x8d\x7c\xcb\x07\xcb\x81\x85\x25\xd7\xb2\xac\x04\x57\xde\xe6\xa4\x57\x1c\xb3\x72\x5e\x1d\xcf\x34\xfc\x4f\x1f\x8e\xbc\xad\x21\xf6\x7d\x42\x7b\xba\x83\xad\x30\x2e\x35\xf6\x4c\x4a\x8f\x1d\x0f\xee\x46\x4c\x1e\x80\x50\x81\xd0\xd6\xdd\xce\x00\x4a\xd5\x02\x8a\x7b\x15\x01\xb4\xc9\xbc\x07\xf6\xce\x03\x58\x85\xf3\x2d\x1e\xc4\x03\xb8\x8a\xf3\xdb\x1e\x35\xfe\xe5\x05\x89\x3c\x2c\x1c\x7d\x2e\x0b\x20\x49\x40\x7c\xf6\xb2\x32\x40\x46\xb1\xf4\x77\xa1\x97\xf0\xf1\xea\xb2\x52\xa0\xa2\x1b\x1c\xca\x15\x53\x73\xd3\xf3\xa1\xbe\xcb\xf4\xd6\x47\x3b\xe4\x50\xf6\x24\x4e\x59\xba\x04\xd5\x11\xa6\x42\x4b\xdc\x17\xb2\xac\x71\x19\xde\xdc\xe1\xf8\x32\x03\x0c\x9d\xcb\xe7\xfc\x67\xf5\x65\x2b\x99\x36\x55\x2d\xa1\xcd\x7e\xff\x78\x51\xaa\xda\xb6\x2f\x2e\xe8\xd5\x4f\x06\xdf\x56\x9a\x69\xd1\x2b\x9f\xbe\xd7\xe2\xf7\x2a\xc1\x84\x65\x86\xdc\x9c\x31\xb0\x6c\xb6\x77\x7e\x4b\xfd\xc0\xbd\x83\x16\x73\x3f\xe8\x6b\x1d\x5a\xf6\x5a\x67\x2d\xb8\x56\x3f\xa9\x5b\xb5\x49\x5c\x5c\x2a\xe7\xae\x3a\x6a\x77\x6e\xe9\x4b\x89\x78\xc9\x03\xbb\x0f\xcb\x84\x02\xab\xfc\x66\xfb\xec\x95\xd5\x9c\x96\x6c\x01\x07\x99\xd5\xfe\x2c\xa7\x0c\x47\x87\x93\x98\x37\xa9\x1d\xc9\x62\x8e\xfd\x58\x99\xe4\xf1\x04\x11\x47\x79\x9c\x48\xfc\xe1\x98\xfd\x4e\x15\xb8\xc4\xd8\x34\x00\xd1\x7c\x7e\x3f\x86\xa7\x00\x68\x3f\xbe\x7d\x8c\xc3\x00\x7a\x0a\xbc\x4a\x4c\xf9\x00\x36\xf3\x3c\xd1\x07\xae\x02\x78\x62\x79\xf9\x8e\xa4\x00\x04\x3f\xe2\x6f\x61\x16\x01\x48\xf0\x13\xbc\x73\xae\xef\x5f\x3d\x31\x62\x52\x8a\xc2\xac\x80\x29\x5c\x94\xf7\x90\xd7\x84\xb3\xc5\x67\xd0\xec\xba\x51\xd4\x89\xfc\x62\x1d\x4f\xfb\x55\xf2\x97\xac\x06\x33\xed\x10\x33\xc2\x48\xac\xbd\x8b\x74\x16\x06\x2b\x1a\x60\x13\xf4\xe2\x5a\xd4\xca\x8a\x87\x7b\x76\x71\x53\xdb\xd2\x35\x7b\xaf\x96\x4d\xed\x8b\x0b\x99\xe6\x51\x83\x8c\x5d\x5c\x0b\xcc\x86\xe2\xe3\x4b\x5d\xe5\x1f\x4b\x4d\x3a\x26\x5d\xee\x38\x0d\xcc\x5a\x7e\x99\x36\x6c\x63\xec\x9a\xb2\xb6\x9e\x9d\x6a\xd2\x6a\xd9\x62\xa7\x3b\xcf\x76\xc3\xab\x56\xcb\xfe\xf3\x8f\xa9\x9a\x47\xe5\xfb\x1d\x5b\x17\x25\x2b\x27\x0a\xce\x38\x57\x2d\x31\x97\x8b\xe4\x5c\x72\xd9\xbb\x7c\xa8\x18\x97\xd9\xe9\x5c\xbe\xe2\x92\xbf\x33\x6d\xd1\xa9\x64\xf5\x55\x96\x76\x42\x85\xeb\x61\x0c\x6b\xe6\xa1\x58\x67\x97\xb7\xd8\xd3\x29\xa5\xd1\xce\x2e\x87\x71\x1b\x13\xcc\x22\xdb\x9c\x01\xe7\x13\x47\x0f\x20\x26\xc2\xf7\x99\xa1\x14\x40\x95\xc8\x17\xbc\xd7\x0d\xc0\xd8\x8a\x7b\x96\xe9\xef\x73\x01\xcd\xc5\xb4\x6f\x06\xc0\xa7\x82\x4b\xe8\x50\x31\x40\xf8\x2b\x5e\xa7\x13\xaf\x00\x52\x3a\xf8\xb8\x4f\xbb\xff\xea\x89\x29\x96\x14\x1b\xe0\xdf\x06\x50\xf9\x59\xda\x59\xfa\x1c\xa8\x56\xd7\x28\x45\x68\x25\x20\xbb\xaa\x7a\xd5\x57\x6d\x5b\xc8\xed\xc5\x07\x8d\x77\x87\xa6\x11\x46\x33\xa5\xec\x6e\x67\x0d\xad\xf7\xe4\x5c\xf2\x6e\xcf\x14\x6b\x1b\x5e\x70\x76\x46\x37\xdd\xbd\x17\x36\x17\x68\x49\xf7\xaa\xba\xff\xf3\xf8\x25\xb3\x6f\xdf\x1c\x7b\x1f\x3d\x73\xb4\x5e\x9e\x98\xee\x92\xeb\xd2\xb3\x7f\x37\xb9\x72\xa7\xe1\xe6\x1d\x47\xae\x99\x81\x96\xc2\x6b\xee\xce\xb8\xb9\xe2\x46\xe3\x92\x63\x6e\x07\xe7\x31\x75\xc4\x7c\x43\xd7\xc5\x85\xee\xea\xde\x4c\xbc\xfb\xd9\x25\xfa\xf2\xb6\xb4\x8d\xee\x89\xcb\xfb\x4a\x84\x13\x2b\xdd\x53\x57\xdc\xf2\x25\x68\x7d\x38\x51\xdb\x3c\x0c\x30\xdc\x99\x3b\x42\x8d\x3c\x53\x30\x6f\xd3\xce\xd3\x7c\x28\xc1\x0f\xdd\x5d\x71\x4a\xf1\x4c\x00\x52\xa1\x3c\x9d\x0c\x4e\x00\xea\xcd\x3c\x07\x19\x95\x01\x4c\xde\x73\x95\x30\xf1\x01\x38\x3f\xbf\xdc\xbb\x7f\xf2\x17\x07\x11\xcb\xc0\x5d\x75\x82\x0f\x20\x43\x99\xfb\x23\x8b\x2d\x40\xc1\x75\x3e\x0f\xd6\x04\x80\xca\x24\x91\x24\xde\x50\x80\x1b\x37\xc5\xbf\x88\xf7\x43\x6e\x23\x51\x76\x0e\xfd\x1d\xe1\x6b\xa4\xa0\x4f\x59\xcb\x52\xb6\xd7\x96\xe9\x66\x07\xe9\x12\xee\x14\x75\x5b\xb9\x5d\xd5\x5a\xc5\x27\xaa\x5f\x09\xae\xff\xb8\xc8\x14\xf0\x2a\x75\x5b\xd7\xc5\xb9\x5c\x77\xfe\xc6\x85\x07\x39\x53\xee\xd6\x3e\xef\x5e\x3c\xbf\x34\xc2\x67\xdf\xf0\x39\x7e\x80\xa5\x53\xd1\x85\x34\x66\xd1\x9b\xde\x78\xc3\xad\xfd\x3b\xb5\x93\xad\x6a\x8f\x47\xf0\x74\x7b\x5b\x7e\xb1\xb2\x27\xcf\xec\x40\xf3\x70\xce\x56\xaf\xf3\xf3\x03\xf5\x4d\xe9\x3b\xbc\x60\xc1\xa8\x46\x34\x99\xf3\xca\xbd\x45\xde\xaa\xfa\x58\x01\x1f\xf4\x92\x48\xb9\x6d\xd4\xc8\x15\xca\xf2\xa7\xc2\xac\x30\x01\xef\xd6\x95\xb1\xdc\xda\x90\x1d\xde\x51\xab\xd5\x57\xa3\x68\x7d\x38\xfe\xfa\xde\xee\xd8\xad\xa9\xa6\xbe\x69\x57\xb2\x71\x3b\x12\x6c\x01\xa4\xe2\x79\xee\x32\x38\x03\x68\x39\x73\x89\xed\x69\x02\xb0\x78\x74\x79\x81\x29\x15\xc0\xb5\xfc\x12\x7e\xdf\x23\x80\x90\x7b\x1c\x61\xfb\x3f\x01\x24\x9d\xe5\xcc\x39\xba\x08\x90\x77\x90\xeb\x11\xcb\x2d\x80\x8a\x2f\xdc\xb9\x67\xa3\x7f\xf5\xc4\xdc\x32\x12\xcd\x13\x2d\x81\xc6\xdb\x27\xa4\x1d\x50\x64\xc4\xe8\x4e\x93\xd2\x57\x8b\x09\x8a\x72\x9b\x8d\x26\x93\xbf\x3f\xc1\xaf\xce\xc8\x34\x21\xdb\x77\xd5\x3d\x9f\xcf\x95\xa7\xe1\xe1\x7c\x4e\xe4\x86\xe8\xc9\xbe\xda\x29\x71\x9f\x93\x0d\x59\x2f\xe2\xdf\xea\xbb\xaa\xbf\xce\x7d\xd9\x70\xdf\xc2\xb3\xf5\xa3\xcc\xb3\xad\x0d\xcc\xde\xc4\xaf\x4f\x1e\xd4\x97\x9a\xf8\xd5\x4c\xd8\xdd\x6f\xcc\x21\xf9\xf3\x4d\x25\xde\x49\x4e\xaf\xf5\xf7\x9e\x21\xde\x3a\x95\x20\x1a\x70\x7f\x8e\xd8\xc8\xb5\xde\x87\x63\x15\x88\x5e\x20\x55\xe7\x86\x1a\x05\x68\x2e\x19\x95\xef\x0b\xd1\xf3\x3f\xf5\xef\x3e\x9c\x80\x55\x9f\xe7\xab\x9f\xb2\x4a\xfc\x83\x7c\x26\x31\xe9\xe9\xa1\x34\x1f\x8a\xcf\x23\x9f\xbf\x70\xbb\x12\x8c\x00\xe4\xe6\x78\xfa\x76\x1b\x01\xe8\x8c\x72\x6d\x66\xa4\x07\xb0\xe1\xbe\xcc\xc0\x54\x01\xe0\x15\xcc\x19\x78\x40\x11\x20\xec\x25\xc7\x96\xfd\x83\x00\x69\x76\x1c\x01\x87\xd1\xbf\x7a\x62\x6a\x35\x2e\x8f\x9c\x31\x00\x68\xe1\xe3\xdb\x7d\xd1\x15\xa0\x53\x5f\xe8\xb6\x10\x3f\xbc\xef\x63\x95\x60\x50\x74\x44\x6a\x1f\xd8\xc9\x0d\x99\xec\xa7\x64\xf5\x46\xa1\x3f\xf9\x1c\x26\x8c\x74\x4c\xeb\x9b\x67\xb6\xad\xbc\xac\xfd\x6e\x37\xd0\xd4\x32\xbe\x29\x6b\x32\x24\xf9\x01\xe6\xb9\x4c\xdc\x9e\x92\xe5\xa1\xab\xf7\xb2\x42\xdc\x9e\x22\xa3\xe6\x35\xec\x61\xed\xef\x44\x86\x22\x73\xf7\x47\x12\x3e\x91\x9e\x78\xa4\xf3\x87\xe3\xc7\x77\xf6\x7a\xc6\x4b\x45\x54\x4f\xfa\x74\xee\x8d\xa5\x0b\xbb\x38\xc3\xd2\xa6\x1a\xc5\x1c\xda\x36\x67\xdc\xf4\x25\xec\x46\xa8\xe9\x8f\x57\xb5\xfb\x42\xc6\x42\x58\x16\x6d\xab\xc4\x83\xe7\x82\x46\x96\x9c\xca\x3e\x06\x9e\x0a\xd9\xb8\xdc\x54\xa4\x4e\xeb\xc3\xf1\x69\x0c\xb6\xc1\xc8\x66\xbc\xfb\xd3\x87\xe2\xb5\x2f\x30\x01\x67\x1f\x17\x0e\x80\xba\xc6\x5d\xbc\x7b\x06\x40\xef\xcb\xa5\xe5\x3d\x87\x01\xec\xab\x2e\x06\xec\xd5\x07\xf0\x0b\x3b\x9f\xbb\x97\x09\x20\xf6\x11\x9b\x0e\x93\x1b\x40\xf6\xc5\x0b\x3b\x0f\xe6\x01\x54\x1d\x65\x5d\x3d\x68\x01\xd0\x88\xbe\x58\xc3\x9c\x0d\xd0\x29\xc3\xc9\x7f\x96\x1b\xe0\x81\x3c\xff\x0e\x9e\x07\x00\xcf\xe6\x44\x26\x65\x9a\x91\xf7\x43\x5d\xd2\x33\x86\x9b\x28\x8f\x86\x55\x94\x3e\x79\xd9\x12\x5a\x9e\xca\x68\xa5\x64\xd6\x2c\xf4\xdc\x1f\x36\xaf\x69\x62\x1f\x1e\xbe\xd1\xee\x5b\xd7\x7b\xad\x35\xb9\xb0\x23\x53\x6d\xa8\xbf\xb4\x35\xeb\x62\xe7\x87\x37\x7a\x99\xea\x19\x6f\xdf\xf0\xbd\x3c\x99\xa4\x9f\x36\xf4\x79\xd7\x13\x93\x58\xc6\x14\xe9\x71\xcf\x9e\xb6\x08\x99\x94\x92\xa9\x7d\x1d\xf5\xa1\xcf\x92\xe8\x67\x26\x6f\x59\x87\x54\xc7\x75\xcc\xcd\x35\xea\x04\x39\xc7\x56\xfd\x18\xae\xdd\xee\xbf\x12\x7b\x69\x31\xab\xf2\xaa\x6f\x52\x2c\x7e\xe9\x65\xa9\x3e\xad\x0f\xc7\x9b\x29\xea\xcc\xaa\x76\xf6\x88\xd7\x8b\x88\x25\x8c\x6a\x46\x89\x27\x6f\xc4\x03\xec\x99\x94\x7e\xf7\x97\xe1\xde\xb8\x83\x09\x47\xdc\xbe\x86\xe5\xe0\x5a\x62\x66\x00\x54\xf4\x2e\x63\x76\xef\xfd\x95\xff\x3b\xa9\x71\xd4\xee\x15\x02\x08\x3e\xc6\x5a\xc3\xc8\x02\x90\xc2\x7c\xd6\x9b\x31\x06\xa0\x70\x81\x65\x13\x43\x12\x40\xdd\x5f\xa7\x82\x19\xdd\x01\x3a\xce\x9c\xbd\x73\xe0\x3e\xc0\x03\x73\x8e\x10\x96\xcf\x00\x83\x77\xb8\xa6\x2e\x6e\x06\x78\xe7\x22\xf8\x5c\xbc\x19\x24\xbf\x0e\x4a\xec\xd2\xaa\xa4\x8c\x8c\xeb\xcb\x07\x7a\x9e\x21\x4c\x7c\x7b\x85\xbe\x9a\x2e\xf8\x25\xe3\xb5\xb8\xb1\x68\x6d\x7b\x6f\xe0\x23\x92\x7b\x53\xd7\xfe\x2a\xb9\x0e\xa3\x04\xb5\xa7\x35\x69\xa2\xad\x9a\xad\x1b\x46\xac\x22\x39\x1b\x39\xde\xe9\x0d\xf1\x86\x5e\xad\x36\xfd\xba\xf5\x11\x7d\x50\x5a\x19\xfb\x44\xea\x7d\x13\x7f\xbe\x22\xcd\xe9\xca\xf6\x4d\xbe\x2c\xf9\x43\x73\xfb\x9b\xb9\x7d\xb2\xb2\x13\xe7\xbf\xd7\xbb\x79\x6f\xce\x4a\x5d\xc8\xbb\xe6\x73\xc5\x2d\x7d\xc7\x12\x7d\xf9\x5b\x8f\x1f\xa9\xc3\xcb\xcb\x85\x27\x3d\x9e\x26\x53\x56\xa2\xf2\x96\xdd\x6e\x25\x3d\x5a\x25\x67\x8e\xbb\xaa\x25\xef\xc1\x54\xa6\xfd\x70\x99\x89\xff\x86\xcd\x48\xca\x72\x1e\x88\x3b\x8f\xf3\x8d\xdb\xe5\xb4\x1c\x77\x1a\xf7\x26\x66\x33\x80\x6a\xc8\xc5\x68\xfa\x60\x00\xf3\xd5\xf3\xa2\xf4\xd3\x00\x1e\x21\xac\x16\xbb\x4f\x00\x44\x88\x9c\x96\xa5\x5f\x01\xc8\xca\x64\xd6\xa1\xdf\x07\x50\xd9\xf6\xf3\x3d\x26\xad\x1f\xe5\x61\x11\xdd\xe8\x3f\x79\xc7\x2d\x96\x50\xc6\x76\x80\xcf\x3c\xec\xb1\x2c\xc1\x00\xb3\xae\xbc\x96\xbc\x4f\xa1\x07\x7b\x42\xe4\x1e\x8a\x48\xb5\x21\x99\x49\xd7\x39\xa5\xcf\x7f\xc0\x5e\x57\x1e\x49\x50\x19\xae\x9d\x67\xd0\x77\xae\xd8\x70\xeb\xf9\xb7\x54\x27\xce\xb6\x8d\xd9\x2a\xaf\x23\x23\x9f\x3f\xb8\x1c\xf1\xfa\xe5\xab\x1b\xf4\x4f\xcf\x7b\xb9\xbd\xb0\xf9\x30\xfb\xec\xb4\x57\x6a\xd7\x85\xb1\xcd\x7d\x62\x1e\x5f\x5a\x32\x26\x5f\x75\x58\x7a\xe8\xd7\xcf\xcd\x04\xdd\xaa\x72\xf7\xbc\x36\x32\x37\xd2\x30\xe7\xfa\xa1\x4a\xf4\xc7\xc0\xf5\x80\x75\x0f\x48\x7e\x91\xc6\xd2\x64\x49\x8e\x8b\x75\x1e\x7a\xe5\x68\x81\xb4\x93\x7e\xee\xe0\xaa\xf3\x55\xbc\xe3\x8f\xab\xbd\x18\x8b\xf4\x49\x47\xb7\xac\xdd\xd8\xcd\x29\x64\x07\xba\x4c\x49\xec\x74\x42\xbd\x3d\xa4\xf5\xe3\x9c\xe2\x0e\xda\xf5\xa4\x8a\xe3\x65\x23\x03\x01\xb4\xfe\x62\x77\xa6\xdf\x01\x60\x73\x81\xad\x9a\x81\x1d\xc0\x47\x92\xe5\xce\x4e\x59\x80\xb8\xc3\x3f\xd7\x9b\x6f\x4f\xf7\x9b\x07\xe1\xcf\x3e\x88\xb1\xb5\xeb\xb2\x24\xc8\x32\xbd\x27\x19\x00\x66\x2f\x5f\x62\x93\x81\x55\x2a\x56\xe4\x2f\x25\xe7\xf9\xc7\xa4\x67\x32\x95\x0e\x72\x6f\x00\x1f\xa8\xf2\x3d\x7c\xaa\x7b\xeb\xea\x31\x03\x42\x1e\xba\xba\x66\x41\xd8\x51\xa5\x6e\x38\x91\x7e\xba\x24\x64\xa6\x63\x29\xc0\xee\xfb\x44\x95\x65\xf7\x79\x87\xd6\xb1\xc1\x77\x0d\xfd\xb6\xb6\x01\xef\xc4\x27\xee\x76\xa9\xd9\x09\x3e\x79\x3c\x1d\xd9\xfa\xc1\xee\xd5\x7d\xdc\x9c\x48\x63\x91\x9d\xdb\x1d\xec\x0f\xf9\x5a\x01\x7b\xdf\xa6\xe9\xc5\xcd\x55\xe2\x76\x84\x1b\x9b\x97\xec\x4b\xfb\xec\xce\xd4\x64\xac\xec\xcf\x1f\xb4\x0d\xac\x5a\x58\x3d\x91\xdd\x47\xeb\x81\xb1\x65\x29\x3e\x82\x65\x4c\x71\xb5\xb9\x56\xa8\x8a\x6d\x4c\x0c\xb0\x5e\xcc\xc3\xe3\x42\x63\xcd\xac\xea\x73\x0d\xf1\xa6\x11\x05\x96\x63\x79\x9b\xf1\xb9\xe1\xf2\x00\x06\x23\xac\x8a\x3b\x73\x01\x9c\x4a\xcf\x65\xd0\x57\x00\x04\x07\xd2\xb5\xfe\xbd\xae\x34\x97\x9f\xeb\xa3\xf9\xef\xd7\x3d\x08\x5c\xbf\xe7\xdf\xbf\x7a\x41\x4e\x3a\xee\x98\x80\x30\x80\xcb\x84\x0b\xfe\xf3\x97\x10\x76\xe1\x32\xf9\xa5\xf7\xb7\xc9\x2b\x32\xf5\xe6\xc1\x0f\x6f\x13\xa8\xaa\x35\xfe\x8d\xcd\x87\xb1\xf5\x46\xc1\x29\x81\x79\xab\xcb\xb7\x9d\xd0\xa5\x59\x91\xc6\x0b\x9b\x82\xf6\xdd\x40\xf9\x7c\x9e\xf7\xcd\xdf\xda\xac\x69\x5f\x32\x9b\xd8\xd7\xd0\xba\xcb\x34\x6a\x26\x62\xea\x65\x1b\x83\xf1\xd0\xc4\xd8\xec\xa3\x46\x26\xd3\xa0\xd1\x93\x3f\xb6\x5d\xcf\x36\xf3\x78\xb2\xbc\xb8\xb3\x82\x60\x9e\xdc\xcb\xb5\xa4\x55\xba\xdf\x5c\xeb\xae\xd3\xca\xde\x3c\x8a\xf9\xe3\xd6\x92\xd5\x3d\xd9\x4a\xe6\x2e\x37\xd1\xab\x90\xe1\x61\x7e\xa3\xbe\x1f\x43\x49\x61\x37\xfb\x5a\xcb\x80\x5d\x8a\xcf\x31\xd7\xad\xe6\xc1\x39\xc5\xca\x9b\x97\x57\xec\xc2\xbd\x8d\x3e\x66\x76\xbf\x2c\x1f\x1f\x16\x7e\xc5\xcc\xbf\x78\x8e\xb0\x3b\x44\x08\xc0\xcc\xfc\xd4\xf3\xed\x61\x00\x5e\x86\xc7\xcd\xb7\xba\xfd\xca\x7d\xff\xf4\x61\xfc\xc9\x81\xcc\xdb\xfe\x3b\xff\x46\xf2\x00\x98\x15\x77\x05\xcf\xbf\x05\x02\x67\xeb\xf9\xf4\x0f\xae\x88\xa0\x48\x8b\xfc\x87\x27\xe9\x94\x72\xd9\x34\xc3\x97\xb7\x47\x49\x57\x55\x29\xae\xd8\x2a\x4e\xfc\x27\xa3\xe5\x48\x96\xf4\x2c\x2c\x9d\xc3\xb7\x4c\xf6\xe0\xd1\x15\x21\xff\xc0\x12\x59\x2f\xf6\x65\x87\xf4\xe1\xf2\x7d\xf6\x45\x8b\xab\x4d\xb6\xd5\x92\x26\xd1\x0b\xd2\x6f\x3b\xae\x7f\xa6\xf9\x2f\x74\xc7\x67\xbe\x2e\xca\x96\x05\xe8\xc9\x7d\xc9\x5e\xa6\x2f\x78\x6e\xf0\x72\xc4\x62\xf9\x4e\xfe\x1e\x43\xb7\x27\x6e\x2b\x53\x57\x5f\x18\x62\xfa\x1a\x56\xc7\xd3\x29\x86\x42\xf7\x77\x62\xf9\x92\x4e\x18\x50\x3b\xae\xe1\x8e\xc4\xbe\x33\x52\xbf\x35\x8f\x33\x8b\xe9\x37\x1a\x6a\x7a\x8f\x7b\x1e\x55\x6d\x7c\xa1\x3e\x10\x6f\x10\xfe\xdc\x70\xa6\xee\x0c\x81\x39\x58\xc0\x50\xad\xc6\x80\x30\xe0\x7f\x11\xc0\xaa\x71\xbb\xef\xdf\xeb\xa1\xf9\x30\xd2\x34\x7f\xce\x72\xf2\xcf\x79\x87\xfc\x3b\x0f\x34\x11\xff\x73\xfe\x7c\xdf\x4f\x3d\x0f\x40\xd7\x41\x47\xf7\x63\x3b\x00\xf3\x21\x06\x83\x0f\xe3\x00\x97\xf4\xce\x0d\x3c\x9b\x45\x1a\x85\x97\x24\xdb\x3b\xc7\xa9\x66\xb2\x37\xb4\x22\xeb\x87\xc9\x91\xea\x1b\xed\xa6\xf3\x72\x88\x4d\xc6\x0a\xbe\x1d\xb1\x4f\xf0\xbd\xf6\xd8\xa8\x1f\x7e\x7b\xb1\xbd\xbe\xda\xa9\x38\x77\x69\xec\xf6\x84\x3d\x99\x7a\xb6\xd1\x98\x8d\x55\xca\x39\x52\x26\xcb\x2b\xdf\x7b\xbf\xe4\x17\xe9\x60\x97\xc7\xbe\xbf\x2d\xac\xd3\xf4\x5d\x79\xbd\xdc\x94\xcb\xae\xa1\xb3\xe2\xb6\xf2\x38\xb3\x5b\x73\x71\xe2\xc3\x6a\x71\xfa\x01\x2d\xe7\x0f\x2f\x31\x2d\x49\x5d\xda\xbd\x23\xcb\x58\xde\x84\xaf\x3a\x92\xcf\x8e\x63\x89\xb1\x1e\xda\x85\x8f\x22\xf0\x5b\x22\xb6\xea\x4c\x75\xff\xc0\x2b\x87\x2d\xea\xe2\x3b\x23\xf0\x36\x61\x05\x3a\xa2\x77\x56\x09\xe9\xfe\xa9\xba\x02\xb7\x5e\x11\x9e\xfb\x69\xeb\xa6\x37\xbf\x23\x6e\xf7\x99\x03\x70\xfc\x4a\x67\xf0\xf7\xba\x22\xe7\x7e\xbf\x0f\xd6\xfb\x30\xfe\x6f\x0e\x64\x2d\xef\x9c\xcb\x5f\xcb\x3f\xdf\x03\x9c\xb4\x62\xf0\x7b\x91\x00\x70\x31\xe5\x4c\xe0\x7d\x4d\xd8\x28\xfc\x40\x74\x2b\xcd\x03\x51\x36\x4d\xb1\x56\x0f\x33\xe7\x4e\x5f\x26\x61\x8c\x5a\x5c\xc5\x43\x17\x89\x1e\xf6\xb1\x01\xca\x7f\xf2\x0f\x36\xdb\x70\x5f\x0b\xce\xc7\xd7\x98\xc8\xe3\xb4\x5a\x14\x13\x73\x75\xf7\x61\x55\x87\xbf\xa7\x6e\x53\x37\xc4\x7c\x5f\xfc\x94\x7a\xfa\x4f\xfe\x01\x3d\xf8\xa3\x03\x27\x1f\x99\xa6\x2a\x36\x1e\x80\x3f\x13\xea\x43\xe3\x1e\xd4\x2f\x8d\x0c\xe0\x97\x03\x3f\xa8\x5f\x7a\xd1\x48\x70\xf4\x67\xd3\xa0\x7f\x1c\x4d\xb8\xea\xe7\xa4\xde\xdd\xbf\x44\x14\xbd\x62\xa0\x21\xdc\xfd\x84\x18\xe8\x39\xae\xc1\xd7\x59\x41\x5c\x70\xfb\x0e\xe0\x33\x42\xf7\x9b\x17\xe5\x4f\x0e\x84\xb6\x0f\x96\xdd\xe8\xfe\x8f\xef\xbf\xdf\x93\xd6\xf8\x87\x84\x35\x0f\x84\x17\x00\x67\xe1\xb9\xb8\x96\x48\x40\x09\x7b\x09\x98\x57\xb5\x23\x7a\x72\xb6\x8a\x7c\x39\x2f\xa9\x8a\xea\x9b\x75\xf1\xf1\x31\x64\xac\x51\xa5\x4d\x61\xe0\x11\x12\xd8\x90\x5c\xbd\xd7\xf9\x07\x4b\xe2\xfb\xd0\x06\xdf\x94\x75\xfe\xe1\x23\x21\xf0\x9a\x62\xe8\x7d\x9d\x55\x82\x51\xd7\xb7\x50\x3d\xf5\x11\x7c\xc1\x5b\xef\x08\x39\x15\x15\x7c\xe4\xea\x54\xf8\x01\xd4\x39\xc2\x76\x3c\x77\x70\x8f\x72\x36\xc1\x06\x9f\x19\x18\xa9\x1c\x84\xd1\xc4\xe3\xfd\x9d\x51\x69\xd3\x47\x08\xea\x7e\xf4\x28\x81\xb1\xcf\x04\xdc\x95\x73\xa8\x17\x1f\x8e\x13\xb5\x3d\x2f\xa0\x46\x5f\xff\x45\x7c\xe3\x3a\xad\xe2\x3d\x74\x9f\xb8\xe8\x1a\x8c\xd6\x7b\xca\x49\xda\xed\xb2\x8c\xde\x34\xc0\x4b\xf2\x72\x3a\xf9\xcb\x8b\x52\xb0\xf0\x3b\x07\xf2\xe2\xff\xfc\xfe\x9d\x96\x7b\xfd\xe9\x81\xe8\x35\x00\x60\x5e\xde\xf3\xa4\xf5\x33\x00\x67\xed\x99\x86\x1a\x71\xf0\x13\xc6\xf1\x9a\x14\xc4\x23\xf7\xe4\x6c\xa4\xa3\x68\x3d\x18\xe1\xee\x94\x71\x43\xaa\xb1\xaa\xb7\x1a\x85\xc9\x3a\xcb\xfa\x85\x73\x02\x19\xed\xfa\xd5\x69\xce\xce\x96\xbc\x21\x30\xcb\x35\xdb\xfc\x1b\xa9\x37\x89\xdf\xdd\xc3\xc8\x8d\xa4\x52\x34\xee\x15\xa9\xb3\x42\xda\xda\x14\x78\xa5\x46\xbd\x8a\x58\xf3\xe8\xa4\xcf\x5f\x68\x7e\xa2\xe2\x87\xbd\xbe\xb6\xca\x8c\x04\x0c\x26\xc8\xef\xc0\x9a\xf7\xa1\x58\xc1\x90\xa4\x44\xcc\x72\x75\x58\xf7\x3e\x84\xad\x46\x92\x8c\x1c\x18\xd7\xfb\x2e\xea\xc6\x86\x48\x0d\x76\x91\x8a\x9f\x3f\x94\x92\x8a\xed\xbd\x15\x1f\x8f\x0e\x90\x08\x36\x53\x8a\x53\x2f\x87\xc9\x27\xad\x5f\xfe\x3a\x0f\x6a\xc3\x7e\x3f\x0f\xbf\x28\xac\xe5\xdf\xaf\xe8\xfe\xdd\x87\x42\xfd\xdd\x03\x71\xaf\xfa\x97\x07\xe0\x14\x9a\x11\x7b\x7d\x16\x80\x53\x8c\xe5\x7e\x21\x05\x5e\x0a\x96\x73\x44\xa6\x7f\x82\xcb\xb2\x6c\x22\x3b\xe3\x36\x22\x22\xea\x27\x51\x0a\x81\x06\xd4\x52\x83\x18\xad\x76\x77\x4e\xca\x13\xab\x7a\x13\x07\x7b\x4e\x4a\x92\xb3\xa0\xf9\x76\x6b\x1f\x0a\x9b\x6f\x9f\x35\xbf\xa9\x3d\xe5\x7c\x34\xda\xfa\x9c\xa1\x1a\x39\xf3\xaa\xb7\x83\x90\xce\x24\x59\xa2\x8a\xcf\xc9\x53\x43\x89\x4c\xdf\xe6\xe7\xcc\xa9\x52\x44\x66\x1e\x08\x72\xf4\x51\xbe\x48\x8a\xf9\x64\xe9\x7a\x40\xe1\x1a\x29\x62\x59\xc1\xe5\xb8\xfc\x36\x12\x81\xa4\xe6\xb0\x53\x6e\x1b\xf9\x0a\x69\xc4\x66\xc3\x3a\xff\xb0\x89\xac\x45\x1e\x30\x9e\x93\xb9\xb0\xca\x47\x1e\x33\x56\x95\xa9\x9a\xed\x24\x2f\x1b\xb3\xca\xe0\x26\x72\x29\x3b\x8d\xa2\x64\xf3\x3e\xdf\xa4\xec\x36\x6a\xfa\xc5\x07\xde\xdd\xfb\xfb\x3e\xc0\x59\xfe\x73\x0e\x9a\xad\xf9\x70\xd6\xee\x83\x97\x6b\x3c\x48\xcf\x9b\xb5\xfc\xfb\xf9\x5a\x0f\xc4\x15\x80\x0d\x47\xe9\xe8\x4a\x07\x01\xb8\xe9\x4f\x3f\xcc\x8a\x84\x45\xc1\xfa\xf3\x3d\x09\x47\xc1\x5b\xc6\x9c\x6f\x34\xe4\x31\xb2\x8a\x76\x93\xdc\xe1\xbd\x11\x11\xd3\xdf\x80\xf2\x72\xa4\x50\x1b\xcd\x27\x35\x87\x6d\xcd\xa8\x27\x1d\x9c\x0c\x6a\x2d\xf4\xa9\xac\x5e\x6e\x06\x55\xc6\x75\xd4\x3d\xa1\x1b\x0d\xbb\xf4\x8b\x28\x4d\xc9\x55\xa6\x39\xda\x4e\x94\xb4\xfc\x56\xb3\x80\xff\xf0\x0f\xcc\xe4\x6f\x8f\x7b\xad\xea\xe4\x3f\x91\xf1\x1f\x8e\x58\x7c\x91\x33\x23\xdf\xfd\x71\xda\x8a\x59\x66\x89\xbc\x4a\x36\x30\xaf\xfa\x4f\xdf\x03\x8d\x7b\x10\x24\xcb\x53\xc6\x34\x1d\x25\xd9\x57\x6f\x51\x70\x1a\x7d\x12\x9f\x7f\x7c\xa2\x9e\x52\x3f\xf0\xeb\xb9\xf8\xcc\x6a\xed\x79\xf8\xb3\x1f\x6b\xad\xef\x62\x46\xfd\xf7\xfc\xfb\xc1\x5a\xef\xc3\xad\x90\xdf\xf3\x6f\x5a\x0f\x44\xf6\x49\x80\x4b\xc8\x71\x95\xe4\x8d\xb0\x2a\xac\x76\x3e\x3c\x9c\x0a\xf9\x32\x18\xee\x87\x7e\x1e\x20\xa7\xc2\x2a\xbc\xd9\x6d\x13\xd2\xaa\x1b\x2e\x7b\xda\x56\x0d\x31\x34\xc1\x2b\x39\x5a\xca\x52\x71\xb6\x47\xd5\x0e\x99\x31\x50\xeb\x3d\xa4\xb4\x94\xd7\x7b\x1f\xfa\xa9\x5e\xd1\xc9\xba\xe7\x34\xad\xa8\x6e\x59\x02\xba\x74\xea\x4a\xd4\xc3\x25\xf7\x0c\x02\x68\xfc\x83\xb2\x00\xe5\x59\x87\xbf\x91\x85\xc2\x7d\x4a\xcd\x40\xa6\xf1\x41\xd9\x3e\x4a\xc7\x3b\x1e\x43\x37\x19\x11\x4a\xf5\x4c\xa8\x61\xb2\xd4\x43\xca\x27\xc2\x79\xbd\x15\x49\x7b\xaa\x06\x65\x50\xeb\xec\x7f\x72\xff\x35\xee\x41\xd4\x97\x72\x06\xd9\x2e\x57\x0c\xd0\x5d\xf6\x73\xfd\x5f\x6d\xff\x7d\x0e\x2c\xac\xf1\x1f\xef\x0a\xd6\xf2\xef\xb5\x7d\xd0\x2e\xf7\x7b\xfe\x9d\xb7\xc6\x4d\x65\xeb\x02\xb0\x08\x30\x1c\x4f\xf1\x07\xe0\x48\x39\x34\x15\xbd\x08\x20\x5c\xc7\x1a\x14\xa8\x05\xef\xa4\x9e\x71\xd4\x79\xb4\x40\x28\xaa\x98\x4f\xd1\x81\x13\xb8\xb4\xa2\x44\x34\xad\x6a\x90\x41\xc3\x9b\xd2\x1b\xcc\x6c\x90\x68\x8b\x19\xf9\xfb\xc6\xda\x88\xa1\x53\x9f\xd2\xa0\xc1\x6e\x44\xf1\x8a\x3f\xea\x90\xee\x69\x84\x29\xd4\x46\xf5\x9c\xe6\x43\x64\x63\xbc\x8a\xea\x82\x9a\x0d\xf5\xed\xd5\x05\xf5\x81\x75\xfe\xc1\x92\x5a\x7d\x83\xa4\xc9\x2f\xff\x8e\x9a\xd6\x61\xa6\x59\x28\xfb\x9a\x6a\x3b\x60\xac\xf5\x51\x8a\x4a\x2d\x78\x7d\x49\xfd\xa9\x54\x21\x55\x6e\x62\x54\xfb\xa0\xc4\x32\x35\x66\x05\xa5\x3e\xb7\xc6\x7f\x4c\x88\xf9\x22\x02\xd4\x07\x8a\xfd\xb4\x9c\x5b\xa4\x14\x69\x44\xe4\xa5\xef\x00\xbc\xfe\xf8\x73\xfd\x44\xbb\xbf\x27\xe6\xfa\xef\xe7\xe0\x3a\x07\xb4\xd6\x07\x53\xfb\x63\x8d\xff\x58\xfb\x7b\xee\x28\xc0\xd1\x33\x5b\x23\x23\xce\x00\xd0\xdd\xa1\xa3\x8b\xfe\x0a\xc0\x21\x76\x60\x32\x78\x3f\x80\xc0\x1d\x66\xe2\x15\x6b\x00\x49\x3e\xd6\xbb\x2e\x5e\x30\xac\xa0\x7b\x51\xdb\xb6\x07\x6c\x35\x32\xf9\x29\xe6\x49\xb0\xc9\xa0\x4b\x9c\xdb\xc8\x0b\x99\xb2\x48\x91\xf4\x36\x18\x41\x3e\xd9\x1e\x97\x72\xd6\x93\x44\x6e\xba\x6f\x93\xad\xd7\x72\x46\x5a\xfc\x4f\xc8\x76\x6b\x3c\x41\xdc\x22\x0d\x14\xc7\xd1\x01\x48\x72\x52\x9b\x3c\x15\xa5\x85\xd8\x66\x8f\x29\xfd\xa5\xa4\x87\x70\x94\xf7\xa0\x1e\xcb\x9f\x40\xf8\x1a\xce\x28\xf7\xca\x9a\x23\xf4\x77\x56\x54\x74\xa4\x19\x10\xfa\x87\x4e\xa8\x47\x92\xd5\xc8\xce\xc1\x39\x94\xbb\x78\x27\x72\xe6\x23\x49\xe9\xae\x58\x3a\x22\x34\x13\xab\xe8\x27\xd6\x81\x9c\x24\x9a\x2a\x0d\xd3\xae\x83\xb0\x11\x42\x40\xb2\xc4\xfb\x69\x3c\xd8\x7a\x1f\x4c\xc9\xff\xcd\x01\x35\xac\xfd\xbf\x97\xd6\xfd\x9c\x99\x6b\xfd\x28\x31\xa7\x7f\x4e\xbf\x40\x80\xbf\x7f\x8f\x07\xda\x00\x9c\x13\xd8\x9d\x7e\x25\x11\x80\x27\xe8\x08\x8b\xdb\x1c\x80\x44\xe7\x59\x1b\xfb\x53\x30\x2b\x4f\xbd\x60\x60\xd9\x07\x95\x6a\x47\xb8\x74\x8c\xbf\x81\xac\x3e\x83\x10\x27\x8d\x7f\xd0\x5d\x84\xb3\xd6\xa3\xa2\xb2\x5a\x6e\xc0\xe3\x64\x2b\x92\xa3\x51\x02\x4c\x5e\xcd\xe2\xfc\x6a\x69\xc8\x62\x30\x9d\xe4\x4b\xb4\x3c\xd2\x1a\xaf\x2d\x1b\xad\xfc\x18\x69\x4c\xf7\x94\xed\x57\xe4\x45\x1a\xf3\x1e\xc8\x06\xcb\x95\x22\x2d\xe5\x01\x32\x53\xb2\x0a\x48\x50\xc3\x25\xf9\x56\x29\x7d\xa4\xac\x7d\x87\xec\x31\x49\x3c\x62\xda\xab\xa4\x90\x4c\xe3\x1f\xc4\x6e\x23\x4e\x6f\x5f\xca\x33\x88\x1a\x23\xe1\x93\x79\xb2\xd7\x45\x5c\x90\x9a\xc5\x8b\xd2\xc5\x22\x5a\xc8\x7d\x6a\x8b\xd4\x28\xed\x1c\xa0\xf1\x80\x23\x3d\xff\x83\x03\xf2\xfe\x39\xaf\xae\xf5\x45\xc5\x07\xfc\xce\xc1\x04\xdd\x03\x38\x61\xb5\x9d\xd1\x67\x03\xc0\xf9\x03\x8c\x6c\xae\x46\x00\x9c\x72\xfb\xc6\x1c\x4f\x03\x88\x7d\x60\xe1\xb3\xba\x0d\x20\xe7\x78\x2e\xdd\xec\x0c\xbc\x40\x33\x73\xac\xe8\x5b\x40\xb9\xd6\xb5\xcb\x37\x75\xde\x43\x9a\xde\x18\xb7\xbd\xf6\x10\xb8\x98\x5f\xe0\x47\x69\x0c\x80\xa7\x6d\x25\xbf\x8a\xda\x12\x68\xb8\x33\x0a\xb9\xa0\x03\x00\xed\x43\x12\x1a\x53\x71\x87\x43\x61\xaf\xc5\xa8\x4a\x39\x70\x22\x0e\x2d\x16\x28\x5f\x0b\xcc\xe9\x07\xc4\x0e\xc9\x51\x91\xb9\x7c\x13\xc9\x34\x59\x25\xe4\x49\x65\x9f\xb4\x86\x14\x17\x82\xad\x1b\x95\x10\x91\x94\x40\xde\xde\x4a\x91\xec\x15\xcf\x44\x9e\xdd\xaf\x93\x3a\x28\x16\x82\x3c\x7e\xa4\x29\x45\x27\xba\x1b\x19\x78\x75\x48\xf2\xa9\xf0\x27\xe4\xcd\x97\x20\x89\x1e\xe1\xa3\xc8\xdc\xb4\x85\x78\x19\xc0\x89\x15\xb9\xf6\x4d\x8b\xbf\x38\x08\x3e\x49\xe9\x1b\xbb\x7d\x00\xa4\xb7\x4b\x61\x0e\xac\x02\x28\xf7\x2a\x4a\x9d\x78\x0d\xa0\x99\x89\x92\x3d\x4b\x07\xa0\x7f\x45\xc5\xe5\xfc\x3e\x00\xb3\x27\x1a\x1a\xdc\x73\x00\x16\xad\xba\xf2\xc2\xdf\xe1\x93\xa5\x81\xb1\xa7\x6c\x17\x18\x5b\x5e\xb3\x52\x50\xfb\x82\x7c\xb0\xd2\x70\x9a\x37\xf8\x8c\x98\x9b\x57\xf9\x73\x5a\xb2\x50\x7b\x4d\xd8\xe3\xa5\x1c\x9f\x50\x37\x1b\x1d\xc9\x8e\xf1\x52\xa4\xe4\xe9\xb1\x56\x45\xfa\x6a\x93\x11\x6d\x85\x96\xd5\xa0\x74\x72\x9b\xc6\xfc\x3d\xcf\x90\x22\xb2\xb2\x9a\xf1\xd3\x89\xf0\x38\xf2\x06\x95\xa9\x77\xec\x91\x17\x49\xb7\x95\x23\xa6\xd1\x51\x65\xa4\x1b\x8a\x71\xd8\x7b\x51\x5a\xe4\x62\x79\x3c\xfe\x60\xd0\x7b\x72\x88\x3c\x0f\xbe\xdf\xef\xc3\x72\xbe\xfc\x14\xe1\x92\xef\xe6\xa9\xc3\x8a\x96\x04\x79\x5f\xd9\x4f\xb9\x4a\x19\x84\x42\xef\xb7\xa3\x4d\xca\x6f\x08\xcd\xde\x1f\x86\x38\x51\x8e\x44\x56\x2f\x91\xc7\xcd\x2a\x39\x44\x3d\x4f\xef\xfe\x6e\xf4\x04\x51\xd3\x93\x70\x3f\x5a\xf5\x28\xf1\x9d\x5b\xca\xdd\x67\xaa\x77\x48\x5b\x5c\x63\x00\x4e\x7d\x95\xd5\xdc\xd2\x08\xc0\xbe\x51\x0a\xb7\xe3\x1c\x80\xd0\x4d\xa9\xd3\x8c\xd9\x00\xd2\xd1\x52\x5f\x0f\x32\xfc\x8b\x83\xd0\x53\x38\x7a\x0a\x05\x60\xa4\x86\x42\x9f\xd7\x00\xb0\x32\x54\x63\xe1\x96\x06\xb0\x26\xea\xb0\x88\x24\xaf\xf7\xe5\x38\x5b\xa7\x5b\xf0\xaa\x3e\x43\x86\xad\x3d\x1c\x45\x0c\x0d\xd6\xfd\x28\x1a\x66\x10\xeb\xe8\xbe\x81\xd2\x69\xb2\x35\x4b\xdf\x47\x91\x72\x48\x9f\x50\x39\x13\xc4\x41\x2e\xd7\x89\x6a\x39\x19\xfa\x84\x7c\x54\xf3\x45\xb7\x57\x64\x26\x69\x50\x5d\xf3\xd9\xf1\x68\x23\x92\x2d\xfa\xec\x27\xe1\xd8\x54\xe2\x63\xe5\xa6\xc5\xf8\x04\xe2\xba\x07\x04\x51\xdc\x84\xe3\x0e\x1f\xc7\x05\x29\x64\xe2\x4f\x05\x51\xe7\x0e\x29\x7e\xc7\x7b\x05\x6d\xfd\x66\xad\x1c\x87\x8f\x0f\x52\x7d\x8f\x41\xa9\xe2\xc7\x02\x5a\x46\x98\x54\x7c\x08\x26\x7e\x16\x7f\xf6\xe1\x74\x3f\x55\xdb\x4b\x94\xf3\xaa\xec\x50\x55\x2f\x21\xda\x7b\x5d\xb8\xbd\x4d\xed\x35\x69\x93\xeb\x67\x00\x96\x06\x69\xfa\xcd\x3f\x00\x38\x16\x24\x0f\xee\x78\xf0\x6f\x0e\x42\x8a\x7c\xd0\xf0\xbf\x3d\x31\xa6\xad\x4a\x52\x6c\x7d\x00\xd6\xea\xaa\x77\xb9\xd5\x00\xec\xb5\x35\x8b\x84\x2f\xaf\xf7\xe5\x18\x39\xb0\x99\x0d\xab\xd7\x21\x25\x76\x81\x76\xbb\x4d\x76\x51\xc1\x46\xfa\xca\x39\xbb\x5d\xd4\x6d\x96\xf2\x51\x18\xaf\x7d\x14\x5f\x53\xba\x2c\x4d\x3f\x3c\xf9\x96\xa1\x69\xa5\x70\x68\xe3\x3a\x0f\x63\xa7\x2d\xd2\xfd\x21\x8e\x42\x32\x57\xaf\x7f\x71\x34\x2e\x82\x98\xac\x4a\xf7\xa5\x27\xd9\x82\xe8\xae\x3c\xb4\x5c\x9a\xcc\x4b\x44\x94\xf2\x30\xfd\xf1\x4a\xb4\xeb\xb1\xd8\xa7\x94\x81\x53\x8d\xe0\xa0\xf9\x50\xde\xdb\xa8\xe4\xe1\x59\x42\xe5\xd6\xfb\x70\x4e\xaa\xd9\xe1\x6f\x04\x8b\x3e\x34\x57\xbb\x4f\xe0\x0c\xf0\xa2\x71\x30\x9d\x69\xea\xa1\x44\xf6\x2b\xb5\xb7\x64\xb4\xb6\x13\x2f\x78\xab\x36\xed\xd4\x1c\x22\x0e\xbb\x2f\x03\x9c\xc9\x92\xfa\xb1\x95\x1f\x80\xeb\x95\x84\x1d\xfd\x5f\xbf\x38\x08\xd9\x18\x89\x4d\xfb\x9f\x03\xa8\x79\x4a\x6f\x3e\x9a\x05\x60\x70\x48\xee\xdd\xa9\x5b\x00\x96\x9b\x15\x84\xd8\x8e\x02\xd8\x2d\x28\x2f\x72\x06\x00\xb8\x30\x68\x32\x8a\x66\x02\xc1\x65\x58\xf7\xbc\x4c\x03\xa8\xb9\x84\x98\xea\x6a\x6e\x42\xfc\xec\x3b\xec\x52\xcd\x82\xd7\xfd\x28\xfd\x36\x4c\xe1\x2c\xde\xcf\xc8\x9f\xcd\xa3\x33\xff\x0a\x49\x26\x1f\x34\x4e\x2c\x9f\x88\x1a\x5d\xe7\x61\xde\x6a\x13\x7b\xd9\x93\x26\x89\xb1\x1a\xf7\x07\xc9\x29\xc6\xc4\xad\xaa\x9c\x63\x39\x69\x65\x84\x6c\x54\xe3\x4a\x4f\x46\x18\x8d\x87\xf9\x5f\x3e\x94\x75\x0e\xc6\x5f\xfd\x0b\x2e\x33\x32\x74\xbd\x0f\xe7\xbd\xe6\x41\x7c\x61\x88\xde\xdd\x27\x9a\x5f\x08\xe7\x02\x03\x69\x7d\x38\x34\x0e\xa6\xde\x4a\xe7\x1d\x71\x9f\x8f\x07\xc0\xe9\x41\x09\xb1\x2d\x79\x00\x3c\x83\xe2\xba\xf4\x4f\x01\xc4\x93\xc4\x87\x99\x9e\x03\x28\x92\xc5\xa7\x0e\x1e\x06\xd0\xfa\x22\x99\x74\x14\x03\x60\x3a\x2b\x3d\x79\x4a\x14\xc0\xa6\x58\x61\xe4\x42\x18\x80\xb3\x9f\xd2\xcd\xcb\xea\x00\x9e\x52\xaa\xcf\x84\x29\xeb\x5e\x10\x4b\xaf\x4d\x46\x97\x35\x0e\x20\x09\xae\x1d\xd6\xcc\xa6\xa4\x75\x3f\x8a\x87\x1d\x67\xa8\x86\xff\x16\xb2\xb9\x15\x4b\x9a\x45\xc4\x13\x52\x94\xa9\x7c\x39\x57\x3c\x6a\x9d\x87\xd9\xa9\xf3\xa6\x5f\x2d\xe3\x20\xa1\x41\x53\xee\xa5\x65\x66\x2e\x41\x56\xd5\x7b\x52\xfa\xea\x2e\xc2\x71\x15\xa3\x95\x03\x57\x35\x68\x3e\x94\xc5\x33\xa8\x09\x8c\x66\x92\xd4\x58\x01\xfa\x05\x66\x3c\x21\xee\xad\x9d\x5a\x30\xd6\x39\xae\xe6\xb9\x90\x66\x0c\x56\x3f\x7e\x7a\xe0\x93\xa6\x06\x4e\x39\x5a\xbd\xa7\x47\x2b\x07\xf7\x28\xf2\xc2\x7f\x38\x98\xb5\x3e\x1c\x1a\x07\x53\xfd\x5c\x7f\x13\x91\xce\xd7\x00\xe0\xcc\x09\xf1\xf3\x5b\x4a\x00\x04\x64\x44\xbf\xec\x96\x00\x10\x97\x10\x39\xc6\x58\x0f\xa0\x52\x24\x36\x75\x30\x06\x40\xa7\x5f\xe4\xcd\xa1\x67\x00\x16\xb2\x92\x0b\x2c\x42\x00\x8e\xe7\xe4\x9e\x5f\x90\x07\x70\xfd\xac\x90\x7c\xa9\x17\xc0\x3b\x03\xbd\x5b\xd8\x02\xc0\x9f\x4d\x6d\x51\xca\x05\x4c\x7c\xe9\x0d\x6a\x34\x6e\x23\xd6\x57\x58\x2d\x33\x2c\x52\xd7\xfd\x28\xdc\x0e\xc9\x41\xa2\x81\x0a\x64\x4e\xeb\x93\xa9\x66\x51\xa6\xa4\x63\x66\xfe\x65\x45\x49\x12\xc4\x13\x46\xc7\x5b\x9c\x32\x0c\x08\x9c\x7a\xd2\xfd\x31\x39\x0a\xf8\xfb\x9a\xcb\xa3\x62\xb9\xdf\xf1\x97\x54\xd3\xe7\x45\xf2\x07\xf0\x9d\x2a\x13\xcb\x49\x39\x41\xd8\x71\x15\xef\x15\xb7\xac\x5d\x34\x1f\xca\x87\x04\xf5\x1f\xab\xf5\x69\x9d\xc3\x35\x9a\x39\x18\x87\x94\x83\x4f\x08\x5a\x2c\x58\x93\x78\x12\xad\x0f\xa7\xd3\x48\xd7\x11\x77\x34\x96\xaf\xcd\x48\xcf\x1a\xd7\x10\x15\xd9\xe8\xad\x77\x07\xdf\x15\xf2\xbe\x8e\x59\xff\x1d\x7e\x29\xf8\x47\xcd\xbc\x7e\x28\xc1\x37\xa0\xa7\xe2\x80\x81\x0a\x71\xbb\xaf\x06\x00\x9b\x9d\xb8\xd4\x36\xdf\x5f\x1c\x04\xed\x3a\xa8\xd9\x8a\xf5\x1c\x52\x04\x30\xbc\x2e\x7a\xf0\x48\xcc\x7f\x7b\x62\xbc\x4a\xe5\x5c\x2f\xe9\x02\x04\x08\xa2\xa8\x22\x29\x00\x81\x65\xaa\x61\x92\xd5\x60\x12\x98\xa1\x37\xa4\xb9\x09\x49\xf4\xab\x32\x8b\x31\xcb\xa7\x32\x79\x56\x3b\x5a\x7a\x4c\x92\xaf\x3a\x77\x05\x1c\x09\xeb\x24\x15\xdb\xb6\x25\x1f\x8a\x1b\x22\x2a\x59\xee\x2b\xe9\x4a\xff\xb4\xce\xc3\xa0\xf5\xbd\x1e\x28\x14\x9e\xc1\x3d\xd1\xe2\x7f\xaf\x52\xf4\x88\xd6\x03\x83\x97\x40\x67\x2e\xbd\xcf\xbf\x3c\x37\xaa\x26\xb2\x7c\x3d\xe7\x07\xcd\x87\xf2\x3a\x5d\xf3\xfa\x6a\x4c\xfa\x6b\x9a\x0f\xa5\xef\xac\x6e\x1a\xa6\x24\x85\xa5\xeb\x92\x9e\x34\xd6\x39\xa1\x86\xc6\xc1\x34\xef\x31\xa4\xc7\x09\xc6\xea\xd7\x15\x18\xae\xe2\x5e\x44\x85\xd3\x38\x98\xf2\xa7\xc6\x3a\xf8\xfe\x50\xdf\x62\x16\x63\x3b\x42\x62\xc0\x67\x80\xf3\x38\x51\x89\x6d\xdf\x7e\x71\x10\xb2\x9c\x42\xa3\x7b\x7d\x01\x34\xba\x04\xa7\xf7\x7b\x01\x18\xdf\x15\x91\x3d\x12\x0c\x60\x17\x24\x1a\x7b\xf2\x3c\x80\xeb\x73\xa9\xbd\xe7\x1e\x00\xf8\x31\xc9\x3e\xe7\xac\x06\x08\xbe\xa8\x38\x2c\x28\x09\x10\xd1\x84\xde\x21\xfd\x08\xa2\x22\x4c\xb5\x6e\xa9\x59\x20\x49\xc1\xd3\x26\x17\xcd\xba\xa9\x5b\x7d\x05\xed\x35\x3c\xcb\xc8\xe2\xee\xae\xde\x7f\x45\x3a\x12\x97\x1c\xca\x12\xae\x26\xdf\x27\x18\x58\x73\x97\x58\xe6\x54\xe1\xbd\x4d\xcd\x6f\x7e\x2a\xdc\x8b\x4b\x35\x38\xfb\xb0\xb1\x64\x0a\x6b\xa8\xcd\xf5\x29\xb6\x32\x1a\x9b\xa0\xf6\x63\xc1\xb5\xfc\x31\x8d\x0b\x9a\xc8\xd5\x64\x59\xf2\x28\x62\xa0\xf9\x50\x9e\x7a\xeb\x8e\xad\x04\x64\x13\xfb\xfb\xf4\xad\x57\x96\xaf\x86\x75\xae\x1a\x18\x63\x0e\xa5\x91\xdb\x77\x1b\x34\x62\xb9\x92\xb8\x1b\x3b\x8d\x4c\xb0\xf7\xe3\xc7\xeb\x62\x8c\x6d\x70\x3b\xe3\x0a\xab\x46\x4c\x1a\x70\x31\x31\x66\xa5\x7e\xa6\xc7\xf1\xc6\xe1\x54\x1a\x07\x93\xe7\x6d\xda\x45\x30\x0a\x42\x03\x70\xb2\x0b\xf7\xef\x58\x02\x10\x3a\x23\xb4\x7f\xb7\x1e\x80\x7c\x8d\xd0\x86\xbd\xb9\x00\x9a\x39\xfc\x8f\xf6\x5d\x06\x30\x4f\x14\x42\x8e\x64\x02\x38\x24\x08\x4d\x1f\x57\x01\xb8\x32\x23\xaa\x77\xba\x05\x20\x68\x49\xca\xf2\xa2\x00\x40\x24\xbb\x1c\x4e\x60\x23\x40\x9c\xb0\xf2\xa0\xb4\x12\x24\xc7\xe9\x6a\xb0\xa9\x7e\x44\xd2\xa2\xb2\x0d\x15\xcc\x7a\xa8\xdb\x43\xce\x58\x93\x3d\x5f\xac\xfb\x51\x5c\x9c\xd9\x63\x47\xd3\x2f\xe3\x6f\xda\xfa\x16\x6d\x2c\xb0\xc0\x29\x99\x61\x5b\xa6\xca\xe9\xb0\xfe\x86\xc7\x07\xb2\x2a\xa9\x18\x7b\x6d\xe1\x6f\x55\x35\x1e\x18\x6b\x8d\xd0\xf9\xe7\xd7\x16\xe7\xf5\x35\x1e\x2f\x74\x97\x9b\x7c\x38\xaf\x13\xb1\x98\x5b\xda\x4c\xf3\xa1\x3c\xb8\x6c\x78\x7c\x39\xb4\x40\xac\x73\xc8\xa8\x6f\xc5\x25\xf7\x44\xbb\x9d\x31\x7a\xd5\x2e\xcb\xbc\x29\xda\x24\x1f\xc3\x9f\xce\x57\x6b\x68\x9a\x8c\x65\x4c\x4e\xaf\xf4\x35\x2b\xc4\x3e\x4a\x30\x2a\x7d\x6d\x7e\x08\x87\x8e\x7d\x59\x74\xd1\x7c\x37\x7e\x6f\xe4\x50\xae\xbb\xc5\x71\x7c\x78\x78\x52\x96\xbe\x85\x33\xe1\x74\xf0\x14\xc0\xe5\x4f\xc2\x5a\x3b\x4b\x01\x44\x14\x05\x55\x77\x7b\x00\xa0\x0e\x0a\x1c\xd9\x1b\x03\xa0\xa7\xc3\xf7\x7e\x5f\x27\x80\x65\xbe\x40\xe3\x61\x1e\x00\x97\x8f\x02\x81\xc7\x14\x01\x7c\x4f\x09\x8b\x9e\x3a\x04\x10\x46\x92\x38\xcb\x3e\x01\x10\x1f\x22\xd5\xcd\x13\x04\x90\x28\xaa\x7c\x40\xfa\x0d\x84\xa7\x6c\x56\xcb\x56\x1b\x43\x82\x12\x6d\xf5\xb7\x98\x23\x14\x62\xa4\xb3\xe5\x4b\xaf\x02\xd2\xb0\xbf\x93\xdb\x91\x18\x1c\x21\xca\x3d\x3f\x72\x7b\xf6\x08\xee\x9d\xfd\x6a\xfe\x42\xc9\x17\xac\xb1\x45\x50\x4b\x7b\x35\x1a\xb3\xd1\xf0\xe1\xb3\x9b\x75\xfb\x56\x16\x75\x1c\xc7\xb5\x1b\x84\x68\x3c\xcc\x57\xd0\x79\xfd\x23\xbb\x7a\x84\xe6\x43\x79\x88\x35\xaa\x5d\x6c\x2f\x4b\xfc\xd3\x87\xd2\xa8\x63\xce\xb3\xf2\x2c\xc7\xe4\xfa\x61\x8b\xdd\xab\xa3\x99\x8a\xe5\xa3\x96\xd7\x31\x4e\xe9\x74\xc5\x93\x56\xdb\xb1\xe7\x92\xef\xe7\x79\x5b\xd5\xe3\xe8\xe3\x03\x73\x5c\xad\x78\x70\x1d\xd1\x94\x8c\x2c\xab\x5a\x7c\x58\xf8\x50\x5a\x88\xd5\x1b\xfc\xab\xd0\x25\x00\xae\xa3\x82\x0a\x3b\xcd\x7f\xe5\xff\x68\x75\xde\x77\x8c\x15\x00\x06\x11\x3c\x8f\x99\x1e\x02\xd8\x0a\xf2\x75\x1f\x4a\xfc\x6f\x4f\x4c\xf4\x47\x11\x36\x36\xdb\x5f\x3d\x31\x99\xa7\xe5\x66\x25\x2a\xa0\x3a\xeb\xa2\x8a\x00\x7a\x1f\x92\x93\x29\xa3\xed\x62\xe6\x4d\xdd\x95\x6c\x68\x2a\xe0\xf9\x95\x64\x19\xda\xea\x72\x3e\xc1\x04\xff\xdc\x9b\x2f\x78\x7b\xfe\x07\xec\x84\x33\x57\x8e\x7f\x65\xca\x3a\x0f\x93\x6b\x9c\xff\x2c\xad\x29\x9c\xd6\x8b\x33\xcd\xa4\xdb\x38\xeb\xd8\x68\x3e\xfa\xd4\xb0\x66\xae\xbf\xfe\xfe\x23\x8c\xa9\xee\x8f\x6d\xd7\xf1\xeb\x3e\x94\x3a\x0b\x8d\x25\xde\xd2\xe1\x1b\xe5\x56\x71\x4b\x73\xc5\x8d\x35\xaf\xac\x2e\xac\x24\xe4\xde\x2b\x3f\x69\xed\xb1\x1a\x79\x75\x4b\xd1\x19\x1b\x11\x8c\x66\x7a\x53\x6e\xa4\xcd\x7b\xec\x89\x94\x4b\x99\x23\x76\x62\xd8\xb0\xa4\xb0\x34\x92\xdd\x6e\x9c\x64\xdc\x40\xea\x31\x5b\x47\x1c\x3e\x8a\x92\xe0\x69\xa7\x85\x8f\x0d\x5f\x04\xe0\xad\xe3\x9f\xd9\x75\x07\x40\x8a\x9b\xef\xcd\xee\x00\x00\x55\x03\xee\x67\x7b\x72\x01\x8c\xc7\xb8\x0d\x99\xa2\x01\xec\xb3\x78\xfe\x3a\x30\x0c\xe0\x9b\xca\x1b\x70\x6c\x37\x40\xc4\x09\x7e\x65\x16\x46\x80\x04\x41\x81\xdc\xb3\x97\xff\xd5\x13\xb3\x5b\x7a\x42\x2c\x0b\x1e\x14\xb0\x28\x4e\x2a\x47\x21\x5d\x05\x86\xea\x1d\x26\x9c\xd4\x43\x19\x88\x51\x97\xa7\x31\xe9\x6a\x9c\xbc\x7d\x44\x1c\x19\xb7\xe4\xef\xe4\xe7\x5f\x62\x88\x79\xe2\xfa\xed\x6a\xe7\x75\xbf\x15\x57\x5b\x8d\x9b\xca\x37\xff\x5a\xea\x37\x21\x0f\x32\xb4\x55\x2e\x29\xe8\x5d\x9a\xa4\xb4\x5f\xfa\xa8\x6c\x54\x36\xfd\xb9\x65\xfa\x49\x89\xb9\xe8\xac\x76\x33\x4f\xb7\x86\xc5\x9b\x79\xf3\x7a\x31\x9a\x0f\xa5\xae\xd6\x8e\x79\x61\xa4\x6a\xac\xf2\xba\xfd\xee\x25\xe3\xb2\xbd\xc5\xaf\x1c\x78\x97\xf5\x8b\x1e\xe6\xa9\x3b\xb0\xad\x90\x73\x4a\xaf\xde\x73\xd0\x5e\xfd\x90\xc5\x90\x61\xec\xb0\x82\xb1\x4d\xef\x4d\x0e\x75\x1c\xc2\x72\xa4\xa8\x26\x30\x3b\xe2\xb1\x73\x09\xad\x34\x0e\x26\x6a\xde\x29\x00\xf7\x35\xfa\x21\x00\x6f\x0f\xdf\xa6\x5d\xd6\x00\xd2\xe7\xf8\x86\x76\xd7\x03\xa8\xdf\xe0\x39\xcc\xa8\x0c\x60\xce\xcc\x75\x9d\xe9\x1e\x80\xcb\x5e\x6e\xd4\x41\xe5\x5f\x3d\x31\x31\xf7\x79\xe5\x98\xb7\x00\xa4\x57\x0b\xec\x3a\xf7\x02\x20\xef\xb8\x50\xef\x45\x14\x40\xe9\x43\xc9\x42\xd1\x2b\xf0\xb6\xd2\x53\x2e\x4f\xf1\x03\xf2\xa0\xac\x59\x35\xd8\x38\x9f\xba\xab\x80\xa2\xef\xe3\x79\x97\xa4\x91\x21\x67\xdd\x92\x30\x87\x53\x0e\x95\xf0\xc9\x2c\xaf\x5b\x95\xf3\x7a\x95\x16\xd0\x98\xb6\x54\x6f\x4f\x6e\x2e\x6b\x9f\x59\xe0\x32\x43\xbf\xfc\x7a\x8f\x69\x4a\xc4\xf8\xc8\x84\x4a\x97\xec\x60\x83\xc5\xc4\xe4\xd0\x1d\xee\xee\x66\x9b\x6d\x33\xe8\x5b\xbc\xad\x4f\xed\xf6\xcc\xd9\x37\x1a\xfd\xe9\x43\x29\xda\xe5\xb4\xba\x44\x57\x9e\x9b\xb3\xd7\x85\x7b\x79\x67\xc9\x19\x1a\x07\x93\xf4\xd6\x35\x6d\x55\x36\x7b\x94\xc6\xc1\xc4\xf4\xb8\x7a\x63\x90\x54\xad\x48\x21\xd7\x74\xec\xeb\x44\x74\x84\x9e\xcb\x47\x9c\x45\x5c\x68\xf0\x94\xeb\x13\x1c\x35\x5a\x09\x80\x4f\x85\x37\x76\x97\x11\x80\xdc\x1d\x5e\xab\xdd\x75\x00\xda\x4f\xb8\x5e\x32\x1a\x03\x58\x8a\x5e\xee\x65\x8a\x03\x70\xd7\xbb\xdc\x72\xa0\x06\x20\x2c\x99\x6b\xfc\x68\x1b\x40\xe2\x09\xae\xc1\x13\x72\x00\x39\x3e\xdc\xdc\x2c\x1f\x7f\xf5\xc4\x54\xab\x8b\x45\x09\x8e\x01\xd4\x8e\x4b\x9b\xc8\x1d\x82\x8d\x75\xe3\xca\x3b\xf5\xe3\xa8\x5c\x55\x6d\xda\x41\xee\xf3\x24\xde\x7c\x45\x8b\xab\x89\x65\x38\xce\xf8\xe7\x1e\x8e\x15\x22\xcb\x9f\xfc\xf4\x13\xef\xdd\xca\x5e\xe8\x73\xea\x6d\x22\x76\xa5\xcd\xe9\x99\xd7\xbe\x5d\x7e\x40\xff\x72\xbf\x8d\xea\xb7\xd1\xde\x5b\x3d\xfb\x1d\x8c\x26\x70\x5d\x05\x2d\x5b\x9c\x37\x4f\x6f\x69\xbf\x75\x5d\xd5\xa5\x6c\xd6\xf8\x66\x5c\xa9\x9f\x9b\xd0\xbc\xe1\x8d\x82\x3c\x0b\xf7\xd0\x1f\x4b\xd7\x15\xb3\x0c\x3d\x36\x2e\x6a\x56\x1d\x4f\x35\xf4\xa8\x5c\xca\x28\x63\x48\x64\xf2\x68\x59\x9e\x2e\x44\xc5\x8e\x79\xd8\xaf\x32\xe4\xbc\x8a\x9e\xf3\xb0\x58\xad\xba\x6a\x47\xe3\x60\x42\xd2\x3d\xe9\xb1\x6a\xc9\x78\x1a\x07\xe3\xf7\xce\x23\x1d\xb7\x12\x9d\x09\x20\x7a\x92\x0f\x18\xbc\x00\x14\x4f\xf1\x32\xee\xd9\x00\xa0\xa7\xc6\x59\xbf\xc7\xef\x17\x17\x44\xf3\xa3\x84\x3f\xbe\xe8\x7a\xd0\xea\x5f\x3d\x31\x6b\x1c\x44\xd5\x1b\xde\x7d\x6c\xca\x00\x0d\xf4\x22\x87\x04\x2e\x00\xb4\x10\x24\x86\x65\xae\xc3\xe1\x5b\x6d\x0a\x42\xba\x43\x54\xf5\x66\x61\x75\x53\xb7\xd3\x24\x95\xea\x39\x63\x9b\x84\x62\xec\xcb\x2c\x70\xbe\x5d\x39\xba\x38\x1d\x72\x30\x46\xaa\xe3\xe9\x58\xd3\x95\x8a\x5a\x89\x3e\xc3\xd7\x15\x2e\x74\x83\x06\x8f\x8f\xf6\x0a\xbb\x6e\xfd\x32\xf0\xb0\xfd\x26\xb7\x3b\x69\xbc\xb7\xdb\xb6\xda\xc1\xd3\x73\x4a\xef\x4e\x51\xbe\x9f\xcf\xe5\x99\xad\x6d\xec\x57\x63\xbc\x77\xcf\x4d\x34\x5e\x48\xdf\xe6\xad\xf0\xc3\xa5\x8e\x2e\x61\xaf\xef\xa6\x85\xae\x6b\x7c\xd1\x2a\xbe\xf7\x16\x57\x2b\x2c\xa3\x6e\x79\x97\x2d\x87\x17\x2d\xd0\x38\x98\xc0\x68\x5f\xd4\xaa\x6b\xf6\x95\xff\x70\x30\xc3\x57\x04\x71\x7f\x25\xc4\xf8\x1c\xf5\xb2\xc2\x2d\x44\xd7\x01\x08\xdd\xe0\xb6\xde\x25\x08\x80\x62\xbf\xac\xc2\xe0\x0b\x60\x54\x7a\x99\x89\xb1\x04\xc0\x69\xeb\xa5\x14\xa6\x46\x00\xff\x6c\x8e\xe3\xfb\xc2\x01\xe2\x74\x2f\xc8\xfc\xfd\x7b\x22\xfb\x13\x7b\xd3\xe1\x22\x80\x0a\x14\x7b\xc2\xd1\x62\x80\x1b\xd8\x4b\x77\x59\x96\x00\xda\xf9\xf9\x02\x38\x85\x00\x3a\x53\xc5\x8c\xa5\x62\x40\xfb\x1e\x46\x26\x49\xb3\x84\x6a\xdd\x59\xa7\x32\xe6\x32\x40\xe2\x6b\x0b\xd6\x3b\x99\x70\x0d\xab\x53\x6d\x60\xb3\x54\xdd\xf1\x39\x39\x7d\x57\x30\xef\x5d\xc6\xc7\x43\xd1\x3b\x0a\x5f\x3f\x68\xe8\xbc\x1f\xb4\xda\x3b\xf4\xd4\xee\x06\x77\x80\xc6\xa7\x1d\x4f\xad\x0a\xef\x05\xdf\xff\xe6\xd5\x4f\xca\x1e\x0e\x12\xfb\xee\xd3\xf5\x3e\x85\x3b\xe8\xf9\x74\x67\xfb\xe1\x58\xb1\xe0\x95\xd9\xbe\x9b\xa6\x51\xb7\x83\xa2\xe7\xdf\xd5\x7f\x8b\xe0\x0e\x0c\x5b\x48\xb8\xb6\x1a\xda\x1b\x50\xb1\xf4\x57\x85\x44\xc8\x81\x80\x9d\xcb\xdc\x25\x2c\x81\x11\x01\x1e\x2b\xf1\xf9\x87\x02\x6e\xf8\x2e\xae\x36\x5f\x35\xf4\xcb\xf7\xf3\xc5\xe4\xa4\x5b\xf9\xb4\xf8\xa5\x60\xfd\x93\x85\xbd\x31\xbe\xde\x38\xa6\x04\x91\x2b\x29\x3e\x63\xb8\xe7\x31\x96\x00\x62\x95\xdc\xfb\x77\x8d\x00\xa8\xd6\x5c\x66\xdd\xcd\x00\x60\x9e\x7e\x21\x83\xa1\x07\xc0\x2d\x8d\x83\x7b\x6f\x0d\x40\x28\x3d\xeb\x13\xc6\x64\x80\x14\xcf\xb3\x5f\x19\xc9\x00\x45\xc9\x67\xf3\x99\x6a\x00\xea\xd2\xcf\xb6\xed\xb7\xfe\xd5\x8f\xd2\x1d\xcb\xcd\xc5\xce\x01\xf0\x98\x51\xd0\x57\x98\x09\x52\x06\xb9\x24\xac\x55\x95\xa8\x2f\x9e\xf3\x2b\x54\xda\xf3\x93\x22\x1e\x33\xaa\xaf\xc4\xc6\x4e\xf3\x75\x98\x9a\xc7\x55\x1e\x7b\xae\x5f\x2b\xe6\xdd\xd7\x7e\xe1\xa6\x75\x5e\x77\xda\xd1\x87\xc2\xa5\x0c\xe9\x23\xb7\xcc\x9f\xcb\x65\x0a\x26\x7d\x78\x47\x1c\xfc\x9a\x74\x30\xf1\xdb\x57\x93\x87\x33\xd1\xdf\x12\x35\xbf\xa7\x77\x3d\x8c\xb8\x19\x6f\x33\x7d\xbf\xfd\x48\xf8\xc5\x98\x23\x73\xfb\x9b\xe3\x83\x27\x63\x72\x7f\x70\xd6\x8d\x05\x56\x44\x1f\x5d\xbc\x50\xb5\xe8\xff\x30\x1a\xbd\x24\x5f\xae\xf8\x3f\xfb\x70\x1c\xc3\xfc\xb1\xc7\x52\x56\x3d\xbd\x43\x51\xd8\xd1\x44\x47\x0f\xc9\x90\x57\xb8\xc0\xb8\x83\xee\x7f\x85\x1e\xc2\x61\xa2\x63\x01\x64\x4d\xb8\x58\xe9\xcb\x00\x34\x9d\x2f\xda\x33\x9c\x00\xb0\x42\xb1\x12\xe9\x1d\x00\xbc\x5c\xd8\x2e\xee\x61\x00\x88\x71\xdf\xb2\xf4\x8f\x07\xa1\x86\x99\x61\x17\x11\xa0\x7a\x79\x2d\xef\x29\x39\xf9\x82\xe1\x3d\x40\x5f\xd6\xa9\x2a\xa6\xe3\x00\xcf\x25\x38\x72\x4e\xf5\x00\xbc\xe9\xe1\x11\xbe\xfc\x0c\xf0\x9f\x16\x45\xe4\xe4\x2b\x91\xa3\x63\x32\x32\x82\x56\x23\x98\xa0\xcf\xfb\x54\xce\x45\x3e\x7b\xe7\x31\xb8\x60\x54\x5c\xf4\xb1\xab\xb3\xb7\xc0\xad\xbf\xb9\xab\x8c\xb9\x75\x3c\xce\xb7\x67\x63\xaa\x6a\x23\xb6\x5e\xf3\x51\x4f\xf8\xf1\xfa\xdc\xf7\xdd\x4f\xcb\x83\xee\x56\xf9\x8f\x3d\xeb\x0d\x0c\x38\x59\x6a\x37\x39\xdc\x31\xed\x77\xad\x40\x62\xe6\xe9\x2d\xf3\xff\x78\x40\xe6\xd2\x26\x16\x1f\x57\x74\x7a\x9d\x4c\xa3\x5f\x66\x2b\xd9\xec\xc1\x9d\x1a\xb2\xe2\x9d\x7f\xd6\x43\x23\x71\x6e\x55\x3b\xbb\xd9\x8d\x3d\x89\x1e\xe3\x91\xfe\xc9\x6d\x63\x5c\x13\x56\x2d\xf9\x8b\x4b\x40\xdc\x65\xdc\xd9\xf8\xdb\x4e\x8f\x63\xe6\xf0\xe7\xa2\xb4\x9d\x5e\xc7\x7c\xc6\x9f\x89\xb2\x02\x90\x0f\xbf\xe4\xb5\x2b\x1f\xc0\xe0\xc4\xf9\x13\xbb\x8a\x01\x1c\xde\x9d\xe1\xdc\x59\xff\xab\x17\x24\x69\x2d\xd7\xa4\xe5\x1c\x4d\x9b\xe9\x8c\xff\x9e\xbd\x6b\xef\xfb\x47\xe2\xe8\x6e\xff\x93\x7f\xce\x9e\x96\x65\x02\x80\x99\xb3\x17\xd3\xce\xb2\x02\x60\xbe\x0b\x6e\x91\x10\x43\xd2\x29\xac\x12\xb1\xc6\xde\x93\x7b\x96\xfc\x95\xea\x03\x29\x4f\x2b\xbe\x5f\xd1\x7b\x7b\x35\xac\x31\xe5\x7d\xbf\xe3\xad\xeb\x1f\x33\x6a\x86\xe2\xc2\x57\xee\x7c\x0e\xf7\x7f\xbe\xf1\xda\x8d\x6e\x4d\xcf\xce\x27\xf7\x5e\xaf\xf4\x9f\x70\xed\xeb\x39\x3e\x31\xdf\x35\xe4\xea\xd7\x66\x3a\x7d\xb7\xed\xb8\x4b\x78\xd3\xbd\x39\xa5\xa6\x1d\xae\x16\x35\x5c\x3f\xc4\x6a\x89\x2e\xe9\x95\x9a\x0b\xd8\xaa\x49\xe7\x90\xd2\x47\x4b\xf5\xa5\x4a\xce\x9f\x0b\xf7\x2d\xdf\x2c\xbc\xeb\xb4\x25\xbf\x63\xf5\x4c\xce\x01\xc7\xb2\x1c\x3d\x0c\x7b\xc6\x63\x87\xc0\xab\x66\x58\x81\x94\xbf\x1c\x7c\x33\xec\xb1\x1f\x13\x16\xd7\xf9\x8f\x0b\xa9\x97\xf0\xb1\xe1\x64\xdb\xae\x94\x04\xfc\x70\x98\x32\x80\x72\x35\xdb\xc7\x1d\x86\x00\xa6\xf6\x67\xb5\x76\x50\x01\x5c\x1f\x9f\xca\xda\x79\xf0\x97\x0f\xe3\xea\x25\xba\xdf\xbe\x7b\xa6\x79\xbf\x69\xf9\xf7\x97\x4d\x3f\x7d\x18\x2b\xda\x3b\xca\x7f\xbe\xf7\x67\x2b\x3d\x74\x83\xc2\x80\x60\x04\x4e\x8b\xb2\x4f\xaf\x50\x5a\x25\xee\xe9\x6f\x7b\xa5\x46\x1c\x56\xba\xe3\xf9\xa0\xab\x0f\x27\xac\xcb\x95\x30\x5a\xa1\xb7\xdc\x6d\xb7\xb5\xf4\x44\xcc\xc0\x6c\x62\x50\x64\xd3\x84\x8f\xe5\x2c\xba\xec\x76\x5b\xbd\xdd\xe4\xd4\xc0\x20\xc3\xdd\x5d\x96\xbc\x9f\x28\x53\xee\xed\x3e\x56\x31\x83\x30\x2b\xd5\xec\x46\xf3\x5f\x58\x67\xde\x8d\x5d\xdc\x54\xf9\xd4\x7a\xe5\x96\xce\x52\x41\x49\xbf\xf5\x4a\xc3\xd0\x32\xbe\x80\xce\xba\xba\x36\x76\x95\x2d\xdb\xc1\xba\xa9\xfa\xd6\x2a\x92\x41\xb5\x1e\x2f\xa7\x60\x9a\x53\x11\xab\x37\xa5\x99\xd8\xae\xc4\x1d\xd6\xbc\x45\xa7\x70\xa2\x71\x15\x56\x06\x05\x71\xb8\xa5\xa8\x69\xcb\x85\x3c\x2d\x7c\x74\x78\xa3\x45\x59\x8e\x1b\xc1\x3c\x28\x03\x40\xad\xfd\xec\xd2\xf6\x20\x00\x1b\xc2\x29\xa1\xed\xef\x7e\xe5\xbe\x49\xcd\xbf\xdf\x07\xb4\xdc\xf3\xd1\x6e\xba\xdf\xbe\xff\x5e\x3c\x42\xcb\x3d\xb6\xec\xa6\xa3\x23\xee\x03\x60\x23\x1f\x79\x36\x5d\x00\x3c\x7c\xb9\x02\xef\xdf\xc8\x53\x6d\x24\xaa\x35\xbc\xfb\xfc\xc9\xf4\xca\x9f\x1c\x55\x1a\x5a\x08\xfa\x7a\xae\xa1\x45\x39\xb2\xd8\x5d\x76\x17\x32\xba\x43\xc3\x97\xb5\xfc\x51\xe5\xd9\x5e\x87\x96\xce\x64\x3b\x57\x5b\xda\x7d\x5f\x48\x6e\x4f\xaa\xf5\x36\x7a\x3d\x5f\xff\x3d\xf1\xc6\xa4\xe1\x9e\xa9\xc8\xf9\xc7\xd7\x2d\x8c\xb6\xbd\x8b\x5f\xbc\x5c\xde\x62\x14\x35\xf8\x6d\x09\x57\xb4\xc7\x18\xf5\xf0\xcb\x8a\x6e\xae\x96\x89\xed\xbd\xd6\x55\x95\xac\x61\x93\xa1\xdb\xcf\x30\xe2\xe9\x1b\x4d\x26\x5b\x6a\xb1\x5c\x49\xaf\x4c\x1c\x9a\x6e\xe3\x36\xc4\xcd\x9b\x24\xd7\x75\xe1\x5e\x44\x7d\xa7\x79\x2f\x4c\xa5\xab\xf6\xe2\x73\xc2\x7a\x4c\x22\xca\xb7\x10\x6c\x82\xe8\x4c\x4e\x96\xb4\x11\xc6\xfd\xc6\x01\xf4\xfb\x4e\x09\x6c\x73\x06\xb0\x0f\xda\xf8\xcf\x39\xf0\xff\xb5\x0f\x63\xf6\xfc\xbf\x39\x10\x6c\x24\xc0\x56\x29\x3a\xba\xa9\x52\x00\x36\xb6\xa3\xfc\x6f\x16\x80\x9f\x5f\x54\xa0\xec\x11\x8a\x3a\x23\xb9\x53\x65\xe7\xad\x76\x0a\x0b\x2a\xc7\x22\xa5\xec\x0b\x49\x50\xaf\xc8\x4b\x2f\xd9\x0d\x3f\x60\x2b\x12\x55\xed\xff\x10\x2b\xe4\x23\x93\x11\xe7\xc6\x82\x39\x98\xe6\x9d\x13\x64\x1b\xb0\xd2\x57\xfb\xac\x50\xd8\xf8\xc9\xf2\xcb\xa7\xcd\xc5\xa6\xda\xb7\x96\x4f\x2c\x7e\x29\x26\x68\xed\x5f\xb6\x5e\x36\xc9\x8b\xd0\xe1\xf8\x56\xb5\x62\x99\x1d\xae\xab\xf5\x96\x7b\x55\x30\xb3\x42\x87\x32\x78\x1b\xb3\x98\x64\xa7\xbb\xfd\x71\x21\x76\x32\x16\xd1\x1b\xec\xf9\x8a\x3b\x1e\x6b\xa8\x17\xd4\xc5\x88\xdf\x15\x91\xae\x1f\x71\x5b\x0b\x2f\x15\xde\xa0\xef\x74\x6b\x0a\x3f\x18\x52\xa0\xd7\xd2\xec\x42\x28\xf6\xef\x34\x38\x71\xe3\x38\xa1\x30\x60\x87\xc1\xb1\xeb\xaa\x44\x16\x9f\x01\x00\x8b\xb9\x13\x31\x5b\xe6\x00\xae\x24\xaf\xe5\xff\x43\x6b\x1c\xc8\x9a\x1f\xa7\xc3\xf6\xf7\x7d\x30\x99\xbb\xb6\xfe\xc0\x7f\xe7\xbf\xe3\xaa\x00\x1b\xe2\xe9\xe8\xde\x46\x01\xb0\x9d\x3e\x5a\x31\x10\x07\xa1\x7c\x92\xdc\x09\xb7\x5d\x11\x05\xa9\x7d\x0a\x98\x9a\xdb\x94\x7b\x2a\x6f\x8c\xe9\xb3\xe7\xc9\x55\x7a\xda\x76\xd4\x68\x11\x62\xbf\xcd\x26\xdf\xcf\xeb\xfd\x17\xae\xf8\x2d\xf1\x42\xf1\x28\x9b\x3d\x38\xd9\x62\xe9\xa4\x67\xc6\x8a\xd8\x27\x77\x34\x53\xb6\xe8\xb0\x63\xae\xbd\x2b\x4e\xbf\xa1\xbe\x1f\x53\xb4\x9a\x99\x26\xa2\x9a\x80\xed\xc4\xf4\x26\xb4\xab\xbe\x9e\x1f\xc7\x96\xc4\xee\x54\xb3\xfe\x66\x8e\xbb\x16\x61\xa2\x11\x3b\x9a\x86\x6b\x89\x78\xad\xe1\x33\x6c\x83\x77\x0c\x3d\xa1\x19\xfb\xc4\x0c\x7f\x2f\xb8\x8a\xd6\xfb\xa1\xf9\xa5\x7b\x85\xd0\xed\x3b\xa9\xd9\xd2\x59\x44\xd4\xb9\x22\xa0\xf5\xe2\xb6\x24\xd1\xe2\x0a\xab\xd6\xc1\x56\x4e\x12\x9d\xdb\x4b\x00\xeb\x9e\x9f\xeb\xa2\xdd\x07\x79\xba\xbf\x73\x20\x03\x6a\x6b\xe7\xc0\x5a\xfe\x47\xae\xfa\x7b\x12\xbf\xff\x5c\xff\x77\x86\xb5\xfc\x77\x2d\x07\xe9\x67\x03\xd8\x49\xa0\xa3\xbb\xcb\x0b\xad\xbc\x79\x97\x50\xf5\xef\x91\x27\x92\x8a\x92\x3d\x45\xaf\xa9\x85\x2a\x82\x9a\x65\xc9\xea\x14\x36\x03\x11\xab\xb4\xe0\x51\x32\x8f\xd5\x8c\x73\x17\x8d\x7f\xb0\xd7\x22\x26\x46\x12\xfd\xef\x58\x1e\x21\xe0\xb3\x39\x83\xe5\x8c\x34\x08\x76\xf5\xd2\xa1\x54\xed\x65\xfc\x64\xff\x52\xf8\x3d\x75\x21\xfc\xd1\x2f\x81\x51\xad\x2a\xdb\xf1\x3e\xb8\xec\x70\x51\x94\x14\x9e\x80\x67\x0e\xe1\x50\xfe\x8a\x51\xc5\xdf\x0a\xdc\x8c\x9a\x9c\x2e\x24\x30\xfa\xa7\xab\x68\x7f\x35\x26\x64\xfb\xbc\x52\x89\x7a\xab\x4f\x14\xf1\xda\x81\xbe\x32\x12\x4e\xd4\xf1\xec\x42\x17\x3c\x9b\x22\x3e\x71\x7b\x85\xd6\x78\xfc\x88\xc4\xe5\xb2\x01\x1d\xf4\x80\x9f\x14\xeb\xd8\xac\xb6\xef\xfe\x53\x92\xb3\xd3\x04\x80\x57\xe2\xef\xf7\x01\x8d\x03\xe9\x5e\xe3\x60\x68\xdf\xbf\xff\xf4\xbf\xff\xd9\x87\x32\xba\x96\x7b\x3d\x88\x00\xf8\xfb\xb9\x71\x77\x1c\x80\xb5\xfa\x70\x50\xc3\x05\x98\xe2\x79\x7b\x7e\xb0\x4c\x0d\x0e\x4a\xd6\x88\x5e\xcc\xc8\x45\x6c\x51\x9b\x15\x1d\xa3\x33\xa8\x72\x7a\x1c\x7a\xaf\xfc\xf6\x50\x64\x2c\x8d\x2c\x97\x9d\xb7\x93\x1d\x5d\x17\x1d\x67\x6c\xcd\xc9\x9b\x83\xeb\x5d\x83\xcc\x33\x49\xed\xc9\x28\xf7\x7e\xc3\x61\x92\x62\xc9\x2d\xaf\x78\xed\x9b\xc4\x99\xd6\x6a\x6f\x61\xb5\x4d\xc4\xb7\xcf\xd0\x57\x0c\x50\xc1\x44\x9f\xf1\x03\xde\xe5\xff\xe9\xbd\x58\xe3\x1f\x14\x0e\xad\x9c\x21\x1d\x77\x24\xaf\xfb\x1e\xfe\xe0\x1e\x94\xf8\x47\xbd\x48\xaf\xec\x8e\x28\x25\x0d\x36\x93\xcf\x5b\xf7\x2a\xbd\x7c\xfa\x98\xac\x6d\x95\xf2\x5f\x0e\xa4\x7d\xed\x79\x40\xeb\x03\x59\xf3\x02\xd5\xfc\xfe\xfd\x37\xcd\x03\x41\xfb\xfe\xb9\x0b\x03\x70\xb4\x7a\x7b\x46\x23\x19\xe0\x1c\xcf\x01\xbb\x0a\x32\x10\x79\x43\xd9\x78\xb2\xdf\x40\xa0\x04\x2f\xef\x87\x04\x6b\xe4\xa9\x72\x91\xb4\x63\xf0\x49\x2a\x59\xd7\x44\x6d\x8b\x87\x2b\xf5\x90\x85\x99\xe1\x76\x1a\xff\x60\x55\x41\x61\xf1\x7f\x64\xed\x67\xba\x97\x72\x32\x26\xcc\x3a\xc2\x40\x8e\x5c\x9f\x23\x67\xaf\xa4\xbd\x9f\x6c\x7c\xbd\xd1\x51\x4c\x4d\x8f\x2c\x7d\xd7\xd9\xf1\x94\x0a\x23\x69\xf6\xf9\x63\xa7\x69\xc5\x6c\xd2\xfd\x89\x77\x4e\x93\xf2\x3a\xa4\x61\xd2\x59\x47\x99\xff\x78\x1f\x7a\xc8\x2a\x64\x2f\xb3\x11\x99\x57\x2b\x47\xc8\x95\xa6\x31\x32\xc5\x73\x1d\xe4\x79\x63\x55\xd9\xc0\xf1\x5a\xf2\x77\x63\x9c\x0c\xf2\x39\x99\x22\x6b\xd0\x2e\x17\xfe\xe6\x26\x85\xc9\x68\xf5\x97\x0f\x84\x96\xff\xd3\xf6\xc1\x04\xf7\xbf\xf3\xef\xc5\xb5\xef\xd9\x3f\xe0\xd7\x7a\x10\xae\xff\xee\x81\xa0\xe5\xdf\x95\xd5\x00\xac\xbc\x07\x74\xf3\xa4\x00\x78\x83\xce\x4a\x24\x17\xc2\x3d\x71\x06\xce\xb3\x11\xb5\xc0\xa1\x14\x2d\xf2\xd1\xb7\x01\x49\xd5\x3e\x2e\x5f\xe4\x5c\x40\x7d\x6b\xba\xac\xde\x6d\xa3\x42\x55\x76\x88\xd6\xbb\x67\xde\x41\xdd\xef\x5d\x65\x18\x64\x0c\x94\x6f\x61\x31\xc6\x7d\x7a\x18\xca\x9d\x94\x15\x53\x6e\x2d\x7b\xca\xf5\x42\x07\x53\x0b\xb5\x14\x8a\x59\x7d\x91\x79\xbe\x8a\x00\x19\xb9\x97\x6c\x25\xa7\xf8\x91\x4c\x78\xf1\xd9\x32\x46\x5e\x82\xfc\x62\xfc\xb8\xe5\x8a\x2c\x2b\x79\x05\xf7\xd9\xfc\x99\xf4\x7b\x8a\x3d\x79\xd4\xd8\x7a\xdd\xf7\x90\x4c\x95\xa5\xf4\x6a\xd5\xfd\xc9\x3d\x48\x3e\xf9\x61\x4e\xf9\xa8\xb5\x5d\x2a\x74\x92\x9f\xf2\x5c\x6b\x01\xa0\x6c\xcd\x8f\x75\xbf\x92\xee\x37\x1e\x8c\x8a\xa2\xfb\x57\x0f\xc4\xe7\xb5\x9c\xf7\xf9\xda\xfa\x3b\xd7\x38\x80\xba\x96\xdf\xf3\xef\xfc\x8d\x00\x67\xb3\x99\x4e\xa7\x49\x01\xf0\x1c\x61\x26\xc7\x1c\x82\x1f\xa2\xcf\x2e\x58\x04\xba\x80\x97\x62\x2e\xbf\x86\xbb\x38\x6c\xd7\x74\x10\xf7\xb5\x6b\x41\xb4\x4d\xc2\x95\xde\x59\x7e\xa4\xbe\xb6\x5d\x54\x1f\x33\x35\xa7\xf6\x79\xd8\x68\x9e\x33\x48\xa1\xbe\x0c\xb4\xd6\x08\xd5\xcd\xa7\x66\xc6\x14\x68\x17\x68\x72\x52\xed\xae\x2a\xe9\x6a\xab\x0e\x53\xd5\xcb\x36\xeb\x2e\xa2\x2e\x52\x59\x9b\xdc\xf4\x28\x8a\x1f\x28\x4b\x5d\xdf\x0d\xaa\xe5\x5a\xa9\x74\xcf\xca\xf4\xcf\xca\x3c\xa7\x3c\xfd\x72\xd8\xc0\x47\x0a\x47\x59\x5d\x48\xd3\x53\x92\x7c\x40\xe5\xa2\xdc\xd0\x0e\xf8\x0f\xf7\xc0\x89\xa0\xa8\xef\x15\x86\x45\x73\xa8\x09\xc8\x5f\x72\xf3\x62\xa9\xd8\x45\x6a\x87\x92\x1c\xc0\xad\xd7\x74\xbf\xf1\xb1\xab\xff\xac\xe7\xcf\x3e\x98\xc1\x35\x0f\xca\xfd\xb5\xfd\xd1\x98\xb1\x96\x7f\xaf\xe5\xc1\x05\x8f\x01\x8e\x3c\xd8\x7a\x26\xf5\x30\x00\x33\x89\x9e\x3d\x8e\x0b\x80\xeb\xfb\x71\xff\x10\x77\x00\xd1\x08\xd6\x13\x5e\x24\xb8\x27\x1f\xc8\xe9\xe5\xf4\x1a\x1c\xd5\xc4\xf8\x67\xac\x4b\x91\xcf\x06\x69\x52\xdb\xff\xd3\xfb\x70\x1c\x09\xbd\xd2\xa6\xf0\x5d\xe7\x1c\x72\x3e\x4c\x4c\x65\x4e\x83\x1b\x39\x93\xb8\x0f\xbd\x07\x4d\xa5\xae\xe6\x72\xa9\xa1\x68\xfc\x83\x62\x3c\xb5\xb9\xc9\x48\x23\x52\x2e\x80\xda\xd7\x79\x42\x7d\x8b\x4c\x04\x35\xf3\x69\xb1\x46\x9e\x14\x37\xb5\xe9\xed\x73\xb5\x6b\x92\x12\xd4\xd4\x19\x19\xf5\x9a\x7f\x7a\x1e\xf8\x54\xbb\xd7\xfb\x2e\xd6\xf2\xfe\xf5\xdc\xdf\x10\x21\x20\x57\xc5\xbb\x7f\xed\x83\x19\xfc\x3f\xf3\xc1\xda\x39\x28\xfc\x3b\x07\xd4\xbb\xe6\xc7\x68\x91\x5c\xcb\xbf\x91\xb5\xfc\x7b\xcd\x7f\x10\xd7\x00\xf0\xf7\xef\xcf\x20\x22\xc0\x56\x7f\x3a\xba\xd0\x11\x80\xcb\xaa\x87\xef\xfb\x3e\x02\x10\x3d\x7d\x46\xcc\x8d\x09\xde\xcb\xad\x72\x58\xd9\x31\x40\xbe\x2a\x3d\xb7\xbf\xf9\x3e\x10\xd5\xdb\x20\x04\x46\xb6\xb0\xc3\x04\x11\xeb\xd2\x4f\x47\xe6\xec\x12\x25\x33\x74\x14\x91\x97\x1e\x49\xd2\xe9\x9a\x4f\x91\xa7\x7e\xc6\x32\x1c\x6a\xc2\x48\x7b\xe4\x3d\xd9\x18\x95\x97\xc8\xd5\xe4\xaf\xf2\x01\x4a\xf3\x48\x78\xee\x7d\x05\x55\x05\x2b\xc4\xa5\x22\x53\x71\x9f\xdc\x7e\x44\xa1\xa9\x41\xa9\x56\xe6\x24\x22\xd5\xa1\xaf\x14\x23\xe5\x8c\x9c\x7a\x54\xa0\x5c\x2c\xb1\x80\xec\x7b\x25\xa1\x3c\x2c\xd6\x83\xc8\x7d\x5b\x54\x58\x14\x7d\x86\x98\xcd\xbb\xc9\xfb\x8b\x06\x23\xfe\xc8\x2e\xb9\x68\x11\x6e\x64\x00\xb1\x90\x32\x15\xce\x43\x66\x91\x18\x89\x48\x80\xcf\x56\x74\xff\x87\x07\xe3\x4d\xdb\xda\x73\xc0\x71\x8d\x03\xdb\xfb\x73\x5e\xd3\x5d\xf3\x60\x8c\xfd\x9c\x49\x9b\x7f\xce\xd0\xf0\xb5\xa9\x0d\xc0\x6c\xbe\x93\xde\x67\x16\xe0\xc2\xee\xbd\x2c\x1e\xa9\x00\x42\x32\x27\xff\x72\xf8\x0c\x20\x63\x74\x8e\x6c\x15\x0f\x77\xd0\xe7\x38\x0d\x8d\x57\x20\x51\xcb\x9a\x87\x4b\xff\x33\xa8\x1a\xc9\x08\x9a\xe9\x9a\x81\x80\x15\x5e\xf8\xab\x66\x1a\xc8\x38\x79\x08\x1b\xd1\xf8\x07\xd5\x5d\x70\x20\xa8\x54\xfc\x38\xaa\x0f\x99\x8f\x1d\x95\x5c\xa6\xf1\x0f\x0a\x06\xc8\xfd\xfc\x51\x19\x1b\xd9\x79\xa4\xb7\x42\x4e\x7a\x4c\x86\x1d\xa9\xbe\xf1\x41\xf6\x92\x94\x2d\x92\x76\xe7\x8c\xdc\x1e\x09\x66\xa4\xbc\x4f\x58\x26\x56\x3c\x05\xf1\x18\x7c\x21\x47\x14\xed\x41\x92\x3f\x34\xca\xee\x13\xc9\x47\x2a\x67\x76\x49\xf7\x8b\x5c\x40\xda\x56\x7b\xa5\x66\x85\x0f\xc3\x66\xa4\x42\x8c\x4a\xe3\x60\x96\x0d\xff\xf0\x60\xfc\x0f\x0e\x28\x3f\xf8\x77\x0f\x46\xc4\xc8\xcf\xe9\xbd\xe6\xc3\x70\x98\x01\xf8\x4b\x81\x8e\xce\xed\x26\x00\x5b\xc0\xee\x2a\xc7\xdb\x00\x42\x27\x8e\x75\xda\x68\x01\x48\x6f\x3b\x5d\x6f\xda\x0a\x4b\x4a\xaf\xcf\x6f\xd5\x6b\x82\x67\xea\xca\x1c\x57\x74\xea\x21\x4b\xaf\x95\x7b\xbf\x56\x01\x44\x9b\x1d\xe1\xdd\xaf\x7e\x19\x92\x6d\xf9\x78\x16\xd5\x6c\x40\xcf\xbd\x54\x90\xa8\xb2\x05\x5c\x7d\x76\x0a\xf0\x28\x33\x82\x41\x48\x97\xd0\x76\x25\x4e\x60\x89\xdf\x2f\x26\x48\xe3\x1f\x64\x77\xc3\xc9\x7c\x01\xd1\x79\xe9\x3b\xb0\xbd\xdc\x4b\x9c\x57\xb2\x0d\xc1\xdd\xe8\x93\xd8\x25\x6e\x07\x0c\xad\x62\x62\xe7\x45\xdf\xc3\x96\xfb\x75\x62\x68\x91\x1c\xd8\x32\x40\x10\x3b\x2c\xdc\x8f\x60\x46\x4f\x8a\x6f\x17\xe6\x40\x96\xbe\x65\x89\x0b\x09\xe9\xc0\xae\x99\x0d\xa2\xa5\x34\x1f\x0e\xed\x1c\xfc\xff\xc7\x01\xa5\x6d\xfa\x39\xa3\xe3\x7f\x4e\x7f\xd6\x9f\xd3\x79\xf5\xe7\x34\xb7\x03\xa0\x63\xa4\xa3\x73\xc8\x05\x60\x75\xa2\x9f\xb5\x31\x01\xe0\x7f\x71\x78\xbf\x79\x11\x80\xc4\xea\xc9\xe7\x06\x6a\x00\xf2\x23\xa7\xbd\xb5\xc8\x80\x45\xa3\x58\x0d\x35\xee\xc2\xb0\xb6\x18\x7b\x85\x5a\x2b\x3c\x31\x12\xbf\xc8\x8f\x96\x80\x37\xa6\xf9\x1c\xbc\x2a\x1c\xd0\xe4\xc8\x78\x79\x0a\x95\x0d\x29\x9e\x1b\x79\x4d\x95\xba\x21\x30\x40\x85\x9f\x53\xbe\x06\xd2\x42\x87\x78\xbd\x64\xef\x40\x54\xec\x07\x3e\x1b\x19\x25\x70\x48\xf7\x15\x48\x90\xda\x0b\x0e\x79\x5e\x02\x9a\x92\x74\xa0\x5b\xb6\x4f\x30\x47\xe2\x2d\x1c\xaf\x4b\x16\xf5\x12\xad\x03\xd4\xcd\x56\xc1\x57\x22\x93\x70\xb1\xeb\xb6\x70\x8b\xf0\x34\x5c\xee\x9b\x13\x56\x15\x02\x38\x3b\xb8\x43\xf8\x8b\x60\x3a\x48\x8e\xfe\x10\x24\x02\x6c\x9c\x93\xac\xfb\x7b\x5f\x9c\x36\x97\x7d\xbf\x85\x00\xc0\x7e\x4d\xaa\x63\x87\x13\x80\x08\xab\xd4\xe8\xde\x22\x00\x69\x29\x99\xae\x83\x0d\x00\x2a\xda\x8a\xdc\x27\xdd\xfe\xc5\x83\x7c\x42\x63\x2f\x60\x01\x4c\xef\x68\x69\xf0\x8e\x02\x98\x37\x1b\xcc\x48\xf8\xc2\x4d\xf3\x3e\xb3\x78\x45\x5b\x90\xb2\xf0\xb1\x97\xd0\x8c\x47\xee\x99\x8d\x78\xbb\x1b\x3b\x23\x22\xc6\x59\x51\x0d\xd6\x85\xd4\x68\xc3\xd3\x99\xd5\x2e\x4d\xd4\x53\x3a\x83\x15\x3f\x3c\x9e\x52\xca\x35\x43\x5a\xca\x7d\x42\x29\xba\x6a\xb6\x3d\xad\x7e\x0f\xc9\x73\xe8\xdc\xe7\x6a\x41\x87\xc8\x1f\x95\x5f\x7c\xd8\x16\x88\x27\xfb\x28\x3a\xfc\x78\x1a\x12\x4a\x1e\x91\x2f\xc4\x5b\x06\x9e\xa0\xb8\xcb\xf9\x13\x14\xbc\xf3\x09\xed\x72\xaf\x08\xea\xde\x65\x4b\xc7\xe5\xc6\x88\x5b\x3c\x72\x26\xee\x2b\x2c\x13\x5e\x78\xe1\x3f\xf1\x2b\xd6\x12\xd9\x3d\xf7\xbf\x2a\x53\xaa\x26\x26\xb9\xef\x7d\xe1\xa4\xdc\x43\xac\x77\xab\x7d\x58\xa7\x72\x9c\x38\xe9\x5a\xdc\xcf\x8a\x5a\x26\x89\x39\xf3\xdc\xdf\xa2\x82\x23\x99\x3a\xe5\xdc\x61\x45\x0b\x93\xbe\xd8\xe1\x01\x36\x7a\x8b\xff\xd3\xb7\x4a\xe3\x41\xb8\xbe\x4a\x1d\xa0\x37\xfa\x17\x07\xf1\x55\xe6\xf1\xa1\xa1\x7f\xf1\x20\xb6\x4a\x61\x67\x0a\x00\x8c\xc8\x2a\xbc\x17\xae\x01\x58\x76\xab\x8f\xf1\x5e\x02\xb0\xc4\xeb\x7b\x48\xd0\xc1\x7d\x4b\xbc\xc9\x77\x85\x72\x60\xb2\x9a\xb5\xad\xd7\xc9\x43\x8a\x2d\x6e\x7b\x09\x99\x72\x23\xdb\x4c\x9d\x22\xa6\xec\xb8\xa9\x92\x46\x1f\x33\x78\xdd\x5f\x50\x5e\xe9\x3e\xa8\xd4\xf1\xfe\x8b\x72\x4e\xfb\xd4\x4d\x24\xf0\x12\x79\x44\xfd\x6a\xaf\x76\xb0\x1f\x39\x0e\xbd\x3a\x98\x15\xaa\x4f\xe6\x44\x69\x7e\xd1\x08\x77\x22\xe1\x14\x67\x17\x31\x11\x8e\xe4\x38\x85\x13\x38\x7c\x70\x26\x65\x9b\xbc\x28\xbe\xd1\x5f\x05\x63\x2d\x7f\x8d\x70\xd0\xd7\x74\xe6\xab\xc2\x0b\x82\x91\x4f\xf4\xd7\x4b\x4a\x0e\x04\x7b\x1f\xdc\x9b\x50\x65\x0e\x02\xce\x0b\x3b\xcc\xa1\x3c\x45\x54\xf1\x3c\xfb\x98\xa0\x62\x44\x74\xf4\x18\x7b\x20\x85\x3e\x47\xcc\x73\x5f\xea\xee\x45\x87\x10\xf1\xae\x99\x77\x67\x55\x37\x91\x94\x9d\xbd\xdb\x86\xd0\x54\xd2\xff\x8f\xb0\xb3\x8c\x8a\xb2\xfb\xfe\x3e\x8a\x82\x01\x8a\x85\x09\x88\x22\x18\x74\x77\x77\xd7\x0c\xdd\x0d\x43\x77\x77\x77\x48\x37\x52\x52\x0a\x02\x02\x0a\x18\x18\xa8\xa0\xa2\x22\x2a\x18\x20\x06\x4a\x33\x3d\xb3\x9f\xa5\x32\xa2\xf7\x7d\xff\x9e\xff\xab\xbd\x5c\xcb\x17\x9e\xed\x35\xe7\x5c\x33\xfb\x73\x3e\xdf\x71\x67\x57\x80\xed\x0b\xd2\xdf\x7f\xf4\x81\xc2\x41\x08\x9c\x91\xab\xd8\x75\x7c\xa3\x0f\x4a\xbe\x0a\x5b\x0f\x3d\xfd\x0f\x1e\xa4\x56\x53\x91\xf3\xf8\x1f\x79\x39\x9e\x88\x2c\x29\x0c\x34\x3a\xf5\x9a\xaf\xa8\x0b\xc1\x6e\x07\x4d\xfb\x78\x44\x03\x19\x65\xaf\xea\x55\x66\xfd\x85\x74\xd3\x3a\x3f\x9a\xdf\xb5\x82\x74\xc4\x3c\x3d\x1b\xe7\x83\x22\xc6\x1b\x67\x55\x4b\x06\xf1\x11\xb7\x19\x7a\x74\x30\x85\xc9\x13\x34\xf4\x4a\x6e\x89\x46\x7f\xc7\xd7\xe8\xd0\x3f\x6d\x4f\x40\xe2\xaf\x69\x32\xbd\x75\x8b\x5b\xc4\x8b\xa8\x39\xac\x9e\x4c\x1c\x5a\xe7\x60\x66\x08\x77\x94\xdb\x31\xba\xa1\x49\xf3\x95\x2a\x38\x4c\x77\xc8\x99\x0f\x93\x6a\x57\x31\xd3\x21\xb4\xaf\xe4\x34\xb4\x30\xf8\x10\x6e\x0a\x07\xf3\xb0\x58\x4b\x08\xdb\x1c\xf0\xe8\xb7\x0f\x46\x50\x7b\x14\x17\xe0\x63\xd8\x37\xaf\x13\x82\x6b\xf7\xc2\x52\x38\x98\x76\x19\xdd\x52\xbc\x1d\xca\x05\x60\xc7\x80\x34\xeb\xcf\x3e\x08\xc8\xb8\xd2\xdc\x03\x10\x24\xcb\xa4\xef\xaa\xdf\xe0\x20\xd4\x44\xe5\x1d\x0e\x37\x03\x18\x3e\x57\x50\x64\x2e\x05\x30\xed\x51\xf2\x3e\x49\x05\x60\x4b\xaf\x16\x7f\xb6\x6b\x23\x2f\xc7\x45\xda\x90\x46\xf2\x2b\x3c\x70\x3b\x60\xf2\x58\xa5\x19\xb6\xba\x1c\xb5\xa3\x41\xf6\x92\x4d\x1d\xf0\x1e\x3b\x6c\xba\x48\x19\xb6\x6b\x11\xac\x28\x12\xb1\xda\xea\x54\x16\x75\xa0\x21\xe1\xa3\xe9\xd3\x2a\x54\x04\x3d\xc1\x1f\xb1\xd4\x21\x12\xad\x82\x27\xea\x35\x0e\x65\xc7\x69\xe1\x0d\x75\x84\x9f\x85\x25\xa5\xe3\x99\x34\xb9\x67\x9c\x92\xa5\xff\xe9\x85\x59\x4d\x57\xed\x46\xdb\x47\x23\x3f\xeb\xab\x27\xa2\xf3\xa3\x45\xdf\xe6\x6b\xd4\x60\x68\x23\xbd\x5e\x64\x68\x62\x30\xbe\xe1\xad\x23\xda\xda\x06\x98\xb1\xb0\x3d\x43\x5b\x75\xde\x63\x75\x82\x6f\xfe\xe6\x60\xda\xf4\x0e\x63\xdf\x05\x34\x52\x7c\x30\x14\x0e\xa6\xb5\x42\xbf\x0d\x4f\xe7\xa9\x0f\xb0\xe3\xa3\x64\xd6\x8f\x3e\xb0\x1f\x96\x66\xa4\xf5\xdb\xe0\x20\x64\xae\x4b\xdf\xdd\x2f\x01\xa0\x41\x2f\xe9\xc1\xb8\x15\x00\x61\x21\x97\xc2\xa4\x0f\x60\x75\x4c\xd1\xfd\xe4\x04\x80\xa3\x9a\xea\x95\x73\x6f\x01\x50\x55\x9a\xbd\x82\x91\xbf\xf3\x72\x9e\x78\x32\x18\xbd\x57\x29\x82\x6d\xa8\x60\x1b\x73\xe4\x27\xf2\x09\x97\x93\xae\xc1\xf6\xde\x24\x05\xfb\xd1\x70\x16\x2f\x2b\xa2\x80\xcd\x62\xfa\xe6\xd0\x78\x42\xac\xb9\x70\x65\x5b\xb4\x0b\x3e\xd1\xe8\xdd\x15\xee\xa4\x02\xbc\x9e\xfe\xca\x10\x36\xd9\x1c\x57\xab\x33\xff\x22\x34\x5d\x14\xa7\xaf\xc9\x38\xc7\x96\xa1\xf9\x3b\x27\x69\xdd\x0b\xf3\x4d\x58\x23\x7d\xed\x64\x52\xf2\x87\x33\x9a\x15\x6b\x5f\xe2\xad\x26\xa8\xb4\x86\xd1\xc9\x31\x3d\x8f\xa5\x74\x14\xd1\x98\x68\xea\x7b\xa7\x74\x6f\x62\xcc\x22\xad\x6f\x05\xeb\xc9\x61\x46\xc3\xa9\xff\x97\x0f\xa6\xe5\x90\x61\x1c\x2e\xd1\x57\xb6\xa1\x0f\xe1\x83\x1b\xf4\xfe\x0a\xc0\xd4\x28\xb7\x89\x1a\x07\x70\x66\x8b\xe4\xbb\x6d\x19\x00\x42\x46\xe2\xe5\xf4\x0f\x00\xe4\xb6\x4a\x4d\xec\xdf\x06\xa0\x39\x23\xd1\xc5\xb8\x1b\xc0\x84\x5f\x66\x95\x09\x01\x60\xa3\x29\xfb\x85\x55\x04\xc0\x35\x4a\x99\xf6\x6c\x37\x80\xa7\x89\xfa\x6d\x01\xc4\xef\xbc\x9c\xdb\xbe\xcf\x91\x25\x6a\xfc\xb0\xd9\xeb\xa3\x55\xaa\x51\x37\x69\xc1\xad\xc0\x25\xdd\x89\x8b\xb4\xd7\x29\x27\x78\x87\x8f\x36\x61\xc5\x76\x34\x6d\x29\xfc\x29\xe1\x84\xc5\xc7\x72\x88\xcb\xc6\xcd\x9b\xa8\x74\xcc\xa7\xcd\xe3\xaa\x0d\x6e\xdd\xbd\x97\xb1\x0b\x3b\xab\xdb\xfa\xd2\x31\x9b\x80\xb5\xd3\xda\xfd\x2d\x32\x6f\x2b\xc5\x0b\xb3\x2a\xa6\xde\xb5\x9a\x97\x52\xfd\x99\x53\xd3\x61\xed\x60\xf2\xe1\x89\x32\x1d\xfe\x35\x54\x52\xde\xe3\x5b\xba\x2d\x6b\x6b\x09\x51\xc3\xb2\x7a\xd3\x68\xbd\xf8\xbd\x37\x3e\x19\xec\xc4\xec\x89\x8e\xfd\x5f\x3e\x98\x56\x1b\x44\x24\x76\x31\x50\xa1\x2e\xc6\xe8\x31\xee\x78\x40\x44\x6d\x21\x92\x80\x2b\xf0\xd5\x04\x60\xde\x23\x73\x65\x0b\x23\x00\xd7\xaa\xa4\xeb\x8e\x86\x7f\x73\x10\x94\x9c\x18\x53\x90\xdc\x71\xa4\xe0\xdf\x3c\x88\x9f\xbb\x0a\x3f\x1f\xcb\xef\xbc\x9c\xf1\x20\x17\x83\x19\x95\x77\x94\xdc\x20\xd2\x57\xcf\x59\xa7\x18\xa7\x9b\xc4\x6e\xd7\x49\x7f\x57\xff\xcf\x84\xcb\x0e\xe7\x93\x92\xa3\x0e\xe3\x2f\x58\x75\x94\x5d\x49\x0a\xc0\xbd\x33\x61\xba\x32\x98\x2e\x87\x25\x19\xbe\xbf\xfb\x2d\x47\x0e\xcb\xa9\x3b\xff\xfa\x65\xfe\xd9\x7f\xe6\x24\x7d\x3f\xa3\x65\xbc\xa2\x9e\x7d\xe0\x9d\x94\x0e\xd3\xaa\x74\xfa\xbd\xe7\x3b\xf4\x6c\x56\x2f\xa4\xdd\x78\xb0\x5f\x7f\x70\xad\x38\x69\xe8\xf6\x01\x43\xd7\xb5\x89\x44\x18\xd8\x6c\xf8\x10\x9d\x15\x97\xd1\x5d\x86\x54\xc6\x30\xc4\xa8\x5e\x46\x18\x51\x61\xee\x46\x44\x53\x7c\x30\x0d\x75\xc6\x8e\xd8\xf4\x10\xd1\x5a\x69\x63\x2d\x1c\x73\xc0\x85\x4a\x55\x13\x0f\x9c\x93\xdf\x02\xc0\xf1\x4c\x99\x2d\x5b\x39\x01\x38\x4d\xc4\x55\xb6\x57\x00\x88\x3d\x13\x1b\xda\xfd\xea\x0f\x0e\xc2\x5e\x3c\x81\xf1\x21\x80\x75\x86\x78\xdd\x51\x76\x00\x17\x01\x89\x06\xe6\x69\x00\x6f\x46\x39\x66\x8e\xbb\x00\x41\xf2\x8a\x4b\x3c\x0b\x00\xe1\xbc\xea\xef\x25\x72\x7e\xe7\xe5\x88\x85\xae\x19\x2f\x19\xb6\x92\xc6\xfd\x2b\x1c\xd8\x5c\x18\x88\xd9\xa8\xaf\x3e\x69\x81\x8a\x84\x5d\xce\xa8\x84\xbc\x78\x5b\x3c\xab\x35\xb9\xac\x2a\x4d\x00\xb7\xcb\xf4\xcd\x95\x88\x9c\x36\xec\x2e\xe4\xbe\xfb\x02\x05\x8f\x30\xfe\x7a\x36\x53\x07\x8a\xf7\x50\xf8\x8f\xd5\x5d\x5a\x22\x4b\xc4\x7c\xda\x99\x36\x9d\x0f\xcb\x95\x79\x19\x13\xe1\x7a\x2f\x56\x4c\x72\x74\x1f\xd5\x19\xee\x59\x3d\x95\x59\x7a\x07\x85\x30\x58\xbd\x93\xce\x35\x40\x83\x74\x5e\x3b\x9f\xdc\xd3\xe5\x68\x9c\x89\xde\x9c\xc4\x72\xf9\xab\xc9\x55\xb4\x64\xa2\x60\x53\x83\xc9\x20\xc6\x39\x7a\x5f\xfd\x3d\xd3\x7a\xcc\xc5\xc8\x87\x35\xa7\xcc\xba\x31\xa4\x88\xc3\x15\xa9\x66\x4c\xd8\x89\xa0\xfb\x25\x3c\x66\x1f\x71\xa2\x01\x91\x00\xcc\x1a\xe2\x68\xea\x0f\x00\xbc\x78\xb1\xa2\x9d\x69\x00\x92\x2e\xa2\xf1\xbb\x9f\x00\xa8\x57\x8a\x49\xee\x1b\x02\x40\x44\x89\xec\x3f\xc0\x0e\x60\x2b\x2b\x1a\x7c\xf8\x0e\x00\xca\x4d\x92\xff\x78\x12\x80\x3f\x56\xfa\x0a\xfb\x14\x40\xf8\x59\xf9\x37\x3c\x96\xbf\xf3\x72\xd6\x62\x1b\xb4\x35\x94\x06\x81\x29\x4a\xd5\xf8\x20\xf2\x01\x69\x22\x64\xd4\xb6\xd9\x45\x8c\x48\xef\x65\xef\xd9\x17\x76\x18\x5f\xe9\x7a\x31\xce\x25\xe9\x12\x2e\xc3\x4e\xa5\x44\x27\x8b\x9f\xc2\x05\xa1\xd7\x90\x84\x07\xaf\xca\x6a\xd7\xbe\xe9\xd3\x4e\xdb\x56\xe5\xa0\xfd\xb4\x5b\x16\x7a\xca\x8d\xbe\xef\xd5\x19\x59\xbc\x59\xa2\x31\x19\xa1\x7f\x71\xa9\xbd\x70\x7c\x34\x0d\x51\xb5\x1c\x91\x5f\x79\x67\x0a\x79\x6b\xa5\x21\x47\x95\x92\x0b\xd4\x73\xc4\x84\x76\xed\x6c\x9a\x50\x7b\x91\x69\xe4\x5a\x5d\x8a\x40\x13\xb3\xd9\x14\xda\x35\xa1\xa9\x8e\xd5\x22\x07\x1d\x9f\x60\x47\xf1\xc1\x94\xbf\xb4\x38\x83\x3d\x14\xde\x52\x9c\x61\xc9\x8f\x75\x08\x85\x02\x75\xcb\x83\x58\x62\x90\x36\x00\x2b\xab\x78\xec\x56\x3a\x00\xbe\x3e\xe1\xe7\x3b\x1d\x00\x64\xe4\x45\x26\x18\x58\xfe\xe0\x20\x90\x42\x6c\xfb\xaf\x02\xd8\xf7\x89\x8c\x1d\x9e\xdf\xe0\x20\x42\xd4\x24\x03\x4e\x8d\x6c\xe4\xc4\x24\x92\x94\xee\x89\xa9\x02\xa4\xb0\x69\x30\x2a\x6e\x07\xa1\xa4\x04\xc3\x93\x08\x47\x12\x29\xb2\xd5\xea\xaa\x53\x0e\x61\xce\xbf\xd2\x3d\x2c\x3c\x13\x7f\xcc\xfd\x62\xf4\xd1\x34\x6f\x6c\xb7\x43\x6e\xb1\xc8\xf9\x54\x0c\xab\x65\x62\x07\xb9\xec\xe6\xda\x84\xd1\x85\x91\x85\xea\x95\xd5\x65\xbd\x95\xcf\xe6\xb5\xf7\x56\x3f\xe8\xcc\xcd\x97\x57\x0b\x7f\xb8\x61\xe0\xb5\x50\x50\x29\xf0\x2c\x0b\x99\xbc\xe8\x5e\x2e\x70\xaf\xd5\x44\x66\x49\xa9\x64\x6a\x90\xd3\xd4\x7b\x39\xb5\xc0\xbd\x67\xd0\x4c\x60\xa5\x20\xd7\xa3\xfd\x9d\x39\xd7\x6a\x76\xa6\x6f\x13\xd1\x42\x73\xcd\x33\xb5\xa5\xf6\x9a\x25\x76\xed\x75\xf2\xa7\xca\x65\x2b\x4d\xf4\xa5\xf8\x9b\x14\x1f\x4c\x31\x9d\xd5\x1b\xcc\xed\xc8\xef\xf9\x7c\xd6\x38\x0c\x29\xe2\x5a\xae\xb7\x35\x02\xdb\x1f\x72\x10\x80\x35\x41\xf4\xc1\xd6\x3d\x00\xc2\x06\xc2\x2e\xf4\x76\x00\xb2\xcb\x42\xed\xbb\x8d\x37\x38\x08\xb3\x24\x81\xf7\xfb\x0d\x01\x5c\x56\x44\xb7\x1f\xad\x07\xf0\x9d\x15\x96\x3b\xf6\x02\x20\x6a\xaf\xe8\xd7\x93\x69\x00\x89\x9d\x92\xd3\xe7\x82\x00\xd2\x45\x15\x10\x22\x6f\x01\x9b\x71\x5f\xdd\x4f\x69\x14\x38\xd3\x5f\xeb\xfb\x23\x8f\x91\xe6\x93\xb6\x9a\xfb\x3a\x47\xff\xf6\xc4\x34\x78\x09\x46\x18\x67\xc6\x62\x66\x9c\x6f\xe7\x5f\x2b\xb6\x43\x8b\x59\x87\xb5\x5f\xaf\x36\x5a\x2d\x31\x7e\xf8\x38\xa7\xc1\x7d\xa5\x4f\xbf\x74\x6e\xd3\xc5\xfe\x6f\x67\x0d\x36\x7f\x77\xaa\x6b\x9c\x90\x35\xda\x35\x5f\x71\x61\xd7\x43\xa4\x29\xfb\x42\x68\x35\xf5\x2d\x6a\x33\xae\x25\x89\x52\xeb\x5e\x03\x8b\x4d\xcb\xa7\x8b\x0c\xdb\xa5\x2d\x93\x56\xb8\xce\x57\x37\xbd\xb1\xea\x5a\xa5\xca\x71\xad\xfd\x60\x1d\xbc\x8a\xcb\x90\xaf\xac\xb4\xe9\x58\x0b\x4f\xdb\x5c\xba\x6c\x93\x8e\xb6\x49\x2c\xa7\xe4\x22\x9d\x97\xb3\x45\x61\x92\xa2\x93\xb2\x33\x6d\x2f\x60\x4f\x46\xd0\x66\x64\xd9\xdd\xc7\x8a\x86\x57\x03\x70\x7c\x16\x1d\xa5\x2d\xd8\x98\xff\x2b\x96\x08\x0a\xec\xd6\xdf\xe0\x20\xac\x96\x05\xd8\xf7\x3f\x07\x40\xe5\x09\xc8\x1c\xa2\x06\x08\x4e\x15\x56\x67\x8e\x07\x88\xdd\x23\xfc\xee\x04\x1d\x40\xda\xb8\xb8\xc1\x99\xbb\x00\x39\x5b\xe5\x77\x8b\xee\x06\x38\x4f\xad\x72\x42\x61\x3f\xc8\xe6\x8d\xea\xb8\x1b\x0e\x90\xe6\x32\x64\x4d\x88\xce\x9d\x84\x9b\x31\x1f\x9d\xe2\x23\xcd\x71\x9b\xfc\x4c\x82\x5d\x73\x9b\xd0\x6f\xdc\x6a\xf2\x1e\x56\x7c\x5e\x93\xb1\xe5\x6f\xd7\xae\x9b\x5c\x29\x31\x31\x7b\xfa\xb6\xd9\x85\xe2\x85\x79\xd7\x63\x94\x3d\x37\xda\xbc\x73\xd4\xcd\xcc\xee\xbb\x4b\x03\xea\x66\x82\x65\xeb\xbc\x6f\xed\x72\xdf\x56\x2b\xf3\xc5\xd3\x95\xed\x97\x73\x6c\xac\x96\xcc\x4a\xdf\x37\x23\x6d\x26\x97\x03\x0b\xa7\x6a\x5e\xd9\xdd\x59\x09\x39\x7f\xa4\x3c\xda\xbe\x6b\x55\x35\x7b\xa4\xd8\xc5\x41\x76\x95\x94\xd1\x5d\xc0\x6b\xff\x66\x6d\x25\xe5\xd0\x6f\x1f\x8c\x8e\xc3\x1c\xc6\x2c\x66\x24\xb5\xdb\x11\x85\x69\x8c\x66\x49\xae\x75\x50\xc3\xc6\x87\x4e\x03\x9c\xee\x17\xce\xa3\xad\x03\x10\x29\x13\x4c\xa3\x7b\x0a\xa0\xc2\x2a\xd8\xcb\x70\x0e\x00\x11\x28\x20\xb4\xd7\xf3\x0f\x0e\x82\x91\x8f\x8a\xf1\xc7\x7e\xc0\xc0\x1f\x79\x34\x18\x20\xb9\x46\x60\xec\xb8\x3a\x40\xce\x37\xe1\x2e\xf6\x6b\x00\x85\x4e\x52\xe7\xf8\x33\x00\x4a\x0f\x2a\x72\xc8\x31\x83\x4d\xc9\x63\xcd\x53\xfa\xc6\xe4\x1d\xf9\xd2\x48\x5d\xa7\xfd\x84\xd9\xd4\x74\x3b\x96\x88\x33\xd8\xcc\xa0\x5e\x7f\xcd\x7c\x24\xfa\x8c\xc7\xdd\xac\x9b\x35\xe6\x2b\xab\xf6\x66\x97\xfb\x9a\x35\x96\x2a\x4d\xdb\x5e\xf0\x75\xc4\x7c\xbe\x67\xcc\xf0\x39\xad\x83\xf8\x6c\xcc\xbc\xe6\xab\xc3\xa5\xe8\xa1\x97\x56\xf7\xbe\x39\x34\x7d\xee\xd5\xb5\x59\x9d\x97\xab\x23\xb6\xae\x38\x38\x2c\x1c\xbb\xf0\xb4\x01\xe3\x70\x63\xb1\xbd\xa2\xa3\xaa\xcc\xe9\xce\x52\x58\x19\x7b\x99\x80\x53\xfe\xf2\xfb\x82\x8f\x05\x6f\x9d\xbd\x57\x46\xf2\x78\x73\x3f\x3a\xd3\xaf\xd1\x67\xb4\x64\x14\xb8\x14\xae\x25\xa7\xc5\xa4\x89\xbb\x84\xa2\x39\x92\xfd\x12\x3b\x5d\x4f\xa0\xa7\xe2\x6f\x25\x30\xb9\x72\x62\xf8\x63\x31\x71\x22\x2e\xfd\x98\x3b\x51\xb5\x00\x5c\x76\x42\x16\xdb\x0d\x37\x38\x08\x75\x07\xde\x5b\xbb\xf2\x00\x90\x56\xbc\x0e\x0c\x37\xfe\xcd\x41\xc4\xda\xf2\x04\x1d\x1e\x03\x48\xb7\xe6\x3b\xca\x44\x06\x28\xa2\x15\x38\x7c\x32\x04\xa0\xbc\x5b\xbc\x97\xf7\x3d\x40\x55\xb2\xbc\x88\xec\x36\x70\xaa\x79\xab\x96\xa5\x37\x4c\x82\xf2\x55\x03\x2f\xa7\x44\x42\x65\x9e\x84\xb5\x42\x54\x3c\x76\x6f\xcc\x45\x6f\xa9\x22\x8b\xd5\x2b\xbe\x3b\xd3\xf9\x1b\x67\x96\xb9\x1d\x67\x2e\xf7\xb4\x7f\xfd\x4a\xb2\x78\x3e\x2e\xd8\x93\xf4\xd2\xcb\x72\x72\xf6\xda\xd5\xb5\xa1\x4c\xbb\xcf\x9f\xf3\x3a\x2f\xf7\x84\x38\x7c\x9d\x3b\xd6\x46\x6a\x0d\x73\x16\xfd\xbe\xa9\x49\xa1\xf6\x95\xab\xf9\xbc\x5c\xfd\xc7\x2a\x2a\x57\x8f\x85\x91\x9a\x23\x85\xd4\xa8\x89\x45\x62\x05\x22\xd7\xd1\xfd\xf8\xb2\x68\xf1\xdb\x2c\x57\x54\xd7\x0a\x32\xdf\x3b\xed\x3a\xea\xc9\xaa\x7a\x8e\x6b\x92\x97\x7b\xda\xda\xb6\x4c\x26\x8a\x0f\x26\x6e\x27\xca\x12\xdd\x9c\xf0\x25\x8a\xcb\x5d\x04\x73\x26\x4e\x39\x9c\xc5\x3d\x10\xd3\x1d\xcd\x0a\x70\xae\x84\x7f\x6a\x9b\x32\x80\xd4\x73\x41\x3e\xfa\xd9\x3f\x3c\x08\xab\x5c\xdd\x0c\x3e\x00\xae\xef\x38\x3b\xf7\x72\xfe\xc1\x41\xd8\x71\x6e\x3f\xa8\x02\x90\x87\xe6\x16\x3e\x26\xb5\x91\x13\xd3\x90\x23\x44\x73\x36\x05\xa0\xa9\x46\x3a\x4e\x8a\x15\xf2\x5a\xfc\x94\x1a\xb4\x15\xc9\x8c\x17\x9b\x74\xa4\x1d\x77\x12\x06\xaa\x74\x4c\x07\x22\x05\x31\x5d\x19\xcb\x28\xda\x12\xa7\xef\xd4\xa1\x9a\x71\xfc\x6d\x74\x53\x24\x1f\xba\xfa\xde\xee\xf3\x4f\x2b\xdc\x68\x87\x5b\xae\x9b\x0d\x81\xf3\x89\x19\x81\xfe\xd9\xee\x93\x6e\x34\x9f\x0c\x7b\x0e\x36\x1d\x71\xbf\xf3\x25\xfd\x8a\x6f\xa5\xa7\xd7\xde\xb9\x4b\x6d\x8e\xc5\x66\x5e\x1c\xdf\x27\x1a\xe3\xfe\x4f\x0e\x46\xdf\x9b\x7e\x05\x72\x67\xff\x97\x0f\x86\xc2\xc1\x04\xed\xf3\x1a\xc5\x78\xc5\x0c\x03\xf0\x26\xf1\x21\xb6\xaf\x02\xc8\xce\xf3\xe6\xd1\x5d\xde\xf0\x20\xd8\x54\x9e\xf5\xde\xf5\x12\xc0\x2b\xe8\xac\xc2\x1e\x59\x80\x48\xf7\xd3\x0c\x7b\x5e\x03\x64\x75\xb3\x17\xef\xdb\x0e\x50\x4e\xcb\xee\xb2\xbf\x0a\xa0\xa1\x8f\x6b\x2b\x73\x12\xc0\xa5\x97\x7c\x97\x38\x58\x00\xba\xd7\x44\x4f\x0b\x96\xc2\x78\x1f\xb5\x6c\x8e\x6a\x37\xd9\xf0\xea\x4d\x75\x31\x5b\x15\xc2\xf3\xcb\xcf\x0c\x87\xc2\xdf\x2f\x75\x55\x1d\x73\x38\x51\xc2\x39\x61\x96\x71\x28\x54\xb7\xcd\xf0\x4e\x77\xf4\xc7\xe2\x93\xbd\xe1\x3d\x47\x43\xe0\x3a\x76\x30\xb1\x55\xd1\x7f\xe7\xfb\xd2\xdb\xda\x55\x88\x40\x9d\x8f\x5c\xfd\x5c\x05\xd3\x41\x15\x9f\xf7\x5e\x75\xc8\xa6\x09\xca\xff\x3a\x77\x79\x24\xed\x71\x60\xfd\x77\xc5\xa6\xcc\xc4\x53\x41\x45\xf3\x57\xea\x2d\x7f\xe7\x01\x5d\x0a\x6e\x5b\x24\x57\x4c\x86\x2d\x04\x3e\x5c\xbe\x52\xe4\x11\x1a\x12\x50\xbc\xf2\x38\xef\x19\x85\x83\x09\xe2\xf4\xbf\xb5\x16\x92\xce\x1f\xa8\xe9\x4f\x8d\xde\x95\x62\x10\xb0\xd3\xcf\x18\xdd\x9f\x70\xd9\xcf\xd5\xf7\x35\x26\x3a\x06\x05\xc0\x4d\xe4\xd9\xbc\x8d\xbc\x31\xff\x47\x2c\x9c\xcd\xa3\xdf\x0c\xe0\x78\x93\xbd\x83\x7e\x3b\x40\xc0\xf5\x93\x38\xfa\x13\x00\xc9\xd5\xb4\x88\x1f\xdf\x43\x0a\xef\xb1\x12\x77\xf3\x03\xd4\x03\xcb\xe2\x2e\x61\x80\x8e\xfd\x27\x97\xf7\xbd\x05\xb8\xf6\xed\x9c\x19\xcb\x51\x80\xa1\xdd\x02\xed\xdc\x5f\x00\xee\xf3\x49\x1e\x55\xd8\x4a\xbe\x30\x7c\x45\x71\xda\x42\x06\xaf\x75\xfb\x8d\x8e\x72\x58\xef\xfb\x90\xce\x4a\xab\xd4\x82\xa3\xf7\xee\xd4\xbe\xf2\x43\x34\xdd\x6e\x5d\xcd\xa7\x4e\x2f\xe9\x73\x2c\x9b\xc8\xa8\x68\xbb\x7d\x33\x28\x7b\x34\xe9\xe6\xb3\xa6\xbb\x74\x29\x25\x89\x4e\xd3\xbe\x37\x86\xe2\x5b\x13\x9a\x3e\x65\xf5\x5c\x8b\x65\x89\xd3\xfc\x6a\xde\x61\x1a\x69\x1d\x57\xf8\xed\x5d\xf3\x9d\x70\x62\x0c\xe7\x7c\x65\x7d\x7d\xe8\x85\x98\xa3\x8b\xc7\xab\x9f\x04\xe7\x47\x11\x96\xda\xcb\x94\x02\x65\x23\x71\x2b\xaa\x05\x74\xfe\xc3\x91\xda\xab\x62\xb9\xb4\x14\x0f\x8a\xef\xed\xb0\x81\xb5\xb1\xd4\x30\x9f\xaa\xb0\xad\xe8\xc8\xa4\x6d\x5e\x0f\x43\x55\x31\xae\x31\x18\xcf\xdc\xd0\x4e\xcc\x68\x54\x1d\x80\x68\x09\x6f\xc4\x4e\x4e\x00\x4d\x73\x2e\x16\xba\x8f\x00\xe6\x06\xec\x3e\x3b\xdd\x00\xdc\x73\xd9\xd8\xe9\x98\x00\x22\x1f\x6e\x4d\xff\xb1\xfe\x1c\x59\xa6\xb3\xdb\xb3\x36\xe6\x9e\xed\x97\xd6\xe7\xbf\x91\x9b\x22\x7f\xd4\xe1\x71\x36\xa1\x03\xe1\x00\x63\x7e\xdc\x25\xec\x33\x00\x6f\xb6\x88\x88\x8a\x63\xe1\xf0\x7b\x09\x99\x76\x24\xc3\x5c\xf4\x0b\x07\x0d\xb7\x00\x93\xa7\x1f\x86\xf7\x99\xb6\x67\x25\x5d\x6d\xe9\xe7\xf6\x38\x57\x1b\x54\xbe\xe5\x72\x4a\x02\x4d\xe7\x74\x9a\xe2\xc5\xc5\xc6\x8b\xd7\x75\xa3\x6a\xea\xd7\x1e\xeb\x0d\xde\x0d\x26\xd4\x3c\xfd\x78\xe9\x3a\x6b\x90\x6a\xd9\xcd\x2f\x02\x9d\x57\x03\x0a\x8a\x6e\xcc\x3d\x6b\x53\xf2\xbf\x7d\x5e\xed\xfb\x64\x63\x93\x9f\x53\x8e\xe7\x42\xc3\x85\x93\xbf\xf9\x8f\xe7\x19\x2b\xcb\x92\x25\x5b\x29\xfc\x87\x97\x71\xb2\xc5\x6a\x58\xf6\x55\x8f\x8e\x24\xf3\xb5\xe4\xb4\xfb\xee\xc5\x89\x9b\xd0\x46\x49\xbd\xee\xb4\xf1\x39\xe8\x99\xf8\x87\x6e\xe8\xb8\x9d\x98\xea\xe8\x22\x57\xa9\xd8\x79\xac\x41\xb8\x3b\x80\x8c\x3b\x77\xef\xce\x04\x00\x6d\x2b\x8e\xed\xdb\x3f\x01\xd8\x95\x9e\x38\xb5\x3d\x19\xc0\xef\x1e\x0b\x76\xfb\x95\x8d\x1c\x04\xca\xfd\xf7\xe6\xf5\x79\x70\x7f\xe2\x2f\xfe\x83\x32\xff\x7d\xf3\x69\xc7\xe0\xcf\x39\xf0\x00\xc7\xe5\x23\x9e\x00\x2b\x4a\x02\x67\xf9\xec\xd6\x2a\x57\xcf\x48\x0e\xe9\x08\x4c\x7e\xf8\x9c\xa8\xaa\xe9\xfe\x7a\xc8\x72\xaa\x1a\x39\x9c\xf8\xea\xe2\xca\xf3\xed\x2e\xfa\x65\x16\x99\x1e\x0f\xec\x23\x27\x5b\x65\x22\xde\xdd\xf3\xac\x49\xec\xdc\xea\x43\x1c\x7a\x75\xbf\xef\x6a\xac\x5b\xf9\x60\xf4\xa7\x77\xdd\xed\x6e\x2c\xdd\x5d\x73\xb4\x97\xfc\xdd\x74\xda\xa6\xbf\x8b\x5d\x1c\x74\x7d\xd7\xc8\xb8\x10\x7c\x61\xaf\x6b\x49\x4d\xc2\xd2\xe9\xf2\x00\x57\xee\x4a\xae\x65\xd5\x62\x23\x17\x86\xb2\xc9\x95\x98\xf3\x5e\x2e\x6c\x45\x77\x57\x5d\xb2\xcb\x9d\x51\xf9\xfd\x6b\x7e\x69\x8f\x9d\xfa\xf2\x8c\xd1\x6a\x49\x2d\x2e\xd4\x59\x97\xd1\xee\x49\xbb\x1c\xfd\xb3\xaa\x31\x99\xd1\x37\x1d\xb7\x66\x38\x61\x59\x23\x1c\x1c\xcf\xa5\xb6\x60\x93\x42\x97\x01\x14\xee\x9c\x0d\xd8\x71\x0e\xc0\x58\x93\xed\xc2\xf6\x51\x00\x87\x86\xad\xf5\x54\x7f\xe4\x61\x64\xaf\xaf\xbf\x4e\xec\x57\xed\xa1\xf9\x55\xef\xaf\xe7\x60\xbc\x59\xbf\xff\xbd\xe1\x81\x3f\xae\x44\x77\x12\x3d\x01\xc0\xcb\x7e\x66\x68\xa6\x88\xbc\x57\x22\x5e\x35\xf0\x09\x82\xe0\xa6\x44\xb0\x33\xe8\xf1\x58\x61\x32\x78\x18\xbe\xaf\xe2\xc0\x9c\xb8\x83\x67\xce\x5c\xac\xdd\x4c\x64\xc8\xd0\x85\x62\x3f\xee\x69\xba\xf2\xa9\x8b\x5d\x4e\x93\xef\xd7\x86\x8a\xda\x0e\x59\x2e\x4f\x7d\xfd\xaa\x7d\xa9\xc8\x5a\x68\xf4\xfd\xf7\xb3\x8d\x09\xd6\xec\x43\x6b\x0b\x5d\xd5\x54\x36\xdc\xd7\x95\x97\xe8\xcb\xfa\x6d\x43\x3a\x0f\x2c\x1f\x2c\x16\xb5\x69\xba\x14\xbc\x52\x93\x77\xd8\x96\xba\xa9\x62\x35\x30\xab\xce\xf6\x50\xbd\xc3\x9a\x5a\x1a\xc1\x26\xa2\x86\x80\x96\x4f\x12\xb7\x69\xae\xdc\x83\x9e\x89\x23\x51\x72\x4f\x6c\x3e\x16\xdd\xc7\x7c\x88\x4c\xb0\x39\x50\x98\x82\x75\x0b\x53\xb0\x9a\x28\x38\x85\x3b\x12\xf8\x1c\x40\x3d\xe9\x14\xd7\xb6\x40\x00\x4b\x0c\x33\x07\x0d\x0a\xc0\x67\xfd\x9e\x77\xe2\xfa\xfc\xb7\xdc\xef\x57\xfd\x9d\x87\xa1\xfc\xab\xbe\xf2\x5d\x5f\x3f\xe7\xef\xdf\xfd\xdd\xa9\xa8\x56\x59\x01\x58\x86\xe9\xb9\x67\x36\xc1\x02\x4f\xf3\x99\xa6\xa7\xad\xe4\x6c\xf1\x69\x79\xa9\x41\x41\x62\xb7\x72\x92\x69\x7b\x93\x1b\xde\xc6\xe0\xae\x77\x7c\x9e\x27\xa6\xcc\xce\x2d\xde\x2e\x94\x6f\x75\x6f\x20\xa9\xe0\xb6\xc7\xa9\xe5\xee\x42\xee\x32\x6a\xbb\x8b\x4b\x79\xdd\x81\x95\x72\x26\x25\x0b\xab\x6f\xc9\x35\x80\x34\xfe\x12\xb9\xf0\xaa\x22\xd6\xe8\xf8\x24\xfd\x52\x4b\x51\xa1\x49\xd4\xe3\x7d\xcb\x5e\x05\x36\xa6\x74\x77\xfd\x56\x6e\xe4\x98\x99\x2a\x0f\x96\xad\xce\xa4\xa7\x9a\x9e\xe9\xab\x5d\x1b\x4f\xe6\x30\xdb\xd1\x75\x10\xad\x97\x40\xa6\x78\x2f\xcc\xee\x37\x1b\x61\xd2\xa2\x6a\xcd\x50\x8d\xe2\x58\xde\xb0\x6f\x94\xfc\x13\xb3\xb4\xea\x2a\x1c\x63\xa0\xbb\x19\x5f\x85\x0f\xae\xd6\xb7\x15\xc0\xe0\xf4\xf1\x23\x34\xf5\x00\x76\xeb\x7c\x07\xe5\x39\xc8\xfb\x4a\xf5\x37\x07\xb2\xce\x07\x3c\x67\xa4\xfa\x27\x07\x42\x45\x45\xb5\xf0\x65\xfd\x1e\x3c\x11\x80\x79\x8e\x3e\x79\x8c\x1d\x80\x9b\x97\x9d\xea\x66\x3f\x6c\x17\x03\x09\xbb\xcb\x45\x24\x23\x95\x5a\xc3\xe6\xf2\xdb\x84\x87\x06\xcf\x1c\x4f\xa7\x44\xe3\x1e\xda\x06\x07\xc6\xf8\xb3\x62\xc2\xfd\x95\x13\xae\xb9\xb6\xa0\x0d\xb2\xd2\xd2\x3e\xd8\xd2\xac\x0d\x34\xbc\xcc\xdc\x6a\xb2\xb2\xda\x70\x57\x26\xa7\x57\x5f\x79\xa5\xe4\xfb\xbb\xf3\x27\x74\x0d\x57\x9e\xad\x04\x65\x5d\xd7\xcb\x9b\x55\x5f\xf5\x49\x97\xfc\x9d\xfb\xc1\xff\x04\x83\x46\xc4\x9f\x32\x94\xbb\x5f\x89\xfe\x1a\x13\x65\xf8\xf4\xb6\x05\xc6\x3c\x4a\xc7\xe0\xc6\xe0\x07\xac\x69\x48\xb8\xa1\x51\x9f\x23\xf6\x6e\xd0\x3e\x44\x73\x27\x09\xfb\x21\xb0\x1b\x71\xa0\x3d\x1e\x97\xe6\x8b\x40\x2c\xb7\x3a\xe1\xae\xf8\xf8\x22\x43\x2f\x3a\xe1\xf0\x5e\xcd\x00\x16\xc1\x47\xfb\xb6\x24\x02\x78\xae\x3f\xe7\x29\xa7\xa9\xfe\xe2\x40\xae\x9d\xfe\x7b\xfe\xfd\xf1\xd3\x9f\xeb\x5f\xde\xf4\xf7\xef\xfe\x4f\x97\x00\x98\xcb\xe9\xbb\x6f\xcb\x01\x70\x3f\x3e\x95\xd1\xb9\x1d\xc4\xc5\x1f\x8a\x16\x5f\x98\x24\x9f\x50\x26\x6b\x28\xe7\xb1\x11\x1f\x19\x74\x9b\x57\xc4\xb8\x13\x0c\x6d\xa4\xdd\xe2\xbc\x1c\x70\x83\x3e\x9c\x41\x82\x4e\x2f\x71\x9b\x92\xdc\xc2\x91\x36\xd4\x58\xfb\xd2\xaa\xa8\x5b\x26\x4a\x98\x91\xae\xb2\xd8\x13\x06\x5b\x31\x87\x9e\x26\xc7\x17\x6b\x39\xa1\x1b\x56\x9d\xe2\x67\x28\xfc\x83\xe6\xc5\x05\x2f\xf4\xe7\x48\x8c\x96\xd4\xcc\x37\x4c\x49\x58\x85\xd6\x8b\x57\xa3\x58\xdd\x20\xbc\xf6\xa7\xb1\x00\x6c\x62\x10\xa3\x8e\xe1\xa3\x4d\x38\x6a\x7f\x03\x9d\x5d\xf7\x6c\x71\xa5\xde\x81\xba\x0c\xb7\x36\xe3\x7a\xbd\x56\x75\xb9\x06\x86\xf0\xd4\x9e\xfb\x74\x7d\x7a\x05\xf0\xfe\xa8\xcd\xba\x6d\x5d\xda\xf8\x7e\x17\xf4\xc6\x73\x10\x55\x42\xf5\x17\x07\xd2\xce\xb1\xbe\x0f\x04\xfc\xaa\xef\x63\xff\x6b\xfe\xfb\xb6\x73\x7d\xfe\xb9\xb0\x7e\xff\xd7\x08\x80\xea\x13\x15\x55\xd7\x27\x00\x9e\x7e\x36\x12\xc5\x03\x51\xf4\x9a\xdc\xa4\x1c\xaf\x30\x46\xc9\xc1\x08\xe5\x20\xaa\x59\xdf\xb0\x6d\x43\x8d\x12\x94\x3d\xb2\x51\x1c\xf6\xee\xf8\xd5\x98\x40\x4f\x6a\xcb\x0c\xbc\x57\x5e\xbc\xcf\x90\x71\x03\x8e\xd4\x60\xea\x6f\xa2\x7f\x13\x57\x38\x60\x1d\xb0\xa4\xb5\x88\x93\x1f\x0f\x09\xbc\xaf\xd6\x81\x63\x5c\x9b\x0f\x64\x51\xdb\x87\xd3\xc3\xa6\xfb\xbb\xa8\x34\xe3\x68\x70\xbe\x9e\x8e\xaa\xa7\xe6\x93\x70\x37\xdd\x9f\xa9\xc9\x4e\xc7\xe2\xbe\xb8\x3b\xab\xad\xbd\x29\xc1\xef\x43\x95\xab\x4f\x3f\x5b\xc0\xcb\xb9\xdd\x56\xb7\x7b\xfc\x19\x7f\xcb\x79\xb3\x46\xd0\x83\x33\xf8\x61\x67\x6e\x8d\xb9\x3b\xcc\x84\xad\x8e\x85\x1a\xe4\x9b\x22\x04\x0d\xfb\xe8\x8d\xfd\x80\xe2\x03\x69\x68\xa3\xfa\xcb\x03\xf1\xb7\x0f\x05\x33\xf0\xf7\xfc\xf7\x9f\x39\x00\x5d\x53\x00\xc7\xb5\x76\xc7\x5c\x2c\x00\xe0\x31\x3f\xb1\xbb\x34\x12\x6e\x8b\x75\x71\xd3\x67\xf2\xc3\x3e\x65\x69\x29\xfd\xe8\x6c\xb2\x86\xbe\x80\x7a\x92\xaf\x0f\x49\xc8\xaa\xcf\xf8\x26\x85\x7f\xb0\x49\x25\xca\x87\x1f\xb1\x93\x35\x4f\x25\xbc\x4a\x5b\x73\x5c\x30\xc2\x13\x02\x4a\xc9\x2e\x68\x7d\x6b\x82\xd4\xa5\x0b\xae\x0b\xda\x08\x3c\xf6\xe6\x67\x14\xbb\xfa\x76\x7c\xf7\xeb\x2c\xd4\x65\xe5\x05\x7c\xf7\x6a\xab\x9b\x2e\xc5\xfb\xa0\xb8\x46\x08\xc7\xbf\xb1\xef\xa0\xe4\x5c\x28\x36\x7c\x17\x25\x04\x58\x5b\x29\x15\x7e\x1c\x21\xd8\xda\x78\x2a\xb5\x4d\xf6\x12\x7a\x2d\x5f\x29\x3b\x8e\x87\x13\x86\x2d\x2f\x28\x3f\x1c\x0b\x23\xbc\xb5\x3c\xa9\x34\xf3\x98\x91\x68\x68\xb2\xb6\xc1\x81\x94\x47\xfe\xaa\x7d\xeb\xfc\xdb\xf3\x75\x1f\xc4\xb2\xc8\x8f\x4a\xa8\x5d\xe7\x80\xb2\xd6\xe7\xbf\x55\xeb\xf3\xdf\xf5\xf9\x5e\xfb\xfa\xe7\xa2\x7a\x1a\x80\x4a\x70\xc3\x03\x91\x3b\x08\xaf\xc5\x1d\x38\x69\x12\x1e\x83\xab\xd2\x5e\xe1\x8f\x21\x61\xe4\x47\xba\x75\xf2\x35\x1e\xba\x64\x06\xf3\x30\xad\x71\xfb\x49\x92\xbd\x0b\x23\x32\xde\xf2\x1c\xc9\x38\xf0\x83\x91\x9f\x69\x10\x89\x2a\x7e\x97\x99\x0d\xb2\x8c\xd8\x91\xf3\xd4\xd2\x48\x4f\x87\x98\x72\x21\xd4\x4a\x4d\x8b\x99\x68\xdc\xf9\xc9\xda\x52\x7d\x17\xf1\xec\x50\xbd\x8d\xb0\xf2\x0c\x01\xfd\x9a\xca\xe6\x9b\xe2\x7d\xc2\xc7\x05\x49\x9b\x64\x4a\xde\x85\x5c\x37\x71\x82\xa8\x63\x4c\x23\x9b\x45\x52\x20\x0e\x1a\x74\x53\x72\x2e\x64\xe3\xe6\xab\x88\xdf\xf4\xf5\xe4\x78\x3f\x8d\x10\x5f\x1b\xa8\xcb\x5d\x7b\xaf\x4a\x9c\x34\x08\x92\x47\xbe\x19\x23\x3e\x33\xa4\x07\xc8\xd5\xa6\xfa\x8b\x87\xa2\xf8\x50\xbe\xfc\xca\x85\x5a\xf7\xe1\x7c\x5e\x9f\x63\xbe\x50\x5f\x9f\xff\xa2\xfe\x9e\xff\x52\x3c\x10\x15\x38\x00\x96\x0b\xf4\xf2\xb9\xd7\x00\xce\x36\x1c\xbc\x93\x22\x09\x20\xba\xc0\x7e\x29\x52\x1f\x5a\x14\x3a\xf9\x58\xfd\xa8\x40\x4c\x3b\x49\x7c\xc9\x19\x47\x6e\x31\x29\x52\x0c\xb5\xe1\x27\x33\x3a\x4a\x6b\xd9\x9b\x17\x91\x96\x7c\x22\x74\x9e\x1b\xf7\x91\x86\x22\xf8\xf5\xb9\x11\x36\xa4\xb4\x14\x7e\xc3\xb7\xba\xb3\x24\xbb\x22\x15\xa4\x91\x56\x1b\x89\xb5\xfe\xb6\x71\x97\xda\x20\x89\xbd\xeb\x9c\x51\x9f\x72\x1d\x89\xf6\xce\x73\xe3\x33\x8a\x12\xc4\xcf\x2f\xf3\x8d\x73\xe5\xb9\x89\xf3\xdf\x0e\x1b\x65\xfc\x5f\xdc\x83\x94\x38\xce\x92\xf4\x44\x95\x47\xd2\x64\x89\x81\x4c\xaf\x64\x23\xd5\xff\xf5\x0c\xe9\x96\x1a\xcd\x06\x0f\x75\xdb\xfa\xef\x7d\xe0\xd7\xba\xbe\x35\xfd\x37\x07\xf4\xaf\xf9\xef\x7a\x1f\xce\x17\x01\xb0\x54\xd3\x39\x27\xcf\x03\x70\x8c\xed\x13\x8c\x76\x01\x10\x39\xcc\x9a\x1f\x98\x08\xef\xe4\x23\xce\xcd\xa2\x5e\x40\xae\xa6\x9c\x80\xa3\xfd\x2d\xf2\x8a\x71\xae\x4c\x9d\xa5\x3a\xf9\x92\x75\x91\x02\xce\x24\x8f\x1c\xe3\xf1\x48\xa5\x08\x71\x8f\xec\x15\xcc\xa3\xfa\x56\xdf\x9e\xac\x11\x77\x57\x1d\xb4\xe7\xc9\xbc\x59\xe7\x35\x55\x34\xdd\x49\x73\x65\xb7\x74\x42\x55\xbf\x93\x37\xd7\x93\xb4\x46\x95\x53\x49\x83\xdd\xa1\xba\xae\x8a\xd6\xa4\x92\xa1\x7a\xbd\x60\xf9\x4d\xa4\x82\xe7\x11\xba\xcb\x32\x38\x52\xdb\xac\xb8\x8e\xbc\x34\x8e\x74\x07\x3b\xa5\x05\x52\x38\xf2\x3e\x52\x85\x7a\xf8\x6f\xdf\x03\x0f\xf9\x3e\xd9\x56\x0e\x29\x76\x11\x8e\x91\xaf\x49\xb6\x8a\xb3\x13\x04\xc8\xf9\xd2\x99\x00\xd7\xd6\xfb\x30\xb1\xe7\x57\x25\xa2\x7f\xd4\xc5\xd7\xbf\xd6\xf5\xa6\xe9\xff\x3f\xff\x2d\xb5\xfc\x55\x33\xd6\xff\x4c\xc9\x81\x88\x61\x07\xe0\x08\xdc\xd3\x14\xf2\x0c\x40\x84\x96\x25\x96\xe2\x3f\x70\x41\x40\x8b\xc6\x23\xde\x09\xeb\x2b\x60\x82\xd8\x2a\x72\xf5\xb7\xf7\x60\x88\x4c\x74\x19\x97\x09\x37\x58\x23\x7f\xf6\xc9\x90\x63\xd3\x53\x21\xdf\x0b\x2b\x55\xf0\xd3\x2a\x24\xdf\x4b\x48\x55\xb0\xd3\x38\x4b\x2e\xcd\x61\x57\x9a\x55\xb5\x25\xc7\x95\xb5\x28\x63\x95\xfa\xc9\x81\x0d\xd7\x54\x64\x14\xc3\xc9\x27\xba\x95\x34\x6c\xe5\x58\xc8\xfa\xb7\xb6\xa8\x0a\xc8\x5c\x20\x8b\x3e\x7e\xa0\x46\x27\x6d\x44\x16\x9a\xfc\xa4\xfa\x44\x8a\x81\xac\x37\xb7\xa0\x22\x4e\xe1\x1e\xc4\xbf\x92\x5f\x92\x7d\x65\xc3\x29\x7d\x10\x65\x04\x17\xd8\x2d\xca\xb4\x71\x1e\xfe\xe2\x60\x30\xfc\xff\x7f\x0e\xa8\x79\xee\x1f\x1e\x88\x75\x2e\x24\x7e\xdd\x1f\x11\xb0\xbe\x7f\x04\x65\x01\x9c\x62\xde\x25\xef\x8b\x04\x10\xfc\x78\x94\xd3\x2d\x01\x40\x36\x9d\x2d\xdb\x8e\x17\xd0\x2a\x25\xa7\x7b\xcc\x15\xa0\x46\x6f\x9a\x77\x81\xc2\x3f\x18\xba\x01\xd2\xde\x4e\xd4\x4f\xf7\x03\x20\xdc\x0f\x88\x62\xb5\x96\x00\xe1\xd7\x2e\x26\xa3\x25\x01\x0c\x91\x85\xd2\x59\xea\xc5\x40\x95\x84\x93\x39\xaf\x72\x8d\xbc\x9a\xab\x26\x7b\x4a\x29\x86\x3c\x5e\x9e\x2a\x77\x55\x81\x83\x3c\xdc\xa8\x2e\xcf\x24\xb7\x9b\x7c\xb7\x63\xbb\xdc\xb4\x0c\x92\xdc\x77\x7d\x41\x5e\x48\xca\x8f\x7c\x6d\xd8\x50\xee\x26\xc5\x73\x20\xd1\x44\x6e\xfe\xe0\x2c\x2f\x23\x71\x96\xdc\xb9\xb8\x59\x6e\x9a\xc2\x3d\x88\xda\x82\x19\x50\x89\xae\x50\xbc\x48\x14\x1f\x0e\x25\x17\xeb\x37\x07\xb4\xfe\xf9\x68\x9b\x59\xdf\x07\xd7\xf3\x60\xf2\xae\xae\x73\x30\xdb\x7f\xd5\xd0\x75\x7f\x44\xc8\x0c\xc0\xb1\x06\x5a\x43\xaf\x07\x00\x27\x5d\x76\xce\xa1\xa4\x00\xf8\x07\x0e\x5a\x3a\x8a\x00\x48\x73\x1f\x3f\x6e\xf5\x1d\x40\x85\x9d\xbd\xc7\x18\x09\x6f\xb4\x7d\xce\x0e\x1b\x4a\x40\x1b\x62\x94\x47\x49\xf7\x35\xb4\x5a\x22\x78\xe5\x74\x0f\x42\x80\x2b\xa7\x30\x8b\xd6\x27\x08\xf0\x1c\x13\xb6\xd6\x88\x03\xa7\xa0\x04\x91\x67\xaa\xfd\xe0\x14\x15\x21\xf2\x5d\x65\x06\x4e\xa7\x71\x49\xb6\x2a\x9e\x05\x99\xf3\xac\xe2\x57\xe5\x8d\x41\xb2\x94\x49\xfc\xb2\x1c\x35\x9c\xac\x75\x92\x14\x93\x26\xc3\xfe\xcb\xdb\x24\x5f\x4a\x1d\x85\xfd\x7d\x1e\x92\xc9\x12\x7a\xc0\x3c\x84\x90\xc8\x94\x40\x92\x97\x1e\x27\x4b\xab\x8a\x99\xc2\xf1\x89\x73\x12\x27\xc4\x36\xc1\xd1\x8f\x1f\x24\x8a\x45\x39\x41\x61\xb9\x5c\x2c\xf7\xb7\x07\x03\xbd\x7e\x0e\x0c\xfe\x83\x03\x3a\xf1\xab\xd6\xae\xfb\x71\x0a\xa6\x7f\xd5\x54\xb7\xbf\x39\x98\x08\x13\x80\xa3\x2e\x34\xaa\x8e\xeb\xfc\x9c\x05\x02\x60\xbb\x0a\x15\x95\xfd\x10\x00\xd7\xe6\x3d\x9c\x36\xda\x00\x12\x17\x8e\x1d\x32\xbb\x0b\xa0\x68\x78\xe2\xb0\xe1\x3b\x40\x6b\x3e\xe3\x40\xe8\xe6\xc0\x7b\xfd\xc5\x33\x3d\x3a\xfb\xe0\x85\xc9\xf4\xb9\xfb\x5a\x5d\x70\xdb\xe6\x2e\xb7\xa3\x46\x2c\xf4\xb8\x90\x78\x69\xd4\xf7\x40\xb9\xaf\xab\x00\xad\xca\x66\x68\x0a\x8e\xe7\x7b\xaf\x54\x07\xc9\x71\x9c\x42\xbb\x15\xa9\x20\x28\xcd\x5e\xd8\x4a\xfe\x14\x78\xe7\x51\x0b\x0f\xcb\xb2\x80\x7f\xf1\x92\xb0\x9e\xb4\x13\xd8\xd7\x2a\x8b\x18\x4b\xed\x04\xd3\x96\x6e\x91\x29\xf1\x15\x70\xe8\x2a\x10\xbe\x22\xfe\x02\x24\x6f\xd8\x88\x45\x8a\x29\x81\xd6\xfd\x72\x51\x76\x91\x19\xb0\x1c\x63\x16\xfe\x20\xaa\x07\x52\x53\x3a\x62\xea\xdf\x03\xff\xff\x1c\x50\xdd\xfa\xba\x8a\x7c\xfe\x9b\x83\x09\x14\xfd\x55\xdd\xf8\x7e\x55\x2b\x03\x00\xaa\x2b\x54\x54\x76\xc5\x00\xcc\x03\xb4\x02\xe6\xa5\x00\x1c\x41\x74\x0c\x66\x42\x00\xc2\x4e\x8c\xb4\x08\x5f\x00\xb9\x8f\x4c\xfe\xfa\x86\x00\xea\x01\x27\x9f\x68\x0b\x01\x49\x57\x90\x9d\x4a\x6b\x1f\xac\x20\x5f\x9e\x66\xd1\xe8\x84\x0f\x56\x37\xce\xd1\xab\x4a\x01\xda\xae\xeb\xcc\x01\x95\x16\x98\x70\x0f\xe3\x24\x2a\x35\xc2\x6b\x9f\x29\x4e\x9c\x02\x35\xbc\x0b\xce\xe6\x4c\x95\x97\x84\xdb\xb1\x9b\x78\xd2\x64\xbf\x41\x7b\xaa\x33\x1f\x9f\x54\x24\x8c\x64\x5b\x71\x7b\x4a\xd9\x40\x63\xf1\x07\xbe\x41\x89\x09\x68\xab\x64\xe2\x3b\x2a\x21\x03\xb9\x8d\x53\x02\xfa\x22\x5f\xe0\xda\xa5\x55\x9e\x0c\x91\x3a\xa8\xed\x45\xf0\x79\x8b\x5c\x87\xc4\xdb\x47\x04\x9e\x08\x3f\x87\xa4\x47\xc6\x02\x57\x7e\xfc\xeb\x15\x15\x7e\xec\x0f\xd4\x22\xd2\x3f\x73\x17\x59\x63\xe5\x05\xb6\x4e\x02\x70\x49\x2b\x2c\xed\x4c\x06\x10\x67\x97\x2b\xde\x83\xd9\xe0\x20\x34\xec\x54\x47\x59\x32\xff\xe0\x41\x46\x74\x4a\x39\x87\x00\xcc\xdd\x11\x0b\xc2\x37\x00\x67\xd1\x61\x5e\x28\xc7\x0a\x2d\x16\xab\x0e\x36\x6a\xc5\x20\x6e\xbe\xea\xb3\x68\xc8\x48\x7e\x65\x7a\x2e\x6a\xcc\x4c\x8d\x1c\x82\xa4\xc9\x1e\xb5\xd1\x23\xb5\x1b\xee\xab\x76\x73\x73\x20\x85\xe8\xcc\xb6\x37\xb8\x87\x90\xa8\xb5\x38\x6e\x4e\x79\xe3\x89\x57\xd4\x9f\x3e\xc6\xfa\x45\x13\x4b\x55\x23\xa6\xf2\xfd\x26\x89\x55\xca\x47\xe7\xa7\xfd\x76\x13\x5f\x2b\x36\x60\x3f\x78\x97\x93\x64\x14\x26\x70\x3e\xee\x9d\xd8\x32\x05\x07\xfc\x16\x97\xe9\xef\xf5\x8a\x2f\x71\xaf\xdd\x9e\x4f\xc7\x2a\xbd\xc2\x1f\x74\x9d\x7a\x73\x48\x45\x15\x07\xa8\x53\xcf\xb8\x55\x2e\xe1\xa3\x9d\x9f\x3e\x36\x56\x19\xc5\xdf\x73\x7c\x7f\xf7\x96\x1a\x03\x81\xc6\x21\xee\xb6\xac\xda\x61\x82\x8e\x9d\xc1\x20\x8f\xda\x51\x42\x8d\xf5\xe5\xbe\xb3\x6a\x6f\x08\x8f\xac\x72\x7f\xf4\x41\xfe\xca\x8f\xf5\xef\xf0\x90\xf6\xfa\x51\x4f\x1b\xc9\x57\x6c\xa7\x02\xe0\xcb\x91\x35\xa3\x67\xd8\xe0\x20\x54\x3c\x15\xc5\x8f\xd8\x03\x68\xd3\x2b\x2b\x30\xc7\x01\x20\x8a\xd4\x5a\xd9\xde\x01\x98\x5d\xd7\x7a\xc8\xa9\x0f\x60\x15\x60\x40\x10\xe6\x03\xb0\xd6\x33\x1d\x91\x8d\x87\xf3\xd6\xc9\xb6\x52\x1a\x3c\xc0\x6f\xe9\xe7\x75\xdc\xd0\x96\xdc\x6b\x56\x1d\xe9\x62\xc1\x4b\x3e\x61\x9c\x9d\x75\xd8\x71\x3f\xe9\xbc\x61\x4b\xf5\x2e\xd4\x0d\x12\x8d\xee\xb7\x2b\xed\x3e\xbe\xc4\x76\xad\xfe\xdb\x72\xfe\xec\xc4\x3a\x75\xd7\xb1\x06\xbf\x45\xe2\x09\xd5\x95\x0f\xac\xc1\x3c\xc4\xd3\xca\xc9\xcb\x5f\x82\x74\x88\xf9\x4a\x7c\xd8\x70\x3f\x51\xd2\x11\x45\x0e\x9c\xa4\x27\xf7\xd2\x23\xa5\x83\x38\x47\x8f\xc9\x2f\x3e\x4a\x43\xb8\x7a\xf7\x86\xb7\x72\x2a\x5e\xb8\x2a\x8f\x8a\x71\x7a\xd5\x08\xdc\x5b\xf7\x88\x51\x5e\x35\x2c\x6e\xcd\x3d\x62\x98\x4e\x3d\x01\x2f\xe1\x36\x72\x7b\x9f\x86\x10\x3e\xd5\xe5\xd1\x20\xa8\x7f\xc3\x2f\x3b\x5e\xbb\xd6\xa7\xe1\x43\xe0\x70\xd0\xec\x8e\xd0\x98\x24\x84\xda\xfe\xb4\x63\xc9\x4c\xff\x58\xff\x4e\x1f\x29\x9f\x1f\xf5\x94\x81\x4c\x1f\xad\x36\x80\x50\xad\x8c\xf4\xae\xef\x00\x52\xda\x32\xfb\xf6\x9d\x04\x50\x29\x55\xa8\x3d\x42\xfb\x07\x0f\xb2\x4d\x55\xe7\x54\x3a\x80\x15\xb3\xd6\x3c\x37\x12\xc0\xf6\xb2\x3e\x42\xf8\x00\x2c\xdb\xce\x99\x2e\xca\x3f\x86\x04\x9b\x66\x1b\xa4\xa6\x0a\x6c\xb6\x2e\xf2\xdc\x6b\x54\x4a\x0e\xb2\x3c\x1d\x9e\x64\xb3\x89\x34\x6a\x76\x2e\xbd\xd4\x55\x8c\x64\x8f\x64\xaa\x3c\xe1\x49\xf5\x9b\x0b\xf2\xd6\xd6\xbf\xfd\x3c\xb0\x81\xc8\xa8\xe1\xf2\x3c\x20\x84\x87\x50\xa2\xe6\xf9\x31\x3a\xfc\x22\xc5\x07\x43\x3c\xac\x7c\x14\x73\x3f\xa8\x95\xc2\x03\x7d\x4f\x57\x76\xc0\xce\xf9\xc4\xcc\x20\x55\x02\x70\x27\xbc\x6f\x4c\x54\xa9\x85\xe3\x0e\xfb\x4c\x3c\x55\x55\x77\xc4\xb9\x7b\xb3\x3d\x14\x53\xff\x84\x1b\xf7\x28\x1e\xea\xd2\x68\xc6\xf3\xa2\x82\x6f\x30\x68\x1e\xc5\x47\xb8\xfa\x5e\x3f\xa9\xf9\x12\x5f\xea\x32\x4a\xe1\x81\xda\x8f\x69\x8b\x13\xc4\x1c\xc2\x7e\xf4\x41\x3a\xea\xc7\xfa\xe9\x74\x7e\x71\x10\x1c\x9b\x64\xbe\x6d\xdb\x0d\x20\x3a\x22\xb5\xc8\xa0\xf3\x07\x07\xb1\x53\x7e\xf8\x48\x09\x00\x62\x51\x51\x89\x65\x01\xc0\xcc\x42\xe5\xfd\xa9\x1e\x00\x5b\x2b\x4d\x65\x6e\x56\x00\xc7\x58\xbd\x60\x11\x73\x20\x38\x26\x18\xbf\x91\x77\x86\x48\xfb\x12\x6b\x03\x2d\x25\xf2\x1b\x3b\x2e\xd4\x69\x93\x31\xb2\x98\xf5\xb3\x90\x29\x7b\x24\x29\xdb\x9c\x2e\x43\xce\xfd\x34\x69\xa7\xd1\xa3\x0a\x3e\x9f\x8f\xc4\x10\x03\xd9\xf6\xde\xa0\x03\x84\x39\x1d\xb3\x3b\xcc\x61\x7e\x04\x77\x4d\x91\x97\x21\x91\xf7\x09\xd2\x6a\xb9\x9f\xab\xa2\x62\x09\x16\x2a\x8e\xe8\xbe\x88\xef\x04\xb4\xb2\x19\xa6\x20\x78\x86\xc2\x03\xfd\xd3\x8b\xf3\x9c\x4e\xe3\x08\xb6\xdf\xbf\x6e\xd4\x41\xa3\x10\x77\xda\x57\xfd\xde\x36\xad\x93\x38\x15\x5f\xda\x9b\x29\x5a\xf1\xb8\x41\x2f\xba\x6b\xbd\xda\xc9\x38\xb2\x47\x5b\x0f\x59\x5b\x0b\x6f\xef\xf6\xb4\x3d\x55\xa7\x0d\x7f\xc9\x05\xdf\xfa\x58\xa7\x9f\xb0\xdb\xe9\xd4\x8f\x3e\x48\x31\xff\x58\x3f\x65\xfe\x7f\xa6\x48\x4a\x63\xdb\x9b\x0d\x0e\x42\x9e\x55\x7a\xe9\xc0\x76\x00\x0d\xac\xb4\xdc\xc1\x5c\x00\x63\x71\x39\x6b\x66\x09\x00\xab\x62\xa5\xe9\x53\xd9\x00\x0e\xa0\x66\xce\x19\x0b\xe0\xe2\xa5\xc3\x2a\xf4\x1d\x00\x75\x04\xc9\x2f\xef\x0e\x99\xce\xf9\x16\xcf\x35\x93\xc8\x37\x1c\x7a\x9c\x93\xcd\x98\x48\xcb\x76\x12\xc1\x8c\x4e\x2b\x24\x6d\x8b\xcb\xe9\xb4\x5e\x67\x88\x71\x26\x76\x15\xab\x41\x8a\xbf\x7d\x41\x61\xba\x32\x77\x5a\xa3\x78\xf1\x6b\x9a\xef\x26\xae\xc4\x46\xe3\xaf\xab\x2d\xcd\xc5\xc5\x21\xf0\x3d\xaa\xfe\x6b\xa3\xb1\x38\x0a\x0f\x34\x97\xa0\xba\x88\xb1\x08\x8b\x9c\x16\x52\x6b\xc6\xbc\x0f\x61\x98\xa8\xd3\xa8\xc2\xbc\x0a\x21\x3f\x09\xd4\x7c\x80\x95\x0f\x3e\x36\xec\xa0\x65\x8b\x9d\xf4\xbf\x7c\xeb\x9a\x76\x09\x8e\xc9\x2f\xba\xff\xa1\x8e\x31\xce\xd1\x67\xba\x97\x5e\xa7\x04\x37\xe5\xf9\xac\x3d\x40\x77\x0d\x2f\xe9\x5e\xd8\x36\xa7\x27\x8f\x77\x43\x19\x35\xd6\xea\xd7\xe1\xeb\x5c\x7f\xbc\x25\x74\x4b\xfa\xfe\xe4\xc4\x46\x65\x3e\xd3\x48\xfc\x07\x07\xf1\x49\xf2\xc8\x7e\x3a\x00\xbd\x28\x89\xcf\x07\x33\x36\x78\x10\xdb\x66\x05\x5e\xb6\x3d\x00\x2e\x49\x6a\x82\xdc\x27\x01\xdc\xe7\xb4\x0c\x85\x99\x7e\xe7\x06\xa5\xa0\xd2\xcd\xf5\xb5\x6c\xc8\x8d\x4e\xf5\x8e\x6d\xe6\x41\xa4\x59\xfb\xe0\x00\xac\xb3\x2f\x69\xa7\xd5\x83\x94\x52\x5f\x5a\xa2\x92\x69\x74\xc5\x89\x90\x56\x42\x0a\xe2\x51\x3b\x3e\x2a\x17\xbf\xac\x77\xe4\x2e\x39\x2e\x1a\xef\xa8\xc5\x3e\x29\x9a\x98\x87\x5b\x55\xd7\x5a\x0c\x4b\xbe\xfd\x4f\x1e\x68\x16\xad\x3e\x86\xce\x88\x8e\x7b\xb3\x4f\xf3\x24\x86\x2f\x62\xe8\xb7\x17\xc7\x5b\x1b\x30\x6f\xc2\x18\x87\xec\x74\x5e\x61\x95\x82\xf1\x03\xcd\xba\x81\xd8\xdb\x81\xdc\x3d\x0f\xf4\xce\xe2\xa4\xfc\x9c\x3a\xf7\xe9\xa5\xe2\x2e\x79\x27\x51\x78\xa0\x66\x1b\x83\x73\x78\x36\x8f\x9b\x75\xaa\x86\x4c\xf8\x14\xd4\x36\x80\x2d\xc6\x12\xa2\x3f\xfa\x70\xbc\x40\x7a\x75\x2b\x37\x00\xef\x43\x71\xd8\xd9\x0d\x20\xce\x20\xbe\x89\x61\x1b\x80\xb2\xae\x98\xc3\xde\x01\x00\x03\x35\x71\x1d\xc6\x59\x00\x0b\x7f\x99\xcf\xcc\x63\x00\x8e\x4d\x72\x83\x6c\x7c\x00\xa8\x30\xe5\x5d\xe7\x2e\x03\x78\x77\x69\xec\x15\x3a\x02\xe0\x97\xaa\x5f\x2c\xdf\x0d\xc9\x5e\x61\xa6\x75\x5a\x0f\xc8\x25\x6e\xa3\x0e\x0c\x16\xd7\x49\x37\x1d\xf3\xfd\x8e\xba\xd2\x11\xa7\x6d\x98\x93\x30\x7e\x4d\x04\x8c\xf9\xd6\xb2\xba\xf0\x44\x3c\x09\xd9\x75\xc5\x27\x7e\x07\x3e\x5e\xcf\xef\x3e\x39\xb1\x01\xd7\xa9\xd5\xf2\xee\x44\x9a\x36\x4e\x5e\xbd\x63\xa5\x3b\x43\xe6\x9f\x3c\xd0\xff\xe5\xc5\xe9\x1f\xd1\xb7\xc2\x2c\x86\xe5\xf4\xc6\xe9\x7f\xc5\xea\x87\x84\x77\xba\x1b\x24\x63\xef\x06\xbe\x6e\x55\x40\xb0\xe0\x98\x02\xf6\x5e\xf4\x44\xd0\xe0\xda\x7c\xd4\xea\x5f\x20\x6c\x71\x1f\xbd\xbe\x5d\x40\x22\xaa\xf1\xb2\x1e\x1e\x00\x5b\x8c\xc4\x46\x7f\xf2\x93\x2a\x92\x6f\x69\xd8\x00\xf8\x76\x88\x2e\xee\x0c\x00\x90\x4a\x12\x3b\xc9\xe0\xf2\x07\x07\x71\x4e\xcc\x8b\x71\x18\xc0\x5a\x47\xbc\xf0\x28\x2d\x80\xab\x80\xb4\x0c\xeb\x14\x80\x8f\xbb\x7c\xe2\x59\x06\x80\x80\x46\x55\x25\x81\x27\xbf\x73\x83\x72\xfc\x8f\x1b\x9b\x68\x45\x92\x53\x3d\xf3\xec\x3a\xac\xa8\x48\xfe\x2e\xc9\xde\xea\xee\xe9\xc4\x0c\x3b\xef\x84\xc2\xa0\x1d\x84\x38\xcb\xcd\x25\x6b\xd1\x11\xbf\x7d\x41\x0f\xf5\x6b\x87\xaf\xa5\x3d\xc4\x1d\xd0\x56\x7e\x7f\x3b\x4b\x0f\xfb\x4c\x03\xb1\x72\x24\x9b\x6a\x2d\x40\xfd\xc2\xaa\x57\xaa\xe0\xec\xa2\xe6\xfb\xd5\x99\x14\xce\x37\x3c\xda\xe1\x6b\x91\x89\xf0\xb8\x48\xb7\x6b\x0d\x9d\x10\x71\xdf\x58\x2f\x10\x7d\x3d\xe6\xe9\x0d\x1e\x83\x1e\xf4\xa3\xd8\x03\x7d\x12\x86\xcf\x31\xc2\xd1\xe7\xba\xd4\x0c\xf1\x18\x74\xf8\x8e\xb6\x57\x48\x36\xac\x47\x48\xf2\xc5\x73\x48\x05\x9c\xb8\x7f\x66\xdd\x02\x72\x1e\xe7\xe6\xe7\x56\x55\x6b\x7c\x0e\x77\xc9\xe7\x69\x79\xb7\xb1\x3f\x8e\xf8\xe3\xed\x97\x26\x5f\xec\xe4\xcf\x73\x22\x56\x3c\x9c\xe6\x09\x80\xe0\xb8\xc8\x28\x1d\x01\x40\x26\x42\xf4\x00\x83\xf6\x06\x07\x61\xac\x2b\x7c\xf5\x40\x39\x80\xbd\xba\x48\xd6\xe1\x5c\x00\x0f\x36\x89\x85\xe3\xaf\x01\xfc\x7b\x65\xde\x9f\x16\x00\x08\xe9\x52\x4e\x11\xf0\x01\x08\xcf\xd7\x3a\x2e\x93\x07\x79\xa1\x49\x88\x2e\xad\x47\xe4\x18\x3f\x67\x9b\x36\xab\x77\x24\x55\x54\x17\xaa\xcf\x53\x9e\x28\xed\x70\x2b\x16\x1b\xba\x05\xbf\x64\x35\x58\x92\x9b\xc0\x85\x3f\x68\xb2\xa3\xa3\x28\x75\x04\x77\xd0\xc0\xf1\x61\x6e\xb6\xe5\x6f\x4f\x90\xad\x06\x6e\x39\x28\xb7\x67\x5e\x59\x8b\x66\xc5\x36\x2b\xff\x37\x0f\xb4\x59\xcf\x6e\xf5\x42\xda\x8d\xe1\x1d\x06\x8c\x6b\x39\x49\xa4\x1b\xa1\x08\xf6\xb5\xe9\x44\x62\xdf\x36\x04\x01\x5d\x12\x57\xd8\x25\x8d\x1c\xc4\xd0\xc7\x78\xb5\xe5\x19\xb9\x62\xde\x46\xec\xba\xf8\xd2\xd8\x1b\xcb\x19\x16\x52\x5b\x6a\xc2\x82\xbd\x1a\xac\x59\xa5\x6e\xb2\x84\xa3\x0f\xd4\xaf\x08\x36\xe1\xc3\x95\xfa\x46\x95\x32\x98\xd4\xe2\xbe\x7b\x3b\x00\x30\x1d\x92\x9a\xa0\x8e\x06\x38\x75\x49\x34\x8f\xa6\xed\x3f\x38\x88\x1e\x61\xf6\xbd\x8f\x00\xcc\xee\x0a\x31\x1d\xd0\x01\x70\x04\xd1\x73\x47\x3e\xfe\x9b\x07\x89\x7c\xac\xe0\xc3\x17\x00\x10\x33\xa0\x51\x20\x2b\x06\x8d\x51\x9f\xf4\xef\x68\x9a\x92\x6b\x42\xae\x5a\x60\x2c\x55\x49\x3b\x3c\xca\x50\x45\x3e\xb4\x84\x27\xce\x13\x51\xf1\x11\x93\xf8\x34\x9b\x9c\xa2\xe2\x64\x11\x9c\x8d\xa9\x47\xc7\xdb\xac\x2a\x6c\x82\x41\xfa\x68\x60\x5e\x1f\xc6\x41\xdb\x77\x2e\xb7\xa8\x09\x23\xa3\xd9\xba\xf4\x31\x9f\xed\x63\x97\x4e\xfb\x72\x5e\x5e\x0b\x85\x07\xa2\x78\x71\x28\x3c\xd0\x75\x19\x23\xe9\x35\xb7\x94\x56\x8a\x17\xa7\xcd\xcf\x94\x1f\xed\x9f\x70\xae\x71\xd6\x14\x8b\x61\x89\x79\x51\xf7\xd4\x34\x10\xf3\x2d\x42\xa3\xba\xce\x74\x0a\xeb\x13\x2a\x55\xa6\x60\xf6\x15\x3b\x1d\xd4\x58\xcc\x65\xf6\x09\x67\xe5\x1f\x51\xd0\x67\x36\x8e\xbb\xe1\x33\x09\xc0\x74\x52\x32\x92\xda\x07\x80\x43\x4f\x38\x97\xf6\xf0\x1f\x1c\xc4\x55\x11\xa1\x3d\x74\xff\xe6\x20\x5c\x27\x04\x50\x07\xfb\x00\x02\x1e\x09\x6f\x66\x42\x01\x44\x76\x4a\x1e\xe0\x30\xfe\x83\x8b\xa9\x57\xdd\x24\x39\x0b\xad\x09\xd1\xba\x71\x9a\xa7\xc8\xa9\x91\x33\xe6\xa6\x56\x1f\x88\x33\xfe\x1e\x2e\xc3\x7e\x54\x84\x10\x37\xc9\xf0\xb7\xd1\xfd\xb8\xe7\xf6\x47\x0b\xfa\x33\xac\xb0\x97\xcc\xf7\x74\xec\x3a\x4f\x83\xc9\x37\x0c\x7b\x82\x2c\xde\x8a\x96\xd0\x26\x2c\x38\x57\xf8\xcf\x2b\xeb\x04\x2d\x3e\x2f\xfe\x3e\x85\xd7\x83\xa5\xb5\x82\x0e\x0a\x0f\x74\xb7\x1e\xf9\x64\xc5\x33\x97\x7f\x00\x65\x34\xb8\x5a\x99\x61\xf9\xaf\x7c\x28\x0a\x0f\x84\x30\x57\xc6\xb0\xc5\x2c\x54\xcc\x5a\xb4\x60\x9a\xa3\x78\x4a\x07\x2c\x86\xb0\xfc\xe1\xec\x85\xed\x16\xb3\xd8\x67\xc1\x0a\xe7\x2f\x5b\xc6\xe0\xf6\x07\xf6\xe6\x4e\x59\x8a\xe0\x42\xfc\x19\x00\x98\x69\xc5\x48\xd4\x57\x00\xce\x36\x0a\x8e\x6c\xe3\xfc\xc3\x83\xc0\x2e\xc8\xc8\x40\x03\x80\xf4\xe7\xcb\xde\x93\x06\x60\x77\x93\x3f\xed\x80\x12\x80\x67\x0d\x3f\xfa\x50\x02\x40\x48\x82\x10\x2b\x53\x16\x40\xcc\x8c\x98\x10\xdb\x38\x40\x8a\xa8\x34\x35\xf7\x61\x80\x34\x7b\x65\x33\xc9\x56\xb8\x9b\x9e\xa7\xb5\x4d\x9d\x97\x5c\x93\xc8\x62\x3c\x64\xd9\x42\x9c\x0b\x93\x70\xb4\xf1\xdb\x8a\xbf\xef\xc9\x1c\x62\x94\x28\x8f\x8b\x76\x20\x9f\x67\xce\x2a\xc3\x3c\xb2\x40\x75\x8c\x17\x9f\x46\x23\x11\x66\xcf\x72\x2a\x11\x6b\x97\x74\x7a\xe7\x6b\xaa\x0f\xce\xb4\x1a\x1c\x5e\x70\xab\xac\xa3\xf0\x40\x77\xa7\x4d\x2a\x96\xb8\x4a\x55\x07\x4e\x9b\x56\x2c\x37\xe5\x93\xba\xbf\x98\x4d\xac\x14\xe4\x26\xb5\xe1\x2d\x78\x57\x8b\x32\x03\x28\xf9\x50\x35\x65\x56\x31\xe8\xad\xc9\xe7\x2a\x8c\xad\x7a\xd1\x0f\xe3\x25\x4b\x1d\xac\xac\x30\xa9\xd1\xcc\x85\x06\xd6\xfb\x31\xc4\x88\x8b\xb9\xf7\x6d\x24\xb1\x7a\x61\xa3\xd9\x75\xd6\xa5\xd8\xc5\xa0\x77\x59\x7c\xd6\xa7\x70\xc6\x01\x27\x00\xf6\x59\x0b\xbe\xff\xb1\x3f\x70\x79\x0b\x5e\xdb\x2e\x0f\x20\x49\x12\xaa\xde\xe5\x07\xa0\xc5\x25\x48\xbb\xe7\x10\x80\xb1\x3c\xef\xd5\x3d\xe6\xff\xe1\x83\x38\xcc\x3b\x7a\xe4\x0a\x40\x72\x8e\xe0\x17\xd6\x02\x80\x4c\x2f\xc9\xb2\x1f\x7d\xc8\x3d\x2d\x5f\x2d\x56\x05\x0f\x73\x3a\x35\x78\xd4\xde\x93\x5b\xd2\x1f\x23\xe6\x2d\xf9\x89\xcf\x63\xeb\xec\xd4\xfc\xf7\xe0\x85\x7d\x27\xfc\x6c\x53\x8d\xb1\x89\x2e\xb5\xd9\xb7\xf3\xef\xa0\xaf\x58\xb9\x77\x84\x55\xac\xad\x51\x21\x4d\xc7\x85\xea\x5c\xe7\xe2\x0d\x3a\xbf\x0d\x37\x64\xbe\xec\x30\x2a\x9a\x97\xad\x55\x19\x8e\x35\xbd\xb0\x90\x5b\xf5\x78\xc0\xd9\x7c\x79\xf1\x49\xf9\xd1\x7f\x7a\x71\xea\xe3\x6c\x6c\x56\xb7\xe7\x44\x54\xad\xd8\x60\xd7\xb6\x65\x9c\x2b\xab\xb7\xa3\x5d\xf3\x4e\xb3\x2a\x12\xb6\xdb\x8d\x76\x4b\xcc\xc9\x2b\xb4\x7b\x8f\x86\xb8\xb2\xcc\x44\xfb\x27\x98\xa2\x68\x8b\x4c\x46\x3b\x34\x96\x2e\xa2\x29\x6d\x93\x5d\x3d\xb6\x2f\xc4\x3b\x91\xc3\xfe\x2a\xee\x5c\x60\x13\x00\x8b\xb4\xc8\x8b\x2d\xfb\x01\x78\x3e\xf2\xdf\xdd\xbe\x08\x20\x35\xcd\xaf\x4f\x47\x04\xd0\x6e\xe4\x3b\xbc\xbb\x02\xc0\xfc\x2e\x37\x17\x43\xca\x46\x1e\x04\x85\x83\x48\xf0\xe7\xe6\x3e\x7c\x12\x20\x4b\x82\x8f\x99\xb9\x03\xa0\xe0\x9b\xd0\x22\xc7\x69\x80\x92\x62\x69\xb2\xc8\x5e\x98\x2c\xbd\xa2\x12\xa6\xea\x46\x6e\x2f\x18\xd2\x17\xb4\x78\x4f\x9c\x48\x37\xb7\x24\xfb\x11\x71\xcf\x43\xd1\x5e\xb1\x19\x62\x18\x1f\xf7\x99\x74\x87\xd2\x8f\x8b\x86\x76\xab\x6d\x9f\xeb\xa4\x3f\x39\x9b\xfb\x3c\xed\x6f\xce\x7c\xe5\x6d\xca\x39\xc7\xd0\xea\xf3\x80\xde\xe2\xdd\x37\xbf\xa6\xa0\xeb\x09\xd6\x98\x79\x86\x7a\x54\x7b\xbe\x5d\xd6\x82\x7d\xcd\xd5\x8b\xaf\x1d\x18\x16\xab\x2a\x5e\xd7\x30\x38\x72\x2d\x9f\x2c\x2e\x2a\xef\x74\xb8\xbb\x52\x90\x37\x51\x34\xec\xb4\x77\xf5\x68\xce\xf0\x79\x4e\xc7\xa5\x35\x44\xba\x42\x96\xbc\xb3\xcf\x5a\x4f\x6a\x5c\x1a\xce\x39\x10\x1d\x94\x78\x2b\xc5\xc4\x09\x8d\x51\x8a\x45\x25\x05\x3a\x65\x61\xc6\xa2\x24\x63\xf3\x9c\xa3\xb1\x0e\x61\x13\x31\xe2\x4e\x6f\xb1\xef\x83\xaf\x01\xb0\xd6\x09\xb4\x6c\x69\x07\xe0\xbb\xcd\x47\xbd\x43\xfc\x0f\x0f\x82\x22\x57\xf9\x2e\x11\x00\x7b\x7b\xae\xa1\x3d\x7d\x00\xde\xb3\xa7\xe7\x7e\x9c\xa3\x31\xd6\x1c\xc3\x7b\xf7\x00\xa4\xb7\x70\x74\xec\xbb\x0a\x50\x28\xca\x95\x71\xec\x28\x40\x15\x81\x8f\xed\xc4\x0a\x40\x5d\x9c\xc4\x5d\xa1\x26\x80\x86\x32\xf9\x05\x25\x3e\xf2\x6a\xcd\x65\xcd\x41\x93\x3a\xe2\x54\x31\x93\xc9\x98\xdf\x45\x5c\x70\xd2\x45\xb7\x53\x59\x23\x9f\x16\x02\x57\x63\x1b\xaa\xcb\x5e\x79\x7b\xce\x5f\x50\x6b\x12\x1a\x4d\x70\x5e\xbe\xd3\x7f\xf9\xfc\x9d\x07\x76\x81\x9f\xd3\x3b\x3b\xae\xd6\x39\x26\x7f\x9d\xb8\xd4\xde\x12\xed\xc2\xf3\x2d\xad\xb9\xe0\xc2\x90\x6b\xda\x7c\x48\xbd\x74\xd9\x01\xb7\x85\x05\xa8\x2e\xc9\x1f\x45\x91\x96\x14\xcb\x4d\x28\x3e\x98\x8c\x01\xd4\xfb\x95\xce\xbc\xef\xa9\x54\xa8\xa7\xab\x03\x59\x36\x89\xdf\x51\x8f\xd6\x52\xd2\x1a\x63\x75\xdd\x93\xd0\xda\x49\xef\xa2\xaa\x3c\xe8\xd1\x97\x13\xde\x44\x3c\x71\xb7\xc0\x38\xc4\x60\x22\x52\x51\x4a\x98\x4f\x91\xc4\x60\x05\x77\x24\x36\x35\x8c\x01\x80\x9d\x97\xdf\x83\x46\x0c\x40\xe8\x13\xaf\xe1\x8e\x0b\x00\x2a\xe3\x5c\x68\xba\x5c\x00\xd3\x3b\x67\x85\xe9\xb3\x36\x3c\x08\x21\x6f\x4f\xa0\xe9\x46\x00\x52\xc6\xb6\x55\xfc\xf8\x1c\x15\x5c\x62\x95\xde\xa5\x03\x50\x75\x8f\xfd\xfc\x8f\x73\xa4\x65\x99\x8b\x81\x25\x02\xe0\xf2\x65\xa1\x46\xee\xa3\x00\x9d\xd4\xd2\x1c\xb2\xba\xb0\xb7\xc3\x50\xa5\xd7\x48\x87\xf8\xae\x49\xc8\xe0\xae\xdf\xf1\xaf\x07\x4a\xc2\xec\x13\x33\xe2\xc7\xc6\x53\x22\x82\x13\x6a\xf6\xde\x8c\x89\x34\x28\x10\x69\xa3\xeb\x32\x0c\x92\xeb\xd5\xe9\x54\x69\x3e\xe7\x73\x7d\x92\xa6\xc7\xaf\xba\xdb\x27\xf7\x73\x6f\x57\x6d\x11\x83\x9f\xf8\x1c\xf7\xa5\xe5\x9c\x1e\x3f\xd3\xef\x61\x17\x1f\xa4\xbf\xf5\xbb\x32\x4f\xaa\x33\x4e\x8e\xf1\xd3\x5b\x1c\xac\xcc\x48\x60\xf3\xdb\xb6\x4c\x53\xb2\x12\x4d\xf4\xf3\x59\xd9\x53\x30\x13\x71\xcf\xef\xc0\xaa\x50\xee\x9e\x90\x36\xff\x13\xab\xa3\x59\x96\x21\x58\x9f\xe7\x6b\x6f\x52\xd5\x82\xce\xf8\x22\xd1\x86\x49\xd3\x01\x67\x7d\x9e\x61\x68\xe3\x99\xfc\xef\x7b\x5f\xc2\xe4\x47\x2f\xfb\x76\x7a\xf5\x61\xed\xc2\x77\x03\x70\x1e\xe0\x0d\xdb\xc6\x0a\x20\x65\xc4\xf5\x6c\xc7\x2d\x00\xad\xe0\x33\xe1\x3b\x0f\x02\x58\x15\x9c\xe2\xd9\x49\x07\xe0\xf5\x91\x35\x63\x47\x3a\x40\x74\xf4\xa6\xe8\x1f\xeb\x3f\x9f\x7c\x74\x6c\x9b\x04\x40\xe5\x18\x55\xf7\xcf\x7b\x9f\xc1\x2c\xf4\xf4\x99\x00\x3d\xcf\xd8\x54\xf6\x3f\x04\x18\x1c\xe7\xc6\x9c\x0a\x06\x18\x9a\x11\x4d\x14\xb3\x01\x8d\x3b\x7b\xe4\x9d\x0d\xf6\x2c\x19\x5d\x3f\xa3\x1d\xe8\xe5\xf1\xea\x62\x9b\x89\xe5\xb3\x94\xca\x5b\xbe\x55\x19\x3e\x45\x15\x4e\x4d\x6e\x39\xb9\x29\xdf\x2e\x1d\x29\xd1\x4d\xb5\x6d\xe6\xed\x8e\xcf\xbc\x13\x7f\x63\x74\xb5\xef\x43\x52\x7f\x0c\x7a\xb6\xa7\x2f\x29\x2e\x22\x26\xfb\x2b\xed\x15\xce\x68\xa9\xe8\xcd\xdf\xde\x35\x3f\x8c\xb4\x88\xfc\x36\x1f\xd1\xb0\x3f\x6c\x38\x52\x72\x11\x51\xcd\x46\xc9\xc1\x09\x2e\x09\xf3\x5c\xa1\x2a\x14\x0f\x74\x09\xb5\x5f\x45\xe5\x9c\x0e\x10\x0a\x35\x5b\xdb\x92\xe9\xe6\xaf\x18\x72\x74\xed\x66\xea\x13\xdf\xd6\x60\x55\x74\x6d\xa2\xb8\xb7\x46\xf0\x22\x26\x2c\x26\xcd\xfb\x5c\x60\x2e\x96\x2a\x32\xca\x13\x1b\x28\x89\x8d\x0e\xb3\x05\xe0\x79\xcf\x5d\xb1\x0d\x00\xe4\x3e\x9c\xf5\xd9\x3e\x03\x60\x90\xc6\x36\xb0\x5d\x13\xc0\xd1\x95\x09\x4d\xf3\x7e\x23\x07\x21\x0d\xf7\xab\x96\xf9\x50\xfd\x75\xef\xf5\x9a\xf7\xaf\x7a\xcf\x8d\x29\x8b\xce\x1c\xe0\xf1\x55\x0e\xed\x23\x12\x00\x13\xa6\xfc\xea\xdc\xd3\x38\xe2\x2b\x39\x29\x56\x8d\x90\x69\xb6\x91\x5e\xf5\x3d\x2e\x4d\x0f\x35\x6f\xdd\x32\x89\x8f\xcd\xe8\xf8\x7a\xb5\x17\xd5\x58\xa4\x5c\xec\xd4\xb2\x35\xf6\xf6\x45\xe3\x64\xa3\xba\xd7\xb5\x5f\xda\xad\x22\x1a\x6a\xa6\x87\x8f\x76\xb6\x05\x9e\xac\xc4\x7f\xc6\x74\xf1\xfa\x3f\x2a\x41\xcd\xbd\x6a\xe3\xf2\x43\x14\xc4\xce\x9f\x6a\x18\xf2\x6d\xc8\xa3\x5b\xa8\xbf\x70\xd4\x47\x39\xcb\x7f\x29\xb3\x2c\xdd\x3b\x22\xfd\xea\xf2\xcd\x42\x82\xd7\xf5\xd4\x0b\x2b\x5d\xe7\xf7\xff\xe6\x3f\x18\x13\x17\xd6\xe6\x52\xde\xbb\xb7\x24\x28\xa1\x03\x92\x0e\xbb\xcb\xc5\x6d\xc3\x1c\x8d\xab\x46\xd1\xc5\x22\x30\xd7\xa2\xb7\xba\x89\x45\x17\x63\x2d\xc3\x79\x5d\x96\x23\x6f\xe2\x4e\x04\x09\x02\x08\x7c\x3a\x17\xbb\xcd\x0e\x40\xb5\x9f\xed\x24\xed\x20\x80\xf9\x23\x16\x6a\x9a\xa7\x00\xee\xc1\xbf\xd6\x47\xc9\x41\xa0\x78\x10\x28\x3e\x8c\xde\xf5\xfe\x50\x72\x41\x26\x12\xa8\x7e\x7e\x5f\xfb\x28\xcd\xd2\xb5\xcb\x09\x60\x69\x3f\x57\x26\x5b\xe6\x5c\xda\x17\x94\x58\x8d\xc2\x85\x17\x07\xdf\x7e\x55\x8e\xb0\x39\x38\x20\x39\x5e\x84\x90\x0e\x89\xab\x43\x8e\xbc\x75\x3a\x9f\xe5\x97\x26\x36\x14\x1d\x3e\x51\x6d\x17\xa6\x7e\xd3\xae\x92\xad\x71\xb7\xb7\xc5\xe0\x99\xdb\x57\x5a\x98\x9d\x0d\xfb\x93\xe7\xa4\xda\xea\x9c\xb5\x3a\xbf\x7c\x1f\x6c\xc0\x38\x67\xb4\x8a\x2e\xb4\xd5\x70\x39\x47\x36\xf0\x2e\xe9\x94\xf5\x39\x67\x55\xf7\x2e\x57\x17\x4e\x3a\xd3\x55\x6c\x5d\x79\x92\xb7\xcf\x49\xa1\x94\x6f\xf5\x7d\xa6\xad\x93\x4a\x41\xe9\xda\x78\xca\x5b\xa7\x9e\x3c\x53\xb4\x7a\xd2\x45\x47\x89\x5c\x7b\x0c\x7b\xdc\x16\x87\xb5\xcc\x18\x0c\x26\xd2\xda\x01\x95\x3e\x82\x0d\x08\x33\xb4\x27\xa6\x62\xb1\xdf\x82\x1d\xed\xf3\x93\x89\x38\xcb\x00\x37\x00\xc9\x31\xf6\x3e\xda\x02\x00\x6d\x3b\xa6\xbb\x5b\x96\x00\x6c\x3f\x6f\x72\xa1\xfa\x8f\x3c\x0c\x4a\x2e\x4a\xf7\xf4\xaf\x4a\xc9\x83\xa0\x70\x10\x73\xf5\xbf\x2a\xf9\xc8\x11\x87\x2d\xf4\xcb\x99\x00\x67\x82\x8f\x65\xbe\xa5\xc1\x7b\x0a\x5f\x10\x97\xbd\x4f\x5a\xa6\x53\x70\x43\xfa\x77\xa4\x7f\xcd\xd2\x5b\xf5\xbc\x57\xfc\x75\x86\xc1\x2e\x30\xfe\x7e\x14\xd7\x9b\xf1\xe0\x43\x85\x2e\xde\x0b\xaf\x11\xa5\x62\xe5\xd7\x1c\x73\x5e\x1d\xbe\x71\xa8\x7a\xd6\xa2\x7f\x62\xeb\xec\x54\x6d\x8c\xc5\x96\x51\xda\x05\x62\x65\x81\x25\xdb\xed\xf1\xa5\xc0\x92\xc7\x96\x97\xae\xe5\x2e\x7f\xce\xcf\xb3\xca\xe9\x4c\x5a\x19\xcf\xc1\x5b\x65\x5f\x92\x5c\x9d\xcb\x30\xb0\x66\x6b\x24\xae\x3d\x4e\x91\xb4\x62\xa9\x6b\x44\x7f\x8f\x0b\xb3\x4e\xaf\xca\xc7\xb0\xc5\x26\x58\x19\x56\x28\x62\x19\x22\x78\x2c\xef\x95\x3e\xc1\x36\x85\x84\x5a\x0d\x17\x79\x63\xef\x05\x4f\x59\xf6\x14\x70\xe2\xa2\xfc\x77\x5b\x9e\xcb\x97\xc7\x3d\xf1\x79\x06\xa0\xc4\xc7\x7c\x7e\x4b\x2f\x80\x99\xd9\x31\xb7\x2d\x0b\x1b\xcf\x01\x85\x07\x2a\x0b\xfe\x7b\xfe\x3d\xb4\xfe\xb9\xa0\xf8\x30\xe6\x4c\xa9\xfe\xb8\x07\x3f\x9f\x0b\xb0\x77\x99\x8a\xea\x6d\x34\x00\x87\xfd\x11\xbd\x91\xb7\xe0\x22\x64\x27\xc8\x78\xad\x81\x84\x91\x9b\xd5\xdc\xd6\xe0\x4e\xdc\xaa\xd3\x63\x17\x92\xcd\x8b\x3d\x60\x1d\x10\x9c\x12\x58\xb6\xd2\xe6\x9f\x95\xb6\xc9\xe5\xf1\x4a\x40\xa1\x5b\x8e\xa6\xe5\xf8\x0a\x4b\x5f\x57\xfe\x6b\xe4\xb9\xe5\xe6\x77\xcd\x45\x6f\x0c\x66\x3f\x07\x2c\x8b\xe4\xdf\x30\x9c\x7c\x1d\xb9\xd2\x95\xad\x82\x78\xf0\xb8\x61\xf5\x53\x5a\xf4\x6f\xef\x05\xd3\x0d\x7b\x74\x6e\xdc\x17\xa3\xc7\x7d\xb5\x98\x43\x31\xb6\x46\x9d\x5d\x0a\x98\xa5\xf0\x2e\xe3\x8b\x97\x4a\xb1\xba\xa1\xd7\x4c\xee\x35\x3d\xc5\xc6\x86\x0c\x18\x4f\x34\x3c\xc6\x69\xf8\xb7\x18\x6b\xd7\x9d\xc6\x3d\xf3\x26\x1b\x8f\xd4\xec\xc6\xd3\x7a\x35\x9b\x70\x55\x3c\xc1\xab\x79\x4c\x02\xa8\x3c\xdb\x31\xf1\x63\x3d\xb6\x9f\x37\xfd\xfc\x7d\x32\x6c\xfd\xff\xf7\x9f\x1c\x08\xc5\x83\xf0\x9c\xe7\x57\xfd\xca\xfb\xe7\xfa\xbf\xad\xcf\xbb\xa7\xd4\x00\x8e\x9c\xa1\x31\x1a\x61\x06\x38\xa5\x7c\x90\x71\x60\x37\x54\x08\x31\xf3\x72\xb7\xfa\x91\x03\xe5\x65\x95\xc6\x4b\x3a\x89\x18\x5d\x5e\x53\xd7\x84\xef\x04\x01\xab\x06\x54\xa6\xcf\x19\x9c\xbc\xf7\x95\xd0\x4a\x47\x05\x2c\x67\x36\x75\x4c\x88\x85\x0b\xc6\xb6\xb9\x35\x81\x19\x19\x89\x1e\xb9\x73\x2f\x71\x41\xe7\xd1\xda\xd2\x1c\x4b\x8a\x9c\xd6\xdb\x15\xc1\xb5\x92\x84\x0e\x1d\xba\x8f\x65\x68\xf3\xd8\x7a\x1d\xd5\x37\xbb\x30\x66\x11\x57\x29\x79\x1f\x7a\x52\x0f\xa2\xb0\xf2\x21\x56\xfa\x6a\xb7\x9f\x60\x33\x82\xbe\xeb\x97\x0e\x18\xe1\x76\xf9\x2f\xea\x67\xf4\xe5\xe3\x62\x7c\xe9\xf4\xd5\xba\xea\xf1\xa7\x3c\x1a\xf4\x39\x3b\xce\xe2\x53\xdc\x1e\x1a\x2a\xb6\xee\xc2\x9b\xb8\x57\x1a\x6e\xbb\xf8\x0d\x3f\xe8\x5a\x04\xa0\xff\xee\xd7\xba\x3c\xd6\xbd\x30\xa9\x8a\x7f\x7f\x0e\xae\xfd\xc3\x83\xf0\xa9\xf6\xcf\xf9\x27\x25\x0f\xe4\x75\xf9\xaf\x3a\xbc\x3e\xef\x1c\x78\x07\x70\x8a\x99\x51\xf9\x92\x2d\x7c\x14\xa8\x3d\x4b\x53\x15\x08\x3b\xe5\xf6\x48\x6d\xcf\x6a\x25\x4d\xe8\x78\xe8\x8a\x47\xf0\x13\x43\x2c\x03\xac\xfb\x51\x63\x04\x45\x8f\x3c\x14\xaf\x5d\x36\x1e\x91\xcc\xe7\xfb\xda\x6c\x06\xf7\xb6\x72\x4b\x40\x19\x62\x18\x17\xdd\x89\x0a\xe2\xd4\xe5\xc5\xed\x1f\xc9\x08\x2e\xd2\xd8\x87\xad\x5f\xa4\x0d\xd1\x51\xeb\xc1\xce\x63\xd9\x82\x76\xa8\xef\x58\x48\xc1\x96\xf9\x57\xaa\x6f\x99\xdd\x89\x33\xf2\x46\x68\xf0\xbc\x39\x87\x4b\xf1\x2a\xd4\xc0\x3c\xfb\x88\x7b\xe0\xa9\xa0\xe9\x3c\xf2\x1a\xcf\xe2\x2e\xaa\x49\xbe\xcf\x89\xb7\x72\xab\xd7\x0a\xbf\x75\x15\xdf\xe0\x32\xa4\x4d\x3b\xb0\x13\x3f\xe9\x6c\xa9\x15\xd4\xd7\x4d\x30\xb0\x6f\xd2\x5a\xed\x76\x21\xc4\xd9\x49\xfd\x9b\x03\xa1\x70\x71\x94\xfb\xef\x0f\xd7\xf9\xc0\xe9\xf5\xbf\x47\xfe\xc9\xcd\x2c\xac\xcf\x71\x5e\xcf\xff\x63\xfe\xb9\x3e\xef\x68\xe7\x04\x60\x2f\x3e\xc8\x76\x21\x1f\x96\x04\x17\xcf\xec\x3c\x4f\x06\x6b\xd9\xfb\x22\x5c\x09\x53\xe4\x50\xed\x2a\x95\xfc\x40\x73\x92\x8b\x79\x23\xd2\x8c\xc2\x3f\x58\xd7\x12\x69\xa3\x7d\x1c\x82\x4c\xa6\x08\x4d\xe7\xaf\x3a\xdb\x1a\xbe\x25\x88\x36\xb4\xb9\x25\xe9\x22\xf1\x6f\xae\x1d\x74\xf7\xd3\x70\xc4\xe7\x3c\xbf\xec\x21\xa2\x72\x1e\x9f\xb0\x54\x89\x5a\x55\xa6\xc1\xe3\xf0\xba\x2e\x9b\x95\xb6\xe3\x9d\xf1\xaf\xec\x9f\x29\x85\x2c\x70\x13\xb6\xd9\x7d\x55\xb6\xf9\x68\x48\x60\xb4\x03\x95\x73\x53\xd4\x84\xd3\x76\x2f\x95\x89\xe3\x97\x09\x79\xd6\x99\x2a\x03\x4f\xa5\x09\x95\xd6\x21\xaa\xdb\x1e\x6e\x23\xcc\x5a\x9a\xaa\x2e\xdd\xdb\x4a\x98\xb4\xc4\xa9\x4e\xdf\xda\x45\xe4\x31\x17\x06\xf0\x5d\xcf\xfd\xa1\x78\x20\x9a\xd7\xd7\x3d\x94\xf4\xab\x52\xee\x7f\x13\xef\xfe\xa8\x4b\xd8\x5f\xeb\xfc\x9d\x87\x22\xb7\x3e\xff\xac\x59\x9f\x7f\x2a\xac\xcf\xbf\xfa\x01\xd8\x3c\xf6\xf1\x14\x7c\x02\xe0\x6b\x67\x65\x49\x53\x87\x1a\x59\x26\xbe\xab\x91\x12\x64\x8c\xd6\x21\x99\x01\xaf\x20\x32\x97\x69\x96\xa6\x22\x85\x7f\xb0\x10\x24\xc9\x85\xca\x18\xc7\x19\x67\x12\x6f\xa6\x7d\xb1\x98\xfc\xed\x7d\xd0\x23\x06\x35\x1f\xb6\xaa\xd5\x38\x4d\x3c\x70\xe3\x8d\xad\x94\x4a\x39\x61\xe1\x45\xb7\xad\x93\x12\x1d\xe1\xf5\x77\x33\x1b\xb2\x82\x03\x91\x9b\x50\x64\x19\xfb\x3b\xef\x82\x88\x2d\x26\xca\x1a\x77\xc9\x55\xcc\x57\x11\x33\x91\xdb\xe5\x15\x66\x9b\x88\x69\xc8\x28\xf9\xeb\xef\xc6\x88\x79\xc8\x00\x05\xd5\x89\x09\xe2\x45\xc4\x9a\x82\xc7\xf3\x28\xe2\x7d\xc3\x4f\x8a\x3a\x8f\x37\x11\xef\x20\x2c\x36\x72\xa2\x6a\xd6\xbd\x17\x14\x0f\x04\x65\xfe\x8d\x4e\xa1\xfa\x2f\x0e\x68\x7d\xbe\xd7\x4f\x99\x7f\x9e\xfb\x55\xcb\x57\xd7\xe7\x5f\x0b\x00\x27\x86\x18\x8e\x64\x0c\x02\xf0\x5d\x66\x9e\x8a\x3d\x0d\xb3\xd2\xf2\xe7\x84\x03\x0c\xc1\x53\xfd\x86\x70\xab\x2b\x37\xb9\xd7\x38\x41\xe1\x8a\x75\x15\x59\xdc\x9e\xa0\x81\x34\x3d\x4b\x22\x04\x9a\xea\xd8\x20\x26\x49\x4f\xe2\x8a\xf4\x72\xf4\xb7\x90\x4a\x73\x9c\x0c\xa6\xb5\xb3\x48\xe6\x55\xdb\x90\xe6\xea\x78\x12\xd7\xa5\x31\xa3\x1e\x95\x18\x22\xf9\x96\xb0\xf1\x2d\x45\x4f\xe2\xc2\x0b\x1b\x63\xeb\xff\x93\x7b\x88\xc4\x8d\x91\xfa\xd5\x76\x49\x9b\x2c\x89\x90\x92\x34\x32\xa5\x6d\xbe\x7c\x20\x15\xab\xcf\x4a\x6f\x9f\x3e\x4c\x1a\x56\x7d\x2d\x23\x39\x35\x49\xca\xd7\xf0\x07\x28\xcc\xa4\xfa\xcb\x87\x32\xb6\xce\x01\xce\x4f\xfd\xa8\xd8\xcf\xff\xe0\x80\x74\xff\xe6\x80\x2e\xaf\x73\x0f\x94\x1c\x00\x8a\x07\x22\xfe\x3d\x00\x75\x09\x15\x55\xbc\x33\x00\x9f\xd8\xb1\x1d\xa1\x71\x00\x52\xfe\x1c\x7c\x9e\xab\x70\x55\xd5\x81\x67\xc9\x91\x03\x4e\x22\x8a\x25\x15\xcd\x97\xc8\x37\x6c\x96\xe5\x49\xc6\x5b\xc9\x39\x5e\x64\xe5\x06\x83\x87\x64\xaf\x08\x7a\xd5\x57\xba\x0f\xc9\x6a\xc9\xb2\x1a\x74\x5a\x5e\xe4\x33\xe7\x8b\x35\x23\xd4\x77\x90\x96\x6a\xdd\xb4\x9f\x2b\x87\x90\xd6\xda\xbf\x68\x61\x15\x5d\x49\x6d\xb7\x62\x74\x1b\xe5\xe9\x49\x35\x63\x95\xba\x81\x3f\xb9\x07\x59\x1d\x85\xdf\xdc\xc3\x2f\xdf\x43\xe9\x3f\xf3\x1d\x28\xbc\x83\xd8\xbb\xd5\x73\xe4\x22\x69\x3e\x31\xe2\xf7\x6a\x72\xb6\x74\xdc\xc6\x7b\xe1\x83\xf5\xf7\xa4\x4f\x3f\xcf\x05\xd2\xfa\xf3\xff\x31\xec\x1f\xf3\xdf\x57\xeb\xf3\x5f\xed\xbf\xe7\xbf\xf9\xeb\xbe\x9c\xa4\xf5\xbe\x24\xee\x00\x60\xb5\xa6\xbb\x16\xee\x09\xc0\xaf\x7c\x94\xcf\xa7\x13\x40\x3c\xe8\xf8\x05\x97\x3b\xf0\x52\x75\x0f\x27\xca\x46\x1e\xbc\x0c\x2c\x84\x3e\x98\xb6\xc2\x61\x8b\x2f\x92\xcd\x88\x5c\xd8\xee\xc6\x2e\x5d\xa0\xef\x4e\x7e\x1c\xf4\x4a\x7e\x46\xbb\x85\x3c\x12\xf3\x5a\x1e\x34\xf7\x91\x3b\xd3\x26\x15\x83\xd5\x4c\xc8\x79\x85\xdd\xca\x1c\xca\x40\x76\xa8\x1d\x56\x75\x53\xc0\x92\x8d\x3b\x5a\x54\x53\xe5\xe4\xc8\x46\x37\xc2\x55\x56\x29\xdc\x83\x14\x9e\x2c\xfb\x8e\x56\x55\x54\xd2\x91\xec\xb3\x48\xab\x14\xf3\xbb\x0f\x5d\xe4\x19\x72\xa4\xcc\xa4\xd8\x49\x10\x21\x4f\x48\xb0\x8a\xee\x01\x57\x60\x10\xdd\x2d\x74\x0a\xde\x41\x36\xaf\x14\xc0\xad\x7d\xbf\xd6\xff\xfe\xc6\x9f\xe7\x20\x25\x0f\xe6\xf7\xfc\xf7\xfa\x3a\x07\xb6\x9e\x87\x51\xbf\xe3\x6f\x0e\x26\x6d\x9d\x17\x88\x58\x9f\xfb\x46\x28\x00\x1c\x97\xd8\xf1\xd4\xcf\x0a\x80\xf3\xf0\x3e\x17\xd4\x1b\x00\x71\x07\xe6\x3a\xfb\x66\x00\xa5\x16\x0e\x65\x0b\x36\x28\xd7\xfb\xc8\x17\x88\x50\x84\x2c\x13\x07\xfe\x1a\xfd\x1c\x70\x70\x6c\x12\xb1\xd1\x49\x03\x75\x1f\x6a\x71\x5a\xcd\xc7\xa0\x10\x72\x46\xbc\x53\xfd\x1e\x9c\x8d\xe5\x90\x2c\x56\x3d\x47\x86\xac\x0c\x99\x10\xa5\x7e\xf2\x74\xe9\x19\x59\x50\xd0\x27\x4f\xd5\xed\x95\x05\x59\x43\xf2\xdc\x65\x61\x99\x6a\x99\x83\xe4\xfe\xfe\x59\x39\x92\xd4\x11\xf2\xe3\x7b\xaf\x65\x13\x24\x0f\x90\xaf\xbe\x64\x90\x6b\x14\x0f\x27\xbf\x9e\xbd\x2c\x93\x2c\x8e\x26\xdf\x5c\x3d\x2c\xa7\x25\x16\x00\x1c\xe4\xbb\x92\x07\x44\x24\x21\x03\x44\x85\x06\x85\xe2\x60\x0c\x62\xf8\x78\xfe\xe0\x60\x7e\xee\x83\x94\xf9\xf7\x4b\xbb\xbf\x39\xa0\xab\xec\x7f\x73\x40\xa5\xeb\x5c\x48\xd6\xfa\xf3\x10\xbb\xee\x43\xf0\xcb\xfb\x55\x9d\x94\x00\x36\xd1\x52\x51\xa1\x4e\x03\x70\x54\xec\xf2\x71\x7c\x00\x20\xda\x7d\x94\xcb\x86\x11\x40\xf1\x12\xdb\x45\x63\x19\x78\xa5\x5d\x7e\x76\x5e\xff\x21\x5c\x47\xaa\x70\xcd\xeb\x5c\x83\x46\x5b\x0e\x3e\x3a\x6d\x1c\x04\xa1\x7a\x85\x19\x35\xf0\x10\xe0\xbf\x43\x38\x57\x35\x18\x22\xc2\xe3\x85\x88\x2a\x9a\x60\x92\x80\x11\xdb\xa4\x78\x1c\x6c\x33\xaf\x89\x1e\x57\xf0\x85\x53\x25\x89\x92\x28\xd9\xb7\xc0\x5f\x53\x28\x21\x28\xdd\x09\xc7\x2f\x99\x48\x6e\xa5\x70\x0f\x14\xbf\x81\xf8\x7e\x60\x19\x25\x48\xc8\x8a\xad\x02\xd5\xd4\x61\x29\x45\xd1\x3c\xe0\xfc\x7a\x4e\xbc\x43\x64\x0f\x04\xa2\xf7\x0b\x7b\x09\x0f\x40\x0d\x68\x0b\xa2\x28\x1c\x0c\x65\x1f\xa4\x9c\x03\xc3\xf9\x7f\x73\x40\x4d\xeb\x73\xfe\xf2\xf5\xdc\xa4\xec\x80\x5f\x35\x61\xe4\x57\x0d\x7e\xf2\xab\xa2\xd6\xcf\x0b\xab\x14\x80\x4d\x28\x2a\x2a\x87\xb7\x00\x1c\x17\xe8\x13\xac\xfa\x00\x04\x0a\x0f\xd0\x98\x35\x02\xc8\x6d\x63\x26\x18\x52\x01\xa8\x9f\x61\xd3\xd2\xb9\x07\x5f\xf5\xf5\x4e\x17\x69\x27\xc0\x13\xf3\x6a\xce\x72\x8d\x7b\x70\xc7\x31\x89\x3b\x5b\xcd\x03\x86\x51\xb4\xdc\xbe\x2a\x51\xd0\xe3\x8f\xe0\x8d\x57\xe6\x83\xfc\x28\x06\x81\x0f\xf2\x8a\x70\x2d\xee\x02\xaf\x86\x5c\x12\xa4\x66\x07\x09\x5e\x96\x36\x83\xea\xc2\x30\x7e\x77\x49\x6f\xa8\xa8\x52\xe4\x0f\x97\xf8\x04\xe1\x4d\x77\x84\x98\x7e\x73\x0f\x16\xa0\x37\xe0\x2f\xba\x45\x4c\x15\xb4\xee\x37\x88\x72\x89\xb8\x81\xd3\xf3\x31\x61\x51\x61\x23\x88\x78\xe7\x24\xf8\x44\x68\x01\xd2\xbe\xec\x17\x64\xa7\xf8\x70\x28\xe7\xc0\xa3\xc2\xbf\x39\xa0\xd6\xec\x75\x0e\x88\xff\x6f\x0e\x28\xa9\xfb\x57\x0d\x5b\xdf\x27\xbc\xd7\x9f\x13\xfb\x75\x5e\xc6\x68\x3d\x37\xc6\x3a\x03\x80\x3d\x97\x6e\xa7\x59\x2c\x00\xff\xb1\xbd\x2b\x86\xb4\x00\xe2\xab\x07\x03\x75\xb7\x01\x28\xb7\xb3\xf8\x6b\x21\x00\xb4\xf5\xd8\x54\xd5\x17\x01\x8c\xb7\xb0\xc7\xa9\xf1\x02\xde\xaa\xe2\xb4\x84\xb2\x1c\x80\x7d\x2d\x87\xbe\x0a\x07\x8c\x79\xc5\x73\xdd\x56\x88\x87\xd9\x80\xd4\x73\xb3\xf2\x27\xe1\x75\x78\x0d\xd7\x09\xd9\x7e\x78\x14\xff\x8e\xbb\x4e\xfa\x05\xdc\xcc\x54\xe7\xa9\x91\x78\x0b\x4f\x0a\xa8\xb9\xa9\x29\xdc\x83\x98\x1e\x0c\xd6\xdf\xe3\xb1\x16\x35\x85\xeb\x2d\xc0\x13\x2f\x72\x12\xba\xbb\x07\x78\x66\x44\x0e\x40\xe9\x0d\x2c\xff\x7e\xa1\x51\xa8\x79\x38\xc8\x17\x2b\x48\x86\xe6\xe7\xad\xbc\x44\x4a\x2e\xd6\xff\xe2\x80\x6a\x72\xfe\xde\x07\xff\xc9\xc1\xf8\x5e\xf9\x55\x5d\xd6\x73\x62\x2c\x3c\x7f\x55\x5b\x11\x80\x63\xee\x5b\x6d\xb5\x6a\x01\xe8\x38\xa9\xa8\x0c\x4c\x00\xce\xb2\xd2\x69\xe8\xaa\x02\x88\x14\xef\x67\xd0\x94\x07\x90\x77\x3b\x52\xa0\x2e\x07\xa0\x36\xcb\x52\xab\x1a\x0c\x60\xd0\x79\x42\x4a\xc5\x16\xc0\x14\xd8\x74\x55\xb6\x02\xd8\xfa\x70\xf0\x28\xd1\x02\x38\x63\x39\x5e\x2a\xc8\x02\xc9\xab\xfd\xcc\x7e\xb9\x4d\x00\x01\x8f\x4f\xcf\xc8\xa8\x00\x2e\xa2\xf2\xcc\x43\xa9\x49\xc0\xc5\xd6\x9d\x99\x92\xe8\x01\x4c\x1a\xcf\x59\x7a\x89\x1d\xf0\xe1\x7c\x39\xa7\xa6\xf8\x56\x78\x5d\x2a\xc2\xf9\x4d\x34\x17\xc6\x2f\xf8\x72\x71\x0b\x77\xc2\x54\xb3\x17\xa7\xa9\xe0\x65\xf8\x76\xc5\xf8\xec\x07\xc1\x7e\x98\xb8\xd6\xc7\x79\x59\xe0\x3a\xbc\xbf\xb9\xcc\xf9\x93\x06\x54\x91\xa0\xfa\x49\xb9\x29\xe4\xfc\x17\x07\xc1\x6f\x2a\x5f\x4f\xff\xf9\x0f\x1f\x84\xb9\x52\xe9\x91\x84\x3f\x78\x10\x39\xed\xcd\x1c\xe9\x00\x46\x8b\x06\x1f\xf8\xa4\x01\x4c\x0f\x9b\x3e\x91\x38\x0a\xdf\x4c\x15\x1c\x30\x0a\x44\x18\x34\xbe\xe7\x99\xa8\xa6\x08\xae\x48\xf3\x88\x5e\x3d\x7d\x32\xd9\x20\x3a\xb3\xd0\xc4\x90\x5c\xa7\xf3\xb6\xf2\xb3\x65\x13\xf9\xa4\x96\x56\xbb\xb1\x83\x15\xe9\x8d\xba\xc6\xcd\xa7\xce\x06\xa4\x7a\x95\xf3\x63\x49\xae\x9c\xa4\x20\xa5\xd1\xf7\x38\xb7\x47\xa4\x28\x85\xe1\x15\x1e\xb7\xfd\xa4\x65\x79\x69\x7c\xb0\x23\x03\xd9\x4a\x8e\x9d\x70\xd8\x66\x33\xe6\x9b\x1c\x03\xc1\xd4\x4a\xf4\x9b\xa5\xfc\x0e\x82\x95\xd5\xd0\xf4\x9c\xc2\x39\x82\xbe\xf5\xfd\x49\x21\x85\x58\x42\xae\xd5\xf6\xe7\x46\x8a\x67\x09\x23\x16\xe1\xa3\x06\x8a\x8f\x08\x68\xf3\x80\xfb\x99\x4a\x48\xe2\x69\xb3\x2d\xb7\x55\x94\x86\x89\x66\x26\x9e\x83\x89\x2a\x54\x44\x39\xd3\x1b\xd7\xf2\x95\x43\x89\x75\x48\xc2\x8f\xf5\x2b\xed\xfa\xd5\x07\x19\xbe\x1f\x75\xf7\x0b\xd9\x9f\xbf\x3b\xb1\x97\xc9\x8d\x6c\x3b\x06\x20\x24\x27\x6b\xb7\x0b\xb3\xd1\x07\x65\x39\x25\xfb\x23\x4f\x01\x74\xc7\x54\x03\x59\xf3\x01\x90\x28\x2d\xc9\xd3\x33\x00\xc6\x37\xf5\x7b\x79\x2d\x00\x4c\x9d\x4c\x39\x25\x76\xc1\xbc\x59\xb7\x0d\x28\xec\x87\x7a\xd3\x4c\x0f\x06\x0d\x41\x10\x32\x36\x8b\x70\x42\x9c\x25\xcf\x1a\x16\x67\xd8\x98\x4e\x90\xed\xf5\x32\x2b\x69\x6c\x6d\x7f\xf7\xa1\x5e\x7d\xe0\xf6\x49\xd7\x7b\xa4\x4c\x95\xfa\x67\xc3\x6e\x92\xa4\x60\x25\xd9\x59\x1a\xb7\x72\x92\xac\xe2\x66\x0c\xab\x7b\x23\x29\x49\x41\x18\x37\xe5\xda\x40\xe9\xc7\x52\xb3\x7c\x11\xfe\x85\xdd\xd7\x59\x23\x45\x16\x7c\xbf\x43\xe4\x7b\x21\x45\x65\xc2\x66\xbb\xe6\x71\x84\xd2\x0a\x9e\x64\x5f\xf4\x64\xaf\xf2\x56\x02\xca\x06\xf9\x00\xaf\xcc\x4b\xb8\x6a\x09\x77\xec\x54\x7a\x08\xa5\xd6\x7e\x37\x0e\xa9\x08\x13\x39\xcc\x3a\xae\x1f\x55\x79\x4d\x94\x36\x63\xe9\xb1\x51\x59\x21\x06\x9b\xec\xfb\xb3\x0f\x52\x3f\xe7\x9c\x4c\x8f\x64\x79\xa9\x49\x1b\x1c\x84\xc8\x05\x59\x1d\x06\x49\x00\x99\xef\x32\xbb\xf7\xfb\x03\xa8\xbf\x93\x2f\x3c\xe2\x08\xa0\x5f\xa4\x7c\xe0\xb8\x20\x80\x31\x8d\x46\x02\xc7\x17\x00\x0b\x71\x9d\x6c\x1e\x71\x00\xf3\x33\xc6\x04\xf1\x2b\xf0\xcc\xf2\xba\x65\xa9\xd2\x26\xc8\x30\x6f\x77\xbb\xaa\xb5\x19\x4e\x9b\xbc\x09\xbd\x8e\xf8\x4a\x6e\x44\x86\xa7\x67\x5b\x16\x90\x35\xf4\x85\x2a\x2e\xd8\xdd\x27\x7d\xd5\x56\x6f\x57\x72\x56\x24\xf1\x6a\x8c\xdf\xd9\xe9\xb9\x44\x62\x56\x75\x19\x6f\xf6\xc4\x92\xe8\x95\x9e\x7e\x79\xe4\xb5\x93\xf8\x52\xb1\x15\x3b\xe9\x3d\x40\xaa\x92\x27\xe1\x37\xbb\x14\x61\x55\x15\x94\xf1\x47\x5d\x84\xe7\x16\x14\x1f\xe2\x37\xbb\xbe\x98\x8e\x51\xa2\xc7\x87\x3b\x0d\xbc\x2a\x50\x6e\xc4\xa3\x9c\x71\xcf\xea\x94\xa3\xf1\x18\x87\xcd\x8f\x76\xab\x3c\x23\xd0\xd9\x7f\xbd\x3b\xa1\x7a\x86\x60\x6c\xdb\x7b\x03\x54\x2f\x11\xaa\xac\x2b\xfa\x45\xd4\xb4\x08\x7d\x56\x84\xab\x08\xb5\xa7\xc4\x6d\x16\x39\x9d\x63\xea\xc6\xc4\x7d\x16\x26\x1b\x7c\x14\x55\xb7\x14\xdb\x7f\x71\x10\xc2\x89\x52\xb0\x9b\x09\x40\xbe\x40\x7a\xea\xc0\x71\x00\x8d\x65\xf9\xa6\x23\x2f\x00\x0c\x57\x94\x19\x58\xcf\x00\x98\xf6\xa9\x2e\xb3\x27\x01\x58\x59\xe8\xf8\xf0\xea\x02\xd8\xd0\x23\xaf\x48\xec\x80\x11\xcb\x6f\x96\x18\xa5\x12\x70\xb2\x24\xb8\x9a\xe9\x2c\xc1\x61\xd3\x95\x10\x24\x72\x96\x1c\x6a\xac\x91\x7a\xdd\x46\x92\xf4\xdc\xf0\x52\xf9\x1b\x97\xc7\xa4\x14\x9d\x8c\x8e\x9d\xa8\x01\x4a\x1f\x88\xb7\xd4\xf8\x5e\x46\xf8\x16\x10\xfb\x94\x5d\xbe\xf6\xfa\x8a\x10\x5b\x95\x36\x63\x2b\x7d\x0d\x28\x5c\xd4\xf2\xbc\x62\x30\xae\x03\x55\x38\x5b\xaf\xf4\x12\xf7\x02\x15\xfb\x36\x51\xb9\x03\x47\x72\x5b\x7e\x11\xa2\x52\x8b\x37\x70\x3d\x30\x02\xaa\x03\xf8\x58\x17\x81\x7b\xd9\x6a\xaa\xf8\xb7\x8e\x03\xb7\x88\x6a\x33\x04\x7a\x87\xe2\x81\x4a\xf5\x74\x82\x80\x7d\x6d\xef\x4b\x0d\x26\x82\x87\x2d\xb1\xab\x44\x63\x17\x61\xc4\xea\xf5\xa5\x2b\x1a\x76\x44\x1e\xf3\xfa\x8d\x7d\x81\xc2\x41\x30\x1d\x92\x9a\xa4\x8e\xde\xe0\x20\xc4\xa7\xc4\x77\x32\xc8\x00\x28\x72\x4a\x4e\xed\xd7\x07\xd0\xcd\x91\x66\x3c\x34\xfb\x07\x0f\xb2\xa2\xf4\xf4\x54\x3d\x80\x6d\x9e\xb6\x3b\xef\x67\x00\xfb\x2a\x84\xa8\x84\xf7\xef\x1c\x29\x8a\x37\xe8\xbb\xf9\x78\xf0\x41\x93\x0e\xb2\xbb\xc9\xa1\x94\x10\x1b\x34\xe9\x3a\x82\xb3\xbc\xc2\x75\x81\xc4\xa1\xfb\xa9\x43\xdc\x9b\x91\xf8\x42\xd3\xfd\xde\x01\xdf\x7c\xa2\xa7\x9a\xca\x1b\x87\x80\x2a\xa2\x84\x72\xeb\x62\x56\x60\x2f\x85\x8b\xc2\x1f\x53\x7c\x8a\x5d\xf3\xd6\xfd\xfe\x4c\x99\x06\xc7\xea\x4d\x33\xad\xaf\x62\x84\xd3\xf2\x6a\x9c\x78\xaa\x7a\x09\x17\xe5\x49\x1a\x73\x50\xdb\x86\xc3\xba\xd3\x0d\xcf\xa9\x27\xe3\x4f\xa2\x7c\xef\x74\xab\xbf\xc2\xbb\xbb\xa6\xdc\xd0\xd5\x88\xc7\x5f\x76\x1e\xbd\xd6\xa1\xf1\x8a\xb0\xc5\x31\xac\x2b\x59\x33\x86\x60\x61\xf7\xad\x43\x55\xf3\x29\x21\xc3\x16\xd5\x76\x5e\x4b\x8b\x70\xdd\x86\x7a\x83\x8f\xa2\x26\x8b\x73\xff\xe4\xe5\xce\x4a\xb3\x6f\x35\xff\xdf\x1c\x04\xc5\x8b\x61\xb6\x4b\xa6\x93\xe9\x2e\x80\xcd\x47\xa5\x1e\x76\x17\x00\xc7\x36\x0d\x33\x1e\x24\x80\x13\x4e\xff\x8a\xf8\x7e\x98\x70\x68\x36\x53\x54\x2a\x01\x19\xdb\x61\x87\x78\x7d\x03\xf2\xa0\x55\x85\xff\x7d\x73\x53\xb2\xb0\x69\x7e\xf2\x73\x7b\x34\xa9\x02\xc9\x59\x26\x8a\xb2\x22\x51\xeb\x05\xb5\x2f\xf8\x94\x13\x53\x34\xd1\xf7\x0d\x03\x22\x09\x68\x75\xfa\xc9\xe9\x90\x2f\x04\xac\xf2\xe7\xe5\xfc\x60\x32\x71\xaf\xf2\x19\xcc\x40\xd0\xc2\x4a\xb0\xb2\x3d\xd6\xca\xbf\xe1\xf3\x67\x15\x5f\x6c\x9b\x9f\xc7\x64\x9b\xea\x27\x2c\xd1\x57\xe7\xf9\xb0\xba\x36\x8e\xd1\x57\xfe\x51\x94\x46\x13\x0e\xe9\x73\xe6\x9e\x90\xe6\x31\x5c\x9f\xe7\xf5\x1b\xb2\x9a\x24\x3c\x8b\xbb\x79\x5f\xb4\x96\x0f\x3e\xdd\xd5\xa9\x3b\x52\x7b\x13\xfe\x96\x33\xa9\x83\x53\x5b\x85\x70\xc4\xd1\xb7\xa5\x5a\xfb\x23\xc1\xdb\xee\x7d\x23\x9f\x8e\x35\xa1\xcb\xa6\x7b\x83\x8f\xa2\xc9\x17\x7b\xfe\x93\x83\x68\x97\xe4\xa4\x91\xd9\xe0\x20\x28\xb9\x18\xea\xc9\x62\x3d\xfb\x19\x00\x0c\x55\xc4\x77\x30\x12\x36\x78\x10\xfb\x1a\x85\xde\x53\x01\x1b\x5c\x8c\xeb\x88\x6e\xb7\x18\x3d\x7c\x72\x95\x35\x2e\x54\x9c\x07\x46\x87\x28\xfb\x53\x88\xd3\xe4\x2c\x1b\x8c\x6f\x9a\x15\x03\x69\xce\x82\x27\x51\xd3\xf9\x3e\x49\xdd\xe8\x7d\xa9\xae\x97\x24\x31\x53\x7f\xbe\x7d\x21\x50\x9e\xb0\xa8\xad\x3b\x7c\x34\x6c\x3f\x21\x48\xdd\xe5\xbd\x61\x04\x91\xa0\xa5\x72\x1e\x4d\x13\x19\x4a\xf1\x46\x2d\xac\xa8\x48\x62\x8f\x05\x16\xcd\x18\xab\x7e\xc4\xca\x06\x56\xbd\xda\xa6\x1e\x84\x8d\x0a\x78\xf1\x58\x58\x93\x06\xfb\xc2\xdf\xe9\xfe\x09\x2d\x4e\xdc\x71\x5f\x32\x85\x87\xea\x3f\xa1\x5d\x8d\x1b\xf6\x3a\x76\xd5\x5a\x47\x0b\xcf\xe3\x9e\xd2\x71\x45\x97\x15\xef\x88\x12\x6c\x8b\xd2\xe5\xc5\x8f\x3b\x2f\x37\xa9\xea\xbe\x24\x30\x38\x19\xd7\x1b\xe8\x9d\x21\x58\xda\xaf\x6d\xf0\x51\x34\xb5\xa2\x01\x3f\xcf\x89\x55\x91\x3a\xda\xfd\xff\xe6\x20\x34\xfd\x84\x5a\xf6\xac\x6e\x70\x10\xb6\xe3\xe2\x85\x47\x9f\x00\xb8\x54\xc9\x87\xb1\x8b\x02\xb8\xd7\x29\xb7\x70\xd1\x02\x78\x72\xe9\x44\x88\x33\xc0\x37\xf7\x61\xe4\x67\xc5\x2f\x40\xef\x22\x60\xdb\x87\x94\x25\x87\xda\xef\xf0\xd2\xb7\xde\x4b\xaa\xb3\xd2\x8c\xf7\x46\xed\x25\xe2\x4c\xec\x4a\xd2\x7d\xaf\x12\xe5\x0c\x9e\x76\x6c\x0a\xe1\x21\x94\x6a\xf7\x3f\x88\x89\x98\x26\x6c\x55\x2f\x9d\x19\x8b\x09\xc6\xaf\xa8\x32\xa2\x4f\xc4\x88\x52\xf2\xc2\xbe\xd4\xa8\xa9\x60\x4c\xc3\xae\x4d\x6e\xd1\x60\xc7\x74\x86\x16\x3f\x3b\xa0\x79\x13\xf3\x2d\x04\x86\x89\xda\x07\xb1\x6e\x41\x05\x94\x9c\x30\x0a\x0f\x75\x35\x50\x77\x10\x97\xef\xb3\xa5\xc3\x5f\x2f\x1f\xf7\xd6\x4b\xa5\xed\xb5\xde\x33\xbc\x88\xfb\x7c\x63\x9c\x81\x1a\xde\x1b\x95\x5f\xa7\xa6\xff\x09\xbf\xe8\x7c\xa3\xfa\xa4\x81\x34\x41\xc5\xf1\xe8\x8f\x3e\x48\x5c\xfb\xb9\x2f\x30\x4b\x71\x53\x07\x6f\x78\x10\x84\xf7\x08\x8b\xd0\x8b\xff\x07\x07\xd1\x29\xfc\x94\xb1\x10\xc0\xfe\xa6\xc8\xd3\xc3\x0b\x00\xee\x3b\xa4\x03\x4e\x72\x00\x78\x8b\x2a\x19\x73\xed\x06\xf0\x75\xd4\x5c\x10\x9d\x80\x55\xef\x38\xc3\x15\xc5\x40\x60\x46\x85\x5a\xe7\x22\x2c\xc9\xb2\x8e\x9c\x9e\xd4\x76\x92\xa4\x78\x1b\xbe\x98\x20\xf7\x04\x62\x8b\x69\x67\xf1\x87\x80\x21\xc2\x73\xc3\xd9\x0e\xbb\x88\x1d\x84\xa3\x3a\xbe\x8f\x8e\xc7\xac\xe1\x63\xd4\x07\x3f\x3f\x4f\x38\x43\xe1\xa2\x96\x18\xd5\x2a\xd0\xfb\x62\x75\x67\x12\x34\xa4\xd1\x85\xd1\x61\x13\x56\x9a\xd3\x18\xc6\xc8\xfc\x91\x73\xda\x13\x98\x94\xf0\x91\xbb\xfb\x74\x0f\x62\x3e\x86\xf1\xdf\x90\xd5\xfd\x8e\xd5\x0d\xd9\xd2\xeb\xa3\x67\x80\xdb\xef\xef\xdf\x79\x4e\x3f\x0e\xa7\xe8\x97\x42\xe1\xa1\x1a\xfd\x0c\x6d\xf0\xbb\x3d\xcf\xd7\x65\x1a\x7e\xc0\x4b\x79\xd8\xd7\xb0\x18\x4a\xe3\x27\x5d\x0a\xaa\x72\x0c\xfa\x09\xbc\x8e\x3f\xdf\x22\xc5\x57\x7e\xf6\xe1\xb4\xc4\x23\x6a\x57\x80\xd3\x20\x3c\x4e\x7b\xef\x8f\x3c\x08\x29\xc1\x2d\xbb\xcd\x00\xf4\x2a\x04\x34\xf7\x54\x02\x58\x6d\x17\xd2\x65\x54\x07\x70\xd1\x17\xb5\x39\x7a\x1f\xc0\x2b\x4b\x5c\x8b\x05\x0b\x10\x70\x52\xee\xed\xd9\x49\x80\x20\x1f\x75\x3e\x91\x16\x58\x09\xa0\x31\x30\x50\xa2\x87\xb3\xde\x28\x8b\x55\xc4\x76\xd2\xaa\xcb\x25\xb7\x34\xc7\x79\xd2\x51\x3b\xae\x18\x71\x1f\x69\x22\x9f\xf9\x97\x22\x9f\xd0\x04\x82\x1f\x62\xb9\x43\x22\x5a\x13\x9f\xa8\xcb\x33\xf2\x39\xd1\x1c\x77\x57\x43\x67\xee\x7b\xaa\x30\x56\x57\x0d\xb5\x26\x90\xa8\x40\xc9\x0b\x9b\x54\xd5\x6a\x5f\xfb\x14\x3f\xf2\xf4\xb5\x8e\x32\x3a\x39\x56\xe4\x5e\x93\xee\x08\x46\x26\x92\x70\xd3\x5d\x5f\x04\xe3\x1b\xa9\x70\x8d\xc7\xe0\x20\x06\x1f\x96\xd8\x39\x6f\x10\x82\xed\x0b\x62\xb9\xa4\x69\x18\x8a\x3b\x1c\x40\xd7\xf4\x04\x51\x8b\x93\xf1\x37\xac\xd7\x44\x32\xe2\x3a\x7c\x1c\xaa\x45\x90\xab\xf8\x5d\x5e\xbb\xcb\x92\x8d\x86\xf0\xd6\xee\xaf\x4b\xdc\x8d\x6c\xf1\xb7\x5c\x7f\xbe\x2d\x8b\xfe\xf4\x56\x53\x38\x88\x7f\x7a\x10\x54\xad\x04\x35\x18\x78\xff\xe0\x20\x76\xf3\xb9\xed\x17\x03\x70\x1b\x14\x4c\x3d\xb4\x06\xe0\xff\x46\xdc\x80\xf5\x36\x40\xa8\xbb\x4c\xd8\xd9\x9d\x00\x11\xfe\x2a\x34\xc2\xa7\x01\x1b\x96\xa2\x5b\xae\xb4\xf9\xb7\x37\xe8\x35\xaa\xc9\xc5\xdb\x59\x8a\xf8\xc9\x21\x20\x72\x8f\x9f\x1e\xe1\x81\xe5\x50\xc1\xa7\xc8\x53\xf8\x59\x23\xdd\x0e\xf9\xf8\x47\x38\x9c\x6e\xd9\x13\xe3\x54\x69\xdc\x29\x0d\xbe\xa5\xf3\x99\x87\x16\xd7\x34\x2a\x56\xe5\xd2\xdc\x3f\x60\xb4\x08\xab\xcd\xa9\x89\xcf\x79\x74\x07\xd7\x0e\xa4\x14\x52\x78\xa0\x9b\x18\x83\x31\x34\x2a\x7e\x3b\xc5\x8f\xd4\xe5\x84\x48\xc6\x34\x46\xbc\xa1\xe4\x84\x35\x71\x23\x3f\x61\x47\x83\xcc\xea\x32\x8d\x1e\xe1\x8e\x07\x44\x57\xb5\x19\x73\xe0\x2e\xf9\x3c\x2e\xa7\x35\xf1\xc4\xf5\xfa\x0c\x94\xe8\x1a\xcf\xe1\x95\x3d\x6e\x17\xf1\x18\xdb\xe2\xaf\xba\xfd\xb4\x2d\x0a\xf3\xfe\xe8\x03\x65\xfe\xcf\x2d\xc2\x9f\xbf\x5d\x1a\x40\x72\x8c\xdf\x9b\x6e\x1c\x40\xe3\x21\x7f\xcc\xee\x77\x00\xa6\x6c\x3c\x9d\x7b\x18\x36\x38\x08\x6f\xb4\x80\xc4\x61\x73\x80\x50\x27\x11\xef\xe3\x46\x00\x31\x85\x12\x36\x1c\xd1\x00\xb1\x8d\x8a\xcc\x82\x16\x00\xb1\x77\x34\xeb\xe4\xef\x83\x58\x44\xa9\xd1\x6b\xc3\xfb\xa4\x25\xbf\xe3\x0e\xaa\x4e\x75\x44\x4f\x17\x8d\x90\x6f\x41\x6b\x04\x15\xeb\xf9\x7c\x44\x6c\x06\x7e\xaf\xf1\xd4\x15\xf1\xd4\xcf\xb8\xfd\x7a\x71\x63\xcf\xb2\xf7\x60\x05\x35\xc5\x97\x85\xf3\x86\x3f\xca\xea\x20\x56\x68\x72\xc6\x5f\x2e\xeb\x7d\x59\x71\xca\x61\x7e\xe4\x6b\x50\xb6\x9a\x90\x3e\x75\xbb\x03\x21\xbe\x26\x90\x2a\x75\x4d\x0a\xb9\xbc\x36\x92\x34\xd4\xd9\x67\x94\x87\xbe\x1c\x17\xda\xa2\x6a\x12\x80\x91\x8f\x1e\xaf\x7f\x63\x5a\x8d\x69\x8c\x7c\x5c\x43\x36\x0d\xc6\x3a\x84\x86\x55\xf6\x9a\x96\x62\xa7\x82\x0a\x4a\xa5\xcd\x24\x70\xba\xfe\xf7\x0b\xe9\xcd\xc6\x71\x9d\xbe\x7c\xf9\x5c\xa6\x24\xbc\xa2\x27\x73\x76\x8f\x59\x3e\xbe\x1e\x25\x0d\x40\x15\x25\xf8\xf3\xbc\x60\x1e\x11\x52\xa2\xee\x03\xe0\xef\xe0\x8d\xd9\xc1\xbd\xe1\x41\xd0\xb9\xc7\x7d\x7f\x97\x3f\x80\xf5\x26\xee\xa4\x3d\x6e\x00\x28\x5b\xce\xf0\xbd\xea\x00\x81\xf6\xdc\x87\x0e\x4c\x02\x44\x8b\xf2\x1f\x3b\xc6\x0c\x90\x1c\x20\x7a\xe4\x54\x09\x40\xda\x69\xd9\xed\xfc\x54\x00\x29\x8f\xd4\xfb\x15\x1e\x81\x62\xe2\x71\x43\x2e\x43\x1d\xd2\x83\xd0\x5d\xb6\xcf\x5c\xde\x12\xde\xbb\x77\x07\x9c\x08\x07\x7c\xbe\x3d\x7f\xee\xee\x64\x6a\x9c\x98\xe9\x6c\x87\x7b\x76\x0b\xa6\x57\xbf\x60\xbc\xa3\xf0\xeb\x5c\xb7\xee\xd9\xc5\x2b\x25\x05\x13\x1a\x06\x33\x4b\xc5\x45\x91\x8f\x6e\x23\xd5\x97\xed\x0a\x78\x6e\xb2\x1a\xa7\xaf\xf8\xe5\x86\xf5\xf6\x98\x3c\x58\xd5\xcd\x3a\xd1\xde\x64\xa6\xb7\x76\x2a\xad\xf3\x5f\xf9\x58\x28\xcb\x2f\x68\x62\x1c\x6b\x99\xaf\xa5\x05\x66\x34\x32\x92\x92\x8f\x95\xf7\xc9\x4a\x0a\xfb\x3d\x68\x24\xa7\xc8\x12\x8d\x73\xf4\x6f\xc8\x90\xb2\x2a\xc0\x8d\xfb\x34\xa5\xef\xb4\xbc\x8b\x57\xf1\x74\x06\xd8\xa2\xc6\x4f\xfa\x79\x4e\xe4\xf1\x27\xd0\x58\x01\x08\xac\xf1\x0a\xef\x50\xfc\xb7\x07\xc1\x6e\x99\x7d\x90\xae\x79\x23\x0f\x22\xd2\xfb\x6c\xf0\xfe\x7d\x00\xc9\x21\x3c\x3b\x8f\xf4\x02\x64\xd3\x0b\x5a\x9f\xdc\x06\x70\x9e\x49\x3c\x97\x8b\x15\x20\xff\xa5\xa2\xab\xf4\x13\x30\xcc\xe2\xd2\xb5\x30\x50\x20\xf5\x27\x3c\xb0\xf8\xea\x3a\x49\xd0\xf7\xe3\xf0\x52\x8e\xe9\x44\x8b\xba\x78\xa5\x8f\x65\xe2\xbe\xfa\xdb\xca\x34\xeb\x17\x1d\xfc\x90\x63\x66\xf6\x88\xab\xe2\xc4\x6b\x7b\xa4\xfa\xfc\xad\x9a\x80\x61\x84\xa9\xd9\xc2\xbb\xca\x87\xfd\xef\xcd\xbf\x2e\x92\xca\xe2\xba\x4a\x2d\x99\x96\x91\x85\x2f\x9a\xc7\xad\xb9\x57\xfc\xf2\x06\xea\x4d\xac\xaf\xaf\x06\x65\xfd\x3f\xc2\xfe\x3a\x2a\xaa\xf7\x7b\xff\xc7\xc7\x42\xec\x2e\x44\x52\x90\x90\xee\x1c\x66\x86\x18\x60\xe8\xee\xee\xee\xee\x2e\x03\x41\x44\x41\x40\x54\x54\x2c\xc4\x00\x51\x11\x51\x11\x11\x05\x95\x50\x50\x10\x03\x45\x44\xa4\x67\xe6\x9c\xb3\x7f\x0b\x98\x31\x9e\xaf\xf7\xe7\xf7\xfd\x6b\x2f\x5c\xb8\x16\xfb\x3e\xe7\xbe\xcf\x99\xb9\x1e\xfb\xba\x72\x2a\xf2\x9d\xa8\xd3\x1c\x79\x2d\x27\x6e\x39\x9b\xcd\xa8\x66\x3a\x31\xfd\x70\x8e\xa4\xb9\x64\xcc\x3a\x26\x27\x30\xfd\x70\xf2\x8e\xbb\xd8\xcd\x1d\x8c\x49\xc8\xd9\xe1\x7c\x93\xaa\x12\xb1\x25\x8b\xc5\x39\x9a\x7a\x36\x54\x29\xad\xdc\x25\x90\xda\x17\xfc\x06\x60\xcd\x73\x09\xff\xf9\x75\x10\xd2\x15\x9f\x59\x99\x05\xa0\x58\x2d\x2a\xbc\x3a\x0e\x40\x4f\x50\x98\xb2\x96\x05\xc0\xb6\x9b\xaf\x6b\x0d\x1b\x80\xdf\x16\x9e\xeb\xab\x91\x3f\x79\x10\x99\x87\xf6\x7e\xdf\x48\x02\xc8\xbf\xb2\x6f\x6c\x6b\x1d\xc0\x89\x75\x62\x2a\x1c\x1d\x7f\xf2\x72\xca\xcb\xd4\x58\x95\x88\x10\x50\xaa\xac\xab\x6d\x64\x86\xd6\x1d\xf9\x66\x79\xdb\x47\x64\x72\x4f\x8a\x9b\xd7\xf7\xd4\x55\x1f\xa6\xc2\x56\x26\xfd\x2c\x6c\xed\x0a\xf3\x3b\x5c\x3e\x7b\xd2\xa8\xad\xdc\x63\x73\x53\xd9\xe9\xda\xe6\x72\xa7\x86\x8f\xed\xe7\xf5\xea\x8a\x9c\x6f\x8c\x89\x54\x19\x5c\x2a\x75\x93\xfd\x79\xb1\x72\xc5\x99\x72\xf7\xaf\xe3\x43\x65\xfb\xcb\x96\x7b\x5c\x9a\xd0\x3f\xce\x5e\x5c\xea\x29\x33\x19\x5d\x98\x59\x70\xc3\x13\x3f\x75\xf7\xd0\xee\xc3\x85\x5e\x9b\xa7\xb7\x1c\xa8\x3c\x30\xe2\x29\x37\xc3\x9f\xe5\xc8\xf4\x81\xc9\xc8\xf3\xf4\x99\x3d\x9b\x44\x49\x59\xe6\x55\x3f\xc7\x92\x20\x9c\x90\xe1\x75\x78\xae\x31\xfa\x7c\xc2\x37\x0f\x84\x8a\x8f\x30\x8a\x1d\xf1\x18\xa5\x3e\x0c\xb9\x0a\xb0\x49\x4c\x74\x81\xa7\x65\xea\xff\x78\x03\x61\xd2\xaa\xcf\x00\x46\xdf\xf8\x28\xab\x3c\x01\x5c\x47\x78\x54\x57\xdd\xfb\xe3\x83\x90\x06\x2c\x97\xe7\x7f\xff\xc8\x11\x8e\xe5\xab\x0b\x00\x4a\xc6\xb8\x97\xaf\xcf\x05\xa8\x3a\x2f\xb0\x6a\xc7\x4b\x80\x4b\xb2\x62\xb7\x79\x75\x00\xae\x8c\x28\xde\x95\xe3\x81\x1b\x57\x14\xd4\xc5\x74\x2f\xcc\x26\x9c\xd9\x6e\x2c\xe0\xd9\xf8\x31\xb2\xf0\xb3\x4b\x66\xf2\xd9\xe7\xd9\xe9\x05\x11\x4d\x45\xec\xf7\x1a\x63\xa5\x0a\x64\x4e\x5d\xaa\xdd\x1d\x76\xed\xc6\x93\xf3\xbc\x17\xb8\x02\x0f\xf4\x70\x5d\xea\x2f\xbf\x1b\x20\x3b\x4a\xba\xd4\xcb\xcc\x03\x3a\x22\x1e\xd8\xfb\xf3\x75\x65\xd4\x81\x9e\xc0\xd6\x5f\xba\x27\xa3\xb3\xaa\x82\x28\x13\x45\xc5\xd5\x19\x19\x81\x4a\x93\xaf\x0b\x0a\x93\xf9\x83\x38\xa7\xba\x0e\x89\x25\x72\x05\x1a\x4e\x37\xe7\xd4\xc5\x94\x06\x1d\x9d\xd1\xca\xe2\x8e\xb9\x14\xd0\x3a\xbb\x21\x75\x38\xfa\xa8\xff\xd4\xec\xd9\xa4\x9c\x28\x82\xdf\xd7\x39\xb3\x38\xf7\xb0\x43\xfe\xd6\x73\x43\x51\x83\xc1\xa6\xfe\xb6\xd4\x88\xb0\x21\x00\x5e\x4c\xcc\x7f\x85\xd0\x1f\xfd\x5f\x73\x1d\x7f\x22\x6b\x21\x80\x8d\x21\xcf\x72\xd6\x7c\x00\xaf\xe1\xe5\x11\xb8\xbf\xe6\xdf\x99\x73\xbf\x4c\xfd\xf7\xc2\xa5\x25\x0b\xf3\x0a\xd7\x1d\x39\x5f\xaf\x7f\x09\x70\xa7\x4c\x70\xfb\xee\xcb\x00\x4d\x17\xa4\xc4\x45\xd4\xb1\xad\x4d\x39\xaa\x63\x5a\x07\xbf\x7e\xbb\xb9\x96\x32\xe4\x1a\xf0\x7a\xf7\xf9\xab\x76\x92\x71\x97\xee\x79\x95\xf4\x06\xde\xc8\x87\x2a\x9b\x83\x3b\x32\xf1\xa7\xf1\xc7\x2e\x67\x4a\x9e\xa3\x5c\x5c\x7e\xc0\x38\xf9\xd9\xd3\x0d\x57\x0d\xd2\x4a\x13\xe2\x47\xdc\x6a\xf5\x92\x83\xe3\x43\x46\x69\x17\x33\x13\x7e\xc5\x99\x8f\xc1\xd9\xf4\x38\x8d\x38\xd5\xf1\x8b\xe5\xf4\xe8\xbb\xb1\xc9\x13\xb6\xc7\x5b\xa2\xae\x47\x27\x4e\xc6\x1d\x95\x8b\xf4\x8a\xd2\x9c\x8a\x3e\x3c\xc2\xcc\xbf\x09\x0f\x0a\x6b\x9e\x21\x64\xe9\x85\xd8\x85\x37\xcc\x1a\xa7\xc4\x85\x70\x84\x29\xcd\xd6\x27\xf1\x07\xaf\x0d\x95\x9c\x33\x89\x4b\x08\x22\x84\x64\xce\xdd\x8e\x1e\x0f\x68\x0d\x11\xa3\x6a\x45\xa8\x01\xf0\xbb\x0b\xcc\xae\x30\x03\x50\xdc\xc5\x8f\xac\x74\x02\x30\x14\xe4\xc4\xad\x68\x01\x70\x5c\xb3\x22\x63\xbe\xbf\x30\x86\xee\x99\xb9\x6b\xb1\x16\x17\xe2\xfe\xe1\x20\xea\x0e\x33\xf4\xaf\x82\xe5\x22\x0b\x73\xb0\xdb\xb9\x9a\x36\xde\x00\xe8\xaa\x17\x39\xc2\xb7\xfd\x67\x73\x47\xa4\xa2\x3b\x21\xa7\x6f\xe3\xe3\x73\x64\x37\xfb\x15\x8f\x1e\xdf\xf9\x61\x81\x85\x3f\xbc\xb2\xe9\xda\xa4\xf7\xd3\xdc\x03\x45\xcb\xab\x5e\x24\xc5\x9f\x8c\x4d\xef\x3d\xb5\xa4\xc2\xe5\xec\x85\xd8\x77\x65\x22\x0f\xd9\x2e\x28\x87\x19\x97\x14\x7c\x69\xba\x18\x17\x5c\x5b\x3c\x36\x96\x5a\x55\x18\xdc\x5c\xa0\x31\x2e\x74\xca\x35\x28\xe8\xb0\xc8\xaf\xbe\x12\xaf\xc0\xf4\x03\xb8\x49\xc5\xa2\x8d\x01\x27\x72\x0e\x4d\x99\xe5\xdb\x05\x04\x65\xfa\x4c\x0b\x1e\x28\xf2\x7b\x96\x6e\x3a\xe3\x96\x19\xe8\xc7\x9f\xda\x36\x03\x69\x4a\xbf\xb9\x8f\xe3\x49\x2f\xe7\xc4\xe2\x8d\x98\xdc\x87\xf7\xcf\xb8\x21\x2a\x5b\xa4\xbf\x57\x58\x5c\x3c\xb5\x2a\xb4\x02\x40\xb0\x80\xff\xe4\x8a\x08\x00\x82\x25\xb7\xe7\x8a\xfb\x00\xa6\x92\x6b\xc6\xe6\xfb\xf1\x1e\xc4\x59\xe1\xfe\xca\x41\x60\xea\xdf\xcc\xb9\xd7\xba\x02\xdc\x3f\x7e\x10\xdd\x6a\x8b\x75\x28\x6d\x17\xb6\xe2\xe2\xb4\xe7\x67\x07\x01\xd5\x3d\xda\x43\x72\x03\xe6\xb2\x56\x0a\x9f\x9e\x93\x7a\x46\xd4\x39\xcd\xd8\xeb\xd7\xbc\x28\x35\x39\xe8\x47\xad\xe8\x6a\xb9\xeb\xd6\x9f\xba\x34\xb3\xa7\xf1\x58\xcc\xcd\xa3\x5e\x51\x6f\xef\x98\x97\x4c\x94\xc6\x05\x38\xdf\x8e\xbf\xbf\xa6\x42\xd4\xa3\xb7\x4e\x6f\xa8\xa9\xb2\xde\xed\xd1\xb5\xe7\xe3\xbe\xe5\xd1\x6e\xf1\x17\x2b\x27\x78\x8f\xfb\xb9\x59\x9e\xed\x9c\x2c\x2a\x68\x74\xe7\x2f\x77\x9d\x3a\x74\xe8\x9a\xdb\x68\xe9\xb6\x69\x97\xdc\x11\x37\xf7\x63\xb7\x66\xd2\x32\x74\xdd\x8d\x0a\x47\x67\x4e\xa5\x3f\x71\x97\xca\xdf\x34\xeb\x99\x5c\xe8\xfa\xfd\xe0\xf3\x39\x93\xb8\xbd\xae\xab\xf2\x66\xe6\xa6\xa2\xb8\x5d\x2a\x72\xe8\x54\xf7\xf0\x7d\x2e\x45\x59\xc6\xd4\x67\x21\xce\xce\xcf\x33\x66\x69\x8a\x81\x92\x00\x12\x7e\x9c\xfe\xcb\x6e\x03\x90\x56\xaf\xe5\x9f\xef\xc3\xfe\xe8\x62\x3f\x4c\x0e\x84\xb9\x0f\x2a\x18\xf3\xdf\x37\x92\x99\xd7\x1f\xf7\x0f\x07\xb1\x38\xff\x38\x97\x36\x95\xb6\x89\x8c\xc3\x7d\x75\x9c\xda\xcb\xeb\xb0\xcd\xa6\x5b\xf2\x67\xb4\xa4\xa6\xb8\xda\x83\xab\x5f\x87\xd5\x4c\x74\xf2\x2f\xd9\x7c\xc8\x36\xf8\xee\x92\x72\x54\xa0\x2f\xd9\xa9\x22\x8a\x2b\x8e\xbb\x4b\x2b\x7c\x2c\x97\x3b\x20\xfd\xd5\xd7\x62\xa1\xfc\x24\x37\xd9\x97\x66\x77\x36\x1c\x2d\xb7\x8b\xef\x14\x7c\x7f\xb2\x58\xda\x3a\xe3\xd9\xbe\x89\xb8\x22\x4f\x9b\x9b\x0f\xdc\x27\xcf\x1e\xd9\x6d\x5b\x7e\x9b\x77\xaa\xe6\xc0\x3b\x5b\xad\xeb\xea\xd3\xd4\xcc\x21\x3b\xf9\xcb\xc6\x33\x19\xe9\xda\xcc\xbc\x13\x3b\x83\x33\x36\xb3\xb3\xf1\x89\xcc\xbc\x13\xdb\x2f\x27\x57\x50\x65\xc3\x1f\xdb\x85\x9e\x58\x4f\xf5\x09\x8b\xb2\x97\x39\xa6\x48\xcd\x0e\x6d\xb2\x5b\x57\x58\x4a\x53\x0f\x88\xb7\x93\xcd\xaf\xa4\x15\xf8\x09\x02\xa8\x3c\xe1\x28\x59\xae\x00\x60\xd0\x81\x9b\xf9\x5b\xff\x67\x72\x20\xcc\x1c\x04\xe6\xfc\x37\xd3\x07\xa0\x7b\x09\xee\x2f\x0e\x62\xae\x8b\x9a\x3e\x5f\xbf\xce\x02\x2c\x1f\xc4\xe1\xde\x0e\x01\x70\x68\xad\x85\xb6\x55\x00\xa2\x6a\x7c\xce\xb7\x7a\x69\x5e\xca\x53\xaa\xb5\x95\x42\x53\xde\x94\x7c\x0b\x95\xdc\x86\xb1\x69\xbb\x1f\xbe\x7d\xa1\x11\x23\xe9\x21\x9c\x09\x4e\x1e\x5e\x23\x89\x85\xe2\x69\xf7\xec\x24\xbe\x91\x6f\xd1\xb3\xed\xcc\xb4\xbf\xb9\xf7\x49\xe5\x09\x1a\xc5\x7d\xea\x9a\xba\x9d\x8b\x33\x56\x7f\x53\x35\xdd\x91\xe1\x64\x72\xe7\x45\xd4\x8c\x43\xda\x6e\x53\xd3\x16\x9b\x59\xc9\xa4\x75\xa6\x56\xf7\xbf\xcc\x6d\x8a\xd5\x32\xf3\x6d\x90\x99\x33\x8a\xd9\x6e\x6e\x75\x9d\x32\xd7\x11\xa9\x65\x3e\x70\x19\xa3\x6a\x86\x85\x59\x04\x56\xb3\x53\xb3\x43\x3a\xcc\x9f\x56\xb5\xd2\x84\x03\x6c\x2c\xe4\x2a\x07\x68\x11\x7e\x44\xf3\xd0\x8a\x0e\xda\x0f\xaf\x33\x16\x5b\x4f\x72\xd1\x39\x3c\x25\x00\xf0\x35\xcb\x29\x0b\x1c\x48\x36\xee\xff\xaf\x1f\xc8\x6f\x0e\x24\xf1\xef\xfe\x11\x22\x6c\x5c\xe8\x9f\x31\xf7\xde\x7d\x91\xa1\x7f\x88\x00\xec\x61\x59\x73\xfc\xf6\x5d\x00\x91\x1c\x1e\x8e\x0b\x05\x40\x51\xd6\x91\xab\x3b\x76\x0e\xe3\xd2\xe9\xa3\xac\x4f\x55\x45\xd2\x6c\xd2\x1c\x05\xfc\x43\x69\xd5\x01\x7d\x41\xa2\xce\xe2\xd4\xae\x43\x9b\x23\xfc\x2c\xef\xcd\xd1\xaf\xd0\x63\xd7\x19\xbd\x9c\x0b\x6c\xdf\x15\x37\x44\x49\x98\x7d\x3b\x56\x9f\xe0\xa8\x5b\x3e\xfe\x63\x36\x26\x36\x8f\x62\xfa\xe9\xec\x9c\x68\x14\x17\xe5\xeb\xdb\x91\xb9\xb6\xb0\x2e\xfd\xa5\x9d\x24\xaa\x44\xc8\x53\xfd\x84\xa7\x40\x2d\x0a\xf2\x35\xd8\xf1\x70\x90\x3a\x1e\x40\x36\x5c\x7e\x2f\x8e\x26\xe5\xd7\x60\x70\xe1\xb6\x10\xad\xc1\xeb\xa9\xc1\xd4\x0d\xbf\xf9\xcf\xd9\x86\x56\x35\x07\xe9\x5a\x6e\x75\x86\xbe\x97\xa6\xe9\x87\x5c\xdc\x8d\xc8\xe7\x7f\xd0\xcf\x3b\xdf\xff\xc3\x81\xfc\xf6\x81\x60\xe6\x81\x30\x7c\x61\xee\x32\xf8\x8f\xdf\x1c\xc8\xa2\xfe\x89\x2e\xf6\xcb\xf4\x01\xe8\xdd\xb8\x58\x1f\xdb\x31\xf4\x9f\x76\x80\x3d\x87\xd7\x0a\x5f\xcc\x06\xd8\xff\x98\xe3\x56\xe9\x46\x38\xaf\xb4\x5b\x3c\x35\xf7\x3b\x76\x55\xa7\x5a\x7d\x67\x8c\x38\x9a\x61\x2d\x65\xfa\xdd\x4b\x11\xd1\xf1\xbd\xed\x5c\xed\xb0\x9b\x5e\x9d\x99\xec\xd9\x60\xc1\x42\x57\xab\xe8\xf4\x29\x30\x2a\xa6\x95\xd6\xff\x0c\x38\x44\x79\x4a\xd3\xed\x7c\x13\x78\x8c\xac\x41\x93\x1f\x2f\x0b\x30\x63\xe6\x5d\x68\x89\xff\x94\xa2\xc9\x79\xbb\x68\x9d\xfe\x44\xa1\x1d\xf7\x64\xf9\x9d\xf3\x61\xf2\xda\x86\xf6\xc3\xdd\x5f\x3b\xf6\x79\x00\x5d\xdd\x65\x44\x67\xfb\x93\x38\x7a\xa4\x73\xae\xce\x8f\xe6\x28\x7a\xae\xb3\x98\x76\x75\xe3\x4d\x44\xd8\xf6\xa0\x8e\x7e\x43\x18\xa2\x6e\xf3\x45\x57\xe6\x66\x06\x62\x69\xe3\xf1\x87\x03\x49\x61\xf0\x5f\x27\xf1\xb8\x7f\xf4\x6f\xa6\x0f\xc2\xe7\x07\x0b\xf5\x18\x2c\xe4\xe3\x7c\x7b\xc2\xe8\x9f\x75\xb1\xb6\x30\x74\xaf\x5b\xef\x19\xf3\xaf\x33\x00\xcb\x95\x71\xb8\x93\x00\x20\x58\xb6\x33\x20\x3f\x1e\xde\x28\xbe\xda\x2f\x93\xdc\x0b\x24\xb2\x9b\x22\x67\x08\x3b\xe6\x6c\x71\x4e\x5b\x87\xc9\x3f\x30\x73\x2f\xcc\xc2\x91\xe2\x22\xb2\x83\x8a\x61\x00\xe2\x71\x7e\xbf\x63\x90\x2e\x20\x2c\x8d\x5b\x9d\xe7\xc8\x7b\xe8\x7d\x5d\x3b\x5c\x14\x35\x7c\xe8\xe5\x3f\x43\x5c\x26\x7f\x73\x0f\xde\x54\x4f\x64\x93\xb5\x27\x49\xe7\xc7\x46\x64\x89\x4d\x0c\xc9\xea\xf3\x32\x44\xc5\xaa\x54\x7d\xf7\x3b\x17\x44\xd3\xea\xaa\x7a\x64\x8f\x11\xe2\x6d\x79\x46\xfd\x5e\x27\x3f\x72\xc2\x62\x83\xfa\xec\x33\x0a\xd2\x6c\x56\xab\x31\xfe\xf8\x24\xd2\x62\xf6\x41\x23\xac\xd9\x15\x5d\x6b\xc2\x05\x10\x55\xf1\xef\x3e\x60\xea\xdf\xad\x4c\x1f\x04\xaf\xc5\x8a\xee\x99\xaf\xa3\x0c\xde\xa5\xf7\xd5\x62\x6d\x2d\x59\xac\xf5\x0f\xfe\xd5\x3f\x2b\x76\x02\xb0\x3f\x5a\xcd\x5a\xd0\x02\x20\x54\xb0\xe3\x7d\x26\x2b\x80\x82\x03\x7f\x7a\x74\x16\xe4\x6b\xed\x96\x3a\xe3\x33\x81\x7d\x30\xdf\x46\x10\x74\x24\x62\x04\x37\x2d\x9d\x39\x2b\x7d\x74\x26\xea\x92\xc1\x59\x93\xef\x68\x49\x1e\xbb\xe9\x2a\xfd\x59\xd4\xff\x64\x91\xd9\x69\x5d\x17\x54\xf1\xb2\xb9\x05\x5e\xab\x13\x5d\xde\xa4\x69\x59\xce\xe4\x1e\x7e\xe7\x5c\x34\xa3\x92\xc8\x65\xd3\x10\xd5\x19\xf4\x09\x6a\xa0\xf7\x53\x35\x67\x6e\x2d\x1a\x44\xc9\x50\xcd\x1e\x0b\x46\x93\x74\x7f\xe0\x89\xc3\xcf\x50\x4f\x3d\x02\x3e\x75\x50\x09\x8d\xa3\x1c\x56\xb3\x79\xf3\x12\x0d\xd4\xf3\xc2\xdf\x7a\xdd\x8a\xd6\xe9\xa8\xab\x55\xbc\xe0\x42\x2f\xeb\x00\x40\xb6\xdf\x62\x9f\x55\xaa\x8c\x73\x90\xa1\x7f\x33\xfd\x50\xa8\x0b\xfe\x49\x63\x0c\x3d\xab\xef\xdb\xbf\x1c\x50\x03\x63\xbe\xbd\x3a\xe9\x5f\xfd\xf7\x68\x0c\xc0\xee\x3e\x56\xfd\xec\x3d\x00\x82\x9b\xb6\x46\xc4\x8f\x02\x28\xe4\xf2\x5e\x0a\x36\x87\x2e\x0d\x0d\x91\xad\xee\x91\x60\x64\x3c\x2d\x7f\xcb\x96\x05\x7b\xe3\x74\x9e\xe0\x62\xee\x8e\x1d\x0c\xdb\xa0\xf9\xc3\x70\x1c\x4b\x4c\x95\xd3\x1a\xd1\x2b\xc3\x74\xf2\x35\x74\x9a\x74\xe2\xb1\x3d\xe5\x3c\x94\x26\xad\x65\xe8\x58\x8d\x9e\xbe\x97\xba\x20\xfa\xe6\x7e\xba\xfe\x2d\x42\x1d\x7a\xaa\x9b\x68\xe8\x88\x1f\x44\x6b\x86\x45\x0c\xb8\x55\xe5\xb0\x25\x68\xae\xae\xc9\xef\x5c\x07\xa9\x85\x5c\x07\x27\x25\xf2\xdc\x45\xcc\x80\xc8\xa5\x28\x38\x31\x89\x65\xe1\x59\x94\xc8\x5f\x13\x31\x53\x42\x9b\x92\xc7\xd0\x4f\xcc\x9a\x70\x40\xa9\xff\x5d\x11\x66\x4a\xc4\x01\x94\xc5\xfe\x7b\x0e\xf4\x30\xd6\x61\x51\xff\xfd\x2f\x07\xf4\x8c\xc6\xd0\x3f\xc7\x19\xfa\xe7\xe5\x7f\x39\x18\x66\x0e\x00\xd3\x07\x22\xb1\x0c\x60\x5f\xd8\x26\xff\x08\x37\x00\x39\x7d\x8e\x16\x9f\x78\x40\xd4\x57\x0b\x84\x3b\x35\xc3\x69\x83\x1c\x09\x3d\xcb\x8f\xa0\x60\xbf\x4c\x51\xcb\x04\x00\x17\xb8\x04\x1f\x65\x70\x19\x9b\x88\x35\x53\x3b\x46\x29\xc1\x1e\x64\x51\x49\x37\xb5\x65\xb0\x3b\x85\x2b\x49\x2f\x35\xca\xb1\xda\x53\xd1\xa4\x61\xd2\x32\xac\xe8\x6a\x86\x06\x2b\x61\x3f\xe6\x78\xbf\x57\x2b\x59\xf5\x1c\x16\xf8\x82\x5b\x73\xad\xca\x3e\xcc\xee\x93\x9d\x66\x89\xd2\x10\x76\x68\xfa\x92\xfa\x4a\x25\x0b\xec\x3e\x66\x49\x78\xa5\x60\x08\xa2\x58\x87\xd2\x69\xb9\x53\x10\x07\x7c\xb2\x3d\xb2\x6b\x10\x5f\x70\x90\xda\x29\xbb\x7b\x9a\x0c\x64\xe9\x2d\xb2\xdf\xbf\x3f\x05\x36\xd9\x34\x80\xeb\x27\xff\x3d\x07\x17\x7d\xc1\xa6\x97\xfc\xab\xff\x3e\x67\xdc\x0f\xf7\x18\xfd\x5e\x6d\x63\x70\x30\x57\xff\xd5\x7f\xd3\x79\x17\x6b\xf8\xcc\x62\xbe\x58\x58\x1e\x00\xf7\xe5\x35\x9c\xfe\xf6\x00\x52\xb9\x3b\x4f\xb8\x3b\x01\x10\x8b\xf7\xd6\xd8\xbe\x80\x6e\x3d\x92\x70\x3f\x93\x7f\x30\xfc\x02\x01\x5e\x06\xb2\x37\xf5\x64\xc0\x2a\x0c\x91\x1f\xd6\x89\x02\x95\xa4\x18\x25\x11\xa6\xcf\x81\x86\x07\xac\x3a\x96\xa9\x7a\x90\xd8\x81\xfd\x3c\xd3\x85\xff\xc0\xe4\x1e\x54\x8f\x60\xcf\x1a\xab\x09\x3b\x94\xa3\xb1\x97\xed\x97\xd5\x4c\x94\x64\xb1\x97\x7d\xd7\xd5\x76\x2a\xa0\xd8\xcf\x51\x67\xd5\x24\x05\x65\x10\x43\x47\x95\x72\x98\x3e\x0f\x4c\xde\x41\x7a\x23\x00\xd4\x8b\xe4\x49\xb2\x03\x00\x55\xf0\xaf\x73\x60\x78\x81\x7f\xa0\x32\xb8\x27\xa6\x0f\x44\x27\xc7\xbf\x1c\x10\x33\x0f\xe5\xbf\x1c\x4c\x36\xe3\xfa\xc7\x74\x2c\x56\xff\x0d\x8b\xd5\x2f\x0b\x80\xf3\x33\xeb\x0f\xf7\x77\x00\x92\xf2\xdb\x2a\x7f\xe7\x3f\x28\x00\xe8\x88\xf0\x37\x19\xdd\x80\x0e\xd3\x52\xe1\x4e\x7d\x1f\xa8\x77\xf6\x13\x2b\xd2\xe9\x87\xf3\x01\xdb\x25\xba\xc8\x89\x70\x34\x4a\x58\xaa\x5d\x33\x16\x12\x53\x36\xc8\x3c\x21\x7d\x03\xff\x03\xce\x72\xfb\x08\xef\xc0\xe6\xd8\x67\xf9\x40\x35\x6e\x20\x9c\xe6\x53\x5c\xaf\xd2\x00\x4a\x57\xf5\x14\xb7\x29\xa7\x03\xf7\x1d\x71\xa5\x5c\xc5\x33\xb0\xbf\x65\x8d\x62\xba\xfc\x69\x20\x76\x89\xc9\x7f\x94\xa3\x82\xe6\x87\x24\xf9\xbb\x72\xec\x10\x30\xb9\x46\xf6\x11\x93\x77\x90\x59\x09\x9f\xa0\x50\x6c\x42\xf2\x33\x00\x7c\x10\x7a\xf8\xfb\x1c\x64\xec\xf7\x61\xae\xff\x9b\x03\xba\xce\xe0\x24\xff\xc7\x07\xc1\xeb\xdf\x7d\x10\x2c\xbe\x58\xdd\x9a\x19\x75\x07\x00\xc7\xc5\x95\x9a\x8e\xd1\x00\x22\xa1\x1b\x2f\x5b\xdf\x07\x50\xaa\x62\x5b\x6d\xaa\x05\x40\x36\xe1\xb9\x66\x30\x09\xdf\x8c\xf7\x08\x5c\xd0\x7d\x0f\xc3\x76\xfd\x42\xba\xda\x8d\xd0\xee\x9d\x29\xba\x4b\x63\x12\xde\x04\x3b\x8a\xec\x51\x7f\x03\xf7\x62\x05\xc5\xf7\x12\x2f\xc0\xdd\x14\x71\x71\x25\xfc\x01\x68\xca\xa5\x8b\xb5\xab\x5a\xc3\xf1\xe3\xc1\x52\xc2\x4c\xee\x41\xe1\x22\x5c\xb8\xb8\x4e\x02\xaf\xb8\x06\x42\xea\xfa\x64\x8e\xcb\xe7\x40\xd4\x83\xb5\xd2\xb3\xb2\x75\x90\xf5\x7c\xb5\x54\x81\xcc\x67\x38\xd0\xa7\x2f\x15\x22\x13\x09\xc5\x5f\xd2\xa5\xd6\x48\xb7\xc2\xc3\xa9\x55\xe2\xa3\x32\xb2\xf0\x1e\x0e\x88\x7b\x32\x39\x98\xef\xc7\xff\x1f\x1c\x90\xf3\xbf\xcf\x81\xe3\xc8\xbf\x1c\x4c\xea\xf6\xc5\xfa\x5f\x1f\x08\xa6\xfe\xef\xd4\x0d\xc0\xad\xcb\xfa\xc0\x3a\x1b\x40\x78\xcd\xfa\x25\x66\x5b\x00\xe4\xbe\x6c\x4b\x33\xa4\x02\x68\x98\x72\x5c\xa4\x3c\x07\xd0\xf3\xe5\x75\x21\x7f\x02\xb0\x6c\xd8\xfb\x42\x2b\x1e\x50\x97\xd7\x02\x86\x1a\x8e\x40\xf7\x7e\x2d\xb8\x86\x34\x05\x23\xa1\xcb\x84\xad\x08\x74\x18\x8c\xa5\xef\x3f\xab\xa6\x02\x2f\xd3\x3d\x44\xf7\x29\xdd\x86\xd9\xdc\x7d\x42\x6b\x94\x8a\xe0\x55\x51\x95\xc8\x0b\xc5\xfb\xd0\x58\xfe\x42\xec\x80\xc2\x4e\x78\x70\x4e\x5b\x4c\x40\xce\x03\x1a\xae\x1b\x89\x65\xca\xbe\x85\xcb\x77\x95\xc4\xcb\x65\x37\xc3\xb9\x16\x7e\x89\x3d\xd2\x3b\xa1\xa5\x63\xb9\x68\x96\xb4\x03\xd4\xf5\xb7\x89\xe3\x25\xeb\xe1\xeb\x97\xaa\xfd\xbf\x7e\x32\xae\x77\x2f\x63\x3f\x3c\x61\xf8\x9c\xd4\x31\xee\x87\x0b\xaf\x17\x2b\x33\x0f\xe5\x37\x07\x53\xba\x58\xa3\x7f\x2d\xd6\x00\x59\x06\xf7\xc0\xb8\x9f\xcc\x22\x17\xab\xd5\x28\x00\x3b\xba\x42\xd9\xd4\x02\x60\x9f\xeb\xea\x77\xfa\x5a\x00\x92\xec\x1b\x77\xe8\xa4\x03\xa8\x86\xed\xd8\xab\x4d\x03\xd0\x7e\xcc\x69\xa7\x19\x04\x60\xca\xc6\x95\xaf\xae\x0e\x60\x7b\x8f\x67\x19\x71\x0c\xc0\x6d\x23\x2f\x9d\x18\x0a\xe0\xa7\xcf\xdf\xac\xf6\x00\x20\x2c\x48\x60\x9d\xaa\x32\x40\x1c\xef\xbe\x1f\x2a\xd7\x81\x9a\x2a\x2c\xf8\x46\x29\x16\xe6\x72\x7b\x04\x27\x15\x09\x30\x5a\x78\x47\x58\x4c\xbe\x0d\xbe\x95\xba\x0a\xfb\xca\xa0\x80\x9e\x8e\x13\x14\x92\x9e\x04\xea\x45\x73\xc1\x04\xe9\x50\xf8\x76\xeb\x94\xf0\x7e\xe9\x00\xe8\xbd\xcf\xb1\xff\x89\x64\x0a\x4c\xb4\x18\x09\x05\x4b\x6e\x81\x89\x0e\x6e\xa1\xf3\xcc\xe7\xc0\x7f\xfd\x80\x98\xb9\x58\xbf\xfd\x70\xb4\xfe\xc3\xc1\xb4\x33\x38\x18\xc6\xfb\x03\xd3\x0f\xc5\x9a\x51\x8d\x18\x1c\x21\x89\xc1\x91\xe8\x9f\x04\xe0\x7d\xc3\xaa\xa0\x5d\x0b\x20\xca\xb6\xf6\x87\x06\x0b\x80\x02\x65\xb3\x26\xb1\x11\x80\xf8\x72\x47\x08\xa1\x19\x80\xf2\x96\x6d\x0b\xf1\x12\x80\x65\x38\xc7\x77\xb5\x8f\x00\xf6\x63\x9c\xe7\x09\xdc\x00\x6e\xcb\x79\x78\x55\x6f\x01\xf8\x7b\xf0\xee\x50\xbd\x06\x10\x16\xc3\x77\x56\xf9\x2d\x40\x8c\x24\xdf\x01\x45\x14\x20\x29\x9a\x2f\x42\x3e\x0b\x20\x7b\x8c\xcf\x5f\xae\x06\xe0\xf0\x6a\x7e\x21\x39\x1c\x40\xb1\xe1\xbe\x12\x99\x0d\x00\x15\xaf\xf6\xb1\x49\x07\x00\x9c\x53\xdb\x77\x4f\xea\x00\xc0\x55\x69\x81\x7d\x52\xe6\x40\xbf\x75\x55\x50\x5f\x52\x00\xa0\xf1\xb9\xc0\x42\xd7\xda\x0e\x8b\xba\xff\xbf\x1c\xc4\x5a\x03\x15\xe2\xdf\x1c\x84\xf4\x5a\x42\xec\xfa\x43\xff\xcb\x41\xe8\xf4\xe8\x08\x72\x45\x02\x18\xda\x1a\x78\xee\xa3\x01\x98\x84\x5a\x1c\x11\x77\x07\x30\x3d\xe3\x7c\x48\x61\x05\x80\xe9\x57\xff\x1f\x44\x31\x78\x61\xbc\x22\x81\x5b\x9b\x07\xf2\xf5\xdf\x1f\xb4\xd0\x6f\x01\x5b\xdd\xe4\xb2\x7b\xc6\xdf\x60\x07\x39\xbd\xe6\xb8\x85\x0d\x56\xa3\x79\xab\x99\xcd\x8e\x1b\x6b\x22\xe1\xbb\xe4\x6c\x5a\xb0\x03\x84\xbe\x61\x1f\x7b\x0f\x2c\x5f\xad\x67\x7a\xb3\xbd\x11\xf6\x01\x7f\x89\xde\x67\xed\x0b\xc2\xaa\x77\x11\x5d\x73\x87\xe9\x71\xd5\x26\x24\xc8\xcc\xf0\xc7\x98\x6a\x32\x52\x6f\xfc\xee\xd3\x26\x35\x43\xc4\xdb\xfc\xc0\x3b\x16\xb5\x15\x48\xab\x89\x58\x57\x0c\xe1\x2e\x52\x64\xd6\xf0\x82\x93\x50\x8d\x7c\x33\x6e\x79\xe6\x4a\x70\x44\xd9\x0d\x6f\x3f\x3e\x42\xb8\x8b\x92\x0d\x84\x1e\x48\x10\x5d\x50\x33\xfd\x81\xc6\x30\xe2\x0e\x34\x8d\xb2\xe0\x16\xa6\xb5\x66\xb1\x7f\x86\xfe\xcf\xd0\xf9\xd8\x3b\xd5\x14\x96\x25\xfc\xc5\x41\x5c\x50\xd3\xdb\x88\x07\x50\x1d\xc7\xb7\x6f\x35\xfe\xb3\x0e\x4c\x2e\xc6\xb0\xda\x70\xad\xc0\x53\x00\xb3\x10\x73\xaa\xa4\x0f\x80\xb9\x87\xe3\x23\x45\x3c\x20\xe6\x29\xbe\x1f\x48\xda\x70\xd7\xe4\x6a\xec\x5b\x9d\xc3\x10\x65\x68\x97\x57\x60\x78\x19\x78\xf4\xec\xca\xb8\xcd\x27\xb1\x01\xed\x2f\x35\xda\xd6\x1f\xb1\x23\x9a\x1d\x8f\x74\xed\x1f\x60\x1e\xea\x59\xdd\xc2\x8e\xd7\x30\x7b\xa2\xff\x30\x38\x7e\x62\xf2\x2f\x58\x0f\xbe\x9d\xfe\xcc\x7a\x96\xf6\x0d\xcf\x8d\x88\x59\xe4\xff\x62\x53\x13\xa6\x63\x56\x6f\xbe\x45\xaa\xa9\x20\xca\x96\xb8\x81\x87\x84\x00\x44\xc6\xf2\xcb\xdb\x1d\x04\x01\xe4\x80\xd9\xa3\x97\x45\xa4\x95\x88\x85\x65\x5c\xbb\x0e\xd1\x13\x79\x66\xca\xd5\x6a\x40\xbc\x86\x7c\x37\x61\x7f\x98\x46\x22\xa1\xcb\x8d\x9d\xee\x65\x90\xf0\xa8\xa1\x81\xcd\x1d\x12\x89\x1d\x0d\xd5\x7b\xff\x17\x17\x94\x48\x5a\xf8\xfe\x01\x77\x4f\xe9\xd1\xff\xc5\x41\xc8\x8b\x2a\x9f\xda\x50\x0d\x80\x6f\x52\x6d\xdb\xaa\x0a\xa0\x7d\x83\xa8\xb9\xab\x09\xc0\x70\x40\x0b\xe3\x16\x03\x30\x1d\xd7\xef\x12\x7c\x0e\x60\x76\xc7\x2c\x57\xe2\x2d\x80\xe5\x33\x7b\x1e\xa5\x3b\x00\xe6\x9f\xbc\xc7\x88\x3e\xf0\xc8\x74\x77\x74\xa3\x76\x3d\x18\x1b\x2b\xe7\x6e\x32\x39\x8c\x51\xf5\x03\xcb\x38\xad\x4e\x60\x8d\x3a\xe9\x35\xc7\x6d\x7b\x30\x4f\xad\xb4\x47\xb1\x4e\x9c\x98\xb8\x7a\xd7\x1b\x7f\x97\x08\x6c\x09\x69\xd7\x68\xa2\x9b\x23\x46\x21\x58\xd1\x50\xa7\x51\xec\x39\xfe\x0b\xbd\xd1\xc6\x9d\x7a\x13\x3f\x48\x1f\xb0\x4e\xf9\xd1\xaa\x56\x45\xff\x66\xdd\xf5\xf9\x0a\x81\x4c\x07\xeb\xec\x77\x56\xc4\x3d\xc8\x36\x6b\x62\x17\x4a\x6c\x46\xf0\x56\x32\xcf\xef\x92\x1c\x90\x60\x8b\x9b\x4f\xa6\x48\xdd\x48\x85\xb9\xf2\x23\x75\x75\x7b\xa4\xc6\xec\x5d\xd3\x16\xf5\x69\xe4\xb1\x19\xe5\xce\x7d\xf5\xaf\xe8\x4a\xe3\x17\xb7\x26\x35\x36\xa0\x6a\x86\xc7\xff\xe6\xa3\x16\xf5\xff\xdf\x3e\x08\xcc\x3c\x88\xc7\xca\x1c\xab\xb7\x03\x28\x12\x15\x55\x37\x4a\xfc\xe1\x20\xf4\x9f\x11\x5d\x76\x57\x02\x18\x7b\x68\x9a\x71\x59\x02\x58\x38\x51\x0a\x05\xae\x01\x58\x1e\x33\x2b\x97\x7a\x06\x60\x15\x6a\xfb\x4e\xa9\x1e\x7e\x59\x06\x78\xdd\x55\x5f\x06\x47\xcd\xbd\xa2\xf7\xe9\x95\x83\xbc\x89\x7d\x0e\xc1\xcc\x1d\x9b\x30\x58\x5a\xda\x67\xbd\x1e\x0b\xa3\x70\xd7\x70\x39\xad\xc2\x38\xc9\x21\x8f\xcb\x5d\xdf\x63\x7b\xd5\x1f\xf6\xe1\x5c\x59\x31\x16\x62\xef\x58\xbd\x1b\x27\x3a\x41\x54\xa1\x45\xb9\xaf\xc7\x2a\xd4\x7c\xe9\xb1\x76\xb7\xa7\x8e\x13\x54\xe8\x2e\x0e\x7b\xbe\xb1\x11\xf5\xe8\xde\x0e\xc5\x03\x27\x48\xeb\xe8\xa5\xf6\xb1\xbd\x40\xa2\xd2\xab\xec\x4f\xbd\xcc\x53\xd7\xa4\x8f\xdb\x06\x3e\x0d\xd0\x68\xa1\xcf\xd8\xf6\x3e\x72\xd4\xf8\x8c\x10\xac\x6d\x9b\x52\x35\x5e\x23\xa9\x16\xc8\xdd\x49\x0d\x5f\xa4\xdb\xb4\xaf\xae\x50\x4b\x18\xa9\x37\x8f\xba\xd1\xab\x99\x8d\xae\x32\x91\xfd\xfb\x5c\xf8\x57\xff\xe7\x62\x53\x39\xbd\xfc\x1d\x80\xf8\x3b\x45\x93\x35\xe5\x7f\x38\x08\x0d\x9a\xb2\xe6\xd6\x30\x00\x43\x44\xcd\x92\xad\x15\xc0\xac\x83\x74\x9d\xd3\x09\xc0\x4a\x5b\x37\x53\x20\x17\xc0\xa6\xdb\x58\x53\xa2\x06\xc0\xc6\xd2\x26\x4b\xc5\x0b\xde\x58\x47\x7b\xee\xd5\xdc\x0d\xf9\x16\x85\x11\x67\xf4\xda\x80\xcb\x94\x3f\x87\xdf\x62\x1d\xf6\xd0\xd0\xb9\x54\xc8\x76\x16\x23\x51\x0e\xd5\x2e\x77\xa9\xc3\x96\x92\x4f\xb7\xbc\x76\xd7\x47\x5b\x35\x8e\xbd\xdb\xe1\xa9\x8b\x9e\x25\x65\x4e\xac\xf1\x0a\x60\xf2\x50\xb4\x2f\x84\x57\xb4\x6e\x17\x8b\x9f\xe2\xc4\x5c\x1a\xe6\xfc\xf2\xb3\x14\x29\x99\xbe\xcb\xb9\xb4\xbf\x4e\x9d\x8b\x6e\xeb\x48\x7b\x75\x49\xa3\x93\x6e\xe0\xbc\xe7\x79\x91\x46\x15\xbd\xde\xfe\x61\xab\xb4\xe6\x05\x7a\x93\xfd\xc7\xe6\xa7\x5a\x6b\x91\xe5\xb6\x3d\x8d\xe7\xb5\x08\x88\x8a\xf5\xdc\xed\x42\xad\xeb\x48\x98\xd5\xde\x1b\xd7\xc8\xdb\x90\xcb\x16\x02\xd7\x22\xc8\xd2\x48\xdf\xe2\xd3\xed\xdf\x73\x81\xe5\x8c\xfc\xc2\xf7\xcf\xcc\x3c\x08\xa9\x6f\x0a\xfb\xd7\x76\x02\xa8\x50\x14\xfc\x37\xa6\x00\xe8\x18\x29\xde\xdc\x5a\xf5\x87\x07\xb1\xfc\x49\x6a\xe7\xaa\x05\xb0\xd7\xd3\x76\x9c\xbf\x1f\x1c\xc7\x8d\x56\x4b\x69\x00\xd8\x1b\x59\xa1\x2a\xf7\xa1\xce\x6e\xa7\x3b\x27\xb9\x0d\xdc\xac\x3a\xc2\x0f\x1b\x89\x61\x5f\xcc\x6d\xb2\xce\x58\x37\x63\xb9\x46\x4f\x4b\x6e\x3b\x4a\xfd\xe6\xc4\xda\xb4\x05\x5a\xd7\x7b\x0e\xa2\x65\x1a\x9d\xef\x07\xbd\xf7\xa2\xce\xa4\x5b\xb3\xba\xbe\x1a\x68\x1b\xb1\x84\x86\xf7\x68\x9f\x5d\x4d\xec\xa4\x05\xbb\xdf\xf8\x9a\xab\x7e\x8a\x66\xee\x79\xf0\xc3\x7d\xf5\x1a\xda\x13\xb7\xc4\xdf\x5c\x18\x5d\xb3\x8e\xbe\xdd\x55\xbc\xb5\x51\x6b\x9a\xae\xee\xa2\xfe\x28\x84\x4c\xa4\x27\x3a\xa5\xde\xb7\x27\x5f\xa1\x3f\x70\x38\x78\x87\x97\xdc\x8c\xac\xb3\xdb\x52\xe7\x48\xae\x42\xac\xad\x1d\x6a\x0f\x6b\x5f\x43\xbc\xad\xb7\x5f\xe2\xd3\x31\x43\x6e\x58\xc4\xfd\xbd\x0e\xbf\xf5\x7f\xe1\x65\x51\x00\x82\x9b\x15\xf6\xb0\xee\x04\x90\xae\x96\xfd\xb6\xb6\xfe\x0f\x07\xa1\xf3\x51\x7e\x72\x4b\x15\x80\xb9\xa6\x12\x71\x67\x02\x80\xad\x00\xc1\x91\xb3\x16\xc0\xe9\x8a\x96\x8e\xc0\x0a\x00\x17\x6b\x03\x6e\x49\xe2\xef\x5c\xb1\x2a\x07\x3e\x17\x2b\xed\x97\xa0\x63\xe3\x13\x26\x61\xc2\x89\x7d\xb4\x08\xcc\x58\x6f\xfd\x15\x73\x34\x7e\x55\x12\xe1\x7c\x1e\xc5\xf4\x57\xd7\x4c\x79\x10\x51\x3f\x1d\xcd\xd6\x4a\xbf\xbd\xa8\xbe\x66\xec\xa0\xad\xdf\x39\x94\x4d\x5d\x76\x2e\x20\x40\x14\x65\x25\x09\x50\xc7\xbc\x55\x7e\x6d\x53\xb7\xa2\x0e\xfb\xe0\x3f\x47\x6a\x10\x68\xaa\x5e\xe9\xfd\x9f\x34\x1d\x68\xf6\x5e\xb2\x5d\x42\x5a\x2e\xb4\x3c\x4f\xbb\xf6\x04\xb2\x3d\xad\xdd\x7d\xfa\x49\x0a\xf9\x11\x7d\xb3\xdb\xe6\xa6\x02\x6d\x7b\x7a\xa0\xb3\xfb\x1d\xaa\xf6\x04\xbd\xc2\x69\xd5\xad\x39\x9d\x43\xf4\x1e\x07\x9f\xeb\x31\x3a\xe1\x08\x9f\xed\x83\x4b\xd7\x74\xa7\x10\x75\xdb\x75\xd5\x86\xba\x99\x48\x9e\x95\xce\x5f\x7c\xd4\x7f\xf5\xff\x46\xd9\x03\x2b\xcf\xfe\xd1\xff\x89\xfc\x32\x1d\x1b\x2e\xfe\xe1\x20\x2c\xab\x15\x13\x76\x96\x02\xd8\xa7\xa8\xfa\xec\xe9\x01\x70\x49\xd1\x2c\x11\xe0\x00\xf0\x90\xd2\x13\x93\x98\x03\x70\x53\x30\xc7\x54\x53\x20\xcf\x29\xd0\x89\x53\xf7\x2a\xec\xb5\x7b\x15\xdc\x60\x76\x12\xab\xb5\x32\x4d\xcb\xb0\xeb\xc0\xc4\x4d\x45\x4e\x38\xbb\xa9\xa3\xb7\x0d\x56\x5c\xb3\xf0\xce\x40\xb9\x75\x1a\xda\x9e\x07\x5a\x22\xbd\x9a\x53\x9f\x7e\x06\xeb\x32\x7d\xb3\xa8\x26\xea\x72\xd4\x40\xff\xd5\xa3\xf7\x35\xde\x50\xcd\x02\x6e\x0c\x1e\xd4\xfc\x42\x6d\xf3\xd3\x67\xfa\x44\x75\x14\x92\x31\x1a\xd1\x67\xf3\x93\x59\x9d\x06\x9a\x9a\x4f\xc3\x83\x2c\x9d\xf7\xb4\x97\x1e\x67\xef\x09\xeb\x4a\xd2\xd9\xdd\x0e\xd7\xe7\xea\x56\xd0\x1d\x5d\x0e\xd7\x2a\x50\x0c\xe8\xb7\x1c\xa7\xae\xdc\xd7\xe3\xa6\x3f\x76\xac\xae\x1e\xd3\x5b\x86\x70\xd9\x1d\xa8\xd2\xd5\x53\x44\x02\xad\xef\xfe\x79\x5f\xf8\xaf\xfe\x2f\x74\x5e\xfa\x35\xeb\x7e\x00\xb9\x40\x99\xba\x75\xa6\x00\x9a\x5d\x32\xb8\x8d\x44\x00\x23\x51\x19\x96\xcd\xe7\xfe\xe2\x41\x9c\x14\x6b\xd8\x5d\x01\x3c\xba\x48\xe1\xfc\x39\x00\x5e\x72\xba\x57\x24\xf8\x01\x3c\xf3\x4c\x23\x55\x76\x43\xbe\xcb\x45\x87\x77\xba\xc5\xb0\xc7\x41\x21\x70\xb3\xd9\x5b\x2c\xdd\xba\x33\xf5\xbc\xa3\x1f\xda\x65\xce\x7f\xbc\xcc\xab\x07\x0d\x32\x98\xba\x36\xe6\x37\x88\xbc\xd6\xb5\x7c\xf6\x2b\xc4\x1f\x39\xa3\xc5\xf1\xe5\x67\xa8\x24\x72\x5a\x63\xdb\x5c\x7e\xc8\xb5\x89\x61\x8d\x1b\x73\xc3\xc1\x52\xc3\x49\x9a\x63\x54\xbe\x20\xdf\xfe\xf5\xda\x3c\x54\xd6\x10\x6e\xa6\x4f\xd4\xd3\x20\xdd\x31\xea\xa1\xc0\xb6\x87\x8f\x74\x9b\x68\x04\xdf\x75\xcc\xbc\xb8\x3a\x54\xcf\x95\xf6\xda\xd3\xe4\xc6\x79\xbd\x06\xfa\x1a\xf7\x27\x57\x0f\xea\x2b\xd1\x1d\x5c\xf5\xab\x5f\xeb\x57\xd3\x2f\x39\x0d\x56\xbd\xd3\xcf\x42\x36\xd8\xc7\x9f\x8e\x34\xb0\x41\x78\xec\xff\xe2\x26\xff\xab\xff\xef\x5f\x2a\xdd\xc1\x5a\x0b\xa0\x70\x49\xd2\x75\xad\x3c\x80\xce\x76\x29\xbb\x8d\xcb\xff\x70\x10\x0e\xe6\xd2\xc5\xdb\x5e\x00\x78\x6a\xca\xf7\xed\xfe\x06\xe0\x73\x1d\x4f\xe6\xcd\x04\x08\xd0\x27\x93\xc4\x46\x00\xfc\xd6\x1b\x6f\x52\x3e\x02\x27\x3c\x64\xed\xde\xea\x1a\x63\xcf\x5d\x64\xfc\x56\x5b\x77\x60\x46\x76\x12\x49\xe0\x62\x8e\x5e\xb5\xc0\x17\xbb\xf8\x54\xa0\xeb\x8c\x64\x6b\x1d\x83\xa5\x90\x58\x8a\x60\xbb\x5f\xf8\x4b\x64\x95\xd6\x99\xef\x73\x51\x17\xa9\xcb\x35\x09\xb3\x53\x11\x43\xdf\x68\x64\xfc\xdc\x9a\xc8\xc4\xc1\xc7\xda\xa4\x39\xff\xf0\x47\x4c\x9f\xa8\x67\x74\x8a\x27\x95\x35\xd4\xf4\xb1\xbb\xde\x65\xaa\x5c\xc8\x91\xc6\x01\xfd\x0c\x6a\x79\x90\xd0\x6d\x2d\x03\x56\xda\x16\x7f\xe2\x8d\x4e\x83\x5a\x9a\xb1\xef\x85\xab\x4e\x06\xb7\x68\x5f\x3d\xcd\xaa\x23\x0c\x2f\xd0\xd9\xdc\x81\xc9\x43\x55\xca\x1b\x45\xd2\x2f\x3b\x7b\x9f\x24\x19\x8d\x21\xcb\x1d\xb2\xfe\x9c\x0b\xff\xd5\xff\xc5\x97\x8b\x77\xac\xaa\xfe\x2b\x07\x01\x91\xd8\xb1\xe1\x0a\x80\x55\x8a\x98\xc0\xc6\xc3\x00\x6e\x24\x89\xd9\x6d\x02\x00\xbe\xa2\xb2\x07\xd9\xbe\x03\x04\x22\x2a\x37\x78\xdb\x01\x42\xef\x69\x70\x8a\x46\x00\x04\xcf\xea\xf7\x28\x25\xc1\x61\xff\xdd\x36\x46\x94\x1f\x58\xbd\xdb\x1d\xaf\x8d\x36\x37\xb0\x6d\x0e\x31\x09\x2d\xee\x7e\xa8\xbd\x95\x5c\xd1\xcb\x80\x00\x24\xd6\x64\x6d\xad\x51\x04\x4a\x1f\xa3\xdc\xec\xdc\x12\xd3\x49\xdf\x46\x76\x9b\x30\x4d\x72\x1c\xa7\x93\x93\x67\x57\xc4\x6f\xfb\xa8\xa7\x73\x75\x76\x7f\xbc\x5e\x8f\x0f\x25\x72\xb6\x32\x36\xae\xfd\x89\xbe\xc4\x2c\x35\x46\xfc\x37\x0f\x75\xd2\x30\x60\xee\x47\xb8\x64\xfd\x25\xc3\x31\xaa\x4d\x48\xe1\x75\x2f\x23\x56\x2a\x35\x20\xf8\x0a\xab\xb1\x21\x8d\xc7\xbf\xf4\x7c\xa6\x89\x06\x2d\xd8\xf7\xe0\xe9\xb3\x26\x85\xb4\x61\x2f\xc1\x53\x7c\xa6\x2b\xe8\xab\x3d\xf9\xcb\xb6\x98\xee\xa4\x5b\xb9\x5d\x39\x7e\xcd\x94\x97\xde\xe2\xbc\x72\x7e\x1d\x14\x96\x2d\xbc\x37\x30\xf4\xff\xbd\xd6\x92\xb7\x57\x1c\x03\x90\xe0\x97\xd8\xb3\x5a\x08\x40\xdd\x58\xf4\xd5\x5a\x6f\x00\xe3\x1b\x22\x27\xd7\x53\x00\x1c\xf4\x45\x8b\x37\x99\x01\x78\x69\x89\xec\xd8\x2c\x0c\x10\x5c\x28\x6d\xc4\x76\x10\x20\x72\x44\xfe\x04\x57\x3f\x40\x8c\x88\xda\x0f\xe1\xd7\x00\xd1\xf2\xba\xa8\xd2\x01\xb8\x1e\xbe\xd3\x3c\x4c\xa7\xe9\xb7\x7f\x52\x99\xcb\x97\x18\x3b\xdf\x3d\xc8\x7b\x9b\xc6\xa3\xd6\xa1\x5f\x10\x16\xd3\xd0\xda\x5d\xb1\x86\x74\x36\xbd\x8e\xd7\x3c\xc9\xe7\x68\xde\xe4\x89\x69\xfb\x74\xf5\xcf\x25\x14\xf6\xe9\xfb\x69\x63\x6f\xc4\xf5\xa5\x67\xe4\x53\x43\x5f\x6c\x30\xe4\x98\x39\x99\xb2\xee\xb7\x3f\x12\x66\x2c\x33\x8b\xc5\xca\xdc\x2c\x30\xe5\x98\x33\x8f\xbe\x70\xd5\xde\x4c\x70\xae\x2d\x92\xf3\xe2\x09\x33\x6b\x2a\x21\x4c\xee\xff\x8b\x03\x2a\xf6\xb0\xd0\xa7\xb3\x78\xbe\x28\x7c\x62\x36\x4c\x7f\xe6\xbc\x63\xe1\x5c\x30\x9e\xef\x9f\xa9\xff\xef\x5f\x2f\x1e\xce\xca\x01\x20\xeb\x2e\x7a\x7d\xf5\x6a\x00\xed\x55\xc2\x97\xd6\x1c\x01\xb0\xe4\x16\xb0\x5b\xbb\x14\xc0\x6d\xa5\xe0\xc9\xf5\xaf\xff\xe4\x62\x44\x4b\x8a\xe5\xee\xe8\x06\x48\x5a\x2a\x6d\xc4\x11\x0b\x90\x5a\xac\x7c\x5d\x68\x29\x40\x8a\xb9\x66\x87\x7c\x24\x34\xc6\x8d\x19\xff\xd2\xb1\xc3\x8e\x84\xca\x39\xe9\xd9\x77\xa1\x92\x9e\x5e\xe1\xbc\x81\x1d\x88\x92\x83\x5b\x7e\x7f\x8c\x22\xf5\x94\xc5\xc6\x6b\x39\x29\xb7\x26\x58\x8c\x2c\x3b\x5f\x64\xaf\x1e\xe5\xd1\x5b\x35\x79\xeb\xc0\xa7\x5e\x2d\xc3\x4b\x53\x39\xb9\xf4\xf6\xa5\xc6\x35\xd3\x1a\xd9\xba\x0f\x7a\xcd\xac\xa6\xe3\xb3\x46\x98\xbe\x40\x37\x04\xcc\x3f\xce\xee\x4f\x7a\x79\x69\xce\xd2\x65\xf6\x62\x82\x5d\x55\x8f\x95\xe2\x9c\x61\x4c\x5b\xe5\x76\x2b\x0a\x75\x55\x84\x51\x59\xbb\x95\x2d\x35\x31\x54\xab\x84\xc5\xea\x0a\xf5\x7b\x50\x68\x31\xa7\xf5\x3e\x1a\x7f\x40\x5f\x21\xd9\x9a\x9b\x76\xce\x77\xe3\xe1\x49\x1b\x07\x5a\x8d\xcf\xe8\x81\x59\x1b\x1e\x3a\x97\xa7\xff\xfc\x3a\x48\xb6\xce\xf7\xcf\xd4\xff\x85\x33\x84\x9d\x56\x2a\x03\xe0\xf5\x84\xae\xad\xaa\x04\x30\xbc\xbe\x4f\x6e\xb5\x01\x80\xfd\x28\xcf\x3a\xd6\xb9\x3f\x79\x10\x51\x97\x78\xef\xae\x33\x00\x48\x8e\x14\xdc\xb9\x45\x1f\x20\xeb\x96\x98\xf5\x6e\x4e\x80\x3c\x1b\x79\xf2\x3e\x4e\x80\x03\x53\x04\x4b\x19\x17\xe8\xc9\x1a\xd3\x3b\x44\xbe\x81\x65\xc4\x5f\xb3\xa5\x3a\xee\x42\x52\xfc\xd9\x02\xbe\x87\x5f\x1f\xd7\x72\x0f\xcc\x91\x4d\xd6\xfd\xb2\xd4\xc1\xf7\xfc\xae\xec\xd9\x77\x35\x56\x0d\x2d\xd4\xc3\x61\x3d\x24\xb3\x0d\xdf\xa4\x8e\xee\x6c\x15\xb6\x58\x32\xf1\xb3\x50\xa9\x51\xc8\xf2\xd1\x24\x76\xd8\xe0\xd6\x1b\xeb\x8d\x53\x4f\x0e\x70\x5e\xf1\xb4\xf1\x9c\x7e\x9a\x75\xf5\x9c\xbd\x1d\x61\x46\x31\xa3\xa3\x92\xd7\x2e\x6c\x56\x38\x79\xb2\x34\xdd\xbe\x73\xf6\x68\xe2\x8b\xff\xf2\x2f\x47\xd6\xd9\x23\x54\xe3\x70\xf1\xdf\xfc\x8b\xb6\xbd\x1c\xcd\xd7\x5f\x23\xfb\xa9\x7d\x0b\xed\xa8\xdf\xd6\xcc\x35\xf6\xcd\xb4\x09\x6f\x25\x00\xdc\x06\xf1\x85\xcf\x59\x1c\x8e\x22\xd4\x65\x9c\x00\x62\xcf\x04\x6e\xb3\xf4\x00\x90\x36\xf2\x49\xae\x2c\x07\xb0\xdc\xc5\xbb\x65\xfe\xf3\x85\x5b\xdf\x9e\x18\x96\xa8\x3f\x1c\x44\xf2\x79\x8e\xe5\xab\x54\x00\x0e\xac\xe2\xd9\xb3\x5e\x0e\xa0\xd0\x41\xb0\x6a\x07\x0b\x40\xf1\x0e\xa9\x93\x7b\x65\x01\x4e\xe4\x2b\xf5\x4b\x9c\x84\x2f\x45\x2b\xc9\x0d\x5a\x79\x18\x7b\x9e\x87\xf9\x63\x87\xde\xef\x1f\xe2\xf7\x79\xba\x47\xdc\xe9\xb7\x0e\xba\x9c\xf0\x35\xf3\x42\x47\xa5\x0f\x4b\xa9\xdf\xe1\xb0\xc7\x53\x6e\x9a\x77\x32\x8b\x7e\x34\x8e\x38\xda\xf5\x37\x96\x78\xdc\x5a\xe3\x40\xf9\x65\x55\x52\x7e\x29\xc2\x29\x78\x22\xf8\xd8\xa7\xb3\xed\xce\x72\x93\x35\x05\x2b\xcb\x3c\x5d\x6e\x4f\x9d\x3a\x24\x7c\xfc\x96\xcb\xad\xe9\xc6\x6c\xf4\x68\xba\xeb\xe9\x19\xd9\xcc\x96\xfc\xed\x6e\x4b\x66\xb0\xd4\x3b\x07\x5e\xb8\xee\x9b\x5b\x11\xff\x36\x47\xd9\xb5\x66\x2e\x3c\x56\x3a\x53\xdc\xb5\x92\xca\x12\x59\x91\x56\xec\x1a\x4b\x4d\x0e\xb3\x4d\x2e\x75\xc5\xa8\x1d\x21\x2a\x49\x32\x2e\x5f\x69\x76\x01\x1c\x09\xf7\x5c\x92\x68\x57\x7d\x0b\x00\x58\xf4\xf7\xb7\xcf\xaf\x03\x1f\x5d\x80\x67\x05\x27\x80\xc2\x08\x5f\x05\x4b\x07\x00\x65\x27\x17\x0f\xcb\x06\x00\x07\x85\x3d\xb1\x2b\x68\x00\x7e\x61\x4b\x45\xfe\xd6\xfd\x72\x19\xdf\xeb\x17\x9b\xb2\x47\xcd\xaf\xc7\x29\x5d\xee\xe0\x0d\xf1\x00\xe7\x84\x84\xd8\xd9\xb2\x00\xaa\x57\xc9\x1c\xd9\xcf\x0b\x70\xce\x9b\x80\x90\x96\x8c\x8d\x94\x9e\x33\xac\xb6\x6b\xe9\x17\x3b\x94\xef\x54\x1a\x76\xb7\x75\x53\xb2\x7d\xd8\xe9\xec\x93\xb7\xf3\xa3\x38\x0e\xdb\x1e\x0d\xb9\x72\x38\xc4\xfd\x6a\x69\xc9\xe7\xb3\xe0\x7f\xb0\xe3\x78\x85\x73\xd9\x6b\x1f\x8b\x9f\x19\xa7\x37\x16\x75\xfb\x2d\x19\xff\x59\x96\x9a\x4f\xf5\x53\x9e\xd0\x3a\x5e\xc5\xf4\x3f\xc9\x3a\xe2\xf7\x70\xea\xe4\xe1\x15\xe9\x81\x7e\x82\xd3\xb7\x73\x9a\x99\xf9\x3f\x09\x53\x7e\x7b\x67\x55\x53\x5e\xc6\xbd\xf4\x7d\x36\xdb\x93\xe8\x14\xb3\xc7\x57\x72\xee\x44\x4c\x65\xd4\xa0\x2f\xfb\xdc\x40\xd4\x68\xd4\xa4\x77\x26\xd5\x23\xdc\x28\x82\xe2\x95\x43\xe3\x0f\xfc\x1a\x76\xc9\xab\x81\x66\x11\x10\x08\xb0\xfe\xb1\xc0\xd0\x7c\x3f\x4c\xfd\x5f\xed\x2c\xd7\xbe\x15\xdc\x00\xa6\x84\x35\x03\xf3\xff\xee\xc1\x98\x7b\x67\xea\xdf\xcc\x1c\x80\xa2\x6e\xdc\x3f\xfa\x5f\xcd\x06\xb6\xa4\x95\x59\x00\x75\x2d\x3c\x45\x9b\xb3\x00\xee\xae\x11\x8d\xdc\xbb\x75\xf2\x70\x5d\x81\xb2\x94\xaa\xc7\x60\xf8\xe5\x34\xdd\xdd\x56\xce\xed\x7c\x95\x79\x36\xd9\x41\x5e\xf5\xb8\xa2\x32\xff\xaf\xe9\x0d\x95\x6d\x39\x52\x69\x56\xc7\xf8\x8e\x0a\xa5\x7e\xaf\x1c\x2c\x9b\xce\xa1\x26\x2a\x3d\xdc\x7f\xfa\x60\xea\xd2\xd8\xd0\xcf\x35\x55\x9d\x89\x42\xd1\x53\x3f\xcf\x9d\xf6\x89\x33\x8e\x2e\xfb\x15\x7e\x52\x38\x66\x73\x14\x3a\xf1\xf5\x58\x69\xd4\xed\xc8\xf8\x29\x96\x23\xa3\x91\xec\xe1\x91\xd3\x66\x79\x5f\x23\x56\x86\xdd\x99\xc1\x65\x17\x85\x15\x84\x76\xcd\xbc\x4e\x57\x0c\xbd\x1b\x92\x30\x1b\x9a\x5c\x1f\xa2\x18\x7c\x79\x4e\x3c\xde\x22\xd8\x28\xf0\xf2\xdc\x87\xa8\x91\xc0\x9f\x81\x8f\xa8\x46\xe1\xd3\x01\x52\x81\x77\xa8\x7d\x21\x9c\xfe\xf9\x01\x81\x34\xe5\x40\x12\x00\x8f\xc8\xbe\x17\xcb\x26\xfe\x57\xff\xb7\x65\xf8\x7c\x30\x75\x4f\xe6\xdc\x2f\xd3\x0f\x83\xd9\x7f\x2d\x63\xfe\xf7\xfe\x81\xc5\xfa\xf4\x25\x5b\xdc\xca\x0b\x73\x5f\xdb\x0f\x0a\x14\xec\x71\xff\xb2\xb6\xc5\x52\xce\x4d\xfe\xc4\x2b\xce\x46\x3b\x4d\x9c\xf1\x85\xc6\xc4\x9b\x99\x66\xa8\xf7\xc9\xf3\x7d\x17\x31\xcf\x0f\x89\x5c\x47\x9c\x4e\xb5\xc6\xff\xca\xd7\x4e\x95\x28\x15\x2f\x15\x3f\xfe\x36\x3a\xe6\x78\x6b\x23\xf7\xc9\x84\x90\xac\x63\x3e\x83\x21\xe5\x1f\x03\xa3\x0a\x1d\x7f\x69\x9f\xf4\x0f\x68\x3c\xfc\x6d\xa2\xaa\xd8\x30\x60\x6b\x1e\x7d\x6a\xc5\x91\x5a\x7f\xaf\x9c\xa4\xa9\xa9\x83\x49\xfe\xeb\x33\xca\x66\x70\xd9\x91\xcc\xbc\x17\xdf\x7d\x29\xf1\xb3\xe7\x93\x42\x98\x7e\x1f\x3e\x1c\x09\x7e\x73\x4f\xa2\xf3\x7e\x73\x1f\x5a\xb1\x89\xd4\xbe\x10\x7e\xaf\xa5\x31\x79\xb4\xad\x41\x69\x5e\x6c\x91\x21\xb4\x58\x7f\x17\x00\x9e\x76\x4e\xd1\xa5\x77\x01\x94\x83\x77\x5b\x2d\x4d\xfa\xa3\xff\x7b\xfa\xe0\x2c\x71\x7f\xcd\xbf\x33\xe7\xbf\x99\x3e\x00\xd7\x19\xf9\xe7\x4c\x0e\x60\x51\xff\xa0\xb7\xf7\xdf\xd8\xf4\x11\x87\x1b\x99\x7b\x8b\xf2\xee\xdc\x7e\xe8\x8d\x56\xf7\x5e\xc9\x1c\xf1\xca\xc7\x9f\x5e\x8c\x13\x14\xb4\x3f\x5c\x7b\xff\x84\x60\xe4\xe9\xbc\xb1\xe4\x57\x93\x81\xcb\xd1\x08\xf7\xb4\xb4\x7a\xbe\x28\x4a\x36\x7b\x84\xea\x4d\xde\x62\xa7\xc3\xa6\x7e\xe5\xb5\xd0\x60\x5c\x48\x76\xcf\xbb\xb6\xbf\x3f\xbf\xe8\x94\x8b\xe0\x15\xfc\x04\x1c\x1d\x70\x79\x77\x2e\x6b\x6a\x53\xfe\x31\x17\xfe\xd3\x52\xd3\x0e\xb9\x37\x5d\xd0\xd2\xd9\x19\x91\xcc\x61\x17\xab\x13\x99\x33\xe3\xa9\x5f\x5d\x04\x8e\x86\xcf\x8e\x24\x84\xba\x88\x1f\x91\x98\x0b\x8a\xd5\x76\x2e\x39\xd4\x45\x65\x8d\xcc\x70\x49\xc9\xf5\xa3\x3a\x84\x1b\x3b\x9b\x66\x4f\x53\xa9\xc1\xab\x9d\x5d\x33\xc5\x69\x26\x01\x61\x4e\x03\xe9\xaa\xb4\x7a\x5f\x0b\xc7\x8f\xa9\x15\x74\x31\xcf\x3c\x00\x91\xa9\xdd\x63\x4b\x85\x01\x08\x45\x4b\x89\xff\x70\x20\x0c\xdd\x93\xa9\x7f\x57\x04\x32\xae\xbf\xd0\xbf\xfd\xbf\x5a\xf0\xc7\xa7\xfd\x18\x5c\x98\x8f\x1f\x95\x1b\x16\x66\x79\x81\xc3\xbd\xf7\xfb\xaa\xb3\xa7\x6e\xfd\x8d\xf6\x9c\x4f\x03\x22\x31\xfb\x56\x34\x58\x0e\x6e\x51\xfe\x84\xef\xaa\x0a\x7e\x33\xa7\xc7\x6e\x71\xe2\x70\xfd\xab\x0e\x07\x65\xbf\xad\x51\x83\xcf\x85\x43\x29\x09\xb5\x7e\x02\xcf\xf8\x0b\x23\xd2\xc5\x5d\x0e\x3e\x7d\x78\x8b\x2d\x3b\xd0\xd6\xb9\x35\xbd\x37\x3e\xf7\x9d\x45\xff\x13\xe3\x69\x5c\x6e\x9e\x65\xe6\x7d\x9d\xe9\xb9\x4c\x39\xab\xcf\x75\xca\x33\x07\xd3\xf2\xad\xf9\x6b\xee\xcc\x46\x26\x3e\xb3\x11\xad\xd6\x9d\x45\xe2\xb7\xda\xac\x3f\xfb\x78\xae\x36\xaa\xd5\x46\xe0\x94\x2f\x95\x14\xae\x68\x23\x77\xf2\x36\xf5\x76\xc8\x6e\x9b\xa9\x13\x46\xd4\xaf\x41\xe3\x36\x45\xc7\x48\x34\x0f\x7f\x3d\x1b\x9e\x42\x07\xda\xa0\x77\x99\xf5\xec\x11\x31\xba\xa0\xa7\x9e\xf5\x97\x83\x73\xf4\x54\x37\x33\x00\x49\xdc\x0a\x98\xef\xe7\xbf\x3e\x10\x4c\x0e\xa4\x84\xa1\x7f\x32\xf5\x5f\xa6\xfe\xd9\xb5\xc0\x81\x20\xbe\x9f\x77\xce\xd7\x1f\x5a\xa3\x0b\x1c\xc8\xfb\xb2\x89\xb2\x05\xfd\x83\x73\x96\xb8\x8b\x75\x79\xe0\x83\x3b\x53\x97\x05\x0c\xd8\xaf\x5c\xcd\x1d\x5f\x27\xdf\x23\x3d\x52\xaa\xf3\x5d\x4e\x9b\x4d\xb7\x3a\xe3\xd7\x17\x19\x1b\x55\x27\x9e\x20\x8e\xa1\x3d\x81\xd1\x21\xce\xae\xdf\x3e\x44\x1e\x3e\x13\x75\xca\x66\xdb\xe0\xe3\xda\x5f\xf1\x4b\x4d\xf9\x06\xee\x76\x05\x26\xde\x36\xf0\x1a\xf8\x31\xd3\x99\x94\x67\x40\xef\xfa\x3e\x7b\x39\x4e\xd1\x88\xb3\x0d\x99\x23\x46\x9b\x19\xb1\x3e\xca\xa6\xae\x09\x2b\x31\xde\x70\x4f\x92\xea\x13\x12\x6f\x7c\xb7\xce\x9f\xfa\x24\x48\xd5\x64\x6b\xed\x4a\x9a\xb2\xbf\x98\xa9\xe2\xa5\x2c\x9a\xb7\x1f\xb7\x69\xe0\xf9\xbb\xb4\xbb\xde\xf7\x4c\x4a\xce\xea\xd3\x4d\xdc\xe8\xa6\x32\xa7\x48\xf4\x0c\x57\x67\x33\xa9\x32\x0b\x7a\x86\xeb\x01\xd3\x2d\x25\x4d\xc8\x5a\x87\x1e\x00\x22\xe3\xba\xfe\xce\x85\x09\xff\xf7\x1c\x60\xfa\x20\xdc\xbf\xfb\xf7\xf5\xc7\x46\x87\x17\xce\x85\x31\xff\x9f\x0b\xba\xe0\x07\xb1\x39\xa3\xf9\xfa\xf2\x04\xb6\xc0\x0d\x3c\x8c\x05\x58\x37\x8d\xc3\xdd\x1c\x07\xe0\xed\xda\x42\x3b\x9b\x0b\xe3\xd2\x67\x04\x39\x0b\x42\xd1\x5c\x0d\x3d\xd5\xea\x84\x76\xea\x37\x0b\x17\x93\x74\xef\xb8\x99\x83\xbe\x55\x6e\x3b\xec\xfd\x67\x72\xf3\xfa\x7d\x9e\x9b\x36\xcf\x9c\xbf\xf2\x2a\x90\xac\x37\x34\x93\xde\xa9\x15\xb2\x49\x9b\x67\xf6\xfe\xf4\xc9\xd0\x75\xda\x02\xa3\xda\x54\x9b\xc0\x6e\xed\x97\x1f\xd6\x52\x3b\xfc\xc9\x3a\x87\x7a\xf6\xd2\x14\x7c\x06\x75\x7d\x5f\xec\xa1\x25\x78\x6b\x50\xf2\x9e\x68\xd2\x4e\x7a\x3d\xa6\x4c\x3c\x70\xa5\x4d\x7b\xd8\x52\x5a\xef\x96\xd0\x5d\x5d\x26\xf4\x0e\xdf\x92\xa5\x9f\x75\xde\xa4\x8f\xaf\x75\xa4\x37\x3a\xb9\xea\x9d\xbd\xf2\x05\x11\xb6\x2b\xd0\xbb\x50\x7d\x1f\x09\xb3\x1e\xd7\x7b\x79\x4e\x1b\xa9\xb2\xda\x0a\x60\xce\xb8\xfe\x61\x8c\xfb\xff\x20\x63\xfe\x9f\xa9\x7f\xff\xdf\x1c\xc8\x78\xd9\xc4\x8b\x05\xfd\x4f\x94\xbe\xf0\xfb\xaf\x45\x19\xfa\xd7\xbb\xc5\x7a\x2d\x15\x60\x29\x1d\x87\x3b\xc7\x0f\xc0\x33\xba\xe9\x7c\x71\x2c\x80\xd4\xc5\xbd\xa2\x59\x6b\x20\x88\x34\x2e\x2b\x17\xb1\x1a\x0b\x36\xb3\x25\x9b\xb8\xc9\xa2\x36\x9e\x1d\xe6\x9f\xad\x0b\x90\xe1\xf4\xf5\xb6\xe1\xc6\x85\x88\x61\xa5\x9f\xd3\x39\x8a\x0c\x1d\xbb\x57\xe4\xa2\x49\x76\xa2\xe7\xf4\x0e\xba\xf5\x69\xc8\xd1\x53\xa7\xed\x5d\xab\xd4\x75\x67\x97\xd0\xf5\x9c\xd4\xd4\x1f\x8c\x60\xf4\x44\x47\x6e\xf5\xfa\x0f\x63\xf4\x0f\x76\x52\x1a\x4f\xdf\xb4\xd2\x87\xec\xce\x69\x92\x5e\xe6\x21\x3b\x6c\xf7\x68\x19\xb5\xb5\x22\xdc\xb6\x02\x5a\x71\x8f\x1d\x10\x27\xeb\x95\x5a\x65\x4d\xd3\xc8\x51\x4b\x29\xb2\xeb\x9d\x7c\xe4\xaa\x45\x84\xd6\xb9\xfa\x3a\x74\xb9\xe9\x0e\xb2\xc3\xf5\x43\x28\x97\x09\x1f\x80\x67\xff\xbf\xfb\xa0\x82\xf1\x1c\xa8\xbb\xbf\x58\x5f\x30\xee\x93\xe1\xe3\xf3\x75\xb2\x79\x7a\xbe\xe0\x3e\xff\x80\x85\xe7\x43\x17\x63\x0e\xf6\x61\xfd\xbf\xfa\x5f\x65\x11\x00\x2e\x19\x87\x3b\x61\x04\xc0\xed\xbe\xbe\x25\xaf\x03\x40\xea\x20\xd7\x70\x7c\x2f\x34\x11\xc3\xc5\xf8\x02\x12\xb0\x6f\xa6\x7c\x6a\x17\x1d\x77\x61\xda\x6e\x4b\x74\xa2\x2c\x57\xa1\xdd\xf1\x2f\x8c\x8c\x0c\x8f\xa0\xf9\x45\x44\x53\x39\xdd\x75\xa8\xcd\x25\x33\xb3\x57\x9a\xbf\x50\xa1\x07\x89\xe6\x03\xea\x2b\x10\x7a\xaf\x82\xc5\x33\x02\x0d\x79\x33\x39\x6b\x29\xa5\xe6\x84\x9a\x20\x9d\x26\xeb\xf0\xf7\xa7\x9f\xa1\x5b\x0c\x53\xd5\xb4\xbe\xef\x44\x37\x18\xa2\x6a\xa1\x1f\x23\x51\x61\xc3\xcd\x6a\xb5\x7d\x1f\x50\x8a\xfe\x2f\x42\x52\x97\x25\xaa\x63\x60\x4e\x54\xe8\xd8\x88\xea\x1a\x1c\x21\x94\xb5\x25\xa3\x85\x14\x07\xc2\xc4\x63\x51\xf4\x9a\x2e\x91\xd8\xde\x94\x80\x5e\xd3\x3d\xf4\x67\x1f\x14\x1f\x62\x9c\x83\x0c\xff\x87\xa7\x8c\x3c\xa0\x8f\xd5\xf3\x75\xf6\xed\x9c\xd5\x82\xfe\x39\xcb\xe0\xa0\x18\x7a\xff\x63\x86\xee\x73\xb3\xfa\x5f\xfd\xb3\x34\x0d\x60\xd7\x87\x15\x0d\x07\x7d\x00\xb8\xf8\xd7\xba\x24\x3f\x03\x10\xaf\x64\x7b\x1a\x6e\x09\x93\x04\x25\xc1\x56\xcf\xa7\xe0\x61\x78\x46\x16\xb5\xa1\x62\x9f\x1d\xcf\xaa\xe5\x98\x6d\xc5\xca\xc3\xef\x6b\x7c\xd5\x77\xc5\x42\x72\x43\xc8\x79\xda\x43\x98\x72\x99\xab\x2e\x0b\x93\x7b\x20\x15\xa1\xfd\xcd\xda\xfa\x81\x04\x49\xf4\x6a\x6f\xbb\x41\x15\x7e\x1b\xfa\xf4\xe7\x6b\xbd\x6e\x15\x71\x4c\x07\x7d\xab\xd5\xfd\x3b\xdf\x22\x66\xe6\x3b\x46\x20\x3e\x55\x96\xfd\xd1\x84\xed\x54\xef\x54\xe6\xf8\xf4\x08\x13\x27\xdd\x54\xfa\x3e\x60\x80\xe9\x12\x7d\x55\x12\x7a\x71\x18\x9b\x86\xb4\xca\xdb\x97\x21\x18\xbf\x7a\x9b\xb2\xd1\x73\x2e\x2c\x11\x3f\x0b\x70\x98\xeb\xdf\x73\xe0\x11\x83\x87\x58\xd4\x7f\x69\xf7\x67\x1d\x70\x7f\xf9\x20\x30\x39\xa8\x16\x4b\x06\x07\xf4\xfd\x5f\xfd\xb3\xf8\xc8\x62\xcd\x7a\xbb\xa8\xfb\x27\x1e\x04\xd8\x94\x8d\xc3\x45\xeb\x02\x88\xbe\xdf\xb1\xcb\xaf\x12\x40\x95\xca\x7b\xc9\xc5\x0c\xce\xeb\xc7\x88\x0f\x59\x86\x81\x9a\xfd\x72\x85\x1b\x46\x03\xc0\x1d\xe4\xa6\xc2\x49\x71\xc0\x20\x65\x18\x7f\x99\x5c\x83\x3d\x38\xba\x8a\xe4\xae\x61\x83\x35\x9c\xca\x26\xb9\x11\x9d\xb1\xb2\x6b\x04\x75\x2f\xb5\x6c\xcc\xbd\xb9\x4a\x8b\x45\x65\x0c\x0b\xee\xda\xa9\x71\x4f\xe9\x3d\x56\x3c\xac\x43\xb2\xfe\xcd\x3b\x68\x82\x38\xf6\x52\x29\x53\x0e\xc0\x0f\xb6\xc8\xf5\xcb\xc9\xcc\x65\x00\xb7\x6c\x89\xdc\xeb\x9f\x1b\xb1\x19\xf9\x27\xf2\x4b\xbe\x0e\x62\x3f\x14\x24\xe5\x76\x7d\xdc\x00\x5b\x65\x6f\xcb\x3f\xec\xdf\x81\xbd\x57\xdc\x0a\x70\x26\xe8\xdf\x73\x70\x91\x83\x41\x5f\xcc\x38\xcf\xd7\xef\x78\x48\xc2\xfd\xe5\x83\xf0\x9b\x03\xca\x61\xe8\x9f\x3f\xfe\xd5\x3f\x99\x39\x00\xcc\xf9\xef\x58\x2d\x00\xce\x0d\xab\x4a\x03\x65\x01\xf6\x97\x6d\x59\xe7\x31\x0d\xa0\x32\xcc\x15\x65\xa7\x0a\x5f\x75\x0d\x05\xbf\x9b\xe6\xc1\x71\x2b\x92\x44\xad\x81\x31\xc4\xf8\x04\xcb\x74\xea\xf2\x82\x51\xec\x6b\x85\xca\xdf\xf9\x0e\x09\xc0\x75\x2c\x49\x79\x98\xa0\x0d\x42\x95\xca\x4a\xaf\x7f\xe7\x3a\xa8\x60\x5f\x9a\xb3\xf0\xfa\x4a\xa7\xb1\xa1\xce\x52\xbc\x8a\x42\x3f\x86\x0c\xf9\xa8\xa4\xca\x3f\x00\xd1\x69\x19\x25\x96\xdf\xbc\xc3\x24\x3c\x80\x40\x49\xfd\xdf\xbc\x43\x32\x8d\x07\x5e\x0b\x7d\x97\x54\x9f\x2c\x86\x16\x61\x19\x49\x8e\xef\x87\xa1\x41\x38\x01\xa0\x9e\xc1\x83\x31\x73\x81\x16\x39\x98\xb1\x0f\x70\x6e\xbe\xf6\x8d\x2e\xf6\xc3\xf4\x41\xb8\xc3\xd0\x3d\x2f\xdd\xff\x57\xff\x64\xea\xbf\xa9\xa9\x8b\x95\xe9\x03\xe1\xf6\x0b\x60\xb9\x2d\x0e\xe7\x79\x1c\x40\xf0\xfc\x06\x57\xa7\x17\x00\x0a\x63\x6c\xf7\x2d\xa3\x00\xc8\x2d\x7c\x38\x43\x07\xe8\x33\x5b\x26\x54\x42\x51\x84\xa7\xae\x26\x22\x73\x64\x43\xa8\x09\x2d\x97\x20\xa9\x0f\x41\x45\xf2\x66\xc9\x1f\x24\x23\x88\x3e\x60\x29\x2b\xa2\x76\x1e\x02\x8b\x9b\x64\xef\x31\x73\x1d\x94\xbc\x21\xec\xaa\xbe\xcc\x25\x85\x09\xb0\xbe\xaf\x26\x67\x2f\xdf\x0d\x26\x6d\xc3\x72\x57\xe4\xa6\x80\xd2\x7f\x44\x5e\x55\xb6\x1d\x02\xbf\x2f\x91\x55\x66\xf2\x0e\xd2\xef\x61\x04\x4e\x88\x65\x49\x1e\x07\x80\x11\xa1\xad\xe2\xbd\x00\x00\xfc\x02\xa2\x6f\xb0\xf9\x77\x49\x9f\x3f\xe7\xe0\x22\x07\x33\xc1\xe8\xfb\xb7\xfe\xcb\x98\xff\xbf\xcb\xc8\x47\xba\xc2\xd0\x6d\x4f\x31\x7c\x40\x0a\x6a\x18\xfa\xef\x1e\x86\xfe\xcd\x38\x1f\x7c\x18\xba\xb0\xed\x76\x00\x9c\x35\x0e\xe7\x6c\x06\x20\x60\xbf\x2e\xde\xba\x05\x40\x2e\x6e\xfb\x3d\x93\x51\x00\x0d\x7b\xce\x41\xbd\x14\x00\xc3\x70\xbe\x70\x1d\x5f\x18\x75\x2c\x12\x5a\xa9\x51\x0b\xe3\xbe\xa3\x42\x16\xcc\x7c\x07\x42\x04\x3c\x4f\x91\x16\x3d\x80\xcf\x86\xa6\x5c\x4c\xec\x89\xf2\x4d\xb8\x53\x2c\x27\xbe\x4d\xb1\x11\x6e\x55\xb2\x8b\xeb\xca\xcb\xc3\xbd\xcb\x81\x62\x3e\xb2\x37\xa0\xee\xf6\x19\xb1\x27\x72\x78\x48\x6f\x0d\x90\x1a\x94\xd9\x08\x17\xba\x54\x24\xb6\x49\x67\xc3\xf5\xa1\x23\xe2\xef\xa4\x65\xe0\xd5\x44\x87\xd8\x79\xa9\xcf\x00\xd0\x28\xb2\x57\x92\x08\x00\xd3\x82\xba\xcc\xf5\x60\x72\x30\x33\x8c\xeb\xfc\x81\xc1\x75\x30\x39\x20\xa6\x0f\xc2\x55\xc6\xf5\xff\x7f\xf9\x20\xc4\x33\xfe\x1f\xd3\x07\xc2\x65\xed\x62\x75\x7d\x0c\xb0\xbb\x63\xc5\x1a\x6b\x3e\x00\x5e\xef\x55\xea\x26\xf7\x00\x24\x92\x37\xf6\x1b\x0c\x01\x10\xfb\xd9\x15\x75\xaf\x01\xe8\x9f\xe7\x99\x22\x0b\x01\xd8\x44\xf2\x51\x34\x9a\x01\x3c\x0a\x04\x36\x10\x4f\x00\x35\xa4\x49\xf0\x28\x3e\x09\x20\x86\x28\xf0\x54\xa5\x08\xe8\xa9\xb2\x82\x37\x95\xb9\x61\xe4\x40\x8b\x70\xaa\x62\x05\x0c\x16\x0d\xed\x0f\x52\x88\x84\xe7\xa7\x2e\x89\x6e\x65\xfa\x1a\xc8\x04\x40\xcf\xad\xbe\xfd\x5f\xa5\x9b\xe0\x45\xd3\x29\x91\x4a\x26\xef\x20\xd5\x0a\x2d\x6f\xdb\x45\x3f\x31\x79\x07\x49\x15\x80\x89\x0e\x61\x29\xe6\x7a\x20\x8a\xf0\x0c\xf7\x37\x07\xf4\x1f\x3f\x20\x66\x2e\x16\x33\x17\xea\x98\x15\xe3\x1c\x60\xf0\x3f\x49\x8c\xf5\x09\x67\xec\x03\xa6\x0f\x04\x53\xff\xb7\xcb\x01\xd8\xfd\x69\x79\x95\x7a\x1e\xc0\x6a\x4d\x1c\x4e\x7f\x1a\x40\x74\x60\xbd\xbe\xb6\x1e\x80\xd2\xd7\x6d\xeb\xb4\x34\x00\xb4\xb7\xb2\x8f\x6a\x64\x00\x98\x3b\x70\x9d\x23\x99\x03\x38\x25\xf3\xa0\x6a\x4e\x00\xbe\x99\x7b\xc5\xf0\xee\x00\x61\x42\xfc\x96\x2a\x12\x00\x31\xd5\xfc\x5c\x4a\x11\x00\x29\xa1\xfc\xf5\x0a\x8d\x00\x79\x2f\xf6\x8d\xc8\xfb\x03\x1c\x9d\x12\x98\x90\x79\x02\x50\xc6\xb3\x2f\x5c\xfa\x26\xc0\x79\x79\x01\x17\x69\x36\xa0\xd7\xa4\x09\x1a\x4a\xe9\xc0\x54\xc3\x8c\xd0\x0a\xc9\x0c\x98\x7c\xcc\x22\x44\x91\xdc\x08\x13\x9d\xc6\x42\xf7\x24\xbe\xc1\x54\xdf\x7d\x61\x1e\x89\x3a\x80\xd1\x4c\xa1\x82\x61\xc6\xdf\xcb\x7c\x0f\x7a\xb4\xec\xdf\xf7\x80\xaa\xa0\xc5\x7a\x42\xf3\x3f\x1c\x0c\x63\x3d\x22\xa5\x16\xab\x1f\x37\x83\x7f\x61\xf8\x6a\x99\xe2\x17\xab\x36\x83\x33\x55\xdb\x0b\xc0\x3a\x84\xc3\x69\xff\x04\x10\xa2\xad\x31\xd4\x60\x05\x50\x20\x6d\x26\x12\x56\x00\xa8\x15\x6d\xab\xc0\x77\x01\x18\x9c\xdd\x95\x83\xbf\x0d\x60\x99\xcd\xee\xa1\xaa\x0c\xe0\xf2\x8d\x63\x4c\x45\x1b\xc0\xa7\x95\xeb\xaa\xf2\x66\x80\x90\x8f\x3c\x02\x8a\x86\x00\x31\x6f\x78\x5e\xc9\x7f\x03\x48\xb9\xcd\x7b\x49\xd6\x19\x20\xc7\x9c\xa7\x57\x56\x0a\xe0\x88\xcb\xde\x77\x32\x51\x00\x27\x8f\xf2\x0f\x4a\xbd\x06\x38\x3d\xc7\xbf\x49\xf2\x17\xc0\xc5\x10\x7e\x2f\x49\x17\x80\x9b\x2e\xfb\x52\xc5\x07\x01\xee\xbd\xe6\x0f\x10\x6b\x07\x78\xc2\xc3\xf7\x4c\xec\x25\xc0\x4b\x6e\xfe\xcb\xbf\x9f\x83\xa6\x8c\xe7\xe0\x81\x7f\x9f\x83\xcc\x5c\xa8\xc3\x0c\xde\x27\x83\x91\x17\x13\x53\xf6\xef\x3e\x70\x0f\xfd\xf7\x3e\x30\x58\xfa\x2f\x07\x22\x37\x02\xb0\xa4\x0e\x87\xd3\xf0\x00\xd8\xc7\xce\xfa\x70\xfe\x3a\x4b\xbc\x5c\x4b\x53\xde\x0b\xa0\xd4\xb6\x29\x40\xa1\x15\x40\xeb\xe1\x16\x6e\x45\x23\x00\x63\xdd\xed\x64\xa5\xa3\x00\xb6\x25\x6c\x78\xf9\x55\x00\x4e\x56\x3b\x2f\x2b\x76\x01\xf8\xcd\x70\xfc\x52\xd8\x05\x10\x48\xe7\xe0\x93\x5b\x02\x10\xe5\xce\x11\x21\xe3\x01\x90\xa4\xc4\xf1\x4d\xc6\x0c\x20\x0b\xe1\x96\x94\x0e\x04\x38\xec\xca\xb3\x5e\xd2\x16\xa0\x28\x8f\xeb\xa7\x24\x0e\xa0\x3c\x84\x27\x52\xc2\x15\xe0\x5c\x10\xaf\x9e\xf8\x32\x80\xab\xcf\x79\xfa\xc5\x9e\x02\xd4\x1b\xf2\x7e\x14\xe3\x02\x68\x3c\xcf\xbb\x40\x43\x51\x70\x8b\xfa\xc5\xbf\xbe\x20\xff\xe3\x83\xa0\xa6\x3a\xcd\x3a\xf6\x87\x83\x50\x93\x26\xe1\xb7\x0b\x00\xa8\x37\x6a\x49\xb0\x55\x01\x90\x33\xf5\xac\xb8\x76\x01\x50\x3e\x98\xe7\x09\x24\x01\xe8\xe9\x38\xfd\x14\x5b\x02\xa0\x77\xda\xef\x9b\xac\x1d\x00\xc5\x29\xf6\xbb\xca\x31\x00\xed\x8a\x5c\x94\x78\x1e\xc6\x35\x5f\x94\x56\x68\xce\x40\xbd\xfa\xfa\x1a\x0d\xdd\x1a\xa8\x20\x44\x3c\x58\xa6\xe7\x06\xb9\x78\xa3\xd7\x9d\xfa\x74\x38\xa4\x72\x71\x38\xc5\x80\x13\x12\x55\x52\xe7\x5e\x18\xb1\x43\x9b\xb2\x3d\xaa\x4a\xb9\x07\xa0\xf8\x06\x7d\xa0\x85\x9b\x6e\x53\xe2\x47\x2f\x91\xb7\xfd\x98\x50\x52\x42\x6f\x6b\x9d\xff\xcc\xa7\xf4\x06\xbd\x41\x56\x7c\x5f\xa9\xd4\x8a\xf6\x6b\x9e\xef\xdd\xaf\x5c\x80\x76\x6b\x69\xbf\x7c\xad\x1c\x8a\xe1\x34\xbc\xda\xe2\x55\x74\xb1\x35\x1a\x94\xc7\xa7\x54\xf7\x62\xac\x1a\x77\x1f\x2e\x57\x59\x8e\x19\x10\x59\xee\x77\xab\x5a\x63\xa2\xea\x0b\x77\xb9\x4e\xc5\x7f\x78\x98\x05\xfd\x7f\x49\x98\x12\xdb\xdf\x7a\xa7\x50\x88\x8a\xcf\x2a\x35\x00\x85\xd5\xaa\x7c\x1b\x63\xff\xac\x83\xc6\x53\x8d\x28\xb6\x9b\x00\x3a\xf9\x14\x0b\x6e\x7f\x00\x3d\x65\xe3\x3b\xfc\xbf\x00\x0c\x2e\x3a\x2d\x93\x08\x00\x30\xd0\xf3\xdf\x26\x3f\x08\xa0\x87\xc6\x4e\xa9\x59\x02\xe8\x3c\xcb\xdd\xa0\xae\x0f\xaf\xb4\xbe\x94\xa2\xda\xe9\x70\x4a\x7d\xfa\x6a\xa4\x5e\x24\x04\x11\x2b\x1e\xd4\x18\x8e\x82\x27\xbe\xb7\x47\xc9\x28\x0e\x5c\x54\xa3\xbf\x06\x1b\xf3\x80\xa7\xca\x17\x44\xc4\xf8\x2d\x5c\x57\xbe\x8f\xee\xd6\x57\x42\xdc\x94\x24\xd0\xd3\x64\xe7\x49\x7e\xa5\xb3\x68\x9e\x76\xc9\xb7\x60\xe5\x08\x34\x5c\x07\x1d\x1c\x52\x11\x44\x23\x75\x8d\xdf\x4a\xa9\xdc\x47\x93\x74\x89\xaf\xf2\x55\x97\xa2\x67\xb4\xbf\xb7\x23\xaa\x9b\xd0\x17\x64\xd1\xd6\xdd\xaa\x25\x68\xbf\x56\xdf\x43\x37\xb5\x9d\x68\x83\x76\xcf\x03\x82\xaa\x34\x26\xa8\x8e\xbf\x3b\xa7\xea\x86\x91\x48\xeb\xfe\x2f\x2e\xe8\x5f\xfd\x9f\x43\x43\xe9\xdc\xb2\xef\x00\x62\xc2\x8a\x0f\x57\x8f\x03\xc8\x9b\x2b\x99\x6c\x08\x01\x20\x18\xe3\x2d\xb7\xad\xfd\xc3\xc5\x50\x3e\xe9\xd2\x78\x50\x00\x03\x5f\xe3\xdd\x02\xdd\x00\x46\x21\x0e\x03\x52\x4b\x00\x8c\x0a\x7c\x43\x94\x64\x01\xf4\x27\xa3\x3e\xe2\x27\xe1\x0b\x25\x37\xe7\x9d\x56\x3e\xb4\x90\x13\x4a\x4b\x75\x4a\x20\x40\x33\xed\xaa\x95\x91\x09\x04\x13\xe3\x9b\x09\x86\x2f\x40\x56\xad\xae\x37\xd0\xb4\x11\xc4\xf1\x5c\xa3\xfa\x66\x2e\xe0\xac\x82\x20\x27\x4d\x14\xa1\x52\x65\x39\xba\xc4\x80\x32\x77\x51\xf9\x15\xca\xa1\x4f\xf8\xc9\xae\xc2\x89\x0a\xe8\x8b\x7e\x7e\xa7\x32\x80\xf2\xea\xbf\x7a\xff\x51\xa5\x1f\x35\xa7\xfc\xea\x99\x56\xd5\x40\x83\x29\x3b\x3b\xea\xf0\x99\xa8\x8b\x9e\x42\xdb\x49\xd5\x4c\xb4\x8d\x7c\xe4\xb1\x13\xfe\x15\x7a\x53\x7b\xea\x01\x01\x9f\x80\xfe\xd0\x0a\xbc\xd7\x88\x3f\x89\xad\xd4\xd4\xbe\xfd\x45\xcd\x18\x5b\xa3\x69\xb1\xb0\x1f\x54\xfe\x2f\x2e\xe8\xbf\xfa\xbf\x38\x4d\xa1\x78\x4d\xee\x1f\x0e\x82\x78\x4c\x75\x60\x1b\x37\x80\x76\x16\x09\x61\xa3\x02\x18\xdc\xd2\x0d\xe7\xed\x06\x30\x1c\x31\x7c\x20\x58\x05\x60\x9c\x6a\x67\x25\xd9\x0e\x60\xfc\xd1\x53\x54\x91\x02\x60\x78\x2a\x4a\x94\x68\x09\x03\x7a\x4b\x72\x52\xc9\xaa\x50\xa9\xb3\xa1\xa4\x59\x2f\x1b\x0c\xb5\xf8\x6a\x2c\x4c\xb2\x61\x2f\xe9\xc3\xa3\xe7\xe6\x5b\x31\x94\x90\xf2\xf6\xb0\xa5\x12\x08\xe0\xf9\xc7\x48\x66\xa3\xa0\xa0\x7a\x10\x71\x30\x2b\x81\x5c\x15\x3b\xe4\xbd\xe1\xa5\xe9\xa3\x2a\xae\xc8\xb4\xe1\xc6\x11\x0f\xd5\x4a\xe4\xb1\x71\xc6\xd0\x7e\xbc\x0d\xf2\xcc\xf8\x66\xdf\x21\xbc\x3e\xba\xd6\xd0\xeb\x55\x09\x7e\x0e\x15\x36\x28\x7a\xde\x83\x6f\x46\x3d\xf4\x04\x5a\x0d\xd4\x6c\xd0\x18\x4a\xe1\xc3\xfd\x6a\x2e\xe8\x65\x9d\xa4\xc6\x23\x84\x5f\x68\x2e\x25\xaa\x41\x95\xb0\x1d\xfd\x4c\x36\xab\xeb\x22\x94\xa0\x9f\xc9\x71\x7f\xf3\x51\x8b\xb9\x49\x4c\x9d\x8f\x9d\x4f\x45\x70\x29\x0d\x80\x3b\x5d\xbe\x6d\xc5\x26\x00\x89\x6a\xb9\xf8\x35\xb1\x00\x8a\xba\x0a\x37\x37\xfc\x04\xd0\x78\xa9\xdc\xbd\xf5\x31\x80\x2e\x91\x08\x6c\x3d\x00\x86\x75\xe4\x03\xdc\x65\x00\xc6\x2c\x86\xdf\x85\xfc\x01\x4c\xc7\xad\x57\x48\xdd\x03\x30\x19\xf4\x34\x57\xea\x03\x30\xf2\x88\x88\x26\x46\xc1\x1d\x03\xc1\xac\x72\x5d\x15\x88\xd7\x55\x2e\xdd\x6b\x18\x09\x12\x64\xf1\xab\xce\x66\x17\x81\x93\x34\xf0\xd8\xcd\xdc\x01\x96\x10\x0c\xfb\x2e\x5a\xd0\xb1\x8f\x6a\xb8\x5f\x76\x56\xd3\xb0\x4b\x95\x8e\x88\x59\x78\xd0\xbd\x54\x6e\x20\x0f\x8d\xfa\x27\x58\x55\x25\x90\xbb\xc6\x29\xc3\xbc\xf8\x0d\x48\x83\x09\xdf\x80\x0f\xfe\x25\xd2\x64\x62\xd3\x6b\xa7\x86\x47\x86\x8d\x65\x3b\xea\x08\x91\xc8\x27\xe3\x81\xff\xe1\xc2\x96\x13\x26\xd0\x40\xbd\x93\x77\x0f\x13\xa5\xd1\x42\x8a\x78\xfd\x71\x62\x04\x7a\x5d\xe7\xd7\x0d\x32\xb1\x1c\xed\xd7\x56\xf8\x5f\x2e\x88\xa9\xf3\x31\xf5\x7f\xbe\x1f\x32\x43\x2c\x71\x7f\xf2\x20\xf0\x61\xf2\x5f\x37\x36\x02\x90\x95\x95\x14\xb7\x7a\x03\x18\x7c\x51\x33\x62\x73\x03\x30\x56\xd0\xd2\xe3\xde\x0b\x60\x7a\xdd\xa0\x59\xa8\x1a\xc0\xfc\xaa\x45\xa9\xb4\x3d\x80\xb9\x97\x9b\xa6\x4a\x14\x8c\x9b\xe4\x85\x1f\xd0\xc8\x84\x06\x03\xc9\xac\x63\xba\xda\xe0\xad\x3b\x53\xf2\xcc\x68\xf4\x37\x2f\x37\xac\xfe\xae\x85\x60\xf5\x1a\x7b\x47\xa8\x7a\xcf\x6f\xcd\x8b\x35\xa8\x91\x67\x1a\x6c\x49\x20\xa1\x7a\x0e\x31\x35\x5f\x35\x47\xc2\x6f\x46\x48\xe6\xe3\x3f\xa2\xf0\x0d\x88\x8e\x05\x7e\x68\x4e\xed\x20\xe2\x60\xb1\xb6\x4f\x84\xe0\x8f\xf8\x5a\x6c\x7f\x15\x4f\xb4\x46\x92\xcc\x5b\xda\x49\xc4\xaf\xc8\x79\xb3\xe3\x2d\xf2\xa4\x32\xe4\x89\xe9\x9d\x66\x3d\x52\x3e\x8a\x33\x2e\x67\x72\x61\xb7\xab\x49\xcf\x51\x67\xfd\xee\x9b\x56\xea\x3b\xd1\x4c\x3d\xa3\x9a\x27\xa4\x6a\xf4\x95\xf6\xc8\xff\x9e\x0b\x4c\xfd\x7f\x63\x92\xcc\xba\xf9\x2a\xa0\x21\x33\xbd\xd2\xf5\x0f\x07\xc1\xf4\x83\x60\xe6\xa4\x30\xfd\x62\xcc\x6a\x35\x9d\xb9\x1f\x01\x58\x5a\xe9\xf5\x0b\xe5\x03\x58\xc8\x58\x2c\x95\x2e\x01\xb0\x48\x74\xd9\xad\x92\x02\x03\xa6\x10\xb6\x5c\xf3\x07\x94\x1b\xd2\x32\x6e\xe8\xa5\x82\x39\xe5\x46\x89\x9b\x89\xeb\xef\x75\x78\xa0\xe1\xf0\xc4\xcd\x76\x15\x76\x9a\x68\x35\x50\x67\x47\xc6\x8e\xab\xe5\x51\x3f\xda\xb3\x62\x80\x37\x40\x58\x2d\x3b\x26\x82\xd4\x2c\xe8\x83\xd6\xef\x86\x9b\x09\x3e\xf4\x37\x36\xad\x03\x64\xa2\x00\x7d\xce\x46\xba\xfb\x09\xf1\x20\xa2\x61\x39\xd2\x69\x4f\xf2\x44\x74\xac\x76\xb5\xd6\x90\x3e\x21\x47\xcc\x9b\xff\xcb\x85\x35\x6c\xd0\xe0\x43\x37\x1a\xa7\xdd\xdc\xa7\x29\x86\xee\x32\x8e\xbe\x96\xae\x29\x87\xea\x1a\x46\x5f\x0e\xd2\x48\x42\xcf\x50\x42\xfe\x5e\x87\xc5\x73\x01\x97\x28\x53\xfb\xb7\xfe\x2f\xe4\x20\x79\x63\x65\x2b\x80\xbc\xa9\x94\xc1\x5a\x57\x00\x8d\x9f\xd2\x97\x36\x0c\xfe\xe1\x41\x98\x5c\x8c\xb5\x22\x69\x80\x5b\x1b\xc0\xa6\x44\xf7\xa0\x60\x23\x80\xb5\xad\xd9\x03\x19\x5e\x00\xab\x2e\xa7\x32\xfc\x10\x3c\x33\x3f\x13\x42\x21\xa7\x40\x9a\xb1\x41\xfa\x5b\x83\x13\x20\xac\xaf\x7a\x22\xc9\xdc\x05\xab\xd5\x39\x75\x8d\xc7\x2e\x05\x8b\xd2\x4c\x6c\xdd\xef\xb8\x03\x73\x20\xce\x0c\x7d\x74\xfc\xfe\xdb\x2f\xeb\x89\x5a\x03\x3d\xcd\xee\xfe\xd8\x13\x82\x15\x3d\xdf\xae\xe7\xe3\x39\xe2\x20\x3d\xdc\xa1\xb0\xaf\x9c\x24\x4c\x6f\xb3\xe3\x78\xa5\xa6\x1e\x4f\x7f\x69\x97\xd8\xd6\xa5\x61\x8f\xe0\x6c\x6d\x7e\x73\x61\x9b\x34\xe5\x91\x40\xcb\x9e\xbb\x3e\x9a\x12\xc8\x45\xf3\xea\x9b\x45\x5a\xfb\x91\x5e\x33\xdd\xda\x36\xad\x5d\x28\xab\x49\xd0\x65\x1a\x59\x11\xdd\x64\x62\x57\xdd\xa9\xe5\x8c\xfa\x1a\xb8\xfe\xc3\x05\x2d\x9c\x13\x4b\x70\x52\x46\x0b\xcf\x09\x39\x19\xab\x65\x89\x00\xa2\x9d\xe2\xc1\xab\xf8\x01\x94\x44\x25\xaf\xaf\x3d\x0b\x40\xe6\x91\xde\xb4\x71\x09\x80\x61\xbd\xd4\xaf\x4d\x3d\x00\x96\xb5\xf2\xb0\x23\x04\xc0\x3e\x57\x2d\x9d\xb3\x1d\xc0\x71\x40\x3b\x5b\x88\x0f\xc0\xbe\xde\xc4\x48\xba\x1b\x68\xb6\x09\xf6\xa2\x04\x89\xdf\xbe\x62\x0e\xa6\xcd\x29\x88\xb1\x37\x86\x1a\x9c\x3e\xb1\xd6\xca\x0f\x2b\xd7\xf9\x75\xcd\xd7\xbe\x18\xd3\xd6\x9c\x7c\xda\xe3\x5c\x80\xad\x26\x95\x7c\x89\x73\x5b\x85\xf1\x10\x1e\xd3\x1a\x5d\x86\x7e\x95\x12\x4b\x68\x5d\x2e\x93\xc3\xb2\xa4\x53\xb4\xef\x2e\xc8\xfb\x02\xf5\x1f\xb4\x2f\xae\x4f\xbb\x29\x1a\x4e\x74\x1d\xe7\x4d\xcf\x06\x34\x8b\xe9\x29\x8e\xaf\x5a\x5c\xb4\x0e\xd1\x8b\x1c\xf3\x1f\x64\x6b\xf5\xd1\xfb\xec\xa3\x98\x3e\x59\xb7\x6e\x93\x51\xc4\xc0\xfa\xc3\x75\x2f\xf2\x73\xe4\xa8\x25\xf1\x72\xa7\xf6\x0e\x64\xc8\xcc\xbf\xba\x4a\xdb\x0e\x65\x31\xdd\x7e\xf6\xa4\xce\x1e\x54\xd4\xb8\xea\xef\x73\x61\x71\x3f\xac\x48\x95\x98\x9b\xaf\x3c\x23\x92\xbb\x56\xb0\x00\x48\xca\x8b\x7d\x5b\xf5\x0e\x00\x1f\x29\x7a\x6d\x4d\x2a\x00\xc5\x42\x7c\x6a\xc3\xe6\x3f\x3c\x88\xdd\x4e\x99\xb2\xed\xac\x00\xae\x7a\x2a\xfb\x39\xae\x02\xb8\x69\x68\x7d\x12\xf2\x02\x70\x21\x18\xda\x4b\x75\xc0\x88\x7d\x8a\x9d\x36\xf1\x2d\x9c\xb4\x39\xe1\x7b\x48\xf7\x29\x08\x5b\x6c\x4e\xce\x34\xdf\x8c\x3d\x31\x3a\x53\xbc\xc6\xf6\x3e\xa6\x45\xa9\xbb\xc6\xed\x92\x80\x0e\x68\x0d\xb7\x0f\x7b\x34\xa1\x19\xea\x27\x47\xa4\xbc\x27\xa8\x43\xa4\x7d\xb4\x5d\x5e\x12\x23\xd2\xea\x71\x34\x3d\xcf\xbb\x83\x3d\x1a\xfd\x34\x8a\x57\x64\xf7\x37\xad\x08\x9a\xbd\xd7\x8d\xe7\xef\xc8\x2b\x69\x9d\xee\x35\x2d\x26\xe4\x19\x3a\x9b\xeb\xd7\x26\x5f\xed\x1a\xba\x85\x8b\x26\x93\x87\xaa\xc3\xe9\xe4\xd2\x7b\x1d\x5c\x6b\x8a\x75\x65\x11\x41\xdb\x76\x26\x0f\x75\xde\x4e\xb7\x0f\x29\xb5\x6c\x3e\x53\x4b\xd1\x43\x1e\x5b\xe8\x55\x56\x53\x88\xc8\xa8\xd9\xd3\xbf\x79\x18\x99\x84\xf9\xba\xfe\x86\x84\xfa\xc2\xb9\xa0\x22\xb6\x9e\xa5\x00\x40\x6e\xb5\x68\xd1\xea\x1d\x00\x1a\x29\x22\x4b\xd7\xd4\x00\x18\xf2\x09\x57\xad\xbd\x0e\x60\x53\x2e\xbe\x65\x53\x19\x80\xdb\x72\x89\x96\xad\x53\x00\x5e\x16\x0a\x1b\xd8\xfd\x00\x7c\xc2\x49\xbb\xf7\xdd\x00\xf0\x7a\xaf\x77\x58\x7a\x7e\x7d\xa6\x2c\x31\x82\x33\x38\x3b\xd4\x79\x89\x19\x4a\x61\x3f\xac\x39\x13\x8e\x59\xb3\x62\xe1\xa6\xeb\x8a\x72\x9c\x52\xd0\x5f\xfa\x3c\xd7\xdc\x3d\x3e\xa3\xc1\xda\xcb\x5f\xf8\xf9\xd6\xa1\x5b\xd5\xe9\xe3\xc7\x02\x0a\xc6\x63\x34\x62\xa9\x6a\x01\xe8\x87\x68\x2d\x3c\x35\x23\x40\xaa\x67\x80\xfc\x95\x7a\x34\x20\xeb\x85\xac\xf6\x04\x75\xd6\xcf\xbf\xa5\x5b\x77\x27\x4d\xd6\x97\xf3\xfe\x11\xdd\x01\xda\x29\x2f\xfb\x06\x0e\xca\x49\xda\x67\x8f\x93\x37\x79\xf5\x08\x74\x01\xb7\x87\x57\xdf\xe9\x1d\xa7\x67\x39\x3f\xbd\x68\xa6\x2f\x40\x6f\x71\x1c\x3a\xa7\xa4\x5f\x89\xe0\x1c\x56\x55\xda\x19\xb0\x20\x06\xb6\x26\xe5\x51\x06\x3b\x90\x74\x6b\x4a\xe9\x1d\x83\x25\xc8\x7d\xcb\x35\x7f\xf6\x03\x0e\x27\xb9\x73\xe1\x7c\xf4\xdc\xcf\xb3\xa0\xff\x2b\x0a\x38\xb0\x48\x01\xa8\x6c\x10\x2c\x66\xed\x01\xd0\x56\x15\x4c\x59\x1d\x07\x60\x4e\x13\xf4\x5d\x1b\x0d\xe0\xdc\xb3\xff\xc1\xc6\x1a\x00\xaf\x1c\xb1\xb4\xad\xfc\x00\x81\xa8\xcc\xbd\xdd\x89\x00\x21\xcf\xf0\x2d\xfb\x74\x00\x82\x2e\x90\x47\x24\x57\x03\xf8\x50\xcd\xde\x10\x9a\x41\xd4\x75\xad\xab\xb6\x89\x37\x56\x69\xf7\x2b\x26\xc0\xde\x03\xdb\x6a\x7e\xb6\x70\xca\xbd\x91\x99\xb7\x88\xbc\xd1\xd9\xfa\xf2\x6e\x30\x8d\xda\xa4\x69\x34\x9d\x14\x61\xf3\xd9\x9a\x7c\x62\xce\x38\x62\x7b\x2f\x45\xe7\xce\xdc\xc1\xf0\x92\xe7\xbe\x14\x8d\xb9\xb1\xd0\x1f\x8f\x4f\xe9\x55\x52\x65\x42\x4a\xef\x09\x1b\x38\x50\x23\x82\xc3\xeb\x73\x0d\x92\xa9\x73\x01\x1c\x35\x1b\x8c\x62\x69\x52\x7e\xd3\x17\x67\x8d\xd6\xd3\x3a\xbd\xf4\xcf\x95\x18\x0d\xd2\x97\x7b\x8c\x9f\x76\x32\x7a\x46\x8f\x72\x95\x29\xdf\x64\x5c\x44\xbf\xe8\x7c\xb9\xf4\xae\x91\x39\x22\x6b\x77\xee\x84\xb5\x51\x2d\x62\x6a\x5b\x5e\x54\x6c\x84\x47\xee\x58\x16\xfd\xd9\x0f\xb8\x34\x51\xd6\x85\xf7\x86\x11\xe1\x6f\x4b\xa3\x00\x24\xc5\x04\xe8\x2b\xe5\x00\x88\xec\xfb\x14\x58\x03\x01\x8c\xf5\x78\x87\x59\xaf\x00\x38\xc4\xf2\x68\xaf\x12\xfd\x93\x8b\x11\xcc\x29\x6c\xb7\x39\x18\x20\xd2\x44\x22\x72\x17\x09\x20\x76\x42\xee\x0c\xf7\x7a\x80\x98\x22\xf5\x14\xf1\x19\x80\x70\x47\xc3\x70\x35\x37\x10\xf1\xf5\x76\xdc\x64\x6a\x80\x69\x38\xfb\x85\xd7\xbb\xc4\x23\xe6\xd6\x9a\xf9\x77\x7d\x61\x32\xd2\x34\xe9\xb2\x46\x58\xf8\xa8\xa9\x41\x76\x5b\x5d\x4c\xc8\xf0\x0e\xdd\xc7\xdf\xab\x12\x5e\xf4\x9a\xe8\x29\xcc\xb2\x24\xae\x69\x9b\x33\x20\xcf\x9e\x8c\x4b\x6d\xb6\x32\x9c\x9c\xc5\x62\xbe\x34\xf4\x1a\x5d\x9f\xbb\x11\xd1\x77\xc3\xd0\x44\x6f\xee\x4b\xc4\x9a\x2b\x97\x4c\x57\x51\x1d\x42\xc5\xce\x8d\x9b\xa9\x51\x9f\x05\x1d\x3a\x73\xcf\x14\x68\x7a\x7e\x33\x27\xbf\x99\x9b\xd0\xae\xf8\x18\x97\x96\x9b\x8b\xd2\x3e\x78\xb5\x1e\x3b\x6a\xae\x4c\xf7\x75\x73\x66\xf2\x2f\x47\xf6\x98\xe7\xd1\xbf\x38\xe9\x1c\x42\xcd\x4e\x20\xc6\x76\x8a\x7f\xb8\xa8\x15\x67\x85\x23\x17\xb8\xa0\x6b\x02\x19\xcb\x1f\xfd\xd1\xff\xb5\x65\xb9\x14\x56\xbc\x03\xb0\x6c\xdb\xe3\xb5\x22\x74\x7e\xff\xef\xd1\x61\x21\x03\x04\xb3\x71\xeb\xcf\xdf\x1f\x4c\x5f\x8c\x94\xd5\x82\x47\xb6\xf4\x01\x64\x1c\x92\x3a\xcd\x99\x04\x90\x71\x4d\x75\xa3\xc8\x5e\x80\x14\x82\x2e\x1b\xfe\x32\xf0\x47\x5c\xb1\xb1\x32\xbb\x39\x1d\xe0\x75\xc3\x3f\xc4\x6b\xf0\x9b\x95\x8b\x60\xe6\xc1\xb0\x75\x03\x98\x1d\xdb\xe9\xf0\x38\xdf\xde\x30\x8b\x8f\x4d\xdd\x29\xb9\x2f\xd7\x9b\xfc\x1a\x2c\xcd\x18\x7f\xf2\xde\xc4\x7d\xba\x28\x13\xbd\xeb\x67\xd6\x35\x83\x4f\x77\xbe\xf1\xcb\x62\xc5\xcc\x4c\x32\xf5\x52\x85\xd5\xea\x59\xcf\xc4\x09\x26\xff\x72\xaa\xda\x7a\xd9\xdc\x8b\xc8\xc1\x93\xf1\xd6\x6c\x54\xaf\x30\xdc\x89\x15\xd6\x96\xd4\x97\xc1\x0a\xff\xf5\x7f\x39\x18\x60\x33\x42\xeb\xf5\x6e\xcd\x5b\x62\x73\x8b\x2e\xe9\x31\x9a\xc3\x63\x6d\x41\x6f\x76\x1e\xce\x22\x59\x73\x20\x4b\x1d\x17\xd2\xc9\x45\x73\xe6\xfb\xdf\xf0\x62\xdf\xbb\xf9\xba\x4f\x88\xe7\xe9\xfc\xe7\x4b\x55\x59\xae\xcc\x15\xbb\x01\x0c\xa5\x37\x2e\x7c\x1e\x75\x34\x5e\x29\x37\x5f\xfd\xa2\x96\x2e\x70\x02\xd1\x96\x2b\x36\xcc\xd7\xcc\xe0\xb5\xf1\x0b\xfa\x4f\x26\xcf\xd2\xf5\x1a\x00\x47\x56\x8a\x94\xee\xe6\x06\x28\x5c\x22\x6f\x25\x78\x0f\xe0\x50\xa5\x46\x8c\x4a\xf0\x74\x54\xba\x8b\x69\xbf\x99\xfd\xa7\xfc\x28\x76\x77\x23\x9f\x47\xdd\x1e\xfe\xfc\x71\xf1\x31\xc5\x6d\x71\x9e\x66\xc5\x21\xa9\xbe\x0f\x5a\x9c\x27\x6e\xb1\x66\x57\x34\x60\xf6\x47\xba\xee\x1e\x64\xbb\xc9\x65\x33\x31\x39\x95\xbf\xa6\xda\xdb\x5e\x62\x7a\x55\x5e\xd5\x99\x43\xf6\x6d\xd3\x48\x96\x32\x33\x07\xe9\xc4\x5e\x87\xee\xd9\xc3\x49\xab\x0a\xd3\x9d\x34\x67\x91\xf8\xf6\x7c\x23\xa7\x83\x73\xc1\xb1\xeb\x99\xf9\x47\xd9\x27\x9c\x94\xa8\xaf\x83\x07\xb2\xd2\x1c\x3f\xd2\x76\x07\x0e\xa4\x67\x39\x71\xd0\x42\xfd\x49\xc9\x2e\x4e\xca\x34\xaa\xb7\x60\xf2\x7a\x87\x62\x7a\x88\xfb\xa6\x84\x87\x0e\x4d\xf4\x8b\xae\x3b\xe7\xd7\x41\x30\x79\xe1\xfd\xb1\x99\x2f\x70\x69\x08\x80\xd4\x4e\x8e\xce\x65\x27\xfe\xe8\xff\x16\x9e\x4b\x57\x2d\xe8\xdf\xae\x8b\xfa\x37\x93\x83\x60\xea\x3e\xcc\x1c\xf4\xd2\xa7\x6c\x33\x2b\x33\x00\x2a\xb7\xf2\xed\xd9\xd2\x08\x70\x46\x53\xfc\x15\xaf\xea\x9c\x64\x79\xa7\xea\x0f\x45\xe9\x2f\x71\x47\x83\xf4\xeb\x4c\xec\xba\x8c\xb2\xcf\x39\xbc\xf7\x16\x6e\x2e\x8e\x97\x0a\xe1\x88\xdf\x7b\x73\x6b\x18\x35\xef\x5e\x56\x49\x75\x6d\xe0\xfd\xea\x63\x87\xb8\x2a\x1b\x7d\xad\x9f\xe2\x0b\xfa\x4b\xf9\xbd\x38\x47\x6c\x8e\x6d\x39\xfa\xcc\x6b\xeb\x64\x5d\xc1\x89\xc3\x52\xde\xac\x53\x67\x0f\x9d\xce\x55\xf7\xae\x9f\x4e\xcf\x2d\xcf\x5a\xe5\xbd\x7d\xa6\x28\x43\x3e\x5d\xd6\x6b\x7c\x56\x2b\x25\x21\x59\xc6\xeb\xe8\x9c\x72\xdc\x10\xd3\xf7\x24\x3e\xc0\xf3\x0d\x55\x2a\xe2\x0c\xd3\xf7\x24\xa6\xd7\xfd\x31\x4d\x3b\xe0\x59\x24\x97\x07\x89\x76\xc5\xb7\x36\xc2\xc8\xc3\x9e\xf6\xc8\x97\x25\xf4\x8b\x7b\x26\x5d\xdf\x23\x0e\x60\xa5\x01\xef\x42\xde\x0d\x53\xff\x97\xf3\x5d\xe3\x32\xff\xb3\x0e\xc3\xd7\x9d\xa9\x7b\x32\x75\x3f\x26\x07\xc1\xec\xbf\x0c\x18\xfa\x07\x61\xc9\x83\x05\x1d\x08\xd8\x83\x56\xc7\x20\x0d\x37\xcf\x08\x3e\x60\xbf\x3c\xc2\x77\xe5\xbe\x82\x93\xac\x7c\xef\x9d\xaa\x02\x72\xba\x7e\xec\xe3\xe8\xd2\x28\xab\x40\xb7\xe2\xda\xd1\xfc\x4c\xdf\xc8\x68\x8d\x72\xd1\x8c\x0d\xc9\xf2\x39\xd7\x8f\xf0\x27\xa5\x96\xb5\x1f\xa9\xca\x7a\x15\x27\x70\xef\xe1\xb1\x94\x64\xd7\xa8\xdb\xef\x85\x4e\x04\xc5\x99\x44\xae\x99\x08\x38\x1e\x13\xa3\x1c\xe1\x3b\x99\x53\x48\x8f\x32\x09\x67\x9f\x7a\x7b\x48\x3c\x02\x0d\xad\x9f\xee\xcc\x49\x0f\x9b\x08\xdd\x3f\xf3\x32\x9d\x14\xc6\x19\x34\x31\x5b\x91\x74\x2d\xe4\x71\xd0\xa9\x39\x89\x78\xbd\xe0\xd6\x80\x9f\x73\x7d\xd1\xeb\x82\x32\xfc\x7b\xa8\xa1\x61\xd4\x80\x0b\x01\x27\xa8\x9f\x83\x3b\x03\xae\xf8\x49\xd0\x48\x81\xac\xfe\xb6\x3e\x93\xb4\x76\x9f\x3b\x7e\x15\x3e\x57\xe8\xcb\xbc\x30\x80\x0d\x5d\x1c\x0b\xb9\x1f\x82\x53\x1b\x9e\xcc\x57\xb5\x87\x4b\x16\xb8\x39\x9b\x72\x9c\xf5\x7c\x0d\x18\x5d\xec\x93\xe9\x87\x91\xcf\xd0\x7f\x99\xfa\x1f\x53\x07\x6f\xf8\xb4\x50\xbb\x1f\xbf\xdf\xca\x8a\xc3\xfd\xa8\x68\x1e\xd8\xbb\x72\x87\xd7\x3b\x85\x7b\x4f\xa4\x5e\x8b\x8d\xb5\xf9\xd5\xb1\x90\x64\xc9\xab\xea\x7e\x5e\x39\x65\x32\xee\x20\x73\x66\xc5\xd9\x2f\xee\x3e\x21\xa7\x0f\xa9\x95\x06\xc4\xd0\xd2\xa6\x93\xbc\x8f\xf9\x1f\x1b\x3a\x30\x14\x99\x56\x78\xa7\x9e\x98\x7f\x3c\xa8\xed\x48\xf4\xdb\x8d\x05\x43\x7e\x49\x87\x91\xc9\x8f\x05\x22\x7e\xe9\x79\x43\x53\x6f\x0f\x8e\xfb\x36\x66\xd7\x4e\xff\xca\xbe\xee\xbb\x26\xa3\x66\xe6\x63\x5a\x8b\x4f\x5a\x9a\xe6\x6c\x41\xd2\xb0\xcf\xe6\xe4\x4d\x73\x16\x71\x16\xde\xda\x89\xa7\xe7\x06\xa2\xa6\xbd\xee\xc5\x2b\x50\x83\xc3\x37\x79\x49\xc7\x5c\xa6\xe1\x82\x77\x79\x96\x46\xdb\xd0\xec\x02\xac\x3d\xc6\x22\xef\xd3\x1e\xfa\xee\xf5\x38\x1f\x51\x41\xa3\x7b\x3b\x78\xb4\x87\x7c\xa4\x7b\xb8\x37\x02\x70\x7c\x61\x3b\xb1\x64\x33\x80\x64\xfb\x72\xbb\xf9\x7e\x0c\x75\x17\xfb\xf2\x64\xf4\xc7\xd4\xfd\x98\xba\x57\x85\x12\xee\x1f\x3f\x88\xc6\x05\x4e\x02\xd3\x6b\x5b\xb8\x2f\x7e\x92\x3a\xb7\xaf\x8a\xc6\xe1\x06\xb1\x4e\x21\x0e\xcd\x8d\xf6\x1d\xc7\xda\xd9\x45\x3d\x05\xd8\x1b\x63\x5a\x7a\x55\x79\xf0\x8f\x2e\x1e\x6a\xb2\xd3\x7f\x60\x7e\xf4\xd8\xd2\xdb\x86\x4e\xda\x3e\xe1\xc9\xac\xb5\x3b\xc2\x6d\xe2\x72\x42\x8f\x5d\xdd\x58\x48\x4e\xe3\xf0\x39\x73\x79\xcb\x0d\xcb\xcc\x2f\x6e\x02\xd5\x73\x5d\xfe\x39\x96\x8e\x07\x2e\xbc\x9f\xf6\xcb\xe5\x71\xb2\x39\x3d\x3a\xc3\x9f\xd9\xe8\xe4\x5a\xbe\x72\x76\x65\xaa\xbc\x63\xd7\x89\xe7\xb3\x58\xfc\x23\xa7\x8a\xa2\x80\x39\xc7\xd8\x7c\xa7\xc4\x23\x4b\xa9\xbb\x23\x26\x1d\x6b\x0f\x95\x51\x6f\x87\x5c\x76\x72\xc8\x3d\x45\x5b\x17\xe4\xe3\x44\xc9\x3a\x4f\x0b\xf7\xb7\x72\xf4\xcf\xa8\xa7\x4d\x78\xc7\x38\xbc\x4d\xbb\x41\x37\xf5\x20\x38\x5a\xa6\xe4\xd2\x83\xdc\xf5\x1d\x68\x89\xd3\xf4\xe7\x2e\x1b\x00\xf8\x2b\x56\x17\xcc\xf7\x43\xca\x5b\xec\xeb\xbf\x1c\x48\x2e\x23\x07\x85\x39\xff\x5c\xc3\xf2\xb7\xfe\x85\xb6\x3d\x5f\x98\xff\x1f\x2b\xe8\x5a\xe0\xa8\x06\x5f\xf7\xb9\xce\xd7\xae\xf5\xef\x45\x77\x49\xac\xbc\xf0\x48\xb0\x2f\x56\xe0\x0c\xc7\xcf\xda\xee\x1e\x29\x05\x37\x59\xbf\x0a\xc5\xce\x5f\x3a\xbb\x28\x19\xb9\x1f\x9f\xf9\xdb\x26\x3a\x19\x84\xa7\x3d\xbe\x1f\x74\x24\xe4\xb1\xf7\xe1\x47\x72\x87\x65\xa2\x57\x38\xf9\x37\x0f\xd7\x5c\x8f\xc3\xac\x6b\x1f\x24\xbc\x6c\x48\x3c\x6c\x2e\xd1\xf4\x7d\x72\x53\x92\xa9\xb9\x54\xc3\xc4\xec\x9b\xb8\x1f\xe6\x1f\xaf\x8f\xce\x25\x44\xeb\x59\x5c\xbf\xbc\x83\xba\x21\x1c\x2c\xd7\x9d\xdf\x43\x3d\x18\xd2\x66\x79\xa7\xf2\x1a\x95\x16\xc4\x6a\x69\x59\x2e\x4c\x4b\xf5\x5b\x6f\x59\x5b\xc2\x46\xeb\xf3\x4e\xb1\xe2\x3c\x66\x40\xe7\xf1\x34\xb5\x9c\x2a\xcc\xa3\x87\xbb\x15\x59\x3a\xe6\x4f\xd0\xfb\x9d\xd7\x59\xfa\x1f\xec\x44\xb8\x1d\x0a\x2d\x0b\xf2\x02\x11\x7d\xbb\x71\x00\x59\xc6\x75\x35\x69\xc7\xfd\xc3\x81\x64\xde\xc2\xfd\x9f\x1c\x48\x53\xe3\xc2\xf5\x1f\xed\x5c\xd8\x17\x3f\xb7\xbe\x59\xd0\xff\x3e\x3c\x1f\xf8\xb5\xf0\xbd\xb7\xde\xe7\x7b\x0b\xfa\x5f\xf6\xf7\x63\x9b\xfc\x71\xb8\xdb\xee\x23\x9b\x78\x8a\xb6\x71\x9e\x4f\xfa\xd2\x2f\xbd\x53\x38\xbe\x88\x7f\x48\x55\x23\x91\xa0\x9b\xfc\xf9\xdd\x6b\x4b\x41\xb3\xd7\x7e\x01\x6f\xfa\xfd\xc2\x3d\xa2\x9c\x77\xbd\x59\x97\x77\xc2\xaf\xc4\x8a\xad\x97\xf7\xb2\x4e\xd0\x80\x71\x62\x0f\xf1\x79\x75\x28\x41\x9f\xbd\x7b\x76\x5c\x2e\x4c\x4a\xaf\xaa\x93\x9b\xea\x10\x7c\x50\xff\x74\xeb\x4a\x6a\x5d\xe0\x09\x83\xdd\x0f\x76\xd3\x24\xfd\x12\x0d\x62\x1b\x44\x68\xd7\xbd\xa6\x7f\xfb\x5c\xd4\x5c\xc5\xd1\x0d\xdc\x72\x8c\xcc\xab\x77\xd3\x73\x5d\x1a\x8c\xd5\xce\xee\xa7\xdf\x72\x8e\x30\xb2\xaa\xb4\x42\x44\xed\x25\x8d\x78\xcb\x7e\x21\x71\x36\xea\x46\xd4\x92\xbb\x48\x96\xf5\x77\xa3\xc9\xe3\x69\xc8\x75\x2b\x12\x00\x99\x71\xde\xb9\x3e\x61\x9c\x03\xcf\x17\xeb\x51\x46\xdf\xbf\x39\x10\x46\x5d\xe4\x40\x7e\xbd\x78\xb7\xc0\x43\x7c\x1c\xfd\x94\x3a\x5f\xbb\x7d\x46\xa2\x17\xfa\xe7\x18\x7f\x3b\x5f\x1b\xfa\x67\x6f\x2e\x0d\xc2\xe1\xae\x12\xa9\x73\xec\x1e\x6b\x56\x96\xc1\x0c\x26\x1a\xcd\xb5\xfa\xc0\xba\x49\x57\xb5\x56\x99\xd5\xd1\x1e\x3f\x9b\x4c\x9a\xb5\x37\xba\x9b\x8f\x7e\xf6\x8a\xb4\x7a\x66\xa3\x3c\x7a\x21\xcb\xdf\x71\x8d\xb1\xc5\xa8\xc9\x85\x60\xd7\x43\xba\x5d\xa3\xab\xdb\xc4\x3c\x56\x6a\xd5\x8c\x9a\x8f\x7e\xf4\x5c\xa6\xd9\xff\x25\x9c\xf6\xca\x7d\x97\x96\x60\xff\x4d\xba\xb2\x8b\xba\x56\xed\xeb\x1e\x7a\x9c\x53\x16\xb9\xb7\xad\x8e\x7e\xde\xb1\x98\x7c\xe2\x71\x18\xb2\xc1\x4e\xea\xb7\xcf\x05\x52\xdf\x87\x88\xd9\x3e\xd1\xb9\x74\xc3\x13\xc9\xb5\x72\xd6\xbd\x7e\x75\x02\x29\xb4\x32\xd5\xd5\xba\x14\x84\x7c\x36\xdf\x4f\x91\x3a\xa7\x87\x2e\x31\x53\xa1\xa4\x9f\x39\x8b\xee\x32\xb5\x06\xb0\x66\xf8\xbf\x44\xd6\x33\xce\x81\xc9\xc5\x7a\xce\x02\xf7\x2f\x07\xb2\x70\xfd\xa7\x2e\xbd\x5f\x38\x37\xbf\x28\x7f\x5d\xd0\x83\xdf\x6c\xfa\x49\x5c\xd4\xff\x66\x16\xf6\x4f\xa3\x3e\x5a\xb2\xa0\xff\x31\xe6\x59\x4f\x6f\x07\x60\xd3\x66\xb9\x5b\xb8\x0e\x40\xe8\xc3\x4e\x42\x9a\x21\xfc\x54\xee\x12\xe2\x0e\x7e\x0b\xfb\x0d\x2e\x2b\x51\x1d\x4f\x60\x8a\x6e\xab\x75\xad\xcc\xd5\xd1\xe6\xd4\x08\x63\x75\xbd\x5b\xa8\x6d\xe5\x2b\x73\x25\xad\x62\x84\xde\x8c\xb3\x1c\x26\xf5\x21\xf5\x83\xf5\xd6\xfb\x08\xed\x48\x27\xa2\x69\x69\x43\xb8\xfb\x0b\x43\x42\xcd\x11\xe2\xc6\x61\x0d\xe4\x98\x19\x46\xcc\x78\xcf\x81\x34\x98\xad\x20\xbe\xeb\xd6\x44\xbe\x99\xa4\x92\xe8\x2f\x4c\x90\x8f\xa6\xfb\xd5\xe3\x5a\xb9\x51\x16\x93\xf5\xea\xc2\x0f\x83\x51\x5d\x43\x45\xf5\xf2\xc6\x9d\xa8\x8f\xc1\x46\x8d\x63\xb7\xf5\x51\x3f\x03\x82\xe6\xd2\x9b\x62\x68\x86\xbe\xa6\x06\xf9\xda\x33\xf4\x85\xce\xaf\x3f\xfb\x80\xe9\x03\x51\x29\xbb\x58\xef\x30\xfc\x91\x16\x39\x98\xe9\xf7\x03\x0b\x7d\x0d\xbb\x2c\xf6\xdf\xc7\x35\xb1\xc0\x13\xbe\x38\x40\x5b\xb8\x6f\x9a\x7a\x16\xfb\x66\xe6\x61\x54\x30\xe6\x9d\xf3\x29\x00\xab\xab\x70\xb8\xcc\x66\x80\x7d\x7d\x5b\xd6\xc7\x88\x00\x28\xa5\xef\xbd\xe3\x6d\x01\x45\x94\x49\xc9\xaf\x36\x6d\xd8\x67\xc7\x71\xb5\x44\x13\x0d\xec\x68\x2c\xbf\x66\x81\xee\x14\xa6\x53\xe4\xae\x53\xa8\x01\x18\xd7\xd5\x67\xba\xcf\x88\xec\xd8\xd2\x16\x17\x0a\x19\xff\x0e\xfd\xf4\x6e\x2f\x65\x4e\xb5\x09\xed\xa6\xfa\xe8\x91\x94\x67\x90\xaf\xe8\x57\x2d\x11\xe5\xa6\x5f\x4f\xd0\x49\xcd\x0a\x95\xd5\x5f\x0f\xa3\x13\x9a\x8f\x54\xb6\x0e\xee\xc3\xd6\x6a\x5c\x52\xe5\xeb\x8d\x44\x67\xb4\x96\xa9\xce\xbc\x2c\x45\xc7\xb4\x2e\xa9\x26\xb6\x1f\xc2\xf6\x6a\xb0\xe1\xf1\x4f\xf8\x31\x3e\x0d\x6d\xbc\x75\x33\x1e\x23\x92\x7e\xa9\x99\x37\xe6\x61\x52\xea\xe3\x00\x89\x8c\x75\x28\x65\xcc\xfd\xdf\x62\xbc\x2f\x3c\x5f\x78\x4f\xa0\x4e\x0f\x2d\x3c\x27\xbf\xbd\xf8\xb6\xc0\x01\xbd\x4f\x9c\x8e\x5f\xd0\xff\x38\x90\x85\xfb\xe8\xbf\x79\x18\x95\xd4\xc5\x7a\x84\xf1\x73\xf2\x18\xc0\x92\x64\x1c\x2e\xbe\x18\x60\xdf\xe7\x4d\xc9\x81\xd5\x00\xf2\x33\x1c\xbe\xae\xeb\xa1\x5d\x97\x2c\xe2\x68\x21\x03\x76\xb6\x3f\xe5\x8c\x0d\xba\x41\x3c\xb4\x46\x79\xa7\x76\x1b\x46\xcd\x95\xc5\x23\xea\xdd\xd8\xeb\x0a\x6b\xc2\x13\x42\x08\x56\x79\x53\x84\x04\xaa\x57\xb1\xe2\x96\x66\xd2\x84\x72\x13\x96\xd7\x77\x45\x7d\xab\xd2\x79\xac\x64\x4a\x81\xe4\xa8\x70\x01\xd8\xb1\x3b\xca\x97\xe5\xbf\x23\x1e\x58\x9f\xe2\x3b\x79\x9f\x89\xa5\xd8\x80\x22\x49\xbe\x76\x64\x1d\xf6\x42\x11\x53\x58\x3e\x74\x1a\x7b\xa2\x64\xaf\xe0\xdb\xe7\x8d\x3d\x56\x3a\xa8\xf0\xa9\x3b\x0b\x6b\x52\x9a\x54\x3c\xdc\x41\xc0\xee\x28\xdb\x28\x66\xb7\xc9\x60\x9d\x4a\x52\x00\x85\x35\x8b\x7d\x5f\x63\x3c\x17\x5b\x17\x9e\x93\xe8\x8f\x0f\x4e\xf3\xf5\x47\xcf\x8f\x9e\xf9\x3a\x50\x35\xcd\x3f\x5f\x5f\x25\x2d\xf2\x10\x4c\x0e\xe8\x46\xe3\xbf\x1c\x4c\xd1\x20\x43\xff\x66\xcc\x89\x87\x33\xf4\xcf\x10\x04\x60\xef\x99\x75\x9a\x9e\x5b\x01\xa4\x9d\x76\x34\xd8\x9d\x06\xd0\xda\xc7\x77\xcd\x84\x0b\xae\x5b\x78\x8b\x4e\x52\x8c\xa0\xd4\xcf\x49\xb2\x9f\xcc\x02\xae\x29\x2c\xf2\xdc\x24\x19\xa0\x1c\x4d\x55\xb8\xae\xa6\x07\xa2\x67\x6f\x29\x79\xa9\x04\x01\xdf\xcd\xed\x4a\x71\x4a\x01\xc0\xfe\xf0\xb5\xd2\x55\x05\x6b\xe0\x7a\x23\xac\xc4\x23\xcf\x03\xaa\xdf\x79\x14\x8e\xfc\xe6\x1d\x04\x60\x10\x0e\x89\xab\x4b\xd9\x60\x69\xd0\xb6\x9f\x4f\x8a\x75\x5a\x08\xae\xef\x6f\x94\x16\xf9\x6e\x0d\xb1\xe2\xab\xa4\xd2\x3e\x6b\x42\x8e\xe8\x05\xe9\xe4\x01\x79\xf0\x13\x3f\x27\xf5\xf9\xad\x02\x24\x89\x6d\x00\xb8\xc0\x78\x4e\x3e\xb4\x5a\xac\x03\x0b\x7d\xfe\xda\x33\xb6\xb0\x2f\x86\x9c\xe7\x44\x16\x9e\x83\x84\x45\x1e\x82\xe9\x03\xf0\x5f\xfd\x8f\xa9\x7f\x32\x7d\x10\xe2\x18\xdc\x80\x1f\x1f\xc0\x12\x19\x1c\xce\x5b\x02\x80\x47\x71\xb5\xb6\x53\x05\x80\x74\xef\xf6\x08\x0b\x16\x00\xd2\x3b\xce\x47\xfa\xed\xf0\xdd\xf4\xaa\x40\x87\x4e\x2c\xbc\xf4\x30\x11\xf1\xd0\xa8\x82\xc6\xa8\x18\xf1\xa5\x6a\xa3\x70\x2d\xc7\x53\x42\x42\x35\x03\x0a\x8e\xff\x90\x3a\xad\xb2\x0a\xe2\xcf\xee\x95\x51\x50\x3c\x02\x21\x37\xf2\x64\x2e\xc9\xab\x40\xf4\x43\x65\xe9\x37\xb2\xbe\x90\xfe\x9a\x2e\xf5\x53\x66\x1c\xb2\x3f\x8f\x4a\x73\xc8\x6e\x81\x2a\x6a\x8e\x54\xaa\x54\x2f\x00\x34\x89\x2c\x97\xa8\x02\x00\xd8\x37\x26\xa6\x07\xb1\x00\xbc\x1c\x62\xdc\x33\x75\x00\x7b\x55\x45\x9d\x7f\x9e\x02\xe0\x2d\x15\x2d\xfd\x9a\x0e\xb0\xb7\x08\xa0\xd1\x7c\xb1\xff\xb7\x95\xf3\x75\xb2\x72\x74\xe1\xf9\xff\xd9\x9b\xb6\x7b\xbe\xf6\x30\xe6\xf8\x5b\x18\x7e\x28\xbf\x7d\x00\xfa\xff\xe5\x60\x98\xfa\x6f\x32\x83\x03\x08\x66\x70\x32\x2e\x0c\x6e\xc2\x75\x25\x00\xf7\xa3\x55\x7a\xcc\xfc\x07\x93\x0a\x00\xd2\xbe\x3d\x6f\x75\x13\x00\x0c\x03\x79\xf3\xb5\x74\x00\x9c\xec\xf9\x81\x74\x03\x7e\x05\xf7\x0b\xe5\xaa\x9d\x84\x8f\x89\x85\xfb\x8d\x55\xda\xa0\xe3\xe0\x51\x51\x19\x25\x65\x78\x59\x6c\x2a\xd2\x2d\x3f\x0d\x4f\xcf\x7a\x88\x3a\x30\x7d\x0d\x64\xce\xc1\xbd\xa6\x6d\x62\x92\xd2\x4a\xd0\xd2\x3e\x21\x9a\x27\xcd\x02\x4d\x03\xb3\x62\x55\x52\xbb\x61\x64\xcc\x4c\x24\x46\x8a\x05\x00\xde\x09\x6f\x14\x97\x9f\x5f\x8f\xbd\x1d\x22\x4f\xe6\x2b\xe7\x47\xe1\x0d\xff\x3f\xba\xce\x3a\xae\xa9\xb7\x7f\xe3\x53\x2c\x14\x49\x03\xe9\x6e\xd8\xd8\xd8\xd8\xd8\xc8\xd1\xdd\x8d\xa0\x20\x08\x8a\x22\xa0\xa2\x62\x2b\x28\x76\x60\x60\xb7\x22\xd8\x81\x8a\x81\x08\x62\x81\x89\xa2\x62\x81\x98\xa0\x28\x4a\x6c\x3b\xd7\xef\xc5\xd9\xa6\xf2\xfc\x9e\xe7\xaf\xeb\xf5\xe5\xeb\x1f\xbb\x3f\xbb\xe3\xec\x5c\xef\xfb\xfa\xf4\xaa\xda\x3b\xd3\x79\x3d\x33\x80\x31\xe3\xa4\x1c\xcc\x6f\x9a\x38\x17\xeb\x03\xba\x37\xf7\xea\xb3\x04\xf1\xe7\xaf\x91\xe4\xc0\x48\x39\xa0\x12\x09\x17\xf5\x9f\x39\x00\xd2\x7e\x20\x33\xab\x24\xfe\x7f\x5b\x5f\xdf\x37\x26\x08\xd0\x34\x1d\x98\x15\xe2\x05\x58\xd9\xca\x9f\xf3\x99\x0e\xd8\xed\x1e\x51\xeb\x71\x1b\xf0\x1d\xa9\xb5\xd8\x4d\x19\x88\x79\xab\x97\xe1\x7c\x01\x98\x9c\x64\xb8\xd9\xa1\x1b\x98\xe5\x60\x9c\xc0\x8b\x01\x96\xee\x33\xd9\x6e\x57\x0a\xc1\x9a\x40\xd3\x12\xb6\x39\xb0\xe5\xa2\xa9\x1a\xb3\x0d\x82\x03\x6b\x4d\x63\x98\x8a\x68\x3d\x49\x31\xbb\xfe\xc7\xdf\x5f\x86\x6f\xb7\x4e\x9b\xdd\xa1\xf7\x43\xfb\x33\x0f\x73\x43\xeb\x0f\xe8\x6e\xfa\x66\xee\x68\xdd\x0a\x74\x34\x9b\x79\xd1\x1e\x92\xdc\x87\xba\xe5\x3d\xb2\x1e\x5f\xcd\x9e\x90\xf5\x98\xd3\xd3\x2a\xde\xff\xbf\xa0\x87\xac\xc3\x8b\x65\xe8\xc3\x01\x5d\x92\xf0\x70\xc7\x26\xf5\x3d\x07\xa4\x1c\xcc\xf2\x45\x62\xcd\x95\xcc\x93\xa9\x12\x6e\x6c\x1c\x21\xd6\x90\x25\x00\x65\x01\x85\xe2\x9e\x0b\xf4\x6f\xa1\x50\xfc\x8c\x01\x63\x0c\xb5\xf5\xe8\x01\xd8\xa9\xca\x73\xf8\x6c\xc0\xb5\x46\x35\xcd\x25\x1b\x08\xdf\xab\x35\xdc\x71\x3e\x90\xf8\x44\x47\xcd\xbe\x3f\x90\x29\xab\x57\xc0\x3d\x09\xcc\x99\x6c\xe0\xc6\x71\x04\x96\xb0\x0d\x78\xb6\xc9\xc0\xea\x03\x86\x23\x98\x02\x60\xcb\x4c\xc3\x5f\x8c\x16\x60\x1f\xd5\xb0\x82\xe1\x0e\x1c\xdb\x67\x9c\x48\x17\x01\x65\x61\x26\xcf\xad\x77\x02\x37\xa6\x9b\xe4\xd2\x06\x01\xf7\xf7\x19\xb5\xd3\x36\x02\x2f\x73\x4d\x56\xd0\x82\x80\x4f\xef\x8d\xeb\x69\xbe\x40\x67\xb6\xd1\x1c\xaa\x41\x6f\x1d\xf4\x0a\xdb\xde\x76\x91\xcf\x47\xaf\x8c\xc5\x9f\xfb\xae\xa4\x0f\xd0\x15\x49\x9f\xb8\xff\xc5\xc1\x14\x48\xe6\x81\x34\x0f\x45\xda\x0f\x24\x45\xd4\x77\x1e\xf8\x4b\xce\x51\x47\x49\xae\x8c\x3b\x07\x30\x88\x1d\xbc\xce\x25\x16\x60\x3c\x94\xdf\xe4\xb8\x16\x70\x71\x1e\x69\xcb\xf5\x03\xfc\x9b\x46\x0d\xe1\x1d\x03\xe2\x1a\xd4\x57\x71\xab\x81\x49\x5a\x5a\x9d\x9c\x45\x40\x36\xa1\x7d\x8b\x5d\x08\xcc\xad\xd7\xcd\xb5\x75\x01\x96\xec\xd2\xed\x61\x66\x01\x6b\xd2\xf5\xea\xe8\x7e\xc0\xa6\x37\x3a\x67\xa4\xfe\x3e\x6d\x32\x70\xa4\x58\xcf\x8c\x7a\x1f\x38\x5d\xa0\x3f\x90\x5a\x07\x5c\xa5\x19\x5c\xb1\x6a\x07\xaa\xdf\x1b\x70\xad\x0a\x81\x07\xdb\x0d\x66\x58\xb9\x01\x8d\x5e\x06\x8e\x56\x35\x40\xeb\x54\x83\xb5\x6f\x53\xc5\xfb\x9f\xb4\x2f\xd8\x7f\x72\x40\xd2\x3c\x1c\x29\x07\xb3\x5a\xd2\x2f\x6c\xb1\x84\x1f\x9d\x29\xc9\x51\x91\xf2\x50\x09\x92\xfe\x31\x61\x19\x92\x71\x4b\x72\x54\x38\x6e\x00\x85\x41\xa1\xb8\x19\x03\x46\xdc\x21\x21\x0e\x79\x80\x35\x4d\x6e\x91\x5d\x39\xc0\x6d\x51\x3c\x63\xeb\x06\x78\x9c\x52\x2a\xb4\x3d\x0e\x84\x7d\x1b\x39\x56\xca\x3d\xb0\x7c\x80\x34\xc3\x31\xeb\x59\xaf\x81\xec\x47\x9a\xb2\x36\xe9\xc0\xac\x5f\xea\xbf\xe9\x09\xc0\xe2\xfd\x1a\x3c\x7a\x2a\xb0\xf2\x94\xd6\x34\x69\x3d\xac\x13\x80\x1d\xf2\x3a\x2d\x56\x2a\xc0\xfe\xe3\x5a\x8a\x96\x2e\x40\xe9\x22\xad\x34\x2b\x3a\x50\x36\x40\xd7\xdd\xaa\x3f\x70\xed\xa3\xde\x28\x0b\x53\xa0\x66\x98\xf6\x33\x8b\xa3\xc0\x23\xa6\xae\xab\x94\x03\xba\x2e\x59\x0f\x7f\x38\x20\xc9\xf7\x59\x44\xc1\x7f\xe5\x60\xa4\x3c\x98\x74\x1d\x4c\x98\x20\xd6\x28\x49\x3e\x4e\x80\x42\x5f\x0e\x84\xd5\xfb\xff\x4f\x53\x28\xbc\xa5\x80\x66\xaa\x4c\x21\x27\x13\x30\x0f\x95\x55\x60\x09\x00\x56\xf4\xf0\x39\x8c\xf5\x80\xf3\x2c\x79\x4b\xfa\x44\xc0\xb7\x4e\xe1\x91\x75\x0a\x10\xfe\x46\xc9\x95\xf6\x03\x88\x5f\xa9\x7c\x9d\xe1\x07\xa4\x0e\x1d\x55\x66\xfd\x16\xc8\x54\x1e\xbd\x9d\xfa\x0e\xc8\xd1\x18\xad\x4f\xdd\x08\x2c\xc8\x53\x3d\x60\x71\x19\xc8\xdf\x34\xda\x86\x7a\x03\x58\xcf\xd7\xd8\x66\x95\x00\x6c\x31\xd3\x30\xb2\x2c\x01\xf6\xe8\x6a\xb4\x59\x04\x01\x87\x93\x35\xc6\x99\x27\x03\xc7\x4b\x34\xe8\x66\xeb\x80\xf3\x81\xea\xdd\x66\xfe\xc0\xb5\x87\x1a\xf3\x7b\x3f\xa5\x9f\xc4\xcf\xfb\x1f\xbe\xf7\x26\xce\xb3\x5e\xd5\x29\xb1\xdf\x3c\x50\xfd\x6f\x1e\x04\xe3\xad\xb3\x85\xfc\x44\x80\xeb\xea\x2a\x54\xc9\x03\x9c\xa7\xfb\x29\xab\xf1\x01\xbe\x75\x38\x57\x7b\x10\xe0\xae\x9d\x30\xd6\x48\x01\x70\x4f\x9a\x5c\x6a\x21\x0f\xb8\x3e\xca\xdd\x60\x7d\x1c\xe0\x6f\x5e\x51\x64\x6b\x0d\x38\x9f\xd8\x91\xc4\x9b\x0b\x38\x8e\x3d\x36\xc7\x71\x3b\xc0\xd3\xbc\xf6\xd4\x31\x13\xb0\x7b\xfe\x88\xef\xfc\x04\xe0\x54\xbc\xdf\xe9\x12\x0d\x70\x56\x08\xdc\x5c\x36\x02\xb6\xcf\x89\xcd\xbc\xd3\x00\xab\x9a\xa8\xe7\x78\xff\x62\xb2\x0e\x11\x55\x9c\x6f\x6d\xfa\x4c\x11\xf1\x8e\x6d\xd2\x72\x98\xb5\x9d\xb8\xcb\x99\xfd\x3a\x91\x75\x82\xa8\x67\x77\x35\x6c\xb6\x2d\x24\x2a\xec\xc6\x3e\xfa\x60\x7b\x89\xa8\xe3\x9c\xba\x17\x68\x9b\x4c\x74\xd8\xae\xbb\xc5\x64\x6f\x22\x5e\x72\x3c\xab\x4e\xd8\xde\xc6\x20\xd6\xa1\x0a\x7d\xf6\x63\xa2\xc7\xf6\xe8\xbf\x3c\x8c\x7b\xf4\x7f\xf3\xbd\x07\x0c\x67\xcb\x91\xfe\xff\x71\xee\xa8\x81\xc1\x80\x39\x78\x0a\xb2\x97\x00\xdb\x43\x8e\x43\x15\x7e\x02\x5c\xaa\x4b\x93\xf2\x27\x80\x9f\xe8\x23\xaf\x3e\x18\x70\xdd\x12\xea\xa7\xbd\x18\x70\x57\x88\x9f\x62\xb8\x11\xf0\xc8\x9d\xb4\xc4\xa2\x01\x70\xfb\x34\x87\x45\xdf\x00\xb8\xba\xaf\x50\x67\x8f\xf8\x5b\x07\x27\xab\x63\xdd\xce\x9b\x00\x07\xd5\x8a\x93\xae\xf9\x00\x37\xe6\xc9\x40\xfe\x1e\x80\x33\xe5\xc3\x37\xe7\x62\x80\xd3\x24\xd2\xe3\xef\x05\xd8\xab\x88\x34\x07\xa1\x68\xb0\xad\x0b\x71\x82\xcb\xfd\x39\xc4\x76\x0b\xb1\x9e\x57\xf6\x79\xbe\xed\x2e\x62\x13\x6f\xe1\xbb\xf1\xec\xc1\xc4\x06\xde\xfd\x46\x3a\x9b\x45\x14\xf1\x56\x3d\xbe\xcf\x89\x24\x96\xdb\x3f\x7d\xb0\x86\x7d\x81\x38\xc9\xdd\x74\x67\x3c\xa7\x90\x28\xe5\xe9\x55\x8b\x38\xde\x44\xad\x9d\x67\xa5\x19\xfb\x14\xf1\xcb\xb6\xfd\x5a\x2d\x7b\x02\x64\x59\x7d\xea\xf0\xff\x7c\x6f\xd2\xd7\x18\x3a\x96\xf5\x98\xac\x03\x8f\x63\x33\x40\x08\x50\x3d\xb8\x4e\xc3\x94\x00\xdb\xdb\xdc\x85\x0a\xcc\x7f\xf8\xa0\x93\x3e\xcb\x34\x6c\x01\x8f\xfc\xe0\x49\xba\x71\x80\xd7\xf6\xb8\x89\x26\x93\x01\x2f\x5a\xda\x75\xab\x6d\x80\xc7\xd2\x59\x77\x6d\xe8\x80\xdb\x9a\x15\x7a\x76\x6e\x00\x7f\xd2\xf6\xd5\x8e\x53\x01\x27\x9d\xe3\x55\xce\x8f\x00\xfb\x17\xd7\x67\xb9\xf2\x00\xee\xfc\xfa\x1a\xd7\x1c\xc0\x8e\xfe\x79\xb2\xab\x0b\x60\xe7\x24\x6a\x77\x6d\x00\xd8\x6b\x88\x54\xc7\xfe\x5d\x0f\x6c\xaf\x11\xab\xec\xe5\xda\x07\xb2\x43\x88\x34\x87\x17\x1f\x3c\xd8\x2e\x44\xae\x83\xcc\x9b\xab\xec\x22\x22\xd7\x41\xbf\xc1\x98\x93\x46\x64\x39\xb4\x3f\xfa\x6a\x67\x4f\x24\x3b\x7e\xa8\xfd\xc5\x89\x20\x0e\xf0\x66\xdc\x5a\x68\x97\x40\x6c\xb1\x9f\x53\xa5\x6a\xa7\x4d\x5c\xe4\xee\xa9\xf0\xb5\x9b\x40\x54\x73\xd5\x2e\x2f\xb2\x93\x21\x3e\x72\x34\xf0\x5f\xb8\xa0\xff\xf0\xbd\xfb\xb3\x78\xbd\x2a\xf5\xff\xad\xd5\xd9\x1e\xc3\x12\xfe\x72\x31\x4e\xd7\x1d\x3f\x8c\xb4\x03\xdc\x2b\x3c\x56\x6a\xf8\x03\x5e\x4b\x02\x87\xeb\xe9\x03\x5e\xb2\xb1\x79\xc6\xe3\x01\xaf\x8d\x13\x0f\x5b\x0d\x00\xbc\xc6\xe6\xd4\xb1\x52\x00\xf7\x1d\x05\x25\xdc\x67\x00\xbf\x65\xfb\x73\xa7\xe5\x80\x53\xfd\xf1\x5f\xfc\x79\x80\x43\xc4\xf5\xd7\x6e\x5b\xd0\xcd\x73\x7e\xaa\xed\x7e\x1c\x3d\x5c\xe7\xd6\x3d\x1e\x42\xc0\x2e\x4d\xd4\xec\x36\x05\x60\xcb\x13\x05\xf6\xb1\xbf\x16\x72\x1c\x08\x6b\xe7\x9b\xad\x0a\x9c\x01\x84\xa7\xd3\xd9\xe6\x3d\x9c\xbb\x04\xdd\x45\xb6\x91\x6f\x37\x98\xe0\x3b\xa7\x3c\xb9\x66\x57\x4c\x78\x3a\x67\x3d\x30\xb5\xab\x23\x62\x9c\x0e\xdc\x09\xe0\x4e\x22\xc6\x3b\x2d\xae\xb6\xe3\xaa\x11\x6b\x1c\xd8\x15\x1c\x9e\x2a\xb1\xcc\xa1\xe5\x8a\xba\x5d\x0e\xf1\xc4\xce\xe3\x62\x24\xf7\x28\x71\x83\xbb\xad\x77\xbc\x5e\x91\x7d\xeb\x20\xf1\xbd\x25\xf7\xde\x95\x4b\x6d\xc8\x3e\x29\x86\xeb\x59\x56\x83\x12\x01\xc6\x23\xdb\x39\x72\x59\x7f\xb9\x18\xa7\xdd\x8e\x1d\x23\xd9\x80\x7b\x89\x5b\x9d\xba\x37\xe0\x3d\x28\x40\x53\xcf\x0a\xf0\x95\x8f\x7e\x68\x7a\x07\xf0\x19\x33\xb1\x3f\xb5\x10\xf0\xde\x35\x73\x9b\xed\x0e\xc0\x23\x61\xd9\x1d\x9e\x0e\xe0\x9a\xb8\xfd\xb0\x73\x2a\xe0\x7c\xf0\x84\x85\xdb\x34\x74\x3a\x64\xdc\x98\xe8\x9e\x81\xd7\xbc\xda\x86\x1c\xcf\xcf\xf8\xc6\x9d\xf7\xed\xbb\x57\x3f\xc0\x2e\x55\xf4\xde\x2d\x5d\xc0\xe4\xec\x25\x54\x5d\x84\x3f\xc7\x73\x2e\x13\x2a\x7c\xdf\x4f\x57\xed\x58\x84\x2c\xff\xf7\xbb\x54\x4e\x3b\x41\x77\x51\x7d\x7e\x9d\x6b\x40\x8c\xe4\xb7\x3d\xf2\xe6\x0d\x23\x94\x5d\xa7\xdd\x6b\xe7\x45\x10\xc6\xfc\x7d\x35\xba\xbc\x61\x44\xac\xb3\xa2\x94\x0b\xbb\xca\xe0\x95\x10\xf3\x1d\x97\x5e\x32\xb6\xe7\x12\xf9\x8e\x81\x65\xcb\x78\xd5\x44\xb1\xfd\x7f\xe5\x82\xfa\xde\x7b\xd7\xdc\xcb\x32\x95\xf1\x07\x4c\x0e\xd2\x67\x0d\xd6\xfe\xcb\x41\xf0\x1e\xb3\x3b\x15\x8d\xfe\xe6\xc5\x78\x54\xb9\xe5\xa8\x67\x01\x3e\x8d\xbe\x9b\xf5\x4e\x02\x7e\x9a\x91\x22\xb3\x7e\x80\x1f\x25\xd9\xca\xba\x1f\xe0\xfd\x60\xfa\x3d\xd6\x2b\xc0\xf3\xe8\x72\x2d\x87\x42\xc0\xed\xdb\xb6\xb5\xfc\x9f\xf8\xe1\x12\x77\xbc\xd0\xfd\x2e\xea\x1c\x0b\xaa\xce\x78\x3d\xc2\x39\xfb\xe2\x17\xdb\x7d\xd5\x50\xcd\x0b\xf8\xf1\xd9\x57\x0b\xb0\x6b\x14\x55\x78\x28\x75\x2d\xb5\x4b\x14\xbd\x73\x5b\xd7\x36\x98\xeb\x27\x3a\xeb\xf1\xe1\xfd\x13\x6e\xb4\xe8\xa1\x7b\xbd\x94\x8f\x7b\xaa\xc9\x3b\x2c\x7a\xe6\xc1\xbc\x7f\x84\xb7\x9a\x18\xea\x36\xf8\x36\xc7\xc1\x43\xd4\xec\x91\x2c\xe5\xe3\x2a\x64\x1c\x8c\x09\x26\xff\xe0\xe5\x65\xf6\x2f\x89\x38\xe7\x7d\x65\x84\x7d\x00\xb1\xd1\xa1\xe4\x2c\xc5\xe1\x0a\x31\xcf\xc9\x81\xac\xc3\x1b\xf1\xf8\x9d\x36\x52\xfe\xe1\x61\xfa\x6d\xa0\x93\xf3\x42\xb3\x8c\x91\x21\x43\x05\xcc\x53\xac\x05\x43\x7a\x7f\x2d\x1e\xb7\xd9\x27\xe7\x05\x38\x08\x99\x5f\x15\x64\xff\x72\x31\xbe\x3f\xf9\x6b\xd4\xdf\x03\x7e\xa3\x7d\xcd\xf5\x5d\x00\xff\x25\x61\x6a\xa6\xb3\x80\x00\xd7\xa4\x56\x06\x1b\xf0\x0b\xc9\xde\xcd\xe9\x02\xbc\x1f\xe6\xa7\x39\xa7\xe3\x8b\xc7\xb6\x6d\xcb\x3c\xd2\x50\xcd\x3f\x7d\xe2\xa1\xf7\x16\x9c\x76\x0a\xac\x6a\xf6\x11\x62\xb5\x43\xd0\xab\x4c\xff\xdf\x38\xc4\x7b\xdd\x69\xe5\xbf\x14\xe0\x06\x89\xb6\x79\x96\xff\xe8\xe0\x29\x89\xd2\x7d\x06\x7f\xac\xe4\xe5\x8a\x72\xbc\x5b\xdf\xd2\xec\x07\x88\xe6\x7b\xff\x6c\xd0\xb7\xbf\x2f\x5a\xea\xa3\xfd\xf0\x9d\x43\xba\x68\xbd\xf7\xab\xbb\x16\x0e\xdf\x44\x27\xbc\x5e\xd6\x6c\x73\x38\x2f\x7a\xe1\xd1\xfe\x87\x0b\x73\x70\x64\x12\x5a\x6e\xa3\x2f\xe8\x39\xe9\x10\x06\x6e\x9a\x67\xb9\x4e\xb6\x84\x2b\x7f\xc7\x89\x6b\x4e\x54\x62\xb2\x33\x79\xba\xbb\x07\xfe\xc7\xbe\x40\xde\x7b\x1f\xd4\x42\xf5\x23\x7d\x8d\x48\xda\xdd\x01\xe7\x00\xea\x6c\x6a\x89\xac\x27\x60\x77\x9b\x7e\x4c\x6e\x5d\xef\xbe\x6f\x53\xa0\x90\xf1\x0f\x17\xa3\xe5\xb4\x54\x6d\x37\x10\xbc\xc1\xc7\xd5\x90\x02\x04\x67\x85\xc4\x5b\x5c\x07\x82\x93\xc7\x9f\x65\x0d\x02\x02\x9e\x67\xbe\xe2\xdd\x02\x7c\x99\x79\xd7\xf8\xab\xf1\xc5\x43\x54\x64\xe5\x31\x11\x25\xae\x95\xc7\x3b\x7c\xcf\x21\xdf\x59\xb7\xc6\x2e\xc0\x0d\xb9\x0e\xcb\xde\x14\x07\xfa\x20\xd3\xfe\xaa\xf0\x7c\xb0\x83\x94\x8f\x6b\x5b\x64\x1f\x2b\x52\xf5\xff\xd0\x1c\xea\xa0\x22\xd2\x0e\x50\x95\x72\x61\x4f\x72\x1d\xb5\x45\x81\x7e\x55\x52\x2e\xac\x66\x9b\x93\x95\x68\x95\x4f\x9d\x94\x0b\xbb\xf2\xda\xe9\xa3\xe8\x96\x57\xde\x45\x59\xe7\x15\xa2\x17\x9e\xef\xcf\x8f\x72\x1e\x46\x28\xba\x47\x9e\x9c\xef\x92\x44\xc8\xbb\x3f\x3a\xe6\xe4\x3c\x8f\x08\xe6\xbb\xfe\xef\xf5\x20\xa7\x61\xe5\x43\xee\x0b\x0f\x2c\x77\x0f\xdc\x06\xd0\xf2\xac\x56\xcb\x2a\x03\x8e\x51\xd4\x4a\xb9\xfe\x80\x57\x35\x3d\xf8\xdf\x7e\x31\x21\x09\x3c\x63\xd5\x00\x20\x7c\xbc\xc7\x38\xfd\x7e\x40\x98\x4a\xd0\x4e\x8b\x8f\x40\x68\x53\x42\x3f\xdb\x5d\x40\x88\xd3\xd4\xed\x8e\x3d\x80\x5f\xca\x92\x41\xfc\x2e\x5c\xf2\xe6\x6e\xa5\xf9\x6c\xc2\x74\x77\xc3\x93\xe6\x81\xcf\x11\xe0\x12\x73\x4b\x27\xc4\x0e\x74\xc7\x6d\xcd\x47\xc2\x74\xe1\xe3\x10\x28\x9c\x1d\xba\xa9\xdd\xcf\xe1\xba\x70\x65\xe8\xbc\x96\xa7\x8e\x2b\x85\x1b\x42\x2b\x1b\x0b\x9d\x9a\x85\x73\xc3\x79\xff\x99\x17\x76\xab\xc1\x85\x2b\x92\x09\x1e\x72\xfd\x88\xcb\x47\x91\x75\xe0\xfc\x3f\x3c\x94\xc8\xa5\x5b\x54\xe0\xfb\xee\xdc\x29\x3e\x4f\x74\xdc\x67\xfc\x09\x2d\x7e\x9b\xe8\xb9\x57\x49\xa9\xb1\xab\xbf\xe8\x8b\xa7\xe0\x08\x9f\x5f\x4e\x58\xba\x1d\xc7\x3f\xf9\x30\x9c\x41\x62\x15\xfb\x9d\x4a\xee\xe6\x64\x9e\xb3\xf9\x2d\xf3\x53\x83\x13\x00\x56\xa7\x69\xe3\x10\x23\xc0\x25\xd7\xd2\x73\x58\x18\xe0\x9f\x4a\x6d\x95\x7f\x03\x84\x74\x31\xec\x94\x35\x80\xa8\x08\xbb\xb5\xaa\xaf\x81\x58\x6f\xfe\x65\x5d\x02\x88\xbe\xe2\x3f\xc3\x62\x39\x10\x39\x21\x76\x24\xe7\x04\x10\x16\x35\xd9\xd0\xa9\x01\x77\x83\x2c\x16\xbe\xf2\x5a\x81\xf5\x3e\x0f\xb7\xfc\xf0\xff\x06\xbe\xc7\xca\x93\x23\x42\xd3\x31\x94\x1f\x79\x57\x2e\x62\x2f\xd1\xe8\xb4\xe7\xe3\xf3\x68\xe3\x1e\x75\xc7\x04\xe1\xe8\xc8\xd9\x9f\x0d\x9c\x4e\x09\x87\x44\x35\xff\xe1\xa1\x94\xf9\x71\xc2\xa1\x31\x36\x75\x99\xfc\xcd\xc2\x88\xc8\xf2\x1a\xba\x6b\xb9\x70\x52\xe4\x9c\xca\xa3\xae\x67\x84\x27\xc3\x04\x57\xd4\xdc\x16\x08\x6b\xc3\xcc\x2e\x28\xba\x65\x8a\xd4\x83\x99\x67\x72\xdd\xde\x8b\x9c\x03\xef\x1c\xeb\x70\x9f\x2c\x9a\xe6\xdf\x56\x5c\xe0\xde\x2d\x5a\xef\x57\x7a\x88\xea\xfe\x43\x74\xd5\xe7\xd0\xfe\x67\x1e\x71\xa2\xdb\x3e\x9c\x7f\xd7\x83\x98\x03\xa1\x44\x5a\xf4\xeb\x55\xad\x71\xe6\x2e\xfd\x3b\xff\xde\xfb\x96\xf6\xbf\xf7\x7c\x6f\x9c\x20\x1b\x07\x04\xd1\x4d\x5b\x86\xbd\xfe\xcb\x83\xc4\x97\x33\x39\xa3\x92\x81\xf1\xfe\x4e\x6a\x3a\xf7\x80\x84\x52\x9f\x18\x0b\x7d\x20\xee\x75\x84\x17\x67\xd3\x9f\x3c\xad\xc3\xa1\x94\x79\xb3\x7c\xa7\x20\xd4\x7f\xd2\x66\xd3\x90\x95\x44\xb7\x97\xd9\xc9\x8f\x51\xde\xc4\x09\xd7\x5d\xb5\xa9\xb1\x6d\x44\x86\xf3\xba\x6f\x57\x12\xfa\x7f\xdf\xe6\x42\x11\xd0\xc6\x29\xbc\xd5\xe7\xcf\x14\xc4\x26\x1c\xae\x3f\xe4\xe6\x24\x08\x1a\x57\x57\xeb\xed\x06\xc1\xee\xf8\xd3\x37\x4f\xbb\x5f\x13\xd4\x8f\x75\xad\x78\xea\xd1\x29\x78\x3d\x36\x5e\xca\x01\x9d\xad\xf3\x8a\x12\x46\x45\xef\x3c\x99\xe0\x25\x27\xbc\x18\xde\x51\xb2\xd5\x2b\x52\xd8\x15\x7a\xe0\xd0\x54\xef\x7a\x61\x4f\x68\xeb\x81\x48\xaf\x56\x91\x4f\xd0\xb8\xbd\x5b\xbc\xfb\x89\xa6\x05\xdc\xde\x71\xcf\xab\x47\x74\xde\xf7\xe8\xff\xe7\x40\x64\x97\x9b\x90\xfe\xa6\x6e\xbd\x61\xb6\x4c\x09\xc0\x50\xd6\xdd\x34\x60\x2f\xc0\x77\x32\x98\x33\x38\x18\x08\xa0\x19\x70\x86\x2c\x02\xa2\xd7\x19\xae\x18\xba\x17\x18\x7f\xda\x2c\x4d\xa1\xdf\xdf\x7e\x31\x69\x7c\xee\x52\x6d\x4d\x20\xf5\xae\xbb\x99\xd9\x0a\x20\xb1\x35\xb4\xd0\x6e\x30\xae\xc7\xed\x4c\x3c\xe4\xb1\x1c\x53\x23\x0e\xcd\x16\x05\x56\x60\x70\x50\x68\xe1\x98\xc8\x0a\x62\xa7\x8f\xf9\xc9\x6b\x63\xaf\x77\x6d\xf7\xb0\xac\x55\x4a\x5a\xf2\xf3\xbe\x6b\xca\xd7\xa9\x13\x47\xbf\x1f\xef\x16\xd7\x43\x4f\xfd\x5c\x7f\xce\x23\xa9\x67\x52\x6a\xe8\x5d\x1d\x2f\x9f\x9e\x95\xa9\x06\x55\x84\x57\x7d\x4f\x73\xf2\x1d\x69\x9f\xb8\x0b\x3e\x3e\x45\x82\x89\x89\x81\xa7\xed\x7d\x7d\x04\x65\x09\xad\xa5\xb2\xbe\x07\x85\x7a\x71\xc9\x47\x66\xfb\xde\x13\x26\xc4\xf0\x0e\x34\xfb\x05\x08\xf3\xa2\xda\xf6\x96\xf9\xdd\x16\x1e\x8a\xbc\xb7\xf3\x9b\x5f\x89\xf0\x67\x58\xcd\x36\x1f\xbf\x02\x11\x27\xb8\x69\x4b\xbc\x9f\xb5\x28\x27\x50\xe9\xef\xbe\x48\xa1\x58\x92\x3c\xb5\xd2\x62\x03\xf2\x9e\xbf\xf1\x43\x3d\x2b\x99\x0e\xc0\x6e\xbb\x2e\x6b\xe0\x18\xc0\xfb\x80\x66\xd2\x80\x99\x40\x54\xa6\x56\xc2\x20\x3d\x20\x71\x8b\x36\x7d\xf0\x32\x60\xd2\x6e\xa3\xf5\xc3\xf7\x01\x19\x59\x96\x73\x55\x3e\x00\xd9\x69\x8c\x02\x35\x1f\x20\x5b\xcf\xe9\x84\xc9\x32\x60\x8a\x89\xff\x31\x36\x13\x07\x12\x2b\xc7\xb6\x78\x0f\x82\x6e\x6c\xe8\x8c\xec\x70\x9d\x5f\x2a\xe1\x47\xd6\x98\x24\x0c\xf8\x5a\x17\xb4\xe3\xc8\xac\x94\xfb\x2d\x5c\xbf\x88\xaa\xac\xf4\xfd\x6f\x44\xde\x8c\xa6\xfe\xd3\x4a\x9e\x1e\xf6\x56\xef\x12\x64\xdd\xbf\xbd\xc1\xd7\xb4\x3b\x63\x5a\x69\x85\x81\xdf\xe7\xee\x2b\x19\xb6\x97\xd2\xfd\xe7\xf6\x98\xa6\x2f\x39\x7d\x31\x50\xa7\x27\x79\x32\xf3\xd8\xdc\x40\xf7\x9e\xcf\x13\x13\x8e\x2c\x08\xa2\x08\x18\xc9\xfe\xfb\x57\x04\xed\x11\x2c\x4c\xfc\xbc\x77\x64\x90\xa9\xe0\x75\xc2\x19\x29\xff\x52\x54\x1e\x64\x26\x5c\x18\xfd\x7c\xd3\xdc\x60\x5d\xe1\x9e\xa8\x6b\x1b\x2a\x83\xb4\x44\x72\x61\xa1\xeb\x65\x82\xec\x45\x46\xa1\x2e\xf8\x93\x07\x42\xa1\x18\x3a\xf7\xaa\xfa\x71\x9d\xea\x7e\xab\x01\xab\x67\x6a\xe7\xfb\x15\x01\x76\xd3\xe4\x88\xde\xbf\x07\x7c\x1e\x4e\xf6\xdf\x1b\x9b\x3d\x24\xb9\x57\xd3\xce\x0d\xed\xdf\xab\xd2\x5c\x0c\x29\x0f\xb2\x80\x49\xbd\x33\x26\x03\x58\x10\x60\xb7\xc4\x70\x33\x30\x3b\xc9\xf3\x32\x6b\x9d\x30\x2e\xc3\x2a\x8a\xe5\xe3\xd0\xfa\x69\x82\xd3\xe4\x49\x71\xef\x9b\x6c\xe2\xa7\x2f\xdd\x3f\xd1\xff\xb9\x59\xb4\xc1\x6e\xfd\x8c\xd1\x0f\x8f\x85\x5d\xbb\x74\x79\x86\xe6\xdd\xf3\xc1\x1e\xcf\x36\xce\x76\xbe\x49\x04\x6a\x76\x5e\x9d\x3b\xfc\x52\x74\x70\x61\x57\xcc\x6c\xab\xd3\x67\x43\xaa\xbb\xbe\xce\x1c\x54\x3a\x30\xcc\xb3\xdb\x6e\xfa\xf8\xc3\x86\x61\x77\xba\x4f\x65\xc6\xec\x9d\x1a\x3e\xb1\x87\x3d\xe5\xe6\x0e\x84\xef\xea\x39\x35\xc9\x55\x9a\xfb\xb2\xd9\x35\x3c\x4d\xb0\x38\xe9\xc0\x46\xd3\xf0\xd7\x82\x73\xe3\x05\xeb\xbe\x84\x0f\x16\x1a\xc4\xf7\x5f\x55\x18\x41\x17\xba\xc5\x7d\x5c\xf1\x32\x7c\xbc\x70\x6b\xf4\xe6\xe5\xa6\xe1\x49\xc2\x87\x91\xe4\x5b\x17\x4b\x92\x13\x1b\x42\xd5\x11\xff\x9e\x82\xfa\xa0\x7e\x11\x00\xa3\x6c\x18\xd9\xf7\xc1\xed\xbe\x0c\x79\x8e\x48\xef\xfd\xa6\x48\xfa\x1a\x4f\x97\xf4\x01\x59\xa0\x37\x90\x3c\x77\x97\x8f\xd2\xf4\x97\x95\x03\x56\xcb\x1a\x0f\x51\x51\x05\x56\x67\x33\x42\x75\x04\xa2\xb6\xe5\x15\xce\xbf\x6c\xc2\xbe\x7e\x9f\x3f\x2d\x78\xb1\xcf\x94\xc6\x1d\x59\xd7\x13\xbf\x24\x78\xdd\x9f\x9f\xb6\x68\xf6\x8d\xa9\x06\xd5\xec\x09\x3e\x85\x11\x33\x27\x5d\x3e\x9d\xb0\xf9\xa4\xc3\xdc\x49\xe7\x57\xc7\x6e\xa9\x9d\xbe\xb0\xe1\xd4\xd1\xa8\x8b\xad\x5f\x97\xbc\x3a\xf2\x34\xfa\x79\x27\x6d\x51\xe6\xde\x0f\xb1\x9e\x9d\x55\xf3\xa7\x6e\xdf\x1a\x67\xdc\x95\x3b\x27\x64\xcb\x8f\xb8\xa4\x2e\x51\x0e\xb5\x30\x30\xf6\x79\xf7\xd5\x2c\xd9\x75\x77\x63\xdf\xf5\xf0\xa6\xae\x5c\xb5\x24\x8e\xe8\x99\x91\xfe\x6b\x79\x7d\xdc\xab\x9e\xee\xd4\xaf\xcb\x99\xb1\x6f\x04\x21\xc9\x1d\x4b\x97\xc7\x6d\x10\xac\x4d\xfa\xb9\x28\x3e\xce\x53\xd0\x3d\x8e\xbe\xf0\x76\x4c\xb9\x30\x21\xce\x75\x01\x2f\xba\x5d\x58\x1a\x6d\xf0\x77\x1e\x28\x19\xa8\x2a\xf6\xaa\x59\x80\xfc\xf1\x5e\xb5\x7b\x4b\x79\x40\xf9\xe7\xfe\xbb\x94\x83\xc8\x96\xf8\xc1\x52\x0e\x40\x9a\x07\xb0\xb9\x70\x90\x3b\xe9\x83\x0c\xd5\x72\x1a\xb6\x14\xd8\x95\x68\xfe\x40\xdd\xb7\xad\x78\xcb\x74\xee\x47\xfa\xc4\x57\x5e\x6b\x6a\x7c\x87\x79\xd1\x6a\x59\x4b\x27\xc7\xf9\x8d\xdd\x7d\xf9\xc7\xac\x0f\x19\xc9\xd3\x44\x27\xb3\x32\xd7\x16\x38\xe5\x76\x1c\x3a\x94\xfe\xeb\xe0\x92\xc5\x33\x77\xab\xa7\xde\xad\x44\x7e\x6b\x91\x6e\xf2\x83\x77\x6e\x05\xbf\x36\x5e\x9a\xf0\xfd\xd7\xef\x02\xe3\xd5\xbb\x52\xdc\x7f\x1f\xcd\xdb\xb3\x62\x4b\xf2\x82\xce\x43\x0b\x2d\x96\x8f\x9a\x70\xb7\x6b\x72\x6e\xfe\xe2\xcf\xc9\xbf\xba\x3e\xcf\xca\x59\xac\x3a\x61\x76\xf7\x86\xec\xf6\x05\xab\x92\x3e\xf4\x98\x64\x5c\x98\xcb\x9d\xe0\xd6\x93\x9f\xde\x3c\x67\xe4\x84\xa4\x9e\x3b\x93\x6e\xcf\xda\x9b\x34\x5c\x10\x9e\xc2\x9e\x59\x9d\xb8\x5d\x50\x9c\xe4\x9e\xfd\x2e\xf1\xac\xa0\x6b\x5c\xd6\x74\xee\xb8\xf9\xc2\x09\x71\xb6\x00\xa5\x4e\x9d\x9c\x07\x5a\x76\x8a\xef\x7b\xd5\xfa\x0d\x85\xcc\x3f\xf0\x96\xa5\xf4\xf1\xbf\xa5\x79\x18\xd2\xf1\xaf\x96\xdc\xfb\x2d\x9a\x4a\xe9\x93\x8b\x71\xc2\x7b\x94\x31\x85\xd2\x1e\x5a\x9a\x66\x98\x31\x9a\xf6\x56\xf3\xd0\x5c\x66\xbb\x95\xee\xfd\x9a\xdd\x56\x6e\x6d\xae\x87\xae\xf1\x36\x2f\x08\x7f\x18\x6d\x73\x2c\x66\xd5\x86\xd4\x4f\x53\x3c\xb7\x5b\x2c\xb6\x98\xf7\x71\x7e\xd2\x5a\xff\xb9\xd8\x36\x26\xdf\x3c\x7f\xfc\xac\xee\xb2\x7b\x2b\xb0\x20\x6a\x46\x73\x7d\xfb\x1a\x8d\x39\x26\xd9\x9f\x3a\xee\xac\xcd\xcc\x49\xc8\x0e\xff\xf5\x60\x45\xde\x8c\x83\x59\x71\xbf\xcf\xe5\x35\x4a\xb9\x8f\xec\xfd\x19\x13\xbb\x82\xe7\xe6\xfe\xe1\x3e\xd6\x4c\xf9\xde\x9d\x3e\xc3\x74\x2a\xd2\xe7\xf6\xe8\x4c\x53\x9a\xd2\x38\xf9\x60\xcf\xda\xf4\xd2\xf4\x3b\x93\xf2\x7b\x44\x69\xa6\x93\x2f\x4d\x1a\x2e\x08\x48\xc9\x98\x3c\x2a\xf5\xa7\x60\x4b\xd2\xeb\xb4\xfb\x13\x9f\x08\x44\xe3\xcc\x00\x85\x90\x51\x4e\xbd\x9f\xdf\xa4\x7a\x20\x79\x7e\x3a\x49\xfa\xfc\x47\x8a\xb9\x8e\x3f\xbe\xdf\x02\x3f\x4a\x9f\x7b\xf0\x7f\xfa\xe3\x48\xea\x73\x8e\xec\x1b\xf1\x03\xe5\x06\x72\x93\x29\x94\xa6\xca\x8b\x0f\xb5\xf7\x2b\x9d\x7a\xcc\x3d\x97\x45\x6d\x33\x6e\xb8\xe1\x74\x62\xb5\x93\x9c\x83\xe1\xa9\x0b\x47\x0c\x82\x1c\x42\xd5\x76\x6b\xed\x71\x4a\x3c\x94\x52\xbd\x72\xe6\x96\x59\x39\x75\xb3\x76\xcd\x9b\xbb\x61\xde\x46\xff\x45\x7b\x66\x68\xad\x53\x3d\xad\x94\x17\x31\xb5\x67\xf5\xf9\x07\xad\xcb\x36\x4c\xf2\x59\xf5\xad\x7d\xd7\xf2\xf4\xb4\xea\x82\xcc\xdf\x4d\x4b\xcb\xd2\x64\xf2\x2f\x74\x5e\x5c\x20\x4a\x0d\x5c\x22\xe8\x9a\x9b\x9b\x30\xb1\x75\xe1\xb5\x6e\xd3\x9c\x7e\x13\x4f\xcc\x0f\xea\xde\x95\x5d\x3f\x71\x66\xee\x94\x1e\xcd\x69\xbc\x94\x8c\xd9\xdf\x7a\x76\xa4\xc7\xa6\x38\xe4\x7c\xea\x69\x4b\x7b\x90\xdc\x31\x63\xa9\xc0\x37\xe5\xd4\x84\xcc\xe9\x8f\x05\x97\x12\x1f\x4e\x18\x99\x95\x23\x54\x48\x38\x9d\xf4\x3d\xb3\x40\x48\x8d\x9f\x03\xa8\x55\xc8\x91\xbc\x97\xd4\xff\x97\x72\x20\x29\x32\x62\xcd\x95\xe4\x5f\xac\x36\x15\xab\xb4\x1f\x42\x89\xe4\xfe\xef\x45\x92\x93\xfa\xfe\xb0\x82\xf4\xbf\x9a\x5a\xab\x6f\x51\xaa\x29\x94\xa7\x79\x35\xfd\xd5\xb4\x86\x72\x6b\xc6\xde\xf8\x69\x5a\xa3\x33\xa4\x6c\xf4\xb5\x81\x76\x37\x59\x05\x07\xfd\x2e\x4e\xf5\xb9\xeb\xf3\x68\x7d\xe7\xe9\xd3\x63\x17\xc4\x5f\x9f\x57\x52\x52\x95\x35\x65\x5a\x65\xe6\xb0\x23\x8d\x6b\xf3\x67\x0d\x4b\x2d\x3c\xd4\x71\x7c\x5a\xee\xd3\xc4\xbc\x03\x8f\x6a\x5d\xe7\x07\xc4\x53\xf7\x1f\x6f\xb5\x5a\x30\x74\xac\xd5\x9e\x61\x5d\xae\xb9\xcf\xc7\xf2\xb6\xcf\xef\x6a\xcd\xb9\x3d\x76\xda\xe6\xd6\xee\xf9\xd3\x15\xc6\xfa\x6e\x94\xef\x51\x9c\xa6\x3a\xb6\x65\x2d\xaf\x27\x66\x4a\xf7\xd8\x77\xab\x2e\xf7\x1c\x9d\xbc\x75\xec\xba\xe5\x1b\x05\xbc\x94\x9e\x78\xed\xbc\x04\xc1\xb4\x64\xa7\xb8\xea\x25\x26\x02\x62\x9c\xc3\xd8\xc8\x85\xcb\x84\x5a\x09\xa3\xe2\xae\xcf\x7f\x2c\x4c\x8e\x0b\x8c\x9b\x38\x8f\x29\xdc\x1e\x63\x08\x98\x4b\xf2\x4d\xf8\x02\xb1\xc6\x4b\x7c\x1d\x29\x07\xb2\xc2\x95\xd2\xc7\xff\x94\x70\x10\x07\xaf\x90\xfe\x76\xfb\xa4\x2a\xf2\xbd\x7f\xd3\xfa\x3b\x24\x0f\x50\x7f\xe4\xbe\x1a\xf9\xde\x7b\xc2\x93\x8d\x23\xda\x28\x94\xf2\x4f\x0f\xcf\xeb\xef\x1a\x3d\xab\xe4\x58\xed\x23\x66\x80\xe5\x94\x6d\xd4\xdb\x29\xee\x2b\x5c\x06\xe5\xbf\xab\x62\x46\xcd\x08\x1f\x93\xf9\xea\xda\xc0\x29\x21\x29\x2f\x53\xee\x5e\xf1\x58\xb9\x7b\x8a\x5c\xbc\x6f\x79\xd3\xd1\xc7\x99\xfd\x23\x3b\x2f\x65\xdf\x46\x36\x3b\x74\xd7\xc5\x96\xcf\xf1\xd9\x6d\x21\xdf\xcf\x8f\xec\x9e\x99\xb5\x3f\x34\xe7\xc4\x8d\xee\x9e\x0c\xf7\x30\xb5\xa3\xea\x3d\x09\xe9\x6b\xc3\xa8\x07\x8e\xf4\x7c\x49\x9d\x1b\xf6\x7b\xf7\x59\x01\x35\x65\x69\xd8\xce\xed\x3d\x82\xbd\x89\x67\xc2\xf5\xb6\xd2\x05\xcf\xc6\xb5\x85\xa7\x6e\x32\x16\xca\x25\x18\x84\x75\xae\xef\x16\xa6\xc5\x6e\x0b\xab\x5d\xab\x25\x2c\x8d\x96\x89\x30\x5c\xa9\x2a\x3c\x1f\x75\x39\xec\x77\x41\xa5\x68\x68\x38\x0d\xb0\x95\x7c\xdf\xd2\xf3\x20\x43\xc2\xc1\x2d\x93\x70\x2f\xdb\x26\xf5\x19\x3f\xae\x92\xbe\xd7\x0f\xde\x2d\xd2\x07\x6f\xbe\x20\xbe\x0f\xfc\xcc\xfb\x09\x79\x2f\xfe\x4e\xf0\x73\x92\x07\xb9\xb2\xf9\xf5\xab\xc1\xa6\x14\xca\xc9\x9e\x37\x06\x9a\xb1\xf2\x51\x7b\x1d\x1a\xd7\x51\xe9\xfa\x6a\x6b\x5f\x3d\xf7\x75\x5e\x6b\x7b\x72\x6e\x65\xfd\x98\xd0\xa5\xde\xef\x53\xaf\x3f\xf8\x95\xda\x1e\xeb\x11\x3f\xe2\x01\x7b\xd9\xcf\x71\x5f\xc2\x8f\xdc\x8f\x38\x7c\x3a\xd9\x24\x30\xb7\xce\xff\xe6\x85\x89\x51\xbe\x93\x6b\x2f\x7e\xa8\x4a\xf5\xf2\xe1\xdd\x59\xd9\xf3\x2c\xe5\x84\xcf\xb8\xaa\x30\x01\x3f\x69\x8d\xef\x95\xcb\x17\x04\xc9\x89\x2d\xbe\x77\xce\xbb\x08\x5e\x25\x0c\xf2\xf3\x3c\xf9\x5d\xa8\x15\xf7\xc3\xbf\xe2\xe8\x73\xa1\x55\xdc\x59\x69\xbe\x85\xff\xdd\x7d\xeb\x84\x15\x91\x9e\xfe\x17\x76\xb7\x09\xdb\xc3\x63\xfc\x3b\xb6\xbf\x15\x19\x87\xd2\x02\x26\x6c\x8d\x17\x79\x05\xd7\xf9\x63\x73\xb4\x68\x56\xe0\xf6\xbf\xfb\x61\xda\x01\xc9\x3e\x20\xa9\xc7\x16\x49\x5f\x20\x29\x07\x72\x95\xe4\x21\x7e\x0a\x6f\xbf\xa2\x90\xfc\xc3\x43\xd2\xff\x6c\x48\x6b\x20\xfb\x83\xdc\x93\x7d\xed\xd1\xab\xd7\x66\xbf\x97\x27\xdf\x7b\x5f\xf8\x42\xed\xd5\x23\xb7\xbf\xed\x52\xf3\xa6\x50\xb6\x2c\xfe\x3a\xc5\xa4\x46\xb5\x3c\x3f\xf5\x53\x03\x4f\xd6\x82\x97\xfd\xa0\xe5\x40\xc0\x31\xc7\x81\xe3\x87\x37\xd5\x4e\xb8\x1f\xa0\x11\x71\xb1\x69\xe2\x92\xa6\xd0\x4f\x01\xb3\xdf\xb5\xec\x2f\x8f\x52\xf3\xca\x7d\x17\x7b\x23\x21\x66\xbb\xdb\xb2\x77\x05\xcd\xfb\x62\x03\x5c\xfd\x5e\x3f\x13\x6a\xc4\xe8\xb9\xbe\x7d\x9a\x2a\xf4\x8a\xfa\xe2\x16\x5a\x67\x2f\xcc\x8f\xf8\xed\x16\x76\xcb\x5d\x58\x1b\x96\xea\xbe\xf8\xfa\x52\x61\x7d\xd8\x42\xf7\x83\xe5\x9b\x45\x63\x82\x45\x1e\x13\xcf\x6b\x88\x18\xc1\xda\x1e\xcd\xa7\x8a\x45\xc1\x81\x02\xaf\x90\x92\x66\x51\x58\x10\xdb\x6b\xd4\x91\x91\xa2\x75\xfe\xab\xbc\x46\x1f\x0c\x12\x9d\xf1\x1b\xe8\xf1\x78\xdf\x3a\x62\x88\x67\x2d\x30\x56\x24\x1e\xe7\x1c\x0f\xb1\x6e\x40\xdf\xfd\xef\x0a\xe9\x73\xfd\x52\xbc\x43\x7e\xef\x1f\x27\x3f\x21\xfd\xff\xe7\xef\x5e\x92\xfb\x49\x1d\xbd\x89\xec\xa3\x52\x49\xff\x4c\xfa\xe5\xe7\x96\x7d\xaf\xea\xd5\xc3\xe7\x7f\x93\x75\xdd\xae\x26\x3c\x20\xfb\x9d\x42\x59\x13\x27\x7c\xae\x1b\x27\xdf\x6f\x5e\x4f\xcf\x15\x66\xad\x0e\x27\x5d\xb5\x6b\x8c\x37\xcb\xfa\x77\x4c\xc1\x6f\x7e\x42\x9d\xb3\x45\xd0\xde\x4e\x85\x05\xa3\x3d\x0c\xbc\xf2\x3b\xcd\x76\xd3\x7c\x78\xfc\x5d\x9d\x29\xd7\x26\xf8\x6d\x73\xec\xec\x6c\x7c\x6b\xec\x1f\xee\xf0\xe2\xb7\xbf\x28\xda\x6f\xb1\xc3\x89\x2f\x25\xa2\x05\xbe\x4a\x0e\x37\xdf\x0a\x44\x7b\xbd\x6f\x3b\x52\x1b\xce\x88\xce\x7b\x6b\x3a\x7e\x7b\x78\x57\x74\xc1\xdb\xcb\xc9\xe0\xce\x3a\xd1\x3b\xcf\x2d\x8e\x1f\xab\xeb\x09\x45\xf7\xe9\xce\x9c\x6b\x67\x88\x01\x1e\x19\xce\xe7\x2e\x95\x11\xa3\xdd\x0f\x39\xaf\x2d\x53\x26\x78\xae\x8d\x2e\x31\xa7\xe3\x09\x57\xd7\x52\x97\x92\xe3\x29\x44\x34\xff\x20\x90\x2d\xf1\xfd\x57\x6b\x4a\xce\x3f\x09\xff\x21\xe6\x60\xba\x95\xee\x91\xdf\xf7\xc7\x7b\x4f\x48\xff\xbf\x71\xc6\x9b\xc8\x5e\x7d\x50\xf7\x81\xf4\xc5\xab\x9e\xb7\x92\x39\x31\x17\xad\xc5\x5c\x44\xe9\x49\xc1\xbb\x5e\xdd\x29\xf1\x39\x57\x8d\x11\xe7\x40\x2c\x0e\x03\x34\xd7\x0c\x79\x92\xdd\x06\xd0\xf5\x54\xdb\x27\x44\xe1\xb7\xfb\x75\x93\x9b\xe1\xe6\xc8\x8e\x79\xc9\xf4\xf5\xcb\x80\x73\xce\x05\xbb\x7a\xf7\x55\x44\xf7\xa6\xcd\x8e\x67\x9c\x5a\x88\xda\x53\x4f\x9c\x73\xec\x87\x10\x57\xee\xd9\x3a\x2f\xe3\x5a\x10\xe5\x2d\x91\xce\x91\x76\x79\x44\x1b\x51\xe0\xe8\xc5\x39\xd8\x39\x85\x38\x62\x9f\xcc\x09\xf8\xba\x83\x38\xcd\x3b\x6a\xa7\xd3\x04\xa2\xd0\xc1\xdf\x2e\xe9\xe5\x00\x62\xbb\xc3\x40\xbb\xee\x27\xa3\x88\x22\x07\x77\x6e\x5e\x5d\x16\xb1\xcd\x21\x85\xeb\x73\x6b\x35\x71\x85\x37\x8f\xcb\xac\x72\x20\x1e\x73\xd9\xbc\x69\xd7\x0e\x10\x15\xbc\x1d\xdc\x0f\xe5\x1a\xc4\x67\x3b\x43\x20\x5f\x92\x03\xb3\x47\xc2\x87\x5e\x20\xc7\x2d\x0c\xb8\x47\xee\xff\x5f\x5f\x3f\x23\xf7\xc7\x37\x91\xef\x48\xae\xf4\x11\x3e\x93\x5a\xa3\xda\x4e\xce\xfb\xcb\xd9\xdd\xef\x7b\xf5\xa4\x96\xd8\x17\xdb\x23\xf1\xc1\xd7\xd5\xf5\xf5\xfd\x66\x36\x00\xea\x1d\x83\xa6\xa4\xc5\x03\x56\x9f\x55\xae\x8e\x2d\x06\xf8\x0d\x7a\x75\xc1\x43\x71\x3d\x42\xc9\x72\x99\xf7\x4c\x1c\xc9\x30\xb4\x6e\x74\x1d\x88\xf9\x2b\x4c\x99\xf5\x8e\x11\x88\xd8\xb7\x86\x3d\x9e\x1b\x8f\x80\x0b\x61\xec\x08\xce\x48\x78\xdf\xdd\xc0\x8e\xfa\xd3\xc7\x21\x04\xb3\x7a\x3c\x59\x27\xa4\xbc\x83\x8d\x47\xd7\x04\x6c\xa4\xba\xda\xec\x6f\xad\x40\x86\xb5\x0c\x73\xfe\x7b\xc0\x8f\x31\x8a\x69\xfb\xaa\x0d\x11\x74\x2b\x96\xf6\xb3\x4c\x38\x33\xf6\xb3\x98\x0f\x7e\xc1\x9b\x21\x67\xf3\xb9\xd6\x0d\xd3\xa9\x2d\xac\x27\x35\x97\xe0\x4f\x7f\x09\x6c\x93\x3c\x17\x9c\x9d\x29\xd6\xbb\x24\x07\xf2\x6d\x53\x03\xf9\x5c\xf4\xee\x6d\x13\xb9\x1e\x9e\xc6\xb7\x92\xe7\xc6\x6d\xc1\x2f\xb2\x8f\xdc\x55\x49\x9f\x04\xa9\xff\xb5\x5f\xe2\xfb\x6e\x92\xdc\x77\xcf\x93\xe4\x82\x48\x73\x20\x26\x06\x02\xf2\x5a\x14\x4a\xe2\x62\xc0\x4a\x5f\xe9\x7a\xc4\x34\xc0\xb1\x41\x23\xc3\x2f\x17\xc2\xe0\xb5\x46\x99\x1e\x8d\x68\x4a\x73\x36\x3f\xe1\x52\x8a\xaa\x85\x49\xd4\x1c\xfb\x39\x28\xdf\xa4\x4a\x33\xe2\x5c\xc7\x99\xc3\x17\x68\x13\x6c\xf7\xa2\xb8\xac\xc6\x5a\x8e\x35\x09\x45\xb7\x3e\xd0\xbd\x6c\x80\x43\x2f\xbc\xac\x73\x6d\x66\xe1\x66\xbb\x2d\x2d\x95\xd1\x09\xe0\xb2\x65\xa0\x34\xc7\x80\xca\xe9\x0e\x05\x0c\x86\x51\x37\x7d\x5f\x0b\x18\x36\x49\x39\x07\xab\xa5\xef\xbe\x00\x06\xfb\xa9\xd3\x5e\xac\xc4\x57\xa3\x71\xd6\x6a\x4f\x8a\x50\x63\xca\x03\x8e\x8b\x39\xb1\x85\xb7\x02\xc9\x73\x60\x47\x03\xf9\xfb\xe1\xfd\xf5\xf7\xa4\x3e\x4b\x68\x25\xb5\xf6\xad\x98\x83\xba\x4e\x03\x79\x3e\xfe\xe9\x87\x71\xa7\xaf\xff\x29\xcd\x41\x90\xde\xff\xfe\xd3\x07\x22\x0c\x90\xf5\xa0\x50\xa2\xb5\x01\x53\x05\xb9\x93\x41\x77\x00\x5e\x87\xaa\xb7\x57\x06\xe0\xbf\x50\xa7\xd9\x6d\x30\x90\xa8\x66\x18\xeb\x48\x00\x33\x3f\x98\x8c\xe6\xa6\x42\xb4\xe2\x88\x69\x26\xdb\x1e\x1d\xdb\x03\xcd\x5c\x6d\x07\xa3\xb1\x78\xbf\x45\x2a\xa3\x06\xbf\xce\x5b\x98\xfe\x64\x14\xe0\xd5\x4d\x0f\x8b\x60\xfa\x61\x34\x3d\xeb\x6f\x91\x66\xfd\x0b\xf8\xb2\xc4\xfc\x4f\xae\x83\xd4\xc7\x36\x7f\xdc\xab\x1a\x8e\x66\x72\xdd\x2f\x00\xb5\x89\x66\x0a\x3f\x7a\x67\x66\x86\x59\xdd\xe7\x29\x80\xe6\x66\xb3\x2f\xcd\xb2\x80\x16\x5d\xca\xc1\xfc\x56\x12\x8f\xff\xc3\xce\x66\xf2\xb9\xe0\x85\xd7\xb7\x52\x72\x1f\x5c\xdf\x45\xee\x07\xd7\x3f\x12\xe4\x7e\x7a\x4e\xe2\x87\x1f\x96\xe4\x23\x6d\x93\xf8\xe2\xab\xea\xfb\xae\x03\x69\x1f\x04\xe9\xfd\xff\xb1\xf7\x01\xb5\x87\x32\x35\x21\x0d\x80\xf1\x80\xa1\x9b\x7c\x86\x02\x6c\x81\xca\x2e\x57\x67\xc0\xf3\x8b\xda\x06\x97\xc1\x40\xdc\x76\x1d\x7b\x87\x08\x20\x93\x6f\xa0\xc2\x59\x01\x2c\xfc\xac\xdf\x68\x1b\x0f\xac\xcd\x33\xdc\xcc\x34\x01\x76\xaa\x19\xf9\xda\x6c\x02\x0e\x9d\x34\xae\xa7\x3f\x01\xce\xe5\x9a\x38\x49\xfd\x7d\xeb\xa1\xc0\xa3\x68\x13\x11\x6d\x24\xd0\xf4\xcd\x78\x0b\x35\x1c\xf8\x91\x6c\x68\x2e\xad\x87\x94\x73\x30\x0e\xed\xd5\x11\x55\xba\xc7\x7b\x55\xee\x85\x41\xf1\xef\x3a\x40\x39\xb7\x27\xa1\x9e\xe4\x25\x3f\x9b\x35\x91\xfb\xe3\xeb\xa2\x9f\xfc\x5e\x7d\xb8\x43\x40\xe6\x44\x55\xa5\xa1\x0f\x07\x54\x1c\x82\x3e\x1c\x8c\x34\x07\x40\xea\xff\x4a\xfb\x81\x4c\x34\xec\xeb\xfb\x7a\x4a\xfa\x44\xf8\xc9\x02\x7a\xdb\x06\xa7\xba\x1d\x06\x6c\x54\x14\xd2\x9c\x12\x00\xd7\xc2\x51\x19\x0e\x3a\x40\xc4\x06\xb5\x4a\xee\x34\x20\x35\x4f\x4b\x97\x7d\x1f\x98\x45\xd7\x09\x63\xa6\x01\x79\x49\x3a\xc1\x7f\xee\xf1\xc7\x03\x45\x5e\xba\x1b\xff\xdc\xdf\xa7\x03\xa7\x46\xea\x47\x49\xef\xed\x5b\xfe\x02\xee\x4d\xd1\xd7\xb7\x9c\x0f\x34\xec\xd6\x7b\x66\x65\x0f\x7c\x9a\xad\x7f\xdf\xf2\x3a\xd0\xf5\x46\x97\xf9\xa7\x1e\xb3\xc8\x7a\x88\xa4\xf5\x68\x8b\x6d\x7a\xd1\xfb\xf9\xde\xee\xfd\x4e\xae\xf7\xfa\x85\x22\x92\x8f\xfc\x4f\x0e\xe8\xa8\x84\x87\xfc\xc3\xc1\xb8\x8a\x55\x9a\x87\x32\x47\xc2\x47\x49\x73\x20\x12\x52\xc4\x1a\xfc\xa6\xaf\xef\xed\x76\x0d\xd0\x5c\x31\x80\xed\x72\x01\xb0\x16\x0e\x3f\xc5\xab\x03\x1c\x97\x2a\xd7\xb0\xde\x03\x01\xfd\x55\xc6\x30\x6f\x01\x63\xd9\xa3\x94\x58\x6b\x81\x0c\x7b\xf5\x99\x36\xcb\x81\xb9\xcb\x34\x29\x74\x47\x20\x4f\x41\xa3\xc4\xfa\x01\xb0\xf6\xb5\x56\x19\xcd\x07\xd8\xe6\xa2\xad\x4d\x3d\x09\x1c\xe4\xeb\x2c\xb2\x8c\x04\x8e\x87\x68\xdd\xb3\xe4\x03\x97\xc6\xe8\xb8\x9b\xcf\x03\x6e\x66\x6a\x55\x4a\x7d\x7d\x73\x63\xe0\xf5\x4f\xad\x6b\xe6\x01\x40\xab\xaa\x16\xc3\xfc\x1e\x20\xb8\xa9\xa9\x66\xba\xbb\xb7\x0e\xaa\x53\x9b\x58\xdf\x48\x5e\xb2\xfe\xad\x40\x81\xf2\x0f\x07\x24\xed\x07\x52\x7a\x0b\x7d\x39\x18\x09\x17\x58\xa0\x21\x56\x69\x2e\x90\x94\x87\x92\xf6\x03\x91\xce\x03\x5f\x09\x47\xe4\x20\xa9\xa3\x53\x25\xa0\xe9\x21\x53\xc5\x7d\x08\x58\xd0\x64\x6f\xd8\xca\x01\xec\x08\xf9\x41\x36\x39\x80\x57\xa8\xa2\x9f\xd4\xef\xb7\xde\x0c\x24\x2b\x8e\x38\x64\xfd\x10\xc8\xbe\xa1\x6a\x69\xf5\x0e\x98\xb3\x66\x54\x9b\xd5\x0a\x60\xa9\x9d\x6a\xa1\xe5\x30\x60\x55\x9b\xea\x59\xf3\x17\xc0\xe6\x61\x63\x06\x58\x8c\x05\xf6\x4c\x52\x8f\x32\x7f\x0b\x1c\x55\xd6\xb0\x31\x8d\x02\xce\xe6\xa9\xe9\x99\xc9\x03\x57\x6f\x6a\xc8\x9b\x9d\x05\xee\xa8\x68\x56\xf7\xfe\xfd\x89\xb6\xfa\x2f\x53\x0f\xe0\xf5\x79\xf5\x52\x93\xe9\x40\xab\xe1\x98\xc9\x2f\xdc\x41\xe6\xe5\xdd\x91\x70\x1c\x7f\x38\x20\xc9\xfe\xbf\x57\x92\x73\xf2\x27\x0f\x46\xd2\x17\x6a\xe1\x07\xb1\xce\x48\xec\xcb\x81\x8c\x95\xec\x9b\x21\x01\x62\xf5\x90\xf4\x0d\x62\x8f\x13\xab\x7d\x35\xa0\xde\xd2\xff\xad\x4d\x39\x60\x34\x6e\x50\xbe\x75\x3d\xc0\x68\x1e\xfa\x8c\x6e\x07\xf0\x75\x87\xdf\xb3\x76\x04\x82\xe5\x15\xa9\x56\x2a\x40\x6c\xa8\xa2\xb6\x25\x07\x48\x39\xa6\xb4\xdb\x52\x11\xc8\xec\xaf\x92\x61\xe1\x0c\xcc\x3a\x31\xc2\xc2\xcc\x10\x58\xf0\x4d\x65\x99\x59\x10\xb0\xa2\x60\x64\xa6\x99\x0b\xb0\xc9\x7e\xb4\x5a\xaf\xee\x98\xa6\xca\x30\x5d\x01\x1c\xec\x52\x3d\x6e\xcc\x03\x4e\x8c\x1e\xf5\xd2\xb8\x19\xb8\x90\xa7\xba\xca\x88\x03\x54\x6c\x1c\x55\x6f\x22\x0f\xdc\xed\x18\xd3\x68\xbc\x0f\xa8\x4f\x19\x13\x7e\x2f\x5a\xfc\xf9\xae\x48\xf6\xbf\x13\x37\x25\xe7\x60\x56\xdf\x73\x60\xb5\x24\x3f\x6c\x89\xe4\x1c\x9c\x25\xe1\x3c\xa6\x2c\x15\x6b\xe2\x0b\xb1\x46\x4a\xfa\x69\xf9\xe7\xf6\x5d\x0f\x36\x92\xba\x9a\xa7\x02\x03\xda\x29\x14\x86\x1e\x60\x90\x32\xf0\x80\xd5\x0d\xc0\x6a\xd3\x90\x3b\x96\x5b\x01\xde\xfd\xa1\xb3\xcc\xbf\x01\x5e\x3e\xc3\xb6\x59\x3c\x01\x22\xa6\xc9\x4f\x33\x5e\x01\xc4\xe5\xcb\x8d\x30\x01\x90\x32\x4b\x7e\x91\x69\x05\x90\x11\xa8\x38\xd3\x78\x01\x30\xe3\x86\xc2\x11\x93\x65\xc0\xbc\x55\x4a\xa7\x4c\xbe\x02\xcb\xd7\xa8\x5c\x33\x59\x08\xac\xcf\x1d\x71\xc4\xf8\x2a\xb0\xa5\x76\x44\xb9\xd1\x2b\x60\xf7\xbd\x11\x55\x46\x8b\x81\xe2\xfb\x23\xb3\x0d\x4f\x01\xa7\x1e\x8d\xb4\x32\x20\x80\x0b\x8f\x47\xdc\x36\xd8\x0c\x54\xec\x18\x41\xae\x76\xff\xb7\xe2\xf7\x93\xde\x7b\xff\xbb\xdf\x2b\xf6\xbd\x87\xfa\xb1\x84\xe4\xfb\x9a\x7a\xee\xca\x01\xa6\x7f\xfb\xa4\x58\xbd\x71\xd5\x92\x4b\x04\x58\xd7\x7d\x35\x94\xf3\x01\x4e\x5a\xe8\xc3\x51\x7b\x00\xbb\x96\xf8\x5a\x75\x25\xc0\x9e\x35\x79\xa6\xee\x22\xc0\x7e\xff\x9c\x5d\xc6\x3b\x00\xee\xb9\x15\x0e\x66\x3f\x00\x76\xf9\x76\x15\x8b\xc9\x00\xdb\xae\x24\x92\x76\x0b\x60\x76\x5c\x39\x6a\x5d\x00\x30\xd9\x0f\x52\x19\x95\x00\xa3\xa4\x29\x97\x3e\x1c\xb0\x09\xec\xe2\x32\x94\x01\xba\x3a\x8e\x59\xb0\x00\xda\x6b\x3c\x35\x0d\xe9\xec\xa4\x59\xa3\xd6\x54\xa9\x2d\x97\x7a\x15\x55\x26\xbf\xde\x57\x5a\x6f\x41\x9e\xa5\xdb\xdb\x4d\xd4\xdd\x28\x37\xc1\xf3\x69\xb4\x0a\xec\x36\x1f\xfa\xd8\xc6\x7a\x0d\xd6\x59\x98\xd4\x16\xd1\x7a\x70\xc8\x6c\xc2\xed\xb7\xb4\x12\x9c\x36\x8d\xad\xae\xa2\x9d\xc3\x05\x93\xd7\x95\x8d\xd4\x36\xdc\x33\x26\xd3\x61\xfc\xc5\xf7\x16\xff\x97\xdf\x2b\xf1\xbd\x87\x3e\x66\x92\x79\xbe\x52\x1e\xc4\x74\x00\xef\xcd\x90\xd5\x80\x75\x7f\x97\xa8\xe1\xc6\x00\xf3\x91\xd7\x4a\xa5\x08\x80\xa7\x16\xea\xa5\xba\x00\xe0\xca\xc4\xcb\xa8\x7d\x01\xec\xa7\x4c\x52\xd2\xe5\x01\xf6\x7a\xb3\xe7\x19\xad\x01\x78\xea\x05\x41\xe6\xa6\x80\xdd\x89\xa2\x46\xaa\x16\xc0\x96\x29\xed\x4f\xdb\x06\xb0\x6c\xae\xfa\xd0\xa9\x64\x1d\x26\x31\xaa\x00\x9b\xcc\xf7\x2e\x0c\x11\xc0\xe4\x09\xd6\x32\x59\xd2\x3a\x10\xde\xb4\xc7\xa8\x33\xdd\xd5\x71\xd5\x5a\x09\xc5\xe6\xd9\x5f\x27\x5b\x9b\x62\x8b\x05\xab\xf9\x3a\xdd\x00\xd3\xad\x66\xbf\xd2\xa7\x1b\x60\xa6\x95\xcd\xd3\x48\xba\x1a\xe6\x5b\x6e\x7a\xe8\x45\xf7\xc6\x42\xcb\xa9\x77\xd3\xe8\x0f\x30\xcf\xf2\xcc\xad\x45\xf4\x01\xd8\x62\x7e\xba\x9a\x6d\xdd\x88\xbd\x66\x1f\x2a\xd8\xd6\x04\x8a\xcd\xc8\xd5\xe0\x97\x41\xe9\xc3\xc3\xfc\xe9\x7f\x30\xe1\x5f\x9f\x4f\xc1\xdf\xe6\x29\x59\x07\x37\xf6\x92\x01\xed\x80\x79\x02\x6f\x84\xec\xcc\xbf\xfd\x83\x38\x9d\x1e\x87\x55\xd2\x01\x2e\x82\xca\x46\x1f\x00\xec\x63\x63\x65\xd4\x85\x80\xc3\xa0\xb4\xfe\xba\x39\x80\x7d\x69\xce\x53\xa3\x2d\x80\xfd\xac\x02\x7d\x4b\x39\xc0\xee\x4b\x51\x18\xd5\x07\xb0\xe3\x94\xaa\xda\x9c\x05\x6c\x6f\x5c\x6d\x66\xe6\x03\xac\xc4\x47\xb7\x58\x0f\x00\x66\xf4\x07\x2b\x56\x24\xc0\xcc\x15\x3d\x67\x6e\x07\xe8\x55\x28\xb4\xfc\xd2\x9d\x42\x9f\x8a\x3c\x2b\xa7\xf6\xf3\xf4\xd7\x98\x40\x1b\xf8\x49\x95\x4e\xc1\x1c\x2b\xfa\xdb\x22\x7a\x21\x26\x52\xe3\x1a\x95\xe9\x35\x98\x40\x5d\xf6\x44\x8e\x51\x8c\x70\xda\xa1\xba\x8f\x8c\x0d\x48\xa4\x5e\x97\xd6\xa1\xfa\x15\xbd\x0b\xf9\x96\x6a\x95\x46\x8c\x3c\x2c\xb6\xcc\xbd\xfa\x84\x9e\x85\x7d\x66\xe4\xa9\xf6\xff\x78\x98\x3e\xfd\x0f\xfe\xdc\xf3\xdd\x4c\x27\xef\x7d\x4b\x79\x10\x8b\x28\x3b\x0f\xd9\x5d\x00\xf3\x80\xa3\x83\x7c\x2b\x60\x27\xe3\xb1\x41\x65\x6a\xef\x3a\x08\xa8\x1b\xdd\x09\x38\x22\xf6\x8a\xd6\x46\xc0\xe9\xd6\xc4\xa3\xfa\x8d\x80\x93\x49\xce\x19\xd3\x1d\x80\xc3\xdb\xe5\xe7\xac\xbe\x03\xbc\xdc\xa2\xd5\xd6\x1d\x80\xdd\xbd\xd2\x69\xcc\x36\x80\x5d\x7c\xad\xc0\xb6\x77\x5e\x34\x3f\x0e\x60\xab\x01\x4c\xfe\x27\x45\x96\x15\xc0\x2c\xc4\x28\xe6\x59\x80\x3e\x17\xdb\x2d\x23\x7e\x37\x30\x9c\x91\x40\xdb\xda\x56\xcf\x38\x02\x57\xfa\xe8\x96\xb7\x0c\x4f\x04\x58\x5b\xbc\x3e\xcf\x08\x46\x10\xad\xed\x99\x9e\x4d\x0a\x38\xf4\x23\x8f\x34\x6d\x86\xc2\xdf\x9a\x51\xbb\x9f\xe9\x06\x26\xc3\xa0\xe6\x02\xd3\x02\x5e\xd6\x8f\x6e\xa4\x30\x5a\x30\xd3\x2a\xab\xa2\xd0\xe6\x12\x26\x51\xe7\x94\x27\x31\x47\x23\x8b\x4a\xa6\x45\xfd\x27\x0f\xd3\x97\x03\xa1\x50\x68\xa4\xef\xa9\x45\x65\x86\xca\xe4\x02\x46\x4e\x36\x43\x06\xa5\xfd\xe5\x62\x6c\xf9\xbc\xd7\x0a\x8e\x00\xd7\xc5\xb5\x47\x65\x09\xe0\x70\xd3\xdf\x55\x75\x3f\xe0\xf4\x25\x6a\x8f\x96\x3b\xe0\xbc\x2a\xe5\xbe\x41\x24\xe0\xac\x3a\xa3\xd1\x4c\x16\x70\x4a\xcc\x6f\xa5\xa5\x03\xf6\xda\x45\x7b\x18\xf2\xff\xd4\xe1\xf1\x75\x79\xf6\x78\xc0\xf6\x72\xfd\x0b\xbb\xed\x00\x4b\xd0\x7a\xc5\xae\x15\x60\x05\x12\xdf\x6d\xdf\x0a\x4f\xd9\x8c\x81\x1f\xdd\xe4\xe7\x40\x9b\x79\x30\xb6\x19\xf9\xf9\x99\xcd\x1b\xa8\x30\x2d\x9b\xac\x6c\x1c\x40\x65\xf8\xbd\xa8\x66\x36\x10\x60\xcd\x78\xdc\xc5\xdc\x8c\x31\x36\x1f\xee\xc7\x32\xd9\xb0\x66\x04\xdf\x31\x63\xde\x05\x95\xb1\xa3\x3a\x87\x79\x14\x7c\xfa\xb8\xeb\x91\x2c\x0d\xb8\xd1\x63\xaf\xaa\xb1\xe4\x11\x6c\x3d\xff\x12\xd3\xe6\x35\x72\xad\xc2\xf0\x4f\x4e\xce\x7f\xf7\xbd\x65\x26\x8b\xf3\xde\x35\x17\x5b\x5f\x92\xe9\x07\x18\x2f\xa2\xef\x1a\x54\x06\xd8\x1c\x64\xbe\x94\x5b\xf4\x0f\x1f\x24\xe1\xa4\xf8\x07\x7d\x35\xd5\x77\x00\xfc\x53\x91\xad\x3a\xcb\x00\xd7\xa1\xc9\xe7\x8d\x36\x03\x2e\x2d\xd3\x53\xcc\x4f\x03\x4e\x7b\x96\x65\x59\x0f\x02\x1c\x73\xb7\xde\x65\xdd\x05\x78\x13\x8f\xe9\x72\x42\x00\xce\xb3\xeb\xd5\x76\x4f\x00\xf6\xa8\xa7\x22\x6e\x29\x60\xbb\xfc\xfb\x69\xde\x0a\x80\x95\x43\x7c\x60\xc7\x76\x8d\x61\x06\x60\x18\xf3\xb7\x94\x8f\xfb\x50\xcf\xbc\x49\xb4\xd9\x26\xbe\xfa\xc8\x3a\x45\x3c\x65\xb7\x3e\x5b\x69\x3b\x9a\x78\xc6\x16\x3d\x60\xdb\x56\x11\x4f\x39\x4e\x77\x0b\x6d\xe7\x13\x1d\xb6\xbb\x6f\xaa\xb0\xcd\x89\x0e\xdb\x07\x95\x3e\xb6\x33\xa1\xc6\x8c\xbf\x9a\x6a\x5b\x08\x13\x9b\x1d\x97\x4e\xd9\x7e\x04\xd5\x86\x7f\x7e\xbd\x2d\x05\x91\xd6\x64\xfe\xc3\x9f\x7c\x18\x95\xbe\xeb\xc1\x3a\x9c\xdc\x1f\x03\xcc\x5b\x7a\x55\xda\xf7\xdd\xca\x9b\x56\x38\xa4\xeb\x2f\x17\x63\xf7\x80\x73\x40\x71\x30\xe0\x7c\xcf\x69\xdd\xc8\x6e\xc0\x4d\xd5\xd3\x4a\xdd\x03\x70\xdf\x17\xfa\x41\xb7\x08\x70\x77\x4b\x52\x37\xfe\x00\xb8\x95\x65\xbb\x5a\xbd\x04\xf8\xfd\xf3\x2a\x18\xef\x01\xa7\x86\x22\x16\x27\x1d\xe0\xdd\x3b\x96\x6c\xc7\x01\xb8\xb4\x1b\x31\x0e\x93\x00\xf6\xa7\xe7\x8b\x1d\x5c\x00\xdb\x1f\x3f\x2f\xd9\x5f\xc3\x57\x56\x1e\xf1\x96\x7d\xe8\x47\xa5\xed\x40\xe2\x04\x77\xd8\x27\x19\xdb\x42\x62\x1b\xcf\xf3\xed\x1c\xdb\xdf\xc4\x56\x5e\x5e\x43\x35\x47\x9e\x58\xe0\xa0\xff\x28\x9b\xb3\x8f\x58\xec\xe0\x7a\x6f\x27\xa7\x87\x58\x6f\x7f\xb8\x66\x9c\x9d\x2b\xb1\x8f\xf7\xa1\xb2\xce\x8e\x4d\x5c\xe1\xce\xba\x42\xb0\xbf\xa1\xbf\xad\xd7\xa5\x32\xbb\x21\x44\x3b\xbb\xe8\x3c\x97\xa3\x02\x03\xa6\xc7\x19\x4f\xce\x47\x68\x30\x05\xf8\x87\x03\xe9\x9b\x7f\x20\xf5\x3b\x15\xce\x98\x5d\x26\xeb\x50\x6b\x7e\x68\xc0\x0d\x80\x76\xc2\xaa\x45\xd6\x0e\xb0\x8d\xa6\x3d\x18\x36\xe6\x6f\x4e\x8a\xdb\x42\x7b\xc6\x88\xcf\x80\xe7\x55\xcf\x34\x2d\x5d\xc0\x7b\x60\xf0\x32\xfd\x32\xc0\x53\x38\x3e\xd7\x8c\x01\x78\x3c\xc9\xdc\x48\x7b\x09\xb8\x69\x2c\xdd\xcb\x3a\x02\x38\xff\xdc\x3a\xc4\xae\x19\x70\xb8\x77\x5c\xd6\x61\x2f\xc0\xed\xaa\x76\x72\x6a\x01\x38\xdd\x8d\xbb\x9d\xcf\x4b\xb9\xc9\x1e\x0a\xdb\x81\x98\xe6\x90\xf7\x55\x81\x63\x4f\xd8\x3b\x7b\x35\xf9\x72\xbe\x12\x34\x17\xeb\x46\x2f\xce\x79\x22\xc4\x69\xf5\x13\x7f\xbb\x53\x84\x97\xf3\xa4\x7b\xf9\xdc\x75\x84\xbf\xf3\x8a\x5b\xef\xec\x16\x12\xeb\xec\x9b\x2b\x5f\x71\x2f\x13\x4b\x1c\x7e\x5d\xd5\xe2\x4e\x27\x4a\x79\x95\x52\x1e\xac\x6c\x89\x5d\x19\xd1\xca\xa1\x9c\x56\xe6\x7d\x26\xee\x70\x8b\x4a\x7f\xf1\x52\x08\x01\xfb\x30\xfe\x5f\x1e\x88\x74\x5f\x94\x39\x6f\x3e\xb8\x57\x35\x64\x4d\x37\xf5\x1f\x04\x18\xfb\x18\x3f\x1c\x38\x0f\x60\x2e\x31\xbb\x30\xc4\x17\xb0\x4f\xb4\x6a\x19\xc6\x07\xdc\x46\x32\x58\xf2\x6f\xfe\x72\x31\xfe\x73\xf8\xb3\x34\x92\x00\xdf\x33\x01\x75\x06\x42\xc0\x37\x20\xde\xc6\x22\x06\xf0\x89\x9f\xea\xca\xf8\x01\xb8\x57\x2d\xbe\xc9\x8e\x05\xf8\x17\xb6\x5c\x74\x50\x04\x9c\xfa\x1f\xfb\xea\x6c\x0d\xd8\x8f\xbf\x79\xcb\xb5\x13\xb0\x7b\xf9\x4e\xdb\x6d\x0c\x60\xa7\x23\xea\x71\x9d\xd8\x7e\xd8\x2e\x5b\xd4\xe2\xb6\xe0\x7d\x3d\x37\x4a\xf4\xd0\xfd\xd1\xcb\x77\xdc\x0a\xd1\x07\x77\x93\x27\x6b\x78\xd5\xa2\x97\x1e\xa3\x6b\x2b\x79\x1b\x89\x51\xae\x8b\x6e\xeb\xf3\x7e\x12\x86\xfc\xdf\x95\x0c\x07\x1a\xa1\xe7\xba\xfe\x6a\x91\xc3\x0c\x82\xc1\x7f\x76\x49\xc6\xbe\x8e\xc8\x74\x5a\x7b\x2e\xdf\x41\x87\x58\xee\xb8\xf8\x44\x87\x43\x10\x51\x62\x7f\xfc\x98\x8e\xc3\x38\xe2\x2a\xaf\xb8\x78\x94\xc3\x0e\xe2\x09\x77\x26\xfe\xe1\xa2\xfe\xf8\xde\x62\xbf\x53\xc3\x90\xcc\xc9\xd1\x59\xad\xff\x4d\x86\x01\x98\xff\x34\xb8\x37\xb0\xf7\xbc\xef\x31\x3e\x3e\x38\x1f\x70\xd9\x60\x5a\x29\x7b\x14\xf0\x31\xa7\xf9\xca\xcf\x04\x02\xe3\x99\x2b\x94\x6b\x81\xa0\x14\xa7\xbd\xea\xa6\x40\xe0\x59\xdf\xf5\x86\x71\x40\xe0\xc8\xa8\xc1\x96\x61\x80\x5f\xf3\xe4\xd5\xcc\x0f\x80\xf7\x90\x85\x47\x79\xab\x01\xb7\x4d\x5b\x34\x9c\xc3\x01\xe7\xbd\x27\x9c\xdc\x32\xd1\xe2\xe0\x71\xeb\x94\x07\x81\xa7\x3c\xe6\x87\x61\xde\xc6\x02\x1f\xee\x6d\x51\xb6\xf7\xca\x4f\x73\x78\x1f\x44\xe1\xbe\xe9\xaf\x58\xf6\xbb\x44\x93\x7c\x07\x3e\xc9\x75\xd8\x2c\xca\xf4\xb5\xab\x3d\xe5\xa8\x25\x5a\xe3\x13\x50\xf3\xdc\xb1\x41\xb4\xdd\x67\x70\x65\x91\x93\xbc\xe8\x86\xd7\xc4\xcb\xa1\x4e\x19\xa2\x6f\x1e\xc7\xca\x1e\x3b\xdd\x25\x86\xba\xaf\x3e\x33\xc2\xa9\x8c\xb0\x73\xb5\x3f\xa1\xee\xac\x47\xf8\xf3\x23\x4b\xcc\x9c\xf7\x10\x09\x2e\x85\x87\xbe\x38\x6f\x23\xf2\x9d\xf2\x0f\x52\x9d\xd5\x88\x83\x0e\xa7\xff\x3d\x1f\x18\x01\xa4\xc6\x99\xcc\x22\xd7\x83\xa2\xae\x59\xaf\xea\x35\xea\xb8\xc8\x0c\x07\xac\xb3\xb4\xa7\xc9\x5c\x02\x9c\x66\xe8\x8f\x1f\xb4\x02\xf0\x0d\x32\x92\x95\xd5\x04\x82\xdf\x99\x6d\x95\x5b\xfe\x37\x27\x25\x72\x26\xf7\xfd\x98\x52\x20\xe2\xb0\xe7\x5d\x83\x5f\x40\x68\x4d\x18\x9b\xb6\x18\x08\xfa\x95\x92\xc7\xce\x03\xfc\x12\xe6\x55\x39\xe5\xa0\xdb\x73\x7b\xe1\x7d\xf7\xe1\xa8\xe3\x2f\x38\xe1\xed\xf5\x04\x87\x1c\x8f\xdd\xdd\xe8\xdb\x41\x84\xda\x17\x7d\x79\x17\x50\xf9\xbd\xd1\xc1\x59\x78\x39\x78\xf9\xeb\x0f\x8e\x77\x84\x57\x42\xa6\x3c\x31\x72\x1e\x22\xbc\x1f\x92\x74\x2f\xc7\x45\x43\xf8\x2a\x24\xac\x7a\x17\xdf\x41\xf8\x39\x24\xf6\xea\x25\xfe\x17\x91\x5a\xd0\x35\x69\x9f\xbc\x73\x36\xae\xae\xa2\x85\x7e\x47\x4f\x8a\x5c\x6f\x89\xb6\xf9\x1e\x2f\x31\x76\xdb\x2e\xba\xec\x93\x7e\x58\xd6\x2d\x5d\xf4\xdb\xb3\x7c\xbf\xc8\xf5\x05\x41\x75\x6b\xd8\x33\xc7\x75\x27\x11\xcb\xcf\xdd\xb9\xce\xf5\x34\x31\xc3\x85\xfc\xd5\x2c\xe6\xe3\xa4\x3c\x10\xc5\x5f\x8f\x7c\x7e\x50\x8b\xd7\xda\x4f\xf9\x01\x98\x72\x35\xf7\xf5\xdf\x06\xd8\x7d\x53\x7f\xdd\xff\x12\xe0\x29\xd2\xda\x3c\xb0\x1f\x10\x7c\x5a\xe7\xc8\xa0\x36\x20\x7a\xb5\x41\xd1\x50\x79\x20\x7e\xb6\x65\x81\xe2\x0e\x60\xdc\x54\xdb\x19\xaa\xc7\x80\x04\x37\xfe\x03\xfd\x73\x40\x6c\x63\xe0\x33\xda\x5a\x20\xfc\x46\xe2\x65\x5e\x13\x10\x48\xcc\x9e\xcb\x6f\x42\xbe\x4f\xd4\xc6\x18\xef\x47\x5d\x0c\x0f\xeb\xd2\xe4\xa0\x49\xed\x3b\x5d\x75\x6e\xea\x86\x1f\xfb\x2a\x72\x7e\xde\xe4\x1e\x85\xf7\x17\x9d\x57\x0b\x9a\x62\x56\x3f\xfe\xc6\x7f\x27\x68\x8b\x8d\xb9\x7d\xca\xad\x54\xd0\x13\x7b\xfc\xc6\x41\xb7\x9b\xc2\xf0\xa8\x6d\x57\xe4\xdd\x6b\x85\x39\x91\xe5\x65\xe9\x1e\x91\xc2\x13\xe1\xcf\x4f\x3e\xf5\xf8\x22\xfc\x1d\x1a\x75\x8c\xe5\xa9\x27\xd2\x0b\x2e\x3e\x5c\xe6\xb9\x52\x34\x36\xd0\x7d\x7f\x89\x67\x8f\x68\x89\x7f\xe5\xde\xbd\x9e\x1b\x44\xa7\x7c\x37\xef\xbc\xec\xb9\x59\xf4\xde\xdb\xb9\xe8\xbd\xe7\x3d\x42\xce\x73\xec\xe6\x37\x9e\xc5\x04\xd3\xdd\x93\xdc\x17\xa7\x89\xeb\x60\x46\xe6\x0b\x0e\x29\xd4\x20\xe7\x83\xd4\xff\xb7\xe6\x2b\x28\xf5\xfe\xb7\xc3\x01\x39\xf2\x39\xc2\x77\xf1\x30\xb2\x5e\x31\x31\x1a\x93\x06\x7c\xfb\xcb\x83\x4c\x54\x32\x0a\x97\xeb\x04\x26\x8f\xb2\xfe\x3d\xea\x06\x30\xc9\xdf\xfe\xb4\xee\x69\x20\xd9\xce\x67\x69\xef\x73\x63\x6c\x64\x5c\xac\x93\x6f\x67\x53\x84\x7d\xd6\x4b\xef\x4b\x6d\xa6\xc1\x85\x2b\x4e\x85\x74\xb7\x64\xf8\xbb\xed\xdf\x17\x23\xf3\xba\xd3\x7b\xfd\x95\x47\x09\xfa\x2f\xb2\x3c\x2e\x3f\xbf\x98\x78\xf1\x69\xb0\x7b\x5a\xf7\x8d\x64\xe5\x9a\x4e\xcf\x7c\x81\x76\xd2\xa6\x2b\xa5\xde\x73\x04\x01\x89\x35\x17\x54\xbd\x1b\x05\x47\xc6\x0d\x3b\xd5\xe6\x53\x2b\x68\x8a\x8f\x2d\x1d\xeb\xeb\x27\x64\xc4\x5e\x38\x3c\xc0\xb7\x43\x98\x15\xbd\x6e\x9f\xba\x1f\x43\x58\x11\x71\x70\xf7\x5e\xbf\x71\xc2\xe6\xf0\x80\xed\x0e\x7e\x73\x45\xe6\x21\x99\x45\x4b\xfd\xf2\x45\xee\xc1\xfe\x85\x8a\x7e\x85\xa2\x22\xff\x1d\x1b\x72\xfd\x52\x44\x17\xfc\x0c\xd7\xdd\xf0\xad\x14\x7d\xf1\x2e\x26\xf7\x03\xd3\xde\x71\xf5\x9b\xa4\x49\xed\x55\x25\xc3\xd1\x64\x4e\x8e\xa1\x82\xbc\x17\xe9\x7b\xfe\x18\xd8\xde\xab\xee\xf7\xfb\xf7\x90\xbe\x57\x3d\x85\xe4\xd0\xc7\x7f\xec\x47\xe6\x04\xa4\x27\x8a\xeb\x22\xe5\x41\x72\x16\x98\x6e\x51\x56\x01\x66\x7e\x65\x5e\xd0\xcc\x02\x32\x0f\xbb\x79\x5b\x1e\xff\xb9\x22\xb5\x7f\xf8\x12\xe7\x1f\x2d\xfb\x13\x72\x52\x3b\x83\x33\x5f\x4e\x8b\xd9\xb3\x48\x26\xb6\xdf\x63\xa3\x70\x6c\x4b\x4b\xcc\xb8\xdb\x18\xc2\x39\x9b\x9d\xaa\x77\xb3\x34\xa0\xf3\x3e\x26\x0b\x2a\x0b\xfc\x3e\xb4\x6d\x9e\x9a\x79\xd1\x3e\x80\xd5\xd3\x7f\x4a\xd5\x89\xca\xc0\xc3\x3d\x05\x93\x02\x8e\x86\x06\xc5\xf4\xbc\x9f\x78\xf3\x80\x4f\xf0\x13\x81\x52\x4a\xd9\xee\xac\xe0\x32\xc1\xd6\xc4\xd0\xed\x15\xc1\xbf\x05\xcd\x09\x0d\x5b\xda\x42\xac\x85\x56\x63\x79\x85\xc7\x82\x6f\x09\x57\x45\xef\x5c\xef\x1a\xa2\x2c\xbc\x11\xb9\x64\xcd\x95\x10\x8e\xb0\x2d\xfc\xf1\x4a\xff\xe0\xb1\xa2\xf0\x60\x9f\x82\xfa\xe0\x5c\x51\x5a\xd0\xc4\x7c\xd9\x60\xba\xe8\x8c\x5f\xeb\xdf\x79\x40\xa1\x8c\xde\x40\x9e\x0f\x2f\x95\x8a\x7a\xd5\xea\xb3\xcc\x36\xd2\xff\x96\xf4\x79\x90\x72\x10\xe3\x0b\x28\x7d\x7c\x70\x69\x2e\xc6\xa2\xaf\x43\xc9\xdf\x23\x79\x77\x75\x2e\xca\x19\x02\xf9\x16\x56\xc5\x63\x6a\x3b\x86\x2d\x74\x75\xb8\x6c\xa9\xd7\xfc\x3a\x27\x27\xe0\xb8\x73\x4b\xfd\xf2\x29\x13\xc7\x59\x86\xa5\xdf\xd6\x4c\xae\x9b\x39\x29\x51\xe6\xda\x99\xf1\x8a\xeb\x54\xd2\xde\x96\x09\xe3\x6e\x1f\xbd\x99\x71\xfd\xd4\xab\x68\xfe\xcd\x98\xec\x96\x63\xfe\x11\xc7\x9b\xf9\x33\x57\x1c\x7e\x14\xe1\xd1\xdd\x6f\x26\x75\xf7\xd1\xc8\x17\xdd\xeb\xb2\x2a\xb6\xb9\x47\x65\xf5\xa8\x65\x68\x6c\x0e\x8b\x3a\xd3\xb3\x6c\xf2\xef\x0d\x5b\xa3\x2a\x7a\x7a\x52\x17\xae\x49\x8d\x4e\x14\x78\xa6\x28\xae\x3a\x1a\x55\x20\x38\x9d\x98\xb2\xec\x72\xf4\x58\x61\xbf\x84\x0b\xf9\x53\x22\xdb\x85\x99\xb1\x51\x4b\xb7\x44\x7a\x09\xaf\x44\xf9\x2c\x5a\x11\x59\x2d\x6c\x89\x28\x5e\xf0\x29\xd2\x5e\xa4\x13\x66\x34\x4f\x23\xd2\x48\x14\x15\xbc\xf9\xef\x3c\x90\x63\x29\xac\xee\x55\xe3\x17\x03\xc8\xef\xd9\xee\xb1\x78\x7c\xfe\x2b\x28\x7d\x38\x88\x29\x0d\x62\xcd\x95\xf4\x49\x91\xe6\x82\xac\xf5\xa3\x90\xfc\xcc\xe6\x17\x63\xbc\x65\x04\xbf\x92\x37\x59\x19\x47\x8f\x52\x78\x9f\xba\x36\x95\x9d\x65\xf6\xb3\xfe\xe6\xb2\x06\x2f\x43\xc7\x9a\x9b\xc7\xe6\xef\x8a\x5e\x13\x72\xa9\x2c\x79\x7a\x46\x7a\x76\x72\x50\x49\xfe\x54\x66\x9e\x59\x46\xc1\xbe\x8c\xb4\xef\x7b\x5c\x67\xbc\xdc\x4e\x4b\x61\x5d\xb6\x9d\xc3\xdd\xd4\x9d\xe4\xd4\xd0\x34\x4f\x76\xfd\xd6\xf1\xe5\x9d\x1f\xe6\xa7\xae\xe2\x27\x72\xbb\x4a\x67\x57\x2d\x5b\x9b\xb8\xba\x3b\x7a\x46\xfc\x92\xee\xc4\xb2\xee\xc6\xcc\xba\x45\x47\x12\x27\xf6\xf8\x4f\xcd\x5b\x60\x34\xfe\x5e\xcf\xe3\x49\x13\xe6\xbe\x1b\xaf\x2c\x08\x4a\x09\xcd\xd5\x19\x57\x29\x28\x4a\xaa\x9b\x9d\x9b\xe0\x24\xd4\x89\x7f\x35\xf3\xeb\x38\x96\x90\x1a\x1f\x3a\xf3\x67\xbc\xa1\xb0\x28\x66\xe4\xf4\x8e\xb1\xbb\x84\x6f\x22\x75\xb3\x4e\x8c\xe5\x89\xf4\xc2\xc8\x5b\x53\xa3\xc8\x79\xaf\x7e\x5d\x96\xcc\x59\xa4\x4b\xc6\xeb\xd6\x22\xd6\xb8\xba\xbe\xdf\xff\x5c\xc9\x7d\x6f\x69\x7f\x98\xc2\x12\xb1\xee\x3a\x44\xbe\xf7\x3e\x70\x70\xba\x02\x8b\x42\xf9\xe0\xb8\xdf\x4a\x37\x45\x79\xcc\x33\xa7\x5d\xe9\x74\x47\xa3\xe2\x5b\x3a\x5b\xb9\x2e\xf7\xb8\xc1\x17\x96\xae\xb3\x09\xf5\x09\xb8\x71\x44\x7d\xd9\xd6\xe4\x17\xe3\x97\x6f\xd1\x9e\xd7\x3c\x67\x71\x96\xf3\xca\xee\xd9\xbc\x4d\xab\x66\x2f\x5f\x32\x6b\x46\xd5\xa9\x6d\xf3\xb3\xe7\x19\x67\x95\xd7\x5d\x5f\x74\x72\x56\xf4\xb4\x13\xad\x4d\x4b\x34\xa7\xb7\x4e\x33\xe9\xbc\xb1\xe0\x4d\xd6\xbc\x8c\xf3\x5d\x39\xb9\x6b\x32\x57\x4f\x39\xd0\x1d\x36\xa3\x6e\xda\x86\x29\x1a\xdd\xa5\xd9\xe3\xa7\x7e\x9a\x7c\xa4\x27\x61\xaa\xee\x94\xf1\x93\x0a\x7a\x3e\xa6\xbd\x49\xff\x99\x06\x81\x5a\xaa\xcd\xe4\x77\xa9\xa7\x05\xab\x27\x38\x4d\x0a\x4f\x0d\x10\x3c\x1e\x7f\x36\xf5\x66\x4a\x93\xd0\x67\xac\x61\x6a\x43\x72\x88\xb0\x30\xc6\x72\xe2\xd7\x09\xda\xc2\x77\x11\x6d\x80\xac\x99\xac\xb8\x5f\x94\xc4\xff\x97\x72\x20\xe1\xaf\xc4\x9a\x26\xa9\x4b\xee\x4d\x4a\x1f\x0e\xa0\x68\x8a\x58\x0f\x92\xbe\x66\x87\xa6\xd8\x0f\xfe\xb0\xf4\x64\xf3\x80\xfb\x14\xca\xf3\xd0\x53\x86\xea\x29\xc3\xea\xef\xdc\x3a\x16\x64\x7e\x5e\x27\xaa\xfc\xf4\x11\x16\xef\x3c\xd3\xa8\x64\xf6\xde\x43\xfe\x8a\x5e\x51\x45\x2f\xb7\x45\x24\xb4\xc4\xae\x58\x76\x7c\x43\xc4\xf4\x82\xf4\xcb\x73\xdc\x56\xbf\x5c\xf3\x6e\xc6\xd9\xac\x8c\x95\x09\xa5\xbe\xb3\x3d\xd3\x8f\x16\x38\xdc\x2e\xc9\xdd\x98\xba\x65\x59\xdd\xc7\x85\x73\xa7\xa7\x9c\xcd\xfb\xd4\x75\x6d\xf6\xfe\x94\xd4\xc5\x75\xdd\xd1\x33\x8a\x93\xdf\x2c\x78\xd5\xfd\x3b\x33\x3c\x79\xef\x3c\xb7\x9e\x09\x53\x95\x93\x53\xe6\x44\xf5\x3c\x9b\xb4\x24\xb9\x7f\xce\x17\x81\xc3\x44\xe3\xa4\x9f\x33\xa7\x0b\x8a\x93\x26\x4d\x18\x9c\x5d\x25\xf8\x3e\xee\x5d\xd2\xfe\xcc\xf7\x42\x66\x3c\x2f\x51\x6d\xda\x07\x61\x51\x0c\x7b\x7c\xfd\x34\x45\xe1\xc5\xa8\x8f\xe3\x8b\xa6\x94\x09\x3b\x23\x9c\x01\x75\x65\xf1\x7c\xb6\x95\xf0\x0d\x52\x0e\x64\xc2\x5c\xc9\xfa\x97\xf8\x7d\x2b\xe5\xc5\xba\xcd\x5d\xac\x47\x48\x1e\xe6\xe7\xa1\x93\xe4\x7c\x79\xdf\x74\x9e\xe4\x85\x1a\x16\x97\x93\x1c\x41\xdd\xfe\x6b\x2f\x54\xb3\x29\x94\x6b\x8a\xe5\xc5\x86\x91\x63\x46\x9e\x68\x29\x5b\xc2\x7a\x6e\x79\x7a\x37\xf5\x74\xba\xa7\x8f\x73\xfa\x6a\x56\xa9\x4a\x4c\x5c\xe8\xd9\xd9\xcf\x0e\x36\x66\xc8\x4d\x78\x3b\x75\xf0\x3e\xe1\xca\xc1\xe9\xf4\x14\xf6\x5e\xe5\x23\xce\x19\x6f\xc7\x39\xec\x4e\xad\x7e\x9e\xa5\x11\xa7\xb1\x8b\xf6\x5e\x2b\x4b\x18\x93\xb3\x43\xb5\xbb\x21\xd3\x2f\x26\x7e\xab\x67\x4f\xf4\x94\x92\x58\xd9\x8d\xd9\x3d\xe7\x27\x09\x62\xa7\xaf\x1d\x2e\x18\x9d\x3a\x24\x86\x58\x35\x5e\xb0\x60\xc2\x9a\x58\xb5\xe5\xed\x82\x07\xe3\x2b\x63\x7e\xe4\xd5\x09\x8d\xe2\x0f\xc6\xee\x58\xd4\x28\x8c\x8b\xdb\x11\x43\x2c\x58\x23\x3c\x11\xed\x1f\x33\x69\xde\x02\xe1\xaf\x88\x71\xd1\xfa\xb9\x6d\x22\x9f\x90\x95\xd1\x1d\xb3\x2f\x89\x02\x43\x02\x00\x12\x73\xea\x3d\x0f\x1e\x48\xf6\x01\x89\xff\x3d\x43\xf2\xdf\x2b\xa9\x94\x3e\x1c\xc4\xd1\x63\xe4\xf7\x3f\xef\x1c\xd9\x2f\xa7\x65\x83\xd8\x0f\x6e\x70\xbd\x4e\xfa\xe2\xf7\xfc\xab\xcb\x49\xdf\x67\xf4\x1d\xeb\x61\x33\x29\x94\x33\x27\x6e\x8f\xd4\x6a\x56\x7c\x7d\x60\x71\xf5\x51\xda\x6b\x43\xed\x8d\x1d\x95\xe6\x2e\xaf\xd8\x1b\x16\xbd\xbf\x12\x1a\xd6\xe9\x93\x34\x55\xfd\x82\x7d\xda\xf7\xd8\x5d\x49\x07\xcf\xaf\x5e\x16\x30\x7e\x65\x6c\xf9\x39\xcd\x83\x1a\xc9\x1e\xe1\x67\xce\x54\xdf\x08\x9f\x38\x33\xf8\xe2\xe9\xf7\xef\xe4\x53\x19\x41\xc3\x4e\x05\xf6\x60\xa2\x46\xd0\x91\x92\xf5\x82\x90\x09\xbb\x83\xa3\x0e\x3e\x14\xec\x4d\xa4\x05\x1f\xdf\x3b\x40\xd0\x91\x30\x23\x38\x7b\xa7\x81\x30\x38\x4e\x21\x64\xdd\xd6\xd1\xc2\x19\x31\xef\x43\x66\x14\xea\x0b\x6f\x46\x9e\x0a\x35\x5e\x47\x08\x5f\x45\xbc\x0c\x55\x5f\x13\x20\x52\x0a\xab\x08\x69\x5c\x69\x25\x0a\x0a\x6e\x0b\x39\xb3\xec\xab\x68\x65\x20\x27\x98\xc8\xd7\x17\x55\xfa\xad\x04\xb8\x71\xe2\xf1\x45\xff\x10\xeb\x34\xc9\x7e\xb0\x4c\x32\x2f\xa4\xfe\x67\xe9\xe9\x5e\xfd\xf5\xf4\x02\xe9\x7b\xb5\xb4\x5e\x25\xdf\xbb\x3e\x2f\xac\x26\xf7\xc9\x7b\x27\xef\x90\xfe\x77\xc5\xfc\xfb\xe4\xbc\x3a\x63\xf1\x84\x41\xfa\x3e\x13\x9f\x96\xa8\xfe\x1e\x84\xa2\xd7\x8f\x45\x66\xc6\xea\x6b\x0b\xe6\x3d\x1c\x60\x6f\x6d\x55\x9c\x93\x5c\xbb\x26\x70\x9f\xd3\xf5\x09\x07\x6e\x6f\x48\xa6\x06\xc5\xc4\x5c\xbc\x75\x6e\x89\x7d\xf8\xe5\x90\x1f\x35\x97\xf7\x4e\x8e\x3e\xe8\x6f\x7e\xf3\xf4\xb5\xb9\x71\xfd\xbd\xad\x6e\x52\x5f\x6b\xc6\x9d\xf1\x4c\xad\x3e\x29\x54\x8b\xbd\xe1\x79\xf9\x9a\x9c\x30\x25\x9a\xed\x45\xbb\xa8\x2f\xdc\x1b\xc9\xf1\x8e\x3b\xbd\x51\x58\x1e\xb1\xdc\xfb\x51\xa9\x40\xf8\x3b\x6c\x82\x8f\xe6\x61\x05\x91\x7d\xf0\x7a\x9f\xdf\xfb\xc7\x8a\x3c\x83\xdd\x7d\x79\xbb\x47\x8a\x72\x02\x9d\x7d\xfb\x6d\x5f\x2e\x3a\xe5\xb7\xc9\x77\xca\xd6\x74\xd1\x2d\xdf\x75\x3e\x41\x9b\xae\x12\x23\x3d\x4f\xfb\x4c\xdc\xa8\x4e\x58\x7b\x04\xfe\x5d\x07\xd2\x7d\x60\x71\x93\x58\xb7\xa4\xfd\xfb\xfd\xff\xa6\x89\xc7\xff\xe9\xa1\xb8\x3f\xd0\xcb\x90\x5b\xe4\xbe\x59\x97\x56\x37\xa6\x57\x6f\x04\xd7\x93\xf3\xe3\xdc\xc7\xe7\x7a\xe4\xf8\x8d\x5e\x93\xf5\xdd\x15\xd7\x6c\xae\xf0\x96\x42\x59\x5b\xf3\xee\x95\xbe\x9a\xf2\xd0\x05\x87\xdf\xec\xb7\x95\x35\x60\x4f\x55\x7d\xa5\xee\xe3\xc9\xbc\x14\xb7\xe2\xc5\xaa\x71\x27\x5d\x3b\x42\x65\x9e\xf7\xcc\xff\xe0\x3d\xde\x97\xf5\xfc\xf8\xce\x43\xfe\xa3\xdc\x73\x9e\xf3\x2f\x6f\x08\x1c\xeb\x52\xdb\xf0\xea\xe5\x82\x20\x4d\x67\xbf\x86\x4b\xc2\x69\x81\xda\xce\xf7\x1e\x72\x45\xc1\x01\xc6\x2e\xc3\xee\x0c\x14\x2d\xf2\xf3\xe3\xcb\xde\x18\x23\x5a\xe5\x47\x73\xf9\x76\x65\x93\xa8\xda\xfb\x14\xdf\xf4\x42\xa4\xa8\xd5\x6b\x20\xbf\xf8\xf4\x03\x62\x98\x47\x05\xbf\xf2\xd8\x6a\x82\xed\xb6\xcd\xed\xc8\x91\x7c\x42\xcb\xc3\xc3\xed\xf7\xc1\xd5\x04\xcd\x7d\x9a\xdb\xc2\xbd\xdb\x89\x14\xfe\x1a\xf7\xf1\x3b\x2d\x89\x2c\xfe\x08\x20\xd1\x59\x72\x0e\x48\xe6\xc1\x26\xc9\xf3\xc1\x51\x32\xff\xa6\xf3\xa2\x98\x03\xfb\xfc\xb9\x8a\xe4\xc6\x1a\xb5\xc4\xb9\x40\x0f\xb4\x1e\x90\xb9\x21\x55\xd3\x9e\x91\x7d\x53\x2e\x34\xbf\x26\xfd\xdf\x63\xb4\xf7\x64\x5e\xcc\xee\x13\x9f\x49\x5f\x64\x9d\xf1\xb7\xca\x5e\xcd\x5f\xde\x3e\x4e\x3d\x7b\x88\xea\xcc\xf0\xef\x43\x68\x72\x63\x96\x24\x97\xb4\x0a\xdd\x02\xcc\x46\x86\x7b\x7d\x5d\x1a\x3b\x97\xad\xee\x67\xf3\x35\x71\xf6\x37\xfb\xc5\x6e\xfb\xbf\xde\x2a\x32\x75\xd6\x71\x32\xfe\x7a\xfa\x82\x1c\x9f\xc7\xdb\xf3\xf5\xc0\xb3\x93\xfc\x46\xee\xb8\x56\xfd\xee\x39\x2e\x75\x5c\xbb\xf7\x16\x44\x9c\x73\x04\x37\xbd\x91\x4e\xa4\x3a\x3d\xe4\xfe\x7e\x12\x43\x4c\x75\xba\x2c\xed\xe7\xc1\x5b\x70\xf3\x21\xb1\xd5\xa1\xd2\xde\xe6\xfa\x71\x62\x9b\xc3\x1b\xde\xa7\xcb\x0f\x88\x0a\x5e\xa5\xa3\x6c\x99\x17\xb1\xd5\x31\xc3\x41\xe6\x8c\x2c\x51\xcf\x7d\xec\x30\xe2\xf8\x4d\xa2\xcd\x6e\xa6\x43\xe3\xd1\xd7\xc4\x37\xbb\xd5\xc0\x2c\x09\x0f\xb4\x4e\x72\x1e\x1e\x8e\xed\x55\xa1\xfa\x25\x72\x3e\x7c\xa5\x57\x91\x3c\xc4\x6b\xff\x5a\xd2\xef\x7e\x58\xf2\xe4\x75\xaf\xde\x5c\xfe\x92\xec\x17\x51\x9e\xde\x14\xdd\xab\x27\x6f\x7e\x22\xf5\x40\xe5\x77\xd2\x1f\xdd\xc2\xef\x20\xcf\x8f\x65\xd9\x02\x92\xa3\xc8\x5d\x0e\x28\x8e\xa3\x50\xa6\x5c\x05\x8c\x57\xcb\xdf\x8e\x37\xc2\x7b\x07\x37\xcd\xdb\x01\xed\x90\x0b\xd7\x36\x6b\xf6\x48\xc4\x95\xec\x2d\x34\x19\x27\x47\x14\x6e\xb4\x66\x54\xd9\xb5\x63\xfa\xa9\x9f\xcc\x22\xf6\x00\xc4\x3d\x78\xc0\xfa\xc5\x3a\x8c\xdc\xef\x6d\xcc\x8b\xac\xf1\x02\x27\xf8\xd9\xe8\xb2\xfc\xbf\xad\x03\xcb\xa6\x8d\xf9\xb8\xe5\x2c\x9c\x19\xaf\x99\x9f\x5e\xd5\xc2\x99\x71\x9e\x15\xfe\x74\x15\x78\x36\x32\xb6\xda\x0f\x72\x40\xb5\xf9\x64\xeb\x7c\x27\x1b\x5c\x1b\x1b\xdb\xa5\x55\x75\xe0\x33\x4a\xd8\xbe\xd7\xce\xc0\xd1\x46\xdd\xb6\xf4\xf2\x1d\x44\xd1\xed\x39\x5a\x65\x49\xf0\x62\xec\x05\x56\x8e\x10\x8f\xff\x80\x9d\x58\xcb\xc9\xf9\xff\x8d\x53\x2d\xce\x41\x3a\x21\x1e\xff\x93\x3c\xf1\xf7\x7e\xab\xee\x35\xc9\x0d\x5e\xf5\x6f\x21\x7d\xe1\xb3\xe3\xda\xc8\x7f\x57\x3c\xb0\x83\xe4\xc7\x76\xcc\xe8\x21\xff\xbe\x76\x04\x0e\xf6\xea\x3c\x13\x89\xef\x99\x08\x0c\x5e\x4d\xa1\x24\x8d\x07\x0c\x66\x0c\x33\x8a\xa0\x03\x76\xb1\xa3\xdb\xbd\x77\x03\x81\x6f\xf5\xba\x5d\x3d\x80\xc9\x7c\x93\x64\xfb\x8d\xf8\x9e\xbf\xd8\xec\x23\xbb\x1d\x4f\xf7\x16\x5b\xda\x33\x9f\xe3\x46\xf9\x2c\xab\xdd\x8c\xdd\xa8\x7d\xbc\xd8\x4a\x85\x2e\x44\xf3\x27\x25\xcb\x4c\xfa\x6d\x00\xcd\x66\x8b\x69\x9b\x05\x3b\x01\xa3\xb9\x34\xaf\xef\x07\xf1\xdb\xd8\x9b\x46\xf9\xa8\x85\x2f\xc6\xfe\x34\x8d\x37\xf7\xf0\xd6\xf8\x38\xad\xa6\xe1\x2c\xea\x4c\xea\x69\xdf\x1f\x7d\xc7\x5d\x93\x47\xb4\x8e\xda\xd9\xa8\x33\x49\xa3\x4f\xbe\x9d\x86\xb3\x66\x87\xad\x57\x55\xe9\xa3\xd6\x24\x1d\xd8\xad\x28\x1e\x7f\x19\x99\x93\xf4\xbd\xfc\x06\x99\xf7\xd3\xf4\xe1\x01\x59\x8f\xa7\xeb\x25\x1c\x58\xbf\xa6\xc5\xe4\x39\xf0\xf6\x8b\xd8\xff\x66\x7f\x27\xf7\xcf\x92\x4b\x9d\x62\xff\x6f\xad\x98\x0b\xd8\x28\xf1\x33\x97\x24\xf4\xf5\x3d\xe3\x43\x80\xde\xdf\x25\x31\x2c\x40\x2f\x7c\xc8\xa5\x40\x05\x80\x79\x58\xb9\xcc\xa3\xf7\x97\xdb\x4e\xad\x11\x4e\x05\x40\xd2\x0b\xdd\x79\xdc\x27\xc0\xdc\x1e\x43\x7f\xd6\x15\xa0\xf0\x83\x91\x0f\xe3\x08\x70\xf4\x8e\xf1\x58\xeb\x72\xe0\x9a\x8c\x89\x9c\x75\x14\x50\x57\x6a\xea\x4a\x1b\x06\xbc\xa3\x1b\xaf\xa4\x29\x00\x3d\x7c\xc3\xb5\x7f\x72\x0c\x36\x0b\xe5\x00\xb5\x4e\x73\xcf\x9f\x4c\x40\x73\x81\xf9\xea\xcf\x72\x80\xd6\x67\x73\xaf\xa6\x50\x40\xeb\x85\x85\xc9\xcb\xdb\x80\x4e\x9e\x85\x7e\xfd\x67\x40\x27\xc7\x72\xfe\x43\x3b\x40\x6f\x27\x70\x26\x85\x3c\x07\xbf\x54\x11\xe4\x73\x90\xc1\x03\x72\xdc\x0d\x97\x5f\x90\x5c\x64\xed\xcb\x66\x73\x72\x1f\x18\xfe\x95\xe4\x9f\x2e\x85\xff\x26\xd7\xcd\x49\x25\x11\xf9\x3c\xb5\xff\x42\x5f\xff\x73\xb9\xa4\x2f\xca\x2c\x49\xdf\x84\x89\xfb\xc4\x2a\xee\x14\x4e\xa1\x84\xbc\x07\xb4\x8f\x0c\xca\xf2\xda\x07\xd0\x8f\x29\xcc\x70\x3e\x06\xb8\x97\x8f\x86\xf4\x9e\x3f\xfb\x0e\x90\x7d\x5e\xeb\x17\x6b\x05\x50\x50\xa6\xf7\xda\xba\x0a\xd8\x39\x4a\x77\x1f\x8d\x0b\x94\xae\xd5\xdb\x4e\xf5\x02\xca\x33\xf5\x57\x58\x29\x02\x77\x1c\xf4\x8d\x2d\x77\x03\x2f\xd3\xf4\x47\x5a\x56\x00\xdf\xb6\xeb\x25\x59\x2e\x20\xeb\x11\x69\x42\xe6\x5c\x8c\xfc\xa0\xb7\xaa\x57\xe5\xb5\x0c\x65\x3a\xe2\x01\x95\x20\x83\x8f\xad\xe7\x00\x95\x76\x83\x45\x2d\x0d\x80\x0a\x61\xf0\xe6\xcd\x25\x60\x44\x5b\xb7\x52\xe5\x71\x0a\xc9\xc1\xdd\x97\x23\xcf\x81\x71\x62\x0e\xee\xc1\xd4\x16\xf2\x39\xb1\xfa\xda\x37\xf2\xf9\xf9\x4a\xbf\xae\x98\x5e\x3d\xbd\x07\xde\x94\x7f\xee\xc1\x6f\x95\xf8\xda\xab\x94\xfb\xfa\xdf\x19\x12\x5f\x57\x7a\xff\xdf\x5f\xc2\x09\xb9\x2b\x03\x4a\xa0\x50\x9c\x2b\x01\xcb\xe1\xc3\x94\x79\x22\xc0\x65\xa8\xca\x7a\xb6\x0f\x10\xf6\x7c\xe4\x6d\xdb\x50\x20\x7d\x90\xba\x0f\x23\x1a\x98\x77\x45\x43\x99\x36\x1a\x58\x7b\x46\xe3\x90\xd5\x05\x60\x57\x8a\xe6\x0f\xcb\x2a\xa0\x64\x93\x56\x97\x85\x1d\x70\xbe\x43\x2b\x51\x7a\x6f\xdf\xdc\x1f\x78\x9a\xa5\x3d\xc6\x5c\x17\x68\x71\xd7\x4a\x37\x8f\x06\xba\xab\x34\xf6\x19\xef\x20\xeb\xc1\xd2\xfd\xde\xab\xc3\xa9\x5a\x53\x7b\x75\x48\xa5\xdc\x13\x82\x24\x55\xe4\xd6\x74\xda\xf6\xea\x97\x43\x75\x1c\x72\x1f\x0c\x16\xf7\x07\x7a\xb8\xe0\x3d\x79\x6e\xdc\x8a\x6f\x27\xc7\x7b\x35\x58\xbc\xde\xcf\x4a\xf2\x11\x0e\x4b\x7c\xe0\xed\x23\xd0\x37\x07\x40\xa2\xd3\x9b\xc5\x9a\xf2\x48\xac\x11\x12\xff\xf7\x4f\xfe\xc1\x41\x60\x08\x87\x42\xe1\x7e\x01\x4c\x02\x86\xe8\xd8\x3a\x02\xf6\x23\x15\x8c\xe8\x47\x80\x80\x2d\x8a\xab\x68\xd6\xc0\xb8\x56\xe5\xb3\x56\x02\x20\x5b\x66\x64\x8e\xe5\x04\x60\x49\xe0\x68\x47\xf3\x34\x60\x43\xe1\xe8\x76\x73\x0b\x60\xc7\xf0\x31\x4c\xd3\x66\xe0\x88\xdd\x98\x89\xa6\x59\xc0\xd9\x39\x6a\x7c\xd3\xc1\x40\xe5\x72\xb5\xe7\x26\x99\xc0\xfd\xb1\x6a\x4b\x4d\x38\xc0\x2b\x7f\x35\x45\xe3\x73\x40\xeb\x43\x55\x73\xa3\x48\x40\x14\xae\xf2\x49\xef\x11\x39\x3f\xa2\xb5\x67\xf4\xea\xd0\x61\xf2\x3b\x41\x26\x3d\xbc\x39\xf1\xa2\x54\xbc\x0f\x7c\x20\x3f\xe7\xdd\xf2\x9f\x23\xc9\xe7\xa1\x5a\x01\xb9\x6f\x9e\x93\xcc\x77\x69\x1e\xce\x1f\x0e\x46\xa2\x79\x92\x79\x21\xcd\x41\x90\x72\x20\xf1\x92\x7e\x1a\x41\x92\x5c\x25\x97\xe5\x62\x65\x5a\x00\x83\x07\x52\x28\xb6\x6d\x80\x11\x67\xd0\x83\xde\xf5\x6f\x6b\x20\x67\x4b\xdb\x0f\x78\x29\xca\x8f\xb4\x74\x05\x62\xd2\x14\x26\x59\xa8\x00\x93\x7e\x28\xe5\x9b\x47\x01\xb3\x95\x54\xa6\x99\x16\x01\x79\xe7\x54\x3a\x4d\x6f\x03\xeb\xbe\x8d\x6c\x35\xc9\x03\xb6\xfb\x8c\x52\x34\x8e\x04\x0e\x2d\x19\x35\xc6\x78\x1a\x70\xaa\x6c\x74\xbc\x51\x2a\x70\x79\xc5\xa8\x57\x86\x5b\x81\x9a\xab\xa3\xf8\x86\xfb\x80\x27\x07\x47\xa5\xea\x9f\x05\xde\x35\xab\x68\x1a\xf8\x02\xdf\x34\x94\xdf\x1b\xca\xf7\x8e\x5f\x69\x92\xf6\x19\xb2\x1e\x51\x0d\x2b\x3e\x90\x79\x6a\x75\x05\x3f\xc9\xe7\x81\x1b\x51\x22\x92\x03\xfd\xc3\x01\x49\xf6\xb9\x5d\x12\xae\x67\xc3\x75\xc9\x3e\x20\xcd\x43\x91\xcc\x8f\x4c\x75\x09\x07\x92\xdd\x77\x1e\x78\xb7\x88\x95\x97\x2e\x56\xcb\xb5\x40\xbf\x35\x14\x0a\x43\x0b\xd0\xcb\x1a\xd0\x4e\x5b\x0c\x30\xfc\x86\x32\x2c\xdc\x00\xe7\xbd\x43\xb7\x9a\x0d\x05\x42\xec\xe5\x54\x4d\x6c\x80\x71\x67\x86\xab\x99\x0c\x04\xa6\x85\x2a\xb8\x19\xf7\xfe\xd2\xcb\x57\x54\x36\x59\x09\xe4\x9b\xa8\x0c\x34\x5a\x04\xac\x7e\xa9\xac\x67\x58\x09\x14\x95\x2a\xd7\x1b\xca\x01\x7b\x8f\x29\xb7\x1a\xdc\x06\x4a\x9b\x54\x8e\xea\x5b\x02\xe7\xdf\x28\x4f\xd0\x53\x07\xae\xdb\x29\xcd\xd0\xe7\x00\x77\x05\x2a\xa3\xf5\x55\x81\x86\xdd\xca\x65\xba\xa5\x40\xf3\x22\x45\x73\xbd\x5d\xc0\x8f\x24\x45\x93\xfb\xc7\x7f\x92\xcf\x3f\xd5\xad\x62\x1e\xe8\xe2\x18\xf1\xe7\x2d\x95\xe4\x3f\xed\x96\xf0\x0c\x85\x92\x7d\xae\x40\x15\x7d\x78\xb0\x19\x12\x5e\x2a\x55\x92\x87\x12\x1f\xd8\x97\x03\x71\x2b\x13\xab\x6d\x87\x58\xcd\xb6\x02\x94\xbb\x14\x8a\xd5\x19\x40\xf3\x9b\x4c\x3f\xb3\x1b\x80\xf9\xb4\x41\x5d\xc6\x0b\x01\xee\x9b\xc1\x17\x8d\xbf\x00\xbe\xcb\x64\x09\xe3\x1b\x40\x2c\x55\x6e\x88\x41\x07\x90\xb2\x79\xd8\x29\x83\x36\x20\x33\x61\xb8\xac\xe1\x74\x20\xf7\xae\xfc\x5d\xc3\x55\xc0\x12\x05\x85\x87\x86\x73\x80\xd5\x85\x4a\xa3\xf5\xbf\x02\x9b\x7f\x2a\x6e\xd5\xd7\x01\x76\x31\x15\x67\xeb\xe5\x02\x87\x4f\x29\xae\xd7\x5d\x04\x9c\xcc\x53\x1c\xa0\xd3\x0c\x5c\x0a\x50\x38\xaf\xf3\x0e\xa8\xee\xa7\xf0\x4b\x67\x00\x50\xb7\x44\xbe\x56\x37\x15\x78\xa1\xaa\x18\x2d\xe5\x80\x2e\x4d\x16\xeb\x31\xc9\x7e\xb7\x77\x7a\xdf\x73\x40\xba\x0f\x2e\x92\x70\x1f\x39\x99\x7d\xd7\x81\xb4\x3f\x92\x74\x1e\xf8\x49\xfe\xbd\x93\x24\x47\xc8\x46\xb2\x5f\x1a\x49\x72\x84\xf4\x64\x80\xe1\x02\x0a\xc5\xf8\x01\x60\xd2\x3e\xb0\xdc\x30\x0b\x60\x8e\x1b\xc4\xd4\x8f\x01\xf8\x9b\x07\x5d\x37\xd8\x09\x84\x8e\x96\x35\xd2\x4d\x02\x62\x2b\x86\x58\xe8\x3a\x01\x29\xf3\x65\xf5\x74\xd4\x81\x8c\x39\xb2\xa6\x06\x33\x80\x59\xa2\xe1\x3b\xf4\x5a\x81\x45\x43\x87\xbb\xe8\x8f\x00\x56\xec\x90\xcf\xd4\xb9\x0d\x6c\x18\x25\xf7\x4b\x8f\x0f\x6c\x5f\xaa\x10\xa0\x17\x03\x1c\xe8\x51\xb4\xd5\x56\x03\x8a\x13\xe5\xee\x6a\x7f\x07\xce\xcc\x96\xf7\xd0\x3e\x0a\x5c\xf1\x93\x77\xd3\xae\x02\x6e\x66\xc9\xe7\xfd\xcb\x81\x48\xef\xfd\xf7\xcd\x03\xf9\xeb\xf3\x89\x7d\xae\xc1\x99\x2c\xd2\xf7\xd6\x54\xb5\x6f\x90\x59\x08\xe8\xbd\x71\x0d\x1e\x74\x1c\x30\x9b\xe6\x73\x68\x58\x00\x60\xb9\x3f\xc4\x57\x3e\x09\xa0\xad\x89\xb7\x51\x3e\x06\x58\x27\xa4\x75\x8d\xfc\x0e\xd0\x8d\x67\xab\xa8\xb9\x03\xf4\x61\xcb\x83\x35\x7f\x01\xd6\x03\xb7\xfa\xeb\xac\x07\xa8\x86\xc5\x1c\xdd\x22\xc0\x8a\x5f\xae\xa1\xef\x0b\x58\xdc\xbc\x57\xaa\x77\x1d\xb0\xd4\x7b\xd3\x65\x20\x0f\x58\x5c\xee\xd0\xd7\xeb\x0f\x98\xaf\x05\x34\x8f\x01\x26\xbf\x80\x31\x06\xbf\x0f\x98\x0e\x01\xd4\x5e\x7f\xe3\x9a\x52\x01\x8d\x41\x1f\x87\x99\x4d\x04\xb4\xaa\xde\x72\xcc\xae\x01\xda\xc5\x2f\x57\x99\x6e\x02\x34\xcf\x3d\x39\x6e\xf6\x09\xd0\x6e\xbe\xcf\x32\x8f\x03\x74\xa6\xdc\xa5\x98\xa5\x02\x5a\xbb\x6a\x82\xcd\x29\x80\xb6\x5f\xe5\x31\xb3\x8d\x80\x96\xe3\x7f\xe3\x40\x9c\xc7\xf5\xf1\x7b\xa5\xfe\x8e\xc4\xf7\x1d\xd2\x66\xf3\x95\xac\x83\x3e\x6f\xbe\x4c\x26\xa0\xef\xed\x5c\x3d\x68\x17\x60\x36\xd9\xcb\x78\xe8\x57\x80\x3a\x2e\x78\xab\x42\x08\x60\x1d\x15\xe7\xad\xfc\x14\xa0\xbb\xa7\xa9\x8f\x9a\x0f\x30\xb4\x66\xeb\xa8\xbb\x00\xf4\x2d\xcb\x97\x69\x1d\x02\xac\x79\x5b\xa7\xf6\xce\x52\xda\xc0\x62\x03\xbd\x46\xc0\x52\x50\x3e\x50\xaf\x1e\xb0\x78\x51\x1b\xa6\xd7\x0e\x58\xca\xbd\x5d\xa9\xff\x16\xb0\x64\xfe\xce\xd3\xdb\x2f\xad\x83\xe0\xa5\xd9\x4b\x40\x33\xb9\x63\xb4\xe9\x5d\x40\x63\xfd\x97\x53\x66\x31\x80\xd6\x94\xe6\x1f\xe6\x54\x40\x27\xec\x75\x92\x99\x23\xa0\x75\xbf\x61\xbd\xf9\x2b\x40\xf7\xc8\xe3\xb5\xe6\x19\x80\x4e\x65\xad\x8b\xc5\x5c\x40\x8f\x7d\xbb\xc7\x7c\x34\xa0\x7d\xb0\xfa\xb1\xb9\x3e\xa0\x3d\xe1\xfa\x4a\xf3\xc5\x80\xf6\x16\xb2\x0e\x7a\x92\x3a\x48\xee\xfd\xf7\xcd\x03\xf9\xfb\x5e\x5f\xec\xf7\xc9\x17\xd9\xe8\xf7\xaa\xd6\x60\x8e\x48\xe6\x0c\x60\x18\xe2\x78\x69\xb0\x3f\x60\xbe\xc3\xfd\xcd\x30\x2a\x60\x3d\x28\x68\xa2\xa2\x3a\xc0\x88\x8b\xbb\x36\x22\x1d\xb0\x19\x9a\xba\x70\xf4\x4b\x80\x51\x9f\xa3\xab\x9e\x03\x30\xe2\xf3\x6f\x69\x6b\x00\xf4\xd4\xad\xe1\x7a\xe9\x00\xed\x6c\xf1\x0a\xfd\x6e\x80\x5a\x7b\x79\xb0\xa1\x10\xb0\x5a\x59\xd7\x6d\x34\x1a\xb0\xda\xd6\x74\xd1\xe8\x2b\x60\x95\xda\xc3\x35\x28\x02\x2c\x5c\x01\x6d\xa5\xae\xe1\xe6\xc7\x01\xed\x75\xed\x1b\x2d\x86\x00\xba\xc3\x3e\x3d\x37\x3f\xdd\xab\x4d\x1e\x16\x4b\x01\xbd\xc6\x97\x17\xcd\x87\x00\x3a\xac\xfa\x1a\x8b\x1a\x74\xeb\xb3\x1e\x9a\x59\x3c\x45\x97\xfe\xa8\x7b\x26\x96\xf2\xe8\xd4\x57\xaf\x71\xb3\xe0\x01\xba\x7e\x37\x12\x2c\x36\x02\xba\x73\x2a\xa8\xe6\x3b\x00\x6d\x32\x07\xe3\x0f\x07\x22\xd1\xbe\x79\x20\xd2\xfb\x9d\xfd\xbb\xac\xc9\x7c\x67\x29\x0f\xa2\x93\x6e\xbb\x6f\x40\x01\x60\xa4\xca\xab\x1f\x1c\x08\x58\xce\x72\x97\x1d\x86\xde\xf1\x07\xe8\x2a\x8d\x02\x98\x83\xa3\xc7\x8e\x68\x00\x58\x65\x29\x0d\x63\xaa\x00\x56\x48\x0e\x4b\xab\xf7\x69\xda\x7b\x19\x45\x37\x1b\x60\xd8\x6f\x4d\xd2\x5f\x07\xd0\xcf\x1d\x1d\x68\x6c\x0a\xd0\x36\x5c\xfe\x6e\x9c\x09\x50\xe5\xef\xb7\x1a\x6b\x02\x56\x67\x5b\x34\x8d\x55\x00\xab\x1b\x82\x97\x86\xea\x80\xc5\x7c\x40\xfb\xf8\xef\x40\x0b\x0d\x40\x67\x5f\xeb\x0b\x8b\x75\x80\x5e\xfa\x47\x25\x73\x00\xba\x67\xde\x8c\xb6\xcc\x44\x9b\xc1\xa1\x86\x12\xab\x01\x78\x63\xb8\xed\xd1\x78\x2b\x2b\xbc\x32\xdc\x58\x1b\x6e\x19\x81\x76\xfd\x53\xb7\xad\x2d\x16\x02\xba\x5f\xaa\xce\x5a\x6e\x42\x87\xbe\x57\xc5\x46\xcb\x07\xe8\xd0\xb7\xb8\x42\xb1\xcc\x87\x48\xcf\x1e\xff\x85\x03\xe1\xa5\x53\xfa\xf8\xde\x62\x9f\x6b\x00\xd3\xca\x8e\xf2\x4f\x1e\x84\x7e\x0d\x6b\xdf\xc0\x6b\x80\xd9\x47\x6e\x3f\x59\x4d\xc0\x5a\xd6\x55\x67\xf8\x02\x80\x79\xc8\xcf\x43\x59\x1d\x60\xfd\x8e\x5a\x3b\x6a\x14\xc0\x56\x48\x56\x56\x9b\x0e\xd8\x5e\x9a\xa1\xac\xf5\x09\x60\xad\xcc\xf7\xd5\xbb\x05\xd8\x3c\xd8\x32\xcf\x70\x09\xc0\x70\x3d\x7a\xd0\x84\x06\x58\x6f\xbf\x52\x6c\x9a\x08\xd0\x8e\x3d\xda\x6d\x36\x1b\xa0\x3e\xfc\x18\x66\x1a\x09\xd0\x34\xf0\xd3\x38\x4e\xb8\xca\x52\x1b\xd0\xbd\xd8\x7e\xc5\x4a\x1e\xdd\x86\xaa\x9f\xe7\x5a\x79\xe2\xbd\xd1\xc8\xa6\x17\x96\xef\xf0\xc1\x30\xb7\x71\x93\x55\x31\x1e\x1a\x09\xeb\x43\xa9\x4c\xdc\x34\x3e\x73\x7f\x26\x95\x83\x3b\xc6\x6e\x77\xaa\xac\xd6\xe0\xa5\xe1\xf6\x9b\xea\xd4\x2f\xa8\x31\x9e\x5b\xd9\x49\x3d\x83\x07\x46\xa5\x57\xfc\xa8\x67\xf1\xdc\xf0\x69\xb9\x83\xe5\x2d\x08\xf5\x48\xea\x55\xca\x81\x48\x73\x82\xa4\x3e\x9f\x78\x1d\x48\x7d\x1e\x39\x2b\x8b\x06\xb2\x0e\x4e\xd6\xe3\xfa\xbf\x03\x8c\x36\xd2\xf3\x06\xc5\x03\xd4\xc3\xec\x84\xa1\x15\x00\x43\xdf\xf1\xe5\xf0\xeb\x80\xed\x6c\xaf\x7b\xca\x69\x00\x3b\x3e\x7c\xe7\xa8\x68\x80\xa3\x9d\x54\xa1\x3e\x10\xb0\x4b\xca\x0e\xd6\xb5\x01\xd8\x93\xf3\xce\x1b\xfc\x02\x58\x86\x5b\x8d\x8c\xb7\x00\xcc\xa5\x47\x8f\x99\x37\x03\xf4\xe6\x6b\x4a\xe6\x5d\x80\xf5\xfc\x27\x93\x2d\xbc\x01\xeb\xfe\x5f\x2b\xcd\x6f\x01\xb4\x25\x68\x31\x09\xea\x94\xa5\x96\xa3\xc1\xc4\xe8\x6b\x03\xf5\x2a\xae\x9b\x0e\x7f\xdf\x42\xbd\x8b\x0b\xa6\xf1\xaf\x06\x5a\x47\x62\xb5\xc5\xac\x67\x39\xb4\x4b\xd8\x6b\xf6\xf2\x91\x06\xad\x08\xc5\x66\x46\x77\x23\xac\xed\xb1\xdf\x6c\x67\xcd\x50\x5a\x21\x2e\x98\xdc\x97\x72\x71\x57\xab\x69\xda\xb8\x6f\x54\x75\xe9\x2c\xcd\x18\x4f\x8d\x4c\xcb\xce\xd0\x22\xf0\xdc\xf0\x27\xfe\xe1\xa2\xfa\xe6\x60\x48\xe7\x41\x3f\x05\x73\xf2\xef\xf2\x37\x4c\x48\x1e\x44\xf7\x9d\x55\xc5\x80\x24\xc0\x34\x8f\xca\x19\x2c\x07\xd0\xf3\x59\x3f\x86\xdd\xf8\xcb\x07\x71\xd6\x7b\x5a\xab\x04\xfd\xe5\xe6\xec\x87\x27\x9a\x69\xa9\x03\xdc\xb9\x99\x4d\xba\x5f\x00\xbb\xa7\x4b\x04\xc6\xb9\x00\xbb\x78\xcb\x18\x33\x00\xcc\x4d\x25\x7e\x16\xe6\x00\xe3\x49\x45\xbd\xd5\x68\x80\x5e\xff\xf4\x02\x35\x1c\xa0\xcf\x6b\x57\xa1\x0e\x05\xac\xf5\x50\x6b\xda\xf1\x43\x48\x7b\x87\x12\x73\xea\x87\xd9\xd6\x97\xb1\xc8\x72\xdb\xdb\xc3\xd6\xef\x31\xd7\xf2\xc9\x8b\xc5\xf4\x24\x64\x5a\xad\x79\xa4\x65\x33\x08\x01\xd6\xe6\x77\x3b\x19\x39\x98\x4c\x1d\x53\x73\x94\xa1\x89\xf9\x96\x27\x6f\x14\x30\xa6\x62\x91\x65\xa1\x94\x07\x2b\xd7\x67\x68\x60\x97\x79\x78\x99\x3f\xbd\x11\xc7\xcc\xd4\xcf\x9c\xa2\xf7\xc7\x4d\xe3\x3e\xfd\x71\xa4\xe7\x83\xf4\xbe\xb7\x25\xe9\x67\xf6\xe3\x1b\x90\xf3\x40\xfd\xa9\x51\x6e\xbf\x47\x80\xfe\x73\x13\xab\x01\x73\x00\x4b\x0f\x8b\xc4\xc1\xf7\x01\xc6\x0d\x06\x65\x58\xca\xdf\xdc\x1c\x7b\x9a\xab\xee\x88\xb9\x80\x93\x7a\x60\xb6\x5a\x3c\xe0\x58\x93\x30\x45\xbb\x0c\x70\xd4\xca\xa8\x31\xa4\x03\xbc\xc6\xc5\xd3\x7b\x9f\x92\xed\x36\x6c\xde\x69\xd9\x5b\xbf\x0b\x25\x09\xd4\xf7\xbd\xf5\xa8\x3c\x6f\xdd\x01\x30\xbe\xbd\x50\xa2\xab\x02\x8c\xb4\xdf\x2f\x69\xcf\xbb\x1d\x18\x29\x48\xa0\x95\x7f\x65\x33\xb8\x08\xb6\x1e\xf9\x2e\x80\x01\xb0\xe9\x47\x9f\xb7\xd9\xec\x81\x05\x63\xc1\xe3\x71\x4c\x0d\x98\x31\x2e\xd6\x8e\x60\xf1\xa0\xca\xd4\xbb\x25\xc7\x52\x81\x15\xa3\xba\xf2\x13\x2b\x1e\x6c\x86\xcb\x1f\x0e\x6a\x29\xeb\x10\x02\xad\xab\xca\x66\x33\x27\x62\x96\x55\xf1\x69\x45\xe6\x18\xac\xb7\xb8\x71\x6c\x25\xcb\x15\x2b\x2c\xb7\xfc\xbb\x1e\xfe\xf0\x0f\xe4\x3a\xa0\x74\x19\x92\x9c\xe0\x60\x6d\x3d\x32\x37\x49\xbd\x5b\xf7\x5c\xbf\x13\x80\xc9\x30\xc3\x3b\x03\x15\x01\xeb\x10\x13\x8f\x41\x2f\x01\xf6\x36\xda\xbc\x61\x16\x80\xa3\x8b\x6d\x83\xa2\x36\xe0\x5c\xe9\x64\x31\xf2\x0c\xe0\xca\xf7\xbd\xaa\x11\x0a\xf0\x77\xc4\x96\xea\x76\x00\xce\x87\xa6\x28\x18\xcb\x00\x4e\x43\x16\xa9\x5a\x26\x01\x3c\xb9\x4d\xbf\xa9\x2f\x00\xce\xde\xd2\x02\xc6\x55\x80\xd5\x59\xf5\x88\xe9\x0f\x30\x27\xbf\xb6\x65\xf6\xce\x93\x39\xa2\xdd\xcc\x3d\xed\xdf\x99\x61\xe8\xc7\x8a\x6e\xf6\x65\x85\x10\x2f\xd9\xab\x9e\x8f\xb0\x8d\x24\x6e\x71\x5e\x3e\x5e\x68\x9b\x4a\x34\x70\x86\xdf\x6b\x64\xab\x13\x0d\x1c\xbf\x1a\x39\xf6\x22\xa2\x99\xfd\x40\x9a\x8f\x75\x95\xcb\x3e\x8e\x21\xac\x27\x17\xbe\x71\x82\xa1\xc0\xda\x7c\xf6\x2b\xe7\x12\x54\x59\xe6\x27\xd5\x38\x6b\xc1\xb4\xf1\x2b\x3d\x67\x7b\x00\x99\xd4\x8a\xe2\x00\xb6\x39\xa6\x53\xf7\xe3\x1f\x1e\xc8\x86\xf2\xef\x3c\xe8\xaf\xab\xed\x4f\x9e\x0f\x5e\x9a\x11\xbd\xaa\x57\xac\x79\xa8\xbf\x27\x60\xc1\xd4\x75\x93\x01\xc0\xd9\x68\x34\x67\xb0\x16\xe0\xf4\xde\x5c\x76\xe8\x40\xc0\xed\x12\x9d\x90\x6f\x06\x3c\xc7\xf0\x88\x91\xcb\x00\x4f\x45\xcf\x45\x9a\x67\x01\x0f\xf7\xc8\x4b\xfa\x2f\x00\xb7\xa4\x34\xae\xe9\x19\xc0\xf9\xfb\xfc\xf5\x56\x5d\x80\xa3\x5e\x61\x8b\xcd\x02\x80\x3b\xb5\x74\x9e\xad\x39\xc0\x5e\x70\xf3\x0e\xc7\x0c\x60\x75\x37\xcb\xdb\x25\x8a\x94\x6c\x15\x88\x72\xbb\x9d\x9f\x8a\xd8\xde\xc4\x0c\x87\x80\x97\xa1\x9c\x26\xc2\xdf\xe9\xd9\xc3\x9f\x76\x2f\x09\x7f\x67\xe7\xbb\x9d\xdc\xa1\x44\xaa\x93\xd2\xcd\x1b\x5c\x7b\x62\x81\xa3\x4c\xc5\x7d\x2e\x9d\x38\x68\x3f\xfc\x72\x7f\x9e\x23\xb1\xd3\xfe\x76\x99\x12\x8f\x45\x5c\xe3\x76\x9d\x29\xe7\x6e\x24\x3e\x71\x66\x1d\xe3\xf3\x96\x12\xbf\x39\x94\xa3\x05\x3c\x5f\x0c\xb7\x5d\x75\x48\xc8\xf5\x06\xd7\x66\xdc\x7e\x53\x5e\x20\xd8\x36\x75\xff\xc7\xd7\x7b\x87\x35\xb5\x7c\xdf\xc3\x47\xe9\xbd\x23\x10\x42\x27\xf4\xde\x7b\xef\x1d\xa4\x0b\x8a\x0d\xbb\xa0\x62\x6f\x58\xb1\x61\x03\x15\x14\x44\x50\x10\x15\x0b\xa0\x80\x28\x08\x2a\xa8\xa8\x28\x88\xbd\x61\x57\xec\x0a\x8a\x90\xb3\xde\x27\x93\xe4\xde\xeb\xe7\xf9\xbe\xbf\xbf\xd6\x13\xae\xb9\xb0\xe7\xcc\xde\x33\x73\xd6\x9a\xb5\xff\xbb\x4f\xe0\xcd\x03\x4a\x6f\x3b\x19\x87\xb5\x6a\xc4\xef\x5e\x4d\x5c\x4d\x94\x3a\x02\xb0\x76\x33\xee\x8c\xb8\x03\xd8\x86\x30\x59\x02\x14\xe0\x59\xae\x65\x20\xa4\x0d\x04\x36\xe9\xe9\x8a\x5c\x00\x22\xa4\xcd\xcf\x4b\x87\x02\x11\xcb\xec\x0d\xe4\xd9\xff\xea\x83\xc2\x18\x31\x13\x0d\xf4\x80\xa0\x4b\x93\xe3\xcd\xa4\x00\x7f\xa9\xa5\xb3\x6c\x26\x01\x5e\xb1\x79\xf7\x1c\xae\x03\x6e\xf1\xc7\x37\xba\x8c\x1b\xfa\xe6\x32\xe2\x8a\xba\x47\xfe\x2f\x4d\xa7\xb3\x2f\x66\x7a\xa7\x7f\x5b\xe0\x44\xd3\x42\xbe\x42\xcf\x4e\xba\x2c\x63\xbf\xf5\x17\xe9\xf6\x72\x53\x66\x3f\x0e\xf0\xea\x08\x73\xdb\xc5\xa6\xfd\x86\x2e\x0f\xb9\x8b\xd2\xf2\x7e\x8e\xcd\xce\xee\x03\xb4\xb6\xef\xeb\xb3\x59\xee\x6d\x74\x94\xf7\x86\x5a\x78\x78\xd0\xd3\xbd\x12\x4f\xce\xf5\xd8\x42\xaf\xf3\x54\x38\x6a\xee\xe9\x40\x17\x7a\x98\x54\x64\x79\x16\xd2\xc7\xdc\x03\x0e\xa9\x78\x04\xd3\xaf\x9d\x8f\x1d\x18\xeb\x11\x4e\xc3\x89\x51\x7c\xc5\xa3\x0b\x82\x8e\x9f\xfe\xbb\x4f\xe2\xf6\x7f\xa0\x28\xe6\x29\x0e\xf2\xef\x7d\x6b\x6a\xc9\x93\x3e\x29\x16\x23\xa4\x48\xbd\x74\x3e\x21\x45\xea\x65\x50\xa9\xfa\x4a\x81\x5e\x20\xf2\xbd\xe6\x5b\xe1\x04\x20\x2e\x8a\xf5\x43\xfc\x3d\x90\x40\x5b\x3d\x92\x0f\x01\x12\xe4\xdc\x87\xd5\xd5\x80\x98\x0d\x61\x6c\xce\xba\x18\xe1\x97\xd6\x63\x35\x05\x08\x1a\x5e\x14\xe9\xb0\xff\xd7\x77\xff\xb0\x6d\xda\x1e\xd6\x5f\x9f\x7a\xff\xa9\xf8\xe3\x67\xd1\x17\xec\xe9\x7e\xe1\x79\x50\xd1\x9b\x66\xf7\xcc\x47\x89\xa1\x6d\x2f\x8d\xdc\xde\xfe\xbe\x14\x1e\x72\x67\x9e\x47\x0d\xdb\x36\x42\xed\xca\x03\xaf\xb3\x6c\x8b\x48\x83\x16\x35\x6f\x59\xf6\xbc\xb0\xec\x46\xca\xbb\x9a\xbd\x27\xd4\xfa\xf4\x67\x9f\x11\xec\x8b\xc1\x73\x4e\x59\xf9\xf8\xb3\xfb\x02\x6b\x8f\xad\xf5\x99\x4b\x2b\xfb\x37\x54\x64\xf9\xf6\xd0\x4a\x01\x9a\x65\x4b\x7d\x53\xe9\x28\x5f\xa1\x03\xfa\x3e\x97\xe9\x65\x5e\xbb\x8a\x46\xf9\xb4\xd2\xa5\x1e\xd9\x85\x93\x7d\xae\xd0\x67\xdd\xcd\x77\xff\xf0\x19\x4f\x3f\x70\x25\xef\x62\x2c\x79\xf3\x41\xbb\x9a\x8b\x5c\xde\x57\x61\xac\xf4\x63\x0e\x1a\x39\x89\x5c\xe0\xa0\xdd\x33\xee\x7b\x4c\xef\xcf\x5c\x3f\x88\xa8\x37\xa2\x84\x1f\x4f\x6e\x65\xac\x11\xf4\x04\xc6\x79\x69\x2d\x12\x55\x06\x26\x64\x98\x58\xcb\x9c\x00\xc6\x1b\x39\xbe\x55\xd3\x00\xc6\x0c\x07\x4e\x32\x10\xf8\xf3\x3b\xb6\x28\xe9\x9a\xdd\xf0\xd7\xf1\x51\x17\x32\xae\x7b\xfc\x78\xcb\x08\xfb\xbe\xfe\x7b\x60\xc8\xb3\xde\xe0\xe0\xfd\xb7\xc2\x8b\x1f\x9c\x0b\x70\xab\xdf\x1a\x33\xef\x0e\xdb\xf7\x43\x57\x71\xdc\xbd\xdb\x3e\x3e\x27\x3e\xdf\x4c\x68\x6f\x2f\xf3\x7d\x37\x9c\x9e\x70\xf2\x5c\xb8\xff\xf5\xe1\xfc\xf8\x13\xa7\xdf\x05\xa4\x0c\xdf\x8b\x9d\x70\x32\x37\x00\x6c\xe1\x98\x4b\xc7\x16\x06\xce\x61\x9b\x46\x27\x57\x0c\x04\x5e\x64\x8f\x8d\x8c\x28\xed\x0b\xbc\xc2\x3e\x14\xe6\x5c\xdc\x19\xb4\x92\x7d\x3e\xd4\x77\x2f\x33\xf0\x17\x2d\x10\x78\x6f\xb7\x64\x90\x0c\x6d\xe5\xbf\x23\xef\x6c\xe0\x79\x3a\xce\x77\xcb\x4e\xc1\xc0\x76\x7a\x8a\xcf\xbe\x6d\xb3\x03\x9d\xe8\x3c\x2f\xa2\x33\xe7\xeb\x1f\x54\xc9\xbe\x41\xac\x4c\xc6\x89\xec\x17\xcf\x8a\x5c\xe7\xa0\x65\x12\xf5\x17\xff\xcb\xd7\x01\xf0\xfb\x42\x4c\xb2\x10\x22\xba\xc2\x99\xb7\x15\x88\x5e\x20\x63\xa5\x6e\x83\xa4\x11\x30\x3b\xd9\xf2\xb2\xf2\xf2\x41\xd1\x69\xc6\x5e\x4f\x59\x5f\xfb\x98\xe3\xed\x63\x22\x9d\xa2\x9e\x85\x27\x6f\x98\xcc\x0e\xa8\xbf\x2b\x19\x3f\x6d\x79\x64\xe4\x82\x9b\x4a\x31\xeb\x76\x2d\x8a\x9f\xd4\xbe\x21\x92\x3a\xd1\x3c\xa6\xa4\x55\x33\xcc\xfb\xea\x9a\x71\xd6\x4d\xa3\x43\x92\x5e\x4b\x8c\x1f\x5f\xff\x2a\x64\xf5\xd0\xa2\xf1\x17\x8f\x6f\x0c\x33\x18\x7a\x36\xf6\xee\xe1\x3b\x61\x1d\xc3\xa6\x29\x11\xa5\xb9\xe1\xd5\xc3\xf3\x92\xde\x16\x9f\x0c\xcf\x1b\x6e\x8b\x6f\x2a\xdc\x1b\xfe\x73\x98\x1d\xbb\x77\x8f\x68\x78\x03\xdb\x3e\xc6\x3a\xdf\x22\xbc\x9a\x9d\x1e\xa5\xbc\xfd\x49\x78\x20\xfb\x58\xd8\x83\xad\x22\xe1\x55\xec\xb6\xd0\xaa\x4d\x1f\xc3\x3e\xd0\xd2\x41\xc2\x39\x67\xc2\x85\x69\xdb\x00\x99\xb5\xb5\x61\x33\xe9\xe9\x3e\xe4\x76\x8d\x26\xb9\x6f\x30\xd2\x5a\x9a\x9c\x2b\xe4\x5c\x04\x89\x3f\x0c\x9f\xff\x76\xe6\xf1\xbf\x61\x65\x5c\x4c\x32\xe6\x22\xbf\x2f\x04\xdf\x17\x62\x71\x9e\x10\xd1\x21\xaf\xc8\x66\x94\x0a\xef\x1f\x34\x5e\x9e\x6e\xf4\x52\x31\xe6\x43\xfc\xc2\x21\x97\xe9\xac\xd2\xc7\x2d\x99\x47\x42\xb7\x39\x99\x74\x06\x4f\xb9\x9b\x9a\x10\x32\xf9\x52\xc6\xf8\x43\x73\xaf\xc4\x07\x35\x9a\xa5\xee\xde\x5c\x94\xfa\xbc\x36\x22\x69\x5d\x79\xe2\xc4\x88\xe3\x71\xf1\xe9\x17\xa6\x4d\xb1\xad\x7c\x1e\x2b\xf7\x68\x78\xda\x85\xf2\xe5\xa3\x25\x06\x77\x4d\xef\x2b\x9e\x19\x3b\x65\x48\x64\xca\x8a\x3d\x3b\xe2\x8c\x86\xe6\x4c\xb2\xca\x1f\x1d\xa7\x30\x74\x63\xbc\xda\xb6\x9b\x71\xd4\xb0\x67\xca\x9f\xdc\xd8\xd8\xec\xe1\x9d\x49\x67\x37\x32\xe2\x92\x86\x5b\x12\x05\xd7\x7b\xc4\xb6\xb0\x55\x62\xe3\xd7\xea\xc6\xba\xb2\xe3\xa2\x37\xaf\xba\x3d\xfa\x02\x7b\x67\xc4\xd9\x95\xf2\xb1\x92\xec\xda\x70\xfd\x65\x6a\xa3\x9f\xb2\xdf\x87\x2c\x5b\x16\x10\x53\x4d\xcb\x04\x11\xdd\x20\x57\x07\x23\xb8\x71\xe4\x12\x0e\xea\xee\xe4\xc6\xe5\x30\x89\x8b\xfc\xfb\xdf\xc9\xa5\x5c\x9c\xba\x8f\x8b\xfc\xfe\x28\x2b\x79\xbc\x60\x0e\xf1\x85\xff\x93\xb9\x4d\x54\xae\x8f\xa2\xfa\xcc\xb6\x38\xea\x7a\xca\x25\x3c\xbe\x90\x13\x65\x7b\x47\x6f\xd4\xcd\xe6\xec\x41\xbf\x93\xf6\xe5\x2d\x2a\x8b\x19\xf1\xfe\x41\x61\xd5\x77\x32\xea\xa6\x25\x24\x1b\x54\xfc\x9e\x9e\xb2\x2a\x7c\x62\xfe\xfe\xc8\xf4\xc5\xfb\xbc\xa6\x6d\xdc\xe3\x3d\xd1\xfa\x4c\xe1\xac\xea\x9d\x31\x69\xab\x6e\x17\x65\x66\x6d\x4d\x18\xfb\xfd\x73\xf6\x9c\x7b\x9b\x0c\xc6\xde\xfc\xe3\x30\xfb\xe7\xba\xf3\x63\x5f\xfe\xb9\x36\x7d\xf3\xea\x0f\xe3\x44\x86\xd4\xa7\xfc\x5c\x79\x6c\x6c\xf1\x50\xe1\xc4\x33\xcb\x3e\x8c\x9d\x3c\xd4\x9f\x36\x7f\x49\x5f\xaa\xf3\xf0\xd4\x94\x11\x8b\x3d\x52\xee\x0e\x1f\x4a\xda\xb3\xf0\xc1\x98\xb6\xe1\x5f\xf1\x7a\x0b\xe6\x8c\xb9\xc2\x56\x8c\x7d\x3e\xef\x53\xf2\x15\xf6\xec\xa8\x53\x73\x75\x93\x96\xb2\x9b\xc3\x5a\xe6\x2e\x4a\x5c\xca\x7e\x1c\x4a\xce\x17\xa2\xe4\x3c\xc1\x5c\xc5\x8d\xe7\x1f\x1d\x08\x4f\x07\x94\x20\xc5\x7b\xfe\xbc\xbe\x10\x0b\x79\x3e\x10\x6b\x29\x2e\x6e\x23\xfc\xd5\x2f\x85\xdd\x44\x17\xf0\xe1\xc3\x3e\x63\xd1\x3d\x14\xf5\xa4\x75\xef\x31\xa6\xa7\xe4\xd3\xce\x9f\xbb\xab\xcc\x85\x34\x97\xb7\x7c\xd8\x61\xe7\x61\x65\x3d\xaf\xfa\xd3\x26\xbd\xc8\x6f\x7e\xa1\x65\x47\x57\xaf\x9d\xb0\x31\xde\x21\x4f\x7a\xf1\x86\x05\x6f\xd2\x57\x6e\xd8\x30\x7f\xc3\x0e\xab\x59\x17\xb3\x57\xcf\xb5\x3d\x76\x6e\xae\xf6\x92\xd8\x8c\x35\x57\xf4\xe6\x5b\xcf\x7f\x34\xab\xf0\xd5\xb2\x05\x35\x73\xeb\x67\xde\x1f\x9c\x38\x7f\x7a\x66\xc8\x8c\xe6\x3f\xba\x19\xec\x59\x9f\x67\x6c\xfe\xb3\x75\x66\xed\x2c\xf1\xe9\x5e\x43\x22\x53\x1f\xcf\x9c\x33\x35\x6b\x68\xe3\xa4\xb4\x19\x95\x53\x32\x86\x1e\x8f\x9f\xc2\xd7\x7b\x4c\x6f\x9e\x94\x37\xbc\x21\xf9\xf4\xd4\x9c\x49\xc1\xc3\x37\x12\x9e\x4d\xe9\x9a\x90\xcb\x66\x8d\xee\x4b\xdf\x39\xfe\x03\x3b\x31\x7a\x53\x7a\x6a\x5a\x37\x7b\x5d\xe4\x14\x40\x44\x90\x1b\x0f\x3f\x0f\x3c\x3c\xb9\x18\xcb\xeb\x07\x33\xc5\x86\x17\x3f\xaf\x1f\x02\x9f\x07\xcf\x23\xf7\xc2\x7f\xc6\xec\x23\xe3\xf3\x2e\xa3\x94\xf0\xa2\x8f\xd7\x56\x5c\x22\xef\xfd\xff\x1c\x59\xad\x32\x47\x70\xe2\xc5\x33\xe5\x73\x0c\x42\x55\x57\x9c\xf6\x3f\x50\xef\x64\x65\xfa\xb9\x5c\x74\x9f\x6f\x70\x99\x47\x4a\xfe\xa9\xfc\x92\x94\xed\x51\x5b\xd7\x94\xe6\x06\x65\x7e\x1b\x2f\xbc\x50\x66\xc3\xa3\x4d\xcc\x69\x9f\x33\x4e\xad\x2f\xab\x90\x9d\xb5\x60\xba\xe0\xda\x57\x17\xd3\x32\x5a\xd3\xed\xd7\xe8\x3d\xdb\x9c\xb9\x68\xe2\xe7\xd5\x31\x7f\xec\x33\x66\x4d\xbc\xb4\xe2\xfe\x9f\xba\x19\xd9\x13\x99\xcb\xf6\x0d\x19\x4f\xb9\x31\xc1\x7e\xc9\xab\xa1\xfc\x49\xfa\x13\x82\x17\x36\x0e\xbd\x1d\x6f\x3b\xfe\x60\xd6\x8b\xe1\x98\x54\xe6\xf8\xe2\xb9\xcb\x86\xb7\x24\x5f\x4d\x33\xce\xbc\x31\xdc\x1f\x3f\x3e\x6d\xe6\xec\x2c\xb6\x5a\x6c\xe3\xb8\x93\xb3\xcd\xd8\xee\xa3\xd5\xc6\x75\x4e\xf7\x65\xaf\x8a\xec\x19\x27\x3f\xed\x02\xfb\x50\x84\x12\xa0\xce\xd3\x3b\x39\xf0\x7c\x0e\xf8\xfc\xf7\x44\x9e\xcf\xfb\x42\x5e\x5d\xc8\x51\xe7\xe2\x6e\xc2\x77\xff\x54\x39\x90\xc0\x8d\xff\x30\xc9\x87\xc7\xce\xc7\x09\x2f\xde\x79\xae\x9a\xe4\xcb\xe5\x31\x75\x46\x32\xe9\x14\x55\xf7\xb0\xb6\x5a\xab\x48\x7e\x62\xe5\x8a\x93\x83\xd6\x59\xfa\x31\x05\xcf\x8e\x65\xfa\xd6\x3b\x4a\x6f\xb0\x2f\xef\x8c\xff\x10\xec\xb6\x80\x79\x80\x31\x23\x39\xa9\x70\xfa\xef\x62\xd7\xf5\x1a\x69\x3d\x13\xe7\xed\x1b\x5b\xb6\x7e\x52\x42\xea\x83\xc2\x8e\xe6\x2d\xe9\x6b\x93\xee\x16\x2c\x7d\x9c\x3d\x25\x30\x21\xa7\x20\xf2\xcf\xfa\xf4\xfa\x84\x3f\x79\x46\x43\x7b\x26\x2e\x48\xf0\xd9\xce\x1c\x96\x1e\x17\x90\x38\x7b\xf3\xcb\x61\xa3\xb1\x69\x89\x93\x72\xde\x0c\xaf\x4e\xfe\x96\xa8\xb7\xb6\x6d\xf8\x76\x42\x57\xc2\xd5\x55\xd7\xd9\x8c\xd8\x23\x09\x9f\x56\x6e\x67\xbb\x8d\xd6\x4f\x78\xb8\x6c\x34\x7b\x51\xd4\xe4\x84\x51\x4b\x74\xd9\x0d\xe1\x1e\xf1\xbd\x8b\xce\xb3\xef\x86\xb6\xc7\xc7\xce\x3f\x4a\x2b\x05\x2d\x05\x2c\xfb\xb9\xf1\x05\xb1\xb8\x38\x8e\x37\xdf\xe7\xdf\xfb\x3b\xfe\x42\x6e\xff\x0b\xe9\x83\x64\x7c\xde\xcd\xe0\xea\x80\x1e\x35\xd6\x90\xf7\x8d\x9d\x9f\x1b\xc8\xb8\x5c\x92\xe5\xea\x42\xea\x72\x5b\x2a\x46\xce\xa0\xa8\x63\xd7\x5b\x5d\xd4\x52\xc4\x75\x8b\xfd\x9b\x23\x4c\x47\x30\x27\xe7\xe6\x36\x5e\x71\xbf\x67\x51\xb3\xcc\xa3\x6e\x6d\xb4\x85\x97\xd2\xb4\x97\xd5\x5d\xe9\xb2\x51\xf3\xd2\x46\x9f\x92\x5a\xed\x13\x1f\x9c\xf8\xf4\xc4\xbe\x12\xbd\xa4\xcf\xa3\x4d\x8f\x27\x9c\x7b\x9b\x22\x18\x99\x52\xe5\xf6\xa0\x28\xe5\x56\x78\xc8\xb1\xfe\xdf\x6a\x29\x4e\xe1\x8b\x2b\x86\x86\xd7\x25\x65\x45\xc8\x96\xa9\x0f\x9f\x4d\x28\x88\xc8\x2b\x3a\x3f\x3c\x18\x67\x14\xb1\xae\x20\x83\xed\x1d\xa3\x1d\x71\x7f\x97\x24\x3b\x3d\x2a\x27\xd2\x7a\x7b\x0d\xbb\x20\x22\x26\x52\x29\xb7\x9b\xdd\x1e\x66\x10\x69\xbe\x29\x88\xfd\x23\x78\x28\xd2\x21\xe7\x24\xad\x10\x14\x1d\x79\x7e\xed\x26\xda\x28\xd0\x3e\xd2\x65\xd5\x57\x3a\xc1\x6f\x27\xe0\xc5\xd3\xbb\x24\x5f\xe0\xd5\xff\x1b\x7f\xcf\xff\x42\xe2\x77\x3f\x70\x9c\xeb\x07\xf4\xce\xe4\xc4\x58\xf2\xfc\x85\xb8\xfd\x21\x6e\x6b\x9c\x27\xbc\xcf\x65\xe9\x16\xa2\xaf\xab\x7f\xdf\xf6\x9b\x83\x47\xc1\xd5\x85\x94\x3e\xef\x34\x55\xfc\x42\x51\x3b\x67\x5f\xdf\xab\xaf\xa0\xd8\xb5\xfa\xc6\x35\x1d\xc7\x55\xac\x84\x39\x8f\xdb\xdd\x42\x97\x38\x8c\x4d\xd3\xb8\xb8\x73\xbc\x8e\xff\x9d\xf8\xe1\xd6\xf3\x2b\xd4\x43\x9e\x47\x36\xb7\x54\xed\xd3\x8c\xc8\x0d\x71\xb9\xb0\xbf\x21\x36\xea\x66\xc0\xa2\xe6\xd7\x77\x43\xa3\x73\xfc\xb6\x37\x1f\xeb\xb7\x89\x7a\xe4\x6f\xd4\xd0\xc3\x8e\x8d\x9c\xe6\xbf\xa1\xb6\x9f\xbd\x24\xfc\x63\xc0\x9c\xe3\x2f\xd9\xbb\xc3\x7e\x06\xec\xa8\x1c\x60\x77\x84\x94\x07\x4c\x3f\x78\x9f\x16\x0f\x2c\x09\xd8\x5e\xf2\x8b\x36\xf7\x7f\x19\x78\xb6\x48\x98\x36\x0b\x60\x04\xae\x29\x58\x4b\x27\xfa\xb6\x07\x7e\xca\xff\x44\x67\xf8\x14\x06\xae\xde\xb1\x8c\x2e\xf6\xfc\x15\xe8\xb5\xb5\x9b\x3e\xef\xa1\x00\xc4\xaa\x71\xe3\x9d\xc5\xd3\x01\xad\xe6\xf5\x47\xd9\x43\xd6\x8b\x81\xc7\x15\xa4\x5e\xbe\xef\xac\x26\xbc\xd6\x13\x8d\xb3\x04\x6f\x47\x72\x7d\x71\x2e\xbf\x6e\x23\x9f\xcf\x2a\x76\x90\x3e\x42\xc7\xf3\x6f\x11\xfe\xe3\xc0\xbd\x1e\x32\xbf\xf2\x0e\x3d\xd4\x16\x5a\x43\x51\x1b\x8c\x1e\xfc\x66\x16\x4b\x5c\x5f\x94\x73\x7f\xb2\xd5\x09\xf5\xb6\xa9\x0a\x77\xed\xfd\x37\x98\x29\x24\x94\x77\xb7\xa5\x48\xbb\xb0\x22\x2e\x76\x2b\x2c\x3e\xeb\xc9\x0a\xac\xec\x3a\xb4\xc7\xc9\xe7\xb8\x8f\xd7\xed\xc1\xd3\x1d\x7e\x75\x1e\xf5\xb7\x57\x75\x67\xfb\xaf\x72\x97\xba\xed\xf0\xad\xcf\xaf\xd2\x9d\xba\x7e\x8e\xf6\xf4\x29\x75\x57\x6f\x6b\xa7\xc7\x7a\x1b\xbb\x0f\x36\x37\xd0\xd3\xbc\x5e\x79\xd8\x36\xf4\xd0\x1b\x3c\x93\x3c\x4d\x6b\x9d\xe8\x5c\xcf\x44\xcf\xe9\x27\x36\xd2\x15\x1e\xa2\x5e\xf2\x47\x42\xe9\x7a\x77\x67\x2f\xeb\xf2\xb3\xf4\x4d\x57\xda\x6b\x67\x69\x07\xfd\xcc\x55\xca\xfb\xd2\xfe\x31\xf4\x3d\xd7\x4b\x5e\x7b\xf7\xda\x42\xde\xf1\x29\x90\x7e\x9a\x1b\x77\x76\xcb\x7f\xf3\x7f\x48\x9c\x9b\xf7\x1f\x1b\x6a\xb9\xbe\xef\x96\x8d\x84\xc7\xef\x8a\xba\x48\x7c\x2e\xda\x77\x5e\x23\xf9\x72\xee\x72\xe7\x04\x0e\x9e\x8a\xec\x21\x7e\x4a\x87\x36\x3d\x24\x3e\x5b\x7b\x14\x9f\x92\x3a\xb1\x61\xfe\xab\x29\x84\xef\xb8\xfc\x4e\x62\xd4\x61\x8a\x9a\x5d\xfb\xc6\xd6\xe8\xa1\x02\x6b\xdc\x88\x57\x17\x3c\xee\xeb\x2c\x8a\xbc\xf0\x32\x24\x7e\xbc\xc5\xe8\xc0\x49\x2f\x97\x66\xf9\xd8\x1a\x7b\x45\xbd\x1c\xbf\xb3\xcc\x21\xdc\xd5\xf6\xa5\xfe\xa9\x2a\xa7\x00\xc7\x6f\x2f\xba\x3b\x17\x3b\xb1\x1d\x56\xbf\xb8\xf9\xb9\xc8\xc9\xc4\xe1\xf6\xd3\xad\x34\xed\xa8\xec\x70\xe4\x5e\x0d\x64\xed\xff\x38\x8e\xbb\x35\x0b\xe2\x0e\x59\x8e\x65\x57\x9b\xa0\x6c\x7f\xc9\x49\xf6\x62\x2e\x34\xed\x43\x9d\xb4\x9b\x4a\x61\x69\xe7\xe9\x74\xb6\x21\x06\xf6\x76\x12\xce\xb6\xb5\xba\xf0\xb4\x5d\xee\x32\xfe\x44\x17\xec\xed\xc6\x39\x57\x1c\x6d\x41\x92\xf5\x35\x17\x97\x8a\x6f\x48\xb5\xde\x05\x2c\xe9\xfd\x6f\xfd\x67\x33\x2b\x6a\x39\xf8\x79\x4f\xcd\x7d\x0e\xf6\xae\x68\x22\x7c\x7e\xcf\xd4\x76\x22\x28\xbb\xfa\xf1\x06\xa9\xa7\xe7\x3f\x74\x91\xf5\xb5\xf6\xe4\x43\xa2\x7f\x38\x3c\xf3\x29\xd9\x4f\x15\x45\xbe\x7c\xcf\xc1\x6d\x3e\xef\x89\x8f\x44\xf6\xf8\x2f\x0a\x1c\xcc\xd4\xfb\xf9\x44\x68\x0a\x45\x4d\x0e\xe9\xdf\xab\x95\x2b\xb6\x37\xde\xb9\xdf\xcc\xe1\xcd\xa8\xfc\xa0\xd1\x3f\x3d\x23\xcb\x75\xd7\x79\x4d\xe8\xf7\x9d\x55\x65\x70\xc2\xf9\x62\x7f\xcb\x96\x1b\xc6\xe7\xec\x6e\x0d\xb0\x8e\x95\x98\xc6\x58\xf7\x0e\x08\x5c\xfb\x68\x36\xd2\xaa\x76\x60\xc6\x87\x02\x53\xa6\xd5\xaf\xef\x97\x71\xd3\xf8\x80\x95\xe8\xfb\x8b\xe8\x31\x0a\xb7\xba\xd0\x5b\x86\xb3\xc6\x5f\xad\x8e\x3e\xc8\xc1\x59\xe3\x4d\x56\x55\xdd\xca\x38\x6f\xac\x67\xbd\xe1\xfa\x22\x9c\x34\x61\x58\xbf\x6a\xbb\x8f\x53\x26\xa2\x36\xd3\x5b\x2e\xe1\x84\x89\xad\x4d\xe5\xb9\x21\xd4\x1a\xdf\xb0\x55\x6c\x48\x45\xad\x71\x8f\x6d\x58\x6d\x1b\x1a\x8d\x03\x80\x6d\x3f\xc9\x38\x94\x97\x13\xfd\xcf\x37\x26\xf7\xf9\xbf\xe8\xe5\xea\xc0\xee\xf6\x5e\x21\xf3\xa2\x63\x69\x27\xa9\x13\xad\x39\xf7\x88\x7e\xaa\x6e\x07\xb7\x5f\xd2\xd1\xe8\x5e\xe2\x9f\x71\x80\xf5\x96\xf8\x03\xe4\x9f\xfa\x4c\x74\x85\x1b\x34\x7e\x14\x73\x70\xb1\x27\x97\x27\x4e\xe7\xdd\x83\x4f\x39\x0a\xa8\x96\x8d\x1c\x15\x61\x07\x58\x9a\xca\x68\x78\x97\x02\x41\x27\x55\xcb\x5d\x95\x81\xc9\xcd\xcc\x87\xf6\x4b\x81\x35\x89\x5a\xb0\xba\x08\x1c\x08\xd1\x19\x6d\x21\x0a\x9c\xef\xd5\x8d\x25\xf7\xf7\x3f\xea\xdc\x37\x53\x03\x7e\x58\x69\x5d\x32\xb5\xc3\x7b\x80\xa9\x6a\x32\xee\xe7\x55\x80\x39\xcf\xc4\xbb\xaf\x06\xd0\xf0\xfe\x47\xe7\x70\xf1\xb1\x38\xa0\xbd\xc3\x54\xab\xa7\x0e\xd0\x9a\x69\x3a\xb6\x33\x0d\xd0\x2a\x32\xb3\xba\x16\x09\x68\x1f\x34\xbd\xdb\x16\x0a\x68\xb5\x98\xdb\x5d\xa8\x04\x74\x92\x80\x43\x5c\x1d\x68\xd5\x69\xd2\x17\xeb\xed\x5d\x6e\xde\xdf\x9f\xc8\xf5\x45\xba\x21\x7f\x3b\xf4\xbf\xf1\x37\x3c\x7e\x4e\x74\x10\x27\x8a\xb9\xbc\xf8\xa1\x6d\x1f\xc9\xb8\x15\x7e\xe2\xf6\x0d\xda\x5a\x3c\x48\xf4\xa5\xab\x63\x41\xf6\x57\x19\x3c\x5e\x33\x65\x01\x17\x23\x9e\x02\x32\x6a\x14\x15\x20\x0b\x98\xf4\x48\x84\xbb\x59\x03\x3e\xf3\x14\x95\x1d\x86\x80\x94\x77\xa3\xaa\xad\xcf\x03\x8b\x15\xd4\x22\x2c\xee\x03\x3b\x7f\x31\xa5\xcd\x02\x80\x63\xc7\x34\x22\x4d\xdc\x80\xd6\x39\x1a\x23\x8c\x83\x81\xbb\x5e\xcc\x39\x46\xad\xc0\xfb\xb9\x8c\x97\x7c\x1f\x03\x3e\x6f\xab\xfb\x7c\x60\x39\x20\x37\x45\x5f\xf9\xe3\x65\x40\x31\x4c\xbf\xe3\x55\x1b\xa0\x2c\xaa\x7f\xf8\xd9\x72\x40\x59\x97\x25\x70\x7f\x15\xa0\xfc\x96\xd5\xd7\x75\x17\x50\x09\x62\x95\xdf\x3c\x02\x8c\x7a\xf4\x6b\xa8\x9a\xcc\xfb\xb7\x17\x9a\xc9\xfa\xff\x68\xd7\x35\xa2\x83\xe9\xf4\xef\x22\x71\x5d\x6e\x7d\x44\x78\xef\x73\xba\x2f\xc9\xcf\xab\x8b\xde\x93\xf5\xf4\xf0\xd7\xaf\xe4\xf3\x7e\xfc\x26\xf1\xe6\x4d\x62\x13\xbd\x0c\xdf\x07\x61\x21\x8f\xff\x4d\xe7\xf1\x7a\xa3\x79\xbc\x9e\xb7\x3f\x20\x14\x4b\x51\x9e\x3e\x80\xc1\x45\xd1\x99\x0e\xb6\x80\xbb\xbd\x4c\x9a\xb5\x1e\x10\xb7\x5e\xee\xb8\xc5\x5e\x60\xd6\x07\xc5\xef\x7c\xdf\x7e\x63\x4f\x60\x5f\x89\x8a\x82\x61\x32\x70\xa2\x4c\xc5\x99\xf5\x15\x68\x89\x1f\x75\xdd\x40\x1f\xe8\x3c\xa6\xb2\xc7\x40\x03\x78\x51\xa7\xa2\xcf\x8a\x00\x06\x8e\x29\xbe\xd5\xcd\xe3\x8c\x87\x4c\x0a\x5f\xe7\xa0\xb1\xf1\xd7\x3e\x40\x5c\x5d\xe9\xd6\x0f\x72\x93\x5d\x53\xef\xed\x27\x40\x72\x91\xe6\x84\xde\x24\x40\xca\x5f\x4b\xf6\xd1\x31\x40\x7a\xe5\x87\x80\x66\x72\x9e\x7c\x6a\x75\x8d\xe4\x7b\xb7\x69\x0f\xd1\xfb\xb5\x7d\x7c\xcc\xbd\xff\xae\xfb\x9a\xf8\x63\xd5\xd6\xf6\xe5\x52\x84\xff\x1d\xd0\x25\xeb\xe1\xb6\x3f\x73\xa8\xff\xfa\xa1\x18\x73\x71\x19\xcf\x07\x84\x7f\xff\x3d\xd5\xef\x6f\xbe\xd3\x49\x0c\x18\x51\x4f\x51\x8e\xeb\x01\xed\xab\x42\xfa\xd6\xa3\x01\x47\x15\x89\x0e\x0b\x71\x20\x72\xa6\xf4\x06\x93\x91\xc0\x44\x1f\x99\x69\x46\x57\x80\xa5\xba\xf2\xd3\x0d\x57\x02\x5b\x07\x14\x83\x59\x0d\xc0\x81\x3d\x8a\xd5\x7a\x34\x70\x62\x92\xa2\xb8\xbe\x14\x70\x5e\x5b\x49\x46\x77\x23\x70\x6d\x8f\xc2\x4a\xdd\x47\xc0\x93\x35\x0a\x25\xba\x1a\x40\xdf\x4e\xb9\x3c\x5d\x7b\x00\x69\x32\x3a\x7c\x9d\x83\xcc\x20\x57\xe7\x20\x68\x04\xc2\x65\x8e\x54\x18\x20\x77\xf4\x84\xd8\x5f\x48\x4f\xfb\xe7\xcb\xaf\x11\x9d\xd3\x9d\x9c\x1e\x12\xdf\x35\x83\xa7\xc4\x17\xe5\x42\xdc\x6b\xe2\x03\x54\xa7\xf0\x85\xec\x1b\x4e\x38\x0d\x90\xfd\x56\xf9\x65\xae\xfe\xab\x60\x19\xfe\xf2\x01\xe0\xfb\x20\xcc\xe3\xf9\x26\xf0\x7d\x20\xe2\x79\x7a\x11\x3f\x1e\xff\x6f\x13\xcd\xd3\x41\x58\x00\x5a\xe7\x04\x17\x99\xcd\x03\x6c\xec\x45\x07\xf9\xf7\xfc\x0d\x33\x80\x94\x4b\x92\xc7\x0d\x1e\x01\x73\x16\xc8\x44\xb0\x16\x01\x6b\x32\x64\x6b\xf5\x16\x03\x3b\x77\xc9\x9e\xd4\x65\x01\x07\x54\x64\xab\x74\xca\x80\x63\xb9\x72\x22\xda\xa5\x40\x7d\x8b\x6c\x8e\xd6\x1b\xa0\x4d\x54\xe6\x8f\x16\x0d\x74\x3b\xca\x8a\x6b\x9b\x03\xaf\x0a\x64\x96\x68\xd9\x03\xdf\xa3\x25\xdf\xf1\x75\x0e\x8c\x23\x1c\x14\x92\x15\x56\xe3\x8e\x0b\x95\x82\x2a\x0e\xde\x73\xec\xe6\xea\x3f\xbe\x3d\x23\x7e\x48\x17\x1d\xdf\x11\x3f\xa8\x86\xd6\xef\xe4\x7c\x75\xb2\x6e\x50\x8f\x83\x15\x3c\x1d\xc0\x3f\x3a\x18\x9e\x3e\x80\xef\x87\xc2\xf7\x41\xf8\xc7\x07\x82\x37\x0f\x22\x79\xfa\x18\x8f\xdf\x3c\xfd\xc3\x66\x2e\x5a\x7c\x01\xd4\xe3\x47\xce\x32\xfc\x02\x98\x7e\x13\xce\x61\x5d\x05\xbc\x85\x45\x75\x59\xa7\x80\x78\x4d\xf1\x5a\xed\x27\x40\xba\xa2\xd8\x1a\x3e\xaf\xad\xab\x08\xe4\x14\x48\x33\x75\x46\x02\xf9\xfe\xd2\x69\xda\x5e\x40\xf1\x18\xe9\x89\xda\x4c\xe0\x88\xb2\x8c\x9a\xe6\x54\xe0\xb4\xb9\xd4\x11\x8d\x28\xe0\x82\xaf\xe4\x4e\x4d\x17\xe0\xe6\x52\xa9\x76\x4d\x01\xe0\x91\x8d\x94\xaa\xc6\x44\xe0\xbd\x95\x44\x02\x73\x37\x30\xa0\x24\x26\xc8\x2c\xe4\x8c\x83\x48\x9d\x58\x0b\x77\x3c\x3a\xdf\xf7\x12\x5d\xd4\x65\x39\x6e\xfc\xe7\xc4\x7e\x90\xbf\xb3\xa6\x62\x98\xeb\x0b\xc6\xcb\xf3\xff\xd5\xc1\xf0\xeb\x00\x5f\x07\xc2\xaf\x87\x13\x79\xe3\x92\xc0\xd3\x09\x05\xcf\xe6\xa2\x33\x0f\x4d\x05\x80\x11\x4a\x14\xa5\xd3\x07\x48\x49\x52\x14\xcb\x10\x30\x2c\x16\xb2\xd2\x89\x07\x9c\xd5\x84\xe6\xe9\xca\x02\xe1\xbf\x44\x5a\xb4\x07\x80\xb4\x11\xa2\xfd\x5a\xe6\xc0\xac\x34\x31\x61\xad\x23\xc0\xb2\x83\xe2\x8f\xb4\xda\x81\x0d\x01\x92\x32\x9a\x2f\x81\x1d\xf5\x92\xc2\x9a\x1e\xc0\x3e\x37\x49\x25\x0d\x7b\xe0\xd0\x1f\x89\xb5\x9a\x93\x81\xea\x03\x52\x9b\x98\xbe\x40\x63\xb6\x84\x36\x73\x31\xd0\xf6\x51\x62\x05\x73\x2a\xd0\x15\x2b\xe1\xc2\x7c\x00\x3c\xaf\x90\xb0\x57\xaf\x05\xfa\xa2\x45\xbb\xd4\xc7\x02\x83\x9d\xc2\x5f\xae\x64\xf4\x11\x1d\x54\xd3\xea\x9f\x44\xff\x54\xc7\xf3\xb9\x39\xca\xcb\x77\xbe\x0e\x86\xaf\x07\xdc\xc8\xf3\xcb\xe0\xeb\x40\xe6\xf1\xfc\x2d\xa6\xf2\x7c\x33\x52\x79\x7d\xd4\xa2\x6d\xb8\xf8\x4f\x3f\x94\x22\x2e\x1a\x8e\xe5\x22\xd3\x03\x10\xbd\x4b\x51\x3a\x67\x01\x3d\x96\x40\x27\x27\x8f\x6d\x8f\x09\xbc\xd7\x7c\x04\x04\xca\x09\xad\xd0\x32\x06\x12\x75\x44\x94\x99\xdb\x80\xc9\x72\xc2\x63\x99\xa3\x81\x39\x02\x22\x32\x1a\x1a\xc0\xb2\xe5\xa2\xc5\x1a\x53\x81\x75\x2f\xc5\x0e\x68\x74\x02\xdb\xc7\x89\x77\x33\xb3\x80\x42\x09\xb1\x41\x8d\xf9\xc0\xa1\x5e\x89\x9b\xea\xc9\x40\x55\x92\xd8\x16\x75\x3b\xe0\x8c\xba\xd8\x6e\x75\x16\x70\xe1\x97\xd8\x21\xf9\x2e\xa0\xcd\x9b\xa2\x18\x55\xc0\x9d\x25\xa2\x45\x8c\x50\xe0\xb9\x8a\xc8\xec\xe6\x70\xee\xf3\xaf\xcf\xc3\x12\x0e\x1e\x4b\xc1\x5f\x3a\x98\x7f\xfc\x50\x8c\xff\xae\x03\x0b\x78\xfa\xc8\x19\xdf\xb9\x38\x41\xec\xef\x79\xc0\xf7\x85\xf1\xe0\xf9\xe9\x58\x45\x71\x51\xbf\x8b\x8b\x8a\x3c\x9d\x8c\xa6\x2a\xa0\xa5\x3b\x72\xb3\xa4\x3d\xa0\xf9\x80\xa2\x98\x56\x80\xe7\x44\x81\x83\xa2\x63\x01\xcf\x3a\x8a\x62\xa6\x02\xa9\x4d\x42\xb5\x52\x77\x80\x71\xdf\x28\x4a\x26\x0e\x98\xf6\x88\xa2\xd4\xbd\x80\x25\x2f\x84\x9b\x24\xea\x80\xc5\xd9\x14\x25\x36\x03\x58\x25\x4f\x51\xea\xde\xc0\xee\x0a\xd1\x4c\xc6\x12\xa0\x44\x59\xe4\xa1\x84\x08\x50\xdc\x47\x51\x92\x82\x40\x65\x25\x45\x31\x26\x03\x8d\xb5\xa2\xcb\x19\xc1\xc0\xc5\x2a\xd1\x58\x11\x45\xa0\xd5\x80\xfb\x5e\x92\xaf\x03\xf9\xbf\xfb\xc2\xfc\xcb\x77\xf2\x79\x1e\xae\x0f\x80\x00\xd3\xd1\x9e\xf0\x7d\x33\x3d\x4c\xc8\x7b\x9c\xe0\x60\x07\xc1\x14\x40\x43\x30\x2a\x43\x28\x08\xd0\x75\x49\xfd\x2e\x56\x0d\xb0\x32\xa7\x1d\x95\x4a\x05\x58\xd2\x0b\x37\xc9\x08\x03\xac\xd0\x9c\x5d\x72\xd9\x80\xbe\xc9\xee\xab\xf2\xa9\x80\xfe\xb9\xc3\x52\x8a\x6f\x00\xdd\x3f\xf5\x3f\x15\xcd\x01\x5d\x95\x6b\x56\x0a\x0d\x80\xce\xcf\x27\x47\x15\x02\x00\xdd\xec\x2f\x57\xe5\x6b\x00\x9d\x34\x40\xba\x0a\xd0\xe8\x00\xc4\x75\x07\xf6\x6a\x96\x00\x92\x4b\xbf\x06\x6a\x8e\x03\x24\xef\xbd\x2b\xe4\x64\x84\xd4\x8e\x17\x7a\x5a\xcb\x01\x99\x6d\x8f\xfd\xb5\x4e\x01\xb2\xfa\x77\x95\xb5\x01\xc8\x9b\x76\x25\x68\x87\x00\x72\x9e\x37\x28\xad\x13\x80\x6c\xe6\x95\x4b\x3a\x6e\x80\xfc\xea\xb6\x50\xcd\x74\x40\x9a\x54\xfb\x7f\x74\x20\x3c\xfd\x03\xdf\x07\xe3\x7f\x74\x20\xfc\xf7\xfb\x7c\x1f\x80\x44\xfb\x0a\x32\x0e\x8d\xae\xbf\xc8\x38\x84\x06\x1a\x0a\xba\x02\x5a\x13\xa2\x46\x0b\x97\x02\xfa\xc9\x29\xed\xe2\x6f\x00\xfd\x9a\xa9\x71\x92\xe5\x00\x4b\x7f\xc1\x55\x69\x36\xc0\x7a\x92\xc3\x92\x1b\x06\x58\xd9\xbb\xe3\x15\x9a\x00\x96\xc7\xe1\x64\xa5\x5c\x40\xef\x78\x43\xba\x92\x36\xa0\xb7\xaf\x23\x57\xe9\x19\xa0\x6b\xf3\x94\xa5\x50\x04\xe8\xe5\xfc\xd0\x53\x78\xc0\x1f\x07\x36\xa5\x75\x1a\x90\x62\xfe\xb8\xae\x95\x0f\x48\xeb\x7c\xfc\xa9\x9d\x02\xc8\xf4\xbf\x9e\xad\x53\x00\xc8\xa7\x3c\x9b\xa9\x73\x1a\x90\x7f\xf6\xe0\xa4\x76\x17\x20\xd7\xd3\xfd\x44\xd7\x0e\x50\xe8\xeb\x7c\xad\x6b\x0a\x28\xf4\x5e\x6b\xd5\x5d\x05\x28\x06\xb7\xbf\xd0\x49\x05\xe4\x8f\xb4\xfe\xd1\x9d\x0d\x28\x10\xf5\x16\xdf\x0f\xe4\x7f\xf5\x0f\xfc\x79\xf0\xb7\x0e\x84\x8f\x7c\x5d\x8c\xfa\x3d\x8f\x99\x02\x0b\x00\x2d\xbb\x80\x01\xa1\x73\x80\x76\x5d\xc4\x7a\x11\x2b\x80\xa5\x99\x3c\x49\x42\x0e\x30\xf2\x4f\x7f\x2c\x43\x01\x06\xe3\xe6\x87\xc8\x5c\x05\x0c\x1f\xaf\x1f\x52\x78\x03\x18\xb5\xec\x6e\x1b\x35\x05\x30\xd8\x76\x78\xdd\x28\x4b\x80\xb5\xe5\xec\xb2\x51\xa7\x01\x96\xca\x8d\xe7\x2a\x8a\x80\xfe\xc1\xe7\x8d\xa3\x8c\x01\xfd\xf5\x3f\x8f\x29\x59\xf2\xc7\xe1\xd7\x26\x1d\x09\x40\xa6\xe1\xab\x94\x2e\x05\xc8\x0b\xbc\xdf\xad\x1b\x03\x28\x30\x5f\xbc\xd0\x39\x08\xc8\xe7\x3f\x1e\xaf\xfb\x0c\x50\xac\xb9\xa7\xa5\xe7\x06\x28\x8d\xbd\x7d\x48\x2f\x06\x50\x5a\x7f\x3d\x47\xf7\x25\xa0\xf8\xf0\xca\x0f\x3d\x03\x40\x49\xff\x52\x8b\x9e\x3e\xa0\xc8\xbe\x70\x4e\x4f\x03\x50\x24\xee\x88\xc1\x55\xff\x77\x3e\xf0\xe7\x01\x3f\x7e\xde\x7d\x5f\x1e\xf2\x75\x31\x7c\x7d\x10\x5f\x27\xc5\x3a\x1b\xee\x27\x56\x0b\x18\x48\x27\x4e\x94\x48\x05\x8c\x7f\xa6\x7b\xc9\x6a\x03\x46\x4f\xe7\x5b\xcb\x3d\x04\x4c\x44\xd7\x3b\x29\x7d\x05\x8c\xd7\xee\x16\x53\x31\x02\x8c\x75\x2a\x4d\xd4\x36\x01\x86\x93\x1a\x93\xd5\x12\x00\x03\xe7\xce\x08\xd5\xdb\x00\xcb\xe6\x45\xc8\xa8\x7e\xc0\x20\x6c\xf0\xfa\xa8\x10\x40\xf7\x31\x20\x7b\xef\x67\xaf\xde\x3a\x40\xa1\xe1\x63\x91\x9e\x31\xa0\xa8\xf6\x46\x4d\x7f\x16\xa0\xbc\xe3\xd9\x5e\xfd\x3c\x60\x94\xe1\x83\x6e\x7d\x16\xa0\x5c\xd5\x7d\x4a\x3f\x11\x18\x25\xda\xa9\xa1\xb7\x17\x50\x7a\x7f\xb5\x9d\xd5\x0c\xa8\xf4\xb6\x45\xe9\xd7\x02\xa3\x9c\x5a\x2b\x58\xd5\x80\xca\xec\xa6\xb9\x7a\x55\x80\xd2\x64\xfc\x47\xff\xc0\xcf\x07\xc7\xd4\xbf\xf9\x4e\x3e\xcf\xc3\xf5\x41\x10\x78\x66\x3a\x8e\xf0\x5d\xa7\x2c\xa7\x90\x71\xd8\xe2\x78\x55\x60\x06\xa0\x93\xe5\xf9\x49\xd8\x14\x30\x50\x08\x3e\x2b\x36\x0b\x30\xb9\x1a\x5f\x23\x2d\x08\x98\x8a\x4e\xca\x96\x2d\x02\xcc\x9e\x67\x85\x29\x19\x01\x26\x6f\xd6\x19\x2b\x17\x01\x26\x0a\xbb\x0a\x54\xea\xff\x33\x0e\x1f\xce\x65\x32\x2c\x01\x43\xed\x5b\x49\x0c\x37\xc0\x20\xf3\x55\x3b\x67\x3c\x0c\x8b\xe8\x1c\x95\x93\xc3\xaa\xac\x69\x80\xd2\x81\x6f\x16\xac\x7e\x40\x45\xe4\x5d\x89\x81\x16\xa0\xaa\xd6\x7b\xc7\xd0\x0a\x60\x78\x3c\x9a\x6c\xa8\x09\x30\x42\xee\xbe\x30\x88\x06\xd4\x24\x6e\x25\x18\x96\x00\x8c\xe1\x8e\x20\x23\x55\x40\x3d\xbb\xed\xb1\x61\x2c\xc0\x50\x68\xdd\x66\xa8\xc5\x39\x8f\x34\xfd\x34\xec\x07\x18\x93\xcf\x89\x18\xce\x03\xd4\x48\x97\xc8\xff\x3f\xfd\x83\xd5\x0c\x2e\x9a\x54\x52\xff\xd1\x41\x88\xe6\x1b\xf9\x91\xf8\x73\xac\xe4\x47\xfe\x01\x34\x6e\xdb\x85\x08\x9c\x07\x0c\x34\xdd\xd8\x22\x2f\x00\x13\xab\xc0\x06\x09\x2f\xc0\x74\x20\x36\x4b\x7a\x0c\x60\xd1\x33\xfe\x95\xfc\x27\xc0\xc2\x69\x6e\x83\xb2\x08\x60\x6e\xb4\x26\x53\x65\x17\x60\x76\x63\xb7\x80\x3a\x67\x9c\x94\x8f\x6c\x62\x26\x03\x26\xc9\xe7\x7f\x6b\xfc\x06\x8c\xb2\x6e\xff\x66\x4e\x06\x8c\xfa\xde\x7f\x64\xd6\x02\x46\x0f\x39\x7f\xf7\x2f\x17\xc3\x93\x80\x9a\x45\xdf\x27\x23\x49\x40\x5d\xf9\xe5\x4e\xa3\x23\x00\xb3\xea\x69\x1a\x89\xf3\xc9\xfd\x5d\x46\x6b\x01\x66\xe1\xed\x66\xe3\x32\x40\x33\x84\xaf\x8b\x6b\xdf\x62\x7c\x14\xd0\xa8\x6b\xbd\xc9\x39\x91\x69\xe4\x36\x2d\x36\x9d\x0c\x68\xad\x39\xe7\x65\xac\x09\xa8\xf7\xd4\x35\x19\xab\x01\xea\x64\x37\xf0\xbf\xfa\x87\x7f\x78\x6f\x1e\xef\x6b\x48\xfc\x0f\x46\xfc\xd0\x53\x25\xf9\x50\xcc\x22\xf5\x94\x79\xc5\xb4\x7d\xe4\xdd\x7f\x75\x31\xc6\xdf\x9d\x21\xa6\x05\x98\xa7\xfa\xb6\x4b\xba\xfd\xab\x17\xb3\x46\x9a\xa7\xe2\x1f\xc0\x7a\x5c\x66\x8a\x4a\x3c\x60\x39\x79\xf5\x78\xb5\x1a\xc0\x62\xfe\x2e\x07\xe6\x0b\xc0\x5c\xf2\x88\xb4\x16\x05\x98\x5a\x36\x3d\xd7\x1a\x03\x18\x9f\xb9\xf3\x48\x73\x3b\x60\x22\xf0\x69\xa4\x66\x26\x60\xdc\x08\xa8\xab\x7c\xdb\x60\x1c\x01\x30\x6f\xbc\xa9\x30\xb1\x07\xb4\x22\x9e\x9e\x35\xf1\x07\xb4\x4a\xef\xc3\x74\x3e\xa0\x53\xd7\x75\xdc\x34\x0b\xd0\xc9\xbc\xd1\x61\xea\x0d\x68\x77\x5c\x89\x35\x95\x00\xb4\xe8\x8b\x06\x66\x0d\xf8\xa9\x6b\xdf\x7c\xdf\xe4\x32\xa0\x79\xba\x71\x99\xd9\x15\xb0\x75\x82\xeb\x6c\x4d\x73\x01\xcd\x1b\xa7\x83\x4d\x8a\x01\x0d\x23\x4e\x9c\xde\xcd\xd4\x5f\xba\x30\x0b\x9e\x8e\x92\xcf\xf7\x71\x79\x4f\x91\x5f\x9a\xc4\xd7\x5f\x21\x46\x97\xf4\xc7\xd0\x39\x6d\x24\x24\x68\x0b\x98\x2a\x59\x2e\x15\xd5\x06\x2c\xca\xed\xc5\xc4\x53\x00\xeb\xd5\x5e\x71\x52\x8d\x80\xdd\xa8\x70\x6b\xb9\x5f\x80\xdd\x60\x6a\x9d\x72\x15\x60\x37\x71\x56\x89\xda\x2c\xc0\x66\x43\x76\x0f\xb3\x1e\xb0\x5a\x9a\x7f\x47\x2b\x11\xb0\x88\x38\xb2\x45\xfb\x2d\x60\xf6\xa6\xc5\x5b\x77\x0a\x60\x7a\xfc\xbe\xb9\xae\x16\x60\x5a\xf0\xfd\x97\xf6\xb3\x3f\xe1\xa6\x1f\x01\xed\x53\x1f\xb4\xcc\x55\xf1\x5e\xff\xec\xb3\x57\xe6\xba\x78\xa6\x4f\x3f\xa0\xcc\x57\xe2\x2e\x6b\x45\x57\x83\xf9\x5d\xdc\x66\x35\x5f\xaf\xb7\x88\xc5\x75\x03\xb5\xf6\x23\x16\xe9\xb8\xcd\x3a\xd4\x3a\xc5\xa2\x04\x3d\xac\xe8\xe6\x09\x16\xe2\x78\xa5\xf7\xba\x91\x61\x5e\x8a\x6f\xba\xbb\xce\x38\x5b\x68\xe0\x9b\xee\xb6\x1a\x17\xf3\x3c\xd0\x3a\x8e\xc7\x9b\xcd\x7f\x00\xda\xe4\xcc\xf5\xbf\xfa\x07\x6e\x1e\x50\x94\xf6\x19\x2e\xaa\x07\x72\x50\xb2\x50\xed\x1a\x99\x07\x15\xcc\xd3\x23\xc5\x01\xd6\x1d\x5d\x0b\x41\x33\xc0\x8c\x61\xdc\x23\xe2\x01\x58\xbf\xb2\x9a\x26\x9e\xff\x6f\x7f\x31\xa7\xd2\x10\x45\x45\x0d\xc0\xd9\x3d\xc9\x44\xa5\x13\x70\xdc\x38\xbd\x5b\x7d\x1f\x60\x1f\xb3\x32\x5e\x6b\x0e\x60\x2b\x96\x3f\x5d\xb7\x00\xb0\x9a\x74\xe4\xa5\xbe\x12\x60\x81\x8b\x52\x06\xae\x80\x79\xd6\xa3\x66\xd6\x0e\xc0\xc2\x71\x30\x88\xb5\xfa\x7b\xb2\x45\x03\x6e\x18\x16\xbf\x1c\xb2\xf4\xc3\x31\xe3\xb1\x0f\xb6\x59\x7e\xc6\x3e\x93\x84\x2e\x39\xab\x6c\xe4\x9b\x74\x5f\x7f\x67\xd5\x84\x3d\x26\x95\xed\x12\xd6\x7b\xb0\xd5\x74\x5a\x4b\xa8\xf5\x26\x14\x9b\x44\x9d\x77\xb7\xae\xc7\x41\xe3\xc7\x0d\x4f\xad\xaf\xe3\x98\x71\x54\xed\x5c\xeb\xf3\x68\x34\x92\x3f\x15\x6c\xad\x8d\x1b\x06\x13\xaa\x46\x59\x3b\xe0\x2e\xab\xa0\x32\xcd\x66\x1a\x6e\x1a\x14\xfc\x77\x7d\xe4\xd7\x43\xfd\x01\xea\x3f\xfc\x3f\x45\x29\x93\x7d\x96\x7c\x9b\x32\xf9\x39\xdf\x0f\xc1\x6c\xb9\xc6\x4c\x01\x0d\xc0\x76\x8b\x7e\xbf\x70\x2a\xe0\x3c\xd3\x6c\x8b\xb8\x19\xe0\xba\xcb\xb1\x89\x73\xca\x75\xf7\xf4\xeb\x50\x3a\x0c\xb8\xe7\xc4\x19\x33\x44\x00\xd7\x8c\x29\x15\x9a\x13\x00\xa7\xe9\xcb\xc5\x74\x63\x01\xfb\xa3\x79\x0b\x59\xdf\x00\x9b\xa1\xa3\xf5\x46\xc9\x80\xb5\xc0\xe5\x75\x26\x41\x80\xe5\xa5\xe7\x0f\x4d\xa6\xb3\xaf\x5b\x1d\xa4\x4b\x4c\x9e\xbc\x5f\x64\xb3\x14\x81\x56\xb5\x8f\x3c\x6c\x5e\xc0\xd7\xea\xee\x6d\x6b\x3b\x33\x58\xda\xa4\x76\x18\xda\xa5\xc2\xd5\xfa\x4c\x9b\x9b\xdd\x09\xf8\x58\xa7\x5e\x38\x63\xef\x86\x00\x6b\x37\xbe\xfe\xe7\xcc\x09\x07\x3b\xc4\x59\xe5\x54\x3b\xd8\x17\x62\xbe\x85\x55\x55\xaf\xbd\x18\x76\x98\x09\x55\x3e\xb6\x6f\xc7\x4e\x33\xbd\x0a\x61\xfb\x31\x38\x64\x52\x56\x36\xdd\x5e\x1c\x75\x9c\x1a\xf1\xef\xfe\xc0\x8c\xd7\x1f\x47\x53\x90\x8b\x8a\xdd\x1c\x94\x5a\x23\xc7\xa4\xfe\xe3\x03\x60\xf4\x9d\xeb\x07\x61\x6d\x21\x4f\x7c\x22\xdc\x55\x35\x5b\x04\x5b\x00\xef\x91\x46\x1d\x62\x85\x80\xdf\x76\x5b\x31\x99\xd9\x80\xef\x53\x4f\x7f\xe5\xf3\x80\x4f\x57\x94\x1a\x73\x1f\xe0\x99\x31\xf1\xa4\x76\x3f\xe0\xb6\x78\xc9\x04\x4e\x4d\x77\xfa\xb9\x53\xca\xc4\xfe\xcf\x7a\x87\xa3\x95\x6f\x2c\xbe\xfd\x6c\xb1\x97\x6b\xc9\xb6\xb9\xff\x75\x85\x9d\xe0\xc3\x31\xf6\xf2\x1f\x07\xec\x5c\x07\x0e\x38\x68\x3d\x93\xb7\x7f\x4c\x77\x3a\xa5\x74\x69\x3b\x4e\xa5\x1b\x9d\x07\xae\x84\x38\x31\xe9\x9b\xce\x6e\xad\x2b\x9d\x15\xe9\x6b\xce\x97\xcf\xbb\x3a\x15\xd2\x03\x8e\x26\xf5\x0d\xce\x13\xe9\x01\xc7\x49\x7c\xff\x9f\x13\x2d\xce\x4d\xd0\xb0\x1f\x75\xa4\xc7\x39\x18\xbe\x36\xdb\x2b\xf4\x9d\x53\x10\x6b\x3d\xab\xec\xa9\xd3\x76\x64\x59\x7c\x2f\x99\xed\xd4\x8b\x15\x16\xe1\x45\xe5\x4e\xae\xd8\x6d\x16\xf3\xdf\x79\xc0\xcf\x03\x2e\xef\x2b\x30\x42\x9a\xec\x9b\x65\x6b\x45\xf2\x39\xa8\xcf\x14\x22\xfe\x72\x7c\x3f\x04\x17\x29\xf1\x46\x0e\x06\xdc\x54\x3b\x31\x72\x23\x10\x7a\x48\xfb\x93\x88\x04\x10\xc1\x30\x6b\x95\x3a\x07\x84\x25\x38\x8b\x28\x89\x00\x41\x8b\x43\x0a\x39\xa7\x26\xff\xe0\x71\xf2\x2c\xc6\xa0\xa0\xcf\xb8\xac\xc7\x66\x95\x5f\x73\x3d\xdb\x36\x3d\xb1\xdd\xfc\xfe\xa1\xbb\x65\xe9\x71\xa7\xe7\xaf\xf6\xb9\x7c\x3e\x3b\xd3\xad\xe5\x39\xe5\xbc\xac\xeb\x87\x67\xf6\x93\x11\x4e\x7f\x3e\x53\x5e\x6f\xef\x68\xb8\xc4\xd2\x56\xde\xd7\xda\x2d\x5c\xef\xd2\x9e\xde\x27\x9a\x2e\xba\x5d\xa5\xe3\xbc\xbe\xd4\x5f\x76\xab\xa0\x37\x78\x24\xd6\x2c\x74\x3f\x4b\x6f\xf2\xc8\x3b\x21\xec\xbe\x93\xae\x76\x9b\x75\x64\xac\xfb\x39\xba\xd3\xe5\x4e\xb9\xaa\x87\x31\xfd\xc2\xf9\x49\x99\x99\xfb\x4b\x9a\x76\x52\x2d\xae\x77\xbf\x0f\xa6\x83\xfe\xbe\x2d\x1e\xa2\x60\xd9\xe7\x16\x14\x78\x8c\x80\x93\x9d\x4f\xfe\x05\xf7\x35\x48\xb6\xbe\x4f\xd6\x83\x8b\xdc\xf8\x19\x47\xb8\x28\x4b\xf6\x09\xe2\xab\x04\x48\x7d\xd4\x51\x1a\x41\x74\x32\x16\xe4\x7e\x2a\xe0\xf8\x96\x8b\xbe\xd4\x88\x2c\x0e\x46\xbd\x17\x23\x7d\x22\xe2\xc1\xf0\x11\xe8\x02\x92\xac\xf4\x19\xe2\xd1\x40\x42\xa2\xad\xb7\xc2\x3d\x78\xc6\x74\xfb\xfe\xd6\xfc\xf5\xbd\x20\xfc\x47\xfc\x03\xb3\x8c\x77\x5f\x43\x47\xcc\x9c\x68\x2f\xf3\xdc\x2b\x90\xbd\xfa\xb0\xdb\x84\x07\x63\xfd\xbe\x14\xde\xf2\xd1\xee\x3e\xea\x33\xa9\x3a\x29\x60\x7b\xa7\xb5\x57\x42\xc7\xc8\xe0\x2d\x1d\x3b\x3d\x9d\x5e\xa7\x85\xfa\xb4\x75\x78\xbe\x65\xcf\x0f\x65\x37\xca\x78\xc7\xb1\x8f\x84\x44\xd7\xf4\x7a\x0f\xb2\x1f\x05\x25\x1d\x5b\xe8\xeb\xc5\xee\x0f\xcc\x3e\xfc\xd9\xd7\x90\xd6\xf2\x9f\x79\x68\x9a\xaf\x0d\xed\xe3\x7b\xa2\x64\xb9\x6f\x22\x3d\xdb\x7b\xda\xbe\x78\xdf\x4b\xf4\x46\x2f\x85\x82\x0a\xdf\x08\xfa\x94\x7b\x47\x7e\xbd\xaf\x26\x7d\xdf\x35\x63\x67\x80\xcf\x1c\x9a\xed\x2c\xb4\xdd\xd1\x27\x10\xb2\x8e\x0d\xb9\x73\x7d\x94\x61\xe4\x40\xde\x9e\x68\xf3\xea\xa4\x42\x36\xc1\x72\x01\x77\x0e\xaa\x8d\xe4\xc6\xcb\xbf\xff\xcd\xf7\x83\xe0\xfb\x21\x44\xe7\x70\x31\xe9\x1b\x17\x27\x66\x4b\x92\xf3\x56\x7a\x8b\xfa\x5b\x61\x63\x5a\x65\xb2\x8b\xe9\x4e\xb9\x8d\x5f\x1e\xa7\x75\xb9\x3b\x68\x0b\xbd\x0c\x49\x5e\x1c\x71\xdc\xca\xed\xfe\xa2\x38\xcf\x09\xc5\x6e\x79\x9d\xd5\xd1\x6d\x8b\x27\xf8\xcd\x6f\x7f\x1e\xb1\x61\xfb\xb5\x90\x8f\x2d\xf5\xa1\xcb\x2b\xeb\x22\x4f\x9c\xbb\x1c\x34\xdc\x9a\x39\x5a\xb0\x41\x29\xd0\xf9\x71\x54\xec\xf7\x33\x53\x02\x8e\x0f\xc6\xc6\x6d\xa9\xda\x12\xd8\x3f\x8c\xd1\x21\x87\x2c\x83\xd5\xd8\x7e\x51\xa7\x4a\x52\x83\x4d\xd9\x1b\xc3\xcf\xef\xd3\x0e\xbe\xc7\xae\x0c\x5b\xb8\xc7\x28\xf8\x0d\xfb\x49\x88\x68\xfe\x9a\xe0\x1f\x6c\x3a\x28\x63\xbb\x67\x70\x05\xed\xee\x6f\xb0\x35\x3e\x38\x80\x1e\xe7\xeb\xb5\xa9\x30\x68\x80\xde\xe1\x95\x9e\x53\x1d\xf4\x8a\x3e\xe5\xb1\x29\x67\x4c\xe0\x30\x7d\xc3\xad\x7d\x6d\x70\xa0\x1d\x3d\xe4\x7c\xee\xdf\x3c\xa0\x28\x01\x82\x32\xbc\x3e\x07\x2c\x1e\xbf\xc9\xe7\x7f\xf9\xf1\x8f\xb6\xa5\xfe\xe2\x41\xa7\x85\x73\x31\x33\x9c\xca\xa6\x28\x7a\xe9\xc2\x65\x8a\x59\x14\xf5\xc5\x32\x6b\x92\x7e\x87\xac\x41\xef\x9e\x8c\x67\x0e\x4b\xb4\xcc\xef\x0c\x4c\xfb\x12\xf8\xdd\xf2\xed\x95\xd2\x09\x93\x92\x4a\xbc\x66\x37\xcd\x4a\x65\x65\x4c\x0d\x4d\x3c\x7d\x2b\xa9\x2c\x47\x3f\x26\xe0\x84\x40\x3c\xab\xe4\x64\x42\x46\xa5\xdc\xe8\x05\x0d\x9b\xc6\xb8\x1e\x7c\x1c\x1d\xda\xed\x99\xba\xe9\x40\x47\x94\xea\x17\x91\xb1\x59\x7b\x6b\xa2\x86\x87\x5d\x52\xf6\xe4\x97\x44\x47\x0c\x57\x26\x2e\xd9\xd6\x13\xdd\x31\xfc\x25\xae\x25\x37\x2e\xba\x91\xad\x3d\xfa\xe0\xc6\x8e\xe8\x6c\xf6\xb4\xa8\x29\x1b\x94\xa2\xe6\xb0\xab\xc3\x7e\xad\xdb\x1b\xd5\xce\xee\x08\xbd\xba\x2a\x2c\xaa\x8a\x96\x0a\xca\x58\xf1\x3a\x6a\x2c\xed\x10\x60\xb0\x7c\x72\xa4\x14\x3d\xc7\xe7\xf2\x92\x49\x91\x93\xe8\x4d\xde\x31\x8b\x62\x23\x14\xe9\x8b\xee\xe4\x6d\x92\x14\xf1\x07\x1a\xf1\x9a\x1b\x8f\x0e\x8f\xd7\xb1\xe5\xe9\x80\xfc\x2f\xf3\xe2\xe7\xe9\x40\xf8\xf7\xa0\x67\xf3\x7c\x40\xb8\x7a\x80\xc1\xfe\x95\x0e\x1c\xfc\xdc\xb8\x36\x4f\x82\x4d\x51\xbd\x39\x6b\x4e\x68\x3a\x49\xde\xb9\x33\x79\xe5\x32\xcb\x12\xe6\xfc\xf6\x2d\x4b\x98\xde\x46\xe6\x85\x67\x97\xce\x53\x8a\xf9\xe5\x71\xa4\x4a\x60\x86\xf6\xe4\x63\x91\x76\xa5\x1d\xe9\xeb\x96\xd1\x89\x54\xe1\xcd\x09\x3f\x77\x53\xa9\xb5\x79\x76\xe3\xde\x9e\xb4\x1b\x7f\x72\xab\x5f\xea\x8c\x6b\x41\x93\xe2\x37\x3d\x18\x73\xf7\xb5\xd8\xe4\x13\x39\xfe\x63\xf6\x0f\xad\x98\x94\xb1\xfa\xed\x98\xfd\x43\xbf\xd3\x1c\x56\x9a\x8e\x49\x18\x9e\x9c\x22\xb3\x7c\x64\x72\xd3\x70\x5d\x62\xdb\xd2\xb5\xc9\xfe\xc3\x9f\xe3\xe7\x2f\x3a\x94\xf4\x8a\xed\x3c\x5a\x67\xfe\xe6\xa4\x3b\xec\x05\x51\x11\x0b\xcc\x12\x97\xb0\xf7\x47\x44\xce\xcb\x4c\x38\xc5\x7e\x1f\xb2\x77\x4e\x44\xdc\x35\xda\xd7\xbf\x28\x73\x47\x5c\x31\x1d\xe3\xd7\x3a\x5b\x2b\x6e\x12\xbd\xd0\x87\xdc\xc2\x1a\x51\xc3\x89\x47\x89\x17\x3f\x9f\xff\xf6\xe6\x7d\x8e\x0f\xe6\xcd\x7b\x9e\x3e\x86\xcf\x03\x2f\x27\xf7\xb9\x7e\xd5\xe4\x90\x7b\x8e\x7d\xd1\x5b\xc8\xbc\x79\x2e\xb7\xc3\x7c\xa4\x3d\x45\xdd\x79\x95\xc7\x50\x8d\x17\xee\x6e\x3f\xbc\x4d\xd2\xe8\x80\x0a\xfb\x6c\xec\x26\x37\x97\x3c\xe3\x3d\xc7\x8a\xd7\x3a\x86\xe5\xb8\x0a\x16\xcf\x58\xae\x39\x4e\x24\x74\xcb\xd6\x8a\xf9\x3e\x73\x7b\x93\x5f\xae\x1d\x98\x33\x69\x8b\xe6\xf8\x4d\xcb\xe7\xcd\x1e\x53\x7e\x3e\x5d\x6c\x61\xf2\x8c\xe1\x0b\x43\xd3\x98\xf3\x8c\xa6\xcb\x3d\x2a\x9a\x3e\x3f\x33\x71\x5a\xe2\xef\x6f\xd3\x8f\xcd\x4e\x9d\xea\x36\x94\x98\xae\x3a\xe3\xc7\x94\xbc\xa1\xeb\x13\x04\x66\x18\xa5\x8b\x0c\xdb\x8f\x1d\x31\xdd\x60\xb2\xe2\xf0\xca\x31\xb2\xd3\xe4\x27\x2e\x1c\x7e\x15\xff\x98\xaf\xf7\x98\x12\x98\x76\x9e\xbd\x30\x4a\x7d\xca\x88\x71\x1b\xd9\x87\xc3\x9b\x26\x9e\x1f\x17\xc7\x7e\x1b\x32\x6f\xe2\xcb\xb1\x8a\xb4\x44\xd0\xca\x09\x87\x52\x13\x69\x9b\x00\x4f\x40\x2c\x96\xfa\x3f\x75\x20\xa3\x8f\xfe\x1d\x7f\x56\x0d\x17\x57\x91\xf1\x19\xb0\xd9\x4c\xee\xf9\xbd\xef\xe4\xf2\x81\x4f\xc3\x0a\x9a\x38\xd8\x35\xa1\x88\xdc\x87\xbd\x3a\xb2\xd4\x52\x61\x34\x45\x35\x6e\x2c\x3e\xa4\xf3\x5d\x61\x7c\xd5\xe7\xc2\x9b\xb6\x77\xf4\xee\xed\xdf\x95\xff\x3a\x40\xc0\xde\x75\xdb\xcc\xad\x17\x93\xa4\x02\x5c\x56\xee\xd8\x60\x35\x4b\x3f\xee\xfd\xbc\x3d\x6b\x25\xd6\x79\x8e\xdd\x39\xf3\xf0\xaa\x81\x12\xf6\x04\xd9\x29\x41\xd9\x4a\xe7\xc4\x27\xb9\x4d\x5c\xb2\xa2\xf8\x9e\xff\x64\xb5\xf1\x1a\x2b\x34\x7e\x3c\x9f\x74\x30\x4d\x67\x69\xff\xd0\x8f\xb4\xd6\x71\x55\x8b\x86\x86\xe3\x52\x30\x4e\x6b\xc1\x9e\xe1\xc3\x49\x55\xe3\xa6\x65\x85\x0e\xdf\x48\xd4\x1f\xbb\x61\x8e\x34\xdb\x6e\xf4\xa6\x54\x64\x54\xb2\x27\x45\x47\xa5\x16\xce\x52\x66\x1f\x88\x48\x4b\xbd\x31\x43\x94\x7d\x2e\x6c\x30\xe5\xea\xd4\x3b\x34\x15\x9c\x3e\x26\x73\x2a\x8b\xb6\x0e\x38\x38\xc6\x7e\x72\x15\x9d\xe8\x17\xfd\x6f\x1e\x38\x0e\x70\x31\xd2\xe3\xef\xf9\x9f\xc5\xab\x8f\xeb\x54\x38\xd8\x6f\xb1\x8d\xab\x7f\x99\xb7\xe7\x2e\x45\xf8\xef\xfd\xe4\xfd\xda\xed\xd6\x83\xa4\x60\xb4\x59\x55\x2e\xe6\x60\x63\x78\x55\x82\x48\x18\x45\x9d\xb8\x72\xec\x9a\x7a\xbc\xe4\xc4\x52\x8b\xca\x75\x66\x60\xfe\xda\x59\x7c\x28\xc7\xb3\xd6\xc2\x6b\x75\x53\xc9\xf1\x98\x1f\x1e\xfd\x73\xa9\xbd\x4b\xa6\xf8\x47\xe4\x4e\x99\xba\xe7\xe0\xaa\x31\x71\x67\xd3\x12\x77\x7d\x2e\x5a\x95\xa4\x92\xdc\x97\x9f\x56\x5f\x3b\xc6\x2c\x61\x54\x9e\xc0\x9d\x95\x29\x62\xb1\x37\x76\x16\x7e\xf5\x1b\xb3\x28\x56\x69\xdb\xa7\xe1\x8b\x89\xf2\xb1\x4b\x36\x81\x2d\x11\xa7\x13\xbb\x70\xc3\x6c\xb6\xd3\x68\x56\xec\x87\x75\x12\xec\xb1\xd1\x0b\xe2\x04\x57\x25\xb3\x77\x47\x3c\x8d\x63\xac\x90\x62\xb7\x85\x6d\x89\x73\x59\x92\xc1\xfe\x15\xa2\x14\x2b\xbd\xb8\x9e\x36\x08\x9c\x1f\xbb\x75\x81\x16\xed\xef\xdf\x32\xfa\xc6\xbc\x46\x7a\xa1\x4f\xc7\xe8\xbe\xb9\x69\xf4\x5a\x1f\x49\xc0\x92\xe7\xf7\x10\xfc\xf4\xef\xfa\xc7\xef\x07\xc1\xed\x87\x30\xb0\x7f\xa7\x27\xf7\xf9\x17\x69\x70\xe3\x2f\x23\xdf\xbb\x2d\x59\x49\x7c\xf1\xdb\x18\x27\xc8\x7d\xd8\xb3\x8b\x6a\xb6\x71\xf0\x78\x4c\x3d\xe1\x35\xcb\xd3\x1b\xb7\xab\x8c\xa7\xa8\x5d\xb7\xeb\x2e\x18\xe8\x28\xe7\xe6\x28\xd5\xae\x70\x5e\x6f\xb0\x73\x41\xc7\xc9\xb7\xe1\xa6\x0e\x97\x27\x3f\x39\xb6\x76\xfc\xf7\x00\x87\x94\x23\x47\x6a\x96\xa7\x84\x96\xc7\x1d\xac\x1c\x5d\x40\x47\x0c\x47\x59\x1f\x76\x3d\xbd\x32\x6a\x28\x6c\x7b\x85\xd0\xad\xf3\xd1\x8f\x42\x66\x97\xaf\xf8\xb4\x2b\x7a\x56\x48\x48\xd9\x44\xf6\xfc\x48\xcb\x50\x99\xe2\x24\xf6\x9e\xf0\x9b\xa1\x01\x85\xc6\xec\xb6\xd0\xd3\xa1\xab\xf2\xaf\xb0\xfb\x83\x97\x87\x7c\xdf\x11\x4c\xdb\x04\xf8\x87\xfc\xc8\x6d\xa5\x93\xfc\xcc\x42\xcf\x6f\x3c\x48\xcf\xf2\x35\x08\x2d\xcc\xb1\xa6\x37\x79\xcf\x09\x7b\xb1\x46\x8c\xde\xee\x6d\x14\xa6\x92\x9d\x4c\xb7\x78\xd8\x85\x2e\x59\x5e\x4b\xbf\x73\xad\x04\x7c\xbf\x72\xe3\xe5\xfb\x02\xf1\xf3\x9f\x1b\xff\xef\xe7\xf9\x84\xef\x7b\x3f\x67\x7f\x35\x37\xfe\x8a\x2f\x24\xfe\xce\x63\xe4\x3e\x7c\xdb\xa7\x5a\xc2\x03\x37\x8a\xd7\x6f\xe0\xe0\xc9\xa6\x26\xa2\x07\x28\xdb\xc1\xf5\x49\xd9\xb3\xb9\xcd\x50\xfc\x3d\x45\x6d\x7a\x78\x59\x48\xf3\xb0\x74\xf0\xd2\xb7\xad\x97\x6d\xf2\x34\x7a\x66\x7c\xbd\x20\x19\xf0\xc3\x7c\xfd\x98\xea\x73\xf9\x29\x9f\xdc\xa6\xc5\x7c\x6a\x7c\xb2\xa8\xc7\xab\x38\xcc\xf0\x6c\xcb\x2e\x3b\x3f\xe3\x80\xd7\x0d\xd7\xaa\x1d\x03\x4c\x7d\xfd\xeb\xbf\xde\x1c\x11\xf0\xd2\x7b\x5c\xbd\xcf\x87\xc9\x01\x13\xbc\x06\xce\x28\xd3\xae\xbe\x5f\xf9\xfd\x3b\x7c\xc4\x8f\xcc\xa3\xe7\x7b\xbb\xfb\x2a\x1e\x3a\x45\x2f\xf1\x36\xf3\x4d\x3d\x60\x4e\x17\x78\x96\xfa\xdc\x29\xd2\xa1\xaf\xb9\x35\xf8\x8e\x2a\x28\xa0\x9f\xba\x6e\xf6\x7d\x96\x7f\x90\x7e\xeb\x2a\xeb\xe7\xbc\x43\x89\x1e\x74\x1e\xf0\x13\xcc\xed\x82\xb2\x93\x98\xdf\x93\x4d\x6a\x60\x3a\x1e\x00\xe2\x1d\x79\xf5\x9f\x37\x2f\xd6\x90\xfc\x18\x6c\xdd\x45\x9e\xeb\xc7\x43\x07\x88\xef\xcd\x93\xce\x4a\x32\x4e\xdd\x92\xd5\x44\xe7\x70\x45\xb1\x81\xe8\x49\xcf\xed\x3f\x4f\xe6\x43\xf5\xca\xd6\x27\x1c\xac\x90\xbb\x12\xc3\xc1\x42\xad\x0e\xc2\xff\x6f\x2a\xbc\x45\xea\x46\xf6\x93\x2e\x4a\x55\x50\xf0\xea\x9c\xd0\x5b\x3e\xa6\x4a\xca\xf2\xe3\xcb\x6e\xc6\x78\xad\xd0\x1f\x15\x33\xf3\x7a\x4c\x42\xb8\xb5\x4a\xc8\xac\x8e\xbc\x2c\x61\xfb\x0b\xbe\x67\x3a\x02\xb7\x5f\x72\xfa\xe8\x91\x7b\x6d\x62\x55\x9f\xcb\x0e\x57\xe5\xab\x6f\xae\xb5\xbb\xa6\x38\xa7\x5c\x5d\xf5\xf6\xb1\xcb\x7d\xe7\x90\xf6\x0d\xf4\x7b\xa7\x5b\xce\xbd\x17\x1e\xd2\x3f\x9c\x52\x9d\xaf\x34\x26\x43\xd6\xa1\xd2\x75\xd5\x69\x25\x9a\xed\x64\xe5\xb2\xe3\xe4\x21\x98\xd9\x0d\xb9\xae\x3d\x7a\x00\x16\xf6\x2a\xae\xfd\x15\x96\x70\xb1\x1b\xe3\x5e\x56\xea\x0f\x73\xfb\x75\xee\x81\xc5\xe9\x08\xb1\x9d\xe7\x36\x75\xaf\x15\x66\x59\xdd\x71\x73\xda\xe3\x89\x15\x96\x59\xff\xfa\xa1\x64\x13\xdd\x30\xad\xc5\xd5\x81\x7c\x36\x2d\x25\xe3\xf0\xec\xc9\x51\x92\x2f\xdd\x7d\x35\x64\xdd\xbc\x76\xfb\x1c\xb7\x0f\xd0\x8d\x16\xd2\x57\xa9\x06\xed\x84\xdf\xaf\xec\xbc\x4e\x78\xef\xe2\x30\x6e\xdc\xdb\xbe\xf6\x90\x7d\xc6\x2a\xcb\x87\xc4\x2f\x20\xcb\xec\xc9\x80\xd4\x58\x8a\x4a\x6f\x7e\x12\xaa\xfb\x56\x2a\x3f\xe1\xc7\xe3\x68\xe7\x68\xc6\xa9\xe0\x37\x8f\x74\xa2\xe3\x0c\x12\x7c\x74\x1e\x31\x67\xe7\x9a\x4c\x77\xad\x7f\xc4\xda\xa2\x62\x1e\xe5\x28\xfc\x70\x7a\xe5\x23\x4b\x55\xdb\xb6\x87\xf6\x6d\x9f\x2c\x2b\x6d\xec\x1e\x7c\x7d\x25\x66\xf1\xc7\x66\xea\xfd\x2f\xd8\x6a\x36\x68\xe3\x7a\xfb\x3a\x0a\xcd\x84\x6c\x76\x76\x64\xa2\xd0\xf4\xb3\x6d\xc7\x65\x2d\x6c\x34\xf7\xb3\xf5\x69\xf6\x41\x99\xa9\x9f\x9d\x5e\xc3\x3b\x14\x9b\x5e\xb1\xab\xa9\xbd\x8e\x03\xa6\xa5\xf6\x91\x27\xea\x71\xd0\x74\xa1\xfd\xf2\xa3\x21\x38\x6e\x52\x6e\x5f\x51\x71\x04\x75\xc6\xbf\x1c\xdc\x0f\x4e\x44\x9d\xc9\x48\xfe\xfa\x07\x70\x9f\xff\x97\xdc\x32\xb2\x6f\x7e\xa1\x5d\x65\x4e\x11\xfd\xc3\x19\x52\x47\x3b\xc2\x9b\x08\xff\x7f\xc1\xfa\x12\x19\xaf\xd3\x2b\xae\x12\x9e\xfc\x68\xf8\x4d\x32\x0f\x0e\x64\xf4\x90\x79\xb3\xcb\x92\xeb\x17\xb1\x61\x1f\xd7\x27\x65\x31\xe3\x15\xe1\xc3\xd3\xd9\xef\xc9\x7c\x4b\xf9\xdc\x67\xa6\xb6\x59\x70\x45\xc4\xd8\x0f\xbd\x56\x7b\xe4\xed\xbd\xd3\x3e\x4c\x0b\x91\x51\x3f\xec\x22\xfd\xe1\xc2\x94\x71\x9a\xfd\x76\xc6\x7d\x41\xeb\x95\x74\x8e\x5b\x56\xf7\xb9\x1d\xfc\xad\xc7\x34\xbb\xda\xb7\xa3\x75\x87\xde\x7c\xd3\x39\x7d\x61\xcf\x2d\x74\xab\x4c\x3f\xf7\xed\x05\xb4\x3d\x4c\x4f\xbf\x18\x0b\x68\xa7\xf2\x75\x0e\x66\x3b\xef\x54\x03\x3a\xf7\xcd\x16\xdd\xe8\x06\x74\xe2\xcc\xe6\x5f\x59\x02\x68\x7f\x31\x2f\x6b\x8d\x03\x74\x1d\x2d\xa6\x36\xa9\xe1\x8f\xee\x57\x8b\xab\x0d\xb2\x18\xd2\xbd\x65\x19\x59\x2b\x86\x21\xdd\x6e\xcb\xaa\x93\x02\x60\xeb\x1e\xe1\xeb\x60\x7e\xa0\x8c\xcc\x83\x57\xfe\x55\xd1\x1c\xbc\xd7\x5d\xd7\xcd\xc1\xeb\x9b\x9b\x49\xdc\x2d\xdf\xdb\x48\x1c\xf5\x3f\xb9\xfd\x72\x8e\xe7\x77\x93\x38\xcb\xfa\xee\x93\x38\x0b\x36\x3d\x21\x79\x93\x7b\xfc\x25\xd1\x91\x65\x9f\x7a\x4b\x74\x56\x73\x8a\x3e\x91\xfc\x49\x13\xfb\x49\xf4\x74\x51\xcc\xc1\x2b\x12\xe6\x14\xe5\xf7\xed\xcf\x02\x03\x11\xb1\x78\xa7\xc3\x43\xde\x5e\x1f\xe4\x83\x6d\xbc\x87\x9b\xc7\x8d\x56\x32\x34\x17\x60\xdf\x59\xb1\x6f\x54\x98\xd1\x7b\x3a\xaf\xd8\x59\xc5\xc6\x20\x0a\x56\xe7\x36\xa9\x38\xb1\x82\x41\x3f\x8a\x1a\x15\xcf\xba\x0d\x0c\xfd\x51\x7c\xc8\x4a\x19\x48\x03\x94\x24\xf5\x0f\x7f\x2a\x04\x94\x64\xf4\xfb\x5f\x6b\x02\xca\x9e\xfa\x5f\x9f\xf4\x02\xca\xfb\x59\xb7\xee\xb6\x01\x2a\xea\x06\xb3\x6f\x1d\x02\x54\x85\x0c\x6e\x5d\xbb\x04\xa8\x66\x1a\x96\xb7\x8d\x01\xd4\xe6\x19\x55\xb6\x1c\x00\x18\x45\x46\xe3\xcf\x7d\x01\xd4\x1e\xf4\xf7\x94\x12\x1f\xbd\xb7\xa6\xc7\x35\x39\xf8\x70\x73\x3d\xd1\x53\xde\x34\x6d\x21\x3a\x97\x4b\x93\xaf\x12\xfd\xd7\xd9\xc6\x4e\x12\xd7\xc9\x85\x3d\x84\xf7\xaa\x28\x7e\x4c\xf6\x1b\x45\xfb\x7a\xc9\x3c\xda\xf1\xe9\x0d\xc9\xaf\x9c\x99\x1f\x49\x9d\x5d\x52\xfe\x7d\x3d\x07\xa7\x0f\xff\x22\xfb\x90\xe4\xfd\xdc\x3e\x2a\x7c\x9e\xcf\x4d\x13\xd0\x9c\x28\xb8\xc6\xfa\x38\xe0\xf4\x4c\x32\xc0\xcc\x00\x88\xbf\x21\x7d\xda\xe8\x12\x30\xcf\x47\x4e\x83\xd5\x0a\x6c\x1b\x94\x3f\xa2\xcb\x06\x8e\xdc\x94\x5f\xa8\xb3\x0e\xb8\xe4\x29\x2f\xa5\x23\x0c\x3c\xaa\x95\x33\xd2\x49\x03\xbe\x1f\x90\xe9\xd0\xde\x48\xfa\x57\x1c\xd3\xd8\xff\xbb\x00\x10\x57\xd3\x18\xfa\x9c\x01\x48\x9c\xd0\xcc\x7b\xb3\x1b\x90\x32\xd1\x0c\x7b\x56\x02\x48\xf9\x68\x3d\xbf\xdf\x0e\xc8\xd4\x6b\x0d\x74\x3b\x03\x32\xd0\xaa\xbb\x79\x16\x90\x69\xd2\x3e\x7a\x35\x11\x90\x1b\xf9\xe1\xd9\xf1\x65\xd4\x7f\x75\x70\x72\xad\x24\x0f\xda\xfd\xb9\xbe\x40\x8d\xe6\xb7\xc9\xf3\xad\x69\xba\xbf\x86\x83\x47\x26\x3c\x23\x71\x96\x2c\x7f\x45\xe6\xc9\xee\xa7\x1f\x6a\xb8\xf3\xe0\x5b\x26\x77\x1e\xf4\x93\xf9\x35\xdf\x92\x2e\xa2\xfe\x73\xff\x3f\x86\xc7\xef\xf1\xef\xfd\xdb\x2b\x03\xea\xd6\x23\x0f\x9b\x1d\x01\x6c\x4b\xc4\x7c\x0c\x17\x01\x11\x2c\xf1\x32\xd6\x51\x60\xda\x22\xa9\x40\x9d\x9d\xc0\xea\x1b\x52\x7a\xda\x87\x81\x7d\x42\xd2\x25\x5a\xbb\x80\xea\x3d\xd2\x83\x9a\x09\x40\x9b\x9e\xd4\x6f\xcd\x60\xe0\xfe\x1a\xa9\xdd\x9a\x7a\xc0\xbb\xd5\x92\xd3\xb5\xf4\x01\xd0\x12\x52\x8c\x39\x9c\x71\x11\xac\x93\x1e\xc1\x1e\x45\xce\x0c\x51\x3f\x48\xc7\x06\xf1\x91\x7d\x84\xa9\x65\x6c\xee\xbd\x00\x88\xb4\x4a\x1f\x78\x4a\x9c\x1c\x18\xa9\x77\x9b\x01\x51\xd1\x67\xef\x1b\x1e\x73\xfe\xae\x9e\x11\x97\x49\xbf\xbc\xf6\xaa\x8e\x36\x0e\x9e\xef\xe4\xea\x01\x4e\xa7\x3d\x22\xeb\xe7\x71\xe6\x4b\xb2\x0e\x96\xbd\x7d\x47\xea\xe3\x5e\xad\x2f\x24\xee\xed\x1a\xfd\x44\x0f\x97\xd3\xce\x26\x7d\xa7\xf8\xfc\xf7\x4c\xde\xfd\x7f\xbe\x1e\x88\xef\x7f\x60\xaf\xc6\x45\xa3\x40\x40\xd6\x84\xa2\x0c\xca\x01\xf3\x52\xe1\x20\xdd\xaf\x80\xff\x5d\x91\x64\x3e\xcf\xad\xed\x0f\x2c\x3a\x2f\x3e\xa4\xd9\x0d\x6c\x1d\x25\x51\xa9\x19\x02\x1c\x54\x90\x2c\x57\x7f\x05\xd4\xfc\x14\xcf\x62\xaa\x02\xad\xcf\xc5\x87\xd4\xf7\x02\xb7\x14\xc5\x59\xea\x6e\xc0\x73\x13\xd1\xcf\xea\xbb\x80\xef\x43\x22\x3f\xf8\x3a\x07\x91\x3a\x9e\xce\x81\xa2\x79\x1d\x8d\xfa\x9f\x72\xf1\x33\x97\xb9\x3d\xf7\xf6\x12\x07\xef\x29\x5c\xf6\xe0\xd6\xc1\x1b\xa4\x2e\xb6\x5a\xde\x25\xf3\x81\xaf\x03\xe3\xeb\xa0\x2a\x8a\xb9\x3a\xa8\x62\xf6\x0f\x72\xae\xda\x7d\xe0\x0f\xd1\xa5\xf3\x7d\x00\x56\xf6\x70\x71\xae\xd2\xdf\xfc\x7f\xec\x8a\xbf\x79\x6f\x8b\xd3\x5c\xd4\xf9\x05\x88\x0d\x52\x94\x4e\x3c\x60\x98\x2e\x28\xa8\x71\x1c\xf0\x14\x13\x8c\xd7\xec\x01\x12\xde\x0b\x3f\x61\x2e\x05\x66\xca\x0b\x77\x33\x33\x81\x55\x47\x44\xd3\xd4\x67\x01\x79\xbd\xa2\xcb\x18\xce\xc0\xc1\x91\x22\xe5\x6a\xbd\xc0\xa9\x40\x91\x6c\xb5\xe7\xc0\xf9\x39\x22\xe5\x0c\x65\xa0\xe3\xb2\xc8\x4b\x86\x31\xf0\x50\x40\x64\x03\xe3\x2c\xf0\xc1\x51\x24\x83\xe1\x01\x0c\x67\x09\xbe\xe6\xeb\x1c\xa8\x2d\xff\x8c\xcb\x47\x2e\x0e\x3c\xe3\xe0\x8d\x15\x37\xc9\x73\x6e\x5d\x76\x97\xbc\x68\x68\xd8\xfa\x8c\xd4\xc9\x93\x5f\xdf\x92\xfc\xaf\xd4\xf8\x42\x74\x43\x07\xbe\x0f\x10\x9d\x75\xc1\x36\x36\x79\x1f\xb3\x8d\xd7\x1f\xe5\x9f\xbe\x38\x3c\xfe\x7b\xba\xf7\xdf\xf3\x20\x82\x17\x3f\xbf\x1f\x8a\xc9\x09\x2e\xaa\xd9\x00\x23\x07\x29\x4a\x23\x00\xd0\xb5\x18\xb9\x88\xb9\x1d\x70\x29\x11\xd8\xcc\xfc\x0c\x44\x25\x0b\xe9\xaa\xcf\x00\x26\x8f\x11\x5a\x26\x57\x0c\xcc\xb1\xa4\x28\xe9\x4a\x20\xdb\x9d\xa2\x64\x07\x81\x1d\x71\x14\x25\xb7\x1c\x28\xbe\x4c\x51\x6a\xaf\x80\x13\x4c\x91\xc5\x9c\xf1\x68\xb8\x2e\x52\x22\x97\x0d\xb4\xde\xa7\x28\x69\x7d\xe0\xc6\x01\x8a\x92\x7c\x0d\x3c\x5a\x44\x51\x52\x07\x81\xbe\xcf\x14\x25\xb1\x1f\xf8\x13\x43\x51\x23\x47\xf0\xc7\x83\x8b\x97\x7d\xef\x91\x75\xe2\xec\x89\xa7\x24\x9f\x6b\xa2\xdf\x13\x7f\xc1\xa3\xc3\xdf\x88\x7e\xee\x60\xdf\x9f\x40\x0e\xee\xab\xe6\x7e\x6b\x3b\xcf\x0f\x88\xef\x87\xb2\x84\xf7\x7c\x67\xf7\xf1\xf8\x7f\x9e\xff\x03\x5f\x0f\x14\xc8\xcb\x13\xc7\xfb\x5c\x34\xe4\xf5\x59\x52\xe4\xf9\xc5\x48\x79\x01\xb2\xb7\x28\x4a\x52\x13\x30\x7c\x46\x51\xe2\x62\x80\x9b\x29\x45\xa9\x75\x03\x29\x47\x05\x36\xcb\xac\x02\xd2\xad\x29\x8a\x31\x03\x58\x21\x2d\x2c\x3e\xf2\x0f\xb0\x22\x8d\xa2\x24\x28\x60\x6b\x20\x45\x89\x9f\x02\x0a\xb4\x28\x4a\x6c\x3d\x50\x36\x96\xa2\x84\x4f\x03\x55\xa3\x28\x4a\x34\x17\x68\x48\xa2\x28\xb1\x2e\xe0\xd2\x77\x8a\x12\x9d\x03\xdc\xce\xa2\x28\x89\x61\xe0\xd9\x68\x8a\x12\x49\x05\xfa\xf4\x29\x4a\xf0\x10\xf0\x27\x83\xa2\x9a\xf7\xf7\x12\xdd\xeb\xe9\x53\x7d\x44\xef\x79\x62\xc7\x4f\xa2\xab\xae\xd4\xe2\xea\xa0\xf8\x3a\x98\x1d\x3c\x7f\x14\xbe\x1f\xca\xb2\x1d\x7f\xe7\x41\x3a\xaf\x9f\x50\x0a\xcf\x27\x28\x2a\xeb\xef\x7c\xb0\xe5\x8d\xbe\x3e\x2f\x4b\xf9\xfa\x07\x61\x4f\x40\xf4\x1a\x45\x09\x6c\x00\xd4\xc3\x29\x4a\xd0\x0b\xb0\xd9\x4c\x51\x02\xd3\x00\xff\x40\x8a\x12\xda\x0b\x24\x3e\xa1\x28\xe1\x29\xc0\x54\x77\x8a\x12\x28\x05\xb2\xa6\x53\x14\x7f\x3c\xa8\x1c\x20\xa7\x8a\xa2\x54\x7b\x81\xe2\x87\x42\x0c\x11\x47\xa0\xc4\x81\xa2\x46\x2c\x02\x2a\xaa\x29\x4a\x2d\x02\x38\x9f\x26\xbc\x87\xf3\xdc\xcf\xee\xe3\xfe\x9e\xf6\xa7\x14\x35\x62\x2d\xd0\x15\x40\x51\xc2\xea\xc0\x73\x1f\x8a\xaa\x9f\xf1\x89\xf8\xe3\x9d\xec\xeb\x27\x7a\x98\x23\x61\xb8\x4e\xfd\x57\x07\xc3\x8b\xeb\x7f\xfd\x50\xfe\xc9\x03\x9e\x1e\x2a\x8d\xfe\x7b\x1e\xf0\xeb\xa2\x87\x27\xfe\xd2\x81\xe8\xf2\xf4\x52\xf2\x26\x5c\x1c\xf1\x1a\x18\x79\x82\xa2\x46\xbc\x04\x46\xb5\x53\x14\x25\x07\x98\x14\x50\x14\x95\x04\xb8\x69\x52\x94\xc0\x15\x20\xf2\x2e\x45\x09\x64\x02\xa9\x2f\x29\x6a\xe4\x00\x30\x9d\xd7\x31\x75\x0e\xe7\x09\x3a\x02\x4b\x7d\x39\x0b\x1b\xb0\xde\x91\xa2\x54\x5f\x03\xfb\x9a\x84\xe4\x39\xff\xbd\xf0\x13\x45\x51\x76\x40\x29\xef\xc4\x70\x84\x77\xb2\x3e\xc3\x73\xd0\x6b\x1a\xa0\xa8\x11\x59\xc0\x35\x5f\xee\xfb\xb8\x30\x1e\xaf\xc9\xe7\x39\xf9\x7c\x2f\xff\xde\xff\xff\xea\x40\xf8\xc8\xff\x39\x97\x07\x1a\xd1\xe0\x7b\x93\x83\x62\xa9\x11\xe4\xbd\xb7\x8c\x6d\xf2\x2b\xc2\x7b\x44\x4e\x59\xcc\x41\xc6\xd2\x85\x1b\x84\x06\x00\x35\x7a\xdd\x7c\x61\x17\x80\x91\xbc\x2b\x5d\x64\x2f\xa0\x3e\xbb\xdc\x5a\xec\x26\xc0\xb8\x7b\xa6\x52\xac\x10\x50\xeb\x6c\x3f\x2a\xaa\x05\xa8\xed\x7b\x28\x2c\xe2\x0d\xa8\x09\x7c\xcc\x10\x3c\x09\x28\x0d\x70\x7e\x17\x20\x4e\x94\x7a\x03\x01\x92\xa5\x1c\xfc\x52\x24\x49\x7a\xd2\x7f\x58\x22\x41\x9c\x5d\x5e\x79\x49\xbc\xe3\xe0\xd3\x55\xc2\x93\x38\xf8\xd0\x9a\xb3\x62\x50\xd4\x9d\xfd\x12\x24\xb3\x6f\xfc\x50\x2b\x00\x44\x2a\xae\x34\x32\xa4\x00\xd1\x75\x97\x1b\xd4\x36\x01\x22\xc7\xf0\x1f\xff\x07\x3e\xcf\xc9\xef\x03\xe2\x3c\x93\xfa\xbf\x74\x20\xff\x20\xef\xe7\x75\x2e\xad\x1c\x14\x5a\xe6\x43\xfa\xe7\x48\x59\x84\x11\xfe\x53\xf5\x5a\xf2\xc9\x91\x41\x00\x23\x3e\x3d\x4b\xb0\x05\x60\x6e\x5d\xb0\x5b\xe4\x05\xc0\x34\x5d\x97\x23\x5a\x09\x30\xae\xe6\xf5\x88\xca\xfc\x3b\x0e\xea\xf3\xeb\x96\x70\x62\x54\x6b\xba\xf2\x49\x84\x06\x18\x66\x8f\x5c\x45\xad\x00\xb5\xc6\xcf\xd7\x85\x95\x00\xb5\xc9\x80\xc0\x02\x7a\x94\x0c\xe1\x22\x7f\xb6\x4b\x1e\xe0\xe0\xc7\x24\xe9\x10\x12\x7f\x98\xda\x20\x20\x92\xfc\x6c\xac\xda\x63\x40\x64\xde\xa3\xef\x52\xc4\xb9\xe9\xee\x15\x09\xa2\x58\xea\x5a\x25\x45\x3a\xbb\x75\x58\xa9\xeb\x00\xe2\xa6\xed\x5b\x19\xd7\x01\xb1\xda\x8b\x3b\xd4\x19\x80\x38\xf9\x7f\x06\x1f\xa2\xfe\x9f\xfa\x87\xff\x5b\x07\xc2\xd7\xc5\x8c\x78\xe8\xd8\x44\x9e\xd3\x41\xef\x28\x0e\xca\xc5\x86\x12\x9e\x94\xc1\x4a\xec\x15\xb8\x01\x30\xe7\x4d\xee\x12\x5e\x01\x30\x7f\x66\x6d\x17\x95\x05\x98\x79\x6b\x2b\xc4\x28\x80\xa9\x96\xdf\x28\x56\x09\x30\xab\xcb\x17\x4b\x8c\x03\x98\xca\xf5\x25\x12\x63\x00\xc6\xc3\x6b\x8b\xc4\x5a\x01\x46\xe8\x13\x4b\xd1\x10\x80\x31\xe5\xbb\x90\x70\x3f\x7f\x1c\x7e\x5b\x71\x2a\xa8\xd0\xd4\xaf\x4c\xb9\x2f\x9c\xbf\xe5\x6d\x35\xc3\x0e\x10\x59\xd7\xbb\x99\x21\x0a\x88\x94\x3e\xde\xc1\x18\x0f\x88\x2e\xef\xb9\xaa\x3e\x1d\x10\x4f\xe9\xbe\x24\x4f\x1c\x8c\xae\x17\xa9\x1b\x01\xe2\xd6\x57\xea\xd4\x5b\x01\x09\x95\xcb\x3e\x8c\x69\x80\x98\x56\xcb\x1b\xc6\x1a\x40\x8c\xa8\xbf\xf9\xba\xa8\x7f\xf4\x40\x3c\x5e\x87\xdf\x0f\x85\x1f\xbf\xe5\xdf\xf7\x9f\x13\x2d\x48\x3f\x84\x91\x65\x76\xe4\xde\xab\xe4\x39\x0f\xc2\x67\xa8\xf6\x86\x9e\x18\x71\x0f\x60\x74\xc5\x17\x0a\x3a\x01\x4c\xc5\x89\xb7\x85\x65\x00\x4d\xcd\x79\x83\xa2\x34\xa0\x79\x71\xcd\x15\x71\x00\x1a\x07\xf3\x4f\x4b\x8c\x06\x98\x07\xcb\xb7\x49\x44\x01\xcc\xcf\x0d\x62\x92\x4b\x00\x0d\x87\xeb\xe3\xa4\x54\x01\xf5\x33\xcf\x46\x8a\x73\xc6\xc7\x63\xa0\x41\xcc\x18\x50\xeb\x02\x04\xc7\xff\x98\xaf\xbe\x94\x13\x67\x5f\x96\xfa\x67\x40\xec\xe9\xab\x1b\xcc\x70\x40\xfc\xdd\xd3\x48\xe6\x61\x40\xe2\xfa\xfd\x83\xcc\x10\x40\x62\x43\xd7\x22\xcd\x91\x80\xb4\x5a\x67\x3c\x33\x0e\x90\xb8\x7f\x6d\xbb\xc6\x6c\x40\x2a\xbd\x4d\x8b\xd9\x0d\x48\x6e\x6f\xf5\x66\x9e\x01\x24\xd3\x9a\xbc\x99\x93\x00\x89\x97\x24\x1f\x5a\xa9\xff\x53\xff\xf0\xb7\x0f\xc6\xbf\xfc\x2f\x9f\xff\xe3\xea\x42\xc4\x67\xda\x92\xba\xa0\xb0\xc9\x9d\xf4\x41\x67\x14\x05\xbd\x12\x88\x04\xd4\x0f\xc4\xde\x10\xac\x06\xb4\xad\x26\x7c\x14\x7d\x03\x68\x0f\xce\xf5\x97\x50\x01\xb4\x3b\x57\xf7\x4b\xb6\x03\x5a\xdf\xf3\x37\x49\xd5\x01\xda\x3a\x15\xc5\x32\x0b\x00\x4d\xfb\xb3\x5a\xd2\x46\x80\xa6\xd6\x8d\x3a\xe9\x18\x40\x63\xce\x8b\x16\xc9\x62\x40\x53\xed\x8f\xad\x84\x3b\x3b\x9d\x29\x03\x88\xda\x7c\xde\xce\xd9\x71\x48\x2c\x7b\x73\x45\xc3\x02\x90\x1c\xf9\xcc\x5f\xd3\x06\x90\x7a\xff\xe0\xb3\x56\x05\x20\x6b\xde\x3d\x57\xcb\x0e\x90\x39\x77\x33\x5f\xeb\x35\x20\x7b\xf6\x5a\x8c\x96\x24\x20\x93\xd7\xa6\xa9\x15\x0e\xc8\x3c\x6b\xf9\xa9\xad\x0d\xc8\x3e\x6d\x0a\xd3\xdc\x04\x48\xd7\x34\x8e\xd2\x9c\x0f\x48\x2f\xc7\xff\xd1\x27\xea\x1f\xbe\xd3\xe8\xef\xb8\xb9\x3a\x08\x4a\x82\x55\xc2\x41\x41\x1b\xe3\x72\x0e\x4a\x97\x58\xb3\x38\xa8\x6e\xe4\xba\x78\xe4\x4f\x80\xb9\xcb\x3f\x54\xd0\x1f\xd0\x59\x16\xdd\x20\xf2\x05\xd0\x0e\x49\xbb\x28\xda\x0c\xe8\xa8\x65\x2a\x89\xff\x00\x74\xaa\x57\xbd\x97\xca\x02\x74\x95\xf3\x85\x65\x9e\x02\xda\x0d\x15\xcd\xb2\x86\x80\xb6\xfd\xd9\x6e\xd9\x73\x80\x96\x4b\x67\x99\xcc\x6d\x40\x6b\xfe\x9b\x75\x32\xa6\x80\xb6\x32\x20\x39\xfc\x6b\xaf\x96\x38\x20\xf9\xe9\xc3\x59\x2d\x67\x40\x3a\xb7\x77\x8d\x76\x3f\x20\x77\xfc\x51\x85\x36\x1b\x90\xa7\x7a\x56\xe8\x34\x02\x0a\x8e\x9d\x2f\x74\x8d\x01\x85\xa7\x7c\x3d\x58\xdb\x53\x9d\x25\x80\x7c\x47\x2b\x4b\xe7\x16\xa0\x30\xaa\xc9\x50\xe7\x0a\x20\xdf\x7b\x76\x91\x2e\x13\x50\xd0\x38\x73\x4c\x47\x09\x90\x23\xab\x39\xdf\x1f\xe8\x7f\x75\x30\xfc\xf8\xf9\xfc\x37\xff\xfe\xb7\x36\xd1\x41\xf0\xfb\x63\xc8\x3f\x32\x23\xdf\xd7\x74\x77\xb8\x2b\xa8\xf8\xaf\x4e\x4a\xaf\x2f\x52\x45\xf4\x17\xa0\x3f\x34\x76\x96\xc4\x6a\x80\x75\x28\x43\x58\x3a\x10\xd0\xbf\x90\xdd\x24\x2b\x01\xe8\xb5\xe5\xd5\xcb\xe5\x01\xba\xad\x15\xc3\xf2\x9b\x01\xdd\x79\xe7\xde\x2b\x34\x02\x3a\x49\x5d\x7b\xe4\xeb\x01\x1d\xef\x0f\x7b\xe5\x26\x71\xb5\x09\xd2\x9a\xdf\x8e\xe8\xa8\x01\xb2\xeb\x5f\x39\xeb\xad\x01\x94\x82\xf9\x7a\xb0\xbb\x4c\x7d\x3f\x40\xf9\xfd\xad\x45\xfa\x05\xc0\xa8\xb4\x6b\xd7\x58\xc5\x80\x4a\x63\xbb\x9d\xde\x53\x40\x59\xb9\xe5\xa2\xfe\x26\x40\xf9\xf2\xf9\x32\xfd\x4c\x40\x79\xdc\xd9\x1e\xfd\x62\x40\x79\xda\x99\x79\x7a\x9d\x80\x92\x48\x75\xa9\xde\x11\x40\x71\xc3\x7f\xeb\x22\x7f\x1e\x98\x4e\xfe\x3b\x7e\x4d\x5e\x9f\x35\xae\x0e\x42\xe8\x23\x83\xac\x5f\xb2\x41\xda\x61\x24\x0f\x5a\x8d\x8f\x8e\xf8\x09\xe8\xd8\xdb\x6c\x16\x7c\x0d\xe8\xf7\xb9\xbf\x13\x59\x08\x18\x7d\x0b\xed\x96\x70\x04\x4c\xb6\x8d\xf9\x2e\x7d\x19\x30\xb6\x9d\xa9\x2a\xbb\x03\x30\xec\x5a\xe9\x2b\xbf\x8f\x73\xaa\xd8\xc9\x56\x8a\x02\x58\x9a\x87\x8b\x94\x66\x01\x7a\x77\x9a\x26\x2a\x1d\x02\xf4\x1c\x7a\x54\x94\x92\x01\x3d\xc7\x2f\x2c\x85\x7b\x7f\x0e\xeb\x15\x02\x0a\x22\x1f\x16\xb0\xc4\x81\x51\xb6\x4f\xb3\x0d\x73\x00\xc6\x87\x9e\x2f\x86\x17\x01\xf5\xd8\xff\xd5\x41\x5d\xfe\xca\x39\xc1\xa9\xcf\xb9\x70\xda\x98\x53\x8b\x55\x9b\x18\x46\x8e\x00\xa3\xb6\xc1\xd4\x50\x13\x50\xad\xaa\x3d\x66\xb4\x06\x60\x68\x9c\xb4\x37\x7a\x08\x30\x84\xab\x96\x18\xc9\x02\xaa\x25\x64\x1f\xc0\x5b\x2f\x2c\x79\x75\x92\xaf\x83\xe1\xc7\xaf\xca\xdb\x27\x70\x75\x00\x12\xfb\x95\xb9\xfe\x20\xb5\x8c\xd6\x11\x13\x00\x1d\x23\x9d\x12\x81\xad\x80\xc1\x68\xb3\x02\x61\x06\x60\x92\xea\xd4\x29\xa6\x0b\x98\xcf\x0a\x9c\x22\xf9\x16\x30\x7b\x96\xe0\x26\x93\x09\x98\x7e\x98\xda\x26\xaf\x00\x98\xee\x5e\x41\x29\xf5\x01\x26\x79\x3b\x7b\x54\x6e\x02\x86\xef\x0e\xb3\x55\xbe\x02\x06\x99\x17\x2a\x55\x67\x00\xac\x9b\x0f\x52\x54\x1d\x00\x03\xad\x81\xc9\xa3\xd6\x7c\xdf\x6e\x38\x1e\x50\xf3\x7d\x71\xd1\xe8\x26\x67\xcd\xb9\x77\xdb\x54\x08\xd0\x7e\xd9\xb9\xd2\x54\x0f\xd0\x3e\x7d\x75\xa5\x49\x3f\xa0\xf5\xb3\x4d\xc8\x34\x1f\xd0\xae\xfc\x47\xff\x23\x6d\x0a\x40\x7b\x44\x9d\xa1\xc9\x7a\x40\x23\xb0\xe6\xb8\x69\x15\xa0\xb9\xf0\x44\xa9\xa9\x12\xa0\x31\xe2\xe8\x1e\xb3\x99\x80\xa6\xeb\xe1\x06\x33\x09\x40\xc3\xfe\xbf\xf3\xc0\xa4\x81\x37\xef\x79\xbc\x2f\x8f\xf7\x0c\x57\x08\x21\x79\x30\x55\x86\xe8\x46\x95\x34\xe4\x49\x5d\xd0\x5a\xa3\x7a\x82\x9a\x09\xb0\x5e\x68\x3e\x16\xb0\x04\x4c\x0f\x18\x55\x08\x5f\x05\x2c\xcf\xd9\xd6\x89\x17\x02\x36\xe9\x3e\x22\xd2\x1b\x00\xeb\xf3\xa3\x65\xe4\x2e\x03\xd6\xe1\x93\xf7\x29\x9d\x02\x2c\x19\x4b\x27\xab\x5c\x03\xcc\xce\xef\x78\xc4\xe0\x8c\xdb\x84\xca\x5f\xea\x51\xec\x55\xc6\x51\x2d\x01\x1a\xa1\xbf\x77\x18\xfb\xdf\x5f\xa7\xe5\xdd\x1f\x69\xfc\xfb\x7b\x8f\x56\xe5\xfb\xc3\xa6\xc5\x80\x4e\xe7\xc3\x52\xb3\x77\x78\xa1\x3f\xbb\x53\xcb\x22\x1b\x6d\x06\x47\xda\xdf\x59\x3c\xc7\x15\x83\x35\x17\xfb\x88\x0f\xd2\xb1\xf3\x55\x96\xa1\xb8\xcd\x6a\x6c\xf0\xb0\x1c\xc6\x4d\x03\xf5\xd3\x3a\x16\x79\xf8\xa4\xa7\x72\x32\xcb\xd2\x1a\x9f\xf4\xcc\x8f\xed\xb1\xf4\xc2\x4f\xdd\x95\x95\xfe\x16\x83\xa0\x75\xa6\x1f\x5a\x62\xb9\x00\xd0\x89\x2d\x35\xb2\xc8\x03\xb4\xd2\xff\xbb\x1e\xea\x7f\xe2\xa2\x5a\x1c\x17\x15\xe6\x73\x91\x7b\xff\x5b\xe6\x8c\xe8\x5c\x0e\x6a\x54\x88\x93\x71\x30\x10\x95\x2a\xe2\xa0\xe5\x35\x45\x45\x0e\x3a\x84\xeb\xac\x11\x8a\x03\x9c\x98\xe6\x9f\xc4\x77\x00\x4e\x19\xae\xb3\x65\x83\x39\x9f\xc3\x0b\x15\xeb\x00\x07\xe7\x09\x12\x2a\xcf\x00\xdb\x2d\x8b\x62\xd4\xd7\x0e\x9a\x59\x3f\xca\x3d\xaf\x9d\xf1\xfd\x9e\xd5\xca\x83\xeb\xf4\x4f\x7e\x9a\x6a\x39\xff\x6c\xb1\xe1\x9f\xf7\x1b\x2c\x0e\x74\x69\x18\x5f\x7a\x63\x66\xd1\xda\x17\x69\x52\xf8\x2c\xc6\x4a\x0b\x79\xa6\xf2\xb7\xc7\x58\xf7\x61\x8e\x79\x61\xdb\x68\x5b\x65\xcc\xb4\x30\x6b\x76\xb5\x1d\x87\x25\xe6\x61\x0d\x7b\xec\x28\xac\x30\xb7\x3a\xb3\xc8\x2e\x15\xd9\xe6\x2a\x27\xf7\xd8\xde\xc7\x7e\x93\x33\xc7\x4e\xd9\x05\xe0\xa0\xc9\xcc\xc3\x46\x76\xe5\xa8\x32\xee\x3c\xa4\x60\x57\x8d\x3a\x63\x91\x03\xe1\x76\x45\xb8\x64\xf8\x60\xff\x18\x5b\x36\xee\x18\x8c\xdd\x5b\x67\xb3\x1a\xdf\xf4\x82\x49\x1e\x78\x52\x7f\xe9\x80\x78\xfc\x3f\x25\x4a\x7c\xe6\xc4\x78\x3c\x1f\xdf\x07\xdf\x60\x3f\xf7\xb3\xd5\x75\xae\x1e\xc4\x71\x8e\x04\xd1\x5b\x7a\x15\xa8\xd7\x73\x4e\x31\x3e\x1f\x0c\xbd\xc4\xf4\x00\xef\x1b\xf6\x22\x32\x5f\x01\x8f\xca\xc0\xb5\xa3\xe6\xfe\xf1\x70\x1f\x35\xe6\x0f\xf3\xfb\x37\x53\xd7\xdd\x99\xcf\xf5\x6e\xbf\x8f\x71\x6e\x5f\x1f\x6f\xdc\xf0\xe2\x97\x63\x7f\x51\x92\xc5\xd6\xa7\xc2\x0e\x16\x35\xfd\xd6\x7f\x1e\x3c\xb2\xfb\xdc\xe1\x69\xe7\x7f\xb7\xd2\x6e\xc6\xcb\x3b\xf6\x89\xdd\xeb\xec\x27\x61\x84\xfd\x8a\x36\x23\x87\x7e\x1a\x0e\x3a\xe7\x06\x9c\xc4\x20\x66\xff\x8e\xef\x7b\x73\x32\xdc\xa9\x02\x0e\xb6\xf6\x47\x3d\x5d\x84\x61\x69\x27\x5d\xb1\xc2\xb9\x0a\xa1\x36\x8c\x83\xfe\x4e\xad\x98\x6d\x39\xa5\x64\xae\x53\x1e\xd6\x98\xdf\xde\x17\xe1\x34\x0d\x05\x66\x46\x05\xcd\x4e\x3b\x71\xc0\x74\xd3\xae\x43\x8e\x6c\xd4\x19\xef\xcf\x33\x77\xb2\xc4\x79\x63\x72\x9b\x44\x87\xf7\xfc\xb9\x3e\x20\xfc\xe7\x2f\xc4\xe3\xb7\x55\xc7\x72\x91\x1f\x3f\xdf\x0f\xc0\x79\x36\x17\x7d\x97\x8c\x24\x3e\x4b\x61\x59\xb2\x5b\x39\x18\xa9\xa8\x39\x20\x1c\x0e\x84\xcf\xb5\x98\x2d\xbd\xbb\x7f\x67\xf0\x57\xcf\x21\xb5\x3b\x1f\xa6\x07\x7c\x1b\x1d\xa8\x9f\xd8\x9b\xe1\x2f\x39\xd5\xc5\xf4\xe5\x83\x6a\x9f\xa3\x2b\xec\x6d\xd2\xba\x86\xbc\x5c\xf2\x77\x38\x6e\xbe\x31\xc6\xc3\xe8\x98\xb4\xeb\x96\x2b\xfd\x6e\xd3\x2f\xee\xf0\x08\xb9\x7c\xd1\x35\xf0\xb1\xba\x67\xc5\x45\x17\xd7\x94\x5f\xd7\x3d\xef\x36\xd4\xb8\xbb\xd1\x33\xbc\x04\x4f\x09\xb9\xb7\xd2\x45\xee\x07\x2b\xcf\x78\x14\xd2\x67\xdd\xfc\x0e\xb6\x7a\x46\xd1\xd7\x5c\x57\x1e\x58\xeb\x51\x48\x0f\x38\xd5\x17\x5d\xf1\x94\x83\xa0\xe3\x97\xc2\x9b\x9e\xb2\x50\x75\x28\xda\xed\xe3\x31\x07\xee\x76\x42\x3b\x8b\x3d\x9a\x11\x6e\xf3\x7d\x5b\x87\x5b\x27\x56\x59\x34\xe4\x1e\x76\xab\x43\xae\xf9\xd9\xcd\x63\xdc\xf2\xb1\xcf\xac\xe4\xbf\x75\x50\x94\x77\x9e\xa0\x88\x3f\x90\x1c\x8f\xdf\x62\xf1\xfa\xa1\xd8\x14\x70\xd1\x9d\x37\x3f\xf8\xbe\x10\x7c\x3d\x48\xc2\x4f\x01\x52\x57\xc7\x76\x8d\xfa\x48\x51\x3f\x76\xa6\xb0\x0c\xe3\xa5\xc5\xdf\x52\x89\x07\x9d\xbd\x18\xeb\x1e\xf9\x8d\x8e\x0a\xb5\x32\x1e\x75\x7b\x4d\x64\xc9\xd8\x6f\xb6\xaa\x57\x2d\xc2\xbe\xcc\x57\x72\xf1\x6b\x79\x1c\x62\xbd\x79\xb3\x97\xd0\x39\xdd\xc0\xe9\x65\xd7\xfd\xc2\xea\xdc\xfc\x7d\x1a\x33\x02\x33\x6b\x6e\xf8\xee\xee\xbe\x1b\x6c\x70\x4a\xc2\x57\xf0\x73\x5e\x70\xfb\x91\x63\x7e\xd6\xec\xde\xa0\xa3\x65\x5a\xfe\xbe\xb4\x54\x40\xcf\xbe\xab\xfe\xd9\x74\x88\xef\xa5\x82\x16\xff\xcd\xf4\x54\x1f\xa3\x5d\xb3\xfd\x55\xe8\x02\xcf\xb9\x3b\x42\xfd\x03\xe9\xb3\xee\x5b\xb6\xa6\xf9\xdd\xa1\x9f\xbb\x9a\x6f\x7e\xe8\x77\x8a\x1e\x74\x2e\xda\xf0\xc9\xef\x05\x24\x9c\xd2\xd7\x6b\xf8\xbe\x87\x9d\xfd\xa4\xb5\x0c\x9f\xf3\x48\xb4\x29\xcc\x2e\xf6\xb9\x87\x99\xd6\xe4\x5d\xa6\xac\x36\x2f\xfe\x60\x72\x4e\xe2\xf9\x7b\xf0\xf9\x5f\x1b\x25\xea\x2f\x1d\x40\x98\x39\x17\x13\x79\xfd\x1f\xc6\x13\x1f\x70\x7a\xe5\x14\xc2\xef\x7d\x3f\x3e\xf3\x93\xcc\x24\x8a\x7a\xfd\x7c\xc6\x66\xed\x27\x92\x11\x0f\x22\xa6\xbc\xb4\x49\x53\x4b\xb9\x31\x77\xc2\x80\xdf\x48\x23\xdb\x96\xda\x94\xe3\xf1\x72\x8e\x7b\xea\xcb\x12\x33\x66\xd4\x7b\x6b\x9e\x4c\x8b\x0b\x5e\x5d\x1c\xe8\x54\xb9\x3f\x66\x7e\xe1\x9b\x30\xbd\x83\xba\x91\x4f\xab\xef\x44\x6e\x29\xb1\x0c\xbf\xdf\x91\x1c\x7d\x65\x1f\x1d\xd6\xf4\x5a\x3b\xa6\xba\x50\x2a\x7c\x04\xdb\x21\x46\x62\x67\x42\xf8\x2a\xf6\xe6\x88\xd4\xdc\xf0\xf0\x59\xec\x47\x21\x47\x36\xbe\x08\x4f\xa6\x25\x83\x4c\x73\x44\xc2\x97\xd3\x66\x01\xcb\xf8\x3e\x27\xab\xfd\x42\x0f\xd3\x45\x5e\xd2\xd9\x66\x61\x5a\x74\xb9\xe7\x86\x65\xfb\x43\xb7\xd3\xf7\xdc\x26\x2f\x99\x10\xea\x49\xff\x70\xd9\xb0\x44\x37\xb8\x14\x2a\x8e\x4f\x16\x2c\x09\x51\x87\x89\xc3\x4a\x4e\xfc\x23\xfb\xa9\xff\xe8\x40\xb4\xba\xb9\x68\xf9\xe0\xef\xf8\xf9\x3c\x38\x9f\x07\x9d\x42\x78\x8c\xc1\x97\x99\xe4\x3d\xe6\x17\xff\xf9\xe4\xdf\xbd\x72\x5c\x32\x55\xe8\x21\x45\xdd\x2f\x5e\x1a\xcd\xf0\x15\x65\x5c\x77\x59\xf8\xc5\x74\xe6\xa8\x63\xcd\x9f\xe6\xb1\xdc\xad\x59\x3f\x6b\x9e\xce\xb2\x8b\x4c\xb1\xbf\x51\x61\x91\xee\x3c\xfe\x96\xdf\xcb\xa2\xce\x09\xc1\x8b\x6a\xc3\xd8\xbb\xfc\xc6\x49\x6d\x3f\x10\xe3\xb2\xf5\x67\x4a\x60\xe5\xb7\x78\xd5\x4d\x3e\xc9\xd2\xad\x87\x13\xaf\xac\x6f\x4e\x5c\xfb\x68\x30\x89\x5e\x3b\x3a\x51\xe2\xb7\x7c\x52\xc7\xca\xdc\xc4\xa0\xe1\x5f\x71\xc3\x4b\x6f\x25\xbc\x66\x47\x47\x0f\x2c\xd9\x91\xa0\xc7\x5e\x1f\x39\x6f\x51\x60\xbc\x0a\xbb\x27\x74\xef\x82\xc0\xd8\xf7\x34\x23\xf0\x6d\xd6\xa2\x38\x0d\xda\x2c\xa0\x77\x6e\xe5\xe8\xe7\xf4\x34\xdf\x29\x99\xd1\x31\xfd\x74\xb1\x97\x63\xc6\x50\x8c\x35\x7d\xda\xe3\xf2\xec\xec\xe8\xa9\xf4\x5d\xb7\xcd\x33\xbd\xa3\xac\x20\xe4\xcc\x39\x8b\xc6\xf3\xea\x80\x25\xf5\x97\x0e\x84\xaf\x83\x88\xe6\xcd\x0f\x3e\x0f\x3e\x93\xe8\x00\x7e\xcb\x2e\x24\xf7\x37\xfb\x5a\x97\x13\x1f\xf0\xe7\xd6\x6b\x08\x9f\x73\x57\x3e\xa7\x84\x83\xd7\x8f\x6f\xfe\xad\xdc\x41\x51\xcd\xdb\x72\xe2\xf5\x83\x14\x1c\x6b\xc4\xd6\xc8\x38\xa4\xe9\x0a\x97\xab\xac\x50\x0a\x2a\xb1\x11\xda\xd3\xb9\xf0\xe3\x18\x23\xef\x59\x9b\x18\x99\x27\x67\x7f\x8c\x92\xca\x66\xcf\xca\xc8\x51\x8b\x8f\x5c\xbc\x6c\xfa\xad\x92\x67\xc9\xf5\xf3\x2e\x4d\x5d\xd6\x70\x2b\x75\x5b\xa6\x5a\x7a\x64\xf7\xc9\xb1\x8f\x67\x65\x4d\x9e\xfd\xf9\xf1\x38\xd1\x19\xf3\x26\xd5\x0f\x67\x8e\xa9\xff\x5f\xbd\x47\xfa\x9f\xf1\xea\xec\x8c\xa8\x65\x93\xe7\xa7\x09\xb1\x6b\xc2\x8d\x26\x36\x8c\x4b\x60\xbf\x0d\x99\x3b\xc9\x31\xd5\x84\xd6\x09\x0c\x9d\x18\x92\xa2\x4c\x87\xf9\x5d\x1d\x3f\x90\x9c\x4f\xaf\xf3\x9e\x30\x3e\x3a\xa9\x8f\x2e\xf6\x7c\x39\x5e\x20\xb1\x99\x3e\xe7\xfe\x11\x90\xb6\xe2\xc6\x67\xca\xf3\xfb\x77\xd7\xe2\xc5\xbf\x94\x8b\x69\x3c\xbd\x58\x06\xe1\x2d\x06\x56\x2f\x25\xef\xf1\xde\x7f\x5b\x4b\xf8\xcb\xa7\xba\x1b\x89\x2e\xa2\x1b\xdb\x48\x7e\x5c\xb9\xcc\xe5\xc7\x9a\x23\xf7\xec\x97\xd8\x45\x51\x35\xc9\xbb\xa5\x34\xf2\xa4\x8e\x96\xe7\xef\xdc\x6e\x99\xc7\xec\x2a\x30\xdb\x9a\xe9\xa3\x6d\x76\x67\xe3\xcf\x8d\x23\xe2\x8c\xdd\x66\x2f\x35\x5a\xe3\x39\xb5\x2e\xa4\x33\x63\x78\xa5\x4c\xb6\xc9\xe8\xe2\x69\x7e\xcb\x5d\xf7\xaa\xc4\x63\x22\x96\x4e\x3f\x3d\x2a\xf1\x7b\x5a\xca\x92\x91\x37\x9b\x93\x5e\x8c\x55\x5c\x6c\xf0\x7e\x7f\xd2\xee\x94\x81\x45\x13\x86\xdf\x25\x50\x29\xba\xf3\xcd\xd8\xc1\x31\x07\xc6\x74\xce\x7d\xc8\x5e\x19\x25\x39\x66\x69\xe6\x51\xf6\xa9\xf0\xd2\x14\xeb\x59\xa3\xd9\x37\xc3\x98\xc9\xef\x66\xc8\xd2\xaa\x41\x8a\xc9\xc1\xd3\x5e\xd0\xae\x01\x3a\x49\x9f\xa7\xec\xa4\x27\xfa\xb6\x25\xbe\x9e\x7c\x87\xde\xe9\xf5\x28\x69\xd6\x04\x47\xfa\xb8\x07\x3b\xd1\x78\xfc\x03\xfa\xa6\xdb\x8b\x7f\xeb\x80\xd3\x04\x2e\x86\x2b\xfe\x1d\x3f\x57\x07\xd0\xbf\x71\x05\xf1\x75\x78\xbf\x6f\x03\xf1\xc9\x79\xd2\xb9\x9d\xbc\xcf\xeb\x9a\x96\x7f\x8a\x1b\xff\x3e\x52\x1f\xce\xb5\x73\x75\x21\xa7\xbc\x0f\xba\x70\xf0\xf0\xaa\x43\x85\x2a\xbb\x04\xdf\x17\xb6\x94\xc6\x18\x85\x8e\xf2\xdb\x22\x50\x7c\xce\x35\xc7\xc0\x6f\xb9\x4b\x61\x4d\xc4\x67\xfb\xd6\x59\xc5\xf9\xbd\x13\x65\xfd\x5c\x26\x56\xed\x64\x2c\x8b\x0b\x35\x4d\xa9\xd9\x5e\xb9\x7b\x79\x84\x74\x42\xc3\x56\xfa\xd4\xd6\xa8\xa0\xd1\x6f\x73\xbf\x74\x34\x46\x33\xa2\x9b\x73\xf5\xdf\xfc\x8c\x16\x8a\x1e\xb5\x45\x9e\xbd\x35\xe2\x57\xb4\x64\x4e\x00\xfb\x5e\xe8\xfa\xe8\xdc\x35\xcb\xd9\x83\xc1\x0f\xa3\x7d\xb2\x0b\x68\xc3\xc0\xa8\xe8\x90\xe5\x17\xe8\x10\xff\x99\x51\x89\x4b\x2e\xd3\x39\xde\xdd\xd1\xbb\x17\x4e\xa6\x37\x79\x1f\x8e\x96\xcf\xda\x40\xd7\x79\x7c\x8e\x7c\x39\xf7\x0a\xfd\xd2\x75\x20\xb2\x3f\xa3\x81\x66\xbb\x18\x45\x6d\x99\xc5\x82\x88\xf3\x6c\xc0\x9a\xe6\xd5\xff\x37\x7f\xcf\xff\xb9\xe4\x1e\xe3\x40\xd7\x4a\xf2\xde\xfa\x7d\xe7\xe6\x53\xdc\xf8\xb9\xcf\xbb\xab\x88\x1b\x77\x7b\x31\x37\xee\xf3\x9d\xe5\x84\x0f\x3b\xf5\xf3\x08\xa9\x33\xe5\xaa\xc7\x49\xdf\x8b\x7d\xb3\xaa\xe3\x64\x9e\x53\xd4\x56\xd7\x93\x22\x3a\x7a\xb2\x21\xd9\xfe\x55\xf3\xec\xf6\x68\xde\x9c\xa3\x74\xc4\x2e\xe8\x92\xf9\xaf\xf1\x8e\xe5\x5a\xa9\x85\x6e\x49\x89\x5b\x0e\x1e\x5e\xa4\xe8\x1d\x15\x3d\x5c\x96\xb2\xf3\xad\x5f\x7e\xd8\xe5\x52\xd6\x71\xfb\x80\xb8\x60\xf7\x03\xe2\x57\x6e\x05\x4e\x0c\x54\x2f\xb1\x7e\x39\x33\x50\x38\x60\xc1\xfe\x93\xb4\x87\xff\xc8\x80\x2f\x85\x09\xf4\x44\x5f\x95\xc0\xc4\xfc\x14\x3a\xc7\xdb\x3e\x30\x7f\x87\x2a\xbd\xdf\xf3\x45\xa0\x7a\xee\x07\xfa\xaa\x7b\x7c\xd0\xfc\x0d\xdd\xf4\x6d\xb7\x2f\x81\xfb\xd6\x1d\x05\xe5\xdc\x1d\x94\xb1\x26\x99\x86\xf3\xe7\xa0\x9e\x15\xbf\xa1\xea\x64\x1d\x24\xbe\xdc\x1b\x76\x0e\x4a\x81\xf3\x97\x9c\x41\x94\x6d\xdf\xbf\x7a\xb8\x7f\x74\x20\xdc\xfa\xd7\xba\x8a\xf0\xd8\x1f\x96\xe7\x12\xfe\xf2\xe9\xb5\xdd\x93\xb8\xf3\xbf\x98\xec\x1f\xda\x1b\x0f\x3e\xe4\xc6\x7f\x94\xf0\x96\xa7\x3e\x9e\x20\x7d\x71\x0e\x0b\x9f\x26\xff\x6e\xef\xb9\x7a\xf2\xdf\x73\xf5\xce\xe7\x8e\x78\x43\x51\x6b\xd2\xce\x17\xa8\xf5\x8a\x7a\x65\x5d\x6e\x4c\x34\x5f\xa6\xa2\x39\xb9\xbb\xfe\xa9\x8f\x0d\x6b\x75\x7c\xe9\xe9\x4f\x89\x8a\xb6\x12\x11\xbb\x4f\x4b\xcd\xab\x76\xb4\x0a\x92\xac\x65\x6d\x93\x73\xd1\xf6\xb5\xae\x51\x3e\xf2\xcb\x8d\xe1\x59\x53\x6d\xd3\x46\xb9\x7d\x74\x3f\x72\x6a\xdd\xf3\x41\xb7\x2c\xf7\xe4\x53\x31\x6c\xb6\xcb\x49\xf7\xea\x23\xc3\xf4\xa0\xd3\x3b\x8f\x85\x87\x5e\x40\xd0\x69\xaa\x47\xc9\x81\x3d\x50\x73\x14\xf0\x8c\xdc\x57\x04\x43\x07\x07\xcf\x83\x7b\x76\xc1\xc9\x5e\xd3\xf3\x57\xbe\x0b\xfc\xed\xbc\xbd\x96\x6e\x3b\x84\x58\x5b\x23\x2f\xa7\x2d\x85\x98\x6e\xbd\xc0\xeb\xd3\xc6\x60\x64\x5a\x6b\x7a\xcb\xad\x97\xc4\x0a\xcb\x6f\x40\x22\xaf\x4e\x66\x9c\xe1\xe0\x50\x4a\x36\x79\x9e\x1f\x97\x6f\x23\x75\xf0\x59\x5c\x21\xc9\x83\x1e\xb1\x52\x92\x3f\x57\xe7\x57\x12\x5f\x87\x66\xf7\x13\x64\xfc\x6a\xe3\x4e\x93\x7e\x52\x95\x3f\x1a\xc8\xf7\x8a\x77\x35\x91\x71\xda\x61\xd0\xfa\x8e\x83\xab\x4f\xb6\x7b\x73\x70\x51\xd3\x55\x5a\xc1\x86\xa2\xa6\x15\x5e\xc9\x60\x4d\x97\x55\x1d\x23\xd2\xf6\xd2\x55\x89\xd9\x13\xae\x78\xe9\x4b\x4c\xb0\xd1\x5b\xff\x05\x97\x16\xcf\x66\x9a\xd5\x7a\xba\x5f\xfc\xb0\x69\xaf\x65\x9d\xcb\xe4\x8b\x11\xe5\xcf\xac\x3d\x1d\x0d\x5a\xf7\xb6\x26\xda\xc8\xd8\x7b\xb7\xe0\x49\xa9\xf5\x7a\x7b\x91\x96\xa7\x43\xee\x96\x65\xf6\xdb\x1a\xa7\x62\x89\x45\x99\xc3\xe8\xd3\xcb\xb0\xcc\xa2\xc4\x61\xfa\xc9\x52\x6c\x36\xdf\xea\x30\xe1\xe8\x16\x14\x99\x99\x3a\x1a\x55\x68\xa0\xd8\xcc\xd1\x31\xbe\x4c\x08\x47\x4c\x47\x3b\xa9\x17\x1f\xc4\x31\x53\x07\xa7\x65\x85\x1f\x50\x6b\x72\xd0\xe9\xc4\xee\xd5\x38\x6f\xfc\xd8\xe9\xda\xce\x32\x5c\x35\x6a\x07\x66\xf0\xfa\x83\x71\x9f\xff\x97\xe2\xed\x64\x5e\x3c\xaf\xda\x4b\xf4\x1d\x3d\xa7\x0e\x12\x5f\xad\x6b\xf2\xc7\x88\xcf\xc9\x85\x93\x5c\x5f\x9c\xd3\x2f\x1b\xc8\x78\x1c\x33\xe0\xc6\x7d\xe0\x2c\xb7\x6f\xce\x2e\xcb\x2b\xc4\x1f\x60\x43\x27\x97\x27\x5e\xfc\xe9\x36\x59\x57\xa7\x0e\xdf\xf9\x29\x70\x8f\xa2\xc6\x16\xf4\xc8\x30\x7b\x45\x7d\xa2\xf6\xdd\x19\x65\x9b\xa6\xb4\xcc\x77\x43\xb7\x7d\xe8\x51\xcd\x56\xb7\x94\xee\xe0\xa9\x91\xba\x9a\x0e\xf3\xba\x0d\xd6\x4d\xd4\x3f\x60\x63\xd3\xb5\xaa\x34\xd6\xc0\xdb\x92\xea\xb2\x68\xda\x6e\x50\x6c\x9e\x79\xbb\xec\xc1\x80\x81\xb9\x79\xd4\xed\x9d\xbf\xc2\xf4\x13\xcd\x73\xae\x33\xc0\xd6\x65\x5b\x8c\x68\x33\xc1\xa0\x9e\xab\x45\xfe\x85\xc9\xe8\xd7\x5b\x6d\x29\x73\xf6\x0e\xfa\xf5\xb2\x2d\xad\x4f\x47\x63\x48\xf7\xa1\xd5\xa5\x93\xb6\xf8\xa4\x1f\x6f\xf5\xfa\xe8\x6c\xf4\xeb\xed\xb1\xba\x57\x11\x02\xb6\xee\x51\xeb\x8f\x65\xbb\xf0\x4b\x2f\xdd\xda\xbe\x64\x35\xa0\xd3\x88\xf2\x95\x95\x24\xfe\x73\xdb\x48\x1c\x2f\x4f\xec\x23\xf7\xb9\xef\xed\xe0\xfa\xe2\x5c\xbb\x5e\x45\xf4\x51\x2d\xcd\xa7\x89\x0e\xa0\x6e\x47\x23\xd1\x8d\x1c\xb7\xe4\xf2\xe2\x07\x8b\xdb\x89\xff\x45\xc1\xc5\x0e\xe2\x07\xb0\x75\x07\xb7\x7f\x48\xf6\x1d\xee\xbd\xf9\x39\xb7\x1e\x90\x3e\x0a\xe3\x4e\x3d\x23\xeb\x52\x6c\x4c\x2f\xad\x38\x9e\xa2\x02\xd4\x7b\x5d\x4c\xe2\xa5\xe6\x3a\x0f\xf4\x2e\xf0\x1b\xa5\xec\x6a\xbb\xae\xf7\xcf\xf8\x4c\x55\x19\x0b\xad\xde\xa1\x95\x2e\x0c\x69\x13\xd1\x17\x01\x45\x31\xea\xb2\x86\x89\xbd\x0f\x1a\xf6\xa9\x47\xb2\xde\xbc\x90\xb8\x9b\xc4\xc8\x63\xf5\xf5\x7e\xf9\xc1\x56\xbd\x66\xa0\xfa\x38\x18\x50\x99\x6a\xb0\xae\x27\x18\x50\x35\x33\x68\xe8\x9c\x05\xa8\xce\x32\xf8\x7d\xb5\x09\x50\x3d\x60\xd8\x78\xf1\x3b\xa0\x96\x61\xc8\x6e\xca\xe7\xa0\x51\x63\xc3\x49\x80\x21\x61\x5c\x56\x7b\x00\x60\xb4\x9a\x18\x9e\x2c\x00\x18\x83\x26\xcd\x47\x57\x02\xea\x72\x3f\x3c\xb6\x11\x56\xe4\xf5\xa6\x7d\xa4\x2e\xdc\x3f\xcf\xf5\x05\xb9\x69\x79\x8a\xc4\x73\x29\xba\x81\xf0\xdf\x0d\xad\xcd\x64\xfd\x38\x11\x7f\xf9\x15\xa9\x83\xd3\xae\xee\x25\x75\xf0\x6a\x27\x39\x7f\xec\x58\x79\x87\xf0\xc0\xeb\x6b\x1f\x92\x7a\xb9\xe8\x0d\x97\x27\x9e\x36\xf0\x82\xec\xbb\x93\x54\xde\x91\xf1\xf0\xbd\xf0\x39\x7b\xc4\x0c\x8a\x72\xb5\xf8\x72\x50\x73\x40\xe8\xb0\xd5\xa8\xaf\xe2\x2e\xc7\xa5\xd6\x9b\x84\x7e\x0b\x4c\xb2\x93\x59\xce\x6a\xfd\x2e\xb7\xb0\x40\xf6\x9e\x6e\xe8\xf7\xd2\x5d\xa7\xe4\xc6\x6b\x4b\xfc\x50\xa9\x79\x24\x67\xa7\xf9\xfc\x87\xfd\x6d\x19\xd9\x68\xcd\xeb\x3f\x1a\xbe\x78\x4a\xcf\xd2\x7c\xf9\xf9\x33\x20\x79\xff\x1f\x9d\xc3\x89\x67\x16\x80\x54\xa7\xb6\xc8\xbd\xa7\x80\x4c\xbf\x56\xc1\xed\x9b\x80\xcc\x66\xad\xb7\xd7\xfd\x01\xd9\x91\xda\x4b\xdb\x62\x01\xd9\xf3\x3a\x8e\xad\x66\x80\x5c\xa1\x8e\xca\xb9\xbb\x80\x9c\x9f\xde\x8a\x7a\x27\x40\x51\x9a\xaf\x03\x7c\x78\xfc\x30\xd1\xb9\x75\xfa\x9f\x22\xf3\xfd\xd2\x43\x6e\x9f\xa4\xc6\x46\xee\x73\xaf\x76\xe5\xe9\xa0\x9e\xdc\x24\x7a\xb9\xfd\xe8\xe6\xdd\x7b\xbe\x4f\xfc\x22\x36\xe1\x31\xa9\x13\xd9\x35\x2f\xc8\x7e\x6c\x6e\xe5\x1b\xe2\x47\x36\x89\xe7\x17\x32\x9a\xfa\x4e\xfa\x27\x79\xc8\x0d\x12\xdd\xad\x85\x2f\x0c\x65\xd3\x28\x8a\x35\x19\xb0\x90\x16\x7a\xa7\x23\x0f\x44\x14\x88\x84\x68\x8e\x01\x66\x75\x89\x66\x32\x47\x02\x9b\xfb\x45\x0f\x31\x56\x00\x95\x93\x45\x5d\x19\x6e\xc0\xe5\x3b\xa2\xae\x6a\xc3\xc0\xf3\x21\xe1\x6e\x86\x02\xc0\x0e\x14\x5c\xaa\xbc\x6b\x98\x74\x5a\x50\x8e\xf9\x9e\xc7\x41\x25\xfd\x0f\x3a\x1c\x64\xec\x7e\x2e\x0c\x88\x7c\x61\x04\x3c\x38\x07\x88\x34\x33\x2e\x74\x1f\x00\x44\x2f\x29\x3a\xdc\x26\x67\x6c\xf5\xf2\x6b\x82\x80\x78\x0c\x73\xe2\x65\x5f\x40\x62\xfc\x93\xce\xc3\x64\x1e\x74\x59\xd5\x70\xf5\x1f\xe3\xce\x93\x7a\x71\xae\x89\x1b\x7f\x6d\xc2\x55\xa2\x37\x3f\x6a\x76\xeb\x17\x07\x4b\x7b\xb9\xba\x80\xc2\x4f\x8f\xc9\xf7\xb6\x95\x3d\x27\x79\xb5\xee\xd3\x1b\x32\x6e\x4b\xf6\xf7\x91\x79\x33\xdb\xf1\x1b\xe9\xbf\x96\x26\xf6\x8b\xe8\x2a\x23\xbe\x0c\x93\xfe\x4a\xce\x3c\xfd\x83\xae\x36\x20\x74\x83\xa2\x34\x5f\x01\x06\xfe\x02\xd6\x4c\x01\xc0\x3f\x57\xe0\x1d\xe3\x09\x30\xb1\x5c\xf0\x1d\x63\x24\xb0\xf2\x9e\xd0\x21\xb5\x72\x60\xaf\xa4\xf0\x74\xd5\xf5\x40\x8d\x91\xe0\x14\xd5\x6d\xc0\x35\x25\x81\xcf\x4a\xc7\x81\x27\xb9\x14\xa5\xb8\x15\xf8\x62\x4d\x51\x32\x1f\xb9\xbc\xf5\x88\xb5\x34\x61\x10\x05\x46\xfe\xd4\x27\xbf\xa9\xeb\x23\x79\x17\x3d\x62\xf0\x35\xe1\x6a\x04\x98\x4f\xc9\xdd\xdd\x91\xca\x0f\x48\x67\x0e\xc1\xdc\x3b\x56\x1c\xec\x09\xad\x25\xfc\xfe\xd5\x0f\xdc\x7a\xd7\x54\x74\x89\x3c\xdf\xd3\xa7\x3a\x48\xdd\x3c\xbe\xb6\x7b\x37\x07\x0f\xc9\x3d\x20\x79\x52\x94\xf5\x8c\xf0\xa0\x79\xa7\x5e\x11\x1e\x74\x53\xf4\x07\xf2\xbd\xec\xd0\x2f\xa4\xbf\x4c\xd6\xf1\x9f\xe4\x1c\x36\xb5\x73\x90\xb0\x8a\xc9\xfb\xb9\x7c\x69\x10\xcf\x27\xc7\x86\xd7\x0f\x82\xb1\x9f\x8b\xea\xba\x80\xae\xc4\x88\x76\xc5\x32\xc0\xe5\x01\x45\xc9\x0d\x03\xf1\xe5\x14\x25\x37\x08\x64\xae\xa4\x28\x59\x25\x20\xe7\x31\x45\xc9\x9c\x01\x4a\x02\x28\x4a\xaa\x0e\xa8\xe9\xa3\x28\xc9\x03\xc0\xe5\xff\x8f\xb2\xf7\x8e\xcb\xf1\x7d\xff\xc7\xcf\xf6\x9e\xd2\xde\x4b\x7b\x2f\x0d\x8a\x32\xa2\xb2\x42\x84\x64\x8f\x48\xc8\x8c\xac\x28\xa2\x21\x23\x54\x56\x89\xa6\x11\x1a\xa2\x88\xca\x48\xa8\xcc\x54\x66\xc3\xc8\xca\xa8\xe3\xf7\xe8\x38\xcf\x2b\xf2\x7a\xbd\x3e\xef\xef\xcf\x3f\x4f\xd7\x5d\xdd\xf7\x7d\x1c\xd7\xb9\xae\xf3\xf9\x3c\x9f\xc7\x0e\x42\x44\x4b\x01\xaa\x3f\x10\x22\x76\x12\xe0\x85\x35\x21\xa2\x15\x00\xdf\xc4\x09\x21\x7b\x39\x5e\xff\x17\xab\xe4\xf0\x99\x9d\xdc\x6f\xa5\xe8\xff\x8a\x39\x37\xd4\xe3\xef\xdd\x94\xa6\xf1\x97\x0e\xbb\xbe\x83\x8e\x83\x37\x71\xfe\xcf\xee\x7a\x30\x8b\xae\x07\x1e\x27\xe2\x7c\x20\xd2\x84\xe3\xe8\x5e\xb9\xd7\xe8\x13\xb6\xcb\xa1\x4d\x93\xb6\x83\x4f\xe8\x43\xb6\x36\xb0\x03\xe7\x99\x25\xe3\xba\x70\xfe\x9d\xc1\x78\xee\x71\x4c\x0f\xc0\xf1\xde\xa6\x4c\x07\xa0\x10\x4c\x51\xaa\x0c\xa0\x6f\x27\x21\x12\x91\x00\xd6\x6e\x84\x88\x96\x00\x8c\x98\x4d\x88\x88\x34\xc0\x0c\x71\x42\x84\x72\x01\x56\x2f\x22\x44\xe8\x33\xc0\xae\x31\x84\x08\xf4\x07\x48\x09\x27\x44\x50\x17\x20\x27\x89\x10\x61\x2d\x80\xe2\x4f\x84\x08\x59\x01\x54\x9a\x11\x22\x50\x0f\xf0\xa8\x92\x10\xfe\x7d\x00\xcd\x77\x98\xce\x61\x1e\xe9\xd1\x39\xfc\x33\x2f\x6d\xc5\xdd\x78\x4d\xa6\x1c\x75\xe6\xf9\xa2\x77\x30\xae\x9c\x6b\x35\x68\xa8\x78\xb2\x8a\xfa\x60\x1d\x69\x78\x89\xed\x20\xf1\x54\x33\xf6\xff\xf8\xf4\x4f\xd8\x1e\xa2\xda\x68\xbd\xa8\x8d\x03\x3b\xb1\xdd\x70\xfc\xf7\xfc\x70\x8a\xfe\x53\x29\xfa\x30\x9f\x10\x4e\x17\x65\x7c\x04\x7a\xf1\xfe\x02\xd7\x01\xc4\x22\xe9\xf7\xd4\xb6\xf8\xcd\x73\xf3\xde\x07\x18\xdf\x46\x08\x7f\x20\xc0\xa2\xed\x94\xdf\x0f\xf7\xa1\xfc\x75\x1c\x53\xc4\xa7\xe4\x50\x3c\xc9\x76\x86\x38\x1e\xfb\xaa\x30\xc5\xbb\xcb\x28\x36\xb2\x27\x07\x74\x78\x98\xd2\x5b\xff\xc1\xe5\xa5\x30\xa8\x0a\xd7\xc7\x67\x80\xea\x41\x4e\x79\x53\xdd\xe3\x71\x99\xd7\x38\x3f\x1e\x52\x7f\x87\xe3\xff\x9e\x19\x54\xff\x15\xdd\xf9\x13\xe7\x87\x88\x6b\xc0\xd6\x07\x14\x39\x5f\x9c\x19\xfe\x14\x7d\x99\x0e\x60\xa8\x2f\x45\xbb\xdd\x14\xb9\x3a\x20\x1c\xef\x4f\x26\x00\xf0\x31\x45\xaf\x46\xf7\x48\x62\xfd\xbb\x02\xa6\x17\xab\x6c\x36\x9d\x87\x62\x68\xf7\x93\xbf\x3f\xc0\x16\xe6\x00\x1a\x3f\x86\xe2\x21\xb6\x12\x4e\x2b\xa4\x78\x9a\xfd\xfc\x12\x53\xce\x57\xb2\xb8\xa9\xb2\x13\xe0\x0d\xab\x24\xfa\xb5\xe1\x77\x3e\xf2\x1a\x1e\xe1\x7c\x91\xd5\xd6\x88\xf1\xa6\xb9\x34\xe3\x75\x52\xe7\x07\x95\x6e\xdc\xef\xfe\x1d\xfb\x45\xec\x11\xc0\xfa\x7a\xdb\xb4\xe9\xf7\xe7\x7c\x81\x38\x1d\xc8\x5c\xa6\x6f\xf0\x67\xf7\x9d\xf3\x85\xe9\xd1\x81\x30\xdf\x10\x4e\xff\x20\x7d\x83\xe5\xe1\x01\x00\x6f\x3e\xfd\x3e\xca\x6c\xe7\xcb\x92\x55\xb8\xe3\x4e\x00\xf9\x75\x3f\xa9\x6c\x04\x58\xd0\xbd\xf2\xf5\x03\x58\x3d\x80\xbe\x1e\xe1\x4c\x91\xab\x88\x87\x7a\x87\xcd\x00\xc7\x77\xd3\xeb\x6c\x96\x97\xfc\x04\xd6\x4e\x1e\x51\xac\xba\x4e\xf3\xf9\x6c\x30\xbd\xee\x1e\xe1\x4e\xf7\x7b\x81\xeb\xe3\xf4\x3b\xb4\x4e\xda\x61\x91\x8f\x38\x6f\x1e\x0c\xea\x44\x8c\xaf\xa7\xdf\xf7\x6f\x3f\x94\x50\xe6\x13\xc2\xe9\xa1\xa6\xcf\xeb\xdd\x0e\x38\x5f\x18\xae\x3f\xf4\xe8\xc3\xd8\xdf\x49\xb1\x7a\x5a\xb8\x13\x56\x48\xdb\x85\x22\x73\x38\x34\x4e\xa7\xe8\x36\x8f\xf6\x93\x31\x86\xbd\xdb\x45\x30\x7b\x22\x5e\xdd\xc1\xf2\xc1\x1c\x23\x77\xb2\x1d\x94\x7d\xac\x3d\xa5\x54\xff\x7b\xbf\xe1\xda\x49\xf9\x6e\xaa\x1f\xb9\x7f\x81\xee\xc7\xfd\x5d\xf7\x81\xd3\x3f\xf4\xf8\x60\xb0\xf3\xce\x7f\xeb\x40\x38\x7d\x04\xf7\xfb\x9c\x8e\x84\xf3\x17\x99\x88\xfb\xdb\x44\x60\x56\x0c\xee\x77\x6d\x0b\xa9\xeb\x46\xde\x9c\x8d\x6e\xdd\xc8\xef\x1b\x8b\x3c\x81\x80\xdd\x11\x53\x7c\xfd\x78\x2e\xfa\x24\x93\x0d\x25\xb8\xdf\xcb\xdb\x76\xbf\x96\xbe\xcf\x2b\x76\x7e\xec\xd7\x18\x42\xba\xf6\xd0\xff\x7f\x02\x8a\xdd\xab\x13\xfc\x9d\xc5\x14\x9f\xdf\xa2\xf8\x44\x89\xa0\xc3\x4b\x6d\x1f\x7a\x5d\xcd\x38\x89\xdb\x36\x04\x7b\x6e\x85\x26\xbd\x2e\x63\x5c\x1e\xfc\xe1\x7b\xd0\xa3\x7f\x60\x3c\x0e\xa7\x77\xb1\x63\x71\xf5\xe8\x40\xd6\xf7\xce\x07\xa7\x9b\x61\x7f\x1f\x3e\x92\xf2\xe6\x93\x26\xd0\xbc\x98\xce\xc0\xf7\xe7\xdb\xba\xe4\x68\x37\x0a\x29\x6d\x42\x7e\x54\x68\x7b\x1c\xd6\xb9\x16\xe6\x3d\x82\x3e\x0a\x02\x5b\x4e\xe3\x77\x13\x0c\xb8\xfa\x1a\xf3\xb4\xa3\x16\xf9\x73\xbe\x98\xb7\x78\x9e\x9a\x17\xf5\x1e\x3f\xd9\x19\xcb\x8f\x6a\x14\xdf\x56\x53\x7c\x71\x8a\x07\x57\x26\xcf\x85\xe8\xf5\x23\x4f\x72\x05\xd7\x05\xb2\xf4\xba\x4a\x9f\x60\x05\xbc\x9b\xb2\x3c\xab\xba\xb1\x5c\x9b\xa0\xbf\x58\x69\xdc\xef\x3c\x70\x7e\x28\xae\xbb\x7b\xb7\x03\x2e\x7e\xee\xdc\xf7\x5f\x3a\x90\x9e\xbc\xb0\x7c\x4d\x74\x63\xb9\xf7\xc4\x38\xc9\x98\x71\xc8\x87\x08\x2c\x9a\x81\x7c\xb1\xd0\xe4\x10\xe4\x0b\x45\xdf\x6d\x5c\xd6\x8d\xe2\x8b\xe2\xb0\xbd\x88\x3e\x3e\x8a\xe7\x65\x45\x17\x9f\x45\x3f\x6c\xd1\x8e\x32\xe4\x89\x84\x06\xd7\x61\xfd\x01\xc1\xd8\x56\xd4\xd9\xf0\x60\x0f\xfb\xae\x44\x70\x44\x7e\xf7\x91\x07\x1d\x79\x5e\xfb\x92\xf9\xdd\xd8\xd0\x48\xe3\x7c\x72\x93\x14\xfe\x6b\x3b\x10\xa2\x3f\xe7\xe2\xbf\xe6\xca\x87\x33\xd6\xe5\x56\x5e\x75\x2e\x0f\x5c\x7f\xe8\xf1\x43\x11\xea\x1d\xbf\xe5\x50\xd2\x5b\x07\x60\xd8\x3b\x1f\x9c\x5e\x84\xf2\xc5\x3c\x8e\x43\xae\xe0\xf7\x77\x1e\xfb\x0e\xe3\x69\x0f\x44\x5f\x78\xd1\x75\xc1\x9f\x30\xfe\x94\x0d\xc8\x23\x4b\x9e\x8c\x7b\xd3\x8d\x52\x7b\x8f\xe1\xe7\x4b\x0c\x3a\x67\x80\xaf\x07\xdd\xc0\x7e\x2a\x7e\xf0\x09\xea\x09\xc4\x8d\x3f\x9c\xc2\x7c\xa2\x52\xf3\x8b\x94\x00\x3a\x92\xb5\x84\xf2\xe3\xd9\xf4\xa6\x1a\xbe\x8f\xdd\xf8\x2c\x5a\x08\xe3\x79\xe8\xc2\xa7\xdf\x8d\xf7\x52\x04\x05\x30\xfe\xf3\xa2\x66\xd8\x0f\x96\x08\xe2\x88\x5d\x96\xc2\x87\xca\xd6\x2b\x67\xf8\x91\xd3\xbc\xf4\x44\x68\x07\x97\x87\x41\xf2\x7f\xb5\x03\x8b\xbf\xe2\xbf\x4e\x7a\xeb\x3f\x04\xff\x2d\x1f\x3c\x6a\xfd\xb1\x8f\x0a\xac\xf0\x40\x5d\x8c\xe8\xe4\x31\xa8\x1b\x11\xff\x10\x80\xfd\x43\xea\x72\x30\xfa\x9d\xcb\x18\x6d\xc0\x3a\x02\x32\xdf\xe2\xd0\x5f\xa6\x8f\xec\x31\xf4\xcb\x97\x1b\x72\x1e\xfb\xbe\xcc\xfb\x0a\xac\xb7\x21\x63\x5b\x8f\x7c\xb2\xf4\xb7\x2f\x9d\x84\x74\x3d\x12\xc6\x1a\x15\x1f\x64\x44\x51\xf7\xf5\x6a\x92\x28\x2a\x39\xeb\x83\x44\x71\x64\xae\x1d\xad\x7c\x1a\x40\x28\xfa\xc1\x30\x31\xf4\x68\xef\xd1\x83\xe5\x2b\xaf\x07\x10\xda\x75\xf5\x91\x72\x14\x80\x50\xc6\xe5\x42\xe5\x6d\x00\x42\xe9\x85\x4f\x94\xdf\x00\x08\x0f\xbd\xe8\xa0\xfc\x00\x40\x58\xf5\xcf\x71\xee\x1f\x3a\x18\xd6\xb6\x38\xfe\x9b\xd3\x01\x70\xc8\xbd\x6e\x8a\xe3\x09\xdf\x3c\xdb\x7c\xf2\x87\x4e\x4a\xb2\xce\x07\xdb\x95\x6c\xda\x54\xe4\x45\xe5\x1f\x05\x23\xff\xa7\xb4\x6d\x43\x0c\xdf\x66\x00\xa5\x4b\xf1\x53\xf8\xdf\x00\x28\x8d\x4a\xb5\xe0\x0f\x02\x90\x6f\xbe\x90\x85\xbf\x27\x72\xcb\x06\xd1\xb4\x11\xdf\x57\xde\xf8\xd7\x38\x42\x3a\xec\x65\x71\xc6\x6e\x11\x93\x43\x07\xc3\x7a\x6b\x15\x6f\x00\x61\xc7\xba\xe3\xca\xef\x01\x84\x5a\xaa\xdb\x55\x0a\x00\x44\xe6\x73\xf1\x97\xeb\xaa\x4c\x01\x10\x11\xe0\x74\x50\x97\xbb\x54\x56\x03\x88\xd8\x15\x11\x95\x4d\x00\x22\x8e\x17\x4f\xa9\x84\x01\x88\xe8\xe6\x19\x2a\x5f\xe9\x7e\x1e\xfb\x73\x9c\xfb\x5b\x07\xd3\xe3\x83\xc1\xce\xbf\x73\x3c\x38\xd5\x81\x70\xba\x10\x81\x3b\x86\xf8\xfb\xa2\x9e\x56\xf6\x78\xdf\x0b\x07\xe0\xcf\xe5\xb0\x60\x1d\x80\xf2\xe8\x29\xb6\x7c\x9a\x00\x2a\x8a\x8b\x86\xf3\x37\x03\x28\xd7\x86\x13\x81\x74\x00\xe5\xb8\xf8\x3e\x82\x13\x01\x94\x87\xa5\x1e\x13\xbc\x08\xa0\xd4\x90\xbf\x45\xd0\x1f\x40\xe9\x6b\x95\x8a\xa0\x17\x80\x52\xe3\xeb\x20\xfe\x12\x80\xee\xb8\xc8\xae\x0f\x83\xba\xe3\x10\xf2\x68\xea\x54\xc9\x06\x10\x8e\x7e\xb4\x5c\x5d\x00\x40\x3c\xec\x9e\x9d\xda\x6d\x00\xf1\xa0\xdb\x92\x6a\xaf\x00\xc4\x8f\x97\xef\x51\x8f\x04\x90\x88\xba\x96\xae\x9e\x06\x20\x91\x79\xf9\x84\xba\x23\x80\x84\x68\x61\xbb\xba\x02\x80\xf8\x8d\x0b\x44\x5d\x13\x40\x3c\xfb\x9c\xbd\xfa\x38\x00\xf1\xda\x9c\x0d\xea\xc2\x00\xe2\x1e\x7f\x8e\x07\x5c\x3f\xe0\xce\xbd\xeb\xb0\x3c\x70\xfc\x2f\xc7\x83\x73\x3c\xa0\xea\xa8\x6e\x14\xe9\xd2\xc1\x7a\x08\xd2\x19\xe6\xe8\x9b\xa3\xdc\xe6\xec\xcc\xeb\x00\xa0\x66\xe3\xf9\x89\x7f\x0a\x80\x9a\xa0\xdf\x25\x01\x67\x00\xb5\xfc\xf9\x2f\x85\x04\x01\xd4\xde\xac\x4b\x11\x2e\x01\x50\x3d\x1c\xb7\x45\xb8\x19\x40\xd5\x26\x35\x43\x24\x12\x40\xe5\x7c\xe1\x70\x91\xad\x00\x2a\xa2\xf7\x5c\x84\x87\x02\xa8\xf8\xb4\x74\x08\x8d\xfb\xa9\xac\x6a\x0a\x20\x34\xe0\x6d\xa9\xfa\x0f\x00\xf1\x17\x4f\xbf\x6a\x9c\x01\x90\xcc\xbc\xaf\xa4\x99\x01\x20\x3d\xe5\x56\xa6\x66\x1b\x80\x74\xd9\x8d\x9d\xda\x03\x00\x64\x37\x5d\x9d\xa2\x35\x17\x40\xc6\xab\xd8\x5d\x3b\x1e\x40\x36\xbd\xc0\x1d\xfd\xb4\xa4\xf3\x12\xb5\x47\x00\xc8\xd4\x9d\xe9\xa7\xcd\x07\x20\x33\x2c\x5b\x5d\x6b\x1a\x80\xb4\xcb\xa9\x75\x9a\xf9\x00\x52\x8e\xf0\x2f\x7e\x30\xdc\xfd\xe7\xce\xff\x73\xe7\xbf\x19\x0f\xce\xe9\x21\x92\xfb\x9e\xc7\xf8\x23\xd4\xb0\x7f\xab\xac\x33\x16\xe1\x79\x04\xa0\xee\x6c\xd7\x97\x2f\x1a\x40\xa3\xaf\x47\x38\xff\x2f\x00\xcd\xc7\xe3\xfb\x0b\xf9\x01\x68\x2d\x9a\x03\x22\x6b\x00\x34\x5f\x85\x49\x8b\xb9\x01\x68\xa4\xc6\xde\x17\x97\x02\x50\x9f\x9f\x36\x51\x7c\x18\x80\xda\xaf\x4b\xd6\xe2\xd9\xf0\x4d\x2d\xeb\x41\x87\xf8\xb8\x4e\x3e\xf5\xcd\xef\xea\xc5\xfd\xda\x23\x35\x83\x00\x24\xa5\x1a\x75\xd0\x1f\x2b\xff\x41\x82\x6e\x01\x80\xbc\xea\xcd\x71\xfa\x73\x01\x14\x57\xfd\x97\xfe\xe7\xa2\xaf\x9e\x2f\x40\xdf\xb6\xb3\x2f\xf5\xce\x00\xc8\x4b\xe4\x4a\xea\xd6\x03\xc8\xa5\x67\xbc\xd0\xb3\x07\x90\x3b\x9b\xee\xa9\x2f\x0d\xd0\xd7\x3f\xf5\x8e\xee\x69\x80\x3e\x2b\xff\x8c\x9f\xeb\xf7\x5c\xfc\xb2\xa8\x7f\x21\x13\x24\x58\x7f\xa0\x3c\xb0\xa0\xbb\xe8\x56\x8c\x7f\x91\x54\x32\xf9\xa3\x5e\x8a\xa6\xa0\xd6\x2b\xde\x56\x00\x9d\x2e\xf3\x45\x02\x46\x00\x7a\xf1\x03\xbb\x84\x96\x00\xf4\x73\x19\x7d\x57\x34\x04\x40\x7f\xe2\xcc\x44\xf1\x65\x00\xba\x17\x57\xf3\x48\xaa\x01\xe8\x28\xc7\x5c\x91\x9a\xf7\xe3\x80\x8e\xc5\x71\x37\xd9\xd0\xcf\xc9\x3a\xde\xf9\xee\x7d\x05\x3f\x1a\xea\xf8\x56\x6d\x90\x77\x69\x7b\xa4\xf3\xe8\xcd\x08\xf9\xe8\xb7\x3e\x7a\x3b\x00\xe4\xb7\x3c\x4c\xec\xb7\x03\x40\x79\xe6\x6d\x73\x83\x9f\x00\xaa\xa1\xd7\xd2\x0c\x37\x01\xa8\x96\x5d\x8a\x31\xf2\x00\x50\x1b\x5e\xc0\x6b\x68\x04\xa0\x32\xe6\x5c\xa7\xd1\x25\x00\x35\x72\x7a\xa4\xe1\x4e\x00\xe5\xa6\x8c\x4e\x63\x05\x00\xd5\x81\x27\x93\x0c\xc3\x00\x94\x6e\xa5\x7a\x1b\xd6\x01\x28\x1d\x3b\x66\x6f\xd8\x9d\xc7\x9b\x49\xdb\x8d\x8c\x00\x14\x71\x2f\x82\xd3\x3f\x70\x3e\x20\x2c\x7e\x22\xc6\xe6\x0d\xea\x03\xc0\xc3\x78\x1d\xc9\x26\x5e\xab\x6e\x54\xbc\x26\x88\xba\x64\x9d\x6c\x29\x5c\xe7\x18\x7c\x55\x9b\xc6\x1b\x0e\x60\x7c\xdf\xe0\xb1\x60\x10\x80\xe9\xac\xfe\xa2\x22\x4d\x00\xa6\x45\x23\x37\x48\x0c\x00\x30\xee\x08\x38\x20\x95\xd3\x91\x6a\xdc\xb0\xdc\x55\x6e\xf1\x87\x4f\xc6\xdb\xa3\x74\x14\x9b\x5b\x5c\x8c\xca\x92\xde\xa9\xba\xbe\x9a\x69\x24\x7b\xd6\x4a\xfd\x56\xe3\x1c\xc3\x73\x15\xfe\x9a\xf1\xf5\x0b\x0c\x2f\x34\xdc\xd3\x52\x7c\x1a\x61\x54\xd5\x39\x41\x73\xcc\x9d\x4a\x93\x68\xe8\xd2\x5e\x74\xf5\x9e\xe9\x59\xf8\xa4\x13\x58\x68\x6f\x96\x02\xef\x75\x2e\x9d\x77\x34\xdb\x0d\xdf\xb4\x9b\x7a\x7c\x6f\x74\xcd\x47\x43\xa7\xf6\xbc\x93\x53\xcd\xc2\x00\x34\x37\xa6\x2e\x30\x5b\x0d\xa0\x51\x7c\x64\x8d\x59\x3d\x80\xc6\xa6\xe4\xe9\xe6\xd2\x00\x1a\x3a\x07\x2b\x4c\xf7\x02\xa8\x16\xee\x1f\x64\xba\x0f\x40\x55\xe2\xcf\x71\x80\x6b\xff\x5c\xfc\x64\x0e\xc6\x2f\x46\xe3\xe7\xfc\x10\xd4\x36\x53\xe4\xea\x43\x70\xfe\x20\xd6\x39\x32\x3f\xbb\xd1\xae\x58\xeb\x87\x80\x1c\x80\x9d\x90\x95\xad\xd8\xca\x5f\x86\xb6\x61\x1e\xe6\xd2\x45\x1f\x7f\xd9\xf1\xfb\x39\x28\xa8\xbd\xed\x6f\x1b\x1e\xb4\x4e\xf5\x7e\xa3\x9b\x8d\xfb\xc6\xab\x5a\x79\x8f\xbf\x59\x9b\xec\xbd\xa2\xf7\xae\x56\xcf\xf2\x61\xe6\x44\x83\xc6\x7b\x83\x2c\x6a\x4b\x8f\x1b\x35\xdd\xf9\x60\xb1\xfc\xd1\x49\xe3\xf6\x5b\x57\x2c\x1a\x3f\x67\x1b\xa7\x5d\xe3\xb3\x5a\x05\x7b\x8d\x1f\x5e\x7c\x67\x9d\x0e\x89\xc6\x8f\xce\x58\x5a\x87\x42\xae\x11\xc9\x58\x69\x2b\x0e\xe9\x46\xbf\x4e\x5c\xb5\x7e\x0e\x37\x0c\x8c\x8e\x95\xd8\xfc\x84\x52\x83\x07\x87\xc3\xad\xeb\xe0\xa9\xfe\xa0\x43\x53\x6d\x96\x41\x83\xbe\xc4\x81\x19\xd6\x6f\xa0\x4d\xf7\xca\xde\x8b\x36\x23\xa0\x5d\xd7\x7b\xf7\x40\xeb\x16\x00\xed\x67\xb1\x1d\x56\x19\x00\x9a\x59\x7f\x8e\x7f\x12\x6c\xfe\xa4\xe7\xff\x39\xfe\x57\x92\x3d\xb5\x72\x3c\x38\x77\x1e\x9e\xd3\x83\x38\xbc\xa1\x38\xd0\x58\x08\xdb\x91\xfb\x09\xe5\x40\x5e\xfd\x0e\xc3\xc1\xcf\x8c\xcd\xc5\xa6\xb7\x4e\x75\xbb\xe4\xd2\x4f\xde\xb5\x71\x8e\x6b\xc6\xa8\x47\xea\x46\x8f\x84\x06\x9e\x9d\xa5\xa4\x1b\x57\x5d\xe5\xf2\x76\xf5\x46\x23\xf9\x9b\xe3\x9d\xad\x62\x78\xcc\x2a\xaf\x8b\x3a\xae\x3f\x5e\x69\x15\x50\x52\xdf\x5f\xa4\x70\x80\x4d\x43\xf1\x61\xfb\xae\x7b\x8b\xed\x94\x8b\x6c\xed\xeb\x5a\xbd\xed\x86\x5e\x90\x73\xe8\x02\x6d\xdb\x80\xac\x93\xfd\x7f\x81\xbd\x8d\x67\x6a\xa7\xe3\x28\x98\x60\xe5\x79\x38\xcc\xc9\x02\xa6\x59\x3e\x39\xb4\xdf\xa9\x0e\x66\x5b\x6e\x3b\xa0\xe8\x58\x04\x5b\xcd\xee\xef\x13\x76\x9c\x06\x07\x4c\x4d\x76\x1f\xef\xff\x0d\x72\x8c\x67\xc4\x2a\xf7\xff\x06\x97\x8c\x8c\x76\x4a\xf5\xdf\x05\xb7\x0d\x76\x6d\x7f\xed\x70\x0c\x1a\xf4\x0f\x46\xae\x77\xc8\x85\x37\x7a\x2f\xe1\x0f\x1d\x14\xcf\xe9\x5e\xf1\x33\xfe\x57\xbd\x8e\xa2\xc9\x3a\x16\xf7\x67\xf6\x34\xc8\x7c\xf1\x87\x32\x3f\x74\x2f\x3c\xbf\xf2\xf5\xf9\xb8\x8d\xb2\x93\x09\x69\x56\x1e\xa7\xa8\xab\x24\x9a\xf9\x6c\xfa\xe8\xa9\x76\x13\xe5\x4f\xdd\x9b\xea\x35\x62\x18\x9f\x8e\x4b\xc5\x32\xcf\xbb\xfe\x7a\xc6\x3b\x4a\xce\x0f\x3b\xb3\x24\xd5\xb2\xb2\x50\x70\xc8\xbc\xad\x09\x76\xbf\xf2\xa6\xb9\xf3\x27\xc9\x3b\xd6\xe6\x1e\x1e\xa4\x76\x76\x97\x4b\x72\x66\xa7\xeb\xe9\xca\xf2\x81\xa3\x4f\x0d\x1c\xf8\xeb\x85\xd4\xc0\x92\xf4\x69\xae\xab\xba\x52\x06\x34\xa4\x0c\x71\x9b\xdc\x75\xc7\x79\xd9\xfe\xd6\x41\xbe\x5d\xaf\x9c\xdc\x13\x4a\xdd\x5e\x83\xb4\x43\x64\x9c\x8d\x5b\x1d\x18\xd9\x5d\xdb\x95\x35\xc8\x1c\x6c\xec\x0c\x76\x68\xb9\x69\x42\x80\xd5\xc3\x6d\xdf\xdc\x54\x20\xc4\x72\x7e\xc4\x0b\x57\x63\x88\x36\xd7\xde\x6c\x37\x70\x31\x1c\x37\xe9\x08\x7f\x30\xe0\x1e\x14\x1a\x5d\x5f\xf7\x79\xc0\x69\x28\x33\x7c\xf2\xbb\xff\x73\x3a\x18\xa1\xf7\x2c\xfe\xfe\x14\xcd\xd9\x2e\x89\xd3\x70\xb6\x2b\xc0\xe9\x21\x30\xee\xae\x31\x13\x71\x77\xa3\x7d\xeb\x54\xcc\xcb\x1b\x87\x19\xb1\x22\x7b\x08\x79\x72\x65\xa6\xaa\x9a\xbf\xb0\xca\xdd\x3e\xd3\x05\xcd\x35\xfa\xea\x5f\xeb\x9c\x42\x5c\x1f\x6b\x0f\x2d\x50\x9a\xb0\x74\xac\xbe\x85\xd1\xe9\x3e\xe3\x92\xe6\x6a\x38\xb8\x9d\x7c\x3e\x3a\x6f\xdd\x05\x97\xa7\xc7\xac\x7c\x22\x13\x16\x0d\xba\x93\xac\x3a\xb2\x23\xc3\xc9\x23\x2d\xb1\x61\xc4\xa0\xd2\xb4\xa1\xb5\xfb\x34\x86\xbf\x7d\xdc\x3a\x6c\xd3\x1e\xa3\xe1\x55\x5f\x2f\x0d\x33\x8c\x35\xf7\x54\xe9\x1a\xed\x21\xb9\xdd\xc2\x33\xba\x6b\xcb\x20\x87\xad\x8f\x3d\x67\x74\x65\x0c\x7c\xbb\xc5\x6a\x78\x63\xd7\x3d\x97\xd5\xe1\x30\xfc\x6a\xd7\x4f\xc7\x27\xeb\xbe\x0d\x37\x01\x25\x87\xb2\xb5\xb3\x87\x35\x82\x95\x5d\xf3\x9a\xd5\x43\xf7\xc1\x68\x9b\x8d\xab\x06\x0f\x9d\x08\x33\xad\xc9\xf2\x81\x43\x16\x40\x94\xf9\xf9\x65\xe9\x43\x92\x20\xca\xfc\xf4\xef\xf8\x79\x59\xbf\x57\x55\xe9\x1d\xbf\x0b\xdb\xe5\xf0\xac\xa1\x38\x1e\xf3\xf0\xa3\x2d\x00\xf7\xa7\xde\x85\xcd\xc3\x73\x3c\x2f\x92\x83\x1e\x77\xe3\x23\x9f\x25\xfb\xba\xb1\xea\x71\xa8\x98\xd2\x49\x42\xae\x8a\x06\x7f\xef\xd7\x2e\xeb\x7c\x21\x65\x61\xa3\xa3\xa1\xa6\x66\xa6\xf6\x9c\xae\x91\x21\x66\x41\x87\x27\x06\x0a\x4c\xbd\xee\x3c\x68\x5f\xfc\xd4\xeb\xcb\x95\x06\x2f\x8e\x0d\x9d\xdc\xb6\x63\xfc\xb0\xc5\xdb\x57\xfb\x2d\x3e\x9a\x33\x52\x37\x62\xdf\x84\x0d\x05\x9e\xde\x67\x37\x0d\xf2\xbd\x77\x6f\xaa\x4f\x6e\xf8\x3b\x5f\xc7\xb6\x0d\x3e\x45\x61\x6e\xbe\x99\x9d\xe5\x5e\xea\xab\x62\x7d\x5d\xba\xa4\x87\x2f\x0f\x9d\x31\x2e\xaf\x6b\xe4\x10\x9d\x50\xd9\xb1\x0b\xba\x96\x0f\x3e\x1f\xf2\x7e\xec\xcc\xae\x44\xb7\x90\x10\xa1\xd1\x09\x5d\x55\x2e\x9f\x83\xef\x8d\x8a\xe8\xfa\xec\x14\xbd\xc8\x79\x94\x0a\xf4\xe9\xef\xb9\x70\x89\xcf\x5a\x30\xb5\xf7\x5a\x90\xe5\xb5\x0e\xc6\xdb\xa8\xce\x4d\x1e\xf9\x08\x96\x59\x46\xfd\xee\x07\xf2\x11\xbd\xdb\x3f\x17\xbf\x97\x38\xc5\xc9\xe8\x57\xdd\x71\x6d\x36\xb6\x8b\xd6\x4d\x8b\x71\xff\xa6\xa1\x68\x39\xfa\x77\xd7\x1e\xa2\xbb\x22\x37\x37\xac\xc7\xfa\x30\xa5\x36\x9b\x14\xa4\x26\x10\x72\x7e\x63\xf8\x09\xcd\x52\x89\xaa\x53\x47\xc3\x14\xad\x25\x55\xc7\x25\xe7\xae\x2c\xf3\x08\x30\xca\x8d\x77\x5d\x3a\x7c\xa2\x6e\x7f\x12\x61\x17\xe4\xb8\xe0\xd0\x90\x53\x61\xd9\xf3\x55\x37\xc9\x8c\x9c\x1c\x7a\x73\x4e\x42\xe2\xf7\x51\xd1\x4b\xa4\x67\x6d\x39\xc3\x3f\x76\x52\x90\xf7\x8c\xec\xca\x63\xe3\x5a\xe6\xdf\x0a\xdc\xfe\xa2\x60\xdc\x8f\x79\x8a\x81\x91\x9d\x9e\x63\x47\xcf\xd6\x9f\xae\xdf\x79\xd6\x5b\x79\xd6\xe3\x69\x89\x9d\xad\x23\xec\x66\xc4\x4e\x5d\xd0\x65\x35\xd4\x7b\xa6\x81\xff\x9c\xae\x40\xf7\x44\x4e\xef\x31\x5d\x63\xd2\x9c\xae\xf3\x03\x6d\xa7\xdf\x9a\xb8\xa1\xeb\xa1\xf3\xf7\x80\x07\x13\x8e\x75\x7d\x76\x92\x9d\x52\x30\x3e\x1f\xb4\xec\x4f\x4f\x29\xf5\x9d\x01\xf6\xb6\x1d\x00\x12\xac\xee\x8f\x01\xeb\x07\xce\x32\x14\xbd\xa5\xc8\x1f\x3c\xf8\x37\xbb\xf9\x1e\xdd\xd8\xa2\xb3\xac\xb9\x1b\x9f\xed\x5f\x8b\x3c\xd8\x83\xfb\xf4\x7c\x7c\xa5\xea\x56\x3c\xef\x5b\x7c\x62\x3b\xe5\x3f\xe7\xec\x4a\xe6\xf7\x22\xe4\x54\x72\x8c\xb0\xb2\xb4\xd0\x82\x64\xd3\x1d\x65\xc6\xa5\x0a\x0e\x71\x69\xdb\x2a\x07\x14\xeb\xd5\x6e\x19\xb4\x39\x70\xf4\x7b\x9b\xa1\x2b\xf6\xad\x57\x9b\x35\xcb\xad\x70\xe1\xeb\x35\xc3\xd6\x4e\xf5\x74\x9a\xbd\x76\x55\x74\x82\x87\x97\xdf\xf4\x79\x2b\x05\xb3\x84\x7d\x46\x4c\x29\x0d\x5d\x52\xf6\x79\x94\xea\xe4\x65\xcb\x77\x3d\xb7\xf7\xf9\x36\x69\xe9\xf2\x13\x3f\x3b\xbc\xe7\xfb\x7d\x0b\x71\xef\xec\xf2\xcc\xf1\x1b\xb0\x38\xb3\xcb\x61\xe8\x72\xbf\x6d\x0b\xbb\xba\xc6\x7a\xbc\x9c\xe8\x31\xff\x59\xd7\xce\x41\x63\x26\x8a\xcd\x1d\xd9\x95\xe3\xaa\x31\xd1\x70\xd6\x8d\xae\xeb\x03\x36\x4d\x70\x9b\x39\xa2\xeb\xad\xb3\xc9\xf8\x73\x81\xb3\x41\xc0\x51\xd3\x37\x3f\xe0\x13\xe8\xd8\x3f\xf4\x35\x9d\xb6\x0e\x1c\xec\x2c\xff\x45\x07\xc2\xe2\xa7\x3a\x90\x6f\x71\x41\xc8\x47\xb4\xc0\x4a\xac\x0b\x51\xff\x74\x23\xce\xa3\xf7\x67\xd3\xfa\x48\xe5\xd7\x77\x22\x6f\x57\xec\xbd\x1b\xf7\x2f\xcf\xe6\xec\xc3\x3c\xa6\x4b\x26\xe2\x39\xf8\x94\xbd\x49\x63\xfb\x7c\x26\x24\x7e\xce\x01\x63\xdd\xf5\x32\xc3\x22\x06\xed\x53\xb1\x2f\xd7\x28\x5a\x39\x68\x77\xcc\x88\x8d\xa6\xdf\xe6\x5d\x8a\x91\x9e\xd6\xe4\x74\x3c\x60\x5a\xf4\xe9\x95\x32\x6e\x77\xfd\x3e\xef\xd0\x8c\x2d\x76\x6f\x18\xd7\x15\x95\x77\xf2\xe9\x90\xdb\xa3\x67\x45\x2e\xb8\xaa\x31\xb4\xc8\x47\x64\xdb\xfe\xa7\x7c\x43\xe7\x7a\x0f\xdc\xe6\xd1\xb1\x65\x88\xa8\xf7\xd6\x4d\x9f\xbb\xc2\x07\x3b\x7a\xf3\x87\xbf\xe8\xca\x74\x5d\xe1\x15\x12\xd6\xd5\x55\xeb\x52\xe1\x3d\x6d\xf5\xd6\xae\xe7\x2e\x56\xde\x13\x43\x3b\x80\x38\x09\x7b\x1d\x5b\xbe\x1a\x94\xfb\xab\x78\x8f\x0c\x59\x08\x7a\x0e\x23\x46\x76\x06\x8b\x83\xb7\xad\x8a\x57\xca\xc2\xf9\x30\xd9\xfa\xb3\x57\xbf\xf9\x19\xb0\xc8\x6a\x2a\x80\x0d\xdb\x25\xf4\x64\xe7\xfe\xa7\xe2\xf7\xff\x59\x10\x8c\xfb\xd7\xad\x3a\x6b\xf0\x3e\xd7\x7b\x6f\x41\x5d\xc7\x3d\xd8\x89\xbb\xe1\xe5\xea\x71\xd4\xff\x60\xff\xbe\x29\x34\xfe\x24\xf4\x45\x3f\xc9\x43\xf5\x01\x87\x22\x8e\xa3\x8e\x2a\x2e\x36\x3d\x4d\xf0\x2b\x21\x5b\x8b\x4f\x74\xa8\x36\x89\x1a\xac\x56\x4b\x8d\xb6\xd8\xab\xd8\xb1\xd0\xec\xe8\x29\xf7\x2f\xfa\x77\xa7\x8c\x4e\xb1\xf4\xfb\x68\xd3\xdf\x77\x50\x52\xd6\xd2\xbb\x0e\xcf\xbc\x5f\x1c\xda\x10\xdd\xe2\x94\xef\xa9\x75\xd0\x3d\xcd\xd0\xe5\xd0\x90\x7d\x07\xe4\x2e\xdf\x1c\x10\xee\x3e\x3b\xd1\xee\x51\xdf\x01\x23\x07\xaf\xd8\xff\xfd\x8b\x88\x73\x9e\x7b\xdf\x84\xf4\xae\x9f\x8e\xb9\x83\x8f\xc7\x86\x83\x8e\x83\x90\xbb\x58\xf4\x13\xb0\xb2\x27\xee\x9f\x22\x13\xc1\xc9\x6e\xa9\x47\x6c\xc4\x34\x18\x6c\x5b\xef\x31\x7b\xa3\x1b\x04\x58\xa7\x7b\xc8\xad\xbf\x00\xcb\xac\x78\xdd\x3f\xad\x2d\x80\x08\x8b\x10\x0f\xb3\x55\xc6\x90\x60\xae\x35\x78\xd8\x8a\x89\x70\xc1\xf8\xd1\xef\x79\x8f\xb6\xff\x5f\x02\xc1\xc8\x4b\xb5\x2e\x0e\xc3\xf5\xc2\x33\xb7\xad\xa3\xf1\xfe\x8f\x8f\xc1\xdd\xee\x1b\x02\x7b\x5a\xe9\xfd\xa7\xbc\xe8\x39\xf3\x23\xc8\x87\x9f\x1a\x7c\x02\xfb\x49\xca\xa8\x53\xd8\x2f\xe2\x21\x07\xdb\xcb\x96\x37\x67\xf1\xbc\x7b\xd8\x8f\xbc\x27\x0a\x2d\x84\x2c\x72\x3f\x2b\x6b\xf0\x4d\xe6\x4d\x80\x63\x6e\xed\x00\x7d\x0d\x83\x31\x5a\xd9\x13\xc6\x99\x18\x4f\xf3\xfc\x96\x35\x6f\xb1\xa4\xf9\x58\xf7\xbb\x99\x51\x91\xfb\x2d\xbf\xba\x2a\x64\x6c\x3d\x5a\x65\x9d\xe9\xbc\xef\xd4\xc5\xa2\x07\x36\xbe\x8e\xd1\xa7\x44\x6a\xd3\x6c\x34\xfa\x37\x9d\x8c\x6a\x37\xb3\x3a\xeb\xb8\x28\xf5\x23\x2c\xb3\x78\xe3\xb8\xe1\x70\x33\x6c\x35\x0f\x76\x4a\x3a\xd8\x0a\xdb\xcc\x63\x9d\xe4\xf7\xbb\x42\x8a\xe9\x46\x67\xed\xdd\xcb\xe0\xa8\x69\xb0\x73\x54\x8c\x02\x64\x99\xac\x73\x5e\xb2\xe3\x0a\x14\x1a\x9b\x38\xcf\x8c\xd2\x83\xeb\x46\x66\xce\xdf\xb6\xac\x84\x2a\xc3\x61\xce\xf9\x9b\x94\xe1\xb1\x81\x16\x37\xfe\x81\x77\x30\xf2\x37\xef\xe3\xc2\x30\xbe\xe7\xeb\x22\x71\xf7\xb8\x26\x2b\x1e\xf5\x51\x15\x6b\x12\xf1\xfe\x17\x9f\x4c\xf9\xd9\x8d\x79\x33\xa9\x3f\x4a\x46\x4e\x06\xfa\x06\x1d\xbe\x9d\x8b\x3a\xcb\x3d\x5a\x79\xb8\x6b\xbc\x7d\x54\x3e\xd6\x45\x59\xeb\x78\x09\x7d\x04\x16\x45\x5e\x39\x2f\x72\x9a\x90\xc0\xec\x2b\x82\x9a\x79\xa2\x17\xc6\xd5\x17\x27\xda\x1d\x57\x58\x3a\xb4\xb9\xa8\xc5\xeb\x8d\xd6\x77\xd7\x17\x45\x21\xf3\x12\xf4\x26\x38\x29\x17\x7e\xde\xdc\xda\xaf\xc4\xae\xac\xd0\x32\x79\x9f\x61\xa0\xf5\xdc\x82\xc4\x7c\x4b\xc3\x0a\xcb\x84\xfc\xc6\xfb\x63\x0c\x23\x2d\x95\xf2\x27\xbc\x6b\x32\x70\xb3\xcc\x38\xdf\x17\x1a\xf5\x97\x59\xc9\xe6\xdc\x86\x37\x7a\x2d\x56\xd2\x19\x47\xe0\x83\x9e\xbc\x55\x6b\x9a\x0f\xbc\xd7\x73\xb6\x7a\x70\x64\x0d\xfc\xd4\x15\xb6\x31\x49\x9a\x0d\x9f\x74\x3f\xda\x5c\x4c\x1c\x09\x5f\x75\x33\x6c\xf9\xf7\x8c\x81\x5f\xba\x22\x36\x5f\xe3\x57\x02\xe8\x38\xd8\x06\xec\x92\x05\xd0\x8e\x87\x13\x8b\x70\x37\xfb\xfd\xd9\x75\xb8\x3e\x6c\x58\x41\xc7\xb9\x9a\xc0\xdd\x38\x6f\x54\xfc\x38\x88\x3c\xf8\xa5\xaf\xb4\xbd\xe7\x25\x9d\x44\xde\x3b\x53\x23\x07\x77\xd1\x8f\x34\xd0\xb8\xf7\x3b\xe6\xe3\x78\xbb\x73\xe7\x25\x3c\xff\xba\x21\x98\xfa\xa4\x84\xb4\x5d\x47\xbe\x7f\xfa\xb2\x4a\xe4\x0d\x27\x66\xdd\xba\xa8\x64\xc2\x93\x3a\xfc\xd5\xcd\x19\x66\xba\x52\xed\x2e\xf7\x2b\x53\x87\xca\x28\x09\xdb\xbb\x57\x1e\x9c\x31\x40\xe5\x92\xe5\xa7\xca\x55\xeb\xd7\xa8\xdd\x34\x7d\x5b\xa9\x7e\x80\x4f\x43\xc2\xe8\x79\xc5\x9e\x73\x47\x34\x2c\x0d\xc7\x55\x0c\xad\x5a\xad\xde\x61\x50\x58\xde\xd2\xb2\x4e\x6d\xa6\x61\xe8\xf5\x00\x00\x95\x5c\xa3\xd8\xcb\x43\x01\x54\xef\x1a\x09\x14\xc4\x00\xa8\x24\x19\x55\xe7\xe9\x01\xa8\x9a\x19\x1f\xce\x91\x03\x50\x8d\x32\x19\x78\xaa\xfb\xe7\xa7\x4d\xae\xa4\x1d\x06\x50\xbd\x63\x1a\x7e\xd4\x18\x40\x4d\xc4\x74\x4b\xf2\x7e\x00\xd5\x25\x66\x5a\x07\xa3\x01\x54\x53\x3f\xbd\x5d\x8f\xf7\xb1\x69\xd3\x76\xe4\xb1\xea\x42\x13\x90\x05\xb9\xc5\x74\x6f\x25\x16\x69\xa8\xeb\xb9\xf0\x21\x0b\xc7\x8b\x6c\x99\x33\xc8\x2e\x1c\x6f\xb9\x88\xfc\xf5\x41\xe6\x13\x12\xf7\xac\x14\xc7\x97\x88\x11\x65\xbf\xba\x71\xb5\xf3\x4d\x1c\x37\x17\x92\x2a\x64\x13\x26\xb9\x3d\xc0\xfa\x22\xc3\xd3\xeb\x5e\x89\xae\x20\x64\xc0\x98\xba\xfb\xba\xa7\x45\x78\xad\x75\xeb\x60\x40\x9b\xf4\x4a\x53\xaf\x87\xd3\xfc\xd7\xc8\xee\x34\x28\x78\xb8\x62\x55\xa8\x9c\x88\x9e\xf1\xc3\xa5\x09\x99\x72\x67\xb5\xb3\x1f\x6e\xc8\xdd\x24\x97\xa3\x65\xf7\xd0\xf6\xa6\x67\x9f\x56\xcd\x9a\xba\xf6\xd7\x9f\x65\x37\x68\x0d\xae\x55\x00\x90\xf6\xd2\x72\xad\x12\x01\x90\x0e\xd6\x5a\x56\xa1\x07\x20\x5d\xa0\xb5\xf7\xda\x64\x00\xe9\x27\xda\x0b\x8a\xe7\x01\xc8\x94\xe9\x18\x5f\x4c\x04\x90\x5d\xa5\xbd\xe3\x1c\x1f\x80\x4c\xa8\x9e\x43\x76\x10\x80\x9c\x8f\x5e\xc2\xa9\x57\x00\x72\x8b\x75\x03\x4f\x5c\x02\x90\x2d\x7a\x3d\x77\x07\x9e\x5b\x7f\xd4\x87\xfa\xa2\xdc\xce\x4a\xc6\x75\x73\x69\x5c\x3a\xea\x02\x2f\x6e\xa7\xfd\x3c\xe7\x1a\xad\x13\x95\xae\x45\xeb\x44\x25\x7d\xa5\xf7\x3b\x61\x52\x19\xf2\xfd\xdb\xd3\x29\x7b\x16\x9e\x4b\x79\xc2\x65\x84\xea\x23\x66\xc6\xd7\x21\x0f\x3c\xd6\xe7\x19\xae\xcf\x9c\xab\x9b\x50\x97\x6a\x55\xfa\xca\x5c\x69\x2f\xcf\x70\x83\xf1\xaf\x6c\x6c\x1e\x89\x48\xe9\xb8\xbc\x9e\x36\xf6\xa6\xa8\xa2\xc6\xf6\xd7\x8f\x96\xdc\x11\x3d\xac\xfa\xf1\x4d\xe6\x2e\x7f\xd1\x24\x15\xa7\x37\x31\xa7\xb6\x88\x0a\x2a\xdb\xbe\x15\xb8\xde\x2c\x9c\xa1\xf4\xf3\xcd\xee\xa6\x2c\xa1\x3e\xca\x0b\xdf\x8c\x01\x10\x50\x57\xfe\x51\x1f\x0c\x20\xf8\x46\xc5\xa4\x2e\x0d\x40\x28\x49\xc5\xa1\xfa\x29\x80\xd0\x3b\x55\xb9\x9b\x51\x00\x22\xcb\x55\x23\xae\xab\x00\x88\x9a\xa8\x8e\xbb\x52\x01\x20\xf2\x5a\x6d\x77\xd1\x01\x00\xb1\x78\xf5\x8e\x0b\x36\x00\x12\xfd\xd5\xa7\x9c\x09\x03\x10\xf7\x79\x3c\x83\xfa\xe2\xdc\xad\xa4\x75\xe1\xca\x9c\xe9\x38\x57\x28\x77\x06\xdb\xc7\x19\xef\x7c\xd4\xd5\x9e\xbc\x5b\x8c\xf7\xf9\xf0\xfa\x6b\xb8\x4e\xda\x7b\xb6\x1c\xf5\x1c\xbb\xe2\xee\xe0\xdf\x6f\x9e\x75\x0f\x7d\x82\x56\xf1\x51\x9f\x94\xa0\x59\x4f\x31\x8f\x53\xef\x37\xe0\x3c\xe2\xb5\xfb\x35\x8e\x27\xf6\xfe\x6d\xf8\xf7\xda\x16\x9f\xaa\x05\xf7\x13\xa2\x3a\xec\x8b\x4f\xbf\x6d\xbc\x8b\x94\x92\xbe\xb6\x0d\x3f\xc4\xc3\xab\xa8\xd5\xb1\x7c\xde\x12\x42\xfa\x1e\xfe\xbe\x65\xeb\x0b\x42\xfa\xf0\xfd\xb0\x39\x66\x49\x88\x74\xf3\x8f\xbc\xcb\x0f\x09\x91\x52\xfe\x29\xf6\x54\x8d\x10\x89\x29\x3f\xbe\xfc\x94\x24\x44\x6c\x54\x3b\x56\x0e\x10\x21\xcd\xc8\x5f\x08\x7f\x69\x42\x65\x81\x50\xec\x13\xf4\x75\x10\x96\xac\x41\x7d\x83\xf0\xaf\x2a\xdc\xd7\x14\x98\x55\xb9\x15\xaf\x65\xcb\xf0\xe4\xb5\xc0\x83\x12\xdc\xf7\xaf\xbe\x7a\xc4\xeb\xcf\xf8\x8b\x46\x9d\x35\xc5\x79\x20\xb8\x10\xfd\x0e\x32\x03\xa9\xfe\xeb\x98\xe7\x0d\xd4\x53\x1e\xf8\x74\x1b\xc7\xd3\xb8\xaa\x6a\x56\x17\xaa\x16\xd7\x55\xeb\xd3\x9e\xe0\x7c\xba\xfc\x72\x23\xfa\xa6\xcc\x4d\x79\x85\xe7\x12\x26\x49\x35\xe3\x38\x33\x7c\xf5\x07\x5c\x97\xd8\xe4\x7e\x43\x5d\x84\x8a\x25\xa0\x7e\x40\xe2\x06\x80\xfc\x7e\x42\xc4\x5e\x02\x38\xba\x13\x22\x6a\x06\xe0\xf7\x98\x10\xe1\x6c\x80\x95\xd1\x84\x08\x2e\x02\xd8\xbd\x99\x10\x01\x2f\x80\xac\x5d\x84\xf0\x7c\x01\x28\xdb\x48\x08\x5f\x05\xc0\x73\xc6\x57\x76\x48\x93\xdf\x7c\xbe\xff\xa7\xf1\x88\xa4\xb9\x82\x62\xd3\x7d\x8a\x4f\x99\x33\x49\x0d\x75\x1c\x88\xb8\xcb\x7e\xef\x56\x2d\xee\xeb\x1f\xca\xc2\x71\xae\x18\xf2\x98\xff\xc5\x25\x6c\xb7\x59\x21\x65\x02\xdd\x98\x1a\x7f\x13\xd7\x07\x49\xf7\xef\xe2\xbc\x92\x50\x5e\x83\x3e\x2a\xd1\x1a\x8f\x51\x87\xbc\x29\x8e\xf2\xe3\x6b\x16\xbe\x44\x3f\x9c\xc5\x71\xcd\xa8\x17\x9b\x39\xe5\x3d\xe6\xd3\xb7\xeb\x33\xe6\xc1\xdd\xef\x3b\x3e\x8f\x59\xaa\xd3\x4f\x57\xf8\x4c\x51\xe0\x2a\x80\x44\x3e\x12\xee\x60\x32\x89\x9e\x73\x1f\xe1\x44\x08\x8f\x08\xc0\xbc\xf1\x8c\xdf\x2e\x22\xbd\x78\xed\x33\x8c\xff\x2c\x67\xd7\x4f\x43\x09\x21\x5b\x01\xda\xce\x93\x3f\xf8\xfc\x1f\xcc\x99\xa1\x9d\x31\xb3\xcd\xe1\xbd\xf3\xf2\x8c\x5d\xd7\xa2\x57\xf1\xe5\x59\x79\xe8\x07\x77\x51\x86\xd6\x89\xca\x59\x78\x1d\xd7\x91\x27\x82\x68\x9d\x2c\x4e\x07\xb5\xaf\xed\xa1\x42\x37\xc6\xc8\x3d\x45\x7d\x58\xa4\xfa\x0b\xfc\x76\xeb\x0e\xbd\x9e\xdf\x8d\xa1\xeb\xda\x66\x77\xe3\x82\xb5\x9f\x44\xbb\x31\x80\x74\xe0\xf8\x38\x66\x4f\x17\xce\x43\x6e\x6f\xe8\xa7\x72\x3e\x18\x9c\xfe\x81\xf8\x01\x08\x75\xbf\xe3\x44\x00\x03\xe6\x6c\xe9\x51\x4a\x71\x3a\xdb\x01\x5a\xc5\xae\x39\x5e\xfb\x38\x5b\xf9\xe3\x9d\xdb\x02\x70\x9d\x55\x42\xbc\x5f\x40\xf1\x25\x7b\x22\xfa\xe1\xfc\x67\x5e\xbe\x7f\xa1\xf8\x91\x39\x58\x34\x33\x85\xc2\x0b\x64\xb2\xf3\x7f\x5d\x46\xdd\xf0\x99\xf4\x72\x54\x8d\x9c\xec\xba\x83\x75\x23\x39\x1d\xd4\x81\x85\x8f\x70\x1c\x8c\x7b\xff\x1c\xef\xff\xf6\xab\xaf\x71\xfd\xbd\xa5\xf4\x1d\xfe\x9c\xf3\x05\x5a\x52\xf9\x15\xc7\xcd\x39\x47\x7e\xa1\x8f\xd4\x64\xa6\xff\x19\xc9\xfc\x52\xb8\x7a\x28\x86\x92\x14\x65\x99\x3f\x08\xee\xfc\xcb\x92\xdf\x3a\x10\x02\x30\x80\xe9\x14\xc6\x33\x7e\x7a\x71\x1c\xc5\x4d\x19\x14\xf7\xb1\x9d\x31\x4e\xef\x80\x3c\xf6\x16\x80\x12\xa6\x13\xa8\x62\xfa\x86\x7a\xa6\x13\x69\xb7\xf8\x33\x1f\x3d\x79\xe1\x63\xed\xe5\x6e\x37\x9e\x2d\x28\xc7\x3c\x64\x4c\xac\xc2\xf9\xff\x78\x7b\x1d\xea\x62\x0f\xa9\x53\xdd\xdf\x9e\x84\xa6\xab\x74\x3c\x7c\x8b\xad\x30\x52\xeb\x23\xb6\xff\xf5\xbf\x3e\x57\x74\xe3\xca\xc1\x9d\x58\x9f\x33\x88\xc5\x35\x9d\xf9\xc1\x70\x7a\x20\xae\x3e\x90\x2d\xd3\x03\xe9\xb2\xdf\x93\x4e\xf8\x9d\x07\x7e\xe6\x70\xa7\xc1\x76\xba\x1c\x98\xd3\xa3\x0f\x73\x84\x9c\x39\xbd\x77\xbb\xd8\xc1\x1c\x00\x13\xdb\x7a\xe7\xe3\x34\xbb\xee\xe1\xf5\xd9\x4e\x59\x1d\xab\xa0\xc9\xe9\x3f\xbe\xf5\xff\x67\x5e\xb2\x9c\xef\x62\x7c\xa9\x6d\x0f\xb7\xd3\x7e\x50\x8f\xfb\x07\xfb\x4b\xa9\x1e\x26\x6e\x57\x1b\x9e\x3f\xd8\xee\xfd\x09\x5b\xdd\xa6\xc3\xdf\x71\x5d\xc0\xf9\x02\x85\x8c\xa5\x38\x9b\xd5\x49\xe2\xda\x01\xe7\x0b\xe3\xc6\xf2\x61\xb5\x0a\x7a\xe9\x1f\x24\x63\x7e\xe7\x81\xb7\x91\xf4\xd2\x81\x58\x33\x9d\xcb\x30\xa6\x73\x98\xcc\xe2\x0c\x66\xfd\x61\x03\x6b\x3f\x31\x03\x7b\xe7\xe3\x18\x7b\x42\xcc\x66\xed\xa7\x47\xff\x51\xdf\xbb\x9d\x3c\x8d\xa5\xd8\x72\x93\x62\xe7\xa8\xee\x71\x80\xea\x3e\x8f\x6c\x6b\x40\x7d\xe0\x81\x29\x6f\xb0\x7d\x24\xac\xff\x88\x3e\x48\xbb\xe4\x3a\x70\x3d\xbd\x2d\xa8\x13\xf3\xd5\xa3\x03\x61\x3a\x18\x4e\x07\x12\xf0\x92\x22\xe7\x0f\xc4\xe9\xe3\x7a\x74\x20\x4c\x3f\xa4\xf1\x90\xa2\xc4\x13\xe8\xad\x03\x21\x00\x0a\x6c\xc7\xcf\x8c\xb5\x63\xb7\xcd\xbd\xfb\xc7\x6c\x16\x57\x28\xfb\xf9\x26\x16\x6f\x8f\xfe\xe3\x10\xc5\x14\x36\x4e\xfc\xad\xff\x28\xf6\xee\xdd\x4e\x1e\x30\x07\xde\x46\xae\x1e\x0c\x3b\xbf\x39\x88\x69\x22\x38\xfd\xc3\xdf\x3e\x18\x7f\x23\xe7\x8f\xc0\x9d\x0f\xe7\x74\x20\xa3\x98\x8e\x62\xd2\x32\x8a\xb3\x9d\x29\x2e\x65\xe7\x83\x37\x64\x50\x8c\x65\x9f\x77\x78\x1e\xc5\x1c\xf6\x79\x57\x8c\x28\xde\x1b\x40\xf1\x25\xe3\x1b\x7f\xc4\x13\xf2\x73\x3e\xe9\xad\x7f\x60\xef\xd1\xc8\xf6\xd8\x9f\x32\x3d\x44\x1d\xd3\x87\xdc\x67\x7b\xd0\x77\x18\x57\x7b\x73\x38\xc5\x32\xf6\x99\x7f\xea\x1f\x3c\xe8\x39\xfe\x7f\xe8\x1f\x7a\xd7\xc3\xf9\x6f\x1d\x08\x77\x3e\x9c\xd3\x0f\x78\xb1\x9f\x33\x3d\x0c\x99\xc9\xce\xc7\x87\xf8\xb0\x3c\xc8\xfe\x7b\x1e\x72\x59\xde\x4a\x4c\x28\x3e\x60\xaf\xbf\x3e\x4b\xb1\xbb\x45\x76\xb0\x33\xc7\xef\xb2\x28\xbe\x62\xdc\xcb\x73\x56\x9b\xe0\xb1\x28\xc5\x9a\x28\x8a\x77\xd9\x3d\xbd\x79\x9b\x62\x39\xfb\xcc\xab\x8c\xab\xba\xec\xf2\x3b\x0f\xff\xd0\xc1\xb0\xf3\xde\xd6\xac\x5e\x8c\x55\x39\xe9\xc5\x83\xff\xad\x03\x71\x9c\x40\x91\xf3\xd1\xf0\x64\xda\x1d\x5f\x16\x7f\x20\x8b\x63\xc9\x5a\x8a\xe1\x33\x28\xc6\x04\xfd\x95\x87\x51\xec\x1e\xb1\x7b\x57\x93\x42\xb1\x99\xe9\x32\xe0\x04\x21\x5f\xd9\x3d\x69\xee\xfc\xab\x1d\xa8\xf7\x6e\x07\xd5\x2f\x29\xde\x66\x6d\xfe\x6f\x1d\xd0\x95\x7a\x8a\x45\x6f\x7e\xe7\x61\xd0\xd9\xde\xed\x80\xd3\xc1\xfc\xed\x83\xf1\x9f\x3a\x90\x86\xde\x79\xe4\xfc\x45\xc6\x1e\xa4\x38\xad\x83\xe2\x22\xf6\x7b\xeb\x0f\xfe\x95\x07\x1b\x8a\x67\xd8\xfd\xb8\x56\xd2\x3b\xa6\x77\xc9\x84\x00\x3b\x63\xdc\xbe\x95\xe2\x1b\x39\xd6\x0e\x38\x1d\x10\xbb\x7e\xa0\x44\xb1\xca\xfd\xaf\x7e\xf0\x9e\x6c\xc6\xb6\xf6\x92\xea\x61\x8a\x58\x9e\x0a\x96\xfc\xce\xc3\x3f\xea\xa0\xb8\xf6\x8e\x97\x3b\xff\xce\xf1\x7f\x46\xdf\xd8\xcf\xaf\xf7\xce\x07\xa7\xa7\xe2\xfa\x07\x37\x4e\x4c\x65\xef\xbf\x90\xea\xd2\x36\xae\x5b\x87\x38\x39\x86\xfe\xdd\xa6\xc3\xc7\x58\x1e\xbc\x29\x5e\x4f\x62\xb1\x31\x4d\x4f\xfb\x33\x42\x7e\xb5\xf4\xee\x0f\x4d\xad\x54\x07\xc6\xe9\xc1\xb8\x7e\x50\xcd\x6a\x61\xdd\xcc\x27\xe8\x68\xf5\xb7\x0e\xea\xd2\x63\x82\x23\x76\xa1\x22\xd5\x8b\x5d\x18\xfc\x3b\x0f\xff\xe5\x03\x62\xf4\x85\x22\xc7\xff\xea\x46\xb0\x6b\xf6\xfd\x0c\x38\x5d\x0c\x7f\xaf\x71\x83\xd3\x49\x85\x7b\x51\x7e\x4c\x60\xf2\x4d\xc4\x3b\xf3\xb1\x9e\x0c\x6f\x5c\x18\xd5\xc7\x3d\xdd\xc5\xda\xff\x61\x36\x96\x9d\x13\x41\xdc\x7c\x83\x7e\xee\xc5\x67\xdb\x10\x6d\xbf\xc9\x13\xf2\xed\x16\xd5\x45\xbd\x7d\xcd\xf3\x1c\xdb\x81\x18\x11\xc7\x36\xe3\xce\x87\xfa\x98\x6a\x1d\x41\xfe\x6e\xbc\x95\x21\x90\xda\x8d\x37\x2e\x09\x62\x7e\x4a\xaf\xf3\xdb\x77\x63\xb1\x29\x7f\x34\xde\xff\x5a\x5e\x9c\xc9\xce\x1b\x0b\xa2\xc2\xf5\xac\xbb\x40\x12\x97\x07\xae\x1d\x70\xe7\xfe\x8d\x4f\x51\xd4\x61\xf7\x9b\xd3\x7f\x70\x3c\x30\x87\x9c\x3f\x08\xf3\x4b\x21\x96\xac\xbe\x90\x23\x3d\x17\xfb\x6e\x18\xea\xfe\xf8\x6e\x4c\xc4\xfb\x2e\x50\x30\x0f\xdb\x95\xf0\xfb\xb5\x38\x7e\x08\x6b\xee\xc2\xbc\x0b\x95\x1f\xd9\xdc\x8d\x82\x8b\xf2\xf0\xef\x05\x79\x6f\xe2\xbc\xc3\xff\xa4\x49\x01\xff\xfe\x73\x97\x29\x21\x1f\xb7\x0a\x96\x77\xbf\xf7\x0b\x31\x11\xbc\xcf\x8f\x82\xc4\x51\x1f\xc3\xf9\x21\xdd\x4c\x17\xc7\x99\xfb\x86\x97\x18\x3e\x3f\x5d\x95\x92\xc0\x27\x98\xe2\x42\x09\x74\xf6\x2a\xf0\x14\xc3\xeb\xf3\xf2\xe2\x78\xa6\xfd\xf4\x14\xf1\x90\x6e\xcc\x91\x17\x0b\xe2\xf2\xd0\xa3\x7f\xe8\xd3\x3b\x7e\x2e\x5e\x8e\xff\xe4\x78\x60\x0e\x55\xb8\x7c\xa0\xfe\x85\xab\x23\xc4\xe9\x83\x84\x33\x3c\xcc\xba\x51\x7c\x95\x2f\xfa\x69\x89\x7f\x99\xf3\xac\x1b\x25\xbb\xd6\x60\xbb\x97\xbc\xb2\x8b\xd6\xd7\x10\x3c\x8a\x9a\x47\xf1\xb3\x17\x31\x0f\xe2\xa3\xef\x60\x1f\x10\x9b\xf6\xc6\x8d\x90\x5f\x93\xc5\xf1\x39\xa8\xd9\x52\xd6\xa6\x1b\x9f\x46\xcb\x61\x05\xc0\xbb\xc7\x95\xef\x00\x08\x7d\x2c\xaf\x53\x8e\x01\x10\x3a\xc5\xf9\x61\x5d\xae\x54\x89\x06\x10\x19\xdb\xa3\x7f\xda\xa2\x9c\x04\x20\x54\x7a\x36\x4f\xb9\x04\x40\xa8\x39\x57\x5c\x79\x37\x80\xd0\xb6\x0c\x1b\xd5\x61\x00\x22\x8f\xd3\xef\x29\x7f\x02\x10\x7a\xfd\x67\x3f\xd0\x67\xf3\x9d\x86\x78\xef\x78\x39\x1f\x04\x19\xa6\xb3\xe4\xce\x83\x73\xaf\xd3\xdf\x13\xf2\xd1\x41\x3d\x84\xf8\x0c\x2b\x9c\xf7\xa5\x47\x0c\xc2\xb1\xbc\xcf\xf1\xb1\x38\x9e\xc8\x19\xcc\x42\x3d\xa0\x5c\xc4\x6a\xac\x9b\xd1\x97\x2f\x46\x00\xaf\x4f\x1d\x9f\x48\xc8\x2f\x77\x05\xc1\xee\xc7\xce\x6f\xbf\x14\x8f\xdc\x71\x20\xe4\xf3\x3b\xa5\xbc\x97\x6b\x09\x69\x8f\x55\x46\xdd\x64\xc3\x3a\x15\x49\x00\xa1\xac\xfb\xfa\x6a\x2e\x00\x62\x89\x95\xf6\xea\xd9\x00\x12\x45\xa5\xe9\xea\x43\x00\x24\xf4\x2f\xb5\xab\xed\x01\x10\x37\x2c\x10\x55\x17\x01\x10\x4f\xcf\x3b\xa8\x96\x09\x20\x2e\x79\x7a\x8e\xda\x71\x00\xb1\xa7\x59\x5f\xd5\x6a\x00\xc4\xbe\x9c\x7c\xa0\xde\x9d\xe3\xcf\xa9\x3f\xd5\xf5\x00\xc4\x9a\x8f\xc6\x69\xf8\x02\x48\xc8\xfe\x39\x0e\x68\xfe\xea\x1d\xbf\x34\xd3\xdb\x72\x3e\x00\x7c\xf1\xbd\x91\xbe\x2e\xbc\x4c\x1a\xf9\x7e\x4e\x17\xd3\xd7\xdc\x18\x7d\xd4\x94\x6d\x9d\x77\xf3\x64\x00\x28\xaf\xf2\x7e\xc8\x7b\x14\x40\x79\xd2\x0c\x41\xbe\x65\x70\x45\xe9\xfd\xca\xa9\xfc\x3c\xdf\x72\x55\x04\xb7\x57\x09\xf9\xb5\xef\x54\x39\x9c\xdc\x2e\x52\xd1\x96\xa8\x2a\x78\xe6\x81\x58\xce\xdb\x7b\xaa\xd3\xca\xf9\xc4\xdf\xbe\x3a\xaf\x7a\xbf\xde\x44\x62\xf8\x8b\x56\xb5\xc2\x8e\x3c\xf1\xd8\xba\x7a\x8d\x7c\x00\xc9\xb6\x9b\x7e\x5a\xf7\x00\x64\xa0\x74\x8b\xd6\x13\x00\x99\xe7\x85\x01\x3a\x83\x01\xfa\xcc\x3f\xff\x46\x5b\x13\x40\x26\xef\xf4\x03\xed\x0e\x00\xd9\xe0\xec\x7d\xda\xab\x00\x64\xf6\x9f\x8c\xd6\xba\x03\x20\xbd\x28\xed\xb6\xb6\x08\x80\xf4\xaa\x63\x92\xda\x17\x00\xa4\xdf\x1d\xde\xac\x75\x08\x40\x6a\x65\xd2\x18\x2d\x37\x00\xc9\x4a\xf8\x47\x1d\x14\x42\xa4\xcb\x7b\xc7\x4b\x26\xfc\x89\xfc\x6c\x35\x2f\x72\x88\x60\xfb\x91\xdd\x26\x84\x7a\x2a\xa5\xaa\xbe\xb8\x3e\x50\xd7\xd7\x39\xcf\xbb\x06\x40\x63\xbf\x9d\x32\xbf\x32\x80\xa6\xe0\xf0\x19\x02\xa5\x1d\x8b\xb4\x05\xa7\xf4\x11\x09\xfe\x30\x48\xc7\x69\x89\x88\x84\xcf\xdb\x23\x3a\xc9\x5b\x46\x4b\xe7\x37\x7d\xd4\xc9\xdc\xbf\xb1\x4f\x6a\xfd\x02\x9d\x75\x99\x69\x7d\x2b\x1e\x5f\xd5\x71\x2d\xf9\xa1\xa0\x58\x77\x5e\x67\x52\xdd\x17\x85\xa3\x35\xa7\x74\xf9\x3e\x3a\x28\xe8\xdd\x4e\xd7\xb7\x01\x50\x74\x29\x9d\xdd\x4f\x16\x40\x89\x3f\xff\xa5\x41\x28\x80\xf2\xa8\x33\xed\x06\xd6\x00\x4a\xae\xd9\xfd\x0c\xa2\x01\x94\x0c\x4f\x6d\x30\x70\x06\x50\xf4\x49\x6d\x30\xd2\x06\x50\x56\x38\xaa\x6d\xe0\x00\xa0\x60\x9d\xf4\xda\xa0\x06\x40\xc1\xf7\x60\xa2\xc1\x74\x00\xf9\x55\x89\xc3\xf4\x6f\x03\xc8\x05\xee\xf5\xd1\x9f\x05\xd0\x67\xfb\x9f\xfd\x9f\xbb\xff\x7f\xc5\xcf\xf8\x4f\x7e\x56\x0f\x45\x9a\xf9\x62\x70\xfe\x18\x1a\x1b\x28\xea\xeb\x8b\x61\xdd\x1c\x43\x51\x55\x17\x5e\xf9\xce\x6c\xc3\xd9\xa6\x67\x84\x64\xda\x6f\x9b\x0c\x72\xcb\x10\x17\x7c\x3b\xd5\xf4\x94\xaf\x87\x74\x47\x43\x91\xe9\xb7\x79\x0a\x7d\x23\x1f\xab\x9b\x2e\x0f\x7b\xa3\x94\xf8\x20\xd8\x24\x29\x6e\xa1\xea\xc3\xaa\xe5\xc6\x9f\x53\x3f\x6a\xc4\xdd\xcc\x35\xb6\x2e\xb4\xd2\xf2\x28\x3f\x6c\x74\xb7\x5a\x54\x5b\xf9\xfa\x3c\xa3\x5f\x6f\xdf\x6a\x3d\x2d\xbd\x60\x62\x03\xa0\x79\xfb\x42\x98\x69\x08\x80\x96\x6f\xf6\x4e\xb3\x0e\x00\x6d\x83\xf4\x57\x66\x67\x00\x34\x2f\x1c\x5f\x6e\xf6\x01\x40\xd3\x32\x25\xc3\x82\x07\x40\xf3\x64\xd2\x14\x33\x23\x00\xb5\x6b\x89\x4d\xa6\xcd\x00\xaa\xd7\xf6\x4a\x9b\xd9\x00\xa8\x4e\x8a\x3f\x6f\x2e\x0f\xa0\x9a\x17\x9b\x6c\xea\x04\xa0\xac\xb9\x33\xd0\xf8\x3b\x80\xa2\xda\x9f\xfd\xfc\xdf\xe3\x17\x64\x4f\x81\x72\xcb\x29\x6a\xad\x64\x71\xb3\xd7\x39\x5e\xdc\x12\xf7\x9d\x7e\x2a\x3b\xc4\xca\x95\x11\xf2\xae\xac\x7f\x85\x7e\xb9\xf0\x81\xa6\x14\x87\x2a\x87\x5f\x32\x9d\x8f\x0a\xfa\x8f\x1f\x59\xa1\x90\x51\xdd\xe4\xd0\x10\xf0\x44\xf5\x5d\xe5\x3b\xfb\xba\xe5\x1b\xb5\xd2\xaf\xdd\xb4\xdb\x1c\x75\x4e\x2f\xeb\xf2\x57\x5b\xfd\xe4\x9b\x06\x57\x0b\x33\x6c\xc4\xcf\x29\x1a\x0b\x5c\x3c\x6d\x2d\x56\xb9\xc4\x44\xe9\x7c\xb0\xd5\x85\xc6\x95\x26\xd6\x79\xd2\xd6\xf3\x3b\xdd\x8d\xbe\x66\xec\xb7\xd9\x01\xa7\x8d\x6c\x8e\x36\xd9\xc6\x43\x91\xe1\xa6\x43\xa7\x6d\x4b\xe1\xb6\x81\x78\xe2\x54\x5b\x7f\x78\xaa\xbf\x79\xef\x15\x9b\x07\xd0\xa2\x27\x11\xff\xc9\xd6\x09\x3e\xea\x46\xc4\xbe\xb7\xd1\x01\xd0\xde\x16\x2d\x66\xeb\x00\xa0\x1d\xbd\x5d\xc0\xfa\x3d\x80\xe6\xfc\xad\xc6\xd6\xfc\x00\xea\xe3\x36\x0f\xb6\x0e\x01\x50\x97\xf8\xdf\xf1\x2b\x9c\xa5\xc8\xf1\xa0\x5c\xdc\xf6\xed\xe4\x0f\x5e\xfc\x6b\x03\xf5\x89\x68\x1d\x3d\x3c\x56\xbc\x8d\x90\x06\xfe\x11\x8e\x1a\x2f\x85\x22\x6b\x74\x86\x75\x59\x7e\x90\x15\xbf\xc9\xe3\x71\x65\x70\xa4\x6a\x63\xe9\x31\xf7\xd0\x09\x75\x3a\x41\x85\x8b\x07\x35\x2d\xfc\x68\x50\x9b\xd7\xd7\xf5\xe7\xc6\xcb\xa6\xa1\x39\x99\x03\x4d\xf6\x8d\xb1\xec\x9b\x21\xe2\xb2\x2f\xf3\x85\xf5\xc9\x13\x73\x9c\x43\x4b\xc1\x36\xf8\xf8\x55\xa7\xa3\x8f\x5a\x6d\x1f\x1c\x53\x72\xba\xf4\x79\x90\xad\x5a\xd2\x2a\xe7\x7c\xf0\xb1\x9e\xb4\x57\xcd\x25\x0c\xe6\x58\x16\xc6\x7e\x75\x11\x86\x28\x33\xd8\x75\xd7\xf9\x38\x24\x9a\xee\xd9\x5e\xed\xec\x0c\xa7\x8d\xc3\xb6\xb6\x38\x77\xc0\x05\x63\xd1\x2d\x2b\x9c\x72\xa0\xda\x60\xee\xa6\xd5\x4e\x0a\xf0\x5c\xbf\x2d\xbc\xb2\xff\x47\xf8\xa2\xbb\x3b\x6c\xa0\x23\x3f\x74\xe9\xac\x5e\xa3\xe3\x10\x0f\xa0\xa5\xff\xcf\xf8\x79\xd3\x7b\xc7\xcf\xdd\x77\x8e\x07\x1d\x80\xfb\x12\x5d\x5e\x43\xf0\x29\xbe\xdd\xcc\x07\xf7\x5d\xdf\x38\x8e\x43\xff\xf7\x67\x43\xfd\x6c\xf9\xde\x11\x72\x7f\xb4\xff\x2c\xa5\x44\xbe\x13\xe5\x12\x7e\x23\x8d\xd6\x4b\x8f\xbf\xb4\xcd\xf7\xb3\x73\x9c\xaa\xe2\x59\x8b\xd1\x53\xbd\x1b\x0d\x56\x9c\x7a\xef\x13\x38\x23\xcf\x7c\xc4\xf1\xbe\x23\x7f\xad\x3a\x6e\xe3\x9f\x74\xdb\xf3\xf9\xae\xa3\x0e\xdb\xf7\xbf\x1c\x56\x7e\xbc\xcc\x29\x32\xe1\xd3\x50\xde\xc2\xa9\x2e\xb3\xe2\x3e\x79\x3c\xbd\x67\x3e\xa0\x7f\xac\x9c\xc7\xec\x96\xfd\x2e\x4f\xa2\xbf\x0c\xb1\xe9\x6a\x72\xee\xb3\x4d\x78\x88\x01\xc8\x39\x3c\xdd\xc4\x3f\x44\x07\xfa\xdb\x39\x85\x97\x78\x98\xc1\x24\xeb\xe3\x61\x5b\x3c\xac\x60\x91\x95\xdc\x9a\xeb\xee\xd9\x10\x6e\xb1\x79\x55\xfe\xe0\x1d\x70\xd0\x8c\x77\x45\xe4\xa0\x6c\x38\x63\xfc\x6a\xb9\x93\x5b\x08\x54\x1a\x4e\x5e\x26\xe7\x76\x10\x6e\x1b\xf6\x59\xb2\x61\xa0\x10\xb4\xeb\x09\xff\x8e\x9f\x30\x97\x4f\x45\xf6\x94\xcf\xe9\x00\xec\xd9\xee\xc6\x60\xe4\x6d\x7f\x26\xf9\x60\x5d\x8c\xf7\x45\x13\x71\x57\xe4\x45\xfc\x54\xdc\xb7\x7e\x24\x32\x13\xf7\x77\xab\xa4\xe7\xe2\xfe\xde\xf5\xad\x0b\x47\xc8\xe6\x12\x52\x68\x30\xcf\x40\x27\x54\x62\x61\xae\xed\xac\x57\xb6\xa7\x94\x1e\xa7\xce\x9e\xfe\x61\xe8\x4f\xfd\x43\x07\x22\xfd\xcf\x4e\x5a\x6a\x3d\x31\x3e\xcc\xef\x73\xf0\xa6\xfe\xa7\x77\x6c\x9d\xb0\x25\xe2\xed\x00\x8f\x88\x8b\xbe\x6e\x87\xf6\xba\x15\x6f\x54\x19\xbb\xe0\xec\x08\x77\xd3\x75\x3b\xc6\xf0\x57\x0e\xf3\x98\xbe\x76\xfa\x68\x95\x26\x37\x0f\xdf\x35\x64\xf4\xba\x2e\x99\xc1\xdf\x43\x23\x46\xdd\xef\x3a\x37\xf0\x6a\x48\xe3\xa8\xd9\x5d\x4d\xce\xb9\x8b\xe3\x7c\x3e\x82\x58\xff\x17\x8b\x9f\x7a\xa7\x80\xb6\x83\xc1\x22\x5e\xaf\x18\x70\xb7\x8d\x5e\x10\x3b\x72\x01\xcc\xb5\x3a\x34\x9f\x77\x84\x1a\x6c\xb1\x90\x9b\xfb\x6e\xf8\x53\x38\x68\xfa\x65\xf6\xee\x61\x2f\xe0\x8c\xf1\xa1\xd9\x1e\x43\xcd\xe1\x86\xe1\xfa\xdf\x79\x90\x0d\xea\x7d\xff\x1d\x6c\x29\x52\x1e\xf8\x67\xff\xb1\xd8\x3e\x5a\x98\x2f\x42\x83\x3e\xf5\x83\xa9\x93\x0e\xa2\xfc\x57\xc9\x12\xe4\x85\x4b\xa7\x2d\xc7\xfa\x10\x17\xcf\xad\x4a\x15\x76\x26\x24\x3b\x77\xd5\x60\xd5\x29\xc2\x45\xc7\x7c\x42\x8d\xcc\x26\xc8\x5b\xec\x57\x0b\xf1\x73\x13\xd4\x71\x8a\x8e\x08\xca\x18\xc7\x6f\xb1\x22\xfc\xfb\xdc\xa8\x39\x6a\xce\xf7\x57\xd9\xcd\xca\x0b\x7b\x35\xc8\x3a\x64\xc3\x8c\x75\x09\x4e\x43\x46\x06\xd9\x4f\xf7\xca\x18\x3c\xec\xda\xbc\xd9\xd3\x12\x4a\x73\x3d\x87\xcf\xbe\x3a\x75\xe2\xe3\xa5\x9e\x53\x67\x79\x4e\xb5\xfd\x72\x63\xf8\xe8\x19\xfe\x53\xa6\x75\x8d\xf1\x58\x31\xdd\x61\xf2\xf3\xae\xdd\x6e\xcb\x03\xb2\x27\xa9\x76\x95\x0c\x58\x3e\xf5\x89\xdf\xf9\xae\xa7\xce\xdb\xa7\xad\x98\x70\x00\x78\x1d\xa5\xfd\xdf\x8c\x7f\x06\x7a\xf6\x63\xfd\xd3\xc6\x7d\x80\xa1\x36\x59\x93\x0c\xc6\x09\xc1\x6c\xcb\x2e\xbf\x67\x63\x96\x43\x98\xf9\xd7\x49\x3e\xa3\xed\x61\xbb\xd9\x75\x00\x71\xb6\xdb\xa7\xcb\xf4\x70\x8e\xac\x1d\x0c\x47\x7f\x98\x9f\x26\x13\x91\xef\x6d\x49\x9b\x89\xe7\x11\x9f\x8b\x2e\x44\x1e\xa6\xc6\x82\xd6\x09\xb9\x99\xb3\x1a\x7d\x50\x4a\x2c\xb0\x39\x90\xbc\x06\x5a\x37\x26\x63\x7c\x04\xee\x73\x1e\x4b\x8b\x3c\xa8\x40\x08\xd9\x5b\xb3\x25\xa3\x9f\x8c\xcc\xe6\x1d\xa2\x1b\xed\x1c\xad\xd4\x2f\xae\x0f\x5e\x37\xd5\x2b\xdc\xf8\x4e\x48\xee\xaa\xca\x80\xb7\x0e\xc3\xe6\xae\x09\x5d\xb3\xc2\xc2\xd5\x2e\xd0\x77\xd9\x85\x5d\xfe\x83\xfb\x4e\x99\xbf\xd4\x3e\x2d\xc0\xfd\x93\x5f\xe5\x92\x97\xc5\x3e\x1e\xf5\x13\x96\x04\xdf\xaa\x5d\xe2\x71\x63\xbc\x47\xf0\xaa\x0f\xa7\xdd\x37\xfb\xbe\x5d\x6c\xd2\x95\xe8\x76\xda\xd7\x60\x21\x4f\xd7\xcd\x01\x53\xc6\x8d\x98\x37\xb7\xeb\x9b\xd3\xb4\x71\xc3\xe7\xb8\x82\x68\xff\x2f\x63\xaf\xcc\x9c\x07\xc6\xf6\x0b\xc6\x6a\x06\xf6\x81\xa1\xb6\xfd\xc6\x8c\x0d\x18\x09\xd3\xac\x65\xc6\x3a\x4c\x1d\x0e\xd3\xac\x7e\x8e\x96\xf5\xe7\x87\x28\x73\xc5\xd1\x3b\x26\xf1\xc3\x2e\xb3\x88\xdf\xe3\x3f\xd7\xfe\x47\xa0\x3f\x4c\x47\xf5\x64\x6c\x07\xad\x3f\xe7\xe0\x6e\xd7\x73\xab\x10\xdc\xcf\x7f\x10\xbc\x9a\x9e\x7f\xdf\x1a\x8e\xbb\xa9\x97\x9f\x45\xe0\x75\x5e\x4c\x14\xf2\x9c\x19\xa6\xbb\x70\xb7\xec\xb0\x79\x1c\xee\xbb\xed\x69\x4f\xc8\x10\x8b\x27\x64\x7b\xd9\x6e\x43\x8d\x38\xb1\xc2\xf5\x82\xb1\xdb\xac\x0d\x94\x9c\x42\x06\xef\x1c\x33\x54\x58\xdf\x70\x66\x41\x54\xf2\x64\x07\xab\x13\xfe\x3c\xdb\x86\x85\x74\x39\x6c\xf1\x2d\xd8\xca\xb3\x3d\xd9\x49\x77\xb4\xdc\x96\x15\x47\xbf\xbb\xf4\xf1\x5a\xb8\x39\xb8\x70\xbe\x4b\xe7\x08\xb3\x4d\xd6\xf7\x43\x5d\x5e\x79\xaa\x6e\xcc\x69\x8b\x70\x2e\xf7\xf4\x08\x7f\x03\xc2\x8e\x33\x87\x1f\x0a\x9b\x05\x16\xf6\x61\xc3\x97\xac\x1a\x09\x3e\xb6\xf2\xc3\x4f\x85\x96\xc3\x64\x1b\xe5\xe1\xf3\x96\x9e\x82\xa5\x56\xfa\xc3\x3b\x82\x1d\x61\x9d\xa5\xce\xf0\xf1\x8b\x42\x21\xc6\x7c\xf1\xf0\x09\xf3\x27\xc1\x71\xd3\xf9\xc3\xb2\xe6\x8e\x82\x3c\xe3\xd4\x61\x0a\xb3\x7f\x40\xa9\xd1\x04\x00\x5b\xde\x5e\xed\xbf\xd0\x1f\xf7\x2b\xdf\x8d\x9f\x8f\x71\x3d\x2f\x5e\x86\xbb\xc4\x0f\xcc\xd6\x61\xbd\x8f\xca\x0d\x11\xb8\xfb\x77\x79\x1d\xdd\x35\x3e\x5b\x1d\x83\xfe\xee\xa7\x5e\x25\xa0\x2e\xe6\xf0\xfa\xfd\x38\xbf\xee\x19\x76\x08\x77\x17\xb7\xdd\x3d\x8c\xef\x13\x9e\x71\x64\x92\xe2\x1b\xbe\x4d\x21\x65\xc9\x87\x8c\x27\xca\x3e\x99\x55\x71\x88\xdf\x55\x44\x63\xd5\x44\xc1\x44\x21\x5f\x21\xe3\x33\xa3\xa6\xee\x2b\x5d\xb4\xcc\xfc\x8e\xe7\x92\xbd\x45\x5b\x8f\x59\x2d\xf3\xb8\xbb\x67\x53\x4a\xa8\x8d\xf5\xa0\xfe\x09\xe7\x2f\xf6\xb5\x69\x77\x15\xdf\xbd\xf3\xae\xa1\x4d\xed\x40\xf9\xf8\x17\xcd\x7e\xd6\xf7\x07\xea\xc7\x6d\x87\x95\x96\x9e\x03\xdb\x77\x7c\x82\x2d\x16\x43\x06\x0a\x44\x6e\x84\x63\xa6\xbb\x07\x16\x6d\x71\x86\x0c\x93\xb7\x03\xf7\x6c\xb4\x80\x02\xe3\x8d\x03\xb7\xad\xfb\x04\x37\x8c\x4c\x5c\x3b\x56\x03\x94\x19\x85\x0c\x0c\x59\xb9\x16\x9e\xf7\xdb\xeb\x7a\x7a\xf9\x69\x78\x62\xc0\xe3\x3a\x65\x69\x00\xbc\xd6\x3f\xcf\xc5\xdf\xf9\xd4\x1f\xc7\xc9\x77\x0d\x0b\x71\x00\xa8\xff\xb8\x02\x77\xbb\x6b\xa2\x36\x60\x7b\xa9\xa8\x8b\xc4\x5d\xce\x62\xa0\xf7\x3b\x4f\x2b\x81\xd6\xfb\xce\xa1\xbb\xc5\x47\xfb\xa7\x60\x5d\x87\x7d\x83\x8f\x22\x9f\xb5\x63\xe2\x09\xdc\x6d\x0e\x63\x7e\x21\x4b\x35\xb2\x16\x4a\xd6\x12\x32\x3b\x38\x53\x5a\x67\x8d\xf8\x7a\x3f\xeb\x53\xfc\xfd\xc5\x15\xcf\x8c\x9c\x7c\xe2\x8e\x8f\xb6\x4e\xa4\x47\xd2\x09\xd9\x79\x9a\xfa\xb7\x06\xbe\x4c\x73\xd8\x34\xd3\x70\xb0\xd3\xce\x54\xbf\x83\xf1\x46\x2f\x1c\x84\x8e\xaf\x3c\x57\x68\xec\x6b\x0b\xc7\x0e\xdf\xfa\x62\xec\x6c\xdb\xf7\x18\xef\xeb\x63\x46\x16\xb6\xe3\x8f\xfa\x43\x6d\xbf\x3a\x3b\xde\x43\xa2\x50\xdf\xcf\xd4\x6e\xe1\xbe\x40\x78\xad\xbf\xce\xee\xc1\x6e\x0f\x68\xd3\x7b\x65\x1f\x1f\x93\x00\xef\xf4\xee\xd9\x3d\x8e\x96\x05\xd0\x79\x6e\xff\x60\x5b\x2e\x80\x4e\xb5\x5d\x61\x84\x1c\x80\x56\xa1\xc3\x92\x8d\x3f\x01\xb4\x6b\xec\x9d\xd7\x97\x00\x68\xae\x07\x98\x8c\xbb\xb9\x1f\x4b\x82\x02\xbb\xb1\x71\xca\x4a\xd4\x07\xd6\x4e\xdb\x8c\x6c\xca\xad\xe2\x68\xdc\x25\x2f\x91\xa7\xa7\x46\xcf\xcf\x4a\xc4\xba\x30\x59\x4f\x92\x71\x1d\x79\xec\x1c\x65\x97\x12\x9d\x4f\xe0\xb8\xb9\xb3\x21\x03\xd9\x93\x8d\x4f\x73\x91\xdf\x5a\x36\xfe\x1c\xce\x1f\x33\x06\x5f\x4c\x24\xab\x08\x99\x2c\x7c\xb1\x59\x25\x52\xe0\xa1\x57\xe8\x85\x20\x8b\xe7\x32\x25\x6e\x71\x79\x1d\xc3\xe2\x55\x24\x1c\x3f\xe7\x6d\x9f\x11\xa9\x96\x6e\x7b\xec\x5c\xfb\xba\x0d\x1a\x45\x96\xd1\xe7\xe6\xef\xdb\xa2\x25\x62\x36\xf7\xec\xcd\xd3\x63\xb5\x16\x99\xec\x3e\xf3\xb3\xe2\xbb\x96\xad\x71\xea\x99\xbd\x2f\x78\x34\x89\x89\xdc\x99\xf9\x00\x6a\x7b\x4d\xc5\x32\x86\x02\xa8\xbd\x35\x1d\x98\xda\x08\xa0\x36\xce\x54\xe7\xe8\x38\x00\xd5\x44\xb3\x23\x49\x31\x00\x6a\xc7\xcd\x4a\x12\xad\x00\x54\xbf\x9b\x35\xec\x59\x0e\xa0\x3a\xc3\x7c\x7a\xdc\x1e\x00\x55\x2b\xf3\x8f\x3b\xf7\x03\xa8\xf2\x58\x98\x6f\x7f\x09\xa0\x72\xa6\x7d\xcf\x42\xf4\x7f\x7a\x91\xbb\xea\x12\x1d\xff\x37\xa3\xde\xe1\xb6\x24\xf5\x85\xb9\x12\x4c\xf9\xf0\x0b\xf1\x87\x90\xe7\xc9\xbe\x46\xeb\x85\xa4\x3a\xd3\x7a\x39\x07\x7e\x65\x22\xfb\x16\xab\x9e\x83\xba\x99\xad\x7b\xf3\x50\xef\xb1\x3a\xfe\x22\xae\x27\x16\x92\x4b\xc8\x32\x4c\x72\x2e\xc1\x75\x89\x77\xc8\x35\x90\xd1\x24\xc4\xcd\xfb\x9a\x7a\xbf\x26\x31\x0d\xbb\x6d\x57\xbd\xdd\xac\x65\x5f\x5a\xac\xb9\x1a\x30\xc5\x5c\xee\x8d\x71\xc1\x55\xdd\x95\x17\xe5\xe7\x19\x08\x5d\xe5\x8d\xcf\x51\x70\xd5\x9b\x59\x9a\x9c\x79\x50\x61\xa1\x4e\x76\x69\xff\xeb\x4b\xe4\xdb\x74\xe4\x4b\xee\x37\x90\xbe\x2d\x3a\xa6\x25\x9b\x7f\x1d\xe9\x33\x5f\x57\xa1\x20\x11\xa0\x4f\xa1\x4e\xfc\xb9\x7a\x00\xd9\xab\x7a\x03\x72\xba\x00\xe4\x42\xf5\x12\x4f\xbd\x04\x90\x5b\xa6\xfb\x3c\x2d\x0f\xa0\x8f\x9d\xfe\xac\x23\x8d\xdd\x6b\x62\xfd\x67\xc9\x0e\x00\x72\xb1\xfa\x39\x07\xe2\x00\xfa\xbc\xeb\x97\xb9\xf7\x06\x80\xdc\xc6\xd7\xef\xd7\xa0\x7f\x5e\x9d\xdf\x16\x3c\x45\x7c\x47\x3a\x06\xe7\xc1\xd2\xb8\x7d\xc8\x26\xe4\x2b\x51\x3d\x48\x4e\xfd\x71\x1c\x3f\xd3\x92\x28\x2f\x9e\xe4\x95\x8b\xeb\xc8\x84\xc0\x3c\xac\x0f\xb0\xdd\xb5\x00\x79\xd2\x70\x42\x59\x82\x65\x43\x4a\x31\x1f\x33\x8b\xae\xa3\x5f\xdf\xd8\x21\x95\x69\xdd\xe8\xb2\xa8\x2a\x9a\x47\x8f\x10\x5b\xc1\xbb\x96\x6a\x77\xf8\x6b\x8c\xbe\xde\xd5\x71\xd8\x2c\xe6\xaf\xaf\x74\x77\xfc\x78\x49\xf1\x3b\xda\x2a\x77\xa3\x42\x92\x24\xa2\x34\x24\xef\x96\xef\x5c\x2a\x71\x54\x4d\xe2\x6e\x4a\xba\x86\xc4\x58\x95\x2b\x77\x47\x95\x2e\x16\x5f\xa0\x62\x5b\xf5\xfc\xa9\xbf\x58\x1f\x15\xaf\xaa\x0d\x1d\xfd\x44\x74\x55\x45\x2b\x8e\x02\x88\x04\xa9\x34\x5c\x13\x03\x10\x19\xa0\x6a\x50\xdc\x02\x20\x72\x5c\xad\xe2\xe2\x32\x00\xb1\xab\x6a\x37\xcf\x69\x01\x88\x9d\x50\x1f\x95\x5d\x06\x20\xae\xa2\x71\xf2\xe4\x45\x00\x89\x50\x0d\xbf\x34\x2d\x00\xf1\x17\x1a\xfe\x47\x53\xba\xe7\xcc\xc7\x49\x5b\x51\xe7\x53\x15\x44\x7d\x61\xae\xc9\x24\xe2\xf8\x9f\x9f\x79\x04\xf5\xf4\x39\xcf\x4e\x20\x9f\x95\x7e\x27\x1b\xfb\x7d\xca\x83\x73\xd8\x4f\xf6\x3a\xe6\xa3\xae\x23\x3a\xf8\x12\xbe\xbe\x85\xaf\x14\x59\xc7\x55\xc5\xd7\x51\xe7\xb0\xb0\xb2\xf2\x42\x37\x4e\x0d\xaf\xba\xdd\x8d\x23\x2f\x3e\x40\x5f\x3e\xdb\x92\x87\xa8\x43\xeb\xb7\xf4\xa9\xac\xcc\x48\x42\xd4\xbf\x3d\x2d\x35\x7d\xc9\x9f\xa1\xb2\xea\x59\x94\xd7\x75\xfe\x63\x4a\xb3\xea\x2d\x17\xf2\xf3\x6d\x50\xd6\xa8\x6f\x88\xea\x4b\x88\xc2\xc7\xfa\x1f\xc7\x6a\x08\x91\x5f\x5d\x5f\x5e\x7c\x89\x10\x39\xf5\xfa\x85\x0f\x2f\x13\x22\x6b\x59\xaf\xf5\x79\x10\x21\x52\x3f\x1f\xe1\x7e\x94\x94\xee\xfd\x3e\xdd\x28\xf6\xf3\x36\x9e\xa0\x16\xb7\xbc\x81\x75\x1d\xc4\x1c\xae\xe2\x7e\x9d\xb8\xf4\x25\x3c\x6b\xa2\xbc\xf5\x7c\x04\x80\x60\xa7\x48\xc2\x39\x3c\xf7\x28\x9c\x9b\x8b\xfb\x51\xd5\x8b\xe2\x05\x71\xfd\x27\x7a\x10\xc7\x89\x22\xf5\x63\xc8\x16\x9f\x81\x53\xd8\xfe\x4f\x8e\xcc\xc5\x76\x72\xc4\xf8\x3c\xe6\x67\xff\xa5\x22\x6c\x07\xb1\x5f\xa8\x2e\x62\xdb\x25\x1a\xf7\xba\x81\x15\x38\x5e\x2e\x3d\x56\x85\xe3\xc5\x9c\x85\x94\x27\x9f\xd0\x52\x87\xfc\xf8\x90\xc5\x4f\xb0\xdd\x59\xaa\x53\xde\x4c\x21\xf8\x2d\xce\x4b\x32\xd6\xcd\xd5\x1a\x9f\x09\x91\x48\x6b\x15\x75\x2d\x24\x44\xf4\x41\xeb\xe5\x69\x27\x08\x11\xde\xd5\x16\x1e\x96\x4f\x88\x60\xff\xb6\x47\x89\x4e\x84\xf0\x3d\x68\xfb\x79\xce\x9e\x10\x5e\xb9\xb6\x8e\x3b\x6f\x08\x21\x8b\xdb\xb6\xb5\xa0\x02\xb8\x99\x07\x9f\x0d\xa6\x36\xe2\xf9\x43\x42\x9e\xe0\x19\x23\x12\x51\xc3\x78\xdc\x2a\xca\xa8\x4d\xae\xf8\x80\x38\xe5\x5a\x59\x37\xf2\xd4\x5e\xd1\xc5\xeb\xfc\x42\xd4\x45\x94\xab\x1f\x42\xdf\xaf\x4b\x55\xa9\x38\x1f\x9e\x53\xcc\x9c\xdc\x8d\x99\x36\x67\x51\xef\x70\x7c\x60\x01\xfa\xdd\x1c\xca\xbd\x82\xeb\xc4\x78\xd7\x6b\x38\x7e\xee\x18\x4f\xd9\xb1\x8d\x0d\xb7\x71\xdd\xb4\x72\x6e\x35\xea\x44\x82\xe6\x53\x5d\xc8\xf4\x79\x8f\x91\xb5\x1d\xd3\x46\x7d\x33\xdc\xd6\x53\xff\x04\x93\xcb\x2d\xd8\x6f\xfa\x9a\xb4\x2f\x22\xf8\xaf\x63\x81\xd8\xc9\x6e\xfc\x3e\xc8\x0a\x99\xd3\x1f\x8b\xc6\xe1\xeb\x3f\xaa\x96\xe2\x0a\xff\xe7\x91\x58\x5c\xe1\xfd\x34\xcd\x5c\x85\xd8\x58\x2e\x8f\xe8\xd2\x84\x7f\xf7\x43\x13\xf0\x13\x3e\x30\x26\xf5\x2d\x3b\x81\xdf\xc0\x4e\xd6\x3f\x76\xa1\xf8\x40\x9f\xe5\x85\x39\x15\xdc\x64\x79\x2a\x6b\xef\xc6\x2b\xc1\x69\xd8\x2f\xce\x3b\x64\xd2\x3a\x48\xa3\xf3\x50\x0f\x99\x56\x74\xe9\x6e\x37\x26\x5b\x52\x7f\x94\x3d\x31\x37\x14\xe9\x7c\x70\x1b\xcf\x23\x44\x7c\xac\xc6\xe7\xce\x30\x75\xaa\x0f\x58\xea\x4d\xf5\x01\xf3\xd4\xeb\x71\x7c\xf5\xbf\xfe\xa2\x12\xc7\xc5\x06\xea\x8f\xe3\xf2\xe8\x1d\xd6\x6d\x34\x6a\xfb\x82\xfd\x4a\x8e\x50\x9f\x14\xdc\xd1\x63\xfc\xa3\x09\x5b\xe1\x7b\x31\x1e\x77\x3e\xe3\x71\xb7\x2e\xa4\x78\x98\x55\x02\xe5\xf8\xdb\x6a\x76\xee\xbd\xb9\x1f\xf9\x93\xcf\x9f\x4f\xf1\x03\xf3\xbb\x78\xc3\xb0\x81\x55\xaa\x79\xcc\x7e\x5e\xc3\xc3\xf2\x82\x8c\x75\x8f\x0e\x2c\xe8\xbc\x22\x1d\x07\x2e\xe3\xbc\x97\x32\xf1\x9a\x52\x37\xee\xab\xaa\x40\xbe\x37\x66\xd9\x1d\xe4\xf7\xa3\x5e\xd7\x60\x7d\xad\x0d\x2b\x1f\x62\x9e\x56\xd6\xd7\xe3\x38\xb1\x38\xa0\x11\xf3\x37\xf3\xe2\x1b\x5c\x87\xfb\xc5\xb4\xe1\xfd\x1f\x31\xf6\x03\xce\x1b\x4e\xb2\x5f\xf1\x39\xcd\x70\x1c\x60\x3b\x91\x61\x7e\x18\x98\x07\x55\x8a\xfd\x18\xdf\xeb\x71\x81\x22\x77\xbe\x7f\x0d\x73\x42\x4d\x60\xbe\x1e\x1c\x7f\x5b\xcc\x2a\xe0\x55\xb3\x6b\xaa\x50\x00\xf8\x4a\x9d\x41\x4f\xd0\x4f\xf8\xca\x18\xf6\xf7\x3a\xff\x9e\x97\xa7\xa8\xd0\xf9\xad\x03\xa3\xed\xfe\x68\xd3\x0d\x9c\x17\x0e\x5c\xbe\x85\xeb\x84\x84\x79\xf4\x53\x76\x0a\xd6\x61\x7c\x9b\x8b\xa8\x2e\x62\x6d\x50\x03\xaa\x12\x96\x76\xbc\x42\x1d\xc8\x42\xd2\x86\xf5\x82\x02\x02\xa8\x6f\xc4\xf8\x28\xea\x32\xe1\x79\x97\xd6\x0f\x72\x98\x44\x3f\x55\xaf\x94\xa2\xe4\x3d\xf8\xa7\x0e\x64\x3b\xc5\x01\xcc\xc7\xc2\x8f\xbd\xbe\x84\xe9\x60\x22\x47\x51\xe4\xf4\x41\x9c\xbf\xc3\x65\x56\x31\xb5\x8a\xb5\x1f\xd4\x09\x11\x80\xb6\xe2\x3f\xdb\x49\x4f\x3d\x9c\xc0\x7f\xcb\x4b\xe6\xd7\xab\xb8\x6e\x3c\xfe\xa2\xc2\xbd\x1b\x0f\xbd\xad\xc2\x76\xb1\xe7\x45\x0d\xf6\xdf\x58\xa6\x07\x89\xbc\xf3\x1c\xdb\xc9\x86\xa8\x57\xb8\x8e\x5c\x25\xdb\x82\x9f\x1e\x7c\xfd\x1d\xce\x2b\x73\xaf\x7d\xc6\x73\x08\x53\x3b\x7f\x60\xff\x18\xdb\x01\x12\xdd\xe8\xc1\x7a\x61\x8f\x0f\x06\xf3\x4f\x91\x94\x81\xff\xd4\x81\x70\xce\xb7\xa3\x59\xbc\x73\xd8\x0e\x50\x18\xbb\xe6\xf4\x41\x5c\x3f\x39\xbd\x86\xb5\x0f\x53\x8a\x9c\x6e\xaa\x86\xe9\x01\x5e\xb2\x3c\xfd\xe9\xff\x41\x48\xe7\x9d\x3f\xf3\x92\xba\xaf\x1c\xf7\x55\x52\x4c\xab\xb0\x95\xed\x3b\x57\x8b\xbd\x2f\x2e\xe9\x19\x8e\x1b\xdb\x6f\x35\x62\x7f\xdf\x32\xe3\x0d\x8e\x83\xeb\xbd\xdf\xa1\x7e\x30\xd4\xa2\x1d\x9f\xbf\x16\x6d\xe8\xc0\xfc\xcc\x92\xec\x42\x7f\x19\xbf\x4b\xf4\xdd\xbd\x99\x4f\xca\xc0\xb7\xd0\xcb\x07\x43\x73\x11\x45\x09\x51\xf8\x87\x0e\x44\xf5\x06\x45\xdb\x72\x8a\x9e\xcc\x01\x74\x3a\x6b\x17\x21\xac\x9d\x44\x28\xb1\x7e\xc2\xf4\x0b\x47\x99\x6e\x22\x8b\x8d\x33\x17\x98\x0f\x06\xe7\x13\xd3\xa3\xff\x60\xba\x87\xb6\xd3\x14\xbb\xfe\x18\x57\x8e\x58\xdc\xc3\xd6\x74\x60\xc6\x23\xec\x8d\xbb\x0b\xea\xf1\xfb\x45\xdf\x7e\x89\xe3\x26\x57\x1f\x2d\x3c\xf7\x3d\xce\x27\x6b\x32\x3b\x94\xb1\x3f\xdc\xea\xfa\xd1\x8d\xf3\x07\xd2\x78\x02\x92\xa0\x97\x1e\x88\xab\x0f\xe4\xc8\xfc\x72\x4c\x4b\x28\xaa\x4e\xa3\x28\xea\xf0\x3b\x0f\xa4\x92\xa2\x32\xf3\xb5\xb1\xe4\xa3\x38\xd8\x9f\xe2\x78\x76\x1f\xe7\xb1\xfb\xbc\x86\xf9\xa2\x44\x6e\xa2\xb8\x8f\xf5\x87\x94\xdb\xe4\xdf\xf5\x1f\x69\x14\x2b\xd8\xeb\x75\x2c\x4f\x4d\xf6\x14\xdb\x07\x92\x5e\xbc\x2c\xa7\xe7\xe8\xa9\x07\xc3\xb8\x64\x8e\xcf\xe6\xb0\x47\x07\xc2\x78\x51\x37\xc6\xdb\x73\x3c\xf7\x68\xc6\x9f\x4f\x66\x5c\xfb\x6c\xe6\x07\xbd\x8c\xed\x8b\x6f\xda\x45\x91\xd3\x3f\xa4\xcc\xa1\x98\xcd\xde\xef\x8a\x39\x45\x4e\xbb\xf0\x82\x71\xb1\x3f\x0e\xfe\xd6\x3f\xb4\x51\xae\x98\xbc\x0c\xa1\xf8\xac\x8b\xe2\xc3\x99\x14\x7b\xfc\x2f\x18\xd7\xc8\xf1\xde\x37\x58\xcc\x1c\xef\x5b\xcc\xf6\xa8\xe1\xff\x87\x0f\x08\xc7\xff\x71\x3a\x10\x2e\x4f\xdc\xdf\x71\xf9\xf4\x66\x9a\x04\x3f\x76\x4e\x7c\xe6\x2b\x8a\x21\x8c\x1f\xde\x40\x79\xdf\x1e\xde\x9f\xcb\x03\xa7\x87\x29\x61\x9c\x35\xa7\x65\x79\x75\x94\x62\xe7\x9d\xff\xd6\x3f\x3c\x66\xf7\xa0\x87\xf7\x66\x1c\xfb\x2d\xf6\x5d\x6f\xb0\xcf\xe6\xf4\x0f\x97\xcb\x28\x16\x15\xff\xce\xc3\xff\xf2\x01\xe1\xf8\x5f\xcb\xb1\x0c\xe7\xf4\xce\x87\x23\xd3\x03\x70\x3a\x10\xae\xde\xce\x04\x76\x3d\x93\xf9\x4b\x2c\x59\xce\xf2\xc0\xf4\x0e\x31\x01\xbd\xf3\xd0\xa3\x87\x61\x9f\xff\x80\xbd\x7f\x33\xd3\x3c\x74\xaf\x97\xda\x5b\xe9\xff\x5f\x4f\x61\xed\x60\x11\xc5\xff\xd2\x01\x55\x3c\x66\xf1\x33\x7d\x44\x8f\xfe\xe3\x5f\xf4\x0f\xdc\xfd\xe4\xda\x7b\x4f\xfc\x2c\x0e\xae\x0e\x44\x8f\x1f\x46\x49\xef\xfc\x70\x79\xe3\x74\x14\x43\xdf\x53\x1c\x9b\x40\x71\x3a\xeb\x37\x7f\xeb\x40\x76\xb1\xf7\x3f\xcc\x78\xd3\xdc\xd5\x14\xaf\xb2\x98\x6a\xd9\xcf\xdb\x5c\x08\xe9\x64\x67\x4c\xdf\xdb\xb3\xbe\x72\xa5\x77\x3b\xe8\xd1\x7f\xfc\x8f\x7e\x70\xe9\x06\x8b\x7f\x0d\xc5\xf3\x2d\xbf\xf3\xc0\xe9\xbd\x38\x1d\x50\x4f\xfd\x07\xd6\x9e\x0d\xe7\x32\x5c\xdc\xfb\x9a\xe3\xc7\xff\x4b\x07\xc2\x8d\x13\x9c\x0e\x64\x11\x6b\xc3\x61\x8c\x47\xdd\xc9\xf2\x92\xb2\x97\x62\x8f\x1e\xe6\x19\x45\x4e\x07\xf2\x71\xd9\xef\x71\x81\xeb\x0f\xcf\xb9\x5c\x5d\xa5\xd8\xa3\x83\x62\x63\x11\xa7\x83\xfa\x7b\x1c\x28\x28\xe8\x1d\xff\x99\x71\xbf\xf3\xc0\xdd\x4f\xee\xfe\x9a\xb0\x7e\xca\xf1\xdf\x7a\x43\x28\x72\x3c\xa8\x6e\x2c\xc5\x7e\x1f\x7a\xb7\x13\xae\x9f\x70\xe3\xe6\x48\xc6\x13\x4e\x66\xfd\x6d\x01\xd3\xcb\xad\xcd\x67\x79\x60\x7a\xb0\xc3\x8c\x6f\x3f\x03\x54\xff\x73\xfd\x1d\x21\xb0\x86\x69\x9e\x6e\xd2\x31\xe1\x73\x33\xfd\x1d\xce\x1f\xe9\xf1\xbb\xde\xfd\x80\x1b\x07\xfe\xd6\x81\xfd\xaf\xf8\x73\x02\x7e\xe7\xa1\x47\xff\xc0\xe2\xe1\xf4\x2f\x9a\x8c\x07\xd7\x60\xf9\xe1\xfc\x10\x38\xd4\x48\xef\x9d\x2f\x73\xd7\xde\xed\x8b\xeb\x1f\xdc\x38\x31\x8f\x7d\xce\x6a\xa6\xab\xd9\xc9\xc6\xc3\xc3\xb3\x08\x81\x05\x84\x9c\x3d\x4b\xdb\xff\x8d\x6b\x84\xfc\xfc\x41\x35\x80\x3f\x9c\x09\xf9\x6a\x4d\xc8\x7b\x96\x5b\x6e\x5c\xe4\xfc\x80\x38\x1d\xd8\xdf\xfa\x9f\xe2\x4c\x7a\x5d\xb8\x8c\x07\x2b\xfe\x9d\x3f\xc0\x83\x1e\xf6\x67\x2e\xf2\x60\x05\xc4\xac\x1a\xfa\x7b\x27\x7f\x50\x7d\x10\xfc\xa1\x7f\x30\x60\x3a\x39\x4d\xd6\x1e\x38\xfe\x57\x5e\x9b\xa2\x1c\xcb\xa5\x3c\xcb\x0f\xe7\x0b\xc2\xd5\x4d\xe1\xfa\x0b\x37\xbf\x70\xf3\x10\xa7\x17\x9b\xc5\x78\xf3\x95\xec\xe7\x3b\x76\x13\xd2\xbd\x96\x49\x99\xd8\xfd\x94\x49\xf5\x51\xdf\x56\x11\x72\xdd\x8f\x90\x2f\xc1\x84\x3c\x19\x4a\xc8\xa7\x17\x84\x7c\x4e\x20\xe4\x6d\x0d\xd5\x05\x3d\x39\xcc\x57\x84\xfd\x60\x11\xd5\x01\x95\xaf\x12\xc2\xca\x8f\x25\xd9\xa2\xd4\xff\xe7\xb3\xc8\x9a\x6e\xcc\xb7\x15\xc4\xf3\x04\xe7\xd6\x0a\x62\x85\xbc\xd3\x2e\x22\x78\xa6\x3f\xab\x8f\x08\x2a\x9b\x4f\x96\x0b\xe2\x75\xda\x66\xc1\xb5\x5c\x1e\x38\xfd\x83\xd6\xf5\xde\xf1\x71\xfc\xaf\x14\x6b\x8b\xa2\x1b\x7a\xa3\x2c\x1b\x83\x39\xbd\x80\xe6\xac\xde\x79\xe5\x74\x95\xcc\x5f\x4c\x60\x3a\x9d\xe3\x2f\x87\x4e\x26\xe4\x57\x39\xaf\x6e\x54\x1c\x21\xdf\x86\x0a\x38\x1e\x6a\x23\xa4\x3d\x5a\x68\x67\xae\x26\x21\xef\x65\x44\xf4\xae\xe5\x12\xd2\xba\x5a\x54\xe0\xd1\x73\x42\x9a\xd5\x45\x0f\xb7\x9b\x10\xd2\x60\x2b\x81\x4a\xe4\xfb\xe5\x92\x78\xbe\xa4\x62\xa0\x2c\xea\x9f\x4a\xda\xfb\x44\x60\xdc\x2d\xca\x36\x00\x42\x82\x17\xfc\x65\xd0\xe1\xf0\x74\xbd\x52\x07\x80\xe0\xd2\x1c\x57\x29\x7c\xbe\xe4\x74\x2f\x69\xf1\xca\x3f\x00\x84\x9e\x1c\x3b\x2a\x29\xd6\xfd\xfa\x11\x4f\x09\x33\x2e\x0f\x5c\xff\xe7\xee\xbf\x24\x6b\xbf\x7f\xeb\x3f\x78\xbf\xf4\x46\x41\x36\x8f\x4a\xb8\xfe\x99\x0f\xde\xed\x7a\x98\x4f\x01\x4d\x3b\xec\x17\x42\x33\x3d\xcf\x13\xd2\x99\x27\xba\x69\x6a\x23\x21\x5f\xb7\x4a\x99\x2e\xd5\x21\xe4\xc3\xf0\x3e\xe2\x5b\x03\x09\x69\x19\xdf\xf7\xee\x81\x01\x84\xbc\x7a\xa7\x70\x35\x6b\x3a\x21\x4d\xf9\x8a\x2d\x25\xdf\x08\x79\xbe\x45\xa9\xae\x76\x21\x21\xcf\x52\x94\x07\xbf\xd3\x24\xa4\x6e\x8e\xd2\x52\x00\xde\xd5\x95\xb2\xca\x5e\x00\x42\xfd\xae\xf0\xa9\x7c\x05\x10\x79\x9f\xef\xa5\x72\x12\x40\x64\xde\x59\x65\x95\xc7\x00\x22\x3b\xb2\x07\xa9\x0a\x01\x88\x1c\xe1\x74\x3f\x5c\xdc\xc7\x89\xca\x05\x00\xe1\x5b\x87\xc7\x2b\x5f\x06\x10\x72\x4f\x5a\xa5\x22\x00\x20\x14\x79\xa0\x42\xb9\x06\x40\x08\xf7\x64\x54\x8e\xfe\x7b\xfc\xbd\xf5\x1f\x7f\xf3\xc1\x3d\xbc\x70\x36\xc1\xb1\x5b\xc4\x54\x12\x7d\xb2\x24\x4a\xd4\x51\x0f\x25\xdd\x62\xf9\x8a\x90\x8e\x4a\xf9\x80\x21\x43\x09\xf9\xa0\xad\x74\xde\xef\x22\xef\xf3\x37\x9f\x54\x06\x05\x49\x08\x4e\x6b\x5c\xa6\x6a\x1a\xbe\x4b\xc4\xe8\xa9\x9a\xea\xd1\xdd\xe6\x62\xab\xeb\xaa\x54\xef\xa7\x1d\x90\x70\x7c\xd0\x47\xf5\x46\x41\xbd\xa4\x53\x75\x1f\x35\x81\xaa\xfd\x92\x4f\xee\xd4\xab\x05\xbc\x3a\x24\x19\x7b\x5b\x42\x7d\x1b\x80\xc4\xa6\x12\x71\xac\x07\x56\x79\x21\x50\x6b\x1c\x80\x74\x51\xae\xbb\xe6\x47\x00\xa9\x27\xa7\xaa\xb4\x06\x03\x48\x35\x9e\x50\xd0\x72\x07\x90\x3a\x78\x34\x58\x3b\x14\x40\x3a\x21\xf9\x89\x56\x0b\x80\x54\xda\x21\x21\xcd\x62\x00\x49\xad\x7d\x4b\xb5\xbc\x00\x24\x7d\xf6\xea\x69\x14\x02\x88\xef\x8a\x4f\xd0\x18\x09\x20\x56\xf5\x67\xfb\xff\x8f\xf8\xff\x8a\x9b\x9f\xad\xf2\x39\x3e\x90\xab\x17\x22\xd7\xc4\xbf\x8f\x10\x18\xad\xf4\x55\x61\x0c\x21\x9f\xa5\x34\x64\x0d\x5f\xf2\x15\x35\xeb\x6b\xe7\xbb\xe4\x08\xcd\x68\x38\xa3\xdb\x3c\x3a\x50\xcc\xfa\xd1\x1a\xbd\xa7\x33\x4f\x4a\xe6\xdd\xf7\xd0\xd7\x5b\xf9\x50\x56\xf4\xf6\x6e\x7d\xf1\x1d\x6f\xe4\xde\x56\xf4\xd7\xdb\x93\xf2\x44\x1e\xca\x66\xea\xf5\x3d\xe7\xa2\x18\x58\x3a\x5b\xf7\x56\x85\x8e\x92\xca\x15\x7d\xdd\x27\xf5\x0d\x4a\x3c\xc5\xd7\xf4\x0e\x74\xfc\x54\xb8\x97\x77\xba\x9f\x34\x80\x22\xc9\x0c\xeb\x57\x0c\xa0\xd0\x96\xea\x6b\x10\x06\xa0\xf0\xe5\x70\x87\x81\x2f\x80\x82\xc9\xc1\x5b\x86\x46\x00\x0a\x73\x12\x3f\x19\x08\x03\xf4\xad\xdd\x7b\xa7\xdf\x70\x00\xb9\xf8\xdd\x69\xfd\x78\x00\xfa\x3c\x88\x39\xa6\x57\x0f\x20\xab\xba\xb3\x50\x5f\x02\x40\x56\x64\x87\xbd\xde\x68\x00\xe9\x1f\xff\x0f\xf1\xb3\xa7\x61\xd1\xbd\x14\xfb\x1e\x63\x4f\x87\x6c\xf7\x44\x0b\x9f\x7e\x7f\x7e\xd3\xc5\xba\xbd\x1f\x62\x4d\xcd\xa4\x12\x08\x79\x59\x69\x7e\x41\x5b\x5e\xe0\xdb\xe3\xcb\x16\x2a\x36\xa7\x25\xc4\xee\x79\x5b\x4e\x1e\xb6\x5f\x26\xa5\xf2\x86\xe5\x53\xff\x61\xf2\xaa\xd7\xa6\x59\xea\x07\x47\x2a\x3d\x2e\x5e\x6c\xb1\x61\x8b\x9c\xda\xbc\xfc\x6a\xf3\x99\xfb\x1f\x6a\x92\xbc\x33\x66\xeb\xb3\x9c\xb5\x9e\x9f\xa9\x31\x8d\x2b\x3d\xa4\x7d\x23\x77\xa4\xe9\xb8\x87\x13\x75\xfa\x64\x77\x98\x2e\xfd\x68\xa6\xd5\x79\x52\xdb\xac\x13\x40\xcb\xe4\x70\xb2\x79\x02\x80\xe6\x88\x03\x33\xcc\x4f\x03\x68\x68\xec\x79\x6b\xfe\x0b\x40\x7d\x43\x7c\xa6\xb9\x0a\x80\x6a\x7e\xcc\x5c\xb3\x6a\x00\x95\xdc\xe8\x14\xb3\x58\x00\xe5\xaa\xa8\x3d\x66\x8a\x00\x4a\xe9\x5b\xab\x4c\x4f\x02\x28\x1e\xde\x2c\x6f\x12\x0f\x20\x5f\xb6\x51\xdb\x74\x26\x80\x82\xd5\xff\x11\x3f\xd3\x01\x48\xf6\x61\x71\xb3\xa7\x5f\x7d\xfa\x34\x98\x6a\x8c\xbc\xcf\xd7\x25\x36\xa8\x07\x69\x81\xfe\xc8\xff\x35\x46\x0e\xb8\x20\x64\x45\x48\xdd\xce\x41\x76\x2a\x13\xf9\xc5\x6f\x6b\xbb\x2e\x36\x35\x96\xb8\x7d\x35\x61\xc0\x92\x81\x43\x14\x46\x14\xd6\xb8\x3c\x19\xbb\x5b\xd5\xe5\xdc\x4b\xe7\x86\xb9\x72\x9a\xb5\xd9\xcf\x9c\x82\xc3\xb4\x75\x6f\x9e\x1c\xee\x68\x13\x37\xc8\xc0\x3e\xd5\xdc\xe1\x62\x9a\xa6\xd1\xf2\x23\x31\xf6\x27\x0a\x27\x1a\xff\x4a\x51\xb4\x6b\xab\xe6\x37\xd9\x97\x64\x61\x77\xfd\x6d\x90\x89\xf4\x41\x2b\xfb\x78\xb8\x60\x34\x72\xf7\x5c\xfb\xcb\x50\x65\xa0\xbe\xd3\xc5\xc1\x1f\x9e\xea\x77\x45\xa5\xd9\x6f\x86\x76\xdd\xe2\x08\x6b\xfb\xd3\xf0\x4b\x67\xcf\xe6\x4e\xbb\x2b\x00\xda\x72\x1b\x8d\xec\xfc\x00\x34\x4b\xd7\x4f\xb6\xcd\x01\xd0\xb0\x5d\xeb\x65\x1b\x07\xa0\x6e\xbb\xba\xca\x46\x00\x40\xd5\x74\x65\xa8\x75\x3a\x80\x8a\xd5\xff\x11\xff\x77\x8a\xea\xac\x1e\x86\x11\xee\x5b\x75\xb9\xd8\xe2\xf5\xc7\x11\x03\x71\x3f\xff\x55\xdb\x10\x7c\x5a\x7e\xba\x6c\x24\xfe\xdd\xfd\x2b\x3e\x46\xdd\x58\xf9\x71\xdc\x9c\xbe\x1b\x09\xb9\x62\x31\x3a\x42\xef\x81\xb8\xfc\x79\x21\xef\x12\x07\x25\xf9\x9d\x99\x1e\x23\xc4\x3c\x57\x69\x45\x1c\x7f\x34\x3c\x72\x9a\x96\xfe\xfd\x64\xc3\xa1\x35\xcb\xe2\x8d\xa3\xf6\x07\x7b\xd4\x46\x49\x98\x1b\xee\x8e\x72\xef\x97\x3c\xc3\x8a\xc4\xec\x1c\x74\xea\x6c\x97\x75\x7d\xf4\x0b\x37\xff\x4a\x55\x9b\xc3\xdb\x6f\xb9\x56\x35\x14\xda\x2c\x8e\x8a\x71\x1b\xf6\x73\xa9\x55\xe7\xe6\x8f\x6e\xf6\x10\x61\x7e\x6b\x7d\x97\x6b\x16\xa4\x99\xb4\xac\xd9\xe1\xba\x1d\x8a\x8c\x9e\xac\x7a\x3e\xf0\x01\xdc\x34\x1c\xb2\xc2\x61\x60\x2e\xd4\x19\x88\x2c\xcb\x18\x10\x01\xad\x7a\xe9\x4b\xd5\x5d\xac\xa0\x53\x27\x21\x78\x9f\xcb\x22\x00\xed\x77\x8b\x4e\x3a\x4f\x00\xd0\x92\x5f\x74\xda\x71\x32\x80\x86\xcc\x3f\xdb\x3f\x17\x3f\xc7\x83\x5b\xa2\xab\xe7\xaf\x85\xce\xa8\xff\xf8\xb0\x68\x28\xf2\xb6\x2f\x0e\xf8\x60\x3b\x78\xd4\x46\x77\x07\xaa\x82\x26\xa3\x5f\xf5\xf5\xf7\xd3\xf0\x7d\x2e\x4d\x0a\x3c\x26\x96\x4f\xc8\xd9\x21\xd3\xaf\xa9\x17\x0a\x37\xa5\x7f\x9c\xfa\xcc\xd2\x55\x6e\x55\xf2\xc9\xc9\x07\x07\x2f\xd1\x38\x91\x30\x63\x82\xbc\xef\x07\x63\xf9\xe8\xb7\xbe\xbc\x0b\x36\x59\xec\xdf\xba\x74\x4c\xed\x86\x48\x9b\xe7\x1b\x2e\x8f\x7a\xbe\x77\xb3\x83\x6e\x98\x8a\x8f\x51\xa6\xb7\xe3\xd8\x55\x67\xbc\xf2\x4b\xf7\x38\x45\xac\xf0\x1b\xf9\xec\xd1\x08\xa7\xb3\xcb\xcb\x46\xb6\xb6\x1f\x73\x3c\xb3\xd4\x7e\xe4\x5e\x30\xb7\xb7\x5b\xbc\x67\x44\x0d\x4c\xb0\x91\x0b\x92\xf3\x14\x82\x4d\x16\x3e\xf3\xaf\x78\xce\x83\x28\xf3\xdd\x73\x7d\x86\xd5\x41\x86\xc9\xbc\x39\x1b\x87\xde\x83\x02\xa3\xea\x59\xf7\x86\x5a\x40\xb9\xe1\x88\x59\xdb\xdd\x33\xa1\x49\x7f\x56\xe0\x7a\x77\x07\xf8\xa8\x9b\x34\xbd\x68\xb0\x09\xfc\xd2\x19\xf0\x3b\x0f\x12\xaf\x7a\xc7\x4f\x79\xf0\x9f\x47\xdc\x70\x7f\xf6\x9d\x9e\x37\xf2\x9e\x8d\x47\x27\xe0\x2e\x50\x1d\x2f\xd5\x83\xdc\xca\x9d\x89\x7e\x28\xa5\x3f\xe7\x21\xcf\x9d\xdf\xb6\x08\x77\xc3\x72\x96\x04\x8f\xe1\x71\x26\xe4\x44\x66\xc8\x11\xc5\x4f\xbc\xbe\x87\x78\x16\xf3\x1b\xc6\x4a\x57\xc6\x39\x2d\x14\x71\x1e\xa8\x1a\xb8\x75\xc9\x9c\x4a\x9f\x05\x06\x3e\x6b\xea\x67\x04\x07\xae\xb5\xbe\xb1\x6c\xec\x74\xa3\x95\x17\x1d\x2e\x04\xbd\x9a\x26\xba\xcb\xd6\x79\xda\xdc\x0e\xff\x3b\xc7\x8f\x0e\x38\x37\xb3\x75\x72\x40\xa1\x93\xab\x5f\x60\x88\x1f\xdc\x53\x71\x4d\x08\x28\xf5\xcb\x68\xbe\x32\xf0\x51\x80\x97\xdf\xb2\xae\xfb\x2e\xce\x53\xde\x4c\x58\x0f\x32\x0e\x0f\x26\x77\x8c\x0f\x05\x6b\x3b\xd3\x49\x4b\x7d\xc3\xc0\xdb\xfa\xab\x9f\xe7\xb8\x39\x30\xdb\xf2\xed\xc4\xa6\x31\x02\xb0\xcd\xac\x61\xe2\xbc\x51\x83\x20\xc5\xe4\xf0\x44\x15\xef\x2f\x90\x63\x2c\x3a\x41\xd8\x6b\x0f\x94\x1a\x0a\x8d\xf7\x1f\x31\x06\x1e\xeb\xcf\xfc\x3d\xfe\x71\xf1\xdb\xe0\x2e\xd9\xaf\x35\xf4\xf4\xe0\x3b\x0b\x5a\x1f\xa7\x21\x78\x0a\x8e\x13\x75\x27\x67\x63\x3f\xb8\x19\x18\x84\xbe\x38\x25\x0d\x4b\x70\xbe\xb8\x50\x44\xeb\x04\x65\x27\xd1\xdd\xe5\x63\x83\xc3\xf0\x54\xd4\x81\x8d\xe1\x99\x52\x47\x09\x89\x99\xb6\xae\x5c\xeb\x8d\xb8\xee\x16\xfe\x35\xb5\xb6\x03\x14\x1d\x57\x8d\x5b\x39\x6d\x58\x8d\xae\x4a\x90\xc7\xb2\x18\x7f\x53\xf3\x15\x33\xbe\x2f\x71\x0f\x21\x76\x2d\x53\x5a\x16\xbf\x8d\x8c\xed\x9f\xe8\xe7\xb0\x68\x52\x4a\x81\xd3\x54\xdf\x88\x20\xb5\xf3\x35\xce\x96\x63\xfb\x2f\xf8\x71\xbb\xc2\x79\xc2\xe8\x5b\x0b\x36\xbe\x96\x75\x1a\x33\xfa\xe4\x82\x4d\xa0\xec\xf0\x75\xd4\xf5\xb9\x04\xdc\x6d\x93\x47\x79\xce\x52\x81\x00\xeb\x91\x3e\x21\x33\x74\x60\xa5\xa5\xe6\xa8\x29\xd3\x56\xc3\x06\x0b\x2b\xef\x21\x53\x6a\xe0\x98\x49\xbd\xf7\xf3\x49\x00\x27\x4d\x24\xbd\xad\xfc\x12\xe0\x82\x51\x82\xd7\x8a\x09\x53\xe0\x86\xc1\xe9\x11\xcf\x7d\xaf\xc2\x13\xfd\xd1\x7f\xc7\xdf\x79\x67\x38\xee\x82\xb6\x15\x8d\xc7\x71\xb1\xf1\xc5\x74\xd4\x81\xd5\x36\x2d\x40\x9e\xb7\x12\x96\xe0\x39\xd6\x2b\x4a\x2b\x71\x77\xfd\xfc\xb4\x75\xd4\xff\x9f\x9f\xea\x60\x8e\x95\x50\x5d\xc8\x7e\x99\x28\x3c\x27\x1c\x1d\x10\xad\xc5\xb7\x93\x90\xcd\x4e\xd1\xa9\xca\x20\xb8\x79\xc5\xbd\xa8\xfb\xa6\xaf\xfa\x18\x2c\xb8\xb3\x4d\xc4\xad\x43\xfd\xea\x34\xaf\xcd\xbb\xc6\x8f\x35\x32\x1d\xff\x6b\xe3\xfd\xa0\x9d\xe6\xc1\xa3\x27\x6d\x48\xd9\x92\x69\xe5\x32\xb2\x2a\xbc\xef\xa1\x50\x1b\x9e\xe1\x5a\xeb\xf9\xce\x6e\xb5\x49\x1b\x72\x33\xec\x43\x65\xa8\xcd\x45\x8f\x25\x61\x63\x9b\xd6\x59\xdf\xf3\x08\x0f\xf3\xee\x3c\x61\x59\xe6\xa1\xba\x2a\x0e\x76\x9b\xdb\xbb\x1b\x2d\x3f\x07\x67\x4c\x06\xbb\x5f\x0e\xe1\x87\x42\xe3\x69\xee\xd7\x16\x47\x41\x99\x91\x8f\xbb\xc3\x42\x15\x78\x68\x60\xe9\x1e\x3f\xb7\x0b\x9e\xf7\x1b\x32\x78\xc3\xec\xcf\xf0\x41\x6f\xe8\xe0\x51\x33\x00\x7e\xe8\xbc\x18\xcc\x33\xfd\x17\x80\x76\xc5\x6f\x1d\xc8\x30\xbc\xff\x9c\xfe\xab\xa1\x78\x26\xee\x63\xd7\xf6\x5f\x8c\x7c\xf6\xcd\x75\x2b\x90\xc7\xbb\x32\x2f\x0c\x77\x53\xcf\x37\x6d\xc6\xf9\x32\x6b\x4b\x94\x01\xc6\xef\x17\x8d\xf9\xdc\xff\x3a\x76\x69\x37\xee\xd4\xda\x8d\xfd\x65\x83\xd8\x3e\xe4\xf5\x56\xf2\x1e\x50\x90\x7d\x48\xc8\x02\xf1\x7d\x2f\xf5\x5e\x4a\x04\x4d\x2d\xdb\x73\xc5\xb1\x53\xf1\xeb\x18\x8f\xf8\x36\x9f\xef\x3a\x3f\x46\xf4\x8b\xab\x9e\x7b\xb7\xdf\x52\x8f\xa8\xd8\xd7\x1b\xb2\x0d\x9b\xdc\x64\x62\x8a\xf6\x3f\x31\x9e\xeb\x92\xb2\xab\x23\x37\xd2\x44\xd7\x69\xd2\xce\xba\x1b\xa7\x4c\xa4\x1c\x0d\x77\x8a\x3e\x8f\x34\x76\x76\xe4\xdf\xa9\xf6\x23\xd1\x50\xd3\x31\x35\xd2\x13\xea\xfb\xc5\x3b\x26\x6f\xe1\x83\x36\x7d\x4d\xc7\x80\x0d\x1a\xf0\x43\x37\xda\xf1\xc8\x3a\x0d\x00\x9d\x46\xa7\xac\xd5\xfb\x00\x74\x5a\xfb\xb7\x87\x7e\x07\xd0\xac\x76\x3a\xb4\xf4\x05\x80\x56\x92\xe3\x9b\x25\xe3\x00\x34\x45\x1d\x57\x2f\xf6\x05\x50\xff\xce\xe9\x40\x3e\xae\xf3\x43\xb6\xac\xe1\xe3\xec\xa1\xdd\x58\x13\x13\x82\xf3\xc2\xcd\xea\x35\xd8\x1f\x4a\x8a\x37\xa1\x6e\xec\x82\x34\x65\x11\xb2\x6c\xa2\x71\x37\xfc\xd8\xe5\x78\xe4\x6f\x12\x83\xf7\xe2\x29\xeb\x58\xad\x03\xc8\x6f\x6f\xae\x4b\xc2\x7d\xfc\xd0\x28\xea\x1b\x31\xd7\x27\x35\x4c\xa0\x9a\x90\xa9\x09\xa9\x96\x6a\x2f\x85\x36\x8f\x91\x39\x36\xde\xda\x5e\xb6\x70\x88\xf3\x91\xf9\xc3\xd3\x54\xe7\x0c\xbc\x7e\xf8\xf6\x8c\xa1\x1a\x12\x8e\x81\x87\x55\xc3\xfa\x6a\x69\xda\x0d\x49\xd1\x4b\x48\xd7\x5e\x69\xd5\x92\x1c\x9b\xc5\xa3\xdd\x6a\x71\x3f\x29\xe5\x5a\x96\x76\xb5\x79\xee\xa1\x6f\x4f\x03\xb5\xbe\x98\x17\x1c\xba\xf2\xf5\x87\xa6\xad\xc5\xe2\xfd\x33\x00\xd4\x9f\x5b\xac\xde\xbd\x0e\x40\xad\xc9\x42\x30\xa6\x04\x40\x75\x97\x95\xd8\x0e\x51\x00\xb5\x7b\x96\xd7\xb7\x25\x00\xa8\x5e\xb0\xb2\xdc\x1c\x0c\xa0\x6a\x65\xa5\x1b\x7e\x0b\x40\x65\xa8\xd5\x8b\xb0\x64\x00\x95\xe1\x56\x66\xab\x97\x03\x28\x55\x7f\x1e\x38\x11\xcf\xb3\xbf\x74\x9a\x83\xfc\x54\xed\xab\x65\x74\xfc\x5b\x11\x86\x3a\xaf\x92\x28\xea\x0b\x73\x61\x73\x34\xf2\xbd\x59\x1f\x63\x91\x35\x3a\x3e\x7f\x2f\xf5\x7f\x48\x3e\x88\xe7\x78\xe3\x02\x52\x1e\x74\xe3\xd6\x4c\x5a\x37\x67\xcd\x1e\xaa\x0b\x09\x92\xcd\x18\xdf\x8d\xfe\x5a\x39\x94\xd7\xd0\x3a\xe3\x24\x3f\x95\x10\x8f\x79\xb9\x63\x8c\x9e\x8b\x17\x38\x2e\xce\x31\x18\xd4\x2c\xb7\xdf\x26\x32\xfb\xd6\x94\xd7\xf2\x35\xe6\x07\xb3\x47\xaf\x78\xaf\xe8\x63\xfc\x2e\xab\x26\x76\xa1\xd2\x4c\x83\x8e\x2c\xb7\x93\x2e\x4a\xfb\xfb\x29\x64\xc6\x95\x44\x29\x8d\xd7\x57\xca\x78\xf3\x28\x5b\x71\xbe\x5e\x47\x46\xe2\xa7\x1b\xf2\x07\xf4\xdd\x4f\xcc\x07\x90\x7b\xc5\xe9\x1b\xfa\x75\x26\x05\x02\xf4\xbd\xd8\xaf\x3a\x71\x0c\x40\x5f\x1e\x83\xb0\x84\x4c\x80\xbe\xf2\x06\x9e\x71\x13\x00\xe4\xe6\x18\x2e\xde\xe9\x0c\x20\xf7\xcd\xe0\x6d\xd4\x69\x80\x3e\xaf\x0c\xf3\x23\x4a\x00\xe4\xfa\xbc\x3a\x3d\x1f\xdb\xfb\x43\x8b\xe5\xc8\x47\xdd\x6e\xa0\xba\xb7\x92\x0f\x91\x38\x4e\x5c\x54\xdc\x85\x3c\x4d\xf6\xb5\x3d\xe8\x6b\x90\xba\xf8\x00\x9e\xeb\x4e\x36\xa5\xee\xf2\x09\x81\xa9\xc8\xba\x44\x1d\x4a\x67\xe7\x3b\x33\xd1\x67\x67\x69\x62\x2e\xb6\x9b\x59\x99\xe7\xd0\x67\x68\x1c\xc9\x47\x7e\x7b\xd0\xc4\x4b\xc6\x42\x49\x84\x38\xac\xba\xc4\xaf\x75\x4c\xb0\xd3\xec\x6c\xd1\x14\x27\x55\x89\x20\x43\xa3\xa2\xa0\x09\x0a\x92\x79\x7a\xbe\x45\xf2\x21\x0e\x52\x4f\xb5\x3e\x17\x69\xef\xb8\x26\xdd\x4f\xe3\x62\x61\xe4\xf1\x6a\x69\x25\xf5\x3e\x85\xfd\x2e\x05\x4b\x4d\x57\x1b\x53\x10\x5e\xab\x2a\x39\x4b\x4d\xbd\x40\xe7\x43\xb6\xf8\x11\xb5\x4d\xe7\x4f\x00\x88\x4d\x55\x6b\xc9\x0d\x04\x10\xcb\xd6\x18\x72\x2a\x01\x40\x42\x52\xfd\xe1\x09\x7e\x00\xf1\xa9\x1a\x2f\x8e\xae\x01\x90\x18\xa2\x71\x22\x79\x18\x80\x78\x81\xe6\xb3\xc4\x95\x00\x12\x27\xb4\xfc\xf7\x4e\xec\x9e\x23\x35\x97\xc6\x7d\x02\x10\xdf\xff\x70\x3b\x3d\x15\x5a\x35\x7d\x03\xf6\xf7\x6b\x25\x91\xc8\x2e\xe7\x1f\x8d\xa7\x75\xa0\xd4\xf7\xa1\x0e\x20\x5d\x3d\x19\x79\xea\x14\x2b\xaa\x03\x4a\x78\x75\x02\x1b\x4e\xf4\xb5\x2c\x64\x0d\x36\xc5\xe5\x22\xdf\xb1\x32\x95\xf2\xc4\x0b\xd2\x69\xdc\x53\x6e\xd0\x7a\x1a\x23\x37\x95\xa2\xde\xd0\x6e\xea\x75\x7c\x7f\x93\xc0\x8a\xbe\x0a\xaf\x08\xd1\x9e\x58\x5e\x60\x79\x41\xf0\xa2\xba\x67\x85\xa1\x4f\xba\x90\xb6\x8a\x6e\x85\xdf\x82\x76\xc1\x24\xa5\xb5\x15\xbb\xb7\x9e\x17\xf8\xaa\x98\x5f\x31\xfb\x70\x1a\x7f\xbe\xb2\x51\x45\x4e\xc1\x67\x12\xa1\x58\x5b\x21\x73\x7f\x3e\x21\x0a\x76\xe5\x31\x6d\xcb\x09\x91\x3b\x57\xd6\x8c\xcf\x48\xab\x2f\xa3\x43\x7a\x9f\x82\x02\x3c\x6f\xa4\x54\x7c\x76\x26\x80\x80\x9d\xb4\x5e\xee\x64\x7c\x96\x54\x3c\x99\x05\x20\x94\xa5\x62\x93\x7a\x04\x40\xe8\xbc\xf8\xd9\x63\x78\x6e\x47\x45\x36\xa9\xfb\x79\xd3\xfe\x1e\xd0\x7a\x70\x65\xce\xd1\xb8\x4e\x2e\x0c\xda\x8d\x75\x60\x4e\xf7\x3b\x30\x84\xc5\x8f\x7c\xcb\x91\xcf\x27\x50\x17\xb7\xbf\x3a\x0b\xd9\xd6\x58\xc9\x5c\xec\x2f\x5b\xf5\xa8\x1e\x66\xed\x94\x7c\x1c\x27\x97\xd4\x50\x5d\xc8\x2c\xf7\x12\xcc\xef\xf8\x98\x32\x5c\x6f\x0c\x29\xa8\xc4\x75\xa6\x85\x54\x15\x9e\x9b\x56\x0e\x7a\x30\x4c\xb0\x90\x90\xbe\x6d\x35\xa2\xfd\xfc\x09\x91\x1d\x53\x73\x64\xc8\x30\x42\xa4\x56\xd4\x92\x19\xf3\x08\x91\x48\xad\x55\x0f\x1f\x42\x88\x68\x57\xad\x70\x62\x2e\x21\x22\x23\x6b\xf2\xcf\x0e\x22\x44\xc8\xa6\x26\xe0\x96\x24\x21\x02\x33\x1e\xb4\xbd\x72\x20\x84\xaf\xec\x7e\x07\xae\x89\xc9\x6d\x8b\x6e\xe4\x11\xbd\x81\xfb\x4d\x7c\xb3\x4a\x71\x9f\x89\x4f\xb0\x88\xf2\x9a\xe1\x17\xe5\xe9\xef\x9d\x3d\xd5\x8d\xfc\x4a\xd9\x94\x61\xba\x9a\x21\x88\xfb\x39\xa1\xd1\xc8\xa2\x15\x9b\xee\x45\xb6\xe7\x6c\x6d\x12\xfa\x98\x64\x4c\xa3\xf7\xfd\x68\x1c\xd5\x01\x1d\xf0\xa1\x3a\xa0\x38\xeb\x73\xa8\x83\x8b\xbc\x43\xf9\xe1\x8d\xfc\x97\xf0\xf7\x56\xc4\x51\x7d\x40\x10\x2f\xd5\x85\x04\x10\xaa\x0b\x19\xa3\x79\x1b\xd1\x95\xf9\xa4\x18\x25\xd5\x21\xdb\x26\x73\xe8\x19\xf2\x82\xfc\xfd\x1a\x26\xca\xa3\x73\x42\xa3\x88\x3d\x32\xc2\x8d\x33\x26\xe0\x08\xdd\x78\x64\x39\x32\x69\x8d\x33\xe3\xd0\x79\xa7\xd1\x22\x03\x57\x6a\x0d\xb9\x65\xe8\x6c\xf6\x3c\xe7\x19\x76\xe1\xe7\x3b\x7f\x22\xe3\xfc\x90\x31\x66\xf7\x33\x59\x5e\x18\x9f\x5b\xce\x1c\x27\x4a\xa9\xee\x61\x72\xf1\x50\x7a\x5d\xc0\xf2\x92\x87\xf9\xbb\xf4\x6c\x0f\xf5\x01\x6a\xa0\xfd\x3d\x93\x87\xd6\x09\x3a\x76\x32\x03\xef\xf7\xa1\x50\x5a\x27\x2a\xe1\x7e\x3e\x3e\x5f\x46\x57\x15\xa1\x1f\xc8\xe6\xa3\x25\xa8\x13\x59\xdd\x56\x86\xec\x6a\x70\x6d\x39\xb2\xb5\xb3\x63\x6f\x63\x3b\x98\x9c\x70\x0f\x7d\x51\xbc\x4a\xa9\x3e\xc2\x49\xf3\x31\xaa\x18\xfa\x7d\x68\x40\x1f\x25\xc9\xc6\xd7\xa8\x2f\x21\xa4\x25\x4d\x0a\x57\x5e\xad\x26\xd6\xc8\x18\xb6\xbe\x1a\x83\x0e\x12\xad\x99\xc1\xd8\x52\x5b\x9b\x77\xe0\x08\xdc\x36\x9d\x2a\x35\x5a\x73\x2e\xe3\x09\x87\x16\xa8\xc3\x6f\xdc\xe2\xfd\x11\x47\xf0\xd7\x8c\xcf\xaf\x67\x3c\xee\x23\xe6\x83\x71\xdf\x8a\xe5\x85\xf1\xff\xe5\x8c\xdf\xbd\xc6\x98\xe6\x2b\x58\xa1\x80\x8b\x3f\x7b\x16\xf5\x83\x4a\x6d\xcb\x46\x3d\x4c\xb2\x1c\xad\x13\xb5\x37\xae\x00\xf5\x73\x31\x87\xaf\x14\xd3\xf9\xe0\xea\x0d\x3a\x1e\x56\xe0\xdd\x08\x6d\xb8\x8d\x3c\xff\xc2\xe2\x6a\xd4\xd7\x06\x36\xd4\xe0\xfc\x31\xde\x82\x56\x9b\x18\x7e\x87\xf2\xa5\x0e\x43\x1b\xf1\x75\xdd\x11\x6f\x71\x5c\x91\x58\xf2\xc1\x9f\xe6\xe1\xab\xa3\x18\x66\xf8\x9b\xb5\x29\xbe\x73\xc7\x60\x2f\xec\xa1\x1d\x59\xf3\xf1\x1d\x3b\xee\x45\xe0\x9d\xf9\x5e\x72\x18\x15\x56\x1d\x42\x17\xb1\xfd\x7c\x5f\x54\x8d\x4f\x42\xdf\xe2\x9a\x71\xc5\xf7\x85\xe9\x19\xda\xd6\x51\x7c\x15\xff\x7f\xe7\xe5\xce\x70\x8a\x15\x58\xc3\x3c\x77\x2d\x1d\xe7\xd3\x17\xe7\x22\xcf\x7f\xf8\xf5\x05\xd4\xad\x24\xba\x5e\x42\x16\x95\xf3\x43\x8a\x3a\x72\x1d\xfb\xcb\xa6\xa6\x5b\xd9\xb4\x1d\xdc\xc5\xf1\x6f\xa9\x40\x2d\xea\x0d\xe7\x2d\x7f\x88\xf3\xec\xd4\xb1\x4f\xf1\xfd\xc6\xfa\xd0\x2a\x24\xee\x02\xaf\x91\x4d\xb5\x21\x2d\x38\x2f\x69\x6f\x69\xc7\x76\x20\x4e\x7e\x28\xd1\x3c\x00\x08\x32\xde\xdf\x40\x8b\xe2\x10\xa6\x77\x99\xc1\x78\xec\x30\xe6\x80\xb8\x8f\xd5\xab\xc8\x66\x4e\x78\x65\xec\x84\xd4\x53\xb6\x13\xf4\x09\x57\x00\x1c\x9f\xff\x45\x84\x62\xab\x37\xcb\x8b\xe4\xbf\xe7\xe5\x01\x56\xee\xc8\xb0\x3a\x8b\xf3\xfc\xd1\x80\x7c\x5c\x3f\x1f\x4c\xb8\x82\x75\xc4\xe2\x5d\xa9\x2f\x50\xb4\x46\x05\xfa\xcb\x6d\x5d\x72\x17\xaf\xd7\x1d\xb9\x8f\xf1\xaf\x70\x7c\x88\xd7\x41\x75\x54\x75\x31\x4b\xb6\x01\xe7\x1b\x7f\x99\xd7\xc8\x83\x8f\x92\x79\x8b\xf9\x19\x64\xf1\x1e\x75\xeb\x56\x03\xbe\xa0\xdf\x8c\xf6\xd4\x9f\x38\xfe\x4a\x58\xc0\x3f\x74\x20\x7a\x8c\xe7\x76\x63\xd7\x93\x53\x29\x2e\x65\xba\x97\x1d\xcc\xcf\x80\xd3\x3d\x70\x7c\x36\xe7\x63\xc0\xe9\x3f\x5a\xc7\x53\xa4\xba\xa9\x5f\xac\x1e\xd0\x27\x16\x7f\xeb\xba\x7f\xcb\xcb\x71\xc7\x22\x7c\x70\xe4\x74\x50\xfb\xaa\x2a\xd0\x57\x2b\x56\x96\xf6\xf3\xc8\x11\x77\x71\xbd\xb4\xd1\x82\xfa\x21\xad\xe9\xf7\x04\xf5\x10\x21\xe1\xf5\xc8\xa6\x2f\xb0\x7d\x85\x55\x38\x02\x2d\x9a\x71\xbc\x9c\xb8\xfb\x1d\xae\xb3\xbc\xac\x3f\xe2\x5d\x76\x45\x26\x8a\x10\x8b\xb2\x2e\xd4\x99\x68\x1e\xa7\x9f\x2e\x62\x0a\xff\xd4\x81\x30\x7e\xde\x71\x12\xc5\x71\xcc\xaf\x61\xde\x5b\x8a\x9c\xff\x45\x02\xcb\x43\xda\x3b\x8a\x9c\x5e\x8a\xd3\x7f\xd4\x31\x1d\x49\x53\x33\xc5\x2f\x4c\x27\x41\x3f\xf1\x47\x3e\xc5\xf6\x3d\x7f\xe6\x25\x39\xaf\x14\x9f\x2f\xf6\x6f\xaf\xc4\x4f\x8d\x55\xbf\x8d\xf3\x7e\xf4\x94\x5a\xac\x42\x12\xe1\xfc\x18\x47\xa7\x75\x9a\xf5\x38\xef\xaf\x88\x7b\x81\xf9\x08\x16\x7f\x83\x7e\x8c\x73\x0a\xdf\xa1\xbe\x78\x9a\x0f\xda\xb8\x13\xdf\x01\x5f\x71\xd4\x1b\x71\xaa\x13\x75\xa5\x03\x74\x00\x9f\x53\xcc\xcd\xe9\xa7\xaa\xb1\xbb\x21\xca\x0b\xff\xad\x03\x61\x8e\xb8\x9c\x5e\x6c\x3a\x8b\x9b\xf3\xbf\x88\x64\x7e\x49\x07\x02\x29\x9e\x62\xfd\x25\x9f\x55\x98\xbe\xca\xf4\x0d\x55\xcc\x4f\x84\xf3\xff\x68\x65\xed\xa9\xab\xf5\x9f\x79\x39\x78\xfe\x16\xf6\x83\x84\xe0\x6a\x9c\xf7\x77\xfe\xaa\xc3\xac\x46\x79\x3d\xc3\x75\xf6\x86\x88\x06\xd4\xbf\xac\x0d\xa2\xba\xb7\x65\x5d\xad\xb8\x4e\x0a\x12\xf9\x88\xba\xd1\x99\x36\x54\x6d\xe3\x7f\xeb\x27\x8e\x5e\x3d\x3a\x10\xaa\x62\x24\x8e\x73\x29\x72\x75\x92\x54\x98\x6e\x44\x64\xc5\xef\x3c\x10\x76\xf2\xe3\xbf\xea\xe3\x4c\x12\xa5\x18\x34\xbe\x77\xbb\x88\x61\x27\x67\x92\x98\x0e\xe4\x64\x5b\xef\xfe\xc2\xf9\x7f\x54\xb0\xd7\x39\xfd\xc7\x4b\xe6\xaf\x82\xf5\x93\x58\x3e\xe0\x8f\xba\x0f\x3d\xbc\x37\xe3\x8c\xff\xd6\x7f\xfc\x97\x0e\x64\x10\xe3\xd8\xb8\xba\x2a\xa3\x18\xef\xe5\xcf\x78\xab\x39\xc9\x14\x39\x1d\xc8\xc6\x0a\x8a\x9c\x0e\x24\x99\x69\x10\xb2\x1a\x28\xb7\x5f\xdc\xfd\xbd\x52\x09\xa9\xda\x44\x5f\x7f\xc1\x7c\x41\xbe\xf3\x11\xf2\x2d\x8d\xfe\x9f\xe3\x7b\x1b\x18\xa7\xf8\x98\x79\x91\xfc\x43\xff\xc1\x38\xd6\x1b\x02\x14\x4b\xaf\x51\xbc\x6c\x45\xb1\x88\x9d\x4d\x86\x3f\x74\x30\x4e\x7f\xf1\xf8\x7f\xeb\x3f\x7a\x74\x20\x5c\x1d\x14\xa6\x03\xe1\xf8\x7e\xce\x57\xc4\x87\xd5\xdb\xe1\x7c\x51\x66\x1d\xa0\x18\xc2\xea\x08\x6c\x60\x75\x6f\x38\x1d\x48\x32\xfb\xfd\x9c\xdd\x84\x40\x3c\x21\x97\xbb\xbf\xbb\x1b\x21\xd5\x66\x84\x80\x0a\x21\x2f\x1e\xd1\x9f\xff\x52\x21\xe4\xd3\x68\xfa\xff\xd7\x2c\xa7\x9c\xfe\xa1\xa7\xfe\x09\xfb\x2e\xb7\x19\x0f\x5a\xa1\x4a\x91\xd3\x3f\x5c\xfe\xce\xe2\x67\xfa\x87\x7c\xb9\xdf\x79\xe0\xf8\x37\x2e\x2e\x2e\x4e\x2b\xf6\x1e\xe6\x13\x7b\xa3\xc5\x5f\x3a\x01\x4e\x07\x32\x88\x79\xb3\xfc\x97\x0e\x24\x84\xf1\x7d\xe1\x2c\xfe\x98\xc1\x84\x40\x09\x21\xdd\x2b\xf7\xce\xbb\x84\x64\xbb\x51\xcd\xcb\xe5\x1c\x42\x7e\x7d\x20\xa4\x3a\x98\x90\x9f\x15\x84\xbc\x74\x24\xe4\xd7\x42\x42\x3a\xd5\x7e\xfb\xc2\xbc\x10\x66\xed\x80\xd3\x3f\x88\xb0\xf8\x39\xff\x0f\xa6\xff\xb8\xc6\xda\xe6\xdf\xfa\x8f\x42\x96\xbf\x3f\xf5\x0f\x5c\x3f\xe8\xd1\x3f\x70\xfc\x3f\xd3\x7f\x70\x3a\x08\x4e\x0f\xc0\xf1\xe2\x7f\xeb\x40\xb8\x7a\x22\x5c\xff\xf0\x65\x6d\x71\x3a\xd3\x2c\x2d\x66\x79\x09\x67\xf7\x74\x57\x1c\x21\x5d\x0a\x84\x24\x4f\x20\xe4\x87\x05\x21\x59\x16\x84\xfc\x88\xa6\xfd\xa2\x23\x83\x90\xbb\xad\x84\x74\x44\x13\xd2\xdd\x9f\xbf\x97\x10\xd2\x55\xd7\xbd\x8a\xec\xdd\x1f\x38\xfd\xc3\xdf\xfa\x8f\x32\xc6\x2d\xff\x2f\xfd\xc7\xbf\xe9\x1f\x2c\x03\x7a\xc7\x69\xc0\xfa\x71\x8f\x0e\x82\xe9\x01\x38\x3d\x08\x97\x1f\x4e\x27\xe4\xc4\x78\xef\x1e\x3f\x10\xf6\x59\xd3\x58\x7e\x38\x1d\xc8\x3a\x6b\x8a\x3b\x1b\x08\xf9\x79\x9c\x90\xa4\x6b\x84\x7c\xef\x24\x24\xdb\x8a\x90\xaf\xb7\x09\x29\x76\x25\xe4\xdb\x34\x42\xaa\xdf\x11\xf2\xf5\x05\x21\x6f\xf8\x08\xf9\x92\x4b\x08\xc8\x11\xf2\xd6\x83\xfe\xed\x13\x36\xe6\x70\xfa\x07\xce\x07\xe7\x1f\x3a\x30\xef\xff\x3b\xfe\x9c\x8b\xbf\xf3\xc0\xf5\x7b\xee\xfe\x1b\x30\xbe\x5b\x9b\xf1\xd7\x1c\x0f\xce\xe9\x01\xb4\x2e\x53\xd4\x65\xfc\xaf\x31\x8b\xff\x1f\x3a\x90\xbf\xc6\xcb\x05\xe9\x54\xe7\xb1\xe6\x2d\x21\x3f\xe3\x08\xd9\x91\x4b\x48\xc7\x64\x42\x0e\x36\x10\xf2\xe5\x00\x21\x99\x6b\x09\x69\xf7\x22\xa4\xe8\x0e\x21\x1f\x3d\x08\xb9\xab\x4e\xaf\x5f\x5b\x12\xf2\xe1\x1c\x21\x5d\x5f\x08\x69\x62\xf1\x71\x7a\x28\x4e\x07\xf5\x0f\xfd\x8b\xf7\xbf\xb7\xff\xb3\x6c\x2e\xe0\xf4\x0f\xa7\xbc\x7f\xe7\xa1\x47\xff\xc0\xd7\x3b\x4e\x4e\xef\xc1\xf1\xe0\x1c\x72\xbc\x30\xa7\x7b\xe0\xf2\xd1\xa3\x03\x61\xf7\x6a\xf8\xb8\x3f\xc6\x89\x9b\x84\xcc\x0d\x22\xa4\xd3\x93\x90\xd5\x2b\x08\xf9\x96\x4a\x48\x94\x01\x21\x9f\x2a\x09\x49\x8c\x21\xe4\xe3\x0e\x42\xba\x9f\x6c\xdb\xb6\x13\x52\x98\x4c\xc8\x3b\x11\xaa\xf5\x69\xd9\x49\xc8\xcb\xed\x84\xb4\xfc\x20\xa4\x6b\xf1\xef\x71\x91\x6b\x07\x15\x0a\xbd\xe3\xff\x5b\xff\x95\x37\x99\xdd\x7f\xe6\x49\x95\xc5\xb8\xdc\x93\xac\x5d\xa5\x5d\xff\x9d\x07\xe3\xf4\xbf\xe2\x67\x71\x72\xfa\x0f\x8e\x07\x96\xcd\xed\x7d\xcd\xfd\x9c\xf3\x0d\xe1\xfa\x0b\x37\xce\x0e\x66\x3a\xb7\xb1\xe9\x84\xfc\x3a\x47\xc8\x4c\x1f\x42\x3a\xc2\x09\x59\x7e\x9a\x90\x4f\x43\x08\xe9\x7e\x7e\xfa\xa0\x47\xc8\x7e\x19\x42\x5a\x27\x12\x72\xb2\x1f\x21\x6f\x73\x08\x29\x0c\x27\xe4\x8d\x2f\x21\x77\x4d\x69\x0e\x5e\x18\x12\xf2\x4a\x85\x90\xce\xcc\xdf\xfa\x48\x6e\x3e\xb8\x56\xd0\x3b\xfe\x7c\x15\x8a\xe7\x58\x7c\xb9\x4c\x27\x93\xb9\x8c\xe2\x09\x56\x6f\x2d\x95\xf9\x71\x1d\xc9\xa2\xaf\xff\xd9\xfe\xb9\xf8\xb9\x3a\x20\x9c\xfe\x83\xe3\x81\xff\x46\x29\xe6\x8b\xc5\xe9\x64\xb8\x7c\x98\xb2\x7c\x76\xcf\x43\x9d\xad\x54\x4f\xf9\x4d\x80\x90\x69\x06\xb4\x1e\xdc\x92\x3b\xd4\xf7\x67\x53\x1c\x21\xcd\x57\x09\xd9\xb3\x96\x90\xd7\x52\x84\x9c\x58\x43\xc8\x8b\x72\x42\x0a\xde\x11\xd2\xa8\x45\xc8\x9d\xb1\x84\x3c\xf7\x21\xe4\xc5\x63\x42\x9e\x5d\x26\xe4\xd7\xcd\xdf\x75\xc1\x6e\x78\xf2\xce\xc6\xf6\xdf\xc2\x8b\xfa\x97\x0b\xc6\xbc\xb8\x62\x3b\xbd\x4d\x60\x10\x6d\xf7\x82\x23\xb1\xdd\x7f\xe5\x43\xbf\xc5\xb4\xc7\xbc\xe8\xaf\x72\xd4\x82\x17\xcf\xa1\xa4\xd4\xf0\xa1\xe2\xfb\xe0\x17\x7e\x7e\x2e\x0f\x5c\xfb\xe7\xee\xb3\x38\xf3\xaf\xfa\x77\x1f\x8c\xdf\xc8\xfd\x5c\x74\x1b\x6b\x1f\x16\xbd\xfb\x49\xf7\x78\xd1\x21\x41\xc8\x90\x7b\x54\xf7\xe8\x17\x44\x48\xdb\x74\x9e\x80\x85\x5b\x08\x79\x5d\xcd\xdf\x10\x3e\x81\x90\x26\x7e\xa1\xab\xf1\xd3\x09\x79\xf6\x48\x54\x2c\xd5\x89\x90\xc7\x4b\x44\x1f\x5c\xdc\x4c\x48\x5d\x9e\xd8\x8e\x5b\x3b\x09\xa9\xf1\x15\x97\x6d\x5c\x4a\xc8\xfd\x54\xf1\x88\x1f\x81\x84\x54\x28\x4b\xa1\x53\xe1\x65\x3d\x99\xa5\xd8\xef\x27\xcb\xe0\xf3\x64\x4e\x85\x14\x9e\xbb\xc9\x38\x2c\x89\xf5\x45\xd3\xe5\xa5\x70\x3f\x86\xd3\xbd\x1c\x1e\x2c\x89\x4a\xe6\x43\x1b\xc5\xbf\x76\xe3\x81\x74\x31\xac\xeb\xbb\xf7\x87\x58\x33\x97\x07\xee\x7e\x72\xf7\x99\x27\xf7\x3f\xe2\x27\xff\x81\xec\xe7\x9c\x5e\x48\x29\x92\x90\x8e\x85\xbc\x3c\x26\x21\x84\xbc\x1f\x24\xb2\xc3\xb5\x98\x90\xd7\x47\x25\x1b\xc7\x5d\x22\xa4\x41\xbb\x8f\xe7\x5c\x3f\x42\x1e\xb7\xca\x07\xad\x0d\x27\xa4\x96\x28\x05\xc6\x88\x10\x52\xdd\xa4\xa4\x70\x24\x99\xe7\xfe\x9d\x3e\x8a\x91\xe7\x8c\xf9\x12\x6f\x8e\x52\x5c\x5f\xee\xca\x2f\x54\xfe\x58\x71\xff\xd3\x62\xfe\x91\x37\xa6\x2a\x7e\xf9\xdc\xc5\x57\x70\xf9\x99\x52\x0e\x80\xc0\xdb\xbc\xb1\x2a\xfa\x00\xc2\x31\x99\x1d\x2a\x21\x00\xc2\x65\x9c\xee\xe5\x48\x8a\xf2\x77\x00\xa1\x13\x29\x87\xd1\x17\xc7\xf5\xe0\x29\x15\x2d\x00\xa1\xc4\xfd\x17\x94\xeb\x01\x84\x14\x13\x96\x2b\xb7\x03\x08\xfe\x8a\xfb\xa4\xdc\x09\x20\xf8\x36\x66\x84\x8a\x38\x80\x60\xdd\x9f\xf7\xff\x3f\xe2\x9e\xf0\x1f\x38\x87\x3d\x25\xb1\x53\x13\xfc\xf8\x7c\xf6\x45\x41\xe2\xa4\xcc\x4f\x42\x9a\x3f\xf5\x3d\xa7\x9f\x40\x48\x23\xbf\xb2\x8a\xe3\x34\xde\xa9\x8f\xc4\x55\x4f\x7a\xcd\x17\xb8\x74\xcf\x45\x5d\x34\xc0\x56\x78\xf9\xad\x05\xea\xb7\x96\x5e\x10\x13\xbe\x21\xaf\x61\xbd\x75\xb5\xc4\xac\xd2\x4c\x0d\xdd\xc4\x67\x52\xca\x97\x47\xa9\x57\x64\x2d\x96\x96\x2f\x8a\x54\x5f\x5f\x12\x27\xbd\xb5\x40\x59\x7d\x7d\xad\x8a\xf4\xda\x8b\xb3\xd5\x9b\xdb\xd6\x48\x55\x9d\xdb\xab\x71\x0d\x40\x32\xed\xd4\x60\xcd\x12\x00\x29\xd7\x63\xb3\xb4\xbc\x01\xa4\xa6\x24\x25\x69\x2d\x01\x90\x12\x4c\x14\xd4\x1a\x08\x20\x39\x67\xcf\x7b\x6d\x55\x00\x29\x9e\xf8\xa7\x5a\x76\x00\x12\xe5\xb1\x43\x35\xfd\x00\xc4\x33\xa3\x07\x68\x06\x00\x88\x8f\x8b\xbc\xab\x51\x09\x20\xb6\x6c\xeb\x77\x8d\xf7\x00\x62\xf3\xff\xdf\xe3\xe7\xfd\xff\x28\x7b\xef\xb8\x9e\xdf\xef\x7f\xfc\x18\x4d\xed\xa5\x3d\x25\xed\x81\x54\x22\x24\xa3\x48\x85\x64\x54\xb2\x52\x4a\x49\x65\x25\x4d\x4a\x69\x2a\xed\x45\x11\x9a\x0a\x95\x8c\x92\x8c\x52\x88\x32\x8a\xc8\x56\xb2\xb7\xeb\x77\x7b\x9e\xeb\xf1\xe0\xc5\xfb\xfd\x7a\x7f\x3f\xbf\xd7\x3f\xe7\xf5\x6c\x79\x9c\x73\x9d\x6b\x3c\xce\xfd\x7e\xdd\xcf\x56\xf8\x83\x0f\x22\x82\x3a\xad\x5f\xf7\x4b\x62\x7d\x76\xb0\x44\x16\xeb\xf4\x4f\xb9\x55\xc6\xf2\x7b\x00\x74\x2b\xa8\xef\x57\x58\x3e\x2c\xf4\xc6\x6d\x0d\x6d\x83\x12\xde\xe2\x2b\xdf\x34\x47\x4d\x9f\x2c\x30\xf1\xfc\x33\x2d\x95\x45\x8f\x84\x9b\x4e\x67\x6b\x59\xae\xf3\x15\x1b\xac\x09\xd4\xac\xda\x71\x5f\x72\x7f\xd5\x3d\x4d\x89\xbd\xc3\x47\x76\x97\x7f\x1d\xe3\x76\xf0\x81\xcc\x9a\x92\x7b\x1a\x6d\xa7\xe4\x64\x17\x1d\x49\xd2\x58\xd6\xde\x24\xbb\xa1\x38\x5d\x63\xe7\x93\x63\x32\xfd\x87\x12\xc7\x04\x90\x7b\xd2\xb3\x72\x8f\x6a\x2e\x22\x44\x7a\x44\xda\x16\xcd\x00\x42\x46\x8a\x27\x45\x68\x76\x13\x22\x15\x1f\x2f\xa1\x59\x46\x88\x64\x6b\xac\x85\xe6\x76\x42\x24\x55\xa2\x77\x6b\xb4\x10\x22\x3e\x2c\x32\x49\xa3\x9a\x10\xb1\xf9\x11\x4b\x47\xaf\x21\x44\x64\x60\x87\x97\x86\x2c\x21\x22\xb7\x83\x1f\x8c\xda\x45\x88\xd0\xce\xff\xb7\xff\xc3\x99\xb7\x41\x31\xbc\xb7\x4c\x0e\xc9\x60\xdd\xf2\x43\xa7\x1a\xde\x4f\x7a\x55\xae\x89\xef\xa7\x0f\x4b\x0d\xf0\x7d\xf5\xb6\xd9\x38\xee\x21\x27\x00\xda\xa3\x4c\x9f\x8d\x3c\x09\x70\xc1\x72\x42\xe3\x98\x8d\xfc\xba\xf5\x81\xc6\xa7\xcc\xfa\x44\x93\x8e\x0f\x9d\x00\xb6\x5f\x24\x5b\xca\x92\x8c\xd7\xad\xd4\x93\xc9\x2c\x6e\x1f\x1f\xb8\xa9\x5a\xfe\xe7\x81\xb0\x71\x69\xb1\x63\x94\x3e\xe5\xad\x1b\xbb\x34\xaf\x48\xe5\x73\x56\xb9\x51\x4a\x55\xaf\x5a\x40\xc6\x12\xc3\xc2\x4b\xf7\xd5\x6e\xa7\xe5\x1a\x4e\xbd\x5f\xa4\xb6\x61\x9f\x87\x61\xe1\xa7\x57\x2a\xcf\x13\xcd\x8d\xea\x08\x51\x4e\xda\x1d\x38\x56\x90\x10\x25\x93\x9d\x6a\x46\xfa\x84\x28\x28\x87\x85\x1a\x4d\x27\x44\x7e\x5e\x88\x94\x41\x26\x21\x32\x3f\x82\xea\x0c\x7a\x08\x91\xd9\xbc\x6d\x92\xfe\x0f\x42\xa4\xad\x36\xfb\xea\xb9\x12\x22\xa5\x16\xb8\x57\x6f\x1b\x21\x92\xb7\xfd\xa7\xe9\x2e\x22\x44\xc2\xe5\xbf\xf8\x6f\xf6\xe7\xb8\x8f\xa4\xb7\xa3\xac\x55\xb0\x1e\xf9\x36\x44\x1f\xeb\x6b\x4f\xbd\x26\x20\x6e\xd7\xfd\x63\x32\xea\x04\xdc\x20\x96\xf8\xf5\x2b\x67\xac\x10\x0f\x6e\x04\x6b\x53\xa1\x2e\x80\x1a\x07\xeb\xa1\x2a\x92\xbc\xb3\xcb\x5e\xcc\x9c\x38\x76\xa3\x68\x41\x51\xd6\xf4\x40\xab\x7a\xd9\xb3\xb9\xa5\x96\x5e\x4b\xdc\x94\x26\xa6\x6f\x9c\x26\xee\x63\xa6\x36\x2d\xf9\xf6\x94\x98\x88\x80\xd1\x45\xf1\x5a\x16\x12\xe9\x93\x34\x27\xc4\x8c\x9b\x74\xb1\xe4\xbd\xd6\x40\x94\xa7\x79\x46\xa3\x91\x76\xc3\x4e\x05\x73\xbe\xae\x9d\xda\x67\x22\xda\xcc\xa5\x5e\x57\x6a\x9d\x0c\xed\x31\xf7\x23\xb7\xc6\x88\x07\x39\x98\x2f\x23\x2f\xd4\xdf\x6c\x5e\x34\xd1\x92\x10\xb5\x29\x01\x73\xcd\x1e\x13\xa2\xd2\xe6\xf7\xcd\x4c\x92\x10\x65\x1d\xdf\x2e\xd3\x9d\x84\x28\x3e\x5f\x3f\x6d\xc2\x13\x42\xe4\xc3\xbd\xde\x4d\x88\x26\x44\xee\xd2\xba\x97\xc6\xd5\x84\xc8\xd6\x78\x64\x8c\x3b\x49\x88\xb4\xc3\x7f\xce\xf7\x11\xe9\xd4\x2a\x60\x15\xe0\xe7\xd6\x31\x58\x87\x7b\x3d\x30\x1e\xab\xe3\x8f\x1b\xb0\x5c\x0f\x77\xcc\x67\x22\xef\xe3\x5a\x9b\x2d\x56\x47\x9a\x3d\xe7\xe3\x3d\x96\xd3\x21\x8e\x58\xbf\xac\x9e\xb5\x78\x38\x17\x3f\xc0\xd1\x86\x25\x57\x65\x5d\x87\x7b\x16\x1c\x59\xf4\x43\x67\x88\xb0\x53\xda\xb7\x85\x2e\x93\x8f\xcb\xec\x8c\xeb\xb3\x8f\xb6\x77\x55\x3b\x17\x35\x63\x5e\xee\x9a\x4d\x63\xf4\x43\xef\xcc\xfd\xb1\xed\x87\x8e\x5e\x90\xf5\x9c\xa9\x89\x6e\xfa\x3a\x9b\x45\xac\x0f\x15\x85\x18\x3a\xf8\x47\xcd\x1e\x7b\x8a\xc7\x68\xb9\xdf\xe8\x59\x96\xd7\x0a\x8c\x8a\x7c\xc3\x66\x09\x3d\x1b\x65\xf8\xc5\xa7\x71\x96\x3f\x89\xd1\x3f\xe4\x35\x62\x46\x19\xa9\xd6\xce\x5d\x3b\xd1\xaa\x8f\x5c\x1d\xd3\xbf\x26\xd5\x6a\x06\xb9\xa3\x11\xba\x4a\x70\x7a\x20\x79\xa1\xbe\x6b\x45\xb4\xa5\x13\xf9\xac\x56\xef\xf6\x64\x8a\x07\x21\xca\xfb\x5c\xaf\x4f\x89\x22\x44\xe9\xb5\xab\xa4\x85\x29\x21\x8a\x01\xce\xe9\x93\xf6\x13\x22\x1f\xfd\x3b\x0e\x7f\xfa\xff\xa3\x0d\xe1\x19\x18\x30\x37\x47\xbe\xcf\xc3\xde\x99\xf4\xfe\xb3\x83\x3d\xea\x27\xb5\xf1\x2c\xc2\x7b\x8b\x17\x36\x3a\xe3\xe7\xba\xba\xe5\xd8\xf7\xa0\x22\x7f\x15\xf2\x1e\x0e\x3e\x73\xc7\xf5\x24\x6f\x9e\x67\xa4\x38\x3f\x40\x4a\xc6\x5a\xe5\x51\xfe\x23\x5e\xc4\xcc\x5f\x3d\x7d\x42\x95\x54\x74\xa8\xe0\x0a\x75\xeb\xab\x2a\x3a\x81\x73\x5c\x64\x9d\x2b\xb4\x5d\x7c\xe6\x2f\x33\xd9\x18\xad\x7f\xcf\x43\x63\x89\x46\xf4\x9a\xb1\xd2\xab\xa6\x3b\x6d\xce\x9d\x39\xbe\x76\xb9\xe2\x22\xa1\xaa\xe7\x13\xf4\x9d\x53\x17\x1e\xbf\x7c\x78\x42\xc6\xd2\xa7\x0b\x87\xf4\x4e\x36\xfe\xbe\x34\x64\xa1\xc1\x57\xdd\xf1\xf2\x8b\x57\xcd\x5f\x48\xfc\x0d\xaa\x1c\x7f\x3a\x8c\x25\x09\xba\x3f\x1c\xf9\xed\x34\x48\x89\xf6\x84\x05\xd1\xf3\x82\x48\xad\xe6\xf1\x85\xa3\xe7\xa6\x92\xcb\x63\xc4\xe7\xf7\xda\xcc\x26\x8f\xd4\xf5\x1c\x9c\xad\xf3\x49\xbf\xda\x3d\x7b\xcd\x59\x5b\x09\x51\x71\xb5\x33\x9a\xe9\x49\x88\x32\xff\xef\xfc\xa7\xfe\x7f\x1f\x30\x64\xc6\xdf\x02\xeb\x6d\x8f\x5e\xcc\x41\x7e\x60\xe7\x97\x85\x58\x35\x6f\xc9\x76\xc6\x5b\x72\x8d\xae\xab\x11\x9f\xaa\x35\xf7\xc0\xdf\x2b\xdf\x40\x79\x30\x45\x6f\x36\xf4\x71\x6c\xe6\x60\x00\xc6\x29\x49\x7f\xb3\x2c\xcf\x63\x80\xa8\x17\x9b\xbe\xca\x5f\xe7\x31\xda\x7e\x25\x60\x99\x81\xa6\xd8\x2e\xbf\x3e\xbf\x10\xcb\x6b\x0a\xf2\xee\x05\xeb\x9f\x2f\x72\xd1\xf0\x72\x69\xf6\xd2\xf3\xaa\xd0\x13\x58\x3c\xd2\xf3\x44\xf8\x4f\x83\x03\x0b\x12\x3d\x96\x64\xcc\x32\xb2\xb3\x1f\xb2\xd6\xa6\x3c\x64\xac\x95\xed\x2e\xf7\xf1\x17\xae\x8c\xf5\x9d\xab\xba\x66\x46\xf7\x6e\xa3\xfa\x39\x27\xd7\xcc\xfa\x50\x62\xf0\x66\x4e\xee\xca\x23\x24\x4b\xf7\xa7\xcd\xa9\xe5\x97\x49\x95\x76\x98\x0d\x9f\xf3\x7b\xd2\xac\xb9\xd8\x7a\xe2\xd2\xeb\xa4\x53\x23\x68\x76\xca\x12\x79\xf2\x70\x34\xff\xec\x67\x8b\xd4\xc8\x33\x75\xee\xd9\x32\x0b\xf9\xc9\x07\xb5\xf9\x33\x23\xe6\xaf\x27\x44\x65\xec\xac\xd3\xf6\x55\x84\xa8\x24\xb3\xfe\x93\x43\x06\x78\x9b\x6b\x70\xc3\x34\xac\xc3\xf6\x4d\x76\xc0\xea\x5e\xa7\xeb\x52\x8a\xff\x3b\xad\xc4\x75\xa3\x31\x09\xcb\x73\x70\xd2\x61\x03\xe6\x41\xd9\xb2\x40\x1c\xf7\x22\xf3\xad\x58\x2d\xcd\xca\x0d\x46\xfe\x58\xa2\x62\x28\x56\x0f\x23\x5e\x44\x60\x7e\x6c\x9f\xb3\xcb\x4c\xea\x38\x80\xef\x9c\x88\x89\x63\x7c\x04\xaf\xad\x1e\x19\xda\x66\xfe\x52\xda\x75\xf1\x96\xe0\x01\x7b\x33\xd5\x54\xfb\xd6\xed\x26\x6b\xc5\x35\xa6\xcc\x99\x1b\x24\xb0\xa3\x4c\xb3\x70\x66\xff\xd6\x27\xa9\xa5\xda\x76\xd3\xad\xb7\xb4\x1c\x7d\xaa\xfd\x64\xea\xbb\xcd\xe7\x1b\x77\xe9\x68\x4f\xf1\xdc\xcc\x7f\x47\x42\x3b\xc0\xa2\x7f\x53\xd7\x5b\x51\xcd\xcb\x53\x16\x07\xec\x20\xbd\x1a\x11\x53\xec\x37\x2c\x23\x03\xea\x8f\x2c\xac\xbc\x13\x09\x51\x73\xb0\xe8\xf7\x7c\x46\x88\x1a\xbf\xc5\x64\xf7\xc3\x84\xa8\x68\x5b\x28\xad\xe6\xac\x17\xaa\x93\x97\xae\x34\x27\x44\xb1\xc9\x42\xc6\x75\x3e\x21\x8a\x8a\x93\xc4\x5c\x36\x13\x22\x2f\xc0\xfa\xff\x46\xc1\x0a\xf1\xa9\x87\x7d\x0e\x88\x6b\xb3\xfc\xa7\x96\xf2\xb5\x1b\xe8\xf8\x6f\xc0\x7a\x73\x8d\x78\x00\x56\x45\xcb\xe7\x07\x61\x75\xb0\xf0\x65\xe8\x03\xf4\x7f\x30\x12\xeb\xb1\x49\x29\x51\xa8\xae\xbe\x4b\x31\x16\xd7\xd5\x2d\x31\xb4\x8a\xe8\x1d\x9f\x2c\xc5\x9f\x0c\xb0\x72\x42\x92\xa9\xf2\x3a\xde\xe2\x45\xd1\x09\xca\xe3\x4b\xc5\xb5\x6c\xfa\xf6\x5c\xb1\xae\x95\xff\x68\xe5\xb2\x47\x68\xe5\x50\xa5\xda\x29\xea\x31\x64\x9b\x93\xca\xed\x89\x47\x62\xb4\x93\x55\xd4\xa4\x4c\x82\x77\x0f\x2f\x7e\xab\xd6\x6c\x2c\x1e\x6d\x72\xb6\x41\xed\xcc\xb8\xb3\x51\xce\x9d\x73\xd4\x14\xc6\xcd\x8a\x92\x1e\xb8\xa8\x92\x3e\xee\x69\xe4\x37\x42\x94\x52\xc6\xdf\x09\xd9\x44\x88\xd2\x98\xf1\x3b\x82\x96\x11\xa2\x50\x3c\x7e\xf5\x96\x0c\x42\xe4\xaf\x8d\xf7\x0f\x74\x24\x44\x7e\xc8\xb8\x0b\x1b\x8d\x08\x91\xdd\x39\x5e\xc1\x77\x3a\x21\xb2\x92\xe3\x7c\xbd\x1e\x11\x22\x9d\x35\xee\x8b\xa7\x0b\x21\xd2\x7e\xef\xcb\x67\x60\xf5\xfb\x49\xf3\x42\xc4\x37\x3b\x7b\xdd\x50\x28\xaa\x2d\xcf\x0b\xf1\xab\xc6\x47\xfe\x88\x47\x9c\x8c\x0f\x42\x9c\xa7\x5c\x24\x14\xf5\xca\x0f\x8a\xee\x42\x94\x25\xbb\x2d\x16\xd7\xd7\xe4\xb4\x38\xac\x0a\x47\xbd\x4c\x46\xde\xd4\xf6\xef\x14\x2f\xf4\xc9\xcd\xc0\xf3\x95\xcb\xd5\x1c\xdc\x4f\x16\x25\xe5\xde\x97\x31\x1d\x52\x69\xbd\x28\x3b\x4d\x37\x58\xb0\xc4\x62\x63\x96\xfc\xf4\x51\x92\x03\xa6\x31\x99\x07\x9c\x73\xa4\x0d\xc7\x79\x64\x0e\x0b\x8c\x95\xa9\x34\xd8\x96\x61\x11\x2f\x26\x7b\x45\xd7\x3d\x3d\xae\xc8\x58\x4e\x55\xdb\x2e\xed\x54\xfd\x7a\x39\x11\xcd\xc1\xb4\xf1\x1d\x96\xb2\xd3\x35\xd3\xf7\x95\xbe\xcc\x96\x1e\xd0\x9a\x9c\xca\x4f\xc8\x48\x5e\xad\x65\x09\x61\x84\x48\xcd\xd2\x1a\x13\x63\x42\x88\xe4\x04\xed\x49\xbb\x9c\x08\x91\x2c\xd4\x36\x8c\xb0\x21\x44\x52\x54\x7b\x5f\x88\x19\x21\x12\x75\x3a\x96\x41\x33\x09\x91\xd8\xaf\x1d\xc9\x89\x93\x78\xb0\xce\xa2\x40\x4f\x42\xc4\xf3\x9e\xd9\x2c\xc0\xf9\x7f\xc7\x67\x15\x56\x7d\xdb\x1d\xa8\x8a\x7a\x43\x2f\xe5\x7d\xd5\x14\xed\xc0\x2a\x71\xd9\x97\x48\xc4\xe1\x8a\xfa\x63\x50\x17\x24\x27\x2c\x01\xf9\x2f\x29\x62\xf4\xb6\x71\x0c\x49\xc7\x73\x45\x08\x64\xe1\xfc\xf1\x87\x5c\xfc\xbd\xd5\x8d\x07\xb0\x3a\xbc\x70\x07\xe5\x85\xcc\xfc\x79\x64\xaf\xa0\x2d\xc0\x24\xbe\xc3\xfe\xa3\x5a\x79\x37\x1a\x3d\x28\x0e\x9f\x64\x2a\xf4\x55\x37\xb3\xd8\x7a\xd1\x25\x91\x1c\x4d\xa3\x43\x2f\x36\x8c\x15\xcd\x55\x3f\x79\x28\x69\x77\x85\xd8\x64\x35\xad\x83\x0f\x0b\xf6\x88\xd9\xa9\xf8\x1e\xb4\xaf\xc9\x17\x03\xe5\x05\x45\x99\xed\xaf\x45\x35\x95\x6e\x14\xc9\x3d\xbb\x27\x7c\x58\xd9\xa3\x50\x95\x10\xc1\x4f\x2a\xe2\x39\xb1\x84\x08\x8d\x57\x09\x4d\x37\x22\x44\xc8\x58\xa5\x34\xa5\x84\x10\x21\x09\xd5\xd0\xc4\x06\xce\x39\x49\x65\x70\xcf\x51\x42\x04\x13\xd4\x46\x44\x4f\x23\x44\x48\x5d\x4d\x66\x67\x1c\x21\x82\x4f\x54\xb3\xc2\x75\x08\x11\x94\xee\xce\x5a\x83\xa8\x47\xbb\x0b\xe5\xbd\x9d\x77\xa0\x7a\x40\x35\xa2\x94\x0f\x51\xf1\x32\x0a\x6f\x8f\x16\xb7\x51\x5d\x98\x5c\xdb\x64\x3c\x71\xa4\xae\x4c\xc7\x75\x64\xcf\x0a\xda\x2f\x28\x3c\x29\x1f\xd1\x92\x2d\xc3\x0a\x99\x3e\x28\x87\x10\xff\x71\x19\x53\x82\xeb\xc4\x5c\xfd\x0a\x8c\xb3\x71\x1f\xad\xaa\xeb\xbb\x1f\x7f\x29\xe7\x39\x4c\x66\xf4\xd4\xe3\xbe\xe3\x2e\xf1\x46\xa9\x54\x1c\x5f\x6e\xbf\x99\xcf\x5c\x71\xd1\xf1\x25\xeb\x1e\xf2\x79\xc8\x0d\x1c\x37\xd8\x29\xcf\x37\x59\x56\xbf\xba\x25\xe7\x16\xaf\xaf\x8c\x7a\xf5\xbe\xe3\xe9\x3c\xc6\xd2\xd7\xaa\x5a\x5b\x3f\x73\x4b\x48\xf7\x57\x79\x3d\x31\x1a\x76\x45\x56\xb6\x6a\x11\x21\xf0\x45\x26\xec\xe8\x1d\x42\x86\x3a\xc8\xca\x1f\xb4\x24\x84\xab\x47\xf6\x71\xc1\x73\x42\x78\x14\xe4\xc4\x73\x82\x08\xe1\x19\x2f\xa7\x9a\xc1\xb1\x8a\xb2\x3d\xa9\xbb\x09\xe1\x8e\x93\x0b\x4d\xaa\x26\x84\x67\x92\xdc\xad\xb8\x3e\x42\x78\xfc\x3a\x8c\x28\x6a\xd6\x5c\xbf\x1d\xe3\x51\xef\x13\x89\xcf\x5f\x31\x18\x83\xf8\xef\xe1\x49\x49\x58\xfd\xcf\x77\xa4\xfd\xa1\xd2\x04\xb2\x70\x1f\x8d\x5f\x9d\x8f\xaa\xfb\xbb\x0a\x0a\xf1\x7e\x77\xd0\xcb\xc3\x78\x7e\xd8\xd0\x58\x82\xf1\x5b\x55\x53\x81\x78\x86\x63\x68\x35\xc6\xd5\xea\x74\x2d\x7e\xd6\x2f\xa1\xb7\xd3\x95\xa5\x1a\xb2\x84\x12\x00\x64\x85\x1a\xae\x6b\x97\x0d\x79\x25\x2d\xd0\x98\x6f\xad\x07\x20\x71\xb1\x31\x6f\xf5\x5d\x00\xb1\xe9\x8d\x09\x21\x0b\x01\x44\x46\x37\x4e\x4b\x8f\x06\x10\x9a\xda\xd0\x50\xe1\x0f\x20\xe0\xd9\x20\x71\x89\x0b\x80\xff\xe6\x39\xff\x5e\x2e\x00\x3e\xb7\xb3\x85\x5f\x2a\x01\x78\xcb\x6b\x6f\x71\xce\x84\xdc\x3a\xd5\x96\x68\x97\x94\x23\x92\xc2\x25\x72\x14\xfb\x3e\x70\x0f\x3f\x78\x9d\x63\x87\x5e\xdd\x8f\xfd\x40\x86\xce\xca\x75\xc3\xef\xe7\x66\x5e\xc4\xf7\x78\x6f\x7a\x6b\xfa\x94\x37\x45\x95\xab\xdd\xe2\x11\x15\x3a\x62\x9b\x82\xe3\x5c\xa0\x9e\x81\x28\x6b\x46\x3f\xc5\xc5\x13\x07\x0b\x51\x7d\x22\xba\x8d\xe1\x01\x8d\x2e\xd3\xe6\xd8\x80\x8e\x4a\xc4\xc5\xd7\x2d\xaf\xc6\x38\xb8\x1e\xac\xc1\xfd\xd3\xce\xe5\x34\xf2\x1c\x2c\xe6\x51\xdc\x50\x2b\xbe\x19\xf1\x31\x11\xb1\x56\x3c\x87\xf2\xed\x6d\x7d\xad\x70\x0f\x80\xeb\xf4\x55\x57\xf3\x38\x80\xa1\xdd\x57\x23\x17\x63\x64\xaf\xd6\x04\x20\x73\xf7\xaa\x4d\x02\xe2\x4f\xad\xc7\x8a\x11\xc7\x6c\x75\x69\x40\x45\xa6\x16\xe3\x3b\xc3\x39\xf6\x8a\xc6\x5b\x64\xb2\x35\xc7\xd3\xb3\xf1\x39\x06\xcf\x3e\xc5\xe8\x3c\x9c\x60\x6c\x25\xa3\x2c\x5f\xc2\xdc\x34\x2f\x66\xf0\xe0\xc2\x33\x1c\x7b\xba\x60\x17\xe2\xd8\xac\x0e\x54\x89\x28\x45\x95\x0b\xdd\x29\x0f\x28\x2b\xf7\x00\xf2\x15\x92\xd2\xa8\x0e\x52\xcc\x94\xa3\x88\xdf\x87\xb5\x97\x23\xcf\x6e\xab\x5c\x35\xce\x07\x9f\x12\xca\x0b\x59\xd5\x52\x8f\xf8\xa6\xd3\xbb\x06\xcc\x1f\x9b\x29\x4d\x18\x0f\xb3\x49\x14\x37\x54\x6f\x6c\x43\xdc\x77\x44\xf1\x4d\x44\xa5\x00\x3a\xc3\x24\x50\x6f\xbf\xf3\x85\x71\x34\xda\x24\xba\x62\x75\x26\xf9\xe2\x8a\xd2\x79\x26\x16\x9f\xac\x53\xfc\x00\x32\x75\x3a\xcd\xeb\x31\x13\x6f\x19\xdc\xc4\x88\x77\x94\xbf\x44\x25\xcc\x1b\xea\xd4\xaf\x16\xa6\xe3\x40\x33\x83\xac\x35\x30\x37\xcb\x4f\x6b\x50\x7b\xb2\x86\xda\x2a\x86\x2f\x52\x8e\xef\x16\xc7\x7b\x93\x70\x7f\x2b\x9b\x9d\x81\x7e\x14\x7d\xca\x3f\x86\xeb\xc0\xc1\x43\xb8\xff\xed\x8b\x2f\x41\x16\xc2\x1e\xdf\x72\xe4\x13\x46\x36\x56\x61\x5e\x04\x6f\xaa\x95\xa1\xeb\xe1\x29\x7c\x5a\x2f\x9e\x06\xc4\x43\x97\x57\x5c\xc0\x75\x73\xc1\x85\x8b\xf8\xfe\x31\xe3\xe0\x55\xc4\x01\xc7\x4d\xbd\x8e\xf9\xa5\xb2\x99\xea\x85\xf0\x29\x52\xb4\x1e\xe0\xc1\x67\x31\x44\xce\x1f\x94\x18\x61\x46\xf6\xf2\xcd\xc3\x99\xd9\xbb\x83\x9e\x54\x7a\xf9\x76\xe1\x7d\xee\x5e\x8f\x7c\x8c\xdc\x83\xe0\x93\xb8\x42\xdf\x3f\x74\x15\x57\x9a\x9e\x76\xda\x89\xa5\x47\xe4\x07\x8e\x68\x97\x08\xf5\xef\x3a\x83\xe3\xb6\x32\x9d\x07\x2e\x32\x1d\x07\x1a\xc5\x99\xb8\x30\xdf\xaf\x45\xe4\xb9\xdc\x3e\x13\xd1\xf5\x43\xa5\x05\x98\x7d\x79\x27\x8b\x11\x3d\x4f\xb3\x2e\x43\xd5\x91\x44\xee\x63\xf8\x5e\x19\xd5\x50\x83\x3c\xeb\x90\x8a\x7a\x64\x29\x6c\x5e\x7d\x0e\xdf\x2f\x7d\xaa\xce\x63\x9c\xdc\xad\x2f\x21\x9b\xc5\x59\xb5\x05\xfb\x62\xd8\x5d\xbf\x86\xef\xe1\x53\xc5\x6e\x62\x5c\x0c\xb8\x6f\xe3\xba\xa0\x98\xda\x83\xfb\x33\xf7\x00\x55\x23\x00\x78\xa1\x21\x84\x27\xb0\x17\x9b\xf5\x30\x1f\x5e\xa4\xe2\x74\x80\x97\xb9\x6b\x70\x47\x7f\xf1\x23\x14\xf3\xe3\xa5\x6d\x26\x9e\x64\x5f\x18\x57\x20\xc3\xfd\xc5\xdc\x4b\x59\xd4\xf6\xe2\x4e\xfe\x5c\xf1\x33\x32\x5e\xfb\xf6\x52\xff\x7a\x18\xbd\x8f\xae\x9a\x3f\xe3\x72\x95\x61\x1c\x5c\x52\xa1\xf6\x3c\x7e\xbf\x58\x71\x3f\xa2\xa8\xf9\xca\xc5\x78\xeb\x3e\xc3\xbc\x02\xc7\x29\x59\xe0\x04\xfa\xb1\x67\x45\x3d\xb3\x1f\xd0\xbe\x31\xdb\x15\xcf\x23\x6f\x30\x40\xf1\x12\x9e\xbf\xd7\x15\xb7\xa2\x9f\x2b\xee\xb4\xe3\x7e\xea\xe4\x70\x13\xd7\x45\x9b\x79\x9d\xb8\xbf\x4c\xb6\xbf\x87\xfa\x49\x7a\xbd\x54\x37\x43\x41\xf1\x09\xee\x33\xdc\xf2\xfd\xc1\x34\x0e\xef\x35\x46\x20\xd3\xe0\x83\x9b\x16\x22\xef\x1f\x4b\xe9\x89\xe6\xc3\x72\x37\x8c\xfc\xc7\x28\x7a\x62\xfb\xd8\x9b\x8a\x27\xf7\x8f\xdc\x25\xf8\xf3\x1f\xa5\xce\x63\xc6\x7d\xe8\xb8\x8b\x23\xf1\x2e\x74\x00\xf3\xe9\x0d\xc3\xf7\x79\xc1\xf4\xc5\x61\xe3\xd2\xcd\x20\xed\x9d\x6f\xa9\xbd\x31\xf3\x9f\x71\x39\x20\x4a\xf5\xbf\xb2\xa6\x56\x22\xbe\x9d\xd2\x51\x2b\x0d\xff\xd0\x43\xda\xf5\xae\x11\x51\xe7\xe0\x1f\xcd\xc8\x97\xde\xbc\xb7\x05\xf5\xa5\x7c\xe5\xdb\x70\x5e\xac\xcd\xbb\x89\xf1\x72\x7e\xd7\x89\xfe\x2e\x70\xba\x83\xea\x0a\x2c\x1f\xc8\xdc\xa6\x0f\x79\xd8\xba\x2b\x5e\xe0\xfc\x93\xab\x7e\x8d\xfa\x8d\xdc\xb7\x3e\x8e\xa5\x71\xf8\x99\xcd\x85\x6f\xae\x3f\x33\xe8\x8d\x1e\x42\xa6\x30\x4a\xa7\x4b\x29\xbf\xa1\x28\x30\x9a\x7e\xde\xf3\x83\xda\x03\x0c\xee\x7f\x8a\xc1\xbb\xaf\x33\x78\xf6\x73\xe6\x0d\x81\xfa\xc7\xea\xc4\xbc\x61\x78\x20\xb4\xaf\x14\xc0\xa3\xfb\x7f\xc6\xe5\xf6\x2a\x8e\xcd\x49\xfd\x0f\x1e\x14\x9e\xb3\xa3\x3b\x2e\xe0\x7a\x11\x6e\x74\x05\xdf\x33\x83\x4a\xdb\xb0\xcf\x28\xdb\x1f\x6c\xdd\x97\x4e\x7c\xca\x55\x6e\x77\xf1\xf7\x96\x7c\xb8\x8f\xeb\x87\x7d\xe3\x23\xcc\x83\x19\x3e\x4f\xf1\xfb\xa6\x9e\xfd\xb8\x5f\xea\x00\x3a\x07\x72\x3d\x5f\xc6\xd3\x79\xf1\xf3\x01\x8d\x03\x21\x5c\x0c\x0f\x46\x99\x79\xf3\x35\x67\x74\x2b\x16\x30\x7a\x10\x5e\x0c\x6f\x21\x9c\x51\x84\x4d\xf7\xa4\x96\xd5\xbd\x38\xc7\xe8\xc6\xdc\x60\x70\xfc\x3e\xa6\xff\x09\xe5\x09\xfd\xad\x13\xc3\xea\xe7\xb0\xba\x42\x34\x5f\xd2\x2d\xea\x71\x96\x25\xf5\x34\x20\x1f\x2a\xb6\xe2\xe2\x3d\xcc\x83\x69\x94\x0f\x13\x02\x37\x50\x1f\x68\x8b\x50\x17\xfa\xb9\xa1\xed\x2e\x7e\xdd\x63\x13\xed\x17\xe5\xb6\xad\x0f\xbb\xd8\x38\x75\x3e\xc5\xa7\x9f\x97\xf4\x12\xcf\x4b\x96\x26\x03\xf8\x94\x26\xd3\x29\xcb\x40\x07\x91\x5a\xe4\x3f\x60\xfe\x70\xc5\x92\x7f\xe5\x81\x98\x30\x7c\x86\xb9\x5c\xd4\xae\x6c\xa2\x96\xed\x8f\xc3\xe6\x05\xab\x7b\x51\xc9\xe8\x5b\x9c\x67\x78\x13\xed\x4c\x9e\xfc\xe2\x7f\x30\xbc\x09\xaa\x54\xf3\x4b\x27\xe6\x8f\xb8\xa4\x48\x34\xe1\xae\x13\xdf\x73\x99\xf6\x05\x8b\xbc\x86\xeb\x57\xe8\xfd\x9b\xc8\x77\xd9\x36\x78\x1b\xdf\x33\xfc\x2f\x77\xe3\x7c\xf0\xee\x7a\x84\xfb\x9e\xfb\xa9\xa7\xb4\x3f\x94\xe3\x4b\x64\x21\x2d\x8a\x7f\x8d\xbb\xbb\x6d\xec\x07\x7c\xff\x9c\xd6\xfb\x05\xcf\xd3\x26\x4c\x3f\xa0\x31\x1b\xa8\x95\xb6\xa1\xf6\xbf\xc5\xe1\x6f\x1e\xc8\xdf\xfd\x71\x7c\x18\x1b\x39\x13\xfe\xe0\x07\xb1\xf3\xe4\x18\x93\x0f\x67\x99\x3e\x49\x57\x18\x9e\x0c\xcb\xff\xf8\x95\x27\x4c\xbf\x25\xfa\x04\x94\x57\x46\xfe\x81\x53\xff\xcd\x7f\x60\xfb\xa0\xb0\x38\x38\xfb\x99\xfd\xbe\x99\x0d\xb5\xd3\x98\xfb\xf9\xb3\x19\x5e\x80\x7d\x04\xb5\xce\x0c\xe6\xb8\x96\xe9\xef\x11\x30\x94\xda\xb0\x46\x80\x1f\xae\x00\xf1\x0f\xe9\x7d\x66\xce\xc9\xfc\x73\x2c\xc0\xe1\x07\x00\x1f\x6a\x29\x16\xf9\xbe\x05\xa0\xf9\x32\xc0\xfb\xcb\x00\x5d\xce\x00\x5f\xa7\x02\xbc\x15\x04\xf8\xc0\xdc\x9d\x66\xf1\xde\x9e\xaf\xd4\xb2\xfc\x87\xff\xe0\x7f\x30\xfc\x90\xf3\x0c\x7f\xe4\xac\x29\xb5\x2c\xff\xa3\x96\xc1\x05\xc9\x7f\xe1\x3f\xb0\x7e\xb3\x7d\x30\x58\x1c\xdc\x90\xf1\xf3\xdf\x78\x20\x33\x19\xac\x99\xe5\x81\x2c\x3e\x4d\xed\xaf\xfe\x38\xc5\x94\xd7\x11\x66\x00\xf0\xe5\x2e\xc0\x9e\x6d\x00\x9f\xa5\x00\xb2\xf8\x00\x3e\x0e\xe1\x9c\xf0\x00\xde\xfe\x04\x38\x91\x04\xf0\x76\x3d\x40\x73\x1d\xc0\xdb\x73\x00\xb7\xcd\x00\xde\x07\x03\xf4\x37\x00\xbc\x61\x62\xfe\xf8\x04\xb5\x77\x19\x5c\xef\x06\x83\xf3\xb3\x78\xdf\xc5\xe7\x8c\xff\x6c\xff\x97\x7f\xe1\x7f\x1c\x0f\xfa\x1d\x07\xd3\x11\x7f\x8e\x37\xeb\xb7\x3e\x73\x5f\x5f\x9f\xe1\xb1\xb0\xfa\x17\xfa\x8e\x7f\xc6\x83\xc5\xfb\x59\x1e\xc8\x5c\x26\x8e\xbf\x78\x20\x0f\x39\xbb\x02\xc5\xf3\x7e\x18\x70\xd6\x1c\x80\x4f\x89\x00\x9c\x37\xf6\xf7\x47\x38\x7b\x35\xc0\xbb\x42\xce\x1e\x0e\x30\xb0\x07\xa0\x7a\x1b\xc0\xeb\xa7\x34\x0e\x03\xb5\x00\x5d\xe7\x01\xde\xac\x03\xe8\x4f\xfa\xad\x0b\xf3\x88\xe1\x58\xb0\x78\x27\x9b\x07\xbf\xf8\x1f\x4c\xbc\x58\xfe\xc7\x69\x66\xdc\x7f\xe1\xdf\x8c\xaf\xff\x8b\xff\xc0\xfa\xad\xc5\xe0\xb8\x5a\x63\x18\xcb\xdc\xeb\xfe\xc5\x7b\x98\xf9\xe7\xef\xff\xe2\x81\x30\x79\xb3\xc0\x9d\xe2\xfc\x6e\xab\xe8\x3c\xf0\x89\x07\xf8\xf2\x08\x60\x7b\x20\xc0\x7b\x6f\x80\xdd\xa9\x00\x6f\x22\x00\xd2\xae\x00\x0c\x5e\x07\x38\xe4\x0b\xd0\x3f\xc8\x39\xe3\x02\xbc\x74\x00\xb8\x90\x0c\xf0\x6a\x39\xc0\x9d\x8d\x00\x2f\x9e\x02\xbc\x9c\x09\xf0\x9c\xc1\xed\x59\x5d\x1c\x96\x0f\xd5\xc2\x60\xad\x6c\x1f\xa4\x7f\xf5\xff\xc1\x9f\xfe\x97\x9b\xff\x8e\x03\xcb\x7f\x60\xfd\x67\xf9\x1f\x2c\x4e\xf9\xb7\x55\x67\xfe\x6d\x96\xf7\xc0\xc6\xcf\x54\x98\xda\xe9\xe7\x28\xcf\xcb\xde\x87\xf2\xbe\x5c\xfa\x01\xbe\xf6\x03\x78\x55\x00\x7c\x74\x05\xd8\x36\x19\xe0\xed\x73\x80\xa8\x66\x80\x81\xb7\x00\xfb\x56\x03\xbc\x54\x05\x28\x3c\x09\xf0\xcc\x19\xa0\xca\x11\xe0\x69\x1d\x40\x53\x0c\xed\x0b\x75\x3b\x06\xe0\x59\x2e\x40\xff\x26\x80\xc7\x4c\x4e\xde\xee\xf9\x33\x0f\xd8\x75\x80\xd5\x96\xf9\xb7\xf1\x67\xf9\x0f\x65\x4c\x6f\x8b\x23\x33\x7f\xc7\x81\xcd\xff\xbf\xfd\x67\x79\x1f\x6c\x3f\x8c\x5f\x76\xf8\x9f\xf1\x60\xf3\xe3\x0f\x1e\x48\x28\xc0\x5c\x0f\xca\x69\x5a\x9a\x0b\xf0\x69\x1e\xc0\xda\x0d\x00\xef\xba\x39\x67\x31\x80\xfe\xcf\x00\x3b\xcd\x01\x5e\x1c\x06\x48\xf1\x00\x78\xfa\x0e\xe0\x80\x33\x40\xdf\x59\xaa\x0b\xf2\xa8\x95\xc6\xa1\xcf\x1e\xa0\xcb\x01\xe0\xd1\x21\x1a\x07\x96\x0f\x74\x93\xe1\xbf\x5c\x89\xf8\x73\x1d\x64\xfd\xff\x35\xff\xb7\x53\x5b\xa9\x4e\x6d\x29\xc3\xf5\xfb\x5f\xfc\x07\xe5\xf7\x7f\xfa\xfb\xb7\x0e\x06\x6b\x59\x7d\x08\x16\x27\x67\xe3\xa1\xff\x94\x5a\x33\x2b\x80\x9f\xf7\x01\x66\xfb\x00\x7c\x3e\x4b\xfb\x47\x7d\xe0\x02\x58\x2d\x06\xc0\x39\xfb\x72\x8e\x47\x2f\x6e\x02\x84\xbf\x04\x78\xfc\x0c\x20\x29\x95\xf2\x5c\x0a\x7a\x01\x1e\xf6\x02\x70\xde\xe4\x7a\x77\x02\x5c\xe8\x07\xb8\x7f\x16\xa0\xab\x1e\xa0\xa7\x0b\xe0\x55\xfd\xef\x75\xb1\x8d\xd1\x45\xb9\xc0\x70\x13\x58\xfd\x93\x5a\x46\x93\xa9\x8a\x19\xd3\x4a\x46\xc3\xaa\x84\xe1\x34\x14\x33\xf9\xf0\x8b\xff\xb0\xfb\x77\x1c\xd8\xf1\xff\x9b\xff\xc1\xf2\x3e\x84\x99\xdc\x11\x66\xb8\x07\x62\x0c\x8f\x8e\xc5\xc9\xd9\xdf\x43\x3d\x11\x5b\x80\x71\x15\x00\xdf\x9c\x01\xa6\xc5\x00\x7c\x0c\x05\xb0\x57\xa4\xfe\x2f\xaf\x00\x78\x51\x0c\xc0\x79\x9f\x7e\xd2\x0f\x10\x3a\x0a\xe0\xe1\x59\x80\x84\x41\x80\x07\x46\x00\x05\x06\x54\x0b\xe5\xd8\x78\x80\x3b\xdf\x01\xce\x5f\x01\xb8\xfd\x08\xa0\xf3\x18\xc0\xed\x06\xba\x5f\xdc\x62\xf6\xde\xcb\x4c\x8f\x2e\x76\x1f\x60\xc7\xff\x58\xdf\x9f\xf3\x9e\xe5\xfd\x1c\x62\xc6\xbd\x90\xf9\xfd\xfc\x2b\xd4\x66\xdf\xfa\x1d\x07\x76\x5c\x59\xbd\x13\xd6\xef\x7f\xeb\x83\xc2\xea\x5f\xfc\xd2\x05\x69\x67\xf2\xa8\x00\xe0\xc7\x51\x00\x9d\x3b\x9c\xd3\x1a\xc0\x44\x39\x80\xd7\xc7\x01\xac\x0b\x39\x6f\x95\x00\x4b\x67\x00\x3c\x31\x07\x58\xf7\x1d\xa0\x37\x1b\x20\xe8\x21\x40\xf7\x67\x80\xb8\x38\x80\x3b\x29\x9c\x77\x7d\x80\xce\x3d\x00\x15\x8a\x00\xb7\x82\x00\xce\xeb\x01\x74\x04\x53\xfd\xa4\x1b\x09\x00\xfd\x4f\x7e\xf3\xa1\xce\x33\xeb\x20\xcb\xff\x61\xd7\xbd\x5f\xbc\x9f\xb9\x7f\x8d\xbb\x01\xe0\xfd\xa4\xdc\x75\xf4\x73\x26\xa3\xe9\x94\x56\xf0\x3b\x0e\xec\xf8\xb3\xfc\x96\xff\x17\xff\xe3\x6f\x8b\xf1\xd2\x02\x90\x14\x07\xf8\xf4\x1d\x40\x35\x1a\x60\xf0\x38\x80\xd1\x47\x80\x17\x1f\x00\x2c\xcd\x00\x1e\xaf\x02\x58\xb8\x19\xe0\x41\x26\xc0\x9a\x3a\x80\x6e\x25\x80\x2d\x15\x00\xb7\xf5\x00\x62\x9e\x01\xdc\x1c\x09\x90\x7d\x8c\x72\x47\xcb\x7e\x02\xb4\x1b\x01\x34\x56\x03\x5c\x15\x02\xe8\x6c\x04\x68\x99\x0c\xf0\x6a\x1d\xc0\x45\xa6\x47\x53\xfd\xf1\xa1\x58\x57\xa9\x5a\x30\x14\xef\x5d\x1c\x5d\x3d\x1c\x3b\x9c\x1e\xcc\x1c\x76\x0e\xfd\xce\x1a\x82\x9d\x4f\xf3\xd2\x86\x26\xe2\xb8\x5b\x0c\xfd\x82\x7e\x3b\xc3\x62\x8e\x4d\x65\xd6\xcd\xc4\x5e\xa8\x65\xe3\xf0\xff\xf4\xff\xdf\xf8\x1f\x40\xf7\x03\xce\x7f\xdf\x0a\x01\xf8\x46\xd3\x73\x8f\xf4\x3c\x80\x97\x2d\x00\x9a\xf6\x00\x9c\xb3\xec\xc4\xf9\x00\xf7\x15\x87\x34\xdb\x26\x00\xdc\x16\xe4\xd6\x77\x4b\x03\xb8\xf1\x84\xcf\xc9\xff\x33\x40\xdb\x70\x01\xe9\x28\x51\x80\x2b\x36\x82\xc1\x99\x23\x01\x9a\x5f\x08\xad\x2f\xd9\x0a\xd0\x24\x27\x2c\x7d\xb6\x0c\xa0\xe1\x91\xb0\x71\x87\x0d\xc0\xd9\xaf\xc2\x32\xcf\x65\x00\xce\x4c\x14\xc2\xe7\xae\xaa\x16\xae\x42\xff\x43\x45\x90\x0f\x53\xb8\x59\x0c\xeb\x2f\x79\xa9\x42\x58\x7f\xca\xdc\x27\x84\xfd\x95\xd2\x93\x04\x51\x27\x28\xc5\x44\x10\x19\xdd\x89\x6f\x04\xf0\xde\x56\xdc\x53\x7e\xd4\xa5\x8d\x95\xe4\xd5\x64\xe3\xf0\x1f\xfe\xff\x2f\xbf\xff\xb2\x54\x6d\x12\xe0\x9d\x33\xb5\x2f\x7d\x86\x78\x0a\x74\x01\xf4\xbe\xe6\x8b\x50\xde\x0f\x70\xbb\x4f\xf8\xc0\x78\x5b\x80\xeb\x77\x24\x2a\x67\x5b\x00\xb4\xdc\x91\x0e\x5c\x56\x05\xd0\xac\x2b\xfd\xc1\xc7\x6b\xe8\xa5\x06\x57\x19\xc5\xb0\x2d\x5c\xca\xf5\xa5\x32\xf3\x53\x1c\xb8\xaf\xd7\x46\xcb\x68\x1d\xd2\xe7\xf1\x3a\x11\x23\xa3\x52\xe7\xcd\xf3\xbc\xda\x44\x46\xb2\x6d\x24\xcf\x85\x63\x7b\x64\xf4\x1e\x5d\xe6\xd1\xab\xb4\x93\xc9\xfc\xb6\x9d\x7b\x5c\x71\xb3\xec\x07\x42\x78\x9e\xb3\x7a\x2f\xac\xce\x4b\xea\x76\xd9\x7e\x42\x78\x86\x25\x05\xcb\x29\x12\xc2\x23\x12\x9f\x25\x77\x98\x10\x9e\xd4\x98\x9f\xb2\xdf\x08\xe1\x8e\xdc\xbd\x40\x4e\x87\x10\xee\x23\x91\x67\xe5\xa2\x09\xe1\xee\x08\xfb\x26\xe7\x44\x08\xb7\xef\xff\xc1\xff\xff\xca\x83\xf9\x2a\x43\xfb\xa5\xbc\xce\x11\xc0\xb7\x98\xc7\x8f\x44\xb0\xde\xd4\x7d\x4d\xd2\x73\xf8\x63\x80\x8e\x37\xf2\x0d\x32\x47\x01\x5a\x26\x2a\xfa\xea\x68\x0e\x4f\x3e\x7f\x41\xf9\xb1\xc5\x2e\x1e\x87\xd3\x12\xaa\xf3\xe6\x8f\xe5\x17\x3a\xa9\xa1\xda\xb9\xc6\x47\x60\xdb\x31\x4b\xd5\xb2\xad\x31\x42\x09\xa5\x69\xaa\xa5\x71\x7c\x22\x31\x47\xf8\x54\xc7\xe7\x2f\x13\x6d\x3e\xf8\x40\xa5\xa1\xea\x98\xd8\x8e\xc2\x7c\x95\xe5\x17\xf7\x8b\x15\xee\x4f\x50\x59\x7c\xaf\x53\x6c\x76\x81\xab\xca\xb1\x77\x85\xa2\x0a\xd9\x41\xaa\xf1\x84\x88\xa8\xa4\x78\xaa\xbe\x22\x44\xb8\x2c\xbe\x50\xf5\x2c\x21\x42\x0f\x63\x4c\x55\x6d\x09\x11\xfc\xb2\x6b\xaa\xca\x25\x42\x04\x45\x22\x87\xa9\x3c\x26\x44\xa0\x3f\xb4\x45\xf9\x15\x21\x23\x4e\xec\x90\x51\x11\x22\x64\x44\x7c\x90\xa2\x52\x0c\x21\x7c\x9f\xb7\x2c\x51\x9a\x49\x08\x5f\xd0\xff\xd5\x6f\x52\xc4\x83\xef\x8f\x1f\xf4\xc5\x11\xef\x7c\x69\x21\x87\xbf\xd1\xab\xaf\x82\x75\x97\xdb\x5e\xa3\xf1\xbe\x6b\x7b\xae\x26\xde\x43\x6a\xee\xd3\x57\x14\xf5\x01\x38\x1d\xab\x3f\x4e\x2d\x82\xfb\xdb\x71\x75\xbd\x3e\xe3\x7d\x02\x45\x65\x13\xf5\xeb\xad\xcd\x44\xf8\x8a\x47\xea\x1f\x72\xd1\x13\xd7\xde\x9f\xad\x2f\xee\x37\x51\x72\x30\x27\x51\x2f\x71\xa7\xa3\x74\x68\x46\x8a\x6e\x6a\x86\xbd\xec\xc4\x7d\xd3\x74\xae\x97\x3c\x96\xf3\xdb\x7b\x4d\x07\x1a\x86\xc8\xf5\x24\xdd\xd7\xde\x78\xcb\x5b\x2e\x22\x31\x57\x3b\xf6\xd5\x5c\xd9\xd8\x78\x4b\x9d\x55\x84\x48\xd7\x45\x4b\x6a\xd7\x13\x22\xd5\x1b\xa6\xa2\x73\x8e\x10\xa9\xa4\xe0\x01\xed\x4a\x42\x24\xde\x6e\x2b\xd6\x7c\x4a\x88\x58\xed\x96\x45\x5a\x3e\x84\x88\x5d\xd9\x24\xac\x69\x4c\x88\xe8\xb2\x8d\x95\x1a\x19\x84\x08\x87\x6f\x10\xd2\x10\x24\x44\xa8\xcc\xbb\x64\x74\x03\x27\x6e\xff\xee\xff\x10\x46\x07\x40\x18\xfd\x1a\xbc\x29\x87\x75\xcc\xa7\xee\xea\x58\x50\xe9\xd6\xd1\xc3\x3a\xfc\x4d\xff\x71\x58\x2d\x68\x71\x32\xc5\xea\x48\xc3\xba\x49\x47\x38\xb6\xd6\xc2\xe2\x3d\xef\x14\x80\x8a\x8a\xa9\x27\xe5\xb5\x87\xef\x3a\xb4\xd8\xa2\x41\x6f\xa5\xe0\x84\xdc\xee\x49\x17\xa6\x8a\x48\x34\xa6\x7b\x4f\x52\x5f\x18\x2f\x9d\x98\xec\x6b\x6e\xe2\xf1\x40\x8e\xc4\x69\x9a\x3d\x0c\x4e\x56\xbc\x1b\x9d\x6b\x7a\x2a\xd9\x58\x65\x76\x64\x8c\xc9\xfe\x83\x12\xaa\xed\x61\x05\x13\x76\xd6\xb9\xa9\x25\x85\xec\x32\xbe\xd2\xd6\xa3\x56\x18\xfc\xd2\xb8\xe4\xb1\x8b\xea\xe7\x60\xc9\x09\x8e\x3f\x7a\x55\xb8\x37\x3b\x4c\x30\x24\x44\xf1\xd2\xc6\x4f\xc6\x0a\x84\xc8\x7b\xf9\x26\x8c\xf7\x21\x44\xf6\xfa\x7a\xa3\x71\x99\x84\xc8\xac\xf3\x9a\x37\xf6\x24\x21\xd2\xa3\x3c\xd7\x1b\x71\xe2\xd4\xe5\xfe\xde\x70\x0b\x21\x92\xe3\x56\xbf\xd6\xf7\x27\x44\x5c\x67\xe5\x01\xfd\xe1\x84\x88\xb9\xfe\x2b\x0f\xa8\x48\x62\x36\xfa\xbf\x5a\x05\xab\x3d\x8f\x1b\xa8\xdf\x77\x52\xa8\x0e\xcc\x75\x65\x0b\xbc\x9f\x72\xb1\xdd\x0a\xef\xb1\x9d\x91\xb0\x46\x5c\xb3\xfa\xd2\x5c\xda\x07\x61\x8f\x1d\xd6\x2f\x0a\xd7\xcd\xff\x28\xf9\x13\x20\x73\x96\xfd\xb4\xd1\xb7\x46\x0c\x4d\xbc\x69\x7b\xd4\x74\x9f\x78\x4f\x54\x9d\xcd\xda\x39\xfb\xe4\x4b\xc3\x74\xac\xad\xdc\x96\x2b\x9f\x0f\x9a\x37\x2b\x29\xd0\x6b\x94\x6c\xe0\xf7\x99\xbc\x31\x7e\xa3\x6f\xfa\x55\x59\x65\xe5\x7e\x1a\xd3\xe2\x33\x63\xfa\xea\xaa\x4c\xad\x61\x5e\xd7\x2c\x67\x5e\x5a\xae\x65\xb6\x8e\x7f\x5a\x6b\x4f\xb1\x66\x85\xe7\x9c\x69\xef\x3e\xae\xd5\x78\xe7\x1e\x32\x2d\x87\x0c\xaa\x0f\x5d\xf9\x61\xca\x7b\x42\x54\x1e\xaf\xd8\x64\xa1\x45\x88\x52\xa6\x6b\xec\xe4\x2d\x84\x28\x0c\xba\xa4\x4d\xda\x42\x88\x7c\xcd\xb2\x04\x73\x20\x44\xb6\x65\xd9\x38\xd3\xcb\x84\x48\xdf\x77\xf2\x37\xd5\x23\x64\xa4\x83\xd3\x17\x13\x21\x42\xa4\xb2\x7f\xfb\xcf\xc3\xdc\x96\x93\xc6\xfb\xd8\x83\x93\x47\x63\x5d\xee\xb1\xa4\x31\xd6\x99\xee\x98\x4f\xc1\xaa\xf1\xd5\xef\x33\x91\xef\x71\xe1\x8d\x1d\xe6\x41\x5d\x33\xe5\x45\x54\xa9\x3a\x61\xf5\xa8\xf8\xfa\x32\xac\x06\xe5\x1d\x71\x45\x7d\xe3\x7d\x73\xdc\xde\x8c\x48\x05\x88\x33\x77\xdb\xaa\x64\xc7\x93\x16\xa1\xed\xf2\xc9\xc8\x59\x54\x69\xab\xe9\x32\x03\xab\x78\xd9\xd5\xbe\x36\x4e\xc7\x9d\x2e\xa8\x55\x7a\x54\x2d\x12\x58\x2f\xae\x91\xb0\xf2\xc3\xc2\x99\xe1\x67\xb5\x2e\xba\x9a\xce\x0f\x4e\x7b\xa8\xf3\x63\xe9\x44\x07\x9b\x92\x1e\xbd\x2c\xa7\x4c\xbb\xe6\x86\xe7\x7a\x1f\x1c\x73\xed\x66\x75\xcd\xd2\xeb\x58\x78\x77\xde\x8f\xd7\x42\xba\xb3\x16\xd4\xce\xeb\x26\xc7\xb5\xc6\x3b\x84\xdb\x2a\x90\x36\x8d\x59\xf6\x8d\x36\x27\xc8\x93\x51\x19\x76\x2d\xd6\xbe\xe4\xad\xea\x57\xdb\xdc\x59\xeb\x08\x51\xb6\xb0\x1d\x3b\x23\x82\x10\xc5\x2d\x73\x07\xad\x78\x08\x51\x18\x63\xd3\x31\xbd\x84\x10\x79\x29\x1b\xa9\x69\xea\x84\xc8\x3c\xfd\xe5\x3f\xc3\xff\x7a\x63\xa3\x8d\x75\xb7\xc7\xa2\x66\xb8\x0e\x76\x2d\x9e\x81\x7d\x8a\x5b\x2f\xd9\x22\x5f\xe4\xfc\x90\x45\xc8\x0b\xa8\x13\x76\xc6\x7a\x5d\xb9\xdf\x0a\x63\x8e\x3d\xe4\xb1\x06\x71\xed\x9c\x6c\x4f\xac\xc7\xee\x75\xf4\x46\xb4\x21\xaa\xcc\x27\x03\x62\x00\xc2\x34\xfd\x64\x64\x96\x40\x67\xe0\x92\xf5\x75\x5a\xa7\x04\xfd\xd7\xfd\xf4\xb2\x9c\x9c\x26\x75\xcd\x6d\x9f\x87\x9e\xc3\x0a\xe5\x51\x8b\xcd\xd7\x3c\x73\x5f\xa8\xfe\x74\xfe\xeb\xd5\xa9\xdb\xdf\x8c\x71\x9c\xe7\xb9\x2a\x38\xf9\x83\xe6\x2b\x9b\x27\x2b\x57\x14\xaf\xd6\xba\x34\xdb\x65\x85\xcb\x69\xa2\x2d\x32\xf3\xbe\xdb\xba\x0e\x3b\xad\x82\x99\xc2\x6e\xdc\x2f\xee\x6b\x8e\x9a\xa9\xb3\xfc\x0b\x79\x38\x3a\xcf\xea\x83\xb3\x3b\xf9\xa4\xd6\x6d\x75\x7f\x71\x06\x21\xaa\x26\x56\xb0\x68\x2b\x21\xca\x89\xd3\xbf\x2c\x18\x20\x44\x69\x8f\xa5\xbf\x83\x29\x21\x0a\x16\xd3\x27\xdb\x2d\x21\x44\x61\xfc\xb4\xa1\xb6\x17\x08\x91\x7d\x30\x75\xeb\x9c\x59\x84\xc8\xec\x27\x44\x1a\xeb\xf0\x2c\xff\x8b\xe5\x3f\xdd\x6e\xb0\x41\x3f\xdb\x4a\x1c\x91\xef\xd1\xf8\xce\x99\xde\xff\x6f\x58\x89\x3f\x57\xbe\xdc\x13\xf5\xad\x0f\xad\xf0\xc6\x3a\x7f\x6e\xd8\x46\xfc\xf9\x14\xb7\x40\xac\x63\x47\xb7\x6d\x41\x74\x66\xbb\x64\x10\xd6\xbb\x37\x8e\x0a\xfe\x22\xb4\x07\x60\x6d\xd3\xf6\x18\xd5\x47\x7c\xe3\x9c\x3f\x6f\x0b\x98\xb0\x4b\xac\x70\xbe\xf9\x16\x21\x9b\x57\x72\xb5\x73\xf8\x36\x65\xac\xf0\x52\x3a\x38\xa3\x23\x30\x7f\xcb\x7e\x95\x8e\x69\x61\x01\x5b\x12\x46\xaa\x8d\x9b\xfc\xd2\x3f\xaa\xf0\xad\x5a\x8b\xf9\xb2\x8d\x91\x75\xf9\x6a\x0f\xcc\xfa\xfd\xe2\xaf\x39\xaa\xed\x34\x33\xf4\x93\x79\x5a\xa5\x3a\xcb\x2c\xc8\xcf\x9a\x10\xa5\x17\xa6\x37\xbc\x3b\x08\x51\xe8\x31\x93\x5f\x7b\x93\x10\xf9\x5c\x93\xbd\x6b\xbe\x13\x22\x5b\x61\xea\xb5\xb2\x87\x10\xd9\x28\x93\x1b\x6e\x6e\x84\xc8\xd8\x99\xd6\xb9\x0c\x27\x44\x46\x6e\x42\xf5\xd2\x44\x42\xa4\x6e\x4e\x10\x5c\x7c\x88\x10\xc9\xce\xdf\xfc\xb7\xa9\xe8\x57\xe7\x17\xdb\xc7\xd4\xff\xc5\xa8\x7f\x72\x9e\x7f\x39\xe2\x14\xbf\xf8\x3f\x2e\x3e\xa8\x07\x74\xe8\x40\x00\x56\x0f\x73\x42\xa8\xbf\x7b\x83\xb7\xdb\x73\xec\xee\x9e\x50\xac\xd3\xef\x08\xa5\x3c\x98\x0d\xe5\x51\x58\xcf\x5c\x69\x18\x93\x38\x74\x1d\xc0\x52\xbf\x98\x2e\xd9\x57\xc3\xc1\x6e\x48\xf4\x79\xfd\x8f\x42\x62\x56\x96\xbb\x4a\xad\x66\x48\x1d\xb3\x58\xbf\x8b\xdb\x79\x8f\x0c\xbf\x99\xcc\x4e\xbb\x00\x03\xd9\x30\x63\x99\xc8\x85\xb1\x5b\xe5\x8e\x19\xdd\x8b\x88\x29\xc8\x96\xd7\x35\xf0\x0b\x2f\x3f\xe9\x23\x2f\xaf\xf7\x33\xec\xee\x55\x05\xb9\x03\x7a\x6b\xc2\x36\xf5\x5d\x92\xcd\xd7\xab\x0b\x1b\xf1\x83\x4b\x3a\x59\x5f\x6e\xfb\x04\x42\x46\x6e\xd2\xb7\xde\x44\x08\x91\x8a\xd1\x73\xf7\x27\x84\x48\x8e\xd2\x4f\xdb\xb0\x82\x10\xc9\xf5\x7a\x89\x3e\xe6\x84\x48\x28\xeb\x6e\x5c\xb7\x91\x10\xb1\x60\xdd\x32\xf7\xe7\x84\x88\x81\xfe\x8e\xd5\xfc\x84\x88\x5d\x7d\x3a\x60\x89\xfb\xff\xdd\x12\xaa\x9a\xdd\x56\xe8\x82\x28\x6b\xd3\xb0\xd5\xc3\xe8\xf8\x33\xfa\x3f\xcd\x01\x94\xff\x71\x85\xf6\x47\xca\x49\x0d\xc6\x2a\x71\xaa\x71\x18\xd6\xa5\x63\x5a\x77\x22\x2e\x13\xfa\x7a\x37\xd6\x7b\x03\xf4\xf6\x20\x3a\xe7\x5e\x9d\x84\xf3\x65\x91\x6b\x2a\xe2\x21\x73\x4f\xa6\x9d\x15\x4d\x07\x98\x66\xb4\x4f\x5b\xc3\x9a\xcf\xcc\x44\x32\xe5\xc2\xe4\x70\x11\x7d\xa3\xc2\x14\xff\x45\x95\xa2\xcf\x75\x1f\xee\xfd\xe8\x3b\x55\x1c\xb4\x26\xee\x0d\x89\x0a\x13\xbf\xaa\xb1\x26\xb9\x28\x97\x4b\xfc\xa3\xba\x47\x52\x43\xb5\x8d\x78\xcb\x28\x89\xa4\x21\x57\x26\x88\xeb\xaa\x6d\x4a\x5c\xdd\x5b\x2b\x26\xab\xb6\x37\x51\xfb\xab\xad\xc8\xb4\x51\x11\xb1\x0b\x09\x11\x7e\x30\x4a\x7f\x57\x04\x21\x42\x64\x94\x44\xb8\x3c\x21\x42\x2b\x46\x25\xed\x38\x4d\x88\x90\xbb\xba\xe8\xb6\xef\x84\x08\x2d\x55\xcf\xde\xfc\x00\x3f\x4f\xf2\x7f\x4b\x88\x60\xda\x28\x93\x0d\x1d\x84\x08\x78\xde\xad\x72\x88\xa2\xe3\xef\x8a\xbc\x9f\xa6\x06\x3a\xee\xb5\x69\xbe\x88\x6b\x54\x28\x6e\x46\xbe\xcf\xa1\xa7\x3b\xb0\x4e\x9f\x5b\x4a\x75\x12\x52\x57\x46\xd1\x3e\x30\x85\xb4\x6f\x4c\xc4\xe3\x44\xbc\x85\xbf\xa5\x31\x05\xf9\x0e\xde\x8d\x69\x18\x5f\xd7\x79\x14\x8d\x9b\xb7\x3c\x0f\xeb\xe0\xe6\xab\x0e\x18\x0f\x3f\x06\x30\x4e\x69\xff\x13\x45\xd3\xe1\x11\x5a\x83\xfb\xb9\x8d\x6b\xf9\x47\x8c\x1e\x5d\xf0\xd9\x3e\x73\x84\x80\xea\xcc\x82\x0c\xcf\x9b\x23\xb6\x2a\xd9\x16\xcc\x0e\xbf\x33\x22\x49\xc1\x34\xff\x64\xa6\xce\x88\x79\x72\x7b\xf3\xad\x2a\xee\xf0\x6f\x97\x6d\xcc\x2b\xbd\x08\x7c\x27\x65\xe7\xe6\x0d\xef\x39\xc0\x1b\x2c\x6b\x97\xeb\xf1\xf1\x39\xf7\x80\x1c\x4f\xe6\x24\x42\x78\x40\xce\x3f\xc5\x83\x10\x1e\x3b\xb9\x88\x44\x09\x42\x78\xb4\xe5\x25\xf6\x8c\x20\x84\x27\x47\x3e\x33\x7a\x3c\x21\x3c\x9f\xe4\xab\x22\xc7\x12\xc2\xd3\xa6\xc0\x1f\x1a\x48\x08\xcf\x63\xf9\xee\x60\x0d\x42\x78\x82\xaf\x8b\x2c\xc7\x71\x6c\x8a\x59\x87\x7e\x9e\xca\xf2\xc7\xfb\xee\x55\xe5\x41\xc8\x73\x38\x3c\x27\x0c\x71\xb8\x7c\x2e\xaa\x0f\x92\xf6\x28\x0e\xe3\x13\xf7\x86\xf2\x9e\x22\x1b\x69\xf5\x3c\xa8\x35\x1d\xc7\xdf\xf7\x65\x16\xe2\x3e\xab\x1b\xf3\x70\x5f\x71\xb2\xa4\xfa\x09\x33\x06\x8a\x11\x27\x31\xa8\x2c\x45\x5d\x1d\xf5\xf4\x72\x55\x09\x4f\x00\x85\xbc\xb2\xeb\x7a\x5b\x87\xcb\xc9\x6e\x2d\x97\xb0\x91\x1b\x96\x2a\xd3\x5c\x3e\xda\x5d\x15\x9c\x47\xae\x2a\x5f\x1b\xb2\x02\x40\x72\x61\x59\x79\x9a\x34\x80\xf8\x94\x32\x87\xd2\xcb\x00\xa2\xd5\xa5\x6b\xce\x7f\x02\x10\x26\x25\x2b\xee\xba\x00\x08\x4d\x3e\x5a\xfc\x76\x0e\x80\xc0\xd7\x62\xec\x15\x38\x62\xef\x7e\xbc\x77\xc0\xfb\x24\x07\x79\x0d\xbc\x3f\x33\xc2\x39\x96\xe7\xdd\x3e\xd4\x3f\xe0\xbe\x9c\x84\xfd\x7c\xb9\x37\xc7\xa1\xa2\x38\xd7\x96\x18\xc4\xbb\x2e\x7c\xf7\xc6\x7c\xaf\x8f\xa4\x3c\xa0\x2a\x0d\x9a\xef\x47\x6e\x51\x3e\xc4\xfe\x24\xda\x1f\x2a\x3d\x26\x01\xe3\x92\x98\x45\x51\xc6\x68\x45\x8a\x8f\xef\x90\xcc\xc1\x79\x14\xd0\x9e\x8f\xf3\xc1\x73\x47\x11\x76\xa9\x70\xf1\x2f\xc6\x7d\xd3\xee\x7e\x09\xe2\x77\x16\xf3\x28\x6e\xaa\x35\xea\x38\xf2\x06\xc4\x1e\xd6\x49\x0f\xbf\x02\x20\xf4\xbd\x6e\x9f\x5a\x21\xc0\x88\xb2\xba\xca\x29\xe5\x00\xbc\x56\x75\x47\x97\x8d\x01\xe0\x8a\xad\x6b\x0c\x2c\x05\x18\x16\x58\xb7\x37\xfe\x10\xc0\x10\xcd\xda\x87\x07\x51\xb9\xa5\x56\x89\xde\xc0\x3f\xf9\xfd\x26\xae\x60\x27\x5a\x5f\x22\xfe\x71\x9c\x39\x13\x97\x79\x50\x7b\x98\xe1\x3b\x14\x31\xb8\x4d\x01\x83\xef\xe6\x50\xdc\x73\x59\x3a\xea\x94\x42\x78\x2a\xe2\xc1\xa7\x0b\x36\x23\x4a\x7a\x5c\x87\xf6\x87\x3a\xba\x94\xe6\xfb\xfe\xa4\x38\x8c\x4b\x66\xce\x5e\x8c\x43\x52\x51\x1a\xe6\x7b\x8c\x40\x36\x9e\x2b\xc3\x56\x16\x20\x2a\xbb\xf9\x4e\x21\x9e\xa7\xd7\xe7\x1e\xc2\xdb\xc8\xab\x86\x95\x22\x01\x75\xf1\x30\xea\xb7\xf5\xde\x6a\x5c\x2f\x4d\xd6\xd6\x22\x2a\xa5\xd6\x74\x1a\xe3\xc5\xdf\x71\x9e\x6e\x4c\x70\xc1\x79\x24\xea\xcc\x37\x65\x4d\x40\xc5\x85\xa6\xb8\x05\x88\x94\x36\x3d\xf2\x5d\x85\xd6\x7c\x37\xe2\x9f\x4d\x52\x05\xee\x74\xe7\xaa\x41\x9c\xbf\xd1\xb5\x1d\x67\x68\xc3\x8a\xa7\x88\x90\x9d\xeb\xfc\x89\x38\x57\xdd\x08\xea\xef\x71\xc6\xef\x0a\x46\x07\xe3\x28\xc3\x8b\x38\xc4\xe0\xff\x07\x18\xfc\x37\x8f\x87\x63\x4f\xb8\x86\xa1\x8a\x40\xe9\x8a\x18\x86\x1d\x92\x88\xf8\x55\xee\x14\xda\x27\x28\x65\x45\x16\xc6\x65\xcf\xfd\x02\xcc\x83\xc8\x0f\x45\xa8\x33\xc7\xf2\x80\xfc\x83\x4b\x91\x6f\xe8\xd1\x56\x89\xeb\xe1\x72\xf1\xe3\xf8\x74\x0e\x2f\x6b\xf1\x3c\x69\x25\x54\x8f\x7c\x80\x71\x40\xf9\x30\x8a\x5d\x17\xf0\xe7\xb9\xe7\x5d\x79\x4c\xe3\x70\xd5\x40\x0a\xf9\x2c\x57\xeb\xc6\xd1\x93\x9a\xb9\x3d\x2a\x6d\xb4\x56\xac\x43\x26\x6b\xeb\x8e\x48\x5c\x81\x5a\x3b\x73\x70\x05\x6a\x1d\x5e\x85\x3c\x87\x96\x33\x57\x50\xa1\xe1\xca\x41\xda\x69\xe6\xb2\xd5\x47\x3c\xd9\x5d\x30\xa5\xfe\x9d\x7d\x41\x6d\x3d\xa3\x7f\x70\x42\x99\xfc\xc1\x8b\x29\x2d\x65\xf2\x26\x04\xeb\x37\xbd\x34\xef\x8b\xfa\x93\x91\xaf\x93\x57\x9e\x85\xfb\xe2\xbe\x26\xaa\x0b\x13\xbf\x9c\xce\xef\x9d\xe6\xc5\xb8\x3e\x04\xa7\x96\x60\x5c\x02\x7b\xe9\x78\x7b\x8b\x55\x21\xca\xb8\x5a\xac\x4e\x9d\x63\x97\x5a\x50\x9e\x80\x6d\x19\x1e\x4b\x61\x4a\x05\xed\x23\x63\xe0\x40\x6f\xe3\xcb\xd9\x5f\x45\x2f\x87\xad\xbe\xd1\x4a\xe3\x70\x4b\x45\x1c\xef\xf9\xdf\xba\x60\x84\x8c\xfe\x5b\xda\x73\x91\x1f\x73\xab\xd7\xfd\x14\xb5\x61\x18\xa7\x5b\x06\x14\xdf\xbd\x35\xa6\x0c\x19\x19\x37\x2b\x2e\xe0\x4e\xdd\xd1\x7a\x0f\x77\xac\x1b\x64\x10\x7f\xaf\xdd\x99\xfa\x77\x85\xd1\x7d\x68\x66\x3a\x0a\x9c\x63\x74\x53\xea\xed\xa8\x3d\xc9\xfc\x1c\xd5\x8b\x29\x6e\x4b\x0d\xa1\xfe\x67\xe2\xba\x96\x3e\x58\x80\xeb\x62\xc2\xa9\x22\x7c\x8f\xdc\x1d\x42\xf9\x6e\x61\xef\x2b\xf0\x3e\xfc\xd6\xa6\x6a\xe4\xcb\xf8\x19\xd7\x1a\xd2\x3c\xa0\xbc\x10\xd7\x62\x8a\x3a\x2f\xf4\x6d\xc2\xb8\xcd\x6e\xbb\x88\xf1\x9a\xa8\xd8\x82\x79\xa4\xb3\xe8\x1a\xc6\x43\x7a\x09\xed\x4a\x31\x64\xc3\x1d\xa6\x72\xd1\xf3\x45\x14\x23\x77\x9f\xd0\x37\x98\xfb\xb6\xb4\xdf\xc3\x03\x23\x8a\xef\xde\xb7\xdd\x4e\xbf\x7f\x3a\x05\x57\xf0\xfb\xad\x47\x83\xe9\xd7\x69\x86\xf5\x18\xdd\xc2\x93\x6e\x77\x5b\x3f\x76\xfa\xb9\x27\x41\xfd\xbb\xc5\xcc\x8b\x6b\xfb\xa9\x6d\x61\x78\x53\xcd\xa1\xd4\x36\x1c\xa6\xf6\xf4\x4f\x8e\xdd\x9f\x94\x83\x3c\xe0\x0c\xf3\xfd\x38\x3b\x93\x53\x0e\xe3\x7e\x10\x5b\x51\x8a\xeb\x59\xc4\xb9\x63\xc8\xeb\xd9\xee\x58\xb3\x84\xe6\x01\x1d\xef\xf5\x06\xe7\xc2\x38\x76\x8d\x3f\x1d\x6f\x67\x45\x3a\xde\x0e\x03\x2d\x88\xb2\xce\x7c\x77\x0d\xe3\x31\x21\x89\xa2\xf1\x9a\x8a\x9d\xb8\xba\x49\xf5\xd2\xbe\x22\xb0\x98\x66\x33\xc0\xd3\x12\x21\x9c\xef\xcf\x24\xb4\x31\x2f\x9e\xd9\xce\x40\xe6\xde\x73\x1b\x57\x7c\xb2\x67\xd2\x9b\x90\x0f\xf5\xec\x41\x02\x32\x55\x9e\x5b\x1f\xc4\x13\xee\xb3\xf8\x53\x19\xf8\xfb\x39\xed\x78\x22\x7e\xfc\xe8\x11\x8e\xd0\x13\xe5\x6f\xc8\xdc\xea\x65\xd6\xcb\xbf\xe3\xd2\xce\x74\xa4\x68\x29\xa7\xf6\x22\xde\x41\xc9\xda\x56\x88\xcf\xb3\x77\xe7\x51\x64\x99\xc4\x5d\xa6\x28\x7a\xd4\x8a\xe3\x88\x6f\x87\x54\xd4\x61\x1f\xb4\x2d\xc3\xce\xe1\xbe\xba\xe1\xe7\x79\xd4\x8b\xf3\xb4\xb8\x88\x2c\x9c\x15\xba\x57\xbe\x53\xb7\xda\x31\x1e\xb6\xdf\x3b\x30\x9e\x53\x7f\x76\x22\x8e\x3e\x7e\x07\x1d\xf7\xd1\xef\xef\x7f\xe2\x58\xf1\xb2\x3e\x61\xea\x3f\xe5\x85\x70\x4e\xf4\xfc\x38\x23\xdf\xea\x6b\xe0\xfc\x7e\x67\x4b\x3b\xdc\xbe\x8b\x58\x8a\x4c\x81\xb7\xa9\x7e\xf8\x17\xde\xe7\xd2\x15\xec\x5d\x42\x3e\x4e\xb9\xb7\xc6\xc7\xb7\xd2\xdf\x6f\xc1\x15\xe9\x4d\x7f\x2f\x9e\xfc\x06\x9b\x3f\xa0\x32\x47\x7f\x30\xc1\x27\x7e\x3a\x83\xfa\xdb\xcb\xac\x9f\xf7\x18\xfe\xc3\x2d\x66\x7d\xb8\x86\x7c\x42\x96\x07\x95\x50\x56\x85\xfc\x61\x56\x0f\x29\x3c\xe9\x34\x8e\xc6\x76\xfb\x46\xf4\x27\x20\xbc\x19\x9f\x7f\x7d\xd8\x15\x3c\x4f\xba\x6b\xb4\x23\xbb\xc0\x25\x95\x8e\xb7\x63\x02\xf5\x7b\x0e\xdc\xc1\xf5\x72\x0a\xf4\xe0\x3a\x6b\xd4\xde\x8b\x7c\x90\xd1\xe9\x54\x3f\x42\x52\xb0\x7f\x0d\x9d\x17\x6f\xe9\x02\x02\xdf\xbd\xb8\x91\xef\xf1\x63\x8c\x0a\x76\x12\xfa\xb1\xdd\xfc\x1b\xc7\x12\xdb\x85\xb4\x6f\x89\xed\x7a\x46\xff\x62\x27\x32\x0d\x7e\x66\x67\xe1\x89\xfe\x67\x1b\x1d\xb1\x1f\x6d\x17\x90\x5f\xf5\x33\xae\x9b\xe1\x0b\xbc\xc3\x3c\xf9\xc6\x30\x0d\xde\x17\x53\xdb\x2f\x46\xed\x53\xd1\xff\x16\x97\x24\xe1\xe3\x78\x2e\x60\x79\x50\x3b\x9f\x9c\x45\x9e\x57\x08\xde\x94\x07\xd8\x72\xfa\x0a\xae\x67\x7e\xf9\x57\xf1\x3c\xe0\xf9\xe3\x3a\x9e\x87\x56\x59\x52\xfe\xd3\x32\x6f\xaa\x17\x32\x7f\xde\x7d\xdc\x2f\x67\xeb\x52\x1e\xd4\xa4\x37\x8f\xf1\x7d\xc5\xa0\xe5\x39\xce\x97\x51\x0d\x83\xc8\x72\x93\x58\x44\x79\x21\x70\xf6\x5b\x1d\x8d\xc3\x6f\xfe\x83\x02\xa3\x6b\x62\x32\x9d\xda\x79\x0b\xa9\x5d\xc3\xe8\x9e\x6c\xed\xa1\x36\xe9\x1c\xfc\xc1\x7b\xa8\x0d\xa3\xf6\x4a\x06\xb5\xbf\xfa\x04\xad\x85\x7f\xf0\x3f\xd8\xb8\xbc\x63\xd6\x87\x57\x4c\x87\x1a\xaa\x2b\x14\x3f\xf6\x34\x8e\x5b\xf4\x8d\xc6\x39\x34\x0f\xe8\x3c\xdf\xe6\xd8\x82\xb3\x31\xd0\xe0\x06\x66\x97\xcf\x29\xaa\x03\xb5\x56\xb0\x0b\xed\x72\xb8\x87\xe3\xbb\x58\x8c\xfa\x6d\xdf\x48\x55\x36\x66\x5a\x3f\xc7\x6c\x35\x0f\xe8\x47\x7e\xa9\x81\xeb\x5b\xe4\x5b\xab\x85\x7f\xc6\x7d\x56\x52\xe5\x07\xae\x13\xc3\x5e\x92\x7f\xe5\x81\x8c\x75\xa0\xd6\x3a\x88\x5a\x17\x43\x6a\xd9\xfe\x38\x94\xf1\x4b\x48\x06\xc3\x8b\x3a\xc2\x74\x56\x66\xf9\x52\x6c\x3c\xba\x18\xbe\xd5\x7f\xe7\x09\xfd\xa9\x13\x43\xfe\x5b\x1f\x18\xa6\xb6\xff\x1f\x7d\x50\x98\xcf\xff\x2f\x1e\x88\x03\x83\xb5\x2c\x63\xf0\xff\xb5\x76\x00\x5f\x8f\x02\x6c\x0c\x05\xf8\x94\x44\x71\xff\xb7\x04\x20\xc6\x81\x93\xad\x00\x29\xc7\xe8\xbd\xe6\xfd\xa6\x14\xef\x2a\x3b\x05\xf0\x22\x95\xea\x1f\x3c\xf7\x07\xb8\xba\x1b\x80\x33\xab\x38\x79\xff\x22\x0e\xe0\xed\x77\x8a\x07\x91\x7f\xf4\x3d\xb8\xc1\xdc\x57\xfe\xd5\xff\x84\xc1\xda\x7e\xe9\x7f\xfc\xc5\xff\xa8\x61\x6a\xd3\x55\x57\x7f\xe3\x38\x7f\xfb\xcf\xf2\x3f\x58\x9e\x83\xde\xde\x3f\x3f\xb3\x71\xf9\x8f\xfe\x1f\x2c\x0f\x84\xb9\xd7\xbd\xc4\x1c\xe0\xfb\x7d\x80\x35\x72\x00\x1f\xbb\x01\x36\x2c\x07\x78\xa7\x05\xc0\xd9\x07\x07\x72\x00\x38\x27\xd7\x17\xa5\x00\x9c\x13\x2b\xc7\xcf\xbc\xab\x00\x4f\x2d\x00\x4a\xbf\xd3\x3b\xdd\x9c\xf1\x7d\x32\x15\xa0\xf5\x07\xc0\x13\x5d\x80\x9e\x6e\xfa\x73\xef\xea\xfe\x0b\xff\xe1\x1e\xb5\x57\x98\x67\xbf\x10\xc6\xf8\xcf\xf4\x8b\xa8\x67\xc6\xaa\x86\xb1\xd5\x0c\x26\x7b\xec\xf5\xef\x38\xfc\x07\xff\x81\xc1\x6b\x59\x5c\x9f\xc5\xb3\xd9\xcf\x6c\x5c\xd8\xfc\x30\x63\xc6\x84\xe5\x81\xd8\x32\xf8\xd8\xa2\x24\x80\xcf\x43\x01\x56\xf4\x02\x7c\x50\xa0\xfa\x0f\x6f\xda\x00\xb6\xf6\x03\xbc\x6a\x05\xd8\x55\x00\xf0\x24\x15\x20\xf1\x19\xc0\x63\x7e\x80\xdc\xcf\x00\x7d\x8b\x01\x4a\x35\x01\x1e\x99\x02\xd4\x07\x02\x3c\xb4\x07\x68\xb9\x0e\xd0\xf7\x9e\x73\xc2\x00\x78\x74\x04\xe0\x9d\xd9\xef\x3e\x20\x2c\xee\xcd\xe6\xc1\x2f\xfd\x0f\x06\xab\x64\xf1\x6f\xd6\xff\xe3\x8c\x0e\x44\x05\x83\x8b\x96\xc6\xfd\x8e\xc3\xaf\xfe\x17\x0c\xb7\x40\x93\x99\x27\xac\x0e\x02\xdb\x0f\x82\xfd\xcc\x7e\x9f\x8d\xc7\x1f\x3c\x10\x6b\x80\xd9\xa3\xa9\xbe\xc9\x82\x0a\x9a\x07\xae\x36\x00\x83\x77\x00\x3c\xb3\xe9\x3c\xd8\x22\x0e\xf0\x32\x12\x60\xa7\x3f\x40\x9f\x04\x40\x22\xc7\xdf\x5b\x9c\xb3\x3c\xc0\x43\x39\x80\x52\x2f\xea\x33\x67\xe5\x7e\x90\x0c\x70\x75\x1b\xc0\xfd\xad\x00\x3d\xd2\x00\xbd\xfa\xf4\xae\x3c\x8b\x7b\xb3\x7d\x50\x2e\x75\x30\xfe\xdf\xff\xdf\xfe\xb3\xe3\x5f\x1a\x49\xed\x3f\xf9\x0f\xac\xff\x2c\xfe\xcf\xe2\xf8\xac\x0e\xc2\xdf\xf6\x17\x0f\x84\xf9\x79\x43\x26\x5f\xcc\xa6\x52\xbc\x7b\x86\x3f\xed\xdf\x61\xe7\x0d\xf0\x36\x06\x60\xe9\x49\x80\xc1\xc5\x00\x1e\xaa\x00\xcf\xca\x01\x02\xf8\x00\x1e\x5f\x03\x08\x7b\x05\xf0\xd0\x1c\x20\xfe\x14\x40\xcf\x07\x80\xec\x40\x80\x9e\x5e\x80\x12\x4f\xba\x16\x70\xe6\xc5\x3d\x17\x80\xd6\x20\xfa\x99\x13\x9b\xee\xc9\x34\x0e\x9d\xa6\x94\x6b\xc2\xe6\xc1\x05\xa6\x3f\x0e\xab\x7f\xf2\x2b\xff\xe7\x50\x5b\xc9\xf4\x1c\x29\x65\x34\x88\x0e\x33\xbd\x39\x0e\xb6\xfc\x8e\x83\x36\x83\xef\xb3\xf8\x3f\xcb\xf3\x60\xf1\x7c\x69\x56\x07\x83\xc9\x7f\x39\xe6\x7e\xbf\x9a\x1a\xb5\x3a\xab\x7f\xe3\xfd\x5f\x32\x39\x67\x07\xfa\xac\x9c\xf3\xf1\xdb\x5b\x00\x8b\x9a\x00\x5e\x86\x02\xac\x16\x02\x78\x1a\x0a\xb0\x71\x3a\x40\xef\x51\x80\x1d\xa1\x00\xf7\x97\x00\xc4\xf5\x03\xdc\xe5\x07\xc8\x3c\x05\x70\xa7\x94\xea\x61\xdc\x8e\xa1\x71\xe8\x5a\x0e\xd0\x2a\x0a\x70\xeb\x30\x40\x4f\x3e\xe5\x4a\xbd\x6f\xfb\xad\x0b\x74\x31\xe8\xcf\x75\x90\xf5\xbf\x2a\xf9\x2f\xff\x99\x67\x66\xf9\x0f\x07\x73\xa8\x2d\x68\xf8\x1d\x87\x5f\xfe\x33\xfc\x0f\x96\xe7\xf1\xab\x0f\x0a\xc3\x7b\x12\xd3\xf8\xf3\xeb\x6c\x5c\x38\xf1\xf8\x79\x1f\x40\xb7\x16\xe0\xb3\x35\x80\x69\x23\x5d\x07\xac\x62\x00\x5e\xf6\x03\x38\x28\x51\xed\x23\xd7\x79\x74\x4c\xbd\x77\x00\xf4\x64\xd3\xf5\xf2\x4e\x2f\x00\xe7\x9c\x78\xab\x98\xf2\xc5\x3a\x62\x00\x8a\xcd\xa9\xce\x43\x8d\x26\xc0\x8d\x37\x00\x2d\x0e\x00\xd7\x32\x01\xba\xbb\x01\xd9\xbc\x1f\x7b\x7f\xe7\x41\x23\xa3\x3d\xc5\xf6\xbf\x61\xfd\x2f\xeb\x66\xf2\x9e\xd9\x47\x7e\xf1\x1f\x98\x31\xce\x67\xd6\x95\x9c\x21\xbf\xe3\xc0\xfa\xff\x1f\xfc\x0f\x06\x07\x67\xf5\x00\x58\x2b\xc8\xec\x8f\x2c\xef\x81\x13\x8f\xef\xa2\x00\xa3\xfd\x01\xde\x3b\x02\x18\xc5\x03\x0c\x6c\x03\xb0\x28\xe6\xbc\x3d\x00\xcc\x5d\x43\xf9\x2e\xcb\xbc\xa9\x2f\x9e\x11\x80\xa7\xce\xad\xe6\x00\x37\xdb\x00\xa2\x15\x01\x3a\xea\x00\xd2\x1b\x01\xda\xa3\x29\x6f\xee\xea\x4c\x80\x1a\x33\x80\x36\x57\x80\x56\x7d\x80\xd6\x04\x80\xfb\x9c\xff\x77\xa3\x6b\x6e\x33\xa3\xfb\xc1\xf6\x01\x63\xf3\xbf\x8c\xd1\xe8\x61\xf9\x0f\x7f\x8f\x7b\x1e\xa3\x71\x95\xc9\xf4\x72\x4a\x7b\xf4\x3b\x0e\xbf\xf8\x0f\xff\xc2\xff\x60\xf5\x20\x58\xcb\x7e\x9d\x67\x04\xc5\xfd\x39\xef\x8b\x1f\x13\x00\xe4\xe5\x01\x06\x25\x01\xb4\x08\xc0\xb3\x26\x80\x09\xe5\x00\x8f\xc6\x00\x70\xde\x9b\x38\xf3\x7f\x91\x19\xc0\x6d\x27\xca\xa7\xbc\xe9\xc6\x79\x67\xa3\xe3\xbe\x2b\x07\xa0\x4d\x01\x60\xdf\x6e\xea\x27\x27\x0e\x97\xbb\x00\x6a\x95\x00\x2e\xd9\x71\xde\x88\x00\x2e\x7c\x07\xe8\x89\xa3\xbd\x94\x3e\xc6\x31\x5a\x5b\xff\xe0\xbf\xb1\xeb\x1e\xab\x7b\x72\x80\xf1\x37\x8f\x19\xcb\xec\x8d\xd4\x66\x30\xe7\x8e\x54\x66\x6d\xdf\x1b\xfc\x3b\x0e\xac\xff\xff\x27\xfe\xc3\xa1\x3f\xed\x77\x17\x00\x2e\x31\x80\xf7\x67\x00\xc4\xe7\x01\xbc\x2a\x07\x50\x59\x01\xf0\x78\x05\x80\xc1\x74\x80\x9e\x22\x00\x0b\x2d\x80\xae\x38\x00\xbb\x3c\x9a\xd7\x6e\x62\x00\xed\x12\x00\x7e\x56\x00\x9c\xb7\xb4\xf0\x78\x80\x4b\x63\x01\x52\xc6\x02\x34\x9b\x00\x1c\x74\x06\x38\x2f\x05\x70\xd2\x13\xa0\xe1\x16\x3d\x13\x9c\xe3\xcc\xa5\x1f\xf4\x6c\xf5\xbe\x1c\xa0\xe6\x10\x7d\x26\xb6\x17\x1d\x9b\xf7\x2c\xdf\x89\xe5\xfb\x64\x24\xff\x77\xbf\xe3\x99\xde\x57\xb1\xab\x7f\xc7\xe1\xff\x17\xff\x81\xf1\xff\x07\x73\x9b\xe6\xc3\x26\x6a\x07\x54\x00\xb8\x97\x50\x5e\x9f\x94\x01\xc0\xfd\x56\x00\x0d\x65\x80\xae\x64\x00\x13\x51\x80\x1b\x53\x01\x66\x87\x03\x5c\xbd\x0d\xb0\xd4\x1f\xe0\x72\x15\x80\x77\x25\x40\x33\x0f\x40\x48\x17\x40\xa3\x37\xa4\x26\xeb\x03\x9c\x15\x1e\x72\xa6\x70\x32\x40\xfd\x84\xa1\x96\x27\xb2\x01\x6a\x5f\x0e\xad\xbe\x7c\x00\xa0\x66\xd8\xd0\x1d\x3d\xe3\x00\x4e\xc4\x0e\x1d\xf7\xee\x16\x40\x45\xfc\x30\x27\xf4\xdf\x7d\xd8\x71\x1c\xf7\x84\xe1\x58\x77\xcb\x34\x19\x1a\x88\x7e\x4f\x18\xa2\x83\x7e\x2b\x0d\x43\x9d\xcd\x04\x66\x7f\x88\x65\xb4\xae\xa2\x55\x28\x2f\x66\x67\xca\xef\x38\xfc\xff\xe1\x7f\xb0\xfe\xd3\xde\xaf\x00\x03\xae\xd4\x3e\x31\xa7\x96\xb3\xfe\xf1\x87\x02\x74\xcd\x06\x90\x1b\x03\x70\xad\x6a\x58\x98\x5e\x1f\xc0\xe5\x87\xbc\x2e\xd3\xdc\x00\xce\x7f\x10\xe0\x72\xe4\x06\x38\x73\x4d\xe8\x95\x07\x2f\x40\x5d\x8a\xc8\xcb\xa0\x83\x00\x27\x2e\x8a\x2d\x8e\xaf\x00\xa8\x8a\x11\x7b\x56\x30\x12\xa0\xe2\x88\xf8\x82\xaa\x59\x00\x65\x7e\xe2\x93\x9a\x17\x02\x94\x84\x8b\x0f\xbf\x93\x0e\x70\xa4\x41\x2c\xeb\xb5\x07\xc0\x21\x45\xb1\x0e\xce\x33\xe5\x76\x89\xa1\x5e\xce\xbe\x67\x62\xd8\xf1\x34\xc9\x49\x08\xeb\x2b\x71\x0d\x22\x58\x77\x88\x29\x12\xc4\xfa\xe4\xae\x56\xa1\xdd\x1c\x1b\xa9\x2b\x90\xcf\xb1\xa1\x6f\x46\x20\xbf\x3c\xf8\xd4\x08\x91\x5f\x71\xf8\x3f\xf8\xff\xb3\x9c\xf1\x7f\x0b\xb5\xfd\x8c\xca\xee\x93\xef\xf4\x2d\xe9\x9e\x2f\x2f\xbe\x67\x75\xbc\xe6\xc7\xfb\x15\x2d\x1e\xa2\x5c\xe2\x39\x00\xe7\xbf\x49\xed\x1b\x33\x0e\xe0\xf4\x10\x99\x8d\x13\xf7\x0f\xc9\x3b\x31\x56\x8e\xdb\xb6\x60\x78\x58\xc5\x0d\xb9\x63\x6e\xa5\xdc\xb6\x25\xc3\xe5\x47\x06\x88\xf1\x0e\x3d\x74\x50\xde\x3e\x6a\x19\x5f\x5c\x21\xc8\x5b\x67\xaa\xf0\x1f\x2d\x50\x90\x1b\x28\xc9\x1f\x21\x9b\x9b\x2e\x57\x76\xf6\xf2\x08\xf3\xec\x4b\x72\x5b\x3b\x24\xf8\xef\x64\x39\xca\x85\x3e\x4b\xe2\xe7\xcb\xf4\x92\x7b\x44\x08\xef\xee\x64\x49\x79\x03\x42\x78\xbd\x62\x7a\xe5\xad\x08\xe1\x15\xda\x79\x59\xae\x93\x10\x9e\xc9\xe1\x3b\xe4\x2a\x09\xe1\xbe\x1f\xb2\x4e\x6e\x2d\x21\xdc\x4b\xb6\xcf\x94\x7b\x40\x08\xf7\xe1\x2d\x49\x72\xfb\x08\xe1\x56\xda\xb4\x5f\xce\x8f\x10\xae\xae\x8d\xa5\xb2\x03\x84\x70\xf1\xfd\x0f\xff\x29\x0e\xae\xc5\xf8\x6f\x30\x14\xf1\xde\xe7\x8a\x28\xeb\x0d\x0f\xaf\x8b\x61\x35\xac\x33\x49\x06\xab\xa8\xd7\x14\xe5\xf1\x6d\xaf\xb9\x4e\x19\xab\x8c\x67\xe6\xa8\xfd\x1c\xa1\x0c\x70\xfc\xf6\x68\x6d\xc5\x51\xc3\x3e\x97\x7e\x1e\xfd\xda\xf0\x18\xaf\xfd\xa1\x75\x63\x94\xad\xdc\xf8\x5f\x15\x84\x8e\x49\x5c\x2c\x29\xe8\x93\xed\x3c\xc6\xdb\xab\x54\xb8\x24\xad\x53\xe3\x45\x48\xae\x68\xda\xde\x73\x1a\x8e\xc9\x3f\xc4\x25\x13\x0f\x8c\xce\x3d\xa8\x2a\xc1\x1d\x6f\xaa\xfe\xaa\x76\x9b\x84\xf7\x9e\x91\xea\x01\xad\x6f\x25\x66\xc6\xc4\xa8\xcf\x7b\x38\x55\x3c\x6e\xf7\x41\xf5\x9b\x5f\x52\xc4\xe4\x23\x52\x46\xdf\x23\x44\x74\xe5\xf6\x81\xd1\x63\x08\x11\xbe\xba\xe5\xb9\xba\x23\x21\x42\x71\x81\x9a\xa3\xb4\x08\x11\x54\xf0\xd7\x52\x73\x20\x44\x60\xdc\x86\x39\xaa\x2b\x09\x19\x31\x7a\x7d\x93\x4a\x1c\x21\xfc\x53\xd6\xad\x54\x11\x26\x84\x2f\x6a\xdd\x04\xe5\xa9\x84\xf0\xbe\xfe\x0f\xbf\x59\x2b\x08\x88\x63\xbf\x6f\xe4\xe9\xa3\xfe\x4b\x20\x2f\xa2\xfb\xba\x22\xd6\xf7\x3b\xbe\xaa\xe3\xd7\x5b\xe5\xb4\xf1\xbe\x73\x43\xaf\x21\xce\x98\x5a\x73\xbc\x1e\x0e\x15\xd5\xe3\x8f\x0e\xe9\x00\x38\x1c\x67\x16\x2e\x1d\x02\x90\xf7\x71\xc2\x43\x4d\x09\xbe\xc5\xe9\xd2\xc6\x55\xe6\xe2\xc2\x7e\xc9\x43\x8c\x83\xec\x12\xc4\xb2\xf7\x2c\x1b\xdf\xbf\xca\x4d\x32\x60\xd7\xd7\xf1\xba\x9b\x0f\x48\xf3\x87\x7b\x8d\x53\x8f\xad\x92\x1d\xbe\xe3\xec\x58\xbe\xbc\x25\x72\x4b\x82\x4a\x8c\xf4\x8f\xbd\x90\x37\xdc\x1a\x61\xb8\xaa\xb9\x59\xde\x61\x73\xa3\xa1\xe4\xdd\x8f\x72\x5d\x9b\x52\x0d\x5d\xdf\x0e\x97\x8d\xf5\x6f\x35\x6c\x23\x44\x7a\x87\xcf\x50\x83\x93\x84\x48\xe9\xac\x9b\x6d\xc0\x4f\x88\x44\xf3\xda\x26\xdd\x1a\x42\xc4\x3c\xd7\xbc\xd4\x6d\x27\x44\x4c\x69\x95\xb1\xce\x71\x42\x44\x2e\xaf\xac\xd2\x76\x22\x44\xb8\xc6\xad\x49\x8b\x8b\x10\xa1\xad\x2e\x9b\x35\x33\x08\x11\x3c\xf2\x5f\x78\x30\x78\x5b\xf2\x9d\xad\x10\xbd\xff\xbe\x57\x01\x57\xc2\x7b\x5e\x1a\x78\xbf\xf5\x46\x93\x21\xd6\xa7\x2f\xb5\x99\x62\x1e\x9c\x21\x93\xd0\xff\x13\x8f\xa6\x61\xd5\xb0\xd4\x60\x3a\x56\x0f\x0a\x45\x67\x62\x7d\x22\xeb\x94\x75\x82\x50\x13\xc0\x5e\xae\xd9\x45\x2a\x55\x3c\x13\x76\xdf\x9e\x99\x37\x2e\x4d\x58\x2e\xcc\xcd\x4a\x71\x66\x84\x94\xe7\xb6\x2f\xd3\x4d\x97\x71\xc9\xdc\x0a\x54\xb7\x14\xf1\xdd\x2f\x7f\x77\x83\xd4\xd4\x93\x91\x4e\x4a\x0b\xbc\x1e\x4e\x59\x95\xbe\x52\x45\xd2\x23\xdf\x42\xb2\x64\x81\xaa\xb2\xbb\xe6\xe4\xa1\xe7\x82\x55\x43\x56\x9b\x4c\xf2\xb9\x79\x4f\x55\x7f\xd5\xb2\x49\xb3\x5f\x1a\xaa\xf0\xad\x3c\x37\xe9\x21\x21\x8a\x5d\xae\x16\xe6\x22\x84\xc8\x55\x39\x1b\x9a\x1d\x25\x44\xe6\xd1\xe2\x1a\xd3\x40\x42\x46\x3e\x71\xaa\x9f\x10\xc7\x89\x8f\xe3\x11\xe3\x5b\x84\x48\xca\x2d\xf8\x34\x7e\x14\x21\xe2\xc1\x0b\x7e\x8e\xb3\x20\x44\xac\x6f\xfe\x5e\xc3\x6c\x42\x44\xba\x7e\xfb\xcf\x85\xbc\x96\xb7\x5b\xc4\x76\xd0\xf1\x47\x1a\x14\xdc\x8e\xd1\x63\xfa\xdf\x98\x25\xd2\xbc\x9f\x86\x55\xb2\xfa\xb6\x59\x38\x0f\xaa\xaa\x6c\x51\x37\xe8\x68\xb9\x03\x56\xd7\x0a\x74\xe6\x63\xbd\x32\xed\xbe\x23\xe2\x22\x71\x6e\x8b\x3d\x87\x2f\x03\xd8\xf9\x6a\x49\xb9\xec\xb2\x61\x96\x41\x27\x9d\x9c\x74\x0d\x04\x12\x37\xfa\x2d\xfc\x3e\xc5\x47\xe2\xa0\xa7\xd0\x7c\xc5\xf9\xd5\xf2\x27\x57\x9e\xb4\x6f\x5e\x1b\xa5\x3c\xda\x45\xd3\xce\x72\xfb\x25\x35\x99\xc5\x61\xb6\x45\x49\xbb\xd4\x0d\x17\x5e\x98\xbb\xb4\xa8\x6c\xf4\x21\x87\x81\x39\x42\x75\xa3\x34\x26\xdb\x7d\xb0\x99\xd2\x56\xa5\xa1\x65\x27\x6e\x9d\xf4\x18\xd4\x3f\xcc\x7b\x69\x63\xfe\xbd\x55\xed\x9e\xad\xe4\x6c\x6e\x42\x94\x77\xdb\xec\x98\x39\x9c\x10\x85\x76\x6b\x93\xe9\xee\x84\xc8\x59\xcf\xde\x6e\xb9\x99\x10\xd9\x05\xb3\xbe\x4d\x0d\x25\x44\xba\x76\x66\xaf\xc5\x01\x42\x46\x8a\xcf\x48\x9b\xbc\x94\x10\xc9\x1b\x56\xda\x93\x94\x08\x91\xc8\x66\x79\x50\xef\xcb\x47\x22\x2e\xf5\xf4\xdd\x68\xc4\x5f\xee\x7c\x37\x7e\x4c\xe7\x3d\xe5\xc1\x5c\x30\x9f\x4d\xef\x3f\xcb\xdb\x62\x5d\xff\x18\xa1\xdd\xe7\x8b\x03\x96\x60\xf5\x27\x6f\xb5\x0b\xd6\x5d\x53\x13\x56\x20\xfa\x12\xeb\xba\x1a\xf3\x25\x74\xa8\x3b\xaa\xb1\x6f\xee\xf1\x78\x26\x7a\x17\x60\xfd\xdd\xb5\x92\xea\x0b\xf9\x0c\x57\x0d\xae\x19\x66\x9a\x22\xba\x77\xa9\xc1\xca\x90\xb9\xaa\x32\x79\xf3\x77\xbb\x79\xba\x3d\x52\x2c\xb4\x5d\xb1\xdc\x7d\xb3\xa4\xf2\xad\xd9\x1f\x5d\x5d\xf6\x54\xa9\x4e\x9f\x51\xe0\x22\x5b\xb0\x53\x4d\xd1\xb2\xd3\xd9\xe5\x84\x8a\xda\xdc\x69\x63\x96\x05\x5f\xa9\x56\xe3\x9f\x3a\x71\x69\xe7\x83\x0f\xaa\xdc\x53\x95\x96\x5e\xfb\x3c\x4d\xe9\xc5\x94\xc8\xc5\x23\x09\x51\x30\xb5\xa8\x5c\x98\x4d\x88\xdc\x52\x0b\x9e\xf9\x43\x08\x91\xf9\x3a\x59\xc3\x6e\x13\x21\xd2\x11\x93\xac\xe7\xee\x25\x64\x24\xd7\xa4\x75\xd6\x65\x84\x48\x59\x9a\x1f\x9e\xd5\x4e\x88\xa4\xa9\xd9\xe6\x99\xce\x84\x88\xaf\xff\x68\x20\x83\x55\xde\x67\xe6\xb4\x1f\xd6\x1d\x73\x33\x9c\x0f\xd7\x7c\xad\x10\xaf\x68\xda\x62\x8b\x68\x5a\x5d\x89\x23\xae\x0f\x95\x16\xcb\xa8\xee\xb7\x22\x55\x11\xce\x5f\x41\x6f\x9b\xa6\x76\xaf\xc3\xfa\xe5\x1e\xb1\xf5\x58\xe7\x0c\x53\xd9\x80\x7d\x51\xfc\xeb\xfc\xf1\x96\x98\x87\xc0\x26\x3b\xee\x16\x80\xe5\x2f\x36\x89\x28\xc8\x0e\x7f\xe7\x18\x11\xa0\x68\xf8\x53\xb0\x7e\xce\x29\xbf\xee\x19\xdb\x24\x4b\xac\xee\x6f\x18\x58\x76\x5b\xfa\xe9\x94\x9e\x0d\x62\x1b\x43\x64\x2b\xcd\xe3\x7d\x27\x45\x1f\x93\xbb\x67\x3a\x76\xfd\xb7\xdc\x91\xf2\x9e\xc6\xb9\xeb\xf9\x8f\x3d\x91\xdf\x36\x5e\xca\x5b\xeb\xe2\x3d\xf9\xd9\xe3\x44\xbd\x72\xba\x3b\xe4\xec\xc7\xf6\x79\x79\xbd\x8f\x93\x89\x1b\x7b\xd9\x73\x16\x21\x23\xd7\x8e\x3d\xb9\x7a\x25\x21\x52\xda\x46\xc5\x2b\x16\x10\x22\x91\x6f\xd4\xe7\x1a\x46\x88\x84\xa6\xd1\xe4\x65\xe5\x84\x88\x8b\x18\x06\x2d\xfe\x4a\x88\xe8\x7b\xc3\xda\x45\x07\x09\x11\xcd\x33\x68\x58\x50\x4b\x88\xc8\xea\xa7\x75\x7a\x06\xf0\x0f\xfe\x53\xbb\x37\xed\x8f\x73\x7e\x31\x1d\xef\xba\x92\xa5\x88\x5f\xb3\xfc\x9f\xe2\x89\x94\x17\x90\x4b\xbc\x11\xb7\x49\xdd\xed\x8b\xfc\xa9\x38\x99\x00\xc4\x73\xc2\xde\x6c\x39\xce\xb1\x9b\x24\x82\xb0\x6e\xeb\x39\x74\x07\xe6\xc7\x52\xa5\x70\xac\xf7\xcf\xcf\x8e\xf4\x91\x5c\x0f\x30\x6b\x52\xb8\x83\x66\x37\x5f\xf1\xe4\xf1\xa1\x31\x16\xa9\x22\x9f\x4d\x56\x85\x8e\x5d\xb4\x57\xec\xc8\xd8\x8c\x90\xe8\xf5\xf5\xe2\xcf\xf4\xcf\xee\x78\x19\x79\x46\xe2\xa6\xce\xc5\x1d\x32\x99\xd9\x92\x56\x5a\xae\xc1\x2a\xe5\x0f\x24\x65\xc7\xdc\xda\x3e\xb6\xe9\x9a\xc4\x61\x8d\x77\x41\x15\x77\x79\xc5\xaf\x6a\x9c\x09\x9a\xf5\xe6\x96\xd8\xb4\x31\xcb\xb7\xf4\x13\x22\xd2\xa9\x91\xe9\x5f\x40\x88\xb0\xd7\x18\x07\x9f\xcb\x84\x08\x5b\x8e\xd9\xe7\x55\x42\x88\xd0\xcf\xd1\xdd\x9e\x5b\x08\x11\xf4\x18\x23\xbe\x66\x37\x21\x82\xd5\x1a\x37\x57\x2e\x21\x44\x50\x62\xf4\x83\xe5\x95\x84\x08\x48\x74\x07\x4e\x71\xa2\xf9\x6f\x83\x78\xde\x85\xbb\x8e\x88\x16\xd5\x79\xba\xe2\x38\x56\x84\xaf\xc1\x2a\x68\xf1\x95\xf5\xe8\x57\xde\xd5\x8d\xb8\x0e\xa6\x59\x52\x7c\x3c\xee\xec\x36\x5c\x0f\x23\x96\xef\xc0\xaf\x6f\xf5\x0f\xc7\xfd\x63\x7d\x5e\x24\xa2\x6f\x6e\x7c\xbb\x71\xbe\xd8\xd5\xc4\x61\xbc\xa7\x45\x24\x2e\xe4\x93\x05\x30\xdd\x9f\x70\x46\x85\x8b\x6b\x93\x81\x49\x7c\xb2\xc9\xd6\x11\x86\xda\x7a\xf1\x2e\xf6\xaf\x05\x56\x8f\xfe\x1c\xf7\xda\xe3\xa6\x20\xbf\x5a\x65\xdc\xa2\xd0\x2c\x41\x4f\x15\xa3\x3d\x75\xfb\x5e\x0a\xae\x50\x1a\xb7\x47\xae\xa4\x48\xa0\x4f\x51\x33\x96\xab\xe1\x89\x80\x97\xc2\xdc\x98\x9d\x5d\xba\x23\x9c\xe5\x49\x8c\xca\x40\x2b\xdf\x17\x85\x94\xa8\x0b\x84\xf0\xbe\x53\x98\x14\xbe\x94\x10\x5e\x53\x85\xc5\x3b\x84\x09\xe1\xe5\x52\x2c\xdd\x36\x8a\x10\xde\x7e\xc5\xc3\x9b\xa6\x13\xc2\x9b\xa6\x18\xe4\xcf\x4d\x08\xaf\xae\x42\xac\xef\x7d\x42\x78\x34\x14\xae\xaf\xdf\x4d\x08\xcf\xb8\x9b\x43\xe6\x21\x7a\x72\x49\x71\x09\x9e\x08\x4f\x6d\x5a\x89\xd5\xe1\x4a\x7f\x4f\x44\x53\x8f\x0c\xf5\xc3\xfa\x7a\x41\x2f\xe5\x83\xa4\xe9\x06\xe1\xfc\x89\x6f\x0a\xc3\xf1\xdf\xa5\x43\xfb\xc6\x04\xf9\x52\x7e\x84\x9f\x44\x2c\xde\xfb\x5d\xe3\x9f\x80\xe8\x8a\x53\x57\x32\xe6\xc3\x2c\xb3\x34\xbc\xad\x6e\xd4\x9f\x85\x55\x63\xed\xa7\xd9\x35\xd2\x35\x00\xaa\xd9\x59\x97\x0c\x62\xb8\x3a\x15\xc3\xb2\x5a\x6c\xcc\xb8\x7e\xc8\x85\x66\x15\xac\x4a\xe6\x4a\x96\x49\xca\x5a\xb2\xdd\x6e\x78\xa2\xf4\x93\x2c\xfd\x14\xf1\xa1\x67\xa4\x13\xb2\x84\x8f\xa8\x03\x8c\x14\xce\x1c\x7b\x36\x04\x40\x72\x6f\xc6\x82\x9b\xd7\x01\x24\x66\xa5\x9f\x7b\xf9\x16\x40\xec\xca\x3e\xd4\x75\x10\x59\x90\x88\x67\x01\x81\xb6\xd8\x3b\x68\x83\xa3\xf0\x1e\xb3\x40\x53\x24\xea\x32\x0a\xde\x0b\x45\x1d\x84\x11\xf9\xc1\x78\xbf\x57\x60\xf9\x56\x3c\x4f\xb2\xfe\x9f\xde\xb5\x1a\xeb\xeb\x55\x8e\xde\xc8\xeb\x3a\xba\x8b\xea\x00\x15\x8c\x0b\x42\x7e\x44\xfa\x99\x10\x5c\x17\x12\x06\x22\x11\xaf\x8e\xba\x1e\x8d\xf9\x10\x02\x74\x9c\xfd\x2b\x68\xd7\x7d\xcf\x62\xca\x0b\x71\xb9\x99\xb6\x9f\x63\xed\x37\x51\xbd\x90\xa9\x67\xf3\x71\x1e\x69\x8b\x14\x22\xaa\x20\x33\xf3\xd0\x3d\xfe\x0f\x00\x92\xc6\xc5\x36\x1a\x9f\x00\x44\xe7\x15\xbb\x58\xee\x01\x10\x7c\x57\x3c\xce\xb9\x0f\x60\x84\xf6\xa1\xc7\x81\x71\x00\xbc\xad\x87\xf2\xe2\xd6\x03\x70\x67\x1d\xbc\x79\xa0\x0c\x60\xf8\x60\xd1\xd3\x5a\x67\x80\x61\x0b\x8b\x46\xb7\xbb\x01\x0c\x79\x52\x28\x82\x67\xfa\xa6\x03\xa1\x3f\x90\xa1\x96\xc3\xe0\xd9\xe9\x09\xd4\xa6\x50\xfc\x66\x49\x22\xa3\x1c\x1e\xcb\xe0\xff\x51\x0c\xbe\x17\xd9\xc8\xb1\x67\xcb\xd7\xe2\xfe\x57\xcd\xe7\x87\x78\xc3\x51\x23\xca\xfb\x3a\x60\xb9\x03\xf9\x81\xd9\x2a\x3b\x11\xdf\x4a\x51\xa4\xa8\x5a\x4c\x2b\xe5\x45\x84\x4d\x48\x2a\xc4\x7d\xe0\xdc\x3e\x44\xe3\xd7\x27\xa7\x23\xca\xb2\x4a\x34\x1b\xe3\xe5\xe4\x40\x79\x02\xd6\x53\x0a\xf1\xeb\xa6\xd7\x0f\xa3\x7a\x85\x5a\x79\x29\x7e\x9d\x2f\xe2\x18\xe2\x22\x43\xd5\xaa\xcc\x65\x91\xb7\x50\x35\xc1\xc4\x9d\xee\x44\x0b\x31\x62\xc7\x7c\x7c\x90\x61\x52\xd9\x1f\x85\x33\xb4\x72\x08\x45\xe0\xcb\x07\xaa\x91\x89\x56\xf6\xea\x0a\x76\x78\x2b\x4d\x79\x80\x08\x63\x69\xe9\x27\xc4\xbb\x8b\xcf\x50\xff\x0e\x64\x50\x9b\xc7\xe0\xbb\x59\x0c\x62\x92\xc6\xf4\x39\xd8\x3b\x8c\xda\x04\xd4\x0f\x39\x91\xe4\x8f\xeb\x63\x69\x37\xd5\x05\x39\xa8\x1e\x8e\x38\x55\x4e\x44\x34\xa2\x44\x7b\x2b\xe2\xf0\x5c\x10\xbb\x3e\x09\xcf\x05\x11\xe7\xf6\xe1\x53\x6f\x3b\x9b\x81\x79\xe3\xf7\x35\x07\x71\xe0\xb5\xf2\xf9\x78\x02\x77\x6d\xa5\x7d\x44\xec\xb7\x53\xbd\x10\x2b\xcf\x52\x9c\x77\x46\xb6\xb4\x6f\x90\x42\xdb\x71\x8c\x03\x57\x46\x1d\xde\x17\x07\xa8\x0f\x94\x46\xfc\xea\xd4\xfe\xf1\x88\xcf\x9e\xca\xa5\x8c\xb5\x53\x4d\xeb\x10\xf7\x3d\xe5\x18\xfe\x01\x57\xac\xfd\x99\xc8\xbc\xa8\xed\xa7\x9d\x59\x6a\xb9\x9a\xb1\x73\x42\x4d\x4c\x37\x9e\xf0\x4f\xec\x19\xc4\x27\xaa\x36\xa6\xfe\x95\xad\x23\x7f\xf2\x62\x18\x5b\x70\x8b\xda\x1c\x86\x5b\x9e\x81\x71\x29\xcb\x61\xfc\xaf\xdf\x89\xe7\x86\x9c\x93\xb1\x38\xce\xa9\xbd\x89\x18\xed\x3d\x7e\x29\x88\x22\x45\xc6\x50\xfd\xa3\xed\x59\x39\xa8\x0f\x12\xb8\xb5\x00\xe7\x8d\x17\x14\x21\xda\xb8\xc2\x80\xf2\x23\x9c\x1c\x4a\x70\x1f\x9e\x83\x1d\xa1\x01\x26\x4f\xae\xc6\xd1\xd5\x6d\xac\xc5\x78\xca\xd6\xd5\x23\xca\x04\x7d\x8d\xe2\x34\x0e\x4d\xf1\x52\x88\x78\x36\x35\x8c\xc5\x95\xfa\xfc\x83\xb9\x88\xb4\x36\x19\xb9\xe3\x49\xac\x49\x94\x02\xc2\xe7\x93\xf7\x61\x66\x35\x36\x1d\xc5\x0e\x15\x8d\x49\x0d\xf8\xce\xdb\x60\x70\x8b\xb1\xaf\x10\x81\x3c\x2b\x40\x6b\x03\xb5\xcc\xb8\x57\x8f\x25\x7f\xf0\x62\x4a\x98\x8e\x03\xbf\x78\x31\xcb\x09\xd6\x2d\xe9\xfa\x96\xe7\xb4\x07\x51\xe2\xb4\x89\xc9\x38\xee\x09\x24\x1d\xd9\x47\xd1\x33\x72\x90\x37\x1c\xd6\xbb\x1f\xf3\x64\xf3\x1d\x3a\xde\x3e\x49\xc5\x88\x2e\x7a\x28\xd2\x3c\x77\x6e\xa3\xbc\x90\x05\xfc\x55\x78\x0e\x9f\x39\xe3\x24\xee\x23\x26\x77\x28\x6e\xaa\xa9\x7b\x16\x79\x36\x92\xfb\x9b\xbe\x50\xff\xe9\x7d\x72\x80\xd6\x1d\x12\xf4\x4d\x65\x87\x21\x9e\xbc\x5a\x1c\xad\x11\xbf\x6d\x79\xb4\x12\x23\x7c\x85\x6c\xc5\x7f\xb1\x35\x84\x2a\xf6\xb4\x94\x1f\x42\x5e\x44\xcb\xb0\x7a\x71\x6a\xaf\x23\x32\x79\xf9\xe3\x33\xfc\xf9\x4b\x81\xdf\x70\xa6\x9e\x67\xee\xb1\x9f\x39\x46\xed\x29\x46\xff\xe0\x04\xd3\x71\xa2\x92\xd1\xc9\x28\xdd\xce\xb1\xf9\x3f\x12\xf0\xd6\x77\x7a\x23\xe5\x7f\x25\x49\x67\xe0\xf9\x39\xd6\x31\x9f\x9e\x07\x7a\x0f\xe0\x0d\x93\x20\xef\xc3\x88\x36\xfa\x1d\x3c\x7a\x96\xe6\x41\x25\x8e\xef\x8a\x5e\x3a\xde\x8b\xab\x4e\x20\x6e\x39\xef\xd3\x29\x3c\x4f\x4d\x4f\x39\x87\x78\xe6\x78\x8b\x46\x9c\xb5\xa3\x27\x51\x5e\x88\xf8\xbc\xab\x1b\xa9\xff\xb4\xbf\x02\xc0\xcd\x73\x62\x88\xe3\xde\xac\xa4\x27\xf8\x8e\x47\x33\x51\x89\xe2\x56\x10\x55\x34\xeb\x78\xb4\x19\x77\x9e\x8e\xf2\x38\x5c\x79\x6f\x96\x1c\xa0\x9f\x0b\x6b\x50\xb9\xe5\xc6\xc1\x56\xe4\xc9\xdc\x20\x0f\x31\x4e\xed\xcd\x6f\xf0\xc9\xae\xf6\x52\xdc\xff\x32\xe3\x6f\x13\x83\xf3\x9e\x7b\x4a\x6d\xbd\x21\x13\x17\xdc\x3f\xb2\xdb\xd2\x91\x85\xb1\xf7\x64\x36\x3e\x5f\x6c\x38\xed\x03\xf7\x0f\x1e\x10\xfa\xb9\x69\x39\x1d\xef\xf5\x3d\xc7\x68\x3f\x20\xdd\x13\xe8\xaf\x4b\xfc\x29\xdc\x47\x1d\x0d\xce\xae\xa4\xf3\xa1\x11\xf3\x66\x4a\xc5\x45\xcc\x72\x23\x86\x17\xa2\x96\xdc\x8e\xbf\x27\xaa\xda\x51\x42\xfd\xbf\x3d\x48\xed\xbd\x66\x51\xec\x68\xd7\xed\x4f\x15\x0e\xbb\xdb\xa6\xd7\x50\x4b\x19\xeb\x3d\x73\x37\xda\x52\x1b\x43\x6f\xba\x64\xe5\x21\xaf\xac\x5b\x91\x2a\xd5\xdc\x93\x68\xae\xa3\x9f\x29\xee\x7f\xb7\xe9\x2d\x32\xd9\x6e\x33\x3c\x87\x8e\x72\x82\x9f\xdb\x99\x4e\x14\x57\x18\x1d\x90\x0b\xcc\xbc\x69\x40\x1e\x44\xea\x57\xaa\x87\x14\xd7\x4b\x79\x50\xd1\xea\x47\x70\x75\x0e\x1d\x4a\x75\x71\xb6\x0a\x1e\xc3\xf5\xc0\xff\x4c\x2d\xf2\xea\xbc\xea\x4e\xa1\x5a\xd1\x2a\x87\x33\xb4\x4f\x98\xe2\x79\x2c\x48\xcc\x2f\x6a\xfe\xc9\xb1\xb3\x36\x5c\xc6\x71\x36\x6f\x6d\xc3\xf3\x82\x81\x77\x07\xfe\x7d\x95\x4a\xda\x4f\x45\x38\xf7\x2e\x83\xf7\xd3\x3e\x32\x00\x4f\x6a\x05\x31\xf2\x4f\xf8\x34\x90\xf7\xf3\xf8\xc1\x54\x3c\xa1\x3e\x69\x76\xc2\x4c\x7c\xba\xdf\x17\x9f\xec\x89\xf9\x4e\xfc\x17\x9f\x16\x52\x45\x9b\xc7\x91\xe5\x58\x0b\x7b\xd2\xdf\x84\x23\xf9\x98\xa7\x13\xbf\xff\xe8\xdd\x33\xe4\x4f\x3c\xec\xa5\x1d\x78\x7a\x18\xde\xe0\xed\x35\xd4\xde\x64\xd6\x87\x3f\xe3\xf2\x37\x0f\x2a\x72\xe4\x31\xe4\x33\x6c\x57\x3c\x81\xf3\x25\x50\xa5\x0e\xf9\x8f\x3e\xd3\xce\xe0\x7d\x8c\xb5\x2e\x0d\xc8\x17\x72\x3b\xdb\x8c\xe3\xbd\xc4\xae\x05\xf7\xd9\x79\xf9\x57\x71\x5d\x9d\x31\x70\x1d\x9f\xc6\xb4\x91\xaa\x1a\xe9\x9e\xbe\x8d\x71\x52\xae\xa0\xfa\x40\x02\x37\x1e\x1a\x50\xff\x9f\xdd\xa3\x76\xa0\x7f\x04\xfe\xa5\xd7\xaf\x47\xe1\x09\xfe\xcd\x81\x49\xc8\x03\x7a\xa3\xb0\x10\x9f\xe8\x4d\xa0\x17\x9e\x70\x07\xe7\x53\x66\xdf\x1b\xbb\x34\x7c\x23\x1c\x94\x3c\x82\x27\xb4\xd7\xcf\xcf\xa0\xed\xaf\x6f\x47\x3e\xc0\xe0\xd8\xe7\xf8\x77\xfa\x25\x3e\xe3\x93\xbd\x98\x4b\x70\x66\xf6\x31\xfd\x93\x7a\x2e\x33\x71\xf1\xfa\x67\x5c\x62\x2b\xca\x91\x9f\xc1\xea\x21\x85\x4c\xab\xc5\xe7\xdf\xe2\x7d\x1a\xf9\x0f\x7e\xef\x1a\x71\x5c\xbd\x7d\x2f\x22\x5f\x64\x8d\x39\xed\x17\xe5\xd2\xde\x86\xff\xca\xa2\xfc\x1b\x78\x9e\x66\xfb\x64\x4d\x6b\xec\xc2\x7c\x98\x50\x77\x0f\xfb\x93\x69\x77\x3d\xc0\xfc\x52\x78\xf8\x04\xeb\x59\x82\x11\x54\xc5\x05\x80\xb2\xdb\x00\xbe\xac\xe3\xc2\xfd\xee\xeb\x68\x25\x8c\xc7\x17\x33\x13\xf4\xf3\xbb\xad\x1d\xe5\xb5\x98\xac\xc1\x15\xe9\x6b\x4d\x10\xf6\x97\xfa\x56\x97\x8c\xf3\xe4\xab\x5e\x21\xae\x8f\x5f\xaf\xd6\x62\x84\xbf\x39\xb7\xf1\xe0\xe7\xfe\x5e\xec\x78\xf9\x2d\xe7\x13\xae\xb7\x1f\x77\x53\x7f\x07\x97\x51\xcb\xea\xc4\xfc\xd2\x15\xc2\xb8\xec\xba\x72\x1c\x4f\x25\xe1\xfa\xa7\x91\x35\x12\xe4\x72\x16\xf3\x36\xb0\xf7\x02\xae\x17\x3e\x3d\x97\xf1\x9c\xec\xa1\xd8\x52\x42\xe7\xc3\x0d\x3c\x0f\x38\x07\xdc\x42\xb6\xde\xc2\x15\xb4\x4f\x96\x75\x14\xc3\x07\x3a\x76\x1f\xf3\xc8\xb8\xa7\x0f\xdf\x33\x74\x8c\x9f\xe3\x7a\xab\x68\xdf\x8f\x6a\x37\xc2\x5e\x83\x09\xd4\xff\x4f\xc6\xd4\xfe\xe2\x81\x14\xc9\x32\x7d\x7f\x7e\xf1\x40\x18\xbd\x13\x57\x86\xe7\xc1\xf6\xc7\xd9\xcd\xe8\xa6\xe4\x68\x50\x5b\xb9\x8b\xda\xf3\xbc\xd4\xde\xc4\x9d\x89\x84\x3e\x76\xa6\x9f\x3f\xa2\xb2\xd7\xcf\x10\xea\x37\x1b\x97\xd7\xcc\xb9\x92\xea\xc4\x90\x7f\xf2\x1f\x98\x1a\x3f\x8b\x7f\x1b\xf6\xfc\x69\xff\xe6\x3d\xfc\xcd\x03\xb1\x2e\x04\xf8\x96\x4a\xef\x31\x7f\x3a\x0d\xb0\x64\x80\xea\xd8\xaf\xf6\xa4\xf8\xe6\x7a\x03\x80\x17\x63\x01\xb6\xf4\x51\xbd\xfa\x88\x1a\x80\x87\xb5\x00\x09\x0a\x00\x0f\xf8\x01\x32\x4b\x28\xee\x77\xc8\x1b\xa0\xfb\x21\x40\xb5\x2f\xd5\xfb\x38\xcf\xdc\xef\xbe\x71\x10\xe0\x3e\x17\x40\xdf\x4a\x80\xfb\xb6\x00\x1f\x7c\x01\xee\x32\xf8\x35\x8b\x7b\xb3\xfc\x87\xf3\x4c\x9d\x9e\xbd\xf7\x7d\x8a\xc1\x39\x58\xfe\x47\x35\x83\xeb\xb1\xf8\xe7\x3f\xfd\x62\xf9\x1f\x2c\x9e\xcf\xe2\xe0\x3a\x7f\xe1\xfc\x7f\xc4\x23\x94\xe1\x81\x1c\x02\x98\x31\x09\xe0\xfb\x77\xaa\x67\xff\xb1\x17\x60\x71\x23\xc0\x40\x14\xe7\x9d\x13\xe0\xf9\x63\x80\x75\xb6\x14\xe7\xdd\xec\x00\xf0\xe8\x06\x40\x78\x3e\xc0\x83\x3b\x00\x71\x29\x00\xf7\x57\x01\x64\x5e\xa3\x78\x5f\x61\x0c\xc5\xb9\x39\x71\xb8\xf7\x05\xe0\x7c\x35\xc0\xdd\x2a\x80\xeb\xa9\xd4\xf6\xdd\x00\x78\x10\x4c\x31\x84\x5b\x63\xe9\xbf\xdd\xc2\xe0\x7b\x2c\xff\xe1\x17\xff\xe3\x2f\xfe\xcb\x7f\xe0\xdf\x91\xbf\xe3\xc0\xfa\x65\xc0\x68\x8b\xfc\xe2\x7d\x54\xfc\x69\x75\x6c\xff\x8c\x0b\xfb\x7b\xa6\x39\x54\xdf\x60\x6a\x25\xc0\xe7\xc3\x00\x36\x95\x00\xef\xc6\x71\xf6\x52\x80\x81\x5e\x00\xce\x39\xe0\xa9\x27\x80\x47\x18\xc0\xa3\xef\x00\x01\x62\x00\x0f\xae\x03\x84\x6e\x03\xb8\x77\x06\x20\xd6\x16\xe0\xee\x58\x80\xf4\x61\x00\xb7\xeb\x01\x8a\xcc\x01\x6e\x8b\xd2\x7b\xff\x5d\xe7\x00\x1a\x85\x00\xba\x6a\x00\x6e\x38\x02\xdc\x11\x06\x78\x9c\x00\x70\xd7\x14\xe0\x6b\xed\x6f\xdc\x9b\xcd\x83\x46\xa6\x5f\xcc\x2f\xfe\xcb\xbf\xf9\xcf\xde\x03\x3f\xf7\x3b\x0e\xac\xff\xbf\xf8\x1f\x0c\xef\x83\xe5\x39\xfc\x6d\x59\x9d\x08\x96\x37\x63\x6c\x40\xef\xf5\x4e\x6a\x03\xf8\x94\x02\x30\xb3\x84\xf6\xb1\xb0\xf3\xa6\x38\x9f\xb3\x2a\xc5\x79\xd6\x0c\x00\xf4\x36\x00\x6c\x8c\x04\xe8\xd6\x01\xd8\xfe\x18\xe0\xce\x33\x80\x58\x1e\x80\x5b\x06\xf4\xce\x75\xc7\x21\x80\xfd\x03\x00\x1d\xca\x00\x15\x05\x14\x07\xe5\x9c\x48\x3a\x62\x00\x3a\x84\x00\x3a\x8e\x02\x3c\xca\xe0\x9c\x0a\x68\xce\xb5\x31\xfc\x20\xb6\x0f\x10\xdb\xff\xe3\x17\xff\xe9\xf2\x5f\xfe\xc7\x32\xfe\x33\xbc\x87\xa2\xde\xdf\x71\x60\xfd\xff\x9b\xff\xc1\xf2\x20\x14\x8e\x32\x9f\x19\xde\x07\xcb\x7b\xf8\x15\x8f\x05\x00\x5f\xb6\x00\x98\xd4\x00\xbc\xad\x05\xb0\x8c\x01\xe8\xd7\x05\x98\x73\x95\xea\x5b\x38\xb9\x51\x5d\x87\x15\xbd\x00\xdd\x4b\x01\x7c\x7e\x70\x76\x2d\xda\x17\xa5\x73\x31\x40\xb4\x0e\xc5\x3d\x39\x71\xb8\x31\x0d\x80\x73\x92\x69\x6f\xa2\xcf\xde\x7e\x1f\xa0\x21\x14\xa0\xdd\x1b\xe0\x7a\x36\xb5\x7d\x5e\x00\xed\x0e\xb4\x8f\x14\x9b\x07\xe7\x18\xec\xbd\x8e\xc9\xdd\xea\x59\x7f\xfa\x5f\xc2\xe4\xc3\xdf\xfc\x87\xfd\x53\x7f\xc7\x81\xf5\x9f\xf5\x9b\xe5\x35\xb0\x3c\x88\xbf\x2d\xfb\x7d\xa5\x0a\x80\xef\x36\x00\x1a\xe7\x28\xde\x3f\x76\x3a\xc0\x9b\xb9\x00\x93\x7c\x00\x9e\x99\x01\xcc\x88\x05\xe8\x1b\x07\x30\x3f\x91\x73\x9a\xa1\xf3\xe3\x4e\x2c\x80\xd7\x7d\x80\x9b\x47\x01\x36\x27\x03\x5c\x7b\x4c\x75\x41\xda\xb9\x00\xf6\x3a\x51\x6e\x5c\xc1\x6e\x80\xab\x7c\x00\x9c\x13\xec\xd5\x20\x80\x46\x57\x8a\x79\x5f\xef\xa7\xb6\xef\x2c\xc5\xc5\xbf\xfa\xff\xe6\xc1\xd4\x6b\xfe\x99\xff\xe5\x0c\x3f\xe4\xc8\x05\xc6\x6f\x66\x6c\x0b\x99\xbe\x4a\xbf\xf8\x0f\x21\xbf\xe3\xa0\xfc\xfd\x4f\x3f\x59\x7d\x0b\xd1\x00\xc6\x32\xdc\x22\x56\xff\x82\xe5\x83\x48\xbf\x07\xf8\xa1\x03\xa0\x5c\x40\x79\x1f\xda\xa1\x00\xaf\x8c\xe8\xfa\xf9\xb8\x0b\x60\x5a\x34\xe5\x73\xcd\x4b\xe2\x9c\x9e\x01\x96\x35\x03\xdc\xfa\x06\xe0\x11\x40\xe7\x75\x20\x27\xaf\x93\x00\x22\xc5\x28\xe7\x85\x73\x2e\xb8\x72\x08\xa0\x60\x2c\xc0\xa5\xc5\x00\x15\x5b\x00\x2e\x19\x02\x34\x58\xd0\x3e\x60\xd7\xf7\xd3\x3e\x38\x4f\xfa\xa9\xc5\x1e\x53\x0c\x7e\xcd\xe2\xff\xec\xf8\x1f\xbe\xf4\xdf\xc7\x9d\xe5\x01\x64\x31\xbd\xbd\xd2\xfd\x7e\xc7\x81\xf5\x9f\xf5\x9b\xd5\xb7\xe0\x66\x34\x68\x58\xdd\x0b\xee\x25\xd4\x0a\xe4\x01\xfc\x7c\x00\x20\xd2\x01\xf0\x69\x02\x80\x74\x04\xc0\x80\x01\x80\xaa\x01\xc0\x93\x3c\x00\xfd\x3d\x00\x9c\x53\xe3\xc4\x53\x80\x6c\x53\xeb\x10\x80\x2e\x11\x80\x45\x12\x00\xd7\xe5\xe8\x3e\x7a\xd5\x1c\x80\xf3\xde\x70\x39\x9b\xea\x49\x5d\x74\xa4\xfd\xd5\x9a\xc3\x01\xf2\xc5\x00\x9a\x86\x01\x94\x3b\x00\x34\x25\x00\x34\x1a\x01\x34\x5c\xa7\xfd\x93\x38\xb9\xf1\x54\x07\xa0\x51\x01\xe0\xfb\x35\x80\x5a\x9b\xbf\xfc\x67\xd6\xbd\x42\x86\xbb\x98\xcf\xe4\x47\x36\x33\xd6\x19\x0c\x6f\x66\x1f\xc3\xff\xd8\x5b\xf2\x3b\x0e\x62\xcc\xfe\xf8\x37\xff\x03\x71\xf0\xbf\xf8\x0e\xff\xe4\x3d\x0c\x77\x06\x78\x6b\x0c\x20\xb4\x17\xe0\xa5\x2d\x80\xec\x24\x80\xbe\x06\x00\x0d\x2f\x80\x6e\x1f\x80\x71\xd5\x00\x9d\xbd\x00\xd3\x1e\xd1\xf9\x6e\x77\x01\xa0\xd5\x03\x60\x79\x1d\xc0\x65\x65\x00\x5f\x4b\x80\x0b\xc2\x00\x3b\x72\x01\xce\x5b\x00\x24\x58\x00\x34\x44\x01\xe4\x39\xd1\xde\x51\x65\x25\x00\x67\x16\x03\x34\xbc\x06\x38\x1d\x42\xd7\xc6\x7a\x43\x80\xa7\x57\x01\x4e\xbd\xa4\xf9\x70\x2c\xe3\xcf\xf1\x3f\xc0\xf0\x00\x7f\xe9\x7e\xbc\xfb\xef\x7e\x27\x31\xfa\x28\x2c\x1f\xe0\x9f\xe3\xfe\x07\xff\xe3\x5f\xfc\xa7\x5c\xe5\xdf\xbc\x87\xfe\x01\x80\x61\x46\x74\x3f\x10\x71\x00\xb8\x7f\x10\x40\x71\x0c\xc0\x6d\x67\xda\x27\xe7\x86\x3a\xc0\xc4\xe5\x00\x57\xa3\x00\x6c\x0e\x02\x5c\x3c\x0e\xb0\xb4\x02\xa0\x49\x94\xf3\xee\x0e\x70\xae\x0e\x60\xbb\x21\xc0\xe9\x8f\x00\x7b\x76\x00\xd4\x15\x03\x64\x77\x03\xd4\x6c\x06\x28\xbd\x03\x70\x72\x26\x00\xe7\x0d\xfe\x78\x2f\xc0\x0d\x5b\x80\xea\x76\x80\x27\x93\x00\xaa\x19\x2d\xa2\xa3\x4c\x2e\x1f\xd0\x63\xc6\x9d\x99\x27\x69\x0c\x7f\x92\xe5\x7d\x24\x30\x5c\xcf\x78\x66\x0d\xdc\xcd\x70\x5e\x77\x6d\xfa\x1d\x87\xff\xc9\x7f\xf8\x2b\x0e\x5f\x86\x51\xfb\x46\x85\x5a\xda\x65\x96\xae\x03\x5c\x3c\x00\xb7\x4f\x02\x48\x04\xd3\xfd\x4e\x2d\x19\xa0\x35\x86\x9e\x33\x9a\x3b\xa8\xae\x54\x43\x2f\xc0\xc2\x1d\x00\x67\x24\x01\xdc\x8d\x00\xea\x74\x01\xb6\x98\x02\x9c\xe8\x02\xd8\xdd\x0f\x50\x6d\x01\x90\x15\x0e\x50\x79\x0d\xa0\xe4\x01\xed\xf3\x75\x76\x26\x40\x99\x1c\xc0\xf5\x3a\x80\x52\x29\x80\x27\x4d\x00\x47\xf3\x00\x7e\x00\xc0\x01\x86\x2f\x99\xc5\xe8\xac\xa5\x30\x3a\x39\x89\xcc\x7c\x61\xf9\x2e\xbb\xaf\x51\xcb\xf2\x3e\xc2\x19\x1e\xea\x8e\xcf\xff\x88\xc3\xff\xc1\xff\xaf\x0c\xff\xe3\x8d\x3a\xb5\xec\xed\x09\xda\x75\x17\xe0\x6e\x01\xb5\x37\x98\xf9\xc5\x59\xd7\xa5\xa7\x03\x34\x17\x00\x68\xb6\x01\x34\x98\x03\x98\x5b\x01\xd4\x73\x83\xd8\x3c\x0b\x80\x13\x17\x87\xc9\xae\xb0\x06\x38\xb6\x9b\x4b\x3e\x60\x3d\x40\xd9\x4d\x6e\xdf\x28\x01\x80\xa3\xa9\x3c\x06\xe9\x3f\x00\x8a\x8b\x78\x2a\x8f\x94\x00\x1c\x1c\xc5\xf3\xac\xbe\x0f\xa0\x70\x0a\x4f\x5a\xbb\x01\xc0\xfe\xe3\x3c\xe6\x8f\x5e\x01\x14\xac\xe2\x3e\xfc\xe5\x2d\x40\xe6\x36\x5e\xec\xbb\x9c\x9c\xc8\x8d\x7d\x90\xe2\x5c\xb9\xf0\x1e\x52\xb4\xe8\x70\xec\x97\x14\x39\x74\x38\xd6\x9f\x42\xfa\x87\x4c\xe4\xd8\xe0\xb2\xa1\xd8\xf9\x72\x3b\xcf\x10\xac\x5f\x6e\x5e\x03\x35\xff\x97\x38\x7c\xdd\xcb\xf8\x1f\xc8\x8c\x7f\x26\xb5\xbd\x1f\xa9\xbd\xc3\xf0\x60\x6e\x58\x53\xdb\x12\x0c\x58\xf7\x3d\xaf\xce\xe5\x29\xb8\x0e\xe0\x54\xc7\x08\x59\x15\x3f\x80\xe3\xee\xc2\x9a\xe3\x2f\x02\x94\x6f\x10\xfb\x3a\x3b\x09\xe0\x48\x84\xe4\x52\xe7\x31\x00\x07\x17\x8e\x54\xf1\x75\x06\xd8\x7f\x44\x7a\x53\x78\x09\x40\xde\x22\x99\xf9\xa9\x73\x00\xb2\x2f\xcb\xb8\x1e\xe2\x9c\xb5\xc7\x4b\xb7\xd6\x9a\x02\xa4\x4f\x93\x1e\xdd\x52\x0f\xb0\xaf\x78\xe4\xcb\xfb\x1d\x00\xa9\x32\x23\x9d\x3e\x8c\x01\x48\xdc\x28\x85\x3a\xbc\xbb\xf5\x25\xb0\xce\x10\xf1\x51\x02\xfd\xdc\xa1\x2c\x7e\x96\x63\x83\x46\x89\x60\x3d\x76\xf3\x29\x11\xd4\xd1\xf1\xf7\x15\xc6\x78\xf8\x15\x0b\x22\x1f\xc6\x37\x8a\xaf\xf4\x7f\xc5\xe1\x07\xe3\xf7\x1b\x26\x0f\x9e\x67\x33\xfe\x6f\xa2\x6f\x87\x5d\x15\xbc\x58\x1d\x6a\xab\x12\xc6\xae\xd2\xcd\x03\xe2\xf8\xd6\x7c\xd6\x99\xf6\xcb\x39\xde\x2f\xfd\x84\x6b\x24\x40\x99\xbb\x42\xb6\x4c\x32\x3c\x38\xf8\x42\xb1\x47\x27\x67\xf8\xba\xfc\x43\xca\x81\x53\x56\x71\xaf\xc9\xfc\xac\x32\x6f\x01\x17\xaf\xc3\x3e\x21\x95\x50\x77\x1d\x7e\x48\x3a\xaf\xb2\x64\xeb\xb5\x11\x61\x71\xed\xca\xdf\xf7\x74\x09\xec\x8f\x79\xa1\xbc\x3c\x2f\x5c\x70\x4e\xb4\x86\xd2\xbb\x63\xdc\x82\x15\xbb\xe6\x2a\xad\x69\xfa\x2c\xb8\x33\x72\x97\x92\xe8\x6d\x19\x81\x57\x11\x8e\x4a\x96\xfd\xad\x02\x62\xa1\x35\x4a\xb5\x84\xf0\x17\x6d\xf3\x54\x4a\x26\x84\x6f\x20\x50\x4d\xf1\x13\x21\xbc\x83\x1b\x3e\x29\x46\x11\xc2\x6b\xb2\x3e\x5d\x41\x87\x10\xee\x4e\xaf\xf9\xf2\x49\x84\x70\x6b\x7a\x9e\x97\x1f\x4a\x08\x57\xa2\xfb\x16\x79\x13\x42\xb8\xa2\x56\xab\xc8\xc9\x11\x32\x7c\xf9\xdf\xfe\xff\x8c\xfd\xd3\xff\x17\x85\x43\xf1\xf6\x64\x8f\x81\x10\xe2\xbc\x37\xf5\x46\xa2\x0e\x6b\xab\x87\x12\xbe\x77\x37\x2d\x55\x41\xbf\xeb\xa2\x35\xb0\xfa\x51\xb9\x4b\x0b\xdf\x96\x8b\xdb\x74\x51\x17\xa3\x40\xd2\xc0\x47\x34\x14\x20\xbd\x56\xbf\x4b\x2d\x90\x7b\x58\x92\x92\xfe\x2e\xe3\xf7\xfc\xaf\x63\x97\xe9\xa7\xdb\xcc\x15\x5c\xbf\xf3\xa2\x7e\x90\xcb\x5b\xe1\x2b\xa1\xb5\x7a\xdd\x7e\x85\xa2\x6d\xdb\x95\xf5\x6c\x76\x06\x8a\xe7\x6d\x39\xac\x3b\x39\xbd\x45\xa2\x3e\x30\x53\x67\xc9\xd1\x62\xc9\xe5\xfe\xae\xda\x69\x67\x2e\x49\x26\xfa\xed\xd5\x16\xbd\xa1\x29\x69\xb0\xc1\x4d\xeb\xf3\xd3\x0c\x89\xc9\xbe\x77\xb5\x23\x7e\x9e\x15\x5b\xbb\xee\xb4\x56\x29\x21\x22\x79\xee\x2a\x63\x2e\x11\x22\xb4\x65\x95\xdc\x18\x1b\x42\x04\x8b\xdd\x1c\x47\xfb\x11\x22\xc0\xb3\x7c\xcc\xe8\x39\x84\x8c\x68\x72\xf1\x18\x35\x9e\x10\xfe\x09\xcb\x8c\x54\x93\x09\xe1\x7d\xef\xf4\x5a\xe5\x22\x21\xbc\xaa\x7f\xf3\x7f\x7e\x8d\xbf\x22\x1f\xd6\x4d\xba\xdb\x24\xb0\x5c\x7a\x6b\x02\xad\x92\x5c\xce\xd6\xc4\x3a\x4a\x83\x80\x11\xde\xcb\xac\x69\x30\xc6\xfa\x4b\xd9\x6a\x53\x8c\x60\x91\x39\xe5\x85\x64\x6f\x98\x8c\xb8\xcd\x5e\xd1\x29\x5f\x79\x0a\x00\x62\x23\xa7\x79\xca\xdb\x0d\x2b\x0d\x0f\x9e\xe2\xab\xaf\xc9\xff\x78\x9b\xd5\xe4\xbb\xd3\xc6\x8b\xfc\x0c\x30\x9d\x3c\xc1\xf1\x90\x78\x9f\xef\x50\xf3\xaf\x9e\x2f\xa4\x16\xae\x33\x9b\xf8\x78\xc7\x14\xe9\xdd\xee\xa2\x66\x8f\x93\x87\xc9\x4e\x59\x59\x6f\x5a\x51\x64\x23\x37\xde\x6d\x8c\xc9\x91\x9a\x36\xb9\x42\x57\x25\x13\xbe\xd6\x99\x72\xbb\x9c\x5f\x4c\xb8\xd9\xbb\x50\xf6\xba\xb3\x9f\xc9\x88\x4f\x09\x32\xfc\x4b\xa3\x27\x4c\x21\x44\xaa\xdc\x49\x6e\x5c\x3c\x21\xe2\x9d\x7f\xf3\x3c\x1c\x64\xf5\x3f\x11\x22\x1c\x61\xd7\xae\x97\x4d\x88\x50\x80\xed\x19\xbd\x0c\x42\x84\xc4\xe6\x1c\xd0\xae\x24\x44\x40\x8a\xf5\xff\x03\x2f\xe0\x73\x3f\x6f\x14\xc4\xea\xdf\xdd\x2a\xda\x1f\xe4\x06\xd1\xc0\xba\x49\x73\xc9\x58\xc4\xb5\xce\x96\x53\x7d\x8c\xaa\xf2\xa9\x58\xbf\x3d\x5a\x6e\x85\x3b\x48\xa1\xd7\x2c\xac\x2a\x66\x16\x51\xf5\xe9\x44\x1b\xca\x93\x88\x6c\xb2\xc7\x3e\xe7\xc1\x6f\xe7\xd7\x49\x2a\x01\x04\x18\xd8\x27\x68\x78\xf2\x86\x78\x4d\x98\x17\x3e\x91\x57\x38\x71\xa5\xcf\xdc\x95\xb6\xd6\x52\xe1\xce\xfb\xe6\xf0\xae\xe8\x93\xf1\x71\x0a\xb3\xee\xdc\xd4\x26\x6f\x32\xbf\x69\xb6\x6d\xec\x48\xc5\x11\x76\x0a\x33\x1f\xe5\x0e\x2a\x2d\x98\xab\x37\xe3\xc6\xb1\xa3\xca\x32\x36\xa6\x56\x83\xcd\x73\x95\xc7\xce\xfe\x66\x65\x76\x37\x45\xc9\x63\x76\xbe\xd5\xf8\x37\xa3\x15\xae\xcf\x16\xb6\xe2\x25\x44\x6e\xd1\x0c\x89\x69\xbb\x08\x91\xde\x66\xd9\x32\x45\x8b\x10\xa9\x31\x96\x2a\x93\x4a\x08\x91\x70\x9b\xf6\xde\x5c\x8a\x10\xf1\x65\x53\x89\x99\x0c\x21\xa2\x83\x53\xe7\x9b\xf4\x13\x22\x2a\x67\x71\x7c\xc2\x02\x42\x84\x6f\x7f\xce\x1f\x82\x3b\xe0\xf3\x2b\x52\x58\xed\xec\x0e\x57\x46\xfd\xfa\xeb\xe1\xfa\x58\x25\x6c\xae\x9f\x88\xd5\x9f\x7a\x45\xca\xfb\xa9\x76\x9b\x8d\xf6\x08\xb1\x45\x54\xa5\x20\xd2\x01\xef\x33\xa7\xfb\x39\x62\x5e\x24\xaa\x2c\xc1\x78\x45\xfa\x39\xe3\xed\xc3\x2d\x6e\xae\xb8\x6e\xfa\xe8\xbb\xf5\xf0\x07\x02\xac\xf9\xea\xe6\xa7\x14\xcf\xe5\xe6\x1c\xea\x5a\x31\xb6\x41\xe0\xc2\x02\x47\xe7\x86\x99\xfb\xc4\x6f\xcd\x9d\xb3\xf4\xe3\xb2\x8d\xd2\xca\xb3\xec\x96\x4a\xfb\x89\xc8\x7c\x9e\x2e\xbb\x44\x6f\x97\xa6\xdc\xec\x29\x39\x8b\x6d\x33\xeb\xe4\x05\x27\x3d\x74\x1a\x57\xd6\x24\x6f\x6c\xae\xb1\x68\x41\x63\x97\xbc\xf2\x44\x2e\xc7\xf2\xce\x1f\x72\xee\x66\x21\x8e\xae\xfd\x86\x32\x77\xcd\x0e\x2f\x3c\x47\xc8\xc8\x6d\x26\x3f\x1c\x3c\x09\x91\x5c\x62\x72\x77\x9e\x00\xc7\xff\x09\xeb\x6c\x2e\x12\x22\x96\x6f\xfc\x7d\xb6\x12\x21\xa2\x75\xe3\xc9\x8c\x5b\x9c\xf9\x33\xfe\xbd\xe5\x57\x42\x84\x3f\x8d\xbb\x36\xf5\x1b\x21\x42\x2f\x9f\xe5\x4a\x61\xf5\xb3\xbb\x5b\x1d\x71\x9b\x6b\x8a\x34\xcf\x9b\x9d\x69\xd5\x98\xe5\xff\x54\x0c\xce\xa3\xf8\x37\x71\xc4\x7a\x7b\x81\x21\xc5\x87\xd3\x56\xbb\x22\x3e\x1e\xef\xb3\x02\xeb\xb4\x91\x8d\xee\xb8\x7e\x6c\x65\x74\x33\xbc\x19\x75\x76\x57\x29\x1f\x54\xa7\x5f\x7c\x69\x83\x83\xb4\x11\x80\x6d\xc3\xfa\x73\x3a\x63\xf9\xe2\xad\xd4\xbd\xee\x4d\x39\x27\x32\xdb\x42\xd5\x4b\x6a\x91\xa4\xd8\x4d\xb3\x51\xeb\xb6\x79\x2f\x96\xd0\x33\x1e\xe5\x59\x1b\x3e\x4a\xd2\xc8\xe8\xb9\xc7\xc5\x34\x23\xc9\x93\x06\x9e\x6b\xb3\x8e\xc6\x49\x36\xe9\x95\xbb\xd7\x9d\x6d\x93\x8c\xd2\x4d\x73\x9f\xd5\xd1\x2b\xf1\x58\x57\x66\xcd\xd9\x17\xc3\xc5\xf7\xe9\xda\xad\xf1\x22\x44\xd4\x4f\x27\xc5\x6d\x07\x21\x22\x3c\x3a\x51\xce\x17\x08\x11\x76\xd4\xbe\xb3\xc4\x8a\x10\xa1\x39\x5a\x77\x17\x7d\x21\x44\x70\x8e\xd6\x13\x47\x61\x42\x04\xb9\x35\x67\x3b\x34\x10\x32\x22\x55\xcb\x71\xde\x42\x42\x46\x1c\xbe\x6f\xab\x8d\xf3\xfe\x86\x8e\x09\xfa\xd7\xfc\x75\x3a\xea\x1e\xd5\x67\xd1\x7e\x50\xbf\xf8\x3f\xd7\xa9\x6a\x70\xbe\xbd\x1b\xe2\x35\xfb\xaa\x56\xe1\x3a\x99\xb0\xd7\x73\x14\xf5\xdf\x1b\xab\xcb\x5b\x5f\xf9\x62\x75\x75\x83\x2e\xc5\x4d\x57\x3e\xdd\x84\x55\xe4\x05\x99\xdb\x50\xbf\x7b\xb6\xc8\xf6\x07\x82\x13\x01\x2c\xee\x05\xdd\x54\x0b\xe1\x7a\x6e\xec\xbd\x6d\xbe\x69\xe9\x88\xd7\x86\xe3\xb7\x29\xdb\xfb\x0a\x5a\xe9\xb4\x6f\x6d\x5c\xeb\x28\x34\x4e\xd3\x78\xcb\xe7\xe0\x1e\xa1\xc6\xd1\x06\x5b\x36\xef\x4d\x11\x7a\x30\x4a\x6c\x73\x64\xf1\x68\xa1\x1a\xd5\xc0\x4d\x29\xf5\x85\x42\x26\x2a\xdb\x02\xdf\x5f\x17\x14\x0c\x55\xfe\x19\xe8\xf2\x54\x59\x60\xb9\xca\xd4\x40\xad\x9f\xfe\xfc\xad\x2a\x81\xbe\xd7\x08\xe1\x37\x51\x7e\xbb\xee\x15\x21\x7c\x8b\x95\x06\xd7\x1e\x27\x84\xd7\x41\x65\xc1\x6a\x57\x42\x78\xbf\x28\xd7\xad\x90\x24\x84\x77\xaa\xf2\x5e\x97\x70\x42\x78\x6e\x28\xaf\x5f\x96\x44\x08\xcf\x9e\x0e\x27\x73\xac\x2b\x5f\x52\xa4\x7d\xa1\xea\xa3\xed\xf7\xe0\xba\xff\x74\x31\xa2\x44\x87\x6f\x2f\x47\x1d\xa0\x82\xb1\xee\x88\xa6\xa6\x3d\xa2\xfc\x9f\x84\x41\x5f\xe4\xcd\x45\x33\xfe\x06\x9b\x6c\xc6\xea\xea\x46\xee\x6d\xb8\xbe\xb8\xaf\x0b\x46\x3c\x78\x89\x6c\x18\x9e\xbc\x6c\x24\x29\xfa\x60\xfc\x6a\xb7\xc9\x10\x49\x00\x83\x8e\xdd\xb3\x65\x0f\x0e\x79\xa6\xd1\x18\xbd\xde\x68\x09\xf7\xa0\xda\xc2\x68\x27\x9b\x28\x9e\x48\xa5\xd2\xa8\x2f\x2b\xbd\x78\xd2\x15\x78\xa3\x76\x6d\xbd\xc1\xb3\x4e\xf6\x67\x94\x70\x22\x37\xf7\x29\x99\x9c\x5d\x09\x45\x73\xb8\x72\xa5\xdf\xed\xfc\x5c\xa7\x33\x7c\x82\xf4\xc0\x4e\xab\xb6\x67\xc3\x24\x65\x7e\xee\xf4\x78\x2c\x03\x20\x5d\x19\xe9\xf1\xad\x03\x60\x64\x4a\x48\x26\x67\xef\x93\xdc\xba\x15\xf1\x7c\xb1\xc5\x81\x2d\x68\x2b\x37\xd6\x73\xac\x88\x8e\x2f\xea\x44\x88\xf2\x78\xe1\xfd\x6e\xa1\x9c\xb5\x88\xff\x5e\xd6\xb7\x46\xde\xca\xe9\x54\x3a\xee\xc7\x88\x33\xee\x8f\x47\x1c\x57\x61\x42\xef\x7f\xe9\x89\xdf\xcf\x48\xda\x80\x79\x9e\x14\x12\x80\x75\xfd\x68\xc5\xad\xe8\x57\x08\x50\x9c\x38\x70\x68\x28\x56\x8b\x3d\x0b\x22\xd1\x6f\xd7\x29\xd1\x08\x4f\x39\x4c\xa2\x7c\x81\x69\x5b\x13\x30\xce\xba\x66\x7b\x11\x4f\x56\x16\x4f\xcd\x15\x11\x02\x90\xf9\x90\x7a\x45\x6b\xee\x10\x97\x91\x3b\xf7\x29\x58\xed\x03\x90\x80\xd4\x46\x17\x5d\x00\x51\xc5\xd4\xd0\x80\x97\x00\xc2\x8a\x29\x97\x63\xef\x00\x08\xac\x48\x51\xcf\xef\x00\xe0\xdf\xbe\xd7\xe2\xf8\x5a\x00\x3e\x85\x64\xe1\x2b\x73\x01\x78\x62\x92\x2c\x1f\xe8\x02\x70\x9b\x24\xa6\x7f\x1c\x0b\x30\x7c\xf7\x9e\x30\x7c\x57\x0c\xde\x85\xbc\xe3\x21\x89\x61\x14\xef\xbf\x13\xc2\x85\xf6\x44\x10\xc5\xf7\x96\x6e\xa6\xb8\xbf\xa5\x3f\xea\xf1\xb1\xfe\x57\x7b\xb8\xd1\xf5\xbf\xca\x03\xfb\x37\x14\xf4\xfa\xe2\xb8\x67\xbe\x0e\xc0\x7c\x4f\x26\x5b\x71\x1f\x8d\x2e\xa0\x7e\x87\x0e\x0d\xc3\xfd\x74\x73\xfb\x4e\xac\x8a\xaf\x37\xa0\xdd\xe6\x57\x26\xc5\x21\xfa\xea\x64\x9b\x88\x7f\x67\x0e\xd0\xfe\x39\x66\x12\xe9\x88\x77\x8c\xd6\xcd\x46\x7e\xa6\xc0\x8f\xfc\x4f\x43\xd5\x00\x78\x1f\x15\xa8\x2b\xde\x03\x18\xfe\xbd\x40\xd3\x6c\x3e\xc0\x90\xf2\x02\xde\x05\xd8\x91\x28\xbf\xd3\x1b\xf1\x99\x7c\xe5\x48\x1c\x99\xbc\xed\x59\xb8\x12\xe5\xda\x52\xdc\x3f\x67\xd8\x05\x44\xa0\xb3\x15\xe9\xcd\xe9\xac\xa6\x37\xf8\x0e\x98\xc1\x9c\x85\x92\x99\x7b\xbc\xf1\xcc\x7d\xff\x18\x06\xcf\x8b\x62\xf0\xde\xf0\x18\x6a\x43\x1c\x39\xf6\xf8\xf3\x95\x78\x2e\x2c\x5d\x41\x79\x5f\x45\xfe\x14\x4d\xcc\x66\xc6\x3b\x99\x50\xbf\x63\x0e\x86\xa1\x5e\x41\xb8\xed\x4e\xdc\x4f\xb6\x26\xc7\x20\xaa\xb0\x21\x2b\x0e\x9f\xc2\x43\x31\x19\xe7\x83\x73\x5b\x2a\xe6\x81\xfd\x26\xca\x13\xb0\x8c\xa7\x7c\x18\xa3\x76\x84\x35\x40\x31\xa7\x10\x79\x37\x5c\xf3\x0f\x33\xb8\xf7\x11\x22\x83\x3b\xec\x51\x71\x63\x6e\xfc\xec\x60\x8f\xb8\xf7\xe1\x7e\x4f\x3c\x91\x1d\x9e\x4b\x3b\x53\x15\xdb\xa5\x21\x32\x76\xe8\x4a\x09\x66\xd6\x21\xde\x06\xe4\x43\x14\xc5\xdc\x4a\xa5\x4f\xfe\x12\x57\xb8\xc2\x49\xd4\x3f\x96\x17\x93\xc1\xe0\x98\xa9\xda\xd4\x26\x31\xb8\xde\x1e\x86\x0f\xb3\x7b\x28\x41\xfd\x07\x7a\x7b\xfa\xa0\xe5\x26\xc4\x67\xb3\x03\x82\x10\xbf\xdc\x67\x42\x75\x80\xe2\x8d\x76\x61\x9e\x47\xba\xc7\x08\x72\x6c\xd0\xf1\x78\xc4\xbd\x03\x3c\x92\x31\x0e\xde\x8d\xfb\xb0\x9f\xde\x8a\xde\x4c\xfc\xb9\x45\x49\x94\x0f\x33\xc7\x28\x1f\xd7\x87\x49\x17\x0b\x51\x8f\x4e\xdf\xec\x30\xbe\x99\xc9\x58\x96\xae\xa0\xfe\x1f\x5b\x48\x6d\x95\x1d\x65\x68\x1f\x23\x54\x07\xe3\x98\xbe\x2d\xde\x94\xaf\xfc\x41\x19\x89\xc7\xe4\xb7\xe3\x3d\xfe\x63\xf3\xf6\x22\x93\xa4\x32\xa4\x18\xff\x42\x85\x5a\x3d\x9e\x74\xcb\xbd\xaf\xe3\x99\xbf\x2c\xf9\x09\xee\x6c\x65\x13\x7e\xe0\x48\x14\xc7\x51\x3f\x0f\x30\xfd\x2f\xf2\x99\xfb\xdd\xd9\x0c\x0f\x22\x9d\x9f\xfc\x83\x37\x54\x5c\xb3\x15\xf7\x7f\x56\x07\x69\x5f\x12\xe5\x7d\xc5\x27\x51\x9e\x5b\xb4\x62\xc2\x72\xba\x0e\x24\xe1\xf7\x37\x55\xa5\xe2\x7a\xe8\x53\x94\x89\xf7\xb7\xdd\x47\x53\x3e\xcc\xb2\xee\x02\x3c\x97\x3a\x7c\xa7\x7d\x83\x58\x5d\x1c\x93\x73\x25\x78\x0e\x19\xe3\x5d\x89\xe7\x0a\x89\xa7\xd5\x94\x07\x02\xb5\x0c\xde\x5b\xaf\x28\x85\x3b\xf5\x29\x5f\x43\x44\xfa\x4e\x79\xd3\x93\x58\x5d\x1d\xe5\x3f\xd4\x35\xd2\x4e\x6d\x75\x3f\xe8\x0a\x53\x37\xbb\x10\x77\xe0\x5a\xf3\x1a\x44\x48\x6b\x02\x5a\x50\xf7\xa0\x46\xf4\x21\xf2\x41\x4e\xea\x7c\x40\x05\x83\x2a\x46\xd7\xa0\x8c\x99\x17\x47\x0e\x52\x7b\xb0\x80\xda\xfd\x49\xff\xcc\x9b\xbc\xf2\x50\x9c\x0f\xe9\xa2\xbb\x30\xba\x89\x1f\xf6\x20\x2f\x2c\xfa\x6c\x92\x2e\x20\x1f\x94\xf6\x03\xdb\xba\x27\x03\xfd\xf2\x0b\xca\xc5\x7d\xd5\xd3\x90\xf2\x03\x96\x5f\x2d\xc4\xb8\x39\x39\x50\x1e\xd0\xdc\x4b\xa5\x98\x17\x53\xed\xcb\x70\x34\xc7\x7b\x50\x7e\x84\x9a\xe1\x49\x44\x2d\x45\xbc\xeb\x19\x7c\x93\xaa\x58\x00\x9c\x4f\xa6\xba\x28\xe7\x85\xf5\x31\xcf\xcf\x5b\x52\x05\xbb\xc6\x24\x57\xdc\xd1\x1b\x9f\x52\x3c\xaf\xa1\x97\xae\xb8\x8d\xff\x1f\x63\x5f\x1e\x57\xe3\xda\xbd\x7f\x35\x4f\x94\x92\x21\x43\x64\x16\x51\x99\x89\xcc\x73\x83\x90\x0c\xa5\x41\x88\x52\xc8\x9c\x06\x19\x4b\xa8\x14\xa2\x28\x43\x42\xa9\x84\x26\xcd\xa1\xa8\xcc\x43\xc7\x94\x99\x64\x38\xe6\x73\x38\xcf\xef\xf3\xac\xf5\x6c\xa9\xf7\xbc\xef\xef\xfb\xc7\xf9\xac\xb3\xb7\xdd\xde\xcf\xba\x87\x75\xdf\xf7\xba\xae\xfb\x5a\x59\xb1\x84\x7f\x17\x46\xb2\x22\x47\x41\x15\xdf\x48\x2f\x30\xbe\x4f\x15\x5d\xf2\x9d\xde\xd3\x3d\xf8\x1c\x69\x5e\x64\xec\x65\x2b\xe3\x0b\xfd\xd2\x8b\xf9\xc1\xf6\x28\xdd\xd3\xd8\x1b\xc3\xfd\x1e\xb6\x78\x07\xf1\xf9\xb6\x9a\x46\x92\xda\xc8\x86\x8e\x51\x87\x40\xb8\x37\xd7\x0b\x92\xf1\x80\x16\x19\xb3\xdf\x73\x2e\x33\x3f\x62\xd6\xbd\x44\xc2\x89\xa7\xa4\x48\xba\x38\x3e\xa7\x89\x1f\x30\x78\x49\x3a\xe9\x45\x19\x5f\x63\xbf\xdb\x1e\xcb\xa5\xf1\xa0\x35\x90\xf5\x42\x80\x52\x49\x0f\xe4\xb2\x6d\x63\x8a\x14\x97\x4d\x7b\x10\xa2\x7a\x39\x79\x54\x21\xdb\x59\x84\x2c\x5f\x12\x96\x50\xa4\xb9\x64\xc9\xcc\x9d\x4b\x02\x47\x9c\x4b\x86\x29\xc4\xab\x2a\xfd\xc9\xca\x04\x25\xfa\xb7\x98\x01\x59\x51\x4d\xbc\xaa\x0b\x7f\xfd\xa0\xf1\x53\x38\x8c\xfd\x95\xb5\x8b\x8c\x2f\x24\xd3\xd1\x61\x5e\x4c\x84\x6d\x38\x11\xca\x43\x96\xec\xa2\xde\xd8\x34\x3a\x9a\x4e\xdc\x7e\x36\x5c\x5d\x62\xb5\xd1\x11\x3a\x77\x2c\xee\x96\x40\x71\x72\x81\x3f\xf3\x80\x9c\x83\x52\x48\x6f\xcd\xee\x63\x1a\x8d\x9b\x49\xcb\x32\x68\x1d\x18\x3d\x38\x9b\x78\x76\x03\xdf\xe6\x52\xfb\x19\xad\x64\x5e\x48\xeb\x1a\x66\x6b\x68\xb4\xba\xdc\x99\xfd\xbf\xba\x8f\xed\xb5\x67\x8d\x69\x66\x5d\xe3\x00\x8b\x1b\xbe\x5c\xd1\xf4\x86\xcb\x74\x62\x28\xde\xf8\xe1\x49\x2b\xf8\xf5\x43\xeb\x5f\x91\x35\xdc\x43\xfe\xdf\x50\x48\xa4\xf9\x71\x3d\x20\x8f\xf8\x52\xd7\x4c\xaf\xd3\x8a\x76\xad\xed\x73\xba\xdf\x5f\xf1\xf1\x0b\xfd\x62\x19\x61\x8f\x40\x49\x57\xf6\xbb\x48\xaa\x9f\x94\x57\xc4\x36\xeb\x08\xe5\xeb\x06\xec\xc9\x21\xff\xa3\x63\x08\xe7\x0f\xf0\x62\x1e\xd0\x1a\x2d\xee\x6f\xef\x9b\x27\xa8\xdf\xdc\xcb\x53\xa8\x1f\x5d\x0b\x79\x9c\xdb\xeb\xa7\x53\xe6\x65\xea\xb9\x2c\x62\x75\x4d\xd4\xe4\x3a\x59\x23\xc2\x78\xbc\xf7\x0b\xbb\x40\xfb\xeb\x6e\x56\x5c\x2f\xaa\x95\x75\x39\x7d\x8f\x7a\x97\x6b\x52\x06\xe7\x8e\x3c\xdb\x3f\xb2\x1a\x91\x72\x42\x65\x06\x9f\x64\xef\xb9\x33\xc3\xf9\x5e\x35\x9f\x58\xee\xeb\xbb\xf3\xeb\x1f\xeb\x34\xf9\xf3\x3c\x53\xff\x88\x49\x20\x05\x8f\x3f\xe2\xb2\x89\x2f\x55\x99\x59\x4e\x27\x9a\xca\x61\x55\xa4\x1c\x7a\x67\xcb\x9f\xf4\xfe\x4d\xbf\xbf\xe9\x49\x64\x75\xa5\x64\xf5\x93\x4a\xa4\x4a\x1c\xc5\xc4\xb3\x0c\x16\xe2\xa8\x1b\xd6\xdb\xc4\x53\xab\xad\xdd\x79\x82\x58\x8c\xcb\xab\x92\x69\x76\x7a\x9d\x4d\x23\xde\xb1\x5b\x45\x06\xad\x6a\xce\xc6\x99\xd4\x8f\x33\xa7\xf2\x38\xb7\xd9\x5e\x40\xe7\xb4\xf1\x9b\xcf\x4b\x3a\x20\x25\xf4\x7d\xbd\x51\x46\x7c\x80\x2e\x4d\xae\x52\x6f\xb5\xec\xc8\xfa\x38\xea\xdb\xef\x06\xb3\xff\x0f\xa5\x9b\x4d\x4f\x9e\x68\xd2\xbf\x3c\x09\xeb\x40\x3b\x90\x27\x1b\x07\xd3\x09\xee\x69\xf8\x64\x7a\xa2\xa7\x5d\x99\xe1\xf9\xb4\x92\x57\xf0\x27\x6e\xac\x58\xf7\xe4\x24\x33\x78\x1e\x57\x9d\xa1\x76\x79\x32\xbb\x94\x7a\xe2\x71\xd2\x3d\x1a\x99\x0f\x8f\x72\xee\xf4\x61\x3c\x6b\x09\xcb\x74\x62\x6e\x4b\x71\xf3\xda\x3f\x6c\xb9\x4e\x90\x8c\x07\xe5\x5f\x78\x92\xe2\xfc\x6a\xb3\x54\x8a\x17\x4b\x13\xb8\x0e\xde\xc2\x84\x4c\xfa\xd5\xb9\x6f\x73\x68\x15\x77\xf8\x59\x40\xab\xfd\x0c\xa7\x8b\xc4\x27\xb3\x1e\xc1\x51\x6a\xac\x43\x19\xeb\x80\xe8\x5f\xa5\xef\x33\xa9\x61\x3e\x50\x67\xf3\x3b\xa4\x86\xd5\x7c\xdd\x3d\x8a\xfe\x2a\xd9\x8f\xa4\x9b\x5e\x2f\xa4\xf5\xe2\xcd\x6d\x75\x7a\xa7\x66\x7e\x3b\x5a\x99\xdf\x24\xb3\xc2\x6b\x4d\x23\x2b\x9a\x1f\x35\xbd\xe7\x90\xbf\x6f\x97\xae\xa6\x13\x7c\xf5\xdf\x1c\xc9\x6b\xe6\x73\x3d\xad\x37\x72\xa9\x14\x17\x6b\x52\x2f\xd0\x8c\xae\xbe\x7c\x9b\xda\xef\x8d\x6f\x35\xf3\x1b\x2a\xbe\xd2\xdf\x3d\xff\x20\x10\xcf\xac\x4a\xaa\x13\x24\xd3\x89\xe1\x76\x59\xf7\x3e\x85\xce\x95\x3e\xc5\xcc\xef\x5c\xfe\x3e\x83\xe2\x82\x97\x07\x8f\x73\xb7\x0f\xf9\x74\xae\x72\xf9\x54\x57\x17\xc8\xb6\x5d\x19\xe5\x1d\x2c\xab\x58\x17\x68\x64\x31\xfb\x3d\x60\xc9\x2d\xba\x98\x64\xec\x71\x97\xf6\x19\x9d\xbe\x3c\xa2\x7c\x4d\xf3\xf7\x4f\x89\x57\xa3\xda\xea\xe5\x39\xf6\xff\xad\xb4\x5e\x7c\xe9\xae\x4c\x15\x71\xbf\x86\xf1\xcd\x9f\x2f\xb7\xfa\x50\x7f\x7e\xd3\x9d\x40\xb9\xd0\xef\x87\x66\x53\xdc\xfb\x3e\x8c\x95\x1e\xbf\x04\xb3\xe2\xd9\xb7\x16\x5c\xe9\xef\xdb\x10\x5e\x99\xbe\x9c\xe3\x0a\x6e\xdf\x3e\xdd\xa2\x1d\xee\x57\xd5\x67\xf4\xf7\x9f\x92\x3f\x53\x66\xec\xa3\x54\x89\xe6\x97\x1e\x4a\x09\xdb\xaa\x63\x42\x3d\xfe\xc3\x2f\xfe\x87\x84\xfb\xff\xd2\xbf\xb0\x97\xde\x1f\x5a\xf7\xf3\x03\x47\xfd\x86\xf7\x5f\x02\xc6\xe4\x01\x1f\x5b\x03\x96\x95\x40\xf5\x29\x60\x9a\x0a\xf0\xc2\x00\x70\x3c\x02\x3c\x7e\x0f\x2c\x1c\x01\x3c\x78\x08\x78\x1f\x64\x1d\x0f\xbf\x32\xa0\xd2\x00\x08\x0a\x03\x6e\xaa\x02\xe1\xfb\x19\xef\x8c\x7e\x06\x5c\xcf\x02\x4e\x24\x03\xe2\xe8\x4a\xb7\x67\xcc\xff\xa2\x01\x70\xd3\x0b\xb8\xab\x00\xaa\x5e\xf4\xdc\x10\xb8\xa5\x00\xfc\xf0\xac\xc5\xbd\x2f\x4a\x77\xaf\x65\xfc\x07\x19\xff\xe3\xac\xe4\x53\xfd\xfb\xef\x89\x7b\x6a\xf3\xf6\x32\xff\x65\x7e\xcb\xf4\x2e\x64\xba\x06\x32\xdb\xd3\x8e\xf3\xd8\x26\x46\xb5\xed\x41\x78\xbf\x3e\xf0\x29\x11\x18\xd1\x1f\x78\xd7\x18\xb0\xf0\x07\x5e\x5e\x06\xa6\x3a\x02\xcf\x4c\x01\x87\x2f\xcc\x73\x99\xfb\x99\x71\xbe\xc5\x6f\x80\xbb\x7f\x03\x6b\x67\x03\xb7\xae\x02\x9b\xaf\x00\x57\x6e\x01\xa1\x81\x8c\x7b\x8a\x2b\xf5\x15\x47\xe0\x58\x34\x70\x25\x1d\xc8\x78\xc6\xb8\xf7\xc5\x1a\xe0\x6a\x29\x70\x27\x1d\xb8\xb2\x12\x78\x31\x03\xb8\xe6\x0b\xfc\xf4\x01\x2e\x49\x77\x92\x65\x3c\x18\x19\xff\x21\x7d\xd9\xff\xf6\x5f\x86\x7f\x0b\xbf\xf1\x1f\x64\xfe\xcb\xf0\xfc\x5f\xfa\x17\x92\xed\xfa\x13\x10\x2e\x03\xdd\x03\x81\x9f\xdb\x01\x93\xdd\xb5\x78\xff\x87\x97\x80\xb9\x0d\xf0\xa6\x1b\x30\x56\x9b\xef\xf5\x4e\x2a\x04\x1e\x3b\x01\x33\xdb\x02\x0f\x55\xb8\xee\xc3\xdd\x1d\x80\x97\x39\x70\x47\x03\xf0\xf1\x00\xc4\x59\x25\xee\x60\x2b\x46\x03\x3b\x8a\xb9\xff\xf7\x0b\x40\xc5\x00\xe0\x84\x1d\x50\xbe\x94\x6b\x19\x54\x84\x89\x3b\x03\xe0\x72\x25\x70\xcb\x0e\xa8\x70\x07\xaa\xf5\x80\x2b\xed\xe9\x6e\x61\xed\x38\x90\xf0\x2b\x19\xee\xf9\x1f\xfe\x0f\xab\xeb\xff\x51\xab\xda\x76\x90\xf1\x1f\x3a\x49\x7a\x0f\x32\x1e\x40\x7b\x83\x7a\x56\xfc\xcd\x83\x40\x97\x55\x3c\x0e\xc4\x85\xe1\x73\x0f\xa0\x57\x26\xf0\x6e\x0c\x30\xa0\x86\x71\xce\x91\x4e\xc0\xd3\xf1\x5c\x07\xe4\xc1\x15\x71\xaf\x09\xfc\xf1\x91\xf9\x0f\xb7\x05\xe6\x49\x5d\xdf\x08\xac\x12\xfd\x97\x07\x02\xd3\x00\x71\xcd\x0b\xdd\x27\xee\x96\x80\x7d\x1e\x40\xa9\x39\x90\x50\x0d\x94\x76\x04\x32\x14\x80\xcb\x69\x40\x69\x7f\xe0\xf2\x20\xa0\x72\x25\x70\xd9\x08\x78\xf3\x00\x28\x0d\x03\xfe\xf1\xa9\xd5\x3f\x90\xcd\x83\xfa\xfc\x97\xe3\xf9\x75\xfd\xff\x9f\xfc\x07\x89\x43\x21\xd3\xbf\x90\xf1\x1c\xea\xd8\xa3\x80\x81\x1b\xd7\x35\xe8\xf4\x16\xf8\x68\x09\xf4\x30\x06\xde\x64\x00\x7d\xce\x00\x2f\xa2\x00\xf3\x07\x40\xd5\x15\x60\x9c\x3e\xcf\x83\x29\x29\xcc\xf3\x11\x0f\x2a\xd7\x06\x03\x6e\x71\x8c\xf3\x7b\xa7\x30\x8f\x63\xdd\x16\xee\xeb\x6d\x55\xc0\x45\x0f\x6e\x07\x71\x15\x16\x57\xb2\xe2\x67\xc0\xd9\x85\xc0\x45\x2f\xa0\xe4\x1a\x20\x06\xf5\xca\x56\xc0\xc5\xa6\x40\xb5\x12\xe3\x65\xc2\x06\x20\x57\x9a\x17\x67\xab\xeb\xf9\x2f\xd5\xb9\x88\x97\x74\x83\x0e\x49\xf7\xe0\x63\x25\x5d\x84\x98\x7f\x6a\xdb\x41\xc6\xff\x68\xfe\x5f\xea\x9f\xc8\xf8\x10\xe2\xeb\x7f\x7e\x02\x7a\x13\x81\x6f\x83\x80\xd6\x17\x81\xf7\xee\x40\x17\x6b\xe0\xd5\x32\xc0\x64\x1c\xf3\x5e\x06\x68\x02\x0f\x9c\x80\x91\x63\x58\xd7\xc3\x4a\x03\xb8\x96\x0f\xcc\x98\x00\x94\x7d\x06\xe6\x7e\x00\x2e\x8d\x05\x96\xee\x06\x4a\xf4\x00\xff\x04\xe0\x42\x2f\x60\x9b\x01\x50\xd4\x15\x88\xb2\x05\x8a\x87\x03\xc7\x95\x81\xc2\x20\x20\xe3\x10\x50\x34\x06\x28\xdd\x06\x14\x8d\x07\xee\x45\xf0\xe9\xa4\xfa\xa8\x78\xaa\x60\x2d\x92\x0c\x9d\x7f\xf7\x5f\x36\xee\x7f\xf1\x1f\x24\x5d\x84\x7d\x52\xad\x0f\x19\x0f\x40\xf8\xad\xfe\xcb\x2f\xfe\x87\xc4\xfb\x90\xf1\x20\x34\x55\x00\x61\x0d\xa0\x71\x10\xf8\xa9\x05\x68\x5f\x63\x6e\x92\x2e\xad\xe2\x80\x7e\x24\xf0\xfc\x01\xd0\xf5\x15\xf0\x48\x13\xe8\x65\xc5\x78\x9f\x18\x3f\x6f\x76\x07\xc6\x55\x00\x15\x73\x01\xdb\x93\xc0\xc5\x0b\xe2\x9e\x1c\x38\x1f\x0d\x78\x66\x03\x45\xcf\x00\xdf\x58\xe6\x35\x6c\x4d\x01\xc4\x5d\xd9\xde\x5e\x40\xae\x3d\x70\xd4\x90\x75\x0e\x32\xb4\x99\xf7\x54\xe2\x0b\x9c\xbb\xcf\xdf\x2d\xbe\xff\x2e\xad\x96\x0f\x97\x66\x54\x77\xfc\xcb\xc6\xfd\xaf\x7e\x97\x78\x2f\x7b\xa5\xfe\xdf\xed\x2e\xe1\xe1\xd7\x6a\xdb\x41\xa6\xeb\xa1\x29\xf1\x28\x65\xbc\x0f\xe2\x41\xc8\xf0\x5e\xe9\xf5\xd7\x27\x80\xea\x3d\xe0\xc3\x3e\x40\x33\x0d\x10\xf7\x2a\x4d\xdc\x80\x27\xcf\x81\xb6\x76\xc0\xfd\x7d\x80\x51\x2a\xf3\xbe\xfa\x3b\x01\x57\x9b\x00\x23\x73\x01\x71\xb7\x31\x79\x24\xd7\xbc\x99\x6d\x03\x14\x0c\x01\x16\xde\x01\xf2\x0d\x81\x35\x65\x40\xf6\x13\x60\xf3\x43\xe0\xdc\x1c\x60\xcf\x35\xd6\x4c\x3a\xd6\x53\x3c\x55\x73\x5d\xb1\x4c\x6f\xa0\xc4\x8b\xed\xfd\xa9\x40\xa6\x1e\xf0\x2e\x14\x38\x2b\xf1\x1a\x92\x2c\xeb\xfa\xff\xab\xdf\x7b\x49\x7e\x4b\xbc\xa1\x08\x49\x57\x28\x4c\x1a\x2f\xbf\xf3\x1f\x64\x7a\x27\xa4\xf7\xf1\x7f\xe4\x3d\x88\xbb\x20\xb9\x54\xe0\xc5\x61\xa0\xe1\x4a\xc6\xfd\xf5\x0a\x99\xe7\xd7\x41\x1b\xb8\xd1\x19\x30\x99\x04\x5c\x8e\x02\x86\x2c\x00\xce\x7f\x03\x26\x8a\xa7\x9c\x06\xac\x8f\x22\x9e\x42\xc5\xfd\xf2\xb9\xa9\x1c\x2f\x33\xaa\x58\x57\xeb\xcc\x53\x60\x97\x29\x70\xe6\x05\x70\x54\x19\x10\x77\xf5\x67\x07\x30\x87\xb0\xe4\x21\x70\x6a\x1f\xf0\x47\x22\x90\xb2\x13\x78\x3b\x01\x48\x2a\xf8\x77\xff\x65\xe3\xfd\x97\xdf\x35\x75\xfd\xde\x2a\xc5\xc2\x2d\x8e\xb5\xed\xf0\xbf\xfc\xff\x0f\xde\x83\xa4\x9a\xf8\x4a\xaa\x22\x5a\xa5\x0a\xc8\x6f\xe0\xb1\x2a\xb6\xc7\x8d\xb9\x40\xcb\xd3\x40\x79\x15\x20\x9e\x9b\x2e\x16\x8b\x67\x2e\xa0\xc0\x19\x18\xd3\x88\xfd\x9f\xea\xc7\x63\xdd\xb5\x10\x38\x73\x17\x58\xe6\x05\x9c\x1a\xce\x3c\xa9\x94\xfb\x40\xa4\x01\x70\x72\x3e\xf3\x28\x13\x0b\x98\x03\x22\xee\xa9\xc4\x18\x7a\x7c\x02\x70\xb7\x1a\x38\xf6\x11\xa8\x09\xe4\xda\x63\xe2\x33\x1e\x18\xce\xbe\xec\x39\xc7\x36\x5c\x1a\x1f\x3b\xc6\xb3\x0d\x96\xf6\x51\x9b\x24\xbe\xd8\x06\x29\x9e\x04\x84\xd5\xb6\xc3\xff\xf2\x5f\xa6\x7b\xf1\xd1\x92\x6d\x75\x57\xb6\x4f\x5d\xd9\xde\x97\x70\xf1\x5b\x4f\x00\x05\x6d\xa0\xe2\x09\xa0\x3d\x8f\xfd\x6f\x13\x0f\x14\x5a\xb1\x3e\xca\xb9\x0a\xd6\x53\x4a\xff\x07\x98\x34\x18\x38\x95\xc0\xfc\xa0\x93\x31\xc0\x62\x7d\x20\xd1\x4b\xdc\xe3\x03\xc7\x63\x81\x9d\xb9\xc0\xd1\x44\xae\xa7\x75\xe4\x19\x70\x7a\x1d\x70\xf8\x12\x70\xb1\x3f\x70\x28\x13\xa8\xfc\x0e\x1c\x0c\xe3\x31\x19\xf3\x53\x1a\xf7\x12\x97\x51\xc6\xff\x08\x3e\xc4\x56\xc6\xfb\x58\x27\xed\xa7\xfc\x25\xfe\x8b\x8f\x14\x17\x56\x05\xff\xef\x76\xf8\xe5\xbf\x2d\xdb\x1a\xe9\xb6\xc4\x0b\x4e\x12\xe0\xa1\xf4\x77\x77\x24\xde\xc3\x55\x29\xcb\x54\x62\x0e\x28\xbe\xe7\x38\xae\x9b\x02\x64\x25\x02\x1d\xd7\x72\x9f\x8a\xe3\x22\xe5\x05\x30\xae\x08\x48\xdc\x04\xcc\x2c\xe2\x3d\x82\xc7\xdf\xc0\x91\xe3\x80\xdf\x47\xe0\xe0\x2a\x20\x34\x1c\x38\xf0\x0d\x38\xa8\x0d\xc4\x8c\x07\xd2\x3c\x80\xe8\x21\xc0\x05\x1d\x60\xef\x22\xe0\xce\x1e\x20\x6a\x20\x50\x13\x02\xec\x8a\x07\x84\xf7\xc0\x76\x49\x37\x67\x8b\x54\x33\x31\x50\xaa\x75\xe8\x23\xe9\xc4\xac\x96\xce\x04\x2b\xdf\xb3\x5d\x2e\x69\xe9\x2d\x79\xf0\xbf\xdb\xe1\x6b\xfb\xba\xfe\xbf\x54\xaa\xe7\x7f\xb8\xe4\xbf\x34\x1e\x4a\x64\xd9\xb6\x24\xb6\x99\x65\x80\x5a\x02\x90\x56\x00\xb4\x5c\x00\x24\x39\x2b\xb6\xef\x21\xae\x63\x47\x54\x32\x87\x7b\x02\x07\x4f\xa8\x8f\x9b\x7a\x1f\xd8\xef\xd4\xa0\xeb\xfc\xe7\xc0\xde\xe4\x86\xe3\xd6\x14\x03\xbb\xc7\x68\x76\x15\xd7\xcf\x88\x67\x9a\x6b\x0f\x0c\x05\xc2\x17\x35\x3c\x9b\x12\x09\x84\x8e\x68\x18\x58\xb8\x1b\xd8\x7e\xb2\x41\xd2\xcd\x74\x60\x9b\x4a\x03\xc7\x57\x26\xc0\xd6\xbc\x06\x10\xa2\x80\x0d\x2d\x35\x28\xcf\xe6\x7b\x5b\x9d\x78\x31\x2b\x8f\xaa\x4d\x13\xad\x77\x90\x32\xe1\x37\x8b\x07\x2a\x3d\x13\xed\xa2\x44\x25\xaa\xb3\xe4\xa1\x2d\x4f\xf7\x15\x17\xc8\xc9\xd9\xfd\x5b\x3b\x7c\x73\x94\xe2\x60\xfc\x7f\xf1\x5f\xba\x55\x75\x45\x5b\x8e\xfe\xef\x42\x8c\x12\xe9\x02\xe4\x0a\xea\x94\x4d\x4b\x1f\xd1\x90\xf2\x2b\x49\x49\x9a\x74\x8e\x8f\xf7\x6b\xbc\xbc\xf1\x46\x20\xb6\x7b\xb3\x2d\x5d\xf4\x80\xbd\xa6\x7a\xab\x07\x45\xcb\x0d\x8b\x48\x6a\x31\xcc\x4a\x53\xa1\xc1\x8e\x7b\x2d\xae\x3a\xbd\x57\x5c\xb4\xb5\xb0\xc5\xcb\x65\x5d\x95\x96\x6e\xce\x6a\xf1\x7a\x53\x91\xf2\x94\x0d\x97\x5b\x1c\x8d\x6a\xa1\x5c\x1e\xe8\xd0\xc2\xfc\x44\x3b\xe5\x1b\x01\xdd\xf5\xfe\xca\x99\xa4\x9c\xea\x97\xa4\x97\x76\xe5\xa2\x72\x27\x5f\x67\xbd\x8d\x4f\x9b\x2b\xf5\x5a\x3b\x49\xef\xec\x5f\x9a\x8a\xe6\x2b\x1c\xf5\xbe\x09\x82\xc2\x3b\xaf\x5b\x7a\xe9\x82\xa0\xd0\x66\xe1\x6e\xbd\x4f\x82\xa0\x60\xb9\xc0\xa1\x49\x7b\xd1\xc7\x79\xae\x3a\x3d\x44\x3b\xb7\xb7\xf6\x4a\xd1\x3a\x6d\xd4\x1c\x2a\xda\xd9\xab\x1b\x90\xce\xf3\xaf\x79\x20\xe3\xbf\x48\xeb\xc2\x8b\xe5\x75\xfd\xbf\x1d\xa6\x42\xd9\xae\xb2\x14\xae\x07\x54\xac\xd0\x94\x70\xef\x73\xfa\x7a\x94\x3d\x4b\xb3\xd6\xa7\xfc\xdd\x71\x81\x75\x23\xe2\x34\xda\xd3\x2d\x88\x3d\x45\x9d\x94\xd5\x0f\x00\x61\x93\x3b\xef\x6f\xfd\xb7\xc2\x80\x60\xdd\xce\x77\x4d\x16\x2b\x0b\x1b\xe6\x74\x71\x1a\x95\xa3\xfa\xca\x5f\xb7\xcb\xe1\xe9\xf3\xd5\xcb\xd7\x68\x76\x99\xeb\x7e\xb0\x81\xdb\xf2\x4f\x9d\x33\xfc\xfb\x36\xcc\x5c\xea\xd6\xe9\x7d\xf8\x00\xcd\xa3\x5e\xab\x3b\xf5\x3f\x7c\x44\x6b\xc8\xa2\x46\x1d\x03\xd3\xf5\xb5\xdc\xdc\xdd\x3a\xdc\x2b\x7d\xa0\xd5\x6e\xa1\x56\x87\xfd\xf7\x6b\x34\x37\x2c\x30\xea\x70\xea\xcf\x9f\x0d\xc7\xcc\xeb\xd7\x61\x8f\x20\x68\x84\x38\x2b\xb4\x1f\x2e\x08\xea\xaa\x0e\xaf\x0c\xce\x0a\x82\xea\xa9\x19\xb9\x6d\xe3\x05\x41\x25\x76\xba\xb9\xfe\x0f\x41\x50\x5e\x61\xbb\x5d\x7f\x8b\x20\x28\x7d\x9b\xaa\xdd\xba\xa3\x20\x28\xfe\x3d\x39\xb0\x55\xa6\x20\x28\x46\xc9\xe2\xc0\x2f\xfe\xcb\x1a\xb6\x0f\x3c\x15\x29\x7f\x76\x53\x4e\x93\xee\x2d\x5d\x1a\xda\x9c\xb2\xea\xf9\x0f\x0d\xa8\xbf\x33\x0a\x38\x8b\x96\xa2\xcf\x01\x23\x3e\xdb\x94\x74\xeb\x63\x6a\x7a\x53\x3e\x2b\x32\xa9\x2f\xe5\x33\x82\x47\xf5\x3b\x25\x27\x9e\xa5\x5a\x0d\x52\x68\xb6\x16\xf0\x91\x1f\x60\xd6\x75\x8a\x8a\x95\xf7\x90\x7e\x3f\xcd\x9e\x35\x18\xbd\x28\xb2\x5f\xe2\xa4\xee\x9a\xc7\xdc\xa6\xf5\xfd\x7b\xce\xfb\x46\xc5\x73\x0a\xfb\xaa\xaf\x7c\xaa\x13\xe3\x78\xa9\x4f\xfb\xad\x21\xba\xed\xed\x0f\xf6\x56\xd9\xbf\xb6\x49\x83\x19\x0f\x7b\x29\xa5\x76\x68\xe2\x65\xf7\xc5\x74\x5e\x71\x93\x26\x21\xd3\xce\x9b\x3c\xbb\x33\xbe\x89\xaa\x6d\xbe\x49\xda\x9b\xcc\xc6\xc9\x53\x3f\x99\x76\x17\x04\xed\xb3\x36\x41\x3d\x4f\x0a\x82\x96\x87\x65\xb2\xd1\x23\x41\x68\x78\x58\xc6\xf3\x18\x9f\x68\x78\x51\x10\x34\x26\x8c\x1b\xdf\xe5\x93\x20\xa8\x77\x19\x33\xa9\xf3\x56\x41\x50\xeb\x35\x46\xb1\xe3\x07\x41\x50\x75\x91\xf9\xff\x66\x1d\xdb\xfb\xde\x1a\x84\x57\x5f\x0f\xd0\xa3\x5b\x90\xa5\xdb\x0c\x28\x2b\x92\x53\xd3\x9d\xf2\xf5\xe9\xe3\x4d\x09\x25\x48\xda\x30\x80\x6e\x13\xc7\xf7\x32\xa3\x7c\x65\xb4\x3e\xab\x0c\x87\x0b\x6c\xb7\x54\x8c\x26\xbe\x88\xef\x97\xb1\x94\x4d\x5d\xb6\x73\xfc\x97\x86\x53\x01\x0f\xbf\xf1\xc7\xda\xe9\x2a\x4d\x9c\x53\x33\xf6\x7d\x9f\x8d\x1a\x56\xb3\xf2\xc6\x18\x8d\x3d\xad\xad\x3a\xad\xd9\xe8\x31\xf6\x16\x8d\x13\x6d\x3a\x8e\xfc\xba\xd8\xb7\xc9\x3d\x8b\x63\x23\xee\x6d\xc8\x6c\x56\x34\x5e\x79\xf8\xf6\x3d\xa6\xcd\x85\x31\x5d\x87\x2d\x3a\xd1\x47\x2f\x63\xe4\xd3\xa1\xbe\xb9\xde\x7a\xcf\x46\xcc\x32\x3f\x7e\xed\xa2\x9e\xdd\xf0\x7c\x73\xe7\xe7\x67\x9a\x0f\x1f\x21\x6f\x7e\xe9\xe7\xd4\xa6\x06\x43\xb3\x06\xc7\x0b\x42\xe3\x94\x21\x7b\x07\xae\x17\x04\x6d\x1b\xb3\xbc\xfe\x7d\x04\x41\xeb\xa0\x99\x51\xdf\x13\x82\xa0\x99\x3e\xf0\x40\x9f\x66\x82\xd0\x70\xdf\x80\x4b\xa6\x3d\x05\xa1\x41\x93\x7e\xf9\x26\x3d\x05\x41\x63\x74\xb5\xb1\x1c\x65\xb1\xee\xeb\x6b\x3e\xe6\xfe\x6f\x45\xe3\xbe\xb4\x6d\x17\xbe\x1d\x9b\xcc\xfd\x9a\x16\x3b\x88\x6e\x3f\x25\x9e\xe3\x6c\xf2\x2f\xfe\x4b\xdc\x44\x7a\x3f\xec\x91\x15\xdd\x0f\xdf\xdc\xca\x86\x6e\x5f\xfa\x46\x4e\x21\xbc\x6b\x49\xc2\x34\xca\x22\xb9\x4e\x9b\xfe\x8f\xfc\x7d\x60\xb6\xf6\x4c\xfd\x16\x0a\x72\x87\xa7\xbe\x9d\xbe\xc8\xe8\x99\xea\x1d\x8b\x59\xd3\x12\x86\x2b\x69\xbe\x1c\x9d\x67\xbb\xc8\xf6\xa4\xce\xbc\xe1\x8a\x53\x93\xdc\x9b\xeb\x2a\x0d\xce\x9e\x72\xca\xbf\xbc\x89\xdc\xc0\x31\x53\xd4\x76\x7e\x6e\x92\xd8\xef\x90\xcd\x8f\xa3\x2b\x9b\xbc\xea\x73\xd8\x46\x37\xeb\x55\x93\xa2\xde\x4b\x27\x0d\xaf\x18\xda\x64\x5c\xaf\x62\xeb\xbc\x27\xa6\xba\x83\x7b\x05\x5b\xa7\x7e\x5f\xa6\xd3\xdb\x34\xd8\x52\x5d\x10\x1a\x75\x34\xd9\x3e\xbe\x9f\x20\x68\x96\x99\x28\x8d\x5e\x22\x08\x0d\x4b\x7a\xc6\x8e\x4c\x10\x84\x06\xd9\x3d\x07\x0f\x2b\x14\x84\x06\x6a\x3d\xbc\xcd\xbb\x0a\x82\xc6\xc0\x1e\x3e\x66\xf2\x82\xa0\x9e\xfd\xf0\x68\x63\xca\x8a\xdd\x48\x6e\x4f\xbc\xb7\x12\xcf\x9e\xc3\x51\x87\xff\xc3\x7a\x30\x89\x8d\x98\x0f\x72\xb0\xaf\x25\xdd\xb3\x8a\xfa\x60\x43\xe3\x26\xdc\x68\x1a\xf1\x1a\x36\x8f\x9b\x49\xe8\xa2\xef\xbc\xd9\xc4\x34\xf2\x86\x33\xfd\xdd\xbc\x3b\x73\x28\xdf\x6f\x77\x7b\x3e\xdd\xfb\xb3\x5a\xe3\xb6\xb8\xd1\x79\x60\xb4\xdf\xfc\x21\x1d\xef\x2b\x7d\x19\xbc\x70\x6e\xea\xc0\x42\x8d\xec\x7e\x79\x73\x67\x4e\x72\x68\xb8\xc3\xf4\xab\xeb\x87\x79\x5d\x35\x83\x7a\xba\xb9\x1a\xf8\x44\x6a\xb9\x76\xb7\x9a\x33\x38\xd4\x56\xab\xb0\xeb\x73\x97\x05\x87\x4d\xb5\xca\x3b\x3f\x73\xde\x94\xfe\x87\xd6\xbc\x4e\xc5\x4e\x8f\x2e\x0f\xd5\x7c\xd3\xa9\x93\xd3\xc0\x47\xd3\x34\xd5\x3b\x3e\x73\x2c\xfd\xd2\xa6\x81\x77\xc7\x03\x0e\x62\x7c\xf8\xd2\xe1\xf4\xf4\x48\x41\x50\xbb\xd9\xa1\x6a\xea\x51\x41\x50\x5b\xd5\x61\x82\x4d\x94\x20\xa8\x5e\x6e\x7f\xda\xba\x8f\x20\xa8\xf6\x6f\x7f\xd5\x62\xb7\x20\xa8\xa2\xfd\xaa\xf1\x25\x82\xa0\xb2\xf9\x46\x72\x47\x8a\xf3\xa5\x93\x7a\xd1\x7d\xe6\x9c\x9f\x83\x89\x31\x79\xda\x89\xfd\x4e\xf4\xb0\xa2\xfb\xde\x71\x9b\xa7\x66\x92\xff\x0d\xed\x28\x5e\x86\x4e\x71\xa0\xb8\x18\x64\xe1\x4c\xf3\xc0\xf7\x04\xeb\x26\x78\xfb\xba\x11\x0e\xe4\x56\xc1\xd9\x76\xfb\xd1\x9e\x74\x7b\xdd\x72\xdb\x52\x5a\x51\x87\x68\x2d\xdf\xa4\x64\x0e\xf4\xfd\xb9\x7c\x52\x6b\x4d\xf9\xec\x1e\x5d\x96\x75\xea\x15\xa2\x92\xdd\x35\x79\x99\xdc\x84\x95\xaa\xe7\x3a\x36\x5e\xd6\xd4\xe9\x9d\xea\x77\x83\xaf\xde\x16\x2b\xe5\xd5\xba\xb6\x99\xbf\xf4\x6b\xc8\x9f\x6a\x0d\x5b\x3b\x2c\xd5\x8f\x7d\xa3\xba\xa2\x95\xe6\x92\xe5\xa7\xef\xa9\x3c\x6c\xd9\x7b\x71\x6a\x89\xb3\x4a\xeb\x16\xa9\x8b\x1b\xdc\x2f\x53\xee\xd4\xc2\xc9\x6b\xe7\xc7\xd6\x8a\x97\x5a\xac\xf4\x58\x24\x08\x0a\xaf\x5b\x38\xcd\x77\x12\x04\x85\xad\x2d\xd2\x5d\x96\x08\x82\x42\x86\xde\x3b\xc7\x0d\x82\x20\xef\xd7\xe2\xba\x7d\x1a\xbd\xbf\x6e\x86\x83\x20\x28\x34\x68\xe1\x3e\xed\x1f\x41\x90\xbf\x53\x1a\x3b\x88\xf2\xaa\xb9\x29\x23\x29\xff\x7c\xda\x8d\x6f\xc9\x1d\x97\x78\x30\x87\xde\xcf\xd4\xe1\xfe\x77\xa4\x9d\x75\xa8\xef\x1c\xba\x8f\x1a\xb4\xde\x8d\xd0\x78\xff\x31\xee\x74\xdf\x73\xb9\xf1\x62\x49\xf7\x9f\x89\xc6\x4e\xfe\x2b\x68\xc7\x39\x05\x8c\x9b\x8f\x48\xe6\xac\xbb\xf1\xcc\x75\xb4\x12\x77\xda\x19\x58\xd4\xb8\x00\x68\xa3\x17\xd8\xac\x5b\x9c\xc2\xe4\x96\x4b\x03\x47\x8c\xea\x24\xff\x4d\xcf\x25\x70\x83\xfd\x31\x39\xb3\x66\x06\x81\x2e\xde\x71\x80\xee\x8b\x40\x9d\xa0\x22\x40\xe7\xe8\x3a\xc4\x3c\x02\x1a\x6d\x09\x18\x90\xba\x0c\xd0\x1a\xee\x3f\xf1\xbc\x3b\xd0\xf0\x8d\x5f\x93\xca\xa5\x40\x83\x43\xbe\x66\xef\xdc\x01\x8d\xe9\x3e\x8a\xe2\x3a\xa8\xf2\x6d\x39\x71\x22\x55\x0d\x17\x53\x7e\x5e\xad\xef\x22\xe2\xdd\xaa\x0e\x59\x30\x85\x6c\xd7\x79\xcd\x45\xab\x28\xb8\x90\xce\x7f\xee\xe4\x31\x84\x3f\x9c\xf6\xb2\x8a\xe3\xf9\x3f\x8d\xe2\xda\x61\x4d\x46\x17\xf7\x4d\x98\x43\x68\x7b\xb8\xad\x1b\x55\x5b\x0f\xf2\x5f\x44\xf9\x6b\xff\x6b\x8b\x09\xbf\x58\x39\x62\x39\xb5\x93\xe7\xd4\xd5\x5c\x0f\xa8\xca\x87\xd0\xa6\xe9\x23\xfd\x49\xf7\x7c\x22\xd6\x53\x9e\x7b\x90\xcb\x26\xe2\x15\x75\x56\xdf\x4a\xe3\xad\x71\xfc\xf6\x03\x2a\x9d\x00\xad\x8e\x3b\x1a\xb4\xeb\x09\x68\x0c\xde\xa1\x65\xb6\x1f\x50\x79\xb9\xfd\xf8\x54\x37\x40\xb1\xd1\xf6\x30\xf7\x19\x80\x7c\xcf\xed\x2a\x81\xb4\x97\xd9\xd6\x61\x37\xdd\x87\x0f\xe9\x72\x82\x2a\xa6\x6f\x35\xcc\x27\x64\x21\xe8\xcf\x9b\x34\xd2\xb6\x7c\x78\x4d\x4f\xb4\xb9\x82\xef\x75\xaf\x93\xee\xb9\xaf\xad\x60\xbb\xaa\x90\xed\x0a\x49\x0f\x62\xa9\xc4\x87\xf0\xa4\xf6\x3a\x53\x35\xd9\x8a\xe3\xff\x4c\xba\xa7\x79\x64\x91\x0b\xa1\x84\xd1\x15\xcc\xf3\x0a\x17\x16\x51\x7f\x06\xfd\x5c\x4c\x28\xe2\xba\xa0\x15\x54\x65\xdf\x27\xcc\x87\x56\xd8\x25\x6d\x99\x68\x3d\x5f\x77\x1d\xcd\x0f\xfb\xe8\x0d\x84\xd3\xd8\x0c\x0e\xa2\xbc\xff\xa8\x98\x10\x8a\x93\xbd\xca\x42\x09\xb5\x6f\x93\xb0\x93\xe2\x89\x72\x49\xd4\x10\x5e\xa1\xa2\xce\xea\x51\xa4\x8d\x9a\xd6\x9b\x74\x1e\xa2\x26\x59\x11\xf2\xb3\xe7\xd4\x7c\xc2\xaf\x76\x07\xf8\x11\x32\xb2\x3b\x83\x95\x46\x76\x85\x31\xee\x1f\x11\x96\x4d\x38\xc6\xce\x14\xde\xd3\xef\xf4\x7d\x46\x5c\xef\x70\x4b\xc6\x6d\xb6\xcb\xb3\x9f\x5b\x24\x5c\x77\x83\x84\x57\x04\xdc\xae\xdb\x3e\xab\x09\xef\x4c\xaa\x72\xa0\xe7\x8d\x8f\x72\x0d\xe6\xf5\x8f\xe7\x75\x44\xca\x12\x66\x4b\x14\xb2\x1e\xce\xc6\x1a\x1f\x8a\x17\x3e\x65\xfe\xc4\x5b\xf0\x4e\xe1\x7a\x41\x0b\xb6\x73\xfd\x18\xe7\x76\xc1\xd4\x1b\xb6\xe5\x21\xb4\x7f\x9a\x68\xc7\xba\x19\x83\x57\x70\xdd\x20\xa3\x1e\x7b\x68\xbf\xa5\xf7\x2e\x86\x1b\x6e\x5a\x9c\x84\x5f\x1c\xac\x66\xfe\xc3\xc1\xcc\x5e\xc4\xb8\x8b\xab\x9a\x48\xed\x10\x97\xc4\x0a\x54\x71\x49\x6b\xb2\xd9\x86\x52\x24\x8b\x75\x3d\x4c\xed\xb3\x3f\x80\x11\xf4\xfd\x33\xca\xa8\x7d\xa2\xad\x1f\xd1\x19\x78\xdf\xfb\x4f\x34\x03\xa3\xf4\xd8\xcf\x9d\x4f\xd8\x6e\x97\x70\xfe\x10\x89\x07\xf2\x4b\x17\xc5\x9d\xcf\xed\x8c\x9a\xed\xb7\x5c\xcc\xad\x2f\xe9\x00\xed\x98\xb0\x86\xe6\xc9\xa6\x34\x7f\x7a\xdf\x37\x72\x3d\xe9\xe4\xac\x88\x65\xd4\xd9\xd3\x34\x84\xf6\x53\xae\xeb\xb6\x13\xde\x3d\xeb\x5c\x38\xad\xb3\xd6\xe7\x19\xae\x1d\xbd\x7a\x0f\xad\x1f\xfd\xc7\x44\xd3\xbc\xeb\x3c\x27\x96\x9e\x56\x17\x87\xa5\x3a\x28\xc7\xa5\x13\xec\xf1\xb2\xe6\x0f\xf9\xb5\x29\xf3\x5f\x6a\x26\xd0\x8a\x75\xec\x8b\x33\xad\x4c\xc7\x62\x57\x10\xd3\xe4\x98\x5c\x08\xb5\x68\xc2\xc2\x58\xc2\xfb\x8f\xee\x3f\x4d\x4f\x12\x9f\x7d\x91\x46\xdc\x11\x33\xe6\x07\x1d\xf1\x7e\x47\xb8\xf0\x21\xe9\x3e\xf7\x7e\xa9\x1e\xc8\x5e\x69\x3c\xec\x92\xee\xb7\x87\x2b\x49\xed\x43\xaf\x0f\x28\x2c\xa1\xb8\xbf\xab\x78\x15\xb5\xfe\x8e\x56\x6b\x69\x5e\x6f\x89\x63\x7d\x94\x80\x95\x8c\x1e\xad\x9a\x15\x4c\xb7\xa9\x97\x8e\x08\xa5\xd6\x76\xd3\xdf\x49\xef\x3b\xda\xed\xa2\xfb\xc9\xb6\x55\x7b\xa8\xb7\x26\x1a\xc4\xd0\xf8\x1a\x6a\x1a\x4b\x74\x8e\xde\x38\x42\x81\xb3\xbd\x56\x02\x8d\x0f\x6d\x9d\x24\xe9\x9e\x7b\xea\x0b\xb6\xa7\xca\x9a\x13\x22\x76\x6a\xba\x31\x8d\x87\x53\x96\x63\xe9\x09\x4e\xed\x9b\x4d\x0c\xbd\x53\x33\x96\x11\x92\x98\xba\x70\x0b\x31\x4a\x52\x2a\xa2\x49\xfb\x31\x45\x3f\x99\x99\x9d\x15\xe7\x09\x41\x4f\xaa\xba\x49\xed\x72\x32\xb1\x9a\x18\x29\x27\xfb\xf3\x99\x21\x21\x96\xfd\x3d\x2c\xd5\x39\x88\x95\xce\x54\xbf\x78\x31\xd4\x3e\x51\x66\x5c\x6d\x24\x3c\x60\x1d\x45\x9b\x60\xcb\x8d\xf4\xbc\x81\x8e\xc1\xd4\x5f\x3e\x0e\xec\xb7\xf7\xb3\x9d\x14\x37\xdc\xcf\xed\x22\x3e\x8b\xeb\x78\x46\xd5\x66\x79\xc4\x10\x2f\x66\x0a\x78\x9c\x8f\xf5\x38\x42\xe8\xbb\x59\x13\xe6\x85\xf4\x74\x65\x3e\x8c\xbe\x3f\x3f\xb5\x46\xc0\xe9\x9f\xec\x7f\xa6\x74\x63\x21\xbb\xb8\x29\xb5\x4c\xb6\x15\x57\x76\xcb\x8a\x19\x45\xf1\x30\xbb\x11\xf3\x1f\xb2\xbe\x2e\x5e\xc1\xef\xf3\x0c\xcc\xac\x61\xe6\x55\x66\x4d\x12\x31\x1c\x33\x82\xf3\x69\xc7\x92\x51\x70\x83\x96\xb8\x0c\xbd\x97\xd4\xa3\x67\x07\x7c\xe3\x76\x34\x14\xfe\x0f\xbc\x98\x9d\x29\x5c\x85\x27\xc4\x7b\x0b\xa1\x82\x1b\x94\x59\x0f\xc8\x37\x32\x9c\xa3\x6b\xf0\x6e\x9a\x0f\x5e\x7d\xf6\xd2\xf9\x72\xde\xa3\xfd\xc4\x52\x73\x88\x8c\x25\x9e\xbd\xdd\x04\xee\x6f\xcb\xa2\x63\xd4\x1e\x23\xce\x26\x12\x2f\xb0\xdf\xe1\x14\x62\xb9\x18\x6e\x3e\x45\xdf\xd3\x72\x78\x3a\xb5\xa3\x9a\x7e\x8e\xc4\x7f\x28\x90\x32\x19\x45\x23\x9a\xd0\x8c\x29\x6c\x6c\x44\x0a\x22\x05\xf7\x47\xd0\x4e\xa4\xe0\xfd\x74\x7a\xb2\xc2\xfe\x8b\x68\x5d\x28\xa8\x62\xc5\xaa\xc2\x30\xc6\xfd\x0b\x4d\x8f\xd1\x91\xae\x20\x29\x9b\xf8\x1e\xf9\x91\xe5\xf4\x4b\xf9\x6e\x8f\x89\x99\x91\xf3\x85\xcf\x8c\xe7\xf4\x79\xfd\x48\x97\xf8\x52\x69\xe9\x42\x1d\x5e\xcc\x71\x41\xb4\xdb\xc3\xb6\xd1\xb7\x6f\x8c\x08\xa5\x5e\xf0\x4b\xe0\x5f\x59\x15\xbc\x97\xf6\x05\x8b\x7f\x32\x0f\x68\xe1\xd6\x38\x62\x29\xcd\x79\x1e\x4f\x27\xd1\x59\xdd\x8f\xb5\xe1\x71\x90\xc8\xf7\xfd\xaf\xa6\x90\x0e\xc6\x50\xb0\x7e\x42\xef\xb0\x33\x64\xbb\x78\x70\x35\x86\xe6\x13\x72\x08\x8d\x55\x0e\x2a\x1a\xc1\xfe\x97\x48\x3c\xb1\xd2\x9e\xba\xb4\xf3\x2a\x79\xd6\x6d\x2c\xbd\xb6\x1e\x4e\x95\x59\x4a\x87\xd9\xd2\x4e\xb4\xd4\x67\x01\x8d\x83\x4b\xf1\x1c\x60\x2f\x99\x70\x45\xa3\xd2\xce\x47\x68\x5c\x94\xfa\x67\x9c\x62\xcb\xca\x23\x25\xfa\xac\x34\x71\x7e\xe9\x2b\xfa\x85\xf3\x6b\x39\xb7\x5a\x20\xd5\x3f\xc9\x95\xf4\x50\x32\x9e\x09\xbf\xf1\x62\x82\x6a\x22\x69\x1d\x5c\x77\x60\x0f\xcd\xce\xff\xc6\x03\x9a\x77\x84\xf9\x01\x8e\xe0\xf9\x6d\xd7\x92\xc7\xf9\x24\x49\x9d\x64\xcc\xb3\xb3\x34\xaa\xcd\x3c\x78\xbc\x9b\x3c\xca\xa5\xf3\x45\xc7\x2f\x5c\x4f\xa5\xe9\xa7\xf3\xc4\xde\x52\x5a\x58\x2a\xdd\x68\xb9\xe2\xc1\xf6\x9a\xbf\x0e\xe9\x3a\x5c\xd5\xea\x42\xef\x5c\xb9\x6b\x4e\xfd\x7f\x2d\x72\x32\x7d\xc3\x35\x4f\xae\x9b\x74\x6d\x13\x33\x75\xaf\x59\x6f\xa7\x93\xcd\xb5\xce\x07\xab\xd9\x9e\xa6\x11\x7a\xd5\xf3\x3c\xb5\x4f\x79\xd5\x4d\x1a\xa1\x57\x66\x54\x53\x84\x2a\x37\xfe\xca\xba\x1f\xb2\xfa\x49\x57\xd9\x16\xdc\x17\x7e\xe3\x0b\x6d\x74\xda\x37\xec\x77\xff\x57\x9a\xb3\x0a\x8d\xd7\x75\x9e\xdf\x6e\x1f\xd8\x6f\x97\x4f\xc9\x94\x81\x9b\xe5\xc1\xe3\x7c\x9a\x76\x3a\xed\x87\x26\x7c\x60\xbf\x47\x8e\x3c\x47\xfb\xab\x01\x23\xf3\x09\x65\x37\xde\xc7\x3c\x81\xf6\xd5\xa5\x34\x0f\x9a\xe6\x95\x13\x3b\x45\x49\x47\x96\xc1\xbb\x25\xad\x9b\x77\x2a\xb5\xc9\xbf\xca\xdc\xce\x14\xe7\x2b\xcd\xcc\x68\x3c\x54\x66\x5a\x53\xbb\x54\x3a\xbb\xd0\x8e\xa3\xf2\xf2\x4a\x62\xec\xde\x9d\xbb\x35\x9e\x3f\xc7\xba\x5a\x95\x12\x63\xe3\xae\x42\xbe\x17\x7f\x2f\xff\xc2\xed\xe2\xe7\x33\xf8\xf5\x27\xca\x2d\xfe\xd2\x43\xd1\x62\x7b\x49\xd2\x11\xba\x48\xfa\x49\x01\xef\x0e\x11\xcf\x65\xcd\x90\xa3\xc4\x0f\xf2\x9e\x77\x7c\x2c\x8f\x03\xd6\x7f\x9a\xef\x91\x46\x4f\xe3\xd4\x3e\x9d\x74\x04\xa7\x0f\x64\xbe\xdf\x14\xe4\xd0\x2a\x37\x21\xb4\x90\x32\x78\xc3\x8d\xd9\xef\x7e\x73\x2e\xd2\xf7\xf4\x68\x77\x89\x7e\xa5\x9d\xf4\x54\x8d\x4d\xb9\x8e\x8e\xfc\x63\xae\x27\x03\x3c\x28\x67\x5b\x75\x4e\x93\xf8\x2f\x55\x7e\x1d\x88\x91\xf8\x38\x69\x00\xc5\xc5\xc7\xc6\x13\x73\xd9\x72\x8a\xec\xf1\xdd\x65\xf2\xfc\x39\x5e\xb9\x1f\x1b\x73\x85\xb3\xc7\xbd\x92\x68\xfc\x54\x39\xe5\x12\xdf\xf6\x51\xda\x15\x8a\xaf\x0f\x8f\x3e\x22\x06\xca\x83\x3d\x6f\xa9\x3d\xee\x5b\xff\x45\x3d\x56\xb9\x94\xfd\xbf\xd9\xe9\xf7\x76\x59\xeb\x79\x8c\xfa\x6f\xf9\xfe\x44\xca\x33\x78\x1d\x3a\x45\x4f\xb5\xa0\xea\x0c\xcd\x13\x57\x9d\x2c\xd2\x29\xb5\xaf\x38\xc7\xbc\xb0\x8b\x85\xe4\xbf\x55\x18\xcf\xf3\x71\x0f\x38\x33\x39\xe4\x0b\xfb\xdd\xb7\x71\x39\xe9\x8b\x18\x15\xb2\xdf\x06\xea\xec\x77\x63\xab\xca\x1f\xdc\x0e\xf7\xa5\x8c\xc7\x33\x49\x17\xe4\x95\x3e\xeb\xc3\xbc\xee\xda\x96\x56\x92\xea\xfb\x7d\x28\x6e\x56\x0b\x5c\x47\xab\x7a\x8c\x3d\xc5\x89\xea\x30\x5e\x37\x5e\x77\x5e\x4f\x3b\x93\x37\x23\x76\x13\x43\xa9\x5a\xf7\x18\x29\xa2\xbe\xd2\xc8\xa4\x5c\xfa\xab\x0a\x7e\x92\x97\x2e\xf7\xd2\xf9\xfb\x6b\x48\xb9\xec\xf9\xcd\xaf\xf4\x3d\x4f\xc2\x7e\xd2\xdf\x3f\xb4\xe1\x76\xa8\xf4\x14\xea\xf1\x1f\x4c\x24\x2c\xf0\x97\xee\x45\x20\xeb\x5c\xf4\x34\x65\x6b\x32\x0f\xf8\xe7\x4f\xa0\xcf\x28\xe0\xaf\xeb\xc0\x40\x5d\xc6\xfb\x87\x44\xd6\xe2\xdc\xcf\xcd\x80\x89\x29\x7c\xaf\x79\x4a\x0a\xf0\xe0\x01\xe0\x60\x02\x54\xb6\xe4\xba\x28\x37\x26\x03\x8b\x76\x00\x57\xa7\x02\xab\x76\x88\xb3\x57\x3c\x09\x00\x97\xed\x80\x90\x12\xa0\x34\x09\xd8\xa3\x0d\x94\xde\x00\xc4\xc8\x74\xe9\x00\x70\x2a\x14\x28\x9d\x02\xe4\xaa\x01\xa5\xdf\x81\x72\x73\xe0\x52\x10\xf0\x40\x93\xf9\x00\x7f\x2e\xad\xd5\xc1\x28\x92\xea\x1a\x9c\x93\xb8\x1c\xe9\x9f\x24\xdc\x4f\xc2\x6a\x53\x9e\xb1\x3d\x61\x55\x17\xff\x16\x7e\xe7\x7f\x24\xd4\xe5\x01\x74\xcb\x60\x6b\xf8\xb4\x96\xf7\xf0\x63\x0d\xd0\xa3\x0a\xf8\xfc\x16\xe8\x33\x17\x78\x2b\x00\xfd\x9b\x31\xbe\x37\xcc\x0d\x78\xf6\x0c\x18\xdf\x9f\xf1\xad\x49\xd7\x81\x3f\x7c\x01\xf1\xc4\x7a\xf3\x36\xe0\x52\x0d\x54\xbc\x06\xdc\xed\x18\xef\x5e\x6e\x0c\x94\xdd\x06\x02\x07\x72\xbe\x3b\x58\x60\xdc\x53\x5c\xb1\x2e\x36\x03\x0e\xf5\x02\x2e\x94\x01\x29\xfb\x18\xc3\xc9\x4b\x06\x4a\xbc\x81\x0a\x45\xa0\xe4\x3e\xf0\xd0\x9c\xf1\xf2\x8f\x89\xc0\x45\x09\xa3\x97\xf1\x60\x32\x25\xfc\x46\xc6\x7f\x48\x5e\xf6\xbf\xf1\x7f\xe1\x77\xfe\xc7\xff\xd0\xbf\xf8\x27\x1a\xe8\xfc\x89\xeb\x7b\x74\xad\x00\xfe\x34\x07\x8c\x2b\x80\x1a\x6d\x1e\x4f\xcf\xe2\x01\xb3\x86\xc0\x13\x79\x60\xa4\x1f\x70\x3f\x06\xb0\xb0\xe7\xfc\xfe\x34\x47\xc6\x37\x66\xdb\x00\xe5\x01\x80\x5b\x05\x50\x9a\x0e\x78\xa7\x31\xde\xef\x9f\xc2\x7e\x8a\xed\x50\xac\xcd\x3a\x10\xc5\x57\x81\x43\x36\x7c\xdf\x3d\x65\x0a\x50\x7c\x12\xc8\x8b\x66\x3e\xc0\x95\x06\xc0\xf9\x31\x9c\x43\xbe\xb8\x15\xf8\x73\x1f\x70\x7e\xa3\x34\x0e\x24\x1c\xf3\x4c\xd0\x7f\xc1\xff\xf3\xea\xfa\xff\x6f\xfc\x07\x19\xdf\x43\xa6\x77\xf1\xbb\xfe\xc5\x3f\xe6\x40\x9b\x64\xe0\xdb\x57\xa0\xf3\x33\xe0\x5d\x16\xb7\xc7\x1b\x4d\xc0\x44\x81\xf1\xfe\xfe\x33\xf8\x7e\xf7\xf0\x06\x40\xe5\x37\x60\x42\x1f\xe0\x86\xb9\x18\x53\xf9\x7e\xff\x2c\x0f\xa0\xf4\x01\x30\xcf\x0a\x28\x69\xc6\xf7\xfd\xcf\x1b\x01\x7e\x43\x81\x82\x4a\x60\xcb\x25\xa0\xc0\x5e\x3c\xe3\x01\x05\xf3\x80\x83\xcf\x81\xbc\x1c\xe0\xe4\x09\xc6\x85\xf2\xac\x81\xfc\x4e\x7c\x57\xbc\x30\x96\xe7\x5e\x91\x23\xf0\xb1\x57\x6d\xfd\x83\xf4\xdd\x5c\x27\xe5\xbf\xf2\x1f\x86\xd7\xc3\xc1\x7f\xe3\x3f\xc8\xfc\xff\xc5\xf7\x90\x78\x00\xbf\xeb\x5f\xfc\xec\x08\x34\xff\x56\x5b\xdf\x41\xa6\x73\xf0\x52\x9c\x2f\x93\x78\x1e\x18\x2f\x61\x9c\x73\xe0\x60\xe0\xf6\x73\x60\xf4\x45\xe0\xda\x4d\xc0\xea\x13\x70\x29\x04\x98\x1e\x0c\x5c\xf8\x08\xcc\x71\x02\x8a\xce\x00\x5e\xba\x40\x51\x0b\x60\xad\x11\x90\x77\x12\xd8\x5c\x06\xe4\x8e\x07\x76\xfe\x60\x9d\x1f\x71\xa7\x7e\xae\x02\x48\x6e\xc5\xb8\x7f\xbe\x1b\x90\x67\x04\x5c\x15\xff\xfd\x03\xf0\xd8\x00\xc8\x1d\x01\xfc\xf9\xe6\xb7\x3a\x20\xed\xea\xce\x7f\x99\xff\xf5\xf9\x0f\xd1\x7f\xd6\xc5\x83\xc9\x6f\x29\x96\x34\x1d\x5a\x97\x07\xa0\xbd\x84\xdb\x56\x5b\x8f\xf1\x6e\xf1\x58\x27\xe3\x3d\x88\xed\xd0\xca\x03\x78\xee\x08\x74\x2c\xac\xc5\xfb\xef\x74\x02\x7a\x57\x03\x37\x86\x01\x43\x7b\x01\x15\x07\x18\xe7\xbe\x58\xce\xf8\xae\xd8\x7f\xce\xc6\xcc\x5f\x10\xb7\x0b\x39\x3e\xc0\xaa\x5c\xe0\xdc\xdf\xc0\xa6\x4b\x8c\x03\xee\xcc\x05\xc4\x55\x2a\xce\x58\x3c\x45\x70\x6d\x87\x8c\xa7\xac\x09\x90\x15\xc3\x73\x2c\xeb\x35\xf0\x44\x8f\x71\xe3\x6f\x1a\xc0\x19\xc9\x1f\x99\xfe\xcf\x2f\xff\x35\xeb\xf6\xbb\x8c\xff\xb0\x27\xad\x2e\x1e\x2e\xfc\x0b\xff\x43\xc6\x03\x90\xe9\x5e\x88\xf6\xf3\x03\x40\xc3\x17\xf8\x10\x0a\x68\xe6\x02\xaf\x34\x01\xdd\x44\xa0\x6a\x05\xe3\xdb\x7f\xbc\x63\x9e\xd0\xad\xa7\x80\xf1\x58\xe0\xca\x01\x60\xe0\x1e\xa0\xc4\x92\xf5\x94\xce\xbb\x03\x93\x97\x33\xee\xe7\xb0\x1d\xc8\x4a\x07\xdc\xae\x03\xe9\x8a\xc0\xb2\xdb\x8c\x7f\x8b\x27\x9d\x33\x49\x80\x78\xb2\x3b\x63\x00\xc4\xba\x01\xe2\xae\x2d\xa9\x86\xf1\xff\x9c\x1b\xc0\xd9\x93\x7c\x97\x5e\x8c\x7f\x55\x6e\x8c\x9b\x7e\x2f\x00\x52\xbb\xd7\x9d\xff\x07\x15\xeb\xf6\xfb\x6e\xe9\xde\x7f\xc4\xc3\x7a\x78\xb8\x69\x6d\x3b\xc8\xfc\xae\xc3\xfb\xa8\xc7\x7b\xf8\x28\xfe\x7b\x6c\xad\xde\xc3\x8b\xc3\x40\x03\x2d\x9e\x0f\xba\x29\xc0\x9d\xe9\x40\x9b\x3e\xac\x55\x21\xc6\x8d\xcb\xf6\x40\xaf\xef\xc0\xf9\x33\xc0\x50\x03\x40\xdc\xeb\x59\xac\x01\x72\xfe\x02\x66\xb6\x02\x32\x22\x81\x79\x79\xc0\xe9\x1d\x80\xb8\x0d\x3e\x65\x04\xac\xd3\x64\x4d\x98\x1d\x1e\xe2\x29\x88\xf9\x83\x29\xdd\x59\x0f\x43\x6c\x8b\x1c\x43\x20\xe5\x13\x73\x29\x4f\x8e\x03\x1e\xb7\x10\x4f\xdb\xc0\xa7\xbf\x81\x63\xfe\x75\xfb\x7f\xdf\x48\xb6\xbb\x5c\xff\xdd\x6f\x19\xff\x21\xd8\xba\xb6\x1d\xe4\x3f\xfc\x0f\xde\x83\xc4\x06\xaf\xcf\x7b\x78\x56\x20\xee\x89\x98\x07\xd6\x40\xd2\x3b\x10\xcf\xcf\xe2\x3c\x68\x37\x87\x39\x5d\x3d\x9e\xb1\xa6\xc9\x80\x42\xe0\xdc\x06\x60\xec\x59\x20\xbd\x0d\x30\xd5\x8b\x79\x1d\x2e\xa6\x40\xb2\x2e\x20\xee\x8f\x12\xdf\x71\xbc\x4c\x74\x16\xcf\x7e\xc0\xb1\xce\xc0\xbe\x62\x20\xc1\x12\x38\x51\xc5\xeb\x5c\x8e\x3f\x70\xcc\x07\xb8\xd6\x15\x48\xa8\xe1\x79\x21\x9e\x7a\xbe\xfe\x36\xff\x65\xfc\x17\xd9\x78\xdf\x91\x57\xd7\xef\x2d\x15\xff\xce\x07\xf8\xff\xf1\x5f\xbe\xe4\xb2\x7d\x7b\x8d\xad\xac\xde\xc7\xfd\xdd\x6c\x65\xa7\x84\x0a\x79\x40\x3d\x0e\x28\x35\x06\x9a\x27\xb3\xff\x62\xdc\x38\x17\x00\x98\x56\xf3\xb8\x1f\x5e\x05\xa4\x5e\x61\x5d\xa9\xc4\x60\xc0\x21\x9a\xfd\x73\x4f\x01\x8e\x36\x07\x7c\xbc\x58\xd7\x22\x38\x0a\x38\x14\x00\xec\xd3\x05\x0e\xc7\x02\x49\xb9\xc0\xc1\x76\x1c\x33\x0f\x46\x02\x57\x15\x80\xb8\xcd\xc0\x93\xd7\x40\xac\x1d\xf0\x75\x05\xb0\x57\x1a\xff\x11\xd2\xda\x17\x22\xd5\x89\x91\xf1\x5d\xea\xf3\x3e\xfc\xfa\xb3\x5d\xdb\xf6\xdf\xdb\x41\x86\x77\xca\xf8\x2f\xef\xd7\xb3\x7d\x29\xbd\xfe\x85\x7b\x3f\x60\x7b\x5d\x7a\x5d\x2a\xee\xbe\x17\x02\x85\xed\x80\x86\x6f\x80\x73\xcf\x80\x96\x73\x80\x74\x2d\xc0\xd0\x02\x48\x3d\x09\x0c\xb2\x02\x12\xf3\x80\xf1\x26\xac\x21\x37\xc3\x0c\x38\xd2\x03\x58\x10\x0c\xc4\xe9\x71\xfd\xa4\x03\xb6\x40\x50\x24\x10\x63\x01\x44\xd5\x70\x6d\xb1\x13\x76\xc0\xde\x18\x8e\x89\x51\x83\x78\x0f\x22\xfe\xdb\x93\x19\xbc\xf7\xfc\x1a\x56\x3b\xee\xb7\x9a\xd6\xf3\xdb\x4d\xf2\x77\x39\x5b\x19\xef\x43\xc6\x7f\xf0\x3e\xf0\xef\xed\xf0\x6d\x0e\xdb\x77\x8f\xd8\xca\x74\x3f\x64\xfe\xff\x01\xc9\x7f\x29\xbb\x58\x2e\x65\xd9\x8a\x4f\xb0\xcd\xd9\x06\xc8\x6b\x31\xb7\x4b\xdb\x13\x48\x59\x0e\x18\x74\xe6\xda\x60\xa6\x83\x81\xf8\x39\xc0\x48\x03\x20\x2e\x89\xf7\xdd\x31\x2b\x00\xd7\x07\xc0\xde\xbf\x80\x15\xc1\xc0\x1e\x45\x60\x73\x21\xb0\x6b\x17\x10\xb5\x0b\x88\xf0\x63\x2e\x50\xb8\x09\x90\x7d\x0d\x08\x3b\x04\x94\xbb\x71\x2c\x7d\xac\x06\x6c\xaf\x02\xbe\x4c\x04\x82\x4a\xeb\x8e\x73\x19\xdf\x45\xc6\xfb\xf0\x96\xd6\x13\x2f\x69\x1d\x59\x24\xed\xb3\xdc\x51\xb7\x1d\xea\xf3\x7f\xde\x6a\xb2\x7d\x2c\xcd\x87\x7b\x4e\x6c\x6f\xbe\x91\xfc\x97\xe6\xc3\x05\x86\x7b\x90\x6f\xc1\x36\x5d\xca\xb2\x24\xb7\x03\x94\x02\x81\x63\xf2\x40\x53\x03\xe0\xd0\x77\xa0\x6b\x20\x6b\x01\x0d\x7a\x0c\xec\xfd\x0e\x58\x3e\x03\x76\x2d\x95\x9b\xe3\x14\x0b\x84\x57\xca\x47\x78\xb7\x15\xe7\xb3\x82\xc3\xc6\x35\x40\xc8\x1f\x0a\x09\xbb\x75\x81\xe0\x2e\x0a\x6e\x09\xa6\xc0\x96\xb1\x0a\xc8\x3c\x0c\x6c\x0a\x93\x1f\x7f\xd9\x18\xd8\x70\x41\xee\xca\x83\x35\xc0\xfa\xa1\x72\xc1\x7f\xe6\x01\xfe\x1b\xf1\x81\xfc\x96\xf8\x60\x4b\xbe\x23\xe0\x77\x7f\x17\x48\xba\x41\x6e\x5a\x6c\x5d\xa5\xf1\xe2\x14\x58\xb7\x1d\xfe\x1b\xff\xe7\x41\x24\xdb\xdb\x7d\xeb\xfa\x7f\xb1\x25\xdb\xbc\x67\x20\x9c\x3f\x5d\x4b\x81\xb2\xe8\xc9\xe5\x4a\x94\x4d\x8b\xf7\x52\xa2\xd3\xde\xfe\x00\xd5\x7b\x0d\x5e\x02\x7b\x06\x36\x78\xd9\xb6\x0a\x08\x8f\x69\xd4\xbc\x8f\x01\xb0\x2d\x44\x67\xea\xd8\x1a\x20\x68\x7c\xe3\x4b\xb3\xe6\x03\x1b\xed\x74\x63\x3d\xad\x80\x75\x6f\x9b\x38\x04\xbc\x00\xfc\x7e\x36\x99\x1c\xfe\x37\xb0\x76\x55\x13\xe7\xc3\x5b\x80\x35\x53\x74\x6f\x9c\x6d\x01\xac\x0a\xd7\x1d\x78\xf1\x22\xb0\xe2\x6d\x63\xf7\xca\x27\xc0\xf2\x70\x9d\xf2\xb7\x61\x80\xb7\xb3\x36\xe1\x36\x1e\x97\xb5\xa8\xae\xfd\x3c\xf3\x86\xef\x45\xeb\x62\xd8\x80\xee\x73\x3a\xd6\xa8\x59\x89\x76\xd6\x2b\xd5\xb1\xa2\x9d\xd9\x4c\x85\x70\x1c\xbb\xf9\x4a\xf4\x39\x19\xff\xa5\xbe\xff\xf7\x7d\xfe\xdd\xff\xf3\x7a\xaa\x84\x6b\x9d\xd3\x6f\x40\x38\xc7\xe9\xde\x8d\x29\xef\x98\xe8\xd5\x94\xf2\x7b\x07\x73\xf5\x48\x37\x20\xea\x73\x0b\xca\x0a\x85\x3a\xb7\x6a\xa7\xf0\x09\x08\x1e\xdc\xe6\x91\x9e\x23\x10\x78\xbf\xad\x4d\xb7\x87\x0a\xe7\x7d\x5b\x18\x0c\x1a\xaa\xa8\xd4\x7e\x65\x8d\xc1\x81\xc9\x11\xca\xde\xde\xce\x06\xfb\xe6\x66\xab\x1c\xf6\x9a\x6b\x30\x62\x55\x99\x6a\xac\xfb\x83\xb6\xe7\xb7\x9e\x50\x73\x5a\xa0\xdd\x56\x37\xe6\xb8\x5a\xf6\xbc\xcc\x36\x5e\xc9\xb1\x6a\xb7\x5c\x3f\xe8\xdf\x2d\xb8\xac\x76\x60\xce\x61\xfd\x69\x37\x07\xa9\x69\xbb\x14\xe8\x2b\xbd\x8c\x53\xed\xe4\x22\xa7\x6f\xf3\xcf\x74\xe5\xbf\x1d\x7c\x5b\x4f\x12\x04\xa5\xc2\xe9\x69\xad\xe6\x0b\x82\xe2\x85\x29\x87\x5a\x45\x0a\x82\x62\xc4\x64\x5b\xbd\x8b\x82\x20\xf7\xda\x26\xb6\xc9\x1a\xd1\x6f\xab\x38\x5d\xc2\xf3\x2c\x15\x1b\x91\x4e\xe9\xfb\x0b\xec\xdf\x4b\xfb\xba\xfe\xdf\xf4\x62\xbd\x9b\xcb\xc9\x6a\x7c\x2b\xb0\x4a\x9b\x6c\xd6\x90\x16\x94\x77\x3a\xb5\xa5\x0d\xe1\xe4\x09\xb7\x3a\x12\x0f\x22\x36\xaf\x0b\xe5\xb1\x77\xcf\xe9\x46\x79\x86\x6d\x35\xac\xc2\xbc\x5e\xaf\x27\xe1\x1b\x3e\x93\x4c\x9e\x36\xd2\x01\xbc\x87\x98\xe4\xb7\xb7\x50\x9c\xee\xfe\xc8\xc4\xb0\xdf\x28\x55\xd7\x79\x76\x26\xe6\x13\xac\xd5\xad\x9c\xe7\x18\x47\x3b\x3c\xd0\xf8\x68\xff\xb6\x67\xf5\x12\xbf\x86\x6b\x66\x68\xf5\xec\xb3\xe1\x81\x66\x89\xad\xd0\xc3\x72\xf7\x66\xad\x63\x53\x36\x18\x59\x1f\x3b\xd5\x48\xd7\xc6\xa1\xbb\xd7\x39\xc5\x46\x4d\xac\x85\x6e\x57\x2b\x02\xb4\x72\xad\x1e\x75\xf3\x7a\x7c\x41\xf3\x9e\xd5\xc9\x6e\xb3\xbe\xc9\x35\x1c\x63\xa1\x6c\xe8\x2b\x08\x1a\x7e\xe3\xcc\x3b\xd7\x08\x82\xda\xc1\x31\x3b\x3b\x99\x0a\x82\x6a\xf8\xc8\x3e\xed\xdf\x09\x82\x4a\xfb\xe1\x79\xed\x2d\x05\x41\x39\xcd\xfc\x98\x81\xbc\x20\x28\xcd\x37\xff\xdc\xe6\x9b\x20\x28\x7e\x93\xf1\x5f\x64\x71\xf0\xe6\x24\x55\xda\x21\x5c\xf2\x6a\x44\xf8\x53\xfe\x0a\x7d\xe2\x7d\x9c\x0d\x6c\x4f\x79\xdc\x64\x0d\x43\xc2\xad\x64\xfc\x97\xfd\x42\x3f\xba\xb0\x1c\xf1\xa5\x3f\x65\x7d\x42\xe4\x07\x51\xf6\x78\x9d\xcb\x10\x8a\xb0\x2b\x02\x86\x12\x3a\xe1\x6e\x3a\x7c\xa8\xd2\x1b\xc0\x75\xdd\x08\xc7\x96\xfb\xe5\xf5\xec\x87\x0c\x6f\xdd\x73\x89\xca\x81\xa9\xd1\x43\xff\x1a\x7e\xbf\xc1\x02\xab\xd7\x43\xa7\x4e\xeb\xa4\x19\x31\xc1\xca\xbc\xd7\x42\xb3\x46\x81\x63\xfa\x0f\xe9\xe3\xd7\x43\x67\xc8\x88\x5e\x83\x95\xc3\x6c\x1b\x5b\x0c\x35\x37\x6b\x78\x58\x57\xb7\xc9\x90\xe6\x03\xcf\x9d\xdd\xac\xdb\xdd\x6c\xee\xc0\x1e\xa5\x1d\x74\x35\x07\x79\x0d\x58\x77\x7f\x55\xe3\x6e\x83\x26\x0c\x08\xfe\x50\xa1\x9d\x3b\x48\xa5\xff\x5e\x41\xd0\x5a\xd2\x5f\xab\x4f\x94\x20\x34\x9c\xda\xf7\xb8\x69\x8e\x20\x68\x14\xf6\x8a\x34\x31\x11\x04\xf5\xed\x26\x3f\x7a\x9a\x09\x82\xda\x7a\x93\x30\xa3\x33\x82\xa0\x7a\xdf\x24\xce\xf0\xb5\x20\xa8\xdc\x78\x28\xc8\xd1\x4e\xe9\x56\x95\x3a\xe1\x57\x97\x2c\x9b\xd3\x6d\xa7\x7c\x6b\x03\x42\x53\xd3\x2b\xba\x92\xfe\x45\x52\x15\xd7\x41\x3a\x52\x33\x88\xc6\x49\x8c\xbf\x39\x65\x91\x22\xdc\x46\xd2\x7d\xf8\xad\x29\xa3\x09\xb7\x08\x5c\x3a\x9e\xfe\x7d\xa5\xb3\x05\x65\x91\xdd\x35\xad\x59\xdf\xb9\xc4\x86\x74\xa0\x6d\x4d\x27\xd7\x34\x1e\x0b\x58\x5c\xb1\x29\xea\x1c\xac\xe4\x3f\x2a\x7b\xd2\xe2\x41\x7f\xaa\x47\x9a\x6f\xb0\x8e\xb5\x2e\x69\x38\x75\x60\xb6\x75\x27\xd7\xed\x9a\xeb\xfb\xfe\xb0\x9a\xbd\x7a\xa4\xd6\xd6\x5e\x9b\x2d\xc3\xb6\x0d\x68\xa4\x6e\x7c\xc3\xc2\x23\xd6\xb2\x51\x97\x1e\x85\x13\xb3\xd2\xfa\x35\x6a\x64\xb4\x72\xc2\x9f\x17\x1a\x68\xe5\x75\x5f\x33\x61\x5c\x65\x0b\xcd\x37\xdd\xde\x8f\xff\xfb\xad\x46\xc3\x9d\xdd\xcd\xc7\x3d\x16\x04\x8d\x4a\xc3\x57\xa3\xcd\x04\x41\x7d\x7f\x97\x6f\xc3\x67\x08\x82\x9a\x61\x97\x3b\x43\x32\x05\x41\xf5\x60\x67\x9f\x41\x15\x82\xa0\x92\xd6\x79\xf5\x80\x28\x41\x50\x59\xd2\xf1\xaf\x7e\x0e\x82\xa0\xbc\xef\x76\x7f\x6d\xca\x8e\x96\x6e\xd3\x27\xfc\x21\xf7\x43\x67\x1a\xe7\x67\x5d\x59\x17\x24\xa9\x6a\x30\xa3\x67\xab\x86\x52\x5e\x7e\xdf\xd9\x31\x74\x7f\x2f\x3c\x69\x22\xad\x10\xc1\x82\x15\xcd\x93\x80\x50\x5e\x38\x96\x57\xd9\xd2\xe7\xdc\x53\xa6\x13\x5e\x3a\x3b\xc1\x9e\xfe\x7e\x52\xc5\x6c\xc2\xfd\x46\xb5\x76\xfa\xa0\x5a\x06\x0c\xce\x73\x2a\x6f\x63\xa7\xa0\xda\x67\xa8\xe3\xda\xde\x11\x2a\x7f\x1b\x1b\x3a\x4e\x1c\xff\x49\xad\x65\xb7\x08\xc7\xd6\x8e\x49\x6a\x45\x5d\x14\x66\x9f\x59\x76\x55\x7d\x40\xc7\xc6\xb3\x35\x83\x3c\xd5\x1d\xda\x5d\x71\x18\x15\xd3\x58\x7d\x98\x41\x17\xfb\x96\x29\xdd\xd4\xde\xb4\xf9\x3a\x6b\x42\xd1\x08\x35\x0f\xfd\xcf\x33\xcb\x6f\x4f\x51\xdd\xae\x1f\x38\x73\x5d\xf5\x70\x95\xed\xfa\xd3\x67\x7c\x12\x04\xe5\x66\xad\x47\xda\x0e\x15\x04\xa5\x06\xad\x9d\x26\x79\x08\x82\x62\x59\xeb\x59\x16\xc5\x82\xa0\x18\xd2\xea\xc1\x78\x3f\x41\x50\xd4\x6c\x75\x6a\xac\x9a\x20\x28\x5c\x69\xe5\x37\x72\x9f\x20\x28\xf8\x5f\x12\xda\x91\xbf\x79\xc9\x26\xb4\x13\x38\x1b\x36\x90\xd0\xc6\xa4\x5c\xd6\x83\x39\x1c\x3c\x8e\x76\x4c\xfb\x16\x5b\xd1\x3a\x10\x6e\x6e\x43\xb7\xaa\x83\xe3\x59\x27\x63\x5d\x95\x3d\xc5\x8d\x95\xcb\x66\x53\x15\x72\x8f\x87\x2e\xc4\xab\x72\xd1\x9d\x4b\x79\x70\x5b\x63\xc6\x4f\xc7\x1e\x75\x27\x3c\xa8\x77\x7b\x4f\x5a\x69\x8c\x52\x3c\xbf\x37\x8d\x05\x3a\xaa\x7a\x36\xe8\xfe\x5d\xb1\x6f\xdb\x37\x9e\x63\x46\x7e\x54\x0c\x6b\xed\xed\x39\x61\x66\x91\xa2\x47\x8b\x52\xcf\xe6\x8b\x8b\x14\x52\xf5\x5c\x16\xf9\x6f\x6a\x2c\xef\xaf\xd7\x7b\xd1\x93\x7d\x2d\x81\xa6\xe7\x3d\x1e\x26\xdd\x00\x9a\x6c\x73\x7f\x9d\x7f\x03\x68\xfc\x79\xe1\x1f\x37\xae\x01\x3a\x8f\x17\xe4\xbc\x8c\x04\xb4\xd7\xba\x95\xff\xfc\x01\x68\xe9\xcd\xa1\x7b\x99\x9a\x49\xb3\xf7\xd0\x19\x2a\x6e\x66\x8c\x68\x1b\xe6\xd8\x91\x55\x2f\x9b\xba\x9f\xde\x1f\x6a\x43\xba\xc5\x05\xd7\x4c\xa8\xbf\xce\x56\x0c\xa6\xe7\x3f\xd9\x7f\x34\xad\x7f\x47\x9e\xb3\x2e\x4a\x74\x05\xf7\x73\x64\xd0\x74\x52\x99\xde\x6a\x61\x4f\x3c\xaa\x40\x47\xbe\x85\xbe\xea\xe9\x5c\xca\x0e\x2f\xda\xe2\x46\xed\xe6\x5a\xc8\x78\xf9\xcc\x44\x2f\xf2\xdf\x72\xf0\x12\x8a\x1f\x43\xb6\x2f\x27\xb4\xd6\x50\x67\x15\xe1\x1d\x2d\x2e\xf8\x24\x69\xcc\x03\x9a\xaa\xad\xd5\xe8\xa8\x06\xe8\x68\xaf\x35\x18\xa2\x01\x68\x7e\xf6\xc9\x99\x7a\x04\xd0\xb0\xf1\xf1\x5c\x78\x16\x50\x3d\xe6\x83\x80\xc9\x80\xb2\xd3\x1a\xcb\x48\x5d\x40\x71\xcd\xea\xe0\x84\x29\x80\xfc\xf3\x55\xe3\xb2\xb7\x00\x72\x19\x2b\x87\x5c\x51\x03\xe0\xbf\xc2\xe8\x09\x21\x93\xcb\x07\x7e\x23\x86\xd3\x62\xa9\xee\x87\x3b\xd8\xce\xcb\x66\x3b\x47\xba\xc7\xeb\x2c\xdd\xe7\x74\xe8\x22\xda\x33\xd7\x98\xdf\x76\x32\x6c\x22\xe5\xa7\xe3\x13\x6d\x58\xff\xe0\x99\x1d\xc5\xff\x08\xaf\xd9\x94\x4d\xdf\x6a\xea\xe2\xc8\xfd\xcf\x6a\x04\x6b\x5a\x2d\xa4\xb8\xb8\xf8\xc1\x22\x8a\x0b\xf3\x1d\x96\x50\xfb\x38\x34\x5a\x46\xf7\x7b\x6d\x5e\xac\x24\x94\x61\xf4\xe0\x35\x74\x6b\xbd\xaf\x31\x6f\x4c\xdb\x19\x33\x5f\x40\xb5\xcb\x66\x52\x71\x97\x5f\xb7\xa5\x8d\x1e\x33\xec\xc6\xf6\x26\xc5\xeb\xcd\xb3\x2c\x99\x71\x65\xe9\x4a\xf7\x0e\x37\xb9\xfb\x10\xae\xbb\x51\x2d\x94\x90\xc4\x0d\xbb\x0e\x53\xdd\x8b\xf5\x49\x19\x84\xe7\x06\xea\x5e\xa6\x9b\xe4\x01\x3f\x1e\xd2\x7d\x5e\xff\x94\x3f\x29\xd2\xfb\xb6\x61\x3f\x57\x4e\x67\xbb\xb4\x8c\xad\xd7\x27\xa9\x7d\x52\xd8\xba\x5d\x17\xed\xc9\x27\x16\xf4\xed\x47\x22\x6c\x09\x65\x8f\x69\xce\xf3\x39\xe2\x91\x0b\xf5\x63\xc8\x64\x37\xc2\xb5\x36\x14\xb2\x4e\xc6\xea\x1f\xdc\xcf\xde\xbe\xde\xaf\x45\xbb\x30\x60\x25\x6d\xb5\x9d\xdb\xad\xa1\x75\xc2\xae\xa9\x1f\x8d\x8f\x89\x4d\x03\x08\xe7\x1c\x3a\x8d\x75\x61\x7a\x86\x6d\x21\x1e\x51\x8b\xc1\x5b\x59\xe7\xff\x43\xa8\xa4\x5c\x17\x76\xb5\x39\xad\xb4\xe1\x23\x7b\x11\x93\x26\x4c\x8f\x75\x0f\x76\x54\x38\xd3\x59\x2e\xb4\xdb\x2a\xaa\x8f\xb1\xc3\x91\x2b\xd0\xec\x18\xc1\x95\x56\xb6\x5d\x3d\x4d\x7b\xde\x90\x66\x17\xe8\x97\x82\x13\x2a\x09\xc7\x08\x2e\x7b\xcb\xfc\x18\x5f\xf6\x33\x50\xe2\x3d\xf8\x8d\x64\xeb\x23\xd5\xbd\x58\x29\xb5\x87\x77\x22\xe5\x2d\x76\x71\xbf\xef\xdf\x3d\x9b\xb2\xfc\x91\x1b\xe6\x12\x7a\xbc\xcd\x85\xc7\xf7\xa6\x41\x5e\x34\xaf\x7d\x4d\x96\xad\xe4\x38\xb8\x8a\x70\xbe\x45\x27\x7d\xc8\x6f\x17\x17\x3f\xfa\xd5\x99\xd7\x02\x69\xe7\x39\x49\x6f\x23\xad\x0b\xa3\x4d\x83\x68\x07\xd6\x6f\x53\x08\xc5\x8f\x4e\x35\x3b\x08\x9d\xd3\x4d\x89\xf0\x62\xff\xf7\x8e\x66\x1b\xd5\xa3\x39\xed\xd9\xf7\x8e\x33\x21\xa4\x39\x6a\x09\x57\x2c\x8b\xca\x72\xa4\x06\xd9\x53\xc8\x8a\x34\x7b\x82\x83\x08\x49\xd9\xb3\x80\x99\x05\xbb\xc2\x4e\x12\x03\x6f\x57\xff\x22\x42\xda\x22\x37\x33\x52\x12\x61\xf6\x8a\x22\xd9\xce\x94\x1f\x74\x26\x90\xf1\x3f\x82\x24\x3d\xf3\x8d\xd2\x7d\xff\xc0\xfe\xbf\xb7\xcf\x81\x6b\xcc\x3a\xd9\x15\xe8\x46\xf8\xf4\x8e\xc9\x5e\xd4\x9f\x32\x1d\x20\xff\x14\xf6\x7b\x95\x82\x1f\xe3\x7d\xfb\x59\xa5\x64\x9e\xd6\x7a\x8a\xa7\xb3\x15\x36\x53\x3b\xd9\x4a\xea\x0c\x13\xb1\x8d\xf0\x99\xa1\x08\xa3\x89\x60\xda\x21\xc2\x81\xe7\x43\x14\xed\x2f\x35\x1f\x47\x9b\xb3\xff\x07\xfb\x4b\x36\xac\x19\x21\x7e\x71\x9b\x8d\x09\x97\x89\xbb\x3f\x86\x15\xaa\x9c\x79\x64\xc6\x25\x2d\x89\x66\xbb\x89\x10\xe6\xd8\x14\x56\x1e\x89\x6b\x9e\x44\x11\xea\xc0\x86\x5c\xda\xe1\xc4\xd4\x5c\xa5\xbd\x70\x8c\xc5\x53\xba\x31\x1c\x1d\xfb\x85\x56\xfe\x5f\xbc\x98\xd7\x6c\x43\x97\xb3\x65\x3d\x1d\x99\x2e\xca\x1e\x77\x0f\x3a\x07\x84\xad\x5a\x42\xbc\xf0\x20\xcf\x15\xc4\x52\x5a\xb7\x83\x55\xf5\x57\x05\x07\x78\xf1\x3c\xd8\x48\xb3\x6f\xc1\x8b\xcd\x5c\x07\xa6\xdd\x56\x6a\xa7\xe9\x6b\x59\x1f\x66\x52\x49\x18\xa1\x51\xa3\xdf\x32\x5e\x3e\x68\x20\xf3\x61\x7a\x18\x33\x0f\xa8\x75\x0d\x8f\x66\x75\x9b\x23\x52\x06\xe3\x84\x35\xdb\x63\x57\x9a\x11\x12\x7c\xdc\xd2\x78\x24\xbf\x1e\x4d\xbf\x70\x6c\xca\x4c\xc2\x6f\x8f\x99\x2e\xa2\x96\x3d\xe6\xcf\xcc\x94\x84\x6b\x91\xf4\x8d\x09\x15\x8c\x3c\x1f\xf5\xc8\x22\x1d\x95\xf8\x45\x65\xb4\xa3\x89\x8f\x79\x44\xf1\xe4\xc8\xee\x3f\x69\x3c\xfd\x07\x2f\x46\xd2\x8f\xd9\x2d\xd5\x07\x09\x27\x1c\x3c\xfc\x16\xf3\x80\x42\xb4\xb9\x2e\xd6\x86\xc2\x75\xf4\xbc\x6b\xf7\x6d\xa0\x1d\xf6\x72\x63\x46\x13\x17\x19\xf0\xec\x9c\xe7\x1a\xca\xf5\x0e\x3c\xc2\xe9\xe4\x39\xf5\xe1\x6e\xca\x54\x4d\xcc\xdd\x4b\xe3\x7e\xd8\xc3\x18\x62\x25\xf4\x37\x8b\xa5\xf1\xd2\xb5\x86\xfd\xd6\xdb\xca\x4f\xad\xac\x9f\x38\x89\xfd\x4f\x95\x74\x30\x4e\x59\x72\x65\xbf\x53\x96\xbc\x13\x4f\xbd\xc3\x8c\xdd\x94\x0a\x3b\x8a\xd0\xa9\xa7\xdc\xc3\xf9\xfd\x00\xda\xf1\xa5\x58\x73\xbd\x83\x14\xfd\xc3\xcc\x7f\xc9\x3e\x43\xb8\x78\xf2\xf4\x52\x42\x56\x93\x8e\xdf\xa3\x9d\x6e\x52\x15\xdf\x20\x4f\xec\xf9\x0f\x31\x14\x12\x66\x0b\x75\x78\x31\x71\x12\x0f\x20\xa6\xa5\x68\xb7\x19\xf8\x86\x49\xfe\xd3\x5f\xf9\x0d\xdd\x44\x71\x6c\xc5\x8e\xad\xc4\xca\x58\x7c\x3d\x8c\x32\x31\x32\x1e\x90\x73\xd5\x6e\x5a\x37\x66\x64\x31\x3f\x62\xd2\x8a\x68\x52\x2b\x18\x57\xc1\xf5\x73\xcc\xad\x98\x0f\x63\xfa\x36\x81\x46\x69\xc7\x03\x27\x68\x9f\xd5\xcc\x91\x6f\xa3\x2b\x6a\xa7\x49\x99\x3d\x19\x1f\x26\x2b\x86\xf9\x30\x59\x31\x46\xd4\x13\x99\x9e\xc3\x68\xeb\x9a\x51\x30\x95\x66\x6c\x66\x8d\x1b\xc5\x8b\x8c\x93\x6b\x69\xe7\x9a\x99\xc5\xcc\xbb\x4c\x6f\x66\xe0\x64\x14\x30\xf3\x20\x63\xc1\x05\x62\xf8\x9e\x0d\xbb\x4d\x3c\xb3\xb3\xe3\x5f\x51\x4f\x9c\x09\xfc\x8b\x72\x48\xa9\xaf\xf9\x6c\x2d\xe3\xc5\xfc\xaa\xa3\x74\x98\xf2\x74\xe1\x1b\x68\x5f\x10\xe0\x15\xfc\x81\xe7\xc1\x36\x8a\xde\x4b\xbf\x45\xd0\x7e\xda\x63\xe4\x6e\xfa\x56\xd7\x60\x46\x97\xed\xaf\xed\xa7\xa7\xb4\xad\x8a\x23\xff\xad\x62\xe3\xa9\xf5\x47\x05\x33\x4f\x60\x40\xce\x09\xd6\x43\xb9\xc0\x2a\x4f\xed\x1d\x4f\x13\x8e\xac\x13\xc3\x7a\x02\xf2\x8f\xb3\xa5\x38\x29\xe3\xc3\x14\x18\xeb\x12\xf2\x5d\x18\x66\x48\x23\x2d\x7f\xcd\x90\xed\xfc\x3e\x33\x1a\xf3\xbd\x5c\x69\x1d\xcd\xef\xc1\x91\xaa\xc0\x98\x75\x0f\x0a\x8c\x19\xf7\xcf\xcf\x4f\xa6\x3a\x39\xf9\x6a\x05\x77\x41\x8a\x60\x1c\x27\x72\x0f\x3d\x53\x07\x9d\x8c\x99\x4b\x9f\x2d\xad\x13\xe9\xaa\x6c\x7f\xe9\xe8\x90\xce\x56\x60\xff\x10\xaa\x9e\x22\xe3\x01\x2d\xaf\x62\x1d\x24\x4f\xdb\xbd\x34\x2e\xe6\x3b\xc4\xd0\xfe\xd8\xf1\x5a\x2c\xf5\xeb\xcc\x4e\x47\x28\x4e\x4c\x6e\x91\x40\x51\x7a\xbc\xe7\x09\x5a\x37\x86\x3e\x39\x49\xb3\xbc\x5f\x70\x2a\xc5\x09\x23\x9d\xb3\xd4\x1e\x6d\xe2\x33\xa9\x5e\xef\x2f\x7d\x1c\xdf\x02\x49\x37\xa9\x44\x9a\x1f\x25\x15\x3a\x74\xc3\xa1\xb4\x33\xf3\x40\x2e\x96\x0d\x69\xcb\xef\x5b\x3b\xb1\x65\x06\x6f\x89\x37\xcf\xe0\x8b\x0e\x5b\xc8\xaf\x8b\x67\xa2\xa8\xc7\x4a\x3a\x26\x91\xfe\x47\xc9\xea\x7c\xd2\x8f\xb8\x90\x5c\x4e\x7c\x8a\xf3\x35\x1c\x27\x8a\x0b\xde\x52\x86\xa4\x58\xef\x1f\x52\xbc\xc9\x97\xf4\x40\xce\x49\xf3\x22\x9d\xf6\x17\x32\x1e\xd0\x8a\xeb\x7b\x88\x77\x2f\xe3\x01\xb9\xfb\xb2\x0e\xd2\x5c\xef\x78\x5a\x9d\x1c\xbc\x13\x68\x54\x4e\x73\x3c\x41\xb3\xd5\xba\x3a\x99\xfc\x1f\x73\x24\x95\xd6\xcb\x21\x31\x67\x28\xff\xd0\x3b\x37\x83\xf8\xb8\x5d\xf5\xd9\x6f\xfd\xed\xf9\xb4\xea\x35\x9a\x51\xcc\xc2\x83\x29\xa5\x52\xa6\xaf\x42\xca\x6c\x5c\x35\xd0\xa6\x7d\xc0\x15\x8f\x4e\xe4\xd7\xd5\x6b\x83\x28\xe2\x54\x9c\xe4\x1d\xed\x55\x17\x47\xaa\x77\x73\xd5\x9b\x19\xcb\x57\x46\x6c\xa4\x9d\xf9\x95\xd4\x3d\xb4\x92\x5f\x29\x3e\x4e\x33\xb2\x7c\x42\x26\x3d\x61\xc5\xe0\x32\x62\x00\x57\x8c\x7e\x40\x23\xb7\xdc\x98\xf5\x30\x2e\xdb\x32\x2f\xa6\xa4\x82\x73\x6f\xc5\x52\x4d\xde\x7c\xd2\x9f\x5b\xd3\x62\x1f\xf1\x9e\x96\x5d\x89\xa5\x68\x22\xe3\x01\xcd\xf7\x38\x46\xf1\xc1\xc5\x31\x91\xd6\x85\x19\x11\x27\x29\x0e\xda\xea\x9e\xa6\xf7\x2d\x74\x58\x8d\x64\xe4\xe7\x74\xe2\x13\x0e\xae\x60\x16\x46\x6f\x49\x0f\xc9\xb0\x75\x31\xf1\x65\x5b\x37\xba\x40\x71\x44\xb3\xf7\x65\x29\xd3\x7b\x45\xca\xfc\xc8\x32\xdd\xb7\xbf\xb3\x3e\xcc\xad\x2a\xe6\x81\xdc\xaa\xe2\x8a\xb7\xb7\x1b\x8e\xa7\x13\xdb\x1d\xd8\x13\xe3\xf2\x4e\x25\x2b\xdc\xdd\x0e\x0b\x24\x1e\xd9\x9d\x11\x91\xb4\xd2\xdf\x39\x7a\x84\xf6\xd1\xb7\x9f\x30\x43\xe7\xd6\x9b\x12\x6a\xa7\x5b\x1d\xef\xd0\xb8\xb8\x59\xf3\x8a\x56\xea\x1b\x69\x9f\xe9\x7b\xaf\xd9\xfc\xa0\x48\x20\xab\x2b\xc5\x75\x82\x96\x07\xc6\xd1\x2a\xeb\x75\xfd\x28\xf1\xc2\x3d\x56\x26\x12\xdb\xc2\x75\xc7\x49\x5a\xbd\x1c\xc1\xfd\x3d\x5d\x87\xe7\xb7\x4d\x54\x06\x8d\xb6\x09\xc7\x73\x88\x2f\x3e\xfc\x7a\x1e\x45\xa9\x81\x81\x05\xb4\x9f\xee\xf9\x93\xeb\xe8\x74\x56\x2c\xa5\x55\xab\xd5\x6c\xd6\xc7\x69\xa8\x73\xf5\x4d\x5d\xff\xef\xad\x64\xfb\xd0\xb2\x21\x29\x79\x3d\x6c\x6f\x40\xcc\xfc\x47\x27\xfa\xd0\x7e\xe2\xa1\xc0\x8c\xff\xaa\xfc\x19\x14\x61\x1f\x3d\x59\x44\x4a\x99\x55\xc3\x02\x42\xd9\xf2\x4c\x7e\x18\x70\x90\x66\xe4\xc3\xa3\xa7\xe9\xc9\x1f\x0d\x3d\x4f\xbf\x78\xbf\xe2\x06\x45\xe4\x87\x36\xac\xc0\x72\xef\xc2\x47\x9a\x89\xf7\x0d\x04\x9a\xd1\x77\xb6\x0b\xf4\xc4\xd7\x47\x08\xff\x85\xff\xd0\xfd\x47\xad\xfd\xd9\x1d\x30\x8c\x04\xfe\x2a\x02\xba\xcf\x93\xf0\xfe\xbc\xdf\xf0\x7e\x01\x18\xe0\x03\x3c\x76\x01\x86\xa6\xb0\x9e\xff\xd8\x16\x40\xe5\x2b\xf1\xac\x0d\xdc\xb0\x16\xdb\x10\x28\xd3\x01\x1c\x1d\xc4\x28\x00\xb8\xad\x00\x2e\x08\x8c\x63\x15\x37\x01\x7c\x8a\x81\xfc\xa3\xc0\x86\x1c\x20\xef\x07\x10\x6a\xce\xf9\xff\xfd\x9d\xf9\x3e\xfb\x71\x4b\xc6\x03\xc5\x11\x58\x54\x02\x5c\x18\x21\xce\x7a\x6e\xd1\x82\x5b\x40\x95\x17\x70\x3e\x8b\x71\x4e\xd9\xbd\xf7\xfa\xf5\x1f\x92\x4d\xfe\x37\xfe\x2f\xfc\x56\xe7\x84\xf4\x2f\x02\x80\xce\x52\xae\xbb\xd3\x41\x6e\x87\x8e\x9b\x81\xef\xf3\x18\xd7\x7e\xbb\x01\x30\xba\x07\xbc\x8e\x06\x4c\xdb\x03\x4f\x9f\x01\xfd\xa6\x71\x3e\x6b\xb0\x3e\xf0\x87\x3d\x30\xea\x21\x70\x73\x14\x60\xd9\x00\xb8\xe2\x00\x4c\x0d\x04\x2e\xbd\x07\x66\x8f\x00\xce\xdf\x05\xe6\x45\x01\x85\x63\x00\x2f\xe7\xdf\xf0\xee\x55\x5c\xff\xa1\xc0\x00\x08\x1f\x0a\xe4\xdb\x03\xfb\xc5\xf7\x13\x81\xe3\x23\x80\x9c\x68\x6e\x87\x5c\x81\xdb\x40\xf4\x57\xdc\x47\x8b\xed\xf3\xac\x80\xdb\xeb\x6b\x18\x88\xb5\x25\x3e\xfb\xd9\xbe\xff\x9b\xff\x70\x78\xeb\x7f\xf2\x1f\xea\xf3\x3f\x7e\xd5\x01\x49\x01\xfe\xfa\x07\x68\x9b\x02\x7c\x9e\x0f\xb4\xab\x02\xde\x0d\x00\xba\x94\x00\x2f\xdd\x01\x71\xbd\x7f\xba\x1e\xe8\xed\x0b\x3c\x68\x0b\xf4\xb7\x07\x6e\x9f\x02\x86\xf9\x01\xd7\x26\x00\xe2\xb8\x2e\x9f\x00\x4c\x9e\x00\x94\x1a\x00\xf6\x1d\x81\xe2\xcf\x7c\x9f\x39\xff\x19\xe0\x69\xca\xfe\xaf\xae\x01\x72\xda\xb3\x2e\xc8\xb9\xb1\xc0\x8e\x5d\x8c\x55\x44\xeb\x33\x76\x73\xcc\x9f\xed\xd9\x99\x8c\xef\x17\x07\x03\x39\x7b\x80\x5b\x3b\x18\x2f\x79\x6e\x06\xe4\xf7\x04\x7e\xd8\x32\x3e\x2e\x8e\x07\x99\xfe\x7f\x7d\xfc\xff\x90\xa4\x61\x70\xa0\xfc\xbf\xf3\x1f\x64\xbc\x8f\xdf\x75\x2f\xfe\xea\x0f\xb4\xf8\x00\x7c\x34\x05\x5a\x77\xf8\xad\xbe\x43\x39\xd0\xe5\x0c\x73\x10\xc4\x7d\xe0\x1f\x4d\xb9\x3d\x6e\x24\x03\x66\xeb\x99\xff\x33\x4a\x1d\xb8\x3c\x13\xb0\x1a\x08\x5c\x90\x03\xa6\x0f\x03\xf2\x6f\x03\xce\xaf\xd8\x9f\x05\xd1\x40\x76\x0e\xb0\xd2\x15\xc8\xea\x28\x9e\x0c\x81\xb3\xb6\xa0\xca\xa6\x19\xcf\xb8\x1d\x32\x0e\x30\x86\x99\xee\xc8\xe3\x21\xbb\x35\x70\x71\x3b\x90\xfd\x83\xb5\x55\xc4\xef\x79\x91\xc8\xed\xf4\x77\x1e\x70\x66\x54\x3d\xfc\x5f\xea\xd3\x43\x81\xff\x07\xfe\x43\xbd\xfa\x27\x4d\xdb\xfd\x27\xdf\xe1\xfd\x66\xa0\xe9\xd9\xda\xfa\x0e\x32\x9d\x83\x07\x76\x40\x57\x3b\xe0\xce\x19\xc0\xd4\x87\xeb\x3b\xf4\x1b\xc8\x38\x97\x18\x2f\x2e\xee\x07\x26\xfa\x02\x45\xd3\x81\xa9\x6e\x3c\xae\x1d\xb3\x80\xcc\x10\x60\x41\x5b\x20\x3d\x11\x58\xe6\x0f\x9c\x59\x03\x04\xe4\x01\x69\xc5\x40\xc8\x6d\x20\xed\x36\x10\xf5\x12\x48\xcb\x03\x8e\x5e\x00\x4e\xab\xf1\xbd\x7f\x31\x16\x9e\x8f\x04\xce\x74\x00\x6e\xef\xe4\xb6\x79\x21\x00\x62\x14\xff\x1d\xff\x97\xf1\x9f\x64\xfe\xef\x5f\x57\x97\xff\xf0\x8b\x07\xf0\x1b\xff\x41\xa6\xfb\xa1\x53\xc4\x7c\xb0\x06\xc9\xc0\x3f\xfe\x80\xa6\x00\x7c\x0e\x04\x34\xb5\x80\x77\x5a\x40\x23\x73\xe0\x45\x0c\xeb\x3d\xc8\x74\x0e\x2a\x53\x81\x76\x46\xc0\x2d\x67\xc0\xf0\x0a\x70\xd5\x08\xe8\x9d\xc7\x38\xcf\x20\x73\xa0\xe8\x3a\x30\xe6\x34\x90\x1b\x0b\x4c\xea\x08\x64\xeb\x02\xf6\x2b\x80\xf4\x06\xc0\xbc\x6c\x66\xdd\x2f\x7e\xc0\xf5\x0d\xc4\x13\x7c\xe2\x23\x60\x8b\x35\x90\xe4\x05\xec\x1a\x0b\xa4\x04\x33\x16\x7a\x32\x01\x38\x7d\x1b\x48\x36\x06\x8a\x0b\x81\x53\xba\xc0\x9d\xdb\x40\xea\x30\xe0\x55\x33\xf1\x74\xc2\x7d\x27\xc3\xff\x65\xe3\x5f\x36\xee\x7f\xe9\x20\x48\xfc\x87\x9d\x92\x0d\xfb\x2d\x3e\x10\xff\xe3\x08\xa0\xfe\xbc\x96\x07\x41\x78\x77\x4a\x2d\xef\xe1\x4d\x32\xa0\xf8\x07\xf0\x7c\x1d\xa0\xf6\xba\x96\xf7\x20\xc6\xaa\x16\x65\xc0\x55\x2d\xa0\xdd\x2d\xa0\x6c\x11\xd0\x73\x1b\xf3\xb6\xfa\xdc\x07\xf2\x33\xb9\x3e\x4c\x66\x2a\x60\x21\xf6\xe9\x77\x60\x7a\x6b\x20\x4d\x1e\x70\x6d\x0d\x24\x16\x03\x8b\xaa\x80\x24\x33\x90\xd2\xed\xb1\x2f\xc0\xe6\x62\xe0\x68\x39\x63\x9b\x62\x1b\x1c\x9c\x09\x1c\x5b\x03\xa4\x9d\x03\x8e\x1b\x01\xc5\x6e\xc0\xf1\x04\xe0\x56\x24\x70\x42\x13\x78\x79\x13\x38\x3e\x14\xf8\x3b\x91\xb9\x86\xbf\xfb\xff\xab\xdf\x43\xeb\xfa\x2d\xc3\xc3\x65\x75\x30\x84\x7a\xfc\x0f\x19\xde\xff\xbf\x78\x0f\x8a\x36\x40\x65\x43\x40\xf5\x27\x70\x33\x10\x68\xac\x0f\x5c\x2d\x00\x5a\x66\x03\x25\xaa\x40\xc7\x00\xf1\x94\x00\x18\xdb\x03\x39\x8f\x00\x33\x6b\x8e\x71\x63\x5b\x01\xa9\x2e\xc0\xe4\x97\x40\xa2\x1d\x30\x3b\x54\xc2\xfd\xc5\xd3\x4e\x28\xb0\xd2\x09\x38\xf2\x03\xd8\x14\x07\x1c\x5a\x0f\xec\x4c\x01\x8e\x44\x00\x87\x9f\x72\x0d\xa5\x53\x62\x9c\xaf\x06\x8a\x07\x02\x47\x6a\x38\x3e\xc4\xbb\x03\xaf\xf4\x81\xc3\x23\x81\x9f\xef\x6b\xc7\xff\x9e\x4e\x75\xf9\x1f\xbf\xfc\x96\xe2\xe5\x66\xe5\xba\xb8\xf8\xff\x97\xf7\x70\x93\xed\x2f\xde\xc3\xfb\xba\xbb\xa1\xab\xfa\x80\xf2\x60\xa0\x64\x09\xa0\xb3\x80\xf5\x5e\x5a\x5f\x07\xce\x99\x03\x5d\x1b\xb1\xe6\x51\xbf\x58\xe0\x54\x3c\x30\xbc\x92\xeb\x97\x58\x3e\x60\xff\xed\xf5\x79\xfc\xce\x2f\x66\x2e\xd4\x72\x63\x20\xf6\x3b\xaf\x1b\xb1\x1e\x40\x84\x2b\xb0\xff\x20\x70\x68\x27\x70\x20\x97\x63\xc1\x81\x29\xc0\xf9\x96\x40\xec\x4a\x71\x27\xc9\x5a\x53\xe2\xbe\x79\xbf\x25\x63\xd5\xb2\x3a\x28\x61\xd2\xfc\x08\x3e\x59\x97\xf7\xb1\xde\xfc\xdf\xf9\x00\xff\x31\x0e\xea\xd7\x3b\x91\xc6\xc1\x53\x53\xa9\x1d\x14\xd9\xca\x78\x0f\x97\xfb\xb1\x15\xd7\x32\xe5\x1f\x40\x9e\x2a\xa0\xdb\x85\xfd\x6f\xab\x09\xa4\x58\x03\x46\x5b\x81\xe3\x57\x00\xb3\x26\x1c\xf3\x26\x24\x00\x87\x32\x80\xe9\x7a\xec\x87\xab\x37\xd7\xf1\xf1\x9e\x0d\xec\x9b\x08\xac\x57\x05\xf6\xda\x01\xe1\xa9\x40\x94\x37\xf3\x28\xf7\xe6\x71\x2c\xdc\x13\xcc\xbf\xb5\x47\x1b\xb8\x7d\x80\x6b\xb0\x55\x7f\x07\x76\x8f\x60\x8e\xa7\x8c\xf7\x23\xe3\x7f\xc8\xfc\x96\xf1\x3e\xea\xf3\x1f\x64\xf6\x57\xbd\x0f\x23\xb6\xf5\x75\x3f\x9e\x4b\xe3\xe1\x5e\x28\xdb\xff\xd0\xbd\x98\xc5\x36\x5f\x3a\x4d\x67\x6a\x01\x6a\x3f\x99\xe7\xd4\xd4\x98\x39\x1c\x1d\x0b\x81\xa3\xba\x40\x9f\xce\xc0\xc1\x01\xc0\xc8\x0c\x20\xfa\x25\x30\xd9\x06\x88\xca\x07\x9c\x7d\x81\xdd\xc3\x81\x25\x7e\xcc\xa5\x5d\x57\x05\xec\x5c\x00\x84\x45\x01\xe1\xf1\xcc\x7d\x09\xdb\xce\xf3\x22\xcc\x9b\xc7\x43\xa8\xbe\x78\xc2\x00\xc2\xda\x02\x35\x9a\xc0\xb6\x7b\xac\xf1\x25\x1b\xef\xb2\xfe\xae\xef\xf7\xe2\x9a\xba\xfc\x07\x99\x95\xf1\x1e\x7e\xe9\xdf\x48\x7c\x87\x17\xd2\xad\xc2\x5f\xfc\x17\xa9\xfe\xcb\x55\xa9\x1e\xce\x65\x89\x1f\x51\x28\xd5\xcb\xc8\x92\xbe\x27\x55\xaa\x3e\x7c\x42\x19\x68\x90\xc4\x1a\x2f\x62\xdc\x88\xed\x01\x74\x5f\xce\x1a\x59\x83\x2b\x00\xf1\xac\x68\xf9\x09\x88\xf0\x02\x66\x6f\x01\x42\xdb\x02\x8b\x9e\x01\xdb\x0d\x01\xff\x0b\x40\x88\x37\x10\x3a\x17\x08\xb6\x04\x62\x6f\x03\x41\x16\xc0\xa9\x21\x1c\x43\x8b\x2a\x81\x4d\x5f\xb8\xc6\xe0\xc6\xb3\xc0\xab\x9a\xda\x79\x2e\x1b\xe7\x32\xbf\xbd\x3c\xea\xfa\xbb\x60\x3b\xdb\xb9\x92\x7e\x94\x8b\xc4\x13\xfa\x55\xf7\xc6\x93\xed\xeb\x4d\xf5\xfc\xbf\x2e\xcd\x03\x69\x9c\x94\x49\xf3\xa3\x68\x03\xdb\x73\x3f\xd8\x9e\x91\xda\x4f\x76\x0b\xed\x50\x7b\x5e\x6f\xc4\x71\xaf\xad\xcf\xe3\xbb\xc3\x48\x20\xc2\x06\xe8\x93\x05\x84\xae\x06\xc6\x36\x06\xb6\xee\x05\xa6\xff\x04\xb6\x54\x03\x0b\xab\x80\x4d\xad\x01\x5f\x33\x60\xbd\x1b\xb0\xfd\x05\xb0\xae\x2d\x70\xe0\x29\xe0\x77\x01\x48\x6d\x03\xac\x5d\x0b\x14\x1c\x06\x7c\xd2\x80\x1b\xdb\x81\x35\x2d\x81\x17\xda\xc0\xaa\x4c\xe0\x47\x33\x60\xa9\xc4\x9f\xf6\x90\xc6\xc3\x7c\xdd\xba\xfe\xce\x96\xf6\x97\x0e\x52\xbd\xb5\x19\xd2\xde\x49\x56\xf7\xe7\xcd\xa2\xba\xfe\xdf\x95\x6e\x17\xde\x90\xec\x2f\xfe\x43\x73\xb6\x7c\xca\x06\xce\x48\x71\x33\x59\xfa\xfb\xa3\xd2\x3c\xd9\x9f\xc0\x76\x57\x5b\x40\x79\x13\x10\x3a\x47\x7e\x51\x8b\x19\x40\xf0\x71\xa5\xa2\x1e\x06\xc0\xc6\x3d\xaa\x3d\x87\x05\x01\x01\x59\xea\x2d\xa7\xe4\x00\x6b\xf3\x35\xd4\xe7\x85\x00\xab\x3d\x35\xb6\xae\x6e\x01\xac\x98\xa4\x71\x66\xab\x02\xe0\xfd\x5e\xc3\x33\xda\x1f\x58\xb2\x4d\xbd\x32\x69\x1e\xe0\x55\xaa\x3e\x35\xf7\x22\xe0\x69\xa5\xe6\x73\x75\x0a\xe0\x71\x5a\xf5\xf1\x93\x13\x80\xbb\x8f\x6a\xc8\xd7\x23\xc0\xfc\xae\x2a\xa4\xdb\xee\xf4\x55\x49\x53\xb4\xf6\x36\x0a\x87\x44\x6b\x27\xb5\xcf\x54\x69\x5c\xd8\x48\xe7\x10\x6b\x69\x2f\x2d\xe3\x7f\xc8\xf8\x3f\x32\xff\xeb\xf3\x7f\xce\x4b\xb7\x47\x72\xae\xca\x11\xaa\x72\xa6\x4a\x99\x4e\xc3\x49\x21\x5c\x27\xe7\x48\x8d\x16\xe5\x67\xf6\x39\x68\x53\xa4\xdd\xe9\xab\x4d\x33\x66\x4b\x7a\x63\xaa\x87\xb0\x6e\x5f\xd3\x66\x3a\xc6\x80\x4f\x96\xde\xa0\x4e\x0f\x81\xe5\x9f\x5a\x0c\x1f\x38\x45\x6e\xdd\x12\xad\x16\x85\x16\x5f\xe4\x1d\x3d\x1c\x5a\x1a\x39\x56\x2a\x0c\x77\x7b\xd1\xe2\xc5\xd2\x1c\x85\xb3\x73\xc3\x5a\xec\xdd\xd8\x57\xb1\xa1\xcb\x5f\x2d\x46\xed\x36\x50\xec\xeb\x94\xa5\x57\x96\x10\xad\xf0\x75\xf6\x13\xbd\xf5\x59\x7d\x15\x4e\x38\xdc\xd2\x1b\x54\xa6\x22\xff\xd2\xc1\x54\x6f\xdc\xc3\xb9\x72\x33\xec\x63\xf5\xfe\xf9\x68\x0e\xdd\x19\x13\x9a\x93\x0e\xef\x94\xd7\xba\xa4\x87\x62\xad\xaa\xd3\x4a\xb4\x13\x3f\x68\x2e\x13\xed\xb8\x73\x0d\x48\xe7\x7f\xec\x3b\x75\xe2\xc7\x8c\xee\xa3\xb2\x41\xb4\xf5\xf9\x3f\xf5\xfd\x2f\x9a\x2a\x47\xd9\x81\x2c\x2d\xe6\x05\xa4\x5e\x69\x4c\x79\xa5\xe3\x13\x9a\x51\xbe\x3f\xae\x8a\xeb\xa6\x44\x45\xb4\xa1\x91\x12\xaa\xdf\x81\xb2\xef\x9b\xd2\x58\x47\xc0\xc7\xa3\x33\xfd\xdd\x52\xa5\x2e\x85\xaa\xa9\x62\xbf\x19\xb6\x6a\xdd\x57\xee\x8b\x6b\x54\xd7\x62\x13\x13\xa5\x2e\x8e\xaa\x86\x36\xa3\x3a\x2a\x1f\x98\x19\x63\xd8\x6e\xba\x8e\xaa\x9a\x6d\x75\xd7\x2d\xee\xf2\x6a\xfa\x93\x17\x77\x39\xe7\xd7\x46\xbd\xa9\xb5\x61\x97\x96\xa1\xc9\xea\xf7\x2d\x0e\x76\x6e\x72\x30\x48\xa3\xcb\x84\x2d\x9d\x56\x9c\xee\xa8\x31\x75\xdc\xcb\x8e\xbb\x2e\x98\xa9\x0b\x63\xbf\x74\xec\x7d\xd7\x41\x7d\xfd\x58\x93\x0e\x97\xde\x54\xa9\xb9\x8f\xc9\xed\x90\x2b\x08\x2a\xcf\x47\x1a\xb5\x73\x16\x04\x65\x77\x19\xcf\x63\x70\x9f\xd6\xae\x82\xa0\x10\x35\x70\x4d\xab\x58\x41\x50\xd0\x1d\x10\xd4\x32\x5a\x10\xe4\x03\x07\xa8\xb7\xf0\x16\x04\xb9\xfc\x5f\x71\x20\xa0\x9e\xff\x36\xcc\xfb\xc9\xac\xe1\x3a\x48\x29\xfb\xf4\x29\xdf\x7a\xb4\xbc\x23\xe5\x1b\xf7\x07\x18\x7e\xa5\x71\xdf\xdf\x98\xb2\x48\xdb\x1d\x8d\x69\x85\xdd\x68\xc6\x3c\x09\x9f\xa5\x7d\x08\x5d\xf1\x2a\xee\x4f\xf9\x1a\x97\xf9\x03\x28\x12\xd9\x9b\x98\x69\x35\xb1\x03\xa6\xfa\x0f\xea\xdd\xb5\x9d\x62\xaa\xe5\xe2\x81\x33\xcd\xf2\x54\x83\xc6\xf5\x1b\xa8\x34\xc9\x4d\xdd\x6b\x64\xdf\x01\x0d\xe7\x7c\xd6\x78\x63\x7e\xaf\xff\xb4\x95\x3e\x0d\x1d\x07\x7d\xee\xb7\x2f\x78\x8f\xe6\xc6\x01\x4d\xfb\xba\x46\xff\xa9\xd5\xa1\xaf\x4f\x1f\xdb\x93\x7f\x6a\xcd\xec\x2d\xf4\x6e\x52\xd0\x55\xab\x5d\xaf\x3f\x7a\xf9\xde\xd8\xa0\x79\xb8\xd7\xda\x5e\x83\x5e\xac\x6d\x98\xda\xeb\x48\xaf\xd9\x3f\x9e\x6a\x3c\x31\xc9\x37\xde\x21\x08\xea\xe8\x79\xc8\x68\xb2\x20\xa8\x2e\xee\xee\xd9\xad\xa5\x20\xa8\x0c\x32\xbc\xd9\xe5\xbe\x20\x28\x4f\x30\xec\xde\x79\xb5\x20\x28\x5d\xe8\xfc\xae\x43\x8d\x20\x28\x9e\xbf\xed\xcb\x3c\x90\xb2\x40\x15\x42\x55\xf3\x1f\xea\xd0\x0c\x49\x3f\xd3\x8a\xfa\x33\xa5\xa2\x23\xf3\xbe\x8e\x74\xa7\x6c\xe7\x7e\x81\xf1\x71\x19\xff\x65\xbb\xfe\x00\x1a\x41\x1b\x56\x0e\x21\x9c\x6b\x6d\xe3\xe1\x84\x53\x2d\x76\x19\x4d\xb8\xbf\x6b\x21\x67\x95\xa6\x2d\x1d\x47\x3a\xf7\x13\xfb\x4f\x54\xd4\x08\x06\x46\x2d\x9f\xa8\xd0\xf6\xbe\xfc\xad\xc1\x1f\x27\xf4\xef\xe3\xa1\xa2\xd6\xef\xe5\xf8\x33\xe3\x93\xd5\x5a\xf6\x72\x1a\x6f\x33\x7b\x8c\xba\x4a\xcf\xb0\x71\x21\x4b\x77\xab\xa7\x76\xd7\x1b\xd7\x62\x93\x93\x86\x62\xd7\x1b\x63\xbe\x47\xf9\x6a\x0c\xe9\x7c\x6f\x8c\xf1\x89\x57\x1a\x9d\x3b\x75\x1a\x3d\x3c\xb7\x8b\x7a\x72\xc7\x2e\xa3\x66\x5e\x5d\xac\xde\xba\x83\xf5\xc8\xbb\x4f\xb7\xab\xb5\xee\xd0\x71\x64\xd6\xb7\x57\x2a\x37\xdb\x1f\x1c\xd6\x4d\x10\x94\x0f\x1b\xac\x1a\xec\x27\x08\x4a\x4e\x06\x5e\x03\xfa\x0a\x82\x92\x62\x9b\x0f\x7d\x2d\x04\x41\xb1\x8f\xfe\xf6\xde\x13\x04\x41\x61\xb3\x7e\x8a\x49\x81\x20\x28\x2c\xba\x9c\xcc\xb7\xc4\x0a\x8c\x9b\x13\x8e\xf5\x8b\xff\xa3\x6d\x48\xd9\xc1\x23\x66\xfd\x18\xff\xae\x18\x48\x7c\xa0\x5d\x03\x87\x11\xcf\x61\xdb\xc1\x51\x94\x6d\xdf\xd0\x62\x1c\xb5\xcb\x1a\x2b\x0b\x8a\x34\x4b\x2c\xad\xa5\xfa\xd6\x93\xa8\xff\xa7\xaf\xb2\xa5\x9d\xc9\xc4\x71\x76\x84\xb6\x0d\x9c\x30\xe3\x01\x2e\x03\x7d\x5a\xce\x4c\xd5\x33\x00\xba\xc7\xcd\xd8\xd0\xa3\xb5\xe2\xa5\xce\xe9\x33\x96\x8c\x8c\x57\x72\x69\x7f\x6c\x86\xf3\x8c\x0e\x4a\xa7\xda\x6e\x9e\xfe\xc4\x53\x5f\xa9\xa4\xf5\x8d\xe9\x23\x02\xb7\x2a\xad\x6e\x59\x6a\x77\x77\x57\x53\xc5\x67\x2d\x5c\xec\x2c\x8e\x29\x28\x36\xd3\x3b\x34\xed\x56\x76\xa1\xc2\x48\xbd\x89\xd3\xda\x56\x0c\x93\x2b\xd0\x73\xb2\xfd\xfc\xb8\x2f\xd0\x7c\xec\xd4\x0b\x5f\xac\x80\x26\x7f\xda\xd0\x3d\xde\xc6\x27\x2d\xe8\x5e\x9a\xb6\xe7\x38\x07\xd1\x36\xaa\x1e\xdd\x5d\xb4\x5a\x41\xc3\x73\xe9\xf5\xa6\xa1\x1b\x45\x2b\xe3\x3f\xc9\xf4\x7f\x4e\xa6\xf5\xa1\xbc\xe1\xd1\x09\x52\xfd\x27\x49\xff\x26\xe2\x06\xa3\x8e\xdb\x35\x2d\x48\x3f\x68\x43\xe1\x24\x9e\xff\x7a\xb6\x74\x02\xf1\xa6\xaa\xc4\x80\xdb\xe8\x59\x74\x3b\x7b\xd6\x05\x07\x42\x21\xac\x2f\x38\x12\xfa\x30\xbc\xe3\x1c\x42\x19\x7a\x04\xcd\xa3\xfb\x80\x06\x51\x6e\xe3\x35\xd7\x03\x2d\x9f\xcd\x2f\xeb\xd4\x57\x6e\x96\x5e\x2b\xb7\x65\x43\x6a\x80\x26\xf3\xdc\xb6\x4e\x75\x00\x74\x5a\xbb\x8d\x5d\x70\x02\xd0\x5a\x3c\x7f\xb9\x9f\x0b\xd0\xe0\xe1\xbc\x94\xf0\x19\x80\x86\xe6\xdc\xd2\xc3\x95\x80\xda\x4c\xd7\xa7\xe9\x2b\x00\xd5\x39\x73\xce\x5f\xea\x00\xa8\x8c\x76\xc9\xbf\xff\x0d\x50\x56\x77\x2e\x17\x07\x9e\x52\x53\x47\xd2\x85\x52\xb0\x98\xf1\x53\xb4\x72\x9b\x6d\xfb\x91\xcd\x9a\x4c\xf1\x53\x4e\xc5\x2a\x52\xa0\x98\x60\xe1\x26\xda\xcc\xe2\x1e\xe4\x47\x72\xf1\x00\xca\x5a\x26\x2c\x1b\x3a\x8d\xd7\xbd\x31\x94\x35\xdd\x35\x9b\xfd\x0e\x99\x3c\x39\x9b\xfd\x9f\x46\x9f\xf3\x69\x35\x93\xc6\xcb\xb2\x71\x8e\xa4\xde\xe0\xa6\xef\x42\xe3\xc6\x31\xc5\x95\xda\x63\x6a\xcf\xf9\x74\xcb\x74\xac\xdb\x42\x1a\x47\xfd\x42\x17\x51\x7b\x74\x68\x42\xd7\x02\xa1\xa5\xb6\x5c\x5f\x41\x0d\x50\xef\xbf\x5c\xaf\x55\x38\xa0\xdc\x73\x79\x9f\x3e\xd3\x00\xf9\x65\xcb\xfe\xb0\xa0\x9b\x94\xcb\xca\x5d\x28\xff\xbc\xac\xf1\x2a\xc2\xff\xbd\x87\x6f\x23\x4a\xca\xd2\x35\xb1\xf4\xfe\x92\x7d\x69\xb4\x32\x2d\x1e\x72\x9e\x98\x8c\x9e\xaf\x2a\x19\x81\x9c\xf2\x86\x66\xb2\xbb\x74\x7f\x79\xae\x03\x5b\xe7\x2d\x6c\xed\x25\xdd\x87\x59\x8d\xd9\xda\x39\x89\x36\xa5\x62\x70\x3b\xee\x7f\xd6\x39\xda\xff\xcf\x44\x9a\x17\x91\x55\x93\x69\x87\xb0\xad\x66\x06\xe5\xf3\x37\x5e\x99\x45\xfa\x30\x6b\xf5\x59\xff\x66\x69\xbc\x2b\x3d\xc5\xc2\x86\xf3\x69\x1e\x38\x1d\x5e\x48\x78\xe8\xb4\x4f\x1e\xd4\x0e\x16\x79\x4b\x08\xd7\x1f\x0a\xc6\xcd\x8d\x3d\x56\xd2\xdf\xb5\x7a\xb3\x86\x7e\x47\x51\x3b\xa0\x27\x47\xe4\x00\xa3\x66\xf3\x41\xc8\xba\x09\x8d\x40\xbf\x80\xf1\x14\xb1\xfc\x12\x9c\xc8\x1f\xbf\x32\x66\xd2\xf8\x9e\x09\xa2\x7b\xeb\xbe\x96\x31\xc4\xcc\x5a\xbb\x2f\xb9\x9a\x57\xa4\x22\xc2\x2b\x56\x47\xdc\xa4\x0a\x25\xab\x82\x5f\x50\xbb\xac\xd2\xf9\x41\x91\x69\xe9\x79\xf6\xd7\xe3\x18\xdb\x05\x12\xde\xeb\xca\xf5\x62\xe0\x42\x36\x61\xf9\x04\xe2\xad\xc4\xaa\x4d\xa6\x1d\xe2\xae\xcb\xd3\x08\x8f\xd8\x31\xde\x9e\xe6\xf5\xa6\x9e\xce\x34\xce\xd7\x6a\xcd\x23\x7c\x6b\x79\xd5\x42\xda\x59\x2e\x32\x58\x44\xe8\x81\xab\xc2\x62\x7a\xda\x99\x89\x4b\xa9\xdf\x27\x7d\x63\x5d\x98\xd1\x03\xb8\x8e\xcc\x40\x5d\x5f\xd2\x53\xea\x6a\xb4\x8e\x4e\x2c\x4d\xfc\x36\x48\x3b\xf2\x2d\xd2\x4e\x36\xe8\x0b\xe3\xbc\x41\xf2\xc6\x64\xb7\x2c\x1f\xab\xcb\xff\xce\x15\xa9\xb6\xac\x59\x4a\x88\xd1\x16\x7d\x56\x56\xd9\x14\xc7\xf7\xfd\x37\x3e\x38\x41\x67\xa3\x8d\x66\xb9\xe4\xcf\xfa\x70\xd6\xba\x0b\xac\x7e\x4a\xf8\xd7\xba\xa4\x2f\x84\x9c\xc9\xf8\x1f\x32\x5d\x94\x65\x1b\xd9\x2e\xe9\xc2\xd6\x53\x4d\xb4\x71\xdd\x27\xff\xe0\xfe\xe7\x7a\x58\xdb\xaa\x18\x66\xd9\xec\xcc\xfa\x20\xfe\xb6\x0b\x13\xd8\x7f\x4f\x62\x61\x2c\x32\x5b\x4c\x3b\xed\x79\xee\xcb\xa9\x1d\x66\xdb\xac\xa2\xfd\x84\xed\x7b\xd6\x4f\x98\x48\xb7\xef\xc4\x71\xc0\xb8\xb1\xc9\xab\x8d\xd4\x1e\xed\x6e\x05\x13\xbf\x44\x4b\x37\x44\xc2\x71\xc2\xa5\x15\x3b\x7c\x7f\x73\xe6\xc1\xfc\xec\x49\xca\xe7\x61\xfe\x3c\x32\xc3\x8a\x67\x52\xbb\x84\x45\x7b\x11\x03\x21\x4c\x71\x3d\x31\x1a\x43\x97\xb2\xe2\xc4\x0e\xad\x04\x3a\x13\x6f\x4f\xc8\xa2\x91\x17\x92\x52\x46\xbf\x1c\xb2\xe3\x11\xf1\x63\xb6\xfa\x72\x1d\x8c\x20\x79\xae\x77\x20\xd3\x45\xf1\x97\xea\xd9\xaf\xf5\xfc\xbd\x7d\xa2\xcc\x98\xef\x26\xd3\x01\xda\xb2\x73\x01\xe1\x2f\x81\x61\x9e\x84\xef\xfa\x28\x7b\xd3\xac\xf4\x06\xd7\x8d\x59\x90\xbf\x86\x98\xa7\xce\xed\xfc\xa8\xb7\x66\xb8\x07\x10\xee\x69\xed\xba\x9e\xc7\x81\xfa\x26\xd2\xd1\x1a\x74\x84\x79\x21\x3d\xc3\x58\x47\x41\xbf\x2d\xeb\x48\xa8\xe5\xcb\xf8\x30\xfb\xa4\x93\xfe\xde\xc1\x3c\x1e\xf6\x66\x1b\xd1\x8a\xb3\x77\xed\x48\x42\xd8\xa2\xbc\xed\xa8\x7f\xa3\x22\xdc\x09\x51\xde\xb3\x84\x99\x37\x7b\x82\xc3\x09\xa7\xdc\x53\x78\x84\x56\xe2\xdd\xdb\xce\x52\xe4\xd9\x35\xb0\x44\x8d\x7b\xb4\x72\x1d\xdb\x1a\x9a\xe1\x11\x6a\x42\x1d\x5d\x94\x60\x69\x7c\x6c\xce\x61\xbb\x7e\x27\xe7\x6b\x98\xd7\x17\xbc\xdb\x83\x66\xe5\xba\x2a\xae\x13\xe4\x73\x81\x51\x55\xef\x94\xd5\xc4\x17\xf2\x70\xf6\xeb\x24\xda\x39\x9f\xb8\x1e\x96\x4c\x0f\x67\x0a\x36\x53\x7c\x98\x60\x13\x4c\xfb\x89\x61\x83\xb7\xd3\xce\xb4\xaf\x31\xf7\x77\x57\xfd\x5d\xd4\x7e\x7a\x3a\xac\x17\xa2\xb4\x39\x5a\xca\x68\xc8\xf8\x30\x71\x9b\x9b\xd1\x3c\x3f\x18\x66\x44\xfd\x18\x77\x9f\x57\xa8\xb8\xcd\xb6\x92\x75\x5b\xc1\x96\x95\x97\xe2\xaa\x42\x69\x26\xc6\xf6\x60\xa5\x95\x58\xfb\x53\x84\x57\x1d\xd8\x52\x4c\x3b\xfc\xfd\x41\xb7\x69\xfc\xc4\x2c\x7c\x41\x8c\xaf\xe8\x8a\xef\xb4\x62\x47\x49\xfd\x1f\x29\xd5\x7f\x08\x13\xd8\x86\x04\x52\xbe\x6a\xe4\x62\x3a\x61\x6e\x48\x5b\x46\x3c\x30\x7f\x42\x13\x80\x15\x61\x7e\xd4\x1e\x9e\x61\x3c\xbe\xe7\x25\x4a\x7a\x38\xef\xb7\x12\x1f\xc0\xee\xf1\x56\xda\x47\x4c\x8a\xe6\x7e\x1e\xe3\xce\xec\x8c\x41\x6b\x76\xd1\xec\x36\xa9\xd8\x43\xed\xd4\xc1\x29\x9a\xe6\x91\xee\x81\x58\xfa\xbc\x42\x38\xe3\xa7\xb5\x7c\x98\xe3\x8a\xcd\x98\xff\x12\xdd\x9d\xc6\xf5\xb1\x3b\xc3\x98\x07\x13\x3d\x95\x66\x5a\x82\xef\x5c\xe2\x0b\x1d\x6b\xbb\x3a\x84\x6d\x08\x31\x75\x8f\xf5\x8d\x21\x65\x95\xa3\xfb\x4f\x12\xf3\x20\x41\xbf\x90\xce\xc2\xf1\x9d\xaf\x51\x64\x8b\xcf\x78\x4e\x2b\xc0\x11\xbd\x4f\x84\x13\x1f\x92\xf8\x1f\x32\x5e\xcc\x3e\x49\x27\x66\x37\xf1\x00\x36\xa5\xad\x64\x3d\x2c\xa9\x1e\x98\x4f\x27\xd6\x7b\x5a\xfc\x75\x13\xeb\x5f\x7c\x08\xa6\xf9\x32\xe7\xe9\x36\x42\x17\x67\xe4\xec\xa0\xd6\x9e\x3a\x2e\x82\xf6\x51\x16\x93\x77\x53\x2f\x0c\xeb\xc1\xfc\xa7\xfe\x9f\x98\x07\xd4\xa3\x8a\x59\x1a\x06\xce\x07\xc9\x6f\x9d\x96\xf1\x79\xec\x77\x92\xb4\x73\x4f\xbd\x0e\x1a\xbf\xa9\x5f\x9a\x52\x9d\x93\x54\x8b\x6e\x34\x8f\x53\xbb\x0d\xa1\x95\x39\xc5\x9a\xf9\x0f\xa9\x7a\xbc\x12\xa7\xca\xad\xa4\x91\x99\x5c\xc9\x0c\x9d\xd4\xce\xfb\x08\x07\x4d\xf6\x38\x41\xfe\x26\xd5\x9c\xa3\x08\x94\x64\x5f\x46\x38\x66\x92\xd9\xc3\x19\xfc\x7b\x1f\x88\xe1\x7d\x42\xe2\x81\x1c\xad\xe6\x78\x51\x97\x17\x13\xe0\xe6\x4f\xe7\xa5\x35\xfb\x99\xdf\xb7\x4c\x9f\xe3\xb8\x8c\x07\x24\xab\x8b\x35\x3b\x96\x79\x21\x76\xd3\xf7\x10\xbb\xc2\xda\x81\xf9\x30\xe3\x26\xc5\x50\xe6\x65\x68\x65\x1c\xcd\xd2\x3e\x89\x87\x28\x9e\x1a\xfa\x33\x2f\x44\xdf\xf2\x04\xc5\x19\xad\xe2\xe4\x46\xec\x7f\x9a\x74\x32\xcf\xfc\x00\xda\xa1\x64\x46\x34\xe1\x93\x5c\xc7\xae\x12\xef\x65\x30\xcd\x83\x8c\x61\xd6\xd4\xb2\x19\x87\x98\xb1\x9a\xf1\x65\x19\x55\x9c\xc9\x2c\xde\x44\x4c\xcf\xf4\x73\x5c\x4f\x2b\xe3\xfb\x71\x8a\xd8\x19\xda\xac\x4c\x70\x36\xec\x12\xfd\xe2\x99\xaa\x3f\xe8\xf5\x69\xbf\xd7\xd4\xf2\x67\x02\xfe\xa6\x13\x51\x4a\x81\x40\x0a\x92\x89\x52\x1d\x8c\x63\x54\x07\x62\xed\x86\x4d\x74\xf3\x60\x85\xe3\x56\xda\xff\xfd\x37\x1e\x90\xbd\xe7\x3e\xe2\x35\xd8\x6e\x3c\x40\x6a\x23\x96\xc6\xdc\xdf\xa3\x76\x1c\x26\x16\x97\x4c\x17\xc7\x34\xf9\x04\x65\x22\x3a\x0f\x3f\x49\xe3\xa7\xc5\x5b\x56\xa9\x68\x30\xec\x8c\x34\x0e\x64\x7c\xa0\xdc\x97\x7c\x83\x25\xdf\xad\x09\xcd\xc8\x82\xc6\x9d\x69\x5d\xcc\x4b\x34\xa3\xad\x56\xde\x6c\x0b\x8a\x17\xf9\xb7\x67\xd3\x8a\x93\x9f\xb3\x84\xe2\x48\x7e\xe6\x7a\xaa\x07\x93\xef\x15\x49\x8a\x35\x79\x73\x8f\x50\x5c\xcd\xfd\x74\x96\x3e\x9f\x97\xcc\x4a\x0c\x39\xd1\xb7\x69\xfe\xe4\x8c\x7a\x49\xbc\xca\xec\xfd\x5f\x69\xfe\x64\x4a\xeb\xc5\xd9\x30\xc6\xfd\x53\xa9\x3e\xce\xea\xad\xcc\x6b\x5c\xf2\x17\xcf\xef\x5f\x3c\xa0\xd8\xbd\x54\x47\xca\xb1\xfd\x7e\x3a\x77\xcd\xc8\x3b\x48\xbd\x62\xb3\x2d\x9e\x32\x76\xe3\xbf\x30\xef\x6b\x44\x58\x12\x45\xad\x81\x3d\x4e\xd2\xf8\xe8\xa9\xc1\x7e\x77\x2a\x63\xbf\x9b\x7f\xce\xa0\x79\xa6\x11\x74\xae\x29\xfb\x2f\xab\x17\x75\x61\x22\x8f\x87\x92\xe5\x3a\xf4\x97\x17\x5b\x76\xa6\x9d\xfb\x45\x0f\xae\xec\x7a\xd1\x63\x02\xcd\x8b\x0b\x59\xb3\x68\x47\x5e\xe2\xe8\xb5\x93\xdf\x0f\xa0\xf8\x78\xb1\x78\xa7\x2e\xdb\xc3\xc4\xe8\xb9\xb8\x28\x8d\x76\x3a\xe7\x3d\x8b\xe8\x09\x8b\xcf\x5f\x27\x1d\xaa\xa2\x39\x55\x34\x5f\x8a\x0b\x3e\xd2\x88\x2e\x7c\x2d\x90\xae\x48\x9e\x92\x40\x71\x83\xf9\x42\xcb\x36\xd6\xe5\x01\xb9\x6d\xd8\x4f\x51\x46\xc6\x03\x9a\xe5\x70\x84\xe2\xa3\x6d\x15\xf7\xb7\x55\xd6\x09\xea\x85\xb1\x01\xc9\x94\x8f\x19\x0a\xd6\x49\xe9\x7b\xf2\x34\xad\xb7\x46\x85\x99\x34\x9a\x3b\x84\x67\x93\x57\xcd\x77\xe7\x53\xd4\x53\xfd\x5a\xb4\x84\xfd\x2f\x49\x63\x5b\x21\x65\xf8\x2a\x82\xb4\x29\x42\x95\x57\x71\xc6\xa2\xac\xba\xdf\x53\xfe\xf7\x71\x94\x2b\xac\xf8\x8b\xf9\x0f\x57\xe0\x4e\x23\xb7\xec\xe6\x5a\xda\x7f\x56\xa8\x87\x52\x4f\x94\x27\xed\xa7\xf9\x5e\xde\x3d\x85\x76\x68\xe5\xa1\xf9\x94\x5b\x2e\x37\xbe\x4a\x4c\xf8\xf2\xa5\x55\xd4\x13\x97\x84\x1a\xbe\x59\x62\xf9\x83\xc6\xdb\xc5\x2b\x3c\x2e\xb8\x7e\x92\x57\xf5\x3e\xda\xad\xb9\xfb\x72\xfd\xbb\xb9\x6f\x0f\xd3\xfe\xd8\xe1\xe7\x51\x8a\x7f\xd3\x0b\x4f\xb0\x6e\xa0\x54\x1f\x6b\xe2\xfe\x53\x34\x0f\x46\x15\x72\x7f\x0f\xca\xce\xa0\x75\xa1\xf7\x96\x2c\x9a\xd5\xdd\xf3\xf2\xe8\x57\x0c\x9e\x16\xd2\xac\x6d\xa2\x7c\x81\x76\x3b\x6a\x0f\x2e\x49\x19\x4e\x19\x1f\x48\x96\xf9\xbf\x95\xd4\x88\xc6\xf3\x2d\xe3\x76\x14\x91\x6e\xde\xee\x43\xcf\x7d\x33\x73\xcc\x68\x7e\x7f\x5a\x32\x5b\xe6\xcd\xdd\x32\x5e\x43\xfd\x7c\xab\x2a\x84\xda\xed\xd6\xd6\x18\x9a\x2f\x37\x1f\x25\x52\xfb\xdd\xbc\x99\x4b\x19\x91\xeb\x1f\xb8\x72\xcd\x0d\xfb\x7b\x74\x42\xba\x1e\x5f\x4d\x2b\xf8\xd5\x0a\xae\x13\x53\x5e\xc5\x3c\xa1\xb2\x0b\x32\x3c\x4b\xc6\xff\x30\x7c\x5a\xcb\x83\xf8\xbb\x0a\xe8\x92\x06\x7c\x8c\xe7\xd7\x35\x1b\x01\xc3\xf1\x40\x75\x77\x71\x6f\xf4\x1b\xde\x7f\x00\xe8\xbf\xbb\x56\xd7\xff\x8a\x07\xdf\x57\x95\xd5\xb1\x2f\x79\x03\x4c\xb9\x56\xab\xe7\x9e\xff\x4e\xdc\x83\x00\xd9\x6f\x01\x77\x4f\xc6\xa9\x57\xcc\x04\xb2\x86\x03\xeb\x8c\x81\xac\x30\x20\xc4\x99\xef\xbd\x46\x56\x01\x99\x97\x80\x83\x4f\x6a\xef\xbb\x67\xc5\x00\x39\x6d\x81\xac\x3c\xe0\xd2\x0c\x20\x4b\x8b\xef\x92\x9e\x2b\x02\x5e\xbe\xad\xad\x03\x92\xee\x58\x8f\xff\x90\x5f\x0f\xff\x97\xf4\x0f\x64\xf7\xc0\x7f\xe7\x7d\x90\xde\xc5\x4f\xa0\x43\x23\xe6\x7f\xb4\x8d\xab\xe5\x3d\xbc\x1d\x2e\x9e\x11\x80\x97\x56\x40\x77\x05\xe0\x91\xd8\x1e\x3d\x81\xca\x1f\x80\xa9\x3f\x70\x4b\x13\x18\x70\xa1\xb6\x1d\x2e\x69\x03\x63\x0f\x70\x7d\x0a\x1b\x25\xe6\x73\x4c\x6f\x02\x88\x7d\xe5\x1c\xc4\x78\xbd\x78\x52\x39\x73\x17\x58\xfa\x09\x38\xed\x04\xf8\xfa\x01\x69\xff\x00\x5b\x46\x30\x66\x13\xe1\x07\x9c\xf9\x06\xc4\x7d\x02\xce\xae\xe4\x76\x38\x3b\x93\xef\xf5\x66\x64\x02\x97\xdf\x03\x99\xeb\x80\x7b\xd1\x1c\x7d\xab\x53\x6a\xeb\x80\x9c\x92\xf0\xcc\xa4\xa0\x7a\xf8\xbf\x84\xff\xc6\x8d\xad\xc7\x7f\x38\x0a\xb4\x4b\xaf\xe5\x7d\x88\x31\xb4\xd5\x00\xe0\xfb\x62\xd6\x79\x78\xa7\x0e\xb4\xdd\x09\xbc\x5e\x09\x18\x6c\x02\x9e\x99\x03\x9d\x97\xb3\x26\x49\xd7\x3c\xe0\xee\x26\xa0\xa7\x27\x70\xd3\x8d\xeb\xe5\x94\xd7\x30\x3e\x51\xba\x86\xef\xf9\x17\x35\x02\x2c\xe4\x80\x3c\x1d\xc0\xf6\x13\x90\x73\x05\x70\xf2\x03\xce\x5a\x03\x6e\x6d\x19\xc3\x5e\x1a\x2f\xee\x22\x98\x1f\x94\x6a\xc6\x9a\xe4\x29\xad\x80\x9d\x72\xc0\x29\x1b\x20\xae\x17\xe3\xd9\x49\x35\x8c\xe5\x88\x63\xe8\x4c\x10\x50\xe6\xce\xaf\xef\x16\x00\x67\x1b\x01\xd5\xb3\xb9\xfd\xfe\xce\xab\xe5\x01\xd5\xf7\xff\xff\xc2\x7f\x10\xed\xcf\xd6\x8c\x43\xc9\x78\x0f\x1f\xf6\x01\xcd\x55\x78\x1c\xb4\x28\x06\xaa\xec\x81\x36\x6d\x98\x07\xd5\xbe\x3f\xe3\x9c\xdd\xac\x80\x1b\xd7\x01\x93\xc3\xc0\xe5\xd1\xc0\x80\x49\xc0\x85\x1e\xc0\xb0\x7f\x80\x7c\x39\x60\xfc\x55\x20\xf7\x28\x30\x55\x07\xc8\x08\x01\xc4\x13\x4d\x9a\x2e\x30\xd7\x8c\xef\xfb\x7a\x15\xf3\x7d\xef\xd5\x43\x81\x44\x0b\xf1\x24\x09\x24\x35\x03\xc2\x8d\x80\x93\x11\xc0\x81\x34\x20\xa9\x37\x70\xe2\x1a\x70\x32\x9b\xfb\x3c\xf9\x06\x70\xf9\x3a\x20\xae\x4e\xf7\xac\x80\xd4\x3d\xc0\x9b\x4b\x40\x6a\x30\x20\x74\xff\x0d\xff\x97\xc6\xff\x7e\x09\xd7\xda\x2b\xdd\x67\xfd\x37\xfd\x07\xd2\xfb\x90\x78\x1f\x32\xfb\x49\x1d\xd0\x8a\x01\xde\xef\x00\xb4\x5f\x01\xcf\x77\x02\x8d\x67\x03\x8f\x7c\x81\xe6\x5f\x80\xbb\xf7\x81\x36\xc1\xc0\xad\xf7\x40\xa7\x30\xa0\xfc\x29\xd0\x7d\x0f\x70\xb1\x0c\xe8\xa3\xcf\xab\xe3\xa0\x6c\x20\x67\x1e\x30\xa6\x03\xf3\x5b\xac\x2f\x00\x69\x6d\x81\xe9\x4f\x81\x93\x69\x80\xb3\x38\x6f\x1f\x00\xee\x69\xc0\x09\x67\x60\x55\x04\xd7\x2f\x09\x8c\x00\x12\x5c\x81\x50\x4f\x20\xde\x05\x88\x6e\x0a\x1c\xb3\xe0\xbb\xd1\xc7\x3f\xb1\x56\x86\xf8\xff\x97\x04\x20\x31\x00\xf8\x43\xe0\xd7\xd5\x02\x70\xc2\x14\xf8\xb9\x0f\x88\x1f\x5d\xcf\xff\x7f\xea\xf1\x1f\x1a\xd5\xc5\x83\xc5\xff\x74\x52\x38\x2e\x34\xdc\x03\x7c\x9d\x0d\xa8\xfd\xc3\xba\xe6\x2a\x47\x80\xea\x3c\x40\x2d\x09\x78\x3e\x1b\x50\xbf\x01\xdc\xef\x0e\xe8\xec\x02\x6e\x19\x00\xcd\xc2\x80\xab\xf7\x01\xfd\x81\xb5\x75\x1e\x2e\x6c\x00\x7a\x5a\x00\xb9\xa1\x8c\x73\x67\xa5\x02\x23\xda\xb3\x56\xbf\xb8\x1f\x10\xfb\x73\xaa\x1f\xe3\x5e\xe2\xfc\x90\xe1\xfe\xf1\x02\xe8\x44\x7b\xc4\x9b\xf1\xcd\x23\x72\xc0\x0e\x7b\xe0\xa0\x1b\x63\x81\x87\x67\x01\xc7\xdb\x30\x4e\x98\x35\x04\x38\xea\x00\x94\xeb\xb0\xbd\xe7\x00\xc4\x9f\x00\x5e\xbf\x07\xe2\x25\xfe\x43\xac\x42\xdd\xfe\xff\x55\x07\xc3\xbf\x2e\x0f\x40\x86\x87\x0b\x92\xde\xc7\x3f\x31\x80\x9c\x31\xeb\xbf\xc0\x13\x78\x9b\x09\xc8\x2f\xad\xc5\xbb\x1f\x9f\x04\x14\xcf\xd7\xf2\x1e\x6e\x3f\x01\xb4\x03\x99\xff\xd2\xf4\x03\x70\x21\x1a\xd0\xbf\x02\x14\xbc\x02\xba\x1c\xa8\xd5\x3b\x38\xdb\x0e\x30\xbb\x0f\xa4\x0e\x00\xc6\x2d\xe5\x7a\x16\x53\xc0\xfc\x0e\x71\x7e\x1c\xee\xc5\xb8\xff\xa1\x1d\xc0\xf2\xd9\xac\x09\x23\xb6\xc3\x81\x79\xc0\xb6\x4a\xe6\x73\x89\xed\x10\x97\x04\x24\xca\x01\x07\x63\x81\xec\x53\xfc\x39\x71\x3c\x88\xf6\xbe\x3e\xaf\x29\xef\x4e\xd5\xc6\x7f\x99\xff\xb2\xba\x2f\x3b\x96\xd4\xe3\x01\x58\xfd\x3b\xff\x41\x86\xfb\xbf\xd7\x61\xfb\xf6\x1e\xdb\xfa\xbc\x87\xbb\xab\x6a\x57\x7f\x85\x42\xe0\x72\x32\xa0\xf9\x98\xf9\x4f\x4d\xab\x80\x73\xef\x81\x76\x5a\x40\xe6\x65\xc0\xe8\x0e\x90\x1a\xcd\xf5\x1e\x8e\xb7\x04\x86\x69\x00\xf1\x1d\xc5\x3d\x39\xd7\xaf\x98\xae\x03\xc4\x35\x05\xe6\x2d\xe7\x3a\x16\x4b\x7e\x02\x31\xdd\x01\x7f\x05\x20\xda\x13\xd8\x16\xc2\x96\xfe\x93\xf4\x0f\x44\x9b\x55\x08\x44\xbf\x01\xca\x82\x81\x98\x48\xe0\xc1\x21\xd6\x4b\x10\xd7\xb6\xbd\x7f\xd5\xe5\xbf\xc8\xfa\x7d\xf3\xfd\xba\x7e\xfb\xd5\xe3\x03\xfc\x07\xef\xa1\x1e\xff\xa5\x3e\xef\xe1\x56\x10\xdb\xcb\x12\x9e\x7b\xbe\x31\xa0\x38\x92\xf9\x5f\x62\x7b\x64\x66\x01\x7a\x39\x1c\xff\x3b\x64\x00\x27\x26\x00\x3d\x1f\x03\xf1\xd9\x80\x99\x07\xeb\x5c\x88\xf3\xe3\x80\x1d\x30\x6d\x20\x73\xe2\xe6\x8c\x66\x3d\x87\xc5\xfa\xc0\xee\xc7\x80\xef\x38\x60\x77\x14\x10\x72\x1c\x88\xec\x09\x44\x3d\x07\x22\xef\x03\xc7\xaa\x80\x5d\xc5\x40\xf6\x64\x60\xb7\x36\x50\x16\x00\xec\x7a\x0c\x54\x39\x01\xbb\x6d\x80\xcf\x83\x6b\xe7\xbd\x4c\x07\x62\xe3\x84\xba\x7e\xff\x37\x1d\x88\xff\x9f\xee\xc7\x7f\xab\xf7\x71\x59\xda\x15\x16\xac\x66\x9b\xbd\x08\x90\x3f\x09\x9c\x0a\x00\x1a\x79\xf0\x1a\xd7\xca\x03\x38\x3a\x03\xe8\x5a\xc4\x7c\x17\x71\x5d\x15\xfb\x76\xa4\x39\xb0\xa7\x17\x30\x69\x05\x10\xb1\x12\x70\x88\x02\x76\x36\x07\x3c\x0c\x99\xc7\xe3\xe3\x01\x84\x16\x02\x5b\x27\x01\x3b\xca\x80\xa8\x01\xfc\xfa\x84\x35\xf3\x1e\xb2\x5b\x01\x61\x53\x80\xf2\x11\x40\xd8\x64\xe0\xb1\x16\xb0\x63\x3a\xf0\xa5\x55\xed\xb8\x5f\x3f\xbe\xae\xdf\xab\xbd\xeb\xf1\x20\x1e\xd5\xe5\x03\xd4\xe7\xbf\xd4\xc7\xfd\xef\x3e\xaa\xbb\x0b\x96\xe9\x5e\x9c\x97\xda\x29\x47\x8d\xed\x59\xde\x96\x23\xf1\x2d\xa0\xa4\xc3\xfe\x37\xde\xcf\xe3\xbf\x6d\x39\xd7\x6d\x32\xf6\x00\xf6\x14\x02\xe6\x56\xc0\x4e\x07\xc0\xc2\x0f\xd8\x56\xc3\xd8\x7b\x48\x03\x60\x81\x0f\xb0\x55\x8e\x75\x41\x82\xc3\x81\xa0\x4d\x40\xd0\x7a\x20\x6a\x28\xb0\xe5\x27\xf3\x8b\x37\x7e\xe6\xbd\xe5\xa6\x23\xc0\xe5\xb9\xc0\xa6\xd1\xc0\xc3\x17\xc0\x86\xbb\xc0\x47\x3b\x20\xe0\x36\x73\xde\xd6\x1c\xa9\xeb\xf7\x2f\xdd\x8b\x84\x7f\xe7\x41\xd4\xd7\xbd\x78\xb6\x96\xed\x1f\x12\xef\xe3\xa6\xa4\xf3\x51\x21\xa9\xea\xca\x74\x1f\x0a\x02\xd9\x66\x36\x60\x2b\xe3\x7f\x1c\x95\xd4\x35\xc5\x53\x9a\x4a\x23\x1e\xf7\xcd\x92\x79\x8f\xdc\xc5\x83\x75\x3c\xc4\x78\x11\x72\x12\x18\x53\xc1\xfe\x4d\x33\x05\x36\x1c\x03\xe6\x7a\x02\xeb\xcd\x80\x15\xdb\x39\x56\x6e\x2e\x06\xc4\xb3\xa5\xd8\x76\xfe\x76\xac\x9d\xe3\xfb\x05\xc8\x9a\x09\xac\xdd\x07\x94\x5e\xe1\xb1\xf3\xc0\x1f\x58\x33\x05\xf8\xb3\x2f\xb0\xf2\x53\x5d\xfe\x87\x4c\xef\x43\xe6\xaf\x4c\xf7\xc2\x41\xd2\xc8\x9a\x25\x7d\xee\x6d\xeb\x7f\x9f\x07\xb7\x25\x3f\xaf\xc8\x4e\x89\xd2\x7c\x28\x94\xea\xa1\x64\x3a\xb0\x3d\x25\x7d\x5e\xc6\xff\x38\x2c\x55\x21\xe6\xd3\x1b\x10\x51\x0c\x34\x74\x01\xb6\x2f\x04\xda\x58\x01\xc1\x7f\x01\xc6\x0f\x81\x0d\x4f\x80\x61\x1e\xdc\x7f\x36\x5f\x00\x3f\x2b\x60\x8e\x2b\xb0\xc6\x19\x58\xa6\x06\xac\x3a\x0b\x6c\x2c\x01\x56\x0c\x04\x76\x6d\x03\x96\x77\x61\x5e\xad\xb7\x2d\x20\x9e\xe4\x97\xa4\x02\xa5\x2f\x58\x6b\xe8\x8f\x44\xc0\x2b\x13\x78\xf7\x06\x58\xb4\xa5\xae\xdf\x8e\x95\x75\xfd\x9d\x26\x71\x86\xa7\x6e\xaa\xcb\x83\xa8\x3f\x0f\x2a\x97\xb2\xbd\xe6\x5f\xcf\x7f\xe9\x73\xe7\xe2\xd8\xca\xf8\x1f\xb2\x2c\xdb\x51\x5d\xb6\x32\xfe\x47\xa4\x0b\xdb\xad\x59\x80\x5c\x63\x60\xd3\x37\x40\xf7\x06\xb0\xce\x1e\xe8\xbc\x0b\x58\x9b\x03\x0c\x8c\x00\x56\x9d\xc0\x64\x8b\xc3\xc0\xb2\x21\x72\x0e\x8e\xf2\xc0\xe2\x22\x79\x83\x25\x76\xc0\xa2\x3b\xf2\x3d\xd7\xf7\x01\xdc\x67\xcb\x95\x45\x1c\x04\x16\x4c\x97\xeb\x79\x64\x1c\x30\x5f\x13\x7f\x9c\xb9\x06\xcc\x5d\x04\xc3\x8b\x5d\x00\xd7\x36\xc0\xdd\x43\x80\xcb\x57\xe0\x8d\x06\xe0\x3c\xa0\xae\xdf\xb6\x76\x92\xbf\x2d\xd9\x4e\x94\x78\xd5\x13\x76\xb3\x1d\x23\xed\xbb\xeb\xf3\x5f\xae\x8f\x64\x5b\x9a\x54\xd7\xff\x6c\xe9\x76\xdd\xe9\xac\xba\xfe\xc7\xbf\x54\x18\x47\xfe\x9f\x53\xa5\xac\x40\x64\x95\x1a\xe1\xc6\x5b\x5d\x35\xc8\x06\x36\xd4\xa0\xfc\xec\xaa\x6f\x0d\x36\x6b\x98\x00\xde\x23\xb5\x82\xda\xd8\x01\x9e\x9d\xb4\x8f\xf6\x4a\x05\x16\xf8\x35\x6e\x3a\x66\x0b\x30\xd7\xb2\xf1\xd7\x19\x29\x80\x73\x8c\xae\x83\xc7\x24\x60\x76\xaa\xee\x60\xbf\x58\xc0\xbe\x6b\xe3\x6f\xa1\x01\xc0\x8c\x8a\xc6\xc9\x71\x2b\x01\xbb\xbc\xc6\xba\xa7\x1c\x81\x69\xd6\x3a\x86\x45\x39\xc0\xd4\x93\xda\x6b\x6e\x3e\x00\xa6\x58\x36\x1a\xf2\x52\x09\x98\xdc\x4b\xab\xf4\xc7\x16\xc0\xb2\xbc\x21\xe5\x61\xc7\x59\x69\x90\x5e\xf7\xc8\x87\x2a\xca\xa2\x1d\xde\x4f\x89\xf4\xfd\xcd\xdb\xc9\x7d\x14\xa4\x3b\x02\xa2\xad\xec\x2d\xc5\x81\x17\x75\xfd\x2f\x92\xf4\x92\x32\x6b\x58\x17\xe4\x94\xa0\x42\x68\x42\x62\x5e\x03\xc2\x3f\x0f\x6b\xea\x10\x0e\x11\x7d\x9d\xab\xb1\x87\xc7\xeb\xd1\x8a\x13\xec\xd3\x92\xf2\x99\xfe\x29\xfa\x34\xa2\x96\x57\xb1\x5d\xa0\xd1\xe6\x9c\x5c\x3e\x30\x67\x62\xbb\x09\xcd\x9a\x00\xf6\x45\xed\x66\x19\x46\xca\x1f\xb2\xdb\xd4\xbe\xd5\x90\x74\x85\xa3\x93\xe3\xdb\x0f\xb5\xb1\x51\x8c\xb6\xda\xd9\x5e\xce\x35\x58\x69\xed\xc4\x26\xed\x56\xad\x9c\xaf\xdc\x67\xec\x47\x83\x6b\x41\x97\x94\x33\x46\xfb\x1a\xe8\xee\x9b\xad\x22\x37\xb2\x55\xdb\xb5\x89\x31\x2a\x2d\x86\xa7\xb5\x09\xc9\x35\x57\xbe\x3a\x6c\x41\x1b\xc5\x2b\xd9\xca\x1e\x43\xbd\xf5\x57\x3d\xd1\x52\x4a\x31\x7f\xaa\xaf\xf9\xb5\xb7\xe2\x9e\xc1\x96\xad\x15\x04\x41\xc1\xbd\x7f\x66\x4b\x7d\x41\x90\x37\xe9\xb7\xb1\x69\x07\xd1\xdf\xde\xdf\x1b\xd3\xfd\x55\x53\x85\x46\xbb\x44\x6b\x1c\xab\x39\x59\xb4\xb7\xa4\x7d\x94\x8c\xff\x51\xec\xcc\x7e\x67\x05\x2b\x13\xce\x75\xea\x01\x57\x53\x4e\x94\x6f\x4a\x3b\x8b\x5f\xfc\x97\x0f\xed\xa8\x05\x43\x97\x75\xa1\x2c\x51\xd0\xa4\x6e\x84\xeb\xf8\x3f\x63\x82\xcd\xf2\xc9\x3d\x09\x47\x5f\x50\x63\x4c\xb7\x65\x66\x8d\x33\xa1\x9d\xd9\xe4\xcd\xbd\x8e\x37\x4c\x07\x2c\x34\x7a\x6b\xb5\x1b\x2f\x3f\x6b\xf4\xca\x5e\x2b\xfa\x1a\x29\xcd\x18\xd6\xa3\x57\xc0\x04\x15\xe5\x87\x66\xc3\x7b\xa9\x39\x44\xa8\x1a\xf6\x6f\x60\xda\x69\x71\x81\xda\xb0\xde\x86\x26\xb9\xeb\x13\xd4\xad\x4d\xe6\x1b\xaf\x8d\xcc\x51\xff\xa3\x27\x7a\x06\x1f\x5d\xab\xa1\x64\x64\xd5\xc3\x29\x73\xa2\xfa\xe5\xee\x9d\x8d\xce\x5f\xfa\xa6\xee\xd6\xcd\xcf\x48\xfb\x41\x1f\xb5\x94\x6e\xe3\xba\xdf\xf9\xe0\xa7\x1a\x6a\xe8\xda\x2d\x41\x10\x94\x1f\x74\x19\xdd\xa5\x9b\x20\x28\x5d\xea\x68\xd2\xb1\xa5\x20\x28\x46\xb4\xfb\x7f\x94\x7d\x77\x54\x55\xd7\xf3\xfd\x06\x6c\xd8\x45\xb0\xa1\xd8\x11\x0b\x82\x5d\x10\x14\x05\xb1\xa0\x74\x11\x44\x10\x50\x54\x90\xde\x41\xa5\x09\x48\x2f\x8f\x22\xa2\x54\x95\xa2\x82\x80\x88\x1d\x0b\x96\x58\x31\x1a\x6b\x6c\x58\x62\x12\xa3\xd1\x24\xfa\x31\xb1\xf0\x5b\x77\xe6\x3e\x10\x4c\xd6\x77\xfd\xfe\xc8\x3a\x01\x9e\xef\xbd\x39\x77\xce\x9c\x39\xb3\xf7\xd9\xf3\x61\x98\x6b\x53\x93\x5c\xf1\xb0\xc1\x43\x0a\x9a\x9a\xe4\xfa\x0f\xc9\x18\x3c\xb5\xa9\x49\x36\xb7\x99\xff\xf2\x5c\x96\xbe\xf7\xd1\x1e\xdd\xa8\xde\xb6\x7f\x58\x3f\xaa\x7e\x4a\xfb\x1f\xe5\x37\x8d\xa2\x5b\x4e\xd9\xdf\xf1\x6d\xd3\x14\x4f\x0d\xba\xdf\x1e\x6b\x31\x99\xea\x9b\xe1\x97\xb8\x7f\x8c\xff\x23\xe6\x85\xb8\xa6\xcc\x24\x8f\xb2\xdf\x3f\x8b\x75\xef\x1f\xcc\xa6\x6e\xc9\xb3\x7f\x35\xd0\x96\xcb\x02\x74\xe6\xce\x1d\x33\x60\x34\x32\x27\xff\x64\x10\x35\x3e\xbd\xdd\x50\x8d\x70\x03\x37\x83\x81\xed\x93\xc7\x6a\x19\x8c\xb2\x7e\xd4\x61\xf2\xa8\x40\xfd\x6a\xb7\x9f\x3a\xa4\x8c\x70\xd1\xef\x12\x1e\xde\xa1\x66\xe8\x2f\x73\xec\xd3\x5d\x3b\xe4\x0d\xe9\x37\x7b\xd9\xae\x90\x0e\x4e\x2a\x19\x7a\x67\x0f\x2e\x6e\xff\x6e\x50\xde\xac\x57\x17\x4c\xda\x07\x0f\xbc\x37\xab\xc7\x8f\x66\xed\xce\x0e\xd4\x99\x99\xf8\x7a\x81\xdc\x0f\xca\x5b\x75\x4d\x9a\x9a\x64\xf3\x07\xac\xd5\xea\xd4\xd4\x24\x53\xd2\xff\xd8\xe4\x1f\x9b\x9a\x50\xaa\xf4\x7e\xc2\x66\xe1\xf9\x2b\x79\x6a\x90\xee\x41\xef\xb1\x63\x49\xc7\x59\xaa\xff\xd3\xcc\xff\x89\x56\x21\x3c\xaa\xec\xc1\x48\x39\xb6\x9f\xd5\xd6\xb3\x2e\x4c\xa6\xaa\x66\xca\x21\x2d\xaa\xf3\x6f\xf6\xd1\x21\x9d\x9c\x30\x47\x7d\xaa\x9a\x06\xd8\x71\x37\xfa\x75\x7a\xf3\xe9\x7d\xec\xdf\x1b\x11\x5a\x6f\x51\xc6\x7a\x02\x06\xef\x4c\x29\xf2\x4c\xba\x6e\x41\x28\xe6\x98\xbe\x96\xe1\xbd\x14\x80\xe1\xe6\x96\x33\x46\x0d\x92\xd5\x51\xb9\x67\xb9\x53\xf7\x17\xd9\xe5\xca\x8b\x2d\x73\x2c\xaa\x64\xde\xf6\x3f\xb8\x64\x9c\x8b\x3d\xd0\xe7\x2f\xcb\xfc\x8d\xba\x40\xef\xab\x16\x25\xa9\x63\x01\x85\x28\xf3\xc7\x45\xfb\x80\x9e\x67\xcd\xee\xd5\x44\x02\x3d\x9c\x4d\xcf\x9c\x8b\x05\xba\xcf\x32\x59\x7e\x27\x06\xe8\xfa\x87\x71\xc1\xcb\x09\x40\x57\x1d\x63\xea\xdf\xde\xb9\x7a\x3e\xe1\x76\x9d\x24\xfa\xfb\x84\xb1\x7d\xac\x1e\xe1\x16\x1d\xa2\x75\xa9\x0f\x46\xfb\xbe\x5a\xa4\x87\x70\xe8\x18\x77\x5d\xd8\x1f\x3a\x94\xbb\x08\xb8\x8f\xdd\x87\xaf\xf4\x6f\xb6\x4c\xd7\x21\xbf\x4f\x6e\xe4\x2e\xeb\x31\x3a\x6c\xef\xc6\x5f\x8c\x68\x67\xf0\x7f\x66\x4c\xb7\xab\x5d\x3f\x9b\xd3\x7a\x71\xdc\x64\x41\x71\x63\xe9\x44\x2b\xaa\x63\x2e\xea\xbd\x8c\x22\xad\x4e\x90\x1d\xe1\x81\x6a\x73\xed\xa9\xfa\xdc\x67\xaa\xd3\x9c\x0e\xb1\x40\xaf\x74\x27\x1f\x95\x72\xa0\xdb\x26\xa7\xcc\xa9\xe9\x80\x7c\xaa\x93\xc3\xe2\x6e\x40\x87\xf5\x8e\x0f\x9d\x26\x02\x72\xe9\x8e\xb1\x01\x37\x00\x99\x3e\x8e\xf2\xf1\x74\x33\xd4\x41\x25\x97\x90\x81\x15\xed\xf7\x11\x8e\x61\x77\xf9\x14\xc5\xf0\xe5\x7f\xfe\x40\xc8\xa4\xed\xb3\x17\xe4\x81\xcb\x4a\x3f\xd2\xfd\x78\x2b\x91\xf7\x60\x26\xea\xb8\x33\xef\x03\x58\x20\xf2\x20\x0c\x09\xef\xab\xde\xac\x46\xb7\x60\x77\x87\xb3\x5a\x72\x61\x7b\x2d\xaa\x76\x66\x67\xb0\xca\x7c\x9a\x82\x21\xd5\x9f\xe3\x4c\x17\x13\xef\x23\x1c\x66\xf4\xe9\x81\x12\x2b\x9a\x3f\x0f\x5f\x6b\xca\xac\x56\xfe\x65\x4b\x55\xf8\x65\x9f\xb8\x8f\x8a\xc9\x51\x07\xca\x34\xf4\x25\xab\x48\x91\x69\x42\xc3\x6a\xca\x50\x06\x0f\x74\x25\x14\xa5\x63\xb2\xc7\x1f\xbc\x22\x3d\x35\x95\xe8\xcc\xe2\x91\xa6\x41\x75\x67\x8f\xfe\xf3\xa9\xc2\xeb\x21\xc7\x9d\x39\xdc\x27\xf9\x92\xe7\xb9\xe5\xc5\x52\xdd\x76\xdd\xdf\x39\xb4\x32\x5d\x1b\xf6\x12\xb3\xc6\xe5\x1e\x2b\xc6\xbb\xa8\x5c\xa7\x4f\x58\x53\xf4\x94\x22\xb9\xf3\xf9\xf7\xc4\x68\x70\xd2\x64\x7b\xed\xc4\x79\xb0\x51\xe0\xd1\x4a\xbc\xe7\x6e\xa1\x24\x8c\xbb\x37\x33\x0f\xa8\xa0\x64\x36\x65\x4c\xd9\x0b\x59\xff\x27\x75\x32\xf3\x22\xe2\x54\x2c\xf6\x70\xfc\xb7\xa6\x8c\x21\xa8\xca\x96\x70\x0d\xcf\x89\x2b\x08\x6d\x74\x56\x60\x1e\x8c\x9d\xba\x33\x65\xa2\xe6\x2f\xd6\x90\x8e\x8e\x61\xee\x5a\x7a\x2a\xda\x61\x6e\x84\x07\x8c\x7e\xee\x4d\xbc\x99\x3e\x0f\xfd\xb8\x6e\x6f\x13\x2c\x9e\x6c\x83\xd2\x95\x68\x86\x83\xfe\xd2\xa0\x1d\x29\xe8\xb0\x21\x7d\xa3\x20\xf3\xe5\x54\xf9\x0e\x7c\xed\x45\x08\x7a\x40\x23\x2b\x89\x04\x68\x32\x72\xec\x7f\xb2\x8c\xde\xc1\xdf\xf9\x18\xe1\x5c\xbe\x65\x57\x48\x07\xdd\xe7\xfb\x47\x84\xc0\x78\x7b\xbe\x25\x8f\xf6\xc8\x67\x7b\x5d\xc4\x79\x58\xa5\xcf\xa3\xa3\x38\x1f\xcc\x8f\xd9\xd1\x6e\x2e\xbd\x5b\xf6\x0d\xee\x0f\x24\x09\xb7\x20\xbe\x46\x5c\xc3\x52\xc2\xb1\x22\xbc\xec\x68\x3d\x07\xd9\x38\xd2\xb7\xf3\x68\x64\xbb\xd7\xba\xb3\xea\xbc\x7d\x8a\x0b\xe5\x09\x56\xf1\xcc\x83\x59\xb4\xc8\x8b\x50\xba\x39\x3d\x7c\xa9\xca\x3e\xc9\x24\x80\x36\x90\x61\x6f\xf8\x76\x76\x8f\x8a\x8d\xfe\x6c\x7f\x84\x78\x7f\x33\xe2\x36\xef\xbc\x91\x9a\xea\x74\x2f\x3d\xfc\x98\x3e\x7d\xff\x08\x3f\x1b\x8a\x50\x91\xeb\xdc\x69\x85\x45\x84\x47\x44\xb3\x47\xa6\x3b\xf3\xc8\x4a\x02\xa1\x29\xb5\xa4\xb0\xb2\xd1\x8c\x73\xbe\x0d\xee\xac\x18\x1e\xf2\xea\x37\x52\x3e\x0a\xf1\x6b\x22\x44\xc6\x5f\xd4\x71\xf7\xfc\xa3\xa9\x95\x6e\x0c\xcf\x4f\xce\xff\x8c\x79\xff\xcf\xb1\x22\xfb\xe2\xc3\x97\x13\x0e\x2d\xd5\xc1\x09\xd9\xbb\x92\x56\xa5\x8f\xd6\x1a\x42\xd3\x5c\xb3\xf8\x7a\xb2\xd3\x25\x2f\xfa\x16\xd6\xbe\xac\x52\x61\xf6\x90\x79\x02\x73\xdf\x05\x53\xc6\xad\xad\xb5\x81\xe2\x84\xfa\x9d\x30\x3a\xb1\xab\xcc\x8c\xa4\x13\x4b\xe7\xb0\x18\x11\xef\x8d\x17\x99\xab\xf1\xb9\x7d\x52\x79\x64\xdc\x3f\x5e\x4d\x9f\xce\xfa\x71\x97\x96\x12\x1f\x24\xbe\xce\x95\x76\xaa\x38\xf5\x8d\x64\x4f\xfc\xfd\xb4\x8b\xf4\x73\x27\x46\x16\x63\x47\xd5\xd0\x19\x20\xe6\xd5\x19\xfa\x7b\x8c\xde\x4d\x52\x6c\x89\x9e\xfb\x82\x98\x1b\x9b\x24\xef\x45\x25\x03\xb6\x7b\xfd\x10\x1e\x03\x6e\xf1\xe8\x47\xfa\x29\x92\xa5\xac\x03\x94\x24\xcb\x34\x95\xc8\x46\xd6\x85\x09\xd1\x61\x5e\x84\x1f\xdc\xe9\x04\xe6\x96\xe1\x4d\xeb\x60\xb5\x78\xcb\xda\xee\x62\x10\x6d\xa8\xd2\xbe\x50\x0b\x53\x18\x2f\xd7\xab\x62\xd4\x6d\x4a\x18\xab\x56\x8c\x6e\x60\x36\x4f\xdf\x3f\xe3\x88\x37\xd4\x3e\x20\x49\x3c\x89\x65\x88\x15\x8e\xf4\xc2\x3e\x84\xc3\xa4\xaf\xe3\xcc\x23\xdd\x66\x36\xbd\x83\x24\xc7\x92\x32\xb3\x74\x37\xf6\x3c\xc9\x65\x66\x24\x48\xca\x93\xe8\xf5\x69\x0d\x8c\xac\x4b\x16\xb3\xb2\x40\xea\xa4\x93\x84\x8b\x25\x37\x7e\x4f\x7e\x94\xac\xf3\x84\x76\xea\x64\xb9\x77\x74\x86\x8a\x17\x75\x0e\x62\x86\xf2\x28\xed\x17\x14\x7a\x97\xea\x35\x1a\x4e\x74\x12\x88\xd1\x61\xbe\x57\xe8\x3c\x7e\xde\xd2\x7e\x58\x9e\xc7\x02\xe8\x69\xac\x3d\x14\x44\xf1\xcd\xa1\x8a\xfb\x05\xd9\x44\x32\x3f\xc2\x78\x37\xf3\x23\xe6\xcd\x8a\xa1\x8c\x7b\x86\x57\x2c\x9d\xe0\x35\x16\x24\x90\x82\xe1\xb0\xc6\x14\xd6\xb7\x5f\xc2\x28\x1c\x9a\x32\x1f\xb1\xfd\xdb\x16\x33\x83\x75\x5b\x97\xbe\x14\x99\xb7\xb9\x8d\xa5\x0c\x24\xc7\x68\x26\xc5\x8b\x9c\x93\xe6\xb4\x83\xe5\xbc\x5a\x45\x4a\x44\xdb\x36\x06\x51\x7c\xc8\xd1\x89\x63\x9e\x8c\x27\x2b\x31\x6c\xdd\xb8\x87\xf5\x63\x0e\xd4\xd1\x98\xdd\xff\x2a\x3d\x99\xec\x59\x8f\xc8\x03\xb3\x62\xdf\x50\xc4\xcb\xbc\xd4\x44\xfa\x10\xa9\x22\xce\x9d\xb0\x87\xc7\x38\x7f\xae\xd7\xb8\xd1\xf3\x0e\x0b\xf1\x24\x36\x41\xd0\x2c\x7e\xde\xde\x17\x82\xe9\x69\xb8\xac\xd8\x40\xfb\xc6\x4a\x09\xf3\x9e\x6c\x2d\x36\x91\xe3\x58\x44\xb0\xdd\x46\x25\x71\xb4\x7f\xcc\x96\x49\x22\xb6\x81\x96\x1c\xdb\x3b\xee\x5d\x3a\xe5\x97\x83\xcb\x32\x09\xcd\xee\xe9\x9e\x23\x9e\x50\x72\x45\x1e\xc8\x8e\x97\x32\xc4\xe3\x2a\x7c\xc4\xbc\xa0\xa2\x9a\x31\x97\xe8\xf7\x8a\x33\x29\xee\x15\xc5\x9a\x31\xef\x25\xcc\x69\x18\xff\xcc\xcc\xbb\x16\x9d\x18\x56\x22\x29\xb8\xca\x67\xfd\x42\xa7\xc3\x74\xd6\xcd\xbf\x72\x91\x3c\x35\xef\xda\x3d\xc2\x47\xf3\x23\x5e\xd1\xbf\xcb\x6d\xe0\x7e\x07\x52\x5e\xcc\x16\x51\x0f\x43\x42\x3c\xca\x88\x20\xb6\x3b\xe4\x6c\x00\xed\x07\xbe\xdd\x58\xff\xc8\x3d\x2d\x82\xbe\xff\xaa\x0f\xec\xdf\x2b\xba\xc4\xd2\xae\x2d\xd5\xc3\x31\x91\x24\x53\x5e\x31\xcf\x3f\x8d\x56\xf7\x4c\x65\xe6\x01\x4d\x78\x98\x45\xfe\xa0\xe6\xce\xac\x36\xe5\x99\xb9\xc4\x66\xe9\x7a\xa8\xd0\x85\xed\xdf\x79\x80\xc7\xb2\x37\x32\xc4\xeb\x28\x33\xe5\x38\x59\xd6\x30\x86\x74\x20\x76\xdf\x61\x25\xb7\x32\x53\x13\xd6\x83\x69\x70\xf4\xe2\xd1\x87\x66\xb2\xec\x41\x14\xe1\x97\xbb\x87\x64\x92\x9d\x65\x2a\x1c\x2f\x4b\xcf\xd6\x52\xa7\x8d\x92\x21\x67\xa9\x26\x52\xdc\xff\x16\xe9\x41\x14\xbf\x7a\x41\x3b\xf4\xae\xf3\xef\xa8\x2f\xc2\x0e\x91\x27\xd5\x9a\x17\xb3\xc1\x99\xfb\x9f\x05\x0c\xe5\x83\xb6\xa7\x62\x14\xcd\xea\x9a\x1e\x31\xb4\x4e\xa4\x7a\x38\xcb\x5e\x27\xd3\xa7\x59\x94\x30\x0f\x68\x91\x51\x06\xe5\x95\x06\xb2\x5b\x28\xee\x69\xeb\xf2\xf3\xd6\xf8\x3d\x97\xe2\xac\xaa\x1f\xb3\x97\xfa\x25\xee\xa4\x89\x96\xff\x5c\xda\xe6\xa4\x5e\xa5\x22\x43\xaf\xa8\xcc\xef\x4b\xcf\xb5\x3a\x9c\xf5\x40\xaa\x3c\x66\x50\x7c\xac\x1a\xba\x98\x3c\xac\xaa\xdc\xfe\x2e\xbf\xde\x4b\x91\x47\xee\x93\x53\xb5\x3d\x9d\xf2\x8d\x4a\xf7\x22\xfa\x66\x15\xaf\xaa\xc9\x0f\x2a\x74\x4e\x11\xf2\x5c\x1e\x76\x9d\xf8\x36\xe5\x8b\x9e\x10\xf3\xb3\xa2\xcb\x1f\x94\x11\xef\x2d\xff\x42\xa3\x94\x17\xc3\x3a\x3a\x81\x12\xe6\x7d\x79\x55\x45\xd3\x2e\xed\xfa\x38\x81\xf2\xe1\x55\xce\xcc\x73\xb3\x6b\x90\xa4\xb0\x1f\x64\xd0\x7c\x98\xa9\xe7\xd0\x6a\x9b\xf7\x78\x1b\xbd\x5e\xcf\x39\x8f\xe2\xbe\x54\x17\x47\x63\x7a\x31\xed\x56\xc3\x52\xb9\xaf\x88\x52\xd8\x1e\x9a\x75\x79\x95\x7d\xe2\x0d\x8e\xfd\xd5\x3c\x1e\x36\x00\xc5\x85\x23\xfd\x15\x29\xef\x39\xa4\xcf\xcc\xe6\x43\xe9\x5a\xe4\x17\x87\x4f\xb3\x9e\xd6\xc1\xbd\xcb\xc9\xef\x0f\x3d\xf7\xa0\x95\x7b\xb8\x73\x28\xfd\xfd\x90\x4d\x0a\xd5\x42\x0e\xbd\x29\xa0\x6f\x78\x70\x0c\xeb\x49\x1d\xca\xe0\xbb\x62\xb5\x9a\x0d\xcc\x87\x39\xf1\x78\x06\x7d\x6e\xd3\x6f\x0b\x79\xfc\x44\x3b\x41\x55\x2a\xcf\x43\x39\xf1\x8e\x7d\x7b\x70\x1c\x77\xab\x6a\xcd\x03\x72\x54\x60\x1e\x90\xad\xe2\x56\xf2\x17\xcb\x2a\xee\x13\xb5\xf8\x4e\x01\xe5\x49\xf3\x46\xb2\xea\x82\x6e\xee\x2e\xf2\xbe\x89\x79\xcc\x0b\x19\x5b\xc9\xfa\x30\x43\xc4\xe7\xae\x30\xb8\x8a\xf2\xb1\xf6\x7d\x6b\x44\x25\xdb\x66\x3e\xcc\x2a\x19\x5a\x29\xa7\xfa\x29\xd2\x27\x9d\xb4\x52\x25\x3f\xa8\xdb\xc5\x4c\xfe\xba\xcf\xac\xa7\x75\xa2\x89\xf9\x0f\xa7\xda\xad\xcb\xe1\x9f\x39\x52\x9f\xb8\xc3\x9d\xfa\x4e\x56\xf2\xbe\x71\xbc\x81\x99\x67\x75\xef\x8f\xb3\x1e\x8c\xf7\x05\xf2\xc0\x63\xf6\x9c\x4f\x1c\xef\xf3\x2b\xe5\x1f\xc7\xdc\x39\x4e\x1c\xde\xc6\xeb\xa2\xb6\x42\x98\x0f\xcf\xbc\xd6\x7d\xc1\x56\x99\x6f\xa5\xe7\x6c\xe7\xbf\x8d\xfe\xb5\x4d\x7d\x01\xf1\xa1\xcc\xdc\x78\xb7\x5e\x70\x6a\x17\xed\x4a\x06\xea\x65\x14\x2f\xa5\xba\x38\x1a\xc7\xf6\xd1\xeb\xd4\x0a\xaa\x69\xd5\x0e\x6a\x38\x40\x2a\x1f\xbd\xf2\x0f\x51\x7d\x46\xce\xfa\x88\x98\x47\x9f\x12\x2b\x1c\xe7\xc4\x4a\xe8\xf9\x3c\x56\x3a\x3d\xa7\x33\x9c\xfc\xf5\xec\x69\x56\x7c\x3c\xd7\x63\x1e\xad\x97\x73\xbe\x4b\xc9\x93\xce\xa6\xac\x25\x7b\xcf\x1b\x06\x27\xf0\xeb\x79\xdf\x38\x77\x3b\x87\x6a\xa3\xe7\xd2\x77\x53\x46\x77\xf6\xdd\xe1\x77\xfc\x3e\x17\xa9\x02\x54\x9f\x7f\x9b\xf2\xef\xd3\x8d\xcf\xe8\x66\x45\xbd\xe6\x5b\xaa\xb9\xd6\x27\xf2\x3c\x70\x9f\x20\xb7\x53\xd9\xe4\xef\xab\xdf\x6e\xa7\x28\xed\x30\x31\x8f\x76\x2d\xdb\x8b\x45\x94\xad\x58\x64\x17\x53\x74\x31\x3e\x53\x46\xbb\xd0\x02\x95\x72\x5a\xd5\xcd\xba\x38\x95\xfb\x29\x6a\x4d\xd4\xa8\xa5\xf8\xaa\xfa\x23\x57\xae\x07\x35\x70\x05\x53\xaa\x8f\xd3\xae\xfa\x54\x95\x68\xbf\xb8\x2e\x2e\x9b\xf0\x78\x55\xb3\x27\xe5\xc3\x57\xa3\x87\xd3\x0e\x7d\xd9\x7c\x12\x75\xe2\xb9\x5c\x69\x40\x33\x78\xf9\xa4\x15\xf9\xef\x15\x6b\x67\xda\xd2\xaf\xfa\x06\xd2\x0e\x76\xa5\x7a\x33\x3d\x91\x2b\x6e\x5b\x68\xfe\xae\x04\x96\x12\x3f\xfd\xf2\xea\x5a\xaa\x29\x5d\x29\x3f\x47\x35\xc6\x4b\x9f\x6e\x12\xf3\xf3\x42\xc3\x63\xf2\xe4\x8b\xdf\xff\x4e\x27\x85\x0b\xc1\x1f\xe9\x64\x74\x7e\xa6\x14\xd7\x53\xbb\x08\x7c\xee\x0e\x0c\xaf\x6e\xe9\x6f\xf1\xb6\x03\x30\xbc\x3b\xf0\xd2\x1c\x50\x7d\x0b\xbc\x58\x00\x8c\xc9\x03\x1a\xd5\x59\xf7\xe1\x47\x4b\x40\xb3\x1f\x70\xf3\x07\xee\x8b\x22\xd5\xf5\xbf\x5c\xc9\xfc\x87\x73\x3a\xc2\x9c\x01\xa7\x74\x01\x93\x1f\x80\x13\x31\xa0\x9b\x09\x47\xe7\x70\xbf\x83\x03\x62\x7f\x7f\x29\xde\xbd\x6f\x0e\x20\x9c\x38\x84\x59\x16\x32\x92\xbd\x23\x80\xa4\x18\xa0\xbc\x17\xb0\x75\x25\xf3\x01\x84\xfd\x71\x7f\x1d\x70\xc0\x0b\xa8\xb5\x07\xce\x87\x01\x35\xe5\x7c\xb7\xbc\x26\x14\x78\xd0\x00\x1c\x38\x0e\xbc\x89\x04\x0e\x28\x00\x5f\x36\x03\x15\x71\xad\xf1\xff\x1d\xc6\x6d\xf0\xff\x4f\x2d\xf8\x26\xf1\x3f\xee\xb0\x8e\xc1\xfb\x01\xc0\x90\x3e\xc0\x1f\xcb\x58\xff\x42\xca\x7b\x78\x92\x06\x8c\x74\x03\x1e\x74\x07\xd4\xde\xb6\xe0\xfd\xc2\x38\x31\x0b\xb8\x3a\x0f\x98\x7a\x0b\xb8\xe0\xc9\x35\xbf\xfa\x4a\x40\x38\xa9\x0a\xde\x20\xc4\xbb\xc3\xdf\xb3\xae\xfd\x01\x19\xc0\x6e\x5d\xcb\x3c\x54\x0c\x00\x3c\x46\x03\xbb\xdf\x00\x81\x85\xc0\xee\xb9\x40\x84\x2a\xd7\xa6\x13\xb6\x03\x7b\xb4\x80\xad\xae\x40\x85\x2c\x50\xbc\x12\xd8\x73\x94\xef\xc8\x0a\xd1\xe7\x54\x20\xb0\xff\x2c\xf0\x43\x28\xff\xee\x71\x17\xa0\xfa\x31\xf0\xe6\x32\x50\x2d\xea\xb5\xb7\xc5\xff\xdb\xf2\x1f\xa4\xf7\xe0\xa5\xbc\x8f\x4f\xca\x40\xff\x67\xcc\x7b\x18\x60\xc6\xbd\xf3\x95\x67\x00\x3f\xbd\x02\x94\xf3\xb9\xcf\x89\x8a\x1a\xf0\x63\x0d\xf3\x63\x04\xfb\x47\x0d\x04\xae\xfb\x32\x4f\xe8\x52\x23\x30\xe9\x4f\xee\xeb\xa2\xa5\x00\x9c\x52\x00\xe6\x24\x00\xc7\x03\x80\x85\xef\x79\x1e\x84\x3c\xb9\xda\x05\x58\x76\x03\xa8\x28\x06\x56\xf5\x04\x76\xfb\x31\xc6\x50\xba\x18\xf0\xb7\x66\xbc\x3e\x6c\x07\xeb\xbd\x27\x18\x03\x25\xde\x40\x56\x05\x50\x16\xc0\xf7\xdd\xcb\x1a\x80\xea\x3d\xc0\x9e\x6c\xee\x0b\xb2\xf7\x22\x70\xcd\x1c\xd8\x6b\x03\x3c\xfc\x1d\xd8\x5b\x09\xfc\x2e\x01\xf6\x16\x33\x0f\x42\x8a\xff\x17\x88\xf5\x58\x69\x1f\x84\x7f\xe3\x3f\xf4\xd1\xe4\xbe\x37\x42\x3e\x23\xe5\x7f\xbc\x6c\x02\x7a\x9b\x00\xcf\x8f\x03\x4a\x26\xc0\xc3\x64\xa0\x5f\x10\xf0\x63\x1e\x30\x48\x05\xb8\x51\x08\x0c\x53\x69\xc1\xfb\x2f\x8e\x01\x34\x67\x01\x67\x32\x84\xb3\x05\xf7\x2f\xd1\x6d\x00\x0e\xde\x05\xe6\xd6\x01\xd5\x9b\x00\xe3\x09\xc0\xbe\x3f\x19\xdf\xdd\x6b\x0d\x38\xde\x69\xc1\xfd\x77\xfc\x0f\xf0\x1d\x03\xec\x74\x00\x42\x73\x81\xa2\x2f\x40\xdc\x6f\x8c\x67\x67\x3a\x01\xbb\xbc\x19\x1b\x29\x7e\x05\xec\xcf\x03\x4a\xca\x81\x93\x3f\x03\xbb\x73\x80\x1b\x3d\x80\x52\x7f\xe0\xa1\xe0\x4f\x3d\x81\xbf\xc6\xb6\xac\x03\xa9\xfe\x89\xd4\xfe\x6c\xb7\x7f\xe7\x3f\x48\x79\x1f\xff\x53\x07\xba\xaf\x64\xfe\x4b\x97\x3a\xe0\x65\x29\xd0\x3d\x01\x78\x72\x02\xe8\x69\xd0\xc2\x7b\xb8\x63\x03\xf4\x19\x00\x7c\x1f\x06\xf4\xaf\x04\x2e\x66\x71\xff\x9c\x73\x62\xff\xa0\x93\xa1\x80\xe6\x4a\xe0\x88\x1f\xeb\xc5\x08\xeb\x76\x76\x35\x20\x64\x0f\x46\x26\xac\xdf\x60\x49\xba\xb7\x80\x9d\x67\x0b\xee\xbf\xc3\x0e\xf0\xd9\xc9\x38\x60\x38\xf8\x1e\x70\xac\x3b\x90\x5f\x02\x64\xaa\x02\x85\x5e\x7c\xdf\xbd\xc8\x05\xa8\x5a\x0f\xec\x58\x09\x9c\x5e\x08\x94\xa8\x01\x37\x9e\x01\xbb\x36\x00\x4f\xb6\xf1\x7c\xfd\xb5\xf3\xab\x3e\x10\x22\xf7\x2b\xdb\x89\xc7\xb6\x3a\x08\x49\x22\xee\xf7\x71\x17\x20\x7f\x06\x78\x1f\x0b\xb4\xf3\x64\xfd\x97\x4e\x72\xac\x83\x23\xfb\x10\x78\xb6\x10\x68\x9f\xd8\xc2\x7b\xb8\x15\x0b\x74\xeb\x0c\x5c\xd1\xe6\xf9\x3b\xf7\x09\x50\xae\x60\xfe\xcf\x50\x59\xe0\xa8\x1c\x30\x26\x96\x79\x4a\x93\x85\x6c\x6f\x38\xa0\xbb\x16\x28\xfb\x8d\xf9\x52\x25\x23\x01\xb3\x7a\xa0\xf0\x47\xee\x97\x53\xf0\x14\x70\xf6\x01\x72\x35\x00\x8f\x2f\x40\xae\x03\xb0\x7e\x01\xb0\xad\x9c\xe7\x61\xdb\x72\x20\xbd\x82\x39\x10\x3b\x6c\x81\xfc\xcb\x40\xcd\x55\xc6\xf9\x4f\xc7\x03\x85\x9f\x81\x9b\xaf\x81\x82\x50\xe0\xe9\x8a\x96\x3e\x10\xd2\xf8\x27\xb5\x5f\xfa\xdc\xa5\x38\x78\x5b\x1e\x80\x14\xef\x7e\x2b\x9c\xaa\x43\x81\x5f\xc5\x2a\x51\x2b\x9c\xaf\x0a\xb8\xd3\xc0\x7f\xff\xfe\x03\xd0\xfe\xf3\x57\xbc\x87\x37\x40\xef\x24\xe0\xf8\x43\x40\xd8\x86\x0e\xbe\x64\xbc\xbf\x5a\x19\x50\x1f\x05\xec\xbe\x0b\x4c\x9f\x05\x94\x6c\x64\x5d\x10\xc1\xef\x8d\xd5\x85\x53\x0f\xf3\x62\x72\xea\x98\x17\xb3\xd5\x0b\x70\x3b\x01\x64\x1f\x05\x82\x7f\x02\xb2\xef\x01\x9b\xbb\x00\x5b\x36\x01\xe9\xaf\x58\xe7\x60\x67\x06\xb0\xf5\x29\xf7\x4e\xc9\x55\x61\xfd\x03\x61\xbc\xe9\x02\x6c\x8b\x02\x9e\x65\x00\x79\x83\x59\xd3\xa5\xd9\x7e\xd1\x2f\xa4\xba\x1f\x52\xbb\x23\x45\x3f\x08\x2d\x6b\x8d\x77\xbf\x11\xef\xab\x4b\x79\x0f\x4f\x4f\xf3\x78\x6f\x07\x8f\x52\xde\x03\xd5\xf9\xaf\x72\xff\x2a\xb9\x7c\xe0\xf4\x75\x40\x5e\x9d\x31\x68\xc5\x8d\x40\xf5\x5f\x80\xca\x18\xa0\x5c\x1e\x50\x2d\x00\x4a\xfb\x03\x13\x57\xf1\x3a\x17\xf6\x91\xdc\x07\xbc\x9f\x6e\x9b\x03\x58\x4c\x07\xb6\x48\xf8\xee\x79\x96\x2d\xb0\xee\x36\x90\xa9\x01\x04\xeb\x03\x92\xed\x40\x74\x02\x6b\x49\xa5\x7f\x00\x24\xcf\x80\x42\x3f\xbe\xc5\xb3\x5f\x88\x6f\x53\x81\xd3\x55\x8c\x1f\xff\x50\x09\x6c\x79\x0a\xfc\x2c\x8c\x2f\x81\xa6\x87\x2d\x7d\x50\x62\x9f\x88\x3c\x80\xff\x43\x07\xe2\xbf\x74\x3f\x9a\xfb\x5d\xcc\xe0\x51\x8a\xfb\x5f\x12\xe7\xa5\xbe\x98\xc7\xba\xcd\x80\xec\x0d\xd6\xf1\xe9\xa2\xde\xa2\xfb\x50\x5a\x01\x0c\xbe\xc2\x7a\x0f\x63\x4b\xd8\x4f\xa7\xcd\xe6\xe7\xaa\xff\x94\xbf\xbf\x59\x03\x90\x96\x01\xd8\x1e\x03\xd2\xba\xb3\x7e\x50\x72\x7f\x20\x60\x32\x6b\x27\x45\x39\x00\x49\xdd\x59\x07\x22\x39\x11\xd8\xa1\x0b\x24\x85\x01\xfb\xe7\x00\x49\xc2\x9e\x14\x0c\x24\x77\x01\x7e\x98\xc2\x3f\xff\xd4\x1f\x48\x9d\x07\x7c\xbe\xdf\xc2\xfb\x91\xf6\x3f\x59\xbf\xb4\xb5\xdd\x7e\xd6\xad\x71\xf1\x37\x11\xad\xfd\x40\xca\x7f\x69\xeb\x07\x52\xbd\x83\xf3\xa2\x2e\xc4\xa9\xbe\x3c\x1e\x11\xf1\xcf\xea\x43\x80\xcc\x14\xde\xf7\x3b\x7f\xe1\x78\xd7\x37\x9d\x71\xdf\x11\x87\x80\xad\x2b\x80\x09\x27\x81\x8c\xab\xcc\x7f\x48\xf9\xc8\xba\x20\x89\xe6\x80\xb5\x39\x10\x57\xcc\x3d\x29\x62\x0f\x01\x7e\xdd\x81\xb8\xae\x40\xd4\x77\x40\x4c\x3a\x20\x49\x07\x62\x4e\x02\x45\x4b\x80\xa8\x7b\x40\x65\x04\x6b\xa7\x9c\x59\x08\xc4\xa8\x00\x3f\xd8\x02\xd1\x1e\xbc\xc7\x0b\x73\xf7\xf1\x4f\x20\x54\xec\x33\x17\x7c\x8b\x47\xdf\x86\x36\x3c\x08\xb4\xe6\x41\x34\xf3\x5f\xa6\xb7\xf6\x83\xb6\xfc\x97\x8b\xa7\x44\x3f\x10\x75\x2f\x8e\x89\xb8\x7e\xed\x3a\x1e\x2b\xc4\xf7\x11\xd6\xbf\x10\x4f\xf2\x3c\x81\x1e\x9b\x81\xad\xcf\x80\x81\x4a\x80\xe4\x13\x30\xfa\x15\x90\x3c\x94\xfb\x06\xc5\xa9\x70\xdc\x8c\x6e\xe0\xfd\x23\x32\x9a\x75\x41\x22\x5c\x98\x1f\x14\xee\x01\x44\x44\x00\x61\xc6\xcc\x99\x10\x46\x61\x6d\x85\xce\x62\x45\xd7\x8d\x89\xc0\xe9\x9f\x59\x63\xe8\xa6\x23\xb0\x41\x91\x7d\x79\x83\x3c\xf0\x45\xeb\x5f\xf8\x1f\xa2\xdd\xab\x8e\xb7\xe6\x41\xd8\x1d\xfb\x77\xdc\xff\xee\xef\xe2\x3a\x68\xd3\xf7\x45\xca\x7f\x39\x2e\xaa\x0d\x73\xef\x6c\xa0\x4a\xd4\xcf\x68\xe6\x7f\xdc\xe6\x71\xcb\x78\x40\x6e\x12\xaf\x67\x61\x5f\x49\x5c\x01\x0c\x7d\x04\xc4\xcd\x06\x26\xcd\x02\x36\xa5\x00\xb3\xf7\x01\x61\x73\x00\xd3\x4e\xdc\x23\x68\x85\x39\x10\x74\x0f\xf0\x78\x05\x04\x17\x02\xe1\xb6\x40\xa0\x22\x90\x9a\x0f\x04\x34\x02\x85\x61\xac\xcd\x27\x7c\xa6\x6f\x04\x6b\xcb\x09\x3f\x0b\x71\xd2\xe7\x2e\xf0\x62\x02\xe0\xab\xc7\x71\xb2\xd9\xee\xda\xd6\xbc\x0f\xa9\xee\xc5\xd2\x42\x91\x07\x31\x9e\x47\x29\xff\x45\xa4\xbf\x34\xf3\x5f\xa4\xf6\x4b\xf9\x2f\xa7\x52\x78\x3c\x28\xde\x1a\xd8\x2f\xce\xd3\x5e\x3d\xd1\x0f\x44\x5e\x50\xae\xe8\x3f\x12\x2e\x1e\x20\x21\x1f\xe8\xd8\x85\xfd\xb5\x9f\x23\xe7\x06\x63\x27\x02\x21\x8f\x00\xed\x47\x40\xa0\x12\x60\xe4\xc6\xf6\xd8\xd6\x03\x5e\x76\xc0\xba\x93\x80\xe7\x67\x20\xf4\x21\x6b\x4b\xa5\x29\x00\xee\xed\xb8\xaf\x98\xab\x0a\x50\x79\x8d\x35\x0b\x4f\xdd\x06\x56\xbf\x06\xbe\xd7\x06\x9c\x83\x80\xa7\xd3\x00\xe7\x5f\x59\x57\xcc\x61\x71\x6b\xbb\xa5\xf6\x9a\x1c\x10\x79\x10\x55\xad\x79\x10\xff\x17\xff\xe5\xb4\xa8\x7f\x72\x34\x4f\xb4\x5f\xca\x7f\x91\xf2\x1f\xc4\xdb\x46\x79\x62\xdc\x94\xf2\x3f\x92\xc5\xd3\x75\xa4\xf8\xba\xf5\xc7\x81\xee\xe6\x40\xa0\x16\x30\xf4\x08\xe0\xf3\x1c\x98\x74\x01\xf0\x78\x0b\x18\x06\x00\xae\xc3\x81\xa5\x5f\x80\x35\x4b\x01\x97\x89\xc0\x2a\x27\x60\xfd\x6f\x80\xe3\x1b\x20\xf1\x13\xb0\xe2\x37\x20\x6f\x00\x60\x57\x04\x94\x5f\x07\x96\xe7\x02\x75\x77\xd9\xce\x6b\xee\x80\xcd\x6e\xa0\xb1\x0e\xb0\x9e\x06\xfc\x15\x09\x58\x8a\xe7\x06\x63\x91\x37\xb6\x40\x8c\x0f\x86\x03\x78\x14\xce\x82\xc2\x38\x4b\x8c\xa7\xff\x17\xff\xe5\x58\xc1\xbf\xdb\x5f\x2c\xf6\x8d\xca\x6f\x62\x9e\xc0\x16\x4f\x1e\x53\xaf\xc9\x52\x55\x35\xe6\x9e\x0c\x9d\xab\x37\xb8\xcb\x12\x4a\xe7\x3d\x5d\x6e\x42\xbb\x09\xc0\x3a\xdb\x0e\x4b\xfb\x8d\x03\x56\x2f\xe8\xe4\x32\x6e\x34\xe0\x58\xdc\x59\x73\xd6\x2f\x80\xdd\x80\x2e\x16\xe6\x0d\x80\xcd\x89\x2e\x29\xce\x81\x80\x55\x44\x97\xdc\xc0\x5d\x80\xc5\x4f\x5d\x56\xc7\xa5\x03\x66\x11\x9d\x6f\xe4\x24\x00\x26\xb6\x9d\x4d\xf6\x0c\x06\x16\xe7\xcb\x67\x1c\x7d\x03\x2c\x4a\xe8\x74\xfe\x72\x1c\x60\xa4\xd2\xf1\xf1\x83\x27\xc0\x82\x3f\x3b\xbc\x7b\xd3\x05\x98\x3f\xb5\x7d\x01\xd9\xab\x23\x4b\xf7\x96\xa5\x7c\x0f\x2d\x31\xaf\x9e\xa6\xcd\xe3\x64\xf1\x9e\xc2\xff\xc5\x7f\xa9\xb1\x02\x55\xcd\x2a\x9c\xb8\xca\x5e\xfc\x8a\xfb\x00\xe5\xbe\xed\x46\xd5\xa4\xac\xd8\x1e\x54\x0d\x48\xbc\xae\x40\x11\x34\xca\x9c\xc7\x90\x57\xac\xc6\xec\x51\xcc\x55\xd8\x95\x06\x7d\x09\x5d\xb0\x9d\xd6\x3f\xb2\x67\x47\x60\xc9\xae\x01\x4d\x23\x86\xe1\x80\xe9\x0c\xe5\xbf\xa7\x2b\xcb\x2c\x30\xba\x34\xd0\xd0\xe8\xbe\xcc\x8d\x79\xbf\x0c\xb4\x58\x01\xd9\xa5\x06\x3e\xca\xff\x78\x4b\x64\xf7\xcd\x1e\xaa\x5c\xbc\xa9\x41\xf6\xdd\xcc\xb3\xca\x3d\x32\x43\x65\xff\xd1\x79\x36\x20\xa9\xd8\x5f\xf6\xc1\x0c\xeb\xfe\xff\x3b\x98\x20\xeb\xa5\x3d\xb2\x7f\xf4\x77\x47\x64\x4e\x6a\x35\xf4\x8f\xbf\xa7\x85\xd0\xe9\xcf\xfa\xbd\xff\xcd\x0e\x98\xb6\xb1\x6f\xac\x60\xdf\xc4\x13\xbd\x49\xcf\x7d\xfc\xbe\x1e\x29\xc2\x38\x6e\x4c\x37\xd2\x43\x50\xbb\x2c\x4f\xf8\xbf\x9a\x43\x87\x19\xc2\xd8\xcc\xff\x30\xfd\x77\xfb\xf7\x56\xca\x93\x87\xec\xaa\xef\x4e\x55\x33\x29\xff\x45\x92\xc5\x7c\x90\x04\xcd\x21\xb4\xe3\x46\x2d\x64\x9e\x44\xf0\xc3\x51\xc4\x0f\xf1\x48\x1f\x49\x55\x93\x55\x8e\x6a\xf4\x07\xab\x76\xa3\xf9\x7e\xdf\x8d\xb1\x9b\x3a\x68\x03\x06\x0b\xc6\x95\x2a\xc7\xa2\x62\x66\x97\x71\x97\x34\x5e\xca\xc9\x4f\x7f\xaa\xde\xc1\xc0\xa0\xdd\xe0\xc9\xce\xe3\xfc\xac\xdb\xb5\xef\xaf\xd9\x71\xec\x2d\xd7\x9f\xdb\xff\x39\x4e\x6f\xec\x92\x8d\x7b\x3b\x9c\x1e\xed\x3f\xc6\x2b\xe5\x66\xc7\x3e\xa3\x2c\x47\x97\x15\x5a\x77\x54\x19\x19\xaa\x56\x50\x1d\xdd\xe1\xd9\x88\x45\xa3\x7e\xaa\x7f\xdf\x61\xfb\x70\x63\xd5\x4b\x37\x57\x76\x90\x1f\x76\x58\x75\xdd\x8b\xc4\xf6\x8b\x87\xc5\xa9\x2a\x7f\x74\x6c\x37\x6d\xc8\xb4\x61\x8d\x4d\x4d\x72\xed\x54\x86\xab\xfc\xd3\xd4\x24\x3b\x7d\xa0\xdd\xc0\xdd\x4d\x4d\x32\xdb\xfb\x9f\xee\xff\x57\x53\x13\xd6\xf4\x9d\xda\xe7\x93\x30\x0f\x67\xc4\xbc\x51\xca\xff\xa9\x39\xd4\x89\xf0\xc7\xdd\x17\x7b\x12\x4e\xfb\x95\xfe\x0b\x55\x8b\xa5\xfc\x97\x84\xca\x31\xdc\xf7\x7b\x9c\x26\xe9\xfa\x07\x5d\x9b\x40\xf8\x9d\xa7\xc3\x64\xca\x34\x9c\x15\xb8\xba\x66\x1d\x3e\x8d\xfc\x60\x61\x90\x16\xdd\xd6\xd7\xba\xa7\x43\xb7\x6c\x27\xfc\xae\x5b\xa7\x70\x05\x18\x1b\xaf\x7b\x62\x54\x81\x6c\x77\xd5\x6d\x33\x7b\xeb\xce\x97\xbd\x37\x2c\x4a\xf7\xad\xb9\xb5\xdc\x88\xc1\x43\x74\x03\x56\x6b\xca\x0d\x19\x18\xa6\xdb\x21\xf8\x82\xec\x83\x01\xb6\x3a\x4f\x12\x0f\xc8\xaa\xf4\x0f\xd0\xb1\xcd\xbb\x8f\x47\xfd\x16\xce\xf8\xa9\xd2\x11\xe8\xf3\x4e\xfb\xdd\xa9\x68\x40\x29\x5e\xeb\xf7\xeb\x3f\x00\x8a\xee\xd3\x2f\x3d\x2b\x00\x7a\x8f\x9a\xf6\xe7\x07\x05\xa0\x97\xcd\x64\xea\xfb\xd1\x63\xa0\xe6\x5a\x61\xec\x36\x6d\xac\xad\x30\x76\xb1\x1f\x3d\x55\x18\x3b\x45\x8c\xa4\xbe\x0f\xc7\x1b\xe4\x88\xb7\xb2\x3f\xb2\x1b\xd5\xdb\xf6\xac\xea\xd7\xb3\x95\xfd\xca\xaa\xc4\x8b\x49\xd9\x35\x9e\x6e\x9b\xc6\x35\x4c\xa4\xe7\x1a\x39\x79\x2a\xa1\xf1\xc1\xaf\xb4\xe9\x3e\xab\x97\x9c\xee\x13\xb6\x9f\x37\x90\x65\x47\xf5\xa9\x3a\x68\xb2\x69\x2e\x65\xee\x7a\x66\xf3\x89\x57\xa1\x7e\x7c\x21\xd5\xfb\x55\xde\x2d\x0e\x91\xef\x05\xf4\xcf\x34\x1e\x39\xa4\x0b\xa0\x64\x66\xbc\x7d\xea\x5b\xa0\x57\x92\xb1\xfa\x22\x89\x10\x53\x17\xbf\x76\xec\x04\x74\x29\x5e\x3c\xc5\xbf\x23\xd0\xa9\x69\x91\x6b\xec\x38\x61\xef\x31\xca\xcf\x59\x0f\xb4\x5f\xbe\xf0\xc0\xde\x51\x80\xdc\xd3\x05\x8b\x8f\x2f\x07\xe4\x54\xe7\xfb\x37\x0c\x07\x64\xfc\xe6\xa5\x3d\xfe\x5b\x08\xe0\x86\x81\x7f\x52\x7d\x57\xff\x38\xd7\x21\x67\x8a\xf8\x8d\xb6\xa8\x6f\x3f\x55\xd4\xfb\x9f\x44\xf7\xbd\x6b\x0e\x28\x51\x5d\x56\xca\xff\x29\xfc\x61\x14\xa1\x69\xd9\x85\xe3\xa9\x1a\x9a\xea\x37\x85\x22\x46\x9c\xa9\x36\xd5\x61\x23\xcf\xcc\xa4\x7a\x6b\xd0\x5b\x7d\xe2\x05\x79\x39\xcd\x23\x74\xde\x39\x81\xf5\x51\x96\x7b\x2d\xa6\xb8\x61\x1e\x6b\x42\x78\x8d\xfe\x52\x73\x8a\xc0\x53\xbe\x58\x50\xe6\x3a\x5c\x77\x29\x65\x60\x5d\x57\xda\x52\x15\xb6\x83\xbc\x6d\x76\x9f\x4a\x40\xe6\xb2\xed\xbe\xf1\xc4\x0c\xb0\x5d\x3e\x97\xea\xf1\xcb\x6e\x2c\x27\xed\x3a\x9b\x6b\x7c\x5f\xd1\x66\x7f\x14\x31\x48\xac\x97\x6c\x21\x04\x6e\xe9\xc3\x52\xc2\x39\xad\x4e\x1e\xa1\x08\x65\x79\xe1\x12\xfd\xdd\xf2\xf3\x43\xaa\xb0\x5a\x98\xbc\xa5\x64\xc0\x6c\x31\xdb\xbb\xc8\x8c\x47\xc3\xf1\x3c\xea\x8b\x78\x96\x1e\xc5\x49\xa9\xfd\x3b\x9c\xd5\xc9\xfe\xad\x06\x93\x69\x7d\xa4\x35\xe8\x50\x66\x14\x7f\x69\x26\xf1\x17\x22\xbb\x72\x3f\xa4\x90\x4c\x23\xaa\xa2\x7a\x37\x18\x13\xae\xb7\xe6\xa4\x39\xcd\xba\xfd\xac\x25\x54\x7d\xb7\x5c\x63\x43\x71\x74\x7e\x1d\xeb\x28\xe8\xaa\x33\x3f\x64\xdc\x55\xc6\x91\x07\xe8\x3a\x11\x9c\x2b\xd7\x6f\xb5\x18\x91\x56\xbf\x56\xe4\x4a\xb1\x27\xeb\xdb\x3b\xd7\x1b\x50\xec\x5e\x1d\x6c\x43\x8c\x25\xe7\x35\xee\xe4\x59\xab\xec\x18\x41\x5e\xa5\x9e\x41\xf5\xfb\x95\x3d\x76\xd1\x13\x70\x6a\xe4\x8e\xfa\x0e\x5f\x78\xaf\x73\xa8\xfa\x91\x72\xc1\x15\xeb\x7e\xa3\xbd\x50\xaa\xff\x61\x2d\xe2\x9a\x96\x22\xde\x6f\xe2\xc0\xe3\x62\xc2\xb3\x8a\x1a\x27\x12\x3f\x6c\x5b\x91\x16\x8d\x69\xa2\x1e\x4c\x42\xe3\x5c\xba\xfd\xb8\xa9\x87\x11\x31\x2b\xd7\x6b\x99\x12\xde\xed\x33\xc1\x82\xd6\x87\xcb\x36\x6b\xda\x61\x1c\x5d\x96\x13\xaf\x6c\xa9\x84\xfb\x21\x2d\x02\xdb\xab\x2f\x59\x49\xfe\x3f\xe9\xd3\x6a\xba\xcf\x38\x22\x7d\x2d\xed\xc0\x0a\x5a\x8c\x23\x03\x5e\xe2\xcd\x06\xaf\x3a\x9e\x07\x4f\x09\xdf\x73\xf7\x7a\xc4\xdf\xc0\xeb\x2d\xd7\xeb\xbd\x1c\x59\x79\xc3\x73\xdf\xc6\xdf\xf8\x75\x69\x94\xe3\xb8\x87\x31\x72\xe4\x31\xae\x86\x3c\xd0\x5d\xe3\x2c\xe1\x3b\xeb\xca\x6e\x51\xfd\xda\x25\xf0\x27\xf2\xa3\xb5\xef\xff\xa1\x5c\x51\xca\xff\x58\x71\x9a\xc7\x65\xaf\xbf\x9e\x9f\xed\x6f\x67\xd1\x73\x4b\xcf\x9e\x4b\x5e\x99\xa4\xd1\xac\x83\x43\xa8\x42\xc8\xab\x25\xdc\xff\x02\xb6\x84\x53\xad\xeb\x60\x4f\xeb\x64\xa5\x03\xeb\xa3\x2c\xdb\xe4\x4c\xf1\xcf\xec\xd9\x5a\xc2\xb9\xa4\x3c\x98\x19\xc7\x98\x07\xa3\x1e\xe6\x41\xaf\x53\xc9\x63\xfd\x8c\xae\x87\xfc\x45\x9c\x33\x48\xc4\xbd\x43\x14\xfb\xd0\x8a\x09\xae\x1f\x4b\x19\x47\xc8\xec\xd9\x74\xbf\x32\xb8\x6e\x09\x8f\x87\xd7\xe4\xf2\xdf\xd7\x13\xa2\x1c\x9c\x99\x4c\xfc\xa0\xe0\xd4\x7c\xfa\xa4\x20\xab\x7d\xa4\x44\x1e\xd0\xc8\x8a\xe2\x7e\xe5\xdf\x13\x73\xc5\xef\x44\x23\xad\x6c\xdf\xe9\x7f\xd1\x7a\x91\xf2\x3f\x5c\xcb\x79\x74\xbe\xc9\xa3\x13\xf5\xe5\x93\x64\x31\x0f\x26\xa1\xc9\x94\x50\xf5\xa8\x6b\xd6\x14\xff\x37\xbe\x5d\x4e\xdf\xc2\x5f\xc1\x9e\xd6\xb7\x1b\x9c\x28\x1e\xae\xd6\x59\x4d\xaa\x14\x76\x45\x2e\xb4\x1e\x96\x48\xdc\x08\xaf\x31\xd2\xf3\xcc\xe5\xd5\xc6\xea\xeb\x53\x35\x03\x08\x2f\x1c\xad\x12\x28\xea\x3f\x04\x13\x4f\xa6\xc3\xce\x50\x31\x43\x8f\x14\x53\xf9\x4d\x12\x25\x8a\xd4\x11\x57\xc7\xd0\x9e\x1d\xd9\xc8\x1d\xca\x22\x53\xcd\x17\xf1\xcf\x7c\xdf\x3f\xe2\x42\x20\xe1\x31\x91\x13\xe2\x88\x99\x12\xf1\x6c\x1b\xe1\x7c\xe1\x55\x7b\xc8\x5f\xc2\x8c\x8f\xd1\xbc\x84\x5e\xbb\x4a\xc8\xf3\xc6\x3d\x0f\x28\x32\xaf\x7f\xfd\x5a\x9e\x9f\xe8\x17\x56\xf6\xa9\x66\xfb\xbd\x0f\xf3\xe8\x4e\xf7\x7a\x93\x77\x58\x52\x1c\x88\x3e\x6c\x4d\xdf\x2b\x34\x8b\xfd\x3a\xa0\x71\x15\x9d\xa8\x3c\x34\x57\x7f\x62\xfb\xf9\x36\xad\xc3\x09\x0f\x7a\x2a\x56\x03\x3c\x68\x7f\x30\xfe\xcd\x8f\x4e\xe0\x73\xeb\xd9\x5e\x9d\xc4\x60\xea\xb7\xa3\xe9\xce\xe8\xdb\xb0\x46\xe6\x49\x28\x4a\x33\xec\xaa\x98\xb5\x6c\x7f\x7c\x16\xa8\x1f\x4e\x7c\x0a\x67\x24\xf1\x59\xcc\x03\x89\x4f\x9a\x49\x08\x6b\xc2\x15\x33\xf2\xff\x04\x63\x66\x22\x25\x18\xfb\xd3\x37\x88\x53\x8f\x21\xcf\x4b\x30\xdf\x4a\x88\x74\x5c\xef\x62\xfa\x86\x71\x0d\x8c\x18\xc6\x1c\xb9\x40\xaf\x8b\xae\xbb\x93\xcc\x9e\xfd\x6b\x07\x7c\xc5\x8b\x89\xd8\xc7\xf6\x4b\xfb\x05\x05\x2f\x13\xc6\x38\x15\x3b\xe2\x43\x49\x75\x80\x82\x47\xac\xa5\x3c\xc1\xcb\x86\xd7\xf1\xda\x97\xec\xd7\x2b\x27\xfa\xb2\x2e\x94\x7d\x00\x55\x6e\xcc\xc3\x83\x48\x4f\x67\x91\xcc\x7a\x3a\x99\xe9\x8b\xfc\x88\xa9\x9a\xe1\xb4\x1e\xc6\x16\x45\x51\xdf\x9c\x21\x74\x63\x02\xe8\xf6\x28\x21\x92\xed\x4f\x11\xfd\x21\xfd\x83\x2c\x9d\xe1\x32\xac\xfa\x90\xff\x66\x18\x8d\x61\x86\xd6\x22\xc6\xfd\xd3\xeb\x4d\xe8\xf9\xa5\x5f\x71\xa4\xb3\x8f\x24\x97\x3d\x2d\x7d\x4a\x14\xad\x7b\xc9\xfb\x4c\xe6\xcd\xe4\x72\x5f\x14\xc9\xcb\x5a\xba\x49\x9f\xb6\xfd\x1c\xf9\x4b\x72\xe3\x4d\xfa\x7d\xf2\xdb\x9f\x86\xd3\x98\xf6\x37\x21\xb1\x09\x45\x6c\x7f\x4c\x3a\xdf\xc9\xda\x44\x71\x32\x1c\xab\xe9\x53\x82\xef\xbb\xd2\xc6\xe1\x6b\xee\x79\x8c\xd7\x81\x0f\xcd\xee\x2a\xf3\x00\xb2\xdf\xee\x61\x30\x45\x1b\xa9\x1e\x8e\x89\x47\x38\xe5\x91\x86\x7e\xfc\x9c\x75\x03\x59\x27\x65\x42\x22\xab\x54\x8c\xca\x4f\xa4\xbc\x61\xa0\x3e\xf3\x61\x3a\xff\x93\x26\x2a\x59\x66\x89\x19\xec\x76\x77\x19\xaa\x81\x6d\xeb\xc2\xfe\xb0\x2d\x8f\xf5\x1f\x72\xf6\x6a\xd3\xf3\xcd\xb9\xcc\xba\x07\x39\x1f\xec\xb9\x93\xe5\x07\x4f\xc2\x27\x73\xd2\x23\x88\xdf\x90\x73\x52\x22\xcb\xaf\x2b\xa2\xb3\xe0\xd6\xe0\x6a\xf2\xc0\xec\xc3\xf5\x5a\x20\x9e\xc7\x35\xd2\x91\xc9\x2a\x78\x4c\xca\x4f\x59\xde\x6f\x09\x89\x94\xf2\x62\xd2\x44\x5e\x65\x22\xe9\x33\xae\xcf\x71\x27\x96\x9d\x6f\x81\x37\xb1\x51\x3c\xc7\x31\xdf\x6b\xb5\x4b\x08\xed\xde\x0e\x55\xcc\x7b\x92\xea\xe1\x98\x4f\x88\xa2\x0a\x8d\xd1\x3f\xb1\x14\xef\xe6\x68\x26\x90\xdf\x4f\xaf\x4c\x22\xfe\x9b\xa6\x01\xab\xb7\x0c\x4f\x67\xfc\x58\xe9\x4e\x16\xf9\x5b\xc7\x63\xac\x93\x02\xe4\x89\x37\x34\x0a\x9d\x64\xc9\xd3\x0a\x1f\x31\x4f\xac\xa8\x91\x71\xff\xc2\xbd\x5a\xc4\x18\x28\x1c\x6f\x44\x29\x59\x61\x15\xe3\xfe\x45\xb1\xee\x14\x61\x8a\xb2\x43\x99\x2f\xa3\xc9\x08\x7d\x51\x6c\x3e\x7d\x83\x42\x79\x3e\x03\xe6\x37\x31\xde\x5d\x20\x77\x95\x32\xdf\xbc\x57\xac\xa5\x98\xe7\xf7\x9a\xe2\xce\xf6\x07\x1f\x28\x0e\x35\xf3\x62\x52\xb8\x5e\xc7\x7c\x18\x4f\x2b\xe6\x3f\xad\x7d\x29\xf6\xc5\x52\xe4\xfe\x50\x6d\xf5\x70\x4c\x24\x6c\xf7\xbc\x3f\x53\xa8\xe2\xa0\x7b\x31\xf5\x3c\xbe\xd2\xc5\x19\x93\xc7\xcf\x7b\x08\x58\x27\xa5\xb7\xc9\x76\xd2\x51\x69\xef\x50\xb8\x9f\xed\x97\xf2\x61\x4a\xaf\x70\x07\xd7\xdd\xca\xbc\x2e\xca\x1a\xd8\x1f\xca\x4c\xb5\x28\x2f\x2a\xcd\x5f\x40\x91\xb8\x6c\xbb\x2d\x65\xf0\x65\x1b\xd6\x51\x5c\x28\x1b\xb7\x81\x14\x8b\xca\x54\x98\xa1\x52\xd6\xc0\x3c\xa9\x92\xf9\x65\xa4\x54\x50\xf2\xfb\x11\xda\xe1\x8b\xf3\x2f\x52\x8d\xac\x58\x87\x71\xff\x5d\xa9\x3f\x93\x7f\xec\x7a\xf7\x37\x29\x20\xb6\xe6\xc5\xf8\x0c\xe1\x78\xe6\x36\x31\x82\xa2\xb3\xb3\x52\x14\x79\xdb\x8a\x1c\x7e\xde\x36\xf3\x98\x07\x64\xea\xce\x7c\x98\xf9\xee\x69\xf4\xad\x0d\x0c\x98\x17\xa2\x9d\xc6\x7a\x21\x13\xa2\x98\x07\xa4\xa6\xb7\x9d\x76\x2d\x95\xc1\x85\xf4\xf7\x5e\xf5\x3b\x69\x1f\x6a\xb7\xaf\x54\xec\x07\x23\x3d\xb9\x57\xf6\x93\xa5\x48\x5b\x39\xb0\x0f\xe9\x80\x55\x2e\x53\xa3\x4c\xac\x32\x68\x1a\xc5\xc9\xca\xa2\x05\xc4\x58\xde\xf7\x27\x67\x66\xfb\xb4\xb8\x83\xdf\xbe\x05\x41\xa4\xff\xb3\x6f\x3a\xaf\xc0\xca\xea\x9c\xf1\xfc\xf7\x12\xd2\x95\xa9\xd0\xac\xa5\x9d\xab\x3c\xe1\x2c\xed\xa7\x7b\x2b\x6f\x51\xc6\x5c\x3e\xf6\x39\xf9\xc1\xde\x41\x7f\x92\x45\x7b\x22\x98\x07\xc2\xbc\x18\x4f\x09\xb3\x54\xd7\x76\x68\xdd\x17\x4b\xca\x03\xb2\x6a\xe4\xe7\x6c\x7c\x90\x79\x4f\x0b\x4e\x6e\xa5\x79\x9b\xf5\x23\x3f\xe7\x69\x2b\xb8\xbb\x99\x46\x56\x11\x85\xfb\x51\x73\x58\x0f\x48\xf9\x4a\x09\x3d\x95\x1e\x9f\xcb\xc4\x7d\xa2\x5c\xcc\x17\xa4\x7c\x98\x43\x81\xb2\xa4\xb0\x72\x70\x99\x12\xcd\x7c\x6d\xaa\x2a\x3d\xff\xda\x46\x3e\xa1\xd5\xa6\xce\xa3\x1b\x2e\x07\x67\xb2\x7e\x52\xad\xe6\x1a\xe2\x3b\xd4\x1e\x0f\xa0\x1d\xa7\xd6\x29\x9a\x15\x12\x25\xcc\xaf\x3d\x70\xb9\x98\x2c\x38\xf0\xe8\x00\xcd\x4b\x4d\xe5\x69\xb2\xa0\xfa\xf3\x35\x8a\xc7\x07\xe4\x9f\xd0\x49\x60\x7f\xd9\x9b\x05\xf8\xba\x4f\xd0\x43\xaa\x5f\xe6\x25\x50\x45\x65\xd5\x0f\x29\x94\xe7\xda\x6f\x92\x90\x0e\x9a\x8d\x67\x26\xad\x5a\xf3\x94\xad\x14\xef\x16\x3b\x6e\xa7\xd5\x35\xb7\x9e\xbb\x14\xe9\x3e\x2c\xb8\xc8\xeb\x81\x6f\x64\x8d\xb7\x2f\xa5\xa7\x3b\xbc\x6a\x37\x45\xf1\xfe\xfa\x15\xf4\xfc\xbb\x6b\x56\x71\x3c\x08\xdd\xff\x33\xdb\x2f\xe5\xc3\x1c\x6f\xe0\xf8\x50\x37\x5a\x91\x22\x73\x5d\xf8\x08\xaa\x05\xd7\x65\x4d\x21\x4f\x3c\xf6\xa7\x01\xff\x7c\x6a\x09\xe5\xc9\x27\x4d\xb9\xf3\x5b\x9d\x87\x1f\x9d\x3f\x8e\x6f\x67\x26\x57\x5d\x58\x26\xed\x0f\xc7\x1f\xec\xa0\x95\x5a\xb7\x78\x3f\xe5\x11\xc7\xdc\x39\xaf\x3a\x1e\x70\x9d\xf8\x63\xc7\x0e\x3e\xa2\xf7\x3b\x36\xf6\x77\x9a\xa7\xc3\x8f\x3e\xb0\x2e\x8f\xdc\x97\xcf\xff\xc2\x03\x5a\xbb\x95\x58\x46\x4b\x25\xb9\xac\x83\x52\x93\x4f\xd1\x4a\xda\x1f\x4b\x7f\x21\xdb\xad\x7d\xb4\x84\x9e\xde\x14\x15\xe6\x3f\x8d\x5b\x53\x41\x59\xef\xf0\xe9\xcc\xea\xec\xa3\xb0\x9f\xbc\xb1\xcb\xbb\x83\x3b\x5b\xdb\x7f\x42\xbc\xd9\x77\x56\x44\x90\xce\xf9\xf6\x22\x7f\x3d\x77\x76\x38\x7d\xf2\x99\x3e\x93\x28\xff\x39\xb3\x62\x0e\xd5\xf8\xce\xae\xe1\x7c\xea\xac\xeb\x4a\x3a\x57\x9d\x51\xf7\xa1\x27\x72\xb6\x17\x77\x7a\x3b\xf3\x20\x9d\x78\x24\x67\xdf\x70\x9e\x7d\xd6\xa0\x8a\xce\x27\xf5\x59\x75\xb4\x03\x9e\x99\x77\x85\x5e\x57\xbf\xe2\x3e\xe9\xf3\x9d\x92\x7f\x2e\x9c\x47\x71\xba\xf1\x7f\x64\xd1\xc9\x3b\x9f\xb7\x31\xae\x37\xa2\x84\xef\x04\x0f\x0d\x6a\xe9\x6f\xf1\x8b\x0a\xeb\x2c\x4b\x79\x0f\xf7\xdd\x00\x55\xbf\x96\xbe\x06\xd7\x3f\x31\x1f\xe4\xea\x75\x60\x52\x11\x70\x3e\x96\x75\xfd\xeb\x1f\x30\xce\x7d\x22\x02\x98\x9b\x00\x1c\xd1\xe4\x9a\xe8\xfe\x26\xae\xcf\x57\x6b\x00\xb6\x79\x7c\x17\x53\xc8\x58\x9a\xf5\xed\xb3\x00\x9f\x2c\x60\xe7\x3d\x60\xfd\x31\x60\x67\x27\x20\x26\x9e\x7f\x2f\x11\x7e\x7f\x89\x6b\xc0\x25\x27\x81\x3d\x8e\xc0\xee\x5c\xe0\x70\x02\xb0\xbb\x08\x38\x67\x0f\x94\x3b\x01\xb7\x67\xf1\xfd\xf1\xa7\xda\x40\xb9\x33\xf0\x56\x0e\xd8\xfd\x0a\xf8\xf2\xdb\xb7\xf8\x7f\x5b\xfe\xc3\x87\x2e\x80\x4a\x38\xf0\x87\x26\x30\x70\x38\xcf\xc3\x40\xf7\x6f\x79\x0f\xcd\xfd\x1d\x44\x9d\x83\xef\x43\xb9\x6f\xce\x65\x3b\x40\xc3\x98\xfb\x9c\x4c\x0e\xe5\xfb\xcd\x5a\x0a\xc0\xf1\x55\xc0\x9c\x61\xc0\x81\x06\x21\xa6\xb0\x96\x87\x99\x0a\x50\x5e\x02\xd8\x94\x00\x7b\xde\x02\x4e\x3a\xc0\xae\xe7\xc0\xda\xf3\xc0\x8e\x32\xc0\xcb\x05\x10\xa2\xcc\xfa\x99\x7c\xaf\x9d\x74\xee\xb7\x01\x29\x27\x81\x22\xb1\x3f\x4a\x71\x5f\x60\xaf\x06\x50\x62\x02\x1c\x0e\x65\xbc\xff\x9c\x2c\xeb\xc5\xdf\x4a\x66\x1c\xe9\xd9\x00\x60\xef\x13\xe0\x9f\x53\x40\xb1\x78\x87\x5d\x7a\xff\xbd\xad\xfd\x52\xfe\xc3\xff\xa6\x01\xfd\xa2\x5a\xfa\x7c\xfc\xac\x08\x08\xfb\xd8\xf3\xbb\x80\xa2\xee\xb7\xbc\x87\xeb\x3b\x81\xc1\x3f\x72\x3d\x6f\x44\x4f\x40\xc8\x61\xc7\x6a\x02\xf5\xc3\xb9\x2f\x4a\xdd\x62\x60\x4a\xf5\x57\xf7\xfc\xfd\x80\xb9\x0a\xc0\x1e\x2b\xe6\xc5\x94\x18\xb3\x5f\xec\x7c\xc8\xb8\xff\x8e\x3c\x60\xcd\x00\xa0\x30\x09\xf0\x1e\xc2\x78\x3f\xf5\xf9\x97\x63\x6d\xfe\x7c\x77\x20\xe5\x32\x50\x30\x09\xc8\xfd\xc2\xda\x20\xbb\x3f\xb6\xe8\xfe\x0b\xef\x73\xbe\xc7\x57\xfd\x0f\xaa\x80\x9f\xec\x79\x5e\x3e\xee\x02\x76\xc8\xb5\xe6\xff\x48\xf9\x1f\x52\x1d\x00\x29\x0e\xde\xac\xfb\x71\x05\xe8\x15\x0a\xfc\xac\x0c\xf4\x78\xf6\xdf\xbc\x87\x86\xfe\xc2\x99\x09\xb8\x3c\x05\x50\x79\x07\x9c\xb9\x0a\x8c\x8c\x07\x4e\xd5\x02\xe3\xa6\x01\x47\x5f\x02\x93\xd4\x79\x1d\x68\x6f\x62\x7d\x0a\x21\xc0\xec\x2e\x03\x16\xf5\x60\x3f\x17\xe6\xa1\x20\x98\x71\xff\x42\x6f\xc0\xf9\x3a\xb0\xbd\x2b\xe0\x16\x02\x6c\xdf\xc9\xfd\x1f\xb6\xab\x02\x9b\x6a\x80\x6d\xfd\x81\x94\x01\x2d\xf7\xfe\x85\x5c\xa1\xd4\x9d\xef\xc9\x1f\x76\x65\xff\xb9\xa0\xc2\x38\xe2\xdd\xd3\xc0\xae\xeb\xcc\x61\x11\x7e\xfe\xf8\xe7\xb7\x7d\x30\xa4\xfc\x8f\xb6\xfc\x87\xbf\x66\x03\x5d\xab\x80\xd7\x6f\x01\xf9\xe1\xc0\xcf\xf9\x40\xe7\x6b\x40\xa3\x0b\xd0\x79\x0b\x70\x57\x1b\xe8\x16\x04\x5c\x5f\x04\xf4\x50\x69\xe1\x3d\x5c\x68\x04\xfa\x0b\x51\xe6\x3a\xfb\xc9\xd1\xd7\xc0\xc8\x54\xa0\x76\x06\x30\x7e\x2a\x50\xa5\x0e\x4c\x9d\xc5\x7e\x3a\x43\x58\xef\xa3\x01\x83\x7b\xcc\x69\x31\xab\x07\xf2\xb4\x01\xeb\x76\x40\xce\x2f\x80\xa3\x2a\x90\xf3\x00\x70\x77\x66\x4e\x58\xe0\x53\x40\xc8\x4a\x36\x4d\x04\xb6\xfa\x00\xa9\x46\x40\x4e\x26\xb0\xfd\x2c\xb0\x6d\x12\xdf\xfb\xcf\x1d\x07\x1c\x99\x07\xe4\x46\x03\x17\x87\x30\x8e\x7e\x5b\x07\xc8\xd7\x07\x7e\x4d\x06\x0a\xd4\x99\x17\x24\xb5\x5f\x62\xd2\xda\xfe\xd8\x5b\xad\x79\x00\xd4\xef\xa4\x8c\xe7\x50\xd8\xc7\x5e\x08\x51\xfe\x86\x88\xef\x1c\x03\xee\xec\x10\x42\x2e\xe3\x9c\xed\x6e\x30\xef\xa1\xf3\x19\xe0\xac\x25\xd0\x4b\x88\x03\xa6\x7c\x7f\xfb\x70\x67\x40\x25\x91\xd5\xe3\x46\x3e\x06\xca\xbd\x00\xcd\x49\xc0\xce\xbf\x80\x69\xcf\x80\xc2\x1f\x80\xd9\x3f\x02\xb9\x21\xc0\xc2\xd9\xc0\x36\x25\xc0\xaa\x0b\x90\xf9\x0e\xb0\xcb\x00\x32\x6f\x00\x42\x9e\x94\x99\x05\x04\xac\x63\x3c\x38\x22\x0c\xc8\x70\x17\x4e\x4c\x40\x7a\x00\xb0\x4d\x0e\xc8\x8a\x06\x76\xc7\x02\x39\xfd\x81\x63\x1f\x81\xad\xb6\xc0\x85\x47\x80\x90\xc5\xdd\xd3\xe1\xf1\xe5\x32\xf6\xff\xcf\x0f\x5a\xec\x4f\xde\x23\xda\x2f\xdb\x9a\x07\x20\xe5\x3f\xbc\x55\x67\x5c\xf6\xff\xe4\x3d\x08\xd9\xc0\x6c\xe0\xbc\x70\xe6\xbf\xf7\x15\xef\x41\x9d\x79\x54\x35\xd6\x40\xbf\x4e\x40\xf9\x0b\x60\xc8\xcb\x16\xbd\x83\x9d\xe6\xc0\x14\x6f\xee\xd3\x21\x9c\x23\xb7\x2a\x01\x86\x3f\xb1\x26\x92\x59\x03\x90\xa1\x06\xd8\xcd\x03\x24\x99\xcc\x0f\x4a\x53\x01\x7c\x8d\x81\xd4\xc9\x40\xd8\x1b\x20\x55\x9f\xf5\xa4\x52\xf7\x00\xdb\x72\x00\xc9\x2b\xd6\x05\x91\xe8\x02\x87\xdd\x81\xf4\x27\xc0\xc5\x46\x40\xc8\xf2\x1e\x34\x08\xa7\x2b\xe0\xad\x1f\x90\xae\xdf\xda\xef\xdb\xea\x5f\x6c\x10\xf9\x52\x52\x3d\x84\xb6\xba\x1f\x6d\x79\x0f\x3f\x8c\xe2\xb1\xb9\xdf\xc7\x7a\x40\x46\xf6\x2b\xbc\xbb\x11\x90\x57\x01\x2a\xec\x81\x5e\xd7\x79\xed\xf6\xeb\xc9\xfe\x3f\xb2\x9e\xe3\xdd\x78\x75\xbe\xb3\x2f\xec\x23\x99\xee\xc2\x19\x9d\xf5\x1c\x8c\x1b\x81\x44\x3b\xc0\xda\x0e\x88\x9f\x04\xac\x9c\x0b\xc4\xc5\x30\x27\x21\x4e\x1f\xd8\x98\x03\xc4\x5d\x11\x4e\xca\x40\xfc\x54\x20\xc7\x08\x48\x98\x0d\x94\xe9\x02\x42\xb6\x7f\x58\x1b\x48\x1a\x0e\x5c\x9c\x0d\x24\x3d\x03\xee\xbf\x04\xe2\x5f\xb1\x6f\x4b\xed\x97\xea\x40\x48\xf9\x1f\xff\xa5\x03\x21\xf5\x83\x9f\xa6\xfd\xbb\x1f\x34\xeb\x5e\x88\xf3\x74\x4a\xec\x93\x71\x4c\xec\xb6\x5c\x29\xde\x7f\x2e\x2b\x04\x3a\x74\x66\xdc\x5f\x58\x2f\xf9\xbb\x81\x81\xbd\x80\xad\x1e\x80\xaa\x2e\x90\x71\x02\x98\x34\x0f\x48\x75\x05\x66\xaa\x01\x09\x8d\xc0\x82\x1b\x2d\xb8\xbf\xf0\xbc\x1c\xaa\x80\x4d\x15\x80\x7b\x24\x10\x75\x06\x10\x4e\xf8\xd1\x67\x58\x13\x42\xc8\xfe\x85\xb9\x8c\x32\x00\x4a\x4f\x73\xaf\xad\xc3\xbd\x78\xbc\xf0\x00\xd8\xb4\x01\xb8\xf7\x23\x10\xf5\x17\xe7\x0d\x52\xbf\x5f\x6f\xc2\xfb\xe6\x7f\xf5\xc3\x90\xe2\xe2\xdf\xe8\x7e\x88\xb8\x65\x73\xdf\x97\x5f\x79\x3c\xb3\x5b\xcc\x06\xe3\x78\x3c\x24\x9e\x12\x2a\xc4\x7f\x2f\xed\xba\x5b\x38\x17\xe8\xb8\x1f\xc8\xb9\x0c\x28\xbe\x63\xdc\x7f\xb0\x09\xaf\x71\xe1\x00\x92\x20\x61\xfe\x43\xb4\x1b\x30\xd7\x0d\x88\xb0\x07\xcc\x94\x80\x8d\x9f\x19\xc3\x5d\xff\x14\x70\x95\x07\x36\x46\x73\x9f\xb5\xd0\x2c\xbe\xc9\xb5\xd1\x87\xb9\x14\x1b\x3e\x01\x65\xc1\xc0\x86\x52\xe0\xb0\x07\x73\xa9\x84\xfd\x42\xf8\xf9\x7e\x09\xff\xfd\xcd\xa7\x16\xde\x8f\x90\x83\x37\xfd\x4b\x1f\x10\x69\x3f\x0c\x29\x0f\xa2\x2d\xff\xe5\xe6\x32\x31\x1e\x88\xf7\xdf\x29\x1e\x08\x7e\x20\x56\x93\x9a\x75\x1f\x44\xdc\xbf\x42\xe4\x81\xec\x14\x79\x11\x5b\x45\x5c\x3c\x43\x0e\xe8\xe4\x0a\x24\x1e\x06\x94\xee\x00\xf1\x6a\xc0\xc8\x74\x20\x72\x37\x30\x31\x19\xa4\x6a\x3c\x3b\x0c\x58\x3f\x0a\x58\x5c\x0b\x04\x75\x05\x6c\x67\x01\xfe\x0d\xcc\xb3\x15\x9e\x5f\xb0\x02\xe0\xaf\x0e\xc4\xa9\x03\xfe\x1a\x40\x76\x3a\xe0\x67\x0f\x94\x39\x00\x3e\xb9\xc0\xc1\xa3\xcc\x17\xb8\xa4\xc5\x31\xe5\x81\x0a\xe0\xf3\x0a\xf8\xe3\x37\xc0\x3b\xef\xdf\xed\x96\xf2\x3e\xda\xf2\x20\xda\xe2\xfe\xcd\xeb\x40\xd4\x07\x39\x23\xf2\x1a\x8e\x7f\x10\xe3\x41\x9b\xbe\x27\xcd\xfc\x0f\xb1\x0a\xbd\x45\xbc\x65\x41\x87\xcd\x50\x20\x76\x35\xd0\x6d\x13\x10\x19\x0f\x0c\xfc\x8e\xf9\x2b\x63\x4d\x80\xa0\x01\xdc\x67\xcc\xe7\x20\x6b\x30\x78\x2f\x11\xce\xb6\x80\xc7\x4d\xc0\xb9\x0c\xf0\x50\x04\x02\x35\x00\xf7\x30\x20\x6e\x03\xe0\xae\xc0\xeb\x42\xf0\xe3\xdd\xa3\x00\x97\xcb\xc0\xa1\x21\xcc\x83\xb8\xf8\x02\x58\xfb\x12\xb8\x9f\x0f\xac\xad\x05\xde\x1c\x03\x56\xe5\xb5\xb6\xdb\x46\xa1\x35\x0f\xc2\xec\x71\x6b\x1e\xc4\x7f\xf2\x5f\x44\xfe\xe0\x09\xa9\x1f\x88\xf3\x52\x25\x3e\xf7\x3d\x22\xcf\xa3\x48\x5a\x65\xd3\xe6\x31\x5d\x7c\x9f\x84\x2b\x3c\x86\x53\x4f\x5e\x20\xc4\x19\xe8\x1d\x08\xf8\xd5\x01\x23\xf6\x03\x9e\x27\x99\x5f\xe9\x1e\xc4\xf9\xe6\x5a\x42\xa0\x00\xe7\xdf\x80\x95\x87\x98\x73\xec\x1f\x06\x38\x2d\x05\x36\xcf\x04\x9c\x46\x02\xd9\x95\xc0\x8a\x81\x40\xf1\x51\xee\x39\x55\x9b\x0a\xd8\x96\x03\xdf\xd9\x03\xb6\xf9\xbc\x6f\xda\xfe\x0f\x78\x9d\x01\xd8\xf4\x65\xfb\x2c\xac\x5a\xdb\x2b\xd5\xbd\x68\xcb\x83\xf8\x4f\xfe\xcb\x1c\x1e\xa5\xfc\x17\xee\xba\x0b\xec\xfd\x28\xc6\x03\xb1\xda\xf8\x0d\xff\x43\x9c\x97\x18\xb1\x9f\x50\x88\x18\x37\xbc\x13\x00\x79\xe1\x4c\xd5\x07\x50\x5e\x0c\xac\x36\x00\xc6\x75\x02\x56\x4e\x05\x66\xde\x05\x56\x1c\x00\x4c\xb5\x81\xe5\x47\xf8\xfc\xb5\x2c\x16\xf0\xcd\x01\xac\x67\x02\xd1\x07\x99\xa3\x9e\xe9\x0f\x58\x8c\x03\x8a\xed\x01\xd3\xf7\x40\xad\x1b\x60\x1a\x04\x9c\x9f\x07\x98\xbc\x06\xee\x8c\x04\x8c\x47\x00\xbf\xa6\x01\x8b\x77\x00\x5f\x4e\x01\x86\xaf\x5b\xdb\xab\x53\xd0\x9a\x07\x21\xe5\x3f\x5c\x13\x6f\xd5\xb6\xe5\xbf\x1c\xc9\xe4\xf1\x1b\xfe\xc7\x3d\x1e\x0b\xf6\xf0\x98\x2d\x56\x99\x52\xc5\xbc\x23\x56\x8c\x1f\x61\x56\x3c\xfa\x9e\xe1\x71\x6d\x1d\x8f\x4e\x56\x80\x42\x27\xc0\x2e\x14\x18\x39\x1d\xb0\x3e\x2a\x33\x61\xfa\x52\xc0\xd2\x5c\xd6\xdb\x68\x39\x60\xfa\x50\x36\xc7\xee\x39\xb0\xd8\x42\xf6\xbd\xe7\x4d\x60\xe1\x45\xd9\xef\x22\x0e\x01\xf3\x2d\x65\x3d\x24\xbb\x00\xc3\xd1\x32\xe7\x76\xa8\x02\x06\x7d\x65\xe6\xee\x5f\x08\xcc\x39\x0b\xe3\xfa\xb3\xc0\x6c\x07\xe0\x87\xc9\x80\x9e\x29\xf0\xfc\x57\x60\x96\x39\xf0\x77\x3f\x60\xc6\x95\xd6\xf6\x6a\x8a\xe7\x8a\xf1\xab\x78\x1c\x23\x9e\x37\xda\xf2\x5f\x8e\x3e\xfe\x77\xfb\x77\x8b\x7c\x99\x66\xfe\x8b\x76\x27\xea\x03\x93\xe2\xde\x81\x4e\xfd\x71\x2a\xcc\x93\x08\xef\xd8\x95\xf0\x3c\xff\x17\xdd\xa8\xca\xe4\xa2\xde\x9d\xfe\xbe\xfc\x5c\x4f\xaa\x0a\x98\x5d\xea\x59\xdc\xc9\x1e\x58\xb4\x5f\xe1\xf0\x20\x45\x60\xde\x0e\x45\xb3\x09\xca\x80\xbe\x81\xd2\x08\x03\xe1\xfb\xc7\x2a\xf9\x59\x2f\x02\x74\xb4\x94\xcc\x5d\x85\x9c\xc3\x52\x49\x71\x63\x7b\x60\xaa\x44\xf1\x6e\x72\x02\x30\x39\x58\xd1\x32\x7f\x12\x30\xf1\x70\x6f\xdf\x7d\x05\xc0\x04\x1b\x05\x87\x93\x36\x80\xc6\xc7\x5e\x13\xae\xbd\x07\xc6\xd7\xf6\x54\x7b\xa2\x04\xa8\x4b\x7a\x68\xfd\x55\x03\x8c\xd5\xea\xa6\x21\xd8\xa9\xfa\xa7\x3c\xd5\xa7\x87\xbb\xb7\x7f\x23\x8c\x43\x46\xcb\xfe\x24\x8c\x83\x86\xc8\xb4\x13\xc6\xb6\xfc\x97\xb6\xfa\x37\xcd\xfa\x2f\x25\x9d\x58\x07\xa2\x91\xfb\x01\x25\x2d\x63\xb5\xe5\x98\x57\x7d\xe8\x36\xf1\x06\x8b\x7e\x54\x9f\xf3\xfd\x32\x90\x18\x74\x2e\xc3\x54\x48\x17\xc1\x2e\x90\x71\x64\x53\x83\xa1\x54\x85\xd4\x7b\x3b\x9c\x56\x8a\xb6\xfe\x88\x26\xc5\x5e\xc0\x64\xcb\x91\x7a\x6a\x8b\x64\xf4\x34\x4a\x47\x9e\xd0\xf9\x5b\xe6\xef\xb1\xf6\x23\x7f\x34\xd3\x95\xad\x1b\xa5\x3a\xb2\xdb\xca\x47\x72\xf3\x46\xc8\x8c\x08\x0f\xa8\x90\x3b\x37\x54\x77\xc4\xd8\xd8\xdb\x72\x67\x06\x0f\x1e\x3e\x20\x67\x88\x5c\xe6\xa0\xa8\x61\x16\xbb\x6f\xcb\x2d\x1e\xa8\x31\xf4\xf8\xb1\x0e\xb2\x4f\x94\x75\x86\xe2\xf2\x1f\xb2\x0e\x03\x62\x87\x18\x3e\x5c\x20\x73\xb6\xff\x97\xc1\xdf\xbd\x49\x94\xe9\xd2\x7f\xa7\xca\x0e\xc1\xce\x3e\x37\x07\x24\x09\xa3\xc2\x41\xa5\xb7\xc2\xd8\xf3\x76\x6f\xea\xef\xde\xfd\x53\x8f\xb9\xc4\x7f\x10\xe3\xa4\x94\xff\xb2\xcf\xbf\x03\xed\x9c\x3b\x23\xbb\x91\x87\xb7\xd5\x7f\x49\xfe\x75\x30\xf1\x1e\xa2\x4e\x0d\xa7\xf9\x59\xbf\x40\x95\x76\x12\xdf\xc4\x31\xb4\x32\x5c\x54\xf8\xf6\xa1\xfd\x0f\xe3\xb9\xaf\x71\xca\x04\xaa\x3b\xcd\x6d\x37\x89\xea\x5a\x93\x8f\xf1\x86\x3c\x6a\xe8\xd4\xf1\x9d\x1f\x02\x43\x77\x4e\x6d\x1a\xb2\x04\xfb\x07\xb5\x9f\x56\x3a\xb5\x33\xee\xf7\x3f\x32\xad\xda\xe8\x10\xcc\xfb\x64\x4f\x5b\xbe\x22\x1f\xe8\x7d\x6e\xea\x33\x1f\xe1\x2c\x2c\x37\xd5\x3c\x5a\x0f\xe8\xfe\x6e\x4a\xc8\x16\x05\xa0\xeb\x97\xc9\x11\x25\xcf\x80\x2e\x7e\x93\x7c\x0e\x3d\x01\x3a\xf7\x9d\x68\x7c\xe1\x67\x40\xbe\xef\x84\xfc\x1f\x27\x02\x9d\x46\x6a\x36\xfe\x76\x0e\xe8\x18\xaf\x91\x2c\xd8\xd9\x7e\xd6\x18\xd2\xb3\x97\xfd\x45\x75\x0e\xd5\x25\xad\x87\x25\x70\x7d\x52\x85\xee\x7d\x4b\xf5\x7f\xca\x37\xcb\x93\x3f\xef\xfc\x4e\xc1\x95\xed\x1f\x40\xdf\x3b\xd3\x6b\x18\x55\x89\x13\xd7\xa8\x51\xdd\x32\x66\x26\xdb\xb7\x5e\x61\x02\x65\x52\xbe\x11\x93\xa8\x2a\xe6\x1a\x3e\x95\xea\x72\xf6\xef\xb5\x68\x67\xb1\x0c\x9d\x41\x33\x3c\xdf\x9e\xbb\xb3\x6b\x3d\x99\x4d\x38\xb1\x9a\xab\x3e\xa1\x6d\xbd\x25\x86\x03\x65\x26\x00\xdd\x4f\x19\xe6\xf6\x7d\x0f\xc8\xdf\x9f\x37\x7d\xfc\x5a\xa0\x83\xb6\x61\x95\x41\x57\x40\xf6\x57\xc3\xd5\x36\xc2\xc1\xb6\xa7\x61\x6f\x37\x42\xd8\xe7\xee\x09\xa7\x3a\xb6\xc1\x70\x09\xed\xdd\xfa\x2e\x3b\x09\xf7\x9b\xe3\x74\x80\xf6\xf6\xd9\xd3\xcf\x53\x05\x54\xaf\xd7\x6d\xfa\xe4\x99\xaf\x7e\xa5\xbd\x4d\xd7\xef\x13\xc5\x28\x2d\x57\xb6\x7b\x92\x88\xeb\x69\x88\x75\xfb\x71\x4b\x85\xb1\xdc\x49\x91\xf0\x2a\x29\xff\x65\xdb\xf1\x21\x84\x1e\x49\x66\x8e\xa1\xef\x9b\x78\x9d\xfb\x21\x45\x65\x4c\xa2\xaa\xe0\xc6\xef\xa6\xd1\x0e\xe9\xf7\x59\x97\x50\x67\xd7\x94\x39\x34\x2f\x0e\x55\xfa\xb4\x6e\x96\x2a\x1a\xd0\x89\x65\x91\x2d\xab\x2e\xcf\x72\x5b\x48\x71\x44\xf3\xf4\x22\xc2\x8b\x54\xee\x9b\x12\x1a\xd1\xc9\xdd\x3c\x97\x9f\x80\xa5\x46\x2f\xe6\x25\x98\x31\x7e\x61\x61\x39\x9b\x2a\xa0\x16\x26\x5c\xa7\x36\xaf\x64\xdc\xdf\xdc\x91\xef\x6d\x9a\x35\xa4\xd1\x3b\x9b\x3c\x29\xa2\x4f\x36\x29\xda\x4f\xb8\xc6\xe2\xea\x7a\xaa\x14\x2f\xaa\xba\x49\x15\x67\xa3\x2b\x9c\x2b\x1b\x99\xfc\x43\x67\x00\x43\x51\xbf\x7b\x76\x3f\x1e\x75\xae\xf0\xa8\x45\x7d\x1f\x8a\x2d\x07\x51\xca\xb3\xad\xbf\x1a\x01\x9a\x92\x87\x13\xe9\x5e\x76\x62\x15\xdb\x1d\x9d\x3a\x83\x9e\xe3\xc6\x4b\xb3\x68\x3e\xfc\x2e\x1a\x50\x15\x78\x9d\xd2\xbc\xb9\xc2\xb8\x52\xde\x88\x50\x00\x9b\x77\xc6\x54\x5d\x35\x8d\x32\x27\xbc\xcb\x90\xdb\x45\x60\xda\xab\x25\x94\x89\xa8\x29\x2c\xa5\x1d\xb8\xcf\xbd\x65\x54\x6d\xc7\x2a\x7b\xb1\x8e\xbf\x62\x78\x6f\xaa\xc3\xdb\xab\x8d\x21\xbd\x71\xbb\x06\x3d\xd2\xa7\xb7\x0f\xb7\xac\xe2\x9f\xd7\x12\x42\x60\xe7\xb9\x9e\x62\xd7\xf2\x02\xee\xa0\xb1\xdc\x9d\x2b\xe7\xcb\x8e\x72\x6e\xbf\x2c\xfb\x14\x31\x38\x96\xf9\xf1\x99\x60\xa9\xe4\x09\x7d\xb2\x55\xe3\x7b\x1a\xa5\xfc\x0f\xe3\x46\x1e\x17\x88\xba\x07\x73\x9f\x35\x51\xff\x0b\x46\x99\x33\xac\xa6\xd0\xab\x93\x14\xa7\x13\x33\x38\xca\x5c\x8f\xe2\xc1\x46\x95\xb9\xe4\x7d\xfe\x2e\xac\x2e\xee\xee\xc5\xb7\xae\x57\x3d\x33\xa7\xea\xf7\xb2\x6a\x2b\xba\xbf\x6d\x31\xcf\x86\xec\x6c\xe6\xc1\x98\xd9\x91\x35\x1a\xf9\xac\x6e\x32\xe4\x96\x13\xf9\x41\xb7\xea\x55\x8e\x6c\xbf\x8b\xb8\x53\xad\x1d\xc8\x3c\x90\xb5\xee\xec\x0f\x6b\xdd\x67\xe6\xf1\x68\x31\x8b\x5f\xc7\x8a\x2a\x6b\x4c\x82\xe8\x13\xd6\xcc\x8f\xe7\x4e\xeb\x09\x7c\x93\x7a\xf5\x80\x3d\x65\xfc\xf3\x71\x32\x65\x55\xfa\x15\xaa\xa4\x3b\xdd\x7a\x48\x1e\xed\xe8\xf4\x9a\xfc\x6a\x85\x09\xeb\xb8\x4b\xf9\x1f\x4b\x62\x79\x34\x3f\x43\x75\xaa\x2a\x2d\xc2\x5d\x12\x27\x32\xbf\x2b\x66\x22\xeb\xe0\x84\xde\x58\x44\xfe\x1c\xa0\x69\xc6\xdd\x77\xfc\xac\x28\x4e\xac\xb2\xb1\x26\x2f\x5c\x11\xcf\x6a\xeb\x4b\xce\x33\x4f\xa0\x2d\x0f\x66\xaa\xd5\x6a\xea\x9f\x35\x26\x7c\x0d\xf9\x53\xff\x07\xae\x74\xe3\xa5\x63\x85\x87\xc8\x4c\xf5\x39\x0b\x3a\xeb\xfa\x84\x2b\xd1\x3a\xf0\x8e\x1d\x4d\x3c\x20\x1f\x63\x1d\x7a\x85\x8f\x1a\xeb\xfc\xfb\x84\x3b\x51\xce\xe6\xdd\xc0\xf7\xfd\xbd\x15\xa2\xe9\x1b\x7a\x1b\x6d\xa1\x33\xa1\x57\x45\x29\x45\x74\x2f\xf7\x23\x34\x2f\x1e\xfb\x18\xf7\xf7\xe8\xf3\x23\xe1\x3e\xeb\xae\xfc\x42\xeb\xc4\x75\xfa\x47\xca\x8d\x57\xf7\x64\xfb\x1d\xc4\x38\xc1\xbc\xa1\x94\x83\x73\xe9\xb9\xc7\xae\x58\x4c\x7d\xfb\xc3\x61\x46\xef\x1e\x98\xb7\x94\xe2\x84\xe7\xf9\x65\x34\x41\x6b\xc5\x3e\x50\x0e\x35\x8e\x84\x4b\xd8\x28\x38\x93\xbd\xa6\x9d\x99\xf7\x63\x98\xbe\x96\x70\x4e\x9d\x54\x57\xc2\x8b\x27\x2c\x77\x27\xff\x1a\xd6\xce\x93\x9e\x8a\xe2\x55\x4e\x30\x65\x35\x83\xc4\x9d\x39\x64\x3b\xeb\x1e\x84\x78\x2a\xd2\x4a\x5b\xdf\x55\x8d\x19\x58\xcb\x74\xea\xf8\x67\x13\xc2\xb5\xd7\x0f\x71\x20\xfb\x43\x3e\xf9\x90\x27\x86\xfc\xb1\x89\xce\x7e\x21\x7e\x99\xdc\x1f\x68\xf6\x4e\x8a\x8f\xc1\x0a\x35\xc4\x54\x09\xd2\x3f\x4b\x3b\x57\xe0\xf4\xdb\x3b\xd9\x93\x5f\x50\x1c\xf5\x23\x6c\x02\xf0\x7e\xc8\xf6\xbb\x55\xf1\xb8\x96\x78\x10\x9b\x4f\x9a\x92\xf7\x45\x74\xb2\xa2\xef\x17\xa2\xc3\xe8\xb2\xf7\x76\xd6\xfd\x91\xf6\x83\x5a\x19\xb4\x86\xbc\xca\x56\xec\x07\x65\xe1\xb6\x8e\xe2\x88\x91\xba\x9b\xd8\x0f\x87\xfb\x05\x4d\x6d\xf4\xa6\x79\x1c\xf3\x25\x80\xf9\x40\x83\x83\x28\xdf\xe8\xa1\xb8\x21\x87\xed\x0f\x17\x95\x3b\xa3\xf4\x19\xcf\x8a\xa8\x55\xa2\x95\x12\x79\x6b\x34\x21\xe3\x91\xf1\x33\xe8\x1b\x45\x3e\x58\x4c\xf7\xf4\xa3\xb2\x57\x10\x6e\xbf\x49\xe2\x29\xe1\x31\x82\x10\xe3\xc8\xc6\x34\xe6\xc9\x84\x15\xd2\x7c\x46\xdc\xaa\x22\x9e\x43\x84\xf2\xe9\xa1\xfc\x44\xbf\xa7\x75\x12\x3a\xab\x91\x7e\x0e\x35\xfe\x83\x56\xaa\x94\xff\x11\x64\xce\xa3\xdf\x2e\x61\x8c\xf0\xb2\xd5\xf8\xda\x7e\xdf\x92\x95\xb4\x1f\xb8\x61\x35\xed\xa8\xab\x3e\xb8\xd2\x89\x63\xf9\x13\x37\x42\xc5\x2c\xe1\x41\xab\xd5\x38\xd3\x87\xd0\xe5\xb9\xf5\xfe\x74\x52\xd5\x19\x18\x48\x27\x95\x09\x2a\x7c\xfb\x7a\x54\x3e\xf3\x05\x94\xc7\x85\x51\x7e\x21\xff\x30\x6a\x09\xdb\x1f\x2b\x66\xe0\x09\x15\x8c\xf3\x36\xf3\x61\x52\x18\xf7\x4f\x88\xd0\xe6\x71\x1e\x1f\xe5\x12\xab\xb8\x83\x4f\x42\x93\x3b\x31\xd3\x12\xe5\x42\x29\xe2\x24\x18\x33\xb3\x22\x3e\x2b\x8f\x2c\x88\xbf\xcb\x67\xe0\xb8\xc7\xc7\xe9\x89\xc6\xa9\x5f\x21\x4f\xdc\x3c\xe4\x01\xf3\x63\x44\x5e\x4c\xd4\x5f\x7f\x7b\xf0\xfc\xf1\x3c\x70\xbf\xa0\x6f\xfa\x61\xbd\x65\xfe\xcf\x6a\x23\x37\x5a\xcf\x0e\x1e\xde\x14\x0f\x6c\x52\xfd\x88\x37\x69\x36\x34\x80\x9e\xe7\x82\xdc\x10\xda\xbd\xf4\xae\x32\x2f\x64\x9a\x73\x18\xed\x1b\xe3\xdf\x30\x2f\x64\xe8\xf7\xcc\x87\x51\x74\x88\x65\xdc\xff\xb7\x84\x0d\x6c\x7f\x33\x1f\xa6\x86\x71\x7f\x29\x1f\x26\x5d\x4f\x8d\x78\x1a\x92\x99\xd3\x69\xc6\xd3\xaf\x2c\x24\xcf\x92\xec\x5a\x46\x99\x5d\xc6\x20\x57\x3a\xeb\xa5\x0f\x5d\x4f\x67\xd9\xf4\xd1\x89\x64\xaf\xe4\xee\x76\xe2\x4d\xa5\x3d\xdc\xcd\x8c\x67\xd9\xa3\xb4\x13\xa5\xf9\x5f\xa4\x8e\x97\xc9\x8d\xb7\xc9\xde\xe4\xee\x54\x83\x46\x52\xd5\x07\xfa\xa6\xf1\x9f\x9b\x28\x1f\x61\x5e\x4c\x80\x26\xeb\xe1\x78\x99\x8b\x3c\xa0\x60\xd6\x79\x5a\x39\xc1\x97\xa2\xf0\x72\x13\xe6\x3d\x59\x44\x84\x90\x7f\x2c\x12\xfb\xc7\xcc\xad\x8f\xa4\xf9\xd3\x71\x67\x55\x8a\xc9\xe5\x9b\xe9\x5b\x8d\x8d\x8f\xa3\xa7\x36\x78\x7e\x22\x45\xc1\x5e\x0d\x8c\x9b\xcb\xf5\x48\x13\x4f\xb6\x52\x3e\xcc\xb6\x15\x72\x74\x96\xc9\xf9\xd0\x87\x5e\xb1\xad\x66\x14\xad\x83\x1c\x9d\x69\xb4\x2f\x6c\x2d\x9f\x47\xf8\x6f\xce\x01\xd6\x4f\xda\x9a\xc0\x3b\x4c\xce\x77\x21\xcc\x87\x79\x1b\x4b\xaf\xdf\x5a\x9f\x4d\x9f\xbc\x75\x4d\x09\x65\x34\xd9\x57\x6a\x89\xa1\x96\xfd\xdd\xf9\xdd\xfc\x79\x3f\x50\xfc\xd9\x32\xfd\xa7\x55\xf4\xf3\xf6\xbf\x68\xde\x5a\xf3\x62\xbc\x93\xbc\xf6\xe2\x2b\x1e\xd0\xca\x9a\x20\x52\x67\x5a\xee\xce\xea\x3c\xd6\x33\x42\x49\x91\xd7\x7c\x13\x3f\xe7\x05\x1d\xb9\x8b\xd5\x9c\x46\x3e\x59\x4e\x3f\x10\x47\x27\xd0\x09\xef\xf9\xc6\xc5\x28\xb0\xb7\x2a\xff\x91\x4e\x5e\xd8\x23\x3f\x83\xd4\x28\xb0\x7b\x6b\x7f\xb6\x3f\x5f\x3c\xc1\x15\x8e\x67\xe6\x7e\xe1\x5e\x8e\x93\x3b\x14\x47\x51\x0d\xb0\xf0\x02\xe3\xfe\x05\x27\x0c\x89\xbf\x51\x24\xcb\x4a\x56\x85\x4e\xab\x29\xd4\x16\xc9\x07\x10\x0f\xaa\x30\x3b\x86\x22\x74\xa1\x4b\x26\x21\xc7\x45\x43\x77\x51\x46\x53\x28\x5f\x43\xfa\x1a\xf9\x7a\xac\x87\x91\x37\xe6\x1a\x79\x74\x5e\x6e\x23\x21\xf1\xb9\x0d\xaf\xf9\xc4\x10\xf0\x89\xd6\x47\x4e\x36\xd5\x29\x6b\x03\xe9\x5f\xaf\x7e\xcb\x76\x3b\x6e\x0a\xa3\x57\xd9\xd4\xb3\xdd\x96\xe0\xbe\x39\x8b\x2f\x70\xdf\x1c\x03\x6f\xe6\x85\xe8\x78\x27\x53\x25\x77\xea\xfd\x54\xca\x72\x35\x46\x32\x4f\x62\x84\x41\x16\xf1\x85\xa5\x7d\xa2\xba\x4e\xca\x35\x6d\x6d\xff\xce\xe3\x3c\x96\x0e\x6c\x4f\x35\x8b\x32\x15\x25\xaa\x79\x96\x5e\x61\x1d\x8c\xb2\xed\x53\xe9\x1b\x94\xba\xcf\xa5\x88\x5c\xfa\x72\xc9\x5e\x1e\x9d\x3b\xf1\xef\xfd\x98\xff\x92\x17\xf1\x23\xff\xfb\x0c\xfa\x84\x12\x37\x66\xdc\x94\xa4\x54\x12\x13\xa5\xf8\x15\xe3\xfe\xc5\x3a\x0d\xb4\xae\x76\x39\xdd\xa7\x5a\xc2\xae\x13\xbf\x91\xa7\x17\x2b\x7f\xa4\x27\xc4\xbc\x98\xb5\xee\x1b\x69\xb7\x5a\x15\xbd\x89\xa2\xa9\x94\x07\x64\xd5\x18\x47\xe7\x05\x33\x05\xb6\x7b\xe1\xfb\x14\xca\x17\xe7\xa4\xa6\x53\x3e\xa4\x3d\x3e\x9d\x9e\xd6\x24\x93\x6c\xd2\x8f\x1b\x93\xc7\x59\xcd\x30\x4d\x56\xe7\xe8\xeb\x90\x4f\xac\x8c\xce\xda\xd2\x8a\x55\x89\xa8\xe8\xba\x57\xac\x78\x56\xe8\x74\xa0\xe7\x5b\xd1\xa8\x44\x7c\xb1\x7d\xce\x23\x29\x6f\xde\x67\xc8\x7d\x40\xf6\xb9\x1a\x10\x36\x50\x71\x92\x33\xd3\x7d\x5d\x56\x76\xe7\x7f\xc7\x8a\x4e\xfb\x96\x47\xd0\x4e\x55\x31\x34\x95\x32\xdd\x0a\x91\x27\xb5\xb7\xbe\x7c\x28\xbf\xee\x18\x69\x8e\x97\x7b\x5d\xa2\x9e\xdb\xe5\x23\xef\xf1\xdf\x57\xfc\x4c\x7f\xdf\x13\xf1\x8e\xe6\x6f\x37\xe5\xdb\x6b\x66\xb0\x2e\x8c\x83\x52\x1c\xc7\xc3\xfa\x64\x7a\x95\x65\x68\x1a\xb1\x72\x16\xdd\x63\x7d\x18\x43\xdd\x0c\xe2\x03\xea\x61\x2b\xb1\x96\xb5\x12\x99\x95\x34\xc1\x73\x3b\x45\xad\x31\xe1\x9c\xed\x0f\x2e\x28\xa2\x6c\x50\xb1\xe3\x2e\xf2\xce\x4e\xee\x65\x62\x1f\xbd\x66\x7d\x9c\x8e\x3c\xd6\xca\xca\xb1\xde\xcb\x6c\x45\x9a\xa1\xda\xfd\x23\xe8\xc6\x43\x6d\x23\xf3\x1f\x6a\xfe\xd1\x27\x7e\x57\xed\x38\x73\xe2\x45\xd4\xde\x62\xdd\xa0\x83\x53\x3d\x89\xa9\x51\x1b\xcb\xb5\x9e\x03\x8f\x92\x29\xc3\xa9\x1d\x99\x4b\x9e\x58\xbb\x66\x2f\x31\x7c\xf7\xbb\x1c\xa2\xf9\x3d\xa0\x70\x81\x6a\xa7\xfb\xf7\xdc\xa2\xe7\x5f\xb3\xee\x27\xda\x47\xf6\xdf\xf9\x8b\x4e\x3c\xd5\x97\x3f\xbf\xfb\x6f\x1e\x90\xe9\xc0\x4c\xca\x42\x16\x61\x1b\x21\x1b\x86\xca\xb9\x94\x17\xea\x26\xe5\x52\x9e\x34\xb5\xb1\x90\xec\x94\xf6\xc9\x52\x5b\x51\x4c\x7e\xa5\x72\x7a\x0f\x3d\x4d\x85\xd7\x7b\x28\x7a\xc9\xab\x54\x8a\x48\x47\x73\xbf\xa8\xf6\x3c\x4a\xf9\x30\xc7\x1f\xb0\xc4\xef\x71\x95\x61\xf4\x4e\xc7\xba\x4c\xb8\xc7\x7f\x9f\xed\xcd\xa3\x29\x75\x6a\xaa\xfb\x9e\x33\x9a\xe3\x0d\x1e\xf4\xba\xe3\x01\x1b\x29\x5f\x3c\x66\x1f\x4f\x4f\xea\x98\xa8\x50\x75\xbc\x61\x37\x3d\xd9\x63\x47\x0e\xd1\x13\x3b\xf2\xea\x2c\xf9\xd1\x11\x9d\xeb\xc4\xff\x38\x3a\xb2\x91\x98\xf2\x47\x92\x5e\x91\x92\xda\xe1\x9a\x8f\xa3\x80\x3f\xc2\x19\x5f\x78\xb5\x16\x50\xc9\x02\x9e\xd7\x00\xca\x07\x80\x46\x05\x40\xe5\x15\x70\x77\x17\x30\x64\x1d\xdf\x91\x1c\x9e\xfe\x15\xde\x7f\x17\x18\x9d\x02\x9c\x1d\x02\x68\x5a\x30\xef\x61\xb2\xf0\xae\x3f\x00\x5a\x8f\x81\x9a\x89\x80\xde\x21\xa0\x42\x0e\x98\x57\xce\x7a\xc6\x8b\xac\x5b\xf0\xee\x1d\xb7\x81\xe5\xcf\x81\x1d\xdd\x01\xe7\x2b\x40\x41\x17\xc0\xe3\x17\xbe\xf7\x2d\x64\x60\x05\x95\x8c\xd1\xe4\x3e\x07\x12\x6a\x81\xdc\x54\x20\x2b\xbc\xe5\xde\xff\x0e\x5f\xa0\xf2\x77\x60\xc7\x52\xa0\x4e\xe4\x89\x5c\x3a\x2c\xf6\x3f\x70\x07\x4a\x1e\x03\xbf\x85\x02\xa5\x33\x81\xcf\x3e\xc0\x4e\x91\x07\xd2\x16\xff\x96\xf2\x1f\x7e\xdf\x05\x0c\xd0\x65\x2c\x6c\x80\x1f\xf0\x2c\x9e\xf5\x0c\x1e\xb8\x03\x7d\xff\x02\x6e\x27\x01\xca\x6e\xc0\xf5\x64\x60\x90\x0c\x70\x45\x0d\x18\xaa\x09\x9c\xf3\x05\x46\xbc\xe5\x3e\x17\x63\x4d\x80\xba\x1a\x60\x62\x30\xe3\x7c\x42\xbc\xaf\x2e\x04\x74\xbf\x03\xf6\x1c\x02\xe6\x94\x01\xa5\xf3\x81\x45\xa3\xbe\xc2\xfd\x87\x00\xcb\xa6\x00\x79\x65\xdc\x07\x63\xdb\x31\xc0\x35\x57\xd8\x45\x01\xbf\x13\x3c\x1f\x11\x61\xc0\xf6\x0d\x40\xe2\x55\x20\x67\xb8\x70\x16\x02\xb6\x1f\x01\x8a\x36\x72\xd4\xad\x52\x01\x8a\xba\x03\x27\xd4\x81\x42\x55\xe0\x52\x09\xb0\x73\x21\xf0\x70\x20\xf7\x3f\x10\x6c\xda\x75\x08\x68\xf2\x01\xf2\x23\xff\xdd\x7e\x29\xff\xe1\xf7\x69\xcc\xfb\x90\xea\x5e\x3c\x39\x01\x28\xd9\x03\x8f\x2b\x01\xe1\x1c\xd8\xac\xf7\x20\xf6\x77\xb8\x10\x09\x0c\x38\x0a\x08\x39\xfc\x30\x75\xe0\xd4\x23\x60\x54\x11\x70\x34\x00\x50\x1f\x0f\xd4\x9c\x00\x26\xa6\x00\xe5\xef\x80\xe9\xe3\x19\xf7\x17\x96\xef\xce\xd1\xc0\x7c\x77\xa0\xe0\x16\x60\xea\x08\xe4\xc7\x08\x27\x64\x60\x9b\x25\xe3\xfe\x5b\x77\x02\xae\xdd\x80\xec\x47\x8c\xcd\x64\x2f\x64\x2c\x2b\xeb\x05\x10\xa7\x00\x64\x4f\x07\x32\x0a\xb9\x2f\xfc\x8e\x89\xcc\x83\xa8\xf2\x64\x7c\xfb\x88\x0e\x90\x6f\x0e\x08\xf9\x63\xbe\x33\x70\xef\x11\xf7\x50\x79\xdd\x1d\x28\x74\x66\xfc\xff\x9b\x3e\x18\xb3\x5b\xe3\xc0\x82\xfd\x3d\x8d\x98\xff\xd2\xf5\x3c\xf0\xe8\x03\xd0\x39\xe5\x5b\xde\x83\x54\xe7\xe0\xbc\x2b\xa0\xe4\xc4\xf6\x0f\x70\x01\x8e\xae\x05\x06\x47\x00\x07\xaa\x00\xd5\x99\xcc\xfb\x10\xd2\xfa\x3d\x12\x61\x2f\x01\x8a\x4f\x30\x5f\xaa\x68\x3f\x60\xb8\x12\xc8\x4b\x01\x16\x27\xb0\x3d\x4b\xc2\x80\xac\x72\xc0\x6e\x1b\x90\xb5\x99\x4f\xe2\x59\x9a\x8c\x4d\x09\xd9\x96\xb0\xf1\x64\x3c\x05\xe2\x9e\x03\x99\xb7\xf9\xbf\x2d\xc3\xb9\x07\xc6\x16\x27\x60\x5f\x31\x63\x3b\xc2\x9a\x14\xe6\xe5\x7b\x15\xe6\x0e\x3d\xcc\x02\x72\x4f\x02\x7f\x24\x7f\xd5\x07\x42\xb4\x3f\x59\xc4\xb5\xe2\xc5\xbe\x49\x51\xba\xe2\x3c\x8c\x03\x3a\xda\x03\x4f\x1a\x01\x39\x7f\xe6\x01\x09\xf9\xcd\xdd\xd3\x80\xb0\xaf\x09\xef\xdd\x41\xb7\x85\xf7\x50\x5f\x07\x74\xcf\x07\x4e\x84\x02\x0a\x45\xc0\xa1\x01\xc0\x80\xf1\xc0\xfe\xeb\xc0\xb0\x89\xc0\x1e\x23\x40\xcd\x1b\x28\xf9\x13\x98\xa0\x00\x14\x8d\x04\xa6\x9b\x03\x05\x27\x81\x39\x6f\x80\xec\xe3\xc0\xfc\x81\x8c\xd3\x9b\xe7\x32\xee\xb3\xbc\x0e\x90\xf8\x01\x42\x9e\x94\x14\x0b\x78\xfc\x04\xa4\x96\x00\xeb\x7f\x07\x52\xe3\x58\x0f\x43\x12\x05\x64\xee\x07\x24\x6e\x40\x51\x2c\xcf\x13\xe9\x1f\x14\xf1\x3c\x6c\x79\x02\x7c\xff\x9e\x71\xe5\xa7\xb6\xc0\xd6\x1e\xc0\xfb\xc3\x2d\xf6\xb7\xe5\x7f\x6c\x5a\xda\x9a\x07\x20\xc5\x79\x9f\x89\xd5\x91\xfb\x42\x56\xf8\x92\x75\x70\xf0\x15\xef\xe1\xdc\x5b\xe6\x85\x9c\x3a\x0e\x74\xcc\x07\xea\x02\x81\x6e\x8f\x80\xfd\x47\x80\xde\x75\x40\xc5\x27\xa0\xdf\x71\xc6\xf9\x86\x86\x31\xee\x3d\xf6\x13\xe3\x7d\x53\x5c\x58\xd7\x42\xc7\x1b\xc8\xba\xce\x3a\x42\xcd\xb8\xff\x1b\xc6\xf3\x92\x9c\x18\x83\x4c\x30\x66\x2c\x2f\x51\x1f\x58\x3f\x12\x48\x52\x05\x62\xbd\x80\xf8\x46\x40\x92\x0b\x24\x98\x03\x85\x0a\x40\x62\x19\x50\x71\x97\x71\x23\x61\x1e\xd2\x54\x80\xab\x3a\xac\x17\xf1\xb4\x9c\xf1\xe5\xf7\x8d\x40\xb2\x21\xf7\xc6\x8a\xed\xd0\x9a\xff\xd1\xb6\x0f\x86\x74\x1e\x1e\x87\x32\x1e\x79\x47\xc4\x33\x6f\x94\x02\x58\xfa\x2d\xef\xe1\x64\x2e\x20\xdb\x03\x38\xb4\x17\x68\xdf\x0f\xd8\xf7\x12\xe8\x52\x22\x64\x25\x80\xa2\x3b\xe3\xde\xca\xc7\x5a\xf4\x0e\x72\x03\x00\xcd\x73\xdc\xe7\x42\xab\x1e\x48\x5b\x0c\xe8\x0b\xb1\x4f\x8e\xf5\x62\xe2\x82\x80\x25\x41\x40\x54\x57\xc6\xea\xa2\x37\x02\x6e\x72\xc0\xa6\xe7\x40\x40\x3c\xb0\xb9\x08\x88\x89\x01\xa2\x53\x80\xb4\xe7\xa0\xec\xb6\xd0\x0e\x88\x93\x00\xd5\x95\x40\xfc\x2d\xe0\x74\x77\x20\xbe\x04\xb8\xe6\x02\xc4\xcf\x03\x84\xfc\x39\xf1\x57\xe0\x7f\x8a\x40\xec\xcf\x6c\x67\x44\x57\x91\x07\xf0\x1f\x3a\x10\x52\xde\xc3\xfd\x54\x1e\xff\x8b\xf7\xd0\xdc\xef\x43\xe4\x7f\xd4\x0c\xe0\xb1\x5c\x06\x68\xd7\x93\xf5\x6e\xba\x5a\x33\xef\xa5\xf7\xbe\x16\xbd\x83\xcc\x06\x60\xcc\x06\x8e\xcb\x42\xbc\x48\x9a\x00\xcc\xcc\x63\xdd\x83\x05\x2a\x40\xe4\x5b\xc0\x6c\x18\xef\x0d\x76\xaf\x80\xb0\x12\x60\xad\x22\x10\xe6\x05\xf8\xdf\x07\x22\xc7\x01\xd1\xdd\x01\xe1\x34\x9b\xe6\xc9\xba\x08\x82\x8f\x45\x5c\x03\xaa\x7a\x01\xe1\xa1\x40\xdd\x17\x20\xd2\x12\xb8\x36\x18\xd8\xf4\x3f\xe0\x69\x0f\x20\xf2\x3a\x73\x42\xa5\xbc\x9f\x66\x1e\xc0\x89\x36\xfc\x87\xb2\xd6\x78\xf7\x37\xbc\x87\x36\x7a\x07\xcd\xba\x17\x6a\x62\x56\x28\xde\x2a\x6a\xc6\xbb\xc7\x03\xb2\xed\x38\x4e\x75\x3f\x09\x64\x8d\x03\xfa\x66\x01\xa9\x85\xc0\xd0\xde\x40\xbc\x19\xc7\xcf\xe8\x7a\x60\xfa\x0e\xb6\x47\xff\x29\xb0\x51\x8e\xfb\xe5\x6c\xd8\xcf\xfb\x47\x60\x0d\x63\xbc\x81\xb9\x80\xef\x24\xe6\xaf\x6c\xd2\x06\x36\x08\x3e\xaf\x02\x08\x67\xcd\xfc\x37\x40\x88\x16\x50\x35\x14\x08\xd6\x00\xea\x4c\x99\x2b\x71\xcd\xbe\x45\x07\x62\xa3\x1e\xf0\x51\xc8\x45\xe2\x5a\xf3\x3f\xa4\x76\xaf\xb6\x6f\xcd\x07\x90\xfa\x41\x5b\xdd\x8b\xef\x44\xbc\xfa\x1b\xdd\x0b\x29\xee\x2f\xde\x07\x2f\x16\xf1\x0f\xa9\xde\x41\x46\x28\xe3\xdb\xc9\x4d\x40\x57\x51\x8d\x57\xb9\x18\x88\x0c\x00\x46\x9e\x00\xc2\x8c\x80\x89\xd3\x19\xff\x17\xf6\xd3\xc0\x32\x60\x61\x16\xa8\xcb\xb7\x95\x26\xe0\x6d\x05\x38\x5d\x67\x1e\x83\x4f\x16\xe0\xf3\x9e\x35\x03\xfc\x32\x00\x49\x3f\xc0\xbf\x3d\xf7\x98\xf1\x35\x02\xaa\x87\x03\xbe\x2b\x80\x53\x3f\x02\xbe\x5f\x80\x1b\x25\xbc\xd7\x3c\x73\x03\x7c\x7b\x02\x7f\x7f\x6e\x79\xee\x6b\x45\xfd\x24\x47\x11\xef\xb7\x2d\x17\x47\xb1\xbf\x5c\x5b\x3f\xf8\xa6\xef\x0b\x9f\x9a\x71\x58\xec\x9e\xd9\xb6\xef\x89\xf4\xf4\xd8\xac\xfb\xb0\x98\xc7\xf8\x1c\x40\x36\x14\x88\x6e\x0f\x28\x38\x00\x61\xea\xc0\x60\x75\x20\x24\x1e\x18\x9f\xc0\x76\x0b\xf1\xc2\xab\x13\x60\x98\x0e\xaa\x72\x59\x94\x00\xee\x2e\x3c\x0f\xae\xef\x01\xcf\x4a\xc0\x43\x93\x6f\xb4\xb9\x09\xef\x9d\x04\xb8\x09\x39\x41\x10\xb0\x2e\x02\xa8\xaa\x03\x5c\xc3\x81\xd3\x9a\xcc\xc9\xbd\xae\x03\xac\xbd\x09\x3c\x1f\xc1\xaf\xff\x3c\x08\x70\x9a\xd2\xda\xee\x65\x62\xdf\x41\xb3\xe7\xad\x79\x10\x37\x87\xb7\xf1\x03\x69\xdf\x17\x31\x4e\x7c\xc3\x7f\xd1\x6c\xed\x07\x52\xfe\x47\x96\xb8\x4e\x52\xed\x78\xdc\x2c\xf2\x89\x36\xde\x03\xe4\x03\x01\xe1\x74\xdf\xe7\x17\xc0\xdb\x0e\x18\x61\xc4\xbc\x0e\x21\x0f\x77\x35\x63\xde\xd8\xea\xd9\x80\xc9\x65\xc0\xb9\x9e\xf5\x83\x9c\xe2\x78\x0e\x1c\xab\x39\x36\x38\x89\x7a\x18\x0e\x12\xa0\xc0\x04\xb0\x3f\x0a\x54\x8e\x05\xec\x83\x81\x93\xa6\x80\xfd\x66\xce\x79\x85\x58\xfb\xec\x06\x60\xa7\x0a\x7c\xfc\x1f\x60\xd3\xa7\xb5\xdd\x52\x1e\xc4\xc2\xef\x5a\xf3\x20\xbe\x17\x79\x0a\xff\xc9\x7f\x39\xc2\x63\xa5\xa8\xab\xb4\x47\xd4\xff\x28\x12\xf1\xfe\xb6\xfc\x8f\xc4\x35\x3c\x46\x32\x2c\x82\x20\x23\x1e\xbd\xf4\x81\x1e\x73\x00\x17\x7f\x60\x90\x3f\xb0\xca\x1c\x18\x77\x12\x70\x38\x06\xe8\x74\x04\xec\xfa\xf3\xfe\xb1\xdc\x9d\x6d\xb1\x3e\x0f\xea\x3b\x6a\xdd\x05\x08\xfd\x13\x58\xf2\x18\x48\x3e\x0a\x58\xd6\x71\xaf\x2d\x8b\xe7\x40\xa5\x11\x60\xf6\x8a\xb9\xac\x66\x96\xc0\x8d\x08\xc0\xec\x3a\xe7\x42\x26\xa9\xc0\xff\x24\x2d\x76\xb7\xe5\x41\xe8\x8a\xf9\xa5\xce\x2e\x1e\x9b\xd7\x81\xc8\x8f\x3a\x25\xda\xd9\xcc\x7f\xf9\x8b\xc7\xbd\x22\x2f\x6e\xd7\x8f\x3c\xe6\x8b\xbc\xa8\x2c\x91\x77\x28\xe5\x7f\xc4\x8a\x55\xa7\x8d\xa2\x7f\xf9\x8a\x71\x66\x75\x24\x20\x57\x08\x38\x2a\x00\x4a\xdd\x00\x5b\x33\x40\x75\x06\xb0\x34\x0b\x98\x1a\x01\x58\xba\x73\xde\x6d\xb6\x17\xb0\x91\x07\x4c\x56\x00\xae\x9f\x81\xc5\x1a\xc0\x86\xa1\x3c\x47\xc9\x11\xc0\x02\x33\x20\x6f\x0c\x30\x3f\x1b\xa8\xb8\x09\x18\x7e\x04\x4e\xd4\x02\x73\xdf\x01\xd7\xa2\x00\x03\x59\xe0\xf1\x05\x40\xff\x67\xe0\xaf\x62\x40\xef\x26\xdb\xa9\x2d\x3e\xf7\xc9\x22\x3f\x4e\x53\xec\xab\xa5\x2e\xea\x6d\x35\xaf\x03\x51\x3f\xe9\x3f\xf9\x2f\x6d\xfa\xdf\x34\xf3\x3f\xbc\x79\x8c\x9f\xd4\xda\x0f\x02\xc4\x79\x71\x17\xd5\xcb\x1d\x65\x79\xb4\xea\x07\x74\x51\x02\xcc\xba\x03\x83\x4e\x00\x8b\x9e\x02\x9a\x42\xac\x94\x01\xf4\x4b\x81\xb9\xbf\x02\x4b\x4e\x01\x73\xf6\x03\x6b\x6e\x03\x7a\x16\x40\x88\x22\x6b\xb3\xc5\xbf\x05\x66\xd8\x03\xdb\xe5\x01\xed\xde\xc0\x9e\x99\xc0\x34\x5f\xe0\xa8\x16\x30\x55\x0b\xb8\xdc\x13\x98\xfc\x09\x78\xa0\x0e\x4c\xba\x0a\xfc\xee\x06\x4c\xd0\x61\x3b\xc7\x8a\x7a\x39\xa3\x44\x7e\xed\x70\xb1\x4f\xe9\x10\xb1\x9f\x4e\x33\xff\xe3\x3f\xf4\x5f\xa4\xfa\x27\x52\xfe\x4b\xce\xef\xad\xed\x97\xf2\x5f\x22\x4e\xca\x52\x1d\x2b\x64\xb6\x1c\x55\x39\x3c\xd2\xdb\x53\xe1\xd7\x59\xa9\x03\xd5\x1f\x96\xd6\x75\xa4\xea\xe0\x7c\xfb\x4e\xf6\xf8\x09\x98\xf3\xb4\xb3\xa7\x92\x0d\xa0\xfb\xa6\xcb\x8f\xa3\x97\x02\x5a\x11\x5d\xcf\xe9\xca\x03\x53\x24\xdd\x92\x4c\x77\x01\x13\xbb\x74\x9b\xb4\xb2\x3b\xa0\x21\xd3\xf5\x99\xff\x30\x60\x5c\xef\x6e\xca\x31\x67\x81\x31\x63\xbb\xb6\xdf\x32\x1f\x50\x9b\xd1\xc5\xb8\x44\x02\xa8\xfa\x76\x8e\x39\x58\x05\x8c\x1c\x24\xbf\xfc\xbb\x9e\xc0\x88\xee\x9d\x94\xef\xe4\x01\xc3\x1e\x76\xb4\xfc\xe5\x31\x30\xf4\x63\x07\xdf\x4f\x9f\x80\x41\x17\xe5\xa8\x0e\xa9\x2c\x8b\x49\xc2\xa8\x24\xee\x97\xbd\x72\x79\xfc\x2f\xfe\x47\x5b\xfe\xcb\xd6\xac\x8e\x54\x3d\x4e\x3d\xdb\x99\xaa\x1e\xf1\x29\x5d\xe9\xf7\xe1\xa1\x0a\xa7\xf9\xf9\xb3\xc3\x78\x28\x30\x2f\x64\xa5\x84\x51\x89\xa5\x69\x7d\xa8\x5e\xb3\x08\xdc\x67\x43\xfb\x82\x32\xf1\x2c\x34\x7e\x1e\xf8\xa9\xab\x31\x30\x26\x49\xa5\xd3\x90\x1b\x58\x30\xf2\xa1\x4a\xf8\x94\x43\xc8\x1f\x5a\xad\x52\xb3\xe0\xa3\x4c\x7b\x95\x4e\x2a\xe6\x76\xe3\x64\xcc\x95\x97\x0c\xfa\xe2\x59\x29\x33\xa4\xbf\xb5\x8a\x7b\x64\x7b\xa0\x6f\xa7\x41\x61\xe9\x4e\x80\x92\xd9\xc0\x0d\xc2\xd9\xba\xb7\xb7\x72\x59\xcd\x78\x40\x61\xc2\x80\xa4\x33\xd5\x40\xaf\xce\xfd\x93\x6f\x1a\x01\x3d\x3b\xf4\xf3\xff\x29\x1f\xe8\xd1\xbf\xef\xb3\xbf\x57\x00\x5d\x4f\x2a\x52\xdf\x8b\x4e\x6b\x7a\xfa\xd1\xe8\xdb\xa5\x86\x47\xf9\x27\xc2\xf8\x5f\xf6\x17\x58\x77\xa4\x48\xb9\x75\x68\x77\xc2\x35\x53\x5e\x2a\x52\x55\x35\xae\x81\x75\x5f\x36\x3a\x0c\xa4\x08\xe0\xef\x35\x98\x7e\xef\x06\xae\x26\xad\xac\x1a\x41\x3a\x1a\xd6\xa7\xd4\xe8\xd6\xe9\xe2\x28\x35\xaa\xf3\xe9\x61\x0c\x45\x9e\xf1\xf1\xe3\xa8\xfa\x3c\x50\x7b\xfc\x05\xd9\xcf\x40\x5f\x57\x8d\xa2\x7e\x8f\x00\x85\xed\x9a\xc1\xe3\x6d\x80\xee\xcf\x35\x97\xeb\xc7\x03\x5d\x82\x34\x2a\x96\xc6\x03\x9d\xd2\x34\xc6\xba\xee\x07\xda\xbf\x1d\x7f\x7e\xa3\x1a\x20\x57\x36\x7e\x52\xca\x20\x40\x66\x8f\xba\x4d\x3e\xed\x49\xe3\x50\x49\xf7\x18\xc7\x2a\x9e\xa2\x58\x3d\x7a\xdf\x75\x5a\x83\x6a\x2f\x9e\x10\xce\xa7\x36\xe0\x1d\xd5\x6b\x47\xfc\xcd\xb8\xcd\x90\x50\x1e\x07\x88\x7a\x18\xfd\x32\x85\x71\x9f\xc8\x77\x2b\x8e\x6e\x4f\x91\xb0\xd0\xa5\x17\xd9\xb3\xe5\xa9\x12\xe1\x2e\xc9\xe3\x06\x11\xca\x1a\xa3\xc3\x76\x6e\x78\xac\x4a\x76\x06\x68\xaa\x51\x06\xe1\x11\x3a\x96\xea\x71\x4e\x77\x27\x50\x24\x59\x96\xae\x49\x38\xa7\xe9\x79\xe6\xbd\xe8\xcf\x67\x7e\xc8\xe4\x2a\x6d\x42\x73\x47\x18\x68\x53\x55\xba\xbb\x8d\x2e\x45\x20\x39\xc3\x59\xcb\x7b\xd2\xde\x3d\xab\x4c\x95\xea\x71\x33\x1b\x74\xc9\xd3\x66\xbe\xb2\xa0\x51\xd7\x62\x0d\xdd\xbc\xd7\x6d\x58\x4f\x6f\xa9\x33\x3c\x91\xb8\x6d\x33\x3e\xe6\xd1\x37\xd6\x3e\xba\x8f\x56\xa0\x56\xfd\x09\xb2\x6b\xfa\xe1\x6b\xf4\xcd\xa6\xeb\x34\xf2\xcd\xd2\xb8\xbf\x68\x1e\x26\xbe\x67\xbb\xc7\x6f\xe0\x71\xb4\xd8\x0f\x63\xe4\x21\x61\x2c\x53\xe9\x4e\xe8\x5a\x7e\x23\xfb\x71\xc6\xcd\x41\x54\x2d\x4d\x7a\xc4\x76\xc7\xbc\x62\x34\x3e\xfc\xa4\x26\x55\x49\xfd\x9d\x26\x91\x9f\x78\x34\xb2\x5e\xc6\xaa\x5a\x46\x9f\x96\xe9\x68\x53\xbd\xdb\xf4\x1c\xf3\x5f\xe6\xad\xd3\xa3\x8c\x4a\xab\x9b\x3e\x2d\x98\x31\xd7\x58\x1f\xa5\x5f\xd3\x3c\xaa\xf7\xb6\x73\x5c\x28\x32\x30\x8d\x4c\x98\x41\x66\x14\x37\x8a\xce\x30\x46\x56\xba\x54\x77\x34\xea\x68\x4e\x8a\x33\x0b\xd7\xaf\xa6\xb3\xcc\x02\xb3\x20\x9a\xc9\x05\x0d\x5c\x49\x5f\x60\xc6\x3d\xdb\xe6\x15\x95\x13\xe2\x62\xf8\xf7\x71\xc2\x47\x0d\x7f\x64\xed\x1f\x83\xfb\x8f\x68\xc5\x1a\x64\xfe\x41\xca\x4d\x7a\x27\x44\xfe\xc7\x79\x1e\xa7\x69\x8b\xfc\x18\xd2\xb1\x2e\x0c\x53\xa6\xfa\xeb\x16\xc9\x30\x5a\xd7\x29\xce\xac\xca\x11\xfd\x52\x93\xec\x0b\xd3\x9c\x42\xf6\x04\xc9\x68\x71\x1f\x98\x37\xba\x14\x39\x57\x1f\xd5\x23\x74\xc1\xce\xd9\x80\xd0\x39\xcb\xeb\xf3\xe9\x29\x18\xfd\x62\x44\x19\x83\xae\x38\x4e\xf0\x30\xa6\x75\x33\xc2\x91\x75\x15\x14\xb6\x58\xcc\x63\xfb\x97\x8a\xf7\x9c\xad\xe2\x14\xe8\xcc\x62\xd5\x34\x8a\x72\xf6\xa5\xe9\x33\xa8\x12\x6c\x55\x60\x4a\xdf\xc4\x4a\x9d\x91\xe6\x25\x8f\x18\x39\x5e\x12\xc3\xb1\xd9\xd2\x7a\x2b\x31\x98\x2c\xc5\x8a\xb8\x45\xd9\x11\xfa\x26\xe6\x9d\x2f\x52\x9d\xd6\xd4\xfd\x2e\x7d\x82\xa9\xd5\x6f\x34\x1f\xc6\x8d\xac\xb5\xb9\xe0\x06\xdb\x3f\x47\xe4\x47\xcd\x24\xfd\xea\xcc\xa0\x71\x54\xed\x4e\x6e\xe4\x7e\x50\x31\x3a\xec\xcf\xe1\xef\xb5\xe8\xdd\x82\xeb\xf4\x68\x7e\x3c\x0b\x0d\x69\xd6\x57\xdb\xb3\xca\xb8\x7d\x0a\xdb\x69\xb5\x92\xf5\x51\x8c\x87\x99\x13\xfe\x69\xa0\x6f\x41\x19\x87\x94\x07\x33\x26\xcf\x9a\xd0\x6b\xe5\xbd\x36\x84\x3a\x76\x36\x66\x7e\x08\xe0\x20\xee\xb0\x0e\x47\x15\x28\x47\x5b\xf1\x7a\x14\xe5\x1e\x8e\x1a\xbc\x72\x1c\xac\x16\x53\x64\x71\x10\xf7\x5c\x07\xf8\x12\xb7\xd5\xfe\x45\x14\x31\x4f\x56\xec\xc9\x22\x7c\xd2\x7e\x11\x73\xdc\xed\xcc\x0e\x90\x72\x89\x9d\x0a\x9f\x09\xec\x54\x6e\x13\x7e\x63\x5b\xf5\x82\x70\x0a\x9b\xfa\x7f\x48\x3f\xc0\xea\x12\xdb\x6f\x36\x8b\x47\x23\xe2\x89\xa5\xba\x4f\xa4\x4c\x58\xaa\x83\x13\x0e\x4e\xa4\x42\x44\x3e\x88\xe7\x31\xd6\xc9\x58\x9b\x63\x42\x68\xc8\x8a\x03\xe6\x3f\xf1\xbb\x5a\x50\x5c\x30\xeb\x6b\x43\xa8\xe2\xbc\xe3\xac\xbe\x2e\xe5\xc1\x68\xae\x60\x94\x7a\xe4\x5c\x27\xf2\x93\x3e\x9a\xab\x28\x03\x97\xcb\x5d\x23\x66\x60\xeb\xc4\xfa\xbd\x6b\x96\x02\xe1\x0d\x2e\x0d\xa3\xc8\xcf\x5d\x65\xb9\x03\xd7\xba\x4a\x66\x54\xb9\x7e\x5c\x41\xf6\xaf\x33\x66\x66\x81\x6b\x38\x2b\x2c\xb8\xca\x4a\x68\xaf\x73\x51\x29\x5a\xc5\x63\x35\xf3\x63\x5e\xd7\x93\xfd\xab\x75\xae\xd3\xcf\x2b\x25\x8d\x32\x3c\xbe\x25\xbf\x70\xbc\xc3\xf6\xdb\x6a\xf0\x68\x4d\x7a\x29\x71\x1f\x66\x71\x1f\x20\x30\x1f\x24\x24\x73\x11\xe1\xf3\xbe\x39\xa6\xc4\x4a\x71\x31\x61\x96\x92\x53\x23\xab\xb5\xd8\x8d\xb4\xa5\x55\x6b\x09\x7b\x9a\x9f\x85\x29\x6d\x78\x30\x4d\x7c\xeb\x76\xec\xbb\x35\x94\x91\xa8\x5c\x5f\x4b\x7e\xd5\xe3\xa4\x9b\x3a\xdb\xed\x25\x2a\x38\xfa\x5e\xe3\x29\xf7\x99\xd5\x9b\x72\x33\x3f\x8c\xa2\x9d\xd9\xd7\x98\x19\x3a\xbe\x43\x98\x89\xe4\x57\xb6\x9c\x70\x59\x3f\x6b\xee\xc0\xe3\x3b\x6f\x23\xad\x4c\x9f\x94\x64\x1e\x83\xf3\xe8\x13\x7c\x6e\x56\xd0\x93\xf1\x89\x3a\x41\xef\xeb\xdd\xf9\x2a\x29\x76\x78\x34\x3e\xa6\x79\x74\x1f\xff\x3b\xcd\xab\x5b\xf9\x17\xaa\xb9\xac\xe9\xd2\xf4\x95\x2e\x4a\xc4\xa6\x05\xf4\xaf\x36\x38\x99\x90\xbd\x3e\x79\x56\xf4\xbc\xdc\x60\x4d\x95\xba\x55\xe6\xfc\x2d\xec\x3c\x1d\x08\xdf\xb2\xd2\x74\xa2\xf5\x63\x32\x6b\x0d\xad\xb6\xb9\x8f\xd6\xd2\x73\xd6\x71\x77\x65\x7c\xcb\x87\x6f\xe5\xab\x96\x78\x52\x7c\x1c\xd0\xc3\x9b\xf6\x85\xce\xaf\xc4\x83\x0c\x82\x45\x05\xd4\xf5\xeb\x18\xc7\x09\xd9\xae\x48\xfb\xdb\x06\x13\x55\x3a\xdb\x85\xfc\x30\x9d\xe2\xe6\xfa\x7c\x5e\x81\x1b\x4c\x99\x71\xb5\x51\x6b\x1d\x31\x95\x36\x0e\x63\xbe\xd8\xfa\xe8\x04\x1f\xfe\xf7\x39\xb4\x4e\xd6\x8f\xda\xc3\x1d\x7d\x5e\x71\x4e\x18\xe2\x77\x89\xec\x0e\x88\xbf\x43\xeb\x2a\xf0\xe3\x2f\xb4\xee\xfc\x4f\xbe\xa7\x38\xe4\x23\xf2\xe6\xdc\x5f\x08\xe3\x86\xd3\x16\x84\x8e\x07\xac\x5b\x36\x86\x66\xef\x89\xfd\x63\x7c\xc5\x83\x71\xa8\x62\x75\x96\xa5\x4e\xab\x89\x3f\x66\xb6\xc6\x95\x78\x0d\xcd\x3c\x98\x89\x9e\xb4\x8f\x4e\x53\xf4\xa1\x4f\x1b\x6f\x1e\x40\x27\x93\xa1\x77\x38\xaa\x29\x56\x85\xd0\x04\x74\x3c\xbc\x51\xcc\x4c\xc3\x44\x7f\xd8\xa4\x2d\x47\x19\x56\x94\x67\x1f\xe6\xbf\xa4\x32\xce\x1b\xd9\x38\x8d\x79\x2f\x72\xf3\x28\x27\x8f\x56\xb0\xa1\x6f\x10\x25\xc3\x0a\x2d\x51\x19\xac\x44\xb2\x69\x62\x2c\xed\x9f\x9b\x16\x65\x13\x93\x33\xe2\x42\x31\x59\x10\x71\xbb\x96\xfb\x02\x19\x9f\xa1\x4c\x36\xdc\xee\x07\x5a\xf9\xff\xc2\x8b\xa1\x9c\x21\xb0\x94\xea\x74\x76\xcb\xc9\x1f\x3c\xc3\x98\xcf\xe6\xa2\xb2\x8a\xf2\x05\x27\x91\x17\x61\xbb\x7c\x1d\xcd\xf6\x92\xae\x9e\xb4\x9b\x19\x37\x7a\xd3\xb7\x32\xf4\xf3\x23\x6f\xd6\x19\xe8\x4f\xf9\xf2\x24\x93\x60\xda\x17\xd5\x7e\x5d\x4f\xfb\xe2\xa0\xcb\x1b\xe9\x7d\xa4\xba\x30\x72\x59\x31\xa2\x60\x52\x9c\x78\x93\x21\x31\xb4\x1d\x79\x9c\x94\x0f\x93\x18\xa2\x4a\xb8\x5b\xe2\x09\x9e\x87\x84\x0f\xf3\x89\x39\x10\xdf\xc8\x3c\xca\x04\xe3\xd5\x14\x81\xe2\x1f\xf0\x0c\x27\x34\x31\x5f\x2c\xa1\x22\x93\x98\x16\xf1\xb9\x3b\xc9\xee\x38\x95\x6a\xf2\x9f\xb8\x86\xfa\x5d\xc2\x18\xf3\xb0\x81\x3c\x74\xf3\xf1\x47\xe4\x07\xd1\xf5\xaf\x89\x1f\x12\x7d\xe8\x23\xf1\xaa\x98\x17\xe3\x23\xbf\x8a\x78\xd2\xeb\x5e\xb9\xd0\xfa\x5d\x65\xc4\x5f\xd7\x4e\xc5\x93\xf2\x00\xeb\x59\xbe\x94\xa5\x99\xfc\xee\x4f\x7c\xda\x79\xc7\x02\x09\x85\x9d\x75\x3d\x84\xde\x65\x7a\xfb\x0d\xb4\x7f\x6a\xac\x0a\x27\x6f\x54\xf5\x8b\xa6\xf8\xa0\x6c\x18\x4d\x27\xf8\x6e\xd5\x71\x22\xee\x9f\x20\x9e\x5c\x9a\xf9\x30\x7a\xed\x08\xa7\x96\xe4\x72\x86\x9a\x6e\xcc\xfe\x90\xde\xc4\x1d\x0b\x33\x9c\x0d\xc9\xee\xe6\xbe\x49\x03\x79\x45\xa6\xdf\xf0\xa3\x15\x99\x7e\x85\x95\x49\xd2\x23\x98\x69\x91\xbe\x9a\x95\x17\x24\x77\x2b\x69\x3e\xd3\x3e\x9d\xa0\x9a\x59\x9a\x0a\xf7\x0d\x4a\xd3\x7c\x48\x2b\x38\xb9\xdd\x0b\xc2\xd5\x93\xb7\xfc\x4d\x0c\x2f\xe6\xc5\xac\x2b\x73\xa5\x78\xe7\x5c\xef\x4e\xbb\xb5\xa3\xa3\x1f\xcd\xe2\xb2\xd9\x01\x64\x8f\x45\x49\x30\xe9\x1b\x2c\xa2\xce\xbf\x80\xa1\x2e\x27\xde\x7a\xe2\x73\x9e\x7c\x35\x8a\x02\xe5\xb8\x2a\xe6\x0b\x0c\x3b\xc0\xa8\x6b\x9f\x82\x04\x62\xbd\xc9\x37\x30\x2a\x0f\x48\xc4\xcc\x35\x5b\xcc\xe4\x73\xde\xb6\x23\x7f\xdd\x1a\xab\x44\xf1\x3d\xc7\x67\x24\x2b\x7a\x2d\x98\x42\xff\x32\xe7\x00\x77\x38\xcb\xd1\xb1\xa0\x78\xb9\xf5\x9c\x13\x3d\xef\x9c\x79\xde\x94\x57\x6d\x93\xe1\xfb\xfe\x39\x27\x53\xc9\xf3\x72\x32\xf3\x88\xc9\xb1\x75\x65\x39\xf3\x67\x7c\x8e\x53\x44\xdf\xa2\x7d\x81\x74\x93\xb6\x24\xdc\xa6\x3c\x3c\xab\xf1\x45\x13\x8f\xac\x1f\x94\x51\xd5\x14\x01\xac\xb5\xf7\x21\x3e\xa8\xa3\x97\x1f\x45\x1d\x29\x0f\xa6\x59\x0f\x47\x2e\x34\x8b\xfd\x80\x55\xcd\x66\xcb\x32\x1f\x66\xc6\xee\x38\xfa\xf4\x09\x89\xac\x93\xa2\x66\x96\x44\xab\x6e\x08\xd2\x28\xab\x93\xf6\x89\xea\x78\x8c\xf9\x02\x8c\x3c\xe1\xdf\xf8\x30\x2e\x4a\xf4\x9c\x0a\x9f\xa8\x52\x5e\x54\xa8\x30\x99\x6a\x39\x45\x43\xf5\x4d\xf9\xf5\xac\xe8\x55\x70\xc8\x81\x76\xa4\x42\x53\xcf\xcf\xfc\x7b\xfe\x86\x52\x9d\x98\x42\xf9\x6d\x79\xfc\x7b\xce\xab\xf2\x23\x58\x43\x37\xdf\xe6\x2c\x79\x7c\xae\xff\x0d\x7a\x22\xb9\x43\x1b\x89\x57\x94\xbb\xfd\x0d\xe5\xdd\xb9\x9e\x9f\x03\x5a\x78\x40\x2b\x9c\x19\x45\x5f\x3a\x25\x8c\x76\x19\xf3\x58\x7e\xde\x46\x11\x31\x94\x57\xcc\x9b\x1a\x47\xf9\xf6\x2c\x93\x44\xfa\x79\x9a\x76\x32\xc5\x3f\x8d\x95\x12\x72\x10\xd5\xce\x19\xe4\x85\x03\x3d\x32\xe9\xd4\xa3\x90\x9c\x4d\x51\xb0\x7d\x62\x4e\x41\x6b\xfb\x77\x3a\xf3\x58\xda\xab\x03\xbd\x63\xe9\x54\x25\xaa\x79\x95\x5e\x19\x49\x71\xac\x74\x20\xf3\x1f\x4a\x1f\xcf\xa1\xb3\x7d\xe9\x22\xee\x1f\x55\xfc\x96\x15\xbd\x8a\x5f\xb1\xe7\x96\xbe\xdc\x48\xeb\xbe\xc4\x2d\x9e\x74\x73\x4a\xae\xe4\x90\x7f\x94\x1a\x95\x52\x3c\x2d\x4e\xaa\xa5\x7f\xbf\x2b\xe1\x34\xcd\x5f\xf1\x18\xee\x1b\x54\xdc\xff\x31\xd5\x0e\x76\x4c\xfb\x95\xe2\xc4\x0e\xc9\x07\x33\xc0\xc1\x39\xcc\x88\xd7\xc1\x26\xd2\xc9\x59\xe2\x15\x43\xe7\x07\x13\x49\xc2\x64\xf6\x03\x5e\xd7\x73\xf6\xa5\x92\xdf\xcc\xb0\x97\x90\x7f\x4c\xae\xca\x22\xef\x1c\xfb\x90\x79\x5f\xc3\x2b\x59\xd5\x4a\x79\xf7\x76\x7a\xba\xbd\xd4\x0b\x68\xdf\x90\xf3\x93\x56\xf0\x9a\xf9\x30\x62\xbc\xa8\x18\xda\x9e\x3c\xa4\x62\x34\xc7\x87\x8a\xe8\xe1\x54\x03\xaa\xd0\x99\x48\xeb\xb7\x1c\xdc\xe9\xb2\x22\xd6\x84\xf6\xbf\x0a\x23\x3b\xda\x71\xca\xd7\xaf\xa3\xc8\x5e\x9e\xc0\x0c\xc5\xf2\xab\x9b\x29\xcf\x2e\x77\xe5\x6f\xb2\xb7\x66\x07\xbd\xbe\xfc\xc2\x7e\x7a\x12\x7b\x8c\x4f\x32\xef\xe5\x1a\x97\xc6\x76\x7f\xbe\x4f\x19\xf4\x9e\xed\xbf\x50\x4d\x75\x4f\xc4\x87\x41\xad\x78\x40\x94\x95\x5a\x98\x33\x1f\x64\xb1\x4b\x2a\xed\x8f\x86\xbf\xa6\xd3\xbe\xa0\x37\x27\x93\xd6\xc3\x74\xbb\x2d\xa4\x3e\x35\x71\x1d\xf7\x4b\x1a\x6b\xc2\xbc\x98\x11\x06\x45\x74\x9a\xe9\xaf\xc0\xbc\x98\xee\x2b\x77\xd1\xbd\x13\xb9\xca\x52\xb1\x52\x23\x3d\xd9\x57\x8b\x1d\x91\x0f\x5c\xe3\x75\x71\xe0\x04\xe7\x51\x07\x1e\x0d\xa7\xef\x5d\xf3\x74\x02\xcd\xd8\x01\xf9\x59\x64\x77\x4d\xcf\xc5\x34\x5f\x35\xea\xb6\x64\x48\x4d\xbe\x2b\xed\x33\x07\x9c\x83\x6a\xf9\x75\x31\x54\x53\xab\x39\x91\x71\x84\xdf\x6f\xa7\xd8\x17\xa9\xaa\x81\x47\xbe\x6b\x57\xa5\x72\x81\x56\x76\x75\xee\x5d\xe6\xc1\xf4\xfc\x59\x8f\x7f\xff\x76\x10\xf0\x4b\x03\xeb\x60\x3c\xd1\x04\x06\xbc\x06\x1e\xfe\x06\xf4\xbf\x0d\xdc\x99\x09\x28\xef\xe0\x7a\xfe\x40\x53\xe0\x92\x1e\xa0\xb2\xf1\x5b\xbc\xff\xd8\x7d\x60\xf4\x0a\xe0\x50\x57\xee\xd7\x5e\xb9\x01\x98\xfa\x06\xd8\x7d\x16\xd0\x8e\x6c\xd1\xf7\x2f\x0c\x03\xe6\xef\x03\x84\x58\x66\xe2\x09\x6c\x1b\xc9\x78\x45\x8e\x23\xe0\x30\x08\xd8\x72\x06\x58\xb3\x92\xf1\x6f\x2f\x2f\x20\x7b\x1d\xb0\x61\x03\xeb\xd6\xc7\x28\x02\x99\x77\x81\xe4\x1c\x20\xfb\x12\xeb\x1f\x6c\xdd\x02\x94\x9c\x07\x72\x23\x80\x83\x12\x21\x7a\x70\xe7\x9d\xa2\xd1\xc0\xad\x9f\x79\x15\x36\x06\xf2\xf8\xc7\xa8\xaf\xf0\xff\x2f\xff\xce\x7f\x78\xe1\x09\xf4\x79\xd8\xc2\x77\xb8\xbf\x11\xe8\xa7\xf1\x2f\xbc\x87\x42\xa0\x7f\x12\xf7\x37\x18\xe8\x0e\x1c\x7f\x03\x0c\xeb\x01\x1c\x7a\x0c\x8c\x74\x05\xaa\x1b\x81\x71\xf7\x04\xef\x05\x26\x96\x03\xa5\xfb\x81\x69\x45\x2d\xfa\xfe\xf9\xc6\xac\x5f\x9e\xf3\x86\xfb\xd9\x37\xe3\xfe\x9a\x80\x70\x12\xc9\x18\x0c\xac\xd6\x03\x32\x82\x58\x17\x24\xfd\x57\x20\x64\x14\x90\x61\xc1\x18\x58\xfa\x3d\x20\x25\x8b\xef\xc7\xe6\xd8\x33\x5e\x28\x9c\xaf\xb2\xb3\x81\xda\x76\x40\x8e\x25\x50\xff\x33\x90\xb7\x99\x75\xbd\x73\x55\x80\xc6\x5f\x81\xfc\x09\xc0\xfb\xee\x2d\x7d\x40\xda\xda\x2f\xe5\x3f\x48\xf5\x2e\x1e\x95\x02\xdd\x6e\x31\xde\xdf\x7d\x18\x70\x73\x28\xd0\x53\xf9\x5f\x78\x0f\xd5\xdc\x37\xe5\xd8\x58\x40\xf9\x19\x50\x3b\x14\x18\x36\x80\xfb\x7c\xa8\xa6\xb5\xf0\x1f\x76\xd5\x73\x6d\x58\x3a\x0f\xdb\x77\x02\x06\xb3\x80\x2d\x19\xc0\x42\x6d\x20\x3d\x0c\x30\xdb\x06\x64\xfe\x0e\x2c\xcf\x01\xd2\x35\x01\xe7\x13\x40\x62\x95\x70\xa2\x02\xd2\xf2\x81\x90\x3a\x20\x75\x21\xdf\x55\x4f\xed\x09\x24\xe7\xb3\xc6\x7b\x8e\x0e\x90\x31\x10\x28\x0d\x6c\xe9\x7f\xb0\x35\x15\x38\x3f\x89\xfd\xec\x8e\x39\xb0\x7d\x30\xf0\xd3\x27\xe6\xd9\x7c\x38\x06\x64\xab\xfe\xbb\xfd\x31\x62\xdd\xfa\xd9\x43\xa0\xd3\x6c\xe0\xde\x5c\xa0\x63\x31\x70\xe7\x0d\xf7\xe5\xff\x9a\xf7\x20\xcc\x43\xfd\x0d\xa0\x9b\x1d\x70\xf4\x32\xd0\xe3\x00\xf7\x96\x17\xe6\x43\xda\xe7\x61\xaf\x1d\x30\x7c\x02\xb0\xc3\x1c\x50\xbd\x06\xe4\x9f\x02\x34\xfe\x01\xb6\x15\x01\x53\x36\x00\x39\xc3\x00\xbd\x72\x20\xa3\x14\x98\x67\xc8\x18\xbe\x99\x0a\x90\x5c\x00\xd8\xe8\x00\xc9\x71\x80\xd3\x1b\x9e\x07\x21\x93\x8b\x73\x01\xfc\x5d\x80\x24\x59\xc6\xf5\x92\x2c\x80\x14\x35\x20\xb1\x07\x90\xa3\x08\x24\xf5\x07\x8a\x1f\x70\x0f\x80\x83\x85\x40\xfa\x25\xe0\x7c\x39\xdf\xa7\xbf\x35\x14\xc8\x3a\x0f\x3c\x7f\x00\x6c\x39\x09\x7c\x92\xfd\xd6\x7e\xa9\x0e\x82\xb4\x1f\xc2\x63\x2b\xa0\xdd\x32\xe0\xbe\x10\x7b\x4e\x02\x37\x1f\x31\xfe\x4f\x35\x9d\x93\x22\xbe\x77\xed\x5f\x78\x0f\x11\x40\x4f\x21\x1e\x78\x03\x7d\x7b\xb4\xe0\xfd\x52\xbd\x83\xbc\x59\xc0\xd8\x32\x7e\x76\x13\xf3\x98\xf7\x20\xf8\x85\x64\x13\x60\xb8\x09\x48\x72\x11\x62\x71\x0b\xee\x1f\x9d\x03\xd8\xe7\x02\xd1\xbd\x80\xb5\x46\x40\xd4\x2d\xe6\x07\xc5\xd6\x01\x91\x11\xcc\x05\x49\x0a\x03\x62\xf7\x03\x39\x69\x40\x6c\x29\x50\x32\x0d\x88\x7b\x03\xd4\x4c\x00\x12\xca\x38\x76\x49\xfa\x03\x77\xac\x80\xa4\x6d\xc0\xf3\x58\x20\xb5\x16\xf8\xa7\xfb\xb7\xf6\xb7\xc5\xc1\xa5\xfd\x4e\xee\x06\x73\x14\x97\xf2\x1e\x2e\x1d\xe6\xf1\xfc\x55\xfe\xbd\x94\xf7\x70\xf8\x2f\xa0\xbd\x3d\xaf\x83\x4e\xee\x8c\x6f\x75\x7f\x03\x94\x28\x02\x7d\x43\x81\xbc\x5c\x8e\x1f\x5b\x63\x99\x57\x97\x39\x00\xd0\x98\x08\x48\x94\x18\xcf\x4c\x8a\x05\x66\xc7\x02\xb1\x03\x5b\xe3\xfe\xe1\xa2\x5e\x4c\xc4\xdf\xc0\x1a\x43\x20\xbc\x0e\xf0\x09\x04\x22\xbb\x03\x61\xa1\x40\x94\x0d\x90\xf4\x08\x10\x72\x48\x61\x7f\x8c\x8c\x03\x8a\xdd\x18\x0b\xaf\x7e\x0f\x44\xbb\x02\xf5\xbf\x02\x51\x93\x80\xeb\x73\x5a\x74\x20\x12\x4a\x80\xcf\x0d\x2d\xfc\x17\x21\xf7\x12\xce\x57\x6d\x75\x20\xfe\x7f\x79\x0f\x07\x84\xbd\xea\x40\x4b\x9f\x87\xe2\x1d\x40\x27\x35\xd6\xad\xe9\x36\x8a\xf9\x58\xc2\x7a\x91\xea\x1d\x48\xde\x02\xa3\x7f\x01\x12\x17\x02\x93\x3b\x02\xb1\x2b\xf8\x6e\x71\xa4\x3c\x30\x57\x07\x08\x2d\x04\x8c\x9f\x03\x1b\x34\x01\xeb\x5c\xd6\xe9\x58\x95\x21\x9c\x06\x01\xef\x06\xfe\xde\xc2\xff\x87\x0e\xe7\x13\x4a\x98\x23\xb0\x35\x01\x08\xf5\x04\x4a\x84\x7f\x3f\x15\xd8\xff\x16\x08\x0b\x00\xce\xe4\x00\x11\x5a\xdc\xc3\x47\x98\xa7\x5f\xc6\x00\xe1\x17\x81\x7f\xfe\xf7\xad\x0e\x84\x54\xff\x42\x8a\x87\x3f\x68\x27\xfa\xc1\xff\xc1\x7b\x38\xaa\x21\xce\x83\x88\xeb\x36\xf3\x1e\xbe\xe7\x51\x88\xcf\x82\x7f\x6c\xd9\x0b\xf4\xba\x01\x48\x66\x02\xfd\x06\x00\xf1\x8b\x80\x21\x97\x80\xa8\x26\x40\x7d\x03\xaf\x75\xad\xee\xdc\xc7\x62\x4e\x02\x10\x74\x1d\x58\x58\x04\x04\x5a\x03\x4b\x7e\x67\x1c\xcc\x49\x13\xc4\x7a\x17\xe2\x65\x80\x03\xb0\x3e\x10\x08\x54\x00\xe2\xf7\xb2\x16\xc2\xd6\xeb\x40\xd0\x61\xa0\xe4\x0f\x60\xfd\x2d\x8e\x55\x41\x2f\x81\xf3\x36\x40\x70\x3d\x73\x9a\x84\xd3\xc1\xeb\x57\x2d\xf6\x7f\xc3\xff\x68\xd3\x0f\xa3\x2d\xef\xe1\xf2\x54\x1e\xcf\x04\xb7\xf6\x83\xb6\xba\x17\xdf\xf4\xbb\x10\xf5\x0e\x52\x2a\x81\xf6\x47\x99\xdf\xd4\x2b\x16\xd8\x54\x0d\x0c\x48\x67\xde\xca\xa8\xae\xc0\xfa\x55\xc0\x24\x7b\xb6\x57\x88\x17\x7e\x67\x81\xf9\xe7\x00\xaf\x3a\xc0\xfc\x05\xef\x99\x2b\xaa\x01\x77\x2f\xc0\xe5\x21\xe0\xf1\x1e\x08\xba\xc1\xf7\xe4\x05\x7f\xf0\xb5\x63\x7f\xf0\xe9\x0c\x94\xe6\x73\x1f\x8c\x83\x97\x01\x9f\x1e\xc0\xf9\xd7\x80\x4f\x0a\x70\x57\x0e\xf0\xab\x01\x5e\xab\x00\xbe\x95\xcc\x8f\x92\xf2\x3f\xa4\x76\xaf\xf0\x17\x79\x00\x31\x3c\x4a\xfd\xe0\x9b\xbe\x2f\x83\x79\xfc\x06\xf7\x97\xae\x87\x36\xfc\x8f\x4c\x91\x17\x92\xec\x0b\xc0\x86\x7b\xfc\xc8\xab\x70\xd5\x45\x29\x95\xe3\xd1\x10\x00\x7e\x1d\x78\x5f\xf5\x11\xe2\xc5\x51\x7e\x3e\x73\xdd\x00\xf7\x3b\x80\xd9\x1a\xe6\x33\x2c\x77\x07\xd6\x8c\x06\xd6\x96\x02\xae\x1e\x40\xc8\x0d\xfe\x7d\xdc\x36\x91\x6b\x9a\x04\xb8\x2e\x02\xca\x3c\x79\x3c\xd4\x08\xb8\xdc\x03\x2e\x85\x02\xeb\x1a\x81\x07\x39\xcc\x9f\xf8\xed\x61\x0b\xff\xc3\x49\xd4\x87\x59\x96\xc8\xa3\x54\xff\x42\xca\x07\x68\xdb\xf7\x45\x8a\xfb\xd7\xc9\x8b\x7e\xa0\xcf\x63\xd5\x9e\xd6\x7e\x50\x24\xda\x9d\x63\xc1\xa3\xb4\xef\x87\x14\xf7\x17\xe2\x99\x8c\x37\x10\x28\x01\xe4\x45\x6e\x8b\x10\x37\x3c\x1a\x01\xd5\xb3\xc0\x3a\x09\x30\x45\x16\x58\x53\x0e\xe8\x9d\x00\x9c\x56\x0a\x67\x3a\xe6\x39\x2c\x53\xe1\x71\xad\x3b\xe0\x34\x81\x75\xb5\x1c\xac\x79\xcf\xb0\xeb\xc1\x39\xa6\x9d\x3a\xef\x51\xf6\x1a\xc0\xc1\xa7\xcc\x15\xf8\xce\x9e\xff\x7e\x4f\x07\xb0\x33\x03\x5e\xbd\x01\x6c\x35\xd8\x1f\xac\xbb\xb0\xbd\xa6\xbd\x5b\xf3\x20\xa4\x7c\x80\xb6\xfc\x97\x53\xa2\xfe\xc5\x91\x61\x6d\xfc\xe0\xff\xe0\x7f\x88\xdd\x98\x11\x27\xe2\xc0\xeb\x45\xdc\xd8\x37\x09\x90\xfd\xc0\xcf\xbb\xd7\x33\xc0\x79\x23\x30\x58\x0f\x70\x58\xc4\x7e\x61\x37\x1c\xd0\x32\x00\xec\x74\x81\xf9\x05\xcc\x91\x5a\x3a\x11\x58\x76\x0f\x58\x13\x0b\x2c\x7d\x02\x04\xa6\x01\x4b\x1a\x98\x5b\x66\x35\x00\xc8\xb6\x01\x96\x80\xb9\xba\x96\x55\xac\x97\x63\x19\x0c\x5c\xec\x26\x9c\x93\x79\x1e\x84\xf1\xb5\x0e\x60\x16\xd5\xc6\x6e\xa9\xfe\x45\x68\x6b\x1e\x44\xb3\xee\x43\x5b\xfe\x4b\x53\x6b\xfb\xdb\xfa\x41\x33\xff\x43\xe4\x79\x24\xa9\xf2\x28\xed\x7f\x22\xd5\xbf\xf0\x10\x7f\x5e\xb5\x0a\xe8\x74\x01\x58\xa1\x01\xf4\x7d\x05\x2c\x3b\x0d\xa8\xba\x02\x96\x56\x9c\x77\x5a\xe8\x02\xfa\x15\x80\xc9\x31\xe6\x97\x9a\x6e\x67\x6e\x8c\xb1\x1f\xfb\xd4\xe2\x23\x40\xec\x41\x60\x61\x05\x90\x3d\x84\x75\x3d\x4a\x8d\x58\x4b\x44\x38\x5f\x18\xa6\xf3\xb3\x9c\x3b\x8d\xe7\x61\x6e\x3d\xf0\xb2\x1d\x30\x37\x0f\x68\x5a\xd2\x62\xaf\x96\xa8\xf7\x30\x31\x4b\xd4\x81\x10\x79\x21\x67\xc5\xbe\x2e\x75\xff\x88\xeb\x40\xb4\x4b\xca\x7f\x91\xe2\xbe\xbb\xc4\xbe\x6b\xdb\x45\x7d\x88\xb6\xfc\x8f\xcd\x62\x57\x51\xf1\xe5\x08\x10\xd7\x91\x8b\xf8\x77\x5b\xf1\x0f\x96\x4f\x81\x6e\x05\xac\xa1\x35\xb8\x04\x58\x78\x1b\x50\xbf\x0b\x2c\x94\x03\x66\x09\x39\x56\x1a\xeb\xae\xe9\xbf\xe4\xb5\x31\xfb\x0e\x73\xa9\x66\x79\x71\xcc\xd1\x55\x07\xb2\xde\x00\x33\x82\xb9\x47\x9f\x96\x02\x50\x3b\x1a\x98\x5e\xce\xf3\xa0\xe5\xc6\x1c\xd0\xa9\x8d\xc0\x2f\x60\xfd\x0b\x21\x7f\x90\xda\x3b\x5a\xdc\x37\x46\x8a\xba\x83\xc3\x56\xf2\x78\xaa\x0d\xff\xa3\x4a\xac\x9a\xed\x11\xe3\xc2\x2e\xe9\xbe\x28\xaa\x69\xfe\x27\xff\x43\xea\x07\xb3\x45\x3f\x10\xe7\xd1\x59\x54\xdb\xb4\x16\xf9\xba\x46\x5e\x80\xdc\x1b\xc0\xd0\x1f\xe8\xdb\x15\x98\x6d\x08\xa8\x3d\x07\x66\xf6\x00\xb4\x5f\x00\x33\x5e\x30\xcf\x76\x5a\x2d\xe0\xe0\xc8\xbe\x22\xe4\x11\x13\x43\x80\x4d\x76\x80\xa6\x29\xf3\xee\xd5\x97\x02\x3b\x07\x00\xe3\x66\x02\x35\xff\x8f\xbd\xf7\x0e\xab\xf2\x5a\xde\x40\x5f\x45\xb1\x83\x20\xd8\x80\x2d\xa8\x58\xe9\x8a\x85\x22\x45\x05\xe9\x55\x90\xde\x41\x90\x2e\x28\xd2\x9b\x22\xa0\xa2\xa0\x28\x28\xa0\xc6\x6e\x2c\x58\x63\xec\x41\xa3\x31\x2a\xb6\x58\x12\xa3\xc1\x12\x93\xd8\x63\xaf\xdf\x7d\xf6\xcc\xb7\x41\xf1\x78\xcf\xef\xfe\x7d\x4f\x9e\xe7\x3c\xeb\x80\x9b\x6f\x7f\x6b\xad\x99\x59\xb3\x66\xde\x79\xa7\x33\x30\x4c\x1d\x68\xc8\x01\x86\x04\x01\x17\x2d\x80\xc1\x2f\x80\xbb\xbd\x00\xed\x4c\xe0\xcd\x0e\xee\xd5\x24\x9d\xaf\xba\x88\x1f\x94\xda\xee\x4f\x71\x10\xad\xf1\x2f\xb2\x28\xc1\x1a\x71\xbf\xbf\x86\xff\x98\xa7\xf8\xf9\xfc\x65\x38\xa0\x14\x31\xfa\x14\x6d\xc8\x63\xb0\x28\x1f\xee\xc3\x79\x1c\xaf\x05\x5a\xb9\xb1\x43\xdb\x0e\xef\xf6\x2b\x30\x32\x46\x2e\x5d\xab\x11\xd0\x2f\x6d\x37\xc3\x78\x22\x30\x7c\x50\x7b\xfd\x49\xf3\x80\xc1\xc9\xed\x3d\xfc\x7c\x80\x81\x21\xed\xfb\xc7\xd9\x03\x5a\x17\xdb\x9d\xc9\x3e\x07\xf4\x2b\x6a\x37\xae\x6c\x33\xa0\x51\x2c\xb7\xac\x6e\x3f\xa0\xb6\xba\xed\xb5\x6d\x89\x40\xdf\xa0\x36\xbb\x0f\xe7\x00\x7d\xc2\xe0\xd7\x28\xf5\xf5\x4f\xf0\xdd\xb1\xe7\x3b\xe0\xe9\x71\x40\xe5\x5b\x9e\x6f\x77\x75\x71\x14\xfb\x94\x76\x17\xf1\x73\x5f\xe3\x3f\x59\x2d\x66\xdf\x64\x5d\xd8\x17\x16\xb5\xa1\x6c\xc1\xbc\x2e\xf2\x84\xa0\x29\x28\x92\xa7\xbc\x4e\xfa\xbf\x1d\x69\x85\x92\x6c\xba\x12\xc2\x6a\x6a\xbb\x6e\x94\x45\x0a\x0a\x57\xa0\xc0\xb7\x67\xb6\x12\x59\x12\x9b\xfd\xca\x84\x38\x1c\x5d\xde\x83\x34\x48\x3b\x4a\x75\x4a\xbb\x09\x80\xe6\xd0\x9e\x1b\xfa\x0c\x05\xd4\x4a\x7b\xf5\xd7\x7d\x0c\xf4\x5a\xd3\x6b\x82\xb5\x37\xa0\x32\xa6\x97\xce\xe4\x6b\x80\xd2\x88\x9e\xc7\xa7\x4e\x00\x14\xbe\xeb\x99\x99\x3e\x01\xe8\xaa\xaa\xfa\x77\xe9\x1c\xa0\xb3\xb2\xaa\xfe\xf2\x3f\x80\x8e\xb1\x2a\x4a\x9b\xdf\x03\x1d\x0c\x94\x9f\x1c\xe8\x0d\xb4\xbf\xab\x6c\x78\x7a\x02\xd0\xee\x99\x52\xbb\xeb\x57\x81\x76\x9d\xbb\x07\x3f\x9a\x0d\xc8\x85\x29\xd6\x49\xe7\xdb\x46\xa5\x5b\x95\x74\xec\xf0\x4b\x47\xea\xcb\xdb\xe1\x95\x3c\xf1\x83\x7c\x75\xfe\x12\x39\xaa\x92\x5b\x78\xbc\x0b\x45\x6d\x8a\x2f\x2a\x50\x9c\x2d\xf7\xb9\x0a\xc5\x31\x65\xf8\x97\xc4\xf2\x5e\x9c\xf7\x89\x57\xa3\x38\x5e\xe0\x10\x35\xca\x36\x7a\xd6\x6b\x52\x7c\x7a\x52\x1c\xf3\x68\x98\x6a\x0f\xa4\xfc\xe8\xd0\xc9\xda\x84\x4c\x55\x2d\x19\x44\x12\xd7\xd5\x71\x88\x76\xf7\x46\xa0\xc3\xc6\x21\x35\x83\x74\x00\xb9\x8b\x43\x76\x9a\x4a\x25\x26\x73\x48\x2f\x17\xca\x9c\x0c\xce\x0d\x23\x44\xc9\xe0\x95\x33\x28\xe3\x34\xb8\xdd\x5c\x8a\x27\x0d\x7c\x51\x4d\x92\x35\xe0\x3e\xbf\x7b\xff\xd4\x7d\x94\x41\xd0\xca\xf9\x99\x3a\x65\x6b\x6a\xfe\x46\x32\xdb\x6f\xcd\x03\x8a\x98\x4a\x16\x71\xbd\x7f\x9f\x64\xce\x63\xa9\x88\xf5\xdd\x4a\x35\x82\xf0\xe5\xfc\xab\x8a\xbb\x50\x55\xed\x22\x89\x22\xed\x73\xc9\x10\xe6\x81\xc9\x13\xd4\xe8\x24\x99\xd5\xc0\x7c\x19\x49\x9a\xfd\xa9\xda\x30\x4a\x51\x9b\xa2\xcc\x81\x75\x43\x28\x3b\xeb\xa9\x35\x8c\x4e\x4c\x07\x77\x1d\xc2\xff\x58\x82\xf3\xe8\x86\x12\x03\x3a\x71\xfa\x6d\x19\x41\xb3\xea\x9c\x67\x9c\xc3\xdf\x38\xba\xb0\x2b\x21\xaa\xc6\x28\x0d\xa0\xfc\xd5\xa8\x26\xce\x6f\x8e\x32\x70\xa6\xfa\x65\xe3\x1c\xce\x5b\x18\xb7\xe1\xfc\xcd\x48\xcc\x21\x19\x35\x3a\xb7\x8c\xe2\x72\x46\xe6\xdc\x39\xdc\xe0\xd6\x5e\xaa\x7b\xd3\x8f\x38\x49\xf5\xa9\x7a\xe5\x57\xc9\xd7\xd5\x2b\xbd\x4f\xf3\x1d\xbe\x91\xf3\xfe\x43\xc4\xfa\xee\x01\x62\xdd\xbf\x84\xfa\x29\xad\x4a\xec\xc0\x59\x03\x6d\x25\xda\xa7\x05\xba\xbd\x29\x4a\x58\xa2\xa9\x9e\xcd\xfa\xaf\x4d\x6f\x95\xde\x87\xab\xaf\x93\xb2\xb9\x4b\x45\x74\xb0\x1e\x7d\x4b\x90\xbb\x11\xc5\x6d\x27\x27\x8e\xa4\x6c\x8b\x93\xd6\x18\xb2\x8c\x56\x23\x4d\xc8\x23\x1b\xf5\xc4\x94\xb2\xb7\x83\xcb\xcc\x89\xdd\x44\x55\x8f\xa3\xaf\x10\xf9\x43\x00\xeb\xbf\xbb\x11\x22\x60\x82\xca\x00\xe2\x3d\x18\x5f\x3d\x96\xe2\xe9\xd6\x26\x4e\x54\x8f\x37\xde\x3d\x84\xe2\xec\x56\x39\xc9\x1f\x78\xe4\x4c\x91\x55\xa7\x4a\xe2\x78\xb2\x78\xba\x96\x90\x3b\x16\x79\x7b\x29\x12\x3e\x2e\x97\x7d\x21\xb3\x1f\x2f\x8b\x15\xc7\xf7\x48\x2e\x4c\x9e\xbe\xa6\x19\x8d\x36\xe2\xf9\x1b\xd6\x08\x9f\xf0\xa2\x54\x35\xf4\xa2\x28\xff\x42\x79\xcd\x57\x24\xff\xd9\xda\xf4\x2d\x79\x8f\x86\x93\x3e\x64\x94\x1b\xd0\xbc\xa6\xab\x1a\x52\xbe\x2b\xe6\xde\x28\xca\xa6\x04\x4f\x37\xa1\xf5\x9b\x92\x37\x8e\x3c\x4f\x97\xf2\x71\xc4\x93\x30\x31\xd2\x9a\x3e\x67\x12\x33\x91\x78\x3f\xf4\xd2\x6d\x89\xc7\xbd\x9f\xcb\x24\x8a\xb2\x76\xbb\xe9\x28\xe2\x1f\x9c\x44\x84\xb2\xb3\x9f\x22\xdd\x5d\x9c\x9b\xf8\x9b\x9d\x5e\x8c\x26\xe3\xea\xbc\xcd\x81\x7c\x78\x97\xf8\x20\x75\xfe\xf7\x44\x3a\x73\x9c\x94\xf3\xc8\x87\x73\xca\xa8\x20\xbc\x80\xe3\x94\x35\xa4\x3f\x0e\x79\x3b\x49\x7e\xec\x6b\x1b\x48\x6f\xec\x24\x17\xcc\x78\xbc\x4b\x91\x68\x1b\xf3\x67\xa4\x17\x32\xfc\x87\x85\xc8\x7f\x60\x42\xf8\xa8\x45\x92\x81\x94\x5d\x2e\x4e\xd7\xa1\x2e\xdf\xf9\x37\xf4\x49\xba\x32\xbb\x18\x53\x36\x21\xf9\x9e\x19\xf1\xe0\x4c\x5b\xc4\x38\x98\x50\x2d\xee\xda\xe2\x2b\xc7\x3c\x30\xae\x71\x94\x44\xc2\x24\x4b\x7b\x42\xb1\x8c\xab\x75\x22\x79\x1f\xf9\xbb\x33\x65\xe5\x06\xc5\xba\x90\xc7\xde\xab\x82\xab\x51\xe5\xaf\x4d\xfe\xc8\xf3\xf7\x16\x19\xed\xa6\x1c\x55\xa2\x7d\xf2\x69\x60\x1e\xef\x29\x47\xb9\xae\xd9\x47\xd9\x9e\xce\xec\x29\x57\xfc\x29\x4f\xed\xa3\x1e\x47\xf3\xf1\x89\xcd\xf1\xe4\xcf\x2d\x24\x9f\x7e\x8a\xfb\x4a\xb2\x13\x9e\xf5\x5b\xc9\x64\x79\x19\x1c\x16\xfb\xe0\x70\x3e\xcf\x53\xac\x29\x70\xaf\x79\x48\x7f\xef\xb6\xf0\x23\xc5\xb1\x19\xff\x01\xd8\xec\x94\x8e\xa5\x96\xfa\xb4\x8a\x32\x1e\x9c\x8c\x48\x53\xda\xc7\x54\x65\x4b\x92\xe7\x04\x25\x5b\x5a\x8f\x88\x09\xf6\xb4\x9a\xfe\x3f\x32\x2a\x61\x72\x9a\x0b\xd9\x41\x47\x78\x50\x55\xb9\x0c\x07\x33\x66\x8f\x17\xed\xaa\xae\xb1\x37\xcd\xaa\xdf\x36\x3f\x7a\x4e\xf7\x45\x01\xa4\x57\x6d\xa2\x43\xba\xf0\xfc\x43\x7e\x02\x65\x06\xc2\x16\x28\xd3\xca\x84\x55\x6a\xd3\xdd\x24\xb4\x98\x99\x78\x42\x9b\xb8\x03\x53\x68\x89\x2f\xd5\x61\x87\x4d\x9a\xb6\x99\x7f\x9f\xe9\xc0\x9f\x9b\x47\x15\xb1\x21\xd1\xcb\x99\x89\x5c\x9f\x31\xcf\x21\x9d\xf6\x13\x32\x27\xf0\xfc\xcf\x64\xa1\x03\x35\x7f\xa3\xbb\x63\x80\xdb\x7d\xf2\x95\xfc\x5d\xde\x10\x76\x7e\x8a\xd8\x2f\x87\x79\x63\x0a\xca\xd9\x2a\xc9\x78\x70\x66\x04\x30\x0e\x26\x3e\x6a\x12\xd9\x89\xa8\x91\xae\x94\x9f\x09\x92\x77\x27\x3d\xf0\xbe\x3d\x99\xf2\xfb\xae\x6b\x98\x7d\xdf\x66\x89\x1f\xe1\x61\x64\x38\x18\x23\xcb\x00\xca\xf7\x0d\xae\x0b\x21\x8f\x4b\x4d\x9b\xad\x5c\x57\x44\x8a\x00\x08\x19\x2f\x4c\x6c\x63\x1b\xca\x0c\x4d\xdb\xc8\xf9\x8b\x69\x1b\xb9\x03\x5b\x6c\x36\xcb\xc3\xb4\x33\x36\x94\x29\x8a\xad\xf7\x66\xfc\x46\x3d\xff\xe5\xb4\xf7\xb3\xe8\xe4\x8a\x35\xe2\x8a\xf3\x69\xeb\xab\x14\xf8\xef\x37\x90\x5d\x89\x4e\xdd\x45\x76\x25\x26\xf7\x04\x59\xfa\x28\xcd\x4b\x84\xc7\x8b\xcc\xb9\x4b\x9f\x8b\x68\x78\xbe\x06\xcd\xf8\x0f\x19\x2f\x4a\x76\x0d\x67\x53\x53\x13\xed\xc8\x5a\xc7\x97\xbb\xd1\x4d\x6a\xaa\x1c\xf7\x83\x92\xe1\x60\x7c\x45\x9e\x0c\xb7\x46\xee\x9f\x62\x5f\xc9\x78\x18\x6b\xe3\x50\xfa\xf7\x31\x21\xe1\x94\x6d\xd6\xa9\xe7\xec\xbc\xd6\x96\xa9\xb4\xab\x2a\xe2\xbc\xe5\xdf\xc4\xfd\xc4\xf3\x9f\x2e\x22\xb8\xa7\xaf\x6f\x4b\x48\x83\xe9\x06\xcc\x93\x93\x02\xb6\xc8\x29\x60\x84\x56\x0a\x78\x47\x52\x3b\x79\x91\xc5\x49\xcd\x89\x94\xf0\xef\x53\x69\x27\x52\xac\x0a\xbf\x61\xc9\x5d\x42\xf6\x75\xba\xf3\x37\x46\xfc\xef\xec\x13\x25\xdd\x38\x42\x96\x3b\x69\xc5\x39\x8a\xa1\x24\xc6\xfd\x41\x92\x19\x5f\xf2\x88\xf4\x28\x2e\xfa\x03\x75\xb0\x89\xa2\xbe\x41\x69\x16\xce\x64\xc7\x13\x26\x7b\x10\xfe\x71\x6a\x8a\x0f\x49\x55\xd8\x2a\x96\x63\x19\x0e\xc6\x13\xa1\xf4\xb6\xce\xa5\x8c\x0b\x99\x68\xc2\xf3\x35\xcb\x8f\x26\x29\x1d\x19\xc7\x2c\x4f\x43\xd4\x39\xfb\x28\x51\x8f\xa7\xd3\x4d\xa9\x91\xad\xbc\x5c\xe5\x4c\xb1\xe3\xab\xac\x4f\x52\x56\x82\x1c\xbd\x4f\xa6\x86\x0a\x8d\x19\x9a\x6c\x27\xb3\x12\x8c\xe9\x09\x99\x71\x13\x72\x78\xe4\x7c\x77\x56\x63\x18\x7d\x63\xc6\xa3\xa4\x43\xfc\x7b\x66\xa0\xc8\x98\xb6\x88\x62\x49\x99\xf7\x57\x31\xbe\xc3\x75\x1b\xc9\x41\xba\x19\xf3\xdb\xcf\x6a\x38\x4d\x76\x77\x46\xd3\x35\xc2\x47\xa5\x55\x3d\xa8\xe2\x75\x7d\x45\xf9\x6f\xe6\x45\x49\x01\xa3\x4d\x62\x2a\xb9\xdf\x57\x84\x6a\x10\x49\x69\x50\x28\xe3\x61\xa6\x28\x45\x51\x1e\xce\x4d\x8e\x79\x42\xec\x24\xd3\xe8\xe6\x60\x59\x1b\x4f\xdb\x36\x66\x28\xf7\x91\xd1\x73\x48\x22\x79\xd2\x5e\x37\x83\xd8\xbb\xfa\x34\x30\x2e\x44\xc1\x60\x96\x98\xe7\xce\x12\x99\x70\x73\xc5\x1b\x4d\xe1\x18\x39\xf2\x34\x0a\x14\x54\x88\x59\xa4\xc0\x68\x10\xd9\xb9\x82\x72\x46\x66\xce\x96\x9b\x40\xf8\xae\x02\x39\x5e\x87\x42\xdb\x60\xb2\x23\xb3\x95\x19\x89\x52\xa8\x94\x43\x99\xc4\x42\xb1\xf3\x4c\x81\x5e\x2d\x79\xbc\xf9\x4d\xdc\x79\x20\xdf\x60\x1f\x69\x74\xde\xd0\x13\xd4\xe1\x2b\x17\x97\xe9\x9b\x73\x15\xee\x91\x87\x98\x63\xf9\x5c\x64\x86\x92\xfa\x57\x71\x46\xc1\xb4\xef\x11\xca\x22\x0e\x48\xe4\x85\xf1\x89\xe7\x79\xbb\x1e\x8d\x25\x6b\xe3\xe8\x98\x48\xfe\xd4\x44\x8b\xe9\x74\x8a\x99\x9d\x99\xc1\x3c\x20\x03\x66\x32\x2f\x4e\xed\x2c\xd2\x83\xfe\x06\xcc\x17\xa2\x1a\x9d\x45\xe7\x6b\xe7\xb2\x7c\x91\xe1\x75\x4e\x38\x8f\x25\x95\x3c\x96\x3a\xcb\x93\xde\x36\xe3\x61\xea\x07\x91\x05\x99\x67\x36\x82\xfb\x21\x19\x8c\xa7\x7d\x6c\xee\x9b\x94\x17\x44\xdf\x54\x2a\x30\x5f\x4e\x69\x5e\x36\x49\xe0\xbc\x33\xf3\xc9\xbf\x98\x97\xbd\xfc\x0f\xfe\xfd\x26\x42\xe2\x95\xe4\xee\xa5\xf5\x28\xd6\x3a\x46\xff\x3e\x37\xf0\x12\xe5\xd1\xe7\xac\x68\x22\x1e\x89\xc2\x7f\x1f\xf0\xfa\x6e\x7a\x3b\x1f\x88\x99\x15\xc5\xd6\x36\x3a\x86\xee\x0d\xfe\xf2\x8c\x87\x69\xe6\xc3\x79\x90\x4c\x11\xeb\x49\x17\x66\x92\x96\x5a\x37\xf1\xfe\x8e\x4d\xca\xa4\x53\xdb\x20\x2e\x87\xba\xbe\xe9\x88\x37\x2e\x49\x35\xf7\xc5\x52\x4d\x2a\x22\x69\xef\xf0\xf8\xbf\xe1\x61\x2a\x9c\x7b\x2a\xf2\xc8\xf2\xb0\xf8\xe0\x88\x0a\xfe\xd9\x8a\x78\x0b\x2a\xea\xdc\x48\x5e\x2a\x8e\x07\xd1\x1b\x2c\xce\x66\xdc\x5c\x45\x1d\x9f\x1b\x8b\xd7\x94\xd2\xef\x2b\x22\xab\xe8\xce\x58\xf1\xf7\x06\x1a\xcb\xaf\xed\x26\x7f\x63\x91\xa4\x81\xce\x8b\x05\x0e\x67\x49\x92\xcb\x62\xaf\x93\xa7\xb4\xf0\xf9\x63\x5a\xcf\x05\x06\xef\xe6\x4b\xed\x20\xe3\xbd\x82\x46\x24\x91\x67\x2d\xc3\x01\xc9\xf8\x70\x64\x38\x98\xf1\x7e\x7c\xa3\x34\x97\x30\x7a\xd1\x38\xad\x80\x9e\xa2\x77\x77\x36\x49\xd7\xc0\xae\xcc\x1b\xa2\x76\x80\xbb\xb5\x28\x85\x31\x9f\x42\xbb\x9e\x65\x22\xef\xc5\x62\x19\x73\xa7\x0c\x0f\xb3\xbf\x3d\xe5\xf7\xab\xcd\xf8\xa6\x52\xe5\x37\x90\x3e\x51\xbd\xc4\x88\x5c\x92\xea\xd3\xec\x79\x56\x99\xb0\x27\x52\x6d\xe6\x4f\xe7\x41\xf5\x6a\x46\xe4\x55\xfd\x9c\x76\x8d\x3f\x5f\x44\xf3\xaa\xb6\xe2\xbc\x7f\xd5\xfe\x35\xc4\xbd\x5d\xe5\xb1\x83\x3c\x9f\x65\xe1\x87\x99\x31\x72\xeb\x19\xd2\xa3\xca\xa6\x5f\x29\xff\x5d\x19\x76\x8f\xf4\xa4\xd2\xe0\x65\x13\x10\xfc\x36\x85\x70\x1f\xbe\xdb\xd3\x7a\xb2\x1c\x70\x24\xc9\xc5\x2e\x9b\x6e\xca\x36\xfb\x99\x07\x48\x86\x03\x1a\x3b\x6f\x0e\xe9\x8d\xac\x3f\x94\xce\x81\xf9\xe4\xdd\xf5\x6f\x62\x2d\xed\xb5\x7b\x21\xbd\x65\xd7\x3f\x2b\xc8\xae\xb4\x49\x5a\x2c\x46\x2c\x97\x8b\x37\xf7\x5a\x31\xa2\xb7\x32\xbb\x3d\xf7\x45\x92\xe1\x61\xf2\x07\x10\x1e\x7c\x55\x27\x43\x11\xcf\x62\x41\xdf\xbc\x2a\xd4\x89\x2c\x6b\x6d\x99\x1f\xd9\xfd\x3a\x81\x4f\xa0\x55\x9d\x98\xc1\xa7\xee\x69\x21\xe1\x8b\x56\x6e\xe0\x8e\x26\x75\xdb\x57\x4d\xe1\xcf\x6d\x2d\xc1\x27\xfd\x93\x6a\x3c\x4f\xd2\xf7\xac\xb8\xfc\xcb\x39\x1e\xef\x90\x1c\xd6\x6a\xfe\xab\xd9\x82\x03\xf2\x2e\xcf\x26\x9e\x0a\x37\x09\x7b\xad\x0e\x2e\x8c\x7b\x1a\xbf\x63\x0e\xa1\x11\xc6\xbd\x62\x7c\xc4\xa8\x2d\xf3\xe8\x74\xd2\x2f\xe7\x48\xd4\x10\xf5\x45\x74\x2a\x6b\x76\xaf\x20\x94\xaf\x6a\x0e\x77\xf7\xea\xea\xba\x8c\xa4\xbb\x8d\xaf\xec\xe6\x2e\xc3\xc3\xac\x15\x23\x1e\xeb\xd6\xcb\x13\x57\xfa\x86\x38\x55\xf2\x93\xd6\xd9\xf6\x27\xfd\x5f\x5f\x6b\x40\xb8\xfb\x75\x0f\xc6\x91\x27\xbe\xf6\x2e\x87\x80\xd7\xcd\xf5\xa1\x9b\xde\xba\x65\x7c\x52\xad\xb3\x4a\xa1\x37\x59\xd7\x27\x9f\xe6\xbb\xe6\x40\x19\x7d\x70\x6d\x51\x2d\xe9\xc1\xba\x87\xdf\x52\xee\x61\xed\x75\xee\x9f\xb4\x76\xe1\x49\xf2\x1b\xbe\xa9\xba\x40\x37\xdf\x35\xe3\x99\x37\x67\xf5\x3e\xe9\x3d\xcc\xd7\x2a\x9f\x70\xe0\x1e\x4f\x19\x7d\xe6\x9c\x3c\x97\x9e\x32\xc9\xa4\x84\x22\xf7\x56\x6d\xe6\x13\x8a\xcb\xc4\x97\xf7\x59\xd6\x1f\x4a\xd7\x7f\x31\xdd\xa3\x06\x8f\xae\xa2\xc8\xa4\x86\x64\x19\x55\x30\xaa\x58\xad\x20\xfb\xd0\xe9\x4a\x2d\xdb\x43\xef\x55\x97\x78\xde\xad\xf1\x30\x5b\xfe\x60\x79\xd8\xb2\x56\x85\x90\x69\x5b\x83\x06\x12\x8e\x72\x4b\xa2\x3e\x79\xa6\x5b\x32\xcd\xe9\x2f\xbe\xfd\xc7\x81\xee\x51\x5b\xf6\x73\x4c\x6b\x6b\x97\x48\xd2\xb4\x6f\x83\x59\x83\xb7\x74\xcd\xa3\xfb\xd5\x66\x61\x3e\xcd\x6b\x4b\x27\xce\x25\x7c\x5b\xb0\x89\x10\xf2\x9b\xf3\xf6\xd2\xe7\x36\x3b\x1f\x0f\xe5\xf1\x3c\xf9\xd7\x9b\x3e\xfc\x71\x9c\xff\xee\x51\x53\x4b\x9f\x8f\x5f\xf5\x00\xd5\x74\xe0\x72\x12\xd0\x5b\xa9\x05\xf7\x70\xca\x00\xe8\xbd\x1d\x68\x58\x0c\xa8\x3d\xe1\x9a\x72\xe9\xb1\xfc\xbd\x1a\xa0\x75\xb5\xa5\xbf\x81\x2c\xdf\xbf\x7e\x14\x60\xd0\x86\x6b\x4d\xa5\x7e\xa1\x8c\xdf\xbf\x3a\x83\xeb\x77\x97\x8e\x07\xec\x5f\x02\x8b\x03\x00\x77\x0b\xa0\x62\x10\xe0\x37\x1a\x98\x9f\x08\x84\x9c\x00\x16\x1d\x02\xe2\x42\x80\xb2\xe5\x40\xea\x20\xa0\x62\x35\xc7\xbc\x16\x94\x00\x73\x4f\x00\x0b\x8f\x00\x15\xdb\x39\xff\x2f\x95\xb0\x25\xa1\x9c\x5b\x5a\x7a\x04\x38\x38\xb9\xa5\xff\xc1\xf2\x71\x1c\xaf\xad\xb9\xc5\xfd\x0f\x6a\x73\x81\x0f\x4f\x5a\xfa\x80\x54\x38\xf3\x58\x1a\x20\xe6\xbb\x45\xfc\xc7\x95\x68\x40\x49\x17\xb8\x38\x1b\x50\xaa\xfa\x1c\xf7\xa0\xb2\xa5\x05\xf7\x70\x50\x97\xf9\x43\xf6\x44\x00\x1a\x91\xc0\xd6\x50\x40\xeb\x23\xb0\x51\x17\x18\x7c\x8c\xfb\xb6\x48\x6f\x6c\xb2\x3a\x7f\xd9\x3a\x2c\x0b\x06\xac\x0d\x00\xa9\x0e\x4b\xef\x0d\xe5\x72\x80\xdb\x37\xc0\xfc\x1a\xc0\x6b\x14\x50\xfa\x14\x08\xf2\x02\x4a\x7d\x80\xe8\xa1\x40\x71\x28\xc7\x25\x4b\x0b\x01\xa9\xa5\x2a\xf9\x16\x98\xf3\x1e\x28\x2d\x00\xca\x5f\x32\x5f\xc0\xea\x26\x60\xfe\x15\x60\x93\x74\x5d\xbb\x02\x07\x87\x01\x4b\xb4\xb8\xff\xc1\xb2\x07\xc0\xf5\x95\x40\x55\x67\xe0\xfe\x06\x60\xd9\x62\xe0\xfd\x92\x96\x3e\x20\x0b\xc4\xb8\xad\xac\x0f\xc4\xf5\x11\x5c\x7f\x7c\xb9\x09\xe8\xbc\x9a\xf3\x5b\x9d\x97\x7e\x89\x7b\x90\xca\xc1\xa7\xb8\x87\x7a\x45\xe9\x1d\x12\xf8\x36\x10\xd0\x48\x00\xd6\x0d\x03\xfa\x6b\x31\x7f\xcb\x50\x5d\x5e\x7f\x83\x38\x46\x0b\x8e\xb1\x00\x96\x1a\x01\x96\x6e\x2d\xeb\xd0\x3a\xef\x5f\x34\x1a\x08\x98\xc9\x31\x69\xa9\xfe\x17\x26\x00\x89\xc7\x81\xc2\x3d\x9c\x03\x90\x5a\x65\xe9\xff\x66\xcf\x00\x16\x1e\x07\x4a\x12\x80\x95\x2b\x81\xf9\xae\xc0\xd6\x00\x60\xde\x7e\x60\xbf\x0b\x50\x66\xc5\x35\xd9\xe5\xf7\x80\xeb\xca\xc0\x12\x17\xe0\x89\x0e\xe7\x9d\x3f\x56\xb6\xcc\x5f\x86\xff\x90\xf1\x20\x5c\x7d\x0b\xc8\x67\x01\x97\xb6\x03\xd2\xf3\xfc\x6c\x13\xf7\x03\x91\xfa\x60\x1d\x1d\x5b\x70\x0f\xdf\xef\x07\x3a\x05\x73\x3c\xb3\x5b\x03\x73\xb3\x28\xd7\x32\xa7\x76\xcf\x09\xc0\xaa\x9b\x80\xfa\xa1\x16\xbe\x83\xaa\x3b\xc0\xb0\x97\x40\x65\x09\x60\xf4\x0e\x28\x77\x05\xcc\xe2\x38\xef\x3f\xa1\xec\xeb\x79\xff\xdc\x6c\x20\x4c\x05\xc8\xda\x06\x4c\x6b\xe0\xbc\x75\xfa\x74\xa0\xe0\x07\x60\xce\xdf\xcc\x9d\xb3\x48\x02\x14\x3e\x00\x6a\x1a\x18\xcf\xb0\xa9\x06\x90\xde\x35\xf6\x2e\x04\x8a\xcd\x81\x53\xeb\x80\x79\x17\x80\xdf\xbb\x30\x5e\xe4\x9f\x31\x5f\x9f\xbf\x2c\x0f\x7c\x4d\x8c\xcb\x37\xe3\x1e\x0e\x33\xcf\x83\x0c\xf7\xb0\xff\x34\x8f\xfb\x3c\x81\xb6\xbb\x19\xff\xd2\xfe\x0a\xe7\x92\x3a\x7f\xfc\xa4\xcf\x83\x33\xc7\xc2\xab\x4a\xb9\x4f\xcc\xe2\x0b\xc0\xe0\x0b\x40\xf9\x02\x40\xbf\x08\x98\x6f\x0c\x8c\x35\x06\x8a\xc5\xfa\x76\xa9\xb7\x31\x29\x4e\xea\xfd\x32\x5f\x4c\xf6\x1a\x60\x8a\x01\x90\x79\x1c\x08\xc9\x01\x32\x94\xb9\x8e\x35\x7b\x25\xf7\x34\xc8\xce\x64\x8c\x48\xb6\x21\xaf\x83\xf4\x34\xaf\xbd\x09\xe4\x06\x30\x07\x49\xbe\x02\xf0\xfd\x71\xb1\x0f\x44\x23\x50\xe8\x09\xfc\xfa\x13\x30\x07\xc0\xc3\x63\x2d\xf3\xcf\xbe\xc7\xf8\x07\x19\xfe\x43\x86\x03\x90\xf1\x7e\xfc\x7f\xc6\x3d\x3c\x04\xda\xed\x6b\xc9\xf7\xaf\xc8\x03\xba\xeb\x02\x95\x01\x40\xcf\x85\xc0\xa2\x87\x40\x7f\x0b\x60\xde\x40\x60\x98\x13\xcf\xdf\x58\x02\x14\xe4\x03\x66\x4a\xcc\x81\x23\xb5\x9b\x19\x7f\x02\x4e\x01\x9c\xaf\x9f\x9c\xc3\x79\xfd\xe0\x7a\xee\x7b\x10\x9d\x00\xcc\xb8\xc0\xf8\xa0\x59\x13\x80\xd9\x16\xc0\xac\x5f\x80\x45\x8a\x40\x46\x07\xe6\xc6\xc9\x38\x00\x6c\x29\x07\x32\x6c\x80\x7d\x77\x98\xe7\xe3\xd4\x04\x20\xc7\x1d\xb8\x61\x01\xe4\x5e\x07\x9e\xd9\x33\x4e\xe2\xe3\x83\xaf\xf3\x40\x34\xf7\x3b\x11\xf3\x77\xcd\xf9\xee\x44\x71\x1d\x44\x16\xac\x3d\x62\x1c\x57\xb6\x0e\x52\x39\x40\x3d\xf3\x7d\xb4\xd9\x03\x54\x66\x01\x1d\x0f\xb1\x1e\xaa\x88\x5e\xb4\xd4\x9e\xce\x89\x00\x06\x14\x00\xb9\x11\x8c\x13\xca\xba\x08\x18\xdf\x06\x66\x5d\x00\x2c\x15\x99\xbf\xc1\x7e\x27\x90\xdc\x08\xb8\x3f\x64\x1e\xf8\x80\x07\x40\xe2\x0f\x40\xe4\x5b\x20\xe5\x5b\xc6\x08\xa4\xfe\x01\x14\xee\x06\x52\x43\xf9\xac\x98\xb1\x0d\x58\x59\x00\xcc\x18\x09\x6c\x19\xc1\xfb\x7a\xc0\x85\x7b\xeb\x48\xed\xe4\x4c\x47\xe0\x77\x05\xc6\x90\xbc\x51\x6a\xe1\x81\x68\x8d\xff\x88\x9c\xf2\x79\xde\xff\xd4\x14\x71\x1d\xc4\x3a\xe4\x43\x62\x1e\x53\xc6\x7b\xd1\x9a\xef\xa0\x39\xdf\x2d\xea\x8f\x8c\xf7\x61\x5e\x3e\xd0\xc5\x05\x28\x3a\x00\xa8\x9a\xb5\xf4\x7b\xc8\xe9\x06\x0c\xbd\x01\xa4\x05\x03\x52\x7f\x31\x35\x8d\xcf\x91\xe9\xfa\x80\xad\x13\xd7\xf6\xbb\x94\x03\x71\x23\xb8\x0f\xc6\xb4\xf5\xdc\x0b\x60\x9a\x09\x73\x3a\xc4\x37\x01\x05\x56\x80\xf4\x76\x5b\x5e\x03\x24\xde\x04\x56\x99\x02\x49\x91\xc0\xb6\x6d\x40\xb2\x33\x70\xe8\x1c\x90\x78\x10\x38\x1b\xc7\x75\xe5\x4d\xf5\x40\x8a\x17\xf0\xe6\x07\x20\x61\x0f\xe7\xbd\x9b\xfb\x61\xdc\xe7\x51\xd6\x17\xe2\xbf\xe9\xc3\x57\x79\x2f\xc4\xfc\x97\x0c\xff\xd1\x9c\xef\x6e\x04\xda\x84\xf2\x99\x2f\x3d\x87\x32\x0a\x80\x5e\x63\x80\x54\x0f\x40\x4b\x0f\x90\xde\x99\x87\xbb\x00\x71\xf3\x81\x51\xa9\x40\x6c\x36\x60\xbd\x0b\x88\xb8\xc3\xb5\xec\x11\x0d\x8c\x2f\x8d\x48\x06\xc2\x23\x80\xf0\x0d\x40\xe2\x36\x20\x62\x00\x90\x7b\x13\x08\xb3\x02\xca\x8c\x38\xaa\xb5\xea\x1c\x10\xfd\x11\xa8\x5f\x03\x84\xdf\x04\x0e\x4a\x80\xf0\xf1\xc0\xcf\x82\xf4\xfe\x08\x34\xdd\x04\x62\xbd\x98\x07\x22\xdc\x82\xd7\x21\xc0\x55\xc4\x41\xcc\xe5\xd1\xeb\x1d\x8f\x67\x44\xdc\xc3\x4f\x22\x6b\xea\x21\x31\xef\x2b\xc3\x3d\xc8\xe4\x40\xd6\xf7\x64\xad\xd8\x4d\x55\x86\xff\xa8\x14\x47\x59\xbe\x7b\xb6\xb8\x6e\x52\xbd\x95\x1b\xc8\xbc\x07\x4a\x12\x3e\x03\xd5\xd5\x81\xe8\xa3\x80\xf6\x21\x20\xa2\x11\x30\xd2\x04\x82\x4e\x02\x26\xe6\x8c\x7f\xb0\xab\x01\x42\xba\x01\x5e\xfd\x19\x3b\x17\xda\x04\x04\xfe\x0c\x24\x25\x03\x7e\x52\x9b\x59\xc4\x38\x07\xe9\x9a\xfb\x6d\x01\xea\x74\x01\xff\x40\xf6\xa3\xfc\xa6\x02\x07\x2d\x00\xff\xbe\x40\xe3\x2e\xc6\xa6\xde\x6a\x02\xfc\xcf\x02\xcf\xf6\x00\xfe\xa2\x9d\x6c\xee\x03\xd2\xf4\x39\x1e\x40\xa6\x07\xad\xf3\xfe\x5f\xeb\x7b\xd2\x1a\xff\x51\x21\x66\x63\x9a\x79\x1f\x44\xbb\x9b\x21\xa2\xa8\x13\xe3\x80\x8e\x27\x81\x98\x89\x80\x6a\x23\xf3\xb1\xf4\x73\x61\xde\x8a\xe1\x55\x80\xef\x4a\x60\xf4\x61\xc0\x57\x05\xb0\x51\x61\xfc\x83\xa7\x1b\xe0\xdb\x0b\x08\xd5\xe1\x3e\x26\x52\xbd\xf0\x7c\x03\xe4\xea\x02\x1e\x7f\x01\x0b\xad\x5a\x78\x20\xdc\x05\x60\x6b\x1c\xe0\x31\x0c\x38\x1a\x0d\xb8\x57\x02\x17\x2a\x79\x94\xae\x83\xe7\x52\xe6\x4f\x6a\x3d\xef\xd6\x38\x08\x19\xfe\x45\xd6\xff\x47\xc6\xfb\xd0\x1a\xff\xb1\x46\xfc\x5c\x8d\xc8\xa2\xf8\x05\xfe\x63\x06\x8f\xb2\xbc\xbf\x8c\xff\x62\x9a\xad\x54\xb8\x80\xb0\x4a\xa0\xab\x13\xe0\xbf\x86\xfb\xd2\x79\x29\x03\x83\x6c\x01\x8f\x8f\x80\xd1\x33\xc0\xad\x06\xb0\xb8\xc0\xd8\x39\xe7\x3c\xce\x79\x07\x53\x57\x7e\x20\xee\x26\xe0\x74\x84\x9f\x6d\xff\x91\x7d\x6b\xc7\x2d\xc0\xea\x0c\x60\xd2\x1a\x60\xbb\x3d\x60\x97\xca\x5c\x77\xb6\x91\xc0\x45\x45\xfe\xf9\xee\x0f\x3c\x4a\xd7\x61\xa2\xed\xe7\xb8\x0f\x19\x0f\x84\x0c\x07\xc1\x5c\xe8\x5f\xe7\x3f\x69\x2d\x07\xcb\xc5\xa8\x7b\x79\x6e\x2b\x7d\x10\x79\x32\xbe\xe0\xbf\x10\xfb\x89\x50\xb4\xb7\x9e\x71\x1f\x52\x3d\x71\x4a\x64\xb9\x70\xd4\x07\xf4\xa4\x3a\xf1\x01\x30\x77\x03\x26\x79\xf0\x39\x3a\xde\x8f\x71\x52\xd6\x3d\xf8\xbe\x61\xd5\x16\xc8\xed\x00\xaa\x45\x28\xaf\x05\xcc\xc3\x81\x55\x21\x80\xa9\x3d\xb0\xf5\x29\x60\xfa\x1d\xf7\x32\x32\x7d\x05\x9c\x37\x05\xcc\x87\x00\xb7\x7e\x01\x4c\xd2\x81\x57\x07\x5b\xe6\xab\x2b\xf2\xa9\x0d\xf8\xf5\x73\x1c\x44\xb3\x1e\x88\xfc\x27\xdb\x44\x3c\x88\x8c\xff\x64\xad\x2a\x8f\xb5\xe2\x6d\xf1\x6b\xf8\x8f\x3c\x31\x4b\x25\xe3\xbf\x88\x17\x79\x44\x42\x45\x7d\xf3\x0c\xe2\xd1\xae\x91\xf1\xca\xb6\x03\x80\x3e\xdf\x03\xd6\x11\xc0\x90\x6a\xe6\xa0\x1b\x6d\x02\x98\xd6\x01\x93\xce\x00\xa3\x77\x00\xbe\x66\xc0\xa8\x1f\x80\x58\x2b\x60\x64\x3d\x90\x95\x0e\x8c\x88\x03\xca\xb2\x01\xa3\xa9\xc0\xca\xb5\x80\xde\x40\x60\x9b\x01\x30\xac\x0c\x38\x94\x0b\x0c\x7f\x01\x9c\xd5\x01\x86\x16\x02\x37\x57\x01\x83\x15\xb9\x77\x9e\x6c\xbe\x9a\x43\x79\x54\x7b\xfc\x39\x0e\x62\xef\x76\x7e\xbf\x2f\xf8\x4f\x44\xfb\xf0\x7f\xc5\x7f\x7c\x0d\xff\x10\x20\xf6\x91\x71\xb5\xe3\xd1\x4a\x7c\xde\xd8\xde\x80\xa2\x1d\x30\xf2\x35\xa0\xf9\x1a\x30\xfc\x8d\xf7\x4c\x7f\x3a\x60\xb3\x10\x18\x9e\x0f\x78\xdf\x03\x86\x36\x32\x56\x6e\xb0\x0f\x90\x31\x19\x18\xe8\xce\x18\x6c\x4d\x37\xc6\x92\x4b\x65\x4a\x7a\xd7\x95\xe4\x03\x07\x7e\x01\x34\x86\x02\xa7\x77\x71\x0d\xc5\xef\x8d\x40\x9f\x97\xc0\x93\x2b\x40\x4f\xad\xcf\x79\x2f\xba\x2f\xe7\x51\x7a\x67\x92\x8e\x5f\xf0\x9f\xc8\xf8\x5f\x64\xfc\x27\xb1\x9f\xcf\x7f\x7e\xdd\x7f\x9e\x7f\xb2\xa8\x37\x32\x1e\x94\xd0\x0b\xcc\x9f\xe1\x23\x46\xab\x1d\x45\xfe\x31\x33\x11\x57\xa5\xf3\x0e\x90\xcf\x00\x86\xaa\x01\x7d\x8d\x81\x81\x8b\x18\x1f\xa4\x69\xc1\xfc\x9d\xea\xc9\x80\xa7\x3c\xd0\xe7\x20\x10\x19\x04\xf4\xfc\x13\x98\x39\x13\x50\x51\x00\xe6\x8e\x02\x94\xd6\x01\xcb\x12\x80\xee\x93\x80\xf5\x57\x00\x85\x1e\xc0\x5e\x25\xa0\xeb\x6d\xe0\xc4\xdf\x40\x97\x2a\xe0\x6a\x30\xd0\xf9\x07\xae\x31\xe9\x7c\x03\x78\x9f\x0f\x74\x4e\xe4\x79\x77\x2e\xfb\x7c\xfc\x82\xff\x44\xb4\xfb\xb2\x28\x52\x85\x88\xb7\x9d\x7f\x8b\x47\x59\x1f\xa4\xac\x19\x20\x34\x42\xaa\x7e\x5b\x9a\x69\x6c\x76\x7b\xca\x8a\x44\x68\x74\xa4\xa8\x90\xaf\x59\x67\xca\xba\x39\x3b\x74\xa0\x68\x99\x55\x48\x67\x3a\x59\x0c\x1b\x29\x78\x0c\x8d\xc6\x6e\x14\x85\x57\x3d\xa8\xd8\x5b\x29\x0e\xe8\x2e\x28\xae\x1c\xd4\x07\xe8\x7a\x59\xf1\x8a\x49\x0e\xd0\x69\xae\xe2\x52\xe7\x81\x80\xbc\x99\xa2\x6b\x70\x0c\x20\x97\xae\xf0\x77\xb2\x74\x4f\x5e\x29\x24\x15\x50\x9c\xb2\xdb\xf5\xc5\x14\x8f\xef\xfa\x03\xd7\x6d\x76\x31\xd9\x45\x79\x9d\xce\x17\x8e\x53\x7e\xbf\xe3\xc9\x4b\x14\x9f\xef\xf0\xe2\x2e\xf9\xc6\x1d\x7e\x7e\x4d\xf1\x97\x76\x22\xff\x41\x5b\xca\xf7\xb6\xe9\x81\x03\xd2\x7b\xd6\xd7\xf0\x2f\x8b\xbd\x79\x2c\x35\x63\xd6\xf1\xd9\x9e\x1d\xa9\xba\x32\x4b\xb1\x1b\xc5\xed\x52\xbb\x2b\x92\x05\x8d\xa9\x54\x22\x89\x08\x49\xe3\x68\xab\xaf\x19\xe7\xcf\x9d\x9b\x7a\x53\xfe\xd8\xba\xa9\x2f\xfd\xdd\x28\x83\xbe\x14\x4d\xd3\xae\xd4\xa0\xa8\xb1\xd2\xc5\x7e\x74\xa2\xb4\x59\xa0\xb9\xa9\x23\x65\x92\xb4\xdc\xfb\x91\x4f\xa6\xd5\x6f\x14\xf1\xca\xf6\x73\x71\x20\x86\x04\xc9\xc3\x20\x7a\x92\x24\x32\x89\x74\x51\x32\x84\x23\xc4\x1a\xd3\x97\xd0\x57\xaa\x99\xac\xa1\xbd\xeb\xf3\x74\x27\xc5\xb7\xfa\x34\x1c\xa3\xc8\x5a\xef\xd0\x4b\x94\x61\xeb\x55\x7a\x87\x90\x19\xaa\x39\x2f\xc8\xa6\xf7\x78\xcf\xeb\xd0\x7d\xc2\xa7\xa3\x6c\xfe\x2b\x44\xb9\xa8\x10\xe4\xe9\x7d\xe7\x29\x32\x0f\x4c\x81\x91\x12\x65\xcd\xd2\x1f\x72\x35\x59\x6a\x62\x1f\x8a\x8e\x4d\x5b\xdf\x87\xde\x2a\xe4\xaa\x3a\xad\x87\x6f\x45\x7f\x66\x5b\x48\xe2\xec\x9c\x8d\x39\x57\xa5\x9a\xa8\x0c\xa1\x7c\xc7\xf0\xbc\x61\x54\x9d\xdd\x37\x4b\x87\xf2\x65\xf2\xab\xf5\x8c\xf9\x1b\xf5\x4c\x3a\x53\x86\x44\xef\x86\x56\x24\x8f\xa3\x48\x07\x75\xe3\xec\x48\x46\xf5\xc2\x02\x49\x06\x75\x3b\x71\xbd\xbf\x6e\xa7\x3c\x8a\xdb\xea\xa0\x82\xf2\x40\xc3\xce\x71\x27\xe9\xc1\xaf\x76\x90\xc4\x0d\xae\xfb\x81\x32\x8f\xda\x13\xcf\x91\x8f\xa8\xed\xd4\x44\x67\xc0\xc0\x8e\xcf\x49\x3e\x34\x45\xfe\x07\xb5\xa3\x3c\xf6\xa6\x75\x58\xf1\xbe\x1d\xe1\x17\x16\xd7\xb3\xbc\xca\xf0\x2f\xf9\x4d\x7d\x29\xca\x9d\xb1\x9b\xf1\x2f\x29\x6e\xfd\x28\x4f\x2f\xe3\x81\x09\x97\x63\xfa\x06\xbf\x2d\xc3\x68\xbd\xdc\x73\xb9\x1f\xd0\xa4\x13\x7a\x34\xff\x71\xb9\x9c\x3f\xd7\xff\xd9\xb8\x9a\xbf\x7d\x34\x69\x98\x92\x9b\x89\xa8\x59\xa6\xa2\xe5\x31\xad\xeb\x46\x36\xd8\xe4\x91\x26\xd9\x2a\xd3\xc6\x91\x54\x8f\x6b\xaa\x66\x47\x4f\x34\x99\xe3\x47\x4f\x32\x9d\x14\x4f\xf5\xfc\xa6\x16\x9c\x39\x30\x51\x5b\x48\x99\xf9\x31\x01\x75\x24\x61\xc6\x7a\x8c\xfd\x36\xbe\x7a\x84\xee\x4a\x23\xeb\x1b\xe9\xce\x38\x72\x26\x71\x4a\xc2\xe8\xf1\x13\xda\x49\xfd\x2d\x8c\x0f\xd2\x01\xaf\xc3\x60\x1b\xe9\x58\xfe\x50\x95\xf6\x71\x5e\x7d\x5f\xb1\xca\x5c\x42\xd1\xcd\x2c\x89\x36\x65\x91\x64\x3c\x30\xd3\x9e\x32\x0f\x4c\x44\x83\x21\xe7\x3d\x6d\x46\x51\x7c\xd7\xfd\x12\xa3\x36\x1c\xf2\xc6\x52\x36\xc2\xb2\xc0\x9c\xec\x83\x71\x0e\xe3\x25\x86\x4a\xac\x68\x96\x7d\x1f\x31\x0b\x73\xa7\x87\x13\x45\xc4\xae\xad\x36\x8f\x13\xbb\x29\x50\xe6\xc0\xc6\x4a\x93\x32\xec\x13\xef\x8f\xa4\x27\xda\xac\xb3\xa5\x95\x9a\x68\x32\x85\xf6\xdf\xa6\x5b\xcc\x4b\xfe\xf7\x0c\x42\x5a\x4c\x6c\x98\x4f\xeb\x63\x93\x52\x4b\x79\xcc\xf1\x37\xbe\xa5\xb3\x6f\xc2\xe6\x83\xe4\xe3\x59\x95\x9e\x22\x5b\x6f\x75\xef\x3a\xd9\x76\xcb\xfa\x07\x5a\xbc\x43\x1f\x69\x06\xb2\xbe\x41\xcc\x1b\x33\xaf\x9e\xfb\x5b\x15\xdc\x1e\x44\xd1\xdb\x2c\xb7\xa1\xf4\x2d\x33\xff\x34\xa0\x13\x4e\xc6\x03\x13\x79\x87\xf1\x01\xfe\x2a\x26\xa4\x37\x1e\x57\xcd\x09\x37\xe1\x28\x56\x59\x4e\xa8\xb0\xa6\xac\x99\xc9\x12\xee\xc2\xae\x77\x63\x12\xd9\x11\xad\xeb\x76\x74\x22\xf7\xd8\xc8\x7c\x1a\x72\x95\xce\x22\x0f\x84\x9b\xd8\xc9\xd3\x35\x4e\x91\xde\xd3\x4d\xb9\x3f\xed\x97\x1b\x61\x3f\x01\xb7\xc3\x36\xf4\x46\xee\xb3\xa6\x90\xcd\x72\xbb\x13\x4d\xf2\xee\xbe\x86\xeb\x36\xdd\x1a\x4a\x28\x86\xe4\xd6\x58\x4d\x3b\xe4\x3a\x9e\x71\x52\x2e\x43\xbf\x27\x4d\x74\xfa\x78\x72\x38\xbf\xe1\x15\xd2\x1b\x07\xcb\x7b\x54\x6b\x62\x97\xfd\x8a\xe2\xfd\xb6\xd5\xbc\x0e\xcc\x1b\x33\xc7\x4c\x8f\xb4\x33\x4b\x97\x71\x4e\x33\x13\x8d\xe9\xaf\x13\x76\x33\x3b\xc9\xd4\x53\x16\xb4\xea\xc1\x46\x13\xe8\x86\x25\xeb\x87\xe4\x72\x9b\x71\x3e\xb6\x16\x76\x94\xb7\x90\xe1\x60\x0c\x6f\x38\xd3\xee\x0d\xfe\xc3\x95\xb2\x76\x6a\xd3\xdc\x29\xcb\xac\x78\xdb\x4b\x9c\xbf\x8f\x78\x22\xfb\x8a\x37\x5c\x9f\xfb\xca\xb4\x15\xbe\xc7\x59\xe3\x7c\x17\x8c\x20\x49\xf2\xad\x1c\x4f\x12\xe7\xfb\x68\x32\xc9\x89\xef\x3f\x11\x94\x31\xf7\xcd\x4f\x25\x15\xf6\xb9\x39\x9b\xea\x36\x7d\x9f\x56\xd2\xfc\x7c\x1a\xd6\x92\xbc\xf8\x58\xec\xa6\x5a\x11\xef\x47\x0d\x54\x43\x31\xf9\x26\xdf\xa9\xbd\x24\x4d\xc4\x07\xee\xb1\xed\x11\xad\xab\xac\x6f\x90\x53\x9a\x74\xcc\xfd\x99\xab\xeb\xd3\x92\x4c\x69\xf5\x13\xbf\xb3\x26\xcf\x27\xc6\xd9\x86\x76\x25\xc4\x6b\x12\xe9\xb7\xcf\x8f\x4c\x04\xe0\x21\xef\x42\x4f\xb7\x93\x30\x3e\xa2\x19\x07\x73\x54\xc4\xc1\xdc\xf5\x25\xfd\xd7\x0a\x61\xcf\x41\x35\xda\x9f\xac\x5f\xc7\x77\x81\xa2\x87\x11\x36\x90\xc7\xd0\xa6\x36\xc4\xcb\x1f\x56\xae\x4c\x3e\x5b\xf8\x8a\x01\xe4\x5b\x84\xf7\x63\xcb\x12\x66\x32\x9e\x7f\xde\xe7\x4e\x3e\x6e\xf8\x88\x30\xca\xa4\x87\x07\xb0\x81\x09\x1f\xcf\x3e\x4c\x58\x79\x39\xc9\x45\xe8\xb1\xba\x27\xfc\xdc\x6d\xdc\xc1\xc5\x84\xed\x44\xf0\xea\x33\x64\xd9\x83\xa9\x07\xb7\xf4\x26\xca\xf8\x39\xff\x33\xef\x28\xe6\xe8\x43\xbc\x49\xb3\x1a\x2c\xc8\xca\x24\x49\x26\x10\x8b\x44\x2c\x38\x7b\x14\xee\xe0\x44\x72\x1d\x60\xc3\x38\x18\xcf\x13\x8c\x6f\x72\x36\xf0\xe6\xfe\x68\x26\x9f\xf3\xc1\x8c\x0c\x64\x1c\xcc\x50\xb5\x20\x7a\x9e\xfa\x99\x50\xca\xca\x29\x35\x32\x4f\x4a\xdb\x5b\x53\xb5\x78\xfe\x31\xac\x88\x88\xd3\x6f\x4b\x79\x25\x19\x1e\x26\xb6\x7e\x00\x9d\xb8\xb1\x5e\x23\xe8\x9c\x8c\xed\x68\x45\xbe\x6d\xfc\x7e\x77\xd2\xd4\xb8\xab\x21\x94\xcf\x89\x0b\x4c\xa4\xf9\xc6\x47\x72\xc6\x31\xb6\x9e\x7d\xfc\x69\xef\x6b\x18\x3f\x83\xcd\x24\xa1\x71\xa1\x9c\xcf\x8b\xa5\x78\x04\x10\x33\xf8\x57\x42\xf8\x45\xed\xbe\x47\x19\xb5\xc8\x47\x2f\x37\xa2\x19\x17\x33\x7d\x19\xf7\xfb\x92\xf5\x83\x8a\x4c\xf1\x60\xb4\xcc\xec\x29\xa4\xe7\xde\xe6\x53\xc8\x5f\x72\x3b\x15\x40\xfb\x3b\xe9\x47\xee\x03\x65\x95\xc4\xac\xfb\x63\x42\x42\xf9\x74\x3b\x10\x4e\x75\xe1\x03\x56\x45\x51\x7d\x7f\x6f\xef\x18\xb2\xca\x5d\x2f\x32\x5e\x02\x85\x09\x62\xbe\x77\xba\x78\x93\x4b\xe9\x29\xc7\x1d\xc9\xa6\xa8\xd0\xbe\xcd\xd0\xe2\x75\x48\x89\x37\x22\x4b\x9d\xf2\xb3\x35\x9d\xf7\xa9\x70\x25\x0d\x9c\x61\xc0\x18\xe5\xd4\x9c\x78\x4b\x1e\x19\x61\x90\xb2\xba\x64\x07\x7f\x6e\x39\xd9\xdb\xd4\x13\x1b\x69\xe5\x53\xb0\x87\x3b\xbd\x38\x1f\x23\x4b\x9f\x5c\xc4\xbd\x66\x93\x1a\x6f\x91\x5e\x24\x8c\x79\x44\x77\x9f\xb8\x0f\x1f\x94\x80\xb8\xf5\x9e\x74\x1e\x46\x94\x7a\x27\xb1\xf4\xf8\x72\xdf\x83\x3b\x81\xb4\xfa\x1e\xc9\x21\xc4\x77\xe1\xb0\x31\x9c\xbb\x6e\x29\x47\x91\x35\x36\x4b\x8b\x22\x0f\x7a\x64\x3d\xe3\x24\x86\x36\x32\x0e\xa6\xff\x98\x78\xda\x2d\x95\x11\xcc\x93\xd2\xe9\xdb\xe9\xe2\x4d\x6d\xa6\x88\x40\xcf\x78\xc4\x63\xa6\x7a\x3b\x5a\xe9\x2c\x1b\x15\xd2\xfb\x8c\x3a\xae\xef\xce\x3c\x63\x44\xbe\x5d\x96\x84\xaf\x7a\x59\xf7\x5c\x0f\xf3\xe7\xfd\x69\x3d\xb2\xc4\x95\xcd\x76\xce\x88\xe5\xb1\xf8\x5b\xfe\xfc\x32\xb2\x1b\x59\x2b\xd6\x25\xf0\xcf\xbb\xb8\x0f\x53\xc6\x51\xca\xdc\xa6\x9b\x9d\x27\xc9\xfd\x12\x17\xf3\xa2\x1e\x88\xb6\xf1\xa7\x9b\x51\x98\x51\x30\x59\x97\x00\x49\x38\x45\xa2\x26\x17\x30\xae\xcb\xf9\xc9\x54\xfa\x56\x3b\x09\xf7\x47\xb2\x9c\x31\x8d\xbe\x7d\x74\x56\x3c\xdd\x54\xf5\xa7\x25\x93\xf6\x0e\xd6\x9c\x4e\x52\xaa\xf1\x31\x85\x50\x5d\xca\x4e\xb3\x68\x57\xe4\xcd\x33\xc4\x1b\x49\xb6\x78\x93\xcb\x17\x23\x17\x05\x45\xf2\xc4\xc0\xd3\x8c\x87\x29\xe7\x75\xc8\x6f\x32\x24\xcb\x54\x58\x61\x49\x76\xbd\x60\xaf\x13\x69\xd2\xec\x64\x7f\xfa\xc6\xd9\x0d\xd1\xe4\x1f\x16\x5e\x4d\xcb\xe3\xcf\x33\x3f\xca\x6c\xe5\x4a\xda\xff\x82\xfb\xab\x4f\xf0\xf3\xea\xc9\xb2\x17\xe8\x1e\xa2\x3b\x53\xde\xdc\xd3\xc4\xb3\x90\xf7\xdd\x6f\x14\x7b\xcc\xc3\xdf\xdd\x68\xbd\x1a\x5f\x04\xb4\xe0\x60\x02\xb4\x23\x08\x07\x3a\xc5\x82\x79\x61\xdc\x94\x19\xef\x24\xe3\xc3\xb1\x2e\x66\x14\xa7\x79\x23\xcb\xf5\x28\x03\xee\x93\xa4\xdb\x6d\x16\x45\x68\xfa\x0b\x8c\x0f\x51\x1b\x97\x45\xf8\x10\xc5\x0a\xf6\x76\xda\x5e\x2c\x10\xf1\x2f\x73\xc5\x48\x4e\x33\x1e\x26\x4f\x9e\x62\x9d\x32\x3c\x4c\xe9\xf6\x01\x84\x8f\x2e\x15\x0c\xb9\xb3\x99\x97\x25\x59\xd4\xf9\x8e\x4e\x84\x07\x99\x57\xcf\x27\x4c\xe9\x56\xee\x33\x37\xdf\x6f\x46\x31\x7f\x9e\x99\x39\x4a\x05\xf6\x2f\x4b\x85\x3a\xee\xab\xe4\xb6\x85\x4e\xae\xd2\xc3\x8c\x93\x2a\x96\x70\xcd\x4d\xd1\xc1\x8b\x94\x91\x2e\xaa\xbd\x43\xb1\x94\xa2\xa5\x4f\x47\x02\xc1\x47\x19\x4d\xe0\xa7\xcd\xf3\x6e\xc6\xc1\x88\x7c\x38\xb6\x07\x53\x49\xde\x2d\x6f\x30\xbb\xdb\x58\xe5\x0c\xd2\x42\xc3\x84\x4c\x5a\xaf\x21\xda\x39\x74\x13\xd1\x1a\x95\x47\xe8\x24\x95\x7a\xb6\xe2\x5d\x77\xcf\xa1\x53\xbd\xad\xa2\x6c\xde\x0b\xc4\x7e\x49\xe5\xeb\xc5\xf1\x50\x07\xee\x7f\xd4\x8c\x87\x19\x48\x1a\x55\x21\xb0\xa7\xb6\x38\xce\x82\xbe\xa9\xc2\xdc\x91\x90\x6a\xe5\x6b\x19\xa9\xb8\x58\x23\x8a\x24\x6c\x71\x36\x33\xf4\x54\xe4\x71\xc6\xbe\xe2\x29\xf7\x1f\x2c\x3f\x57\x4b\xb5\x96\xb2\xfe\x49\x8b\x8e\xee\x25\x3b\xbb\xc8\xf5\x04\xc9\xcf\x82\xa6\xf3\x34\x93\xb2\x69\x4d\xe4\xb7\x2e\x28\x79\x90\x01\xf8\xc7\xb1\xb7\xda\x9a\x0f\xc7\x5e\x9d\xe5\xda\xa6\x6f\x26\xf9\x53\x66\x3f\x66\x53\x24\x66\x54\x13\x5f\xcc\x64\xfd\xa1\x06\xcd\x9a\x4d\xb7\x1b\xc9\x60\xee\x0f\xa5\xb2\x85\xf1\x21\x1d\x8b\x5a\xe3\x80\x5a\xe3\x61\x96\xeb\x74\xa0\x3c\x7f\x95\x92\x0a\x79\x30\xcb\xb5\xd9\x7f\x58\xde\xd5\x80\x0c\x43\x55\xa9\x39\x59\x9e\x6a\x2b\x07\xd2\xc8\xea\xee\xde\xdc\x5f\x29\x85\x11\x7b\x55\x3f\x26\xd3\x11\x56\xfd\x1b\xf3\xc4\x2c\x57\x2f\x63\xbc\x4c\x14\x33\x71\x54\x3d\xd8\x48\x12\x29\xeb\x9f\x54\x59\xf2\x03\x33\x29\x8e\x39\x47\x33\x5a\x66\x71\x93\x34\xb4\xb2\xed\xdf\xf5\x80\xf7\x76\x5e\x55\xf7\x5c\x66\x65\x6a\xe6\xc3\x79\x94\x43\x56\xc9\xb2\x9e\xf7\x79\x6c\x54\x21\xdd\xfe\x46\xac\x2c\x22\xeb\xae\x53\xcf\xf3\xd5\xee\x5c\x4a\xda\xaa\x56\x37\x9f\xe4\xa6\xfb\xf2\x32\xda\x95\x0e\xa6\xe5\x62\xc6\x70\xb1\x98\x09\x68\x8d\x87\xa9\x13\x78\x1d\x9a\xf1\x30\x23\xfb\x93\x47\xba\x2a\xdf\x80\xce\xcd\x55\x7f\x98\xd1\x0e\xd5\x39\xd8\x91\x45\x5a\xd9\xdf\x8b\xf6\xbd\x76\x75\x18\xcd\xbf\x6e\x73\x22\xdd\x9f\x6a\xcb\xb2\x44\x7c\xcc\x3c\x11\x4f\x53\x4d\x96\xad\x4e\x7d\x2d\xf9\x9d\xb5\xf1\x3b\x48\x22\x6b\xfd\x8e\x50\xec\xb5\xe6\xe2\x19\x42\x82\xd5\x68\xfd\x4a\xeb\x5d\x33\xe3\x2f\x15\xc0\xb3\x20\x9d\xea\x06\x9c\xb5\xb2\x48\x3a\xed\x9e\xe4\x91\x9d\x9b\x28\x76\xf3\x1b\x97\x54\x44\xb7\xda\x31\x28\x26\xbb\x2f\xeb\x0f\x35\xec\x46\x19\x9d\x9f\x03\x2a\x16\xd1\xae\xf5\x3d\xb6\x98\xac\x5b\x77\xcf\xc5\x84\xea\x68\xf7\x42\x96\xd9\x58\xfe\x87\x6c\xde\x3c\x7e\xb3\x96\xc7\x75\xb7\xe4\xc9\xc2\xac\x37\x56\xa1\xf3\x6c\xfd\xb4\xfe\x74\x6e\xac\xb7\xe3\x4a\x85\x75\x4d\xa6\x74\x22\xad\x7b\xc8\xf8\xe2\xb5\x31\xcc\xf0\xb6\x76\x42\x08\xb9\x38\xeb\xfa\x70\x0d\xdc\xda\x29\x19\xe4\xf9\xae\x7b\x5a\x42\x7f\xbf\xee\x34\x7f\xf3\x9a\xe7\xcc\x50\xb2\x36\x66\x3b\x3d\xe7\x9b\x77\x07\x88\x19\x6f\x4d\xc7\x53\x84\xab\xfa\xe6\xcd\x35\xc2\x61\xad\x36\xb8\xd5\x04\x5c\x9b\x00\xa8\x64\x03\xe7\x1b\x19\x07\xf1\xb3\x25\xa0\xd4\xf0\x25\xee\x61\xff\x7e\xee\x67\xb0\x53\x00\x7a\xf9\x01\x5b\xe2\x80\xbe\xfd\x3e\xe9\x6f\x10\x0e\x0c\x0e\x07\x56\x59\x03\xba\x37\x81\x6a\x77\x60\x64\x4f\x60\x99\x3b\xd7\xb7\x57\x4e\x04\xac\x47\x01\xe5\x66\xad\xf2\xfe\xfd\x80\xc9\xfd\x38\xde\xed\xff\x23\x50\xa4\xc3\xb9\x9c\xfc\x0c\x60\x5a\x35\x73\x60\xcc\x30\xe0\x51\xaa\x89\xcd\x75\xff\x73\x80\xa5\x7f\x02\x25\x85\x9c\x53\x91\xfe\x6e\xa7\xf5\x97\xfd\x0f\x96\x1a\x01\xb7\xcb\xa5\xda\x00\x3c\x4d\x01\x96\x9c\x05\x84\xf1\x2d\x7d\x20\x4a\x1a\x79\x94\xf1\x5e\x34\xb6\x65\xfc\x43\x6b\xdc\xc3\xc1\x27\x40\xf7\x27\x8c\x7b\xe8\x7e\x8b\xf3\xfd\x3d\x7b\x00\x52\x1b\xd4\x67\x1b\xb0\xfe\x31\x20\x59\xcb\xf8\x17\x6d\x65\x60\xc5\x59\x60\x68\x35\x50\xbd\x0a\xd0\x3f\xc6\xf9\xce\x51\x4d\x9c\x93\x34\xbf\xc8\x79\xff\x89\xb1\x40\xf1\x4e\xc0\x3e\x09\x28\x94\x07\x5c\x95\x38\x26\xef\xd5\x04\xe4\xaf\x01\x42\x04\xce\x6b\x4b\x2d\x78\xfe\x58\x60\xc6\x42\x20\x3f\x13\xc8\x53\x6e\xa9\xfb\x9f\xe3\xce\x96\xa6\x48\x1b\x58\x7b\x08\x98\x7b\x1c\xd8\x31\x1f\x28\xb1\x00\x0e\x5b\x71\xff\x88\xb3\x06\x5c\x5f\x7b\xfb\x08\xb0\x44\x02\xbc\x12\x80\x85\x3e\x8c\x83\x90\xcd\x5f\x96\xff\xbf\xdc\x04\x74\xba\x08\x9c\xff\x81\xeb\x90\xbf\x86\x7b\xd8\xbd\x05\x50\xd8\x06\x6c\xe9\x0d\x28\x4e\x64\xcc\x81\x6a\x23\xf0\x4d\x39\xe3\x41\x9a\xf9\x0e\x1a\x78\x3d\x96\x06\x00\x3a\xbf\x03\x15\xaa\x1c\x7f\x2d\x2d\x67\xb9\x28\x9e\x0e\x58\xfd\xd2\x2a\xef\x5f\xc6\xeb\x30\xe5\x09\x90\x9d\x0b\x84\x84\x72\x7e\x56\xea\xa1\x49\xbd\x8f\xe4\x97\x40\xf6\x25\x20\xc7\x19\xc8\xeb\x02\xcc\xef\xd2\xc2\x7f\x90\x97\x01\xac\x5e\xd7\xd2\xff\xa0\x60\x27\x70\xd8\x1d\x98\xd3\x87\xf3\x7b\x73\xed\x80\x9b\xdd\x58\xfe\x5e\x56\x02\xc5\x57\x81\x8f\x1f\x3e\xe9\x83\x21\xf2\x20\x5c\xda\xce\xf9\xd9\x9f\xeb\xb9\x2e\xfb\xc7\x7c\xa0\x6d\x7f\xe0\xd0\x02\xe9\xd9\xdf\x82\x7b\xa8\xd7\x05\xda\x2e\x07\x36\x3f\x05\x3a\xcf\x95\x6a\x1f\xa0\x20\xb0\xd6\x2b\x49\x80\x6a\x35\xa0\xcf\xb4\x16\xbe\x83\xb2\x21\x80\xf6\x3c\xce\x7b\xeb\x19\x00\xc5\x5d\x81\x51\x8a\x40\x41\x3b\xce\xef\xe6\xb4\xe1\x1c\x45\xa6\x0a\xe0\xd4\x09\x98\x25\xc7\xfd\x83\x66\x0d\x04\x82\xd4\x80\xb4\x23\xc0\xd4\x4c\x60\x56\x19\x30\x7d\x23\x90\xee\xc0\x58\x81\xcc\xdd\xc0\xbc\x37\x40\xc6\x33\x5e\x87\xcc\x24\x60\x4d\x14\x90\xb3\x11\xd8\xb9\x11\xc8\xfb\x1e\x38\x7a\x05\x90\x7a\x2f\xa7\xcf\x02\x85\xcf\x81\x5b\xca\xcc\xad\xf2\xef\xea\x4f\xe6\xdf\x5b\xe4\x41\x28\x6e\x55\xdf\x2d\xe6\x17\xfe\x1b\xee\x61\xad\x35\xd0\x26\x0d\xf8\xa6\x08\x90\xfa\x83\xb2\x3e\x0f\x4b\x8e\x00\xd2\xfb\x52\xc5\x7b\x40\xed\x08\x30\x2f\x88\x6b\x26\xe7\x64\x03\x83\xfd\x81\xc2\x3b\xc0\x88\x1f\x81\x3c\x79\xae\x3d\x95\xe5\xfd\xd3\xb4\x00\x3b\x4b\xc6\x38\xb8\x5d\x66\x5c\x42\x80\x04\x98\xfe\x8c\xfb\xc4\xa4\x80\x73\xdc\x29\x3d\x80\x8c\x46\x60\x96\x54\x1e\xa6\x00\x69\x29\xc0\xd2\x06\x60\x96\x1a\xb0\x4e\x17\x98\x75\x07\xd8\x31\x18\x48\xfb\x15\x38\xe4\xc8\x38\x87\xd3\xbf\x02\x99\x27\x38\xbf\x97\x33\x12\x78\xbe\xab\x05\xff\x92\x7a\x85\xe5\x40\xd6\x0f\xe2\x0b\xbe\x07\x31\x3a\xf2\x35\xdc\xc3\xfa\x05\xe2\xe9\x57\xc6\x75\xec\xb2\x7c\x7f\x79\x01\xd0\xf5\x08\xe7\x16\x54\x45\x2c\x93\xda\x01\x20\x77\x31\x28\x92\x97\x5d\xc3\x35\xb5\xe9\x29\x9c\x53\x6b\xe6\x3d\x48\x03\x6c\x57\x03\xc9\x86\xcc\x17\x13\xd7\x00\x4c\xe9\x0e\x24\xdc\x97\xfa\xba\x80\xf4\xb6\x22\xfd\x5f\xe2\x5a\x20\xcb\xac\x85\xff\x20\xf1\x04\xcb\x43\x6a\x5f\x60\xc3\x7b\x60\xa6\x29\xb0\xab\x84\x6b\xe2\x8f\x2b\xb1\x6d\x95\xee\x71\x5a\x77\xe0\xee\x1a\x20\xe3\x04\xf0\xee\x44\xcb\xfc\x5b\xf3\x40\x9c\x16\xeb\xfa\x65\xf9\x5e\x19\xef\xc5\xbe\x9d\xa2\x3c\x88\xa7\xfd\x56\x59\x9f\x87\x7d\x3c\xca\xf2\xdd\x15\xb2\xae\x9a\x23\x00\xb9\x3b\x40\xd1\x1f\x40\xe7\xc7\x7c\x8b\xe8\x79\x83\xf5\x4f\x43\x02\xcc\xd8\x04\x0c\x32\x07\x52\xb2\x01\x43\x37\x20\xa9\x0d\x60\xaa\x08\xc4\x8f\x04\x26\x84\x00\xf1\xdb\x00\x17\x15\x20\xd6\x1d\xf0\x71\x61\x1b\x19\xda\x04\x44\xd9\x01\x71\x01\x8c\x0f\xc8\xac\x03\xe2\xc7\x03\x25\x2f\xb9\x5f\xc2\xd2\x5d\x40\x7c\x2f\x60\x6d\x0a\x90\x50\x07\xec\xce\x01\x12\x7d\x80\x13\x1a\x40\xfc\x43\xe0\xe2\x18\x20\x39\x17\xb8\xe7\xcc\x55\x1f\x1f\x73\xbf\xc4\x7f\xc8\xf8\x10\x64\xb8\x87\x86\x75\x9f\xeb\x43\x73\xbe\xbb\x15\xef\x85\x2c\xcf\x59\x25\xd6\xf3\xcb\xf2\xbc\xa5\x43\x79\x2c\xbc\x0e\xc8\x1f\x60\x9b\xa6\xac\xc2\x72\x2d\x3d\x77\x93\xcb\x00\xad\x05\x8c\xf7\x18\xee\x02\xc4\x5c\x60\x5c\x61\x4c\x7f\xc0\x5a\x1e\x08\xf3\x63\xbb\x19\x5e\x01\x78\xe4\x01\xa1\xdb\x80\xa0\x3c\x20\xcc\x0e\x88\x55\x04\xc2\x35\x80\xf4\x67\x40\xc8\xaf\xc0\xdc\x3b\x40\xe8\x6d\x60\xc9\x1d\x20\x22\x08\x58\xf3\x1d\xff\xfd\x8e\x0f\x40\x58\x18\x73\x7c\x45\x3a\x00\x97\x2a\x81\xb8\x7b\xc0\xfd\xcc\x2f\xfb\x61\xf8\x8b\x3c\xf7\xb2\x7e\x18\xad\xf9\x4f\x0e\x98\x7d\xae\x0f\x5b\x44\xbe\x8f\xff\x86\xff\x28\x15\xeb\x96\x9b\xf3\xdd\x5d\x81\x4e\x09\x40\x92\x84\xed\xe8\xb4\x6d\x9c\x53\x8c\x1c\x00\x0c\x7c\x0f\x84\xe8\xb1\x9f\x11\x18\xc4\xe7\x88\x74\xef\xa5\x7e\x45\x40\x14\xe0\xa6\x01\xf8\x4d\x63\x3b\xe1\xeb\xcb\xe7\x46\xe0\x6d\x20\xdd\x19\xf0\xb7\x60\xcc\xa0\xf4\xae\xb1\x64\x27\xe0\x77\x96\xf9\x72\x7c\xf5\xd8\xb7\xf1\x5d\x00\x1c\xeb\x03\xf8\xb7\x03\x7e\x39\x0c\xf8\x1d\x00\xfe\x7c\xc8\x5c\x2b\xd2\xf9\x7a\x3f\x07\x84\xaa\x4f\xfa\x80\x88\x78\x00\x59\xdf\x97\xd6\xbc\x17\xff\xad\xef\x89\x0c\xff\xd1\xdc\xf7\xe3\x8f\xcf\xd7\x21\x55\xc4\x57\xc5\x7b\x01\x5d\xf6\x00\x11\x95\x80\x6a\x08\x10\x1c\x05\xf4\x7b\x0f\xf8\xab\xb3\x5c\xf8\xcc\x04\x46\xeb\x72\x1d\xbc\x75\x13\xe0\x51\x07\x8a\x88\x79\x8f\x06\x02\x9c\x80\xc9\x12\xd6\x11\x4f\xa9\x8d\x2c\x06\x3c\xb6\x30\xe6\xd0\x5d\x7a\x5e\xec\x00\x3c\x16\x32\x76\xcf\xcd\x10\xd8\xa3\x00\x78\x1c\x00\x4e\xc6\x31\xff\xc3\x2f\xd1\x80\x47\x15\x70\x4f\x60\x8c\xa6\x54\x1e\x5c\xb6\xf3\xbc\x27\x89\x7c\x28\x13\xed\xc4\xbc\xbf\x8c\xf7\xe2\xff\x98\xf7\xaf\x12\xbb\x2e\x57\xb4\xe1\xb1\x35\x0e\x46\xc6\xfb\x90\x20\x66\x29\xa4\xf2\xdd\xc6\x18\x08\x34\x64\x7e\x25\xe9\x3e\xf6\x91\xbe\xef\x33\xe6\x55\x72\x9b\x0f\x18\xde\x00\x9c\xbb\x31\x8f\x90\x83\x0b\xeb\x87\x73\x0a\xe7\x46\x1d\x36\xf2\x3a\x38\x35\x00\xe9\xc7\xf9\xe7\x12\x4d\xc0\x41\x17\xa8\x5a\x05\xd8\xac\x63\x5e\x10\x5b\xad\xcf\x79\x20\xec\x1a\x81\xcb\xb1\x80\xdd\x2a\xe0\x9f\x35\x80\xad\x21\xfb\x91\xe3\xf7\xfe\x67\x1c\x84\xac\xef\x49\x6b\xfe\x93\x8d\xe2\x7e\x7f\x81\xff\x50\xfa\x5c\x1f\x64\xf8\x0f\x59\xdf\x8b\x59\x62\x76\x46\xc6\x7f\x21\xcb\xfb\x7b\x1d\x04\xda\x6b\x01\xae\x6f\x00\xe5\x8f\x80\xe3\x47\x40\xf2\x11\xb0\xfb\x07\xd0\x91\x00\x36\x97\x81\xb1\x6b\x98\xa7\xc4\x2e\x01\xb0\xd6\x05\x26\x67\x30\xd6\x32\xa2\x14\xb0\x0a\x00\x66\xd5\xf0\xcf\xd2\xb3\xc8\xc2\x01\xa8\x0a\x02\xc6\x0d\x01\xd6\xfb\x03\x66\xbf\x03\x7b\x2d\xf8\x0c\xfa\x49\xc4\x68\xfe\xf6\x1e\x18\x97\x0b\xdc\x77\x06\x4c\x03\x00\xe1\x74\x0b\x0e\x62\xe8\xde\xcf\x71\x10\x5f\xe3\x3f\x59\xfb\x0b\x8f\x32\xfe\x13\xd9\x6d\xb1\x35\xfe\xa3\xc8\x9a\x47\x59\xde\x3b\x55\xc4\xcf\xc5\xa4\xf1\x18\x20\xe6\x8f\xdd\x73\x19\x07\x62\x57\x03\x74\xda\x02\x8c\x5f\x03\xf4\x5a\x03\x8c\xeb\x03\x0c\xdc\xc1\xef\x2d\xf5\xbf\xcd\xd6\x32\xc7\xc7\xe8\x72\xe6\x3c\x19\xed\x09\x44\x75\x04\x0c\x2f\x32\x07\x90\xc1\xaf\xbc\x0e\x86\x07\x81\x65\x6a\x80\xde\x5b\x60\x83\x0b\xa0\xdb\xc0\xbd\x1e\x75\x44\x1f\x60\x78\x36\x70\xf9\x0e\x30\xcc\x97\xd7\x61\xf0\x52\xe0\x83\x02\x30\xe0\x0e\xcf\x5b\x52\xcb\x63\x9f\x86\xcf\x79\x0f\xb6\x87\x7e\x2e\x07\x32\xf6\xcc\x1a\x11\xcf\x50\x79\x99\xc7\xe6\xfe\x2f\x9b\x3e\x97\x83\x2f\xf8\x2f\x44\x1c\xa2\xef\x36\x1e\x9d\xc5\xf5\x35\x17\x9f\x3f\xb6\x0d\xd0\xfd\x3e\x9f\x19\x9a\x00\xf4\x2e\x02\xba\xd1\x80\x7e\x19\x60\xa5\x09\x0c\x33\x60\xce\x10\x1d\xf0\xbd\x6b\xa8\x84\x7d\x0e\xed\x3e\xc0\x9c\x0a\x60\xe0\x76\xf6\xe1\x07\xf4\x01\x36\x9c\x00\xfa\xd5\xb3\x3c\x48\x7d\x59\xe9\x3a\x68\xa4\x32\x37\x98\x7a\x0f\xe0\xfe\x76\xa0\x4f\x2f\x40\x68\x0f\xf4\x14\xf9\xf6\xa4\xb6\xfb\x53\x1c\x44\xbd\x05\xbf\x57\x6b\xfe\x13\x19\xfe\xa3\x32\x8c\x47\x19\xfe\xa1\x54\xc4\xd7\x7d\x81\xff\x10\xfb\x4b\x35\xe3\x1f\xe6\xf3\x38\x45\xd4\x23\x3b\xd1\x3f\x33\x11\x79\x41\x74\xb7\x01\x1d\x9e\x00\xda\x7b\x80\x9e\xb9\xc0\xc0\x62\x60\x58\x0c\xa0\xa5\xcf\x38\x6c\x89\xf4\xde\xb1\x85\xb9\x31\xc3\xca\x01\xb5\xdb\x40\xea\x49\xa0\x77\x28\x30\x7b\x1a\xa0\xfa\x33\xb0\x64\x34\xd0\xc3\x01\x58\x13\xc0\xfc\x16\x52\x99\x56\x54\x01\x8e\x97\x01\x8a\xa7\x80\xcb\x66\x80\x42\x31\x70\xaf\x16\xe8\x9a\x09\xbc\xb9\x03\x28\x28\xf2\xbc\x5b\x8f\xcd\x7a\x20\xeb\x2a\xdd\x0a\xff\xd1\xac\x07\xa2\x5f\x51\x68\xff\xf9\xfc\x9b\x71\x40\xa2\xbd\x9d\x2a\xda\x4f\x7f\xf1\xbc\x70\x3d\xc1\xa3\x8d\x88\x03\x19\x29\xea\x8d\x96\xa8\x87\x6a\x3b\x01\xa5\x7a\xa0\xd7\x1d\xbe\x9f\xf5\x58\x05\x8c\x0d\x07\xba\x6f\x03\x1c\x1b\x19\x83\x19\x98\x0b\x74\x3a\x09\x24\x9a\x01\xed\xe7\xf1\x99\xd4\xbe\x3d\xb0\x28\x04\x68\x37\x1e\x58\xf5\x00\x68\x23\xdd\xd3\x7d\xdc\x23\xf1\x88\x18\xe1\x38\x27\xee\xdd\x2d\xb1\x83\xfc\x33\x51\xf6\x3f\x34\x02\x72\x45\x80\xe0\x0c\xc8\x1f\x67\x3f\xfb\x6b\xf8\x8f\x25\x22\xde\x69\x9e\x78\x0e\xc8\xf0\x1f\xb9\x16\x9f\xcf\x3f\x41\xe4\xdf\x8a\x96\xb4\xa5\x3c\x8e\x8c\x07\xc5\xcb\x80\xbb\xd6\xdb\x9f\x6b\x4b\x9a\x61\x2e\x69\x47\x51\x26\xbd\xef\xda\x51\xd4\xa4\x4f\x32\xe3\x0b\xba\x74\xe9\x10\xdb\xa9\x2b\x20\x3f\xa1\x63\x37\x8d\x0b\x40\xdb\xd0\x8e\x8a\x46\x14\xe9\xed\xd8\xd9\x86\xe2\x8a\x1d\x7c\x7c\x29\xb2\xd7\x61\x78\x1c\xc5\x5f\xda\x7b\x65\x53\x84\xb3\xbd\x32\x57\x84\xc9\x7d\xc3\x9d\xa1\xe5\x1c\xb6\x52\x85\x75\x9b\x05\x87\x28\x42\xd8\x26\xfa\x8c\x68\xdb\x7e\xe7\x3d\xcb\x7e\x2c\x9e\xed\x82\xe8\x33\x0a\x1b\x5a\xc6\xd6\xf8\x8f\x25\x7d\x5b\xcd\xdf\x8c\xf1\x3d\x39\xce\x3c\x8f\x19\x4d\x72\x14\x77\x4b\x78\x26\x4f\x27\x6d\xd4\x8b\xae\x94\x85\x0b\xfc\x93\xf1\x21\x5e\xc5\xdd\x29\xaf\xe9\xe0\xa5\x44\x9a\x61\x59\xdf\x83\xa2\x5f\x86\x8d\x3d\x48\xa2\xb4\x6e\xaa\x92\xc7\xae\x60\xd0\x4b\x44\x66\xf5\x6e\x2f\x4f\xc8\x88\xde\x9d\xd5\x69\xad\x7b\xab\x8f\xa0\x38\x75\xaf\x36\xb6\xff\xf2\xe8\x4b\xf1\xfc\x9e\x06\x1c\x39\x57\xfd\x29\x87\x64\x49\xe5\x75\x19\xed\xa1\xf2\x24\xae\x80\x52\x5e\xb8\x95\xfe\x5d\xf1\xe8\x41\x9a\xb7\x62\xf0\x69\x8a\xac\x29\x04\x5e\xa7\x88\xa8\x42\xde\x23\x8a\xd3\x76\x8b\xe6\xf9\x77\x6e\xcb\xf9\x4d\xf9\xc5\xd2\xb1\x46\x94\xa1\xc5\xe9\x5c\x7d\x5f\xf6\x67\x1b\xca\xbf\x14\x4b\x3a\xd1\xd3\xf2\x8e\x74\x21\x4d\x99\xe1\xaa\x48\xf8\x85\xb8\x02\x25\x3a\x41\xa3\x9e\xab\xd0\xfe\x07\xbe\xec\x45\x78\x10\xef\xe7\x6a\x54\x0f\xec\xdc\xc4\x78\x09\xeb\x26\x4d\x7a\xab\x51\x17\x39\x4b\x35\xb8\x76\x00\x89\x8a\xea\x72\x6d\x92\x07\xb9\x89\x83\x45\x89\x1b\xa4\xd9\x91\x2a\xb6\x06\x25\x68\xd0\x93\x07\x2d\xe1\x7a\x3d\xed\x39\x36\x14\x3f\x1b\x68\xe9\x43\xbc\xcb\xda\xca\xac\xaa\x03\xf7\x65\x52\xe4\x74\x60\x08\xf3\x56\x6b\x25\xad\xa0\x1d\xd1\x3a\xc2\x75\xbc\x9a\xf5\xbc\x0e\x92\xdc\x53\x14\x39\x54\x9b\x76\x95\xe2\xfb\x6a\x6a\x7f\x53\x9c\x5e\x3d\xe9\x03\x61\xc1\x7a\x89\x7c\x20\xcc\x8b\xb2\xe4\xa8\x1c\x45\x33\xe7\x2b\x31\xfe\xa5\xf0\xa2\x12\xc5\x25\x73\x32\x79\x1f\x9b\x79\x60\x7a\xf6\xe5\x3e\x20\x8f\xd4\x8e\xb2\xfc\x73\x74\xd9\xdb\x44\x9b\x2c\x9f\x8b\xca\x10\x3a\x59\x26\x36\x0c\xa7\x28\xe0\x58\x65\xe6\x0d\x19\xee\xa2\x47\x6f\xab\xe1\xa8\x4f\x63\xb7\x43\x46\x62\x1f\x14\xb1\xcc\x17\x46\xfa\x9d\x19\xa7\x51\x29\xa1\x33\x78\x84\x0b\xc7\xed\x47\x6c\xe4\x3a\xf7\x11\xae\xde\xf4\x0a\x23\x56\xc7\x14\xb2\x64\x71\x85\xa1\x61\x43\xc9\x3d\xe9\x68\xb0\xbc\x9a\x24\x54\xef\xbb\x4d\x94\xa7\xd0\x31\xda\x4b\x31\x04\x1d\xab\x13\x34\xff\x61\xe7\xb8\xb6\x62\x58\xa7\xbf\x68\xc7\x86\x04\xbd\x26\xb9\xd0\x16\x71\x52\xcc\x8b\xb2\x60\x49\x57\x3a\xe1\x8a\x36\xab\x50\x56\x2c\x77\x4a\x6f\xaa\x0a\x9e\x69\x27\xa1\x13\x40\xc6\x03\x13\xb9\x86\xf1\x20\xc1\x13\x75\x68\xbe\xde\xb6\xba\xe4\x21\xb8\x9e\x30\x24\x2d\x9d\x58\x6a\x28\xd6\xb9\x8e\xa2\x13\xd6\x68\xf8\x18\x42\x90\x0e\xdc\x68\x42\xd5\xcb\xaa\xeb\x4d\x29\x9b\x29\x6f\x6e\x2e\x7a\x64\xe6\xa9\x3c\x8e\xcb\x65\x3c\xcc\xb8\x5c\x09\x21\xc7\x2c\x8d\x0c\x49\x52\x2c\xa9\x3e\x03\x18\xe7\xe4\x49\x79\xbb\x71\x43\x18\x93\x6a\x89\x99\x8f\xf8\xf3\x73\xe9\x4d\xcc\xe2\xb8\x7e\xd5\x6c\xff\x3a\x5a\x1f\xd3\xc9\xbb\xc9\x46\x9b\xec\x3f\x4e\xcf\x19\xdb\x70\x99\x32\xcc\x63\xe5\xef\x12\x8e\x6c\xd4\x65\xae\xeb\x1e\xb1\x91\xf5\x43\x7f\x0c\xe1\x1f\xf6\xf7\x24\x4f\x20\xd7\x44\x93\x10\xe6\x69\x47\x99\x95\x23\x49\xc2\xfd\x81\xa6\x06\xeb\x91\x9e\x07\x4f\x37\xe2\x2c\x79\x03\xe3\x04\x5c\xe3\xb8\x5f\x8e\x9d\x84\x71\x21\x96\xe0\xf9\x19\x5f\xb5\xa4\x3c\xc7\xd0\x46\xe6\x7f\xe9\xe7\x32\x81\xec\x8a\x62\xf0\x44\xca\x97\x61\xb7\xad\x98\xbf\x98\x24\x7a\xec\x36\x8f\x14\x18\x9f\x21\xe1\x44\xb8\x5d\x23\x77\xe6\xb1\x77\xb6\x0e\xe4\x9f\x3d\x08\x7b\x69\x37\x35\x2c\x93\x7f\x4e\x21\x0d\xb3\xaf\x2c\x24\x4d\xb6\x2f\x64\xe6\x78\x3b\x09\xe3\xa4\x6c\xde\xef\xa4\x37\xb4\x39\x7e\x94\xf2\xbf\x13\xba\x37\x92\x64\x8e\xdf\x75\x93\xd6\xc7\xda\xe0\x11\xc5\xef\x3f\xef\x1b\xf4\x05\x0f\x4e\x83\x01\xe5\x79\xa7\xad\x60\x1c\x4c\x68\xd8\x58\x42\x94\xcb\xfa\x21\x79\xdc\x60\x9c\x80\x0c\x07\x63\xbd\x66\x22\xd7\x77\xde\xe2\x6e\x15\x32\x1c\xcc\xc0\x0a\x7b\xba\xa9\xf5\xba\xcf\x38\x82\x2e\xc6\xce\xe2\xc9\xe4\x26\xca\x83\x9b\x18\xb9\x70\x7b\xa0\x40\x2b\xe9\xb9\x45\x93\x98\x03\x3c\xd6\x1b\x90\xa4\x78\xd8\x58\x92\x6f\xe6\x39\x99\x39\xb8\x3c\xaa\x83\x29\x63\xe4\x59\x9f\x44\x6f\xea\x99\x9d\x4b\xfa\xe4\xb1\x8d\x7d\x7c\x8f\x09\x2b\xbd\x78\x87\x36\x6d\xe4\x71\x3f\xf9\xc0\x2e\xe5\x3f\x53\x1e\xc8\x55\xeb\x57\xca\x87\x38\x6f\xbb\x4f\xf8\x11\xc7\xbe\xaf\xa9\xf2\x9e\xfb\x06\xa5\x57\x18\xd1\xa7\x52\xdc\x58\x5f\x63\x3e\x98\x12\x0e\x22\x42\x99\xb3\xcd\x01\xc6\xd6\xb4\x4e\x93\x77\x4e\xa4\x7d\x74\x6e\xe2\x2e\x25\x13\x0f\xf1\x3c\x65\x38\x18\xe3\x1c\x57\xda\xdf\x61\x1f\x3d\x68\x17\x35\x3e\x78\xd0\x03\x7a\x6c\x64\xdc\x44\x3b\xb3\x29\x62\xdf\x03\x19\x0e\xc6\x3f\x8e\x4f\x22\xbf\x3a\x25\xd2\x6f\xbf\x23\x9a\x64\x79\xfd\x5d\x99\x61\xc9\xff\x84\xa5\x37\x7f\xce\x85\xbe\x39\xe0\x66\x20\x59\xb0\x00\x49\x1c\xe5\x2d\x03\x16\x70\xde\x3f\xa0\x66\x3e\x9d\x40\xfe\x7b\xab\x49\x6f\xfc\x5c\x36\x46\xf2\xf7\xec\xa5\x7c\xa0\xaf\xe3\x09\x92\x17\x1f\x65\xd6\x0f\xef\xf2\x5b\x24\xc9\xde\xf7\x9f\x7d\xc2\x8b\x92\x1a\x6d\x4a\x9e\x71\x6c\x88\x25\x59\xa3\xc8\xf2\x09\x94\x6d\x0d\xca\x9b\x44\x1e\x8f\xf7\x0d\xe6\x83\x71\x9f\xeb\xb2\x1b\x9f\xe0\x60\xac\x94\x79\x7e\x32\x1c\x8c\x7e\x17\xee\xd6\x31\x48\xce\x77\x2a\xa8\x5b\x99\x2f\x69\x6f\xb7\x1c\x91\x17\xa6\x5b\x88\xe8\x51\x85\x8b\x11\xbf\x70\x39\x39\xca\xbb\x84\xbd\xe1\xbe\x51\x11\x0d\x8c\x8f\x8a\x68\x30\xa4\x27\x46\x9a\xf1\x4e\x84\xad\x62\x89\x8a\x5c\x12\x48\x75\xca\x11\x9b\xf8\xdc\x88\x34\xe3\xbb\x6d\xa4\x59\x09\xc9\x4b\x44\xc0\x32\x3a\x99\xc3\xd6\xae\xa1\x75\x0b\xdb\xbd\x8b\xe4\x3f\xcc\x82\x6b\x2a\x42\x9f\x70\xed\x51\xa8\x36\xf3\xe6\x04\x07\x3f\xa4\xf5\x0c\xac\x7c\x7f\x02\x48\x28\x67\x3d\x8e\xca\xb5\x23\xb6\x96\xe0\xd9\x8e\x54\xcf\xec\x53\xca\xf2\xeb\x39\xd8\x93\xea\x92\x1d\x0f\x33\x0e\x66\xbc\x1f\xef\x67\x6b\x1c\x8c\x8e\x55\x08\xdd\xcc\xb5\xf4\x38\x7f\xde\xd3\x20\x9c\xce\x97\x4e\x8d\x91\xe2\x8d\x43\xc6\x0b\x13\x23\xde\xec\xe2\x87\x32\x62\x31\x6e\x5e\x0f\x7a\x52\x9c\x9e\x16\xbd\x57\x5c\x8e\x01\xf9\x6a\xb1\xe2\x5d\x24\xae\xc0\x91\x7c\x99\xc4\xfb\xfe\xf4\x97\xf1\xc7\x18\x71\x11\xff\x30\x8d\x2c\x7b\xc2\x9a\x22\xc6\xcd\x44\x2f\x5e\xc7\x7f\xbf\x9a\x76\x24\xee\x6a\x3d\x65\xea\xe2\x82\x0e\x0f\xe5\xe7\x9d\x69\xc3\x23\xfb\x55\xd1\x8a\xf7\xc9\x0f\x89\x52\x7c\x95\x29\x7d\x3b\x47\xca\x6b\x86\x95\x8b\x38\x18\x6d\x4f\x9a\xa7\x97\x81\xaf\x15\xeb\x01\xa3\x0e\xbe\x86\x83\xd1\x5f\x1b\x49\x3f\x6b\x3f\x88\x24\x34\x8e\xfa\xf2\xa9\x14\xa1\x68\xe6\x85\x29\x8a\x17\x6f\x62\x32\x5e\x98\x54\xf1\x06\x92\x32\x8b\xfb\x80\xc8\xf0\x30\xa9\x9d\x58\x1e\x52\xf5\x0d\xc8\x0e\xa4\x1c\x1e\x47\x86\x73\xc6\x5d\x47\xba\xe3\xa4\xe6\x70\xbe\x7b\xc6\xb1\x28\x7a\xe3\x19\x4d\x33\x08\xd9\x98\x7a\xb3\x70\x3c\x8f\xcc\x89\x3a\xb3\x7c\xe5\x76\x7e\xee\xe6\xb1\xf4\xfb\xad\x07\xc8\x52\xa7\x6c\x39\x45\xeb\x33\xdd\xfd\x32\x65\x64\x93\x33\xef\x32\x23\x92\xc9\x23\x03\x20\xdc\x67\x0a\xd9\xc5\xa0\x17\xcc\x6f\xe4\x6b\x15\x44\xe8\x21\xf7\x4e\xad\x70\x30\x0d\x9c\x65\x36\xbb\x19\x45\xf8\x5a\x19\x0e\x66\x78\x5e\x0c\xd9\x89\xfe\xcb\xe2\x68\xff\xfb\xf8\xc4\x53\x04\x4f\x31\x3c\x91\xd6\xa3\x4d\x4e\xeb\x3e\x49\x99\xe2\x39\x91\x25\xe1\xbe\x0f\x59\x8d\x3d\xd6\xf0\xcf\xbc\x0e\x99\x67\xf4\xc9\xc7\xcd\xd8\xc2\xf2\x90\x51\xc7\xb8\xda\xac\xbb\xbc\x0e\x99\x71\x11\x24\xef\xd9\xb9\x29\x64\x5f\xb2\xdc\xf2\x98\x4f\xc6\x77\xc1\x32\xfe\x7d\x2d\x49\x6e\x96\xc3\xc6\x20\x7e\xde\x77\x14\x4b\xcb\x0c\x3c\x21\xf2\xc6\x5c\xa0\x1d\x9d\xd5\x70\x93\xf8\xc8\x18\x17\x13\x72\x24\x90\xce\x7b\x3f\x9d\x10\xf2\x07\x3c\x3f\x44\x50\x76\xd4\xf9\x09\xb3\x0b\xd8\xd4\x4c\x25\xef\xcd\x5a\x2b\x96\xbc\xba\xb1\xca\x8c\xfb\x31\x88\x4b\x24\x3b\x32\x54\x92\x44\x7e\x91\xa6\x06\xcf\xb7\xe7\x93\x19\xf4\xbc\x2e\x2e\x19\x94\x6d\x6f\x5b\x90\x25\x56\x2e\xe5\x88\xfa\x21\xc3\xc3\x14\xbe\x96\x27\x7e\xb8\xd9\xaa\x2a\x64\xc7\x66\x2b\xb3\x5e\xe4\x37\xe9\xd3\x9d\xa5\xb0\xab\x19\xad\x58\xc1\x5e\x3b\x35\xfe\x9c\x37\xd9\xc9\x39\x56\xe1\x37\xf1\x29\x4f\x8c\x5e\x36\x69\x64\xe1\x96\x79\xa4\x5f\x85\x3f\x54\x11\xce\xb6\xf0\xea\x7a\x5a\x9f\x82\x89\x3b\xb9\xcf\xd2\xf8\x06\xd2\xd8\xbc\x2b\xe7\xc8\x42\xe5\x85\xfe\x4e\x3b\x99\x97\xf3\xd7\x3b\xc0\xff\x72\x24\xeb\xc1\xd9\xff\x8c\x83\x19\x5f\xce\xfd\x82\xcc\x25\x49\xf4\x57\xa3\x0c\x66\xd0\xfc\x74\xd7\xa5\x91\xfd\x1f\x34\x2c\x8d\x4e\x7b\x0d\x09\x5b\x2d\xe5\x7e\x99\x64\xad\x3a\xc6\xc9\x22\x95\xb2\x79\x7f\x0d\x0f\x53\x2a\xa8\x9c\xe1\x91\x3d\xf0\x52\x41\x9f\xde\x77\x7e\x27\xf3\x74\xfe\x9c\x1d\xed\x5f\x49\xd3\x64\x9a\xff\x3c\xf3\x50\x65\x7c\xc2\x13\x33\x6f\x0a\x9f\x1b\x25\x35\xcc\x27\x35\xcf\x68\x99\x11\x3e\xe9\x9f\x54\x5a\xb7\x93\xfc\xb0\x52\xe7\xa3\x74\x8f\x29\x29\x3b\x4b\xe7\xc6\x9c\x84\x2b\x74\x9f\x63\x5c\x8c\xf7\xaa\x68\x9a\x97\xdb\x9a\x18\x92\x46\xe7\xa6\x24\x92\xba\x49\x0e\x8c\x0b\xb1\xcc\x4e\xa5\x08\xf5\x18\xe3\x34\x8a\xe0\x19\xfc\x98\x41\xf2\x3e\xec\x71\x26\xdd\xea\xb4\xf4\xb2\xd9\x8b\xd7\xc9\xa1\x7f\x57\xfc\x96\xd9\x39\xe4\xcd\xe7\x3c\xfc\x7c\xde\x0b\x44\x05\x59\x24\x46\x26\x2a\x86\x76\xa4\x23\x47\x86\x87\x59\xac\xc0\x7a\x51\x21\x18\xd0\x93\x17\x4b\x4c\xe9\x8d\x2a\xf4\xd9\xe3\x5a\xf4\xdc\x83\xc6\xf2\x73\xa1\x64\xb1\x2a\xce\x30\x33\x93\x8c\x27\xa6\xe2\x1d\x77\xec\xa9\xb8\xb0\x94\x4e\xbe\x0a\xf7\x6f\xe8\x9b\x9b\xfb\x27\x3d\x39\x44\xeb\xbc\x48\x72\x82\x34\x7d\x41\xd3\x2f\xa4\x77\x0b\x3a\xde\xda\xf7\x29\x1f\x4e\x0a\x45\xee\x5b\xf3\xe1\x98\x9a\x67\x90\xbf\xd9\x8c\x83\x11\x38\x02\x33\x54\x92\x4f\x76\xb4\x9f\xc3\x6c\x5a\xb7\x5e\x41\x73\xe8\xef\xba\x8d\xe0\x5d\x91\xab\x60\x7e\x98\x4f\xf0\x30\x22\x6f\x92\x0c\x0f\x53\xd5\xd0\x91\xf6\xa5\x5a\x8d\x6f\xa0\xd5\x6a\x5a\xa4\x41\xd5\x25\x7c\x23\xa9\x36\x33\x25\x79\xa8\xee\x6c\x4b\x12\x56\xb5\xd1\x9d\x24\x6a\xd9\x37\x81\xb4\x33\xd5\xae\xb1\x74\x5f\x58\x7a\x65\x26\x9d\x13\xd5\x2a\x73\x07\xf3\x73\x99\xa9\xa3\xaa\x61\x15\x3d\x6f\xe9\x98\xcd\xe4\x9f\x2f\x0b\xde\x47\x71\x88\x65\x9b\x7e\x22\x46\xaf\xca\xb0\xf3\x64\xb1\x2b\x7f\x6d\x4a\xfc\x92\x0f\xc7\xc6\x9c\xfb\x80\x59\x22\x97\xfc\x87\xb1\x4f\x18\x7d\x64\x1c\xc9\xf3\xd5\x2f\xe7\x55\xd7\x7e\x57\x42\x0b\xd3\x6f\x04\xf7\x49\x52\x3d\x34\x9f\xd6\xad\xd3\xda\x32\xae\xc0\x39\x5b\x2e\xe2\x45\x2b\xc5\x48\x45\x33\x1e\x46\x8c\x60\xc8\xf0\x30\x75\x96\x8c\x97\x5b\x59\xd6\x9f\x2c\x53\x5d\xa2\x2e\x9d\x83\xb5\x45\x8c\x6c\xae\xcb\xb2\xa1\xb1\xb6\xd0\x8d\xec\x65\x4d\x23\x77\x30\xac\x7b\xca\x08\xbe\xba\x65\x33\x69\x7d\x6a\x73\xf9\xdc\xa8\xd3\x64\xff\xb2\xf6\x74\x0d\xbd\x69\xcd\x33\xe6\x5b\xab\x6d\xb3\x97\x4e\xb6\x9a\xdf\x8f\x51\x5c\xa3\x26\x81\x73\xbb\x2b\xe6\x4a\xcf\xd1\xf3\xe7\x01\x25\xad\x4f\x70\x0f\x87\x00\x85\xba\x16\xdc\xc3\xde\xb1\x40\xf7\x1f\x5b\x78\x0e\x36\x35\x49\x7d\x03\x60\xed\x30\xa0\xd7\x0e\xe6\xa2\xe8\xf7\x14\xa8\xb9\xc4\x79\xcc\xca\x4d\x80\xf4\x46\x56\xf1\x4c\xba\x66\x40\x59\x2d\x30\xe2\x29\x50\x9c\x01\x8c\x29\x06\xe6\x26\x71\x9e\x62\xf6\x3e\x8e\x4b\xe7\x2b\x73\x3e\x8f\xf0\x0f\xba\x40\x6e\x2c\x10\xac\x00\x64\xec\x06\xa2\xd6\x01\xe9\x22\xf7\x77\xae\x78\xd2\xe4\x47\x03\x25\x8a\x40\xce\x7a\x60\xa1\x0a\x90\x1f\x05\xd4\xde\x06\xf2\xca\x80\x0d\xea\x40\x41\x09\xb0\x3b\x02\x28\x5a\x07\x1c\x3b\xc6\x31\xdd\x0b\x66\x9c\x13\xbd\xfb\x43\x4b\xfe\xbf\x64\x37\x20\x28\xb7\xf4\x81\x68\xdc\x05\x74\xd1\x05\x4e\x1c\x04\x3a\x3b\x03\x3f\x5c\x00\x3a\xe9\xb6\xe0\x1e\x76\xd4\x00\x9d\xf3\x80\xad\x96\x40\x17\x03\x60\xb3\x33\xa0\x9c\x02\x48\x7d\x36\xa9\x5e\xd7\xad\x07\x7a\xef\x01\xaa\x94\x18\xff\x20\xdd\x7d\xe9\x8d\xa5\xfc\x30\x30\x7c\x35\x20\x95\x1e\xbd\x26\xa0\x78\x32\xf3\xfb\xe7\x6b\x4b\x6f\x36\x40\xc1\x29\xc0\x76\x1a\x90\xb9\x95\x6b\x4b\xa5\xd2\xe8\x29\xe6\x3f\xa4\xfb\x9d\x71\x01\x88\xd2\x02\xd2\x12\x80\xf8\xb0\x96\xbe\x07\x99\x7d\x81\xd9\x7f\xf2\xb8\xf0\x04\x90\x33\x1b\xa8\xbd\xd4\xc2\x7f\x90\xe3\x0c\xec\xda\x2e\x3d\x0d\xb8\x9e\xb3\xc0\x10\xb8\xa8\x0e\x94\xaa\x02\xf7\xf3\x80\x79\x83\x81\x0f\x13\xbe\xec\x83\x71\x56\x01\x68\xf7\x84\x73\xc4\xed\x26\x00\x87\x8a\x18\xf7\xf0\xdd\x76\xa0\xc3\x70\xa0\x3e\x1b\xe8\xb0\x18\xf8\xb6\x03\x20\x6f\x0c\xac\x1d\x01\x48\x6f\xea\xad\xfb\x3c\x2c\x19\x0e\xf4\x99\xd8\x82\x7f\x28\x7e\x0a\x68\xdf\x03\x0a\x2f\x72\xcc\x59\x6a\x55\x46\xba\x01\xb9\x8d\x80\xe9\xdf\x40\x56\x03\x20\x75\x6f\xd2\xc3\x00\x07\x75\x40\x2a\xdb\xee\x7e\xc0\x4c\x25\xc0\x4f\xc2\x38\x80\x70\x9f\x4f\xfa\x1e\x24\x03\xb3\xf2\x98\x1f\x61\x76\x03\x90\xb6\x88\x79\x41\xd2\xab\x00\xa9\xfc\x67\xd8\x00\x1b\x8e\xf3\x7a\xee\x9e\xc9\xeb\x26\x95\x87\xdc\xfd\xc0\x2f\xca\x40\xa1\x1a\x70\xef\x0e\x90\xdf\x03\x78\xe3\x07\xe4\x8c\xf9\x9c\x07\xe2\x54\x08\xf7\x3f\x39\x7a\x96\x79\x30\x9a\xfb\x1b\x48\x98\x0f\x63\xab\x19\x8f\x9b\x2d\x99\x27\xa4\x4e\xe0\xfe\x29\x32\xde\x87\xca\x85\xcc\x0f\x22\xe3\x3b\x28\xe9\x01\xf4\x9e\x00\xcc\x39\x08\x68\xbe\x03\x0a\xae\x00\x43\xc3\x18\x97\x61\x98\xcc\x79\xff\x51\x4d\x2d\xf8\x87\x99\xeb\x39\x96\x3d\xbd\x3d\xe0\xf2\x1d\x10\x77\x18\xf0\xba\xcb\xf5\xf0\x61\x46\x40\x7c\x5f\x20\xfa\x32\xe3\x14\x66\x96\x03\xc9\x27\x81\x42\xa3\x16\xfe\x83\xd4\x2b\xc0\x8a\xe3\xfc\x9c\xcd\xeb\x81\xf4\x7c\xe0\xfb\x14\xe6\x53\x38\xd9\x9b\xd7\xf9\xf2\x0f\x40\xd6\x53\xe0\x9f\x06\x20\xf3\x30\xf0\x06\xbc\x9e\xd2\x75\x48\x11\xf3\xde\xc7\xef\xf2\xfc\x9b\x71\x0f\xb2\x7c\x77\x2b\xdc\xc3\x3a\xf1\x96\x28\xcb\xf3\x56\xfe\xc2\xfd\x51\x16\x75\x05\xda\xf7\x00\x4a\xcf\x30\xdf\x81\x54\x0f\x55\x25\x2d\x7c\x07\x52\xab\x2b\x3d\x07\xa4\xdf\x2b\x95\x8b\xb4\xa5\x80\xb1\x2f\x90\x72\x82\x6b\x57\x93\xdd\x01\x9b\x44\x20\x41\x45\x7a\x23\x06\xa4\x97\x34\x0f\x17\x20\xae\x13\x10\xf2\x3d\x10\x3d\x1b\x98\x1a\x08\xc4\x34\x71\xee\x3c\x7e\x1d\x50\x18\xcc\xf9\xe3\x85\x71\x40\xc2\x16\xa0\x46\x07\x48\x0e\x04\x36\x3d\x03\x12\xae\x00\x7b\xb3\x80\x14\x3b\xe0\xa7\x15\xc0\xf4\x0b\xc0\x95\xed\xbc\x86\xff\x58\x02\x33\xd5\x01\x41\xba\xee\xdd\xb9\xfe\x5f\x86\x03\x68\xc6\x3d\x88\x71\xf6\x7d\x87\x78\x6c\xc6\x3d\xc8\x78\x2f\xbe\x82\x7b\x90\xe5\x79\x8b\x8b\x01\xf9\x73\x40\xde\x4d\xb6\xb7\x59\x17\x01\x95\xdd\xac\xef\x92\x5a\x20\xf5\x02\x30\x78\x01\xef\xb3\xf4\x3e\x19\xfb\x2f\x30\xa6\x00\x88\xf3\x00\xac\x12\x81\xd8\x1d\x80\xe3\x81\x96\x75\x88\x28\x05\x02\x33\x81\xf0\xd3\x40\xd4\x64\x20\xa2\x10\x48\x51\x6c\xe1\x3f\x88\x78\x0c\x2c\x68\x07\xc4\xdf\x04\x56\xcf\x05\xe2\x6d\x80\x6f\xff\x05\x62\xa7\x00\xfb\xd6\xb2\x6d\xfd\x49\x02\x24\x3c\x00\x7e\x2b\x04\x92\x74\x81\xa7\xd2\xf5\x52\x07\x3e\x9e\xfe\xa4\x0f\xc8\x0a\x31\xdf\xdd\x0a\xf7\xb0\x4f\x3c\xed\x76\x88\xdd\x01\x65\x79\xde\x6f\x8e\xfc\xe7\x75\x68\x9d\xe7\xcd\x4b\x63\xbe\xa1\x59\xb3\x01\xe5\x19\x9f\xf4\x7b\xd0\x02\x34\x8f\x00\xd3\x2c\x81\x61\x99\x40\x44\x13\x60\x54\x06\x44\xce\x07\xa4\xf7\xa9\x90\x61\xc0\xc4\x52\x20\xf4\x17\xa9\x4f\x0b\x84\x16\x73\xde\x5f\xd6\xff\x21\xd8\x8b\xe5\x21\x38\x0b\xc8\xdb\x0a\x04\x7c\x07\x94\x9e\x05\x42\xdb\x03\x35\x61\x40\xf0\x3a\xae\xeb\x0d\x35\x66\x6c\x9f\xf4\xd6\x2b\x5d\x87\x90\x69\xc0\x2f\x8f\x80\x69\xab\x81\xe7\xd1\x2d\xf8\x0f\x59\x1f\x10\x19\x1f\x82\xac\xdf\xc7\x81\x95\xad\xf4\xa1\x15\xef\xc5\x17\xf8\x0f\xb1\x5e\x59\xc6\x77\xd0\x9c\xef\x7e\xca\x78\xaa\x14\x0b\xa0\x73\x3f\x20\x6e\x29\xd0\xe3\x29\x10\xf5\x2f\xa0\x56\x0b\x84\xef\x00\xb4\x6d\x80\x80\xbf\x01\x9d\x46\xc0\xef\x35\x30\x7a\x17\xe0\x7b\x89\xf9\xa5\xfc\x06\x00\xce\xc9\x80\xef\x53\xc0\xf7\x38\xa8\x0a\x42\x2a\x13\xbe\xb1\xc0\x74\x5d\xc0\x27\x06\xc8\x6b\xcb\xb9\xf0\x85\x6b\x00\xef\x1d\xc0\x0a\x75\xc0\x47\x1b\xd8\xb4\x03\xf0\x7d\x0d\xec\x3f\x01\xf8\x65\x02\xa7\x72\x00\xdf\xbe\x8c\x8d\x0c\x70\x03\x9e\xd4\x01\x7e\x9a\xac\x0f\x3e\x3d\x45\xfc\x83\x88\x83\x90\xf1\x1d\x7c\xc1\x7b\xf1\x95\xbe\x27\xad\xf9\x0e\x9a\x79\x1f\xc4\xdb\x75\x33\xef\x83\x0f\x20\xbd\x4f\x4e\x3d\x01\x28\x3c\x05\xc2\x43\x18\x5f\xe8\xf7\x16\xe8\x97\x0d\x78\xc7\x00\x43\xbb\x00\x5e\x47\x80\x11\xba\xcc\x91\x23\xbd\x98\x4f\x9e\xc9\xb9\x7f\x8f\x6d\x8c\xa7\xf4\xcc\x02\x22\x26\x00\x1e\x8f\x59\x1e\xdc\xaf\xb3\x2f\xe1\x36\x13\x58\x20\xf6\xb7\xa8\x1d\x06\xb8\xd9\x02\x5b\xf6\x02\xee\x8e\x8c\x13\x73\x3d\x0d\x48\xef\x11\x6e\x12\xe6\x15\x73\x8b\xe4\x3e\x31\x6e\xb7\x3e\xe7\x81\x90\xe1\x20\xfe\xaf\x38\xa0\xaf\xe1\x3f\x4a\x44\xfe\x98\xd6\xbc\x0f\x71\xa2\x7d\x09\xac\x64\x7c\x9d\x74\x5f\x15\xde\x03\x93\x7f\x64\xfe\x07\x0f\x6b\x60\xe0\x6d\xc0\x63\x24\x60\x78\x01\x70\x1a\xc8\xbc\x20\xf6\x73\xb9\xff\x9c\xfd\x45\xf6\x27\x1c\xbd\x80\xf0\x27\x80\x7d\x07\x20\x39\x05\x98\xe4\xc7\xd8\x49\xbb\x8b\xcc\x03\x31\x69\x3f\x63\xd6\xa4\x77\x90\xad\x06\xcc\x15\x70\xf0\x1d\x60\x9f\x08\x9c\x8f\x05\xec\x0d\x81\x3f\x6c\x99\x4f\xe2\xd5\x27\xfd\x4f\x2c\x9e\x7e\x8e\x83\x90\xc9\xc1\xd7\xfa\x9e\xd4\x89\xeb\x21\xc3\x7f\x7c\xc1\xfb\x20\xae\x1f\x57\x5d\xb4\xe0\x60\xa2\x3b\xf2\xe8\x23\xf2\x28\xb8\x9d\x01\xda\x39\x73\x9f\x8f\x1e\x2e\x8c\x79\x91\xfa\x19\xb6\x4a\xc0\x50\x13\xee\xdb\x21\x3d\x4f\x27\x5c\x05\xc6\x5f\xe6\xde\x6b\xd2\xcf\x8e\x9b\x04\x04\xc9\x01\x96\x91\x6c\xeb\x2c\x4d\x58\x2f\xa4\x3e\x69\xf9\x33\x3e\x7b\x57\x9e\x05\xcc\x3b\x72\xce\xde\x2c\x14\x38\xbc\x97\x7b\x31\x49\xfd\x66\x8b\x05\xc0\x1d\x2f\xe6\x8d\x78\x55\x0e\x8c\xf3\xf9\x9c\xff\x62\xe8\x00\x31\xef\xff\x5f\xf0\x2f\xcd\x72\xd0\x0a\xff\x31\x6f\xaa\xa8\x0f\x32\x1e\x14\x91\xef\x22\x49\x8c\x3a\x85\x89\xf8\x42\x1f\xb1\x3f\x97\xd3\x00\x1e\x6d\x6e\x72\xee\x56\xfa\x5e\xbd\x97\x31\xde\x41\xea\x8f\x9b\xcd\x01\x0c\x1f\x00\xa6\x07\x00\xab\x1c\x60\xf4\x53\xc0\xd5\x1d\x18\x3d\x0a\x08\x72\x60\x3c\x44\xb2\x26\x30\xc2\x05\xc8\x1b\xc0\xbd\xb8\x16\xbe\x04\x46\xe8\x30\x46\xc3\x20\x13\xd8\xa6\x0c\xe8\xf5\x00\x0e\x36\x02\x3a\xab\x81\xb3\x0d\x80\xde\x13\xc6\x57\x0f\xd1\x02\x9e\x67\x03\x83\x55\x45\xfc\x47\x2b\x1c\xc4\x17\xf8\x0f\x71\xbe\x32\xfc\x47\xf5\xc0\xff\x2c\x07\x73\x63\x78\x6c\xcd\x7f\x11\x27\x46\x63\x9b\x71\x30\xe2\x79\xe4\x20\xae\x9f\xd9\x8f\x80\xdc\x08\x60\x74\x1b\x40\xb9\x3f\x30\xc2\x10\xd0\x68\x04\xf4\xce\x03\xc3\xbd\x00\xbd\x9b\x80\x99\x3a\xdf\x4d\x5c\xca\x01\xbd\x5e\x40\x88\x32\x73\x2e\x25\x7e\x03\x68\x4f\x04\x72\xdd\x18\x53\x54\x56\x0e\xf4\x7f\x08\xd4\xad\xe0\xb5\xdc\x3e\x1e\xd0\x3c\x0b\x1c\xaa\x01\x34\xeb\x81\xc6\x2d\x40\xbf\x1b\xcc\x0b\xa2\x2e\xf2\x48\xc9\x70\x1f\x2a\x0b\x3f\xc7\x41\x7c\xb5\xff\xcd\x7d\x51\x0e\x5a\xe1\x3f\x8a\x83\x3f\x97\x83\x66\x1c\x8c\xc8\x83\x32\x4d\xe4\xbf\xe0\x9e\xfc\x8c\x69\xc1\x27\x59\x9b\x51\xe2\xdf\xe9\x5c\x07\x3a\xd9\x03\x83\x72\x81\x9e\xd3\x81\x81\x5d\x19\x5f\xd9\x7f\x1b\x30\x26\x82\xb9\xc8\xa4\xba\x33\x60\x0c\x10\xb4\x11\x50\x4b\x07\xe2\xa3\x99\x9b\x2b\x37\x18\x50\xad\x06\x16\x46\x02\x3d\x8d\x98\xd3\xad\x67\x1e\xb0\x2d\x06\x50\x6a\x04\x0e\xde\x05\x14\x7e\x06\xce\xd6\x00\xdd\x0d\x80\xdb\xfe\x40\xf7\x95\xc0\xab\x20\x40\x31\x5f\xe4\xbf\xa8\xf8\x7c\x6c\x8d\xff\xa8\x13\xcf\xcd\xff\x2b\xfe\x43\xd6\x07\x47\x86\x7f\x90\xf5\x81\xf1\x15\xed\xa5\x8c\x07\x44\xd6\xdd\x60\xa4\x78\xbe\xf4\x13\xab\xf8\x24\xd2\x7b\x9b\x26\xd0\xdb\x81\xf9\x2c\x55\xb2\xb9\x9f\x94\xf2\xf7\x80\xed\x5f\x40\xf7\x4b\x80\xdf\x2b\xa0\x8b\x1a\x30\x6d\x0f\xd0\xa9\x91\xef\x5b\x1d\x52\x81\x05\x55\x40\xbb\x9b\x40\x8d\x05\x20\x1f\x00\x6c\xed\x23\x75\x08\x81\x83\xb5\x40\xdb\x81\xc0\x69\x91\xeb\xe5\xc6\x03\xc6\x24\xfd\x2b\x9d\x6b\x16\xf0\x5a\x17\xe8\xe0\x0d\x08\xab\x80\x0e\x06\x80\x60\xff\x09\xfe\x43\x64\x55\xfe\x02\xff\xd1\x9a\xff\xa2\x35\xfe\x43\x8c\x3a\x46\x8a\x38\x21\x19\xfe\x61\xb2\xc8\xe2\x6f\x2f\x62\x0e\xc6\x89\xd9\x2c\x7d\x71\x3d\xd4\x44\xfe\xbe\x6e\x79\x40\xc7\x78\xa0\xb3\x0a\xa0\xe6\x01\x74\xea\x0c\x18\x0d\x01\xe4\x3e\x00\x13\xf6\xf1\xdd\xc7\x4b\xe4\x60\x89\x11\x39\xdf\xd2\xc5\x2f\x99\x27\x7e\xc7\x0a\x1f\x1e\x37\x8b\xb2\xb7\xbf\x86\xc7\xd3\x0f\x78\xbc\x2e\xee\xe1\xe3\x65\x3c\xbe\x16\x7d\xc0\x0f\xa2\x0f\x20\x6c\xf8\x0f\xf8\x0f\x31\xeb\x24\xc3\x3f\xcc\xfe\x93\xc7\x6c\x71\x5d\x64\x38\xa8\x44\x31\xaa\x34\x55\xfe\xf3\xf9\x4f\x11\xd7\x4d\x86\x83\x19\x7f\x9f\xb3\x56\xdc\xb3\x1f\x18\xd2\x99\x47\x55\x31\x7a\xfb\xc9\x7f\xd9\xbd\x5e\xf1\xff\xd1\x13\xcf\x1e\x6b\x71\xf4\x12\x9f\x15\x6d\x2b\xbe\xc3\x72\x1e\x4b\x44\xcc\xc2\x72\x91\xab\x67\xa3\x38\xbf\xef\xc5\x67\x9f\x14\x7d\xe0\x6b\xe2\xde\xfe\x23\x46\x08\xdf\x89\x7b\xf7\x29\x1e\xe4\x6b\xf8\x97\xa2\xb7\x8c\x87\xc8\x11\xe7\x9b\x26\xda\x8b\x24\x09\x4f\x39\xa6\x88\xf1\x2e\xe1\x4f\xda\x51\xbc\xde\x57\xd2\x91\xe2\xfd\x1e\xcb\x3a\xee\x05\xe5\xbd\x3a\xd1\x5b\x98\x39\x74\xa6\xbc\xaf\xce\x4d\x05\x8a\x42\x6a\xd2\xed\x03\xe8\xbc\xb2\xfb\x22\x7e\xa2\x62\x60\x3b\x8a\x47\x2b\x14\xf5\x21\xdc\x87\xc2\x56\x7d\xfa\xe6\x6e\x4b\xc7\x13\x06\xa9\x5b\xbd\x17\xad\x87\xc2\x2d\xce\x88\x28\x18\x70\x05\x5d\xb7\x68\x8e\x7c\x76\x45\x35\xd9\xb0\xce\x79\x8c\x71\xeb\xb8\x71\x2f\xc9\x9c\x7c\xc2\x8f\x34\xb7\xf6\x72\xbf\xd0\xba\xc8\xbd\xbd\x4b\x79\x42\xb9\xd3\x9c\xdf\x6d\xd3\x97\x47\x8c\x20\xfc\x83\x01\xbc\x3f\x9d\x7f\xb1\xb8\x9f\x79\x47\xda\x52\x3c\x3e\xdd\xac\xdd\x12\x9e\x7f\x7b\x7a\x9b\xe8\x54\x05\xfa\x7d\xb8\x83\x22\x57\xe1\x9b\xa9\x10\x8b\x89\x9b\x84\x71\x12\x93\xd4\xfb\x50\xf5\xac\xc5\xc6\xde\x94\xff\x35\xb8\xd3\x87\xa2\x6a\x03\x2a\xfa\x91\xa5\x54\x9e\xab\x2e\xee\x9a\x44\x8c\x5b\xaa\xf7\x91\xa7\xbc\xac\xc6\xe8\x3e\x14\xb9\x93\x0c\x61\xdd\xd1\xe8\x60\x4d\xf3\xd3\x68\xf4\x22\x5b\xae\xa6\xc8\x91\x75\x35\x8f\x99\xb4\x67\x7d\x1f\x15\x91\x9e\xf4\xe9\xb9\x94\x6c\x52\xef\xe7\xeb\xe9\x6c\xeb\xd9\xb4\x7b\x26\x8f\xc7\x29\x1e\xa9\x42\xfc\x62\x80\x4a\xfd\x1d\xae\x34\xce\x7e\xc9\x15\x75\x22\x2f\x4a\xb7\xeb\xd2\x71\xe1\x06\xde\xf7\xb9\x2e\xcc\x2e\x9e\xe3\xdc\x81\x3c\xcc\x0c\xd3\xce\xd4\x6d\x24\xb9\x92\x71\x21\xb1\x8a\x3d\x29\x9a\x18\x56\xde\x8b\xe6\xef\x53\xa8\x4e\xeb\xe7\x36\xbb\x1f\x55\x07\x3b\x6c\x64\x5c\x88\xd5\xc2\x01\xc4\x07\x60\x9c\x36\x98\xa4\x6e\x88\x2b\xe3\x07\xfa\x1e\x19\x4e\x37\xd9\x2e\x1b\x87\x8b\x48\x34\xd1\x11\xc7\x50\x11\x79\x33\x6c\x88\x1a\xd9\xd4\x61\x7f\xe9\x92\x6d\x1e\xf6\xa7\x25\xc5\xa5\x87\x19\xba\xd3\x19\x34\x24\x28\xdc\x9d\x3f\x9f\x4a\x99\xc6\x61\xb9\xcc\x1c\x3e\xb4\xfb\x12\x3a\xe3\x07\x59\x33\xd6\x71\x80\xc9\x0e\xd2\xe1\x01\xc7\x8f\x50\x64\x58\x2b\xf4\x1c\xfd\x5d\xff\xae\xcc\x0b\xd2\xef\xcc\x13\xba\x4b\x32\xfe\x03\x50\x27\x9e\xff\x66\xfc\xcf\xaa\xee\x94\x2d\x4c\xb7\x54\xa1\x28\x66\xf2\xc4\x9e\x14\x7f\x9e\xe6\xdc\x87\x10\xd8\xa1\xe3\xb4\xe8\x26\xe6\xb7\x8e\xe7\xeb\x36\x75\x08\x59\x7c\x47\x71\x3e\xd6\x5b\x75\xc8\xea\x8c\x2e\xe7\xdd\xd4\x01\xa3\x7b\xb4\x8e\x18\x91\x74\xf6\xe8\x60\x4c\x59\x68\xb9\x8a\x51\xe2\x49\x6d\x2c\x7a\x28\xc6\xa7\xba\x30\x83\xc8\x0d\xb6\x9d\x63\xca\x74\x69\xe5\xc7\x54\x30\x8f\xf7\x18\x25\x37\xda\xff\xd1\x45\x21\x94\xbf\x18\x3d\x2a\x99\x34\xcd\x78\x7d\x1e\x69\x96\x71\x28\xfb\x76\x23\x1e\xd7\x52\x6c\xc4\x50\xc2\x77\x03\x23\xe7\x43\x54\x2f\xaf\xdb\x78\x8a\xea\x14\x75\x43\x7f\xa5\xcf\xeb\x75\x7d\x40\xeb\x21\xeb\x1b\x34\x54\x42\x75\x5a\x53\x55\x29\x8f\x35\xab\x94\xe7\x3b\xfd\xa3\x3a\x45\x8f\x65\x3c\x30\x11\x0d\x3c\x4f\xff\x1f\x39\x9a\xee\x65\x60\x48\xd9\x56\xe7\x30\x23\xf2\xc0\x26\x3e\x36\x26\x85\x30\x97\x8c\xa2\x13\xc1\x60\xa5\x09\xfd\xfd\xa0\x47\x9c\x95\x53\x8b\x35\x23\xf9\x52\x34\xb4\xf8\x9b\xe7\x6d\x21\x7a\x1a\x16\xa2\x75\xb3\xb4\xef\x46\xbe\x86\xb5\x81\x06\xbd\x9f\xd5\x37\x3a\x14\x7f\xb6\x9c\x61\x4e\x79\x18\xab\x1d\x4e\x54\x09\x3a\xde\x24\x98\x38\x11\xc7\xdb\x26\x50\x1c\xde\xe2\x60\x36\x69\x96\x65\xd6\x02\x42\xda\x58\xca\x71\x7c\xda\x12\x8c\x93\xb2\xf4\xde\x4f\x16\x6b\xdc\xb9\x53\xb4\x1e\xe6\xfd\xaf\x50\x3e\xc7\xcc\xf5\x6f\x7a\x33\xd3\x91\x2f\xe9\x1c\xe1\xbe\x41\xe9\x3b\xb4\x08\x21\x97\x52\xdf\x9f\x4e\xbe\xf8\x0b\xba\xb4\x4f\x11\xcf\xb8\x8a\x32\x70\xcf\x48\xc2\x07\x79\xf7\x67\x1e\x18\xd7\x1f\xc7\xd0\x5f\xb7\xc6\xc1\x8c\x16\xf3\xe6\xc3\xcf\x4c\xa4\x2c\x82\x66\x3d\xa3\x9b\x54\xa6\xd8\x90\x5c\xc9\xaf\xb6\x13\xed\x82\xfd\x35\x1e\x1d\x96\xb3\x65\xb2\xaf\x55\xa0\x15\x76\x70\x91\x90\x65\x71\x78\xad\x4b\x79\x0d\x27\xfd\x71\xb4\xd2\x8e\xf5\x4e\x24\xef\x8e\x87\x19\x41\xe0\x14\xcd\x77\x38\x47\x64\x8c\xe3\xbf\xe3\x8c\x89\x23\xb8\x7e\xd5\xfe\xdc\x06\xb2\xe9\x0e\x86\xdf\xd1\x3a\x4e\x0a\x6c\x20\x39\x99\x14\x77\x81\x24\x73\x62\x56\x13\xe1\x0d\x6c\xef\x3e\x7b\xc6\xeb\x2b\x38\x03\x29\x5a\xc3\xe8\xfd\xe2\x9b\x78\xde\xd1\xba\xa3\x49\xea\x02\x7e\x32\x26\x29\x9c\xf2\xc8\x8c\x4e\x6f\xb7\x1a\x4b\xda\x2d\x3b\x5d\x6b\x5a\x75\xeb\xa4\x09\xa4\x65\x26\xaf\xed\x68\x9e\x86\x6d\x1d\xe8\x26\x31\xc8\x9c\xf1\x12\x7d\xa3\x9d\x68\x5d\x14\x9f\x39\xe7\xb3\x3e\xb8\x89\x9e\x87\x87\x28\x07\x5e\x12\x50\x9e\x7b\xb2\x9e\x22\xd9\xaf\xc9\x45\x12\x62\xdc\x98\x1c\xca\x7a\xe1\x35\xdb\x8c\x10\x7a\x93\x1b\x1d\xe8\x09\x93\x7b\xfb\x12\x42\xc5\xab\x38\x86\xee\xb8\x5e\xba\x69\x84\x50\xf3\x04\x57\xdc\x7a\x19\x2c\x25\xcb\xe4\xb1\xf1\x9b\x31\xfc\x3d\xdc\xd7\xde\xd3\xeb\x28\xad\xab\xbb\xdd\x59\xc2\xc3\xb8\xfd\xf6\x1b\xe9\x9f\xcb\xc1\xfb\xb4\xf3\x4e\xc3\x5e\xef\x02\x92\x4e\x1a\x13\x0a\x21\x6a\x8b\x29\xc9\x6f\x88\xf6\x38\xb2\x0f\xbe\x47\xac\x49\x1a\x3d\x3d\x6d\x08\x7d\xe1\x3c\xdd\x81\xb4\x6b\xe2\x0b\x07\xca\xaa\x9b\x9b\xbb\x90\x7e\xb4\xc6\xc1\xf4\x6f\x62\x7c\x88\x6a\xb4\x27\xe5\x85\xbb\x36\x33\xab\xf9\x24\xf3\xe8\x27\xe6\x71\xfc\xe3\xda\x50\x9e\x2d\x60\x10\xe3\x40\x02\x1a\x39\x14\x16\xd0\xa8\x4b\x16\x35\x60\xaa\xc9\x1c\xfe\x99\xeb\x79\x03\xe6\x4f\xa1\xbc\x70\x90\x65\x94\x05\xff\x3e\x95\x4e\xa2\x40\xfd\x02\xd2\xff\xc0\x5c\xb6\x13\x01\x37\x56\xd2\xdd\xc7\xff\x04\xdb\x89\x00\x2b\xc6\x11\xfa\xdf\xff\x99\xbf\xbf\xee\x0a\x9d\x64\x7e\xda\x7f\xd2\x49\x37\xc5\xfd\x65\x09\x10\xa3\x36\x8e\x22\x2f\xa1\x2b\x27\x92\xa7\x13\x20\x61\xdc\x8f\x57\x93\x33\x7d\x9b\xab\x92\xb3\x15\xfe\xdf\x70\x30\xf5\xde\xb4\x2e\x83\x35\x99\x27\x45\x23\x98\xf9\x24\x54\xc0\x52\x2c\x6f\x1e\x2c\x7a\x2b\x32\x1c\x4c\x64\x7b\x71\xf4\xe5\x13\x39\x22\x4b\x89\x3c\x8d\xc8\x47\x9a\xa4\x79\x11\xa7\xf4\x48\x53\x23\x57\x98\x51\x9e\x33\xaa\xce\x9e\x16\x28\x22\x99\x11\x37\x91\x15\x61\x3b\x78\x9c\x4e\x7f\x1f\xd5\x85\x5d\xbc\x48\xab\xb2\xd1\xf4\xb9\xfb\x2b\xe8\x9c\x0c\xcf\xd8\x44\xeb\x14\x11\xbb\x2f\x96\xc7\x93\x64\x27\x9a\x71\x31\x17\x6f\xd1\xf3\x42\x42\x1f\x35\x49\xed\x20\xcf\x3b\xf0\x92\x13\x45\x56\x7c\x8c\xdd\x48\x8a\xdc\x16\x7b\x12\xea\xd2\xd1\x8d\xbb\x15\x59\x37\xf1\xbe\xb6\xc6\xc1\x0c\x5b\x1d\x94\xc8\x72\xc0\x7d\x91\xfa\x28\x33\x3e\x44\xe1\x48\x38\x69\x77\x5b\xdd\x66\x1c\x8c\x8c\x17\x46\xec\x0b\x13\x5f\xd2\x9e\xde\x2f\x2e\xab\x07\xad\x5c\x5c\x9d\x26\x9d\xf7\x89\xb6\x7a\xb4\x62\xf1\x0f\x4d\x69\x27\x12\x0c\x6d\x19\xaf\x11\xc5\xf9\xee\xc4\xf1\x8c\xb8\x49\x72\xe3\x0c\x7c\xc2\x96\x2c\xfa\xc6\xf8\xaa\x52\x3a\x91\x13\xea\xd8\x37\x8c\xdf\xbb\x8e\x90\x1a\xf1\x4d\xbb\xe9\x0d\xe2\x0d\x1a\x68\xa7\xe2\x02\xce\x91\x1e\xca\x70\x31\xb1\x78\x70\x06\x08\x99\xc1\x68\x34\xdf\x09\x8c\x83\x99\x3c\x60\x0a\xa1\x67\xbe\x8e\x83\x09\x21\xaf\xde\xe0\x18\xbf\xcd\x60\xcd\x08\xf2\xab\xfa\xcd\x61\x76\x0a\x19\x0e\xa6\x73\x5e\x34\x69\x23\xb2\x13\x44\xef\x76\xba\xe8\x59\xcb\xf0\x30\x33\x0c\xe4\xe9\xa4\x49\xd5\xef\x41\x08\xec\x94\xd5\x8c\xc0\x9d\x29\xd1\x25\xbd\x9f\x59\xce\xcc\x63\x69\xe3\x27\xd1\xf9\x91\xb6\x78\x32\xe5\x83\x67\x29\x87\x32\xc3\xd1\xb9\x44\x3a\xe9\x67\x1e\xc9\xa4\xbb\x5e\x6a\xce\x5c\xd2\xd0\x19\xdb\xb8\x76\x2c\x6d\xfc\x5a\xee\xbf\x14\xbf\x8d\x62\xce\x29\xf5\xcc\x9b\x93\x9a\x72\x9a\x76\x28\xf9\xfc\xd5\xc5\xbc\x9e\xb7\xde\x4b\xf5\xc0\x8f\xf6\xdd\x6b\x8e\x3f\x79\xb5\xae\xea\x9c\x4d\x76\x70\xe7\xfd\x1d\x5f\x1d\x41\x37\x02\xd3\x40\xf6\xe6\x9a\x71\x30\x1e\xd3\x08\x75\x33\xc0\x3f\x8e\xec\x68\x5f\x07\xc6\x87\x28\xd7\x32\xaa\xaf\xc3\x91\x64\xd1\x5f\x9c\xf1\x2d\x8f\xb3\x44\x1e\x04\x19\x1e\x26\xe3\x48\x07\x9a\x6f\xd6\x82\x1e\xf4\x97\x59\x0e\x9a\x84\x5b\xc8\x4a\xe0\x13\x3a\x53\x7d\x2c\xdd\x93\xb2\x9d\x6d\xc9\x4f\xcc\xae\xf4\xa4\xf3\x24\x3b\x37\xb8\x9e\x7f\x3f\x8d\xde\x30\xcb\x6d\x16\x9d\x0f\x59\x2b\x98\x89\x22\xcb\x6d\x31\xe3\x64\x1a\x57\xd1\x79\x9c\x25\xd9\x72\x9d\xbf\xf7\x00\xed\x54\x86\xe2\x49\x8a\x11\xa5\x9b\x5d\x26\xbd\x9a\x95\xd5\xf4\x0f\xe0\x3d\x86\x6f\x48\x6e\xf1\xa1\x24\x9d\xce\x5d\xa3\x68\x75\x27\xde\x9c\x4a\xa7\xd3\xb8\xca\x18\xd2\xb6\x31\xdd\x19\x17\x62\x98\xce\xbc\x30\xc3\x72\x99\x27\x45\xf3\xac\x88\x83\x69\xe2\xbe\x41\x0a\x09\x33\x49\x5f\xe4\xfb\x65\x88\x9e\x7a\xce\x0b\x71\x6c\x8d\x87\x19\xdf\x91\x56\x44\x86\x87\x29\x1c\xa3\xc5\xf8\x97\x7b\x3a\x84\xab\xcd\xdf\x31\x96\x2c\x6b\x61\xf4\x44\xba\x0b\x17\x34\x71\xbf\xa0\xd9\x59\x8c\x1f\x2c\xf4\xe1\x37\x2b\x6c\x3b\x63\x1b\x3f\x6f\x36\xc9\xcd\x6c\xe5\x72\x7a\xa5\xd9\x0d\xcc\xb4\x30\x5b\x99\xf9\xd6\x0a\xc5\xbc\x7f\x7e\xf1\x31\xc2\x57\xe5\x37\xb1\x9d\xc8\xad\xbf\x91\x0b\x78\x3e\x8c\xa4\xfb\x8f\x4b\xd2\x54\xf2\x66\x65\x7d\xa1\xac\x0d\x78\x7f\xcd\xe2\x12\xe9\xed\x46\x6d\xe3\x3e\x49\x7a\xde\x33\xb8\x5f\xda\x73\xee\x02\x29\xd1\xe4\x3e\x49\xbd\x46\x30\x1e\xa6\x9b\x1e\xdf\x4c\xdb\x36\xe6\x8a\x78\xa8\x42\xd1\x7f\x6a\x8d\x87\x99\xdf\x96\xf3\xfe\xa5\x86\xaa\xc4\x57\x53\x6a\xcb\x06\xa4\xe4\x89\x0e\x9d\xeb\xf3\xea\x79\x1d\x4a\x05\x1b\xc2\xb1\x94\xe6\xb9\xd1\xbe\xcf\x3b\xcc\x79\xff\x79\xf5\x31\x74\xff\x94\xf1\xc4\xcc\xab\x2f\x64\xfc\x8b\xb0\xf0\x08\x8f\x5c\x53\x56\x2c\x59\x4f\xf7\x96\xe2\x07\x7b\x98\x27\xe6\xc6\x31\x67\xfe\xfd\x19\xd2\xdc\xa2\xc4\xab\x81\x80\xcb\xed\x69\x14\x51\x74\xb0\x4c\x20\x3b\x60\x33\x20\x99\x22\x8f\x96\x48\x11\xef\xcb\x1c\x69\x19\x29\x56\xe2\x0d\xfb\x2e\x83\x6e\xc1\x03\x4f\x64\x91\xfe\xa8\x67\xf2\xbc\x55\xc4\x08\x4d\xe7\x5a\x59\xa4\xa2\x48\xed\xf3\x79\xb7\xc6\xc3\x2c\x6a\xec\x48\x9e\x65\x85\x33\xaf\x43\x85\xbb\x16\x7d\x62\x71\x20\x23\xb7\x2b\x1a\xc6\x8a\x78\x19\xf6\xc8\xca\x57\xb9\xd0\x49\x5c\x7e\x9f\x4f\xa2\xc5\x1a\xac\xa1\x8b\x1d\xf8\xbe\xd1\xcc\x13\x93\x5f\x46\x3b\x58\x7e\x6d\x39\xd5\x63\x94\x3b\xad\xa3\x37\x5d\x24\xa9\xa7\xbf\x2b\xcf\xfd\xe1\x21\xff\xcc\x7d\x08\x17\x34\x5d\x11\x00\x27\x97\x64\xf2\x2a\x6c\xbb\xf0\xfe\x8e\x2f\x67\xfe\x9f\x71\xb9\x99\x62\x1f\x98\x2c\xd2\x52\x83\x80\x1c\xfa\x59\xd6\x1f\x4a\xeb\x26\xa3\x9b\xd5\xb4\xb9\x1b\x66\xf7\xdf\x8a\x48\xba\xbf\xde\x27\xea\x3f\xe0\x61\xc8\x42\x57\xed\x57\x21\xfc\x47\xd5\x42\xcd\xb3\xfc\x7b\x1d\xee\x93\x54\x36\x86\x4e\xd8\xaa\x2b\x13\xc8\xcf\x58\x76\xd7\x95\x3c\x9d\x6a\x0d\x7f\xc2\x87\x57\x59\x46\x91\x04\x57\xed\x9a\x4e\xfb\x5a\xb5\x24\x8f\xec\x41\x75\xf9\x7c\xd2\xfb\xaa\x0e\xdc\xa7\xb4\xea\x23\xe3\xa4\x96\xaa\x6d\xa3\x3e\x4a\x95\x25\xec\x4f\x54\x1a\x9c\xdc\xce\xe3\x25\x9a\x71\x9b\x36\x6d\xdb\xca\xc9\xb5\x6b\xd7\xbe\xbd\xbc\x7c\x87\x0e\x1d\x3b\x76\xea\xd4\xb9\x73\x97\x2e\x5d\xbb\x76\xeb\xa6\xa0\xa0\xa8\xd8\xbd\xbb\x92\x92\xb2\x72\x8f\x1e\x2a\x2a\xaa\xaa\x3d\x7b\xf6\xea\xd5\xbb\x77\x9f\x3e\x7d\xfb\xaa\xa9\xa9\xab\x6b\x68\x48\x24\xfd\xfa\x69\x6a\x6a\x69\xf5\xef\x3f\x60\xc0\xc0\x81\xda\xda\x83\x06\x0d\x1e\x3c\x64\xc8\xd0\xa1\xc3\x86\x0d\x1f\xae\xa3\xa3\xab\xab\xa7\xa7\xaf\x6f\x60\x60\x68\x68\x64\x34\x62\xc4\xc8\x91\xc6\xc6\xa3\x46\x8d\x1e\x3d\x66\xcc\xd8\xb1\x26\x26\xa6\xa6\x66\x66\xe6\xe6\xe3\xc6\x59\x58\x58\x5a\x5a\x59\x59\x5b\x8f\x1f\x3f\x61\xc2\xc4\x89\x36\x36\xb6\xb6\x93\x26\xd9\xd9\xd9\xdb\x3b\x38\x38\x3a\x3a\x39\x39\x3b\xbb\xb8\xb8\xba\xba\xb9\xb9\xbb\x7b\x78\x78\x7a\x4e\x9e\xec\xe5\xe5\xed\x3d\x65\x8a\x8f\x8f\xaf\xaf\x9f\x9f\xbf\x7f\x40\x40\x60\x60\x50\x50\x70\x70\x48\x48\x68\x68\x58\x58\x78\x78\x44\x44\x64\x64\x54\xd4\xd4\xa9\xd1\xd1\x31\x31\xd3\xa6\xc5\xc6\xc6\xc5\xc5\xc7\x27\x24\x24\x26\x26\x25\x25\x27\x4f\x9f\x9e\x92\x92\x9a\x3a\x63\xc6\xcc\x99\x69\x69\xb3\x66\xa5\xa7\x67\x64\x64\x66\x66\x65\x65\x67\xe7\xe4\xe4\xe6\xe6\xe5\xe5\xe7\x17\x14\x14\x16\xce\x9e\x3d\x67\x4e\x51\xd1\xdc\xb9\xc5\xc5\x25\x25\xa5\xa5\xf3\xe6\xcd\x9f\xbf\x60\x41\x59\xd9\xc2\x85\x8b\x16\x95\x97\x57\x54\x2c\x5e\xbc\x64\x49\x65\xe5\xd2\xa5\xcb\x96\x55\x55\x55\x57\x2f\x5f\xbe\x62\x45\x4d\x4d\x6d\x6d\x5d\xdd\xca\x95\xab\x56\xad\x5e\xfd\xcd\x37\x6b\xd6\xac\x5d\xbb\x6e\xdd\xfa\xf5\x1b\x36\x6c\xdc\xb8\x69\xd3\xe6\xcd\xdf\x7e\xbb\x65\xcb\xd6\xad\xdb\xb6\x6d\xdf\x5e\x5f\xbf\x63\xc7\xce\x9d\xbb\x76\xed\xde\xbd\x67\xcf\xde\xbd\xdf\x7d\xb7\x6f\xdf\xf7\xdf\xef\xdf\x7f\xe0\xc0\xc1\x83\x87\x0e\x1d\x3e\x7c\xe4\xc8\xd1\xa3\x3f\xfc\xd0\xd0\x70\xec\xd8\xf1\xe3\x3f\xfe\x78\xe2\xc4\xc9\x93\x3f\xfd\x74\xea\xd4\xcf\x3f\x9f\x3e\x7d\xe6\xcc\xd9\xb3\x8d\x8d\xe7\xce\x9d\x3f\x7f\xe1\xc2\xc5\x8b\x97\x2e\xfd\xf2\xcb\xe5\xcb\x57\xae\x5c\xbd\x7a\xed\xda\xaf\xbf\xfe\xf6\xdb\xf5\xeb\xbf\xff\x7e\xe3\xc6\xcd\x9b\x7f\xfc\xd1\xd4\x74\xeb\xd6\xed\xdb\x77\xee\xdc\xbd\xfb\xe7\x9f\xf7\xee\xfd\xf5\xd7\xdf\x7f\xff\xf3\xcf\xfd\xfb\x0f\x1e\x3c\x7c\xf8\xe8\xd1\xe3\xc7\x4f\x9e\x3c\x7d\xfa\xef\xbf\xcf\x9e\x3d\x7f\xfe\xe2\xc5\xcb\x97\xaf\x5e\xbd\x7e\xfd\xe6\xcd\xdb\xb7\xef\xde\xbd\x7f\xff\xe1\xc3\xc7\x8f\xc4\x4c\xfb\xbf\xfd\xff\xdf\xfe\xff\x6f\xff\xff\xb7\xff\xff\xdb\xff\xff\x5f\xee\x3f\x10\x17\xc9\x1d\xf7\xe4\xda\x69\x01\x62\x5d\x71\xf3\x7f\xff\xe1\xe7\x36\x6d\xdb\xd0\xff\x69\x0b\x39\xb4\x43\x7b\xc8\xa3\x03\x3a\xa2\x13\x3a\xa3\x0b\xba\xa2\x1b\x14\xa0\x88\xee\x50\x82\x32\x7a\x40\x05\xaa\xe8\x89\x5e\xe8\x8d\x3e\xe8\x0b\x35\xa8\x43\x03\x12\xf4\x83\x26\xb4\xd0\x1f\x03\x30\x10\xda\x18\x84\xc1\x18\x82\xa1\x18\x86\xe1\xd0\x81\x2e\xf4\xa0\x0f\x03\x18\xc2\x08\x23\x30\x12\xc6\x18\x85\xd1\x18\x83\xb1\x30\x81\x29\xcc\x60\x8e\x71\xb0\x80\x25\xac\x60\x8d\xf1\x98\x80\x89\xb0\x81\x2d\x26\xc1\x0e\xf6\x70\x80\x23\x9c\xe0\x0c\x17\xb8\xc2\x0d\xee\xf0\x80\x27\x26\xc3\x0b\xde\x98\x02\x1f\xf8\xc2\x0f\xfe\x08\x40\x20\x82\x10\x8c\x10\x84\x22\x0c\xe1\x88\x40\x24\xa2\x30\x15\xd1\x88\xc1\x34\xc4\x22\x0e\xf1\x48\x40\x22\x92\x90\x8c\xe9\x48\x41\x2a\x66\x60\x26\xd2\x30\x0b\xe9\xc8\x40\x26\xb2\x90\x8d\x1c\xe4\x22\x57\xc8\x13\xf2\x85\x02\xa1\x50\x98\x2d\xcc\x11\x8a\x84\xb9\x42\xb1\x50\x22\x94\x0a\xf3\x84\xf9\xc2\x02\xa1\x4c\x58\x28\x2c\x12\xca\x85\x0a\x61\xb1\xb0\x44\xa8\x14\x96\x0a\xcb\x84\x2a\xa1\x5a\x58\x2e\xac\x10\x6a\x84\x5a\xa1\x4e\x58\x29\xac\x12\x56\x0b\xdf\x08\x6b\x84\xb5\xc2\x3a\x61\xbd\xb0\x41\xd8\x28\x6c\x12\x36\x0b\xdf\x0a\x5b\x84\xad\xc2\x36\x61\xbb\x50\x2f\xec\x10\x76\x0a\xbb\x84\xdd\xc2\x1e\x61\xaf\xf0\x9d\xb0\x4f\xf8\x5e\xd8\x2f\x1c\x10\x0e\x0a\x87\x84\xc3\xc2\x11\xe1\xa8\xf0\x83\xd0\x20\x1c\x13\x8e\x0b\x3f\x0a\x27\x84\x93\xc2\x4f\xc2\x29\xe1\x67\xe1\xb4\x70\x46\x38\x2b\x34\x0a\xe7\x84\xf3\xc2\x05\xe1\xa2\x70\x49\xf8\x45\xb8\x2c\x5c\x11\xae\x0a\xd7\x84\x5f\x85\xdf\x84\xeb\xc2\xef\xc2\x0d\xe1\xa6\xf0\x87\xd0\x24\xdc\x12\x6e\x0b\x77\x84\xbb\xc2\x9f\xc2\x3d\xe1\x2f\xe1\x6f\xe1\x1f\xe1\xbe\xf0\x40\x78\x28\x3c\x12\x1e\x0b\x4f\x84\xa7\xc2\xbf\xc2\x33\xe1\xb9\xf0\x42\x78\x29\xbc\x12\x5e\x0b\x6f\x84\xb7\xc2\x3b\xe1\xbd\xf0\x41\xf8\x28\x48\xff\x03\x20\xb4\xf9\xd8\xf6\x83\xdc\xfb\x76\xef\xda\xbf\x95\x7f\xd3\xe1\x75\xc7\x57\x9d\x5e\x76\x7e\xd1\xe5\x79\xd7\x67\xdd\xfe\x55\x78\xaa\xf8\xa4\xfb\x63\xa5\x47\xca\x0f\x7b\x3c\x50\xb9\xaf\xfa\x4f\xcf\xbf\x7b\xfd\xd5\xfb\x5e\x9f\x3f\xfb\xde\x55\xbb\xa3\x7e\x5b\xe3\x96\xa4\xa9\xdf\x1f\x9a\x37\xb5\x6e\xf4\xff\x7d\xc0\xf5\x81\xbf\x69\xff\x3a\xe8\xda\xe0\xab\x43\xae\x0c\xbd\x3c\xec\x97\xe1\x97\x74\x2e\xea\x5e\xd0\x3b\xaf\x7f\xce\xa0\xd1\xf0\xac\xd1\x99\x11\xa7\x47\xfe\x6c\x7c\x6a\xd4\x4f\xa3\x4f\x8e\x39\x31\xf6\x47\x93\xe3\xa6\xc7\xcc\x1a\xcc\x7f\x18\x77\xd4\xe2\x88\xe5\x61\xab\x43\xd6\x07\xc7\x1f\x98\xb0\x7f\xe2\xf7\x36\xfb\x6c\xbf\x9b\xb4\xd7\x6e\x8f\xfd\x6e\x87\x5d\x8e\x3b\x9d\x76\x38\xd7\xbb\x6c\x77\xdd\xe6\xb6\xd5\x7d\x8b\xc7\xb7\x9e\x9b\x27\x6f\xf2\xda\xe8\xbd\x61\xca\x7a\x9f\x75\xbe\x6b\xfd\xd6\xf8\x7f\x13\xb0\x3a\x70\x55\xd0\xca\xe0\xba\x90\xda\xd0\x9a\xb0\x15\xe1\xcb\x23\xaa\x23\xab\xa2\x96\x4d\x5d\x1a\x5d\x19\xb3\x64\xda\xe2\xd8\x8a\xb8\xf2\xf8\x45\x09\x0b\x13\xcb\x92\x16\x24\xcf\x9f\x3e\x2f\xa5\x34\xb5\x64\x46\xf1\xcc\xb9\x69\x45\xb3\xe6\xa4\xcf\xce\x28\xcc\x2c\xc8\xca\xcf\xce\xcb\xc9\xcd\xcd\xc9\xcb\xce\xcf\x2a\xc8\x2c\xcc\x98\x9d\x3e\x67\x56\x51\xda\xdc\x99\xc5\x33\x4a\x52\x4b\x53\xe6\x4d\x9f\x9f\xbc\x20\xa9\x2c\x71\x61\xc2\xa2\xf8\xf2\xb8\x8a\xd8\xc5\xd3\x96\xc4\x54\x46\x2f\x9d\xba\x2c\xaa\x2a\xb2\x3a\x62\x79\xf8\x8a\xb0\x9a\xd0\xda\x90\xba\xe0\x95\x41\xab\x02\x57\x07\x7c\xe3\xbf\xc6\x6f\xad\xef\x3a\x9f\xf5\x53\x36\x78\x6f\xf4\xda\x34\x79\xb3\xe7\xb7\x1e\x5b\xdc\xb7\xba\x6d\x73\xdd\xee\x52\xef\xbc\xc3\x69\xa7\xe3\x2e\x87\xdd\xf6\x7b\xec\xf6\x4e\xfa\xce\x76\x9f\xcd\xf7\x13\xf7\x4f\x38\x30\xfe\xa0\xf5\x21\xab\xc3\x96\x47\x2c\x8e\x8e\xfb\xc1\xbc\xc1\xec\x98\xe9\x71\x93\x1f\xc7\x9e\x18\x73\x72\xf4\x4f\xa3\x4e\x19\xff\x3c\xf2\xf4\x88\x33\x46\x67\x0d\x1b\x0d\xce\xe9\x9f\xd7\xbb\xa0\x7b\x51\xe7\xd2\xf0\x5f\x86\x5d\x1e\x7a\x65\xc8\xd5\xc1\xd7\x06\xfd\xaa\xfd\xdb\xc0\xeb\x03\x7e\xef\x7f\x43\xeb\xa6\xe6\x1f\xfd\x9a\x24\xb7\x34\x6e\xab\xdf\x51\xbb\xdb\xf7\xcf\x3e\xf7\x7a\xff\xd5\xeb\xef\x9e\xff\xa8\xde\x57\x79\xd0\xe3\xa1\xf2\x23\xa5\xc7\xdd\x9f\x28\x3e\x55\xf8\xb7\xdb\xb3\xae\xcf\xbb\xbc\xe8\xfc\xb2\xd3\xab\x8e\xaf\x3b\xbc\x91\x7f\xdb\xfe\x5d\xbb\xf7\x72\x1f\xda\x7e\x6c\x23\xe0\x7f\x32\xf0\x3f\x19\x90\x5a\x02\xb3\x1c\x8b\x02\xe5\x93\x82\x60\xdb\xd1\x72\x43\xaf\x1d\x82\xe0\x36\x68\x82\x8e\xc6\x1b\x41\xf0\xad\xb3\xdd\xaf\x6d\x26\x08\xc1\x5d\x1d\xd5\x75\xb6\x0b\x42\xa4\x86\xcb\xdd\x91\x4f\x04\x61\xea\x70\xcf\x47\xe6\x45\xc2\x91\xe8\x32\x3f\xb9\x49\xd3\x05\xb3\x98\x1e\xc1\x55\x1e\x1d\x3e\xce\x9c\x3a\x29\xea\x74\x50\xc6\x87\x0b\x51\x6d\x92\xcb\xa2\x47\x7c\xe8\x18\xbe\x30\xe7\x66\xb2\xf0\x7e\x70\x98\x5c\x49\x53\xc6\xbf\xef\x36\x07\x2b\x2d\xa9\xcd\xb5\x7a\xfb\x4f\x60\x8f\x95\xdd\xe6\xd8\xbf\x5d\xed\xfb\x6a\x53\xf4\xdc\xe1\x6f\xcd\xbd\x1f\xee\xfe\x50\xf2\xcd\x9b\x3b\x9e\x2f\x8e\xde\x9f\xb7\xf4\x8d\x9d\xfb\xca\xb3\xa3\x16\x76\x7c\x3d\xc4\x75\xcc\x8d\xc7\x95\xaa\xaf\x9a\x9c\xac\x1e\xed\xaa\xbc\xf8\x7a\x9d\xc3\xd2\x7f\xaf\x95\xf7\x79\x33\xcd\x3e\xed\xd9\xd3\xf9\xa3\xdf\x0e\xb4\x0b\x7a\xfe\x66\xae\xe5\xdb\xba\x49\xb5\x2f\x36\x16\x1e\x78\xde\x79\xd2\xeb\x97\x66\xf9\x63\xfe\x51\xb1\xaf\x7b\x69\x95\x7f\xf7\xc6\x39\xc7\xc1\x2f\x4f\xe4\xfe\x7d\xe5\xb9\xe3\xe0\x57\x3f\x64\xec\xba\x18\xee\x34\xfc\xd5\x89\x8c\x17\x3f\x0f\x76\xfa\xf7\xf5\xac\x34\x93\x63\xbf\xb9\xbc\x7c\x6d\x3f\xeb\xde\x11\x07\x97\x17\xaf\x1f\xcc\x50\x16\x04\xcb\x9e\xe3\xb2\x55\x86\x08\x82\x5d\x57\xcb\x5f\x7a\x67\x08\x82\xe7\x40\xeb\x58\x8d\x3a\x41\x08\x34\xb5\xf9\x30\x48\x4d\x10\x22\xa2\xec\xb6\xeb\x54\x0b\x42\x8c\x9d\x73\x2f\xe3\x36\x82\x10\xeb\xe0\xe1\x6a\xfe\x56\xf8\x2e\x1e\x3e\xa5\x76\x6b\x04\xbd\xb8\xbd\x41\x49\x9e\x81\x1f\xfd\xa3\x0b\xa2\x1e\x85\xe8\x7e\x98\x1b\xb3\x39\xde\x22\x36\xfe\xfd\xd1\x28\xff\x4c\xe7\xd4\x13\xef\x8e\x46\xac\x2d\x7a\x94\x33\xf7\x9d\x52\x68\xc4\x62\x93\xd9\x93\xde\xfa\x04\x2d\xae\xbb\x59\xb2\xf8\x6d\x7b\xff\xc0\x4d\x33\xe6\xad\x7c\xe3\xec\xdb\x6b\xf7\xe4\x45\x4a\xaf\x7f\xf0\x2a\x6f\x98\x5f\x71\xf7\xd5\xf7\x9e\xd6\xe7\xa3\xab\x2c\x5e\x75\x71\x93\x6f\xba\xba\x42\xe9\xe5\x01\xe7\x49\x4f\x34\x57\xdc\x79\xdd\xce\x31\xfb\xe9\xb3\x25\x7f\xbc\x69\xe3\xa0\xf2\xcc\xb7\xec\xae\x6c\x3d\x5e\x2e\xb2\x1f\xfe\xfc\x40\xf1\xee\x07\x3f\x39\xb4\x79\x31\x67\x4e\xe9\xad\x74\xc7\x2b\x2f\xb6\xcf\x29\xb8\x66\xee\x9c\xf0\xb2\xeb\xec\xc0\xf3\x73\x5d\x26\xbd\x3c\x9c\xaf\x7d\x46\xc9\xe5\xc8\xab\xe1\xb9\x2a\x27\xcc\x5c\xe7\xbe\x5a\x95\x75\xe1\xf0\x25\xb7\xfd\xaf\x35\x32\xa2\x0e\xca\xbb\xb5\x79\xfd\xc7\x8c\xf5\x82\x30\x6e\xe7\x38\xd5\x1e\x05\x82\xe0\x60\x3a\x2e\xa2\x57\xb2\x20\x78\x19\x5a\xc5\x6b\xcc\x15\x84\x90\xe8\x09\xcb\xb5\xe5\x04\x21\xf2\xac\xdd\x7c\xdd\xa1\x82\x10\xfb\x87\xd3\x02\xe3\xb3\x82\x90\x90\xed\x76\xcf\xfc\xa3\x70\x75\xfa\xc4\xc9\x17\x6d\x7d\x04\xa3\xa4\xeb\x01\x33\x3d\xd3\x3f\xda\xc4\xff\x1a\x71\x3d\xf4\xf7\x0f\xfa\x71\xfa\xb1\xdf\x25\xfa\xbc\x1f\x1f\xf3\x32\xed\xb7\xf4\xf9\xef\x5c\xa3\x6a\xe7\x6c\x28\x70\x78\x1b\x1a\xd1\xae\x3c\xbc\xa4\xf8\xcd\xd6\x90\x9d\xb5\x19\x65\x76\x6f\x0c\x03\x63\x37\x1e\x2c\x37\x7e\x7d\xcc\xcf\x76\xd7\x9f\x8b\x67\xbd\x7a\xef\xfd\xb1\xc1\x78\x59\xfa\xab\x81\x9e\x4e\x97\x02\x57\x58\xbf\xd4\x73\x5b\x72\xfb\xf5\x4a\xe7\x97\xe5\xce\x05\x8f\xef\xd4\x1c\x7e\xa5\xed\xb4\xf7\xc9\x9e\xea\xfd\xaf\x23\x1c\x5e\xfc\x9b\x59\xb1\x41\xb6\x1e\xcf\x5c\x1c\xaa\x9f\x5d\x5b\xa0\x71\x5b\xd7\x79\xde\xf3\xc1\xf3\xdf\x5c\x9f\xea\x5c\xf9\x22\x74\xee\xfc\xcb\xf1\x2e\x0f\x5e\xcc\x98\xbb\xe2\xec\x08\xb7\xa1\x2f\x7b\xce\xc1\x71\x0b\x77\xe3\x97\x1f\xf2\xf6\x1f\xfe\xc7\x63\xd7\xab\x4e\x79\xbf\x7d\x7f\xcf\xe3\xfc\xab\xb3\x59\x1b\xf7\x1a\x79\x76\x78\x6d\x97\xfe\xaf\x20\x58\x55\x9a\xc5\xf4\xf0\x10\x04\xa7\xeb\xa6\x1f\x7b\x16\x0b\x82\xf7\x6d\xcb\xed\x1a\xb9\x82\x10\x3a\xd8\x52\xd0\x5a\x25\x08\xd1\xd7\xed\xec\xf4\xa2\x05\x21\x31\xc4\x71\xd9\xa8\x39\x82\x30\xdd\xc3\x79\x8a\xc9\x6b\xe1\x72\x5a\x90\xc7\x23\xdb\x7f\x84\x11\x29\xbf\xfb\x4b\x3c\x57\x7e\x1c\x3f\xdd\x3d\xec\x44\x98\xfb\xfb\xdf\x13\xda\xc5\x19\x4c\x7f\xfd\xee\x52\x5c\xd4\xcc\x5e\xd9\x69\x6f\x37\xc7\xf8\x17\x9e\x9f\x1b\xf1\xe6\x4a\xe4\x9e\x45\x2b\x17\x44\xbc\xb1\x0c\x9d\x5d\x7b\xb5\x5c\xeb\xb5\x76\x88\xe2\x06\x9b\x65\x4b\x5e\xc5\x07\x14\xef\xf6\x58\xa1\xfe\xb2\xd0\x47\x38\x66\xb4\x72\xec\xcb\x7e\x9e\x37\xae\x84\xad\x1a\xf7\xa2\xbb\xbb\xed\x9f\xa9\x6b\xfd\x5f\xaa\xba\xe8\x3f\x1e\xb1\x52\xbf\x79\x3d\x7a\x38\x9d\x7b\xb2\x62\xb9\xc6\xcb\xe1\x8e\xa7\xfe\xc5\x92\xd3\x7f\xad\x77\xee\xfa\xac\x70\x61\xfc\x0d\x7b\xd7\xb7\xcf\x3a\x55\x38\x5e\x8e\x75\x93\x3c\x5f\x34\xbf\xcd\xe9\x89\xee\xd7\x5e\x38\x95\xe8\x1d\x7f\xe7\x99\xfd\x22\xae\xa4\xdd\x61\xef\xc9\xe9\x2f\x7b\x17\x75\xfb\x3e\x65\xf2\xc1\x97\xd7\x0a\x1c\xf6\x5c\x99\x7c\xfd\xd5\xb4\xdc\x09\xdb\x7b\x7a\x07\xbd\x3a\x9b\x1d\x23\x08\x36\x0f\x4d\x7b\xf4\x78\x21\x08\xee\x36\xe6\x4e\xbd\xaf\x08\x42\x60\xa2\x85\xa3\xa4\x56\x10\x22\xfa\x59\x0c\xd4\xfc\x4b\x10\x12\x4d\x6d\xba\xe8\x66\x08\x42\x6a\xaa\xdd\xcc\x91\x7f\x0a\x42\xda\x59\xa7\x9b\xe6\xfb\x85\xfd\x59\xaa\x1e\x53\xed\x97\x09\xbd\x32\xed\x7d\x1e\x7a\x77\xfe\x68\x34\xab\x53\x48\x71\x78\xc5\xfb\xc7\xa9\x3a\xd1\x07\xa6\x97\xbe\x0b\x4f\x54\x49\xf9\x31\xdf\xe0\x6d\x4c\x5c\x5e\xce\xc1\x92\x91\xaf\x4f\xc7\x04\x2d\xb8\xb6\x64\xc8\xab\xdd\x91\x1a\x35\x3f\x2d\x77\x7c\x15\x16\xfa\x62\x7d\xd7\x15\xe7\x5f\xfa\x05\xbe\xdd\xe3\xb4\x6a\xc9\x8b\xc9\xbe\xaf\x7f\x9c\xbd\x76\xc7\xf3\x68\x2f\xf3\x5f\x75\x36\x9c\x7a\xf6\x97\xfb\xd0\x07\x1a\x1b\xdf\x3e\x4f\x77\x0b\x7d\xf0\xe0\xff\xa1\xeb\x2c\xc3\xaa\xce\x9b\x87\x8f\xba\xeb\x9a\x18\xd8\xdd\x22\x08\x02\x06\x4a\x77\x77\x77\x77\x77\x77\x77\x77\x4b\x48\x28\x0d\x22\x20\x29\x20\x20\x21\x20\xa2\x48\x8a\x74\x9e\xee\x33\xcf\xb5\x37\xba\xbb\xf7\xfd\xdf\xe7\xd5\xe7\xfa\xf1\x6e\x86\xf9\xce\xf7\x5c\x67\x3e\x67\x7e\xc5\x09\xbf\xf2\xf0\x8b\x9b\x69\xb2\xac\x08\xc9\x74\x8e\xf9\x0c\xf9\x1e\x44\x44\xfa\xed\x89\x47\x0a\xae\x28\xc5\x84\x94\x61\x69\x25\x09\x54\x4e\xfc\x6c\x9f\xa7\x32\x3f\x9a\x29\xb6\xa7\xe3\xbc\x0a\x1d\x46\x2f\x22\xb7\x69\x5b\xb5\x16\x93\x19\xbe\x50\xcb\xa6\x3e\x8a\x59\x0f\xeb\xad\xec\x50\xcf\xc4\xbe\x09\x6a\x28\xb3\xd3\x18\xc2\x5d\x08\x58\x06\x10\xfb\x8d\xc3\x84\x6e\x0c\x40\x31\x98\x63\xff\x99\x0e\x00\x3d\x1d\xae\x86\x4b\x9b\x00\xa6\xfd\xbc\xeb\x37\xea\x00\x6c\x55\x85\x52\x19\x39\x00\x3c\x38\x45\x56\x1e\xb6\x00\xf8\x6a\x4a\xc5\xf2\xb6\xc3\x98\x7f\xab\x5c\xb2\x58\x23\xdc\xf1\xed\x56\xdb\xa7\x72\x97\x7a\xd1\xc7\x57\x37\xc5\x98\x48\xae\x71\x5f\x31\x33\x75\xe1\x20\x4e\x38\x9e\x77\x50\x0e\x89\x20\x58\xd8\xd5\xfb\xc4\xc5\xdf\xc5\x73\x5b\x3d\x88\x8e\x4d\xf3\xc3\x39\x9a\xdd\xcb\xb8\x99\xd5\x81\x0d\x36\xea\x7b\xa1\xf8\x5c\x14\xdd\x6c\xf0\x7b\xdd\x44\xe9\x3e\x14\x56\xeb\x7d\x4f\xd3\xcb\x60\x64\x93\xaa\xdc\xb4\x78\xa5\x30\xd2\x51\x89\x61\xed\x68\x65\x15\x6a\x4d\xe1\xce\xc6\xf5\x52\x04\xe6\xac\x5c\xc4\xe6\x40\xe1\x57\xd4\xa8\x6c\xd1\x36\x67\x1e\xd7\xe2\x0b\x05\xc7\xed\x89\xdc\x1b\x93\xbe\x4a\xdc\x3b\xc4\xcc\xde\xe1\x0f\x2a\xb7\x90\x7b\xd3\xe2\xde\x3f\x50\x53\x45\x1a\xa4\xe6\x75\x54\xaa\x49\xa1\x5a\x13\xf8\x9b\xee\xab\xff\x40\xeb\xc6\x2e\xd4\x0f\x69\xb0\x62\xee\x44\x79\x55\x3c\xd5\xe2\xc1\xc4\x46\x6c\x96\xd2\x6b\x7d\xc0\xca\x85\xca\xe7\xab\xeb\x8c\x60\x8b\x82\xd7\x00\x24\xb9\xd9\xad\x4f\x76\x01\x28\xdf\x61\xcf\x38\x6d\x0b\x60\x9c\xc7\x73\xff\xda\x35\x00\xcb\x65\x6e\xe6\xeb\xba\x00\x8e\x9f\xf9\x9b\xee\x55\x02\x78\x3f\x16\x09\x78\x54\x0f\x10\x30\x29\x99\xcd\xa7\x04\x2b\xa1\xfc\xd2\xb5\xa2\x97\xe1\x49\xc8\x43\x25\xa2\xb2\x20\x95\x23\xd8\x5a\x73\xdb\x28\x94\xfc\xd6\x77\xc5\xd8\xc4\x65\x3f\x31\xd3\x65\xd6\xfe\x60\x98\x0f\xbe\xc4\x69\xda\x1d\x92\x47\x71\xfa\x76\x0a\x61\x89\xd9\x02\x58\x66\xcb\x33\x69\x23\x05\x2c\x18\x3e\xd3\x63\x45\xd8\x62\x56\x54\xac\xc1\x64\x03\x7d\x79\x39\xf2\x8e\xf6\x5c\xbf\x51\x0d\x13\x42\x53\xcd\x68\x66\xb0\xee\x28\x22\x44\xd9\x7e\xa5\xad\x76\x1f\xea\xae\x22\xeb\xfa\xd1\x72\x1a\x34\xab\x7c\xf7\x46\x48\xc9\xfb\xb5\xab\x8a\xcc\x9b\x43\x45\x31\xd3\x3c\xca\xf1\x5b\xe8\xfc\xfa\x51\x21\x55\xde\x1d\xf3\x1c\xcb\x5e\x43\xf5\x78\xc4\x99\xac\xe4\x8e\x59\x8d\x6e\xc4\xb7\x8c\xa3\x6f\x8e\x69\xa5\xa1\x0e\x26\x2f\xd4\xbe\xd0\x7e\x80\x6a\x4a\x7c\x50\x6e\xac\x73\x17\x9d\x11\x9b\x52\xbc\xa3\xd3\x8e\xf1\x89\xcc\x78\xde\xad\x77\x04\x7b\x2d\xac\x36\x67\x45\xf7\x23\x76\x22\x98\x06\x40\xf2\xed\x63\xab\x13\xcf\x01\x54\xbf\x3e\x36\x3e\x15\x06\x60\xac\xf5\x4c\xfa\xa2\x0d\x80\x5d\x35\x87\xf2\xb5\x23\x00\x6e\x51\x7c\x41\x0c\x8c\x00\x7e\xdf\x84\xaf\x3c\xf2\x02\x08\x5d\x13\x97\xe1\xd5\x84\xe9\x88\xb3\xd2\x7c\x62\x8f\x40\x22\x72\x47\x81\x55\x11\x41\xbd\x1d\x59\xa8\xfe\xd5\xf8\x0d\xb9\x30\xa4\xd2\xa0\xdc\xf5\x1c\xd1\xd6\x4b\xca\xe6\x6d\x38\x02\xf7\xd6\x4d\xd3\x55\x29\xf3\x1c\x56\xc4\x49\x24\x68\x27\x7f\x0c\xbd\x61\x2b\x95\xa4\x5c\xb2\x86\x2a\xb2\xa8\x2f\x10\x2b\x9f\x43\xe0\x8d\x45\x5f\xc7\xd7\xfa\x6d\xaf\xe9\x4e\x0c\x84\x37\x1a\x6e\xb9\xaa\x6f\x2d\x7c\x7e\x5b\xbd\x83\x50\xe1\x5f\x5e\xaf\xdf\x8b\x68\x57\xbe\xbe\x7a\xbc\x86\x63\xfb\xaa\x52\xe2\x5a\x5e\x85\xd1\x9c\xa4\xea\x9d\x0d\xe3\x32\xb3\x31\x1e\x75\xf4\x66\x7a\x71\x61\xdf\x94\x66\xe3\xd6\x70\xa1\x61\x3b\x9b\x76\xe5\x36\x35\x8f\xd8\x24\xa8\xe3\x8a\xa0\xcb\x76\xa9\xe1\xd5\xe3\x43\x90\x32\x3c\x5e\x3a\xea\x1f\x40\x09\x24\x97\x15\x3b\xeb\x2b\xa1\x4f\x25\x48\xe5\x9f\x33\xb8\x8f\x9e\x8f\x99\xcf\x9a\x32\x3c\x87\x49\x89\xac\x4a\x8b\x37\x9c\xc2\xde\x0d\xa3\x02\xc8\xbe\x7f\xf4\xec\xc4\x10\x80\x8e\xee\xc3\xc8\x53\x9d\x00\xe6\x39\x8f\x89\xe7\x5f\x02\x38\x24\x3f\x65\xbc\x62\x02\xe0\x6d\xc6\xfd\xf0\xee\x12\x40\x50\x20\xff\x02\xab\x1e\x40\x54\xba\x48\x0c\x37\x3d\xec\xc4\x7c\x91\x18\x14\x89\x00\xa5\xf8\x9b\x72\x07\x15\xc5\xa8\x87\xe3\xdc\xd4\x7c\x4c\x2f\x92\x9f\x47\x1f\xd3\x45\xba\x72\x10\x8d\x83\x5f\x5b\x3c\x8d\xd0\xc6\x55\x78\xa6\x38\x37\x66\xba\xa0\x5f\xba\xa5\x06\xb0\x96\xed\x41\x79\x3b\xce\xc6\x16\x57\xb4\x20\x7f\xb3\x0e\xcd\x37\xa8\xfd\xb4\x8d\x32\x1b\xad\x33\x6c\x3a\xba\x59\xa5\x1f\x3c\x7c\xb2\x2d\x75\xf3\xb6\x66\xf1\xf7\xd8\x76\xf1\x2d\x26\x0d\xc6\x1f\xfb\x5a\xbc\x76\xb2\x55\x5e\x2f\x3b\xbf\x3e\xbb\x8c\x52\xfb\x7d\xe5\x47\xed\x93\x71\x23\x2d\xe1\xb5\xa4\xaa\x3d\x7d\xf7\x75\x2f\xaf\xaf\x94\x9f\xeb\x68\xd4\x4d\xd9\x5c\x2b\x2e\x6d\x5c\xd3\x8b\xd9\x0e\xcd\x5f\xaa\x1c\x34\x3c\xbe\x93\x9b\x5b\xf8\x52\xd2\x50\x1e\xd1\x9e\xd9\x50\xc8\x60\x84\x47\xe6\xa5\x65\xe7\x65\x18\xd3\xa1\x82\x93\x8f\x67\xbc\x31\xe1\x47\xab\xc5\xd7\xa6\xf0\x9a\xa4\x60\x04\xa3\x63\x13\xc2\x4c\x99\x31\xe3\x11\x73\x00\x8a\x3c\x8f\x8c\x4f\x36\x02\xe8\x74\x3f\xb2\x3c\x1d\x02\x60\x19\xf5\x88\x7c\x5e\x0a\xc0\x95\xe1\x09\xf1\x4a\x14\x40\x10\x23\x87\xce\x9d\x4e\x80\xc8\x68\xde\x06\x56\x2e\x80\xd8\x37\xc2\x86\x5c\x3d\x80\x4b\xfe\x21\xa6\x20\x42\x03\x56\x69\xf7\xa4\x76\xe4\xc3\xa9\x5a\xa9\x28\xa5\xa3\x06\x1d\xe4\xea\xa4\x76\xad\x18\x97\x18\xa2\x55\xf4\xaa\x89\x66\xc4\x7d\xdc\x6f\x81\x41\x0e\xb8\x5c\x3a\xd4\x84\xb7\xb4\x27\xb6\x5c\x12\x41\x72\x7b\x12\x59\x5c\xc7\xb6\xa3\xef\xc0\x99\x7d\xa7\x91\x63\xf3\xaa\xd5\x9e\x7a\xa3\x8e\xfe\x55\x6f\x23\x89\x4f\x7c\x7d\x22\xeb\x74\x3a\xb5\xb3\xf9\xdd\x76\x9b\x03\x1a\xaf\x17\x3c\x5b\xc3\x37\x5e\xab\x63\x7e\x7c\x6a\xde\x99\x94\xd6\xd9\xb3\x44\x7e\xa3\xf0\xe1\x93\xde\xe4\xaa\x64\xed\xeb\x76\x35\x03\xf5\xf5\x95\xf2\xf0\xd7\x56\xc6\xf1\x1b\x5e\xaf\x8c\x2a\x6a\x4c\x6c\xb7\x74\x8b\xef\x15\x4f\x9b\x7a\x6e\xf7\xe4\x6f\xe7\xcb\x9a\xd1\x22\x4e\xe7\xa4\xe7\x24\x98\x59\x22\x90\x99\xc1\xa9\x13\xe6\x61\x28\x86\x94\xcd\x78\x13\xcb\x47\x28\x44\xe2\x68\x0c\xc1\x62\x10\x3d\x14\x47\x13\xfd\xc8\xc2\x1d\x63\x15\x7d\x11\x40\xb5\xfe\xe1\x7b\x3a\x35\x00\x23\x3b\xb6\xee\xd3\x59\x00\xb6\x0d\x8f\x4e\x9c\x8f\x03\xf0\x62\x7c\xcc\x71\xe5\x06\x40\xc8\xf0\x53\xab\xdb\x77\x01\x62\xcd\x39\xab\xee\xd7\x00\xa4\x70\xf1\x5b\x3d\xc5\xc3\x72\x3a\x4e\x74\x4c\xd4\x1d\x4c\xf3\x6a\x25\xbc\xe5\xbf\x51\x19\xf3\x9c\x15\x2e\x19\x73\x93\x73\x73\x8f\xa8\x7d\x75\xa5\x23\x3a\xa6\x7a\x18\xdc\x0e\x5f\xc0\x1d\x8f\x42\xda\x70\xe7\x4c\x22\xf3\xfc\x4c\xbc\xc4\xaa\x7f\x6c\x27\xfb\xc4\x86\x08\x35\xb7\x6e\x3e\x76\xbb\x9e\x3e\xdb\x79\x74\x8d\xc6\x6e\xbb\xe6\x43\xdf\xa1\x25\x15\xd3\x89\xb1\xae\x61\xed\xe5\xf7\x86\x55\x93\x94\x01\xbf\x35\x37\xdd\xf4\x99\xbe\x9e\xb1\x59\x53\xbd\xec\xef\xa7\x3a\xba\x07\xc5\x0d\x2b\x16\xe7\x9a\xc5\xda\xb7\x4d\xd8\x57\x4e\x37\x1c\xa8\x0b\x37\xab\x5f\xb3\xaa\xc6\xbe\x22\x5b\x58\xad\xd7\x56\x6c\x15\x59\x59\xaa\x6c\x16\x95\xb6\xe5\x3c\xb1\x3e\xb0\xf5\xe9\x85\x41\xba\x83\xf5\xeb\xed\xad\x7c\x54\x72\xa9\xb5\x37\x42\x32\x47\x22\xde\xd5\x9a\x80\x14\xca\x68\x89\x72\xb4\x51\x45\x05\x24\x7f\x0e\xbd\x6a\x9b\x84\x96\x4e\xf0\x0f\xba\x6b\x9b\x88\x39\x1f\xb3\x08\xa0\x96\xc9\x5a\x71\xf2\x2c\x80\x29\x86\x6d\xfe\x4c\x34\x80\x83\x34\x6b\xed\xb9\xfd\x00\x3e\x23\x8f\x0e\x5d\x4e\x02\x88\xba\xfb\xf8\x8f\x1b\x9e\x00\x49\x41\xcf\x8a\x18\xfd\x01\xb2\xb9\xb9\x6b\x1f\xbb\x00\x14\xcc\x0a\x64\x0b\x1c\x02\xfd\x22\xb4\x38\xbd\x02\x2b\x35\xb1\x64\x40\xda\x5c\x57\x9d\x3c\x58\xf2\x40\xf9\x77\x27\x3c\xf1\x74\x5e\xb5\xae\x58\x94\x2a\xf6\x73\xea\x90\x79\x61\xee\x22\x52\x3f\xda\xc2\x19\x51\xd3\xb3\x81\x09\x4c\x0a\x9c\xec\xec\x5a\x13\xf3\x9e\x4c\x39\xde\x3b\xf1\xe3\x77\xd7\x90\x5a\xe2\xd8\xca\x7c\x80\x75\xf6\x28\xe3\xc4\x85\xc5\x6d\x93\xe8\x2f\x46\xc3\x98\x95\x0c\x03\xeb\xa9\x3b\xfd\x5f\x47\x7e\x37\xb3\x9c\x55\xea\xd9\x69\xa3\x58\x5e\x5e\x78\xd9\x7e\xa5\x2e\xc0\x8a\xb4\x14\xdd\xf4\xb9\x8c\x6c\x13\xb6\xb2\x5d\xbf\x9c\x57\x6a\x37\xb7\x86\xaa\x56\xc8\x3a\x6a\x37\xbb\x51\xf9\x6a\x2c\x85\xdf\x5e\x71\xcb\xa6\x78\x26\x7e\xd9\x5e\x71\x7b\xbb\xe0\x5e\xa4\xa9\x23\xc7\xce\xa7\x3c\xee\x70\x26\x07\x76\x24\x73\xa6\x44\xc0\x61\xa7\x52\xe4\x66\x9a\x9b\xcf\x9c\x53\x13\x6a\x3c\xa9\xde\x0b\xe7\x44\x87\x7e\x13\xd7\x0d\xa0\xa5\xc5\x26\x49\xa7\x05\x60\x7e\x89\x05\x73\xfa\x19\x80\xcb\x02\xab\xd9\xb9\x49\x80\xc0\x4f\x6c\xc9\x97\x65\x00\x62\x06\x1e\xa6\x5e\x37\x05\x48\xdf\x78\x52\x41\x3f\x09\x50\xb4\x87\x63\xfa\xa1\x35\x40\x99\xa6\xc0\x0d\x21\x19\xf0\xad\x92\x15\xce\x90\x1d\xa1\x26\x54\xe9\x49\x8a\xea\x32\x93\x7b\xea\x0e\xca\xab\x39\x7d\x22\xf2\x95\x2e\x6a\x1a\x47\x7c\xc5\x46\xbc\xb8\x67\x74\xf0\xf9\x29\x44\x54\x96\xbb\x2d\xb2\xde\x69\xcd\x3d\x8a\xcb\x3f\xba\xd7\x7d\xf1\x6b\x18\x57\xd4\x8f\x11\xd9\x99\x48\xdf\xb9\xca\xf2\x6f\x39\x53\x39\xce\xaf\x3f\x48\x4f\x87\x7f\x0f\xb7\x44\x8f\x65\x8d\x27\x8c\x65\x59\x5f\xf8\x7a\x7a\xb8\xa4\xa5\xdf\xc1\x6d\xfa\x69\x7f\x43\x45\xb7\xf3\xc7\xb9\xe2\xee\xb9\xa2\x12\xe7\xc7\x8b\x0f\x5b\xf7\xe7\xd4\x38\x57\x2e\xbf\x6e\xfc\x3d\x25\xd6\xa5\x75\x8d\xbe\x36\x31\xfe\x90\x0b\x6e\xe3\x5e\x45\x74\x64\xb5\xab\xf0\x26\xb6\x34\x22\x8c\xc7\xb5\x75\x6b\xf1\x45\x6b\x50\xab\xab\xe4\x8e\xed\xf3\x16\xdf\xb3\x6e\xca\x88\xea\x6c\x19\x2f\x59\xd7\x50\xd4\xd1\xb4\x3f\xbc\x8e\xb8\x1e\x47\x19\xa5\x64\x7b\xc8\xb9\xa8\xa0\x65\x13\x8a\x01\xf4\xe4\x58\x8a\xe8\xfe\x00\xb0\x0e\x62\x31\x3d\xdd\x01\xe0\xb9\xc4\xb4\xef\x74\x2f\x40\xf8\x6d\x56\xcd\xcb\x7c\x00\x49\x19\x2c\x25\x57\xef\x03\x3c\x47\x3d\x16\xbe\x77\x06\xa0\xcc\xf8\x69\x3b\xab\x37\x40\xe5\x07\xde\x07\x7c\x3a\x30\xf9\x3a\x92\x5f\x55\x2c\x80\x5a\xd5\x74\x50\xec\xb1\xf6\x65\x8a\xe0\xdb\x20\x69\x2d\x5b\x6e\x22\xcf\xeb\x3f\x54\x1f\x46\x98\x63\xa5\xab\x66\xf5\x1e\x3d\x5f\x42\x9c\x7d\x41\xb0\x9c\x79\xdd\xb1\xea\x95\x35\xe6\x61\xd6\x6f\x39\x67\x12\x2b\x1d\xe5\xfc\xd5\x7f\xe2\x53\xa8\x79\xd5\xcd\xef\xf8\x71\x9c\xff\x8d\x0e\xe2\x8f\xe0\x09\x8c\xab\xef\x87\xf8\x69\xf3\x36\x9c\x87\xd9\xa7\x43\xe3\x98\x8a\x6b\x5e\x5e\x93\x5e\x43\x23\x05\x65\x5e\xd9\xb3\xe2\xbd\xe2\xc9\xef\x7c\x8b\xbe\xe3\x3b\xfd\x13\x12\xbc\xf2\x97\xa8\x4d\x9f\xc2\x95\x7d\xa8\xab\xc7\x5f\x5b\x85\x2e\x7b\x37\xaf\x15\xd7\xe4\x07\xb2\x78\xc5\x6d\x5a\xbc\x14\xf3\xe7\xf7\x1c\xdc\xaa\x2a\xf6\xf7\xbb\xe4\xc1\xb9\x73\x27\xff\xbd\xf7\x39\x77\x0c\xe2\x43\xd6\x8e\x97\x94\xdb\x77\x64\x6c\x3a\xb8\x75\x7b\xb1\xa1\x02\x52\xae\xba\x5d\x70\x97\x45\xe7\xc4\x0b\x01\x18\xd0\xb1\xde\xa5\xfb\x00\x60\x73\xfc\x7e\xdc\xc9\x57\x00\xbe\xd2\xcc\x89\xe7\xf6\x00\xc4\xb0\x30\xa2\xcf\x49\x01\xa4\x45\x30\x6b\x5c\xa6\x07\x28\xbe\xcb\x36\x7f\xe7\x1d\x40\x55\xe2\xa3\x8f\xf7\xe5\x00\x1a\x52\x38\x77\xb8\xcc\x80\xd0\x6a\xcb\x33\x20\xfc\x9e\xba\xd6\x7d\x54\xa8\x42\x5d\x9d\x62\xfb\x1e\x2d\x41\x63\x35\x4a\x9c\xea\x3d\x24\x17\x1c\xb4\x86\x75\xeb\x28\x52\xc7\xe7\x99\x6c\x4f\x37\x5f\x32\xbe\xd4\xb4\x7f\x85\xa3\xea\xb5\x43\xf6\x40\xf6\xd4\x62\xf1\xa1\x20\xc9\xe9\xea\xbe\xb9\x8c\xdf\xcb\x7e\x6c\x7e\x1d\x52\x8c\x79\xdb\x20\xb1\xd6\xd7\x3a\x13\x1e\xdb\xf5\xf9\x3b\xb2\x84\x31\x62\x62\x58\xea\x1b\x4d\x66\x75\x98\xda\x97\x8b\xa3\xa7\xe2\x49\x21\xd8\x19\xae\xfe\x7b\xd1\x91\x41\xc7\xbf\xef\x74\x56\x86\x6f\xf8\xe3\x97\x0c\xdf\xb2\x87\x70\x07\xf0\xad\xcc\xbd\x9e\x0d\x7c\xe2\xf7\x65\x3d\xb9\x4a\xc2\x37\x30\x60\x68\xd3\xec\xa5\xb8\xb7\xb7\x5f\xc3\xb6\x55\xd1\x1d\x0f\xb5\x80\xac\x9d\xce\xbc\x22\xb7\x8a\x00\x55\xc4\x68\xd6\x80\x0b\x7d\x00\x1f\x8a\x2f\xf5\xae\x33\xb7\xdf\x02\xfa\x7c\x62\x9c\x63\xaf\xaf\x2d\x86\x39\x26\x0b\xc0\x84\x96\x99\xee\xa4\x24\x80\xb3\x3e\x53\xcf\x69\x7a\x80\x40\xd9\xfb\xcf\xce\x78\x03\xc4\xaf\x31\xf2\x9f\x63\x07\xc8\x99\x64\x0a\xba\xac\x0d\xf0\xea\xc9\x83\xf3\x37\xee\x02\xbc\xf6\x66\x0b\xbe\xf7\x16\xa0\xdd\xfa\x59\x05\x87\x29\x6c\xf6\xf9\x72\x87\x8b\xcc\x01\xfd\x47\x55\x7e\x1f\x65\x4e\x4a\xe3\x04\x5e\x78\xc3\xac\x87\xc4\x3f\xde\x25\xa5\xe1\xff\x3b\xee\xc2\xa7\x9b\x8a\x36\x59\xdc\x3b\x2f\x46\x4a\x35\xc9\xaf\xbb\x97\x07\x47\xd6\x8d\x95\x06\x0a\xbf\xb8\xf5\x52\xdc\xef\x7e\x3f\xd8\x51\x57\x36\x9a\x47\x42\xba\xb6\x1d\x29\xa1\x2d\x62\x41\x96\x16\xcf\xe6\xeb\xb5\x78\x2e\xb7\xa5\x63\x32\xe9\x07\x63\xa6\xe2\xe3\x9f\xa4\x04\x4e\x98\x8e\x4e\x47\x08\x24\xa6\xcf\x64\xf7\xf9\x07\x47\x26\x30\x2d\x9c\xe9\x94\xf6\x17\x8a\x95\x5a\x4e\x69\x4c\xf5\x41\x46\xe1\xd7\x1e\xd4\x56\x7a\x9f\x8c\x9c\x58\xdf\xae\xe4\xf7\xbc\x1b\xf1\x63\x33\xb9\xac\xdc\x2d\x3a\xe2\xe6\x76\x78\x61\xa5\xb3\x42\x64\x05\xe2\x54\xae\x81\xe3\x5c\x84\x2f\x52\x28\x83\xe8\x60\x1e\x1e\x88\xd2\x48\x29\xb0\xeb\x0b\x33\x44\xfb\xc6\x57\xda\xa1\x82\x2f\x63\xd8\x62\xdc\x01\xcc\x59\xee\xf7\x9e\x58\x05\x70\xa3\x61\xe8\xa2\xdb\x0b\x10\x7a\xff\xae\xfe\x49\x0b\x80\x94\xe0\xdb\xfd\x27\x09\x00\x45\xf7\x6e\xe7\x9f\x4a\x03\xa8\x71\x63\xa8\xbc\xd4\x07\xd0\x5a\xc2\xfc\xee\xd6\x10\xc0\xfb\x59\xb6\x3e\xa6\x1c\x80\xb1\x2b\x1c\x1a\xfc\xfa\x90\x3f\xa3\xca\x2d\x29\x7d\x80\x2a\xb8\xf0\x50\x20\x5b\xff\x33\x69\x75\xdd\x5d\xf4\xb2\x87\x36\xce\x7e\x4b\x54\xaa\x2b\x0d\x83\xa8\x5a\xcb\x54\xb4\xaa\xb9\xbd\x72\x79\xfa\xa3\xde\x8b\x0f\xe5\x93\x59\x1f\x3e\x39\xe7\xcf\x76\x75\xbc\x2b\x5b\xcc\x9b\x43\xda\x56\x1f\xad\x39\x5f\xae\xb6\xed\x9a\x78\xf0\x5d\x6d\x47\xcf\x8f\xa1\xf0\xf8\xc6\x13\xc3\xda\x93\x19\x41\x32\x65\x4a\x93\xf2\xc3\xc7\xfd\xda\x0a\xfb\x66\x8b\xdf\xbf\xf2\x46\xe7\x70\xfc\x08\x6b\x73\xf7\xa8\xcb\xf6\x5c\xb6\x68\xac\x77\x67\x48\xc7\xac\x7e\xab\xe3\x73\x69\x4c\x15\xdd\x88\x2e\xd7\x73\xbe\x95\xbc\xba\x75\xae\x04\xe7\x98\x1d\x8f\xde\x91\x7e\x4e\xb2\x77\x8d\xdf\x40\x14\x64\x3f\xb3\xbb\x18\x9b\x88\xa2\x4d\x7d\x6b\xa3\x14\xb3\x88\x66\x4b\x58\xb6\x76\x8e\x16\xc0\xfc\x11\x7b\xd5\x32\x21\xa6\x14\x53\x14\x75\x11\xc0\xbc\x8b\xe1\xfa\x31\x2a\x80\x47\xc2\x2d\x47\xda\x7d\x00\x91\x7e\x37\x4f\xd3\xce\x02\x64\xe2\x6e\x5d\x3e\x31\x0a\xf0\xea\xd1\x1e\xa0\xa1\x01\x68\xcc\xbc\xdd\x70\xa6\x06\xa0\x8b\x81\x91\xeb\x6a\x0d\xc0\x28\x0f\xb3\xc2\x1d\x41\x80\x19\xc1\x27\xd6\xcf\xb8\x00\xb5\x2e\xc5\x31\x22\x5a\x45\xad\x44\xef\xe3\x1d\xd7\x7a\x46\x66\xc0\x57\x0b\x1f\x72\x4d\xc0\x3d\x46\xd2\x48\x89\x65\xec\x41\x7c\x5b\xfb\xa4\xf8\xb8\x3a\x76\x55\x6f\xd6\x57\x67\xb4\x8f\x76\xea\xd6\xe0\x8c\xe3\xcd\x99\xfd\x5d\xd8\xca\xeb\x99\xc7\x76\x1a\xb3\xe3\x5a\x9f\x35\xdd\x58\x55\x0d\xbb\x3e\x70\xb2\xb7\x65\x76\xc4\xa7\xed\xe3\x8d\x8f\x7c\x5f\x75\xdd\xed\x3b\x2a\x26\xf1\x83\x6f\xdd\x12\xeb\x84\xe7\x86\xbb\xfd\x9c\xd3\x2b\xde\x2f\xea\xb6\x78\x39\xa9\x95\xc8\xae\x14\xbe\x6e\x71\x50\x2f\xb4\x5e\x77\xaf\x44\xd8\xc5\xe4\x7f\xdc\x94\x2a\xc3\xdb\xba\xe5\xb8\x6c\x6b\x14\x7e\xb4\x89\xcd\x20\xed\x6c\xe7\x46\x5a\x33\xa6\x3f\x46\x0a\x66\x14\x59\xa2\xd2\xef\x23\x29\xa9\x9d\x16\x23\x29\x2d\xe8\xc7\x09\xcf\x2d\x9e\x24\x5d\xc6\x5c\x8d\xf1\x33\xeb\x4a\x8c\xc5\xa0\x23\x2c\x00\xac\xf7\xdf\x76\x39\xba\x0f\xc0\x27\xfe\x96\x2f\x6d\x02\x40\x6c\xde\x75\x0c\x2d\x27\x40\xde\xc9\xbd\x02\x7f\xc6\x5f\x63\x79\xf5\x3d\x6d\x29\x40\x27\x3d\xcd\x9b\x3f\x9f\x3f\x9d\xdd\xe3\xf7\x27\xa7\xee\x30\xe0\xae\x79\x00\x2c\xf7\xb3\xbe\x62\xbe\x0e\x40\x4a\x7b\x6a\xc8\x77\x87\xba\x48\x76\xe4\x59\x54\xcf\xf8\x2b\x0f\x93\xc8\x19\x49\x9b\x14\x8b\x5f\x79\x58\x72\x98\xe9\xd7\xb3\xed\x17\x1a\xbd\xfe\x49\xd2\xbe\xf6\xcb\xad\x92\xad\xfe\xd5\x98\x0f\xf3\xc2\x51\x0c\x7d\x16\xdd\x3b\xf3\x1b\xde\x62\x63\x6a\x1f\x2d\xbe\xde\x75\x2e\xfe\x92\x3e\x8e\x1b\x93\xb0\xf3\x1b\x25\x4c\x5f\xe8\x57\xb1\xb3\x7b\x67\xf9\x3d\xbf\x83\x6c\x23\xd1\xc2\xb4\x54\xdc\xe4\x68\x6d\x52\xaf\xb1\xba\x59\x2b\x6b\x95\x5f\xe9\xbd\xa1\x56\xce\x67\x25\x53\x1a\xb5\xa5\x5a\x5c\x6c\x69\xfb\xa2\x72\xbb\xa3\xe0\x99\xf9\x7c\x41\x10\x22\x37\xab\xcd\xc2\x24\x27\x16\x19\x9b\x2e\x6f\x6a\x99\xab\x87\x3e\x93\x30\x6b\x2a\x9e\x6d\x81\x4e\x8f\xcb\x37\xde\xc8\x3c\x88\x19\x8a\x58\x35\xde\x4c\x23\x62\xd9\xc3\xe6\x01\x1c\x62\x6e\x2a\x1e\xb9\x00\x10\x90\xbb\x97\xf3\xcf\xf8\xe2\xff\x63\x8c\x00\xbc\x48\xde\x65\xe3\xf3\x5d\xf6\xdd\xde\xcd\xc3\xa4\x14\x4d\xd0\x9f\x5c\xa3\xec\xfe\x1d\xd7\xc3\x40\x7b\x69\x14\x80\x5a\xff\x54\x87\x77\x88\xba\x45\xf6\xe3\xe9\x53\xbf\x4c\x9a\xc1\x8b\x0b\xc7\x78\x3c\xc4\xbe\x40\xf2\x4b\x31\xa7\xff\xb1\xd0\xb4\x0e\x2a\x8f\x2b\x79\x86\x93\x17\x55\x0c\xcf\xb4\x0d\xbc\x56\x9d\xc5\x39\xa0\xfa\xf7\xa5\x51\xbf\xb8\x84\xbb\x7f\xca\x0e\xd1\xfe\x74\xfc\x0d\xe2\xcb\x84\xf3\x85\x2f\xe4\xcf\xba\xa3\x1f\x6d\x5c\xa7\xcb\xbf\x29\x0d\xf8\x99\xd9\x7f\x3f\x32\x8b\xec\xf6\x37\x4d\xfd\xca\xb0\x50\xde\xa6\x6c\xd6\xd8\x9f\xb7\xfc\xf4\x4d\xbb\x59\x44\xbb\xd1\x5a\x60\xb5\xbd\x59\x79\xa3\xc2\x86\xf7\x2b\x0f\x13\x44\x2d\xed\x76\x58\x81\xb7\x49\x59\x95\xdc\x8e\x43\x9e\x9f\x49\xf0\xcb\x41\x44\x45\xd6\x63\xe3\xde\x62\x2d\xd4\xe3\x14\x35\xa3\xad\xa2\x6a\xf4\xa9\x84\x52\xa3\x9b\xf9\x15\x18\xfa\xe8\x41\x23\xda\x3c\x05\x4c\x45\xa4\x9a\xa1\x71\xd6\x53\x6c\x7f\x70\x35\x80\x33\xc7\x8d\xa3\x87\x2d\x00\x42\x08\xbb\x79\x48\x37\xa0\xd1\xfc\x93\xaf\xea\x76\xe3\x7c\x6b\xbd\xcb\x8f\x25\xbb\x9c\x8b\xa6\x69\xf9\x93\x98\x1f\xbb\xcf\x00\x77\xe2\x4e\xb3\xfc\x95\x87\x06\x32\x1b\xaf\x8d\xd6\x01\xec\x18\x5e\x49\xe4\xaa\x87\xf4\x0f\x53\x74\xb8\xf4\xa7\x38\xe7\x91\x6b\xdb\x55\x6a\x5a\x45\xa7\xda\xe4\xd6\xb4\x8d\x4c\xeb\x75\x5f\x06\x2c\x26\x3a\x5c\x68\x4f\x8c\x1b\x98\xfb\x12\xf4\xb5\x4f\xcf\xcf\x6b\x46\xf4\x15\xfb\xc0\x3b\x9b\xa9\x69\xe3\x6f\x7f\x0c\xac\x99\x9d\xf8\xae\x38\xc7\xd5\xfd\xbb\xd1\xd1\x45\xd9\x05\xc3\x36\x63\xfd\xe0\x05\xe2\x92\x56\x63\x98\xa1\xd0\xf8\xde\xd5\xc3\x75\x8c\x86\xcc\x7d\xe3\x1b\xa2\xaf\x34\x0d\x6f\x77\xbe\xd9\x7a\xfa\x82\x6c\xe0\xd1\xf2\x65\x9b\xf8\xdc\xdf\x60\xbd\xe1\x06\x42\x36\xfb\x8c\xfe\x62\xed\x0a\xb2\x25\xb5\xd6\x40\xbe\x42\x00\xd5\x94\x38\xa2\xcf\x5c\x6e\x89\x4e\x88\x3b\xa3\xef\x5b\x6a\x81\x79\x14\x2d\xa6\x67\xf4\xe2\x0f\xac\x55\x28\x9f\x9e\x69\xc1\x32\x76\x30\x58\x16\xc0\xb5\x65\x2f\xf7\x9f\xf1\x44\x6c\xee\xc6\x95\x2b\x4b\xf3\xc7\x9f\xac\xfe\x59\x07\x5d\x2c\xbb\xfc\xdc\xbb\xcb\x95\xd0\x5f\xf1\xff\x5b\x1e\xf0\xaa\xa4\x61\xbe\x78\xdd\x95\x65\x1a\x82\x99\xc8\xb2\x93\xc0\x78\x24\xc6\x54\xce\x22\xda\xe0\x5d\x3f\x52\x41\xbd\x2e\x4b\xb8\xf6\xf0\xa6\x89\x31\xb5\xbc\x27\x8f\x7f\xfd\x8a\xfd\xa9\xba\xb4\xc8\x37\x4b\xf1\xfe\x07\xdb\x84\xbc\x23\x7e\x38\xe7\xab\x77\x6e\x5b\xde\xff\xae\xfb\xb9\xae\x5b\xc0\x68\xef\xa2\xea\x82\x75\x9b\xa2\x1e\xff\x0a\xd3\x92\x55\x23\xbb\xf6\x9d\xb5\xd8\x95\x9d\x5a\x53\xad\xc8\x25\xa5\xb5\xb2\x4a\x49\xdd\xa7\x9f\x8b\x37\xf8\x5e\x0e\xea\xec\x0c\xee\xd9\xda\x2e\x7c\xac\x6b\xd3\xe5\xb2\x93\x9d\x83\xd4\x59\x6c\xff\x88\xf8\x9c\x91\xa5\x17\xd2\x28\x8f\x34\x4f\x6b\xd7\xb1\x7f\xfd\x11\x2d\x10\xff\x87\xce\xf1\x5a\x4d\x0c\x7d\xf4\x6f\x3a\x05\x15\x33\x98\xea\x88\x2c\xed\xeb\x2f\xcd\x71\x27\x02\x9d\xb5\x49\x25\x4d\xb8\xcb\x81\x6a\x00\xbb\xef\x80\x02\x88\x7b\xbf\xcb\x22\xa1\xff\x3e\x0f\x1f\x2c\x76\x39\xb3\xb3\x4b\xcc\x1c\x8d\xf6\xff\xe4\x21\xf0\xf4\x25\xd2\x0e\x35\xe6\xe9\x17\xfe\xee\x95\x19\xb2\x29\x5f\xbc\xe6\x95\x49\x67\xc2\xa2\x98\x8c\x7d\x7d\xaf\x11\xce\x5a\x7e\x4f\xa0\xd5\xeb\x2d\x74\x82\xe6\xc5\x44\xc7\xe2\xcb\x08\x79\x93\xdf\x9e\x27\xa4\x1e\xd9\xfe\xc3\xce\xb7\xf4\x6b\x70\xdc\xba\xa6\xaf\x42\x5d\xa0\xeb\xe2\x1a\x5d\x0e\xa9\x41\xc4\xa2\x71\xc5\xb2\xeb\x6b\xd3\x5e\x5d\xe1\x95\xad\x65\xf6\x06\x27\xad\xd5\xb5\xd6\xd5\x1b\x35\x1b\x1a\x86\x1b\xb5\xeb\x0f\xcb\xc3\xd4\x0a\xb7\x8e\x6d\x14\x94\xda\x6b\x3c\x59\x38\xbe\x59\xfb\x62\x49\x23\x66\xc2\x69\x87\x36\x77\x4e\xf3\xce\x50\x23\xc2\x37\xf3\x8e\x66\x61\xdf\x25\xa4\x62\x1a\x97\x66\x5f\x97\x10\xea\x59\xd2\x88\xe6\xbd\x56\x61\x74\x5f\x0c\x93\xe6\xcd\xc6\x02\x4c\x51\x84\xa0\x46\xda\xeb\x6b\xd8\xc8\xe0\x2e\x8d\xb4\x9a\x3c\xdc\xe5\x80\x21\x4d\x93\xca\xab\x38\xf1\x80\x7d\x00\x81\xc3\xbb\xf1\xec\xfe\x62\x07\xe0\x95\xeb\x2e\x3b\xb4\x77\xf9\x29\xfe\xff\x57\x07\x7f\x92\x7a\x1f\x80\x89\xfe\xc6\xa1\xcd\x76\x6a\x0f\xfb\x1c\x4f\xd4\x34\x81\x6c\xce\xbf\xaa\xd9\xfe\xc1\x8e\xc4\x2f\x66\x6b\xba\xf1\xb6\x96\x70\x5a\x5e\xc1\xbd\xff\x15\x13\x36\x4e\xb3\x3f\xe2\x6e\x0e\x03\x0a\x69\x8c\x4e\xf5\x88\x59\x43\xb8\xdb\x91\x9f\x0f\xfa\x87\x6f\xe7\x7a\xf4\x94\x68\x3b\xa7\x6e\x29\xa4\x90\x5e\x5d\x31\x4f\xd9\xdc\xf7\xc6\xa7\x02\xa1\xa3\xb7\xa1\x30\x1d\x54\x29\xaa\x46\xdc\x1c\xd8\xd0\x2a\xe3\x57\x15\xdc\xbe\xb1\xd9\x53\x44\x54\x39\xb2\x43\xb7\xd5\x9d\xdf\xae\x5c\xb8\xfd\x76\x9b\xfb\x39\xbb\xea\xe1\xef\x26\x3b\xe5\xd9\x7b\x55\x1e\x4f\xd6\x22\xbf\x24\x1f\x55\x59\x1e\x3d\x8d\x5a\x89\xdf\xa7\x2a\x3f\x90\x82\xce\x88\x61\x52\x25\x77\x4f\x60\x34\x22\x69\xd4\x24\xda\x63\xb0\xc7\x42\x1b\xd5\xee\xb7\xa8\x62\x8b\x82\x06\x54\x87\xdf\x7c\xc6\x05\xfb\x9d\x57\x21\xbc\x9e\xc2\xb3\x79\x5d\x02\xd8\x5d\x66\x00\x90\x2b\xb3\xcb\x1a\xd4\x2e\xfb\x9f\xec\x72\xfa\x67\x9e\x70\x74\xff\x15\x7f\xca\x2e\x77\x1e\x03\x30\xf1\xdd\x3a\x3f\x1b\x4b\x1d\x7c\xaa\xc9\x23\xf5\x51\x92\x22\xc0\xcf\xaf\x18\xd0\xde\x47\xea\x16\x0f\x31\x3a\x5f\x1d\x4b\x3c\xa0\x90\xef\xd8\x5d\x78\x1e\xcf\xa2\x59\xee\xff\x30\xa9\x19\x2b\x62\x72\x38\xea\x7d\x68\x04\xba\xd9\x56\x24\xe9\xa5\x97\x0a\xd2\xdb\xd3\x32\x47\xc0\xe1\x0c\x62\x39\xc1\x34\x8f\xdf\xcc\x09\x71\xe8\x55\x5e\x7e\x91\xee\xcd\xed\x91\x81\x9a\x22\x37\x15\xf4\x76\xd3\x86\x74\xe1\x69\x25\x1b\x84\xd2\xce\xb9\x1c\x26\x45\x73\xe4\xe5\x9d\xcd\xcc\xcb\x0a\x9f\x91\xd1\x08\xc3\x74\x65\x05\x0e\x84\x12\x92\x3e\xc5\x44\x61\x64\xd9\x13\x25\x96\xa0\xab\xd8\x33\x7d\x1d\xcd\x1d\x33\xa0\x24\xf2\xc9\x12\x23\x1e\xa1\xa7\xb4\x35\x34\x85\x69\x09\x73\x55\xac\xff\x10\x83\x45\x06\x3c\x54\xba\xde\x9d\x8c\x8b\xf2\xbd\xa2\xc4\xd1\x3e\x82\xbf\xe9\x39\xa9\xd8\xd6\x9a\x8e\x2f\x72\xeb\xf8\xfb\x3c\xfc\xba\x1f\x7e\xf5\xc5\xb1\xee\x5d\xae\xd2\xfe\x5b\x1d\xa0\xaf\x02\x5c\xcc\xfa\x43\x6c\x41\x11\x80\xc9\xff\xf6\xb3\x4f\x55\xd4\xa9\xa7\x1b\xdc\x25\x5d\x38\x4a\x27\xff\x13\x99\x07\xf5\x53\x64\x1b\x89\x47\x3a\x0e\xc5\x63\xa4\xe3\x8a\x47\xad\xee\x66\xf4\x12\x92\xb5\x4e\xb8\x99\xc7\x1e\xc2\x5b\x1a\xed\xf5\xab\x09\x14\xc1\x96\x5a\x17\x44\xb2\xb9\x3e\xc6\xa4\xb9\x17\xc5\xf5\xd8\xf4\xa3\xc7\x62\xe8\x93\x04\x4d\xd4\xd0\xbc\x85\xaf\x52\x38\x75\x36\x90\xeb\x6d\xa5\x19\xe5\x2a\xf5\xc8\xd2\x19\xeb\x8c\x43\xf2\xd3\x28\x09\x24\x63\x0a\x97\xbc\x28\xaa\x09\x99\x9f\x24\x2d\xcb\x8a\x11\x42\x0b\x46\x9f\x96\xfd\x8c\x1e\x40\xbd\x8b\xd5\x95\xfd\x03\x7d\x1f\x1d\x19\x39\x2e\x3b\xbb\x76\x06\xf3\x28\x5c\x59\x2e\x62\x4e\x04\x7b\x30\xb8\x43\x2e\xe7\xeb\x1e\xec\x96\xbf\xbe\x9c\xdb\x98\x35\xae\xde\xfb\xa9\x1c\x66\x10\x87\xbf\xe8\xc9\x20\x67\xd0\x77\x0c\x8f\x74\x39\x20\xa7\xda\xc3\x4f\x10\x76\xa4\x02\xa4\x9b\xec\xc6\x57\xbd\xbd\xcb\xde\xc0\x5d\xee\xbe\x59\x0f\x80\xb8\xf9\xcf\xf8\xb1\x2c\xbb\x9c\x3f\xb2\xcb\x89\x44\x20\x3c\xb8\x45\x7f\xfd\xfd\x02\xb0\x3d\xdd\xfb\x54\xb7\xe9\x04\x05\x2f\xe0\x20\x75\xab\x62\x0f\x39\x56\x12\xa7\xfd\x22\x87\x42\xfa\xac\x98\x65\xdc\x9b\x50\x45\xc4\x69\x6a\xda\x5c\x09\x95\x20\x44\x1b\x95\xba\xeb\xf8\x3c\xc5\xbf\xb1\xd4\xf4\xbd\xe3\x38\x8e\x7b\xe7\x62\x1f\xcc\x60\xb5\x82\xe3\x0a\xbd\x19\x46\x6f\x34\x83\x75\xce\xee\x8c\x1c\xd2\x61\xc4\xde\xae\x7e\x1e\x95\xa9\x9a\x85\x99\xed\xcd\x8e\xea\x56\x38\x80\x91\x5e\x98\x8c\xde\x91\x95\xc6\x3c\x40\x33\x45\x7b\x48\xcb\x63\xd3\x30\x2f\x43\xe8\xa5\x36\xb0\x53\x18\x54\x50\x99\xe4\x18\x2e\x1d\xdb\xec\x67\x21\x75\x04\xcb\x83\xad\xf6\x6b\x96\x6a\x5b\x9f\xc4\xb1\xfb\xb8\x4a\x2d\x2f\xe4\xe2\x10\x1e\xe5\xd2\xec\x53\xb1\x78\x37\xd7\x09\x69\xa9\x89\x51\xfc\x0f\x67\x7d\xe9\xb4\x51\x75\x82\x98\xe3\x45\xa9\xae\xa1\x3d\xc4\xc3\xd6\x93\x7f\xf7\xc5\xff\xad\x83\x2d\x96\x7f\xc6\x4f\xb1\xd9\xe5\x0f\xe3\x5d\x7e\xc9\x05\xb8\x98\x72\xf0\x4e\x67\x34\x00\x8d\x16\x0d\xcd\x5b\x27\x08\x78\xd2\xc4\x56\x5d\x45\x4f\x55\x12\xa8\x13\x6d\x2e\xd8\xa6\x18\x48\xda\x2b\x9f\x4a\xae\x27\x47\x2b\x71\xe8\x3e\x88\xe2\x27\x7d\xd5\x58\x36\x89\xf4\x6f\x21\x59\xe9\x73\x58\xb4\xb8\x90\x89\x57\x2d\x8f\x3a\xdb\xd8\x0c\x11\xde\x3a\x6b\xb8\x69\x9b\xff\xc0\xe3\x83\xae\x7b\xe7\x1a\xe4\xe1\xbf\x24\x97\xfa\xd0\x69\x9b\xe3\x55\x5e\x94\xfb\x55\xab\x58\xe3\x8a\x3a\x14\x02\xdd\x15\xee\xe2\x1e\x8c\x17\x07\x2d\x48\x6f\xe0\xf4\xd6\x4e\x06\x78\x49\x8e\xe3\xd2\xb0\x4d\x7e\x76\x92\x8e\xb8\x2f\x58\xaa\xcf\x8e\x84\x1a\x3e\x0a\xf7\xd6\x23\x52\x9c\x97\xf0\x04\xef\xe0\x72\x45\x4c\x85\xd0\x42\xd8\xe3\x60\x29\x71\x64\xa7\x00\x1f\xea\x72\x49\x3c\x65\xa5\x90\xa0\x6f\xb7\x2c\xf1\xdb\xf7\x25\x42\x92\xed\x37\xf1\xd3\x53\xe5\x44\x67\xf3\x72\xf1\x94\x09\x41\x62\xae\x59\x13\x40\xe5\xa9\x9f\x75\xf0\x33\xfe\xef\x65\xff\x76\x0e\xd6\xd0\x3f\xe3\x9f\xdd\x65\x4f\xc9\x2e\xdb\x8e\x02\x30\x07\xdd\x52\xa8\xc1\x41\x34\xfb\x27\xb6\x6b\xc5\x55\xd4\x08\x41\x0f\xe1\x53\x99\xcf\xa8\xc7\x25\xac\xa4\x46\xa2\xbf\x53\x7c\x15\xe2\x94\xc6\x82\x96\xc9\x89\x1a\x64\xdd\x34\x4f\x7f\xd2\xa6\x01\x93\xc9\x63\x07\x35\x52\x8d\x69\xa3\x99\x8a\x65\x16\xe9\x9a\xc3\x41\x6b\x37\x53\x61\x62\xb0\x6f\x84\x43\x80\xfe\x38\x61\x3d\x4e\xc1\x65\x40\xeb\x2a\x21\xf9\x79\x82\x5b\x8e\x0a\x96\xa0\x5d\xd3\xe0\x2e\x2f\xef\x45\xd0\xef\x11\x73\x3b\x2c\xa3\x81\xcf\xfb\xf6\xca\xb3\x55\xf2\x26\x7e\x66\x63\xd2\xfd\xac\xd8\x77\x82\x35\xfe\xa5\xd3\x8b\x5f\x71\x8b\x56\x11\x2f\x10\x0c\x6d\xbb\x45\x35\x88\xe2\x84\x24\x1b\x73\x91\x63\x44\x36\xa2\x82\x19\x51\xe4\x0a\x6e\x2f\xd1\xdc\xcc\x4d\xc4\x7d\xfb\x10\x31\xd1\x34\x53\x44\x76\x29\x80\x74\xcc\x88\x51\xc4\xf9\xfb\x1f\xa4\x67\x86\x87\xfe\xae\x83\xcf\x51\x3f\xef\x45\xed\x7f\xc6\x8f\x70\xda\xe5\xf4\xf5\x5d\xf6\xff\xec\x8f\x8d\x9d\xbb\xac\x23\x00\x30\x9f\xbb\x71\xa2\xc4\x02\xbe\x3c\xfe\xca\x18\x9f\xad\x07\x4f\xf9\x2c\x9f\xad\xc6\x4f\x53\xdb\xc4\xec\x05\x56\xc2\x2e\x53\x8f\xc9\x4b\x48\x97\xfb\x3e\xa5\xfc\xae\x29\xa5\xb1\xe0\xca\x44\x0e\xd5\x8f\xd4\x13\xb4\x8e\x22\x0b\x9b\xbe\x32\xe8\x33\xcb\x21\xad\xdb\x9b\x9a\x18\x1a\x47\x90\x72\x3d\xac\xcc\x79\x74\xb7\x48\x6c\x11\x1f\xac\xc6\x34\x70\x44\x74\x7a\x84\x8d\xbd\x32\x9a\xb8\x56\xa2\x62\x73\x59\x7e\x95\x98\xdc\x78\xde\x76\x5a\x26\x88\x78\x7c\x80\xdf\xe1\x8d\x44\x3b\x51\xef\x1b\xca\x56\x55\xf4\x1b\x31\x66\x4b\xc6\x6a\x4e\x94\x96\x68\x4f\x68\xb7\x66\x15\xf6\x23\x71\x12\x53\x4c\x16\x84\x66\x49\xa1\xc4\x65\x23\x2d\x21\x35\x52\x37\x89\xde\x80\x5f\xd0\x97\x7c\x8b\x14\xad\xb3\x24\x80\x21\xcc\x93\xc6\xb5\x42\x04\x91\x68\x77\x52\xa8\xae\x9d\xa0\xf9\xba\x23\x79\xaf\x66\x10\xc0\xc0\xcf\x7b\x71\xe9\xbf\xfa\x00\xe1\xe7\x2f\x79\xe7\x3f\xee\x72\x78\x6d\x97\x2d\xc3\xbb\xac\xe7\x06\xb8\xd6\x7f\xfc\x60\xce\x2a\x00\x8d\x2e\x0d\x4d\x1e\x17\x20\x1e\x7f\xb8\x77\x3d\xd9\x0d\x1c\xf9\x7e\x7b\x9c\x17\x59\x0a\x97\x44\x0f\x72\x75\xf9\x0d\x52\xe3\xe5\x84\x44\x0c\xdc\xa4\x28\x2d\x1a\xf7\x14\xc4\xec\x18\x29\x2e\xba\x43\xca\x8d\x66\xc3\x64\x8c\x49\xaa\xa6\xa5\xc9\x04\x39\xc1\xa6\x54\x77\xd6\x60\x90\xec\xe6\x76\x55\xff\xa4\xce\x2d\xb2\x7e\x60\xb2\x3e\x41\x83\x91\xf4\x29\x91\xdf\x04\xa7\xbc\x4a\x7a\x9d\xa7\x6a\x1a\x23\xef\x47\x6a\xa8\xe0\x32\xf9\x24\x9d\x43\x12\xeb\xbc\x6e\x1e\x21\xf1\x99\x14\xfa\xc1\xd7\xa4\x57\xec\x3e\x49\x6e\x86\xde\x34\x4a\xd8\x99\x54\xb2\xf5\xd8\xb0\x45\x68\x80\x94\x48\x34\x31\xc4\x09\x66\x93\xcf\x92\xfc\x74\xb5\x05\x62\xc9\x21\x24\xac\x26\xbf\xc0\x09\x72\x03\x99\x51\x5d\x87\x7f\x9d\xdc\x43\xe6\x50\x1b\xe0\xdb\xa4\xdc\x24\xe7\x28\x1f\xe7\xd3\x24\x5a\x90\x27\x14\xbe\x03\x4c\x05\xfc\xdb\x39\x58\xb6\xdf\xe5\xc8\xe6\x2e\x3b\x7c\x77\x59\x73\x6d\x97\xf9\x3f\xfb\x65\x6e\x10\x00\x83\xf1\x79\xa7\x94\x70\x80\x87\x2d\x37\x3d\xa2\xf5\xa1\x8a\xf7\x00\x4b\x58\x90\x2a\x68\x88\xbc\x7e\xfa\xcc\x7d\x19\xce\x49\xb7\x73\xdb\x3b\xb4\x52\xf5\x54\xbf\x8b\x1b\x5b\x99\x50\xe9\xb5\xca\xa4\x3c\x4d\xb4\x28\x21\x46\x3a\x4a\xaf\x8c\xb4\x28\x22\x96\x49\xaa\x24\x3d\x76\x0a\xbd\xf3\x90\x7a\x8e\x66\x37\xe5\x91\xaf\x88\xfa\x35\xb5\x6c\x72\x55\x74\x91\x4e\xaa\xd2\x3d\xf2\x9b\x74\x07\xed\x25\xb9\x42\x72\xf4\x8b\x00\xdd\xd3\xd2\x29\x64\xeb\x9a\x1d\xdd\x7a\x89\x7d\x64\xcf\xf6\x2a\x1d\x35\xb1\x64\xf2\xc5\xa1\x63\xfa\xa2\x22\xa7\xc8\x77\xa6\x7e\xe8\xed\x17\x44\x91\x25\x36\x4f\x69\xa3\x7e\xc5\xcf\x1f\x44\xde\x20\x1b\xaa\x8a\xf2\x49\x51\x34\xc8\x5f\x15\xda\x78\x27\x28\xfe\x94\x7d\xf2\xa7\x78\xda\x28\x5f\x29\xfa\xd2\x4c\xdc\x31\x54\x56\x4a\x9b\xf8\x71\x80\xed\x81\x7f\xc6\xbf\xf1\xec\xe7\x3d\x90\xb0\xcb\xee\x9f\x1b\xcd\xeb\x43\x76\xf9\x82\x6b\x97\xa9\x3f\xfb\x45\x5a\x3a\x00\x93\xe5\xc5\x85\x58\x71\x80\x27\x62\xb7\x3e\x84\x98\xc2\x22\xb7\x06\xa3\x80\xf7\x43\x28\x12\xc2\xb1\xae\x38\x77\xc1\x7d\x19\x77\x4e\xbc\x35\x3f\x75\x56\x39\x96\x5f\xca\xec\x04\x35\x45\x63\x53\x78\xd1\xa0\x81\xaa\xa4\x4b\x15\xcf\xd1\x7b\x4e\x3d\x63\x6a\x2e\x6d\xaf\xf5\x8e\x7a\xd2\x76\x53\x9a\xac\x31\x42\x29\xf0\x54\x54\x9c\x53\x9e\xa1\xcc\x06\x16\xc9\x4d\x2a\x7c\xa7\xd8\x25\xbc\x51\x26\xca\xfd\x41\x51\xcd\xaa\x54\x79\x27\xfd\x96\xf2\xe8\x85\xbe\xea\x8e\x78\x1c\xe5\x59\x7d\xb4\xca\x8a\x08\x81\xf2\xb4\x83\x43\x45\x45\xd8\x92\x8c\x1f\xbe\xaa\x66\x28\xc8\x46\x39\xf3\xad\x51\xc5\x93\x5f\x95\xc2\xbd\xda\xac\x24\xca\xf7\x86\xc2\x89\x9b\x54\x3a\xc5\xdb\x42\x89\x20\x27\xca\xd5\xf3\x84\x50\xd6\x28\x8e\x52\xa6\xdc\x75\xd4\x3b\x94\x5a\xf1\x24\xae\x61\xaa\x11\x05\x23\x92\x08\xc0\x7e\x80\x77\xfc\xd8\x87\x7f\x78\x10\x17\x05\xee\x9d\x77\x01\x50\xb4\x15\xfe\x7c\x4d\x09\x40\xfb\xb8\xf8\xdd\xbb\x53\x00\xfa\x9d\x32\xf9\x2c\xd5\x00\x26\xfb\xe4\x87\xd9\xfd\x01\x6f\xde\xac\xda\x2b\xf8\x00\x8a\xcc\xc6\xb4\xaa\x24\x1a\xa9\xd3\x26\x3c\xc6\x5d\xea\x67\xa8\x97\x4c\xd3\xad\x97\x8c\xcf\x52\xac\x8d\x39\x3d\xa2\x6c\x0c\xc9\xfd\x06\x59\x21\xce\xce\x55\x24\xd0\xcd\x4e\x7a\xec\xad\x4d\x92\xd4\xbe\x9a\xbb\x14\x28\x4c\xda\xaf\x3e\x59\x36\x1e\x7c\x9d\x18\xa9\x1a\x59\x7f\x36\xcc\x91\x80\x54\x3e\xd1\xf1\x20\x8a\x87\xe0\xa2\xa0\x37\xf4\x7b\xcc\x32\x1e\x25\xab\x35\xfd\x26\x5e\x1f\x7f\x4a\xea\xe5\x4e\x72\x72\x2a\xe1\x9a\xc4\x22\x2a\x34\xf6\x12\xa1\x4b\x1c\x89\xb6\x8b\x98\xfe\xe5\x7f\x90\x4e\x89\xce\x63\xe5\xfd\xb9\x76\x8c\xc5\x3d\xb0\x52\x01\x4c\x4b\xbd\x12\x81\xd8\x11\x3f\xda\x6f\x23\x92\x68\x9c\xba\xf7\xd4\xe7\x6b\x52\xfb\xf0\x67\xdd\x07\x86\xae\xca\xb8\xe1\xba\xbc\xec\x7b\xff\x90\xc9\xc4\x47\xbb\xe2\xba\x8e\xc8\x44\x12\x2e\x38\xc5\xb4\xc6\xc8\x59\xe3\x77\x5c\xae\x00\xb0\x7b\x70\xb2\xd1\x92\x00\xf8\x7b\xb9\xdf\x9e\x7a\x00\x20\x3e\xc8\x1b\x77\x76\x14\x40\x45\x4f\xe8\xfc\x55\x34\x80\xce\x71\x71\x46\x7a\x4d\x00\xe3\x04\xe9\x58\xd6\x60\x00\xb3\x26\xb9\x3c\xf6\x14\x00\xcb\xf7\x2a\x57\x04\x68\x21\xce\xfa\x8c\xe6\x07\xa9\x45\x6a\x9b\xa5\x8d\x11\x8b\x66\x10\xf5\xb8\x79\x85\x85\x98\xb1\x09\x85\xd5\xd4\xd0\x4d\xda\x0e\x4d\xf6\x32\xba\x1e\x5c\xe0\xd6\x48\xb2\x35\x78\x1e\x7f\x27\x40\x9a\xf8\x49\x67\x25\xc7\x23\x84\x4c\x7c\xa0\x65\x50\x6a\x14\xe9\x4d\x68\x57\xd7\xad\xeb\x8c\xb9\x42\x60\x53\xb9\xd1\x69\x10\xcf\x82\x17\x52\x74\x1a\x51\x4e\xa1\xff\xcb\x87\x49\x96\xbe\x88\x50\x4a\x53\xfb\xcb\x87\xb9\xfe\x9f\x7c\x9c\x27\x4c\x88\x8f\xa3\xa3\x22\x34\x50\x49\xe2\x8b\x18\xd7\x10\x99\x55\x2e\xc9\x04\x4c\x56\x88\xe1\xf4\x84\xf4\x4d\xec\xb3\xa0\x63\x13\x1e\x32\x47\xb1\x19\x01\x3e\xbf\x3c\x98\x5e\x4f\x39\x47\x9c\xa7\x4f\xe6\xbb\x72\xf9\xc3\xb8\x1f\x5e\xde\xad\x4f\x15\xb4\xf0\x07\xbd\xf6\x34\x26\xc8\xa7\x10\x4e\x39\x87\xfe\x9d\x07\xc1\x48\x6e\xc1\x53\x46\x00\x32\x9c\x7c\x84\x0b\x4a\x00\xea\x1d\x02\xdc\x57\x93\x01\x0c\xe8\x44\x7c\xef\x2a\x03\x58\xdc\x96\x7c\xce\x9a\x06\x60\x25\x2d\x17\xf2\xac\x15\xc0\x36\x44\xf9\xb8\xe0\x1d\xf0\xb4\x5b\xd7\xa4\x95\x41\x52\xfb\x6c\xb9\x0c\x4e\x69\xb2\x53\xca\x2d\x23\x2c\xf7\x5b\x58\x91\x67\x2d\x78\x9d\x15\x9d\x44\xc9\x34\xa6\x95\xfe\xaf\xbc\xf9\x48\x37\x0d\x71\x71\xc7\x83\xde\x11\x19\xf4\x4f\x66\x3f\x89\x44\x13\x8a\xb5\xfd\x4b\x13\x63\x1f\xe0\xbb\x34\x05\xeb\x70\x49\x5e\x78\x63\xd5\xf4\x4e\x9e\x94\x9b\xbf\x7c\x18\xec\xbc\xdc\xd2\x02\x7f\xd6\x97\x5f\x3e\x0c\xee\xa3\x54\x1f\xa2\x38\xf5\x18\x3e\x44\xb2\x07\x59\x96\xf0\xfd\x97\x0f\xb3\x99\x2c\xb9\x84\x4e\x89\xbc\xb8\x50\x28\x55\x8d\xc9\x0e\x19\xfe\x4a\x92\x79\x87\xa9\x08\x7d\x36\xf2\x42\xee\x04\xf6\x49\xf0\xc9\xfe\x0f\x72\x44\xec\x87\x00\xf3\x1e\x46\xb9\x4d\x5c\xa2\x0f\x57\xeb\x19\xa5\xdf\x71\x8c\xfe\xec\x6f\xca\x14\xf5\xf1\xba\x1e\x62\xf5\xf7\x15\xed\xf1\x53\xae\xca\x00\x9c\xe9\x1c\x83\xc7\xc7\x01\x84\x1b\xb8\x16\x4e\xf5\x00\xc8\x75\xf1\x60\xcf\xe7\x03\xe8\x9c\xe5\xef\xb8\x36\x00\x60\x92\x2d\x72\xeb\xde\x7e\x00\x8b\x06\x71\x35\xe6\x4d\x00\x5b\x75\xa9\x0f\x4f\xd8\x00\x1c\xc7\x14\x3a\x04\x1c\x21\xc0\x25\x54\xcd\x56\x66\x9a\x3a\xe8\x30\xa3\x27\xae\xc9\x47\xe9\xb6\x4d\x34\x73\x35\x8f\x25\x1b\xdb\x64\xdb\x25\xbb\x7d\x21\xe9\x5b\xa8\xf9\x19\x04\x14\x11\xef\x9a\x7e\x8f\x7e\x16\xf5\x8c\xf0\xd4\xb0\x27\x73\x27\xc1\x00\xef\xa4\xe7\x55\xc2\x99\x32\x88\x5b\xd4\x7a\x5f\xcf\x96\x9e\x84\xfb\x43\x5d\xf6\xdd\x52\x76\x01\xd6\x40\x99\xf7\x53\x4b\xde\x05\xcc\x6b\xb9\x8f\xab\xe9\xf9\xbc\x7f\xf9\x1f\x27\xa4\xc7\x76\xd2\x33\xef\xe0\xda\xa4\xe6\x10\x71\xa9\xd6\x68\x36\x29\x39\xe4\x4e\xc2\xf1\xc5\x76\x99\x9b\xe8\xbd\x31\x36\x53\x7e\x72\x81\xa8\x91\xb8\xbd\xa3\x77\x14\x52\xd0\x72\x31\x41\x1f\x86\x15\xd9\x30\x77\x23\xd0\xdd\x1d\x0a\x5b\x58\xd7\xa0\xf4\xd6\x08\x65\x71\xac\x56\x70\xd5\x9b\x14\xe5\x15\xdc\xd9\x80\xa3\x75\x5e\x2a\x34\xb8\x36\x1f\xaf\xca\x4b\xaa\xfb\xf0\xb7\xbc\x2c\x00\x9e\x2d\x3d\x5b\x3e\xb6\x01\x20\x59\xcc\xd1\x71\xfa\x28\x80\xaa\x38\x97\xd0\xf9\x0c\x00\xfd\x26\xbe\x82\xeb\x97\x00\x4c\xae\xf1\x8f\xde\x3a\x0a\x60\x2b\x22\xe6\xc9\xc2\x0a\xe0\x72\x48\x62\x8b\xdd\x04\xc0\xfd\xb0\x1c\x1d\x7f\x0a\x14\x79\x34\x29\x4b\x48\x29\x50\x3f\xb8\x61\xb5\x73\x34\x5b\x29\x59\x8e\x2c\xa6\xa1\x96\x9d\xe4\xdb\x76\x68\xdb\x53\x9e\x5c\xc4\x01\xeb\x73\x3e\x6a\xa1\x22\x84\x5a\x73\xa5\xa8\xe0\x58\x4d\x7c\xa9\xb1\x45\xc6\x4c\xf2\x37\x9c\xbf\x81\x4c\x09\x7d\xd6\x5d\x6c\xa1\xce\x42\x3d\x7f\xde\x23\x0c\x46\xa3\xa8\xab\x2b\x7f\x15\x73\x48\x79\xfd\x4b\xf2\x0b\x26\xb4\xae\xfc\x9b\xf5\xed\x92\x63\xff\x3f\x1f\x66\x83\x5b\x76\x2f\x62\x20\x55\x63\x5a\x57\x81\x0f\x79\x21\x95\x73\xbc\x4a\x61\x12\xa5\x9a\x90\x33\xc8\xa5\xd8\x8f\xb6\x8f\x11\xe9\x21\x28\x2b\xa1\x4b\xa2\x6b\x5b\xbb\x95\xd7\x31\xdb\xa1\x9b\x0d\x64\xd5\x24\xac\x60\x48\x59\x9d\xa8\xda\x3c\x96\x27\x74\x5f\x25\x9d\xba\x30\x6e\x7f\x20\x6d\x89\x94\xfa\x12\x6e\xcb\x87\x1e\x80\x53\xea\xa9\xef\xb1\xc8\xbf\x3d\x08\xd5\x3c\x8e\xb4\x73\x06\xff\xf0\x20\xbe\xf2\xc1\x6d\x0f\x00\x87\x45\x11\xcf\x07\xba\x00\x6e\xaf\xc4\xef\x3d\xe1\x01\xf0\x93\x92\xe1\x17\xd4\x85\x08\x7f\x13\xc5\x51\x99\x71\x6a\xb3\x8f\xb4\x66\xaf\xf6\x3e\x4a\x88\xfb\x65\xe3\x0b\xd6\x67\xc8\x0c\x8e\xef\xad\x23\x3d\x1f\x13\x55\x6d\xfb\x3c\x63\x23\x8a\xf1\x3d\x56\x43\xe1\xaf\x93\x15\x70\x38\xd3\xc1\xb4\xfc\x74\x2c\xf6\xb3\x61\x75\xf1\xab\xdc\x17\x98\xd7\x7a\x6d\x75\xdc\x85\x75\xe8\x78\xcd\xc9\xf7\xb4\xa5\x7b\x50\xed\x2a\x19\xdf\x4a\x5e\x5a\xfc\xe5\x3d\x38\xca\x5b\x6c\x2c\x14\x97\xff\xca\x07\x82\x57\x36\x69\x9b\x90\x3d\xb1\xb0\x5f\xe1\xe6\xce\x78\x66\xf3\x17\x71\x45\x40\x74\xa6\xe1\x86\x86\x54\x2e\x23\x45\x53\xa3\xbb\x0e\xaa\x25\x22\x49\xc9\x7a\x6d\x35\x6a\x73\xa8\x81\x84\xdb\x6f\x24\xd5\x05\x31\xac\x51\x57\xab\x3b\x34\x34\x30\xab\x61\x9b\xaf\x70\x9a\xb2\x58\xb5\x90\xcd\xd2\xbd\x9a\x36\x38\xda\x40\xc1\xe7\x3f\xb4\xb9\x71\x01\xfe\x47\x01\xf8\xd1\xec\xee\xc7\xa3\x00\x64\xb4\x1f\x4f\x9d\x0c\x05\xd0\xb8\xc8\x2e\x71\x26\xf4\xff\xfa\x20\x6e\x67\x85\xce\x33\xd7\x00\xf8\x64\x8b\xb6\xb2\x6b\x03\xf8\xd3\x4a\x9f\xe2\xef\x86\x94\xe0\x41\xf9\xb7\x32\xa7\xa8\xe5\x81\xfb\x35\x18\xb4\x71\x94\x5c\x1f\x49\x03\x0e\xab\xab\xa4\x7e\xd7\x18\x2b\x8c\xcf\x30\x21\xcf\x69\xca\xd9\x3d\xd6\x17\xef\x69\x93\x1f\xca\x9d\x7a\x1c\xfb\xda\xa2\x2e\xd5\x3f\x2f\x17\x13\x60\x7a\xba\x70\xfe\x05\x1d\xda\xdb\x20\xa3\x4e\xb0\xec\x28\x92\xaa\x3d\xfc\xde\xa6\x92\x0b\x91\xa7\x9a\x34\x97\x59\x7b\xe4\x2f\x1f\xe6\x7f\xf2\xb1\x7a\x5b\x91\x67\xeb\xb7\x42\xf4\xb7\x61\xa5\x98\x1d\xd5\x9c\x03\xc3\x85\xaa\x73\x3b\x71\x39\x07\x7a\x97\xd5\xcf\x20\xd4\x32\x93\xda\x59\x35\xac\x91\xd1\xa9\xc6\x8d\x96\x9a\x62\xa8\xec\x44\xf5\x9a\x28\x4d\x0a\xba\x33\x26\xae\xfc\x93\xb6\x04\xe6\x8f\xe8\x98\x22\x56\xdd\x2b\x98\x85\xf0\xce\x82\x47\x3a\x6f\xb0\xc1\x21\x91\xd9\x46\x7a\x97\x71\x34\x41\xac\x00\xc2\x89\x8f\xdf\x1c\x37\x02\x50\xd8\xc3\x2e\x70\x4a\x07\x40\x57\x99\x3d\xfd\xdc\x23\x00\xf3\x0a\x4e\xdb\x2b\xe3\x00\x4e\x56\x5c\xef\x6f\xfd\x0e\xe0\x2d\xc0\xff\x9a\x69\x18\x20\xb0\x41\xf8\xf2\x63\x24\x40\xc8\x9c\xe4\x82\xa0\x15\xc4\x85\xd7\xc8\x45\xc9\xe4\x53\x9f\x87\x47\xa8\xce\xe8\x7c\xa1\xc4\x86\xbc\xd0\x99\xb0\xa6\x25\x05\xfb\x35\x9b\x2b\xfa\x9b\x11\xae\xb8\x70\x38\xcb\x27\x8c\xe0\x1e\x3b\x76\x05\x88\xe7\x5c\xc6\x20\x6d\x72\xe2\x11\x85\x5a\xe8\x13\xe6\x0d\x85\x67\x5f\x3d\x42\x2e\x1b\xef\xaf\x5d\xae\x12\xd8\x01\xdd\x53\xfd\xf0\xfa\xe8\xd6\x57\xf5\x80\x05\x54\x73\x26\x82\x41\x19\xb1\xc2\x5d\xc7\x87\xba\xa7\xf8\x60\xfd\xd8\x2b\xe2\xce\x39\x45\xa6\x8d\xfd\x65\x5e\x33\xbd\x2a\x5f\x36\x59\x4a\x98\x47\x63\xd5\xb6\xb7\x7a\x0a\x08\xef\x53\x35\x39\xb6\x57\xf3\xbe\xb4\x36\x68\xdf\xd8\x99\xce\x26\xbd\x7e\xa5\x6b\x8a\xd0\xcd\x8a\xae\xa2\xd5\x0b\x41\x1a\xa4\xef\x7d\x75\x5e\x8f\x17\x95\x91\x44\x5f\xc4\xa5\xcf\x8e\xae\x8a\xcd\xcb\x5d\x35\xa0\xc1\x78\x45\xd1\x66\xa9\x19\x34\x60\x56\x22\x2e\xa4\xa4\x1b\x46\x61\xdf\x06\x13\x01\xc4\x8e\x3d\xf9\xe3\xc4\x2d\x00\x45\xd6\xc7\x5f\xe9\x6a\x00\xf4\x86\x1e\xdd\x3f\x3d\x01\x60\x19\xf1\x84\xed\x82\x29\x80\xab\xda\xb3\xce\xeb\xf9\x00\x7e\x2f\xf9\xa7\x1f\xc4\x03\x84\x7c\x13\x0a\x7a\x92\x09\x10\xb5\x2c\x86\xe7\x7f\x07\xd5\x71\x04\xa9\x31\xa9\x9b\xd4\x8f\xf1\x27\x14\x3f\x69\x1d\xa5\xc4\x46\x89\x6a\x79\x5a\x5f\x20\xf9\x84\xde\x37\x31\xf0\x6f\xc0\x17\x78\x9f\x75\x18\x4f\xc6\x63\xf0\x6e\xcb\xde\x87\x0b\x59\xd0\xcc\xf6\x49\x09\x17\x5e\xfd\x86\x2c\xb0\x7e\xf2\x7c\x7f\x75\xc5\x4e\x8f\xd9\xcd\x5a\xa3\x86\xc8\x6d\x25\x3d\xe5\xc1\x73\xcd\x97\xb6\x4e\x6a\x28\x2c\x4c\xb7\xf4\x6e\xed\xa8\xd3\x2d\x9e\x6d\x96\xf8\xe5\x07\x2d\xb8\xab\x1d\x5a\x33\xa8\x7c\x33\xae\xa1\xf1\x63\x83\xe6\x15\xd3\xfb\x29\x9d\x84\x8d\xaf\x65\x7e\x1d\xc3\x3a\x4e\x5b\xd3\x85\x25\x0d\x8e\x7a\x9f\x77\x8e\x3c\x17\x2a\x9f\x34\x50\x44\x34\x65\x96\x97\x3c\x37\x34\x43\xda\xa6\x33\x17\xda\x18\x8a\xa3\xf2\x93\x4c\xb2\xbf\x1a\xf3\xa0\x6f\x26\x78\x67\xd0\x19\xb3\x63\xce\xc6\xf0\xa6\xe8\x1a\x27\x61\xba\x22\x4f\xc4\x2b\x98\xbc\xc3\x2a\x84\x99\x01\x88\xaf\x3f\x5a\x3f\xbe\x0c\xa0\xf2\xe9\xa1\xe7\xc9\x6d\x00\x23\xfe\x87\xc8\x33\x41\x00\x56\xd4\xc7\x35\x17\xd4\x00\x3c\x03\xd8\x27\xae\x8d\x02\x04\x8b\x73\x5c\xbb\x33\x01\x10\x19\xc1\xdb\xcc\xca\x0f\x10\x1f\x27\xea\xc1\xdf\x00\x1d\x29\x59\x12\x46\x12\x83\xd4\xf5\x14\x76\x79\x39\x0d\x4d\x4a\x48\x62\x8b\x7a\x89\xb5\x17\x29\x23\xd6\xde\x40\xc7\xaf\x0f\x9f\x1f\xd8\x6a\xeb\x9e\x72\x0a\x73\xc2\x33\xde\xf3\x7e\x09\x07\x32\xde\xc5\x35\x5a\xa9\xe6\xd6\x8e\x9e\x03\x5f\xf6\xa5\x46\xae\xad\x73\x96\x1c\x75\xca\x6d\xd2\x1b\xd7\x0d\x0d\x87\xda\xde\x85\x6e\x88\x68\x6d\xcd\x2b\x76\x86\x6d\x3d\xd0\xa0\xff\xb1\xbf\xc5\x65\x25\x4c\xe3\xec\x12\x7b\xa3\xf0\x84\xb9\xb6\xdb\x4a\x76\x5d\xe7\x87\xfd\xba\xf1\x6b\x13\x95\xd3\xbf\x3c\x90\x86\xcf\x86\xef\x36\x23\x4a\x45\xcb\xf5\x8c\x29\xdb\x77\x0b\xdb\x8b\x4f\x98\xc8\xef\xcc\xe4\xde\xcf\xed\x32\xad\x40\x9e\xcd\xd8\xcc\x88\x37\xfb\x88\xfc\x92\x76\x33\x65\xc1\x9c\x06\xd5\x9a\xe4\x1f\x9f\x66\x61\x8a\x56\x4b\x38\x10\x5d\x66\x51\x8a\x79\x12\x73\x25\x62\xc5\x42\x0a\x7b\x2c\x1c\x0b\x20\x45\x79\x14\x75\x42\x0f\x40\xb3\xe5\xe1\x49\xba\xde\x7f\x78\x10\x15\x0f\xdb\x2e\x1c\x02\xf0\x95\x7e\x5c\x76\x35\x18\x20\x9c\xfd\x69\xc0\x1d\x5a\x80\xd8\x61\xde\x91\x87\x22\x00\xa9\xe2\x42\x17\x79\x9c\xe1\x5d\x26\x5e\xec\xad\x44\x15\x75\x3d\xf7\x81\x8c\xba\x06\x3f\x25\x3e\x83\x43\xf5\x0f\xab\x25\x92\x6d\xda\x33\x5d\xd6\x80\xcb\xf8\x4b\x51\x01\x56\x9a\xe9\x0c\x68\x3d\xbf\x34\x77\xe9\x97\xcc\x88\x3d\x9e\xae\x61\x8c\x0d\x56\x5b\xa2\xce\x0e\x59\xde\x6d\x7c\x6b\x09\x76\x2f\xab\x07\xdf\x4f\xac\xb4\x9b\x3c\x19\x61\xe8\x9f\x5d\x9d\xd0\x8b\x9a\x5e\xec\xe5\xd8\xf0\xd2\xca\x99\xcf\xeb\x80\xa9\x3d\x7a\x35\x0b\x2a\x6d\xb9\x1f\x3c\x0c\x96\x97\xb5\xde\xb0\x34\x9f\x30\xf5\x5c\xbd\x50\xb7\x5a\xd7\x6d\x7a\x72\xbd\xab\xc2\xae\x4c\xcb\x42\x6e\xa3\xf9\xd5\xa3\x02\xb0\x58\xd9\x72\x29\x56\xc8\x4d\xb0\x20\x6d\xcf\xe6\xef\xa4\x2c\x58\x0f\xed\xd4\xe4\x99\x24\x95\x58\x25\x20\x59\x33\xb6\x63\xbf\x59\x3f\x41\x3d\x4c\x3d\x10\x7d\xd5\xfa\x34\xfa\x50\x62\x68\xe8\x4b\x1b\x37\x74\x5b\x9c\x4b\xe0\x65\x1b\x3c\xa6\x2c\xea\x2e\x80\xac\xd4\xc3\xbe\x13\x96\x7f\xfb\x51\x66\x52\x6c\x13\x67\x32\x00\x5c\xbd\x1e\x5e\xb8\x50\x02\x10\x78\xf0\xe1\xec\x95\x48\x80\x68\x5e\xf6\xb5\x3b\xa9\x00\x29\x2a\xdc\x0b\x6c\x6b\x00\xd9\x7c\xfc\xef\xb9\x0f\xc2\x48\xa1\x80\xf0\xa2\xb8\x15\x9c\x7c\x31\x28\x79\x52\x35\x93\xd2\x54\x54\xa5\x60\x60\xd1\x4c\x72\xc8\x41\x6b\xf9\xf8\x4f\xe2\x79\x32\x24\x8d\x67\xd3\xf8\xd0\x39\x91\xfa\x8e\xfa\x65\x4f\x36\x3f\x07\x90\x02\x8a\xdb\xc3\xd7\x7a\xbd\x4c\x52\x6b\xde\x77\x2c\x6d\x39\x5f\xab\x2e\x1e\x3e\xb2\x90\x69\xc1\x35\x7e\x79\x6c\x69\xf9\x8c\x51\xfb\xe4\x6f\x83\x9f\xbe\x9f\x33\x4c\x9d\x0e\xe9\x3b\x33\x3c\x6c\x62\x3d\x4f\xe8\x4c\x69\xe9\xb7\xa4\xfd\x91\xd7\xaa\x5f\x3d\x6f\x55\xbb\xfc\xed\xcd\x95\x12\x73\x9b\xb9\xd5\xc2\x3a\xc5\xe7\xb5\x36\x55\x1b\x4a\xe5\x05\x39\xce\x36\xaa\x9b\x5d\xa5\xf9\xc9\xf4\x76\x7d\xdb\x8f\x8a\xdc\xe3\x99\xed\xee\xec\x60\x73\xf3\xc2\x25\x1d\x6f\x22\x12\xb3\x93\xc2\x55\xec\xe3\x90\xa1\xe9\x5b\x41\x6b\x0e\xfb\x51\x89\xc9\xcd\x7e\x0a\x0e\x2c\xe8\x9e\x38\x4f\xaf\x2e\x07\x2d\x4c\x5e\x94\x2d\x80\xec\x0a\xeb\x95\x63\x0b\x00\x7a\xcb\x2c\x23\x74\x62\x7f\x7b\x10\x1e\x9d\xac\xc7\xcf\x3b\x00\x84\xbf\x60\x4b\xbb\x32\x0a\x90\xc0\xf7\x58\xe3\xd6\x4b\x80\xcc\xe5\x67\x6d\xcc\xfc\x00\x85\x2a\x3c\xba\xcf\xea\x01\x53\xb6\x22\x30\x2e\x72\x0f\x2e\x56\xde\x11\x4b\x52\xf9\x46\xc1\x55\xfe\x90\x79\x6a\x6a\x4e\xba\xff\xf2\xb8\x5a\x77\x60\x2b\xde\x28\x7f\xd4\x60\x7f\x2a\x1b\xea\x68\x5a\xbc\x6d\x64\x15\xef\x86\x57\x78\x86\x9f\xe8\xbb\x95\xe5\xd6\x60\xfb\xe8\xd4\xc1\x9d\x85\x3f\xdc\x9d\x6b\x04\xc7\x9d\x67\x25\xec\xf9\x87\x8f\x4c\x3e\xf8\xfe\xcd\xd2\xee\xd3\xb1\xf1\x53\xc3\xe3\xd6\xbe\x93\x6a\x43\xb7\x5b\xb7\x6c\x79\x67\x89\x3d\xfe\xd5\x8c\xf6\xd5\x0b\xc1\xed\x33\x2f\x72\x1c\x6f\x2e\x15\x35\x9f\xce\x9a\x77\xea\x5b\x7d\x52\x5f\x91\xca\xec\xb4\xb9\xae\x59\x15\x1e\x6b\xed\x72\x79\xd3\xfc\xe5\xe9\x08\x6f\x97\xef\x5b\x15\xc5\x06\xe1\x09\xce\x0b\xdb\x55\x85\xf7\x83\xac\x5c\x64\x10\x4c\xb9\x37\x7c\x2b\x5d\x2f\x23\x39\x32\x85\xbc\xc2\xdd\x4e\x23\xcb\xd2\x53\x3c\xd6\x5d\x1c\xd1\xc7\x12\xdf\xb9\xd7\x38\x25\x62\x34\xa3\x7b\x01\x54\xa4\x58\x9f\x9c\x10\x05\x30\xba\xc8\xe2\x4d\xf7\x16\xc0\x46\xe1\x81\xf1\x69\xba\xbf\x3d\x88\xc8\xd3\x6c\xfa\x57\xb6\x01\xd2\x26\xd8\xde\xde\xd8\x01\x28\x98\x7c\x4c\x62\xe8\x00\x78\xf5\x92\x53\x84\xfd\x37\x80\x5a\x24\xef\x17\xc1\x06\xe0\x7c\xed\x20\x4c\x52\xf2\xa2\xe4\xbd\x21\x4b\x1f\xb4\xe4\x21\xbd\x6b\xd8\xaf\xa8\xe8\x23\x8e\xa3\xd4\x3c\xd7\x6a\x4e\xa7\x41\x36\x14\x07\x9b\xeb\x54\x3f\x58\xdf\x4a\x51\xf2\xf0\xeb\xbe\xbb\x70\x2b\x9a\x26\x42\x7b\x3c\xff\x8b\x61\xa8\x46\xc5\xe6\x77\xbb\x2f\x78\xcf\xcd\x9e\x07\xf3\x49\xe3\x53\x2e\x74\x43\x77\xbe\x3d\x6d\xb9\xec\xe6\x3a\x61\x36\x2a\x5a\x96\xe0\x19\x31\x7d\xfa\x83\x41\x9e\x95\xa7\xee\xfc\x46\xd7\xc5\xcc\x38\xf7\xad\x45\xfd\x96\xb5\xd8\x08\xaf\xb9\x95\x0b\x6f\x7c\xa3\xdf\x79\x5a\xad\xfd\x5e\x77\x3e\x6c\xce\x53\x7c\xe3\x52\xc5\xd7\x20\xf0\x54\xde\x4c\x2b\x6b\xf5\xed\xf4\x28\xd8\xd9\x57\xc0\xeb\x33\xec\xce\x81\xe0\xca\x21\x7b\x6d\xb8\x0d\x20\xb9\x33\x79\x3c\x4c\xdd\x2f\xa3\xfc\x53\x6e\xbb\x37\xb9\xf9\xa0\xf7\x27\x6e\xb8\x96\xb9\xf9\x61\x0e\xc6\x2a\x01\xa8\x79\x33\xaf\x1e\x7f\x08\x60\xb2\xf7\x01\x82\xae\xf1\x6f\x0f\x22\x28\x98\x91\xee\x74\x22\x40\xdc\x97\x07\xbf\x5f\x52\x04\xc8\xe2\x65\x61\xbe\x26\x07\xf0\xf2\x00\xdb\xd7\xbb\x25\x00\xd5\x78\xf6\x02\xd6\x8f\x00\x6f\x72\x78\x8a\x05\x48\x90\xd4\x71\x87\xdf\x5d\x1a\xa8\x17\x3a\x71\x62\xad\x46\x9b\x24\xea\x3b\x8c\xec\x21\xcf\x34\x3c\x67\xc7\x79\x55\xc3\x14\x0c\x52\xa9\x51\xc2\xa0\xaa\xe6\xc8\xda\xa1\x8a\x59\x7b\xa9\x5e\xea\xec\x81\x6c\xe6\x90\x81\x6f\xac\xc3\x6c\x49\xe3\xa5\x67\xd6\x84\x3f\x1e\x8e\x2c\x68\xac\x5e\x0d\xe8\xd0\x0f\x5c\xe9\xb3\x9b\x0d\x2f\x26\x85\x4c\x8c\xa9\x4e\x5c\x4d\x1b\x09\xd9\x99\x9c\x19\xaa\x4d\x8a\x0f\xba\x35\x1b\xd2\xcb\x16\xd9\x1b\xf8\xe6\xc7\xf1\xf6\xea\xb0\xce\x00\xe1\x25\x6a\x13\x31\x28\x3e\x20\x74\x95\x52\x27\x12\xe8\xe1\x93\xb2\xc1\x51\x91\xe6\x7f\xc4\xfb\xc0\x96\x71\x89\xb1\x4f\x88\xb7\xc6\xf6\x7c\x41\xb9\x67\x8f\xb7\x37\xc2\x23\xe7\x9c\xfb\x27\x1f\x7a\xa4\x61\x46\x99\x2b\x9f\x4f\x31\xaa\x30\x39\xc6\x39\xda\xe7\x20\xba\x2c\xfe\x80\x93\x84\x17\x0b\xa6\x21\x6a\x3f\x80\x6a\x09\xc3\xfa\x51\x3f\x00\xcb\xfd\x4c\xb7\x4f\x46\x03\xb8\x5d\x61\xb4\xa6\xcb\x02\x88\x48\x65\xd8\x39\x13\x09\x90\xec\xc1\x74\xf4\x02\x1a\xa0\x40\x93\xd9\xf5\x6a\x20\x40\xa5\x34\x53\xce\xb5\x30\x80\x37\x3b\x0f\x47\xee\x27\x03\x74\x06\x72\x68\x70\x25\xc1\xc7\x0f\xa2\x3c\xf7\xc5\x85\xa9\xde\x1f\xe5\x84\x22\x74\xc5\xc8\x5c\x9f\x78\x24\x52\xdc\xc2\xf1\x3c\x23\x7e\x0a\xa1\x29\xb4\x48\xfa\x61\x09\xcd\x63\xd5\xc3\xab\x6f\xde\x8b\x9b\x9a\xf6\x9d\xfd\x66\xdc\x16\xed\x21\x3a\x7b\xee\x97\x07\xd2\xf1\x20\xaf\xe9\x65\xf4\x0e\xe7\x0b\xeb\x94\xc5\x2e\xf9\x85\xf4\x34\xc6\x04\xf2\xe8\xf2\x44\x7d\x4c\x66\xe2\xe6\x64\xff\x50\x4f\x64\x79\xf4\xd8\xec\xfc\xfb\xe2\x40\x4a\xec\x87\x45\xd1\x56\xf1\x40\xde\x88\x9c\xe5\x99\xc6\x83\x7e\x1e\x61\x49\x6b\xe5\x35\x61\x9e\x9d\xe1\x73\x9b\x81\x65\x8b\x9e\x32\xa1\x37\xb7\x1a\x8b\x65\xdd\xcf\x86\xfa\xef\xfc\x56\x70\xdd\xf5\x7a\x88\x1f\x22\x20\x7b\xd5\x69\x28\x84\x09\xb9\x99\x66\xe7\x58\x10\xac\x80\xea\x4d\x9a\x73\xb8\x16\xe4\x89\xee\x8e\xf3\xb5\xeb\x08\x14\xc3\xbc\x8e\xa4\x00\x68\x5a\x30\x5c\x3e\x9a\x09\x60\x73\xe4\x7e\xf4\xc9\x52\x00\xef\x7d\x77\x5d\x8e\x23\x00\xa2\x5f\xdd\x2e\x38\x51\x08\x90\xe5\x73\x7b\x8e\x6e\x1c\xa0\xb4\x9e\xbe\xe1\x1c\x1a\xa0\x7e\x9b\xf1\xde\xe5\x6d\x80\x0e\x60\xdd\x7b\x4f\x00\xe0\x03\x85\x9d\x9f\x9d\x04\x1b\x9f\xa6\xb9\x44\x44\xef\x53\x7b\xa6\x68\xf9\xf3\x34\x76\xc8\x63\x0b\x1c\x22\xbe\x0e\xd7\x09\x8c\x4b\x2d\x52\xf7\x63\x99\x50\xe7\x56\xfd\x14\x34\xcb\xcf\xac\x16\xcc\x7e\xd5\xb1\xef\xf5\x9a\xba\x39\x38\xe5\x78\x7b\xe6\xc0\x2f\x0f\xa4\xec\xe9\x6b\x99\xea\xde\xcd\xa0\x24\xec\xdb\xdf\xdf\x29\x2e\xfc\x88\xf4\x7e\xe5\x3d\xba\x33\xa1\x17\x6a\x9a\xa7\xfb\xad\x76\xd0\x32\x20\x37\xcb\x6f\x5e\xa3\xfb\x82\xd7\x4c\x16\x79\x71\xee\xed\xa2\x67\x62\x9a\xfa\x4a\x6a\x03\x87\x7b\x70\xe2\xf6\xfa\xcb\xca\x11\xd7\xf1\x84\xb1\x4d\xce\x97\x31\xce\x2a\x09\xbe\xdb\xfb\x5f\x30\x3a\xe9\xc6\x1e\xda\xa9\xc8\x6b\xb2\xf7\x8b\xe5\x46\xaa\x67\x24\xd8\x5d\x8d\x39\x86\xb2\x4d\x61\xb3\xb5\x89\xec\x44\xeb\x25\x30\x58\x3f\x8b\x1a\xc3\xf0\xc4\x5c\xb4\x8a\x88\x78\x88\xbd\x1d\xfe\x0a\x40\xdf\xf3\xde\x32\xad\x23\x80\xbd\xc5\xad\xaf\x47\x6f\x00\xf8\xcb\xde\x52\xa2\x7d\x0f\x10\x5b\x7a\x1d\x41\xcb\xfe\x0f\x0f\x22\xee\xd6\xad\x53\x74\x00\x2d\x8f\x6e\x77\x9c\xfd\x0d\xa0\x6f\xe9\xbe\xce\x8d\xb3\x00\x5f\xc6\xd9\xee\x32\x47\x00\xcc\x84\x73\x9c\x10\x7c\x06\xd2\x9b\x3c\xdc\x18\xc5\xf3\x94\x18\x82\xb9\x80\xb9\xf9\x22\x61\x15\x53\x20\x96\x1e\x6e\x86\x2a\xde\xe4\x92\x9b\x2b\xab\x5e\x8b\x9b\x3f\xa5\x7d\xad\xc7\x66\xea\xf6\xe0\xac\xe3\xf5\x99\xdf\x5b\xbc\x6b\x15\x32\x69\xb6\x88\x69\xf7\x3a\x4a\x5a\x3a\x96\xc5\x42\x08\x03\x9f\xfb\xa2\x66\x99\xbd\x07\x7a\x9f\x7d\x92\x19\xf7\xf0\xe8\x79\x53\x3a\xcd\xd2\xbf\xe2\x81\x7e\xc9\xf7\xfd\xca\xbb\x50\x57\xe7\x17\x17\x96\xd6\x9a\x12\x5d\xf4\x9f\xf7\xae\x8a\xd6\xdb\x3b\x7e\xc8\xf9\xb1\xc1\x52\xc1\x62\x2f\x94\x7b\x6c\x13\x51\xca\x62\x57\x9b\xd6\xb1\xc3\x92\xff\xd0\x96\x3b\xfd\xe1\x0e\xe4\xea\xd8\x1c\x4c\x61\x45\x86\xa5\x57\x58\x35\x26\x5d\x42\x0d\x24\x05\x58\xed\x4b\xa0\x43\x97\xc4\x35\x59\x9e\x89\x4b\xc7\x38\x47\x11\xcd\x53\x63\x66\xb0\xa1\xa1\xd1\x00\x86\x17\xef\xbe\x3c\xca\x04\xe0\xf4\xf0\x46\xe8\xe1\x57\x00\xbb\xbb\x4a\x00\x52\x4e\x5c\x2f\xa6\x4d\xfe\x7b\xce\xd5\x10\xba\x67\xf6\x9f\x1e\xc4\x28\xeb\x6d\xd5\xb3\xfc\x00\xf3\x7a\xf7\x17\x6f\x1d\x01\x58\x53\x7b\x2a\xc6\x5b\x00\x40\x3d\xc0\xd1\x2b\x16\x4e\xd1\x23\xaa\x0a\x34\x58\x0e\x10\xfa\x30\x6e\x62\x3d\x11\xc2\xa8\x07\x1b\x99\xf2\x5e\xaf\x12\x96\x6f\x7f\x6f\xd7\x5a\x7b\xf7\xaa\x7f\xe3\x73\x90\xc3\xc7\xf1\xd5\x12\xeb\xc1\x13\x51\x8b\xb3\x31\x11\xf6\xfd\x51\xef\x6f\xcc\x1f\xf6\xfa\x3e\x96\xfd\xb1\xee\xcb\xac\x23\xdb\xa4\xe0\xc4\xe0\xc8\x05\x07\x9e\x01\x91\xe9\xb1\x3e\x4f\xfb\xab\x2d\xf5\x3f\x68\xda\x2a\x6d\xbf\xd6\x2b\x2d\x6f\x36\x60\x6d\x06\x2a\xa5\xd7\x9a\xaa\x43\x6d\x68\x4b\x99\x36\x99\x5f\x5e\xb4\xd1\x28\xf8\xb6\x15\x55\xfc\xc8\xea\x64\xbe\xff\x8e\x47\xde\xaa\x65\x49\x6e\x29\xc2\x3f\x5b\xc1\xbc\x31\x7b\x05\x75\x25\x95\xce\xbc\x39\x23\x0f\xb5\x98\x38\x6f\x7e\x23\x8d\x19\xdd\x13\xb7\xc7\xcc\x30\xf9\x3b\xa6\x38\xf2\x9b\xe9\xde\xa4\x51\x6c\x68\xa8\x21\x80\x49\xcb\xad\x63\x87\xd9\x00\x5c\xdf\xde\x18\x39\x22\x0f\x10\xfe\x73\xfe\x9d\xae\xb3\xeb\x41\xbc\x54\xa2\x91\xfb\xe7\x9c\x67\xf8\xe9\xcf\x79\x97\x3e\xcd\x7f\xde\x5f\x8c\x28\x3b\x74\xf8\x3f\xdf\x6f\xde\x60\xcd\x67\xc4\xc1\x32\xe5\x07\xe7\x13\x09\x16\x0a\x03\xf1\xa8\x20\xbd\xcd\x1e\x02\x0d\xda\x5c\x7c\x3e\xd6\x63\xa9\x78\x2b\x40\x91\xa1\x38\x7d\xc8\x6b\xb9\x4e\x9f\xbf\x69\xbd\x5e\x72\xce\xc0\x71\x6f\x9f\x61\xda\xb5\xc9\xbd\x61\xd2\xa3\xef\x03\x1b\xc6\x4d\x9a\xf3\x27\x2c\x1c\xc7\xbe\xce\x4f\xc8\x8f\x54\xff\xf2\x40\xcc\x33\xbe\x8d\xcd\x7d\xee\x12\xb4\x90\x1a\x38\xb1\xa8\xfc\x36\xd7\x3c\xa8\xf3\xf7\xd5\x87\x75\xe9\xe6\xb3\xcd\x86\x6b\x1b\x55\xa9\x66\x5d\xf5\x79\x9b\x1e\xa5\x7d\xa6\x50\x31\xb9\xbd\x92\x6f\x66\x5a\x54\x16\x82\x10\xca\xfe\x60\x32\x5c\xe2\x8c\x94\x4f\x5f\x34\x99\xcc\x8f\x46\x55\x25\xf9\x19\x17\xe7\x61\xd0\xf5\xb1\x54\xe3\xac\x9c\x48\x0c\x4f\x74\x8c\x11\x7b\x56\x3e\x56\x31\x8c\xc9\xf0\x71\x66\x15\x96\x10\x54\x07\x60\x96\x7f\x68\xcf\x9f\x71\xb8\xf5\xef\xe5\xf8\x93\xbb\x6f\xf4\x05\xc8\xe5\xdb\x65\x2d\xe7\x4f\x0f\xa2\xe6\xff\xe3\x41\x4c\xef\xe1\xdd\xfd\x9e\xf7\x41\xf8\x9d\x6a\x68\xa1\x14\x73\x6e\x48\x91\xc8\x47\x09\xc5\x82\xc3\x76\x84\x95\x5a\xec\x45\xc9\x2b\x61\xe2\x9f\x44\x11\xe3\xca\xb4\xd9\xb7\x5a\x3c\x36\x46\x0c\x5c\x2b\xf0\xa5\x8f\x96\x2b\xec\xa6\xdf\xaa\xc5\x7a\x7c\xd7\x0b\xfc\xda\xb3\xe2\x3b\x32\x9b\x5b\xc6\xd2\x3f\x6a\xdd\x33\xc3\xf4\x6d\xf2\x43\x97\xc9\xbb\x05\x89\x79\xfe\x77\xa2\x06\xf9\x4b\x7a\x3f\x82\x5a\x58\x0d\x8c\xa7\x99\x96\xbd\x1b\x0c\x0d\x26\x3e\x3a\xad\x35\x57\x3d\x34\xe2\xeb\xb9\xb7\x61\xf2\x8a\xc9\xe8\x5e\x1b\xef\x96\xc6\x8b\x16\xc3\xb6\x46\xd1\x9d\x47\x79\x08\xa3\xc7\x35\x2e\x88\xf8\x2c\x35\x23\xe5\x0a\x49\xa4\x67\x1a\x18\x28\xbd\xc2\xa0\xf7\x24\xbc\x32\xd0\x2d\xf9\x8a\x9e\x88\x3d\xa8\xaf\x53\xf4\x03\x83\x0d\xaf\xd0\xd3\x28\x78\x83\x9d\x0a\xa6\xd1\xfd\x9e\x77\x13\x57\xe9\x67\x03\x60\x75\x7c\xef\x7f\xf6\xb7\xfb\x13\x68\x02\xfe\xcd\x0b\x6a\xde\xda\xe5\xe0\xcf\x79\xf0\xbc\xf9\xbf\xcd\xbf\xff\x24\xcb\xf2\x3d\x22\xa1\x80\x62\xcb\x95\x27\x1b\xba\x22\x42\x1c\x11\x7a\x64\xee\x34\x31\x8f\x53\x90\x66\x08\x98\xee\xe4\x47\xe1\xd5\x8e\x25\xbb\x56\xaa\xed\x38\x19\xb6\x14\x8a\x64\x6e\x6e\xe8\xda\x67\x56\xdb\x85\xa1\x56\xaa\x7c\x09\x4d\x1f\x3d\x8d\x97\x78\xf2\x99\xdb\xc2\x2c\x25\x17\x53\x06\x14\xdb\xaa\xf5\x3d\x96\x79\x17\xed\x9a\x65\x75\xad\x56\x3e\x2e\x9f\x6b\x68\xfa\xe5\x81\x68\xe7\xcc\xf6\xac\x2b\x97\x4f\x69\x5b\x8d\x51\xb6\x3c\x8a\x64\x75\x22\xfa\xb9\xb7\x37\x9e\x9f\xfc\xcb\x03\x11\x6c\x33\x42\x26\xa7\xb6\xea\xf8\x35\xde\x46\xb5\x25\x3e\xd0\x59\xab\xcd\x41\xe7\xc6\x46\x69\xb7\x56\x21\x30\x7d\x11\xbf\xeb\x68\xbe\xec\xc4\x9a\x86\x9e\xd2\x89\x2f\xa1\x62\xfb\x82\x6f\x6b\x5f\x2c\xb9\x89\xcb\xf6\x73\x05\x70\x3c\x71\xa9\x61\xff\x27\x80\xf0\x3d\xbb\xf1\x64\x2a\xd0\xfc\x67\xaf\xfb\xaf\x79\x5f\xd7\x9b\x9f\x75\x90\xb7\xcb\x4d\xb3\x7f\x9b\x77\x90\x35\x60\x9d\xd5\xf6\xfe\xad\xb5\x49\x8a\x3b\x37\xbf\x6c\xcc\xd7\x3d\xa4\x66\xa1\x60\x83\xbc\x5e\x1e\xc2\x6f\x32\x0f\xdd\x8d\xeb\x5e\x62\x96\xd4\xc7\xa2\x6f\xe6\x4f\xa2\x92\x8d\xfc\xd3\x26\xe2\xcf\xec\x70\xdb\x37\xbf\x38\x19\xe8\xb8\xb9\xe5\x75\xbb\x3c\xdc\x45\x73\x83\x92\x1e\x52\xb9\x68\x31\xb0\x56\xd9\xc2\x5c\xb7\xad\xa3\xb0\x96\xff\x43\xb0\xd6\x46\x53\x63\x1d\xb5\x66\x5e\x59\xaa\xda\xb1\xd5\xbe\xa9\x53\xcc\xad\xf6\x64\x83\xb4\x29\x57\xec\xaf\xfe\xc7\xf7\x17\x5b\x73\x05\x8f\xd4\xfb\xc7\x5b\x11\x87\xb3\xac\x34\x6e\x7d\x64\x43\xec\xa4\x6b\xa8\x2f\xf7\xb9\xa1\x5c\x12\x03\xd5\x4b\x3a\x73\xd0\xcb\xd1\xba\xea\x7d\xad\x76\x98\xf8\x08\x6d\x8d\xa3\x8d\xa7\xb0\x2a\x21\xaf\x35\x74\xeb\x62\xb1\x6b\x81\xa3\xea\xc2\x35\x6f\x70\x6f\x7d\x99\x35\x84\xcb\x07\xf0\xfb\xbc\xdf\x03\xb8\x56\xef\x71\xf8\xe7\x79\xf8\x35\xf7\x7d\xb3\xb1\xcb\x01\x95\x9f\x75\xf0\x85\x46\xeb\x4f\x52\xfe\xdb\x03\xb8\x08\x70\x6d\xfc\x28\xc3\xc6\x71\x78\xcd\x8a\x61\x7e\x37\xf5\x99\x42\xe5\x8a\x17\x1f\x18\x30\x23\x0b\x08\x1b\xeb\xf8\x37\x2d\x11\x9f\xca\x4a\xda\xbf\x2c\x6b\xc4\x9b\xa8\xb5\xf8\x06\xa6\x7d\xc1\xac\x19\x2d\xc4\xb8\x87\x57\xa1\xa2\xec\xc4\xd2\x47\xbc\x77\x10\x4b\x1e\xda\x79\x3e\x0e\x5f\x10\x47\x13\x07\x0b\x14\x4c\x9b\xb7\xd7\x6a\xe6\x5f\x88\x6a\xaf\x6c\x31\x4c\xb4\x95\x3d\x54\x79\xb7\x1d\xbc\xf5\xa0\xf0\x95\xf2\x93\x9d\xa6\x6d\xe7\x3c\xcb\xff\xf5\x20\x94\xe8\x97\x84\x91\x86\x29\x6c\xca\x42\xdf\xfc\x50\x16\x09\x29\xca\xfd\x63\xbc\x68\xb7\x18\x03\x15\x9a\xc1\x1a\x8c\x40\x04\x5a\xc5\xf6\xfd\x65\xec\xb1\x50\x59\x65\x42\x87\x14\xee\xa1\xbf\x8d\xca\x64\xab\x31\xee\xbe\x7f\xb7\x72\x55\x73\x12\xfe\x96\xd7\x6d\x15\x9e\xfa\x69\x7c\x89\x3b\x07\x40\x80\xd3\x7f\xfb\x30\xe5\x3f\xe7\xfe\x1d\x27\x77\xf9\xc5\x64\xd7\x8f\xdb\xd1\xfb\x37\x0f\x64\xb9\xfd\xe7\xfc\x93\x15\x2a\xd9\xae\x31\x37\x0f\x67\x50\x19\xb8\x6d\xc4\x6e\xb6\xa2\x28\x34\xc2\xed\xaa\x55\x55\x29\x24\x63\xd9\x07\x66\x15\xb9\x15\x84\x5e\xf5\x1c\x97\x96\xb8\x83\x38\x7b\xe3\xf7\x21\x11\x01\xd6\x58\x57\x1b\xcf\x28\x3e\x77\x7e\xf4\x84\x5b\x7b\x92\xaa\x6d\x08\x5a\x3b\xc6\x23\x45\xd9\x74\x1c\x65\x50\xf8\x32\x7d\x5b\x77\x2f\xb2\xb9\x5d\x28\xd3\x4c\xf9\x03\xd2\x66\x21\x3f\xa3\x58\xf1\x00\xd2\x14\xc1\x99\x8e\xfc\xe5\x3f\xc8\xe5\xa2\x9f\xa2\xee\x26\x9c\x96\x6d\x46\xcf\xa2\xbe\xc4\xd2\xc8\xff\xbe\x7e\x18\xcd\x14\x73\x57\x6e\x62\xfe\x37\x4c\x73\xa8\x98\x5c\xcd\xb7\x70\x6c\x6c\xa0\x88\xbc\xcf\x98\x3d\xee\x86\x5f\xb6\x7c\xff\x80\x20\x6e\xc1\xab\x50\xbe\xb3\xb7\x04\xaf\xe6\xf1\x87\xfc\x8b\x2e\x2f\xfc\x82\x4b\x87\x7c\x77\xfb\x6b\x82\xa0\x93\x1d\x40\xf8\xc1\xdd\xf8\xf2\x03\xff\xbb\x0e\x7e\xdd\x0b\xcb\x3c\xff\x76\x0e\xd6\x35\x76\x39\x7b\x01\xe0\x3a\xe1\xe4\xc1\x61\x0c\xb4\xb0\x5d\x65\x52\xeb\x74\xa3\x5a\xf0\x70\x0a\x2b\xd7\xea\x50\xe6\x84\x22\xa5\x27\x0b\xe7\xc8\x22\xb2\x48\x7d\xe6\x94\x33\xa4\xab\xea\x4e\x56\x85\xe1\x85\x84\xe7\x86\x6a\x6e\xad\xde\xd7\xf1\x09\x56\xb2\x7e\xd7\x1d\xbf\xe3\x5c\x5c\x87\x42\x36\xad\x36\xb1\x5f\xc3\xf7\x45\xf0\x1b\x3b\x62\x39\xb3\x5d\xa3\xf7\x68\x7f\xc6\xa4\xd5\x67\xc7\x3e\x50\x95\xc4\xd0\x0f\x1d\x8f\x25\xc9\x1f\x46\xa7\x6c\x9d\x89\xab\xfb\xcb\x7f\xc8\xc0\x1a\x63\x9c\x43\x39\xa5\xaf\x62\x9b\x30\xc3\xc1\x96\xbf\x3c\x08\xa9\xe6\x6d\x43\xec\x8c\xdf\x23\xe9\xe4\x45\x19\x9c\xa6\xcf\x59\x69\xe1\x99\x2d\xfc\x23\x77\x03\xe9\xbc\x89\x6e\xfc\x5b\x17\x07\x19\xb7\xd1\x0d\xfc\x90\x8b\xbc\x0c\xcb\x60\x1d\xc1\xc5\xe1\x9e\x0c\x43\x9f\x05\xe1\xbb\xad\xc1\xdf\x7d\xf1\xe5\xf7\x5d\xbe\x13\xdd\xe5\xd4\xcf\x3e\x48\xb0\xfe\xb7\xf9\xf7\xb7\x9f\x75\x30\xfa\x1a\xe0\x96\xe9\xe9\x99\x2e\x6e\x98\x63\xd5\x67\xb8\x51\x37\x0a\x6c\x9c\x57\x9f\xb1\x94\x5d\xa5\x1e\x12\x39\x29\x25\x94\x69\x48\x06\xb9\xbb\x1a\x74\xd1\x82\x24\x8a\xfa\xb6\x31\x6b\x90\x1e\x49\x5b\xef\x99\x25\x9b\x5b\x29\x81\x6c\x91\xee\x62\x65\xc7\x40\xe8\x70\x48\x76\x63\xb2\x38\x89\x9f\x09\xd2\xf5\x91\x35\x14\xc2\x7b\xa6\xe8\xf9\x99\x6a\x7d\xc6\x73\x97\xa0\xfc\xd9\x54\x4c\x71\x31\x9d\xfb\x03\x31\x0a\xbc\xb8\xdf\x3f\x3b\x05\xbf\x93\x4e\xc7\x9d\xdd\x5a\x0c\x1c\x97\x1c\xc1\x65\x60\xdf\xfa\x19\x49\xde\xc3\x1f\xc0\xb1\x78\x0f\xfc\xaf\xff\x20\xfe\x18\x7d\x13\x3f\xe0\x74\x4d\xbc\x6b\x9d\x96\x70\xd1\xa1\x40\x9c\xf0\xe3\x01\xc1\xdf\x4e\x46\xc2\x69\xfa\x22\x61\xd8\x26\x4e\x3c\x71\x42\x9a\x98\x6b\x56\x2f\x31\x36\x7a\x94\xe8\x6f\xb1\x07\x20\x27\xef\xbf\xeb\x60\x24\xeb\xdf\xfa\x21\x3e\xe9\xbf\xe7\xdf\x43\xe4\x5d\xb6\xfe\x3c\x1f\x6f\x08\x30\xc3\xd6\xcf\x10\xf2\x6a\x0c\x2e\x73\x27\x71\xde\xca\x39\x4d\x2d\x12\xb6\x11\xa2\x49\x7c\x4e\x89\x97\xfb\x4d\xb1\x31\xd4\x92\xdc\xa9\x7e\x50\x3b\xd1\x73\x98\x7c\x5f\x0f\x67\xf8\xc9\xa1\x9b\x94\x62\x8a\x36\x57\xb6\x62\x21\x1d\xb5\x77\xb3\x39\x6b\x5a\x45\x4c\xf4\xe1\x74\x38\xf9\xcb\x7f\xd0\x9c\x20\x5e\xce\xe1\x72\x9a\x55\xd9\x43\xc8\xa9\xed\x71\x75\x95\xdf\x4f\xd0\xef\x65\x74\xdd\x94\x9a\x25\x3c\x9d\x4e\x73\x2d\x91\x48\xc2\x4f\x23\x84\xdc\xbe\x89\xed\x10\x8c\xf1\x05\x4e\x33\x62\xb7\x08\x93\x84\xab\xf6\x39\xff\xc7\x7f\xb8\x86\xef\x24\xaa\x9a\xad\x8b\x74\x20\x4e\x13\x55\xcd\x95\x84\x71\xab\x82\x24\x3a\xc3\x1f\xa2\x56\xf3\x36\xc4\x69\x93\x8b\xa2\xcf\xbf\x35\x90\x2e\x19\x19\x01\x54\xec\xfd\xe9\x81\xd0\xd0\x68\xfc\xc7\x03\xd1\xfe\xb7\x3e\xb0\x94\xb7\xcb\x4f\xcd\x3f\xe7\xdf\x43\x3f\x3d\x08\x61\x80\x3b\xe1\x67\xdf\x94\xef\x00\x96\x0d\x41\x2f\xfa\x9c\x19\x72\x39\x2a\x58\xe5\x92\xb3\xa8\x68\x61\x5d\x5e\xce\xc8\x0c\xaa\xb4\x0c\x9f\xc4\x5d\xff\xe7\x94\x0e\x65\xbc\x3c\xce\x75\x3f\xb9\x5d\x2f\x40\x7b\xf5\x97\xff\x60\x5e\x4d\x42\xda\xee\x37\x39\x65\x1c\x4b\xca\xf3\xd0\x36\x7f\xa6\xd3\x44\x4a\x8f\x38\x65\xae\xa2\x3e\x4f\xd2\x48\x7b\x6f\x49\xa7\x1c\x4d\x3a\x5a\xc2\x61\x85\x93\x27\x12\xc3\x1a\xf5\xec\xf8\xa4\xcb\x88\x96\x03\x8f\x6c\xa9\xe2\x2d\xc4\x98\xd9\x2e\xeb\x06\xd1\x36\x62\xec\xb6\x8a\xd5\xb0\xf0\x17\xd2\x71\xa2\x99\x99\xa8\xb0\x2c\x49\x81\x58\x69\x72\xf5\x97\xff\x20\xb8\x45\x42\x93\x34\xf5\x32\x7f\xf9\x0f\x82\x91\xd8\x19\x52\x81\x8e\xa6\x40\xee\xf6\x24\x99\x49\xbd\x49\x70\x79\x25\x95\xb4\xae\xe5\xf6\xf7\xe7\x83\xbf\x3c\x90\xc0\xff\x9a\x7f\xb3\xfd\xf7\xfc\xbb\x6b\xe6\xa7\xff\x51\xb5\xcb\xc2\x2f\xbb\x2c\x78\x05\xc0\xd2\x78\x23\x36\x95\x0a\xed\x9c\x47\x98\x63\xa3\x62\x40\x50\xf8\xe8\xb3\x89\xe0\x22\xea\x80\x94\x8a\x40\xa4\x87\x16\xf5\x9e\x0a\x87\x54\xb0\xc3\x31\xca\x1b\x6d\x36\x85\x00\x73\x09\x0a\x8b\x11\x51\x6d\xc0\x24\x84\x3c\x64\xd5\xaf\xad\x62\x78\x9a\xac\xed\x96\x67\x40\xff\xcb\x7f\x50\x8f\x25\x33\xc6\x0b\x1a\x0e\x2b\xcd\x90\x0f\xe4\x4e\x19\x25\xca\x7d\x25\xfd\xa8\x50\x37\x66\x96\xfe\x42\xca\x79\xbb\x6c\x32\x29\x71\x81\x54\x35\x30\x66\x2c\x24\x6a\x4f\x0a\x9c\x6d\x32\x6e\x14\xbe\x44\x6a\xdc\xf1\x36\x3c\x26\x54\x4a\xca\x23\xed\x31\x0c\xfe\xcb\x7b\xb8\x49\xae\x22\xdf\x54\xcf\xe7\xcf\x23\x7f\x27\xab\xa9\x56\xff\xf2\x1e\x78\x11\x14\x77\x32\x51\xde\x91\x97\x15\x57\x4b\xe1\x91\xa9\x07\xf8\xf0\xf3\xfc\xff\xb7\x17\xf7\x57\x1f\xf0\xd8\x65\xdf\xe4\xcf\xff\x3f\xf3\x2e\x4b\x5d\x76\x99\xf9\x93\xe9\xc6\x00\x4c\x3f\x2e\xe5\xc6\xe9\x02\xe2\x59\xfa\xbd\x8a\x10\x0c\xc4\x09\xac\x3d\x4c\xf3\xf1\x80\x73\x92\x14\x6e\x1b\x27\x7d\x6a\x8a\xb2\x84\x08\xa3\xd5\x19\xaa\xba\x26\xab\x78\xa9\xf1\x75\x4a\x8f\x21\xb7\xbc\x85\x41\x08\xe5\xb3\x69\xac\xdc\xb4\xee\x69\x4a\xb8\xe3\x13\xe5\x93\x1a\xe3\x14\x2f\xef\x38\xe5\x5e\xd5\x5c\xca\x99\xc8\xe3\x1a\x52\x4a\xe6\xe4\xa5\x14\x79\x2d\x3a\xd9\x58\x32\xa9\x60\x56\x23\x4b\xfa\x38\x39\xa9\xa6\x54\xe7\x9e\x44\x10\x59\xa1\xe3\xa8\x2e\x5a\x14\x43\xbe\x3e\x72\x57\x6f\x4e\x78\x98\x7c\x71\x76\x4d\x4f\xec\xff\xf8\x0f\x74\x94\xd3\xe4\x58\xe5\xdc\x5f\xfe\x03\xcf\x12\x65\x90\xa2\x24\x5d\xcf\x63\x40\xc1\x50\x7c\x24\x97\xb9\x46\xa9\x86\x14\xb4\x48\xe6\xdf\x7e\xe4\xff\x78\x30\x07\x77\x39\xf8\xd3\xff\x78\x5b\xb3\xcb\xf2\xb8\x5d\x66\x67\xed\x32\xce\xf1\x27\x15\x01\x1e\xdc\xbe\xc4\x1e\x36\x09\xc0\x6e\x73\x4b\xca\x27\x09\xe6\xf9\xce\x32\x0e\xb8\x7c\x03\x3b\x09\xa7\x27\xe1\xb6\xbc\x40\xa3\xc8\xc7\x7b\xc6\x34\x93\xda\xa5\x2e\x26\xb0\xfc\xcb\x7f\xd0\x9d\xa2\xca\x19\x1f\x90\xb8\xa8\xf9\x96\xca\x65\xab\x24\x59\xa5\xae\x4a\x41\xbb\x77\xcb\xf6\xff\xf2\x1f\xe4\x3f\x53\xde\xc6\xb5\x2b\xa8\xc8\x3e\xa1\x84\x67\x92\x94\x1c\xa4\x82\x29\x81\x45\x1c\x4a\x1a\xff\xc7\x7f\x50\xa4\xd0\x0e\xbe\x50\xf5\xfe\x3f\xfe\x03\x0b\xc5\x0c\xb7\xa0\xc0\xc2\x2b\x4b\x29\xa7\xb0\xca\x32\xf1\xb0\x51\xf7\x51\xa2\x25\x05\x7f\x79\x0f\x9c\x4f\xa9\xef\xa9\x7a\xfc\x76\xff\x7b\x0e\x16\xfd\x7f\xde\x03\x3f\xeb\xbd\xf5\xa7\x0f\x53\x19\xb3\xcb\x3c\xd9\x5d\x66\xd1\x03\x5c\xe4\xf8\x63\x28\xc4\x76\xf7\x39\x54\x1a\x80\x7e\x86\x6e\xd8\x5f\x0c\x80\x5d\xfc\x7a\x97\x7b\x25\x00\xcf\x27\x7a\x26\x5b\x2c\x7c\x10\x59\x62\xde\x67\x4e\x07\xf2\xf2\xa3\x4f\x87\x8d\x44\xe1\xa4\xaa\x0c\xb7\x99\x8e\x35\xf5\x93\xf6\x29\x7e\x03\xed\x38\x6a\x86\xd1\x69\xe1\x02\x0d\x14\xd5\xcf\xf2\x93\x68\xbc\xf2\x12\x35\xdd\xd9\x4c\x44\x59\xf1\x2b\xd5\xdc\x27\x4a\x5c\x52\x9e\x85\xca\x11\x6e\x28\xf9\x43\x3a\x90\xfa\x20\x69\x52\xea\xbe\x24\x9a\xb2\x9c\xfb\x4a\xf6\xb9\x18\x1f\x95\xf5\x85\x98\xa4\x9e\x08\x3b\x85\x50\xfb\x4a\xba\x49\x88\x85\xf2\xb9\xbd\x41\x66\x5a\xa0\x91\xd2\x38\x20\x24\xfb\x86\xff\x14\xa5\x7c\x52\x46\xb6\x85\xf7\x22\x65\x61\xf9\xb2\x54\x3b\x8f\x34\x85\x80\x3e\x23\x99\xc5\x5d\x4b\xbd\x4b\xa9\x13\x8f\xf9\x2b\x0f\x8f\xa9\xbd\x54\x7d\x7e\x53\x00\x26\x51\x6e\xf2\xa1\x74\x00\x76\x67\x4e\x16\x5a\x3c\x00\xff\x32\xdf\xe1\xd3\x2f\x01\xa4\xc3\x05\xaf\x5e\xec\x04\x50\x39\x24\x42\xb8\xe1\x0a\xa0\x4b\x2b\x51\xcd\x10\x0e\x60\x10\x23\x3b\xcb\xd6\x0a\x60\x52\xa1\x7c\x9c\xab\x0c\xda\xcd\x1e\x69\xa6\x8b\x49\xc3\x33\x93\x0d\x83\x7b\x0a\xdf\xa8\x89\xa6\x07\xcc\x6a\xb4\x31\x14\x82\xb1\xb2\x93\xa0\xa9\x2a\x99\x6c\x98\x13\xa0\xed\x18\x42\xce\xd5\xd5\x8c\xcd\x72\x75\x22\x6d\x69\x39\x65\x75\x79\x8f\x93\x18\x35\x1e\x94\x0c\x05\xfd\x46\xa4\xaa\x20\x6a\x6b\x82\x0f\x10\x69\x94\xbd\xdb\x8c\x23\x77\x08\xf3\xf2\x1f\x06\x0d\xa2\xce\x11\x5e\xcb\x54\x7f\x33\x8d\x0a\xc5\x37\x4a\xa9\x6e\xd1\xc5\xaf\x11\x42\x25\xa4\xd1\x17\xa2\x5c\x09\x68\xf1\x12\x74\x7d\x78\xdc\x2f\x0f\x04\x5f\x22\x8a\xc6\x46\xfa\x31\x6e\x92\xc4\x99\xb0\xb3\xbe\xcc\x3f\xd8\x25\xd2\x70\x97\x7c\x92\xbe\xdd\x92\x3a\x8e\xd3\xf5\x7e\xff\xcb\x7f\x18\xe4\x91\x36\xc6\x7b\xbb\x62\x7a\x2e\xc8\x18\xe0\xd7\x9d\x5f\x76\xa2\x64\xba\x08\x37\x9d\x8c\x5b\x3f\xcb\x32\x10\xdc\x1d\xd4\x00\xee\x93\x38\x53\x0f\x9d\x03\xe0\xf4\xe3\xe5\x3b\x79\x13\x40\x08\xc5\xf3\xfc\x74\x05\x80\x1c\x0b\xdf\xbd\x0b\xba\x00\xea\x7d\xa2\x74\xb7\x1e\x02\xe8\x25\x49\xbc\x65\xd4\x06\x30\x39\x29\xd5\xc9\xf2\x1e\xc0\xac\x4f\xe9\x04\x57\x09\x4c\x5b\xfd\xae\x66\x2d\x72\x0a\x9e\x59\x8a\xe8\x31\x28\xea\x51\x13\x4c\x13\x4c\x0b\xb5\xe7\x29\x19\x66\xbc\x0e\x46\x96\x33\xe4\x66\xe3\x66\xbf\xdf\x5d\x6e\x93\x99\x0c\x78\xa2\x3c\x3d\xdf\x92\x0e\xe8\x1e\xcc\xea\x09\xb6\x23\x56\x69\x7e\x2c\x2e\x0d\x1d\x23\xe0\xd5\x36\xea\x9a\xa2\xb2\x09\x3a\x2a\xa2\xed\x33\x71\x0c\xf8\x0d\x05\xea\xf0\xcd\x04\x59\xfc\x1d\xd9\x98\xf9\xd5\x64\x02\x0e\x25\x95\x8a\x98\x4c\x11\x22\xd0\x48\x9e\x46\xa9\xc5\x6e\x10\x3c\x25\x74\xd1\x07\xa2\xfa\x7f\xed\x45\x41\x59\x8b\xf7\x61\x52\x82\xab\x7e\xed\x43\xf9\xe5\x81\x8c\x4d\xc8\x54\x61\x3b\xfd\x97\x06\x09\x32\xd9\xb8\x7a\xaf\xd1\xf7\x9f\xe4\x9e\xe2\x5e\x7b\x0b\x77\x5a\xc8\xdd\xc7\x87\xba\xfd\xe5\xc1\x34\x2c\xc9\x8f\x11\x1e\x3a\x0d\x03\x3c\xc8\xe0\x34\x3a\xcc\xf5\xb7\x07\x21\x76\x91\xe7\xfa\x19\x69\x00\x85\x2b\x7c\x67\x2e\xe0\x01\x34\x97\x84\x24\x6f\xe8\x02\x18\x7d\x16\x7f\xc4\xd8\x02\x60\xf6\x52\x72\x8b\xf5\x1e\x80\x0d\x8b\x42\x06\xcf\x03\x58\xb4\x0d\x54\x49\x13\x6e\x06\x31\x1b\x67\x9d\x7b\x0a\x69\x54\x7e\x2b\x26\x53\x69\x83\x0d\x8a\xbd\x05\xc1\x26\xde\x3a\x8c\x6c\x6b\x76\xdc\x3b\xd0\x9d\x96\xe4\x62\x24\x1b\x7d\x30\xe0\x14\xd1\x46\xdf\x22\xe3\x4d\xc4\x49\xe2\x55\x2d\xc9\xb2\x43\x91\x1b\xf8\xef\x9a\x0a\x75\x57\x12\x7b\xf0\xf5\xaa\xea\x1d\xe2\x49\x52\x7f\xed\x45\xf1\x95\x0b\x9c\x0f\x4e\x2f\xc5\x0e\xcb\x30\xef\x70\x66\x05\xe0\x6d\x25\x97\x90\x91\x89\x66\xbf\xf6\x80\xe0\x22\x24\xc2\xd1\xac\x51\x0f\xd7\xbf\x4a\x99\xa0\xed\x22\x71\xdf\x13\xa5\x5a\x30\xed\x21\x8c\x9f\xd3\x65\x8f\x62\x69\x83\x83\x87\x85\xe4\x69\x31\xb8\x90\xd8\xde\x2e\x79\x7a\xdc\x7e\x7f\xc1\x77\x3b\xf2\xec\xb8\x4e\x6f\x91\x96\x24\x45\x09\xdc\x0b\x1f\xcb\x86\x29\xc5\x1a\xbc\xaa\x47\x78\x15\x28\xa5\xe0\xd1\x2e\x00\xf0\xe8\xd0\xb3\xd6\x23\x14\x00\xee\x6f\xcf\xbe\x1d\x9f\x07\x90\x34\xe3\x1a\x3d\x63\x0c\xa0\x94\xc5\xb3\x7c\x61\x0a\x40\x4f\x49\x70\xea\x66\x2f\x80\x09\x9f\xa8\x28\x03\x23\x80\xd5\x63\xf1\x1e\x16\x11\x00\xfb\x1f\x72\x52\xdc\xa7\xa1\xcf\x09\xaf\xbc\x24\x36\xf6\xd7\x5e\x10\x79\xbb\x77\x46\xc5\x06\xfa\x94\x3b\xd6\x35\x56\x89\x76\xdd\x64\x5a\x8b\x2d\x0f\x0f\xaf\x58\x62\xa7\xd9\xc9\xf0\x67\xa1\xad\xc4\xc3\x86\xde\x69\xbf\x45\xad\xe2\xd7\x75\xb3\x4a\xe8\x12\x89\xf8\xbb\x5a\xdf\x6b\xe3\xd3\x18\x70\x46\xea\xc7\x3b\xbf\x67\xbe\xc7\xae\x2b\xc1\x28\x3e\xdb\x0b\x7b\x5d\xce\x61\xf5\x56\x9e\xc4\x5f\xde\xc3\x8e\x54\x06\xe2\x73\x8a\x22\xfe\x94\x94\x19\xf2\x40\x72\xe8\xce\x43\x29\x46\xd4\x54\x8c\xec\x82\x81\xac\x14\xca\x21\xfe\xe6\xa4\x84\x6c\x38\xe6\x50\x84\xe5\xe8\x5d\xf9\xa7\x18\x85\xf0\x92\xde\x5c\xc5\x10\x4c\x74\x38\x6b\xc7\x8e\x52\x0b\xf6\x68\xe8\xd9\xb7\x9b\x4a\x76\xb8\x9b\xfe\x9e\x8d\x06\x4a\x68\x9c\x8b\xef\xe7\x1a\x8a\x72\x2f\xfe\xbc\x97\x79\x39\x9d\xaa\x31\x5e\xc2\x33\x0d\xe0\x91\xd4\xd3\xca\x23\xcb\x00\xfc\x1a\xcf\x18\x4f\x68\x01\x48\x79\x70\xb1\x9e\x11\x06\x50\x59\xe4\x2a\x3e\xff\xe1\x1f\xfb\x51\x4a\x84\x38\xe8\x1f\x03\xd8\x9e\x11\x53\x7d\xb0\x02\xe0\x74\x5c\x86\x89\xf3\x3e\x4c\xba\x3a\x2b\x9d\x17\x0d\x06\x5e\x57\x23\x8d\x02\x45\x0a\xf5\xa9\x33\xad\x21\x87\xd1\x6f\xe4\x25\x9b\x75\xeb\x93\x8e\xb1\x24\x7f\xeb\x3c\xb7\xaf\xfe\xba\xc4\x00\x0b\x86\x10\xc6\xf0\x34\x82\x80\x71\x4c\xaa\x73\x02\x0b\xfe\x82\x7e\xff\x8b\xcc\xb4\x39\x1c\xbd\x8e\x6c\x9d\x5b\x76\x3a\xd6\x5f\xfd\x53\xd7\xfb\x3c\x3e\x8c\x81\xf2\xe6\x67\x28\xac\x43\xeb\xca\x87\x6c\xbc\x2f\xf9\x0d\xf3\x4e\x36\x6f\xab\xf5\xf9\xdb\xbf\xf2\x61\x2a\xad\x89\xa0\x4b\x57\x5e\xb9\x2b\x6b\x86\x94\x4f\x4e\x98\x6e\x93\x03\xd4\xcd\x84\x95\xb1\x30\xc5\x04\x14\x57\x22\x47\xbf\x9c\xd2\x36\x9a\x23\xd6\xf3\x5d\xa7\x72\x22\xe6\x5e\xa4\x5f\x5b\xa3\xf2\x28\x66\x38\x2c\xe0\xf5\x59\xd5\x54\x6c\x6e\xd0\xd4\x2f\xff\xa3\xac\x40\x3d\x01\x57\xee\x1b\xfe\x02\xaf\x91\x8f\x1b\xf1\x59\x07\x78\x6a\xfb\x54\x9f\x76\x0c\x40\x20\xf8\xe9\xf6\x89\x20\x00\x59\x1e\xce\x0f\x67\x06\x01\x34\xb6\x9f\xa9\x9f\xd3\xfd\xdb\x83\xb0\x3a\x25\x10\x7f\x57\x03\xc0\x39\x53\xb4\x99\xcd\x0b\xc0\x43\x53\x66\x2f\x0f\x0e\x90\xbe\x7a\xb2\x5b\xc2\x7d\x20\xeb\x73\x5d\x55\x58\xf1\x16\x95\xc7\x43\x46\xaf\xd4\x10\x45\x9e\x70\x44\x58\x74\x3a\xb9\x93\x1e\xd9\x2f\x3b\xd8\x04\x66\x13\x7c\xad\x0d\x82\x56\xe2\x2a\xf0\x42\xe6\xb7\x92\xee\xa4\x49\xe2\x14\x0c\x95\x5f\x98\x66\xb3\x60\xde\xe9\x4e\xbd\xb6\x2b\x34\x40\x6f\x6a\x9d\xe8\x5a\x2e\x8e\x45\x1b\x2a\xcf\x7f\x4b\x2c\x19\xf9\xb5\x17\xe5\xd7\x1e\x90\x5f\x79\x58\xbf\x2c\xbf\x7f\x7b\x33\xc7\x7e\x66\x40\xa1\x19\x21\x97\xc1\x31\xaa\xa3\xbc\x8d\x08\xcf\x78\xd6\xff\x5d\x25\x00\xb9\x9a\xfc\xb4\x2b\x59\x25\x0c\xad\x1c\x6b\xd4\x92\xa2\x96\x84\xf6\x88\x7d\xd0\xc0\xae\x6e\x8a\x51\x8e\xf4\xad\x94\xd6\x94\xc2\xcc\x86\x0b\xbe\xe4\xd1\xc8\xc5\x1d\x0e\x7c\x50\x80\xd2\x36\xc1\x1d\x0a\xcc\xcf\x1d\xd1\x36\xc1\x7d\xf4\x55\xfa\xf3\x96\x63\xdf\x7f\x74\x0d\x40\x30\x8e\x7d\xf0\xc4\xe5\x7f\x78\x10\x9b\xcf\x4e\x9d\xcf\xfa\x3b\x0f\xf6\x6f\xf8\x96\xef\xf6\x02\x78\x88\x8b\x3c\x60\x7b\x0d\xe0\x43\x16\x47\x71\x5e\x01\x82\x9f\xa3\x2c\xbd\xf0\x15\x50\x09\xe8\x52\xe6\x54\x98\xa7\x32\xf8\x49\xeb\xb8\x1b\x0b\x92\x7d\x3d\x08\x66\x15\x6e\xe2\xc4\x1e\x27\x3a\x87\x7d\xa1\x67\xf0\x58\x5b\x6a\x00\x6b\xd2\x39\xdc\x2b\x8b\xc0\xc4\x81\xcc\x42\x8c\xab\x69\x4a\xc1\xa7\x17\xe2\x18\x06\x7d\x54\xad\x48\x31\x33\xca\x4b\x9b\xef\x3d\x73\xb9\x1e\x52\x45\x75\x66\x6a\xb1\xaa\xf1\x97\x07\x82\x76\x93\x37\xda\x58\x2d\xce\x40\x3b\xc8\x7d\xdf\x8c\x2e\x2a\x59\x7c\xa2\xf8\x79\xcb\xbb\xa0\xe1\xcb\x61\xe5\xad\x9d\x23\xb9\x8a\x43\x37\xd4\x78\x76\x8a\xb3\x87\xbb\xb6\xd4\xf2\x90\x8d\x29\x86\xad\x36\xea\x1f\x51\xb6\x89\x23\x0d\x5e\x9a\xe7\xd0\x6c\x71\x33\x55\x4f\x35\x6b\x30\x8e\x91\xea\xa5\x1a\xda\xd9\x98\xb1\xf0\xa9\x22\x59\x1d\x75\xac\x68\x68\x63\x9e\xbb\x2e\x0d\x76\x2b\xc8\x36\x8b\x5e\xd7\x1e\x17\xe3\x7f\x0c\xe0\x99\xe4\x13\x73\xda\xa3\x00\x62\x6d\xec\x2c\x27\xf7\xfc\xed\x41\xe8\xb3\x3d\x76\x3d\x43\x00\xb0\xd6\xe4\xd0\xb9\x42\x06\x70\xe1\xe0\x5a\xb9\xf5\x19\xc0\x77\x58\xc0\x85\xe5\x00\x40\xf0\x17\xe1\xa1\xa7\xcc\x00\xe1\x8e\x92\x1e\x42\x4a\x20\x16\xe1\xac\x30\xa4\x74\x8a\xca\x1f\xdc\xaf\x99\x6f\xc4\x44\x0e\x0a\xd0\x34\xbe\xe0\x26\x40\x94\x72\x13\xb5\x67\x8c\x18\xc5\x73\x39\xac\xf9\x96\xa5\xd9\x62\xe9\x6d\x7d\x63\x39\x0a\xf4\xd1\xe5\xe6\x26\xf9\x71\xa5\x4d\xa8\x30\xc3\xd1\xba\x86\xf2\x69\xc4\xba\xae\xd8\xfb\xcb\xb5\x97\xb6\x03\xd4\x19\xbe\x7f\x6c\x6c\xfc\xdf\xbd\x28\xeb\xd1\x8a\xe3\x1b\xf9\xa5\xbf\x4d\x7e\x50\xfd\x7d\xeb\x71\x91\xf8\xd0\xa6\xba\xc0\x76\xd8\xf3\xaa\x9e\x46\x4d\xbf\xed\xcd\xbc\x89\x66\x56\xed\x14\x84\x77\xe6\x74\xc3\x4b\x6d\x63\x64\x42\xea\x58\x45\xbd\xde\x5e\xd4\xd9\x14\xd6\x52\x65\x7d\x3a\x54\x77\x62\x7c\xc1\x59\xfd\x6d\x74\x6f\xac\x4c\x4e\x87\xc1\x61\x4c\x53\xc4\x6a\xe6\x67\xfd\x72\x6c\x74\x48\x5b\x72\xb7\x21\x2f\xee\x68\x90\x00\x00\xe7\xc7\xc7\x6f\x69\xf9\xff\xde\x8f\xf2\xcb\x83\x30\x66\x61\xf7\x39\xdf\x0d\x60\x25\xc1\x2e\x75\xb1\x08\xc0\xfd\x05\xc7\xf1\x1b\x6d\x00\x01\x78\x3e\x0d\x66\x5b\x80\x70\x2b\x21\x37\xf6\xaf\x00\xd1\x77\x24\xec\x85\xde\x82\x7d\xec\x31\xd9\x5e\xf9\x8b\xd4\x73\x51\x5a\xea\x13\x26\x56\xe4\xb6\x70\x1a\x7d\x7e\x97\x43\xc4\x07\x3e\xfa\x36\x5a\x91\x1f\x70\x72\xae\x73\xee\x6b\xd9\x76\x98\xa3\x0e\x3e\xd1\x67\x4a\x4c\x90\xef\xac\x52\xf3\xf7\x56\x3f\x42\xf8\x9a\xf8\xd4\x9f\xad\xbf\xb5\xed\xab\x7f\xaa\xdf\xb0\xe9\xf5\xd6\x94\x3a\xeb\x0f\x62\x73\xe8\xce\x2d\xd5\xff\x47\xd9\x5f\x46\x55\xb5\xb6\xff\x1f\xa8\xee\xad\x58\x28\xa2\x62\x17\x06\x28\x28\x21\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\x20\xdd\x29\x28\xdd\x08\x8a\x82\xa2\x28\xa2\xa0\x82\x80\xa0\x48\xf7\x4a\x16\x8b\xb5\xae\x33\x9e\x9f\x2c\xdc\xba\x9f\xe7\xfc\xcf\x79\x75\x0d\xc6\xf0\xcd\x7d\x8f\x39\xef\xb9\x9c\xdf\xcf\xfc\x7c\x0d\x66\xfb\x5b\x72\x37\xd6\x55\x27\x17\x54\xeb\x12\xbe\xa9\x69\x3c\x59\xb2\x7e\x74\x76\x30\x46\x67\x7d\x39\xbc\x12\xdb\x3b\xad\xcf\xb3\xf2\xba\xfc\x5d\x57\x9b\xbe\xf5\xda\x70\x61\x41\x13\xca\x88\x75\x9d\xad\xe0\xcd\xa3\x1b\xc6\x5f\x36\xe2\x72\xf4\xcb\xba\x4c\xcc\x11\xa8\x74\xfa\x42\x7d\x93\x49\x14\x45\x72\x75\xce\xb4\x29\x11\x15\x9e\xf8\x32\xa3\xcb\x4c\x1a\xad\x1f\x8b\x49\xc3\x9b\xbe\xc7\xf0\x47\x16\x26\x8e\x99\x05\x63\xf7\x85\x96\x03\x08\x92\xb1\x87\x52\xa4\xfe\x9b\x83\xb0\xbc\xc8\x02\x67\xa2\x00\x5c\x82\xd9\x95\x2f\xf6\x03\xf8\xa1\xb8\x9f\xdf\xa4\x04\x88\x4a\xe6\xdf\x60\x64\x07\x88\x0f\x10\x36\x64\xff\x01\x90\xac\x26\xd9\x2d\x5a\x0d\x1e\xe9\x95\xb2\x5d\x8a\xed\x44\xb9\xb4\x5b\x6a\x46\x26\xd9\xdb\x41\x71\xa1\x86\xac\x9e\x1e\x5b\x67\x23\x3c\xad\xef\xc6\xc6\x63\xea\xbc\x15\x3c\x6d\x0a\xf2\x90\x55\x1e\x26\x11\x0b\xd5\xc7\x37\xf6\x38\xd6\xe4\x65\xb4\x88\xac\x8e\x58\x7d\x6f\x12\xef\xe4\x5a\x9e\x32\x65\x78\xcd\xd7\xfd\x69\xd9\x53\xb7\xe4\x5b\xf6\xb3\x83\x24\x2f\xca\xfc\x29\xad\x92\xd9\xe5\x96\xee\xf7\x15\x06\xcc\xf3\x93\x8d\x0e\x2f\x6e\x1a\xd6\x2d\x39\x57\x07\x75\x36\x19\xb5\xae\x68\x3f\x88\xaf\xff\x68\x1a\xb7\x1a\x51\xe6\xf7\xa8\xc2\xd4\x76\x5d\xa8\xf0\x50\xe9\xb4\xf9\xed\x0d\xb5\xdc\xa8\x02\x71\xf3\x65\x84\x63\x66\x64\x56\xaa\xe5\x05\xa4\xc4\x7d\x8d\xfb\xad\x96\x7d\xc8\xc5\x94\xe7\x49\xc7\xad\x78\xd1\x97\xe3\xdd\xe2\xf5\xad\x9c\xd0\x95\x31\xe3\xd1\xbd\x56\x9e\x18\xff\x88\x66\x00\xa1\x49\xb6\xa3\x14\xf7\x00\xe4\x03\x58\x46\x28\x25\xfe\xcd\x41\xb8\x87\xb0\x79\x5c\xec\x03\x08\xb1\xe7\x3c\x77\xbd\x0c\x20\x66\x9b\x67\x83\xbe\x17\x20\xc5\x5f\x88\x87\x43\x0d\x20\xf3\x88\xf8\x3e\x11\x26\x08\xcc\x39\x26\x73\x56\xf1\x04\x51\x27\x07\xab\xac\x66\xdc\xb5\x6d\x98\xde\xa6\xeb\xe5\x55\x8c\xab\x4f\x74\xb6\x38\x90\x20\x85\x39\x10\xaa\xe3\x6a\x5b\xbc\x81\xf8\xdb\x8f\x3f\xa8\xb5\x91\x62\x15\xe7\x26\x95\xd5\xdf\xa9\xb7\xd4\x6b\x3f\x5c\x5f\xde\x7b\x85\xc4\x81\x90\x3c\x20\x24\x4f\xcc\xa7\x3a\x43\xcb\x99\xd6\x0e\x86\x57\x16\xc6\xf3\xf3\xd7\x9b\x63\xda\x17\xcc\x57\x17\xaa\x1a\x12\xeb\x53\x2d\xac\x96\x05\x1f\xb1\x3f\x54\xb1\xa4\x5c\x99\xa8\x18\x2a\xfd\x6e\xa5\xb7\xb6\xb7\x34\x26\x57\xcd\x5a\x79\xe3\x48\xde\x7a\x3a\xb3\x6d\xfa\x86\x55\xee\x60\xf2\xb6\xad\x17\xe2\x49\x46\x7f\x7c\xbb\xed\x24\xb2\x25\xf5\x7b\x4c\xa9\xad\x1f\xea\x59\xa2\x52\xc4\x7b\xdb\x1f\xe8\xf0\xd8\xa7\xe1\x54\x36\xc5\x98\x98\x88\x44\x00\xf1\x07\xf7\xd6\x28\x8e\x02\xa8\x6a\xdc\xbb\x49\xe9\x05\x60\x2c\xcf\x6c\x76\xea\x20\x80\x3d\x17\x8b\xfc\x59\x1f\x00\xdf\x78\x96\xf2\x8b\xf1\x00\x51\xe7\xd8\x3c\xae\xdd\x00\x48\x5c\xe2\xce\xa5\xaf\x02\xc8\xd4\xe5\xfb\xc0\x4a\x01\x50\x30\x22\xec\x2d\xc8\x01\x4f\x4a\xd5\xc5\xc5\xa4\x17\x89\x89\x65\xac\xf2\x02\x06\x49\xdb\x2e\x45\x06\x9a\xec\x9e\xd5\xb8\xf4\x6c\x56\xe3\xc2\x84\x11\x74\x69\x62\x89\x03\x65\x69\xfd\xfa\xb9\xc0\xcd\x40\xc1\x76\x96\xe5\x43\x3e\x73\x69\x2a\x3d\x6b\xf3\x19\xae\x14\x35\xb1\xfd\xe8\x1f\x01\x96\xef\x3f\xe9\x7f\x70\x22\x79\x51\xbe\x29\x19\x6f\x7e\x4d\x7e\x19\xd6\xaf\x61\x3e\x3e\xad\xf9\x54\xa6\xe3\x8e\x75\xf9\xec\xc9\x8e\xf4\xda\x61\x9b\x8a\x05\x96\xa6\x93\xe5\x5a\x76\xd2\x4b\x46\x35\x84\x7c\x6f\x7b\xf4\xf2\xf2\xc3\xa3\x59\x31\x0e\x36\xab\xaa\x15\x14\x69\xa7\xed\xfb\xd7\xb3\x0b\x7a\x12\xe3\x1d\x7b\xd6\xbb\x0b\xf4\x63\x36\x1d\x9b\x11\x7c\x59\x84\x88\x7c\xa7\x2b\x48\xd9\xfb\x9f\x83\x27\x9d\x9e\xa2\xe4\x93\xd3\x82\x1c\x1d\xeb\xd0\x7c\xf1\xa2\x81\xb4\x0e\x73\x68\x64\x74\x2f\x80\x24\x91\xe9\xd3\x31\xad\x7f\x70\x10\x4e\x4c\xae\xff\xb9\x2f\x9c\xd5\x18\x7f\x9c\x36\xfd\x87\x1f\xe5\x0c\xeb\x01\x6a\x36\x80\xb4\x40\xf6\x65\xda\x4f\x00\x05\x09\xdc\xe7\x98\x7c\x01\xca\x9e\x09\xf6\x09\x14\xc1\x93\x87\x67\x45\x53\xa5\x27\x88\xd5\x35\xcf\xa5\x27\xf5\x52\x09\xa7\xaa\xc2\x94\xb7\x9c\xd0\xb8\xaf\x65\xf5\x7a\x2e\x71\x0f\xd1\x7e\x39\xa1\x56\x33\x65\x7c\xab\x3f\x62\x84\x7d\xaf\x74\xd6\xcd\xf5\x84\xd9\xc6\x25\xbd\x9d\x99\x5e\xf6\x91\xac\xc2\x0d\xdf\x99\x4a\x72\xa0\x1d\x1c\x19\x71\xfe\xe1\x61\x39\xf1\x49\xe5\x83\xff\x5b\x72\x3b\xfb\xb1\x8a\x37\x9e\x9d\x43\xf6\x94\xdf\x8a\x9f\xbf\xad\x9d\x72\x8c\xfa\xf1\xb8\x2b\xab\x44\xd4\xb9\x6d\x0e\xd7\x2a\x9b\xa3\xef\x12\xbf\x68\x5f\xdf\x9d\xbe\xd7\x65\x63\xf9\x5e\xb5\x52\xa2\xac\xeb\xd6\xca\xd2\x83\x94\x68\x2e\xb7\x92\xb5\xc2\x12\x9d\x28\x55\x57\x8b\xf5\xee\x82\xe8\x50\x3d\x37\xd5\x8d\xb7\x39\x43\x81\xd2\xee\x3c\x88\xf8\x4c\x9c\xdf\x51\x37\x31\xd4\x89\x94\x06\x6f\x13\xb7\x1b\xa8\xe9\xc4\xbd\x9e\x78\x57\x25\x74\x55\xac\x10\x80\xf4\x36\x53\xd1\xb1\x3c\x00\x4d\xd7\xbb\xce\x14\xbc\x00\x96\x57\x19\x8a\x4e\xde\xfc\xc5\x41\x84\xdb\x32\xf2\x9f\x17\x01\x48\xfa\xce\x1c\x71\x25\x07\x20\xcb\x95\x25\xfd\x46\x34\x40\xd9\x22\xa7\x09\x63\x33\xc0\x23\x13\x01\x2e\x01\x63\xf8\x50\x6f\x29\xec\x2b\xc5\x4d\xec\x6c\x3e\x25\x39\xaf\xeb\x49\x20\x6f\xd6\x50\x78\xe5\x34\x81\x9b\x6c\xfc\xa8\x69\x18\x77\x1e\x7d\xbe\x92\xd5\xb4\xb9\xbc\x70\x55\x21\xcb\xda\xcd\xe8\xc9\xed\x1f\x16\x31\x2b\x51\xa6\x43\xb5\xe3\xb9\xc1\x6d\xd5\x66\x13\xeb\x5f\x82\xbd\xa4\xfb\xd4\x27\x11\x43\xf4\xee\xe7\xde\x59\x7f\xb9\xd2\xf9\xd0\x43\x6f\x44\xfc\x3d\x4f\x55\xbe\xd7\x85\xaf\xab\x7d\xe5\x05\x0f\xbc\x36\xa6\x2f\x3f\x3b\x90\x15\xee\x89\x9d\x7d\xd0\xa1\x93\x3c\xee\xf5\x7c\x81\xa7\x69\x32\xe1\xb0\xd7\xc1\x25\xbd\xda\xc6\x28\x61\xaf\xbf\x57\x0a\x2a\xd3\x82\xe6\xbd\xcb\xd7\xb8\x4a\x07\x76\x3d\x20\x39\x9e\xeb\x1b\x83\x39\x5f\x7d\xed\x3d\x00\xf1\x24\x53\xd8\xdb\xcb\x63\x0f\xea\x68\xca\x80\x57\x8f\xfb\x7b\x94\x6b\xf2\x3e\x8f\x41\xd7\x79\xf4\x68\x8c\x0e\x80\x9c\x2c\xd3\xfe\x63\x2d\x00\x7a\x62\x77\xfb\x8e\xeb\xfd\xe2\x20\xbc\x85\xef\x50\x9f\x2a\x05\x88\x0a\xb9\x9b\x73\x8e\x1e\x20\xd5\x81\x51\xe9\x92\x27\x40\x31\x37\xb3\xe8\x75\x6b\x80\x47\xeb\xac\x64\x74\x32\x00\xcd\x2b\x5c\x41\x1c\x64\x30\xf1\xd8\x58\x90\x5a\x92\x17\x0e\x77\xe7\x88\x36\x6a\x38\x12\x44\x7b\xe6\x65\x78\xed\xdf\xe3\x26\xba\x35\x54\x2d\x63\x53\x50\x4d\xad\x2c\x06\x63\x15\x13\x2b\x2e\x95\x1e\x0e\xa7\xbb\x69\xbe\x05\x65\x70\x87\xdb\x7c\xde\x18\x42\x25\x54\x54\xb8\xcf\x46\x0d\x27\x87\xa4\x3d\x25\x9b\x79\xd5\x65\x14\x88\x18\x38\x38\xd6\xf7\x80\x2f\xe4\xfe\xc7\xf9\x61\xa3\xac\x8f\x21\x25\xe3\x88\xfe\xc9\x94\xaa\x60\xae\x6f\x95\x3d\x2f\x63\x1c\x83\x9e\xcc\x4c\x77\xb2\x46\xac\x04\x4e\xce\xdf\x69\x75\x0d\x9d\x09\x70\x58\x5c\xa9\xdb\x0a\x56\xf7\xb3\x59\xb1\xa9\x92\x0c\x0c\xf7\xa5\x5c\xa3\x28\x53\xf7\x8f\xf5\x91\x5c\x8f\x2c\xf4\xf4\xd5\xf2\x8d\xda\x70\xcc\x13\xf2\xa6\xf7\x61\x40\x1e\xcd\xd8\xef\xd1\xe6\x63\x80\x12\x4b\xfe\xec\x86\xf6\x91\x45\xd3\xc6\xf7\xb9\x1a\xfa\x18\xa3\x27\x62\xa4\x00\xe4\xe9\x19\x6d\x8f\x45\x00\xe8\xbf\xbd\xa3\x48\x51\x0c\x60\x8f\xbb\xed\x78\x5c\x1d\xc0\x3f\xf9\x96\xef\x89\xf3\x00\x71\xac\x74\x72\xa7\x35\x01\xb2\xfa\x69\x97\xa8\xe6\x01\xca\x4a\x19\x98\xae\xbc\x00\x68\x6c\x60\xae\xa7\x45\x01\x74\x04\x70\x08\xb1\xbc\x03\xe8\xa1\xe2\x15\x15\xaa\x82\x3b\x6f\xac\x84\xff\x56\x05\x82\xf5\x3b\x6d\x49\x0f\xdb\x47\x5b\xee\xef\x8a\x14\x54\x23\xa2\xd1\x1a\x6f\x9f\x69\x94\x96\xd2\xad\x88\x3c\x27\x33\xbb\xf8\x14\xbe\x92\x37\xbe\xf6\x55\x1f\xbf\xfd\xac\xb3\x6c\xb3\x70\x76\x03\xdd\xc3\x9d\x76\xa8\xf9\xd0\x52\x44\x09\x21\xad\xfb\xc5\xed\xef\x1a\x19\xf3\x71\xcc\xc3\x2b\x1f\x1f\x25\xcd\xc4\xd8\x8d\x75\xbc\xcd\x8f\x11\x8d\x6e\xfd\x16\xd1\x7b\x24\x5c\x20\x26\x78\x86\xad\xcb\x3b\x98\x2f\xca\x61\xe1\x64\xb3\x4e\x40\x70\x84\xfa\xd2\x60\x4d\xa1\x7f\x49\x68\xe4\x8a\x69\x95\xbc\x8f\x79\x28\x76\x4d\xaf\x54\x96\xe4\x43\xf1\xe0\x0b\x8d\x44\xfc\x9d\x73\x98\xe4\x43\x71\x51\x09\x2e\x43\xe5\x27\xb1\x38\xd3\x06\x3d\x40\xdb\xc7\x99\x39\x1f\x0e\x08\x45\x6f\x45\x37\x00\x28\x9f\x64\x78\x75\x6c\x1a\xc0\x38\x8a\xfe\xdb\xf1\xbf\x00\x9c\x39\x69\x2e\x1d\xe3\x01\x08\xe1\xbc\x65\x7d\xe2\x15\x40\xf2\x1d\xea\x77\xff\x39\x3f\x0a\xbf\xdf\xa4\x3e\x59\x08\x50\x43\x43\x4f\x7f\x69\x0f\x40\x47\xe4\x5d\xb7\x6b\x9c\x00\x2f\x0c\x58\x1e\x30\x9e\x03\x18\xbc\xce\x2d\x22\xa8\x0b\xbe\x23\x37\xf8\x9b\x15\x52\x09\xd8\xc9\x1c\xd1\xbd\x66\xb9\x5b\x23\xdf\x04\xa4\x5b\x42\x4a\xd1\x61\xdf\x5b\x95\x22\x8b\xf9\x96\x9f\xfe\xd8\xa3\x4d\xd1\x7d\x61\xbc\x60\x20\xd8\x59\x67\xc2\xb5\x7b\xbd\x8a\xba\x20\x0e\xa1\x59\xa9\xd2\xcc\x57\xd7\xbc\x12\x7b\xff\x54\xfd\xa7\x17\xba\xdf\x96\x62\xac\xca\x0f\x7e\xd4\x1c\x46\x46\x4c\x66\x59\x4d\xbc\x78\x5d\x14\xf4\x3c\xeb\xc7\xf7\x86\x67\xa3\x01\x6e\xe9\xf6\x33\x73\x8f\x37\x7c\x5f\x27\xdf\x59\x98\x69\x94\xf7\xae\x4d\xe8\x5e\x16\xa9\x56\xf4\xec\x88\x9b\x5f\xe5\xac\xe8\x72\x37\x8e\x3f\xbd\xd6\x50\x72\xca\x35\x32\x4e\x61\xe3\x74\xbe\x9a\xf3\x42\x4c\x32\x22\x22\x13\xe1\x14\x10\x1d\x89\xbc\x9f\x56\xe4\xf8\x3c\x92\x03\x15\x9b\xe4\x62\x97\x15\xf9\x0a\x8d\x8e\x7e\x60\xb7\x14\x6e\x88\x51\x8b\x7c\x09\xa0\x91\x45\xb7\x7c\xd4\xff\x57\xfe\xef\xae\x72\x6d\x88\xfc\xd6\x2f\x0e\x22\xdd\xea\xa6\xf6\x89\x5c\x80\xb2\x9d\xef\xd8\x1a\x71\x37\x68\x4e\x49\x00\x74\x5f\xbd\xd3\x40\xdd\x01\xf0\xee\x1d\x63\xf8\x2d\x35\x80\x31\x0e\x56\x04\xdb\x5d\x58\x99\x63\xe2\x39\x29\x31\x4b\xf4\x5d\x17\x15\x7c\xa8\xff\x01\x6f\x80\xcd\x11\x37\xf2\x37\x46\x27\xaf\xbd\x95\xb7\x2a\x92\x5a\xfe\xf0\xe3\x9c\x16\xe6\xe9\xd2\xc4\xdf\x83\x44\x07\xc2\xd8\x9d\x56\xca\xc7\xec\x69\x02\x8b\xc5\x99\xf2\x4f\x57\x1e\x6f\xcf\x75\x84\x8f\xbd\x59\x7c\x55\x38\x79\x39\xc0\xf2\x29\xf5\x47\xc2\xd0\x3b\xdf\xc2\xda\xac\xaf\x05\x7d\x44\x5f\xca\x32\xb6\xe9\x93\xdd\x38\x4f\xc3\xc2\xe5\xb9\xca\xb6\x93\x1e\x5c\xb9\x47\x16\x85\x1a\x38\xdc\x8e\x64\xdd\x5b\x7e\xf3\x30\xcf\x25\x20\x23\x63\xd5\xb8\xe2\x80\xd3\xbb\xfb\x14\xeb\x42\x45\x47\x1d\x93\x92\x17\x37\xe6\x72\x58\xec\xb1\x49\xbc\x48\xb1\xfb\xef\xed\xfa\x13\xa3\x51\x54\x29\x7a\xb6\xf6\x09\xe7\xd0\x57\xe2\x0b\x6d\x0f\xc6\x9e\x46\xe3\xa3\x7d\x6c\x74\x63\x74\x31\x4e\x91\xe7\x01\x34\xe2\x6f\x5b\x90\xc7\xfd\xda\x07\x9f\x74\xea\xe6\x23\x9f\x01\xa2\xaf\xef\x29\xf8\xcf\xba\x73\x77\x78\x88\x47\x0c\x3f\xf3\xcd\xae\xa9\xdf\xf3\xae\x51\xa9\xdb\xcf\x2e\xeb\x00\xcc\x8d\x31\xd7\x32\xd0\x03\x20\xcf\x72\xd3\x8b\x0b\x13\xcb\xb6\x2f\x08\xe4\xe9\x7e\xc3\x8b\x61\xbd\xc4\xa3\x03\xd8\xd1\x5d\xeb\x07\xe5\x99\x0a\x3d\x67\x50\xb3\x06\xda\xf2\x8f\x6b\x7b\x1e\x8d\xbd\x72\xcc\x7e\x57\x5c\x2e\xfe\x5e\x2c\x4a\x78\x6c\x26\xaa\xa9\x1f\xd5\xab\x3f\x89\xf1\x41\x0d\x0b\xbe\x37\x18\x61\x77\x2d\x19\x92\x1c\x41\xbc\x9b\x76\xb6\xe9\x15\x9e\xba\xf3\xe2\x94\x93\x54\x3b\xcd\xcc\xa9\xce\x0e\xa7\xb9\x1a\x97\xf9\x7b\x2d\xb1\x8e\xbe\x0f\xee\x2e\xe9\xd6\x9e\xb5\x1f\x28\xd3\x5f\xf1\xa9\x54\xb3\xbf\x59\x38\xbc\x26\x51\x82\xb4\x3b\x9c\x5b\xba\x41\x9f\x97\x6b\x83\xce\x91\x47\x30\x67\x0d\x59\xcf\x65\xd1\x20\xb5\xef\x73\x93\x7c\x28\x96\xb7\x52\x9f\x60\xf6\x44\xdf\x30\x47\xa5\x06\x60\xf2\xc2\x97\xcd\x86\x53\xc2\xb0\x72\x21\x37\x01\x74\x2c\x6f\x1c\x3a\x34\x08\x60\x8b\xa0\x7e\x72\x58\xec\x97\x07\x81\x94\xfb\x16\xef\xe4\xbc\x4d\x96\x7b\x5a\xfe\x2f\xe7\x50\xf8\xf9\xf7\xe7\x57\x3b\xef\xb9\xf7\xef\x70\x00\x21\xf4\xd9\x57\xde\xef\xfa\x30\x5c\xf0\xc3\x82\x74\x06\x0e\x5b\xdf\x31\x48\x09\x9a\x60\xd1\x59\xf9\x8d\x56\x45\xa9\x1c\x8d\x81\xe7\x4b\x4c\x7a\xcf\xeb\x13\xea\xe6\x7f\xe8\x3a\xba\x3c\xab\x4f\xbb\x3b\x5e\x1d\x71\xf8\x9d\x49\xb0\xc9\x68\x71\xc3\xf4\x87\x2e\xe7\xc1\x2f\xe9\x23\x94\x83\x2f\x6c\x9e\x4f\x16\x4c\x98\xbc\x8a\xb4\xec\x19\x7d\xfc\x5d\xab\xfb\xb1\xa5\x75\x7f\xe4\x1c\x47\x6b\xbb\xe5\xc3\xee\xc8\xc5\xe3\xf5\x11\x96\x6b\xad\x06\xcb\x89\x0f\x15\xac\xf8\xea\xe8\x56\x4d\xca\x39\xad\x6e\x3e\xbc\xbe\xf6\xa9\xa8\x9b\xc4\x81\x58\xd4\x96\x9a\x22\x42\x33\xb9\xcd\x06\x8b\x3b\x51\x7f\xa7\x1c\x36\x2b\xca\xaf\x41\x11\xe3\xdb\xcc\xe8\x72\xde\xa0\x87\xa3\x3b\x48\xfc\x87\x89\x76\xc6\x04\xd6\x26\x58\x16\xc0\xe8\x34\xb5\xc9\xc1\x1e\x00\x17\xa6\xcb\xd5\x07\x43\xfe\x71\x3f\x78\xfe\x9c\x95\x3b\x3c\xc0\xae\x17\x64\xe9\xe7\x9c\xda\xf1\x43\xe0\x3a\x49\xef\x79\x6f\xb5\x9c\xfd\x04\x40\x2c\xe3\xcc\x12\xcc\xdd\x1c\xc1\x4f\x09\x9a\x19\x08\xcd\xdd\xdd\x94\x93\x4c\xf4\x79\xf8\x9e\x88\x0a\x53\x0e\x4b\x9a\xed\xf8\xb1\x46\x67\x68\x5a\x8e\x2f\xc4\x2c\x2a\x3a\xf1\x34\x47\xc7\x31\xcc\x58\x04\xe5\x76\x87\x93\x3c\x18\xd6\xe5\x53\xc4\xf1\xd0\x97\x26\x66\x1c\x3f\x1c\xbf\x7b\x76\x5f\x20\x71\x10\x86\x5d\x93\x07\xe7\xe3\x1a\xa7\x8c\xd3\x07\xae\x2f\xa5\x57\x1f\x34\xd6\xef\xed\x5e\x3d\x54\x6e\x61\x2c\xdb\x15\xb7\xb6\x5a\x58\x60\x4c\xd3\xf6\x6a\x83\x35\x57\xfb\x5f\x1e\x90\xfa\xaa\x7c\x54\x69\xc2\x7b\xa3\xfb\xe5\x05\xe8\x90\x98\x09\xc3\xe8\x52\x0f\x8c\x6b\xc4\x55\x83\x4f\xc5\xfb\xb0\x9c\x21\x7b\x0d\x9a\xf2\xd3\xb1\x5f\x02\x3c\x00\x4c\x68\x8e\x3e\xfd\xcf\x3a\x5c\x9b\xf6\x0c\xed\xf9\x87\x17\x24\xf7\xcd\x4f\x2e\x88\xe4\x41\x20\x5d\x07\x5f\xca\x7f\x4e\x04\xdd\x9f\xf9\xef\xad\xa7\x67\x67\x70\x67\x88\x16\x5c\x56\x22\xbd\xb3\xb1\xdb\x3a\x82\x08\x9d\xd6\xe1\xb3\xb8\x1e\xa9\xaf\x2e\x34\xdd\x87\x30\x4b\xaa\x07\xc2\x27\x1f\x3e\x41\xb8\x19\x9f\xc8\x81\xf4\xd3\x6b\x03\x0e\x96\xe5\x3a\x61\xe9\xcb\x7b\xfc\xd2\xeb\x27\xbc\x82\x16\x4d\xb3\x7c\x9a\xb3\xac\x3b\xe7\x19\x7a\x33\xda\x43\x0d\xc4\xe7\x57\xe6\xd8\x5b\xdc\x75\xe9\x96\x94\x17\xba\xea\x4c\x48\x1e\x0c\x6d\xe4\xd4\xb7\x95\xa8\xf2\x30\xdd\x73\xc3\x4f\xd7\xcc\x8b\x44\x75\xa7\xfa\x4f\xaf\x13\x73\xb9\xf4\x82\x7a\x02\x37\x88\x99\xef\xf4\x64\x9f\xec\x43\xca\xa5\xbe\xd6\xcb\x6c\x55\x45\x79\x24\xee\xd7\xd3\x6e\x74\x40\xeb\xc4\x10\xf5\xce\xd4\xd5\xa0\x21\x72\x46\xb7\xa2\x9a\x0a\x33\x1a\x1a\xab\xeb\x5c\x49\x85\xcd\x0a\x74\xd2\x99\x28\x9b\xd8\xd4\xf6\xdd\x0f\x60\x79\xe5\xe7\x3a\x02\xaf\xfe\x9c\xa4\xdc\xb7\x7c\xea\xf7\xeb\x80\x94\x7b\xfe\xfe\xdd\xef\x6e\xfe\x19\x01\x70\xe7\xed\x35\xf6\x39\x2a\x62\x17\x27\xbf\xc0\xc1\x8f\xc1\x84\x53\x42\x94\x6a\x9c\xbd\xe2\xf8\x63\xd2\x16\xd6\x57\x1a\x6e\x6d\x86\xaa\x45\xfb\x73\x17\x64\xa0\x97\x8d\xa2\xe3\xcf\xc6\xfe\x8d\x3c\xea\xb0\x9e\xfd\x36\x50\x7f\x3d\xd9\xfb\x68\x29\xa7\x6b\xc0\x5a\x65\x2a\xb2\x7c\xcb\x62\x72\xf5\x79\xf3\xc7\x07\x9f\xf4\x4a\x56\xaa\xbf\xd4\x54\x85\x6b\xf4\xad\xb6\xaf\x68\x96\x2b\xa8\x93\xaf\x9f\x5a\xed\x2d\x7a\xa2\x66\xb0\x9e\xb5\xa6\x52\x30\xa9\x76\x69\xce\x71\x43\x27\xeb\x2e\xc9\x7f\xa1\xe1\xfe\x3e\x0a\x99\x97\xac\xa6\x29\xf7\xfa\x1e\xca\x24\x41\x4d\xa3\xe0\x85\x14\xda\x3f\x5a\x54\x23\xe0\x69\x10\x26\x38\x4c\x53\x63\xa2\x53\x1b\x33\x10\x32\xaf\xe1\xd3\xaa\x81\x7d\xea\xff\x4c\xa3\xa8\x31\x62\x93\xcb\xf7\xb4\xe6\xc1\x5a\xd6\xcd\x52\xaf\x22\x00\x7b\xea\x9f\xeb\x21\xf1\x30\x39\x01\x7b\xfe\xab\x0f\x63\x72\x61\xcf\xff\x17\x0f\xc2\xfc\x61\x00\xfa\x37\xd4\xcf\x47\x06\x88\x38\x8e\x77\x3c\xd5\x2f\x97\x08\x0d\x82\x4b\xf2\x8f\x9b\xc7\xf0\xdd\xb2\x1c\xa6\xf8\x72\xcf\x2d\x71\x35\x7b\xe7\xfb\xf7\xe9\x37\x15\x8c\x2e\x04\x5d\x0a\x55\x43\x7f\xb7\x6f\x4c\xe0\xf0\xda\x87\x2a\xf7\x5a\x49\x63\x73\x6c\x43\x8e\xc4\x61\x32\xd2\x2d\xc4\x11\x2b\x15\x07\xb3\x1f\xe9\xbd\x47\x18\xf4\x76\xe5\x24\xaa\x5f\x59\xc7\x2c\x2c\xe7\x4f\xef\xf2\x0f\xb6\xc8\x7c\x44\x58\x6a\x9f\x52\x14\x32\x0a\x61\x9f\x46\xab\xa4\xb8\xc2\x86\xcc\x49\x8c\x57\xa6\xff\xd6\x85\xaa\x8d\x35\x57\xf6\x18\xc5\xa1\x8b\x22\x45\x55\x86\xdf\xef\xc3\x9c\x0e\x0f\x53\x25\x7b\x5d\x89\x99\x0d\x8e\x56\x39\xf0\x62\x06\xbb\xe6\xdb\xa8\x5a\xff\x54\x0e\xbb\xe5\x3b\xae\xa2\xdb\xf9\x68\x73\xc5\x7d\x4d\x85\xae\x2d\x08\x17\xe0\x22\x04\xe0\x15\xf3\x73\x5d\x24\x1f\x46\x45\xf5\xcf\xd9\xb5\xf2\x7b\xee\xb9\x21\xf7\xcf\xf5\x6f\xa5\xec\xe4\x3e\x3b\xdf\xf7\x8e\xea\x03\xdc\x29\xbf\xee\xfb\xba\x05\xf8\x38\x24\x39\xec\x3b\x4a\x08\x68\x61\x3a\x59\x4e\x92\x07\x22\xe7\x0b\xde\x54\x6d\xcd\x0a\x15\x47\x86\x6b\x31\x4a\xf2\x3c\x10\x40\xb9\x59\x69\x73\x22\x20\xd0\xcd\x1b\x4b\xef\x7e\x39\x32\xc1\x4e\x11\x33\x11\x79\x3a\xfa\x8e\x29\x0a\x43\x9f\xbf\x3f\x4e\x54\x4f\x01\xad\xd4\xda\x94\x68\xac\xfe\x06\xf5\xfc\x83\x5c\x52\x8e\xd2\x3e\x94\xd4\xba\x76\x12\x46\x3e\x02\xdd\x85\xea\x89\x7e\x28\xcf\x8b\x46\xa2\xb6\xa3\x32\xe5\x8a\x30\x06\x68\x87\x08\x6d\x39\x5e\x04\x06\x73\x35\x74\xbf\xfc\xbd\x39\x2b\x4c\x5b\x50\x9c\x7c\xc7\x44\x05\x36\xc0\xef\x95\x82\xe4\xe7\x1a\xec\xb8\xef\x5e\x12\xf7\xa0\xa0\xf7\x86\x0a\x77\xc6\x75\x44\xc1\xaf\x8f\x1e\xe7\xe4\x5c\xa5\x70\xf6\x39\x6c\xed\xb7\x6f\xf9\x75\x2e\x92\x9e\x8f\x4d\x3b\xcf\x89\x81\x6f\xff\x8d\x03\xf9\x93\x83\xf9\x54\xfd\x73\x3e\xef\xdd\xf9\x0e\x9e\x06\x54\x39\xcd\xd9\x45\x6a\xaf\x12\xc5\x45\x8e\x4b\xc6\x16\x62\x08\xee\x32\x95\xaa\x3c\xc9\xab\xdb\x8a\xea\x8a\x46\x3d\xe1\xf6\x78\x55\x03\x2b\x1b\x47\x8f\xa6\x2d\x25\xeb\xc3\x2e\xeb\x8e\x82\xb8\x50\x97\x29\xaf\x59\x6b\x1d\xdc\x91\xe0\x26\x3f\xba\x7f\xf1\x0f\xdc\x58\xde\x9e\x1f\x61\xe5\x4a\x87\xb0\x47\xc6\x90\x61\xd2\xb2\x4b\x18\x22\xaa\x32\x94\x8c\xc4\x3f\x48\xbf\xdd\x14\xc1\x3a\xf8\xea\x91\xf8\x07\xc9\x35\xec\x8d\xcd\x97\xae\x27\xa4\xbe\xad\x3c\xdc\x1c\x75\x65\x93\x96\x99\x99\xc0\xb1\x3b\x0b\x4a\xbf\xfb\x2a\x8b\x8b\x75\x34\x91\x7e\x31\xf2\x68\xeb\x6f\x3b\x3d\x12\xf7\x20\xfd\xfd\x9d\xed\x56\x8d\xe5\xb3\x5f\xcf\xc7\x8a\xb7\x3b\x1c\x48\xc7\xcf\x49\xca\x3d\x7f\xe7\xa1\x48\xf9\xf7\xe8\x8e\xf7\xe0\xa5\xed\x8e\x07\x22\x0b\x80\xfe\xfa\xe5\x6d\x92\x07\xa2\xa4\x17\xf6\x0b\x5a\xf0\x49\x66\xb4\x11\xef\x49\x1b\xc8\x9c\x88\x9e\x23\x5c\x55\x7b\xa2\xa5\xe9\xcf\xbd\x7d\xcf\xa0\xc9\x24\xe6\x5f\xfc\x03\xf7\x56\xa5\x7f\xbc\x93\xae\xf1\x99\xad\x13\xf1\x99\x6e\x6d\x3a\x5d\x38\x44\xfe\x07\xf7\xa3\xea\x56\xb8\xf2\xfa\x9b\x1e\xb2\x4a\x37\x70\xca\x7d\x02\x9e\xea\x72\x37\x71\x87\xbe\x52\x78\x7e\x97\xde\xbb\x39\x8f\x6e\xf3\x54\xd9\xf5\x3e\xcc\xe2\xb6\x71\xa2\x8e\x85\x24\xfe\x41\x7c\x69\x2b\x14\x37\x64\x5b\x22\xce\x8b\xf1\xd9\xd2\xb7\x1c\x14\x47\x2f\x31\x6d\x45\x59\xd2\x8a\xf7\xfe\x18\xdb\x42\x9a\x31\x8a\x3f\xfe\xea\x88\x97\x37\x4e\x96\xe0\x19\xed\xc2\x1b\x1a\xf3\x02\xe4\xcb\xfc\x77\x0e\xe4\xf7\xef\xdf\xff\x5f\x1e\x88\xfa\xc7\x00\xf4\xa3\x97\x8d\xca\x5a\x61\x8e\x8d\x8b\x8e\x2a\x8b\x03\x24\x04\xeb\x38\x51\xf1\x74\xc4\x1e\xa9\x38\xe1\xde\x90\x2a\xc2\x1b\xd5\x4f\x4a\x9a\x9e\xf3\x84\xcb\x7a\xe5\x5a\xc3\xf6\x6e\xdb\xe6\xe6\x49\x46\x41\x56\xe6\xdb\x64\xf6\xd3\x66\x2a\x66\x48\xfc\x43\xaf\xab\x96\xfd\x86\x4c\xf8\xd2\xf0\xdb\x96\x38\xed\x68\xbc\x66\xfa\x29\x1b\x36\x12\xff\xa0\xe8\x8f\x27\x6b\xab\xb6\xe5\x92\x53\xdf\x0a\x79\x53\xe8\xc0\x25\xe5\xb1\x55\x36\xc5\x6c\x8b\x92\xb8\xbb\x95\x81\xaa\xb0\x15\x17\x3f\xbd\xb5\xb1\x25\x61\x25\x24\xfa\x10\x9f\x87\xdf\x63\x92\xfc\x3f\xbd\x0f\xf1\x28\x0a\x7c\xa3\xde\x8c\xe8\xa1\x65\x0d\x7c\xa7\xde\xaa\xf0\xf3\x99\x67\xdb\x56\x1a\x73\xff\xe0\x40\x76\x7c\x20\x33\x98\xff\x76\x0e\x92\xf2\xef\x81\x9d\xef\xfc\x3b\x77\xf2\xfe\x06\x5d\x80\xcb\xb2\xe4\x23\xa4\xfc\x3b\x7b\x12\x80\xed\x01\x6d\x55\xd2\x75\x48\x17\xd0\xbb\x57\x1e\x21\x05\x7f\x4b\xe5\xf0\xb7\xfb\x6e\x11\xc3\x95\xef\x49\x5c\x75\x9a\x27\x6c\xe9\xd8\x29\x9c\x20\xf1\x0f\x66\x4a\x84\x2b\x36\x71\x5a\x3d\x46\xbd\xdb\xe0\x6a\xae\x63\xaa\x57\xb6\x9d\x1d\xcc\x67\x50\xab\x25\xb0\x2d\x97\x98\x69\x1c\xb6\xcb\x3f\xc4\xe0\x37\xab\x1d\x4d\x1d\x65\x11\xf8\xfa\x27\x39\x66\x40\xe2\x1f\xc4\xad\xf0\xdf\xa7\xa8\x8c\xf5\xc5\xf8\xf0\xd5\xeb\xd7\x4d\x5c\x45\xfa\xb7\xff\xc6\xdb\x18\x52\xfe\xcb\xfb\x20\x49\xf8\x6b\xdb\x47\xdd\x54\xd0\x90\xa0\xba\xfd\x41\x85\x4c\x80\x71\xab\x86\xc0\x2b\xff\x54\xe0\x33\xd2\x8c\x70\x42\x31\xff\xd7\x73\x71\x8c\xf2\xb7\x73\x80\x76\xc7\x07\x93\xfe\x7b\xfe\xdd\xcd\xb8\x93\x7f\x37\xfe\x9c\x85\x8e\x3b\x1e\x88\x6b\x00\x74\x8f\xce\x3d\x4e\x61\x00\x60\x7b\x76\x53\x28\x6a\x02\x86\xf9\x32\xef\x6c\x06\xc4\x43\xa0\xb8\x2e\x1b\xad\xdb\x37\x38\xa2\x80\xe6\x37\xb2\xe3\x20\x6a\x68\x3f\x96\xfa\x60\x8a\x25\xe0\x8d\x9e\xca\x17\x1b\x1f\x20\xee\x37\xab\x92\x97\xd5\x4f\x23\xd4\x38\x5f\x55\xb9\xa3\xf3\x17\x21\xd4\xb7\x55\xcd\x46\x7d\x81\xc0\x19\x43\xa9\xd9\xab\x22\x4f\x38\x90\x5e\xaf\x9d\x45\xe2\x1f\x64\x43\xb7\x3b\xea\xb5\x74\xe3\xa5\x86\xb6\x53\x9e\x60\xf4\xac\x25\xe8\xb7\xfd\x07\xc6\xf4\x6c\xc4\x5c\xb6\x75\xc6\x41\x9f\x4c\x84\x79\x3b\x62\x35\x52\x27\x55\x28\x70\x7b\x0d\x6f\xa2\x71\xeb\x5f\xde\x87\x3f\xb8\x87\x5f\xfc\xc3\xfb\xcb\x3b\xbf\x8b\x88\xff\xdc\x87\x85\x1d\xef\xc7\xc7\xc9\xdf\xcf\xc1\xfa\x9d\x59\x92\xff\x73\xe6\x39\x00\x5c\xbc\x74\xe8\x64\x6a\x3c\xc0\xed\x95\x33\x17\xa2\x97\x00\xee\x2d\x5d\xd1\x0b\x2e\x06\xe0\x09\xa3\xb5\xf4\x74\x86\x1e\x51\x67\x86\x1f\x8e\xfa\xc0\xa3\x80\xe6\xee\xb7\x98\x00\x32\x75\x2e\x7e\x0b\xe3\x4c\xa2\xa3\x01\x99\xc4\x1a\x89\x7f\xd0\xa5\x25\xca\xdb\x5d\x90\xce\xd2\xe2\x27\x1e\xf1\x74\x97\x4f\x54\x8b\x25\xe0\x83\x23\x15\x8c\x95\xaf\x10\x46\xe2\x29\x94\xfe\x96\xd7\x24\x7c\xcc\x54\x53\xec\x97\xd1\x21\x54\x95\x49\x2a\x2b\x4a\x7d\x20\x28\xd6\x7f\x50\xff\x4b\x3c\x97\x60\xd7\xe5\xa5\x7a\x44\xa4\x96\x10\xd7\x7f\x5d\xe9\x87\xf0\x25\x82\xf3\xa8\xa1\xb2\xbf\xd0\x5f\x04\xdd\xf9\x30\x65\x0c\x89\x7f\xf8\x5f\xde\x87\x5f\xb9\xff\xef\xf7\xc1\x1a\xff\xef\xe7\xe0\x8b\xcd\x9f\xb3\x59\x6f\xc7\x83\x91\xf2\xbb\x07\x23\xfa\xc1\xcf\xe9\x1f\xf8\x73\x86\xf2\x00\x30\xeb\x5f\x58\xf4\x09\x06\xe0\x49\xbd\xb1\xe4\x6c\x0b\x53\xa2\xbc\xf4\x83\xd6\x9a\xd0\x2e\xad\xc7\x98\x60\xb2\x02\xfc\x6a\x37\xb9\x4f\xea\x77\x13\xb7\x75\xf6\xf2\x3f\xd0\x19\x21\x4e\x18\x15\x08\x9d\xd3\x8c\x23\x8e\x58\xd9\x0a\x2d\x6a\x38\x11\x93\x9d\x0d\xc4\x5b\x94\xe7\x89\x65\x3e\x79\x62\x69\x8a\x3d\x44\xbb\x70\x29\xc9\x6d\x39\x4f\xa2\x6c\x72\x8c\x74\x81\x8c\x24\xf1\x62\x6e\x80\xec\x24\x89\x7f\x10\x9b\x22\x9e\xa8\x2f\x91\xb5\x17\xf9\x42\xc0\x3c\x39\x27\xa7\x2c\xd4\x4b\xd8\xe8\xaf\x97\xdd\x14\x54\x24\xac\x7f\x6a\x93\x4d\xe0\x77\x26\x9e\x9d\x8e\x97\xbe\xc7\x67\x4c\xe4\x5c\xcf\x97\x8c\xe2\xbb\x41\x94\x23\x4c\x48\x54\x93\xf8\x0f\x6e\x67\x22\x92\x98\x20\x40\xfe\xe7\x39\x30\xe1\xfa\xc7\x39\x78\xec\x0f\x0e\x68\x67\x9f\xe2\x39\x7e\xce\xa0\xba\x9d\x59\x0a\x70\x25\xe3\x70\x9a\xd7\x4d\x00\x3a\xc4\x49\x19\xe7\x6c\x00\x4e\xc1\xcb\xf2\x76\x17\x01\x2f\x12\x76\x2b\xd9\xe2\x1a\xf4\x48\x7f\x66\x70\x37\x3a\x0e\x91\x4a\x03\x2c\x9d\xba\x2c\x20\xae\xc9\xcb\xb9\xa1\x6d\x0d\x54\xfa\xb3\x7c\xfb\x34\x4e\xc3\x55\x33\x32\xde\x3c\x95\x50\xa0\x74\xe0\xe2\xe7\x50\x74\x02\x0a\x0f\x1a\xfe\x44\x85\xc3\xc4\x8f\x41\x2c\xc2\xf7\x65\xa5\x89\x6f\xa2\xde\x88\x1c\x94\x22\x27\xf6\xa7\x4c\x0a\x7f\x97\xbc\x4a\x8c\xc8\x63\x11\xef\x10\xfb\x9b\x98\x57\xae\x20\xf6\x97\xb0\x1b\xb1\xac\x8e\x5c\xf4\x98\x10\x0b\x31\xb4\xa3\x59\x2c\x5f\x60\x93\x68\xf1\x92\x59\x7c\x8c\xbf\x84\xa8\x31\xb4\x20\x21\xc3\x6b\x4d\x4c\x9f\x08\x15\x09\xe6\xc9\x23\x16\x2d\xfc\x10\x9e\xe2\x46\x12\x7b\xd0\x71\x42\x3c\x5c\x9f\xe1\x24\xb1\x9e\x8f\x03\xe0\x3a\x35\x7f\x04\x19\x2f\xc0\x3d\x63\xde\xbd\xe4\x25\x00\xbc\xbc\x7c\xd6\x27\x4e\x00\x88\x67\x08\xf2\x9c\x11\x01\x50\xa4\x10\x79\x74\xe9\x26\x80\x96\xb8\xe4\xc1\x1b\x2b\x00\x06\xbe\x72\x9d\x0c\x8a\x00\x66\x37\x95\x62\xd9\xd3\x00\xcc\x5b\xd5\xb7\x05\x72\xa1\xd8\xfc\x8d\xde\x23\xe9\x12\xe2\x92\xd9\x94\x99\x9f\x26\x0d\x51\xdf\x6c\xc8\xfe\xba\x91\x3f\x21\xc8\xf4\x8a\xef\x15\xbb\xf0\xed\x0e\xc3\x91\x18\x4a\x77\xd5\xed\x9b\x7a\x77\x33\x69\x7c\x30\x78\x67\xed\x73\x65\xc4\xa0\xf7\xbb\x1c\x88\x83\x6a\xf5\x93\x33\x91\x43\xb8\x61\xe5\xbf\xdf\xcc\xc6\x7a\xef\x72\x20\x20\x93\xbc\xee\x98\x48\x85\x0b\x91\x56\x41\x9d\x8a\x4d\xdd\x32\x97\xdc\x44\x6b\x86\x9b\x90\x3c\x20\x28\x1e\x49\x27\x4c\x55\xc0\x87\xc5\x3e\xa9\xf7\x98\xfe\x80\xf1\xef\xb7\xa5\x1a\xb1\xdb\x5e\x5e\x23\x6d\x32\xc6\x9b\x57\xbd\xf4\xde\xdd\x91\xf3\xdc\x64\xf2\xea\xec\xa7\x91\x43\x6d\x7a\x7a\xf2\xf7\x8e\xca\xbd\xc6\xf1\xb8\x04\x3f\x79\xa1\x20\x89\x93\x77\xf1\xed\xe8\x51\xe0\xc7\x0d\x3a\x5e\x04\xa0\xb1\xe1\xfd\x72\xc0\x05\x80\xa9\x9f\xe7\xf0\x91\x56\x00\x9e\x24\xee\xde\xe3\xef\x00\x24\xaa\x05\x66\xcf\x18\x01\xa8\x9c\x16\x36\xbd\xc4\x0a\xa0\x47\x29\x6e\x7b\x03\x00\x8c\xa7\x64\x2f\x32\xb0\x01\x98\x86\x2b\x34\xb3\xb4\x01\x58\x7d\x53\x57\x15\x44\x43\x98\x0d\xbd\xde\x45\xb9\x64\x22\xca\xf2\x82\xe9\x59\x8d\x3e\xe2\x75\x4b\x13\x9b\x75\xd3\x08\x82\xbe\xd9\x53\xef\xbd\x0e\x7f\x6f\x47\x19\x07\x46\x2e\x7a\x8a\xe2\x2b\x0c\xe4\xd2\x73\x02\x35\xb7\x1a\x74\xc6\xca\x7d\x22\x7a\x70\x8b\x9a\x3d\x4d\xd1\xb1\x28\xdc\x9c\x9a\xe2\xd3\xfc\xd8\x78\x9c\xa5\x72\xce\x5b\xcf\x04\x89\x4d\x6b\x05\xd9\x6f\x8e\xa9\x2e\xbb\x5e\x14\x52\x1f\xcc\x8e\x07\x84\xc4\xc3\xac\x9e\x97\x96\x45\xaf\x86\x2a\xfd\x28\x90\x69\xc5\x70\x84\xc4\xfd\xc9\xc1\xf4\x1b\x29\xa4\x63\x23\xfc\xcf\x3e\x1f\x55\x9c\xc6\x22\x7d\x2f\x3d\xbd\xa2\x64\xb3\xc9\xe3\x5d\xdc\x8e\x57\xca\xd8\xfc\xee\xfe\xac\x49\x4a\x99\x09\x67\xea\x52\x0a\x40\x7b\x81\x87\xeb\x40\x2c\x00\x9b\x27\xaf\xd0\xb1\x7b\xff\xe8\x89\x79\xcc\xe7\x70\x7a\xf9\x57\x4f\x8c\x41\xb8\xd8\xfa\xcd\xfb\x00\x66\x4f\xa4\xf2\xee\xd4\x01\x58\xd3\xca\x25\xb0\x32\x03\xd8\x4d\xa9\x46\x09\x1d\x85\x47\x76\xaf\xb5\x99\xa5\xf3\x88\xb3\x36\xce\xc6\x5b\x5a\x27\x08\x58\x6b\x4a\xeb\x4a\xf3\x26\x02\xa5\xe5\x35\x8f\x19\x67\xe9\x6d\x1a\xb3\xab\xe1\xd7\x7d\x50\xf8\x0b\x46\x21\xf7\x2f\x84\x62\xb6\x2e\xe8\x6d\x96\xa6\xc7\xde\xc1\xc9\x6b\xe7\x34\xbc\x4e\xba\xb2\x39\xa3\xfe\xbe\x7b\x3d\xe5\xca\x2e\x07\xd2\xa2\x78\xf5\x1b\x2e\xc3\x09\x1b\x20\xc7\xbd\xc1\x96\x31\xb4\x59\x26\x93\x81\x18\x49\xbe\x4c\xda\x0f\xb4\x99\xf4\x63\x94\x4e\x4c\xfa\x3c\xbb\xac\x2a\xfa\x46\xe4\xe7\x09\x4e\xb9\x67\xe8\xaf\x61\x84\x4f\x85\x72\x5b\x98\x57\x41\x91\x6f\xc6\x15\x43\x31\x1d\xc1\xf7\x49\x7d\x38\xdd\x0f\x95\x16\xb1\x8f\xfd\xb2\xdb\x63\x55\xa4\x37\xa9\x7d\x6a\x1a\xed\x55\xda\x37\x3f\x79\x44\xff\xe2\x40\x6e\xd3\x71\xbc\x3c\x80\xfd\x95\xff\x0b\x99\xf0\xd0\x9e\x08\xfb\x07\x07\xe1\x24\xf0\xf1\xa2\x30\x80\xd1\x39\xd1\x5b\x37\xac\x00\x2c\x35\x24\xc3\xef\xd4\x00\x38\xa8\xc8\x7e\x64\xe7\x05\x70\x3a\xa1\xcc\x2b\x90\x0f\x8d\x8e\x73\x9a\xf1\xd2\x8a\xc4\x71\xa7\xb3\x86\xc5\xda\xb7\x08\x1f\xec\xa4\xad\x54\x2c\x1f\x6f\x77\xda\x38\xbb\x1e\x75\xcb\xc4\xe7\x5b\xb4\x85\xaa\x04\x56\x6e\x79\x99\xde\x48\xf9\x11\x35\x8e\xbb\x63\x78\xaa\xd4\x23\xd9\x79\x53\x5d\x57\xb7\xf1\x62\xfa\x19\x6c\x96\xe6\xfb\x67\xa9\x59\x45\xbb\xfd\x38\x24\x0e\xe4\x4f\x2f\x8a\xab\xcc\x24\x22\x29\x45\x6e\x69\x4d\xce\x0a\xe9\x99\x68\xf2\x4d\x4a\x3e\x0b\xe5\x19\x5b\xfc\x49\x46\x89\x0f\x15\x10\xa7\x31\x70\x40\x99\x19\x6d\x13\xe5\xf9\xd2\x40\x45\x10\xbd\x19\x41\xfd\x94\x55\xe5\x2d\x66\x25\xd8\xa9\xe3\x82\xda\x5d\x2c\x79\x30\x75\x73\x95\xda\x19\xec\x88\x5f\x67\xcd\x8a\xba\xf4\xa6\x96\xcf\xb1\xaa\x7e\x75\xd3\xcd\x75\x0f\x37\x00\xba\xb7\x9c\x8a\x07\xeb\x7f\xed\x83\x58\x04\x67\xe9\x89\xb3\x00\x8a\x1a\xbc\x3a\x67\xa2\x00\x74\x7a\x04\x30\x97\x85\x7f\xf5\xc4\xd8\x74\x89\x9d\xa4\xa3\x01\x70\x39\x2e\x73\x94\x6d\x0c\xc0\x6d\x59\x91\x5e\x20\x13\xea\x3d\xdf\xa9\x79\xc9\x5c\x26\x7e\x77\x13\xd0\xcf\xd2\xbe\x42\x78\xe7\x54\x66\xc1\x67\xc5\xbb\x7d\xd7\x81\xde\x89\xd6\x1b\x8f\xdf\x63\x93\x1a\xc8\x1d\xd6\x86\x5b\x37\xdf\x93\xdc\x1a\xd7\xba\x69\x6b\xf4\xba\xf4\xef\x74\x4a\xec\x2d\x7d\xe5\x46\xd7\xdc\x1c\x4c\xb4\x36\xdb\x73\xc7\x82\x9b\x24\x0e\x04\x7d\x4f\xb1\x67\x59\xa2\xc4\xed\x4f\x2f\xca\x7a\xb0\xbc\xcf\x86\x71\x46\xe5\xf4\x8a\xe2\x41\x44\x45\xaa\xdf\x78\xb8\xd2\x59\xa4\x52\x32\xc7\xfb\x41\x65\x67\x94\x6f\x5c\xfb\xcb\x00\x55\x24\x6a\x30\x76\xb5\x5b\x46\xfd\x3c\x5a\x29\x7a\xae\x3d\x58\xfd\x03\x86\x33\xbc\xad\xe9\x88\x86\x2b\x66\x3a\xc4\xa9\x56\x50\x23\x0c\xdb\x18\xb0\xaf\x92\x4a\x13\xbf\x79\xd4\x4f\xaa\x6c\x4b\x33\x6e\xf3\x89\xd7\x01\x80\x3b\x49\xec\x95\x87\x98\xfe\xbd\x0f\x4a\xf4\xec\xdf\x4e\xce\x00\x18\xaa\xf1\xac\x5c\x64\xfb\xc5\x41\x38\x26\x8b\x96\xd2\x7f\x05\xf0\xa0\x90\x52\x66\x4b\x05\xf0\xf5\x96\x0b\x11\x08\x25\xf5\xe5\x10\xc7\x7d\x7e\xe8\x7c\xd7\xfe\x4a\x48\xf5\x9c\x32\x45\xd8\xda\xe1\xc7\x1c\xcb\x1d\xd3\xfc\xe6\xb7\x4c\xed\xb6\xfc\x17\xa3\x0d\x36\xc7\xac\x5e\x25\x4c\xa4\xbe\xc3\xea\x9b\x5a\x14\x87\xe7\xee\xc3\x04\x1a\x90\x35\x05\x16\x4c\xa3\x6d\x75\x94\x7a\x29\x4a\xf5\x50\x99\xea\x42\xa3\x4a\x15\xe4\x24\x0e\xe4\x4f\x2f\x0a\x89\x03\x99\xa0\x50\x51\xdb\xb8\x9b\x35\xf1\x21\x42\xf5\x31\x22\xe4\xbe\xfa\x6b\x4d\x75\x77\xe4\xc9\xd4\xc4\xee\x00\x4d\x77\x64\x55\x72\x7a\xfb\x17\xcd\x28\xf4\xf9\x58\xd3\x06\x82\xd6\x2c\xba\x39\xea\x4d\x2d\xad\x56\x2c\xe6\x51\x28\xe2\x81\x8f\xf6\x17\xac\x70\xf0\xa9\xb2\x97\xda\x76\x58\x84\xff\xf5\xa2\xbd\x3a\x05\x9b\x5c\xbe\x75\x00\x4c\xa7\xd9\x4b\x0f\x97\x03\xf0\x1e\xe2\x64\xa1\x48\x00\x90\x39\xcf\x79\xfa\x24\xed\xaf\x9e\x18\x13\x6f\xbe\xd3\x97\x55\xfe\xdd\x13\xe3\xfb\x40\xec\x03\x8b\xf9\xae\x17\xa4\x2b\x98\x4a\xc9\x49\xba\x84\x38\x19\x3c\xaf\xf9\x55\x7b\x81\xd0\xe8\xbf\xdf\x68\xdd\xe6\x3c\x3e\xd3\x6d\xda\xde\x3d\xd0\x06\xf7\xc8\xa9\xcf\x87\x3a\x41\x79\x53\xd1\xe6\x7d\xfc\x9e\x0c\x0a\x8c\x88\xc5\xd7\xfc\x95\xa2\x87\x28\x30\x9a\x6f\xa4\x2a\x9f\x41\xd1\xe8\x1d\xec\x65\xaf\xfc\x40\xea\xc7\xf9\xd3\x03\xb2\x11\xad\x64\xb0\xf2\xaa\xf4\xca\xb7\x58\xd5\x3d\x6b\x1a\x85\xd4\x1f\x63\xd5\x46\xd7\x5f\xe7\x7c\xe8\xbf\xac\x79\x74\x23\x37\xcb\xe6\xf9\x90\x26\x1e\xd1\x7e\xdf\xf9\xb1\x92\xb6\x18\x32\x2f\x85\xa6\x25\x46\x3b\x1b\x15\x94\xe0\x4a\xf2\x80\x90\x38\x10\x52\x1f\x4e\x41\xb9\x5e\x06\x36\x39\xf0\x69\xb6\xa8\x81\x30\x76\x20\x20\x07\x80\x25\x87\xa5\xe0\x48\x01\x00\x9f\x2f\xdb\xc9\x63\xe2\xbf\x38\x08\xad\x51\xb6\x7e\x2a\xd5\x5f\x3d\x31\x76\xd3\xbc\x7f\x5d\x1d\xfd\x47\x4f\x4c\x86\xc8\xd4\x3d\x6f\x80\xd0\x31\xe9\x1b\xfc\x78\x68\x8b\x8c\x54\xd0\x96\x91\x21\xae\x47\xde\x57\xa7\xd5\xc2\x11\x3c\xc3\x82\x0d\xba\xed\x2f\xe2\x1b\x7d\x34\x6d\xb4\x02\x6a\x71\xf4\x6e\xe5\xee\x77\x92\x23\xb1\xca\x0e\x9a\xd1\x23\xb9\x09\x68\x0e\xab\xfc\x7c\x62\xb9\x37\x4a\xc9\xe4\x54\x43\x65\x65\x2f\x82\x4a\x5f\xed\x95\x54\xbd\xfb\xba\x86\xa6\xdc\xf7\xe1\x96\x3b\x1b\xab\xaa\x53\x0b\xca\x75\x29\xa4\xfd\x98\x7f\xab\x52\xb8\x52\x5d\x76\x60\x84\x4e\x23\x73\xd5\xb2\x64\xf0\xed\xba\xd6\xfa\x1a\x6b\xd1\x97\xe7\x06\x3a\x1d\xeb\x35\x79\x3a\x1d\x66\xba\x5f\x37\x70\x99\x84\xe6\x2b\x7a\x7b\x91\x7c\x69\x34\xd5\x7c\x06\x2a\xc8\x07\x29\xaf\x1f\xd8\x19\x48\xa2\x46\xe3\x1f\x14\x11\x0d\x4d\xd0\x8f\xa2\x11\x79\x14\x86\x73\x18\xcf\x08\xca\xac\xe3\x46\x9e\xd8\x7d\xa1\x22\xe9\xe3\x86\xc3\xd8\xae\xc0\xdb\xbf\xf6\x41\x48\x92\xbd\x96\x02\xfd\xff\xee\x89\xf1\x5d\xe2\x6b\xbe\xa5\xf7\xab\x27\x26\x3a\x4e\x52\x41\xe0\x1a\xf4\xc4\xcd\xcb\x51\x48\x7b\x13\xf1\xf1\x11\x2a\xf9\x5a\x3a\x84\xf4\x18\x05\xdd\xc7\xb6\x6d\x78\xfe\xd0\x2e\x4b\xd1\x90\x67\x9b\x32\x5e\x1e\x6e\x21\xe9\xeb\x68\xa2\x8b\x69\x44\x6f\xc9\x6d\xe4\x4b\xdb\xb1\xdc\x89\x47\x6e\x88\xbd\xe6\x54\x8d\x46\x0d\x4e\xeb\xa7\x0c\x95\x5f\xdf\x6f\x45\x93\xbc\x28\xeb\x41\xea\x13\x73\xf2\xcd\x4e\x6b\xfb\xd4\x34\x17\x5a\x6a\x9f\x8f\x9f\xd5\x12\x5a\xf2\x7b\x74\xef\x9d\xb5\xce\xe2\xf2\xfc\x83\xa5\x9e\x23\x7a\x2e\x6b\xe4\xc5\xeb\xed\x45\x06\x33\x6b\x23\x85\xfd\x8d\x38\x83\xa6\x8d\xfc\xec\xe6\xaa\x42\x23\x34\x22\x23\xc3\xb4\x9c\xc2\xb8\x06\xa9\x9a\x96\x56\x40\x66\x32\x8a\xb2\x4a\xa2\xcb\xfe\x62\xaa\x80\xbe\x1d\x37\x94\x69\x62\xf2\x1c\x43\x16\x55\x9c\x56\x6c\x52\x80\x99\x0d\xbb\x94\x7c\xc8\xa4\x13\x9b\x12\x64\x0e\xc0\x22\x75\xaf\xf5\xc8\x3d\x00\xb1\x0c\xd6\x72\x8a\xd7\x00\xca\x92\x2c\xb7\x29\x6b\x7e\xf5\xc4\x58\x96\xb0\xbc\x38\xe3\x0d\xe0\x71\x92\xe3\xec\xe5\xd2\x5f\x3d\x31\xd1\x2f\x04\x26\x98\xaf\xee\xf6\xc4\x0c\xa4\x98\x49\x8f\x4b\x3d\x20\xbe\x48\xf9\xa1\x72\x42\xb7\x9a\x10\x9d\x42\xa9\x35\x6a\x27\x8f\x2f\x8a\x79\x60\xb2\x1c\x18\xb6\x29\x16\x68\xe8\x84\xcd\x60\x46\x3d\xf2\x2c\x0c\x3e\xf3\x00\x87\x90\x71\x34\xc9\x3e\x51\x0f\x6b\x96\xd6\x64\x0d\x74\x1d\xb5\x2b\xcf\x8c\xa9\xdf\x5e\x7d\xe2\x45\xe2\x1e\xd6\xc2\x34\x05\x67\x16\xdb\x62\x67\xde\x6a\x19\xce\x93\x37\xa9\x0e\x93\xeb\xf6\x2d\x86\xd4\x0a\xf4\x8e\x19\x2c\x2f\x0b\x3f\x94\xea\x18\x35\x26\x5b\x69\xa8\xc8\x69\x2a\x30\xee\x5d\x3b\x51\x52\xf8\x30\xcf\x94\x69\xbd\x2b\xdf\xa0\x84\xc9\xec\x13\x82\x3c\x6b\x3e\xbf\xdd\x5c\x0f\x81\x4c\xf7\xcd\xb4\xb0\x18\x42\x3e\x4f\x55\xcc\x94\x32\x73\x42\xd3\xc6\x6d\x26\xfd\x65\xa9\x83\x4e\x8f\xa5\x89\x73\xb4\xcc\xc7\x48\x47\xd6\xc7\x70\x59\x52\x60\x8f\x84\xd6\x01\x70\x45\xb3\xfa\x1f\xbd\x0b\x20\xf1\xe2\x5e\x27\x05\x3d\x80\x4a\xfb\xbd\x19\xca\x8f\x00\x26\x0d\xcc\x5e\xa7\x2c\x01\x1c\x96\xee\xf9\x9d\xbd\xfd\xef\x9e\x98\x38\x17\xbe\x29\x46\x4e\x80\x34\x4f\xe1\x36\x6e\x04\x4c\x65\xe1\x24\x46\x24\xaf\x02\x63\x8e\x8b\x9c\xad\xda\x38\x21\x2d\x33\x46\x83\xdd\xb6\x03\xef\x94\xfa\xd6\x30\x25\xf8\x0c\xf6\x7d\x54\x8d\xbd\x62\xd6\x30\xd2\xd5\xef\xbc\x5f\x62\xf5\x87\x75\x2a\xb7\xd2\xfb\x1d\xed\xac\xcb\x7d\x76\x5a\x0d\x0c\xcf\x6a\x17\x8f\x9a\xde\xfb\xf0\xa9\x8f\xfa\xcf\x7e\x9c\xcf\x9a\x06\xed\xb3\xec\xed\x57\xfb\xbe\x19\x73\x2d\xec\x6d\x8c\xe9\xf0\x36\x53\x5e\x5c\xa9\x35\x68\xd4\x33\xeb\x59\x21\xab\x44\x55\x51\x59\xcc\xad\x5a\x96\xb3\x15\x4f\x58\x49\xaf\xb5\x14\xcb\xe4\xd6\x5b\xd5\x6c\xe8\xe5\x76\x67\xac\x5a\xf3\x21\xac\x32\x97\x53\x72\x6d\x96\x10\x73\x19\x37\xe3\x30\xb6\x64\x28\x8b\xa4\xef\xa4\x3e\x9c\xc8\x15\x9b\x4e\xf4\x50\x0c\xc7\x2f\x0e\x84\xe3\x13\xb3\xcc\x11\x53\x00\x69\x91\x7b\xfb\x29\xc4\x00\x34\xe2\x98\xa9\x28\xdd\xfe\xe1\x47\xf9\x93\x83\xd8\xe9\x89\x49\x33\xe6\x4e\xbd\xcb\x07\x90\x1d\x25\x38\xc5\xed\x0f\xf8\xa2\x8b\xa2\xdd\x62\x0f\x41\xa8\xcc\x43\x6a\x43\xd5\x8f\xf0\xaa\xa8\x5a\xe5\x92\xf5\x71\xbc\x5f\xee\x9c\xee\xab\xa0\x48\x6c\x79\x52\x87\xf5\x97\xec\x3a\x44\x73\xc8\x1e\xef\xe7\x75\x19\xab\x07\x7c\xb8\x92\x38\x9e\xee\x5f\xf4\x77\xbc\xdb\x40\xff\x12\x3f\xf3\xd0\xf2\xd4\xc7\x7d\x83\x81\xf3\xfd\xc6\xd7\xc6\x6d\x5e\xbb\x4d\x9a\x1b\xcb\x4f\x5d\xeb\x3d\xd7\xff\xc9\x6c\xf1\xc7\xd5\xae\x77\xed\x4c\xd6\xc1\xb3\xd9\xed\xe1\xb5\x44\xeb\xe8\xc5\xab\xf5\x1f\x1f\xdc\xb2\xb1\x58\x16\x7f\x14\x91\x3f\x64\x5f\xbf\xb2\xa7\xea\x5d\x66\x82\xbd\xd1\x9a\x6d\x49\xd1\xfd\xa3\x76\x6f\xd7\xb1\xf9\x9e\x29\x1c\x76\xef\x37\x3e\xe5\x68\x44\x8f\x3b\xf4\x20\xaf\xa7\xdb\x45\x09\x3a\x90\xa3\xf6\xa6\xf4\x84\xe6\x39\x0c\xa3\x46\x12\xa9\x02\x9f\x3b\xa6\xa2\x3d\xe3\x6e\x05\x91\xdb\x67\x60\xb4\x22\xeb\x01\xb8\x99\x98\xde\x1f\xc9\x00\x90\x15\x66\xfe\x42\x91\x06\xa0\xe3\xc4\x58\x46\x29\x05\x60\x25\xc1\x80\x3f\x59\x01\xe0\xbe\xc5\x98\x75\x86\x0e\x20\x54\x8c\x69\xf8\x82\x2f\x40\x22\xff\xbd\xf1\xab\xe3\xbf\x7a\x62\x4a\x84\x79\x2c\x58\xaf\x02\x54\x52\x08\x7b\x89\x2e\x82\x7e\xb5\xa0\xc4\x51\x65\x51\x02\xd4\x1c\x95\x57\xb7\xa0\xc0\x9b\x57\xc4\x68\x9d\x08\x42\x63\xad\xf2\x66\xcd\x82\x72\xfa\x36\xf2\xe3\x66\xdd\x3f\x37\xe9\x2d\x05\x06\x4e\xc4\x4e\xbe\x60\x9f\xb9\xeb\x45\xf3\x48\xe7\xc3\x8d\x6f\x4f\xed\xb8\x3e\x04\x7d\x7a\x32\x2b\x6c\x7e\x64\x64\xf4\x9d\xc1\xc0\x57\xeb\x81\x89\x47\xaf\xa2\x3a\xc1\xee\xf6\x77\x8f\x67\xba\xd5\xd3\x8e\x39\x33\xfe\x9d\x0c\x25\x1f\x9d\x24\xe6\x09\x4d\x5b\xf9\x49\x4e\x07\x96\xf8\x6b\xb3\xee\x6f\x3b\x3f\x5a\xa1\xaf\xca\x4a\xf2\x76\x79\xb2\x6a\x54\x41\x13\x3f\xe8\x8c\x5c\x9b\x2c\x76\x8d\x6a\x74\xa1\xde\x70\xce\x23\x0f\x91\x70\x1d\x42\xb8\x64\x69\x87\xfc\xed\x72\x15\x19\x7c\xff\x90\x3f\x8d\x2b\x1d\x4a\x33\xd9\xd3\xcf\xd8\x39\x00\x6d\x1e\x17\xe3\x95\xe9\xfc\x15\xc3\x14\x95\x07\xc0\x87\x64\xfa\xeb\xc8\x37\x00\x85\x3a\xa6\x41\x8a\x0a\x00\x83\x52\x7a\x36\x8a\x83\xbf\x38\x08\x1f\xde\xbb\x67\xa8\xda\x01\xa2\xda\x19\xad\x2e\x30\x01\xa4\x1d\x67\x1e\xbe\xfa\xf2\x1f\x3d\x31\x16\x9c\x0e\x4c\xcb\x00\xf5\xb7\x04\xf7\x89\xc8\x82\x63\x63\xb6\xd8\x01\xc5\x51\xc2\x66\x4b\xb6\xec\x71\x0b\x4a\x3c\x7f\xdd\x39\xf5\xa8\x60\x24\x56\xa2\xd2\xc0\xe8\x54\x2e\xfd\xfa\x87\x9c\xfb\x8e\x4b\x2d\x03\x73\xef\x23\x3b\x22\xe8\xdf\x0e\x4e\x85\xfa\x95\xd5\x44\x8c\x52\x92\xfa\x71\x3e\x4c\xb8\x64\x7e\x90\xf9\xac\xd1\xfe\xc9\x9d\xf2\xcb\xd2\x5b\xcc\xc3\x6c\x0f\xae\x29\x89\x17\x91\x45\x12\x1e\x43\x3f\xe4\x9f\x0c\x66\xa6\x79\x92\xcd\x8d\xb7\x7e\x48\x89\xf3\x14\x5f\xbc\xd9\x50\x1d\x77\xc5\x73\x74\x59\xa4\x5a\x37\xd2\xd1\xd3\x63\x55\xb9\x22\x2c\x78\xcc\xeb\xe0\x1a\xba\xd8\x28\xf0\x80\x67\xd7\xc6\xd5\x7c\x43\x7f\x6f\x0f\x0c\xe2\x52\x76\x8b\x0f\xd1\x5d\x04\x39\x92\x5a\xe3\x1d\xef\x71\x16\x89\x4f\x3d\xe7\x75\xd2\x2d\x13\x7d\x2e\x61\xbf\xa7\x80\x6b\x10\xba\x37\xa6\x1b\x40\x38\x8c\xd1\x82\xdc\x04\x40\xf9\x3d\xa3\x0b\x85\x23\x80\x71\x11\xc3\x55\xca\xb2\x5f\x1c\x44\xa0\x12\xad\x37\xa5\x3b\x40\x5c\x0b\x7d\xf7\x19\x02\x40\xf6\x47\xa6\xb6\xab\x48\x80\xf2\x8b\xcc\xa1\x37\x1e\x01\xd4\xcd\xb1\xdd\xbc\x2b\x00\xd0\x32\xc7\x97\x2c\x78\x07\xdc\x3a\x85\x44\x0e\x29\xca\x10\xcf\x74\xef\x93\xe2\x35\xa3\xc5\xfb\x75\x11\x94\x8a\x02\xf9\xb1\x21\x6d\x2b\xda\x98\x6c\xf5\xf5\xc2\x87\x95\xd6\x87\x5b\xcf\xfe\xa8\x48\x97\x0e\xb9\x38\xc4\xf9\xb9\x26\x26\xb1\x62\xef\x34\xe3\xa7\xb4\xc0\xe3\xcf\x3e\x4d\x23\xba\x5e\x06\xc8\xbf\x8b\xfa\x62\x5b\xa1\x12\xa4\x32\x92\xf8\x5e\x25\xff\x74\xe0\xb1\xaf\x3c\xaf\x50\x69\xf5\x01\x0f\xbf\x6f\x3d\xf3\x8b\x27\x0f\x88\x9a\x4d\xe8\x18\x88\x4c\x0e\x38\xb1\xa0\xda\xf4\x21\x4c\xd5\x8f\x76\xf9\x46\xf5\xbb\xe0\x0e\x9f\xd9\x55\x8a\x07\xe6\x01\xcd\xbe\xfb\xd7\xd2\x4a\x2a\xfc\xa4\x7d\x3e\x6f\x9c\xcf\xf7\xf4\x35\xf1\x32\x40\xe8\x65\x3d\xf3\x61\xf0\x30\x44\xde\x4f\x7b\xeb\x75\xd1\x93\x07\x65\x91\xcc\xe7\x2e\xe4\xd5\x88\xb6\x88\x4b\x71\x8d\xf2\x7c\x8a\x31\x8f\x8c\x03\x10\x33\x63\xf4\x21\xdf\x00\x50\x17\xa1\x8f\x38\x5a\x02\x60\xbe\x40\x7f\xea\x38\x1b\x80\xcb\xc0\x6d\xca\xe3\x9f\x01\xc2\xbe\xd1\x2e\x9d\x78\x0c\x90\x3c\x44\xd7\x7f\x66\x02\xa0\x60\x8d\x8e\xfe\x5c\xe0\x3f\x7a\x62\xec\x59\x39\xef\xb4\x03\x3c\x33\xe4\x52\xe0\xa6\x81\x8e\xbe\xbb\x02\x5c\xd2\x48\xa2\xce\x5b\x1f\xb1\x54\x23\x06\xfc\xd0\x5b\x4e\xb9\x4b\xbe\x45\xd8\xf0\x3e\x53\x75\xbe\xac\xf4\x75\xfa\xa7\x17\x8d\x07\x5a\x11\xdf\x1a\xeb\x6f\x7b\xb9\x7c\x36\x7c\x73\x28\x07\x5d\xe0\xb7\x1c\xd6\xdd\x9c\x7c\xb5\xdd\x66\x41\xaa\x94\x2a\x31\xb7\x9f\xed\x6b\x64\x7a\x4f\xac\xe1\x27\xe9\x61\xb6\x24\xb7\x48\xab\x09\xc7\x7e\x85\x58\xba\xc8\xc3\xdf\xd6\x7a\x4c\x22\x85\x43\x17\x66\xe5\x1f\xeb\x07\xa3\xc3\x7c\x16\x0f\x35\x52\x07\x76\x87\x7c\x5b\x66\xa8\xae\xf6\xd3\x08\x21\xae\x3a\x54\x70\xfb\xbe\x08\x64\x5a\x3f\x5c\x7c\xcd\xab\x24\x38\x66\xe3\x5e\x3e\xd5\x6e\x1f\x4e\x75\x20\x19\xea\x6c\x4a\xba\x6b\x4c\x80\x00\x6a\x3c\xf1\x9a\x8b\xb3\xff\x1e\x74\x75\xec\x3d\x27\x1e\xbf\xd7\x98\xe6\xf0\x71\x00\xa9\xb7\x77\x4e\x1d\x99\xff\x77\xfe\xef\xe9\x7a\x33\xe6\x58\x09\x40\x44\xc3\x5f\xe8\x7f\x72\x10\x15\x0f\x6f\x50\x9f\x64\x00\x68\x3a\x79\x2b\xf4\xfc\x29\x80\xae\xb2\x9f\x3d\x31\xaf\x43\xd9\xdc\x59\x2a\x60\x6e\xa8\x86\x37\x5a\x22\x85\xf8\x78\x64\x43\x98\x45\x27\x75\xdb\xfd\xdb\x1e\x89\x0a\xb7\x67\xd8\xde\xc9\x4a\x85\x94\xf4\xad\xf5\xbf\xc6\x63\xb5\x6e\xb7\x2a\x4f\x7d\x1e\x92\xb3\xc1\x7f\xc6\xf5\xd4\x55\xbf\xc8\x8e\x5d\x9f\x2c\xe3\x69\x7e\xd9\xa4\xb6\x34\x96\xd2\x50\x95\xd3\xff\x66\x62\x3c\xf6\x43\xa1\xef\x27\xcf\xa1\xd7\x11\x94\x59\xa9\x5f\x4d\x5f\x75\x86\x04\xa4\x46\x4c\xbf\x79\x4a\x0c\xf8\x96\xd2\x33\x8b\x69\x1f\xf5\x65\x48\xee\x58\xa4\x69\xa8\xf6\xf1\x8e\x7d\xbe\xdc\xf1\xe8\x94\xd7\xd9\x98\x89\xd5\xe2\xf2\x20\x0f\xda\xa8\xe6\xf5\x98\x42\x79\x17\x7c\xb4\x27\x82\x23\x9b\xc1\xa5\x2c\x62\x1a\x79\x3e\xbd\xce\x89\x3a\xd2\x10\xa5\x9c\xec\xed\xc4\x16\xe6\x87\xc2\x27\xf8\x3b\xe8\x87\x78\x63\xe4\x22\xb7\xec\x08\xc1\x79\x58\xaa\xd0\x57\x00\x32\x5f\xe9\xca\x8f\x78\x01\xe8\x1c\xbf\x79\xf8\xb0\x09\x80\xf5\x8d\x1b\x78\x72\x09\x00\xff\x43\xd4\x18\x72\x65\x80\x04\xca\x2b\x4d\x47\x10\xbf\x72\x9e\x1a\xa5\x2b\xd3\xc7\xf2\x00\x3a\xdf\x53\x0f\x53\xbe\x03\x78\xa5\x78\xfb\xd1\xa5\x02\x80\x4f\x7d\xcc\xfb\xe9\x51\x00\x93\x21\x5c\x8a\x42\xfc\x70\x79\xa1\x96\x7f\x49\x6d\x74\x7b\x1e\x51\x28\xaa\xea\xf8\x74\xd3\x1e\x59\x22\xfd\x20\x85\x6c\x9d\x71\x3e\x43\xcd\xb2\x85\xe3\x2b\xdf\x27\x84\xb5\xc0\xf0\x4a\x4d\x78\xcf\x48\x92\xe2\x4c\x6c\xca\x62\x8f\xf1\xd3\xc2\x99\xd0\x10\xce\xfe\x95\xb7\xa9\x63\x93\xfe\xb3\xed\x8f\x47\x72\x06\xa7\xfc\xce\x3f\x92\x9c\xf4\x7b\xd9\xed\x4d\x53\x71\x66\x7a\xeb\xa9\xac\x87\x7d\x01\x72\xfe\x49\x73\xad\xdb\x78\xee\xe0\xd2\xbe\x3a\x19\xd7\xd2\x8c\x86\x95\xf8\x4a\x7f\xe7\xd4\x74\xb2\x35\xcf\x92\x62\x27\xc7\x94\x82\x0d\x86\xbc\x31\x47\x89\x24\x63\x84\x6f\x26\xc1\xfe\x71\x62\x17\x32\x2c\xed\xa5\x9d\x64\x5c\x3f\x8a\x98\x20\x4e\xea\xc3\xb1\x55\x8a\x61\xc3\x1c\x8a\xe6\xb2\x1e\x8a\x4a\xc6\x1e\x0e\x9d\x03\x90\xf3\xbc\xcd\x7a\x78\x0d\xc0\xf0\x2f\x1a\x85\x23\x1f\x01\x9c\x6a\xae\xe6\x1d\x5a\xf8\x77\x3f\x4a\xe9\xf3\x9d\x9c\x63\xff\xef\x5e\x90\x51\xd9\x3d\x6d\xff\x99\x3f\xbe\xd3\xf5\x5c\xd9\x00\x40\x5c\x65\xbb\xc3\xfe\x11\x5a\x09\xb4\x3c\x44\x39\xb1\xed\x56\x9c\xb3\xe8\x01\x67\x1b\x2c\x06\xb9\x4f\x46\x2a\xed\xe5\x14\x7a\x89\x5b\xa3\xb5\xce\xef\xc9\x97\x69\x41\x1b\xe7\x1e\xa9\x6c\xa5\xcf\xf7\xa3\xae\x7d\xbc\x1f\xbe\x31\xf4\xad\xf5\xcc\xe8\x61\xcf\x8a\x4f\xa1\x43\x3d\x1f\x1f\x3b\xaa\x7f\x76\x1b\xab\x7c\xc3\xe5\xe4\xfb\x7c\xed\x5b\xe0\xf3\x15\x07\xc5\xc7\x37\x67\x2f\x76\x64\xdb\xc7\xd7\x07\x2f\xcc\x36\x78\xd9\x85\x55\x39\x2c\xcf\x54\x8d\xd8\x17\x96\x44\xaf\xd2\x54\x98\xd9\xbe\x2f\x1a\x5e\xfb\x51\x34\x6b\xeb\x9c\xa7\xbd\xa1\x93\xbb\x68\x1d\x99\x23\x86\x24\x4f\xb7\xb1\x7a\x97\xa5\x86\x5c\x4e\xe9\xb3\x3e\x95\x7e\x06\x15\x9e\xc4\x6a\xa9\x9f\x82\xc2\x1c\x8f\xfa\x6c\x11\x9f\x7c\x05\x33\x10\x86\x33\xaf\x4a\x0c\xc5\xfa\x07\xd3\x02\x28\x75\xdd\x2c\x38\x94\xf4\x8f\xfb\xe1\xd8\xd5\x33\x87\xaf\x00\xc4\x30\xff\x9e\xf7\x55\xef\xf8\xee\x9f\xef\xdb\xc9\x3d\x77\x38\x90\xd9\x8d\x9f\x7d\x18\x5b\x2f\x0e\xfc\x1f\x27\x00\x44\x66\x07\x7a\x79\xf0\x26\x48\xf0\x6e\x28\xdd\x40\x0d\xe0\x5a\x45\x7d\x1c\x61\xaa\x07\x2d\x2d\xf7\x3a\xee\x74\x9f\xd5\x9a\xa3\x4e\x78\x99\x75\xe5\xf3\x85\x50\xfb\x53\xad\x0c\xf1\x2f\xa7\x6f\x84\xe8\xf4\xe6\x04\x2c\x4d\x29\x55\x5c\x7b\xf5\xc6\x6e\xfb\x2b\xd9\x58\x5d\x3f\x91\xe4\xc1\x30\xdd\xfc\x7a\xf2\x47\x63\xe7\x1d\xf3\xb7\x6f\xfc\xe6\xf5\x9b\xaf\x98\x2d\x3c\xbf\xba\x34\xfd\xa8\xd5\x3c\xa0\xbd\x60\x65\xa0\x22\x6b\xb7\x0f\x46\xb0\x7a\x72\xe3\x4c\x9e\x90\xb9\x6a\xc5\x77\x44\x48\xe6\x79\xf3\xb3\xa5\x38\xa4\x46\xda\x08\xc9\x03\x62\x9a\x94\xdf\x8e\x8e\x8e\xa5\x34\xb1\xcf\x51\xc6\x74\x87\x7d\x27\x71\x20\xc6\x86\x19\xde\xd8\xd9\x00\x0f\x00\x4d\xc5\x6b\x25\x07\x0b\x01\x2c\x4e\xff\x75\xf9\x3f\xeb\xf8\x9f\xbd\x20\x3b\x5c\xc0\xae\x07\xe1\x5f\x3e\x8c\x7d\x4c\x7b\x76\x7d\x18\x08\x63\x82\x1d\xef\x8a\xc2\xdb\x6f\x37\xb6\xde\x89\x49\x5b\x1f\xea\x7f\x88\x4d\x51\xf8\x12\x2c\xdd\xf4\x1c\x59\xa3\xfb\x31\xdd\x3d\x37\x65\xf5\x85\x5d\x47\xa5\x4b\x78\xf3\x62\x9b\xff\xd7\xe6\x33\x5e\xd7\x16\x4e\xe7\x5f\x68\x4b\xb0\xb9\x3e\x77\xac\xef\xfc\xe3\x51\x12\xff\xb1\xdb\x83\xe2\x3e\x5b\xb4\x58\x59\x23\x6e\xe0\x3a\xd4\xb1\x3c\x50\x69\x60\xe0\xf1\x8a\x7f\xcd\xb1\xe8\xa9\xe1\xb9\xee\x07\xeb\xaf\xf2\x7c\x0c\xaa\x1e\xeb\x21\xe4\x32\x0f\x18\x9e\x6d\x9e\x40\xf2\xa4\x85\x1b\x1d\xae\xe5\x46\x51\x26\xf3\x18\xb4\x3d\xaa\x43\xab\xc6\x7a\x1b\xf8\x57\xee\xc1\xdc\x8c\x8c\xd0\xef\x2a\x93\xc3\xd2\x85\xdc\xd6\x1f\x2e\x6e\xc3\x26\x04\xed\xd7\xb3\x2e\x7c\xb6\xe9\xe5\x13\x0a\xa0\xf7\xfa\x72\x05\x59\x15\x80\xfd\x9d\x9f\xeb\x21\xe5\xbe\xd9\x3b\xfd\x37\xbb\x3e\x8c\x86\x9f\x73\x64\x27\xe7\x58\xe5\xfd\x93\x83\xb8\x2a\x74\x04\x36\x14\x60\x9d\x49\x94\x2e\x7e\xea\x07\x61\x82\xb7\x46\x46\x68\xf0\x11\xde\x55\xfc\x8d\xd9\xf3\xce\xbd\x38\x29\xc5\xb7\x9e\x06\x15\x0f\x31\x92\x7a\xc5\x31\x23\xc9\x0f\x11\x3d\x76\xd4\x39\x2f\x02\x47\xd7\xd9\xbd\xc5\xcb\x1c\xdd\xc6\xd7\xa8\x52\x16\x1f\x8c\x58\xed\x59\xb9\xde\x56\x52\x1d\xa7\x17\xb7\x1c\x32\xd9\x59\x5d\xaa\x25\xbe\x92\xb4\x7c\xb9\x12\xad\xc9\xbe\x6a\xba\x4c\xa8\x30\xd5\xd8\x98\xdf\x5a\xf5\x2c\xb9\xa9\x49\x35\xbe\xb6\xbe\x94\xe3\xaa\xd5\xfd\x5e\x02\xb1\x37\xf3\x90\xf6\xf2\xab\xdb\x88\x0f\xf7\xb9\xff\xa7\xff\xe2\x76\xa3\x21\x96\x3c\x84\x4a\x73\xb4\x6e\x7e\x93\xdc\x4f\x95\xe4\xbf\xd0\xa6\x7e\x70\x66\xf3\xa9\x97\x06\x80\xc1\x9e\x9f\xf7\xb9\xe7\xe6\x9e\xdf\xb8\xa8\xb2\x73\xff\xff\x70\x20\x1b\x44\x00\x6a\xec\xf1\xe0\x6f\x78\x98\x64\x12\xa5\x5b\xf8\xb0\x9f\x68\xc6\xb3\x2c\x3a\xf8\x04\xb5\x1d\x29\x21\xa8\x5b\x51\xcd\xba\xb5\xa5\xc4\x60\xeb\x96\x5d\xb4\x19\xa5\x2f\x15\xe0\x12\x15\x81\xe1\xb0\x71\x88\xb3\xf4\xbe\x84\xe2\xf0\x0a\x48\xa7\x71\x7c\x89\x3c\x9d\xf8\x21\xbb\xce\x42\x17\xf1\xa6\x42\x3b\x87\x51\x6f\x68\xc3\xfc\x35\x5d\xc1\x11\xb5\xea\x75\xbf\x55\xab\x42\x65\x15\x5a\x84\xc2\xc6\xb5\x2c\xd5\xdd\xfe\x0f\x9a\x35\x56\x44\x6a\xea\x07\x95\xbd\xd3\xc9\xc8\xde\xc4\x00\xd5\x82\x91\x18\x94\x71\xbc\xbd\xda\xa1\x77\x5d\xe8\xa8\x28\x47\x35\xba\xd7\x97\x30\xaa\x61\xb5\x6a\x0e\x3d\x65\x18\x62\xb0\xa9\xda\xdd\xa7\xdc\xd8\x6e\x7f\x7e\x92\xff\x42\x8d\xa9\x95\x6b\x73\xc0\x93\x4a\xed\x66\x23\x1b\x4e\xd9\x75\x18\xc0\xea\xda\xcf\xf5\x84\x31\xfe\x9c\xa4\x3e\x8c\xfa\xd6\xdf\x39\x90\xa9\x5b\xff\x2d\xff\x5e\xe5\xfd\x3d\xff\x1d\xfa\x0b\x3e\x31\x7d\xa5\xbf\xf3\xec\x00\x31\x8b\x8f\x56\x38\xb4\x61\x74\x7b\x53\xb2\x4a\x73\xa8\x78\x0c\xdf\xa7\x7c\xd6\x9c\x2c\x39\x69\x2b\x5c\xf7\xad\x53\x5b\x08\xdd\x66\xa8\x95\x59\xa0\x91\xdb\x5e\xec\x35\x0f\xc6\xc8\xe7\x24\xfe\xc1\xec\x34\x86\x2c\xdf\x3a\x6e\x5b\xcf\x16\x4d\xdd\xa6\x9b\x24\xa4\xfe\x1d\xc5\xfa\x91\x3e\x85\xa8\x98\x86\x12\x40\x32\x26\x21\x15\x46\x50\xaf\x91\xcf\x12\xcc\xe5\x6f\x62\xfe\x46\x1f\x8b\x12\x91\x9b\x47\x76\xa0\x43\x23\x2e\xcb\x9b\xcf\x3d\xc3\xc4\x06\xfb\x2b\x50\x4f\x51\x60\xb6\x02\x8b\x15\x24\x3e\x97\x62\xbf\xfa\x60\x15\x8a\xde\xcb\x6c\x9a\x79\x9d\x53\x3c\xff\x56\x77\x33\xcb\x73\xbf\xe2\xc5\x97\x51\x38\x5e\x57\x5a\x45\xad\xe7\xd7\x71\x99\x4e\xd3\x8a\x7f\x77\x79\x6d\xb1\xd8\x35\x03\xb8\x59\xfd\x7e\x1d\x94\xdb\xfe\xce\x81\x8c\xb4\xfd\x9c\xe8\x8c\xff\x96\x7f\x4f\x66\xfd\x9c\xef\xf1\x00\xd4\x97\x29\x99\x7b\x38\x61\x8a\xd9\x9c\x8e\x9e\xe4\x81\xa8\x58\x24\xfc\x90\x10\x92\x57\xc9\x48\xdb\xfe\xac\x34\xa5\x83\x8c\x26\xc7\x3f\xd3\xbd\x67\xe1\xe6\xa3\xb9\xe5\x61\x51\xef\xfc\xd2\x71\x11\x27\xe0\x4a\xe7\xf3\x64\x97\x7f\x18\xde\x64\xbb\x5f\x12\x7c\x46\x57\x70\x53\xb0\x32\x21\xe8\x88\x3a\x03\x56\xbe\x27\x25\x4c\x4c\x51\x1a\x7b\x68\xb2\x35\xec\x8c\x2c\x1e\x33\x84\x5e\x08\xfd\xfe\xbf\xf8\x07\x69\xd1\x35\x83\x4d\x3f\x77\x67\xe9\xb1\xd9\xb6\xcd\x4f\xae\x9d\x32\xe1\x93\x49\x38\x2a\x97\x58\x59\xf2\x91\x3e\x9c\x8d\x53\x83\xcc\xda\xfb\xc5\x2d\x0a\x3b\x1f\x19\x97\x81\x99\xad\x20\x6b\x6e\xd9\x03\x7d\x86\x5b\x6f\x2d\x85\x7f\xf5\x04\xfd\xc9\x81\x0c\x1e\xdf\xf3\x5f\xbe\x7f\xff\xd3\x03\x31\xd8\xfb\x87\x07\xe2\x20\xcc\xdd\x33\xbc\x9d\x55\x65\x09\x9a\x3c\xb9\xec\x5d\x39\xca\xc4\x58\xf1\x66\xb1\xc2\x04\x56\x42\xa5\xd2\x59\xe5\x9a\x90\x85\x6d\x3d\x5d\x43\xa3\x1e\x57\x34\xbe\xd7\xfc\xa4\x45\x0d\x89\x7f\x30\x5f\xdc\x1a\xf6\xdf\xe3\x78\x6c\x97\x7f\xb8\x86\x23\x14\xb2\xbb\xd5\xab\xd3\xe3\xc2\x1a\x0f\x7a\x5e\x57\x52\xdc\x44\xbc\x9e\xf6\x6e\x91\x3b\xb6\x49\x9c\xdc\xef\x75\x49\xca\x1b\x77\x72\x53\xd6\x83\x7c\x97\x7f\xd0\xda\x92\xc6\xa5\xd9\x1b\xef\x7a\x1f\xfc\xb0\xfa\x5b\xf7\xac\x29\x49\x7d\x17\x12\x4c\x73\xdd\x5b\xb9\x16\x5d\xe2\xa8\x29\x5e\xfc\x15\x53\x32\x09\xff\x51\x77\xbc\x8c\x31\x46\xe2\xed\xc7\x2a\xbc\xa5\x31\xef\xaf\xeb\xa0\x52\xe5\xe7\x7c\x71\xe1\xe7\xfc\xae\xf2\xcf\xf5\x93\xfa\x50\x66\x76\x7c\xff\x7f\xf6\x20\xb4\x3e\x00\xb8\x36\x73\x62\xfa\xa1\x06\x00\x63\xea\xb5\xf6\xfc\x5b\x90\xcd\x63\xc6\xfc\x32\x05\x88\x6b\xe2\x54\x02\x8f\x22\xfd\x89\xb7\x14\xdd\x65\xe5\xbd\x9b\x09\x4e\xda\x6b\x6a\x38\x87\xa0\xed\x60\x33\x6f\x43\x13\x2b\xcf\xed\xd3\xf6\xcc\xa6\xed\x66\xb4\xf8\x17\x5e\x73\x16\x13\x86\x17\xf0\x15\xe1\x3c\x96\xa3\xbb\xfc\x43\x34\xfe\x58\x05\x9f\x2d\x42\x31\x0f\xbf\xa7\xcd\xc7\xd6\x5e\xb6\x68\xab\xeb\x2d\x87\x9d\x96\x14\xf7\x56\xe7\x94\xb9\x2d\xab\xc4\xb1\xad\x90\xcd\x93\xb6\xcf\xc4\xcc\xf1\x12\x5b\xc5\xe6\xbe\xa2\x55\xf8\x7c\xfc\x1e\x93\x98\xff\xe5\x7d\x10\xd9\xb7\xca\xba\x7d\x52\xbb\x57\x84\x69\x3e\x66\x9b\x41\xfb\xa0\x88\xf3\xd4\xc0\xb6\x8e\x66\xc3\xaf\x9e\xa4\x3f\x3d\x10\xb8\x96\xff\x96\x7f\x7f\xda\xf1\x20\xf4\x7c\xfe\xc3\x03\x21\x06\xb0\x87\x75\xcf\x9e\xa2\x43\x00\xf7\x1a\x6e\xfe\x95\x76\x15\x16\x39\x91\x74\x7a\xd1\x39\x60\x27\x52\xc8\xee\x17\xe0\x4c\xfc\x2a\xbf\x57\xc8\xd9\x75\x8b\x78\x45\x73\x51\xee\x94\xcd\x51\xc2\x7d\xa3\x50\x55\xb2\x5d\xfe\xe1\x02\xe1\xba\xeb\x35\xad\x61\x5d\xc2\xf6\x60\x90\xaa\x9e\xbb\xe6\xe7\xed\xf0\x04\x72\x43\x71\x95\xb9\x6d\xaf\x5c\x73\x43\xa5\x5d\xfe\xc1\x00\xff\xf2\x29\xd2\x8c\x5e\xea\x32\xfe\xd5\x60\xa0\x29\x8d\xb8\x14\x7e\x6e\xea\x81\x31\x9d\x68\x28\x7e\x19\x71\xd4\x88\x75\xb7\xf7\x62\xc7\xfb\x20\x68\x4e\x50\xde\x1e\x54\xb9\xf8\xbf\xbc\x0f\x02\xb2\x1b\x17\x08\x22\xf2\xd9\x00\x35\x17\x7f\xae\x77\x60\xa7\x0f\xe7\x77\x1f\xca\x2a\xd3\x1f\x1c\xd0\x8e\x0f\xa4\x85\xf3\xe7\x2c\x17\xdf\xe1\x20\xea\x01\xae\xfa\x1f\xd3\x48\xaf\x07\x60\xd0\xb9\x38\x1a\xfb\x04\x80\x4b\xf9\xd6\xd1\xe0\x33\x50\x2a\xc2\xc3\xfc\xcc\x8b\x01\x94\x64\x24\xb9\x2e\x3b\xd8\x11\xeb\xd5\x6d\x45\x15\xcd\xd3\x89\x07\x0c\xe3\xe4\x8f\x1b\xfb\x12\x16\xcc\x9d\x14\xfa\xf4\x94\x08\x2b\x4e\x37\x15\x40\xfb\x34\xe1\x89\x8f\xa1\x72\xa0\xba\x37\x21\x21\xe2\x8e\x6a\xbf\xb2\x0c\xc1\x39\x55\x4e\x6d\x5c\x3e\x9a\xa0\x51\x68\xad\x9e\x28\xb3\x4e\x38\x55\x3d\xa9\xb9\x2e\x39\xb6\x4d\x78\xbc\xa1\x75\x43\x6c\x71\x7b\xeb\xcd\x1e\x4d\x0f\x11\xd8\x7e\x31\xb1\xa5\xd5\x2c\xec\xbb\xdd\xb5\xb6\xa1\xa5\x2b\x14\xb1\xbd\xb4\x6d\xac\xa1\xb4\xeb\x7d\x88\x22\x2c\x10\x9c\x65\x1d\xf8\x06\x89\x57\x08\x55\x52\x88\x7f\xf3\x0f\xcf\x76\xf8\xd0\xdf\x7d\x28\x48\xf9\xff\x9e\x7f\xb7\xa7\xed\xe4\xdf\x77\x7f\xcf\xbf\xef\x37\x00\x50\x37\x1c\x2b\x8f\x0b\x07\xb8\xdd\x42\x55\x1f\xce\x07\xc0\x61\x7c\xdd\xd6\x27\x13\x96\x04\x19\xe9\xaa\x9c\x0d\xc0\x52\xb6\x91\x83\xdb\xaa\x1e\xae\xa9\x1e\xe5\x75\x35\x36\x27\xbe\xd1\x71\x13\xbe\xb3\xcb\x3f\xb0\x11\x6d\xad\x2b\x24\x5b\x35\x90\x44\x7e\x8f\x69\x99\x67\x2a\xdd\x44\xde\x60\x23\x99\x31\xc5\x3a\x22\x63\x4c\xb2\xac\xb5\xdc\x17\xc2\x72\xe6\x25\x85\x2c\x99\x71\x42\x5f\x91\x96\xd2\x71\x49\x37\x42\x6b\xed\x05\x25\x66\x31\x0d\x42\x7b\x67\xa9\xa2\x99\x88\x2f\x21\xa5\xbf\x4b\x29\x4d\x48\x86\x50\x3e\xca\xa0\x78\x44\x30\x9c\x10\x34\xcf\xac\xa4\xc9\xaf\x4c\xc0\x60\xea\x65\x7a\x76\xb8\x87\xe4\x3f\xbd\x0f\xbf\xf8\x07\xd2\x7d\xf0\xf3\x79\x88\xcf\xfa\xfd\x1c\x24\x79\x30\x3a\x15\x7f\xce\xea\xfd\x3b\xfc\x47\xc3\x8e\x07\xe4\x28\xc0\xf9\x44\xb2\x86\x90\x53\x3f\xff\x0e\xc9\x04\xa0\xa9\xa4\xa4\xf1\x15\x07\x60\x4b\xbc\xac\xe9\x6a\x06\x20\x50\x43\x7b\xd1\x66\x1c\x7a\x25\xd1\x0c\xc9\xa6\x66\x10\xad\x28\xc4\xd2\x63\x98\x08\x27\x35\xb7\xf9\x2e\xeb\x18\xc1\x3e\xfd\x47\xfc\x1c\x5a\x47\x88\xa3\x96\x6c\x42\x7d\x6a\x43\xc4\x67\x4e\x1f\x45\xca\x94\xfc\x88\xcf\x7c\x0b\x44\x86\x14\x62\x88\x15\xa1\x42\x62\x36\xb2\xf7\x88\x31\x89\x85\xe2\x18\xa9\x55\xa2\x5b\xe6\xa2\xc4\xf6\x2e\xff\x30\x40\xa4\xab\x4d\x91\x11\x14\x2e\x26\x4a\x76\x2c\x4b\x91\x0b\xda\x12\x65\xfb\x98\x25\x15\x05\x2c\x88\xb4\x1f\x7b\xa5\x06\xf9\xa5\x89\x57\x7e\xdc\x91\xfa\xc4\xe7\x44\x64\x5b\x6b\x91\x7c\xc0\xeb\x47\xf4\x22\x92\x8b\x85\x91\xf6\xe1\x57\xee\xff\x3b\x0f\x46\xf2\x60\xbc\xbf\xf6\x73\x3e\xdd\xe1\xe3\x6a\x8f\xec\x5c\xff\x34\x3f\x67\xca\xce\xbf\x8b\x58\xff\x39\xbd\x4e\xfc\x9c\xde\x73\x00\x37\x5c\x8f\xfd\xed\xe2\x00\xc0\x60\x40\xc5\x64\x6f\x0b\x20\xb0\x78\xf3\x2f\x0b\x4a\xc0\x89\xcd\xdc\xca\x34\xda\x03\x75\xf2\x9f\x18\x41\x47\x10\x02\x55\xd7\x58\x8f\x68\xde\x05\x65\x5d\x19\xce\xdb\x6a\x1b\x20\x68\xd2\xcd\x7d\x5d\xa5\x11\xee\x59\xbf\xe1\x49\x57\x44\xc0\x59\xd7\x77\x7c\x53\xb2\x2f\xe0\x8a\x3f\x96\xcf\x59\xe6\x31\x71\x35\xa2\x47\xf0\x8b\xd4\x04\xb1\x2d\xe5\x8e\x28\x99\xb8\x21\x71\x24\x5b\x42\xa8\x5b\xb4\x9d\xd8\x55\x12\x24\x42\x25\xa2\x4b\x0c\xac\x6b\x16\x57\x10\xe2\x27\xc6\xb6\x9b\x8a\xb1\x09\xec\x25\x66\xf4\x3e\x17\x3d\xc1\x67\x4b\xcc\x1b\x4c\x10\x51\xe3\x55\x23\x66\x4d\x0c\x8b\x68\x73\x7f\x26\xbe\x9a\x0f\x10\xcc\xe3\x46\x13\xbb\x91\xf6\x42\x72\x5c\x41\x70\x93\xd8\xcb\xcb\xba\xeb\xc5\x7a\xfe\xfb\x39\xf8\xfc\xe4\x0e\x07\xb4\xf2\x3b\x07\x74\xdf\x64\x87\x83\x91\xdb\xe1\x60\x22\x7e\x4e\x5f\x5e\x80\x0b\x93\x64\x25\x66\x9c\x00\x7f\x37\xec\xd9\x63\x35\x04\x40\x37\x7f\x3c\xc2\x42\x12\x80\xfb\xe8\xc5\x18\x13\x27\x00\x31\x71\x1a\x19\x9d\x1c\x58\x93\x39\x73\x6b\x42\xfd\x20\xb4\x28\x4f\x30\x18\xab\x64\xc0\x03\xcd\x3a\x26\x1e\x25\x3e\x78\xa8\x37\xc6\xe4\xa4\x28\x09\x21\x16\xb5\xac\x8b\x72\x69\xe0\xef\x60\xcb\xd6\x28\xcb\x0e\xba\x9e\xbc\x9c\x8d\x52\x47\xc1\x34\x00\xc5\x79\x45\x7c\x08\xf4\x23\x6a\x38\x73\xc5\x2f\xc2\xa5\x14\x7d\x3e\x71\xd1\x42\xd8\x9b\xa3\xc5\xbf\x2d\x94\x09\x27\x4a\xcb\xf8\x1c\x05\xa2\x81\xaa\x5a\x8e\x77\x9e\x5f\x8a\x48\x6c\x6d\xe1\xbf\xc2\xe7\x41\x9c\x7e\x96\x2e\x10\xc9\xc3\x42\x24\x0c\x74\xf1\x25\x73\x0d\xc2\xf9\x61\x22\x4f\x22\x97\x11\x9c\x98\xb2\xe2\x3d\xc3\x69\x05\x2c\x4b\xe9\xdc\xb2\x00\x87\x1f\xf3\xfd\x5f\xef\xe4\xad\x0a\x7e\xf2\x83\x71\xff\xee\x89\x91\x60\x15\x9a\x3f\x5b\x04\xa0\x54\x25\xd6\x79\x25\x0c\x40\x3b\x52\x9a\x8e\xb6\x19\xc0\xd0\x4f\xfe\x09\xd3\x79\x00\x53\x0b\x55\x63\xee\x53\x30\x6d\x26\xa8\xfd\x45\x34\x0d\xa4\x4c\xbc\x4c\xd8\x94\x24\x89\xad\x66\xe9\x56\x0e\x3a\x43\x84\x35\x53\x7d\xf7\x97\x16\x44\x82\xba\xc1\x5a\x84\x8a\x43\xd7\x76\xb6\x1e\x79\x9a\x9b\x47\x3c\xbe\x51\x9b\xa9\xa4\x25\xe0\xc1\x2e\x07\x12\xad\xf2\xb4\x3b\x30\x62\x69\x4b\x4d\xf1\xcd\x5b\x54\xe4\x67\xdc\x0f\xb9\xa6\xaf\x19\x31\xd4\x38\x41\x19\x87\x35\x8d\xf8\xb0\x2d\x32\xa9\x38\xd4\x40\xd4\xa9\xad\x57\x92\xda\xe8\xd9\x10\x1f\x7c\x82\x04\x25\xf6\x2f\x3f\x75\xc4\x2b\x89\x01\xac\xbe\xcf\xfc\xdc\xb2\x14\x17\x36\xcb\x47\xef\x6b\xb9\xd4\xd6\x26\x9f\x27\xfd\x47\x4f\x99\xa9\x4d\x21\xcf\x81\x41\x6d\x99\xc6\xcd\x6d\x57\xc3\x57\x2f\x65\x53\x71\x6a\xce\xfe\x3d\x22\x72\x69\xb8\x30\xa7\xd4\x2e\x17\xb9\xe1\xad\xd3\x76\x23\xad\x5f\x14\x44\xb6\x6e\xda\xbd\x03\xf8\xbb\x84\xbd\xf7\x3f\xfb\x40\xe2\x20\xd8\x17\x78\x29\x8e\x7d\xff\xb5\x0f\xd2\xe6\x42\x8c\xe7\x98\xfe\xd1\x97\x73\x47\xca\xe9\x16\x17\x80\x49\x87\xec\x2c\x63\x29\x80\x05\x5a\x79\x88\x5b\x00\xc6\xac\xc8\xb5\x9e\x8b\xcd\x81\x92\x95\x8b\xe1\x31\x25\x73\x62\x8b\x85\xac\xb9\x8b\x4e\x16\x01\x67\x56\xe7\x12\x6a\xa1\xb0\x3d\x6b\xfc\x38\x8c\xde\x35\x74\xfb\xa4\x01\x4d\xea\x53\xdf\x2a\x3c\xb7\x8e\x59\xe9\xdf\x21\x0f\xb6\x4a\x35\x62\x1a\x0d\x22\x1a\x76\xfb\x71\x3c\x94\x88\xef\x1c\xe2\x5f\xe1\xf6\xcb\xc7\x4f\xcd\x24\x3e\xdf\x7c\x2d\x63\x8a\x3c\x92\x24\x88\x4b\x97\x66\x43\x31\xc5\x1e\xdd\xa2\x92\x72\x47\xfd\x88\x2c\x27\xf9\x50\x48\x1e\x90\x69\x7a\xe9\x6c\xac\x80\xdf\xe4\xe7\x16\xd9\x71\xac\x96\x3f\xf3\x20\xad\xbc\x22\x36\xd1\x2f\xa2\x9f\x56\x0e\xb1\xe9\xe5\xc9\xdd\xe3\xa6\x40\xdc\x54\xf5\xaa\x22\x79\x40\xda\x28\x14\x1f\xe1\x62\x9c\xa5\x9a\x02\x15\x46\xb6\xe4\x6d\x87\x01\x2e\x12\xb8\x6d\xff\x16\x02\xa0\x67\xe4\xd1\x3d\x24\xf9\x0f\x0e\xe2\x3d\x6f\xf1\xc9\x30\x00\xd9\x45\x81\x8e\xb3\x48\x00\x8d\x68\x91\x94\x2b\x1b\x00\x06\x04\xf1\x75\x9a\x31\x00\x8b\x20\x59\x6f\x66\x2e\x00\xeb\xf3\x8a\x4d\x9c\xf7\x01\x61\x3b\xa4\xbe\x26\xca\x02\x46\xb6\x22\xfa\xb4\x8a\x41\x44\x5d\xab\x10\x8b\x55\xa3\xbb\x84\x14\xcb\x05\x27\x15\x5b\xea\xed\x3a\xb3\xfb\x81\x15\xee\xb1\x78\x7b\x63\x91\xe4\x43\xc1\xca\x5b\x39\x7a\x99\xc5\x06\x91\x09\xbb\xfd\x38\x57\xd4\x86\x9f\x7f\x49\xca\xdc\xac\x54\xee\x7b\x1f\x9e\xd2\xb7\xc9\xaa\xc0\x3c\xcd\x91\x96\xfa\x27\xff\x81\xeb\x96\xc2\xa2\x6c\xa2\x51\xeb\xcb\xd2\x25\x68\xa6\x88\xf9\x69\x3d\x39\x32\xb4\x69\x04\xe6\x8b\x95\xbc\x04\x1a\x13\xd6\x36\xf4\x59\x5e\x11\xbb\x37\x30\xe4\x2d\x85\xc2\x33\x2c\x7d\xe0\xd9\xde\x97\x8a\xfa\xd8\x0d\xdf\x03\xa4\x3e\x9c\x3f\x39\x98\xda\x2c\x15\x67\x9c\xbf\x8b\x18\xc0\xe5\x4f\x3c\xb1\xfb\x6e\x03\xdc\xbd\xc8\x7d\xe8\xd0\x22\x00\x7b\x21\x7b\xea\xd1\x44\x00\xb1\x60\x9e\xc2\x93\x4b\xff\xf0\x41\x6c\x08\xfa\x5d\x76\x04\x30\xd9\x10\x1b\xa1\xf5\x00\xb0\x4a\x97\x62\x66\xa0\x05\xb0\xdf\x56\x48\xe6\xa6\xd8\xed\xcb\x51\x77\xfc\xa2\x9b\xa6\xf4\x86\xe8\x62\x1b\x6b\xf6\xc6\xf0\x02\x41\xc6\xa6\xd8\xbe\xce\x81\x6f\xfb\x84\x45\x72\x90\xbe\x6f\xca\x16\xc6\x94\x25\xb1\x3a\xfc\xf6\xd6\x7e\x03\xa3\x22\xb3\xd8\xb1\xcd\x0f\x3a\xe7\x9b\xae\xa4\x5e\xdb\x74\xd7\xb0\x7e\xe6\x9d\xd6\x85\x2d\x52\x29\x18\x16\xc8\xcc\xc1\x2c\x29\xa8\x2f\x92\xe5\x48\xec\xf0\x30\xc3\x9b\x4d\x32\xc1\x88\xd5\xa4\x27\x9b\xfb\xa4\x33\x50\xe4\xb1\xc3\x8b\x9c\xb2\x28\x14\x77\xdc\xc9\xa9\x13\xf2\x07\xd1\xb7\xa2\x4c\x86\xef\x29\xd6\xa3\x15\xa3\xa2\x07\x58\x94\x6e\x63\x4e\x87\xef\x79\xa1\xa3\x4c\x8b\x19\x0e\x8e\xea\xa6\x55\x8e\xc1\x7a\x05\xb0\xb4\xb3\xaa\x2a\x63\x1f\xf8\x67\x91\x3c\x20\x24\x0e\xa6\x52\x58\x9d\x0f\xc7\xe5\x96\x0a\x70\x25\x8a\xa3\x64\x1f\x23\x00\xa3\x17\x87\xfb\xe1\xf0\x5f\xfb\x20\xd9\xca\x73\xf9\x94\x37\x80\xaa\x04\x6f\xc7\xb9\x83\x00\x06\xfb\xf8\x79\x2f\x8d\x02\x58\xdc\x16\xe7\xbb\x6d\x06\x60\xff\x58\xbc\xf2\x6e\x2c\x80\xcb\xac\x6c\x0a\x67\x0e\x2c\xb9\xbb\xaa\x24\x89\x0d\x80\xb2\xdb\x4b\xed\x42\xe5\x40\xa2\xbc\xcb\x59\x93\x1c\xe3\x5a\xc2\x49\xbb\x44\x5b\x70\xca\xc4\xbf\xb5\xe6\xf5\x6b\xf5\x5f\xdf\xd2\x37\x8f\x89\xdf\x8a\xae\xda\x5c\x33\xe6\x28\x94\x4a\x3d\xba\x79\x58\xef\x66\x83\x75\xc6\x07\x2c\x9d\x66\x4d\x2f\x67\xce\x37\x4c\xa5\xaa\xfe\xa7\x98\xbc\x4c\xcc\x29\x05\xe6\x35\xe6\x02\xb6\x3f\x79\x98\x75\x61\x39\x05\x44\x6d\x8a\xcd\x77\xa4\x82\x1e\xd2\x2b\xe9\xe8\x08\xa7\x62\x07\x2a\x38\xee\xfa\xc0\x37\x65\x19\x34\x63\x74\x6a\x2f\x5e\xd5\x1f\x6d\x17\xbd\xaf\x9b\x5a\x35\x1a\xa3\x12\x56\xd7\x71\x4c\xb5\x12\xab\x16\xe8\xdd\x38\xa0\xee\x87\x75\x0a\x14\x25\xf5\xe1\x3c\xc0\x68\x1e\xdb\xf4\xf7\x0e\x29\x0d\xd4\xe4\xc1\x5d\x70\x6f\x00\xb8\x7e\x81\xfb\xe8\xfe\x01\x00\x56\x71\xce\xd3\xe4\x2f\x00\x78\x82\x39\xe8\x8f\x2d\xfc\xbb\x27\xc6\x38\x91\xaf\xf3\x72\xc1\x3f\x7a\x62\xd8\x25\xbe\x33\x2d\x01\x78\xfe\x90\x09\xe7\xfe\x0b\xc0\x0b\xa9\x58\x27\x22\x03\x26\x3e\x3c\x1a\xad\x4a\x91\x44\x29\xcf\x68\x23\x36\x13\x89\xed\x37\x8e\xa3\xb6\xa1\xae\x4f\xf1\xb7\xed\xf9\xbd\x3e\x84\x8a\xed\xf6\xe4\x58\x99\x28\x17\x72\xa6\xf3\x62\x0f\xe8\xf7\x34\xbc\xcb\x93\xc5\x1c\xd4\x6a\x78\x69\x58\xe4\x84\x3e\xaf\xa6\xf2\xc5\xb9\xb4\x1f\xe5\xad\x64\xbc\xbc\x5c\x9e\xfc\x67\x2f\xce\xc2\x3b\xc5\xf3\x1b\xbc\x99\x1d\x63\x52\xca\xac\x88\xc2\x34\xee\xc1\x16\xd5\x7e\xc4\x4c\xea\x77\x92\x0f\xa5\xfb\x9c\xfa\x49\xb4\x61\x74\xfe\x63\x53\x0d\x16\x74\x5e\x54\x2b\x89\x83\xd9\xf5\xa1\xdc\xd0\x12\xc3\xce\xfb\x33\x94\x31\x6a\x0b\x6f\x5e\xf5\x3b\x99\xdf\xae\xc3\xb7\xd9\xe3\xa5\xf4\x8b\x8f\x62\xad\x67\xdf\x4f\x9e\x00\x20\x64\xce\x7e\x88\xa2\xe0\x17\x07\xf1\xbf\x7a\x62\xdc\x3a\xc5\x4a\x18\x2b\x00\x7c\xe8\x25\x8f\xb1\x21\x01\x02\x6b\xe5\x36\x44\x4e\x80\x59\x30\x83\xea\x82\x52\x33\xd1\xda\x37\x58\xbf\xc4\xa8\x7c\xfb\x9d\x3b\xbb\xd5\x13\xd7\xd9\xad\x0d\xc7\x60\xf7\x9a\xb0\x79\x1c\x85\xad\x77\xd4\xbe\x94\x28\xac\xa3\x39\x6f\x5e\x57\xce\x13\xf4\xa8\x21\x63\x13\x73\xc9\x61\x54\x91\xce\xdd\xbe\x89\x8a\x0a\x64\x93\xfa\x81\x89\xa5\x2a\x3f\x64\xab\xb2\xcd\xd2\x97\xca\x2e\x74\x86\xc2\x97\xd5\xe0\xa2\xf0\x35\x11\xc5\xeb\x6b\x23\x79\x4e\xdf\xae\x28\xff\x58\x4f\xce\x19\x1e\x4e\x55\xf3\xd9\x30\xc8\x6a\x79\xbd\xa5\x61\x8d\xa0\xcf\xe0\xef\xae\xd1\x94\x45\x76\x25\x0b\xb5\xdf\xd1\xfa\x81\x32\x48\x98\x6e\xf6\xd4\x12\x40\xa7\x45\x4b\x93\x7c\x28\x95\x53\x3a\x92\x98\x17\xa1\x6d\xc5\x19\x7a\x47\xb1\x12\xc1\x32\x45\xc7\x74\xc2\x37\x85\x7d\x3d\xf2\x32\x75\xb6\x36\x4b\xbd\x19\x01\x68\xe8\xd9\xf4\xc9\xc2\x01\x58\x59\x59\xcf\x1f\x41\x03\x88\x86\xb3\xbe\xa4\xc8\x07\x50\xa4\x65\x91\xa5\x94\xfb\xd5\x13\x63\xc9\xc3\x81\xbf\x70\x06\xc0\xc5\x9f\x27\xf3\x9a\x2e\x80\xf7\x7b\xe1\x7e\x06\x46\x80\xc0\x50\x09\x36\x8e\x44\x80\xb0\xfb\xb2\x49\x22\x1f\xc1\x26\x12\xab\xcc\xa8\x14\x4e\xe4\x09\xf1\xd6\xed\x34\x75\xdb\x8e\xf0\xd3\xb3\xb0\xf4\x3c\xb6\x75\xcd\xd5\xdd\xa5\x38\xe6\xfb\x6e\x4f\x8e\x95\x95\x51\x76\x4f\x11\xd9\xae\x17\x85\x5a\xb7\xe6\xb5\x68\x75\x0e\xc2\x45\xfd\xd6\xf7\xb0\x5a\xf2\x3f\x79\x18\x92\x0f\x65\xd4\x54\x5d\x61\x4d\xb1\xb0\xf7\xad\xb0\xa6\xf7\x7a\x6d\xee\xe3\x9e\x2a\xad\x87\x1b\xf8\x4c\xf3\x8e\x4b\x3a\x0b\x88\xa7\xf7\x7f\x34\x08\xeb\x26\xa1\xb8\x12\x89\xb5\x7b\x75\xf9\xd0\x77\x62\xdb\x2a\x6e\xeb\xd3\xa3\x7b\xa3\x59\x8a\xd7\xf4\x15\x31\x69\xe1\x77\xf2\x0a\x0c\xac\xb0\x67\x43\x32\xb3\xb4\x0c\x96\xb0\xd5\x81\x16\xf7\xf5\x0d\x2b\x37\xcf\xf8\x5f\x00\xa0\xd5\x67\x79\x4a\xf6\x06\x80\x83\x8b\x95\x8b\x3c\x03\x40\x2c\x9d\xf5\x22\x85\x0f\x80\xb2\x34\x0b\x1d\x65\xed\xaf\x9e\x18\x5b\x61\x0e\xb9\x0b\x25\x00\xee\x16\x5c\x4d\xd4\x22\x00\x41\x17\x04\x02\xee\xd8\x03\x84\x6b\x88\xbe\x62\xef\x03\x88\xbd\x2c\xd5\x28\x5c\x05\x81\xb1\xcd\x8a\x67\x15\x70\x44\xcb\x98\x93\x9a\xd9\xc6\xe7\xb6\xcb\x43\x37\x4c\xac\xdd\x31\x5b\x7f\x7b\x4e\x38\x95\xc4\x4e\x63\x25\x9d\x2d\x43\x1b\x73\x9f\xa0\x8d\x6d\xae\x65\x7f\x29\x7b\xb7\xeb\x45\xc9\xd6\x9b\x7f\x23\xd5\xb0\xbd\x7e\x57\x43\x65\xf6\x73\x4b\x20\xe2\xa8\x6a\xcb\x82\x5f\x1d\xcd\x6e\x2f\xce\x31\x0d\x9e\x95\xbd\x15\xbd\xef\x58\xb5\xc3\x57\xa5\x4b\x3b\x7a\xc9\x74\x0f\xaf\xa1\x0b\x86\x3a\xbb\x74\xd1\x1b\x62\x39\x51\x4d\xfa\xfa\x83\x88\xdb\x99\xe9\xd5\x7b\x0c\xe6\x91\x1a\x69\x8c\xe5\xdf\x0c\x7d\x51\xfe\x89\xe6\x45\xb6\x46\xd1\x68\xba\xb8\xa0\x5c\x3f\x63\x5d\xf4\xe7\x68\x53\x12\x07\x93\xd6\x66\xfc\x10\xab\x12\xdc\x98\x28\x6e\xf2\x05\xfb\x35\xa0\x15\xe0\x96\xf5\x3d\x9d\x03\xfb\x01\xb8\xf0\x2c\xa8\xa3\x7f\x03\x48\xd9\xb3\x38\x51\x2c\x03\x68\xb4\xb0\xf4\x9d\xd4\x06\x30\x75\xbc\xd7\x4b\x95\x03\xe0\xd0\xc2\x4a\x79\x2e\xf1\x57\x4f\x4c\xe8\x23\x3e\x1e\xba\x1e\x80\x98\x38\x81\x16\x66\x5e\x80\xc4\x7a\xc9\x23\xc2\xb2\x10\x97\xc2\x23\x67\xa5\xb0\x9f\x28\x9e\xe8\xa5\x21\x66\x02\xdb\x7a\xd1\xa5\x46\x48\xaf\x71\xdc\x8b\x80\x1c\xfb\x0f\xf1\x4d\x98\x41\xf7\x76\xff\x63\x05\xe7\x90\x2f\x1c\xea\xd2\x93\x1f\x25\x6e\x44\x5b\x08\x35\xec\x6b\x3a\xb6\x76\xc6\xc0\x78\xf0\x41\xc7\x43\x52\x2f\xce\xfa\x86\xba\xd0\xdc\x52\xd3\x5f\xdf\xef\x68\xe6\x2c\x32\xd4\x2a\x7d\xe0\xd0\x15\x5b\x2a\x7b\xa4\xfc\xf2\x81\xfe\xa9\x15\xbd\x07\x7b\x3a\x9f\x19\xb8\xaf\x09\x15\x67\x91\x7c\x28\xd5\x12\x46\x63\x1b\x6b\x59\x5f\xca\x5a\x4d\x7c\x11\x73\xe9\x06\x05\x22\xa6\x33\xc8\xb6\x54\xf6\xec\x4f\xa6\x79\x28\x62\x7c\x21\xc9\x87\x92\xda\x6c\x9a\x8c\x29\x09\x4f\x4c\xfc\x6e\x76\x08\xcb\x1d\xe2\x1e\xaf\x6c\x9a\x87\x5d\x0a\xf0\x05\xb8\xbb\x97\xb9\xf7\x60\x39\x00\xdf\x77\x16\xcf\xa3\x71\x00\xb2\x3c\xf7\x3e\x1d\xa7\x03\xd0\x7a\xc8\x2c\x7f\xe2\x38\x80\x45\x21\x8b\xd0\xe9\x3e\x00\x97\xcb\x6c\xd9\x17\xb0\xff\xee\x89\x49\x5c\x16\xb4\x66\x7d\x0a\x90\xf6\x4a\x3c\x4b\xd8\x1b\x12\x32\x97\x64\xf8\xe5\x97\x89\xba\xe9\x48\xd5\xa3\xc6\xdd\xdb\x45\x29\x97\xf5\xec\x3d\x98\x70\x6e\xd1\xe7\xad\x83\x12\xe7\xd1\xd9\x3e\xf5\x5e\x9d\xa5\xef\x11\x21\xce\xf8\xd4\xa7\xf5\x32\x6b\xd7\xad\xef\x36\x14\x3f\x76\x5a\x8e\x36\x62\x1f\xca\x79\xa6\x4f\xe2\x61\x56\x72\x34\x5b\x67\x0f\xb4\x59\x7d\x62\xd2\x77\x9b\xdf\xd3\xcc\xdf\x97\x6b\xd8\xb3\x18\x56\x3b\xf8\x38\xc0\x44\x76\xd9\xf0\xa1\x4d\x93\x9c\xa9\xcc\xca\x5a\x05\x47\x55\x8d\xf9\xad\xb5\x84\x62\xdf\x52\x6b\x73\x86\x0d\xd7\xdc\xb3\xf9\x7f\x59\xa8\x23\x22\x33\xb9\xb2\x28\x2d\xe8\x91\x5b\x29\x3a\xf7\xa7\x2c\xc6\x51\x16\x49\x49\xc9\x03\x16\x38\xb4\x4e\x1c\x6f\x62\x85\x45\x01\xe6\x48\xd4\x54\x14\xd1\xea\x1e\xa6\x3f\xfc\x62\xb8\xb0\x95\x21\x36\x38\xf8\x16\x00\xb3\x2d\xb3\xf2\x61\x19\x00\x5e\x75\xe6\x1f\xe4\x3e\x00\xf2\xa9\xcc\xcc\x14\x95\x00\xba\x23\xf7\xf8\x4e\xda\x03\x58\x5d\x64\x42\x53\x71\x01\xb8\x4f\x33\x5b\x9e\xfd\x02\x10\x6a\xc2\x62\x7a\x59\xf7\xbf\xf4\xc4\x50\x0b\xfb\xf1\xeb\x42\x55\xb1\xad\x44\x88\x6c\x01\xd1\xa7\x90\x4b\x51\xd4\x70\x61\xdb\x2f\x2b\x53\x7b\xcb\x33\x10\x47\x9d\x64\x6f\xf1\x23\x19\x48\x3d\x39\xeb\x9d\x9e\x83\xf1\xbc\xad\x82\xcb\x43\x76\xaf\xea\xf7\x3d\xcb\x59\x38\x6f\xaa\xfc\x51\xe9\xf5\x91\xa5\x40\x7d\xca\x29\xbe\x1e\xdb\xa9\x32\xfd\xa1\xe9\xd2\xae\x8f\xfd\x19\xa6\xa7\x67\x2f\xb6\x7f\xdd\xed\xc5\x91\xb6\xd0\x59\xaa\xab\xae\xdc\xed\xc5\xa1\xb7\x56\x5b\xbb\x53\x7a\x71\xd7\x87\xe2\x6b\xf3\x65\x63\x20\x47\x35\x39\xc1\x96\x0e\x79\x2c\x3d\x3e\x7e\xc8\x76\x08\xd9\x9a\x3a\xb5\xeb\x43\x09\xb4\x7d\x89\x7e\x10\x4b\x45\xe2\x60\x02\xa2\xec\x72\xb0\xd7\x42\x1d\x01\x18\x85\x99\xfe\x3a\x24\x08\x20\x30\xc1\x98\x40\xbe\x07\x40\x51\x92\x21\xf4\x98\xe9\xbf\x7b\x62\x7c\x3c\x98\x08\xe7\xa2\x01\x22\x95\xee\x19\x5c\xe6\x04\x48\xcd\x64\x6e\xb9\x1a\x06\x90\x9b\xce\x05\x8c\x22\x00\xa5\xf2\x02\x19\xbc\x51\xf0\xa6\xb2\x4a\xd4\x45\xea\x39\x31\xa5\xe2\x8d\x9c\x95\x81\xd6\x76\x70\xb1\xbc\x46\x8d\xe7\x29\xdc\x85\x9c\x0d\x63\x6c\x32\x0a\xe5\x12\x3b\xec\xbc\x51\x39\xb3\xfa\xd6\xff\x50\x94\x57\x27\x7a\x21\xd7\x89\x50\xe7\xf4\x6a\x72\x06\x69\x1e\x36\x62\xfd\x6e\x79\x3e\xcb\xd8\x6e\x9c\xe6\xf5\xe8\x40\xae\xc5\xf3\x6f\x47\x7a\x78\xba\x6a\xac\xbe\xcf\x58\x3d\x7e\xd7\xb0\x6a\xf3\x66\x6e\xaa\x75\x6f\x25\x9d\x9d\xe2\xa2\x5c\x7d\x69\x7e\x98\xc3\x97\x65\xd6\xea\x23\x99\xae\x0e\xba\xab\x4f\xcb\x5e\x93\x7c\x28\x09\xe7\x1d\x33\x36\xd4\xf2\x54\x62\x83\x1d\x32\x10\xdd\x19\x08\x12\x07\x13\xb6\xdf\x91\x1c\x95\x9f\x74\x21\x78\xcc\xf1\x18\x9a\x29\xde\xdb\x2f\xc9\xb1\x00\x23\x10\x25\xe9\x57\x63\x9f\x88\xbd\x1e\xea\x0e\xc0\x84\x67\x8a\xfb\xcf\xef\x48\xd1\x68\x86\x67\xe4\x36\x00\xca\x8b\x77\x3a\x8f\x0e\xfc\xe2\x20\x9c\x8f\x31\x10\xa9\xa2\x7e\xf5\xc4\xc4\xdd\x67\xa6\xba\xbc\x0f\x20\x53\xf7\x9e\xdf\xb5\xc7\x00\x45\x33\xec\x9e\xf4\x42\x00\x95\x66\x7c\x17\xb8\x9e\x00\xba\xf6\xa3\x50\x98\xf8\x75\x62\x7f\xfd\x69\xa9\x22\x9d\x67\xdb\x25\x35\x3e\x2a\x74\xee\x9a\xb8\x9b\xe5\xd9\xfa\xc5\xc9\x0e\xc8\xd1\xf4\x54\xfb\x97\x8f\xb8\x97\xf2\xc3\x6e\x85\x6a\xf7\x6e\xcc\x84\x7b\xf2\x55\x3b\xbf\x8f\xf9\x7e\xdc\xb6\xf5\xc3\xc6\x27\xa9\x91\xef\x36\x01\x23\x01\x83\x3c\x4f\x65\x1d\x30\x5f\xcb\xfb\x22\xea\x96\x9d\x2f\x7d\x7f\xfb\xec\x66\x69\x86\xcb\xa5\xb9\xd3\xed\x0c\x79\x97\x5c\x6a\x16\x8a\x1a\xcb\x32\x92\x5c\x2a\x96\x3e\xd4\x48\x24\x4d\xba\x9e\x5a\x81\x07\xb2\xb1\x6b\xae\xdb\x6b\x57\x4b\x57\x23\xe6\x5d\x9b\x36\x0e\xe6\xdf\x0f\x33\x76\xbd\x8a\x60\xcb\x16\x0e\xe6\x77\x3d\x86\x64\x4f\x97\x21\x71\x30\xde\xf7\x5d\x2d\xd0\xac\xf1\x61\xde\xae\xce\x8d\x98\xa3\xd1\x2a\x1e\x54\x2e\xa2\x98\x82\x08\x55\x00\xd6\xa1\xbb\xe6\x87\x44\x00\xc4\x07\xef\xbe\x26\x57\xf8\x87\x07\x61\x87\x83\x70\x9d\xba\xfd\x83\xb2\xe9\x17\x07\x91\xb4\x48\x2f\x74\x96\x03\x20\x37\x9c\x99\x86\x7a\x09\xa0\x12\xc7\x22\x77\x4b\x0f\xa0\x3e\x8d\xa3\xfb\x1e\x27\xa0\x5a\xfc\x05\xb9\xc5\xf9\x89\xdf\x1e\xe7\x89\xe7\x6b\x5f\xde\xae\x68\x63\x54\x64\x76\xeb\xc3\x49\xd7\x4b\x6b\xdb\x25\x5d\x42\x2a\x97\xb2\x58\xf9\xd5\xfc\xb5\x90\x1b\xeb\x1a\x1c\xf7\x5a\x72\x6a\x4f\x20\x75\x55\xc4\xe8\xc0\x44\xaf\x4b\xdf\x9b\xc5\xf1\x6b\xdd\x0f\x3d\xd9\x3f\x06\x0f\x6b\xd4\x9a\x7b\x5b\x8d\x39\xbf\x0d\x2a\x1a\xf0\x96\xfc\xf6\xb9\x87\x39\xeb\xa1\xf7\xf0\x8f\xed\xae\xfa\x94\x3e\xef\x73\xf3\x29\x2d\x7a\x31\x43\xde\xf3\x4b\xec\x75\xb4\x24\x1f\x4a\xd8\x09\x4f\xc2\x1a\x73\xe9\x58\x40\x92\xf7\x99\x75\x87\xc2\xf7\x7e\xd5\x9e\xb0\xd1\x9d\x4b\xe5\x73\xc3\x53\x05\xa9\x71\xff\xa3\xb7\x81\xbb\x04\x4a\x21\xb9\xdc\x4b\xde\x6d\x08\xb5\x96\xf0\x96\xe4\x43\x71\xe7\x73\xbd\x86\x69\x0e\xff\x0a\xc0\x4d\xc3\xc8\x74\xf8\x0b\x80\xcc\x5e\x7a\xfa\x23\xb9\xbf\xfa\x51\x2c\xfd\xe8\xe6\x8f\xeb\x00\x78\xf7\xd2\x7e\x3c\xbe\x0c\x10\x55\x4d\x13\x4b\x89\x07\x48\xc7\xde\x6c\x3a\x79\x02\xa0\x5c\x91\x6e\xe1\x82\x1b\x40\x7d\x1c\xe3\xd8\x8d\x48\x80\xc7\x8c\xec\xd7\x99\x7b\x00\xba\x19\xf8\x32\x45\xe6\x80\xfe\xa5\xb8\xf0\xa2\x1a\x33\xe1\xde\x8b\x10\x99\x13\x0e\x81\x38\xd5\x5e\x65\x55\xb6\x84\x4d\x04\xae\xed\x90\xd1\x5a\x4d\xcb\x5c\x7a\x69\x9e\xa7\xff\x5b\xf8\x74\x23\x5e\xae\xec\xd2\x8f\xe2\xa7\x9f\xa3\x94\x7b\x8e\x4f\xbb\x54\x9d\x8a\x34\x19\xe4\xfd\x72\x3e\x4b\x20\xf2\xe0\x28\xf5\xe0\x44\x92\x4b\x58\xe2\xe4\xd3\x97\xd3\xd1\xdb\x21\xd7\x7f\xac\x3c\xa1\x8a\xb4\x09\x9c\x9f\x5b\x69\x25\xec\xfa\x50\xba\xfc\xaf\x2f\x4f\x3f\x7c\x19\x48\xe5\x6b\xb3\xc6\x59\xfa\x91\xc4\xc1\xf8\x8c\xfb\x68\x23\x4e\x64\x4f\x7b\xf1\xf9\xd9\x23\x96\x32\xe2\x3d\xaa\x7d\xf6\xa0\x4c\x92\x15\x77\x7d\x28\xa1\x9e\x03\x18\xb3\xc8\x14\xa7\x60\x9f\x6b\xd8\x5b\xa1\x76\x00\x5c\x01\x77\x53\x0f\x93\x03\xc8\x93\xd1\xf5\x1f\xf9\x0e\x60\xa4\x73\xeb\xdc\x51\x36\x00\x3b\xb2\x9b\xee\xff\x79\x8e\x06\x31\x5f\x8f\x3d\x76\xe2\x57\x3f\x4a\xfe\xcb\xeb\x3f\x28\x89\x00\xb5\xea\xd7\xec\x29\x5f\x02\xb4\xcb\xde\xbe\x77\x21\x0b\xa0\x97\x86\xe5\xf6\xdd\x6f\x00\x03\x77\xb9\xca\xf9\x25\xc0\xe5\xd3\x84\xc0\x51\xc5\x7b\x84\x90\xcf\x1f\xc4\xd3\x6c\x78\x71\x75\x23\x4e\xf2\x21\xb1\x81\x08\xd3\x61\x1b\xad\x6b\xb5\x5d\xb3\x9c\x6f\xae\x5b\xf1\xbf\x6b\x7a\xa1\x52\xbb\x96\x91\xb9\x86\x2c\xb0\x7b\xd8\xf7\xc4\x63\xd6\x2f\xd5\xa9\xe8\xc6\x3b\xad\x2f\xcb\xd1\xca\x39\xe3\x5f\x4a\x06\xc6\xc2\xed\xef\x3b\x4d\x15\xbc\x30\x08\x42\x26\xa7\xcf\xbc\xee\xe4\x0f\xb8\x95\x18\x3e\xdf\xde\x72\xcc\xef\x66\xdc\xc9\x25\x97\xda\x60\x1f\xa5\x28\x8b\x95\xcd\x07\x49\x5e\x6c\x91\xb7\xd7\x1e\x97\x1c\xf5\x3c\x15\xde\xbb\x3e\x5e\xc0\xeb\xa6\x1e\xc6\x8a\x98\xcd\x48\x72\xbd\x10\x3a\x80\xac\x4a\x33\x70\x5e\x0a\xf6\x43\x8d\x27\x9e\x71\xe2\x0f\xa9\x42\x9b\xc6\xc5\x39\x7e\x09\xa4\xc5\xe8\x45\xd6\x38\xd0\x04\x24\x63\x39\x42\x4f\x00\x08\x59\xdf\x6e\x3c\xf4\x9f\xdf\x4d\x11\x34\xf2\x87\x8f\x00\x98\x25\x5f\x2f\x3e\xdc\x03\xe0\xa6\x73\x75\xfb\x70\xea\xaf\xdc\x97\xe4\xbf\xaf\x28\xfd\xe9\x81\xe8\xa0\xfa\xe9\xc5\xe8\x1b\xbf\xba\x8f\xa2\x16\xe0\x03\x35\x9d\xd8\x95\xe3\x00\x5f\xef\xb2\x1c\x64\xda\x80\xd1\x39\x7d\x9e\x30\x29\x13\xe2\x2d\x04\x85\x90\x9f\x31\x71\x8b\x05\x43\x26\xc9\x10\x61\x84\x54\x5f\x1e\x54\x92\xaa\xc2\x7c\x91\xf8\xaa\x63\xa6\xdc\xaf\x57\xbe\xf8\x56\x23\x76\x66\x52\x3d\xda\xe5\x75\xf4\xcb\xab\xdf\xc8\x03\x6e\xbf\xa2\xfa\x50\xfe\x99\xde\x57\xa3\xa9\x63\x7c\xae\xdf\xc8\x9b\x58\x75\xf5\xfb\xb5\xe7\x41\x9e\x47\x4a\xfd\x66\x1f\x74\x5c\x71\x0f\xcb\xe7\x5e\x3c\xdc\x50\xbb\xeb\x01\x61\xcf\x70\x5a\xcd\x2f\x97\x71\x1a\x4f\x4b\x59\xd7\x2d\xac\x77\x5c\x4c\xe2\x46\xdc\xca\x96\x70\xa4\x4c\xc8\x43\x52\xa6\xd7\xdb\x27\xc5\x45\xa1\xcc\x92\x0f\xda\x33\xc4\xd8\xa0\xcf\xc4\x7f\xdd\xe5\x3f\xb8\xa3\xeb\xb0\x27\x43\xab\xad\x35\x22\x3e\x61\x53\x82\xbe\x03\x88\x8c\xd1\x8c\x1c\xfc\xcf\xff\x2b\x1f\x5e\x3b\x7a\x60\xee\xff\x87\x5e\x90\xd0\x9d\xfc\x9b\xd4\x0b\x22\xb2\xc7\xe5\xff\xde\x77\x1b\x51\x13\x28\x47\x00\x36\xca\xee\x6c\x5e\x97\x04\x20\x26\x72\xae\x09\xf5\x10\x2f\xe0\xb5\x85\xc8\x4d\xf2\xd1\x8c\x98\xd3\x92\x33\x11\x8e\x63\x57\xd7\xc9\x54\xd1\xc5\xf2\x8f\x5f\xcd\x6b\x5b\xc4\xb4\xb3\xdf\x8f\xfc\x5a\x1f\x7a\xf9\x4d\x7c\x80\xc6\x97\xd1\x96\xde\xf7\xf4\x4e\xa7\xc6\x06\x47\x75\xdf\x5d\xb7\x3f\x31\xe4\x3d\x29\xf5\x92\xdc\xee\x48\xcf\xed\x19\x87\xc7\x8d\x76\x92\x6d\xa7\xe7\x3f\x35\xbd\xb4\x5d\xac\xdf\xbf\xa4\x5d\x33\x64\xfb\xb8\xea\xf0\x4a\xfa\x83\x51\x1b\x87\xb2\x9a\xb5\xee\x62\x2e\x1b\xc3\x02\xd4\x86\x46\xee\x94\xf5\xcb\xdc\x13\x88\xc6\x8c\x57\xd6\x17\xb3\xd8\x91\x7d\xa9\x26\xbb\xfc\x47\x7c\x9a\x1a\xba\x36\xa6\xd9\x82\x3b\x85\x1e\xf3\x34\x9c\xd7\x9c\x3e\x65\x16\x4b\x15\x6a\x68\xba\x94\x30\xb0\xa9\xe2\x77\x03\x40\xca\xe4\xe6\xf3\x83\xf9\x00\x7a\xb2\x97\xab\xc9\x4a\x01\x6c\x3b\xff\xe2\xfd\xcf\xba\x48\x79\x1f\xe9\x3a\x78\xf8\x64\x27\xf7\xdc\xf1\x21\x90\x7c\x18\xdf\xb3\x7f\xf6\x21\x6c\x16\xef\x65\xf8\xf9\xbe\x97\x56\xe5\xb4\x0b\x00\x31\x89\x73\x49\xa8\x75\xfd\x30\xbe\x5f\x48\xd2\xd0\x6f\xdc\x6b\x93\x53\xba\xd7\xef\x40\x2f\x0b\xf2\xa1\x86\xff\xfd\xfb\x15\x6b\x2b\x71\xd6\xd4\x8f\x5a\xa3\x86\xe6\x06\x03\x93\x1f\x37\x7b\x1d\x9e\xa5\x2e\x7f\xf7\xa4\xd8\xda\x7e\xfa\xc0\xa7\xd1\x9e\x8b\xa4\x1e\x14\xa3\xbb\x93\x2d\x73\x6b\xcd\x62\xc6\x1f\x07\x2d\x17\x9f\xd4\xd2\x9a\x7c\xe9\x15\x5e\xc6\x55\xde\x37\x35\x79\x6c\xb4\xba\x56\xba\xdf\x64\xb9\xc9\x6f\x83\x2c\x8f\xdd\xf4\x6c\xcd\x02\x42\x30\xf3\xa3\xc9\x70\x15\x3f\xd2\x2f\x15\x6f\x42\x5d\xfe\x04\x55\x96\x80\x37\x69\x2c\x7a\x89\xd6\xff\xff\x10\x76\x96\x71\x55\x2e\xdf\xdf\xc6\x04\x03\xc5\x6e\x11\x03\x91\xee\xee\xee\xee\xee\xee\xee\x94\xee\x90\x2e\x29\x11\x09\x05\x09\x95\x12\x11\x94\xb0\x15\x50\x41\x45\x14\xa5\x6b\x77\xac\xe7\xa3\xec\x0d\x47\xcf\xf9\x3d\xff\x57\xeb\x83\xf2\x62\xcf\x30\xf7\x0c\xdc\xeb\x9a\xef\x95\x34\x68\x79\xe6\xfa\x2d\xa4\x55\x6c\x95\x45\x58\x09\x3f\x8a\x36\xea\xbe\x45\x79\xbe\x2d\xea\x6b\x98\x9f\x85\x55\x4e\x13\xda\x35\x58\x00\x40\x7e\x84\x26\xff\xd7\xe7\x37\xa3\xde\xe2\xfe\xab\xfa\x9e\xfc\xb3\xef\x4b\xf6\x20\xb4\xa4\x91\xfa\xdf\xa4\x5c\x18\xf2\xfd\xef\x3f\x3d\xf8\xbf\x2a\xd3\xea\xd9\xd9\x79\x66\x62\x13\xbf\x84\x58\xf9\x87\x42\x7c\x98\x04\x18\x51\x3c\x49\xc7\x6e\x55\x3e\xe8\x29\xd6\x88\x41\xf1\xea\x5f\x88\xb9\x90\x97\xb7\x52\xea\x78\xbc\xe8\x5c\xa4\xc4\x82\x57\xf0\xb7\xda\xad\xde\x9a\xf3\x56\x85\xcf\xeb\xef\xda\xef\x98\x9d\xe9\xae\xbc\x53\x6e\x92\x35\x23\xf8\x23\xfb\xae\xb8\xa1\xc5\x5c\xf3\x2c\x4f\x5d\x94\x81\xc6\xf4\xf0\xbc\xeb\x0d\x0f\x43\xdc\x48\xd2\x62\xfd\x75\x06\x63\xb7\xa1\x5b\x4b\x98\x22\x5e\xe3\xbc\xc7\x31\x2b\x0e\xb9\xa7\x4c\xb6\x76\x55\xae\x1a\x67\x45\x99\xa0\x5a\xfd\xd6\x1c\xd3\x14\x8d\x9f\xdf\x3d\x8e\x68\x4d\xe0\x36\xa1\xad\xbb\x89\xbc\x1d\xed\x61\xba\xa7\x86\x1e\x39\x72\x75\x90\xec\x3f\x31\x8a\xbb\xb1\x03\xed\x1f\x24\x67\x9c\x7d\x7d\x06\xfd\x24\x20\x0c\x40\x1b\x75\xe6\xf0\x76\x14\x80\x3d\x29\x07\xe5\x6f\x1f\x06\xf9\xde\x33\xd9\x8b\x32\x6a\xbd\xbe\x2f\xfc\xc9\x81\xe0\x8a\xd7\xeb\xbc\x37\x00\xd3\x27\xba\xf4\x0f\xad\xc4\x45\xbe\x11\x61\xf9\xa1\x23\xf8\x1f\x52\xea\x7a\xbd\x6d\x53\x38\x65\x95\x9d\xf6\x98\xf2\x78\xf4\x82\xa1\x70\xb0\x5f\x4a\x2a\x32\xd1\xde\x30\x31\x25\xe8\xc5\xaa\x65\x80\x52\x7e\xad\x7b\xff\x8a\x6c\xe6\x6c\xf1\x5b\x5b\xcc\xb2\x61\x83\xf2\x75\x57\xe3\xfa\xa5\xad\x6f\xc4\x2b\xdc\x75\xd2\x96\xbc\x16\x99\xae\x3b\x92\xfd\x1f\xda\x1c\x0b\x4d\x4b\x2f\x0b\xee\xeb\xec\xf8\xd2\xbc\x12\x96\xbd\x57\xd7\xe4\x6d\xee\xea\xcd\xf4\x29\x3d\x9b\x61\xfe\x35\x8f\x94\x29\x5d\xe8\xf7\x47\xd4\xc6\x2b\xea\xbd\xed\xae\x41\x2a\xc7\xf8\xea\xf9\x3d\x38\x82\x32\x0a\x9f\xd3\xe7\x69\x61\x46\xb5\x85\xd1\xe8\xd9\x35\x0a\xa1\xcb\x03\x52\xf5\x0e\x34\x14\x61\xce\xfa\x86\xea\x6a\xd7\x2d\x60\x8a\xbd\x4e\x03\x18\x55\x6d\xa1\xfc\x35\x1e\xcf\xf0\x3f\xd7\x01\x99\x07\x22\xf7\x3d\xc9\x1c\xc8\x8c\x2b\xc5\x7f\xdc\x7f\x26\xe7\x20\x7c\xb0\x06\x60\xa2\x3f\x37\x38\x44\x00\x01\x3e\x7a\xbe\x1b\xed\x67\x09\x1f\x25\x53\x55\x02\x6a\xe6\xf0\x5c\xaa\x32\x16\x89\x79\x4e\xd8\x70\xc3\x03\x1e\xb9\x31\x67\xd1\xb5\x76\x69\x61\x7a\xbe\x47\x91\x03\xbe\x0d\x09\x15\xce\x5d\x48\xd7\x44\xfb\x24\x57\x9b\xdd\x08\xb6\xf2\x9a\x74\x8c\xb1\xc7\x5a\x4a\x97\x77\x66\xa9\x76\xe6\x6a\xf7\x97\xeb\xd7\x24\xd5\x4b\xd7\xf8\x56\xe9\x33\x4e\xaa\xbd\x5b\x1b\x5a\x7d\x94\x6a\xa6\x46\xb9\xc6\xbc\x96\x98\xf8\x56\x8d\x30\xdd\x86\x70\x8d\x33\xd2\x38\xfe\xf1\x1a\x92\x31\x5a\x4b\xbd\x6b\x44\x10\x75\x38\xfc\x86\x06\xf7\xf3\x3b\xa8\xde\x90\x73\x64\xef\x87\xe6\x50\xcf\x20\x3a\x2d\x60\x9b\xe6\x60\xd7\x15\x34\xf8\x1a\x69\x7c\x7f\xe0\x87\x79\xe2\x41\xa3\xd1\xdc\x3a\x82\x15\x76\xf9\x06\xf0\xbb\x9d\x49\x01\x10\xd1\x4d\xf1\x27\x07\xb2\xfa\xe7\x73\x30\x59\x43\xf1\x1f\x39\x10\xe4\xfe\xef\x08\xa9\xdf\xd1\xef\x0d\x40\xa9\x4a\x41\xd1\x49\x03\xbe\xbc\x2b\x5c\x49\x0d\x0e\x44\x63\xc9\x16\x39\xd3\xe2\x4c\x02\x9f\xea\x76\x3d\xdb\x94\x5e\xdc\x92\x41\x84\x4d\x51\xa8\x33\x56\xc7\x36\xd7\xab\xcf\xe3\x09\xe6\x8c\x97\x4c\x70\x95\x03\x07\x7a\x20\xa6\x2b\x74\xd0\xca\x06\x4d\x9d\x5b\x19\x49\x34\x8a\x44\x3d\x6c\x40\x45\xf5\xe9\x88\xa2\xb6\x0d\x9c\x89\xc9\x51\x2b\x40\x46\x4e\x37\xc6\x06\x2b\xbf\x46\x2e\x20\x77\x5e\x95\xdf\xe0\x1f\x86\x7e\xf3\x0f\xc6\x4a\x11\x8b\x77\x51\x75\x41\xa1\x4a\x6a\xdf\xf7\xa2\x2b\x7c\x8f\x28\x5b\x8e\xbf\x45\x0f\xf8\x54\x2a\x2b\xbd\x4b\xc2\x84\x79\xc8\xa9\xdc\x7b\x51\x8f\xb1\xf4\x8c\x50\xd9\x32\xb4\x03\x4b\xeb\xe2\xa0\xd2\xd9\xc7\x85\xd5\x77\x3e\xa2\x92\xd4\x63\x86\xed\x76\x38\x0e\xe0\xee\xf2\xe7\x3a\xb8\x51\xb6\x5e\x1f\xc9\xaf\xd7\x8f\x91\xff\xd5\xff\x9e\x13\xf8\xef\xfe\x6f\x27\x11\x80\xb1\xef\xac\x71\xe3\x4d\x48\xe7\xbb\xcb\x31\x5c\x61\x41\xbc\x2b\x45\x2f\x59\x93\x75\x95\x80\x54\xd1\x57\x4d\x89\x35\xc5\x23\xf4\x0f\x19\x59\xf8\x75\xe1\x56\xad\x7e\xda\x52\x6c\xe4\x3f\xc8\x60\xa3\xc3\x12\x3c\x23\x37\xfc\x17\x87\x30\xdd\xe5\xc2\x7e\x06\xda\x73\x18\xd5\xfb\xd4\x01\xaa\x6a\x0a\x18\xc6\x97\x6f\xfd\x07\x94\xea\xd0\xed\x33\xb9\x81\xa7\x15\x42\x30\x07\xd1\x4a\x7e\xc7\xc8\xfc\x83\xbc\x08\x66\x08\x43\xe3\xb9\x5d\xce\x12\x5d\x8a\xa9\x70\x3d\x2c\xa7\x37\xd7\x8e\x95\x71\x3c\x2b\x1f\x34\x75\x11\x2b\xe4\xb8\x20\x1f\x3e\x71\x07\x9b\x69\x5f\x22\xdf\x35\x32\x80\x9d\xb5\x15\x97\x97\x7a\xc5\x88\xf3\xb6\xa4\x94\xf7\x7f\xb6\x13\x57\x6e\x5e\xb1\xb9\x0e\xc8\x1c\xc8\xff\x3f\x07\x62\x71\xe1\xff\x9f\x03\xd1\x44\x09\xc0\x4c\x71\xb6\xa2\xea\x32\x3c\xe3\xfd\xc2\x9c\x9f\xcb\x00\x46\xe2\xa6\x7c\xee\x49\xa2\xc4\x34\xa5\x35\xd9\x93\xa1\x63\x84\x1a\xbd\x7b\x5a\x97\xdd\xd1\xf8\x17\x56\x97\x4d\x98\xc8\xfc\x83\xd5\x57\x5c\x73\x88\xa8\x7d\xb0\xa9\x3a\xee\x49\xbc\xaa\x5d\x8d\x41\x04\x4e\x3f\x6f\xd2\xe9\xb4\xf6\x75\x1c\xcd\x2d\x2a\xe7\x4e\x35\x73\xec\xb7\x2e\x6f\x67\x84\x52\x36\xb6\xe9\x15\xda\x45\x4b\x9e\x0a\x9b\x35\x27\xf5\x0f\xef\xc5\x37\xdc\x2e\xac\x85\x7d\xc8\x86\xf7\xe2\x27\x0e\x89\x33\x31\x4f\x90\x7a\x80\xec\xc3\xa5\x9a\x51\x93\xb9\x07\xe9\xf3\xdf\xad\x71\x33\xc6\xa5\x52\x7b\x3e\xbf\xc2\x07\xeb\x39\x4b\xd1\x7c\xb0\xc1\xdf\xd2\x79\x0e\x90\xbe\xed\xcf\xfd\x70\xe0\xc3\x7a\xfd\xfe\xc7\x3e\xb8\xb6\xed\x4f\x0e\x68\xa3\xff\xcb\xb1\x5e\x6f\x69\x92\xfa\xdf\x2c\x00\x14\x79\x14\x14\x05\xd7\x01\xb8\x9e\x5f\x5c\x4e\xa1\x82\x72\xb1\x52\x8e\xfb\x57\x9f\x13\x09\x8a\xed\x62\xec\xbe\x05\x44\x7f\x1d\x23\x39\xbc\xcb\x05\x42\x81\xb9\xae\xd6\x1b\xeb\x29\x82\xa0\xd3\x19\xfd\x38\xf3\xb7\x78\x82\x6f\xb4\x51\xa4\xc9\x08\x3e\x2f\xe2\xa3\xd9\x43\xbd\x56\x7c\x76\xba\xac\x59\x96\x16\x33\xde\xbf\xa4\xc8\x5c\x58\xed\x27\x0e\x7d\xfb\xba\xb5\xaa\x92\x30\xfe\xd8\x43\x13\x4b\x46\xb9\x16\xfc\xae\x37\x32\x16\x99\x32\xd6\xb8\xd9\x1f\xdb\x2d\x2a\xa4\xd2\xf1\x74\x58\x55\x33\xaa\xbf\x73\x1f\xfe\x2f\xee\x41\x6c\xcf\xcf\x48\x82\x9b\xf2\xf8\xe6\xb9\xd8\x75\xfd\xcf\xf3\x70\x7d\x5c\x1b\x1e\x08\x52\xfe\xc1\x4b\xd2\x3a\x20\x7b\x10\xea\xbf\xac\xd7\x52\xa5\xf5\x9a\x1f\x02\x70\xd1\xec\xc0\x97\xf4\x5c\x00\x2e\x41\xba\xd0\x18\x26\xf8\x2a\x92\xcc\xe4\x11\xe4\x01\x2e\xf2\x0b\xbc\xaf\x3d\x44\x89\x1f\xb4\xd0\x12\x95\xf6\xcc\x44\x77\x63\x79\x79\x1e\xcb\x83\x84\x15\xdb\x27\x6a\x66\x26\x77\x08\x23\x1e\x2d\x1a\x8c\x06\xd2\x84\xfb\x21\x37\x34\xfb\x74\x90\x84\x94\xb8\x44\xed\x21\x8d\xf7\x04\xed\x1c\x1b\xbd\x33\x6a\x3b\x09\xa7\xca\xcb\x0c\x98\x95\xf8\xf0\xc8\xa6\xeb\x06\x44\xf9\x45\x7c\xf1\x23\x53\xe3\x27\xd2\x5f\xf0\xf0\x72\x42\x6f\x55\x4a\x15\x3f\xf0\xf5\x93\x81\xaa\xc4\x67\xfc\xe4\xda\x0e\xbd\xb7\x1b\xb9\x0f\x12\x84\x3b\x04\x5e\x55\xec\x86\xef\xe1\x2f\xee\x41\x98\x19\x3d\x49\x3c\x2e\xfd\x1e\xa0\x91\xb0\x3e\xee\xb7\x24\x6f\xd2\xba\x07\x82\xbc\x0f\x7e\x9b\x25\x71\x70\xa4\xfe\xf6\x43\x02\xa9\xff\x7b\x6e\xbd\x96\x91\x38\x91\xa2\x6d\x00\xa7\x9a\xa8\x02\xae\xda\xac\x7f\x1d\x5f\x08\xc0\x29\x7f\x56\x36\x34\x13\xf0\x22\xad\x0c\x77\xbc\xc7\xa1\x57\xa6\x91\x75\xcc\xb1\x0a\x5c\xd5\xbc\x78\x03\xad\xe5\x89\xdf\x0c\x3c\xc4\xb3\x4d\xef\x12\xbd\xac\x07\xe4\x77\x18\x9a\x13\x3d\x5d\xa5\xe4\xa3\xf5\x3a\x89\x0a\x7e\x91\x4a\x27\xb4\xa8\x88\xe2\x51\x2b\x4a\x85\x6a\x81\x44\xe9\x64\x6d\x25\x7e\x95\x73\x84\xc5\x02\x16\x35\x33\x45\x17\xc2\x54\xe5\x45\xb5\x38\x39\x24\xa1\xa6\x49\x57\xe3\x81\xb4\x1a\xe1\xf6\xa3\x69\xf5\x64\xc9\x97\x84\x94\x17\x2d\x1a\x79\x12\x0e\x84\xe0\x09\x6b\x8d\x51\x31\x3a\xc2\xd0\xfc\x3b\x95\x7e\x72\xee\x83\xf0\xeb\xdf\xe3\x2e\xf9\x9b\x7b\x10\x40\x03\x35\xf1\x96\x48\x0e\x40\x3f\x69\x7f\xf8\x93\x83\xf9\x39\x4c\x3a\x07\xc8\x3e\x18\x92\xff\xe2\x2e\x89\x03\xa8\x20\xad\x87\x6c\xd2\x7a\x88\x23\x7d\x7f\x90\xe2\x7a\x0d\xb3\x05\x60\x0b\x3e\xfe\xca\xaf\x06\x40\x78\xf5\xd2\x45\x67\x2f\xc0\x48\x61\x18\x9e\xdb\x78\xc2\x2d\x15\x0f\xf6\x7e\xb3\x0f\xc0\xaf\x67\x28\xa8\x61\x64\x07\xdb\x4d\x4b\x45\x79\x75\x5b\x61\xb7\xbd\x95\xa8\xb5\x36\x0f\x11\xed\x2e\x23\x46\x50\xff\x4c\xfc\x1a\x38\x22\x51\xaa\xaa\x42\x7c\x7a\x35\x50\xca\x68\x83\x7f\x28\x21\x7a\x16\x08\xca\x9f\x91\xcd\x24\xba\x56\xc5\xcb\xfd\x94\x71\x22\x72\xde\xf1\x54\x1c\x92\x48\x20\x9a\x76\xae\xc9\xdd\x14\x2b\x22\xea\x0c\x99\xc9\x55\x8a\x6d\x25\x32\x8d\x36\x2b\x84\x89\x3c\x23\xb2\x4f\xd7\xc9\xaf\x0a\x5b\x10\x3d\x57\xe3\x65\x92\xff\xe6\x1e\xf8\x11\x20\x4e\xfc\x2a\x98\x0f\xf0\x69\xfa\x8f\x7d\x70\xe8\xff\xe0\x80\x56\x49\xfc\xc7\xb7\xf5\x9a\x64\x47\x1a\x37\x35\x89\x03\x08\x07\x38\x43\x41\x39\xef\x13\x0f\x70\xa5\xe1\x40\x96\x5b\x12\x80\xe0\x56\x5a\x3a\xfb\x10\x00\x29\x77\xfa\x20\x8b\x54\x18\x56\x16\x61\xe1\x32\x3c\x02\x09\xda\xf7\xb9\xf6\xe8\xb6\x41\x88\x01\x3d\xb7\xb8\x56\x0c\x38\x58\x3d\xe7\xfd\xaa\x71\x09\x2c\x1c\x5b\xf9\xa6\xd5\x0a\x40\xc8\xeb\x8d\x10\xaf\xf2\x30\x30\x86\xa4\x08\xdf\x54\xf4\x81\xbd\xb1\x8b\xa2\x9d\xf2\xfc\x44\x44\x7a\xb6\xf8\x59\x59\x59\x62\x5f\xd1\xa0\xe4\x88\x34\x0f\xb1\xab\x2a\x46\x92\x20\x79\x8c\xd8\x78\xe7\xa4\x94\xa2\xf8\x5e\xe2\xed\x07\xdd\x52\x3b\x45\xba\x88\x6d\x4f\x5e\x4b\xee\x14\x5a\x20\x0e\xbf\x61\x16\x0f\x15\xbc\x49\x9c\xf8\xcc\x21\xa6\x21\xb8\x9b\x38\xb7\xf0\x40\xf4\xb6\xa0\x11\x71\x06\x33\x2a\x26\xc1\x5f\x0f\x2a\xc4\x65\x81\x61\x00\xfc\xef\xdf\x13\xff\x67\x0e\x06\x69\x3e\x6a\x5e\x93\xd6\xff\xd9\xf5\x9a\xb6\x85\xc4\xbf\x90\xd6\x87\x0f\x89\x1b\xb3\x77\x59\xaf\xce\x89\x00\x17\x3b\xf6\x5a\xd8\x7a\x00\x70\x54\x1c\x39\x64\x39\x09\x20\x5a\x47\xeb\x68\x7a\x00\x40\x2e\x92\x5e\x42\x77\x16\xa6\x54\x69\xaf\xdc\xd5\xd6\x82\x9b\xba\x43\x6c\x08\x32\xff\xa0\xb6\x0f\xaa\xac\x83\x39\x22\xc8\xfc\x83\xe2\x27\xf0\xf6\xb7\xe4\x1d\x96\x2f\x03\x97\xb0\xcf\x7c\xee\xb2\xe1\xa0\x17\x7f\x43\xe0\xa0\x8c\x3d\x30\x66\x7e\x12\x56\x90\x58\x03\x95\xfc\x71\x01\x6f\x89\x33\x40\x5b\x59\x22\x1c\x21\xa6\x07\x7b\x6f\xf7\x8b\x78\x8a\x28\xc1\xb1\x7b\x99\xc2\xda\x42\x66\xc0\xf4\xf0\xad\x60\x97\x20\x3f\x9c\x1f\x6e\x10\x3a\xc6\x9f\x0d\x12\xef\x22\xf8\xd7\xf8\xf9\x40\x78\x72\x54\xc0\x85\x8f\x0f\x2c\xe7\xf6\xf0\x49\x10\xbc\xff\x07\x07\xb4\x7f\xbd\xd6\x92\xf2\x50\x8a\x91\xeb\x35\x9d\xc4\xc5\xc4\x3c\xf8\x93\x83\x71\xf9\xb9\x5e\x2d\x1c\xd6\xab\xcd\x01\x80\xf3\x31\xbb\xe6\x2c\x92\x01\xd8\x2e\x1c\x3c\x61\xca\x04\x20\x94\x7a\x6a\xa7\x9e\x34\x80\x4c\x25\x5d\xb0\xe6\x25\x20\x2a\x0f\x5f\x42\xa8\xd5\xc0\x92\x7a\xe3\xe5\x6a\xd5\x04\x78\x6f\x48\xcb\xa4\xa9\xbc\x0c\xef\xcc\x7c\x98\x95\x95\x16\xa1\xcd\x61\x0f\xfb\x7e\x05\x2d\x68\xf4\x08\xe3\xd8\x2b\x17\x03\x37\xfc\x9f\x71\x8a\xcb\x72\x43\x42\x24\x1d\xf7\x0f\xa9\x4e\x48\x8d\xa7\xe2\x76\x15\xd7\x84\xfc\x8c\xdb\x5c\xb2\x62\x6f\x21\x24\xdf\x85\xa7\x58\xc4\x1f\x22\xcb\x35\xb9\x31\xc2\xf5\xe0\x5e\xd3\xcf\xcb\x2e\x18\x06\x7e\x77\xdf\xf2\x68\x0a\x1e\x01\xe3\xce\x14\x3e\x5e\xbe\x3e\x08\x7a\xc2\xc6\xdd\xca\xf7\x18\x4c\xdf\xb4\xf0\x8e\xf1\x5a\x41\xf8\xfb\x1b\xdc\x41\x00\x14\x7c\x82\x47\x7f\x3d\x17\x67\xf0\x62\x7b\xb6\x6f\x01\x60\xa8\x11\x31\xa2\xf2\x03\xe0\x19\x14\xd9\xb7\x2f\xee\x1f\x1c\x44\x95\xd4\x8d\x53\xe7\x00\xb4\x12\xe5\xc5\xce\x67\x02\x18\xfd\x54\x5a\x63\xd4\x03\x30\x8f\xd6\xdc\xc9\xad\x08\x60\xb5\x4f\xef\x9a\xc8\x13\xc8\xb7\x4a\x30\x4b\x56\x5c\x82\x0b\xd6\xbb\x6c\x18\xb5\x15\x89\x49\x96\x99\x9e\xc1\x66\xe2\x04\xa2\xd9\xf6\xc8\xed\x76\x8d\x04\x4e\xe3\xdd\x19\x6a\x1e\xf6\xf8\x58\x7d\x8b\xb2\x2a\xff\xc3\xb8\x2e\xed\xcf\x77\xb9\x43\x7b\x70\x0c\x1a\x0d\xbd\x27\xa2\xb6\x63\xf1\xaa\x1d\x2f\xcf\x45\xb5\x63\x87\x95\x05\x26\x94\xae\x86\x62\x96\x15\x55\x97\x32\xe3\x47\xb1\x0f\xe5\xed\x11\xef\xa3\xda\x71\x05\xb2\x78\xd4\xe1\xe0\x05\xdc\xa2\xac\x3d\x2a\x29\x90\x6e\xde\x53\xee\x1b\x6a\x3a\xe0\xc8\x37\x59\xf9\x20\xb4\x83\x6f\xf4\x78\xa3\x02\x13\xfa\xad\xb7\xfe\x5b\x49\x45\x33\xcc\x69\x2f\xda\x67\xd7\x94\xb6\x62\xe2\xdd\xab\x9e\x44\x29\xef\xc3\xdc\x73\x7b\xd2\xa3\xa1\x1c\x87\xe5\x70\x6e\xed\x78\xa6\x6c\x8d\x6d\xb1\x9f\xbb\x5f\xa8\xa2\x83\xbd\xed\x60\x01\xb0\xc5\x47\x30\xea\xd7\x3c\xd0\x7a\x8a\x7a\x6f\x2f\xdb\xe4\x20\xf8\x02\x85\x38\xf7\xe1\x00\xa4\x1e\x8b\x04\x1d\xce\x05\x50\x05\x09\xc4\x29\x53\x00\x83\x67\x72\x54\x17\x99\x00\x4c\xa5\x14\xdf\x33\xaa\xff\xc3\x97\x43\xd4\xf5\x16\xa3\x80\x1b\x76\x1c\x26\xf2\x8a\xea\x1b\xf9\x28\xca\xd6\x43\x1e\x22\x96\xf7\x09\x89\x16\x71\x11\x5e\x2e\x42\xf8\x2a\xd3\xe1\xb4\x16\x3f\x26\x1c\xd2\xf0\x48\xd9\xcf\x10\x57\xdc\x3e\xdd\xd1\xa6\xa4\xab\xa9\xd8\x4a\xcd\x9e\x5e\xc1\x58\x0a\xcc\x23\xf5\x84\xd7\x17\x93\xf2\xb0\x5b\x94\x27\xbe\x0c\x27\x30\x63\x7a\x14\xaf\xac\x1e\x49\x20\x60\xb3\xe4\x6f\x23\xf2\xa2\x0f\xe0\xe8\xe4\x06\x91\xd6\xe1\xaf\x11\xb3\x72\x0b\xc8\xef\xa1\x96\x64\x0e\x66\xf2\xb2\x42\x0b\x0a\x17\x10\x31\x12\xa9\xb4\x1f\xed\xef\x27\xf9\xbf\x38\x98\x6e\x05\xe5\x04\xac\x9d\x93\xd0\xbd\x5c\xd5\x63\xd8\x28\xc7\xf1\xe6\x05\xb5\xfd\xd8\x24\xc7\x09\x80\xad\x33\x02\xbf\xd7\x03\x99\x83\xf8\xdb\x13\x23\xd3\x2a\xfc\xf5\x70\x1f\x80\x7a\xaf\xf8\xa3\x53\xbb\x01\xf4\x03\x65\x54\xe8\xe6\x00\x2c\x22\x15\xb7\x32\x51\x00\xd8\x3e\x54\x5e\xe1\xb0\x07\xb0\xd7\xd7\x8e\x11\xd9\x0d\x2d\xf6\xc9\x46\x28\x05\xc1\x8d\x7c\x94\xad\x76\xb2\x6e\x43\xb6\x99\x04\x73\xab\x81\x50\x16\xb7\x23\x78\x5b\x73\xe1\x54\xc7\x80\x32\x5c\xb2\x51\xf7\xf5\xa2\x88\xdd\x1b\x5c\x10\xb3\x56\x6b\xaf\x7c\x42\x08\x46\x57\xbd\xe6\x6d\x56\xaa\x36\xfa\xa3\x4a\xd0\xf4\x85\x74\x17\xf4\x5d\xa5\xa8\x95\xb9\xf4\x3e\xb2\x1f\x08\xbd\x24\x9f\x8a\x58\x8d\x32\x5f\x44\x29\xec\x47\xde\x0d\x5b\x9b\xe4\x51\x12\x43\xce\x87\x0d\xbf\x9f\x55\x1a\x40\x5d\x0b\x4e\xde\xc8\x43\x21\x71\x30\x8f\x85\x54\x29\x30\xbc\x5e\x2d\x64\x0e\xe6\x3e\xbb\xfa\x2d\x8c\x9d\x17\x2f\x99\x83\xb9\x73\x5f\x7d\x0c\x6b\xec\x7c\x0b\x60\x1b\x27\xff\xc8\xaf\x79\x38\xd7\x2b\x50\xbf\xfd\x2d\x00\x87\xb3\x20\xd7\x9e\x8f\x00\x02\xdf\x05\xa6\xf7\xcf\x01\xc8\xd5\x0b\x57\x1f\xe1\x00\xd0\x78\x2a\x62\x7d\xbc\x07\xc0\x84\x55\x0c\x77\x76\x10\xc0\x26\x5a\xae\x9d\xd1\x00\xc0\x5e\x5d\x59\x99\xc3\x13\xc0\x85\x55\x33\x48\x44\x19\xda\x5c\x29\x0c\x12\x15\x2a\x88\x04\x17\x25\x0b\x7d\xbd\xe6\x8d\x7c\x14\x6a\x5b\xa1\x60\x1a\xcf\x1b\xf8\x9d\x96\x7e\xc9\x4c\x21\xf4\xd8\x4f\x26\x4f\xae\xd3\xc6\xe4\x63\x66\x0c\xce\xdd\xf5\x4f\xde\x8a\xa1\xd3\x9e\xee\xc3\xa7\x3b\xa0\x7b\x35\xce\x8e\x38\x67\x8c\xa2\x30\xaa\x9a\x3f\x3a\xb3\x8b\xd1\x2d\x4a\x11\x2b\x8b\xe9\x0f\xc8\x7e\xa0\x55\xac\xa2\xf6\x1a\x31\xae\xe2\xfb\x59\xe5\x10\x84\x71\xec\x77\xb2\x17\xe8\x4d\xa8\x1a\x15\xd2\x25\xea\xf6\xf0\x15\x35\x6b\x94\x59\xe8\x14\x39\x0f\xa5\xab\x5a\x1d\x8b\x8e\xf6\x7f\xf1\x2f\x0e\x26\x4e\xb3\x03\xf3\xd4\xe3\x62\xed\x67\xad\xa3\xd8\xd3\xae\x48\x80\x9d\x5a\xbc\xbf\xdf\xab\x6d\xf4\xff\xc9\x1c\x84\x32\x7f\xd8\xfe\x44\x00\x05\x6b\x81\xcf\x87\x3e\x6c\x7a\x62\x2c\xee\x8b\x97\xd3\x9d\x06\xb0\x33\x95\xb5\xbf\xd2\xb0\xe9\xcb\xf1\x44\xa9\xef\x12\xb1\x26\xfb\x72\x88\xa3\xee\x2f\xcc\x27\x0d\x2d\x09\x75\x4e\x09\x4e\x3b\x1d\x9d\xf1\xfd\xf6\xd1\x01\x4d\x3e\xfe\x1b\xbe\x20\x15\xb3\x67\x25\xb9\x09\x4b\x18\x47\x43\x85\xbb\xa7\xd3\xec\xd1\x16\xba\xdb\xfa\x73\xae\xe1\x50\xb5\x1a\xf3\xef\xcb\xf3\x0e\x90\xf9\x0f\xf4\x31\x65\xeb\x15\xea\x6b\x5e\x64\x2e\x68\x21\x48\x59\x63\x8d\x2a\xf9\xc6\x24\x9d\xca\xc0\x1a\x3e\xe1\xf0\xc8\x6d\x55\x24\x62\x31\xe6\x28\x99\x83\xe9\x7f\xa8\xb9\x15\x59\x1f\x25\xd7\x2d\xa9\x99\x87\xca\x09\xbd\xf6\xa0\x57\x73\x1e\x7d\x2e\xa8\xac\xe5\xac\x76\x00\x5a\x38\x48\x8f\xcc\xc1\xdc\xda\xab\xb3\x15\x53\xe8\x39\x54\xbd\x5d\xc7\x11\xf3\xc1\x83\x05\x60\xeb\x2d\xae\x92\x3f\xe6\xe1\x3c\x4f\xf2\x5e\x7e\x00\x89\x36\x3e\x31\x1a\x13\x00\x95\xa3\xbc\xef\x0f\x7e\x00\xd0\xb3\x14\x38\x71\x8c\xe1\x1f\x1c\xc4\x84\x38\xe2\x92\x07\x80\xc7\x88\xfc\x24\xe7\x71\x00\xff\x83\xaa\x3b\x45\x22\x61\xc0\xef\xa9\x76\x8f\x3c\x96\x38\xeb\xb3\xc5\xd4\xd5\x20\x8a\x50\xe7\x7e\xca\xbe\xd5\xb1\x0f\xaf\xee\xac\xe6\xd3\x15\x30\x8f\x1d\xb3\x5b\x8a\x5b\x8e\xa5\xc2\x94\x59\x74\x16\x57\xa4\xe6\xa2\xed\x8c\xc3\x9b\x8c\xb2\xef\xa3\x02\x75\x3f\x3c\xbd\x5e\x40\x81\x9c\xd0\x6c\xfd\xf0\xae\x48\x79\x83\xff\x20\x71\x41\x08\x29\xe5\x8e\x15\x89\xac\xd1\xe9\x65\x55\xe5\x55\x97\xb4\xc9\x8f\xe1\xea\x51\xab\x2f\xd3\xb6\xbe\x7c\xa6\xe9\xbd\x16\x94\xdc\xf9\x2f\x2f\x10\xaf\xb6\x15\x4a\x21\xbc\xa6\x35\x50\x87\x1e\x55\x1f\x5a\xd3\xb8\x43\x57\x09\xbd\x35\x84\x8a\x9c\x07\x73\xe3\x94\xde\x6e\x8c\xa1\xf7\x64\xe9\x73\xfd\x16\x4c\xbe\x57\x28\xc0\xb6\xed\x5c\x72\xbf\xe6\x81\x69\x27\x6f\x19\x55\x2a\x00\xcf\x3d\x1e\x99\x5f\xeb\x41\xe6\x34\x2f\x2d\xcd\x55\x00\x75\x56\xbe\x1d\x87\x3a\x00\x4c\xf9\x04\xcc\x4e\x18\xfc\x23\x1f\x85\x20\xd1\xc0\xe0\x00\xe0\xfb\x49\x4e\x9d\x33\x0d\x20\x38\x5b\x29\x48\x98\x1d\x9e\x87\xa4\x69\xaa\xc8\x8f\x13\x7f\x04\x7d\x35\x8a\x34\xdc\x47\x28\xf6\x55\xb1\x41\x3b\xbd\xc2\x75\xb8\x97\x7a\xb8\x84\x02\xd9\x17\x84\x5e\xb2\xe6\x2a\xb4\xce\xba\x8c\x8a\x36\xc1\x35\x55\x15\x34\x21\x35\xf4\x5d\x06\x18\x4a\x97\x11\x2d\x9a\x84\xcf\xb1\x65\x6d\x7f\xe7\xa1\x2c\x64\xab\xde\x5e\xce\xcf\x41\x8e\x9b\x69\x8a\xaf\x9c\xcc\x11\x7a\x43\xad\xa5\xbd\xaa\x91\x31\x32\x60\xa5\x3d\xb7\xc6\x9f\x1a\xf9\xa8\x51\x27\x0b\xc1\x94\xe8\xd3\x31\xae\x2b\x83\xf8\x1e\xc7\xd6\x72\x42\x2f\x07\x59\x7c\x75\xa2\x61\xbf\x81\x02\x6a\x47\xd4\xd1\x1a\x1e\x03\x69\xd4\xb7\x50\x11\x32\x07\x53\x56\x67\x10\x8c\xd9\xe9\xe7\x5a\x34\x60\xd8\x8a\x91\xf3\x59\x05\xa0\x74\xe3\xfc\xfd\x7e\x95\xc1\x9e\xd3\x84\x72\x07\x00\xef\x1d\xee\xa7\x7b\xbb\x00\xa4\x30\xdc\xe2\xfb\xf9\x36\x3d\x31\x1b\xb9\x18\x37\xf9\xd2\x4f\x9d\x07\xf0\x7a\x2c\x9a\x76\x69\x04\x20\xf0\x89\x0c\x25\x87\x0a\x40\x84\x95\xe2\x7e\xe1\x07\xd0\x1f\xd5\xad\xee\xa0\xf0\x89\x38\x17\x41\x63\x20\x66\xb8\x93\xe0\x19\x88\xb7\xce\x73\x3d\x8c\x0b\xf2\x68\xf7\xd8\x19\x21\x8a\x69\x73\x39\x76\xd5\x3c\x95\x03\x75\xdf\xf6\x49\xe1\xc9\x02\x3e\xa4\xa9\x99\xfb\xdd\xb5\xeb\x69\x08\x31\xfd\x85\x61\x93\xca\xfe\x35\x49\xad\xe4\xa9\xb9\xea\xef\x6b\x55\x1a\x97\xe6\x99\xab\x9e\x23\x30\x6a\x3a\x8b\x7b\x4a\xdb\xa6\xc2\x34\xad\x96\xb8\x8b\xe6\xc6\x54\xb5\x29\x97\x03\xf2\x88\xcf\x9e\xe9\x9e\x59\x91\xcb\x49\x7e\xcc\xa8\xe7\xbe\x9a\x9c\xf1\xbe\xa3\x4f\xdf\x71\x2d\x29\xe5\xfd\xdf\x5e\xa0\x1a\x7a\xa3\xe7\xc8\xf2\xe8\xc8\x0d\x0e\xa6\xd0\xc8\x1d\xcd\x1d\xfc\x94\xcc\xc1\xe4\x2a\x99\x0c\xa2\x97\xfc\x33\x01\xf6\x99\x73\xfc\xf6\x6f\x33\x29\x72\x05\x51\x09\x03\x08\x30\x73\x5d\xd9\x1b\x04\xa0\x18\xcc\xad\x4f\x73\x7b\xd3\x13\x63\x61\xce\xad\x7d\xf4\x14\x80\x6b\x2d\xff\xc1\x33\xa7\x00\xfc\x9e\x0b\x99\x5d\x28\x05\x08\xbf\x25\x31\xce\x96\x0e\x10\x3d\x2d\x27\x20\x98\x06\xcf\xe3\x84\x55\x83\x14\x74\x89\x53\xb1\x66\xba\xab\x86\x8d\x04\xe7\xf0\x35\x0b\x9c\x6b\x3a\xce\xce\xd7\xdc\xf5\x43\xe4\x69\x8c\x8a\x9b\x79\xc4\x70\xfa\x12\xca\xd6\x9e\x39\x5f\xbf\x88\x0a\xc1\x68\xf1\xb3\xc9\xe2\x06\xeb\x2a\x18\x74\xbd\xd8\x52\x83\x59\x99\xd4\x16\xf8\x71\xa8\x9e\x95\xec\x07\x9a\xdf\xae\xb9\x75\x41\xbd\xbc\x6b\xbc\x4e\x67\xff\xa2\xde\x75\xab\x97\x61\x7a\x86\x4b\xd1\xc5\x34\xfd\x82\xfa\x73\xcb\x3f\xf3\x22\xda\xcb\x8d\x4e\xac\xac\x5d\x43\xb5\x29\x19\xf6\xae\x09\xa4\xdd\xfe\xdb\x0b\x54\x61\x6a\x6a\x8b\xf4\x8c\xf9\x52\x7a\xc6\x54\x0e\x65\x10\x79\x80\xec\x05\xca\xcd\x32\x4b\x44\x33\x87\x44\x66\x7d\x30\xfb\x89\xbe\x15\x18\x01\x70\xda\x9a\x87\x7d\xeb\x5d\x00\x36\x41\x4e\xd5\x5d\xb9\x9b\x1c\x84\x8a\x28\xd7\x63\x9a\xb5\x4d\x4f\x8c\x2d\x2b\x57\xfb\xd1\xd7\x00\x1e\x1a\xbc\x39\xa7\x5d\x00\x82\x3b\x04\xd4\xcf\xcf\x00\x44\x67\x88\x64\x32\xe5\x00\x24\xee\x92\x31\x10\x64\x83\xcf\x29\x63\x4a\x31\x72\x78\x22\x32\x45\x4c\xeb\xbd\x41\x35\xc1\x2b\x76\xb7\x19\xab\xab\x11\x6e\x7f\xc8\x19\xe7\xa8\x68\x3a\xb4\x8d\x57\x4a\x48\x53\x8e\x1f\x92\xd5\xe9\x68\xee\xcb\x72\xf6\x8d\x7c\x18\x23\xa3\xa7\xcf\xf1\x77\x04\xfe\xf6\x03\x7d\xcb\xd4\x79\x32\x27\x5a\x13\xfd\x26\xdb\x80\x75\x7e\xb1\x2a\xe6\x89\x9a\x91\xee\x62\xc1\xf5\x77\x9d\xad\x26\xe7\x97\xc6\x8b\x70\xad\x63\xa6\xcc\xcb\xc8\x7c\x51\xb2\x17\xa8\x9a\xd3\x3c\x78\xcd\x31\xad\xbd\x4a\xd8\xec\x16\xc2\x30\xc9\xba\xb8\xc9\xa2\x14\x81\x88\xbf\x97\xff\xd9\xc2\x1c\xf9\xed\xea\xb7\xec\x7a\x8b\x8f\xa8\x88\x88\x82\x0c\x1f\xcb\x53\x68\xce\x90\xd2\x94\x0b\x56\x99\x68\xcb\xe0\x12\x80\x73\x81\x9c\x55\xdb\xd9\x37\x39\x08\x31\x06\x8e\xe0\xbd\x2f\x00\xd4\xd9\x38\x1b\x68\x66\x37\x39\x08\xb2\x27\xc6\x8f\x96\x53\xef\xc4\x0b\x80\x88\x55\xbe\xdb\xe7\xeb\x00\x12\xf8\x85\xaf\x31\x6f\x07\x48\xbf\x24\x29\xc4\xb7\x08\xab\x99\x5d\x0a\x17\x64\xb5\x89\x2b\x19\x69\x9a\x4e\x06\x28\x42\x55\x8a\x9e\x91\x90\xf3\x6e\x1c\x6d\x34\xad\xbd\xf7\xd5\x6e\x54\x87\x9f\x60\x80\x6b\xc1\xb9\xb5\x19\x37\x95\x2c\xfd\xea\xa5\x95\x8b\xb6\x6a\x4d\x3a\x4d\x5b\x96\x0e\x1b\x37\xbd\xb5\x6c\x4b\x59\xac\xd5\xdf\xf5\x9d\xee\xde\x91\xc5\xa3\x3a\x2f\x7f\x9e\x6a\x94\xf9\x10\x6c\x30\x36\xbb\xbf\xde\x66\x90\xd6\xe4\xf6\x5c\xe1\xad\xed\x3d\x0e\xa6\xd6\x0b\xed\x95\x7b\x5b\x03\xcc\x77\x2f\xdd\x2c\x39\x73\x87\xc3\x1c\xb5\xdc\x53\x60\x75\xf3\xb4\x65\xee\xca\x68\x4e\x58\x05\x9d\xe5\xd8\x2a\x2e\x63\xba\xe8\x83\xf5\xc5\xb5\xbe\xd4\x4c\x32\x07\x93\x6d\x64\x95\x88\x7c\x1a\xdd\x98\xde\x66\xdd\x8a\xe2\x8a\x4a\x4f\x76\xb4\x1e\x43\x11\xc3\xf6\x27\xa0\xad\x97\xd1\x8e\xc1\x71\x00\x17\x59\x38\xe7\x77\x24\x01\xb0\x13\xd9\x93\x77\xcd\x02\x88\x1f\x66\x49\xde\x73\x08\x40\xcb\x82\x43\x9e\xa6\x79\xd3\x13\x43\xe6\x20\x02\x0d\x38\x6d\x4f\x36\x00\xc4\x52\xf3\x9e\x3c\xaf\x09\x90\x5a\x2a\x30\xc5\x78\x09\x20\xdb\x4d\xb4\x82\x9b\x1f\x26\xf3\x10\xf2\x34\x72\x18\x38\x9f\xbf\xa4\x2a\xad\xdb\x45\x08\xbe\x66\x65\xc0\xee\x32\x87\x7d\x99\xf8\xc6\x56\x38\x96\x03\x75\x38\x50\xd6\xaf\xa6\xb8\x6a\x35\xc8\xeb\x73\x6a\x4d\x7d\xcf\x52\x98\x03\x75\x23\x65\x9b\xc7\x7c\xab\x29\xee\x9d\x65\x97\x14\xd9\x0f\x34\x79\xcb\xb0\x78\xfa\x41\x8b\xe0\xf3\x09\x33\xaa\x9f\xb5\x8d\x59\x8f\xb6\x9a\x4f\xce\xe9\xd6\xf2\xdd\x3b\x6b\x45\x31\xff\xa8\x3a\xa5\x41\xcc\x7a\x7a\xd1\xa6\x7c\xfc\x66\x9a\x75\xc8\xb2\x73\x11\xe5\x75\x1a\xdb\x84\x15\xbf\x3c\x9b\xa2\x46\xdb\xd4\x55\x8b\x6b\x4f\xf2\xa6\x6d\xa9\xd6\x6a\xd3\xf8\xb2\x70\x76\xc7\x11\xca\xc9\x1e\x69\x6f\x6d\xbb\x91\x6e\xb1\x6f\x12\x9a\xec\x5f\x23\x9f\xc5\x6c\x89\x3f\x68\x77\x07\x75\x23\x42\xfc\xaa\x86\x7d\x17\x9a\x21\x54\x13\xe0\xa2\x36\x67\xdb\x8e\x6b\x00\x9c\x37\xd9\x24\x76\xd5\x02\xc8\xa1\xd9\xbe\x50\x97\x02\xe8\xe9\xb0\x4d\xd1\x14\x03\xd8\x74\xb2\x4e\x1e\x1c\xfb\x47\x3e\xca\x55\x76\x8b\x13\x95\x00\x89\x47\x38\x2d\xce\x2e\x02\x64\x4d\xf1\x55\x33\x34\x01\x14\x4e\x89\x44\x71\xe3\x01\x4a\x9f\x49\x6f\x97\x32\x07\x81\x32\x55\x25\x53\x1d\x3a\x82\x79\xd1\x49\xdd\x7e\xb7\x43\xd8\x82\x2c\x41\xab\xb3\x71\xbd\xc8\xd5\xab\x08\x4f\xb3\x12\xd7\x15\x39\xdf\xba\xe4\xb7\x4d\x4c\x0b\x55\x8e\x9f\x9b\xfc\x3b\x5e\x91\xfd\x40\x33\x12\x26\x36\x5f\x52\x7b\x78\x5f\x57\x58\x84\x7c\xbb\xff\x40\xb5\xaf\xcc\x4a\xfc\xc7\xab\xe6\x43\x6d\x6c\xb6\xfd\x33\xc3\xb7\x47\xee\x28\xda\x89\xcc\x8d\xde\xca\xaf\xfc\xe4\x60\xba\xb8\xa5\x32\xa1\x58\xd9\xf1\xcb\x92\xe1\x75\xbd\x42\x67\x87\xce\xe5\xe6\xc2\xe8\x6b\x62\x4e\x74\x2b\xb3\xb9\x94\xa9\x48\x27\xe7\x35\xee\x8c\x96\xe4\x1a\xc7\x9b\x08\xde\x94\xb3\x89\xfb\x1c\xf1\x88\x86\xc4\x71\x32\x07\x13\x61\xec\xcc\x87\xd2\x89\x92\x0f\x3f\xec\x24\x80\xde\x1a\xa6\x0e\xc0\x30\xc1\xf1\x90\xf2\x0c\x00\xbf\x01\xfb\x85\xdd\x18\x00\x79\x29\x56\x02\x35\x27\x80\x41\x33\x53\xf3\x3e\x3d\x00\x3b\x1d\x66\x87\x03\x72\x00\xbe\xcf\x99\x3b\x0e\xc7\x00\x44\x59\xb0\x7d\x39\x29\x01\x90\x71\x98\xfd\xc7\xd9\xc9\x4d\x4f\x4c\xf9\x3b\x81\x40\xf6\x0c\x80\x1b\x9d\x12\x45\x12\x13\xa0\x56\xbb\x47\x7e\x97\x96\x05\xa1\xe7\xa6\x91\xc6\x21\x47\x61\xec\x64\xb1\xb5\xa9\x60\x8c\x1b\xf2\x60\x8a\xac\x9b\x57\x79\xf7\x92\x46\xc8\xae\xd8\xd3\xf7\x52\x67\x7d\xdd\x1b\x1a\x04\x1e\xff\x20\xfb\x81\x3e\xf2\x5a\xcd\x7e\x2a\xec\x3b\xdc\xcf\x65\x87\xf8\x3a\xd5\xe5\x76\xcf\xc0\x31\xe9\xfb\xf7\x7b\x0b\xb5\x48\xe7\xd6\x9f\x0f\x9b\xbe\x55\x1e\x74\xe9\x9a\x1d\xad\x7f\x57\xfc\xce\x25\x7f\x81\xa3\x5a\x2f\x3b\xd8\xf5\xcb\xd2\xb1\xb2\xc8\xcc\x7a\xd7\xcc\x65\xae\xe2\xdb\x29\x06\x6e\x9c\x2b\x9e\xf9\xe7\x12\x18\x5d\x5f\xac\x4e\x66\xc9\x93\x39\x98\x28\x03\x37\x36\x44\x78\x12\x32\x74\xda\x6d\x11\x29\x12\xaf\x18\xc2\xe4\x26\x89\x5c\x8d\x0e\x0b\xbc\xe5\xaa\x86\xfa\x1a\x7e\x06\x80\xe9\x3a\x6b\x2a\x65\xf3\x3f\x38\x88\x8b\xcc\xe7\xf7\x5e\xde\xe4\x20\x1c\x72\x19\x76\xed\x73\x04\x08\x2a\xbf\x9c\x4a\xf3\x12\x20\x31\xf4\x0a\xdf\xe1\x39\x80\x9c\x20\xe6\x07\x27\x91\x00\x65\xa3\x1c\xdb\xce\xa3\x00\x6a\x2d\x78\xcf\xb0\xb8\x01\x34\xee\x10\x55\x12\x33\x05\xff\xbb\xcc\xd2\x3f\xd4\xe5\x08\xcd\x77\x43\x55\x10\x8e\x1e\xd8\x91\x3a\x27\xfd\xde\x18\x65\xc4\xa7\x12\x57\x3b\x5c\x85\xdb\x02\xcf\x55\xa5\xf0\xce\xae\x94\xef\x5c\x7e\x98\x3a\xa9\x17\x0e\x9f\x91\x4e\xac\x6f\xf9\x5e\x7f\x7c\xbc\xe0\x36\xfd\x91\x77\xf0\x67\x63\x89\x77\xdc\x67\xe6\xbe\xa4\x1b\x05\x5e\x4b\xdf\xa2\x3a\x8c\x8a\x29\xbd\xdb\x7f\x0c\xb6\x94\xe4\xf0\x7a\x7f\x9f\x35\xbd\x1d\x91\xce\xe4\x23\x38\xef\x78\x6b\x57\xea\x1e\x6f\xba\x05\x4c\x95\xf1\x86\x17\xe8\xbd\x77\xe1\xca\x91\x82\xee\x7f\x71\x30\x92\xde\xf4\x08\xc7\xe4\x08\x7f\x41\x2f\x13\xa4\x4a\xfc\x6e\xbf\xcb\x9e\xaf\x90\xc3\x31\x26\xbe\x44\x0f\x01\x54\x64\xa4\x0d\x00\xf3\x3b\x56\x29\xaa\x13\x00\x22\x44\x26\xc6\x5d\xd5\x00\x1a\x1f\x18\xf5\xf7\x0a\x02\x58\x28\x30\x1c\xa3\xe6\x00\xf0\x70\xbe\x60\xbd\x77\x3b\x40\x14\xc7\x85\x85\x7d\xd5\x9b\x7e\x94\x52\xfd\x2b\x5b\x8e\x11\x00\x6a\xe3\x99\xac\x4f\xcf\x6c\x7a\x62\xda\x99\x85\x8e\x0a\x5f\x81\x96\x87\x45\xe2\x0e\x4a\x3a\x84\x6f\x3d\x0c\x0a\x6d\x76\x29\xd8\xc9\x8e\x2c\x2d\xb7\x68\x51\x04\x7d\xa3\x8e\x85\xeb\x0d\xe6\x59\x54\x21\xda\x8f\xb7\x17\x26\x1e\x45\x1d\xac\x76\xfd\xe0\xd2\x13\x11\xec\xf3\xa2\x76\x4c\xa1\xf6\x7e\x58\xed\x28\xd5\xcb\x2f\x45\x27\xc3\x11\x13\x7a\x4f\xdf\x66\x38\x85\xbf\xfa\x1a\xf4\xb0\x2a\x49\x33\x2c\x79\x5a\xed\xbe\x54\x5c\x4f\x48\xd3\x8c\x66\x93\xe7\x55\xea\x90\xe8\x39\xcb\x7a\xa6\x88\xec\x60\x9f\x05\xb1\xea\xd1\x0d\x2f\x50\x43\x00\xc5\x72\x77\xd1\xf1\xe0\x63\x7e\xdd\xab\x14\xb9\x82\x01\xf7\xfd\x43\xd7\x76\x66\xce\xf9\x3f\xf4\xdb\xb5\xf6\x35\x8d\xd2\xef\x84\x8f\x28\xf2\x68\x02\xbd\xaf\x8e\x37\x1f\xf2\x46\x2c\xab\x97\xa3\x4f\x14\x2a\x39\xf2\x32\x00\xfb\x4f\xa6\x18\x4a\x02\x80\x54\x3d\xc3\xe0\x2e\x13\x00\x1d\xa6\x8b\x65\xbb\x5c\x36\x73\x10\x02\x2e\x9f\x5b\xd8\x3d\x0f\x10\xb3\xb4\xee\x05\xc9\x33\x5d\xf7\x20\xdc\x72\xd9\xb2\xe7\xf7\xbd\xd7\xdc\x8b\x87\x0f\x8b\x6c\xfa\x51\x06\x9e\x71\x85\xb2\x25\xc2\xc2\x2b\x5b\x61\x7f\x59\x1c\x51\xf5\x6d\x9d\xb4\x81\xc5\x35\x9c\xc4\xdb\x1e\x65\xa3\x88\x1d\x08\xd9\xa1\x4f\xfa\x5b\x2a\xc3\x66\xae\x3c\x74\x73\x10\x7f\xa2\xd6\x91\x59\x19\x7b\x4d\xee\xb3\x54\xa1\x51\xe1\xc8\x40\xd1\x04\x2a\xbd\x21\x67\xe4\x9d\xed\x6b\x7c\x82\x6c\x56\xef\xc4\xe9\x01\xc1\x98\xc1\x94\x3d\x5f\x1f\x3e\xbc\x12\x31\x9e\x72\x6d\xda\xf6\x3e\x45\xa8\x77\x52\xca\x4c\x63\xa3\x5b\x48\x4d\xac\xe8\xfc\xd9\x5a\x9a\x40\x9f\x18\xbb\xc5\xf0\x8a\x51\x7f\xe5\xab\x1f\x97\x55\x8a\x1b\xfc\x18\xa2\x12\x56\xf4\xf3\x9f\xfa\x74\x45\xd6\xae\x1a\x67\xdf\xf5\x1a\x0e\x27\xac\x0d\xa6\x39\x7b\xe5\x84\xf1\x20\xb4\x93\x7f\x92\x73\x50\xdc\x58\x42\xa9\x50\x51\x91\xd6\xae\x34\xc1\xa5\x68\x9e\x50\x7e\x00\x0e\xc3\xcb\x0a\x3b\x23\x00\x14\x13\xe8\xe5\x77\xed\x04\x30\xf2\xbc\x40\xb3\x4b\x00\xc0\x41\x6d\x97\x0a\xc5\x3f\x3c\x08\x7f\xe7\x20\x90\xbd\x20\x8f\xfb\x28\xac\x7f\x73\x00\xcf\xe8\x74\x0f\x44\x00\x8c\xd5\xb1\x29\x31\x94\x00\x4c\x39\xf2\xd9\x08\xc7\xc3\x96\xc5\x78\x31\x0a\xbd\x3a\x5c\xc7\xca\x8c\xac\x4d\x50\x2c\xa2\x7e\x71\x4d\x55\xea\xfa\xc3\x57\x88\xa9\x65\x4b\xb6\x6e\xf7\xeb\x42\xef\x4c\x63\x45\xde\x7d\x08\x47\xbe\x78\x3f\x3c\xf0\x21\x2f\xf8\x76\x37\xe3\x68\xcc\x8b\xf1\x80\xcc\xa6\xad\x9f\xed\xfa\xd8\x7d\xdf\xd5\xbc\xf9\xd6\xd9\xfe\xde\x67\xa5\xdc\xe2\xe7\x81\xe6\x6f\xde\x49\x85\xdf\xe6\xe4\xeb\x70\x5e\x5c\xb9\xb0\xe0\x7b\xa3\xdf\x03\x97\xad\xbd\x44\x53\xd6\xe0\xde\x99\x19\xb2\x5c\x51\xc4\x48\xe6\x3f\xdc\x06\x92\x98\xd7\x8e\x66\x7a\xb8\x08\x24\xbd\x46\x88\xa6\x9c\x72\x1e\x4e\x88\x45\xac\x25\xdc\x70\x12\x8e\x97\x46\xce\x46\xa7\x39\x9e\x8a\x75\x47\x75\x86\x7f\xb7\x7f\x17\xd3\x87\x36\x0a\x61\x06\xe0\x77\xa2\x7f\x43\x79\x0e\x40\x65\xf6\xfc\x25\x4a\x39\x00\xcb\x38\x5a\x41\x4a\x9f\xcd\xbe\x2f\xd9\x83\xb0\x91\x8b\x62\xbc\x5e\x1f\x6a\x93\xfa\x5e\x6e\xeb\xf5\x8b\x0d\xa9\xff\xa5\x7a\xe1\xe6\x21\x11\x00\x62\x3e\xa7\x2d\x2b\x25\x9c\xc6\x3f\x14\x15\xd0\x2d\x59\x78\x82\x1e\x95\x4d\xf6\x8b\x1b\xa1\x5b\xbd\xa4\xd9\x9d\x53\xd6\x7a\x78\x2e\xc5\x46\xad\x01\x97\xfa\xf3\x6b\x62\xa4\x7c\xef\xb7\x00\xe1\x4f\x63\x6d\x13\x03\x6c\x4e\x27\x3f\x9f\x1a\x9f\x7a\xd2\xeb\x78\xf4\xf5\x91\xaf\x62\xdd\xc6\x8e\x85\xbd\x82\xd3\x69\x6d\x62\x8e\xf5\xf7\xb0\x33\x8d\x77\x84\x1c\x4f\x34\xd6\xce\x6b\xd6\x98\x38\xd2\xd4\xcc\x2d\xc6\x95\xbf\x74\xdc\x5f\x19\xb8\x04\xc5\x68\x07\x8d\x52\xec\x4a\x41\x1e\x95\xfd\x8b\xa2\x47\xab\x75\x59\xf7\xed\xf9\xf3\x5f\xaf\xd5\xa6\x59\xdb\x5b\x5d\x9b\x44\xdc\x48\xfc\x60\xeb\x96\x65\x86\xfc\x1c\x1d\x61\x2b\x93\xa1\x8b\xd2\x8e\xa2\xb2\xd6\x4c\x7f\x89\x16\x08\x69\xb6\x56\x4c\x9a\xc1\xec\xf4\x6f\x00\x10\xaf\xa1\xb5\xda\xfe\x64\xb3\xff\x6f\xf3\x6a\xeb\x12\xc5\x3f\xf2\x30\x32\x48\xf7\x5b\xc9\xf7\xdf\xc9\x39\x08\x64\x3f\x0e\x39\x0f\x03\xf1\x71\x3d\x17\x04\xe0\xac\xf5\xae\x34\x62\x12\x74\x72\x2e\xb0\xdd\x98\xf3\x24\x08\x89\x4c\x6b\x0a\x8d\xee\xc4\xb2\xc9\xf3\xba\xdd\xe9\x76\x43\x9a\xea\x9c\x8e\x9f\x29\xef\x5b\x7e\x62\x3b\x54\x82\x8b\x4e\x9d\x4b\x0c\x9e\xbc\xe3\xe8\x55\xfd\x33\xa9\x46\xb7\x4d\xd4\xe6\xfe\x74\xfa\x3b\xd3\x07\xc2\x66\x9e\x3f\x86\xa6\x0f\xb5\xf6\x9a\x1a\x7e\x3a\x33\xf3\xa2\x41\xc6\x7c\xdf\xf3\xe0\x79\xeb\xea\x09\x8b\xe4\x5e\x8f\xc5\xed\x15\x56\x16\xbb\xdb\x3d\x97\xf5\x0b\x9b\x2c\x15\x9b\xfb\x57\xa8\xf3\x75\x37\xfc\x27\xb7\x6e\xf9\xac\x35\xa6\xe6\x5b\x58\x57\x4d\x21\x1e\x26\xd4\x99\x1b\x96\xb7\x21\x3f\x46\x53\x98\x0b\x97\x8a\xa1\xa2\x22\x3c\xcc\xfa\x8b\x77\xa1\x0f\x85\xb2\x9a\xb3\xe4\x09\xa0\x6b\x02\x2b\xcc\xa8\x73\xb7\x60\xa4\x7d\xab\x01\xe4\x86\x69\x8f\xef\x60\x01\xd0\xfb\xb8\x9d\xf3\xd7\x38\xc8\x7d\x5f\x72\x2e\x0a\xf9\xde\x73\x33\x37\xc5\x1f\x39\x08\xe4\xbe\xd7\xea\xf8\x3f\xdf\xfb\x63\x8d\x01\xce\x5d\xa7\x4e\xff\x81\x85\x46\xce\xed\xac\x0b\x23\x75\x84\x9f\x22\xb1\x4a\xe7\x1e\x1f\xc4\xf5\xc8\x47\x59\x7d\xae\xc7\x63\xa8\x74\xc6\x82\x8e\x66\x03\x22\xd8\x36\x3c\xad\x36\x64\x69\xf9\x7b\xa0\x49\x69\xa8\xdb\xf5\xa5\xe0\xa2\xc3\x95\x07\x6c\x2e\x2c\x7c\xe9\xa4\xba\xc9\x62\xc8\x3f\xdf\x3c\x9d\x51\xd3\xa7\x5b\xb0\x58\xb1\xa0\x5e\x21\xa1\x5b\x37\xfd\x71\xf1\x4b\x49\x84\x3e\xc7\xfb\x1b\xcb\xca\x05\xac\x06\x9e\xcf\xcc\x56\x5e\x5e\x5b\x32\xc8\xe8\xe7\x5e\x3b\x93\xd6\x6b\xf0\xb8\xeb\x0d\x42\x27\xd1\x87\x9c\x7b\x61\xe4\x75\x57\x0f\x69\x1b\x73\xc3\x30\xf3\xb6\x0b\x2a\x20\x7c\xdc\x88\xe6\x16\x27\x9a\x3a\xa4\xce\xb0\xfb\xe6\x7e\x74\x58\x20\xd6\x30\xba\xb2\x02\x73\xd0\xcf\xd2\x70\xa4\x8c\x1b\xe3\xe0\xc3\x03\xa0\x24\x4f\xc9\xf3\x6b\x1c\x96\x3a\x14\x77\xff\xb9\x0e\xfe\xe6\x40\xc8\x1e\x84\xff\xe6\x40\xc8\xef\xfd\x27\x3b\x01\xa8\x52\x29\x28\x46\xb3\xe0\x01\xc7\x53\x96\xe2\x3e\x65\xa2\x9b\x88\xa7\xf4\xdb\x66\x37\xfc\x3d\x05\x41\x23\xc7\x32\x2a\xec\x43\x5d\x4a\xb7\xa3\xc9\x87\xd1\x61\xd6\x2d\xe1\x92\x7e\xa3\x08\xac\xef\x58\xca\xb8\xd3\x0e\x04\xd3\xb5\x0b\x19\x61\x56\xea\xab\x9f\xeb\x6d\x72\x7c\x0d\xee\xaf\x9e\x78\x21\x97\x47\xbd\xe1\xff\x20\x79\x3f\xd4\x1f\x2e\xf5\xaf\x26\xa5\xe5\x6b\xb6\x7d\xb9\xb4\x66\x96\x3c\xb3\xe1\xfd\xb0\x78\x7e\x02\x59\x16\xd5\xaa\xf5\xf4\xe9\x2e\x94\x44\x78\x81\xce\x96\x1e\x43\x54\x52\x98\x9e\xb6\x5a\xe7\x4e\xb4\x4f\x00\x51\x27\xb8\x4d\x0a\x5d\xeb\x8f\x26\xe7\x5e\x68\x8b\xde\xb1\xc3\x10\xdc\xe9\xb5\x8b\xeb\xcf\x61\xf9\x5c\xcb\x00\x7e\x3f\xe6\xbf\xd6\x81\xc5\x7a\x4d\x22\xe5\xfd\x57\x5c\xa6\xf8\x4f\x0e\xe4\xbf\x73\x10\x26\x49\x7d\xad\x77\x53\x00\xb4\x05\xfb\xa0\xef\x39\x2c\xb1\x6b\x30\x64\xb7\x66\x12\x07\x44\x3e\x89\xd3\xde\xb8\x48\x48\x55\x48\xd3\x6c\xbd\xd6\x88\x9b\xd7\x7d\x64\xe3\x18\x35\x89\x35\xb7\x7a\xe5\x65\xe8\x31\x81\x1e\xf3\x4e\x0b\xb5\xb3\xdf\x82\x16\x48\xaa\x8f\x14\xb7\x50\x44\x49\x96\x55\xc7\x4a\x19\x52\x22\x3b\xee\xe3\xe2\xd0\x5a\x12\xc8\x7d\xa3\x3f\x13\xde\xaa\x26\x20\xda\xd7\x7a\x12\x5a\x55\xc2\x91\x7e\x88\xb8\x98\xf7\xca\x7b\x90\x4a\xc8\xdb\xe1\xed\x2a\xd4\x73\xde\xc8\x95\xb0\x35\x95\xba\xcf\xa7\x50\x63\x41\xa1\xaa\xd7\x46\x0d\xd0\x4c\x81\xbb\x55\x27\x5f\x9a\xa2\x1f\xf9\x36\xaa\x16\x0c\x4c\x60\x52\x3c\x1a\x54\xbf\xf4\xbd\xc7\xbc\x75\x5b\x56\xad\xe8\xfe\x8c\x0d\x76\xd2\x56\x9b\x6e\xbf\x85\x75\x74\x66\x52\x5d\xbc\x2f\x89\x45\xdb\x3d\x03\xb0\x24\x79\x7f\xc8\xe7\xc2\xdf\x1c\xc8\x10\x89\x0f\xfb\x33\xff\x1d\x47\xba\xe7\x3d\x45\xea\x67\xbe\x7e\xb5\x5e\x7b\xb6\x01\x50\x44\x51\x50\xb4\x09\x01\xb0\xb9\x5f\xec\xa8\x59\x00\x2e\x11\x1e\x81\xf2\x82\x5c\xa2\xb9\x3c\xaf\xbc\x46\x22\x0b\xe1\xa2\x4e\xaa\x01\x63\x50\x04\x6e\xde\x92\xc5\x96\xc7\xa5\x06\xfb\xd4\x3d\xd5\x5d\xda\xa6\x01\x2b\x7b\x75\xc8\xdb\xc8\x34\x0d\xbb\x2d\xe7\x99\xcf\x57\x83\xb3\x18\xd9\xda\x92\x40\x51\xad\x1d\xe8\x4f\xbd\xd7\x83\xf2\x54\xf0\x68\xe7\x4f\x75\xc1\xcf\x15\x73\xd0\xd6\xa8\xcc\xa0\x38\x85\x1c\xcc\x56\xb4\xa0\x5f\xc4\x06\xff\x90\x84\x60\xc4\x5c\xf0\x78\x2a\xff\xea\x67\x37\xe6\xae\x6b\xac\x22\xed\xe7\x01\xcc\x6d\x37\x01\x85\x82\xb1\x50\xac\xb7\xc3\x77\xc5\x77\xaf\x76\x63\xc3\x1d\x77\x2b\x26\x0d\x4f\x61\xe7\x6c\xbf\x28\x74\x0f\xec\xc6\x05\x58\xda\x2a\x5a\xf5\xf2\xe3\x6a\x2c\x0e\xfe\x9b\x03\x21\xfb\x40\xc8\x39\x10\xe4\x7d\x00\xef\xfe\xab\x92\xfb\x3e\xd3\x1e\xeb\xf5\xed\x31\xd2\xfd\x5f\x52\x1e\xc6\xbd\x32\x00\x5a\xc2\x7e\xd1\xda\x35\x00\xf6\x67\x17\xef\x96\x1c\x84\x5c\xa1\x58\x0e\x4c\xfa\x37\xe2\x33\xb9\x39\x89\x45\xb2\x07\xc3\xfb\x0b\x7e\xca\xfc\x99\xb1\xb1\x83\x2e\x9e\xcd\x25\xc1\xaa\xc7\x2a\x07\x17\x13\x76\xd5\x91\xd6\xe4\x15\xce\x2c\xc5\xcc\x89\x5f\x6f\x1c\x77\xa5\x54\xda\xd9\x55\xb3\x0f\x7b\xbd\x39\xcb\xad\x55\x75\x27\xd6\x76\x60\xc0\x5d\x44\xe1\x03\xd6\xf7\xb3\xbe\xab\xad\xdc\x2e\x6c\x38\xba\xcc\xf9\xa5\xac\x3c\x76\x14\xcb\xe2\xb8\x97\xcc\x3d\x48\x23\x70\x21\xd8\x8f\xd6\x2d\x32\x97\x57\x92\x70\xd4\x56\xd7\xa4\x93\x7e\x32\xe3\xaa\x4d\xdf\x4b\xcf\x4d\x4a\xe3\x06\x4d\x30\x32\xba\x1f\x2b\x70\xdf\x4d\x34\x64\x8f\xbd\x4d\xc5\x11\x8d\x3f\xc9\x4a\x3c\x0f\xc1\x8b\x1b\x3e\xda\xe4\x03\x4b\x86\x29\xfe\x33\x07\x02\xc9\x4e\xf1\x1f\x39\x10\xe4\xfe\x6f\x5f\xf5\x7a\x6d\x26\xe5\x63\x54\x6c\x25\xdd\x03\xcf\x03\x60\x0f\xa5\x7b\x7c\xcd\x07\x3a\x84\xa6\x58\x17\xe2\x0a\x40\x47\x26\x8e\x3f\x33\xf0\x1d\x31\x42\x4b\x42\xce\xcb\x35\x91\xf0\xdd\x24\x4f\xfd\x00\x39\xff\xc1\x6c\x18\xff\x24\x48\xd6\xe4\xad\x61\x07\x7e\x38\xe6\x87\x49\xa2\x2e\x2b\xde\x39\xc7\xd7\x82\x46\xa3\x01\xcf\x75\xa3\xc5\x32\x55\x65\x0c\xbf\xab\xd5\xc2\x4a\x71\xc3\x7b\x11\x81\xeb\x9c\x94\xb7\x8a\x95\x9e\xc7\x15\x23\xa3\xac\x1e\x6e\xe4\x3e\x90\x7d\x17\xb3\xf8\x3e\xbc\xa0\xfe\x90\xf8\x32\xee\x28\xbe\x44\x67\xb7\x78\xf4\xca\x15\xfc\x84\xe6\x90\x78\xc8\xac\x3e\x9e\xa8\xd1\x2c\xae\x31\x95\x4a\x60\x53\xfb\x22\x36\x3b\xe1\x4e\x70\x51\xd1\xd9\xcc\x0b\x23\x3f\x07\xcf\x33\xfe\xab\xff\x3d\xd7\xfa\xdf\xfd\xdf\x36\x52\x7f\xbb\xfa\x0c\x69\xfc\xa4\x1c\x88\x6c\x5e\x00\x46\xe4\xf1\xa4\xc4\x02\x00\xfe\x95\xcb\x57\xc2\x4f\x42\xb4\xcc\x0c\x77\xaf\xb7\x1b\x71\x4e\xe3\x87\x78\x92\xc3\x3d\xa2\xb9\xf1\x51\x05\x8e\x0d\xfe\x81\x8f\xf0\xc8\x0b\xa9\xc9\xa7\xff\x95\x90\x1c\x21\xa3\x8d\xd6\x3e\x43\xb8\x9a\x72\x52\x87\x43\xdd\x88\x20\x51\x74\x52\x6f\x50\xb9\x8c\xb0\xbf\xb6\xd4\x40\x92\x9c\xfb\x20\x5b\x89\x7f\x36\x78\xd5\x50\x47\xea\x05\x7e\x78\x62\xc4\xc0\x41\x62\x10\xbf\xb2\x7c\x4f\x8f\x57\xe2\x10\xe1\x08\x3e\x55\xa7\xe4\x7f\xf9\x2e\x84\xfa\xf1\xae\x44\x3e\x29\x27\x61\xbd\xb5\x1f\xc4\x3d\x32\xee\x42\x2d\xf3\x68\x22\x8f\x94\xc5\xe6\xef\x05\x8f\xcd\x48\xfb\x00\xf6\x9f\xe3\x5f\x9a\xfd\x6f\x0e\x88\x9c\x03\x41\xee\xff\x16\x74\x90\x38\x80\x61\x80\x73\xb1\xd4\x9e\xe1\x0a\x00\x54\x40\x41\x11\x35\x0a\x20\x98\x46\x5f\xe4\x17\x0b\x9f\x25\x43\x99\xbe\x3b\x8f\x43\x86\xb2\x2c\x97\x87\xf5\x56\xd8\xa5\xf7\x5e\x74\x9b\xe9\x49\x62\x8e\xd5\x15\x99\x4e\x43\x1e\xa2\xad\x5b\xaa\x82\xb8\x8e\x37\xd1\x34\xc8\x47\x61\x4d\x93\x9e\xa8\x1a\x4d\xa7\xf8\x54\xb5\x9f\xc8\x94\xee\xa2\x1c\xad\x6c\x4e\xe8\x2b\xed\xd0\x10\x90\xbf\x41\xf8\x76\x2b\x51\x8d\x5e\xf6\x2c\xa1\xeb\x5e\x84\xba\xb1\xd4\x1d\x42\xf2\xe0\x09\x8d\xaf\xe4\xdc\x07\xb1\x32\x42\xdd\x5c\xb5\x9a\xf0\x6f\xee\x41\x69\xd3\x77\xf1\xbf\xb8\x07\xbe\xd7\xc4\xb7\x70\x82\x2f\x60\xf3\x39\xf8\xb8\xfd\xbf\xce\xc1\x7f\x71\x40\x7f\xe5\x40\x94\x90\xfa\xde\xa9\xed\xeb\x95\xec\x81\x88\xbc\x02\x70\x79\xfb\x01\xc9\xc0\xf7\x00\x3c\xcc\x67\x62\x3c\x9e\x01\x52\xd2\xe6\x8a\xac\x5d\x09\x74\x2a\x5d\x61\x3b\x63\x86\x02\x6d\x9d\x1b\xfc\x47\xc8\xfc\x83\x9e\x31\x71\xda\xb1\x4e\x1c\xa7\x15\x4f\x7c\xe1\x7b\x54\xf2\xa3\x9a\x0b\x71\x26\x64\x56\x82\x45\xf9\x0d\xb1\x2b\xfe\xa6\xd4\x8c\xe2\x09\xe2\xcd\x2c\x41\x19\x1a\x79\x29\xa2\xed\xf5\x63\xf2\x59\xb2\xfb\x88\x02\xf5\x14\x8a\x89\x52\x93\xc4\xb3\xf7\x23\x95\x6c\xc5\x6d\x89\x3a\x7d\xab\x72\x6f\xc8\xb9\x0f\x22\xf3\x44\xae\x29\x0d\xf9\xe7\xc2\x56\x44\xcf\x65\x94\x4c\xfc\xff\xe2\x1e\x78\x33\xa0\x06\x74\xb9\x56\x37\x7d\x28\xeb\xfb\x00\x6e\x37\xe9\x1c\x24\xf5\xb9\x5f\x5e\xfa\x93\x03\x6a\xe0\x25\x71\x40\xa4\xf3\x81\x9c\x03\x11\xe3\xb6\x5e\xfd\x49\x9e\x10\xbf\x2f\x00\x17\x0e\xef\x8d\x74\x6f\x05\x60\x5b\x3b\x82\x73\x10\x02\x10\x7b\x7f\x7e\xd1\xf2\x21\x60\xe4\x3c\x18\x74\x8d\xe4\xa1\x56\x23\x8f\x7d\x2b\x99\x7f\xd0\xec\x03\x7b\x9b\x0e\xbe\xc3\x6a\x5f\xc1\xc2\xe5\x3d\xff\x0e\x95\x8b\xa0\xe6\x97\x29\xd0\xa6\x34\x0a\xf4\xe1\xd7\x85\xbf\x2b\x34\xc2\xee\x84\x60\xd1\x71\xb9\xfd\xc4\xd9\xec\x62\xf1\x4a\x19\x51\xe2\xdb\x92\x57\x12\xef\x24\x4f\x13\xdf\xd6\xea\x49\xa8\x89\x8f\x11\x6f\xb7\x3a\x48\x31\x88\x64\x13\xdf\x3f\xf2\x11\x3f\x20\xbc\x95\x38\x3d\xd4\x2e\x8a\x17\xf4\x20\x22\xde\xcb\x8a\x2c\x0b\x5e\x21\xfe\xf8\x19\x20\xfa\x8e\xbf\x12\x38\xd7\x5a\x05\x3b\xc8\xdc\x03\x6f\x17\x94\x83\x2a\xb7\xf3\xdf\xfb\xc0\xf4\xe0\x7f\x73\x40\x77\xde\x93\xf6\x41\xd2\x7a\x20\xe7\x40\x90\x39\x98\x10\x12\x17\xe1\x46\xca\x89\x30\xef\x03\xd8\x62\x46\x41\x61\x17\x02\xc0\x12\x78\x70\x8f\x4d\x2a\x80\x88\x01\xed\x31\xd3\x73\x00\xb2\x52\x97\x28\xf4\x42\x60\x50\xdd\x9f\x39\x51\xf3\x1d\x3c\xd4\xd1\x66\x71\x57\x17\x82\x7a\xb3\x19\x76\x1b\x55\x45\xa8\xb5\x71\xe2\x38\xa0\xe4\x04\x15\xae\xb9\x9c\xea\x8a\x34\x10\xe1\x6f\xc3\x53\x26\x17\x0b\x3e\x11\x2f\x78\xbb\x65\x94\xc1\x22\x71\x9e\x5f\x44\x12\x09\xba\xd7\xaa\xf8\xbf\x4a\x50\x81\x58\x69\xbf\xa0\x96\xe8\x7b\x90\xad\x7e\x27\x10\x29\x72\x07\xe8\xef\xe6\x08\x05\x0b\x25\x03\x6f\xe7\x36\xc1\xfd\x02\x00\x22\xfd\x5f\x05\xb4\x04\xb2\xe0\xf2\x6b\x1a\xc1\x7a\xfe\x41\x60\xf8\x7c\x47\xb0\x96\x6f\x2f\xd8\xce\x68\xf0\x8e\xf0\xae\x40\x28\xf2\x1d\x2f\xf5\xdf\x5e\xac\xbf\x39\xa0\x26\xd2\xff\x57\x91\x72\xc3\xc8\x3e\x98\xa4\xb6\xf5\x1a\xee\xb5\x5e\x3d\xbf\xaf\x57\x5b\x12\x57\x68\x50\x07\xb0\xf5\x38\x05\x85\xe5\x31\x00\x86\x33\xd4\xf2\xc6\x05\x00\x3c\xcd\x47\x3e\x1a\x24\x03\x48\x9d\x38\x47\xa3\x39\x03\xa0\xb4\xf5\x62\x81\xea\x37\x98\xd7\xfa\xcc\x10\xa6\x22\x0a\xdf\x0d\x3d\x18\x0f\x2b\x25\xc1\x84\x85\x33\x53\x93\x42\x2d\x3c\x77\x64\x62\x79\x23\xdf\x0e\x37\x7c\xbc\x39\xc5\x64\x12\xe1\x61\x80\x16\xdb\x53\xa9\xd3\xd0\x12\x65\xcf\x8e\x92\xd8\x06\xf5\x49\x27\x38\x8a\xc5\xa5\x20\x2d\x0b\xc1\x7d\x46\x84\x13\x6e\x14\x8a\x72\xac\x08\x1d\x81\xf2\xaa\x06\xce\xad\x42\xfd\xe0\xd9\x70\x80\x67\x8d\x3f\x13\xae\xb5\x11\x39\x47\xf8\x7c\x20\xa9\xb7\x8a\xcb\x94\xcf\x12\x82\x86\x34\xb9\xeb\x78\x66\x20\xe3\x5d\x02\x17\x25\xcf\x31\x28\xff\x32\xcf\x79\x80\x9c\x0b\x36\xd6\xf1\xe7\x39\xd0\x72\x8f\x74\x0e\x90\xf2\x72\xf2\x49\xf3\x40\xf6\xc1\x44\x91\x38\x21\x9f\x0f\xeb\xd5\x81\xc4\x09\x99\x93\xd6\x85\x15\x23\xc0\x19\xc3\x9d\x57\x8c\x88\x00\x97\xb6\xee\xf6\xd2\xa3\x02\x60\x1f\x3c\x70\x58\x73\x05\x40\x6c\xef\x49\x29\xb5\x7b\x00\xf2\x3b\xcf\x05\x28\x75\x00\x28\x57\x9f\x3f\xae\x90\x0c\xa0\xf3\xf0\x22\x9d\xfc\x3e\x00\xe3\x8b\x97\x82\xe4\xf6\x03\x58\x06\x5c\x16\x91\x11\x05\x9c\x23\x9a\x61\x55\x7a\x0f\x7c\xf3\x11\x63\x22\x4a\x3a\xc2\x44\xf0\x3e\xe6\x37\x62\x2f\x60\x2a\x8a\x89\x59\x56\xf8\x29\x2c\x25\x04\x33\xfe\x14\x52\x82\xef\x99\x22\x4c\xe3\x42\xdb\xe1\x49\x91\x3e\xeb\x88\x80\x19\x3c\x2b\x57\x65\x3d\xcb\xc7\x01\x23\xb5\x27\x58\x68\xf8\x28\xa1\xe7\x6e\x3a\xeb\x22\x0f\x1e\x3a\x3a\xc3\xd9\x14\x79\x82\xa1\xb5\x8f\x97\xed\x39\xb7\x38\x3c\x7e\x56\xc8\x5a\xfb\xeb\x53\x8b\xb1\xfd\x7a\x2e\xfe\xe6\x20\x58\x4a\x85\x1f\xef\x4e\x07\xe0\x43\x08\xd5\xef\xd7\x05\x90\xb2\x95\xe8\x3b\x26\x0b\xa0\x2c\x26\x7d\xf2\xf4\x7e\x00\xad\x49\xa5\x5d\x97\x6c\x00\x0c\x0f\xab\x1d\x66\xfe\x0c\x60\x7a\x52\x27\x92\x4f\x1b\x08\xe6\xdc\x46\x9a\x12\xfc\x10\x64\x71\xdf\xd2\x50\x45\x9f\xb8\x6a\x7e\xc9\x83\x43\xff\x39\xd1\xc5\xf8\x55\x84\xb2\x45\x0f\xe1\x85\xe1\xa5\x34\x7a\xc7\x2b\x04\x0a\x5d\x54\xd9\x56\x2f\x39\x7c\x89\x66\x52\x53\x9a\x6f\x31\xfe\xb8\xda\xd1\xc7\x76\x81\x13\xb8\x76\xe5\x8c\xd7\x8d\x21\x96\xb8\x8f\x0a\x01\x93\xfa\x41\xc5\x38\x5e\xb9\x5e\x44\x51\x38\x0f\xae\x5a\xf6\x1b\x8a\x3e\x38\x02\x9f\x28\x23\x8b\x76\xf1\x2e\xc5\x28\x4b\xbf\xc1\x6c\x73\x87\x79\x9c\xcc\x4b\x8c\x98\x3b\xcf\x54\xa7\xec\x23\x4c\xa8\x1b\xf3\xf8\x61\x39\x71\xcc\xbc\x73\xe1\xeb\x1d\xf2\x0d\x58\x26\xa7\x8c\xa1\x76\x05\x61\x6c\x94\x83\xe1\xd3\xeb\x0a\x5b\xb0\x5f\x6d\x93\x7a\xcc\x14\x3d\xb1\x44\x5b\xc1\x8e\x44\xc5\x39\x9c\xa4\xb5\x7a\x9b\x93\x22\x01\x57\x67\xfe\x7b\xf7\x13\xa3\xfb\x35\xfe\xff\x93\x83\xe0\x10\x9d\x38\xf2\x13\x40\x7d\xa7\x34\xc7\x99\x54\x00\x7d\x2d\xb9\xc4\x8b\xdb\x01\x4c\x5f\x2a\xef\x67\xc2\x02\x98\x7f\xd4\x58\xe6\xb6\x01\xb0\x3a\x6c\xf0\x5a\x82\x1b\x42\x2c\x95\x2c\x42\x55\x2e\x10\x91\x16\xf7\x5c\x7c\xf5\xc5\x88\x0a\x66\x05\xc1\x2f\xac\xb2\x08\x81\x46\x33\xa9\x59\xae\x9c\xf8\x45\xbd\xb2\xd2\x61\xef\x1d\xf8\xe3\xda\x3c\x4d\x12\x41\x75\x38\x29\xf5\xa1\xbe\xf0\x48\x4a\x9c\x93\x72\xc7\xbb\x63\x61\x78\xdc\x49\x45\xf5\x6f\xf5\x11\x8f\x71\x27\xe4\x46\x91\x06\x11\x34\xe4\x79\x20\x73\x30\xcb\xa3\xb2\x31\x68\x57\x1f\x9b\x69\x25\xb9\x04\xf4\xa0\xd7\xc8\x67\x56\x79\x4d\xcc\x3e\xcf\xf2\x91\x8b\x0a\x8e\x18\x3b\xf7\xd9\x17\xdb\x14\xa9\x31\x6f\x5d\xf5\x07\xab\x14\x9e\x62\xad\x1c\x7d\x1f\x45\x29\x29\x62\xd3\x1d\x6e\x91\x39\x98\x07\x9e\x4a\xb3\xb8\x53\x36\x4f\x5a\x6a\x94\x4e\xe0\x06\xcc\x7f\x9f\x7e\x42\xbf\xdf\x37\x6c\xeb\xe2\x97\xf9\x55\x2f\xa8\x08\xef\xda\x79\x70\x93\x83\x20\xcf\x83\xbc\xb5\x88\xd2\x91\x57\x9b\x3c\x88\xe1\x67\x19\xc7\x0b\xbb\x00\xac\x98\x94\x5f\xb2\x09\x01\xd8\xdc\x56\x5f\xe5\x3d\x05\x60\xbb\xa2\x4f\x2b\x91\x06\x26\x36\x5c\x16\x29\xea\x7b\x88\xe3\x56\xe9\x4e\x52\x06\x75\xc4\x7d\x16\x67\x82\xed\x6d\x6f\x12\x38\x4c\xd8\x53\xfd\x3d\x3c\xf1\x19\xfa\x93\xa5\xe3\x7e\xf7\x71\x83\x3a\xfb\x9a\x84\x42\xad\x71\x67\x35\xf6\xf6\x0d\x45\x71\x61\xa7\x55\xac\x46\x5e\x5c\xdd\x8d\xe5\x54\xa2\x9c\xd9\x13\x67\x83\x2d\x93\xbf\x8d\xd8\x73\xf5\x36\x39\x0f\x06\x35\x2b\x27\x81\x12\x0d\x96\x98\xbf\x2c\x77\x17\x7d\xd0\x7f\xdf\x24\x51\xfe\x29\x3a\xc0\x57\xf5\xfd\x4d\x45\x3d\x74\xb8\xef\xe0\x6b\x5a\xc5\x10\x8c\xa2\xe7\xde\xa1\x04\xa5\x49\x8c\xbe\x27\x7b\x6f\xae\x72\x2e\x66\xd6\xb5\x84\xcc\xc1\x3c\xd0\x57\xa5\xc0\x1a\x3b\xa1\x5a\x69\x54\xf7\x61\x07\xec\x87\xef\xa4\xab\x16\xe1\x2e\xdb\xfe\x3e\x15\x05\x92\x7e\x8d\xff\x6f\x0e\x82\xab\x9c\x7f\x7e\x6f\x05\x80\x68\x0d\x7f\x28\x8d\x0e\x80\x92\xbd\xf0\xab\xa3\x36\x00\xba\x92\xe2\xfb\x4f\x5b\x02\x98\xa6\x4b\x5d\x3a\xaf\x07\x60\x63\xa7\x70\x9b\x39\x1f\xc0\xc1\x5e\x15\xc3\x73\x07\xc0\x31\x52\xf7\xb1\xe4\xc5\x8d\x9c\x98\x6a\x5b\x3b\xfb\x26\xe3\x5a\xc2\x7b\xab\xc4\x80\x44\x07\x76\xfc\x88\xf9\xc5\xc4\x07\x3e\x3c\xf8\x63\x86\x23\x25\x9d\xc1\xea\x1b\x5c\x90\xa7\x26\xd5\x13\xab\x38\x45\xac\x81\x0a\x62\xec\x4d\xdc\x29\x72\x3e\x0e\x99\x83\xd9\xf0\x23\x21\xe4\x2f\x23\x5f\x87\x7e\xf9\x3e\xa4\x18\x8a\x7c\x13\x46\xf8\xb8\x43\xa9\x1e\x15\x1e\xbc\xfc\x66\x55\xf9\x06\x6a\x22\x48\xfe\x59\x9c\x72\x0e\xba\xcb\xf7\x42\x7f\x82\x8a\x39\x46\xc0\xcb\xab\xbb\x52\x75\x1e\x63\xe4\x45\xdd\xe1\xa9\xaa\x8f\x21\xb8\xde\xdc\xe0\x60\x7e\xa8\xd7\x61\xed\x9c\x35\x1b\xa8\xd5\x3c\x71\x74\xb6\xbf\x4e\xc7\x56\x41\xcb\xdf\xeb\x61\x80\x4b\xf0\x0f\x0e\x62\x89\xe7\xfa\xde\x5c\x00\x09\x46\xfe\xb1\x03\xe7\x37\x7d\x39\x7a\x61\x42\xcc\xc7\x87\x01\x2c\x2f\x8b\x03\xdd\x75\x00\x5b\x71\x39\x39\x46\x26\x00\xa7\xf7\x2a\x58\x9e\x81\x8d\x7c\x14\x33\xa7\x72\xd3\x18\xf5\x62\x62\xb4\xbd\x82\x9d\x8b\x69\x0b\xc1\xcc\xf6\xaa\xbf\xb9\xeb\x12\xbe\xc6\x22\x2d\x1e\xe5\x8b\xc7\x55\x1a\xa7\x16\x77\x84\xab\x93\xb9\x20\xcc\xb2\xe6\xfd\xa7\xde\x89\x9f\x30\xd2\xaa\x4f\x26\x2e\xa5\x6a\xa1\x9f\x28\xd9\xae\xee\x4a\x57\xc0\x60\x14\xae\xaf\xb5\xc7\x3b\x93\xfd\x48\x1b\x3c\x10\x28\x75\x23\x3d\x22\x3d\xc7\x78\x94\x6b\x51\x12\xa1\x65\xe4\x5c\x9c\x27\xf9\xaa\x35\x68\x0f\xff\xb2\x87\xb9\xea\x3b\xd1\xad\x7e\x66\x1d\x54\xea\x7c\x18\x61\x6f\xd6\x16\x1b\x8d\x45\x8c\xa1\xd7\xbb\xc6\x0c\x0d\x6e\x2c\x9d\xab\x7d\x9d\x94\xe6\x3d\x2c\xa7\xab\x44\xf5\xbc\xa6\x23\xf6\xb9\xc3\xef\x7d\x92\xc7\xff\xd7\xf8\xf7\x8e\x70\xfb\xff\x93\x83\xe0\x1d\xe3\x7d\x4e\xdd\x0a\x20\x95\xc6\x37\x7c\xe0\x0c\x80\x7a\x00\x3f\xe6\x08\x03\x80\xe1\xa2\x80\xc1\x71\xb3\x7f\xf0\x20\x24\x5f\x8e\x9b\x81\xf2\x20\x2f\x27\xa0\xbd\x24\xb5\x8f\x48\xab\x80\xb9\xfb\x94\x31\xab\xc6\x7e\xa2\x84\x33\x8b\x9d\x8a\xe5\x1c\x41\xc6\xfe\x93\x77\x88\xdb\x37\xbc\xa2\x55\x57\x1c\x6d\x60\x15\x8e\xd6\x54\xb4\x98\xf5\x6a\x03\x96\xd2\x60\x7f\xd3\x52\x92\x00\x46\x58\x2b\x76\x90\x37\x2d\x06\x9d\xac\x66\xf6\x59\x24\xf3\xce\x46\x3e\x0e\x9d\xe2\xb7\xd5\xd8\xd4\x13\x64\x3f\xd2\x4f\x21\xa5\x4c\x44\x41\x8c\xed\xb8\x88\x4a\x07\xe2\x4b\xf4\xd2\x6b\x0f\xd5\x64\xe4\xcf\x88\x03\x43\x9c\x6a\x0d\x28\x83\xb0\x53\x8f\xea\x34\xf6\xa0\xa6\x82\x43\xba\xdc\x34\xd4\xd1\x96\x01\x77\xdb\x6a\x34\xcf\xa2\x51\xbe\xe6\x8d\x14\x5a\x35\x18\x1e\x1f\xe6\x5a\x3e\xed\x1c\x4c\xb1\x67\x4d\xf5\x4e\x6d\x0b\xac\xb0\xab\x6a\x65\x85\xd6\x3b\x6c\xb3\x63\xf3\xef\x79\x08\xfb\x3d\x0f\xac\x1c\x7c\xbf\xe7\xc1\x83\x77\x3f\x55\x15\x80\x40\x19\x5f\xcd\xbe\x4e\x00\x59\x0c\xdf\xa9\x03\xb1\x9b\x1c\x04\x39\x17\x83\x3c\x0f\x9e\xfc\x52\xd1\x4c\x3c\x00\xbe\x12\x8a\x6e\xbc\xfd\x00\x7e\x9e\xea\xef\x24\xfa\xc0\xd3\xa7\xcc\xc0\x53\x7d\x0f\x51\xc3\xbd\xd3\xba\xda\xd2\x0c\xbf\xe6\xf4\xc6\xc3\xc3\x8b\x03\xf7\xd6\x26\x31\xb6\x20\xf4\x23\x36\xdd\xdc\xa0\x30\x3e\x7e\x37\x46\xd2\xb0\xa2\x09\x93\xee\x8c\x3e\xa6\xdd\x3d\x5c\x92\x63\x8e\x0a\x50\xbb\xff\x8d\x2e\xaf\x00\xd5\xae\x3c\xb5\x9c\x94\x13\x8c\x8e\x51\xea\x5b\xa9\xc9\x98\x9c\xff\xa4\x1c\xbd\xba\x96\x42\xf3\x45\x5a\x35\x6f\x2d\x20\xa9\xe0\x0d\x8f\x06\xfd\x1a\x36\x91\x93\xcc\x03\x3d\x16\xd3\xe4\x41\x12\x22\x1e\x74\xdd\xd4\x8a\x42\xb1\x45\x6c\xb9\x57\xa5\x95\x81\xa6\x0b\x7a\x48\xce\xc5\xa9\x1b\xd2\xe9\x45\xff\xf4\x8b\xbc\xe9\xa9\x93\x85\xc9\xf7\x5c\xad\xb4\xd4\x21\x60\x08\xee\xc6\x65\xde\xba\x12\x58\x19\x57\xeb\xcd\x79\xa0\x21\xb2\xcf\xff\xaa\xcc\xc9\x5c\x8b\x54\x03\x00\xc2\x86\xdc\x15\xd4\xaf\x00\x94\xc2\x78\xb8\x0e\xb8\x03\xe8\xdc\xe4\x7e\x75\x28\x1b\xc0\xaa\x9b\x6f\xf6\xc4\xfd\x7f\xfb\x72\x02\xa2\x65\xdd\x38\xeb\x00\x82\xac\xd5\xcf\x49\xa9\x6f\xe4\xc4\xa8\x79\x5f\xb3\x9c\xb4\xbc\x87\x6f\x70\x6d\x71\x3d\xe5\x33\x80\x3b\xef\x50\x1e\x15\x70\xb5\x15\xd3\x68\x69\x5a\xd8\x9d\x2a\x8c\xf6\x35\x56\x6b\xca\xce\x36\x46\xf9\xeb\x54\x0c\x8f\xe6\x8f\x20\xe3\xd4\xd5\xa6\xeb\x8b\x2d\xc8\x7e\x24\x64\xa4\xf2\xab\xe5\x6f\xd9\x5c\xd3\x29\xaa\x53\x2b\x2b\x19\x40\xe6\x81\x5e\xf0\x6a\x12\xd6\x1c\x52\x38\xff\xce\xc5\xb9\xef\xad\xd3\x81\x1c\x8b\x52\xba\x1b\xac\x4b\x81\xea\x0a\x0d\xde\xc8\xc5\xd1\xd5\xd3\x40\xff\xf4\x1b\xac\xba\xa0\xf7\x19\xc3\xe0\xab\x5a\x2a\xa0\x1f\x8a\xe9\xf5\xd4\x2e\x62\xd5\x9f\xc5\x52\xba\x27\xfd\x9a\x07\xce\xd5\xdf\xbc\x5c\x3c\xf7\xeb\xed\x66\x00\x9c\xbd\xdc\xf4\x7b\x8c\x37\x7d\x39\xca\x04\xee\xa4\x03\xe6\x00\x06\x11\x5c\x3f\x0e\x8d\x03\x58\x8b\x71\xcd\x1c\x0d\x01\x70\x6f\x11\xe0\x3b\x3b\xb5\xe9\xcb\x09\x0d\x90\x3d\xc4\xdd\xb6\xe1\x0d\x0a\x89\x10\xd7\xb6\x51\x9b\x24\x8a\x06\xaa\x9a\xdf\xb4\x5a\xc5\x07\xbb\x49\xbb\x56\xfa\x8d\x63\xa7\x9d\xe8\x23\x3a\x62\x12\x30\x97\x6c\xb4\x73\xf3\x33\x66\x50\xcd\x26\x01\x77\xaf\xe4\x57\x23\xd3\x74\x90\x2f\xd5\x4b\xcc\x11\x3a\xea\xbc\x0b\x17\xca\xbb\xc8\x3c\xd0\x62\x81\xea\xca\xf2\xd1\xbc\x4f\x5f\x8e\x6a\xdc\x5a\x7e\x94\xab\xf1\x46\x43\xab\x77\xe5\x7b\x56\xc1\x80\xa6\x8e\xc6\xea\x72\x5a\x6f\xcf\x6d\xdd\x23\x88\x3d\x49\x97\xee\x5b\xea\x55\x22\xba\xe3\x59\xef\xf2\xe8\xfb\x22\x43\xa3\xeb\xc9\xb9\x38\x37\xd8\x0d\xc3\x51\x23\xa1\x8f\x2a\x82\x0d\x5d\xd1\x3a\x41\x1f\x4b\x76\x1b\xe9\xa1\xdf\xf9\x7f\x2f\x2c\x31\x74\xc2\xa4\x79\x53\xe4\xeb\x19\x5e\xc2\xe0\x3d\x28\x37\xe7\xe1\x3c\x91\xeb\xd3\x0e\x6e\x00\x36\x6b\xb6\x77\xbb\x64\x01\xc4\x96\x38\x18\xf7\x0e\x03\x68\x58\x70\xbe\x39\x20\xb3\xc9\x05\x91\x39\x08\xaf\x48\x5e\xcd\xd3\x83\x9b\xbe\x9c\x28\x16\x19\x4b\xde\xe3\x00\x31\x39\x4a\xc7\x25\xfa\x20\x30\x86\x4f\xb3\x5a\x5d\x9d\xc8\x1b\x4e\x65\xaa\x65\x5d\x8a\x37\xf1\x1b\x71\xbc\x17\xe0\xb3\xe1\x8f\x32\xb2\x0b\xcf\x09\xce\xe9\x44\xe6\x9b\xb9\x37\xfd\x28\xf5\x44\x6c\xd5\x2b\x78\xf5\xa6\x2a\x87\x9c\x07\x83\x78\xad\x16\xbf\xf0\xee\xba\xdb\x34\x9f\xc6\xed\x25\x81\xa2\x1b\xa3\x0c\xda\xf5\xcb\x2c\x05\xbc\x64\x1e\xe8\xd1\xa2\xde\xc2\x6a\x50\xa6\x44\xbb\xb1\x3e\x7a\x2d\x34\x95\xab\xf9\x99\x21\x07\x82\x3e\x29\x78\x83\x07\x32\x30\x4c\x47\x89\x44\x5e\x28\xe7\x32\x76\x40\x55\x87\x9f\x28\x91\x35\xae\x43\x0b\x05\x0f\x14\x9c\x36\x61\x41\xdf\x0b\x18\xc9\xc1\x9b\x6c\xc1\x28\xfa\x32\x67\xd5\x99\x18\x60\x6a\xbc\x6e\x01\xec\x98\x63\x77\xfe\x35\x0f\x17\xf3\x39\x0d\x76\x54\xfe\x23\x07\x41\x9b\xa3\x8b\x7a\x11\x40\x5b\x8f\xf3\xd2\x81\x80\xcd\x3c\x08\x27\x6d\xae\xe5\xe3\x6a\x00\x01\x57\xb8\x65\x4e\x2b\x00\x44\x9e\x13\x10\xbb\x58\x0e\x10\x8f\x94\x38\xc0\x79\x1d\x20\x29\x5d\x7e\x48\x42\x18\x7c\x12\x8f\x6b\x50\xab\x3f\x21\xf2\xc7\xe6\x18\x1d\xb3\x6e\xc4\x6b\x07\xef\xb6\x1f\x0e\x40\x63\xca\x3d\xa3\x03\xbe\xa6\x26\xa3\x6e\x39\x3a\x67\x6d\x29\xb8\x81\x98\x30\x0f\xb9\x2b\x57\x8e\x5d\x1d\xd3\x8f\x7a\xd3\x70\xcb\x84\xec\xcd\x5a\x0e\xd5\xb0\x99\x7f\x5c\xc9\x3c\xae\xa2\x93\xbc\xb0\x5a\xd6\xfa\x4a\x5b\xef\xda\xd2\xb1\x92\xa4\x7e\x23\x83\x88\x65\xc7\x02\xa7\xf6\x4f\x46\xcf\x57\xcc\x73\xd5\x5b\x4a\x8c\xfc\xd7\xe8\xd3\xcf\xfd\x2b\x17\x47\xcc\xf4\x3e\x32\x22\xa6\x88\xec\x87\x22\xe7\xe2\xe4\x74\x98\x86\xa0\xbb\x03\xde\x64\xed\x32\xdb\x82\x61\xf0\x93\x4d\x7f\x64\xca\x8b\x19\xf4\x9c\x00\xd8\xfa\x98\xcd\xee\x37\x27\x26\xca\x71\x71\xe7\x4b\x00\x3e\x02\x7b\xe4\x9e\x83\x9b\x1c\x84\xce\x05\xf6\x02\x9a\xf2\x4d\x0e\xc2\xcd\x98\x9d\xfb\x28\x05\x40\xc8\x21\x2e\x9b\xd3\x4e\x9b\xbe\x9c\x24\x59\xd1\x24\xb6\xee\x0d\x6f\xd0\xb5\xf4\x03\x2a\x63\xaa\x36\x44\x95\x64\x5d\x7d\x1d\xab\x12\xfc\xa5\x28\x71\xdb\xbd\x41\x9f\x30\x97\x7d\x33\x7c\xa8\x33\x8a\x91\x65\x2e\xe7\x32\x3c\xae\x53\xaf\xe9\x59\xe9\x37\x7e\xae\x69\x5c\x39\x61\xa0\x39\xfa\xe5\x4e\xcf\x8a\xa7\x36\xe3\xcc\xde\x86\x46\x32\x0f\xf4\xf6\x92\x81\xf1\x7c\xce\x8d\xe4\x7e\x46\xe3\x53\x8b\xb2\xe5\xdb\x3b\x0d\x4c\x7c\x96\x9a\x8b\x53\x5b\x96\x4c\x2d\x57\xa8\xf3\x96\x6e\x6b\x98\x2e\xaf\x5a\x67\x8d\x90\x73\x71\xae\x0f\x59\x38\x20\x2c\x92\x02\x8b\x27\xcc\xdf\x20\xf5\x62\x1f\x90\x73\x71\xb2\xdc\x2c\xb3\x51\xc5\x11\xfb\xd2\xbe\x5a\x8e\xa3\x99\x42\x3e\xa4\x1c\xb5\x1c\x43\xd7\x05\xb6\x25\xda\x5b\xfa\x63\x64\x7d\x5f\x02\xec\x16\x66\xfb\xfd\xf7\x05\xa3\x07\x5b\x38\xa5\xfd\x66\xff\x5f\x41\x86\xf9\xc2\x9e\xf7\x00\x7a\xd5\x8c\xb3\xd4\xe1\x00\x0e\x8d\x2c\x70\x10\x09\xe0\x63\xc1\xd2\xf7\xeb\xfc\x8c\xda\xc7\xc1\x74\x2a\x05\x20\x49\x9c\x3b\x95\x6e\x06\x20\x0b\x84\x6e\xb3\xbe\x04\xc8\x51\x90\x3e\x25\xea\x03\xf9\x79\x9f\x15\x3f\xaa\x52\x11\x55\xae\x31\xe8\x58\x58\x15\xe0\x8f\x25\x3e\xb2\xb4\x0d\x76\x45\xdf\x08\xa6\xf6\xd2\xb9\x36\x86\x28\x74\x8f\x4f\xa5\xad\x9c\x5d\xf9\x69\xc3\xdf\x64\x76\x5b\x6c\x89\xce\x30\xe3\xc3\x5a\x1b\xed\x02\xad\x6e\xce\x8f\xa0\xa6\xd1\xf7\xbe\x86\x88\x19\xc1\xdb\x65\x83\xdb\x4d\x96\xe6\xec\x6e\x15\x74\x9d\x32\x43\x2e\x38\x55\x09\x36\x0b\x5a\x04\x2c\xf1\x95\x0e\xd7\xf9\x5a\xae\x2c\xdb\x14\xae\x92\x73\x71\x8a\x89\x36\xdf\x57\x3d\xae\x05\x14\xca\x58\x47\xae\xad\xa6\x3c\xcf\x36\xb3\xc9\x42\xf4\x26\x1e\xc8\x3a\x62\x7d\x07\xd9\x16\xc3\x9c\x32\x6c\x53\x8b\x32\x8d\xbc\x9f\x78\xd1\xf6\x28\x6a\x26\xac\x20\x4e\xcd\x66\x14\x9d\x18\xd4\x1b\x2d\x6f\x2b\x81\x5e\x0c\xd0\x00\xa0\x66\x65\x34\xfc\x7d\x5e\x92\x38\x08\xd1\x30\x56\xb1\x3d\x17\x01\x94\xeb\xae\x14\xef\xd9\x03\x60\x46\xb8\x32\xb0\x8f\x6e\xd3\x8f\x12\xb2\xed\xb2\x2f\xcd\x32\x40\x7c\x14\x4b\xe1\x09\x26\x80\x2c\x19\x0e\xcf\x73\xc7\x00\x0a\x6e\xf2\xd1\x33\x1e\x07\x28\x6b\x17\xc9\xe6\x4b\x80\xae\x0a\x29\xd9\x74\xc5\x35\xa2\x7d\x89\xb7\x86\x90\x05\x01\x2f\x9a\xa3\x6e\x72\x24\x70\x01\xcd\x11\x4b\xe7\xda\x9b\x7b\x67\xf5\x93\xef\xd5\x38\x6c\x9d\xdc\xd2\x76\x87\x9c\x46\xe9\x7b\x3f\xe6\xfc\x8d\x2b\xbe\x14\xf4\x50\x7d\x60\x35\xbd\xfb\x6d\xf2\x7e\xd9\x80\x82\x25\xe5\x8f\xfa\x66\xd1\xf6\x5b\x36\xc2\x33\x59\x77\xf8\x6f\x53\xdb\xf9\xcd\x1f\xa9\x41\xdf\xc4\xdb\xdd\x5a\x58\xab\x4c\x28\x4d\x70\x3c\xbd\xc4\x76\xfd\x5d\xa1\xa6\x83\xf6\xca\xd6\x02\xf3\xec\x9d\x8e\xb9\xab\x3b\x73\x32\xd2\x73\x1d\xed\xd6\xf4\x33\xa8\xc8\x1c\x4c\x7c\x9d\xa3\x31\x52\x23\xae\x3a\xe6\x9e\x23\x3b\x6a\xdf\xd5\xf6\x28\x3b\x47\x71\xd4\x83\xf0\xb9\x48\x3e\x87\x6e\x34\x53\xa8\x62\xd8\xa2\x83\x00\x7a\x38\x50\x1d\x80\xe6\x0e\x83\xf4\xaf\x79\x60\xdf\xca\xf2\x8c\xaa\x19\x40\x82\x8a\xc9\x60\x37\xfb\x66\x0e\x82\xd5\xa9\xcb\xb7\xa8\x59\x00\x3c\xdf\xd3\xe7\xec\x6b\x04\x88\xfa\x70\x61\x0b\xf5\x0f\x80\x34\xc3\xcb\xa7\x0f\x45\x01\x14\xd3\x32\x27\x9c\xc2\x01\x54\xd2\x71\x3d\xbd\x5c\x09\x50\x7b\x58\x88\x8a\x57\x0b\x5e\xd7\x5f\x93\x52\x54\xb8\x4c\xcc\xab\xdf\xa9\x34\x60\xfa\x09\x4f\x5b\xb9\x5b\x5f\x3e\xe8\x1e\x6a\x3e\xdb\xc5\x9e\x23\x9f\x76\xd9\x26\x6c\x5f\x38\x6d\xcb\xd9\x39\x01\xb7\x7b\x0d\x62\xbd\xe7\x27\x27\xac\xae\x8e\xcb\x3f\x75\x7c\x7c\xc5\xf1\xf8\x64\xf2\x43\x54\x73\xa0\xcb\xfd\x6f\xbe\x1d\x94\x35\x78\xd7\xb8\x1f\x8b\xcd\xd3\xd7\xc3\xdd\x8f\xcf\xca\xdc\xf6\x2f\xf8\xe1\xa6\x31\x3f\x7f\x53\x24\x73\xd0\x9d\xb8\x18\x53\xe1\xbf\x91\x07\xb3\xcd\x7d\xef\x4a\x59\x9e\xd7\xff\xe5\x45\x0a\xa5\x74\x19\x41\x99\x46\x5d\x22\x73\x30\x7e\xc9\xae\x77\xd1\x66\x21\x8c\x00\xe7\x4b\x99\xc6\xb7\xdb\x01\x70\x49\x33\xac\x50\xea\x00\xc8\x1c\xa0\xa7\xa0\x12\x04\x30\xd0\xa4\xbf\xb4\xfb\x2d\x80\xe3\x20\xed\x6b\xaa\x72\x80\xe0\x95\x73\xaa\xbb\x9f\x00\x24\x38\x6f\x23\xfe\x9a\xb7\xfc\xc7\xe7\xee\xed\xdb\xb3\xe9\x47\x69\x58\x62\xb1\x3e\xa7\x06\xd0\xd2\xc8\xcb\xce\xee\x02\xf0\x80\x20\x2a\x22\x65\x4b\xbc\xf5\x00\xe4\xc6\x4c\x8c\xf0\x3b\x5a\x9a\x34\xdb\x83\x30\xa8\xb4\x5b\x0a\xe6\x82\x05\xa5\x8b\x96\x19\x67\xfc\x90\xed\x92\x1f\x03\x43\x7c\xaa\xdc\x87\xe7\x7a\x4e\xf9\xb8\x8f\x72\xbc\x14\xbc\xf5\xd8\xbf\xeb\x13\xf7\x13\xa1\x12\xba\x40\x93\xaf\x4e\x0f\xa3\x73\xa6\x03\xc2\xa7\xb5\xef\x6f\x4d\x8b\x0d\x98\x9c\x39\xd1\xf4\x3e\x31\xc1\xff\xd5\xdc\x54\x6d\x45\xec\x5e\xff\x77\x0b\x99\x37\x1e\x87\x8f\x05\xec\x58\xba\x55\x8a\x0b\xd3\xf7\xeb\x5d\x5e\x29\xd4\x0b\x8e\xf7\x3f\xb2\x52\x93\x97\x1d\x38\xeb\xeb\xb5\xb6\x3f\xf3\x51\x40\xa3\x77\x26\xc2\x28\xf9\x89\x5f\x83\x37\x2f\xf2\x60\x82\x80\xef\x21\xcf\x87\xa8\xc3\x57\xdf\x7a\x5f\xf2\x8a\x42\xd5\x47\xd8\x7b\xdd\x77\xef\x42\x5b\x84\xd0\x02\x5c\x20\x5c\xee\xdb\x1e\x02\xc0\xcf\x73\xb9\x8c\xd2\x09\x40\xf1\x07\x5d\xff\xce\x61\x00\xb3\x41\xda\x74\x4a\x4f\x00\x57\xba\xf5\xf7\x76\xe4\x3c\x8c\x4c\xa0\xf8\x83\x83\x68\x7a\x7e\xfa\xc4\xee\x2d\x00\x9d\x67\x2f\x1c\x3a\xe4\x0b\xd0\xa7\xce\xa6\x41\xff\x1e\x60\x88\xc8\x1f\x2e\x44\x0f\x34\x2f\x5d\x24\x9e\xe9\xde\xc7\xc7\xbc\x68\x53\x2c\xf3\x59\x44\x49\xf6\xbb\xe8\x2e\x16\x1e\x9c\x90\xbf\xfb\xd1\xf9\xfb\x7d\xa9\xe6\xee\x22\xfb\x8c\xc3\xcf\x03\x73\x07\x33\x22\x5e\x65\x8e\xee\x4e\x16\x4e\x67\x1d\xbf\x38\x58\x19\x27\x95\x5c\x32\xd9\xd5\xb3\x7a\x95\x37\xb1\xf4\x7b\xe7\x03\xc7\x70\xbd\xf8\xaa\x19\xcb\x26\x31\x32\xff\x11\xe2\x18\x95\xbe\x10\x77\x63\x29\x50\x3f\xb2\x70\xa9\xa7\xb4\xd2\xbf\x24\x7c\x6e\x45\xaa\x80\xd6\x8f\x3d\xf4\xd1\x6a\xe5\xb5\x78\x9f\xe4\xd0\x5d\x6b\x35\xe9\x54\xde\x8a\xc1\xec\x88\xd6\xa4\x9d\x9e\x4d\x41\x91\xc8\xcc\xd8\x3c\xf7\xd6\xa0\x21\x94\x5e\x94\x85\x5b\x6d\xa0\x03\x7a\x47\x98\xb9\xeb\xb3\x80\xed\xe8\xdc\xa0\x61\x80\x2b\x0d\x97\xbb\x76\xbc\x05\x90\xba\x42\x67\xb8\xe3\xeb\x66\xff\xdf\xea\xc4\x8e\xdf\x7f\x87\x07\xe6\xfd\xd9\xef\x2a\x51\xa3\xf8\x7d\x2f\xfe\x36\x29\xff\xa1\x5b\x65\xbd\xef\xfb\x6c\x69\xcb\xef\xbf\x4f\x46\xbd\x2f\xef\x38\x31\x02\xf0\x25\x95\x5b\x9a\x9b\x16\x4a\x7e\x96\x0b\x57\xab\x54\x10\x76\x2e\xbe\x92\xb6\x72\x2b\x9b\x0d\xfc\x11\xa5\x56\x94\xbd\xbd\xff\xf5\x68\xad\xf5\xa7\x3b\x31\x45\x02\x4f\x76\xc6\x64\xf4\xdf\x0d\x7f\xd9\x53\xfe\x74\xe5\x45\xa0\x7f\x53\xab\xc4\xa7\x9c\x7e\x33\xdf\xf2\xba\xf4\xa9\x85\x4e\x73\x9f\x73\x55\xc2\x3f\x1e\xb4\xe4\x7a\x7b\x16\x57\xce\x0e\x34\x48\x79\x1d\xc8\xff\x3c\x8f\xb9\xc9\xe3\x11\x92\x3d\xb1\x24\x58\x46\xeb\x1e\x94\xf9\x64\xb9\xad\x70\xe2\x6f\xfe\xc3\x99\x90\x64\x83\xf0\x4e\x3e\xee\x92\x1c\xdb\x8f\xe4\x8a\xf7\x74\x2c\x8a\xe3\x40\xd9\x44\xce\x38\xde\x8d\xb6\x43\x7d\x09\xa7\xb5\xaf\xbc\x5a\x88\x1e\x0c\xb4\x77\x90\x88\xda\x82\x1e\x0d\x3c\x0d\xc0\xd6\x7b\xe9\xfe\x8e\x41\x00\xd9\xe7\xb4\x17\x76\xd0\x6e\xe6\x61\xfc\xed\xc3\xc8\x79\x4b\x11\xf9\xab\xd6\x76\x50\xfc\xc1\x41\x0c\xf7\xff\xd9\xff\x9b\x17\x3a\xd5\x45\x75\x14\x00\xff\x94\xf9\x16\xdd\x09\xc0\x12\x29\x04\xbf\xc8\xff\x98\xe9\xc3\x3e\x90\xa6\x74\x40\xbd\xba\x8e\x14\x56\xdf\x13\xaf\xde\x74\x7b\x49\xca\x52\xb8\xe2\x41\x92\xe4\x0f\xc5\xd0\x9a\x07\x55\x9e\x5b\xa7\xf8\x3a\xed\x7b\xee\xd9\xd9\x7f\xc0\x4e\x22\xba\x93\xed\xd4\x87\x78\xa6\xa1\x05\x6b\x7f\xb0\x3b\x76\xe6\xe3\xed\x24\x7b\xc7\x66\xc6\xf9\xcf\xd5\x25\x76\x79\x0d\xca\x4b\x34\xd7\x3f\xd8\x55\xd6\xc4\x2c\x4b\x17\x0d\xda\xef\x2d\x5b\x5b\x99\xca\x79\x6d\xbb\x54\x12\xb6\xa6\x9d\x3e\x68\xbb\x98\x3f\x8b\xd0\x4c\x56\xb7\x65\xcd\xe3\x47\xee\x8d\xef\xb2\x99\xbc\xc6\x8a\x44\x5f\x45\x59\xf7\x64\x51\xa0\x6a\xc3\xf1\x64\xfe\xc3\x2a\x27\x79\x3f\x46\xdc\xef\xa2\xf5\xc5\x84\x87\x18\x7b\xdf\x0b\x00\x7c\xce\x67\x32\xb6\x19\x03\x28\xe9\xef\xf9\xfd\xf3\x34\xbb\xb3\x3e\x9e\x80\x44\x8a\x3f\x78\x20\xb2\x0f\xa3\x8d\xd4\xf7\x19\x4a\xff\x73\xfc\x2b\x97\xc9\xef\xbd\xf7\x5e\xa0\xa0\xc0\x72\x03\xb0\x4c\x5d\x94\x9a\x76\x20\x86\x0a\x04\x4a\xde\x7e\xe3\x8c\xdf\x21\x9d\x6a\x2e\xde\x71\x16\xbd\xa4\x11\x16\xd8\x5d\xfa\x7a\xcd\xd2\xfa\xd8\x35\xd7\x88\xd4\xc5\xfc\xc0\x81\x6a\x57\xb7\xd4\x79\xaa\x9b\x74\x0d\x56\xe6\x07\x66\xcf\x7d\xe4\x68\x4c\x34\xfc\x34\xa7\x35\x33\x5c\x5f\x64\x1c\x32\xa6\x3e\x8f\xaf\x4a\x33\xd1\x1d\xce\x5a\x3a\x58\x6a\x6e\x26\xd9\xe3\xbd\xcc\x5d\xf8\xc3\x34\xbb\xfd\xe6\xca\x5a\xb6\xa9\xd9\xee\xe6\xdb\x6b\x74\xe9\xf5\x66\xf6\xf5\x0b\x08\xa9\xa4\x76\x33\x89\x9a\x6a\xe4\xa5\xb8\x50\xb2\xf7\xc4\x6c\x5b\x59\x0c\xaa\x36\xdc\xda\x74\xbc\x78\x16\xad\x1e\x5c\x6d\x6a\x58\x28\x86\x9e\xf1\x1f\x37\xf5\xcc\xc9\xc7\x24\x78\xf7\x1a\x77\xe4\x20\xb1\x07\xdd\x27\x00\x78\x51\x54\x47\x7e\x7d\x7e\x72\xff\x9f\xbc\x0e\xc8\x3c\x50\x89\x12\xa9\xef\x47\xba\xf7\xfb\x84\x74\x0f\x9a\x9c\x03\xb0\xcc\xf1\x47\xff\xa7\x08\xe0\x94\xdf\xce\x67\xdf\x24\x00\x98\x24\xcf\x4d\xbc\x46\x10\xa7\xf9\x9b\x85\x97\x1f\x32\x11\x38\xa5\x7d\x75\x94\xeb\xb6\x62\x8b\x34\x0b\xdc\x92\xb3\x2e\xa0\x2f\x59\x9a\x46\xf2\x05\xcc\xae\x7d\xf7\x93\xca\xda\xef\x74\x65\x65\xa9\x58\xb5\x60\xcd\x6c\x7c\x59\xff\xd1\x8b\xd2\x24\xbd\x7d\x4b\x75\xd3\x2c\xd7\x0f\x6a\x2b\x2c\xbb\x2f\xf1\x16\x75\x69\x57\x7f\x2f\x5f\xfe\x9e\x4b\xab\xdb\x31\x62\xb9\xba\x3f\xcb\x58\x17\xf5\xec\xce\x9a\x5f\x4a\xbd\x5e\x68\xdf\x3c\xc2\x2f\xc1\x54\x2f\xa7\x0b\x8b\x4c\x88\xe6\xd6\x1b\xbe\xbf\x03\xa5\x1f\xb1\xdb\x60\x57\x63\x22\x6a\x22\xd4\x5c\xff\x59\x83\x13\xda\x39\xe8\xac\xde\xeb\x5a\x09\x8c\x98\xcf\x33\xbd\x89\xea\x04\x4c\xa3\xe7\x1b\x7d\xba\x8a\x54\xec\x11\x77\x0e\x7d\xe6\xeb\xc2\x58\x2f\x97\x28\x00\x89\x90\x6d\x83\xbf\xc6\x61\x4e\xf2\x80\x04\x71\x51\x18\xfc\x27\x07\x42\xba\xf7\x3c\x1a\xb0\x5e\xff\xe4\x40\xc8\xef\xbd\x27\xc6\x01\x7e\xed\x17\xaf\xb9\x00\x18\x1b\x69\x9f\xf6\x4c\x00\x33\xff\x57\xfe\xb5\xc6\xd3\x84\x57\x32\x97\x54\xcb\x8b\xcf\xe0\x15\x34\x85\x2d\x02\xe2\x88\x58\x03\x8b\x38\x2f\x37\xaf\xf7\xe8\x73\xde\xd9\x91\x18\xbb\x71\x14\x45\x66\x6d\x3c\x8f\x29\x13\xf2\xd2\x9d\xeb\x49\x05\x7a\x4a\x08\x86\x67\x34\xa9\x38\xf5\x73\x6b\x23\xcb\x55\xa9\xca\xaa\x8f\x10\x99\x6b\xd9\x89\xf1\xaa\xe3\x8b\xc6\x08\xc5\xb8\x44\xb5\x8a\x49\x04\x52\xf1\x2a\xbf\xfa\xe5\xb1\x44\xd4\xc5\xf0\x0b\x7f\xe7\x5e\x68\x9d\x7c\xc8\x8a\x2e\xf6\xef\xd6\x4c\x6b\x7f\x8e\x31\xf5\x42\x6a\x8a\xb7\x79\x63\xd0\x6e\x9f\x35\xf7\x37\x2b\x63\x4d\x5c\xf6\x68\xf2\xdd\xb1\xc5\x36\x39\x16\x69\x4a\xd7\x89\xe1\x0e\xdb\x35\xfd\x7b\x1d\x90\x39\x90\xbf\xbd\x30\xe4\xfb\xdf\x7f\xf6\x7d\xfe\xf6\x81\x90\xfb\x7f\x3d\xf7\x01\x18\x9f\x9c\xed\x69\xba\x03\x55\xbc\xa1\x6c\xe3\xe5\x99\xc4\x4c\x69\x63\xe9\xa7\x19\x4f\x09\xd2\x1a\x48\x3d\xd7\x70\x45\xdc\x63\xf3\x64\xbb\x62\xb7\x1d\x58\x55\x0f\x19\xef\xc3\xd6\x7e\x98\x86\xc4\x36\xff\x7c\x63\x15\x34\x54\x6a\x04\x07\xea\x7a\xa3\x7d\x1e\x58\x86\x8e\xa9\x2b\xa1\x0f\xbf\x23\x84\x45\x2a\xbd\x46\xe5\x21\x1f\x84\x3b\x2a\x36\xa1\xb5\x50\xe1\x41\x28\x45\x51\x74\x21\xea\x59\x20\x9d\x22\xdf\x8c\x18\x7a\xc6\x0b\xaf\xc4\x38\x69\x8c\xa1\xf2\x6a\xde\xf0\x7d\x7c\x78\x45\x85\x3d\xe2\xa2\xa8\x8c\x19\xd8\x83\x55\x75\x3e\xa3\x9c\xdf\xa7\x85\xed\xb1\xef\x52\x39\xff\xd0\x08\x8b\xb3\x93\x54\x6e\x6a\x1f\xc7\x05\x5a\x89\xaa\x24\xb6\xbe\xc0\x15\x5a\x5a\x02\x58\xec\x59\x1f\x57\x04\x69\x3d\x14\x54\xad\xd7\x16\xd2\xf9\xf0\x8c\x74\x6e\xfe\x77\x0e\xc2\x97\x5d\xeb\xf5\x39\xa9\xff\xd3\x41\xf2\xdf\xdf\xfd\x01\xc0\x60\x7e\x62\xf0\x86\x05\x3c\xe1\xa3\x64\xe1\xcb\xc1\xc2\x71\x29\x45\xe1\xdc\xb8\x7b\x44\x3a\xf5\x4c\xe5\x26\xbf\x63\x84\xc3\xa6\xf7\x0c\x65\x1d\x8c\xf1\x94\xae\x4b\x36\x2a\x16\x91\xb8\x98\xab\x3c\x8e\x47\x0c\xe5\x70\x0c\x79\x09\xce\xf7\x75\x18\xb0\x1d\xb5\x51\x6e\x9a\xea\x92\x58\xf6\x47\xc1\x9e\x3a\x4a\xc9\xd8\x23\x1f\x28\x3d\x4a\xe5\x4f\x60\x16\x51\x04\x8f\xa3\x72\xfb\xb0\x1e\x98\x6e\x17\x0e\x99\x0e\xdc\x19\xac\xaf\xdd\x47\x59\xce\x55\x5b\xec\x55\xbb\x11\xd9\x82\x9f\x4f\xb1\xbd\xb6\x66\xb2\xb1\x5f\x5e\xe3\x78\xac\x38\xe5\x64\xc7\xf6\xe0\x6c\x2d\x0f\xc8\xae\xbc\x19\xc3\x75\x99\x71\xc9\xf9\x0c\x8f\xe0\x30\x26\x89\x72\x11\x4f\x95\xf0\x7c\x46\xa1\x72\x49\x8f\xa3\xf0\x0e\x06\x3d\x9b\x1c\x48\xfa\xd9\x3f\x9f\x83\xfe\x67\xeb\xf5\x33\xdd\x7f\xf5\x7f\xc9\xf7\x7f\xff\xd5\xff\x74\x26\xf5\x7f\x45\x01\xb6\x4f\x52\x50\xe4\xb7\x03\xf0\xc4\x5f\xbe\x9c\xfc\x0c\x4a\xc5\x46\x39\xd0\x61\x25\xc4\x66\xb5\x60\x69\x06\x8f\x1f\x04\xac\x91\x8b\xda\xc1\x0d\xfe\x81\x09\x9f\x1a\x26\x66\xce\xa9\x3f\x82\x37\x4d\x9b\xb6\x18\xd5\x9e\xc0\x53\x95\x7c\xb4\xce\xdc\xc8\x7d\xc8\xc5\x15\xf6\xb5\xd8\x6a\xcb\x4d\xe0\xac\x27\xa6\x6c\xdf\x48\x4f\xe2\xaa\x90\x87\xac\x42\xa4\x4a\xf1\x47\x70\xa1\x66\xf6\x92\x68\xbc\x11\xee\xa9\xf1\x28\x99\x7b\x90\x18\x5f\x5b\xc2\x1b\xea\x8d\x4a\x6e\x9b\x35\xc0\x47\xe8\x3e\x90\x80\x29\x09\x7c\x93\x0e\xb5\xc4\xcb\x71\x27\x3c\x42\xf3\xa6\x44\xe8\x68\x01\x81\x43\x5d\x4d\xe2\xfd\xab\x1e\x82\xa2\x9a\xff\xe6\xb9\x48\xe6\xa1\xba\xdf\x53\xfc\xd1\xff\xc6\xdc\xa6\xf8\x87\x07\xe1\x6b\x15\xa9\xff\xb9\xe5\xaf\xfe\x67\x21\x89\x7f\xd0\x20\x71\x00\x1f\x01\xce\xd7\xd2\x70\xa5\xdb\x02\x70\xbb\x9d\x27\x5e\x75\x81\x47\xe2\x71\xac\x3f\xfc\xbf\xc3\x25\x95\x34\xe1\x48\x27\x35\xa2\xaf\x61\x86\x1c\x8a\xcc\x3f\x18\xed\x25\x0c\xf9\x6b\x6b\xbc\xfa\x97\xf7\xa2\x91\x70\xac\x72\x9b\x81\xa6\xe2\x33\xfc\xa7\x96\x6e\xc3\xa7\x72\xd2\xf8\xa7\x4f\xb2\x0c\xef\xc9\x78\xe1\x8d\x3e\x82\xe9\x4e\xc9\x35\x7c\xc6\x92\x81\xd1\x89\x7f\x71\x0f\x5d\x84\x31\x82\x85\x0a\x8b\x08\x0d\xc1\x9a\xf0\x45\x2e\x48\x94\x62\xad\x9a\x50\xa8\x58\x29\x1a\x32\xdb\x4e\x48\x56\xf2\x17\x95\x98\x72\x22\xb4\x2a\x34\x8b\x20\x3f\x7d\x20\x7c\x94\x3f\x00\x90\x4b\xf2\x5f\x90\xf3\x50\xc8\xfb\xc0\x0a\x8e\xe2\x1f\x39\x10\xdf\x49\xf7\xb6\xdf\x76\xfd\xc9\x01\x91\xfb\x9f\x64\x0e\xa6\x78\x0f\xc0\xc9\x2a\xca\x03\xe9\x07\x01\xce\x77\xee\x3f\x17\x43\x0d\xc0\xa6\x74\xf2\x74\x50\x14\xe0\x45\x1b\x19\x3a\x3c\x62\x21\x41\x11\xc7\xad\x60\xe3\x0e\x47\x74\xcb\x44\xa4\x4c\xca\x89\x8d\x16\xa3\x52\x28\xfd\x4e\xa2\x96\xb7\xb3\x62\xb8\x96\x03\xd1\x21\xac\x49\x41\x5d\xfd\x1e\x91\x3f\x61\x48\x69\x8d\x9c\xfb\xa0\x44\x41\x68\xbc\x41\xa1\xb1\x28\x7b\x89\xf0\xb5\x65\xaf\x6a\x87\x54\x3b\xa1\xa5\x2f\x46\xfd\xf2\x06\xf7\xf0\x91\x50\x35\x43\xaf\x76\x8d\x9c\xf7\xf0\x7f\x71\x0f\xfc\x08\x44\x08\xf1\xa9\x50\x06\xff\xd0\xe2\x39\xe2\xa0\x90\xe6\xe6\x73\x30\xa4\xff\x5f\xfb\xe0\xbf\x38\x20\xd2\xbf\xb7\x90\xb8\x80\xaa\xf9\x3f\xfb\xbf\x64\x0f\x42\x20\x0a\x80\xa2\x99\x82\x22\x74\x0c\x80\xfd\xf6\x89\x9f\xde\x0f\x00\x44\x98\x2f\x6a\x39\x26\x42\x87\xe2\x6e\x36\x09\x73\x3d\x88\xd1\x94\xe3\xfa\x6e\x58\x05\x54\x66\x23\xa2\x54\xba\x22\xc4\x8f\xae\x9a\x12\xaf\x35\x23\x88\x3d\x81\xbb\xa5\x5e\xaa\xb2\x12\x1f\x47\x0b\x48\x15\x6c\xe4\x3e\x08\x10\x3d\x0b\x4b\xe5\x8f\xc9\x9e\x23\x3a\x57\x3b\xcb\xfd\x94\xa6\x26\x8a\xb5\x1c\x51\x78\x25\x6e\x44\x34\x7f\xdc\x2c\xa7\xb2\xc1\x3d\xcc\x11\xb9\xa6\x5c\xe5\x5f\x08\x5b\x10\xbd\xd6\x5c\x64\x52\x85\xa4\x89\xbd\x44\x13\x89\x9c\x0d\xee\xe1\x24\xd8\xc3\x3e\xfe\xcb\x3c\xb1\xf0\x0a\x22\x38\xf8\xb8\x73\x60\x15\xaa\x58\xc7\x00\x1e\xcd\xac\x8f\x7b\x92\xf5\x9f\xe3\xff\x9f\x3e\x18\xdc\x7a\xbd\x49\xda\x0f\xf3\x3d\x49\xfd\x5f\xd2\xf7\x93\x73\x20\x82\x33\x01\x4e\xdf\xa2\xf4\xf5\x6e\x04\x60\xed\x3f\xf2\xdc\xe5\x21\x80\x60\x0f\xad\xaa\xd5\x57\x00\x59\xc5\xcb\xb9\xc6\x97\xe0\xa6\x86\x2f\xbb\xa1\xae\x2b\x84\x1b\x28\x70\xe1\xb4\xce\x81\xbe\x9d\x18\x7f\xb8\xea\x43\x30\x77\x5f\xe0\x17\x54\xd6\x03\xa9\x20\x17\xc1\x66\xc5\x93\x70\x3e\x46\x4a\x84\x57\xee\x2a\x6c\xcd\x90\x17\xe3\x97\x89\x21\x7e\x2d\xc4\x8a\xe3\x25\xf7\x11\x17\xab\xe7\xc4\xda\xc5\xf7\x11\xc7\xef\xf6\x88\xbb\x6e\x70\x0f\xc2\xc4\x97\x2f\xe8\xc4\xb5\xc9\x79\x0f\x02\x0d\x44\xc2\x4c\xb5\x48\x31\xd9\x73\xc1\x97\x0e\xe1\xc0\xc0\x7b\x93\x97\x07\xda\xc0\x86\x13\xcf\x1d\x00\x28\xa8\x61\x4d\x05\x78\x4f\x3e\x07\x18\xff\x79\x0e\xfe\xcb\x07\x43\xfa\xb9\xdf\xba\xb9\x5e\x8b\x7c\xfe\xe4\x60\xae\x1e\x20\xf5\xbf\x47\xfe\xec\xff\x3b\xe6\x01\xd0\xab\x51\x4b\x5a\x2b\x00\xf0\x10\x8f\x9f\x30\xc7\x00\xc8\xd0\x5e\xa2\xd1\xcf\x83\x2f\x2a\xcf\x19\xc5\x34\x9f\xc1\x43\x1d\x6f\x96\x40\xf5\xa3\x50\x6b\xde\xc9\xde\xa0\xf2\x0e\x62\x5d\x94\xb9\x3f\x28\x6a\x40\x8e\xd7\x37\xae\x12\xf9\x4e\xf0\x0e\xb5\xe4\x7d\x23\xbd\x0a\x51\xb1\x6a\x3c\xc1\x52\x75\xa0\x9e\xc5\x2c\xe0\x2a\x11\x03\x2a\x85\xf9\x02\x1e\x62\x99\x20\x5e\x75\x5f\x70\xaf\xd0\x0a\x58\xdd\x89\xe0\xdb\x47\xe6\x1e\x04\xf7\x00\xdf\xd3\x63\x02\x8d\xff\xca\x7b\xa0\x06\xbb\xd9\x01\xde\x31\x9e\x07\x70\x0f\x4b\xe0\xf4\xe1\xc9\x81\x17\x10\xc6\x61\x06\x80\x08\xfd\xf5\x79\x31\xa4\xbc\x97\xcf\x3b\xff\x07\x07\x44\xe2\x44\x4b\x48\xf3\x90\x41\x9a\x97\xbf\x7d\x28\x2e\x06\xeb\xd5\xb4\x0c\x80\xe2\x2e\x05\x85\x65\x3a\xc0\x85\x2f\xbb\x13\x4c\xf6\x02\xb0\x49\x1f\x90\xd5\xc7\x01\x88\xb5\x9d\x1e\xd7\x5c\x05\x50\x2c\xbe\x28\xae\xba\x06\xcb\x9a\xca\x97\x1f\x29\xab\xc3\x4f\xe3\x83\x57\xbe\x29\x68\xc0\xb4\xcd\x09\xc6\x55\x79\x05\x18\x70\xe3\x64\x4d\x93\x41\xc2\x0b\xef\x4c\xd6\x0b\x52\x05\xf0\x34\xc4\x85\x6d\x87\x44\x1b\x3c\x88\x69\x63\xb7\x11\x5b\x85\xca\xf4\xa7\x9c\x5a\x22\x22\x50\x97\x5f\xcc\xe1\x22\xc4\x00\x35\x15\x95\x1c\x01\x82\x77\x21\xbd\x4e\x82\xcb\xe5\x6f\xee\x81\xb7\x1b\x92\x86\xc4\xb9\x8c\x78\xee\x41\xce\xc8\x69\xce\x3a\xee\x29\xa8\xf9\xba\x9f\xa3\x9a\x47\x1a\x6e\x2d\x6d\xe3\x34\x21\xef\x83\x5f\x1f\xfc\x8f\x73\x30\x99\x74\x0e\x90\xe6\x25\xfb\xf0\x9f\x1c\x0c\xd9\x87\xe2\xf1\x6b\x1e\x0d\x28\x28\x6c\xf6\xad\x7f\xad\x4b\x9a\x37\xa3\x5b\x00\x67\x7a\x76\x7c\xd5\x3d\x04\xc0\x7c\x89\x7a\x49\xcb\x1a\x40\x70\xef\xd1\x62\x55\x09\x00\x99\xfd\x67\x6c\x94\x75\x01\x54\x53\x2f\x04\xcb\xbf\x06\x30\xa0\xbf\x38\x2f\x37\x09\x60\xca\x4c\xcf\x25\xeb\x07\x60\xf3\x99\xe1\x98\xf4\x7b\x98\xf1\x10\x60\x12\x92\xcc\x83\x05\xbf\x53\x8c\x58\x71\x65\xf8\x19\x7e\x86\xa9\x59\x4c\x12\xde\xc5\x3d\x62\x69\x11\xa6\x82\x6f\x69\x8d\xcc\xfb\x84\x2e\xc1\xab\xbc\x17\x2c\xe3\x02\xd2\x30\x56\xca\xcf\xb2\x85\xff\x1c\xbc\xaa\x8e\x62\x29\xe6\xbd\x09\x83\x4d\x7d\xac\x27\x78\x0d\xa0\xfd\xc1\x12\x9b\x23\x8f\x21\xb4\xf6\x2f\xb0\x8d\x71\x4d\xc2\xc0\xab\x0b\xac\x86\x9c\x05\x30\xf5\x3e\x97\xd9\xef\x07\xc9\x77\xf4\xd6\xe1\xaf\x73\xf0\x1d\xe9\x1c\x28\xff\x73\x1f\x4c\x7c\xfc\x27\x07\xe3\xad\xbb\x5e\xc9\x79\x28\xc6\x7d\xeb\x55\x83\xc4\x83\xc8\x06\x02\x6c\x71\xa5\xa0\x50\xfd\x0e\x40\x6f\xb2\xeb\x9a\x92\x2c\x00\x67\xe3\xfe\x17\x0a\xaf\x00\xc4\x6c\x8e\x65\xca\xa9\x03\xc8\xf6\x9c\x3e\x28\x63\x00\xa0\xce\x71\xf6\xa4\x94\x31\x80\xee\xcb\xb3\x3f\x64\x82\x01\x2c\x3e\x5f\xd2\x94\x4a\x04\x70\x70\xa2\xb7\x16\xa7\x00\x70\xb3\xb9\x38\x26\xea\x00\xe0\xf7\x94\x9e\x51\x24\x0b\x20\x34\xe3\x72\x85\xb0\x0c\x40\x0c\x91\x01\x2b\x18\x02\x90\x72\xea\xca\x36\x01\x76\xc0\x5e\xeb\xba\x72\x83\x2f\x0e\x88\x85\xe7\xae\xb0\x70\xf7\x00\x54\xe8\x5d\x96\xe7\x16\x05\xa8\xf5\x66\x70\xe4\xda\x0f\xd0\x6c\xc5\xe0\xc0\xd9\x07\xe8\xae\x3d\x57\x6e\x71\x9e\x05\xec\x63\xb8\x92\xfe\xeb\xd3\x8a\x3f\xfb\xb5\x3f\xfc\xcd\x41\x9c\x5f\x16\x51\xdf\xb9\x1b\x80\xed\xa3\xb0\xe7\x9e\x78\x00\x41\x10\x7d\x78\xa0\x0d\x40\x5a\x53\xf2\xf6\x71\x6e\x00\x15\x37\x59\xdd\xb3\xda\x00\xda\x2a\x4a\x26\x97\xe6\x00\x0c\x29\x34\x2a\xd9\x5e\x01\x18\x45\x19\xea\x09\x9f\x85\x77\x26\xd9\x16\x67\x64\xd4\x21\xc1\x28\xd8\x6d\xb7\x4a\x07\x91\x60\xe8\x10\xf2\x40\x7f\x96\x18\xaa\xc7\x9a\xe2\x66\xb1\x9f\xb0\xaa\x35\x52\xd2\x6b\xaf\x41\x88\x56\x33\xb8\xbb\xd7\x79\x95\x70\x42\xd9\xec\xf1\x36\x77\x2c\xfe\x9e\x82\xf5\x08\xd6\x7b\x27\x7e\x4e\xb6\xf6\xdb\x0d\x8f\x50\xbc\x95\x4c\x27\x32\xc4\x97\x8e\xa0\x2a\xd5\x8a\x89\x77\xa1\x21\x3c\x92\xac\xc7\x72\xdb\x5f\x40\xae\x48\xaa\x60\x3b\xac\x4d\x66\xb9\xa5\xfa\xb1\xf9\xb6\x4a\x5f\x3b\xa5\xcf\x63\x7f\x58\xeb\x8e\x3b\x4a\xbb\xe0\x38\x2c\xad\x5e\x07\xc9\xf4\xe0\xf4\x2d\x5e\x0c\x7b\xc8\xf2\xe1\x0a\xcd\xe6\x9e\x60\x65\x3d\x70\xa3\xa6\xfb\x1f\xef\x93\x8d\xc3\x1f\x35\xa6\xe9\x74\x90\xeb\xc5\xb3\x18\xd5\x3e\x48\x95\x3b\x80\x4f\xd3\xc3\xfe\x73\x1e\x04\x45\xfe\xd9\xff\xbf\x50\x28\x54\xbb\x93\x11\x80\x7d\x50\x68\xf7\x9e\x36\x00\x91\x3a\x91\xc2\x83\xab\x00\xb2\xb9\xe2\x42\xc7\xa4\x00\xd4\x1e\x4a\x7f\x3f\xbb\x07\x40\xff\x92\xe2\x59\xfa\xab\x00\x26\xcc\x6a\x08\xb6\x1a\x00\x13\x3b\x83\x2c\x61\x3f\xe8\x32\xf3\x35\x6b\x92\x3b\x0d\xae\x26\x1d\xce\x21\x6a\x85\xc4\x79\xa3\x6b\xc1\x27\x0c\xbe\x13\xb9\xf5\xeb\x53\xfa\x6d\x8e\x11\x6a\xb5\xa7\x4a\x35\x9d\xda\x09\x92\xea\xad\x8d\x39\x6e\x2b\xf8\x2e\x95\xfd\x7d\xe1\xde\x69\xf8\x1c\x85\xee\x91\xd7\x3e\x7a\xb8\x4f\x72\x6b\xb3\xf3\x41\x27\xf0\x3e\x32\x1e\x68\x15\x1f\x77\xc2\x61\x69\x6e\x0c\xb7\x9b\x13\x5e\x4f\xca\x0f\xd3\xe3\x14\xbd\x32\x20\xd5\x81\xa5\x77\x90\xfd\x31\x2e\xfd\x0a\xcb\xef\xe0\xfb\xe5\x9a\x74\x3b\xb6\xcf\xe6\xda\xd8\x16\x59\x16\x6c\xaf\xad\xf6\x73\x36\xf9\xed\xd8\x21\xdb\x8f\x83\xcf\xe5\xd4\x71\x7a\x96\x01\x8f\x27\xe4\x55\x70\xde\x16\x33\x0f\x67\xe5\xbe\xe0\xa6\x4c\x99\x1e\x1c\x53\xb8\x82\xdf\x6e\x12\x7b\x8f\x49\xce\x1e\x5f\xaa\xe7\xff\xcf\x79\x58\xe7\x20\xfe\x95\x83\xf0\x88\xff\x3a\xf5\x69\x00\xd1\x7e\xc1\xe9\x03\x8d\x00\x0a\x7b\x44\xa9\x8f\xc6\x01\x68\x1d\x95\xb4\x3e\xc3\x0d\x60\xc8\x27\xbf\x44\x2f\xbf\xe9\x0d\x32\xcf\xd2\xcd\x16\x8c\x87\x36\xb3\x19\xb3\x62\xb9\x3e\x50\x30\x37\x73\x58\xd1\xbc\x48\x6c\x36\xa9\x0c\x44\x9b\x28\x10\x69\x0c\xfd\x93\x4e\xda\x2e\x12\x0a\x75\x02\x4a\x1c\x9c\x23\xf1\x53\x1a\xf3\x8d\xdd\x5e\xdf\xf1\xe6\x2a\x3d\xfd\xef\xfc\xe9\xf1\xb4\x8a\x57\x3e\xb8\x04\xe4\xe2\xbe\xc8\x65\x2c\xe4\x05\xce\x90\xf9\x17\x7c\xb2\x8c\x24\xda\xc3\x3b\x11\x4d\x94\x0e\xc6\xc8\xba\x71\x93\x79\xa0\xaf\xa9\xb2\xd2\x98\x09\xe7\xd8\x8f\xbe\xb2\xe3\x58\x26\xc7\xe7\xaf\x6f\xca\xbd\xc2\x86\xda\xa3\x87\x4f\xca\x37\x62\x9b\xec\x86\x1f\x77\x2a\xf8\xe2\xa8\x6d\x3c\x7b\xdc\x15\x66\x71\x2c\xd6\x95\x0f\xcc\x14\x9f\xe3\x82\x2d\x7d\xff\x1f\x5f\xe7\x1d\x4f\xf5\xfb\xff\x7f\x1a\x1a\x2a\x95\xb4\x24\x44\x36\xd9\x7b\x6f\x8e\xbd\xf7\xde\x7b\xcf\x8c\xec\x99\x42\x28\xab\x24\x25\xd1\x40\x56\xa5\x42\x24\x4d\x49\x68\x28\x4a\x12\x59\xc7\x19\xaf\x73\xce\xf3\x77\xc3\x39\x54\xef\xcf\xf7\xf7\xd7\xf3\xf6\xbe\xf5\xfe\xe3\x5c\xcf\xf3\xba\x9e\xd7\xcb\x79\xdc\xaf\xc7\xa3\x79\x4c\x2b\x9f\x40\x67\xab\x52\x6f\x89\x62\x23\xd0\xda\xf6\xaf\xf3\x51\x14\xfd\x7f\x43\xb5\xc8\xa5\x3f\xfb\xb0\x96\x97\xf3\x56\xaa\x62\x4f\xfb\x3a\x07\x61\x26\xa4\xe4\xc7\x94\x06\x60\x9f\xa7\x36\x79\x3c\x1f\xc0\xd9\x49\x07\x7f\x22\x0b\xc0\xe5\x85\x99\x8d\x9c\x12\xdc\x74\xbe\x64\x17\xa0\xc5\x0a\xec\x4e\x32\x1e\xdf\x4c\x2a\x48\x29\xf6\x17\x22\x5d\x1d\x36\x10\x11\xeb\xed\x99\x1d\x1e\x34\xc4\xbd\xe6\x3d\x65\xf3\x41\x85\x14\x3e\x0a\xc1\xeb\xdd\xee\xe1\x8f\xee\x47\x2a\xb5\x9b\x3e\x0e\xc5\x34\x20\x27\x34\xc5\xe6\xe3\xe3\x33\xd6\xb8\x28\x2f\xb5\x64\xac\x7c\xe8\xeb\xf9\x9d\xea\x32\xd8\xb2\x10\x9e\x09\x46\x0d\x7a\xdc\xc1\xc0\x67\x1f\xf9\x35\x7d\x70\x7a\x81\x2c\x03\xd5\x9a\xb3\xb8\x67\x7e\x22\x2f\x9a\xb5\x52\xf1\x22\xde\xd5\x3d\x5f\xb5\x05\xf0\x31\x9e\xa3\x9d\x06\x5a\x44\x3c\xc1\xed\xd8\x03\x12\x4a\x18\xd9\xea\xc6\xd5\xb2\x4d\x67\x13\xa2\xe3\x62\xd4\x30\xab\xdd\x48\xd8\x6e\xfb\xe0\xb6\x30\xaa\x9e\x40\x67\x3b\xb8\x3e\x17\x28\xba\x37\x2d\x56\x78\x25\xa7\x97\xef\xac\xf8\xf5\x6d\x82\xff\xe5\x20\xd6\xf2\x72\x5c\xe5\x15\x8f\xa8\x01\x38\xbe\x53\x65\x65\xbf\x0d\xe0\x86\xd6\x71\x11\x7c\x01\xe0\xfe\xcd\xf8\xa9\x4c\x19\xdc\x71\xb7\xb7\xa9\xd4\xb2\x85\x8d\x2e\x83\xae\x3f\xcd\x0a\x49\xfe\x8e\x9d\xa1\x23\x8e\x07\x88\xf5\xb6\xce\xe9\xfe\xde\x19\x04\x8c\x45\x6e\xe9\x40\x70\xcb\x1a\x1f\x55\xad\x37\xd3\xab\x18\x1b\x8b\xc8\xa1\x68\x46\x6d\xe3\x7f\xe3\x1f\x6b\xe6\x2e\xe6\x25\x3e\xa1\xf0\x40\x94\xe7\x62\x86\xa4\x61\x8e\x3d\x16\x9e\x4c\xe1\x81\xde\x6f\xd4\xbe\x88\xbd\x1a\x46\xf5\x8a\x0a\x65\x82\x93\x0c\x7a\xd1\x5b\x8d\xaa\xc5\x5d\x0b\x38\xd4\xb5\x03\x35\x8d\xe7\xf4\x79\x4e\xe1\x81\x5a\x1f\xe9\x6c\x44\xd8\x5d\x73\x1a\x2e\xeb\xa2\x91\x3d\x6e\xd7\x6e\x6e\xd7\xa3\x47\x72\x9c\x9a\xaf\xdf\xd3\x0f\x45\xb2\x9c\xd9\xd6\xe7\x02\xa5\x0f\x74\x07\x84\x96\x56\xfa\x70\x4a\xf4\xea\xd6\xcf\x7f\x70\x10\xa9\xe2\x95\x7b\x8e\x03\x18\x95\x49\x35\xee\x57\x05\xb0\xbb\x2e\xf7\x8e\xc9\x16\xc0\xd5\x4c\x95\x9b\x43\x16\xc0\x53\x40\xdb\xec\x84\x13\x80\x67\xab\x51\xbf\x4c\x30\x3c\xf4\xcc\xb1\xde\xa8\x19\xbc\xe6\x1b\xc4\xeb\x9c\x1e\x5a\xe1\xf2\x9c\x98\x6c\xf7\x24\x8d\xdd\xb7\x96\x70\xde\xca\xb7\xc4\x36\x3c\x15\x79\x60\xaa\x54\x4f\x1d\xdb\x8f\xff\x65\xe0\xde\x3b\x9a\x94\x81\xcf\x44\x3d\xfe\x8a\x4d\x11\xc3\x9b\x68\x31\xa0\xe5\x53\xbe\x53\x78\xa0\x7f\xfd\x81\x28\x39\x59\xfd\x6e\x3a\xb2\x58\xa3\x88\x9c\x97\x8c\xa8\x2f\x38\xda\x90\xbd\x5d\x7b\x75\x6f\xe1\x1c\x82\xb2\x1f\x99\xeb\x19\xe1\x32\x02\x6b\xd7\x78\x28\x69\xbd\x16\x7c\x9a\xd7\xc4\xcd\x3e\xfd\x54\x64\x8b\xbb\x59\xcd\x15\xfd\x45\x44\xdf\x55\xa4\xba\x5f\x7f\x1e\x89\x71\x6e\x5b\x9f\x0b\xd4\x03\xa2\x2b\xf7\x0f\x8f\x1d\x11\x6b\xd9\xbc\x0d\x80\x7f\xbf\xc8\xbb\xad\xc8\x3a\x07\xa1\x7d\x57\x2c\x6f\xcf\x49\x00\xd3\x8d\x62\xa5\xf4\x08\x80\x83\xa9\xcc\xf4\x11\x31\x00\xf7\x5e\x85\xa9\x63\x0d\x00\xbe\x42\xea\x18\x7e\xde\xb5\xfc\xa4\x27\x7e\x6f\x2c\xd2\x35\xb3\x48\x63\x5e\x02\xce\xd5\x96\x47\x48\xd4\x6e\x07\x83\x34\xdd\x5e\x10\x05\x1d\x79\x92\x71\x81\xce\x04\x29\xeb\x9b\x25\x76\xd1\xbc\x6b\x7c\x54\xa0\xc1\xc3\xe7\x26\x69\x0c\xb8\x05\x1d\xea\xef\xb5\x19\x5a\xb8\x49\xad\x96\xc5\x2b\xe9\x9f\x28\x3c\xd0\x6c\x91\x96\xe5\x92\xe3\xa9\x86\x2f\x4f\x50\xc6\x4b\x33\x71\x2f\x28\x39\x59\x2f\x2b\x74\x6f\x61\xa9\xa2\xbe\xf4\x6c\xd1\x2b\xc6\x66\x87\x63\x3a\x77\xe8\x65\xe2\x0e\x87\x9c\xbe\x27\x67\x10\x83\x93\x08\x71\x68\x7e\xa9\x5f\x84\xdf\xec\xd7\x43\xf1\x05\xaa\xf5\x32\x3c\x82\x7f\xe8\x39\x50\x2d\x67\xf0\x15\x51\x71\x7d\x72\x25\xdd\xf0\x33\x62\xe6\x6a\xbb\x3e\x17\x28\xfa\x3f\x5b\x98\x98\xcb\xe6\x24\x00\x21\xbc\xd0\xeb\xed\x85\x00\x8a\x34\xe2\x49\x74\xf9\xeb\x1c\x84\x45\x80\x48\x17\x7d\x22\x80\xf3\x36\x89\x5f\x87\x52\xd7\x79\x90\x40\x0e\xf5\xbd\xfc\x58\x80\x60\x63\x3d\x0b\x69\x2c\xbc\x0f\x56\x33\xed\xd7\xb0\x24\x4d\xf9\x76\x3a\x36\x59\xcc\x11\xbb\x3d\xaa\xfc\x6b\x3d\x33\x09\xef\x9c\x65\x92\xca\x43\xf9\x90\x6e\xdb\xb0\x62\xbb\x38\xb9\x35\x3e\x2a\xc2\x88\xed\xc5\xc7\xd3\x2f\xb1\x24\x9d\xca\x9f\x99\x67\x7c\x28\xfe\x40\xd8\x68\x2d\x05\xb4\x65\xca\xa9\x9f\x6c\x28\x2f\x74\x51\x8a\xd3\x9a\x3f\xd0\x7e\x3d\x9b\xa5\xdf\xf1\x5f\x9f\xe5\xeb\x87\x60\xf2\x62\xfa\x28\x3c\xd0\xbd\x39\x43\x3c\xd6\x3b\xf2\x46\xd3\x77\xc3\x7e\x9c\x48\xc8\xcb\x3b\xfc\x46\x5d\xb8\x9c\xa0\x5a\x8a\x2f\x50\xb5\xa1\xd1\x63\x7c\x95\xd7\xe2\x15\x69\xe3\x36\x7c\xaf\xd7\xee\x72\x2a\x13\x40\xf6\xbb\xcf\xaf\xef\x87\x4d\xcc\xc2\x2b\xf7\xf5\xd8\xe9\x44\x7e\x6f\xbe\x00\x20\x18\x2e\x18\xb9\xad\x17\x40\x79\x58\xe4\xd7\xae\x3e\x00\x03\x39\x51\xde\x3d\xa3\x7f\xf8\xa3\x94\x89\xe1\x0f\xd5\x00\xf8\x8e\xc9\x6e\x60\x19\x02\x08\xdf\xa9\x3a\x73\xc2\x04\x20\xb2\x18\x65\x27\x2d\x04\xc3\xe1\xa1\x26\x87\x34\x92\x49\x98\xa0\x63\xf6\x06\x16\x27\x89\x85\xde\x31\x3e\x5b\xbd\x73\x08\x01\x6e\xdb\x4f\xf5\x45\x1e\x42\x58\x1d\x0e\x9d\xf7\x48\x6a\xc4\xb3\x5a\x5c\x6d\x88\xcb\x8c\xc6\xc9\x18\x49\xbd\x3a\x78\x46\x17\xab\xad\xf3\x7b\xba\x3b\x3f\x89\xe2\x0f\x34\xff\x18\xc5\xb0\x18\x9e\xa9\xf5\x95\x55\xf7\xd9\x22\x21\xe3\x00\xc5\x1f\xe8\x25\x9f\x81\xca\x52\x42\x62\x75\x37\x8b\x61\xe3\x12\xe6\x54\xe3\xc3\x00\xe3\xed\x18\xc3\x78\xfe\xe6\x1e\xe3\x62\xac\x42\x34\xc3\x9d\x5e\x13\x5f\x6c\x47\x04\x47\x1d\xb5\xc9\x19\x9c\x73\x88\xc8\xb5\xcf\xa6\xbe\xb8\xfb\x81\x70\xe5\xb1\xc9\x18\xde\xcc\xb7\xf6\x22\x62\xd2\x87\x9f\xf1\xe4\x2b\x95\x30\x2b\xc1\x3f\xf3\x4a\x59\xef\xc3\x96\xa3\x27\x56\xfc\x51\x38\x1e\x89\x30\xd3\xc4\x03\x08\x5d\x10\xaa\xdb\x1e\xf8\x3f\x38\x08\x2a\xa1\xaf\xf4\x5f\x01\x3c\x2a\x45\x9e\x1c\x88\x02\x08\x3a\x27\xc9\x7b\xd4\x0d\x20\x6a\xaf\xf2\xb4\x00\x0d\xc0\xc9\x23\x5a\x1e\x92\xb9\xf0\xe1\x64\xbc\xd1\x1e\x8d\x4b\xa4\x6f\xe1\x83\xb6\xb6\x56\xfb\x88\x51\xbe\x6d\x5e\x8b\xbe\x9b\x08\x6c\x1e\x0a\x71\x81\xd1\xb3\xf8\xb7\x8e\xb7\x0a\x53\x52\x59\x71\x69\x56\x1b\x1b\x84\x73\x4a\xb0\x11\xc6\x47\x5e\xfb\xe5\x2f\x62\x62\x75\x65\xe6\x44\x8a\x86\xb0\x55\xa8\xc2\xf9\xa1\xdc\xc3\x93\x61\x7a\x74\x0b\x16\x67\x59\x3f\xfe\xd6\x1f\x59\xa4\x3f\xdd\xf6\xc6\xdd\x50\x01\xad\x98\x8e\xef\xb6\x37\x56\x44\x63\x53\x59\x1f\x2e\x18\x63\x96\x1a\x12\xaf\xb6\xb2\x9b\xaa\x62\x78\x4e\x25\x51\x78\xa8\xba\x23\x66\x61\xd8\xd3\x91\xef\x29\x39\x61\x55\xba\x66\xd5\xb8\xd2\xe0\x3d\x15\xc7\xcc\x6e\xe1\xb9\xfd\x55\x4b\xf2\xcc\xcf\xe1\x73\x7c\x42\x2f\x98\x98\x37\xe1\x7b\xbd\x9a\xff\xe2\xc4\x56\xb8\x41\x8a\x0f\x82\xd8\x36\xc1\xde\xed\xb7\x00\x34\x25\x04\x8f\xec\xec\x03\x30\x4b\x3b\x31\xbc\xdb\x0f\xc0\xf9\xa5\xe0\x10\xfd\x02\x80\xdf\x4e\x61\xe5\x03\x71\x00\x11\xf2\x92\x2d\x2c\xdd\x00\x71\xe5\xf2\x47\xb9\xd1\x00\xa7\x5e\x69\x18\x48\x06\xc2\xef\x84\x50\x3d\x92\xba\x14\x69\x2a\x86\xda\x0a\x6d\xf9\x9b\xa8\x14\xd8\xe1\x49\xf4\x7f\x8b\x5c\xf3\x66\x3b\xf9\x21\x5e\x10\xcf\xe4\x42\x53\xa0\x97\xe5\x83\x1d\xb4\xbe\x54\x7f\x32\x9f\x01\xa3\x61\x82\xea\xbf\x51\x9c\x43\xe1\x81\x66\xc3\xf4\x2c\xe6\x32\x8b\x68\xc7\xa8\x0c\x42\xe7\xc3\xce\x59\x0f\x58\x18\x7d\x59\x70\xcd\x75\x7f\x2a\x67\xf2\x6a\x31\xf3\xf4\xfe\xc7\x6e\xa6\x17\xd1\xee\x19\xce\xad\x09\x66\x6f\x96\x24\x53\x5a\xee\x7c\xb3\x60\x5b\xfa\x99\xe8\x57\x77\xd8\xa2\x02\x93\x1a\x2f\x71\x7d\x8b\xc5\x65\xac\xe4\x49\xf9\x8a\x54\xab\x28\x6c\x45\xd4\xd6\x4b\x0c\x96\x5b\x71\x81\x21\xe5\x25\x5a\x96\x25\xb8\x1f\x81\x49\x45\xe1\x96\xc3\x78\x33\x3f\xff\x73\x5f\xad\x94\xf1\x19\x3e\xb8\xe5\x3e\x9c\xb8\xb7\xbc\xfe\xed\x1b\xf9\xf6\xfd\xa9\xff\x4b\xbd\xe2\x6f\xda\xce\x09\xa0\xcb\x26\x10\xb5\xf3\xd9\x1f\x3e\x08\x1a\x02\x08\xfd\x35\x80\x60\x1d\x41\xea\xfd\x77\x01\x62\xea\xc4\x4c\x8f\xd6\x02\xa4\xa6\x49\x5f\xe7\xb2\x04\x48\x8b\x51\x2d\x94\x38\x0b\x90\x61\x81\xf2\x50\xed\x26\x7d\x4f\xd2\xb4\x60\xb5\x4a\x23\xaa\x44\x9e\x72\xe3\x0d\xe0\x46\x18\xfd\x83\xc2\x7b\x93\xaa\x71\x16\x6e\x17\xf2\xf3\xcf\xde\xc6\xc4\xdb\xd6\x37\x64\x14\xf7\xa0\x1b\x4d\x3e\x0e\x39\x5c\x3e\x42\xf1\x4b\xfa\x97\x07\xea\x1b\x31\xab\x9f\xd7\x28\xac\x5b\xcb\xc9\xea\xb2\x78\xb3\xf8\x3b\x5b\xa4\x7e\xd6\x72\x12\xdd\x94\xfe\xf4\xfa\x45\x1b\xea\xa5\x80\x94\x9c\x2b\x9d\xb6\x3c\x4b\xcf\x93\x3e\x56\x88\xda\x88\x62\x66\x62\x63\x4b\x17\x6d\xaa\xb1\xe1\xd1\x4e\x14\x5f\xa0\x02\x23\x5b\x01\x5c\x74\xc8\x54\x9e\x89\x0d\x1e\x47\x0c\x34\x3b\xa3\x6e\x53\x87\x3f\xe5\x9b\xb0\xdc\x07\x81\x2f\xcb\xeb\xdf\x73\x97\x47\x7d\xb9\xf2\x13\xf9\x71\x5b\x23\x01\x94\x48\xfc\xac\xb4\x02\x00\x86\x0f\x78\xf3\x76\x4c\x01\x38\x46\x73\x4f\xec\x0a\x06\xf0\xdb\xc1\x97\xbd\xb7\x1a\x20\x0a\xc3\xb7\x67\x5f\x0b\x40\x32\x49\x38\x9e\xa9\x13\x20\xeb\x91\x24\x0f\x47\x27\x40\x8e\x89\xe2\x4d\xd1\x48\x98\xcd\x21\x6a\xfb\xa9\x67\x90\x48\x59\x93\x26\x2c\x96\xc7\x88\x6c\x89\xf7\x1d\x21\x70\x00\x2f\x1b\xa2\x11\x1c\x96\xc9\x8d\x95\xf1\xae\x38\xdd\x53\x94\x8e\xfe\xec\xf0\xb0\x3e\xe3\x32\x76\xa1\xd7\xf4\xe3\x27\xee\x1a\xb6\x69\x1b\x63\xb1\x5f\x6f\xae\x59\x0e\xa9\x9b\x6f\x9b\xb9\x5c\x49\xfd\x4c\xd9\x72\x62\x96\xfa\xa2\xd6\x63\x75\x2b\xdc\x5c\x61\x31\x5d\xcb\xb8\x4d\xca\x7c\x79\x61\xfc\xad\x1e\xdb\xc1\x05\xc8\xe5\xb9\xce\x63\xbf\x7f\xf1\xd9\xe9\x2f\x57\x84\xec\x8f\xa2\xc7\xd2\x1f\x5f\xec\xb3\x0f\x59\xba\x9c\xb2\xb5\x58\xc4\x21\x18\xa3\x9e\xd0\x4e\xc9\xc7\xca\x53\x72\x08\xc5\xb6\x44\x49\xe4\x50\x3b\x52\xe3\xa4\xc2\xb7\x65\x93\xec\xdf\xe2\xfa\x82\xa9\xd2\x9b\x1d\x4c\xf1\x4a\xfe\xcb\xe7\xa6\x85\x40\xe6\xf2\xfa\x59\x47\xf9\x46\x37\xc9\xad\xe7\xa3\x50\x72\x10\xcc\x4f\x73\xbb\xef\xc8\x5e\xf7\x41\x08\xee\x62\x23\xed\x78\x02\x90\xa0\xc8\x35\x42\x4f\x0b\x90\xe5\x29\x70\xf7\x30\x00\x9c\xf3\x14\xfe\x79\x4c\x0b\xa0\xa8\x43\xd6\x4e\xc8\x0e\xa0\xf8\x90\x5a\x8a\x8a\x25\x6c\x2b\xe4\x37\x10\xb4\xf0\x25\xb2\x9c\x6e\xb7\x35\x0d\xda\x89\xdf\x15\x67\xe4\x27\x93\xd5\xba\x54\x1e\x78\x28\x63\xc7\x25\x8e\x85\x69\x17\xc1\x3b\x1a\x37\x5c\xe7\xa8\xcd\x0f\x8e\x5f\x69\x58\xa4\x70\x30\x4f\x37\xd9\x89\xfc\x7a\x7d\x3d\xfd\x3f\x1c\xcc\x41\xa7\xf1\xb9\xf4\x12\xbf\x2b\x91\xce\x9f\xe7\x09\x85\xfb\x4b\x3f\xbb\xca\x2e\xb2\xe5\xc6\x15\x0f\xba\xa0\xd0\x7c\xd9\x1d\xe7\x10\x97\xd7\x4b\xf2\x69\x97\x72\x77\xb8\x9c\xc7\x08\x26\x5e\xce\x3e\xe8\xfa\x18\x73\xe3\xd4\x06\x8a\x1f\x4e\xda\x9c\xcb\x2c\xb6\x3b\x4a\x3a\x71\xbb\xeb\x6f\x9c\x5f\x28\x3e\xe1\xab\xeb\x7e\xdc\xfd\xe0\x2e\x80\x6d\xe2\x7c\xf4\x2b\xe7\x25\x59\xff\x17\x8f\xe7\xec\xdb\xa2\x09\x80\x2a\x64\x1f\xdb\x1a\x08\x60\xf7\x9c\xdd\x68\xbb\x1b\x80\x2f\xed\xce\xe6\xe5\xff\x2f\x56\xe6\x28\x66\x5b\x1b\x40\xe6\xa9\xcd\x2b\xba\x6f\x41\xf2\xf1\xde\xbd\x38\x80\x72\x2b\x01\xd3\xa3\x69\x00\x57\xf7\x88\xd5\xf2\x9e\x00\xb8\xfa\x4a\x31\x53\xe1\x12\x28\x55\x85\x6b\xcd\x99\xc4\x10\x8d\xca\x79\xcd\x94\xfd\xaf\xe1\x72\x4f\xf3\x7a\x58\x9d\x39\xbe\xd8\x1f\x61\x97\xb0\xbf\xda\x7c\xf6\xbd\xc7\xe4\x6d\xf9\x26\xc7\xaf\x68\x3b\xc9\xb1\xa0\x76\xc6\xae\x19\x97\xdc\x89\xde\xa6\x68\x8a\x1f\x4c\x2d\xc1\x43\x7a\x9a\xf7\xfa\x8b\xcb\x1c\x5e\xdf\x66\x1e\x57\xf9\x95\x59\x79\x1d\x9b\x1d\x2e\xcf\x2f\xe4\xf4\x7e\x39\xf7\xbb\x78\x28\xd7\xd7\x27\x62\xfe\x47\x11\xd7\x69\x9c\xd7\xf3\xc5\x17\x67\xa8\x32\x6e\x79\x87\xa2\xd3\xb3\x8a\x29\x3e\x30\x49\xe7\xbd\xbe\x60\xc4\x13\x27\xe2\x33\xbc\x9b\x31\x4d\xa7\xf6\xc6\x1e\xf7\x0a\xc3\xd6\x46\x73\x9f\x44\x79\xe9\xe2\xf6\x46\xe4\x45\x7a\x79\x7e\xc1\x35\x84\xf0\x02\xec\x22\x70\x65\xac\xfc\x3d\x41\xd6\xff\xa5\x4f\xb3\x71\x6f\xfe\x0a\x60\x64\x75\xac\x75\x2b\x2d\x80\x33\xc7\xce\x87\xcb\xff\x1e\x7a\x87\xf1\x01\xcd\x81\x3f\x72\x41\x2a\x98\xf2\xb7\x2b\x01\x5c\x6a\x60\xb6\xde\x79\x10\xa0\x26\x9e\xdd\x95\xbe\x13\xe0\xce\x26\xc1\xaf\x1c\xbb\x01\x1a\xa5\x65\x39\x64\x88\x60\x72\x57\x42\xcd\xcd\xe8\x09\x51\xe8\xf6\x25\x83\xda\x80\x48\xdc\xbe\xcb\xbc\x0e\xa7\x72\x49\x3f\x5e\x66\x5e\x0b\x47\xdf\x64\x7d\xdd\x7c\x52\xfd\x62\xf0\xfd\x88\xf6\x82\xc0\xc7\xef\xb2\xbb\x1e\x55\x67\x05\x97\x8e\x13\x1e\x98\x96\xfa\x85\x6a\xff\x38\xdb\xc4\x59\x30\x18\x2a\x3b\xa5\x70\xeb\x5d\x4e\x51\xe8\x9b\xe9\x33\xd7\x2b\x33\x6f\x86\xee\xff\x1d\x5b\xd9\x45\xc9\x03\x3a\xd5\x1e\x7a\x69\x3e\xf8\x82\x5d\xec\xc5\x50\xc6\x85\xfa\x73\x5a\x31\x2c\xc1\x3e\xe8\x0d\x39\x3e\x91\xb9\xc1\x3b\x96\x98\x32\x36\x44\x6c\x0a\xb2\x5b\x7a\x96\xe2\x41\xf1\x3f\x09\x99\x0e\xa8\xc1\xf2\xc4\x86\x07\x0f\xfb\x3f\xc0\x36\x45\xa1\x83\x8f\xf9\xd1\xe1\x7c\xc2\x84\x00\x98\x92\xb8\x0e\x6e\x88\xff\x43\xff\xcf\x63\xfe\xb2\x39\x12\xc0\x32\x80\xc9\x6e\x73\x04\x80\x67\xff\x06\x3a\xaa\x3f\xee\x3d\xff\xcb\x41\xd4\x0a\xac\xf2\x0f\xcd\xc9\xcc\x51\xbb\xce\x00\x74\x94\x73\x25\x33\x06\x02\x3c\x7d\x2c\xf2\x4e\x90\x1e\xea\xfb\x5c\xe4\x07\x50\x59\xc4\x98\xa7\x43\x5a\xee\x3e\x4c\xb3\x12\x0f\x7e\x9b\xfb\xe4\x34\xbf\x4e\xac\x39\xe7\x97\x79\xdd\xfb\x56\x5e\x61\xf3\x69\xb9\xf6\xc4\xc2\x89\xec\x2d\x1d\xa8\x9e\x9b\x19\x1d\xe9\x57\xbf\x3a\x75\x94\x25\x1b\xa4\x31\x4f\xa8\xb7\x9a\x27\x90\x92\x03\x7f\xd2\x34\x70\xc7\x7e\x48\xce\xfc\x35\x7e\xa3\x29\x26\x26\xbe\xe9\xb7\xcf\x15\x8e\x68\xa7\xf8\xcb\xb3\x0f\x2e\x36\x47\x3c\x8f\x53\x9f\xaf\x38\x5f\x17\xde\x16\xb3\x67\xe1\x75\xfe\xeb\xb5\xfc\x9b\xeb\x91\xe8\xa5\x3d\x19\xaa\xc1\x67\x22\x92\x97\x3e\xa4\xec\x09\xec\x8a\x38\x8f\x39\x9b\xb0\x37\x40\x2d\x6c\x1a\x1b\x72\xb2\xc1\x7f\x2a\xf4\x20\x76\x22\xb2\xc7\x3f\x25\x64\x23\x4e\x2a\xbc\x02\xe0\xd8\x2d\x36\x9b\x8d\x8f\x01\xc4\x99\x8e\x7e\xdf\x38\x00\xa0\x69\x4a\x1b\xb6\xa2\xfb\x16\xac\xae\x37\x94\xac\xf7\x66\x4c\xaf\xd6\x12\xb2\xcf\xf3\x8d\x98\xbf\xf5\xcf\x5e\x69\xb2\xfe\x71\x80\xc9\x9e\x76\x02\xe0\x63\x33\xff\xa3\xe3\x8d\x00\xdf\xe4\xa5\x32\x94\xdf\x60\xdf\x7c\x4f\x57\x39\xe3\x76\xf4\x43\xf2\x60\xa3\x91\x67\xaa\xf2\x03\x96\xde\x45\xb7\xd7\x15\x47\x2e\xc8\xb6\x75\x26\x3d\x6c\x1a\x4d\xb0\x6c\x9c\x68\x53\x7b\x58\x19\xfa\xee\xe6\xed\xf1\xf7\x0f\x4e\x86\x28\x55\x5d\x98\xd4\x6e\xd4\x0e\x9a\xb9\xd8\xfd\x4b\xbc\x8e\x3e\xb0\xa8\xd8\x77\xe6\x55\x55\x79\x40\x77\xc1\xc8\x6c\xdd\xc5\x6c\x7f\x4c\x9e\xc4\xbc\x40\x31\xab\x3f\x6b\xce\x8e\x85\xb6\xfc\x19\xdf\x2f\x59\x4f\x17\x7f\xe5\x94\xfb\x5a\x64\xa4\xa0\xeb\x33\x7f\xfb\x9a\xa4\xa0\x96\x4a\x53\x51\x3e\x5c\x49\x85\x98\xe0\x84\x6b\x5e\xe2\x49\x37\xb0\xa2\xb1\xdc\x5e\x61\xf1\x71\xd8\x81\x28\x51\xcf\x84\xb8\xd7\x38\xf5\x70\x15\xf7\xc5\xd8\x41\xdc\xaf\xa0\xab\x00\x6c\xe3\x47\x05\x36\x9c\x02\x90\x74\xd8\xbe\xe2\xb7\x67\x60\x41\x5d\xb0\x5c\x3d\x4e\xae\xae\xeb\xdf\x5c\x14\xca\xfd\xef\xb6\xcb\xab\xf5\x29\x61\xb5\x0e\xef\xa0\x5a\xf1\x4f\xf8\x15\xb1\x6d\x64\x45\x07\xbb\xc4\xf1\x60\x7f\x3b\xb2\x00\x1c\xe2\x82\x52\x4a\x13\x87\x09\x6e\x8a\x9d\xd6\x8a\x7d\x5e\xb3\x4f\xf5\x8a\xa2\x53\x6b\x5d\xbe\x2b\x3a\x1d\x2d\x40\xa7\x6f\x19\xe9\x8c\x41\xd7\xf6\x06\xc5\x0f\x67\x37\xee\x6a\x7c\xeb\x52\xde\x1f\xfe\x43\xf1\xee\x41\x97\xc6\x6e\xaa\xa9\xa7\xb5\x03\x6e\x9e\xad\x59\xd3\xdf\xae\x99\xbb\x9d\xbc\x85\x9f\x75\xbd\x58\xe9\xea\x53\xbb\x73\x9e\xe1\x42\x99\x6b\x74\xd5\xbe\x85\xda\x7c\x77\xd7\xab\x17\xd1\x8b\x8d\x39\x24\x57\x9e\x92\x3e\xf4\xdb\x8c\x36\x97\x5d\x17\x36\x2c\x7d\x4b\x16\x71\x6e\x2e\x10\xc1\xb4\xc6\x17\xba\xec\xc9\xad\xc3\x0a\xc4\xcc\x3b\x7b\x9d\x19\xc7\xb6\x44\xe5\x38\xeb\x64\x9b\xe1\x0c\xc2\x5a\x9c\x18\x33\xf9\xf0\x9b\x02\xdb\x1c\x6b\xd3\xa6\xf1\x81\x7e\xcb\x7f\x47\xb4\x30\xc5\x6e\xa4\x5e\xd1\xff\xbb\x97\x3f\xbf\x2d\xf9\x7e\x73\x04\xf6\xef\x7d\x40\xd1\xfd\xd6\x72\x51\xc8\x7e\x18\xc3\xfb\x56\xeb\xcc\xda\x3d\x70\xea\x4c\x2a\x2a\xb4\x29\x00\x7b\x22\xfd\xe4\xd8\x01\x70\x10\x4d\x10\x6d\x79\x95\x44\x8c\x51\x34\x30\x78\xd4\xba\x0d\x7f\x5f\x4f\xc6\xb7\xb8\x9c\x09\xb3\xdd\x81\x36\x4d\x3a\xa6\x74\x5e\x3d\xb2\xad\x9c\xc1\x8b\x6a\xd6\xa2\xc6\xe0\x0a\x93\x55\xc8\x0c\xf3\xf8\xdb\xea\xeb\x96\x8c\xe3\xb4\x33\x31\x95\x0e\x56\x6a\xef\x0a\x66\xa3\xca\xfc\xad\x51\xbd\x1b\xe7\x9d\x0a\x17\x6c\xf4\x1e\x1d\x59\x48\xce\xbb\x6f\x53\xde\xac\x8e\xde\x91\xad\x66\x73\xb9\x5e\x0c\x8d\x4d\xc3\xd9\xf4\xd5\x26\x2f\x8d\x26\xf9\xda\xf4\x5f\x1d\xc7\x74\xc7\xc5\xdb\x7a\x5c\xbe\x82\x15\x8c\x11\xb3\xc9\x29\xc7\xe1\xf6\x84\xd7\xd8\x14\x95\x32\xe2\x82\x43\x79\xad\xef\x16\xdb\xe3\x08\x81\x0e\xd6\x35\x85\x03\x78\x3f\xbf\x23\x56\x53\xe7\xc6\xf0\x5f\xbd\x72\x00\x44\xcb\x37\x09\x2d\x7f\x7e\x3d\x53\xaa\xbf\xf4\xff\x34\x83\xd5\x5a\x4a\xd6\x3b\x29\xf7\xbf\x7b\xc8\x3a\xe0\xc8\x9e\xd5\xfa\x77\x1e\x02\x45\xff\x19\x6d\x07\x60\xdb\x43\x9f\xf5\x4a\x03\xae\x88\x1c\x3a\xe1\xfe\x80\x8a\x24\xad\x28\xa4\x69\x5e\x6d\x4c\x50\xd0\x2b\x72\xe4\x3a\xeb\x83\x7b\x6f\xaf\x16\x36\x1b\xbe\x7f\x29\x2d\x74\x32\x13\xdc\x3a\xd0\x7a\x65\xad\x67\xcf\x5a\x0d\x2c\x7c\xeb\x51\x2c\x60\x34\xf2\x9a\xff\x3c\xd7\x5a\xb4\xc1\x60\x62\xce\x78\xc1\xec\x6c\x34\xc5\xf7\xc2\x58\x77\xe0\x09\xfa\x6e\x1a\x97\x71\xe3\x8b\x6d\x4b\x45\x89\x24\x53\xff\xce\xaa\x25\x52\x82\x8b\xe9\xc7\xfb\x07\x31\xc3\x31\xef\x4d\x7f\x35\x4b\x60\x4f\x46\x09\x9a\x2a\xd5\xdf\xc6\x99\x87\xb4\x99\xce\xd5\x5d\xc6\xd5\x06\x95\x9b\x6d\xbd\x1e\x86\x67\xf1\x4f\x31\x6b\xba\xd2\x8f\xf7\xf2\xcd\x35\xd5\xbc\xfc\x11\xd9\xeb\x61\x68\x1a\x7e\x91\x19\x71\x74\xed\x07\x50\x60\x58\x5d\x07\x85\x03\xf9\x3f\xfd\x40\xc8\xba\xd7\xfb\x4b\xff\x7e\xff\xcb\x75\xfa\xd1\x6a\x1d\x21\xfb\x21\xf4\x31\x00\xec\xc1\x50\x51\xb5\x33\x03\x46\xf0\x12\xe7\xef\xda\x4e\xd2\xb0\x42\xa1\xc2\xed\xe2\xbb\x44\x3b\x3d\x19\xd3\xce\x14\x09\xe4\xb4\x5d\xad\x67\x48\x40\x03\xae\x39\xb0\x23\xc2\xcb\xc5\x10\x5b\x9c\xb7\x2d\xee\x8e\xe5\x05\xcc\xef\x86\x9b\x09\xa1\x46\x36\x4b\xdf\xdf\x7d\x4e\xf1\xd6\x21\x2e\xbd\x46\x4f\x24\x4d\x51\xf8\x07\x9d\xa2\x9f\x99\x98\xa0\x18\x11\x5d\xd5\x4f\x78\xac\x48\xa4\xb3\xee\xec\xbb\x2e\xec\x8d\xb0\x49\xbd\xd6\x97\x57\x70\x9b\x42\x0f\xeb\xc7\xf4\xf0\xe2\x02\x83\x6a\xf4\x4a\x3a\x22\xf1\xca\x3e\xbf\xf4\x4b\xee\x6d\xc6\x9f\xf3\x1a\x33\x90\x6d\xba\x8b\xef\xf0\xbc\xad\x5f\x54\xaf\x8e\xd8\xb8\x8c\xeb\xf7\xdf\xbc\x8d\x14\x3a\xef\xd4\x67\xa8\x15\x46\x48\xf6\xfe\x7f\xf8\x81\x90\xe7\xdd\xe9\x2f\xab\x95\x72\xff\xfd\x01\x0f\xd5\xff\x87\x03\xa1\x7c\xff\x23\xfb\xc9\xfa\x17\x39\x27\xa6\x5d\x0d\x80\x95\x66\x77\xdf\xcd\x7a\x00\xa1\x6d\xc7\x2b\x2f\xca\x83\xb1\x7c\x8a\x44\x43\x4e\x03\x49\x43\xe7\x87\xb6\xee\xc9\x11\x42\xa7\x6d\xad\x6d\xa3\xf7\x51\xa4\xd2\xef\x93\xc7\x77\x47\x3a\x7c\x67\xe6\xdd\x00\x47\x8b\xb3\x78\x91\xaa\x8f\xc1\x43\x46\x02\xb8\x67\xed\x0f\x42\xa3\x74\xee\xe1\xca\x87\x7e\x84\x1e\xd0\x62\xc0\xe9\x63\xb3\x42\x83\x34\xd9\x71\xc3\x38\xe6\xc0\x32\x0d\x0d\x0c\x35\xae\xdb\xf7\x84\x46\xfd\xcf\x4d\x78\x05\xaf\x70\xcd\xd9\xcf\x85\x78\x63\xaf\x14\xad\xfd\x83\xb1\xf8\x17\xee\x12\x5a\x27\x5e\xc7\x21\xbc\x2e\x39\x5a\x93\xbd\x4f\x10\x7b\x67\x15\x6d\x91\xae\xaf\x48\x89\x63\xb0\x36\xcd\x23\x16\x04\x6f\x67\xa4\xd5\x79\x9f\x9e\xa0\x6f\x6d\xab\x35\xd9\x5c\x4b\xc8\xb0\xd4\x04\x70\xde\x4b\xf5\x17\x17\x57\xfe\x98\xea\x2f\xfd\x9b\x72\xff\xfb\x47\xd7\x9f\xeb\xff\x4d\xd6\x3d\xfe\x2f\x1f\x80\x6b\x09\x00\xd4\xd7\xa8\xa8\x2a\xda\x01\x04\xba\x99\xaf\xe7\x1f\x82\x2a\xb9\x9b\x42\x92\xc9\xb1\xa4\x69\xd4\x31\x45\xfd\x50\x17\xe2\x63\x6b\x1b\x23\x1a\xb7\x49\x42\xaf\x0f\xaf\x6d\x84\x1d\x3b\xc1\x31\xf1\x9c\x23\xce\xcc\x80\xb0\xab\xd8\xc6\x25\xd9\xe0\x09\xf2\xa1\x0e\xef\xea\xaf\x73\x03\x49\xe9\xa0\x77\xb7\xd0\xfc\x8a\x70\x7f\xd8\xe0\x81\xa8\xe1\x11\x46\x0c\xb5\xc7\x6e\x55\x3f\xa4\x0d\x39\xea\x54\xa4\x12\x47\x60\x47\xb2\xed\xbe\x2b\x93\x16\x1d\x90\x69\xeb\x4f\x2a\x13\x3f\x0a\x91\x29\x9b\x08\x95\xdd\xa3\xbf\x08\x91\xe6\xc9\x2a\xe7\x86\x77\x10\xce\x9a\xcd\xaa\x9e\x7d\x53\x4c\x28\x34\x67\x55\xdb\xf0\xa2\x80\x50\x65\xf6\x44\x65\xe1\xe9\x11\x22\xa7\xe1\x05\xb5\xc8\xae\xa3\x04\x8c\xf1\x22\x40\xb8\xcc\xdf\xfb\xe0\x96\xdd\x6a\xed\xbb\xb0\x5a\xc7\xbd\xa9\xfe\x97\x0f\x02\x59\xff\xec\xf3\x58\xad\xf7\xee\x90\xf5\x4f\x72\x1e\x08\x25\x07\xa0\x80\x0b\x40\x20\xe6\xc8\xad\x0c\x19\x18\x95\xad\xe2\xed\x38\x99\x0e\xda\xda\x76\x52\xd7\xfd\xb6\x93\x32\x2d\x32\xd5\xbb\x9c\x1a\x89\x63\x6e\x8e\x06\x4c\x56\x25\xc4\xf3\x27\x83\x4d\x3c\x8c\x97\x88\xfa\x67\x1b\xcc\xcf\xea\x5b\x13\xe9\x2e\x1b\x5a\xb6\xa3\xbe\x13\xe6\x6e\xa3\xac\x8c\x35\xda\x09\x95\x3d\xcf\x6d\x44\xd7\xb8\x87\x07\x84\xec\xc5\x9f\xd6\xac\x14\xee\x61\x2d\xef\x62\x2b\xc1\x8e\xa8\xa5\x27\xa6\x40\x3b\x2f\x40\x34\xd6\xfd\x2a\x7f\x64\x6a\x88\x58\xa5\x6d\xa0\xb0\xef\x6b\x23\x31\x13\xf5\x5c\x21\x7a\x24\x8c\x78\x01\xe5\xa0\x10\xf8\xae\x83\xd8\xaa\xbd\x47\x21\xa9\xff\x10\xf1\x85\x96\xea\xfa\x7b\x01\xe5\x3c\xec\xb2\x5e\xad\x9f\xc9\x73\x80\x84\x5e\xae\x0b\x7a\xff\x9b\x83\x7a\xc0\xf9\xb7\xfe\x59\x56\xbf\x5a\xb3\x29\x79\x08\x7e\x00\xfc\xc8\x61\xba\x53\x9b\x00\xa4\x4f\x1d\xcf\x0e\xe1\x80\x72\xcd\x12\x61\x1f\xf7\x8f\x40\x63\x26\x25\xef\x6e\xc7\x47\x2a\x72\x9a\x54\xab\xb2\x78\x4b\x92\x08\x53\xd2\xa1\x37\xbc\x4b\x12\x48\xfb\xa0\x93\xa1\xb7\x8f\x44\x53\xe0\xa1\x67\xac\x0d\xc4\xbe\x2b\xd4\x06\x6d\x1a\xaf\x88\x15\x0d\xe5\x46\x3b\x55\x0f\x13\x2f\x74\x6b\x1b\x06\x29\x5d\x26\x26\x8d\x70\x1a\x96\x2a\x10\x88\x29\x73\xaa\x06\x0b\xff\xe6\x5c\xc8\x72\x90\x4e\x93\xd8\x54\x3d\xa4\x73\x08\x8d\xa4\x04\x85\x0a\xe9\x5b\x0b\x04\x92\xaf\x62\xb2\x74\xcc\xaf\x4c\x52\x84\xc2\x27\x69\xeb\x6f\x22\xa4\x34\x85\x4d\x52\x37\x3e\xf7\x90\x6e\xcb\x36\xad\xef\x83\x07\xe4\xf7\xc5\x61\x97\xd5\x8a\x75\xa0\xfa\x5f\x1c\x10\x79\x1f\xb4\x93\xfd\x00\x6e\x05\x90\xf5\x4f\x0e\xb2\xfe\x4b\x5e\x7f\x42\xc3\x6a\x3d\x15\x05\xc0\xf9\x7a\xcf\x58\x44\x01\x80\x54\x27\x6b\xbf\xaf\x1c\x7c\x53\xab\xe1\x15\x70\x16\x80\x08\x43\x44\x4c\xd3\x7a\x0f\x09\xeb\x50\xa5\x20\x6d\x22\x4c\xc2\x05\x28\x29\xa0\xf5\x55\x48\xaf\x4f\xd1\x28\x7f\xd0\x71\x22\x35\x66\xa2\x55\xe3\xb4\xfa\x48\x69\x45\x69\xea\x33\xea\x26\xa4\xc0\xab\x47\x34\x6a\x55\xe9\x49\xa2\x4d\x62\xda\x8e\x14\xee\x41\x9e\x97\x64\x35\x58\xa7\x4e\x90\x2b\x24\x49\x4c\xbe\xd5\xcc\x97\x8d\x26\x45\x10\x8b\xd4\x52\xd7\xb8\x8f\x5a\x38\x42\x6a\x93\x6d\x16\x27\xc1\x79\x50\x11\xdb\x2f\x56\x07\x42\x10\x29\xd4\x24\x92\x83\xcd\x80\x5a\xfe\x6c\xb1\x8c\xd9\x22\x30\x11\xd9\x00\x50\x0f\x7f\xcf\x81\xf9\x1b\xcb\x15\x4f\xd6\x33\xc7\xc9\x3e\x06\xaf\x27\xff\xd6\x3f\xef\x90\x75\xe0\x4a\xf2\xbf\xe7\xf7\xfe\xad\x7f\xaf\xf9\x40\x78\x03\xb0\xeb\xee\x0c\x0c\xa0\x06\x90\x0c\x67\x6a\x76\xa5\x03\x50\x6e\x62\x57\xb7\x65\x85\xa7\x7a\xfa\xfc\x92\xa6\x49\x10\x6f\x1d\x29\x2a\x6b\x30\x0a\x9e\x5e\xa6\x12\xda\x14\xdf\x07\xed\x4b\xc0\x95\xf8\x4b\xf6\xa9\xfa\x26\x50\x3d\x7d\x42\x3a\x4d\x75\x14\x36\x14\x5b\xcb\x63\x94\x1b\x49\xc3\xd5\x6c\x4a\x6c\xff\x72\x0f\xff\xe6\x5c\x48\x7d\x26\x61\x17\x9c\xe4\x85\xff\xf5\x79\x10\x93\x86\x8f\x90\x2d\x18\x24\xc2\x0c\x00\x43\xbc\x3a\xc2\x4a\x00\x80\xe6\xd6\x04\xe8\x9d\xfe\x73\x0e\x52\xf4\xef\x09\x32\xef\xb5\xc6\x01\x91\xcf\x45\x4a\x1e\xca\xbf\x3e\x08\x19\xe4\xbe\xac\xf9\x40\x90\xf7\x8f\xa3\x03\xc0\x96\xef\x54\x54\x6e\xca\x00\x27\x0a\xe8\xbd\x1c\x59\x00\x14\x46\x98\x27\x2c\x25\x00\x8b\xda\xcc\x59\x66\x98\x0a\xbd\x66\x65\x7c\x4d\x7a\x3b\xe1\x96\xeb\x51\xc1\x62\xed\x12\xa8\x0a\x30\x13\xe6\xd2\xa2\x82\x84\x68\x03\xb1\x32\xd5\x57\x90\x9d\x8c\x88\x56\xa9\xd8\x80\xd7\x59\x2a\x89\x60\xa5\x74\xd0\x2d\x39\x23\x15\x44\xe1\x1e\x64\xbf\x80\x42\xc3\x16\xa9\x5a\xe9\x01\x50\x7c\xe8\x2f\x25\x27\x89\x06\x8d\x17\xef\x24\x13\x25\x6f\x82\xe8\x88\xa8\xd4\x6b\xc9\xcd\xa0\x3c\x69\x22\xa5\x24\x8e\x86\x38\x8c\x96\x38\xad\xd8\x37\xe8\x84\x20\x61\x6e\x0a\xff\x21\x6c\x06\x00\x0b\xdc\x11\x00\x5f\xeb\xfe\x9c\x83\x3f\xc9\xdf\xeb\x1a\x07\x44\x20\x73\x30\xf6\xe4\x73\xe0\x5f\x1f\x04\xf2\xbe\x39\x45\x9e\x17\xc1\xef\x57\xab\x6b\x07\xb9\x56\x03\x30\x89\xd0\x48\xdb\x77\x01\xf0\xab\xec\xf6\x34\x07\x00\xe9\xc7\x07\x4f\x1a\x9d\x01\xd0\x38\xcd\xaa\xa2\x53\x0c\x60\x58\x77\x5c\x00\x55\x06\x93\x76\xd4\x3c\x07\xb4\x0f\xc2\x63\xef\xf9\x13\xb2\xea\xb1\xf0\x24\x54\xf5\x04\xa7\x6a\x2b\xdc\x8d\x55\x17\x9c\x57\x8a\x81\x8e\xe4\x7b\x27\xaa\xe4\x9f\xc1\xc3\x9c\x0f\x27\xfa\xd6\xb8\x07\xb2\xdf\x83\x74\x16\x64\xdc\xfc\x25\xb2\x24\x19\x09\xb9\xad\x96\xc2\x24\x71\x12\xe4\x3f\x51\x10\xee\x14\x7b\x08\x25\x6f\x8c\x85\xf9\xc4\x62\xa0\xe8\xcb\x21\xe1\x5f\xa2\x9f\xe0\xce\x2f\x47\xa1\x02\xd1\x7a\x78\x8b\x2d\x14\x94\x14\x95\x00\x80\x06\xfe\x29\xca\x1c\xa4\x9c\x83\xef\xc9\xbe\x37\x14\x0e\xa8\x65\xcb\x6a\xad\x26\x73\x52\x94\x3c\x94\x35\x0e\x86\xfc\x3c\x44\x90\x7d\xc5\x28\x3e\x10\x76\xc7\x01\xa8\xac\xa8\xa8\x1c\x36\x00\x30\xd5\xd0\x70\x5a\x6e\x04\xe0\x79\xb5\xb3\xc4\x98\x0f\x40\xd4\x6d\x6f\x39\x85\x7f\x40\x35\x01\xe8\xb4\x1d\x3b\xa2\x99\x08\x60\x59\xca\xde\xaf\xce\x01\xe0\xd4\xc0\x61\xa7\x12\x0e\xe0\xf3\x88\xb3\x4e\x85\x13\x16\x42\x18\x78\x9c\x15\xef\xc1\x74\x8c\x29\x2f\x8f\x3c\x0d\x2c\x24\x6f\xe2\x29\x90\xb9\x04\x3f\xcf\x7c\xe5\xcd\x90\x2a\x86\x5f\x45\xc9\xbc\xac\x52\x83\xd0\x5d\x31\x25\xf0\x50\x22\x07\xfa\x6b\x84\xf9\x7d\xc5\x8b\xe1\xc9\xdd\x5d\x02\xd9\xa2\x37\xe0\xed\xc3\x5d\xfc\xc2\xa2\xdb\xe1\xd5\xd3\x69\xfe\x0a\x11\x19\x78\xf7\x8e\x9e\xdf\x5b\x98\x03\xe6\xbe\xb2\xf0\x3e\x16\xee\x87\xd9\xe9\x2a\xbe\x09\xca\x39\xf0\x7f\x71\x40\x37\xc8\x7c\x03\x25\x0f\x25\x8f\x9c\x97\x95\x8a\x59\xad\x51\x64\x1e\xca\x9f\xfc\xfc\x38\x65\xfc\xcd\x81\x68\xe9\xac\x56\xa5\xcf\x00\xdb\xe7\xa9\xa8\x50\xa3\x00\x27\x7a\x77\x29\x69\x69\x03\xc8\x79\xef\xdf\xa5\x11\x00\xa0\xa1\x74\xc4\x4a\x2d\x0e\xc0\x58\x9e\xd9\x5d\xf9\x17\x80\xcd\x47\x96\x5e\xe5\x53\x00\xae\x29\x6c\xad\xca\x8c\x00\x7e\x7a\x1c\xdd\x0a\xd2\x00\x61\xb6\x1c\x45\x72\x36\x00\x31\x2d\x9c\xbb\x65\xee\x02\x24\x93\x38\x27\x24\xeb\x01\xb2\xb8\x39\x36\x4b\x34\x01\x14\x65\x70\xb9\x8b\x65\x03\x94\xf6\x73\xf4\x88\xe6\x02\x5c\x8d\xe1\xec\x14\x09\x00\xb8\xf5\x8a\xeb\x90\xf0\x77\x80\x16\x4d\xae\x2f\xc2\x23\x30\xdb\xf1\x90\xe7\xb4\xf0\x0e\xc0\xf4\xc6\xf0\x50\x0b\xc5\x01\x61\x20\x84\x9b\x34\xba\x0b\xfe\xbf\x1c\xd0\x25\xf2\x79\x70\x8e\xcc\xfd\xa4\x93\xb9\x28\x0a\x07\x13\x44\xee\x97\x7b\xc5\xdf\x1c\x88\x7e\xe3\x6a\x55\x21\x9f\x2b\x12\xcb\x7d\x0c\xa5\xa2\x52\xff\x09\xc0\x53\xbb\xbd\x41\x29\x1b\x40\xbc\x99\x0e\x2b\xcf\x00\x20\x1f\x48\x2f\x23\x97\x0d\xa0\x7d\x64\xbf\xb8\x5c\x15\x80\xf1\xdc\x21\x39\xe9\x5b\x00\xd6\xe7\x0e\x89\xc9\x15\x03\xb8\xee\x3d\xda\x26\xfb\x15\xc0\x97\x9a\xe5\xb6\xf4\x55\x80\xd0\x36\x56\x59\xa9\xc3\x00\x27\x37\xb1\x26\x49\x38\x02\x24\x8a\xb3\x36\x4a\x6c\x01\x48\x0f\x60\x3b\x28\x56\x06\x90\x0f\xec\x69\x62\xca\x00\x17\x6a\x8f\x67\x8b\xb4\x03\x54\xd0\x1c\x57\x16\xde\x00\x70\xdd\x85\xbd\x50\x38\x12\xa0\x31\x85\x33\x46\xb0\x0b\xa0\xd5\xea\x78\xe1\x09\x15\x80\x4e\x03\xf6\xe8\xe5\x4f\xa9\xb6\x77\x55\xcf\xfa\xdf\x1c\xc4\xf1\x37\xb2\xf2\x5b\x8e\xad\x73\x10\xb2\x71\x0a\x89\x7b\x7b\x00\xd4\xd9\x55\x63\x0e\x1f\x05\xd0\x1b\xd4\xe4\x60\x09\x01\x30\x0a\xd5\x9b\xe7\x2a\x01\x30\xfb\x68\x76\x5d\x64\x11\xc0\xe2\x84\xc3\x7e\x59\x14\x7c\x37\x77\xf4\x25\xa8\x15\x41\xa5\x29\x6f\xf4\x67\x9d\x32\x30\x31\xac\xce\xce\x32\x8e\x22\xb5\xe9\xd7\x97\xcf\xd8\x06\x92\x62\x51\xa5\x77\x7c\x1d\x92\x88\xb3\x5a\x51\x5d\xcc\xee\xca\xc4\x45\xf5\x8d\xef\x96\xdc\x42\x89\xbf\x55\x42\x7f\x8e\xb8\x29\x13\x1f\x2b\xdf\xc1\x0b\x7b\x88\x92\x5c\x95\xf6\x21\x6c\x0e\x37\x49\x03\x0a\xaf\x91\x5e\xeb\xad\x98\x73\x0a\xc5\x84\x1d\x96\x1b\xa6\xf0\x8a\x0e\x84\x03\x96\xf2\x63\x97\x14\x5f\x11\x94\x2c\xb8\x3e\x16\x2a\xf1\x12\xdc\xcc\xb9\x06\x0a\x94\xbe\x11\x32\xcc\xd4\x5e\xd1\x29\x29\x12\xf0\x86\x0b\x4f\x07\x94\x07\x08\x23\xc6\xed\x4f\x98\x94\x8d\x88\x3c\x06\xd9\x8f\x52\x94\x5b\x89\xda\xfa\xa1\xf7\xf8\x95\xc7\x88\xf1\xba\x2a\x7f\xf5\x61\xe5\xf7\x37\xea\x64\x69\xd3\xe5\x7a\x78\x46\x66\x64\x83\xe8\xba\xfe\x2f\x16\x21\xab\xb4\x4b\x18\x40\x8e\x4e\xce\x64\x6f\x12\x80\x46\x84\x12\xc3\x41\x36\x00\x03\x6e\x8d\x00\x16\x67\x00\xd3\x1e\xfd\x61\x5e\x9b\xf5\x3e\x58\xce\xda\xbd\x93\xfb\x01\x4b\xe6\xd7\xbd\x7e\xa8\x5c\x87\x62\xd3\x85\xa8\x0f\xba\x06\x70\xd0\xf8\x41\xd6\x07\xf3\x7c\x52\x8d\x41\x6d\xd9\x36\x3b\x6f\xd2\x41\xdd\x96\xdb\xe9\xae\x44\xe2\xb8\x96\x60\xb7\xaa\x7b\x27\x31\x56\xbd\x6f\xf8\xb7\xf7\x3d\xa2\x93\x6a\xfe\x74\xaf\x4f\x00\x85\x7f\x21\x71\x2a\x35\xe3\xbb\x9d\x2f\x13\x26\x15\xad\x90\x33\xb6\x2c\x73\x9f\x15\xa7\x91\xcb\xb6\xf4\x13\x67\x94\x6e\x23\xed\x36\xad\x5f\x94\x94\x7c\x08\xec\x96\xbe\xc3\xee\xca\x27\x08\x62\x96\x8a\xaf\xa3\x54\x4e\x12\x54\x2c\x5d\x9e\x0d\xa9\x14\x13\xd2\xcd\xa9\xbb\x63\x54\xbe\x12\xee\x98\x5e\x7a\x7c\x58\x85\x86\x28\x64\x90\xf6\xf0\x88\x0a\x8a\x28\x6d\xa0\xd6\xaa\xaf\xaa\x4c\xd4\xd5\x7f\xfd\x67\x1f\xfe\xd6\xff\x29\x3e\x08\x3c\x0a\x52\xbb\xb7\xe6\xfe\xc1\x41\x9c\x95\x75\xa5\xd7\x07\x40\xb1\x29\x04\x1e\xe4\x06\x30\x62\x55\xdf\xc7\xb2\x01\xc0\x3c\x57\xa7\x83\x8b\x00\x60\xd9\x6e\x62\x25\xbc\x04\x60\x7d\xdd\xe6\xb6\x7c\x17\x74\x58\x61\x3c\xfb\x35\x8d\x20\xd0\xe2\x40\x64\xb3\x41\x06\x6c\x31\x19\xc8\xd4\xb6\x68\x21\x65\x18\xea\x94\x79\x39\x98\x93\xb6\xea\xe2\x6f\x17\xb9\xf5\x12\x53\xb4\x2b\x9f\xa4\xf9\xf0\x10\xcd\x34\xc4\x46\x04\x7c\x63\x88\xc6\xaa\x96\x73\x1e\x3e\x38\xe2\x29\x15\x4d\xdc\x1b\x2f\x22\x89\x4e\x09\x8d\xaf\x74\x69\xc3\x8e\x2a\xe5\x20\xbb\x1d\x4b\xa7\x0f\x28\x73\x20\x5a\x0e\xa1\xe3\x1b\x54\x76\x20\x76\x0e\x8e\x23\x9e\x2a\x0f\x90\x42\x3b\xe8\xbf\xa3\xb6\x13\x29\xb2\xcf\x7b\x69\xa2\xfa\x05\x99\xb5\xb9\xfb\xf4\x8e\xda\x26\x82\x82\xd5\xd1\x0e\x82\x5a\x3f\xc1\xd6\xd2\xb6\x7d\x42\xf5\x26\xe1\x87\xf1\x64\x9b\x8e\xda\x77\xc2\x67\x93\xea\xc6\x47\xea\x57\x88\x9b\x8d\xfd\xfe\xdc\x0f\xab\xfe\x28\x6b\x7d\xb8\x29\xc2\xf4\x27\x07\x41\xe9\x83\x6a\xa3\x14\xec\xad\x5f\xe7\x41\x8c\xfd\xd5\xde\xb1\x98\x00\x58\xef\xd6\xd6\xe5\x3a\x0a\x60\x23\x62\xbc\x20\xba\x05\xc0\x86\xc1\xfa\x9d\x7c\x23\x34\xdb\x44\xb8\xc7\x69\x4e\x81\x95\xe5\xa1\x48\x47\x23\x05\x52\xab\x39\x75\xe6\x26\xdb\x38\x92\x98\xb1\x42\x69\x9f\xcb\x22\xf1\xa6\xfe\xde\x3b\xcf\xbc\x69\x89\x11\xda\x0e\x3d\x39\x3e\x2d\x84\x9f\x1a\x35\x9f\x39\x02\x5f\x10\x16\x54\x5f\xa0\x99\x03\x7a\x28\x7d\x20\xfe\x56\x56\xc5\x87\xba\x09\xa2\xa3\x95\xa3\xf0\x77\x5d\x6e\x4d\x0c\xab\xd4\xe1\x47\x5c\x02\x47\x97\x54\x15\x91\x6d\xce\x11\xef\x93\xd5\xe8\x10\x55\x27\xd6\xd7\x29\x6a\xf1\x48\xbe\xfd\xd7\x67\x5c\x6a\x4d\xc8\x6f\x5b\xba\x8e\xcf\x1a\x1c\x08\xde\x56\xf8\x61\x80\xfa\x0b\x82\x81\xd5\xf1\x7b\x37\x35\x68\x08\xf1\x16\xa9\xcd\x12\x1a\x7c\x84\x76\x33\xd5\x06\x4e\x8d\x1c\xc2\x84\xc9\x3b\xf8\x0f\x17\x44\x9d\x27\x96\xf7\x3f\x39\x08\x94\xb8\xe7\xae\x9d\x00\x6a\xa9\x92\x57\xf6\x1e\x04\x30\x52\x95\x53\x39\xf8\x12\xc0\xf2\x91\xb2\x1c\xf3\x39\x00\xbb\xbb\x9a\xbb\x38\xc3\xd6\x73\xa4\xec\xc5\xac\xf9\x14\x85\xa1\xd4\xae\xd7\xd5\x06\xb5\x09\xd8\xac\x3b\xc3\xb3\xcd\xa8\x48\x69\x96\x3b\xd2\x48\x0e\x81\x24\x6a\x93\xf0\x52\x0e\xf7\xcb\x6b\x9c\x18\x03\x2a\xe4\xa9\x60\x00\x96\xd0\xae\x31\x30\x5a\x1d\x1c\x48\x08\x52\xcb\xc4\x04\x87\x9e\xa5\x70\x51\xc8\x27\x15\x29\xdc\xbc\x97\xe0\x4c\x85\x2a\x2f\x9e\xcf\xd3\x65\x9c\x56\x4d\x17\x6f\xec\x41\xfc\xe0\xa8\x36\x8c\xaf\x72\xa7\x79\xbb\x4b\xbd\x06\x3f\xef\x2a\xf5\x6c\x5a\x63\x1a\x39\xec\x92\xd6\x4d\xa7\x31\x85\xc4\x3a\x46\x3d\xbe\xab\x71\x1b\xf9\x66\x77\xf8\xc1\x3e\x4d\x43\xc2\x76\x5b\x5a\x0a\x0f\x55\x3f\xac\xf9\x9a\x50\x6e\xfe\xbb\xce\x4a\x4b\x82\x30\x66\x1a\xb2\x3e\x17\xa8\xe2\xa5\x0b\xff\xd4\xff\x29\x1c\x84\x20\x9d\x68\xf9\x76\x3d\x00\xd9\x62\xd1\xb1\x9d\x00\xa0\x7d\x51\xe2\xf2\xde\x76\x00\xe3\x64\x69\x9a\xfd\x8f\x96\xbf\x77\xc5\x4d\x47\x7d\x01\x1c\x16\x35\xdc\x38\xfb\x00\x9c\x6d\x0d\xde\x8b\x26\x00\x38\x21\x96\x55\x8a\xc3\x10\xee\x18\xe0\x6c\xa7\xfb\x0c\x36\xd9\x5e\x0f\x3d\x65\x8e\xa6\xf4\x81\x88\x33\x69\x2c\xf9\xe9\xb1\x6f\x8d\x13\xbb\xa5\xc3\xf6\x8c\x25\x64\x86\x20\xaa\x59\x3e\xa6\x10\x11\x47\x60\x57\xdf\x8a\x79\x1f\x61\x44\x58\x54\x0d\xc1\xd1\x04\x5c\x41\x37\xa8\x96\xe0\xbc\xfd\x7c\xa6\xb0\x6a\x49\xb8\x22\xdf\xaf\x5f\x76\xaa\x0b\xe2\x8f\x7a\x0d\xbe\xdf\xa8\x11\x89\x57\xf3\x72\x79\x7d\x48\x03\x83\xbf\xea\x3e\xfa\x94\x5d\x6b\x23\x7e\xda\x4d\xf9\x31\x56\xeb\x34\xa2\xec\x3c\x76\xff\xb2\xd6\x35\xe4\xba\x43\x65\x4b\x87\x56\x3e\x42\xb2\x1d\xac\xef\xd3\x3e\x4f\xe0\xb6\xb9\x56\x37\x85\xa2\x23\xb8\x5b\xe5\xd4\x86\x6a\x47\x13\xaa\x2c\x56\xd2\x64\x65\xdb\xa8\xfe\xe0\xa3\x28\xfa\x3f\xc5\x07\x41\xe8\x96\xb0\xdc\xf6\x5c\x00\x65\x94\xd8\x56\x3a\x8d\x75\x0e\xc2\x0c\x27\x61\xcd\x70\x1f\xc0\xbe\x4c\xe1\x34\xb3\x26\x80\xcb\x1d\x0d\x16\x6e\x25\x00\x37\x69\xdd\xcf\xc2\x7a\x00\x6e\x54\xe6\xcd\x8a\xa2\x6b\x3e\x52\x58\x7b\xb7\x20\x3f\x8b\x64\x92\xba\xb5\x60\xaa\xbf\x0b\x2d\xf1\x94\x39\x7f\xf1\x4b\xdf\xa7\x6b\x9c\x58\xa0\x4e\x4e\x1f\x77\xb8\x0e\x61\xbb\x66\xe6\xb7\xc1\xc8\xaf\x6b\x5c\x14\x99\x0f\x9b\x7b\xab\xf6\x1b\x3b\x18\x54\xff\xfd\x99\xfa\x2b\x9c\x66\x40\xfa\x08\xa2\x19\x8e\x73\x0b\xc8\xec\xb7\xd0\xd2\xc3\x0d\xf9\x22\x14\x7f\xa4\xae\x97\xda\x29\xf8\x2b\x1e\xc3\xed\x7c\x28\x36\x64\x9b\xdb\xe1\x56\x2e\x54\x1f\xa2\xea\x12\xd7\x44\x8d\xda\x86\x74\x3b\x30\xdc\xb2\xd2\x39\x4e\xa0\xb6\x0b\xa8\xcd\xd0\x39\x4a\x90\xb5\xb1\xbb\x76\x5a\x27\x91\x90\x64\xf9\xfe\xbf\xf3\xf1\x5f\x1f\x04\x11\x35\xe1\x5e\x5a\x49\x00\x95\xa3\x22\xc7\x77\x05\x00\xe8\x77\x8b\x4a\xed\x79\x01\x60\xe5\x23\x96\xc0\xa0\x02\xe0\x5c\x27\x4f\xcb\xac\x07\xe0\xce\xad\x2e\xc7\xed\x0a\xe0\xd5\xaf\x2b\x24\xca\x00\xe0\x21\x62\x56\xa0\x78\x18\xdc\x5d\xea\x1d\x4d\xf4\x39\x48\xb5\x8e\x98\xc0\x67\xb6\x92\xa4\xbd\xb6\x8c\xc9\x09\x6e\x6d\x44\x7b\xf3\xfb\xc5\x1d\xfe\x7a\x6b\x9c\xd8\x07\xdd\x4b\xcf\xdb\x4e\x9e\x43\x02\xb4\x78\x27\x77\xc6\xfe\xa0\xf4\x01\x5b\xa8\xbe\x0d\xcb\x13\x56\xf0\xcb\x46\x43\x09\x1b\x1e\x5a\xf6\x85\x59\xf3\x0b\xb6\x3c\x34\xfc\xdd\xb4\x36\x2b\x6e\x67\xb0\xdb\x8b\xe7\xa8\x03\xb8\xc8\xc0\x03\x3d\x73\xa8\x0a\xdc\x47\xbf\xdb\x8f\x75\x74\x74\xf1\xda\xde\xf8\xfb\x2f\x75\x38\xf0\xcf\x3d\x44\xee\xbe\xd2\xf5\x43\xb6\xba\x3d\xbd\xdd\xa0\xb7\x0d\x31\x76\xb9\x7c\x23\x5e\x4f\x0d\x69\x73\x34\xbc\x7a\x43\xef\x32\x61\x87\x5d\xc9\x95\x09\x3d\x31\x82\x9e\x8d\x20\xfc\x87\x8f\x5a\xd3\xff\xff\xf1\x41\x50\x3f\x29\x94\xb2\x4b\x16\xc0\x38\x54\xf8\xfe\x9e\x1b\xeb\x3c\x88\xab\x8d\x94\x2e\xa3\x1f\x80\xf7\x90\x22\x1c\x8f\x02\xf0\x99\x40\x6d\x16\x36\x00\xf0\x15\x33\x55\x54\x6a\x5a\xf3\x4f\x3a\xe5\x82\xf8\x2e\xd8\x47\x13\xe7\xec\xb9\x12\xf4\x3d\xac\x88\x07\x2d\x3f\x17\xe1\x83\x7c\xd7\x38\x31\x67\x3d\xbb\x97\xc7\xe2\xf3\xf1\x43\x5a\x29\xd3\x3b\x13\xdd\x29\x7c\xd8\x7c\xa7\xc6\x0b\x8c\x7d\xf4\xd8\x44\x9a\x16\x3d\xe6\x51\x54\xf8\x30\xa2\x5d\x86\xd5\x89\xd8\xff\xa6\x46\x87\x1d\x1b\x1e\x5e\xf3\x4c\x58\xe7\x19\x8e\x2e\x44\x87\x92\x97\x76\x5f\x47\xaf\x02\xf7\xd5\x3f\xb8\x69\x4a\x6f\x08\xef\xe9\xdd\xdf\x60\xab\x57\x89\xff\xe0\xe1\x71\x63\x9f\x01\x1d\x22\xe3\x3a\x70\x3d\x59\x5f\x06\xa9\x70\xb2\xbd\xf2\xcb\x40\x0e\xe9\x72\xf4\xb8\xc4\xa8\xdf\x43\xd0\xb7\x89\x5a\x39\x27\x18\x56\xfb\xb0\xaa\xff\xef\x0c\x17\x58\xf9\xfd\xfa\x5f\x1f\x04\x6d\xd1\x13\x93\xbb\x76\xaf\x73\x10\x94\x7c\x10\x2f\x4b\x89\x24\x46\x2d\x00\x3f\x2f\x79\x7a\x36\x45\x80\xe0\x4b\x9a\xb2\xc2\x1c\x00\x81\x35\x86\xae\xf2\x37\xc1\xc6\xf7\xae\x6d\xa3\x21\x0d\xc9\xca\x3d\xd1\x6b\xca\x31\x9c\x98\xe5\xf8\x29\xbe\xd6\x57\x98\x70\xd6\x86\xae\xc8\x22\x7c\x02\xa9\x37\x3d\x54\xff\x39\x8e\x07\x3f\xa6\xbf\xf9\x55\x6f\x52\x1a\x6e\x41\x5b\x6f\x36\x3a\xfd\x29\xee\x9a\xa6\xe6\xd2\xd1\x04\xcf\xa9\x3b\xda\x9b\x96\x12\x4f\x39\x7c\x7a\xa5\xc3\xb9\xd4\x1d\x3f\x39\x60\xa8\xcb\x89\x49\x8c\xf1\x7a\x76\x42\x6f\x0a\x33\x17\x5d\xdc\x11\xa4\x7f\x0b\x7b\x31\xfc\xd5\x9a\x3f\x92\x95\xa1\x1c\xae\x2a\xb0\xf1\xce\xbc\xc1\x10\x5e\xd2\xb7\x8e\xc2\x43\x5d\x7b\x64\x14\x8b\x7f\xee\x79\x9f\xc2\x43\x5d\x7a\x64\x14\x8a\x64\x3a\x3f\x2c\xfd\x6c\x54\x8b\x7c\x70\xdc\x0b\x7f\xf0\x51\xab\xfa\xff\xbe\xcd\x02\x2b\x3a\x1d\x25\x07\x81\xe2\x83\xa0\xe7\x28\xc0\xb6\xb3\x7f\x9d\x83\xa0\xf8\xa3\xf8\xd9\x88\x6e\x3d\xc4\x0f\x10\x5a\x24\x43\x77\x2c\x16\x20\xc2\x50\x9d\x47\xe8\x06\x40\x84\x85\xde\x0f\x05\x76\x08\x0a\x6e\xb3\x52\xd4\xff\x49\x3a\xe8\x39\xe5\x19\xe4\xf2\x8b\xc8\xe7\x7a\x28\xc6\x2c\xd0\x8a\x70\xc2\x76\xac\x70\x63\xf4\xc5\x35\x3e\xea\xab\x01\xf5\xdb\x93\x99\x8d\x38\x63\xed\xe2\x85\x97\xd9\xfd\x73\xa6\xda\xa9\x68\xe9\xd4\xba\xaf\x79\x3a\xf7\xd1\x0f\x53\x78\x07\x59\xf5\xcd\xd0\x1d\xa9\x5b\xfa\x3e\x18\x24\x2d\xb5\x25\x14\x3c\xe1\x35\x98\xc6\xe4\xc5\xca\x3e\x90\x34\xb2\xc1\x6e\x3b\x49\xdd\x5c\x6f\x44\xc2\x9e\x8e\x64\x5c\xf3\x47\xda\x63\x32\x86\x4b\x0e\x76\xba\xb6\xc7\x18\x8d\x77\xf4\xe5\xa3\xf0\x50\x65\x7a\xa6\x03\xf8\x49\xcf\xd8\x92\x3b\x26\x13\x88\xad\x6b\x4d\x91\x95\xe9\x1d\xa4\xc8\xf9\xdd\xfa\x7e\x58\xd3\xff\x7d\xf8\xda\x37\x31\x00\x88\xd8\xf0\x2b\x6d\x25\x02\x28\xc7\xf1\xb4\x6e\x3f\x02\x60\x9a\xca\xfd\x76\x47\xdc\x3a\x07\xe1\x4d\xc3\x7f\x7c\x6f\x36\x40\x48\x9d\x50\xd5\xc1\x2c\x80\x18\x75\x89\x0b\xac\x8c\xeb\xf9\x49\x71\x38\x5d\x7a\xa5\x1d\x90\x1d\x3d\x68\xfa\x49\xcf\x86\xc4\x1b\xa4\xe1\x32\xe2\x92\x4d\xe8\xf2\x08\x8f\x1c\x0a\x4d\x41\x7c\x1c\x63\xf3\xe6\x12\x9c\x70\x58\x4b\xe5\xfa\xb6\xac\xeb\xd8\x4e\x43\xc6\xc1\xc8\xdc\x35\x1e\x68\x1c\xd1\x9b\x5d\x08\x38\xbb\xe3\xbd\xa4\x41\xdb\x62\x42\x36\x5b\x9f\x9a\xd1\x10\x5a\x37\x43\xa0\x03\x6b\x92\x8a\xee\x4b\x53\xbf\xf7\xcc\x94\x7f\xa9\x3d\xb1\x81\x92\x13\x46\xf1\x05\xba\x9e\x6b\xd6\x80\x25\x84\x8b\x51\x7c\x81\x2e\x25\x9a\x6b\xe0\xb7\x06\xa8\x97\x6e\xb1\x50\xc2\x6b\xf8\x55\x51\x38\xa0\xc2\x61\x73\x05\x44\xc2\x5d\x21\xb7\xc9\x7c\x18\x29\x76\xd9\xbe\xbe\x1f\xd6\xf4\xff\xc3\x5c\xbf\x37\x19\x02\x88\x35\x70\x6b\x6e\xe9\x00\xd0\x2a\xe0\x1c\xdc\x76\x6b\xdd\x07\x61\x8d\x83\xe8\xe4\xde\xbf\x7b\x18\x20\x46\x91\x57\x6e\x9f\x0b\x40\xf2\xbc\x70\x1e\xd3\x20\x40\x26\x9b\x0c\x81\x37\x01\x20\x6d\x54\x33\x5f\xfe\x22\xa4\xa6\x38\x1a\x31\xe9\x1b\x92\xe8\x4f\x6e\x75\x18\x75\x33\x21\xec\xf2\x63\x0b\xd9\x75\x52\x1b\xef\xe9\xfa\xf1\x8c\x6a\x86\x39\xb6\xc5\xfa\x77\xbd\x4a\xfe\x2b\x0c\x8d\x91\xc3\x07\x9b\x92\x90\x5f\xef\xf5\x61\xb6\xb8\xf8\xc3\x10\xbd\xf1\xf3\xb9\x7b\x45\xf0\xec\x81\x19\xf3\x02\x75\xfe\xe3\x35\x0e\xe6\x89\xc5\x69\x34\x63\x96\xe3\xed\x47\x56\x56\xe8\xc9\xb4\xe9\x1a\x46\x2b\x27\x8c\x50\x82\x4d\x65\x9d\x35\x1a\x73\x21\xde\xfc\xd2\x37\xeb\x9d\xd8\xd8\x28\x62\x69\xaa\xb5\x01\x6e\x7f\xb8\x5e\x71\x90\x55\x04\xae\x29\x08\x7b\xee\x83\xb5\x1b\x9e\xcf\x7f\x38\x17\x6d\x6d\x8c\xcf\xf7\x79\x91\x43\x67\x3d\x8c\x9f\xf4\x52\xcd\x3e\x60\xb5\x88\xb8\xb8\x09\xaf\xef\x07\x8a\xfe\xcf\x95\xcb\x65\xb8\x79\x7c\x5d\xff\xd7\x4f\x62\x7d\xbf\x45\x03\xc0\x21\xee\x58\xe5\xb6\x64\x00\x9f\x25\xe6\xc9\xad\x3f\x00\xa2\x72\xd9\x83\x77\x6d\x04\x48\xd6\xe3\x7c\xba\x37\x19\xe0\xf4\x2e\xc1\x41\xa6\xf7\x00\x79\xbb\x25\x3d\xb8\x05\x01\xf2\xf4\x55\x0e\x48\x27\x41\xc1\x99\x2a\xdd\x39\x3d\x14\x69\x5b\x5a\xab\x75\x89\xfb\x71\x24\x38\x3c\xce\x8f\xe5\xd4\x23\x9c\xa0\xd7\x78\x66\x6f\xee\xfd\x25\xb4\xfd\xce\x7a\xab\xb2\x1b\x8b\x57\x8c\x7d\xc6\xee\x5d\x35\x1e\x8e\x33\x9b\x98\xf1\xac\xac\xee\xb9\x67\x25\x3c\x1b\x5e\xd6\x7f\xbf\xc0\x26\x62\xee\xd6\x85\xa5\x86\x7a\xdb\x94\x05\xb9\x73\xd2\x75\x47\xec\x1e\x2d\xd2\xe5\x6e\xbb\x7a\xc6\x9e\x1a\xed\x97\xf9\xfb\x92\x83\xfd\xf8\x12\x2a\x75\xb8\x24\xc1\x41\x01\xc3\x94\x58\x52\xf8\xc1\xe1\x2d\xe6\x41\x3c\x77\xee\x77\x47\x75\x6c\x68\xf4\xfc\xd9\x76\x07\x13\xdc\x96\x08\x95\xec\x6a\x07\x63\x5c\x6d\xf0\xd7\x4c\x26\x07\x5a\xfc\xf1\x80\xb8\xd4\x3c\xfb\x97\xf8\x06\x1f\xa9\x94\x04\x7b\x19\x64\x83\x67\x07\x00\xf5\x16\xfe\xcf\xcb\xeb\xa7\xe8\xff\x7c\xdd\x6c\xcf\x37\x7d\x02\x50\x09\x60\x1e\xdd\x2c\x05\x60\x9e\xc4\x5c\x42\xf3\x60\x3d\x07\x21\xec\x1a\x53\xf8\x96\x2e\x80\xc4\xaa\x0d\x8b\x2b\xfa\xe7\x73\x56\xe5\x9d\xa7\x01\xce\xb3\x72\x33\x1e\xd8\x00\x50\x6e\x26\xa4\x7c\x2c\x0e\xe0\x52\xb6\xdc\x61\x71\x4e\xb8\x5f\x6e\xa2\x41\x44\x71\x92\x98\x8b\x68\x4c\x55\xdd\xa8\x91\xa3\x29\x15\xee\x8f\x93\xfa\x96\x8a\x83\x02\x92\x2c\x4a\xf0\x13\x28\x0f\xeb\x1a\x8e\xab\x15\x23\xfb\xed\x69\xdf\x4f\xdc\xac\xec\xec\x70\x68\x99\x1a\xaf\xb5\x6b\x60\x77\x61\x9b\x09\xac\x6a\xac\xc9\x72\xbd\xf3\x7b\xa1\xe2\x44\x65\xa2\xeb\xf7\xb9\xc9\x62\xaf\x12\x63\xf7\xd1\xf9\xd9\xc2\xba\xf3\xa1\xee\xf6\x8b\x9b\xf3\x44\x28\x79\x48\x39\x0f\xdd\x73\x96\x34\xd3\xaa\xb3\x3a\xdd\xae\x62\x2c\x13\x26\xd3\xc2\xdd\xcf\x60\xfa\xe3\x65\x93\x87\xdc\x88\xd8\xd3\xd1\xdd\xa7\xcc\xdd\xdd\x70\xa2\xe1\x67\xe2\x87\x5d\xbf\xe0\xfa\x82\xed\x63\x43\x5c\x5b\xf0\x12\x01\xfa\x51\xea\x6e\xa5\xf8\x33\xbe\x2b\xb7\x8c\xd8\x88\x2b\xef\x4d\x14\xfd\x3f\xf5\xd8\x8a\xff\x81\xca\x56\xda\x95\xbf\xbb\x6d\xda\x36\x7f\xfc\x53\xf7\x8c\x7b\x4a\xf5\x97\xfe\x4b\xc9\xc5\xa8\x3a\xc1\x62\xb0\x2b\x09\xa0\x0e\xe1\x41\x8e\xdc\x05\xb8\xbd\x24\x3e\x27\x98\x08\x5f\xef\x7c\x57\x7a\xaa\xd1\x47\xda\x7b\x7d\x5e\x5f\xd2\x4d\x7c\x69\x43\x09\x9b\x7d\x79\x8a\xfa\x07\x4c\xaa\x6b\xf8\xd1\xf2\xa7\x4f\x59\xa3\x32\x2f\x7c\xab\xcd\x6a\x29\x0a\xda\xd2\x23\xdf\x18\x75\xcd\xc7\x3f\x69\x92\xa1\xb1\xb2\x64\x26\x60\xe0\x97\x4b\x6d\x49\x01\x67\xa0\xd3\x8c\xef\xd5\xb1\x33\x3d\x81\xa7\x66\x05\x2b\x4c\x33\x43\x03\xf9\xe6\x99\x8a\x63\x53\x3a\x03\x4d\x16\xfc\x0a\xf4\x12\xf7\x06\xcc\x2d\xd6\x9e\x19\xa3\xf8\x9f\xc4\x18\xf9\x37\x2d\x35\xa5\x3c\x3d\x29\xee\x57\x81\xf1\x4b\x78\x11\x71\xd1\xef\x23\xf6\x60\xec\x58\x44\x89\xcf\x10\xf6\x7d\x14\x53\x68\xb3\xcf\x0d\x9c\x6f\x98\x40\x70\xb4\x0f\x07\x0e\x13\xa4\x11\x68\xe5\xe3\x8a\x97\x09\x50\x07\xa0\x75\x64\xd9\xb3\x32\x17\xc8\xfa\xbf\xd4\x7e\xda\xfc\x15\xdd\x17\xbb\x79\x68\xb9\xba\x92\x39\x08\x8a\x0f\x02\xe5\xfe\x77\xb1\xd1\xea\x7d\xf8\x6b\x57\x56\x73\x51\xee\x5e\xdb\xa0\xb4\x5c\xef\x7b\xb0\xcd\xec\xcb\x01\xe8\xe4\x38\x31\xca\x99\x0d\xd0\x43\x27\x93\xa0\xc4\x82\x28\x77\xe8\x6a\xfc\x72\xe2\xf9\x7a\xa3\xfe\x95\x45\xf3\xa9\x87\xdd\xdf\x2b\x13\x7c\x91\x0b\x0f\x6b\x34\x72\xf3\x32\x5e\xde\xec\x28\x78\x95\x7e\xba\xe9\x65\xf3\x8f\x34\x9a\x24\xa3\xef\x2d\x6d\xc9\x09\x96\x89\xd4\x53\x2e\xb7\x9e\xc4\xbd\x39\x85\x9a\x6e\xb9\x6e\x1f\x63\x10\xbf\xf9\xf7\xe3\x4a\xba\xe8\x27\x31\x31\x73\x51\x65\x07\x23\xd5\x62\xcc\xe7\xa7\x8b\x52\xc2\xeb\xa2\xa9\x16\x9d\x73\x0d\xc2\x94\x22\x1b\xd0\xee\xd9\x79\xa1\x91\x61\x42\x4b\xb9\xa9\x97\x82\x1b\x42\x9f\x61\x9c\x12\x8f\x07\x55\x87\x44\x60\x77\xc4\x89\x06\x2a\x04\xe5\x62\xbf\x47\xf6\xf8\x17\x07\x5f\xc1\x29\x87\xbb\xf8\x4b\x07\x0c\xe2\x06\x82\x75\xfc\x8e\x04\x44\xe1\xc5\x03\x42\x00\x98\x38\x99\x09\x1b\xa8\xfe\x87\xfe\x4f\xfe\x1d\x9f\x92\x8b\x42\xd1\xbf\x8b\xc8\xb9\x07\xd7\xfc\x56\x6b\x13\xd9\x17\xe4\x49\x24\xd5\x8a\xaf\x6b\xff\x01\xda\x15\x1e\x75\x98\x85\x03\x7d\xa8\x15\xe0\x8b\xb6\xd8\x27\xc9\x63\x93\x03\xef\xbe\xab\x1c\xb4\x72\x78\x8d\x7a\xb6\xd5\xe8\x47\xc4\x4c\xe3\xed\xf6\x5c\x77\xd5\x3c\xba\x82\x37\x77\x12\x13\x02\xaf\x55\x27\x30\xdc\x30\xbc\xf5\xe3\x76\x41\xb0\x57\x35\xc3\xe4\xd1\xc6\x8b\x81\xfb\x2b\xf8\xa6\x99\x6a\x92\x02\xb8\x4b\x95\x7e\xcb\x5f\x11\xf7\x57\x2f\x7a\x3a\xb7\xbf\x7c\x97\x5f\x77\x9e\xef\xfc\xab\xa2\x8b\x7e\x27\x72\xb6\x2e\xca\xe6\xde\xf5\x13\xc8\xf4\x46\x1f\x38\xfd\xc9\x27\x28\xdd\x79\xc9\x26\x2d\xef\x5f\xdf\x0f\x4f\xfb\xc4\x41\x6c\x75\x34\xca\x73\x28\x7e\x07\x8e\x39\x42\xd7\x43\x2c\x4e\x04\xd7\x1b\x5c\xea\x21\x75\x72\x2f\x5e\x36\xc0\xc8\x63\x77\x94\x38\x3e\xdd\x97\x00\x70\x54\x86\xc9\x99\x9a\xb4\xae\xff\x1b\x1c\xa7\x3e\xb0\x5c\x3d\x8f\x51\xfd\x75\xff\x9d\xe2\x0b\x43\xf1\x01\xa0\x70\x10\x3d\xe4\xfb\xcf\xef\xc8\xcf\xcb\x37\x22\xf5\x0a\x3f\xb6\x98\xc4\xfa\x73\x37\xdd\xdc\xb1\x45\x75\xa1\x94\x13\x3b\x87\xa3\x7f\x26\x2b\x70\xeb\xff\x7a\xec\x31\xfa\x4c\xaf\xd0\x17\x5b\x15\xff\x5e\xc7\xe9\x58\x9a\x71\x4a\xf1\x4b\xc6\x93\xcc\x65\x3d\xc1\x12\x7d\xcf\x6b\x5a\xaa\x6e\xb9\xa4\xf6\xca\x8d\x53\xd5\xf0\x38\x73\x3d\x48\xfa\xad\x7b\xf9\x9e\x13\xe6\x6e\xdc\x9c\x5f\xc9\x0d\x17\xd3\x3a\xd4\x7c\x74\x11\x38\xef\xa9\x8e\x5c\x34\x3a\xeb\xe1\xdc\x50\xd1\x8d\xb6\xcb\x7a\xe6\xbc\xa7\x4c\x77\x29\x27\xe5\xb3\xd3\xe2\x05\x66\x8c\x5d\x42\x9a\x73\xcd\x39\x61\xcc\x54\x5c\x94\x13\xe4\xde\xc4\x9e\x8f\x36\x70\xaa\x3c\xc3\x8c\x63\x09\xff\xe1\x98\x91\xdd\x81\x7b\x1f\xf4\xcb\xb1\x28\xc3\x01\xaf\xe1\xdf\x6e\x7f\x35\xdd\x07\xbf\xe4\x65\x68\xbf\x94\xa2\x89\xc8\x79\xec\x04\xe0\x95\xd8\x59\xbc\xfc\xb9\x29\xfa\xbf\xed\xb7\xd5\x1a\xf6\xe6\xef\x39\x70\x91\xac\xf3\xdd\xed\xa0\xfa\x8b\x83\xa0\xf8\x41\xfc\x84\x3f\x7f\xff\x9f\xe5\x07\x38\x32\xb1\x2d\xf7\xb3\x14\x00\x7f\xcd\xf1\x8c\xbe\x7e\x52\x82\x0c\xa8\x38\x35\x6a\x2c\xfd\x40\x39\x3b\x6e\xbc\xe0\x34\xbb\xcf\x6e\x4f\xb4\x7c\xd4\xc4\xe4\x91\x70\xa9\xb3\xe0\xd1\xfc\xa3\xff\xea\xae\xf3\x4f\x2d\x73\x7f\xf8\x8c\x5a\x96\x8d\x9b\x7f\x18\x8e\x9e\x3b\x7f\x61\x87\x05\xe3\x2b\xc9\x05\x8f\x3c\x63\xcb\x83\x5d\x1d\x8b\x75\xa7\x65\x2c\x53\x1f\xa8\xa1\xdb\xd3\xa3\xad\x94\x1b\xae\x2e\xa1\x13\xf3\xad\xb7\xde\xa4\xc6\x44\xc5\xff\xb0\xd6\xac\x9e\xc3\x1e\x8f\xe1\xb3\xbe\x59\x49\x83\x7d\x17\xb9\x85\x92\x73\x62\x19\x57\xfe\x1e\x2f\xe0\x5f\x6f\x55\x7a\x21\x0c\x1f\xec\x3b\x60\x75\xa1\x90\x1a\x3f\xe4\xd5\x63\xa5\x90\xcf\x88\xa8\xb8\xbb\x5b\x32\xe5\xcb\x21\xd9\x2e\x43\x00\x42\x64\xee\xe7\x5f\x1f\x88\xff\x8b\x03\x79\x12\x4c\x5e\x7f\x0b\xd5\x1f\x1c\x00\x45\xff\xf9\x49\xbe\xd7\xfc\xc1\x04\xe0\xf0\xb7\x2d\xef\xfb\x36\x00\xf0\xa9\x1f\xdb\xda\x2a\x09\xb4\x32\xee\x32\xb7\xaa\xa2\x89\x71\xda\xf4\xc6\x89\xa7\x7d\x11\x0e\x9b\x54\x9f\x96\x60\x09\x6c\x50\x08\x47\x3c\xde\x39\x02\xb3\xad\x4c\x36\xed\xa6\x99\xdd\xd2\x86\x3e\xf7\xcc\x41\xfd\xdd\x68\x9b\x45\x9b\xac\x32\xfd\xdb\x93\x2c\xe8\xb0\x34\x46\x03\x9b\x0f\xcf\x97\x8a\x13\x66\x0c\x5d\xdf\x5c\xc7\x68\xc7\x75\xae\xf9\x5d\x1c\x79\x74\x0c\x5b\x16\xf1\xc0\xc8\xad\x0d\x70\x29\x41\x63\xc6\x82\x77\x51\xb8\xf7\x01\xbf\x8c\x93\x6f\x97\xe2\xa5\xfd\x8c\x8d\x7f\xd4\x14\xe1\x9b\xbd\x9e\x1a\xe3\xae\x09\x21\xdb\x3d\x2c\x8d\x32\xab\x98\x90\x4a\x67\x0e\xe3\x73\x17\x63\x91\x61\xc7\x53\xc6\x3f\x4b\xee\x13\xf6\xdb\x07\xaf\x3f\x07\x94\x3c\x10\xca\x3e\x28\x8c\x58\xad\x75\x5b\xa8\xfe\xe6\x40\xc8\xfb\x65\x7a\x70\x65\xfd\x64\x1d\xe3\x3f\xf7\xc0\x63\x00\x36\x65\x53\x51\xb5\x12\x01\x78\xec\x99\x0c\xae\xbf\x01\x77\x19\x0e\xb1\x2b\x45\xa7\x48\x16\x5a\xee\x9a\xe3\x89\x59\x84\x47\x56\x4d\xb6\xf5\xbe\xda\xc8\x0e\x7f\x6b\xbf\x7d\x0e\x7a\x78\xd1\xb3\x8b\x21\x15\xa6\x9e\x38\xcd\xe6\xac\xc8\x6c\x3d\x2b\xec\xc5\x91\x1b\xd1\x0f\xb4\x65\xb1\xa5\x98\x97\x51\x8c\x5a\x5e\x0b\xce\xd8\xe6\x90\x9b\xda\xfe\xdf\x9f\xe1\x76\x07\x4b\x68\x8f\x7c\xb8\x81\xbb\xe6\xdf\x8a\x2a\xea\x7f\x86\xdf\xe1\xeb\x8f\xfa\xf0\xec\x28\xfe\x8a\xa7\x85\x4e\x61\xd7\x49\xfc\x80\x87\xa8\x6e\x5b\xbb\x39\x7e\xce\xbd\x41\x57\xaf\x25\x04\xc9\x76\x7a\xaa\xf3\xea\xae\x15\x32\x6d\x9f\xa8\x5b\x7c\x6b\x8e\xc0\x68\xc7\xae\x9b\x5b\x77\x9e\xa0\x69\x93\xae\x7b\xb7\xba\x8e\x50\x60\x79\x77\xfd\x39\x08\x46\x56\xeb\xd9\x8d\xe4\x39\x48\xd6\xb9\xda\xc9\xe7\xc5\xdb\xde\xff\xf5\xfd\xff\xbb\xfe\x6e\xb2\x1e\xd8\x96\x08\x70\xf8\xda\x16\x42\xcd\x6b\x00\xae\x80\x83\xbd\x25\x42\xf0\x55\xa2\x8b\x67\x2a\x73\x02\x0e\x68\x70\xcb\x31\x47\xce\x10\x67\x2d\x76\xeb\x57\x7a\x78\x13\x3c\x7c\x85\x1d\x53\x6d\xe9\x09\x34\xe9\x3f\x5c\x9d\x4c\xf6\x22\x27\xaf\xb9\x79\x8a\xeb\xfa\x21\x82\x9d\x07\xbc\x24\xb4\xce\xe3\xef\x7f\x44\xfb\xd8\xaa\x6b\xe3\x07\xf1\x7c\x5e\xfb\x28\x79\x1f\x6a\x6c\xb3\x25\x08\x8b\xf3\x76\x75\xe1\x6f\xdf\x10\x36\xe7\x6c\x75\xae\x8f\x43\x48\xb6\x43\x80\x7a\xed\x40\x2b\xd2\x6b\xd7\xbe\xe6\x77\x61\xd2\x73\x96\xa0\x67\x75\x45\x43\xb1\x03\x45\x28\x31\xff\xa0\x5e\xfc\x00\x21\x10\x4d\xb6\x6b\x84\xb6\x8e\x10\xa9\x4c\x78\x35\xcc\x1a\x87\x89\x1a\x86\x3a\xeb\xf3\x30\xcd\xee\xef\x39\xd0\x4a\x3e\x17\x28\xfa\xef\xd4\x2a\x07\xa5\x41\x7e\xfe\xc9\xfa\xcc\x90\xea\xdf\xfa\x57\x93\xe4\xdf\xfa\x67\xe9\x2c\x00\xfb\xdc\xde\x89\x33\x33\x40\x90\x4c\xe3\xb2\x4b\x90\x04\x0f\xf5\xc7\x12\xbc\x01\x2f\x48\x5d\xa6\xfb\x55\x38\x9c\xd3\x89\x45\x9e\x9b\x4d\x68\x2c\x9d\x89\x01\xa7\xee\x99\x59\x1a\x3e\x23\xee\x2b\xf6\xb0\xfc\xaa\xbb\x9b\x90\x7f\xa7\xda\x8e\x5b\xf3\x01\xc1\xaa\x87\x60\x2f\xa0\xf6\x8a\xc0\xf8\x79\xdc\x41\x4b\x85\x8b\xa0\x89\x34\xd8\xe6\x2b\x5d\x24\x7c\x25\x58\x98\xdf\x56\x4c\x43\x6c\x09\x5d\xc6\xa7\x15\xc6\x66\x55\x89\x07\x0d\x42\x15\x8b\x27\x68\x88\x3b\x0c\x35\x14\xdf\x7c\xf2\x26\x8a\xe8\x63\xd6\xfc\x2e\xcc\xdf\x28\x12\x7d\x75\x27\x94\x0a\xfa\x1e\x13\xb3\x75\xee\x2a\x8e\x74\x17\x12\x3f\x6a\xd1\x2a\x1f\xee\x08\x22\x76\x68\x17\x03\xc4\x92\xf9\x8f\x0b\x64\x1e\x86\xa2\x7f\xff\x6f\x3f\x14\x8a\x0f\x3e\xc5\x07\xe0\x29\xd9\xff\xbf\x85\xac\x07\x51\x7c\x00\x28\xfa\x6f\xee\x31\x00\xf6\x43\xbb\x8b\x93\xf5\x00\xc4\x44\x58\x92\x23\x6a\xa1\x57\xe5\x9b\x80\xb2\x17\x33\x70\x1b\x9f\x92\x99\xb5\x6b\x20\x05\xbb\xf4\x6a\x6e\x36\xd3\x20\x19\x46\x79\x69\xd7\xe8\xdf\x25\xed\x3a\x83\xd6\x3b\x88\xca\x24\x3e\xa8\x14\x30\x8c\xd0\x78\x4f\xcc\x6d\x1c\x36\xea\x5e\xe3\x1e\xbc\x89\xd1\x9f\x3c\x0d\x47\x15\x82\x88\x57\xd0\x6d\xfa\xa7\xe4\x85\x49\x1b\x89\xd9\x28\x15\x4a\xce\x87\xac\x20\x5e\x82\x74\x50\x75\x48\xf6\xea\x4c\x04\x91\xa8\xce\x2b\xab\xf9\x63\x8a\xc4\xa4\x5a\x21\x13\xf9\x85\x8a\x64\xa3\x14\x23\x73\x75\x64\x23\xc9\x5d\x69\xab\xcc\x8b\x81\x71\x52\xb0\x62\x88\xac\xe0\xeb\x74\x52\x98\x62\xd8\x1f\x7e\x28\xe4\x39\xd0\x4d\xe6\x44\xff\xd6\x7f\xd7\x38\xa8\x3d\xff\x5b\xff\xa3\x70\x30\xc5\x64\xee\x21\x4b\x8a\xac\x7b\x21\x00\xb4\xe7\xa8\xa8\xa2\xaf\x01\x08\x86\x1c\x9c\x09\x38\x03\xa0\x38\xc1\x41\x74\xe1\x87\x24\x83\x17\xa2\x56\x56\x2f\x49\x88\xc3\x3b\x79\x12\x25\xf7\x42\x77\x80\xd4\x93\xfc\x41\xc5\xf9\x5f\xee\x41\x25\x84\x64\xdb\x18\xa4\xc9\xa7\xc8\x43\xb2\xec\x5e\xd0\x28\x94\xd7\x24\xa9\x0f\xf7\x6b\x52\xcb\x89\x93\x14\x17\xd2\x35\x59\x28\x7e\x17\xd2\x41\xa4\x05\x52\x8e\xc2\x0e\xc9\xef\xa0\x42\xfa\x2e\xed\x27\xb1\x15\x9f\x01\x27\xc4\xa6\x24\x0e\xcd\xb9\xc2\x41\xf1\x41\xf1\xa2\x9f\x2f\x81\x43\xec\x9e\xd8\xdc\x37\x3b\x90\x13\x65\x94\x60\xfc\xc8\x0c\x87\xc5\x75\xd7\xdf\x07\x28\x73\xf0\xe3\x0f\xaa\x3f\x38\x98\x59\x9f\xbf\xf5\xcf\x67\xe4\xfb\xdd\xf7\xe9\xfe\xd6\xff\x28\xfa\xe7\x5a\x1e\x08\x99\x8b\x39\x39\x07\xc0\x3c\xb6\xdd\x35\x68\x2f\x80\xc0\xf1\x7d\x8d\xee\x7d\x00\xf2\xd7\x59\xf9\xed\xe8\xe0\xb5\xae\x24\x5f\x24\x85\x7f\xd0\x43\x83\x9f\x9f\x93\xc4\x16\xd4\x43\x10\x89\xd3\x94\x41\x34\x2a\x81\x3d\x3b\x56\xf6\xb7\x9a\x0c\xd0\x9c\x0f\x95\xaf\x57\xb6\x20\x7d\xab\xde\xae\x68\xa3\xb8\x9b\xd4\xd3\x04\x4a\x37\x64\x09\xa4\x6f\x5d\x29\x0a\x06\x32\xfb\x48\xdf\xdf\xa5\xcb\x7f\x92\x5e\x22\x3d\x9e\x5c\x52\xda\x41\xf1\x79\xf8\xbf\x78\x07\x21\x0c\x69\x1b\x2c\x72\xef\x12\x6a\x40\x07\xc2\x47\xee\x2e\xc1\x82\x69\x76\xf8\xce\x25\x0c\xd0\x56\xf5\xf7\x39\xb0\xca\xc1\x50\xf4\xdf\x4f\x77\xfe\xd6\x3f\x1f\xf8\xad\xd6\x9b\xe4\x5c\x88\x35\x0e\x86\xfc\x5c\x24\x91\x75\x4e\x8a\x0f\x84\xab\x34\x59\x07\x3f\x03\xc0\xcb\xbb\xbb\xce\xd1\x07\x40\x8e\x81\xc9\xd7\xf2\x05\x80\xd6\x0c\x47\xb7\x21\x13\xf4\x99\xd3\xf0\xc5\xe8\x76\xc2\x65\x8f\x00\x61\x3a\xcd\xdf\x70\x29\x74\x42\xb8\x5d\xfd\x20\xc4\x25\x9d\x14\x1b\xa3\x70\x0f\x8a\xb3\xe0\x58\xec\x2c\x31\x21\x5f\x05\x7a\xd7\x9c\x25\x31\x32\x5f\xc1\xa8\xb1\x48\x52\x52\x6a\x0a\x50\x9d\x69\x92\x76\x52\x67\x80\xb3\xdf\x45\xfa\x8e\x44\x06\x98\x8c\x25\x4b\x0c\x88\x33\x40\xd1\x22\x93\xe8\x01\xf1\x9b\x70\x05\x0c\x45\x15\xfe\xe5\x1d\x4e\x2c\x2d\x3f\xe9\xec\xea\x7c\x77\x97\x2b\xd3\xc8\xbf\x1c\xcc\xbf\x1c\xd0\x2b\xf2\xba\x29\x1c\xd0\x6d\x72\x0e\x0a\x25\x0f\xe4\x5c\xc4\xdf\xfa\x2f\x45\xff\xf6\x21\xeb\xe4\x36\x73\x00\x54\x9b\xa9\xa8\x1c\x7e\x02\x70\x84\xef\xd8\x6c\xe9\x08\x20\x8e\x61\xc0\x19\x1f\x07\x50\xbb\xc7\x3c\xa6\x5b\x0d\x58\xe3\x60\xce\x1d\xda\x67\x60\xca\xc1\x88\x87\x4e\x5d\x00\x46\x03\xe8\xf9\x2c\x54\x0a\xa1\xef\xe4\x5d\x81\x5a\xc5\x70\x78\x9f\xc4\xc5\x7f\x46\x61\x18\xaa\xce\x62\x85\xe5\xff\xe5\x1e\xa4\x9a\x20\xab\x41\x51\xe4\x8e\x44\x21\x14\xb6\xdf\x14\x3e\xbb\xe6\xf3\x60\x01\xe5\x43\x27\x85\xf7\x8b\x89\xc3\xd5\xa9\x6e\x61\x8f\x35\xde\x61\x0b\x00\xb4\xf2\x87\x53\xfa\x21\x48\xbf\xd2\x8f\x04\x80\x1f\x2b\x9c\x24\x25\x0f\x66\x9c\x11\xfe\xbf\x1c\x50\x55\xd2\xdf\x73\x90\x92\x07\x42\xf1\x43\x09\x1a\xfa\x5b\xff\x37\x21\x00\x50\xc5\x53\x51\x59\xd3\x03\xb0\xe5\x6e\x0b\x37\xe6\x03\x10\x1c\xde\x6d\xac\xb7\x19\x40\xe9\xd3\xe1\x1e\xed\x6a\x00\x3d\x06\xd6\x27\xea\x08\x80\xf5\x2c\xbb\x91\xea\x6b\x00\xaf\x3d\x5c\xfb\x94\xaa\x00\x82\xd4\x38\x07\x15\x92\x01\xa2\xdc\xb8\xa2\xe5\x92\x01\x9d\xb2\x8b\x07\x25\x7b\x04\x26\x72\xde\xf1\x7e\x94\x7a\x01\x5f\x8a\x8d\xf8\xf4\x25\x17\xe1\x4d\x25\x37\x7f\xbd\xf8\x5b\x78\x7b\x53\x9e\x5f\x55\x2c\x1a\x9e\xb7\x7d\xe6\x7f\x27\x32\x02\xc3\x5d\xa3\x7c\xb7\x85\x3b\x60\xec\x4d\x1a\x9f\xb0\x70\x22\xfc\xf8\x62\xcb\x17\x2f\xec\x0a\xd8\xa9\x5a\xbe\x3d\xc2\xfc\x00\x98\x01\x9e\x08\xc1\x6f\xcb\x7d\xe0\x50\xa5\xcc\xc1\x1f\xfa\xab\xf5\xff\xe4\x80\xc8\x7d\xf8\x97\x83\xa1\xe4\x81\x84\x91\xf3\x71\xfe\xf5\x81\xb0\xbd\x0a\xc0\x78\x7b\x53\x9c\xd2\x28\xc0\x06\x6b\x2a\x2a\x54\x1d\x00\x8f\x3f\x2d\x4a\x73\x00\x40\x56\x9a\x81\x55\x39\x0e\x40\x2d\xe5\x20\x8f\xd2\x14\x80\x71\xfe\x91\x44\xa5\xb3\x00\x8e\x6f\x59\x1d\xe4\xe7\x00\x7c\xb6\x1d\x8b\x92\x9b\x02\x08\x8d\x62\xef\x90\x3b\x0c\x10\x27\xc8\xa9\x2e\xa5\x0c\x90\xa4\xce\xae\x22\xf9\x08\x20\x67\x96\x53\x51\xa2\x0e\xe0\x82\x25\xd7\x17\xb1\x3d\x00\x97\xae\x71\xd2\x8b\xee\x04\xa8\x99\xe0\x24\x51\xf4\x7d\xe1\x26\xc0\x3c\x74\xe4\xee\xa5\xf0\x0e\x82\x25\x00\xfd\x21\x5c\xa2\x82\x53\x00\x5f\x98\xb8\x55\x05\xdf\x02\xfc\x1a\xe4\xba\xf3\x6f\x1e\x0c\x85\x03\xa2\xe4\xa1\x50\xce\xc1\x7f\x39\x98\x14\x81\xd5\x4a\xf1\x43\xf1\x29\xf9\xfb\x39\x30\x25\xef\x17\x4d\x32\x1f\x24\x93\x0f\x40\xfd\x83\x8a\x4a\xbd\x00\x80\xf3\xf4\x36\x56\x65\x36\x00\x51\x3c\x1d\x97\x82\x22\x80\x22\xfb\x3e\x77\x59\x66\x00\x9d\x32\x06\xb4\xcc\x08\x80\xa5\xc8\x21\x7f\xd9\x70\x00\xe7\x0a\x26\x51\x19\x15\x00\x9f\x86\xa3\x58\xe9\x22\x80\x30\x1f\x56\x17\x49\x47\x80\x98\x6c\x56\x5e\xc9\x40\x80\xd4\x04\x76\x15\xd1\x69\x80\xac\x76\xd6\x20\xd1\xfd\x00\x45\x54\x6c\x9a\xc2\x45\x00\xe5\xfe\x6c\xbb\x84\x4d\x00\xaa\x92\xd8\xe5\x05\xcd\x01\x6e\xd9\xb2\xa9\x9e\xc0\x01\x34\x6b\xb2\x6f\xa2\xf0\x0e\x27\x88\x00\xcf\x37\x70\x9c\x13\x28\x04\x18\x90\x63\xaf\x1a\x9e\x23\xbf\x07\x7c\x24\xbf\x07\x90\x39\x20\x4a\x2e\x56\x29\xf9\x7d\xf1\x2c\x2d\xfc\xc5\xc1\x50\x78\xb0\x35\x3f\x14\xf2\x7a\xad\x4a\x57\xab\xde\xcd\xd5\xaa\x4c\x3e\x37\xc4\x45\x00\xa8\xea\xa9\xa8\xe4\xb5\x00\x98\x5f\x6f\x7a\x2a\xd3\x09\xc0\xf7\x76\xfb\x76\xc9\x9f\x00\x92\xa5\xbb\x48\x62\x93\x00\x2a\x9f\xe9\x7e\x8b\x6d\x02\xd0\xd3\xda\xd3\x2a\x56\x00\x60\x91\xb8\x2f\x41\xf4\x27\x80\x43\x06\x03\x46\xf8\x27\x80\x87\xcf\x7e\x25\xe1\x39\x00\xff\x85\x83\x74\x22\x16\x00\x51\x3e\x87\x89\x42\x78\x80\x04\x79\xc6\xe8\x13\x43\x00\xa9\xc3\x87\x63\x84\x3d\x00\xf2\xcf\xb1\xe8\x9e\xb8\x02\x50\xfc\xe5\xa8\x9f\xc0\x26\x80\x4b\xf5\x4c\xe1\xfc\x16\x00\xd7\x70\x4c\x6f\xf8\xf1\x00\x77\x44\x58\x98\x79\x9d\x01\x9a\x87\x99\xb4\x78\x17\x01\x3a\x74\x98\x57\xa6\xbd\xc6\x3d\xaa\xbf\x38\x90\x35\x7d\x6b\xe5\xf7\xfc\x23\x44\x69\x9f\x8d\x4a\xff\xe5\x20\x28\x3c\x88\xaa\x94\xea\xf8\xa1\x20\x00\xd4\x09\x9d\x1d\xac\x83\x00\xfa\x0f\x4c\xac\x79\xec\x01\x0c\xc6\xed\xab\x84\xb9\x00\x0c\x26\x7d\xcc\xa4\xd9\x00\xf4\x9f\x9f\x4c\x57\x91\x80\x7e\x5d\x9d\x2c\x03\x2d\x7b\x88\xd5\x2e\x2f\xe7\x31\xf0\x01\x45\x8d\xce\x5b\x31\x26\x97\x60\x9f\x6a\x74\xa7\x8f\x39\x1b\x09\xad\xbc\x7b\x50\xcf\xa2\x8d\x34\xab\xc8\xfc\x8b\xdb\xf2\x38\xb0\xca\x7f\x21\xc8\x98\x61\xe1\xa4\x5c\x09\xa1\xcb\xb0\x0e\x1e\xca\x66\x13\x05\x74\x83\x97\xc4\x65\xa3\x89\x2a\x3a\xbd\xbf\xee\xca\xcc\x11\xb3\xb5\xde\x8c\xcb\xcb\xea\x12\x4b\xb4\x02\x3f\x9e\x90\xed\x24\x56\x6b\xf1\x0f\xb2\xca\x86\x12\xc7\xd4\xaf\xbe\x3a\x25\x4f\x47\x6c\xd3\xda\xfa\x6c\x5e\x76\x80\x74\x54\x55\xf9\xc9\xa8\x9c\x10\x49\x58\x25\xe4\x51\x84\x5c\x2d\x49\x5d\xb9\xee\xbe\x8e\xfc\x7d\x92\xb4\x4a\xd1\xf2\x7a\xd5\x78\xff\xee\xc3\xdf\xfa\xff\xae\x64\x91\x15\x9f\x6f\x9e\xe7\x92\x06\x5b\xef\xac\xeb\xff\x8a\xfb\xe5\x63\xf7\x71\x01\x68\x1c\x57\xd5\x3c\x6c\x02\x80\x6a\xd0\x1e\x67\x8d\x06\x30\x68\x32\xca\xe2\xf1\x01\x30\x32\xb1\x6b\x11\xf1\x06\x30\x4e\xf0\x12\x94\x2d\x04\x30\x38\x7d\x52\x56\xd5\x1c\x7a\xf4\x18\x32\x0d\xb5\x55\xc1\x07\xe5\x53\xe6\x63\xf8\x14\xb8\x34\x0f\xdc\xbe\x62\x26\x09\x74\xaa\x8e\x5d\xf1\xe6\xde\xa4\x4a\x95\x83\x43\xf5\xb6\xa6\xa4\x6b\x8a\xb3\x33\x2f\x6c\x99\x80\x55\xfe\x13\x41\xd6\xec\x17\x18\xc8\x2b\x10\x12\x4c\x74\x09\x82\xb2\x0d\x44\x36\x5d\xc2\xbc\xa8\x6c\x1f\x51\x4c\x37\x6e\x72\x41\xce\x86\x28\xa4\xb7\xfd\xab\xa4\xdc\x43\xa2\xba\x6e\xfc\x88\x82\xdc\x10\x31\x18\xf5\xa1\xdf\x56\xde\x90\x78\x4e\xbb\xe5\xb9\x83\x82\x3c\x31\x1f\xc5\xd1\xf3\x54\xfe\x19\x71\x40\x53\xe2\x09\xab\xbc\x2a\x89\x46\xed\xc3\xc3\xe3\xf2\x3d\x24\x56\xd5\xb7\x6d\x78\x79\x43\x92\xb9\xf2\x41\xf8\x1f\x5c\xd0\xdf\xfa\x3f\x2b\xaf\xa4\xef\xa6\x6f\xff\xe5\x20\x94\x0a\x64\xbd\xe8\x8d\x01\xb4\xb2\x95\xb3\x0e\x4d\x00\xe8\x29\x6b\x0f\x1d\x3b\x0f\x60\x9c\x6a\x6c\xcd\x3f\x0f\x60\xf2\xc4\x96\x4f\xac\x10\xc0\x04\xe3\x89\x95\xaf\x06\x30\xcc\x8d\x8c\x50\xe5\x83\x6c\x03\xc3\xcc\x4b\xfa\x87\x41\x53\x67\xa1\x04\x67\xe2\x40\x42\xb4\x74\x6e\x8b\x5b\x0a\xae\xf5\xa1\x5c\x85\x6e\xb8\xc2\xf6\x32\xc9\x45\xa9\x72\xb6\xd9\xa1\x84\xf4\x48\x91\x0e\xa9\xb1\x39\x0c\x8e\x72\x40\x28\x31\x56\xc3\x7b\xc8\x59\x10\x7e\x1a\xd8\xce\x70\xc9\xe3\x09\x59\x26\x15\xe3\x33\xf2\xfd\x84\x51\xc3\xf6\xcf\x4d\xf2\xb7\x88\x0c\xfa\x3d\x83\x5c\x0a\xc1\x44\x5e\x7d\xb3\x97\x67\x15\x7e\x13\x4d\x75\x7f\xf7\x76\x2a\xdc\x26\xe6\xa1\x6c\xbb\xe2\x15\x63\x89\xc5\x28\xcb\x47\x31\x8a\xc9\xc4\xc7\x5a\xb7\xef\x77\x28\x74\x91\xb6\xa9\x2b\xb6\x30\x2a\x84\x91\x14\x55\x72\xe0\x3f\x5c\xd0\xbf\xf7\xff\x29\xfa\x3f\x5f\x82\xe8\x95\xad\x9f\xd7\xfb\xa0\x66\x2f\xfd\x84\xde\x12\x40\xbb\x5a\xf9\xf8\x21\x22\x80\x41\xb6\x06\x3d\x8b\xec\x7a\x1f\xcc\x1e\x59\x75\x89\xe7\x02\x98\xc5\x7a\x64\x28\x90\xe0\xb9\xc9\x87\xf0\x17\x9a\xef\xc0\xcd\x70\x24\x53\xc3\x88\x09\x8e\xea\x99\x94\x98\x99\x4b\x90\x46\xb5\x9a\x6f\xff\xb0\x7a\x45\x0a\xd2\x38\xf0\xe4\x91\x43\x1a\x49\x4d\x65\xe1\xe3\x35\x27\x7d\x92\xb4\xd2\xc7\xc5\x00\xa7\x1b\xa4\x87\x8a\x7b\x91\xeb\x36\xc7\x41\x4a\x3e\x9b\xe0\x60\x5a\x88\x89\x92\x57\x22\x94\x18\x17\x4c\xbe\x53\xdc\x47\xd0\x34\x4f\xf9\x2a\xa7\xb8\x99\x70\xce\x04\x3d\x72\x4e\x61\x8a\xf0\xd9\xc8\xaa\xdf\x53\xf1\x03\x61\xd6\x88\xef\x05\xa3\xd2\x5e\xe2\x11\x83\xf3\xdd\x93\x4a\x1e\x44\x5d\xbd\xf7\x1d\x7d\x4a\xee\xc4\x68\x5d\xaa\x76\x56\xa5\x4f\xc4\x73\x3a\x7b\x5a\x55\x94\xf9\x89\x6d\xda\x99\x77\x05\x95\x6f\x10\x5f\x69\x75\xc1\xff\xc9\x05\x51\xf4\x7f\xb6\x34\x91\x8e\xcd\x2e\x00\x22\x25\x22\x17\x69\x2f\x02\xc8\x94\x8a\x9f\xdd\x75\x09\x40\xbd\x4e\x7a\x84\xfe\x11\x80\x7e\xb8\x42\xde\xa1\x1b\x00\xc6\x99\x9a\x0a\xc7\xf2\xd6\x39\x29\x8b\x46\x8b\x7b\x12\x2d\x00\x16\x75\xae\x3d\x4a\x46\xf0\xd2\x94\x35\x6c\x40\xf3\x2c\x78\x18\x45\xa5\x1b\x19\x7e\x87\xbd\x7a\x03\xc5\xef\x2d\x76\x93\xb2\x50\x4e\x77\x14\xed\xdb\x48\x7e\xea\xa3\x3d\xc2\x0e\x2d\xa4\xbd\xaa\x6e\x9f\xd5\x5c\x9e\x12\x09\xca\xca\x58\x57\xd7\x02\x4a\x1f\x08\x5f\x14\xb4\x09\xf4\x16\xf1\xb3\xd7\x15\xa9\x08\xfb\x2c\xf7\x7d\x77\x51\x62\x26\xd0\x58\x89\x7f\x4c\x50\xd2\x24\xd8\x9a\x27\xbe\x3b\xa3\x54\x4c\xc8\x37\xed\x7a\x75\x59\x99\x8b\xd0\x60\xf2\xbd\xf7\xa3\xb2\x1a\x61\xd1\xa8\x94\xc2\x85\xb5\x97\x29\x13\x88\x46\xfa\x62\x6d\x18\xe5\x7a\x62\xb6\x4e\x6d\xb3\xa1\xea\x36\x62\xb0\x9e\x68\x7d\xa3\x8a\x10\xb1\x5f\xeb\xc9\xff\x3d\x17\xb6\xbe\x12\x4a\x5f\xae\x9c\x76\x22\x0f\x69\xfa\xd6\x7d\x10\x28\xb9\x18\x5a\x7c\x12\xcd\x7b\xfd\x01\x0c\x0d\xe5\x6d\x0e\x59\x01\x98\xe5\xaa\x2d\xb2\xde\x5b\xcf\xd3\xb2\xbc\x65\x51\x2c\xe9\x06\x60\x29\xee\x3c\xa2\x58\x0d\xa5\x16\x5b\x42\x3d\x74\x3a\xc1\xc8\xf8\x51\xea\x47\xe3\x30\xd2\x98\xfe\xc3\x92\xc7\xd6\xdb\x29\xbc\x1c\x89\x4b\xe3\xf6\xd3\xeb\x2e\xc6\x24\x66\xd5\x3d\xa3\x09\x2e\x4c\x6b\x9c\xdc\x79\xc5\x44\x24\xc0\x8e\x05\xcb\xa7\x98\x8b\x14\xd8\xf2\x4c\x59\x28\x1f\x41\x9c\xed\xeb\xc6\x98\x95\x96\x90\x61\x9b\xed\xc3\xcf\x95\x95\x08\x3c\x96\xd5\x6f\x48\xca\x08\xc1\xcc\x22\xad\xcf\x5e\xa5\x89\x10\x65\x5e\xf8\x04\xaf\x12\x4c\x18\x34\x61\x7e\x5c\xa8\x72\x9c\xc8\x6e\x78\xb8\xed\xb6\x6a\x0b\x91\xc5\xf0\x51\x4b\xa4\xea\x75\xa2\xb2\x81\x57\xe3\x05\xd5\x77\x44\x6f\xbd\x8e\x5b\x32\xaa\x54\xc4\x01\xad\xef\xff\x9d\x0b\x54\xf1\xa2\x2b\xfa\xcc\xbf\xfa\xbf\x98\xa3\x50\x19\xed\x21\x00\xa5\xcf\x62\x3b\xe9\x84\x01\x50\xf7\xc4\x7c\xf6\x5c\x02\x30\x91\x91\x26\x1e\xa8\x03\xb0\x7c\xa3\xb6\xf9\x98\x38\x80\x2d\x5a\xd7\x86\x9f\x06\xc0\x66\x9b\xb9\x8d\xa4\x2b\xcc\x5a\x8d\x3b\xb7\xaa\x9c\x80\x9b\xe6\x63\xc1\x37\x50\xbb\x41\xc3\x24\x3b\xe5\x8e\x89\x24\xa9\xd8\xb0\xab\xf8\x89\xbd\x25\x89\x55\x37\xf2\xf6\x57\xd7\x54\xe2\x7b\xcd\x3b\xbd\x6e\x1e\xe2\xc4\x4c\x35\xcd\x71\x5b\xaf\xf1\x35\x4e\x4e\x46\x29\x05\x3f\xee\xd4\xb2\x50\xaa\xcc\x8d\xc7\x3a\x35\xfe\x50\x56\x4e\x41\x6c\x1d\x98\x3f\xf9\xa8\x58\x22\x67\xed\x37\x0d\x0a\xa9\x3c\x42\x06\x6d\xb7\xbc\x54\x55\xfd\x86\xfc\xb6\x69\xee\x51\x53\xcb\x26\xf0\x59\xa1\x29\x5c\xd8\x03\x26\xb5\x1e\xc2\x3d\xd3\x99\x16\x17\x75\x45\xc2\x77\x93\x84\x86\x42\xf5\xd7\xc4\x1d\xc6\x82\xb7\xcf\xab\xf3\x12\xad\xf4\x07\x6a\x3b\xd4\x7e\x10\x8b\x75\x37\xff\xd9\x07\xca\x5c\xf8\xdf\xfa\xbf\xf8\x88\x10\x17\x2d\xf7\x3a\x07\x41\xe1\x41\x2c\xb6\x48\x5d\x3f\xd0\x0d\x60\x3b\xa6\xe8\xc2\xec\x07\x60\x3f\xa2\xa3\xcb\xf7\x12\xc0\xc1\xc4\x74\x41\x2a\x0c\x5e\xdb\x99\xd8\x93\xd4\x32\x21\xd6\xfa\x44\xc0\xa8\xde\x33\xd8\x6a\x86\x4f\xce\xb0\x48\x26\xc5\x19\xd9\x16\x7f\x76\x40\xaf\xf1\x72\xb1\x5a\x49\x7d\x42\x3e\x5a\x44\x4d\xb5\xf4\x89\xcb\xbe\xd7\x28\x7c\x18\xee\x83\xb2\x26\xbe\xdc\x95\x7d\xfa\x83\x4a\x0c\xbe\xc0\x4d\x62\xac\x4c\x15\x85\x1f\x74\xf9\x3a\xe4\xa9\x66\x81\xec\x77\x3e\xff\x7a\x4a\xad\x1b\x09\x76\xdc\xf4\xec\x96\xda\x2b\xe4\x93\x6d\x75\x17\x8b\xc6\x7e\x64\xd2\xf6\x71\xfb\xa0\x46\x38\x81\xc7\xba\xae\x2d\x5f\xa3\x84\xe0\x65\x19\xd3\x38\xac\x31\x49\xb8\x6b\xd6\x77\xe7\xb5\xc6\x4b\xc2\xb4\xc9\x8d\x5a\x46\x4d\x31\xe2\x09\x23\xde\xea\x61\x8d\x61\x62\x80\xbe\x09\xfc\xc9\x05\xad\xea\xde\x14\xfd\x5f\x9e\x67\x90\xea\x0f\xfd\x5f\x6e\xd7\x89\x69\xda\x9b\xeb\x1c\x04\xc5\x17\xc3\x7a\xa3\xf8\x9d\xfd\x06\xeb\x39\x52\x2e\x1f\xb5\x8a\xf8\x24\x00\x9c\xe7\x8d\x9b\x24\x5f\x43\x9f\x3d\xb3\xdd\x3b\xb5\x97\x60\x65\x7b\xcf\xcf\xdc\xd0\x80\xf4\xd6\x92\x27\xf1\xae\xf5\x03\x92\x90\x49\xd7\xf9\xcb\xae\x0a\xc4\x61\x3d\x95\x7a\x15\x0f\x84\x28\xa4\x2d\xfe\xdc\xc4\x3f\x9f\x30\xa9\xce\x3c\xf9\x2d\x30\x88\xc8\xa0\x2a\x84\x13\xf3\xb7\x9f\xb7\x50\x55\xc5\x7d\xf2\xf6\xfe\xa1\xae\x3a\x86\x97\xf6\x0c\xfa\xd8\xad\x1e\x81\x57\xf0\x3a\xb0\xe6\x13\x55\xad\x79\x18\x3f\xee\x26\xd8\xc5\xae\x75\x10\x91\x73\x1e\x6f\x2f\xd5\x6a\x40\x62\x9c\x0e\x51\x7c\xb2\x1a\x67\xb4\xf7\x12\x8e\xdb\x5c\xbb\x59\xaf\x5d\x41\x08\xb1\xc4\xdd\x88\xd3\x1a\x24\x7c\x34\x7d\x7d\x75\x4a\x5b\x87\x48\x67\x3c\x57\x29\xa5\x1d\x4f\x54\x34\x84\xff\xce\x05\x8a\xde\xc9\xea\xcd\xf7\x70\x13\x03\x80\xe0\x37\xde\xd4\x2d\xc4\x75\x1f\x04\xdd\x1b\x02\xd8\x5d\x7c\x00\x56\x8c\x82\xc6\x7b\xa2\x00\x1c\x5e\x88\xf2\x31\x0c\xae\xe7\x27\x79\x46\xa8\x0b\x2f\xbf\x3f\x78\x3e\x36\xdc\x2c\xf9\x1a\x3e\xb8\xfc\xb4\x0e\x52\x53\x05\x49\x87\xab\x5e\xbd\xc6\x31\xa4\x54\xeb\xb9\x53\x1f\x1d\x50\xc4\x4f\x66\x79\x45\xe0\x19\x40\xf4\xd0\xc7\xd7\xeb\xfb\xa9\x13\x9a\x51\x9b\x5f\x0e\x85\x78\x12\x0e\xa9\x0f\xcf\xf1\x46\x4c\xe2\xcd\xd5\x78\xb0\xb7\x82\x0f\xfd\x78\xa2\xc1\x8b\x1d\x0d\xe6\x1a\xdd\xa6\x31\x83\xd3\x0e\xdc\xb0\xe6\x13\xc5\xa9\x15\x82\xd7\xf6\xa6\xe9\x16\x42\x29\xe0\x25\x7c\x38\x1f\x79\xa0\x7c\xf1\xcd\x1e\xf9\x14\x1e\xaa\x31\x0a\xe5\x83\xf4\x3a\x1c\xbc\xe9\xa8\x73\x15\x99\xb3\x67\xba\xde\xaf\xeb\x48\x38\x6a\xdb\x58\xd5\xaf\xf3\x81\x70\xc6\x32\xea\xb2\xab\x4e\x0b\x61\xd0\xac\xb1\x7c\x40\x97\x91\x48\x6d\x7a\x18\xfe\xc3\xc3\xfc\x7b\xff\x5f\xec\x03\xa7\xe6\x96\x0d\xeb\x3e\x08\x86\x23\x3c\x16\x3b\xa4\x01\x6c\x4b\xf9\xdb\x77\xbb\x03\xb8\xa3\x85\xbf\xec\xcf\x06\xf0\xd1\x97\x22\x1e\x55\x06\x08\xac\x54\x76\xe7\x3e\x03\xe0\x77\x49\xf7\xa5\x84\x2c\xbc\xf0\xf2\xb2\x9c\xd3\x30\x23\x4d\xb9\xd4\xb9\x4f\x5b\x38\xad\xe5\xec\x85\x59\x9a\x16\x04\xf8\x59\x11\x2e\x1a\x9d\xad\x8f\x0a\x2b\x42\x70\x3a\xcc\xfd\xfa\xd1\xfa\x88\x94\x46\xc5\x52\x6a\xfc\x9e\x79\x6f\x0d\x0d\xcc\x9b\x48\xf1\x2f\x95\x5a\xec\x58\xf7\xb0\x0f\xef\x3a\x50\xdb\xb1\xb9\x61\x57\x9f\x57\xe8\xe4\x61\x3f\x85\x7a\x3c\x49\xd7\xe5\xc0\x05\x07\x4e\xb5\x0f\xe9\x46\xe3\xf7\xfa\x0e\xb5\x58\xe9\x75\xe3\x35\x7c\x1e\x35\x18\xea\x99\xe2\x71\xee\xd1\xb5\x4f\xf4\x2b\x11\x61\xb7\x6d\xff\x17\x07\x54\x26\xa5\x7f\x95\x90\x6b\x89\xbe\xc0\x62\xc0\x42\xe8\x31\x9f\xfb\xef\x7e\xa0\xe8\xff\x9c\xbf\x39\xab\x36\x97\x01\x48\x1b\x1c\xef\xa1\xf9\xb9\xee\x83\x40\xe1\x20\x5c\x46\x78\x55\xe8\xf0\x00\x7e\x9a\x27\xdc\x18\xf6\x02\x04\x21\xa2\x17\x0e\xcf\x01\x44\xc8\xc9\xef\xe5\x20\x02\x44\xe8\x69\x25\x8a\x9f\x81\x6f\x21\xc5\x26\x25\xea\xb2\xa4\x7e\x8f\x39\x97\x27\x56\x34\xc4\x21\x67\x89\x28\x75\x4f\x45\xe2\x56\x9b\xc3\x79\x2f\x82\x79\x90\x29\x93\xcc\xfa\x47\x31\x0a\x78\xd0\xcd\x7f\xc7\x92\xe8\x8e\xaf\xd5\x4c\x43\x3f\x48\x32\x1e\x37\x44\x45\x2e\x05\x27\xe8\xbc\x9b\xd0\xbd\xb3\x34\x13\x7f\xeb\x39\x4e\xaf\x14\xd3\x78\xf2\x4d\x97\x8e\x3e\x1a\x2b\x1d\xa5\x7a\x8f\x64\xb8\x15\xfb\x31\xac\xa9\x09\x6b\x28\x81\x0b\x09\xde\x78\xbb\xd5\xf0\x3c\x7e\x9f\xdf\x60\xcd\x66\x63\x07\xbc\x8c\x1f\xe7\x55\x55\x63\x79\x7c\xb3\x57\xe2\x65\x66\xa3\x34\xc4\xd9\x95\xa1\x7c\xd8\x28\x13\x69\x74\x72\xbc\x90\x63\xa2\x81\x3c\x72\x52\x3a\x7f\xc5\xe8\x18\xc1\xde\x06\x75\xee\x8e\xd1\x09\xc2\x4d\x4b\x85\x3f\xfb\xc0\xb3\x72\xaf\xfb\xe8\x0d\x8e\x88\x0d\xcf\x96\xdf\x9b\xd8\xd2\x37\x3d\x06\x50\xbc\xce\xec\xbc\xa9\x07\xc0\x80\x8a\x59\x68\xf3\xe7\x75\x0e\xc2\x6b\x98\x3d\x7e\x07\x0d\x40\xc8\x28\xf7\xf8\x9e\x46\x80\x93\xcc\x42\xd4\x87\xee\x02\xc4\x57\x4a\x7e\x60\xab\x01\x88\x1f\x51\x3b\x2a\x7a\x12\xe6\xe3\x1c\xf4\x67\xd4\x9e\x92\x06\x43\x76\xd9\x87\x58\xdd\x5d\xcb\x55\xe3\xb5\x1f\xcf\xe5\x88\x7e\x81\x9f\x34\xf7\xb8\x33\x96\xdc\x8a\x7b\xab\x57\x35\x7c\x2f\xb3\x73\x7a\x8f\x4e\xdc\x22\x73\xb6\xd9\xe0\x33\xfd\x51\xb4\x42\x7a\xe1\xd3\x7e\x23\x2c\xfa\x76\x9a\xeb\x63\x5a\xe3\xd6\xa5\xaa\xc4\xcf\xad\x1c\x26\xb3\x18\xf3\xf8\xb8\xb5\x7c\xb0\x33\x66\x72\xd8\x7b\x11\xb5\x57\x19\xcd\xb7\xe3\xac\x42\xbe\x56\xa0\xcc\x23\x71\x23\x81\x99\x65\x61\xe6\x99\x78\x33\x3f\x96\x0b\x7e\xe6\x91\xf8\x61\x2f\xc1\xa2\xad\xe6\xbb\x10\x45\xb7\xe9\xfc\x0c\xb3\x3a\xa4\xc5\xe9\x63\x0e\xda\x82\x0e\x79\xe7\x44\x73\xba\xc9\x8c\x48\x10\xb7\xf3\x5d\x7f\x0e\x36\x88\x1d\x5f\xf1\x5b\x64\xe3\x39\x36\xb0\xb1\x17\x40\x2c\xe9\xa8\xd3\xc6\x82\x75\xfd\xdf\x3a\x93\x11\xd9\x54\x02\xe0\x7e\x61\x93\xc3\x8a\xde\x51\xce\x7c\x7a\x9b\x0a\x40\xdc\x5d\xd6\xf8\x1d\x87\x01\x52\xe2\xf9\x77\x1f\xc0\x01\x64\x5d\x10\xa1\x67\xe1\x03\xc8\xca\x51\x10\x11\xfc\xb2\xe6\x13\xf3\x34\x9e\xdd\xaa\xd4\x46\x98\xd0\xe6\xef\xe6\x9b\x15\x6a\x85\x08\xb8\x32\x64\x8b\x24\x79\x63\x3e\x59\xb5\xdf\x71\xca\x51\x9f\xe1\x34\x36\x1d\xde\x5f\xb8\x71\x64\x9b\x31\xfb\xdc\x70\x91\x5b\xf7\x31\xf3\x83\x0b\x96\x79\x25\x6d\xa3\x96\x7c\x8b\xe1\x39\x56\xf5\xb1\x56\xed\x68\xfd\xcc\xc1\x9a\x40\xeb\xee\x25\xd7\x94\xfb\x57\x89\xd6\xb5\x18\xe6\x84\x99\x4b\x36\x36\xb6\xd8\x0d\xb1\xfb\x4a\xcf\xda\xa8\x61\x6f\x47\x4e\xaf\xe5\x41\xe9\xda\x94\xe0\xf0\x81\x2e\x67\x19\x6c\xca\xf0\xde\x7e\xdc\xa7\xf9\x6c\x9a\xf0\x9d\xde\x31\x99\xfe\x36\xec\x88\x8a\xbb\x67\x5a\x98\x8d\x21\x72\xda\xe5\x57\xca\x39\xeb\xbd\x84\x5d\x0e\xa8\x95\xe7\xa0\x6e\x79\x5d\xb4\x0e\x47\x57\x7c\x06\x39\x75\x8e\xd2\x6f\xa8\x5a\xd7\xff\xf5\xed\xb6\x9d\xa7\xfa\xc3\x07\x81\xa2\xfb\x51\xee\x3f\x67\xb8\x6c\xf0\x5b\xae\xb9\x25\xac\x45\xcb\xf3\xf3\x3c\x0b\x3f\x1b\x63\x37\x40\xf1\x13\x49\x12\x3f\x35\x40\x61\xa8\xfa\x4e\x65\x4b\xd2\xbb\x33\xf3\xc6\x6d\xd6\x4d\x04\xe7\xb8\x03\xee\x4c\x91\x61\x3f\x33\xfd\x7f\x9d\xaa\xcb\xa6\xfd\x68\xe0\x6e\x56\x39\x5f\x98\xf2\x7a\xdc\x81\xa5\x4f\xa3\x3c\xb9\xab\xce\xc6\xe5\x77\x44\x45\x70\x83\xa4\x7d\xf7\x5c\x77\x31\xe7\xf5\xdd\x8e\x1d\x0b\x6c\x05\x32\x15\xef\x9d\x2e\x2d\xfa\x9d\xf9\x5d\x3a\xee\x1c\x82\xe6\xcc\xee\x2e\xa4\x71\x6e\x5f\xca\x4a\xc1\xe5\x7e\x74\x39\x82\x91\x4f\xd4\x3a\x93\xe9\x1c\x82\x21\xc4\x92\x32\xad\x5d\x54\xb0\x25\xd1\x8a\xe9\x74\x4e\xe3\xb8\x53\xa1\xda\xa9\x67\x1d\xaf\xe3\xd9\x02\x6a\x13\x6f\x38\xfe\xc0\x97\xfa\x32\xc4\xa7\x3b\xd5\xe2\x5f\x79\xa7\xc4\xef\x70\xf8\x86\x58\xbb\xcd\xc5\x78\x3a\x1a\x23\x39\xae\xfc\xcb\x7d\xe0\x58\xf1\x53\x63\xcc\x66\xba\x49\xed\x06\x20\x48\x4b\xf7\x7a\xf9\xbf\x15\x77\x6f\x5e\x79\xcf\xb6\x10\x59\x5d\x2f\x45\xef\x89\xca\x5b\xad\x99\xe4\x9c\x03\xca\xfd\xd7\x0a\xd2\xc6\xe4\xe5\x5a\x9d\xc2\xbe\x99\x9e\x15\xe0\x46\xa1\xd0\x6f\x8e\x3c\x80\x9a\x6e\x79\x07\xd9\x71\xd2\x50\x65\xae\x2e\xb3\xb5\xe6\xe4\xa3\xfc\xcb\x76\xf3\x11\x54\xfd\x05\x89\x0c\xa1\xa2\x67\x72\x1f\x1f\x8a\x10\x3c\x77\xaf\xec\x40\x83\x7f\xc0\x9b\xfb\x70\x65\xb8\x9a\xd6\xab\x7f\xca\xaa\x46\xb2\xd8\xcc\x67\xfe\xf7\xf0\x65\xce\xfc\xab\xbe\xb4\x73\xe3\x25\x0c\xd9\x8a\x7e\xd3\xf3\xbf\x8b\x84\x33\x34\x7d\x5b\x17\x83\xcf\x3e\x4e\x7e\xe1\x8b\x42\xbf\xc9\x34\x4a\xfc\xe1\xd3\xb3\x94\x94\xfa\xe8\x94\x9a\xf7\x37\x4c\x4c\x82\x4b\xcc\x6b\x1f\x19\xec\xee\xb8\x8d\xd1\xa7\xbc\x59\xb0\xbf\x22\xf3\x22\xdd\xbc\x5e\xe0\xdc\xc3\x74\x22\x25\x3d\x22\xf0\x7c\x01\xb7\xc3\xb2\x3c\xf9\xf1\x76\xfe\xa2\xa1\x1a\xee\x5b\x91\x63\x1e\x10\x24\xe6\xe1\x8a\x08\x7a\x24\x2e\xf7\xe1\xb0\xe1\xf2\xe7\x67\xb6\xdd\x7b\x67\xb9\x8a\x73\x6d\x38\xb4\x5c\x75\x2c\x57\xd7\xe7\x74\x73\xb5\x86\x91\xef\xf7\x53\xf4\x5f\xca\xfa\x2f\x5f\x5b\xad\xb7\xf2\x57\xf9\x87\x96\xec\x23\xc5\xdb\x47\x00\x1e\xb2\x71\xa1\x19\x5f\x01\x3c\xea\x92\x98\x10\x1f\x9d\xd6\x6e\xfa\xaa\x3e\x6c\x56\x3c\xe8\x75\xbd\xd5\x82\x37\x38\xe2\x61\x60\x29\x87\xcf\xcb\xac\xcd\x55\x8d\xd9\x9d\xa9\x0a\x17\xb3\xf2\x67\x92\x97\x6e\x6e\xab\x3e\x9d\xaa\x15\xef\xf5\x61\xe7\x4d\x8e\x78\xf7\x58\xae\x19\x9f\x6b\xba\x27\xe7\x62\x76\xcc\xce\x5c\xa4\x8f\x3e\x1d\xcd\x35\xaf\x5b\xbc\x21\xe2\x6c\xf4\xc1\x85\x9f\xf9\x2e\x11\xbb\x22\x8e\x2d\xce\xe5\x3c\x09\x1b\x0b\x3d\xbf\x74\x28\x83\x91\xc2\x7d\x04\x33\x07\x03\x06\x1b\x57\x17\x38\x14\xcc\x8e\x2d\x8c\x7e\x16\x90\x1d\x98\x87\xd3\x0d\xa7\x0b\xb8\xe8\xf7\x1e\xd7\x1a\xb2\xc9\xbf\xd1\xb7\x0b\xcf\x13\xd0\xe5\xa7\xe8\x73\x01\xdf\xe6\x63\xe2\xed\xed\xfb\x18\xd1\x74\x6f\x02\xd8\xf6\x73\xff\xca\xfb\x34\xb7\xe5\x96\x0f\x54\x7f\xe8\xff\xd6\x8d\xe4\x7d\x40\xbe\xf7\xfe\x6f\x3e\x0e\x45\xf7\xa0\xe8\xe0\x0f\xf9\x57\xeb\xf3\xc2\xcd\x3b\x97\xeb\xc0\xcf\x63\xb9\xf4\x02\xf3\xf7\xfa\xef\x08\x5b\x0a\x32\x7f\xac\xeb\x8d\x54\x8a\xd1\x9b\xe8\x7e\xf8\x30\xc5\x10\xef\xbd\xa3\xee\xca\x5d\x56\x37\xf1\x24\x91\xbc\x98\xeb\x07\xe2\x5a\xcf\x67\xc7\x8f\x56\xbe\xb8\x7a\xbf\xe2\x6e\xc8\xb9\x4b\xc1\x83\x3a\x55\x2f\xfd\x0f\x97\x30\xcc\x6a\x5c\x7a\xee\xfb\xba\x88\x61\x9e\xb7\x98\xd6\x57\x3f\xf7\xd7\x42\x67\x7e\x9d\x0f\xcf\x99\xc3\xe8\xad\x39\xb4\xde\x49\x59\x99\x4b\xcc\xe9\xf7\x7c\x36\xa5\xfa\x2e\x2d\x24\xfb\xfd\x27\xef\x65\xec\x14\x2d\x76\x2e\x32\xe2\x5f\xee\xc3\x8d\x39\xba\x12\xff\xd5\x5b\xd8\xd5\x34\x12\x85\xd8\xb9\xef\x77\x25\x85\xef\x45\xc2\xdd\xa4\x00\x0e\xf1\xd0\xbb\x2d\x7f\x6e\x51\xb2\x8e\x45\xf1\x81\xa0\xec\x83\xf8\xd8\xd5\x4a\xd1\xbd\x28\x7e\x18\x94\x5c\x10\x8a\xfe\xf3\x9a\xac\x87\x7e\x19\xa1\xb2\xa1\xa2\x5a\x52\xfd\x41\x7f\x44\x68\x7b\xe2\x58\xcd\x58\x09\xff\x71\x4e\x93\x97\x53\x1f\x77\xcb\x5e\x50\xed\x68\xa9\x1f\xd8\xa4\xcb\xe1\xf0\xec\x62\x5c\x5f\xb6\xc3\x70\xe4\x7c\x12\x6d\x27\x43\x64\x51\xce\x78\xd0\xdc\xa3\xa8\xcb\x1b\x0a\x6b\xdd\x2c\xdb\x55\xfa\xf7\x97\xc8\x3a\xa4\xb6\x8a\xcd\x8b\x9f\x3f\xe5\xa8\x74\xab\x66\xe1\x7d\x9e\xa0\x43\x4d\x8d\x15\x5a\x2d\x6b\xd4\x21\xe3\x4a\xf8\x52\x48\x2a\x8b\xe3\xb9\x32\x34\x86\x35\xb1\xd1\x81\x54\x7c\x08\x4b\x1b\x1b\xe7\x50\x5e\x18\x85\xed\x88\xda\xef\xa8\x96\xbb\x80\x13\x09\x37\x76\xa8\xcb\xf1\xc4\x7d\x0f\x0a\xb3\x1f\xce\x4e\xc4\x7b\xf8\x5d\xb7\x67\xcd\xf0\xc2\x13\xbd\x76\x38\x50\xa7\x8c\x22\xdc\x1e\x0d\xf6\xaa\x49\x35\x48\xa1\x0b\xde\xee\x7b\xc2\x75\xe4\x8b\x93\x11\x00\x57\xf5\x86\x15\x3f\x13\xc5\xb6\xd5\x75\xd8\xd7\x53\xfd\xc5\x81\x50\x7c\x10\x2e\xee\xfe\x7b\xfd\x5d\xee\x54\x7f\xe9\xe0\x3f\xd8\x96\x2b\xda\x7d\x5e\x62\xe5\xf7\x6f\x73\xac\xeb\x41\x05\x2a\xaa\x77\x4b\x68\x69\xce\x8a\x23\x89\x1d\x27\x7e\xeb\x48\x3a\x49\x59\xd5\xee\x9c\x20\x69\xa9\x99\xbc\xca\xd7\xf9\x52\x6a\x73\xde\xf7\x79\xf8\xec\x48\x47\xc8\xfb\xc4\x7e\x0f\xd1\xe1\x85\xf2\xc2\xcc\x3d\xd6\x2d\x43\x35\x2f\xd9\x72\x6e\x98\xba\xbf\xed\x5b\x8c\x38\xad\x66\xfa\xe3\xe9\x43\xf4\x62\x6a\x83\x59\xef\x43\x64\xe9\x55\xe2\x45\x73\xfe\x96\x1e\xcc\xad\x38\x5a\x73\xc1\x3b\xa1\xd8\xfa\xc8\xe3\x16\xb2\x35\x93\xb8\x63\x61\x65\x16\xef\xaa\x6c\x70\x25\xc1\x39\x16\xfd\x15\x4e\xf8\xc3\x01\xdc\x96\x7c\x65\x6f\xf1\xee\x7e\x1b\x2c\x36\x5e\x40\x23\x7c\xee\x9f\xff\x1f\x61\xef\x19\xd5\xd4\xf6\x7d\x7f\x47\xb1\xa0\x34\x05\x54\x14\xe9\xbd\x07\x08\x25\x40\x12\x7a\xef\xbd\x37\x41\x44\x05\xa4\x08\x36\x54\x44\xc5\x8e\x22\x2a\xa0\x62\xb9\xf6\x06\x36\x2c\xa8\x08\x88\x05\x04\x1b\x28\x0a\x36\x2c\x08\x56\x44\x69\x49\xce\x7c\x06\x21\x07\x2f\x7e\xef\xef\xf9\xbf\x9a\x83\x3b\xee\x70\x64\xad\xec\xbd\x4f\x92\xf9\xd9\x73\x05\x4e\x2d\x98\xcc\x4e\x8e\x3d\x1c\xd0\xb7\xc3\x83\x7d\x7d\x96\x44\xa0\xca\x36\x0a\x67\x5a\xc4\x97\x00\xff\xdc\xbd\x9c\x98\x50\xce\x9f\x75\x30\xcc\x81\xf0\xeb\x26\xfd\xef\xbd\x4f\xf8\xfb\x3f\x7c\x64\xfd\xcd\xfc\x5c\x9c\x4e\x1e\x47\xd2\x73\xbe\x7f\xc7\xa0\xb6\xf3\x39\x90\xa7\xe9\x80\x60\x07\x85\x72\x77\x15\xa0\xd8\x2b\x71\xa6\xec\x12\x6e\xd2\xce\xe9\xc4\x1e\xcc\xe7\xbc\xb3\x5b\x6d\xff\x62\xc3\x92\x5e\xf1\xc0\xa6\x88\x96\xa4\x5b\xdd\xf1\xc9\xac\xb4\xd7\x91\x8b\x7f\xf6\xef\x16\x5b\x96\xeb\x73\xa5\xbb\xa0\xee\x7b\x56\xb9\x9b\xcc\xf7\xc8\x9e\x82\xac\x32\xb7\xae\xd7\xb1\xbd\x35\xcb\x04\xdd\x6d\x9a\x06\xfa\x76\x65\xac\xf2\xf0\xbc\x3f\xbb\x7f\x4a\xda\x3b\x8f\x17\xb7\x7a\xfa\x8b\x93\xff\xf1\x14\xb8\xb1\x78\xc0\x30\xa1\xcc\x73\xff\x65\x99\x81\x5d\xf3\x26\x79\x9e\x3b\xb7\x91\x3d\x25\xce\xdf\xf3\xf7\xa9\x77\xec\x95\x31\x13\x3c\xbb\x8e\xfb\xb3\x1b\xa2\x32\x3c\xcb\x0e\xe7\x72\x34\xc3\xcd\xbc\x54\x0e\x04\x71\xa2\x42\x9d\xbd\xa6\x16\xc7\x72\xf6\x04\x8b\x7a\x4d\xd8\xed\xcd\x79\x16\x70\x0b\xb0\xad\x1c\xaa\x67\xf6\xac\x21\xcd\xe2\xf7\xa5\x70\xf6\x90\x96\x48\x8e\x5c\xff\x64\xfd\x43\x1c\xc4\x00\x3f\xc7\xfa\x63\xf0\x90\x36\xf2\xef\x75\x57\x6d\x19\xba\xc7\x5a\xf6\x02\x50\x14\x9c\x7c\xe6\xc8\x33\xc0\x80\xa6\x92\x92\xbf\x04\xca\x36\xcd\xe6\x8d\x2b\x5e\x71\x1f\xf8\x07\x7b\xd9\xc4\x47\x73\xa8\x09\x73\x66\x5d\x0c\x4d\x60\x27\x6d\x73\x9b\x5b\xe0\x55\x38\xb0\xf7\xca\xf7\xa4\xad\xce\xc1\x03\xc2\x6d\xed\xc9\xf1\x0e\xc1\x03\x4e\xfd\xf9\x89\xf1\x0e\x77\xbf\x4c\x1a\x98\x3a\x6f\x9d\xa3\x41\xdb\xac\x81\xc5\xf1\x54\xc7\x07\xcd\x71\x03\x2d\xb3\x6f\x3a\x46\x3e\xac\x64\x67\x45\x9d\x75\x5a\x74\x77\x21\xfb\x64\xe4\x35\xa7\x65\x55\xce\x1c\xb1\xb0\x74\x67\xca\xf5\xf1\x1c\x56\x48\x9f\xb3\xf3\xa5\xd1\x9c\x4d\x41\x9e\x4e\xb5\xe7\xcf\x71\x5a\xfd\xb5\x9c\x9f\x95\xc8\x72\xde\xfb\xcf\x74\xbe\x79\x22\x84\xab\xe7\x33\xd5\xd9\xf2\xe8\x7e\x6e\xa2\x67\x00\x10\xc2\x7f\x9f\x17\xf1\xd7\xc1\xb6\xae\x21\x3d\xc1\xff\xbc\x40\xce\xc3\x78\xba\xe1\xbf\xea\xff\xd0\x39\xd2\xff\xb9\x65\xcc\xf7\xbf\xf8\x79\x08\x87\x36\x00\x93\x22\x29\x94\xc2\x01\x40\x5f\x42\xbe\x61\x5d\x18\xf2\xac\xa3\x0c\x13\x17\x9e\x27\x4e\xfa\x74\xdb\xb6\xc4\x18\x73\x13\xe2\xbf\xf9\xcb\x05\x36\x71\xa5\x72\x5a\x83\x6d\x3d\x9e\x71\x36\x1d\x37\x08\xef\x73\xec\xe7\x98\xd6\x8a\x45\xc6\xd9\x49\xb0\xfb\x3b\x6a\xa2\xc4\x6c\x0c\x38\xb6\xec\xd2\xb0\xab\xd6\xf3\xfa\xe6\x70\x24\x83\xbd\xac\x2f\x7e\xf6\xe2\xd8\x06\x4d\xb6\x49\x79\xd3\xc0\x09\x09\x3c\x6f\xb3\xfe\xf9\x0c\x4e\xb1\xff\x62\x1b\xd7\x47\x07\x39\xfd\x3e\xb2\x36\x07\xef\x8b\x73\xa5\xbd\xbe\xd9\x7c\xbf\xed\xce\xb5\xf3\x8c\xb3\x79\x7b\xf3\x08\x37\xdb\xed\x8d\xcd\xcf\xf2\x8b\xdc\xb3\x2e\xed\xb6\x9b\x2f\xdd\xe1\x5e\x73\xc9\xb7\xe9\x39\x5f\xc9\x85\xe3\xec\x3f\x9f\x8b\xc8\x1c\x08\xf2\x39\x40\xe6\x20\x34\x96\xfe\xbb\x7e\x72\x1e\xc8\xf0\x3c\x0c\xca\x90\xd6\x6c\x1d\xe9\x7f\x1d\xe2\xe7\xa4\x14\x51\x80\x99\x8f\x26\x1c\xdf\xd4\x06\xe8\xad\x97\x6e\xcf\x1c\x05\x30\x9e\xab\x5b\x26\xe6\x43\xc1\x8b\xb0\x38\x4b\xf2\x0f\x7e\xeb\x08\xd1\x2c\x33\xf7\x08\xb7\xfb\xdc\x1b\x7b\xca\xbd\x1e\x3b\x0a\x70\xb3\xca\x36\xf9\x6c\xb1\x9d\xcd\x75\xa9\xdf\xe4\xfb\xd8\xca\x89\xeb\xf7\x51\xde\x27\xc8\x72\x32\x37\x91\xf3\xcd\xeb\x03\x33\x9a\xfb\x9b\xbb\xdc\xa5\x9d\x71\xf2\x77\x3b\xf7\x9c\x53\x31\x73\x71\xe7\x55\xee\x36\x17\x67\xe6\xf3\x36\x2f\xee\x1e\x97\x49\x0c\x99\x96\x9d\x84\x8c\xed\x77\x06\xb7\xc9\x94\x98\x64\xf7\x94\x91\xfe\x50\x84\xb0\xb3\x31\x62\x54\xdd\x23\x88\x10\x6b\x47\x66\x6a\xcd\x35\x22\xc0\xfa\x10\xf3\xc0\xcd\x06\x62\x81\xd5\x22\x20\xab\x61\xe4\x39\x70\x99\x9f\x97\x34\x9c\x87\xc2\xf3\x3f\x39\x7c\xdf\x9a\xcc\x01\xf8\xbf\xee\xc1\x1f\xe1\xef\x8b\x9d\xb3\x86\x74\xcd\x4c\x60\x94\x2e\x85\x92\x35\x19\xd0\x3a\x31\x65\x5e\xea\x47\x80\x45\x55\xf5\x8d\xed\xc6\x09\x37\x5f\xea\x67\x92\x7f\xf0\x5e\x42\x3c\x58\x54\x6f\xdd\xe5\x12\x4c\x14\x6f\x0b\xb5\xab\x23\xb9\x07\xeb\x17\x84\x6d\xb9\xbd\x93\x13\xeb\x3d\xc1\x6c\x18\xef\xf8\x92\x91\x46\x78\xbd\xa3\x3b\xb8\x58\x34\x10\xd1\xdc\x89\xf6\x07\x86\x73\x1e\x76\x40\x81\xa8\xb4\x48\x32\x8d\xfc\x6d\x4f\x7c\xa0\x73\x4d\x5f\x7d\x66\x13\x77\xcc\x33\xe9\xd3\xdf\x1b\x10\xd5\xe6\xe7\xe9\xcf\x5a\xef\x11\x67\x2d\x6e\x99\xfe\x78\xf6\x83\x78\x4b\xff\x4a\x37\x7b\xac\x49\xb4\xd3\x8f\x99\x06\xd7\x97\x43\xdc\xf8\xfb\x1f\x1e\x8c\x7c\x0e\x90\xf3\x40\x86\x38\x18\x92\x83\xfa\x74\x7f\x64\xfd\x77\xf9\xf3\x81\x2e\x95\x8c\xf4\xff\x8a\xf8\x9c\x04\x39\x0f\x84\xcc\x81\x58\xb8\x12\x50\x5b\x2f\x76\x7f\x9e\x38\x60\x36\x55\xa6\x26\x32\x15\x2d\x2e\x1e\x5a\x1b\xfd\xc6\x60\x5d\x48\x94\xe1\x16\xf7\x7c\x04\xa6\x6c\x31\xfd\xea\xf8\x10\xcc\xb5\x2c\x73\x49\x3b\x61\x8c\x2a\x7a\xca\x9a\x60\x59\x86\x71\x27\x83\x98\xe2\xcc\x75\xc4\xa7\x72\x61\x56\x8a\x85\x11\xd1\x51\x7b\x89\xf9\x73\x38\xe7\x61\x2d\x26\x74\x7f\x67\x18\x0c\xcf\xb5\xc8\xc3\x09\xf8\x1b\xfe\x1c\xce\x77\xa8\xeb\xb5\x41\x95\x56\x8f\xc1\xbb\xef\xd3\x70\x42\xfb\xb7\x61\xd2\xa7\x73\xd8\xa6\x9b\x62\xd0\xf8\x26\x09\x7b\x75\x14\x0c\xda\x5e\x34\x60\x8f\xce\xb8\x3f\xe7\xc0\x9d\xef\xfc\xe7\x3f\x7f\x9e\x1a\x78\x3c\x54\x27\xdf\xd7\x23\x39\xa8\x61\xff\x8f\xcf\x01\x91\x1c\x0c\xe9\x7f\x0e\xcf\x03\xb1\x01\x28\x21\x14\x4a\xe2\x60\xdf\x4e\x53\x28\xf3\x37\x02\xca\xd7\x85\xa3\x62\x2f\x03\x74\x75\x69\xcb\xe0\x7c\xc0\xe1\x8d\x8a\x28\xc9\x3f\xb8\x34\xe2\xfc\xdc\x64\xea\x71\xfb\x7a\x14\x2f\xbb\x6e\xa8\x66\x13\x88\xd4\xdc\x1c\xe3\x4a\xd6\x25\x2c\xd8\x9b\x6e\xfc\x8f\xc5\x39\x2c\x3c\x5e\x61\xf4\xca\xec\x2e\x42\xae\x8a\x9b\x44\x99\x1e\x46\xe4\xbd\x14\xe3\xbb\xa6\x22\x70\x78\xe9\x68\xba\xd9\x44\x18\x71\x9f\x43\x8d\x9b\xff\x5f\xbc\x83\x8e\x69\xbf\x12\x20\xaf\xa3\x3b\xf9\x67\x30\xa0\x58\xa6\xc7\xe8\x18\x00\x54\x2e\x01\x95\xfc\xbc\x20\x72\x3e\x1c\x87\xf7\x3c\xf8\xc6\xcf\x41\x20\xfd\xcf\xff\xc9\x01\xe0\xcf\x85\x21\x39\x98\xad\x7c\x9f\x9b\x9c\x07\x42\xce\x41\x20\x7d\xdf\x59\xb7\x00\x85\xd9\x13\xc6\x87\x9c\x05\x0c\x8a\x24\x02\x7d\x6b\x00\x9b\x74\xd9\x8d\xae\x7d\x80\x8f\x90\xaa\xb6\xa3\x09\xd8\xd1\xc6\xea\xe1\x76\xe3\xf1\x30\x63\xb3\xae\x93\x25\x13\xad\xd9\x8f\x75\x64\x19\x0b\x71\x67\xbb\x91\x9e\x88\x05\x0b\x17\xf7\xb4\x50\x0f\x9a\x76\xa3\xe6\xd8\x18\xdd\x26\x93\x7b\x38\x76\x59\x53\x5f\xdb\x38\x1b\xfb\x6b\x2e\xeb\x97\x19\x55\xa2\xa0\x29\xda\x60\x0b\x6d\x32\x2a\xdf\x6d\xd6\x6b\xa6\xfd\x40\x6d\xef\x2f\xea\x5b\xc3\x30\x00\x8f\xb4\x5e\x0e\xf7\x61\xc1\xa0\xca\x99\xab\xbf\x19\xd4\x69\x34\xf5\x0b\x9c\x5e\x60\xda\x71\xa0\xd9\x99\xf2\x2f\x0e\xe6\x3b\xff\x9c\x1b\xe6\x80\xf8\x7c\xdc\xdf\x1c\xd0\x41\xfe\xf3\x21\x7f\xf9\x48\xff\x97\xf4\xbf\xc9\x1c\x88\x10\x7e\x6e\x4a\x88\x06\x30\x33\x71\xcc\x67\xaf\x13\x80\x96\xbb\xf0\x45\xcf\x14\xc0\x2a\x53\xda\xdf\x31\x1b\x70\xcb\x97\xbb\xe4\xa0\x0b\x44\x68\xa9\x74\x5a\x37\x01\x89\xc1\x6a\xc5\x96\x42\xe8\x5d\xd6\xae\x29\x6d\x31\x0a\x58\xfb\x4d\xbd\xc8\xec\x08\xba\xb7\xd5\x68\xa6\x9a\x6a\xe1\xf7\x1e\x5b\x4d\x35\xe3\x60\x7c\x3d\xf6\x48\xf3\x39\x6d\x0d\xbe\x5d\x58\xa0\x59\x6c\x68\x81\xaf\x95\xe3\x35\xef\xeb\x9f\x00\xa7\xfe\x97\x46\x89\xc1\x74\xfc\x78\xb5\x59\xab\xc0\x40\x18\xf8\x12\xae\xe5\x64\x10\x0c\x70\x72\x35\x15\xff\xee\x87\xda\xa9\x41\x9d\xe2\x46\x72\x30\xc3\x79\x40\xfc\xfd\xff\x37\x07\x54\xca\x7f\x5f\x0f\xf2\x79\x80\x1d\x0d\x23\xcf\x81\xbf\xe7\x81\x90\xeb\xc0\x87\xcf\x55\xd8\x2d\x05\x28\xdf\x28\x14\x0f\x11\x40\xf3\x9c\x50\xb7\xa3\x20\x60\xf2\x5e\x5c\xc7\x56\x18\x70\x70\x9b\xde\x62\x59\x0f\x04\x4e\x90\x51\x62\x14\x00\xb1\x8a\xb2\x37\x18\x1f\x81\x34\x6d\x65\x3b\x73\x65\x20\x33\x56\xd9\x99\xf4\xf9\x8d\x5b\x80\xad\xa7\x95\x7b\x8c\x6c\x80\x3d\x89\xaa\x02\x86\x3f\x80\xa3\x33\x54\xaf\x1a\x7c\x04\xce\xd6\xa9\xa5\xe8\x07\x03\xe5\xc1\xaa\xa5\xfa\xa2\xc0\x3d\x7d\xf5\x29\xd4\x38\xe0\x99\x94\xfa\x58\xea\x14\xe0\xdd\x05\xb5\x02\xbd\x58\xe0\x6b\x95\xca\x75\x3d\x23\x80\xdb\xa0\x64\xa8\x9d\xcc\xe3\x82\x42\xfb\x59\x43\xaf\x93\xe4\x80\x1e\x38\x0d\xe9\x30\x07\xc4\xe7\x02\x0f\xf3\x79\x80\xbf\x39\x98\x95\x1e\x23\xf7\x01\xc9\x81\x0c\xfb\xff\xfc\xf3\x82\x55\xca\xef\x07\x1b\x50\x7e\x33\xfe\x2e\x6b\x0b\xa0\x6f\x2b\x7c\xcd\xbc\x19\x60\x16\x4f\x26\xcc\x8c\x00\x8f\xa8\x29\xf1\xf4\x1d\x40\xe8\x3d\xa9\x13\x83\x7f\xcf\xfb\x2c\x73\xce\x24\x08\x58\x98\x27\x73\xd5\xd8\x14\x58\xd6\x22\x5b\x44\x7b\x05\xac\xb9\x21\xb7\x86\x56\x04\xe4\x3e\x56\x78\x61\xf8\x05\xd8\x2d\xa0\xf4\x40\x5f\x0f\xf8\xe7\xad\xe2\x14\xdd\x7a\xe0\xd4\x3d\xf9\x44\xdd\x4f\x40\x99\xb1\xa2\x24\xc9\x3b\xe8\x1c\x03\xee\x47\x2b\x6e\xd5\x8d\x05\x9e\x4f\x52\x9e\xaf\x93\x0b\xbc\x9b\xa9\xd8\xaa\x33\x0d\xe8\xf2\x93\xef\xf9\xc0\x9f\x0f\xf7\x64\x2c\xff\x73\x20\x7f\x0e\xd6\x79\x7e\x1f\x8e\xf0\xf3\xc1\xc8\x5c\x2c\xf2\x1c\x5c\x7d\x7c\xe4\xf3\x80\xe4\xa1\xa2\xf8\x9f\x2b\x7c\x2c\x87\xd4\x3e\x7c\x48\xe9\x7c\x5e\x88\x95\x00\xc8\xa5\x8c\xb9\x38\xcc\x3f\x38\x02\xf4\x14\xd1\x57\x46\xb3\x00\xfb\x85\x93\x8c\x0c\x68\x80\xcf\xf4\x49\x30\x9c\x06\x44\xa8\x48\xb2\x0c\x55\x81\xb9\xf1\x53\x3f\x1b\x5a\x02\xa9\x1e\xd3\xd5\xf4\xcd\x80\xa5\x82\xd3\x45\xf5\x4f\x03\x6b\x98\xd2\x2f\x75\x75\x81\x8d\x89\xd3\x53\xf4\xc4\x81\x1d\x6f\x67\xae\xd3\x11\x00\x8a\x97\x48\x1f\xd1\xaa\x05\x8e\x46\x49\x6f\x1e\xe6\x1d\x14\x80\xcb\xbf\x67\xfe\xd0\x7c\x0c\xd4\xc4\xc8\x14\x69\x49\x01\xf5\x87\x65\x57\x68\xb2\x80\x67\x5a\x32\xd1\x4f\x97\x0d\xbd\xbe\xbf\x39\xa0\xe3\xfc\xcf\x83\x45\x37\x31\x92\x83\xe1\xeb\x52\xfb\x21\x25\xf3\x50\x48\x0e\x24\x48\x7c\xe4\x3a\xb0\x5e\x3f\xa4\xc6\xb4\x21\x0e\x84\x1a\x0c\x08\xb7\x51\x28\x86\xc6\x80\xca\xce\x71\x92\x86\x5e\x00\xcd\x45\x68\xbd\xe1\x24\xc0\x7a\x9e\xe8\x74\xdd\x49\x80\x8b\x92\x88\x90\xae\x0f\x10\x20\x2d\xe6\xad\x2d\x0a\x84\x9f\x10\xd3\xd3\x09\x07\xe2\x66\x4f\x2e\xd1\xc9\x01\x16\x98\x4b\x2c\xd3\x5a\x01\x64\xac\x94\x90\xd1\x6c\x07\xb2\xa4\x25\x6d\xb4\xd5\x80\x8d\xe6\xd3\xec\xb5\x02\x80\x3c\xa9\x69\x7b\x34\x7b\x80\xa2\x59\x52\x1b\x35\x6f\x00\xff\x7c\x9e\x7e\x4d\x23\x04\x38\xf6\x58\xaa\x54\x7d\x11\x70\x3e\x4a\xaa\x4a\xcd\x1a\xb8\x7a\x68\x5a\x9d\x66\x3a\x70\xdb\x59\x86\x37\x25\x89\xe4\x40\xfe\xf6\xbd\x87\x7e\xcf\x1f\x7d\xc6\x88\xe7\xf7\xca\xad\x37\x39\x34\x46\x0f\xd0\x88\x33\x6d\x10\xd4\x07\x8c\xcd\x59\x12\x62\x06\x80\x85\x91\xf5\x56\x89\x64\xc0\xba\xc5\x69\xff\x0c\x59\xc0\x61\xb6\x8f\x87\xc2\x7e\xc0\x31\x2d\xf2\x90\xfa\x45\xc0\xe9\xe3\xbc\x71\x7a\x47\x01\xc7\x7d\x4b\xd9\x26\xe3\x01\xfb\x63\x1b\x67\x5a\xa8\x03\x76\x13\xf6\xd4\x5b\xd7\xa3\xc5\xc6\xa4\xa4\xd8\xf1\x21\x5a\x59\x47\xab\x4c\x1d\x4b\xd1\xca\xb0\x6a\xd2\x72\xe4\xe2\x85\x85\x60\xe7\x1c\x67\x25\xc0\x3c\x91\x9b\xe7\xa4\x01\xd0\xef\x13\x12\x36\x2c\xc0\xc4\x8e\xb8\x6a\xd6\xdc\xe3\x61\xb2\x85\xd8\x61\xb1\xe5\xab\x94\x49\x2b\x91\xc3\xf0\xfb\x38\xdd\xe4\x37\xb1\x85\x21\xf2\xda\xce\xa4\x82\x38\x6e\x7e\xbc\x99\x65\xba\x9a\x28\xb6\x48\x7f\x54\x6e\x9a\x40\x5c\x33\xeb\xa8\x5f\x6f\x3a\x8e\x78\x49\x9f\x78\xe7\x05\x5d\x86\x78\x68\x26\x5f\x23\x6f\x32\x11\xf2\xb4\x6f\x37\x5b\x4d\x4b\x40\x31\x71\xfe\xaf\x3e\x98\x4b\x50\xfe\x63\x2e\x88\x82\x87\xc9\x8a\x31\x6f\xfe\x35\x17\x63\x85\xf9\x57\xd1\xc3\x00\x73\xa5\x65\x8d\xa4\x3f\x60\xfb\xd9\xe9\xa4\xf4\x39\xc0\x59\xc8\xeb\xb7\xd2\x32\xc0\xe9\x75\x58\x87\x7a\x37\xe0\x22\x32\xd7\x91\x5a\x09\x38\x75\x2e\xd6\x36\x49\x02\x1c\x05\x37\x0a\x31\x73\x01\x3b\x91\xbd\x61\x36\xca\xc3\x7d\xa8\xb7\x9c\x58\x55\xe7\xf4\x13\x77\x18\x9b\x9a\x25\x9d\x2f\xa3\xc2\x22\xf7\xcb\x68\x57\x55\x74\x98\xbf\xe0\x26\x38\xdf\x24\xfb\xc0\xf9\x65\xfa\x98\xf0\xb2\x34\xe8\xae\x36\xdd\x49\x04\xb3\x2e\x7e\xb6\x30\xad\x26\x82\x58\x0f\xdf\x4d\x34\x3d\x44\xa4\x31\xb7\xb5\x04\x9b\x4d\x26\x9c\xac\xe4\x1b\x3f\xd1\x77\x12\xcb\x99\x4b\x1e\x86\xd1\x6f\x13\x9b\x18\x2f\x6b\xdf\xd3\xa5\x88\x2a\xb3\x57\xb7\x29\x74\x57\xe2\x89\xd9\x84\xca\xd9\xf4\x06\xe2\x39\xfd\xd9\xf5\x35\xf4\x9d\xc4\x6f\x53\x3a\xfe\x83\x0b\x1a\xe9\x6f\x91\xf7\xde\x15\xd7\x1a\x29\x8f\x55\x01\xf4\x3a\x8c\xdf\x4e\xdc\xfb\x87\x83\x60\xed\xb0\xa4\x49\x3e\x05\xec\x2f\xd9\xef\x95\xee\x04\x9c\xb7\x78\xcc\x55\xbc\x0f\xb8\xb4\x86\x38\x6b\x3c\x06\x5c\x1c\xe3\x3d\xa8\x6b\x00\xe7\xfd\x8b\x1d\x4c\x77\x02\x4e\x96\xeb\x4b\x58\x3d\x80\xfd\x8c\x3d\x45\xb6\x6d\xa8\xb5\xf9\x54\x62\xe9\x6c\x8d\x52\xcb\xfc\x5b\xf7\x5c\x19\x38\xce\xa4\x3e\x1f\xe7\xda\x85\x5d\x0c\xa3\xae\x30\x0f\x1a\x06\xcc\x37\x73\x73\x9c\xf6\x90\x7d\xe8\xbb\x40\xaf\x22\x44\x6d\x16\x7e\xbf\x41\x8f\x23\x74\xac\x45\xdb\xd9\xf4\x9b\x84\xa6\x75\xd8\x9b\x18\x33\x4f\x42\xd5\xba\xbe\x39\xdd\xac\x98\xb0\xb0\x1a\x78\xd4\x6e\x6e\x40\xd8\x5a\x3d\xbb\x5f\x69\x96\x40\xac\x66\x66\xdf\x89\x31\x7f\x44\xcc\xb5\x74\xac\x9a\x67\xbe\x82\xd8\xc5\xf8\x5a\xe1\x4a\x6f\x20\x3e\xd0\x4d\xaf\xae\x31\x5b\x49\x74\xd0\x79\xa7\xc1\xdf\x5c\x10\xdf\xf7\xe6\xf7\x61\x42\x8e\x1e\xef\x1e\x9b\x62\x83\xc1\xce\xb1\xe3\xfe\xe4\x41\xfc\xcd\x07\x91\x7d\x70\x11\x76\xcf\x55\x6c\x01\xdc\x0a\x82\xa4\x35\x77\x01\x6e\x5e\xf1\x71\x86\xd6\x80\xab\xd9\x22\x17\xb3\x2c\xc0\xf9\xf0\xfa\x1c\xeb\xf9\xf8\xe0\xb0\x69\x4f\x91\xc3\x37\x9c\xb6\xdd\x5b\x9a\xe4\xba\x07\x9b\xac\xf2\x6e\x3d\x71\x67\x63\x0d\xf3\xdd\x8b\x74\x8f\xad\x58\xc7\x48\xe8\xae\xf2\x74\x47\x87\x79\x0b\x37\xc1\xb9\x06\xd9\x66\xdb\xb9\xcf\xec\x85\x7f\x6f\xa6\x77\x10\x63\x6d\xbe\x7f\x11\x36\x9f\xcd\xbd\xe8\xd0\xf7\xce\xd3\x8c\xe0\x76\xdb\xb9\xb7\x6e\x31\xb7\x27\xc6\xd8\x5e\x7a\x66\x68\x5e\x4d\x08\xda\x56\x3d\x6c\x36\xf7\x26\xec\xac\x5e\xd7\xed\x30\xe3\x10\xa9\xac\xf5\x35\xf7\xcd\xcb\x88\xc5\xac\x35\x95\xb3\xcd\xcd\x89\xa3\x16\xb8\x56\x6d\x76\x8f\x78\x62\x96\x73\x79\x87\xf9\x6d\xa2\xce\x9c\x8e\xff\xe0\x82\xf8\xe7\x82\xa4\x7e\x23\xcf\xdf\x8a\xa0\x6e\xa1\xfc\x6b\x0e\x02\xc9\x83\x58\x4c\x30\x35\x14\xcb\x05\x6c\x3c\x18\x82\x92\xba\x80\xd3\x15\x07\x2f\x99\x23\x80\xeb\x67\xb7\x60\xe5\xd1\x80\x7b\x47\xe0\x5e\xad\x3b\x80\x3b\x66\xc7\x18\x5e\x07\xdc\x56\xa6\x2f\x33\x8f\x05\x5c\x92\xd6\xcf\xb0\xd9\x8f\x47\x8e\x87\x76\x9f\x73\x2a\xc7\x41\xdb\x9e\xd2\x64\xb7\x0c\xcc\xb3\x9e\x7e\x3b\xcf\xcb\x0e\x71\x2c\x9f\xd6\x10\xaf\x1d\x88\x67\x7c\xff\xa5\xe9\x6d\x8f\xc7\x16\x4c\xae\xb3\xab\x15\xa7\xde\xec\x1f\xee\x43\xfb\xd8\x9f\xd1\xe6\x9e\xdc\x63\x8e\x71\x1d\xeb\xcd\x33\xb9\x57\x1c\xda\xde\xd6\x9a\xbf\xe7\xde\x72\x38\xf1\x5c\xc3\x62\x16\xf7\x85\xc3\x98\xc7\x95\x0c\x43\xee\x73\x87\x39\xf7\xfb\x18\x75\xdc\x8f\x0e\x33\xee\xcc\x67\x48\x12\x86\x36\x21\xd5\x8d\x0c\x27\xc2\xce\x7a\xf7\x8d\x79\x16\x39\xc4\x06\xe6\x97\x2b\x9b\x2c\x9e\x13\xfb\x19\x6f\xca\x26\x32\xd6\x10\x07\x99\xa3\xff\xdd\x87\xe1\x79\x41\x23\x7c\x3e\x72\xfe\x3f\x39\x07\x81\xcc\x83\x60\x3a\x18\x35\x88\x3e\x02\xec\xd8\x16\x53\x24\x03\x00\x97\x42\x9b\xa5\xd2\xfe\x80\xbb\xa8\xeb\x2d\x65\x1b\xc0\x73\x47\xe0\x68\x1d\x1f\xc0\x4b\x21\x66\x8b\xd1\x52\xc0\xe3\x79\xba\x01\x93\x03\xb8\x2a\xe5\xb4\xdb\x6a\xa1\xcc\x69\xd9\x9e\x78\x57\x41\x2c\xb5\xd7\x2f\xb5\xf3\x4c\x05\xcb\x86\x72\x27\xc1\xd7\x03\x72\x96\x49\xaf\x45\xfd\x4d\x31\x95\x25\xd2\x4f\x0f\x88\x43\xa5\x45\x0e\x97\xea\x16\xda\xfb\xd8\xc2\x87\xeb\xea\x1a\xf2\x5d\xcb\xe2\x38\xd7\xcd\x75\xd7\xfb\x72\x46\x24\xd7\xd3\xf5\xc7\x4b\x41\xc6\x18\xee\x6e\xa7\xb6\xa6\x13\x8c\x6d\xdc\x12\x27\xff\x87\x8b\x78\x7c\xdc\x98\xba\x89\x4c\x01\x6e\xa7\xc3\xa8\x1a\x71\x96\x2e\xf7\x9d\xc3\xad\x9b\xaa\xcc\xa9\x04\xcb\x46\x83\xe4\xc2\x2e\x9d\x63\x4e\x26\x56\xb1\x9a\xcf\x3b\x32\x2e\x13\x25\x8c\xb0\x11\xe7\xe3\x8f\xff\xea\x83\xcc\x3c\xdd\xd5\xa3\xef\xff\x99\x83\x40\xe6\x41\x90\xf9\x20\x4e\xb9\x66\x9a\x92\x53\x01\xf7\x5c\xab\xcd\x33\x3e\x00\xde\x0d\x2e\xcb\x54\xbc\x01\x5f\x43\x5f\x5d\x3d\x43\xc0\x27\x60\x56\xba\x49\x3d\xe0\xd5\x95\xf6\xde\x6a\x2b\x3e\xbb\x9b\xac\xd5\xb1\xff\x89\xf5\x2e\xcb\x8a\xfa\x3d\x72\x87\xb9\x41\x59\x9b\xf5\x77\x33\xfd\x93\x30\xce\x72\xdf\xdb\x75\x01\xe5\x10\x61\xc9\x73\x64\x03\xc7\x41\xcb\x02\x5c\x01\x0f\xda\x4f\x67\xc6\x2d\x4e\x9b\x27\xbb\x93\xce\x94\xe5\x74\x7b\x9e\x79\x7b\x98\x79\x80\x3b\xd1\x53\xa3\xd9\x8e\x25\xc3\x35\x75\xbf\xf4\xf8\x0d\xf3\x27\x37\xd5\xd5\xbf\x4e\x96\x75\x97\xbb\xc1\xa5\xe2\x4e\x11\xab\x95\x7b\xcc\x79\x4b\xa5\xa6\xe5\x1c\x6e\xad\x93\x5d\x39\xc1\xfa\x4c\x48\xd8\xb5\x5c\x9d\xca\x7a\x43\xa8\xda\x7e\x3f\x6f\x6f\x35\x85\x30\xb4\x3d\x5b\x6a\xc4\x6a\x23\x96\x59\x9e\xf9\xaf\x73\x41\x9f\x97\x7b\x30\xf6\x81\xe6\xf1\x41\x95\xdd\xa4\xb9\x71\x34\x1b\xd0\x9b\xa9\x6d\x2a\x48\xf9\x93\x07\x61\xff\xc5\x40\x43\xf4\xd4\x1f\x2e\xc6\xa7\x85\xe5\x39\xa3\x0b\xf0\x4b\x70\x62\x2a\x87\x03\x7e\x4f\xfd\xe4\xf4\xe3\x01\xbf\xf2\xc8\x5e\xfa\x02\xc0\x57\x7e\x81\x91\x55\x13\x6e\x79\x7a\xad\xf1\x74\x8e\x47\xa6\xab\x63\xe1\x25\xcf\x95\x24\x37\x48\x34\xda\xde\xb8\xd7\x1e\xdc\x4e\x5c\xb6\x4a\xff\xb0\x34\x54\x9f\xe4\xe4\xfa\x25\x99\xb9\x9c\x85\x7e\x02\x5f\xa5\x58\xba\x9c\x2c\x3f\xf9\x77\xc9\x96\x2c\x4e\xba\xbf\xdc\x8b\x26\x4b\x2e\x67\xbb\x5f\xf6\x93\x30\xcb\x17\x9c\x2e\x6f\xb9\x86\x09\x96\x75\x5c\x3d\x8f\x9a\xdb\x74\x6b\x3d\xae\xbe\xa7\x49\xd5\x1a\xab\x5e\x6e\xbc\x5b\xfb\xb5\x48\x6b\x4b\xee\x7e\x97\xeb\x57\x9e\x5a\x5d\xe0\x3e\x75\xd2\x3f\x9f\x61\x33\x9a\xfb\xca\xc9\xac\x94\x65\xf5\x92\xa0\xda\x09\x9e\xbc\x69\xbd\x8f\x60\xd9\xae\xc1\x7f\x70\x72\x43\xeb\x60\xec\x58\x35\x57\xca\xbf\xfc\x7f\x72\x0e\x02\xf3\xa2\xf6\xbb\x89\x9b\x00\x97\x20\xbd\x02\xd1\xe9\x80\x0f\x93\x16\x2b\x7e\x05\x08\x14\x31\xbf\x3b\x3d\x0d\x08\x59\x6b\xb7\x5a\x69\x2e\x10\xbc\xc4\x4b\x45\x6f\x15\x10\x2c\x1f\x2e\xc4\xd8\x8e\x77\x01\x53\x93\x26\xd9\x75\x61\x9f\xf7\xd6\xec\x60\xb7\x58\x18\xb8\xaf\x2d\xec\xf3\x6b\x1f\xe6\xe5\xb6\xda\xfd\x53\x77\x39\xfc\x16\x41\xb5\x7e\xd6\xb1\x6f\x96\x2e\x71\xd9\x52\x83\x5d\x1c\xba\xb9\xab\xcd\x32\x9d\xdd\x1c\x62\xf4\x61\x96\xd5\x67\x76\x75\x68\x45\xeb\x3b\xeb\x79\x1c\x4a\xc8\xf4\x26\x69\x9b\x09\x1c\x5a\x50\x49\x43\x85\x8d\x25\x67\x69\x40\xf0\x70\x4e\x16\x9f\x87\xba\x6e\x67\x5b\xc9\x9d\xe0\x7d\xf6\xd2\x16\xdb\xf5\xdc\x68\x0f\xb1\x0b\x17\x6c\x07\xb8\x49\xee\xfb\x4a\xb6\xdb\x5e\xe2\x5e\x73\x31\x39\xbe\xd4\xae\x8e\xdb\xe4\x1c\x72\x24\xc7\xf6\x39\x21\x67\x7f\x14\xff\xc3\xc9\x91\x7d\x98\xa0\xab\xc0\x3b\x1f\x55\xac\x54\xd8\x63\x2e\xfe\x99\x83\x40\x72\x10\xee\x5a\x7a\xf3\x45\x73\x80\xc0\xdd\xfa\x67\xc4\xa7\x01\xe1\x26\xf4\x88\xe9\x41\x40\xe4\x36\x1b\x28\x8f\x05\x22\xba\xdd\x8f\xeb\x95\x02\x21\xdd\xc1\xcd\x0c\x2d\xdc\x0b\xd6\x9c\x37\xda\xe1\x3b\xa2\xfc\x72\xb3\xce\x7b\xeb\x80\xe2\x19\x51\xb0\x36\xc8\x88\xd8\xe4\x12\x79\xce\x39\xe2\x3a\x21\xe7\x40\xa9\xef\x89\x39\xc2\x6d\xb1\x71\xfe\xf6\x34\x4e\x86\x33\xc7\x2a\x6f\xe0\x6b\xf4\xfa\x0e\x33\x9b\xb1\xec\xa9\xd1\xc9\xaf\x53\x6c\x5e\xb1\x5d\xa2\x02\x9a\x2e\xd9\x0e\xb0\x97\x45\x46\xd7\xef\xb0\xbb\xc2\xae\x09\x4f\xbc\x27\x66\xaf\xca\xfe\x1e\x66\x72\x93\xb0\x9f\xcf\x99\x15\x14\x51\xae\xe7\x20\xc1\xd9\x11\x70\xf7\x52\x82\x7d\x1e\xe7\x87\xaf\xc9\xd9\x33\x0e\x6b\xb8\x62\x3e\x96\x67\xe2\x1d\xfc\xb8\xce\x9e\x8f\x4e\x50\x1c\xce\x70\x33\x3c\x04\x0e\xa5\x3a\x9e\xe3\xe6\xbb\x0d\xfc\x13\x6a\x1f\x42\x8c\x77\xd4\xf8\xf7\x7e\x18\xe2\x40\x28\xfb\x34\x14\x07\x75\xca\x61\xa5\x51\x3c\x9f\x2b\x58\x41\x48\xe0\xf2\x9f\x1c\x04\x92\x83\xf0\x8f\xd2\x08\x14\xf6\x07\xc2\xec\x74\xee\x4e\x0a\x03\x62\xac\x0c\x7f\x4e\x5d\xfd\x87\x8b\x99\xfd\xc0\xf9\x95\x6e\x2d\x30\x6b\x62\xc0\x4e\xc6\x1d\x9c\x0d\x9b\x14\x27\xe8\xb4\x0e\x8a\x41\x51\x99\x0b\xfd\x17\x11\xa7\x7c\xc2\x76\xfc\x0e\x8f\x23\x14\xdc\x68\xe7\x9a\x62\x17\x72\x0f\x39\x8a\x3d\x52\x9c\x1b\xc3\x75\xb7\x9d\xf2\xeb\x7d\x82\x5a\xd7\x74\xdb\xd0\xfe\x8f\xf3\x9c\x5e\x77\xd9\x87\x0c\xc8\xcf\x7d\xd5\xa4\xe3\xb0\x68\x20\x7b\xce\xa9\xfa\xf9\x8e\xb1\x03\x75\x71\xa3\x6e\xab\x38\x4d\x64\x6b\xc7\xcc\xaa\xf0\x72\x1e\xc3\x8e\x8f\x7e\x72\xe5\xb4\xb3\x08\xbb\x35\x42\xee\xbc\xaa\x73\x3b\x47\x3e\x4c\xa4\x64\xb5\x33\x83\xb3\x2d\xb0\xf1\xc4\x38\x17\x75\x4e\x79\x40\xc6\x51\x77\x17\x11\xce\x0f\xbf\xd0\x83\x66\xce\x8d\x5c\x77\xaf\xe4\xfd\x2c\x17\x09\x6e\x94\xe7\xb9\xdd\x97\x5d\xbc\xb8\x45\xee\xcc\xff\x5d\x07\x63\xa5\x15\x4d\x07\x55\x5e\x42\x7e\xc6\xe8\x27\x80\xbe\xa5\x9c\xa2\xc0\x6e\xc0\x4e\x5d\xee\xcc\xd8\xc1\xe7\xc0\x33\x39\xa3\xb1\xdd\x7f\xe6\x62\xcc\xee\xd0\x92\x9c\x64\x04\xc4\xff\xa0\x3e\x99\xe2\x0e\x24\xb4\xd1\x7d\x65\xa5\x81\xc4\xd5\xf6\x1f\x74\xca\x81\xf8\x59\xbe\x79\x8c\x16\x44\x47\xef\x8f\xae\xf1\xf0\x25\x5a\xc2\x5c\x16\x3b\x04\xb7\x10\x86\xfe\xcb\xf2\x6f\xc4\x52\xb9\xab\x3c\xae\x9d\x6b\x4e\x90\xe7\xd4\x3a\x3d\x6a\x7c\x9c\x9a\xce\x29\xb4\xd3\xec\x5b\x95\x36\xe3\xbd\x98\xa3\x4e\xdf\xb5\xb4\xcc\xc6\x76\x67\x91\x7e\xaf\xe4\x0b\xf7\xcf\xba\xf8\xf4\x17\x2c\x98\x45\xce\x49\xbb\xfe\xc0\x75\xd6\x40\xd9\x9c\xcf\x97\x1e\xb9\x55\x0e\x3c\x9e\xb3\xf2\xec\x3a\x77\x23\xb6\x53\x0c\xe7\xe4\x23\xf7\x93\xec\xd3\x51\x2d\xc7\x98\x6e\x2f\x38\x46\x61\x63\xff\xb9\xe7\xde\xc9\x71\x0b\x0d\xdf\x37\xdf\x43\x9a\x53\x14\xb4\x71\x8f\xa2\xfb\x39\xce\x77\x7f\xa5\x5d\xc5\x1e\xba\x5c\x35\x9f\xcf\x3b\x6f\xb8\x7e\xe2\x16\xbb\xf3\x38\x31\xc3\xbb\x43\x7d\xd0\xa8\xe0\x3d\x27\x33\x65\x7e\x53\xfe\xe5\xff\x1b\xfb\x89\x94\x0c\xfe\x4d\x72\x10\xe4\x3c\x88\xd8\x4a\x59\xfd\x71\x00\x12\x2e\x29\xed\x15\xba\x06\x2c\xbc\xa7\xfd\x54\x72\x0e\xb0\x28\xc4\x68\xb7\x4c\x1a\xb0\xa8\xcb\x2a\x43\x6b\x1b\xb0\x70\xb9\xfb\x31\x8b\x16\x44\xcf\x7d\x1d\x5e\xed\x19\x40\xcc\x8d\xae\x4c\x1b\x1b\xe5\xc2\xdd\x1e\x7c\x6e\xdb\xf6\x04\x11\x4e\x85\xb7\xcf\xb9\xfe\x85\x61\xec\x67\x2e\xb2\xcf\x8f\x2e\x33\xfa\x5a\xed\xe4\xd5\x73\x6f\xc5\x89\xa7\x0f\x5d\xeb\x7a\xd7\x64\x5a\xdc\x3d\xe3\xa1\xdf\xa7\xb6\x64\xd9\x4d\x7b\x4f\xdb\xbe\x3b\x19\xa2\x57\x97\x7a\x99\xf6\xcb\x2d\xd4\x3c\x5b\xef\x3d\xb6\xff\xd3\x02\xa5\xd3\xe2\xde\xed\x03\x6a\x89\xbb\x8f\xd2\x7c\xac\x07\x2e\xcf\x5d\x49\xf2\x2f\xc5\x6d\xde\x37\xd8\x15\xd1\x53\x8a\x6e\xf8\xf4\xb3\x1f\x45\x1d\x2f\x28\xf7\x0e\xe6\xc4\x86\x4a\xe4\xf7\x7b\x3f\xe4\xec\x0e\x9e\xb9\xf5\xa0\x8f\x00\xe7\x53\x80\x44\xae\xa8\xd7\x27\xae\xb9\x4f\xd2\x9f\x75\x40\x31\x54\x70\x1b\x54\xe9\x3b\xd2\xb7\x46\xc5\x03\x3a\xb2\xa2\x79\x83\x7f\x9b\x1d\x1a\x6b\x4d\xf9\x57\x0e\x42\x84\xc8\xa8\x05\x83\x3a\x7f\xd2\xe8\x2e\x9e\xef\xb1\x45\x56\x58\x30\x09\x58\xe9\xa9\x14\x22\x52\x07\xac\x4e\xd0\xab\x99\x11\x05\xac\x5d\x6b\x6e\xa0\x7e\x0e\x58\xe5\xef\x78\xdf\x5c\x1b\xc1\x8b\x8c\x82\xbc\xbc\x25\xb8\xad\xf1\x71\x09\xa6\x73\x5c\xfb\x26\x47\xe6\x6c\x2c\x59\x18\xfc\xf5\x60\x90\xc3\xc9\x13\x2b\x0c\xdf\x1f\xf7\xd1\x7f\x10\xb9\xf6\x60\x8b\x91\xc7\xd2\x5f\x1d\x1b\xb8\xe4\x5c\xa8\xab\xc7\xfc\x02\x7b\x05\x57\x31\xce\x8d\x0d\xd0\xe8\xdd\xb1\xe2\xd0\x29\xe7\x00\xc1\xbe\x1d\x8b\xef\x1c\x5a\x1d\x58\xd3\x3f\x21\x83\xb5\xff\x41\xa0\x62\xff\xa3\xe4\x2f\x7b\xda\x02\x77\x0c\xe8\x25\x45\x17\xdc\x0a\xac\x1d\x38\x34\x8f\xc8\xd7\x08\x7c\xce\xd6\x8e\x6b\xc8\xcd\x0b\x4a\x60\xaf\x8d\xf9\xb4\xa5\x2c\x50\x85\xfd\x23\x6a\xc6\x86\xfc\xc0\x51\x9c\xb0\x30\x89\x9c\xc7\x81\xd7\x38\x0b\x43\x19\x6b\x36\x07\x1c\xe4\xbc\x0e\x78\x33\xd8\x87\xa1\xe7\xa3\x80\x91\xb4\x3b\xef\x7b\xe5\xdc\xc9\xbc\x7d\xa1\x77\x68\x34\xef\x7b\xa6\x7d\xfa\xe0\xf7\x65\x20\x88\xef\xe3\x90\xfe\x6f\x86\xd6\x28\x81\x41\xcd\x56\x1e\x9d\x32\xa8\x9b\x8d\x44\xae\x0e\x6a\xde\x1b\xd5\x18\x09\x59\x20\xbf\x98\x66\xa9\xd4\x0a\x6c\xab\xb0\x11\xa4\x1f\x40\xdc\x7a\x49\x6f\x47\xaf\x27\x3f\x3e\x2f\x76\x8a\x15\x9e\x77\xf2\xed\xe8\xf9\x57\x96\xd7\x2f\x97\x69\x3c\x19\xbb\xbe\xf8\x57\x0e\xb7\xf6\x6c\x84\x75\xd5\x92\xdc\xcc\xaa\xac\xe0\xe0\xce\x31\xf9\xe5\xe7\x0e\x84\xe6\xfd\x8a\xd8\x1a\x72\x4c\x26\x5c\xff\x77\xcd\x06\xe3\x03\x8b\xc3\xbf\xf4\xdc\x5a\xe3\xb8\x47\x3d\x22\xb9\x77\x4b\x96\xd8\xae\x9f\x11\xc5\x7d\x96\x99\x13\xf2\x7e\x46\x5c\xec\x9f\x9c\xd1\xb5\xad\x3a\xdc\xb8\xbf\x2e\xe5\xd5\x26\x8f\x88\xa5\x03\xea\x0b\x22\xd6\xfd\x8e\x30\x1e\x38\x3f\xdf\x82\xcc\x3d\xc9\x5e\x1a\x9e\xc8\xce\x8f\x69\x5d\x29\x15\xbe\x87\xfd\x29\xea\xe3\x0a\x81\xb0\x68\x8e\x73\xb8\xee\xb2\x33\xa1\x5b\x38\xa7\x83\x19\x00\x65\x85\xc2\xe8\xc1\xd7\x3f\x69\xd4\x14\x26\xef\x5c\x7c\x3e\xe6\x3d\x6f\x1d\x3c\xa3\x8c\xf0\x3d\xe7\xf0\xf3\xfe\xc9\xb9\x20\x24\x07\x40\xe6\x01\x14\xf1\xef\xbb\xfe\x23\x21\xab\x2e\xf4\x08\x38\x12\xab\xe5\x27\xfd\x12\x38\x6c\x61\x6e\x4c\x53\xfe\x39\x71\xb7\xaf\x8b\x85\xa7\xf4\xab\x27\x9b\x0f\x85\xa5\xce\xcd\xad\xed\x59\x5e\x90\x72\x38\x6b\x51\xf9\xe2\x85\xae\xdb\xe4\xb7\xfc\x3e\x83\x24\xdb\x0b\xe7\x77\x2e\x39\x1c\x1a\xff\xb1\x75\xeb\xee\xa3\x45\xf2\xf1\x5b\x7e\xae\x2c\xcc\xd9\x56\x30\x37\xee\x57\x60\x9e\xe0\xe6\xba\xf8\xbb\xbf\x0f\x6c\x12\x59\x9f\x18\x5f\xd1\x73\x7c\xed\xd3\x35\x3e\xf1\x1d\xbd\x8b\x57\x45\xaf\x2a\x88\xd7\xed\xf3\xca\x0c\x5e\xf1\x6c\xce\xb5\x3e\x62\xf1\xb8\xa5\x8b\xe6\xdc\xee\xbf\x92\x36\x6a\x49\x5f\xdc\xa4\x01\xbf\xa4\x45\x4b\x7e\xc4\x2e\x18\xb8\x3f\xef\x7a\xc6\xe3\x58\x01\xb6\x57\x5c\xc4\x42\x8b\xd8\x14\xf6\xba\xd8\xec\x94\xc3\x31\x1f\xd8\xbf\xa2\xb6\xa7\x08\xc5\xc4\x71\xe4\x23\x3e\x03\x94\xd5\xd3\xa2\x06\x5f\xff\xcc\x4b\x93\x78\x7c\x14\x79\xff\xdf\xf1\xe5\x90\x92\x73\x10\x52\xde\x0c\xe9\xea\xeb\x94\x11\x1c\xc0\x3e\xdb\x21\x25\xf3\xd0\x2f\x3e\x17\x7e\x3c\xa8\x57\x9d\x94\x6d\x25\x1f\xfe\x62\x5f\xda\x4e\x73\xd4\xfd\xe7\x6d\xf7\xe9\x6a\xdb\xb3\x2e\x53\x1a\xdc\x0f\xfe\xe3\x1f\x19\x7b\xed\x72\xf5\x4e\xb7\x79\xe2\x99\x2b\x0e\x7c\x5d\xf7\x2b\xbb\x7a\xdb\xde\xbc\x0d\xab\x5c\x8f\x06\x17\xc5\xae\x8d\xcd\x4c\x7d\x30\x6f\xdf\xd7\xcc\x59\x4b\x1d\xbb\x4c\xf7\x89\x2c\xb9\xbd\xe8\x6b\x77\xd8\xce\xf2\x45\xa5\x19\xea\xbf\xde\x6d\x1d\x97\xfe\x20\x7d\xcb\xef\x4f\x1b\xa7\xa4\x05\xa7\x7b\xf4\x0a\xac\xa1\x0f\x73\x1f\x1f\x53\x36\xf7\x95\x2c\x35\x4e\xfe\x9c\xb4\xbd\x9f\x96\x71\x71\x41\x5a\xc2\x87\xfe\x6f\x29\x6b\x13\x95\x13\x29\x03\x5b\x13\xce\x25\x26\xcc\x9f\x3e\x50\x39\x5f\x7e\x5e\xdf\x7c\x15\x76\x70\x9c\xe4\xbc\x39\xf1\x91\xec\x86\xe8\xaf\xf3\x7c\xe2\x5d\xd9\x4d\xd1\xa7\x00\xa1\xb8\xc9\xc2\xbc\xef\x0f\x1d\x43\x39\x27\x4c\xa9\xa1\x7a\x82\xf8\x7e\x27\xe9\xfb\x91\xfe\x2f\x59\x3f\xc9\x01\x90\xf7\x80\xcb\xf9\xfe\xc7\x9d\x01\x4a\x28\x85\xd2\x27\x78\x7f\x8e\x8c\xa6\x70\xc7\x07\xe2\x4e\x96\xee\x3c\x75\xc9\x27\x56\x37\xa5\x98\xef\x6d\x1e\xde\xb8\x53\xf6\xd4\x33\x35\xdc\xee\x58\xe6\x69\xcf\x98\xe8\x74\x81\xdc\x8e\x83\xd7\x97\xed\xdd\x70\x6f\x79\xcf\xde\xa3\xfb\x53\xf2\xd5\xd3\x24\x8a\x88\x7b\xad\x05\x52\xf3\xbd\x0b\xe9\x3f\xab\x0a\x4a\xe7\x3e\xda\xde\xf6\xeb\x65\xee\xe5\xb9\xf3\x72\x7f\xfd\xfe\xbc\xe1\x5c\xfc\xd3\x8d\xfb\x7b\xc5\x56\x97\xcf\x35\x5d\x4b\xf4\xde\x59\x79\x36\xfe\x5c\xf6\xb3\xbe\x8d\xcb\x84\xe3\x0e\x64\xcf\xee\x0f\x48\xbf\x19\x97\xb0\xe2\x6c\x7f\x4f\x4a\x48\x9c\xdb\xb2\xeb\x03\xf1\x89\xbf\x63\x75\x97\x65\xb0\xc7\xc7\x73\x62\xed\x17\xcf\x66\x87\xc7\x89\xc7\x7a\xa7\x5b\xb0\x2f\xcd\xea\x99\x35\x2a\xdd\x81\x63\x1c\x61\x1e\xdd\x91\x16\xca\x99\x1b\x66\x08\x48\x4d\x1c\x73\x62\xf0\xf5\x1b\xf9\x0c\xd5\xe1\xfe\x64\xe4\x39\xb0\x9c\xef\x6f\xe4\xbe\x1b\x59\x3f\xc9\x01\x54\xf0\xe7\x01\xd4\xf3\xf6\x51\xcf\xdb\xa7\xbc\xfe\x75\xd4\xb4\xc4\x4e\x17\x1a\x7d\xb9\x79\xee\x33\x51\xf5\x39\x72\xb3\x6f\x8f\x7e\x64\x43\x5f\x63\x96\x78\xd6\xa3\x56\xc8\x45\xd5\x77\x7d\xd1\xfa\xaa\xe2\xf0\xd7\xf3\x43\x57\x06\x5d\x25\xd2\x3b\xb2\xb6\x24\x47\x5f\xb6\xd9\x33\x75\x3d\x6b\x76\x60\x19\xed\xb6\xee\xe6\x15\xe1\x8b\x2e\x9c\xff\x75\x22\xd7\x31\xfc\xf8\xc9\x65\x3d\xae\x39\x47\xc3\xba\x8f\xc4\xf7\x66\x67\x69\x44\xd8\xee\x97\xec\xed\x59\x7e\x37\xac\x7b\xcf\xf4\xfe\x69\x19\xe7\x22\x16\xee\x38\xdb\x9f\xba\x70\x59\xb8\xf9\xf6\x90\x01\xed\x05\x4e\xe1\xb9\xb9\x6b\x07\x36\x25\xac\x08\xd7\xdb\xb4\x8a\x2d\x10\xff\x28\xbc\x76\xdd\x15\xb6\x5d\xdc\xd9\xb0\x55\x39\x7b\xd9\x65\xb3\xee\x87\x75\x64\x9f\xe0\x8c\x8e\x92\x0a\x3b\xb2\x32\x97\x13\x12\x76\x23\x74\xe7\x72\x0e\xe7\x42\xb0\x1a\xa0\xc9\xcf\x7f\x21\xfd\xff\x28\xfe\xfe\x5f\x94\x4d\x19\xc1\x81\xec\xab\x1f\x59\x7f\xd5\x1a\xca\xbf\x7c\xd0\x9e\x1d\xad\xfb\x06\xf5\xd3\xe8\x36\x5e\xff\x5a\x2c\xdb\x57\x89\xaa\x50\x28\x75\x9d\x1f\x3d\x15\x2d\xa7\x9c\xbc\xb2\xe2\xed\x3f\xb4\x25\x7a\xed\x87\x5d\x5b\x5d\xec\xbd\x9c\x24\xb7\xcc\x7b\xba\x2f\x58\x29\xf2\x7e\x5a\xd6\xc3\xa2\xe4\xa5\x0b\x37\xcd\xae\x7a\x90\x50\x90\xbc\xec\x60\x48\x59\xc3\xee\xaa\xcd\x59\x52\xbe\xa3\xea\xd7\xfd\x9c\xb2\xea\x97\x0f\xbb\x7a\x4b\xef\x87\x4c\x4d\x5f\x93\xf2\xf4\xbe\x27\x19\xd5\x7e\x2a\x17\x8c\xfa\xbd\xd3\x1a\xfd\x46\x9f\x3e\x31\xa0\x90\xe4\xeb\xfb\xe1\xd8\x8a\x81\xcb\x73\xfb\xfd\xb4\x0f\x05\xb2\x45\xe7\xcc\xf7\x7b\x5b\xfc\x85\x1d\x15\xfb\xce\xaf\x62\xb7\x07\xbb\x32\xfa\xac\x5f\xdb\xae\x4a\xce\x84\x48\x03\x7f\xa5\xed\x7d\x1c\xd7\xb0\xbb\x7e\x95\xdb\x0c\x39\x45\xc1\x15\x7e\xa9\x5b\x36\x73\x5e\x06\x4e\xf0\x7d\xb6\xc9\x8e\xab\xec\x37\x1a\x30\x2d\x1b\xaa\x87\xe4\xe2\xc8\x79\x20\xeb\xf8\x73\x0f\xf6\xfc\x55\x7f\x35\xff\x5c\x6c\xe4\xf1\x33\x7d\x2d\x6d\x2a\x14\x5e\x0e\xc8\x90\x1f\xdc\x92\xf1\x8d\x39\xa8\xf7\x4f\xff\xe2\xe5\x6a\xdc\x4c\xef\x39\x29\xfd\x53\x48\xe7\x4c\x52\xf7\x78\xbd\xb1\xca\x52\x45\xe7\xbe\x2d\xb4\xba\x66\xb1\x76\x75\x68\x47\x95\x5f\x95\x4f\xcd\x7c\xe1\x0f\xed\x09\x6f\xe2\xce\x85\x27\x7c\x58\x9f\x5f\x9b\xf8\xcb\xa7\xe0\x83\x40\x85\x64\xea\x26\x97\x6f\x1f\x3c\x7e\xcc\x59\x18\xe6\x72\xf9\x79\x5e\x7f\x56\xf2\x38\x97\xce\x87\xb1\x03\x06\xf3\x37\xb9\xee\xbf\xbb\x67\x60\xeb\x5c\x7d\x37\xc5\xca\x90\x01\x76\x9c\x35\x99\x73\xe1\x26\x7b\xe1\x06\xbb\x27\xc2\xc5\xed\x76\x89\x19\x47\x2f\x2c\xcd\xbd\xe6\xf8\x0f\x8e\x57\xe8\x22\xf7\xe7\x87\xb8\x9c\xc3\x41\x21\xee\x61\x07\x8e\x72\xfa\xfc\x05\xdc\xaa\xf6\x51\xb9\x0c\x1f\x21\xf7\x2d\x45\xee\xdc\x28\xaf\xbd\xee\x72\xbb\x12\xb8\xc5\xee\x8d\x80\x33\xdf\xef\x9f\xc3\xcf\x43\x22\xfd\x6f\x32\x07\x61\x98\x03\xe1\xd7\x3f\xc4\x41\xf4\x9b\x7d\xe0\xf9\x7f\x9f\xf9\xf3\x61\x5e\x6d\xe9\xe1\xe5\x24\x3c\x8c\xe0\xa6\xf3\xea\xe7\xfb\x5e\xe7\x7a\x81\xe9\x39\x63\x77\x1c\x3c\x08\x68\xbc\x9d\xee\xb9\xb5\x1c\xd7\x18\x4c\x3d\x9d\x65\x42\x04\xcd\x2b\xc5\x4e\x27\x76\x39\xdb\x27\xfe\x4b\xe0\x81\x40\x3a\x67\xd2\x56\x66\xc4\x3b\xb7\x43\xec\x67\x57\x9f\xc4\xfc\xb0\x5f\xca\x9e\xd7\xb1\x7c\xb6\xa0\x9d\xe9\x0f\x37\xf6\x8c\x59\xd6\x76\x49\xef\xcd\xd9\xab\x23\x43\xec\xac\x5b\x76\xb1\xfb\x43\xcf\xd8\xbd\x7e\xdc\xc6\x31\x08\x91\xb2\xbb\x73\x5f\x86\xb3\x25\xa0\xdd\xfe\x44\xcd\x38\xce\xa9\x80\x99\xc3\x39\x17\x42\x97\xf7\x72\x69\x5e\x84\xc3\xbe\x0b\x8f\xb8\x76\x5e\xe9\x0e\x0b\x4a\x25\xb9\xeb\xdd\xb7\x38\xd4\x9e\x58\xc7\x2d\x77\x4d\x74\x78\x73\x6c\x2a\xf7\x89\x8b\xb7\xbd\xd4\xe1\x8b\x04\xcd\xde\x15\x08\x6f\x1d\xaa\x6f\xa9\x3d\x65\x04\x0f\x47\xfa\xbf\xa4\xff\x39\x54\x3f\xfb\x5b\xfb\xb7\x41\xfd\x16\xdd\x6d\x3d\xa8\xaf\x57\x0f\xdc\x18\xd4\xc7\xfc\xdf\xf3\x2b\xf9\xf7\x3c\xc9\x79\x10\xc5\x13\x81\x51\x0d\x14\x4a\xbe\x27\xa0\x2e\x3e\x65\x62\x36\x07\x30\x5f\xa5\xf6\x36\x65\x34\x9c\xdc\xd7\xd2\x4b\x23\x02\x88\xa0\xd8\x05\x4e\x85\xbe\x01\xdc\x0f\x39\xda\x9e\x99\x2e\x0e\xdc\xdc\x63\x17\x7d\x0a\x6c\x6f\x73\x99\xf7\xd7\xf9\x65\x58\x59\x71\x67\x74\x87\xfa\x6d\x62\x25\x73\x65\xb8\xaa\x1e\x47\x59\xae\x5d\xd2\x5c\x1b\xf7\xdd\x2c\xa3\x8f\x99\xdc\x64\xd7\x36\xcb\x45\xad\x7d\x5c\x5f\xf7\x6d\xac\x92\x26\x7f\x6e\x99\x73\x80\xe5\xba\x86\xa7\xdc\x32\xe7\xa3\x2c\xce\x5d\x53\x62\xb4\x83\x8c\xe5\xd9\x2a\x01\x62\xb2\xfd\x31\xab\x51\xd7\xc5\x08\x2d\xbb\x8d\x56\xf6\x57\x94\x09\x96\xed\x21\xab\xe0\x0b\xa5\x44\x84\xcd\x44\x6b\xf3\x52\x33\x62\x96\x8d\x04\x90\x6a\x3a\xf2\x1c\x3c\xc6\xe7\x9f\x6e\xb0\x28\xff\xe2\xc0\x88\x2d\x9f\x79\x5c\xc4\x77\xe6\x2f\x5e\x3e\x50\xdb\x73\xb8\x0f\xea\xa3\x6c\x7e\xfd\x67\xf9\xef\xff\xca\x21\x25\x73\x00\x72\xf9\x7e\x71\xce\x55\x40\xf9\x81\x18\x16\x3f\x05\xcc\xc6\x2a\xe6\xcc\x79\x80\x1b\xce\xa5\x7a\xea\xc1\xdb\x31\x3a\xb2\x90\xb9\xc4\x73\x09\xd1\xb0\x5c\xc0\x66\xb4\x53\x08\xb1\x70\x77\x83\xc3\x47\x1b\x06\x61\x7f\x85\xe6\xe4\xc1\x8a\x27\x0c\x9e\x5c\x77\x72\x62\x44\x13\xa6\x3f\xf6\x39\xae\xb7\xf0\x23\xb2\x89\x69\x76\xa3\xcd\xf6\x72\x44\x89\x4c\xd6\x4b\xfa\xe9\xae\x05\xc4\x01\xc6\x59\x33\xf5\x0f\x5d\xc4\x56\x66\x2e\xbd\xf2\xd5\x3b\xa2\xd4\xe2\x91\x59\xdb\xd3\x46\x62\x17\x33\xca\x8c\xfa\x78\x22\x71\xcb\xfc\xa9\xd9\x86\xba\x3a\xe2\x81\xb9\x9f\x59\xce\xed\x44\xe2\xa3\x99\xb0\xf9\xe4\xca\x32\xa2\x83\xce\x35\xcf\xb8\x9e\x4f\x74\xd1\x4f\x01\xeb\xa2\xf9\x9f\x7f\xf8\x7d\x20\x73\x10\x1e\x37\x0e\x69\xe7\xe1\x41\xfd\xe9\xda\xc7\x3b\x2f\xdf\x99\xf0\xfd\x2f\xbe\xef\x55\x2d\x31\xd2\xff\x3a\x14\x39\xa4\xdb\xf9\x7f\x67\xf1\xfb\xb3\x4c\x02\x90\x8f\x9d\x58\x91\xc8\x00\x68\x41\xd3\x5d\xa3\xce\xa1\xcf\xa1\x43\x3d\xc4\xcf\x04\xd9\x21\x15\x34\x41\x57\x36\x82\xd3\x17\x9a\x3e\xb5\x7f\x04\xcd\x5c\x27\x8b\x14\xcb\x3b\x98\x76\x2c\xd0\x82\xc3\x90\x20\x06\x6e\x5e\x64\x4e\x37\x57\x21\x3a\x9a\x24\x98\x37\xe9\x4d\x44\x4f\x47\x23\x83\x33\x3c\xd7\x22\x15\x25\x08\x31\x3c\x40\xdb\x39\x50\x86\x6d\x7a\x17\x68\x63\xbb\x14\xb0\x51\x2f\x92\x76\xbf\xbd\x0b\xb1\xfa\xab\x68\xab\xde\x30\x90\x40\x3d\x4f\x7b\xff\xfc\x01\x62\xf5\xe5\x69\xa5\x8d\x63\x91\x42\x55\x35\x32\x7e\x50\x83\xb9\xd4\xf3\xb4\xbb\xb5\x85\x58\xa1\x27\x0b\xec\xe1\x9f\x03\x97\xf8\xf3\xd1\x1e\xf0\xcf\x81\xa1\x73\xef\xb7\x21\x9b\x77\xde\x7d\x48\x19\x59\xff\xad\x96\x21\x2d\xe3\xfb\x7e\xe4\x3d\x78\xd2\xff\xcc\xe1\xe7\x05\x90\x39\x10\xc9\x4c\x40\xee\xc1\x04\x93\xd8\x25\x00\x75\xbd\x04\x3b\x54\x0d\xb0\x9f\xa2\xd4\xe3\x19\x87\x66\x3f\xb6\x96\xba\xd3\x37\x5c\x4e\xdc\x49\x0d\xb3\x59\x8f\x53\xab\xc5\xf4\x5f\xb1\x9a\x90\x59\x94\x60\x54\x6c\x7e\x07\x29\x25\x93\x8d\x7e\xd1\x27\x21\xb5\xa2\xc8\x28\xc1\x24\x08\xa9\x0f\x2f\x18\xf9\x1a\xa7\x62\xf1\x07\x77\x23\x37\xa3\xfb\x28\x1b\x78\x6c\x70\x88\xe4\x1d\xf4\x4b\x01\x40\x5d\x40\xef\x31\x3b\x13\x50\xfe\xa4\x37\xb6\x2b\x18\x50\x3e\xa3\xf7\xa6\xe3\x01\xba\x54\xfb\xf5\x82\xde\xbd\xc2\x6f\x55\x1d\xdd\xd7\x2f\x8b\xd1\xaf\x12\xa8\x27\xd3\x7c\x13\x5d\x2a\x17\xfe\x35\x17\xc8\x9a\xf2\x2f\x0e\xa6\x2f\x92\xcb\xe3\x49\x3f\xf0\x7d\xbf\x61\x0e\x8a\xef\x5b\x5e\x2a\xc3\x48\x0e\xc6\x62\xa4\xff\x4b\xde\xff\x26\x7d\xcf\x88\xbd\x80\xc8\x04\x0a\x25\xec\x31\xa0\x6b\x39\xe9\xaa\xef\x7c\xc0\x6a\xe3\xcc\x5a\xe7\xfd\x80\xe7\x5b\xc5\x7e\xfb\x0c\x20\xf6\x8d\xfa\x34\xab\xeb\xe8\x5c\xaa\xa0\xb5\xd5\xa2\x1d\xaf\x73\xd5\xb4\x2b\xe9\x04\x1e\xec\x9f\xa8\x2b\x65\x92\x83\xbb\x25\xc2\xba\xb3\x8d\x38\xb8\x7e\x63\xa5\x9e\x33\xad\x0d\x57\xee\x1f\xd1\x3b\x66\x98\x8a\x87\x6f\xa8\xba\x0b\x0c\xbd\xd1\xd9\x15\xac\x73\xdd\xe0\x32\x80\x76\xcd\xe0\x61\x7f\x3f\x88\xe7\xef\x8b\x91\x9c\x83\x1a\xa7\xbb\x10\x98\xd6\xa5\x16\xf0\x35\x08\x98\x76\x44\x5d\xf2\x63\x05\x30\x7d\xd6\xbf\x38\x18\xde\xfa\xe7\xcc\x27\xf6\x52\x86\x38\x48\xde\xfe\x18\xe6\xa0\xfa\x86\xf4\x32\xdf\xf7\x1f\xbe\x07\xcf\xaf\x77\xeb\x28\xfe\x3e\xe0\xf3\x02\xe4\x1c\x04\xd2\xff\x8f\xfc\x00\xcc\xb4\x1a\xab\xee\x7d\x0a\x50\x39\x3f\xe1\x9c\x2b\x13\x30\x2d\x91\xb8\xee\x90\x06\xb8\xae\x93\x9d\x6b\xe3\x02\x44\xba\x28\x2e\x66\xcd\x03\xd2\x4a\x55\xf5\xcc\xf5\x80\xd5\xae\xaa\x47\x4d\xdf\x00\x3b\x28\xea\x6c\xe3\x69\xc0\xfe\x72\x75\x5f\x9a\x24\x70\xb2\x4d\x5d\xd0\xc0\x04\xb8\x92\xa7\xd6\x60\xa0\x89\x5f\xb5\x2f\x35\x6d\xf5\xcf\xa2\xef\x59\xa1\xe6\x4a\x92\x77\xd0\x2f\x06\x20\xa9\x3e\x41\xd7\x69\xb0\x0f\xf2\xaf\x34\xd6\x0e\xaa\x94\x9d\xaa\xee\xa0\x4a\x08\x29\xfc\x18\x54\x11\x3d\x85\xb1\x03\xe5\x80\x70\xd7\x1f\x0e\x06\xbc\x9c\xb8\xce\x4b\x43\xaf\xbb\x99\x3f\x0f\xea\x2e\x3f\x0f\xe6\x0a\x3f\x1f\xe8\xd4\xe9\x21\xdd\xc7\xe7\x25\xf2\x56\x8e\xf4\x7f\x49\xff\x9b\xf4\xff\x83\x9a\x86\x94\x9c\x83\xe1\xf6\x0a\x50\x96\x15\x74\xb4\x1b\x05\x18\x06\x89\xbe\xb1\x3c\x0d\xd8\x7e\x9e\x7a\x9d\x99\x02\x04\x28\xcd\x78\x6b\xf1\x03\x98\xef\x25\xbf\x9a\x5e\x01\x2c\x7b\xac\x98\x69\xf4\x1d\x58\xf7\x52\x61\x8f\x51\x3c\x90\x2f\xae\x3c\xca\x50\x13\xd8\xbf\x44\x59\x92\x7a\x03\x38\xde\xa2\x78\x54\x3f\x0d\xb8\xb4\x5e\xd5\x74\x38\xcf\xa0\x10\x68\xdc\xa3\x3a\x5f\x77\x35\xf0\xf6\xa0\xf2\x51\x3d\x63\xe0\xa7\xb3\xf2\x37\x9d\x23\xbc\x75\x71\x40\xe3\x0b\xaf\x1f\xdf\x55\x85\x06\x55\xbc\x99\xec\x07\xc9\xc1\x7c\xa3\xe1\xff\x97\x03\xfa\xbf\xe6\x61\xac\xbb\x39\x72\x1f\xfc\x3d\x0f\xc4\x87\xaf\x36\x56\x7c\x0e\xc0\x05\x90\xf9\x3e\x26\xdd\x72\x12\xa0\xb7\x41\x88\x63\x71\x0a\x60\x7d\x12\x6f\x30\xe9\x01\x3c\xdb\x25\x1d\x8c\x03\x80\x88\x98\xa9\x75\x46\x4a\x40\xb2\xe7\x8c\x78\x5a\x19\xb0\x22\x51\xa6\x44\xbf\x1f\xd8\x60\x28\x13\x44\xe6\x1a\x50\x25\x81\xe2\x04\xb9\x15\xba\xd7\x80\x63\xd2\x72\x1b\x74\xc7\x03\x17\xbd\xe4\x8f\x68\xbf\x01\x6e\x58\xc8\x8b\x6a\x5e\x04\xea\x24\x64\x6e\x6b\xcd\x00\x9e\x7d\x97\xad\xd1\x9a\x0f\x7c\x18\x27\x0b\xcd\x73\x40\x77\xcc\xcc\xc4\xe1\x7e\x8c\xe7\xf5\xe3\xf1\xdf\x73\xc1\x86\x39\x20\x7e\xfe\x0b\x99\x87\xf3\x0f\x9f\x0b\xdc\xc5\x57\x72\x2e\x10\x99\x87\x92\xc6\x3f\x3f\xe2\x9c\x47\xfa\xff\xae\xfc\xe7\x05\xc3\x67\x28\x1f\xc5\x92\x09\xcc\xbc\x2f\xb0\xdc\xfc\x01\xa0\xfd\x7a\xe2\x24\xe3\x5b\x00\x7d\x95\xa8\x12\x2d\x15\x70\xbe\x30\x69\x17\xb5\x0b\x08\x98\x39\x79\xb4\x41\x12\x30\xe7\xc0\x94\x4f\x83\xe7\xde\xc2\x6c\x29\x33\xaa\x16\xb0\xfc\xb6\xd4\x0b\x9d\xb7\x40\x4e\xb5\x54\x9c\x5e\x2d\x90\x67\x35\xf3\xa0\x76\x3d\xb0\x67\xb5\xb4\x28\xe9\xef\x6b\xb9\x01\x25\x33\xa5\x09\x2d\x4b\xe0\xea\x75\x19\x57\xd2\xd7\x57\xa7\x03\x0d\x7d\x33\x34\xd4\x5f\x02\x2d\xc7\xa5\x55\xd4\xda\x80\xf6\xd4\xe9\x63\xd4\xd2\x81\xee\x1f\xd3\x84\xc9\xb9\x60\x0d\x7c\x5e\x81\xe4\x80\x86\xf3\x70\x7e\x8d\x7c\x0e\x90\x1c\xc8\x2a\xfe\xfa\xc8\x90\xe4\x9f\x87\xfc\x3e\x44\x66\xf2\xd7\x41\x00\xff\xfd\xe7\x73\x31\x26\xa7\x86\x54\x77\x1b\x30\xe6\x09\x85\x62\xc8\x04\x54\xf6\x8f\x9b\x4e\x1d\x0f\xe8\x6f\x9a\x70\x55\xf7\x0b\x60\xd5\x2b\xf4\x55\x0b\x80\x7b\xb9\xf0\x4a\xcd\x78\x20\xd4\x42\xe4\xa2\x86\x28\x10\xb7\x42\x74\xb3\x66\x1c\x90\x72\x6c\x72\x84\x06\x0d\x58\xf2\x64\xf2\x79\x4d\x17\x60\xcd\x55\xc9\x0c\xf5\x53\xc0\x26\xa6\x44\x87\xc6\x6b\x60\xd7\x94\xa9\x0d\xea\x5e\xc0\x81\xfe\xa9\xdb\xd5\x8a\x81\x53\xb2\x53\xbf\xa9\x59\x03\xe7\x92\xa6\xcd\x54\x69\x07\xae\x89\x4e\x95\x56\x3e\x02\xdc\xae\x93\xfc\xa2\x9c\x00\x34\x1c\x95\xbc\xa6\x62\x0f\xbc\xb8\x3a\xa5\xfa\x21\xff\xfd\xbc\xc9\xe7\x9c\xc8\x3c\x9c\xc3\x7c\x1e\xee\x7f\x38\x18\xfe\x7c\x2c\x92\x07\x23\xf7\x41\x0c\x9f\xa7\x0d\x3c\x80\x11\x1c\x08\x8b\x7f\xbe\x1a\xf2\xf9\x21\x35\xfe\xf9\x42\x3d\x0b\xc8\x47\x8d\x11\xd0\xea\x05\xb4\x1e\x8c\x9f\xa7\x76\x01\x30\x39\x32\xde\x53\xed\x08\xe0\x70\x7b\x02\x53\x63\x23\xe0\x57\x28\xac\xae\x5a\x0d\x84\xeb\x0a\x9d\x56\x0d\x03\xe2\xf2\x84\x4f\x29\x7f\x05\x12\x4b\x85\xb7\xa9\xfc\x02\x32\x9a\x45\x37\xab\x4d\x01\xb2\xb2\x27\x3d\x27\xfb\xa1\xec\x05\xe4\xa5\x4d\x9a\xad\x72\x1e\xd8\xdd\x21\xde\xa1\x7c\x0b\xf8\x27\x41\xbc\x44\x69\x33\x70\xea\x8a\xf8\x4c\xe5\x1d\xc0\xc5\x15\x12\x50\x7c\x09\xdc\x38\x2e\xee\xa5\x98\x0c\xd4\xe8\x4d\xe6\x51\x7f\xae\xfb\x29\x23\x39\x90\x11\x7e\xef\xdf\xf7\xff\x65\x27\x19\xd7\x09\xac\x05\x34\x66\x99\x97\x08\xe6\x02\x06\x2c\x2b\x61\x91\x0d\x80\xc9\x45\xa7\x79\xe2\x19\x80\x79\x9d\xd7\x8a\x69\x89\x00\xcb\x2e\x6c\xb6\xac\x2a\x60\x69\x30\xd7\x54\xe9\x19\xc0\x72\x5d\xe2\xae\xa1\x07\xb0\x66\xac\x7f\xad\xe7\x0f\x30\xa5\x8a\xee\xd0\xee\x02\xe6\x0f\x4e\x1b\x9b\xd4\x03\x66\x59\x37\xf3\xcc\x8f\x03\xa6\x2e\x8f\xad\xcd\xa7\x02\xc6\xb9\xed\xb9\xf4\x75\x80\x71\x1f\xa1\x49\xe7\x00\xb4\x72\x58\x1a\x5a\x01\xfa\xdb\x50\xa5\xd9\xda\x73\x53\xff\x01\x76\xe8\x8c\xfd\xbe\x58\x5f\x15\x7b\xb5\x27\xb4\xef\xa3\xde\xc5\x3e\xad\x45\x6f\x53\xa8\xf5\xd8\xab\x95\xf6\xbc\x80\xda\x82\x62\x2d\x83\xc6\x5c\xea\x19\x1c\xd1\x4c\x6e\xf0\x32\x88\xc7\x1a\x1d\xcd\xda\xf1\x06\x1b\xb1\x41\xfb\xfe\xed\x6c\x7d\x06\xce\x68\xd4\x55\xa6\xeb\x35\xe2\x89\xea\xba\xc1\x3a\x9d\x92\x46\xf6\x61\xd8\xef\xe5\xf9\x5b\xa3\xca\x0d\x78\xbf\xe3\x92\xf3\xff\xc9\x3c\x08\x0d\x7b\x53\xb6\xa0\x06\x60\x28\x6f\x39\x5b\xa4\x15\xa0\x57\x38\x78\x4a\x18\xfe\xe9\x03\x73\x4b\x58\xaa\xcc\x1a\xc0\x6a\x52\x7c\xa5\x72\x01\x60\x39\x90\xf1\x5d\x33\x00\xb0\xac\xd9\x70\xcf\xc0\x1e\x60\x2e\xd8\x6d\x62\xb4\x15\x60\x88\x9d\x31\x31\x3b\x0d\xd0\xcb\x2a\x67\x9a\x89\x02\x74\xa1\xa6\x53\x8c\x33\x80\x49\x55\xe7\x76\xc6\x18\xc0\x44\x95\xa8\x34\x4b\x03\x68\x15\x60\x19\xba\x70\x8f\x19\x2a\x62\xb1\xde\xc2\xee\x47\x06\x16\x58\xa9\xeb\xf5\xf9\x93\xc1\x4b\x44\x50\x0d\xde\x4f\xd7\xbf\x86\x2c\x9d\xdc\x97\x1f\x0c\x6e\x23\x46\x6f\xc7\x33\x69\x83\xd3\x48\xd2\xbd\xfd\xa8\xc6\x70\x00\x3e\xd4\xb7\x75\x5c\xc3\x32\xcc\xd1\x4b\xba\x6b\xa2\xff\x10\xfb\xb4\xe4\xaa\x2d\x0d\xde\x22\x4f\xdb\xe5\xe6\x34\x7d\x79\x5c\x57\xe7\xad\xe6\xbf\x79\x98\xff\xf6\xb7\xc8\xfb\xff\x4a\xe9\x46\x31\x63\x57\xff\x8b\x8b\xe1\xf3\x41\x66\x51\x76\x85\x12\xca\x83\xf5\xb9\xbf\x92\xda\x01\x58\xb6\x86\x7e\x96\x4b\x02\xac\xd6\xc7\x2f\x55\x06\x60\x33\x76\x11\x5b\x67\x11\x60\x79\x72\xbd\xa1\xfe\x5c\xc0\x52\x69\xb7\xb2\xe9\x56\xc0\xe2\xeb\x99\x42\xb3\xcd\x80\x59\x66\x55\xb0\x85\x36\x40\x57\x7b\x3a\x9e\x39\x1e\x30\xdd\xff\x75\x02\x6b\xb0\x1f\x1e\xc4\x25\xb3\x5e\xb2\x0f\x03\xc5\x86\xed\xf0\xd0\x7f\xff\xa3\xdd\xb0\x18\x8e\xfa\x9d\x1d\xc7\x0c\x7a\x10\x42\x4d\x7e\x1b\x40\x73\x85\xae\xa1\xe7\x8b\x3a\x43\x0d\x84\x52\x75\x1b\xcd\x0c\x4f\x21\x80\xba\xb5\xe1\x04\x6d\x3f\x1c\xf5\x6f\xd5\x25\xd2\x84\x11\x49\x1d\x57\x73\x98\x56\x8c\x28\xaa\x54\x95\xae\x61\x1a\xd6\xe9\x68\x5d\xcf\x36\xc8\xc2\x31\xcd\x1c\xfc\x07\x0f\x33\x72\xfe\xc1\xf0\x3d\x5f\x3e\x07\xa1\x64\x66\x30\x7a\xac\xfc\x1f\x2e\xc6\xa8\x91\x21\x26\xba\x19\x30\x2f\xb1\x9b\x2b\xf1\x11\xb0\x8c\xf1\x98\x36\x43\x11\xb0\x99\x10\x62\x24\xff\x08\xb0\x95\x8a\x8b\x57\xfd\x05\xd8\x1a\x2e\x32\xd0\x3d\x0f\x58\x7f\x58\x77\x96\x76\x18\x60\xe5\x16\xd1\x4d\x64\x00\xe6\xf2\x33\xfb\x18\xf5\x80\xc5\xd2\xaa\x4d\x96\xed\x00\xbd\xf6\xb9\xac\x65\x00\x60\xda\xf8\xad\xd6\x32\x12\x30\x59\x4e\x9c\x32\xdf\x04\xd0\xac\xe0\xaf\xdf\xd1\x13\x6c\xb4\x8d\xe0\x18\xd7\x7f\x3f\x63\x78\x12\x76\x06\x53\x3f\xb8\x19\xf9\x41\xc0\x78\xc6\x9b\x44\x23\x05\x4c\x36\x32\x7f\xa6\x65\xb4\x0e\x53\x8c\xa4\x1e\xde\x32\x66\x41\xcc\xe8\x44\x7d\x2f\xed\x15\x6c\x0c\xd4\xef\xee\x30\x5a\x0c\x2b\x83\x79\xd5\x32\xc6\x2a\xb0\x32\xd8\x53\x51\x46\xa3\x62\xb9\xae\xe8\xb5\xf1\xb4\xbb\x58\xaa\x1b\xf2\x5f\x7d\x20\xcf\x05\xdd\x6f\x3c\x2d\xd1\xe5\xdd\x5b\x12\xef\xd7\xe5\xdd\xe7\x53\x9f\xac\x1f\x3e\xee\xee\xbf\xb8\x98\x13\xa6\x7b\x44\x09\x80\x99\x6e\x79\x43\xd2\x1d\xb0\xd6\x74\x95\x9d\xb1\x08\xb0\xcd\x09\xcc\x52\x50\x04\x1c\xc2\x67\x2b\x68\x4e\x07\xec\x8d\x17\x5e\xa0\x32\x00\x9b\xdf\xeb\xf2\x8d\x5d\x00\xeb\x25\x45\x6c\x8b\x46\x80\x79\xef\x4c\x3f\x73\x3b\x60\x21\x78\x2b\xd1\x32\x15\x30\xfb\xde\x42\xb5\xf9\x01\xd0\xaf\xfe\x94\xb7\x71\x27\xfb\xc0\xbd\x63\xbc\x93\x68\xa6\x4b\xff\x4c\x37\x36\x25\x9a\x4d\xef\x7c\xba\x6c\x5c\x41\x54\xd3\xb9\x6d\xb7\x8d\xbd\x89\x57\xa6\x71\x2d\x2e\xc6\x62\x44\x9f\xf1\xa7\x27\x3d\x26\x3b\x89\x46\x7a\xf8\x83\xb5\xc6\xcd\x04\x8c\xef\xdc\x6b\x34\x0e\x85\x12\x6d\x43\x8d\xa5\xf1\x13\xa8\xd2\xb2\x2a\xf3\x8c\x6f\xc3\xc8\x70\xcd\xf5\xb9\xc6\x0e\xf0\xd1\x5f\x73\xf9\xb4\xf1\x3f\x08\xd5\xff\x4f\x4e\xee\x2f\x9f\x8f\xef\xff\xcb\x78\xe9\xd4\x8c\xbe\xfc\x27\x0f\x42\x3f\x49\xdf\x61\xa2\xc3\x9f\x3e\x58\xee\x61\x7d\x9f\x62\x08\xd8\x16\x3a\x12\xd2\x86\x80\xa3\x89\xaf\x8a\x62\x05\xe0\x68\x15\x5b\xa4\xf9\x06\x70\x20\xd2\xea\x0d\x18\x80\x5d\xfe\xba\x71\xa6\xc7\x01\x1b\xa3\xdd\xf1\xcc\x05\x00\xeb\x7d\xc9\x26\x2b\x23\x80\x11\x59\x63\x6a\x3b\x01\x30\x0f\x6f\xad\xb2\x5b\x0b\x98\x15\xf4\x68\xd9\x3b\x02\xa6\x9b\x88\xb9\xcc\xfe\xde\x97\x26\xda\xc4\x29\xf3\xe0\xaf\xf7\x4c\x4a\x88\x5c\x8b\xd6\xbf\xf9\xb8\x67\xc1\x26\xb5\xc4\x4d\xb3\xcc\x47\x97\x4c\x17\x10\xd7\xcc\xba\x6a\x9b\x4c\x3d\x89\x57\xf4\xc9\xc3\x5c\x58\xbc\xe9\x52\x8c\x31\x11\xb8\x56\x61\x5a\x05\x71\x63\xc7\xcb\x74\xfa\x28\x28\x18\x2d\xb8\x68\x61\xea\x06\x6b\x43\xea\xff\xfb\x5c\x20\xfd\x7f\xc5\xfd\x5a\x2f\xc7\xc4\xfd\xe1\x41\x8c\x9d\xf4\xeb\x85\xfc\x01\x46\xb7\x71\x9e\x98\x0a\x60\x6b\xcd\xf8\x3d\x65\x22\xe0\x28\xe8\xf0\x55\x66\xf0\x53\x91\xae\x77\xbb\xb2\x10\xe0\x52\x10\x1d\xa1\x43\x05\x9c\x18\x29\xa7\x0d\x5a\x00\x87\x89\x6b\x2d\xcc\x94\x00\xdb\x88\x22\x25\x4b\x11\xc0\x4a\xb2\xa4\xca\xe6\x17\xba\x98\x89\x35\xd5\xf6\xdf\xf1\xc1\xc2\xee\xd5\x4f\xc7\x12\x0c\x98\x27\x0f\x9c\x74\x72\xc4\x51\xd3\x79\xc4\x02\xe6\x91\xae\x0f\xa6\x85\x44\x30\xeb\x7c\xa7\xa7\x69\x19\x11\xce\xca\x7f\xbb\x87\xbe\x9b\x70\xb0\x1a\xf7\x7c\x9c\x99\x14\xe1\x63\x79\xe1\xf1\x0e\xb3\x49\x44\x1a\x4b\xe1\xfe\x2c\x7a\x2f\x51\xc8\x70\x23\xb9\xb0\xca\xfd\x66\x6f\x88\xf3\x16\x76\x37\x5e\xd2\xbb\x89\x36\x7a\xcc\x95\x7d\x66\xda\x44\x9f\xa9\xf9\x85\x01\xb3\x30\x08\x9b\xcc\x3c\x7b\xd4\xec\x09\x26\x1b\x7f\xfc\xaf\xfd\xc0\xf7\xbd\xf9\xf7\xde\x49\xff\x9f\xe4\x20\xa8\xef\xb4\x19\x82\x96\x7f\x78\x10\x92\x8b\x71\xcc\x34\xaf\x96\x7c\x0a\xb8\x24\x3a\x4e\x91\xed\x05\xdc\x56\x7a\x96\xaa\x52\x01\x37\xbb\x88\x34\x9d\xe2\xc1\xff\x9e\x5c\x6d\x94\x0a\x38\x9d\x59\x1d\xc4\xd8\x08\x38\x04\x16\xbc\xb6\x73\x1d\xe6\x06\xef\xb0\xc2\xef\xc6\x3a\x27\xa1\x9c\x31\xa9\x4d\xd6\xe5\x03\xfa\xcd\xb7\x72\xd7\x3a\x1d\x1f\x60\xd0\x5f\x13\xe3\x6d\x1e\x7d\xf6\x30\xdf\xc1\x3d\xe5\x98\xda\x76\xcc\x5c\x87\xfb\xd9\xee\x72\x4b\x8c\xf9\x65\xee\x4f\xbb\x0b\x8d\x3b\x2d\xf2\xb8\xdf\xec\x59\x0d\xae\xe6\xb5\x04\xcb\xda\xf7\xae\x97\x85\x19\xe1\x63\xb5\xad\xda\xc9\xe2\x21\x11\x66\xe5\x7c\xe3\xa4\x85\x12\xb1\x8b\x29\x77\xf9\x26\xe3\x18\xb1\x9e\x15\x78\x31\xdc\x62\x3f\x51\x63\xde\x7a\x76\xb9\xc5\x1d\xe2\xb9\xd9\x95\x53\x85\x8c\xb1\xc4\x4f\x7a\xd0\xff\xbd\x1f\x28\x14\x25\xde\x3a\x11\x2f\x53\x70\x1c\x54\x55\x01\xe5\xb4\x31\x4b\x00\x9a\xa1\x5a\xfb\x78\xd1\x3f\x3c\x88\x13\x43\x7f\xb2\xe8\x5a\xc0\x6d\xaa\xf1\x0b\xf1\x16\xc0\x23\xc5\xce\x5b\xd6\x01\xf0\xf8\xe0\xde\xa0\xa6\x04\x78\xa9\x86\xed\xd4\x67\x02\x1e\x2e\x89\x67\xe9\x2c\xc0\x55\x20\x7b\x89\x95\x14\xba\x1d\xa7\x14\x6c\xb3\xff\x07\xd7\x6d\x45\x4a\x37\xb9\xb8\x61\x8b\xe5\xd9\x7b\x84\x7b\x1d\x92\x98\xbe\xed\x93\xbd\x1c\x51\x69\xb1\x9e\xab\xe7\x16\x43\xe6\x65\x91\x3c\x54\x6b\x3d\x73\x3a\xd7\xdf\x4d\xa2\xb1\x9f\x59\xc4\x4d\x77\x95\xac\xff\xc6\x12\xe3\x16\x3a\xb7\xdc\xd5\x64\x66\x71\x3b\x1c\x2c\xaa\xc6\xb0\x1e\x71\x5f\x3b\xaa\x5c\x97\x60\xd1\x09\x75\xdb\x23\x97\xf7\xb0\x1c\x09\x57\xeb\xae\xf3\x07\x98\xb7\x88\x75\xac\xf2\xd2\x68\xd6\x61\x22\xdb\xd2\xf2\x24\xc7\x52\x96\xd8\xc5\xf2\x3e\x6e\xcc\xbc\x40\x34\x9b\xf3\xa8\xf2\xbf\xb9\xa8\xa1\x75\x30\x86\x2a\xcf\xcb\xad\x97\xd1\x92\x73\x1f\xd5\x0f\xe8\x46\x2a\x6a\x8e\x49\x07\xe8\x9b\x94\x46\x8f\xbd\xfa\x87\x07\x21\xf3\x41\xbc\x9d\x0d\x35\x27\x97\x02\x01\x69\xac\x29\xd2\x03\x80\x3f\xd7\xd5\x54\x5d\x16\xf0\xcb\x0b\xb4\x31\x9c\x0d\x78\xaf\x98\x17\x66\xfe\x0a\x70\x9f\x94\xa5\x65\x63\x8b\x6a\xe7\xb9\xbb\x96\x39\xbf\xc6\x0a\x7b\xf5\x92\xaf\x9e\xea\x30\xb1\x8e\xbb\x3f\xce\xf7\x1a\xc4\x59\xfb\x3e\x0f\x04\xe8\xb1\xf5\x99\xc1\x9c\x55\xbe\xf3\x3a\xe7\x32\xf7\x71\xee\x78\x2f\x7a\xd9\xcc\x6a\xe6\x34\x78\x7f\x6c\xfa\x61\xb9\x8c\xf3\xdd\x5b\xf0\xef\x7c\xa8\x4a\x41\xab\x36\xee\x0a\x57\x5c\x4b\xb7\xb2\xe7\x3e\x70\x0a\xba\x1c\x68\x2d\xcc\x7d\xea\xe4\x75\xf6\x93\xf5\x78\x62\xba\xbd\xfe\x19\x01\xeb\x5a\x42\xc1\x7e\xd4\xf1\x2a\x6b\x05\x22\xc6\x7a\xc5\xd1\x51\x56\xa7\x89\xcd\x96\xcc\x83\xa2\xd6\x02\xc4\x69\xe6\x16\xfc\x0f\x0f\x44\xa1\x28\x52\x07\x75\x62\xfe\x8c\xc3\x83\xaa\xd0\x2e\xeb\x34\x3a\x11\x30\xc8\x90\xcd\x12\x48\xf9\x93\x07\xe1\xfc\x49\xe1\xce\xb8\xfa\x3f\x73\x52\x82\xf6\xeb\xbf\x13\x5f\x08\x84\xbe\xa2\x1f\x9a\xae\x03\x84\x4b\xd8\x3f\x51\x79\x09\x04\x07\xf9\xf9\xd3\x76\x01\xfe\x57\x66\xdb\x30\x4f\xe0\x91\x37\x73\xb9\xa7\x63\x17\x56\xba\x85\xed\xf8\xec\x69\x3d\xcc\x47\xd5\xda\xb0\x1f\x64\x87\xc4\x11\xfb\x2c\xcb\x7e\x5d\x09\x2b\xf9\xa1\x6d\xd9\xc2\x2e\x0f\xf5\x78\xbd\xd3\x7a\x0a\x9b\x13\x22\xd6\x28\x6e\x33\x8e\x63\x13\xa4\x35\x9c\x8b\xa4\x68\x1b\xcc\x39\xec\x6f\x4f\xce\x89\xbb\xf2\xdb\x2e\x9f\x3b\xce\x47\xe4\xc2\x4c\xfb\x33\x5c\x69\xef\xad\xa5\x17\xec\xda\xb9\x69\xee\xa7\x4e\x0c\xd8\x4f\xe1\x96\xb9\xb4\x1e\x1d\x6b\x6f\xc5\x7d\xed\x3c\xfa\xe0\x80\x7d\x38\x21\xe4\xd0\xbf\x4f\xcd\xee\x14\xe1\x61\x3b\x6b\x8f\x84\x7d\x2a\xe1\x6b\x6b\xfd\xbf\xeb\x60\x74\x81\x0c\xef\xf3\xe5\x24\x62\x4a\x35\x6f\x3f\xdc\x14\xa7\x0f\xaa\x7e\xcb\x44\x36\xe5\x5f\x1c\x84\x6f\xaf\x8c\xe4\x98\xde\x3f\x3c\x48\xf4\x41\x5d\xf9\xc9\x47\x80\xd8\x25\x34\xb9\xa9\x7d\xc0\xec\x6d\xd6\xc9\xca\xef\x81\xa8\xef\x9e\xf5\x86\x79\x78\x15\x9a\x1d\xbd\xd4\xf6\x06\x0a\xfc\x1f\x2d\xea\x74\x8b\x82\x8e\xe7\xbe\x7c\x8a\xbf\x19\x71\xcd\xb9\xfc\xac\x50\xd8\x78\xc2\xce\x6e\xf9\x13\xef\xe8\x0d\xdc\xd5\xd6\x82\x03\x7b\x63\x7a\xdf\xdd\xb7\xdd\x37\x70\x7a\x36\xa3\x69\x86\xbd\x29\x5b\x28\xc6\xf9\xae\x88\x23\x95\xed\x1d\xfd\xbd\x5a\xcb\xe1\x19\xfb\x61\xf8\xe3\x6b\x5e\x4e\x34\xf6\xa7\xf0\xb4\xb2\x05\x4e\x6b\x39\x56\x21\x2b\x4b\x17\x39\xdd\xe7\xec\x0e\xf4\x3a\x59\xed\x2c\xc6\x79\xe9\xd7\x76\xb4\xc4\xd9\x8e\x3b\xc5\xe7\xca\x81\x5f\xce\xd7\xb8\x01\x5e\xc2\xfb\xd2\x9d\xf3\xb8\x6b\x3c\x84\xf6\x2c\x71\xd2\xe1\x76\x3a\xcb\x15\xe8\x38\x6d\x24\xc4\x1d\x99\x3b\xda\x9c\x76\x12\xda\xf6\x9f\xff\x77\x1d\x8c\x65\x4e\x35\xe6\xed\x87\xb4\xc9\x3c\x1f\x9f\x1a\x21\x14\x3f\xa8\x66\xd5\xa3\x79\x9f\x1f\xc8\x3c\x88\x90\xb7\x42\xf2\x83\x1a\xdb\x20\x93\x37\x6e\x03\x30\xbf\x5f\x65\x81\x30\x17\x48\x0a\xa5\xd2\xa6\x52\x80\x05\xe3\x2c\xba\x15\xf7\x02\xf3\xef\xb9\x24\x19\x3c\xc0\xd3\x59\xb3\x43\x13\xec\x76\xc1\x31\xa4\x3a\x2d\xcf\x87\x41\x54\xf8\x36\x6c\xdd\x13\x66\x37\x30\xd3\x9d\x5a\xd2\x1b\x7b\xf1\x67\xb4\x53\xf6\x43\x9d\xf9\x26\x9f\x9f\xdb\x6f\xfb\x3d\x37\x79\xca\x53\x57\x27\x97\xfe\x2d\x49\xed\x77\x14\x5c\x8e\x0f\x08\x27\x64\x5c\x7f\xe3\xda\x3e\x90\x3d\x77\xf3\x30\xff\x42\x71\x57\x62\x87\xc4\x44\x9f\x38\xe7\x21\xca\x3e\x19\x2d\x78\x98\xee\x11\xcb\x11\x0b\x2f\x39\x58\xe3\x7e\x9b\x33\x2f\xc4\xaa\x98\xe2\xe1\xcf\x39\x16\x34\xbe\xf0\x84\x47\x20\x67\xc0\xaf\x9e\xe4\x5f\xb6\xd3\xdc\x39\xdc\x25\x9e\x8e\x5b\xcb\xdc\x85\xb9\x77\x5c\xb7\x6e\x71\x77\xdb\xce\x65\x3b\xf1\x6e\x13\xe9\xf0\x9f\x13\xd3\x79\x9c\x94\x44\xb4\x24\xef\x7c\x54\x91\x19\xe7\xf8\x6f\xdf\xd3\x81\x3f\xe7\x9e\xf4\xbd\x62\x6a\x28\xbc\xfe\x2d\x98\x3b\xc6\x9c\xe7\x03\x2e\x91\xa3\x4c\xb0\x04\x96\x37\xaa\xeb\x4c\x6e\x05\x32\x3f\x18\x3d\x93\x73\x07\x96\x68\xd9\x49\xe8\x8b\xe1\xe9\x02\xdb\x80\x19\x0e\xb4\x81\x15\xb3\xb2\xe7\x9f\x0b\x31\xff\x66\x18\xda\x95\xf3\x21\x6e\xe2\xbb\x33\x01\xd2\x87\x1d\x17\xc8\xb7\xdc\xf5\x9e\x58\x13\x9b\xfe\xa5\xc9\xd8\xdd\xa7\xc3\x7a\xe9\x89\x9a\x0a\x0f\xf4\xa9\x2c\xa9\xba\xf4\xcd\x7b\x65\xdf\xfb\xf4\xce\x12\x31\x9f\xc8\xfe\x2b\xc9\xe7\x8f\x67\xf8\x0a\x0f\xe8\x24\x9e\x20\xe7\x1f\xed\x5b\xe2\x7b\x99\x2d\x1b\x77\xa8\xf0\xab\x9f\x24\xbb\x68\x56\xe9\xce\x56\x3f\x25\xf6\xfb\x28\xdd\xbc\x8d\xbe\xa7\x38\xb1\xa1\xb1\x5b\x9f\xf8\x80\x53\x1a\x94\xb8\x65\xbe\xef\x4e\x4e\x55\x60\xf5\xc6\x69\x3e\x57\xb9\xba\xbe\x06\x39\x87\x7c\x7c\xb8\xcb\x3c\x8f\xae\x6d\xf6\xea\xe1\xde\x74\xf3\xfe\xd7\x3a\x98\x26\x59\x36\xa8\x33\xbe\x4e\x3c\xc9\x5b\x07\x7c\x3f\x97\xcc\x41\x20\x39\x08\x72\x0e\x3e\xe9\xff\x91\xb9\x20\x6b\x57\x52\xee\x0f\xea\xc6\x3b\x0a\x01\x22\x66\xc0\xe6\x6b\x7a\xa1\x33\x05\x81\x8d\xeb\x99\xca\xba\x4d\x7d\xa2\x2b\x4b\x3c\x4a\xec\xb9\xed\x62\xa9\x91\xd1\xfb\x22\xd4\x9a\x4f\xcc\x79\xb8\xf4\x41\xd2\x3f\xf5\x8e\xd1\x8d\x85\x1b\x17\x4f\xae\xfe\x18\x56\x78\xe5\xc0\xca\x49\xd7\x96\x05\x45\xb6\xbe\x59\xfd\xfd\x6c\x55\x90\x60\xcf\xe1\xd5\x38\xdc\x19\x5c\xdb\xfb\x75\xb9\xc7\x3e\xf1\x90\x8d\x7d\x15\x8b\x97\x91\xb9\x27\x3b\x7c\x42\xa7\x0d\x8c\x4e\x9e\xbe\xd5\x2a\xf4\xfc\xc0\xca\x84\xf5\x9b\x0d\x42\x7a\xd9\x33\xe6\x5c\xdc\xa0\x15\xf2\x94\x9d\x19\x9b\x91\x13\x16\x72\x9f\x5d\x1f\x7d\x7a\xb5\x7f\x48\x32\x47\x3f\x42\x20\xdb\x24\x58\x97\xb3\x2d\xc4\x7c\x65\x5c\xb0\x3e\xe7\x41\x60\xf9\x72\xbd\xc0\xf7\x5c\x53\x5f\xf9\xa5\xec\xc0\x46\x6e\x8c\xb7\xfc\x9f\x75\x20\xf2\x52\xa8\x79\x50\xd5\x7a\x86\xe6\x57\x98\xf2\x7f\xbf\x76\xb7\x1c\xd2\x28\xa1\x91\xf5\xaf\xe4\xdf\xf7\x25\xef\x01\x93\x3e\xd8\x9e\xec\x19\x95\xe3\x35\x81\xfd\x2a\x2a\x9f\x25\xfd\xfb\xfa\xf6\xcc\x35\xb1\xd4\x2a\x6e\xd7\xca\x3b\xe4\x98\x6b\xc7\x6a\x4a\x59\xfb\x26\x44\x31\xec\x74\xf5\xba\xc5\xaf\x92\x9e\xa4\x6e\xbd\x98\x99\x7c\x7f\x53\xd8\x8a\xda\x13\xde\xf3\x93\x4e\xb3\x72\x14\x0e\x78\xcf\x91\x7d\xb8\x67\x53\x74\xa1\x7a\x6c\xc5\xef\x31\x5b\x0e\x6e\x5d\x32\xdb\xb9\xa7\x7c\xad\xc5\x86\x83\xb3\x1b\x7b\x2f\xac\xfc\xb8\xf6\xc1\xec\x63\x7d\x59\xcb\x26\x67\xaf\x99\x5d\xd8\x2f\xb3\x48\x29\xab\x28\x36\xbf\xff\x4e\x6a\x56\xe6\x9d\x58\xea\xc0\xe2\x44\xf7\xa5\x47\x62\x9e\x0c\xbc\x9e\xa7\xb0\x78\x47\x4c\x02\x9b\x15\x47\x2c\x6a\x8b\xf6\x62\x3f\x8d\x3e\x96\xfe\x3d\xaa\x89\xa3\x16\xf1\x4f\x5a\x54\x94\x20\x27\x2f\x24\x31\x4d\x3e\x42\x82\xf3\x2b\xc0\x25\xc5\x25\x22\x92\x2b\xea\xcf\xbb\x75\x23\xca\x5b\x0f\x53\xf8\xf5\x91\x1c\x88\xfd\xb7\x21\x0d\x5b\x38\xa4\x64\x0e\x00\x99\x07\x41\xfa\xe0\xe4\x7d\xf8\x43\xfc\xfc\x90\x33\x6e\x63\xf3\x29\x14\x36\xe5\xdc\x0a\xd9\x62\x91\xdf\x1d\x5a\xa7\x32\xa9\x7b\xd4\x04\x9f\xbd\x3d\x14\x67\x3d\xca\x72\x7b\xcd\x99\xdd\x82\xbe\x13\x83\x84\xcf\xcd\xc8\x6d\x9a\xb3\x26\x69\xd5\x5e\xb5\xd5\x73\x56\x74\xae\xfa\x9e\x9b\xb2\x7c\xcf\xfe\xdc\x8d\x7b\x57\x1f\x5d\xc2\xba\x65\xb7\xf5\xea\xd2\x8f\x19\x8e\x5f\x16\xe4\x1b\x65\xec\x4d\x9f\xff\x7b\xfb\xa6\xeb\x0b\x45\xd3\x2e\xf7\x4e\x5e\xdd\x91\xba\x3a\x4d\xa3\xb7\x76\xe5\xad\x61\xee\xe3\x47\xd2\xda\x7e\xa3\x8c\xd2\x61\xee\x63\xff\xfc\xda\x81\xdd\x09\x01\x09\x06\x73\x09\x36\x6d\x8e\xcf\xfc\x84\xb9\xae\xec\xc5\xb1\x03\x24\xef\x11\x7f\x2f\xee\x03\xc7\x25\x5c\x67\x4e\x57\x5c\x13\x67\x61\xe8\x8a\xb8\x09\xb1\x61\xdc\xd1\xfe\x8b\x80\xb1\xf6\x02\x3c\x1e\x46\xa3\x6d\xa8\x8e\xff\x8b\x03\x59\x5e\x37\xb2\x7e\xd2\x07\x3f\x9e\x3e\xa4\x65\x4b\x06\xb5\x3f\xa5\x82\xf7\xff\x7f\x8e\xaa\x74\x9b\xae\x3f\x5e\xfc\xc5\xf7\x6b\x79\x9a\x3a\xf2\x49\xf7\xee\x94\x45\x98\x9f\xa2\x27\x95\xb1\xcf\xf8\xbb\xb5\x7b\x0b\x1e\x0c\x3a\x9c\x15\xd5\x3e\x67\xc1\x26\xbd\x3d\x13\x16\x4f\x58\xe6\xb2\x2c\x70\xd7\xce\xc2\xe3\x6b\x5a\x52\xd6\xe6\xf7\x55\x58\xae\x3f\x39\x6f\xf6\x76\xf9\xf6\x6d\x1b\x4b\xe7\x9c\xda\x82\x9e\xce\x35\x19\x71\x16\x1b\x17\xf5\xa9\x2f\x77\x9b\x7d\x37\xe7\x57\x5f\xe7\xe2\x0d\xb3\x8f\xae\x7e\xd5\x9f\x9c\x2e\x30\xbb\x6d\xa5\xfd\x80\x50\x72\x79\xac\xd9\x8a\x92\x81\x3d\x09\x11\xb1\x6e\x4b\x6f\xb2\xa7\xc4\xaf\x8e\xcd\x59\xb4\x88\x3d\x77\xf6\x89\x98\x49\xe9\x6c\x76\x67\xb4\x54\x74\x44\xba\x32\x27\x38\xec\x71\xf4\xf4\xd4\x9f\x9c\xdd\x21\xfa\x51\xe3\x92\x2b\x38\x9c\x00\xf1\xc8\x5b\x0b\xdc\xb9\xca\x7e\xf6\xc0\x74\xfa\x50\x1d\xa6\x7c\xbe\xc7\x8b\xcf\xbb\xcc\xe1\xfb\xdc\xa4\xff\x4b\xd6\xbf\x37\x7f\x48\x4f\xf3\xcf\x89\x21\x1f\xb0\x2f\xbf\x86\x97\x1f\xd3\x51\x50\x3b\x93\xf7\xbb\xef\xc1\x86\x1a\xf1\x89\x14\x4a\xfd\xef\xba\xbb\x4a\x79\x52\x42\xd7\xea\x6e\xbf\x33\x7a\x4e\xbd\x73\xbc\xf9\x66\x97\xe3\x78\xc7\x03\xf9\xd9\x57\x3e\x85\x9a\x45\xf8\x67\x52\xce\x5d\x49\xf5\x4b\x0d\x4b\xfc\x5d\xf2\x63\x27\x63\xa9\x4e\xac\xc9\x99\xa9\xe5\x09\x2b\xc6\x87\x0b\x9c\xba\xf1\x7e\x5d\xd6\x98\x50\xa9\xa3\xd4\x3e\xa3\x65\x5f\x42\x8d\xf7\x97\xf5\x4f\xcf\x58\x10\x52\xb4\x77\x42\xff\x83\x94\x5d\x21\x07\x76\x5d\x1b\x48\x4b\xf8\x1e\xaa\x9d\x67\x33\xf0\x75\xae\x7f\xa8\x51\xae\x0a\xdb\x3a\xee\x60\xe8\x8a\x0d\xe7\xd9\x87\x63\x3c\x83\xab\xd7\xbb\x73\xf4\x22\x58\x21\xa3\xd7\xe8\x72\x96\x87\x5a\x84\xe8\x64\x7d\xe3\x94\x07\x3d\x08\x2e\x5a\x91\xc5\x1d\xef\x5f\x10\xbc\x34\xf3\x04\x57\xcf\xf7\x49\xd0\xc7\xa5\x8b\xb9\x89\x5e\xed\x00\x75\xf2\xc8\x7d\x40\x72\x20\x19\x7c\x1e\x66\xf3\xeb\x91\xf5\x97\x58\x0d\x69\x05\x2f\x1f\xa7\x7f\x72\x2d\xcf\x17\xef\x78\x30\xe4\x07\xb6\x4a\x36\xa9\xf2\x7e\xf7\x3d\xfe\x42\x40\xa0\x93\x42\xa9\x6c\x7a\xe1\x24\x23\x21\x7a\xb7\x34\xff\x69\xb2\xde\x67\xd5\xfb\x7b\xeb\x1e\x8f\xb1\x2e\x63\x8e\x5d\x97\x75\x3f\x21\xc0\xda\xf7\x9f\xe4\xb1\x77\x18\x89\xe2\x73\x32\x62\x16\xd7\xbc\xc9\x93\x4f\x9a\x14\xbc\xef\xd6\xd3\x4b\x9c\x54\x39\x9f\x9d\xd5\x0f\xdf\x4a\xa7\x75\x7b\x2d\xb8\x31\xba\xff\x5c\xf2\x7a\xaf\xb5\x65\x42\x03\x4b\xe6\x4b\x79\x5d\x28\x59\xce\x16\x8e\x6b\xf1\xea\x3e\xd1\xc1\x9e\x15\xab\xe9\x5d\x75\x28\x81\x5d\x1e\x9d\xe4\x43\xdd\x2f\xc5\xe6\x44\x5a\xf9\x68\x15\xbd\xe5\xc4\x87\x7a\xfa\xe8\xef\xda\xc9\x39\x16\xd4\xe9\xcd\xde\x1e\xcb\x81\x7f\xb8\xcf\x81\xad\xee\xdc\xa9\x7e\x4b\xbd\x13\xb6\x24\x72\xe7\x7b\xed\xf1\xa6\x6c\x9c\xc4\x3d\xeb\x1e\xe1\x7d\x36\xa7\x9c\x7b\xdb\x2d\x1a\x30\x0f\x1c\xb9\x0f\x48\xff\x7b\x03\x9f\x93\xd9\x9b\x35\xa4\xa5\xfc\xfd\x3f\xc4\x01\xf4\x8b\xd6\xf3\xe6\x02\x75\x66\x36\xf1\xf2\x84\x5e\x7a\xb6\x14\x0f\xea\x43\xc9\x37\xbc\x7f\xaf\x32\xff\xc3\xa8\x41\xbd\xd4\xda\x71\x6b\x46\x24\x45\xe2\xf0\xbe\x8f\x66\x1a\x73\xa4\xbb\xf2\xbe\xb7\xe5\x31\xd6\x18\x5c\x5d\xae\xf5\x6a\x87\xf7\x14\x47\x9d\x39\x42\x2f\x1a\xe6\x9a\x84\xc4\x85\x9c\x79\xb1\x7a\x8b\x7b\xd4\x61\x6f\xb9\xe7\xa9\x17\x72\x62\xbf\xb8\x84\x3e\x17\x7e\x25\x12\xf7\xde\x69\x6a\xa3\x38\x7b\x42\xec\x3a\x27\xd3\xda\x19\xec\x43\x91\xaf\x9c\x05\xaa\xde\xb3\x5f\x45\xd8\x3a\xdd\xbb\x3e\x8a\xe3\x1e\x12\xed\x12\x77\xe1\x0a\x27\x3e\xb8\xc9\xb9\xb1\xd4\x99\xf3\xc4\xff\x96\x8b\xe7\x89\xdd\x5c\x51\xdf\xcd\x2e\x0a\x47\xf2\xb8\x5e\x5e\x97\x5d\x7a\x0e\x9a\x72\xe3\x3c\x7f\xbb\xcc\x2e\xee\xe5\x9e\x72\xab\x71\x39\x53\xb4\x8d\xfb\xdc\xa5\xcc\x65\xdb\xae\x72\x82\xe2\x74\xcf\x25\x20\x7f\x14\x41\x73\x50\xf8\xb3\x0f\xc8\x73\x60\xad\xf4\x90\xee\x2e\x1e\xf9\xfe\x0f\x71\x20\x03\xc1\x0f\xb5\x06\xf5\x2b\xeb\x05\x6f\x4e\xce\x6b\xdf\x37\xbc\xe7\xeb\xe3\xaf\x1f\x78\x73\x12\x6a\x26\x7f\x1e\xf2\x3f\x25\xba\x78\xcf\x9b\xe3\x47\x7b\x99\x13\x25\x28\x94\xdd\x9b\x7a\x6a\x14\xfd\x26\xfd\x5e\x1f\xd2\xfd\xc6\xa4\x50\x35\x60\xa1\xe3\x0f\xb6\x9b\xb8\xb9\x42\x64\xce\x37\xe3\xd8\x33\xae\xaf\x7c\x2f\x7e\x9b\xb3\xbe\xce\x27\xc3\xc5\xfe\xdb\x8e\xd2\xed\x01\x6f\x6c\x4f\x7e\x7b\xdd\xb2\x2b\xa8\xde\xda\xb6\x73\x3f\x67\x41\xc0\x7c\x6b\xf1\x97\x5f\x38\xaf\x7d\xb6\x59\xd7\x36\x5d\xe2\xfc\xf2\x91\xb5\x7e\x5f\x9f\xc5\x35\xf7\xcc\xb0\x61\xdd\xb6\xe4\xce\x77\x2f\xb4\xf9\x74\x73\x0e\x77\xb5\x5b\xb3\x6d\xd0\x55\x21\x6e\x89\xab\x9c\xcd\x8d\x0b\x95\x5c\x38\x06\xdb\x4e\x2a\xbd\x41\x48\x39\x58\xd9\xf4\x9d\x8c\x26\xdc\x6c\x0b\xec\xe2\x8e\xc9\x10\xc6\xf6\xc2\x36\xbf\x0e\x79\x12\x1b\xad\x9c\x6d\xf7\xee\xb7\x23\x0a\x2d\x4f\x01\x31\xfc\xf3\x6e\x05\xff\xf9\x58\xc0\x3f\x2f\x4a\xa6\x0e\x69\x15\x2f\xf7\x86\x2b\xf3\x84\xe7\x7b\x7f\x67\xbe\x4c\x1a\xd4\xb7\x51\x1f\x2e\x0c\x6a\xd3\x82\xcf\xfb\x07\xf5\x6e\x42\x97\xc1\xa0\x5e\x93\xec\xe7\xad\x93\xd3\x67\xc1\x5b\x47\xbb\x33\x86\x7e\xa7\xcf\xbd\x0c\xcc\x3c\x28\x78\x77\x39\x01\x18\x44\x49\x9f\x9d\xdf\x84\x06\x87\x16\x9d\xd3\xc1\xc1\x18\x17\x79\x94\x69\xe8\xb1\x9d\x38\x9d\x5d\x6e\xa7\x68\x3f\x97\x88\x3a\xb6\xca\x31\xcf\x32\x8c\x50\x6c\xb8\xeb\xec\xcd\x38\x4b\x28\xb1\x69\x4e\xc7\x2d\x14\xba\x63\x88\xe9\xb6\x77\x2c\xda\x3f\x15\x73\x07\xec\x23\x2d\xe6\xbc\x99\x42\x50\x6d\x9a\x2d\xce\x36\x33\x09\x2b\x1b\x2d\xc6\x82\x87\x93\x09\x7b\x1b\x75\x8b\x0f\xb5\xf9\xc4\x52\xcb\x78\x46\x50\xf5\x3b\x62\x0b\x2b\x97\x31\xe7\x46\x20\x71\x9a\xc1\x61\xdc\xbe\xd2\x43\x5c\x65\x84\x30\x3c\x2e\x5e\x20\xda\xcc\xb8\x16\xa7\x4a\x57\x61\xb2\xe9\x18\xa6\xc8\xa9\x17\xa0\xd0\x23\x80\x8c\xdb\x43\xf5\xfe\x9d\x87\x32\xb4\xff\x89\x9d\x4d\x19\x83\xda\x95\xf6\xc6\x7f\x50\xdf\xe5\xb4\xf3\xde\xf7\x67\xf1\xdf\x19\x83\x5a\x67\xd3\xcb\xab\xb3\xe2\xe8\xd0\xbc\x0c\x92\x83\xd9\x77\x74\x48\x37\xf3\xef\xf7\xae\x9c\x0a\x88\x77\x53\x28\x29\xfd\x80\x4e\x8b\xe4\xa1\x59\x5d\x80\xed\x01\x95\x46\xdf\x8b\xd8\x10\x72\xcc\x30\xc8\x65\x23\xc2\x16\xb3\x4d\x4f\xd9\xf4\x41\xa5\xf0\xa6\xc5\x46\xa6\x32\x31\x70\x55\x83\xe9\x61\x96\x44\xfc\x7e\xe1\xc0\xf8\x32\x3c\xd7\xe2\x1e\x0c\xe1\x4c\x2b\x30\x91\xff\xa5\x02\x69\xe3\x2a\x63\x5a\xc7\x61\xd0\x68\xb5\x26\x12\x6f\xed\x30\xd5\x78\x8b\x71\xf2\x73\x39\x18\xd3\xe6\x1a\xd7\x3e\x51\x87\x31\x2d\xd9\xf8\xd3\xfd\x14\x58\x1b\x1e\x33\x11\xbf\xab\x04\x27\x43\x53\x93\xa8\xaa\x9f\xf0\x34\x68\x30\x89\xbb\xde\x8d\x08\xfd\x6a\x13\xb7\x2b\x8b\x90\x4c\xdd\xf0\xe7\x39\x70\x84\xcf\xc3\x0e\xe7\xa1\x94\xff\xbb\xfe\x8f\x16\x43\xeb\xfd\xc5\xd7\xdf\x9a\x83\xfa\xc0\x80\xcb\xcb\x07\xaa\xe4\xfb\x40\x24\x07\x43\xfa\x7f\xa4\xff\xbb\x92\x9f\x07\x90\xe4\x0d\x4c\x58\x4e\xa1\xcc\x61\x01\x9a\xbb\x27\x8d\x0f\x49\x01\xac\xa4\x65\xfb\x3d\x66\xe3\x8d\xbf\xb5\x26\xc3\x51\x1e\x37\x53\xc6\xe8\x95\x5b\x5d\x42\xd1\xe6\xab\x86\x51\x16\x22\xc8\x39\x56\x42\x0b\x36\x5d\x81\x8c\xaa\x4e\x23\x49\xe3\x24\x64\xb6\xba\xd2\xae\x19\x79\xe0\x74\x57\xa5\x41\xc8\x30\xef\x90\x8f\x09\x80\xfa\x18\xea\xc5\xee\x78\xfc\x54\x7b\x4b\xf5\xee\x54\x42\xbb\x5a\x33\x35\xee\xdd\x58\xb4\xaa\x33\xa9\x4f\x5a\xdd\xd0\xa0\x21\x40\x4d\x6c\x2a\xc7\x33\x35\x82\xba\xf5\x41\x33\x9e\xaa\x35\xea\x35\xd6\x9d\x40\xbb\xaa\x26\xd5\xfb\xf6\x12\xbc\x53\x5d\x02\xec\xaf\x18\xaa\xfb\x2a\xbf\x0f\x43\x1c\xe0\xef\xc8\x36\x1e\x27\xd3\xe1\xf7\x8d\xd7\x8f\x57\x6e\x03\x99\xbc\x73\x70\xe2\x10\x0f\x40\x72\x40\xc3\x1c\x0c\x99\x03\xc0\xf7\xfd\xd7\xf2\xe7\x06\x91\xf7\xdf\xa3\xd2\x81\xd1\x52\x14\x4a\x78\x15\xa0\x9a\x2d\x54\xe9\xab\x03\x58\xa4\x4b\x1d\x71\x4e\x02\xbc\x4c\x15\x7f\xda\x00\x88\x4f\x51\xfd\xc8\x68\x01\xb2\xee\x68\x68\x92\x73\x1d\x8c\xe5\xd0\x5a\x7a\x5a\x7b\x81\xe1\x61\xbc\xae\x71\xd4\x36\x36\x34\xc6\xd3\x67\xaf\x75\xd6\x1a\xc4\xa2\xef\x8b\xa0\xb6\x88\x41\x0e\x80\xaf\x1a\x1d\xe4\x1c\x0b\x8d\x3e\x6c\x04\xa6\xdb\x6a\x29\xfc\xca\x07\x64\x44\xb5\x12\xbf\xec\x03\x64\x17\x6b\x2e\xfa\xe0\x0d\xc8\x44\x6a\xed\x7b\xc9\x01\xe4\x0a\x35\xa3\x9e\xaf\x02\x64\x76\x69\x46\x3c\x29\x07\x64\x36\x02\x65\xf3\x28\xff\xe2\x60\x7a\x5f\xbd\xe5\x71\x90\x9f\xdd\xbf\xf1\xd6\xc9\xeb\xac\x81\x4d\x83\xfa\xc8\x65\xa8\x9e\x2a\xfe\xfb\x7d\x81\xef\x03\x1e\x26\x86\x74\x38\x0f\x85\xef\x0b\x2e\xe5\xfb\xff\x64\x0e\x84\x3f\xdf\x0f\xf5\xbd\x01\x28\x84\x8e\x5f\xe9\xa6\x09\x98\x1a\x48\x1c\xb7\xdd\x0d\x38\xe7\x4b\x27\x5a\xc6\x02\x91\x5f\xe4\xbe\x98\x0f\x00\x8b\x95\x94\x1a\x4d\x46\x03\x9b\x8d\x94\x35\x68\x2b\x81\x83\x99\xaa\x69\xe4\x1c\x07\xea\x09\xa0\xda\x45\xf5\x3c\x55\x03\x78\xb2\x54\x2d\x52\xaf\x0e\x78\x5f\xa4\x36\x46\x2f\x1a\xe8\xeb\x56\x8e\x19\xce\xb9\x58\x3a\xa8\x53\xf3\x14\x8f\x0e\xaa\xa8\x9c\x62\x75\xaf\x0f\x20\x76\x43\xe1\xfb\xf7\xd3\x80\xd8\x7a\xe5\xac\x4f\x5a\x80\xc4\x5b\x65\x6a\xdb\x6a\x40\xe2\x29\x50\xdb\xcc\x3b\x07\x0b\xdf\xf3\xbe\x48\x7d\xa3\x76\x55\xf1\xce\x41\x15\x36\x2f\x17\x62\x98\x03\x5a\x33\xa4\x65\xfc\xfa\x8f\xf3\xe7\x9f\x90\xf7\xe0\x49\xff\x33\x6b\xe6\x90\xa6\xf0\xf7\x05\x79\xff\xdf\x9d\x31\xa4\x56\xaf\x81\x89\x3f\x29\x14\xdb\x32\x80\xea\x2e\x62\xc8\x9c\x07\xd8\x2c\x92\x7c\x6e\x96\x06\x04\xd5\x49\xad\x34\x21\x80\x05\xce\x33\x5f\xd0\xea\x81\x55\xb7\x64\x8f\xe9\x1f\x06\x76\x9c\x96\xdb\xa3\x97\x0b\x1c\xf2\x93\xeb\xd5\x3d\x00\x9c\xfd\xae\x30\x4e\x57\x06\xb8\xb1\x40\xa1\x4f\x67\x36\xd0\x30\x51\x91\xa9\x23\x0f\xbc\x7e\xac\xa8\xa9\x55\x00\x7c\x75\x96\x2d\xd5\xda\x38\x58\xbf\x74\xb9\xda\x9c\x41\x95\x7c\x4f\xf6\x63\xe6\xb3\x41\x1d\x57\x3e\x66\xf5\xd0\xe4\x8f\x51\xac\x7e\x85\x41\x85\x73\x1b\x8f\x7b\xec\x92\xf9\xc1\xfb\x5e\xfd\x9e\xef\xe3\x92\x79\x50\x35\xfc\xb9\x47\xc3\x1c\x10\x3f\x2f\x86\x9c\x07\x31\x9c\x87\xf2\x6b\xa4\xff\x3d\xcc\x81\xf0\xfd\x60\x47\xfe\x5c\x10\x63\x23\x60\xf4\x36\x0a\x85\x31\x00\x68\x8f\x9e\x38\xca\x34\x13\x60\xac\x17\xfb\x68\xd8\x07\x78\xa9\x4e\xbe\x68\x68\x0c\xc4\x36\x4f\x79\x4f\x95\x02\x16\x45\x4f\x8b\xa1\x96\x02\xeb\x7d\xa5\x2f\xeb\x34\x03\xbb\x72\xa5\xe3\x74\x0a\x81\x83\xd6\x32\x82\xda\x2b\x81\x33\x56\x32\x99\xa4\xbf\xaf\x51\x0a\xdc\xa5\xcf\x9c\xaa\x51\x0e\x3c\xf3\x99\xb9\x55\xe3\x3e\xf0\xa1\x61\xa6\x89\xda\x12\xe0\x97\xd7\xb4\x71\x24\xe7\xf0\x77\x3f\xc6\xdd\x1d\xea\xc7\xaf\xc4\x2e\xa3\xc1\xd7\xd7\xee\xf4\x17\x07\xc4\xcf\x43\x22\x39\xa0\x93\x18\xf9\x1c\x20\xe7\x02\xe5\x08\x8c\xdc\x07\x89\x16\x23\xd7\x81\x97\xef\x90\x92\xf9\x07\x7a\xf9\x43\x6a\x2a\x06\xa8\x1e\x1a\x47\xe8\xb7\x01\xc6\xd3\x84\x98\xfa\xda\x80\x33\x21\x5a\xa1\xeb\x09\x84\x45\x4f\x5a\xaa\x2b\x08\x2c\xa8\x96\x1c\xa5\xf9\x12\xc8\xdc\x21\x51\xac\xf9\x1e\xd8\x78\x6f\xaa\x84\xe6\x34\x20\x3f\x67\xea\x11\x4d\x07\x60\xdf\x3f\x52\x9b\x48\x7f\x5f\x7d\x2a\x50\x96\x2f\x95\xab\xe6\x07\x54\x6f\x92\x5a\xa8\x5c\x03\xd4\xd7\x4f\x31\x52\x8d\x04\x5a\x5b\xa6\xb9\xab\x14\x00\x9d\x92\x53\x5c\x94\x8b\x80\x3e\x39\x71\x7d\xb2\x1f\xb2\xf3\x07\x55\xb0\xa2\x33\x74\x88\x83\x1c\xce\x43\xe2\x73\x40\x24\x07\x73\xba\x1d\xff\xc9\xc1\x0c\xe7\xa1\xf0\xd7\x7f\x32\x9f\xa3\x89\x65\xe3\x3f\x39\x10\x73\x7e\x9f\x74\x3e\x03\xa3\x3a\x29\x14\x9a\x1f\xa0\xac\x31\xf6\xa4\xce\x15\x80\xba\x52\xb0\x44\x67\x12\x60\xfb\x8f\x50\x8a\xe6\x06\xc0\x6f\xaf\xf0\x4d\x75\x0b\x20\x46\x5c\x24\x43\x75\x15\x90\x12\x26\x6a\x39\x58\x47\x66\xab\x98\x88\xc6\x1c\x60\xc3\x38\x49\x57\xb5\x42\x20\x7f\xba\x44\x97\x8a\x09\xb0\x77\x9d\xf8\x36\x65\x3b\xe0\xc8\x6e\xf1\x04\xe5\x37\xc0\xd9\xeb\x92\x53\x95\x8f\x03\x37\x46\x4b\x16\x28\xe9\x00\x77\xde\x8b\x0f\x28\xb9\x03\x8d\x76\x12\xea\x0a\x5f\x81\x57\x96\x93\xda\x15\x9d\x81\x8e\x93\x93\x0a\x95\x04\x81\xbe\x46\xb1\x77\x7f\x73\x40\xe5\xe6\x43\x3a\xcc\x01\xf1\x73\x60\x48\x0e\x66\x53\x2c\xff\x1c\x50\x18\xd2\x74\xbe\xc6\xf3\x39\xc1\x08\x3e\xe7\xe0\xc3\xe7\x6a\xec\x0b\x86\xd4\x84\xcf\xdd\x68\xf0\xf7\x93\xd2\x18\x40\xec\x14\x85\xa2\x61\x07\x68\x79\x8f\x4b\x57\x9b\x06\x58\x48\x8c\xcf\x57\xbd\x0f\xb8\x3e\x9d\x90\xaa\x32\x1f\x08\x9e\x35\x31\x4c\xd1\x14\x98\x5d\x3b\xa1\x5c\x79\x13\x90\x5a\x27\xfc\x59\xb9\x02\x58\xa1\x22\xba\x5c\xc9\x07\x58\x2b\x22\x2a\xaa\x94\x09\x6c\x3d\x29\x16\xad\x3c\x16\x28\x0a\x9a\xf4\x4b\xf1\x36\x70\x48\x60\xd2\x6a\x85\x4c\xe0\x14\x47\xec\xb2\xfc\x06\xe0\x62\xb1\x98\x98\x7c\x25\x50\xd1\x24\x76\x46\xae\x18\xa8\xdd\x2a\xea\x23\x9f\x04\x3c\x39\x29\xe6\x28\xfb\x1c\x78\x19\x25\x7c\xeb\x6f\x0e\xa8\x94\x3f\xd7\x86\x9c\x0b\x55\xe0\x3c\xf2\x1c\x24\xf3\x50\x48\x0e\x24\x91\xdf\x17\x92\x87\x0a\x74\x19\xb9\x0e\x86\x39\x90\xc2\x21\x55\xe1\xe7\x86\xc8\xe8\x02\x82\x8d\x14\x8a\x5a\x0c\xa0\x7e\x7a\x6c\xbe\x62\x0c\x40\xa3\x8c\xf9\x25\x77\x00\xb0\xee\x1f\x03\xc1\x5c\x80\x79\x89\x42\x91\x8b\x05\x42\x43\xc6\xb5\xc9\x17\x03\xf1\x79\x82\xef\x15\x66\x02\x29\xb1\x13\x65\x15\x2c\x80\x25\x5b\x84\x04\xe5\x6b\x81\xec\x5b\x42\x9b\xe4\x38\xc0\x66\x9a\xd0\x31\xa1\xf7\xc0\xba\x9b\x14\x8a\xbc\x3b\xb0\xef\xb8\xc8\x22\xd9\x14\xe0\xa8\xbb\xd0\x4b\xc9\x00\xe0\xb8\x2b\x85\x22\xd3\x0a\x5c\x9a\x2c\x54\x27\x3b\x0f\xa8\xec\x10\x2e\x17\xdd\x0c\x54\x45\x0f\xfd\x2e\xe9\x4c\x0c\xa9\x9d\x28\xdf\xdf\xd3\xa5\xfc\x07\x07\x42\xfa\x5c\x24\x0f\x32\xb3\xcd\xec\xb0\x80\x29\xa0\xc0\x61\x7d\x18\xfb\x1a\xd0\x30\xb7\xeb\x9c\xf0\x12\xd0\x4b\xf5\xde\x21\x16\x06\x18\x32\xc3\xd4\x25\x0d\x00\xda\xd1\xf8\xd5\x52\xb1\x00\xcd\x7e\xd1\x95\x99\xe2\x00\xad\x6e\x9d\xa4\xfc\x1b\xc0\x50\xa1\x30\x4d\x29\x11\x30\xd8\x7e\x22\x54\xb5\x16\x30\x78\x76\x43\x5c\x6b\x05\xa0\x2f\xff\xf0\x91\xd6\x34\x80\x3a\xf3\xfd\x33\xcd\x09\x00\xb5\x73\x60\x9f\xa6\x2e\xa0\x33\x13\x90\xbf\x0d\x68\x6e\x03\x66\x8e\xeb\x19\xaf\x35\x01\x90\xdd\xf3\xed\x96\x56\x0f\xa0\xa0\xd3\x9e\xa7\x79\x00\x90\xa3\xbd\x55\xd5\x12\x05\xe4\x8d\x5e\x94\x6b\x16\x00\x72\x0b\x1a\xeb\x34\x2f\x02\x72\x6b\x1e\xfc\xd4\x12\x00\xe4\x9e\xd4\x75\x0e\xfe\x9b\xb2\xa3\x6f\xc7\x69\x96\x02\xb2\x47\xab\xeb\x34\xa9\x80\x0c\xef\xdd\xfd\x9b\x03\x19\xce\xbb\xe7\xfb\x1a\xe4\xbd\x46\xdd\x11\x3c\x88\xac\x3e\x3d\x56\xe0\x06\xa0\x32\x93\xe5\x33\x5e\x13\xd0\x55\x73\xb0\x10\xde\x3c\xf8\x34\xf4\x78\x2d\x16\x0a\xd0\x4c\x42\x67\x48\x9e\x04\x4c\x04\xe3\xc5\x67\xc4\x02\x26\x2b\x17\xbd\x90\x5b\x05\x18\xf9\xae\x57\x50\x68\x04\x68\x2d\x85\xa5\x2a\x1f\x01\x5a\xd6\xc9\x2c\x4d\x75\xc0\xa0\xf9\xc6\x28\xad\x4c\x40\xbf\xfa\xd1\x5c\xed\xf9\x80\x7e\xf2\x47\x19\xed\x2e\x40\x7f\x0a\x27\x5a\xd3\x15\xd0\x79\x04\x28\x5a\x72\x37\x69\x4d\x07\x64\xb6\x76\x5f\xd4\xbe\x08\x28\x2a\x7f\x59\xad\x9d\x0a\x28\xba\x7d\xd8\xa9\xf5\x14\x50\xc8\x7e\xf5\x90\x57\xf7\x81\xe6\x8b\xda\x33\x00\x45\xb1\x27\xd9\x5a\x3a\x80\xbc\x5d\xc3\x75\x2d\x25\x40\xae\xbf\xd6\x40\xb3\x08\x90\x6d\xa8\x89\x1f\xfc\xef\x72\x7e\x95\xaf\x35\x3f\x03\xb2\xbc\xd5\xfa\x3f\xb9\x28\x3f\xfe\x6b\x1d\xfc\xcd\x83\xc8\x77\x98\x4e\x1e\x73\x0b\x50\x3f\xc1\x08\x11\xcc\x00\x74\x0f\xd8\x35\x0c\xf6\x41\x3f\xcb\xfd\xae\xd8\x2b\xc0\x44\x3f\x64\xc5\xd4\x3b\x80\x49\xd6\x9c\xe7\x33\xaa\x01\x13\xcf\x8c\x67\x72\x14\xc0\xe4\x67\xce\x80\x72\x15\x60\x9c\x56\x18\xa1\x2e\x03\x18\x95\x9d\x24\xb4\x5d\x01\xc3\x43\x15\x5d\x3a\x41\x80\xe1\xf8\x27\x75\x7a\x3e\x80\x7e\x4a\x7b\xdd\x60\x1f\x0c\x6e\x62\xa7\xce\x2b\x40\x77\x29\xa0\x54\xd2\x57\xa1\xfd\x10\x50\xb8\xd8\x75\x4f\xe7\x21\xa0\xbc\xb3\x63\xb5\x0e\x13\x1c\xe5\x89\x6d\x93\xb5\xdd\x00\xc5\xc5\xad\x8e\x3a\x15\xf8\xa8\xa2\xd3\xd4\xa4\x63\x83\x1f\xca\x42\x0f\xad\x75\x2e\xa3\x43\x79\x75\x9d\xb3\xce\x03\x7c\x56\x66\xdd\x7e\xa9\x73\x13\x3f\x94\x4a\xab\x09\xad\x47\x80\xbc\xc9\x8d\xb7\xda\x61\x80\x7c\x36\xfe\x83\x7f\x18\x99\x07\x42\xd6\x4f\xe6\xff\x0b\x57\xe8\x6a\xf2\xfa\xb0\x9e\xf6\x64\x4c\xc4\x9f\x39\x4a\xfa\x0a\xd6\x95\x22\x2e\x80\xf1\x52\x77\x2d\xf1\x17\x80\xf1\xac\xc0\xce\x29\x99\x00\x7d\x60\xf6\xfd\x99\xf3\x01\xd3\xf6\xf4\x12\xf9\x10\xc0\x34\x66\xdd\x3c\x95\xc5\x80\xc9\xf6\x82\x1a\x8d\x1d\x80\xb1\xdf\xa9\xb5\x3a\x83\xeb\x24\xf8\xa6\x3e\xf5\x3c\x60\x98\xd7\x78\x9b\xba\x07\xd0\x7f\xde\x29\xa5\xf3\xf8\x4f\x1f\xf4\xec\x01\x95\x94\xdf\x5a\xba\x45\xe8\x56\x79\xf7\xb5\x4c\xc7\x07\x50\xea\xfa\xb8\x43\x27\x10\x3d\xca\x61\xaf\xfa\x75\xb3\xf1\x54\xb5\xec\xb9\x83\x9e\x1a\xee\xa8\xdd\x7e\x52\xa4\x63\x89\x1f\x4a\xed\xf5\x0d\xba\xe7\xd0\xac\x2a\x7a\xb7\x5b\xd7\x0f\xef\x94\x3f\xdf\x92\xd3\x0b\xc6\x33\xd5\x69\x37\x4f\xe9\xaa\xe2\x87\x52\xe1\xf5\x78\xed\x26\x40\x61\xf2\x7f\xf5\x61\xe4\x1c\x0c\xb2\x0f\xe3\x36\x69\xcc\xe4\xf9\x1b\x27\x75\x79\xf7\x1c\x95\x8b\x0c\x82\xc6\x1e\xfe\xc3\x07\x91\x9c\x94\xc9\x3c\x17\xa6\x78\x39\x60\x2e\xe7\x9f\x32\x78\x2e\x98\xb3\x62\xa2\x66\x36\x01\x16\xe1\xe9\x49\xca\xea\x80\xd9\x8b\xb5\xe3\xd5\x5e\x03\x74\xe3\x82\x77\xda\x52\x80\xa9\xd0\xc9\x1e\x6a\x20\x60\x54\x7b\xd3\x5b\xbf\x08\xa0\xbd\x7a\xea\x63\x78\x16\x30\x3c\xf6\x2d\xc9\x40\x18\x30\x38\x8e\x42\x9d\x83\xdc\xa3\x7a\x3b\xf1\x4b\xf5\x79\xb7\xb0\x9e\x37\x5e\xa8\x9d\xec\x3c\xa1\xa7\x81\x07\x6a\xed\x6d\x21\x54\x2b\x9c\xd2\xf4\x7a\x39\x4e\xef\x24\xae\xaa\xf7\x34\x6e\xa5\x9e\xc2\x51\xcd\xf9\x0f\x72\xf4\x76\xe1\x96\xda\xab\xba\x32\xdd\xf3\x78\xa1\xd2\x52\xb3\x55\xaf\x10\x8f\x54\x2f\x93\x5c\xd8\xf5\xc3\x7a\x46\x78\xaf\xfc\xa9\x7c\xae\x4e\x37\x06\x14\x37\xe2\xff\xc9\x3f\x50\x28\xea\xbc\x7b\xbb\x22\x55\x1a\x3c\x5f\x5c\x36\x53\x5b\x56\x40\xf4\x4f\x3e\x08\x39\x3f\x88\xe4\xa4\xe8\xbf\x1c\x04\x25\xac\x00\xc6\x34\x7f\xf5\xe9\xad\x00\x8b\x19\x1d\x25\xd7\x09\x58\xac\x4b\xdd\xaf\xe4\x07\x58\x28\xe4\x8c\xd1\xf8\x05\x98\xd5\x15\xbc\xd0\xcd\x05\xe8\xdb\x4f\xdd\x35\x9c\x05\x98\x2c\xa8\xea\x32\x2a\x06\x68\x0d\xcd\x13\x0c\xab\x01\x23\x97\xee\x5b\xc6\x33\x00\x83\xd5\xd8\xa7\x63\xdd\xc7\xa6\x0e\xe0\xb2\xe6\xad\x2f\xdf\xf4\x2b\xb1\x56\x67\xf3\xfb\xcb\x06\x36\x48\xd6\xad\x7c\xf9\xde\xe0\x1e\x62\xf4\x76\x0f\x73\x61\xa2\xfa\xa5\xc8\xd3\x96\xa8\xfb\x69\xc0\xc1\x52\x9d\xde\xdb\xd9\xfa\x16\x38\xa3\x71\xaf\x4a\x89\xda\x8d\xeb\xea\xbb\x6e\x5c\xa0\xe6\xa0\x4e\xcd\xe5\xaa\x32\xf5\x22\x1e\xa9\x3e\x2c\x8b\xd7\x6f\x45\x8d\xfa\xd8\x7f\xf7\x81\xdc\x0f\x7c\x1e\x88\x9f\xf7\x4e\xe6\x9d\x93\x1c\x84\xc2\x4c\xf5\x6c\x81\xd3\x7f\x78\x10\x1a\x8d\x36\x43\xe8\xf7\x1f\x2e\xc6\x22\xd5\x2e\x55\x32\x16\x60\xb6\x78\x87\xce\x10\x04\xac\xda\xa3\x76\x29\x9a\x03\x56\x3a\xc9\x25\x6a\x3d\x83\x7d\x59\x1d\xa0\x63\x06\x58\x5c\x2d\x10\xd1\x8f\x02\xcc\x4c\x4e\x4f\xa7\x9d\x03\x4c\x8f\x56\xe7\x9a\xce\x01\x8c\x1e\xbe\xe8\x33\x5e\x01\x18\xef\xea\xcd\xa7\xe7\x00\x06\xdf\xb1\x45\x37\xa8\x6b\x9d\x61\x31\x9c\xf4\xdf\xb5\xff\x34\xe8\x41\x30\x35\xe9\xcd\x63\x9a\x06\x68\x06\xdd\xcd\x6c\x5a\x08\xe8\x06\x47\x1e\x17\xd2\x6e\x83\x6e\x70\xe9\x7e\x20\x6d\x1f\xdc\xf5\x43\xef\x50\x8d\xc4\xe0\xa5\xef\x52\xbd\x81\x76\xf6\xff\x63\xec\xaf\xe3\xa2\xda\xfe\xef\x71\xfc\x00\xd2\x1d\x22\x3d\x43\x77\x77\x77\x37\xd2\x02\x82\x08\x8a\x89\x81\xad\x28\x8a\x01\x36\x2a\x16\x16\x2a\x20\x25\x26\x2a\x16\x52\x2a\x62\x81\xa2\x22\x8a\x8a\xa8\xd8\x2d\xcc\x9c\xf5\x7b\xcc\x99\x39\x5e\xbd\xaf\xfb\xfe\x7c\x7f\x7f\xad\x07\x77\xf4\xca\x73\xcf\xde\xcf\xbd\xcf\x59\x6b\xaf\x85\x4c\xf3\x3b\x17\xc4\xac\x9e\x63\xaf\x71\xe4\x39\x3b\xeb\x89\xd8\x6d\x5c\x7d\x72\xb6\x15\x89\x13\x86\xa7\x8e\x8d\xb1\xde\x83\x3a\x23\xd9\xff\x5a\x0f\xf4\x3c\xe0\xde\x7b\xe7\x5f\xa0\x95\x4c\xcd\x87\x4c\x0d\x6a\x5d\x68\x7f\xd7\xfe\x3c\xc2\x10\x30\x2f\x37\x3c\x2d\x6c\x02\xd8\x5b\x59\x5c\x15\x97\x06\x9c\xcd\xed\xe7\x4a\xb1\x01\x0f\x86\xd7\xa4\x91\x0f\x00\xef\x81\xd0\xf7\x6a\x0b\x01\x9f\x79\xc9\x3d\xda\xfe\x80\x77\xef\x74\x17\x23\x5d\xc0\x93\xbd\x7c\xb3\x05\x67\x9e\x98\x6e\xd7\xb3\x2d\x00\x5c\xc4\x6a\x0e\x3b\x5c\x05\x1c\x5f\x35\x2f\x76\x6e\x04\xec\x57\x3d\x49\x77\x4e\x02\xec\x8f\x91\xfb\x5c\x2c\x87\x47\xda\xbc\x85\x8e\xcd\xae\x41\x0d\xdb\xf1\x24\xdb\x2e\xaf\xaf\xde\x36\x07\x02\x76\x3a\x8f\x66\xd8\x25\x90\xef\xec\xf7\x74\xce\xb0\x9b\x4d\xb2\xec\xae\xdf\xb0\xb4\x4b\xc1\x28\x5b\xcf\xb6\x65\x76\x59\xd0\xb3\x49\x6e\xbc\x66\xa7\x09\x6f\xab\xe5\xb4\x0e\xea\xac\xa2\xdd\x53\x44\x5a\xde\x3e\xf9\xd0\xb6\x09\x0b\xcd\x2a\xea\x86\x6c\x8f\xa2\xc0\x74\x45\x55\x97\x6d\x0b\x76\x99\x04\xff\xd7\x7a\xe0\xf1\x9d\xbc\xfb\xce\x42\x7a\xca\x39\x1c\x54\x6f\x57\xbf\xc6\xaf\x08\x18\xce\x60\x8e\x16\xc8\x05\xac\x2b\xf5\x84\x84\x42\x01\x27\x63\x13\x0b\xd1\x75\x80\x57\xa7\xf5\x27\xa9\x0e\xc0\xa7\xd6\x7d\xa6\xa2\x16\x10\x30\x3f\xb8\x85\x91\x0e\xf8\xcb\x8f\x89\xd1\xe9\x00\xfc\x1e\x4d\xd9\x67\xb2\x1b\xf0\x9d\xb2\xac\xc8\x56\x1e\xf0\x18\xd8\xd6\xcf\x79\xba\x74\xe3\xaf\xb9\xe1\xf2\x18\x70\xce\x6b\x1d\xef\xc1\x04\x1c\xbe\x3f\xeb\x76\x3f\x0e\x38\x08\x93\x85\xae\xbe\x9f\x42\xec\x17\x91\xdb\x5d\xd2\x69\x9f\xac\x87\x6e\x8e\x62\x64\xae\x9b\x45\x67\x89\xe3\x62\x72\x85\x9b\xc1\x8d\x25\x4e\xae\xe4\x6a\x37\xcf\xb6\x31\x0e\x3f\xc8\xbb\x8e\x6f\x69\x1d\xd0\xb9\xc3\x4e\x2b\xc8\x67\x8e\x3b\xea\x27\x3b\x7a\x43\xd9\x8e\xff\x84\xa3\xb3\x05\xf9\xd3\x61\x69\x6d\x8c\xc3\x00\xc2\xac\x96\x57\x36\x39\xee\x41\xb8\xd5\x91\xf2\x15\x8e\xc5\x18\x6b\x59\xf0\xe7\x79\x89\x9e\x07\xba\xbc\xf5\xc1\xe5\xfb\xc4\xde\x8d\xa4\x72\x41\x68\x1d\x84\x79\x37\x53\x49\xa0\x07\x70\x51\xd7\x52\x12\x2c\x06\x7c\x1e\x1b\x28\x71\xfa\x64\x90\x80\xe5\x35\x69\x45\x20\x64\x81\x8b\xa5\xa2\x2f\x10\xb2\x33\x40\x9d\xb1\x10\x08\x55\x8a\x6d\x35\xb8\x0f\x04\xb9\x67\x75\x98\xe7\x00\x01\xa1\x4b\x9e\x3a\x68\x01\x3e\x4a\xdb\x92\x5c\xd7\x00\xee\xdf\x6b\xc3\x3d\xbd\x00\x57\xf5\x6b\x9b\x7c\x1d\x00\xa7\x4b\xaf\x9f\xfa\xbe\x63\xad\x70\xbc\x48\xca\x7a\x47\xbc\x2e\x75\xca\x62\x93\x3e\x6b\x69\x7f\xa8\x3b\xb7\x5d\x66\x90\x7c\xbe\x69\xd7\x9b\x5c\x97\xb3\x49\xdf\xaf\xad\x23\x5c\x58\xa4\x93\x17\x79\xf1\xa5\xeb\x3c\x72\x8c\xe7\x9e\x73\x67\x5c\x67\x91\x0b\x3d\x04\x69\x3f\xa4\x3a\x4f\xd7\x71\x64\x9b\xf3\x93\x9a\x15\x2e\xab\xc9\xaf\x8e\x1a\xe5\x1f\x5c\xad\x20\xe8\xe0\x7d\xe8\xa6\x8b\x3e\xac\x6c\x75\x0e\x0c\xb9\x7c\x80\x85\xed\x9c\xff\x98\x07\x04\x93\xe2\x37\xf9\x5e\x8e\xa2\x78\x5b\x05\x05\x05\xca\x67\x4d\xb7\x45\x86\xca\x4f\xb2\x78\x27\x43\x9d\x1f\x7c\x27\x68\x7c\x1e\xf1\x16\x08\x7a\xa1\xcd\x27\x3c\x09\x88\x14\x31\x79\x2b\xb9\x0d\x18\x6d\x69\xfb\x40\xfe\x18\x10\x63\xea\x7d\x8d\x61\x03\x44\x2e\x8c\xd2\xe5\x9c\xe5\xc2\xaa\x33\xf9\xad\x15\x81\xe0\x86\x85\x6f\x9d\xdf\x02\x7e\xd7\xb7\xbc\xf2\x1c\xc0\x77\x2f\xe6\x51\x7e\xbf\x1c\xb4\xbb\xad\xbb\xb1\x2a\x48\x13\x8d\x2e\x93\x3f\x6e\x0d\xf1\xfb\x94\xe1\x92\xcb\x8e\x0c\x89\xed\x8d\x77\x13\x60\x47\x84\x7a\xdf\x21\xdc\x47\xb1\x67\x86\x64\x5f\x3b\xee\x5e\xca\xde\x16\x6c\xd5\x14\xe0\xe1\xc6\x3e\x11\x64\x76\x51\xd3\xc3\x94\xfd\xda\xff\xce\x99\x87\x1e\xe5\xa4\x90\x5f\x0d\xed\x03\x54\x93\xe6\x79\x87\xf4\xf1\x11\x3f\x32\xdd\xd3\x99\x5c\xe2\xf1\xee\xd0\x5b\x8f\x5a\xf2\x94\xeb\xc5\x03\x17\x3c\x66\x93\xf7\x9c\x7b\xf7\x06\x78\x68\x93\x3f\x1d\xcf\xee\xea\x73\xdf\x00\x0d\x7b\xab\x3f\xe7\x01\xb7\x1f\x12\xb9\xa3\x28\xbf\x7b\xfa\xde\x37\x83\x14\xab\x23\xfe\xd4\x41\x6c\x15\xa6\xee\xb1\xfb\xd9\x8a\x53\xeb\x85\xd6\x83\xd0\x79\x31\xc9\x07\xad\xf4\xe4\x0b\x81\x64\x27\x77\x39\xf5\x21\x20\x61\x7c\xe8\x09\xa3\x6f\x40\xf4\xb2\x34\x15\xfb\x2e\x20\x7c\xe7\xbc\x0a\x0f\x67\xbc\x0a\xd2\x2c\xca\xf0\x3f\x84\x72\x9f\xa7\x47\xe5\x42\x25\xd8\x8f\x3c\xce\xdf\xb2\x88\x2c\xf8\xb9\xc9\xed\xcd\xe7\xc4\x18\x9f\x7e\x33\x0f\x5f\x56\x7a\x6c\xf3\xdd\x2d\x5e\xae\xac\xd5\xb1\xf3\x5b\x17\x7a\x6f\x64\x5d\x8d\x3e\xfe\x5b\xff\x72\xc2\xe7\x23\xdb\x3c\xd2\xfd\xe4\x3c\x1f\xb0\xc7\x87\x2b\xd6\xaa\xfb\x6e\x67\x6f\x0f\x15\x3d\x52\xeb\xf3\x92\xfd\x3e\x90\x38\xbc\xce\xd7\x9b\x94\xf2\xdf\xb8\xbf\xc5\xb7\x8f\x34\xf6\xf3\xde\xd3\xe8\x43\x92\x93\xbd\x6e\xec\x5c\xee\x73\x83\xdc\xe9\x61\x52\xfc\xd2\xa7\x84\x3c\xed\x96\xb3\x35\xcb\x27\x8f\xbc\xe5\x32\xf4\xc7\xbe\x90\xab\xba\x88\x3b\x1e\x5c\xde\x57\x5e\x55\x84\xca\x19\xd4\x5f\x4f\x50\xbe\x10\xb4\x0e\xc2\xeb\x13\x1f\x95\xfb\x11\x11\xcf\x47\xe9\x67\x92\xb6\x89\x50\x3c\x39\xed\x0f\x32\x71\x92\xf1\x2b\x59\x65\x60\xa2\xa6\xc3\x73\xd5\x7e\x60\xbc\x6e\xc0\x5b\x63\x19\x60\x4c\x42\xa2\x9d\xf3\x1d\xf4\xc7\x8c\x9e\x95\xe6\xe7\xf6\x6b\x4e\xf8\x84\xf5\xae\xe1\x73\x3e\x9e\x0c\xaa\xab\x78\x15\x97\xfa\x3a\xc5\x5f\xb0\x55\x23\x79\xf4\xf3\x1e\x9f\x95\x03\x9d\x69\x13\xee\xb9\xf9\xae\x1c\x76\x1d\xb7\xb2\xa5\xd4\xff\xe8\xf0\xce\xd4\xa5\x74\x0e\xd4\x89\xc5\x01\x1f\x59\x6b\xe3\x8f\xd4\x44\x06\xcd\x67\x6d\x8f\x3f\x50\xb1\x3b\x58\x94\x75\x35\xb6\xaf\xf4\x48\xb0\x38\xdb\x34\x6a\x80\xd6\xbf\xd0\xbe\x2f\xdb\x43\x83\xe5\xd9\x9d\xc1\x4b\xb6\x1e\x0e\xfc\x4c\x6a\xf9\x2f\xd9\x5c\x1f\xb8\x9d\x8c\xf0\xe5\xdb\x98\x14\xa8\x4e\x2e\xf0\xaa\x5e\x57\x16\x60\x40\xd6\xb9\x53\x7a\x39\xae\xfe\x81\x48\x18\xa9\xcf\x9d\x07\x22\x54\x9e\x1c\x73\x29\x1f\xd5\x27\x69\xfe\x9b\xd6\x41\x84\xf3\xee\xfd\x27\xd3\x3c\x28\x83\x8b\xd9\x65\xa2\x47\x39\x98\x63\xa8\xf5\x43\x42\x0b\xc8\xc9\xb2\x38\x37\xea\x31\x30\xe3\xbd\x97\x8c\xa1\x1f\x69\x3e\xe1\x4c\xf4\x58\x97\x9a\x8f\x42\x29\x0e\x59\x8d\x61\x9d\xfd\x92\xf1\xfd\xcb\x6b\x13\x56\x3f\xea\x19\xfd\x62\xef\xb6\xb4\x81\xbb\x43\xe1\x0d\x0d\xdf\x26\x8a\xdf\x18\x08\x29\xeb\x29\x9f\x12\xd9\x3c\x21\x24\xea\xd7\xe7\x69\x09\xa7\xdb\xc2\xcc\x86\x2a\xb3\x1a\xaa\x14\x22\xa4\x87\x9d\x33\xba\x7e\xe7\x1e\x65\x47\xe4\xb0\xd4\x52\x26\xed\xfe\x18\x99\xc8\xf2\x4f\x96\xdc\xd1\x16\xfe\x95\x75\x3f\x2e\x78\xdb\xd8\xf0\xab\x6c\x46\x74\xfc\x46\x46\xa4\x0b\xdb\x3f\xaa\x63\xfd\xdb\x88\x35\xec\x85\x11\xd3\xd6\x0e\x86\x3b\xb3\x6f\x86\x84\xaf\x8a\x8e\x48\x65\x7f\x0b\xda\x96\xbf\x2a\x7c\x39\x69\xec\x5f\xbb\xbc\x31\xcc\x9e\x9c\xe4\xa3\xfe\x4f\x3f\x24\x72\x25\x58\x1c\x94\xf9\xc6\xad\xcb\xec\x34\xf1\x17\xff\x1d\xca\xbb\x07\x9f\xcc\xcb\xbb\xa0\xfd\x00\x68\x5f\x8c\xc5\x67\xb9\x98\x1f\xa1\xba\x50\xe8\x0e\x90\xdf\x6b\x70\x45\x7e\x2d\xfb\x5c\x5e\x92\x93\xb3\xde\x8c\xb7\x7d\xf3\x76\x87\x9c\x72\x9d\xfa\x78\xd9\x54\xd9\xb1\x03\xa3\x53\x6e\xcd\x1c\x7f\x67\x9e\x58\xda\xb7\xe6\xee\xb1\xbd\x45\x4f\x27\xbd\x3c\x1f\x3c\xc6\xb8\xee\xc6\x0c\xbf\x53\xb9\x71\xf3\x6e\x7f\xcf\xb9\x7d\xf4\x6a\xcc\x94\xef\xa9\xf3\x1a\x0f\x7a\xc6\x4d\xf8\x55\x32\xcb\x66\xf7\xed\xb8\xc6\xa1\xf9\x53\xf5\xb6\xbe\x8d\x1f\x18\xfa\x9a\x55\xbc\x39\x26\xc1\x6e\xd8\x3f\x93\x45\xe7\xfd\x14\x66\xc6\x7f\x63\xc9\x8d\xfd\xfe\x6f\xbf\x93\x15\xad\xb1\x5e\x6c\xf3\xe8\xc4\x65\x26\xb1\x81\xec\xec\xc8\x99\x8b\xd7\xc6\x6a\xb1\x4f\x84\x39\x2c\x2c\x8f\x31\x62\x7f\x0d\x7a\xbf\xe0\x65\x74\x22\xa9\x12\xf0\x84\x33\x0e\xd2\x8f\xa8\x73\x42\x21\x11\xc7\x41\x2d\x1e\xaf\x43\xf3\xdf\xf4\xfd\x6f\x5a\x07\x91\xc5\xe3\x7b\xe7\xf1\x7c\xcf\x57\x1c\x23\xfe\xe2\xc3\xb7\x15\x89\xfa\x12\x04\xb9\x64\xfb\x19\x66\x8c\xe4\xb9\xb7\x2d\x9b\x8f\x58\x47\xe9\xcc\x7c\x6c\x53\x90\xed\x3b\xd3\x39\xb1\x7d\x68\xa9\x72\x7c\x42\xe4\x89\x86\xe6\xd9\xcf\xa7\xa4\x67\xbc\xaf\x9d\x3d\xcd\x7c\x55\xf9\x8c\x75\x87\x6c\xb2\xe6\x1e\xf6\x9a\xb7\xa1\x44\x3a\x63\x79\x4b\xd1\xe2\x88\x6d\xa5\xe3\x9e\xbf\xbe\xb8\xd4\x67\xc3\xa8\x71\xec\x9f\x33\x17\x59\xae\xba\x97\x6e\xf9\x6b\xfb\xec\x9a\x15\xcf\xc6\xe5\x0f\x79\x4d\xbf\xb7\x74\x51\xba\xe0\xd0\x99\x29\x5e\x8b\x1f\x8c\xbb\x3f\xac\x91\x25\xbc\xe8\x63\xda\xea\xe1\x8d\x19\xba\xf3\x59\xa9\x2b\x58\x8c\xb1\x1f\xe6\xce\x4e\x9d\xc6\xca\x48\x76\x99\xf3\x2d\xe5\x3c\xab\x39\x21\x7c\xd6\xb2\x14\x07\xb6\x5e\x8c\xe4\xac\xdc\x64\x05\x76\x6c\xd4\xd3\x19\xf3\xc6\x0c\xb2\xcb\xc2\x3e\x4c\x73\x1d\xf3\x88\xfd\x24\x84\x62\x61\x04\xaa\x38\xbf\xff\x28\x5e\xee\xcd\xbf\x75\x20\x74\x0e\x00\x5d\xff\x02\xde\xb8\xd0\xf7\x80\x69\x1d\xcc\x1e\x8a\x17\x66\xa5\x1f\xa6\x78\xbd\xf7\x0e\x65\xc3\x2a\x91\x22\x7b\x7b\xb3\x0e\x5c\x36\x99\xc3\x68\xea\x98\xb2\x5b\xca\x6d\x9b\x5d\xe5\xf9\x92\xa2\x23\x91\x66\xa1\x8e\x95\xbb\xd7\xbc\xce\x98\x32\x2e\x70\xfb\x9e\xdc\x95\x0b\x59\xb3\xfb\xd6\x3a\x2c\x98\xb2\x73\xc1\x62\xe1\x3c\xbd\x39\xed\xe7\x9c\xf2\x82\x17\x4c\x9b\xf5\xb9\x37\x3f\xdf\x37\xc7\x68\xe6\x83\x1f\x53\xf2\x5e\xcc\x9c\x95\xfd\xe0\xe7\x8d\x05\x59\x33\xec\xa7\x3d\xfb\x55\x98\x13\xf7\x3b\xdf\x85\xe7\xf3\x31\x35\x68\xb2\xfc\xb0\xc9\xc4\xdd\x53\x2c\xb3\x52\x86\x4f\xa5\x5f\x9d\xb4\x34\xcb\x8f\xc5\x97\x26\x94\xf5\x62\x42\x08\x2b\x33\x59\x6d\xa2\x48\xa6\x35\xab\x35\x41\x32\x73\xf9\xf8\xa7\x6c\xad\x18\xc9\x8c\xfb\xe3\x3d\xd8\x81\xa3\xbd\xc6\xcb\x8c\x2b\x66\x97\x87\x95\x01\x42\x2c\x6e\x1d\xb4\x0f\x84\x1b\x8f\xd7\xa3\xf5\x60\x13\x67\xfc\x5d\x7f\x01\xef\xf3\xed\xf6\x5c\x3c\x44\xe9\x06\x86\x3c\x6b\x28\x1f\xf4\xb7\x8c\x63\xbd\x1c\x7c\x9a\x77\x3a\x61\x64\x06\x41\xdc\xfa\x72\xac\x5a\x37\x4d\xe9\xc3\xa5\xa6\x6a\xa6\x83\x80\xf9\xfb\xda\x59\x87\xc7\x06\x6d\xf1\xf3\xda\x1d\xbd\x27\x24\x65\x70\x4c\xc5\xaa\xee\xad\x37\x72\xb6\x4c\x6b\x9f\x1f\xbc\xa9\xa8\xa8\x70\xee\xfb\xec\x94\x0d\xb6\x27\x07\x17\xd6\x66\xf5\xad\xf3\x7a\xf0\x6b\xf1\xee\x4c\xfb\xc2\x29\x3f\xd7\x2f\xbc\x31\x7e\xd6\x6a\x89\x5f\xc7\x67\x33\xd3\x37\x2e\x7f\x37\xb4\x7a\xea\x9b\xf4\x81\xa5\xdb\x87\x7a\x26\xc7\xa4\x4f\x58\x62\x33\xec\x3f\xa1\x3b\x5d\x62\xc1\xa4\xe1\xb6\xf4\x84\x71\x6b\xe7\xb9\xb1\xd4\x53\xad\x68\xdd\x47\xda\xc1\x99\xd7\x58\xd7\x13\xec\x52\xef\xce\xc8\x63\x8b\xc5\xce\x1f\xfb\x23\x3b\x86\xed\x3b\xfa\x66\x4a\xd7\xd4\x1f\xec\x5d\xe1\xb5\x63\x3d\x26\x77\xb2\x8f\x86\x6d\x05\xd4\x6e\x12\xff\xa9\x03\x99\xa0\xff\xdf\xf5\xd3\x3c\x38\x57\x07\xf3\x4b\xf6\x24\xc5\xef\x0f\x2e\x3b\x4b\xfd\xb9\x5e\xfd\x8b\x54\x8e\xd2\xed\xba\xc6\x0b\x22\x8b\x09\xa2\xc9\xe2\x72\x87\xc6\x62\x99\x5b\xc7\xfb\xcf\xcf\xb4\x2c\xd6\xaf\x3f\x30\xe5\xf4\x37\x9f\x42\xd7\xba\xf5\x97\xea\xae\xc7\x0f\x44\xbd\x98\x6f\x55\x29\x30\xbd\x36\x53\x71\x4a\x46\x79\xd4\x86\xaa\xa9\xfb\xd3\x33\x0e\x37\xd4\x7d\x9e\x11\x9b\x74\xe9\x90\xfd\xbd\xfd\xb3\x0c\x12\x82\x4a\xbd\x7f\x75\xcd\x54\x4d\x98\xb9\x3b\x63\x68\xfb\x94\x92\xf8\x03\xc5\xf5\xc3\x31\x99\x65\xf1\xbd\x45\xef\x86\x0f\x8d\x17\x4c\x90\xd9\x20\xc0\x92\x4a\x8d\x4e\x98\x56\xf0\x8e\x15\x93\x5c\x1f\x7f\x73\x55\x2d\xeb\x5c\xc2\xb1\xf8\xe2\x7c\x51\xd6\xaf\x38\x85\xf8\x0d\xcb\x92\xd9\xee\xd1\xd2\xb1\x75\x4b\x4b\xd8\xdb\xc3\xef\xc5\xa9\x2d\xaa\x64\xb7\x84\x96\xc4\xdd\x9c\x7f\x9d\xdd\x1d\x72\x2c\x86\x3d\xef\x2c\xa9\x13\x50\x0e\x58\xf1\xee\x77\xfb\x0f\x72\x31\x9d\xe7\xfb\x3f\xef\xeb\xdf\xf5\xd3\x3a\x88\x6a\x09\xaa\xfe\xc6\x33\xd4\xba\x78\xab\x78\x89\xab\x7f\xf9\xd8\x44\xcd\x83\xdb\x7a\xd7\x28\xbf\x80\x26\x46\x07\xd5\x5f\xeb\xb3\x6e\x3e\x56\x6a\x16\x56\x2a\x57\x68\x5f\x61\x34\xa0\x91\xba\x2d\xb7\xed\x90\xdb\x55\x1b\xd5\xbc\xd2\x2b\x18\x9d\x1a\x50\x35\xe5\xd6\x85\x9d\x93\x26\x8f\xb9\x97\x36\xe7\x7c\xe6\x5a\xa1\xb4\x87\xf1\x9b\x1b\xf4\x6b\x5a\x33\xf6\x47\xa9\x9e\x93\xbc\xbb\x64\xc2\xd4\xb0\xca\x33\x4f\x86\x47\x65\xde\x08\xdb\x5d\x17\x34\xdc\x91\xfa\x23\x5c\xf9\x48\x23\xcb\x24\xf9\x5e\x38\xe3\xd0\x76\x56\x41\x62\x56\x78\xfe\x3e\x59\x56\x57\xdc\xae\x08\x9b\x5d\x05\x2c\x32\x56\x2a\x3c\xba\x38\x93\x3d\x29\x32\x3e\x82\xbf\x68\x90\xbd\x34\x62\x7a\x84\xd2\x86\x45\xec\xf3\xa1\xfb\xc2\x19\xeb\x5d\xd9\x5f\x82\xfa\xc2\xcd\x0b\xaa\x49\x8d\x80\xda\x70\x83\x95\x9d\x64\xa8\x9f\x51\xd8\xaa\xe5\x5f\xc9\xa5\xde\x4e\x80\xfb\xf6\xbf\xfb\xe0\xff\xa5\x03\xa9\xb5\xa3\xe6\xff\xbb\xf3\xd4\x7c\x19\x2c\xe3\xea\x21\x9e\x44\x5d\xa3\xfe\xdc\xdd\xfd\xb7\x28\x5f\x91\xe6\xb5\x77\xa9\x75\x76\x7a\x73\xb7\x37\x07\xab\x2c\x1e\x6b\x4a\xaf\x21\x88\xdd\xef\x1e\xc9\x6b\x5f\x53\x28\x2c\x9c\xd6\xed\xe0\x70\xd0\x30\x6b\xee\xf7\x2e\xc1\xd0\x3e\xd7\xc4\xf4\x59\xb7\x65\x33\x5e\x86\xeb\xc6\xe7\xdc\x2a\x5d\xf5\x20\x46\x33\xfc\xd4\xcd\x2b\x95\xa6\xf1\x43\x81\x8b\x3a\x7e\xdc\x5a\x91\xf8\xd2\x4f\xfc\xa6\xee\x70\x73\x02\xdb\x2f\xb8\x69\x80\xd5\x12\x2b\xee\xe7\x7a\x7e\x19\x5b\x37\x2a\xdd\xef\xcb\xe9\x02\xb6\x7f\xa4\x83\xdf\xa3\xba\x1e\xf6\xc6\x30\x0d\xff\x95\x55\x72\xec\x13\x21\x65\xfe\xf7\x0e\xdf\x67\x3f\x0f\xda\xec\x5f\x73\x60\x0f\xa9\xe4\x4f\xfa\xbf\xde\x73\x8e\x74\xf0\xcb\x08\xe8\xdc\x39\x9a\xf4\xf3\xed\xf4\x3f\x59\xfc\x9e\x5c\xee\x95\xe6\xbf\x67\xf3\x3d\xf2\x84\xfb\x1a\xff\x3d\x1b\x7e\x92\x37\xdc\x44\xff\x37\x17\x67\x55\x20\x17\x69\x1f\x80\xa3\x54\x3d\xc3\x87\x2e\x52\xfd\xf0\xbd\x7a\x2b\x35\x3f\x9e\xc6\x77\x6c\xe4\x60\x67\x75\x17\xc5\x13\xb7\x56\x3f\x58\xc4\xc1\x06\xe3\x27\x94\x2f\x46\xf5\xe9\x17\xd4\xdf\x2b\xb9\xfe\x8a\xda\x4f\x37\x6f\x7a\x7d\x4f\x6d\x8c\xd8\xfc\x65\xbe\x03\x6f\x2d\xaf\x69\xf8\x4f\x8b\xec\x3f\x1c\xa0\x64\x19\x36\xc6\xe3\xb9\x4c\xda\x08\xcf\x9a\x88\x86\x67\x58\x1e\xeb\xdf\xec\xcf\x7a\x2e\x5d\x36\x21\xd8\xdf\x4b\xe3\x59\xd5\x8d\x75\xa1\x89\xee\x26\xcf\xc7\xff\x7a\x1d\x92\xea\xb6\xb2\x5b\x81\xfd\xc2\xff\xbd\xdb\xdd\x9b\x06\xa4\xb8\x5f\x92\xbb\x7b\x9b\x1e\xa9\xeb\x1b\xe8\x3e\xd0\xa8\x4c\x5a\xfb\x74\xba\xe7\x9d\xbb\x4b\x66\x7b\x9e\xf5\x50\x3f\x39\x48\xae\xf0\x78\xec\xe1\x77\xf4\x1e\x59\xea\xee\xee\x3e\xa1\x9a\x41\xde\x77\x91\xf7\xa8\x2f\x5f\x46\xde\x74\xb9\xe9\xa9\x50\x5a\x42\x0e\x38\xcf\xf3\xf4\xdc\xa7\x47\x0e\x39\xc5\x79\x84\xed\x7e\x0a\x3d\xfb\x70\x20\x8b\xb7\xde\x97\xf1\xd6\x03\xed\x87\x52\xc3\x3b\x1f\x35\x52\xbe\x27\x1f\x9e\x5f\xa3\xfa\x61\x5f\xee\x1d\xea\xfb\xbf\xa7\xf9\x40\x80\x83\x57\x17\xf5\x52\xe3\x72\xfe\xf1\x0b\x4a\x1f\x53\xf7\xf3\x8d\x28\xf5\xde\xdf\xfb\x03\x35\x5f\xb6\x54\x7f\xa3\x72\x54\x56\x2f\xfd\xf5\x5a\xfe\x0c\x41\xcc\x6d\xfc\x79\xc7\xf0\xad\xbc\x4a\x46\xff\xf7\x2f\x9e\x6b\x75\xae\x46\xbb\x7f\x6b\x1e\x13\x6d\x23\x17\x34\xea\xfb\xbd\x25\xf2\x8e\x9d\x9e\xfd\x3f\x4c\x0e\x14\xb9\x16\xbb\x48\xfc\x64\x5c\x6d\x74\x97\x72\x3c\xf0\x6b\xcc\x8f\xcf\xae\xfd\x8e\xf2\x83\x63\xc8\x0b\x2e\x02\x0e\x57\xfb\x72\xc8\x4e\xa7\xa3\x0e\xe6\x0f\xa5\xc8\x9f\x0e\x73\x7e\xe7\x79\xbc\x6d\x37\x86\xa0\xfd\x63\x87\xf7\xcd\x93\xa0\x66\x37\xcb\x51\xe6\xe2\x1c\x98\xdb\x46\x3b\x1a\x9f\xcd\x83\xbb\x4d\x80\xa3\xdc\x49\x07\xc4\x59\x9d\x70\x0a\xac\x0b\x46\x90\xf5\x2d\x27\xad\xaa\xb3\x48\xb3\x32\x71\x54\x2b\xef\xc0\x4a\x73\x6f\x60\x91\x1a\xb7\xde\xad\x3c\xbf\xb0\x6a\x3e\x5e\xfd\x94\xdf\xcd\xa7\xb5\xd7\xa9\x3c\x84\xfe\xc6\x7b\xd4\x78\x74\x2b\xf5\x50\xfe\x31\xed\x56\xcf\xc7\x72\xf0\xf2\xa3\x37\xeb\x39\x78\x52\xef\x23\xa5\xaf\xab\xf0\xfd\x46\xe5\x68\xed\x5e\xc3\x6a\xe5\x60\x21\x2f\x37\x63\x8e\x00\xc0\x97\x44\x10\x53\x1e\x03\xda\xcd\xe2\xa7\x92\xe5\x01\x17\x5f\xd5\xc0\x30\x69\x7c\x88\x59\x6a\x30\xc7\x57\x0c\xf7\x73\x5a\x4c\x73\xdd\x04\x51\x55\xbc\xc9\xb2\xd0\xc1\x12\x3b\xcf\x4a\x58\xa5\xdb\xce\xc2\xce\xc7\xc1\x56\x25\xbf\xf3\x2c\x72\xbf\xab\xa1\xcd\x38\xdb\x6a\xce\xdb\xed\x38\x6e\x62\x66\x65\xf1\xec\x01\x6a\x8d\xef\x5b\x25\x3d\xaa\x43\x85\x89\x80\x55\x52\xe7\x19\x54\x19\x6f\xb5\x3a\xdb\x51\x8c\x0a\xe3\x93\x56\x42\x6d\x07\x70\xc9\xf0\x94\xd5\xcd\x2b\x43\x38\x6d\x34\xdf\x7a\xcc\x85\x6d\x38\x65\xb4\xc1\xca\xeb\xcc\x2e\x74\xea\x77\x5b\x9b\x9c\x4c\xc1\x0d\x83\x75\xff\xf8\x62\x95\xd3\x7e\x50\x54\x3f\xf8\x82\x1b\xd4\xf7\xff\x32\xe5\x3e\x35\x3e\x0f\x5d\x9e\x50\xfc\xdf\xcd\xe8\x97\x03\x54\x1f\x3c\xf3\x81\xca\x4f\xaa\x6f\xfa\x42\x8d\x5b\xad\x23\x7b\x12\xf1\x07\xff\x47\xf3\xbf\x34\xef\x97\xa5\xc5\xe3\x3d\xdf\x03\x8c\x12\xe1\xc3\xa3\x3f\x03\x76\x0f\x15\x16\x05\x4c\x07\xc2\xb7\x30\xe7\x7b\x3a\x00\x93\xbf\xeb\x3c\x75\x2a\x02\x0a\x66\xe8\x0f\xda\xce\x04\x59\xc6\x67\x30\x64\x35\x13\x5f\x9b\xef\x1b\x31\x2d\xa7\x03\xcf\xc2\x8d\x42\x2d\x2b\x00\xec\x31\x10\xa1\xf9\x7d\x93\x9c\x1f\xca\x00\x43\xde\x78\xf4\xbb\x69\x80\x86\xbd\x49\xe8\x8b\xe7\x00\xb3\xd0\xf8\xd8\xe3\x18\x80\xd1\x60\xa2\x7f\x6f\x31\xc0\x5c\x6c\x12\x7d\x7b\x11\xc0\x3c\x60\x32\xe5\xfa\x38\x80\x39\xdf\xc4\xa7\x65\x15\xc0\x78\x66\x2a\xd8\xe8\x0f\x30\xab\x80\x52\xde\xbe\xc0\xd5\xc1\x7c\x5b\xce\xad\x7f\xa0\xbe\x9b\xda\xff\x1e\xbf\x7b\x46\xe5\x8a\x75\x7a\xbe\xa3\x7c\xd5\x5a\xde\x7d\xa2\xce\x49\xe7\x35\x7e\xf5\x13\x7f\xdc\x03\x2f\x3d\xf5\x37\xff\x99\x3f\x9a\x8b\x33\x79\xfc\x68\x0a\x8f\x2f\x8d\x5f\x0d\xa8\xb5\x8d\x20\x83\x3b\x00\x4b\x1d\xe9\x11\x5e\x4b\x81\x40\x57\xe5\x09\x2e\xe7\x80\xf1\x9b\xd5\x2f\x39\x10\xc0\xd2\x0d\x9a\x87\xac\xa7\x03\x3b\x3a\xb4\x1e\x9b\xd7\x00\x75\xdf\xb4\x36\x98\x35\x00\xd7\xa7\xeb\x04\x9b\x9e\x00\x9e\xee\xd3\xb6\x30\x35\x02\xbe\xd4\x32\xef\x1a\x87\x53\xfc\x7e\x94\x9e\x14\xc5\x67\xf7\xe8\x24\xfc\x74\x06\x64\x3b\x75\x5f\xbf\xdb\x04\x8c\x9c\xa9\xab\xf5\x72\x16\xa0\xf0\x41\xfb\xfd\xd3\x53\x80\xfc\x66\xdd\x86\xee\x6e\x40\x71\xb1\x8e\x43\x97\x12\xa0\x30\x51\xcf\xf4\xa6\x06\x30\xca\x12\x38\x43\xad\xf3\x9f\xa9\xed\x51\xd4\x3e\x18\xf9\x88\xda\x3f\x1f\xb7\x3c\xa7\x78\xf0\xce\xd8\x77\x94\x1e\xe2\xba\xe1\x4f\xca\x3f\x86\xd6\x41\xd1\xf7\xc0\x0f\xe7\xf1\xf8\x4f\x1e\xef\xbf\x26\xe7\x6f\xde\x8f\xe6\xff\x63\x78\x7c\xa1\x4f\x0b\x20\xf2\x89\x20\xbc\x1e\x03\x46\x2f\xc4\xec\x5c\x52\x01\x1f\x47\xf9\xeb\xb6\x57\x81\x44\x97\x91\xf2\x56\xdf\x80\xd9\x87\x94\x6d\xcc\xdb\x81\xc2\xdd\xaa\x2e\xa6\xb3\x81\xfd\x3f\xd4\xda\x8d\x8f\x03\xa7\x16\xaa\xe7\x18\x9d\x03\xae\x26\xa9\xd7\x1b\x85\x00\xdd\xdf\xd5\x73\x0c\xbb\x81\x37\x29\xaa\x5f\x0d\xa7\x53\x3e\x06\x0c\x9d\x4b\x1c\x94\x61\x69\x50\xba\x07\x91\xb3\x92\x5e\xa0\xbc\x88\x25\x0a\xbf\x51\x09\x17\x8c\x8a\x57\xaf\x01\x49\x25\xf5\xa4\x67\x47\x00\xb1\x89\x0c\x89\x9e\x66\x40\x52\x9e\xd5\xcc\xcd\x05\xfa\x38\xa5\x87\xf2\x8f\xea\x1b\xec\xa7\xf4\x1f\xdd\x23\x3f\xeb\x70\xb0\xa3\x86\x45\x9d\xb7\x2f\x67\x21\x92\xf8\x33\x0f\x82\x37\x0e\xbf\xfd\x50\x78\x7a\x89\x5c\x5e\x5e\x4e\x36\x4f\x1f\x33\x96\xa7\x13\xa0\xef\xbd\x3b\x2d\x00\xf8\xfb\x09\xc2\xb9\x1c\xd0\x5d\x2d\xf4\xc9\x56\x05\x70\x79\x2e\x25\x64\x59\x0d\x8c\x0e\x92\x39\x61\xf6\x18\x98\x74\x4d\x3e\xd7\x78\x0f\x90\x7b\x43\xe1\x18\xcd\xf3\x1b\xae\x04\xca\x34\x95\xaa\xff\xcd\xef\xeb\xfe\x04\xee\x9a\x29\xbe\xd2\x9b\x03\x3c\xb7\x1c\xc5\xd0\x5d\x07\x7c\x37\x97\xef\xa6\x79\x7d\xf5\x0d\x1c\x14\xae\x10\xdb\xc8\xd5\x39\x10\x76\xe0\x31\xcd\x3f\x78\x8e\x14\x1f\x29\xc5\xc6\xe7\x38\xae\x0e\xb2\xff\x34\x57\x07\x47\xeb\xc0\x6e\x6d\x21\x29\x7f\x98\x46\x13\x72\x07\xf1\x47\x1e\x44\x79\x2b\x17\x77\xf1\xf8\xda\x0d\x3c\xdd\x07\xed\x83\x90\xc3\xe3\xbb\x27\xf0\x72\x21\x68\x3d\x10\xed\x7f\x60\xcd\xe3\x95\x6d\x97\x00\x5a\x46\x82\xa2\x16\x22\x80\x5d\x80\xd8\x62\x63\x55\x20\xc8\x4e\x3c\xd2\xe8\x28\x90\xa6\x2b\x55\xa3\x3f\x19\x98\xed\x25\xed\xfc\x9b\xe7\xcf\x04\x76\x54\x28\xcc\xd7\x89\x04\x0e\x89\xca\xc5\xea\x6c\x02\x8e\x0d\xca\xb7\x6b\x37\x00\x17\x7a\xe5\x67\x68\x3d\x01\xae\x7f\x95\xdb\xab\x35\x02\x78\xc8\x27\xeb\x40\xf3\xfa\x9a\xb2\xc0\xb0\x87\xc4\xa0\xc6\x04\x6a\x7e\x9c\x91\x90\xe5\x8d\x47\xf2\xdf\x38\x90\xf1\x92\xda\xd7\x1e\x6b\x7c\xa5\xf2\xc2\xee\xcc\xe2\xfa\xc3\xd0\x7e\x48\xa7\x03\xf0\x97\x0e\x66\x0f\x4f\xf7\x40\xeb\xe1\x56\xf1\xfc\x23\x16\xf0\x7c\x83\xa6\x26\xe0\x2f\xfe\x3f\x22\xf9\x6f\xde\xdb\x8c\xa7\x0f\x32\xcb\x02\x54\x5f\xf0\x1b\x1b\x79\x00\x66\x3f\x85\x1d\xf5\x57\x03\x5e\xc9\x22\xcb\x75\x6f\x01\xf1\x79\x62\xc9\x5a\xde\xc0\xc4\x93\xa2\xdf\xb5\x02\x81\x45\x2e\x12\xf2\xda\x73\x80\x75\xa5\xd2\xc2\xda\x35\xc0\x2e\x4b\x99\x1a\xad\xfd\x40\xe9\x24\x99\x70\xe6\x2c\xa0\x6a\x87\xd4\x62\xa6\x22\x70\x56\x40\xaa\x92\xe1\x05\xb4\x14\x48\x3e\x64\xac\x00\xba\x32\xa5\x08\x46\x31\xd0\xb7\x42\x72\x0d\x53\x0a\xf8\xf4\x45\xe2\xbc\xba\x07\x35\x3f\xfc\x64\x48\x6e\xfd\x02\x33\xb9\xf8\x04\xdf\xa8\x7b\x15\x9d\x65\xa0\xf6\xc7\x66\x9e\xce\xe1\x34\x2f\x07\xa9\x92\xc7\xf3\xef\xe5\x21\xad\x83\x59\xcd\x9b\x17\x4b\xcc\x79\xfd\x90\x37\x2e\x74\x1e\x08\xcd\xff\x07\xf1\xc6\xc3\x89\xa7\x83\x30\xe4\xe5\x8d\x30\x6b\x00\x89\xcd\x04\xa1\xbb\x17\x30\xfa\x21\xe8\xa1\x15\x0b\x38\xbb\x0b\xae\xd3\xd2\x05\x22\x65\x85\xe7\x33\x1d\x81\x34\x79\xe1\x2e\xe6\x7a\x60\xc6\x66\xd1\xdd\x9a\x3f\x80\x3c\x71\x89\x49\x34\xbf\xcf\x88\x02\xb6\xf1\x89\x1f\x67\x3c\x02\x0e\xec\x90\x34\xd7\xc8\x05\x8e\x9c\x91\x50\xd6\x28\x00\x4e\x4c\x94\xd8\xc4\x59\x0f\x8d\x6e\xe2\xdb\x35\x44\x80\x1b\xd1\x12\x16\xea\xf3\x80\x07\xd5\xe2\x92\xea\x8b\x80\x17\xf9\x62\xb3\x54\x7b\x81\x8f\xd5\xc2\xca\x6a\x05\x94\x3e\x28\xfa\xdf\x3a\xa0\x33\x22\x5c\xa4\xfd\x70\x7e\xeb\x60\x78\x7a\xc0\x82\xb7\x7f\xf7\x81\x39\x19\x7f\xf7\xc3\x14\x9e\xcf\x12\xad\x07\xf2\xe3\xfd\xff\xed\xf6\x71\x51\xff\x20\x17\x47\x09\x00\xfc\x91\x04\xc1\x94\x01\xb4\xb7\x0b\x8c\x90\x79\x0f\x18\x1d\x26\x08\x89\x26\xc0\xe9\x15\x41\xa8\x1b\x03\xf1\x3f\x04\x8d\xd5\x82\x81\xcc\x4a\xc1\x4c\xa9\xd5\xc0\xe4\x75\x04\xa1\x36\x07\xc8\x9d\x2c\x6c\x2e\x21\x00\x2c\x59\x4d\x10\x12\x53\x80\xd5\x17\x09\x42\xad\x07\x28\xd9\x2c\xba\x48\xed\x13\x50\x66\x2d\x26\x25\x79\x0a\xa8\x70\x20\x08\xd5\x85\xc0\xb9\x4a\x91\x3d\xaa\xbb\x80\xa6\x59\x22\x77\xc5\xd5\x81\x96\x10\x82\x50\x35\x07\x7a\x1c\x85\x73\x24\x75\x81\xa7\x9b\xfe\x57\x07\x54\xc3\xeb\x67\xfb\x79\x75\x6f\xe3\xe9\x65\x68\x1d\x0c\xdd\x07\x68\x5f\xa0\xa9\xbc\xbc\x41\x5a\x07\x12\xcb\xc3\xdf\x3a\x10\xde\xdf\xb7\xe4\xf9\xe8\xd0\x3a\x10\x05\x3e\x80\x38\x46\x10\x62\x7b\x01\x49\x65\x82\x10\xfa\x02\xa8\xcf\x27\x08\xfe\x91\x80\xc9\x37\x82\xe0\xbf\x0e\xb8\x6a\x11\x84\x5a\x35\x90\xba\x4f\x30\x4a\x4c\x02\x18\xbb\x88\x20\xc4\xe4\x81\xac\x48\x82\x50\x2d\x05\x96\x08\x09\x39\x09\x26\x03\xf3\x8f\x10\x84\x40\x11\xb0\xbc\x8a\x20\xd4\x36\x03\x3b\xa7\x8a\xfc\x54\x25\x81\x83\xe6\x22\xa7\x47\x94\x03\xfb\xed\x08\x42\x48\x0b\x38\x72\x8b\x20\x54\x4d\x81\x0b\x22\x22\x7a\x02\x2b\x81\x06\x1b\x82\x10\x91\x02\x5a\x4b\xb8\xef\x65\xff\xc7\x0f\xe4\xaf\x5c\x98\x7f\xde\xeb\xdb\xce\x20\xfe\xf0\xbf\xe7\x2b\xb2\xa5\xde\xe3\x4a\x9e\x72\xf5\xe3\xa0\x86\x9f\xff\xc3\x11\x17\x00\xcd\xf4\x88\x23\xc2\x4c\x40\xb7\x79\xcc\x66\xb1\x27\x80\x91\xfb\xc4\x44\xe9\x76\xc0\x30\x78\xee\x4b\xd9\xc3\x80\xa1\xcf\x6a\x6d\x85\xd1\x80\xe1\xe9\xe2\x93\xa3\x12\x01\xfd\xef\x65\xf7\x46\xed\x00\xf4\x6f\x9d\x69\x51\x1e\x07\xe8\xf5\xb7\x57\x28\xbb\x02\x7a\xcb\x9f\x7a\x2b\xad\x03\xf4\xb6\x7f\xbd\xab\xf8\x04\xd0\xd9\x09\xc8\xf6\x00\x4c\x61\x40\xfc\xe2\x0f\x4d\x4d\x21\x40\x2a\xee\xbd\x97\xa6\x32\x20\x3d\x7b\x20\x55\xab\x05\x90\x5b\xd0\xe7\xcf\x64\x01\x32\x61\x8f\xe6\x69\x0a\x00\x32\xfb\xba\x5a\x35\x27\x03\xb2\x29\xb7\x7d\x38\x1d\x47\x6e\x67\xfb\x5d\xa6\x08\x20\xbd\xbe\xad\x89\xf9\x01\x90\xb9\xd4\x3c\x9a\xb9\x1d\x90\xa1\x5c\xf0\xfe\xc7\x0f\x84\xe6\xb7\xe6\x11\xff\x0f\x1d\x04\x9d\x17\x23\xf3\xc8\xc5\x87\x83\x6a\x1f\x7d\x52\x04\x6e\x00\x5a\x39\xe1\x7b\x85\x39\x75\x69\x8f\xa9\x14\x6f\x00\x8c\xcc\x27\x9c\x97\x3e\x04\x18\x26\xcc\xb5\x96\xdd\x0a\x18\x7e\x59\xf9\x50\xe1\x2a\x60\x6c\x57\xdc\xa4\x3c\x12\x30\x4a\xa9\xd8\xaa\xf2\x1a\x30\xb4\x3c\x5b\xa5\x3a\x09\x30\xc8\xe8\x58\xac\xba\x1d\x30\x88\x7c\xb6\x4c\x35\x1d\x30\x74\xf8\xf5\x4b\xa5\x80\x1e\x07\x96\xa3\xb6\x39\x20\x53\xf7\xa5\x4e\xf3\x31\x20\xfd\x65\x30\x40\x6b\x18\x90\x9b\xdd\xef\xa0\x2d\x04\xc8\x13\x4f\x42\xb4\xd5\x00\xf9\xb9\x0f\x34\xb4\xea\x00\x79\xc5\x4e\x0b\xed\xa9\x80\x82\x53\x47\x83\xb6\x17\x20\x8f\x6b\x17\x35\xaf\x01\xb2\xef\x9b\x7b\x34\x0f\x02\xb2\x87\x1b\x05\xb4\x56\x03\x72\x94\x6b\xd6\xff\x97\x0f\xc6\xdf\xf5\xff\xf6\x01\xe0\xe5\xc5\xa8\xbc\x77\x7e\xc4\x6f\x03\x68\x06\x7a\xc7\x09\xf6\x00\x3a\x5b\x43\x17\x8a\x2c\x02\x0c\x66\x26\xc6\x49\x8c\x01\x8c\x17\x67\xa6\xc9\x8c\x05\x4c\x2f\xcd\x39\x3a\x32\x06\x30\x9d\xbd\xea\x80\xd2\x72\xc0\xe4\x54\x71\x93\xca\x43\xc0\x24\xb4\xe2\xa6\xfa\x2a\xc0\x28\xb6\x41\x54\xdd\x11\x30\x1c\x7b\xb3\x40\xdd\x14\x30\xb4\x79\x76\x53\xad\x0f\x30\xf2\x1b\x7e\xa7\xa6\x06\xe8\xfa\x03\x72\x7d\x3f\x97\xea\x54\x00\xf2\xd9\x1f\xfa\xb4\x9b\x01\x79\x93\xd7\x29\x3a\xad\xc0\xc8\xd1\xcf\x66\xe9\x1a\x00\x8a\x63\x7b\x3a\x74\xdd\x00\xc5\x0b\xf7\x56\x69\xe7\x00\x0a\x6e\xb7\xa3\x74\x7d\x00\xc5\xfe\x76\x79\x1d\x4d\x60\xa4\x45\xab\xac\x4e\x00\x30\xd2\xfb\x8a\x8e\x56\x07\x20\xcf\xb8\x54\xa4\x3d\x12\x90\x4f\xff\xaf\x71\xf8\x6f\x3d\xd0\xff\xe8\x41\x78\xba\x18\xf5\x31\x8e\x56\x02\x49\x80\xae\x89\x97\x83\x70\x1e\x60\x20\x1c\x72\x59\xcc\x12\x30\x91\x8a\x6b\x90\xe2\xe0\xdd\xf1\x4e\x32\xdf\x00\xb3\xe2\xd9\xa5\x23\x2b\x00\x33\x46\xfe\x06\xa5\x36\xc0\xec\x51\xf1\x1c\xf5\x4c\xc0\xf4\x7c\xc5\x5c\x46\x0e\x60\xe2\xd4\x30\xc0\xb4\x00\x8c\x76\xde\xaa\x66\xb8\x02\x46\xab\x5e\xbe\xd0\x00\x60\x9c\x0c\xa8\x87\x02\x7a\x01\x80\x42\xf6\xd7\x6c\xbd\xb9\x80\x62\xe7\x60\xbf\xde\x29\x40\xc9\xb0\xbf\xd4\x40\x1c\x50\xb9\xdd\xfb\x45\xaf\x06\x50\x7a\xd9\x5d\xa4\x77\x00\x50\xfa\x71\x67\x9a\xbe\x2c\xa0\x5c\xd2\xe1\xaa\xbf\x13\x50\x89\x6e\xbb\xa2\xcf\x04\x94\xd3\x9b\x16\xe9\xc9\x03\xa3\x2a\x2e\xef\xd1\x13\x03\x46\xcd\xbc\x60\xa0\xf3\x16\x18\x79\xf2\x3f\xd7\xc3\xbf\xf4\x0f\x34\xff\xcf\xe3\xbf\x1d\xf4\xa8\xfb\xef\x74\x4e\x0a\xd3\xc5\xd6\x63\x44\xd0\x3f\x3a\x29\x23\xd1\xc0\xdb\x62\x77\x00\x0b\x89\xd8\xf9\x32\xcb\x01\x0b\xb1\xf4\x57\xf2\x21\x80\x95\xe0\xec\x26\xa5\xfb\x80\x85\x7b\x7e\xa5\xaa\x0c\x60\xfe\x63\xdb\x6e\x8d\x1d\x80\x39\x71\x24\x48\x33\x0b\x30\xa9\xbe\xb0\x50\x93\xd3\x25\x0f\xdf\x8d\xd3\x7a\x06\x98\xc8\xbe\xfe\xa9\x79\x04\x30\x66\x01\x1a\x79\x2c\x55\xfd\x0a\x60\x54\xd5\xc7\xf9\x9c\x13\xa5\x32\xf9\xca\xd4\xe0\x0c\xa0\xda\xd1\xb7\xdb\xd0\x00\x50\x7b\xfa\xc8\xc7\xe0\x12\xa0\x16\xdd\x25\x67\x28\x07\xa8\xdd\xb9\xe9\x6a\x90\x00\xa8\xe6\x5d\x2d\xe1\x9c\x44\xd5\x65\x5b\x1a\x0c\xf2\x00\xd5\x98\x46\x2d\x03\x7f\x40\xa5\xf2\xfc\x02\x83\x01\x40\xd5\xfc\x8c\xbc\x41\x2a\xa0\x32\x02\xff\xa1\x7f\xf8\xf7\x38\x70\xeb\xff\xad\x83\xa8\xd5\xd5\xe0\xa0\x6a\xb5\xc9\x4b\x7e\x7e\x40\x3b\xcb\x3a\x48\x30\x0c\x30\x58\xea\xd4\x2e\x22\x0f\x98\x4f\xf5\x3b\x20\xa9\x01\x58\x75\x44\xbd\x93\xdd\x08\x58\xf3\xa7\xd5\x8d\x1c\x05\x58\x3d\x9e\xd1\xa7\x34\x08\x58\x19\xaf\x58\xab\x36\x00\x58\xf6\x6e\xab\xd5\x94\x04\x2c\xd6\x1e\xf1\xd5\xae\x02\xcc\xed\x2e\x3e\xd5\x9d\x04\x98\xde\xb9\xa7\xa6\xab\x0b\x98\x2e\x7c\x77\x5c\xc7\x08\x30\xb9\x04\x30\xc5\xbe\xa7\x1b\xe7\x02\x8c\xec\x37\xb9\x26\xd3\x00\xad\x8c\xe7\x7b\x8c\x8d\x00\x66\x7c\xcf\x41\xe3\x58\x80\x79\xe9\x5e\xb9\xf1\x0f\x40\xb3\xf1\xb6\x82\xb1\x12\xa7\x97\x5e\x8b\x32\x09\x07\x34\x77\xfe\xd6\xc5\x05\x1a\xcd\x00\x34\xf8\x2e\xec\x30\x1c\x01\xa8\xce\x3a\xf3\xcc\x88\x09\xa8\x15\x9d\x36\x36\xd4\x05\x54\x5e\xfc\xd7\x7a\xf8\x3d\x0f\xb6\x11\x7f\xdc\xfb\x26\xee\x33\xa8\x9c\x73\xf1\x54\x8d\xbd\xd4\x7a\x58\x61\xa0\xc4\xbf\x14\xd0\x7b\x63\x6e\xc0\xd9\x95\x68\x7d\x90\xe5\x08\x2f\x43\x49\x06\x60\xa3\x1e\x21\x23\xdb\x0c\xd8\x7b\xa5\x9a\x29\xa9\x02\x76\x92\xd3\xa7\xab\x06\x00\xb6\xb1\xcb\x27\x33\xad\x01\xeb\xe4\x6d\xce\x5a\xaf\x01\x2b\xfe\x4a\x2b\x3d\x15\xc0\xe2\xf9\xa5\x4f\x06\x8b\x01\xf3\xa1\xee\xab\x86\xb3\x00\xf3\xa5\x5f\xea\xf4\x1f\x01\x66\x86\x80\x16\xf9\x71\xd8\xf4\x2a\x48\x9d\xdd\x2f\xd5\x4d\xe7\xe3\x8b\xce\xbe\xc7\xbd\xa6\xe7\x30\xa0\x6b\xd6\x6d\x60\x7a\x15\xfd\xba\x1a\xb7\xab\x4c\x35\xf0\x45\xbb\xb0\xdd\xce\x34\x1b\x1f\xb5\xeb\x5a\x1b\xcc\x74\xf0\x4a\x67\x76\x63\xac\xe9\x7d\x7c\xd1\x0e\x3f\xff\xd9\xa4\x09\xd0\x14\xaa\xbf\x68\xf2\x10\x60\xce\x3b\x71\xc7\x64\x18\x60\x2a\xd6\x2d\x34\x89\x06\x34\x0e\xfc\xbf\xd6\x03\x8f\xf7\x25\x54\x28\x7e\x47\x68\x82\x0a\x75\xff\x5f\xd6\x56\x25\x8a\xe2\x7b\x8e\x6a\x27\x09\x34\x02\xc6\x84\xf1\x5e\x61\xb5\x7f\x72\x94\x68\x7d\x90\xc3\xfb\x10\x65\xf9\x77\x80\x93\x53\xd2\x52\xe5\x25\x80\x93\xe9\xd4\x3e\x8d\xc7\x80\x43\xc5\xb2\xbd\xda\x3b\x00\xbb\xb8\xad\xa7\xf5\x1e\x01\x36\xd6\x95\x93\x0d\x0f\x02\x56\xbb\x1b\x37\x19\xbf\x02\x2c\x83\x1f\x05\x73\xbe\x4b\xcb\xb9\xbf\xea\x8c\x0f\x0c\x79\x98\xc7\xe2\xbd\x5e\xd7\xe0\x6e\xb3\xcb\x78\xa4\x4f\x3c\xf9\x66\xee\x84\x66\x03\x83\xee\x60\xf3\x72\x34\x18\x9c\xb8\x3b\xdb\x42\x16\xa7\x0c\x75\xda\x8d\xcd\xcf\xa2\x59\xbf\xa9\x55\xdf\xe2\x1e\x4e\x19\xea\xff\xd6\x41\x15\x98\xcf\xc4\x53\xdd\x80\xb3\xd2\xe6\xbe\x78\xad\x33\xf3\xc4\x06\x8b\x66\xf4\xe8\x3e\x3d\x6a\x65\xfe\x03\x1f\xb5\x5b\xab\x99\xe6\x7a\x80\xe6\x2f\xfc\x87\xfe\x81\x5e\x07\x6a\x1b\x29\xe4\xf9\xbe\xd3\x3a\x08\xf5\x12\xd5\x39\x7c\x29\x80\x9e\x26\x73\xb6\x40\x24\x60\x51\xab\x1f\x2d\x34\x0b\xb0\xc9\xb6\xf0\x14\x4b\x06\x9c\x77\x38\xdd\x90\xe9\x02\x5c\xac\x03\x47\x8d\xf4\x01\xdc\x9a\x12\xbe\xa9\x2d\x03\x5c\xde\x4f\x3e\xcc\x7c\x07\x38\x87\x2c\x9d\xae\x37\x1b\x70\xe8\xd8\x1a\x69\x14\x08\xd8\x2d\xaa\x12\x31\xdd\x0f\xd8\xc4\x35\x2f\x36\xbf\x0e\x58\x8f\x78\xba\xc9\x22\x0d\xb0\x76\x42\x9e\x39\xf3\xf3\x0d\xcb\x16\xac\x37\x0d\x7c\xbe\xdb\xea\x2c\xc6\x99\xb7\x76\x67\x5a\xb7\x23\xc4\x32\xee\xb6\x89\xf5\x0a\x8c\x33\xbf\x73\xfd\x8c\xf5\x6c\x4c\x37\x7b\xdc\x2a\x6c\x3d\x1b\x0b\xcd\x64\x2f\x4f\xb3\xd6\xc6\x26\x93\xe9\xe7\x75\xac\x5a\x50\x6a\xf4\xb1\x5e\xca\x3a\x01\x87\x8d\xfa\x69\xfd\x4f\xcd\x2f\xab\xa9\xe8\xd0\x1f\x53\x99\x6f\xa5\x8b\x47\x7a\x3a\x65\xa3\xad\x19\xe8\xd6\x3b\xfc\xe7\x3c\xa0\xfb\xa1\x26\xf7\x67\x1e\xff\x2f\xf8\x52\x9e\x4d\xfc\xe1\x03\x40\xe7\x21\x58\x78\xa8\xad\xe4\x5f\x0d\x38\x89\xeb\x44\x0a\x85\x00\x2e\x26\x26\x77\xc4\x98\x80\x67\xbd\xbd\xbb\x4c\x32\xe0\xf5\xd0\xeb\xf9\xa8\x0e\xc0\xfb\x51\xf4\x10\x83\xf3\xdf\xbb\x26\x5c\xd2\xd9\x0b\xb8\x0b\x2c\x4e\x33\x92\x06\x9c\xbf\x6e\xd1\x34\x2b\xe5\xcc\x9b\xaa\x6c\x2b\x45\xc0\xae\xba\xb5\xde\x56\x1d\xb0\x79\xd7\xdf\x65\x6b\x4b\x86\xda\x5c\x84\xad\xf5\xe9\x57\xdd\xb6\x63\x48\xd8\xc5\xd3\x3a\xa0\x5b\x33\xec\xca\xc0\x6f\xb7\xf2\xaa\xa0\xfd\x5d\xf2\x87\x7d\x01\x9d\x93\x77\x61\x92\x43\x23\xc4\xec\x2e\x9f\xbd\x6d\x6f\x01\x3f\xab\x3d\xa7\x2c\xec\x6b\x10\x6a\x15\x50\x7b\xd9\xc1\x16\xc9\x96\xa9\x55\xa1\xf6\x2f\x30\xd3\xbc\xb9\x7c\xaf\x9d\x36\x4a\x8d\x1b\x4a\x27\x3a\x14\xa1\xc0\x4c\x7f\xff\x04\xbb\xb3\x38\x6e\xb4\x15\xff\xa7\x0e\x86\xe6\xff\xe9\xfb\xef\xb4\x0f\x80\xd1\x59\xe1\xfb\x1c\xb4\x52\x11\xcf\xe7\xa0\xc7\x78\x86\xd6\x88\x43\x80\xaf\xaa\x6e\xae\x30\x80\x20\x6f\x2b\x41\x69\x5f\x20\x30\xde\xa3\x40\x29\x05\x08\xac\x0b\xf7\xd4\xfc\x04\xf8\xb9\xa6\xb7\xeb\x9f\x03\xbc\x17\x2e\x5c\x66\xce\x99\x27\xb7\x8b\xb6\x59\xb1\x01\xe7\xb5\xd5\x4d\xf6\x8b\x01\x87\xaa\x6b\x73\x9d\x1c\x01\x7b\x91\xb7\xd2\xce\x42\x9f\xe5\xed\xbb\xc8\x7c\xd7\x89\xbd\x9b\x1c\x2d\xc8\x89\xee\x49\xb7\xcf\x38\xf6\x90\xcb\xdc\xb2\x7e\xfb\x00\xf1\x72\xd1\xce\x4b\x3b\xaf\x24\xeb\x5d\x1c\x4f\x85\x3b\x9f\x20\x7b\x9c\xfc\x8f\x25\x3a\x9f\x24\xbf\x3a\x3c\xaf\xf2\x76\xc9\x07\xbf\x83\x47\x79\xaa\x73\x2e\x6c\x6c\x5e\x1e\xfc\xea\xac\x86\x70\xab\x5f\xfb\xaf\x3a\x89\x23\xc7\x42\xac\xe4\xa4\xb3\x15\x66\x5a\xe4\xed\x5e\xec\xf8\x1d\x1b\xcc\x14\xff\x63\x1e\xf0\xf8\x7f\x82\x10\x99\x4a\xcd\x83\x68\x41\x4a\x0f\xa3\x57\xc8\x6f\xc3\x41\x4b\x06\x57\x0f\x41\xfb\x62\x04\xc8\x49\x52\xeb\x27\xbc\x9b\xd1\x25\x64\x0f\x44\x2f\x33\xf1\x92\xbc\x06\x8c\xee\x74\x52\x51\x7c\x09\x84\x8b\x04\x75\x6a\x7d\x00\x82\xbf\xa7\xa4\x18\xaf\x00\xfc\xeb\xe7\x7c\xb0\xfa\x05\x78\xdd\xdc\xb4\xcb\xe1\xee\xb0\xb2\xbb\x5d\x55\x86\xdb\xd7\xaf\xf7\x5c\x76\xb6\xde\xf3\xae\xfd\xb0\xc4\xd9\xab\xdf\xcc\xaf\xf7\xc5\x06\x17\x59\xf6\x91\x80\xab\x77\x8a\x5d\x4f\xb1\x2f\x04\x34\xb7\x94\xb8\x47\xb1\x3b\x02\xce\x5f\xf0\x74\xaf\x23\x45\xfc\x7c\x4e\xf7\x7a\x2c\x27\x19\xbe\x39\xc7\x34\x3d\x7c\xc8\x64\xaf\xc4\xea\x3d\x1e\x87\xc8\xb9\x9e\xfa\x65\x0f\x3d\xb2\xc9\x1a\x37\xe6\xc1\x11\x1e\xcf\xc9\x8b\xae\xfe\xfb\x4a\x3c\xc6\x91\xaf\x9c\x5a\x76\xbd\xf0\x58\x07\x41\x87\x1f\x3b\x9c\xdc\x77\xc0\xcc\x8e\xb1\xcd\xc1\xdd\x18\x41\x36\xea\x45\xab\xdc\xee\x22\xcd\x6a\xf2\x1f\xfb\x01\xa1\xd8\xf7\x67\xfd\x22\x6c\x82\x1a\x17\xcd\x8f\x04\x95\x8b\x41\xfb\x41\x38\x4d\xe7\x22\xed\x8b\x11\xf9\x7c\xc4\x0f\x8a\x07\x3a\xa9\xa2\xc2\x3f\x08\x8c\x1d\xa3\xab\x2a\xf6\x13\x48\x19\x6b\x5d\xa8\xd0\x08\x24\x5e\xf1\x39\xab\x15\x05\x44\x7d\x89\x5f\x62\x91\x34\xa4\x16\x36\x23\xbb\xc4\x49\xfa\xc3\x97\xa0\xcc\x35\x0b\xbc\x19\x03\xcd\x7e\x87\x4a\x4b\x82\x8c\xfb\x94\xbc\x0f\x5d\x38\x11\x3e\xa9\x47\xdc\x33\xaf\xc7\x23\xea\xd9\xbd\x14\xcf\x70\x56\x4d\xf4\xe5\x66\x7f\xef\x44\xd6\xd7\xd1\x7c\x67\xde\xfb\xd4\xb1\x9d\x22\xce\xd6\x5d\xf1\x9d\xcd\x5e\x1c\x66\x52\x35\xc2\xf7\x32\xbb\x3e\xb8\xf6\xf0\x6d\x3f\x01\xf6\xdb\xc0\xa4\xfd\xe7\xfc\xec\x48\x86\xdf\x87\x3d\x5e\x7e\x52\x64\xb0\x4f\xcd\x8e\x32\xdf\xb7\x64\xae\xe7\xb3\x62\x19\x5f\x6f\xb2\xca\xdd\x69\x8b\x9e\x4f\x2f\x79\xdb\x65\x68\x93\x94\xcf\x56\xf2\xb3\x53\xdf\xfa\x38\x9f\x7a\x8c\x70\x6c\x58\xfb\xd0\xfb\x3e\xb4\xed\x57\xfe\xef\x3a\x20\x74\xb9\xf9\x0f\xf4\xfd\xf7\x7f\xd7\x1f\xc0\xcb\x43\xa0\xf9\x9f\xb1\xbc\x7b\xb0\x13\x42\x46\x50\x3a\xfd\xa9\x3a\x6a\xcf\x28\x9f\x94\x87\x26\x0e\x72\x46\xc0\x44\x6f\xd7\x09\xcc\xd0\x2f\x2b\xc6\xbe\x8a\xd8\x6a\xfd\xe0\xe5\xad\xf8\xd3\x99\x62\xde\xf6\x3d\x67\xa3\x7d\x73\x03\x42\xae\xdd\xad\x8a\x98\xbe\x23\x2e\xba\xac\x7d\x79\xc8\xad\x13\xcf\x13\xad\x5b\xba\x82\x74\xef\x38\xa6\x58\x35\x9a\x05\xdc\xfd\xc2\x48\x8d\x3b\xe9\x19\xd4\x36\x8c\x14\xc3\x4a\xfd\xe0\xe3\xac\xfc\x84\x92\x03\x08\xd9\xce\xea\x8f\x55\xdf\x93\x10\x2a\xce\xd6\x18\x3d\xb0\xe3\x52\x48\x2b\x7b\x4e\x84\xfa\xb6\xc6\x90\x17\xec\x3d\x61\x61\x45\xbb\x82\x33\x49\xa1\x40\xe6\x86\x85\x21\x3f\x48\xfe\xc0\x75\xeb\x52\x82\x4f\x92\x01\xbe\x67\xd6\x3c\x0e\xda\x40\x16\x79\x4e\x5d\x79\x31\x44\x91\x5c\xed\xe5\xb2\x3c\x29\xc8\x82\xec\x71\x79\x93\x37\x14\x98\x44\x7e\x71\x8e\xe1\xd4\x3f\x92\xd7\x27\xf9\xef\x52\xfd\x80\xa7\x03\xa1\xf9\x6f\x3a\x07\x20\x30\x8a\xf8\xeb\x1e\x38\xed\x0b\x42\xdf\x87\xa6\xf5\x20\x8b\x0a\x25\xa8\xe7\xb6\x25\xe6\x5a\xa7\x25\x58\x9f\x7e\xce\x5b\x6d\xa7\xc7\x24\x9e\x7d\xc8\x2e\x0b\xb4\xb0\x09\xef\x6c\x98\x20\x98\x94\x1b\xe0\xde\xf6\x35\x75\xc2\xac\xe1\x18\xc5\x8b\xfe\x49\x23\xd6\xd7\x27\x07\x9c\xd6\x8c\xd7\x3d\xb2\x3d\x7d\xea\xd1\xfa\xe8\xfe\x36\xe9\x09\xeb\x2a\x27\x45\x7d\x1b\xf8\x9c\xc5\x2e\x5d\x36\x3a\x69\x58\x79\xc2\xb6\x1d\x35\x31\x92\xc3\x07\xd2\xb3\x8a\xd8\x31\xb1\x2c\xf5\xb1\xa6\x1b\xa5\xa2\xb3\x58\x47\x12\x4e\x17\x5e\x8b\xf1\x64\xdd\x8b\x17\x5f\xf3\x74\x74\x17\xdb\x7d\x74\xce\xca\xe2\xd1\xb3\xd9\x6b\x22\x94\xf2\x1e\x8f\x0e\x63\x5f\x0b\xf9\xb4\x54\x22\x6a\x0e\x29\x17\xe8\xb9\xa4\x38\xaa\x84\x64\x06\xcc\x5d\x14\x1f\x19\x4d\x66\xf8\x14\x2d\x68\x88\x78\x4f\xae\xf0\x6a\x9b\x2b\x1d\x31\x9e\x3c\xeb\x3e\xe9\x9f\x75\xc0\x6f\xca\xad\x43\x93\xe7\x03\x42\xf3\xdf\xb4\x0e\x82\xae\x9f\xe6\xc1\x69\x1e\x74\xf1\x6e\xe2\xcf\x7b\xe1\x57\xd6\xc5\xf0\x3b\x10\xc4\xa7\xa5\xeb\x77\xa9\x7e\x14\x75\x78\x96\xb8\x26\xce\xec\x9b\xfa\xf2\xbb\xec\x3c\x7b\xcf\x3a\xcb\x47\xcd\xa3\xe6\x77\x46\xef\xf3\xd3\x39\x79\x6b\xfa\x40\x16\x91\x70\xa8\xe2\xf5\x24\xf1\xe5\x6e\xe3\x47\xee\xf3\xc8\x78\xbd\xf7\xd1\xa4\x35\xdb\x97\x8c\x5b\x7d\x7e\xe7\x74\xd9\xcd\x67\x52\x65\x1f\x4f\x9a\xd1\xbb\x4e\x7f\xec\x8a\x21\xa1\x19\x71\xf9\xe3\x53\xd5\x86\x06\x26\x55\x2f\x0b\x1a\x3b\x6d\x78\xcb\xf8\xd7\x4b\xc4\xc6\xaa\xb0\x04\x52\x3f\x2d\x8c\x4f\x49\x61\x65\x27\x5d\x5c\xb0\x31\xe9\x33\xeb\x6a\x82\xec\x5c\x97\xe4\x10\x36\x5f\x6c\xdd\x6c\x8d\xa4\x42\xf6\xd8\xa8\xc9\xb3\x6e\x27\x56\xb2\xab\xc3\x8e\xcc\xe4\x4b\x54\x67\xf7\x86\xe8\x64\x9f\x4f\x88\x23\xc5\x03\x2f\x4e\x2b\x8b\xab\x22\x13\x7d\x03\xa7\x6e\x89\x13\x20\x17\x78\x67\x02\x04\xcf\xdf\x43\x91\x57\x27\xad\x03\xa1\xf3\x30\xe8\xfa\x27\xc6\x71\x71\x4e\x2b\xf1\x17\x0f\xc8\xf5\x45\x60\x19\x6f\xa3\xf8\xae\xf7\xef\x76\x51\x7d\xe3\xf9\xf9\xbd\x3b\x94\x1a\x08\xa2\x33\x76\x47\x9b\x7e\x8b\xd2\xe5\xe6\x4d\x45\x6d\x4e\x35\xa6\x39\x27\x1f\xac\xcd\x0f\x3d\xed\x25\x7d\x28\x61\xf9\x93\x71\x44\xcc\xc3\x2d\x7c\x0b\xca\xe7\x3e\x99\x90\xbf\x7a\xee\x9c\xf0\x2d\xab\xa6\x1b\xe4\x5a\xcd\x12\x3c\xf6\x7a\xb6\xf1\x3c\xa3\xec\xe8\xbb\x2a\x73\xa5\x66\x9e\x9f\xee\xfb\x63\xe9\x3c\x2f\x5a\xf7\x31\xb5\x62\xf2\xc4\x61\xb1\xac\x0b\xff\xe3\xf3\x51\x3f\x61\x01\x2b\x2d\x39\x60\xa2\x41\x66\x26\xeb\x5c\xc2\xfa\xcc\x57\xe3\xdb\xd8\xea\x31\x7e\xff\xd6\x7b\x8c\x77\x4c\xab\x66\x37\x85\xba\x8e\x37\x1d\x2b\x47\x2a\x06\x3c\x49\x8b\x1f\x9b\x4d\xda\xfa\x8b\x00\x92\x3c\x3d\x8b\x71\x18\xf1\x97\x0e\xe4\x77\x3e\x10\x5d\x7f\x2f\x17\x57\xb9\x11\x7f\xe8\x60\x7e\x15\x96\x50\xe3\xf6\xb6\xba\x94\x9a\x1f\x4f\x1f\x97\x7d\xa4\xde\x77\x3e\xae\xec\x91\x88\x26\x88\x56\x83\x8a\xd1\xcc\x75\x72\x4a\xf5\x96\x07\xb3\xac\x3b\xf5\xb5\xcb\xbe\xec\x09\xf1\xf7\x74\xee\xdb\xa6\x52\xbc\x6f\xcc\xe4\xf0\x15\xcb\xa7\x6c\x14\x99\x31\x23\x6d\x79\xce\xfd\xc2\x97\xeb\xaa\x26\x6d\x98\x5a\xb6\x66\x7b\xf5\xf6\x69\x16\x13\xb6\xae\xfa\xd0\xb1\x34\xdb\x26\x7d\xda\x2a\x9f\xcf\x6f\xb2\xf5\xd2\x1a\x96\x5f\x1b\x96\xce\x3a\x90\xb6\x3d\x57\x72\x78\xdf\xf8\x86\xb1\x1f\x16\x5f\x63\x69\xa6\xf2\xa7\x6a\x2d\x10\x65\x65\x27\x7d\x1a\x3b\x7b\xee\x6a\xd6\xd5\x84\xa0\x94\xe9\x39\x04\xdb\x28\x46\x26\x25\x66\x66\x05\x3b\x31\xaa\x2b\x79\x30\x7b\x09\x7b\x53\x84\x5d\xf2\xf2\xa9\x77\xd8\xd7\x43\xdd\xc6\x90\x53\x6d\x48\xa1\x20\xed\x31\xe6\x59\x4c\x32\xd6\x77\x47\x62\xe7\x84\x99\xe4\x6c\xef\xcb\x00\x73\x07\xb7\x2e\x47\x6f\xe2\x2f\x1d\x48\xc6\xd3\xbf\xeb\x5f\x33\x8b\x8b\x3b\xa8\xdc\x8b\x9f\x67\x0e\x3c\xa0\xea\xd7\x28\xa7\xea\x7e\x92\x50\x4b\xf1\xba\x77\x27\x1f\xa7\xee\xc5\x36\x7f\x39\x4d\xad\x97\xb3\x5d\xf5\x53\x95\xdf\x88\x96\x57\x6e\x38\x11\x67\xd2\xca\x08\xda\x89\xda\xed\x1e\xad\xd6\xbd\xab\x4f\x1c\x11\x8a\x89\xf4\x1f\x3b\x7b\xe0\xa0\xd6\xe4\xba\x84\x39\x59\x1a\xfb\x53\xd6\xbc\x4b\x6d\x49\x1d\xd8\xfb\xb4\x62\xc1\x78\xd7\xc4\x0d\x7b\x56\x5f\xf7\xca\x18\x8e\xbd\x5e\x72\xe7\x83\x4b\xa6\x79\xcc\xaf\xed\x43\xc3\x03\x69\xa9\x31\xaf\x36\x2f\x66\xcd\x4d\x52\x89\x75\x5c\x1f\xcc\x3a\x97\xb0\x24\xa6\xa0\xa0\x9a\xcd\x88\xf1\x88\xd9\xb0\xda\x95\x1d\x38\x7a\x5a\xcc\xf7\xe5\x7b\xd8\xf9\x11\xf5\xd1\x37\xf2\x24\xd9\xd7\x42\xa3\x63\x5c\x16\xfb\xb1\x11\xb4\x3f\xba\x77\xe1\x12\x52\x3b\xe0\x68\x0c\xff\xdc\x0d\x64\xa4\x9f\xe6\x68\x93\x39\xe2\xe4\x56\x2f\x91\xd1\xf3\x67\xdd\x26\x0f\x79\x0a\x01\x36\x3c\x1d\x60\x70\x38\xf1\x97\x0e\x64\xce\x46\xe2\x2f\x1d\xc4\x2e\x8a\xc7\x19\xca\x3c\x4c\xf1\x3a\x83\xa8\xe1\xde\x7b\x0e\x3a\x49\xf5\xcb\xbb\x61\x5c\x3d\x4c\xeb\x94\x8b\xd4\xbc\x3a\x73\xa4\xb1\x9a\x83\xb5\x63\x5a\xa6\xcb\xb7\x10\xc4\xde\xe2\x2b\x31\xba\x8b\x14\x37\x6e\x50\xbd\xd8\xe1\x24\x63\xb4\x74\xd1\xd2\x73\x87\xc3\xa3\x5d\xaf\x4f\x1c\x73\xaa\x2e\x73\x7c\xf8\xe7\xe4\x37\x27\xe7\xad\xd4\x89\x19\x1d\x73\xf9\x44\xf0\xe1\x9d\xf1\x0f\xc3\x1f\x1c\x97\x6a\x4b\x4d\xbc\x19\xe2\x71\x6c\xde\x3b\xcb\xc4\x9e\xe0\x86\xaa\x35\xac\x07\xb1\xe7\x82\x5b\x0e\x95\xb0\xdd\xa3\x76\x05\x9f\xd9\xc7\x66\x2f\x0f\x3f\x1a\x22\x5a\xe2\xc8\x2e\x0f\x93\x0b\x59\x53\x5c\xc2\xee\x09\xae\x0e\x09\xdf\x62\x4f\x4a\x07\x6a\x87\x7c\xda\x20\x42\xda\xf9\x5b\x87\x48\xad\x1d\x24\x27\xf9\xf8\x86\xa4\xaf\x4e\x24\x37\x7a\x19\x04\x2b\xe5\xdf\x22\xaf\xbb\xcd\x09\x7a\xbf\x62\x3f\xf9\xd0\x35\x3f\xe8\xc3\xd2\x62\x92\xe5\xec\xfd\x4f\x1f\x48\xb9\xc5\xeb\x7f\x96\xbc\xef\x9f\xd7\x37\x76\x51\xba\x17\xd6\xce\xca\x1a\x6a\xfd\xcf\x3a\x4e\xd5\xf9\x84\x75\x86\xd2\x4d\x75\x1e\xbd\x44\xf1\x1e\x6d\x19\x4d\xd4\x7e\x7a\x6e\xcf\x55\x6a\x3e\xd5\xf4\xdd\xc8\xe5\xe0\xbe\xfe\xdb\x9b\x46\x3c\x25\x88\x2d\x59\xb7\x5d\x35\x0c\x24\xd7\x2f\x6f\xec\x78\x6f\xed\xcc\xbc\x3c\x23\xfb\xfa\xcb\x40\x0f\x6b\x9f\x94\x2d\x6d\x3b\xd3\xdc\xbc\xbb\xa3\x17\xb4\x76\x2f\xdb\x10\xa8\x18\xb2\xbe\x55\xfa\x40\x55\x48\x93\xdf\xfe\x96\xa9\xcd\x44\xd8\x0c\x6f\x8f\x16\x99\x37\x2b\xc3\x12\xbc\x5e\x5c\x8a\x67\xd7\x07\x87\x7b\x95\xd7\x2f\x22\xc5\xfd\x73\xbd\xa7\xd7\x8d\x27\x8d\xfd\x8c\xbc\x6f\x55\xb9\x92\xc1\x3e\xe5\x3e\xe2\x65\x7c\xe4\x0c\xaf\xd3\x3e\x19\x07\x62\xc9\xf5\x9e\x2e\x3e\xb5\x25\xef\xc9\x23\xee\x75\x3e\x0b\x77\x8e\x27\x6f\xb8\xee\xf7\x89\xda\xfa\x80\xfc\xea\x6c\xed\x7d\xa9\x88\x0d\x69\xc7\x04\x9f\x80\x8d\xf5\x50\x76\xa8\xf7\x39\xb9\x76\x2b\x4c\xec\xe7\xff\xd3\x07\x67\xf0\xd6\xc3\xea\xe0\x3f\xeb\x27\x43\xab\x29\x7c\x37\xe9\x24\xa5\x6b\xe8\xcb\xbd\xc0\xd5\x3f\xe4\x37\x53\xfa\x9f\x6b\xa1\xd7\x42\x39\x78\xbe\xff\x26\xe5\xa7\x55\xb7\xfe\x0e\x35\xae\x07\x3d\xee\x53\x7a\x80\x2d\x1d\x3d\x94\xae\xb0\xf0\xd2\x93\x5d\x2a\xe6\x04\x31\xef\xd9\xe3\x02\xe3\xf3\x8a\xcf\x26\xd8\x3d\x5a\xe2\xd5\x6f\x30\x27\xa6\xfc\xc1\x96\x31\x1f\xec\xbd\x43\xa4\x1f\x48\x2d\xaa\x77\x99\xe1\x13\xfa\x40\x7d\x4f\xa7\x07\xbf\xdb\xf1\xee\xeb\x8d\xa6\x9e\xf5\xce\x65\xdd\xfb\x06\xba\x3c\x53\x9c\xfd\xee\x2a\x92\x5b\xdd\x76\x3a\x6f\xbe\x7a\x8e\x3c\xee\x6a\xe8\x6c\x78\x45\x8e\x7c\xea\xb4\x96\xce\xf1\x70\x59\x7d\x7a\x0c\xf9\xd1\xf1\xbb\x8b\x47\xdd\x0f\x8c\xb4\xaf\x75\xf9\x58\x25\x07\x2d\xfb\x11\x2e\x61\xe5\x0b\xe1\x63\x73\xd8\xa5\xe3\xa0\x07\x42\x6d\x64\x9c\x1f\xed\x1b\x83\xd9\x96\x0c\xd7\x43\xbb\x97\x21\xdd\xaa\xd6\xe5\xca\x0e\x7e\xac\xb0\xe0\x03\x26\x1f\xfd\xbb\xff\x73\xe7\x3f\xad\x03\xf9\x18\x5c\x7f\x86\x83\xcf\x56\x5f\xa6\xf8\xfd\x6e\x99\x36\x2a\x17\xe8\xfa\xde\x1b\xd4\xbe\x70\xe9\xdc\x5d\xaa\x5f\x1e\xaf\xe9\xa6\xc6\xa1\x42\xbe\x97\xd2\x5f\xee\xea\x7a\x46\xf1\xc3\x85\x65\x03\xd4\xba\x59\xc4\xff\xf6\xb8\xc8\x66\x82\x98\x56\xf0\x36\x4d\xeb\xa5\xc4\x50\xf2\x85\x41\x86\x73\x81\x7a\x56\xe8\xfd\x37\x1e\x31\x2d\xc6\xba\x3e\xeb\xdf\xd4\xce\x9d\x62\xfe\xcb\x55\xff\xcd\xa7\x1d\xbd\xd6\x1a\xf6\x4f\x06\x75\xce\x5f\xb0\xd9\x6d\xab\x39\xe8\xfe\xfc\x90\x0d\xc3\xe6\xf6\x4b\x49\xa4\x5b\x16\xd8\x8c\x78\x94\x81\xc5\xe6\xe3\x6d\xa6\xdc\x9d\x81\xf9\xe6\x85\x36\x45\xed\x5d\x58\x6a\x2e\x62\xb3\xa4\xe5\x00\xd6\x9b\x7e\xb5\x39\x75\xc9\x06\xc5\xa6\xee\xb6\x16\xe7\xbe\x62\xbb\xa9\xbf\x4d\xff\xc9\x1c\xd4\x18\x67\xd9\x6a\xd7\x99\xe2\xa4\x51\xaf\xad\x54\xb5\x3b\x2e\x1b\x76\xda\x86\x54\x14\xa1\xd5\x30\xda\xfa\xfe\x21\x11\xbc\xd2\x93\x02\x72\x79\xfe\x2f\xc5\x3c\x9f\x24\xae\x0e\xec\xf3\x1e\xae\x1f\xc4\x8b\xaf\x57\x28\xbf\x94\xee\x84\xab\x94\x2f\x48\xc7\x47\x6e\x4e\xca\x95\x82\xfb\x14\xff\x5d\xbf\xbb\x97\x9a\x1f\xd5\xa2\xcf\xa9\xf3\xe7\x3e\xab\x01\x6a\x1f\x2d\xba\xf1\x81\xe2\xc9\x56\xc8\x7e\xa5\xe6\x57\xf6\xd4\x5f\x89\x1c\xcc\xb0\x63\x87\x29\xcf\xe6\x1f\x19\xfd\x8e\xd5\x68\x75\x59\x6e\xb2\x9f\x0a\xab\x3f\xcc\x42\x63\x85\xeb\x31\x32\x76\xfa\x77\xad\x1e\xbb\x83\x88\x2e\x2a\xd3\x2d\xb3\x3c\x0e\xd4\x9b\xeb\x9d\x35\xcf\x06\x7a\xd7\xeb\x4d\x34\xfb\xc2\xb6\x01\xb4\xee\x9b\x96\xbc\x67\x00\x5a\x41\xa6\xac\x17\x24\xa0\xbd\xd5\x74\xce\xe3\x5d\x80\xd6\x35\x53\xe5\x7b\xd1\x80\xd6\x48\x53\xbd\x9b\x47\x00\xcd\x57\xa6\x57\xaf\xe6\x01\x5a\x85\x66\xdf\xae\x3c\x05\x4b\xfb\xb5\x99\xfd\xc5\x13\x80\x96\xa7\x79\xe8\x59\x71\x40\xdb\xce\xbc\xf4\xe4\x7a\x40\x5b\xc2\xac\xea\x28\x1b\x60\xbe\xfa\x47\x07\xc3\xf5\x43\xf9\x36\xe5\x1c\xa5\x83\x1c\x58\xd3\x2c\xc9\xc1\x07\x5d\xed\x94\x7f\xd6\xed\x9b\xf7\xa9\xfd\xa0\x45\xaf\x27\x8d\xda\x07\xde\xf5\x51\xbe\x5b\x47\xa7\x0e\x50\xbe\x31\x87\x67\x73\x75\x40\x3b\x24\xbf\x50\xfa\xaa\x42\xfc\xa2\xe6\xd3\xa2\xa9\xdc\xfb\xf3\xbf\x79\xdf\x79\x80\xe4\x25\x82\x08\xf6\x02\x4c\x56\x49\xc4\xbb\x8f\x07\xfc\x05\x14\x57\x39\x38\x03\x99\x52\x2a\xfa\x56\xfb\x81\x95\xdb\xd5\x1d\xcd\x0e\x02\x87\x6b\x19\x46\xc6\xa7\x81\x16\x7b\x86\x90\x51\x3d\xd0\x7f\x48\xfd\xca\xef\x1c\x8b\x3b\xbf\xae\x02\x23\x5d\x75\x1b\x3f\xf8\x00\x23\x45\xf5\x5e\xbe\x1c\x02\x46\x15\xe8\xbe\xee\xed\x07\x14\x0b\xf4\x0c\xbb\x45\x81\x51\x9a\xfa\x3b\x6f\xdf\x02\x94\x03\x74\xf3\xdb\x7f\x00\x8a\xae\x7a\x15\xad\x5e\xc0\xa8\x5a\xdd\x47\x8d\xc5\x80\xe2\x38\x7d\xf5\x0b\x04\x30\xea\x2e\xad\x83\xf9\x95\x75\x8e\xf2\xfd\x78\xfd\xb8\x85\xea\xfb\x3d\x33\x6e\xa6\xfe\x59\x7f\x9b\xc2\x13\xaa\xde\xf3\x37\xb9\x79\x29\xc7\x77\x73\x75\x11\x47\x74\xbe\x0c\x71\x70\x4f\x09\xd7\x1f\x67\x73\x2f\xa8\x7d\x94\xe6\xbd\xb2\x67\x70\x31\x89\xe7\x7b\xe0\x2f\x00\xf0\xcd\x21\x08\x2f\x7b\x40\x2f\x54\x44\xc0\xc1\x04\xf0\x70\x92\x49\xb4\xdc\x06\x24\xa5\xca\xad\xe5\x3c\x01\xcf\xef\x1c\xf9\xc0\x38\x0f\x28\xee\x57\x6a\x32\x50\x04\x8e\xad\x52\x32\xd5\x17\x05\xda\x37\x28\xa5\xe9\x89\x03\xfd\x39\x8a\x71\x7a\x33\x00\xf2\x9e\x7c\x3b\x9d\x5f\xa1\x71\x7a\xf8\x11\x20\x7a\x47\xe3\xd5\xc7\x69\x80\xf8\x38\xc6\xac\x57\x36\x80\x44\x2f\x23\xf0\xe9\x39\x40\xd2\x8c\xf1\xe6\xd1\x68\x40\x2a\x92\xb1\xb7\x4b\x05\x90\x32\xd0\x8c\xec\x78\x05\xc8\x14\x32\x67\x5d\xd3\x00\xa4\x27\x91\xcc\x86\x48\xee\x3e\xd8\x42\xd5\xf7\x04\xb7\xa9\x73\x51\x17\xf3\xc1\x4b\xaa\x0f\xae\x7a\x4e\x9d\x13\x2f\xc5\xbc\xa6\xfa\xe8\xa9\xbe\x4f\xd4\xe7\xb5\x0e\x43\x54\x7f\x2d\xdd\xcc\xe5\xc7\xb7\x7d\xfc\x9b\xff\xa5\x75\x20\xf4\x3c\x18\xcd\xcb\x93\xa1\xf3\x1f\x1c\x4f\x00\x4c\xdd\x11\x5b\xad\xb4\x00\xa7\x00\x09\x15\xd3\x52\x20\x26\x48\x6a\xa3\xe1\x45\x60\x5a\x99\x8c\x95\xfe\x28\xa0\x80\x4f\x4e\x42\x77\x3f\xb0\x7f\xaf\xfc\x3c\xed\x36\xa0\xde\x5a\xde\x58\x3b\x0a\xb8\xb1\x48\xde\x99\x53\x7f\x6f\x87\xcc\x0b\xad\x8f\xc0\xa7\xe3\x32\xd5\x8c\x13\x9c\xf1\x10\x4b\x90\x97\xe6\xf2\xd7\x82\xf2\xa0\xbc\x56\x05\xf4\xbe\x53\x77\x12\x45\x1e\xbc\xa3\x98\x45\x95\x27\xcf\xbe\x03\x42\x8b\x05\xa4\x9e\x6a\x73\x7e\x1e\x71\xe9\x21\x75\x93\xff\xc3\xfa\x96\x6c\x6a\x1f\xb0\xbb\x75\x95\x83\xf7\xcb\x1f\x53\xfd\xae\xfd\x41\x3f\x95\x0f\x75\x65\x33\x37\x27\xec\xcc\xb5\xaf\x54\x5e\x4a\x9d\x3c\xfb\x2d\xc1\xf5\x83\xa1\xf6\xcf\x1d\xf7\x78\xfc\xa7\x32\x8f\xff\x15\xe2\x22\x9d\x83\x90\x9c\xff\x37\xdf\x69\x6f\x0b\x10\xc7\x09\xc2\x6a\x19\xa0\x5e\x2b\xa0\x61\x32\x0b\xb0\x61\x88\x9c\x32\x28\x05\x42\xf7\x88\x2d\xd7\x1d\x02\x32\x8a\x25\x74\xb4\xbe\x00\x8b\x26\x4a\x1c\xd6\x8e\x01\xb6\x1a\x48\x9f\xd0\xd4\x02\x2a\xfc\xa4\xe5\x98\x2b\x80\xb3\x85\xd2\x8e\xf4\xbd\x7d\x46\x2b\xd0\x3d\x4e\xca\x93\xc1\x02\x06\x47\x4a\xc6\x6a\x2c\x01\xd8\x71\xa2\x31\x32\xaa\x7f\xf3\xfa\x7f\xe8\x3f\x02\xb9\xf8\x8e\xf7\x1b\xbd\x9a\xc2\xc1\x97\xb3\x3a\xa9\xe7\xa6\xee\x0d\x3d\x94\x2f\xd8\xad\xec\x57\x94\x7f\x60\xb3\xd5\x07\xaa\x6f\x9c\x8f\x18\xa2\xf4\x8f\xc7\xbd\xb9\x7a\x98\x7f\xeb\x60\xd6\xaf\xfe\x9b\xff\xa5\xf3\x40\x32\x16\xff\xcd\xfb\xd2\xbc\x37\xcd\xf7\x6a\x8f\x05\xc4\x3b\x08\x42\xef\x3e\x60\xba\x40\xf0\x85\x26\x1b\xf0\x5a\x2e\x24\xc6\x2c\x00\xc6\xfc\x14\xde\xac\xf1\x1c\xc8\x1e\x23\x62\xc3\xb8\x08\xac\xdc\x22\xf6\x88\xa1\x05\xec\x0e\x14\xff\x4e\xf3\xfb\x6a\x96\xc0\xe9\x41\xd1\x9d\xea\xb6\x40\xd3\x79\x71\x2d\xb5\x5a\xe0\xee\x63\x31\x03\xd5\x5d\xc0\xd3\x7d\xc2\x83\x6a\x86\xc0\xa7\xdb\xc2\x33\x64\x0f\x02\xc8\xfe\x63\x3c\x68\xfd\x07\x01\xae\x82\x27\xf9\x07\xc5\x58\xf7\x34\xf7\x52\xcf\xd9\xb7\x17\x0c\x50\xdf\x6f\x8b\xcb\x07\xaa\xaf\x5f\x04\x8b\xd2\x09\xd1\x3a\xa0\x7f\xeb\x60\x68\x3d\x1c\x9d\x8b\x43\xaf\x03\x3a\x0f\x84\xe6\xff\x69\x3d\x90\xdb\x7c\x2e\x9a\x1c\xe0\xa2\xca\x25\x80\xff\x29\x41\x68\x09\x00\x06\xda\x02\x2f\x35\xa6\x02\xae\xa9\x23\x24\x34\x36\x03\xd1\x85\x82\x97\xd4\x6a\x80\x09\x83\x82\x1d\xaa\x67\x81\x85\x59\x42\x46\xd2\xfa\x40\x7e\x29\x41\xa8\xd5\x01\x25\xa1\xa2\x3e\xd2\xb3\x80\xfd\xcf\x08\x42\xea\x38\x50\x6d\x41\x10\x2a\xcf\x80\xcb\x86\xc2\x47\x54\xfa\x80\x8e\x50\xe1\x79\xaa\xb2\xc0\xa3\x4a\x61\x7f\xe9\xeb\xc0\xf3\xb7\x04\x21\x92\x0f\x7c\x32\x25\x08\x61\xd1\xff\xd6\xc3\xdc\x35\x7a\x45\xcd\x87\xf6\x88\x6f\xd4\xba\xbf\xcc\xc7\xa2\xce\x05\x27\x3d\x41\x9d\x2f\xff\x47\x07\xb3\xed\xef\x3e\xb0\x78\x37\xaf\x1f\xf2\x74\x12\xb4\x0e\x84\x9e\x07\x01\x37\xb8\xe8\xc8\xd3\xd5\xd1\x3e\x18\x34\xef\x2f\x31\x11\x90\xd3\x27\x08\xb1\x5d\x80\xe1\x67\x82\xa0\x7c\x1f\x76\xfe\xc3\xf7\x4b\x44\x01\x59\x49\x04\x21\xe2\x06\xcc\x95\x21\x08\xe1\xb9\x40\xbe\x27\x41\xa8\x6a\x00\x25\x07\x85\x5d\x84\xdf\x03\xbb\x0c\x09\x42\x48\x1c\x38\x34\x4c\x10\x2a\x4f\x81\x73\x1f\x84\x0f\xd2\xbc\xfe\x08\x00\xd7\xd3\x09\x42\xb8\x16\xb8\x77\x8b\x20\x84\x34\x80\xfe\x58\x82\x10\xea\x03\x3e\x7f\x24\x08\x3e\x35\xee\x38\x74\xf4\x71\xfd\xc0\x1a\xfb\xb8\xfd\x8e\xf6\xc3\xa9\xe4\xe9\x3c\xf6\xf2\x66\x11\xad\x07\xa4\xf5\x70\xb4\x0e\x84\x5e\x07\xb4\x0e\x24\x89\x87\xe1\x27\xb9\xe8\x93\xc6\x45\x3b\x5e\xce\x1a\xad\x7f\x90\x7b\xc2\x45\xce\x8e\x2d\xc0\xd9\xb1\x6b\x01\x95\x52\x82\x10\x88\x00\xac\x79\x37\x7b\x7c\x1e\x12\x04\xbf\x3f\x90\xf0\x81\xab\x53\x98\xba\x96\x20\xf8\x7f\x02\x73\x3e\x73\x3f\x5f\x96\xcb\xc5\x82\x3e\x82\xe0\x53\x00\xb6\xbd\x26\x08\xbe\x47\xc0\x01\x13\x4e\x43\x03\x2a\xb7\x13\x04\xdf\x3b\xe0\x74\x19\x41\xf0\x3d\x01\x2e\x77\x13\x84\x80\x18\x70\xa3\x80\x20\xf8\x23\x81\x47\xbc\x44\xc9\x57\x0a\x04\xd1\x2c\x45\xde\xa6\xea\xaf\xc5\xff\x53\x07\x43\xeb\x40\x96\xf2\xbe\xd7\xb9\xbc\xf5\x3e\xe5\x33\xfe\x9f\x3a\x10\xd7\x9b\xff\xea\x0b\x4e\x5c\x94\xe1\xed\xa7\x44\x1d\xc0\xaf\x4a\x10\x44\x02\x30\xea\x2d\xf7\xf7\x32\xfa\x40\x10\x7c\xd3\x01\x4f\xde\x49\x3f\x42\x8d\x20\xf8\x44\x80\x54\xde\x4d\xb9\x29\x45\xff\x1a\x0f\xde\x9b\xb0\x82\x1a\x2e\x16\x55\x70\x71\xaf\x29\x41\xf0\x49\x02\x65\x4d\xdc\x9f\x8f\xb6\x72\x0e\x3e\xc0\x19\x5e\x62\x5c\x93\x08\xe7\x81\x08\xb8\x31\xc8\x7d\x1f\xf7\x7f\xe6\x80\xfc\x4b\xff\xf0\x7f\x21\x97\x17\xe5\x9f\xe5\x45\xa1\x84\x79\x28\x75\xbf\x47\x65\xc6\x98\x47\x02\xb6\x80\xda\x95\x89\x56\x42\x12\x80\x5a\xd1\x9c\x57\x42\x1f\x01\xc6\xd8\x55\x5a\x62\x0f\x00\x86\xd9\x36\x37\xf1\x4f\x80\x86\x52\x59\xb4\xf8\x00\xa0\x1e\x7a\x5a\x43\x7c\x17\xa0\xd1\x7a\xf5\xa5\x64\x2f\xa0\xce\xd7\x93\x2b\xf6\x1e\x50\x63\x7d\xf8\x25\xba\x04\x50\xb9\x01\x8c\x88\x07\x44\xf7\x72\xfe\xcd\xef\xbd\xe2\x54\x16\xfd\x47\x05\x11\xca\x99\xe8\x4d\x80\xf0\x75\x0e\xbe\x10\x14\xa6\x3a\x50\x2f\xbf\x40\x37\x07\xbb\x9d\x85\x28\xc5\x57\x67\xb8\x20\x95\x70\xd7\xbe\x47\x65\x3c\x20\x1c\x7c\xd5\x5f\x65\x13\x20\x5c\x7b\xa5\x50\x55\x0b\x10\xa9\xc1\xff\x1f\xfa\x87\x7f\xeb\x20\x68\xa4\x75\x01\xdc\xf1\x12\xb9\xec\xa1\xc2\x41\x69\x89\x10\xea\xbd\xbf\xaa\x51\x82\xa5\x40\x2b\xa0\xc6\x9f\x99\x23\x18\x0a\x30\xea\xe6\x38\x8b\x16\x01\xcc\x09\x2b\x2b\xc5\x9b\x01\x86\xe4\x96\x7e\xf1\xe3\x00\x43\xf8\xf0\x80\xc4\x10\xa0\x7e\xa6\xde\x55\xc2\x02\xd0\x50\xbd\xd6\x29\xf1\x15\x50\x9f\xf4\xf8\x99\xf8\x2c\x40\xdd\xf4\x8b\x9a\xe8\x2c\x7a\x1c\xc8\x20\x69\x13\xce\xbf\xf9\x75\xb9\x24\xa5\xdc\x7e\xb3\x5f\xa5\x17\x10\x3a\xfd\x6c\x40\xf5\x31\x20\xf2\xf2\xc9\x48\xd5\x68\x40\xc4\xef\xd1\x21\x49\x29\xce\xe7\x5d\x2f\x44\x8f\x71\xf0\x56\xa5\xd8\x79\x0e\x5e\xdb\xa7\x32\x1d\x10\x9e\xdc\xa2\xac\x52\x00\x08\x1f\x69\xac\x55\x39\x0f\x88\x08\x73\x3e\xf3\xe3\xd5\xef\x79\x81\xf8\x4f\x3d\xd0\xdf\xfa\x87\xff\x45\xee\x9f\x13\xe9\x73\xa5\x78\x0c\x19\xa1\x80\x26\x0e\xaa\x7d\x49\xc8\x15\x34\x02\xd4\x77\x67\x04\x08\xe5\x02\x4c\xbd\xd9\xa5\xa2\xd7\x01\x4d\xd5\xfc\x14\x89\x40\x80\xf9\x70\xab\xbd\x64\x31\xa0\x55\x5e\x36\x56\xd6\x06\x60\x94\xd7\xbf\x91\xaa\x01\x18\xcc\xf6\x10\xa9\x18\x40\xc3\xf7\x69\x8a\x44\x3e\xa0\xf1\xeb\xbb\x9b\xf8\x46\x40\xcd\x16\x10\x5a\xf5\x23\x5b\xf5\x38\x20\xf4\xee\xe3\x65\x39\xea\x3b\x1c\x18\xa5\xca\x06\x44\x6e\xf6\xed\x54\xb3\x07\x44\x57\x3c\x12\x50\xfb\x09\x88\xfd\xbc\x17\xaa\xda\x05\x88\xce\xbd\xab\x22\x45\x8d\x43\xbb\x9e\xda\x1e\x40\xac\xb7\x4d\x41\x6d\x1e\x20\x76\x94\x9e\x07\x97\xd4\x39\x7f\x4f\x2c\xf8\x3f\xd7\xc3\xff\xa1\x83\xa1\xf9\x1e\x1a\xb9\xff\x7d\x84\xa9\x95\x0e\xf1\x87\x4e\x4a\x55\x32\x68\x06\xff\x7b\x40\xfd\x61\x4c\x9b\xe0\x52\x40\x73\xd2\xf8\x7c\x51\x35\x80\x39\x71\xe6\x25\xd1\x5b\x80\xf6\xd3\x15\x56\x52\x95\x80\x96\xd9\xd6\x27\xd2\x82\x80\x56\x7a\xd9\x17\x99\xcf\x80\xe6\xee\xb3\x2b\x65\x9d\x01\xe6\xce\x1b\x41\x32\xb1\x00\xb3\xed\xb9\xa9\xf4\x63\xce\x33\xd0\xd0\x2d\xce\x78\xa9\xed\x07\x84\x55\xbf\x26\xaa\x6b\x00\xa2\xa1\x6f\x4c\x35\x36\x01\x12\xfe\xcf\x55\xd4\x3e\x01\x62\xb9\x8f\xed\x19\x87\x01\xa9\x83\xdd\xb3\x35\xcc\x01\x89\xf6\x3b\x97\xd5\x2f\x01\x12\x49\x37\xae\x68\xbc\x05\xa4\x24\xdb\xc2\x34\x6c\x00\xc9\x51\x4d\x6d\x6a\xef\x00\xf1\xe8\xcb\xa7\xd5\xf8\x01\x31\xbe\x06\xa6\xba\x1b\x20\x7e\x10\xff\x9f\x7e\x28\xff\xf0\xff\x34\xff\xcb\x43\x18\x6d\xe2\xa0\x70\xaa\xf9\x0d\x0e\x2a\x9f\x76\xe1\xe3\xfb\x43\x2f\xa6\x75\x34\x7a\x85\x88\x33\xa0\xed\x95\x56\x2f\x26\x02\xe8\x69\xce\x92\x90\x0a\x07\xf4\xd2\x57\x04\xca\x0c\x03\x3a\xec\xad\x0a\xb2\xdd\x80\x56\x75\x59\xb4\xac\x23\xa0\x3d\xff\x9c\x8f\xfc\x11\x40\x5b\xe1\xe6\x3e\xf9\x4b\x80\xe6\xf7\xfe\x41\xd9\x44\x40\x6b\x03\xc6\x49\x9b\xb2\xe4\x35\x38\xe7\xe6\xcf\x1f\x2e\x32\x66\x02\x12\xe4\xcb\x4e\xe6\x75\x40\xba\xf2\xa9\x0f\xe3\x0e\x20\x75\xf6\xc1\x5b\x66\x09\x20\xc3\xec\x4c\x65\x5e\x00\x64\x66\x77\x9c\x60\x16\x02\x32\xee\xd7\x5c\x99\x6f\x29\x3d\xd8\x36\xc6\x41\x40\x8a\x7d\xe9\xaa\xc6\x37\x40\x8a\x38\xaf\xc8\x78\x0f\x48\x1b\x9c\xb1\xd2\x78\x0a\x48\x52\x73\xeb\x77\xfe\xc5\xbf\xf4\x0f\xf4\xbd\x77\x9a\xf7\xa4\x79\x2f\x2e\x0a\xc5\x1b\x4c\xe6\xa0\xd4\x43\x53\x8a\xe7\x54\x0b\x72\xb4\xe0\x7f\xf8\x87\x4e\xea\x75\x14\xbf\xa8\x05\xa0\x7b\x28\xd5\x5a\x3c\x03\xd0\x3b\x94\x2d\x24\x15\x00\xe8\xff\xca\x6b\x90\x73\x00\xf4\x6d\xb7\x86\x2b\x38\x02\xba\x25\xe5\x2a\x0a\x4d\x80\xde\x88\xf3\x8e\xa3\x2c\x00\x1d\xdd\x3b\x39\x23\x7d\x01\x9d\xf4\xd7\xd3\x15\xca\x00\xed\xe5\x80\x8c\xdf\x8f\x37\x9a\xc7\x00\x69\xb3\x37\x0c\xad\x7c\x40\xb6\xaf\xcf\x54\xbb\x1b\x50\x98\xf5\xf0\xb5\x76\x1d\xa0\xb0\xa8\xb3\x57\xbb\x19\x50\x38\xfd\x5b\x0f\x36\xa0\xb5\x09\x90\x23\x9b\x4f\x68\xcf\x06\x14\x46\x5e\x5e\xaa\xb9\x1a\x90\x4d\x6b\x58\xa2\xd9\x01\xc8\xae\x39\x93\xa0\xa5\x08\xc8\x5e\x38\x39\x47\x4b\x0c\x90\xa5\xee\xfb\xff\xdb\x1f\xe8\xdf\xbc\x2f\x8f\xf7\x24\x54\x46\x13\x7f\xe4\x21\x88\x2e\xd1\xa4\x7c\xed\x69\x5d\x8c\xa6\xac\xcd\xeb\x11\x5b\x00\x3d\x31\x8f\x21\xe1\x46\x40\x7f\x64\x98\x81\x68\x1f\x60\xf0\x35\xd9\x49\x52\x0d\x30\x7e\x33\x6d\xa7\x9c\x25\x60\x74\x76\x59\x9c\x42\x11\x60\x14\xbf\xd5\x72\xd4\x61\x40\xff\x6d\x79\xd1\xa8\x43\x80\xde\xa5\x0b\xe2\x4a\x5e\x80\xde\x85\x2e\x7f\x65\x3d\x40\x2f\xfe\xc3\xb2\x51\x1a\xb4\x4e\xee\x63\xab\xee\x31\x40\x51\xec\xc5\x5c\x5d\x0f\x40\x31\xf3\xd1\x1e\x7d\x37\x40\xb9\xaf\x2b\x52\x6f\x1c\xa0\x54\x7c\xf3\x9b\x7e\x2a\xa0\x22\x7a\xb5\x4e\x7f\x04\xa0\xec\xdb\xa2\xa2\x7b\x12\x18\xe5\x70\xf1\xa4\xbe\x15\xa0\xf4\xb1\x21\x49\xf7\x2e\xa0\xd8\x51\xbf\x51\x77\x0a\x30\x92\x75\x22\x43\x4f\x1e\x50\x5c\x72\xb4\x4d\x77\x17\x30\x72\xc3\x7f\xcd\x03\x6e\x2e\xd0\x3f\xf5\xd3\xf7\x9e\xb9\x3a\x00\xe1\x10\x65\x6a\x5f\x90\xd1\x54\xa5\x74\x22\x1a\x55\x7a\xf3\xf8\xaf\x03\x7a\x4b\x2c\x9d\x84\x6c\x00\xa3\x64\x97\x69\xa2\xf2\x80\xc9\xd3\xe0\x50\x89\x0d\x80\xf9\xd5\x31\x77\x65\xa7\x00\x16\x22\x53\x7a\x46\x3a\x03\x26\xcd\xb9\xbd\x8a\xde\x80\xf1\xd4\xa2\xc3\x4a\x3b\x01\x23\xfb\x0a\x73\x95\xc3\x80\xe1\xbd\x4b\x07\xd4\x3e\x00\x86\xa6\xdd\x93\xd4\xc5\x00\x83\xc1\xaf\xf6\x2a\x3d\x43\x76\xfa\x0f\x01\xa5\xb0\x37\x63\x0d\x39\x73\x4e\xf3\xb1\x8f\xd1\x38\x80\x21\xdf\x95\x62\xf8\x04\xd0\xd0\xb9\xb9\x93\xf3\x84\xaa\x7e\xe1\x9a\xa3\xe1\x5b\x40\xfd\x6c\xb3\xad\xd1\x02\x40\xc3\xf1\x92\x96\x91\x3e\xa0\xee\xdb\x30\xd2\x68\x03\xa0\x3e\x9b\xd6\xff\x1c\xcf\x33\x0c\x07\x54\x8e\xd5\x10\x86\x5b\x01\x95\xb1\x55\xd2\x06\xdf\x01\xe5\xf0\xff\x9a\x07\xf4\xfc\xe7\xd5\xff\x9b\xff\x96\xa2\xf6\x53\x31\x01\x05\x51\xea\x7c\x90\xa2\x4c\xe9\x00\xb4\x73\x99\x79\x02\x86\x80\x91\xb8\x71\xbe\x50\x2b\x60\x3e\xdf\x7e\x8e\xd8\x4a\xc0\x2a\xce\xb7\x5e\x2a\x0f\xb0\xea\x8a\xe3\x93\x5b\x0c\x58\x1d\x9e\x18\xad\x98\x0e\x58\xf6\x2f\x59\xae\xaa\x06\x58\xac\x2c\xca\xe4\xf4\x3a\x53\xab\x23\x62\x1a\x37\x00\x63\x56\xe3\x15\xe6\x5c\xc0\x38\xff\xb1\xb2\xa6\x22\x60\xe2\xcc\xba\xc2\x38\xfa\x79\xb4\xb1\x3b\xc0\x98\xf3\xcc\xd2\xe4\x12\x48\xed\xc8\xfb\x96\xa6\x6e\xf8\xa8\x23\xdb\x51\x69\x3a\x1f\xef\xb5\xbf\x5d\x15\x33\xd5\xc3\x4f\xad\xfe\x26\x63\x53\x26\x58\x5a\x89\x17\xc7\x9b\xde\xc7\x0f\xad\xb7\x67\x76\x9b\xce\x05\x34\x57\xfd\xd6\xff\x4c\x34\x33\x07\x34\xa3\xaa\xbb\x4c\xda\x00\x8d\x93\x15\x7e\x26\x87\x01\xf5\xa6\xb2\x10\xe3\x5a\x40\xcd\xe0\xbf\xd6\x81\x0a\x8b\x8b\x34\xef\xc9\xe5\x7f\x45\x16\x8a\x09\x71\x50\xee\x91\xf8\x24\xe2\x0f\x3d\x88\xd1\x18\xb5\x27\xfc\x9c\xfa\x12\xf5\x03\x85\x96\x01\xb6\x0a\xd6\x23\xc5\xab\x01\x07\x86\x67\x82\xcc\x45\xc0\x21\x32\x62\x50\xa1\x0d\xb0\x0f\xcf\x94\x50\xbe\x0a\xd8\x46\x2d\x1c\xd2\x90\x03\xac\x6e\x6c\xce\xd7\xb4\x07\x2c\x66\x1e\xd9\xa2\x5d\x0c\x98\x79\x37\x8f\xd4\x59\x02\x98\xbe\x7e\xa6\xa5\xbb\x0e\xc6\x66\x11\x80\x76\xf3\x2b\xb6\xf9\x44\xb4\x1a\x2c\x7c\xf0\xdc\x42\x06\x75\x86\xbb\x6e\x96\x59\x0c\xa2\xcc\x68\x42\x4b\xb3\xe5\x2a\x94\x1b\xa5\x5c\x5a\x61\x79\x1f\x35\x86\x03\xe7\x95\x2d\xcd\xd0\x68\xa0\x7d\xba\xc8\x52\x00\xb7\xf5\xee\x1f\x4b\xb2\x32\xc2\x35\xfd\xea\x1a\x6d\xcb\x6d\x78\xac\xfb\xf0\x48\x90\xa5\x28\xde\xeb\x58\x94\x35\x5a\x2c\xc3\x90\xd6\x93\xd2\x0c\x8b\x33\x80\x96\xdb\x3e\x79\xf3\x7e\x80\x99\xfe\x67\x3f\xa4\xd7\xc1\xdf\xf5\xd3\xfc\xaf\x38\xc9\x4f\xf9\xca\x31\xea\x04\xdf\x71\xd0\xa4\x4b\xd4\x93\xf8\xc3\x1f\xc4\x69\xb9\xe6\x44\x41\x13\xc0\x2d\xd7\xcc\x5d\x5c\x07\x70\x6b\x75\x1a\x90\x3d\x06\xb8\x5d\x0c\x95\x50\x72\x06\x5c\x1a\xd3\x66\xa9\x7b\x01\x8e\x5b\xe6\x2b\x68\xf6\x01\x76\x0b\x36\xb9\xe8\x1e\x07\xac\xf7\x56\xae\x31\x38\x07\xc2\x72\x5f\xab\x89\x31\xe3\x97\x85\x65\xd8\xb3\x34\xd3\x2b\x9f\x2b\xad\x32\x31\xcf\xac\xbd\x37\xd6\xfa\x0a\x7c\x2c\xef\xdf\x92\xb1\x5d\x03\x03\xeb\x9f\xcd\xc9\xb6\x2f\xe0\x61\xb5\xe3\xdf\x39\x60\xc7\xbb\x6d\x7f\x60\x89\x59\x6e\xcd\x63\x7b\x3d\xcc\x33\x77\x3c\xd2\x6b\x17\x88\xed\x26\xbb\x0e\x37\xdb\x4e\xc1\x29\x23\xd9\x52\x35\x9b\x61\xb4\x19\x8c\xdb\xab\x6d\x9b\x81\x0e\xfd\x57\xbb\x92\x6c\x97\xa1\x5b\x9f\x6f\x47\xa6\xcd\x61\xbc\xd6\x75\xff\x73\x1d\x28\x6d\xff\xaf\xfa\x45\x78\x39\x08\x0c\x23\x2e\xd2\x79\x00\x34\x0f\xea\x74\x50\xd0\x8b\x83\xbe\x03\xaa\xbb\x04\x34\x80\x20\x01\xbd\x5b\xa2\x8e\x80\x7f\x9f\x0d\x43\x7a\x18\xf0\x55\xf7\xeb\x57\xb9\x0d\x78\x6d\x4e\x3a\xc2\xfc\x0c\xb8\xdd\xce\x11\xd7\x5b\xf6\x6b\xae\xcb\x88\x75\x53\x4c\xbd\x3e\xc7\x3b\x36\x1f\xba\x69\x2d\x36\xf8\xcb\xfe\xe1\xc5\x3c\x7b\x9f\x97\x03\x76\xed\x0f\xf7\x3a\x8d\x78\x9e\x65\xaf\x39\xf4\xdd\x59\xf0\x4e\xb8\xc3\x7d\xb2\xc2\x45\xb4\x59\xdc\xc9\x86\x3c\xed\x7c\xe3\xec\x01\x17\x39\xf2\x84\xcb\x66\xda\xf7\xa6\xa6\xc0\x39\x11\x23\xed\xee\x55\x2a\x38\xeb\xc2\xcc\xd6\xe1\x50\xb8\xb3\x2f\x82\xac\xc7\xed\x1f\x70\x5e\x85\x58\xab\xe2\x3d\xf6\x4e\x5d\x98\x6b\xa1\xb4\xcb\xc2\x29\x1d\xeb\xcc\xc2\x8b\x8f\x38\xde\xc5\x61\x13\x87\x2d\xb1\x8e\xea\xb8\x60\x24\xbe\x71\xb5\xe3\x56\x34\x1b\x4e\xfb\x73\x1d\xd0\xf5\x8f\xa0\xfa\x26\xcd\x7f\x2b\xff\x20\xfe\xd2\x01\xd8\xf2\x9e\x6a\x68\x5f\x08\x9a\x0f\xa7\xf3\x62\x68\x9f\x94\xe8\xb1\xe6\x84\x74\x0e\x10\xe1\xeb\xd1\xad\xf2\x61\x68\x38\xa8\x3e\x66\x8d\xde\xe5\x8f\xfe\xfe\xe4\x94\x14\xf3\xa1\x01\x63\x9f\xbe\x15\x6b\xed\x1b\x9f\x54\x7b\xde\x2b\xd9\xe0\xda\xf9\x60\x8d\xfb\xb8\xd3\x23\xbc\xd2\x3b\x35\x5d\x5b\x6e\xbf\xf1\xdd\x73\x2b\xda\x35\xf8\x63\x95\x7f\x4c\xd3\x5a\x77\x25\xf6\x5b\xff\xf8\x33\xba\xee\x0f\x49\x73\x9f\x85\x35\xd3\x3c\x3d\xc8\x04\xaf\xce\xb2\x41\xcf\x5d\xe4\x2a\x8f\x55\xa5\xc7\x3d\xa3\xc8\x13\xae\xc3\x7b\x97\x79\x2e\x21\x6f\xbb\x24\xee\x12\xf6\x5a\x48\x3e\x70\x91\x2d\xd6\xf2\xd2\x00\x9f\xe3\xba\xad\x13\xdd\x9f\xc0\xc3\xe6\xfd\xa6\x66\x0f\x37\x84\x5b\x7f\x59\xf7\xc1\x43\x0d\x13\xad\xe4\x0a\xbf\xbb\x15\x62\xbd\xd9\x93\xd5\x09\x6e\x55\x28\x31\x2d\xfe\x73\x1d\x70\xfd\x0f\xe8\xfa\xe5\x79\xfc\xaf\xa1\x2e\xaf\x7e\xda\x17\x85\xf7\x54\x1c\x34\x40\xfc\xc5\x07\xd3\xfe\x20\xe9\xbb\xe4\x5a\x29\x74\xd6\x23\x24\x64\x7f\xa8\xa4\x74\x3b\x9a\xa9\x9c\x7d\xed\x19\x2f\x1a\x72\xc6\x18\xbd\x23\xa2\x5e\x8c\xf3\x70\xa8\xef\xbc\x14\x1e\xbe\xa0\xd6\xd3\xa0\x3d\x27\x98\x5d\x74\xd4\xff\x4b\x73\x4f\xc0\x60\x75\x4b\xa8\xc0\x25\x1b\xbf\x9a\xab\x7c\x11\xbb\x1a\x54\x7d\x17\xbd\x2c\x88\x6a\x3e\x71\xcd\x6f\x02\x5b\x33\xca\xbd\x42\xc3\xff\x1e\x7b\x51\xd8\xc3\xfd\x71\xfe\x5f\xd8\xbd\x41\xd9\xbb\x14\x03\xf6\x90\xb2\x01\xaa\xc5\xcf\x03\x06\x48\x53\xbf\x2b\x5b\x3c\xfd\x5f\x93\x73\xbd\xaa\x36\x4d\xf5\x1b\x24\x8f\xba\x3b\x17\x4e\xf4\xbf\x46\xde\x72\xcd\x2e\xc8\xf6\x37\x24\x5f\x3b\xdf\x59\x1d\xef\x67\x06\x59\x47\x99\xe5\x1a\x7e\x56\xb0\xb7\x4b\x5d\xda\xe0\x3b\x0f\x31\x36\xd2\x4b\x0b\x7c\x6a\x90\x61\x45\xbd\xa3\x14\xa5\xf4\x70\x34\xff\x2f\xf6\x92\x8b\x3a\xf2\x5c\xb4\x9a\xc4\xab\x9f\xe7\x77\x41\xf3\xc0\xb4\x2f\x44\x26\x2f\x17\x66\xea\x55\x2e\xce\x6c\x14\x1a\x4b\x10\xdf\x66\xce\xfa\xa6\x31\x4a\x94\x6f\x20\x78\x3a\xc3\xf2\xb6\xca\x88\x07\xfd\x13\x2b\x7c\x1d\x8c\x6f\xb5\x77\xa7\x9e\x8e\x8f\x74\x9d\x76\xb9\x75\x4c\xc5\xf4\x9a\x40\xed\xfa\x9b\x71\x7d\x6b\x02\x22\x36\xd4\x89\x47\x2f\x2f\x6d\x8f\x75\x3c\x72\x25\xf2\xf2\xc5\xe8\x44\xc3\x43\xdf\xc3\xdf\xf7\xa4\x26\xcd\x3f\x20\x1f\xbe\x97\xe5\x93\xd4\xb9\x7d\x67\xc4\x42\xd6\x9d\xb8\x5d\x9b\x66\x46\xe4\xb2\xa3\xa2\x1c\xd7\x5e\x8f\xe4\x67\xaf\x09\xbf\xb7\x5a\x39\x62\x90\xdd\x15\x62\xbd\xe2\x6d\xa4\x19\x7b\x28\x68\x42\xde\x60\x04\x83\x74\xf4\x27\x72\x25\xc2\x07\xc8\xe9\xde\x9f\x17\xb7\x87\xc9\x90\x47\xdd\x7f\x2d\x78\x14\xda\x42\x76\xba\x96\x2e\x90\x09\xb1\x23\xe1\x54\x33\xb7\x3f\x78\x09\x98\x0e\xe1\x39\xeb\x82\x8f\xc0\xdc\xde\x8e\x7a\x0b\x40\xe9\x44\xf9\x79\xeb\x9e\xc1\xcb\xf3\xa6\xf9\x5f\xba\xfe\x28\x9e\x1e\x20\x95\xf7\xfd\x4f\xe6\xe5\xbf\xe7\x70\x79\xb0\xb0\xc5\x54\xbf\xf8\x7c\x6c\x19\xf5\x9e\xef\xe5\xad\xfc\x26\xa5\x17\xfc\xef\xba\x77\x2d\xb5\x32\x9a\x36\xca\xe1\xba\xc5\x82\xe9\xae\x9b\x0c\xe3\xcf\xfb\xce\x72\x88\xf8\xe5\xfc\xa6\x56\x63\x52\xe1\xf8\xaf\xa1\xcb\x0e\x0a\x66\xd4\x2c\x59\x19\xa7\xb7\x4b\x73\x9c\xf5\x8e\xa8\xe4\xc8\xa2\xeb\x63\xed\x4e\xda\xa4\x55\xae\x37\x4a\xfa\x76\xe7\xfa\xf8\xa4\x02\x9f\x31\x1f\xbf\x94\x67\x8c\xc9\x7b\x97\xb4\x9b\x25\x97\xea\xbe\x38\x2f\x69\x11\xab\x24\xb1\x67\xfe\x94\x24\x05\xb6\x58\xac\xff\xbc\x85\x89\xb1\xec\x09\x51\x62\x73\xf2\x13\x8e\xb3\x4b\xc3\x8d\x72\x46\xc6\x17\xb2\x5f\x04\x3f\x9e\x29\x15\x77\x9b\x34\x08\x30\x9a\x3e\x1c\xfb\x81\x4c\xf1\x1d\x39\xad\x2e\x66\x25\xb9\xc5\xf3\xde\x54\x99\xe8\x77\xe4\x49\xf7\x73\x53\xe6\x8e\xfe\x46\xde\x76\xed\xca\x4a\x8b\x5a\x08\x49\xc7\x5d\x00\x1f\x2f\xcf\x81\xd6\x81\xd0\x3e\x08\x9e\xab\xb8\x38\x9a\x77\xdf\x7f\x1c\x8f\xff\xa6\x79\xd0\xc5\x14\x0e\x9f\x5b\x49\xbd\xef\x7f\xff\xba\x90\xe2\xad\x9e\x3b\x6e\xa0\xde\x8e\x74\xa7\x6d\xf1\x92\xf1\x24\x88\x6b\x4d\x1b\xdf\x68\xbd\x92\xf3\x3b\x2f\x5c\x78\xda\x2e\x46\x57\xa8\x66\x5a\x7e\x7e\xe0\x7b\xfb\xef\x7b\x3d\x16\xbf\x4d\xfe\x16\xf8\x61\x83\x7d\xce\xb1\x59\xf3\x12\xab\x56\x4c\x9b\xc1\x5a\xdf\x92\xf6\x66\xe1\xe6\xe9\x06\x95\xfe\x99\x57\x72\xec\xa7\x6c\x6b\x1b\xce\xda\x9b\x3d\x71\xb2\xf5\x6b\xc6\xa4\xa3\x53\xd6\x4f\x9a\x34\x3c\x35\x73\xec\xa4\xf6\x89\x1a\x2c\xed\xb1\xa7\x26\x3e\xc8\x3c\xc8\xda\x97\x78\x7e\x82\x69\xa6\x11\x6b\x30\x6e\x45\xa6\xcc\xf8\x1c\xb6\xcb\xe8\x07\xe3\xcb\xd2\x0f\xb0\x97\x46\x94\xa4\x4f\x1b\x47\xb0\x5b\x43\x65\xfe\xad\xf7\x18\x9b\x9f\xe2\x41\x4e\xf3\xae\x4c\xf5\x1d\x23\x4f\xd6\xb9\x17\xa4\x54\x8e\x91\x20\xaf\xb8\x05\x00\xd2\x79\xdc\xba\x8c\xfd\x89\xbf\x74\x20\xf4\xfc\x4f\xe7\xf9\x42\xcc\xe2\xf9\x83\x70\x79\xd0\x5f\x93\xd6\x52\xf7\x3e\xdf\x49\x6d\xa1\x72\x0f\xfa\xd2\xb6\x53\xf3\xa7\xeb\x58\x09\xa5\x27\xbb\x3a\x7d\xdf\xe5\x11\xca\x04\x71\xfe\xf5\xbe\x70\xd5\x36\xf1\x19\xb5\xe7\x77\xeb\x9b\x4b\x68\xbc\xdb\x57\x5d\xac\xe5\xf5\xd9\xf2\xc1\x46\x87\x8d\x77\xe2\x56\xf9\x38\x2c\xe9\x2b\x08\x9b\x2a\x1a\xfd\x73\x66\xc8\x4a\xe5\xd5\x6a\x29\x2a\x93\x96\xac\x18\x77\xa8\x21\x6d\xea\xf8\xf2\xbc\xcb\x4d\x69\xe9\xbe\xa9\x17\x96\x75\xbd\x78\x94\xbe\x7e\xac\x51\xee\x3d\x96\x72\x6a\x60\x8a\xf6\xc2\x89\xac\x93\x89\x7a\xc9\xa3\xe6\x0b\xb0\x15\x63\x7e\x25\xad\xcf\x19\xc3\xce\x8e\xec\x1e\xe3\x3e\x7b\x02\xbb\x2e\xac\x22\x49\x33\xdb\x8e\xdd\x15\x72\x33\x11\xd3\xec\xc9\x51\x81\x5e\x89\x93\x27\xff\x24\xfd\xfd\x36\x24\x2a\x64\xe5\x91\xd3\x7d\x74\xe2\x27\x4f\xdc\x4d\x96\x7a\xbc\x8e\x2f\xcc\x1c\x43\xd6\xbb\x2f\x8c\x77\x19\x2f\x41\xde\x77\xcd\x04\x74\x78\xf5\x39\x3a\x71\x31\xec\xe1\xdf\xf5\xe7\xf0\xde\x76\xad\xa4\xee\xfd\x0e\xa9\x6e\xa6\xfc\x93\xde\x26\xed\xa4\xf8\xce\x27\xe5\x7b\x28\xde\xee\x2e\xeb\x20\x35\x0e\x6d\x83\x15\xd4\xbc\x38\x77\xae\x8a\x7a\xdf\x77\xec\xec\xd1\x94\x51\xef\x09\xa2\xd4\xba\xb2\x43\xbf\x6c\x54\x55\xd1\x85\xb2\x3a\x17\x69\xa3\xd0\xbc\xe6\x03\x57\x23\x05\x5c\xb2\xb3\x37\x96\x64\x4d\x90\x0e\xb5\xcf\xf0\xde\x25\xba\x42\x34\x3a\x26\xf9\xc0\x8e\xf1\x07\x82\xe2\x9a\xe2\x0e\x6e\x77\xbd\xbc\x27\x61\xe6\xe8\x87\xc5\x93\xfb\x2e\x26\x14\x44\xf9\x6e\xfd\xc9\xfa\x16\x7b\x2c\xca\x78\x83\x16\x7b\x4a\xe4\xd6\xa8\x51\x05\x65\xec\xe3\x61\xbe\x91\xa3\x57\x15\xb1\x87\x83\x2a\xa3\xcc\x97\x57\x90\x32\x81\xc5\x11\x6f\x96\xa6\x92\x69\xbe\x2a\x51\xc2\x8b\x6a\xc9\xc9\x3e\x5b\x22\x4f\xcc\x3f\x49\x6e\xf5\x92\x8e\x74\x99\x9b\x47\xd6\xbb\x3f\x89\x10\xc9\x61\x92\x83\x2e\x8b\x23\xd6\xcd\xc8\x00\xe1\xf4\x2b\xac\x39\x7b\x24\xcc\xec\x77\x03\xb6\x69\xdc\x3a\x43\x79\xe7\x81\xdf\x3a\x90\x95\xc4\x1f\x3a\x80\xa1\x47\x5b\xa9\xfd\x71\x10\x25\x54\x3f\x7d\x12\x56\x4a\xfd\xdc\x25\x7a\x84\x5a\x4f\x57\x35\x8e\x52\x8d\xa3\x61\xef\x09\xea\xf3\xa3\xc2\xf5\x94\x1e\xe6\xe0\xe8\x06\x15\xd1\x6e\x82\x28\x36\x38\xbb\x91\x69\x24\x7d\x70\x55\xd2\xe9\xd9\xb6\x72\x9a\x2f\xe7\xd8\x1e\x6f\x0b\xba\x69\x5d\x97\xde\x5a\x6b\x96\xb6\xcd\x27\x39\xe1\x6b\x8d\x5c\xee\x40\xe0\xc4\xa8\xac\xaa\x5b\x7b\x7a\x42\x6e\x85\x5c\xac\xbc\x7e\x21\x32\xac\x28\xd0\xbc\x72\xc4\x13\xa1\xb0\x4b\xfe\x8f\x2a\x3a\xd9\x97\x42\x6c\x03\x18\xfb\x53\x49\x85\x00\xf7\x00\xbe\xdd\xa3\xc8\x08\x5f\x23\xff\x86\xe2\x57\x64\x9e\xd7\xe4\x80\xc5\x45\x17\xc9\x22\xcf\x5d\x01\x56\x1b\xc4\xc9\x66\xb7\x0d\x01\xb3\x0b\x93\xc8\x5e\x57\x49\xff\xb8\x55\x37\xa1\xe0\x98\x1c\x50\xb0\xa2\x18\x72\x8e\x7b\xfc\x1b\xf2\x6e\xc3\xc2\x7e\x66\x40\xc8\x92\xd5\xf0\xb2\x53\xf7\x4f\x58\xb8\x02\x99\xd6\x0e\xff\xec\xff\x74\xff\xfb\xad\x03\xa1\xf6\x03\xd6\xc1\x1d\xd4\xbd\xf7\x77\x0b\xf7\x53\xfe\x08\x7d\x73\x2b\x28\xdf\xa0\x2e\x9b\xa3\xd4\x78\x5d\xbd\x79\xf2\x0e\x07\x2f\x3a\x9c\xa5\xee\xcb\x1f\x5b\x7a\x81\xd2\x13\x1d\x92\x6d\x7c\xcc\xc1\x6d\x3f\x5a\x29\x1d\xdd\x5a\xff\xb6\x14\xe5\x28\xa1\xf4\x85\x8f\x5b\x6c\x4c\xf3\x95\xf9\x27\x5d\xbb\x12\xe4\x23\x65\xf8\x32\xc1\xf1\xd2\x96\x24\x57\x47\x83\xf0\xaf\x17\xaf\x2f\x9c\xe0\xfa\x22\xa0\xe9\x02\x76\x1e\xf2\x0c\xf5\x36\xbb\x90\x78\x4e\xdc\xeb\x8b\x7b\xe7\xf9\xba\x9e\x18\x6f\x31\x77\x81\x86\xb5\xe4\x12\x8f\xe7\xee\x06\xc7\xcb\xc8\x13\x6e\x23\x68\x7f\x0b\xf7\xf1\x65\x87\xc9\x61\xc7\x2f\xee\xfb\x4a\x4d\x21\xe3\x70\xc0\x7d\xed\x9e\xfd\x30\xb3\x3b\xe1\xfe\x75\xc7\x5d\x78\xd8\x2e\xf0\x10\xdd\x16\x89\xd1\x36\x56\xee\x6b\x37\x93\x98\x66\x35\xd2\x63\xd3\x86\x49\x98\x66\x65\xe7\x3e\xa7\x70\x33\xb6\x98\x8f\x70\xbf\xb2\x6a\x19\x0e\x98\xde\x07\x12\x78\xfb\xe4\x4c\x5e\xee\xc5\x0a\x4a\xd7\xc2\x9e\xbd\x93\xd2\xff\xbc\x63\x1f\xa4\x74\x53\x7d\xa9\x5c\x5f\x88\x7b\xab\x4f\x50\x7a\x89\x6b\x25\xe7\x28\xbd\xd8\x25\x7b\xae\x4f\xc2\x89\x73\x4d\xd4\x3d\xd8\xf2\xd2\x36\x8a\xff\x29\x91\xed\x08\xe0\xe0\x3a\xdb\x3b\x94\x9f\x4a\xee\xd1\x2e\x3d\xa9\x1f\x04\x91\x1d\xdb\x29\xad\x3b\x41\x46\x7f\xec\xab\x3b\x9e\xae\xb2\x4c\xeb\xf0\x27\xb7\xf6\xc6\xc6\x98\x5e\xf0\x97\xbe\x35\x75\x8e\x94\x95\x9b\x7b\xef\x2d\x83\x6d\xb9\xb6\x4e\x4e\xdb\x6f\xde\x38\x3d\xda\xae\xdc\xbe\xe2\xa6\x60\xf7\x21\xbb\x0e\x7b\xc9\x8e\x3e\x38\xd8\x24\xd9\xb5\x34\xf5\x20\xd1\x8a\xcf\xde\xed\xbc\x37\x32\x2d\xc3\xed\x5a\x4f\xaf\x47\x9e\xb9\xae\xfd\xf9\x63\x21\xc8\x35\x5f\x6b\x3f\xae\xaa\x0d\x3b\x4c\x97\xd8\xeb\x94\x6f\x40\x95\xf1\x90\x7d\x5a\xe9\x16\xd4\x1b\xc1\xde\x64\x5f\x38\x9a\x0d\x5b\x1c\xe4\x76\x4d\x40\xab\xe1\x31\x7b\xbb\xe2\x6e\xf4\xea\x4f\xb7\x9b\xbc\xb5\x08\xef\x39\xcf\xe8\xbf\xfd\x50\x54\x28\x7c\xc6\xf5\x03\xfa\x28\x72\x88\x3a\x37\x3c\xdf\x57\x43\xe5\x00\x3c\xd8\x78\x86\xd2\x53\xde\x48\xbe\xc8\xcd\xbf\xc8\x6d\xa2\xd6\xd3\xe9\x2b\xd7\xa8\x7e\x51\xb9\xac\x83\xd2\xcd\xec\xad\xb8\xe3\xce\xc1\x22\x4b\x2e\x4f\xbe\xfc\x55\x0f\xa5\xbb\xca\x3e\xd2\x47\xe9\x41\x32\x62\xfb\xea\xd5\xa6\x08\x3b\xc6\x4c\x79\xfa\xd2\x96\x50\xcc\xf3\x3b\xfc\xd4\x22\xfc\x8e\x56\xb6\xdb\xdc\xa7\x71\xd9\x72\x7a\x39\xf6\xd7\x9e\x6e\xdc\x94\x62\x68\x67\xd5\xfb\x34\xff\x58\xb5\x51\x94\x85\xda\xd3\x15\x5d\x0b\x8c\xac\xcd\xcf\x3f\xbd\xc5\xde\xa3\x3f\xce\x7c\xd9\xbd\x0a\xbc\xd6\x8b\x35\x0f\xbd\xb1\x08\x1f\x74\x27\x9a\x7b\xb5\x9a\xe1\xab\xce\x15\xf3\xb0\xcb\xf7\xf1\x53\xc7\xcd\xdc\xb3\xa1\x1b\xa4\xf6\x4a\xf3\x8f\xa7\xe4\xc1\xd6\xde\x6a\xde\x57\xb7\x02\xd0\xba\x68\xe1\x54\x75\x04\xd0\x9a\x68\x69\x5f\xf6\x19\xd0\x7a\x63\x91\x72\xc8\x02\xd0\xb4\xb4\x70\xdd\xbf\x0c\x60\x06\xfe\xa3\x83\xd9\x31\x93\x83\x5f\xd2\xcb\x33\x38\xd8\xbf\xa8\x8e\xd2\x0b\x3f\x10\x3a\x4b\x9d\x2b\x6e\xfa\x34\x52\xe3\xd5\x64\xc8\xd5\x3f\xd5\xdf\x6f\xa7\xe6\x4d\xad\xd8\x1d\x8a\xff\x29\xdd\x7c\x8f\xfa\x7c\x3b\xa3\x87\x3a\x7f\x16\x86\xf5\x51\x2c\xcb\x42\xbf\x97\xd4\xf9\x74\xe2\x54\x6e\x9e\x4a\x42\xc5\x47\x1f\x19\x0f\x82\x08\x1e\xfb\x51\xcf\xd8\x57\xd2\xd9\x75\xdf\xc7\x0c\xff\xf6\x51\x87\xed\xbc\x3e\xed\x9f\xb8\x52\x85\x34\x67\x7f\xce\x2d\x34\x50\x37\x34\xde\xfc\x45\xb1\x7a\xba\xfa\x67\x43\xe5\x2f\xf7\x6e\x87\xab\x8f\x37\xd4\xfc\x3a\x61\xe8\xac\xca\x49\xfd\xe1\x57\xe1\x80\xb2\xba\xfe\xd9\x5e\x7b\x40\x39\xd4\x40\xe7\xde\x17\x40\x45\x49\xff\xe2\xad\x5a\x40\x79\x91\xfe\x89\x6b\x9b\x01\x65\x3f\xfd\xf6\xa6\x4a\x40\xd9\xd0\x30\xe6\xe2\x49\x40\x95\xcf\xf0\xce\xd9\x4c\x40\xd5\x45\xff\xd7\xc9\xcb\x80\x52\x94\xe1\xa1\xa3\xcb\x00\xe5\xef\x86\xaa\xd5\xfa\x80\xd2\x73\x60\x3b\x35\xef\xbf\xbf\xa8\xa0\xbe\xf7\x57\xd9\x27\x28\xfe\xbb\x67\x4a\x03\x35\x0e\x77\xe4\x9b\x29\x9d\x43\x4b\xd1\x75\xee\xbd\xdf\x4d\xb7\xa8\xf3\xc5\x31\xc3\xfb\x54\x2e\x4c\x99\x6b\xcf\x4e\x0e\xee\xce\xe9\x5b\xce\xc1\x8d\x1f\x5f\x52\xf3\x69\x79\xf3\x20\x8f\xef\xe2\xe6\x49\xa4\x1d\xfb\x41\x8d\x5b\x70\x06\x49\x9d\x3f\x3d\xda\x01\x8d\x6f\x23\xb6\xda\x98\x03\xae\x45\x92\x27\xcd\xa2\x81\xb1\xf9\x32\xfd\x86\xce\xc0\xb2\x9b\x72\x5d\xba\x1d\x40\xe9\x78\xf9\x47\xda\x65\x40\x53\xbb\x7c\xa1\x76\x06\x30\x70\x4f\x2e\x5c\xf3\x18\x29\x0b\x48\x26\x30\xf3\x3e\x0e\x03\x92\x73\x68\x3f\x07\x5a\xe7\xc0\x2c\x7d\x90\x04\x48\xa7\x69\x8a\xdd\x8d\x06\x64\x54\x98\xe3\xdb\x5b\x01\xe9\x18\xcd\xf1\xad\x13\x01\x99\xfd\xcc\x83\x8d\x79\x80\x74\x31\xf3\xd9\xf9\xfb\x80\x74\x9b\x56\xdd\x19\x47\x40\xb6\xe7\xe7\xf5\xc3\x94\xee\xe3\xcd\xea\x13\x15\x7f\xd5\xdf\xdb\xba\x87\xbb\x0f\xde\x94\xe2\xe0\x79\x95\xbb\xd4\xf3\xc5\xc9\x34\x6e\x4e\xd6\x11\xff\xa7\x94\x3f\xc4\x7e\xed\x81\x62\xaa\x1f\xd6\x0c\x52\x75\x16\xde\xf8\x4c\x3d\x7f\x2c\xbe\xf9\xed\x3e\x07\xa7\xad\x61\xb5\x71\x30\x91\xe7\x07\x40\xe7\x3f\xd8\x32\x01\xc5\x06\x82\x30\xcd\x06\xec\x7a\x45\x97\x1a\x38\x01\xb1\x5a\xe2\x73\x74\x52\x81\xd9\xd1\x12\x0f\xb5\x44\x80\x2d\xa1\x52\x11\x8c\x83\xc0\x51\x3d\xc9\x33\x1a\xcf\x81\x8e\x67\x92\x11\x1a\x6f\x80\xc1\x6c\xf1\x1e\x5e\x7e\xc5\x59\x19\x07\x50\xca\x03\x69\xb9\xaf\xd4\x0d\x7a\x19\x9f\x41\x8a\x99\x54\x8d\xee\x5b\x05\x08\x4f\x94\x72\xe9\x89\xe4\xfc\x2c\x3e\xff\xfe\x59\xea\x59\xd2\xeb\xf6\x44\xea\xf3\xd1\xd7\x6c\x00\x91\x48\xb5\xf2\x66\x4b\x40\x2c\xe5\xdd\xe4\xe3\xd4\xef\xd5\x77\x91\xeb\x8b\xd4\x95\xdc\xb6\x9f\xea\x83\x8b\x6e\x57\x52\x7d\x20\x91\xeb\x03\x55\xef\xc4\xf5\x05\xa2\x75\x50\x07\xa5\xdf\x84\x70\x70\xe7\xb3\x4f\xd4\xba\xdf\xd8\xfa\x83\xe2\xc9\xf3\x47\xb2\x86\x09\x6e\x1e\x08\xd5\x3f\x69\xde\x37\x8a\xe7\x07\x40\xdf\xfb\x37\x7a\x0c\x48\xe7\x12\x04\xe7\x7b\x37\xfb\x25\x78\x4c\xeb\x0c\x10\xda\x2c\x3c\x9b\xd1\x03\x64\xdd\x17\x19\xab\x9e\x06\xe4\xbf\x11\x59\xab\x9e\x0f\xec\x2b\x11\x9b\xa2\x2a\x04\xd4\x9b\x0b\xf7\xa8\x46\x00\xb7\x2d\x45\xb4\x54\xcb\x81\x81\x6e\xe1\x3c\x35\x49\x00\x56\x82\xbd\xbf\x7d\x1d\xdc\xd0\xc6\xfd\x17\xbe\xb1\xb9\xf8\x8e\xcb\xef\x37\xf4\xab\x70\x7f\x7e\x52\x4e\xe1\xf1\x07\xdc\xdf\x2c\xe5\x6e\x25\xc5\x83\xa5\x5e\xa6\xfa\xdd\x6f\x1d\x98\xf8\x5d\xea\xfb\x6e\x34\xe1\xfa\x63\x9c\xf5\xec\xa3\xf4\x52\xb5\xef\x5f\x51\xe7\x82\xf2\xa9\x5c\x5d\xc0\xbe\xa4\x9f\x94\x8e\x78\x6b\x1d\x8b\xca\xd3\x29\xe0\xf9\xc0\x2c\x61\x72\x71\x2a\x8f\x17\xa5\x79\xdf\x60\x4b\x2e\x5a\xf3\xf8\x71\xf5\x74\x80\xef\x0e\x41\x68\x9c\x00\xf4\xef\xf2\x3f\x52\x6f\x06\x7c\x9a\x47\xd8\xd0\x3c\xb7\x6a\x12\xb0\x60\x40\xf0\xac\x8c\x00\xb0\x76\x0a\x41\x8c\xdc\x07\x94\x19\x10\x84\xf2\x6d\xe0\x42\x9b\xe0\x04\xe9\x3a\xa0\xbd\x84\x33\x0f\x80\x87\xab\x09\x42\x62\x1e\xf0\xee\x10\x41\x88\xbc\xf8\x17\xaf\xbf\x8a\xcd\x53\xaa\x7c\xe1\x31\xd6\x6f\xdf\x70\xf1\x25\x37\xa9\x24\xe5\x29\xe5\x4c\x40\xd7\x4f\xeb\xa0\x9a\xee\xf5\x50\xe7\x86\x06\x81\xe7\x54\xbd\x27\x8e\xbe\xa3\x9e\x2b\xaa\x2e\x7e\xa1\xf4\x62\xa5\x83\xac\x83\xc4\x1f\xb9\x40\xbf\x73\x71\x78\x39\x18\xbf\x75\x20\xbc\x79\x10\xcd\xf3\x4b\xf1\xe6\xf1\xbf\xe6\x3c\x7e\x78\xd4\x48\x80\xc8\x25\x08\xe9\x0f\xc0\xa8\x3d\x04\x21\x96\x0c\x58\x3c\x21\x08\xe9\xd9\x40\xe4\xff\x8f\xb3\x2f\x8f\xab\xe9\xfb\xde\xdf\xcd\xf3\x2c\xd5\x6d\x9e\xe7\x79\x9e\x35\xa1\x51\x19\x0b\x21\x73\x09\x91\x21\x53\x89\x10\x51\x49\xc6\x90\x48\x03\x49\x45\x94\x94\x8a\x4a\x9a\x64\xca\x10\x89\x84\x50\x19\x0a\xe1\xae\xdf\xeb\xee\xb3\x4f\x2a\x7c\x3e\x9f\xef\xef\x8f\xf7\xeb\x79\x9f\x7b\xaf\xdb\x5d\xeb\xac\xbd\xcf\x39\xfb\x79\xf6\xb3\xa6\x22\x24\x9c\x05\x10\xbc\x18\x21\xc1\x05\x00\x51\x47\x10\x92\x39\x0a\x70\x74\x3a\xa7\x0b\x9f\x19\x40\x86\x1c\x42\xdc\x6c\x00\x85\xc7\x11\xe2\xae\x05\xa8\xec\x41\x88\x77\x25\x40\x73\x03\x42\x7c\xf2\x00\xaf\x9a\x11\xe2\x7e\x01\xd0\x1f\xf3\xa7\xce\x01\xa1\x9f\xa3\x86\xe7\x85\xaa\x97\xbb\x40\xc5\x5f\xab\xf0\x0c\xeb\x3e\xcb\x14\x3b\xf1\xf8\xbe\x6c\xdd\x83\xfd\x36\x73\xef\x7c\xc3\x7e\x61\xa7\x6f\x31\xb1\x8e\x2c\x25\x94\xfa\xd7\x89\x6c\x14\xc6\x88\xc1\x5f\x75\x20\x74\x1d\xd0\x3a\x10\x9a\xf7\xd6\x21\xfa\x89\x51\xa6\x14\x72\x2b\x00\x08\xe4\x20\xc4\xfe\x06\x40\x7d\x05\x42\xa8\x07\xc0\x51\x1a\x21\x76\x59\x00\xff\x06\x84\x38\xd5\x00\x56\xb0\xee\x70\x2e\x03\x6c\xe9\x44\x88\x9d\x09\x70\xe0\x04\x42\xec\x7b\x00\x32\x16\x50\x57\xba\x5c\xe2\x98\x58\xfa\x03\x21\xf6\x2e\x80\x5b\xc4\x19\xf3\x09\xd9\x41\xf1\x2e\x90\xc2\x9f\xf5\xc3\xf4\x30\x74\x5e\xa4\x31\xef\xe7\xde\x8e\xaf\x0f\x15\xc1\x6f\xb1\x1e\xa8\x38\xf5\x13\x9e\xf7\xf2\x2b\x7f\xe0\x3c\xd0\x3a\x98\x63\x0a\x94\xfe\x6f\xd0\x0f\x85\xf8\x66\x6c\x24\xd9\xa5\x7d\x71\x46\xf2\xff\xe3\x7a\x28\xa4\xfb\xa1\x68\x66\xc0\x9f\xfa\x87\x34\x0a\xf1\x8d\xdc\x45\x00\xab\x79\x68\x90\xef\x67\xe1\x82\xeb\x14\x46\x90\x27\x80\x5d\x39\x14\x1e\xd8\x45\xe1\x49\xd6\x15\x3b\x06\x20\x87\xac\x18\x14\xcd\xa1\xf0\x06\xc1\xbb\x64\x27\x41\x3b\x6b\xe6\xde\x01\xd0\x93\xf0\x67\x9d\x5c\x4f\xea\xc2\xcf\xd7\xc5\x71\xbd\xf8\xbe\xf2\x82\xcf\x2f\x79\x16\x66\x13\xbd\xc2\x71\x72\xfe\x46\xfa\xa1\x44\x7d\x87\xff\xa8\x03\xf1\x5d\x33\xfc\xfa\x60\x4a\xfc\x51\x68\x1d\x88\xa8\xe0\x90\x3c\x94\x50\x28\x9b\x41\xa1\x39\xd9\xe9\x33\xee\x2a\x85\x33\xc9\x0a\x69\xe8\x2d\x0a\x23\x69\x27\x40\xd6\xcc\x3d\x1d\x60\x7f\x33\x75\x9c\x4a\xe2\x3d\x43\x3a\x65\x5e\x9c\x4f\xe1\x35\xb2\x93\xa0\x9e\xf5\x77\xb6\x03\x3c\x6c\x44\x83\xfa\x0f\x16\xf6\xe5\x23\x74\xb5\xb7\x0f\x3f\x0f\x14\x46\x31\xf1\xb8\xa0\x75\x40\x23\x75\x30\x71\xdb\x86\xcf\x03\x83\x3a\x10\x92\x87\xa0\x9c\xe1\x75\xe0\xf1\x61\xf8\x78\x30\x26\xdf\xa3\x4c\xfc\x77\x84\x5f\xfc\xce\x03\x1b\x59\xf1\x94\x16\xa2\xd0\x80\xdc\xe1\x3a\x1b\xa1\x61\x2b\x7f\x74\x5d\xac\x62\x3d\xd9\x6e\x05\x88\x62\x1f\x5e\x1f\x49\x8e\x14\x1e\x25\xf1\x65\x12\xe7\xbc\x3c\xb2\x73\xa6\xd8\x04\xfd\xd6\x7f\xb0\xea\x84\x3c\x49\x3c\x99\x87\x86\xe9\x40\x68\xbe\x77\x90\xe7\xfb\x1f\x75\x20\xe4\xf3\x9b\x5d\x53\xa9\x63\x4f\x4e\x0a\xa7\xe2\x75\x5f\x36\xf6\xb9\x58\x6f\xc2\x76\x62\x05\xf6\xc1\xe5\xd9\xb5\x45\x0f\xe3\x8e\x24\x1e\x8c\x5b\xd2\x30\x7f\xce\xd5\x5e\x80\x79\x52\x4e\xf5\x1b\xb8\xbf\x06\xf7\xae\x96\x74\x16\xf2\x2a\x76\x3d\xc5\xc7\x66\xac\xef\x64\x7e\x42\x33\x58\xf8\x85\x9b\xfa\x1b\xef\x49\x0c\xaf\x8f\x53\xd8\x4e\xb8\xe8\x56\xc2\xe1\x3f\x20\xdc\xcc\x9d\x66\x0a\xeb\xad\x59\x23\x88\x35\x1f\x52\xc7\xac\xbb\x44\x16\xc2\xff\xe0\x87\x62\x34\x1b\xfd\x55\x07\x32\x98\x07\xc9\xe1\x79\x24\xfe\x22\x2a\x53\xf0\x7a\x1f\xc7\x8a\x20\x51\x1c\x87\xef\x0a\xcc\xfb\x08\xee\xd8\xb2\x1e\xa3\x4f\x12\xe6\xcb\xf9\xd5\x4e\x61\x9f\x74\x3e\x89\x0b\xd8\xa7\x85\x7f\x5c\x15\xee\xb7\xc0\xf7\xf3\x11\x07\xc6\xf2\x0f\x78\x3d\x9d\x0b\x77\x2c\xfa\xf9\x18\x61\x27\xa6\x8f\xf2\xd4\xdf\x7a\x1b\x49\x61\xc7\x2c\x2a\x3f\x4f\xef\x50\xc7\x8f\x46\x53\x9f\xbb\x9b\x49\x1d\x37\x3e\xa5\xb0\x96\xbc\x5f\xc3\x85\xb0\xd2\xaf\x92\x83\xca\x0b\xfc\x0f\x7a\xa0\x7f\xe9\x3f\x46\xe4\x63\xb3\x7d\x0f\xa9\xaf\x93\xf8\xbc\x6e\x9e\x2c\x86\x7f\xbf\xee\x1c\x29\x8c\x67\xc2\x4c\x59\x28\xbc\x27\xfa\x01\x0b\x45\x56\x26\x61\xff\x08\xe1\xf8\x53\x93\x59\x28\xba\xa1\x70\x00\xbf\xae\x50\xcb\x86\x5f\xb7\x69\xc5\xfb\xca\x05\x3b\x3e\xe2\xfc\x71\xab\xb1\xbe\xfb\xdb\x7e\x36\x7e\x16\x76\x1b\x23\xc5\xa1\x75\xf0\x62\x3b\x15\xf7\x93\x6b\xa8\x62\x68\x1d\xdc\xbe\x8b\x36\xb0\xb0\xae\x80\x8a\xbb\xa6\x0c\xe1\x4e\x78\x95\xd4\xde\x75\x54\xae\xce\x21\x4c\xe7\xe1\xbf\xe9\x1f\x46\xea\x20\x86\xeb\x40\x10\x32\x5b\x35\xf4\xdf\xb3\xc5\xba\xe2\x3e\x4c\x3c\x1f\x7c\xcb\xa8\xf3\x3a\x1b\xc7\x2d\x3c\x7a\x39\xe6\xc1\x24\xbc\xb7\x62\x7f\x70\x86\x53\x32\x27\x57\x07\x80\x84\x64\x3a\x1e\x07\xa3\x4c\x2e\xbd\x64\xa1\xcc\xfe\xba\xf9\x5c\xab\x00\xc4\x73\xda\x70\x7e\xc4\x94\xfa\xf1\x38\xe3\x7e\xc9\xfa\x1b\x7d\x5d\x9c\x78\x86\x79\x17\xc5\x8e\xbd\xd8\x5f\xda\xb2\xe3\xce\x8e\xcf\x0e\xa1\x33\xb8\x0e\xd6\xb3\x61\x85\xda\x3d\x01\xd4\x8a\xeb\x60\x32\x07\xbe\xc2\xd7\xce\xe3\x9a\xc9\xc2\x1b\xcb\xd8\xed\x86\xc6\x7f\xf5\x1d\x3b\x93\xce\x83\xa3\xe1\xf0\x3a\xf8\x43\x07\x43\xf8\x6f\x9a\xff\xa4\x91\xce\x0b\xf9\xdc\x74\x4b\x9c\x63\xce\x66\x67\x8c\x7c\x13\x7c\xf0\x78\x12\x71\x9b\x85\x79\x31\x86\xe4\x8a\x45\x1c\x77\x00\x64\xc7\x6c\x39\xc5\x3d\x11\x80\x71\x67\xdf\x2d\xee\x32\x00\xc6\x8d\xd3\x4b\x78\x22\x00\x18\xe7\x8a\x1e\xf1\x3c\x01\x60\xec\x6b\xd8\xc1\x73\x1c\x60\xf4\xab\x17\x98\x07\x61\x18\xfd\xec\x41\x88\xd9\xc1\x8f\xf5\xd0\x3d\xa5\xc2\xd8\x91\xec\xc5\x27\x46\x36\x00\xf7\x8b\x36\x13\xfe\x37\x38\xfe\x36\x7e\xec\x6c\x76\x0f\xf8\xb0\x93\x53\xbd\x00\x23\x19\x80\x27\xbb\x3a\x85\x51\x09\xc0\x2b\x50\x59\x26\xab\x00\xc0\x9b\x75\x4d\x9b\xd1\x0c\xc0\xab\x59\xba\x97\x6f\x3d\xeb\x73\x57\x94\x79\x3e\xd1\x79\x18\xa9\x0b\xa3\xe3\xd7\xd4\x41\xc3\xf8\x6f\x9a\xff\xa4\x91\xf6\x87\xa0\xf2\x41\xf7\xd5\x12\x4c\x76\x98\x8a\xcf\xe3\x38\x6f\xec\xf3\x2e\xbb\x68\x76\x1a\xe7\x74\x00\x39\xfb\xe5\x92\xdc\xa3\x00\x64\x43\xa2\xea\xb8\xa7\x01\xc8\x1e\xdd\x57\xc8\x73\x13\x40\x36\x34\x63\x22\x6f\x04\x80\x9c\xfe\x95\x68\x7e\x6d\x00\x59\xa5\xa6\x49\xbc\x3b\x00\x18\x95\x9d\x6b\xb9\xeb\x68\x7d\x58\x7f\x1e\x23\x00\x80\x73\xff\x5b\x6e\xc6\x0f\x00\x1e\xbe\xb6\x0c\x59\x09\x00\x9e\xe6\x87\xc1\xb2\x32\x00\xbc\x66\xf7\x1f\x8a\x60\x07\xbb\x06\x73\xd9\x66\x00\xbe\x9c\x9b\x2b\xe4\x7c\x00\xf8\x57\x8e\xd4\x41\x95\xbc\x95\x5d\x0a\xc0\x27\x79\x49\x4b\x56\x14\x80\x77\xe9\x85\x10\xd9\x29\x00\xbc\x55\xf0\xdf\x7d\x40\x7e\xeb\x40\x08\xff\x47\xef\x83\x56\xc0\xf3\x1b\xbb\xb9\xfa\x68\x16\x0a\x4d\x30\xc2\x57\x21\xb1\xf1\xf6\xb8\x9e\xe5\x4e\x78\x5d\xe1\x54\x02\x90\x97\x99\xb1\x8a\x6b\x11\x80\x42\xcb\x52\x76\x5e\x51\x00\x85\xb6\xa8\x63\x7c\xc5\x00\x8a\x63\x92\x9a\x05\xae\x0e\xd1\x0d\xc6\x96\x14\x0a\xf2\x02\xc8\x8f\xba\xb3\x5a\x60\x11\x80\x7c\xcb\xbb\x5f\x02\xa2\x00\x72\x86\x00\xdc\x51\xbd\x86\xac\xb8\x78\x77\xbf\x5c\xa4\xa0\x08\x20\xa8\xf5\xe8\xb6\x42\x31\x80\x50\xd4\x5d\x36\x85\x68\x00\xa1\x85\x0d\x5b\x14\x6e\x01\x08\xb5\xd1\x3a\xa8\xeb\x35\xf2\xed\x00\x82\xa9\x65\xce\xf2\x0b\x00\x04\x5e\x16\x1f\x52\xb4\x02\x10\x56\xb9\x7c\x41\x3e\x1e\x40\xa0\xb7\x40\x5d\x21\x08\x40\xb0\xfa\xbc\xa4\xfc\x5e\x00\x81\x13\x7f\xab\x03\x3a\x7e\x4a\xff\xf2\x9b\xff\xa5\xf9\x3f\x29\x7d\x44\xf5\xc7\xa8\x42\x43\x7c\x52\xc4\x4f\xe8\xe2\x79\x51\xb6\xd0\x2a\x88\x7d\x2b\x80\xe2\xcb\xf1\x9b\xb8\x52\x01\x94\xad\xfc\x9f\xf1\x34\x03\xa8\x2a\x86\x6c\xe5\xef\x03\x50\xee\x8c\xe4\x17\xb4\x04\x50\x82\xa4\x14\xa1\x28\x00\xc5\xec\x4c\x55\xa1\x2b\x2c\x2c\xe3\x16\x6e\x05\x50\x0c\x7c\x20\x2a\xcc\x7a\xfd\xee\x47\x7d\x21\xef\x1f\x09\x8a\x6a\x00\x02\xe6\x5d\x9c\x8a\x9f\xf1\xdc\x39\x53\x45\x11\x40\x5c\xfb\xce\x13\x15\x23\x00\xf1\x4d\xf5\x63\x55\xc4\x00\xc4\x27\x55\x37\xa9\x06\x01\x8c\xe2\xa4\xfd\xa0\xca\x4c\x94\xb5\x00\x44\xab\x8b\x8e\xb1\x3e\x27\x76\xef\x92\x82\x8a\x03\x80\x58\x45\x3e\x43\x39\x10\x40\x34\x30\xb7\x51\x71\x06\x80\x50\x43\x76\x9c\xf2\x2a\x00\x91\x8f\xf0\x1f\x74\x40\x52\x64\xde\xa0\xfc\xef\x07\x79\xe0\x02\xa1\xcd\xb8\xfe\xf9\x46\xad\x43\x43\x7c\x52\x68\xbf\x18\xa5\xf5\x26\x19\x9c\x46\x00\x6a\xd1\x2e\x86\x3c\xbe\x00\x1a\xc6\x93\x6e\xf0\x2b\x00\x68\x1a\x2f\xe6\x12\xda\x01\xa0\x1e\xb3\xe1\x80\x30\x13\x40\x35\x6b\x6f\x90\x28\x1f\x80\xaa\x49\xe6\x55\xb1\xa7\x00\x2a\x21\xd7\xa2\xc5\x37\x01\xa8\xac\x7e\x34\x4f\xfc\x0a\x80\x4a\xc5\xd7\x66\xd1\x43\x9f\xe6\xab\x46\x02\x88\xaf\x6b\x9f\xa1\x5e\x04\x20\xe5\x75\x5f\x52\xfd\x1e\x80\x54\x79\xfd\x12\xf5\xed\x00\x52\x86\x55\x0f\x35\xa2\x01\xa4\xfd\xcb\xc7\x6b\x16\x01\xc8\x5c\x19\xd4\xff\xf0\xab\xb7\x01\x8c\xde\x55\x90\xaf\x5e\x0f\x20\x39\x90\x7b\x59\xbd\x1b\x40\xf2\xc6\xd9\x02\xf5\xd7\x00\x92\xa1\x59\xf3\x54\x6f\x01\x88\x27\x9e\xba\xaf\x96\x09\x20\x81\xbb\xa7\x6a\xb5\x0f\x8f\x7f\x24\xff\x4f\xed\xff\xa6\x79\x60\xce\xb9\x9c\x6e\x38\xfe\x26\x21\x7c\x1f\x20\xf3\x43\x0c\xe7\x4f\xb9\x5c\x69\x2a\x07\x02\xd0\x8a\x37\x54\xe5\x2e\x00\xd0\xfe\x6c\x8f\x78\xbf\x03\xe8\xd9\x4e\x68\x15\xec\x07\xd0\xe5\x9b\xb7\x5a\x24\x16\x40\x47\x7e\xdd\x4e\xf1\x74\x00\xad\xa3\x89\x91\x92\x08\x40\x23\x32\xeb\x8c\x64\x07\x80\xfa\x9e\xca\xe5\xa3\x9f\x02\xa8\xfd\x7c\x36\x75\xb4\x2b\xc8\x69\xa4\x31\xdf\x4a\xd6\xbe\x69\xd4\xf2\x03\x90\x95\x78\x58\xaf\xb3\x1d\x40\xd1\xbb\x7e\xaf\xce\x2c\x00\x85\xfd\xd7\xbf\xeb\x16\x02\x28\xf1\x97\xbe\xd5\xed\x01\x50\xbc\x5a\xf4\x44\xa7\x19\x40\x7e\xcd\xc5\x36\x5d\x55\x00\xf9\x90\xf3\x86\x7a\x2e\x00\x0a\x46\x39\x72\xda\x35\x00\x8c\x39\x99\x1b\x74\xa2\x00\x18\x19\xe9\x49\x3a\xf6\x00\x32\xcf\xd3\x5a\x75\xfc\x00\x64\x12\x8e\xa5\x6b\x1f\x00\x90\xe6\x19\x3a\x0e\x64\x25\xff\x1a\x3f\xe1\x7f\x69\x1e\x5c\x24\x8c\x3c\x0d\x0c\xb0\x3d\x66\xa1\x7a\xb6\x80\x3f\xc2\xba\x10\x46\x0a\x5b\xc4\x6f\xbf\x18\xe3\x99\x16\x0f\x05\xec\x00\x4c\xc6\xb9\xfb\x8b\x98\x03\x18\x6b\xce\xf6\x92\x50\x05\x30\x3c\xbd\xe6\xae\x94\x34\x80\xde\xe1\x84\xf9\x32\x8a\x3f\x42\x74\xb7\x67\x0a\xcb\xbd\xe8\xdb\xa2\x73\xeb\x9a\x99\xe2\xeb\xde\xfd\x3a\x37\x1e\x9e\x51\xe1\xfa\x20\xa5\x9b\xd5\x3f\x5a\x65\xc6\xb3\x08\xfd\x0c\x78\xab\xce\xd3\x68\x65\x78\x14\xaa\x34\xab\xae\xcf\x34\x32\x82\x5a\xcd\xb0\xab\x82\x86\xaf\xe1\x89\x7a\x43\xa1\xb0\xe1\x35\xe8\x52\xf3\xcf\xbb\x6b\x14\x09\x6f\xd4\x2e\xe5\xb4\x1b\x66\xc3\x0f\x95\xdc\xcc\x26\xac\x7b\x69\x3f\xc5\x34\x2c\x07\x50\xe6\x3c\x31\xc3\xe8\x3a\x80\x72\xea\x31\x3b\x83\x5b\x00\x0a\xd3\x8e\x58\xe9\xd7\x02\xc8\xad\x3f\xf0\x52\x5f\x1c\x80\xf1\x15\x06\xfd\x80\x7e\x8f\x7f\xee\x7b\x7f\x8b\x5f\x94\x3c\xad\x2a\x72\xa2\x61\x7a\x10\xda\x1f\xc2\xa2\x4b\xa8\x96\x85\x76\x8f\x94\x8e\x71\xf1\x02\xd8\xbe\x34\xd2\x15\x38\x04\x60\xfd\xcd\xe5\xa4\x78\x10\x80\x95\xc5\xf4\x45\x52\x6e\xdf\x05\x2c\xe2\x57\xf8\xcb\x2f\xef\x75\x31\x57\x8a\x35\x51\x5d\xf4\xf6\xa0\xe9\xc6\xd4\x0a\x2d\xe1\x97\x05\x26\xae\x97\x8f\xeb\x16\xb7\x85\x19\x2f\x6c\xb6\xd1\xef\x7b\x92\x60\x9c\xf5\x9e\x69\xc8\xdf\x3c\xd9\x34\x04\xe6\x1b\x9e\xbc\xbe\xda\xac\x06\xe6\x1b\x7e\xbd\xc2\x66\xee\x04\x6b\x0d\x2a\xf2\xbf\x9b\x17\xc0\x2e\xfd\xd8\x41\xdd\x4b\x97\xf9\x6b\x38\xa7\xd3\x76\xea\x9c\x79\x32\x94\x6a\xaf\x3e\x6e\x63\xb1\x08\xae\x6b\x6b\xa6\xcc\x37\x2b\x86\x97\xea\xaf\x69\xdd\xcb\xfe\x45\xa6\xbf\xe0\x87\xaa\xdb\xde\x13\xa6\x73\x00\x94\xd7\xc7\x37\x98\x86\x02\x28\xd5\x0f\x8d\x9f\xae\x7f\xc2\x7f\x93\xf8\xc5\x78\x28\x54\x26\xbe\xc6\xfa\x64\xbf\xb7\xf9\x74\x0a\xed\x48\xbe\x9c\x17\xb3\xc5\xb0\xd0\xc3\x6d\x34\xee\x2f\x33\x7e\xb7\xf6\x66\xfe\xb9\xbf\xc6\xb8\x82\x9d\xd9\xa8\xd3\x1f\xed\x9c\x33\xfc\x36\x28\x74\xbd\x0e\x1b\xf3\x65\x51\xb7\x46\x7c\x9b\xa6\x43\x61\xd4\x61\x7d\xf3\x96\x76\xbb\xc3\x07\x17\x99\xe4\x37\x17\xdb\xd4\x9f\x5f\x67\xf1\xbc\x61\x94\xb5\x77\xad\x88\x75\x52\xad\xa2\x55\x6b\x47\xa0\xad\xd4\x0d\x6f\xeb\x76\x66\x8d\xcd\xe3\x4b\x4f\x6d\xbd\x99\xaf\xac\x4f\xd3\xbe\x2f\xa7\xd3\xed\x16\x83\xbe\xf9\xce\x34\x7d\x3b\x23\xf0\x32\x5d\x7d\xcc\xc6\x6e\x32\xcc\x32\x31\x3f\xa4\x61\x67\x00\x1b\x8c\xf8\xf7\xf7\xdb\x31\x60\x87\xa1\x54\xe2\x80\xad\x03\x9c\xd5\xed\x4f\xa8\xb2\x5e\x09\xb7\xb4\x7e\xc4\x31\x6c\x4e\x41\x9d\x36\xe7\x8e\x97\x56\x8f\xe0\x9d\xfa\xde\xed\x82\x56\x2f\xa0\x57\x9d\x63\xe8\x38\xa0\xe2\x47\x64\x7f\xbf\x28\xe9\xeb\xa0\x4c\xe2\x36\x22\xfa\x17\x9a\x07\x75\xb9\x48\xa1\xe7\x88\x3e\x09\xd3\x42\x04\x14\x11\x1a\x98\xe0\x7f\x47\x29\x8f\x97\xeb\xfd\xa5\x29\x1e\x66\x85\x92\x99\xcf\x65\x7d\x8d\xc6\x3b\xa9\x6d\xb9\xdf\xef\xb5\x6d\x96\xa9\x41\x47\x83\x9a\xfb\xdb\xd5\xa5\x16\x01\x55\x0e\xe3\x9c\xf7\xbc\xb0\x5b\x75\x4d\xd4\x35\x2b\x23\x65\x4c\x4f\x71\x83\x73\x6a\x79\xa8\x2b\xa3\xb0\xdc\x69\xe9\x93\x24\xb7\x47\x05\x8f\x9d\x0e\xfe\xe0\x74\xeb\xc9\xd4\x77\x89\x67\xba\xbb\xda\x1e\x0f\x75\x69\x65\xee\x1b\x13\x74\x38\xd4\xe5\x12\xf3\x86\x7d\x42\xd2\x59\x57\x2f\xe6\x7b\x5b\xd3\x84\x2a\x97\x99\x20\x63\xa5\xb9\x27\xc5\xf9\x2c\x58\x9a\x7f\xdf\xa5\xe8\x14\x02\x0b\x4d\x16\x6c\xbf\xe4\x1c\x0e\x8b\x4c\x42\xb6\xbe\x1c\x13\x0f\x07\x0c\x16\x6d\xc9\x1d\x13\x08\xa9\xfa\xa9\x51\x9f\x1d\x7e\x40\x99\x4e\xda\x26\x2d\xfb\x1a\x78\xa8\xc9\xfc\x33\x7e\x3e\xc2\xeb\xd1\x3a\x08\x5a\x07\x60\x37\x85\x42\x8f\x99\x68\x98\x1e\x60\x26\xe9\x0f\x30\x8f\xea\xff\x2d\xbb\x68\x33\xda\x89\x50\x57\x71\xc8\x6e\x86\x24\xe7\xe5\xa7\xb3\x17\xf2\xea\xfb\x8d\x3a\xdc\x2c\x3e\xe7\xf5\x98\x4b\x6a\xe8\xc6\x9b\xe9\x07\x26\xeb\x9b\xa9\x5e\x79\x3e\x35\x68\x89\x8e\xfd\x93\x82\x35\x93\x74\x62\x04\x5c\x8f\x9c\x55\xf3\x9d\x74\xcc\xc5\xfd\x6e\x7a\x97\x0f\xdf\x65\x25\xef\xdd\x27\x82\xbc\xfc\xef\x38\x4e\xb8\x75\x4c\xc8\x33\xbf\x77\xa3\xaf\xdb\xfe\x79\x5e\x8f\x7e\x5d\xf4\x1e\x1f\x6f\xee\xd5\xce\x94\x1c\x1f\x1b\x7b\xde\x4b\x9a\xb9\xd2\x65\x5d\xcc\x21\xaf\x2b\xcc\xdd\xce\x1c\xd1\x51\x5e\x92\xcc\x32\x87\x6f\x51\x7b\x3c\x1a\x98\xbd\xb6\x79\x1b\x92\x3d\x47\x83\x80\xf5\xdd\xf5\x5b\xdc\xcf\x80\xb1\xa5\x50\x44\xdf\xf8\x6e\xf0\x30\x57\x5c\xa3\x31\x5e\x15\x42\x4c\xb6\xac\x7a\x3b\xf6\x33\xc4\x18\x39\xaf\xcc\x1d\xeb\x04\x47\x0c\x9c\x86\xcc\x03\x64\xbc\xcb\x3d\x1b\x1e\x3f\xad\x03\xf0\x1c\x43\x61\xc0\xf5\xa1\x71\xff\x12\x5e\x8a\xf9\xf0\x8f\x4d\xe1\x78\x15\xa4\x33\x79\x2d\x7e\xbd\x35\x7c\x43\xa3\x44\x21\x42\x4d\x9e\x6b\x67\xa8\xef\x14\x9b\x5e\xb9\x67\xe5\x1e\x6b\x71\xe5\x3d\x85\xd5\xa1\xb3\xbc\x1e\x98\xf8\x66\xed\x5a\xc0\x33\xe7\x86\xf3\xfa\xe3\x13\x83\xa4\xd6\xad\xf4\x94\xd8\xdf\x1f\xf8\x63\xdf\x74\xdf\xf6\x04\xd3\x19\xf6\xe7\x4a\x26\x7f\xdc\x59\x1c\xe0\x54\xab\x38\x2d\x76\xdb\x55\x7f\xab\x4e\x27\xff\xc8\xe8\x32\x7f\xfb\x5f\xa2\x53\x5a\xd7\x7f\xf6\x57\xfb\x95\x34\xa1\x67\x6d\xe9\xb4\xc8\x5f\x6d\x5e\x8c\x55\x6c\x53\xb7\x32\xcd\xc7\x85\xad\x9c\x3c\x65\x21\x33\xd4\xd5\x73\x85\xe2\xe4\x67\xcc\x58\xe7\xb8\x30\x8d\x89\xeb\x98\x8d\x0e\x12\xcb\x02\xfd\xce\x32\x3f\xda\xe6\x2c\xd1\xf5\x0b\x84\x51\xd6\x3a\xc1\xd9\xbe\x63\xc1\xcc\xa2\x20\xf8\x8a\x4f\x02\x4c\x34\x5b\xbc\x50\xcd\x67\x33\x84\x98\x38\xfd\xa9\x03\x31\xb4\x1a\x1e\x3f\xad\x03\x08\x24\x3a\x09\x4a\x07\xf3\x3d\x6e\x15\xe6\x7d\x7a\x94\x28\x7f\xfc\x17\xed\x5b\x28\xff\x7b\x97\xed\x98\xa7\x69\xd8\xb9\x73\x13\xef\x6c\x84\x2a\x6e\xc7\xba\xc9\x7f\x14\x54\xbf\x18\xbb\xf5\x8a\x71\x85\xfc\xe6\x4c\x93\xc8\x4d\x6e\x9b\x0d\x16\x1e\x1e\x15\x21\x18\x50\xef\x68\xba\x4b\x2c\x2c\x63\x39\x9b\xcf\x85\xa8\x9f\x4b\xd7\xed\x94\x9c\x32\x69\xed\x97\x90\x3b\xe9\xe2\x01\xdf\x57\x1c\x5d\x7c\xb4\x9c\x67\xe6\xa3\xa5\xbc\x8b\x8c\x9f\x2e\x0e\x64\x86\x04\x2e\xfc\xf6\x33\x78\xe6\xc0\x22\xbe\x05\x81\xbf\xd8\xa7\x46\x2c\xe8\x9f\x5b\xf4\x6b\xb3\x6f\x36\xad\xf7\x98\xcb\x3b\xc7\x87\x29\xee\xce\x3e\xe7\xd7\xac\xa3\x4c\x3f\xb7\xe5\x7f\xe8\x3d\xf4\xa7\x4f\x64\x3e\xb4\x7b\x39\x93\x37\x40\x03\x38\xac\xaf\x4e\x3f\x37\xed\x27\xa8\x59\xba\x4c\x2f\x9a\xea\x0d\x8e\xe6\xea\x00\xa2\x24\x6e\x9d\x58\x0a\xed\xfd\x86\xc7\x4f\xf3\xe0\xcb\xf1\x7e\xee\x01\x3b\xaa\x3f\xca\xfb\xbc\xad\xf8\xb8\x3d\x68\x27\x9e\x17\x1e\xcc\x4d\xc0\xab\x3b\xb7\x0a\xf6\x61\xfe\xea\x9a\xed\x01\xcc\x73\x15\xd6\x1f\x6a\x95\x4e\xe1\x10\xcb\x9c\x94\xec\xaf\xa3\x24\x55\x7e\x58\x23\xe1\x8e\xc3\x36\xad\xce\x5d\x02\xbb\x56\x4e\x52\xb0\x3e\xb1\x5e\x2b\x26\x70\xf1\x6a\x77\xf3\x65\x9a\x9b\xcf\x6c\xf1\xf2\x7b\xbf\xb0\x35\x8a\xe3\xf8\xd5\x29\xe3\x83\xdc\x37\x6d\x2e\x59\x3a\x4d\x28\xd0\x79\x63\xd6\xa3\x84\x69\x63\x67\xcc\xdb\x98\xf1\x43\x61\xca\x8b\xe9\x8b\x23\xac\x7e\x25\xf9\x5a\x05\x58\xad\x0a\xfe\xf5\xd5\x53\xd4\xff\xfc\x0a\x69\xa6\xc5\xb8\x23\xfe\x8e\xcb\x13\x99\x53\xdd\x4a\xa6\x49\x85\x0a\x30\x8f\x3b\x4d\x99\xa6\x1f\x22\xcb\xcc\x1f\x23\x33\x35\x70\xb1\x3d\xf3\x81\xfd\x81\x29\x71\x0b\x7e\x30\x7f\xda\x74\x4c\x99\x3c\x37\x02\x14\xac\xbc\x27\x97\x06\xf9\x80\xb1\x45\xf5\x24\xa7\x39\xaa\x30\xd1\x4c\x15\x40\xb9\x66\xf8\xfc\x37\xe1\xcb\xf0\xf8\x29\x1e\xfc\x7b\x65\x34\x5e\x05\x7b\x77\x86\x8a\xbb\x0d\x12\xf1\xaa\xdf\xfd\xfc\x03\x78\x35\xf8\x96\xe6\x91\x8f\x2c\x2c\xfb\x90\x8a\x79\xb1\x82\xb2\x93\x78\xf5\x35\x4b\x21\xc3\x42\x58\x04\xa1\x23\x07\x4e\x1d\x51\xd1\x16\x3d\xb4\xdb\xf3\x04\x9f\xa5\x86\xf2\xe3\x8d\x91\x29\xdd\x5e\x29\x26\xe7\x96\x24\x1e\x14\x9a\x1b\xed\x2c\x1f\xa4\x98\x5c\x12\xa9\x36\xfe\x62\x40\xdd\xbe\x25\x47\xde\x7a\x56\x4f\x36\x4c\xd2\x2c\x8a\xf4\x8e\xf1\x0d\xdd\xeb\xf7\x40\xd1\xfb\x9a\x4f\xca\x5e\x9d\xaf\x5f\xbc\xec\xbd\xdf\xc4\x75\x30\x6d\xc6\x89\xfb\x84\x6d\x97\x64\x2e\x71\x5d\xe0\x5d\xbb\xa5\x87\x99\xea\x34\xd1\xdb\x35\xf2\x11\xf3\x9e\x03\x9b\x8f\xe4\x86\x06\x66\xab\xfd\x66\xef\xb4\x08\x4b\xe0\xb2\x39\xe7\x7d\x69\xb5\x1a\xc8\x59\x73\x7a\xf5\xaf\x3c\x06\xf6\x16\x51\x9e\xb5\x61\xa6\x10\x64\x1a\xe7\x59\xb4\xcc\x08\x96\x9b\xcc\xf5\xa8\x5b\x62\x0b\x7b\x0c\x33\x00\xcc\xdb\x86\x8f\xff\xe1\xf1\x0f\x70\x6e\xcd\xc2\xe7\x7f\xea\x6e\xec\xf7\xf0\x7c\xea\x7e\xbc\x9a\xf8\x80\x71\x14\xf3\x1c\xb7\xbc\xd2\x0c\x70\xfc\xb7\x33\xa8\x7d\xdf\xc7\xcf\x60\x9d\x65\xa6\x72\x2e\xe6\xbf\x0f\xcf\x2a\x70\x46\x72\x08\xc5\x7f\x2d\xe0\x92\x15\xe7\xfd\x11\x75\xe5\xbc\xb7\x61\x09\xc3\x76\x79\x71\x8e\xac\xdb\x25\x1d\x97\x59\x9b\xb2\xa6\xcf\x3c\x6c\x9d\x3b\x65\x53\xa6\xe4\xba\x7e\x87\x05\x3e\x31\xa7\x3f\x1d\xd4\x75\x8a\x74\x97\x3b\xcd\x76\xf1\xb4\x0b\xc3\x6d\x67\xba\xc4\x9d\x7e\x97\xf9\x2e\xb5\xe9\x92\x7d\xe3\x9d\x2a\x5c\xfa\x8e\xcb\x33\xcb\x1c\x96\xb8\xb2\x1d\x4a\x61\xbe\xb6\xed\x71\x9d\xb4\x6f\x14\xf0\x5a\xbf\x76\x19\x48\x18\x0f\x3a\x96\xbb\x5d\xa5\x77\x25\xc0\x58\xf3\x04\x97\xb9\x3b\x1e\xc3\x7c\x53\x07\x17\xb9\x98\x04\xd8\x60\x3c\xc7\x85\x2b\x5a\x1d\xe2\x0d\xaf\xb9\xae\xdb\x64\x0d\x71\x46\x1c\xce\x55\x1b\xac\xe0\x9c\xde\x63\x67\xf9\xb5\xfb\xa1\x4a\x67\x13\x80\x87\x12\xfa\x8b\x0e\xe4\x87\xd1\x36\x5c\x1f\x1f\x52\x12\x42\xd1\x50\xfd\xd3\xd6\xe3\xbf\x70\xfc\xc7\x28\x5e\xf4\x9a\xfa\x19\xcc\x87\x5e\x34\xc9\xc3\xbc\x56\xf6\x53\x4a\x17\x72\xb4\x8a\x5a\x15\x8d\x3f\x59\x8a\x79\xa0\xad\xdb\xcb\xa5\x25\x8e\x22\x14\x1e\x5a\x9a\xa5\x59\x24\x6e\x38\x6f\x77\x49\x84\x43\xae\x72\xe2\xa4\xa8\xa2\xe6\xa9\x03\x86\xd3\x3c\x55\x8a\x44\x57\xfd\x32\x3d\xed\x6a\x7e\x79\xfe\xbe\x59\x16\x5b\x1d\x39\x2f\x55\xe4\xcf\xb6\xec\xb6\x3d\x77\x89\xf7\xb6\x9e\x95\xba\xcd\xd8\xc2\xfc\x8f\x25\x16\xfb\x6d\xb6\x9c\x4f\x01\x2f\xd3\xcb\x36\x1b\xb3\x82\x21\xd4\x78\xb5\x4d\xe1\xa9\x8b\xb0\xd1\x68\x9a\xad\x7d\xaa\x1e\x6c\x33\x2c\xb6\xdd\x7c\x44\x0b\xf6\x1b\xac\xb4\xf1\xdf\x7f\x0e\x8a\x75\x6d\x6d\x45\x92\x5e\x40\xb1\xee\x14\x9b\xe5\x09\x9a\xd0\xa4\x6d\x65\x33\x63\xd7\x71\x68\xd3\x4c\xb3\x86\x58\x4d\xe8\xd2\x98\x69\x7d\x26\x26\x1d\xbe\xa9\xdd\x01\x98\x19\x30\xf4\xfc\x33\x9f\x6d\xc7\xfa\x8f\x9e\xb1\xfb\xf0\xfc\xdf\xee\x7b\x14\xfb\x38\x3c\x48\xc4\x2c\x01\xaa\xd7\x3b\x8b\x79\xfd\xf2\x12\x2a\xee\x4b\xed\x97\xf0\xfc\x78\x36\xfa\x0a\xd6\x87\x9d\x08\xbc\x86\x75\x44\x49\xb7\x2b\x71\x7f\x98\x98\x51\xd5\xf8\x7a\x12\x6e\x5b\x17\xc4\x29\x80\xd0\xa2\xd4\x3a\x57\x45\x09\x7e\x11\x7f\xe9\xda\xfb\x96\xa2\xd2\x5d\xee\x93\x6f\xca\xf8\xc6\xab\xd5\x39\x6d\xa9\xf9\xb5\x7c\xa5\x56\x8b\x4d\x7a\x4d\x63\xfc\x0e\x5d\x21\x0b\x8e\x9a\x09\xe7\xa6\xe9\x1d\x31\x79\x56\xdd\xd7\x20\xa2\x97\x6e\x7c\xa0\x3a\xb3\x7b\xb5\xce\x23\xe3\xcb\x15\x3a\x70\x5b\x4b\xc3\xf8\x52\xd1\x4b\x78\xa6\x71\xdf\x84\xbd\x60\x14\x74\x6a\x88\x9b\x34\xe7\x7c\x85\x57\x1a\x1e\xc6\x8f\xb2\x57\xc3\x77\x35\x65\x93\xcd\xe9\x72\xf0\x43\xf5\xbd\xa9\xc0\x89\x51\xf0\x4b\xb5\xda\xe4\x55\x8a\x3f\x80\xca\x3a\x53\xc7\x43\x1e\x00\x2a\x16\xa6\x31\xc9\xba\x00\xca\xf1\x26\x13\x12\x4d\x00\x14\xe5\xe9\xf9\x0f\x20\xe6\xf1\xd0\xf8\x3b\x3c\x8e\x63\x5e\xe3\xe1\x9c\x4c\xcc\xe7\xd4\x7f\xcf\xc5\x7a\xa7\x4a\x23\x4a\x0f\x73\x39\xa9\x18\xeb\x01\xce\x5d\x2a\xc7\xf7\x9d\xa7\xde\x51\xac\xc9\xc1\x77\x37\x71\xfc\x71\x63\x1a\x30\xdb\xb4\xa1\xb7\x59\x95\x85\x8b\x4f\x50\xfd\x54\x02\xc3\x1f\x5e\x93\x5a\x83\x90\xd7\xd9\x96\x53\x06\xaa\xa2\x33\x1c\x4d\x5a\x04\xdd\x23\x19\x17\x2c\x73\x5a\xfc\x82\x0d\xe4\x1b\x8c\xdf\xb6\x44\xed\x14\x53\xd2\xd2\x9f\xd6\xe2\x94\x75\x4d\xe9\xb3\xce\xc1\x16\xb1\x5a\x01\xa5\x26\xed\x9d\x2d\xfc\xef\xcc\x15\x7e\x69\x6f\x6c\xee\x07\x90\x53\xd2\x3e\x5b\xbb\x19\x40\x4e\x5e\x7b\x67\xa5\x1a\x80\x6c\x84\xb6\xdb\xd5\x01\x00\xc6\x05\x1d\xed\x4b\x77\x00\x64\x03\x74\x0e\xe7\x6f\x07\x90\x9d\xaa\xad\x78\x4e\x1d\x40\xfa\x8d\xce\x9a\x6c\x0d\x00\x86\xb4\xae\xc3\xa9\x02\x00\x86\x87\xae\xc2\x89\x0e\x00\x99\x22\xdd\xed\x47\xdd\x00\x64\xd6\x01\xc4\x60\xbf\x86\x4f\xc9\xc9\x32\xf8\xfa\x2f\x9b\x8a\x9f\x23\x1e\xde\xcd\xc6\xf7\x09\x8d\x1f\xf2\xb1\x7e\xac\x4a\xac\x18\xf7\xdb\xbb\x52\x52\x86\x79\xce\xbc\xda\x1b\x9b\x58\x98\xc1\x7f\x13\xd7\x45\x8a\x52\x3d\xbe\xef\x4a\xb8\xda\x8c\x77\xa3\x6e\x55\x79\x80\xfb\x87\x84\xfb\x50\x3a\x81\x39\x45\xcf\xb1\xae\xc8\xeb\x50\xc7\x55\x2e\x77\x84\x9c\x56\xbe\x3a\xae\xba\x83\x77\x96\xb9\xdc\x2b\x5f\x27\x3b\xb1\x5d\x06\xce\x9d\x99\x41\x2b\x25\x72\xb5\x5e\xbf\x1e\xb5\x65\x87\xa4\x9a\xba\xc0\xeb\x6d\xa7\x26\x48\x1e\x54\xc9\x7a\x7d\xff\x46\x96\x24\xa7\x72\xe7\x1b\xab\x37\xf2\x12\xda\x2a\xdc\x2f\x17\x03\x88\x5e\x55\x7a\xfe\xb0\x06\x40\xa4\x48\x39\xb0\xd9\x1e\x40\x74\x9f\xb2\x44\x9d\x3c\x80\xa8\xbd\x72\x4b\xd5\x26\x00\x31\x23\xe5\x17\xd7\x6a\x00\xc4\x18\x2a\xb9\xc5\x7d\x00\x62\xed\x2a\xb5\x85\x1e\x00\x62\x37\x54\x3b\xf3\x26\x02\x88\xd7\xaa\x5c\xc8\x39\xc5\x7a\x5f\x35\x2b\xeb\x01\x80\xd8\xdb\xbe\x48\xca\x0f\xeb\x8d\xf2\x09\x3c\xbf\x3f\x39\x79\x06\x8f\x8f\xe6\xa6\x42\xcc\xa2\xd5\x1c\x2f\xc5\x79\x28\x2d\xbf\x61\x86\xaf\x03\xde\x35\xf8\x3e\x32\x5b\xbf\x01\xf3\xc3\xa9\x87\xef\x60\x5d\xdd\xfe\x5c\x8a\x27\x8d\x9d\xf5\xe4\x24\xae\x83\xab\x6d\xb8\x1f\x55\x68\xfe\x2b\xcc\x36\x05\xc4\xbd\xc5\xdf\xe3\x32\xaa\x17\x5f\x67\x2c\x42\xbe\x5c\x93\x7a\x8c\x90\xf6\x9b\xbe\x2b\xe6\x39\xbc\x6d\x6a\x63\xbf\xce\xf6\x97\xe6\xb7\x56\x92\xfa\xd6\xbf\xde\x98\xff\xba\xbc\xd6\x80\xe5\xd1\x79\xfc\x4b\x65\xe3\x06\x9e\x94\x85\xf0\x2d\x92\x15\xfd\xe9\xf8\x72\x37\xcf\x1c\x59\x85\xaf\x13\x01\xb8\x2c\x65\xa7\xbf\xdd\x0d\xc0\xdd\x2e\xab\xfb\xbc\x19\x80\x47\x57\x56\xf8\xb1\x12\x00\x8f\xbf\xec\xd8\xbb\x7b\x01\x78\x40\xd6\xaf\x61\x0b\x00\xaf\x3d\xe3\xc3\xcd\x79\x00\x3c\x39\x72\x3a\x95\xb1\x00\x7c\x67\x65\x6b\x4a\x4d\x00\xf8\x46\xc9\x9b\x17\xdd\x05\xe0\x07\x11\xbb\x4b\x78\xfd\xfa\x6d\xed\x09\x3c\xaf\xb5\x1e\x39\x4b\xe9\x20\x17\x17\x9e\x66\xe1\xcd\x09\x54\xfc\x65\x5d\x37\x9e\xe0\xfb\x80\x31\xb7\xb0\xae\xe3\x6c\x76\x33\x1e\x0f\xb4\x0e\xe8\xb0\x18\x15\x77\xc2\x9e\x76\x7c\xbf\x1d\xe3\xd2\x89\xf5\x02\x6b\xe6\x75\xe1\xeb\xc5\xc2\xc6\x1e\x5c\x1f\x93\xcf\xf5\x61\xbe\xd8\x71\xcc\x0f\xec\x2f\xa3\x96\x02\xc0\xd1\x8d\x90\x22\x2f\x80\xb6\x19\x07\xbf\xdc\x1b\x00\xef\x37\x9c\xee\x8c\xd9\x00\xcb\xe3\x39\x3a\x64\x56\x02\x24\x1e\x66\x2f\x97\x9e\x08\x90\x7b\x18\x21\x89\x43\x00\xf5\xa3\x10\x12\xef\x04\x78\xff\x0c\x21\x9e\x60\xe2\xef\x10\xfc\x05\xfb\x5c\xb0\xc7\xbc\xc7\x7a\x0f\xf6\x09\x1d\xb8\x33\x03\xfb\xda\x56\xbc\x8e\xcd\x61\xfc\x00\xef\xc5\x63\x8f\x6f\xa6\x18\xb8\x19\xf5\xd3\x59\xc8\x96\x51\x83\x9d\x19\xd8\x56\x55\xe2\xfd\xad\xcf\x27\x9c\xc3\xd7\xcd\x07\x8f\xa9\xf1\x5e\xb7\xa6\x02\xcf\x73\x15\x57\x6f\xe2\xf9\xf3\xf2\xec\x46\xec\xa3\x93\x5b\x70\x0f\xf7\xc7\xca\xf0\x7c\x8c\xdf\x3f\xa6\xd0\x86\xeb\x68\x9f\xcf\x2b\x7c\x3f\xb1\x73\x75\x17\xbe\x7e\x6e\xba\xd3\x83\xeb\x2a\xac\xe1\x0b\xf6\x93\x08\x6a\xfb\x8e\xaf\x3b\xbe\xa4\x2f\x06\xcd\xf7\xca\x91\xfe\x12\x12\x32\x00\x72\xcf\x11\x12\x5b\x00\x30\xc6\x0c\x21\xd1\x33\x00\x73\xbc\x10\x12\x62\x00\x6c\x5a\x8a\x90\xc0\x6d\x80\x23\x35\x08\xf1\x9f\x03\x28\x9c\x8d\x10\x6f\x10\x40\x93\x1f\x42\xdc\xd5\x00\xef\x8e\x0d\xf1\x75\x40\x4c\xc2\x40\xd3\x7c\xfe\x3b\xaa\x33\xc7\xf6\x0e\x29\xea\xf8\x29\x61\x18\xe9\x0e\x0f\x77\x9a\x29\x6c\xc0\x3a\x88\x96\xac\x2b\xb8\xbe\x1b\x5c\x2a\x71\x1e\x2a\xdb\x6b\x71\x1d\x14\x3f\x27\x3a\x28\xdd\x87\xf8\x7a\x99\xdd\xd4\x86\xe7\x81\xd4\xe8\x17\x78\xfe\x3f\x18\xf7\x16\x3f\x77\xc7\x1b\x75\xe3\xba\xd8\x36\xee\x2b\xd6\x85\xad\xeb\xfd\x81\xeb\x63\x24\xff\x3f\xbe\x0e\x86\xed\x77\x97\xd6\xa5\x90\xa7\x1e\x40\xec\x08\x42\x9c\x37\x01\x4c\x5a\x10\xe2\xea\x07\xf0\xeb\x41\x88\x43\x1b\x60\x29\xeb\x0e\x7e\x0b\x40\x6c\x04\xeb\x7c\x02\x9c\x24\x8e\x90\x45\xe5\x08\xb1\x1b\x03\x34\x5d\xa4\x78\xdb\x8e\xb5\xd4\xeb\xdf\x97\xa0\x21\x7c\xfe\x00\x61\x58\x3f\x3e\xa5\xb0\x6b\xf3\xf0\xbc\x3c\x23\xca\x85\x87\xd8\x89\xe0\x36\xd7\x75\x1c\x57\x55\x47\x1d\xf6\x7b\x28\x6d\xba\x8f\xe7\x85\x0b\xe1\x8f\xf1\x75\xe0\xcc\xbd\xe7\x58\x17\x75\xaa\xfc\x8d\x2f\x9e\x0f\xdf\x77\xe3\xf9\x30\x49\xfa\x33\x66\x55\x77\x29\x0d\xe0\xbe\x49\x51\x4c\xc0\x7a\xa0\x15\xa4\xcf\xc3\xfc\x34\x0a\x27\x93\x7d\xff\x34\xef\xad\xb7\x88\x42\x49\x09\xf2\x84\x5b\x08\xc0\xc7\x7a\x72\xb9\x00\xa0\xb5\x8c\x8a\x63\x1c\xe1\xbd\xe7\x12\x9e\x77\x63\x0d\xa5\x07\xd8\x4f\xde\xa7\xf9\xec\x32\xd2\xe9\xab\x9e\xf0\xe5\x4f\xe6\x11\x5e\x7f\xe5\xdf\x74\x0e\x74\x5e\x3e\x69\x0e\xcb\x0b\xea\x28\x66\xe1\xcd\xcf\x8d\xf8\x7e\xf9\x5a\xfa\x03\xbc\xef\x88\xd6\x41\xe5\x7e\x78\x85\xf5\xb0\x19\xfb\xde\xe1\xfb\xc9\xe3\x8f\x28\x7f\x9c\xfd\x2d\x5f\xb1\x3e\x2a\xbe\x9d\xf2\x87\xa1\xfd\x50\x68\xfe\x3b\xe4\xd9\xf0\x3a\xf0\xb9\x4b\xa1\x0d\xe9\xb3\x41\xfb\x60\x0c\xd5\x3f\x70\xdb\x53\xa8\xca\xba\x73\xf1\x07\x70\x3c\x43\x1d\x07\x10\xfe\x7f\x05\x51\x3c\xef\x20\xfc\x35\xcd\x67\x9f\x63\xdd\xd9\x6e\x03\xb8\x42\xfc\x0f\x6a\x88\x6e\xe2\x3e\xe1\xcf\x69\x5e\x9f\x72\x32\x1a\x99\x97\xef\xa3\x49\xbd\x60\xc5\x56\x79\x23\x35\xdf\x15\x25\x3c\xc7\xe7\x3f\x6f\x6e\x27\x3e\xcf\xd9\xab\xa9\x7a\x3f\x69\xf4\x0d\x3f\x77\x1d\xf9\x40\xe9\x22\x68\x3f\x94\x91\x7d\x71\x68\x5f\x1c\x5a\x07\x42\xeb\x81\xc6\x92\x7e\x21\x74\x3f\x14\x5a\xff\x30\x94\xf7\xe7\x20\x8e\x66\x4a\xe4\x18\x3b\xc0\x4e\x07\x98\xe4\x4b\x1d\x07\x2b\x0c\xa9\x8b\x21\x9d\x5f\x07\xf5\x0e\xfd\x64\xbc\x10\xc7\x5c\x4a\xd9\x3b\x42\xff\x81\x00\xba\x0b\xfe\x96\x0f\x0a\xaf\x7c\x78\x8e\x7d\x81\x0a\xfa\xbb\x70\x15\xe6\x3c\xfa\x84\xeb\x3c\x7d\xee\xb7\x52\x34\x54\x07\x33\xc2\x0f\x85\xf6\x05\x5a\x99\x00\x7f\xd5\x81\xd0\x7a\x20\xba\x3f\x10\x3d\x2f\x28\x3d\xfe\x4b\x1e\x48\x27\x58\x79\xe2\x74\x4a\xeb\x40\x3c\xc8\x93\xff\xac\xd7\xc3\xeb\x62\x0b\xd9\x01\x40\xeb\x1d\xe8\x7c\x64\x12\xdd\xc8\x45\x92\xd7\x32\xf2\x7e\x3d\x39\x7e\xe8\x31\xbc\x4e\xfa\xf2\x7f\xe7\xa1\x30\xf4\x1d\xd6\x41\x9f\xb7\xfe\x8c\xef\x1b\x07\x75\x30\x64\x34\xd1\x3a\x10\x5a\x0f\x17\x4d\x8e\xd7\x5c\x86\xe1\x3a\x90\xe0\xe1\x75\x30\xbe\x9c\x8c\x07\x52\xff\xb4\x3e\x4c\x91\xcc\x8f\x82\xb9\xf0\x87\x0e\x84\x41\xc6\x07\xad\x03\x71\x53\xa6\xd0\xff\xe6\xf0\xba\xa0\xf5\x41\x3b\x32\x86\xe7\x83\x1e\x2f\xe9\x24\xaf\xe7\xc9\xca\x6a\x31\x19\x17\x37\x1e\x0f\xaf\x93\x56\xf2\xf9\x77\x3e\xe8\x7f\xd2\x3f\xfc\x13\x09\x1f\x48\xeb\x05\xe8\xef\xf1\x26\xef\x4f\x25\xbc\xc8\xbc\x97\x14\xae\x20\xda\x8b\xcd\x88\xc2\x84\x6e\x0a\xd3\x44\x28\xcc\xbb\x42\x61\x25\xf9\x77\xf7\x89\xa6\x83\x75\x07\x06\x84\x8b\xfd\x59\x4b\x21\xad\x7f\x78\x13\x4a\xe1\x8b\x68\x0a\x9f\x92\xbf\x41\xf3\xfe\x77\xc7\x51\xd8\x40\xb8\xa8\x91\xfa\x8f\x8a\xdb\xbf\xbf\xfb\xbf\xe9\x60\xfe\xe8\x87\xd2\x3d\xfc\x7d\x5a\x2f\x40\x7f\x8f\x87\x0a\xc9\x03\x59\xff\x0d\x8a\xf8\x7b\x1e\x12\x89\xef\x46\x1a\x1f\x85\xf9\x44\xd3\x71\xfd\xe5\xf0\x58\xde\xb9\xfc\xfe\xad\xdf\x39\x28\xfc\xf0\x94\xd2\x3b\xbc\x22\xf1\xb4\x11\x2d\xce\x93\xb1\x14\xde\x5b\x4d\x61\x13\xd1\x47\xd4\x91\x73\x7e\x73\x16\xc9\x75\x1b\x85\xd7\xbc\xfe\x92\x07\xc9\xff\x12\xff\x7f\xd6\x81\x0c\xd6\x13\xad\x33\x9a\x44\x74\x21\x41\xe4\xfd\xe5\x49\x23\xea\x41\x60\x78\x1e\x0a\x36\x93\x73\x25\x46\x21\x6b\x3c\xb3\xb0\x3b\xe4\xf7\x6f\xed\xd3\xa7\xb0\x8b\x70\xd1\x2f\x88\x16\xa3\x55\xf6\x1f\x75\xb0\x76\x78\x1d\xdc\x20\x1c\x7d\x45\x30\x85\x25\xfb\x7e\x7f\xf7\x48\x1d\x0c\x7d\xbe\xff\xd0\x7f\x8c\xc0\x41\x5f\x14\xd2\x47\x89\xd6\x0f\xd0\xe3\xc3\x97\xd4\xf9\x6c\x4a\x2f\x65\xb6\x94\xfc\xbd\x48\x8a\x3f\xde\x92\x40\xfa\x13\xa5\x91\xbc\x14\x50\xdf\xcb\x55\x45\xea\xf2\xf1\x07\x32\x06\x86\x8c\x0b\x7a\x3c\xbc\x9e\x43\xea\x80\xd4\xca\x23\x92\xbb\x7f\xe9\x80\x46\x8e\x83\x32\xf2\x5b\x8b\x43\x7f\x7f\xf7\x7f\xf3\x01\xa1\xf9\x5f\x5a\xef\xf0\x0f\x1d\xc8\xef\xba\x20\xf5\xe5\x43\x8d\x8b\x09\x33\xfd\x58\xc8\x2e\xb9\x04\xd7\x24\xbb\xd1\xc6\x57\x43\xf3\xc0\x16\x9a\x66\x87\xb1\xf3\xe2\x62\x8c\x7d\x37\xd9\xc8\x58\x27\x3a\x9b\xfe\x76\x84\x7e\x92\xdc\x74\x93\xf3\xdf\xe1\x47\xc6\x41\x35\xc2\xf7\x41\xf7\xa3\x29\xbc\x4d\xe2\xbe\xf5\x80\xd2\x3d\xd5\x20\x36\x7c\xbf\x54\xf9\x88\x8c\x83\x31\x14\x5e\x69\xa5\xf0\xd2\x9d\xdf\x79\xf8\x97\xfe\x61\xa4\x0f\xc8\x48\x1d\x08\xfd\x3a\xfd\x79\xaa\xaf\x16\x9a\x6e\x87\x35\x6c\x6c\xdc\xee\xf8\x9c\xb0\xb7\x4d\xc7\xfc\x16\x7b\x51\x30\xa5\x93\xbb\xb7\x09\x8f\x59\xce\x77\xf1\x85\x2c\xe4\xca\x39\x89\xc7\x3c\xd7\xc9\x42\xfc\x79\xae\xdd\x75\x9e\xf8\x7d\x97\xf6\x40\x7c\xac\xf0\x8b\x13\xa1\x6f\x73\xd9\xb0\x53\xdb\x9b\x0e\x36\xbc\x27\xbd\xad\x11\xe1\x2b\xd1\x83\x3e\xb6\x95\x2c\x6c\xae\x45\x1a\x2c\xac\x77\xe0\xc4\x57\x76\x5a\x07\x75\xfd\x28\x1b\xd6\x01\x95\xfe\xe4\xc0\x7e\x39\xc5\xce\xa8\x08\xc7\xff\x80\xd4\x60\x0a\x9b\xea\x60\x1e\xfe\x9b\x0f\xc8\x08\xfd\x07\x8d\xb4\x3e\x82\xce\x07\xe9\xa7\xc4\x69\x8d\xfb\x69\x71\x5b\x8f\xe3\xc2\x18\x3b\x15\xcf\xf1\xfc\xa5\x8b\x33\x58\x28\x70\x70\x03\xee\x1b\x21\x32\x3b\x11\xf7\x93\x10\xf6\x3a\x85\xe7\x0d\xe1\xf1\x45\x15\x2c\x14\x72\x68\xc4\x75\x27\xf0\xb4\x13\xd7\x32\xe5\x17\xf5\xf1\x12\x1f\x7e\x2e\xea\x18\x23\x70\x0a\xcf\x1d\xdf\xf9\xb1\xa2\xb7\x79\x2a\x3f\xee\x01\x56\x57\xcb\x87\xbd\x0b\x6a\x42\xf9\x5e\xe1\xf8\x57\x09\xe0\x2b\xf8\xa0\xfe\x47\x9b\x17\xfb\x4a\x15\xa6\x0a\xe0\x3b\xfe\xfc\x16\xde\x0b\x2c\xcc\xf5\xe7\xfc\x42\xe7\x61\x64\x1f\x94\x11\x3e\x20\x48\x92\xd4\x8b\xe4\x08\x5f\x04\xd2\x1f\x21\x4a\x16\x9f\x6f\x64\xaa\x8e\xfb\x03\xf0\x78\x9a\xe2\xba\x17\xba\xea\x82\xaf\x07\xc2\x77\x26\x63\xff\x14\xd1\xa0\x45\xb8\x6f\x82\xf8\x8c\x0d\x58\x27\x27\x69\x97\xb8\x09\xe3\xb4\xf4\x3e\xfc\x7a\xcd\x15\xdc\x37\x41\x22\xe0\x0e\x9e\xc3\x24\x0c\xde\xe7\x20\xf4\xe3\xab\x28\xee\x45\xd0\xf5\x44\x12\x3f\x17\x3d\x4d\x91\xc4\xcf\x07\xcd\x85\x8c\xe3\x00\x3c\x87\x6a\xdd\x65\x35\x01\x78\x07\xfd\xb0\xae\x7d\x92\xe3\x01\xe0\xe7\xba\x32\x49\xb6\x02\x80\x6f\x77\x61\x29\xe3\x11\x00\xaf\x44\x81\x06\xe3\x2c\x00\x4f\x61\xee\x2a\xc6\x6d\x00\x9e\x87\x67\xce\x33\x4e\x01\xf0\x84\x65\x8a\x31\x7e\x02\xf0\x3c\x86\xbf\xe8\x80\x68\xfe\x7f\xa4\x0f\x04\xd9\x07\x3e\x88\xd4\xeb\x1c\xfc\xa3\xf1\x75\x42\x20\x48\x09\xcf\x55\xc2\x76\x06\x9f\x70\x1c\x3d\x8e\x5a\x2c\x94\xe2\xf5\xc3\x73\x36\x23\x7b\xfe\x1d\x8e\xb7\x00\x8c\x09\xeb\xdd\x39\x4f\x02\x30\x2c\x12\xe5\xb9\x4e\x02\xc8\x54\x67\xb0\x73\x5d\x02\x90\x99\x51\xea\xcf\xf9\x16\x40\x66\xfa\x83\x34\x0e\x79\x00\x99\x96\xcf\x79\xec\x8e\x9f\x4c\x65\xed\x00\xb8\x2f\x3e\x9f\x22\xf7\x13\x80\xbf\xf8\x6e\x89\xc2\x2e\x00\xa1\xe5\xb7\x36\x2b\xa4\x02\x08\x65\x55\x7e\x56\xb0\x02\x10\x12\x2b\xd3\xc1\xfe\x3f\xc6\xb4\xff\xcf\x85\x42\x85\xe9\x00\x82\x4d\x79\x33\x14\x83\x00\x84\xba\x72\x9e\xcb\x4f\x00\x10\x30\xcb\x2a\x90\xcf\x03\x10\x58\x73\x7a\x9f\x7c\x05\x80\xc0\xec\xb4\x64\xf9\x8b\x00\x02\x12\xf0\xa7\x0f\xca\x60\xfc\x74\xbc\x94\xfe\x63\x90\x07\x25\xc8\x71\x8e\xf3\x3b\x0b\x05\x1f\x0b\xaa\xe3\xf3\x3d\x56\x1a\x5f\xbb\x64\x2a\xb4\x7d\x59\x28\xf7\xcb\x26\x94\xc3\x09\x40\x7e\x8d\xd7\x77\xce\xd3\x00\x8a\xa3\x82\x16\xf2\xd8\x01\x28\x38\xaf\xbd\xce\xbb\x05\x40\x2e\x2b\xfe\x07\xef\x25\x00\x39\x8f\x8c\x2b\x7c\x19\xbf\x6a\xe5\x84\xca\x2c\xf8\x97\x7f\xd3\x93\x2b\xbd\x7f\x4f\xe0\xe3\x97\x52\xf9\xfb\xbd\x61\x82\xb6\x6f\x56\x2a\xa5\x01\x88\xf8\xb6\x9c\x56\x7e\x0b\x20\xce\x51\x37\x4e\x35\x1e\x60\x54\x60\xe5\x6e\x55\x3d\x00\x89\x03\x25\xba\x6a\x31\x00\xa3\x7e\x5e\x92\x51\xad\x00\x90\xc8\xcc\xbf\xaa\xf2\x13\x40\x3c\xe8\xdc\x2a\x55\x15\x00\x71\xdb\xec\x03\x2a\x73\x00\xc4\x38\xd3\xbf\xa8\x1e\x02\x10\x67\x3f\x29\xaf\xd2\x0f\x20\xc6\x75\x5c\x42\xb5\x08\x40\x6c\x55\x4a\x95\xb2\x2e\x80\x30\x76\x85\x64\xcc\xf8\x7b\xfc\xc3\xe3\xa6\x79\x60\x9a\x07\x15\x4a\xa2\xfa\x84\x48\x0a\x73\xe2\xfa\x97\xdd\x20\xb6\x87\x85\x4a\x67\x94\xce\x70\x70\x01\xa8\x0e\x98\x6c\xe3\x0a\x03\x50\x3b\x3d\xce\x8e\xa7\x19\x40\xcd\x29\x50\x96\x5f\x09\x40\xa5\x75\x55\x91\xc0\xe7\x6f\xc9\xaa\x01\xbb\xda\x44\x3e\x7c\xd2\x57\x5d\x97\xc6\x26\xe1\xfa\xfe\xa9\xea\xc6\xcb\x05\x92\x77\xdf\xf8\xa8\xe6\x36\x1d\x95\x8a\xec\x60\xaa\x4d\x78\xbb\x42\xaa\xe5\xe9\x36\x0d\x2b\x00\x69\xeb\x86\xc7\x5a\x77\x01\xe4\x4c\x2b\x3c\xb5\x77\x01\xc8\xad\x2e\x3a\xa3\xbd\x0c\x40\x36\xbc\x20\x4e\xdb\x1f\x80\x71\xe2\xdc\x18\xed\x54\x00\xc6\xa4\xec\x60\xed\xc5\x00\x32\xdb\x4f\x2f\xd2\x66\x00\x48\x1f\x4c\xf3\xd5\x72\x05\x90\x62\x3f\xce\xa1\x55\x08\x20\x25\x7c\xc4\x4e\xeb\x1c\xc0\xe8\xb5\x07\x37\x68\x84\x02\x48\x1c\x4e\x96\x52\xbf\x09\x20\xbe\x6e\xe8\xf8\x1f\x11\x3f\xe1\x7f\xe9\xf8\x79\xc8\x53\x8c\x78\x02\x85\x72\x54\x9f\x07\x50\x27\xbb\x06\xb4\x77\xf0\xe0\x79\x90\xd6\xc5\xe8\x37\xeb\x66\xf1\x9c\x00\xd0\x9f\x39\x26\x50\x80\xf3\x3b\x8f\x7e\xe7\xd4\x44\x51\xc1\x9e\x1c\x03\xee\xd0\xed\x92\xa1\xaf\x7f\xe8\x6f\xd8\x2a\xcf\xb0\x6c\x4f\xd6\x3b\x7d\xf8\x9c\x02\xe3\x09\x53\x4f\x38\x4f\x47\x79\x5c\x4b\xb3\xee\xc2\x9b\xee\xaa\xa3\xee\x69\xe9\x6e\x6e\xbf\xae\xfa\xa2\x39\x56\xaf\x0f\x3e\xa9\x3a\x57\x36\x1a\xec\x82\xd7\x6a\xb1\x97\xce\x1a\xd6\xc2\x6b\xb5\xfc\x5c\x0b\xc3\x6f\xf0\x45\x75\xc1\xa0\xee\x85\xf8\xbd\x1c\xff\x66\xf8\x16\x40\x49\x2f\x25\xc5\xf0\x31\x80\xe2\xac\x43\x3b\x0c\xe6\x03\xc8\xb5\x27\xbf\x35\xe0\x03\x90\xbd\x9c\x24\xa2\xef\x01\xc0\x18\x97\xf0\x4d\xdf\x0c\x40\xe6\xc6\xae\x8d\xba\x0f\x01\xa4\x1c\xe1\x4f\xfd\xc3\xc8\xf8\x89\xef\x3b\xcd\x03\xd3\xfb\xc1\x75\x09\xff\x45\xfb\xa3\x58\x90\xa7\x19\x5b\x86\x88\x34\x42\x10\x6e\x7b\x45\x35\x90\x5b\xeb\xd3\x52\x9b\x78\xcb\x33\xa2\xa9\x6f\x24\x6c\x5c\xbc\x75\xa5\x9a\xdb\x04\xad\x63\xe7\x2d\x56\x50\x6a\xf1\xb3\x92\x5a\x3f\x4f\x35\xeb\xb6\x96\x45\xe3\xde\xb1\x5a\x5b\x6f\x55\x99\xfb\x65\x85\xe9\x32\xab\x5e\x9b\xcd\x29\x0f\x33\x38\x57\xe9\x69\xda\xf8\x28\xcb\xb0\xe5\xda\x53\x33\x97\xfe\x4f\x86\x21\x17\xc1\xbc\x07\xd6\x1b\x94\x9e\x99\x65\xa9\x0f\x3b\xf5\xfb\x4f\xb9\x5a\x74\x42\xb6\xee\xe2\xa3\xb7\x2d\xae\x43\xa5\xb6\xdb\xc1\x36\xcb\x5c\xa8\xd6\x96\x4b\x2e\x35\xef\x80\xd7\xea\xa7\xf7\xca\x98\xbf\x86\x8f\x6a\x87\xe3\x63\x2c\x62\xe0\x93\xda\xa9\xb8\x65\x66\x25\x00\xca\x51\x3b\x66\x99\x29\x02\x28\x66\x6e\x13\x37\x55\x05\x90\x7f\x17\xed\x67\xea\x07\x20\x8f\x35\xcb\x9c\x11\x7f\xab\x7f\x6e\xe2\x07\x23\xf3\x9d\x42\xcd\x42\x12\x37\xd1\xc9\xd8\x90\xa7\x43\x27\xf2\x14\x3c\x16\xaf\x67\xfd\xa8\xf1\x58\xcf\x99\x86\x50\x8f\x9e\x4f\xa1\xdc\x64\xce\xaf\x2f\xba\x3c\xdf\x18\x49\x8a\x8d\x6e\x49\x19\xb7\xc7\xa5\x41\xfe\x46\xc3\x17\xb7\xfb\x01\xa7\xd5\xdf\x55\xf3\xb8\xdc\x0b\xab\xd4\x1b\x5f\x96\xe3\x54\x16\x6b\x69\x7c\xb2\x28\xd6\xf1\xfa\x09\x11\xf3\x7b\x17\xe6\x39\x48\x15\x79\x59\x9d\x3f\xbf\xd3\xee\x47\x73\xa2\x8d\x77\x4e\x84\xdd\xfb\x0f\x7b\x6d\x8e\x9e\x36\x70\x58\xc7\xfc\x61\xad\x9d\x92\xea\x18\x02\xaa\x16\xf7\xf7\xeb\x3b\x6a\x81\x9f\xe9\xe9\xc4\x3a\xfb\x26\xd8\x62\x58\x1c\x77\xd2\x21\x11\x12\x0c\xaa\x62\x7d\x1d\xe4\x20\x43\xaf\x66\xfb\x5d\xfb\x4e\xc8\xd3\x7d\x15\xfd\xc4\x5e\x04\x9a\xb4\x5a\xa3\x74\xed\x26\x42\xbb\x46\xf7\xa6\x1e\xbb\x45\xd0\xa1\xb1\x7f\x7d\xa3\xf5\x17\x00\x95\xc3\x6b\xcb\x6d\x54\x01\x94\xeb\xfe\x8c\x9f\xa7\x9a\x42\x69\xb2\xeb\x87\xe6\xc1\x2d\xe8\x5d\x11\x64\xff\x3b\xcd\x07\x4e\xc2\xeb\x91\xfd\x7b\xa7\xe1\x79\xa3\xab\x8f\xf2\x47\x79\xbe\x36\xe8\xe4\x68\x5b\x84\xee\x85\x06\x7a\x6b\x59\x88\x2c\xbd\x99\x1d\x10\x62\xdb\x2b\xaf\x58\x1a\x30\x29\x6d\x42\x91\x6e\xe0\x45\x71\xdf\x86\x85\x27\x4c\xcf\xe4\xa8\xfa\xe8\x47\xe6\x59\x5f\x4c\x7f\xea\xf9\xf2\xc0\x1b\x87\xc8\x54\x5b\xf7\xf2\xf3\x2b\x9c\xea\x8f\x54\x8c\xd7\xa9\x45\x2e\x77\x0f\x4e\x1a\xb7\xf6\x65\xa3\xeb\xc2\x64\xee\xf1\x12\xcc\x55\xce\x4f\xe2\xe4\xdc\x95\x98\xe7\x1d\x8f\x6e\x37\x1f\x3f\x9a\xd9\x6f\x2b\xb8\x59\x7d\xdc\x27\xd0\xb6\xdc\x1a\x39\x6d\xbc\x20\x98\x59\x14\xac\xb7\x1f\x27\x0e\x73\x4d\xe5\xd7\xd5\xbb\xed\x81\x48\xa3\xeb\xab\x5f\xba\xa6\xc3\x09\xfd\xdc\xf0\xcd\xae\x2b\x21\x57\x6f\x72\xf8\x14\xa7\x52\xb8\xad\xd5\x15\xa6\x38\xe6\x3b\xbc\xd4\x28\x58\xea\xef\xb4\x1a\xde\x68\x28\xfc\x39\xff\xd1\xf5\x4f\xfb\x41\x58\x33\x29\x1c\x47\xfc\x4f\x28\xfd\xcf\xcf\xe9\x81\x78\xb7\x4b\xcf\xc5\x79\x78\xfd\xe2\x55\x6f\x30\xe6\xbb\x9e\x74\x2f\xc5\xe3\xe3\x8e\x44\xd8\x71\x41\x3b\x84\xaa\xc3\x96\xed\x52\xda\x2f\xc8\x79\xc5\x25\x24\xd9\x6c\x2e\x23\x3b\x57\x75\x41\xf2\xf8\xd9\xda\xc7\xd3\x5a\x66\xaf\x9d\xe9\x6e\x35\xf5\xd0\x89\x99\x66\xab\xdc\x1d\xdf\x26\x66\x04\xcc\xdb\xe3\xe9\xa6\xb8\xcb\x78\x9a\x40\xc6\x0a\x77\x91\x98\xac\x29\x13\xcb\xc7\x78\xc6\x6d\x7e\x3a\x59\xf2\x49\x90\xd7\xc2\xc8\xc0\xc9\xee\x03\xae\x9e\x57\x23\x2e\x4f\xe6\x65\x3a\x8f\x3d\x1f\x3e\x76\x52\x39\x73\x8f\xb3\xeb\xf2\xab\x13\xf7\x31\x6f\xdb\x7f\x59\x2e\xec\x9b\x07\xc8\x26\x3b\x94\xe1\x3b\x17\x14\xad\x66\x86\x24\x4c\x30\x07\x27\xf3\xea\xc5\x67\xbd\x3f\xc2\x3c\x93\x1f\x8b\x2e\x78\x19\xc3\x56\x23\xd3\x05\xe5\x9e\xae\x70\xc4\x80\x6b\xbe\xab\x87\x04\xe4\xe9\x3e\x9e\xe7\x31\xde\x16\x6a\xb5\xc7\xfe\xa9\x03\xd1\x26\xab\x1d\xb6\x8e\xc3\xcf\xbb\x3f\x9e\x27\x06\x9e\xcd\xc7\xfa\xb8\xee\xf6\xa5\x98\x9f\xe8\x48\x0e\xc7\xfa\x90\x87\x4f\xd6\xe2\xfa\x69\x8c\xdd\x88\x75\x85\xd7\xa5\xa2\x38\x51\x05\x42\xc5\xfa\x9b\xc5\x65\xae\x72\x9b\xe7\xac\xde\xd0\xa3\x57\x31\xfa\x62\x6a\xdb\xda\x80\x31\x4f\xd4\x5b\x92\x72\x56\x3c\x9f\x62\x6b\x2e\x10\x73\x61\xc9\x85\x10\x1d\x97\x55\x1b\x16\x2e\xbe\xba\x35\xd1\x3d\x33\xfc\xe6\x42\xfd\x63\xb3\xbd\x6f\x2f\x3d\x35\xdf\xf8\x72\xa1\xef\xbe\x60\xf9\xb9\x3d\x77\x9e\xf9\xf5\x2c\x8c\x9d\x1b\xd2\xdb\xe9\xb7\x82\xd6\x7d\x04\x29\xcf\x9e\xc5\xb4\x19\x5b\x3a\xab\x2e\x30\x8f\xb9\xdd\xd9\x60\x96\xfa\x4c\x15\x66\xbe\x63\xd8\xcc\xed\x33\x78\x99\x8f\xed\xb2\x68\xbd\xc7\x8c\xa4\x69\x5b\x40\xdd\xd2\x29\x60\xcc\x54\x71\xf0\x31\x7d\xe3\xcf\x31\xb9\x07\x16\x19\x57\x4e\x8d\x9b\xf4\x1d\x36\x19\x96\x4e\x95\xf4\x93\x85\x93\x7a\x6e\x00\x62\x1c\xc3\xc7\x3f\x1d\xbf\xf7\x35\x0a\x29\x1e\x78\xc0\x8e\x5a\x0d\xea\x51\x0b\xc7\xfb\x16\xdb\x75\x36\x60\xd7\xd7\x96\xd9\x9b\xb1\x8e\xa8\x7e\xea\x36\xbc\x3a\x58\xa1\xbb\x13\xf7\x57\x29\x8c\xda\x83\xbf\x27\x47\x37\xe1\x9b\xf8\x34\x84\x52\x35\x76\x6f\x52\x6b\x12\xd3\xda\x7b\x39\xf6\x80\xf5\x1e\xa5\xdc\xad\xf9\x31\xec\x3e\x91\x46\x68\xd5\xb7\xc8\xfc\x79\xa9\x0e\x1e\xc1\x95\x1b\x2c\x37\x9e\x1f\x7b\x66\x6e\xe9\xba\x1b\x07\xb3\xdd\x4f\x06\x4e\x88\x88\x2d\x28\xf6\xf4\x0f\x88\x5c\x3b\xb7\xf1\xa3\xe7\x9d\x69\xde\x6b\xc5\xde\x1f\xf4\xa8\x9e\x6a\xb2\xea\x07\xd3\x67\xac\xc7\x94\x99\x61\xbb\x99\x87\x9c\x6a\x27\xdb\x2f\x53\x63\xd6\x3b\x84\x4c\x2a\x0c\x39\xc6\xfc\x6e\x3b\x61\x62\xdf\xe2\x32\x90\xb2\x16\x9e\x24\xbd\x60\x13\x18\x5a\x9a\xfb\xa5\xcd\x9b\x0a\x53\x4d\x7f\xfa\xa6\x05\xd5\xc1\x72\xe3\x7b\x7e\xf3\x67\x8d\x81\x75\x46\x57\x7d\xb6\xcd\x3c\x03\x19\x7a\x3b\x7d\xe6\x4c\x5f\x0b\x05\xba\xb6\x00\xea\x27\x48\xfd\x93\x55\x70\x1f\xb2\xaa\x39\x0b\xf3\x5a\x03\xe2\xcb\xf0\x7c\xf0\xa1\x72\x2d\xce\x57\xbb\x5d\x14\xe6\x85\x1f\x74\x50\xab\x62\x75\x3e\x7b\x30\x6f\x71\x0d\xf6\xe2\xeb\xc6\xc5\x6b\x07\x70\x1f\xa9\xec\xe6\xc3\x78\xdf\xdf\xb1\x49\x47\x37\x71\xde\x47\x28\xe9\x58\x4a\x89\xbc\x1c\x7f\x64\x4c\xe6\xa1\x83\xc6\x3f\x18\x81\xab\xdb\x92\x7f\x8d\x8b\xd6\x9e\xbc\x70\x76\x62\x45\x60\xb0\x65\xca\xcc\x65\xf1\x57\x22\xa6\xd8\xd7\x4c\x89\xd9\xb3\x3c\x59\x73\xcc\x39\x5f\xfb\xdd\x16\xe7\x5b\x9c\x7d\xbd\x22\xe2\x26\xd7\xbd\x72\x3e\xe9\x11\xb5\xab\xf6\xed\x44\xa7\x7c\x0f\xaf\xd8\xad\xcc\x1a\x87\x34\xf7\xfd\x5b\x9e\x03\xaf\xcd\xac\xf1\xfd\x91\x63\xc1\xd2\xe2\x9b\xfb\xd8\xf5\x5b\xc1\xc3\x7c\xbd\xbb\x7b\xc4\x52\xf0\x37\x0b\x1e\x57\xb3\x6a\x36\xc4\x1a\xf9\x8d\x9b\xb9\x92\x03\x8e\x18\xa4\x8f\x53\x5f\xe6\x05\xb9\x7a\x27\xc6\x8f\x0d\x3d\x0f\x99\xfa\x0e\x63\x37\x87\x24\x42\xb5\x8e\xfa\xd8\xa7\x0b\xc3\xe0\x0e\xeb\xde\x82\xd6\x81\xb8\x93\xd5\x42\x4a\x07\xf1\x4b\x9e\x5a\x15\xed\x49\xda\x88\x7d\x30\xda\xd9\x28\x1d\xd0\xfd\x96\xdd\x98\x9f\xac\x8b\x4e\xe2\x67\x61\xb9\xc9\x21\xac\x0f\xb9\x64\x74\x0c\xd7\xcb\x99\xcd\x27\xf0\xaa\xe8\xf1\xfe\x74\xdc\x37\x23\x31\x25\x13\xfb\x70\xed\xe8\x3d\x53\x2c\x15\x8c\xd0\xda\x7d\x99\xf1\x3a\xe2\x12\xd3\x17\x5f\x4e\x7f\x3c\xe6\x80\x0a\x97\xff\xcf\xb4\x03\xd3\xa6\x1b\xfe\xf4\x4d\x3f\x11\x1e\x9e\x62\xa6\xe1\xde\x9d\xba\x2c\x51\xdf\xa2\xc7\xb5\xed\xf8\xfa\x1c\x3f\xab\x58\x27\x8f\x63\x25\x37\x8f\x5a\xdd\x73\x0c\x39\xc6\xde\xb9\xd4\xb2\xce\x51\x24\x45\x06\xbc\xcd\x22\x1d\xd5\x92\x97\xc2\x32\x13\x4e\x87\xa6\xf8\xf5\xb0\xd7\xd0\xc4\xe1\xd5\xae\x4a\x38\xa1\xff\xc2\x61\xf7\xf6\x4b\x70\x59\xf7\xb1\x43\xed\x56\x6f\xa8\xd0\x79\xee\xb0\x65\xf3\x2c\x68\xd2\x5e\x64\x7f\x6e\xc3\x67\x78\xa3\x71\xcd\x41\x69\x9d\x3d\xbc\xd7\xf0\xb2\xcf\x5a\x2b\x00\x5f\xd5\xfa\xec\xbe\x85\x47\x00\xa8\xf4\x8e\xd4\x81\xd0\xf1\x77\x9b\x45\x51\xfd\x5f\x80\xf2\x03\x7a\x90\x98\x88\x79\xbd\x3a\xeb\x83\x98\xcf\xbd\x16\x7d\xd4\x91\x8a\xff\x24\x5e\xe7\x3e\xf3\x01\xb7\x43\x40\x27\x4a\xce\xe2\xf5\xd7\xe4\xfc\xf3\x98\x6d\xd8\x66\x4a\xf5\x91\x59\x7b\xfa\xd2\x43\x3e\x17\x84\x42\xda\x0b\x2f\x2a\x9f\x15\x14\x9e\xd1\x7b\xe1\x82\xd5\x3b\x86\x84\xf7\x9c\x7c\x6f\xbf\xb9\x1a\xf3\xdd\xf6\xe6\x5d\x59\x16\xab\xcd\x74\x54\xcb\x93\x8a\x7b\xa7\xb7\xd5\x66\xe1\xf9\x79\x59\xbb\xf4\x7b\x2d\x3e\xe5\xa6\x57\x65\xe9\x33\xcd\x1d\x73\xbd\x3b\x18\x7a\x1f\xcd\xe3\x72\x7c\xe1\xaa\x4e\x90\x85\x50\x7a\x22\xdc\xd2\xb6\x31\x6f\x3c\x2e\x01\x6d\x9a\xda\xe6\xab\x0f\xef\x80\x1e\xf5\x75\x16\x0b\xf6\x27\x41\xb7\x7a\x8e\x19\x33\xc9\x89\x15\x9f\x79\xe3\x1e\x13\xd6\xf5\xd1\xbc\x6b\x67\x11\x80\x72\x8d\x45\xd8\xf6\xd1\x00\xca\xf3\xcd\x1b\xa2\xbf\x00\x28\x6e\x35\x8f\x8f\x7a\x0b\xa0\x90\x0b\x10\x80\x57\x83\x99\xf1\xe1\x7b\x59\xf8\x51\x3e\x1a\xcf\x7f\x2f\x76\xc5\x51\xac\x97\x43\x32\x5e\xdd\xae\xcf\x3b\x82\xf5\x2f\x95\x46\x94\x0e\xe8\xb2\x44\x26\xd6\xcd\x9d\xf3\xcd\xc1\xd7\xcd\x53\xa3\x0a\x30\x0f\x7a\x68\x62\x21\x1e\x57\x71\x3e\xd4\x2a\xf1\xc6\xa5\xa5\x6b\x58\x18\x5c\x5e\x81\xbf\x7f\xf6\xe2\xeb\xea\x32\xbb\x38\x6e\x4d\x68\xaf\xb8\x62\xb4\x5f\x7c\x81\x73\x40\x79\xb8\x47\xae\xdc\x13\x9b\xce\x72\xaf\xc5\x47\x15\x6b\xcd\x98\xe5\x02\xdb\x1f\x29\x0f\x18\x25\x5f\xdb\x91\x3e\x45\x75\xb4\xfe\xe2\x6b\xe6\x95\x5a\x2a\x7d\xba\x7d\x65\xbf\x9e\xa7\x2b\xb7\xe9\x29\x94\x16\x03\x28\x3c\xd2\xd3\xbb\x78\x17\x40\xbe\x53\xdf\xe5\xdc\x59\x00\x85\x10\xbd\x53\x59\xfb\x01\xe4\x1a\xf5\x8a\x4e\xbd\x02\x90\xd3\xd1\x3f\x9e\x5a\x09\x20\x77\x48\xaf\x33\xc5\x10\x80\xd1\xa5\x7f\xf7\xa0\x07\x80\xac\x8f\xfe\xe2\x7d\x5b\x01\x18\x0a\xfa\x2d\x09\xac\x7b\xa3\x72\x83\x88\xdd\x17\x01\x64\x7e\xd0\x7e\x50\xbd\xf5\x9b\x71\x9d\x77\x78\xec\xc1\xab\xe8\x2d\x79\x07\x31\x3f\xdb\xb8\x91\x62\x07\xae\xc7\x9f\xc6\x7a\x88\x62\xd7\xb3\xf8\xba\x70\x9e\x23\x1f\xf3\x1c\xa7\xc5\x2e\x61\xde\x2b\x65\x72\x09\x3e\xff\x09\x09\x94\x1e\x66\x8b\x11\xe5\x9b\x11\xbe\xa7\x66\x27\x0b\x83\xca\x29\xff\x08\xdf\xe6\x26\x7d\xc1\xad\x08\xb9\x94\x36\x3e\xd2\x34\x15\x90\xb5\x54\x6b\xb4\x76\xfe\x29\x51\x6d\x14\xdd\x78\x63\x2e\xe7\x68\x79\xdd\x71\x8d\x7d\xd1\xfc\x52\x25\x9a\x13\x1b\x9f\xa7\x46\x4a\x07\xaa\x1d\x6d\xac\x2a\xed\x94\x02\xd5\xc5\x8d\xe1\x4f\x57\x8f\xae\x55\x5d\xd6\xb8\x12\x40\x62\x8e\xaa\xd8\x8d\x57\x00\xe2\xd5\xaa\x87\x4b\xad\x00\x24\x8c\xd4\xa6\x5c\x56\x04\x90\xb8\xa9\x96\x9c\xff\x0d\x40\xa2\x44\xa5\xef\x9c\x30\x80\xd8\x32\x75\xbf\xcc\xa7\x00\x12\xa5\xaa\xb1\xe9\x9c\x00\x62\x01\x6a\xa2\xa9\x96\x00\x62\x1b\xd4\x7a\x52\x8e\x01\x88\x0b\xa8\x0d\x1c\xb6\x07\x10\xbb\xf7\xe9\x7d\x34\xf6\x81\xea\x48\xa3\x74\x60\x8f\x43\x29\x1d\xd4\xed\xfe\x93\x78\xd7\x70\x15\x7f\x36\xc5\xfb\xc6\xe5\xe2\xf1\x91\x97\x5a\x88\x75\x10\x59\xae\x25\xf8\xf8\x98\x02\xe5\x97\xb0\xcf\xf3\x3a\xde\x0f\x1c\x5b\x45\xf9\xc3\xac\xb7\xa3\xe2\x5e\x92\x79\x1b\xef\x1a\x0d\x48\xbc\x87\xf9\x4f\x67\xee\x47\x78\x37\xb6\xc5\xaf\x56\x7e\x39\x7b\x8e\x5e\xdd\x23\xad\x2a\xd6\x4d\x02\x27\xd4\x6f\x3d\x15\x9e\xbe\x48\xf0\x9b\xf2\x8a\xa7\xd3\xd7\x6f\x17\xca\x54\xd8\xf8\xf4\xec\x11\x7f\xa1\x2a\xb9\x49\xcf\xd8\x8a\x8d\x04\xf3\x65\xe7\x3e\xfd\xfa\x68\xad\x80\xa4\xec\xb6\x67\xe3\x98\xb6\xbc\x0e\xb2\x4b\xef\x25\x01\xf0\x5a\xc8\xca\xd7\xcf\x03\xe0\xf9\x20\x67\x50\xa5\x0e\xc0\x77\x5e\xf6\x7a\xb9\x2e\x00\x9f\xb8\xdc\xd6\x2b\x69\x00\xfc\xd2\xb2\x7b\x0a\xeb\x00\x78\x4f\xc9\xed\xcf\x5b\x0b\xc0\xf7\x59\x6e\x55\xce\x64\x00\xbe\x53\xf2\x1d\x99\x0b\x00\x04\x2c\xe4\x2f\xa6\x6b\x03\xf0\xdf\x7d\xeb\x4b\xe9\xff\x9e\x9c\xa4\xe6\x3b\x3a\xfe\xea\x0f\xd4\x38\x2f\x55\xa0\xfc\x21\x2e\xf8\x14\xe3\xf1\x72\xc6\x91\x8a\x3b\x2d\xff\x06\x66\x4b\x0e\xb4\xdf\xc4\x6c\xdb\x9e\xe0\x06\x5c\x47\xd1\xb5\x77\x74\x11\xde\xef\x7c\x1f\x5f\x47\xe6\x3f\x78\x84\xaf\x37\x13\x3f\x50\xbc\xa9\x2d\xe3\x25\xbe\x0f\xd1\x8c\x7c\xeb\x2c\x98\x8e\x90\xe2\xb8\xae\x70\x7d\xe0\x0c\x97\x75\x7f\x57\xe7\x67\xc7\xe9\x25\xe3\xf7\x21\x24\x7c\x29\x7b\xa1\xf4\xab\xee\xc9\xc9\xdd\x08\x8d\xd6\xe9\x2e\xba\xf0\x05\x21\x89\xe2\xee\x92\x7b\xe3\x11\x12\x8b\xea\x3e\xfa\x4d\x12\x21\xc1\xf0\x0e\xec\x57\x2e\x10\xf0\x64\x39\x0b\x79\x5f\xdf\x9b\x8b\xb1\xb1\x09\xf3\x95\xdc\x3f\x6b\x2f\xe2\x63\xa5\x1b\x78\x5f\x1b\xbb\x77\x39\xe6\x33\xb9\xac\xaf\x60\x8f\x45\x84\x0a\xd7\xe2\xd7\x9f\xe6\x27\xe2\x75\xbe\xda\x14\xcc\xea\xdc\xe3\xcc\xc0\xf3\x5f\xcd\xa1\x1c\xac\xd3\x28\xf3\x2b\xc4\x7a\xb7\x42\x9b\x12\x7c\x3d\x39\x37\x97\xaa\xf3\x74\xde\x9b\xb8\xee\x8f\xd8\x35\xe0\xeb\xc8\x5e\x85\x66\xac\xfb\x88\x75\xa4\xf4\x4f\xeb\xde\x3d\xc2\xfe\x5b\xcb\xce\x3f\xc3\xe3\x6d\xf6\x84\x97\x58\x07\xe1\x6d\xf0\x1a\xfb\xc8\x98\x47\x75\xe3\xcf\xcb\x5e\xed\xc7\x9f\x17\x8d\x1f\x10\x90\x17\x43\x48\xb0\xee\x47\xb1\x73\x24\x42\x7c\x2e\xbf\x36\xce\xef\x41\x88\x9b\xc1\x7c\xbd\xc3\x0e\x21\x0e\x41\xc8\xce\x64\x5d\x81\x22\x00\x6e\x9e\xa3\x66\xf4\xf7\xf8\x8a\xf4\x35\x1e\x86\xea\x1c\xd0\x4b\x13\x0a\x5b\x71\x7c\x68\xfb\x03\x5e\xea\xf8\x36\x61\x1a\x6f\x11\x66\xb2\xaa\x92\xc2\x72\xac\x13\x41\xdb\x4a\xba\x59\x78\x2f\x8f\x1a\xf7\x75\x50\x80\xf5\x0e\x15\x9b\x8b\xf0\xfd\x60\x51\x5b\x39\x9e\x0f\xcf\x1f\xa8\xc6\xd7\x93\x8c\x0f\x75\x78\x9e\x38\xd6\xd4\x84\x59\xf6\x7d\x84\x55\x8e\x83\xc7\xf8\x7e\x3a\x5a\x99\x3a\xdf\x6b\x76\x52\x7e\x21\xc1\x0a\x6f\xf0\x7d\xd5\x74\xbb\x0f\xd8\x4f\xc8\x5d\xe1\x13\x1e\x47\x26\xc7\xbf\x63\xde\x54\xba\x98\xfa\x35\x6c\x12\x00\x82\x16\x54\x7c\xa6\xac\x4a\x8c\x06\x98\x46\x3a\x78\xd1\xfc\xdd\xa1\x18\x0a\x0b\x09\xff\x47\xf3\x72\x7d\x58\xc9\x37\x92\xcf\x7f\xbb\x81\xc2\x17\x17\x28\x7c\x4a\x76\xa4\xdf\x8f\x19\x9e\x97\x3a\xc2\xf3\x56\x63\x67\x8e\x86\xfe\x02\x9c\xe5\x2a\xb1\xab\x58\xe7\x50\x2c\x46\xf9\x83\xe4\x2b\xd4\xe0\x4f\x65\xbf\x6f\xc2\xe7\xf3\xc4\xe9\xbb\x58\x67\x7b\x30\xe7\x11\xf6\x8b\x49\x14\x78\x86\xaf\x9b\x3b\x8e\x77\xe0\x5f\xb3\xb1\xe6\x35\xfe\x9e\xb0\x86\xf7\x38\xce\xf9\xc5\x9f\xf0\xfa\xc4\xd4\xf6\x7e\x3c\x9e\xdc\x6c\x7e\x61\xf6\x9a\xe6\x39\x47\x35\xc2\x20\xbf\xc9\x4b\xf8\x4b\x9a\xd7\xf4\x25\xfb\xf3\x97\xd2\x7d\x1d\x08\xdf\x9b\xb1\x9f\xc2\x6b\xa4\xf3\xe9\x43\xc2\x63\x7e\x21\xc7\xd4\x37\x0e\x10\xc6\xbd\x97\x38\x55\xbc\x21\x0a\x9c\x17\xb1\xc3\xf3\xf2\x40\x9f\xc2\x66\x75\xbc\xbe\x4b\x74\x60\x25\x25\xd7\xb1\xbe\xa5\xe0\xd8\x2d\x4a\x0f\x39\x42\x07\x75\x4c\xe1\x19\x56\x19\xec\xd3\x68\xc7\xba\xb9\xdd\x33\xdf\xae\x67\xe1\x96\x57\x1f\xf0\x3c\x18\x51\xf8\x19\x5f\x47\x97\x3e\xfc\x86\xe7\xdd\x39\x8d\x94\x4e\x60\xa2\x16\xc5\x97\x3b\x9e\xa5\xfe\x2a\xed\x83\x21\xa6\xf0\x67\x1e\x74\xc9\x31\xed\x77\x40\xef\xef\x8f\xa4\x9d\x9d\xc4\x28\x3c\xcf\x4f\x61\x15\x39\x7e\x42\x3a\x80\xbd\x9f\x8a\xfe\xc2\xeb\x7f\xb5\xa4\xb0\x87\xf4\xc5\x79\x33\x6a\x78\x5e\x5a\x71\x87\xa3\xb2\xae\x2a\xdc\x1f\xb1\xb0\xad\x01\xc7\x9d\x5b\x70\x0f\xef\xa7\xc8\x74\x7f\x82\x6f\x30\x53\xb7\xb4\xe3\x3e\xac\x07\x76\xbd\xc2\xe3\x26\xc1\xe2\x1d\x56\x11\xec\xe8\xfe\x84\xd5\x29\x91\xa7\xbf\xe1\xe7\xd0\xd5\x5b\x7f\x61\xfd\x21\xcd\xff\xd3\xfe\x40\xb4\xff\x81\x0d\xe9\x8b\x42\xfb\x60\x0c\xe5\xfd\x69\x1d\x88\x26\x71\x3e\xa5\xfd\x0e\x68\xdf\x87\x55\x44\xef\x12\x47\x76\xbc\x9c\x24\x75\x43\xfb\x3b\x54\xbd\xa2\xf0\x1e\xf9\xdc\x2b\xf2\xc4\xd4\xdf\x3e\x34\x1f\x4c\xa2\x40\xe9\xab\x19\x91\x17\x5c\x2f\x97\xdb\x9a\x70\xb6\xf3\xde\xb5\xe0\x6f\xcd\x5e\xf3\x74\x1b\xc2\x7e\x48\x2f\xf1\xbc\x76\xc4\xee\x2d\xd6\xcd\x27\x0b\x7c\xc4\x7e\x63\x7b\x02\xbf\xe2\xfb\x85\xad\xdd\xbf\xf0\xa8\xa6\x75\x20\x4b\x49\x3f\x9c\xb9\x44\xff\x33\x99\xf4\xcd\x71\x9b\x47\x21\xed\x8f\x43\xf7\x01\x11\x8a\xf8\x9d\x07\x0e\xa2\x43\xa0\x75\x20\xf6\xe4\x89\x97\xf6\x7d\x08\x25\x8e\xa0\x74\xbf\x8f\xfd\x04\x33\x48\x27\xd8\x22\xd2\x39\x98\xd6\x7f\x34\x92\xf1\xf3\x94\x7c\x4f\x77\xf2\xdf\xea\x04\x0c\x86\xe6\xe5\x82\xcf\x43\x7c\xbe\xcf\xfa\x50\xf3\x5c\xba\x5d\x27\x9e\xdf\x8e\x6b\x76\xe3\x3a\x3f\x90\xf8\x09\x3f\x87\x25\x1e\xfd\x89\xfd\xe4\x06\xfb\xe2\x10\x5d\x03\xad\x87\x5a\x64\x34\xbc\x0e\x06\x75\x20\x94\x4b\xd1\x6f\x1d\x08\xb5\xf2\x85\xf8\x99\xf0\xa7\x0e\xc4\x8e\x42\x4b\xf2\xa4\xeb\x4d\xe2\xa5\x75\x52\x11\x64\xa7\x60\x2c\xd1\x2d\x1c\x26\x2b\x84\xb4\xfe\xe3\x02\xe9\x83\x52\xfa\x86\xc2\x5b\xa4\x83\xe4\x48\xfd\x47\xbf\xd1\x9f\x79\xc9\x95\x6d\xc7\xa3\x2c\xab\xea\x1d\x7e\x40\x48\x6b\xfb\x84\x75\xe4\x47\xc6\x7c\xc3\x67\x21\x49\xf7\x27\xfe\x35\x3b\x49\x1c\x51\x33\x29\xa4\xfd\x50\xfe\xab\x0e\x84\xf8\x45\xd1\x7d\x92\xe4\x8d\xff\x9d\x07\x5a\x07\x62\x48\xe2\x72\x25\xba\x0d\x7f\x82\xa1\xc4\xcf\x24\x92\xec\x9c\xa2\xf5\x41\xb4\xfe\x83\x9e\x47\xe9\xf9\x63\xd0\xff\x63\x84\xfe\xe3\x19\x59\x49\x7c\x47\x8e\x7f\xe2\xfd\xf4\xff\xff\x3e\x20\xf4\xe7\xec\x4a\xd0\x30\x9e\x9b\xd6\x81\x04\x4c\xa6\x70\xc1\x4e\x0a\x57\xca\x50\x38\xa8\x7f\xd8\x4b\x61\x1a\x3b\x85\x79\x44\x0f\x51\x41\x7e\xcf\xbd\xa9\x14\xbe\x26\xbc\x22\xd3\xfd\xb7\xfe\xa1\x9b\xf0\xb3\x1d\x01\x14\xd2\xfa\x0f\x5a\x2b\x70\x87\xf0\xda\x23\x79\xef\x6a\xf2\x5b\x07\x79\x5f\xa2\x8b\x80\xff\xc1\x07\xe4\x0f\xfd\xc3\x08\x1d\x08\xcd\xf7\x3b\x6d\xa5\xd0\x83\x49\x21\xad\x03\xf9\xa7\x1e\xe6\xc5\x88\x3c\x8c\xd4\xc3\x10\xed\xc2\x50\x3d\x4c\x7f\x2c\x85\x5d\x44\x2b\xd1\x4e\x7e\x03\xad\xff\xa0\xf5\x0f\xcd\xe4\xdf\xd4\x7b\x53\x78\x93\xe8\x23\x68\xfd\x47\x19\x39\x87\x57\xb3\x7e\x7f\xf7\xff\xd5\x07\xe4\x8f\x7c\xd0\xfa\x20\x52\x4f\xc4\x17\x05\x4d\x21\xdf\xf3\x4f\x1d\x08\x3f\xc9\x03\xad\x87\xd9\x46\xe1\x0d\xb6\xe1\xe7\xb6\x7b\xe9\xef\xdf\xfa\xf9\x08\xa9\x11\xa2\x7f\xa0\x7d\x50\xfe\x67\x1d\xd0\x08\xfd\xc7\x50\xfd\xc3\xbf\xfa\xe1\xe8\x12\x0f\x9a\x41\xfd\x47\xf6\xf0\xe3\x91\xba\x07\x7a\x5c\xfd\xa1\x03\xb9\x4b\xe1\x32\x3d\x0a\x37\x91\x71\x92\xf0\x72\x78\x1e\x46\xea\x61\x1e\x51\xfc\x31\xd6\x81\x30\x77\x50\xff\xdf\xf3\x8a\x8c\x07\xa2\x93\x7a\xc2\xff\x9f\xc7\x41\xd5\x00\x89\xff\x31\xa9\x03\x5a\xff\xe1\x48\xe1\x30\xfd\xc3\x3f\xe2\xff\x7b\x1f\x94\x21\xfe\x17\xd9\x23\xf2\x11\x31\x7c\x7c\x10\x1d\x08\x9a\x49\xf4\x32\x21\x84\x2f\xdb\x44\xb4\x4b\xf1\x7a\xc3\xf3\x70\x21\x81\xc2\x1a\x12\x5b\x2b\xf1\x1d\xea\xd3\xf9\x3d\x2f\xd0\x7a\xa0\xb6\x4f\x94\x3e\x8a\xae\x83\x26\x72\x7e\x69\x1d\x54\x35\xc9\x13\x3d\x0f\xd0\xf1\x5f\xa9\x1a\x1e\x7f\x5e\xc3\xbf\xf3\xf0\x2f\xfd\x87\x82\xce\xf0\xe3\x91\x3a\x10\x7a\x3e\xa1\xe7\x4d\xcf\x67\x14\x06\x90\xd7\x17\x93\xbf\xb9\xbe\x9f\xc2\x3d\x6d\xc3\xf3\x70\x31\x9d\x9c\x4b\xa2\x83\x69\x23\xbf\x6f\x60\x1f\x42\x7d\x8b\xa9\xff\xef\xd4\x1f\x5e\x07\xf4\x38\xa0\xe7\x81\x9a\x40\x12\x3f\xad\x03\x1b\xf3\x9f\xe3\xcf\x61\xfe\xce\xc3\xbf\x7c\x50\x68\xfd\x07\x43\x82\x42\xda\x0f\x81\x46\xfa\xfd\xe1\x3a\x10\x84\x2c\x3b\xc8\xf8\x20\xfe\x11\xf4\x7c\xb9\x88\xaa\xc5\x19\xeb\x6e\x90\x3c\x90\xf3\x9d\x26\x44\x61\x61\x29\x39\xa7\x24\x8f\x1d\xa2\xbf\x7f\x63\x0f\x79\x8d\xd6\x07\xd2\x75\xd0\x78\x90\xe8\x7f\xe6\x22\xbc\x9f\xe0\xba\x05\x9a\x39\x34\xfe\xe2\x30\xea\xf5\xc2\x08\xea\xf5\xbc\x9a\xe1\xf1\x67\x4f\x45\x5b\xe9\xbf\x31\x52\xff\xf0\x2f\xfd\x07\xcd\x83\x0a\xdb\x0f\x7f\x5d\x66\x84\x7e\x8a\xae\x0b\xa7\x2b\xc3\xe7\x09\xfa\xba\xb1\x86\xc4\xb0\x9b\x5c\x17\x4f\x74\x91\x73\x75\x94\xc4\x46\x3c\xb2\xde\xd8\x20\xf4\xe3\x3b\xf5\xff\x6f\x67\x20\xec\xa3\xf9\xa4\x9b\xe3\x38\x0b\x6f\xbf\xe6\xc2\xe3\xa2\xe6\x2b\x17\x56\x70\x57\x9e\xe7\xc6\xeb\x0b\xa5\xe1\x3c\xd8\x57\xa9\x28\x95\x33\x13\xd7\x98\x2e\x07\x7e\xff\xbc\x1c\x97\x13\x0b\xcf\xa6\xb2\xe3\x3b\xc1\xcc\x56\x6e\xfc\x7e\xfa\x26\x0e\x7e\x3a\x0f\x23\xcf\xff\xbf\xf4\x1f\xb4\x1f\x00\x8d\xf4\xfb\x12\x54\xfd\x47\xc9\xae\x1a\x9e\x57\xea\x7a\xca\x5e\xec\x6d\x8d\x28\x1f\x29\xdc\x7f\x8d\xcb\x78\x35\x8e\x97\xfb\xd4\x6e\x3c\x3f\x70\xad\x3d\x89\xaf\x79\x9c\x4e\xc5\xab\x11\x62\x72\x72\x36\x35\x0b\x21\x34\x50\xca\x7d\xab\x4b\x00\xa1\xcf\xd2\x7c\xd8\x5f\xb4\x7d\x83\x10\x7e\x1e\xba\xb7\x41\x64\x37\x1e\x3b\x73\xc4\x6f\xe1\xf3\x7e\x50\xa6\x1d\x80\x7b\x4e\x71\x24\xe3\x08\x00\x4f\x49\xe1\x16\x86\x35\x00\x37\xb3\xe0\xb0\x18\x5e\x87\xc9\x79\xc7\x58\x07\xc0\x63\x9f\xc5\xc6\x68\x06\xe0\x39\x99\xb1\x42\x08\x3b\x64\x9e\xe2\x17\xc2\xcf\xe7\xa9\xf2\x42\xd3\xe9\x3c\x0c\xf6\x41\x89\x18\x1e\xdf\xdf\xf5\x1f\x7f\x22\x95\x17\x36\x0e\x09\x7c\x1f\xc4\x25\xab\x82\x7d\xaf\x78\x5b\xcc\xf7\xb3\x50\xf0\x9c\xbb\x1c\x0b\x85\x96\x07\xe2\xba\x11\x3e\xba\x0a\x7b\x9c\x09\x5f\xda\x3d\x17\xa1\xef\xed\xe2\xe3\xd2\x62\x10\xfa\x72\x62\x54\xf7\x65\x67\x84\x7a\x75\x47\xbf\x69\x68\x45\xe8\xfd\x0d\x69\xbf\x4e\x11\x84\xde\xdc\x64\x60\x25\x72\x8b\x2b\xa3\x15\x80\xe7\xe1\xad\x08\x39\x25\x00\x7e\xbd\x72\x29\x39\x33\x00\xfe\xb1\xb4\xef\x4d\xfe\x57\xb9\x17\x00\xfc\xcf\xce\xbd\x97\xbb\x0b\xc0\x7f\x2a\xfb\xa3\x9c\x1f\x00\x5f\xd3\xe9\x33\xf2\xcf\x00\x04\xb6\x9c\x9c\x21\x5b\x0e\xc0\x5b\x94\x9a\x29\x5b\x01\xc0\x7b\x28\xc5\x5c\xae\x03\x80\xaf\xec\x30\xbf\xac\x39\x00\x4f\xec\xdf\xe2\x1f\xc1\x7f\x8f\xe0\x81\x07\xf9\x50\xc2\x7b\xd3\xbc\xa8\x40\xa1\x00\xd6\x2e\x8a\xea\xca\x62\x5d\xc9\xa8\x97\x86\x38\x5e\x69\x69\x57\x7c\xbf\x24\x6d\x3a\x83\x1f\xa1\xaf\xb5\x32\xad\x61\x63\x39\xbe\xf7\x8e\x92\xe5\xdf\xd6\xc7\xb3\xb5\x8b\x5f\xb6\x22\x45\x82\x7f\x4c\xc7\x07\x39\x83\xbc\x24\xc1\x69\xcf\x23\xe5\x0e\xd4\x88\x0b\xdd\x7a\x2a\x25\xaf\xf0\xec\xae\xb0\xfb\xe3\x4a\x85\x09\x03\x4c\xa1\xac\x06\x35\x25\x53\x00\x91\x9b\xe5\x62\xca\x5e\x00\x62\xdc\x97\xae\x29\xb7\x01\x88\x4d\x3e\x2f\x82\xfb\x60\x49\x67\x73\xa8\x0c\x00\x88\x9d\xa5\x75\x2f\x69\x0d\xca\xb5\x00\x22\xe7\x8f\x2b\x2a\xb5\x03\x08\xcf\x4a\x49\x50\x6a\x04\x10\x16\x3b\xd0\xac\x74\x00\x40\x68\x49\x72\x99\xb2\x08\x80\xd0\xe5\xbd\x6b\x14\x3f\x01\x08\x7a\xfc\x87\xf8\x47\xe8\x20\x68\x1e\x94\xd6\x03\x88\x09\x53\x38\x9a\x3c\xb5\x48\xd9\xb1\x61\xdd\xa0\xfc\x31\x71\xec\x27\xa6\x28\xa2\x71\x99\xfd\xc3\xf7\x03\xca\xd3\xed\x62\xb8\x6a\x7a\xd6\xa9\xd6\x4f\x9c\xcc\xf7\xf9\xb5\xb8\xba\xea\xa2\xe3\xc2\x72\xcf\x95\xd4\x17\x6c\x6a\x11\x6b\x79\x74\x5b\x7d\xd5\xbe\x38\x49\xdd\x7b\xaf\xd5\xa5\xb2\xa3\xa5\x76\xde\x8e\x56\x7b\x5f\x2e\x20\xe3\x50\xff\x48\x5d\xba\x65\x09\x43\xe4\xd6\x42\xf5\xf6\x4f\xe3\x64\x0e\x56\xd4\x69\xe6\x03\xc8\xd4\x17\x7e\xd5\x5a\x0a\x20\x53\x45\xf7\x7b\x4a\x3f\xa6\xed\x07\x20\x5d\x9a\x7a\x41\xdb\x0d\x40\xea\x6b\xca\x1a\xed\x99\x00\x52\x4b\x0f\xa9\x6b\x07\x03\x8c\xfe\x96\x9c\xac\xd5\x0c\x20\x59\xb9\xd7\x43\xb3\x0c\x60\x94\x62\xfc\x66\xf5\xaf\x00\x62\xef\x76\xff\x54\xbf\x09\x20\xb6\x33\x36\x5c\x83\x0d\x40\x4c\xe5\x2f\xf5\x3f\xf2\xbc\x93\xf3\x2d\x46\x9e\x8a\x68\x3e\x58\xe9\x18\x85\xea\x2b\xd1\x30\x7e\x58\x57\x99\x57\x17\xa1\x2f\xdc\x46\xa3\x15\x3c\x39\x1e\xbc\x79\x6d\xe4\x69\x3a\x4a\xd0\xbe\xcd\xd3\x38\x6d\xfc\x0f\xb1\xe4\x16\x51\xe3\x33\xb3\x52\x46\x6f\x6e\x2a\x36\x56\x5c\x55\x23\xcb\xa8\x35\x31\x9a\x16\x67\xa0\xa8\x7a\xfd\x8a\xa1\x4f\x5a\xa6\x8a\xfc\xb5\xb1\x06\x5b\x8b\xd6\xaa\xb9\x96\xbc\xd4\xff\x74\x7b\x96\xba\x6d\x11\xd3\xc0\xa7\x4b\x50\xdd\xed\x42\xa2\xe1\x11\xe8\x51\x7d\x94\xb5\xc2\xe8\x02\xf4\xab\x7a\xa7\xb2\x99\x70\xc2\x0f\x55\xbe\x43\x9d\xc6\xe3\x00\x94\x0e\xef\x57\x33\xaa\x06\x50\x94\x4c\x7c\x63\x74\x14\x40\xfe\xf5\x9e\x35\x86\x39\x00\x72\x3c\x3b\xb9\x0d\xe5\x00\x18\xa1\xdb\xbf\x18\x58\x03\xc8\xf0\x6d\xad\xd3\xaf\x02\x90\xea\x8a\x9e\xa1\xf7\x08\x60\xf4\xd6\xc8\xeb\x7a\x81\x00\x92\xbb\xfe\x1d\x3f\xfd\x14\x28\x4e\x78\x5f\x05\xa2\x03\xa2\xf9\x60\x7a\x15\x8d\xe2\x05\x07\x64\x6d\xf1\x53\x62\xef\x28\x07\xcc\x8b\xbe\xda\xea\x76\x48\x9a\x89\xd0\xa3\x67\xce\xb3\x74\x7e\x09\xde\x6a\xd2\x70\xf4\x70\x78\x28\x75\xa3\x3a\xc5\x61\xff\xe4\x57\xf2\xd7\xca\x5a\xec\x67\x2e\x59\xa5\xaa\x7b\xf9\xa6\xed\xbb\x2d\x5b\x34\x7b\xf3\x99\x36\xb3\x0f\x1f\xd5\xcd\xc8\x19\xb0\x56\xca\xdb\x6b\x30\x31\x5b\xc7\x4a\xf5\x66\xa2\xe1\xa3\x0c\x4d\xcb\x7b\xed\x8d\x46\x72\xe9\xe3\xad\x3a\x21\xda\xe0\xeb\xe1\x08\xeb\x53\x90\xa6\xb7\x7b\xef\x17\xeb\x83\x50\xae\xfd\x3e\xee\x90\xcd\x5c\xa8\xd7\x7a\xb0\xe3\x96\xd5\x0d\x78\xaf\xbe\x7c\xeb\x53\xab\x67\xf0\x55\x6d\x7c\x74\xbf\xe5\x05\x00\x95\xb1\x91\x09\x96\xcf\x00\x94\x97\x6c\x9c\x62\xf1\x02\x40\xf1\xf4\x3a\x75\xf3\x68\x00\x79\xa7\xb5\x07\xcd\xfc\x01\x64\x33\x57\x95\x98\xe6\x03\x30\x5c\xfe\xcc\x03\x1d\x3f\x7d\xfe\x95\xdb\x86\xc7\x4d\xf3\xc1\xce\x78\xdf\x76\x5f\x98\x3b\x5e\x05\xe9\x6a\xf6\xc1\xc7\xcf\x23\x27\xe2\xa7\xd9\x07\x65\x53\x93\x44\x26\x22\x54\xb7\x7b\xf2\x4d\xd5\xf1\x02\xec\xe5\xd1\x7e\xfa\x96\x46\x52\xfc\x85\x27\xbd\x4a\x3d\xd5\x55\xcf\x9d\x73\xf2\xa8\x08\x2a\xd3\x31\x3d\x7d\x7e\xfc\x83\x75\x7c\x86\x19\xc7\xbf\x8d\xed\x48\xdc\x67\xfa\xeb\xf0\x0e\x37\xce\x2c\x6d\x4b\xb4\x5f\xc3\x25\xa5\x3c\xd4\xea\xf3\xde\x32\xe7\xc7\x8f\x76\x5a\xa7\x26\xa4\xb9\x48\xf7\x7d\xb6\xaa\x89\xfd\xec\xf2\x10\x1c\xcc\x53\xa3\x8f\xba\xaa\xc1\x62\x93\x1d\x1b\x73\x5d\xbc\x60\xaf\x21\xd7\x7a\x79\xa7\x16\x28\xd0\xed\x59\x7d\xcc\x29\x00\xea\xb4\x17\x84\x7f\x76\x92\x80\xfb\x5a\x73\x56\xe4\x3a\x6a\x41\xaf\xba\x43\x98\xb6\xc3\x31\xf8\xae\x26\xb2\xec\xb2\x3d\x2f\x80\xf2\xfd\x50\x51\xdb\x7d\x00\x8a\x4b\x17\x7f\xb1\xcd\x00\x50\x58\xf7\xe7\xf8\xa7\xeb\x5e\x85\x20\xad\x03\xb2\x27\x48\xf1\xa1\xbd\xad\x93\xb0\x7b\x68\xe7\xc7\xe9\xd8\xef\xa0\x75\xc2\x6c\xbc\x9e\x7b\x67\x33\xe5\x13\x52\xd3\xb3\x50\x91\xf3\x01\x42\xa5\x2d\x0b\x83\x65\x5f\xf2\x48\x17\xa8\xcf\xad\x32\x9c\x3b\x6a\x77\x46\xc7\xac\xb3\x2e\x5b\x94\xaf\xa7\xcc\x0e\x08\x98\x16\x65\xd0\x9d\x74\x7d\x6a\xe3\x72\x0f\xf3\x98\x38\xad\xc9\xc7\x76\xf8\xd8\xac\x88\xb9\x39\xf1\x58\xea\x0a\x07\x99\xa8\xd9\x7e\x9c\x97\x7f\x8c\x09\xd9\x50\x34\xe1\x75\xf3\x5c\xa7\xfd\xeb\x74\x26\x6c\x7d\xff\x6c\xcc\xbb\xd5\x6f\x26\x3c\x65\xde\xb1\x6f\x0e\x3b\xe5\xd3\x01\x52\xd6\x1c\xa1\x6d\xde\x21\x30\xc1\x2c\x2f\x78\x87\xd7\x53\x58\x66\x22\xb2\xf8\xb6\xc7\x0b\x48\x30\xd4\x5a\x70\xdf\xfd\x23\x9c\xd1\x5b\xbf\x20\xcc\x5d\x11\x2e\xe9\x4e\x9c\xb7\x7e\xec\x21\x78\xa8\x99\x10\xf4\xc9\x6d\x32\xbc\x55\xdf\x35\x47\xdc\x4d\x0f\x7a\xd5\xf6\x05\x26\xbb\x9a\x00\xa8\xec\xfd\x1d\x3f\x7d\xfe\x55\x86\xd5\x3b\x80\x1b\x5e\x2d\xfd\x71\x7c\x22\xf6\x33\xe8\x59\x32\x1d\xf3\x94\x1d\x15\xf3\x30\x31\xfc\x70\x5f\x30\xde\xcf\xdd\x74\x63\x39\x3e\xbe\xd1\x16\x8e\xfd\x41\xae\x04\xac\xc6\xeb\x97\x79\xcc\x88\xd9\x92\x77\x11\x4a\x0f\x5e\x25\xae\x39\x49\x34\xfa\x50\x74\xd8\x04\xdb\xaf\x0a\xe3\x76\xeb\x2e\x39\xe8\x7b\x48\x8f\x33\xca\x6c\xa1\xef\x02\x05\xab\xbe\x35\xf3\xe7\x3d\xda\xd4\xea\x70\x75\x19\x04\x15\x1f\xa8\x73\xbe\x17\x6c\x37\x3b\xe3\xfc\x75\x37\xc7\xf9\xef\x67\xcd\xa8\x8d\x1d\x5b\x18\xc4\x0c\xcc\xed\xd8\x38\x76\xde\x9c\xb1\xb3\xb8\x99\x21\x2e\xbd\x81\xab\x67\xf2\x32\x4b\x1c\x6e\xcc\xd8\x1e\x90\xc3\x64\xda\x48\x04\x68\xf8\x5b\x82\x9e\xc5\xb6\x69\x6d\xd3\x16\xc3\x38\xb3\xe0\x69\xe3\x27\x33\x21\xc4\x78\xd6\x94\x93\x93\xc4\x61\x8f\x81\xc1\xe4\xf3\x7e\xcb\xe0\xb4\x6e\xcb\x64\xde\x09\x77\xa1\x58\xbb\x6e\x62\x8f\xb7\x07\xdc\xd7\x38\x37\xf1\xb0\x57\x34\x3c\x55\x2f\xff\x33\x7e\xab\x5e\x0a\xdd\x29\xfd\x4f\xea\x64\x7c\xdd\xe8\x36\xa2\x56\xc7\x5e\x08\x84\x62\x36\xe1\xa1\xe0\xca\x7a\x16\xd6\xcf\xa1\xfc\x60\x2a\xdb\xa9\x3e\x41\xc5\x1c\x51\x98\xb7\xcb\xc9\xdb\x8a\x5f\x3f\xa9\xbf\xdd\x8d\x6f\x03\x42\x07\xf9\x63\x6e\x2a\x46\x09\x78\xec\xda\x1a\xed\x64\x36\x5f\x66\xf3\xa6\x09\x9b\xb6\xb9\x2f\xd3\x34\x5a\x9e\xb0\x8e\x73\x56\xb2\x99\xef\xfc\x81\xd5\x77\xd6\xbc\xb5\x93\x9c\x25\xbd\xea\xd0\x5e\x0d\x87\x3a\xff\x77\xe1\xae\x67\xc5\xc7\x2c\x9b\xa2\xb7\x52\xa5\x2a\xdb\x89\x6d\x62\xc3\x8a\x2b\xcf\x8b\xc7\xb8\xfb\x7d\x5a\xa9\xc1\x7c\x62\x1f\xe7\x7b\x64\xe9\x2b\x90\xb5\xea\x9a\xf0\x3a\xf8\x1e\x8c\x33\xdf\x31\xc1\x79\x41\x1d\x2c\x31\x99\xe3\x73\x64\x5e\x29\x44\x1b\x2d\xf1\x56\x99\x1b\x0c\x29\xfa\x1f\xbd\xd4\x66\x7f\x83\x0b\xba\xf1\x9e\xc2\x81\x7b\xe1\xa6\xb6\xa1\xc7\xb5\xe9\x47\xe0\x81\xe6\x2a\x8f\x8f\xfe\x3a\xd0\xaa\x11\xe3\x71\x7e\xca\x43\xe8\x54\x37\xfe\x3d\xfe\x47\xc4\x1f\x3a\x1d\xf7\x07\xf9\xd0\xbc\x10\x8f\xff\x76\x51\xaa\x3f\xc4\x83\x0b\x11\x78\xfe\x68\xb8\x16\x89\xd7\x33\x2b\x8d\x62\x70\x1d\x5c\x4e\x8a\xc5\xab\xcb\x67\x81\xe2\xc9\x4f\x74\x25\xe2\x5d\x67\xc9\xaa\xfb\x0c\x59\x18\x27\x9a\x9c\x2c\xdd\xc9\xb1\x7e\x63\xce\xde\x95\x7a\x6b\x24\xce\x2f\x7b\x1d\x6f\xea\xec\xa3\xac\x32\x67\xff\xae\x6d\xfe\x8b\x0c\xac\xa7\x85\xc4\xd6\xaf\x5c\x68\x7a\xc5\xb7\x6b\x47\xd2\x1e\x4d\x8b\x05\x9e\xcf\xb6\x47\x67\x1e\xb5\x42\xe3\x0d\xb6\x6d\xac\x9c\x6d\x15\xe1\xf6\x32\xe6\xf1\xd3\x18\xcb\xb3\x6e\xd3\xb7\x29\xfe\xac\x37\x9f\xe2\x66\x17\x35\x0e\x56\x99\x70\xbb\x36\xad\x17\x86\x03\x86\x7c\x2e\xab\xd7\x54\x43\x91\xee\x7d\xd7\xa8\xf0\x70\x28\xd6\xcd\x77\x2e\x5e\xb1\x0c\xee\x6b\xe5\xb9\x4c\x59\x7a\x19\x5a\x35\x9f\x38\xb7\x86\xbc\x83\x2e\x0d\x43\x67\x9f\x45\x37\xe0\x9b\xda\x54\x27\xbf\xf9\xef\x01\x54\x6c\xc7\xe4\xcc\x9b\x0d\xa0\xcc\xfd\xbb\xfe\xa9\x71\x4f\xc7\xdf\x93\x14\x8c\xd7\x27\x9f\xdf\x59\x85\xf7\x7f\x3f\x68\xa7\xfa\x23\xd5\x77\x6d\xc3\xfc\x75\x79\xca\x4e\xcc\xcb\x5c\x36\x48\xa4\xfc\x0f\x2a\x29\x7d\xc0\x49\xa3\x03\x38\x5f\xfb\xf3\x53\xf0\x6a\x63\xec\x52\x8a\x2f\xdf\xb8\x33\xed\xa3\x70\x18\x42\xcb\x4d\x4f\xa8\xab\x59\x0b\x4d\x08\x3a\x72\x2c\xc7\xe6\x07\xe3\xd0\xc4\x97\x47\x8a\xfd\x9e\x6b\xca\x7a\xaa\x1f\x7e\xb7\x34\x58\x27\xdd\xf5\xd9\x61\x91\x58\xd0\x57\x76\xfc\x70\xc8\x38\x5d\xc8\x60\x95\x5d\xd0\xc1\x85\xd7\x78\x0c\xae\xdb\xd8\x1f\xe8\x7a\x7c\xc2\x80\xc3\xfa\xcc\x81\x6f\xdf\xcb\x75\x93\xac\x37\x24\x7e\x82\x07\x5a\x91\xd6\xfc\x71\xb3\xe0\xbd\x86\xa6\xf5\xaa\xed\xcb\xa0\x4f\x5d\xd9\xda\x6e\xcb\x7b\x00\xd5\x4a\x6b\xfd\xc8\x65\x00\x2a\x9e\x36\x7c\x1b\xd8\x00\x54\x8c\xad\xce\x45\x48\x00\x28\x36\x5a\xdd\x5d\x1d\x06\xa0\xa8\x63\x75\x6d\xe5\x54\x00\x05\x6d\xab\x8a\x65\xf7\x00\xe4\x95\xe8\xf3\x0f\x2e\x33\x70\x3e\x68\xfd\xd7\x8b\xf6\x08\xbc\xda\xfd\xd0\x3f\x1a\xaf\x6a\xd6\xf9\xec\x6c\xa2\xea\x3f\x01\xd7\x7b\x51\xef\x7e\xec\x0b\x93\x6b\x77\x04\xaf\x32\x9f\x7a\x79\x1c\xd7\xc3\xa1\x62\x8a\x5d\xd8\x3d\xf5\x34\x66\x15\x36\x89\x66\xe3\xf9\x24\x14\x9d\xc3\xfd\x10\xe6\xfa\xe5\x4a\xca\x16\x73\x7b\x4d\x96\xcd\x71\x35\xf9\x24\x71\x74\xec\x83\x33\x7a\x9e\xfe\x0a\xbe\x8e\x01\xd9\x97\x17\xbb\x2a\xdb\x5a\xaf\xce\x36\x88\x39\xae\xea\x6f\xf6\x29\x6b\xc3\x09\x6f\xb5\x28\xe3\xbd\x99\xbf\x4a\x5e\xa8\xed\x36\xac\xcb\xf4\x6f\x09\x56\x7d\x66\x38\x23\xd3\xf5\xab\x9a\xf2\x0e\xc3\x93\x69\x0d\x00\x8a\xbb\x0d\x83\x8e\x4c\x01\x90\xaf\x34\xac\xd9\xcf\x01\x20\xaf\x6d\x98\xb2\xb7\x06\x40\xce\xc3\x28\x65\xcf\x0d\x00\xb9\x64\xe3\xe9\x3b\xd5\x00\xe4\x82\x0c\x83\xb6\xcb\x00\xc8\x1c\x32\xda\x1a\xbd\x17\x40\xe6\xa6\xe1\xba\xc8\x76\x00\x69\x5d\xc3\xe6\x0d\x62\x00\x52\x79\x90\x15\xb0\x02\x61\xff\xa7\x65\x98\xa7\xe9\x38\xb3\x1e\x63\x4b\x52\x0c\x66\xd7\x1a\xc2\xe2\xf1\xee\xc1\xca\xb9\xfb\x30\x7b\x56\x64\x70\x18\xb3\x29\xe7\xe2\x8e\xe1\xb8\x32\xaa\x4e\xe3\xf1\x91\x62\x91\x85\x79\xef\x84\x24\x8a\x27\xdf\xd2\x7e\x1e\xfb\x61\xaf\xf2\xbb\xe8\x8d\x70\xff\x8b\xcb\xf8\x7e\x6c\x8a\x5b\xc9\x32\x71\x19\x84\xc6\x09\x16\x77\xea\x8c\x12\x7c\x62\xd3\x58\xd4\xea\x3a\x57\xb2\xd0\xf4\x47\xd1\xe5\xa0\x46\xa9\xf7\x06\x17\x8a\x0e\x46\x1d\x94\x29\xd4\xd9\x5c\xe4\x71\xd4\x8a\x31\x53\x73\xef\xe5\xaa\x22\x6d\x86\x8e\xfa\xc7\xcb\x93\xee\xed\x95\x19\xa3\xbe\xfb\xd2\xc7\xcf\x6b\xa4\xb8\xd4\xb5\xf3\x0d\x01\x46\x05\x69\xec\xc9\xde\x05\x20\x39\x43\x63\xde\xa9\x14\x80\x51\x3b\xd4\xe3\x8f\xff\x00\x90\x90\xd4\x58\x9a\xc2\x01\x20\xb1\x4f\x6b\xe5\x81\x85\x00\x92\x6a\x9a\x4a\x49\x8a\x00\x12\x7a\x9a\x91\xf1\x79\x00\x12\x12\x1a\xf9\xbb\xfa\x00\xc4\x6e\x6a\x89\xed\x58\x05\x20\x7e\xe8\xe3\xd5\x65\x8b\x59\xbf\xef\x75\xe8\x26\xcc\x8a\x3c\x32\xdc\x81\xc7\x75\x43\x0b\x75\xde\xaf\x27\xed\xc7\x75\x72\xe5\xdb\x31\xcc\x36\xe5\xcd\xa1\x74\x40\x99\xde\xd9\xf8\xf8\x58\xd3\x39\xcc\x42\xee\xf3\x29\xc0\xf7\x97\x3b\xae\x52\x3e\x29\xeb\x8f\x16\x77\xb0\x70\xc9\xc4\x52\x9c\xd7\x80\xed\x15\x78\xdc\xb8\xbc\xad\xbe\xca\xce\x86\x90\xf5\xa3\xea\x8f\x8a\x2f\xb9\x27\x18\x2c\xac\x8e\xb3\x1d\x10\xda\xa7\x75\xba\xfa\xe5\x0c\x39\x11\x03\x35\x85\xea\xd7\xeb\x96\x8a\x0a\x2b\xd5\xd4\x88\x1e\xf8\x28\xea\xa8\x30\xb7\xba\xe3\x42\x8c\xc8\x01\x79\x99\xea\x6b\xcd\x3a\xc2\xa1\x72\xe7\xab\xe7\xf7\x22\x41\x6b\xb9\xdb\x15\xb6\x00\xfc\xc9\xf2\x72\x45\x91\x00\xfc\xad\x0a\x7a\xf9\xa7\x01\x04\xd9\xe5\x8f\xe7\x6c\x07\x10\x50\x90\xff\x9a\xf9\x0a\x40\x60\x92\xc2\xab\x53\xd7\x00\x04\xf5\xe5\x9d\x53\x67\x00\xf0\x0b\xc8\xdf\x4c\x89\x02\xe0\x0f\x55\x50\x39\x98\x02\xc0\x1f\xaf\xe0\xb9\xef\x23\x00\xff\xba\xd7\x3d\x9b\xf0\x2e\xf9\x27\x53\x63\xf1\xf9\x6c\x62\xee\xc5\xd7\xc9\xaa\x77\x87\xb1\x1e\xa6\x24\x23\x0d\xf3\x17\x05\x9d\x59\xf8\x7a\x98\x35\x2a\x07\xfb\x80\xa4\x42\x01\xbe\xbf\x3c\x60\x74\x09\x8f\x83\x38\x9f\x2b\x7b\x58\xb8\x79\x6a\x19\xae\x8f\x95\xfd\x94\x4e\x60\xde\x8b\x6a\xfc\x7d\x13\xed\x29\x5d\x88\x8d\xfd\x6d\xcc\xc6\xe8\x29\xdd\x4d\x1a\xb5\x0f\x21\xe5\x86\xbb\xb9\x26\xf6\xdc\xab\xe5\x3d\xee\xad\x98\xe4\xcc\x7d\x9a\x31\xfb\xbe\x50\xb8\x04\xb7\x80\xf4\x9b\xfb\xdb\x93\x54\x39\xc3\x19\xe6\x0f\x46\xe7\x95\x20\x24\x75\xf7\x7e\x41\xa3\x1b\x42\x92\x0b\xef\x87\xbd\xef\x44\x48\xdc\xee\xf6\x16\xd6\x3d\xa0\xe8\xf8\x1a\xcc\x98\x0a\x1d\xaf\xb0\xc6\xe8\x5d\x82\x99\x44\x81\xf3\x97\xf0\x3a\x05\x9f\x60\x01\x7e\x76\xe0\xbb\x71\x0e\xdf\x3b\x73\x97\x66\xe1\x75\x07\x6e\xab\x74\xcc\xa4\x70\x26\xa6\x61\x9e\xbc\x35\x65\x27\xa6\xcf\xee\x1c\xa0\x7c\x41\x6a\x8e\x1d\xc3\x75\x51\x3a\x3b\x1d\xb3\x41\x05\xcd\xd9\xd8\xf7\xfd\xcc\xc9\x7c\x3c\x1f\x9e\x8c\xbd\x84\x75\xc6\x87\xaf\x97\xe0\x7d\xff\x89\x62\xe5\xf8\xba\xba\xad\xef\x06\xbe\xaf\x5a\xd7\x41\xf5\x51\x09\x7d\x59\x87\xc7\xd1\xcc\x97\x4d\xb8\xdf\x90\x67\xd2\x5d\xfc\xfd\x66\xd3\x1e\xe1\xef\x91\xd1\x6d\x8b\x63\x1b\x87\xd0\xa8\xbc\xe7\x57\x34\xd4\x11\x12\x73\x6d\xcf\x72\xe7\x43\x48\x68\xc1\x8b\xc4\x60\x25\x84\xf8\x4d\x5e\xdc\x8c\xbd\x87\x10\xcf\xc3\x97\xd3\x33\xe5\x11\xe2\xf2\x7f\x19\x5d\x75\x14\x21\xf6\xdb\x2f\xcd\x3b\xaa\x10\x42\x02\x6d\x1f\xa0\x0f\x21\x34\xeb\x3e\x5e\x4f\x42\xa8\x91\x30\x68\x37\xf1\x3a\x05\x32\xbf\x9e\x4c\x1d\x97\x11\x9f\x87\x62\xaa\x33\x43\xcc\x45\xf2\xf9\x5c\xb2\x43\xff\x6c\x34\x5e\xd7\x70\xdf\x8f\x7d\x5c\x6a\x0f\xa7\xce\xc6\xf1\x3f\xcd\xc0\xba\x87\x8b\x77\xce\x8d\xa6\xae\x03\xd4\x6e\xe9\xf4\x39\x25\xb8\x8b\xc2\x48\x1d\xd0\xce\x26\x2a\xee\xcd\x88\xda\x45\x1d\x9e\x79\x1b\xcf\x97\x0b\xbb\xa9\xb8\xfd\xc5\x1e\xe2\x79\xc2\xf5\x31\xc5\x36\x1a\xb4\xbf\xc0\x75\x32\xca\xbf\x0b\x8f\x3f\xb6\xdd\xdd\x02\xe2\xf8\x13\xdd\x15\xd6\x78\xa7\x79\x4f\x6d\x20\xfe\xcb\xbd\x53\xa2\xf0\x88\xeb\xad\xa2\xae\x38\xbd\x55\x65\x6e\x78\x26\x93\x7f\x86\xf9\xbb\xee\x58\x8a\x49\x7f\x49\x7c\x1c\x1e\x13\x46\xf9\x5e\x1e\x85\x4d\x44\x17\x72\x93\x30\xcc\xd7\xc9\xce\xec\x6b\xe3\x28\xbc\x32\x11\x86\xe8\x62\x1a\xc4\xa9\xba\x2f\xff\x99\x85\x7f\xff\xa5\xf7\xe7\xf1\xbc\x78\xfe\x62\x21\xbe\x5f\xce\x6c\xa0\x74\x01\xa9\x70\x1d\xcf\x17\xb4\x0e\x28\x3e\xb6\x01\xf7\xc9\x88\x39\x7a\x1b\xeb\x22\xd6\x89\x53\x71\x2f\x5d\xf7\x10\xf3\xc1\x73\x8d\x5a\x31\x4f\x3a\x69\xc2\x0b\x3c\x5f\x38\x45\x75\xe2\xeb\x8a\xde\xb4\x0f\x78\x17\xbb\xb8\xcf\x67\x7c\x1f\x86\xd0\x80\x9d\x20\x56\x0a\xfc\x38\x6e\x26\x85\xf0\x95\x7b\x1a\xde\xd1\xf0\xcb\x77\x1d\x66\xe2\x7f\xa5\x50\x3c\xe6\xaf\xf7\x45\x94\x3f\xbf\x0f\xa5\x7b\x60\x7a\xfd\xc2\x23\x95\xf6\xb9\xe8\x24\x79\x68\xcb\xfd\xcf\x79\xb9\x45\xf4\x22\x55\x89\x14\x96\xe3\xf7\x2b\xa2\x88\x0e\xac\x2c\x1f\xdf\x0f\xe4\x1f\xa5\x7c\xa0\xce\x1c\xab\xc0\x67\xe3\xa4\x43\x35\xd6\x4f\x1f\x0e\xad\xc3\x3e\x74\x89\x4b\x9b\x30\x7b\xb8\xd3\xf7\x3e\x1e\x3f\x51\xc6\x0f\x31\x1f\xbc\x5a\xf9\x29\xee\xbf\x19\xdc\xd4\x86\xef\xc7\x66\xe9\x76\xe2\x68\x7c\x5d\x28\x16\xd1\x7e\x75\x2f\xce\x9f\x76\x13\xa5\x0b\x11\x53\x60\x2a\x50\x79\xf8\xb7\x0e\x24\x8c\xe8\x62\xf6\x90\xfd\xee\xd9\xe4\xc9\xbe\x8a\x74\x7e\x6c\x1f\xb2\x5f\xff\x37\x9f\xdf\x6d\x34\x22\x2f\x69\xff\xc8\x8b\x35\x0c\xd1\x0b\x5d\x3d\x42\xf5\xc3\xbb\x90\x59\x82\xe7\xb3\x1c\xdf\x1b\xf8\xbc\x65\x78\x12\x1d\xd0\x1a\x4a\x07\x94\x9c\x7c\x0f\x7f\x6e\x8f\xd2\x43\x7c\xff\x18\xd3\xf6\x0c\x5f\x0f\xd7\x3f\x69\xc7\x51\xac\x68\xed\xc4\x7a\xa0\x05\x7b\xde\x61\x5e\x7c\xba\x1d\xd5\x2f\xca\xcb\xef\x33\xbe\x8e\x58\x3f\x1a\xc0\xcf\xef\x9a\xbf\x00\xfb\x6a\x0c\xd5\x3f\x0c\xea\x40\xb8\x28\xf4\xd8\x48\x21\xad\x03\x89\x26\xba\x98\x14\xd2\x01\xef\x22\xd1\x7b\xd0\x3e\x20\x1d\x84\xc7\xa5\xbe\x99\xf6\x89\xe9\xab\xa0\xf0\xc3\x62\x92\x97\xe0\x7f\xe4\x05\xfb\xe4\x5c\x4e\xba\x46\x66\x8d\x1a\xac\x8b\xce\x58\x4e\xcd\x6f\xa9\xc5\x77\xf1\x3c\x78\xc0\x88\xd2\xc3\x24\x86\x3d\x29\x62\x61\xec\xdc\xe7\xb8\x1b\xc7\x66\xff\x4e\x5c\x07\x6b\xda\xbb\xf0\xfb\x4b\x37\xf4\x60\xbd\xf9\xdc\x9d\x9f\xb0\x8b\xcb\xb4\x03\xdf\xb0\x7f\x90\x7b\x13\x13\xd7\x1b\xed\x8f\xa3\x46\xfa\xc8\x08\x49\xc0\x9f\x3a\x10\x72\xde\x07\x75\x20\xc4\xf7\x62\xcd\x79\x0a\x13\x88\x33\x22\xcd\x6b\x97\x10\x7f\x90\xdb\xc4\x21\x90\x52\x66\x0d\xf7\x75\x60\x8d\x33\x0a\xff\xd1\x27\x88\xe4\x25\x9f\xff\x26\x9e\x17\x69\x1d\x14\xad\x03\x3a\xb2\xff\x31\xfe\x6b\xfb\xe0\x39\x9e\xff\xf6\x98\x53\x3e\x50\xdb\xae\x77\xe1\xeb\xe2\x26\x05\xea\x7c\xaf\xca\xa7\xd4\x04\x21\xcd\x03\xf8\xba\x19\x14\x4c\x9d\x15\xda\x17\xc6\x85\xf8\x64\xd0\xfa\x07\x65\xf2\xd7\xf9\xee\x0f\xc9\x03\xe9\xff\xa2\x7a\x92\x42\x5a\x07\x32\xe5\x21\x1a\xc6\xf7\x53\x4f\x6e\xbf\x75\x0f\x39\x84\xd7\x2f\xfb\x40\x61\x23\xc1\x56\xd2\x31\xf3\xbd\x09\xfa\x43\xe7\x30\x44\x57\xd6\x34\x34\x2f\xb4\x0e\x2a\xbd\xac\x05\x67\xfb\xf8\xeb\x36\x5c\xbf\xfb\x37\xbc\xc0\xf5\x11\xff\xe1\x0d\xce\xc3\xce\x35\xbd\x58\x0f\xb6\xf9\xd6\x67\xfc\xaf\xd7\x47\x0e\xe0\xe7\xea\x95\xa4\x0a\x17\x98\x52\xb3\x77\xc0\x26\x18\xa6\x03\xa1\xfb\xa1\xd0\xfa\x30\x05\x76\x92\x87\xb5\xf0\x87\xfe\x81\xd6\xc3\x58\x12\xff\x0e\x5f\xa9\xe1\xe3\x63\x1d\xe9\x97\x32\xd2\x17\xe5\x3c\xf1\x85\xa1\xfd\x3f\x68\xfd\xc7\x03\x52\x57\x83\xfa\x8f\xdc\x7f\xe7\x25\x63\xff\x23\xfc\xe0\x9d\x3a\xbf\x0d\xeb\x82\x0e\xdf\x7a\x8d\xef\x93\xf6\xf9\xbc\xc7\xd9\xdd\x9d\x4f\xe9\xfd\xb6\x4f\x1b\xc0\xe7\x7f\x33\xa2\xe2\x1d\xa9\x03\x99\x4d\xfa\xdf\xd0\x7a\xa0\x71\xa4\x8b\x17\xad\x8b\xd2\x5b\x40\xa1\x1c\xf1\x53\xe1\x5d\xf6\x67\x1e\x68\x1d\x88\xf1\x5b\x0a\x47\xf6\xc7\x09\x23\xb8\x85\xc4\x47\xeb\x83\x68\xbd\xd4\xa0\xfe\x83\xe8\xa5\x6e\x14\x53\x48\xeb\x3f\x5e\x90\x3e\x32\xef\x49\x9e\x99\xde\xbf\xf3\xc1\xfa\xcf\x9e\xf0\xf4\xff\xf2\x01\xa1\xf9\x29\xda\xdf\x60\xa4\x0e\x84\xd6\x4f\xb8\xe9\x52\xe8\x4d\x5e\x0f\x58\x44\xe1\x42\xf2\xfd\x2b\x89\x8f\x41\x34\xf9\x7c\x02\xe1\x1c\x53\xc9\xef\x38\x4f\x7c\x23\xca\x09\xbf\x77\x87\x7c\xbe\x93\x70\xb8\x3f\x67\x21\xf4\xf5\x04\xf5\xff\x34\xdf\x4b\xf7\x81\x79\x4c\xb8\x47\x9a\xf7\x6e\x22\x1a\x83\x5a\xc2\x7f\xff\xa1\xff\x70\xa2\xb0\x24\x03\x0d\x72\x87\xff\xd2\xc1\xfc\xaf\xfe\x17\x83\x7c\x3f\xd1\x51\x0c\xfa\xa2\xfc\x37\x1d\xc8\x87\xe1\x79\xf8\x97\x1e\xe6\xad\xef\xef\xdf\x4a\xf3\xbd\xaf\x89\x37\xc6\x48\xfd\xc3\x48\xfd\xc7\xa0\xff\x85\x0d\x85\x65\x5f\x29\xbc\x4a\xf2\xf9\x37\xdf\x83\x7f\xc5\x4f\xf7\xff\xa7\xf1\x5f\x3a\x10\x9a\xcf\xfc\x9f\x75\x20\x2f\x87\xe7\x21\x9f\xf0\x82\x7f\xf8\xa2\x38\x22\x04\xa3\xa8\xff\xef\xb9\x48\x21\xad\x07\x1a\xd4\x3f\x90\xfa\x68\xb8\x3d\x3c\xfe\x91\xfa\x8f\xab\x67\x29\xa4\xf5\x0f\x17\x2e\x0c\xc9\xc3\x7f\xe9\x03\xf3\x5f\xfa\xa0\xfc\x51\x17\x63\x49\xbd\xfb\x11\x9d\xc3\x2c\xc2\x8f\xd2\x3a\x90\x48\x87\xbf\xe4\x21\xe3\xb7\x1e\x66\x50\x07\x42\xea\xa0\xe7\x27\x42\x3f\x4e\x52\xff\xff\x3e\x6f\xf8\x78\x18\xd4\x3f\xd0\xe3\x80\x68\xb2\xaa\xf7\x90\xf8\x47\xea\x3f\x84\x29\x2c\x24\x3a\x21\x9a\xff\xfe\x5b\x1e\x46\xf2\xff\xff\x42\xda\x27\xe1\x5f\x3a\x10\x7a\x9e\x08\x24\xf5\xb1\x94\x9c\x93\x91\x3a\x10\xba\x1e\xb0\x2f\x4a\xc6\x6f\x0d\x4b\x2b\xf1\x8f\xe9\xb3\xff\xad\x8b\xa2\xfd\x81\x68\x5d\x18\xad\x7f\x18\xd4\x7f\x90\x79\xa0\xa2\xe5\x7f\x8b\x3f\xc7\xe4\x77\x1e\x46\xf6\xc1\xf9\xa3\x0f\x0a\xe1\x39\x07\xf5\x10\x23\xfc\x2f\xe8\x7f\x47\xcf\xa7\xf4\xbc\xeb\x41\xfc\x90\x68\x1d\x48\x08\xf9\x77\x1b\xc8\xfc\x12\x4f\x34\x1d\x27\xc8\x39\xbe\xc0\x9a\x1f\xa2\x11\xba\x99\x8a\xd0\xaf\x26\x84\x9e\x92\xb1\x3e\x10\x8e\xd0\x27\x4d\xea\xff\x5f\x92\xdc\xd3\xda\xa9\x46\xd2\xf7\xa8\x66\xea\xff\x31\x7e\xa2\xf9\xc9\x1e\xa2\x41\x1b\xa9\x7f\xa0\xe3\xa4\xf5\x1f\x83\x3a\x88\x11\x28\x33\x42\x37\x43\x7f\x0f\xad\x03\x19\x4b\xce\xcd\x08\x1d\x08\x5a\x47\xf2\xb2\xc7\x90\x3a\xff\xac\x3c\xfc\x5a\x8f\xd0\x85\x33\x08\xfd\xac\xa1\xc6\xf6\xf7\x8d\x54\x1e\xbe\x27\x21\xf4\x4d\xf9\xf7\x78\x68\x93\x1f\x5e\x07\xf4\x38\xa0\xaf\x03\x83\xe3\x9f\xd4\x4d\x21\xd1\xda\xe4\x55\xfd\x3d\xfe\xd3\x43\x74\x62\x83\xf1\xcf\x18\x11\xef\x48\xfd\xc7\x08\x1c\xa9\x03\xa1\xbf\xe7\x0f\x1d\x08\xb9\x4e\xd2\xd7\x8d\xb5\xac\xb1\x9c\x85\x50\x9c\x27\x42\x3f\xa3\x10\x4a\x0d\x40\xe8\x5b\x02\x42\xf9\x69\x08\xf5\x8f\x42\xa8\xba\x15\xa1\xcf\xec\x08\x3d\xe9\x46\xe8\xd3\x2a\x84\xbe\x4e\x45\xa8\x93\xd4\xd8\x43\xa2\xfb\x69\x18\x4d\xe9\x5c\x68\x1f\x24\x3a\xfe\x4b\xe4\x3a\x79\x71\x26\xa5\x7f\x39\x6f\x4d\x1d\x9f\x21\xd7\xa6\xd3\xa4\x7e\xd2\x49\x3d\xa5\x0e\xd1\x4f\xfe\x4b\xff\x40\xeb\x3f\x48\x3f\x8c\x41\x3e\x98\xc6\x41\x3d\x88\xfd\xf0\x71\x43\xd7\x85\x2d\x19\xff\x9e\x05\x14\xce\x3e\xc2\x7a\x6a\x46\x28\x9c\x35\xef\x95\x20\xb4\x53\x01\xa1\xfe\x6a\x84\x52\x7a\x10\xfa\xf4\x16\xa1\x3c\x59\x84\x7a\x45\xa9\x39\xfe\xc3\x7c\x84\x5a\x23\x11\x62\x3d\xad\xf6\x7b\x23\xf4\x9c\xe8\xc4\xee\xdc\x41\xf8\x0e\xbd\x86\x8d\x0d\xdf\xb1\x97\x76\xb2\x75\xb2\xf0\xb2\x02\x17\xe6\x28\xf3\x2d\xd9\xdd\xf0\x79\x7f\xc4\x81\xf7\x5f\x64\x3b\x71\xe0\x3b\xbc\xd3\x64\x7c\x9c\xe8\x60\xc3\xfb\x50\x8e\x99\xb1\xe3\xcf\x1f\x19\xe2\x1f\x35\x32\xfe\xe1\x7d\x30\xfe\x3b\xd2\x79\x12\x0b\x27\x79\x25\xf3\xa1\x09\xdd\xaf\xed\x2b\x15\xff\xf4\x35\x08\x0d\xe8\x20\xb4\x3c\x05\xa1\xbe\x29\x08\xc5\xac\x42\xa8\x27\x9f\xfd\xcc\xe1\x0d\x08\xbd\x53\xe2\x52\x39\xf7\x05\xa1\xd7\xf2\x3c\x92\xd7\x33\x10\x7a\xd9\xcc\xeb\xf2\x98\x17\xa1\x76\x1f\xbe\x0d\x9f\x27\x22\xd4\x12\x23\x80\x9f\xab\x6b\xc7\x0a\xe1\x9e\x1d\x65\x7d\xa2\xb8\x83\xe7\xa5\x50\x91\x7e\x5c\xf7\x4e\x22\xd8\x0f\x27\xfb\x95\x10\xbe\xa3\xcd\x78\x28\x8c\x9f\xa7\x4f\x25\x08\xe2\x3c\xd1\xba\x97\x23\x27\xf8\x71\x1f\xb6\x43\x63\xf9\xb5\x59\x98\xfc\x8d\xe7\x03\x9d\x07\x3a\x7e\x3a\x9e\x7f\xc6\x3d\x8c\x0f\x1f\x44\x5a\x27\x81\xb8\xee\x0c\x1d\x2f\x6c\x26\xda\x63\x11\x02\x11\xf6\x7e\x87\x66\x84\xfa\x39\xf8\x0a\x27\xd7\x23\xd4\xed\x28\x5c\x1f\x92\x8c\xd0\xeb\x67\xe2\x25\x9b\xe3\x10\x7a\x71\x48\xf2\xce\x01\x1e\x84\x9e\x89\x48\x7d\x3f\x73\x06\xa1\xc7\x86\x32\x4e\xe5\x61\x08\x3d\xf8\xcc\x88\x7c\xb0\x09\xa1\xbb\xbd\x32\xe3\xba\x7d\xd9\x8d\xea\x55\x65\xf6\x01\x70\x2d\xa6\xfb\x80\x15\x72\x30\x1e\x03\xf0\x8a\x9d\x9b\x22\x3b\x0e\x80\x77\x6b\x86\x2f\x23\x13\x80\xc7\x37\x8d\x9d\x71\x1d\x80\xc7\xf5\xd8\x3a\x59\x43\x00\x9e\xa2\x14\x75\x59\x5e\x00\x9e\xf9\x07\x3d\x19\x6f\x01\x78\x78\xf7\x8f\x62\x7c\x01\xe0\x1e\x48\x9c\xcc\x68\x02\xe0\xde\xbe\x67\xb5\x6c\x38\x00\x8f\xe9\x7f\x3c\xff\xe8\x3f\xc5\x4f\x3f\x15\x70\x1b\x50\x48\xfb\x85\xf0\xb7\x08\x6e\x43\x68\x40\x5f\xf4\xa5\x72\x33\x42\xbd\xec\xd2\xd6\xd6\x31\x08\x75\xee\x66\x34\x78\x37\x72\xf4\xb6\x71\xc9\x6d\x9e\xcb\xe4\xd1\x7b\x18\x2b\x1f\x16\x11\xc6\x2f\x79\x67\x85\x82\xfc\x9e\xdd\x82\x2d\x0d\xb5\x0a\xf6\x27\x4b\x84\x1b\x6b\xa3\x14\xac\x8a\x2c\x45\x47\x57\xab\x28\xcc\x6e\xdc\x22\x5a\x71\x7d\xbd\xc2\xe3\xce\x75\xa2\x07\xcb\xc7\x28\xd9\x02\x88\x64\x5c\x54\x52\x9e\x00\x20\xba\x21\xdb\x41\x65\x26\x80\xe8\xd7\xb4\x46\x15\x75\x00\x51\xc9\x94\x2f\x2a\x62\x00\x22\xab\x0e\xd9\x29\xdf\x02\x10\x6e\x18\xd4\xbb\x18\x2a\x9f\x07\x10\x82\x3d\x2b\x94\xb8\x00\x04\xd1\x2e\x37\xc5\x7c\x00\x81\x05\x3b\xd2\x14\xe3\x00\x04\x38\x63\x26\x2b\x20\x00\xbe\x71\xff\x43\xfc\x23\x9e\x86\x84\xc8\xee\x98\x11\xba\x90\x68\x19\xac\x07\xe9\x8b\x97\xef\x63\x7f\x84\x50\xd7\x61\xb5\x27\x32\x3f\xd9\xa6\x3c\x17\xd5\xb0\x35\x38\xc6\x53\xda\xa2\xaa\x35\xde\x35\x50\x20\xb7\xc9\x4f\x3b\x24\xe0\x81\xc8\xc5\x9b\x6b\xb4\x77\x2d\x9f\x2e\x31\xb1\x32\x48\xdb\x68\xdb\xb2\xd1\xdb\x4b\x75\xb5\xce\xa6\x18\xc8\x08\x17\x15\x68\x69\xe5\x3d\x60\x34\x17\xda\x68\xd6\xd7\xc4\xc8\xd6\x14\x2c\xd6\xec\x69\x63\xc8\x3e\xcd\x8b\xd5\xfa\x38\x10\xc7\x28\xcc\x70\xd3\x79\x0d\xc0\xf8\x71\xcc\x52\x27\x0e\x40\x46\xfa\x80\xa5\x8e\x1f\x80\x54\x4e\xe2\x32\x1d\x3e\x80\xd1\x0b\x77\x8f\xd5\x0e\x01\x90\x14\x89\x0d\xd3\xb6\x06\x18\x65\xbf\x2d\x43\xab\x03\x40\x62\xcd\x96\x17\xda\xe2\x00\x12\x06\x51\x7d\x1a\x99\x00\xa2\x3b\x36\x35\x69\x9c\x02\x10\x35\x5b\x9f\xa7\x2e\x03\x20\xbc\xe6\xbf\xc7\xcf\xd7\x34\x2c\x5e\x90\x25\x3a\x10\x8a\x17\xfe\xf6\x45\x0f\xfb\x95\xf6\xd8\x18\x5d\x62\xe1\x2b\x51\x33\xbc\x1e\xf7\xa4\xc1\x3a\x51\x5c\x11\xa1\x66\x4b\xab\xc3\xea\xc0\x27\x57\x33\xc9\xe2\xa1\x8d\xa4\xd8\xc5\xb2\x01\xcb\x09\xbe\x8a\xa3\xab\x2e\xa7\x58\x2c\x5e\xa8\x24\x8b\xf2\xed\xcd\xc3\x37\x5e\x53\xe4\x3b\xeb\x6b\xb6\x77\x9f\xbc\x4a\x68\xc6\x01\xd3\xf4\x6c\x59\xb5\xbb\x27\x4f\x9b\xb4\x5e\xeb\xd2\x18\x9b\x7a\xc9\x24\xa2\x25\x5a\xe3\xf4\xb1\x52\x93\x87\x1f\x2f\xaa\x97\x1f\x0c\x37\x53\x85\x2f\x6a\x5c\x09\xba\x66\xfc\x00\xca\xd9\xb4\xcf\xc9\xd6\x5d\xa6\xe7\x00\x14\x14\xa3\x16\x9b\xd4\x03\xc8\x49\x6f\x2c\x32\xd9\x04\x20\xcb\x58\x57\x64\x12\x04\xc0\x70\x88\x50\x36\xac\x07\x90\x9a\x1f\xde\x69\xc8\x06\x20\x59\xbe\xf2\xac\x41\x36\x80\xa4\xf1\xf2\xfb\xfa\x41\x00\x12\x3b\xfe\x8c\x9b\x8d\x7d\xf8\x79\x97\xfa\x82\x86\xf1\xe1\xd4\x2a\xe2\x17\x13\x4b\xbc\x3e\xf7\xb6\x69\x0c\x5e\xfd\x79\x1e\xe9\x4a\xf9\x3f\xeb\x8d\xc7\x4f\xc3\xf5\xcf\x3d\xa3\x79\xed\x11\xba\xce\xef\xe5\xa7\xc0\xcb\x5d\x51\xb4\xc9\x5d\xdd\x84\x5b\xec\x74\xee\x64\xb7\x75\x6e\x9d\x72\x7e\x19\x4b\x5d\x27\xce\x3c\xa8\x9c\x91\xea\xe7\xdc\x1f\xbe\x5c\x63\xcd\xa1\x0f\x4e\xfe\xbb\xe6\xe9\xb8\xed\xbb\xe0\xf8\x34\xcd\x45\x5f\x33\x21\xd1\x21\xa9\xc8\xc5\xa0\x77\xb7\xa2\xfd\x93\xa6\x4e\xc3\xe2\x9d\xb9\xf6\xd5\x6f\xc7\x18\xea\x6d\x77\x77\xa8\x87\xd3\x7a\x3d\x51\xb2\x0e\xaa\x50\xaf\x6d\x1a\xd1\xe1\xc0\x09\x1d\x1a\x67\x56\x7f\xb6\x33\x05\xa6\xea\x86\x95\xf7\x6d\xf9\x00\x94\x55\xc2\x46\xdb\x72\x01\x28\x99\x2e\xfd\x69\x23\x02\xa0\x10\xb7\x64\x9d\x65\x3c\x80\x6c\x50\xf0\x54\xcb\x6b\x00\x8c\x9e\x85\x87\x2d\xcd\x00\x64\x72\xe6\xaf\x31\x07\x00\x69\x91\x3f\xe3\x17\xf9\x32\xfc\xbc\x6b\xe1\xb8\x99\xf1\x96\xf8\x7c\x7f\x94\x77\xc1\xfb\xfe\xdf\x28\x79\xe2\x81\xf1\xa4\x84\xf2\x07\xb9\xe3\x37\x15\xaf\x9e\xde\xac\xa1\xfa\xc6\x94\x99\xcc\xc0\xab\x6a\x97\x24\x66\x5f\x91\x6e\x47\xe8\x8c\xe6\x0c\x5d\x1d\x39\x11\x83\xd4\xd0\x69\x87\x1c\x96\x31\x6e\x25\x27\x4d\x72\x9c\x78\x4a\xe3\xc4\xee\x33\x7e\x33\x82\x9b\xf4\x94\xb6\x45\x4d\xf0\x8f\xde\x69\xb4\x33\xca\xd2\xfb\xc6\xa1\x2b\xa6\x5f\xd7\xf3\x7a\xcd\xca\xd3\xb1\xb0\x5f\xb3\xc8\x53\xf9\xa6\xab\xa5\x73\xf8\x11\x8f\xca\x76\x73\x4b\xb9\x95\x76\x9e\x11\xcc\xe5\xe6\xc6\xa1\x72\x1e\x79\x10\x65\x94\xb1\x28\xdb\x7d\x2c\x64\xeb\x1d\x99\x1f\x31\xae\x1d\x6e\x6a\x87\xcd\x9d\xeb\x56\x00\xaf\x34\xe4\x83\xce\xb8\xc9\xc0\x7b\x75\x83\x59\x11\xae\xbb\x60\x40\xd5\x2d\x30\xdd\x85\x0d\x40\x39\x7c\x66\xba\x93\x0c\x80\xa2\xc7\xcc\x32\x47\x05\x00\xf9\x38\x7f\x3d\x87\x43\x00\xb2\x71\xbf\xf3\x40\xc7\x2f\x37\xec\xbc\x33\x37\x3b\x62\x1d\x4c\xcf\x45\xca\x2d\xb6\xc3\x85\xda\x35\xf5\x68\xe3\x0c\xbc\x1e\xd3\x34\x3b\x08\xef\x73\xae\xaa\xa4\x56\x8d\x4a\x8e\x53\x7e\x19\x79\xbe\x4b\xf0\x6a\x52\xa6\xd1\xb2\xc3\x42\xbb\x11\x3a\x3a\x37\x34\x5c\x85\x53\xc0\x76\xaf\x68\xb0\x8e\x45\x95\xd4\xee\x6d\x73\x16\x04\x7b\xce\x54\xcd\x58\x67\x33\xa7\x6b\x8e\x92\xe1\xfe\x15\x62\xb3\xee\x45\xe8\x9a\xd5\x84\xf0\xcd\xbc\x9f\xe8\x6f\xb5\x6d\xfe\xa2\x19\x6e\x59\x63\x6d\xad\x66\xbf\x08\x68\x2d\xaf\xb3\x5b\x10\xc8\xe1\xff\xf4\xb1\x98\x9d\xd9\x8c\x6d\x01\x26\xfd\x9a\x36\xd7\x02\x24\xfc\xd5\xc1\xc0\x62\xce\xd4\x9a\x29\x3b\x61\xa1\x71\xc1\x94\xb4\x49\xa6\x10\x67\x30\x71\xa2\xbb\xdf\x4a\xc8\xd3\x89\xf3\xbb\x38\x61\x29\x54\x6b\xe9\xf9\x32\x7c\x6e\x43\xb3\x46\xc5\x84\x69\x5e\xe7\xe0\x95\x5a\xa0\x77\x86\x47\x36\x7c\x57\xae\xf2\x76\xf0\xd0\x82\x5f\xca\x9a\x5e\xaf\xc7\x6d\x02\x50\xa8\xfc\x5d\xff\xb4\x0e\x82\xe8\x80\x5c\x5c\x31\xff\xd6\x73\xd2\x07\xf3\xb3\x1d\xfa\xd3\xf1\xee\xc0\x87\xc9\xf3\xf0\x3a\x64\xa3\x44\x30\x5e\xfd\xba\xfe\x78\x19\x5e\x15\x2b\x0e\x09\xc7\xba\xa9\x3c\xae\xb5\x78\xd5\xf4\xb4\xc0\x7a\xcc\x1f\x1f\x0a\xdc\xb8\x8b\x2d\x08\xa1\x84\xc0\x4d\xcb\x18\x81\x5c\x6b\xb6\x3c\x5c\x2f\x61\xd0\x2b\xa1\xb1\xc6\x6b\x4d\xb7\xab\x87\xe2\xf4\xe0\x9d\xe1\xa3\x03\x96\xeb\x6a\xce\x3e\x15\x16\xb1\xc2\xd3\xc4\x31\xc0\x66\xf9\xff\xe3\xec\xbc\xe3\xb9\xee\xde\x3f\xfe\x4a\x21\x2b\x3b\xc9\x8e\xb4\x90\xb4\xa5\xa9\x3d\x34\xb4\x07\xda\x8b\x52\xda\xc3\xaa\x14\x4d\xa3\x92\x94\x54\x56\x43\x68\x50\x44\x85\xb6\xd1\x22\x0d\x12\x0d\xa4\xd2\xde\xe7\xf7\xf8\x5c\xe7\xfd\x56\x54\xf7\xf7\xbe\x7f\xf7\x3f\xd7\x6d\x77\x5d\xef\x73\xae\xf7\x39\xe7\x7a\x9e\xd7\x65\xed\xe7\xdb\x2e\x7b\xa4\xf1\x3c\xb3\x03\x3e\x1d\x26\x0f\x9b\xe9\xfc\x25\x25\xb5\xc3\xeb\x21\xaf\x9c\x1d\xf3\x9a\x77\x58\x3d\xf8\xb2\xb3\x73\x55\x41\xbb\xbd\x83\x7b\xcf\xf1\x61\xab\xda\x98\x0e\xbc\x3e\xa3\x0e\x8b\x32\x97\x1e\xf0\x75\x72\x14\x4b\x6f\xf1\x71\xc0\x6e\x87\x7d\xec\x56\x73\xe3\xfe\x46\x0e\x6d\xd8\x63\xd3\xe9\x7d\x0a\x27\x2c\x62\xdf\x9a\x7c\xea\xd7\x65\xcc\x76\xf6\xad\x49\x4c\xef\xc3\x63\xda\x31\x66\xd8\xb2\x6f\x94\x7d\x22\x63\x86\x9b\xfa\x2c\x1b\x3e\x96\x31\xfd\x5d\x3f\x9f\x7f\x7b\xe1\x76\x58\x3f\xe2\x59\x44\xfe\xe9\xb1\x11\xd7\x85\xc8\x0f\x98\x4d\xf9\x32\xbb\x78\x21\xd5\x6d\xd3\x67\x2d\xa5\xe7\x9f\xe4\xb4\x92\xea\x5c\xb1\x53\x3c\x69\x1d\x71\xd0\x96\x9f\xa6\x06\x3b\xf9\x50\xbd\x7f\x63\x84\x2f\xdd\x7b\xf7\xca\xd8\x74\x42\xf5\x33\xb0\x68\xb6\x9f\x85\x69\x9c\xd2\xf5\x99\x87\xd7\x7b\xd9\xbc\xd4\xfe\x38\x7e\xdc\xda\x2e\xf6\xf5\x9a\x06\x0d\xff\xe0\x9d\xe8\x3c\xb2\xa5\xcb\xa0\x64\xaf\x23\x3e\xc1\x66\x8f\xfb\x3e\xf2\x4c\xdb\x07\x8b\x31\xb6\x9a\x1e\x45\xa7\x47\x5b\x1c\xee\x71\xc1\xc3\xfc\x96\x92\x45\xaf\xee\x27\xdd\x8b\x5f\xae\x30\xf3\xee\x3e\x7b\x55\x02\xbb\xd9\xa2\x79\xf7\x6e\x4b\x4e\xb1\xe7\xa6\x47\xbb\x05\x2f\x4c\x67\x5f\x4c\x56\x74\x1d\x37\x2f\x9c\x31\xa3\xa3\x5d\xdf\xcf\xad\x64\xcc\xc8\xb1\xab\xf1\xac\x60\xc6\x0c\xe6\xda\x7c\x9e\xd1\x8c\x31\x7d\xb7\x2e\xfb\xa6\x79\x31\xa6\x7b\xc4\x66\x99\xe3\x02\xc6\x74\xee\x58\xfb\x3b\x74\x64\x4c\xbb\xe0\xa7\xff\x9c\x83\xa8\xd2\x1b\x45\xe3\xe2\x71\xbb\x29\x14\x9f\xbb\x2a\x2e\xc4\x41\x64\x75\x5c\x32\x14\xbf\xf0\x3f\x49\x4e\xfc\x94\xf0\x68\x91\x0f\xdd\xe7\x8b\x30\xd9\x44\x75\xaa\x5d\xa9\x5b\xe8\x5c\x73\x8b\x4d\x00\xf1\x54\x5e\x72\x3b\xa8\x1e\xba\xc0\x74\x57\xbf\x7a\x81\xc0\x8c\x5b\xc1\x29\xfa\x90\x3d\x36\x6e\xfb\x8e\xb3\xed\x7e\xa8\xbf\x1c\x6c\x19\x64\x33\x78\xa8\x81\x56\x9f\x56\x81\x4b\x67\xda\x34\x51\xee\xde\x32\xe0\x96\x77\x3d\x13\x1d\xeb\xb5\x01\xd2\xa1\x6d\x9b\x0e\xef\xf0\xc2\xdf\xe1\x94\x76\xd3\x75\xed\x8e\x6d\x8b\xca\xad\x67\xf2\xba\x6d\xcc\xb6\x69\x15\x3e\xc6\xd6\xed\x0c\x37\xa7\x32\x66\x18\xdf\x6e\x85\xcf\x33\xc6\x0c\xc6\xb4\xbd\xe3\x75\x98\x31\xbd\x7e\x6d\x17\xac\x56\x92\xe4\x36\xab\x9d\x2b\xaa\x18\x6b\x3c\xa6\xed\x83\x25\xa9\x8c\x35\xde\xd4\x76\x96\xdb\x6d\xc6\xb4\xa7\x5b\xd5\x59\x20\xc5\x98\x96\x5b\x9b\x4b\x2e\xb1\x8c\x35\x74\xb7\x72\x9d\x2b\xc5\x58\xc3\xf9\xa2\xff\x6f\xd6\x8f\xa5\xea\x51\xe9\x3b\x3e\xcf\x0b\x4c\x16\x92\x7e\x5a\xb6\xcd\x72\x1a\xe7\x19\xb6\xbc\x9a\x92\x74\xdd\x87\x4e\xd1\x8f\x95\x6c\xa6\x7b\xfb\x91\x8b\x02\xa8\xcf\xda\xee\xbd\x41\xa4\xaf\xe6\xdf\x73\x17\xc5\x6f\xad\x6d\x28\xd5\x41\x16\x0f\xde\x47\xa7\xe7\xd3\x6e\x1d\x24\x5e\x62\xbc\x53\x54\xbd\x86\xa3\x81\x41\xb9\x07\x1f\x99\xad\x55\x2a\xe9\x3e\xf3\xc0\x88\x3e\x1b\xb5\x14\x3a\x9d\xdf\xff\x7c\xf2\x32\xed\x99\x6d\xdb\xec\x5f\xb8\x7a\xac\x8e\xac\xc5\x97\xf0\x77\xc1\x76\x3a\x6f\x5a\x25\x84\x2f\x4c\x08\xd3\x29\x6c\x71\x6c\xdf\xb3\xeb\x45\x3a\x16\xcd\x1f\xef\xdb\xfc\xfc\xb0\xf6\x81\x16\x9e\x7b\xfb\x30\xa6\xe5\xd2\xbc\x70\xa7\x02\x63\x9a\x71\x2d\x9c\xb7\x45\x33\xa6\x69\xdf\xb2\xee\xc6\x4b\x8c\x69\xb6\x6c\xd9\x74\x43\x13\xc6\x34\x8e\x37\x37\x5c\xbb\x91\x31\xb5\xce\x2d\xe0\x35\x8c\x31\xb5\xf5\xcd\xb5\xdc\xeb\x32\xa6\xda\xa1\xf9\xf8\x15\x5d\x18\x53\x29\x6a\x3e\x6f\xa9\x64\x1d\xb6\xf4\xad\x17\xd7\x43\x7a\x6a\xce\xf3\xdb\xdd\x0d\x8b\xc8\x66\x9f\xe6\x3c\xc4\x85\xe2\x75\xc2\xf8\xdf\x4c\xf5\xb8\x38\x17\x7f\xfa\x7a\x54\xd3\x60\xaa\xbe\xed\x35\xdc\x4d\xf5\x9e\x40\xbb\xbd\x54\xb7\xf2\xed\x7b\x80\xea\x96\x2b\x3a\xf3\x7a\xb1\x73\xd2\x21\xca\xaf\xe3\xaa\x62\x69\x9c\xf4\x7f\x9a\xf0\xa6\xbe\x1e\xd0\xf5\x4a\x82\xa1\xf1\xc8\xfa\x1a\x56\x1d\xe3\x7d\xba\xd5\x51\xee\x62\xb6\x22\x7e\xe9\x84\x08\xd5\x06\xcd\xf6\xc7\x0f\x5e\x36\x58\xad\x8e\x71\x79\x7c\x8b\xa0\x3e\x6a\x03\x8c\xec\xe3\x92\x63\xaf\xaa\xbe\x31\xc8\x8d\x6b\x72\x25\x47\xd5\x4a\xff\xcb\xb1\xbc\x27\xa7\x94\x17\x19\x8c\x3a\xfa\x92\x31\xa5\xee\x06\x16\x11\xb1\x8c\x29\xee\x31\x98\x12\x36\x95\x31\xc5\x05\x06\xdb\x43\xa2\x19\x53\x1c\x61\xe0\xbc\xe3\x31\x63\x0a\x85\x86\xf3\xfc\x1f\x32\xa6\xb8\xca\x50\x65\x73\x08\x63\x0a\x17\x0c\xce\xf9\x69\x30\xa6\xd0\xdc\xf0\x93\xcf\x0f\xc6\x14\xeb\x1a\x7c\xf0\xbe\xc8\x98\xfc\xa9\x67\xc9\x73\xa9\x7e\x79\xbf\xf9\x92\x3c\xca\xff\x2f\xbd\x68\x3d\x90\x71\xd6\x97\xf2\xde\x19\x9b\x6d\x74\xfa\x1f\xaf\xbc\x83\xe6\x41\xcc\xd9\x3d\x33\x24\x76\x5f\x5c\x38\xd5\xc9\xb7\xaf\xe1\x7a\x01\x1b\xbd\x62\xa8\x3e\xea\x99\x74\x84\xea\x5e\x6e\x31\xf1\x14\xaf\x69\x53\xb8\x7e\xc4\xf0\x17\x49\xc4\x5b\x75\x09\xe3\x75\x63\xcb\x5e\x69\x7b\xb5\x3d\xeb\x8c\x6f\x3a\x29\xcd\xa0\xdd\xa7\xfa\x23\x0c\x77\xa4\x2d\x1f\x39\x5e\xae\xae\xee\xb9\xb4\xc8\x85\x56\xf5\x93\x1a\xcf\x49\xbb\xb3\xb5\x43\x7d\x75\x6d\x85\xb4\x84\x43\x87\x65\x12\x1b\x1d\x4c\xdb\x77\x31\xa8\xde\xfc\xc6\xb3\xd3\x72\x4b\xa6\x00\x5a\x3f\xce\xd2\x0d\x5a\x8d\x6e\x27\x49\x77\x55\x39\x34\x56\x81\xce\x00\x7e\x44\x4d\x64\x4c\x3a\xb4\xc1\xbd\x08\xaa\xa0\x28\xae\xda\x37\x43\x62\x75\x8c\x43\x3c\x18\x93\x35\x54\x4c\xdd\xf9\x9e\x3e\xbf\x24\xc8\x81\xf6\x14\x32\xdb\xdc\x25\xf6\x61\xe8\x52\x7a\x5e\x37\xf4\x79\x7e\xbb\x28\xb7\x91\xfa\x9d\x9c\xa9\xe4\x3a\x48\x09\xb9\xbb\x88\x8f\x8c\x79\xcd\x75\x80\xc2\x5d\x23\xe8\xf6\xf4\x8e\x62\x5e\x75\xdd\xec\xc1\x79\x98\x35\x9f\x13\xa8\xfb\xc2\x8a\x45\x9c\x0b\x99\x9b\x75\x9a\xd6\x13\x93\x06\x9d\xa5\xf9\x32\x28\xea\x3c\xe9\xc6\xb4\xc3\x45\x1a\x17\xfa\x4e\xd7\xba\xc8\x05\x03\xda\x57\xaf\x9b\x99\x49\x01\x9a\xf3\xae\x27\x0f\x5e\x04\xa8\x96\x67\x19\xce\x05\xd0\xa0\x30\x6b\xec\x86\x38\x40\xb1\x77\x96\xcc\x41\x7f\x40\x2e\xed\xfa\xf5\x73\x33\x01\xd9\xd0\xeb\xd6\x0f\x92\x01\xe9\x09\xd7\x0e\x7c\x57\x04\xa4\x66\xa5\x53\xbf\xea\x3a\x8b\x92\xaf\xf2\x35\xc0\x49\x0f\xb2\xd3\xe2\xf9\xbd\xfe\x09\x47\x78\xe7\x8d\x89\x51\xd4\xe7\x1a\xf5\x0f\x50\x7f\x66\x8c\x0f\x1b\xc5\xbf\x7f\xf7\x2b\x89\xbd\x33\x79\x2d\xad\x1b\xae\xe8\xf3\x2a\x51\xaa\xfe\x0e\xd2\x3f\x38\x11\xb7\x87\xee\x71\x1f\x6d\x7d\x80\xc6\xc3\xfe\x29\xd1\x54\x2d\xdb\xdd\xf5\x18\xf1\x72\xfe\x6b\x8e\xd3\xad\xda\xf5\xdd\x4e\x52\x5e\x5d\x3d\xe8\x34\x55\x59\x16\xe4\xf0\xe7\x3d\xfd\xfd\x05\xaa\x1e\x8d\x09\xb8\x44\xfc\x50\x6f\x95\xab\xf4\x7d\x16\xce\xb9\x34\x9f\x54\x33\xee\xd0\xcf\xcb\x38\xe7\x1f\xd1\x99\x09\xd4\x29\xbb\xdb\xb1\x2b\x75\xd8\xb8\x9b\xed\x30\x98\xec\x0d\x77\x8a\x58\x81\xe6\x1e\xaa\xc7\xdc\x35\x39\x4d\x9c\x44\x7e\x49\x3e\x65\xe4\xbc\x62\x5e\x51\xcc\x11\xea\xf7\x97\x85\x9b\xe3\xe7\x79\x1c\x90\xb2\x88\xdb\x44\xa1\x92\x96\x20\xd4\xf3\x8e\x0a\x37\xb2\x63\xf2\xb8\x8d\xd4\xa6\xfd\xbc\xe0\x7f\xda\xba\x60\x7a\x41\x9e\x4c\x0b\xa3\x7c\x19\xbb\x21\x92\xe6\xf9\xc1\xc0\xc3\x94\xef\xf6\xe8\x27\x50\xff\xa4\xa0\xf8\x44\x1a\x37\x22\x07\xe4\xbd\x86\xeb\xe2\x2c\xcd\x4c\x77\xe4\xe3\xe0\x22\x71\x03\x4e\xb7\xaf\x51\xfc\x86\x0f\xcf\xa6\x8f\xbb\x55\x72\x3e\xa2\x79\xd6\x5d\xd2\x07\x50\x5a\x5f\x48\xbc\x19\xf0\xf8\x98\x06\xfd\xdf\xe3\x43\x9d\xdb\x4b\x6c\xc9\x99\xf1\x94\x99\x4a\x2e\xaf\xa0\x19\x5b\x52\xc8\x33\xd1\xe3\x87\xc7\xe9\x8d\x5e\xd2\x99\x57\x22\x1f\xfb\x55\x71\xa2\x89\xeb\x7a\xe0\x96\xc0\x77\x64\x75\xa8\x19\x97\x0b\x82\x1e\xc4\x59\xa1\xc2\x98\x24\x74\x60\x38\x2e\xd4\xf5\x8e\xd1\xbd\xa5\x74\xc7\x10\x5a\x1f\x25\x5a\x71\x3d\xa4\x63\x99\xfc\xb9\x47\xb9\x1f\x2b\x00\xf1\x1f\x9c\xfb\xda\x99\x7c\x86\xfa\x00\x6c\x29\x4e\xa5\xf7\xa1\xcf\xa2\x74\x7a\x3a\xab\xa6\x5f\xa4\xa7\xb5\xf0\x3d\xe7\x04\x66\xbe\xbc\xa1\x28\xb1\x13\x87\xdd\xa2\xfb\xe2\x43\xa4\xee\x92\x17\x9d\x9f\x3e\xa0\x75\x76\xd3\x39\x8f\xe9\x69\x2a\x0c\x7d\x96\xcc\xe3\xf0\x22\x49\x99\x3a\xe8\x54\xaa\xb5\xa7\x9d\xc9\xcb\xd9\xa3\x88\xb4\x79\x59\xb5\x58\x4e\x62\x5f\x25\x07\xd2\x4c\x7d\x79\xee\xd8\x2b\x6e\xaf\x13\xb1\xf8\xf2\x4c\x39\xd5\x81\xcb\x04\x25\x81\xc2\xf7\xdc\x56\xf7\x7d\xe9\x23\xc4\x45\xa8\x2c\x5f\x16\x3a\x70\xa4\x7f\x65\x35\xb8\x98\xd3\xf4\xf1\xe9\x05\xfb\xe9\x5e\x7b\x9c\x4b\x0c\xf5\x03\x8a\xc9\x49\xa0\x3a\xf7\xfe\xe2\x33\xb4\x5e\x0a\xb1\x39\x4b\x79\xc0\xff\xde\x05\xfa\xf7\x8b\x1c\x90\x97\xeb\x35\xe2\xb2\x97\xb5\xe0\x7c\x84\x4b\xea\x2d\xe2\x4d\xa7\x06\x70\xbf\x47\x4f\x7d\x40\xa3\x7c\x40\x4e\x31\xad\x4b\x3b\x1c\x2b\xa5\x7d\x7b\x93\x62\xce\x85\xc8\xcf\xad\x12\xc6\xc3\xa7\x73\x0a\xc4\x3b\x7c\xbe\xd0\x9a\x94\x48\xbe\xc6\x0c\xa3\x19\xf6\x6d\xe8\x7c\xfa\x0d\xdf\x9c\xb9\x72\xdb\x77\x3d\x4e\xac\x7c\xbb\x7c\x69\x00\xff\x3c\x27\x6c\x3e\x39\x71\x7f\x5e\x8c\xe6\xb6\xf4\x94\x10\x17\xa1\x02\x7d\xd7\xa9\x66\x5c\x44\x8e\xea\xca\x7c\x6e\x33\xe8\xbe\xdb\x71\xbb\x23\x14\xdd\xc3\x76\x27\xe8\xaf\x47\xa4\x9f\x1d\x85\x5f\x38\xa8\x1d\xea\x97\xf2\xf8\x38\xb8\x46\xf3\xdd\x47\x25\x87\xaa\xb1\xab\xf5\xf9\x38\x5f\x54\x37\x9f\xf8\xa1\xd9\xc3\xef\x11\x27\xe4\x58\x56\x44\xf3\xc6\xde\xeb\x09\xf9\xd9\xc7\xba\x8c\xe2\x68\xf5\xa1\x92\xf6\x67\x46\xb3\xdf\x12\x17\x20\xa7\xff\x25\x9c\xc7\xe1\x27\x07\xd2\x52\xe8\xe7\x31\xd0\x93\xdb\x19\x02\xf7\x21\xd6\xfb\xc3\x04\x25\xc8\x24\xb1\x7e\x2b\xd4\xad\xab\xf4\xf0\x0b\xe7\xf0\x66\x08\xb7\x15\x76\x42\x5c\x3a\x09\x71\xa9\xf3\xe7\xf1\xc2\xe3\x72\xac\x57\x12\xcd\xe3\x48\x9b\x9a\x1c\xd4\x4e\xc7\xcb\xb4\x4e\xde\xe6\x92\x4d\x51\xf7\xd5\xbf\xc5\xc7\x81\xc7\x5d\xfa\xfe\x15\x16\x0f\xa8\xcf\xa0\xeb\xe9\x47\x44\x6d\x4d\xbf\x59\x4a\x74\xd7\x84\xee\xcf\x69\x3e\x0c\x53\x79\x41\xa3\xb9\x57\x87\x37\xc4\x87\xb4\xc9\xf9\xb8\x85\xc7\x81\xf3\x11\x72\x39\xec\x77\x0e\xa4\x17\xb7\xbd\x05\xff\x1d\x84\xb8\x2c\x13\xfc\x16\xfb\x5c\x1c\x12\xea\xfa\x19\xc2\xc7\x05\x73\x84\x78\x08\x27\x25\xfc\x37\x7f\x16\x88\x93\x5a\x7d\x82\x50\x52\x5e\x33\x2e\x7c\xbc\x1c\xba\x71\x8e\xde\x87\xd5\x1c\x54\xfa\x55\xca\x9b\x81\x31\x37\xe8\x39\x6e\x4a\xcb\xa7\xfd\xf8\xba\xd4\x07\x34\xde\x57\x2b\x73\x3e\x62\x89\x65\x29\xe5\x55\x67\x3c\xa3\xf1\x34\xb5\x6e\xe5\x1a\x89\x1d\xbf\xe5\x0d\xe9\xc8\x0c\xed\xf2\x89\xde\xb7\xdd\x87\x7e\xa5\x79\x23\x72\x20\x7a\x0f\xb8\x95\xfd\xca\x7e\xe7\x40\x04\x3f\x44\x0e\x64\xb4\x1f\xb7\x22\x27\xe5\x23\x70\x1e\x61\xc2\x4d\x10\x51\xf7\xe2\x52\x5f\x6e\xef\x0b\xf1\xac\x54\xc3\x1f\x38\x87\x8f\x3d\xb9\x15\xf5\x73\xca\x85\xb3\x97\x52\x15\x89\x15\xf5\xa0\x44\x3d\xa4\x1d\xc5\x7c\xb4\x6d\xed\x5b\x40\xeb\x25\xdf\x7b\x8f\x88\x2a\xf0\xb6\x7c\x42\xe7\x0d\xcb\x27\x3e\xa7\xbf\xe6\xa6\x56\xb9\x92\xe6\xc3\xdd\x2a\xca\x7f\x93\xc7\x7c\xa2\xf5\xf7\xe8\xe2\xaf\x94\x4f\x87\x4c\xe2\x7f\xc5\x46\xe8\x87\x63\x31\x97\xd5\xe0\x1f\xa4\x3b\xfd\x7e\xe2\xf7\x1b\x07\x22\xf0\x1b\x33\x04\x9d\x10\xb1\x3f\x8e\x38\x2e\x22\x05\x7e\x26\xc9\x89\xdb\xab\xc2\x8e\x39\x5f\x9d\x5b\x91\x9b\x7a\xef\xfe\x6b\x3c\xbe\x0b\xe3\xa3\x5a\x3f\x87\xde\xa3\xe1\xad\x6f\x12\x0d\x11\x22\x75\x97\xf8\x97\x40\xc6\xf5\x51\x36\xc6\x14\x53\x54\x7d\xba\x3f\xa7\x7c\xe9\xee\xf9\x82\x9e\xfb\x32\xd5\x2a\x7a\xab\xb9\x56\x7c\xa4\xf7\xc9\xac\x05\x5c\x17\xa8\x9a\x03\x11\x78\xa0\xbe\xc2\xf3\x16\xb9\xa8\x96\xc2\x6c\x6d\x24\x8c\x56\xe9\xf4\xdf\xe3\xa0\x27\x3c\xe7\xea\xfe\x38\x13\x6b\xce\x8f\x45\x82\x62\xae\x8f\xc0\x47\x89\x7c\x90\x38\x4f\xc4\xbc\x71\x51\x88\x9b\xc8\x7f\x3c\xbc\x2d\x8c\x13\x31\x1e\xd7\x7f\x8d\x0b\xe7\xca\xd8\x2f\x3a\x16\xbf\xd5\xff\x6b\xf5\xc1\xa8\xad\x7f\x51\x9b\x03\x11\xfb\x7f\xd8\x09\xdf\x3f\xbe\x8a\xdb\xe9\x1b\xb9\x75\x13\x6a\xd6\xd5\x1c\x48\x2d\xfe\x21\x76\x1b\xaf\x73\x88\x1a\x1d\xc4\x32\x8c\x02\x4a\x84\xfa\xe0\xb7\x41\x3f\xf9\x87\xea\x7a\x6f\x2d\xfe\x41\xac\x7b\x5f\x15\xfe\x6d\x17\xaf\x72\x5b\xbb\xff\x49\xb2\xd0\x27\x25\x49\xe0\x22\xfe\xe8\xff\xff\xd2\xbf\xf8\x1f\xba\x0f\xbf\xf5\xc7\x79\xc4\xed\x42\x41\xf7\xc3\x33\xfe\x97\x38\x78\x01\x61\xc2\xdd\xf5\x63\x82\x0f\xe7\xb2\x81\x1f\x7b\x80\x1b\x0f\x79\xfd\xef\x69\x08\xb7\x92\xaf\x55\xf5\xe1\xb6\x54\x88\xe5\x7d\x81\xf7\x10\xf9\x87\xeb\x42\xfd\x5a\xd4\xff\xa8\xe6\x3f\x44\xfd\x8f\x5a\xfc\xc7\x89\x21\xbf\xc4\xe1\x2f\x7d\x60\xfe\x57\x1f\x94\x6a\x2e\xe6\x2f\x1c\x48\xed\xfe\x38\xf3\x8f\x09\x71\xf8\x95\x03\xf9\x25\x0e\x71\xb6\xc0\x8f\xf7\xc0\x05\x4b\xc9\x6a\x01\xb8\x2d\x2b\x99\xcd\x40\x59\x03\xe0\xdb\x3c\x80\x0d\x03\x2a\x85\x1e\x3a\xa2\x1e\xca\x6f\xfc\x83\xc0\x03\x5c\x10\xfc\x14\xf9\x8f\xb3\xfb\xff\xec\xff\x3f\xf1\x0f\x7f\xeb\x03\x22\x7e\x2c\x72\x0f\xe6\x02\x0f\x25\x72\x53\xe2\xb8\xa8\xee\x8f\x23\xe8\x3f\x38\x09\x9c\x54\x35\x07\xf2\xbd\x56\x1c\xb6\x02\x5f\x2c\x81\xa3\xf9\x92\xd5\x14\x20\x79\x83\x7d\xa9\x04\x6e\xc7\x01\x9f\x52\x80\x67\x87\x80\x4f\x13\x01\x36\x10\x28\x13\xe2\x50\xcd\x3f\x08\x9c\xcc\x75\xe1\xf3\xff\x96\x7f\xa9\x5d\xff\xff\x93\xff\xb5\x79\x8f\xbf\xf5\x41\x11\xe3\xf2\x1b\x07\x12\x5e\x33\x4f\xd4\xe0\x40\x72\x25\x6b\x30\xe0\x87\x11\xb0\x79\x36\xf0\x25\x0e\xd8\x63\x0e\x7c\x0c\x01\x8e\x8c\x06\x3e\x0e\x05\xd2\xce\x02\xef\xef\x00\x37\x8a\x81\x0f\xdb\x80\xb2\xa2\x9f\x79\x41\x9c\x0f\xf7\xb4\x6b\x8e\x83\xcb\x82\x96\x88\xc8\xbf\xfc\x5b\xff\xff\x89\x7f\xa8\xdd\x07\x45\xec\x87\x21\x5a\xf1\xf3\xe2\xf7\x89\xe3\xa3\x36\x07\x32\x48\x9a\xdb\xf1\x6f\xf8\x73\x9f\x2d\xc9\x59\x0b\x81\x95\x91\xc0\x57\x75\xc9\x5e\x0d\xf8\xd4\x0b\x08\xb5\x07\xde\x65\x02\x47\xe2\x80\xb7\x3a\x3c\x4f\x4a\xde\x4a\x37\x3d\x81\x57\x11\xc0\xd3\xf5\xc0\xab\xfa\x3c\x47\x3c\x12\xf4\x61\x6e\x09\xf9\x42\xe4\xe1\xc4\x3c\x58\x5d\xff\xbf\x59\xcb\xff\xa0\x9a\xfe\x47\x0b\xb9\xea\x4f\xfc\x83\xe8\x57\x75\x1f\x90\xbf\xf4\x41\x11\x3f\x2f\x7e\x9f\xf8\x73\xff\xc8\x81\x44\x02\x33\x9e\x02\x5f\x74\x80\xa5\x1b\x81\x8f\xd1\xc0\x86\x4b\xc0\x5b\x2d\xc9\x1e\x06\x78\xe9\x0f\x1c\xaa\x03\x54\x6e\x04\x24\x3b\x9a\x0a\x29\x20\xd7\x05\xa8\x18\x06\x3c\x4b\x02\x24\xab\x73\xc9\xbb\x44\xe4\xc2\x44\x3d\x1c\x71\x1e\x88\xfc\x4b\x92\xa0\x35\x74\x5c\x78\xe7\x1c\x15\x18\xa5\xc3\xc2\x18\xfd\x8d\x7f\xe8\xf1\x33\x0e\xb5\xf9\x87\x7f\xd7\x07\xe5\x27\xf7\x20\xea\xa4\x88\xf1\x6c\x23\x30\x2a\xd5\x1c\x48\x16\xf0\x4d\x07\x98\x62\xc9\x7b\x1f\x49\x16\x24\x6f\x7a\x02\xeb\xd2\x81\xca\x06\xc0\xce\x4e\x40\x79\x3f\x20\x3a\x04\x78\xf6\x03\x48\xfe\x01\x3c\x29\xe6\x63\xbe\xd4\x0e\x78\xea\xfe\x93\x07\xba\xa3\x56\x33\x1f\x9e\x13\xb8\x86\x24\x41\x63\xe5\xb8\xb7\xf0\xdc\xad\x6a\x8e\xfb\x48\x43\x6e\xf7\x8b\x4c\x96\x10\xa7\x5d\xde\x3f\xe3\x20\x3e\x57\xe5\xfb\x35\xfd\xfd\x9b\x0e\x86\xa8\x8f\x20\x23\x55\x33\x2e\x22\x17\xd3\x42\x60\xfb\xba\x98\x01\xdf\x16\x00\x83\x86\x02\x1f\xda\x02\x13\x2f\x01\x55\x33\x81\xf9\x3b\x80\xca\xae\x92\x35\x2a\xf0\x2c\x16\x08\x8c\x05\x4a\x3b\x4b\xf6\x38\xbc\x2f\xd8\x99\x48\xe0\xd1\x11\x20\xb7\x11\x50\xb8\x07\x90\xec\x2b\x1f\x08\xf3\x5a\xe4\xa1\xc4\x79\x70\x5a\x18\x0f\xa2\xee\xcd\xe1\x98\xbf\x3c\x77\xc1\xef\x50\x81\x0f\xda\xb5\x90\xdb\xed\xe7\x7f\xc6\x41\x7c\xfe\xff\x95\xff\x10\xad\x18\x2f\x31\x1e\x06\xd2\xc0\x8f\x37\x80\x55\x5b\xe0\xa3\x1f\x60\x6b\x2d\x59\xd5\xf3\xf9\x51\xc1\x24\x7b\x53\xe0\xc9\x13\x9e\x2f\x1f\xf7\x01\xb6\x31\xa0\xb0\x3b\x70\xd0\x1a\x78\x20\x07\x24\xbd\x07\xee\x7e\x02\xb2\x4e\x00\x79\xd9\x40\xe9\x4b\xe0\xf6\x4e\xe0\xc7\x13\xe0\x12\xe3\xbc\x4f\x8a\x47\x1d\x3a\x77\x8a\x7f\x26\x45\xfd\xa2\x0e\xef\x94\xa2\x7d\x42\x84\x26\xe8\x5c\x66\x5f\x7e\x5d\x52\xb8\x13\xb9\x97\xe0\x87\xa0\x7d\xe6\xce\x1d\x98\x20\xb1\xfe\xb7\x40\xba\xad\xdb\x06\xfe\x8c\xc3\xbf\xf6\xff\x8f\xf5\xf0\x9f\x5f\xaf\xf3\x9e\x5b\x8d\x24\xe0\xd3\x17\xa0\x59\x5b\xe0\xf5\x0d\xa0\x4b\x63\xae\x83\x36\x74\x19\xf0\xc4\x18\x56\x53\x93\x81\x42\x56\xaf\xdf\xb2\x34\xa0\xe0\xb2\xec\xfa\xcd\x3b\x81\x3b\x4e\x72\xa3\xc3\x1f\x03\x37\xa6\x28\xb4\x3e\x65\x02\x64\x77\x56\x54\xbe\x76\x04\xb8\xe6\xa3\x58\xf0\x58\x06\xb8\xd2\x4f\xe9\xc0\xd7\x5d\x40\x2a\x94\x69\x05\x7f\xdc\x5c\x99\xf4\x34\x0f\x2d\x51\xa6\x73\x87\xfd\xe7\x1b\xd0\xdf\xde\x6b\xd1\x60\x0e\xf9\xbd\x4a\x89\xee\x5d\xed\x30\x57\xa4\xf3\x99\x80\x43\x4a\xf4\xf5\xad\xbd\xe5\xf3\x25\x76\x93\xad\x2c\xf5\xfe\xf0\x1d\x2b\x13\x2f\xc6\xe1\x3f\xfb\xfd\x0f\xf6\xb3\x29\x20\x6b\x00\xbc\x3a\x5b\xb7\x8d\xae\x19\xf0\x74\x82\x7c\xac\xd5\x43\xa0\x70\xb0\xca\x94\x01\x06\x40\xbe\x87\xc6\x31\x87\xf3\xc0\x8d\xc3\x8d\x9a\x2f\xb2\x07\xae\xbd\x6d\x74\x7d\xc3\x3a\xa9\x63\x97\x5a\x37\x0a\x0e\xf5\xa9\xf7\x32\xdd\xba\x51\x44\xbc\xbc\xcc\x84\xb4\x07\x8d\xa2\x2f\x3a\xc9\xa4\xa6\x14\x36\xfa\xf2\xc0\x59\xd6\xea\xcc\x53\x6d\xe7\xf7\x8b\x65\xbc\x12\x9a\x37\x8e\x66\x4c\xf6\x58\xe4\x62\x5d\x27\xc6\xe4\xce\xec\x75\xd1\x35\x67\x4c\x4e\x35\xf8\x82\xce\x75\xc6\xea\xf7\xab\xe6\x5d\x2a\x74\xe4\x18\x93\x79\xb8\xc9\x80\xfa\x2d\x15\x6c\xb8\xd2\xb8\x90\x31\x99\xd6\x3e\x19\x3a\x7b\x18\x93\xf9\xea\xe5\x2c\xf9\x58\x3a\xc3\x43\x51\x67\x01\x63\x32\x76\xff\xdd\x7f\xb1\x2e\x2e\x4b\xfd\xb9\x99\x91\x1c\xed\x92\xdf\x7d\x53\xa6\xdd\x52\x79\x8e\x2a\xed\x02\x8b\xeb\x69\x6b\x48\xc6\x45\x7e\xa0\xae\x4f\xcb\xd6\x75\xe7\xe7\x58\x19\x0c\xea\x1e\x2d\xb3\xe4\xd2\x35\xc3\xb7\x23\x8b\xe4\x56\x9c\x1f\x69\x14\x32\xfb\x87\x62\xfb\x64\xd7\x26\x8d\x3c\x22\x1b\x7c\x3f\xb5\xc6\xe8\x5a\x50\xb6\x4a\x41\xc2\x04\x23\xd7\x98\x47\x6a\xe6\xb1\xa5\x46\xf6\x69\xa3\xd4\x1b\x1e\x51\x37\x9a\x74\xa7\xa3\xba\x75\xcc\x57\xa3\x7b\x95\xb3\xd4\x36\x1c\xac\x32\x0e\x63\x4c\x4d\x3e\x24\xc9\xf8\x29\x63\xaa\x03\x02\x7c\x4d\x9e\x30\xa6\xea\xb0\xb9\xb5\xb1\x1d\x63\xca\xa6\x1b\xfa\x36\x49\x65\xac\x81\xf2\x1a\xcd\x26\xab\x18\x53\xea\xea\x15\x69\x74\x9f\x31\x45\x1f\xf7\xe5\x86\xc5\x8c\x29\x8c\x5d\x99\x60\x68\xce\x98\xfc\xd2\xe5\xca\x86\xf5\x19\x93\x6f\xb4\xb8\xa5\x41\x30\x63\x72\x93\xfe\xb7\xff\xa2\xdf\x22\x0f\xa2\x4a\x7e\x7f\xee\xdd\x88\x74\xdb\x5f\xad\x31\xa2\xaf\x97\x9e\x6b\xda\x45\x62\x1f\x38\xb4\xa0\xef\xbb\xe9\x66\xbe\x4f\x61\x2b\x70\xf9\x78\x6b\x03\x43\x7f\xe9\xf4\xb4\xe5\x16\xe3\xdb\x77\x57\x5c\x98\x78\xbb\x75\xfb\x41\xcd\x55\x46\xc6\x15\xb5\x6e\xe9\xf4\x43\xfd\xd5\xa1\x5d\x16\x57\x96\x9c\xd3\xea\x72\xf0\x99\x45\xb7\x4d\xa7\x1a\xab\xef\xf3\x34\x9f\xba\xbf\x93\xce\x8f\xd0\x20\xb3\x87\x89\x85\x7a\xe3\x76\x25\x98\xcd\xcb\xd6\xd7\x3b\xbb\xd3\xcd\x2c\xfc\x49\xae\xde\xb0\xed\xe3\xcd\x63\x19\xd3\x99\xba\x69\x8a\x45\x17\xc6\x1a\x5b\xac\x0d\x33\x8f\x62\x4c\xeb\xa3\x87\xb4\xf9\x24\xc6\x1a\x6e\x5c\x11\x6f\x66\xcb\x98\xc6\xe1\xa5\x2d\x5a\xf9\x32\xa6\x3e\x69\xd1\xbb\x96\x19\x8c\xa9\xd9\x2d\xcc\x69\x71\x9f\x31\xd5\xd6\xae\x46\x2d\xac\x18\x53\xe9\xe8\x12\xdc\x6c\x33\x63\x0d\xb6\xcc\x5d\x6a\xba\x85\x31\x25\xef\xbf\xfb\x5f\xad\x0b\xd2\x05\xbf\xf0\x10\xef\xdc\x9b\xd2\xf9\xca\x73\x87\x36\x14\x8f\x22\xd6\x81\xce\x71\xf3\x03\x78\xbf\x9c\x2c\xad\x6e\x74\x8c\x90\x1e\xde\xa3\x63\x1d\x1f\xe0\xcc\x57\xdb\xf3\xda\x1b\xa4\xda\xc7\x85\xf4\xd8\x67\x56\xae\xa4\x10\xd5\xb8\xdb\xd0\x9e\xea\x9a\x97\xc2\x72\xba\x06\x8d\xd9\xd0\xb8\xed\x2e\x69\x9b\x60\x97\x38\xfd\x16\x01\x8f\xba\x2c\x5f\xdb\xc2\x68\xe7\xe6\x7c\x6b\x8b\x10\x17\x93\x46\xbe\xb3\x3b\xf7\x8a\x9b\xdf\x34\xdf\xc7\xa8\xd3\xb2\x8b\x5f\x4c\x83\xd7\xcc\xec\x34\xad\xd0\xd5\x74\xa5\x57\x71\x67\x95\xcf\xcb\x4c\x1e\xae\x5c\xd0\x79\x0a\x63\x4d\x9a\x2f\x1e\xda\x49\x83\x31\xfd\x1c\x57\x85\x8e\x9b\x19\xd3\x3d\xe1\xbc\xa4\xc3\x1a\xc6\x1a\x27\xcc\x51\x6a\xbf\x80\x31\x6d\xb5\x99\x67\xda\x85\x32\xa6\x95\x36\x23\xdb\x2a\x96\x31\xcd\xf2\x69\xef\xdb\x28\x31\xa6\x61\x35\x39\xd8\xb2\x94\x31\xf5\x31\x4e\xe3\x2d\xae\x30\xa6\xba\xf1\x77\xff\xeb\x47\x70\xab\x29\x9c\x6a\x70\x0e\xa6\x2a\x87\x8e\x27\xf0\xd4\xa6\x0b\x9d\x9e\x3e\x14\x38\x98\x9b\x3f\xfa\xd1\x29\xf2\x65\x97\x41\x74\xaa\x9e\x5a\x39\x8c\xce\x75\x4e\x4e\xe6\xba\x19\x47\x8e\x8f\x4a\x50\x29\x06\xf6\x8f\xb0\xf7\x37\x59\x27\xef\x1c\x8c\x61\x31\x9d\x65\x35\x4e\x6c\x3e\x33\x44\x7d\xc8\x5e\x03\x75\x1f\xaf\x41\x0e\xd3\x56\x1b\xef\xf4\xd8\x3c\xe0\xd1\xca\xa1\xcd\xd6\x2e\xdf\xd6\x7f\x66\x80\x6e\xcb\xe0\x45\x29\x7d\xbf\x47\x27\x9b\x85\xb9\x16\xf6\x55\x4e\x3b\x61\x5e\xe0\x52\xd6\x67\x61\xfe\x3c\xf3\x74\x67\xe3\x3e\xa9\xaf\xcb\xcc\x36\xcc\x9e\xd5\x27\x9c\x5d\x6f\xd1\x62\xda\x92\xde\x93\x59\x79\xd3\x3d\x8e\x37\x7b\xed\x64\xcc\xe8\x99\x43\x46\x8f\x38\xc6\x0c\xe2\x27\x74\xed\x9e\xc5\x98\x5e\xd8\xf8\xe1\xdd\x1b\x30\xa6\x1b\x3d\x2e\xd5\x46\x83\x31\xed\x6f\xa3\x9f\x5b\x3f\x64\xac\x51\xab\x51\x1f\xba\xc8\x31\xd6\x48\xc6\x3e\xbf\x53\x12\x63\x9a\x89\x3f\xfd\x97\xad\xc9\x01\x45\x73\x3d\x9c\x37\xba\x9d\xa8\x0f\xcc\x53\xef\xde\x74\x2e\x77\xcf\x86\x8a\x2c\xc8\x75\x19\x4e\x75\x89\x8b\xe5\xfc\xf4\x2c\x65\xf6\x44\x3a\xaf\x4c\x68\xe6\x48\xe7\x93\x51\x47\x79\xbd\x7c\xcf\xde\x69\x2f\xa4\xfd\x80\xa0\x9d\xd3\x95\x75\xbd\x65\xba\xfa\x8e\x9f\x62\xd3\x66\xb0\x6a\xbc\xfb\x24\xc7\xfa\x7d\x87\xe9\x7a\x2c\xac\x9a\x60\x32\xfe\x4d\x33\xcc\x75\x19\x37\x76\xe1\x82\x56\x9e\xd3\x2e\x8e\x89\xf1\xfd\xd8\x5a\xd9\xb1\xd1\xe8\x0e\xe1\x2a\x6d\x56\x8c\x8f\x18\xa5\x96\x34\xc6\xea\xd9\x98\xf4\x91\x2a\xb9\x66\x6d\x35\x46\xbd\xb6\xaf\x2c\x5b\x61\x25\x33\xf2\x9b\xfd\x5e\xe6\x67\x31\x7b\xc4\xc2\xe1\x2d\x59\x42\xcb\xd1\x43\xd5\xed\xf2\x59\xbe\x69\xc3\x21\x1d\x06\x47\xb2\x17\xc6\xa3\x06\x9b\x0d\xda\xcb\x3e\x18\xbd\x1b\xdc\x60\xc0\x4b\xc6\x0c\x17\x0e\xcc\xeb\x67\xcc\x98\x5e\xe4\x40\x8d\xbe\x55\x8c\xe9\x59\xf5\xff\x6e\xfb\x94\xb1\xc6\xcb\xfa\x18\xdb\x7e\x67\x4c\xdb\xe2\xa7\xff\x02\x07\xb4\xb2\x05\x9d\xfa\x54\xdd\xec\x4a\xf3\xbc\x34\x73\x00\x01\x30\x77\xc7\x0d\x27\x1d\xe3\x6c\x9b\x09\x34\x1e\x32\x4e\x3b\xd1\xed\xd3\xd3\x15\xfc\xd4\x2c\xfe\x02\x5d\x5b\x42\xe4\x15\xce\x85\x84\x1e\x5a\x40\xfc\xd8\xd6\x02\x37\xe2\x02\xd6\xcf\x5d\xe2\xa6\x19\x0a\xac\xb8\xea\x66\xd5\xa2\xb7\x52\xd4\x7c\x3d\xd7\xb1\xdd\x2e\x36\x9a\x36\xd5\xc6\x45\x6e\x64\x07\x63\xd9\xf1\xf5\xe7\x9c\x9d\x1b\xd0\xa2\x8b\xfd\xad\xd9\xd9\x6b\x7b\xb5\xda\x65\xf7\x63\x56\x54\xe8\x5a\x73\xdd\x41\xed\x66\x1e\x3f\x61\x6c\xbe\xab\x7f\xe8\x8c\x0f\xd7\x57\x9b\x8f\xee\xd7\x60\xc6\x83\x27\xe7\x5b\x55\xf5\xbd\x37\x23\x8f\xe5\x36\x7f\xd4\x3b\x6a\x8a\x03\x7b\x67\x12\xd2\x5b\xc3\xe1\x10\x63\x4d\xfc\x7a\xdd\x98\x70\x81\x31\xc3\xce\xbd\xbc\xc6\xae\x60\x4c\xff\xb4\xed\x90\xd1\x52\x8c\xe9\x7b\xf7\xd8\x6e\xdf\x93\x31\x9d\xfe\x3d\x30\xac\x82\xb1\xc6\x4a\xdd\xb3\x86\x9e\x63\x4c\x7b\x5d\x77\xdb\xc1\x9d\x19\x6b\x24\xf5\x93\x83\xe2\x1c\x50\x95\x5e\x2f\xaa\x43\x96\x04\x0c\xa2\xf3\xf8\xbb\x91\x63\xa9\x4e\x91\x63\x33\x99\xce\x61\x2f\x14\xcc\x2c\x27\xff\x55\xe7\x51\x5e\x88\x37\x5a\x48\xba\xce\x11\xe9\x4b\xe8\xe7\x77\x9f\x5b\x41\x3f\xb7\x2d\xcc\x9d\x4e\xc5\xd6\x4c\xf6\xa4\x11\xb7\xa4\x74\x4d\xa5\x9c\x16\xe0\x6c\xe3\xfd\xde\x70\x47\xfd\xad\x4e\x8a\x9e\xc7\x3a\x6a\xa8\x6f\xb4\xff\xb8\x3a\x6f\x88\xb3\xde\xdb\xc1\xaa\xab\xf6\xcc\x98\xdf\xa4\x61\xdf\x3a\x2b\xd3\x3d\xf6\x9b\xc8\xf5\x9c\xba\xe2\x46\xb0\x6f\xd3\x79\x5d\x0f\xac\x40\x5c\x45\xd3\x0c\xeb\x2f\xcb\x37\x5d\xe9\xde\x74\x54\xe7\xe8\xe5\x6a\x8f\xb3\x4d\x1a\x77\x8e\x58\xbe\x84\xa5\x1a\x8d\xec\x6c\xe4\x16\xc3\x98\x7e\x55\xc7\x97\xf3\x7a\x33\xa6\x6b\xde\xb1\xcd\x9c\xa3\x8c\x35\x5e\xd5\xb1\xdf\xcc\xed\x8c\x69\x9f\xea\x60\x3b\xf5\x07\x63\x5a\x4f\xda\x1f\x99\x6c\xc1\x58\xc3\x84\x0e\xb7\x1c\xf6\x33\xd6\xf0\x5d\x7b\xcf\x89\xab\x19\xd3\x9c\xde\xde\x63\x1c\x63\x4c\xe3\x32\x63\xe6\xa4\x4f\xfe\xc6\xb3\x0f\x9d\x0a\x96\x8e\x1b\x4a\xdc\xd3\xdd\x40\x07\x7a\x0f\xe4\xcc\x9b\x4e\xf5\xce\xcc\x0b\x5c\x17\xe5\xb4\xea\x22\xce\x3f\x54\xac\xa0\xaf\x47\x14\xba\x13\x27\xb1\x67\x98\x37\x8d\x83\x00\x1b\x1f\xe2\x06\x7d\x2a\xb9\x6e\xc6\xb2\x77\x9c\x17\x98\xb9\x67\x1b\x9d\x1e\x3a\x2a\x07\x38\x6a\x77\xae\xb3\x78\xf8\x9c\xad\x67\x5b\x6b\x35\x70\xe9\xd3\x76\x73\x56\xdf\x08\xad\x0f\xdd\x96\x6d\x36\x9b\x3c\xa9\xf1\xd8\x4e\xb9\x9b\xd6\xae\x9c\xa8\x53\xd1\xae\xf9\xc6\xb2\xa0\xf7\xba\x27\x2d\xf3\x37\x76\x3b\xba\x48\xb7\xcc\x62\xab\x5f\xe4\x45\x5b\x5d\x77\xf3\xc1\x7e\x46\x45\xb7\x75\xba\x99\x3b\xfb\xf5\xfc\xae\xdb\xe8\x81\xf9\xa2\xb5\x7a\x8c\x69\x75\x35\x3b\xec\x3e\x9d\x31\xcd\x19\x66\x97\x97\x6f\x65\x4c\x63\x97\xf9\x9a\xc5\x6a\x8c\x69\x4c\x69\x35\x7b\xe1\x68\xc6\xd4\xf4\xcd\x7a\xcd\x77\x67\x4c\x6d\x70\xcb\xd8\xb9\xd3\x19\x53\x99\xd0\x6a\xf6\x2c\x43\xc6\x54\xc6\xb5\x9a\x3f\xbd\x0b\x63\xca\x85\xa2\xff\xcf\xba\x8d\xa0\x3e\x59\x05\x1b\x27\x93\x7f\xb9\xdd\x5d\xe8\x5c\x36\x23\xd0\x8d\xea\x9b\x67\x56\xaf\xa0\x53\xe4\x63\x27\xdc\xa9\xce\x19\xe5\xb1\x4e\x89\xfb\xef\x4b\xe7\xb6\x41\xf1\x9b\x89\x23\xdd\x50\xe1\x4f\x9f\x5f\xad\xcf\x75\x52\xe6\x1b\xf2\x3e\x32\x13\x2f\xee\x26\xde\xd6\x2e\x2e\x4c\x53\x49\x0a\xb0\x55\xdc\x93\xdd\xf4\x9e\x9c\x6c\xc7\x7d\xa1\xde\xdd\xe7\xa9\xa4\xb7\x59\x14\x3a\x7e\x82\xb6\x9a\xa7\x99\xcb\xee\x0f\x4b\xda\xab\x47\x34\xf7\xd8\xed\xbd\x2d\x41\xa3\x6d\xd3\xb9\xbb\x1b\xc6\x14\xa8\xbf\x35\x1e\x19\x12\x76\xa1\x5c\xbd\x7d\x93\xae\x21\xaa\x0f\x6e\xab\xbe\x6d\xd2\x6b\xd7\xeb\xcf\x3b\x94\x4b\x9a\x6c\x09\xbc\xc3\x58\x83\xcb\x4d\x46\x6c\x3a\xc9\x98\xd2\x9d\x26\x15\xeb\xdb\x33\xa6\x94\xd3\xa4\xe9\x5a\x05\xc6\x14\x2f\x19\xb7\xf7\xd8\xc1\x98\x52\xc7\x26\x3e\xab\xdc\x19\x53\x1c\x64\x94\xb8\x7c\x3f\x63\x0a\xf6\x86\x3f\x16\x1f\x63\x4c\x7e\x6c\x93\x07\x0b\xc6\x32\xa6\x30\xaa\x2c\x74\x0c\x9d\x7a\x3f\xd4\xe7\x1c\xcc\x8d\xf0\xf9\xc4\x77\x5d\x6c\xc2\x75\x51\x92\x43\xdc\x49\x76\x3e\x61\xeb\x3a\xaa\xf7\xc7\xe8\xfb\xd1\x7b\x20\x4c\xb8\x45\xb9\xdd\x23\x90\x74\xc0\x37\x32\xae\x0b\xe3\x19\x1f\x42\xf3\xc2\xcd\x6b\x2f\xfd\xde\x69\x5b\xc2\xa9\x6e\x68\x1f\x13\x41\xf1\xeb\xea\x70\x98\x4e\xd5\xdb\xbe\x3c\xdc\x59\x77\x58\xdd\x84\x16\xbd\x0e\x4d\xe9\x68\x24\x97\x68\x32\xf9\xd0\xf6\x91\x19\xf2\x97\x0d\x5d\x0e\x39\xba\xa6\x2a\xe8\xe9\xb5\x39\x34\x7f\x53\x80\x7c\x9c\x4e\x87\x98\x17\x91\x46\x72\x2f\xb5\xdf\xc7\xec\x4f\xbb\x54\xff\x9c\x76\xdf\x98\xd1\xf7\x9a\xc9\x3c\xd5\xee\x1b\x63\xf0\x71\x7e\xbd\xb9\xda\x87\xf7\xa7\x32\x56\x2f\xa2\xf1\xec\xdd\xbb\x19\x93\x51\xd0\x51\xdd\xbe\x97\x31\x99\xeb\x3a\x51\xfe\xed\x19\x93\x1d\xa7\x62\xb0\x95\x74\xfc\x1b\x5f\xf1\x8d\x64\x4c\x3a\x47\x57\x71\x5d\x3f\xc6\x64\xf5\x95\x9b\x78\x53\xbf\x07\xdd\x46\xee\xa6\x8c\xc9\x24\x3d\x70\x9e\x49\x79\x2f\x37\x93\xf7\x07\xca\xb4\x5a\x41\x79\x2f\x25\xda\x8b\x4e\xc3\xe3\x37\x72\x1d\xa0\xe8\xd7\x9b\x27\x48\xec\xbe\xe3\x81\x34\x6e\x76\x1e\xdc\x79\x04\x54\xef\xe3\x7d\x92\xd6\x04\x84\x51\x1e\x58\xae\x76\x90\xfc\x9f\x7b\x2c\x8a\xde\xa7\x93\x86\x1f\xa6\xba\xd6\xc0\x47\x71\x34\xce\xda\x15\x9d\xa0\xf7\xb1\x71\x72\x62\x99\x4a\x27\x40\xe7\x72\xe2\x35\x0b\xeb\xba\x5d\xb4\x47\x27\x45\xd9\xd9\xd5\x71\x68\x38\x2d\xe9\xd6\xdc\x34\x40\x3d\x37\xe9\xc1\xfa\x53\x80\xaa\x73\x92\x6b\xf8\x7d\xa0\x41\x9f\xc4\xb4\xe4\x29\x80\xe2\xb0\x44\xa3\x3b\xfe\x80\xfc\xbc\x53\x53\xab\xe6\x02\xb2\xbb\xe2\x49\x39\x5e\xda\x2d\x86\x94\xf3\xeb\x65\x1e\x20\xbd\xce\x3a\xfa\x61\x42\x7d\x8f\xf3\x0d\x75\xde\xec\xe8\xce\x3f\xf6\x7f\xc2\xed\x16\x41\xff\xc1\x8f\xb8\xfc\x5b\xca\x6e\x94\xcf\x2e\x0b\x79\xed\xac\xfe\x3a\x5a\x27\x1e\x8f\xdd\x4c\x6a\x0b\x47\x46\x07\x51\xf5\x44\xd4\x01\xda\x95\x1a\x4a\xb7\xa8\xfd\xd5\xf6\xd3\x82\x62\xc3\xa0\x83\x54\x2d\x59\xe5\xc2\xab\xb0\x0b\xd2\x8f\xd0\xfc\x99\x96\x15\x47\x79\x63\x54\xe3\x13\x54\x85\xb0\xdd\x7a\x9a\xf4\x09\xcd\x8b\x53\x89\xb3\x51\xb5\x48\xa7\x5b\xed\x0a\xc7\x32\x74\x8c\x1c\x01\x59\xcf\x8c\x75\x3d\x43\x80\x7a\xa6\x19\xa7\x9d\x24\x2b\xb2\x23\x19\x27\x56\xd3\xbf\x20\xe3\x68\x08\x55\xd0\x33\x64\x4f\x50\xdd\x21\xdd\x22\x97\x46\xe8\x05\xb3\x0a\x13\x5a\xb1\x08\x37\x62\x4f\x2d\xe7\x56\xd4\xb7\x38\x24\xf0\x0e\x91\x82\xf2\xfc\x7e\xa1\xbe\xbb\x57\xa8\xef\xed\xaa\x4b\x76\xfc\x76\xba\x8f\x71\xa5\x05\xef\x0f\x75\x36\x87\x57\xcd\x8e\xb3\xcd\x54\x1d\x39\x9a\xc7\x39\xa0\x83\x8a\xbb\xa9\xae\x19\xaa\x11\x4e\x55\xe7\x20\xb5\x48\xe2\x5e\x36\x7a\x1d\xa2\x75\x85\xb7\xfd\x31\x7a\xcf\x2e\xb1\x8c\xa7\x38\xcc\x31\x3a\x49\xf5\x41\x87\x3d\x49\x14\x9f\x61\x03\x38\x0f\xd3\xcd\xf3\x02\xfd\xbe\x66\x6f\x2e\xd1\xba\x43\xd1\xfd\x3a\xf1\x63\x40\x76\xa0\x16\xfd\xa6\xec\x0d\xd6\x54\x9f\xc9\x9e\x3f\x9e\xbe\x23\x7b\xfb\x32\xea\xa4\x91\x3d\x6c\x3b\x75\x24\xcb\xb6\x8c\xa3\x91\x96\xd5\xee\x1a\x91\x7b\x59\x83\x9e\x51\xc4\xaf\x0a\xf7\xf7\xcf\x27\x71\x9b\x2c\x54\xca\x04\x2e\x06\x71\x82\x1e\xc2\x51\xa1\x9e\x19\x2d\x74\x64\x38\x20\x28\xd0\x87\x91\x5e\xc4\x39\x5d\x9e\xd7\x4f\x1d\xda\x46\x75\xd8\x63\x1d\x43\x68\xfe\x47\x6c\xe4\xdc\xd7\x5e\xcf\x03\x94\xe7\xb6\x5b\xc4\x90\xee\xe4\xa6\x79\x47\xa9\x3a\xb4\xf6\xfc\x71\xea\x07\xb5\x72\x7f\x22\xd5\xb1\x5d\x75\x39\x17\x32\xbd\x2d\xaf\x17\x8f\x2d\x3a\x4f\xf3\x66\xd0\xdd\x8b\x54\x2f\xec\x58\x7a\x95\x7e\xce\x38\x30\x9b\xc6\x95\x6c\xd8\xed\x38\x1e\x87\xbb\xf2\x9a\x34\x62\xf2\x03\x3a\xd2\x5f\xba\x6b\x38\x9a\x48\xc6\xbb\x81\x8b\xa8\x83\xcc\xdd\xf3\xfe\x94\x89\xef\x06\x1d\xa6\xaf\xe7\x77\xce\xa4\xbf\x90\x37\xf0\x11\x57\xf4\x1b\xc2\x68\xa5\x22\x72\x0e\x17\x85\x7a\xf6\x79\x1f\x6e\x53\x84\x8a\x9a\xc8\xc5\x1c\x17\xfa\x5f\x88\x5c\xcc\x21\x1a\x1f\x89\x53\x03\x68\x7f\x18\xa7\xb2\x9b\xd6\x4b\x51\xaf\xc2\xa9\xbe\x1f\xee\x1a\x43\xdc\x4a\x70\xcb\xa3\x9b\x24\x76\xab\x42\x3c\xd1\x1a\x22\x07\xe4\x71\x25\x59\x97\x8f\x83\x34\xfa\xd7\x38\x9f\xcb\x20\x7a\xc1\x09\x17\xe9\x5f\x3f\x52\xe3\x0a\xe5\x8d\x3e\xc7\xb3\x28\xdf\xb6\xa3\x4a\x0b\x60\x30\x28\x9f\xfa\x79\xd6\x9b\xfc\x50\xd0\xc1\x28\xde\xad\x46\xe4\xe1\x63\xaf\x76\xf4\xbc\x8b\xf3\x47\xd0\x13\x78\xdc\xd6\x95\x56\x2e\x8f\x8b\x37\x65\x73\x1b\x45\x95\xd3\xc7\x96\x9c\xb4\x2a\x4e\xbb\x4f\x2b\xf9\x47\x2f\xbe\xd2\x48\xbd\x2b\xb0\xe2\xb9\x42\x25\xf9\x9a\x70\xb3\xfc\x92\xc0\xc7\x9c\x17\x3a\x52\x9c\x15\x2a\xce\x89\x42\x1c\x38\x17\x93\x50\xb9\x97\xfe\x7d\x87\x1d\x22\xe8\x39\x85\xc7\x1f\xba\x46\xb3\xe7\x1d\xc9\x20\x20\xe0\xd1\x49\xd2\x73\x10\xfb\x82\x79\x5b\xa6\xd2\xbf\x72\xc5\x22\xce\x07\xb8\x16\x5d\xa4\xf7\xee\x2c\x17\xce\xc3\x4c\xb4\xce\xa2\xd9\x3c\xcc\x85\xd7\xcb\x7b\x7a\x70\x1d\x85\xd6\x61\xf7\x88\xab\xd0\x1b\xfe\x88\xaa\x8c\x75\xad\x9f\xba\xf1\x38\x94\x7f\x57\x26\x05\x91\x0a\x2f\x4b\xca\xc8\x15\xcc\x8e\x7e\xa2\xd2\x9d\xaf\x50\x2b\xcd\xd7\x13\xff\xf3\x62\x2c\x57\x6c\xaa\x54\x4c\xa1\xef\xab\xdc\x7a\x97\xe6\xcd\x8b\xb8\xf7\x7c\xe5\x2b\xf0\x3e\x0f\xe4\xb8\xcd\x6b\xce\xed\x0d\x81\x30\x10\xfb\xe1\x5c\x1a\xce\x6d\x4d\x5e\xe8\xf0\x88\x48\x9a\xbf\x11\xe9\xb1\xf4\x57\xf6\xe4\x70\x5d\x9c\x1d\x96\xbc\x8a\x2c\x72\x40\xeb\x1a\x9e\xa7\xf5\xa4\xfb\x9e\x4c\xe2\x86\x96\x9c\xb8\x4a\xeb\x23\xe7\x9e\x39\x4d\x68\x3e\xa8\xf1\x71\x3e\x2e\x9d\xfb\x3d\x28\xab\x80\xd6\xdd\x36\x55\x82\x3e\xce\xbc\x52\x1a\xbd\xda\x4f\x9f\x53\xde\xad\x93\xf0\x32\x96\xc7\xe1\x7d\xbc\x02\xcd\xf7\x4f\x9a\xad\xe8\xcd\xf2\xe9\xc0\x00\xe2\x42\x3e\x57\xcc\xa0\x19\xf5\xe9\x9c\x37\x91\x77\x5f\xee\xed\xa1\xc8\x7d\xbe\x90\x58\xc1\xbf\x7e\x8b\x9e\xc0\xa7\xe2\x57\x94\xb9\xab\xf2\xb8\x12\xc1\x73\x2d\xee\x5f\xb1\x90\x1f\x44\x7e\x2a\xcf\xac\x66\x5c\xb2\x84\x7c\x71\x89\xce\xaf\x44\xff\xc3\xa2\x38\x07\x15\xac\x98\x42\x7d\x25\xfd\xd5\x38\x0f\xe3\xd7\xfc\x22\x65\x2f\xef\x6d\x57\x69\x3d\xb5\xd2\x99\x73\x5f\x0b\x8f\xdf\xa4\xf7\xea\xac\x9b\x79\x54\x85\x9f\x3c\xe5\x1e\xe5\xd9\xd1\x0f\x0b\x29\x5e\x03\xfc\x1f\xd3\x7e\xc4\x46\xf3\x19\xd1\x09\xad\x46\x54\xd0\x3e\xad\xb1\xce\x1b\xe2\x05\xea\x06\x7e\x10\xe2\xf0\x0b\x07\xc2\x3b\xfd\x45\xf6\x16\xea\xd6\x8e\x02\xdf\xb0\x42\xe0\x1e\x44\x9d\x83\xa3\xe3\x51\x83\x7b\xa8\xa9\x13\xf3\x51\xd0\xc3\x11\x75\x62\x9e\xed\xfd\xe7\xb8\xdc\xa4\xf7\x6b\xf8\x94\xd3\xb4\xcf\x16\x39\xa8\x40\x3b\x9e\xd7\x37\xda\x5d\xa6\xd1\xb7\xf6\xee\x75\xda\x4f\x78\xd8\xdd\xa6\xf5\xf7\x92\xe2\x7c\x9a\x0f\x2e\xaf\xee\x7d\x02\xe9\x23\x15\xf1\xf9\x70\xe3\x31\x9d\x57\xd8\x47\x3e\xa3\x59\xdb\xb7\x2b\xe7\x81\x3a\x3d\x7e\x45\xeb\xed\x96\x95\x1f\x88\x9f\x6a\xdc\xf5\x1b\x0d\xf7\x5f\xeb\xfe\xd5\x1c\x88\x70\xe2\xd1\x5d\xf0\x7f\x9c\x50\xff\x5f\x20\x70\x21\x7e\x42\xc7\xe4\x7d\x82\x2e\x46\x52\x18\xb7\xd9\x82\xbe\x45\xb5\x4e\x0c\x45\x5c\xe4\x84\xde\x25\xd6\x8c\x8b\xa8\x9f\x53\x2c\x74\x34\x79\x40\x5c\x5d\x35\x07\x65\xc9\x79\x98\x2d\xc5\xd7\x88\xdb\xf1\xd5\xbf\x41\x6a\x12\xde\xfe\x79\x34\x2a\xc5\xfe\x60\x6e\x3f\x0a\x89\xda\x99\xeb\xc5\x9f\xc2\x94\xe2\xa7\xf4\x73\xe3\xe6\x94\x13\x4f\x3e\x7c\x29\xa7\x95\xfa\x36\x7a\x4b\xdd\x58\xac\xa7\x7e\x25\x9a\x43\xec\x93\x24\xf2\x0f\xf5\x6c\x7f\x39\xf1\xa9\xd5\x1f\xc7\x5a\xe8\x77\x63\x2f\xf0\x10\xb3\x85\x38\x54\xf7\xc7\x11\x74\x73\x44\xee\x21\x55\xe8\x2b\x25\xf2\x0e\xa5\x42\xbc\xde\xaf\xf9\x75\x9c\x88\x7a\x28\xbf\xe9\xc4\xd0\xe7\x83\xcb\xae\x50\xdf\xbb\x80\x3d\x9c\x87\xd9\xec\x7a\x87\xb2\x8e\x8f\xcd\x3d\xae\x93\x56\x52\x44\xfb\x86\xa5\x15\x8f\x39\x37\xaf\xff\x8c\x7e\x7a\x6e\x9b\x0a\xb2\x93\x37\xbe\xa2\xfe\xab\xe3\x6e\x7e\xa0\xf8\xd9\x75\xfd\x4c\xf9\xb4\x4f\x3a\xd7\x45\x12\x39\x90\x66\x82\x3e\x48\x43\x81\xfa\x94\x6a\xf1\xfb\xc9\x97\x9e\xa0\x08\x5d\xcd\x81\x08\x27\x02\x4e\xc2\xf7\x2d\xfe\x2e\x8c\x0b\xc1\xef\x6a\x5d\x14\x81\xa7\x12\x79\x29\x31\x1e\xe2\x7c\xa9\x4c\xc3\x1f\x38\xa1\xea\xb8\xd8\xb1\xbf\xf1\x0f\xb5\xf9\x8f\xbf\x70\x0f\xff\x89\x03\xc9\xe5\x75\xac\x1f\x5b\x00\x2f\x0f\xe0\xfb\x05\xc9\xd8\x03\x3e\x8e\xe7\x75\xbd\xcf\x4e\x80\xe4\xf9\x7e\x30\x03\x4e\x3b\x02\x92\x77\x80\xe4\xcd\xfb\x21\x06\x78\xe0\x0c\x7c\x3c\x04\x54\x79\x03\x6f\xd7\xf2\xdf\xf9\x54\xa8\x67\x3f\xb0\xe5\xb6\x9a\x7f\x10\xea\xde\xbf\xe9\x7f\xd4\xe2\x3f\x4e\x0a\x75\xa1\xe3\xbf\xdc\x6b\xae\xe6\x1f\x02\xff\xec\xb7\xd8\x0f\xe3\x5f\x73\x20\x42\x7c\x88\x03\x39\x00\x4c\x9f\xc8\x3f\x26\x0e\x24\x1a\x90\x8c\xef\xda\x71\x78\x7b\x14\x88\x76\x00\xde\xbc\x04\x92\xda\x01\xef\xf5\x80\x2b\xbb\x81\x77\x71\x3c\x0e\x1f\x8a\x25\x23\x1a\x78\x25\xdc\x11\x2f\x39\xc9\x6d\x81\xe0\x5f\x6d\xfe\x41\xe4\x3f\xce\x09\x7e\x8a\xfc\x87\xc8\xbf\x88\xfc\xc3\xb1\x77\xbf\xc4\x61\x41\x4d\xff\x6a\xf7\x3f\xa9\xd6\xbf\xf8\x5b\x3f\x94\x5a\x1c\x88\xd8\xf7\xa2\x86\x2e\x8a\x17\xb0\x60\x38\xf0\xfd\x35\xe0\xbe\x1f\xf8\x3c\x4b\xb2\x47\x05\xde\x0f\x97\xec\x59\x80\xd7\x0a\x40\x64\x25\xf0\xfa\x09\x90\x18\x0e\xbc\xf6\x04\x2e\x67\x00\x2f\xfb\x01\xf7\xfa\x01\x6f\x76\x00\x6f\x5e\x00\x15\x42\x2d\xf5\x51\x43\x6e\xc5\xba\x77\x6d\xfe\xe1\x7f\xf1\x2f\x71\xbb\xb9\xfd\x27\xfe\xe1\x6f\x7d\x50\x6a\x73\x0f\xe2\xf7\xff\x1b\x0e\xe4\x87\x21\x30\xaf\x18\xf8\x54\x04\xac\xac\x04\x3e\xd4\x07\xfc\xd6\x03\x6f\xd7\x01\xbb\xd2\x81\x57\x87\x81\xa8\x6e\xc0\x0b\x73\xc9\xce\x00\x28\x8f\x01\x2e\x0d\xe0\x75\xef\x82\x52\xfe\xf9\x57\xfb\x80\xa7\x42\x6f\x88\x7b\x82\x86\x4c\xce\x14\x6e\x45\x0e\x48\xe4\x1f\xc4\xfe\x37\xbf\xf9\x7f\xa1\xa6\xff\xff\xc4\x3f\xfc\xc6\x41\x88\x7a\x10\x13\xfe\x1c\x8f\xff\xc5\x81\x4c\x5c\x04\x7c\xdd\x0b\xcc\xb5\x03\x3e\x36\x01\x56\x64\x02\x55\x5d\x80\xf5\x7b\x81\x17\x27\x81\x1d\xed\x80\xf2\xdb\x92\xb5\x0c\xf0\x2c\x1f\x38\x21\x0f\x3c\xbd\x07\x64\x2e\x03\x9e\x06\x01\x05\x25\xc0\xb3\x32\xe0\xd5\xdd\x9f\xf3\x41\xe4\x81\xc4\x71\x20\xce\x03\x91\x7f\xa8\x1e\xff\xee\x7f\xf6\x5f\xe4\x1f\x0e\xfe\x52\xdf\x14\xfd\x31\xaa\xa5\xe7\xf0\x37\xfd\x8b\xda\xdc\x83\xf8\xf3\x35\x38\x10\x3b\x60\x50\x3f\xe0\x47\x33\x60\x7c\x23\xe0\xe3\x06\xc9\x5a\x03\xa8\x5a\x02\x2c\xf1\x05\x5e\xf6\x00\xd6\xa9\x01\x65\x47\x80\xa0\x79\x80\x64\x95\x2d\xd9\xd1\x95\x5a\xf3\xdc\x55\x72\x1b\xb8\x78\x0a\x78\xbc\x0d\xb8\xe7\x06\x94\x58\x00\xaf\x3f\xfd\xe4\xe3\x44\x5d\xa0\xcb\x83\x6a\xe6\xc1\x6a\xfe\x43\xc8\x0b\xc7\x3a\x09\xcf\x5d\xd0\x1e\xf9\x37\xfc\x43\x6d\xfe\x43\xe4\x1b\xfe\xa6\x7f\x21\x7e\x5f\x6d\x0e\x84\xc6\x85\x2d\xd0\xf7\x1b\xf0\x29\x08\xb0\x1f\xca\x73\xdc\xd4\x00\xe0\xc5\x39\x60\x41\x0e\xd7\x42\xf2\x8e\x05\x4a\x27\x01\xfe\xf3\x81\xe2\x04\x20\x7c\x36\x50\xd4\x1a\x88\xbf\x09\x48\x56\x67\x99\x1b\x79\xdd\xff\xde\x37\xe0\xfe\x2d\xe0\x65\xdd\x9f\x7a\x28\xe2\x38\x10\x75\x50\xc4\xfa\xbf\xe8\xff\x91\xb8\x9a\xe3\xfe\xa0\xd0\x7b\x69\xbf\x30\x8e\x44\x0e\x60\xf7\xdc\x9f\x71\xa8\xf6\xbf\x16\xff\x21\xd6\xc1\x45\xce\x41\xb4\xb5\xfb\xa1\x88\xf1\xa0\xf9\x62\xc7\xe7\xc9\xe7\x55\x40\xd7\x42\xe0\xbd\x25\xef\x9b\xf4\x72\x33\x30\x29\x07\x28\xb7\x05\xe6\x5b\x01\xa5\x13\x25\x7b\x15\xa0\x68\x3c\xb0\xc5\x06\x78\x38\x8c\x73\x73\x92\xd5\x79\x7c\x0e\x50\xf0\x9e\xeb\x06\xdd\xed\x02\xdc\xad\x04\xf2\x96\x02\x2f\x35\x24\xab\x60\xfe\xb7\xc4\xf7\x62\xf2\xdd\x9a\xe3\x5f\xe4\x3f\xa2\x86\xd4\x7c\xee\xe1\x82\xe6\x4e\xa8\xd0\x47\x49\xe4\x1f\x76\x06\xfc\x8c\x43\x6d\xff\xff\x6d\x1f\x94\x3a\x3d\x6b\xfe\x5c\xa3\x60\xe0\xdb\x78\xa0\xf9\x1c\xe0\xbd\x3c\xd0\x71\x3d\xf0\xb2\x18\xe8\xfb\x12\x78\x7e\x1d\x18\x6b\x0b\x3c\x7e\x0b\xcc\x56\xe7\x7e\x2f\x4f\x05\xee\x15\x03\x9b\xe2\x81\xbc\x2f\xc0\x9e\xf9\xc0\xed\xb1\xc0\xb1\xbe\xc0\xcd\x0f\x80\x64\x47\x9b\xeb\x0a\xe4\xd7\x03\x72\x33\x01\xc9\x0a\x5d\xd4\x05\x12\xe7\xc1\xc9\xdc\x9a\xfe\x47\x08\xf9\x31\x5c\xc8\xa3\x7b\x85\x5e\x45\x22\xf7\x22\xfa\x1d\x28\xfc\x1e\xff\x3e\x3f\xe3\x20\xf2\x2f\x7f\xe9\x83\xf2\xaf\xad\x24\x1e\x9f\x17\x03\xba\x2e\xc0\xeb\x60\xc0\xc2\x8b\xf7\x84\xeb\x11\x0f\x3c\x2e\x06\x86\xa7\x03\x45\x63\x81\x69\xf3\x80\x82\x05\xc0\x92\x6d\x80\x64\xf5\xea\x1b\x0a\xdc\x90\x07\x42\x0a\x81\x9c\x37\xc0\xb1\x91\x40\x96\x1c\x90\xde\x19\xb8\xa6\x0b\xe4\xe7\x03\x97\x2f\x00\x95\x9f\x81\x0b\x02\x17\x25\x72\x50\xb1\xab\x05\xff\x87\xd7\x1c\xef\x21\xfd\x6a\xf9\xdd\xa3\xa6\xdf\x62\x8f\x22\xbf\xee\x3f\xe3\xf0\xff\xe6\x3f\xc0\xd7\x45\x7c\x95\xca\xed\xdb\x76\x80\xaa\x3e\x50\xde\x01\x30\x39\x05\x94\x44\x03\x1d\x56\x03\x0f\x32\x81\x81\x7d\x00\xc9\x2e\x6d\xd2\x75\xe0\x56\x16\xb0\xd0\x0e\xc8\xf6\x07\xd6\x75\x00\xae\x75\x05\x82\x19\x70\x29\x17\x38\x92\x0c\x64\xae\x04\xce\x6f\x05\x2e\x44\x02\x79\x83\x80\x73\xaf\x80\xca\xe1\x40\xf2\x6a\xae\x8f\x73\xec\xb8\xd4\x3b\x89\x8d\x9c\x53\x8f\xc8\xf5\xb0\xe6\x52\xb4\xcf\xdc\x65\x52\x87\xce\xa1\x83\x74\xeb\xca\xb2\x5f\x78\x17\xd1\x6f\xdf\x51\xa0\xda\xf6\xba\x74\xfe\xb1\xf7\xb6\x7f\x88\xc3\x7f\xe0\x3e\xf8\xee\x11\x78\xab\xcd\x6d\xf9\x7b\xa0\xde\x19\xa0\x64\x2a\xd0\xe8\x14\xf0\x60\x2c\x60\xf6\x03\xb8\xb3\xaf\xae\x6e\x2f\x75\x20\xfb\x83\xec\xb0\x31\x53\x80\x2b\xdd\xe4\x23\x9d\xa7\x00\x19\xcb\x94\xac\xbc\x9c\x81\x73\x52\xca\x5d\xb6\xbf\x02\x52\x6c\x55\xfa\xc4\x9c\x04\x92\xbe\xa9\xca\xa5\xf6\x05\x4e\x75\x55\x5d\x72\x4b\x15\x38\x7e\x5e\x75\x5f\x59\x17\x20\xce\x43\xf5\x1a\x3d\xff\x3b\x6a\xb4\x9f\x0c\x9d\xa7\x3a\x56\x62\x77\x68\xab\x91\xdd\xfa\x56\x99\xee\x21\x6e\x1a\xa4\x74\x92\xfc\x6e\xa4\x48\x3b\xbb\x35\x71\x8a\xfb\x24\xd6\xab\x83\x22\x71\xf6\xab\x97\x2a\x90\x4e\xed\xca\x56\xb2\x6f\x7e\x8b\xc3\x7f\xf0\xff\xab\x70\xbb\xea\xcd\xc1\x3a\x54\xef\x28\x5f\x5f\x8f\xea\x1b\x8f\xe2\x64\xe9\xf4\x28\xff\xb6\xa2\x53\x83\x51\x40\xce\x5a\x35\x97\xa6\x8e\xc0\xa5\xd7\x5a\xdb\xba\xe4\x00\xe7\xae\x6a\xcf\x1d\x36\x56\x2a\xf8\xcc\xd6\xc6\x1d\xa6\x2b\x49\x6b\x9c\xd4\x6b\x7c\x6d\xf9\x0f\x59\xb3\xb8\x96\x3a\x96\x5b\x72\xe4\xa4\x8e\xd4\xd3\x19\xb2\xff\xb1\xbc\x6d\x74\xa0\x4e\xd3\x44\x07\xf9\xab\x11\x07\x74\x86\x5c\xef\xa7\xd0\xf2\xc0\x4a\x1d\xb7\xc7\xcb\xe4\x4f\x85\x57\xe8\xaa\x7e\x0b\x91\x5b\x17\xdc\x4b\xf7\x35\x63\x72\xa1\xdb\x54\xf4\x1b\x33\x26\x3f\xc4\x37\x4d\xd7\x95\xb1\xfa\x8d\xd6\x38\xe9\x49\x31\x56\xbf\xab\xa7\x8a\xce\x5c\xc6\x64\xc6\xac\x34\xd5\x79\xc9\x98\x4c\xe0\xf2\x05\x3a\xd7\x18\x93\xb1\x5f\xaa\xaf\x93\xc7\x98\x4c\x47\xb7\x18\x5d\x43\xc6\x64\x7a\x2f\x58\x21\xf9\x3e\xe9\x79\xff\xde\xff\x3a\x54\x7f\xf9\x3c\x4f\x86\x76\xbb\x95\x06\x2a\xa4\xb2\x5c\xa2\xae\x45\xfb\xea\x07\xce\xda\xc4\x49\xdc\x78\x62\x40\x75\xbd\x2b\x0b\x8c\xec\xa4\xb5\x81\x73\x3e\x4d\x07\xeb\xd8\x4b\x1d\x4c\x2c\x69\xba\xc6\x72\xa4\x6c\x6e\xdc\x7c\x53\xd6\xd7\x58\xfe\x4a\xcc\xbd\x66\x6b\x27\x9c\x51\xda\x7d\x50\xbd\xd9\x46\xd7\x67\x2a\xad\xf6\x86\x36\x0b\xf6\x19\xab\x16\x15\x32\xde\xf4\xf5\xee\x49\x1a\xad\x77\xac\x33\x5d\x14\xa7\xa6\xd9\x31\xf0\xb8\x69\xdd\x4c\x77\xcd\x20\xff\xa1\xa6\x32\xf7\x9d\x34\xc7\x6d\x0d\x35\xdd\xf5\x2e\x40\xc3\xd0\xcf\xb2\xd9\x50\xc6\xd4\x0e\x78\xed\x68\x66\xca\x98\x6a\x87\x15\xef\x4d\x57\x32\xa6\x1c\xb3\xb8\x5d\xd3\x2c\xc6\x1a\x0c\x5c\x18\x62\x72\x96\x31\x25\x5d\xd7\x61\xc6\x17\x19\x53\x6c\xe8\xb2\xc9\x58\x91\x31\x85\x8e\x73\x2e\x18\x2d\x64\x4c\x2e\x6d\x56\xb6\x91\x11\x63\x72\x23\x66\x34\x31\xd8\xc1\x98\xec\x97\xff\xed\x3f\xe7\x21\x3e\x4c\xd7\xa4\x7d\x74\xd9\x6b\x3d\xb2\x8f\xea\x9a\xd2\xae\x38\x3f\xc0\x8c\x76\xb7\x59\x1e\x6d\x28\x0e\x99\x17\x48\x0e\x02\x67\x76\x76\x30\x96\xd8\x84\x2d\xd6\xed\xd5\xcf\x02\xd1\x97\x3b\x0d\x68\x66\x53\xff\x43\xd8\xc3\x0e\x51\x5d\x3e\x2a\x7f\xd9\xd5\xae\x43\xca\x08\x5f\xf5\x82\x80\xb5\x1d\x14\x67\xde\x6f\xf8\x76\x53\x68\xfb\x8e\xab\x99\x76\xfe\x7a\x8f\x76\xf6\x81\xab\x75\x95\xd7\x0c\x6b\xeb\x11\xfd\x46\x2f\xcc\xe3\xaa\xd5\x95\xd4\x0d\xfa\xe3\x56\x77\xb1\x9a\x71\x3b\x42\xbf\xef\x4a\x1b\xab\x1b\x2f\xf6\xe9\x39\x2e\x53\x6f\x7b\x86\x31\x9d\x16\x0b\x4e\xb5\xed\xc4\x98\xb6\xe2\xdc\x8b\x96\x67\x19\xd3\x5c\x32\xab\xab\xe5\x60\xc6\x34\xec\xa7\xe5\xb7\x1e\xc3\x98\xda\x83\x29\x7e\xe6\x11\x8c\xa9\x9a\x4e\x5e\x61\x76\x94\x31\x15\x5b\x87\xcd\xad\x9e\x30\xa6\xdc\x6e\xa2\x47\x4b\x7d\xc6\x94\xe2\x27\x58\x36\x7f\xc6\x98\x62\xe2\xdf\x9e\xbb\xa8\x0b\x51\x35\x53\x9f\x8e\x47\xca\xf4\x79\x3f\xa4\x87\xfd\xdb\xd2\xe9\xf2\xed\x13\x9d\x49\xa7\xf5\x72\x61\x37\x3a\x0d\x48\xf3\xea\x43\xf7\xd2\x12\x03\xfa\xd1\x69\xd9\x91\x38\x7e\x7f\xfe\xc0\xe6\x41\x91\x72\x83\x81\x90\xed\x83\x2a\x0c\x54\x65\x46\x6e\x0b\x1c\xa0\xd7\x36\x52\x79\xb5\xcf\xeb\xbe\x8e\xfd\x97\x36\x32\xf0\xb8\xda\x67\x94\x43\xb6\xae\xfc\x72\xfb\xde\xca\x8b\xdb\x19\xb8\xb9\x2d\xea\x55\xb0\xf1\x48\x93\xae\xf3\x52\x7b\x46\x84\x6f\x30\x31\x9d\x93\xd7\x23\x2a\x71\x41\xd3\x36\x33\x8b\x7a\xc8\x65\x3d\x6b\x3a\x6d\xfa\xa7\xee\xe5\x4f\xa2\x4d\xd6\x4d\xef\xda\x23\x9d\xb1\x26\x6d\x1c\x33\xbb\x8f\x64\x4c\x3f\x6b\xc2\xa2\xae\xeb\x18\xd3\x39\x33\x76\x9b\x75\x38\x63\x8d\x96\x8f\x3e\x60\x5d\xc5\x58\x23\xd3\x91\x26\x9d\xeb\x31\xd6\x50\x6a\xe4\xc0\x0e\x4f\x18\xd3\xf0\x1b\x9e\xdc\xfe\x30\x63\xea\xea\xc3\x7a\xb6\x1b\xc4\x98\x6a\x9e\x9d\x4e\x9b\x32\xc6\x94\x9f\xfc\xee\x3f\xe7\x9f\xde\x7c\x6f\x42\xfd\xb9\x9f\x58\x5b\x3d\x90\xd8\xfb\xce\x36\x54\x7f\xb8\x35\xa9\x0f\xa9\x0a\x5f\xb4\xe1\xb7\xea\xaa\xf9\x17\x57\x7b\xaa\x6b\x1e\x8e\x19\x4d\xe7\xb4\xfb\xac\xb8\x6e\x46\xd0\xbd\x09\x54\xdf\xdd\xec\xe4\x10\xdb\xc8\x01\xf0\xda\x33\xc1\xb4\xd5\x5e\xc5\xe8\xa5\x72\x63\x63\x7a\x9c\x6c\x28\xe3\x1c\x38\x4a\x77\xd4\x4a\x83\x66\xd3\x57\xdb\x9f\x70\xf6\x31\xb6\x74\x28\x1e\x31\x70\x4d\xa0\xe9\xac\x71\xeb\x87\x5d\x08\x69\xda\x3c\x68\x54\x83\xa1\xaf\xe2\x96\xb6\x34\x1b\x21\x6b\x97\x7e\x69\x70\xcb\x29\xc3\x94\xed\x3c\x0b\x4f\xb5\x28\x18\xea\x64\x97\xf9\x79\x77\xb3\x39\x43\xc2\x86\xc8\xb1\xe7\xc6\xc5\x03\xaf\x0f\x0c\x64\xcc\xd0\xbe\x7f\xaf\xfe\xc6\x8c\xe9\xf5\xef\x37\xbe\xef\x44\xc6\x74\x4e\xf4\xb6\xea\x6d\xc2\x58\xa3\x7c\xdb\xcb\xb6\xd3\x18\x6b\x34\xc4\xb6\xa2\x87\x0b\x63\x0d\x27\xf5\x48\xeb\x76\x85\x31\x8d\xc9\xdd\xbf\x75\x1d\xc1\x98\xfa\x80\xea\xd3\xa0\xe1\x0d\xe9\x1c\xe9\xed\xc3\x66\xa4\xff\xf1\x54\xae\x23\xd5\xa9\x0a\x36\x72\x15\xe5\xec\x53\x03\xe9\x54\x27\x53\x95\xdf\xae\x4c\x4e\x1a\x4b\xf5\xdd\x04\x43\x07\x3a\x87\x8b\xd1\x9f\x42\x75\xbe\xbd\x31\xd3\xe9\xcd\x11\xc8\x78\xdd\x74\x7d\xd4\x9c\x8f\x12\xbb\x5a\xcd\x65\xbd\x52\x27\x60\xe1\x05\xe7\x86\xc6\xfd\xea\xdf\x9d\xb9\x70\xf6\xa1\xce\x23\xd4\x56\x4e\x9c\x37\xe3\xbb\xdd\x26\x9d\x08\xfb\xfc\xe9\x52\xd3\x43\x0d\xdf\xd9\xa9\x4e\xab\xbf\xfa\xbc\xb1\xe9\x80\x2e\x53\xdb\x6c\x5f\x6f\xb2\xbe\x8f\xe3\x94\xc1\x47\x1c\x4c\x5e\xf7\xba\x30\x39\x2a\x7d\x99\xc9\x93\x1e\x8f\x26\xaf\xbe\xdf\xcf\xf8\x66\x0f\x87\xc9\xbe\xef\xc7\x1b\x1d\xec\xee\xe5\x70\x99\x31\xfd\x21\x5d\x67\x8d\x8f\x67\x4c\xc7\xb0\xab\xe2\xe8\x95\x8c\x69\xaf\xb3\x71\x19\xd9\x9b\xb1\x46\x8e\xd6\xd2\xc3\x9f\x30\xa6\xf9\xba\xf3\xe7\xa1\x1d\x18\xd3\xb4\xe8\x9c\x38\x38\x90\x31\x8d\xa1\x9d\x3c\x07\x64\x30\xa6\x76\xa3\xe3\x83\xfe\x52\x8c\xa9\xfe\x10\x39\xa0\x37\x37\x5a\x52\xfd\x56\xe4\x9f\xee\x2b\xf4\xa5\x15\x41\xae\x0b\xf7\x3b\xd3\x79\x1c\xe9\xbd\x9c\x1e\xeb\x48\xa7\xeb\xf1\x39\x33\xda\x70\xff\xf9\xe9\xe1\x1e\x7d\x67\xca\x13\x81\x3d\xf8\xa9\xea\x06\x07\xce\x49\xac\xc4\x52\xaa\xff\x38\xab\xae\x4c\xc2\x1e\x60\x9a\xfd\x2a\xe3\xc6\x37\xea\xa6\x8d\x95\x5d\x5e\xd5\x46\xb6\x81\xfa\xe0\x97\x4b\x37\xf5\x8b\xd0\xea\xd2\x67\xd5\x92\x18\x27\xeb\xc6\xcb\xbb\xe7\x2e\x2e\x5d\x3e\x48\xb7\x4f\x17\xd9\xc5\x4e\xfe\xcb\xf4\xba\x74\xf4\x5c\x34\x29\xba\x50\x6f\x6b\xbb\xf7\x6e\x1e\xe7\x96\xeb\xd9\xb5\x1d\xe2\x66\x9f\xff\x59\x77\xb2\xd5\x61\xb7\x89\x55\x17\x1b\xbb\x58\xcd\x77\x75\x65\x4c\xeb\x78\x9b\xa4\x39\x4b\x19\xd3\x4c\x6c\xa3\x38\x43\x83\x31\x8d\x0e\x6d\x54\xa7\x18\x31\xa6\x3e\xb9\xf5\x6a\x47\x5f\xc6\x54\x8f\x5b\xdc\x98\x18\xc4\x98\x4a\x94\xf9\xcb\x71\xf7\x18\x53\xde\x62\x3e\x7b\xcc\x62\xc6\x1a\x5c\x37\x3f\x3b\x6a\x1e\x63\x0d\x0e\xbc\x5f\x63\xa1\xcc\xe7\x3f\xe7\xbe\x7e\xf2\x4f\x7c\x7c\x67\xaa\xf2\xd3\xc1\x33\x95\xfc\xf9\x8a\xfc\x4f\x8c\xfe\x42\xaa\x8b\xef\x7d\xb3\x84\x78\x87\x1d\x0d\x56\x52\x1e\xf1\x0b\x5b\x4d\xf1\xf3\xe8\xe1\x45\xf5\x0d\xd7\xa2\xb5\x54\xff\x72\x02\xaf\x9b\x8f\xdc\xe3\x97\xa9\xda\x0c\x18\x20\xe5\x2b\xd3\x3c\x4b\xee\x4c\xd7\xc4\xf5\x66\x3d\xdc\x54\x0f\x76\xec\xeb\x73\x6d\xfc\x1d\x75\xe7\x36\xcf\x7d\x96\x2d\x5a\xa0\x11\x6a\x7e\x62\xdd\xbb\xcd\x3b\x34\x87\xb4\x0c\x5c\x67\x19\xd1\x49\x73\x4a\xf3\x11\x6b\xe3\xcf\xb6\xd0\x94\x37\xcd\x5c\xf3\xe5\xf6\x53\xf5\x57\xa6\x7d\xd6\xbc\x7a\xd5\x41\xcd\xd6\xb4\xb5\x67\x21\x63\xca\xef\x4c\x0e\xad\x38\xcc\x98\xd2\x7d\x93\x4f\x8b\x3b\x33\xa6\x34\xb7\x69\x1b\xd7\x48\xc6\x94\xea\x98\xd8\xbb\xec\x62\x4c\xe1\xab\xc9\x99\xb9\x6d\x19\x53\xf8\xd2\xd4\x78\xe6\x1e\xc6\x14\x6e\x18\x0f\x9c\xfa\x83\x31\x79\x13\x63\x7f\xa7\x08\xc6\xe4\xde\x94\xe9\xdb\x52\x1d\xe7\x41\xd8\x30\xba\x2d\x7b\x63\xcd\x38\x1a\x1f\x99\xbd\xa7\xd1\x39\x75\xca\xaa\x79\x74\xfa\x79\x3c\xca\x8d\xce\xe3\x63\x1e\x2e\xa7\xba\x75\x58\x8f\x55\x74\x7a\xbc\xa3\xd8\x8b\xf2\xe9\x46\xc6\xfb\xa7\x78\x0e\xda\x40\xe7\xda\x8b\xe0\x47\xb7\xec\xa6\xa7\x73\x4e\x62\x94\x47\x20\x9d\x9e\xf6\x2a\xda\xb9\xbe\x9e\x2c\xd0\x39\x62\xc7\x53\xfd\xef\xf5\xf2\x2c\x9e\x6f\xff\xd1\xe9\xae\x82\x65\x8b\x39\xdb\xf3\x47\xfa\x29\x8e\x32\x79\xb3\xdd\x63\xbe\xbe\xe2\x13\xa3\x65\xdb\x0d\x7c\x1b\x28\x7e\xd6\x4f\x08\x2a\x09\xbf\xa4\x38\x59\xb7\x3c\x68\xc2\xe9\x4f\x0a\x7e\x3a\x77\x03\x8b\x6e\x42\xde\x51\x67\x74\xe0\xc4\x17\x2a\xf5\x63\x75\x16\xfb\xab\x32\x26\xab\xa5\xf3\xc3\xd7\x83\x31\xd9\x61\xba\x1b\xd7\x0c\x60\x4c\x76\xad\xee\x13\x77\x7f\xc6\x64\xb7\xe8\x8e\x58\xd9\x9c\x31\x99\xf3\x3a\x89\xcb\xa6\x32\x26\xfd\x51\x77\x9f\x5b\x2e\x63\x32\x5b\x75\xad\x5d\xf9\xc7\x06\xce\xaf\x19\x93\x8e\x7c\x10\x3b\x9c\xea\xef\x37\x55\x1c\xe8\xb4\x3b\x33\x95\x57\x91\x92\x2d\x5c\x69\xbe\xc7\x87\x2e\xa5\xf5\xc1\xe1\x2e\x1e\x74\x8a\xbe\xef\x84\x17\xe9\x48\x05\x07\x6d\x20\xff\xb7\x34\xf0\x23\xbe\x63\xad\xc1\x16\xaa\x22\x2c\x2b\x0a\xa0\xaa\xed\x9c\x1f\xfc\x74\x7d\x92\xfe\x2e\xca\x3b\x83\xaa\xf6\xd0\x39\x78\x07\x4b\x5e\x9d\x6b\xf1\xf6\xe0\x02\x8d\x3b\x80\x61\xf4\x81\x0b\x96\x83\xa4\xfb\xe9\x0e\x38\x28\x6d\xa7\x2a\x2d\xa5\xed\x76\xb0\xdd\x9c\xe1\x75\x57\x6a\x4f\x3e\x98\xe0\x33\x19\x68\x58\x75\xd0\x3e\x4c\x06\xd0\x68\x7b\x60\xe3\xa9\x4a\x40\xad\xf1\xfe\xc7\x39\x96\x80\x8a\xcd\xfe\xce\xcf\x4b\x00\xa5\x75\x61\xb4\x8e\x96\xef\x15\x4c\x75\x3d\xd9\xc4\x00\x5a\x77\x4b\x4f\xdb\x4c\xf5\x0a\xe9\x8f\xbe\xfd\x69\xef\xf8\xcd\x87\x38\xf4\xba\x11\x5e\xa4\x4b\x28\xd3\x6c\x35\xdd\x6b\xae\x67\xb5\x82\x38\xeb\x5b\xdf\x1c\x49\xcf\xe1\xd2\xd1\x39\x54\x9f\x49\xd1\xe5\x3c\xc4\x09\xf7\xe5\xc4\x8b\x1e\x1a\xe0\x45\xef\x8b\xfd\xaf\x37\x50\x3d\x6b\xd7\xc2\x4d\xa4\x6f\xe0\xaf\xcf\xf5\x51\x36\xb8\x70\x7f\x57\x59\xee\xa4\x71\xe5\xaa\x11\x42\xd5\xe9\xa9\xe5\x7b\xa9\x5f\xd4\x98\x00\x5e\x2f\xef\x3d\x9d\xab\xd2\x9b\x27\x70\x2e\x44\x33\x23\xce\x4a\xfa\x02\xa0\x72\x3c\xee\xa8\x69\x0b\x40\x31\x39\x2e\xae\x77\x12\x20\xf7\x28\x2e\x7c\x4a\x63\x40\xfa\x62\xdc\x99\x55\xdf\x81\xba\xf2\x71\xae\x3b\x5b\x00\xd8\x79\xac\x34\x8e\x9e\x44\x6c\xf6\x15\xca\xc4\x47\x5d\x1f\x13\x61\x71\x74\x0a\xa3\x4a\x51\xc4\x21\xfe\xee\xdb\x2b\xd4\xfd\x83\x4f\x72\x1b\x44\xeb\x6c\xb4\xf3\x37\xe0\x1f\x6f\x12\xee\xfd\xfb\x0a\xe7\xf6\xeb\x7a\x48\xec\xb5\x68\xce\x7f\xa5\xb5\x58\x42\xef\xb7\x93\x45\x9e\x94\x10\x8e\x2e\xf5\xa1\x79\x70\xc0\xd1\x8f\xbe\x3b\xa4\xd2\x3f\x81\x7e\x6b\x3c\xe7\x22\x7c\x73\xf8\x73\xf6\xb0\xe3\x3c\xcc\xe2\xd9\xbc\x8f\xc6\xec\x1c\xee\xb7\x83\x61\x14\x8d\x0b\xbb\xe2\xc3\x14\x57\x9b\x9b\x71\x94\x1f\x9a\xf5\x3d\x49\x75\x71\xf9\xdc\xd3\xaf\xf9\x1b\x3b\x45\x56\x9b\x94\xf3\x53\xa4\xba\xd0\xca\x24\x79\xc5\x78\xaa\x14\x27\x8f\x5c\x4a\x95\xf8\xe4\xbe\x5c\x79\xe8\xcc\xf6\x23\xf4\xf9\x33\x0d\x33\xe9\x2f\x9f\x56\x2d\xa2\xca\x61\xe2\xce\xcf\xa4\xc0\x13\x2f\xf4\xf5\x10\xf5\x2d\x0e\x08\x15\x93\x30\xa1\x1f\xc6\x6e\xa1\xff\xc1\x4e\xa1\xa2\x12\xe8\xc5\xed\x56\xe2\x01\xce\x67\xaf\x20\xae\x23\xb1\x33\xcf\x6b\xc7\xd6\xf8\xd2\xbd\xf4\x08\xaf\xad\x34\x1f\x42\x5d\x78\xbf\x98\x40\xb6\x8b\xeb\xc0\xb0\x3d\x74\xff\x7f\x5d\xf7\x03\xe4\xcf\xf2\x74\xae\x0f\x33\x3f\x20\xe6\x26\xcf\x07\x5c\x27\x65\x74\x31\xd7\x87\xe9\xbf\x8f\xf7\x95\xe8\x58\x7a\x9a\xf6\x21\x46\x53\x52\x29\x9f\xca\x36\xe5\xfd\x73\x80\xcc\x20\x2d\x5a\x99\x64\xa4\x76\xa2\x8e\x45\x19\x13\x85\x0c\xed\xec\x46\x6f\xe6\xcc\x6d\x5b\x28\xf2\x19\xf3\x22\x29\x03\xa7\x5f\x3e\x47\x23\x2a\xdd\xf1\x1e\x65\xaa\x0b\xaf\xde\x53\x1d\x47\xac\xe7\x9f\x14\x38\x88\xdf\xb8\x18\xc1\xee\x17\xe2\x52\xcd\xc5\x50\xc7\x01\x51\x07\xea\x58\xd7\x4d\x54\x8f\x8e\x3a\x1a\x48\xfc\x4b\x18\xe3\x9c\xdb\x4e\x2b\xae\x7f\xb4\x35\x60\x3f\xad\x9f\x7c\x92\x23\xa9\xea\x26\x72\x40\x6e\x76\x47\xe9\xe9\xcc\x72\x89\xa3\xf7\xaa\x43\x08\x7f\xde\xc3\x97\x26\x51\xde\xec\x75\x39\x85\xe2\x63\x99\x75\x9e\x74\x36\xf4\x9a\x5c\x24\xae\x54\xca\x8d\x73\x02\x92\x15\xb9\x16\xef\xd0\x96\xcf\x49\xed\x6c\x1b\x7b\xaa\x6f\x66\xc7\xce\x0f\xe0\xd6\x8f\x76\x6e\xd9\x96\x07\xb9\x92\x55\xfc\x59\xca\xe0\xd7\x47\xde\x7c\x06\xaa\xe7\xbf\xea\x4f\x33\x5b\xa8\xdf\x9e\x13\xfa\x7c\x9c\x11\x3a\x2d\x9c\x14\xfa\xc1\xfc\x95\x8b\xa1\x71\x13\x97\xb5\x99\xf2\x62\x8c\xd9\x76\xf2\x2b\xfc\x76\x08\x3d\x95\x5d\xe9\x5c\x17\xc7\x3f\x3d\xe2\x04\xe5\x81\x6d\x87\x28\x3f\x8a\x1c\xd0\xb2\xc9\x9c\x0b\x99\xf7\xe6\x14\xf1\x5f\xd3\xd5\xb8\x1e\xd0\xd8\x7b\xbc\x5e\x6c\xd7\xed\x1c\xd5\x87\xbb\xb7\xe1\x5c\x88\x45\xf1\x15\xda\x7f\x68\x6f\xe2\x3a\x0a\x38\x79\x4b\xa8\x77\xe7\xc5\x6a\x10\x89\x94\x57\xd0\x96\xde\x34\xf9\x85\xc3\xa9\xfe\x9d\x1f\x30\x97\x22\x75\x77\x84\x0f\xef\xe8\xe5\x18\x46\xe4\x59\x5e\x31\x57\x66\xc9\xcb\xbb\x41\x7e\xdc\x99\x5c\x46\x37\xf0\x6f\xf6\x67\x34\x4e\xae\x09\xf7\xfa\x33\xde\x72\x9b\xb6\x98\xdb\xe4\x7b\xdc\x9e\x12\xb8\x87\x04\x81\x23\x8b\xa5\xf1\x71\xb8\x2c\x98\xf6\x07\xfb\xa7\xec\xa1\x3c\x17\xe2\x7d\x90\x46\x63\x60\x24\xd7\x03\xda\xc8\x62\x69\x1c\xac\x09\x88\xa3\xf7\xe9\xca\x14\xae\x07\xe4\xe6\x95\x4c\x0b\x89\xd9\xeb\xce\xd2\x3c\x72\x52\xb8\x40\xef\x97\xd1\x53\x33\x89\x1b\xe9\xff\xe2\x32\xf5\x09\xb1\x0e\xb8\x4e\xe3\xa1\x85\xfe\x4d\xf2\xbf\xe1\xdc\x3c\x3f\xee\xff\x7d\x17\x6e\x1f\x35\x53\xa3\x8c\x5c\x14\xd5\x86\x66\xe8\xa3\x19\x83\x29\x53\x3d\xf2\x9e\x49\x3b\x98\xc7\x96\xde\xf4\x17\x8b\xd5\x76\x13\xdf\x50\x3c\x9b\x2b\x31\x3d\x4a\xbc\x4e\x0a\x4d\x85\x7b\x78\xe7\xa1\x42\xe9\x1f\xf4\xa6\xbe\x23\xd4\xf7\x73\x84\x7c\x79\x55\x78\xfe\x99\x42\xfd\xff\x5c\x19\xb7\x29\x03\xb9\xe5\xbc\x50\xc4\x1c\xce\x7f\x85\xba\x44\xd0\xf8\xde\x51\x7c\x94\x54\x68\xb6\x86\xf3\x3e\x51\xeb\x77\x9d\xa2\xaa\xb1\x27\x38\x0f\xb3\x6c\x32\xe7\x80\xe6\x15\x73\x3e\x60\xa6\x42\x06\x55\xdb\x27\xe9\x5f\xa1\xf1\x34\x22\x99\xf3\x5f\xfd\x7a\xdf\xa4\x3e\x12\x1d\x03\xee\xd0\x3c\x69\x16\x56\x40\x3f\xaf\x31\xbc\xf0\x06\xf7\xbf\x54\xc8\x93\x65\x39\x0d\xe8\x4d\x52\x76\xce\x82\x22\x59\xfe\x9d\x77\xfa\x7b\x91\x36\x8d\x9e\x48\x45\xaa\x3b\x8d\xb8\xf2\x62\x4e\xec\x55\xa4\xc6\xd1\x8c\x2b\xcf\xb9\x44\x79\xa1\x62\xe0\x63\xda\x09\x95\x1b\x7e\x9f\xc7\xe3\xc5\xfd\x2b\xb8\xc0\xed\x6d\x81\x87\xa8\xee\x87\xf3\x4e\x88\x8b\x50\x71\xbe\x40\xf7\x9a\xf6\xfe\x88\xa2\x59\xb6\xb3\x13\xf7\xdf\x7f\xfe\x09\x7a\x2f\xfa\xea\x27\x12\x2f\xe9\x1d\x7b\x96\xf4\xb1\x56\xaf\x4c\xa7\x7d\x98\x5b\x58\x26\xfd\x35\x97\x0e\x57\x49\xc5\x66\xea\xbb\x2c\x7a\x8a\x13\xae\xdd\x24\x2e\xcc\xee\x25\xf7\xbb\xa7\x47\x3e\xf1\x63\xed\x8e\x72\xdd\x10\xd3\xcc\x62\xca\xf6\xaa\x4f\xb9\xaa\x0b\xbf\xb1\x26\xf9\xef\xbd\x9a\x02\xbd\x17\xde\x59\x35\xa3\x71\xf0\xfe\x0c\x27\x7c\x3f\x75\xe3\x2b\xd9\xf7\xdf\x96\xd1\xca\xe6\xc3\xb6\x00\xea\xc4\xf4\x31\x80\xf3\x62\x1f\x1d\x32\x68\xfe\xbc\xcb\xbd\x4f\xdf\xff\x6e\xf4\x7b\x9a\xd1\x95\x42\x1c\x4a\x4f\x73\x2b\xea\xe7\x54\xc7\xa5\x76\x9f\x20\x8a\x4b\xa8\x5e\x82\x01\xcd\x83\x13\xbc\xff\xdd\xe6\x6e\x29\xb4\x7e\xf6\x39\xcf\x69\x2c\xcf\xb1\x5c\xf7\x6a\x69\xc0\x55\x7a\x7b\xb9\x4e\xe6\xbc\xdb\xcc\x94\x1b\xf4\x7c\x9d\x8c\xee\xd0\xba\x79\x54\x42\x01\xed\xbb\x07\x7f\x7f\x48\x7a\x12\x3d\xea\x3d\xa2\x6e\x3e\x6d\xf4\xf9\xa8\x35\xe9\x5d\x46\x7c\x9d\xaa\xf9\x4b\xee\x1e\xde\x95\x73\xfb\x23\x47\x86\xf7\xef\xf0\x32\xa6\x1d\x4b\x35\x07\x12\x3d\x4e\x13\x35\x74\x1f\x36\x0a\x75\xfb\x03\xbc\xef\x8b\x57\xb2\x50\xef\xbf\xc3\x39\x01\xbb\x57\x34\x8e\xc4\x7a\x7e\x55\x3b\x6e\xcb\xa3\x85\xb8\x08\x5c\x58\x51\xc8\x9f\xe2\x52\x9b\x83\xf2\xd5\xe7\xcf\xdb\xbb\xf8\x0a\xcd\xeb\x95\x29\x59\xe4\xaf\x9b\xa0\x93\xe2\xd2\xf0\x36\x7d\x7e\x86\x77\xc1\x0d\x3e\x1f\x84\x3e\x59\x59\x45\xe4\xd7\xc0\xb3\xa5\xf4\x7b\xba\x6d\x28\xa3\x7d\x4b\x9b\xc2\x17\xc4\x9d\x19\x07\x56\x51\x9e\x54\xd5\x7f\x4f\x5c\x45\x1d\xa9\xef\x42\x3c\x7e\xf2\x30\xd5\x1c\x88\xa0\x83\x32\x42\xd0\xbf\x98\x23\xdc\x8c\xf2\xca\xe7\x36\x58\xe0\x25\x8e\x09\x7a\x21\x19\x82\x1e\xc8\x7d\x81\x13\x12\x74\x62\x04\xe5\x8d\x4f\xc2\xfa\xaa\x5a\x0f\x45\xd4\x89\x11\x3a\xd8\x14\x1e\x95\x58\x7f\x81\x87\xd9\x34\xf3\x22\xad\x9b\xd6\xa5\xf3\x3e\x78\x9e\x54\x39\xfb\xd9\x1f\x6c\xc1\xee\xbb\xd4\xad\x65\xce\x42\x3e\xce\xa7\x5a\x15\x13\x17\x3b\x71\x18\x1f\xe7\x23\xb6\x3c\xa7\x71\xd4\xdf\x85\x8f\x77\xb1\x5f\x56\xeb\x94\x77\x44\x81\x35\x55\xfb\x46\x7a\x42\x6a\xb7\x84\x13\x8f\x31\xec\x77\x0e\x44\xe0\x5f\x3a\x0a\xdc\xc6\x10\x81\x7f\x99\x22\xf4\x81\x59\x36\x99\x5b\xb1\x3f\x8e\xd8\x0f\xe6\xa4\xc0\x7b\x88\x7d\x71\xf8\x93\x61\xec\xa5\xa0\x0b\xc2\xff\xd2\x6f\x7a\x28\x7d\xb9\x2d\x5b\xc7\x6a\xeb\x1e\xfc\x0f\xfe\xe3\x6f\x1c\x48\x4f\xa1\x8f\xc9\x6f\x1c\x88\x70\x9f\x73\xfa\x46\xe0\x73\x05\xef\x87\xf2\xfe\x29\xef\xfb\x50\x55\x01\xf8\xdd\x00\x5e\xd8\x4a\xd6\xa8\x40\xc5\x7d\x60\xff\x36\xa0\xa2\x1f\x10\xaf\x00\x3c\x3f\x08\xa4\xde\x00\xca\x36\x03\x39\x6b\xb8\xfe\xc7\xa3\x34\xa0\x72\x13\xf0\x65\x0b\x50\xba\x85\xff\xee\x02\xe1\x5e\xf3\x6f\xfa\x0f\xc2\x7d\xdf\xb3\x42\xdd\xf7\x8c\x50\x27\x3f\xd9\x9f\xdb\x04\x41\x9b\x43\xac\x7f\xfe\xc9\xff\xbf\xe9\x5f\xfc\xaf\xfe\x1f\x35\x38\x90\x48\x60\xec\x37\xe0\x87\x94\x64\x6d\x01\x7c\xde\x0d\xb8\xbe\x06\xde\x86\xf1\xbe\x0f\x2f\xcf\x01\x1b\x64\x80\x72\x3f\xc9\x5a\x15\x28\xfb\x04\x48\x76\x60\x4f\xbf\x00\xb1\xe6\xc0\x53\x39\x40\x32\x53\x9f\xdc\x02\x72\xfa\xf3\x7b\xee\xa5\x0a\x3c\x1e\x9f\xfc\x80\xe2\x67\xfc\x6f\xdd\x11\xfc\x15\x75\x40\x44\xfe\x41\xe4\x3f\xaa\xf9\x17\xc1\xff\xda\xf5\xdf\x7f\xe2\x1f\x9a\x3f\xe7\xb6\x76\x1f\x94\xbf\xf6\x43\x11\xc6\x45\x77\x81\xb9\xf8\x95\x03\xf9\xe2\x07\x38\xa5\x01\xef\xe6\x01\xce\xa3\x80\x57\x7b\x81\xe5\x69\xc0\x8b\x51\x80\x64\x7d\xf4\x7c\x3b\x10\xd8\x1b\x28\x75\xe2\xb5\xa8\xc7\x1e\xc0\x51\x59\xa0\x64\x2c\x70\xf6\x1a\x50\x62\x05\x48\x32\x73\x49\x47\xde\x03\xe5\x89\x2a\xf0\x59\xf5\xe7\x7d\x6f\xb1\xee\x5d\x3d\x0e\x1e\xfc\x37\xff\xc5\xfa\x3f\xfb\x0f\xfc\x47\x6d\xfb\x47\x0e\x24\x12\xe8\x37\x15\xf8\x76\x00\x18\x61\x02\x7c\xb2\x05\x26\xb9\x03\xaf\x36\x03\xb3\xf5\x81\x4a\x55\x60\x89\x25\x50\x2e\x03\xac\xb5\x05\x4a\x13\x24\x39\x0a\x90\xbc\x5d\x24\x3b\xb6\x47\x2a\xc0\x11\x27\x5e\xe7\x4e\x4e\xe6\xba\x1f\x92\x8c\x55\x94\x0d\x14\x7b\x02\x8f\x37\x00\x5f\xae\xff\xe4\x81\xb2\x84\xfa\x9d\xa8\x83\x52\xad\x7f\x60\xfd\xe7\xf1\xff\xb7\x7b\xf0\x7f\xf2\x5f\xbf\x17\xb7\x22\x07\xf1\x37\xfd\x8b\xdf\xe2\x21\x19\x17\x2b\x39\x07\xf2\xf5\x06\xaf\x73\xbf\xf9\x0e\x8c\xdb\x08\xbc\x6a\x0c\xcc\x48\x06\xca\x5c\x39\x2f\xf6\xe4\x02\xbf\xef\x5f\x5d\xef\x0e\x95\xac\xe5\x80\xfb\xc9\x80\x64\x87\x2a\xf9\xf8\x6c\x0e\x70\x2f\x13\xb8\x9e\x07\x3c\xd0\x03\x8a\xcb\x81\x87\x7d\x80\xcf\x4f\x7e\xea\xa1\x54\xeb\x1f\xd4\xe7\x56\xec\x7f\x22\x3e\xff\x58\x03\x6e\x45\xfe\x21\xba\x5e\x4d\xff\x7f\xe5\x1f\x9a\xd4\xd2\x2d\xf8\x1b\xff\x51\xdb\xea\xba\xfd\x12\x47\xa1\xde\xff\x55\x19\xb0\x71\x01\x3e\xec\x02\xfa\x9d\xe4\xf3\x60\xb4\x02\x50\x3e\x84\xf3\x0f\x25\x7b\x80\xf9\x73\x81\xe2\xd1\x80\x87\x2e\x50\xb8\x05\xd8\x94\x02\xdc\xdb\x0e\xec\xee\x0b\xdc\xed\x03\x1c\xea\x00\xe4\x2d\x00\xce\xdc\x04\x6e\xbb\x00\xd7\xfc\x81\x5b\xa9\xc0\xc3\x06\x92\x55\x33\xf0\xde\x07\xc8\x16\xfa\x81\x64\xb4\xac\x39\x0f\x44\xfe\xe7\x88\xd0\xc3\xaa\xba\xef\x89\xd0\x3f\x43\xe4\x1f\xc4\x3a\x78\xc8\xa0\x9f\x71\xa8\xed\xff\xdf\xfa\x9f\xfc\xc6\x83\xfc\x12\x8f\x1f\x83\x81\xe6\x25\xc0\x47\x63\xa0\xfd\x22\x3e\x0e\x7a\x59\x02\x15\x2b\x81\x61\x2a\xc0\x93\x06\xc0\xa4\xfd\x40\x51\x7f\xc0\xb9\x0e\xf0\x60\x28\xb0\xa2\x12\x28\x98\x04\x6c\x34\xe7\xfe\xed\x9a\x04\x48\x56\x67\xd1\x2e\xc0\x0d\x0f\xe0\xf4\x3c\x40\xb2\x6a\xb9\xde\x02\xc8\x0d\x03\x8a\x37\xf1\x5c\xf1\xee\x20\xef\xa1\x43\xf3\x40\xa8\x57\x9f\x8a\xad\xf5\xfc\xdb\xd4\x7c\xee\xe1\xe7\x6a\xfa\x1f\x2c\xf4\x9d\xda\xf1\x4b\x9e\xac\xed\xbf\xc8\x7b\x88\x7c\x83\xc8\x03\x88\x1f\xd7\xd6\xbf\x90\xfc\xfc\x0f\x4f\xc0\x30\x9e\x73\x2f\x92\x71\x21\x59\x45\x74\x49\x01\x9e\x1a\x00\x03\x72\xb8\xce\xd1\xd8\x49\x9c\x01\x94\xe4\x89\xbb\xef\x80\x65\xb6\xc0\xad\xb3\xc0\xfa\x6e\x40\x76\x15\xb0\x63\x1b\x90\xb3\x99\xc7\x21\x4b\x15\x38\xad\x0a\x64\xd5\x01\xb2\x66\x73\xee\x41\xf2\xde\xbc\x16\xcd\x59\x3b\x31\x1f\x8a\x1c\x90\x38\xff\xa3\xce\xfd\xf9\xb9\xef\xfa\xca\xad\xc8\x01\x6c\x17\xb8\x10\xff\x5b\x3f\xe3\xf0\xaf\xfb\x80\xfc\x41\x17\xe4\xc7\x16\x40\x6e\x00\xf0\x49\x19\xd0\xb4\x00\x5e\xf5\x96\xac\xa1\x39\xf7\xd1\xfe\x38\x50\x1c\x0b\xd8\x06\x00\x0f\x52\x81\x91\xc3\xf9\x73\x9f\x6a\xce\x35\x70\x24\x79\x22\x7b\x35\xb0\xf6\x10\x70\xad\x33\xb0\x5d\x0e\xb8\x32\x9f\xeb\x82\x5c\x76\x05\xed\xec\x32\x37\xf2\x18\x48\xde\x87\x92\x58\x66\xaa\xf2\x3c\x99\x22\xe4\x07\x51\xff\x27\xc6\x49\x78\xee\x02\xff\x21\xf2\x3e\xa2\xdf\x3b\x2c\x6b\xfa\xbd\x45\xc8\x23\x1b\xd9\xcf\x38\xfc\xbf\xf9\x0f\xf7\x9f\xdc\x43\xd5\x0b\x40\x3e\x04\xa8\x88\x02\x74\x7a\x01\x25\xdb\x01\xb3\xe1\xbc\xe7\x91\x64\x5c\xe4\x15\x03\x76\x4d\x80\x1b\x37\x39\xff\x20\x79\xc6\xae\x83\x80\xcb\xaf\x01\x2f\x4f\xe0\x92\x06\x5f\x47\x5c\xd8\x00\x1c\xac\x0f\x9c\x8b\x00\x12\x4b\x80\xb4\x7e\xc0\xb5\x7e\x5c\x43\xe8\xb1\x25\xcf\x9d\x5f\x6c\x7e\x72\x40\x87\x3c\x6b\xfa\x1f\x82\x3f\xfb\x5d\x9b\xfb\xf0\x11\xc6\xcd\x3f\xf2\x0f\xff\xc4\x01\x08\xdc\x07\x57\xd7\x03\xde\xcd\xe0\xb6\x92\x6f\x0e\xe8\xfd\xae\x1c\xc8\xfd\x37\x74\x02\xf2\x3b\x03\x56\x7d\x80\x5c\x27\xbe\xce\xba\x7a\x11\x18\xd3\x07\xc8\x2c\x05\xe6\x78\x02\x17\xb6\x03\xab\xa5\x81\xd4\x50\x60\x6b\x01\x70\xd6\x0c\x38\x90\x0b\x9c\x9e\x03\x9c\xcc\x07\x12\xe7\x00\x57\xc7\x02\x92\xb5\xf3\x23\x77\xe0\x84\x37\xf0\x71\xe7\xcf\xf7\x9f\xe8\xbf\xc8\x3b\x89\xbc\xcf\x16\x63\x6e\x7d\x85\x9e\x6c\xeb\xac\x6b\xfa\xed\x39\x96\xdb\x95\x73\xff\x21\x0e\xff\x50\xff\x16\xfd\xff\xb8\x9e\xdb\x97\xc6\xdc\x3e\x4d\xe1\x96\x6e\x9d\x64\x03\x79\x7e\x80\xc6\x18\x20\xb7\x3e\xd0\xfc\x22\x70\x75\x04\x60\xf3\x02\xc8\x78\x01\x0c\x1f\x07\x9c\x1b\x0d\x4c\x37\x01\x52\x64\x80\xe5\xeb\x81\xc4\xaa\x3a\x17\xb7\xd4\x05\x8e\x17\xd4\x9d\x1d\x6e\x0e\xc4\x2d\xac\x37\xf7\xc4\x19\xe0\xe8\xa3\x7a\x57\x2f\x57\x01\x87\x5d\xa5\x87\x3e\xdc\x0e\xc4\xf8\x4a\xeb\xbc\x6f\x0c\xec\x77\x92\xa6\x73\xe7\xe0\x60\x69\xba\x9f\xe6\xef\x21\x5d\x8f\xfc\xfe\x2a\x4d\xf7\xaf\xd6\x4e\x97\xa2\x73\x68\xaf\xcb\x52\xfb\x25\x76\x75\x61\x1d\xea\x67\xbd\xe2\x73\x1d\x3a\xb7\x5f\xd2\x8e\xfb\xb4\xa8\xe1\x2f\x71\xf8\x17\xfc\x43\x6d\xff\xb9\x0a\x23\xd7\xf2\x91\xfc\x57\x24\x9c\x36\xe6\x09\xa7\xaf\xd9\xf7\x80\xfa\x43\x80\x8b\x29\x32\xb6\xfa\x2d\x80\xb4\x2d\x0a\xaa\xed\x24\x73\x5e\xa9\xc1\xe3\x81\x8e\xc0\xf1\xfe\xaa\xef\x1d\xdd\x81\xd8\x33\x1a\x9a\x8b\xc2\x81\x43\x7e\x9a\xcf\x7c\x87\x02\x91\x07\xb5\x74\xf6\xf4\x04\x0e\xd8\x69\xa9\xc7\xad\x04\xf6\xdd\xd7\x1a\x92\xf1\x06\xd8\xdb\x42\x6b\x54\xc1\x08\x20\xd4\x49\xcb\xff\xb5\x09\xb0\xb3\xb9\x16\x7f\xee\xee\x0d\xd7\x4a\xec\xfa\x36\x9a\xc4\xb5\x78\x56\xa9\x6f\xa6\xe7\xbc\x50\x85\x74\x60\x96\x29\xa9\xd0\xf9\xed\xe2\x26\xca\xa4\xf7\xbd\x60\x91\xc2\x0b\x89\x9d\xb7\x48\x3e\x43\x62\x9d\xdb\xcb\x5e\xf9\x57\x71\x28\x13\xfc\x17\x6e\x19\xbe\x44\x1d\x3a\xaf\x28\xb5\xae\x4f\xf5\xec\x82\xb3\x0d\x68\x57\x7c\xcb\x4e\x8d\xce\x9f\xae\x46\xab\xd2\x3e\xfb\xdc\x21\x4d\x3a\x2d\x49\x9a\xa9\xd3\x57\xf3\x2e\x10\x37\x4e\xb7\xb8\x55\x8b\xba\xc1\x31\x23\xf5\x93\x7a\x9c\x91\xbe\x74\x40\xca\x20\x7d\xf4\x00\xd9\xca\x3d\xa3\x0c\x47\xce\xad\x23\xf7\x3a\xd8\xcb\x70\xac\xa7\xae\xc2\x81\x20\x15\x43\xf5\xa0\xfd\x8a\xf7\xb7\x2d\x31\xac\x1b\x9d\xa7\x54\xbe\xd9\xdb\x20\xea\xec\x90\x06\x1d\x36\xda\x18\xcc\xb9\x59\x47\xe9\x93\x6f\x2b\x83\xe3\xcf\xfb\x29\x8d\x5c\xaf\x65\xe8\xc2\x98\xc2\x55\xf7\x9d\x86\x81\x8c\x29\x68\x2d\x6d\x6e\xd8\x93\x31\x79\xad\x05\x97\x0d\x3a\x31\x56\xff\xbc\x4b\x9c\xbe\x1f\x63\xb2\x85\x73\x0e\xeb\xc9\x33\x26\xe3\x3a\xc3\x4b\xf7\x1b\x63\x32\x5a\xd3\x02\x74\x2d\x18\x93\x1e\x3a\x25\x5f\x47\x9a\xb1\x7a\x2d\x9d\x3a\xe8\x0e\x63\x4c\xda\xe8\xaf\xfe\xf7\xe3\xf6\xc3\x4d\xd0\x39\x42\xb9\x96\x02\x9d\x8a\x14\xcf\xd6\xe2\xfc\x47\xa1\x2e\xd5\x33\xb2\x8d\x9a\xd0\xae\x38\xf3\x82\x09\x9d\xcf\xa5\x78\xb7\xa4\x91\x91\xb0\xde\x4c\x56\x62\x63\x52\x5a\xdb\x2a\x46\x00\xfb\xca\x5b\x5f\x34\x5a\x21\xed\x1d\x1c\x64\xf1\xb8\xc3\x34\x85\x06\xfe\xac\x75\xf7\xc1\x7b\x95\x3e\x6f\xcc\x6b\x6d\x3c\x45\x55\x25\xca\xa7\xad\x45\xec\xd2\xcd\xea\xd2\x5e\xcd\x2c\xe4\x37\x7d\xd4\x78\xb9\x2a\xcb\xdc\x37\xfc\x40\xc3\x09\xcb\x57\x98\x25\x9c\x9a\xdf\xf0\xf9\x92\x8b\x66\xce\xd7\xd6\x6b\x69\x2f\x8a\x31\x1b\x5b\x7c\xad\xe1\x24\xb7\x81\xe6\x03\xbe\xb6\xd2\xb8\xe1\x72\xca\x2c\x8b\x31\xb5\x88\x19\x1f\x5b\x3d\x65\x4c\xe5\xf8\xe4\xf2\x96\x7b\x19\x6b\x50\xe6\xb8\xb4\xf9\x61\xc6\x94\x3a\x38\x74\x32\x2d\x63\x4c\xe1\xe9\xc4\x51\xa6\x9d\x18\x53\x68\x3f\x26\xb7\xa9\x15\x63\xf2\xf5\x46\xef\x33\x8e\x62\xac\xfe\xd7\x11\x17\x9b\x28\x31\x26\x7b\xf8\x37\xff\x85\xf1\xfd\xe1\x81\x1c\x9d\x33\x3f\x37\xd5\xa4\x73\xe8\x22\xe1\x94\xe4\xf6\xd4\xe6\x74\xba\x7c\xcd\xd2\x8a\x3e\x71\x3e\x8d\xf3\x2f\x49\xe3\xba\xd0\x29\xea\xb1\x27\x5d\x17\x4b\x6c\x44\xef\xee\x74\xde\x1f\xb2\xb2\xa7\x5b\x1d\x06\x04\x7c\xb6\xfd\xac\x5d\x2a\xa5\xbf\xa1\xaa\xe7\x42\x0b\x29\x05\x19\x8f\x57\xdd\xe7\xf6\x7a\xa2\xd6\x60\xb9\x5e\xb7\x82\x71\x56\x9a\xf3\x16\x3e\xeb\x5a\x3c\xbf\x75\x23\x7b\x97\xce\x36\x2f\xd6\x59\x35\xbe\x34\xeb\x6a\x97\x94\x90\xe3\xba\xcb\xa6\xf5\xef\xa2\x75\x6c\x93\x9e\xfb\xe4\x64\xeb\x51\x99\x86\x7a\x85\x8e\xcb\xad\x5b\xdc\x57\xd7\x9b\xeb\xd0\xcc\x7a\xe9\xdb\x87\x3a\xc7\x26\x38\x58\x77\x65\xac\xd1\xf7\xd1\x05\x9d\x0c\x18\x6b\xa8\x65\xef\xd4\xfe\x23\x63\xea\x47\x86\x8d\x6b\x37\x93\x31\xd5\x4a\x91\xf3\x18\x3c\xb4\xcd\x15\xc6\x94\x17\x0d\xb4\x6d\x7d\x80\x31\xa5\x3b\x03\xfa\x98\x07\x30\xa6\xe8\xd7\xcf\xdc\x2c\x92\x31\x85\x53\x3f\xdf\x03\x9c\x03\xf9\xa0\xa7\x44\xf6\xf9\x6c\x1d\xaa\x63\x3c\x70\x68\x46\xe7\xd8\x77\x66\x73\x7f\xaf\xe8\x73\x15\xdd\xb4\xc5\x3d\xa8\x3e\x73\xaa\xb8\x2f\x9d\x8e\x1d\xf6\x1a\x44\xa7\x27\xfb\x57\xd8\x71\xdd\xef\xeb\xc3\xa9\xca\xb0\x29\xcb\x9e\xee\xc7\xae\x89\x1b\x75\x5a\x25\x16\x58\x1e\x69\xff\xa1\xe9\xe3\xfa\xf3\xe7\xfb\x0f\x8f\xea\x62\xaa\xe2\x39\x7d\xc5\xd0\x61\xc3\xe4\x1b\x39\x3b\xbc\xb2\x6b\x3c\xe3\xb8\xce\x9b\xb1\xf7\x06\x6f\x5f\x6d\xad\x1f\x67\xbf\x7a\x50\x50\xe0\x68\xc3\x77\x43\xed\x06\x8e\x8e\x7e\xd4\xa4\xcd\x60\x9d\x01\xeb\x52\x63\x9b\xe4\x0c\x38\x38\x40\xe9\xf6\xed\x26\xb3\xfa\x1f\x1f\xd0\xf0\x45\xa1\xe1\xfe\x7e\x0f\xfa\x57\x31\xa6\x37\xa0\xcf\xed\x3e\x33\x19\x6b\x3c\xdf\xd6\xb6\xd7\x56\xc6\xb4\xfc\x7b\x9c\xec\xd1\x8c\x31\xcd\x0e\x5d\x1f\x77\xad\x62\x4c\xed\x7d\xd7\xe4\xae\xca\x8c\xa9\xad\xb3\x99\x68\xdd\x9f\x31\x95\x03\x5d\x06\x74\x7e\xcc\x98\x4a\xcb\x4e\x8f\x3a\x66\x33\xd6\x60\x2b\x63\x52\x74\x7a\xf3\x81\x29\x93\x3f\x65\x1c\x03\xc2\xfd\x24\x4b\xca\x84\x37\x5e\x58\xd3\xed\xb8\x8b\x95\xbd\xc8\xaf\xb3\xfa\x9c\x0b\x38\x11\xc7\xb9\x88\xc3\x63\x46\x53\x9f\xe7\x70\xc5\xb1\x74\x4e\xbf\xd3\x71\x22\xd5\x69\x36\x05\x39\x52\x7f\x77\x0f\xaf\xc9\x34\x7f\x16\xc6\x4d\x7b\x2f\x6d\x02\xcc\x19\x3a\xdd\x54\xaf\x61\x3d\x1f\xc7\xc0\xa9\x4a\x6d\x07\x28\x0d\x19\xd5\xd3\xe9\x69\xff\xd7\x9a\xe3\x87\xcc\x76\x9c\xe4\x98\xa4\x9d\xd3\xaf\xd0\x61\xc1\xd2\x05\x3a\x89\xb6\xba\x93\xae\x6e\x59\xa6\x5b\xd2\x7d\xe8\xc4\x92\x83\xa5\x7a\x23\x6d\x86\x4d\x9c\x93\xac\xaa\x67\x6a\xbd\x63\xc2\x91\x1b\x9b\x75\xdd\x3b\xaf\x9c\x90\x53\xd6\xbd\xf1\xb3\xce\x4b\x27\x6c\x61\xac\x91\x55\xa7\x46\xa3\x4b\x18\xd3\x2c\x69\x7f\xc3\xbe\x31\x63\xea\xe3\xda\x3f\x1f\x3a\x8c\x31\xb5\x35\x6d\x0f\x0e\x9e\xc4\x98\x8a\x5b\x5b\x9f\x01\x6f\x18\x53\x2e\x6a\xab\xd0\xef\x3e\x63\xca\x2d\xdb\xdc\xef\xfd\x91\x31\xa5\xb7\x96\xad\x7b\x3d\x65\x4c\xf1\xc4\xc7\x1c\x4d\xaa\x63\x3d\x1f\x6f\xca\xfd\x4f\xee\x48\x19\x31\xd7\x85\x73\x30\x99\x56\x9c\x73\x4a\x3e\x3a\x82\xaa\xaa\x09\x5b\xc7\x11\x1f\x78\x28\x60\x12\xd5\x2d\xf6\xdd\xe4\x3a\x21\x3b\x03\xb8\x6e\xc2\xe6\x29\xbc\x7f\x8c\xe7\x68\xce\x49\xb8\x65\xcd\xa7\x4c\x3b\x2d\xc8\x8d\x4e\xd9\x26\xcc\x58\xdc\x49\xe3\x38\x30\x4c\xca\x4d\xba\x65\xb1\x5c\x40\x9f\x7a\x0b\x3a\xf4\xf4\x53\x1d\xd0\x6d\x82\xeb\xae\xf1\x5a\xea\xd7\x3b\x3d\x75\x55\x58\xb8\x52\xb3\x65\xbb\x4d\xf3\x97\xf9\x79\x34\xd4\xb1\x7c\x30\xef\x58\x78\xbb\x86\xad\x2d\x3a\xce\x53\x4e\x3c\xa1\x59\x61\x36\xc1\x25\x2d\x7b\xaa\xa6\x71\xab\x35\x2e\x5d\x9e\x3c\x50\xbf\xd6\x6a\xb9\x4b\x5f\xc6\x54\x07\xb4\xec\x37\x4b\x9e\x31\x65\xaf\x16\xad\xa6\xf8\x33\xa6\xf4\xb0\xf9\x01\x87\xbb\x8c\x29\xbe\x6f\x3e\x7b\x7c\x2e\x63\x8a\xd6\xcd\x4d\xc6\x5e\x67\x4c\xe1\x92\xe9\xd5\x51\x73\x19\x93\xdf\xd0\xcc\x64\xc4\x2d\xc6\xe4\xa7\x35\xbb\x35\xac\x1e\x63\xf2\xd3\x45\xfe\xeb\xc1\x4a\x1b\x07\x9e\xf7\xfb\x11\xef\x70\xd9\x65\x38\x9d\x02\x9f\xdd\x34\x9e\xb8\x80\xe3\xe6\x8e\x74\x2f\xef\xd0\xd6\xe9\x14\x87\x7d\xd1\xb3\xc9\xef\x9d\xd6\xf3\x74\xe8\xf9\xc7\xf3\xbe\x39\xde\xc5\x8b\xe8\xb4\x70\x49\xf1\x32\xca\xaf\xb3\x34\x56\xd2\xb9\xef\xd8\x5d\x1e\x74\xcf\x6d\xc0\x22\xef\x53\xf5\xed\x80\x1e\x75\xbd\xb5\x8c\xa2\xa5\xbd\xdb\x3b\x79\x1e\xb4\x36\x51\x34\x6d\xed\xeb\xe9\x3f\x72\x98\xd2\xaa\x96\x5b\x3c\xad\x5d\xe6\x37\x68\x6b\x7a\xca\xe3\x96\x4f\x8b\x06\x41\xc6\x29\x1e\xdd\xf6\x5c\x68\xb0\xc8\x68\x96\xfb\xbd\x13\xbe\x4a\x37\x0d\xe5\xdd\x7b\x5d\xdb\xad\x24\x67\xa0\xb3\x3a\xb1\xc4\x4d\x21\x44\xff\xd5\xea\x93\x3f\x3e\xc8\x79\x1b\x68\x2e\x95\x63\xac\xfe\x0b\xfd\x46\x0b\xbc\x18\x93\x8d\xd6\xf5\x73\x09\x62\x4c\x46\x45\x4f\x6f\xd6\x70\xc6\x64\x2c\xf4\x62\x67\xa8\x30\x26\xb3\x58\xf7\xc6\x54\x67\xc6\xa4\x43\x75\x73\x1d\xfb\x31\x26\x3d\x4a\x77\xcc\xc4\x2a\xc6\xea\xdd\x12\xf5\x8f\x6e\xbc\xe5\xcf\xfd\x52\xc4\x28\xaa\x5f\xa5\x6e\x11\xf4\x7f\xd6\x4f\xa7\x53\xf5\x23\x0d\x9c\xc9\xaf\xf0\x2b\x0b\x48\x3d\x3c\x78\x20\xb9\x8d\x2d\x36\x9c\x0b\x59\x7b\x6f\x15\xcd\x93\x65\xa7\xe9\xb8\x1a\xce\xf1\xfc\x16\xae\x63\x0f\xae\x23\x60\x57\xec\x47\xa7\xa8\x9d\xfb\x6e\xa5\x71\x61\x19\xb6\xed\x9c\xb6\x02\x60\x6a\xb6\xd5\xd9\xaa\xa5\x4c\x82\xe1\x8f\xad\x1b\xed\x4c\x64\x3e\xea\xf5\xdb\x6a\x3f\xcb\x47\x26\xa9\xb1\xf7\xd6\x3e\xde\xa6\xd2\xa7\x1b\x7d\xdf\x6a\x18\xb2\xaf\xee\xed\xc6\xf2\x5b\xcf\x24\x78\x02\x8d\x34\xb7\xec\xbd\x62\x0f\x68\x7e\xde\x7c\xea\xd1\x3d\x40\x63\xf1\xa6\xf7\x5f\x43\x00\x55\x03\x1f\x5a\x4f\x29\xf9\x7a\x1e\x93\x58\x05\xed\x95\x09\x12\x2b\x3f\x70\xe9\x02\x89\xad\x7f\x74\x11\xf5\x12\x94\xbf\x32\x9f\xee\xf3\xd6\x0f\x71\x6e\x4d\xd6\x6b\x16\xe9\x05\xdc\x12\x6e\x53\x8b\xfd\xbf\x52\xee\x4f\xa6\xaa\xc9\x71\x36\x9b\x4e\x8f\x0f\xad\xe7\x5c\x40\xf8\xf8\xc5\xb4\x4e\x08\xd1\x5e\x41\x5c\x83\xbf\x3e\xd7\x4b\x58\x6f\xe8\x4d\xe7\xf1\xab\xf5\xb9\xbf\xae\x93\x7d\x29\x9e\xd3\xd3\xb7\x50\x75\x6a\x8c\x06\xbf\xad\xdf\x57\x65\x3b\x55\x27\x5a\x7f\xda\x45\xfa\xef\xba\xf7\x42\x1f\x28\x2c\x01\x1a\x59\xee\x59\xd6\x52\x0e\x50\xb7\xd8\x33\xa9\xef\x1e\x40\x39\x68\xcf\xa8\xc9\x85\x80\xe2\x96\x3d\xd2\x2b\xdf\x00\x72\xd2\xa1\x4f\x83\xc2\x01\x99\xb8\x50\xa9\xc3\xaf\x80\x7a\x83\x76\xdb\xa6\x87\x00\x52\x33\x42\x0c\xef\xfb\x4b\x1e\xc8\x2e\x9f\x77\x74\xcf\x3b\x48\xa8\x5b\x6d\x16\xea\x7a\xeb\x85\x8e\xea\x6b\xb8\xce\x7f\x3b\x8f\x61\xfc\xe3\x55\xc2\x7d\xff\x65\x42\xdd\xcf\x8d\xea\x17\x97\xbb\x8e\xa7\x7c\x9e\xe6\x35\xbd\x37\xcf\x7f\x2e\xf4\x7c\x63\x9b\x2e\xa1\xf9\xb1\xdf\x92\xf7\x85\x0a\x19\xc4\x9f\xb3\xff\xb9\x35\xb4\xa2\xf4\x2d\xe4\xfe\x7a\x62\x13\xef\x03\x63\xb7\x95\xaa\x91\xb3\x73\x02\x68\x85\x39\x49\x7f\x3b\xe5\x8d\xa1\xaf\x77\x77\x93\xd8\xae\xf3\xf7\x52\xbd\xa3\xd9\xdc\x03\xf4\xfb\x15\x11\x4d\xe3\xab\x9e\x74\x8c\xba\x2e\xbd\x99\x62\x5c\xac\xa9\xd2\x17\x5d\x31\x8e\xde\xbc\xd1\x89\x8b\xa8\x92\x1c\xdd\x6a\x2b\xd5\xb1\xa2\x9e\x45\x11\xc1\x1b\x39\x29\x8d\x22\x1b\x31\x2f\x9f\xfe\xf2\xc1\x4d\xaf\xa9\xb2\xb6\x4f\xa8\x53\xed\x12\xea\x14\x81\xc2\x7d\xff\x9a\xba\x1f\xc0\xfa\xbd\x35\xe2\x03\x0f\x1a\x27\x69\xaf\x66\x50\x3e\x4f\x3a\xc4\xfb\x23\xc5\xb6\x5c\x41\xb7\x49\x23\xce\xba\x53\x1f\x93\x50\xd7\xb5\x44\x59\x6c\x37\xf3\xa5\xe7\xeb\xb7\x7e\x53\x3c\xcf\x03\xfe\xf4\x9e\x5c\xaa\x11\x44\x79\x75\x7e\x53\xde\x47\x64\xda\x88\x50\x9a\x1f\x63\xac\xc3\x88\x2f\x1e\x30\x9c\xf7\x53\xe9\x50\x18\x4d\xeb\x30\x23\x8b\xa3\x54\xf7\x90\x31\x8d\xa7\xee\x0d\x40\xc2\x87\xc6\x54\xc7\x49\xd8\xd3\x99\x46\x64\x42\x9f\xd1\x5c\x91\x69\xd8\x02\xf2\x37\xfe\xce\x46\xba\x71\x1e\xbf\xe2\x00\xd5\x39\xe2\x2e\x25\x53\x05\x3e\xb6\x98\xf7\x03\x89\x2d\xe6\x15\x93\x23\x42\xdf\x87\x83\xc2\xbd\xff\x30\x41\x49\x7e\x97\xd0\x51\x7f\xc7\x06\x6e\xfd\xdd\x85\xf8\x08\xf5\x6e\x3f\x29\x89\x4d\x2c\x59\x48\xb7\x64\x8f\x8d\x5e\x4d\xcf\x37\xd2\x9b\x57\x97\xf7\xc2\x97\xe6\xc5\xf6\xa2\x4d\xb4\x8e\xda\x62\xe9\x4f\xff\xca\x75\x6a\x02\x07\xa4\x11\x42\x75\x9f\x85\x9e\x9c\x7b\x9a\xad\xcf\xf5\x61\x1c\x3c\x0f\x52\x15\x76\xd8\x2d\x5e\x2f\xef\xb9\xe0\x08\xd5\xf7\x5a\xbf\xe2\xb7\x6e\x1b\x17\x9e\xa4\x81\x55\x67\xf6\x19\x61\x67\x92\xa2\xa1\x3d\x84\x5b\xae\x83\x71\xa6\xd2\x9e\x2a\x3f\x67\xbe\x71\x85\xaa\xe4\xc4\xf5\x54\xa7\x4a\xde\x1b\x46\xa4\xea\x99\xed\x89\xe4\xff\xe9\x0b\xd9\xa4\x93\x72\xba\xf4\x39\xbd\xea\x13\x33\x79\xdd\x3f\x4e\xe0\x1e\x62\x96\x08\x71\x11\x9e\xbf\x38\x5e\x42\x05\x0e\x62\x97\xbc\x30\x6e\xa8\xce\x23\xea\x20\x45\xbb\xac\xa7\xe7\x1c\x66\xb7\x89\xd6\xc3\xc1\xb6\x9c\x7f\xda\xe6\xb2\x83\xf8\x17\x9f\xa7\xbb\xac\x79\x1e\xe0\x1c\xd0\x52\x81\x0b\x71\x89\x8d\x20\xce\x65\x8a\x57\x34\x3d\xd5\x31\x01\x47\x69\xfc\x0f\xb2\x8c\xa3\x3c\xd0\x55\xff\x04\x7d\x5f\x4b\x8f\x24\x9a\x7f\x9a\x09\x67\x43\xb9\xff\xe9\x4d\xb8\xcd\x9c\xd2\x90\x32\x6a\xc6\x69\xae\x83\x91\xb1\x61\x28\x75\x24\xc9\x54\x9d\x43\x23\x34\x43\x99\x67\xdc\x8c\xe9\xbb\x69\x25\x9b\x51\x3f\x81\xbe\x9e\x5e\x72\x85\xf3\x31\xfd\x4b\x88\x30\xb9\xd0\xf0\x0b\xe7\x1c\x84\xfe\x1e\x62\xdf\x17\x91\x8b\x39\x2c\xf4\x3f\xa9\xcd\xc5\xf0\x71\x73\xe8\x99\x2f\xd5\x5f\xc3\xe5\xb6\x50\xbe\x0b\x1e\xc1\xf9\xbe\x00\xc3\x60\x5a\x47\x6d\x3c\xb5\x87\x28\x94\x35\x01\xbc\x8a\xb6\xbc\x94\xf7\xc5\x5a\x30\xee\x10\xd5\xaf\x67\xbd\x8b\xa5\xf9\xe1\x30\x24\x8e\xe2\x31\x72\xf4\x49\x7a\x1f\xf4\x7d\x98\x44\x55\xfb\xce\xb2\x67\x69\x7d\x6a\xea\x7e\x8e\x74\x40\xd4\xd7\x5c\x14\xf4\x2f\xae\x09\x7d\x40\xb2\x26\x6b\xd2\x4f\x5e\x2f\xb7\xa2\x99\x74\x3d\x61\x08\x11\x99\x59\xd3\x67\x90\xbf\x59\xf9\x3c\x33\x65\x6d\xdb\x49\x33\x2c\x2b\xf1\xd8\x4c\xb2\xad\xf9\x6f\xba\x6e\xf5\x90\xf3\x1f\xe1\x1f\xe9\x6c\x24\x53\xc8\x0f\xa9\x42\x1e\x3c\xdd\x9b\x5b\x91\x17\x12\xc7\xcb\x61\x21\x4e\x9c\x8b\x39\x38\x90\x8f\xf7\xdd\x91\x9c\x2e\x08\x14\xb8\xaf\x4d\xf5\xc3\x9e\xd3\x3c\x28\xe5\x54\x92\xc8\x01\x2d\x9e\x72\x94\xf2\x9c\xb3\x4d\xdc\x1d\x1a\x07\xc5\x9c\xca\x18\x1f\x70\xfa\x22\xcd\x07\xf5\x14\x8a\x43\xaf\xbc\xf3\x54\xa5\x6e\xff\x28\x93\xfe\xb5\x4d\xd3\xb9\x4e\x8a\xf2\xda\x2c\x03\xee\xff\x4d\x61\x27\x73\x67\x9b\x46\x73\xb2\x1b\x5a\x53\x27\xbe\x3b\x6a\x03\x69\xa5\x91\x67\x39\x95\x73\x2f\x96\x2b\xe9\x6c\x23\xbf\x5e\x10\x91\xff\x79\xb1\xbc\xee\x9f\x17\xcb\x09\xab\xdb\x71\xf9\x44\x2a\xdc\x8a\xe2\x0a\x0b\x39\x82\x0e\xcc\x65\x61\xfc\xa7\x0b\x3c\x4c\x9a\xa0\x30\x70\xc6\x9c\xdb\x53\x42\xbe\xe0\x5c\x4c\xd8\xba\x5d\x94\x7d\x76\x14\x73\x0e\x68\x5b\xf7\x08\xa2\x6c\x36\x0c\xe3\xf3\xbb\x9a\x03\x3a\x9a\x40\xb4\x9e\xab\x0b\xd7\xcb\x98\xad\x9f\x4c\x59\xde\x09\x29\x59\x7c\x3e\x9c\xa3\x3a\xf8\xa0\xaa\x74\x7a\xce\xdd\x95\x2e\x11\x0f\x60\x59\x75\xfd\xa8\xc4\x36\xd9\xc6\xeb\xe5\x0d\x0c\xef\x34\xe5\xfe\xdf\x13\xe6\x47\xe1\x12\x15\x8a\x54\xe1\x2a\x73\xca\xb0\x45\x1a\xfd\x69\xfc\x17\xf5\xe3\x05\xf1\xa2\xe8\xa5\x94\x17\x0b\x9f\xf9\xf3\x1d\x9f\x57\x14\x71\x0f\x45\x76\xa9\x14\xd1\x22\x9d\x3b\x34\xa3\x0b\xb5\x5e\x52\x5e\xb9\x27\x70\x41\x37\x85\xf7\xc3\xf5\xf2\x5a\x71\x11\x38\x3a\x91\xa3\x4a\xd1\xa3\xf3\x9c\xd7\x9c\xeb\xf4\x2f\x8d\xa6\x75\x93\xdf\xa2\xd8\x36\xa8\xc9\x01\xd1\xd7\x17\xc5\x9f\xa6\xec\xe4\xd2\x3a\x95\xb2\xda\x34\x95\xf3\x94\xf7\x27\xa4\x70\x1e\xc6\x3e\x85\xeb\x66\xf4\x77\xb9\x4a\x79\xd7\x26\x2e\x9b\xfc\x6c\x6d\x7b\x8b\x7e\x8f\xe1\xda\xbb\xf4\xbe\x90\xff\x7c\xff\x15\xf7\xff\x31\x17\xb4\xc4\x53\x9b\x06\x44\x5e\x3c\xbf\xde\x82\x96\xf6\x65\x27\x7a\xd3\xfb\xb3\xcc\x6c\x12\xbd\x89\xcb\x6e\x2d\xa6\x0c\x55\xb6\x79\x13\x91\x25\x65\x32\x07\x49\x3f\xa7\xcc\xf8\x0c\xc5\xa5\xec\xe4\x4d\x7e\x33\x44\xbd\x9c\x08\x85\x27\x73\x7e\x10\x99\xf4\x50\xd0\x53\xca\x13\xf2\xc3\x4d\xe1\xfd\x90\xd5\xb6\x66\x5c\x32\x88\x13\x0a\x1a\x76\x98\x7e\xfb\x66\xd7\x63\xf4\x1c\x7f\x72\x40\xbc\x5f\xd2\x32\x45\xae\x83\xe4\x9a\x79\x9e\xe2\x33\xc7\x93\xd3\x8b\x53\x2c\x2f\xd3\x7a\x7a\xc2\xdb\x2c\x8a\x8f\xa8\x8b\xd3\xf7\x04\xd7\x8f\xe8\x34\x99\x9f\x4c\xb5\xfa\x76\x8f\x66\xbd\xde\xe3\x42\xea\x17\x23\x57\x59\xa2\xce\xfd\x2f\xdf\xc1\x6d\x55\x96\x1c\x6d\xdd\xaa\xdc\x4d\x69\x5e\xbc\x7d\xd5\x93\x46\xe4\x5b\xc6\x57\x76\xef\xe4\x39\xb9\xfe\x2e\x6e\x03\x7d\xfd\xfd\x2c\xfe\x66\x7a\xd7\x3a\x91\x48\xc7\x77\x6b\xb3\x3f\xf3\xaf\x3f\xa5\x37\xd2\x1b\xef\x1f\xf4\x1e\x79\x76\x82\xfb\x59\x2c\x3c\xff\x07\x15\x7f\x8e\x0b\xef\x13\x24\xea\x21\xf9\xe6\x24\x65\xd0\x38\xb0\x3e\x4b\xb4\xd1\xca\xa3\xe7\x05\x7d\xac\x4c\xfa\x57\xcd\x2b\xbe\x4c\xe3\x7e\xd6\xa2\xeb\x94\x17\x1c\x87\xe6\xf2\x75\xc2\x91\xdb\x34\x5f\xec\xb2\xb8\x5e\x8a\x6d\xc9\x7d\xca\xbb\x1d\x03\x1e\x52\x3f\x36\xb3\x31\xa5\xb4\x0e\xd5\xd3\x7f\x42\xfa\x22\xf2\x1f\x2b\xde\x8a\xfe\x73\xfb\xed\x94\x34\x65\x9c\xef\xcd\x0d\x69\x7c\xff\xd8\x22\xf4\xc7\xb1\xb5\x17\xf4\x51\x9c\x89\xe8\x63\x5e\x6b\x55\xf9\xc7\xbc\xb3\x21\x1b\x98\x20\xe8\x5e\x70\xee\xe1\xc7\x77\x41\xf7\xc2\x8b\xd1\x5f\x7c\x97\xc8\xcf\x52\x44\x4e\xa8\x5a\x27\x46\x8c\x8b\xdc\xaf\x71\x11\xf5\x90\xd6\x1b\xa6\x09\xfc\x07\xd7\x43\x5a\xa6\x73\x99\xc6\xc3\xc2\x88\x2c\xf2\x73\xee\xf2\x5c\xfa\x3e\x51\x17\xc8\xc1\xf8\x2e\xad\x13\x47\xce\x2f\x20\xfe\x6f\xf0\x68\xde\x4f\xa6\x67\xd3\x62\x03\x1e\x87\x67\xe4\xaf\xa8\x8f\xa3\x77\xad\xea\xaa\xc4\x2a\x84\xbf\xd9\xc2\xfd\xff\x2a\xf0\x62\x7f\xe0\x40\x04\x5d\x93\x21\x82\xfe\xc9\xd4\x13\xdc\xae\x10\xbe\x6f\x9b\x0b\xb7\x91\x77\xb8\x3d\xc3\x75\x74\x22\x73\x05\x3e\xe6\xb9\x60\xbf\xd1\x7a\xb3\xa6\xee\xc7\xcf\xb8\x54\xeb\xc4\x18\xb0\xbf\xf0\x0f\xb5\x39\x80\xda\x3a\x18\x62\x7d\xbb\x86\x1e\x88\x50\xe7\xfe\x5e\x0a\xd8\x95\x01\x9f\xc3\x01\xc9\xb8\x16\xef\x75\x57\xc6\x03\x2e\x1e\x40\x59\x3c\xb0\x6c\x12\xaf\xf3\xac\x73\x06\x8a\xaf\x03\x5b\x46\x03\x8f\xbe\x49\xde\x59\xc0\xc3\x02\x20\x32\x53\x92\xfd\x00\x49\x66\x12\xef\x79\x17\x39\x02\x79\x69\x5c\xf7\xfd\x85\x15\xf0\x28\x8e\x9f\x1d\x57\xdf\xfb\x17\xf9\x07\x41\x07\x5f\xe4\x1f\xc4\x7b\xdf\xa7\x84\x1a\x55\xc2\xa8\x5a\xf5\x3f\xf3\x9f\xe7\xd5\x7f\xd5\xbf\x70\xab\x69\xff\x35\x07\xe2\x01\x7c\x08\xe5\xfc\xc3\x9b\xee\xc0\x64\x35\xe0\x45\x05\x30\x37\x15\x78\x12\x0a\x2c\x2a\x01\x4a\x1c\x00\xaf\xae\x40\xa1\x19\xb0\x69\x3a\xf0\x50\x4a\xb2\x33\xe0\x1a\x07\x11\x1b\x81\x7b\xf5\x78\xcd\xfa\xfe\x59\x5e\xc3\x92\xcc\x32\x89\xcf\x85\x1b\x81\x8a\x77\x40\xa1\xa0\xc5\x5f\x5d\xf7\x16\x7a\x0b\x88\xf7\xde\x6b\xf3\x0f\x7f\xf3\x3f\xe2\x97\x3a\xce\x7f\xe5\x1f\x9a\x19\xd5\x8a\xc7\x2f\x7c\xd0\x97\x6f\xc0\xc0\xad\xc0\x3b\x75\x60\xc4\x0e\xe0\x65\x8e\x64\xcf\xc5\xcf\xf7\x67\xd8\x00\x25\xaa\x80\x5b\x0c\xd7\xb3\x77\xaf\x04\x1e\x8c\x00\x36\x7a\x03\xf7\x1c\x80\xe0\x39\x40\xfe\x32\x1e\x87\xfc\x9d\xc0\x71\x1f\xa0\xc0\x10\xc8\xbc\x01\xe4\x35\x07\x6e\x0d\x04\x0a\x2a\x80\xb2\x28\x20\x6f\x03\xf0\x79\xce\x4f\xdd\xff\xcc\x27\xbc\xc6\x24\x72\x40\xa7\x6d\xfe\xd9\xff\xda\xf5\xff\x3f\xf9\x5f\xad\x7f\x31\xa1\xa6\xfd\x1b\xf7\x60\xd5\x14\xf8\xc6\x00\x6b\x2b\xe0\xc3\x06\x41\xd7\xdf\x96\xd7\xf1\xca\x96\x02\xe3\xd4\x80\x92\x35\x9c\x0f\x2a\x1a\x2f\x59\x83\x00\x0f\x2f\x01\xee\xda\x40\x5e\x2e\xb0\xa1\x02\xc8\x5b\x27\x59\xc3\x00\xb7\xf5\x81\x03\x25\xc0\x6d\x69\xe0\x78\x0c\x70\xcb\x0e\xb8\xb0\x0d\xb8\x59\x09\xdc\x1e\x0d\xdc\xec\x04\x94\x66\xf3\x3a\xa9\x24\x0f\x5e\x71\xac\x39\x0e\xc4\x79\x20\xd6\xfd\x44\xff\xc5\xfa\xdf\x6f\xfa\x07\x7f\xe0\x1f\x1a\x0b\xf5\x2c\x2d\xa1\xc6\xf3\x37\xee\x41\xd4\x07\xa1\x9f\x8b\x02\xcc\xc0\xfb\xda\x58\xed\x00\xaa\x6c\x80\xae\x2f\x80\x4a\x47\x60\xa0\x21\xf0\xb4\x04\x18\xfd\x10\x28\xde\x07\x38\xdd\x04\x0a\xdd\xb8\x3e\x4a\x7e\x01\xb0\xc2\x06\xb8\x59\x05\xf8\x48\xac\x81\xe4\x1d\x0e\xe4\x1c\x03\xc2\x3d\x80\x1c\x67\x20\x5e\x1f\xc8\x0d\x02\x32\x82\x80\xdc\x79\xc0\x9d\x3a\x40\xf6\x39\xe0\xe9\x10\x20\xa7\x10\xf8\xfe\xe2\x97\x71\x20\xd4\x79\x4f\xf6\xfb\xb3\xff\xff\x86\x7f\x10\x39\x97\xbf\xf5\x01\xa9\xdd\xf7\xa3\x3a\x1e\x63\xb8\xee\x8d\x24\x1e\x62\xbd\xbf\xf2\x01\xd0\x69\x34\x50\x36\x1f\xe8\x3d\xf9\xe7\x3d\xff\xc2\x5c\xc9\x3b\x06\xc8\x67\xbc\xee\x7f\x73\x2e\xe7\x83\x6e\xcc\xe4\x77\xce\xb3\xac\x81\x80\xc1\xc0\xb5\xb3\x40\xb8\x01\x70\x3d\x1f\x48\xd0\x05\x24\xab\xb2\xf3\x45\xc0\xd5\x21\xc0\xad\x14\x40\xf2\x8e\x7c\x5e\xc1\xeb\xff\x12\xff\xcf\xf5\xa9\x39\x0f\x44\xfd\x9f\xea\xe7\x5f\x8b\x7f\x08\x15\xea\xe3\x22\x07\xf0\x4f\xfc\x43\x6d\x0e\xa2\xda\x2a\xd4\xfc\xba\xe4\xe7\xbe\x46\x48\xd6\x06\xc0\xeb\x33\x40\xb3\x24\xce\x3d\x58\x16\x01\xa5\x91\x40\xb7\x5e\x40\x91\x2d\x20\x59\x26\xdd\x73\xe3\xef\x8f\x5b\x7b\x79\x9e\xc8\xae\x04\xdc\xec\x38\xfb\xe4\x6d\x09\x5c\x2d\xe5\xb5\x69\xc9\xea\x6c\x9f\x23\xaf\xf3\xc7\x16\x03\x97\x94\x79\x1f\xa9\x4b\xc3\x80\x3b\xf7\x79\xae\x28\x9b\x06\x64\x2e\x06\xd8\xee\x9f\xf9\x50\xac\xff\xd7\xf6\x3f\x4c\xa6\xe6\x73\x0f\x56\xe5\x76\x7b\x67\x6e\xff\xc8\x3f\x08\xfe\xfe\x2f\x0e\xa0\x4e\x4f\x3e\x0e\x14\xdc\x81\x0f\xed\x00\x75\x73\xe0\x55\x00\x60\x30\x42\xf2\x56\x06\x5a\xe8\x03\x45\x51\x40\xa7\xd3\x40\xc1\x05\xa0\x4f\x3a\x9f\xcf\x23\x89\x6a\x06\xa6\xf8\x02\xd7\xe2\x39\x4f\x29\x59\x8d\x7b\x82\xbf\x13\xb6\x3c\xe4\xda\x17\x92\xf5\x62\x7a\x07\xe0\xd8\x67\xe0\xc2\x29\x20\xdd\x02\x48\xa3\x33\x44\x6e\xcb\x72\x7e\xbe\x17\x4f\x0a\x3a\x10\x62\xfd\x5b\xf4\xff\x37\xee\x45\xe4\x00\x84\x3e\x5a\x9b\x9b\x71\xfb\x2b\xff\xf0\x5f\xf9\x8f\x5f\xb9\x87\x77\xee\x80\x6c\x0a\x50\xa1\x01\x68\x80\xcf\x83\x26\xe6\xbc\xee\x6f\xe9\x02\xe4\xe5\x71\x9e\x30\xd7\x96\xf3\xa5\x57\x3d\xb9\x3e\xca\xc5\x9e\x80\x73\x3c\x70\x3e\x0a\x58\x69\x04\x9c\x73\xe7\x7d\xa4\x52\x2d\x80\x3d\xcb\x81\x94\x4c\x20\xb6\x12\x48\x91\x03\x2e\xac\x06\x92\xf7\x03\x77\xfc\x81\x33\x3d\x80\xb2\xfb\x40\xa2\x3a\xc0\xae\xff\xd4\x81\x39\x78\xa5\xe6\xb8\x0f\x1e\xc1\x6d\xc0\x72\x6e\xb7\x48\xd5\xf4\x7b\xfd\x59\x6e\x45\x1d\x88\x7f\xed\xff\x75\xee\xf7\xf7\xae\x82\xff\x02\xf7\xf0\xaa\x27\xb7\x4f\xbf\x01\xf2\x5b\xb9\xff\x5a\x71\x40\xbe\x3a\x1f\x17\x92\xd5\x77\x87\x42\xe0\xda\x21\xa0\xbf\x2a\x20\xd9\x85\x8f\xb5\x05\xce\xc7\xf3\x3c\x91\xb2\x16\x58\x6e\x02\x9c\x2e\x05\xfc\xf6\x00\x49\x2d\x38\x37\x77\xd2\x19\x38\x6a\xcd\xdf\x19\x92\x31\x20\xb1\x77\x66\xf3\x35\x45\x45\xf9\xcf\x3c\x20\xe6\x3f\xd1\x7f\x71\xbe\x8b\xba\x1f\xa2\xdf\xb5\xb9\x0f\x91\x7f\x58\x95\xf5\x2f\xe2\xf0\x0b\xf7\xc1\x9e\x71\xfb\xd9\x54\xd8\x1d\x08\x1c\x00\xa7\xc9\x81\x42\xe1\x54\xa5\xc0\x1e\x50\x3a\xcf\xf9\x4e\x49\xde\xb8\x3e\x16\x68\x6d\xcd\xc7\x7d\x8f\x78\x20\xf5\x19\x30\x2c\x19\x38\x7d\x15\x98\xea\x07\x9c\x2a\x07\x16\xfb\x02\xc7\x5f\x82\x6e\xba\xc6\xab\x03\xbb\x1e\x01\xb1\xc7\xf9\xb3\x3e\xcc\x80\xd4\x4a\xe0\xb0\x17\x70\xbb\x02\x88\x19\xc9\xf3\x64\xb4\x7d\x4d\xff\xc5\x7e\x3f\x22\xff\xb1\xa1\xde\x9f\xfd\x16\xb9\x8f\xe5\xc2\x9a\x6f\x91\xd7\x1f\xe2\xf0\xa7\xba\xb7\x70\x5a\xf2\x71\x43\x2d\xff\xdd\xb9\x2d\x1d\xc8\x2d\xdf\x55\x72\xbe\x0d\xe0\xf9\x4f\x55\x0d\xc8\x38\x09\x98\x8c\x07\xd2\x0a\x81\x4e\xdd\x81\xd3\x3d\x80\x41\x13\xf8\xfb\xdd\xc1\x13\x38\xf6\x91\xeb\x28\x1d\x69\x00\xac\xbd\x0a\xc4\x1c\x01\x76\xfe\x00\x22\x3e\x02\x87\xfa\x00\x07\x32\x39\x5f\x1c\xbe\x09\xb8\xe1\x05\xec\xab\x07\x3c\x1b\x02\xec\x3d\x2d\xf8\x2f\x57\xf3\xb9\x8b\xe3\xdc\xe3\x94\xe0\xaf\xa0\x1f\xb3\x44\xe0\xc8\x16\x0a\x6b\x9e\x05\xc2\xf7\x39\xc7\xff\x12\x87\x7f\xf0\x5f\xe4\x3f\x44\xff\x79\x8f\x64\xe0\x71\x01\xb7\xf7\xf7\x73\x7b\x53\x18\x0f\xd7\x46\x70\x9b\xde\x19\xa8\x17\x0a\xa4\x5c\x04\x1a\x59\x01\xa7\x0a\x01\x8b\x3a\x40\x5c\x89\x54\x8c\x6d\x7d\xe0\x70\x3d\x19\xcd\x31\x9f\x80\xc8\x0e\xf5\x3d\x9c\x77\x03\xfb\x4d\xe4\x2a\xbc\x0c\x80\xbd\x8b\x15\x6c\x25\xbe\xed\x36\x51\x08\x8e\x7a\x23\x59\x63\x2a\xa4\x26\xcf\x01\xb6\xe7\x28\x5c\xce\x7e\x00\x04\x16\x2b\xcc\x2a\xc9\x06\xfc\x3f\x2b\x84\x7f\x53\x01\x7c\xd7\x28\x70\xbd\x93\xbb\xf2\x74\x9e\xb0\x3c\x4d\x5e\x49\x62\xdd\xca\xeb\x1b\x92\xbf\x5d\xeb\x51\xcf\x17\x97\x3d\xd2\x74\x6e\x3d\x67\x57\x5d\xe2\x63\x66\xce\xac\x43\xfb\xad\x69\xc1\x50\xfd\xa7\x38\xfc\xe6\x3f\x3f\x24\x24\x66\x8d\xfc\xff\xc6\xed\xad\xee\x52\x74\x4e\x73\x25\xa7\x3e\xed\x02\xcf\x67\xcb\xd3\x39\x45\x52\x80\x02\x71\x21\x71\x6a\xca\x9b\x95\xd7\x00\xd1\x6f\x35\x0c\x9b\x66\x03\xfb\x43\xb5\xca\x6d\xec\x81\xd0\xa3\xda\xf6\xc3\x5d\xea\xc8\xec\x78\xad\x7d\x70\xfa\xb6\xba\x93\x03\xfa\x6b\xbf\x58\x61\x57\xef\xf2\x16\xe5\xc6\x52\x5b\xbc\xa4\x6f\xfa\xdd\xd0\x4e\xda\xaf\x2f\xd3\x78\xfd\x14\xed\xac\x93\xc7\x65\x8e\xac\x1b\xa3\x1d\x74\x25\x55\x66\xc2\x1a\x15\xed\xd3\x85\x1d\x64\x0c\xbc\xfa\x37\x56\x7d\x7f\x56\x7a\xce\x8a\x24\x1d\x19\xc6\xa4\xb7\x2e\xcc\xd0\x69\xc2\x98\x74\x07\x97\xc5\x8d\x27\x32\x56\x97\xcd\x7a\xd3\xf0\x08\xf9\x79\x47\x63\xa5\xc4\x4e\xd9\xaf\xd6\x52\x62\x9d\x34\x54\x48\xf3\x62\x92\x8b\x12\xf5\xbb\x1f\x7f\x4f\xe1\xde\x9f\xe2\x20\xfa\xff\x26\x4d\xf0\xbf\x0e\xda\x72\xff\xb9\xbf\xf9\xfb\x14\xe9\x14\x28\x77\x9b\x06\xd5\x35\x2e\x06\x6a\x53\x41\x37\xc5\x45\x8f\x66\xc6\x89\xb1\x86\xa4\xcf\x7b\xd8\xbf\x09\x9d\x9e\xee\xab\x34\x69\x2e\xbd\x14\xd8\x65\x6f\x9a\xa6\x73\x53\x6a\x99\xff\x2c\xd3\x8c\x36\x0a\x32\x95\x7e\x1f\x9b\xf9\xf6\x53\x97\xd3\x5a\xfb\xbe\x59\xf6\xc4\x31\x0a\xa6\x1e\x33\x9a\x1d\x5a\x30\x4a\xf1\xe3\x8a\x1d\xcd\xe6\xf8\x0c\x6d\xb0\x63\xc9\x6e\xd3\xdb\x21\x27\x95\x0f\xba\xc9\x9b\x4e\x8f\x3d\xa4\x32\xd8\xd5\xb1\xe9\xbd\x74\x13\x95\x09\xf3\xba\x35\xcd\xc8\xbf\xac\x22\xe7\x7c\xd8\x54\xf9\xe5\x7c\xe5\xba\xb3\x33\x4d\xe3\x18\x53\x9a\x34\xe5\x43\xd3\x41\x8c\x29\xac\x9c\x94\x6a\xd2\x9c\x31\x79\x9d\xf1\xed\xfe\x8f\xb2\x37\x8f\xcb\x31\xff\xfe\xc7\x9f\xd2\xa2\x10\x25\x8c\x2d\xb2\x2f\xa1\xac\xa1\x64\xdf\xa2\x64\xa9\x6c\x45\xd9\x8a\x94\x64\x29\x2d\x2a\x0a\x91\x14\x89\x4a\x65\xab\xd0\x6e\xad\xd0\x22\x21\xa4\xec\x6b\x93\x6d\xc6\xd8\xb2\x8c\x31\x33\xb8\x7e\x8f\xfb\x9c\xd7\x15\x35\xfc\xde\x9f\xef\x5f\xe7\x71\x37\xf7\xdc\xae\xf3\xba\xce\xeb\xbc\x96\xe7\xf3\x3c\x4f\x5b\x15\x49\xaa\xb3\xc0\x2a\x4c\x4f\x49\x92\xd4\x96\x4d\x09\x6c\xfd\x8b\x24\xa9\x76\x9c\x14\xa6\x6b\x2f\x49\x2a\x61\x96\xd1\xad\x5a\x4a\x92\x72\x96\xb9\x51\xcb\xc3\x92\xa4\x6c\x5c\xd3\xff\x8f\x7e\x6c\x5f\xf8\xd7\xca\x54\xd8\x72\xa3\x86\xf4\xe6\x6f\x85\x35\x23\xdc\xb7\x38\x41\x8f\x70\xdf\xfc\x0a\xc6\x87\x4f\xe6\x77\xa7\xef\xa5\xe9\x19\x52\xf5\xcc\x81\x57\xcc\x93\x88\x8e\xed\x47\xc2\xcf\x61\xb3\xfa\xd3\xfd\xd4\xc6\x63\x83\x0c\x1b\x65\x01\x7e\x1d\x06\xa4\x76\xfa\xac\x66\xb2\x2a\xd8\x68\x92\xc9\xd4\x7a\x9f\x96\x4a\x46\x2d\x27\xdb\x37\x38\xb2\xb8\x6e\xff\xa5\x0b\xcf\x6a\x6b\xcf\xdf\xdb\xef\x94\x8f\xaf\x4e\x7f\xfb\xa6\x7d\xcb\xc3\x77\x36\x2e\xb2\xb5\xe8\xab\x92\xa8\xd6\xe4\xc4\x0c\x83\x3e\x2e\x39\x27\x9a\x76\xb1\xb9\xdf\xa7\x77\x69\x7c\x53\x65\xeb\x09\x7d\x3a\xfd\x5e\xaf\xf1\x33\xab\xc0\x3e\xf9\x92\xd4\x68\x97\x65\x72\xef\xd1\x92\xa4\xb5\x66\xfc\x19\x03\x3f\x49\xd2\xbc\x34\x0e\x3d\xe6\x4b\x52\xfd\x96\xa3\x2b\xf5\x03\x24\xa9\xee\xd9\x91\xc1\xdd\xa2\x25\x49\xa3\x72\xf8\xc9\xae\xa6\x92\xa4\xa1\x34\xf4\x50\xa7\x37\x92\x54\xe7\xe0\x90\x39\x9d\xda\x4a\x52\x9d\x0e\x55\x79\x50\xf0\x9f\x9e\xfb\xa9\xd1\xbd\xca\x83\x32\x6d\xba\xe5\xb8\x71\x45\x8f\x6e\x09\x2f\xc5\xf1\x75\xe2\x19\xbf\x3e\x94\x21\x4f\x98\x0e\x20\x7d\xef\x94\xca\xc1\x84\x32\xec\x1b\x3e\x8c\xee\x29\xa3\x72\x46\x92\x9e\xef\xd6\xd4\xd1\x74\x6f\xb7\xb6\x6c\x2c\xc5\x8f\xc7\xab\xf1\xfe\x75\x12\x81\xa5\xb6\xe3\xf7\xb6\x4e\x56\x3e\xb6\xe0\xc1\xb8\x84\xbe\x8b\xea\x3e\xb4\xdd\x37\xe6\xcc\x38\x43\xed\xd9\xd6\xcf\xc6\xe8\xcc\xde\xd8\xd8\x69\xd2\x9c\x51\xd7\x57\xa4\x36\x7d\x37\xc1\x78\x64\xf9\xa6\x95\xcd\xbe\x8e\x55\x1b\x11\x16\xbf\xa0\x45\xe3\x91\x23\x86\x3f\x3d\x36\xb3\x45\xc6\x70\xdd\xe1\x0e\xc5\x27\x5b\x04\x0e\x2d\x1e\x3e\xe0\x51\xb3\xe6\x06\x43\x53\x86\xbf\xff\xb7\x7f\xd3\x7b\x43\xb4\x86\x7c\x92\xa4\xc6\xad\x4d\xdc\x4d\xc2\x25\x49\x3b\x7a\x50\xdb\x81\xf7\x25\xa9\xe1\x3e\xa3\x78\xa3\x65\x92\xa4\x79\xb9\xdf\x83\x7e\x7f\x4b\x52\xfd\x7d\x7d\xef\xf7\x79\x25\x49\xf5\xb6\xf5\x3e\xdc\xeb\xbc\x24\xd5\x35\xee\xb5\xd9\xb0\x89\x24\x69\x58\x7f\x12\xfc\xb6\x3f\x32\x1b\x50\x5d\xd1\xc3\x08\xbe\x15\xba\x26\x75\xa5\xfb\xa2\x0b\x13\xd9\xef\xbc\x9e\x26\x74\x3b\x7e\xcc\x67\x38\x8d\x98\xac\xff\xb2\xa7\x7c\x02\xf1\x3d\x76\x3e\xb5\x64\xdc\xc7\x74\x0a\x7d\x7f\x9d\xaa\x0d\x55\x59\xad\x1a\x32\x9d\xf0\x1f\xc7\x4d\x33\x09\x75\xb0\x9f\x67\x1b\xdd\x34\x1e\xb0\x3e\x34\x73\x6a\x77\x4d\x75\xb5\x09\x5f\xa6\xbb\x0f\x2b\x6d\x50\x3a\xca\x6e\x9a\xc7\xb4\xa3\x8d\x5c\x87\x3c\xb2\x79\xef\x7a\x49\xe7\x83\xf1\x64\x9b\x05\x41\x9b\x9b\xd4\x36\xca\xb2\xf6\x89\x99\xd9\xc4\xa3\x6f\x92\xd5\xdb\x8c\x9b\x4d\x26\xf6\x3e\x68\x35\xe6\xfc\x94\xc6\x17\x7a\xcd\xb3\x6a\xf5\x70\x89\x4e\xba\xe1\x5d\xab\xf9\x7f\x8d\xd3\xde\x6a\xb0\x75\xf2\x59\x49\x6a\xd8\xb8\xc7\x31\xf3\x40\x49\xaa\xff\xb9\xfb\xf1\x71\x87\x25\xa9\x5e\x41\xd7\x57\xa3\x4d\x24\x49\xa3\xa8\xdb\xaf\x23\xba\x4a\x92\xc6\x85\x6e\x06\xc3\x20\x49\x1a\xed\xba\x1e\x37\x7d\x27\x49\xea\xf1\x9d\x3f\x9b\xd8\x4a\x52\x9d\xc0\x97\xf9\x0d\xe9\xb6\x53\xe6\x3f\x95\xa6\xf7\xa4\x15\xa0\x8a\xff\x23\xf4\x6f\x8e\x3a\x4e\xa0\xfe\xf4\xc9\x6b\x2c\x09\x65\xdb\x1b\xc6\x55\xd8\x3b\x0b\xa6\x91\x8a\xf6\x96\xd9\xb6\xa4\x73\xbe\x2e\x74\x0e\xdd\x63\x7b\x14\xcc\xa5\x6a\xaa\xc5\x67\x16\x52\xfe\x9c\x39\xd0\xe9\x57\x85\x9d\x78\xd0\x79\x60\x3d\x27\x60\xf4\xe8\xc5\x43\xda\xf7\x52\xc9\x32\xbe\xe4\x94\x3c\xc8\xaf\xde\xc2\x7e\x4b\x9d\xe6\x4e\xfe\xbd\xfe\x1b\xc3\x79\x4e\x5d\x17\x3d\x6d\x80\xee\x66\x8e\x07\x03\x06\x34\x88\xeb\x72\xcb\xb1\xe9\xce\x87\x0d\x32\x3a\xb5\x5f\xe8\x90\xba\xa1\xc1\x98\x0e\x9e\x0b\xb6\x17\x2e\xd1\xcc\x6a\x6f\xb0\x20\xe4\xde\xda\xfa\x71\xed\x36\x2d\x18\xf6\x61\x5a\xdd\x8b\x6d\x37\xce\x1d\x26\x49\xea\x87\xdb\xd6\xb5\xb5\x96\xa4\x3a\x39\x7a\xb6\xd3\x3e\x4a\x92\xda\xe3\x36\xbd\xad\xb4\x25\x49\xf5\x66\xeb\x8b\x53\xf4\x24\x49\xd5\x45\xf7\xed\xc4\x5e\x92\xa4\xb2\x57\x37\xc7\x7c\x91\x24\xa9\x38\xe8\xee\x35\x1b\x2f\x49\x2a\x2d\xca\x2b\xdb\xd3\xf3\x56\xf1\x9f\x3a\x8c\xa0\x9d\xc2\x7f\xf8\x3f\x12\xeb\xc1\xc4\x3b\xda\x12\x0e\x18\x79\xc2\x81\x50\x95\x2d\x46\xf3\xa9\x7e\x73\xed\x63\x27\x1a\x48\x4f\x63\xd6\x47\x59\xb2\x81\xab\xb3\xe7\xf4\x58\x46\xbf\x3f\x69\xc8\x0a\xaa\xd3\x33\x29\x5d\x4d\xfa\xee\xfd\x1e\xae\x9e\xde\xbc\xb2\xd6\x1b\xfd\x0b\x9e\x83\x7b\x7f\x51\x3b\xd3\x69\xba\xe7\xf0\x09\x17\xeb\x2c\x6f\x7b\xc7\xb3\xc9\xfc\xa0\x3a\x07\x5a\x7b\x7a\xbc\xf4\x6d\x57\x27\xb4\x65\x96\xc7\xae\x88\x71\x6a\x37\x9a\x97\x7a\xb4\x3e\x3c\x51\xf5\x78\xb3\x13\xab\xce\xe4\x9f\x52\x59\xd5\x4c\x7f\x95\xdb\x1d\xa3\xda\x59\xcd\x12\x56\x79\xbc\x8d\xae\x55\xaf\x79\xd7\xe5\xd4\x77\x4f\x67\xeb\x92\x7d\x0a\xdb\xe8\x9a\x23\xf1\x4a\x1b\xb6\x9f\x4b\xf5\xdd\x0d\x0e\xcc\xde\x4f\x67\x29\x43\x5b\xd2\xef\xd6\xd4\x99\xd1\x83\xfe\xbe\xcb\x86\x74\xef\x6f\x8c\x19\x48\xef\xef\x42\xc5\x48\xaa\xaf\x93\xf5\x7f\x8e\xf8\x58\x51\x5e\x3c\x54\xc9\x7c\x90\x7d\x93\x98\x07\xb3\x2b\x7c\x11\xdd\x22\x6f\x2d\x58\x42\xa8\x42\xd0\xfb\xa5\xb4\xb2\x78\x39\xb3\x6e\xc4\x52\x5d\xee\x17\xb4\x60\xd8\x6a\xfa\xbb\xf5\x56\x1f\x42\xed\xc7\xf4\xf0\xa7\x3c\xd3\x6b\x77\x20\xf1\xa7\xda\xb7\xda\xd0\xaa\xc1\x7d\xa0\x65\xd4\xfa\x3b\xdd\x3a\x28\x45\x34\x5b\xb3\xe1\xd9\x98\x26\x48\x68\x7c\x67\xc3\xe1\x39\xbf\x03\xda\xe7\x37\x04\x79\x3e\x02\x1a\x5a\xae\x2f\x09\xdb\x02\xd4\xef\xbd\x7e\x78\xa2\x13\xa0\xb1\x26\xc8\xe0\xf4\x64\xa0\xce\x89\xc0\x7e\xd7\x3f\x03\xaa\x1f\xd6\xb9\xbe\x3c\x00\x28\xff\x19\x40\xfc\x59\xa5\x9b\x5e\x82\xff\xb0\x82\x75\xbb\xb3\x5c\x89\x2f\x8a\x69\xce\x5c\xaf\xe9\xe4\x48\x3a\xee\x78\xbb\x80\x3f\x1f\x9b\x4b\xfb\x8a\x8b\x31\x63\x5f\x72\xfc\x4f\xa6\x95\xe2\x98\xc1\x74\x42\x95\x93\x7b\xda\x3b\xb0\xff\x8e\xe4\x47\xd4\x28\xe7\x27\xe4\xbf\x2e\xf3\x60\xd6\x17\xae\xa4\xf7\xed\xf3\xd1\x83\xeb\x3b\xbf\x32\x5e\xee\x64\xbe\x86\xe2\xdf\xf6\xce\x3a\xe2\xd1\x98\x3f\x0f\xa2\x3c\x69\x1a\xc9\x3c\x89\x2e\xa7\xb7\xd2\xad\x7a\x83\x7d\xdb\x93\x95\xea\x02\x1a\x07\xb7\x7f\x6e\x33\x08\x50\xb5\x8a\x50\x37\x69\x0b\x28\x59\x45\xd4\xb5\xa1\x08\x8b\xa8\xe5\x46\x23\xbb\x7d\xc3\x26\x7a\x82\x6d\xdb\xf7\x90\x92\x4f\xb8\x40\x94\xc2\x16\x33\x72\xb0\x75\x22\x2b\x6a\x6f\x09\x93\xa8\x2f\xc8\x7a\x81\x53\xf8\x0b\xfd\x72\xaf\x5c\xb6\x1e\xa2\x8e\x79\xb9\x18\x27\xb7\xc9\x6c\x97\x10\xee\x7f\x46\xa2\x76\x0f\x38\x6e\x3c\x9b\xf8\x62\x29\xaa\x0b\x08\xc7\x38\xe0\xbf\x84\x50\xa5\xe8\x42\xe6\xc1\x6c\xb3\x59\x45\xaa\xf3\xc1\x2d\xbd\x29\x5f\xfa\x57\xac\xa1\xf8\x5f\xd5\x30\x80\x50\x94\xc5\x1f\x03\x09\x0f\x76\x08\x0b\xa6\xef\x5b\x1d\x09\xa1\x1d\xe6\x58\x5d\xe6\x85\xf4\xd7\x61\xfd\x8c\xb6\x06\xcc\x0b\x51\xdd\x16\x9b\xc4\x19\x3a\x2e\x8d\x57\xe4\xb8\x34\x23\xca\x44\x71\x56\x53\x08\xe9\x88\xfd\xe4\x42\x23\x1c\x6b\xbe\x9e\x32\x6d\xec\xee\x58\xfa\xc5\x98\xbb\x47\x69\x45\x8e\x69\x77\x89\x2a\xaf\xa3\xe7\x3e\x26\xfc\x33\xda\xf9\x2b\x65\xa8\xed\x3d\xd9\xbf\xcd\xa2\xb3\xfc\xfa\x4a\xb6\x01\xa9\x6c\xfd\xc4\xb8\x78\x9b\x89\xf1\xd9\xae\xb0\xc7\x2a\xb8\x4a\x34\x6d\xaf\x13\xaf\xff\x66\xcc\x87\x88\x69\xb0\x92\x70\xad\x6d\xe9\xde\xb4\x7e\x6c\x76\xf4\xa7\xb7\xb2\xae\x59\x20\xa1\x4a\x9e\x7d\x19\x27\x5f\x7a\x91\xf9\x3f\x0b\x46\x85\x12\x3b\x67\x66\x11\xeb\x66\x4c\x8c\xdb\x41\xe3\x35\x74\xcf\x2e\x42\x61\x0c\xea\xed\xa6\x93\x7a\xf3\xd7\xac\x17\x82\xe4\x24\x25\x1e\x87\xa4\x15\x3c\x0e\x49\x25\xfd\x42\xd9\x4e\xa2\xba\xf7\xc4\xcb\x8b\xe8\xc9\x92\x3c\xd7\x52\xdd\x76\x62\x61\x14\x65\xe8\x84\x9c\x34\x9a\x79\x07\xb2\xb9\xc3\xc8\x01\x97\x72\xea\x8f\xb0\xff\xcf\xbf\x69\x66\xc7\x25\x4b\xd5\x79\x31\xd5\x74\x3f\x14\x27\x11\x31\x3e\x42\xff\x61\x2d\xd5\x77\xa7\x94\x31\xbf\x2f\x21\xd9\x9d\xf8\xb0\x31\xb9\x9e\xe4\xb7\xac\x03\x14\xb2\x22\x90\xde\x5f\x50\x03\xae\xae\xf6\x59\xb3\x85\xfc\x70\x47\x18\xe5\xcb\x45\xa9\x8c\x93\xdb\x57\xb0\x5e\x88\x55\x6a\x34\x8d\x8b\x99\x57\x1c\x8d\xe3\xa0\x4a\xf6\x5b\xdf\x27\x91\xaa\xb2\x1b\xe7\x1e\x12\x71\x90\x31\x81\x6d\xa6\x79\x33\xe6\xc1\xb4\x66\x3d\xf7\x8c\xac\x89\xd6\x64\x7b\x2c\xa4\xcc\x94\xfe\x70\x0d\xad\xb8\xe9\x19\x91\x74\xa6\x4b\x2f\x49\xa1\x11\x4d\x8b\x3d\x4b\xf3\x22\x75\xf1\x5d\x42\x9c\x53\xd6\xbf\x25\x06\xdb\x21\x81\xd7\xec\x0b\x91\xaa\xf1\x62\xa2\xc4\xb8\x44\x88\xba\xef\x30\x81\x03\x33\x6f\x48\xd6\x41\x8a\xd7\xe6\x03\xc4\x4e\x87\x75\x94\x17\x42\x9b\x6f\xa4\xfd\xd1\x06\x5d\xee\x03\xe6\x5f\xc1\xfd\xb0\x3c\x0a\x22\x08\xaf\x5b\x92\xb1\xd3\x5b\x61\xe7\x1b\xef\xe6\xfe\x58\x6f\xe3\x09\x0f\x9c\xb4\x67\x3f\xbd\xd5\x11\x27\x13\x09\x7d\xee\x2b\x74\x71\x3a\x8c\x4c\x23\x9c\x5b\xeb\xf5\x51\x71\x52\xa9\xe2\xc3\x38\x37\xa3\x0c\x9c\x6d\xd2\x9b\x90\xbe\xec\x41\x13\xa8\x96\x21\xc7\x75\x1e\x65\xa4\xec\xe7\x5e\xfc\xf7\xbf\xf8\x09\xb2\xdb\x1d\xea\x4b\xff\x7f\x64\x2e\xed\xf4\xb2\xb2\x6f\x53\x06\x3e\xf9\xdb\x1b\x52\xe2\x97\xf1\xfc\x54\x81\xdb\x55\xf1\x62\x04\x5f\x28\xee\x94\xf4\x03\x5e\x4c\x7c\x79\x00\x75\x25\xda\xe5\xc2\xba\x4f\xe1\xd2\x16\x1a\xdd\x4d\x36\xe1\xd4\x9d\x67\x9d\xf6\x0e\xba\x81\x90\x79\x30\xee\x27\xe2\xe8\xa9\x17\x99\xef\xdd\xc7\x71\x70\x80\x12\xa7\xf5\xe3\x44\x7a\xda\xf1\xe9\xc9\x84\x46\x0f\xb5\x67\x95\x06\xc3\x12\xe6\x47\xb4\x35\x60\xfd\x8c\xfa\xf6\xa7\xc4\xc9\xbc\x60\x0c\xdb\xb3\x1f\x9a\xd0\x7f\xc9\xff\xca\x9d\x2c\x0b\xfe\x18\x47\x67\xd9\x82\x42\xfb\x54\xb6\x1e\x14\x2f\x67\x27\x6d\x25\x7c\xef\xec\xf0\x03\x14\xb9\x05\x67\x72\xe8\x73\x81\x66\x29\x65\xb2\xfc\x8a\x17\xa4\x9b\x93\x27\x70\xbb\x93\xa2\x9e\x3f\x53\xf0\xc5\x52\x04\xff\xe5\x50\x0b\xa9\x3a\x2f\x86\x70\xcf\x18\xdd\x60\xda\x47\x6f\x1b\xcf\xa8\x61\x88\x65\x04\xa1\xa9\x81\xc6\xbb\x8c\xd9\xff\xdd\x14\xff\x1e\xda\xfb\x68\x96\x2e\x31\x60\xbf\xe7\x6b\x1c\xe4\x3a\xf7\x73\xac\x8b\x33\x05\xac\x07\x34\x56\x97\xfd\x1e\x94\xcc\x7e\xf7\x5c\x9c\x43\x7c\x63\xdd\x88\x33\x34\x9e\x1a\x0f\x0a\x55\xd9\xff\x8b\x06\x6c\x2f\xd9\x35\xa6\x5f\xbe\xa4\xd2\x73\x2b\x59\xab\x31\xf4\x7e\x2f\xd7\xb2\x53\xa6\xcf\xe5\x2b\xe8\x9b\x97\x32\x42\x68\x87\x72\x29\x8d\x67\xda\x25\x95\x13\x34\x0e\x97\x7a\x5d\xa5\x7e\x4b\xc5\xe6\x4f\xe9\xc9\x2f\xac\xf8\x87\x9e\x5c\xe6\x7f\x9c\x12\xfd\x4f\x4e\x6c\x93\xaa\xf1\x85\x52\x05\xaf\x90\x79\x31\x11\x15\x61\x94\x65\xb7\x1c\x89\xa4\x75\x62\xbd\x33\x77\x53\xf0\x3f\x53\x9d\x07\xb4\xec\xc0\x21\xe2\x51\x2f\x4e\x4f\xe5\xfd\x51\xad\x74\xe2\xc9\x4e\x3b\x77\x94\xf8\x94\x13\x8b\x38\xce\x47\x39\xe5\x50\xd6\x1f\xd0\x3c\x97\xf0\xe0\x6e\x16\xcc\x5a\x69\x31\xf7\x3c\xa1\xaf\xea\xd7\x8a\xc5\x89\xbd\x4c\xdc\xe8\x5d\xf7\x69\x44\x33\xe8\x5a\x3b\x7d\x8a\xc8\xeb\x69\x23\x49\x71\xe9\x46\xcf\x59\x14\x1f\xd7\xad\xdc\x22\xf8\xf3\x46\x1a\x8f\x1b\xda\x71\xc4\x3c\xbb\xfe\xf4\x08\xfd\xd2\x8d\x8c\x62\x62\x2e\x94\x7d\x7c\x48\x3b\xc0\x6b\xf5\x3f\xf1\x89\xe8\x04\xdf\x25\x16\xb5\x63\x7f\xf3\x53\xaa\x8f\x4b\x15\x5f\x88\xf6\x59\x32\x0f\x28\xb8\x4d\x2c\xe9\x65\x05\x1c\xd9\x4f\xf3\xb9\x26\x0f\xc8\x79\x50\x3a\xf1\x3a\xe6\x6f\x17\xfd\xb1\x76\x9d\xa4\x7d\xd2\x54\x5f\x8e\xf3\xf1\x60\xbc\x7c\x58\x18\x05\x31\xfa\x55\x30\x0f\xa8\xeb\x96\x62\x5a\x05\x9b\x0f\xb9\x42\xfb\x12\xb5\xc5\xd7\xbb\xb3\xff\xb7\xef\xb2\xbd\xff\x42\x8b\xfe\x97\x87\x3d\xba\xd0\xdd\xdf\xfd\xa2\xe1\x34\xe2\x0f\x7e\x9f\xf6\x8c\xfe\x7e\xd5\x95\xc6\xe7\xc1\xdb\x40\xe6\xbd\xdc\xe4\x27\xbe\x7f\x33\x5d\x9f\xbf\x5f\x48\xff\xc2\xfd\x53\xf7\x29\xa3\xdf\x53\x7f\x47\xf9\x56\xe6\x39\x5c\x55\x62\x7b\xf1\x23\xdb\x22\xa1\x3d\x2a\xf7\x09\x62\x1e\x55\x48\xb3\xbd\xf1\x3c\x0f\x12\x29\xae\x65\x1e\x90\xc7\xae\x74\x1a\xfd\x65\x91\xc7\x88\xb7\xe1\xb4\x96\xf5\x9f\x1c\xd2\x72\x08\x95\x9f\x31\x3b\x8f\xf4\x52\x26\x8d\x2c\xa0\x59\x6c\xf6\xe7\x05\xfa\xde\x10\xd3\x8b\x84\xf7\xf7\x49\xbf\x42\x59\xbd\x4b\x09\xeb\x47\x34\x9d\x71\x93\xf2\xab\xf2\xf0\x3b\x5f\xd9\x7f\x99\x0f\xf3\xe4\x1a\xf3\x61\x9e\x3e\xed\x44\xeb\xc3\x33\x63\xd6\x03\x79\xf6\xca\xca\x81\x3f\xf3\x8a\xf6\x5b\xfb\x00\xda\x47\xfc\xd6\x69\x27\x65\x9e\xdf\x3c\x53\x28\xe2\x9e\x79\x17\x50\x45\xc0\xd3\xe0\xdb\x74\xf3\xf3\xd4\xab\x92\xfb\x4a\x5d\x64\x3f\xef\x6e\x67\x7b\xc3\x95\x6d\xe9\x10\xb6\x55\x7d\xa5\xfe\x52\xd8\x0d\x61\x87\x78\x97\x31\x3b\x95\xa2\xc8\x27\x88\xe7\xf5\x72\x95\x13\x94\x7d\x96\x88\xbe\x39\x0b\x5e\x9f\xa1\x3c\x68\x9f\x5b\x48\x71\x30\xdd\x98\x79\x40\x93\xac\x8b\x29\x1a\x47\xbd\xbe\x42\x7e\x99\x94\x94\xd1\xfe\xa3\xd7\x1a\xe6\x85\x74\xd2\xbe\x4b\x4f\xd7\xb8\xfc\x01\xc5\x97\x8a\x76\xc5\x2d\xf6\xff\x79\x09\xdb\xd7\xc6\xdc\x2f\xa9\x52\xa7\x1d\xed\x60\xde\xb5\x19\x44\x7a\x51\xef\xec\x27\xd3\x0e\xfc\x9d\xe6\x42\xb2\x6f\xf5\x7d\xe9\x84\xf3\xae\xd6\x76\xda\xb1\xbd\x7d\x71\x88\x3a\x87\xbe\x37\xcc\xa7\x37\xf0\xb6\xec\x16\xcd\xb4\xb7\x2e\x6f\x68\x9f\xf1\x32\x8d\xef\x14\x64\x9d\x98\x72\xf3\xea\xe3\x72\x5d\xf4\xe4\xbd\x4a\xe7\x8c\x75\x03\x33\x89\x5d\xe2\x93\x75\x82\xb2\xcd\x2a\xa1\xff\xe4\xf6\x30\x97\xb2\xd0\xa2\xfc\xb3\x34\x1f\xe6\x05\x73\x9c\xdb\x46\x5c\xa4\xd9\x6a\x95\x7a\x85\x78\x3e\xe6\xaf\x59\x37\x64\xb4\xf9\x4d\x9a\x3f\x03\x37\xde\xa1\xf5\xc4\x50\x97\xfd\x96\xf5\x71\x9a\xce\x7e\x46\x4f\xa9\xa2\xf9\xdb\x6b\xf6\xff\xad\x18\x87\x7f\xce\xaa\x12\x33\xe4\x9f\xd1\xba\xff\x28\xec\xbf\x83\x07\xd0\x4a\xf5\xa5\x15\x33\xbf\x3f\x4f\x9f\x4b\x4f\xf0\xe5\xa5\x17\xed\xe0\xbe\x18\x30\xb3\xf3\x4b\x49\xc2\x62\xb6\x39\x34\x6f\xfe\x4d\x2e\x0b\xe1\xff\xef\x05\xcd\x9f\xbf\xb3\xbf\x46\xd1\xf8\xce\x61\x7e\xe9\xf3\xcd\xec\xf7\xe3\x00\xb6\xb2\x7e\x0e\x8f\x8b\xf4\xff\xa0\x7f\xd1\xfd\x86\xf8\xbe\xe0\x8d\xf4\x5d\xf5\xad\xae\xfd\x53\x2e\xe3\x56\xef\x24\x60\x82\x33\xf0\x7a\x19\xf7\x43\x51\xbc\x75\x3b\x0b\xe0\xd1\x57\xc0\xb1\x29\xf0\xa0\x00\x70\x5b\x05\x3c\x70\x07\x7c\x93\x80\x5b\xe6\x40\x50\x0e\x70\xa3\x23\x10\x9e\x00\x5c\xd3\x07\x62\xbb\x03\xa5\xff\x00\x87\x4c\x01\xc5\x9a\x98\x65\x0b\x5c\x5f\xc2\x8c\xcb\xd2\x70\xce\x2c\xd7\xcc\x81\x3f\x2a\xd8\x7e\x8f\x7b\x17\xcc\x65\x7b\x2a\x59\xe0\x5d\x63\xaa\xe3\x7e\x55\xfa\xff\x02\xff\xdf\xb7\xfc\xdb\x7d\x75\x15\xff\xe1\xfb\xfa\xfd\x1f\xf4\xb9\xa8\xe2\x3d\x5c\x14\xe3\xe0\x0b\x7c\x39\x04\x0c\xfc\xc2\x7d\x5b\x86\x55\x00\x6f\xdb\x70\x3d\xb7\xe2\x19\x27\x5b\x00\x4f\xcf\x01\x33\x75\x80\x87\x63\x80\xb9\x77\x81\x7b\x7f\x01\xae\x3a\xac\xe7\xaf\x38\x99\xc9\x78\x77\xe9\x10\x20\xac\x0d\x50\x72\x04\xd8\x1d\xc1\xf8\x97\x62\xc6\x5e\x6d\xc5\x3b\xae\x92\x30\xe0\x42\x09\x70\x35\x0b\xb8\x37\x96\xf1\xa1\x17\xd3\x81\x92\x21\xac\xb5\x20\xe3\xde\x32\xde\x27\xd7\x7d\xcb\xfc\x07\xd9\xff\x9f\xe1\xff\x3f\xf2\xfb\xff\xd7\x26\x02\x1d\x5b\x7f\xd7\xd7\x40\xe0\xfd\xef\x4d\x01\xe3\x19\xc0\x0b\x73\xc6\xb9\x7f\x9f\x00\x58\x18\x01\x8f\xca\x98\xff\x70\xff\xa6\x62\xcf\xc5\xef\xdf\xd9\x17\xb8\x36\x89\xb1\x14\xc5\xfb\x5e\xa7\x0d\x94\x2c\x05\x42\x2b\x81\xcb\x1d\x80\x98\xfa\xc0\xc5\x7f\x81\x83\x6d\x14\xbb\x07\xae\x77\xbf\xb2\x80\xf5\x0f\x2e\xe7\x03\xf7\x24\xe0\x8a\x01\xf0\xda\xe0\x1b\x1f\x28\xff\x26\xdb\x9a\xfa\x07\xff\x0b\xff\xff\x11\xff\xa1\x8a\xff\x21\x78\x00\x4d\xff\xa8\xfe\x59\xd6\xc7\x50\x7c\xff\x4b\x25\x8f\xdf\xc7\x3c\xa0\xfb\x52\xe0\x5d\x08\xd0\x3f\x0c\xf8\x23\x04\x18\x72\x05\x78\xf2\x00\x30\xeb\xce\xf5\xbd\x53\xce\x00\x77\x16\x03\xb3\xad\x80\xd2\x10\xc0\x71\x39\xbf\x4f\xc5\xfe\xe8\x72\x4f\xc6\xbb\x8b\x2f\x2b\x4e\x42\x40\xb1\x17\xeb\x82\x5c\x28\x03\x0e\xc6\x00\x17\xa2\x39\x1e\x8a\x25\xae\x09\x3f\x5f\x04\xdc\xb3\x60\xfd\x8b\x97\x69\xc0\x79\x11\xf7\x55\x71\x10\xfe\x63\xff\x65\xfc\x73\x8f\x18\x9f\x9a\x38\xb8\xf4\x1d\xff\xe3\xff\xaa\x7f\xa1\x18\x97\xcf\x97\x80\x36\xb9\x8c\x6f\x74\xd1\x05\x5e\xe5\x03\x06\x4b\x81\xa7\x6b\x80\x41\x07\x80\x5f\x2f\x02\x23\xb7\x00\x77\x8d\x01\x4b\x5d\xae\x73\x9e\xa5\xf0\xff\x2e\xb0\xa0\x2e\x50\xd2\x5b\xb1\x37\x61\xbc\xdb\xd7\x1c\x28\xfa\x0c\x6c\xce\x05\xce\x0d\x01\xa2\x92\x81\x73\xb7\x79\x1c\x0a\xf3\x99\xe3\x52\xb4\x98\xc7\xa2\x50\x0b\xb8\xf7\x1e\x38\xe7\x02\xbc\x1d\xf7\x2d\x0e\xb2\x86\x56\xcf\x03\x55\xf3\x5f\xf8\xff\x53\xfe\xc3\x77\xf3\xe2\x7f\xf2\x3f\x6a\x58\xed\x71\xc0\x3f\x8d\x80\xa6\xbd\x81\xca\xc5\x1c\x1f\xcf\x5b\x02\xdd\x86\x02\x8f\xc3\x80\x7e\x06\xc0\xbd\x23\xc0\x10\xc5\xaa\x5d\x08\x98\x1d\x62\x9d\x03\xc5\xfc\x50\xcc\xf3\x79\x05\xc0\xf9\x64\x60\x69\x5b\xe0\xec\x29\xc0\xbb\x04\x38\x5b\x04\x6c\xb2\x54\x9c\x12\x80\x5d\x85\x40\xde\x43\x20\xf1\x02\x90\xab\x02\x1c\xef\xc3\x7f\x57\x8c\x83\x62\x77\xae\x88\x87\x7c\x25\xe0\x7d\x0b\xe0\x74\x37\xe6\xea\xc9\xf8\xff\xe1\x1a\xfe\xcb\x71\x5f\xc5\x7f\x10\x38\xb8\x8c\x07\x87\x79\x7d\x1b\x87\x9f\xf2\x3f\xae\x57\xb7\xb5\xc6\x02\x5f\x9c\x81\xba\x1a\xc0\x5f\x61\x40\x43\x67\xce\x07\xcd\xb4\x81\xa7\x31\x40\x87\xc3\xcc\x7b\x31\x98\x04\xdc\x29\x05\x06\x94\x31\xaf\x69\xd4\x6b\xe0\xd2\x07\xe6\x3f\x14\xed\x06\x66\x53\x1f\x68\xce\x13\x67\x9c\x01\x8f\x67\xc0\xe9\xa1\xc0\x7a\x17\xe0\xf4\x0d\x60\xa7\x16\x70\xfa\x35\x90\xa4\x0b\x64\x6b\x03\xc7\x92\x00\xc5\x6a\x7e\x31\x06\xc8\xee\x06\xdc\x7b\x08\x9c\xae\xc5\x1c\x1c\x99\x07\x93\x32\xab\x7a\xfe\x93\xfd\xaf\xc9\x7b\x91\x79\x00\xa1\x2b\xab\xe3\xa2\xd2\xff\x91\xff\xf1\xf5\x6f\xc5\xa1\x0a\xf8\xa2\xd8\xd3\x5d\xe3\x67\x50\xd1\x06\x5e\xfa\x00\x0d\x2e\x32\xef\xa1\xb9\x09\x70\xbf\x21\xd0\x69\x25\xf7\xb9\x50\xac\x27\x57\x1e\x00\x43\x8e\x00\xe7\xef\x00\x16\xb1\x40\x61\x2f\xe6\xcf\x9d\x49\x00\x1c\x57\x02\x39\xfb\x81\x55\xdb\x80\xec\x7a\x40\x50\x25\xe7\xc4\x1d\x61\xc0\x89\x0d\xac\x0b\x72\x2c\x85\xb9\x0e\xc7\x32\x81\x0b\xae\x40\x66\x26\x70\x37\x0b\x50\xec\xf6\xde\xbb\x8a\x79\x90\x08\x1c\x48\xaf\xee\xbf\xcc\xff\x90\xfb\x7f\x84\xc4\x55\xf7\x3b\x48\xe0\xde\xff\x4f\xfc\x07\x1f\xe0\xab\x23\xef\x7a\x6a\xf2\x1e\x7e\x4b\x01\x54\x47\x02\xbf\x1e\x07\xb4\x9e\x32\xc7\xb1\x4d\x32\x50\xb2\x0f\xd0\xd7\x03\x2e\xbc\x04\x06\x6c\x02\xce\xde\x05\xc6\xac\x02\x4e\xe5\x02\xd6\xd7\x81\xac\x57\xcc\x0f\x3a\x6e\x0f\x2c\xf7\x55\x9c\x02\x59\x47\x29\xbd\x12\xd8\xa6\x07\x64\x0c\x05\xf6\x6b\x01\xe9\xc6\xc0\x31\x3f\xe6\x8c\x5d\xac\x00\x52\x8c\x79\xbd\x48\xa9\x00\xde\x6d\xfd\x4e\x07\x23\xb7\xba\xff\xf2\x7b\xff\x19\xef\xc3\x5f\xe4\x85\x35\x56\xff\x63\x1c\x04\xef\xe1\xeb\x12\xb6\x7f\x69\x88\x5d\x60\x0d\xde\xc3\x63\xbe\x65\xc3\xbd\xba\x80\xf2\x2d\xa0\xec\x1e\xd0\x28\x03\xb8\xdc\x1a\x68\xbf\x17\x28\x34\x02\x7a\x99\x00\x67\xfc\x58\x37\x27\x7b\x3c\x30\x79\x2b\xf7\x0a\x9b\x53\x0e\xa4\x3d\x60\x7e\x50\x8a\x01\xf7\xdd\x3b\x3c\x1c\x08\x2b\x05\x0e\x75\x03\xf6\x0d\x01\x92\x5c\x80\xa3\xba\xc0\xc1\x09\xc0\xc5\x10\x20\xc1\x84\x35\x66\x12\x5e\x03\x1f\xde\x7c\xcb\xff\xb2\xff\x5b\x1f\x56\xf7\x5f\xf6\x5b\xe6\x3f\x78\x8b\xf9\xe0\xd9\x83\xad\xac\x03\xf1\x33\xff\xab\xf8\x2f\x35\x70\xef\xd7\xcd\xd9\x3e\x8d\x12\xfe\x5f\x65\x7b\x43\xec\x96\x2f\xcf\x06\xd4\x75\x81\x73\x2b\x81\x66\x25\x40\xee\x44\xc5\x59\x0b\x38\xf1\x02\x18\x10\x07\x64\x0e\x07\xc6\x5b\x02\x29\x9b\x81\x99\xce\xc0\xa1\x96\x9c\x27\x12\xdc\x00\x9f\x2f\xc0\xbe\x49\xc0\x16\x5b\x60\x6f\x37\x60\x8f\x3e\x6b\xad\x1d\xb1\x03\xe2\x14\x6b\xa4\x05\x10\xaf\x0e\x3c\x58\x01\xc4\x2e\x02\x3e\xf4\x00\x22\x5f\xf1\xb3\x6f\x09\x60\xbb\xde\xb9\xfa\xfb\xae\xc9\xfb\x58\x2e\xfc\x77\x2b\x65\xeb\x32\xf7\xbb\x71\xf8\x1e\xf7\xaf\xe1\xff\x5f\x01\xc2\x7f\x3d\x31\x0f\x06\xb2\x7d\xf8\x27\xdb\x5b\x42\x45\x52\xe6\x7f\x9c\xb7\x60\x9b\x1b\x00\x68\x3a\x00\x27\x4d\x81\x36\x2e\x1c\xf7\x86\x25\x40\xb2\x0e\x30\xe2\x24\xcf\x7d\x6b\x0b\x60\xdf\x76\xc0\xb1\x0b\x10\x3f\x9e\x75\xe7\x76\xef\x04\x42\x96\x01\xd1\x37\x80\xf8\x25\xc0\x2e\x77\xfe\x7f\x77\xb8\x01\x45\xfd\x81\x88\xad\xc0\x3d\x77\xe6\x7f\xbc\xeb\x04\x6c\x79\xc1\xcf\x1e\x68\x5c\x3d\xce\x65\xbf\x97\x35\xae\xee\xaf\xcc\xfb\x58\x28\xf2\xc5\x82\x36\x35\xc6\xa1\x26\xff\x67\xbf\xc8\x03\x3e\xff\xc3\xff\x15\x6c\x2f\x8a\x5b\x47\xbe\x33\x04\x4e\x8c\x03\x6a\x39\x02\xe9\xee\x40\xe3\x46\xc0\xc1\x8f\x40\x67\x67\x60\xff\x69\x3e\x8f\xc4\xf7\x07\x26\x3e\x03\x62\xba\x01\xf3\x34\x81\x9d\xce\xc0\xaa\x0a\x20\xa2\x13\xb0\x29\x1a\x08\x93\xa0\x1b\xbb\x13\xd8\xf2\x17\x26\x64\x74\x03\x36\x47\xc0\xba\x70\x1a\x10\xbc\x09\x3a\xb7\x0f\x03\x1b\x7c\x31\xec\xb5\x1f\xb0\xae\x01\x66\x28\x7c\x50\x9c\xc1\x14\xd6\x5d\xf8\xbd\x44\xec\x2b\x1c\xdb\x60\x9a\xc2\xce\x13\xfb\xc8\x39\x41\x6c\x15\x67\x1e\x85\x9d\x55\x52\x63\x1c\x04\xee\xfd\xef\x82\xea\xf3\xe0\x77\xd1\x07\x48\xd6\x3d\xb9\x23\x6e\x15\x4b\x0d\xab\xfb\x5f\x20\xaa\x4b\x4e\xd6\x63\xbe\x40\x5a\x2c\xf3\x25\x12\x2e\xd7\xfe\x5a\x27\x1f\x88\x3b\xad\xae\xaa\x1b\xa5\x58\xc7\xeb\x85\xf7\x09\x06\xb6\x5d\x6f\xa0\x3b\x6e\x11\xb0\xe5\x65\x43\xc9\x6e\x2a\x10\x1c\xa7\x3d\x6f\xd9\x47\x20\x28\xa6\xd1\x9a\xf5\x5d\x81\xb5\x0e\x8d\xc2\xa2\x8c\x00\x3f\x8b\x46\x52\xca\x70\xc0\x27\xb5\x51\x49\x5e\x28\xe0\xe5\xda\xc8\xf1\xfa\x47\xc0\x73\x53\xa3\xa9\x7f\xb4\x04\x56\x0d\xd6\x7e\x46\xef\xbb\xae\x16\xdd\xcf\x3b\xc6\x69\x12\x5e\x65\xbf\xb2\x3e\xf5\xb9\xb7\x5b\xa0\x4e\x3a\x9c\x33\x5a\xa8\xfd\xaa\xb0\x36\x6e\x2a\xcd\x15\x76\xea\x68\x65\xaa\xf7\x9c\xa2\x56\x8b\xea\xfb\x7e\xc6\xff\x79\xee\x52\xdd\xff\x5b\x61\xe0\x3a\xf0\x06\x4a\x74\x6b\x72\x3e\xb6\x0e\xdd\x0a\x9c\xbe\xda\x90\x6e\x03\x8e\x86\x6a\xd3\xed\x41\x72\x39\x57\x21\xee\x0d\x69\x4a\xe7\xf9\x48\xe7\xe6\x74\x6b\xb2\x35\xa2\x55\x4c\xe3\x3f\x80\x0d\xbf\xeb\x26\x74\x6b\x5e\xdb\x21\x60\x4d\xeb\xca\xa1\x1a\xca\xef\xbd\x23\xdb\xec\xb7\x9a\xa1\xea\xbd\x6a\x79\x9b\x33\x8b\x1a\xab\x5d\x5d\x56\xd4\x26\xcc\x37\xb4\xce\x1f\x2e\x25\x6d\xc6\x85\x67\xa8\x17\x2d\xf6\x6f\xfd\x2e\xa1\x9f\xc6\x78\xc7\x94\xd6\xfe\x59\xaf\x35\xec\x17\xb8\xb5\x1e\x73\xe5\xbe\x46\xb7\x79\x37\x5a\x0f\x79\x9c\xa7\x1e\x38\x77\x7c\xeb\xeb\xff\x9e\xa9\x63\x67\x1b\xda\xba\x54\x92\xd4\x96\xd9\xfc\xdd\xea\x8c\x24\xa9\x1c\x98\xbc\xa8\xe5\x07\x49\x52\x3e\x63\x39\xaa\xf9\x46\x49\x52\xba\x64\x61\xd1\x98\xee\xe3\xc6\xdf\x6b\x44\x3a\x9c\xe3\x3a\x69\x9f\x53\xd8\xd1\x01\x0d\x5a\x2a\xec\x4f\xfd\xff\x5d\xf6\x5f\x9d\xee\x09\xae\x14\x73\x9f\x94\xb3\xa3\x9b\xd1\x7d\x76\x8e\xad\x2e\x45\x42\x46\x50\x5b\xba\x25\x48\xd2\xed\x40\xf7\xf8\x71\x69\x5d\xe8\xfb\xdb\x7d\xbb\xd3\x7d\x7f\x70\xad\x9e\x84\x1b\xfa\xad\x36\x9c\x57\xaf\x25\xe0\xa1\x6b\x78\x45\x6f\xa3\xb2\x96\x6b\xb6\xe1\xa0\xfe\xa6\x75\xce\x3a\xad\x36\x0c\x9e\xb0\xa4\xae\xc6\xdc\x1b\x06\x65\xf6\x01\xf5\x4a\xed\x8a\x0d\x8c\x57\xe6\x68\x6e\x98\xd1\xbf\xe7\xc9\x4d\xdb\x1b\x7c\xb2\xde\xd3\xe3\x9f\xb8\xe8\x86\xf7\xa7\x58\xf6\x98\x71\xc4\x5d\x6b\x88\xe5\x5f\x3d\x7e\x39\x9f\xa0\x35\x79\xa2\x49\xf7\x4f\x0f\x96\x35\x3c\x6e\x31\xba\xfb\xdf\x7f\xaa\x35\xd0\x18\xdf\xb6\xbb\x93\x24\xd5\x7b\x3b\x5a\xb7\xeb\x6e\x49\xd2\x48\x19\xfe\xbc\x73\xb2\x24\xa9\x9b\x99\xde\xee\xf8\x52\x92\xd4\xbe\x0e\xde\xd3\x41\x5d\x92\xd4\x34\x8c\x87\xb5\x9b\x20\x49\xaa\x8d\x8c\xfc\xf5\x7a\x4b\x92\xf2\x6f\x46\x6e\xad\x07\x48\x92\x72\x0b\x99\xff\x21\xf3\x7f\xaa\xde\xff\x1f\x0d\x28\x23\x5c\xb2\x69\xd1\x8f\xe2\xfe\xbc\x1e\xe9\xaa\x9e\x98\xd5\x75\x97\xc2\xa6\x18\xf7\xa2\x7b\xeb\x84\xba\x7d\x89\x0f\x10\xa3\x3b\x90\x3e\x87\x9b\x33\x5f\x60\xe3\x1a\x13\xca\x2c\x3e\x6b\x58\x47\xc2\x55\x77\xf8\x6c\xe4\x02\x8e\xd6\x23\x9d\x9a\x9d\xaf\xd5\xd8\xee\xf6\xf0\xed\x3d\xfe\x55\x7b\x6c\x6d\x3a\xcc\x6a\x44\xa7\xfa\x33\x27\x3e\x18\x9a\x39\xdd\xb9\xc1\x7d\x33\x9b\x21\xc7\x5d\x1b\x6b\x7d\x1d\x65\x66\xfa\x6e\xdd\xde\x46\xb7\x87\x35\x35\x55\xd9\x35\xb6\x71\xfd\xc1\x4e\x83\xbb\xa4\x38\x34\x8e\x32\xee\x68\x62\x57\x60\xd0\xb8\xdf\xc0\x43\x26\x41\xb7\x47\xe9\xb8\x0c\xf8\x6c\x12\xf0\xfa\xb5\x76\x96\xd1\x6f\x26\x66\x92\xd4\xb0\x5e\xbf\x5d\x03\xe6\x4b\x92\xa6\x4a\xef\x4f\x7d\x33\x25\xa9\x9e\xb6\x61\x7a\xaf\x28\x49\xd2\x08\xe9\x19\xd0\xf3\xb4\x24\xa9\x9b\xf4\xac\xdf\xe3\xb5\x24\xd5\x79\xa7\xbf\x45\xbf\x91\x24\xa9\x6d\xeb\xb6\xb8\x5b\x0f\x49\x52\x6b\x23\xf3\x7f\x7e\x3d\xa8\x41\xba\x16\x37\xef\x34\xa6\xdb\xbe\x62\x73\x3d\xba\x2d\xcc\xaf\xd0\xa7\xfb\xe8\xe3\x8d\xfa\xd2\xbd\x5b\x4a\x85\x09\xeb\xdf\x2f\x1e\x42\xa8\x53\xb4\xc5\x48\xaa\xdb\x0a\x1f\x32\x86\x76\x5a\x1b\x04\x5f\xc0\xfb\xbd\x05\xa1\xb5\x2e\x39\x96\x14\x1f\xf6\x06\x53\x68\x5e\xd9\xa8\x59\xcd\x6b\x10\x09\x58\xb4\x9f\xba\xaa\xe3\x1c\x95\x15\xa3\x3a\x4d\x51\x33\x8e\xaf\x3b\xc0\x54\x79\xf2\x9a\xc9\x4b\x34\x55\x07\x1c\x99\xac\xec\x64\xd0\xa0\x5f\xdf\xde\x93\x16\xae\x39\xdd\xb0\x96\xe1\x36\xcb\xbf\x23\xfa\x37\x9c\xd3\x23\xd1\x72\xfc\xc1\xf7\x0d\x47\xe8\x3b\x4f\xcc\x3b\xf3\xb8\x41\x71\xd7\x2f\x13\x47\x5d\xbf\xa5\xf9\xb1\xcb\xe7\x89\x2b\x5f\xb8\xd5\xf7\xee\x92\x62\x11\x2c\x49\x75\xad\x3b\x79\x8d\x7b\x28\x49\xea\x9b\x3a\xba\x8f\x2c\x94\xa4\x3a\x8b\xda\x2d\x1c\x7a\x53\x92\x54\xa3\xda\x2d\x32\xdd\x2a\x49\xaa\xf3\xda\x5e\x33\x1e\x27\x49\x2a\xb7\xf4\x4c\x06\xbc\x91\x24\xe5\xaf\xad\xe7\xf4\x3d\x2f\x49\xb5\xdf\xff\x1a\x55\x8f\xde\xdf\x2d\xd3\x96\x84\x4b\x5f\x9e\xd5\x89\xde\xb7\xcc\xff\x39\x1e\x66\x42\x7e\x24\x9b\x8f\xa4\x7b\xb7\x7d\xe3\xc6\x11\x1f\x2c\xda\xd2\x82\x78\x3f\x61\x9d\x58\x55\x38\xe8\x88\x15\xfd\x8e\xb7\xcf\x74\xc2\x33\x96\x96\xf0\xad\xfb\x3c\x6d\x3b\x1a\x2f\xab\x0a\x7b\x9a\x3f\x23\xbd\xe7\x6d\x54\xae\x0d\x98\xdc\x9c\xe7\xdd\xca\x5b\x69\x67\xef\xc7\x73\x07\xf5\x79\x53\xa7\x59\x8f\x45\x73\x47\x4c\xf0\x51\x37\xec\xe2\x31\x77\xd0\xbc\x3a\xea\x67\x3a\xcc\x9a\xdb\xca\x4b\x4f\xfd\xf7\xb6\xf3\x1c\x6c\xc3\xb6\xaa\x5f\x6f\xfd\xca\x3e\x2d\x21\x5b\x7d\x54\xab\x4f\xf6\xce\x39\xaf\xea\x2c\x68\x79\x67\xce\xf3\xb2\xba\x6a\xde\x2d\x75\xe6\xcc\xff\x7d\x8c\x6a\xef\x16\xb9\xb3\xff\x95\x24\xe5\x88\x16\x1d\x67\xcc\x94\xa4\xda\x67\x9a\x97\x5a\x69\x4a\x52\xed\x6e\xcd\x5b\x4f\xd2\x93\x24\xa5\x01\x3a\x67\x2c\x08\xcf\x6b\x54\xd7\x8c\x74\xa6\xb4\x5c\xc6\xda\xd2\x99\x71\xd7\x08\xba\xbf\xbe\xe5\xd5\x96\x6e\x35\x8b\xfd\x7a\x12\xbe\x70\xa6\xeb\x40\x42\x4f\x8f\x5e\xe0\x3e\x29\x29\x1d\x26\xd0\x38\xec\xab\x37\x91\xee\x6d\xa3\xce\x5a\x11\x3a\x10\xd6\x73\x06\xcd\xa0\xf5\xce\x76\x14\x37\xbe\x7e\x0e\x54\xaf\xed\xf6\x71\x2e\xad\x40\x0b\xfc\x17\x10\x03\x79\xfa\x3e\x27\xba\xcf\x34\xbb\xbc\x84\x6e\x9f\xfb\x27\xbb\x11\x3e\xde\xad\xdc\x7d\x6f\xa3\x78\xa0\xdd\xcc\x65\x49\xfa\xb7\x94\xa1\x9b\xec\xae\x3c\xea\xac\x72\xfd\xe6\xf7\xdc\xcd\xec\x1e\xd5\x36\x6c\x96\xb9\x5c\x77\x95\x04\x9b\x26\x76\xee\xa1\x5b\xd6\x00\x8d\xde\x2c\xfb\xb2\xef\x32\xa0\x95\xe9\xf6\xf0\xe4\x01\xa0\x41\xae\x5b\xfb\x2b\x4f\x01\x4d\x2c\x35\x7a\xda\x00\xa8\xd7\xd6\xd5\xe3\xcb\x2b\x40\x3d\xc8\x89\xee\xe9\xd5\x4a\xe7\x12\x4e\xa3\x32\xcf\x8e\xf0\x09\x95\xa7\x33\xa8\x3f\x88\x72\x2d\xeb\xbf\x15\xb6\xf6\x81\x29\xb9\x6c\x27\x51\x9d\xf3\x25\xbd\x3e\x14\xaf\x79\x8e\x4c\x88\x3d\x72\x86\xfb\x41\xa5\xac\xb3\xa0\x7c\x2f\xf3\x7f\xa2\x62\xa6\x13\x8a\xba\x35\x77\xf6\x1e\x8e\xff\xb9\x54\x7d\xed\x3b\xc2\x89\xf2\xe6\x8a\x54\x96\xab\x77\x32\x77\xa1\xf1\xb4\x7d\xc5\xe8\x8b\x65\xc9\x72\xca\x97\x43\xff\xf6\x24\x9c\xa7\x7b\x4f\x1f\xe2\x61\x35\xf5\xf3\xcb\x52\x7d\x04\x68\xeb\xfb\x0f\x6d\x37\x1f\xa8\xbf\xd5\x7f\xc1\xe0\xdb\x80\xba\x91\xbf\xa7\x4d\x10\xa0\xf2\xd8\xbf\xd9\x52\x0d\x40\x69\xbc\x5f\xde\x7a\xc2\x37\xfc\xb0\x9b\x95\x67\xc0\x88\x99\xef\xb4\x8b\x84\x83\x79\x57\xfc\x4a\x53\xd1\xbb\xcb\x27\xba\xdf\x5d\x29\x70\xed\xa5\x02\xcf\x5a\xf4\x86\xed\xfc\x40\xb6\x0e\xa2\xbe\x7b\x8e\xc0\x35\x6c\xe9\x1e\x3b\x3f\x7f\x14\xa1\x41\xc7\xd6\xf3\xbc\x4e\x79\x32\x95\x70\xee\x7d\x67\x39\xae\x63\x4a\xb8\x1f\x94\xdc\x07\x6a\xe3\x1a\xde\x50\xf8\x57\x32\xef\x67\xe5\xb1\xa5\xd4\x17\x69\xc9\x42\x77\xca\x13\x0e\xf1\x8c\x46\xda\xb8\x79\x13\x9f\x62\x6c\x09\xf7\xd5\x30\x9a\xc4\x7a\x0a\xed\xba\xad\xa7\x3c\x52\x67\xc8\xe6\x2f\x9c\x91\x43\x5c\x9a\x51\x26\x0d\xc9\xe9\x1f\xa8\xb0\x9b\xa5\xc9\x94\x59\x36\xfb\x32\xc3\x68\xd3\xe3\x75\x54\xf7\xbc\xc9\x26\x8a\x46\x3c\x78\x47\x1a\x21\x2c\x1b\x3f\x16\x11\xff\x61\xc3\xf2\x07\xa2\x33\xcb\x07\xba\xcf\x5e\xdb\x44\xaa\xc6\x6f\x58\x29\x78\x21\x6e\x02\xcf\x74\x11\x7a\x20\x8b\x3e\xb3\x5d\x48\x38\xc6\x09\x1d\x0b\x42\x4d\x53\x2e\xd8\xd0\x89\xea\x80\xf1\xec\x74\xce\xff\xf3\xe9\xfd\x6d\x77\x74\xa2\xe7\xff\x4e\x07\x87\x9e\x7e\x75\x07\x0f\x42\x8d\x5c\x0b\x59\x17\x66\xbe\x31\xeb\xa4\xcc\xc8\x5d\x43\xe3\x61\x11\x16\x48\x27\xd2\x61\x73\xb9\xaf\x88\xc1\xf4\xcd\x34\x5e\x2d\x62\xb9\xbb\x49\x2d\xd5\x08\xc1\xd4\x8b\x8c\x66\xfe\x43\x64\x0f\xee\x7f\x11\x39\x72\x22\xcd\xcc\x1d\x61\xdc\x91\x6a\x87\x9d\x1f\x51\xb7\x22\x52\xb8\xde\x7f\xfb\x97\xc3\x54\x39\xbe\xbd\x67\x1e\x77\xaa\x9a\x7c\x93\x70\xbe\xb0\xab\x6f\x88\xb1\xb6\x55\xe0\xbc\xeb\x05\x9e\xed\x2f\x70\x2d\x1f\x51\xff\xbf\x3a\x96\xed\xaa\x81\x6c\x97\xd1\x78\xa4\x39\xcf\x24\x9c\x2a\xd1\x99\xfd\xde\xbd\x6a\x11\xe1\x6e\x91\xf1\x6e\x54\x2d\xbb\xa9\x3b\xeb\xff\x04\x4e\x58\x4d\x6a\x04\x5e\xce\xec\xef\xb2\xa5\xfe\x44\xa4\x59\x64\x1e\x68\xcc\x51\xb6\x9e\xba\xba\x58\x19\x6c\xa6\x75\x74\xcc\x52\x56\x1d\x1f\x14\xcb\xbc\x90\xae\xbb\xd9\x6f\x9d\x2b\xfc\x56\xb9\xea\x06\xdf\xf1\x61\xe2\x7d\x99\xa9\x16\xf7\xce\x5c\x74\x64\x9b\xf7\x27\x5b\x66\x1c\xc5\x25\x87\x13\xce\x15\x2b\x25\x11\x32\xb6\x3b\xe2\x14\x45\x6a\x4c\x74\x29\xe1\x1b\x31\x13\x9f\x93\x8d\x76\xfe\x4a\x38\xc6\x76\x81\x67\xca\xba\x28\x1b\x44\xff\x8b\x75\x42\xdf\x5f\xe6\x0d\xf1\xf8\xc8\x7d\xc0\xe2\xac\x5c\xa9\x5a\x56\xd6\x01\x0a\x75\xf6\x24\x1e\xd8\x7a\x53\x1f\xc2\xc3\xd7\xf8\x04\xd0\x49\x7b\x55\x2c\xf3\xbc\x96\x18\x04\xd3\x78\xc8\x7a\x38\x33\x72\x18\x5d\x99\x78\x6e\x1b\xa9\xbb\x8c\xd4\xde\x41\x71\xd0\xd7\x9e\x71\xf3\xf6\x5d\x63\x99\x17\x35\x90\xf5\x42\x80\xa4\xe5\x6c\x13\x2f\xff\x42\x08\xd2\xc1\x5a\xbd\xe9\x8c\x96\x34\xd1\x8c\x70\x97\x83\xdd\x1c\x08\x9f\x49\x8a\xf6\x24\x84\x30\x49\x2f\x94\x9e\x20\x69\xc5\x81\xbd\xfc\xff\x67\x93\x42\xc5\x81\x4d\x97\x29\x53\x1d\x88\x7e\x4a\x3b\x9e\x03\x43\xbf\x4c\xe5\xf1\x62\x3f\x77\x6a\xb2\xdd\x26\x74\x53\xb6\x8a\xbc\xb1\x79\xba\x18\x9f\x87\x0a\xbb\xc7\x80\x79\x6e\x51\x4d\x78\x5e\x87\xcf\xf2\xa5\x5f\xdf\xe8\xcc\xfd\x62\x02\x22\xd6\xd3\xba\xb7\xea\x2e\xfb\xbd\xb4\x24\x84\x9e\xca\xb1\x24\x9c\xd6\x8d\xd9\xa2\x6f\x90\x75\xbb\x5d\x84\xd2\x8f\x1b\x1f\x45\xa8\x9c\x69\xe3\x58\x8a\x62\x83\x39\x8c\xd2\xb7\x99\xcb\x3a\x0a\x75\x8d\x0e\x3f\x65\xff\xd3\x17\xb1\xcd\x78\xdf\x94\x94\x78\x32\x82\x0d\x69\xe4\xd2\x4b\xc6\xd0\x4c\xcb\xb8\x3d\x87\x76\x36\x19\x6b\x98\x91\x96\x1e\xb5\x89\x3a\x3b\xa5\xdf\x8d\xa7\x19\x96\xbe\xf0\x18\x31\x4f\xd2\x3d\x2f\x11\x2f\x28\x5d\xef\x11\x21\xc9\x29\x15\x9f\x08\xf7\x3c\x28\xea\xd8\xf7\x89\x7c\x51\xc5\x8b\x11\x75\xde\x3b\xc4\xbc\x60\xde\x50\xb4\x33\xcf\xef\x70\x89\x0f\x4c\x9b\xe7\x04\xd2\xd3\x04\x36\x63\x1e\x90\x57\x61\x28\xf9\xb3\xc2\x61\x3b\xed\xa7\x9c\x17\xec\xa0\xf5\x50\xe6\x01\xcd\x98\x1b\x43\xec\x0b\xcb\x87\x71\x74\x03\x31\x5a\x67\x1f\xed\x1f\x06\x6e\x67\xbf\xf5\x6d\x98\x0f\xd3\x42\x2d\x95\xde\xa6\x5a\xec\x91\x34\xf6\x3f\x4b\x54\x36\x65\xff\xc5\xfd\x71\xb2\xf6\x1a\x10\x23\x39\x7b\xcf\xe8\x83\x0a\x9b\x33\xd9\xce\x90\x2d\xaf\x38\xd9\x0e\x1b\x89\xb1\x92\x3d\x2a\x96\x4e\x38\xd9\x2d\x32\x29\x52\xb3\xdc\x2f\xb0\x35\x66\x9e\xd4\x89\x92\x0f\xf4\xa4\x47\x04\x4f\x2a\x59\xd4\xb5\xcb\xfd\x70\xf6\x33\x6f\x10\xf1\x59\x6c\x63\xa2\x15\x76\x7b\xc3\x80\x47\x3c\x8b\x36\xd0\xaa\x14\xe8\x1e\x42\xcf\xeb\xe7\xc8\xf3\xda\xd3\x7d\x27\xe1\x9c\x4b\xbf\x44\x53\x94\xca\x7a\x38\xb3\xc1\xfc\x08\xeb\x30\xd6\xcd\x30\xaf\x60\xbf\x87\x55\x24\x53\x9c\xf4\x7d\x92\x4a\x79\xa0\x8b\x2e\xfb\xfd\x4b\x06\xe3\xc6\xaa\x6d\x4e\x09\x5e\x94\xcc\x87\xc9\xef\xd3\x84\x22\xaa\xc0\xa8\x07\xf1\xe3\x0a\xb6\x8d\xa4\x8c\x5d\xd0\x6e\x3a\xf1\x1b\xf2\x1f\x2c\xe5\xcf\x61\x41\x1d\xd8\x46\xbd\x67\xcb\x0a\x15\xf9\x15\xac\x48\x50\x10\x7f\x8f\x78\x44\x79\xae\xaf\xe9\x2e\xe0\xb4\x58\x1f\x4e\x34\x64\x9b\xe1\x20\x55\xe3\xc5\x24\x89\x5e\x93\xcc\x8b\x09\x55\x0a\x26\x56\xd1\xc6\x2d\x61\xf4\x7e\xd6\x15\xf0\x7b\xfe\xc6\x03\x8a\xa7\x84\xb1\xd8\x67\x0f\xbd\x95\xb9\xdb\x0e\x10\x7b\x69\x96\x2e\xf3\x23\x26\xc5\x24\x13\xbf\x65\x6c\x49\x2a\xe1\xff\xa6\xa3\x79\x75\xef\xdd\x9d\xbb\xf9\x74\x78\x93\x4d\xac\x84\xc6\xb7\xce\x24\x28\xac\x52\x5b\xb9\x5f\xd4\x05\xb9\x72\xe7\x74\x23\x8a\x98\x4b\xd0\xa7\x8a\x85\x4b\xb5\x87\x51\x44\x16\x4b\x33\xf4\xd9\xf2\x0a\x7d\xa9\x76\x00\x31\x56\x8a\xfb\xef\x24\x45\x81\xe2\x49\xac\x44\x54\x6c\x98\x4b\x8a\x2c\x17\xbf\xdc\xa4\x95\xf8\x42\xc9\x4b\x62\x76\x15\x25\x4b\xb4\x12\xe6\x09\xde\x4b\x8e\x58\x2f\x8f\x8b\x3c\x59\xc5\x8b\x21\x3e\x59\x70\xe4\xb6\xfb\xd5\xfd\x67\x1e\xd0\x8a\xca\xbd\xf4\xaf\xba\x3c\x66\x3d\xa0\x85\x03\x93\x88\xef\x60\x97\x94\x4c\xeb\xbf\x4d\x17\xd6\x8d\xb0\x2c\xe1\xf7\x3d\xf2\xfe\xb1\xc9\x0a\x3b\xa8\x34\x9b\xd8\x3b\x3d\x2f\x9d\xa6\x3c\xa3\x97\x91\x4f\xe3\xa7\xbd\xfb\x1c\xe5\xcb\x5a\x8e\xc5\x1b\xd8\xff\x32\x91\x27\xaf\xa5\x6a\x51\x9f\xa0\xb2\x7e\x5d\xe9\x8c\x5b\x5a\xc2\x3b\xba\x6b\xe6\xac\x23\x75\xed\xf2\x22\x12\x48\x29\xfb\xb8\x86\xf2\xc1\xb5\x04\xce\x48\xd7\x13\x0f\x12\x8f\xaa\x6c\x3c\x2b\xb3\x94\x45\x5c\xa5\xcc\x5e\xba\xe2\x29\xbd\xa1\x92\x3f\xfe\x21\x7e\x9d\xdc\x3f\x49\xee\x87\x93\x2b\x78\x62\x72\xbf\xad\x13\xb9\x7c\x9f\xf7\xff\xcf\x03\x72\xd6\x4b\xa5\x7d\xf7\x3c\xb7\x0c\xda\xa5\xcc\x72\xe1\x59\x69\x55\xc1\xac\xd6\xf1\xe9\x3c\xcf\x47\x35\x67\x3e\x8c\xd1\xf1\x7c\xea\x87\xd4\x23\xae\x88\xd8\xad\x6d\x2e\x5f\xa0\xfb\x89\x86\x4f\x58\xf6\xa2\x96\x63\xa9\xe0\x7f\xdc\xc9\x67\x7b\xef\xb9\x16\xad\xd0\xf7\x16\x77\xa6\x91\x7d\x60\x39\x98\x52\xd5\xfd\x5f\x98\xe1\xfa\x40\x77\x01\x9d\x7c\xee\xeb\x78\x93\x7f\x0f\x26\x32\x6f\xee\xfe\x69\x56\xf0\x79\x30\x32\x87\x66\xd8\xdd\xed\x97\xe9\xec\x7c\x77\xd4\x23\xfa\x17\x6f\x56\x54\xfe\x4b\xe3\x26\xfa\xc0\x5c\x16\xf3\xe1\xe2\x57\x31\x2e\x42\x37\x26\xaf\xa9\xc2\x56\xf1\x80\x74\x6a\xf0\x80\x76\xa5\xad\xe6\x38\x38\x42\xfb\x48\x7b\xe1\xf7\x8c\xc5\xdc\x95\x66\x72\x42\x2e\xf1\x84\xcd\x76\xe6\xd3\xbe\x69\x68\x50\x21\xfd\x77\x99\x0f\xa4\x6f\xcd\x7d\x74\x74\xa3\x4b\xe9\x69\xb5\x1e\xde\xd4\x66\xbf\x6f\x8b\x0a\xae\x72\x71\x13\xf8\xd8\x8e\xf9\x30\x4f\xb6\xb5\xa7\x93\xee\x93\xbd\xc6\x94\xb9\x9f\x2a\x4d\xa2\x93\xdc\x13\xd7\x79\xf4\x5e\x9f\x04\x7a\x12\x8f\xec\xc9\xfb\x2d\xf4\xcb\x4f\x03\xf7\x51\x04\x3e\xf5\x3b\x41\x79\xf6\xc9\x96\x4b\x5d\xe8\xf7\x86\x96\x33\xcf\xa1\xd1\x47\xfa\xde\x83\x00\xe6\x3f\x54\xe9\xa1\x08\xde\x64\x55\x5f\x29\x1a\x17\x9f\x5d\x87\x29\x0f\xae\xb4\x4e\x25\x76\xee\x32\x23\x8e\xf3\xc5\x5b\x8f\x93\xbf\x0b\x0e\x30\x2f\xc4\xee\x36\xf7\x05\x9b\x56\x9b\xe7\x77\x95\x2e\x8e\xe8\x93\x65\x5a\x7a\x25\x52\x61\xfb\x9c\x61\x36\x86\x3e\x6e\x10\x6f\x46\x77\xee\x2d\xaa\x5f\x6a\x50\x79\x87\xf8\xb6\xb5\x34\xe4\x1b\x8e\xdf\xeb\xb2\x7d\x15\xa3\x4e\xfb\xa5\xd7\x75\xf5\xe8\x44\xf2\xba\xf5\x00\x9a\xd7\xaf\xca\xcd\x29\x6f\xbe\x09\xe3\x93\xea\xab\x11\x2b\x28\xd2\x5e\x6b\xb1\xb2\xdb\xab\x1b\xcc\x4c\x7e\x75\x2a\xd3\x8f\x7f\xa7\x88\x18\x57\xaf\x8d\x1f\x90\x32\xdc\xab\x5a\xef\x88\xf9\xf6\xbb\x3b\xfb\x5b\x21\xfa\x0c\xde\x13\x7d\xd7\xaa\x8f\x8b\xf4\x03\xfd\x0b\x99\xe7\x50\xd3\xd2\xf7\x7e\x84\xf7\xdb\x02\x2f\x35\x81\x61\xb9\xc0\xef\x2b\x81\xb1\x4d\x81\xc7\x63\x80\x49\x23\x01\xc5\xbb\x51\x9c\x54\x6e\x9c\x02\xec\x37\x01\xa5\x8b\x81\x45\x49\x40\x49\x2b\x60\x45\x11\x70\xd9\x17\xf0\xf3\x02\x8a\x87\x00\x8a\x9d\xe8\xc5\x0a\x40\x91\xa9\xce\x9f\x06\xf6\xcd\x06\xce\xd7\x06\x31\x12\x2f\x94\x00\xb9\x69\x9c\x5d\x4b\xe2\xf8\xfb\xa4\x77\x6f\x0e\xbc\x7b\xf5\x1d\xee\x2d\xf0\xab\xaa\xfe\x0f\xa2\x57\x4d\x4d\xfe\x43\x4d\xfc\x5f\xfa\xae\xff\xc9\xff\xe2\x3f\x74\xd8\x04\x7c\xd9\x04\x74\x79\x0a\xfc\x95\x0d\xf4\xf2\x02\xde\x8c\x05\xfa\xd6\x07\xfe\xf0\xe5\x7b\xe8\x27\x75\x81\x91\xc1\x40\xf9\x03\xee\x7f\x71\x6f\x0d\x60\x7d\x06\xb8\x9e\x06\xcc\xf1\x05\x4a\xe7\x03\x8b\x0e\x01\x97\xe6\x00\xcb\x27\x7f\xc3\xbb\xcf\x0f\x06\x82\xfd\x80\x22\x43\x60\x47\x08\x70\x6e\x09\xeb\x40\x14\x96\x00\xe9\x2e\x80\x22\xcb\x9e\x31\x07\x8a\x9c\xb8\x27\x82\x62\x3c\x1e\x55\x00\xe7\x2f\x03\x7f\x46\x01\x05\xcf\xf8\x19\x4f\x89\xfa\xed\xa3\xc2\xdf\x9f\xe2\xff\x32\xff\x41\xf5\xdb\x38\xd4\xf4\xb7\xa5\xe0\xd4\xc8\x7c\x87\xef\xf5\x2f\xbe\x94\x01\x6d\x0f\x02\xef\x26\x02\xdd\x6e\x03\xaf\x7c\x00\x43\x4d\xe0\x77\x5b\xa0\xff\x2e\xa0\x42\x0f\x18\x16\x0c\x3c\x78\xca\x75\xfe\x37\x6f\x02\x53\x6a\x03\xa5\x9e\x80\x5d\x2d\xe0\xf2\x1c\x60\xa1\x33\x70\x51\x9f\xeb\xfd\xe5\x71\x28\xc8\x06\xd6\x5f\xe6\xbe\x26\xdb\x1d\x81\xfc\xde\xc0\x9e\x8d\xc0\xd9\x86\x40\x7a\x3e\x6b\x61\x28\x32\xf1\xd9\x81\xc0\xd5\x78\xa0\x50\x93\xc7\xe1\xdc\x23\xe0\x53\xf1\x0f\xf4\x0f\xfa\xfd\xd8\xff\x38\xdb\xea\xfe\x57\xe3\x3f\x08\xbd\x0f\x99\xf7\xf1\x43\xde\x83\x1f\xd0\xdc\x07\xf8\x7b\x2f\xd0\xea\xee\x77\x78\xbf\x3b\xa0\xd8\xff\xfc\xa6\x0f\x28\xce\x49\x0f\x47\x00\xc6\xe7\x80\xdb\x37\x81\x51\x21\xc0\x75\x1b\x60\xa2\x0e\xf7\x75\x98\xfe\x07\xeb\x39\xcc\x1b\x08\x9c\xeb\xa4\x38\xab\x02\x67\x37\x32\x3f\x28\xbf\x03\x63\x51\xb9\x4d\x80\xed\x4a\x40\x9e\x1e\xb0\xd7\x9a\x75\x3e\x32\xf6\x03\xf9\x7a\x40\xfe\x1b\x20\xb7\x0c\x28\x8d\xe5\x39\x52\xe1\xca\x7c\x00\xc5\x1c\xcd\x11\x78\x8e\xac\x03\x22\xe3\xff\x72\xfc\xcb\xfe\x57\xd5\xc1\xcb\x3a\x00\x3f\xe2\x3f\xfc\x8c\x07\x61\x02\x7c\x29\x01\x74\xd2\xb9\x47\x8f\x62\xff\xf7\x26\x99\xeb\xb7\x7f\xbf\x0a\x74\x4c\xe5\x77\xd3\xc3\x00\xb8\xf3\x14\xe8\x17\x0c\xdc\x70\x05\x86\x2e\x05\xae\xa4\x70\x5c\x28\xe6\xbd\xd5\x43\xe6\x75\x28\xe6\x47\x7e\x8a\xc0\xfd\xeb\x00\x1e\x53\x40\xea\x6c\xeb\x06\x02\xd9\x27\x58\xab\x3f\xa7\x88\xe3\xe1\xd4\x44\x20\x3d\x1e\xc8\xd6\x04\x72\x6b\x03\xa7\xdc\x80\xeb\x3e\xfc\xfd\x27\xcd\x81\x53\x1d\x81\xbf\x56\x7d\xc7\x83\x91\xf1\xff\xe5\xd5\xfd\xff\x29\xff\xe1\x9f\xef\xc6\xa1\x86\xdf\xea\x5f\xd8\xca\xba\x17\x0a\xfb\xa5\x15\xa0\xd1\x08\xf8\xa8\x0d\x68\x15\x30\x27\x47\x71\xf0\x78\x32\x13\x68\x73\x14\x28\xf7\x03\xba\x26\x03\x37\xcb\x80\x5e\xbb\x81\xd2\x97\xdc\xef\xe1\xd2\x15\x60\xac\x2e\x50\x18\x0d\x4c\xee\xce\xba\x0e\x76\x87\x80\xdc\x43\xc0\xa2\x61\x40\x76\x07\x40\x71\x8e\xca\x72\x07\xd6\xe6\x01\x8a\x5d\x68\xd8\x1a\xe0\x98\x3d\x10\x9b\x02\x1c\xef\x04\x28\x56\x32\xc5\xdf\x15\x31\x70\x32\x1e\xb8\xbe\x05\x38\x16\x00\x3c\x7e\x09\x64\xf9\x02\x5f\x66\x03\xa9\xef\xf8\x59\xe5\x3e\x20\xb2\xff\x51\x8f\xab\xbf\xf7\xad\x02\x0f\xfd\x11\xff\xa1\xca\x6f\xc1\xf7\x90\x79\x10\x4a\xd7\x80\xaf\xef\x80\x5a\x0d\x38\xf6\x94\x1e\x01\x6f\x3f\x00\xaa\xae\xc0\xf3\x4a\xa0\xa1\xc8\x55\x4d\xae\x01\xf7\x1c\x80\xb6\x1b\x80\x9b\xad\x00\xfd\x1d\xdc\xcf\xa4\x9f\xd0\xf3\x18\x66\xc0\xfa\x16\xe6\x15\x40\x8e\x33\x30\xdd\x18\x38\xb1\x9a\x71\xff\x63\x77\x00\x77\x1b\xe0\x48\x77\xc0\xaf\x07\x90\x11\x07\x6c\x39\x0d\x64\xd6\xe2\x3e\x52\x19\x31\x3c\x0e\xe9\x62\xbd\xc8\x34\x67\xae\x60\xc6\x6a\xe0\xd1\x2b\xfe\xfc\x79\xf1\x37\x1e\x90\x9c\xff\xaa\xfc\x77\xa8\x8e\x03\xcb\x7e\x6f\x08\x16\x78\xf8\xc0\x6f\xe3\xf0\x43\xfe\x87\x62\x4d\x5e\x0b\x7c\xc9\xe6\x55\xfe\x3f\x7a\x0f\x0f\x01\xa5\xee\xc0\x83\x78\x40\xd3\x96\xf9\x2f\xcd\x03\x80\xd2\x23\x5c\xdf\x5f\xfc\x19\xe8\x19\x04\x14\xb6\x00\x8c\xeb\x01\x67\x0e\x02\x66\x4a\x40\xd6\x3b\xc0\xc6\x54\xb1\xcb\x07\xe6\x35\x03\xd2\xa3\x59\x3f\x28\x65\x31\xe0\xdb\x9d\xb9\x82\x9b\x1d\xb9\x67\x52\x54\x0e\x90\x5c\x0e\xa4\x54\x02\x07\x23\x80\xd3\x11\x40\xb2\x3a\x50\x26\xf4\x2f\x9e\x2d\x03\x0e\xf7\xe2\x39\x2b\xfb\x1f\x2d\xe2\x21\x42\x9f\x6d\x88\x98\x27\xeb\xeb\x0b\xbf\x65\xfe\x43\x68\x75\x5c\xf8\x3f\xfe\xcb\xfc\x97\x20\xb6\x7f\xb1\xdb\x78\x2b\x54\x12\xff\xb8\x29\x76\x81\x82\xf7\x70\xd7\x18\x50\x36\x05\xae\x6b\x02\x8a\x7d\x61\xb1\xe8\x3b\x54\x34\x16\xe8\xe2\x0f\xe4\x65\x01\xfd\x36\x00\x27\x97\x02\xc3\x5f\x03\x47\x7b\x02\x93\x66\x30\x9f\xc3\x76\x3c\x70\x70\x2c\xb0\xd8\x13\x38\xf0\x19\xf0\xfc\x0c\x24\x8c\x02\x75\xfe\xde\xef\xc5\x73\x7a\x7f\x26\x70\xa8\x12\xd8\xff\x02\x38\x7d\x98\x7b\xc6\x94\xbd\x62\x8e\xc8\x6f\x6d\x98\x27\xf0\x35\xf3\x3b\x1d\x8c\x59\xd5\xdf\xbb\x8c\x83\xcb\x3c\x00\x9f\xe6\x6c\x6b\xf2\x01\xfe\x33\x0e\x35\x70\xff\x77\x72\xbf\x0f\x71\x1a\x78\x1a\xcb\xf6\xbe\x37\xdb\x5b\x82\x27\x72\xa5\x92\xe7\x4d\xd1\x4e\x40\xab\x17\x70\x66\x38\xa0\x1b\x01\x64\x5b\xb2\x0e\xc6\x11\x4d\xc0\x44\xf0\x3d\xc6\xa7\x03\x07\x57\xf2\xfa\x71\xe0\x2d\xf7\x45\x51\xec\x15\x3c\x75\x80\x3d\x8b\x80\x8d\x41\xac\x11\xb3\xcb\x98\xad\x22\x46\xe2\x1c\x78\xdd\xdc\x1d\x01\x28\x4e\x28\x8a\xd3\xe0\xb3\xee\x40\xf4\x0b\xe0\x6b\xc9\x7f\xfd\xaf\xe2\x7f\x88\xf7\x2d\xf3\x3e\x56\x8a\x79\xe0\x26\xfa\x0c\x2d\x2d\xa9\x31\x0e\xc2\xff\xaf\x02\xdf\xff\x8f\xee\xc7\x66\xb6\x8f\x34\x45\x1c\xd4\xd4\xbd\x10\x9f\xf3\xd4\x01\x95\x1c\x20\x7b\x2c\xd0\xf8\x1c\xaf\x63\x1d\xb4\x01\xc5\xa9\xa5\x0f\x55\x9b\x01\x23\x7b\x03\x7b\x53\x81\xa9\xbe\x40\x6c\x2a\xf3\xe7\xa2\x05\x9f\x72\x97\x04\x04\x8d\x03\x76\x0d\x05\x76\xe9\x00\x91\x3d\x80\x43\x8a\xbd\x55\x2a\x70\x3a\x06\xd8\xf1\x1b\x50\x76\x81\xf3\xde\x6f\x12\xb0\xad\x3b\xf0\x25\xfe\x9b\xff\x72\xbc\xcb\xef\x7b\x85\x41\x75\x7f\x97\x08\x9e\xad\xcc\x83\x70\x14\xfd\x07\xab\x78\x0f\x3f\xc3\xbd\x65\xdd\x0f\x71\xab\x78\x9f\xaf\x2f\x71\x3d\x99\xed\x65\x91\x2f\x0a\x05\x6f\x28\x5b\x54\xa1\x1d\x75\x64\x5e\x4c\xca\x76\xa0\xf9\x6b\x20\xb1\x08\xe8\xbe\x8a\xe7\xb1\xa9\x05\x10\x53\x02\x4c\x74\x06\x76\xfa\x03\x73\xde\x00\x3b\xd2\x01\x77\x4b\x60\x9b\x33\x10\xf8\x0a\x08\xb3\x04\x22\xcf\x31\xb7\x54\x71\x02\xdc\xbc\x02\xc8\x99\x09\x28\xce\x16\x57\x87\x03\xc1\xe6\xdc\x93\x6d\xc3\x0a\xe0\xdf\xdd\xdf\x78\x3f\x72\x9c\xcb\x7e\xd7\xe4\x7d\xcc\x13\xba\x6b\x32\xff\xc1\x4e\xec\x15\x7f\xc6\xff\x79\xb5\x50\xe4\x01\x2b\xb6\x0f\x04\x3b\xbe\xaa\xef\x4b\x9c\xf0\x5f\xdc\x36\xe6\x0a\xde\xc4\x71\xa1\xaa\x98\x2c\xf4\x32\xf6\x17\x00\x0d\xcd\x80\xb8\x46\x40\x3b\x45\xee\xdb\x05\xf4\xb3\x05\x22\x26\x03\xe3\x62\x81\xb0\x09\x7c\xfe\x08\x49\x01\x5c\xcb\x81\x8d\xb7\x80\x00\x67\x60\x7d\x3b\x20\xa2\x35\xb0\xce\x10\x48\x4c\x01\x02\xda\x01\xd9\xad\x99\x43\x75\xc5\x00\xf0\x8d\x01\x1e\xb7\x02\x7c\x3a\x00\xff\x38\x7d\x7b\xef\x32\xff\x43\xf6\xdb\x5e\xac\x17\x32\xdf\x63\xfa\x71\xb6\xd6\x62\xbd\x98\x2a\xf4\x95\x6a\xf2\x7f\xe4\xbe\x47\xcf\x04\xaf\xe5\xc1\x8a\x1a\xfe\x8b\xee\xc2\xe7\x45\xde\xcc\x7d\xc6\xf6\xc4\x34\xb6\x69\xe2\x14\x99\x20\x74\x85\x62\x0e\x02\x4a\xb1\x40\x64\x1b\xa0\xe9\x65\x20\x6c\x5a\x2d\x6b\x45\x5c\x6c\x7a\xa8\x3c\x6d\xd8\x49\x20\x68\x80\x6a\x9e\xf5\x7a\xc0\x7f\x7f\x9d\x0e\x8b\xee\x01\xbe\x1a\xea\xda\xbe\x15\xc0\xea\xd9\xea\x2e\xe1\x2d\x81\x55\x53\xd5\x3d\xf6\xc7\x00\xcb\x8f\xab\x8f\x3e\x61\x06\x2c\xb3\x53\x6f\x55\x3c\x1a\x58\xba\xa7\xce\xa3\x72\x4d\xc0\x25\xb4\xce\x95\x0f\x15\x80\x93\xb2\x1a\xf1\x41\x1c\xd4\x55\xa8\xae\x60\x66\x5f\x25\xc2\xb1\x6c\x66\xd6\xba\xaa\xb0\x93\x24\xd0\xfd\xf4\x44\xa1\xa3\x65\x2e\xf2\xc9\x38\xc1\x0b\x92\xf9\x3f\x95\x82\xf7\xf2\xd3\xbe\x3f\xc2\xff\x73\xdb\x41\x1e\x9f\x2a\x51\xa1\xfb\x84\xe3\x77\xd5\xa8\x1e\x3c\xb5\x8d\x3a\xdd\x3a\x1f\xf8\xac\x49\x38\x67\x4c\x9b\x06\x74\x6a\xde\xaa\xab\x45\xdf\x5b\xff\xb4\xd1\x44\xcd\xf3\x80\xff\x92\x26\x65\x1d\x36\x02\x5e\x51\xcd\x26\x0d\x2a\x00\x56\x9c\x69\x76\x6c\xe2\x96\x5a\xbb\x96\x4e\x6d\xde\x6b\xee\x67\xa5\x5c\xe7\xf1\xcd\xfb\x7a\xcc\xa9\xed\xec\x18\xd0\xbc\xe3\xe6\x7e\xb5\x3f\xcd\x9f\xd3\xec\x79\xdc\x54\xe5\x0e\x0e\x73\x9b\xe5\x65\x76\x57\x36\x9c\x33\xa6\xd9\xda\x73\xbb\x6a\x5f\xb3\x9b\xd1\xcc\xeb\xee\xa8\xda\x4b\x66\xbd\x68\xe6\xf3\xe6\xa8\xd2\xae\xe9\x2b\x9b\x6d\x93\xa4\x5a\x09\x53\x4a\x9a\xf4\x23\x3f\xc3\x1b\xd1\x38\x8c\xab\xd4\x22\xfd\xf6\x51\xbe\x9a\x8f\x15\x76\xf8\xb9\x7a\x6a\x0a\x3b\xac\x45\x1d\xba\x9f\x34\xed\xa2\x46\xf5\xf0\x3f\xe3\xff\x54\xf9\x3f\x98\x79\x30\x85\xf9\xcc\x07\x39\xa5\xab\x43\x23\x97\x29\xf1\x2d\xf3\xc1\x35\x2d\xe8\xde\x62\x8f\x01\xeb\xa2\x44\x9e\x6c\x4b\xf7\x6e\xa1\x93\xda\x53\xbd\xda\xda\x71\xed\x09\x27\x5d\xd5\xa4\x53\x8a\x62\x9f\xe2\xfa\x6b\x97\xeb\x2d\x1c\x6a\x79\x3b\xea\x74\x39\x60\xd8\x54\x65\xba\x43\x93\x2e\xff\x8e\xfa\xa2\x5a\x39\x6b\x4b\x97\xe7\x33\x27\xd5\x71\xb3\x39\xd8\x65\xe3\xd2\x2e\xea\x45\x53\xfa\x74\x69\xb7\xee\x98\xc6\x8b\x89\x4b\x3b\x1f\xd8\x39\xae\xee\xd1\x09\xb7\x3b\xd7\x39\x1c\x5d\xaf\xb3\x59\x87\x4e\xe1\xb9\x83\xea\x19\x8e\xb9\xd1\x69\xcc\xb5\xf2\xba\x67\x47\x47\x76\x1a\xfa\xbc\xb3\x46\xf9\xa8\x97\x9d\xa2\x25\x49\xbd\xfb\xd0\x65\x1d\x8c\x25\x49\x6d\x89\xc9\x8b\xb6\x4d\x24\x49\xe5\xc4\x80\x8a\x36\x3e\x92\xa4\x9c\xd5\x6f\xb9\x6e\xb0\x24\xd5\xce\xe8\xdb\xbd\x65\x91\x24\x29\x95\xf7\x3a\xd2\x62\xbd\x24\x29\xe9\xf7\x6a\xa4\x43\xfd\x01\x9e\xeb\x56\xf7\x5f\xe6\xff\x5c\x49\xa9\x43\xb7\x64\x05\x31\xda\xb4\x63\xc8\x4a\x6c\x49\x28\x4b\xba\x37\xfb\x99\xe0\xda\x99\x18\x74\x71\x9a\xdd\x09\x9f\xd9\x7e\xcc\x80\xf4\xcb\x37\x69\x32\x2a\x15\x90\xdb\x9f\x6e\x15\x57\xf6\x32\xa2\x5b\x55\x47\xdd\x81\x74\x1b\x3f\xbb\x8d\xf1\x5b\xed\xd1\x80\xf5\x69\xe3\xb1\x9d\xad\x95\x4f\x59\x24\x0e\xf2\x33\xb9\xa8\xde\x7e\xec\xe6\x41\x03\xa6\x28\xd7\x35\x1e\xfe\xef\x40\x17\x47\xf7\x7a\x5f\x06\x97\x0c\xd4\xf2\xd9\xaa\xb9\x6f\xe0\x86\x01\x7d\xc3\x3b\x34\x38\xdd\xbf\xbf\xd1\xca\x03\x45\x0d\xd5\xfa\x5c\xe9\x7f\x31\xeb\x8f\x06\xe7\x7a\xd7\xe9\xbf\xfa\xca\xc7\x06\xba\xbd\x06\xf5\x6f\xfd\xb8\x42\xb3\xbe\xe1\xd9\xfe\x17\xfe\xad\xac\xfb\xa5\x67\x6e\x9f\x74\x49\xd2\x68\xd1\xad\xdc\xe0\xbd\x24\xd5\xd1\xec\x92\xd4\xdd\x48\x92\x54\xaf\x74\x5e\xd8\x75\xb3\x24\xa9\x36\xed\x34\xbb\xb3\xad\x24\xa9\x6c\xec\xe8\xd8\x21\x46\x92\x94\x6f\xb5\xd3\x6f\xd7\x4c\x92\x6a\xdf\xad\x70\x15\xfe\xbf\x56\xa5\x7b\xb8\xcb\x4d\x1b\xd2\xfd\x73\xde\x89\x16\x54\xfd\x74\xfc\x48\x07\xba\xbf\x4d\x9f\xcd\x3a\x30\xfb\xbd\x7a\x13\xaa\x50\x93\xff\xb2\xd9\x71\x28\xdd\xdf\xfa\x1b\x0c\xa7\x1d\xd6\x0a\xfd\x51\x54\x75\xeb\xb4\x86\x75\x43\x66\x5c\x18\x4f\xf7\xb5\x13\xa2\xcc\xb5\xd4\x26\x03\xa3\x6c\xcc\x33\x5a\x8f\x55\xda\x69\x12\x35\xe1\x54\xdf\x2f\x6a\x0b\xfa\x37\x9e\xd0\x6b\x82\xaa\xba\x9b\xe1\x8b\xf1\x6f\x1c\xb6\x6b\x58\x76\x3f\x36\x7e\xab\x47\xaa\xc6\x8b\x2e\xbf\x8e\x37\xdd\xd2\xb9\xae\x52\xa7\xc6\x66\x1e\x7b\xe7\x69\x5c\x6f\xff\x9b\x59\xbf\xe3\x31\x1a\xae\xed\x2c\xc7\xb9\x14\x3f\x51\x3f\xd6\xb6\xc3\xb8\x65\x15\x3a\x75\x0e\xea\xcd\x1c\x37\xf4\x53\x4f\x35\xb5\xd6\x7f\x8e\xba\x2c\x49\x2a\x6e\xba\xef\x87\xee\x91\x24\xe5\xf0\x56\xb3\x4d\x12\x25\xa9\x76\x78\xcb\xa6\x03\xa6\x4b\x92\xd2\xb1\x16\xee\xfd\x06\x49\x92\x92\x71\x73\xb7\x3e\x21\x92\x54\x2b\xb8\xd9\x1d\x83\x6c\x49\xc2\xbd\x2a\xfe\x53\xc5\x2f\x74\x3b\xf6\x8d\xff\xd3\x8d\xfa\x20\xa4\x26\xf7\xa3\x5b\xf4\x03\xc6\xcc\x07\x89\x29\x19\x46\xf7\x6c\xdb\xac\x46\x10\x5a\x10\x5c\x31\x8e\x78\x23\x7e\x99\x16\x94\x19\x57\x69\x4d\xa2\xf8\x58\x94\x34\x95\xc6\xc5\xd6\xd3\x8a\xf4\x79\x2d\xfe\x9a\x46\x78\xa6\x71\xec\x2c\xba\x5d\xeb\x63\x66\x5b\xde\x64\x27\xd0\xcd\x64\xd6\xfd\xee\x92\xf2\xb1\x0e\xb9\xb6\xad\x47\xe5\xaa\x98\xe8\x0d\xb4\x35\xb7\x1d\xa7\x32\xb9\xd5\x69\xdb\x16\xcb\x6b\xab\xa0\x85\xb2\x6d\xab\x60\x5f\xe5\x36\xcd\x96\xce\xca\x8d\x5b\xa9\x94\xd8\xac\xb3\x6d\xcf\xa3\x33\x81\xa6\x1d\x67\xe9\x5f\xc8\x05\x1a\x77\x9e\xb9\xe1\xa1\x0f\xd0\xc8\x71\x46\xde\x9f\xb6\x80\x96\x83\x4d\x37\x45\x9c\xd7\xcb\xb5\xa4\xbe\x20\x75\x67\x4f\x88\xe2\x33\xd4\x98\xad\x64\x6d\x47\x10\xce\xa9\xb6\x69\xd8\x58\x3a\x53\x35\x37\xb5\x57\xd8\x92\x2e\xba\x74\x2b\x28\xeb\xff\x9c\x38\xdb\x87\xba\x4c\xa4\xbe\x36\xa1\x5b\xf2\x03\xaf\x46\x52\x3c\xc4\x2c\x1a\x47\x01\xbf\x2d\xdd\x9c\xd0\xb3\x8d\x11\x93\xc9\xfa\x57\x30\x3f\x62\xc5\xcb\x99\x84\x5f\x2c\x71\xb0\xa5\x19\x66\x5f\x61\x4f\xf9\x72\x4a\x3a\xdf\x2e\x8e\xd8\x3f\x9f\xf2\xa8\xa1\x8d\x13\xa1\x8f\xad\x77\x39\x0f\x52\x2c\x2d\xcd\xae\x38\xbb\x77\x38\x8a\x90\xc6\xa3\x9c\xdf\x0c\xa9\x07\x68\xe9\x3a\xbf\xb5\x89\x05\xea\xa7\x3a\x87\xbb\xea\x02\xea\x8f\x9d\xfb\x04\xb6\x05\xd4\xac\x17\xaf\x8e\x1a\x05\x28\x97\x2c\xae\x97\x9a\x01\xd4\xd6\x5c\xd4\xf0\xec\x3e\xa0\xd6\x06\xc7\xf7\x77\xe8\x86\xd5\x51\xa5\x92\xf4\xe1\xe7\x15\x48\x02\x69\x62\x3b\x5d\xf4\x79\xb0\xaa\xcb\x76\x92\xe8\xdf\x6d\x2e\xf0\x2c\x33\xaa\x63\xcc\xd7\xeb\x41\xcf\x79\x52\x63\x10\x3d\x5f\x4a\xc5\x48\x9a\xf7\x09\x2e\xe3\xe8\xb6\x38\xea\x12\xa3\xcf\x11\xb3\x98\xdf\xb4\xc9\x6a\x3a\xbd\xff\x80\x30\x3b\xca\x17\x1e\x05\x73\x68\xa7\xe0\xa2\xce\x7d\x44\xe6\xbb\x33\x6e\x6c\xf3\xa7\x13\xc5\x8b\xd9\x59\xe6\xc1\x0c\xdc\xe3\x4a\xe3\xd3\x69\xcb\x72\xda\x61\xd4\x73\xf7\xa4\x9d\x8b\xca\xd2\xd5\x66\x8a\xf3\x19\x0e\xae\x9e\xd6\x97\xce\x74\xab\x35\x2c\xe9\x97\x3c\xef\x3a\x52\x67\x36\x8f\x1c\x3f\x5a\xa3\x3d\xb4\x19\x31\xf7\xa8\x77\x98\x33\x8f\x57\x1e\x29\xa4\xaf\x30\xb8\x49\x78\xc6\x72\x93\x17\x34\x93\xdd\x44\xbf\x03\x67\xc1\xf3\x98\xdf\x80\xed\x1c\x51\xb7\x6a\x2b\xea\x17\xa7\x0b\x7c\xcf\x9a\xf0\x9d\x93\x5a\x26\xc4\x94\x4e\xcf\xe7\x79\x9c\x58\xc8\xfd\xaf\x62\x25\x7e\xcf\xdb\xaf\xcf\x24\xd4\x6c\xf3\x9c\xd9\x74\x8b\xbc\x4e\x7b\x1e\xad\x83\x9e\xc6\xcc\x0b\x71\x9d\xb3\x88\xfc\x5b\x60\xb2\x84\xea\x15\x67\xe9\x2e\xa3\xfc\x21\xf3\x60\x86\xff\xea\x41\x7d\x24\x7a\x5b\x78\x53\x7c\xb4\xb2\xf4\x25\xfc\x43\xa9\x68\x9d\xd8\x69\xad\x9b\xf1\x0b\x21\x1a\xeb\x0e\xf4\xd9\xc6\xff\x82\x45\x2f\xb6\xf3\x59\x79\xe9\x83\x0f\x29\x17\x05\xbc\x60\xa4\xd1\xff\x41\x02\xad\x40\x01\xb3\x4f\x11\xee\xe7\x67\xcf\x95\x93\x6b\x3c\x9f\x11\x32\xe7\x3b\xfa\x6b\x53\x1e\x37\xf6\xd3\x4d\xdc\xd3\x3b\x8b\x78\x58\x28\xea\x57\xe7\x0b\x7c\xc7\x9e\xea\x19\xd3\xa3\xc7\xd3\xbf\x9a\xd8\x7b\x12\x3d\x57\xdc\xc4\x19\x14\xbf\xdb\xaf\xb0\xca\x7e\x48\xc5\x3c\xba\xc7\x5f\x57\xe0\x44\x84\x99\xd5\x5b\x96\x10\xae\xe7\xde\x6f\x29\xad\xb8\x4e\xe7\xdc\x09\x6e\x99\x63\xb6\x8a\x50\xe8\xa9\xe5\xab\xa9\x7f\x84\xd9\x0c\x5f\xda\x57\x18\x3b\xfb\xd1\xef\x76\xbd\xba\x8e\x50\xab\xc6\x29\x1b\x8a\x21\x7e\x99\xed\x96\x8d\xbf\x50\xa4\x6d\x09\x61\xdd\x83\x2d\x0e\xe3\x29\x52\x42\x0c\x78\x46\x85\xbc\x5a\x3d\x98\x3f\x6f\xd5\x66\xbb\x9f\x3b\x54\xd5\xcb\xa2\xb3\xce\xa6\x29\x97\xc9\xef\x8d\x57\x1f\x51\xa5\x70\x70\xc2\x67\xe6\xc5\xf4\x90\xaa\xf1\x3f\xe4\x71\x71\x3f\x21\x55\xe3\x0d\x39\xd3\xbe\x2b\xf1\x84\x0d\xed\x90\x64\x1d\xa0\x1d\xa6\x73\x09\x4d\xda\x62\xe2\x48\xf9\x21\x68\xd4\x12\xe2\xc7\xfa\xcc\x70\x27\x3c\x62\xb9\x2f\xeb\xe0\x38\xf7\xf6\xa4\xfd\x82\xfd\x57\x6f\x5a\x5f\xa7\x3d\x63\xbc\xdc\xbc\x82\xd5\xd7\x87\x87\x05\xd1\xce\xb4\x9f\x01\xe3\xe6\xed\xcf\x86\xd0\xef\x68\xe9\x86\x0b\x26\xf3\x4e\x2d\xb6\x91\x1f\x7e\x61\xe6\xc5\x6c\xee\x54\x17\xb9\x6d\xdc\x75\xb2\x2b\x66\x13\x63\x29\x32\x7a\x15\xed\xed\x76\xc4\x6f\x9e\xc2\x4f\x18\x4f\x2b\xf0\x8e\x5e\x47\xa8\x92\x36\xe2\x50\x31\x65\xe0\x6d\xc7\x1e\x12\xb2\xbc\xed\xd4\x07\xe2\x0d\xc9\xbc\x98\x8d\x86\x6c\xd7\xae\x65\xbb\x46\xe4\x0d\xaf\xe5\xdf\x8f\x8f\xdc\x07\xac\x4a\x07\x48\x77\x09\xfd\xab\x1b\x74\xdd\x09\xa7\xf1\x73\x5d\x41\xf9\xc2\xa3\x37\xf3\x03\xdc\xd6\xb0\x2e\xcc\x7c\x17\x3f\xd6\xc3\x69\xb1\x8e\x50\x39\xab\xd4\x0d\x84\x7f\x8e\x6b\xc1\x7e\x1b\x97\x85\x10\x1a\xd7\xf3\xaf\x70\xc2\x77\xdb\xd4\xde\x41\x5e\x69\x0c\x8e\x12\x0a\x85\x71\xa2\x73\x65\xbc\x55\x53\xc2\xb3\xe2\xd3\x59\xff\x21\xde\x6a\x0c\xcd\xa8\xf8\x9e\x9c\x71\xe3\xc3\x59\xa1\x26\xde\x72\xc3\x06\x7e\x63\xb1\xc4\xd8\x89\xb3\x49\xa7\xf9\x10\x37\xb3\x88\x90\xc7\xdd\xfb\x39\x5f\xee\x9e\x50\x49\x91\x1a\x55\xc0\x38\xef\xb6\x74\xb6\x32\x2f\x26\x58\xd4\xf9\x07\x0a\x3c\x7c\xed\x24\x85\x95\xfd\x0f\x9f\xee\x4a\xb3\x6e\x93\xed\x2a\x8a\xe7\x80\xf8\xd5\x74\xa2\xf4\x16\x3c\x2f\xb7\x16\xfe\xa4\xda\xb2\x28\x32\x88\xfe\x2e\xeb\xe1\x4c\x9b\xb6\x99\xd6\x09\x8b\x58\xe6\xc3\x8c\xc8\xdb\x4e\xec\x25\xa3\x39\x91\x84\xca\x77\x33\x63\x5d\x9c\xe6\x66\xcc\x17\x50\x29\xda\x5b\xce\xfe\x27\x89\x7a\xff\x83\xab\x7e\x21\x85\xa9\xa4\x15\x3d\xe9\xcc\x9f\x34\x71\x14\x9d\x71\x13\xe7\xcc\x24\xdc\x32\xc9\x6c\x29\xed\xd0\x93\x4a\xd6\xb1\xd5\x65\x86\x4d\xe2\xef\x29\xf4\x86\x12\x9d\xf3\x28\x8f\x24\xea\xdc\xa0\xc8\x4e\x78\xfd\x8a\x3c\xd8\x5f\x29\x51\x9d\x74\xac\xc8\x07\x32\x2f\x46\xe6\x0b\x55\xf1\x62\x48\x3f\x68\xbb\xa3\xe8\x07\x56\xc1\xec\x9b\x75\x4f\x7c\x29\xfb\xf8\x7c\x5a\x4b\x78\xf4\xf2\x5f\x83\x28\x4b\x7d\xc7\x03\xa2\x79\x31\x2b\x26\x9c\xd0\x34\x2b\x03\xce\xe2\x66\x09\x3b\x69\xde\x0c\x79\x1c\x43\xd1\xdb\xd7\x97\xfb\x8a\x74\x7c\xbb\x8f\xf8\x14\x4d\x04\x3f\xa2\x56\xf2\x21\xd1\xe7\xa0\x8a\x0f\xd3\xfa\x17\x5a\x1f\xd2\xbb\xf4\xa0\x19\x96\x76\x79\x04\x29\x6c\xa4\xeb\x4e\x27\x7f\x33\xd6\xba\xd0\xc8\x67\xfc\x1a\xf0\x8e\xed\x0e\xb2\xe9\x25\x07\xe9\x5f\x4e\x5f\x71\x86\x76\x24\xe9\x1d\xca\x88\xd1\x9a\xe6\xcc\x3a\x4a\x29\x06\xff\x9e\xc5\x77\xba\x28\x7b\x04\xde\x1d\x2b\xd6\x8b\x2a\x5e\x0c\xf1\x0c\xe5\x7e\x60\x1b\x74\x03\x68\x7e\xf8\x9a\xaf\xa7\xf8\xf7\xbc\xb2\x99\xf8\x83\xb2\x1e\x8e\x93\xb4\x8d\xd8\x59\x32\x0f\x66\xda\x0b\xee\xbe\x60\xf1\x57\x34\x65\xa5\x31\xce\xec\xb7\x49\x09\xf3\x9f\x0c\xfd\x12\xe8\xe9\xdb\xe9\x30\x1f\xa6\x51\x68\xea\x14\xe1\xb7\xe8\x7b\x51\xc5\x87\xb1\x64\x5d\x94\xac\xcd\xdd\x8f\xd1\xe7\xce\xc3\x89\xcf\x92\xe5\x6a\x4d\xfe\x66\x8f\x71\xa6\x33\x6c\xf6\x04\x3f\xe2\x51\x65\x8d\xd8\x46\xf9\x20\xcb\x37\x91\x22\x31\x7b\x71\x0e\x3d\x71\xd6\xd0\xab\xa4\xd4\x72\xf2\xc5\x53\x62\xac\x9c\x50\xfd\x44\xa9\x3e\x53\xf0\x1e\x92\x45\x7f\x9c\xff\xf0\x62\x88\x07\x10\x2c\xfc\x5e\x1b\xb5\x99\xb2\x8b\xcc\x03\x72\x2f\x0b\xa7\xf5\xcd\xb9\xf3\x4e\x7a\xfe\x79\x4f\xb8\x2f\xd6\xac\xee\xbb\xc9\x0f\x9b\xbc\x7d\xb4\xca\x4d\x70\x3d\x40\x3b\xf3\x11\xa3\x93\x68\xf5\x33\x1a\x76\x88\xd6\xdd\x1e\x3e\x69\x54\x91\xa1\x37\x8d\xfd\x6e\xb8\x88\xf5\x04\x80\x6c\x31\x1e\xf9\x5e\xc2\x1a\xe8\x50\xc6\xc9\xef\xae\x4f\x33\x34\xdf\x7e\x08\x65\x92\x02\xbb\xa9\x34\x23\x0b\x36\x2f\xa2\x1d\x6d\xbe\x9b\xf7\x42\xfe\xfb\x56\x3a\x13\xe6\x57\xec\x17\x96\xcf\xfc\xf9\x29\x97\x69\xfc\xf2\x7a\x96\xd3\xf8\xe4\x69\xff\x49\xdf\xcf\x16\xfc\x20\x59\x3f\x27\x5d\xe8\x81\xc8\x7c\x21\xe6\x51\xad\x73\x0b\x25\x7f\xbc\x75\x99\x55\xb0\x6a\x78\x24\xbd\xcf\x9a\x3c\x20\xfb\x0a\xe6\x47\xcc\x6c\x79\x80\x6e\xa0\xe4\xfe\x58\xe3\xf6\x1c\xa6\xac\x34\xb4\x5f\x1a\xe5\xc5\x7e\x06\xcc\x87\xe9\xfa\xcb\x51\xca\xea\xad\x5e\x65\xd3\x4d\x55\x95\x3e\x8e\x4f\xbe\xb8\xe9\xac\xe2\xc3\xe8\xe8\x50\x3e\xb8\xd8\xa9\x2b\x8d\xcc\x79\x57\x13\x5a\x37\x8b\x2d\x26\xd1\x2f\x16\x4b\xbc\x33\xbb\x18\xb4\x9a\xf2\x5d\x71\x62\x28\xf9\x5d\x3c\x64\x2f\xf1\x25\x2f\x46\x1c\xa5\x37\x70\x71\xf6\xf9\xa3\xfc\xbb\xf7\xeb\xb2\x7d\x4b\x2b\x78\x61\xfe\x57\x9a\x6f\x72\x3f\x9c\xec\x03\x6c\x8f\x8b\x3e\x74\x99\xd4\xef\x78\x8d\xf5\xf6\x52\x7c\xcf\x03\x1a\x10\x4f\xa3\x2a\xf3\x80\x16\x5a\x26\x50\x7e\xb4\x1b\xc2\x6a\x45\x36\x66\x29\x74\x1e\xb3\xd4\x4d\xa3\x79\x3e\x26\xee\x88\x0f\xcf\x07\xd6\xcf\xe8\x23\x78\x21\x5d\x74\x4f\xd3\xef\xb6\xf0\xca\xa7\xa7\xac\x87\xb3\xd3\xaa\xfb\x5f\x6a\x23\x6c\x80\x16\x29\x63\x94\xf5\xea\x44\x6f\xa0\x6c\x37\xf3\x1f\x4a\x4b\x58\xe1\xaf\x2c\x86\x77\x6e\x65\x23\x58\xd1\xec\x9a\xff\x26\xfa\xde\xb5\x49\xf1\x34\x4e\xa5\xeb\xd2\xe9\x4e\xac\x74\x45\xa1\x2e\xdb\xdb\xb4\xee\x5e\x7d\xf1\x8a\x56\xb2\x2b\x62\x9d\xb8\xa0\xcb\x77\x8f\xb2\x7e\x4e\xd5\xb8\x10\x2f\x48\xe6\x01\xad\x7c\xb5\x87\x58\x36\x32\x0f\xc8\xc9\xf0\x20\xfd\xdd\xbe\x32\x99\x58\xbe\x33\x8a\x52\x49\xad\xcb\xca\x80\xfb\x06\x99\x9f\x3a\x41\x8a\xbd\x23\x83\xd9\xef\x41\xb1\xdc\x47\xa7\xd7\x1a\xe6\x47\x74\xca\x2d\xa4\xfc\xd1\x7c\xc4\x05\xe2\x89\xd4\xfd\x50\x2c\xd6\xcb\x6b\xfe\x6c\xe5\x1b\x8e\x3b\x5e\x5a\x87\x41\x08\x40\x07\xf2\xf7\x4e\xb9\x31\xad\xc0\x77\xed\x2c\xd8\x36\xb3\xa7\x93\xcd\xbd\x09\x2b\x68\x3d\xb8\xfb\x8a\x3b\xfb\xdd\xdb\xcd\x6f\xee\xce\xd3\x14\xca\xa7\x77\x7a\xe5\xd1\x5d\xe1\xdd\xac\x5b\x74\xa7\x7c\x77\xee\x2b\x9a\x89\x37\x7a\x7e\xa4\x1a\xc3\x52\xa1\xa3\x74\x49\xf0\x63\xce\x8f\x61\x5b\x40\xbc\x73\x8f\x02\xde\x9d\x2d\x3b\xc0\x71\xbe\xa4\x22\x85\xde\xdf\xbc\x17\xe9\x94\xff\xed\xb5\x8f\x91\x3f\xd3\xb4\xf9\x7d\x5b\x7a\x65\xd1\xf9\x4a\xd6\xc5\x19\x7e\x22\x9f\xf2\xe7\x20\xdd\x22\x3a\xe5\xf4\xfc\x95\xdf\x77\x87\x91\x97\x28\x4e\x64\x7d\x1c\xf5\x4d\xd7\x3e\xb1\xdf\x55\x7c\x98\xae\x6c\x1f\xd9\x6b\xd2\x09\xa4\xa2\xa8\x3d\xe5\x87\x47\x15\xdc\x67\xef\x51\x05\x33\xbe\x1f\x87\xd9\xd2\x08\x3e\xda\xc8\xcc\xf5\xc7\x61\x41\x86\xfc\xdf\x77\xd1\x52\xf7\xe8\x41\x32\x65\xb4\x8a\x2f\xa7\x89\xd1\x55\xe1\x7a\x95\x2a\x00\x7e\xf5\x79\xdc\x5f\x61\x1f\x66\xfc\x45\x3b\x64\xb9\x9f\xd4\x8d\x95\x6c\x4b\x45\x5f\xb9\xcb\xfd\xe4\x7b\xfb\x9f\xe9\x5f\x54\xe3\x3d\x34\x00\xba\x5c\xfb\xd6\xd7\xe0\xb5\x31\xa0\xd8\xf7\x3c\xd7\x05\xfa\x1f\x06\x1e\x2d\x02\x8c\x8f\x03\xf7\xe6\x01\x23\x9f\x01\x37\x23\x18\xdf\x55\xec\xfd\xa7\xfa\x02\x25\x02\xd7\xbc\xf8\x19\x58\xd8\x08\x28\xb4\xe0\xfa\xd5\x82\x87\x80\x62\xdf\x5c\xa0\x04\x04\x56\x02\xa7\x3f\x02\xa1\xce\xdf\x74\xee\xf3\x74\xf8\xde\xfe\x4c\x22\x70\x6c\x23\xe3\x02\xe7\x5a\x30\xc6\x77\x4d\x71\x4e\x74\x07\x9e\x69\x00\x67\x4b\x80\xcf\x99\xdf\xfa\x80\xfc\x2f\xfd\x83\x9a\xf8\xff\x8f\xfc\xfe\xde\x7e\x3d\x0c\xb4\x5e\x0b\xfc\x73\x0d\x68\x3f\xe2\x9b\xce\xc1\xf3\xdb\x40\x8f\x1e\xc0\xe3\x9b\x3c\x1e\xe5\xe6\xc0\x00\x6d\xe0\xee\x27\x60\x48\x28\x70\xe3\x29\x60\x66\xc1\x7d\x0d\x26\xc5\x00\xc5\x7b\x81\x59\x9e\xc0\xf9\x81\xc0\xfc\xcd\x40\x5e\x37\xc0\xb9\x1b\x90\xdb\x96\xeb\xdc\x73\xd5\x15\x39\x1b\x38\x35\x01\x08\x8d\x06\x4e\xc5\x31\xa6\x71\x26\x96\x31\xbe\xd3\xbe\x8c\x89\xe5\xe9\x29\x32\x23\x70\xe6\x32\xd7\x90\x2b\xec\xb3\x57\x40\xde\x23\xe0\x6b\xcc\xff\xd6\x3f\xa8\x89\xff\xef\xfc\xf0\x6d\x1c\xaa\xf4\x2f\xe4\x3e\x20\x7f\x54\xb7\x8a\xbf\x7f\xac\x00\x74\xb7\x00\xaf\x16\x03\x6d\x43\x81\xe7\x77\xb9\xcf\x83\x8c\xf7\xdf\x5f\xcc\x38\xcd\xad\x46\x8c\x5b\x95\xa6\x32\x2f\xa6\x58\x62\x5e\x4c\xd1\x20\xee\xfb\x90\x1f\xca\xba\x20\xb9\x9a\x80\xb3\x2b\x70\xc6\x08\xf0\x68\x0c\x64\x0f\x67\xec\xed\xe4\x17\x3e\x81\x29\xb2\x8e\x62\x1c\x4e\x3e\xe5\xba\xff\xac\xb6\x5c\xdb\xae\xd8\x2b\x5c\x78\x00\xe4\x84\x00\xb7\xfb\x03\xd9\xd9\x1c\x93\xa7\x13\x01\x29\xec\x1b\x0f\xa6\x4a\xff\x7f\xf9\x8f\xfd\xff\x3f\xf1\x1f\xbe\xb3\x32\xef\xe1\x43\x32\xd0\xe4\x29\x50\xd9\x10\xd0\xdd\xcd\xfa\x37\x1d\x0a\x80\x5f\xbd\x80\xce\x6f\x80\xdb\x9e\x80\x41\x7d\xee\xef\x30\xd0\x1d\x28\x99\x0c\x0c\xbd\x0c\x5c\xd0\xe7\xf9\x51\x60\xc7\xf3\x23\xdf\x19\xb0\x37\x65\x3f\x15\xeb\xe1\xc9\x33\xc0\xf2\x72\xd6\xba\x50\x8c\xc3\xd1\x4a\x60\xf3\x75\xe0\x68\x57\xc6\xf5\x8e\x5f\x66\x1c\xe7\xc8\x4b\xe0\xe8\x6b\x20\xab\x19\x50\xdc\x05\x38\xb9\x0e\xb8\xdb\x88\xf1\xff\xe7\x75\xbf\xc5\x81\xac\xff\x2f\xd7\xff\x57\xe1\xbf\x35\xfa\x20\xfc\x90\xff\xf0\x93\x3e\x20\x0a\xfb\xa5\x15\xdb\x77\x97\x58\xef\x41\xe6\x3d\xc8\x3a\x07\xbf\x6a\x00\xed\x27\x71\x8c\x76\xb3\x00\xae\x3d\x64\xbc\xbf\x78\x3a\x60\x1c\x04\x28\xce\x40\x63\x74\x38\x7e\x27\xcd\xe0\xf7\x39\x4b\xe1\xff\x02\x60\x61\x4b\xe0\x98\x03\xb0\x2c\x0e\xc8\x30\x05\x7c\x4c\x81\x0c\x77\xc6\xac\x52\x7c\x80\x1d\x9b\x80\x4c\x4b\x8e\x87\x4c\x43\xe0\x64\x6d\x20\xd3\x8f\x39\x51\x99\x9f\x81\x3b\xb5\x81\x23\x69\xac\xc9\x23\xf3\x60\x6a\xe2\xff\x55\xf8\xaf\xf8\x2c\xeb\x20\xfc\x88\xff\xf0\xbd\xfe\xc5\xd7\x10\x40\x79\x8e\xf8\x9c\xce\xbc\x07\xb5\xc6\x9c\x17\x6a\xcf\x00\x9e\x9b\x02\x75\x2d\x18\xef\xd6\xde\xcd\x78\xb7\x62\x3c\x6e\xcc\x01\xda\x56\x30\xd6\xd4\x33\x8c\x77\x09\x8a\xbc\x9f\xef\x07\x0c\x0f\x06\x4e\xe9\x71\x3f\xa9\x63\x83\x00\x9b\x93\xc0\x11\x1b\x60\x9e\x13\x90\xb2\x1e\x70\x19\xc8\xf8\xb7\xe2\x44\x7b\x30\x86\x75\x94\x0e\x6d\x04\x22\xf4\x80\x43\x09\x8c\x7d\x1f\xba\x0e\x1c\x19\xca\x98\xef\xd9\xe1\x40\xb2\x3b\x70\x6b\x16\xff\xff\x2f\x12\x80\xc3\x4f\x99\xab\x50\xb3\x0f\x86\xec\xbf\xfc\xde\x65\xbf\xab\x78\x00\xdf\xf1\x1f\x64\xfe\x87\xd2\x35\x40\xd2\xe1\xba\xec\xaf\x5c\x6e\x85\x3f\xc5\x69\xa8\x26\xef\xe1\xa1\x09\xa0\xa9\xc5\xba\x2f\x3a\xd6\xdf\xfa\x3c\x5c\xbc\xca\x75\xdc\x67\x0d\x00\xc3\x34\xe0\x54\x31\x60\xd2\x96\xe7\x81\x59\x77\xee\x63\x31\x55\x1b\x48\x59\x04\xcc\x51\x02\x0e\x86\x02\x8b\xf6\x02\x09\x82\x17\x93\x30\x18\x08\xdc\x0c\xec\x5f\xa1\x38\x31\x03\x49\x7d\x81\x03\xfa\x40\xc2\x7b\xe0\x88\x19\xc7\xc6\x79\x0b\xe0\xd0\x10\xe0\x5e\x32\x70\xb0\x14\xa8\x1c\x0c\x24\xea\x8a\xfc\x5f\xb7\xba\xff\x35\xf9\x1f\xb2\xdf\x3f\xe5\x3f\x08\xde\x87\xec\xff\x5f\xf5\xd9\xca\xbc\x87\x17\xe2\x54\xf0\x1f\xde\x83\x0f\x50\xd7\x00\xb8\xa4\x04\x34\x6e\x0e\x14\xed\x07\xf4\x56\x01\x79\x8e\x40\x57\x0f\xe0\x44\x2e\x60\xd4\x5a\x71\xda\x01\x46\x98\x01\x87\x8d\x00\xf3\x2c\xe0\xa0\x2f\xcf\x8f\xfd\x4f\x98\x3f\xb7\x47\x9f\x31\xca\x3d\x9d\x81\x75\x1a\x8a\xd3\x0f\xb0\xed\x10\x10\xbf\x1e\xd8\xe7\x04\xc4\x1b\x02\x99\xd3\x80\x7d\xa6\xc0\xf9\x38\x60\xcf\x11\xe0\x6e\x18\xb0\x4f\x0b\x78\x93\x0b\xec\xbe\x06\x7c\x3d\xf5\x5f\xff\xe5\xf7\x1e\x10\x56\xdd\x6f\x19\x0f\xf7\xec\xf8\x03\xfe\x83\xcf\x37\xbc\xf3\xbd\x0a\xdb\x2a\xde\x83\x18\x1f\xb9\xdf\xc7\x4d\x51\xdf\xfe\xbd\xde\x81\xc6\x6e\x20\x0f\x40\xd3\x70\x20\xfb\x25\xd0\xae\x00\x38\x7a\x0b\x30\x38\x07\xa4\x37\x00\x06\x47\x00\x49\x33\x00\xb3\x5f\x19\xf7\xb7\x4e\x03\xf6\x24\x03\x0b\xf6\x00\xbb\xd7\x30\xde\x1d\x9d\x02\xf8\x57\x02\xd1\x16\x40\xb8\x21\x10\x7d\x15\xd8\x9b\x0d\x44\xed\x00\x8e\x4c\x04\xa2\xbe\x02\xe7\xc4\x5a\x72\xf7\x15\xe7\xd2\x97\x0f\x45\xfe\xf3\xfb\xe6\x7f\x4d\xfe\x87\x97\x73\x75\x3c\xdc\xdd\xfb\x07\xfc\x07\x45\x8e\xd9\x25\xe6\x81\x83\x88\x83\x1a\xba\x1f\x4f\x04\x3b\xfe\x8e\xd0\xbf\x90\x75\x2f\x8a\x05\x0e\x56\xb0\x0f\xa8\x75\x1c\xc8\xb1\x50\x9c\x25\x38\xff\x2b\xe6\x49\x4a\x19\xcf\x13\x45\x3c\x2b\xf2\xe7\x1e\x03\xee\x3f\x17\x6b\xce\x7a\x63\xd1\x13\x00\xfb\x8d\x40\xe4\x29\xc0\xad\x0d\x10\x39\x0e\xf0\x73\x04\x22\x9e\x02\x5b\xf5\x80\xed\xb7\x80\x3d\xeb\xb9\xcf\xcf\x51\x5f\x20\xa2\x0b\x70\x3e\x0d\x88\x38\x0a\xdc\x8f\xe6\xf7\xaf\x58\xd3\x43\x4f\x56\xf7\xbf\x8a\xff\x21\xde\xb7\xbb\xd8\x4f\xd5\xec\xff\xe1\xf4\xd7\xff\xc0\xfd\x05\xee\x2d\xeb\x7e\x3c\x14\x3c\x88\xdb\x1f\x6a\xc4\xc1\x23\xb6\xa7\x85\x2e\x88\x62\xcf\x57\x2b\x97\xf5\x5c\x14\xeb\x4b\xe2\x64\xa0\x75\x00\xb0\xd7\x04\xe8\x69\x02\xc4\x4e\x04\x86\x58\x02\x91\xcf\x00\xf3\x48\x20\x42\x19\xb0\xf3\x01\xc2\x0a\xb9\xbf\x58\xc8\x2b\xd6\x51\xda\x9c\x0e\x84\x6a\x01\x9b\x7d\x79\xec\x36\x99\x03\x99\x66\x3c\xcf\x0b\x83\x81\xe0\x14\xe0\x6e\x7d\xee\xa9\xf3\x36\x58\xf0\x5f\x12\x01\xef\x15\xec\x57\x15\xff\xa3\x86\xdf\xb2\xee\x85\x83\x4b\x75\x1e\x44\x4d\xdc\xff\x8d\xe8\x7b\xf1\x9b\x50\x4d\xad\xe8\x29\xf2\x81\xc8\x13\xd7\x05\x1f\xe6\xa2\xb8\x45\xe1\x6e\xb4\x40\xf6\x41\xb6\x19\xa2\x9b\xa4\x62\x1f\xab\x5c\x09\xec\x79\x00\x34\x09\x64\x8d\xb0\x4e\xb1\x40\xa4\x05\x30\x20\x19\x08\xdf\xcd\x98\xfb\xe6\x3f\x81\xe9\xed\x80\x8d\x11\x80\x53\x04\xb0\xa1\x04\xf0\x69\x03\xac\x0f\x00\x42\x4d\x81\x75\x8a\xdc\xa0\x04\x04\x3c\x03\x32\x1f\xf2\x9c\x39\xe7\x0f\xf8\x65\x71\x4f\x2e\xc5\x98\xbd\x36\xfe\x16\xf7\xee\xf3\x6a\xf8\xdd\xa1\xba\xbf\x33\x16\xb2\x9d\x56\x4f\xf0\x1f\x04\x77\xfc\xef\x93\x35\xe6\x81\x78\xef\x8f\x45\x1e\xb8\x27\x78\x01\xd7\xe5\xbe\x2f\xa2\xab\x6c\xa1\x18\x8f\x53\x82\x1f\x71\x4c\x74\xdd\x95\xf9\x1f\x7b\xc5\x7f\x8f\x2a\x00\x34\xf6\x03\xdb\x33\x81\x96\x05\xc0\x96\xad\x40\xcf\xad\xfc\x1e\x87\x55\x00\x81\x5f\x80\xa9\x5f\x80\x80\x16\xc0\x82\x2f\xc0\x1a\x53\xc0\xd3\x8b\x7b\xef\x85\xf4\x00\x3c\x77\xb3\x56\xca\xaa\x5f\x81\x0c\x4f\x60\xb9\x2b\x9f\x3d\xdc\x95\x81\x9b\x7d\x80\x65\x2f\x80\x97\x5b\xf8\xac\x22\x7d\xc7\xf3\x99\x2d\xb4\x5e\xa6\x7f\xad\xee\xef\x14\x31\x3e\x16\xa2\x4f\xe3\x78\xa1\x4f\x57\xb3\xef\x8d\xcc\x7f\xb9\x3b\xbc\xfa\xfb\x97\xbb\x4c\x17\xd6\xab\xe1\xbf\xd0\x8d\x49\x11\xfc\x88\x84\x7e\x6c\x63\x0e\xb1\x0d\x17\xb7\x4e\x9b\xeb\x02\x8d\x06\x01\x41\x3a\x40\xc7\x8b\x80\x7f\x02\x30\xc8\x1f\xf0\xde\x03\x4c\x54\x01\x3c\xfa\x02\x0e\x31\xc0\x8a\x66\xc0\xca\x37\xdc\xcf\x27\xb8\x3b\xe0\xb2\x09\x88\x71\x00\x16\x5f\x03\x52\x97\x00\x4e\x09\x40\x7e\x6d\x60\x61\x1f\xe0\xfa\x4d\x60\x7e\x02\xf0\xfb\x39\x60\xae\xc8\x87\xb3\xc4\x78\x4c\x19\xce\x56\xe6\x7d\x98\x89\x7c\x38\x4a\x68\x25\x8e\xd8\xce\x76\xa8\xe8\x25\x2a\xe7\x81\xdf\x84\x7d\xf8\x91\xad\x7c\x3b\x50\x3c\x5d\xf8\x1f\x2c\xfc\x17\xfc\xa0\x13\xa2\xfb\x74\xba\x50\x9b\x4d\xd2\x55\xa2\xf3\xf5\xee\xdd\xaa\xa3\x41\x3a\xe0\xaa\x94\x49\x37\x5e\x55\xa3\xfb\xea\x35\xea\xea\xde\x6a\xdb\x00\x8f\x5d\xf5\x8e\xb7\x7a\x00\x2c\x3b\xd9\x60\x60\x1f\x75\x60\x89\xbb\x96\xf6\xd8\x4d\x80\x63\x8c\xf6\x3c\x5b\x6b\x60\x5e\x70\xa3\x2e\x6e\xbe\x80\x7d\xbd\x46\x16\x81\x6d\x01\xdb\xf7\x8d\x1a\xed\x54\x07\x66\x76\x68\x34\xe2\x90\x2b\x30\xed\x89\x76\xf9\xe9\xc6\x80\xf5\x6d\x6d\xd3\xab\x37\x81\xa9\xcf\xb5\xd5\x9e\x44\x03\x93\xff\xd4\xf2\xff\x77\x00\x30\xe1\x62\x83\x2e\x0a\xbf\xc6\x2c\xaf\x47\x3a\x28\xc3\xc6\xa8\x9b\x28\xec\xe0\x02\x95\x1b\x0a\x3b\x28\xb1\x16\xdd\xc3\xf4\x7b\x26\xec\x06\x1e\x87\x67\xe1\xc2\xff\x3f\xab\xfb\x5f\x72\xaf\x86\xff\xba\xdc\x3d\xf6\x48\x6d\x35\x9a\x49\xa9\x46\xf5\x89\x11\xb4\xbf\xa0\x31\xdd\xdf\xef\xda\xc3\x7d\x72\xc2\x55\x7e\xa1\xfb\x85\x0d\xa9\xcd\xe9\x56\xc4\x2b\xab\x15\xfd\xdd\x25\x49\x97\xea\x1b\x17\x3a\xe9\xb5\xd6\x79\x06\xcc\xfe\xa0\xf7\xb9\xeb\x0c\xa5\xb4\x19\xfd\xdb\x86\x0d\x99\x52\x3b\x6f\x6a\x54\xdb\x27\x53\xbd\x95\xaf\x4d\xfc\xb3\xed\x75\xa7\x81\x2a\xd7\xc6\x3f\x6f\xbb\xd5\xe7\x90\x6a\xfa\x98\x4f\x6d\x8d\xc2\x06\xa8\x4d\x18\xf9\x55\x2f\x7d\x7f\x3b\xb5\xd8\xe1\x0b\xf4\x3a\x9e\xa8\xaf\xb6\x7f\xa8\x41\x9b\xc7\xc5\x83\xd5\x3c\x4c\x8f\xb4\x59\x5b\x5e\x4f\xf5\xce\xe0\xf5\x6d\xbc\xfe\x1c\xa6\x52\x3c\x68\x44\x6b\x5d\x49\x52\x1e\xda\xf7\x7e\xab\x36\x92\x54\xbb\x61\xaf\x5b\xcd\x33\x24\xa9\xd6\x31\x03\xa9\x31\xe9\xfa\xeb\xf7\xd2\x22\x3d\xda\x6e\x6b\x1a\x12\xfe\xdd\x35\x4c\x93\xea\x7a\x7f\xca\x7f\x09\x66\x9d\x9b\x2c\xe3\x7a\xf4\x39\xbd\xac\x91\x19\xbf\x77\x56\x61\x8f\x9f\xa6\x47\x55\x40\x3b\xef\x74\xa4\x7a\xae\x50\xe7\xce\xb4\xc3\x08\x7c\xa5\x4f\xb7\x65\x5e\xce\x3d\x69\xc7\xe5\xea\xd8\x83\x22\xc6\xbe\xc2\x90\x32\x8f\x55\xdb\x3e\xed\x34\x82\x00\x0b\xdd\x3e\x5f\xf5\x46\x29\x4d\x18\xbd\xb5\x8f\x53\xff\x7a\x2a\x39\x43\x3d\xfa\x44\x4d\x58\xa0\xb6\x64\xd0\xb5\x3e\xdd\xec\xcb\xea\x3c\xee\x77\xa6\xf7\x95\x95\x31\x1a\x7d\x7b\x79\xf5\xee\x1d\xfc\xb0\x6e\x9d\x9e\xdb\x7b\x59\xc4\xda\xd4\xed\xd4\xbd\x8e\xe1\x83\x8c\x22\x8d\x0f\xdd\xf4\x0c\xd7\x9d\x5b\xa6\xb1\xba\x4b\xa1\xe1\xd4\xbb\xb6\xea\x89\x9d\xdf\x1a\x0e\x7b\x13\x55\xc7\xa6\x73\x23\x83\x76\x92\xa4\x1a\xd9\xee\x8d\xbe\x91\x24\x29\x97\xe9\xa5\x74\x8e\x95\xa4\xda\xd7\xdb\xd8\xb5\xef\x25\x49\xb5\xdb\xb7\x5e\xa1\xf7\x45\x92\x94\x72\x5b\xbd\x6a\x6d\x2b\x49\x4a\x3d\x5a\x36\xd0\x6d\x26\x49\xb5\xb6\xde\x3e\x58\xdd\xff\xfc\xbf\x39\x01\x64\x19\x33\xef\x27\x63\x4b\x2b\x9a\x09\x49\x01\xed\xa8\x5e\x57\xe6\xbf\x44\x54\x70\xf5\x6d\x48\x45\x5f\xfa\x1c\x18\xd0\x97\xd0\xc5\xd5\x47\x8d\x88\x1f\xe1\xaa\x33\x98\x50\xb6\xb9\x3b\x4d\x69\x66\x4d\x19\x36\x8c\xea\xb9\x86\xcf\x1d\x45\x78\xaa\x49\xc3\xd1\x7e\xbf\x14\x00\x7d\xbc\x47\x2b\xf7\xf8\xa2\x3c\xab\xc7\xec\x51\x4f\x47\xd9\xa8\x64\x76\x09\x1a\xf5\x76\xe6\x5b\xd5\xb1\x1d\x26\x8f\x0a\x74\x8b\x53\x5d\xae\xf7\x70\x54\x83\xa0\xab\xaa\x93\x5a\x1b\x8d\xfc\x1c\xdd\x43\xe5\x53\xab\x11\x23\xbd\x53\x8b\x54\xec\x5b\x1c\x18\x91\x5a\x10\xa6\xec\xde\x7c\xc7\x08\xff\x5b\xa1\xb5\x97\x34\xbb\x3c\x62\xc7\xcb\xf3\xb5\xbe\x34\x33\x1a\x4e\xf7\x6f\x3a\x13\x07\x13\x7e\xab\x35\x6b\x00\xe1\x57\x0d\x3a\xf4\xa5\x7b\xc8\xfa\xe1\x06\xd4\xaf\xbb\xde\xbe\x1e\xb7\x14\xb6\x6e\x3d\x7d\xc2\xc7\xaf\x9a\x29\x53\x86\x2b\xd4\xd4\xa2\xe7\x97\xf9\x3f\x19\x41\x9d\x29\x42\x12\x72\xf4\x35\x79\xde\xf7\xa7\x4c\x19\x39\x7c\x90\x25\xfb\x3f\x98\x78\x1f\x6b\x1b\x0e\x25\xe6\xb5\xe7\xab\x31\x74\x2b\xea\xea\xcc\xb8\xf9\x7c\x77\x33\xc2\x3f\xa7\xb9\x59\xd0\x2d\xfc\x58\x5d\xd6\x47\xe9\x3f\x70\x2a\xad\x28\x9d\xd3\xac\x37\x6b\x6a\x02\x7a\x0b\xad\x3d\x3a\xe6\x2a\xa9\xb5\x5c\x61\xa3\x67\x9a\x5d\xeb\x61\xb3\x0d\xd3\xba\xd8\x4c\x04\x1a\x5f\xb1\x39\xb4\x64\x12\xa0\x6d\x65\x63\x1c\xf0\x1e\x68\x90\x66\x1d\x15\x19\x04\xd4\x6f\x63\x75\xf1\xb0\x01\x50\xb7\x85\x55\xf3\x5c\x3d\x40\x7d\xcc\xd4\x01\xd7\xfe\x04\xd4\x32\xa7\x0c\xf9\xfd\x26\xa0\x52\x34\xd9\x5b\xe1\x57\xed\xa5\x13\x36\x29\x6c\x2d\xa5\x31\x4b\x25\xbe\x41\xec\xc7\x76\x70\x21\x5b\x63\x6b\xb2\xd3\x07\x90\xee\x7d\x41\x2a\xc7\x79\x8e\x33\xeb\xc1\xa4\x3f\xe8\x41\xfe\x24\x7a\xb1\xfe\xcd\xee\x8f\x83\x88\x07\xb6\xe3\xc3\x08\xba\x6f\x0e\x9d\x3d\x86\xbe\x17\xe8\x3f\x9e\x76\x1a\x9e\xd9\xe6\xb4\x03\x5d\xfa\x65\x32\x65\xda\xf9\x51\x53\x89\x71\x3c\xab\x84\xbb\x90\x5b\xf4\x9a\x49\xf3\x65\x70\x8c\x1d\xcd\xab\x6e\xe3\xed\x69\x85\x6a\xd4\x7c\xfe\x28\x25\x5b\xa0\xfe\xde\xf9\x8b\x5b\xc5\x03\xea\xed\xe7\x87\xf5\x9f\x01\x28\xef\x9b\x1f\x6e\xf1\x09\xc0\xe1\xf9\xbe\x0b\x88\x71\x35\xbf\x81\x0f\x29\x3f\xcf\x9b\xc6\x08\xf1\xdc\x91\x09\x74\x0f\xef\xd0\x3f\x9b\x18\x2b\xf6\x2f\xaf\xd2\x88\xcf\x59\xf2\x84\x22\xd6\x2e\xf5\x1f\x8a\xe4\xe9\xa2\x9f\xfb\x54\x81\xf7\x4e\x14\x9f\xcd\x76\xb2\x1d\x2d\xf4\x31\x46\xde\x54\xd8\xac\x57\x9d\xf2\x38\xfe\x7b\x13\x4a\x94\x90\xcc\xfc\x9f\xd8\xd3\xc3\x69\xa7\x18\x71\x65\x1c\xc5\x77\x68\xe5\x04\x52\xa3\x08\x74\x9f\x4c\xb7\xa4\x5e\x85\xd6\xa2\xff\xc3\x0c\xca\x83\x0b\x4f\xdb\x76\x23\xff\x03\x66\x53\xfc\x4c\x59\xc0\x7d\x64\x46\x7a\xcf\xa7\x75\xa3\x0f\x1c\x29\xde\xda\x36\x5f\x42\x2b\xad\xda\x0b\xb7\x16\x3c\x23\x97\x99\x37\x21\xdc\xc5\xed\x55\x2f\xba\x87\x75\x0b\x1f\x4f\x6b\xb7\x9b\x34\x97\xf6\xae\x6e\x9d\x57\x93\xce\xc7\x52\xdd\x50\x3a\xeb\xb8\x96\xef\x23\x9c\xca\xd5\xf5\x04\x21\xa4\x4b\xf4\x2f\x11\x92\xb6\xa4\xe9\x23\xda\x0b\x2e\xee\xf5\x17\xad\x58\x0b\x84\xce\xc3\x1c\xd1\xff\x64\x66\x7b\xb6\xd6\x42\x17\x63\x8a\xd0\xbb\xb7\xcc\x50\xd8\x74\x5d\xa3\x0d\x9c\xff\x46\x10\xca\x18\xaf\xc4\xd5\xf6\x3b\x0b\xcc\x29\xee\xe5\x3e\x50\x41\x33\xa6\xd1\xba\xe8\x5b\x69\x47\xa3\xef\x6e\x35\x87\x6e\xd9\x17\x25\xcc\xa7\x5b\x63\x87\x34\x47\xca\x17\xd6\x3a\x4e\x94\x2f\xcc\xae\x3b\x53\x3c\x99\x26\x2c\x25\xfe\x87\x7e\x87\x65\x14\x0f\x4d\x83\x57\x0a\x5c\xcf\x9b\xde\x32\x6a\x7b\x6f\x6a\x4a\x33\xd1\x5b\x97\xf1\x6e\x6f\x5d\x1e\x79\xef\x29\x73\x08\x49\xf2\xba\xb0\x92\x46\x72\x75\xf2\x26\x8a\xb0\xd5\xab\xe3\xe8\x0d\x78\xba\x64\x9e\xe6\x19\x79\x91\x18\x36\xab\xf2\xee\x91\xf2\xcc\x4a\xa3\x4a\xaa\x20\x77\xf7\x94\xbe\xe3\x37\x00\x0b\x5e\xb3\x75\x10\xba\x29\x76\x16\x6c\x67\xd1\xfd\xf5\xc1\x3d\xc3\x09\x2d\x8f\x95\xcc\x45\x1f\x28\xae\x26\xde\xaa\x6b\x43\xb7\xff\xeb\x75\xb8\x1f\x94\x9f\xd2\x5c\xaa\xd3\x5c\xd9\x6b\x61\x4b\xfa\xf5\x0c\x27\x3a\x51\xcc\x4d\x5a\x42\xf7\xfc\xd3\x82\xb9\x0b\xbf\xa5\xe8\x9f\x33\x22\x76\x15\xcd\xaf\xbe\xbf\x79\x10\xef\xa3\x63\xb6\x37\xed\xcc\x1b\x2e\xf7\x5b\xcd\xe3\x10\x28\x76\xe6\x81\xe1\xbf\x10\xce\x1d\xd8\xd4\xe0\x39\xff\x9d\xdf\x44\x50\xa8\x1d\xd5\xad\x06\x1a\xf3\x2f\x06\x46\x6e\xa0\x88\x5c\x77\x3a\x86\xfc\x5e\x9b\x92\x46\x4c\xa6\x80\x17\x05\x54\x59\xea\xaf\x7f\x9b\x98\x04\xfe\x06\x2f\xaa\xf1\x1c\x3c\x04\x5f\x6a\x99\xd0\x41\x71\x11\x3c\xa1\x45\x02\xff\x5f\x48\x36\xbe\x7c\xe2\x65\xe1\x3f\x8d\xc3\xd6\x12\x3b\xc2\x19\xd6\x3b\x3b\xd0\xa8\xaf\xd1\x58\x40\x79\xde\xa3\x74\x31\xc5\xbb\xcb\x6b\x17\x8a\x93\x05\xa6\x4b\xa9\xca\xd6\x6e\xdd\x0a\xca\x13\x56\x67\x3d\xe9\x71\xc7\x5e\xf1\xa2\xb7\x38\x58\xc9\x87\xc6\xc9\xa0\x09\xeb\x67\xb4\x6e\x1f\x48\x6f\x53\x7d\xe1\x26\xb1\x43\x0d\x15\x7d\x0f\xb6\x14\xfc\x42\x71\x1c\x6a\x6b\x40\x23\x1c\xb2\x71\x14\xd5\x32\x84\x3a\xb3\x42\x4d\xc8\x69\x1e\xe1\xd0\x26\x81\x54\x0c\x12\xda\x8a\x3b\xcd\x6c\x99\x97\x4c\x88\xe4\xe6\x1e\xa7\x09\xe8\xd8\x74\xf1\x3a\xd5\x08\x6c\x4a\xff\x9d\x32\x58\xb0\xb9\x44\x6f\x48\xe6\x7f\xf8\x88\xf9\xe1\x29\x7a\xe9\x89\x7e\x4a\x58\xf6\x49\x61\x77\xfd\x3d\x93\x9e\x47\xd6\x01\xda\x98\xb1\xf0\x05\x8f\x2a\xab\xd4\x78\x6a\xb8\x52\x1c\x2c\xed\xe3\x4e\x3c\x27\xa7\x08\x0f\x8a\x9f\xd9\xe9\x9e\x34\x4f\xa6\x39\xf8\x52\x9d\xae\xc5\x6b\x7f\xda\x27\x8d\xc8\x5b\x4b\xf9\xc6\x68\x04\xf7\x15\xe9\x7a\x28\x98\xf0\xee\x66\x75\xb6\x10\x1e\xa6\xac\x15\x2e\x3a\xf8\xed\x0c\x15\xd6\x8d\x57\xe8\x5d\xcd\x98\xb1\x16\x39\x7b\x24\xeb\xc5\x4c\xe3\x4c\xbb\xd3\x69\xc9\x25\xb6\xac\xf3\xbf\xd3\x29\x92\xf0\xab\xc8\xc7\x07\x69\xef\x1f\x59\x3f\x87\x10\xb8\x88\x0a\xc6\xbb\x23\xfc\x9e\xd2\x8c\x8b\x28\xfe\x97\x14\xd2\x64\x5e\x4c\xb0\xe0\xc5\xac\x13\xf1\xe0\x27\xea\x7b\xbd\x2d\x15\x36\x5c\x9a\x4f\xfb\xa1\xcd\xf6\x4b\x32\x39\xca\x5c\x89\x95\xe1\xd5\x72\x39\x7d\x5e\xae\xef\x41\x79\xc3\xd9\xde\x9b\x58\x09\x0e\x69\x6b\x88\x07\x35\xeb\x26\xf7\x85\x9a\x1c\xb7\x8e\xfc\x1d\x9f\xcb\x3c\x98\x21\xe9\xcc\x8f\xe8\x6d\xc8\xbc\x90\x8e\x26\xdb\xe8\xa4\xd1\xd8\x60\x7b\x3a\xfb\xbd\x4b\xc4\x41\xbc\x36\x48\x69\x24\x7e\x55\x13\x66\x26\xb9\x76\xa7\x33\x4e\x5c\x1a\x33\x51\xe3\x1e\x5b\xa7\xf1\x67\x66\xa2\xc5\xfb\xaf\xa1\xcc\x1b\x3f\x29\x9c\xe6\xcb\x5e\xa3\x44\xf2\x3b\xae\xd7\x49\x7a\xc2\x58\x73\xbe\x0b\x89\x9d\xfd\x2b\xe9\x06\xc4\x6e\xfc\x93\x98\xa0\x51\x7f\xb1\xbf\xdb\xd2\xb9\xce\xbb\x8a\x17\x93\xc0\x76\x3d\xad\xa3\x21\x06\x4b\x2a\xbe\x9f\x85\xbe\xc7\x56\xd1\x38\xac\x8c\xf7\x22\x9c\xd7\xa5\xd0\x8f\xa2\xce\x31\x3a\x90\x14\xf8\xe6\x28\xad\xa7\x79\x34\x4d\x9b\xab\xac\xcd\xcb\xb8\x6f\xd0\x48\xb7\x70\x3a\x79\xc9\xba\x38\x06\x9d\x22\x29\x6a\xdb\x7a\x31\x0a\xa9\x15\x13\x2b\x4e\x30\xfb\xc5\x8d\x67\xd2\x44\x56\xb4\x4b\x2c\x6c\x42\xff\x47\x92\xae\x3e\x8d\x70\xe2\xef\x43\x69\xfd\x48\x2a\xe1\x99\x9a\xe4\xc2\x9d\xda\x92\x5c\xb8\xde\x3f\xc9\x63\xab\x13\x7f\x7f\x2f\x33\xdc\x9c\x8f\xd2\xbf\x70\x40\x2a\xea\xa4\xb0\x09\x07\xf8\x8c\x7c\xa0\xd9\x0b\x52\x74\x90\x79\x0e\xb1\x02\xd7\xac\xe2\xc5\x88\x79\x12\x46\x3c\x00\xb9\x1f\x98\xbf\x01\xab\xf2\x78\x14\xf8\xd1\xec\x5a\xde\x33\x88\xd6\xc3\xc5\x6a\x1b\x69\x95\xaa\xd2\xc3\x39\xca\xef\x79\xea\xf4\x6d\xb4\x8e\x8c\xbb\xba\x83\x78\x20\x43\x2f\x30\xda\xd8\xef\x63\x34\x8d\xba\xfe\xd0\x58\xb2\x2d\xb7\xec\xa5\xb7\x58\xdf\xfe\x80\x60\xf2\x27\x0b\xc5\xdf\xf4\x78\xd0\x2f\xa4\x97\x34\xa5\xf1\x48\xd7\xd5\xa7\x91\xcd\x18\x3b\x84\x99\xcc\xc5\x53\x09\x9f\x4d\xdf\xc2\x1d\xfa\xd2\xa7\x7a\x52\x24\x65\x4c\x0c\xa1\x15\x2b\x63\x6d\x3c\xad\x48\xe9\x2b\x32\xe8\x6c\x98\xbe\xb0\x90\x90\xd6\x54\xf5\x5b\xc6\xfc\xf7\x4a\x7a\xb2\xe4\x72\xc6\xb9\x65\xfe\xc7\x7f\x78\x31\xc4\xc7\x0f\x78\xcc\x7c\xc6\xd5\x0b\xd6\x12\xee\xba\xbc\x78\x3d\xdd\x30\xb8\xe8\x6c\x26\x1e\xd8\x82\x51\x61\x74\x7e\x98\x8d\x6d\x94\x2f\xa7\x15\xec\xa4\xf9\x60\xa9\xcb\x7c\xaf\x31\x3a\xcc\x8f\x30\x39\x19\x4f\x51\xde\x77\xc6\x7e\xe2\x67\x77\xda\x9d\x48\xd9\xbb\xc5\x5e\xd6\x13\xd0\xc8\x4c\xd5\x61\xff\x33\x05\x5f\xee\xa4\xb8\xf9\xcc\xea\xd8\x98\x18\x53\x27\xdd\xba\xd1\x09\xed\xa4\x96\x29\xad\xa3\x27\x9f\x4c\xa2\x95\x2a\xeb\x12\xf3\x28\xb3\x1c\x99\x89\x79\xb2\x90\xf5\x72\xb2\x46\xc4\x30\x03\x3e\x32\x8d\xe6\x47\x56\x58\x01\x2b\x82\x6d\x2c\xa5\x37\x72\xfc\x29\xf3\x83\x8e\x87\x7d\xa6\xf1\x4b\x17\x71\x70\x48\xf0\xa5\xe4\x71\xe1\xfe\x52\x32\x0f\xc8\x43\x7b\x33\xbd\x85\xa5\xff\x6e\xa5\xb7\xe4\xf4\x64\x1b\xdd\x34\xc9\x3c\xa0\x59\xcd\xa3\x88\x85\x31\xf5\x49\x2c\xbd\x85\xf1\xe9\xac\x03\x34\xda\x88\xfb\x06\xc9\xba\x38\x86\x05\xdc\x1f\xab\x83\x36\xdf\x48\x34\xd5\x49\x27\xf4\x5e\xed\xcd\x51\xc1\x0f\x93\xfb\x45\xe5\x5a\x71\x7e\xc8\x4d\x6e\x4c\x11\x92\x7f\xa1\x2b\xc5\x7f\xde\x05\x13\xca\xb8\xf9\xa1\x96\xb4\xe3\xca\xf7\x73\x20\xff\xf2\xb7\x2e\x27\xa6\x52\xfe\x4b\x56\xe6\xca\x4b\x8f\x26\xde\x68\xbe\x41\x0a\xad\xf4\x79\xbe\xb9\xb4\x72\x9d\x79\x5b\x4a\x2b\x54\x5e\x4f\xee\xb8\x71\x66\xc8\x27\x5a\x6f\xb3\xf6\xb2\xdf\xb2\x7e\x4e\x9a\xd0\xd9\x62\xbe\x90\xa7\x31\xc7\xb9\x7b\x59\x04\xfd\x8a\x4b\xff\x9d\xb4\x2a\x2d\x74\x8e\xa1\xfd\xdf\x9c\x9e\x1c\xdf\xd3\x0a\xd8\xef\x49\x9f\x0e\xd0\x2e\x65\x3c\x58\x37\x63\x58\x73\xee\x4a\x62\x54\x2f\x9d\x7e\xa7\xbb\x77\x3a\x3d\x45\xdb\x0a\xe6\x09\x34\xb6\xe7\xf7\xae\xba\x2d\x5b\x54\x74\x9d\x35\x65\x2b\xf3\x41\x2e\x94\xe8\x10\x23\xe4\x82\x5f\xe7\x36\xfc\xf7\x41\xcc\x6b\xe9\xc8\xcc\xde\xf3\x75\x79\xc7\x76\x71\xb7\x3b\x65\xf4\x0b\xeb\x02\xe9\xee\xeb\x62\x10\xf3\xe6\x64\x9d\x98\x0b\xba\xd9\xf4\xe4\xe7\xdf\x94\xd0\xfc\xba\xa0\xf7\x84\x78\x41\x45\x6f\x3e\x12\xcf\xa4\x40\x9c\x2b\xaa\xfa\x04\x09\x3e\x04\xf3\x85\xfe\x17\x0f\x68\x96\x2e\xcf\x6b\x2b\x83\x24\xca\x62\x16\x09\x87\xa9\x0f\xeb\x58\x2b\xe6\x01\xc9\xba\x38\xfd\x1b\x30\xff\xa9\x7b\x4a\x16\xcd\x4a\x3d\xc1\x03\x6a\xac\x94\x47\x6f\x5b\xf5\x71\x61\x0d\x3e\xd0\x65\x11\x1f\x57\xc2\xb9\x4f\xd0\x95\x57\x1d\x29\xb2\x4a\x1a\x0c\xa0\x3c\x78\xb5\xd2\x8c\x22\xeb\xaa\x3d\x33\x5c\xaf\x3a\xbb\xd2\xcc\xba\x9a\xe8\x4f\xfc\xb8\xd2\x32\x66\xea\x95\xea\x25\xd0\x13\x5c\x6d\x7d\x92\x66\xf4\xd5\xa2\x2b\xf4\xc4\x57\xb6\xdf\xa7\xf3\x47\x49\xd8\x3b\x8a\x87\xcb\xb5\xd8\xef\x73\x82\x37\x59\xbd\x7f\x92\xdc\x17\x6c\xf1\xa1\x38\xba\x99\x5f\xf0\x6b\x02\xe5\x05\xbb\xcb\xac\x8b\x33\xa3\x79\x0a\xed\x03\xa7\xae\x4a\xa7\x68\x35\x4b\x13\xba\x38\xbb\x8f\x71\x3f\x9c\x97\x1c\xe7\x7d\xba\x9f\xa2\xef\x77\x4b\xcb\xa3\xfd\x46\x6b\xbf\xb3\x94\xfd\x1a\x59\x14\xd1\x2e\x59\xb5\x75\xb1\xc8\x0b\x25\xa2\xf2\xe7\x86\x18\x87\xdb\xe6\x5a\xb4\xd3\xbe\xd5\xae\x3d\xfd\x4b\x37\x2b\xfa\x53\xe4\xdd\xa9\x1c\x47\x27\x96\x3b\x17\x66\xd2\x8e\xec\xee\x32\xde\x47\xdc\xb2\x63\xe8\xe4\x5e\xef\xed\x74\x72\xbd\x5d\xce\xca\x4d\xb7\x46\x1c\x63\x5d\x98\x07\xe7\x88\x67\x77\x53\xef\x2e\x31\x6f\x6e\x36\x78\x41\x27\xe2\x6b\x89\x9f\x69\x07\x53\x5d\x0f\x45\x1e\x17\xe9\x7f\xf0\x1f\xfe\x2e\x05\x3a\x5c\xe3\xfa\xad\xce\xce\xc0\xef\x45\xcc\x7f\xa8\xc2\xfb\x0b\x81\xde\x09\x0a\x6f\x80\x01\x6a\x40\x59\x08\x30\x24\x87\xfb\x1a\x98\x59\x70\x9d\xff\x14\xc5\x6c\xa8\xc7\x75\xdd\xb9\x8f\x19\xf7\x3f\x55\x02\x2c\xf2\x03\xb2\x97\x00\xcb\xb3\x80\x13\x21\x80\x4f\x02\x70\xb2\x25\xb0\x69\x01\x70\xcc\x80\x31\x8b\x93\x4b\xb9\xe6\xef\x64\x2f\xc6\x02\xb2\x5e\x31\x07\xe4\x54\x36\x50\x6a\x02\xe4\x4c\x06\x1e\x86\x70\x8d\xeb\x87\x32\x20\xeb\x03\x20\x99\xfe\x40\xff\x40\xf5\x27\xfc\x87\x7f\xbf\xe1\x38\x35\xf5\x2f\x5a\xd7\xe2\x5e\x2b\x2d\xf2\xbe\xf1\x1e\x5e\x1b\x00\x7a\xe5\xc0\x73\x6f\xa0\x5d\x36\xf0\xa8\x37\xa0\x3f\x81\xef\xb3\x14\xe7\xa3\x9b\x7a\x40\xbf\x4a\xe6\xa8\x0c\xa1\xbe\xce\xc0\xe8\x61\x40\x7e\x39\x30\x21\x1d\xc8\xaf\x04\xa6\xc5\x03\xa7\x5c\x80\xd9\x96\x02\xf7\xbf\xc6\x75\x8e\x8a\xe9\x90\x99\xc4\x3a\x10\x47\x5a\x02\x1b\x74\x19\x07\xde\x9e\x05\x64\x56\x02\x7b\xbc\x80\xa3\xf5\x81\xd4\xb1\xdf\xea\xfe\x33\x53\x78\x8c\x15\xd9\xa7\x3c\x11\xc8\x6a\x02\xbc\x4d\x62\x8e\x84\x24\xf4\xef\x15\x36\x31\xee\x27\xf8\xff\x0f\xf8\x0f\x3f\xd2\xbf\x90\x79\x0f\xef\x4c\x81\x5f\xf6\x7c\xeb\xef\x20\xeb\x1c\x3c\xbc\xca\xfc\x87\xbb\xcb\x98\x27\x74\xcd\x9c\xf5\xca\x2f\x07\x03\x46\x77\xbf\xd5\xf9\xe7\x57\x30\xff\x41\xf1\xfe\x15\x71\x91\xfd\x06\xb0\x6d\x03\x1c\x37\x67\x5c\x33\xd3\x90\xb1\xb5\x0c\x6d\xc0\x2b\x0f\x48\x0e\x00\xd6\x3d\x01\x92\xed\x81\xb0\x76\xc0\x61\x3d\x20\xc6\xf4\x5b\xdd\x7f\x66\x3c\xf7\xfb\x57\xcc\xce\x12\x27\xe0\xa8\x36\x8f\xc3\x51\x73\xe0\xdd\x67\x20\xa3\x06\x0f\xe8\xa7\xfc\x07\x99\x07\x60\xfe\x5f\xfe\xc3\xf7\x3c\x88\x4f\xb9\xdc\x9f\xbf\xb2\x05\xa0\xa5\x0b\xbc\xd0\xf9\xc6\x7b\x68\x72\x0d\x78\x50\xc9\xf5\xdb\x37\x37\x02\x1d\xc3\x81\x6b\xf9\x80\x81\xe9\x37\xbd\x83\x73\x46\x80\x49\x09\x90\xaf\x0f\x8c\xbd\x06\xe4\x7c\x06\x2c\x4b\x80\x93\x9d\x80\x99\xb7\x81\xcc\x2f\xc0\xbc\x32\x20\xb9\x36\xe0\x3c\x1d\x48\xba\xc5\xb5\xd7\x87\x44\x6d\x76\x62\x1a\x10\xda\x12\x48\xc8\x61\x0c\xe8\x50\x7d\xe0\xf0\x30\xae\x0f\x3f\x1d\xc3\xbb\xb1\xcb\x8e\x40\xda\x58\xe0\xd7\x0d\x40\xea\x7e\xe0\x6d\xe5\x77\x3c\x98\x0b\x3f\xf1\x5f\xd4\x6d\x86\xa8\xfc\x9c\xff\xa0\xb0\x9f\x5f\x03\x1a\xa6\xc0\xa7\xe1\x40\x5d\x3d\xa0\x72\x38\xd7\x27\x3f\xd7\x65\x5b\xc5\x7b\x50\x07\x9a\x1e\xe5\x79\xa0\xe7\x08\x5c\xa9\x00\x3a\x96\x03\xe7\xdb\x01\x06\xc6\x40\xfe\x3a\x60\xe0\x55\xe0\xd4\x4b\x60\xd8\x2e\xe0\x84\x15\x30\xde\x8b\x75\x1c\xac\x7c\x80\xe4\x5a\xc0\xec\xdd\x40\xd2\x50\xc0\x69\x3f\x90\x60\x06\xac\xe8\x0e\xec\xdf\x00\xf8\xc5\x03\xfb\xce\x02\x21\x95\xc0\xfe\x60\xae\x81\x3e\xf0\x2f\x70\xf8\x01\x90\x78\x95\xb9\x24\x07\x6f\x03\x25\x03\x80\xa4\x15\x7c\xd7\x7e\xc8\x1c\x78\xbf\x0b\x48\x54\xad\x8e\xff\xff\xa7\x0f\x86\x66\x75\xff\xd7\xae\xfb\x8e\xff\xf0\x1d\xff\x43\xee\xf3\x21\xe3\xfd\x8a\xbc\x50\xcb\x17\xf8\xed\x12\xa0\xfc\x82\x75\x90\x54\x5b\x03\xb7\x7a\x00\x5a\x09\x40\xe9\x03\xe0\x97\x16\xcc\x59\x6a\x33\x93\x75\x4f\xba\x95\xb1\x56\x43\x1f\xc5\xee\x25\x1c\x30\x4d\x02\xd2\x83\x81\x31\x5a\x40\x8a\x19\x30\xb9\x3e\x70\x48\x07\xb0\x8d\xf8\x0e\xf7\xbf\xa3\x38\x01\x03\xf1\x99\x80\x9f\x12\xb0\x27\x0b\xd8\xa2\x07\xec\xd1\x04\xa2\xcd\x18\xe3\x54\xbc\x6b\xc5\x2e\x26\xeb\x2d\xf3\x25\xae\xce\x06\xf6\xd5\x03\xca\xcf\x2b\x4e\x13\xc0\x9f\x2b\x81\x78\x81\x57\xed\xba\x51\xdd\xff\xff\xe8\x20\xfc\x88\xff\xe0\xfc\x73\xde\xc3\x73\x71\x5b\x20\xf3\x1e\x48\x0b\x36\x9d\xe3\x40\x65\x13\xf3\xc0\x14\xf3\xa7\x48\x9f\xfb\x3c\xe4\x6b\x02\xed\x4d\xbf\xd3\x3b\x38\x02\x0c\xd0\x64\x1f\x86\x55\x00\x09\x8b\x98\x37\xb6\x3f\x5e\x71\x56\x01\xf6\xda\x33\xee\x1f\xfb\x07\xe0\x16\x03\xec\x2e\x05\x14\xeb\xe2\xee\x4e\xc0\xe6\x5b\x40\xb4\x2d\xb0\xab\x1c\x88\xf1\x03\x0e\xed\x05\x62\x1e\x72\xaf\x98\x38\x45\x7e\x48\x06\xe2\x7c\x80\x47\xf6\x8a\x53\x27\xf0\x31\x05\x88\x76\xfd\xb1\xff\x35\x75\x10\x56\x0b\x9c\xd3\xa3\x95\x18\x87\x79\xec\x9f\x3c\x0e\x35\x79\x0f\xbf\x8b\xdb\x82\x9f\xf1\x1e\x2e\x86\x00\xaa\x9f\x59\xd7\x47\x6b\x11\x90\xe3\x0a\xb4\x38\xc9\xa7\x08\xd2\x3b\x38\x03\xf4\x2a\xe5\x3e\x0f\x26\xba\x9c\xb7\xc6\xea\x02\xb1\xfb\x80\xa9\x37\x80\x18\x4f\xc0\x61\x20\xb0\x73\x3a\xb0\x64\x03\xb0\x33\x98\xb1\xdb\xc8\x34\x5e\x3f\x77\xd8\x01\x3b\xff\x04\x22\x95\x80\x83\x95\xc0\xce\x78\x20\xe7\x1a\x7f\x4f\x31\x0e\x8a\x3d\xe5\x93\xba\xdf\x74\x20\x6a\xfa\x5f\x93\xff\x21\xfb\xbd\xdc\xb7\x06\xff\x21\xb4\x46\x1c\xc8\x78\xe7\x7d\xb6\x32\xef\xa1\x66\xbf\x0f\x99\xf7\x50\xb8\x81\xf9\x13\xa7\x7b\x02\x6a\x12\xf7\x7b\xd0\x01\xe7\x01\xdd\xaf\xc0\x41\x03\xa0\x9b\x23\xb0\x6f\x38\x60\xb4\x9d\x79\x0f\x23\xe6\xb0\x1f\x96\xba\xc0\x0e\x1f\xc0\xee\x05\xb0\xcd\x17\x70\xd6\x03\xb6\xf7\x64\xec\x3a\xdc\x16\x08\x4e\x02\xc2\x7a\x03\xbb\x86\x00\xe1\x33\x81\xe4\xd6\x40\xd8\x7d\x20\x67\x25\x6b\x2b\x95\x2a\xfc\xbe\x01\x3c\xf5\x62\x0e\xd1\x97\xe8\xff\xea\x40\xc8\x38\x78\x4d\xbf\x6b\xea\x40\xfc\x54\xf7\x63\x77\x8d\x38\xf8\xbb\x46\x1c\x88\x71\xa9\xc2\xfd\x05\x3f\x20\x63\x0f\x50\x37\x09\x38\xb8\x1f\x68\x1c\x04\xec\x9b\x07\xb4\x8d\x62\xbe\x8b\x62\x5d\x8d\xf2\x06\x86\xd8\xb0\xce\xc3\x04\x5f\x20\xe4\x0f\x60\x7a\x38\x10\xa2\x0d\x38\xa6\x03\x9b\x94\x81\x55\xb3\x80\x4d\x79\xbc\x8f\xd8\xf0\x16\x88\x9c\x07\x04\x47\x02\x07\x15\x73\x45\x9b\x73\x4f\xf0\x73\xa0\xc4\x1d\x58\x3f\x1f\x78\xd4\x1c\xd8\x38\x0c\xf8\x3a\xf4\x1b\xff\x65\x95\xf0\xd7\xcd\xb9\xba\xdf\x8e\xc3\x6b\xf0\x01\x12\xd8\x7e\x78\x52\x3d\x0e\x64\xdd\x0f\x59\xf7\x42\xd6\xfd\xa8\x8a\x03\x51\x4d\x73\xb6\x2d\xdb\x33\xa3\xd9\x1e\x4d\x61\x7b\x48\x9c\xae\xf7\xd9\x03\x75\x7b\x71\xcf\xc0\xe6\x91\xc0\x0e\x65\xde\x87\x86\x27\x00\x03\x9b\xb2\xbe\x85\x62\x7e\x04\xb5\x04\xa6\xf4\x02\xd6\x1e\x64\xbc\x7b\xdd\x45\x60\xa5\xe2\x73\x3d\x20\x68\x37\xe0\x77\x0b\xd8\xf1\x02\xf0\x2b\x07\x0e\xc5\xb2\xde\x45\xf6\x14\x60\x4d\x1d\xe0\x72\x00\xe0\x67\x09\x3c\xe9\x05\xf8\xf6\x02\xfe\x05\xb0\x32\xa4\x3a\xff\xc3\x49\xf0\xe4\xe6\x8a\x7d\xa5\x5d\x5a\x75\x3e\x80\xcc\x83\xa8\x89\xfb\x3f\x8b\x64\x7b\x5f\xf4\x45\xb9\xd5\xab\x7a\x1c\x5c\x98\x2d\xe2\x40\xe8\x43\xc8\xb7\x08\x69\xa2\x1f\x4c\x92\xc0\xbf\x63\xc5\xf8\xed\x08\x03\xb4\x4a\x80\xd0\x22\x40\x71\x9c\x0c\x9e\x04\x18\x2e\x06\xd6\xef\x03\x46\x8c\x00\xfc\xf5\x80\x49\x2d\x78\x2f\x39\xc7\x11\xf0\xda\x05\x2c\xbb\x0c\x78\xb9\x72\x6e\xf7\x58\x09\xec\xd8\x0c\x78\x84\xb3\x66\xd0\xca\x1c\x20\x67\x02\xb0\x22\x15\xb8\xf2\x8e\xe3\xfd\xd1\x7a\xc0\xfd\x0a\xf0\x79\x35\xe0\xac\x5d\xe3\x7d\x0b\xbf\xad\x5f\x54\xe7\x3f\x58\xb6\xab\xce\x83\xa8\xe2\xbf\x08\x7e\x87\x8c\x7b\xdf\xde\x22\xfc\x17\x38\x7f\x15\xff\xa1\x36\xdb\x1c\xc1\x07\x38\x2a\x6e\x97\x0e\x8b\x71\xd8\x23\xf0\x62\xae\x4e\x03\x42\x4f\x33\x2f\x66\x63\x10\xf7\x5f\x0b\x48\x05\xba\xac\x04\x7c\xf2\x80\x81\x37\x01\x4f\x07\x60\xfc\x63\x60\x85\x27\x60\xbb\x05\x70\x0f\x01\x5c\xff\x05\xdc\xfc\x81\xb5\x93\x00\x97\x18\x20\x42\x0b\x70\x99\x0d\x24\x45\x03\xce\x3d\x81\xec\xc5\xc0\xa2\x67\xc0\xe5\x0b\x80\x93\x09\xf0\xc8\x00\x98\xdf\x1d\xf8\xb3\x05\x60\x27\x34\x13\xa7\x95\xfd\x98\xf7\x31\xd6\x52\xd8\xff\x8f\xb2\x2f\x8f\xcb\x39\xfd\xde\xbf\x2a\x6b\xf6\x64\x27\x59\xb2\xb7\x59\x2b\x51\x59\x8a\xd2\x66\x09\x6d\x52\x42\x29\x25\xad\xb4\x27\x5a\x48\x45\x51\xa4\x85\x92\xa5\x8d\xec\x4b\xc8\x3e\xc8\x32\x98\x31\x06\x59\xc7\x18\x86\xc1\x2c\x06\xfd\x5e\xef\x73\xee\x77\x29\xe3\xfb\x79\xfd\xfe\xf0\xba\x5f\x4f\xe5\x79\x9e\x73\xbf\xcf\x7d\xee\x73\x9f\xeb\xba\xaf\x23\xe2\xe6\x78\x11\x47\x1b\xf2\x5f\x7e\xdc\xc0\xe3\x2d\xd1\x6d\xfd\x62\x7a\x7d\xfb\x8f\x9c\x10\xf6\x0b\x55\xcd\x62\xc1\x03\x91\xf9\x1f\x9b\x85\xae\x52\x9a\xf8\x7d\x82\xe8\x1f\x13\x15\x01\xb4\x2c\x03\x96\x5b\x02\x3d\x9d\x98\xbf\x24\xe5\x17\x7e\x69\xbc\x3e\x16\x47\x00\x0e\x9f\x01\xcf\xf7\x80\x8f\x3d\xb0\x60\x3c\x10\xed\x0e\xcc\x7b\xc7\xb1\xd3\xb5\x35\xb0\xbd\x2d\xe0\x5c\x01\x1c\xf8\x07\x70\xba\x03\x5c\xcc\x07\x1c\x94\x81\x9f\x93\x00\xfb\x0e\xc0\xdb\x28\x60\x86\xc8\xab\xad\x14\xeb\xdb\x2d\xdb\x6b\x14\xc5\xa3\x81\x58\x3f\xa3\x44\x5e\x2d\xf3\x5f\x6a\xf9\x3f\x0d\xf9\x2f\xc2\x7e\x99\xff\x72\x40\xec\xa3\x32\xff\x65\x87\x58\x2f\x39\x62\xfd\xa4\xc7\xf1\xc8\xb7\xdc\x80\x98\xb6\x5c\x85\x0c\x92\x3e\x27\x16\xf0\xbd\xad\x58\xd5\xf1\x28\xe0\x79\xa3\xf1\xfa\x21\xa1\x80\xfb\x8a\xa6\x11\x26\xbb\x01\x97\x65\xcd\xdb\xd9\x4d\x01\x1c\x8d\x9b\x9f\xf7\x74\x06\x66\x3d\x50\x6e\x12\xde\x18\x98\x91\xa5\xdc\x32\x45\x05\x98\x9a\xa5\xac\xba\xb5\x11\x60\xa3\xd5\xfc\xda\xbe\xb6\x80\xe5\xd3\xe6\x41\xe7\x42\x80\x29\xcd\x9a\x7d\xfa\xf1\x0e\x60\xbe\xbf\x99\xff\xab\x01\x80\x99\x67\x53\xea\x47\x6c\x72\xa6\x11\xe1\xd8\xa3\x7f\x54\xa0\xfa\x8b\xcc\xf7\x18\x26\x78\xd5\x3a\x42\x6f\x4e\x53\x9c\x25\xbe\xe2\xbf\x08\xfb\x2b\x85\xdf\xcb\xfc\x97\xfd\xa3\x41\x55\xa2\x92\x9f\x15\xa8\x6e\x50\xf0\x9b\x12\xe1\x17\x59\x27\x9b\x11\xba\xb2\xfe\x7c\x6b\xaa\x4f\xac\x51\xe1\xfe\x31\xd1\xd5\xed\xe8\x7f\x06\xa5\x72\xe0\xf4\x98\xd5\x81\xea\x96\x73\x9a\x74\x7a\xde\x2a\x01\x98\xf5\xa8\x6b\xf3\x3e\xa5\x58\x3a\xad\x49\xb7\x31\xfa\x79\x0a\x43\x2c\xff\xe8\x96\x61\xdd\x44\xe1\xf8\xa4\x4f\xdd\x3b\xbb\xa5\x29\x2e\x99\xd8\xab\xdb\xeb\xa0\x12\xc5\xa7\x26\x1a\xdd\x9e\x26\x6a\x2b\x4d\x1f\x6b\xd2\x2d\x25\xab\x5a\x29\x72\xf4\x81\x6e\xbd\x4b\xb5\x94\xbc\xf5\x83\xba\x5e\x3c\xf5\x58\x69\xe4\xa8\x5b\x5d\xed\x6e\xde\x53\xdc\x39\x32\xb6\x6b\x9b\x5f\x9b\x2b\x7c\x1c\x7e\xa4\xcb\x87\x9a\x1a\x85\x61\xda\x77\x3a\x92\x9e\xc1\x10\x5b\x95\x41\xd2\x38\xc0\xb4\x35\xf5\xbb\xe8\x33\xbd\x25\xd5\x25\xfb\x58\x36\xa7\xfe\x07\xea\xad\x9a\x6c\x90\xc6\x86\xfc\x97\xb3\x22\x6e\x56\x08\xbe\xd7\x7e\xa7\x66\x84\x67\x17\x57\xb7\xa0\xee\x02\xdb\x87\xb0\x5d\x59\x01\xcc\x7f\x49\x39\xd1\x83\xfb\xc0\xe8\xf6\x24\xfc\x32\x92\x4e\xe7\x40\xe0\xf0\xbe\x74\x2f\xda\xa3\xaa\x1f\xe1\x5f\x0e\xaf\x06\x10\x3f\x66\x8a\xe2\x10\x45\xc5\xcd\x80\xa9\x82\xa6\x6d\xd7\x79\x08\x1e\xeb\xa7\x19\xa3\x63\xac\x34\x54\xef\xa5\xe6\x4e\xd3\xd2\x46\x8b\x87\x79\x6b\xe6\x3a\xfc\xd3\x78\x83\x56\xb6\xa6\x86\x6f\x7e\x93\x0d\x83\xd2\x87\x1c\x58\xf1\x53\xd3\xa6\xfd\x17\x0d\x31\xde\x38\xa1\xa9\xa2\x46\xb7\xc1\x19\xbb\xd4\x9a\xdc\xec\xd3\x6f\xb0\xed\xf1\x3e\x4d\x16\xf7\xca\x1a\x74\xeb\x5a\xbf\xc6\x67\xd4\x67\x0c\x3a\xf8\x44\xb9\xd1\xf7\x3d\x73\x07\xe5\xfd\x1b\xa4\xb4\xa1\x47\xb3\xfe\x69\x35\x35\x8a\x93\xbb\xde\xec\xbd\xbe\xa6\x46\xc1\xa8\x63\x8d\xda\x49\xc9\x5e\xd5\x9b\xdd\x88\x2f\xa4\xb2\xb7\x33\xdd\xc7\x69\x37\xb2\xa3\xa6\x34\xca\xfa\x37\xb5\xfc\x9f\x81\xcd\xa8\x2a\x56\x3e\xab\xb5\xc0\x7f\x99\x17\x90\x57\xcd\x7c\x90\x86\xfc\x97\xb8\x2b\x8c\x42\x45\x88\x3e\x22\x01\x18\x4a\x19\x96\x67\x16\x77\x2f\x70\xf4\xe6\x5b\x46\x56\x8f\x0c\xe8\xf6\xdc\x98\x2a\xc6\xd3\x75\x9f\x18\xed\x69\xbb\x16\x18\x74\xd1\xe8\xd7\xfe\xc5\x8a\xbd\x34\xa6\x19\x9b\x19\x99\x2b\xde\x51\xdf\x6a\x3c\xd5\xae\x8b\xe2\xc7\xee\xbf\x1a\x0f\x5f\x74\x5a\x71\x4f\xd7\xbe\xc6\x4d\x23\x1f\x29\x9c\xee\xbc\xd4\xf8\x5a\x5a\x02\xd0\xe1\xb1\xd1\x5f\x85\x8e\x40\xfb\x04\xa3\x7e\x47\x5c\x81\x76\xa7\xc6\x4e\xbc\x12\x00\xb4\x79\x33\x26\xfa\xa1\x01\xd0\x7a\x84\xe1\x0f\x7f\xdd\x07\x94\x6f\xeb\xdd\x90\xec\x6b\x16\x3e\x9c\xee\xf9\x37\xce\xd5\xce\xa1\x71\xd1\x20\xaa\x43\x29\x8d\xeb\xcf\x75\xda\xfd\x7d\xa9\x1f\x46\x2d\xff\xc7\xa2\x15\x79\x40\x99\xb0\x7b\x47\x15\xc3\x2e\xb9\xc1\x2c\xb3\xbc\xe1\x85\x16\xdd\xc7\x4c\x3e\xa3\x43\xaa\xd9\xf1\x6a\x23\xab\xf9\xf9\x1b\xd0\xf3\x0e\x4c\xe0\x8d\xd2\x0b\x8c\x46\xb9\x94\x31\x7e\x6e\x5b\x65\x46\xfa\x08\xe3\x34\x27\x93\xfd\x3a\x39\x96\x14\x81\x7b\xf4\xb6\x51\x6a\x7c\x03\xe8\x14\x62\xdb\xb5\xa7\x1d\xa0\xd2\xd7\x36\x59\xaf\x37\xd0\xaa\xc8\x36\xcd\xfa\x0a\xd0\xfc\xb5\xad\xa2\xfb\xaf\x40\x93\x00\x9b\xdf\x96\x5b\x03\x4a\xce\x36\x51\xc9\x23\x00\x85\x5e\xd6\x15\x5b\xa9\x52\x6a\x55\x7d\x80\x3a\x2c\x58\x5e\xbc\x48\xb8\xe0\x94\xdf\xef\xd1\xcd\x42\x8b\xa7\xef\x9a\x49\xa3\x99\xd0\x65\x1e\x27\xf0\x2b\x43\x67\x1e\xf5\xb7\xf1\x38\xbc\x8c\xc7\xa1\xa4\x8b\x71\x4c\x4d\x25\x8f\xed\xef\x46\xb8\xe4\x2e\xab\xfe\xd9\x6c\xbf\x26\xf9\xf7\xc6\x43\x23\x22\xd8\x7e\x7d\xca\xb8\x56\x9d\x60\x3d\x98\x28\x5f\xd6\x09\x09\x74\x9b\x4c\x28\x83\xb7\x0a\xdf\x2a\x73\xa9\xb2\x22\x1c\x68\x7a\x47\x5b\x9a\xb7\x49\xaa\xd3\x08\x3d\xd0\xf7\x62\x74\xaa\x6f\x8e\x3d\xf1\x49\x5a\x1a\x38\xd3\xfb\x2a\x5c\x9b\xe3\xad\x4a\x76\xcd\xe9\xad\x4d\x7b\xb7\x73\x24\xcf\x98\xd3\x13\x56\xd8\x70\xbe\x14\x4c\x75\x59\xa7\x2a\x46\xd0\x1c\x73\x72\xa8\x8e\xef\xa8\x52\x4e\x75\x7f\xfb\x57\xe7\x08\x51\xb1\x77\xbe\x43\x08\xfa\x6c\xab\x37\x14\xd3\xed\x84\xdd\x36\xa2\x1f\x88\xb9\xd0\x2f\x37\xf5\xaf\x3f\x3f\x63\xe9\x9e\x7b\x79\xa9\x06\xed\x7c\x3b\x4f\x0c\xa1\x0c\x28\x4f\x87\xfd\x39\x43\x89\x6f\x0f\x26\x7b\xf3\x73\x8e\x33\x30\xfb\x83\x9f\xbf\x39\xe9\xc6\x04\xea\xf0\xed\xca\xc5\x3a\x7c\xeb\xd6\x55\x87\xed\x9c\xad\x32\x9b\x32\x12\x2b\x1d\xe6\xc1\x18\x45\xcd\xa1\x1d\x46\x47\xdf\x95\xd0\xe8\xae\x87\xdc\x69\xfe\x14\xe3\x3d\x44\x04\xf6\x7c\xa9\x4a\x8c\x1b\x4f\x5b\x6d\x62\x9e\x78\x7c\x9a\x44\xb8\xb7\xa7\xb9\x33\xe5\x30\x9e\xea\x7c\xdf\xdf\xe3\xaf\x04\xb2\x73\x61\x4e\x16\x7d\xb3\x05\x93\x4b\x28\x62\xcd\x4f\x39\x4d\x88\xe3\x7c\x7f\xe6\x3c\xcf\x9b\xfb\x92\x90\x49\x57\x81\x5b\x39\x89\xfb\x79\x76\xc2\xee\xa9\xe2\x5e\xaf\x95\xe8\x63\x6e\x41\xfa\x31\xbb\x2b\x74\xfe\xe0\xe7\xcf\xfe\x9d\xa9\x3d\x9e\x32\x86\xe4\x46\x13\x89\x17\xb8\xea\xb4\x25\xed\x1c\xd1\x3a\xd3\x29\x82\x06\xa5\x32\x0f\x66\x89\x1a\xab\xf0\xbb\x07\x38\x51\x97\x01\x87\xf8\xb9\x0a\xbc\x0e\xdc\xa8\x9e\x6d\x6a\xb1\x80\x70\x8e\x91\xb7\x18\x95\x1b\xa8\xc6\x65\xea\xf6\xe5\x3e\x22\x43\x17\x42\x75\x08\xd0\x66\x9d\x7f\xff\xa1\xda\x84\x6b\xfa\x97\xb1\xa7\xf9\x3f\x72\xa4\x25\x19\xd0\x6a\x09\xe1\x36\xfe\x76\xb1\x4f\xf9\xf7\x99\xe4\x27\x4b\x77\x14\x91\x2e\x8a\x5f\x3a\xdf\xa0\xf4\x8b\xfc\x9e\x3e\xd9\xd7\xe8\x29\x9d\x8d\x7c\xa7\x7e\x26\x3c\xd8\x43\xf8\x43\xc3\x79\xb1\xf7\xf9\x72\x7e\xb6\xf5\x1c\x47\xa8\x79\x46\xe2\x44\x8a\x94\xeb\x34\xa7\xdc\xe7\xf5\xcf\x17\x2e\xa2\xab\x67\x53\x06\x11\x32\xcc\x99\x4e\xdc\x7e\xea\x73\xe9\xf7\x0b\x0a\xdc\x57\x90\xd7\x66\xb1\x9d\xd3\xa2\x3c\x88\x3f\x66\xd1\xca\x8b\xd4\xf6\x8d\xec\x7c\x89\x47\xa1\x6b\xcb\x3a\x29\xbd\x9a\x07\xd0\xff\x6b\xb1\x74\x99\x38\xe9\x87\x0b\xdc\x37\x3c\x8b\xe7\x21\xac\x4a\x93\xbe\x49\xd8\x9d\x09\xf4\x89\xe1\x57\xf9\xbe\x7f\xf8\x55\x1f\xc2\xa5\xc2\x6b\x56\xd0\x99\x27\x3c\x72\x03\xe5\x2a\x61\x37\x0a\x29\x97\x0d\xb3\x3d\x46\x19\xca\xf2\xd1\x57\x48\x89\x7e\x99\xe1\x03\xc2\x2d\x42\x54\xfe\x64\xdd\x18\x71\xbf\xdd\x47\xf0\xc4\x3c\x04\x8e\xe3\x2e\x78\x20\x73\x7f\x90\xc6\x2c\xb5\x29\xb4\xea\x52\xd3\xa7\x92\x1f\xac\xd9\x6b\xcf\xaa\x22\xfe\xcc\x73\x0a\x49\xe4\x3e\x41\x4b\x77\x2c\x20\x3c\xca\x43\xf4\x4f\x71\xed\xcd\x3c\x27\x99\x07\x63\x5d\xc4\x4f\x6d\xa2\x46\x00\xcd\xcb\xa8\xd2\x10\xb2\x66\x50\xe4\x72\x8a\x37\xdd\xb2\x59\x57\xa0\xd1\xdc\x68\xb1\x53\xaf\x12\xf3\xb0\xaa\x80\xef\xfb\xaf\x74\xd6\xa2\xef\x1d\xb7\x89\x23\x6d\xdc\xaa\x59\x64\x77\xdc\xd5\x45\xe4\x79\xab\x96\x45\xa8\xb0\x87\xae\x23\xc4\x7c\x55\x51\x3e\x71\x96\x57\x7a\x1e\xa0\x15\x1d\x5b\x79\x91\xfa\x67\xc4\xac\xfd\x69\x2c\x3f\xc1\xdf\x99\xc9\x22\xe2\xa1\xcc\xff\xa8\xd5\x45\xd1\xe4\xd1\x7b\xbc\x34\xa6\xab\xcc\x20\xbc\x32\xa9\xf5\x1c\xb2\x23\x36\x99\xfd\x7b\x99\x21\xf3\x22\xfc\xcb\x3c\x09\x3d\xf1\xf6\xf0\xa6\xd9\x77\xf7\x5b\x4a\x51\xc8\xd1\x99\x75\x42\x66\xb8\x32\x4f\xc0\x7c\xcb\x72\x5a\xe5\x46\xd7\xc3\x89\x37\x31\x2c\x2a\x8a\xe6\xb7\xef\xc9\x15\x14\x4f\xda\x3f\x5c\xc9\x27\xd4\xa3\xab\xc5\x0d\x8f\x14\x4d\x05\x5a\xf7\xc9\xe7\x3a\x51\xa4\x4d\xa9\xd4\xa4\x4f\x48\x51\x19\x47\x7d\x93\x52\xfa\xd8\x51\xc4\x4d\xd9\xeb\x49\x48\x59\x4a\x00\x23\xf2\x29\x36\x29\x14\x1f\x52\x5a\xf3\x59\x26\xf9\x4d\x39\xc5\x85\xa4\xb8\xb3\x84\x5b\xad\x09\xfa\x81\x7e\x9f\xd4\xeb\x37\xda\x01\x12\xa3\x3e\xd3\x13\x5e\xd9\xb8\xa6\x1e\x5f\x68\x99\xc0\xb5\x82\x88\x17\x92\x54\xed\x42\xcf\x39\x36\x91\xfb\x04\x85\xbd\xf1\xa0\x3c\x31\xa8\xb9\x37\xb1\xb0\x16\xa7\xf9\x51\x86\xb9\xc0\xcb\x9f\xa2\xb4\x73\x9f\x10\x42\x87\x66\x79\x85\x93\xca\xbe\xb5\x79\x24\xb1\x93\x4c\xed\x63\x68\xf6\xf5\x23\x62\xe9\x24\xaa\xf5\x84\xd1\x58\xf5\x31\xab\x09\x65\x6a\x93\xb8\x76\x34\xdb\x9f\x26\x4e\x66\x19\x95\x3c\x0f\x19\xc6\x3c\x0f\x99\xaa\xbc\x43\x67\x24\x1b\x97\xf1\xc8\x2b\x73\xe3\x8d\xf9\x94\xa1\x6d\x6c\xc3\x9d\x6b\x32\xb5\xd7\xd0\x8e\xbc\x49\x83\x15\x27\x32\x36\xed\x71\x94\xc6\x0d\xfb\x2b\x49\x3f\x62\x63\x8b\x5b\xb4\x22\x37\xe8\xfd\x42\x67\x86\xf4\x21\x9f\xe9\x73\x52\x04\x6f\x30\xe1\x26\x8f\xf2\xbc\x70\xbf\xa0\xb8\x8b\x0b\x09\x87\x0b\x7f\xc9\xcf\x3b\x78\x2e\xf7\xcb\xf1\xf5\x0e\x24\x2f\x5d\x78\x3c\x84\x3e\xcd\x75\x5b\x38\xf1\x7f\x1c\x02\xa3\xa9\x42\x31\x1d\xab\xe8\x6b\x4f\x36\x5e\x45\x7e\x60\xe2\xc1\x7c\x98\x91\xa7\xd7\x12\x9e\x37\xb0\x2a\x99\x4e\x64\xdd\xbb\xaf\x23\x82\x6e\x8b\x3c\xb9\x4f\xd4\xe6\x46\x3c\xe6\xe9\x2a\xd0\x99\xbd\x96\x0f\xf3\x6c\x30\x31\x67\x72\x87\xf1\x0e\x95\x3b\x7c\x2a\x45\xa4\xdc\xab\xee\xe4\x41\x5b\xd7\x06\xd3\x8e\x9b\xeb\x92\x40\x71\x32\x37\x82\x15\x29\xf2\x2e\x94\xd2\x27\xe6\x98\x54\x90\xa7\x66\x5b\x55\xd1\x93\xcd\xbe\xfc\x94\xee\xcf\x67\xd7\x70\xad\x29\xf3\x25\xdf\xb9\x91\x79\x31\x6b\xc5\x7e\x91\xb8\x8b\xea\x57\xa2\x1f\x56\x48\x22\xeb\x00\xf9\xcf\x0a\xa5\xbc\xd0\xeb\xd7\x08\x8a\xc6\xee\xc7\x57\x50\xdc\x77\xca\x62\xdd\xa3\x59\xcd\x13\xe8\xdb\x5a\x29\xac\xa6\x75\x61\x6a\xc2\xac\xc6\x31\xb6\xeb\x68\xfe\x74\x17\xa7\xd1\x2e\xd6\xaf\xfb\x06\xf2\x8f\x4e\xf7\x36\x91\xdf\x34\x6b\xbf\xa5\x80\xed\xdf\xe6\xc9\x63\xa1\xb7\x02\xed\xb8\x85\x7f\x77\x24\xcf\xd9\xf1\xf3\x20\xda\x27\x77\x04\x8e\x21\x85\x81\xc2\x12\x5b\xaa\x95\xee\x58\xe6\x4a\x67\xd8\xc2\x0b\x01\xf4\xf3\x1d\xbd\x56\x52\x8d\x64\x87\x5a\x06\xeb\xc9\xa8\xed\x32\xe6\x91\x91\xe5\xc2\xec\x2a\xda\xe1\x0a\x5e\x72\xbf\x9c\x82\xca\xf7\xc4\x6c\xdd\xd6\x8a\xed\xde\xd2\xbf\xa6\x1e\x2f\x26\x9d\xfc\x21\xec\x1e\xeb\x00\x05\xea\x70\x1c\xf3\x71\x67\x7e\x9b\x87\x1a\xf3\xfa\x5c\xef\x26\xd0\xac\x3a\x34\x4d\xa2\xdd\x7d\xea\x2f\xc9\x14\x47\xcd\xcf\xad\xa7\x13\xea\xb8\xc7\xdc\xdd\x4b\x6f\x6f\x26\x45\x71\x6d\x5d\xde\xdd\xfb\x24\x32\x5b\xa5\xa3\x0e\xaf\xe2\x26\x49\xdb\x45\xa5\x4f\xe6\xc3\x94\x66\x2b\x10\x8f\x49\xe6\xc3\x94\xfe\x32\x68\x01\xbf\x66\xfd\x87\x32\x35\x66\x70\x96\x66\xbb\xea\xf0\xcf\x97\x92\xbd\x65\x9e\xb1\x82\x2f\x93\xce\xba\x30\x6a\x8c\x77\x97\xf9\x1f\xa6\xf5\x53\x3c\xf3\x02\x31\x5a\x4a\xcf\xdd\x27\x7f\x2a\x49\x7d\xab\x8e\x2f\x74\x51\xb6\x0b\x1e\x6d\xde\xad\x9a\x2f\x78\x31\xcb\xce\x44\x53\xa5\xd6\xf7\xce\x0a\x62\xa7\x7a\xa1\x7e\x5f\x2c\xe7\x01\xa9\x84\x7f\xcf\xea\x98\x46\x95\x28\x1b\x83\x0c\x52\xad\x9a\x34\x7b\x13\xed\x93\x63\xef\x31\xff\x49\xd6\xc5\x19\x6c\xcd\x76\xf7\xea\xcc\x27\xf2\xf6\x8d\x76\x50\x05\x53\xb1\x77\x91\xd0\x3b\xf8\x8a\x0f\xe3\x2f\xf8\x30\x15\x03\x28\x63\x3f\xd4\xda\x80\x22\xd1\xa1\x76\x96\x11\xfc\x77\xdc\xe1\xed\xb0\xf1\x92\x2a\x7e\xcd\x91\xe8\xd0\x7c\x66\x62\x1d\x5a\xc2\x1d\x7b\x0e\xbd\x3e\x90\xc2\x3f\xbf\x48\xcc\x84\x03\xfa\x77\x88\x47\x73\x68\xe8\x1f\xb4\x53\xcb\xba\x28\xa5\xcd\x78\xdc\x65\x26\xe6\x85\xf8\xa5\x01\x53\xe2\x89\xad\xe8\xf3\x22\x89\xf2\xe0\x85\xe6\xa9\xc4\x6a\x76\x8d\xe7\xf5\xec\xe8\x9d\x41\xd1\x76\x3a\xd8\x5e\xcb\x48\xe6\x85\x98\xda\x6d\x25\x3f\x18\xbd\xb4\x80\xd4\x8d\x86\x65\xb3\xdd\x83\x87\xee\xa6\x6c\xbf\x87\x1a\xb3\x54\xda\xba\x96\xd2\xc2\x53\xf0\x90\xed\xff\x8a\x0f\x53\xd2\x9e\x98\xfa\x15\x35\xfd\x0b\x78\xe4\x93\xd9\x49\x15\x73\xf2\xc8\x13\x37\x9d\xc8\x9e\x53\xed\x7d\x69\x1f\x3d\x19\xc1\x0a\x65\x27\x9a\xa6\x50\x5e\x75\xaa\x98\x71\xff\x53\xc5\xac\xd0\x71\xa2\xf4\x2c\xed\xb3\x27\x14\x7f\xa4\x7d\xf4\xc4\xa3\xdf\x28\x92\x1f\xff\xf3\x73\x16\xbe\xe0\x7f\xc8\x7d\x82\x4a\xa9\x8f\xf1\x92\x37\x82\x07\x14\x97\x1e\xcf\x7e\xc0\x7c\x18\x17\xaa\x30\x03\xb3\x3d\x73\x28\xfb\x9f\x76\x7d\x1b\x45\x61\xf3\x2d\x05\xe4\x9d\x26\xab\xb8\x12\xa9\x37\x62\x37\xe5\x19\xba\x6a\xdc\x27\xaa\x7f\x76\x39\x55\xe8\xba\x77\x2f\xa7\xfc\xba\xad\xe2\x41\xf6\x83\x13\x47\x44\xa5\x4e\xe6\xc3\x9c\x75\x16\xe3\x3a\x55\xf1\x9a\x95\x2e\xcf\x5a\xe8\xd1\x7e\x70\xf6\xa5\x39\xf9\xf3\x39\x53\x7b\x3a\x3f\x9d\xf7\xf6\xa6\xb8\x7f\x21\x22\x8c\xfa\x46\x5d\xd0\x4c\xa6\x95\x7a\xe1\xe7\x3c\xf2\xb8\x0b\xb6\x7b\x69\x3c\xf7\xfc\x54\x26\xff\xbf\x9b\xf4\x64\xce\x1d\x7b\x46\xf9\x59\xe5\x99\xb7\xb4\x73\x9d\x1c\xc3\x71\xf2\xa8\xe0\x47\x1d\xa2\x7c\xaa\x21\x0f\xc8\x55\x87\xfd\xdb\x51\x75\x1b\xad\x13\x3b\x9d\x42\x8a\x3a\x72\x7f\x2c\xb3\xd7\xbb\x89\x8f\x6e\xec\x56\x4a\xf1\x6f\x54\xea\x5e\x5a\x47\x5a\x76\xfb\xe9\x5b\xf6\x7d\x7d\x88\xf2\xf4\xae\x93\x38\x6a\xb5\x2c\x3a\x9e\x84\xff\xec\x17\x75\xf9\x36\x8f\x57\x74\xb8\x62\x73\x45\xa7\x0f\x79\xd2\x95\x34\x3e\xc9\x5e\x2a\x35\xa5\x0c\xfc\xf2\x2f\xb3\xc9\x43\xaf\xfc\xe5\x41\x3a\x30\x55\x45\x9c\x47\x54\x65\x25\x51\xa4\xae\xf2\xda\x42\xfe\x72\xe5\x65\x09\xe5\x9d\x55\x79\xac\x43\x78\xe5\xf7\x1b\x14\x77\x2e\x45\xdd\x3f\xc3\xef\xf7\x96\xf6\x91\xda\x3e\x41\xed\x78\x3e\x4e\x50\x9f\x98\x9a\x2f\xf8\x0f\x6a\xea\xc0\xc7\xbb\x40\x4f\xe3\xfa\xbc\x07\xb5\xe2\x3a\x9d\x83\x47\x6b\xb8\xfe\x2e\x9d\xed\x06\xbf\x01\x6e\xfe\x03\xe8\x3c\x66\xbd\x0b\xe9\x84\x26\xdf\xf3\x3f\x6b\xc8\xfa\x0f\xb2\xbe\xff\xb1\x2a\x60\xe6\x23\xe0\xd0\x7b\xbe\x43\xb8\xf7\x2d\xb0\xe0\x2d\x50\x7c\x0a\xf0\x9e\x0d\xec\x7e\xcd\x35\xf7\x5d\xb1\x40\x74\x6b\xc6\xed\xa5\xf3\xe5\xae\x24\x20\x63\x0e\x50\xf4\x06\xd8\x5e\xce\xf7\xe1\xa5\x99\x2f\xf5\x05\x4e\x9f\x03\xca\x0f\x02\xb7\x63\x80\xf2\x4a\xe0\xc9\x6b\x60\xdf\x7d\xe0\xaf\x99\x7c\x7f\xb8\xe6\xff\x03\xff\xaf\x11\x3a\x17\x9f\x57\x01\xdd\x86\x00\x1f\xda\x73\x5d\xf9\xcd\x66\xa0\x4b\xe5\xd7\xbc\x87\x07\x5a\x7c\xaf\xff\x07\x6f\xa0\xff\x27\xe0\x66\x15\xf3\x62\x2e\x27\x02\xc3\xac\xb9\xbf\x89\xde\x1d\xa0\xf2\x0f\xc0\xe4\x07\xe0\x68\x2b\x60\xd2\x5d\xee\xef\x30\x43\x11\xd8\xf3\x96\x79\x31\x7b\x96\x03\xee\x17\x19\xe7\x5f\x64\x05\x14\x2e\x03\x02\x6e\x03\x3b\x57\xf0\x3c\x14\x9e\x63\x6c\x6a\x67\x35\xb0\x69\x08\xdb\x53\x60\x08\xec\x7a\xc4\xdc\x87\x5d\x3b\x80\x53\x09\x40\xc9\x07\xe0\x66\x27\xa0\x38\x13\xa8\x5e\x05\x48\xd1\xe8\xef\x74\x60\xe7\x6e\xe0\xf3\x27\x60\x5b\xd0\xff\xcd\xff\x48\x69\xa0\x83\x21\xf3\x3e\x88\xf7\xa0\x06\xbc\x2b\xe5\xbe\x18\xcf\x9f\x00\xed\xad\xbf\xe0\x3d\xa8\x01\x5d\xdf\x00\xb7\xf5\x81\x3e\x2f\x80\xab\xd5\xdc\x3f\xe8\xd2\x2c\xc6\x75\xcf\xb4\x93\xf6\x0e\xa0\x22\x1a\x30\x3c\x02\x1c\x29\x00\x26\x59\x00\xfb\x63\x01\x9b\xd7\x40\x59\x1f\x60\xd6\x2d\xa0\x68\x03\xe0\xfa\x1a\x28\xbc\x0d\x78\xbc\x03\x0a\xee\xf0\xdd\xcc\xfc\x27\xdc\xe7\x7f\xeb\x18\x20\x3e\x84\xf5\xfc\xa5\x4c\x64\xbb\x01\x90\x3f\x96\xe7\x62\x8f\x21\xb0\x53\x9d\xb9\x46\x3b\x83\x81\x1b\xa6\xc0\xee\x63\xc0\x53\x4f\x60\x97\x22\xf0\xb7\x61\x1d\xfe\x9f\xf3\xae\x3e\xfe\x5d\x6b\xff\xf8\xff\x9b\xff\xf0\xae\x02\x68\x61\x01\xbc\x7a\x0d\xb4\x52\x04\xa4\xdc\xb4\x95\x47\x1d\xef\xe1\xc7\x44\xc6\x2f\x6f\xe9\x00\x3d\x5e\x02\x57\x34\x80\xbe\xd9\xc0\xc5\xef\x81\x21\x43\xf9\x19\xe9\x7a\x71\x1f\x13\xe9\x24\x5f\xee\xc4\xfd\x72\xca\x5e\x03\x96\x8a\xc0\xae\x54\x60\xba\x2d\x50\x98\xca\xb8\x7f\x81\x3f\xb0\x30\x17\xc8\x33\x04\x7c\x43\xf8\xee\x6e\x68\x77\x20\x67\x37\x10\xff\x1d\x90\x63\x07\xac\xb7\x03\xf2\x86\x02\x5b\xff\x05\xb6\x0d\xe5\x9d\x57\xfa\x7f\xa7\xdb\x88\xfe\x07\x1f\x81\xed\xea\xc0\xe3\x72\x69\x17\x04\x3e\x1a\x00\x5b\x73\xd9\x26\x59\xff\x45\xb6\x5f\xbe\x07\x5e\xcb\x7f\xb8\xf1\x05\xff\xa1\x05\xf0\x6f\x18\xd0\x68\x73\x1d\xde\xff\x52\x13\x50\xb8\x5c\xc7\xff\x90\x79\x0f\xb7\x12\x80\x36\x7a\xc0\x0d\x23\xa0\xc3\x12\xc6\x39\x7b\xa8\x31\xef\xa1\x6f\x35\x70\x72\x25\xa0\xf5\x9a\x79\x4a\xd2\x3a\xd9\x5b\x0d\x18\xaf\x03\x76\xed\x01\xcc\x8c\x80\xed\xe7\xb8\xaf\xbf\xf4\xfd\x9d\xd4\xf8\x0e\xfb\xfc\x6e\x40\xf6\x30\xc0\xe7\x15\xb0\x25\x9f\xb1\x2d\x29\x67\x96\x32\xf6\x4d\x47\x81\xf5\x4d\x59\x3b\x28\xbf\x12\xc8\xf5\x00\xf6\x5f\x67\xdc\x5f\x8a\xbc\x79\x4f\x80\x5b\x3f\xf3\xef\x1f\xbf\xe6\x9f\xff\x7d\xac\x0e\xff\x6f\x68\xff\xb7\x74\x10\xa4\x35\xa4\xd0\xaa\xae\xcf\x47\x43\xde\xc3\xc3\x9f\x01\xec\xab\xd3\x7b\xb8\x55\x04\x34\xd9\xce\x9c\x1c\xe9\xe0\x70\xc6\x8b\x75\x30\x4e\x46\x00\x6a\x63\x99\xff\xa5\xb1\x1a\x28\xbf\x02\xe8\xfa\x00\xbb\x4f\x00\x7a\x6d\x81\x42\x4b\xc0\xe4\x1d\xc7\x2b\x4b\x0f\x60\xcb\x55\xc0\xae\x04\x90\x76\x29\xb7\x5c\x60\xe3\x11\xc6\xe4\x32\x7e\x07\x42\x84\xee\x7f\xec\x53\x20\xa3\x09\xb0\xbe\x35\x90\xe1\xc6\xbd\x21\x64\xfd\x03\x29\x9b\xa9\xb4\x67\xbb\x7f\x3c\x05\x64\x6d\x06\x9e\xdb\x7c\xd1\x07\xa2\x81\xfd\xb5\x3a\x00\x02\xef\x0c\x75\xab\xcf\x03\xf8\xf0\xb2\xbe\xfd\xb2\xee\x87\xcc\x7b\x78\x28\xf4\xea\x1b\xf2\x1e\xbe\xab\xe1\x7e\x17\xa7\xcd\x79\xdd\x1c\xab\x06\x3a\x69\x73\x9f\x8f\x9e\xce\x40\xf1\x14\xde\x57\x0a\xaf\x00\xc3\x77\x00\x79\x4e\xcc\x7f\xc8\x39\x02\x98\x87\x32\xee\x37\x2d\x07\xd8\xf0\x10\x70\xf6\x06\xd2\x46\x03\x9e\xff\x32\x7e\x2f\x9d\xe4\xd7\x77\x05\x62\xd7\x02\xeb\xf6\x01\xeb\xe6\x02\x69\x11\xdc\x57\x2c\xed\x3e\x73\xe5\x24\x3b\x25\x1f\xcc\x38\x0d\xdc\x7e\x04\x6c\x70\x07\x9e\x47\x7e\x61\xff\xdc\x06\xf6\xcb\x3a\x08\x6b\x04\x1e\xde\xa9\x3e\x0f\xa0\x21\xff\xa5\xf6\x9e\xb7\xac\xfb\x21\xba\x86\xca\x78\xf7\x15\x81\xdf\x9e\xf9\x57\xf0\x1e\x7a\xf2\x7c\x1c\x1c\x0f\xb4\xbc\x01\xec\x19\x09\x74\x9a\x0c\x14\xde\x05\xd4\xcb\x80\xfc\xd6\x80\xd6\x22\xc6\xfd\xf5\x5e\x03\x9b\xba\x03\x13\x0d\x59\xd7\xc1\x46\x15\x90\x72\x63\x47\x6f\x20\x65\x18\xb0\xf0\x0c\xb0\xa6\x92\x2b\x76\x49\x6e\x40\xcc\x43\x20\x29\x0d\x48\x79\x57\xa7\x7f\x90\x7c\x18\xd8\xd7\x18\x48\xee\x05\x9c\x0e\x62\xbe\x9b\x14\xb3\x52\x3a\x02\xbf\xc5\x03\x49\x51\xc0\xe7\x4b\x75\xeb\xbe\xa1\x0e\x44\xc0\xa9\xfa\x78\xb8\xcc\x7f\xf8\x16\xff\x45\xf6\x83\x3b\xd6\x0d\xfc\x40\xe6\x7f\x88\x7e\x17\x87\x05\xee\xbf\x37\x0a\x68\xac\x04\xec\xba\x0c\xb4\xba\x0a\x6c\x33\x07\x3a\x4b\x7e\x3b\x0f\xe8\x9f\x07\x64\x3c\x66\xbe\xa9\xf4\x5c\x8d\x6d\x19\xf7\x37\x9f\x02\x24\xc4\x02\x76\x9a\x40\xbc\x3a\xe0\xe6\x04\xc4\xb9\x03\x7e\x36\x40\xc2\x3f\xc0\x8a\x76\x8c\x8b\xa7\x54\xf2\x73\xcd\xd9\x01\xac\x6a\x0a\xec\x59\x0b\xac\xfa\x17\xa8\x9c\x09\xac\x1a\x06\xdc\x5a\xce\xbd\xb7\xa4\x5c\x47\xb6\x3f\xa2\xc7\x7f\x3f\xf7\xda\x7e\x18\x22\x8e\xba\x55\xd5\xc7\xfd\x1b\xea\x7e\xdc\x83\x58\x0f\x02\xe7\xb9\x26\x54\x75\x65\xdd\x8b\x0a\xc1\x83\x38\x2c\xd6\x51\xa9\x39\x8f\xf9\xd5\x80\xe2\x6f\x40\xce\x5a\xa0\xad\xf4\xfc\xd3\x00\xb5\xcd\xc0\xba\x07\xc0\x90\x30\x60\x6d\x01\xef\x23\x52\xbc\x9e\xe4\x0d\xac\x7c\x0a\x4c\xcb\x03\x56\x8c\x07\xe6\x6a\x01\x91\xe1\xc0\xe2\x72\x20\x6a\x0a\x10\xb9\x05\x88\x5c\x06\xac\x7d\x04\x44\x0e\x05\x72\x77\x03\x91\x73\x80\xbd\x1b\x81\x88\xe9\xc0\xe9\x13\x75\x3a\x10\xe1\xab\x80\xe7\x6f\x80\xd0\x2e\xf5\xf9\x2f\xde\xc7\x79\x9c\xaf\x56\x9f\xf7\xe1\x20\xfa\x09\xd9\x7f\xe4\x51\xf6\x83\xa7\xb2\xee\xc7\xb7\xf8\x2f\x0d\x75\x2f\x44\xdf\x93\x72\x11\x4f\x77\xac\xe7\x71\xab\xa8\xb2\x6c\xda\x09\x34\xfe\x8b\xfd\xb6\x83\x33\x90\xb8\x1d\xe8\x53\x0a\xc4\xdf\x03\x86\xcf\xe1\x78\x3d\x4e\x07\x08\xff\x13\xb0\x4e\x05\x96\x97\x00\x4e\xa1\x40\x88\x39\xe0\x6d\x0b\x04\x39\xf0\xbe\x11\x7c\x9a\xe7\x2e\x50\x87\x39\x45\x41\x1d\x98\x73\x14\xf4\x3b\x70\x66\x31\x10\xd8\x09\xb8\xd3\x05\xf0\xcb\x63\x1d\xa9\x25\xb6\xac\x13\xb3\xc8\x4c\xd8\x2d\x78\x00\x4e\x42\x03\x67\x66\xc0\x7f\xf3\x01\xbe\xc5\x7f\x91\xfb\xbe\x54\x09\x5d\x90\xda\xbe\x27\xa2\xda\x2c\x9f\x9a\x8b\xc4\xcf\x65\xfe\xc7\x16\x11\x4f\xd3\xc4\xb8\x46\x05\x50\xfe\x0c\xc4\xea\x01\x5d\x9e\x02\x51\xfd\x80\xc1\xd3\x80\xd0\xeb\x80\xe1\x21\x20\xb8\x0b\x60\xe1\xc5\x1a\x39\xd2\x79\x6a\xc9\x7c\xc0\x33\x98\x75\x2d\xa4\x79\xf0\x33\x01\x92\x1f\x01\x8b\xc5\xde\xb8\xe8\x10\x50\x1a\x06\x78\x49\xf1\x61\x2a\xe0\xa5\x04\xfc\xd8\x04\xf0\xa8\x06\x5e\xf5\x00\xe6\xcb\x7a\x27\x13\xfe\x9b\xff\x61\xd9\xec\xbf\xf9\x00\xff\x8b\xff\x52\x6b\x7f\x03\xfe\x4b\x2d\xff\x43\xc4\x0b\x99\xff\x91\x29\xfc\x26\xf9\x1c\x8f\xab\x44\x15\x4a\x7a\xee\xd2\x79\x2a\xa4\x03\xd0\x3b\x11\x58\xda\x0a\x18\xde\x16\x58\x9c\x0c\x4c\xf4\x03\x16\x99\x00\x76\xd5\xc0\xc2\x83\xc0\x82\x02\xc0\x7d\x07\xb0\xcc\x1e\x98\x37\x9e\x63\xe4\xdc\xfb\xc0\x96\x4f\x80\xcb\x2c\xa0\xb4\x3b\xe0\x7c\x0d\xa8\x7c\x04\x38\xf9\x00\xb7\xe6\x01\x8e\x8b\x81\x17\x09\x80\xfd\x2b\xee\xf5\x23\xdb\x3d\xc5\xb2\x3e\xef\xc3\x38\xbc\x3e\x0f\x42\x7f\x85\xc0\xfd\x05\xff\xe5\xf6\xaf\xc2\x7e\x81\x32\x5d\x14\xcf\xb3\xb2\x3d\x8f\x47\x45\x3c\x95\xf9\x1f\xbb\x85\x6e\x44\x81\xb0\xbb\x21\xff\x63\xb5\xb8\x9d\x17\x2d\xf4\x52\x02\xf4\x80\x26\x9a\x80\xaf\x2f\xeb\x8f\x79\xfa\x03\x9a\x76\xc0\xbc\xcf\x80\x51\x3f\xe6\xe0\x4f\xb3\x06\x9c\x63\x00\xf7\x25\x80\xa3\x16\x10\xd2\x1f\x98\x35\x17\x48\x2c\x05\x66\xbc\x06\xb2\x1c\x81\xe9\xaf\x80\xd2\xe1\xac\x61\x78\xea\x3b\xc0\xfa\x1c\xf0\x7d\x3c\xaf\xad\x5f\xce\x00\x96\xeb\x81\xcf\x0a\x80\x99\x7a\x03\x7b\x85\xa6\xe4\xf0\x0a\xc1\x7f\xb8\x5c\x9f\x07\x51\xcb\xff\x10\xcf\x53\xe6\xbf\xc8\xf6\xcb\xfc\x8f\xf2\x93\x3c\xee\x12\xfc\x96\x02\x11\x2f\x1b\xf2\x3f\x92\x45\xd5\x69\x95\xd0\x15\x5a\x2e\xfc\x61\xb1\x58\x5f\xf3\x3d\x80\xb6\xd2\x73\xcd\x07\xfa\xbe\x01\x1c\x2d\x01\x03\x5d\x60\xe6\x4e\xc0\xea\x77\x60\xda\x30\x6c\x77\x5d\x0b\x58\x67\x29\x74\x0f\x6c\x0f\x4c\x31\x50\x70\x89\x7b\x06\x4c\xd6\x51\x98\xb0\xa9\x0d\x60\xba\x48\x41\x77\xf7\x66\x60\xc2\x34\x1c\x3b\x1e\x0a\x8c\x5b\x0a\xdd\xab\x93\x01\xe3\x9b\xc0\xc3\x37\x80\xd1\x78\xe0\xef\xd9\x80\xfe\x68\xb6\x4f\xf7\x6e\x7d\xbe\xc7\xa0\xad\x3c\xf6\xb5\xe7\x51\xd6\x5a\xfc\x26\xff\x45\xe4\x0d\xfb\x97\xf0\xd8\x90\xff\x92\xf5\x03\xf7\xc9\xc9\x68\xad\x44\x33\xb7\xb6\xa0\x31\x55\x51\x62\x2b\x9b\x12\x6e\x13\xfa\xa2\x05\xed\xc0\xbe\xaa\x2d\x68\xe7\x75\x3d\xdb\x92\x94\x84\x66\xb8\xb5\xbe\xd3\xf8\x20\x60\xd3\xbc\xdd\xf2\xee\xa1\x80\x79\xe3\xf6\x23\x87\xda\x03\x13\xa1\x3a\xd1\xec\x11\x60\x1c\xd9\xa1\xb9\x63\x26\x60\xb8\xb3\x83\xa9\x6f\x36\xa0\xaf\xd2\x61\xfa\x8a\xde\xc0\x88\x3f\x3b\x78\xa6\x5f\x04\x86\x2d\x57\xfd\xbe\x30\x07\xd0\xed\xaa\x3a\xe3\x70\x2a\xa0\xdd\xab\x7d\xd9\xa5\xeb\x80\xa6\xa9\xca\x83\xfb\xe9\xc0\xe0\x78\x95\xf1\xef\xc6\x02\xfd\xcf\xb5\x25\x5c\xa2\xf7\xcd\x96\x5e\x54\x53\x78\xdd\x8c\xea\xf5\x5d\xcd\x9a\x90\x2e\x42\x87\x47\x8a\x74\xcf\xb7\xfd\x1b\x90\xfe\xc1\xff\xe2\xbf\xc8\xf6\x17\x7a\x2b\x51\xfd\x2e\x2b\xa0\x35\xe1\x7f\xe9\xcb\xdb\x53\x55\x31\x71\x7b\x07\x42\x95\x62\x5c\x3a\xf1\x6d\xf3\xb9\x3d\x68\xe7\x58\x2c\xf8\x12\x6e\xaa\x6a\xc4\xb4\x9c\x11\xd1\x8b\x32\x8e\x89\x9d\xfa\x50\x55\x65\x74\xbe\x86\x8d\x4a\x2e\x30\xfc\xa5\xc6\xd9\x01\x17\x14\x66\x6a\x87\xf6\xcb\x35\x9a\xaf\x38\x6c\x90\x45\xbf\x90\xe9\x0f\x14\x3f\x68\x5c\xe9\xa7\xec\x31\x55\x69\x6b\x6f\xa5\x7e\xd6\x61\xfb\x95\x8a\xd5\xfe\xd2\x78\x96\xfc\xaf\x92\x77\xf7\xdd\x1a\x4e\x5b\x57\x28\xfe\xdd\xf5\x9e\xc6\xe4\xfd\x6d\x14\x4d\xbb\xec\xd5\x68\x7c\xfe\x8c\x82\x59\xe7\xc7\x1a\x3d\x7f\xda\x07\x74\x1a\xdf\xd7\xe4\xf7\x87\x80\xea\xce\x3e\xdd\x25\xfb\xda\x3e\xeb\x41\xf7\xf1\x5a\xbf\xef\x7c\x5e\x1a\x95\xf3\x3b\x90\x2e\x4c\xb3\xc0\xb6\x84\x7b\x37\x4e\x6e\x45\xf7\xe0\x65\xfe\xc7\xf1\xf5\x8c\xaa\xc8\xf6\xef\x2e\x6d\x46\x55\xe3\x6f\xf2\x5f\x8c\x18\x96\x8b\xae\xd6\xa0\xfa\x5b\x48\xee\x40\xaa\xba\xfb\x7a\x0f\xa6\xe7\x3f\xcf\x42\x93\x18\x52\x76\xcb\x74\xc9\xe3\x26\xbd\x19\x4a\x55\xc5\x51\xe9\x23\x28\x82\xf6\xbb\x38\xea\x65\x33\x1b\x40\xfd\xac\xde\x31\x75\x03\xec\xef\x66\xa2\x5f\x38\xea\x21\xb6\x75\xf2\x36\x68\x6b\x3d\x0e\x68\x9f\xa4\x7f\x66\x5e\x21\xd0\xe6\xb5\x7e\x42\x88\x29\xd0\xf2\xb0\xfe\x98\x35\xba\x80\xb2\x89\xde\xf8\xec\x8b\x40\xd3\x47\xa3\x0a\xf7\x04\x02\x8d\x7f\x18\xd5\xef\xcc\x70\x40\xe9\xdc\x48\xbf\xdb\x95\x80\xa2\xf3\x88\x75\xbf\x69\x03\x0a\x1d\x87\xcf\xe6\xba\x93\xb6\xb8\xc7\x3c\x50\xf4\xeb\xee\xfb\x9e\xc7\x5e\xda\x3c\xf6\xa0\x7e\x49\xc7\x0d\x15\x08\x3d\xaf\xd3\xbf\x69\x47\xba\xc5\xdb\x66\x77\xa7\xc8\xb1\x29\xaf\x27\x55\x53\x53\x47\x72\xbf\x94\x84\x3d\x43\x68\xa7\x8d\x9a\xa6\x45\xaa\xe9\xc1\x77\x86\x8d\xe1\xe7\xcf\x7c\x01\x77\x75\x7d\xca\xcc\x66\xab\x70\xf5\x7d\x4a\x0b\x23\xaa\x36\x1a\x6e\x32\x21\xd4\x69\x50\xe9\x84\x0b\xd2\xd8\x7e\xd3\x24\x9a\xaf\x16\x45\x93\x03\x3a\x35\x07\x9a\x54\x99\x6b\x69\x17\x00\x0a\xe7\xcd\x7b\x99\x4d\x96\x7e\x33\xd9\xd1\xb9\x0b\x8d\xfd\xfc\x89\xab\x3b\x69\x6d\x3c\xc5\x26\xb3\xdb\x9b\x89\xf3\x3c\xb1\xb2\xb8\x9a\xc7\x4a\xbe\x51\xac\x72\x93\x66\x7a\x7c\xea\x73\xbe\x49\x28\xf3\x3f\x72\x78\x1c\x25\xee\x65\x0d\x15\x78\xaf\x96\xf8\xfd\x20\xea\x8f\xb1\xbf\x57\x6b\xfa\xfe\xc5\x43\xf8\xd6\xfd\x36\x23\x35\xaa\x1e\x67\x0e\xec\x4f\x19\xe6\x3a\x1b\x2d\xc2\x6d\xe2\xdf\x70\xd5\x30\xaa\x4c\x9f\x70\x9a\xe0\xd3\xcc\x07\xf1\xf5\xe5\x84\xc3\x5d\x65\x1c\xfd\xde\x21\xd3\x8c\xfc\xc6\xaa\x9a\xd9\x1c\xe3\x1a\x4f\xa1\x3a\xf0\xd0\xa9\x56\xb4\x93\xf4\x9c\x66\x4b\xb7\x74\x9b\x2d\x9c\xb1\x87\x3d\x71\x66\x98\x0a\xe1\x39\x76\xd5\x7c\x9f\xd7\x2e\x81\x71\x7f\x3b\x1d\x47\xe2\x41\x4c\x7f\xb2\x24\x89\x57\x16\x23\x2a\x33\x06\xf2\xde\x3c\xcd\x9a\xfb\xa2\x4c\x4d\x3f\x41\xf8\x9d\x6d\xd5\x0d\xaa\x00\xdb\x38\x3d\x21\x0f\xb4\x39\xfe\x2f\xc5\x36\xf3\x1f\xd9\xde\x89\x96\x3c\x1a\xed\xe0\x71\xf4\xa7\x2f\xe7\xa7\x58\x47\x9d\xec\xcd\xaf\x64\x3e\x57\xa6\x21\xf3\x9d\x52\x8f\x0f\xa7\x6e\xe8\x09\x79\x86\x34\x3f\xd1\xd7\x19\x75\x0c\x5e\x61\xa6\x81\x2f\x75\x60\x84\x2e\x8a\x93\x1a\xeb\x47\x4c\x35\x62\x54\xd2\xd4\x99\xfb\xc8\xc8\x3c\x98\x81\xb6\xb3\x69\x05\x76\x5a\xe7\x2c\x94\xb5\xe6\x8a\xfb\x7a\xae\x3a\xaa\x62\xe4\x79\x98\xdb\x6e\xfc\x23\x7e\x6d\x4f\x15\xff\xb9\x11\x3e\xf4\x07\x2e\x65\x8c\x94\xcf\xf9\xc8\x7d\xed\x9d\x2f\x16\x52\xfd\xd5\x05\x5c\x11\x76\xb6\xba\x4c\x9f\xe0\x94\x55\x4d\x7e\xe1\xd8\xe2\x3d\xe5\x86\x33\x0f\xd4\xd4\xe3\x7f\x4c\x11\xfd\xfe\x27\x89\x7b\xac\x13\xaf\x4b\xe3\xb6\xa9\x83\xf8\xf9\x3f\x1c\xc9\xfc\x07\xd1\x07\x2a\xf1\xf5\x38\xfa\xb4\xd8\x4a\x53\x9a\x9f\xe5\x05\x96\xc1\x6c\xbf\x2d\x1d\x3d\x3c\xad\xa6\x6b\xf3\xb7\x60\x75\x82\xd9\x95\x0e\x14\x57\xa6\x4c\x61\xd5\x06\x99\x07\x33\x34\xd8\x95\x7e\xde\xfb\x96\x3b\xa1\x34\x6d\x0c\x16\x8a\x1b\x0e\xe2\xfa\x22\xbc\xca\x78\x1e\xbc\x2c\x06\xaf\xe5\xd7\xe3\x08\x19\xf7\x5e\xca\xb8\xbf\xb7\x09\xff\xe5\xa2\xbf\x23\xfe\xe6\xdf\xa7\x12\x3e\xe1\xa5\x93\x4f\x37\x4e\xbd\x66\x1d\xa6\x7a\xf5\xa2\x56\x7c\x06\x5c\xe8\x7d\x97\xfe\xc3\x82\x96\xaf\x76\xb0\xa7\xb2\xbd\x73\x8c\x79\x9c\x9d\xcf\xe3\x74\x7d\x1e\x6d\xbb\x48\xe3\x66\x6f\xd6\xc1\x49\xd3\x1e\x47\xcf\x35\x71\x3b\x57\xcb\x63\x55\xf8\x36\x6d\xd8\xe6\x69\xe4\xd7\xfe\x4b\x67\xb3\xfe\x43\x24\xb3\x33\x5c\xab\x9d\xb8\x0f\x4a\xe5\x5c\xc2\xef\xac\x0d\x18\x7d\x9b\xe8\x37\x9f\x50\x7a\xfd\x56\x0b\x09\x5d\x1a\x22\xec\xed\xa6\xce\x19\x44\xb3\xd1\x7e\x22\x03\x0d\xf8\x59\x8c\xb7\x3b\x50\xc8\x0d\xd4\xe1\x08\x1b\xd8\xc9\x88\xbe\x7f\xa0\xdb\x0c\x42\x3c\x82\x5c\x98\x61\x12\xa8\x17\x4a\xb8\x55\x40\xf0\xda\x72\xfe\xfb\xbc\x65\xfc\xff\xcb\xe9\x3e\xb0\xff\x9d\xb3\x84\x58\x2f\xdd\xf5\x03\x9d\x71\x96\x7c\x7c\x41\xb9\xbe\xaf\xd3\xe7\x0c\xfe\xe6\x6c\xf7\xbc\x93\x62\x5e\x04\x9e\xc5\xfc\x98\xb4\x60\x5e\x8d\x49\x3a\xac\xca\x12\x5b\x39\x9d\x56\x5f\x98\xd0\xfb\x59\x6a\xc5\x3c\xa7\xc5\xd3\x5d\xc2\x79\x76\x59\xff\xc6\xe1\xe8\x02\x3a\x99\xcb\x3c\x18\xf3\x38\xc6\xcb\x8d\x67\x7b\x93\xba\xfc\x30\x6b\x1f\xc2\xbb\xfb\x18\x30\x7e\xde\xe1\x40\x30\x65\x58\x0a\xbe\xcb\x45\xc6\x16\xf1\x37\x2b\x56\x45\x58\x31\x1f\x26\xa2\xc3\x60\xd2\x1d\x8f\x32\x30\xa6\x1c\x3e\x32\x66\x3a\xd9\x11\xf1\xc6\x9d\x70\xda\xf0\xb5\xcc\x2c\x89\xd8\xb1\xfa\x08\xbf\xce\xa2\x15\x1a\x61\x5c\xc2\x1d\x4b\xce\x9f\xa4\x27\x10\xa6\xc6\xfc\xa0\xd0\x8d\xcf\xc8\x23\x97\x19\xfe\x4d\x4f\xd8\xbf\x82\xed\xf6\x1d\x5f\x53\x4f\x17\x65\x81\x69\x0d\xf1\x1f\x6c\x69\xdf\x5b\x11\x3f\x93\x32\xc3\xf0\x4f\x73\xc8\xde\xe0\x85\xae\xf4\x2e\x72\x3f\xa8\x85\x2f\xd8\x5e\x17\xea\x9e\x0a\xd8\xb9\x2d\xa6\xdb\xd3\x96\x15\x82\x07\xa3\xc4\xb8\xb9\x81\x49\x10\x45\x2f\xad\xc4\x65\x64\x8d\xfa\xd0\x50\xca\xab\xda\x4e\x08\xcf\x62\xfb\x57\x08\x85\xc7\x55\x5b\x78\xa7\x96\xf9\x30\xab\xb6\x0c\xa2\x77\x8e\x57\x33\x2a\xe1\x71\x2a\xad\x48\x59\xa1\x25\x2e\x33\x90\x22\x6d\x42\xb7\x04\xfe\xbb\xcd\x9b\x09\xb7\x8a\x9f\x5e\x44\x08\xec\xca\x8f\x15\x34\xe3\xb1\x89\x97\x69\xfd\xc4\x26\x3f\xa4\xf8\x1b\x93\xfa\x07\x79\x70\x74\xaf\x9a\x7a\xfc\x8f\xda\x79\xa1\xfe\x83\x71\xde\xfc\xbc\x23\x89\xf5\x0f\x84\x54\xce\x23\x7e\x8b\xef\x73\x0f\x42\x8d\x3d\x9a\x2c\x22\x1c\xd8\x2d\xdd\x67\xa2\x34\xce\xca\xf4\xa3\xfd\x54\xee\x0b\x65\xbe\x36\x84\x9e\x96\x71\x19\xeb\xe0\x0c\x2f\x0b\xa7\xfc\x72\xa0\x6d\x34\x7d\xeb\x6e\xc5\x2b\x88\x37\xd1\xdc\x30\x5e\x81\xed\x97\xfb\x24\xa5\x54\x29\x3e\xe4\x91\x71\xde\x54\x13\x8e\x54\x29\x6a\x63\x69\x9d\xa4\x04\x32\x23\x2f\x45\x8d\xf9\x83\xa9\x3f\x06\x34\xa7\xd7\x15\x8c\x77\xa7\x54\x6d\x24\x65\x85\x54\xc5\x1d\x7f\xf2\x6b\xee\x07\x92\x94\x7c\x81\x72\xbf\xa4\x97\x3f\x93\x05\x49\xed\xff\xa0\xb1\x96\x17\x23\x78\x83\xb5\xfd\x82\x88\x1f\xb2\x62\xeb\xfc\xef\xf1\x45\x3f\x2c\xbf\x93\x5e\xc4\x93\x5e\x54\xb2\x84\xec\x76\xff\x35\x90\xbc\xca\xd1\x3b\x98\x3e\x75\x86\xc1\x72\x52\xdd\xb0\x74\x0a\xa3\x7c\xc8\x6c\x34\xdf\x3a\x37\x68\x19\x43\xdf\x46\xa7\x78\x25\xcd\xbe\xc6\xb8\x78\xda\x5f\x3b\x6a\xac\xa6\x2e\x35\xcd\xc6\x24\x0b\x05\x37\x99\x0f\x93\x69\x22\xf8\x30\xef\x59\x1f\x26\x23\x79\x10\x9d\x51\x32\xf2\x38\x52\x6f\xfc\xce\x9a\xfc\x3d\xe3\xbc\x0b\x79\x6a\x46\xa2\xdf\x35\xfe\xbb\x15\xf4\x4d\x32\x7b\xa5\xd3\x19\x39\xc3\xb3\x80\xf5\x63\x5a\x1f\x20\xbf\xc9\x1c\xff\x1d\xf7\x59\x6a\x79\x97\x98\x8a\x1b\x43\x7f\x27\x04\x31\x5d\xf0\xe5\x6a\x79\x31\x57\x79\xe4\x7e\x41\xe1\xe9\xbc\xae\xfd\x97\x2d\xa1\x44\x60\xb1\x21\xf3\x41\xe6\xeb\x07\x13\xbe\x2f\xeb\xe1\xcc\x9a\xcb\x7d\x92\xa6\x59\xf3\xee\x35\x79\x64\x2c\xc5\x41\x63\xc3\x04\xca\xa3\x47\xe6\xac\xa6\xf5\xa4\xb9\x84\x4f\x5a\xea\xdf\x25\x13\x8e\xab\x12\xc7\xe8\xbc\xd2\xc7\x0c\x07\xb6\x7f\xcb\x40\x1e\x73\x1f\xb0\x3f\xe4\x7a\x77\x22\x0f\xcb\x75\xe5\x4c\x2d\x77\xf8\x68\x7a\x22\x39\xeb\xa7\x50\x67\xbe\xdc\xe6\x4e\x94\x89\xe4\x29\xfa\x12\xef\x27\xd7\x25\x4a\x99\xc7\x75\x14\x57\x72\x0f\x6f\xa3\x78\x90\x67\xb4\x8f\xf5\x65\x1e\x9d\xa5\x1d\x2a\x3b\xfb\x16\x75\x60\xc8\x1e\xf8\x9c\xce\x0e\x59\x4f\xfe\xa5\xf8\x92\x21\x74\x94\xd6\xdb\xf1\xb8\x96\xfb\x3e\xf4\x0a\x14\xba\x70\x41\xf4\x2e\x9e\xda\xa1\x54\xc1\x77\x1b\x1a\xc9\x79\x81\xd0\xc3\x99\x71\x75\x25\xa9\xce\x58\xce\x4f\xa4\x93\xa4\xa9\x3f\x37\xa0\x1d\x9d\x9d\xc4\xf7\xfd\xe7\xa7\x12\xee\x3b\xb0\xf3\x7a\xb2\xbf\x7b\xe1\x46\xea\xba\xd0\xd6\x93\x75\x43\x14\x4e\x6c\x11\x37\xc0\xf2\xc5\x86\xb9\x43\x8d\x19\xcd\x32\x1f\xa6\xd0\x7e\x20\xf3\x62\x14\x0c\x68\xc7\xda\xee\x6b\x4e\xb8\xfe\xf6\xa5\x4e\x82\xe7\xc2\x3b\xce\x0e\x35\x56\x64\x2a\xf4\x5e\xeb\xc0\x23\x23\xd3\x3b\xd4\xf6\x70\x1f\x25\xd1\x3f\xa9\xc0\xf0\x1a\xd5\x4e\x0a\x36\x3f\x21\xde\x4c\x7e\xd4\x7b\xea\x60\xb5\x55\xbb\x86\xe2\x47\xd6\xa2\x9a\x2f\x78\x31\x7e\x7f\x32\x1f\xc6\xcb\x31\x82\x76\x9d\xf9\xca\x31\x94\x37\xcf\x55\x8c\x23\xf6\xb2\xac\x87\x33\xd5\x2a\x89\xfc\x7c\xf2\xd1\x64\xd2\xc5\x1a\x17\xca\xcf\x59\xbf\x62\x03\xad\x3a\x9d\x5e\x19\x64\x7f\xff\xd1\x9b\x68\x9f\xe8\x76\x94\x75\x24\x5a\x9f\xde\x2a\x2a\xdf\xf9\xe2\x24\x53\xab\x0f\xa3\xc6\xfe\x50\x7c\x8f\xf7\x8b\x32\xb5\x01\xb4\xd2\xca\xaa\x98\xd1\x5a\x9c\x6f\x4e\xf1\xaf\xf8\xae\x3d\x7d\xf2\x9e\x33\xde\xc4\xc4\x2b\xf3\x0f\xa7\x7d\xa1\xd4\x9b\x9f\x40\xe9\x81\x2d\x94\x47\x14\xaf\x2b\xa2\x9d\xae\xd8\xe7\x38\xed\xbb\xc5\xd5\xd7\xa8\x66\x54\xb2\xee\x11\xe5\x25\x45\x87\x5f\xd3\xc9\x61\x97\xd0\x85\x29\x10\xf1\x32\x8f\xce\x1d\x3e\xfb\x63\xe8\xc6\x81\x87\x43\x1c\x79\xa3\x9b\xcb\x6a\x5a\x8d\x0e\x47\x85\x1e\x4e\x04\xf7\xcd\xb1\xf1\xe6\x2c\xce\xec\x68\x06\x65\xad\xc6\xd6\x99\xe4\x6d\x7a\xef\xb7\xd0\xa7\x68\x55\xe7\x52\xdc\xec\xb3\x8e\x2b\x53\x9d\xdb\x16\xd0\x7a\x6a\x59\x24\x4e\xea\xe1\x45\x82\x2f\x59\xc7\x87\x51\xa0\x19\x39\x58\xcd\xba\x28\x07\x92\xfa\xb3\x2e\xcc\x29\xe6\x81\x1c\x34\xe2\x8c\xf5\xd0\x29\xce\x2b\x0f\xb6\xf4\xa4\xe7\xbe\xbf\x7a\xf9\x10\xfe\xf9\x6a\x3a\xf9\x1f\xfe\x63\x0b\xf1\x3d\x0e\x8e\x2b\x66\x5e\x4c\x87\x0a\x3a\x7f\xec\x6f\x79\x89\xe2\xcd\xfe\x73\xd5\x14\xb1\xf7\x2f\x78\x43\x3c\x81\xf2\x59\x6c\x7f\xb1\xe8\x43\xc8\xbc\x98\x86\x3c\xa0\xb9\x8a\xdc\x27\xc9\xe1\x2d\xf7\x7d\x9b\x1a\x97\x49\x15\x49\x2b\xa3\x2c\x5a\xa5\x13\x96\x31\x1f\x66\xec\x35\xee\x0f\x35\xc2\x39\x9f\xe6\x65\x48\x58\x21\x55\xb4\x7a\xeb\xec\xa2\x77\xef\x58\xbd\x9b\xf6\x59\xe5\xd0\x3d\xc2\xee\x7d\x62\xbf\xf8\x82\x0f\x43\x76\x9f\x68\xac\x4a\xfb\xe4\xf1\xfe\xfd\xa8\x06\x5e\xe1\xc4\x27\xb6\x93\x33\x27\xd1\x37\xa8\xb8\x35\x93\xd6\xc9\x49\x6d\xce\x44\x4f\xce\x65\xe5\xb2\xe3\x15\x71\xb4\x34\x4f\x3a\x6d\xa2\xf8\x79\x32\x79\x17\xed\x0b\x15\x35\x47\x98\x57\x53\xf8\x1d\xf5\xe4\xae\x98\x7a\x8f\xf4\x34\x2a\x16\xfd\x4e\x79\xa8\xdc\x3f\xe9\x60\x5b\x1e\xb9\xaf\x94\x67\x9f\xf5\xf4\xee\x6e\x8f\xd2\x69\x7f\x74\x1e\x90\x41\xbc\x7a\xbb\xd5\xcc\x0b\xb1\xd9\x9c\x4d\xde\x3b\xf9\x04\xfb\xf7\x04\x33\xae\x44\xc9\xba\x38\x43\xaf\xed\x22\x1e\xcd\xa0\x2d\x7c\xfa\x53\xbf\x52\x46\xf1\xa6\x43\xe3\x7d\x94\x47\x34\xdd\xb7\x5f\xdc\x94\x3d\x7a\x90\xc7\x93\x5a\x3c\x9e\x19\xc5\x95\x9c\x5a\x3e\xcc\xaf\x7d\x89\xe7\x75\xf6\xe5\x70\xf2\xc0\xb3\x33\x26\xd2\xfe\x77\x4e\x83\x4f\x28\x67\x23\x98\xe1\x79\x2e\x90\x95\x9e\xce\x6d\x89\xa3\x95\x78\xde\x3b\x83\x56\xdc\xb9\xbc\x1d\x74\x52\x3a\xdf\xe3\x50\x0e\xbf\xcf\x79\x3a\x67\x9d\x6e\x79\x9b\xf6\xa5\x33\xa7\x5e\x52\x9c\x3d\x9d\xfd\x91\xf6\x8f\xfa\xfd\x93\x3e\x7f\x02\xba\xb5\x01\xfe\x6e\x0c\x74\x7d\xca\x78\x46\x0f\xb5\xaf\x79\x0f\xb5\x3a\x07\xb6\x80\xc6\x13\xbe\xdf\x3d\x50\xb3\xae\xbf\xc1\x39\x27\x60\x44\x00\xd7\xf5\x0d\xfc\x41\x67\x1f\x23\x6b\x60\x7f\x31\xe3\x14\x7b\x7e\x00\x6c\x2e\x00\xd2\xea\x98\x59\x08\xec\x28\x01\xe6\xbc\x07\x0a\x7a\x02\x0b\x0d\x19\xef\x5f\xf2\x04\xd8\x1a\xca\x77\x70\xb7\x39\xb1\xde\x7f\x5e\x0a\xd7\x7c\xf3\xba\xb1\xe6\xfb\xf6\x2e\xc0\xee\x21\x40\x61\x28\x70\x78\x17\xeb\xfc\x5f\xcc\x62\x1e\xc5\x9d\x6a\x1e\x7f\x4d\x07\x76\x5f\x07\x3e\xbf\x62\x5c\xb9\xe6\x8b\xfb\xff\x5f\xe1\xff\x62\xfc\xe8\x0b\x74\xda\x0d\xbc\x7f\x00\x48\xf1\xea\x8f\x31\x80\xea\x62\xe0\x17\x7f\x40\xf5\x44\x1d\xef\x41\xee\xef\x70\x4b\x07\x50\xcb\x05\xae\x76\x05\x34\xcc\x18\xe7\x1c\xb8\x9e\xf1\x5e\x6d\x3d\xd6\xea\x18\xa9\xc9\xf7\xfc\xc7\x64\x02\x7b\x23\x01\xe9\xa4\x56\x74\x1b\xb0\x6c\x0e\xec\x88\x00\x66\xec\x05\x0a\x8a\x01\xa7\xe7\x40\xde\x4e\xc0\x3d\x51\xe0\xfe\xde\x40\xce\x45\x60\xb9\xc0\xb7\xa5\x7c\x29\xe7\x2d\x90\x5c\xc2\x98\xde\x96\x29\x75\xf7\xfe\xf3\x92\xb9\x87\x40\x81\x21\xf0\x9d\x2e\x50\x90\x05\xfc\x30\x96\x7b\x86\xfc\xd6\x0b\x28\x54\x65\x4e\x87\xac\x83\xd2\x10\xff\x97\xed\x97\xf1\x7f\x99\xff\xf1\xf6\x24\xd0\xe6\x20\xf0\xa2\x86\x71\xec\x5f\x8c\x80\x76\xd6\xc0\x83\x03\x40\xbb\x27\x5f\xf0\x1e\x7a\x00\xdd\x32\x81\xcb\xca\x80\xda\x6d\xe6\xbf\x68\xac\xae\xeb\x6f\x70\xc4\x0d\x18\x1a\xc2\xb8\xff\xe8\x5e\x40\xe9\x69\x60\x5c\x3c\x20\xf9\xac\xe4\x17\x05\xfd\x81\xa9\x21\x75\xb8\x7f\xee\x76\x60\x5e\x1c\xe3\xde\xd2\x7e\xb0\x39\x8d\xb5\xf8\xb3\xf6\x01\xb1\x96\x8c\xff\xaf\x5d\x04\x64\x7d\x64\x8c\x5b\x9a\x1f\xe9\x99\xe7\x96\x01\x47\xde\x32\xde\x7d\xde\xfa\x8b\xfe\x07\x2e\xc0\xab\xd6\xdc\x17\xa1\xe6\x3f\xfa\x60\x34\xb4\x5f\xc6\x01\xff\x39\x01\x34\xcf\x04\xde\x85\x03\x4d\x8f\xd6\xf1\x1d\x1e\x1f\x05\x94\xd7\x02\xf7\x7f\xe7\x79\x91\x79\x0f\x57\xe2\x81\xf6\x25\xec\x07\x5d\xdd\x81\xb3\x4b\x81\x9e\xd6\xc0\xf1\x3c\xa0\x7f\x22\x70\xb0\x23\x30\xc4\x16\xd8\x37\x97\x75\x41\x76\xb7\x66\x9c\x7b\x7b\x19\x60\xfa\x11\xc8\xbb\x05\x58\x0f\x05\xb2\xc3\x81\x59\x46\xc0\xe6\x33\x80\x94\x37\x6f\xea\x09\x78\x8d\x05\x32\xbb\x01\x41\x89\x40\xe6\x6c\x20\x26\x18\xd8\xf0\x0f\x90\x74\x87\xef\xc5\x4b\x73\xb2\xe9\x77\x60\xd7\x6e\x20\x4b\x13\x38\x52\xc9\x18\xd7\xa5\xee\x40\xf6\x4b\xe0\x67\x65\x9e\x17\x69\x6d\xe7\xcc\xf9\xbf\xed\x6f\xc8\x7f\xf8\x73\x00\xa0\xb4\xae\x4e\xef\xe2\x79\x15\xe3\xd7\xdf\xe4\x3d\xd8\x01\xca\x3b\x81\xb3\x16\x80\xca\x14\xe0\xa4\x3b\xd0\xd9\x09\x38\xe2\x04\xf4\xdc\x01\xec\x2b\x63\x5d\x21\xc9\x7e\xad\x6a\x60\x7b\x22\xa0\x77\x08\xd8\xe6\x05\x8c\xcf\x05\xb2\x1d\x80\x29\xa6\xcc\xd3\x98\x11\x01\x6c\xfc\x11\x98\xd3\x11\x48\x0b\x64\xbc\x7b\x7d\x6b\xc0\xff\x08\x6b\x05\x45\xdd\xe7\xfb\xf0\xd2\x89\x64\xbd\x0f\x90\xe9\x02\x6c\x28\x01\x76\x95\x00\x1b\xbd\x80\xc3\x9b\x59\xf7\xe0\x52\x4b\x9e\x8f\x47\xa9\x40\x96\x05\xf0\xce\x1f\xc8\x8c\x16\xf8\xbf\xf7\xff\x6d\xbf\xcc\x7f\x68\xc8\x7b\x90\x71\xff\x5a\xbc\x5b\xdc\x7b\xfe\x2f\xde\x83\x72\x1c\xdf\xbd\x57\x05\xaf\x03\x29\xae\x96\x9d\x62\x1e\xd9\xf6\x07\xc0\xa0\xfb\xc0\xb6\x63\xc0\x70\x07\x60\xcb\x70\xc0\xf0\x2c\x90\xb1\x01\x30\xdb\x07\xa4\xf9\x02\xd2\xf9\x41\xc6\xfd\xd7\x35\x05\x16\x9e\x03\xd6\x24\x32\xa6\x97\x6c\x2e\xe5\xfc\x40\xd2\x65\x60\xb5\x05\xf7\x41\x90\x7c\x22\xd5\x82\xb5\x04\xd6\x17\x00\x47\xca\x80\xf5\x36\xc0\xa5\x36\x52\xb6\xcc\xb1\x6c\xa3\x39\x73\xfd\x52\x17\x01\x35\x17\xbe\xd6\x41\xa8\xd5\xbf\x68\xd0\x07\xa3\x96\xff\xd2\x94\xc7\x6f\xf1\x1e\x6a\xef\xb9\x4b\x7f\x3f\x0c\x38\x71\x10\x50\x08\x06\x0e\x2b\x03\xcd\xa7\x00\xe5\xef\x01\x95\x4b\xc0\xae\x03\x8c\x63\x6e\xfd\x1e\xe8\x33\x0c\xc8\x99\x05\x68\x1d\x04\x36\xbd\x05\x0c\x1a\xb3\x4e\xcd\xb8\x6a\x20\x25\x84\xfb\x3e\x24\xfc\xcc\xb8\x7f\x62\xae\xb4\x77\x73\xbf\x03\x9f\x36\x7c\x1f\x3e\x7c\x05\x90\x50\x0a\x24\x76\x02\xe2\xce\x31\xd7\x23\x51\x70\x01\xa5\xf1\x50\x22\xb0\xc6\x17\xf8\xce\x18\x90\x4e\x71\xd5\xe7\x81\xa4\x10\xe0\x9d\x53\x9d\xfd\xb5\xfc\x97\x6f\xe8\x40\xc8\x78\xb8\x8c\x77\xcb\xb8\xbf\x3c\x0f\x72\xbf\x8f\x6f\xf1\x1e\xe4\x7e\x17\xe5\xc2\x5f\xa4\xd8\xd5\x64\x0c\x50\xa0\x0c\xb4\x1b\x0f\x64\xdf\x03\xba\x4f\x01\x36\x7d\x00\x06\xcd\x04\xd2\x8b\x81\xe1\x43\x81\xa4\xad\xc0\x98\x9f\x19\xff\x9e\xec\x03\xc4\xe5\x03\xd3\xf3\xd9\x4f\xa5\xb8\x19\xad\xc3\x3c\xc2\xd8\xa7\x8c\xf3\x4a\xa7\xba\x04\x75\x60\xc5\x79\x20\x33\x06\x88\xf1\x00\xb6\x17\x01\x31\x2f\x80\x43\xed\x80\xe8\xcf\xc0\x85\x4d\xac\x91\xf0\xa0\x14\x88\x6b\x02\xfc\x7d\x0e\x88\x14\x5a\x58\xb2\x0e\x84\xcc\xff\x90\x75\x20\x1a\xea\x21\xfc\x2e\xaa\xa6\xb5\xbc\x07\x71\x7d\xec\x2b\xfd\x13\xd1\xd7\xa2\x16\xf7\x77\xe5\xb1\x4c\xe0\x9b\x05\x62\x7e\x72\xc2\x39\xce\x6e\x32\x01\x54\x1d\x81\x34\x2d\xa0\xd7\x71\xe6\x7d\x68\xe9\x00\x71\x65\xc0\xa8\x54\x20\xd6\x0b\x98\xe8\x05\x44\x2a\x01\x56\xf7\x58\x13\x46\x9a\x87\xd0\x33\x80\xe7\x00\x20\x62\x25\x10\xba\x0d\x08\xef\x0e\xc4\x9f\x06\x22\xac\x80\x8c\x17\x40\x98\x0f\x63\x6a\xd2\x1c\x1d\x3c\xc6\x1a\x2a\x97\x4a\x81\xb0\x1b\xc0\x83\x72\x20\xfc\x19\xf0\xe1\x23\x10\xa8\x52\xff\xb9\xcb\x3c\x00\xb7\x33\x02\x0f\x17\xfd\x30\x66\xdf\x17\xb8\xbf\xf0\x83\x87\x62\x5d\xc8\xb8\xbf\x3c\x0f\xdf\xd2\xbd\xa8\xc5\xfd\xc5\xfd\xe7\x7c\xe1\x17\x59\xa2\xbf\xca\xfa\x2b\x40\xcb\x2b\x8c\xfb\x77\x5a\x07\xc4\x1f\x05\xfa\xbe\x00\x62\x14\x81\x61\x46\x6c\x97\xf1\x41\x60\x59\x09\x60\x11\x05\x04\xa5\x03\xb3\x1d\x01\x7f\x6f\x40\xca\x1b\x25\xff\x0d\xac\x06\x02\x5f\x02\x71\xb7\x80\x20\x3d\x8e\x01\x81\xcf\x98\x7b\xb7\xb4\x18\x38\xbc\x06\x08\xf8\x04\x5c\x9e\xc0\x7f\x2b\xc5\x87\x40\x1d\xe0\xc3\x25\xc0\x47\x49\xf0\x3f\x7c\xea\xf3\x3f\x64\xbb\x65\x3c\x5c\x1e\x1b\xf2\x5f\x1a\xf6\x7d\xa9\xd5\xbd\x90\xfd\x40\xe0\xb6\x32\xee\xbf\x43\x54\x97\x72\x05\xce\x9b\x29\xfc\x29\xf9\x04\xa0\x70\x9f\xb5\x4d\x5a\x3f\x04\xa2\x7a\x01\x6a\x71\x40\xa8\x2a\x20\x1d\x64\x42\x1e\x03\x86\xde\x80\xbf\x2b\x60\xb6\x93\x63\xa3\x9d\x0e\xe0\x63\x22\x9d\x75\x00\xef\x6b\x80\x7f\x05\xb0\xf8\x2e\x20\x9d\x00\x7d\xf2\x78\x1e\xbc\xca\x38\x57\xf2\xee\x0a\x1c\xbd\x02\x2c\xfa\x89\x63\xb7\xe7\x24\x9e\x07\x2f\x3b\xd6\x7a\x91\x9f\x7b\x43\xbb\x6b\xfb\x7f\x58\xd6\xe7\x41\xdc\xfb\x20\x9e\xbf\xe0\xbf\x34\xec\xfb\x72\x46\xf8\x8b\x8c\x7b\xcb\x7e\x50\x2c\xf0\x6b\x19\xf7\xcf\xb6\xe4\x31\x7d\x1a\x8f\x89\xc2\xaf\xa4\x7d\xaa\x89\x3f\xfb\x71\x47\xf1\xbc\x34\x2a\x01\xdf\xae\xac\xff\xb0\x68\x3b\x30\xde\x00\xf0\xd4\x61\xdc\x7f\xc1\x6b\xc0\xf5\x1e\xe0\xde\x1a\x58\x6a\xc5\x28\xc7\x8a\x93\xc0\x5c\x6d\xce\x05\x5c\x34\x81\xc2\x4c\xc0\x39\x92\x4f\x6c\x4e\x55\x3c\x0f\xd2\x9e\x23\xc5\x07\xe7\x77\xc0\x87\x2b\xc0\xac\xf1\xf5\xed\x36\xef\x5c\x9f\xf7\xd1\x90\x07\x71\xd7\xbf\xbe\xfd\x0d\xf9\x2f\x15\x65\xf5\xed\x2f\x1b\x22\xfc\x40\xf0\x80\x1a\xf2\x3f\xe4\xfe\x27\x71\x82\x07\x12\x2a\xf4\x62\x96\xba\x71\x3e\xb6\xe8\x33\xd0\x6d\x0b\xe0\x61\x0a\x68\x5d\x07\xdc\x9c\x81\x31\xe6\x80\xcb\xef\x80\x75\x3b\xb6\xcb\xa5\x8c\xf9\x1c\x7e\xea\xc0\x6c\x4f\xee\xc3\x38\x33\x95\x73\x8a\x19\x8b\x81\xc2\xc1\xc0\x0c\x57\xe9\xe4\x08\xd8\x56\xf2\x3c\xd8\x78\xb3\xee\xa0\xad\x1a\xef\x9b\x0d\xed\xae\xd5\xbf\xf0\x17\x3c\x88\x83\x3c\x6a\x97\xf3\x78\x5b\x8f\xbf\xe7\x55\xff\xfa\xf6\x9f\xd4\xa8\x6f\xff\x5e\xd1\x35\x54\xe6\x7f\xe4\x8b\x75\x22\xf3\x3f\xd2\x45\x15\x3a\x49\x74\x27\x8f\x15\x38\x7a\x88\x78\xbd\x48\x3a\xa5\x1f\x05\xdc\x52\x39\xdf\x70\xd6\x07\x34\x34\xb9\x07\xa3\xde\x04\xc0\xee\x16\x60\xfe\x19\xb0\xfd\x0d\x70\x38\x0a\xd8\xde\x03\x7c\xef\xb2\xa6\x50\x4c\x2e\xf7\xdc\x4a\xd7\x05\xcc\x7e\x03\x0a\xde\x00\xa6\x77\x80\x83\xb1\xc0\xc4\x4a\x3e\x67\x4d\xe8\x0b\xdc\x73\x01\xc6\x9b\x00\x7f\x4c\xa9\xb3\x7b\x64\x49\x7d\x7b\xfb\x9f\xe4\xb1\x9f\x32\x8f\x7d\x2e\xf1\x28\xf3\x5f\xce\x8a\x78\xd0\x90\xff\xd2\x90\xff\x21\xeb\x9f\xd4\xf2\x3f\x84\xff\x24\x8b\xee\xbb\xab\xe4\xdb\xba\x42\x5f\x63\x89\xd8\x67\xe6\x89\x7c\xc4\x5e\x19\x68\xf6\x1b\x30\xdd\x19\xe8\x11\x06\x58\xdf\x04\x74\x3f\x00\x16\xaa\xc0\xc4\xdd\x80\x59\x15\x30\xfb\x23\x30\x7e\x34\xe0\xad\x05\x18\x27\x01\x91\x49\xc0\x58\x63\x20\xf5\x25\x30\x3a\x08\xd8\x36\x11\xd0\x73\x02\xf6\x2d\x07\x46\x86\x03\xe7\xa9\x4e\x0e\xfc\xd8\x0e\x18\x96\x02\xbc\xbc\x01\x68\xef\x65\xfb\x06\xfc\x56\xdf\xde\x1e\x9f\x78\xec\xe2\xc7\x63\x67\xc1\xa3\xfa\x16\xff\x43\xb6\xbf\x21\xff\x43\x5e\x07\xe9\x82\x5f\x96\xa2\x29\xaf\x03\xae\xb2\x45\x6c\x67\x74\x26\x50\x47\x91\xee\xab\x79\xdc\x53\xa2\x4f\x70\xea\xaa\x44\x75\x2b\xcb\xe0\x26\x54\x35\x98\xf8\x6b\xb3\xb3\xaa\x9b\x00\xe3\x6e\xca\xcb\x07\x2d\x01\x46\x77\x6f\x39\xce\xb8\x19\x30\x72\x7e\xcb\xa2\xe9\x55\xc0\x50\xb5\x96\x3f\x2e\xdc\x05\x68\xed\x68\xf9\x22\xb4\x25\x30\x78\x7a\xab\x66\x49\xc7\x81\x01\x27\x5a\x16\xe4\x2c\x00\xfa\x75\x6d\x69\x59\xf6\x02\xe8\xdb\xa6\x45\x6a\xe5\x6e\xa0\xb7\xb9\xf2\xb6\x9b\x87\x00\xf5\xb5\xcd\x9f\xfd\x72\x1f\xe8\xd9\xb2\x79\xe6\x67\x37\xa0\xcb\xf2\xa6\x84\xdb\xa9\xea\x2a\x52\x5f\x83\x36\xe2\x9c\xd1\x6a\x15\x8f\xcd\x44\x1f\xa5\x5a\xfe\x87\xdc\xff\xe8\x1b\xfc\x97\xec\x52\xae\xa2\xc9\xfd\x7f\x92\xb7\x29\x53\x1d\x6f\xe5\x11\xee\xae\x1b\xaa\xda\x8e\xd4\x83\xfd\xd6\xb6\xa5\x9d\x73\x61\xbb\xf6\x54\xfd\x71\xdc\xaf\x4a\x75\x5a\xeb\x57\xdc\xb5\xdd\x28\xa7\x2b\xe1\x39\x3a\x9f\x7b\x18\x2b\x47\x02\x83\x9b\xaa\xb9\xf6\xb2\xc1\x54\x8d\x0d\x3d\x15\x46\xdd\xc1\x3e\xf5\x2b\x3d\x6d\x2d\xff\x51\xd0\xea\xbe\xad\xa7\x97\x6b\x80\xc2\xa8\x2e\x7b\x7a\x6e\x0c\xcc\x42\x50\xc7\xab\xea\x3d\x12\x46\x01\xaa\x9d\x7b\x2e\xdc\xbc\x08\x68\xe7\xa1\xb6\xb2\x58\x11\x68\xb3\xa4\xc7\xbb\x13\x83\x81\x56\xc1\x3d\xfa\x5d\x1f\x02\xb4\xf8\xa3\xbb\xe7\x13\x5b\x40\x79\x43\xb7\x17\x1f\x96\x01\x4d\x0e\x74\x22\x1d\x88\x46\x1d\xdb\x0f\xe7\xba\x4b\x6b\xea\x0f\x82\x99\x2d\x04\xee\xdd\xd4\x48\x1a\x8f\x77\x14\xf6\x0b\xbb\x4b\xb2\x98\x07\x22\xf7\x3f\xca\xae\x51\xa6\xea\xaf\xcc\x7f\x49\xaa\xee\x44\xf5\xaa\x95\x8f\xbb\x52\x35\x35\x3c\x54\x8d\x22\xa3\x7f\xb8\x3a\xe1\x3f\x0b\x7d\x7b\x51\x5d\xda\x39\xb3\x0f\xd9\x6f\xab\x39\x80\xfc\x62\x7c\xea\x00\xaa\xeb\xeb\xf6\xd0\xa2\xdb\x74\xdd\xd2\x74\x16\x61\x1e\xd0\xb1\xbd\xae\x47\xe7\x55\x40\xdb\xac\xa1\xd1\x3a\x4d\x81\x96\x7a\x43\x57\x9a\x19\x02\xcd\x74\x75\xaf\x38\x26\x01\x8d\x56\xeb\xbe\x59\x32\x08\x50\x98\xae\x7b\x2e\x96\xf6\x2e\x5d\x83\x8d\x54\xaf\xd3\x89\xdd\x49\x15\x44\x6d\xcd\x63\xf4\x73\xcd\x2b\x57\xa8\x32\x38\xe4\xfa\x43\x52\xa2\x19\xfc\xcb\x9f\xf4\x44\x06\x4c\x61\x7b\x7b\x0b\xbe\x83\x9a\xe0\x87\x74\x7d\xcb\xa3\x2a\xf9\xc3\xc1\x66\x5c\x1d\x2b\xf1\xe2\xdb\x73\x05\xbf\xb6\xa0\x6a\x6f\xd6\x2f\xaa\xf4\x7a\x83\x42\xb7\x56\x6c\xbf\x3a\xf9\x7b\xac\x0a\x77\x97\x0e\x7d\xd1\x9f\x54\x2b\xfc\xc1\x3c\x81\x85\xcf\x34\x29\x22\x38\x27\xeb\xd2\x4e\x32\x35\x9d\x9a\x4d\x63\x52\xab\x91\x54\x97\xd3\xbb\xa0\x4f\x78\xb7\x86\x0a\xa3\x34\xad\xf5\x8c\x44\xdd\x72\x9c\x51\x6b\x8a\x51\x26\x7f\x0f\xa0\x35\x39\x4e\x87\x91\x76\x93\xfe\xb3\x29\x76\x9b\xb8\xf2\x7d\x7f\xe3\xe5\x31\xb4\xf7\x18\x19\x6e\xa0\xd8\x3e\xb6\x67\x21\xd5\x5d\xc7\x04\x1c\xa6\x3a\xbc\xe1\x6f\x97\xe9\x5e\xd6\xe8\xa3\xf7\xe9\x9d\x0d\x5e\xbd\xad\xc7\xff\xd0\x7d\xc8\xa3\xa6\x3d\x8f\xfd\x3e\x7e\x39\x3f\x7b\xad\x04\xff\xa7\xbc\x3e\xff\x27\xbd\x9a\xcb\xcb\x49\xd5\x83\x28\x33\x88\x4d\x1e\x44\x27\x8a\xf0\x3e\xda\x47\xf9\xf9\x8f\xa2\x0c\xcb\x2b\x47\x9f\xe6\xc5\x25\x7c\x0c\xf9\xfb\x74\x70\xe2\x60\x1e\x69\x4c\xfe\x60\x78\x79\x1c\xcd\x83\xe6\x20\x33\x7a\xdd\x3d\x87\xf9\x21\x4a\xeb\x2c\x45\x26\x6a\xb9\xa7\x2d\xcd\x9c\x95\xc9\x40\xba\x31\x6c\xb9\xdc\x84\xd6\xa6\xa5\x27\x2b\x4d\x58\xbd\xf6\xa2\x5c\xd5\x72\x65\x24\xed\xd9\x53\xfe\x58\x4f\x7b\xd8\x94\x4f\x9c\xbb\x98\xdf\x3d\x40\x75\x4b\x0b\xcd\xef\xf8\xa6\xf5\xce\xbb\x84\x7f\x4f\x6a\xf1\x9a\xf6\xb4\x09\xe2\xde\xea\xd8\x7f\x79\x1c\x2d\xf0\x5d\x59\x17\x85\xe7\xa7\xf0\x1c\xeb\xc1\x6c\x8e\xec\x4b\x2b\x63\x5d\x14\xeb\xfa\x24\x5d\xe7\xe7\x1c\xab\x34\x92\xea\xae\x61\x6a\xa3\x1c\xf8\xf9\x8f\xa5\xcc\x51\xd6\x81\x71\xd5\x61\x1e\xcc\x2c\x67\x53\x62\xa4\x5a\xb9\x99\xd3\x89\xcc\x64\xa3\x15\xb1\x7b\x86\x4d\xb3\xa6\xfb\xdd\x1a\x41\x53\x69\x1e\x55\xa2\xa6\x5f\x61\xfb\x19\x4f\x07\xec\x77\xa8\x10\x42\x64\xff\x6a\x20\xcd\x90\x7d\x67\x9e\x49\x7b\x7f\xee\x48\x62\x6f\xc8\xca\x21\xb3\x13\xc3\x7c\x78\x4c\xe1\xd1\x6b\x2b\xf9\x85\x5d\x35\x2b\x49\xcf\x5c\x7a\x8e\x10\x98\x19\x2d\x6f\xd3\x3d\xc7\xe9\x76\xbf\x32\x33\xe5\xde\x67\x62\xb4\x4c\x11\xb8\xae\x99\x51\xcd\x7f\xe8\xc6\x6c\x51\xef\xcf\x7d\xa0\x2a\xd8\xee\x24\xa1\x8b\xb2\x72\xae\x1e\x9d\x28\xc2\x96\x1a\x13\x4f\x21\xc0\x77\x22\xa1\x41\x5e\xf9\x93\xc9\x0b\xdd\x1f\x58\xe7\xf3\xb7\xb4\x25\x3f\x9f\xaa\x2b\x78\x30\x9e\x33\xeb\xf1\x60\xb4\x74\x1c\xe8\xe4\xd2\xe3\x80\x03\xa1\x95\xcd\x57\x88\x44\x1d\xf3\x2c\x78\x74\x1b\xc5\x9e\x38\xcf\x6c\x20\x79\xe2\xbc\xf1\xdc\x71\xca\x7d\xf2\x34\xaa\x09\xb8\xb7\xe5\x3a\xb5\x6b\x51\x30\xed\x61\xae\xd5\x7c\xa3\xde\x2d\x35\x3b\x85\x5f\x97\x8e\xe7\x27\xc2\x37\x23\xe7\x6a\xdd\xa0\xdf\x3b\x7f\x7a\x4c\x37\x2f\x9d\x6e\x7c\xa0\x6f\xe8\xa0\xc1\x76\x4f\x13\xeb\xc1\x4a\xf4\x01\x61\xde\x50\x9a\xea\x70\x7a\x1a\xc9\x53\x0d\xb8\x1b\xcb\x51\x13\xca\x1c\x22\x61\x46\x6a\x13\x01\x8f\xcd\xe9\x39\xfa\x0c\xb5\xa5\xfd\x60\xde\xdc\xe9\xb4\x2e\x64\x1e\xcc\x74\xcd\xd9\x74\x5f\xd3\xfc\xcf\xfa\x3c\x98\xe1\xb3\xe7\x12\xee\xdf\x67\x9d\x2b\xeb\xbb\x17\xce\x27\x7f\xa9\xd3\x85\x59\x2c\x22\xf3\xe2\x6a\x9e\x07\x6f\x57\x56\x62\xf2\x76\x1d\x43\xcf\x7b\x71\x32\x7f\xe2\xe2\xd7\xfc\x0e\x3e\x0e\x81\xe4\xe7\x3e\xa9\xac\xa8\xe0\x53\xb0\x99\xf0\x09\xef\xaa\x22\xc2\x31\xbd\x7f\x38\x4e\x11\xca\xfb\xc5\x75\xd2\xef\x5e\xa4\xfb\x80\xfc\xc4\xb3\xf1\x3b\x56\x70\x11\xb8\xe6\x1c\x25\x1e\xed\x45\xbf\x1c\xd6\x45\x49\xa9\x64\xbf\x8e\xf7\x36\xbb\x8c\x2f\x74\x70\x42\x94\xa6\x11\xca\xe2\xfb\x71\x06\x65\x8a\x0b\xde\xda\xeb\xd3\x6c\xcf\x9d\x43\xa8\xe3\x2c\x8b\xb9\xf4\xa9\xd6\x6d\x5c\x09\x85\x31\xfd\xdb\x9d\xd6\x8f\x7e\xc0\x02\x52\xa8\xd3\xbc\xcc\xfd\x91\x7a\x4e\xf2\x22\xdc\xa2\xdd\x79\x1f\xb6\x3b\x5c\xd6\x85\x09\x16\x27\xba\xe0\xec\x0e\x34\x63\x41\x89\x8c\xf3\x06\x0e\x37\xa4\x19\x0e\x9e\x65\x4d\x71\x22\xa4\x92\x99\x36\x21\xab\xfd\x29\x87\x0b\x5a\x1b\xcb\x4a\x25\xed\x37\xd2\x5e\x17\xf8\x74\x3b\x7d\x62\xe0\x9d\x43\x14\x27\x03\x75\x2e\xb2\x72\x41\xc5\x4f\xe4\x57\x7e\x9f\x7e\xa3\x99\x5f\x22\x74\x61\x16\x89\x7e\x07\xee\x97\x6a\xbe\xd0\x45\x49\x58\xc5\x7a\x47\x31\x9a\x53\x69\xdf\x0b\xd1\x9e\x45\x68\xf9\x52\x63\x47\xca\x17\xbc\x04\x2f\xc2\x4d\xd3\x8d\xf2\x21\xfb\x23\xee\x14\xcd\x6c\xee\x30\x1f\x64\xf2\x6e\x4f\xca\x8f\x64\x1e\xcc\x08\xd7\xc5\xe4\xc5\xfd\x77\x2e\x21\xaf\xec\xba\x8e\xed\x56\xb6\x0a\x11\x78\x4e\xe8\x52\x1e\x23\xfe\x06\xe5\xe4\xb5\x7c\x98\xf7\x03\x69\xe6\xc2\x9f\xe9\xd3\xbd\xe5\xc8\xa1\x56\x14\xa9\xa2\x9a\x3b\xd3\x8c\x47\xe6\x2e\xa1\x77\x8e\x9c\x10\x45\x78\x66\xd4\x27\x0a\x03\x88\x0c\xcf\xa7\x79\x8b\xb8\x5c\x4e\x39\x6e\xd4\xe0\x0b\xb4\x44\xc3\x2a\x6f\x93\x4e\x4c\xe8\xfc\x67\xc4\x23\x0a\xf5\xfe\x44\xf3\x11\x38\xa4\x86\x3b\xdd\x68\x7c\x39\x2f\xd1\xd5\x76\x94\x11\x2e\x2f\xb0\x27\xc6\xb9\xdf\x45\x17\x5b\xf6\x32\xe6\x83\xb8\x0f\x63\x5e\x84\x53\x10\xfb\xf3\x74\x78\xd1\x6a\xb4\x72\xf3\xa5\x5d\xdc\xd4\x9f\x79\x3f\x06\xaf\x98\x2f\xa0\xf3\x69\x19\xbd\xee\xbb\x75\x19\xa1\x46\xaa\x57\xb8\x8b\x49\x93\x71\x11\xa2\x92\xb1\x42\xdc\x68\x88\x77\x50\xa2\x7e\x47\xb5\x7c\x18\x2f\xde\x89\xe3\x37\x1b\x10\xef\x27\xde\xc6\x92\x98\x68\x09\x19\xce\xf4\x8e\x09\x91\xdc\xb9\x25\xbe\x5f\x38\x45\xa6\x84\x17\xa9\xb4\x5f\x24\x0c\xcc\x23\x8f\x4d\xb0\xdc\x4b\xf1\x65\x55\xd1\x69\x62\x26\xae\x7c\x79\x93\x22\xdb\x4a\xc3\xa7\x34\x7f\x2b\x9a\xfd\x49\x11\xbe\x21\x2f\x26\x90\xd6\x45\x58\x15\xc7\xad\xa5\xdd\x5d\xe9\xf9\x2e\xf2\x5a\x40\xeb\x7f\xfe\xc7\x45\x14\xb6\x5d\xc0\x9f\x6e\x7f\x7f\x09\xe1\xd8\x72\x5f\x28\x73\x2b\xee\x9b\x63\x32\x69\x39\xed\x87\x23\x35\xc3\x29\x7f\xd2\xf4\x8e\xa2\x4a\x6f\xcf\x11\xd1\xa4\x42\xd1\x4e\x7f\x25\xe5\x21\xf8\x23\x41\x28\xb7\xd6\xf2\x61\x6c\x94\xe8\xa3\x65\x3e\xcc\xba\xb1\x03\x88\x2f\x99\x9a\x3a\x9a\xde\x31\xf5\xd2\x14\xda\xff\x52\xdb\x3a\x92\x3d\x29\x95\x4c\x18\x48\x7d\x12\x4e\x1e\xb8\xce\x6a\xed\x0c\x1e\xb3\x69\x9e\x52\x9e\x97\xf5\xe3\xf7\x3b\x49\x38\xdf\xda\x47\x57\xe9\x89\x25\xb9\x3c\xa2\xf5\xb1\xba\xec\x0d\x79\x74\x42\xdb\xfa\xbc\x18\xee\x17\x14\x34\x74\x21\x3d\xd7\xc5\x8f\x3d\x89\xa5\xe5\x69\xe5\x43\xd9\x99\xdb\x3b\x3f\xfa\x6b\x47\xd5\x20\xfa\x54\xb9\x2f\xd4\x94\xef\x97\x3f\x67\x3f\x88\x22\xf4\xdd\x70\x40\x34\x79\xd9\xd0\x67\xb1\xc4\x9f\x19\xd0\x67\x15\xe5\x11\xdd\x6d\xe2\xc9\x0f\x5a\xdd\x5f\xcd\xfa\x1f\x65\x29\x22\x43\xdf\x20\x2a\xa0\x19\x67\x99\xff\x90\xd9\xa9\x03\x29\x30\x65\x24\x72\x9c\xcc\xcc\xd3\xa3\x48\xb2\xf1\x06\xe3\xdd\x19\x77\x99\xa1\x97\x91\xc8\x7d\x72\x32\xf3\x42\x69\xa5\x66\xbe\x64\xdc\x3f\xd3\x30\x8b\x32\xd5\x8c\xa8\xdd\xe4\xc1\x19\xed\x8e\x51\xad\x68\xe3\xd9\x2a\x7a\x52\x1b\x4f\x54\xd3\xd9\x2f\x3d\xe1\x35\xf5\x4d\x49\x8b\xf9\xfc\x89\x9f\x47\x0d\xc5\x59\xe6\xc5\x2c\xc9\xf1\xa6\xe7\xe3\x51\xe5\x47\x5e\x36\xdf\x3f\x98\x66\x51\xe6\xc1\xcc\x7c\x15\x4e\x27\x46\x1b\xad\x28\xfa\xdf\x93\x3f\xad\xa0\x2c\xc6\x58\x6b\x25\xb1\x13\x46\x55\x24\x50\x1e\xa5\xa5\x98\x48\x7f\xd7\x37\x30\x89\xce\x1b\x9d\x9b\x25\x93\x55\x2d\xb4\xd6\x89\xbc\x71\x43\x39\x8f\xb5\x7c\x18\xd7\x46\xc4\x9c\xc9\xb9\xdc\x91\x95\xcc\x5a\xf4\x27\xfb\xf3\xda\xeb\xd1\x0a\xcd\x29\xe0\x1d\x2b\x27\x67\x16\x9d\xf5\x73\xa3\x3d\xe8\x2c\x9c\x53\x1a\x42\x9f\x98\x37\x24\x91\x76\xde\x5c\x6d\xee\x40\x95\x6b\xbe\x93\x4e\x70\xb9\x8a\x5c\x2b\xc8\xb6\x3a\x4f\x67\xfe\x5c\x8f\x7b\xe4\xa9\x39\x45\x2f\x89\xd9\xb6\x25\x9d\xfd\x41\xd6\x45\x61\x5e\x8c\xf7\x91\x00\xf2\x63\x0f\xd5\xe5\x14\x7d\x5d\xa6\x84\xd2\xee\x54\xab\x87\xb3\x8b\xa3\xb3\xc5\x47\xee\x1f\x33\x71\x5f\x02\xb1\x1a\xc7\x54\x25\xd1\xd3\x1c\x11\xb9\x96\x78\x60\x9a\x2a\x6c\x6f\xef\x8d\xfc\xbc\x3b\xaa\x65\x50\xd6\xdb\xac\x5d\xe6\x4a\xb6\x3b\x7b\x18\x8f\xf9\xa2\xc2\x5b\x68\xa1\x44\x33\x53\xb0\xae\x23\xf9\x71\x61\x61\x7f\xee\x70\x68\xc0\xfd\x2f\xb6\x5f\x30\x23\x3b\xb6\xb7\xb3\xa3\x14\x7d\xfb\x73\xee\xe4\x56\x30\x9b\x15\x7c\xb6\x2f\x62\x26\x96\xac\x13\x53\x98\x59\x48\xdf\xb0\xf0\xfb\x83\xc4\xf0\x2e\x30\x3c\x4b\xbf\x2f\xe8\x72\x9b\xf8\x10\x05\x3d\x9f\x93\xfe\x5e\xc1\xcb\xcf\xd4\xd1\x2d\x57\xf0\x8a\xb3\x36\x53\xfd\x7a\x65\x18\x45\x69\xb7\xd2\x28\x8a\x36\xce\xdd\x62\xe9\xdb\xcc\x4c\x8f\xa7\xf3\x93\xad\xca\x6a\xaa\x44\x4f\x6a\xc7\xbc\x98\x71\x3a\xec\xdf\x72\x7f\xa8\xa1\x4e\xe9\xe4\x6d\x83\xac\x32\xa9\x72\xd3\x73\x0f\xeb\x86\xb4\x3f\x9b\x4d\xd1\xaa\xc9\xab\xdc\xef\x85\xfd\x0d\xf8\x30\x25\x93\x94\xe8\x1c\x54\xf4\x90\xf5\x61\x4a\xf4\x98\xd9\x5c\xf4\x98\x33\xb9\xe2\x38\x53\xe2\x0d\x17\x2b\x73\x5e\x59\xdc\xcb\x9d\xe2\x67\x89\x88\xc8\xc5\x43\x98\x2f\x56\xe6\xcf\x3a\x31\xc5\x43\xb6\xd2\x73\x2e\x4a\xde\x4b\x19\x4c\x71\xda\x19\x3a\x43\x17\x39\x7c\x4f\x27\xc5\x62\xc3\x27\xb4\xbf\xee\xaa\x79\x47\x7e\xb4\xf3\x24\xeb\x3f\xe4\x13\xff\x7e\x7e\xda\x0a\x7a\x5e\x72\x5f\x2c\x87\x02\x56\x54\x9d\x11\x91\x4c\xa7\x37\xab\x81\xa9\x14\xc5\x4d\xff\x4c\x27\xbe\xf9\xd8\xb5\x19\x54\xa9\xd0\x4f\xdf\x4c\xcf\x5b\x7b\x11\xf3\x43\xfa\xb7\x60\x5d\x9c\xee\x36\xcc\x0f\x69\x17\x96\x4f\x59\x41\xe3\x01\x3b\x45\xc5\x66\xb7\xa8\x74\xec\x11\x37\x7e\x0e\x8d\x50\x24\xbb\xf6\x5f\xef\x40\x79\xc2\xfe\xd9\xfd\xc9\x23\xf7\xff\x3c\x82\x5e\xef\xbb\x3a\x81\xd6\xfd\xbe\x08\xce\x54\xf7\x79\xb9\x12\x83\xf7\xe0\x3b\x66\x2c\xee\x8f\x63\xc6\xda\x21\x9b\x34\x9a\xaf\x03\xa9\xdb\x68\x9d\xed\x5f\xb3\x87\x32\xfa\xfd\xc9\x9c\x5f\x96\x57\x70\xcd\xf9\xc0\xfa\x67\x94\x11\xef\x0f\xfd\x9b\x4e\x96\x7b\xbb\xb2\x3f\xb0\x7e\x8e\xcc\x83\x71\x7a\x9b\x4c\xff\x7b\xe6\xf2\x75\xc4\x7f\x9a\xaa\x9e\x46\x51\xdc\xe2\x7c\x06\xed\x36\x13\xc3\x36\xd1\x7e\x37\xc6\x67\x0b\xc5\x81\x51\xa5\xcc\x0b\xd1\xd6\xce\x27\xef\xee\x7b\x8c\x4f\x3d\xdd\x6d\x76\x53\x16\xa7\x12\x53\x44\x51\x5a\x69\x5d\xa9\xb8\x09\x58\xde\x96\xc7\x5a\x3e\x4c\x13\xc5\x4e\x3c\xb6\xa7\x78\x76\x4c\xad\x2f\xd9\x71\xbc\xff\x30\xfa\xbe\xc7\xaa\xc6\xd3\xcc\x1d\x4f\x9f\x46\x27\xe0\x8a\x50\x57\xfa\xa4\x8a\x95\x7e\x14\x57\x8f\xfd\x1c\x45\x33\x5f\x31\x35\x95\x66\xb6\xa2\x24\x97\x22\xd6\xf1\xfc\x32\x9a\xbf\xe3\x91\x27\x29\x53\x3e\x16\x7e\x8d\x32\x96\x63\xbd\x1e\xd0\xff\x3f\xe6\xf3\x96\x9e\xe8\x11\xc1\x97\x63\xfd\x1c\xb9\xcf\xc7\xcb\x50\xa0\x53\x15\xf0\x5c\x07\xe8\x14\xfd\xdf\xbc\x87\x1e\x2f\x81\x6b\x6d\x80\xbe\xbe\xc0\xc5\x09\x80\xc6\xe3\xba\xfe\x06\x15\x46\x80\x6e\x25\xe3\x9c\xc3\x75\xf8\x5e\xa7\x74\xc2\x96\xf5\xfd\x77\xd8\x02\x16\x2f\x19\xaf\xb7\x3e\x01\xe4\xf9\x00\x0e\x3f\x02\xd9\x46\x80\xeb\x75\x60\x8b\x23\x20\x9d\x2b\x37\x7b\x73\x4d\x3b\xeb\x06\x10\xe5\x0a\x6c\x3a\x0e\x24\x2e\x06\x36\xcd\x05\x36\xb4\x01\xb6\x74\x06\xb6\x4e\x63\xfc\xbf\x4c\x8d\xf1\xed\x8a\x1a\xd6\x89\xb8\xbe\x14\xc8\x4f\x06\xaa\xe7\x02\xdb\xda\x01\xbf\x9f\xa8\xd3\x3f\x68\x88\xff\xaf\x33\xaf\x8f\xff\xfe\x91\x0b\xb4\x77\x00\x5e\xb9\x01\x6d\x7b\x02\x4f\x56\x01\x2a\x63\xbe\xe6\x3d\xdc\x88\x62\x3c\xe6\xca\x72\x29\x47\x04\xce\xe5\x03\xbd\x82\x81\x33\xa7\x81\x01\xd7\x81\xa3\xb7\x00\xad\xc3\x75\x7a\x07\x25\xe6\x80\x9e\x05\xb0\x23\x80\xfb\x3e\x48\xd1\x61\x92\x37\x90\xb7\x82\xfb\x75\x67\xf9\x00\x33\x87\x02\x5b\xec\x01\x37\x2f\xd6\xf5\xf7\x50\x03\x32\x42\x80\x80\xce\xbc\xbb\x86\x67\x01\x19\x4e\x40\x42\x28\xb0\xd1\x09\x48\x5b\x5e\x77\xef\x3f\xf3\xa5\x98\x07\x1b\xd6\x5e\xc9\xd9\x01\x5c\x8f\xa9\xeb\x7f\x90\xf7\x1a\x78\x67\xf7\x35\xfe\xdf\x10\xff\x96\xf9\x0f\xaf\x5f\x00\x2d\xac\xbf\xe8\xf3\xb1\x17\x68\x6e\xcc\x7d\x5f\x5a\xa8\xd7\xf1\x1e\xae\x75\x01\xda\x6b\x02\xe7\xab\x19\x87\x38\xa5\xc3\xba\x29\xc7\x6e\x03\xea\x0e\xc0\xc1\x79\x40\xdf\x87\xc0\x5e\x7f\xc6\xfb\x77\xf6\x60\x7c\x42\xee\x73\x20\x3d\x97\x89\xd7\xb9\x8f\x83\x45\x09\x6b\x9d\xcc\xf0\xa8\xc3\xfd\x37\x98\x30\xde\xbd\xfe\x33\xe0\xd7\x83\x71\xf0\x30\x35\x20\x4d\x81\xef\x6e\xa7\x69\x03\x69\x3f\xf3\xfd\xf8\xbc\x38\x20\x23\x0f\xd8\x53\xca\xb8\xd1\xa9\x5e\xec\x47\xd7\x23\x81\xcd\xd7\x81\x47\x05\xdc\x3b\xe4\xcf\xea\x3a\xfc\xff\x7f\xf5\x81\x78\x55\x00\x28\x3d\xfb\x9a\xf7\xf0\x53\x53\xa0\x49\x2a\x70\x7d\x2d\xd0\x6c\x3f\x70\x79\x25\xd0\xfc\x3c\x70\xfa\x06\xd0\xfa\x0d\xfb\xa2\xe4\x27\x87\xfd\x80\xae\x93\x80\xbd\x39\x40\xaf\x53\xc0\xce\x2c\x40\xe3\x19\x50\xb8\x8d\xe7\x63\x6b\x12\xa0\x97\x0d\x64\x9d\x00\x4c\xe6\x32\x5f\x41\xca\x8f\xd2\x14\x19\x6b\x90\xec\x73\x78\x00\xa4\x55\x01\x52\x46\x97\x92\x00\xf8\xf6\xaa\x9b\x87\x94\x27\x8c\x89\xad\x75\x06\xd6\xed\x00\x52\x54\x80\x9c\x2b\xc0\xfa\xdd\xc0\x5e\x4d\x60\xa3\x11\x2b\x31\x6d\x9c\x07\xdc\x38\xc4\x98\xd7\xd3\xcf\x75\xf8\x7f\x7a\xf5\xff\x6d\xbf\x8c\x03\xcb\xbc\x87\xe7\x82\xef\x20\xf3\x1e\x7e\x94\xce\x36\xeb\xbf\xe6\x3d\x54\xfe\x0b\x34\xd1\xe0\x75\xd0\x2a\xbe\xae\xcf\x43\x89\x29\xd0\x35\x0d\x28\x30\x06\x7a\x1b\x01\xdb\x4e\x00\x83\x2c\x81\xec\x68\x60\xc4\x5e\x20\xa3\x2f\x60\xd8\x01\x48\xeb\x09\x4c\x98\x0a\xa4\xae\x04\xac\xf3\x81\xc4\xa7\x80\x5d\x1b\xc6\x41\xa5\xf3\x75\x62\x35\xe0\xed\x04\xc4\x7f\x0f\x04\xef\x03\xd6\xac\x04\xe2\x7c\x81\x84\x62\x20\x65\x37\xdf\x8f\xcd\x8d\x00\xd6\x14\x00\xa5\xf1\x40\xaa\x1b\x50\x19\xc5\xba\x11\xb7\x44\xaf\xa9\xe7\xda\xdf\xb0\xbf\xf0\x0b\xfb\x23\xea\xf3\x00\x1a\xf6\x3b\xf9\x16\xef\xe1\xa2\x3a\xf7\x41\x91\xfc\x40\xb1\x3d\xf7\x66\x69\x34\x12\x28\xf7\x07\x5a\x17\x03\xc5\xae\x40\x07\x35\xc6\xf9\x7a\x54\x31\xef\x47\xe3\x08\x90\x39\x09\xd0\xfa\xc0\xcf\x57\xca\x0b\x52\xbb\xb1\x8e\xd0\x9a\xef\x19\x63\x94\x71\xff\x18\x07\xc6\xb2\x56\xa6\x31\xee\xbf\x62\x1f\x10\x98\x02\xac\xfc\x03\x88\x4d\x06\x56\xdc\x07\x52\x26\xb0\x3d\xb9\x1e\x8c\x97\x95\x7e\xc7\x6b\x46\xfa\x4e\x89\x3f\x01\x37\x3e\x31\x9f\xe0\xb1\x26\x90\x90\x05\xfc\xab\xfc\xb5\xfd\x21\x0d\x70\x70\x59\x07\xa2\x21\xef\xe1\x4e\xd7\xfa\xf6\xcb\xbc\x87\xb3\xa2\x5a\x20\xf3\x1e\xa4\x78\xa8\xe0\x01\xec\xda\x0e\x28\xc6\x02\xdb\xad\x81\x56\xbd\xa4\x6c\x19\x50\xcd\x03\x36\x3d\x06\x7a\xde\x60\x8d\xfe\x81\x3e\x1c\x9f\x86\x6e\x01\xd6\xb4\x05\x8c\x12\x98\xdf\x60\x3a\x06\x88\xc9\x06\x6c\xcf\x03\x11\x86\x80\xfd\x04\x20\xb2\x8c\xe3\x65\xf8\x00\x60\xe9\x76\xe6\x03\x48\x79\x82\xf4\x2f\xf5\x4f\xbe\x27\x9f\x3d\x8d\xed\x2a\x29\x00\x22\x27\x03\xc7\xca\xf8\xff\x49\xdf\x39\x56\x05\x78\x76\x0d\x58\xa9\x0a\xd4\x64\xd7\xe9\x40\xd4\xf2\x3f\x84\xdd\x8b\x44\xbc\x70\xdf\xc5\xe3\x33\xa1\x0b\x73\x37\x8c\xc7\xaf\x78\x0f\x0d\xfa\x7d\x54\x08\xfc\x76\xaf\xa8\x26\xc8\x38\x67\xee\x72\x40\xa1\x9a\xf5\x59\x5a\x39\x03\xe9\xd7\x81\x2e\x4a\x40\x72\x1b\xd6\xe9\x92\x9e\xdb\x90\x32\x20\x66\x2d\x30\x4a\x0f\x88\x2a\x03\xc6\xab\x02\x61\x8b\x00\xcb\xe5\xc0\xf2\x21\xc0\x2c\x0b\x20\x28\x95\xb1\xbf\x65\x6b\x58\x03\x40\x3a\xe5\x49\x5f\x69\x59\x05\xfb\xd2\xf2\x57\xac\xb1\x12\xf2\x94\xf7\x8b\xe5\x6f\x59\x2f\x67\xb9\x29\x70\xbd\x3f\x73\x68\x9e\x5f\xff\x9a\xff\xb2\xf8\xa8\xe0\x01\x34\xd0\x81\x70\x12\xbc\xc2\x87\x02\xc7\x92\xf9\x2f\x0d\xfb\x7d\x9c\xfd\x5b\xd8\x2f\x5e\x1f\x12\xfd\x0e\x64\xfe\xc7\x57\x7a\x07\x0f\x99\x6f\x96\x14\x0a\xb4\x6a\x0f\xc4\x8f\x07\xba\xbe\x07\xa2\x8b\x00\x8d\xa7\x40\xb8\x11\x30\x54\xb7\x0e\xf7\x97\xf9\x0f\x52\xae\x6c\x57\x0d\x2c\x75\x96\x72\x7c\xc0\x2f\x0c\xf0\x2d\x61\xff\x8d\xb0\x02\x02\xdc\x81\xd4\xb5\x80\xbf\x35\xe7\x20\xfe\x76\x9c\x99\xfa\x7d\xe0\x79\x90\x4e\x89\x37\x6a\x00\xff\x32\xe0\x85\x7e\x1d\xff\x65\x91\xb8\xc7\x2e\xeb\x7e\xc8\x76\xcb\x78\xb8\xcc\x07\xa8\xf5\x83\x86\xba\x17\xf7\xff\xdb\x0f\xf6\x0b\xbc\xfb\x2b\xfe\x87\xa8\x3a\xca\xba\x0f\xd2\xfa\x55\x7c\x03\x44\xf7\x05\xda\x39\x31\xcf\xa5\xa7\x35\x10\x32\x05\x18\x5c\x0d\xf8\x0f\x05\xf4\x27\x00\x3e\x9b\x81\x09\x96\x80\x77\x18\x63\xbb\xde\x8a\x80\x8b\x35\xe0\xf9\x09\xf0\x19\xca\xaf\xa3\x3c\x80\xc5\xaf\x80\xd4\x9f\x81\x45\x7e\x40\xae\xad\x74\x3e\x66\x3d\x2d\x69\x3c\x3d\x95\x63\xca\xad\x6a\xe6\x47\xbc\xf8\x82\xff\x22\x3f\xf7\x86\x76\x5b\x6b\xd7\xe7\x03\x34\xf4\x83\xcb\x2f\x78\x94\x71\xef\xca\x9e\xc2\x0f\x04\xee\xbd\xe7\x7f\xf0\x3f\xd6\x96\xd7\xcd\x03\x04\xde\x2b\xe5\x27\x81\x1b\x80\x8e\xbd\x01\xbf\x66\x40\xbf\xd3\x80\xf7\x04\x60\x78\x38\xe0\xa9\x0d\x98\x2c\x01\xe6\xcf\x02\xac\x16\x01\xf3\x8e\x02\x4e\x57\x00\x37\x3d\xbe\xd9\xe8\xa6\x0a\x44\x44\xf1\x5e\x92\x54\x0d\xb8\xb5\x03\xa4\x93\x9b\x93\x1a\x50\x52\xce\xb1\x55\x9a\x07\x87\x0f\xc0\xcd\x96\x80\xd3\x13\xe0\x85\x19\xe0\xbc\xf4\xbf\xed\x9e\x2c\xfc\xc2\xe4\x44\x7d\x1e\xc4\xff\xe4\xbf\x08\xfd\x93\x7d\x62\x7f\x95\xf9\x1f\xf9\x02\xff\xdf\x22\xfc\x60\xc3\x53\x1e\x65\xdc\x3f\x46\xc4\xdd\x40\x31\x5f\x52\x7c\x6a\x57\x09\x78\xa6\x33\x4f\xdb\xf5\x06\xf3\x62\x9c\x34\x59\x9b\xc1\xe9\x31\x30\xf9\x0d\xe0\x14\x07\x38\x0c\x04\x1c\xa5\x79\x98\x0e\xcc\x1e\xc6\x1c\xa8\x59\x53\x81\xb5\xc3\x98\x33\x93\x6d\x05\x4c\x97\xd6\xc5\x2a\x60\x7a\x6f\xe0\xb4\x26\xeb\x41\x48\xfb\xa6\x6d\x26\xf0\xd2\x14\xb0\x49\x63\xee\x78\x43\xbb\xc7\x98\x08\xfe\x83\xd0\x81\xd0\x5a\xc7\x63\x43\xdd\x83\xb3\x42\x17\xa3\x21\xff\xa5\x56\xff\x44\xc4\x85\x6f\xf1\x3f\xe2\xc5\x6d\xe5\x08\xd1\x27\x45\xae\x4e\x2f\x54\xe5\xbe\x63\x6e\xc7\x81\x4e\x0a\x80\xc3\x7b\x40\x43\x0b\x98\x71\x15\x18\xe1\x01\xd8\xad\x00\xcc\x8a\x80\xa9\xbd\x81\x99\xff\x02\x36\x37\x00\xcf\x55\xc0\x14\x07\x20\x74\x33\xf7\x2a\x4c\xd2\xe1\x1c\x6c\x8b\x64\x9f\x26\xaf\x8b\x09\xb3\x39\x3e\x4c\xf4\x04\x6e\x36\xe7\xb3\x8c\x94\x1b\x4b\xcb\xf8\x53\x0f\x60\x8c\xe0\x83\x0d\x13\x3c\xb9\x01\xce\xf5\xf9\x0f\x7d\x45\xfc\xf8\x4a\xff\xa5\x81\xfe\x89\xcc\x7f\xd9\x2d\xd6\x8f\xcc\xff\xd8\x24\xf8\x10\xb5\xfc\x0f\x31\x2f\x2b\xcf\xf3\xb8\x5c\xc4\x53\x1f\xe1\x17\x2e\x82\x37\x34\xdb\x19\x68\x15\xcc\x1c\x20\xb5\xcf\xcc\x3d\xd7\x4e\x05\xcc\xf3\x01\x93\x67\x80\x99\x2e\xf7\x65\x1c\xdf\x17\x58\x30\x1b\x18\xe7\x05\x2c\xfb\x0e\x18\x73\x8f\xe7\xc1\x30\x14\xc8\x36\x03\x0c\xf4\x81\xd2\x9e\x80\xfe\x51\xe0\x54\x7b\xce\x4d\xa4\x38\x39\xb2\x1c\x78\x16\xc9\x7c\x08\x69\x1e\x06\x09\x9d\x9c\x3e\xa2\x5f\x90\x5a\x08\x8f\xdd\x04\xff\xbe\xb3\xe0\x93\x5d\x14\xfc\xd9\xff\xc9\x7f\x19\xc7\x63\x43\xfe\xc7\x5a\x61\x6f\x9c\xe0\xc5\xc8\xfc\x8f\x00\x51\x9d\xf7\x10\xef\xeb\x28\x6e\x33\x5b\x95\x00\x8a\xd2\x73\x75\x01\x3a\x45\x01\xe3\x5e\x03\x03\x1f\xf2\xf3\x1b\x53\x05\x8c\x96\xf2\x89\x70\xe6\x66\xcf\x9b\x0b\x0c\xfb\x0e\x08\x2a\x06\x74\x77\x31\xb7\x54\xcb\x13\xd8\xdc\x1d\x18\x7c\x18\x28\xba\x0c\x0c\x0c\x00\x8e\x1b\x01\x03\xcd\x80\x6b\x63\x81\xbe\xd1\xc0\x23\x03\xa0\xcf\x19\xe0\xef\x93\x80\x5a\xf3\xfa\xf6\xaa\x08\x9e\x4c\x9b\xe9\x3c\xb6\x70\xe0\xb1\xb6\xff\x51\x03\xfd\x17\x99\xff\x20\xeb\x9f\xd4\xae\x03\xf1\x5a\xe6\x7f\xc4\xa7\x32\x4e\x1e\xad\xcf\xb8\x79\xd0\x0c\xfe\xb9\xac\x83\xe2\xb6\x9b\xc7\x99\xaa\xdc\x27\xc7\x4c\xc4\x1f\xc3\x46\xb0\x6c\x05\x60\xe4\x0c\xc5\x3e\xbd\x8f\x01\x3a\xaf\x95\x86\xe8\x69\x03\x43\x34\x1a\x2d\xb5\x6c\x0b\xf4\xdf\xd6\x28\xcf\xe5\x31\xd0\xe7\x59\xa3\x1f\xfd\xdb\x03\xea\x27\x1b\x9d\x59\x79\x1a\xe8\x71\xbe\x51\xc1\x46\x6f\xa0\x5b\x97\x46\x5e\x3b\x76\x01\x9d\x3f\x2a\x5d\x38\xfc\x27\xd0\xc9\x54\xf1\xea\xa5\x40\xa0\x83\xa7\xa2\xc6\x3d\x6f\xa0\xfd\x69\x85\x4b\x7f\x2c\x04\xda\x96\xe3\xb4\x64\xa7\xb2\xe0\xcd\x36\xda\xcc\x23\x84\x0e\x25\x84\x9e\x92\x1c\x07\x1a\xda\xdf\x90\xff\xb2\x71\x78\x03\xfb\x4d\x1a\xd1\x5f\x46\x96\x35\x9b\xce\xf6\x33\x4f\xc2\x2b\x5a\x99\x56\xca\xbc\xb9\xdc\x57\x64\x96\x18\xcd\x9d\xda\x52\xbd\xcf\xe0\x00\x37\xca\xe8\x17\xdd\xa1\xbf\x62\x10\xa0\xbe\xa6\x63\x65\x17\x7b\xa0\xeb\xbf\x9d\x8e\xe9\x28\x03\x1d\x57\x75\x56\x36\x1d\x09\xa8\xac\xec\xdc\xce\x01\x40\xeb\x8b\x9d\x35\x17\x3f\x04\x5a\x78\x74\xee\x1e\xdd\x1c\x68\x96\xd3\x69\xeb\xfa\x39\x40\x93\x9e\x9d\x5a\xe4\xdf\x00\x1a\x29\x74\x9c\x7c\x60\x32\xa0\xa8\xd8\xa1\xec\x42\x0f\xe9\xc1\xa9\x5e\xfe\x89\x3e\x49\xd5\xe6\x15\xe5\x3e\x2a\x87\xb8\xde\xd2\x72\x26\x8f\x4d\x04\xbe\xa9\xa4\x5a\x23\x2a\xc8\xd2\x78\xc0\xe8\xff\xb6\x3f\x7d\x70\x63\x42\x13\x52\xda\xb4\xa4\x0c\x3c\x5e\xad\x35\x55\x11\xa3\xab\x79\x0c\xb6\xe8\x4c\x8c\x1a\xef\x07\x9d\xe9\x9d\xdc\x2b\x99\x1f\x32\xbb\x92\x75\x43\xa6\x54\xf4\xa4\xdf\x8f\xa9\x62\xf5\xd9\xc1\x1f\xfb\x51\xdd\xaf\xc3\xf7\x03\x08\x2f\x50\xde\x39\x48\xa9\x6d\x34\xd0\x78\xc0\xa0\xb0\xfe\xd2\xda\x79\x30\x28\x67\x2c\xdd\xa4\x1d\x64\x62\x47\x15\xac\x81\x3f\x2e\xa2\x4f\x1e\xa0\xc7\xca\xe2\x03\x94\x53\x69\xec\xf7\x96\x2b\x62\xfd\xfc\x59\xa7\xb8\xaf\xd7\x59\xda\xbb\xfa\x4e\xf8\x89\xd6\x62\x9f\xb1\xbf\x51\xac\xeb\xdd\x92\xed\xed\x26\xfa\x82\x74\x14\xf8\x6e\x3b\xb5\x2f\xe7\xa7\x96\x07\x28\xf7\x7f\x2a\x6d\x4e\x28\xeb\x86\x27\xac\x03\xb3\xe6\x49\x07\xfa\xde\xab\x0a\x98\x1f\x10\x31\xb5\x3b\x55\xfd\x03\xf6\xa8\x4f\x67\xff\xef\x4b\xd5\x41\x57\x9d\x7e\x94\x69\xcd\xbc\x38\x90\x3c\xc6\xaa\x9a\xf1\x73\xe3\x32\x6d\xfa\xb6\x43\xbf\x1b\x4a\xb7\xf0\xd5\xfb\x0e\xa3\xea\xb1\xf2\x44\xbd\x6d\xfc\x89\xfa\x77\x5a\x11\xfe\xa6\xdf\x9a\xfb\x56\xeb\x57\x8e\xa1\x15\x34\xea\xf6\x34\x42\x10\xf5\xda\x2d\x24\x7c\x6f\x54\x2a\x23\x63\xa3\x0c\xd6\xd2\x37\x19\x29\xee\xfb\x0f\xfb\xc8\x37\x00\x87\x3b\x9f\x25\xfd\x90\xe1\xb3\x7e\x24\xc4\x44\xb7\xea\x57\xca\x6d\x74\x87\x73\x5f\xfb\xc1\x2e\x6c\xb7\x86\xc0\x7b\xd5\xc3\x79\xec\x41\xba\xc5\x3b\x9f\x35\xa2\xfb\xa6\xb9\xdf\xb7\xa1\x2a\x5f\x7a\x42\x27\x62\x15\xa4\x88\xe7\x19\xaf\xde\x8b\xe6\x23\xba\xd7\x40\xda\x59\x03\x13\x18\x8d\x5d\x5c\xa2\x4b\x27\x0c\xd7\xeb\xc3\x08\x0f\xb6\xb7\xe7\x85\x63\xf5\x8a\x75\x43\x4c\xc7\xea\xd3\xef\xf5\x55\xc6\x10\x7f\x60\x40\xf5\x58\x8a\xc0\x1d\xff\x31\xa1\x3a\x28\x66\x4f\x28\xe1\x79\x98\x70\xb6\x0d\x01\xde\xa6\xfe\x3c\x0f\x13\x6e\x30\x63\xc6\xd4\x74\x2a\xdd\xf7\x36\x8d\x5d\x40\xf7\x94\x4d\x5b\x2c\x27\x1c\x67\xfc\x6d\xbe\x39\x3c\xe1\x14\xc7\xec\x71\x3a\xdc\x41\x7d\x7c\xd9\x69\xf2\x9f\x71\xeb\x6f\x52\x8c\x37\x9e\xf5\x8c\xee\xc1\x8f\xd9\xc4\xda\x92\x06\x26\x35\xf5\xf8\x1f\xb2\x2e\x0a\xeb\xc6\x64\xff\xa6\x4a\xdf\x73\x43\x5a\x77\xaa\x4b\xaf\x4d\xed\x4d\x5e\xb6\xaa\xe9\x60\xaa\x96\x86\x4f\xd4\xa4\xf5\x1d\x52\xc9\x76\xfa\x8c\x1b\x49\xb7\x49\xe7\xdd\xe1\x6f\xeb\x1c\x3a\x96\x32\x87\xa9\x46\x63\x69\x1e\x27\x39\xb3\x8a\xc5\x98\x2e\xac\x23\xa1\xbd\x8a\x51\x29\xf5\x83\x16\xf4\x06\x6d\xf4\xa6\x88\xce\x65\x36\xe2\xc4\x62\x7b\x8f\x3b\x6e\xd9\x56\xf6\x23\xcf\xb2\x7d\x38\x9a\xd6\x81\x6d\x95\x35\x21\x8c\x36\xee\x7c\xdf\x7f\xaa\x43\x10\x3d\x09\x5b\xcf\x04\xda\x93\x6c\xd5\xb2\xc8\x73\xad\xee\xed\x22\x5c\xdf\xda\x80\xef\xfb\x5b\x1e\xbb\x4a\x7a\xf1\x96\xc1\x8f\x49\xfb\x6f\x4a\xd9\x5f\xf4\x73\xd3\xa7\x35\x84\x73\xd5\xf2\x3f\xc4\x7a\x61\xde\x90\xcc\xff\x69\xd8\x07\x2a\xba\x7a\x18\xbd\x7b\x88\x8a\x01\x3d\x25\x59\x07\x66\xc1\x19\x13\xe2\x8d\x38\xa9\x31\x1f\xc6\x2e\xd6\x9c\x78\x60\x16\x51\x16\x64\xd7\x78\x7f\x6b\xfa\xf9\x88\xfb\xd6\x84\xff\x0d\xac\x62\xfe\x40\xa7\x75\x8c\x42\x34\xf6\xb1\xfb\xcc\xf6\x3b\x0a\x45\x47\x7b\x65\xd6\xaf\x76\xc8\xee\x47\x33\xe7\x70\x94\xef\xf3\xda\xbf\xb2\x24\x4f\x74\xcc\x71\x65\xc5\x89\x22\xce\xc9\x1c\x27\xaf\x32\x05\x2b\xad\x57\xf0\xdf\xed\x54\xe7\xf1\x30\x3d\x77\x7b\x9f\x4b\x54\xf7\x9e\x5d\xc9\x3c\xa9\x99\x26\xaf\x29\x82\xcb\x7d\x83\x6a\xf9\x1f\xf7\x6a\xbe\xe0\xc5\x24\x7b\xb3\x2a\x4b\x6d\x1f\xa8\xeb\xfc\x2d\x42\x1e\xb3\x1e\x8c\xdf\x07\xbe\x4d\xba\x60\x9f\x05\x31\xed\xe7\x5a\x59\xd2\x09\x6c\xd6\x1e\x5b\xca\xac\x6c\x0c\xa6\x93\x77\x9a\x26\xd8\x51\x26\x62\xe8\x3d\x8b\x70\x3b\xad\x87\x7c\x1b\x59\xdd\xd8\x89\x4e\xf6\xed\x6e\xb8\xf0\x0e\x5d\xe6\x26\x32\xab\xf9\x82\x79\xea\xae\xa0\x42\x33\xe3\xae\xd2\x9f\xf8\x3b\xee\x95\x06\xe4\x17\xf3\x56\x32\xce\xeb\xfe\x82\x71\xff\xf9\xaf\xfc\x08\x61\x73\x57\x8a\xe9\xcb\x3f\x5f\x4f\xf3\x30\xdf\x9f\x71\xff\x79\x27\xf7\x13\x9e\x33\x2f\x89\xef\x6d\xba\xa5\xde\x66\xe6\x52\xf2\x0b\xb2\xd7\x25\x8c\x75\xdd\x6b\xf9\x1f\x62\x5e\x58\x17\x25\xfe\x84\x01\xed\x63\xb2\x0e\xce\xf2\xa3\x66\xe4\x8d\x4b\x1f\x4d\xe1\xae\x45\x97\xac\x08\xe7\x71\xd3\xb4\x23\x94\xc5\x71\x95\x9d\xd0\xc3\x99\x45\xe8\x90\xf9\x15\x47\x3a\x51\xc9\x3c\x98\x11\x7d\x5d\xf9\xbe\xfb\x3d\x57\xf2\xc2\x6e\xd9\xee\xf4\x54\x5b\x96\x79\x88\x48\x2c\xeb\xc2\x2c\x6e\xc5\xba\x07\x8b\x5f\x32\x1f\xc6\x77\x3c\xe3\x59\xbe\x3d\xf4\x08\x29\xf4\xbd\xcf\xcc\x0c\xdf\x13\xcc\xb4\x59\x52\xc9\xb9\xe9\x92\xd0\x48\xc2\x31\x97\xa8\xa5\x30\xbf\x43\x85\x11\x24\xdf\xee\x7b\x08\x81\xf5\x9d\x7b\x86\x22\x91\x77\xc4\xf5\x11\x34\xc6\x3c\x65\x7e\x4c\xde\x5f\x14\x91\x16\x64\xd7\xc8\xfc\x0f\xfa\x86\xac\x8b\x12\xab\x62\x4a\xee\x16\xf6\x87\x25\xad\xca\x40\xa7\xa9\x14\x0f\x16\xeb\xcc\xa2\xf5\x3c\x6f\xee\x6c\x3a\x81\x38\xbb\x38\x93\x0a\x85\x5d\xb5\x0b\xd9\x6d\xa5\xc2\x3c\x98\x09\x1d\xdd\x08\x17\x1c\xbd\x65\x3e\xad\x03\x9d\x8e\x0b\x09\x1f\xd6\xa8\xf4\xa2\x79\xed\x60\xbf\x88\x7e\xde\x34\x7b\x89\x98\x87\x00\x51\xd9\x09\xbe\x00\xe2\xfa\x07\xc6\x77\x20\xe4\x30\xf8\x7c\xff\x79\xd2\x18\x34\x4a\x8f\xce\x6c\xc1\x35\xe6\xb4\x5f\x04\x17\xce\xa6\x31\xc4\xcb\x8b\xf0\x97\x65\xc6\x61\x54\x33\x5b\xe6\x9f\x44\xdf\x3c\x58\x6b\x0b\xad\x93\x10\x8b\x62\x5a\x17\x21\x95\x27\xa9\x4f\x46\x60\x42\x15\xd5\x00\x02\x9f\x54\xd3\x3c\x05\x78\x30\x8f\xd0\x2f\xbd\xa6\x1e\x2f\x86\xe7\x25\xf4\x85\x0d\xed\x4a\x0d\xfb\x41\x79\xb0\xbc\x09\x5c\xe0\x6a\xc4\xab\x6d\x01\xed\xb0\x36\x45\x0b\xc8\xae\x49\xed\x3c\x28\x5f\x32\xfa\xb8\x88\x76\xa9\x11\x73\x99\x07\x33\xe8\xaa\x1f\xdd\x36\x57\x1f\xe1\x4f\xfb\xa7\xca\xb4\x40\x3a\x89\x2b\x1e\x5e\xd6\x85\xed\x97\xfb\x24\x45\x6c\x57\xa4\x1b\xd1\x51\xfe\xac\xcc\x16\x31\xad\x3f\xed\x24\x51\x67\xf5\x28\xe3\x88\x3a\x33\x99\xec\x8b\xcc\x9b\x45\xeb\x3d\xc6\xdd\x93\xbe\x77\x4c\xea\x72\xca\xe1\xa3\x75\x18\x71\x8d\xba\x92\x49\x99\x49\x14\xf5\xf0\x06\xa2\x87\x1c\x63\xa5\x2b\x8f\xcb\x54\x23\x88\xe8\x70\x97\x78\x56\x61\x6a\x2f\xe8\x7d\x43\x9d\x3f\xd3\xbd\x70\x99\x17\xc3\xba\x28\x81\xd5\x8e\xdb\xd8\xfe\x39\xd6\xec\xb5\xf3\x04\xfb\xcc\x9d\x32\x4c\x87\x8d\xfc\x7c\xa7\x75\xf7\xa4\xe7\x6f\x19\xc1\x19\xf3\xc4\x4a\xbf\x48\xf6\x83\x40\x5a\x2f\x3a\x8b\x03\xe9\xa4\xd6\x6f\xe9\x32\xea\xbf\xd8\xcd\x6b\x39\xb1\x5d\x5b\x96\x86\xb3\x7b\x23\x5a\xdc\xeb\x5e\xf9\x91\xc7\xb8\xcb\x4a\x74\x66\x91\xf9\x30\xf1\x36\x1c\x27\x13\x96\xea\x8d\xe4\xdf\x73\x3f\xb1\x84\x01\xb3\x69\x3e\x12\x2e\x2d\x24\xfe\x5c\x42\x64\x30\x8d\xf1\xf7\x18\x81\x4f\xf0\xdd\x78\x9f\x7f\xce\x7a\x52\x89\xde\x87\x49\xb1\x24\x7e\xd9\x05\x9a\xe7\x38\xc3\x3b\xc4\xaf\x5d\xe9\xf2\x0b\xcd\xd3\x8a\x9a\x0f\xb4\xd2\xeb\xf3\x62\xe4\x7e\x58\xde\xda\x0b\x68\xe1\xba\x2f\xf4\xa4\xf5\xed\xe4\xe7\x45\x79\xd2\xac\xd0\x25\xac\x8b\xe4\xcc\xbc\x90\x49\xbb\x18\x75\x37\x2e\xe3\xae\x3d\xa3\xd6\x86\x92\x77\x0e\x29\xe3\x2e\x04\x7d\xed\xa3\xb9\x1f\xcc\xb0\x18\xda\xf5\x9b\x57\xad\x14\x78\x66\x82\xa8\x54\x35\xe4\xc3\xac\x7b\xc3\x38\x6f\xaa\x51\x3f\xc2\xa1\x53\xee\x31\xee\x9f\x6a\xc8\x91\x2a\x55\xc7\x8e\xe2\x5f\xea\x1d\xee\xe0\x94\x52\x15\x44\x91\x39\xf5\x0d\xbf\xf3\x3a\xab\x0d\x54\x1b\x49\x5d\x91\x4f\x91\x39\x35\x92\xef\xce\x25\xbf\x38\x4d\x35\xa5\x24\x9d\x1b\xc4\x84\x5e\x13\xfa\xa8\x25\xbf\x7e\x4f\x71\x25\x61\xca\x67\x8a\xbf\xcc\x8b\xf1\x19\xea\x49\xcf\x6b\x81\x9b\x37\xc5\x85\x39\xc9\xbe\xe4\xff\x0e\xe3\x02\xc8\xef\xa7\xdd\x0b\xa2\x6f\x29\xf3\x60\x26\x8c\x08\xa3\x28\x66\x18\x10\xc5\x59\x09\xdd\xb0\x03\x06\x4d\x65\xbe\x40\xcf\x27\xcc\x87\x51\x51\x4f\x20\xff\x6f\x62\x91\x24\x4e\xea\xeb\xc4\xc9\x64\x83\xa8\x78\x65\x18\x34\xa6\x1d\x44\xe6\xc3\x64\x46\xf4\xa3\xf5\x9f\xf1\xdb\x08\xca\x87\x33\x95\x39\x03\xc9\x70\x9f\x41\x19\x6d\xc6\xaf\x7c\x77\x21\xc3\x93\xf5\x72\x6a\x75\x62\xde\xa4\x93\xe7\x66\x54\xf2\x59\x20\xd3\xb0\x9c\x3a\x53\x64\x54\xf0\x19\x32\xbd\xfa\x2a\x79\xfc\x46\xbd\x47\xeb\xf8\xf5\x5b\xfa\xa6\xeb\x8f\x72\x9c\x64\x5e\xcc\xc2\x7f\x7d\xb9\xef\x45\x75\x20\xd9\x2f\xeb\xe1\xcc\x9c\x1c\x46\xde\x69\x33\x97\x1f\xe3\xe4\xaa\x68\xfa\xbd\xc9\xfc\x18\xb2\x53\xef\x59\x1c\x45\x35\x5d\x53\xd6\xc3\xe9\xf7\x8a\xd9\x9d\x3d\xaa\xf8\x79\xb7\xf5\x4e\xa6\x7c\x42\x69\x5d\x9a\xe8\x70\x9b\x21\xf8\xb3\x59\x03\x78\xcc\x29\x6f\x44\x8c\xca\x5c\x25\xce\xdc\x73\x87\x73\x1e\x95\x3b\x7c\x04\x45\xd2\x9c\xa2\x89\x14\xa1\x73\x87\xcd\xa0\xb8\x98\xd3\x9b\xf9\x83\xb9\xb7\xb8\x4f\x4e\xee\x40\xc6\xfd\x73\x05\xe3\x28\xd7\x35\xc7\x86\xff\x7f\x29\xf3\x6c\x6c\x8e\x13\x32\x9f\xa3\x50\x45\xb5\x8f\x3c\xa3\x27\xf4\x64\xb2\xee\xbc\xa2\x15\x5b\x5f\x17\xc5\xfd\x7d\x30\xed\x32\x73\xee\x84\x51\x65\xa5\xa1\x1e\xce\x14\x8d\x95\xb4\x6b\x9b\xda\xc7\x93\xb7\x8e\xdd\xcb\x7a\x21\x72\x7f\xa8\x21\xf7\x92\x29\xbf\xd0\x10\x7c\x98\xae\xad\x58\x3f\xa4\xcd\x13\xe6\xc3\x28\xc4\xc8\x15\xab\x1c\x47\x1e\xf3\x8f\xf0\x58\x60\xc8\xca\x9d\x32\x1f\x66\x7b\x01\xef\x9b\xdb\x4f\x8c\xa4\x9d\xab\xa0\x84\x33\xb5\x82\x75\xb6\xb4\x7f\x14\x1c\xe1\x3e\x39\xdb\x35\x7c\xc9\xbf\xb7\xe7\x85\x93\x1f\x6d\x5f\x24\x74\x62\xfe\xd9\x42\xf1\xb3\xe0\x65\x11\x65\xbc\x85\x2d\x8e\xd1\x8a\xdd\x3e\xe4\x12\x65\xca\x05\xf7\xef\xd2\x3c\x17\x74\x79\xc1\xfc\x98\x6e\x9f\x88\xc9\x90\xab\x28\xf9\x85\x4b\x4e\x38\xc5\x77\xc7\x5b\x31\x54\x29\x98\x59\xc1\xfd\xb0\xac\x17\xc7\x93\x97\x4e\xce\xe2\x6c\xde\xb8\x8c\x9f\xb3\xcc\x83\x19\xd1\x81\xf9\x11\x83\xad\xb9\x8f\x4e\xaf\xfb\x9b\xe8\x94\xd7\x49\x6b\x13\xed\x86\xad\x0e\xb1\x3e\x0c\x16\xe4\x09\xa4\x43\xe6\xc3\xec\x14\x9d\x7b\x8b\x12\x1b\x53\xfc\xab\xe5\xc3\x94\x30\x93\xbf\x78\xe3\x30\xca\xb0\x8a\x5d\x99\xe1\x5a\x74\xd7\x96\x32\xb4\x22\x70\x86\x52\x92\xbb\x84\xfc\xbd\xd8\x30\x9c\x9e\x5c\xd1\xd1\xd5\xc4\x74\x2c\x5a\x9b\x49\x79\x45\xd1\xb3\x5d\x14\x37\x8a\x1a\x1f\xa2\xc8\x56\x92\xf4\x1d\x7d\x93\xdd\x31\x3f\xd0\xba\x28\xae\xe6\xbc\x6a\x77\xd1\x3f\xdc\x87\xca\xa2\xe6\x43\x5d\x5f\x2c\x7b\xd3\x44\xda\xbd\xa6\xed\x60\x16\x9a\xe5\xfc\x14\xba\xd1\x68\x66\xb0\x8e\x4e\xc1\x46\x13\xf8\x39\xeb\x4d\x60\xfe\x93\x6e\x15\xf3\x7f\x06\x8d\xcf\xa2\xd7\xbd\xfc\xf3\x68\x1e\xe4\x3e\x51\x2d\xc6\x6f\xe3\x1b\x4a\x45\x3b\x44\x25\xb7\x21\x1f\x66\x5f\x84\x12\xad\xf7\x7d\x91\xaa\x94\x4f\x96\x77\xe0\x79\xd8\x17\xc1\x27\x99\xf2\x31\x26\xc4\x7b\x29\x3f\x6e\x43\xdf\x70\x7f\xc5\x1c\x8a\x30\xfb\x1f\x2f\x26\x05\xcb\xfd\x3a\x1c\x99\x0f\xba\xac\xa1\x9d\x7b\xff\x8f\x99\xac\x33\xb3\x67\x27\xeb\xc8\xe8\x1c\xa2\xf9\x2a\x3f\x72\x81\x76\xec\x72\xbb\x5b\x14\x6f\xf7\x55\x3c\xa7\x38\x5a\x56\xc5\x1a\xe6\x65\x4d\xa5\x75\xf1\x42\x95\x71\xda\xa7\x2f\x79\x6c\xc8\x7b\xb8\x9e\x09\xa8\x7e\x07\x5c\x8e\x00\xba\x69\xf0\xbd\x5e\xe9\x24\x7a\x62\x1d\xd0\xab\x15\x70\xe4\x28\xd0\xef\x21\xb0\xff\x2a\xf7\x89\x29\x3a\x06\xe8\x54\x03\x3b\x9f\x03\xfa\x8b\xb8\xaf\xff\x98\x2a\x60\x4b\x1e\x30\x51\x85\xf5\xfd\x2d\xac\xeb\x70\xff\x8c\x89\xc0\x9c\x1b\xc0\xc6\x59\x7c\xdf\x3f\x5d\x19\xf0\xeb\x0e\x6c\xf8\x01\x08\x9b\x07\xa4\xcd\x60\xac\x2e\x35\x1d\x90\x9e\x50\x7a\x1c\x90\x15\x08\xa4\xa9\xb1\x86\x44\x86\x11\x70\x50\x93\xeb\xc5\xe7\x9d\x81\x2d\xd7\xf8\xbb\x6f\x19\x0c\x3c\xf7\x03\x72\x16\x00\x9f\x7e\x06\x32\x44\x7d\x32\xdd\xe9\xbf\xf9\x0f\x2f\xac\x18\x5f\x78\xf4\x2b\xd0\x3a\x9e\xfb\x9d\xb4\x7e\x58\xc7\x7b\xb8\xba\x1c\x68\x53\x0c\x5c\x30\x04\xda\x2f\x05\xce\xa8\x03\x5d\xae\x03\x15\xba\x40\x0f\x1f\xe0\x50\x35\x6b\xff\xee\x55\x07\x06\x5a\x01\xbb\x26\x02\x43\x2e\x03\xf9\xb7\x80\x61\xb7\x81\xbc\x04\xc0\xe0\x10\xb0\xe5\x05\x30\xfe\x03\x90\xb1\x1f\xb0\x08\xf9\x1a\xf7\x4f\x7d\xc9\x77\x36\x53\xcf\x80\x98\xab\x6b\x2a\x81\x20\x03\xd6\xb6\x97\xe6\x21\x69\x08\xb0\x46\x1d\x48\xea\x01\x6c\x58\x2f\xed\xb6\xc0\x8e\x0b\x7c\x6f\xfa\x60\x1b\x20\xc3\x0b\xb8\x98\x00\x6c\xba\x04\xdc\x59\x06\x6c\x1e\x06\xbc\x2c\x67\x5e\x44\x8d\xd5\xd7\xf8\x77\xc3\x3e\x00\x32\xff\xa3\x7a\x00\xd0\xc4\x11\xf8\xa9\x05\xd0\xe8\x36\x70\x33\x07\x68\x7e\x0a\xb8\x52\x0d\x34\xbf\x01\x9c\x4b\x03\x5a\x2d\x61\x6c\xb9\x5d\x13\xc6\xfd\x3b\x27\x02\x7b\x3f\x02\xdd\x43\x81\xa2\x16\x40\xaf\xf6\x40\xc1\x3d\xd6\xc3\xc8\x8d\xe0\xfb\xdc\x5b\x22\xb9\xe6\x9a\xd9\x07\x30\xd2\x05\xd2\xd5\x01\xb3\x02\x20\x75\x10\x60\x63\x51\x87\xfb\x27\xc5\x49\x19\x3f\x90\x90\xce\x18\x47\x5c\x11\x63\x77\xab\x0d\x81\xe8\xee\x5c\xa3\x5d\x1d\x00\x24\x54\xf3\xce\xb3\x7a\x19\x50\xe0\x0c\xa4\x84\x03\x07\xe3\x99\x3f\xf1\x9d\x15\xe3\xea\xb7\xaa\x81\xb4\xdd\xc0\x8b\xf1\x5f\xf7\x81\x68\x68\xbf\xac\x83\x20\xf3\x3e\xfe\x17\xef\xe1\xcc\x35\xa0\xf9\x52\xe0\x98\x13\xd0\x7c\x37\x70\x40\x1f\x68\x17\x04\x94\x7d\x07\xa8\x2e\x60\xbd\x83\xee\xe7\x81\xbc\xeb\x8c\xeb\x4a\x51\x52\xda\x68\xe5\x3e\x07\xe9\xd7\x01\x43\x67\xf6\x73\xe9\x44\x93\x50\xcc\xf7\x35\xe3\x8e\x01\xd3\x77\x01\x31\x6a\x80\x7d\x19\xdf\xff\x96\x4e\x66\xab\xa6\x32\xf6\x11\xfb\x07\x10\xbe\x56\xca\x0a\x81\x35\x97\x81\x15\xef\x98\x13\xb3\xca\x0b\xc8\x6f\x05\x24\x1e\x05\x0e\x26\x01\x89\x29\xc0\xd9\x35\x80\x14\xd5\xee\xb6\x60\xfb\xff\xac\x06\x92\x6a\xb8\x7e\xdf\xd0\xfe\x5a\x1d\x00\x81\x03\xcb\x78\xff\x4f\xe2\x82\xf7\xb7\x78\x0f\xa7\x7a\x01\xd2\xf9\x50\x3a\xe3\x4b\xf3\xb2\xcf\x83\xfd\x48\xee\xf3\x50\xf0\x07\xeb\xec\x64\xdd\x60\xff\xc8\xb8\x0b\x68\xfc\x0c\xa4\x2d\x00\xb4\xf4\x80\xb5\xaf\x19\x63\x58\xa3\x0d\x18\x57\x02\xf1\x6d\x80\x49\xad\x80\xe8\x34\xc0\x7a\x11\xe3\xfa\x8e\x16\x40\x54\x73\x60\xbe\x2a\x10\x61\x0c\x2c\xfe\x08\x44\xbe\x01\xc2\x4c\xf8\xe7\x09\x7f\x02\x11\x3f\x00\xe9\x6e\x8c\x97\xe7\xbf\x07\x56\x8c\x06\xf6\xbb\x01\x31\x4d\xb8\x5f\xce\xca\x6e\x80\x74\xde\x96\x72\x4d\xc9\xd7\xe3\x9c\xff\x6f\xfb\x65\x1e\x80\x3c\x0f\x77\x23\xea\xdb\x2f\xf3\x1e\xce\x8b\x6a\x89\xcc\x7b\x38\x22\xea\x99\xb5\x7d\x1e\xa2\x81\xa6\x39\xc0\xd6\x39\xdc\x67\x68\x53\x20\xd0\xa9\x1f\xf7\x2d\xe9\x69\x0d\x24\x9f\x06\x06\xc5\xf1\x7a\x1f\x66\x0d\xc4\x0e\x03\x0c\x5e\x01\x31\x4a\xc0\xc4\x13\x40\xd8\x3d\x60\x4a\x05\xb0\xec\x12\xe3\xdd\xc1\x16\xa0\x9b\x0e\xc1\x76\x80\xb7\x07\x10\x7a\x8e\xf9\x41\x61\xff\x00\x89\x3b\x18\xe7\x4f\xd7\x01\x42\xff\x04\xb6\x2f\x01\xc2\x36\x01\xfb\x7c\x81\x88\x5d\xdc\xb3\x2b\xc2\x89\xfb\xc4\x48\x47\xed\x17\x3f\x7f\xa1\x03\xf1\x0d\xfd\x8b\x85\xfa\x0d\xf0\xee\x86\x7d\x5f\x1a\xe8\x5e\x1c\xfb\x85\xc7\xf2\x66\x62\x17\xfc\x97\xc7\x6d\x02\x1f\x95\x76\xd1\xc6\xab\x81\xb4\x3e\x40\x9b\xb9\x40\xea\x3b\xa0\x9b\x33\xfb\xb3\x34\x1f\xb1\xb9\x52\xae\xc1\x7a\xf7\xa3\xb2\x80\x70\x2b\xc0\xb8\x14\x58\xb6\x0b\xb0\x88\x05\x42\x5a\x03\x33\xd3\x81\x00\x7b\xc0\x65\x01\xe0\x67\xcf\x18\xb6\x7f\x08\xb0\xcc\x10\x08\x2e\x01\x56\x37\x05\x82\x5e\x00\x1b\xf7\x03\xc1\x0f\xb9\xb6\x1c\x18\x0a\x1c\x18\x08\x2c\xbb\x07\x5c\x38\x01\x2c\x6b\x01\xfc\x14\xc3\xff\xe7\xd5\xcb\x6f\xeb\x40\xcc\x7b\x51\x1f\x0f\xff\xe9\xe6\x37\xd6\xc3\x37\x74\x2f\x64\xfe\xc7\x4e\x91\x1d\xe6\xaa\x73\x7f\x98\x0c\x81\xff\x4b\xf1\xbe\xc9\xf7\x75\x7a\x07\x2b\x27\x00\xdd\x0a\x80\xe8\xf6\x40\xff\x16\x40\x48\x22\xa0\xab\x06\x04\xb7\x04\xc6\x2c\x03\xfc\xb3\x81\x49\x46\x80\xcf\x51\xc0\xd6\x07\xf0\x75\x06\x9c\xee\x01\x8b\xa7\x02\x1e\xc6\xc0\x52\x25\xd1\xff\x81\x94\x34\x01\xdf\x6d\x1c\x27\x97\xfe\x01\xec\xf4\x05\x96\x18\x33\x33\xd5\x4f\x68\x18\xf9\xd7\x00\x3f\x47\x00\x52\xf2\xf3\xfe\x44\x9d\xdf\xcb\xcf\xfd\x5b\x3a\x10\x3f\xfd\xdc\xc0\xfe\xab\xf5\xfd\xe0\x2b\xdd\x8b\x06\xfd\x2e\x72\x44\xd5\x75\x83\x38\x45\xae\x71\xe5\x78\xb2\x62\x17\xd0\x4c\x03\x08\x8f\xe4\x7e\x64\xcb\xfc\x01\xf5\x5b\x40\x40\x20\x30\xe4\x2d\xb0\x64\x1e\xa0\x37\x15\xf0\xfe\xc4\xbc\x18\xcf\x2c\xee\x3f\xb7\xf0\x4f\xc0\x61\x0d\x30\xef\x06\xf7\x7f\x98\x6f\x07\x04\xb5\x03\x3c\xad\x80\xb8\x7f\x01\xcf\x59\x3c\x0f\x9e\xb9\xc0\x0e\x1f\xc0\x73\x36\x70\x30\xa8\x4e\x07\x62\xd1\x34\xe0\xc1\x75\x60\xf1\x10\xe0\xc3\xcf\xc0\x5c\x8d\xfa\xfc\x8f\x86\xfa\x17\x53\x8e\xf0\x58\xdb\xf7\xe5\x5b\x7e\xd0\xa0\xef\xc9\xff\xe2\x7f\x24\x08\xfc\x37\x32\x8f\xc7\xa0\x07\x40\x4b\x5b\xc0\xef\x01\xd0\xf9\x27\xc0\xab\x35\xd0\x57\x7a\xd6\xbe\x80\xee\x09\xc0\xbd\x08\x18\xfb\x16\x70\xb7\x64\x4c\xdb\x35\x01\xb0\xef\x0a\xb8\x3e\x67\x1e\xe1\x9c\x37\xcc\xaf\x9d\xdb\x8a\x7d\xcc\x51\xca\xa1\x0e\x03\x4e\x41\xc0\x76\x77\xc0\xfe\x0f\xe0\xe0\x55\xe6\x43\x5c\x50\xab\xd3\x81\x98\xb3\x03\xf8\xd0\xe5\x6b\xfe\xc7\x94\x7c\x1e\x65\x3d\x04\x99\x0f\x50\x6b\xbf\xa8\x96\x9c\x11\xfa\x28\xdf\xec\x7b\x22\xf0\xfc\x3c\xc1\x8b\xca\x14\xa7\x85\xf5\x42\x07\x40\xe6\x7f\x84\x09\x74\x62\xe9\x78\x40\xe9\x31\xe0\x1d\x07\xb4\x3f\xc3\x76\xf7\x78\x03\xb8\x0c\x05\x06\x47\x01\x8e\x19\xc0\xa8\xc7\x80\xc3\x68\xee\x33\x36\x33\x95\xf1\x6e\xfb\xa7\xc0\xfc\x35\xac\x31\xb5\x34\x07\x98\xee\x0d\xc4\x26\x02\xd3\xb6\x0b\x1d\x08\xe9\x24\xe5\x0c\xd8\x56\x01\x07\xbf\xab\xd3\x81\x98\x6e\x07\xdc\x33\x02\xa6\x0e\x00\xfe\xd4\xf9\xa2\xff\x49\x83\x3e\x20\x32\x1f\x40\xe6\x41\xc8\xfd\x7f\x64\x1e\x94\xec\x07\x87\x85\xfe\x81\xac\x7f\x52\xeb\x07\x32\xff\x43\xf8\x4d\x2d\xff\x43\xee\xca\x2d\x74\x53\x64\xfd\x0b\x9f\x4c\x1e\xe7\x9d\x66\xbd\xa9\x39\xef\x81\xce\x53\x81\x99\x7b\x80\x7e\xeb\xeb\xf8\x0f\x33\xec\x80\x89\x4a\x80\xb5\x29\xdb\x66\xdd\x1a\x70\x6b\x0d\x58\x2a\x71\x1e\x61\x61\x0c\xac\xbc\x07\x98\x67\x32\xc7\xd8\xac\x05\xeb\xa3\x4c\x3a\x07\x1c\x6d\x01\x98\x2d\x01\x2e\x1f\x03\x4c\xcb\x80\x7b\xad\x39\x87\x7f\x1f\x5e\xf7\xbc\xe5\x3e\x20\xba\x63\x04\x0f\xe2\xb7\xfa\x7c\x80\xff\xa9\x7f\xf2\xfa\x1b\x7e\x20\xf3\x3f\x04\x56\x2a\xeb\xa0\x44\x8b\xbf\x93\x79\x30\x72\x75\xda\xb1\x90\xc7\x69\xd7\x81\xd6\x27\x00\xdb\x00\x40\x0a\xb1\xe6\x4b\x80\x21\x79\x80\xd9\x51\xc0\xf0\x32\x60\x1a\x0c\x58\xc5\x70\xcc\x98\xeb\xca\xbc\x0e\x69\x1e\xc6\x97\x32\xe7\xce\xd0\x9b\xb9\xd7\x86\x67\x79\x1e\xf4\x4b\x81\x43\x25\x80\x41\x37\xee\x75\x68\xa0\xc7\xfe\x20\x3d\xe7\xb7\xaf\xeb\xf4\x2f\x64\xde\x47\xaf\xcf\x3c\x76\xbf\xc8\x63\x17\x11\x47\xcf\x7e\xfc\x6f\xfb\x65\xdc\x73\x97\xe0\x79\xc8\xb8\xef\xb7\xf8\x1f\x72\xff\x93\x30\xf1\x3e\x32\x0f\x66\xbe\xe8\xce\x3c\x5b\xac\xb3\x29\xbe\x80\xd2\x55\xc0\xb4\x19\xe7\x19\xc6\xff\x00\xfd\xcb\x01\xa3\x95\x80\x7e\x25\x30\xda\x0c\xb0\x38\xc8\x39\x97\x53\x15\x30\xe2\x14\xe0\x37\x96\xb9\xfc\x2b\xc6\x03\x3a\xae\x9c\x2b\x6a\xde\x05\x76\x44\xf3\x5e\x2c\x9d\x2f\x06\xaa\xf1\xba\x18\x30\x07\xb8\xeb\x0c\x68\x5c\x07\xde\x0c\x01\x7a\x79\x08\x7b\x9f\x09\x1e\x84\x22\x8f\xad\x84\x7f\xb4\xb8\xc7\xe3\x49\xf5\xfa\xf6\x7f\x53\xff\x44\xe4\x53\x5f\xf1\x3f\x04\x8f\x24\x4a\xf0\x06\xbe\xe2\x3f\x88\xd3\xf6\x0c\xf1\xfb\x09\xa2\xaf\xd4\xe8\x6d\x40\x9b\x6d\xc0\xc8\x7e\x40\xaf\x5e\xc0\x30\x5d\xee\x3f\xa7\x55\xc2\xdc\x1f\xc9\x3e\x69\x1e\xfa\xe7\x01\x4b\x54\x00\x8d\x8e\xc0\x0a\x3b\xa0\x97\x22\x2b\x3f\xf7\x1c\x0f\x14\xe8\x00\xdd\x97\x30\x87\xaf\x8b\x3b\x70\x21\x1a\xe8\x18\x08\xdc\x99\xce\xb9\xed\x6b\x2f\x40\x55\xe8\xc0\xb4\x10\xf1\xa0\x89\xd8\x1f\x14\x44\x9f\x18\x85\x62\x1e\x1b\xf2\x3f\x1a\xea\x9f\xd4\xae\x83\x06\xfc\x8f\xd5\x22\x9e\xca\xdd\xfa\x83\xa3\x79\xf4\xf5\xe5\x71\x81\xe0\xcf\xd4\xf2\x60\xc4\xdf\x19\x0b\x9d\x11\x2d\x25\xa0\xd1\x5c\x60\xe0\x18\xa0\x6b\x5b\xa0\x6f\x30\xa0\x7d\x96\xd7\xca\xc4\x59\x40\x77\x27\x60\xf6\x62\xa0\x53\x21\xe0\xd5\x0f\xe8\x60\x07\x84\x9f\x03\x54\x1a\x03\xc9\xef\x81\x36\xa3\x81\xdc\xbf\x80\x56\x0b\x80\x3d\xff\x00\xca\x0f\x81\xd3\x0a\x40\xb3\x6d\xc0\x4d\x7b\xa0\xe9\x18\xe0\x97\x85\x40\xe3\x1c\xe0\xd3\xe2\x3a\xbe\xc7\xb7\xc6\xaf\xf8\x1f\x9b\xeb\xaf\x83\x8c\x6b\xf5\xed\x5f\x23\xaa\x8b\x31\xe2\x3c\x12\xf2\x98\xbb\x91\x2f\x09\x62\x3d\x14\x59\x07\xc5\x85\xd4\x92\x80\x69\xd9\x4d\x49\xf7\xc1\xf4\x4c\x33\xba\xff\x38\xc2\x5b\x99\xf0\x75\xf5\xae\x2d\x49\x9d\xba\xc3\xf6\x36\x63\xdb\x79\x02\x6d\xe3\xdb\x1c\x1a\xd0\x08\x68\x11\xd0\x76\xe9\xd8\x16\x40\xd3\x59\x6d\x13\xa7\xb5\x01\x94\xfc\xdb\x2e\x9d\x4f\xcf\xa0\xed\xf4\x10\xae\x7c\x6a\xae\xa1\xb5\xd7\xfa\xda\x16\xf2\xe1\x56\xbf\x95\x52\x0e\xd3\xf2\xbb\x93\x84\x20\xb6\xb4\xbd\x4e\x7b\x5f\x8b\xd1\x4f\xc9\xd7\x9b\x9f\xfe\x9b\xea\x7f\x4d\xc6\x09\xde\xc7\x82\x2f\xf9\x1f\xf2\x58\x52\xf9\x0d\xfb\x45\x3e\xb0\xfe\x08\xf3\x7e\xd6\xa8\xb0\xfe\x4b\x74\x75\x73\xca\x18\x96\xa5\xb5\xa1\x95\xb3\x64\x60\x2b\xfa\xcb\x05\x27\x18\xb5\x76\x7e\xc7\xfa\x19\xd3\xdb\xb0\x4a\xb9\xd9\x22\x46\x27\x0c\x7c\xbb\xd1\xbd\xe0\xfe\x47\xbb\x53\x35\xb5\xdd\xaa\x9e\x39\xfc\x09\xbd\x95\x9b\xd1\xfd\xc4\xde\x7a\xac\x24\xd2\x3b\xc5\x80\x2a\xa2\xea\x33\x59\x49\xa0\xe7\xbd\xf9\xb4\xf7\xa8\x97\xf1\x0d\x52\xb5\x97\xab\xc9\x6e\xb5\x4b\x5b\x08\x61\xe8\x7e\xa0\x84\x2e\x38\x77\xfd\xa7\x82\x9e\x40\xb7\xc1\xd7\xa8\x5e\xdd\xc5\xeb\x09\x05\xe9\x2e\x15\x7f\x93\xc2\x49\x07\x31\x0f\x6d\x86\xf1\xa8\x2c\xfa\xc2\x34\x99\x24\x8d\x0d\xed\xdf\xf4\x0a\x94\x01\xad\xab\x69\xce\x7d\x60\xd4\x99\x07\x23\xf3\x5f\x96\xbb\xa9\xf0\xed\xf1\xf4\xce\x54\xe7\xf6\x9c\xd8\x8d\xef\xff\xb7\x51\xa7\xc8\x30\x63\x0c\xf3\x5e\x26\x29\xf6\x23\xab\xc6\xdc\xe0\xae\xdc\x5a\x5d\x07\x52\x06\xd2\xdd\x66\x08\x45\x96\xc6\x7e\xda\x02\xf7\xd6\x29\x6c\x41\x6b\x50\x7b\x5e\x1f\x8a\x1d\x3a\xdf\x19\x50\xbd\x4c\xf3\x95\x35\x79\x90\x76\xaa\x3b\x21\x29\xda\x3d\x43\xa8\x36\xa0\x95\x98\x40\x95\x3d\xcd\xe6\xdc\xdf\x7f\xf0\x8e\xdd\xb4\x46\x07\x15\x55\x50\x9d\x7a\xd0\x80\xab\x84\x8b\x0c\xc8\x79\x40\x33\x3f\xc0\xfb\x4f\x8a\x55\x7d\xca\xd9\xee\x9e\x83\xff\x1f\x7b\x6f\x1d\x96\xe5\xb6\xfc\x0f\x8f\x5d\x88\x0a\x98\x28\x2a\x58\x98\x84\x28\xd2\xdd\xdd\x9d\x22\xdd\xdd\xa9\x08\x88\x94\x22\x20\x02\x2a\xd8\x85\xdd\xdd\x85\x5b\xdd\xb6\x28\x76\x62\xd1\xb5\xde\x8b\x99\xfb\xd1\x2d\xfb\xf8\x9e\xef\xff\xbf\xb3\xaf\xeb\x5c\x73\x90\x87\xe7\xbe\xd7\x5a\xb3\x66\x66\xcd\x7c\xd6\x67\x48\x8e\xe3\xee\xf3\x12\x2f\xca\x46\x13\xc0\xbc\x7b\xf1\xf9\x81\x88\x4a\xc9\x13\x19\x8e\xb7\xc6\x78\x7d\x90\xd2\x4e\x4c\xc0\x13\x57\x9c\xff\x04\xf4\x8c\xa1\x46\x94\x45\xf4\x91\x9c\x8a\x7d\x74\x9c\xb7\x12\x3b\xbf\x45\x82\x04\x46\x22\x06\x30\x0f\x51\x28\xca\x1d\x84\x1b\x90\x16\x94\xc1\x3c\xff\x14\x63\x59\xb4\xb4\x23\x6a\xe4\xb8\x93\x8c\x22\x17\xc1\x29\xec\x19\xea\x4d\x3f\xd3\x0c\x2a\xae\x93\x45\xdb\xa2\x34\xd2\x08\xcf\x32\x4a\xbd\xdd\x50\x73\x14\x6e\x84\x63\x1d\x4a\xfe\x40\x3a\x56\x0a\x15\xfc\x8b\xf1\xf3\x72\xf5\x94\x01\x95\xcf\x39\x81\x6b\xba\xe8\xdc\x0d\xdc\x2f\x0b\x26\x3f\xc5\x18\x78\x61\xfe\x0f\xf4\x7d\xd2\xbb\x39\xfc\x47\x16\xc9\x19\x5c\xdf\x1c\xe2\x45\x29\xf9\x36\x1c\xab\x7e\x39\xcf\x47\x51\x1f\x90\xf5\xe4\x40\x52\x1b\x26\x63\xa4\x18\xdb\x49\xd9\x74\x1e\x0f\x8c\x8f\xa6\x24\xce\x83\x9b\xe0\x7c\xec\xc6\x6f\x25\x41\x78\x01\x63\xa5\x45\xb8\x1f\xd4\xf3\x09\x37\xb0\x30\x47\x19\xe7\x41\xbc\x4b\x0d\xab\x4d\xe3\xfd\xd5\x70\xd7\x0e\xac\xd0\xe4\x76\xa2\x0e\x87\x2c\xd4\x9a\xcb\x8f\x3b\x4e\x67\x8f\x18\x7e\x52\x57\x64\x21\xd6\x9f\x74\x86\xea\x63\x45\x51\x8f\x11\xcf\xbf\x5e\x12\xd5\xfd\x75\xa2\x52\x71\x26\xb5\xcd\x0a\x11\x17\xa4\xe3\xbf\x09\x33\xcb\x9a\xf1\x87\x31\x9f\xaf\xe9\x7d\x19\xdf\x5c\xb3\x0f\xe1\x83\xd4\xd7\x7f\x46\xdb\xfd\xa7\xbe\x41\x92\x88\x83\xe0\xf5\x81\x5a\x51\x4d\xa8\x9c\x14\xae\x2b\x49\x9c\xbe\x24\xf5\x01\xa9\x58\x80\x38\x21\xff\x95\x8b\x30\x42\x72\x7f\x49\xeb\x68\xfb\x54\x09\xf1\x0f\xa6\xcf\x54\x08\x0f\xf8\x45\x0b\xeb\x12\xca\xc6\x3a\xa8\xad\x12\x15\x7a\xa8\xbd\x62\x7d\x0c\x70\xdf\x08\x55\x1b\x91\x65\xad\x36\xe3\x2c\x8f\x39\x67\x69\xcd\x93\x87\xe3\x13\xcd\x2b\x49\xd3\x2c\x7c\x17\x62\xc5\xcb\x52\x84\x3a\x93\x98\x7f\xa6\xba\xbf\xc5\xa9\x40\xd2\xbc\x25\xc9\x38\xe3\x96\x8e\x05\xf8\x64\x0b\x6e\x4f\x9b\x15\x1e\xc0\x3c\xbc\xc9\x99\x73\x38\x9f\xa6\xb5\xf7\xf0\x8d\x8d\xde\xbc\x41\xfb\x61\x5c\xd8\x4e\x9d\x2a\x1e\xb2\xdf\x78\x51\x88\x37\x66\x45\x35\xe1\x9d\xd2\x1a\x24\x31\x52\x88\x37\x96\xc1\xba\x44\xd4\x44\x62\x1f\xe0\xf1\xc0\xf0\xfa\x21\x39\xd6\x68\xe3\xae\xb3\x70\x20\x9e\x10\x7d\x51\x3d\x7c\x3b\xd5\x44\x53\xaa\x77\x5e\x30\xc5\x6a\x02\x0f\x07\x33\xc1\xd2\x82\xf8\x81\xb2\x78\x7c\x30\x3c\x1c\x0c\x4f\x3a\xd6\x90\x85\x75\xac\xa1\xbe\xf6\x8e\x35\xa4\x61\x0e\xfe\x5a\xa8\x51\x8e\xa5\x76\x79\xf4\xb3\x2f\xee\x50\x67\x95\x84\x7c\xfa\xdc\x0a\x3c\xcb\x38\xdd\x28\xbb\x4f\xbf\xdf\x49\xf8\x19\xa7\x53\xa8\x47\xf6\xc7\xe9\xec\x64\xa7\xf0\x02\xf3\xf5\x36\xea\x94\xa7\xb7\x96\xa5\xfb\xed\x84\xff\xe0\xcd\x0b\x8f\x07\x27\x09\x48\x9f\x23\x32\x29\x40\x0e\xa8\xd3\xc4\xd5\xf1\x3c\xae\x8f\xef\xeb\x7c\x83\xfa\x22\x59\x25\x9b\xe1\xdb\x19\x5d\x33\xc3\xfa\x8f\x96\x90\x15\xae\xab\xbc\x92\x2d\xda\x07\x49\x49\x3b\xfc\x02\xd1\x5a\xea\xd6\x30\x5a\xcd\x89\xf6\x83\x81\x1b\xc7\xd8\xe7\xc1\x79\xea\x25\x22\x84\x03\xf1\x16\xa1\xa3\x88\x87\xfb\x54\xb4\x87\x1e\x72\x32\xdc\xbf\x6b\xe3\x93\x3d\x7d\x6d\x50\xdf\xbd\x2b\x89\x81\xc2\x27\x29\x0e\xeb\xc1\x3e\x0f\x57\xe0\x59\xd8\x27\x75\xdd\x39\xfa\xfc\x36\xd4\x40\x6f\xd3\x93\x88\x17\xf3\xc8\xa2\x5c\x92\xc7\xd8\xc7\x68\xe9\x79\xb8\x18\xd7\xd4\x4e\x8c\x11\x1c\x39\x7e\x10\xe2\x45\x49\xb8\xa5\x88\x55\xb0\x88\x3a\x0d\xd4\xc6\xc0\xdd\x7a\x68\xa5\xbc\x2e\xd1\xfa\xba\x54\x5b\xe1\xfd\x5e\x9b\x67\x36\x58\xb7\x37\x9d\x49\xfd\x9f\xf4\x22\x9d\xd0\xfe\xff\xc4\xc1\x3c\x70\x45\xd6\xf4\x99\xb7\x88\xcd\x65\x42\xcd\x12\xdc\x67\x02\x6b\x97\xa0\x7f\xe8\x75\xda\x87\xab\xdf\xf0\x78\x61\x82\x0e\xf5\xc2\x7a\x4c\x60\xb9\x20\x8e\x37\x58\x80\xf4\x21\xb0\x9c\xea\x38\xc1\xe7\xe8\x7e\x77\x48\x92\x35\xfa\xc3\xb0\x09\x84\x1f\x0c\x61\x51\x18\xdb\x05\x67\xa5\x2b\xd1\xef\x8b\xf0\xe7\xa0\xeb\x5b\xb0\x9e\x15\x2a\x4e\x37\x86\x83\x9d\xaf\xe0\x3e\x09\x72\xbd\xcf\x68\x65\xdf\xa3\x7e\xf8\x67\xb5\x63\x6e\xc5\x2b\x93\xe6\xc1\x4d\xb4\x5b\x46\x9f\xa3\x03\x77\xa8\xb3\x29\xd6\xad\xbc\x23\xad\xb0\x4f\x9a\xbb\xbb\xed\x5c\xd2\x2e\x47\x8e\x07\x84\x70\x21\x06\x7a\x34\x4e\x8d\x06\xc2\x49\xf0\x70\x30\x92\x82\xde\x68\xbd\xa6\x1d\x26\x9e\x94\x71\xf5\x74\xc2\xe2\xdb\x10\x48\x76\xe0\x27\x2f\x4c\x04\xa7\x0f\xd1\xd1\xc4\xff\x10\xdd\x47\x08\xfd\x7b\xb4\xdf\x54\xc4\x87\x46\xff\x45\xf7\xbb\x63\x36\x6b\xe0\x37\xc6\xae\xb5\x42\x1c\x43\x74\xec\x62\xac\x4f\xc5\x28\xd0\x37\xc5\x38\xa5\x61\x6c\x17\x93\xbd\x1a\xcf\x02\x31\x91\x1b\x11\x69\x10\xfd\x75\x1f\x56\x98\x63\xc2\x2e\xa2\x25\x8e\xca\xb9\x8b\xf6\x22\x72\xf0\x0b\x8c\x5c\x78\xb8\x98\x50\xae\x5f\x92\x7f\x3f\xcc\xdb\xba\x58\x3d\xa1\xd9\x22\x5e\x14\x8f\x70\x47\x5c\x3f\x27\x31\x57\x44\x8d\x58\xe7\x53\x7f\x24\x63\x75\x8a\x94\x75\xbe\xf9\xa0\x1f\x54\x89\xa7\x71\x2e\x1a\x12\x84\x55\xf5\x39\x89\xc4\x1b\x22\xe6\x10\x8a\x7d\x33\x46\xd5\x85\xe1\x3e\x18\x54\x13\xcd\x8d\x3b\xf6\x00\x49\x1e\x1e\x26\xf9\x2d\xdd\xf7\x4f\x4e\x15\xc2\xb8\x20\xc9\x65\x1a\x6e\x90\x84\x95\xd2\xb8\xbf\x53\xa6\x6a\x62\x5c\x90\x9c\x68\x8e\x08\xc6\x94\x4c\x37\xdc\xe7\xa9\xdb\x43\xf1\x8d\x52\xf6\xa7\x60\x65\x3e\xd5\xa3\x00\xbf\x31\xe5\xde\x06\xd4\xd0\xe4\xf6\xdd\x98\x6b\x4c\xae\x3c\x85\x75\xed\x24\xb8\x49\xbc\x32\x36\x75\x68\x47\x12\x4a\xbe\xe0\x08\x79\xb8\x98\x48\xec\xbf\x17\xc8\xed\x63\x4f\x2d\x37\xfc\xad\x0b\x2c\xc1\x93\x82\xed\x2b\xe2\x85\x31\xdf\xe9\x8d\xeb\xa9\x5f\x19\x80\xde\x58\x53\x2c\x08\xbd\xba\xfc\xb3\x50\x7c\xba\x54\x19\x9d\xb0\xc5\x6b\x08\x1f\x32\x61\x5c\x2c\x5a\xa3\x11\xdf\xe8\xe6\x41\xbf\x73\x89\x5c\xc6\x97\x77\x22\x5f\xc6\xe1\x62\x32\x44\xfa\x21\x72\x86\x87\x87\xc9\x34\x9c\x86\xfa\x9a\xa9\x2c\x43\x7d\x91\x98\x06\xc6\xcf\x99\x49\x66\x84\x93\x31\x74\xc5\xbb\x1d\x59\xde\xc1\x8c\x3e\x97\x88\xf6\x21\xb3\x2b\x17\xf9\x2d\xb2\xc4\x2b\x66\xd1\xe7\x77\x61\xee\x24\xa3\xf6\x44\x2d\x3d\x87\xea\xbc\xcb\x9e\x3c\x46\xbd\x58\x7a\xee\x2d\xf2\xf0\xa4\xe9\xb5\xac\x87\x9f\xb8\x18\x2f\xb9\x25\x18\x47\xb9\x49\x78\xa1\x36\x39\x8a\xf8\xa3\x77\xb1\x96\x0a\x24\x9e\xc0\x9d\xd4\x17\x4a\x67\x02\x11\xd9\xfe\xc4\xc1\xec\x89\x46\x5e\xb0\x79\xcd\xd4\x4f\x65\xba\x74\x62\x2d\xed\x07\x72\x8b\xfc\xd9\x69\x68\x9d\x7a\x1f\x4d\x9f\x4e\xe3\xce\xe4\x4e\x2a\x3f\xf1\x30\x09\xfd\x11\xaf\xc3\xc3\xc3\xe4\xd5\xd0\x7d\xff\x82\x1b\x32\xe8\xff\x0b\x8c\x34\xd0\xdf\xe5\x1d\x37\xa3\xbe\x49\x35\x54\xf7\x2f\x50\x0f\xc4\x7a\x7d\xfe\x43\x2a\x08\x17\x98\x67\xa3\x7f\x2d\x78\x50\x86\xfc\x01\xf9\x9d\xdb\x75\x48\x1e\xc5\xfe\x27\xb9\xfe\x97\x4d\xe8\xb9\x64\x27\xb2\xb3\xde\xe0\xef\x57\x4a\x34\x62\x6e\x91\x70\x31\xee\xfb\x7d\x70\xbc\x4e\x39\x41\xf8\x16\x76\x42\xa1\xa8\x4d\xbc\xbe\x50\xfa\xfa\xc4\x87\xa3\xd1\x8f\x78\x52\x94\x7a\x53\x77\x1a\x1e\x0e\x66\x56\x5d\x1a\xee\x17\xd1\x3a\xea\xe6\x34\x2e\x8c\x78\x61\x06\x27\x65\x49\xfe\x3e\xee\x55\x9e\x24\x79\x78\x98\x12\xad\x7e\xc8\xe7\x50\xe2\x2d\x84\x1a\x58\x7c\x6c\x0a\x22\x0d\xd6\xf6\x22\x3b\x59\x3c\x82\x3c\x75\xf1\x2b\x53\xfc\xc6\xa2\x5a\x47\x7c\x83\x62\x9f\x00\xdc\x4f\x25\x45\x09\xb8\xfe\xc5\xe7\x32\x09\x07\x53\x44\xb9\xa1\x12\x05\x8a\x2f\x8b\xcf\x1d\xed\x47\xf2\x32\xe1\x61\x46\xfc\x8d\x1a\x5c\xa4\xf7\x0e\xf1\x10\x6b\xf2\x9b\xf0\xef\x88\x17\xc5\xcd\x33\x14\xbd\xd0\x4f\x1c\x90\x4a\x0c\x66\x4c\x8c\xad\xe3\x71\xd7\xea\x8a\x24\xa2\x9f\x54\x75\xa3\x1b\x57\x8b\xee\xa5\x63\x5c\x25\xb9\x9e\xfa\xc8\xcc\x08\xcf\x44\xd4\xe2\x44\x89\x15\xe8\x37\x46\x7e\xcc\x41\x2b\x3e\xc4\x38\x8f\xc3\x3b\xf0\xfa\x44\xf5\xc4\xc3\xac\xf7\xee\x87\x38\x95\x8a\x92\x91\xa8\xc7\xeb\x07\x4d\xc1\x19\xaf\xb0\x91\xc6\x4e\x35\x15\xaf\x55\x71\x7f\x94\xad\xa3\x33\x7b\x85\x83\x23\x9e\x68\xd6\xef\xf3\xc7\xb3\x7b\xc5\x1e\x3a\x77\xad\x77\xc9\xc4\x9c\xe1\x7a\x28\x42\xfb\xb2\x51\x76\x0b\x8e\xbb\x62\xd1\x01\x1c\x77\xb9\xe4\x79\xc4\xc5\x95\x33\xea\xb3\x56\x3e\xfe\x15\xda\xd7\x75\xef\xbf\x23\x13\xda\x3a\xc4\x57\x3b\x5c\x8a\x44\x34\x09\x8f\x0f\xc7\xbc\x22\x19\xd7\x51\xb7\x86\x32\x0b\xea\xf9\xe9\x18\x9d\x2b\x25\x65\x60\xf4\xbe\x60\xc0\x0a\x9c\x97\x79\x47\x73\xf0\xa9\xd3\x56\xe6\xa1\x3d\x10\x31\xcf\x47\xaf\xcf\xeb\x13\x35\x48\x84\xc7\x8b\x53\xc2\x65\xbc\xfe\x88\x87\x19\x41\x27\x99\x4d\xf9\x53\x70\x1f\x6c\x92\x20\x22\x99\x4d\x47\x94\xd1\x4f\x6e\x96\xa3\x4e\x7f\x9b\x14\x28\x97\xb1\xd9\x8f\x2c\xf5\xa6\x61\xf4\xe6\x9b\x47\x91\xff\xdc\x32\x84\xf8\x18\x37\x2d\xaa\x44\xfb\xb9\xe9\xf3\x3e\x25\xfa\xbb\x33\x2d\x24\x6f\xa2\x27\xa8\x1a\xf1\x1c\x99\x8d\xaa\xb2\xea\xf1\x5c\x57\xb9\x8a\xf5\x05\xb0\x7d\x43\xfb\xd9\x62\x2b\xf5\x87\x32\xce\x5e\x8e\xb3\xa9\x1b\x48\x7d\x73\xd4\x6a\x89\x2f\xa4\x67\x7f\xa8\x39\xce\x84\x7b\x9a\x3a\xa0\x10\x2b\x20\xc2\xc7\xa9\x3b\xcb\x08\x11\xd2\xce\x7e\x3f\xca\x29\x20\xb3\xed\xd9\x2f\x89\x87\x87\xd9\x31\xb9\x3f\xf1\xc1\x78\x8f\x44\x7f\xb9\xb3\x5a\x94\xf0\x2f\x59\x92\xf8\x0d\x3b\x4f\x2b\xe3\x8e\xdb\x51\x65\x88\x4f\xda\x51\x6a\x87\xe7\xaa\x9d\xf3\xbd\xd1\xa2\xed\x1c\x1d\x89\xb5\x95\x9d\x4e\x4b\x71\x9d\x77\x7e\xa4\x37\xda\x29\xbe\x1e\x71\x75\x3b\xa4\xe8\x6e\xe1\xce\xa8\xd3\xb8\x0f\x76\x28\xdf\x40\x04\xfc\xce\x93\xcf\x10\x3f\xb4\x63\xee\x27\xfc\xbe\x6d\x9f\xdb\x0a\x00\x5e\xa8\x53\x3d\xff\xbf\xe1\x1e\x4e\x5b\x01\x08\x6e\xa5\xbb\x50\x63\x7c\x00\xf6\xc7\x50\x3d\xb7\xba\x06\x60\xe2\x37\xe2\x3b\x10\x7b\x00\xb0\xc5\xb0\xfb\x44\x47\x7d\x4b\xa4\x8d\x01\xd6\x5e\xa0\x3e\xf6\x6b\x63\x01\xd4\xb2\x00\x0a\x9a\x01\xb4\x2d\x01\xf2\xc3\x00\x4c\x5c\xff\x51\xf7\x97\x00\xe8\xf6\x58\x19\x93\x01\x3c\x37\x74\x7b\x01\x80\x50\x33\x80\x15\xfc\x74\xe7\x2b\x6b\x3b\x40\x86\x38\x40\x96\x01\x40\xc1\x19\xfa\x7c\xc5\x1e\x80\xec\x41\x94\x43\xcb\xab\xa1\xde\xc2\x45\xea\x00\xb7\x7a\xff\xa3\xff\xc1\x63\x80\x6f\x25\xff\xee\x83\x91\xc9\xf1\x7c\xf3\xfa\x20\xbc\x10\x00\xe0\xab\x06\x78\x7c\x8c\xf8\xa5\xff\xee\x05\x30\xf8\xf6\xbf\x71\x0f\x67\x82\xe8\xfe\x25\xaf\xcf\xc3\xfe\x3d\xc4\x87\xb1\xbd\x9a\xfa\x1b\xf0\xf8\x0e\xaa\xfc\x00\x66\x5c\x02\x28\xbd\x45\xfc\x0f\x3c\x7e\xff\xee\xdd\xa2\xe0\x4f\xfc\x0d\x5a\xa9\x00\xd9\xfb\x01\x0c\xea\x00\x96\x35\x51\x9e\xbe\x7b\xfc\xdd\xfb\x3f\xb5\x2f\x80\xbb\x3d\xc0\xd2\xd3\x00\x81\x57\x01\x52\x1d\x00\xa2\x22\x00\x96\xe5\x01\x2c\xab\x04\x58\x5a\x0a\x90\x5b\x4e\xb9\xeb\xb2\x75\x00\x19\xd7\x00\x76\x58\x01\xac\x10\x03\x38\x76\x82\xe6\xe5\x8a\x08\xc0\x2a\x47\x80\xda\x06\x80\xc2\x23\x00\xcd\x07\x01\x0a\x42\xa8\xdf\x7d\xcf\x3e\x10\x71\xee\x24\x6b\x95\x01\xfa\x78\x00\xdc\xbb\x0d\xd0\x7b\xf2\xbf\x71\x0f\x17\x03\x01\x06\x8a\x01\x9c\xcd\x04\x18\x14\x0e\x70\xc4\x08\x80\x7f\x38\xdd\x31\x1f\xee\x0f\xb0\xd9\x88\xf8\x64\xaa\x3e\x02\x88\xdc\x06\x28\x9f\x06\x20\x96\x04\x50\xb2\x17\x60\xa6\x27\x40\x61\x03\x80\xb4\x13\x40\x81\x06\x80\xfc\x57\x80\x6c\x53\x00\xd5\x50\x42\x95\xea\x25\x01\xa4\xf9\x53\x5d\x33\x65\x3e\x80\xed\x29\xaa\x65\xba\x7a\x53\x3d\xb0\xdb\x0e\x24\x26\x03\x74\x7b\xac\xe4\x6c\x80\xa5\x43\x01\x52\xe5\xb8\x7b\xff\x29\x00\x65\x81\x00\x4b\x63\x00\x76\x28\x02\x2c\x13\x01\x38\x2a\x02\x90\x75\x03\xe0\x86\x29\x40\xd6\x24\x80\x27\xe5\xff\xee\x03\xc1\xeb\x03\xc2\xc3\x7f\x44\x8d\x26\xf9\xa8\x94\xea\xb4\xff\xaa\xf3\x76\xfb\x62\xdd\xff\x80\x7b\x48\x06\x18\xf0\x04\x60\x5b\x27\xc0\xc0\x59\x00\x55\xe7\x00\x86\xeb\x03\x94\xd7\x01\x8c\xcc\x05\x28\x31\x07\x18\x7f\x08\x60\xf5\x4e\x80\x69\x7b\x00\x56\xae\x03\x98\x7d\x12\x20\xe3\x3e\xc0\x7c\x1b\x80\xe5\xc6\x00\x4a\x51\x00\x69\x47\x00\xb4\x13\x00\x92\x0e\x53\x9f\x98\x98\xd5\x00\x96\x76\x00\x31\x1d\x00\x2e\xc7\x01\xa2\xb0\xb3\x2a\x40\xac\x1a\xd5\x42\xe2\x9a\xa8\x66\x9a\x5c\x0d\xb0\x4a\x0a\x20\xf9\x16\x40\xc5\x61\x80\xc4\x76\xea\x8f\x92\x60\x0e\x70\xe4\x12\xe5\x8d\xbb\xd7\x30\x55\x96\xea\xff\x69\xe3\x00\xbe\x7b\xfc\x63\xfc\xa7\x7f\x1f\x3f\xaf\x0e\xde\x6d\x17\xa0\xfa\xdf\xf5\xfe\x2b\xce\x24\x79\xb8\x87\xc3\x5c\xdd\x6a\x47\x77\x94\xe8\x49\x18\xad\xbe\xfa\xbf\xfa\x3c\x94\x5e\x02\x18\xfa\xe6\x1f\x7c\x07\x97\x28\xf7\xbc\xc2\x8a\xee\x58\xa6\xdd\x04\x90\xb8\x0b\x90\x1a\x0c\xb0\x48\x00\x20\x39\x08\x40\xc3\x15\x20\xa6\x0a\x40\x7f\x0d\x40\x74\x23\x80\xa5\x29\xf5\x35\xe8\x3e\xc9\x84\x8d\xa7\x79\x88\xae\xe3\xfe\x77\x8e\x38\x2d\x22\x9d\x00\x72\x9d\x68\xbe\xca\x3a\xbb\x4f\x1f\x00\x3b\x7d\x00\xe2\x4c\x00\x8e\xfb\x13\x9e\xe2\x7a\xcb\xaf\x3e\x10\xc9\x6e\x84\x8b\x89\x0e\xf8\x1d\xff\x11\xc8\xff\x3b\x0e\xe0\xbf\xe1\x1e\x7e\xf6\xfb\xe0\x4e\x89\x3f\xf1\x1f\x5c\x9d\x97\xf3\x0a\xb0\xda\x0d\x60\xc0\xbd\xee\x28\x10\xa0\xfb\xfc\xb8\x42\x19\x60\x7c\x2a\xf1\x78\x4c\x7a\x45\xfd\x0e\x66\xd9\x51\x9d\x47\x66\x2e\x40\x64\x14\xe1\xe8\x22\x7e\x00\xe8\x5e\xa5\x3a\xbd\xd9\x2d\x80\xe0\xeb\x00\x0e\x7c\x00\xc1\xbd\x01\x3c\xe5\x69\xbd\xba\x4f\x2a\x91\xcb\x68\x1e\x78\xfc\x07\x91\xf9\x00\xeb\xbf\x00\x84\x74\x02\x6c\x7f\x09\x10\x66\x48\x7c\xf7\xdd\x51\xd0\xcd\x50\x9a\xcf\x6e\x3b\x19\xa3\x00\xd0\xa6\xf0\x6b\xfc\x41\x31\x24\x7b\xf2\x40\xfc\x6b\x3f\xbc\x25\xd9\x93\xef\xa0\x67\xbd\x7b\x23\x57\x8f\xe1\xf5\xbb\xc8\xe5\x6e\x5b\x75\x7b\xdb\x81\x4e\x00\xe9\x3b\x89\x27\x85\xd7\xef\x21\x66\x30\xc0\x94\x6a\xc2\x73\x48\x86\x03\x44\x08\x92\xdd\x0c\xd6\x02\xd0\x3c\x09\x10\x20\x08\xd0\x1d\x27\xf8\x0d\x01\xb0\x0b\x02\xf0\xb5\xa0\x3e\x18\x3e\x0b\x88\xef\x3f\x50\x8a\x74\x3e\xf0\x23\x61\xe8\x02\xb2\x01\x2a\x06\x00\x04\x14\x03\xec\xbe\x0e\x10\xa4\x4f\x36\x3c\x48\x9d\x6c\x7c\xb8\x10\xc0\xbb\x3d\xbf\xc6\xef\xb7\x8a\xec\x24\x0f\xff\xd1\x93\x07\xe2\x5f\xfc\x27\x3c\xde\x0b\xee\x67\x1e\xef\xc5\x5e\x5e\xb7\x48\xae\x8e\xb1\x9e\xc3\x8f\xfc\x89\xef\x20\x39\x91\xfc\x50\xbc\x18\xc0\x18\x59\x80\x10\x17\x80\x09\xee\x00\x81\x42\x00\xe2\x2d\x00\x81\xca\x00\x0b\x0b\x09\xd7\xa0\x92\xf0\x0b\xff\xe0\x51\x09\x60\x9d\x02\xe0\x31\xaa\x3b\xe6\x07\x70\x15\x05\x08\x50\xa0\x9e\x18\x49\xf0\x0f\xfe\x03\x59\x80\xb2\x42\xf2\xb5\xbb\xf8\xe9\xf7\x27\xd3\x01\x3c\x9c\x68\x1e\x7e\xf2\x40\x6c\x25\x9c\xd8\x7f\xe3\x81\xe0\xcd\x03\x8f\xe7\xbf\xa7\x1e\xf4\xec\x7b\xc2\x9b\x87\x72\x8e\x07\x61\x0d\xa7\x4f\xbc\x53\xc4\xcf\x7e\x0f\x93\x01\xfa\x26\x01\x84\xad\x03\x18\x6e\x00\x10\x14\x06\x30\x4e\xa3\xfb\x5c\x4b\xfd\x94\xdc\xef\x03\xcc\x9b\x06\xb0\x98\x8f\x32\xd7\xce\x25\x00\x5a\x40\xb5\x3c\x8b\x6e\xa9\x06\xe0\xea\x4a\xb8\x86\x00\x46\xb2\xfb\xe4\x6a\x33\x02\x60\xc5\x08\x00\x9b\x5d\x00\xeb\x86\x01\x38\x86\x13\x4f\x8c\x9d\x02\xcd\x83\x8d\x25\x40\x4d\x19\x80\x4d\x06\xc0\xcb\x41\xd4\x3f\xa2\x35\xee\xd7\xb8\xf5\x39\x5e\x2d\x1e\xff\x85\x06\x57\xdf\xeb\xc9\x7f\x72\x96\xeb\xff\x72\xf8\x39\xc9\x9e\x75\xff\x4a\xce\x4e\xfc\xc4\x7f\x70\xf5\xbb\x3f\xf1\x3e\x04\x5a\x02\x0c\x9a\x03\xe0\x53\x0b\x20\xb8\x09\xc0\xbd\xdb\xbf\xfe\x00\x70\x2a\x24\x5c\xa1\x5d\x18\x80\xcc\x33\xc2\x88\x75\x9f\xab\x2c\x45\x48\x2f\xac\x32\xa8\x0f\x86\xf9\x01\xc2\x8b\x59\x00\xf9\x54\x53\x11\xea\x2d\x65\xa6\x4c\x3c\x10\xdd\x3f\xef\x52\x00\x30\xbd\x0d\x70\x26\x11\xc0\xd8\x19\xe0\xae\x06\x80\x69\x32\xc0\x2b\x11\x00\x0b\x29\xda\x0f\x3d\xc7\xcd\xc3\x41\xc8\x72\x7d\xd7\x7a\xea\xc1\x9f\xfa\x9e\x6c\xe5\xe6\xe7\x67\xbd\x93\xdb\x0f\x3c\xde\x07\x1e\x0e\x26\x65\xea\xef\xf3\xe0\xc5\xe9\x47\x77\x4c\xd0\x1d\xa7\xd9\xbf\xa6\xf8\xcb\x72\x23\xc0\x94\x02\x00\x53\x2f\xc2\x4b\x19\xd7\x01\x28\x9d\x05\x30\x9d\x0c\x60\xa4\x0c\x60\x50\x0d\x60\xaf\x0b\xa0\x57\x48\x18\x1a\x5d\x11\xe2\xc3\x30\x00\xb2\x0f\xba\xe1\xc4\x9f\xd4\x1d\xa3\xee\x96\xfd\xc5\x03\xa1\x73\x03\xe0\xfe\x4b\x00\x2d\x7d\x80\x0f\xe9\x00\xea\x49\x00\x1d\x97\x7e\x8d\x9b\x87\xfb\xe0\xe1\x1f\x78\x78\x80\x3f\xf1\x3e\xf0\xf4\x60\x07\x97\x55\xae\xe2\x58\x03\xcb\xb8\x7a\x7f\x4f\xfc\xc7\x72\xba\xa5\xfb\x93\xf7\xe1\x67\xdd\x9f\xc3\x97\x59\x06\x01\xf4\x0a\xa6\x75\xed\x8e\x47\x0d\x6f\x91\xfd\xec\x1e\x5f\xb7\x5e\x68\x55\x02\x2c\x7a\x05\xa0\x99\x45\x1c\x1e\xaa\x8b\x00\x6c\x3e\x03\xa8\xcd\x01\xf0\xdb\x49\x78\x8e\x24\x2b\x00\xe5\xd5\x00\x79\x6b\x00\x94\xca\x08\xb3\x2b\x5b\x03\x50\x3d\x0e\x60\xe1\x1e\x9a\x87\x85\xf9\x00\x77\x6a\x01\xe4\x36\x00\x7c\xa8\x05\x58\xd8\x03\xf7\xc1\xe3\xbd\xe0\xf1\x40\x8c\xcb\x26\xc9\xd3\x83\x23\x17\x7f\x1f\xff\x2e\x2e\x7b\xd4\x13\xff\xb1\x56\x9e\xd3\x83\x1e\xf8\x0f\x5e\xff\x93\xd8\x72\x6e\x3f\x74\x92\x74\xe7\xf0\x1f\x96\x1c\x5e\x57\xa7\x92\xfa\x6c\xa9\x4a\x01\x8c\x94\x02\x50\x6a\x22\xde\xc2\x6e\xdf\xd1\xed\x4f\x15\xf4\x01\x74\xf4\x01\xe6\x5b\x03\x58\x65\x02\x48\x55\x02\xf8\x4c\x02\x58\x30\x1a\x20\x71\x2b\x80\x54\x0e\x40\xde\x6c\x80\x39\x97\x00\xd6\x0f\x01\x98\x55\x00\xb0\xc7\x1f\x60\xe6\x24\x9a\x87\x99\x91\x00\x7f\x0b\x00\x4c\x7f\x47\xbd\xe1\xc4\x0a\x08\x5f\x3d\xfe\xe4\xef\xb8\x0f\x1e\x0f\x04\x0f\x0f\xf0\x27\xfe\x93\x9e\xf8\x0f\x1e\xfe\xe5\x5f\xf8\x8f\x1e\xfd\x4f\xa2\x38\xf6\x55\x1e\x0e\xc6\x89\xf3\xc3\x66\x17\x48\xaa\xdd\x21\x29\x57\x0d\x30\x2c\x0d\x40\xe6\x34\xc0\x24\x6b\x80\xb9\x1d\x00\xf3\x8e\x03\x48\x34\x00\x68\x34\x00\xcc\x4c\x06\xb0\x7c\x46\xbd\xfa\xbc\x6b\x00\xa6\x29\x92\x7d\x10\x1d\x02\xb0\xf2\x35\xd9\xda\xf5\x51\xd4\x53\xa5\x7a\x15\xf5\x10\x3d\xb7\x0c\x60\xf4\x0b\x80\x3b\x37\x00\x46\x5b\x02\x7c\x50\x03\x10\x2a\xa6\x79\xe0\xe1\x3e\x06\x73\x7d\x3f\xfa\x73\x7a\xd2\x8b\xf3\xab\x3d\xf1\x1f\xbb\xb8\x2c\xda\xbf\xfa\xdf\x70\x76\x82\x57\xff\xcf\xe4\x78\x4e\x92\xb8\xcf\xf1\x6e\x25\x06\x70\xb7\xd2\x78\xf8\x07\x3b\x0e\x77\x68\xb8\x91\xa4\x12\xe7\x8f\xe7\xce\x04\x18\xa0\x05\x30\x73\x38\xc0\xd8\x0b\x00\x53\x56\x13\xf6\x43\xd4\x0b\x40\xcd\x0b\x60\x7c\x28\x80\xc5\x70\x00\xe1\x4f\x00\x5e\xeb\x01\x46\x3d\x05\x88\xdd\x04\x20\xe0\x04\xb0\xe2\x76\xf7\xf9\x9e\xb0\xab\xfc\x85\x00\xbb\xba\xcf\x82\x93\x00\xce\x60\xdd\x10\xe0\xaf\x52\x80\xfe\x85\x00\x2f\x77\x00\x0c\x28\x06\x68\xef\xff\x6b\xbc\xff\x0d\xff\xb0\x9b\x63\x91\xfd\x6f\xf8\x8f\xac\x43\x24\x79\xf8\x8f\x18\xce\xce\xf2\xf0\x1f\x3c\x1e\x14\x1e\x9b\x3f\x0f\x07\xa3\xcb\x7d\x4e\x56\x83\xa4\x18\x97\xad\x14\x2e\x07\x18\x51\x03\x30\xea\x12\xc0\xb4\xc7\x00\x02\xef\x08\x8f\xce\xef\x0a\x60\x72\x1e\x60\xd0\x5f\x00\x8b\x87\x03\x0c\x58\x02\x10\xb9\x04\xa0\xaf\x34\x40\x46\x0e\x40\xaf\x55\x00\x25\xbc\x9e\x76\xdc\xde\x3c\x41\x4c\xd9\x70\x93\xdb\xcb\x2f\x7c\x49\x36\x71\x0c\xc9\xff\x09\xf7\xc0\x93\x7f\xc4\x7f\xf0\xf8\xc1\xb8\x71\x64\x4f\xfe\x7d\xfc\xbc\x7d\x10\xfa\x9e\xd3\x03\x4e\x5f\x3c\x46\x12\x5e\xc2\xae\x3f\xfd\xfc\x13\x07\x03\x84\x9f\x90\x54\xa4\x2a\x96\xf0\xc5\xbe\xe8\x99\x07\xd7\x0e\xc8\x1b\x78\x15\xa0\x5f\xee\x40\xd1\x89\xdd\x36\xe6\xd9\xc0\xac\x05\x98\xe1\x1a\xe8\x63\x80\xf9\xca\x81\x13\x5c\x31\xc6\x1f\xc0\x1f\x8e\xf7\x95\xfa\x1f\xa3\x7b\x9b\xfd\x27\x96\xe0\xdc\xf6\xfd\xb4\x0d\xc7\xdb\xa7\xf7\x31\xac\x0c\xf4\x6e\xb9\x8e\x79\xed\xde\x12\x4f\xb9\xb9\xa7\x3e\xcd\x60\xfd\xff\x37\x0f\xdb\x26\xfd\x3e\xfe\x12\xee\x6f\x0b\x6f\xff\x3e\xfe\xf4\x1f\x80\x9a\xf2\xb3\x0f\x50\x1d\x65\xd5\x7c\x37\x0c\xc1\xfc\xa6\x7b\xfe\x60\x44\x6a\xdb\xb5\x0e\xc6\x3a\x8e\xf1\x30\x7e\xcc\x57\x6b\xb8\xd2\x6d\xfe\xf9\xc3\x04\x51\xa3\xa6\xac\x16\xc2\xfa\xe7\xd0\x9a\x31\x26\xf4\xcd\x63\xf2\xfb\x63\xfe\x6d\xf4\x4e\x11\xac\x2f\x8c\xf1\x5a\x80\xf9\xa5\xd1\xba\x86\xa8\x63\xa3\xed\x5c\x71\x2d\xc6\x28\x87\x63\x8c\x32\x4a\x70\x19\xda\xaa\x51\x11\xc5\x78\x16\x14\xaa\x26\x0e\x0f\x81\xb6\x23\x98\xb7\x14\x38\x7d\x9d\x90\x26\x71\x4f\x91\x9f\x79\xf8\xec\xcf\x18\xfb\x0f\x5b\xc0\x10\x13\x3e\x38\x99\xc6\xdf\x47\x97\x9b\x07\x9c\x9f\x3f\x8d\x7f\xe5\x6d\x5a\xbf\xa5\x59\xfd\xb0\x9f\x4d\xbc\x08\x1f\x37\x7e\xaa\xd2\xfb\x7e\x18\x89\xb3\xbe\xd8\x75\x0c\x66\x15\xed\x14\xc6\x60\xf6\xcf\x74\xd8\x04\xac\x2e\x6a\x9e\x13\x41\xad\x95\x75\xa5\x7e\x32\x33\x96\x8b\x61\x3e\x6e\xb4\xd0\x54\xbc\x6d\xd5\x27\x67\x3a\xe7\x59\xa6\xf7\x19\x88\x7b\x69\xba\xc6\x44\xac\xe7\xce\xf0\x94\xc1\x4c\xdf\xd4\x37\xfa\x58\x9f\x98\x2a\x4f\x15\xd2\xa9\x0a\xa1\x38\x5f\x53\x35\xa9\x85\xc6\x54\x01\xba\x29\x26\x5a\xb7\x09\xf5\x64\xf2\xf4\xc3\x88\x81\x9f\xb8\xf5\x32\xce\xdf\x44\x95\x07\x98\x81\x9f\x98\xfc\x09\xeb\xe2\x22\xa6\xc4\xd3\x3c\x56\x8e\xc6\x2f\x70\x88\x24\x3f\xf6\x05\x59\xdb\xdc\x0b\xeb\x4f\xab\xaa\xa9\xca\x96\xed\x4d\x7d\x62\x96\x9e\xa3\x2a\x74\x82\xc5\x48\xba\x0d\x5d\x47\xbc\x28\x7e\x40\x38\x01\xb7\xdd\x13\xf0\x56\xa5\x9d\x13\x65\x15\x4d\x45\xa8\x3a\xa9\xf3\x49\x1c\xb3\xa8\xf2\xc7\x89\x4f\x61\xde\xe5\x39\x98\x97\x9c\x04\x52\xb8\xd3\xf8\x5f\x48\x73\xbb\x59\x86\xe3\xbb\x97\x7e\x30\x04\xf3\x93\x32\xde\xa4\x9a\xd2\x2d\xd2\x18\xdb\xca\xec\xd1\xc5\x8a\xc8\x7c\x19\x07\xdc\x1f\x32\xc1\x74\x53\x7e\xfe\xc0\x14\x8c\x65\xa4\x3e\x93\xef\x96\x16\x21\xbe\x66\xa9\xe8\x03\x38\xfe\x79\x72\x74\xdf\x7f\xf6\xa3\x7b\xf8\x66\x73\xf6\xbe\x2d\x46\x39\xa5\x1d\xe7\x6f\x5a\x01\x87\xff\xe0\x78\x30\x88\x17\xa5\xf0\x2b\xe1\x7e\x56\xd6\x09\xe2\x6d\xf0\xb4\x3b\x63\x31\xaf\xcc\xeb\x83\x14\xf1\x7a\x02\xd6\x67\xfd\x05\xa6\xa2\x96\x2d\x99\x3e\x83\xaa\xf2\xe3\xe7\x60\x7d\xd8\xe2\xb4\x24\x56\xd9\xf4\xb6\x52\xd5\x41\xc5\x86\xba\x6f\x4b\xab\x90\x45\x9c\x56\x29\x8b\x75\xc3\xd1\x4d\x0a\x88\x0f\xea\xaf\xa8\xc8\x45\xe4\x4a\x5c\xe4\xa6\xbc\x88\xf0\x30\xca\xda\x34\x0f\xaa\xf3\xa4\x71\xdd\x94\x55\xb4\x30\x8f\xab\x26\x68\x87\x67\x18\x95\xe9\xfe\xa8\x51\x2a\x09\xf1\x58\x9f\x51\x4d\xa4\xfb\xab\x2a\x49\x15\x18\xbb\xa8\xae\x24\x7e\x14\xa5\xa4\xb3\xb8\xa2\x8a\x35\x94\xa7\x57\x14\x7f\xd3\x41\x2b\xd3\x8c\x88\x97\x85\x9c\x3e\x48\xb8\x92\x9c\x89\x7d\xee\x73\xcd\xb8\xae\x0b\x4b\x45\xf0\xbe\x72\x7c\xb2\x28\xee\xe3\x9f\x3c\x30\x87\x24\xf0\xe9\xde\x22\x73\xf1\xad\x9c\xd2\x65\xf0\x75\x2d\xf7\x52\x9f\x20\x83\x2a\x39\xac\xae\x68\x24\x2a\xe1\xfa\xca\x6a\x10\x8f\xc4\xec\x6a\xaa\xc2\x4c\xac\xd5\xc4\x3c\xfd\x08\x11\xba\xa5\xdc\xab\xb7\x1e\xd7\xa1\x4b\x97\xeb\xf4\xa8\x6f\x4c\x88\x33\x7d\xfd\xc9\x68\x8b\x0c\x5c\x69\x46\x0d\x30\x4f\x03\xa0\xbf\xd5\x06\x2d\x90\x91\x04\xe5\xeb\x0d\xc7\xc5\x62\x5d\x5b\x6f\x33\xe1\xa4\xf4\x1b\x4b\x5f\xd1\xe7\x88\x29\x5d\xf7\xd1\x49\xcc\xdf\xeb\x8a\x5c\xc7\x95\xd0\xe6\xfa\x27\x69\xe9\x7f\xc1\xdf\xab\xe7\xd3\x7d\x66\x25\xae\x6f\x94\xec\xc1\x6e\xb9\xbc\xff\x14\xf4\xf8\xc9\x02\xb3\xf0\x69\x91\xa9\x84\xfb\x09\x0a\x9e\x8f\x6f\xe5\x79\xfc\xf7\x7e\x48\xd6\x5b\x95\xf1\xdb\x8d\xf7\x90\x7a\x6b\xbf\xff\x1d\x07\x23\x69\x61\x80\xf6\x74\xea\x29\x03\x3c\x89\x8f\x8b\x32\xc2\x79\x1d\x78\xd9\x84\x3b\x69\x98\x71\xf5\x7f\x4b\x0e\x81\xcd\xc3\xc3\x58\x49\xd0\x0e\xb3\x92\xa0\x79\xb0\x0c\xa2\x99\xb4\x16\xb7\xc6\x3a\x84\xd5\x0b\x4f\xb4\x23\x56\xa9\x74\x76\xb1\xfe\xb8\x1c\x63\x33\xab\xdd\xc5\x68\xa1\x2c\x13\x37\x1f\xa7\xbf\x3b\x82\x6f\x64\xde\x72\x05\xdf\xdc\x3c\xee\x01\xce\xa7\xb9\xf1\x07\xd4\x13\x53\x8e\x2f\xc9\xe0\x38\x49\x2d\xec\x77\xd0\x93\x07\x27\xa8\x49\x16\xfb\x98\x78\x6b\x11\xde\x87\xd7\x0f\xc9\xf6\x87\x06\xda\x3f\x53\x59\xbd\x1c\x9a\x6d\xc2\x0b\xfc\x09\x07\x33\xb1\xda\x02\x2d\xae\xa0\x98\x0d\x9e\xc0\xfa\x4a\xdb\x72\x48\x5b\x47\x6e\x5f\x38\xbe\x27\x0f\xcb\xc3\xc3\x38\xa5\x8b\x62\xcc\xe6\xcc\xa4\xf1\x2f\x1c\x6b\xe9\xc9\x2e\x35\x16\x38\x93\x2e\xe0\x81\x48\x14\x97\xea\xb0\x4b\x24\xc9\x87\xbb\xba\x15\xe2\x3e\x72\xb1\xaa\xec\x4d\x9f\xa3\xb3\x81\x63\xcd\x39\xc4\xfc\x3b\xce\xb9\x8d\x2b\xe3\x28\xf2\x0a\x35\xde\x61\x48\x23\xda\x17\x1e\x2e\xc6\x0c\xf9\xcc\xa3\x77\x2f\xc4\x71\x87\x4c\x57\xc1\xfa\xa3\xaf\x91\x26\xda\x35\xb7\x3a\x5a\x5f\xc7\x75\x84\x83\x31\x37\x33\xc2\x7d\x61\xe4\x6f\x81\x91\xb5\x46\x81\x35\xae\xa7\x42\x9c\x2d\xfa\x4b\xc9\x3d\x76\xe8\x1f\xa6\x9f\x76\xc4\x93\xe9\x38\x45\x8a\xa4\x86\x15\xb8\x50\x9f\xa8\x5f\xbc\x30\xeb\x48\x7a\x67\xf7\x42\x7b\xc6\xc3\xc3\x78\x1e\x98\x82\xfb\xd7\xa7\x56\x0a\xe7\xc1\xe7\xa1\xba\x1c\xbd\x91\x05\x8e\xc7\x0f\x08\x79\xe1\xbb\x39\x04\xd7\xdf\x77\x12\x75\x26\xf0\x9b\x51\x80\x8f\xf2\x1d\xb9\x1e\x35\xd8\x27\x67\x2f\xfa\x55\x9f\xa4\x0b\xb8\xde\x3e\xe9\xb7\x51\xe3\x97\xdc\xa2\xfd\xe1\x9e\xfa\x09\xed\x89\x5b\x2e\xf9\x0f\xc2\xc5\x84\x55\x13\xde\x89\xd7\x0f\xca\x7d\x8f\x29\xed\x03\xb0\xc4\x5d\x68\x5d\x6f\x85\x68\x3d\xa3\x7a\xc2\xc1\xe8\xa8\x38\x61\x1d\x98\x87\x83\x59\x38\xdc\x05\xfb\x00\xcd\xbc\xe5\x8a\xd6\x5a\xb4\xd6\x03\xc7\x3d\x2a\xce\x13\x4f\x64\x83\x4c\xff\xc5\x0b\xc3\x45\x6e\xa1\x92\xe4\x99\x83\x6b\x08\x91\x19\x2a\x4b\xf3\x10\xbc\x4a\x1a\x65\x48\x15\x31\x30\x85\x1a\x11\x9e\x34\x54\xdf\x19\xf9\x01\xc2\xf0\x0e\x13\x40\xd8\xf4\x44\xc2\xc9\x70\xf7\xfd\xc3\x1c\xcb\x9e\x90\xdc\x85\x6f\x1c\x72\xf2\x38\x9e\x7d\x83\x45\xae\x13\xe3\x91\xd3\x63\xac\x93\x07\xa9\x7f\xc1\x15\x09\x14\xef\xc2\xfa\x9e\xe7\x69\xcc\xdb\x4a\x19\x63\x66\x89\x87\x83\xe1\xf5\x83\xb2\x1b\x4c\x7c\x3f\x3c\x1c\x8c\xe1\x3c\x37\xd4\x0b\x1e\x0e\x46\xee\x99\x07\xe2\x2d\xe7\x03\x8d\x53\x5c\x84\xc6\xf9\xb3\x3f\xd2\x69\x7f\x5c\xcd\x7e\xe7\x82\x38\xbb\xf0\xb3\x4f\x12\xd7\xd1\x2f\x46\xb8\x8f\x1c\x49\x41\xc4\x79\x44\xfb\x4d\x41\xcf\x13\x3b\x5f\x1a\x3b\xd9\xc5\x78\xab\xe2\x9f\xc4\x99\xd0\x3c\x44\xef\xa4\x7a\x77\xec\x1a\x7f\xb4\x8b\xf1\x22\x09\xa8\x59\x71\x1f\xb3\xf1\x15\xe3\x3a\xd6\xe1\x99\x27\xe6\x33\xc5\x55\x31\xdf\x0e\xa3\x27\x8c\x79\x7f\x15\x77\x7e\xd4\xe5\xfb\xd8\xf1\x29\x6a\xc4\x1b\x5c\xc9\x9f\xb8\x18\xe4\x89\xf1\x16\xb1\xc5\xf5\xf7\x10\x70\xc6\xa7\x38\xf2\x3b\x63\x54\x66\x55\xb7\x18\xbd\xb2\xd1\x39\x0f\xea\xd2\x66\xee\x8d\xab\xa3\x9a\x48\xa8\x35\xd9\xf1\x01\xd8\x4d\x60\xae\x38\x87\x83\x69\x0e\x41\x3f\x2b\xec\x17\x8a\x19\xae\xe1\x15\x84\x0b\xe9\xe5\x1a\xc5\x21\xcb\xe3\x32\x49\xc6\x73\x1d\x2b\x93\x13\xfb\xe0\x78\x92\xaa\xa9\x5f\x52\x72\x22\xe1\x48\x53\x24\x28\xd2\x48\xa9\x23\xcf\x93\x72\xcf\x04\xcf\x6a\x29\xee\x0e\x88\x18\x48\x53\xa7\x19\x4f\x1b\x11\x8b\xf1\x64\xea\xfa\x4c\xb4\x58\x69\x7a\xc5\x68\x99\x53\x6e\x6f\x42\x1c\x41\x6a\xce\x41\xc4\x15\x24\x3f\xbb\x80\x08\xb6\x24\xb8\x9d\x4e\xf2\x05\xbe\x71\xc2\xba\x86\x95\x34\x7f\x2c\x16\xc0\xc3\x89\xd8\x25\x7e\xe2\x60\x78\x7c\x38\xd7\xbd\xf1\x74\x62\x50\x4d\x4f\x55\xcf\xf7\x47\x1c\x8c\x42\x5a\x08\xc6\x97\xf3\xc5\xc9\xed\xf1\x70\x30\x93\x6c\x08\x1f\x32\xca\x2c\x06\xfd\x09\xdf\xe1\x38\xee\x26\x4e\x0a\x77\xca\xe9\x89\x87\xc9\x8a\xef\x8f\x78\xa6\x8c\x3b\x82\x68\x0f\x96\x47\xd1\x11\x2d\xa3\x48\x12\xeb\xb2\x59\x6b\x54\x90\x3b\x38\xab\xdc\x18\x3f\xb7\xa2\x9a\x70\x94\x59\x46\xa4\x81\x59\xcd\xd1\x88\xe8\x5a\xa1\x4f\x4c\x1c\x59\x6c\x0d\xae\x6f\x56\x6d\x15\xee\x97\x8c\x33\xfb\xd1\xc3\x67\xd4\x9c\x25\x7c\x8c\xc9\x6d\xb4\x1b\x19\xd7\x5e\xe2\xf8\xd3\x8e\x7c\x20\xc4\x70\x53\xdb\x66\x00\xa7\x26\x2f\xb4\x87\x76\x32\x3e\x98\x39\x31\xf7\xf6\xc7\x59\xe4\xf5\x85\xd2\x31\x09\x43\xad\x53\xd9\x10\x89\x5a\xb8\xf0\x4c\x14\xfe\x5e\xd2\x39\x1e\x57\x63\xba\x5c\x02\xb2\x75\x89\xcc\x48\xc0\x55\x14\x4c\x48\x09\xe8\x96\x03\x4d\x52\xb9\x1b\x5a\xcb\xbe\x91\xcc\xdc\x45\x32\x97\xb3\x0f\x05\x29\xfd\xd1\x83\xf2\xf0\x30\x05\xd2\xa2\x88\x47\xc8\xbf\x25\x85\x1a\x97\x5f\xa8\x8a\x6f\x90\xd7\x68\x84\x1a\x9b\xf7\x89\xfa\x05\x15\xc4\x78\x63\x7c\x59\x20\x16\x89\x38\x89\x9f\x3c\x31\x45\xab\x09\x47\xd3\xb0\x01\x57\x32\x5f\x72\x0f\x5a\xac\xbc\xf0\x53\xe8\x17\xf2\xe5\x6e\xa1\x41\xce\xf5\x7f\x82\x2b\x92\x23\xf5\x01\x73\x0c\x2b\xeb\xda\x26\xfd\xe2\xc3\xb1\x14\x0b\x41\x3b\xf8\xb3\x2f\x54\x22\xed\x63\xf5\x0b\x31\x68\x6d\x14\x6b\x88\xed\x6f\x7e\x75\x02\xa1\xbc\x4f\x24\xa3\x97\x9b\x7a\x35\x0d\xdf\x5a\x38\x7c\x19\x46\xf7\xfc\xa7\x97\x63\x1c\xd2\xf7\x6b\x06\x37\x7e\x5e\xc6\x86\x87\x07\x59\xc3\x9d\xe4\x8b\x7d\x06\x20\x0f\x46\xc9\x98\x91\x78\xe2\x28\x7a\x26\x86\x33\xbe\x96\x4f\x12\x9f\x54\x22\xa4\x84\x48\x9d\x92\x30\xea\xcc\x58\x3c\x98\x2c\x57\x71\x9a\x27\x9e\x2b\x8b\x03\x22\x70\x3c\x3c\x9e\x98\xe2\xac\x7c\x3c\xcb\x97\xa8\x56\xa0\x07\x2b\xd6\xd8\x85\x35\x96\x9f\xfd\x93\x86\x5e\x23\x5e\x19\xfe\xa7\xa8\xa1\x85\x75\x6f\x71\x7e\x0a\x27\xb7\xb8\x00\xd8\x85\x45\xa2\xf5\xb4\x38\x1d\x8d\xfe\xdd\x28\x83\xf0\x3f\x9a\x5f\xe3\x90\xb5\x48\xd5\x3b\x05\xb5\x50\xd6\x2c\x05\x33\x55\x12\xbb\x68\xf6\x67\x55\xd0\xa9\x4f\x34\x9f\xf0\x21\xe3\xab\x68\xbc\xfc\x7e\xd9\xf8\xd6\x7d\x22\x72\xb8\x4c\xd4\xcf\x3e\x51\x1c\x1e\xa6\x94\x8b\x1f\xca\x8d\x06\xa0\xa7\xe2\xe1\x61\x2a\xa4\x28\x8e\x5a\x7f\x85\xe6\xa1\x42\x5f\x09\xf7\x7d\xb9\x99\x01\xda\xcf\x8a\x9d\xb6\x98\x3b\xac\x10\xf5\x40\xfb\xba\x5e\x20\x1c\xf5\xa4\x5c\x35\x69\x00\xfd\x7d\x0e\x3e\xa9\x62\x6b\x59\x14\xfd\xdd\x76\xdc\x27\x15\x12\xc7\x6a\xe8\x79\x97\xd1\x03\x96\x3d\xbb\x87\x08\x8e\x75\x77\x5e\xe3\x7e\x5b\x57\xda\x50\x01\x60\x29\x17\x8b\xda\x61\xf2\x31\x11\xfd\x20\x8f\x0f\x47\x3d\x9f\xf0\x4e\x8a\x67\xd2\xd1\x4e\x2e\xb8\x47\xd6\x68\xde\x6c\xe2\x49\x11\x17\x5d\x89\x99\x87\x49\xaf\xf2\xf1\x69\xa3\xff\x2e\xc0\xf9\xe3\x73\x2d\x40\xfd\xef\xe5\x5d\xc4\xf1\xe3\x94\x72\x95\xaf\x3f\xe2\x61\xf2\x08\x0f\xb3\x99\x4f\x14\xc7\xb5\x45\x7f\x1e\xf5\x51\x9a\xaf\x84\xfc\x2f\x9b\xb2\xf5\x10\xc1\x5f\xd5\x40\xfd\xa3\x36\x6d\xf2\x40\x06\x97\x4d\xf6\xc1\x38\x1f\x55\x96\x89\x18\xda\x6e\x0a\xcc\xc6\x8e\x3e\x9b\x42\x4a\xf0\x4d\x36\xeb\x6e\x23\x1e\x98\xcf\x87\x11\x09\x5b\x15\x79\x01\x2d\x57\xa5\xd9\x1d\xcc\x1d\x56\x29\xbf\x46\x9c\xee\x46\xa1\xcf\xd5\x00\x8f\xe6\x00\x0c\xf9\x46\x5c\xbf\x7c\xa7\x01\x6e\x58\x01\x0c\xde\x06\x70\xa5\x3f\xe5\xd9\xcf\x67\x00\xf0\x67\xfd\xc2\x3d\x1c\xb8\x0f\xd0\xed\xe7\x76\x0c\x06\x18\xa5\x44\xfd\x0d\xc6\xd5\xff\xe2\x3b\x28\x2b\xec\x3e\x63\xff\xea\x73\xb0\xfa\x01\x80\x8c\x22\x71\x79\xc8\x29\x02\x64\xbe\x05\x50\xeb\x0b\x90\xae\x08\xa0\xdb\xf9\x0b\xff\x90\xf2\x14\xa0\x7b\xbd\x13\x16\x00\x38\x1f\x25\xae\x03\x9f\x1c\xca\xfb\x60\xbd\xbb\x1c\x20\xbe\x94\x6a\xde\x2b\x95\x01\x52\x32\x01\xd6\x34\x00\x2c\x6d\x04\xa8\x9a\x07\xb0\x94\x0f\x60\xcf\x81\x6e\xab\x48\x3d\x4a\xb2\x26\x02\xdc\xfe\x06\x50\xb0\x1f\xe0\xe3\x1c\x80\xfc\x63\x00\x6d\x42\xff\xae\xff\xf3\x78\x00\x1e\x9e\x05\xe8\x27\xf0\xdf\x71\x0f\x07\x7d\x01\x06\x45\x02\xec\x8d\x04\x18\xda\x1b\x60\xd7\x6c\xaa\x5f\x6e\xd4\x01\x18\x6d\xf3\x0f\xbe\x83\x57\x00\x53\xfa\x01\xac\xd9\x05\x30\xfb\x04\x40\xbe\x34\xe0\x89\x3b\x23\x91\xee\xe0\x65\xdc\x01\x50\xe9\x03\x90\x26\x0e\xa0\xb5\x0e\x20\xe5\x3b\x80\xc9\x49\x80\x64\x75\xaa\xe7\xf1\xf0\x0f\x31\x9f\x00\xbc\x8c\x00\xe2\x8e\x03\x84\x9b\x52\x1e\x3c\x3e\x02\x20\xa1\x9d\xee\xfd\x27\x01\x61\x5c\x12\x8d\x00\x2a\x87\x02\xa4\x2a\x02\xec\x7f\xfe\xab\xff\x41\xea\x47\x80\x9a\x7c\xe2\xcf\x78\xa7\xff\xab\x0f\x44\xea\xc7\xdf\xc7\x1f\x3d\x8a\xab\xf3\x76\x5b\xaf\xc3\xff\xe0\x33\xe7\xfa\xd2\x9f\xb6\x01\xe8\x75\xec\x17\xee\xe1\x60\x1d\x40\xff\x4a\x80\xed\x5c\xae\x77\x93\x0a\xc0\xd0\x11\x00\x15\x7d\x00\x84\xfa\x00\xac\x0b\x03\x18\xdd\x87\xf2\xf9\x13\x44\x00\xf2\xaf\x53\xbe\x31\x4b\x01\x60\xf6\x01\x80\xa5\x26\x00\x52\xb7\x88\xf7\x40\x69\x12\x40\xb2\x23\x80\xe6\x48\x1a\x87\xc1\x64\xba\xff\x6e\x51\x0d\x10\xeb\x0b\xe0\xda\x1b\x20\xe2\x25\x80\x67\x33\x40\xc4\xbb\xee\x98\x1f\x20\xd2\x9e\xe6\x28\xf6\x20\xdd\x77\x8f\x0d\xa2\x9e\x3a\xdd\x3a\x52\x35\x14\x20\xce\x0d\x60\xef\x24\x80\x24\x07\x80\xb3\xb3\x01\x12\x6f\x00\xd4\xd4\x03\x24\x9b\x02\xbc\x92\x02\x48\x4b\x00\xe8\x70\xfd\xf7\xf8\xc3\xe2\xff\x73\x9d\xb7\x27\xee\xe1\x28\xf7\xef\xd5\x5c\x1d\x73\x13\x87\x07\x58\x1f\x0b\x30\x60\x32\x40\xe9\x05\x80\x21\x9b\x89\xa7\x65\x44\x0c\x40\xc1\x66\x80\x31\xb7\x00\xba\xad\xe5\xe4\xde\x00\xcb\x5c\x00\xa6\x05\x76\x47\x37\x00\x12\xfa\x00\xb1\x17\xa8\x8e\x17\xe7\x0f\xa0\xfa\x0c\x20\xfa\x39\x80\xfe\x20\xba\xc3\x6d\x96\x04\x10\x3a\x1e\xc0\xf6\x24\x40\xd0\x51\xae\xef\xc1\x2c\x80\xa0\x52\xc2\x05\x74\xcf\x43\xf8\x11\x80\x8c\x23\x54\xd7\xef\xb6\xbc\x91\xcb\x01\xaa\x74\x00\x22\x75\x00\xf6\x3a\x00\x44\x1c\x02\x38\x53\x09\x10\xf5\x0c\xa0\xe6\xf4\xaf\x3e\x10\x09\x9f\x01\xba\x0a\xff\x03\x0f\x82\xfe\x7f\x9e\x87\x9e\xb8\x07\x1e\xef\x45\xf5\xf3\xdf\xe7\x81\x87\x7b\x40\x6f\x50\x0d\xb0\xfa\x24\xd5\x44\x78\x7c\x07\x29\xaa\xa4\x1f\x49\xd5\x64\x37\xba\xc7\x3d\x1b\xa8\x1f\x49\xf7\xc9\x96\x57\xf7\x0f\x3b\x09\xa0\x29\x07\x10\xdc\x08\x60\xa2\x06\x10\xe4\x0f\x60\xb7\x1a\xc0\xef\x26\xd5\xb6\xfd\x62\x00\xfc\x6e\x77\x9f\x12\x68\x1e\x82\xe3\x68\x8f\x87\x8c\xed\xf6\x88\x00\x21\x1f\x00\x36\x15\x10\x97\x4c\xf7\x39\x33\xbc\x06\xe0\xd2\xce\x5f\x7d\x20\x22\xc3\x00\xde\xcf\x04\x08\xbf\xc9\x8d\xdf\x94\xea\x9d\x3d\xfb\x21\xfc\xa9\xde\xdd\x93\xf7\xa2\xe7\x3d\x7f\xde\x3c\x14\x94\xd3\x3c\x64\x7d\xa3\xfe\x28\x3f\xe7\x41\x02\x60\xe4\x3e\x42\x97\x0b\x1f\xa0\xf5\x9e\x7a\x0e\x20\x4c\x11\x40\xc2\x0e\x20\xc4\x03\x40\xee\x26\x40\xd0\x1e\x00\xf5\x75\xbf\xf0\x0f\x3e\xc7\xa9\x9f\x54\x77\xcc\xe8\x72\x1b\xc0\x6d\x1b\xe1\x62\x7c\xd4\xa8\x57\x86\x4f\x13\x40\xe6\x0c\x00\x3f\x6d\x80\x22\x33\x80\x40\x59\x80\xcd\xfb\x01\xbb\x82\xee\x63\xc4\x23\x7f\xe1\x2c\x40\xd0\x35\x80\x07\xc7\x01\x82\x5c\x89\x1f\x25\x58\x1a\xa0\x4b\xf7\xcf\x3c\x10\x3f\xf7\x43\x20\x49\x1e\xee\xa1\x27\xef\xc5\xbf\xf0\x1f\x24\x7e\xf1\x1d\xc8\x92\x4c\xd9\x03\xd0\x57\x99\x6c\x5a\xb7\x7e\x44\x06\x00\x8c\xdc\x08\x10\x1c\x08\x30\xc9\x14\xc0\xf7\x4a\x77\x2c\x0e\xe0\xbb\x1a\x40\xc6\xed\x17\xfe\xc1\x7d\x2f\xd5\x38\xba\x75\xc0\xdc\x18\xc0\x7d\x09\x80\xcb\x52\x00\xb7\x23\x00\xbe\xc9\x00\xae\xca\x00\x51\xc1\xd4\x2b\x05\xf9\x0f\x2e\x01\xac\xb2\x02\x70\xf9\x1b\xa0\x32\x84\x7a\x66\xec\x2d\x04\x70\x9f\x45\xf3\xe0\x1a\x05\xf0\x77\x24\x61\x49\x3e\x47\x02\x78\x94\x03\xb0\x0b\x00\xce\x1a\xff\x99\x07\xa2\x27\xef\xc5\xe9\x87\x24\xff\x55\xe7\x4b\xe7\xec\x42\x8f\x7e\x17\x05\x53\x48\xf2\x70\x0f\x89\xdc\xcf\xb1\x33\x00\x06\xe6\x51\x7d\x87\x5f\x11\xa0\xfb\x94\x36\xa6\x81\xf0\x1a\x53\xce\xfc\xaa\xfb\x3b\x54\x12\xaf\x92\xd3\x04\x00\xcd\x73\x00\x4e\xf9\x00\xa6\x75\x84\x77\x70\x4a\x07\xb0\x0f\x06\xf0\xb1\x03\xb0\x9f\x0d\x10\x65\x0b\x60\xe3\x4a\xbd\x75\xac\x26\x13\x06\xc9\x86\x8f\xb0\x5a\xd6\x42\x00\xfb\x92\x01\x6c\xf9\x01\x2e\x57\x12\x7f\xc2\xbd\x3a\x00\x5b\x7f\x80\xfa\x1a\xc2\x41\x30\xa3\x5f\xe3\xfe\xc9\x87\xc0\xd9\x89\x3f\xf1\x5e\x1c\x50\xf9\x5d\x0f\x2a\xb9\xba\x64\x4f\xfc\x47\x4f\x1c\x0c\x8f\xef\x80\x77\xca\x0e\x90\xa0\x38\x64\xf1\x19\x00\xa1\xa7\x00\x4e\xbb\x00\x84\x5f\x00\x38\xae\x02\x98\xd9\x05\x60\xe5\x0e\x20\x9d\x0c\x60\xf3\x05\x40\x4d\x0c\xc0\xb2\x16\xc0\x20\x02\xc0\xf4\x09\x80\xf5\x30\x00\x33\x45\xda\x23\x16\x36\x00\x51\xca\x00\xe6\xe5\xa4\x0f\xc6\x6b\x00\x0a\x67\x03\x18\x58\x01\x6c\x6c\x00\x30\xfc\x06\x70\x48\x04\xc0\xe4\x19\xc0\xe5\x99\x00\xa6\xaa\x00\x8f\xf9\x00\x4c\x3b\xa9\x37\x96\xfe\x61\x00\xb6\xe9\xcf\xfd\x30\x7e\xea\xc1\x9f\x78\x2f\xb8\xd3\x41\x95\x0e\xc9\x9f\x7d\x70\x7a\xe0\x3f\x7a\xf2\x3e\x50\x97\x62\x00\xf7\x41\x00\xbd\xac\x00\x1c\x74\x01\xf8\x4e\x00\xd8\x1e\x04\x18\xf3\x95\x78\x2a\xba\xed\xa7\xf9\x54\xba\xcb\x6f\xc8\xd5\xbc\x0d\x80\xfa\xcf\xe9\x49\x00\x58\x25\x13\xd7\xd4\x62\x57\x00\xad\xc1\x00\x61\x93\x69\xef\x74\xcf\x83\xd6\x41\x80\x35\x2f\x7f\xf1\x40\xa8\x89\x03\x1c\x94\x20\xdc\xc0\x35\x49\x00\x9d\x68\x80\xe7\xfc\x00\xda\x02\x00\x0d\xd3\x7f\x8d\x5b\x2e\xfc\x77\x1e\x88\xa9\xf1\xbf\xd7\xfd\x79\x7a\x70\x68\x25\x49\x1e\xfe\x63\x13\xaf\xef\xc7\x1f\xf0\x1f\xbc\xba\x3f\x0f\x07\x13\xc3\x49\x1e\xff\x85\xcb\x27\x92\x66\x85\x00\xbd\xef\x00\x18\x0b\x01\x8c\xd0\xa4\x6c\xf5\xf8\xf1\xff\xc0\x3f\xe4\x03\xc8\xae\x04\x50\x93\x20\x0e\x0b\xb5\x3b\x84\x95\x50\x14\xa1\xbd\xa4\x5c\x09\x10\x31\x9b\x6c\x49\xf7\x3c\x28\x05\x00\x94\xec\x06\x90\xeb\xa0\xfa\xe6\xa2\xfe\x00\x87\x56\x01\x2c\x0a\x00\xb8\xf2\x09\x40\x7e\x02\xc0\xb3\xaf\x00\xb2\x97\x01\xbe\x0b\x03\xcc\xb0\xef\xc1\x03\xc1\xf1\x21\xf0\xf0\x00\x7f\xd4\x03\x6e\xdc\xbc\x7a\x17\x4f\x0f\x78\xf8\x8f\x9f\xbc\x07\x1c\xfe\x83\xd7\xff\xa4\x67\xdd\xdf\x81\xdb\x47\xc6\xdc\xe7\x75\x23\x01\x06\x77\x01\xa8\x67\x02\x8c\xd1\x02\x50\xb4\x02\x98\xd2\x08\xa0\x18\x49\x78\x6c\xf9\x1f\xc4\xdd\x22\x13\x45\x98\x9f\xf9\xd8\xe1\x1d\xa0\xfb\xec\xd5\xed\x73\x24\x3f\x00\x2c\x0f\x04\x98\xbd\x1a\x60\xcd\x16\xe2\x6e\xc3\x5e\x76\xee\x00\x87\x5e\x02\x88\xdf\x01\xb8\x26\x04\x30\xed\x19\xc0\xd3\xde\x00\x62\x26\x00\x4d\x21\xbf\x70\x1f\x63\xaf\xff\x8e\x7f\xe0\xe1\x01\x7a\xf2\x9f\xfc\x49\x0f\x7a\xe2\x3f\x78\xfb\xa1\x67\xff\x13\x9e\x5d\xf0\xe4\x7e\xb6\x6f\x26\x69\x98\x46\x52\xa5\x82\xfa\x80\x2c\x28\x03\x18\xae\x41\xbd\xc5\xba\xe3\xcf\x39\x51\xa4\x17\xb3\xed\x89\x17\x64\xd6\x29\x00\xd3\xb7\x84\x05\xf0\x10\x00\x98\x36\x17\x20\xe2\x35\xe1\x3a\x96\xfb\x13\xfe\xa1\x3b\x8e\x12\x99\x04\xb0\x2d\x1d\x60\xac\x3c\xc0\x11\x39\xc2\x41\x5c\x4f\x27\xbc\xc7\x8b\x3a\xe2\x2a\x6a\x92\xf8\x37\xee\x63\x10\x87\x9f\xec\xf3\xe1\x77\xfc\x03\x4f\x0f\xb6\xcd\xfd\x5d\x0f\x78\xf8\x0f\x5e\xdd\xfb\x67\xff\x97\x7f\xf4\x43\x82\x7f\xf0\x5f\xf0\xfa\xc0\xfc\xec\xff\xc1\xf5\xa3\xd2\xe7\x6e\x61\x28\xf0\x91\x9c\x23\x05\x30\xd0\x07\x40\x3c\x11\x60\x8c\x06\xc0\xe4\x03\x00\xd3\xea\xc9\xb7\xca\xd5\x53\x6f\x3a\xa3\x6e\xf9\x1a\xc0\xbd\x01\x60\xd4\x37\x80\x30\x4f\x80\x91\x1d\x00\xcb\x8e\x02\x08\x7e\xa3\x9e\x1c\x02\x6e\x54\xab\x1e\x1a\x0d\x70\xf8\x1b\xd9\xe4\x6b\xdc\x38\x9f\xcd\x26\xf9\xe3\x3f\xe0\x3e\x7a\xe2\x1f\xfe\xd4\xff\xe6\x8f\xf8\x0f\xae\x0a\xf3\x27\xfe\x0b\x6f\x0e\x47\xe2\xc4\xe1\x28\x78\xf8\x07\x6d\xee\x56\xd2\x02\xce\x7e\x4e\xe6\xaa\x7a\xc2\xbe\x00\xc3\xc7\x03\x8c\x51\x07\x98\x62\x05\x30\x72\x30\x80\xec\x11\x80\xe1\xd2\x00\x86\x35\xb4\x87\x5c\x3c\x01\x06\xbd\x03\x08\xed\x0f\xd0\xff\x35\xc0\xb2\xc9\x00\xbd\x0b\x00\x0a\xbb\xe7\x3c\x12\x60\x4b\xf7\x18\x2e\x02\x1c\xcd\xa0\xef\xbc\xce\xc5\x40\xb5\x1c\x07\xd0\xd7\x1b\xff\x9d\x07\xe3\xff\x8a\xff\xe0\xf1\x5f\x2c\xe5\x7e\xcf\xc3\x7f\x84\x70\xfa\xd0\xb3\x0f\x8c\xcd\x79\x92\x3c\xfc\x83\xba\x26\x49\x49\x2e\x00\x9b\xc0\xf1\x34\x0d\x73\x05\x18\x54\x46\x78\x9d\x6e\x1d\xe8\x3f\x1c\x40\x46\x17\xa0\x57\x32\x80\x2e\x87\xc9\x70\xe2\x62\x92\xe0\x5e\x24\xd3\xd4\x7f\x5f\xa3\x2d\x1c\xe7\xc8\xe1\xc5\x24\x2f\x73\xdc\x60\x8f\x39\x8c\x0e\xdd\x67\xa6\x78\x1a\xfe\x80\x7f\xf8\xbf\xe2\x3f\x78\x3c\x38\x3d\xf7\x01\x6f\xfc\x3c\x1c\x50\x4f\x3d\xe0\xe1\x60\xe4\xb9\x7d\x37\x93\xdb\x67\x63\xb8\xfd\xf8\x8f\xff\x14\xc6\x71\x36\x5b\x8a\xd3\x15\x5d\xea\xe8\x6b\xed\xc8\xc5\xb6\x41\x9c\x8d\x4a\xe5\xe6\x63\x35\x87\x3d\xab\xe4\x38\xf2\x0e\x89\x91\xbc\xc4\xc5\xc6\x0f\xb8\xcf\x7f\x18\xca\x8d\xd7\xe8\xcf\xf3\xf0\x2f\x1e\xa0\x1e\xf8\x8f\xe5\xd3\xa9\xfa\xf6\x73\xfc\xd5\x80\xd9\xc1\x9f\x38\xa8\x42\xc2\xb7\xb8\x78\xf4\x42\xcb\x68\x3d\x68\x20\xa2\x14\xf4\x6b\x07\x61\x97\x79\x95\x61\x03\x31\x1b\x26\x29\x39\x04\x35\x6b\xd2\xe9\xc1\x58\x65\x18\x7c\x6b\x18\x87\xda\x19\x96\xdd\x07\x33\xf9\xfc\xa7\x85\x11\x43\x33\xd4\x81\x3a\x8b\xf0\x4b\x10\x8f\xf7\xd0\x1a\xfb\x03\xf4\x73\x10\xea\xc1\x50\x37\xba\x29\x38\x64\x6b\x01\xfa\xfa\x21\x35\x95\xa8\xa3\x83\x93\xf7\x63\x7d\x7b\x50\x2d\xe5\xe9\x07\xfa\xff\x8d\x31\x60\x7f\xc5\xd7\x98\x79\xed\x6f\xda\x8a\x31\x63\x6f\xa7\x7f\xe2\x3f\x78\xf3\xd0\x73\xfc\xb9\x5c\x37\x86\x74\xad\xde\xe8\x49\x12\xf7\xf4\xc2\x6c\x72\xd4\xe2\xbe\x88\xf3\x08\xb6\x1c\x88\x68\x0d\x2f\x35\x3e\xac\x26\xb8\xac\x1a\x8a\x27\x32\x2b\x89\x61\xb8\xf2\x86\x62\x23\xf1\xe9\xaa\x7b\x47\x63\x15\x56\xe6\x01\xf1\xa3\x4c\xeb\x3f\x1e\xb3\x66\x42\xa8\xfd\xdd\xff\x89\xec\x24\x39\x3e\xb2\x3f\x56\x46\x26\xd4\x8c\x47\xfd\x16\x49\xa2\xfc\xe4\xf8\xcb\x3a\x68\x8b\xc7\x57\xda\xa1\x4d\x19\x5f\x41\x95\x12\xe1\x72\xba\x19\x3b\xae\x9e\x3a\xc6\x8f\x15\xa8\xc0\xf1\x8f\x0b\xdb\x8b\x99\xc3\x31\x8d\x94\xa7\x1f\x55\x77\x1b\x75\x7b\xb4\x1c\x71\x4b\x8e\xec\xdd\x88\x6b\x37\xc2\x94\xc6\xcf\xc7\xc9\x01\x78\xbf\xb9\x88\xc3\x05\xe5\x59\xd1\xba\x67\xe4\x53\x1f\x24\x1e\x0f\x0c\x0f\xff\x12\x64\x29\x84\xab\xe6\xe9\x3e\x0a\xf9\x01\x1c\xdf\x53\x7f\x20\xcb\x5c\xc2\x85\x18\xbb\x88\x62\xbd\x4b\x53\x80\xb2\xad\xb2\x5b\x27\xe3\xb8\xc5\x1b\xa7\xe2\x8e\x9a\x50\x2b\x8e\x5a\xce\xd7\x77\x36\x37\xfe\x99\x9c\xc5\x15\x37\x1d\x80\x19\xcd\x59\xc9\xf4\x4d\xb3\xab\xa5\x30\x26\x9d\xb9\x59\x03\x2b\x40\x33\x1b\xa8\xe3\xc2\x6c\x2e\x26\x99\x6d\x13\x8f\xf8\x90\x99\x49\xd4\x51\x7e\x86\x3f\x61\x9c\xa7\xad\x24\xde\xea\x69\xf5\xa7\x70\x6d\xa7\x9e\xbb\x89\x6f\x32\x55\xe0\x19\xce\x9b\x68\x4c\x3d\x7e\xdf\xe4\x45\xec\xb7\xbe\x41\xc4\x8b\x92\x63\x45\xd9\xd2\x65\x4d\x43\x6a\xe1\x3f\xf4\x41\x0a\xdc\x36\x1e\x33\x33\x3e\x85\xc2\xa8\x9d\x6e\xa2\x62\x18\x09\x58\x3f\x9d\x86\x55\x26\x63\xaf\x99\x58\xe7\xd6\x56\x26\x5c\x88\xd2\x30\xc2\x0d\xcc\xd3\x93\xc4\x13\x89\x68\x1d\xe1\x42\x04\xb7\xca\x60\x84\xd2\x57\x7f\x01\x57\xbf\x58\x20\x43\x52\x26\x8d\x0f\x63\xb3\x85\x69\x34\x0f\x72\x61\x92\x94\x21\x6f\x51\xf7\xa0\x9f\xa9\xe3\x86\x5c\x98\x0f\xae\x99\xac\x5d\x2c\xfa\xb8\x45\xe7\x88\x41\x7d\x61\x7e\x29\xde\x30\x94\x79\xb5\x0d\x2b\x29\x32\x73\x8f\xe0\x3e\x90\x36\xbe\x42\xf8\x99\xe9\x4f\xf0\xbe\xab\x64\xcd\x27\x7c\xf2\xdc\xba\x4e\x9c\x57\xf1\x1a\x9a\x87\x29\xc8\x7b\xf0\xab\x0f\x14\xe1\x7e\x62\x54\xc7\x13\xbb\x80\xe6\x14\x44\x0d\x78\x87\x4f\x45\xcb\xee\x26\x41\x0e\xd6\x46\x58\x02\xeb\x7d\xa6\x22\x92\x74\xdf\xd9\x9f\xf0\x02\x4a\x6c\x11\x7e\xbb\xf4\x66\x79\xba\xdf\x6a\x27\xdf\x8b\xb4\x59\x19\x77\xfb\xd0\x71\xca\x1c\xe3\x96\x9a\x60\x0f\xf9\x68\x28\x22\x8c\xd4\xd3\x45\x90\x51\x43\xed\xdc\x3c\x1c\xbf\x86\x82\x2a\xee\x48\x8d\x46\x8b\x6a\xd2\x34\x0f\x7c\x43\xcd\x73\x84\x7f\x50\xe3\x6e\x10\x6b\x86\x16\xa1\x8d\x56\x97\xdd\x84\xf6\x55\x6d\xf7\x21\xfc\x7b\x35\x09\xba\xef\xaf\xea\x7a\x0f\x63\x3e\x15\xeb\xb7\x78\x66\x56\x82\x36\x7c\x23\x59\x67\xc2\x83\x48\x61\x3f\x0c\x1e\x0f\x4c\xfc\x9c\x29\xa8\xef\xc1\x75\xc4\x8b\xe2\x33\x66\x0e\xee\x7b\xb7\x47\x64\xb5\x1c\x84\x64\xb1\x1a\x69\x81\x91\x30\x80\xfe\x66\x05\xac\x26\x68\xf4\xa2\x71\xf2\x70\x30\x73\x7b\x6b\xe0\xe7\x26\x01\xe1\x5f\x84\xaa\xc9\x63\xf4\x5f\xc5\xf3\x1c\x3c\x4f\xca\x93\x06\x35\xc3\xd1\xae\x19\xe6\x4e\xc4\x8a\xa9\xe1\x3c\x09\xac\x20\x19\xee\x55\xc1\xba\xbe\x91\x8f\x29\x56\xda\x8c\x92\xdd\x30\x17\x62\xfc\x3e\x04\xf3\xf0\x26\x56\x29\xe8\x1f\x0d\x3f\xe6\xa3\xaf\x36\xfe\xbe\xf1\x3b\x7d\xef\x3e\xf4\x13\x06\x40\x75\x2c\x7d\x63\xe2\x12\xd4\xfb\xfc\x12\x6d\xbf\x6e\xdc\x37\x9c\x0f\x2d\x45\xd2\x07\xa5\xae\x6e\x19\xd3\x31\x1b\x77\x57\xf8\x44\xd2\x46\xbf\xdb\x84\x83\x71\x7f\x41\xb8\x1f\xa7\x42\x79\xdc\x0f\x96\x37\x68\x75\x4c\xfa\x68\xa0\x25\xd5\xf2\xd1\xc6\xfa\x85\x52\x89\x2e\x5a\x39\xc9\xfb\x06\x38\x0f\xd3\x0a\x68\x7c\xc2\x7e\x46\x58\x7d\xe3\xaf\xa7\xdb\xd9\x60\x6d\xca\x45\x1e\x56\x5c\xbd\xd7\x82\xcb\x6c\x59\x95\x0f\x43\x64\x96\xcd\xc4\xc9\x88\x2c\xb2\x15\x90\x40\xfb\x67\xdd\xaa\x8c\x75\x70\xdb\x00\x13\xfc\xd9\xf6\x1c\x55\xde\x6d\x9f\x06\xf5\xa7\x9f\xc9\xc5\xdb\x29\xe4\x62\x3d\xd3\x3a\x9f\xec\x84\xf5\xa4\x5d\xf8\x41\xeb\xf5\x27\x50\x85\xad\x24\xae\xa2\x0f\xb0\xbc\xff\x04\xe7\xc9\xd2\xfb\x0b\x9e\x25\xcd\x6a\xbb\x10\x47\x68\x70\xaa\x7b\x1e\x22\x26\x13\x7e\x2d\xa0\x4e\x1e\xe7\xc1\xe3\xbe\x22\x56\xcb\x5d\xaa\x35\xb0\xea\x61\x53\xa7\x83\x6f\x69\xf2\x54\x1f\x91\xd8\x3d\x71\x30\xb2\x66\xa4\xb5\x73\xcf\x93\x14\xd5\xb7\xc4\x48\x61\x54\x1d\xd5\xd1\x07\x97\xd9\x71\x99\x0a\x1e\x0e\xc6\x89\xb3\x8f\xce\x5b\x7b\xe1\x8c\xba\xec\x1f\x81\x67\x57\x97\xeb\xa2\xe8\xff\xdd\x04\x89\xa1\xc7\xf5\x6f\x25\xdc\x27\x6e\x75\x26\xe8\x2f\xdd\x17\x52\xa7\x92\xc5\xda\x01\x38\x3e\x37\x19\xe2\x75\x77\x9b\x4d\x76\xc2\x5d\xb3\x14\xcf\x74\x6e\x79\x5b\x6f\xd2\xbf\x1f\xc5\x3a\xbf\xb3\xf1\x65\x7f\xfa\xde\x47\x18\xfb\xf2\x70\x31\x8e\x22\x84\x1b\xb3\xb3\xed\x9e\x07\x5e\x3f\x28\x2f\x7f\xb5\x6d\xf0\x0f\x1c\x8c\x6d\x1c\xdd\xaa\xe6\xe1\x60\x0c\x7b\x5b\x62\xe4\xac\xe1\x6a\x83\x6f\xc5\xc3\xc1\x48\x4d\xb1\x47\xd4\xe6\x0c\x61\x47\xb4\x97\x22\x49\xb4\x6a\x82\x99\x84\x30\xef\x77\xce\x95\xbb\xc7\xec\xc9\x1d\x41\x79\x27\x51\x9f\xb7\x7d\x30\xce\xe3\xe1\x61\x7c\x8d\x44\x51\xef\x7d\x3e\xcf\xc3\x98\xd3\xb7\x9f\x32\xe1\x60\xaa\x0d\xbd\x49\x52\xbd\xdb\x3f\x8a\x70\x73\xbe\x4f\xa2\xe3\xe9\x67\x8a\xf5\xfd\x7b\x13\x3f\x8a\x1f\xab\xc2\x9c\x99\x1f\xff\xc1\x95\xf4\x77\x97\x10\x5f\xe5\x33\xe9\x1e\xda\x59\xef\xd2\x57\xe8\x01\x17\x3f\xfa\x8a\x71\x98\x07\xf6\x57\xf3\x3e\xab\x83\xbb\xc5\xfd\x8d\x11\xce\x8e\xc3\x45\xc2\x37\x59\x3e\xb0\xa2\xfe\x70\x7f\xc0\xc1\xc8\xca\x10\xeb\xfe\x6c\xac\xba\x00\x88\xc9\xb9\xe3\x6e\x1e\xf3\xc4\x13\x4f\x52\xfc\xa7\x3d\xb9\xc8\xda\x7b\xce\xef\xe3\x0f\xe1\xa2\xba\xd0\xad\xfd\xf0\x9f\x82\x4b\x04\x38\x86\x2e\xf2\xb8\x61\x20\x81\x33\x1b\x32\x43\x11\xf9\x5d\xc2\x96\x18\xe2\xb8\x43\x6b\xa9\xde\x1d\x16\x47\xdf\x18\xbe\x31\x0a\xed\x7f\x98\xe3\xd2\x37\xf4\x33\x75\x5e\x08\x77\xa3\x3e\x52\xe1\x43\x29\x9e\x08\x9f\x77\x1e\x2d\x7a\xc8\xc9\x5b\x18\x19\x84\x94\x3f\xc7\x88\x8f\x87\x8b\x09\xa8\xeb\x4a\x02\xf0\x08\x31\xc5\xb8\x80\x87\x83\xb1\x3d\x47\xd1\x1b\x0f\x07\xa3\xb7\xc1\x0d\xd7\x5f\xc3\xdc\x1d\xff\x41\x61\x75\x0f\x1c\x4c\xa5\x17\xa2\x15\x26\x6e\xf5\xc6\x59\x1e\xb5\x3d\x00\x4f\xac\x7c\xd5\x01\x9c\x1d\x0c\x35\x23\xc9\xeb\x93\x14\xc3\x9d\xc8\x62\x27\x51\x07\xc3\xd8\xa7\x84\x87\x89\xf9\x3c\x19\x3d\x6f\xcc\x1c\x09\xac\x25\xc5\xfa\x29\xa2\x86\xc5\xf9\xd3\x4e\x8c\x37\xa5\x79\x88\x2d\x5f\x82\x3b\x2d\xe6\x4b\x28\xee\x9b\xb8\xe9\xa9\x58\xc7\x8c\x0d\xca\xc3\x33\x42\xec\x90\x72\x8c\x60\xe3\x26\xef\xc2\x4a\x6a\xbc\xc8\x29\xea\x83\xb3\xe8\x2a\xda\xe1\x68\xbf\x27\x18\xd1\x46\xe5\x7c\xc0\x78\x9d\x70\x31\x6e\x75\x8e\x98\x31\xb2\x79\xe4\x84\xda\x68\x51\x4d\x68\x2c\xa3\x5c\x4f\x74\x88\x5a\x1b\x3c\x09\xc5\xd9\xcf\x9b\x58\xcb\x06\xf8\x62\x5c\x29\xa1\x4f\xda\x39\xcd\x23\x10\xd1\xaa\xc2\xc3\x42\x71\xd6\x05\x8d\xa9\x8f\xce\x40\xdd\x08\x8a\xfa\x13\x62\xb8\x13\x05\x8f\x17\x26\x89\xeb\x18\x9f\x52\xdc\x1f\x3d\x52\x72\x22\x45\xa0\xc9\xf5\xa2\x68\x71\x93\x9f\xcd\x43\x8f\x93\x22\x48\xfd\x06\x53\xf6\xe9\x63\x8e\x3c\x55\xce\x1a\x23\xd8\x54\x27\x62\x22\x4a\x53\x27\xa6\x8e\x14\xf7\x24\xfc\x5c\x9a\x5e\x1e\xe1\x61\x24\xd6\x62\x3c\x9e\x7a\x6c\xfb\x1e\xfa\x99\x72\x0b\x29\x99\x97\x31\x3e\x4d\x4a\x20\x9c\x6d\xc2\xb5\x17\xe8\x47\xe2\xcf\x7c\xcb\x03\x70\x88\x74\xc7\xea\xb7\x55\x1d\xe1\x61\x4c\x05\x08\xff\xa3\xb7\xdc\x1f\xf5\x5d\x73\x14\x9d\x24\x14\xe2\x82\x09\xff\x00\xe1\xf8\xef\xb3\x0a\x08\x07\x23\x26\x16\x85\xa8\x14\xe1\x85\x31\x38\x9a\x61\xe7\x63\x10\xcd\xd0\xbb\x2a\x51\x8b\x1b\x2f\x87\x87\x49\xe3\xe2\xc8\x5f\xfc\x30\x7d\x11\xc7\xc1\xc3\xc3\x64\x9c\x16\xe5\x78\x62\x88\xa9\x2e\x2b\x99\xee\x6a\x64\x26\x11\xaf\x58\xe6\x02\xea\x6c\x95\x51\x43\xc8\xbb\xac\x1b\xa1\xe8\xc1\xb2\xf4\x93\x30\x3e\xc8\x7c\x92\x8d\x32\x6b\xd2\x5a\x8c\xe4\xb3\x24\xb7\xe1\x79\x22\xf3\xca\x21\x8c\xf0\x33\x66\x5f\xd4\xa7\xef\xbb\x27\x41\xdf\x43\xe7\x8e\x65\x9f\xbf\x8a\xff\x83\x0f\x27\xc1\x97\xec\xe1\x72\xd2\x67\xed\xe3\xc1\x38\x1f\xca\xb9\xe1\xb8\x1f\xe4\x54\xa9\xa1\x96\x94\x51\x0c\x6a\xdb\xcc\x24\xba\x81\x34\x39\x91\xac\xf6\xe8\xad\xc9\x18\xbd\xf0\x01\xe1\x06\x7a\xcf\xe1\x9d\x8e\x97\x71\x15\x53\x1e\x1e\xa6\x80\xcb\xe4\xe6\xaf\x1b\x80\xfb\xbb\x60\xf2\x48\xe4\x2f\x29\x18\x4f\x76\xb2\xc0\x48\x02\x11\x56\xf9\xe9\xc4\xe0\x96\xff\x4d\x0f\xe7\x89\xd7\x37\x29\x4f\x84\x2c\x6f\x01\x23\xbc\x75\x7e\x12\x31\xd3\x14\xf4\xa6\xbe\x62\xab\xe6\x96\xe2\x9b\xaf\x32\xdb\x9a\x4c\xdf\xb7\x1f\xfd\x47\xde\x8f\xf3\x98\x33\xcc\x4b\xbd\x8d\x2b\x97\x6b\xfe\x1c\x73\x22\x2b\x25\x3e\x32\x00\x6b\x45\x8e\x0f\x87\xeb\x0b\xa5\x67\x40\xeb\xac\xf1\x24\x06\xd1\x15\xf2\x75\x31\xf8\x94\x05\x53\x13\x70\xf6\xe6\xaa\x26\xe1\x3e\x9f\xb6\x39\x05\xcf\x13\x13\x8d\x29\xaa\x13\xba\xb9\x1c\x77\xe5\xe0\xf8\x0c\xcc\xe8\xf4\xda\xb5\x82\x3b\x81\xff\x37\x3c\x4c\x71\x28\x4d\x4c\x89\xc7\x64\x64\x74\x2b\x29\x92\xc0\x75\x2b\x9e\xa7\x80\x71\x42\xd1\x1d\x8a\xc0\x4a\xfc\x2c\xaf\xd0\xe7\x5d\x71\x3f\x14\x3f\xa7\x38\xa2\xd8\x96\x56\xa2\xe8\x7c\x26\x5a\xfc\x12\x85\x35\xf8\xa4\xb5\xd2\x9b\x70\x5e\x8a\xed\xf7\xbe\x25\x79\x16\x79\xf9\x8a\xba\x6e\xe1\xbf\x17\x9d\xae\xc3\x95\x2b\xce\xfa\x2a\xf3\x8b\x0f\xc7\xf0\x62\x74\x55\xb7\xd4\xaa\x27\x9e\x27\x15\xa0\xfe\x5f\x3f\x71\x30\x37\xd2\x30\xce\x9e\x75\x63\x19\xea\x83\x68\x5f\xba\x0d\x22\x5c\x4e\xbc\x38\x02\x61\xe4\xc5\x07\x1c\xa7\xd3\x0f\x70\xa8\xc6\x5f\x78\x98\x22\x2e\x93\xc9\xc3\xc3\x94\x8d\xa3\xf3\x55\x4f\x3c\x4c\x85\xf1\x5c\x5c\xcf\x0a\x7d\x79\xcc\x01\x97\x8f\xd1\xc6\x1d\x55\x96\x44\x11\x4a\xf9\x15\xba\x8f\x51\x7e\xd6\x9f\x24\x23\x0b\x54\xa1\x94\x8e\xf7\x2c\xd6\x17\xad\xc1\x37\xae\xd8\x43\x38\xfc\x8a\x53\xd5\xa8\xc9\x15\x87\xcf\xe0\xfc\x94\x0f\xbd\x49\xcf\x35\xa9\x45\xbf\xba\x4e\xe4\x1d\xe2\x6d\x7a\xf5\xea\xdd\xbb\x4f\x9f\xbe\x7d\xfb\xf5\xeb\xdf\x7f\xc0\x80\x81\x03\x07\x0d\x1a\x3c\x78\xc8\x10\x3e\xbe\xa1\x43\xf9\xf9\x87\x0d\x1b\x3e\x7c\xc4\x08\x01\x01\x41\x41\x21\xa1\x91\x23\x47\x8d\x1a\x3d\x7a\xcc\x98\xb1\x63\xc7\x8d\x13\x16\x1e\x3f\x7e\xc2\x04\x11\x91\x89\x13\x27\x4d\x9a\x3c\x59\x54\x54\x4c\x6c\xca\x94\xa9\x53\xa7\x4d\x9b\x3e\x7d\xc6\x0c\x71\xf1\x99\x33\x67\xcd\x9a\x3d\x7b\xce\x9c\xb9\x73\xe7\xcd\x93\x90\x90\x94\x94\x92\x92\x96\x9e\x3f\x5f\x46\x66\xc1\x82\x85\x0b\x65\x65\x17\x2d\x92\x93\x93\x97\x57\x50\x50\x54\x54\x52\x52\x56\x56\x51\x51\x55\x55\x53\x53\x57\xd7\xd0\xd0\xd4\xd4\xd2\xd2\xd6\xd6\xd1\xd1\xd5\xd5\xd3\xd3\xd7\x37\x30\x30\x34\x34\x32\x32\x36\x36\x31\x31\x35\x35\x33\x33\x37\xb7\xb0\xb0\xb4\xb4\xb2\xb2\xb6\xb6\xb1\xb1\xb5\xb5\xb3\xb3\xb7\x77\x70\x70\x74\x74\x72\x72\x76\x76\x71\x71\x75\x75\x73\x73\x77\x5f\xbc\xd8\xc3\x63\xc9\x12\x4f\x4f\x2f\x2f\x6f\x6f\x1f\x1f\x5f\x5f\x3f\x3f\x7f\xff\x80\x80\xc0\xc0\xa0\xa0\xe0\xe0\x90\x90\xd0\xd0\xb0\xb0\xf0\xf0\x88\x88\xc8\xc8\xa8\xa8\xe8\xe8\x98\x98\xd8\xd8\xb8\xb8\xf8\xf8\x84\x84\xc4\xc4\xa4\xa4\xe4\xe4\x94\x94\xd4\xd4\xb4\xb4\xa5\x4b\x97\x2d\x4b\x4f\x5f\xbe\x3c\x23\x23\x33\x33\x2b\x6b\xc5\x8a\xec\xec\x95\x2b\x73\x72\x72\x73\xf3\xf2\xf2\xf3\x0b\x0a\x56\xad\x5a\xbd\xba\xb0\x70\xcd\x9a\xa2\xa2\xe2\xe2\x92\x92\xb5\x6b\x4b\x4b\xd7\xad\x2b\x2b\x2b\x2f\xaf\xa8\x58\xbf\x7e\xc3\x86\x8d\x1b\x2b\x2b\xab\xaa\x36\x6d\xda\xbc\x79\xcb\x96\xad\x5b\xb7\x6d\xdb\xbe\x7d\xc7\x8e\x9d\x3b\x77\xed\xda\xbd\x7b\xcf\x9e\xea\xea\xbd\x7b\xf7\xed\xdb\xbf\xff\xc0\x81\x83\x07\x0f\x1d\x3a\x7c\xf8\xc8\x91\xa3\x47\x8f\x1d\x3b\x7e\xfc\xc4\x89\x93\x27\x4f\x9d\x3a\x7d\xfa\xcc\x99\xb3\x67\xcf\x9d\x3b\x7f\xfe\xc2\x85\x8b\x17\x2f\x5d\xba\x7c\xf9\xca\x95\xab\x57\xaf\x5d\xbb\x7e\xfd\xc6\x8d\x9b\x37\x6b\x6a\x6e\xdd\xfa\xeb\xaf\xdb\xb7\xef\xdc\xb9\x7b\xf7\xef\xbf\xef\xdd\xbb\x7f\xff\xc1\x83\x87\x0f\x1f\x3d\x7a\xfc\xf8\xc9\x93\xa7\x4f\x6b\x6b\x9f\x3d\x7b\xfe\xbc\xae\xee\xc5\x8b\x97\x2f\x5f\xbd\x7a\xfd\xfa\xcd\x9b\xb7\x6f\xdf\xbd\x7b\xff\xfe\xc3\x87\x8f\x1f\x3f\x7d\xfa\xfc\xb9\xbe\xfe\xcb\x97\xaf\x5f\xbf\x7d\xfb\xfe\xfd\xc7\x8f\x86\x86\xc6\xc6\xa6\xa6\xe6\xe6\x96\x96\xd6\xd6\xb6\xb6\xf6\xf6\x8e\x8e\xce\xce\x2e\x3c\x51\xfc\x6f\xfd\xff\xb7\xfe\xff\x5b\xff\xff\xad\xff\xff\xd6\xff\xff\xcd\xf5\x07\xf0\x5f\x12\x86\xcc\xc6\x7d\xfa\x8e\x00\xe0\x6a\x1c\x3f\xff\xfb\x0f\x3f\xf7\xea\xdd\x0b\xff\x4f\x6f\xe8\x03\x7d\xa1\x1f\xf4\x87\x01\x30\x10\x06\xc1\x60\x18\x02\x7c\x30\x14\xf8\x61\x18\x0c\x87\x11\x20\x00\x82\x20\x04\x23\x61\x14\x8c\x86\x31\x30\x16\xc6\x81\x30\x8c\x87\x09\x20\x02\x13\x61\x12\x4c\x06\x51\x10\x83\x29\x30\x15\xa6\xc1\x74\x98\x01\xe2\x30\x13\x66\xc1\x6c\x98\x03\x73\x61\x1e\x48\x80\x24\x48\x81\x34\xcc\x07\x19\x58\x00\x0b\x41\x16\x16\x81\x1c\xc8\x83\x02\x28\x82\x12\x28\x83\x0a\xa8\x82\x1a\xa8\x83\x06\x68\x82\x16\x68\x83\x0e\xe8\x82\x1e\xe8\x83\x01\x18\x82\x11\x18\x83\x09\x98\x82\x19\x98\x83\x05\x58\x82\x15\x58\x83\x0d\xd8\x82\x1d\xd8\x83\x03\x38\x82\x13\x38\x83\x0b\xb8\x82\x1b\xb8\xc3\x62\xf0\x80\x25\xe0\x09\x5e\xe0\x0d\x3e\xe0\x0b\x7e\xe0\x0f\x01\x10\x08\x41\x10\x0c\x21\x10\x0a\x61\x10\x0e\x11\x10\x09\x51\x10\x0d\x31\x10\x0b\x71\x10\x0f\x09\x90\x08\x49\x90\xc4\x92\x59\x0a\x4b\x65\x69\x6c\x29\x5b\xc6\xd2\xd9\x72\x96\xc1\x32\x59\x16\x5b\xc1\xb2\xd9\x4a\x96\xc3\x72\x59\x1e\xcb\x67\x05\x6c\x15\x5b\xcd\x0a\xd9\x1a\x56\xc4\x8a\x59\x09\x5b\xcb\x4a\xd9\x3a\x56\xc6\xca\x59\x05\x5b\xcf\x36\xb0\x8d\xac\x92\x55\xb1\x4d\x6c\x33\xdb\xc2\xb6\xb2\x6d\x6c\x3b\xdb\xc1\x76\xb2\x5d\x6c\x37\xdb\xc3\xaa\xd9\x5e\xb6\x8f\xed\x67\x07\xd8\x41\x76\x88\x1d\x66\x47\xd8\x51\x76\x8c\x1d\x67\x27\xd8\x49\x76\x8a\x9d\x66\x67\xd8\x59\x76\x8e\x9d\x67\x17\xd8\x45\x76\x89\x5d\x66\x57\xd8\x55\x76\x8d\x5d\x67\x37\xd8\x4d\x56\xc3\x6e\xb1\xbf\xd8\x6d\x76\x87\xdd\x65\x7f\xb3\x7b\xec\x3e\x7b\xc0\x1e\xb2\x47\xec\x31\x7b\xc2\x9e\xb2\x5a\xf6\x8c\x3d\x67\x75\xec\x05\x7b\xc9\x5e\xb1\xd7\xec\x0d\x7b\xcb\xde\xb1\xf7\xec\x03\xfb\xc8\x3e\xb1\xcf\xac\x9e\x7d\x61\x5f\xd9\x37\xf6\x9d\xfd\x60\x0d\xac\x91\x35\xb1\x66\xd6\xc2\x5a\x59\x1b\x6b\x67\x1d\xac\x93\x75\xb1\xee\xff\x00\x80\xf5\xea\xea\xdd\xd9\xa7\xa3\x6f\x7b\xbf\xb6\xfe\xad\x03\x5a\x06\x36\x0f\x6a\x1a\xdc\x38\xa4\x81\xef\xc7\xd0\xef\xfc\xdf\x86\x7d\x1d\xfe\x65\x44\xbd\xc0\x67\xc1\x4f\x42\x1f\x47\x7e\x18\xf5\x7e\xf4\xbb\x31\x6f\xc7\xbe\x19\xf7\x5a\xf8\xd5\xf8\x97\x13\x5e\x88\xd4\x4d\x7c\x3e\xe9\xd9\xe4\x5a\xd1\xa7\x62\x4f\xa6\x3c\x9e\xfa\x68\xda\xc3\xe9\x0f\x66\xdc\x17\xbf\x37\xf3\xef\x59\x77\x67\xdf\x99\x73\x7b\xee\x5f\xf3\x6e\x49\xd4\x48\xde\x94\xba\x21\x7d\x7d\xfe\x35\x99\xab\x0b\xae\x2c\xbc\x2c\x7b\x69\xd1\x45\xb9\x0b\xf2\xe7\x15\xce\x29\x9e\x55\x3a\xa3\x7c\x5a\xe5\x94\xea\x49\xb5\x13\xea\xc7\x35\x8e\x69\x1e\xd5\x3a\xa2\x7d\x58\xe7\x90\xee\x41\xbd\x03\xfa\xfb\x0d\xf6\x19\xee\x35\xaa\x36\xde\x63\xb2\xdb\x74\x97\xd9\x4e\xf3\x1d\x16\xdb\x2d\xb7\x59\x6d\xb5\xde\x62\xb3\xd9\x76\x93\x5d\x95\x7d\xa5\xc3\x46\xc7\x0d\x4e\xeb\x9d\x2b\x5c\xca\x5d\xcb\xdc\xd6\xb9\x97\x2e\x5e\xeb\x51\xb2\xa4\xd8\xb3\xc8\x6b\x8d\x77\xa1\xcf\x6a\xdf\x55\x7e\x05\xfe\xf9\x01\x79\x81\xb9\x41\x39\xc1\x2b\x43\xb2\x43\x57\x84\x65\x85\x67\x46\x64\x44\x2e\x8f\x4a\x8f\x5e\x16\xb3\x34\x36\x2d\x2e\x35\x3e\x25\x21\x39\x31\x29\x29\x31\x39\x21\x25\x3e\x35\x2e\x2d\x76\x69\xcc\xb2\xe8\xf4\xa8\xe5\x91\x19\x11\x99\xe1\x59\x61\x2b\x42\xb3\x43\x56\x06\xe7\x04\xe5\x06\xe6\x05\xe4\xfb\x17\xf8\xad\xf2\x5d\xed\x53\xe8\xbd\xc6\xab\xc8\xb3\x78\x49\x89\xc7\xda\xc5\xa5\xee\xeb\xdc\xca\x5c\xcb\x5d\x2a\x9c\xd7\x3b\x6d\x70\xdc\xe8\x50\x69\x5f\x65\xb7\xc9\x76\xb3\xcd\x16\xeb\xad\x56\xdb\x2c\xb7\x5b\xec\x30\xdf\x69\xb6\xcb\x74\xb7\xc9\x1e\xe3\x6a\xa3\xbd\x86\xfb\x0c\xf6\xeb\x1f\xd0\x3b\xa8\x7b\x48\xe7\xb0\xf6\x11\xad\xa3\x9a\xc7\x34\x8e\xab\x9f\x50\x3b\xa9\x7a\x4a\xe5\xb4\xf2\x19\xa5\xb3\x8a\xe7\x14\xce\xcb\x5f\x90\xbb\xb8\xe8\x92\xec\xe5\x85\x57\x16\x5c\x95\xb9\x36\xff\xba\xf4\x0d\xa9\x9b\x92\x35\x12\xb7\xe6\xfd\x35\xf7\xf6\x9c\x3b\xb3\xef\xce\xfa\x7b\xe6\x3d\xf1\xfb\x33\x1e\x4c\x7f\x38\xed\xd1\xd4\xc7\x53\x9e\x88\x3d\x15\xad\x9d\xfc\x6c\xd2\xf3\x89\x75\x22\x2f\x26\xbc\x1c\xff\x4a\xf8\xf5\xb8\x37\x63\xdf\x8e\x79\x37\xfa\xfd\xa8\x0f\x23\x3f\x0a\x7d\x12\xfc\x2c\x50\x3f\xe2\xcb\xf0\xaf\xc3\xbe\xf1\x7f\x1f\xfa\x83\xaf\x61\x48\xe3\xe0\xa6\x41\xcd\x03\x5b\x06\xb4\xf6\x6f\xeb\xd7\xde\xb7\xa3\x4f\x67\xef\xae\x5e\x0c\xfe\xa7\x03\xff\xd3\x81\x6e\x4b\xb0\x48\x55\xe1\xc2\x70\x4d\xc6\x74\x43\xd5\x6e\x8e\xe3\x67\xcc\xf6\x9a\x7e\xf9\x8c\x37\x8c\xb9\x4d\x35\xb5\x9f\xef\xcf\x76\xbb\xac\x76\xbe\xa8\x53\xd1\x75\xd5\x25\x22\x54\xd6\x7e\x69\x57\x7f\xbb\x07\x59\x07\x3d\xa3\x3b\x03\x2d\xe7\x6d\x70\x0d\x48\xea\x38\x6c\xea\x76\x30\x26\x7c\x59\xc7\x2c\x83\x31\x7f\x59\x45\x6f\x6c\x2f\xd7\xce\xff\xd6\x15\xd7\xd9\xe1\xad\xb9\xac\x45\x31\xfc\x61\xa7\x81\xfa\xf1\xd6\x65\xfe\x33\x3e\xa8\x69\x8e\x6c\x6d\xf3\x5d\xf0\x70\x80\xb6\x43\x9b\xbc\xcf\xda\x2b\x26\x7a\xf7\xdb\x66\xf9\x59\x9d\x9a\xab\xef\xd1\xf6\x7d\xc9\x4b\xc6\xe4\x4e\xc8\x2f\x1c\xbe\x9b\x31\xa3\x97\x4a\xae\x63\x56\x33\xe6\x92\xa9\xf6\x56\xf4\x0d\x63\x5e\x77\x8d\xb6\xcc\x7f\xc7\x0e\x7b\xbe\x74\x18\xaf\xf3\xb6\x2b\x7a\x49\xa8\xaf\xab\xf3\xc9\xce\x14\xa7\xce\xf4\x13\xfe\x97\x3b\x76\xda\x98\xac\x0f\x8a\xa8\x6c\xff\xcb\xfc\xfc\xa1\xf9\x09\x7d\xda\x3d\x0d\x9a\xfe\x96\x4c\x9a\xd2\x96\xab\x73\xa0\x71\xd5\xd2\x99\xed\x2b\xb4\x47\x35\x75\xc6\x07\x7e\xfd\xaa\xed\xde\xfc\x3a\xea\xc9\x93\x7b\xba\x47\x5a\xd6\x86\xd7\x5f\xd1\x33\xea\xd3\xb2\x27\xa2\xf9\x84\x9a\x49\xaf\x56\xc3\xd0\xfd\xfb\x8b\x4c\x12\xda\xc4\x03\x7a\x31\xa6\x78\x56\xae\x69\x44\x24\x63\x66\x77\xe4\x1a\x47\x2b\x33\xb6\x38\x5c\xed\xdd\x94\x54\xc6\x02\x2b\x0c\xac\x65\x0e\xb0\x0f\xa1\x1e\x16\x37\x34\x2b\xbb\x94\xbc\x75\xbc\x6e\xb9\x5d\xeb\x38\xb2\x78\x5d\x4a\x5a\x84\x46\x7b\x89\xe3\x8a\xd2\x84\xa4\x93\x6d\xbe\x56\xdf\x0e\xdd\xcd\x50\x6d\xb5\x31\x4e\x79\xe4\x95\x33\xb0\x35\x56\xcf\xb9\x61\xe0\x8a\xab\xed\xfd\xb5\x9b\x9b\x14\x93\xab\x5e\x08\xe8\xef\x6c\xda\x98\x1c\x76\xbd\xd5\x38\xbb\xd9\x28\x51\xff\x4c\x96\xe9\x96\xe6\x57\x71\x9b\xf6\xdd\xb0\x70\x69\xd9\x10\xf5\x79\x4b\x9b\x65\x6b\x6b\x6a\xe8\x7a\xc6\x34\xc7\x2e\xb0\x1f\x5e\xc5\x98\x7d\x1f\x59\xef\xd1\x55\x8c\x05\xf4\x51\xaa\x11\x7b\xc3\x58\x54\xb8\x56\x80\xd4\x64\x76\x27\x7e\xbc\x99\x81\x4e\x6a\x97\x74\x58\x95\xfb\x8a\xc5\xba\x1d\xb3\xbd\x0b\xe2\x9c\x63\x93\xdb\xfc\x5c\xc3\x4a\x76\x64\x4e\x6e\x9d\x6e\x1b\x7d\x78\x78\xde\x97\xe6\x02\x93\x61\x2f\x87\x15\x4f\x6b\x49\xd2\xbf\xf9\x7d\x43\x41\xff\x8f\x3f\x0c\x12\x1b\x2c\x56\x44\xdf\x8a\x36\xb3\x6b\xb8\xb3\x42\xe6\xd4\x0c\xcb\x93\x8d\x2d\xe9\xc7\xf6\x8e\xb1\xe9\xdb\x3c\x39\x45\x6b\xf3\x03\xdb\x6b\x2d\xfc\xf1\x4b\xd6\x4d\x72\x18\xd4\xf2\x24\xea\x21\x63\x3a\x2f\xe7\x6b\x0e\xd7\x63\xcc\x6d\x9e\x64\x8b\x50\x08\x63\x11\x43\x16\x3c\x14\x11\x62\x6c\xe9\x74\xe5\xdd\x73\xbd\x59\x63\x46\xb2\x81\xb6\xe6\x9b\x2e\xc3\xd4\x1f\x0e\x13\xdc\xc3\xda\x87\x86\x6c\x0d\xfe\x90\xf6\x77\xcb\x41\x2f\xd5\x55\x7d\x57\x6f\x69\x56\x73\xec\x7f\x68\x43\xe9\x8f\x86\x37\xa6\x76\x1f\x27\x54\xdd\x6f\x3a\x6e\xa4\xf3\x75\x52\xe9\xab\x7b\x37\x2c\xea\xbf\xe9\x97\x3c\x3e\x7d\xd3\x56\xf8\x87\x53\xc1\xd7\x3d\x13\x1c\x52\x1b\x3a\xb2\x37\x6c\x78\xec\x12\xd6\xb8\x23\xb3\xbd\xf8\xaa\xeb\xc8\x66\xd5\x94\x4f\x79\x23\xdd\x1a\x5b\xc6\x24\x18\x33\x66\x54\x2f\x15\x37\x7c\x19\x63\x9e\x9b\x25\xc4\x85\x54\x19\x4b\x52\x92\x7a\x3e\x7e\x2f\x63\x39\xe1\x8b\x8a\xc5\x77\x30\xb6\x66\xa2\x66\x81\xaa\x6c\x97\x73\x9e\xa7\x95\xab\xdb\xfa\xb6\x9c\xe4\x8d\xbe\xc7\x33\xc6\x35\x7d\x0d\x64\x59\x42\xe5\x79\x0d\x7c\xae\x47\x0f\x1b\x6f\x3f\xf0\x7d\xb6\xc5\x8a\xf7\x5b\xf7\x1c\xa8\xdd\x61\x9d\xfa\x29\x6d\x9b\xf8\x29\x61\x67\x93\xfa\x96\xca\xe8\xad\x7a\x8b\x8f\x7d\xb3\x5c\xe7\x5c\x76\xd4\x23\xe2\xc7\xa5\x55\x83\x0a\xa4\xbd\x9e\x36\x5c\xce\x69\xc9\xbc\xef\x5d\xd6\xe4\xb5\x7c\x56\x62\x8b\x5f\xaf\xe6\x43\xc9\x42\x8c\x59\xba\xce\xbd\x32\x2c\x8d\xb1\xa0\xbe\xb3\xb2\x05\x16\x32\x96\x31\x79\x9e\x8b\x70\x1f\xc6\x4a\xef\x4b\x5e\x16\xad\x60\x6c\xb3\xb1\xf2\x44\x85\xb8\xae\x17\x5b\x73\xf5\x43\xec\x8a\xda\x4e\x16\x7e\x71\x2d\x4b\xdf\xdd\x20\x1f\x9b\x96\xc0\xbf\xfd\x42\x7d\x9e\x8f\xd0\x81\x6d\x27\x3a\xea\xb5\xed\xfa\xbd\x12\x3f\x21\x79\x6a\x98\xc7\xc1\xf7\x1a\xfb\x1d\xb6\x18\xf8\x5c\xff\x3c\x62\xbb\xc5\xaa\x73\x41\xde\x5f\x4a\x2a\x25\x32\x26\x86\x0c\xfe\x6e\x54\x72\x33\x65\x44\xc8\xea\x86\x91\x05\xab\x62\xc4\x42\xcf\x35\x6e\x58\x11\x10\x7e\x22\xe4\x75\xf3\xbc\x34\x25\xc6\x9c\x16\xcd\xf9\x38\x7c\x23\x63\x51\x26\xe2\xa5\x02\xfc\x8c\xad\xfa\x30\x6d\x98\x20\x1f\x63\xdb\xa3\x67\x86\x09\xc7\x32\x76\x74\x9f\xcc\x7d\x89\x9b\xcc\xf0\x4c\x9d\xba\xa8\x79\xef\x76\xb3\x63\xe9\xe6\x43\x93\xef\x7f\x7f\x5d\x2a\x13\x30\x6e\xcf\xf9\xa7\x7a\xf1\x41\x87\x87\x3d\x1d\x74\x6c\x44\xc4\xbe\x47\xb3\x6e\x7e\x29\xaa\x8b\x4d\x78\x2d\x75\xd2\x62\x59\x54\x82\xca\x87\x47\x7b\x67\x24\x3d\x8b\x4d\xf9\x32\x60\x53\x50\x5c\x69\xac\xf2\xb7\x5d\xeb\x9c\x22\xf7\xc5\x0d\x68\x18\x5f\xb0\x22\xd4\x28\x6e\x66\xd3\xac\x8c\x53\x41\xaa\xb1\x1d\xcd\xf1\x29\xe9\x8c\xb9\x9f\x99\x9a\x38\xe4\x3a\x63\x4b\x01\x0e\x02\x30\x46\xa8\x18\xc6\xce\x06\x80\x5d\xb7\xbc\xa3\x2a\xae\x36\xc1\x87\xb1\xda\x2b\x72\x6b\x35\x1e\x77\xdc\xfa\x10\xac\x19\x1f\xfc\xed\x87\xf9\xeb\x0c\xf3\x19\x3b\x96\x9c\x19\xb5\xad\xd7\x86\xf1\xdf\x2f\x2d\x7d\x72\xc4\xeb\xf6\xee\xfb\xfe\x09\x7f\x17\x3e\x7c\x53\x76\x2c\x25\xca\xaf\x40\xe6\xd3\xde\x9d\xc3\xc2\x0a\x72\x0e\x7e\xb5\x5f\x7f\x2f\xd8\x38\xfb\xe2\xf7\x87\x45\xe5\x01\x8a\x99\x2f\x1a\xe7\xad\x0c\xf0\x15\xcb\x5c\xdf\xb4\x67\xd9\x35\x2f\xc3\xe5\xc7\x5a\x64\xe3\xdb\x19\xf3\xaa\x9e\x5c\x33\xe8\x11\x63\xd9\xfc\xf4\x1e\xbb\x4d\xe8\x3d\x6a\xf2\x49\xfe\x98\x0b\xd8\x57\x98\x35\x49\x6e\x99\x55\xdb\x29\xd0\xfa\x49\xdd\x26\xa0\xe1\x81\xfe\x17\x07\xab\xc8\xaa\x63\x6b\x06\x3d\x5c\x9b\x61\x71\x47\xc7\xfb\xef\xba\x01\xb5\xb5\x97\x94\xbd\xde\x9d\x4b\x7d\xaf\xb6\x7f\xb1\xf7\xa7\x5d\xd7\xea\x57\x6e\xba\xe6\x3d\xb7\x4a\xfa\xdb\x86\xd2\x8d\x9e\x39\x65\x72\x0d\x9a\xf9\xc2\x1e\x83\x4a\x6f\x34\xbe\xca\xf4\x71\x0f\x28\xf2\x69\x8e\x48\xe1\x77\x87\xfc\x41\x2d\xfb\x62\x76\x33\xe6\x6f\x4c\x7d\xa4\x08\x15\xc9\xd8\x31\x17\x92\x4f\xa3\x49\x52\xdc\xde\x65\xc1\x0a\xa4\x5b\xa4\xd2\x1e\x6a\xb5\xd5\x6b\xb9\x7b\x97\x55\x0b\x37\xd4\x38\x3c\xcf\xdf\x91\x3a\xf5\x53\x4b\x62\xd8\x1e\x75\xa7\xd2\xf7\x41\x6f\x4f\x1f\x94\xb3\x33\x7a\xd3\xf8\x69\xf7\xd6\x7d\x4e\x9f\x2f\xa6\x7d\x4d\x2e\x97\x73\xb2\x39\x72\xf9\xc7\xa1\x02\x03\x67\xf3\x5d\x65\x8d\x4e\x2b\x14\x9d\xba\xb6\xf4\x6d\x3a\xbd\x74\xb1\x63\xf0\x86\x84\x16\xdb\x38\x35\x87\xef\x65\xa3\x5a\xe7\x45\x34\x31\x16\x25\x0c\x88\x6f\xa4\x9b\x97\x8c\x5d\xf6\x20\xf9\x15\xd1\x48\x6c\x0b\xbd\xc7\x73\x19\xe6\x3b\x5f\x53\xfa\xc3\xa9\xf0\x0e\x05\x1d\x77\xe7\xa3\xeb\x6e\xb4\xe8\x3b\xfe\x48\x7a\x11\xbd\xe3\xc7\xc5\xd8\xe6\xe2\xa1\xf6\x47\xbf\x4a\xdf\xbb\xb3\x71\xb3\x79\xdc\x77\xfe\xaf\x4f\xd7\x5a\x5b\x3c\xaa\x7d\xf3\x43\xb4\x60\x95\xd5\x9c\xeb\x7d\x1b\xfd\x32\x95\x2d\xdb\xcf\x4a\x34\x0f\x4f\x99\x6e\x23\x70\x30\xb2\xf9\x64\xc2\x3b\x9b\x98\x5d\x0f\x5a\x2a\xa3\x8f\xdb\x88\x6f\x29\x6a\x5d\x1d\xba\x85\xb1\x74\x2d\x7a\x6e\x75\x0d\xc9\x07\xb6\xff\x9c\x87\x17\x1e\x8c\x81\x0c\xc0\xa5\x52\x16\x2f\x13\x2a\x75\x7e\x6b\x4c\xa7\xba\x9e\xb9\xd5\xcc\x15\x92\x6d\x71\xce\x3b\x42\x34\x43\x36\x37\x1f\x8a\x6a\x5c\x1a\xee\x38\xb6\xf1\xcb\x81\xce\xec\x08\xe3\x21\x8d\xce\x0d\x2e\x2b\x56\x18\x38\x37\x2b\x34\xd9\xa6\x64\x18\xf5\x7e\xb9\xa7\x59\x3d\xe1\xb8\xf1\xd1\x3b\xb2\x2d\x93\x63\x36\x99\x64\x5c\x3a\xd1\xda\x3f\xbc\xc4\x74\xe8\x49\xd5\xd6\xdb\x41\x85\x26\x29\x87\xb6\xb5\xed\xf0\xf1\x63\x6c\x4d\x14\x3d\xf7\x02\xb7\x0e\xcd\x58\xfb\xa8\x3f\x4a\xef\x71\xa5\x8a\x64\xf5\x16\x76\x6b\xfe\xa6\xd9\x43\x0a\x0b\xba\xa4\xf5\x85\xf4\xa7\x25\x54\x77\xd8\x38\xdd\x77\x1b\xe9\x7b\xa4\xed\x74\xd8\xfa\xa0\x0a\x87\x75\xad\x7f\x95\x05\x45\xf2\x1b\xbe\x6a\x15\x7d\xd8\x27\x6a\x85\xce\xe5\xd6\xb8\x96\x63\x61\x0a\xda\xd3\xdb\x16\xb7\x56\xfb\x17\x6b\x87\x7e\x78\xde\x66\xea\xfd\x54\x27\xed\x89\x4d\xdb\x61\xcf\x52\x1d\x56\x73\xaa\xdd\xce\x7d\x8c\xee\x99\xcb\xd3\xda\x8b\x5d\x17\x33\x46\x9d\x34\x18\xab\x45\x0e\x94\xce\x09\xf4\xdc\xdb\x49\x24\x0f\x84\x30\x26\x62\xc6\xd7\xb4\x2e\x83\xd5\x2e\x3c\x3f\xcb\x7a\x79\xaf\xae\x33\xfa\xf7\xd4\xa7\x85\x1e\xec\x4c\x76\xac\xb1\x5c\xe8\x51\xde\x51\x16\xb4\xc9\x39\xc4\xce\xb4\x83\x3f\x37\x79\xf1\x7b\xa3\xe3\xed\xb1\xc7\xc6\x7b\x49\x6b\x7b\xb4\x35\x7d\xd8\xeb\x7d\x57\xfd\x56\x47\xaf\x76\x2f\x97\xe9\x6a\x03\x3a\x8e\x75\xcc\xb3\x5d\xa4\xaa\xf3\xfd\x43\x47\xb1\xe5\x52\x35\xc1\x37\x56\x1d\x65\x96\xb7\x54\x6f\x3c\xba\xd2\x39\xc4\xf4\x31\x63\x17\xbf\xfd\x73\x1d\x1e\x7f\x21\x79\x38\x9e\x64\x49\x11\xc9\xec\xed\x8c\x2d\x88\x99\x92\x13\xab\xcb\x3c\x75\x2d\x17\xda\x7a\x07\x74\x55\xd8\xd6\x6a\xea\x38\xd7\x74\xbe\xf2\x33\x35\x31\xb1\xba\xd9\xb9\x2d\x6d\x8f\x79\xaa\x51\x68\xa7\xc0\xa6\x29\xb6\x71\xda\xc3\x3a\xbe\x5c\xac\xb4\x95\x51\xeb\xd5\xd1\xf0\x79\x95\xb5\x92\xb2\x54\xe7\xc1\x4e\x79\xa3\x73\x8a\x65\x5d\xb3\x3b\x8f\xea\xea\xc8\x67\x76\x5e\xed\xd2\x55\xcb\x96\xab\xfc\x7e\xb1\x2b\x50\xc5\x93\xb1\x8f\xa8\x9f\x6f\x14\xe8\x79\xa7\xb6\x91\x5c\xef\x4d\x72\xd9\x66\x92\x89\x95\x8c\xc9\xce\x17\x35\x0f\xc8\x65\xc7\x74\xaa\xe7\x95\xb9\x9a\xb0\x39\xd6\xda\xf2\xca\x76\x82\x5d\x8f\x3c\x1e\xa9\x96\x99\xd7\x74\x45\xc4\x17\xeb\x64\x1b\xb8\x75\x79\x16\x44\xe9\xf2\x69\x15\x75\xcd\xdc\x69\xa7\x1f\xa0\x5a\xd6\x35\xf4\xca\x28\xfd\x4d\x8a\xc7\xbb\xe6\xbf\x5d\xaf\x73\x42\x3e\xa4\xeb\x48\x97\xa9\xda\x8c\x45\x1b\x99\x48\xd7\x49\x85\xb5\x0b\xf9\x58\x21\x53\x91\x91\x67\x6c\x6a\xa1\x72\xc2\x80\xc5\x8c\x29\xee\x57\x74\x15\xb8\xcd\x98\xf1\x42\x8d\xd4\x09\x69\x8c\xd9\xef\x31\xb4\x9a\x75\x81\x31\xc7\x70\x3b\x5f\xc5\x43\x2c\xc6\x59\xc8\x4b\xc7\x48\xa2\xeb\x88\x6d\x4a\xda\x3e\xc7\x90\xce\x83\x96\x4e\x65\x9e\xbe\x5a\x9d\x92\x26\x43\x0f\xec\x0f\xca\xe9\x78\xab\xb7\xb9\x66\x61\x48\x41\x87\xba\xd6\xc5\x2f\x96\x91\x49\x9d\x52\xea\x0d\xad\x2e\x01\x0b\x5a\x4a\xd4\x15\xda\x26\x78\x4f\x7f\x29\xac\x99\xd0\x66\xe8\xad\xfc\x57\x99\x4e\x78\xdb\x12\xef\x57\x17\xf6\xea\xa6\xb4\x0f\xf6\xc8\x3b\xb6\x4f\xaf\xad\xdd\xd3\x5d\x82\xb1\x19\xe7\x15\x6d\x06\xa6\x30\xa6\x32\x58\xa1\x4e\x70\x36\x63\xe6\xb7\xd4\x54\x26\xd8\x33\xe6\x36\x48\x5b\x71\xc6\x64\xc6\x96\x38\x5b\x9c\x94\x6f\x61\x12\x8b\x87\x2c\x16\x34\x97\xea\xd2\x71\xda\x95\xd8\xcb\xfd\x68\xe7\x70\x9b\x57\x6b\x3b\x42\xce\x74\xf8\x9a\x1d\x3a\x30\x34\x6a\x79\xfb\x19\x03\x8f\xbb\x96\xf1\x12\xed\x93\xb4\x6f\x34\xb9\x25\x3d\xe1\xc5\x63\x1f\x9b\xb4\xde\xb5\x1c\x0f\x7d\x72\xcf\x49\x4f\xba\x55\x28\x54\xfd\xe2\x4a\xc3\xe5\xad\x9a\xa1\xd2\xc7\xfa\x18\x99\xb7\x69\xfa\xed\xd9\x7d\xc9\xa4\xaa\x6d\xb3\x4f\x14\x63\xb3\x96\x2f\xbc\x3e\xf0\x33\x63\x9a\xe6\xb2\xa1\x23\x3e\x33\x66\x77\x5b\xae\x68\xac\x35\x63\xbe\x43\xd4\xd7\xce\x10\x66\x2c\xf0\xaa\xa9\xb0\xc2\x77\xa6\xe4\xf3\xc9\x65\x9a\x79\xaf\xce\xfd\x8b\xa3\xa3\xa5\x7d\x7b\x75\xcc\x76\xb4\x2b\x8a\x8e\x3d\xdc\x6e\x6f\x29\x78\xf0\x46\x72\x47\xdb\x44\x23\xf9\x47\x4b\x32\x8e\xf3\xe2\xb1\xc6\x7c\xed\xe3\xcd\xc2\xf1\x72\x4f\xce\xea\x6f\x6e\xf6\x8d\x77\xbb\xf2\xc8\x78\x4e\x73\x67\xac\xe7\xd1\x74\xb3\xc9\x2d\x7b\xa3\x06\xef\xb6\x30\x7f\xd8\x9a\x18\x6a\x52\x59\x6f\x99\xd1\xb6\x20\x60\x2f\x63\x52\x6f\xe7\x87\x0e\x89\x66\x4c\xcf\x75\x41\xec\x88\x66\xc6\x5c\xf7\xcb\x4e\x1d\x6b\xc9\x58\xb0\x88\x8a\xf0\xb4\x22\xc6\xa2\x17\xea\x87\xc9\x8d\x61\xda\x11\x8e\x76\xa7\xcd\xb5\x3b\x67\xfa\xec\x0a\xbe\x19\xf4\xa6\x3d\xce\xe5\xed\xaa\x6f\xc9\x4f\x5b\x1f\xd8\x14\x1c\x5c\x9d\xed\xd5\x92\x6d\x3c\xb1\xce\xbd\x60\x23\x2f\x1e\x7b\xd5\x65\xa8\xda\xf0\x21\x53\xfa\xfa\x60\xb3\xc9\x8d\xf7\xd2\xe3\x8e\xdd\xb2\x5c\xdf\xb4\x2d\x4d\x7e\xe7\x26\x9b\x61\xcd\x2f\x12\xc6\x6c\xd8\x60\xf7\xb8\x25\x2c\x56\xa2\x64\x8b\xfd\xf4\xd6\x55\xa1\x8c\xb1\xf9\x55\xf3\x8b\xf9\xd4\x18\x33\x73\x96\x96\x18\x71\x84\x31\xcf\xbf\xa4\x65\x46\x5d\x65\x2c\xfa\xa0\xdc\x2b\xb1\xe3\x8c\xa5\x5d\xd6\x72\x92\x4d\x67\xd1\x4b\xf9\xcc\xc7\x9b\x98\x77\xac\x0e\xd9\xea\x97\x10\x39\xb2\xf5\xdb\x92\xca\xbc\x45\xd9\x7b\x9b\x1b\xed\xd9\xa1\x49\xc5\xd3\x1b\x6f\x1b\x67\xd5\xdf\x59\x1f\xf1\xfd\xba\xd1\xd8\x6f\x3a\x45\xaf\x6b\x5e\x5b\x4a\x7d\x3f\xb7\x3a\xf1\x84\xa4\xcd\xe7\x06\xcb\x9c\xe7\xdb\x67\x3b\x2e\x69\x5c\x99\x35\xa9\x42\xce\x69\x7d\xb3\x78\xea\x8c\x35\x5d\x2e\x82\x2d\x7c\x09\x46\x39\xd1\xae\x53\x5b\xc7\x44\xbe\x66\x6c\x61\xb2\xe4\xae\x21\xc9\x8c\xd9\x48\x48\x9d\x17\x38\xc5\x58\xd0\x64\x29\xf9\xd1\xed\x8c\x2d\x1b\x2f\x7d\x73\xa2\x11\x63\xb9\xae\x4a\x1f\xa4\x46\xb0\xb4\xbc\xe3\x46\x0a\xc6\x47\x3b\xb6\xa7\x89\xb9\x1f\x8a\xb8\xdc\xe2\x17\x38\x6f\x99\xcb\x1a\xdf\xc6\x75\x2e\x83\x0e\xae\xa9\x1a\xf1\xe3\xa6\x99\xe1\xc7\xd6\x6d\x1e\x0f\xc3\xac\x9e\xd4\x9f\xdd\x58\x72\xb4\xce\xe9\xf0\xd7\xfd\x65\x17\xb7\xa8\xb8\x6d\xf8\xc1\x57\xb8\x6f\xdd\xcc\xc5\x7e\x0d\x97\x73\xf2\xf2\x0e\x2e\xd9\xd7\xa4\xbe\x7c\xdf\xf2\x3d\x5e\xf5\xcd\x92\xa9\x1f\x52\xfa\x78\x47\xb7\x98\xc6\xbb\x30\xa6\xf8\x65\xde\xb8\x21\xa1\x8c\x39\xec\x17\xbf\x30\xb4\x90\xb1\x28\xfd\x39\x5a\x23\x0d\x19\xcb\x99\x3d\x6f\xe5\xf8\xd5\x8c\x95\x3f\x5e\x98\x31\xbb\x3f\x7b\xb0\x69\xa6\xa6\xa8\xce\xb5\x8e\x57\xc5\xa2\x76\x13\xc2\x02\x9b\xbc\x62\x65\xa3\x62\x37\x0c\xf8\xa6\xbe\x44\xf9\x60\xda\x81\xe7\x5f\xed\xac\x05\xdf\x8e\x3e\xf8\xf5\xd8\xba\xc5\x07\x3e\xfa\xef\x1e\x5a\xf5\xd8\xfb\x4a\x7d\xf5\xa6\xf4\x55\xc3\x02\x14\xbe\x19\x95\x19\x66\xd9\x04\xe8\xfc\x78\xb4\xca\x2d\x69\x43\xf0\xb0\x46\xf5\x95\xd3\xa3\x9f\x07\x55\x34\x8f\x4f\xab\x0c\x0f\x0e\x16\x6a\x7e\x93\x24\xc8\x98\x96\xe9\xdc\x34\xbe\x92\x5f\x71\x48\x8a\xf2\xb4\xa2\xe1\xdf\x19\x5b\xdb\x38\x75\xac\xc0\x5b\xc6\xf6\x0c\x99\x1b\x30\xb9\x96\xb1\xc3\xed\x4a\x87\xd4\xb5\x3b\xbd\x0e\x05\x19\xa9\xf8\x3f\x6d\xdc\x54\x24\xe8\xbb\xae\x6a\xcd\x3b\xdb\x90\xe4\x7d\xe7\xaf\x3b\x1c\x93\x0e\xf4\xaf\xf3\x3e\xaf\x59\x7a\x30\xbc\xfe\x9d\xf9\xa1\x43\xcb\x85\x62\xc6\x7c\xd6\xdf\x9e\x93\x78\x30\xa6\xe4\xeb\xd0\x8d\x13\x62\xa3\xa2\x4a\x7e\x8c\x5e\xf3\x2c\x6a\x6a\x44\x60\xa3\x45\xf6\xd7\x30\xed\x08\xb3\xe6\xc1\x4b\x85\x82\x17\x46\xec\x6a\x99\x91\x90\xc3\x98\xee\xa1\x99\xb5\x43\x54\x19\xf3\xad\x15\x3b\x30\x64\x15\x63\x2b\xdf\x50\x1c\xb2\xe3\x75\x6f\x8c\x07\xce\xc4\x4e\x09\x1d\x19\xc7\xd8\x5f\xeb\x65\xce\xca\x6c\xef\x92\x79\x78\x5e\x63\xb8\xdb\xb9\xc6\x6f\xb7\x16\x59\x09\x6f\x50\x3e\x54\x5a\xc6\x0a\xd7\x3f\x54\xcf\xd8\x5e\x7c\xee\x49\xea\x75\x9f\xa4\x25\x2b\x2f\xbd\x0b\x3e\x74\x34\xda\x2f\x3b\xf2\xf3\x9b\xad\x07\xc2\xbb\x32\xce\x7c\x53\x28\x7b\x1c\xa2\x92\x7e\xe2\xc7\xeb\x55\x0e\x41\xd3\x53\x35\x1a\xbb\x32\xf3\x7d\xdf\x2e\x0d\x6d\x76\x4f\x05\xef\xc8\x94\xbb\x2d\xd7\x63\xfc\x18\x33\xe7\x9f\xb2\x67\x90\x0c\x63\xa1\x5f\xc9\xbe\x97\x70\xf1\xcf\x11\xce\xef\x3e\xd2\x80\x23\x18\x0f\x19\xcd\x78\x24\xac\xca\x26\x75\x5c\x52\x12\xb7\xb2\xbf\x5b\xfc\xe3\xaa\xd9\xde\xd5\xfd\xb2\x5f\xbe\x1e\x94\xbc\xe5\xec\x02\xaf\xbf\x1e\xdd\xad\xfb\x7a\xd6\xc7\xcf\x64\xff\x94\x8f\xb3\xf7\x2c\xf4\xd5\xaf\x0a\xfc\x2a\xb5\xfe\xb2\xcf\x9a\xd2\x35\xdf\xbf\xac\x79\xee\x35\xa4\x78\x6e\xe3\xa4\x95\xe6\x9e\x33\x56\xe9\x36\xe5\xa6\xcb\x2c\xbe\x9b\xa7\xde\x22\x92\xe0\xb1\xb8\x7a\x85\x78\x2b\x44\xbd\x60\xcc\xde\x42\x64\x57\xff\x58\xc6\x52\xb8\x78\x70\xb3\x15\xc9\x6b\xdc\xcf\x3f\x24\x79\xfe\x67\xc6\xf0\xd1\xfb\x1e\xcf\xe9\x5c\xa2\x3c\xc1\x54\x7a\x4f\x42\xf3\x2d\xeb\xda\x94\xf3\x09\xf7\xbf\x96\xc5\x5d\xac\xe2\xb7\xf7\xff\xf8\xfa\x83\xed\xee\xdb\xf6\xf0\x48\xe8\xcb\xa8\x0d\xcc\xb1\xdf\xb9\x97\xdf\x23\xd7\xb4\x3b\x8f\xd8\xaf\xd7\xe0\x91\x9b\xe5\xb8\x7f\x87\x4b\x53\xf9\xd2\x3a\x27\xab\x8d\x2b\x9a\x6f\x26\xe6\x3a\xf9\xac\xfb\xde\x52\x19\x53\x6c\xdf\xb0\xd6\xb4\xf5\x5d\xf0\x57\xc6\x96\x5c\xeb\x35\xbf\xfb\x39\x39\x39\xdc\x3c\xd8\x91\x7c\x21\xf1\xcf\x38\xa8\xb6\x98\xb1\xe9\x4d\xc2\xda\x47\xf7\x75\x4d\x51\x75\xd0\x3d\xb6\x26\xbe\xad\xc2\x2e\x32\xa8\x3a\x5c\xa5\xe9\x4d\xe4\xe5\xcc\xa1\x0e\x37\x1b\x3a\x8f\x0f\xca\xbb\x6e\x7c\xba\xe1\xc9\x8f\xbf\x73\x86\x9b\x88\xbe\x12\x6a\xac\x59\xb6\xcb\xcc\xf7\x96\x63\x73\x9f\xe4\x34\x0b\xa5\xb3\x6b\x9b\x5f\xc5\x2b\x99\x9f\x39\x12\xd3\xaa\x16\xf6\xd9\xbc\xb6\xda\xaa\x4d\x34\x70\xb8\x85\xd6\xf6\x79\x6d\x55\xbe\x81\x8c\x45\x72\xeb\x40\x15\x5e\xc6\x6e\x4f\xfa\xa7\xff\xad\xbd\x4b\xf2\xf4\x61\xc6\x66\x3c\x11\xde\xbc\xc1\xa0\xeb\x99\x9a\xb3\x4a\xbf\xa5\xef\x3b\x96\xdb\x9d\x76\xe9\xef\x67\xd1\x76\x26\xd4\x2b\x68\xb5\xfd\xf6\xd6\xb4\x8d\xd6\xd1\x7d\x0d\xa5\x5b\x56\xbd\xc8\x8b\x2d\xd3\xc9\x6c\xad\x68\x79\x11\xaa\xa4\x23\xf1\xf5\x61\x6b\x71\xc0\x7d\x5d\x93\xa7\x25\x6d\xfa\x3e\x6f\xf4\xfb\xdd\x32\x6c\xcb\xf5\xde\xae\xfb\xea\xd2\xf4\xf6\x72\x57\x35\xfd\x2d\x27\x15\xdb\xab\x5d\x25\x19\xa3\x5a\x37\x63\x74\x0b\x94\xb1\x66\xbc\xad\xf0\xca\x83\x9e\x7f\x66\x14\x63\xdd\x71\xfb\x46\x3d\xc6\xf8\x6f\x00\xe4\x9c\x61\xee\x6a\xa9\x0b\x67\x45\xac\xea\xea\x6d\x3b\xd4\x68\x97\x87\x6f\xc7\xe3\x80\x00\x87\xbf\xec\xa4\x3b\xe4\x56\x7e\x77\xd7\x33\x4a\x6c\xcf\x38\x66\xe7\xb9\x47\x6b\x63\xbb\xdc\x27\x35\xcf\x4c\x75\x8f\x8e\xb9\xed\xc5\x4e\xa9\x2a\x75\x9d\xd3\x3b\x36\x58\xbc\x52\xbd\xf7\xf1\x71\x47\xb6\x95\x92\xda\x86\xda\x79\x1d\xfb\x2c\x1d\xd4\x6a\x6f\x6f\xe8\x1c\x62\xa6\xce\xd8\xe6\xe7\x5c\x5c\x8c\x7a\x5a\x5f\x4b\xcf\xbf\xc4\x75\x5c\xdc\x2c\x4f\x72\x55\x1f\xc6\xc4\x0b\x47\x6d\x4c\x9c\xc8\x2e\xa9\xfe\x98\x9b\xeb\xbb\xbf\xeb\xa4\x75\xa5\x7a\xb8\xb3\x50\x97\xa4\xd7\x1d\x83\xfe\x56\x0e\x9d\xf5\xc9\x0e\x26\xc3\x0d\x87\x74\xee\xaa\xb0\x31\x8b\xd0\xbc\xd7\x69\x7a\xfe\xa1\x65\x6f\x55\xeb\xce\xb1\xdf\x72\x2d\xd7\x29\xd9\x74\xb6\x74\x26\xeb\x5f\x50\x70\xee\x4a\xea\x12\xd2\x14\x5b\xf4\xa6\xc3\xa8\x6b\xb3\xe2\x21\x39\xa5\x8f\x27\xbb\x96\x2a\xcf\x60\xec\xea\xcc\x7f\xc6\x61\x35\x36\x24\x77\xb4\x91\xcc\x3d\x4d\x32\xf5\x0d\x63\xd3\x53\x46\xb4\x86\x68\xb2\x2e\xd5\xa4\x19\x1e\x6e\xd3\x98\xaf\xb9\xf6\x02\x1b\x9b\x93\x6c\xac\x9b\x98\x42\xb3\x29\x30\x88\xb4\x53\x5e\xa5\x3f\xa2\x6b\x47\xee\x0b\x8d\x16\xcd\xc7\x5d\xc1\x5b\x7b\x69\x57\xa8\xac\xe8\x32\xb9\x78\x4f\x47\x5c\x61\x59\x57\xf8\x3b\x6b\x4d\x13\xb9\xcb\x5d\xcf\xbb\x62\x55\x04\x64\x7b\x31\x7f\x26\xb8\xb0\x4e\xba\x81\x31\x76\x62\x8e\x2e\x63\x2d\x88\x0c\x7a\xa0\x47\xcf\xdb\x3f\x8d\x64\xe1\x53\x92\xf1\xab\x48\x86\xd8\x33\x36\x25\x89\xef\x87\xa7\x15\x63\x8a\x31\x13\xff\xb6\xd3\x64\x35\x46\x3f\x66\xbb\x9b\xf5\x67\x1b\x1d\xb7\x4a\x6a\x19\x5b\x30\xe7\xc0\x8d\xb2\x7a\xba\x1a\xcc\x30\xe5\xef\x45\x1d\xea\xf7\xd9\xa2\x35\x62\xf2\x63\x94\xa3\xd9\xd4\xed\xf5\xf2\xcf\xe4\xb7\xb1\xb1\xe7\xae\xc8\xbf\x5d\x14\xc9\x84\x9e\x26\xc8\xb7\x2f\x08\x60\x79\x4d\x55\xf3\x4f\xca\x88\xb3\x67\x2c\x57\x42\x0b\xef\x09\xe2\x7d\xa0\x9e\x71\x88\xe9\x46\x2d\x85\x89\xdf\x19\x73\xd0\x30\xc9\x9d\xf7\x94\x7d\x74\xec\xe5\x1c\xaa\x0e\x4c\xd7\x2e\x26\x72\xa5\xb9\x7b\x57\xb0\x85\x73\x61\xbd\xeb\x95\xce\xbd\x46\xb2\x07\xb6\xfb\x5c\xed\x1c\xaa\x27\x5c\x73\x27\xa8\xb3\xa3\x46\x53\xac\xa1\x28\x44\xa2\xf3\x9a\x5a\x69\x9b\xb2\xe7\x8d\xaf\x6d\xea\x9b\xdb\x8c\xbd\x66\x3e\x11\xd1\x9a\xd8\xb6\xc2\xb3\xf6\x7a\xa9\x8e\x7d\x5b\xdd\x12\xc7\xb3\xa3\x75\xce\xb5\x17\xbb\xbc\x3b\xb4\x45\xef\x55\xfb\x05\x97\x49\x8c\xf5\xce\x5e\x84\xf7\x15\x25\x74\x17\x79\x0d\x99\xcf\x98\x86\x9f\xdc\x79\xc1\xd1\x8c\xd9\xf4\xd2\x90\x9e\xb4\x97\x31\x37\x05\x83\xf9\x73\x5a\x58\xbd\xdb\x46\x7b\x3d\xf5\x29\x5d\x6f\x9d\x75\x42\xdf\xd8\x1e\xef\xac\xb7\x39\x94\xef\xeb\x75\xe4\x67\x5e\x4a\x56\xdf\xf0\x6e\x62\x74\xef\x8e\x99\x9a\x1d\xcd\x2f\xa2\x46\xb7\xed\xd4\xc8\x6c\x15\x09\x12\x7f\x35\x4f\x7b\x52\xab\x75\x90\xc9\xed\x52\x5d\x9f\xd6\x67\xfe\xcf\xce\xfd\x65\x20\xd6\x26\xe5\x57\x70\xe8\x94\xd1\xc2\xb6\xad\xde\x35\xbb\x72\x8c\xc7\xb7\xeb\x7a\xcc\x63\x6c\xc2\x16\x45\x87\x3e\xa7\x18\x9b\x2f\x25\x33\x97\x6f\x36\x63\x06\x31\x8b\x16\x09\xa9\x30\xe6\x5c\xa4\x18\x39\xc1\x96\x31\x6f\x7e\xbd\x01\x73\x3f\xb3\x56\xbf\xde\x56\xf7\xd5\xbd\x7f\xe6\xa7\xb4\x1c\x07\xaf\x6c\x0c\x4a\xed\xe0\x33\x77\x3e\x18\x14\xdb\xd6\xf6\xb7\xa1\xc4\x43\xbb\xb4\xd4\x76\x21\xed\xba\x26\xd3\x64\x85\x6f\xfb\xb4\x43\x9a\x2f\x44\xaf\xbe\x2f\xa0\xbf\xa4\xc5\x3c\x4a\xf6\xd2\x54\x23\xb9\x96\x27\xe1\xed\x87\x5e\x9a\x64\xb4\x9e\x0e\xaa\xdd\x25\x64\xa6\xd6\xa6\xe9\xbf\xb1\x4a\xc9\xfc\x50\xdb\x35\x9f\x41\x8c\x0d\xfb\x3c\x7f\x7c\xf7\x7c\xc8\x0a\xcf\x37\xe5\xab\x61\xcc\x6c\x8c\xcc\x09\x41\x3b\xc6\x3c\x55\x64\xfb\x8e\xbb\xc7\x58\xa8\x8a\xc6\xb9\x39\xda\x8c\x45\x94\x9b\x7e\x50\x1f\xd4\xe5\xe2\xa7\xb8\x24\xcc\x75\x56\x47\xaa\x2b\xdf\x8a\x84\xa8\xd4\xb6\x83\x56\x17\x0f\xea\xa5\x8b\xb4\x9e\x30\x3c\xf4\x6c\xdf\x0a\xe1\x36\x25\xdd\x85\x8d\x22\xe9\x4b\x6b\xd3\x0d\x63\x1b\x1f\x2f\x6d\xbc\x32\xc5\x74\x53\xd3\xd6\x54\xad\x63\xa6\xe6\x1e\xcd\x8d\x71\x07\x77\xfa\x59\x7e\x6e\x79\x1d\xb9\x61\xe3\x00\xeb\xaa\xd6\xea\x90\x03\xc5\x01\xb6\x85\x6d\x86\x01\xbb\x19\x13\xdb\x27\xd3\xb7\x5f\x1e\x63\x8b\x9e\x48\x3e\xe1\xeb\xcd\x98\xb5\x89\xb4\x8d\xc0\x0f\xc6\x02\x8d\x65\x04\xc7\x79\x30\x96\x78\x44\xfe\xee\xf4\x01\x8c\xa5\x24\x1b\xf0\xab\xbc\xec\x72\x8d\x34\x75\x95\x74\xfd\xd8\xbe\x77\xc9\x5f\x4b\xcf\x27\xf5\x6f\x0d\xb4\xdd\x71\xe0\x6a\xae\x44\xf3\x5a\xc3\xf6\x4f\xdb\x8a\xa2\xbe\x1c\x30\x14\xfd\xde\x91\x2f\x7d\x23\xc8\x7c\x4b\x43\xc2\xca\x3e\x47\x87\xda\x84\x35\x9a\x67\x39\x6c\x6b\xb1\x97\x6a\xba\x9e\x56\x50\xe1\xe6\x28\xde\x7c\x3b\x51\xbd\x68\xba\xe3\xac\xd6\xf9\x11\x17\x73\x0e\x38\x1d\x6f\xfd\x10\x32\x8c\x31\xb1\x1a\x69\xff\x7e\x11\x8c\xa9\x6e\x92\x88\xe4\x3b\xcf\x98\xeb\x21\x49\x79\xc1\x8b\x8c\x85\x5f\x9c\xb7\x7c\xd4\xdf\x8c\x65\xd8\x2f\x2c\x9d\xf2\x85\xb1\x9c\xf3\xda\xfc\xca\xb5\x5d\x31\xe9\x76\xb6\x3b\x5d\x07\xb7\x05\x06\xd8\xc5\xbf\xcf\x1c\xd4\x1c\xe5\x38\xed\xa0\xd2\xda\xe7\xbc\x78\xec\x41\xb6\xa5\xfd\xd7\xd0\x75\x4f\x8e\x4a\x38\x98\x7e\xdf\xbb\x66\xce\xb6\xa7\xce\xb3\x1b\x0a\x72\x1e\x95\x2a\xb8\xa5\x34\x0d\xce\xf0\x5d\xbd\xd9\x4d\xa6\x39\x3b\x79\x49\xc6\x83\xc5\xe1\x2d\x37\x62\xf8\xd2\xc0\xa3\xae\x55\x37\xe2\x3b\x63\x33\x1e\xcf\x2b\xe9\xff\x98\x31\xdd\xd6\x39\x3b\xf8\xae\x32\xb6\x64\xeb\xcc\x01\xc3\x3c\x18\x4b\xde\x3c\xf3\x8d\x50\x1d\x63\xab\xd7\xce\xeb\x14\xc9\x65\xac\x7c\x8c\xd2\x65\xd9\x05\x5d\x05\x25\x6a\x66\x43\x9c\x2b\x5a\x15\xa3\x5a\x42\x73\xf3\x27\x34\xec\x73\xeb\x75\xa0\xcf\x56\xb1\x8f\xa2\x96\x1e\x1f\x3e\xef\xbc\x7b\xaa\x8f\x4b\xe6\xe7\x1f\x9b\x77\x6f\x6e\xf5\x78\xf1\xf5\x6d\x39\x14\x8d\xf3\x96\xfd\xa1\x53\xe8\xbf\xb2\xc8\x27\xa0\x71\xec\xca\xf2\xa5\x33\x7d\xd7\x35\x9d\x5b\xe6\x19\x6f\xef\xb7\xa3\xb9\x23\x31\x35\x7a\xa9\x6f\x5e\xeb\xa4\xa8\x85\x8c\x49\x18\xce\x5b\x3a\xc8\x8b\x31\xe3\xc1\xe2\xef\x86\x64\x33\x16\x30\x71\xca\x43\xbe\xfd\x8c\xad\x98\x2a\xb6\x7c\x98\x2b\x63\x55\x09\xd3\x72\x47\x9e\x64\x6c\xef\xb9\x05\xd3\xe7\xe9\x77\x75\xed\xde\xa1\x3b\xd5\xe6\x78\x4b\x67\xbe\x9f\xe7\x99\x82\xa7\x5f\x03\xbc\x4a\xf7\x59\x1e\x2e\x3d\xdb\xe8\xb9\xf8\xcd\x8c\x63\x13\xd7\x7f\x0e\x74\xfe\xb8\x77\xb7\x75\x4e\x75\x68\xda\x97\x39\x55\x7b\x97\x0d\x0d\x9d\xff\x3d\xbb\xf8\x75\xbc\x43\xd8\xa8\x86\xb5\x79\xfa\x91\xb5\x61\xea\x8d\xed\x99\xfb\xc2\xb6\x04\xaf\x68\x7e\x91\x34\x33\xf8\x7a\xf0\x90\x96\x8e\x68\x49\xc6\xe6\x9b\xcf\x7a\x3c\x70\x15\x63\x76\x0b\xa6\x96\x0e\xae\x60\x2c\x6a\x3b\xc5\x1b\x25\x05\x5c\x3e\xe4\x66\x2f\xe4\x63\xbf\x2a\x3c\x8b\x7f\xe2\x7b\xb6\xf9\xaf\x44\xa5\x18\x83\xa8\xef\x33\x4f\x35\x5b\xbd\xcc\x1d\xb6\xab\xa1\xf0\x47\xae\xfd\x19\xb5\x8c\x90\x15\x4f\x5e\x08\x9f\x1f\x96\xe4\xb4\x7c\xef\x87\x83\x7b\x83\x63\xba\x96\x06\x7f\x89\xaa\x6c\x0a\xdf\x90\xf6\xf2\xfb\xed\xa2\x57\xa1\x0d\x49\x02\x0d\xdf\x73\x8e\x06\xde\x4d\x2c\x69\xfa\xbc\x74\x57\x80\x6d\x5c\x47\xcb\xa0\x44\x6d\xdf\x77\xb1\x8a\xad\x0b\x22\x0f\x33\xa6\x78\x66\x9a\xec\x80\x58\xc6\xdc\x3d\xfa\x4f\xe8\x7e\xde\xf2\xdb\xf4\xfc\x1d\xfe\xbf\xe7\x85\xbe\xde\xe2\xf7\x07\xe8\xf0\x66\xb2\x32\x8f\x65\xe7\x5f\x6f\x6a\x9c\x62\xb8\x25\x46\x61\x59\xe8\x73\x81\x84\xd8\x5d\x85\x8b\x55\xee\x6e\x78\xa7\x7c\x70\xa8\xe7\x8a\x83\x06\xf5\x32\x9b\x73\x3d\x47\x6c\x89\xf8\x3e\xbd\x64\xb9\x67\x61\xd9\xfc\x06\xb5\xfc\x69\x4b\xf2\x0a\xa7\x35\x45\xa7\x6f\x58\x5c\x59\x70\xa4\xf9\x42\x92\x8f\xfb\x95\xec\xec\x56\xe1\xa8\x09\x6e\x03\xb2\x3e\xb5\x7e\x0d\xd1\x61\x4c\x2f\x72\x02\xeb\x7b\x8d\x31\xba\x0d\xcd\x58\x59\x3a\xc9\xf3\xd5\x24\x3f\x20\xd6\xf5\x47\x19\x63\x83\xc3\x01\xfe\xea\x60\x46\x0b\x60\xc1\x90\xad\x7d\xdb\x2f\x99\x38\x79\x1c\x8b\x88\x6a\x6c\x8f\x0e\x5f\xf9\xd4\x7e\xea\x8f\x69\x57\x5b\x8a\xc5\xcc\xa3\x5f\xef\xfa\x31\xb4\x20\x86\x97\x7f\xb1\x15\x3b\xb6\xa0\x29\x7a\xe9\x13\x9b\xa0\xbd\x6a\x2d\x73\xe3\x62\x6c\x17\x6c\xad\x6c\x1d\x12\x69\x6b\x2b\xb0\xe1\x69\x6b\x63\xb0\xb4\xad\x5d\xa9\x58\xdb\x66\xbf\x19\x8c\xd9\x7e\xa7\xe7\x2d\xd7\x21\x79\x50\x8d\x64\x1d\x22\x1a\x1b\xe7\x90\x7f\xb9\xd9\xcc\x18\x1c\x06\xd8\x37\x94\x5d\x9e\xff\x68\xf6\x99\xdc\x3d\x9d\xa1\xa6\xa7\x2d\xb5\xfd\x56\xb6\x15\x86\x4d\x0d\xfe\x6c\xbf\xac\xd5\xac\x6a\x6e\x8c\x96\xfe\xc6\x96\xbe\x3f\x9c\x13\x44\x74\x4f\x35\xe8\xb4\x84\x46\xb8\xe8\x5f\x7d\x32\xbe\x55\x25\x64\x93\xa1\xc4\x0d\xcb\xd6\xcf\x01\x97\x0c\x2b\x4e\x7f\x6b\x7b\xe0\xe5\x67\xa4\x79\xf8\x48\xbb\xc9\xe2\x06\x63\xbe\x6a\xc5\xf6\x3d\x6e\x82\x8c\x05\x16\xd1\x73\xd7\x3f\x23\x49\xcc\xaa\x1d\xc2\x5c\x1e\xa4\x90\xe4\x9e\x20\x92\x6b\x95\xd8\x8f\x05\x97\xc5\x27\x27\x04\x75\xc5\x99\x7e\xd1\x3e\xb2\xf8\x6a\x47\x4b\x40\x88\x7d\x91\xcd\xe2\x0e\x8f\xbc\xd3\xae\xcb\x0c\x54\xdb\xcf\x9d\xd9\xea\xa1\xa9\x71\xbb\x3d\xbb\xed\xf3\x62\x71\xb5\x9c\x8e\x65\xed\x4d\xf6\xaa\x6a\x25\x9f\xef\x76\x28\xd8\xaa\xaa\x7b\x3c\xdd\xda\x11\x6f\x9d\xad\x21\xfd\xd7\xad\x8e\xa3\x96\x67\x35\xe2\xae\x4c\xe8\xec\x6f\x3e\x98\xb1\x15\x3b\xb9\x75\xf8\x40\xb2\x0b\x6f\x80\x3c\xe0\xfc\xfd\xc1\xd9\x24\xcb\xb2\x18\x13\x7e\x33\xb0\x26\x5d\x93\xb1\x05\xed\x62\x4a\x81\x33\x99\x8a\x89\x94\x9c\x8b\x63\x61\x57\x88\xa7\x92\x8e\x9c\xa5\x68\x97\x60\xf2\x7b\xa3\x49\x06\x83\x3b\x37\x56\x66\x98\xfd\xa5\x21\xdd\x19\x74\xb5\xc3\x5c\x41\x39\xb8\x73\x43\x6b\xbd\xf1\x46\x85\x96\x2e\xdb\xce\x0f\xda\xe3\xe5\xea\xbb\xee\x77\x85\xa8\x64\xca\x2b\x7f\x19\xd6\x65\xa4\x36\x4a\xce\xf2\xc5\x8b\xae\x95\x4a\xc7\x18\xab\x3e\x4b\xcf\xff\x8c\x7a\x59\xcb\x8d\xff\x58\x20\xc9\x75\x26\x24\x93\xaa\x49\x46\x14\x30\x36\xbf\x4c\xf8\xb2\x87\x25\x3b\x6a\x60\x3a\xcf\xd4\x7a\x32\xd3\x74\x09\x5d\x94\x63\xa2\xcb\xf8\x22\x5f\x29\x5d\xd2\x8d\xea\xfa\xba\x52\x5b\x25\x57\xdd\xad\xeb\xe0\xf6\x7e\xea\x0e\xca\xde\x5d\x41\x57\xfc\xb5\x16\xc8\xab\x74\x1d\x78\x77\x4b\xf5\xc2\xa2\xe9\x6c\x41\xd7\x03\xf9\x59\x32\x87\xd8\x35\x16\x23\xb9\x5f\x4a\x8d\x31\xd6\x28\xae\xcf\xd8\x23\xbc\x01\xfa\xfe\x33\x17\x87\xc6\x91\xdc\x50\x46\x72\x39\x3f\x87\x37\xe8\x43\xd2\x4b\x97\xb1\xb9\x25\x82\x23\xec\x73\x18\xd3\x56\x9e\xf2\xd4\x74\x05\x3b\x6a\x37\x76\xee\x0e\xfd\xd7\x6c\x9b\x5f\x2f\xc9\x7c\xad\x7b\xac\x20\xa1\x6a\xbe\xa8\x9a\x04\xf3\x5e\x6d\xbb\x30\x58\xd1\x88\x39\x6c\xff\xb6\xf0\xa4\x9c\x20\x33\x3c\x7b\x51\x56\x63\x41\x27\xf3\x7f\xf4\x4d\xe6\xb1\x4c\x35\xdb\xd5\xec\x24\x75\x53\xba\x3b\x12\x7e\x3a\xab\x0f\x4f\x0f\x7f\xc6\x81\xf5\x24\x57\x4a\x90\x0c\xdf\x47\xd2\x31\x9c\xa4\x9d\x39\x63\x33\x15\x86\x86\x9b\x0d\x64\x4c\xa5\x43\x38\x5e\x3f\x0c\x4f\x40\x47\xb4\xea\x18\x73\x9d\x31\x2d\x4a\x53\x80\xbd\x0a\xd1\x9e\xf5\xff\xf1\xf5\x25\x60\x35\x76\xdd\xdf\xcb\x90\x06\x95\x34\x48\x73\x11\x0d\x2a\x0d\x9a\xe7\x79\x9e\x93\x4a\x33\x89\x94\x44\xa1\x24\x45\x99\x32\x24\x85\x42\x42\x23\x4a\x99\x49\x85\x90\x4c\x99\x87\x48\x42\xc6\x24\x53\x34\x9c\xb3\xbe\xeb\xec\x7d\x9f\x07\xcf\xf3\xfe\xbf\xf7\xba\x9e\xeb\xe7\xf4\xd6\x59\xeb\xde\x7b\xdf\x7b\xfd\xf6\x5a\x6b\xaf\xf5\xd3\x62\x32\xf6\xad\x5e\xaf\xae\x67\xba\x12\x5f\xe4\xe9\x68\xa4\x1a\x7d\xc7\xe6\xf2\x55\x5a\x35\x06\xaa\x78\xae\x5e\x7f\xaa\xbf\xee\x37\xec\x6c\x7d\xa5\xe1\xaa\x2b\x8b\x7d\x5d\x1b\xa6\x54\x72\xbe\xdd\x46\x9b\x33\x2f\x02\xab\x4d\x49\x7f\x21\xad\x83\x66\x8a\x02\x9f\x11\xed\xed\xed\x4c\xa4\x8a\x10\xbd\x34\xdd\xce\x4c\xb2\x42\x9c\xf1\x20\x30\xc5\x70\x3c\x3e\xf6\xdf\x91\xf0\xc6\xd1\x13\x6d\xbc\xbe\x6e\xb5\xf5\x6b\x65\xe7\xbb\xd4\x1c\xb7\x0c\x53\x67\x3b\xd8\xbd\x7e\x34\x22\x32\x9a\xad\x64\xfd\xf1\xe7\xb7\x59\x1d\x6c\xb6\xa5\xef\xd0\xa8\x80\xd7\x1f\x17\x5a\xcd\x18\x52\x08\xf8\xf1\xb8\xd0\xe6\xfc\x90\x6c\x50\xe0\x8d\x99\x76\xbc\x43\x91\x01\xeb\x2e\xee\xb1\x93\x1d\x7a\xeb\x7b\xe9\xb4\x97\xc3\x70\xd6\x48\x5f\xab\xdf\x7a\xfc\xc3\x43\x0c\x8d\x05\x05\x7b\x11\x9d\x35\x2d\x62\xc7\xdd\x47\xf4\x57\x76\x28\x98\xa0\x86\x18\xb4\x6e\xc6\x48\x83\x57\x58\x15\xf4\x29\x36\xd9\x25\x9d\x3d\xe0\x9b\xbf\xa5\x2a\x30\x8f\x3d\xd2\xed\xf6\x49\xf1\x39\xad\xac\x93\x0e\xc6\x6d\x4b\xe6\x59\xb0\xee\xd9\xac\x1b\x70\x8d\x8e\x1f\x14\xb6\x76\x1a\x9c\x10\xfe\xae\xf3\x96\x9d\xc8\xa0\xc8\x2c\x8d\xd6\x17\x0e\xa5\x83\x0e\x91\x27\x9b\xe2\x1d\xd7\x0d\xbe\x0e\x15\x39\x63\xe4\x84\x43\x7a\x33\x9f\xd6\xec\x77\xde\x3b\x54\x32\x83\xb3\x2b\xa4\x9b\x92\xbe\x4b\x8a\xd2\x46\x17\x47\xa6\xfd\xf6\x87\x78\x68\x1b\x76\x88\xdd\x44\x0c\xcb\xb1\xe9\x9a\x90\x86\x38\x6b\x9a\xcf\x7a\x83\x1a\xdc\x14\xb6\x23\xca\xda\xcd\x9b\x9d\x19\xe0\x91\x2d\x15\x5e\xc9\xda\xea\xd1\x7e\x42\x31\x76\x06\x4b\xd3\x71\xf4\xf3\x27\xf1\xc2\x2c\x63\xdb\xae\xfe\x98\xb8\x9e\x4f\x3f\xec\xd4\x07\x8c\xe6\x49\x3e\x3c\xeb\xf8\x72\x40\x67\xbe\x44\xf3\x75\xe7\xf3\x03\x4d\xd1\xf5\x5c\x7f\x58\x75\xbe\xfb\x86\xc1\x8b\xe1\x1f\x4a\xdb\xdd\xbb\x86\x66\xcd\x0c\xe7\x8c\x87\xd1\x4e\x8e\x1e\x5c\x1e\x62\x39\x7c\x9a\xab\xb0\x0e\xe2\xf4\xc3\xd3\x6e\x89\xe5\x21\x46\x2f\x35\xb7\x54\x68\x47\x9c\xbf\xc7\x4d\x55\x4f\x09\x3d\x67\x1f\x8c\x8c\xf4\x1e\xc5\x16\x9b\x79\x6e\xdd\xed\x39\x4d\x43\xaf\xbd\x3d\x8e\xbf\x58\x7c\x6f\xb0\xdf\xe9\x4a\x97\x51\x4a\xc6\xd0\x62\xfb\xc5\xbf\x5c\x93\x56\xbc\x50\x75\x7a\xfe\xeb\x5c\xe2\xb5\xeb\xb7\xdc\x16\xf7\xab\x2c\xde\x5e\x77\xd6\x33\xb4\xff\xd2\xc2\xc4\x23\xe7\xbd\x12\x06\xce\xce\xeb\xa8\xf8\xec\x75\x77\xd0\x2b\x2a\xb8\x68\xa5\x8f\xfe\x60\x77\xf8\x7c\x8e\x1e\xfa\xe4\xbe\xbc\x2a\x5b\xaf\x91\x77\x0e\xa2\xed\x43\x1d\x1d\xa1\x8d\x88\xc1\x8b\x75\x1e\x88\x8d\x46\x8c\x7f\x6d\x9c\x20\xff\x0c\x71\xc9\x74\xc7\x1a\xdd\x56\x9c\x1e\xa7\x1c\x6a\xe5\x9d\xc5\xda\x16\x7e\x62\xd5\x50\xec\xab\x21\x25\x5f\xa9\x93\x3b\x96\x1b\x0f\xf4\x38\xb5\xf5\x9e\x5d\x55\xdc\xe3\xe0\xec\xd5\x77\x66\x25\xeb\xae\xab\x87\xcd\x4f\x87\x95\x22\x0d\x83\xde\x95\xbf\x1c\x52\x16\x1e\x3b\xea\x73\xbf\x7f\x7a\xe2\xd4\xb2\xc0\xe9\x91\x03\xe3\xe2\xf3\x8a\x92\xa6\x1f\x1d\xf8\x3c\xcf\x71\x7b\x8c\xff\xf7\xc1\xc4\x28\x7d\xc4\x61\x23\xf4\x86\x71\xf4\xd0\xcc\xd7\x78\xc4\x37\x02\xd1\x2d\x70\xaa\xb0\xd0\x20\xe2\xac\xb5\x53\xd3\x45\x9f\x22\xa6\x8c\xd4\xbd\x25\x33\x02\x31\xe3\xb0\x8d\x97\xf6\x11\x8c\x5d\x76\x22\x20\xde\xeb\x22\x4b\x70\x0e\x7f\x6a\xc6\xa2\xda\x41\x3e\x7f\xcb\x13\xdb\x32\xcb\xb9\x7e\xb1\x67\xbd\x1e\x3b\x7e\x38\xaf\x87\x4b\x52\xbe\xbb\xfb\x02\xb3\x42\x8e\xc9\xf9\x7f\xfc\x99\xb9\xf2\x47\x19\x4f\xa0\xd5\xaf\x82\x14\x91\x3d\x35\x81\x7b\xfa\x4f\x2c\x7a\xbd\xed\xc2\xcc\xc5\x03\xf1\x71\xef\x36\xdd\x99\x39\x34\x38\x6a\x5e\x18\xe2\xc8\xf9\x5a\xa4\x3e\xd9\xd4\x07\x9a\x1b\xf8\xb6\x23\x7a\x2d\x57\xbb\x3d\xfa\x14\xe2\x02\x77\xd5\x6d\x63\x36\x23\x66\x65\x6a\xd4\x4a\x46\x21\x6e\xee\x33\x99\xa7\x5e\x89\xc5\xeb\x4f\x7b\x7e\x76\x0f\x1d\xb2\x8f\x9b\x9e\xc8\x9b\x62\xd1\xbf\x20\xb0\xe3\x84\x71\x8e\xf9\x27\x75\x8f\x77\x5f\x8e\xee\xa8\xbd\xb6\xcf\x7f\xc2\x37\x9b\x6d\xe7\x8f\x89\xcd\x5c\xfe\xfd\xfb\xa6\x5d\x25\x93\x43\x77\xf6\xcd\x5e\xab\x53\xb8\x2f\xf4\xe3\x2f\xd1\x34\x9e\x5c\x95\x70\x81\x7e\xd1\xa5\xdf\xd7\x7b\x47\x6c\xef\x7f\xb7\x28\x78\xd5\xe4\x08\xd6\xc0\xf5\xf9\x65\x88\x82\x37\x35\xa4\x39\x7a\x18\x5e\x56\x15\xe3\xdd\x80\x18\x92\x31\xc1\x80\xaf\x1b\x31\x35\x81\xee\xb3\xf9\xb5\x8a\x2b\x85\x02\x11\x0f\x94\x6a\xaf\x9c\x30\x17\x1f\x17\x67\x3b\x14\x38\xdd\x1c\x3c\xb6\x7a\x5c\x74\xf1\xca\x57\xaf\xf5\xa3\x3e\x1d\x56\xdf\x7b\xe8\x8a\x74\xa8\xfc\xa7\x7b\xe5\xb5\x07\x8b\xa2\xa2\x7b\x13\x8b\x97\xff\xc3\xc3\xe6\xcd\xab\xf8\xb1\x71\x63\x62\x56\x65\x4c\xfa\xcf\xc9\x99\x96\x2b\x4f\xc7\xf8\xfc\x5a\x90\x7a\x2c\x45\x3e\x26\xb4\x3f\x6e\xc9\xc4\xa4\xda\x79\x0d\x03\xfe\xf1\x29\x88\x0a\x86\xaa\xee\x23\x44\x11\xed\x15\x15\xa7\xf2\x64\x20\xce\x9d\x3c\xec\x3d\xf1\x43\x64\x53\x3d\xaa\x18\x1e\x70\xfe\xb3\xfc\x64\x21\x49\xc4\xcb\xf5\xc6\x5e\xa6\x13\xdb\xd7\x1e\x79\x14\xa0\x90\xa2\x59\x1e\xb8\x25\x79\xc3\x9d\xca\xa4\x35\x2a\x19\x97\xdf\x2b\x9d\x74\x4f\xd3\xcd\x58\xd3\x73\xa2\x7c\x5e\xca\xc8\x15\x2e\x5f\xd7\x15\x4a\x26\x65\xaf\xb0\xfd\xde\x9e\xa3\xb0\x48\x30\x25\xea\xa7\x64\xe6\xcd\x78\x9f\x65\x25\xbf\x96\xa7\x6e\x88\x9b\xb8\x24\xa9\x3f\x3f\x49\x61\x7e\x40\xe2\xcb\x81\x99\xf1\xd1\x88\x13\x07\x26\x2a\x8c\xe8\x41\xa4\x37\x77\x10\xd3\x18\xb9\xe5\xe2\x4c\x3c\x84\x19\x97\xae\x05\x10\x02\xf0\xd1\xba\xa7\x49\x73\xa7\xca\xc2\x7a\xdb\x76\x59\xf7\xe9\x51\x43\xab\xc6\x5f\xbf\x9c\x2a\xbb\x63\x6f\xe4\x83\x66\x87\x97\xe9\x07\x04\x22\x4d\x8e\xb7\x7c\xf5\x2d\xf0\x9e\x65\x59\x5a\xfa\x63\xd4\x66\x9f\xc8\x67\xbb\xef\xf4\x7d\xca\xfc\x10\x59\x99\xf7\xfa\x57\x78\x6a\x65\xc4\xce\x2d\x3b\xfa\x73\x13\x1f\x86\x8f\xdb\x64\x3f\x10\xba\x60\x28\xbc\x71\x8d\xf7\xe0\xa8\x79\x6d\x88\x7a\x0e\x7c\x62\x1c\x39\x73\x2b\xa9\xbc\x9d\xb6\x7f\xfb\x21\xde\x90\x1b\x64\xef\x18\xfb\xdb\xd2\x8a\xa8\x2a\x23\xa3\x76\x80\x87\xc5\x72\x8a\x73\x8f\x8c\x9f\xd3\x9f\x9d\x14\x9c\x7c\xda\xb7\xff\xa7\xcc\xad\xe4\xac\x16\x8f\x75\x6f\xc6\xf5\x95\xaf\xe2\xf3\x56\xbc\xf9\xfc\x17\xdf\xf2\x12\x9f\x67\x0d\xfb\xfa\xf9\x96\x4c\xf1\xc9\x3a\x1e\x33\xe0\x12\x77\xc8\x6f\x61\x65\xfd\x40\x7d\x4c\x83\xdf\xd4\x03\xbc\x83\x4b\x67\xbf\xf7\x5b\xb3\x5b\x6d\x70\x28\x7c\xf1\xef\x71\x58\xc7\xc4\x61\x4e\xea\x32\x3c\x88\xdc\xf4\xfa\xc0\xd8\xdf\x2b\xf9\x14\x0f\x6e\x46\x54\x39\x2c\x59\xb1\x3e\x12\xc7\x3a\xb9\x99\x1f\x8e\x3a\x3f\x74\x69\x41\x4b\xc8\x7d\x1f\xf6\x60\x57\xb9\x6e\xd4\x2a\xc7\xf6\xc1\x31\xaf\x3f\xce\xf3\xb5\x13\x19\x68\x1e\xf4\x0e\xef\xb7\x4f\x78\x29\x3e\xb8\x3b\xec\x80\x63\xe8\xed\xba\xc1\x87\xa1\xfb\x1c\x3a\xae\xac\x1e\xda\x10\x30\xdb\x49\xe6\xdc\xd9\xa1\xf3\xfe\xd7\x9d\x5c\x8f\xc5\xb3\xf4\x7c\x82\x11\x63\x19\x3d\x2a\x7c\x29\x3e\x21\x3c\xa0\x87\xe1\x41\x2d\x89\x14\x2b\x98\x9b\xd5\x39\xfd\x88\x93\x0f\x8b\x89\x2f\x79\x84\x07\x1c\x3d\x74\x47\x86\x4c\x65\xa7\x45\x6b\x38\x66\x7a\x9e\x61\x0b\xe5\xfc\xf0\x50\x74\xdc\xc8\xca\x3b\xd9\xe3\xb3\xcb\x5a\x88\x15\xf1\xe6\xa7\x4f\x33\x37\xde\x62\x16\xfc\xdd\x8f\x2d\x60\xbf\xd2\xec\xd3\xab\x0f\x6c\x5e\xfb\x27\xe6\x35\x8f\x78\xd8\x12\xf6\xcb\x2d\x2c\x6e\x9c\x61\xeb\xdb\x99\xfc\x8e\x53\xde\xd0\xfc\x93\x07\xde\x5c\x49\xb1\x8a\xe1\x1d\x39\xaa\x14\x53\x5b\x11\x95\xa7\x0b\xab\xcd\x9d\x8b\x6c\xbb\x47\xaa\x23\xfc\x2d\xd1\x2f\x7c\xbe\x51\xa0\x5b\x08\xca\xa7\x1b\x9a\x67\xd8\xdf\x64\xf7\x14\x16\x58\xf9\x59\xfa\xb3\xeb\xea\x3f\xdb\xe8\x9b\xb6\xb2\x8b\xba\xbe\xd8\x0a\x1a\x07\xa2\x26\xfb\x96\x69\xc3\xb4\x4f\xf8\x0e\x0b\xa6\x56\xeb\x4d\xf8\xd9\x82\x67\x34\x0e\xe9\x9e\x79\xdf\x86\xe5\x1a\x1d\x88\x75\xe4\x4e\x17\x6b\xd1\xaf\xb3\x7f\xf2\xc0\xa3\xee\x8c\x1f\x84\xb1\xff\x29\x0c\x2f\x8a\xbc\x8d\x28\x7c\x14\x20\x44\x1f\xd1\xaa\x54\x41\xcf\xe3\x07\x3e\x08\x8a\x9f\xf2\xc5\x49\x17\x2f\x2d\xec\x9f\xea\x65\x6b\x84\x7b\xd7\x36\xe8\x09\x9b\x8b\xe3\x8e\xe2\x28\x3d\x6b\x13\x21\x9c\x57\xe7\x65\xe0\x64\xb0\x12\x33\x1e\x49\x4c\x0b\x98\xd6\x89\xcd\x7d\xf6\xda\xdd\xba\xe1\x88\xf8\x55\x2d\x47\xeb\x14\x22\xa2\xd2\x19\x6e\x3c\xea\xc9\x45\x86\x07\x76\x32\xf1\x30\x66\x3d\x64\x30\xeb\x73\x2e\xd3\xe9\x3f\xc4\x0b\x51\x71\x3d\xef\x3d\xef\x34\x44\x93\x4d\xe3\x12\x9c\x2f\x21\x7a\x2f\x9a\xb0\xd0\x3e\x1d\x71\x4e\xac\x8a\xbd\x95\x2a\x62\xe2\x4b\x15\x05\xd3\x49\x88\xd9\xd5\x6a\xe3\x0d\x6b\xb1\x7f\x8f\xa5\xda\xb9\x69\x42\xf8\xeb\x58\xb8\xda\x5e\xdd\x39\xd8\x7b\xad\x54\xfd\x90\x4e\x3d\x0e\xbc\x98\xaf\xfe\x56\xfb\x31\xe2\x60\xba\xca\xf0\x4e\x66\xfc\xeb\xc6\x52\xdc\x2b\xce\xf0\xb0\xe1\x14\x17\xf6\x52\x0c\x8c\xa5\x68\x3d\x9e\xa2\x9d\x17\xe2\x54\x59\xc1\x4c\x1b\x39\x44\xc7\x29\xe3\x17\x5a\x94\x21\x06\x4e\x92\x39\x66\x16\x8d\x38\x4f\x44\xfe\x9d\xd1\x17\xc4\x64\x25\xc5\xc5\x06\xb3\x11\xd7\xed\x9d\x20\xa9\xfb\x03\x71\xe7\x97\x09\x7c\xba\xf6\x88\x95\x9a\xca\xa7\xa7\x4a\x20\xd6\x0b\x4f\xf4\xd4\x6c\x44\x6c\xb5\x99\xd0\xc5\xf9\x56\x47\x1d\x52\xe7\x21\xdd\x4c\xff\x4f\x1e\xa2\xfb\xc1\x78\x83\x60\x1c\xa2\x7d\x98\x5d\xa6\x54\x3b\xa2\xfb\x5e\x5f\x59\x95\x2c\x44\x77\xb1\x38\x39\x7d\x09\x44\xa7\xa1\xcd\x8f\x6d\xb6\xe2\x45\xdb\xcc\xa3\x8e\x2e\xef\x71\xa3\xc5\xd5\x27\xd7\x3c\x79\xf0\x94\xd9\x51\x96\xa2\xc7\x48\x44\x13\x60\x8f\xb4\xfd\xd9\x5d\x69\xcc\x66\x8f\xb1\x2d\x7e\x3a\xdc\xd4\x91\x2d\x68\x17\x76\x23\xcc\x7c\x21\x8b\x65\xff\xab\x69\x97\xf9\x2e\xb6\xb1\xad\xfb\x99\xcd\x16\x17\xd8\x81\x36\x8a\x1c\x3d\xec\xb3\x99\x3a\x56\xe6\x7f\xf2\x10\x63\x59\x23\x5f\xe1\xef\x88\x0e\xaf\x6c\x52\xc7\x7f\x46\xf4\x3e\xe2\xbd\x46\xfd\x25\xa2\xf7\xaa\x79\x0b\x8d\x15\x91\xe5\x1a\xb4\xd1\xc4\x3e\x05\x77\xdb\x15\x1c\xfd\xe0\xfe\x09\x67\x59\x66\x3c\xb5\xf5\xbe\x8d\x7b\xcd\xc5\x87\x06\x3d\xb3\x7f\x4a\x98\xbe\x63\x2d\x74\xb9\xf1\xd2\xd9\x7c\x3f\xcb\xc3\x5d\xe5\xae\xbb\x65\x38\x2b\xd4\x3d\xb4\x19\x2c\xdd\x59\xd7\x9d\x1e\x9f\x73\xb6\x3a\xcd\xea\x76\x7c\x77\xec\xa7\x55\x3a\xdb\xce\xb6\xf6\x37\x1f\x03\x30\x7c\xfd\x27\x0f\x31\x1b\xd2\x8f\x16\xf6\x47\xf4\xf0\x34\x7b\x26\xe9\x82\xe8\xff\xd5\x63\x96\xfa\x1c\x44\xbf\x1d\x73\x34\x4d\xe7\xe3\x63\xf7\xc3\x1b\x52\x9d\x9e\x61\xa8\xc3\xdc\xa3\x8f\x7c\x56\xb3\xbf\x5a\x0d\x74\x5a\x07\xbc\x45\x2f\x0b\xcb\xa1\x55\x7e\xee\x9f\x64\x2c\x1a\x87\x2a\x7d\x37\x3d\x65\x59\xb2\x87\x1e\xf8\xd4\x5f\x1f\x6b\x33\x82\x35\xdc\xfb\x67\xe3\x13\x9b\x22\xd6\x6c\x8f\xa0\x13\x43\xb6\x77\x58\xbb\xdc\x12\x0e\xc7\xdb\x5d\x62\x75\x38\x97\xfd\xa1\x87\x9e\xbe\x3b\x07\xd5\x9e\xe9\xe9\xf1\x56\x20\xda\xd4\xea\x2c\x12\x5a\x82\xe8\x27\x67\xf8\x58\x62\x3a\x62\x50\x9d\xd3\xd7\xc9\xeb\x10\x03\x35\x23\x6d\x2d\x23\x31\xc7\xfb\xf4\xda\x48\x8f\xeb\x38\xdc\x69\xf2\x09\xb5\x80\x22\xf6\x16\xeb\xf6\xb7\xd3\x43\xa3\x58\x5f\x2d\x13\x07\x07\x03\xa7\x77\x75\x5a\x0b\x0f\x89\x06\x5e\xbb\x5b\x61\x3b\x7d\xc8\x22\x30\xa5\x69\x9b\xbd\xe6\x50\xee\x0c\xc7\xba\xe9\xf6\x41\x2c\xf0\x35\xa9\xb6\x70\x8c\x64\xb9\x78\x3d\x29\xf9\xee\xf4\x9c\x95\xe5\x51\xc3\xd1\xc3\xf4\x04\x1d\x0f\x2d\x52\x7f\x52\x2b\x5e\x3b\x9b\x9f\x07\xd1\xf1\xbb\xe6\x1b\xc1\x2d\x88\x33\x6d\xf4\x0a\xc4\x85\x11\x23\xc7\x3a\xac\x50\xf1\x46\x0c\x5e\x13\x5c\x6d\x35\x0a\xdd\xa6\x0f\xcb\x92\xf2\x7d\xc2\xce\x77\x29\x38\xbe\x33\x6c\x32\x5b\xd8\xa6\xb1\xe7\xe1\xec\xc6\x6f\xb2\xd6\x6f\x06\x15\x23\x16\x3e\x55\xb7\x0b\x1b\x0c\x8e\x18\xd7\x32\xcb\xe1\xdc\xe0\xe9\xb0\x69\x75\x9a\x4e\x9f\x86\xc4\x82\xbb\x6b\xba\x9d\xdf\x0d\x6d\x0a\xe8\x2a\x73\x75\xf9\xc6\xe2\xf5\x5b\x50\xd4\xef\x72\x9a\x95\xe5\x29\xfc\x7b\x5d\xf0\x77\x6a\x5c\x21\xf6\x5f\x7e\xca\x39\x8e\xdd\xf7\x2e\x50\x5b\x3a\xfa\x08\x62\x54\x84\xa6\xc7\xd8\x3c\xc4\x38\x07\xcb\x3c\xe5\xa5\x88\xd1\x37\x67\xc8\x59\xed\xc7\x31\x81\x87\xd2\xf4\x67\x34\xb1\xfa\xdc\x95\x4f\x34\x44\x6f\x64\x4d\xb3\xe3\xf9\x65\xb7\x40\xf9\xe5\x4d\x87\xcc\xfe\x9b\x71\x92\xd7\xbb\x5c\x16\x0e\x48\xc4\xde\x39\x67\xec\xe6\x37\xf0\x3a\x7a\xdb\x11\x65\x8f\xb5\x83\xf3\x66\xf3\x97\x96\x79\xa6\x0d\x62\x98\xed\x6e\x09\xaf\x5b\x43\x29\x33\x85\x77\xd8\x7a\x7e\x61\xf1\x4e\x0f\xf9\xcd\x0b\xe5\xc2\x35\xc5\x87\x1f\x47\xb4\x74\x9d\xe8\x37\x6a\x2e\x62\x58\xab\xc2\x16\xde\x04\xc4\x44\x5f\x95\x94\x31\xfb\x10\x57\x88\x4d\x3b\x22\x77\x03\x71\xe9\x72\x4f\x7e\x8b\x66\xf6\xc2\xc8\x11\x49\x0e\x11\xc3\x87\x7a\xbc\xde\x9c\x78\xb8\x38\xe2\xe3\x4d\xe7\x89\x3f\xb5\x56\x6c\xbd\x6e\xef\x19\xf8\xf3\xc8\x0a\xcd\xd3\x6e\x3e\x7d\xbf\x8a\x97\x95\x55\x76\xfb\x7d\xeb\xbf\x9a\xb0\x6b\xcf\xa2\x19\x7a\x03\x79\xb1\x76\xdb\xcd\x66\xac\x1d\xf4\x9a\xb3\x34\x67\x93\xff\x8f\x21\xc1\xb0\x81\x0d\xf3\x66\x78\x0d\xad\x9d\x39\x9b\xa3\x87\x26\xd1\xe3\x1f\xfb\xaf\x20\xe8\xc2\xf9\x3c\x9f\xb1\xbf\xeb\x5a\x81\xd4\xbd\xca\xbf\x3a\x79\xb6\x58\x16\xe2\xd6\x70\x1b\x5b\x23\xa9\x2f\x17\x97\xb4\x47\x6d\x8d\xf1\x7e\x80\xb3\x7c\xf6\xaf\x58\xb3\xaa\x69\x63\xc0\x8c\xde\xf6\xdc\x8e\x8a\xaa\xd0\x9c\x1f\xf1\xd9\x6d\x85\xed\x11\x22\x3f\x85\x32\x05\xb6\x4e\x8d\xf8\xfe\x2b\x75\xf9\xc3\xf5\x3c\x91\x93\xfb\x9b\x16\xcf\x5f\x75\x29\xf2\xe8\x40\x46\x5c\xdf\x8a\xd8\x88\x33\x83\x49\x73\xc4\x93\x4b\x23\x84\x86\x04\xc2\xeb\x10\xe1\xe8\x04\xb2\x7f\x68\x8b\x08\x2a\x72\x30\xbc\x8e\xca\x5f\xcd\xf8\x21\xf6\x1e\xa6\x78\xea\xa2\x40\x2a\xc0\x8f\x5d\xa7\xd4\x75\x3b\x34\x46\xdc\x8c\xd9\x3f\xc5\x9f\x77\xf6\xf4\xbd\xfd\x6b\x97\x65\xc5\x6d\x3d\x93\x59\x98\x9a\x71\x7f\x61\xd1\xe3\x94\x9b\x29\xa3\xbf\xf1\xef\x1c\xbf\xc4\x67\xe9\xad\x1f\xf7\xb3\x53\x16\xb7\x26\xc6\xff\xdc\x9b\x71\x61\x61\xc9\xa2\x92\x7e\xc9\x65\x6b\xe2\x13\x16\x74\x0e\x88\x26\xac\x88\x55\x5a\xc0\x33\x28\x3e\x2f\x65\xbe\xd3\x7c\xa7\xc1\x3d\xb3\xcf\x21\x4a\x55\x49\x07\x73\xe4\x38\x31\xfc\x8b\x1b\x8f\xe1\xfa\x63\xce\x91\x9b\xbc\x7d\xd5\xb4\xf2\xcd\xa3\xd2\xc7\xba\x93\x7e\xca\x1c\x3d\x72\xe1\x7a\xaa\x8b\xb6\x8f\x4d\xea\xb7\xba\xbb\x4b\xbf\xa7\x57\xcd\xea\x3c\x25\x70\x5d\x2a\xdb\x30\xe4\x66\x95\x4d\xdf\xfc\x35\xdd\xa1\x67\x8b\xab\x7f\x8d\x5f\xf1\x39\x6c\xd9\xf6\xb6\x7e\xa7\x25\x7b\xc2\xf6\x6d\x49\x19\x30\x59\x38\x2c\x64\x53\x36\x0e\x9a\x47\xbf\x0e\x2e\x5d\x73\x65\x10\x23\x26\xcd\xb4\x5e\xf5\x7d\x68\x7f\xd0\x23\x44\x8d\x2c\x2a\x6f\x1e\x93\x0f\x43\xef\x5a\x72\xed\x5f\x9f\x5e\x1b\xc9\xcb\x78\x62\xd9\x4d\xf2\x86\x1a\x47\xf5\xaf\x93\x72\xe6\x79\xb1\x33\xea\xcb\x19\xab\x10\x23\xd6\x3c\xf5\x77\x77\xe2\x4b\x66\xcf\xf2\x6a\x79\xfb\xec\x92\x7c\xfc\x2b\x97\xb0\x67\x05\xfd\xaf\x16\xf0\xb8\x8d\x6f\x29\x1c\xa8\x9e\xa7\xe1\xde\x79\xf6\xe5\xa0\x6d\x94\xa3\x47\xfd\x91\xc3\x83\x5d\xe1\xc6\x9e\x43\xa5\x67\x87\xfc\x82\xf3\x3d\xd2\x8a\x67\xb2\x46\x4d\x4f\xf4\xb2\x2a\x48\x65\xc9\xfb\x35\xfe\xe6\x41\xeb\x19\x3d\x4e\x92\x9b\xfb\xbf\x16\x3f\x23\x77\x46\xdb\x36\xf5\x12\x7e\xd8\x58\x48\xed\xca\x6e\x1f\xc4\x91\x05\x00\x19\xe9\x88\xa6\xad\x2a\x21\x21\xae\xec\xa4\xe8\x42\x27\x01\x97\x25\xac\x23\x95\xe6\x3e\x23\xad\xbd\x58\x66\x1f\x62\xfd\xfc\x2c\xe5\xbf\x65\xb2\x5c\x3d\x4c\x2c\x15\x9f\x57\xb1\x8a\x5c\x65\xac\x36\xb4\xba\xb1\x8e\xba\xb4\x5a\xd7\x37\xd5\xb3\xee\x3a\xdf\xb3\xb9\x78\x66\x27\x8b\xe5\xa4\x63\x53\x5e\xfb\x98\x6d\x6f\x77\x10\x31\x29\x94\xe1\xc3\xe4\x26\x34\x2b\xf6\x29\xa9\x91\xf2\x7c\xe5\x57\x92\xaf\x73\xe1\x11\xe3\x87\x60\xec\x7f\x3a\xc3\x07\x16\xc8\x23\x9a\x88\xcb\x37\xf8\x25\x63\x6a\x68\xf6\xb4\x87\x0e\x83\x38\x7e\xeb\x24\xf3\x23\x16\x9b\xd9\xbd\x67\xf2\x2d\x58\x26\x2e\xec\x57\xef\x24\x2d\x65\x0c\x66\xe2\x51\x0c\xd3\x8b\x9c\x66\xf8\xb5\x16\xd7\x4e\x3d\xa1\xff\xf9\xa5\x34\x5a\xe8\xf5\x4d\x7b\xf8\x30\x1e\x63\xb4\x8f\x19\xa6\x5f\x0b\x47\x83\x69\x59\x88\xbb\xad\x18\x7f\x14\xf1\x53\xbe\x4c\xfb\x46\x6e\x70\x5f\x59\xfc\x77\x3c\x6a\x83\x35\xc5\x79\x7e\x88\x90\x01\x10\x3a\x80\xa8\xff\x7d\xdc\x41\x77\xc0\x6f\x33\xb4\x55\x0d\x6c\xc7\xe2\xad\x34\x11\xad\x1c\x33\x17\xac\x2f\x5c\x3d\xb5\xd3\x50\x11\xab\xeb\x04\xb5\x4b\xa7\x7d\xc0\xca\x17\x0b\x74\xf6\xe8\xde\x47\xc4\x57\xea\xbb\xb8\x7c\x43\xad\xad\xaf\x12\x51\x7a\xab\xc6\xc4\xb7\x0b\x10\x15\xe5\x30\xe3\x2a\xa9\x14\xfe\xe6\x53\x2f\xb9\x31\x7e\x75\x2f\xc3\x43\x6f\xff\x1d\x8f\x4a\x62\xf8\x40\x00\x1f\x45\xcf\x19\x88\x1a\xe7\x85\x26\x3b\x1c\x43\xf4\xf2\x50\x70\xb4\x7c\x8d\x18\xbf\x5c\xb9\xc9\x78\x1b\xe2\x5a\xc3\x49\xdb\xf5\xad\x10\x77\x6f\x9e\xcc\xab\x67\x8e\xec\x93\x8b\x54\xdf\xe9\xc8\x22\xde\xbf\xa3\x66\x34\x55\x06\xf1\x8b\xbb\xf2\xfd\x29\xbe\x1c\x7d\x64\x02\x27\xe6\x70\x70\xcc\x8c\x5e\xdb\x4f\x67\xff\xe4\x81\xd5\x4c\x1c\x2a\x8f\x89\x43\xa5\x32\x1d\xb0\x66\x5f\xa0\xe8\x9c\x46\xd1\x61\x31\xa2\xba\xa5\x40\xac\xa9\x27\xa2\xed\x7d\x31\x01\xc3\x32\xc4\x90\x57\x92\x0b\xf4\x3b\x11\x93\x7c\x65\xb5\xf5\x14\x11\xd7\xfd\x90\x0f\xd6\x4e\x43\x2c\x1c\x54\xf0\xd6\x78\x8d\x58\x55\x25\xf7\x59\x23\x03\xf1\x92\xa6\xa2\xe8\x14\x1d\xc4\x76\x2b\xf9\x4e\xf5\x6d\x88\x3f\x76\xca\x74\xdf\xf7\x67\x78\xa0\x0a\xc5\x9d\xe1\x14\x57\x15\x53\x8c\x3d\x44\xd1\xff\x2e\x45\x4b\xa6\x53\x99\xb1\x2a\xa2\xe2\xcc\x91\xc5\xd3\x12\x10\x8d\x53\x85\x46\xe9\x98\x22\x7a\xcf\x11\x19\xad\x65\x81\x18\x3e\x34\x56\x56\x4b\x00\x71\xf1\x15\xf1\x42\xf5\xb7\x88\x19\x82\xe2\xd6\x6a\x7e\x88\xb9\x1f\x24\x76\xa8\x5c\x46\x2c\x91\x1d\x37\x6d\xf2\x3d\xc4\x93\x8a\xe3\x5e\x4c\xac\x44\xbc\xac\x21\x96\xc3\xf9\x56\x37\xa6\xde\xd5\xdf\xf6\x5f\xc1\xc7\x68\xd6\xc8\xc9\x88\x3a\xab\x6c\xf6\x0b\x2d\x45\x34\x11\xf2\x76\x18\x27\x85\x68\xee\x10\xf3\x5c\x69\x18\xa2\x99\xc0\x86\xe3\x53\xf4\x11\x0d\x3f\xd4\xa8\xe9\x44\x20\x4e\x0b\x7a\xb8\x46\x37\x1b\x71\xda\x72\x74\xe5\xa0\x76\x3c\xbe\x52\x0d\xf9\x18\xa1\x1d\x87\x55\xea\xbb\xda\x7f\x6a\x07\x62\xa5\xfa\xec\x3b\xc3\x74\x6e\xe1\x16\x0d\xb7\xcb\xc7\x74\x02\xb0\x5a\xed\x79\x83\x8f\xce\x74\xac\x57\x2d\xfa\x1f\x7a\xa4\xeb\x1e\xe3\xa0\xd2\x1e\x03\xcd\x91\xaf\x10\x75\x36\x9a\xae\x12\x54\x41\xb4\xd0\xf5\xd8\x38\xde\x0d\xd1\x62\xeb\xdc\x04\xa5\x24\x44\x8b\xbc\x0d\x52\x5a\xe5\x88\x26\xc3\x8f\x58\xe9\xf3\x22\x1a\xc8\xb4\xcd\x36\x54\x42\xd4\x17\x44\x9d\x69\xaa\xfd\x2e\xba\x6a\x98\xa3\xb9\xa3\x4b\x5f\xcf\x1e\xbd\x74\xa4\x1e\x7a\xe9\xed\xc4\xe9\xda\xe5\xd7\x13\xa6\x8d\xc2\x88\xa9\xfd\xe7\xbd\xf5\x5f\xa1\x8f\x4e\xe2\x59\x61\xbd\x5f\xb8\x4d\x83\xf4\xfb\x72\x14\x61\xf8\x58\x0f\x45\x4d\x92\xe7\xa0\x32\x4a\xf7\xe2\xa8\x2d\xbf\x79\x99\x4d\xbd\xcb\x3b\xe9\xe5\x88\xb6\x7d\x51\xf3\x26\x7d\x41\xb4\x9a\xb8\xae\x5e\x3b\x1a\xd1\xf4\xe9\x91\x41\xa3\x77\x88\x86\x73\x9e\x5d\x33\xa9\x41\x9c\x76\x10\x6d\xf5\xc6\x7c\x99\x35\x6d\x2a\xea\xea\x05\x3c\xcf\xd2\x3f\xc1\x46\x83\x84\xdb\x99\x06\xab\x91\xd7\xc0\xf0\xd2\x3b\xc3\x05\x28\xa1\x7f\xb4\x7e\x99\x81\x2a\xfa\xeb\xb8\x1e\x4f\x31\xf8\x86\x51\xda\x8b\xfe\xe4\x85\x74\x3e\x04\x5e\x68\x14\x72\x50\x23\x4e\x73\x2d\x6f\x1b\xa2\xa9\xae\x81\xa1\x70\x30\xa2\xc3\x72\x87\x08\x99\x32\x44\x27\xab\x48\x5e\xb5\x49\x88\xb6\x27\xd7\xfc\xd0\xe7\xcc\x93\x7d\xed\x57\xb3\x1c\x44\xa3\x9e\x17\xdf\x2d\x83\xd8\xd2\x06\x4b\xd8\x1d\x46\x47\xdf\x7d\x30\x5c\xc2\xde\x67\xfa\xf5\xa1\xb5\xf1\x41\x76\xa2\xc5\x40\xcb\x69\x93\x50\xf6\x0e\xf3\xac\xc6\x21\x93\x2a\x76\x93\xa9\xf7\x89\x64\x93\x04\xe4\x35\x5c\x70\x78\x91\xa9\x34\xaa\xe8\xef\xfd\x73\x5d\xe8\x7a\x70\x50\x78\x99\x32\xe1\x23\xda\xcd\xaa\xa1\xa3\xee\x23\xda\x87\x6b\x97\x0b\x6d\x46\xf4\xb8\x60\x3d\x47\xfa\x31\xa2\xbb\xf4\xcc\x25\x53\x9c\x10\x1d\xf6\xac\x36\x37\xbc\x8b\x68\xd9\x74\x74\xa7\x8d\x3d\xa2\x49\xda\xbb\xe7\x76\xd8\x6b\x6e\xb2\x84\xf5\xce\x7e\xfe\xb3\xef\x66\x13\x58\x77\x1c\x6d\xb9\xbc\xb8\xd1\xd8\xe2\x27\x5b\xd1\xee\xdd\xf1\x0c\xcb\xf1\xec\x24\xab\x5b\x87\xdb\x2d\xe7\xb2\xcb\x2d\xcc\x4a\x43\x2d\x86\xd8\xdd\x26\xfa\x7f\xce\x87\x46\x31\x59\x9f\x6d\x0a\x3b\x87\x1f\x41\x34\x97\x55\x58\x31\x72\x2b\xa2\xb7\xa7\x9a\xe7\xe8\xcd\x88\x33\x9f\x1a\xb9\x49\x5e\x47\xf4\x53\xf0\xfd\xaa\xf5\x0b\xd1\xbd\x22\xad\xdd\x7a\x24\x5e\xb6\xb5\x38\xa6\xe4\x72\x04\xf7\x99\xf5\xf7\xe9\x7a\xdc\x7b\xfe\xdc\x72\x70\xe8\xac\x6f\xed\x8d\x4a\x1b\xd1\xa1\x8f\x3e\x4f\x1b\x54\x6d\x8f\xb1\x4c\xbd\x82\x8e\xae\xb1\x7b\xcc\xca\x75\x97\x2b\x6b\x71\x58\xc6\x7a\xe2\x12\x5c\xbc\xc6\x3e\x9d\xed\x68\x77\xb5\x70\x94\xfd\x0c\xf6\x66\xab\x1f\xbf\x79\xd0\xf0\x68\x39\xa2\x87\xc6\x7c\x41\x37\x0e\x3a\xbf\xe4\x51\xe6\xe0\xac\x26\x59\x55\x1e\x27\xc4\xd8\xa1\x29\xf7\xc6\xbe\x40\x9c\xa3\xec\x52\xaa\xa5\x8a\xf7\xa6\xa7\x25\xc5\x39\x29\xf6\xb9\x3b\x2f\xab\x19\x11\xb0\xeb\xdd\x74\xdb\x7d\x5f\x0f\x46\xde\x6b\xde\xe5\x34\x7f\xd0\x61\x56\xe4\xa9\x46\x97\xb6\xc1\x2b\xe1\xe2\x07\xd3\xdd\x87\x0f\x59\x04\x67\x14\x77\xb9\x67\x0e\x3d\xf6\xbf\x57\xb0\xc5\xdd\x98\x35\xdb\xeb\x47\xee\x80\xfb\x49\xd6\x71\xf7\xf8\xec\xa7\xee\x51\xec\x09\x8e\xbf\x7e\xf3\x20\x89\x6e\x51\x53\x0e\x9a\x9c\xa5\xfb\x3c\x97\x87\xa4\x08\x50\x5c\x1b\x2c\xb3\x7a\xd4\x20\xe2\x6a\x73\x53\x1d\x95\x95\x9d\xf3\x63\xb5\x22\x2e\xfa\x7b\xb4\x84\x84\x56\x17\x58\x2e\xe0\x39\xfd\xd6\xdf\xa3\xed\xdd\xb2\xc2\x92\x92\x80\xec\x7e\xd9\x25\xf5\x3b\x57\x06\x4d\x1e\x30\x8b\x37\xcd\xc9\x0e\xca\x1e\x94\x9d\xbb\x66\xdd\xe5\xa0\xf6\xc1\x97\x11\x9d\xab\x3a\x82\xb6\x0e\x65\xcd\x3c\x9f\xa6\x17\x98\xcb\x92\x9e\xbe\x2a\xf9\x7c\xc0\x7e\x56\x9e\xe7\x0b\x8e\x1e\x32\xf7\x09\x3f\x66\x78\x47\xe0\x2a\x8a\xc9\xaa\x14\xb9\xe7\x70\xea\x0f\x78\x29\x54\xba\x51\xc3\x48\xe1\x69\x63\x72\xfe\x0a\xef\x21\x2f\xe5\x9d\xe2\x2b\x73\x57\xaa\x24\x57\x64\x08\x2e\xf9\x76\xf1\x59\x56\x4d\xd2\xd6\x45\xdf\x7f\x5a\xac\xee\x59\xa4\xb6\xf0\xd1\xaf\xb7\xc9\x17\xe2\x4f\xc4\x5d\x1e\x50\x5f\x78\x39\xf6\x55\xac\xf1\xa0\xc2\x3c\x91\x18\xa1\x79\x9d\x43\x7c\xe1\x57\xe7\x5e\x99\xf3\x73\x28\x77\xa6\x73\x54\x5e\xd4\x1c\x96\x99\x6f\x17\xe2\xe8\xce\x91\xa3\xff\xe4\x41\x49\x0c\xff\xd8\x41\x6a\xcb\xb1\x83\x6b\x49\x25\x82\xce\xc6\x0b\xa4\x52\xc1\x15\xcb\x2b\xa3\xe4\x1e\x89\x88\xef\x3f\x72\x4e\xc4\x9e\xdf\x32\x67\xc9\xa6\xea\x98\x45\x31\x31\xfc\x11\x51\x95\x1f\xcf\xb4\x2c\x5e\x1e\xd0\x5c\xf2\xa0\xff\xee\x22\xd9\xc0\x49\x85\xb7\x07\x9e\xc5\x64\x05\xd4\xe4\xf6\x0c\xb6\x44\x5e\x0a\xdc\xbd\xa1\x68\xc8\x27\xe4\x71\xe0\xf3\x4c\xa1\xa1\xdb\x01\x5d\x01\x5d\x2b\xa7\xb3\xfc\x7c\x25\x67\x98\xa5\xb6\xb2\x1a\xdd\xbf\x23\xd2\x0e\x43\x88\x73\xf7\xff\xc5\x83\x3c\x4e\x92\xfc\xa0\x17\xc7\x5b\x48\x6d\xac\x2b\x77\x1f\x29\x70\xf0\x70\xfd\x4b\x4b\xc1\xe7\x00\xd9\xc2\xcf\xe5\x8d\x2e\xa8\xa5\x47\x9c\x78\xb4\x6c\xde\x28\xcf\xc7\xee\xcb\x1f\x18\x1e\x3d\x18\x98\x61\x1f\x79\x57\x78\x28\x22\xd0\xcd\xc1\xf3\xa2\xcd\xd0\x1b\xbf\x47\x4e\x7c\xc7\x45\x59\xc6\x3e\x22\xce\x76\x95\x0e\xac\xb5\x9e\xc2\xce\x0f\x8a\x03\x59\xed\xae\x56\xce\xb9\x85\x26\x6c\x4d\x47\x0b\xc7\xee\x3c\x64\xef\xb4\x36\x45\x0c\x1c\x41\xe5\x6f\x5a\xc3\xf0\x20\x92\x1f\xf3\x72\xe3\x2d\xe2\x07\x68\x91\x6f\x27\x79\xe4\x35\x71\x1f\xc9\x3c\xe5\xe9\x0e\x92\x8a\x27\x4b\xba\x11\xd5\x0e\x8d\xbd\xe1\xc3\x46\x8f\x90\x7a\xdd\x8d\x56\x36\x38\xa1\xe2\xa6\x99\xba\x71\x00\xf1\x73\xd4\x19\x1d\x7c\x77\x8c\x7d\xc7\xa4\xdd\xf8\xf8\xc3\x03\xec\xab\xa6\x59\x26\xde\x2d\xbb\xd8\x2f\x4c\x02\x4c\xb7\xd7\x77\xb1\x3f\x9a\x8c\x30\x1d\x79\x7c\x18\x4e\xd1\x1f\x34\x5b\x72\x68\x10\xb5\x0c\xa4\x11\x57\x1a\xc1\x1f\x79\xd2\x5d\x17\x6f\x11\x3d\xae\xe3\x0b\xe2\x9f\x3a\x65\xfc\x9d\xe8\xc9\x8d\x07\xa5\x32\x7e\xa1\x08\x45\xc4\x49\x5b\x46\x27\x39\x07\x23\x4e\x97\x9b\x78\xd0\xcc\x1d\xbb\x37\x1d\x9c\x12\xaa\xb7\x0e\xdf\x5c\x74\x98\xb2\x56\x97\x0f\xf1\xcb\x57\xf5\x87\x1a\x8d\x1c\xbb\x2e\x3f\x4a\x33\xf7\x43\x34\xe2\x84\x4c\x2d\xc7\xa7\x9b\x11\x95\x2d\xb5\xe2\x5b\x5f\x22\x5b\x59\x42\xeb\xc3\xe5\x78\x1c\x54\x1e\x8e\x48\x2b\x84\x7e\x0c\xbc\x49\x6a\x29\xdd\x91\x7f\x4d\xf8\xc8\xd9\x4f\x3f\xd7\xfd\xc9\xc3\xd6\x96\x51\x8c\x6a\xa4\xe8\xbd\x18\x51\x69\x23\xaf\xb3\xe5\x2e\x44\x97\x3c\xc9\xcb\x86\x35\x88\xc9\x32\x0a\x52\xda\x4d\x88\xc5\x21\x8a\xd7\xb4\x24\x10\x1b\x4d\x26\x8c\xd0\x48\x42\xec\x1a\xa6\x78\x4b\x75\x90\xa3\x8f\x64\x84\xbc\x2a\x07\xf9\x62\x14\x16\x7f\x96\x47\x14\xb4\x50\xac\x7a\x29\x8e\x28\x3c\xf0\xc5\xe4\x2a\xa9\xe1\xf3\x50\xbb\x8b\xd4\x8c\x6b\xb4\x1a\x24\xb5\x69\x4a\x9b\xa8\xbc\x6c\x26\x6f\x6a\x11\x93\x37\xed\xc7\x54\xe6\x34\xe6\x45\x1c\xad\x0b\x60\xa8\x8a\x68\x9d\x20\x22\x36\xb5\x02\x31\x7a\xa6\xd8\x7c\x8d\x95\x88\x1b\xf2\x24\x57\xab\x85\x21\x16\x37\x4a\x96\xa8\x9c\x41\x3c\xeb\x37\x7e\xf6\xe4\x3e\xc4\x47\xcd\xe3\xbd\x94\x33\x11\xfb\x0e\x89\xda\xcb\x57\x73\xf4\xe1\x17\x1d\xc1\x43\x33\xb3\x9e\xf8\x75\x92\x5e\xa5\x17\x35\x06\x88\x7f\xb0\x92\x19\xff\xad\x4c\x7c\x30\xa5\x8e\x99\x07\xa6\xe3\x9f\x53\x1c\xc5\xa9\x23\x10\x79\x55\x00\xa6\xb6\x20\x1a\xf3\x09\x3c\x54\x7b\x85\x18\xa0\x2c\xd8\x30\xe9\x2a\x62\x42\xa0\xd0\xa6\xc9\xde\x88\x6b\x23\x45\x7e\x4c\x9c\x85\xb8\xeb\x90\xc8\x7c\xa5\x8d\x88\xb5\x6b\x44\x44\x94\x7c\x10\xaf\x2e\x13\xd9\xa4\x60\x85\xf8\x82\x47\x48\x5d\x41\x10\x71\xe0\x8b\x40\x60\x73\xd9\x20\xa9\x69\x75\xb8\x8a\x7e\xff\x36\xe6\xf9\xd3\x18\x3f\xd9\xbc\xa5\x7f\x8f\x83\x19\xe3\x9f\x52\xf6\x47\x1c\x96\x06\x30\xb9\x1c\x51\x63\x03\xcf\xb9\x49\x7c\x88\xce\x5f\xf9\x8c\x94\x2c\x10\xc3\xc2\xf9\xfc\xe5\xf7\x22\x26\xac\xe0\x1b\xa7\x90\x88\xb8\xea\x98\x80\xb5\xc2\x0e\xc4\x7c\xff\xd1\x3d\xf2\xbf\x10\xcb\xf7\x0a\xa6\xc9\xce\x47\x3c\xbd\x86\xff\x93\x88\x1d\x62\x13\x53\x47\xdc\xed\xf4\xdf\x3c\xc8\x80\x41\xba\xdf\x0b\xea\x98\xe5\x70\x50\xde\xca\xcb\x8b\x67\x06\xe2\xe4\xee\x18\x3e\xa1\x62\x44\xd5\xdc\xf5\x29\x62\x6d\x88\x93\xc7\x1c\xec\x97\xd8\x8d\x38\x69\x42\xeb\xc3\x71\xc7\x11\x95\x8b\xfb\xdd\xc5\x26\x21\xca\x4f\x44\xe4\x37\xef\x5e\xa3\x74\x03\x51\xa4\xe8\x79\xd8\x84\x71\x88\xa2\xa3\xee\x8e\x9b\x10\x80\x28\x7a\xaa\x65\xbb\xd2\x4f\x44\x51\x95\xf3\xb7\x94\xb4\x10\x45\xba\xfe\x17\x1f\xd3\x5f\xf9\x27\x0f\x91\xe9\x36\xdf\x35\xbc\x13\x51\xf9\x99\xc7\x5a\xbe\xf3\x88\x6a\x1a\xd1\x0e\xc2\x0f\x10\xa7\x98\xac\x9f\x31\x2e\x13\x51\x55\xf5\x50\xe5\x78\x5f\xc4\x49\xaf\xef\x0c\x49\x3e\x42\x54\xb1\x46\x1c\xc7\xf3\x2b\x51\xe9\x1c\xe2\x18\xf5\xb7\xc6\x13\x9b\x11\xc5\xfa\xdb\x4c\x95\xe7\x23\x4a\x6c\xbb\x25\xa5\xec\x87\x28\x91\x7e\xb9\x73\xe2\x5d\x44\xf1\x1d\xe7\x7c\x27\xc6\x20\x8a\xed\xfe\x53\x8f\x7f\x78\x10\xb5\x7b\xef\xd4\x28\x3f\xdc\x6c\x70\x7e\xa4\x12\xa2\xca\x03\x97\x45\xfc\xcd\x88\x5a\xbd\x51\x87\x45\xef\x21\x6a\xae\x5d\xf3\x7e\x7c\x02\xe2\x94\xe2\xc3\xc7\xe4\xc6\x20\xaa\x56\x3f\x7c\x26\x6b\x84\xa8\xaa\x85\x28\x99\xfd\xd9\x6f\x72\x0c\xa2\x64\xe0\x8b\x68\x95\x74\x44\xe9\x29\x77\x6f\xa9\xae\x42\x94\x69\xbf\x1a\xaf\xea\x8e\x28\xa3\xd0\x90\xa8\xba\x0f\x51\xfa\xc5\x89\x0a\x35\x03\x44\xe9\xdb\x7f\xf2\x20\xee\x38\xa8\xc6\x71\x90\x2f\x75\xc2\x67\x0e\x4e\x36\xd1\xee\x19\x25\x8e\xa8\xed\x6c\xdb\x20\x24\x80\xa8\xf3\x34\x34\x58\x6c\x11\xa2\x8e\x5a\x66\x9a\xcc\x55\x44\xcd\xdb\x55\x86\x8a\xc6\x88\x53\xca\xdb\x0c\x94\xbc\x10\xd5\xba\x11\xa5\x1f\x74\xa5\x6a\xd8\x20\x4e\xf0\x78\xd8\xa0\xf1\x1d\x7f\x4c\xcc\xba\xe6\xab\xe9\x86\xdf\x27\x3a\x34\xce\xd5\x34\x47\x54\xea\x3b\x79\x5f\xa3\x1b\x51\xd1\xb5\xfa\xb3\xc6\x03\x44\xf9\x6f\x7f\xce\x07\x1d\x07\x58\x29\x47\xe2\xa7\x32\x99\x32\x8b\x87\xb9\x21\x4e\x29\x51\xf3\xe5\xf0\x43\xc3\x03\x86\xbd\xc2\xfe\x88\x46\x27\x83\xa6\x49\xee\x42\x34\x38\x92\xb1\x4c\x49\x17\x51\x57\xab\x3a\x52\x45\x02\x71\x6a\xf0\x4b\x25\xd5\xa5\x5f\x42\xb4\x9e\xe3\xab\xc9\x8f\x9f\xc4\x69\xb7\x61\xd1\x14\x8d\xeb\x6f\x74\xc7\x62\xae\x86\xca\xf9\x61\xba\x2f\xb1\x70\x4a\xed\x89\x27\xba\x3f\xf0\x98\x5a\xc3\x21\x6b\xdd\x37\x78\x47\xc5\xa2\x6c\x93\x4e\x30\x7e\x9d\xf8\x84\xc4\x09\x0f\x50\x3d\x26\x74\x92\x71\x38\x3c\xf6\x1a\xe1\xa7\x0f\x05\xbf\x72\xd0\x54\x41\x6e\xec\x88\x00\x44\x3b\x33\x9d\x29\x42\xbb\x11\x6d\x35\xbc\x62\x64\x6f\x23\x9a\xfb\x2d\xbf\xa5\xe2\x8a\x68\x50\x70\x44\x4c\xab\x06\x51\x4f\xba\xa7\x51\xbb\xe2\x59\xa7\x21\x2f\xfb\x96\x71\x5a\x73\xa2\xb1\x3c\xfb\xae\x09\xef\xd9\x2e\x93\x64\xf6\x5b\x63\xdb\x9a\x89\xa6\x8b\x91\xdf\x70\x67\x85\xba\xf1\x1e\x0c\xd7\x59\x52\x1c\x62\xac\x8c\x9b\xb4\xc4\x77\xbe\x34\x6e\xc6\x7d\x1a\x39\x7f\x8c\x03\xe9\xc5\x84\x28\xbb\x76\x78\x1b\xf1\x4f\x31\xf9\x18\xdc\x73\x78\xe0\x1e\xe5\xf9\xfc\x0f\x10\xfd\x26\xd9\x8e\x95\xd7\xfc\x25\xef\x2c\x95\x60\xa5\x27\xfb\xe6\xa0\xf5\x60\x29\x58\x97\xb6\x75\x9b\x5f\x7a\x2e\xed\x1c\x7d\x89\xdf\x7a\x1c\x6b\x83\x9b\x7d\xed\x0d\x5b\x3d\xd6\x3b\xa7\x87\xe5\xc5\xb6\x9f\xd8\x06\xf6\xd6\x45\x32\x76\x17\xd8\xc9\xd6\x03\xdb\xf5\xec\xa4\xd9\xf7\xcd\x4a\xb7\x78\xd8\x6d\xc4\x61\xc6\x3d\xeb\xaa\xed\x36\xa2\xae\x01\x39\xc5\x4b\xd3\xfe\x30\x2c\x2a\x8f\x6b\x7f\x7d\x9e\x31\x76\x58\x96\xf1\x8b\xc4\x09\x54\x02\xf4\x84\x2e\xf2\xd5\x7b\x21\xeb\x70\x57\x3b\xe2\xf0\xcc\x12\x5b\xde\x7a\xc7\x00\xad\x2d\xdf\xfc\xb3\xab\x33\xbd\xcf\xb6\x2c\x09\x7b\x53\x7c\xdf\x7b\xf7\x60\x7b\xf8\xbd\x6d\xcb\x7d\x7e\x0c\xd5\x06\x5a\x64\x6f\xf4\xcd\x61\x69\xfa\x19\x66\x4d\xf6\xa9\x61\x35\xb8\x27\xa7\xed\xf2\xb1\x64\x6b\x38\xde\x5a\x6e\xe4\x55\xc6\x5e\x63\xb3\x7f\xc9\x1a\xcf\x20\xf6\x63\x73\x72\xab\x83\x27\x9d\x23\x47\x75\x02\x95\x47\xab\xc0\x23\xc6\x33\xf9\xb9\xb4\x46\xd5\x07\x77\xca\x87\x6e\xaf\xc9\xcf\x50\xb6\x13\xf7\xae\xfd\xb9\x5e\xc8\xcd\xd3\x3c\x39\x47\x7f\x69\xcc\x32\x97\xc8\x45\xcb\x7f\x2c\x74\x3d\xee\x13\x17\xb2\xf0\x7a\x6c\x7d\xbf\xd5\x42\xb7\x58\xd1\x98\xd3\x83\xe9\x51\xa7\xe7\xb5\x47\xff\x1c\xb2\x0f\x8d\x9a\xc3\x8e\xca\x63\x81\x7f\xe1\xec\xaa\xc8\x55\xac\xbd\x9e\xe3\x22\x0f\x84\x4f\x61\x0b\x39\xfb\x84\xf3\x86\xae\x67\x87\xdb\xad\x41\x14\x66\xf2\x60\xed\x98\xbc\xe8\x05\x93\x28\xd2\x1a\x58\x5d\xd9\xb4\x22\xf0\xcd\x95\xb4\x1b\xc6\xa9\xd0\x53\xaa\x52\x3a\x00\xf9\xbd\x55\x45\x16\x22\x5a\x4b\xe3\x5d\xf7\x2f\x9e\x6f\xe0\x27\x11\x5c\x51\x34\xf6\xd0\xc4\xe0\x32\xdf\xb5\xbb\x9e\xf7\xbe\x0d\x59\xeb\x5b\x9c\x3b\x71\xa8\xcf\xff\x81\x4f\x4f\x76\x26\x2b\xd3\x6b\xa3\xcf\xbb\x4c\x43\x56\xaf\xab\xb7\x6f\xc9\x0a\x03\xf6\x34\xc7\x46\xef\xd6\x64\x2f\xf6\x76\xeb\x7e\x6f\xa1\xc5\xa3\xd9\x6f\xcc\xce\x23\x1a\xf6\x33\xe3\xcf\xe8\x93\xe3\x42\xce\xff\x3b\x69\xc7\xd9\x9b\x02\xa7\x48\x0d\xb8\xe3\x35\x4d\x84\x37\x16\x0c\xde\x22\xf7\xb8\x56\xd8\xde\x3c\x38\x35\x48\xc6\x26\xe0\xcb\x55\x93\xf0\x03\x66\x73\x1c\xcb\x2f\xb7\x1e\x58\x67\x97\x6a\x19\x75\xc9\xe3\xc3\x2d\x7b\x59\x2b\xde\x53\x3f\xd8\xcb\xac\x17\x5b\x0b\x1e\xae\x65\x97\x5b\xaa\x5b\x17\xef\x5f\xc1\x7e\x61\x36\xd2\x46\xbe\x50\x0d\x05\x8d\xbd\x6c\xd4\xb7\xcd\x42\x43\x83\x05\xd6\xd3\x37\x5e\xc4\x05\xba\x8e\x88\xc1\xc5\x7f\x3e\xff\xfb\xd6\x43\x24\x3f\xfb\xf6\xe8\x06\x12\x27\x3b\x3d\xee\x3a\xa9\xd9\x5b\x5c\xf3\x88\xe8\x91\x25\xfa\x9a\xc4\xef\xe6\x94\x76\xeb\xca\xf6\xf0\x06\x3b\xd4\x7e\x38\xec\xdb\x3b\x31\xd9\x50\xea\x83\x5d\xc1\x1b\xf5\x19\xda\xba\x1f\xc6\xbf\x62\xab\x87\x4f\xc5\x67\xa3\xf0\x85\xca\x7c\xed\x98\x9b\xb7\xb0\x4d\x65\xb6\xce\xdd\xf3\xef\xb0\x55\xd5\x55\xf7\xde\x89\x4d\x78\x57\x95\x47\xb7\xac\xca\x10\xdf\x4c\x96\xd4\x3b\x5d\x7a\x0f\xdf\x4d\x16\xe1\xce\xff\xa7\xb4\x83\xa4\xf6\xdf\x1d\xf7\xf3\xa4\xf2\x6c\x5d\xcf\x1d\x52\xeb\xaf\xac\xfb\x39\xa9\xd8\x99\x73\xa2\x9b\xcc\x4f\x62\x40\x3f\xa9\x48\xe7\xcc\x39\xff\x1f\x07\x30\xcc\x43\xb4\x1d\x12\xe9\xd2\x58\x8e\x98\x55\x3c\x2e\x7f\x72\x31\xe2\x65\x57\xc9\x2d\xca\x0f\x38\xf6\x7c\xac\xb4\xd2\xd3\x2f\xd3\x10\xc7\xd8\x4c\x28\x79\x21\x85\x38\xf6\xfa\x84\xe8\xbb\xf7\x10\xc7\x7e\x9b\x38\xf2\xea\x57\x44\xd1\xab\x13\x3d\x1a\x2e\x22\x8a\x76\x7e\xeb\xa5\xe3\xff\xc8\xa0\x89\xcc\x4f\x63\xe1\x7d\x92\x2f\x74\xb0\xaf\x93\x74\x5c\xdf\x69\xd6\x4b\x02\x78\xab\x99\xce\xc7\x5c\xfb\x6f\xf8\x92\xa2\x86\x39\xa2\x89\x26\x7f\xaa\xf2\x43\xc4\xf8\x78\xc1\x9d\x4a\xc6\x88\xfb\x27\x08\x57\xc8\x1f\x46\xbc\x26\x2b\x24\x21\xe7\x8f\xf8\xe9\x2c\x7f\xba\x50\x1e\x93\x01\x7e\xf1\xe7\x63\x0e\x0e\x3f\xf6\x86\x64\xb8\x0c\x1b\xdb\x76\x99\x83\x6d\xf3\xe9\xf3\x37\x59\x3f\x22\xeb\xe0\xc8\xb9\x37\xa4\x46\x6a\x91\xcd\x2f\x52\x81\x70\xfd\x6e\xc6\x1f\xb6\x81\xe1\x61\x9b\x29\x6a\xdd\x63\xec\x7f\x3e\xa2\xf6\x59\x9e\x45\x72\x5f\x11\x43\x3d\x46\x89\xcb\xdd\x40\x5c\xb7\x97\x5f\x4d\xa6\x17\xb1\x7c\x3f\xdf\x55\xe9\x57\x88\x17\xd6\xf0\x1e\x94\x09\x45\x7c\xd9\xc7\x1b\x2e\xc4\x21\x16\x2b\xe0\x8f\xcc\xf4\x5f\x5b\x38\xd8\x6c\xfe\x88\xf0\xdf\xa3\xa5\xef\xc9\xb9\xe5\xc0\x3e\x36\xa9\x7c\xba\x79\x1d\xfd\xad\xa5\x1f\x29\x86\x32\xf7\xe8\x6c\x6b\x18\xf9\xbf\x28\xca\x6b\x21\x4e\xde\x3b\x7c\x2f\xaf\x2a\xa2\x95\x1e\x00\xbf\x2a\xdd\x71\x46\xc6\x23\x66\x98\x01\x40\x30\x62\x7e\x1b\x00\xcf\x4c\xc4\x1a\x1b\x00\x1e\x1e\xc4\xe6\x04\x80\x91\x45\x88\xaf\xd3\x7e\xeb\x73\x6a\x5f\x37\x59\x17\x65\x4c\x9e\xd2\x56\x26\x4f\x7a\x39\xe3\x17\x8b\xde\xc5\x8c\x03\x53\x79\xd7\x94\x89\x8f\x29\x58\x51\xe4\x69\x41\x14\x7e\x03\x30\x8c\x07\x51\x87\xd9\x71\x7c\x1e\x02\xc0\x34\xc4\xf9\xbc\xf4\xf3\x0a\x6f\x00\x08\x42\xdc\xe6\x07\x00\x25\x88\x65\xe7\xe9\xcf\xcf\xf2\x73\x16\x3e\xe2\x0d\x2e\x0f\x82\xff\xcd\x83\xb8\x68\x96\xc0\xfc\x1e\xe9\xc3\x33\x4c\x2c\x2a\x96\x83\x23\x94\x56\x2f\x26\xfc\x40\xfc\xc0\x0b\x0e\x8e\x5c\x7d\x35\x94\xfc\xfc\xf0\xe7\xdb\x00\x83\x4c\x6f\xb3\x8f\x96\x14\x3b\x98\x1e\x15\xf7\x2a\x28\x5e\x67\x7a\x5c\x5d\x68\xa1\xc8\xf9\xcf\xa9\xe3\x6f\xfe\xc1\xb5\xff\x5a\x4e\x7f\xfa\x45\x86\xf1\x38\xfb\x11\xb9\x41\x91\x6b\x89\x3d\x7c\xb1\x5a\x8a\x83\xa3\x57\x94\x95\x11\xbf\xc9\x98\xeb\x44\x26\x8f\xf8\x8f\x32\x80\xbe\x6e\x20\x37\x23\xdf\x98\xd1\xef\x68\x73\x80\x33\x1c\xbc\xed\x43\x3f\x5f\x16\xa6\x58\xbf\x02\x8e\x73\xf5\x70\x9c\xf6\xf7\xf3\x73\xed\x1e\xf5\x43\x80\x87\x0e\x89\x3f\xf0\xf8\xda\xfa\x12\x9e\xe8\x12\x76\x8f\x83\x22\x87\x56\xe5\x73\x50\xda\xaa\xe2\x17\x07\xc7\x4e\x6a\xdd\x45\x7e\x9e\x86\x61\x00\x9f\xfd\x78\xc9\x4c\x76\x28\xf1\x7d\xe0\xe0\xfd\x15\xa3\x7c\x89\xfc\x3d\xd2\xf7\x11\xf9\x34\x1a\x3f\xf0\x55\x93\x75\x31\x5e\x50\x86\xab\x07\x77\x3e\x34\xf6\xff\x69\xff\x01\xe4\x49\x9e\xcc\xb0\xc4\xc9\x44\x8f\x31\xe6\x66\x44\xae\xec\xd4\x10\x9b\x91\x6d\x88\xb2\x7a\x19\x77\x79\xfd\x10\xa5\xbf\x55\x9a\xf0\x76\x21\x4a\x1d\x7f\x20\xc2\xb3\x08\x51\x82\xdc\x0c\xe8\xbc\x27\xb3\x1f\x91\x6f\xf7\xdd\xb5\x72\x71\x88\xa3\xdf\x37\x2f\x97\xcf\x46\x14\xca\xae\xbf\x2e\x9b\x83\x28\x70\xfe\xc4\x7a\x39\x73\xc4\xd1\x89\x55\x12\x72\x27\x11\x47\x9f\xfa\x73\x1c\x26\x0f\xff\xd3\xfe\x73\x51\xd4\x54\x9e\xe8\x21\x37\x57\x5f\x7f\x84\x0a\xa2\x52\xd1\x74\x1b\xde\xa3\x88\x8a\x7d\x2b\xaa\x46\x87\x21\xca\xe7\x1d\x54\x15\x2c\x41\x94\x3b\xfe\x2c\x75\x74\x4f\x6f\x81\xc2\x1b\x44\xa1\x75\xf7\xb3\x26\xee\x44\x14\x5f\x7a\x85\x7f\xd2\x47\x44\xc9\xcc\x3a\x1d\xe5\x1d\x88\x12\xe2\xb5\xb7\x26\x5e\x46\x14\x9b\x79\xd0\x6d\x62\x34\xa2\xa8\xd3\x01\x85\x89\xc7\x11\xc7\x7e\xff\x2f\xff\x00\x18\xf9\x80\x83\x42\x09\x40\xd6\xb1\xd2\x52\xc1\x97\x1c\x54\x6b\x50\x49\xe5\xb9\x80\xa8\x31\xce\xd5\x54\x50\x01\x51\x7d\xec\x32\x45\xd1\xa0\xa1\x5f\x93\x47\x55\x3e\x1d\xc7\xff\xe5\xee\x64\xd7\x67\xe7\xa4\xd7\x3d\x1b\xaf\x6e\x82\x28\x7f\xfb\x62\x96\xa6\x04\xe2\x04\xc9\x13\x86\x9a\xcd\x88\x4a\xfe\x87\x77\x6b\x4d\x47\x54\xac\xdd\x7f\x42\x6b\x36\xa2\xfc\x87\x5d\x5f\xb4\xa6\x21\xca\xf9\xe7\xa3\x86\x37\xa2\x14\x99\x3b\xb9\x60\x2a\x9f\x87\xcc\x0b\xdf\x46\xfa\x56\x4d\x1a\xa4\x68\xc8\xbc\x65\xb6\x0f\xc5\x1e\x03\xb0\x6a\xcc\x5b\x4c\x4f\x89\xfa\xbc\xbd\x69\xfa\x7a\xde\x1a\xa5\x8f\x8f\x17\x18\x39\x15\x8e\xd7\x0c\xbf\x99\xa6\xbf\xeb\xc6\x7b\xbd\xcd\x17\xb5\x0d\x83\x71\xc2\xb4\x8e\x43\xf7\x8d\xb3\xd0\x5b\x37\xa3\xf8\xb8\x49\x26\x26\x68\x27\xee\xec\x36\xbe\x88\xfb\x35\xb2\xb7\xf6\x1b\xe7\xe1\x79\xb5\x0f\xd9\x17\x8d\x4d\xb1\x4d\x65\x46\xe6\x5c\xc3\x87\x88\x13\xa7\x71\xe4\x0b\x32\xe3\x40\xe5\xa9\xca\x50\xb4\x1e\x4e\x71\x3a\xa9\x98\xde\x57\x17\x41\xce\x7d\xcf\x1e\x46\xec\x98\xf2\x58\xb4\xa8\x69\xc0\x5f\xca\xcf\x4d\xe7\x5e\x6d\x89\xe7\x9b\x35\xb1\x56\x5f\x4a\xc4\x5d\x1e\x9c\x3d\xed\xf4\x64\x37\x8f\xb3\xc1\xf7\x17\x2e\x2b\x37\x5b\xb9\xa8\xb3\x17\xda\x86\xad\xee\x72\x55\x60\x37\x5a\xdc\x5c\x71\xc9\x65\x16\xf2\x19\x63\x4a\xba\x53\x01\xda\xeb\x2f\x5d\xdc\xe5\x94\x85\x8b\x74\x9e\x2f\x34\xb1\x7f\x8b\x87\x34\x0e\xfc\x96\xaf\x58\xfb\x37\x0f\x89\x20\xe3\xf0\x69\xe9\x12\x52\x01\xf3\x51\x3e\xed\x3c\x7e\xde\x64\x8d\xbb\x4c\x0d\xff\xd2\x92\xbb\xa9\xcb\xec\x1a\x34\x22\xd6\xea\x2e\xa8\x5e\xe8\xe5\x96\x9c\xf8\x76\xee\xfd\xf2\xb1\xfe\x56\x31\x27\xa3\x54\x3a\x8d\x02\xbe\x46\x69\xcf\x8a\x66\x2d\xf1\x56\xe4\xf2\x9d\x30\xdf\x90\xd5\xec\xd5\x36\x73\x82\x3f\xce\xf4\x63\xdf\x36\x0f\x0d\x1e\x1d\xf0\x11\xf9\x8c\xe3\x03\x96\x4e\xbf\x8c\x01\x7a\x02\x88\x62\x05\x7f\x3f\x3f\xad\xe8\xfb\xde\x8b\x56\xfc\xbe\x6b\x93\x43\xfe\x51\x57\xb4\x8b\xf8\x3d\x0e\x0c\x95\x8e\xe4\x13\x04\x58\xb7\x7a\xef\x11\xfd\x04\x05\x9f\x39\x87\xb6\x77\x44\x7e\xb3\xbc\x3f\xfd\xd2\xb6\xe1\x7b\x2e\x3b\xf2\xbb\x8b\xe7\x2c\x6a\x0b\x70\x52\x70\xdd\xb0\xe1\x2e\x7b\x8b\x8d\x8c\xab\xe6\xaa\x87\xec\x57\x66\x1f\x5c\xce\xa4\xb6\xa1\x9c\xd1\x0b\xd7\x11\x49\x43\xe8\xac\x9f\xef\x2a\x1e\x3f\x1d\x17\xe9\x2a\x3b\x2f\x9d\x7f\x02\xf7\x68\x99\x21\x1a\x07\xfd\x29\xff\xa3\x4e\x16\xf1\x4f\xdd\xbd\x5d\x40\xce\xff\x75\x9f\xcb\x89\xfc\x92\x8e\x5a\x92\xaf\xbc\xbe\xbb\x8e\xf8\xef\x16\x08\x35\xb4\x28\xef\x1f\x33\xcc\x63\xf5\x59\x87\x19\xba\xea\x5d\x96\x6e\xa7\x5e\xe4\xa3\x0e\x9f\x61\xe1\x09\xf6\xbd\xad\x3a\x4f\x0c\x65\x8e\x78\xe1\x76\xcd\x1a\x23\x85\x03\xa7\xf1\x90\x86\xb6\x91\x40\xa1\x3f\x5e\x57\xf3\x37\x0a\xcc\x0d\xc1\x17\x2a\xb3\x8c\xba\x37\x34\xe0\xe7\x49\xad\x46\x75\x59\x41\x88\x13\xdf\x22\x86\x91\x38\x50\x4f\x27\xad\x15\x7a\x0f\x8b\xc8\x3d\xad\x73\xf3\xaa\x89\x7f\xac\xbc\xe8\x2c\xe1\x3f\xb9\x96\x57\x48\xcd\xf2\x25\xda\xad\x44\x0f\x3f\xb3\x36\xd3\x31\xcb\x00\x8c\x9a\x9e\xa4\x38\x9d\x1f\x37\x7a\xca\xed\xc7\xfd\x1b\xda\xa4\x47\x4c\x8a\x7e\xec\x78\xa3\x56\xaa\x64\x92\xc2\x9d\x53\x88\x12\x27\x26\x7d\x6f\x8a\x45\x1c\xb7\x59\xe5\xe6\xa9\x57\x88\xe3\x9d\x55\xfc\xaa\x5e\x20\x8e\x6b\x50\xf5\x2a\x1d\x8f\x38\xee\xab\xca\x8d\xdd\x79\x88\x12\x0e\xdf\x6b\x68\x0f\xdf\x47\xb9\x94\x87\x36\xe2\x51\xc2\xc3\x0e\x1b\x5c\x20\x5d\x0b\x77\x7e\xbf\x71\x00\x48\x6f\x81\xc7\x44\xaf\x39\x89\xb4\x43\x85\xf9\x8d\x2f\xa4\x62\xaa\x22\xf6\xff\xd2\x99\x3f\xb2\x4c\xea\xe2\x90\x52\x0a\x6b\x44\x85\xa4\x06\xeb\xf1\x85\x3c\x80\xb1\x86\xbf\x96\x70\xd6\xde\x18\xb9\xd7\xc4\x32\x0b\xba\x3e\x22\xb9\x8c\x02\x67\xae\x93\x18\xba\x8c\x64\x43\x38\x22\xdf\x70\x7e\xeb\x53\x73\x38\x9f\x9f\x76\xec\x23\x95\xe2\x2f\x25\x9d\x22\xbd\x17\x6a\x44\x2e\x93\xce\x08\x7b\x9a\xef\x91\x3c\xee\x0d\xf8\x9c\xdc\x67\x4b\x9a\xf7\x9e\xf8\xef\x82\x12\xfb\x48\xa5\x52\x1d\x26\x3f\x57\xb0\x19\x51\xfa\x2b\x00\xff\x4c\xc4\x70\x2d\x3a\xc3\x3b\xc3\x01\x86\x4d\x40\xbc\x99\xc8\xd8\x75\xc2\x24\xfb\x98\x1b\xdf\x5d\x31\x14\x1f\xe7\x50\xbc\x45\x3c\x4e\xcd\x29\x27\xc9\x39\xe5\x98\xc7\x55\xd2\x0b\x61\xdf\xf2\x47\xa4\xd7\x43\xce\xc2\x97\xc4\x6f\x96\x0e\xbd\xa4\x92\x70\x2c\xe9\x8c\x09\xe0\xfe\x98\xfe\xb5\xaa\xe0\xef\x37\x4d\xe8\x34\x45\x97\x4f\x8c\x9d\x77\xa3\x78\x90\x39\x09\xb5\x30\x91\xd0\xee\xd9\x7f\xf2\x9f\x6f\x4c\x04\xb4\xeb\x15\xb1\x33\x51\x94\x07\x97\xcf\x7a\x46\xe4\xed\xf8\xf8\x81\xf8\xc5\xd6\x56\xf5\x91\x4a\xcf\x89\xcc\x3d\xba\x10\xc6\x1f\x63\x33\x86\xa2\x62\xed\x6f\x3d\x46\x33\x11\x78\x73\xc6\x13\x4c\xab\x77\x23\x6e\x62\x76\x82\x72\x86\x97\x50\x0f\x2c\xe2\xf3\xed\x7f\xea\x43\xb1\xb2\xf5\x19\xe1\x9f\x85\x9f\x3e\x11\xff\xe0\x66\x6d\xda\xa9\x86\xeb\x8f\xe2\xc6\xe5\xbc\x99\x7c\x6d\xfd\x67\x14\xa5\x7b\x7e\xeb\x31\x2a\x8c\xe2\xb4\x54\x8a\x81\x7a\x14\x97\x4e\xf9\x5b\x9f\x12\x26\x53\xef\xcc\x6b\x8a\xb7\x9b\x29\x7e\x78\xcb\xd8\x7d\xcb\xbf\xf9\xc7\xbf\x79\x10\xd7\x1e\x73\x4e\x7a\x1c\x8c\x66\x7e\x3f\xd3\x85\xe2\xfe\x3c\x86\x53\x30\x7c\xa9\xfb\x2b\xc0\xf7\x53\xf4\xdf\x2f\x99\xbf\x7d\xc4\xf4\xfe\xbd\xc9\x70\x9d\x4b\xba\x14\xeb\xaa\x7e\xf3\xa0\x7f\xf3\x30\x9d\x05\x7f\xa3\xe1\xb0\xbf\x79\xdb\xac\x4f\x14\x57\x31\x1c\xeb\x00\xc3\x97\x9a\xeb\x28\x7e\x69\xe5\xec\x03\xf4\xdf\xed\xcc\xef\xde\x61\x7a\x84\x35\xef\xa3\xd8\xc8\xc8\x3e\x99\xf9\x5b\x8f\x7f\xf2\x61\xbe\x50\x54\x57\xa6\xa8\x16\xff\x37\x2f\xb3\x7d\x41\x31\x74\x3b\xc5\x74\x46\x2f\xce\x78\x73\xf0\x1a\x8b\xe2\xc0\x27\x80\xb7\xa5\xf4\xdf\x0f\x35\xe1\x2f\x1e\x78\xbe\x86\xe2\x99\x8b\x14\x6b\x5c\x7e\xeb\xc1\x1d\x07\xae\x5c\xf9\x37\x14\x65\x46\x53\x9c\x58\x09\x7f\xe4\x53\x01\x04\x84\x50\x5c\xce\xfe\x5b\x0f\xce\x0e\x37\x74\x9d\xfe\xbb\xc3\x83\xe2\x0d\xa6\x97\x60\xd3\xc4\x7f\xc9\xdf\xca\x61\xf2\x00\x15\xcd\xbf\xf5\xe0\xf2\x0f\x69\xe6\xb9\xc7\x58\x50\x14\x84\xbf\x79\x09\xf7\xf7\x3c\x99\xb9\x5d\x2a\x01\x80\x83\x00\x25\xb3\x00\x58\x72\x00\xf7\x6e\x02\x7c\x51\x85\x93\x9c\xff\xef\x6e\xdd\x68\x12\x99\x3f\x9f\x27\x48\x3c\x9d\xa7\x16\x0b\x92\x1d\xa7\xea\x8b\x00\x89\x91\x96\x8a\x08\x64\x72\x70\xaf\x05\x9f\x39\x57\x0f\x2e\x0f\xfc\xdb\xfe\x73\x71\x18\x63\xff\x46\x87\xc9\xa6\x72\x70\x4c\x8b\x5d\x1e\xc0\x40\x8c\xd8\xf9\x45\x77\x00\xba\xdb\xc7\x3f\xdd\xbb\x7a\x84\xca\x2b\x31\x29\xe9\x1b\x0b\x78\x95\x9f\xd6\x49\x5f\x40\xe4\x4d\x6c\x94\x52\xf0\x46\x14\x5e\x70\xc4\x54\x71\x2a\xa2\xf0\xbd\xb2\x12\x45\x5d\x44\x61\x87\x3d\x6b\x14\x1d\x10\x85\x0e\x6e\xf7\x56\x14\x42\x14\xbc\xbb\x55\x59\xfe\x1d\xe2\x68\x83\xff\x5b\x3e\xed\x0d\x84\x28\xcf\xbc\xfd\x13\x9f\x8f\x7a\x0c\xf0\x51\x5d\x7d\x83\xde\x37\xfe\xe3\x8f\x2f\x6a\xea\x85\x37\x8a\xad\xbf\x56\xa7\x11\xb1\xf9\xb5\xcc\xb1\xf3\x67\xd4\x1b\xeb\x13\x15\x7e\x9c\x95\x52\x67\xf5\x46\x2b\x7c\x2f\x8f\xd1\x2a\x46\x54\x54\x2e\x18\xa1\xd5\x81\x28\xb7\x6d\xeb\x6e\xad\xbb\x88\x32\xdf\xd6\x5d\xe4\xd8\x56\xa9\x05\xab\x1f\x6a\x28\x20\x8e\x73\x5c\xe1\x37\x45\x1e\x51\x5c\xfe\xbf\xf2\x25\xde\x50\x9c\x4a\x3a\x14\xfc\xcc\xb5\x26\xfb\x78\xe7\x23\x77\xd2\x99\xfe\x46\x88\x77\xd6\x84\x05\x02\xe3\x4e\x9a\x38\x6f\x77\x0b\x9e\xe0\x5b\x26\x63\xff\x21\xd5\x5d\xb3\xa1\x20\xd4\xc6\xec\x70\xe9\xb4\xe8\xad\xeb\xac\xa6\x76\xcc\xd6\xbf\xbc\x26\xdd\xc6\x17\xe7\xeb\x2a\xa5\xa6\x5b\xab\x60\x8d\xc6\x98\x25\x71\x96\x3d\xf8\x58\x75\x58\xc2\x01\xf3\x36\x1c\x9a\x78\x39\xee\x8c\x69\x01\xa2\xe2\xb0\xb9\x3b\x4d\x66\x21\xca\xa9\xfc\x21\x9f\xf1\x4b\x99\x10\xab\xf0\x25\xd1\x9b\xec\x8a\x8f\xb7\xcc\x22\x35\xcd\x2f\x85\xd3\x0e\x56\x35\x91\x4b\xbe\x89\xe9\x00\xec\xc8\x88\x5f\x6f\xfa\x5e\xae\x63\xc5\xc4\xa8\xa0\xe8\x19\x46\x97\x63\x0b\xc3\x85\x0b\x8f\x59\xf5\x47\xae\x0f\x7e\x70\x6b\x8b\xed\x83\x90\xbe\xe0\xd9\xec\x2a\xcb\xc3\x41\x32\x01\xa7\x50\xd6\xf0\xf6\x8c\x83\xd3\xd7\x62\xb8\xae\x85\x2f\xcb\x27\x09\xf7\x68\xe4\x78\xef\xf2\x1c\x8e\xd7\x54\x4e\x78\x99\xba\x6e\xc2\xee\x89\xf5\x88\x63\x35\x99\x5d\x99\x58\x81\x1e\x4d\xda\xe1\xe0\x51\x71\x02\x91\x7f\xfe\x74\x3a\x3d\xff\x6f\xa7\x1d\x2f\x72\xcd\xb7\x11\xeb\x91\x7c\x35\x37\x6f\x8a\x9d\xe8\xea\xe0\xd0\xec\x35\x81\x97\x34\x7b\xdd\xad\xd6\xfe\xcc\x19\xd4\xab\xb1\x6b\xca\x0a\x6d\x0e\x99\xb6\xdf\xc6\x2f\xd3\x1c\xd7\x6b\xcb\xd9\xc8\x25\x97\x63\xfd\x94\x00\xab\x67\x8b\xb7\xe3\x4b\x95\x30\xab\x1f\x71\xfe\xf8\x7d\x92\xb0\xd5\x92\xe8\x1b\x88\x13\x12\x2c\x4e\x47\xae\x41\x94\x6f\x47\x34\x22\xcf\xf9\xe5\x2e\xed\xf9\xf0\xd8\x36\x85\x74\xda\x69\xf8\xbe\x81\xf0\x90\x83\x5b\x68\x87\x89\xfc\x79\xfb\x88\x75\x48\x39\x7b\x90\xe4\xc9\x84\x86\xd7\xbc\x90\xba\x30\xe2\x95\xf5\xb3\x2a\x11\xb7\x7d\x32\xd9\xd3\x8e\x1e\x7c\xb4\x6e\x8c\x42\xad\xa6\x5d\xc5\xe7\xf3\x4f\x14\x7a\xa7\xdc\xa8\xd0\x60\x27\xcb\xf4\x6a\x8e\x2e\xbc\x8e\x28\xc3\xa3\x91\xb3\xf5\x10\xe2\xf8\xc7\x9a\x59\xeb\x05\x11\xc7\xdb\x68\x6e\x5e\xd5\x8d\x28\x29\xab\x31\xb8\x7c\x06\xa2\x84\x6c\xdf\x06\x46\xfe\xeb\x34\xf2\x5e\x5c\x10\xcf\x21\x79\x3a\xd5\x9d\x7b\xc9\x8c\x15\x34\x51\xff\xd0\xea\x5c\xda\x39\x2c\x7a\x6f\x03\xb1\xa2\x16\x51\x2d\x33\x89\xdd\x0d\xb9\xb6\xd1\xf4\x94\xc0\x76\xf9\xa2\x96\x9a\x54\xaf\xd1\x19\xd2\xda\x57\x1f\x9c\x5e\xc9\x7f\x5a\x2a\xe2\xaa\xe6\xcf\x1d\x23\xef\x48\xa7\x9f\x3e\x8d\x38\xea\xbb\x4c\x5e\x55\x0f\x22\x5f\x9a\x8c\x49\xa9\x14\x22\x6f\xad\x5c\xc6\xae\xed\x88\x02\x72\x72\x4a\x79\xbc\x88\xfc\x26\xcf\x42\xd3\x89\x15\x6a\xea\xc9\x27\xdd\xf7\x8e\xe4\x96\x11\xff\xc3\xee\x38\x1a\x27\xe3\xf2\xc0\x44\xdd\x2b\xc4\x1f\x11\x10\xdc\x4a\xf8\xe3\xd4\xfd\xcf\x48\x1c\x95\xff\xe0\x1b\x59\xc5\x45\x00\xc3\x8a\xde\x28\x46\x93\x9e\x03\xaf\xbf\x57\x92\x1e\x36\xaf\x72\xdf\x13\x0f\xe4\x03\x16\x5d\x83\x2d\x4c\x06\x4b\x83\x25\xc5\xe3\xdd\x14\x0f\x55\x52\x9b\x40\x3b\x9c\x1c\x35\xab\x20\x95\xff\x8b\x5f\x9d\x26\xf9\xda\x39\xbb\xa9\x5f\x2e\xed\x09\x8d\xd7\x45\x3f\xa0\x7e\x1a\x8f\x49\x9d\xa4\xe7\x8e\xca\xb4\x1e\xa6\xa6\x3e\xbb\x75\x4c\x38\xc5\x99\xc4\xb3\xc4\x66\xed\x89\xa7\xf8\x8c\x74\x6f\xea\x65\x3c\x15\x9d\x4c\x06\xf6\xfd\x7a\x8a\xd7\x98\x08\xd7\x05\x92\x89\x73\x6a\xdf\x61\xc2\xb7\x4a\xf6\xd4\x11\xaf\x48\xde\xad\xab\xa4\x57\x4e\x16\xef\x3d\xc2\x03\x17\xab\xb7\x93\x6f\x0d\x6b\x78\x47\x7a\x1f\xd8\x0d\xfb\x4a\xfc\x57\x8a\x55\xff\xe5\x41\x6e\xd7\x28\x66\xf2\x51\x3c\xc1\xd8\xfb\x2e\xc2\x28\xd8\xcc\xf3\xf7\x30\x11\xbf\x17\x1f\x28\x3e\x24\x99\xe0\x15\x71\x0d\xc4\x0f\x53\x98\x78\x93\x8c\xc3\xfa\x15\x8f\xce\x00\xe9\x08\x42\x3b\xdd\xc4\xac\xed\x21\xf7\x2d\xfd\x3b\x7f\x91\x9f\x9b\x31\x71\x31\x99\xd8\xff\xf2\x20\x6b\x26\x02\x9d\xe0\x4d\x71\x97\x27\x45\xda\xaf\x1c\xf1\x49\x00\x45\x24\xbd\x96\x86\x1c\xe9\x37\x7c\x22\xb9\x1f\x45\x46\xad\xe4\xbd\xdc\x12\xfb\x9c\x74\x12\x59\x6d\xf2\x91\x74\x30\x49\x84\x1f\xa4\x87\x5e\x94\x28\xfd\x6d\x2e\x1f\xd4\xf3\xa4\x28\x6e\xfa\x5b\x0f\xfe\x46\x8a\x46\xae\x14\xc3\x18\xbd\x56\x33\x3b\xf2\x3e\xe6\xf7\x4e\x32\x1e\xda\xdb\xcc\xcd\x89\x6e\xe6\x06\xe5\xff\xc5\x3f\xb8\x7e\x98\x7f\xf3\x20\xef\xc5\x14\xe7\x32\x76\x38\x93\x63\x77\x6f\x00\xec\xeb\xe0\x9c\x7b\x01\x2e\x36\x01\x0c\x9e\x07\xe8\x2a\x02\xf8\xcc\x70\x91\x36\xb3\xbf\xf9\x0f\xd7\xff\xc2\xe5\x3f\x27\x96\xfe\xb6\xb7\x5c\x1e\xa6\xd7\xfd\xb7\x5d\x9d\x7a\x8d\xa2\x59\xe9\xbf\x78\xd0\x07\x2a\x7f\xd5\x21\x80\xfe\x6c\x80\xe2\x61\x00\x3f\x37\x00\x5c\x88\x02\xe8\xeb\x04\x78\xb3\x1d\xe0\x7d\x16\xfd\x5d\xae\x1f\xea\x3f\xfc\x67\x03\xc5\xea\xce\xff\xf2\x0f\xc6\xff\xf3\x8f\xfd\xe5\xa2\xd6\x04\x8a\x76\x47\x7f\xf3\x20\x76\x09\xc0\x4a\x1f\x80\xef\x17\x00\xf6\xdc\xe3\xbc\x15\x00\x0d\x7d\x00\x9f\xe3\x01\xde\xee\xe1\xbc\x1d\xcc\x38\x0c\xfb\x5b\xfe\x29\xb1\xbf\xe5\x97\xf7\xfd\x97\x7f\x70\xfd\x0f\x5c\xbe\x21\xf9\xf6\x6f\x7d\xb8\xe3\xc2\xe1\x41\x3f\xc3\x00\x92\x73\x00\x3e\x17\x01\xec\x72\x06\x78\xbf\x0f\xa0\xe1\x0e\xc0\x9b\x1c\x80\x77\x22\xbf\xf9\x68\xd3\xec\x7f\x3d\xbf\x06\xc3\x9d\xee\x51\x2c\xfa\xfe\x5b\x0f\xae\x1c\x09\xc6\x2f\x35\x8a\xe1\xa5\xa3\x98\xef\x10\x63\xfa\xd0\xaa\x19\x01\x0c\xb9\xd2\x9e\xf1\x9f\xe7\xd3\x3e\xf9\x6f\xec\x00\xf2\x1f\x01\xbc\xa8\x01\xa8\xdf\x0d\xd0\xde\x0e\xf0\x61\xf3\x6f\x1e\x78\x92\xe1\xb0\x87\x18\x7e\x56\xc2\xf0\xc0\x5d\x65\x14\xb7\x3d\xff\xad\x07\x57\x0e\xfc\x4f\x1e\xc2\xa0\x0b\x80\xc4\x29\x80\xde\xf1\x00\x66\xa7\x00\x5e\xdf\x05\x88\xfa\x04\xf0\x94\x05\x90\x73\x1b\xe0\xde\xec\xe1\x9f\xce\x36\x00\xdc\xf8\x35\x32\xe6\xdd\x08\x80\xba\x8d\xfc\x02\x9c\xbf\xad\x1c\x23\x30\x93\x83\x7b\x6e\xf1\xf9\x71\x30\x7f\x88\x97\xec\x3c\x9b\x2e\xf0\x06\x71\x70\x6d\x19\xdc\xe7\xea\xf1\xff\x95\x8f\xc3\x48\x87\x8d\x9e\xf7\x02\xa4\x23\xcf\x53\xc9\xf1\xb7\x34\x4e\x02\x5c\x3b\x2d\xfb\x76\xc6\x9b\x51\xaf\x1a\xcc\xe4\xc3\x32\x65\x04\xc7\x1e\xcf\x93\x57\x3a\xb2\x4c\xf8\x75\x55\x94\xbc\xf2\xd3\xbe\x31\xea\x07\x74\x14\x83\x10\x85\x75\xb7\xba\x29\xcd\x43\x14\x3a\xb7\x8e\x4f\xa1\x19\x71\xb4\x43\xfa\x72\x85\xcd\x88\x02\x11\x29\xf6\x0a\xfe\x88\xfc\x45\x4b\x46\xcb\x54\x23\xf2\x0c\xfd\x57\xee\x70\xb2\x9f\xff\xfa\x26\x4d\xf6\x93\xce\xd7\x5a\xc4\xdf\x70\xab\xd3\x98\xdc\xd3\xae\x9f\x64\x85\x52\x4b\x87\x7d\xad\xb8\x6a\x36\xda\x96\x4f\x62\x7c\xa1\xb5\xc9\xcc\x84\x62\xb9\xcc\xcd\x7a\x86\xa7\xf7\x2e\x9b\x50\xbe\x66\xb8\xfe\xbb\x9b\xe3\x94\x85\x32\xac\x0c\x9e\x23\x2a\x8d\x5f\x9c\x6b\x38\x1b\x51\x2e\x7f\xbe\xe0\x34\x8e\xbd\x2d\x9f\xcb\xa3\x1b\x86\x28\xf1\x2d\x42\x5f\x47\x12\x51\x2c\x3a\xac\x48\x23\x00\x71\xcc\xd1\xdf\xf2\xf9\xc8\xae\xd3\x97\xa0\x46\xf2\xa2\xdb\xdb\xed\x88\xff\xa3\x79\xa5\x0f\x89\x43\x1d\xaf\x09\x25\x76\xb6\xc8\x27\x6a\xe4\x88\x32\x80\xf5\x29\x91\xc9\x3a\x03\xa2\x2a\x8b\xf8\x83\xba\x43\x1a\x54\x8a\x22\x4f\xfa\xa7\x6d\x5e\xac\xb5\x30\x60\xaf\xef\xfa\x06\x55\x9d\xa9\xbe\x4d\xbe\xa3\xbe\xe8\x4d\x9d\xe2\x79\xda\xb3\x0c\x6f\xa9\xc8\xb8\xd5\xb9\x8e\xc5\x5f\x4a\xa7\x9d\x3f\x39\xde\x41\x94\xbb\xef\x78\xc7\xde\x03\x51\x46\xd2\xd6\xd4\x46\x1a\x51\xd2\x8a\xcb\x43\xfb\x84\x75\x48\x1e\x72\x9b\x19\xed\x84\x76\x29\x71\x16\xe1\xa5\x47\x7a\xe2\x89\x3f\x60\xd7\x50\x32\xe1\x8b\xab\x8d\x68\x2f\x9d\x98\xe5\x59\x91\x8a\xc2\x7c\x56\x5e\x1b\x56\xfe\xf0\x9c\x29\x5f\x62\xb3\x33\xb5\x3e\x73\xfe\x84\x3c\x13\xc9\x94\xd9\x27\x17\x4e\x14\x32\x28\x4c\x0e\x7c\x5f\xa2\xb8\xd5\x20\x69\xd1\x1c\x44\x99\x6e\x7d\xc5\x79\xfb\x10\xc7\xcf\x9a\xf6\x63\x76\x04\xe2\xb8\x6e\xdd\xf6\xd0\x55\x88\x62\x1f\xf4\x84\x03\xb7\x23\x8a\x7e\x1b\xb4\xa1\x3d\x1e\xdb\x76\xcf\x20\x79\x2f\x4d\xa7\xe3\x88\x9f\xb0\xc6\x64\x39\xb1\xe2\xbb\xf7\xae\x23\x72\xd7\x26\x6d\x25\xf3\x13\x0b\x05\xc4\x2f\xe0\x12\xb6\x7f\xbf\xc0\x58\x00\xbd\xc0\xe2\x00\xab\x47\x63\x0c\x55\x9a\x8a\x1c\x52\x62\x44\x50\x49\x75\x77\xd1\x11\x57\x11\x07\xf9\x7d\xbb\x7c\x5e\x3d\x11\xaa\x97\x7f\x9f\xfb\x10\x71\x34\x9f\x82\xf1\xda\x46\x44\x81\xa5\x0a\x31\xe9\xb3\x10\x05\x46\x28\x64\x26\x2b\x21\xf2\x2f\x55\x10\x4b\x38\x87\xc8\xb7\xb4\xfd\x7a\x00\x79\xce\x2b\x9f\x68\x17\xeb\x5a\xf9\x4c\xe2\xa7\xdb\x6b\xb5\x95\xf8\x43\x36\xec\xa1\x9d\x9d\x12\x81\x9e\x92\x03\x9b\xaa\x08\x3f\x99\x7a\xf4\x34\xb1\x66\x92\xfa\xf5\x9e\x5a\x5d\x00\xc2\x2e\x75\x97\xe3\x0e\x03\xf0\xde\x3e\x6b\x53\x3a\x1b\x60\x78\xe7\xe9\xa9\x6d\x1c\x26\x31\xb3\xe6\x06\x9d\xfb\x12\x5b\x82\x99\xbb\x98\x9b\xef\xb9\x8c\xdd\xcf\x26\xfe\x99\x6b\x1d\x4b\x49\x1e\xd2\xd1\xf4\xf5\xa4\x6e\x61\x71\xcd\x0e\xd2\x09\x26\xc7\x67\x3f\xe9\x50\x98\x6a\x79\x98\xf0\xd4\xa8\x5d\xc7\x09\x2f\x70\x95\x6d\x20\x9d\x65\x26\x6e\x6b\x61\x7a\xd7\xdc\xed\x93\x21\x95\x18\x6f\xc7\xd1\xae\x5a\xad\x8a\x85\x84\x29\xdc\xd2\x6e\x25\xbd\xde\x5a\x98\x33\x41\x1d\xc3\x7f\x6a\xcf\x50\xac\x54\xa3\xb8\x97\x89\xbf\x6c\x26\xbd\x5b\xcb\xc4\xf7\x90\x75\xb9\x2d\xb6\x82\xf0\x0c\x2e\x0f\x5c\x18\x47\x79\xe0\xcc\x73\x57\x88\x97\xc5\xf2\x47\x2b\xf1\xfa\x48\x9b\xb7\x31\x5d\x6f\x5f\x6f\x93\x20\x9e\xd5\x2e\xab\x00\x12\xb9\x7b\x15\xb6\x95\x30\xd9\xce\xda\xcb\x84\x49\xbc\xd0\x64\x13\xa6\x7b\x87\xd1\xa7\x99\x89\x6c\xd5\x33\xbd\x35\x8f\xeb\x12\xfe\x21\xbe\x9f\xc4\x6b\x77\xee\xac\x21\xf1\xc2\x75\x71\x67\x48\x1d\xa1\xa5\x2f\x9b\xc8\x38\xcc\xd9\x78\x83\xb0\x08\xdf\x9b\x0f\x49\xaf\x20\xc3\xd7\xb4\x73\xa9\x78\xed\x87\x1f\x54\x8f\x81\x03\x42\x44\xc3\x01\x39\x77\xf2\x66\x0d\x24\xaf\x21\x4f\xf0\x33\x97\xf6\xe6\xfa\x35\xfa\x9b\x24\x07\xdf\x33\x7a\x3c\xbb\x4c\x91\xab\x17\x1d\xaf\x42\xb3\x1a\xc2\x8b\xb3\x0f\x34\x90\x05\x92\xb6\xfd\x1a\xb9\x4f\x10\x7f\xee\x1e\x91\x17\xba\xa5\x8d\x74\xf7\x76\x83\x2e\xf2\xad\x3a\xad\x9f\x08\x3f\x12\xf3\x64\x8b\x70\xdf\x78\xfe\xf7\x14\x6d\x19\x5e\x91\xc8\x54\xea\x2c\x71\xa1\x78\x9b\xa9\x58\xc1\x26\x3b\xd2\x0f\x0f\x2a\xff\x6d\xd3\x9f\x7a\x6d\x15\xbd\x48\xd8\x49\x66\xe0\x6d\xf2\x57\x49\x47\x1f\x91\xf5\x39\x2f\xe9\x25\xe9\x48\x15\x18\xf3\x89\xc8\xb7\x17\xfe\x4a\x9e\x7f\xaa\x09\xfd\x6b\x91\xbc\x3f\x78\x10\xe3\x17\x33\x62\xe4\xcf\x66\xf8\xd0\xa6\x95\x14\xb9\x15\x3c\xb9\xfc\xe7\x23\x73\x73\x93\x7e\xc3\x8f\x61\xff\xe6\x1f\xff\xc4\xa1\xbe\xfc\x6f\x1e\xe4\xf3\x1a\xe0\xd7\x39\x80\x39\x66\x00\x9f\xeb\x01\x56\xc8\x03\xbc\xbb\x0a\x90\xaf\x00\xd0\xa5\x00\x70\xa4\x08\xe0\x25\x02\xdc\x42\x80\x37\x85\x00\x7d\x65\x00\x0f\x44\x19\xfe\x73\xf1\x7f\xf3\x1f\xae\xfd\xfd\x53\x3e\xd7\xfe\xab\x9c\x63\xf8\xc8\xfe\x3f\xec\xbd\x1e\xe5\x41\x7d\x1b\x00\x22\x37\x00\x7c\x10\x06\x48\x16\x05\x78\xf9\x1c\x60\xdb\x5e\x80\x8e\x63\x00\x47\x1c\x00\x3a\x32\x39\x6f\x0e\x40\x07\x02\xf4\xef\xfb\xcd\xc3\xb8\xfc\xe3\x1f\xf9\x8c\x8d\x2f\x79\xfe\x5f\xfe\xf1\x4f\x1c\xea\xcd\x1f\x9f\xcb\x00\xb4\xc4\x00\x58\x6c\x00\x5b\x13\x80\xde\xbd\x00\x33\x7b\x01\xba\xe4\x69\xdf\xfc\x67\xdf\x01\xb6\x68\x01\xb4\x8d\x06\xa8\x0a\x02\x78\x12\x09\x70\xbb\x04\x80\x73\xca\xe8\xff\xfa\x7b\x1c\xfe\xcd\x3f\x4a\x63\xff\x6f\xfe\xc1\xe5\x3f\x5c\x3f\x04\x97\x0f\x28\xd4\x00\x7c\xbf\x08\x60\xd0\x0b\xf0\xb6\x0a\xc0\xeb\x11\x40\x47\x08\xed\x57\xfd\x60\x1c\xc0\x86\x3e\x80\x3b\xaf\x00\x0e\x95\x73\x76\x0d\xfa\x5f\xab\x31\xc0\x90\x20\xc0\x59\x57\x86\x7f\x58\x51\xdc\xdf\xf9\x37\xff\xd8\xae\xfd\x5b\x0f\xae\x7c\x2e\xef\x81\x7f\xd9\x7f\x8e\x5e\x9f\x22\x00\x26\x6d\x04\xe8\x8c\x00\xb0\x17\x05\x78\xf0\x08\x20\x2a\x06\xe0\x66\x05\xc0\x9a\x4f\x9c\xb7\x0f\xa0\xb2\x95\x3e\xff\x9d\xb1\x00\x17\x3b\x01\x58\xad\xbf\xc7\xbf\x38\x80\xe2\x0e\x71\x8a\x5b\xed\x29\xae\xbf\xf7\x5b\x8f\x7f\xcb\xfd\x13\x7f\x30\xbd\xc8\xbb\x62\x01\x44\xa5\x01\x1e\x76\x02\xe8\xcf\x03\xb8\x7e\x13\x20\xa8\x07\xa0\x69\x2a\x40\x86\x26\xc0\xb9\x28\x80\xb2\x7c\x80\x53\xb9\x00\xad\x7a\x00\xc7\x2a\x81\x78\xa0\xf7\x32\x31\xe2\xad\xf7\xfe\x96\xbb\x7a\x19\xc5\xe4\x15\xff\x7f\x3d\xfa\x6e\x51\x7c\xc7\xf4\x2b\x7f\xc2\xf4\x80\xbf\x76\x1f\x80\xb3\x3d\x9e\x33\xe7\x8f\x74\xeb\x00\xa8\x5d\x20\x7c\x6e\xd9\x5b\x80\x8a\x35\x63\xdd\xf7\x87\x01\xec\x33\x1f\xbb\xe8\x5a\x1d\xc0\x6e\x47\x11\xfc\xb5\x03\x20\x7b\xab\x48\x01\xe7\x3b\x57\x64\x0b\x91\xfd\x7c\x89\xa9\xa0\x33\x07\x17\xa6\xf3\x91\x0a\x1f\x31\xe5\x3c\xea\xff\x4b\x8f\x81\xc5\x14\xdf\xf8\x08\x90\xfc\xdc\x3b\xc9\xd2\xa4\x23\xfa\xf9\x07\xca\xc4\x5a\x1c\x7e\xab\xf1\x5c\xf0\x03\xc0\x2e\x37\x8d\x41\xe3\x49\x02\x77\x36\x7d\xd4\x9c\x39\x67\x8e\x48\xca\x2a\x81\x29\xc7\x73\x33\xc4\x21\x79\x85\xba\xea\xb9\x26\x09\xe9\xc4\x1d\x6a\xf5\xef\x8b\xc4\x4a\xe6\x3f\x57\x9b\x81\x38\x66\x5f\x44\xb7\x8a\x2a\xa2\x60\xde\xcc\xaf\xca\x9f\x10\x05\x42\x02\x82\x26\x64\x23\xf2\xad\xf1\xbd\xa6\xd0\x83\x38\x2a\x97\x2b\xff\x57\x33\xc5\x4e\x71\x19\x62\x47\xaf\x89\x4c\x23\x76\xed\x64\x27\xed\x11\x7b\x60\xb5\x3b\xd9\xd7\xb7\x78\xfb\x92\xf8\x58\x4a\xe9\x74\xb9\xc9\x0f\xf8\x05\xa3\xf2\x3c\xdf\xfa\xae\x96\x3a\xe2\x7f\xce\x2d\x76\x95\xa9\xc2\x18\x37\xb6\xb3\x64\x75\xa3\x92\xae\xe3\x29\xc7\x95\xcf\xa6\x2a\x5a\xda\x7f\x76\xb0\x45\x94\xbe\x6b\x95\x66\xf9\x00\x51\xfc\xab\xf9\x4e\xb3\x2d\x88\xa2\x7a\xc6\xc6\xc6\x9e\x88\x63\x5c\xf5\x3b\xf5\x0f\x22\x0a\x7e\x64\xc9\x0d\x27\x3c\xa8\x73\x9e\xca\x3a\xba\xdb\x3b\x90\xfd\xfd\x58\x90\x2f\xe1\x65\xc5\x03\x11\x64\x17\xcc\xb6\xa2\xde\xfb\x44\x48\x20\xf1\xa0\xa0\xdc\x65\x7e\xe2\xda\x00\x36\xf7\x12\xf9\xed\x54\x45\xc7\xeb\xaf\x4b\xa8\x5d\xba\x56\xdc\x54\xd3\x3e\x3e\xb8\x5c\x52\x5c\x4f\x6d\x52\xdc\xd7\x07\xae\xa2\x1b\x55\x25\xe7\xcf\x45\x14\x8e\x57\x49\x09\x9f\x85\x28\x18\x3b\x89\x15\x94\x8e\x28\x70\x72\x62\xa3\xdf\x1b\x44\xbe\x46\xe5\x51\x9e\x66\x88\x7c\x4e\x2f\x6a\xa6\x12\x3e\xda\xd2\xea\x49\x76\xdf\x13\x0b\xc3\xc8\xf8\x17\xd7\xc4\x91\x5d\x79\xb3\xd4\x32\xd2\xe3\x6e\xd9\xd8\x74\x62\x67\x42\xe4\xd7\x13\x7d\x0c\x66\x6d\x23\xf6\x7f\x82\x43\x5e\x80\xde\x10\x4f\xb9\xd4\x9d\xdc\xd9\x71\xe5\x23\x5a\x24\x1c\xb6\x9a\x14\xcf\x04\x10\xd9\xb5\xc5\xaa\xd5\x04\x40\x90\x6f\xe3\x11\xce\x98\xf3\x98\xa7\x4f\xe0\xe0\x48\x8d\x25\x64\x5d\x0c\xcb\x5b\x40\xce\xfb\x3c\x93\xe6\xf2\x73\xf0\x7a\x88\xef\x37\x22\x7f\xe9\x1c\x62\xc7\x0f\xf4\xd3\x28\x41\x4e\xe5\x2a\x62\x77\x53\xe3\x68\x2f\xbd\x68\xc5\x3c\xe2\x3d\x70\xf5\xdc\x43\xf2\xb7\x95\x23\xca\x98\x5e\x9b\xd5\x97\xe5\xc9\xcc\x1d\x2a\x0a\x25\xf6\xae\xa2\x2f\x8f\x30\x87\xb2\xba\xcb\xe4\x7c\x5f\x72\xf1\x27\x89\x7c\xee\x60\xec\xec\xe6\x36\x8a\x6b\x98\x1b\x57\x34\xd3\xf5\x94\x71\x2c\xe1\x85\x25\x81\x69\xc4\x0f\x97\xf7\x71\x23\x91\xb7\xaa\x33\x9f\x8c\x47\x7c\xd9\x9e\x87\xc4\xde\x89\x96\x12\x3e\x68\xfe\xbd\x9a\xe4\xb3\x4b\x8a\x9f\x61\x7a\x84\x9f\x4f\x93\x25\x5d\x0f\xeb\x77\xd3\x6e\xba\xe7\x64\x37\x92\x38\xc8\xd9\xde\x3a\x92\x91\x77\x46\xa5\x67\x01\xd1\x97\xb9\xf9\x5d\xca\xdc\xc0\xde\xc3\xd8\xfd\x3c\xd2\x79\xa7\xb2\x75\x35\x99\x97\xed\xb7\xb6\x92\x79\xc9\xca\xde\x4d\xac\x74\xd2\xf0\x52\xc2\x6a\x66\xed\xa9\x22\x79\x42\x1e\xe6\xa7\xc8\xef\xe9\xea\xd0\x3c\x2a\xe1\xd4\x96\x89\x54\x8f\x3b\x29\xe3\x4f\x72\xb0\xb5\x88\x76\x6d\xbe\xd9\x91\x49\x56\xd0\x8d\xc1\xa3\xe4\xa4\x71\xfd\x61\x27\x79\xb2\x4b\x4c\x46\xcf\x19\xe6\x46\x7a\x0d\xe3\x49\x29\x27\xe7\xaa\x82\x3b\x79\x7e\x64\x1d\x7a\xec\x27\xf6\x3f\x75\xcb\x21\x62\x95\x63\xbc\x8e\x91\x9e\xd0\x81\xaf\xeb\xc9\x7a\xb0\x9b\x7b\x89\xf0\x56\x8d\xfd\xb7\xc8\xbc\x8c\x1a\x7a\x54\x4c\xf5\x78\xb9\x4e\x82\xbc\x49\x9d\x3a\xae\xc4\x73\xf2\x22\x6d\x79\x0f\xc5\x43\x44\xce\x73\xf6\x63\xc2\x20\x9e\x30\x11\x3d\xee\x8d\x30\xae\x5e\x75\xe4\xdc\xb7\x65\x4b\x39\xe1\xe3\xe9\x51\x47\x49\x5d\xeb\x45\x32\x75\xe4\xaf\xa2\x72\x2e\x13\x9e\x38\x5d\xfe\x06\x61\x57\x96\x19\x0f\xc8\xe8\xab\xc9\xb7\x13\xbd\x78\xe2\xdf\x30\xbc\xb0\xcf\x46\x98\x44\x7c\xbf\xa1\x1d\x61\x28\xdf\x0b\x93\x88\xe7\xf9\x7b\xda\x7e\xe2\x89\xfe\x1e\x70\x97\xf8\x7f\x7a\x36\x0c\x90\x6f\x7e\xc9\xf8\xa5\x1e\xef\xa3\xd8\xaa\x40\xf6\x57\x86\x87\x2e\xdd\xd7\x48\x66\x37\x16\x5a\x88\x1f\x2a\xe4\xfd\x5d\x1a\x17\x1c\x7c\x4a\xfc\x45\x26\x32\xb4\xfe\xe7\x84\x4e\xca\x62\x78\xdf\xff\x34\xa7\x7a\x20\xf2\xde\xa4\x68\xca\x60\x34\x93\x17\xb4\x8d\xf9\xcc\xf5\x4b\x51\x26\x39\xe8\x4c\xe5\x77\x33\xfe\x3a\xea\xbf\xfb\x8b\xff\x88\xfd\xc1\x3b\x2a\x00\xf4\xf6\x03\xf4\xff\x00\x30\x6f\x05\xf8\xbc\x15\xc0\x63\x16\x40\x17\x0b\x20\xec\x10\xf5\xf3\x2c\xf6\x00\xb8\x57\x04\xc0\x79\x93\x6f\x75\x72\x98\x37\x40\x6b\x29\x40\xdd\x71\x80\xd6\x10\x80\xa7\x21\x00\xad\xdf\xe8\x77\x36\x30\x71\xa9\x63\xeb\xff\xb6\xbf\x25\x2e\xff\x37\xff\xe0\x22\x87\x0f\x7d\xb3\xa5\xf6\xfe\x7d\x34\x80\xc3\x64\x80\xe7\x76\x9c\x35\x03\x70\xff\x23\xc0\x02\x8e\x7d\x0f\x02\xc8\xfa\x08\x70\xdd\x03\x60\xaf\x07\x40\x4b\x3c\x40\x9d\x05\xc0\x0d\x2f\x80\x0e\x47\x80\x66\x26\x86\x75\xea\x23\x23\x7f\xdb\xdf\xf2\xf7\xb4\xff\x97\x7f\x70\xfd\x2e\x5c\x1e\xa0\x70\x1a\xa0\x37\x02\x40\x7d\x0b\x40\xd7\x58\x00\xf3\x78\x80\x47\x53\x00\xbc\x77\x01\xb4\x1a\x01\xcc\x6d\x06\x68\xfe\x06\xb0\x4a\x1b\xe0\x92\x01\xc0\xee\x2d\xd4\xde\xd7\x7d\x03\xb8\x3c\x0b\xe0\x45\xd4\xef\x71\xe0\xda\xff\x7f\xf8\x07\x23\x23\xff\xc3\x7f\xf9\x07\x97\xff\x8c\x2c\x03\x18\x30\xa3\x9f\xdf\xf7\x02\xc8\x14\x02\xb4\xb7\x02\x68\xc7\x01\xdc\x71\x00\x70\x8a\x03\x68\x5e\x0b\x10\xb9\x08\xe0\xa2\x12\x8d\xd3\xd5\xc7\x03\x14\x7e\x02\x38\x17\x07\xc0\x79\xc3\xce\x8e\x06\x78\xe1\x08\x70\xec\x5f\xfc\x67\xc7\xc7\xbf\x79\x40\xf6\x1f\xbc\xf0\x2f\xfe\x93\x41\xf1\x7b\x05\xc5\xb7\x9c\x77\x03\x01\x1e\xd9\x01\x28\x4d\x01\xb8\xf6\x18\xc0\x4c\x82\xc6\xfb\x38\xfc\xe3\x74\x38\x00\x67\xe7\x3f\xe6\x01\xb0\x33\x1c\xe0\xc8\x67\x80\xb3\x2b\x01\xaa\x62\x00\x3a\x63\x7e\xf3\xbf\xed\x29\x7f\xcb\xcd\x64\x62\x7a\xcb\xcf\xff\x6f\xfe\x31\xc8\xbc\x05\x3d\x05\x14\x3b\x98\x9f\x73\xd6\xe1\x68\x4f\x80\x0b\xcd\x00\x1a\x71\x00\xc7\x03\x00\x3c\xf2\x01\x0e\x3d\x07\x48\x28\x02\x28\x93\x01\xc8\x1f\x0e\xb0\x7f\x1d\xc0\xd9\xa7\x00\x45\x85\x00\x2f\x27\x01\xe4\x8f\xa7\xdf\x9d\xc5\xf0\xb1\xe5\x93\x28\x2e\x66\xfc\x56\x71\xcb\xfe\xa5\x07\xd3\x99\xbb\xf7\x24\xc5\x17\x4c\x67\xe6\x7b\xcc\xb8\x5c\x64\xbc\xe9\xc7\x6e\x02\x8c\xd3\x06\x28\xef\x01\xb0\x3c\x02\xb0\x77\x23\xc0\xbc\x83\x00\xdb\x0f\x02\x6c\xf5\x04\xd8\xf2\x0d\xe0\x54\x26\xc0\x86\x1f\x00\x1d\x9e\x00\x19\xf3\x18\xb9\xcc\xfc\x44\x31\xe7\x86\xf0\x34\x8a\x81\x69\x7f\xeb\xd1\x37\x9c\xbb\x3b\x32\xf2\x23\xb8\xf2\xf9\xa6\xd1\x5d\x78\x2c\xf1\xbb\xef\xee\x94\x24\x3d\xc6\x37\x9d\x90\x53\xd1\xf2\x1b\x21\x9d\xde\xa5\x30\x66\x66\xe0\x28\xe3\x24\x3b\xf9\xe4\xac\x0e\x3e\xe1\xd8\x4b\x72\xfe\x55\x57\xf8\xd2\xa3\x3d\x65\xb3\x1e\x0a\xf0\x9e\x8a\xfc\x22\xdb\x87\xc8\x73\xc7\xdf\x42\x76\x22\xe2\xc8\x50\xcf\x62\x71\x12\x5f\x70\x59\x20\x4c\x2a\xf0\xdb\xf6\x8f\x26\x91\xfb\x9f\x91\x8c\xfc\x6a\x20\xbc\xe7\xce\x3c\x61\x62\xf7\xeb\xe5\x69\xc7\xd9\x4a\x79\x9a\xbf\xbd\xbd\xd3\x84\xec\xd6\xe9\x69\xd6\xe4\x54\x3d\x7f\xba\xa3\xb1\xf4\xcf\xe1\xa2\x01\x5a\xb6\xbb\x9c\x1c\x84\x4f\xb8\x8c\xb1\xda\x90\x94\x23\xba\xc6\xb2\xdc\xfc\x71\xb1\x9b\x78\xb2\xf1\x59\xb3\x31\xd7\x78\xc5\x0e\x18\x1e\x32\xd3\xfa\xa5\x22\xa2\xad\xbb\x48\xbf\x1f\x71\x74\x92\xd6\xe6\xa9\xf9\x88\x7c\x4f\xa7\x9c\x98\x92\x87\xc8\xeb\xa6\x92\xa4\x32\x1b\x91\x67\xe9\xdb\xfd\xc3\xe6\x90\xdd\xf5\x83\x74\x3e\xb1\x42\x9f\xf4\xc9\xf9\xb5\xec\x93\x03\x59\x29\xdb\xac\xa8\xf5\x4a\x87\x20\xe2\x9f\x98\x63\x1d\xb9\x83\x83\xf6\x71\xf3\x86\x46\x54\x03\xe8\x36\xcc\x1d\x6f\xf8\x82\x6f\xf9\x64\x97\x39\x8e\x31\xcb\xf8\xf9\xe5\xdb\x66\x3b\xef\x5c\xc3\xfb\x4b\xfa\x55\xe4\x9e\xa6\x53\x3c\x87\xa4\x56\x46\xbc\xf8\xb2\x6a\xb8\x85\x58\x63\x20\xf1\x73\x88\xf6\x7a\x91\x7c\xbe\x31\x99\x2e\x84\x77\x08\x8b\xdb\x92\xbc\x90\x5b\x0d\xca\x24\xef\xe4\x8c\xb2\x1d\xe9\x24\x5d\x2e\xe3\x4b\xfc\x10\xf9\xf3\x68\x87\xfe\x8c\xe1\xf3\xc8\x38\xc5\xbc\x59\x48\xe2\x23\x5e\x71\xc9\xc4\xfe\xab\x57\xad\x26\x7a\x09\x8f\x5d\xfb\x6d\xd2\x68\x80\x11\x5e\x59\x8b\x83\x89\xff\x63\xd5\xb1\xcd\xa4\x47\xf1\x4a\x56\x1d\xe9\x85\xbf\xc2\xec\x2d\x39\x91\x27\x32\xbc\x23\x66\x2d\xc5\x48\x86\x07\xcc\xdc\xc3\xc1\xb3\x66\x94\x88\x57\xca\xcf\x24\xf1\xaf\xfc\xa9\xb4\x07\xf9\xaa\xea\xc5\xc4\x0f\xb5\x30\x74\x05\xf1\x5b\x06\x37\xd3\xfc\x1d\x0b\xf6\x26\xe2\xff\x18\xef\xbf\x9d\x59\xb9\x7b\x16\xc8\x12\xde\x53\xb0\xc7\x9f\x7c\xd5\xce\xbd\x6b\x9e\xd2\x99\x3c\x46\xd6\x7e\xde\xb0\x76\xc2\xfd\xb9\x15\xef\x32\xee\x50\x4c\x61\x3a\x24\x2c\x96\x20\xfc\x43\x9e\xc6\xe7\x76\x4c\x58\x4c\xf2\xf6\xb3\xb2\xd3\xc8\x7a\x48\x84\xb5\x24\x4f\x2a\x52\x7b\x0b\xe1\x1d\x1e\x22\xdb\x09\x3f\xd6\xb9\x51\x44\xb2\x3c\x04\x6f\x55\x32\x3d\x8e\xab\xb5\x65\x89\x3d\x3b\xe4\xe1\x4d\x3c\x28\x07\x87\xa7\x11\x4b\x5d\xf1\xb1\x92\xcc\x68\x59\xdd\x5d\xc2\xdc\xb8\xfc\xa7\x80\xa9\x00\xb8\x95\xe1\x41\xeb\x08\x0f\x29\x14\x5d\x42\x3b\x7f\x9f\xcf\x24\xe3\x9e\x1a\x97\x43\x78\x50\x2c\x14\x10\xbf\xdd\x8c\xf0\x22\x62\x2d\xad\xf7\x96\x92\x7c\x25\x95\x92\x23\xc4\x0b\x35\x7c\xfb\x99\x2e\xaa\x47\xa3\x92\x34\x19\x87\x7a\x25\x3a\xb2\xe7\x64\x93\xc9\x8d\xb3\x3a\x87\xfd\x07\x39\x78\x56\x8a\x46\x98\x4e\xbd\xe9\x27\xfc\xe0\x70\xe5\xff\xe2\x65\x9b\xc2\xd7\x13\x6f\xc5\x0a\xf9\x3c\xc2\x0f\xe3\xbf\x15\x91\xf1\x08\x1f\x5d\x4a\xec\xbe\x87\x76\x15\x99\x07\xe3\xa6\x13\xe4\x4d\x56\x12\x6c\x08\x26\xe2\xd2\x9a\x37\x52\x3d\x6e\x9d\x91\x5c\xc2\xc1\x1b\x35\x8e\x64\x7e\x6e\x1c\x5c\xf4\x96\x7e\xde\x43\xc6\xe3\xda\xa7\xcb\x44\xe3\xab\x1f\xbb\x09\xb3\x3a\xcf\xf8\xc9\x4e\x31\x3c\xe8\x08\x39\xbb\x64\x89\xee\x22\x3c\x39\x31\xa0\x84\x4c\xd0\xdc\xb8\x6a\xc2\x8b\x66\xbc\x3d\x4e\x78\x87\xe3\xb9\x73\x24\xda\x35\xad\x96\xee\x64\x32\x9f\x6f\xac\xa6\x7a\x3c\x12\xa3\x7a\x3c\x3f\x2b\x46\x6c\x41\xfb\x36\x9b\xf5\x1c\x7c\x26\x33\x9f\xac\x8b\x76\xa5\x1d\x24\x10\xf5\x74\x69\x3d\xd9\x1b\x9e\x64\xbf\x19\xc7\xc1\xbb\xcc\xcd\xfc\x6b\x4c\xe5\xe8\x0b\x64\x0f\x4b\x31\xab\x24\x4f\x33\x7f\xc1\x51\xf2\x9c\xe1\x70\x96\xf0\x3f\xdf\x1f\x97\x1c\x39\x68\xd5\x73\x8d\xac\x76\x5d\xc5\x7b\x84\x5d\x49\xcd\x7f\xaa\x47\xe5\x77\xd1\xc2\x54\xf0\x45\x4e\x88\xc6\x25\x9b\xcd\xc8\xf3\x7f\x0e\x8b\x22\x95\x32\x3f\x5b\xd0\x19\xee\x8e\x38\x49\x78\xea\x87\x0d\x4f\xc9\xde\xfc\x86\xf1\x24\x3d\x6b\xa1\x19\xf1\x77\x4f\x72\xf7\x53\xae\xbf\x85\xc3\x37\xd8\xe9\x00\x9c\x01\xe9\xbd\x04\xa0\x95\x03\xf0\xea\x07\x80\x71\x2c\x40\xdb\x36\x00\xc7\x1f\x00\xb7\xbe\x02\xf8\x77\x02\x5c\xa9\x03\x98\xd7\x0a\x70\x3e\x09\x20\x55\x1c\xa0\x21\x15\x60\x5b\x39\x40\xa3\x07\x40\xd5\x4a\x80\xc6\x0a\x80\xeb\x15\xd4\xf6\x72\x18\xe4\x59\x6b\x2a\xe3\xe0\x49\x8a\xfb\x96\xfd\xdf\xfc\x43\xa6\x83\xc6\xb9\x64\xe3\x00\xba\x6b\xe8\xcf\x3b\x7c\x00\xa6\xd6\x00\xdc\x2b\x07\x30\xbb\x02\x70\x5d\x07\xc0\x2b\x02\xe0\xa2\x36\x40\x94\x28\xc0\xb9\xe1\xd4\x2f\x74\xb6\x18\x60\x9b\x07\xc0\xe9\xfb\x00\x87\xee\xd2\xbc\x97\x6b\x9d\x94\x07\xf4\xc6\x02\xd4\xca\xff\x6d\xff\x0b\x17\x31\xfc\x63\xeb\x7f\xf9\xc7\xd8\x3d\x00\xbf\xbc\x01\x44\x36\x02\xbc\xad\xa3\x7e\x98\x67\x8e\x00\x93\x92\x01\xee\x8c\x01\xd0\x4f\x00\xb8\x54\x01\xe0\x6c\x46\x6d\x6a\x68\x21\xc0\xd1\x74\xea\x17\xaa\xd6\x06\xd8\x58\x0b\x50\x3d\x12\xa0\x62\x1f\x40\xed\x45\x80\xeb\x08\x50\x2b\x09\xf0\x39\x17\xa0\xf4\x27\x23\x3f\x91\x62\x4e\xef\xbf\xf8\x47\x19\x00\xdf\x12\xc6\xde\x4d\x00\xf8\xb2\x83\xce\xfa\x6b\x6f\x80\x91\x17\x00\x1e\x75\x03\x48\x78\x03\x5c\x5b\x0b\xa0\x72\x02\xa0\xfe\x15\x80\xb9\x13\x00\xe7\xed\x09\x14\xe5\xec\x3f\x00\x0b\x3a\x01\xca\x36\x01\xac\x8f\x07\x38\x70\x8c\xfa\x41\x38\x9f\xaf\x29\x02\x94\x99\x01\xf4\x3e\xff\xfd\xfc\x1b\x99\x7c\xa0\x35\xcc\x38\xac\x60\x64\x73\x79\xcf\x60\x1d\xc5\x1e\x55\x8a\x5c\xde\x71\x47\x1e\x80\x73\x12\xe7\xf0\x2e\xc9\x1a\x80\xe3\xfe\x00\x3a\xd7\x00\x2a\xaa\x01\xdc\x7b\x28\x27\x8d\x3e\x07\xb0\x67\x09\x90\x9d\xaf\xd0\x0c\xa0\x34\x1b\x60\x57\x11\xc0\xf5\x20\x80\xc2\x4d\x00\x3f\xca\xa9\xef\xea\x4f\xb9\x49\x0c\x1f\x58\xc8\xf0\x21\x2e\xef\xf8\xc6\xe0\x1b\x6b\x8a\x0f\xb4\x28\x36\xf7\x50\xe4\xcc\xf7\x70\x6d\xca\xb3\x95\x12\x00\x8a\xbc\x01\xac\xd9\x00\x3b\xb2\x01\x22\xd7\x03\x6c\xad\x03\xc8\x34\x03\xd8\xd4\x02\x50\xf6\x94\xca\xbd\x5e\xce\xd9\x2d\x01\x7e\xa9\x01\x24\x8f\x61\x78\x0f\xc3\xc9\x67\x31\x9f\xc3\x99\x35\x31\x70\x93\xca\xf9\xc0\xa2\xf8\xf4\x35\xb3\x3b\x9d\xa3\x58\xcf\xdd\xbd\x99\xf1\xd9\xa3\x49\x79\x6b\xee\x76\x00\x0e\x31\x59\x27\x0e\x10\xb8\x12\x20\xbd\x0f\x60\xe5\x46\x80\x64\x16\xc0\x81\x37\x00\x49\x53\x01\xae\x87\x01\x24\xdc\x03\xf8\x51\x0f\x30\x9b\xf1\x0b\xfa\x17\x50\xf4\x60\xee\x0e\x3a\x33\xeb\x97\x3b\x0f\xcf\x69\x1a\x30\xb4\x3a\x50\x3c\xaf\x49\xb1\xf6\x10\xc5\x03\x1f\x81\xec\x2b\x9b\x3f\x8d\x22\xf1\xa1\xb4\x45\xa3\x7d\x94\x26\x02\x2c\xda\x36\xa6\xcb\x73\x0c\x40\x74\xae\x48\xce\xb2\x6e\x80\xd0\x1d\x63\xe6\xec\xb5\x04\x08\x88\x16\xb6\xbf\x54\x0b\xe0\x5b\x20\x34\xb9\x7b\x3e\x80\x33\x9b\x9f\xe4\xa8\x5b\x94\x0d\x37\xc4\x3f\x73\xf7\x7e\x50\xe4\xf2\xaf\xbb\x2e\x8c\xfc\x11\xc3\x88\x1d\xab\xde\x20\x4e\xf2\x94\x0a\x77\x2a\x91\xcf\xeb\xe5\xd5\xc8\x2e\x95\x08\x3a\xc4\x9a\x05\x3e\x31\x34\x10\x8c\x03\x70\x9e\x67\xf0\xc1\xb4\x62\xd4\x4f\x93\x43\xd3\x82\xe7\xe6\xf1\xcf\xd1\xd6\xd0\x1d\x9d\xab\x22\x90\xa2\x2e\x30\xb5\xfd\xcc\x52\xfe\xbd\x93\x6f\x4c\x1d\xdf\xd9\xc9\xfb\x6e\x42\xa8\x46\x1e\xe2\xc8\x00\xb9\x5c\xe5\x62\xc4\xe1\xbe\xd2\xdb\xe5\x77\x23\x0e\xe3\x95\xc8\x92\xea\xe0\xe8\xc1\xe5\x7f\xf5\xf2\x12\xe4\xbe\xda\xa1\xea\x49\x64\xf7\x2b\x10\x30\x24\xbb\xdf\xda\x01\x1b\x92\x35\xba\x28\xdd\x85\x8c\x43\xa0\xa8\x0f\x89\x53\x19\x74\x06\x11\x26\xa9\xf8\x31\x38\x48\x3d\x61\xb8\xb3\x44\xfb\x4c\x8d\x90\x95\x00\x42\x62\x01\x0b\xd6\x37\x00\xf0\xf2\xf8\xdb\x1e\x75\x01\x18\x21\xe8\xfb\xad\x8d\x64\x70\x78\xbe\xa3\xfb\xa8\x2d\xd3\x81\xc0\xac\x99\xa2\x3e\xc9\x67\xab\xab\x93\x27\xf6\xfd\x10\x1a\x93\xf3\x6b\xe1\x2a\xfb\x52\xf2\xfc\x92\x3e\x64\xa4\x12\xc7\x04\x93\x7c\xa0\x30\xab\x59\xc4\xee\xd9\x7d\xa0\x75\x86\x14\x32\x16\x33\x2b\x3b\xf9\x98\x14\x89\xa8\x26\x4d\xf5\x21\x3b\xff\xa2\x27\x19\xe4\x9c\x9d\x20\x76\x90\x30\x98\xb8\xd6\x7b\xe4\xbc\x3b\xdf\x11\x89\x87\x2b\x84\xe1\x43\xfe\xcc\x8d\x73\x2f\x12\x87\x39\x2c\x67\x49\xf2\xb5\x0b\x84\x3d\x89\x9c\x75\xa1\xc1\x24\x0e\xb2\xb4\x76\x2e\x59\x21\xb3\x7b\xe3\x09\x2f\xf0\x74\x4e\x22\xf6\x4d\xef\x48\x9a\x01\x07\x05\xef\xad\x1d\x43\xf5\xc8\x3e\x20\x93\x47\x67\xce\x83\x3c\xc9\x9a\xea\x64\xf2\x39\xab\xe9\x00\xf9\xcb\xd5\xfd\xd7\xc8\x5f\xac\xd2\xa0\xbe\xd8\xa5\x4c\x87\x88\xb8\xc3\x14\xe7\x90\x8a\x7c\x7b\xe4\x83\x88\x5f\x6e\x83\xfb\x1c\x12\xcd\x4a\x7e\x4d\xfd\x70\x73\x2f\x27\x93\x5b\x4c\xfe\xbd\x19\xc4\xde\x5a\xf3\xac\x23\xfa\x4d\x4e\xa4\xf7\xdb\x86\x2d\x2b\x38\x4e\xf5\x28\x72\x97\xd9\x4b\x57\x92\x0b\xf1\x68\x15\x32\x91\xbe\x02\xab\xdd\xf4\xa6\x97\x65\xd3\x42\x0e\xe6\x9f\xa7\x19\xce\x5c\x5e\xb6\x7a\x01\xc5\x15\x64\x3c\x36\x0d\x8f\x25\xd1\x99\x15\xf2\x4b\xc8\xf7\x2f\xd0\x5e\x45\x9e\x8a\xeb\x8f\x73\x0f\xc9\x21\x27\x1a\x43\xff\x1d\x24\xba\xa2\x50\xb1\xd7\x8a\xca\xaf\xa4\x44\x0e\x0e\xeb\xca\xca\xd2\x99\x75\x20\x7b\x4d\x65\x7b\x1c\x91\x5b\x99\x9d\x4f\x56\x5c\x45\x1c\xe7\xdc\xcd\x61\xde\xf4\x06\xda\x81\x09\x7f\xf3\xb2\x5c\x92\x71\x9c\xde\xb8\x82\xcc\xf7\xa2\x37\xeb\xc8\x4e\x32\x8b\x9d\x43\xac\xf1\xf4\x95\x05\xe4\xbd\xb0\xdb\x48\xf3\xb7\xb4\xed\xca\xe7\x73\x50\xa2\xaa\x5a\x98\xca\x3f\x2b\xce\xac\xf0\xad\x52\xc4\xaf\x71\x8e\xc7\x76\x80\x83\x75\x19\x31\x84\x77\xd5\x95\x6d\x25\x4f\x72\x56\xfd\xc4\x78\x0e\x9e\x32\x7a\x44\x32\xaf\x4f\xac\x44\xb2\xc2\x0f\xdd\xa4\x7a\x94\x90\x0a\x3d\x4b\x1d\x36\x93\x1d\x2b\x16\x0a\x88\x3f\x2c\xf8\x7e\x31\xd9\xe1\xdd\xed\xcb\x48\xfd\x2b\x33\x89\x2a\xb2\x2e\xd4\x76\x1d\x23\x7e\xb9\x31\xd5\x75\x8c\x05\x68\x2e\xa2\x78\x63\x9f\x24\xd9\xfb\x5a\x24\x2c\x25\x08\xa6\x46\x91\x7c\xa5\x96\xf6\x6c\xc2\xfc\xaf\xa9\x1c\x21\xfe\xb1\x66\x87\xdb\x6d\x1c\xbc\xb4\xed\x3b\x89\x08\x72\xe3\x84\x27\x89\x1f\x93\xeb\x0f\x8c\x14\x2a\x4d\xe2\xa0\x5f\x40\x15\xd1\xc7\xc1\xfc\xd8\x31\x0e\x1a\x59\x9e\x23\xbc\x51\x79\xe5\x05\xb2\xd3\x0b\xad\xbc\xa6\x48\xe5\x3f\xc8\xa1\xf8\x54\x40\x94\x78\xc0\x9f\x66\x98\x92\x11\x6b\x5b\x4c\x4f\x1c\x4f\x1c\xb2\x88\xe6\x4f\xc6\x1e\x24\x33\xfd\x30\xab\x85\x74\xd6\xbb\x5f\xd3\x43\x6e\x94\xdc\x7c\xc6\x26\xe3\x78\xe5\x3b\xd7\xce\x71\x78\xc6\x4f\x3b\x00\xc5\x68\x80\xf7\xf2\xd4\x8f\xdf\xe1\x08\xa0\xbe\x1d\xe0\x2e\x1b\x40\xa7\x07\xe0\x6a\x1c\x00\x67\x61\x34\xf0\x03\x78\x74\x02\x1c\xff\x08\x10\x66\x03\x50\x35\x1e\x60\xe1\x6e\x80\x83\x52\x00\x99\xd3\x01\x2a\x2e\x00\x14\x74\x00\x70\x64\x1f\xbf\x05\x70\x8c\xc9\x11\xaa\xaa\x05\xf8\xd1\xf0\xdb\xff\xc2\xb5\xbf\xb9\x8a\xbf\xf9\x87\xcc\x7d\x80\xaf\x06\x00\x12\x2d\x00\x5d\xaf\x00\x24\x4d\x00\x9e\xc4\x02\x28\x7c\x06\x68\x5d\x0d\x30\x65\x1a\xc0\x25\x6d\x00\xa3\x5e\x80\xb3\x9f\x00\x9c\x1b\x01\xaa\x7e\x00\x04\x36\x01\x54\x08\x01\xc4\xde\x02\x28\xe1\x01\x58\x35\x09\xe0\x40\x1c\x40\xc1\x2f\x9a\x2b\x7c\xbc\x86\xda\xfd\x07\xbf\x00\x2a\xe4\x00\xfa\xeb\x01\xf6\x30\x79\x43\x5b\x19\xde\xb1\xbe\x95\x22\xeb\x35\x00\x7f\x17\x40\xcf\x44\x80\x51\x03\x00\x2f\x13\x69\x3e\xcc\x3d\x0f\x80\xb1\xad\x00\x2d\x93\x00\x64\xaf\x70\x66\x93\xf2\xc5\x1a\x59\x00\xf3\x41\x80\x92\x52\x00\x6f\x65\xea\x5f\x98\xd3\x45\xed\xfe\x4a\x0f\x80\x5d\x7a\x00\x1c\x7e\xbc\x3b\x0e\xe0\xa4\x18\x00\xe7\xed\x7a\x98\x4c\x7d\x67\xec\xee\xdf\xf2\x57\x1f\xf9\x9b\x07\x0c\x32\xbb\x40\xf7\x35\x8a\x5c\xde\x41\x6e\x75\xd4\x52\x7f\x83\x88\x2b\x1d\x5f\x45\xa0\xbc\x67\x9a\x2c\x40\xd1\x76\x1a\x37\xdc\x19\xce\x39\x21\x52\xdf\x47\xca\x26\x80\x5c\x7b\x80\x1d\x26\x00\xdb\x1c\x01\x4e\x4a\x03\xec\xc8\x05\x68\x9f\xce\x39\x27\x53\x79\xe9\xb7\x28\x2e\xe3\xa3\x98\xc0\xf0\x32\x2e\xef\xa0\x51\xe2\xdf\xbc\xe3\x3a\xa3\xcf\x59\xc6\x4b\x7a\xd0\x0d\x60\xcc\x6b\x80\xbd\x69\x00\x2a\x85\x00\x79\xc7\x01\x6c\xe4\x01\x38\x47\x85\x80\x6d\x00\x59\xad\x00\x89\xde\x00\x6b\xbf\x01\xe4\xaf\x01\xc8\xb2\x03\x38\x19\x09\xb0\xfa\x3d\xc0\x53\x89\xdf\xf2\x17\x33\x79\x42\xd1\xdb\xfe\xe6\x1f\xff\xe6\x5f\x34\xf6\x0c\xd0\x14\x46\xf1\x84\x01\xc5\xfd\xcc\x69\x76\x5b\x35\x80\x44\x07\xc0\xfa\x66\xca\x57\xd3\xfd\x01\x7c\xd8\x00\xc9\x0d\x00\x09\xde\x00\xcb\x2a\x00\xf2\xfc\x01\x92\xd4\x00\x4e\xbe\x03\x58\x54\x04\xf0\xdc\x12\x20\x9e\xc9\x9f\x0a\x61\xc6\xc5\x8f\xd1\xc3\x95\xc9\x63\x7a\xab\xc1\x8c\xc3\x1d\x8a\xd7\xce\x52\x3c\x27\xcb\xec\x96\x0c\xff\xd8\x73\x94\xe2\x5a\xce\x6e\x13\x08\x90\x7a\x06\x60\xf2\x7e\x80\x84\x71\x00\xce\xfb\x01\xe6\xdb\x01\xc4\xdd\x07\x98\x65\x00\x90\xcb\xe2\xec\xc7\x00\x27\x3b\x01\x82\x2c\x01\x9e\xb9\x02\xf8\x4b\x52\x9f\x2c\x97\xf7\x98\x7b\x53\xe4\xf2\x90\x36\x86\xef\x5c\xab\x66\x76\x47\x86\x7f\xd5\xdc\xa7\x78\x80\x19\x8f\x6d\x12\x14\x69\x54\x02\x80\x73\x66\x13\x7b\x08\x10\xa1\x07\x60\xe5\x04\x30\xbd\x1a\x60\x5e\x1a\x80\xeb\x4a\x80\x2d\x31\x00\xb6\x62\x00\x47\x6f\x00\x58\xa4\x00\x3c\x5a\x05\x60\x32\x8e\xca\x9b\x12\x44\x51\x91\xf1\x97\x49\x33\x71\xe6\x5b\x09\x7f\xcb\x3f\xd2\xc4\xc8\xd7\xe2\x21\xd6\x31\xc7\x4c\x84\x98\xad\xd4\xcb\x92\xa4\x7e\xdd\x9c\x7e\x05\x62\x5f\x9c\xf9\x55\x78\xc8\x3e\x37\x4b\x4d\x4f\x6b\xf4\x70\x39\xb5\xbb\x2a\xfc\x33\xc7\x8e\x88\x50\x38\x38\x69\x72\x66\xf0\x88\x69\x52\x2d\xca\xc2\x07\xa7\x0f\xb3\x94\xb8\x38\x61\x7f\x6b\x05\x80\xe8\x18\xc5\x6f\xbf\xb6\x01\xf0\x9b\x49\x91\x7b\x8f\x3c\x0d\x22\xe3\xe8\x7e\xca\x4f\xf6\xd5\xf3\x49\x54\x6e\xad\x3c\x3f\x19\x99\xa2\x29\x32\x64\x17\xdc\xd4\xa1\x4a\x66\x66\x85\x3c\x71\x8f\x41\xd4\x76\x53\x72\x0e\xf6\xd0\xb6\x26\xa7\xd5\x29\x07\x5d\x88\x57\x43\x50\xd1\x4b\x52\x9a\xd8\x2f\xb7\xc5\xee\x24\x02\xe1\x74\x62\x39\xa9\xf0\xe3\x50\x57\xa2\xcc\x41\xdb\x8f\x34\x63\xc5\x7a\xce\x57\x12\x29\x31\x64\x6e\x12\x6b\x31\x7e\x18\x95\xfd\x1c\xac\x95\x97\x68\xa5\xf2\x55\xc9\x8a\xdd\xd4\x4c\xb3\x37\x53\xcd\x6c\xc8\xca\x8c\x3e\xe7\x46\xfc\x00\x7e\xa7\xa7\x13\x2b\x6a\xf2\x2d\x88\xf0\x03\x71\xf2\xb6\x92\x11\xda\x2a\x49\x2c\xf1\xac\x8f\xce\x24\xcf\x23\x52\x7b\x09\x19\xc9\x30\x57\x1a\xb9\x0a\x91\x3f\x4f\x7c\x8f\xc1\x71\xef\x89\x5f\xc4\x8f\xb9\xc1\xe3\xcc\xd8\x17\x5b\x23\xc2\x3f\x5a\xf5\x88\x1f\x28\xc7\x85\xca\x4d\x4b\xf5\x25\x9f\x63\x81\x66\xf9\x06\x44\x50\x79\x76\xf9\xb4\xbe\x82\x4a\x55\x3c\x39\xc5\x8f\xe8\x58\xba\x85\xea\x91\xf2\x63\x3c\x61\x52\xc9\x31\xf6\x31\x1c\x5c\xd2\x1b\xf7\x99\x60\x0e\xf5\x18\x25\xf1\x9f\x21\x3f\x4f\x68\x6d\x27\x4f\x1c\xf7\x96\xca\x8f\x60\x6e\x5e\x07\x91\x5a\x9f\x39\x81\xee\x84\xf7\xa5\x43\x30\xf1\x77\x2d\xd0\x8e\x22\x2b\x24\xf4\x76\x1c\x79\x43\x5c\xc3\x28\xab\x31\xf8\x9e\x42\xf2\x53\x64\x96\x67\x30\x3b\xca\x06\xc6\xde\x6d\x0c\x90\x22\xf6\x76\x7d\x9b\x0d\xc9\xa0\x59\x2f\x4f\x23\x9b\xeb\xbd\x28\x63\x5a\x73\xbb\x86\xec\x05\x59\x1f\x1e\x10\xbb\xbf\xaa\x73\x90\xfc\x65\x32\x93\x61\x9b\x40\xfc\x41\xe9\x77\x23\xc9\x68\x26\x42\x1c\x91\x1f\xd1\x91\x44\xd8\x81\x1f\xa4\x10\x6f\x92\xed\xda\x4c\xb2\x3e\xb5\x26\xad\x27\x56\x5b\xcc\x73\x2b\x93\x9f\x54\xb0\x82\x22\x97\x8f\xed\x8e\xb3\x21\x1e\x91\xc2\xdb\xb3\x48\x06\x73\xa1\x19\x65\x52\x05\x8d\x07\x89\x3e\xdb\xb3\x6f\x92\x38\xdd\x8e\xed\x7d\xc4\xee\x73\x79\x59\x16\xc9\x8b\x59\xb2\x9e\xf2\xdd\xb9\x39\xa9\xc4\x3a\x73\xfd\x71\xce\xad\xd9\xe4\xe7\xc6\x77\x73\xc9\xc9\x66\xd2\xd6\x1d\x24\xce\x3b\x7a\xeb\xde\x9d\x54\x3e\x97\x8f\x1d\x42\xaa\xc7\x21\xa4\x44\xad\xa2\x25\x82\x30\xec\xf2\xd3\x19\x94\x97\x7d\x2a\x23\xdf\x58\x5e\x76\x85\x60\xd9\xe5\x8f\xe4\x46\xfe\xbe\x50\x24\x99\x6a\x85\xe4\x5e\x4a\x6c\x00\x8d\x13\x86\x1d\xda\x48\xd6\x83\x0f\x3b\x9f\x8c\x87\xbd\x43\x21\x99\x10\xdd\xed\xfb\x08\xab\x54\xd2\x28\x27\x2f\xce\xa8\xb5\x55\x2f\xa9\x7c\x2e\x1f\xab\xab\x93\x22\x2b\xe6\xac\x86\x19\xe1\x1d\x67\xa4\x42\xc8\x88\x9d\x3e\x90\x4e\x46\xf2\x94\x11\x65\x74\x27\xdb\x1b\x49\x04\xf8\x04\xff\x2b\x32\x2f\x47\x13\xe9\x99\xb6\x72\x3d\x39\x67\x32\x3c\x30\xc0\x96\xca\x75\xad\xa4\x72\xcd\xe2\x2a\xc8\xf9\x49\xb3\xa3\x3a\x9a\x83\x72\xd5\x34\x7e\x36\xd2\x95\x6b\x71\x2e\x45\x51\x6c\xf1\x92\x24\x23\xd3\xac\x68\x4c\x66\xb6\x39\x26\x88\xbc\x71\x97\xdf\x72\xec\x1e\xc0\x95\x4f\x34\x02\x7a\x45\xf3\x1c\xd9\x71\x2e\x2f\x68\x67\x73\xf0\x42\x6d\x3f\x61\x7c\x75\xc6\x1c\x0e\xf4\x45\x0e\x40\x72\x0c\xc0\xeb\x33\x94\x77\x3c\x92\x04\x90\xbd\x0c\x70\xdd\x05\x40\xc9\x13\xe0\xe2\x0e\x00\x35\x49\x80\xe3\xbc\x00\x06\xf3\x69\x8e\x87\x6d\x2e\xc0\x81\xfb\x00\xbe\x5f\xe8\x79\x3f\x2a\x1b\xa0\x40\x1f\x60\xa9\x17\xc0\xce\x2a\x80\xcd\xe3\xa8\xdd\xe7\x9c\xfb\x77\x8b\x03\x9c\x6f\xa4\xbf\xd7\xe9\x0f\x50\xf4\x0a\x00\xcb\x7f\xf3\x9f\xf5\xcc\x3e\xff\xb9\x08\x60\x6c\x13\xc0\xcb\x5e\x00\xc1\xbb\x00\xf7\x10\x60\x6c\x27\x40\xf3\x10\x80\xc4\x43\xca\x7b\x14\x8e\x00\x54\x25\x03\x68\x34\x00\x94\x0a\x03\x98\x8b\x53\x7f\x82\x9b\x37\xc0\xce\x0e\x80\xc8\x59\x00\xb9\x77\x00\x16\x97\x00\xe4\x2e\x04\xc8\x5e\x05\x90\xfb\x09\xa0\x44\x10\xa0\x40\x01\xe0\xca\x3a\x80\x5d\xf3\x01\xde\xe7\x00\xe4\x7b\xfc\x2d\x9f\x1b\x7f\xf9\xe8\x41\xfd\x09\xff\xf6\x77\x34\x85\x02\x8c\xea\x00\x38\x7e\x9a\xfa\x85\x2a\x3c\x01\x26\x8c\x06\xd8\x73\x9f\x9e\xf3\xf3\x7d\x00\x9c\x7d\x00\x36\x54\x03\x04\x8c\x05\x58\xbb\x02\x20\xee\x36\xc0\x86\x09\x00\xeb\xaf\x03\x6c\x90\x02\x38\xf0\x0a\x80\xb3\xda\x39\x1c\x66\xf3\x31\x80\xb7\x8a\xbf\xe5\xa7\xc6\xfd\xcd\x03\xb8\xbc\xa3\x8d\xb1\x2f\x5c\xde\x51\x17\xc0\xbc\x0d\x66\x00\x3c\x9d\xd4\xee\x8f\xe3\xf0\x9d\x6e\x00\xf5\x46\x80\x6c\xa4\x7c\x35\xe3\x11\x80\x4f\x29\xbd\x3b\xc6\xd9\x37\x56\xde\x03\x58\x73\x88\xc6\xca\x4a\x9b\x38\xa7\x24\xaa\x47\xc6\x14\x80\x9e\x46\x80\x65\xfc\x54\x2e\x97\x07\x70\xf9\xc7\xbf\x79\xc7\x95\x87\x14\x4f\x77\x30\x6f\x27\x63\x7f\xf2\xf5\x01\x86\x0d\x07\xd8\x10\x0f\x20\xe3\x01\x90\xba\x17\x40\x67\x0f\x40\xd2\x0d\x00\x37\x7f\x80\x04\x45\x80\xd9\x3e\x00\x8b\xdf\x71\x76\x04\x80\x45\x5f\xa8\x1e\x8b\xcc\x01\x9a\x6d\x00\x12\x74\x01\x7a\x33\x00\xe6\x08\x32\xf1\x9f\x26\xc6\x0f\xc2\xf8\xed\xda\x76\x53\x39\x37\x19\xbf\xcf\x05\x46\x3e\xcd\xf6\xa3\x63\xcb\xf9\x5f\x8e\x33\xc5\xb4\xdb\x00\xfc\xe1\x00\x8b\x3e\x01\xa8\x8c\x01\x88\xd9\x0e\x60\x17\x08\x10\x65\x07\x10\xfe\x11\x20\x54\x95\x8e\x45\x90\x35\xc0\xbe\x3e\x80\xa0\x6d\x34\x87\x69\x86\x00\xc0\xe7\x98\xdf\x72\xad\x19\xbf\xa5\x29\x2f\xc5\x7b\x0c\xef\xb8\xb4\x94\xe2\x29\x86\x77\x54\x72\x77\x4d\xc6\x8b\xbe\xa1\x85\x62\xd2\x4a\x8a\xb3\xbb\x01\xc6\xf7\x02\x04\xc9\x00\xfc\x3f\xf6\xfe\x3a\xba\x8a\xe5\xe9\x17\x87\x1b\x77\x0b\x1a\x24\x04\x42\x20\x4e\x12\x20\x24\x21\xae\x84\xb8\xbb\x0b\xc4\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdf\x95\x99\x9d\xe3\xe7\xfb\x7d\xee\x5a\xf7\xbe\xff\xfc\x9e\x59\xeb\x9c\x62\x6f\xa8\xea\x9e\xa9\xee\xaa\x4f\x49\xcf\x26\xc5\x02\x80\xdb\x08\x00\xe1\x79\xf8\xd9\x98\x23\x01\x40\x27\x79\x16\xa9\x01\x40\x9b\x06\xc0\x99\xbf\xa5\x9e\x03\x60\xcb\x04\x80\x4f\x1d\xf0\xb8\x68\x69\x7f\xc6\x1f\x8d\xb9\xb0\xdc\xdf\xf2\x4f\x88\xa8\x31\x0c\x81\x77\xce\xf1\x8f\xc5\x1b\x98\xaa\x20\xbc\x2c\xcf\x25\x00\x2e\x9f\xad\x55\x1e\x00\x3e\x8e\x02\x40\x76\x0c\x00\xff\x22\x00\x84\x66\x00\x98\x98\x01\x80\xcd\x0e\xaf\xa9\xb7\x6d\x00\x54\x5f\x02\x00\xf5\x25\x00\x4b\x48\xbf\xe7\x48\x6f\x22\xf0\xe0\x65\x3a\x98\xfe\x86\xbf\xae\x22\xf4\x50\xfd\xe7\xf1\xad\xa7\xe0\x73\x7c\xea\xba\x37\xa0\x27\x24\x5c\x04\xf7\x33\x93\x1f\x3e\x81\xce\x0f\xbf\x7f\xf8\x7c\xff\xb5\x15\x78\xfa\xf4\x1d\xf2\x57\x56\x05\x00\x6e\xb5\x3f\xc5\xd1\x4e\x02\xe0\x52\xf6\x63\xdc\x00\xc8\x03\x20\x0d\x15\x43\xbd\x47\xf7\xfb\x27\x21\x4f\x7a\x9b\xe6\xf4\x1f\x7a\xb4\xb2\x38\xe0\x3f\x47\xcb\x01\x08\x67\x78\x85\xdf\xf8\x75\x46\x2d\x3f\x3e\x83\xba\x28\xd4\x51\x50\xa1\xa8\x51\xc8\x1b\x1b\x8a\x52\xe9\xe8\x3e\x41\x6e\xe4\x0d\x1a\x89\x27\xcc\x49\xa5\x70\x1f\xca\x18\x7c\x73\xa2\x83\x2c\x2e\x31\x9d\x2a\xe4\x6f\x3e\xdf\xf3\x81\x10\x15\x21\x5b\x01\x84\x58\xf0\xdc\x46\xa0\xca\x17\x16\xa2\x1f\xf8\x35\xe2\x17\x90\x9e\x40\x67\xe7\xa2\xdf\xdd\x86\xbc\xa4\x3b\xca\x53\xe8\xdc\x95\xe5\x1b\xcc\x75\x78\x7c\x22\x48\x03\x12\x80\x1c\x7a\x62\x4c\x28\xb4\x90\x1f\x22\x08\x66\x81\xea\x64\xb7\x01\x0f\x3c\x0d\xc0\xdb\x87\x04\xc5\xad\x3c\x84\x54\xd0\x4c\xb9\xe6\x15\xa0\xfa\x18\x27\x92\x1b\xf4\x4f\x58\x35\x32\xa1\x35\xf8\x63\xb9\x1b\xc2\x47\x4c\xad\xb0\x5f\x21\x43\xfc\x42\xd4\xe7\x46\x28\xbe\x74\xc5\x81\xba\x77\xac\x7e\x11\x41\x5e\x50\x5d\x9c\x16\xea\xdb\x92\xe0\x64\x83\xb2\x3a\x1c\xdd\x7c\x90\x7f\x23\x8d\x13\xbe\x70\x46\x5f\x49\x49\xa4\xc3\xe3\xcb\x5b\xc0\x54\x09\xc0\x0e\xef\x27\x0a\x25\xb4\xc7\xe4\x30\xa4\xa1\xcf\x72\x78\x70\xe6\x46\xfa\x11\xbc\xe6\xa5\xd6\x1a\xa1\xf1\xc5\xd9\x57\xa1\x4c\x01\x1f\x02\x17\xb2\x42\x75\x42\x2b\x2f\x4a\x68\xe7\xea\x8c\xb3\x43\xcf\x59\x16\x49\x10\x9a\x35\x0f\x90\x80\xea\x2f\x34\x24\xb2\x10\xba\xc1\x0b\x80\xcb\x1c\x0f\x63\x35\x09\xe0\xf1\x0d\x84\x10\x74\xef\x19\x54\xc9\x32\xf0\xa6\x80\x90\xa5\xc1\x32\x0c\x08\x0c\x9a\x2c\xa1\xba\x94\x1e\x2d\x1c\xfb\xe8\x8c\xc3\x15\x1c\x2d\xa8\x57\x13\x00\xd5\xaf\xf0\x3c\x64\xa0\x3e\x1d\xfd\x0e\x78\xdc\x5f\x8f\xa4\x20\xfc\x21\x44\xa5\x00\xe1\x61\x66\x76\x35\x28\x93\x48\x4a\xa2\x0b\x79\xf5\x77\xc5\xc6\xd0\xfd\xdf\xf8\x62\x31\x0c\x8f\xef\xb0\x05\x53\x67\x35\x78\x1e\x8e\xa7\x70\x85\xd7\x31\x54\xa4\xe4\x8c\xda\x6b\x1b\x42\x38\xc0\xbe\x35\x18\x1a\xd7\xc1\xb6\x14\xee\x93\xc2\x1d\xf9\x00\xad\x00\x8f\x63\x5e\x68\xbe\xd0\x49\x2b\xc5\x18\x79\x4d\x78\x1d\xa8\x43\xff\x9a\xe3\x91\x3e\xe4\xbd\xa9\x78\xcc\x20\xfd\x10\x20\xd9\x94\x43\xfa\x78\xe1\x88\x88\xa4\xdc\x11\x3b\x2c\x70\x15\xa6\xc1\x28\xcf\x21\xc4\x10\x88\x4a\x0a\x65\x68\x02\x63\xe0\x93\x91\x81\xe8\x06\x90\xc2\xfc\x15\xfc\x20\xcd\x07\xc8\xe6\x41\xf3\xf5\xf5\xe8\x81\xf1\x19\xfe\x3e\x54\x01\x74\x86\xde\xcc\x23\x9d\xa5\x07\xe5\x4b\x05\x2b\x2d\x20\x34\xfd\x5d\x19\xae\x53\x92\x94\xc2\xdd\xc5\x18\x2d\x1e\xd0\x7e\x79\x3c\x1a\x80\xe8\x8f\x3a\xc7\x63\x71\x08\xcf\x94\xc8\x86\x0c\xcd\x3c\x7e\x89\x04\x7a\xb2\x71\x2f\xf9\xa0\x71\xe2\xd8\xb5\xa0\x95\x14\x47\xe4\x09\x65\xfe\xe2\x88\x33\xa0\x3b\x89\x61\xee\x80\x22\x94\xa8\xf4\x15\x48\x03\x21\x50\xff\xd8\x39\x0e\x64\x7d\xe6\x04\x9d\xfa\xa2\x36\xf5\x84\x56\xd3\x27\xaa\x00\xe8\x7b\x34\x4f\x18\x4d\x3d\xf0\x8d\x59\x87\xc7\x4d\xc1\x87\x29\xdc\xc7\x05\x40\xc1\xfe\x33\xc8\x3e\x14\xf8\x7d\x85\x16\x46\x1e\x2d\xbc\x93\x72\x89\x35\xa0\x95\x94\x83\xeb\x06\xfd\x92\x5a\x4e\x61\x32\xd4\x4f\x96\xd9\xdc\x00\xcd\x33\xf3\x74\x1e\xca\xe9\xc3\x7d\x65\xe3\xf2\x00\x3c\xc0\x85\xfd\xfd\x5d\x72\x00\xaa\xbe\x00\x70\xff\x0b\x00\x25\x1e\x00\x20\x8f\x03\x90\x98\x0f\xc0\x6b\x1e\x00\xa2\xa6\xcf\xb0\x19\x00\x01\x2c\x00\x90\xd8\x01\xe0\x19\x72\xb6\x03\x01\x70\x50\x86\xfd\xbe\x7d\x10\x00\x0a\x2a\x67\xda\x07\xc0\x44\x0f\x00\x6b\x14\x18\xeb\x38\x72\xc1\xbd\x30\x5e\x02\x00\x74\xec\x00\xe0\x13\x06\xc0\x3e\xdd\xef\xf5\x9f\xf3\xfc\xc7\xc0\x32\x00\x57\x2d\x01\x68\x59\x83\xfd\xfb\xd9\x9a\xbe\xb8\x06\x40\xc6\x32\x5c\x57\x88\x21\x01\xe0\xa9\x09\x8c\xaf\xde\xe2\x03\xe0\xd5\x01\xc0\x27\x66\x38\xde\xa7\xe9\x01\xc0\x92\x1c\x00\xae\x23\x00\x8c\x52\x61\x7f\x7b\x16\xff\x1b\x9f\xf9\x7f\x2c\x00\x3c\x3a\x01\xb0\xb8\x0d\x40\xaa\x15\x00\x96\x59\x00\x34\x5b\x02\x60\xbf\x04\xd7\x41\xce\xc7\xd7\x42\xc4\xdb\x5d\xa5\xf0\xd3\x3d\xc7\x1d\xa5\x2c\x70\x3c\x0f\x75\xb3\xe5\x01\x10\xa6\x09\xc0\x8d\x79\x00\xbc\x68\x00\x78\xa6\x0b\x80\x8d\x36\x00\xef\xb5\x01\x30\x23\x04\x80\xf4\x26\x00\x7a\xdd\xf0\x7b\x96\x34\x3f\x01\x20\xce\x07\x80\x86\xeb\x59\x24\x05\x80\xee\x7d\x00\x3c\xcd\x01\xd0\x77\x04\x20\xc3\x15\x00\xdd\x63\x00\x5a\x46\x60\x3c\x72\xfc\x0a\x00\xd5\x10\x78\x7c\x19\x33\x98\x9e\xe3\x8e\x6a\x66\x98\xe6\x75\x22\x56\xdf\x08\x4c\x03\x10\xdd\x8c\x4e\xf7\x00\xb8\x6e\x04\xe7\x9e\x5e\x94\x03\xa0\x1f\x08\xc0\x67\x13\x00\x34\x1a\x00\x60\x4a\x84\x7b\xa7\xc4\xcc\x00\x50\xf4\x38\xb3\x14\x00\x28\xed\x01\xe0\x79\x0a\xe3\x81\xd4\x62\x00\x94\xdf\x00\xd0\x8d\xf2\xef\x79\x90\xf3\x79\x9c\xe3\x8e\xf3\xbc\x4b\x1c\x3b\x4c\x7d\x11\xab\xd1\x1a\x41\xb5\x6f\x02\xf0\x80\x01\x00\x39\x5e\x00\xde\x7d\x02\x40\x12\x09\x00\x72\x6d\x00\xc4\xfa\x00\xe0\xbf\x00\xf7\x0c\x9d\x59\x00\x21\x35\x00\x3c\xe3\x01\x10\x08\x02\x20\x83\x08\x00\x7e\x31\x00\x7a\x3c\x00\x10\xa4\x83\x73\x94\x4c\xda\x7f\xc6\x21\x75\x08\xab\x78\x9e\x77\x49\x41\xf8\xdd\x30\x84\xbe\xbc\x10\xf3\x32\x47\xe4\x6b\x94\xee\xc0\xb8\x4c\xa8\x1a\x80\x67\x33\x00\xf0\xf0\xc1\x7d\xd3\x6c\xef\x01\xe0\xb8\x0d\xc0\x8f\x6e\x00\xd4\x91\x00\x60\x68\x86\xd7\x26\xf5\x45\x00\x32\x59\x01\xa0\xeb\x02\x60\x30\x1b\x00\x4a\xf8\xb7\x66\x7e\x7b\x67\xc1\x6b\x44\x3d\xf7\xb7\xe7\x20\x0f\xd3\xdf\xf0\xcf\x4f\x98\x3a\x72\xc3\xd4\x60\x00\xa6\x32\x08\xfd\xfd\x50\x07\xe0\x2a\x1e\x00\xb4\x66\x00\x60\xd9\x01\x40\xb6\x05\xe7\xed\x08\x04\x01\x50\x59\x06\x00\x6b\x1c\xd6\xcb\x7b\x59\x00\x72\x34\xe0\x1c\xed\x60\x13\x00\xc8\x88\x73\x06\x0f\x10\x7d\xe3\xd7\x10\x3d\x7c\xf9\x08\x6b\xf4\xd7\xfc\x93\xbb\x0e\x4c\x2d\xf4\x61\xaa\x8e\xb0\xa2\x22\x88\x3e\x66\x1a\x6f\x98\xe2\x3a\x01\xf0\x0a\x05\x80\x37\x53\x00\x30\xac\x00\xf0\xd8\x00\xce\x4f\xdd\x7b\x0a\xcf\xe3\x9a\x22\x00\xd9\xa3\x00\x5c\x74\x01\xa0\xbf\x19\x00\x80\xa8\x9d\x5f\x40\xe4\xa3\xc0\x47\x98\xfe\x96\x7f\xfa\x0b\xfe\xb1\x41\x44\x6d\x3a\xf6\x30\xfd\x85\x88\x22\x39\x75\x2f\x40\x79\x98\x4f\xec\x57\xa0\xae\x01\xa4\xea\x3b\x3c\xf7\xa9\x00\xb8\x28\x73\xd3\x96\x02\xd2\xe9\x55\x7c\x79\xc8\xcf\x5c\x54\x77\x85\x3b\x23\xb8\xd2\x11\x35\xc7\x2e\x7a\x98\x1e\x23\x20\xc3\x1f\x71\xd0\x79\x77\xaf\xf7\x14\xc8\x06\x50\x57\x08\x3c\x8e\x7e\x25\xf4\xba\x5a\x20\xfb\xe9\x31\x94\xc9\xe4\x50\x7e\x09\xad\x68\x92\xa0\x77\x50\x96\xe1\x99\x1a\x26\x42\x83\xb8\xb4\xb7\x20\x7b\x89\xf1\x92\x14\xd2\xf1\xbb\x7b\xb2\x90\xe3\x47\xf3\x74\x84\x10\xd3\xab\x6f\x49\x10\xd6\x7c\x85\xd2\x0e\x3d\x53\xe4\xa3\x0d\xe8\xdc\x2d\xd2\x27\x78\x1e\x57\x21\xbb\xee\x33\x0e\xf7\x6b\x3b\xa0\xde\x83\xfc\x8b\x3e\xd2\x2b\x68\xc7\xfe\x52\xfe\x00\xd5\xe7\x78\x4c\xf0\xa1\xbc\x3f\x55\x07\x31\xd4\x85\xfc\x21\x82\x1c\xca\xd2\x5f\xea\xa2\x41\xd8\x77\xda\xd9\xbb\xd0\x33\xa3\x96\x87\x33\x49\x54\x0a\xf0\x39\x60\xca\x6c\x6b\x48\x22\xd9\x70\x34\xe4\x7f\xbf\xfd\xa8\x85\x90\x04\x49\xe5\x02\x64\xd7\x3f\x46\xc0\xf3\x40\xdf\x81\xe2\x3b\xed\xd7\x10\x97\xfe\x7d\x6c\xa8\x7b\x42\x5e\xf7\x2b\xb4\x43\x05\x68\x29\xa0\x7c\x03\x63\x11\x13\xe4\x25\xce\x71\xd8\xd3\x45\x6e\xc4\x8e\xe6\x43\x20\x66\xc1\xca\x07\xd0\x93\xe1\x5f\xfc\x0a\xfd\x62\x2c\xbf\x07\x5c\xe1\xe2\xbd\x60\x04\xe1\x0f\x5e\xd1\x50\xc8\x63\xf1\x00\xd8\xef\x73\x72\x8e\x41\x1d\xb5\xac\x88\xf7\xe7\xd0\x42\xe7\xa3\xce\xf3\x70\xca\x79\x54\x90\xbe\x85\x91\xe0\x2a\x1b\x33\x3b\x1f\x44\xcf\x71\xd8\xdb\x71\x49\x68\x47\xdd\xe2\x92\xd9\x83\xc7\x97\x2f\x87\xe9\x39\x1e\x53\xf0\x20\x82\xce\xc9\x2b\x49\xf0\x4f\xc2\xdf\xeb\x42\xfa\x51\x58\xf6\x83\x90\xb6\xc2\x50\x2e\xf4\x4b\x2e\xb2\x48\xf0\x2f\xb9\x4a\xe1\xef\x42\xd0\x0a\xce\x4b\xa9\x8e\xb0\x41\xf7\x25\x89\x25\xf0\x10\x9e\xb5\x38\x34\x0e\x6d\x12\x9c\x9f\xc2\xb3\x87\xeb\x93\xcf\x57\x54\x20\x7f\x7b\xf1\x85\x0e\x22\x82\x30\x44\xec\x78\x63\x94\x27\x90\x04\x83\xe5\x2f\xd0\x37\x06\x36\x3c\x07\xf0\xf7\x70\x46\xcb\x30\x14\xce\x20\x19\xe0\xa6\x41\x1d\x79\xfa\x62\xcd\x90\x86\x75\xf0\x17\xa0\x3b\x55\x79\x03\xe1\x0f\x09\x71\xe8\x6f\xf9\xf0\x7f\x41\xeb\x90\x69\x44\x09\xb2\x60\xc4\x75\xda\xd0\x67\x2c\x3d\x03\x12\x00\xe5\x07\x8d\x11\xeb\xd2\x12\xb1\xb2\x1d\x10\x95\x78\xa7\xbd\xa7\xd0\x0a\x77\x62\xfd\x02\x69\xd6\xb1\x99\x1b\xb2\x89\x8e\xd6\xaa\xd0\x7e\x71\xc0\x70\x82\x70\x88\xfd\x5e\x1c\x9c\x37\x43\x81\xf3\x42\x36\x64\x53\x50\x87\xa0\xb9\xeb\x61\x13\x00\x82\x76\x8a\x50\x96\x86\x23\x0a\xae\x13\x52\x4d\x19\xc1\x38\x4c\xdb\x02\xaa\x87\xa1\x8e\xd8\x42\x9d\x18\x37\x7d\x9d\x11\x96\xce\x13\x91\x81\xfe\x2b\x1e\x0b\x7a\xf0\x19\xf2\x4d\x01\xcb\x5c\x10\x92\x0a\x44\x57\x81\xf6\xc9\x79\x9e\x2c\x60\x38\x06\xda\x57\xfe\x95\xd5\x70\x9f\xd9\xad\x31\x08\x1f\xfa\x18\x1f\x57\xfd\x9e\x8f\x63\x0c\xb5\x80\xe6\x41\x8c\x0f\xff\x0e\x0c\xde\x43\x37\x08\x7f\x3e\x27\x87\xdf\xbf\x7a\x5d\xd9\x1f\x91\x69\x0e\xb7\x85\x69\x6c\x19\x4c\xe3\x5b\x91\xa1\x95\x15\x8f\xf2\x09\x5a\xc1\xb1\x21\xb0\xa6\x63\x1d\x15\xa0\x9d\x16\x5d\x09\x4b\x8e\x61\x0c\x83\xfb\xfb\x05\x0b\xbf\x41\xdf\x5f\x82\x7f\xe9\x2e\x32\xe7\x2c\xde\x6c\xc1\x07\xe0\x16\x2e\x00\x95\x14\x00\x5c\xd3\x06\x20\xab\xe8\xec\xde\x01\x88\x3b\x06\xe0\x2e\x31\xec\x6f\x1f\xa5\x03\xe0\xec\x08\x00\x4a\x04\x00\x76\x51\x00\xe0\x8d\x03\x60\x61\x0f\x00\x25\x15\x8c\x35\xce\x56\xb6\x16\x1f\x9c\xdb\xd7\x12\x05\x40\x95\x14\x00\xbd\x54\x00\xec\x23\x00\xd0\x23\x05\x20\x24\x0a\x00\x03\x31\xb8\x86\x72\xa6\xdd\xb3\xf1\xcf\xeb\x20\xba\x25\x88\xf8\x16\x61\xd3\x8a\xcb\xe0\xba\xcf\x6f\xb8\x83\x10\xfe\xde\xfb\x0e\x00\x77\xb8\x00\xb0\x69\x03\xe0\x11\x13\x00\x26\xd8\x00\xa0\xdf\x05\x40\x47\x1a\x80\xcf\x96\x00\xa8\xdf\x01\x80\xbe\x04\x00\xd5\x01\x00\x84\x9e\x03\x20\x7f\x86\xcb\x52\x00\x50\x5f\x85\x7b\x3f\xce\x7c\xde\x19\xb2\xd4\xa0\x87\x63\x58\x5d\x0f\x00\x26\x3d\x00\xd0\x4e\xfd\x73\x3f\x48\xcd\x99\x55\x30\xf9\x03\xee\xe8\x80\x69\x10\x22\x3b\xea\x8c\x88\xef\x4d\x63\x01\xb8\x89\x01\xf7\x75\x3c\x2f\x3c\x5b\xe5\x00\xe0\xaa\x03\xa0\x30\x05\x00\xcd\x38\x00\x32\xb7\x01\xe0\xf9\x09\x80\xa8\x36\x7c\xbe\x4e\xb2\x0d\x00\x4b\x09\x00\xce\xa2\xae\xb3\xb8\x41\xc1\x07\xc6\x7a\x8a\x25\x00\x4c\xb5\x01\x20\x8b\x38\xfb\x2e\x8c\xa8\x1b\x9e\xd7\x7b\x72\xce\x51\x38\xc2\x4a\x9d\xe3\x1f\x67\x3d\x98\xea\x28\xc0\xf4\x6c\xcb\x3f\xa8\x04\x40\x6c\x06\xae\x93\x09\x6b\x01\x40\x1c\x02\x00\x77\x28\x8c\xcb\xf8\xae\x01\x70\xb6\xe3\x39\xc5\x00\x30\x5b\x00\x80\x13\x05\x7e\x1e\x5c\x18\x70\x4f\x17\x17\x05\x00\x13\x21\x00\xb0\x23\xf2\x62\xe7\x38\xe4\xdc\xef\xa7\x23\xba\x06\x22\x97\x60\x7a\x8e\x7f\xec\x11\xdf\xeb\xe8\xc3\x78\x51\x08\x81\xda\xb9\xaf\x02\xf0\x78\x17\x00\xf6\x45\x00\xf0\xef\xc3\xef\xc6\x3e\xfb\x8f\x5a\x1e\x80\x33\x8b\x47\xd3\x08\xf7\x04\x53\xd6\x01\x10\xd1\x02\x63\xa5\xb3\xe7\x41\x47\x06\xc0\x82\x0f\x00\x9f\x11\xef\x20\x42\x43\xf8\xb9\xbc\x5f\xb0\xdc\xa4\x64\xc4\x6e\xc8\x84\xe9\x39\xfe\xb1\x84\xbb\xf8\x7e\xf3\xfb\x82\xaf\x60\x4a\xab\x0d\xc0\xb5\x56\x00\x28\xd6\x00\x40\xc7\x05\xe0\x0b\x37\x00\x54\xe9\x00\x10\x6a\x01\x20\x51\x0b\x63\x12\x73\x3d\x00\xde\xe3\x01\x10\xf3\x05\x80\x37\x66\x70\x7e\x0a\x45\x1f\x80\x0d\xdb\x3f\xe4\x41\x10\xef\x97\x4a\x43\xe0\x9c\x73\xbf\xeb\x8f\x38\xcd\xea\x8c\xd0\x97\x31\x62\x1e\xca\x08\xfd\xf0\x22\xf0\x09\xf1\x59\x2c\xc6\x0f\x00\x26\x37\x00\x4f\xa7\x60\x1d\x91\x54\x02\xf0\xf0\x08\x00\xd1\xb7\x00\xdc\x7f\x07\xbf\x8f\xeb\x2e\x3e\x5c\xe3\xbc\xa2\x0f\xe7\xa7\x2e\x4d\x00\xb0\xd9\x04\xc0\x85\xaf\x08\x1c\x82\xa0\x49\xd1\xb0\xdc\xbf\xe2\x1f\x4b\x84\x5e\x74\x10\x5e\x55\x5a\x18\xa6\x6c\x8e\x30\x25\x40\x58\xd7\x87\x6a\x00\xdc\x7c\x09\xc0\x0d\x6d\x00\x88\x10\x7f\x27\xc1\x07\x53\x9b\x7d\x98\xc6\x2f\xc2\xb4\x05\x36\xf4\x60\xf7\x2b\x4c\xa1\x9e\x31\x7e\x78\x1e\xe7\xf8\xc7\xfb\x32\x4c\x6d\x11\xf5\x5c\x7d\x44\x37\xa3\x7c\x12\x4c\x85\x11\xfd\x4b\xb4\x87\x30\xc5\x40\xe0\xf9\x3f\x5e\x44\x88\x39\x4b\x22\x2c\x9c\x2d\x22\x33\x71\x9e\x73\x3c\x3f\x49\xbd\x36\x84\x98\xc7\x1f\x70\x90\x1f\xa2\x5f\xdc\x01\x91\x0f\x33\x21\x80\xfb\xa2\xce\xf3\x60\x88\xa2\x02\x60\xde\xbb\x07\x69\x86\xf0\xe4\x01\x74\x37\x0f\x82\x5f\x21\xe2\xdd\xe7\xeb\x57\xa1\xfe\xca\x47\x9c\x9f\x21\x8f\x80\xa4\x28\x02\x79\xa6\xfb\x94\x70\x0b\xd6\x1d\xb6\x70\xe8\x44\xd7\x4d\x9c\x0a\x08\x6b\x5f\x5f\x9a\x62\xff\xfb\x3c\x5c\x1e\xc1\xf9\x2f\x63\x94\x4b\xd0\x5d\xa8\xe4\xde\x86\xbc\x92\x88\xfc\x4b\x68\x65\xb0\x91\xa1\x42\xfe\xe5\xab\x07\x26\x84\x1a\x50\x01\x3e\x02\xe1\x7f\x41\x68\xf2\xd3\x9b\x9b\xd0\x1e\x23\xd0\x26\x80\xfc\x1d\x2e\x12\x3f\x64\x03\xf1\xf0\x0d\x20\x3d\xe0\xa4\xc3\x79\x07\x4c\x94\x7c\x48\x6f\x6f\xc7\xfb\xa0\x93\x36\x6f\x85\x8e\xa0\x79\x3d\x85\xf2\x54\x26\xae\x30\x7a\x50\xaf\x45\x81\xee\x57\xda\x03\x13\xe2\xe2\x62\xff\x04\xf9\x7f\x2a\x40\x02\xf5\xdd\x62\xb6\xc2\xf8\xeb\x2e\x39\x3d\xc2\xcf\x7c\xaf\x83\x29\x93\xc1\x3d\x08\x29\xd2\x97\xe2\x41\xcf\x90\xfe\x88\x0b\xca\x4b\xd1\x8f\x6b\x40\x7d\x3a\xf4\x17\xe0\x4a\x0a\x1d\x5d\x06\x54\x49\xa3\xc1\x6f\x87\xfc\x0a\x45\xc8\x1a\x94\xf9\x21\x82\xce\x25\x6b\x49\x62\x43\xd5\x08\x19\x49\x38\x1f\xc6\xfd\x98\x1a\xea\xa6\xa1\x13\x65\x82\xf0\x1f\x01\x0a\x3b\x34\xee\xab\x56\x18\xdc\x5e\x24\x13\x42\x44\x5e\xa2\x88\x9d\x2c\xb4\xff\x00\x8a\x29\x84\xc8\x08\xa0\x6f\x84\xa8\x58\xfb\x21\x8a\xaf\x0c\x55\x46\x04\xef\x3a\x42\x79\x0f\x01\xda\x58\xa8\x0e\xc5\xe7\x06\xff\xa2\x2e\x8f\xf1\x14\xa4\x01\xf8\x0d\x7c\xbf\x1e\xc1\xf5\x41\xbe\x71\xb8\xcb\xf9\x07\x15\x0f\x84\xae\x49\x5c\x05\xa1\xce\x83\xf7\x2b\x70\x57\xc9\x43\x76\x69\xc4\x0e\x52\x40\x74\xde\x9d\xaf\xa0\x73\x3c\xa6\x52\x84\x0f\xbd\x51\x47\x59\x9e\x15\x42\x08\xaa\x12\xf0\x89\x38\x65\x3d\xf8\xcd\x04\x4a\x88\xda\xbc\x12\x80\x4f\x9c\xc9\x91\xc1\x27\xef\x65\x91\xf6\x1f\x00\x20\x2c\xcd\x07\xa1\x39\xce\x4a\x51\xc8\x52\xd2\x50\xca\x42\x1e\xe6\x1c\x87\xa1\x0a\xa8\x40\xfa\xb8\x0d\x34\x10\xe3\xeb\x23\x76\x90\xe9\x15\x98\x9e\xe3\x31\xc3\x50\x78\x2f\x1b\x37\x33\x9f\xc0\xdf\xcb\x42\x08\xcb\xb0\xc8\xe2\x2e\xfc\x19\xee\x9b\x36\x44\xcd\x85\x6c\x80\x9e\x6b\x27\xd4\x51\xa3\xab\xbe\x9a\x0a\x00\x17\xb5\x1c\xb4\xbb\xbe\x2b\xc3\xdd\xcd\x24\xd7\xd4\xa1\x79\x61\xf9\xc0\xb8\xe8\xa9\xb3\x21\xd4\xed\x74\xc9\xd3\x02\xb1\x2b\x6d\x10\xfd\x41\xe7\x78\xcc\xb9\xf8\x19\x34\x23\xc7\x66\x02\x08\xef\x39\x99\x30\x43\xbd\xa4\x8e\x7e\xd2\x50\x67\xa0\x43\x8a\x09\x94\x51\x73\x88\x80\x11\x8c\x83\x4f\x26\x64\x1b\x6c\x27\x9b\x21\xdb\x6d\x43\x36\xa7\x04\x00\xeb\x1d\x75\x5f\x78\x3d\xc2\xab\x9b\x10\x1b\xc6\x7f\xe8\x0a\x56\x10\x0e\x7a\xe4\x69\x87\x88\x24\xcf\xf1\x98\x37\xa2\x02\xf0\x3b\x1e\x43\x86\xf4\x1f\x98\x47\x00\xe3\x31\x32\x26\x18\x7f\x69\xc1\x95\x5f\x7f\x64\x03\xe8\x2c\x8d\xdf\x96\x27\x94\xd7\xf5\x19\x87\xeb\x97\xbe\x1e\x8d\x90\xa6\xbd\xf1\x26\xa1\x9d\x77\xe1\xc2\xc5\x8b\x97\x2e\x5d\xbe\x7c\xe5\xca\xd5\xab\xd7\xae\x5d\xbf\x7e\xe3\xc6\xcd\x9b\xb7\x6e\xdd\xbe\x7d\xe7\xce\xdd\xbb\xf7\xee\xdd\xbf\xff\xe0\x01\x12\xd2\xc3\x87\x8f\x1e\x3d\x7e\xfc\xe4\xc9\xd3\xa7\xcf\x9e\x21\x23\x3f\x7f\xfe\xe2\xc5\xcb\x97\xaf\x5e\xa1\xa0\xbc\x7e\x8d\x8a\xfa\xe6\xcd\xdb\xb7\x68\x68\xef\xde\xa1\xa3\xbf\x7f\xff\xe1\x03\x06\x06\x26\x26\x16\x16\x36\x36\x0e\x0e\x2e\x2e\x1e\xde\xc7\x8f\xf8\xf8\x04\x04\x84\x84\x9f\x3e\x7d\xfe\xfc\xe5\x0b\x11\xd1\xd7\xaf\xc4\xc4\x24\x24\xa4\xa4\xdf\xbe\x91\x91\x91\x93\x53\x50\x50\x52\x52\x51\x51\x53\xd3\xd0\xd0\xd2\xd2\xd1\xd1\xd3\x33\x30\x30\x32\x7e\xff\xce\xc4\xf4\xe3\x07\x33\x33\x0b\x0b\x2b\x2b\x1b\x1b\x3b\x3b\x07\x07\x27\x27\x17\x17\x37\x37\x0f\x0f\x2f\x2f\x1f\x1f\x3f\xbf\x80\x80\xa0\xa0\x90\x90\xb0\xb0\x88\x88\xa8\xa8\x98\x98\xb8\xb8\x84\x84\xa4\xa4\x94\x94\xb4\xb4\x8c\x8c\xac\xac\x9c\xdc\xcf\x9f\xbf\x7e\xc9\xcb\x2b\x28\x28\x2a\x2a\x29\x29\x2b\xab\xa8\xa8\xaa\xaa\xa9\xa9\xab\x6b\x68\x68\x6a\x6a\x69\x69\x6b\xeb\xe8\xe8\xea\xea\xe9\xe9\xeb\x1b\x18\x18\x1a\x1a\x19\x19\x1b\x9b\x98\x98\x9a\x9a\x99\x99\x9b\x5b\x58\x58\x5a\x5a\x59\x59\x5b\xdb\xd8\xd8\xda\xda\xd9\xd9\xdb\x3b\x38\x38\x3a\x3a\x39\x39\x3b\xbb\xb8\xb8\xba\xba\xb9\xb9\xbb\x7b\x78\x78\x7a\x7a\x79\x79\x7b\xfb\xf8\xf8\xfa\xfa\xf9\xf9\xfb\x07\x04\x04\x06\x06\x05\x05\x07\x87\x84\x84\x86\x86\x85\x85\x87\x47\x44\x44\x46\x46\x45\x45\x47\xc7\xc4\xc4\xc6\xc6\xc5\xc5\xc7\x27\x24\x24\x26\x26\x25\x25\x27\xa7\xa4\xa4\xa6\xa6\xa5\xa5\xa7\x67\x64\x64\x66\x66\x65\x65\x67\xe7\xe4\xe4\xe6\xe6\xe5\xe5\xe7\x17\x14\x14\x16\x16\x15\x15\x17\x97\x94\x94\x96\x96\x95\x95\x97\x57\x54\x54\x56\x56\x55\x55\x57\xd7\xd4\xd4\xd6\xd6\xd5\xd5\xd7\x37\x34\x34\x36\x36\x35\x35\x37\xb7\xb4\xb4\xb6\xb6\xb5\xb5\xb7\x77\x74\x74\x76\x76\x75\x75\x77\xf7\xf4\xf4\xf6\xf6\xf5\xf5\xf7\x0f\x0c\x0c\x0e\x0e\x0d\x0d\x0f\x8f\x8c\x8c\x8e\x8e\x8d\x8d\x8f\x4f\x4c\x4c\x4e\x4e\x4d\x4d\x4f\xcf\xcc\xcc\xce\xce\xcd\xcd\xcf\x2f\x2c\x2c\x2e\x2e\x2d\x2d\x2f\xaf\xac\xac\xae\xae\xad\xad\xaf\x6f\x6c\x6c\x6e\x6e\x6d\x6d\x6f\xef\xec\xec\xee\xee\xed\xed\xef\x1f\x1c\x1c\x1e\x1e\x1d\x1d\x1f\x9f\x40\x27\x4a\xff\x57\xff\xff\xab\xff\xff\xd5\xff\xff\xea\xff\x7f\xf5\xff\xff\x4d\xfd\x03\xa0\x2c\xa7\x05\x21\xed\x4b\x17\xde\x00\x70\x01\xfc\xf9\xfa\xa7\xcf\x17\x2f\x80\xdf\xbb\x7a\x4f\xff\xff\x71\x3d\x3f\xce\x3a\x71\x3b\xd9\xfa\x3f\xe6\xe3\x39\xa0\xdf\x61\xd8\x30\x59\xa5\x5d\x3a\x5c\x7a\xbf\x98\xbd\x7c\x6f\xd9\x78\xdd\x7e\xfb\xf2\x61\xe6\xff\x80\x57\x6f\x9f\x79\xd3\x7b\xc5\x66\x3e\x66\xaa\x60\x0c\x77\x24\x6a\xc8\x68\x30\xb5\xbf\x6b\x30\x70\x70\x78\x2c\x7b\xf6\xd9\xca\xb7\x83\xec\xff\xc8\xbd\xb3\x7f\x7f\x5d\x63\xe1\xc6\x64\xf2\xf0\x5a\x5f\x44\x57\x7e\x5b\x46\x33\x76\xe3\xbd\x86\x47\xf5\x8c\xf5\x06\xcd\xf7\x5b\x32\x7b\x9f\x8c\xef\xae\x89\x1c\x71\xfe\x1b\xfb\x21\xca\x46\xdf\xc2\xa3\xf1\xba\x81\xdd\x2e\xb4\xe6\xe6\xba\xfa\x4a\xde\x92\xf6\xc2\xfa\x82\xe3\x7c\x9c\x3c\xe1\x7c\xcf\xc2\xad\xb2\xb4\x3a\xea\x1e\xcf\xc9\x9e\x75\xf1\xd3\x89\x7f\xe2\xdf\xbd\xbf\x72\x6f\x1a\x79\xb0\xa1\xf3\x67\xd3\xeb\xaa\x82\xe2\xd8\xbc\xed\x4c\xc1\x14\xab\xc4\x4b\xf1\x5f\xe3\x90\x62\x31\xe2\x52\x12\x03\xd2\xbd\x8b\x09\x1b\xf2\x7b\x2b\x66\xee\x6e\xce\xfe\xc3\xf4\x65\x17\x6b\xc6\xbd\xfb\xae\x34\xb7\x57\xbf\x2f\x1e\xc8\x41\x49\x21\x8d\x27\x89\xf4\x0c\x09\x09\xbc\xe1\xe7\xe9\x9b\xec\x4b\xe2\x6b\x18\xd4\x17\x7d\x27\xe3\x5d\xd9\xa5\xe6\x5f\x83\x56\xf3\xdc\x7b\xf4\x7f\xe6\xdf\xe7\x5c\x8c\x1f\x53\xed\xfe\xd8\x48\x53\x66\x9b\xab\x9b\x5a\x16\xeb\x17\x76\xd5\x2f\xdf\xeb\xa7\xcb\xb2\x43\x98\x9d\xaf\xcd\xa1\x8d\x86\xc3\x3d\x97\x9b\xfe\x98\xb1\xcb\xd9\x2d\x15\xc6\x6d\x04\xa3\x7c\xcb\xee\x47\x8b\x7f\x94\xb0\xfe\x64\xa2\xb9\x47\xa6\xa1\xbc\xd4\x24\x2b\x27\x21\x33\xfc\xc8\xbf\xd7\xbd\xdc\xc1\xd5\xaa\xc8\x94\xcc\x60\x45\x2f\x45\xd7\x58\x67\x47\x5f\xdf\xdc\xd1\xd5\x3e\x68\x3d\xe1\x49\x3e\x7b\x2d\x51\x77\xe6\x94\xe2\x66\xe5\xef\xfc\x07\x99\x0b\x4c\x03\xc5\x4d\xb3\xa5\x8d\x59\x9a\xf1\xae\xa1\xcc\x3e\xf8\xce\x9a\x56\xbf\x8c\xa4\xb5\x45\xd5\x8a\x95\xc8\xe4\x59\x7f\x66\xc8\x5f\x52\x26\xd6\x9d\xb5\x7e\xe5\x51\x17\xb6\x9a\x2a\x5e\x9c\xda\x7c\x71\x48\x79\x31\xe9\x30\xe6\xb7\x67\xf0\x73\x72\xba\x73\xbe\x8a\x36\x67\x2d\x41\x32\x64\xd0\xeb\xb9\x7d\xa1\xd9\xa1\xee\xa9\x2a\xff\xcf\x6d\xc9\x53\x51\x42\xa1\x39\x81\x23\xa1\x5b\x12\xf7\x55\x9c\x0d\xc7\xec\xbd\x7c\xe3\x63\x6c\xb2\x09\xab\xb8\x3a\x0b\xa7\xf0\x37\xfb\xcf\x25\x6c\x68\x8d\x0e\xb7\x88\x14\xfb\xa7\x0c\x86\x27\xfb\xa0\x39\xa0\x9a\xec\xe9\xdc\x56\xec\x94\x0e\x16\xce\xe0\xa1\x60\x8f\x64\xf1\x62\x7e\xcc\xfa\x49\xe0\xaa\xdc\x03\x2d\x24\x73\x6c\x57\xad\x90\x1f\xc9\x4a\x45\xb3\xcd\xb4\xc3\xe8\xcb\xc6\xc7\xbe\xb0\x84\x35\xa5\x81\xc1\x86\x8f\xb9\x05\x71\x8d\x01\x68\xce\xe6\xa6\xc7\xda\xe2\x0a\x43\x92\x34\x02\x2f\xd8\x39\x18\x47\xa9\x23\x28\x70\x29\x54\x69\x93\x39\x64\x45\xab\x15\x7f\x18\xa0\xd9\xae\xf9\x7a\xc5\x52\xe7\xf0\xd4\x14\xf6\xde\x9b\xe5\xde\x0b\x82\x25\xac\x88\x0f\xf8\x54\xa3\x67\xfa\x45\x1a\x79\x12\xda\x08\xe9\x31\x2a\x8d\x49\xb6\xf2\x77\xb2\x51\xd3\x2b\x92\xf5\x13\xd1\x12\x6c\x13\xee\x90\xc5\x30\xc5\xf1\x25\xca\xe8\x68\xf8\x9a\xff\x72\x47\x0b\x4b\x4a\x67\x2f\xe7\xe8\x30\x98\xcc\xdb\xb2\x85\x25\xac\x6a\xf6\x9b\x57\x11\xa6\x1b\x84\xec\xbb\x04\x99\xbf\xd6\xa8\x91\x8d\x14\xdc\x61\x57\xa2\xf7\x24\xfb\xfe\xa9\x09\x47\xea\xbd\x29\x96\x00\x11\x21\xed\x3b\x8e\x0e\xf1\x87\x2a\x77\x8d\xb6\x9d\x92\x83\xdf\x27\x8f\x96\x88\xb6\x2a\x8d\xf9\xae\x2f\x21\xee\x82\xa4\x4f\xba\x7c\x22\xa9\x35\xd0\xd0\x21\xdc\x60\x40\x39\x40\xfc\x02\xf7\x97\xef\x74\x14\x66\x9f\x8b\xb0\x8f\xde\x95\xa2\x6e\xa3\x57\x12\x24\x50\xe2\xb1\x5e\x16\xce\x52\x88\x31\xb0\x75\x48\x0c\x48\x4a\x0c\x2f\xac\x69\x5a\x1a\x6e\x58\x7d\x82\x90\x20\xdc\x57\x53\x31\x18\xb8\xea\xb7\x67\x97\xa8\xd3\x2e\xcf\x23\x14\xc6\x46\x4b\x9b\xf4\x4d\x8e\xd0\x1b\xdb\xef\xc3\xe3\xf7\x6d\x18\x46\xf8\x24\x64\x69\xcc\xd7\x85\x1e\xc9\x53\xe9\x6d\xd8\xb5\xfa\xcb\xc7\xb7\x15\xf8\x35\x46\x0c\xbb\xaf\x14\xc0\x12\xb6\xf1\x87\x64\xb3\xf8\x93\x8c\xed\x6e\x69\xa6\x68\x35\xca\x51\xf2\x6b\xb2\xfe\xa4\x17\xa1\xe0\x24\x96\xf9\x2c\x83\xbf\xf9\x91\x07\xff\xf6\xa7\x26\x72\xc7\x1f\xc3\x42\x4f\xe4\xf1\xf5\xba\xec\xe6\xfc\x79\x13\x3e\x17\xd8\x35\x3d\x18\xf2\x5d\xa9\x3f\x2d\x3e\x93\x30\x7b\xaf\x35\x26\xf7\x71\xa8\x9b\x03\xba\x56\xbc\xc4\xa1\x24\x9a\x50\x05\x57\x35\x2b\xfd\x77\x16\xda\x27\x14\x1e\xa4\x86\x24\xcf\x49\xad\xbe\x59\xd1\x10\xb1\x24\x08\xb3\x2a\x7e\x35\xe8\x70\xc4\x09\x90\x4a\xb4\x29\x72\x6a\x46\x1d\x71\x5c\x4d\x84\xe7\xb0\x3c\xda\xb5\x51\xc4\x11\xdd\xe8\xac\xaa\xf7\x4d\xea\x93\x94\x84\x54\x83\x28\x9d\x80\x3a\x17\x32\xab\x2c\x93\x07\x03\x31\x1d\x26\x3d\x25\x03\x11\x53\x19\x97\x80\x98\x81\x8a\xb6\xb1\xb7\xb3\x72\x30\x7b\xca\xb3\x12\xf1\xd6\xa0\xb1\xdc\x0d\x67\x58\xc2\x56\xc9\xa0\x57\xa5\x40\xe2\x57\x4f\x1e\xa3\x7e\xb9\x2b\x8a\x19\x2a\xcf\x14\x18\xa5\x86\xc4\x84\x05\x96\x79\x4f\x39\x8b\x38\xbc\x39\xa3\xb9\x74\x78\x34\x85\x52\x64\xd0\xd5\x6b\x2c\xc6\xdd\x5b\xc3\xe7\xd2\x97\x2b\xbb\x3b\x96\x26\x47\xb6\x11\xf6\xea\xa8\x7e\x92\xb3\xfe\x34\xe3\x8a\x7f\x9a\xb9\xb6\x1a\x8b\x6e\x83\xa1\x87\xd6\xa8\xea\x37\x79\x47\x99\x5a\x49\x63\xd1\x75\x51\x3c\xd1\x18\xb1\x5d\xf1\x66\x99\x43\xa5\x01\xdd\x5e\xdb\x72\x9f\xca\x98\xb0\xdc\x57\xb5\xb1\xbd\x6c\x73\xaf\xf6\xf2\xce\xd7\xf5\x22\x75\xbb\x5f\xde\x74\x58\x86\x5d\xbd\xf1\x4b\x87\x16\x1b\x13\x0b\x29\xfd\x1d\xed\xdb\x6a\x87\x2a\x57\x15\x19\xe5\x1b\x15\xfc\x15\x7b\x95\x6f\xa8\x06\xea\xe8\x9b\xc9\x38\xf3\x05\x93\x26\x1c\x14\xbe\x6e\xf4\x1e\x32\x5c\xe6\x3d\x21\x3b\x97\xb0\xc5\xdd\x4f\x5d\x96\x16\x53\xe1\xc3\xea\x68\xee\xeb\xe4\x79\xdd\x59\xde\xf6\x83\xf9\xac\x71\x9f\x01\xad\x2e\xa9\x2e\xb3\xae\x8c\x5e\xa8\xc1\xb4\x51\xa3\x39\x97\xfd\xa6\x37\x7b\xc4\xdb\x74\x85\xf2\xec\xf6\xcc\x09\xdb\xf5\xef\xbf\xef\xef\x23\xb9\xf1\xef\x75\xc2\x69\xb1\xd1\x34\xd1\xb4\x51\xe5\x61\x6e\xfe\xb3\x9e\xfb\x2e\xa3\x0e\x05\x36\xa9\xd6\xb7\x2c\x7d\xad\x78\xac\xf9\xed\x5c\x1d\x70\x9c\x3f\x78\xbf\x0f\x32\x4e\xd0\xca\x45\xae\xfd\xd8\xcb\x3d\x73\xb4\xf3\x27\xab\x3d\xe7\xd3\xf2\xac\xb4\x24\xf3\x6d\xf4\xdd\x4c\xd2\x24\xa7\xd8\xc2\x48\xb1\x20\x33\x5f\x7a\xaf\x68\xf7\x1d\xb7\x45\x77\x3f\x4f\x7c\xef\xaf\xbe\x51\x81\x7c\xe1\x02\xb1\x66\x19\x8a\xc5\x92\x4d\x78\x43\x4a\x4b\x77\x8e\x78\xff\x28\x61\x35\x71\x60\xb0\xf5\x63\xa9\x7e\xe9\x58\xec\x8d\xbc\xb8\x6c\xb2\xb4\x9b\x09\x18\xd1\xe8\x61\x9a\xa1\x8c\xc1\x31\xa1\x82\xa1\x0b\x11\x6d\xd1\x71\xf1\x3d\xc9\x16\x59\xd7\x8a\xd7\x6b\xdb\x3b\x56\x47\x2d\x36\x64\xfe\x62\x69\x65\x16\x5a\x06\x45\x9b\x49\xca\x9c\x9b\x2d\x6a\xbf\x54\xdd\x2a\x3a\xce\x29\xca\xd4\x4d\xed\x4f\xdc\x49\x94\x4f\x7e\x9c\x6a\x9c\x9e\x97\xe5\x9f\x8b\x56\x7c\xb7\xbc\xa2\x76\xa0\x7d\x61\xf8\xee\xfc\xe9\xf6\xe8\x5f\xad\xf5\xee\xec\x5c\xce\xe0\x87\x16\xaf\xc1\xb7\x9d\x4d\xad\x5c\xf5\xe4\xd5\xa0\x62\xaf\x94\xa5\x50\xae\xa0\xa2\xb0\xbf\x78\xae\x0c\xb3\xc2\xb5\xa6\xa2\x09\xad\xed\x4a\x37\xc1\x08\xcf\x4c\xd8\xc6\x93\x93\xca\xbf\x4a\x38\x3d\xdd\x49\x9b\x67\x5a\x26\x6b\x8f\x98\x30\x1e\x0e\xed\xd5\xee\x7c\xd9\xd6\xd7\x64\xd1\xc0\xda\x50\xd1\x78\xb5\x09\xaf\xb5\xb7\x23\xa3\xbb\x75\xc0\x77\x54\x7f\xda\x62\xa1\x76\x0b\xff\xd8\xef\xef\xfc\xd0\x3c\xd2\x16\x35\xb6\x7f\xac\x06\x2f\x06\xcd\xf0\x8c\x05\x8c\x0c\x0d\x8c\x0d\xdc\x19\xa0\x19\x08\x1a\xc4\x1a\x45\x1f\x67\x9c\x26\x98\xdf\x58\xe1\xde\xb9\x78\xf4\xfa\x9f\xb9\xe1\xeb\x80\x05\xfa\xff\xc5\x2d\xc7\x75\x8f\x65\x9c\x05\xec\xb9\xfb\x73\xd6\x73\xba\x8b\x5b\x4b\x6c\x6b\x1d\x5b\x7d\x07\x1f\x4e\xee\xfc\x27\xee\xff\x37\xd7\xc9\x83\xc3\xfe\x83\xf8\xc3\xc7\x07\x79\x87\x49\xc7\xb6\xff\x27\x9c\x87\x26\x3b\xc3\x1b\xd4\xab\x9f\x17\xbb\x16\x8a\xe7\x51\xe6\x3a\xe6\x55\x17\x7a\x97\xc5\x36\x44\xf7\x90\xff\x3b\xef\x91\xd2\x36\xd2\x2a\xde\xa2\xc3\x0c\xea\x84\xc2\x88\xf5\x60\x60\x3f\x7a\x1f\x5f\xaf\x47\x2f\x49\x1f\xd9\xf0\x95\x89\xc1\x85\xc5\x3d\xa3\xff\x38\xf2\xdb\x4d\xf1\x25\xca\xe9\xe2\x91\x8e\x01\xbe\x6e\xe9\x36\x87\xa6\xf4\x86\x6f\x75\x74\x35\x9d\x35\x17\x6b\x3e\xd7\xe4\x36\xe1\x76\xb2\x8d\x62\xad\x38\x1f\x48\xfe\xcb\x1d\xb3\x6d\x4b\x2f\x91\x4d\xb7\x8d\xa0\xf7\x98\xb4\x8a\xd5\x5f\xa9\x32\x2a\xe3\x2d\x54\xc9\xa3\xcf\xa9\xcf\x36\xc8\x92\xce\xf6\xc9\xfb\x50\x98\x58\xad\xd7\xa9\x35\x36\xb0\xd2\x74\xac\xf6\x77\xfe\x63\xea\xb5\x5b\x73\x86\xa3\xa4\x3d\x0f\x5b\x4e\x6b\xe9\x4b\x4d\xf2\x6f\x65\x2d\xa7\x44\x26\xde\x8a\xbb\x15\xed\x1c\x95\x11\x19\x17\x85\x13\xd7\x9d\x42\x53\x60\x57\x13\xd5\x9d\x3a\x79\x75\xad\xf9\x24\xe3\x2f\xe3\x93\x6f\x5c\x9f\xb9\x3f\x84\xdc\x7e\x5a\xb7\x53\xf6\x2b\x6f\x3b\x9d\x29\x61\x24\x72\x3a\xd4\x32\x40\xc7\x57\xd8\x6b\xc0\x33\xc5\x73\xd2\xeb\xb9\x2f\x4e\xd8\xc7\x94\x81\xa2\x8b\xf5\x2b\x7d\xaf\x66\x49\xb6\x43\xfe\x2c\x61\x73\x7d\x06\x63\x40\xa4\xad\xaf\x5a\xb7\x70\x38\xa3\x31\xa1\x22\x42\x2a\x30\xd2\x6b\xc0\xed\x9b\x83\x99\xcd\x96\x55\xb6\x85\xb8\xc5\x25\xeb\x46\xfb\x1f\xde\x8b\x91\x16\x19\xcc\x25\x2e\xcd\xa2\x83\x8e\x0b\xaa\x7b\xd5\x7f\x78\xfa\x15\x4b\x6a\xc3\xc2\x6d\x3f\x2a\x4b\xf2\x72\x53\x9d\xa2\x43\x83\x62\xbc\x02\x9d\xb1\xac\x75\x4c\xe7\x0d\xb6\x75\xfd\xb5\x02\x35\xca\x34\x90\xb4\x35\x4d\xbe\x3a\x26\xf9\x05\xc4\x5e\xcd\xbe\x50\x59\xd0\x9e\x3f\x56\xbc\x26\x71\x3a\x79\x2e\x61\x57\x72\xba\xa4\x3b\xb0\xf6\x69\x7e\x49\x4a\x64\x64\x96\xbf\x88\x9b\x9a\xed\x45\xd3\x4c\x5d\x5f\x35\x75\x45\x8b\x9f\x1c\xb2\x46\x52\xb5\xd2\x6f\x7e\xe2\x68\xa9\x9a\x9d\xb8\x1e\x06\x39\x26\x36\x15\x3c\xad\x6b\xea\xbf\x3b\x3b\xba\xdb\xf5\xdb\x3d\x64\x8d\x8d\xb4\x5a\x94\x32\xa6\x2b\x46\x4b\xfb\x13\xb9\xf0\x5b\x11\x18\x1c\x6b\xbc\x54\x48\x95\x42\x16\x8d\x10\x28\xe4\xcd\xe2\x36\xe0\x99\x15\x99\x93\x8f\xd4\x43\xb5\xce\xf0\xfa\x18\x7e\x98\xd6\x52\x16\xdd\x9a\x34\x16\xbc\x96\x7e\x2e\x61\xd5\x67\xe8\x4d\xc3\x85\x7c\xf4\xf8\xd2\xa0\x17\xae\xd6\x96\x71\xfa\x3f\x54\x89\xe4\xca\x45\xf9\x79\x37\xd9\xea\x7f\xf0\xd0\xef\xd2\xdf\xfb\xae\xcd\x03\x24\xe2\x54\x4c\x8c\xcc\x1c\xdf\xf9\xcf\xc7\x93\xe6\xe3\xd5\x4b\xf7\xcb\xce\x9f\x1e\xfa\xc3\x12\x56\x30\xfa\xc7\xaa\x63\xb2\x41\xa4\x8a\x97\x88\x2d\x8e\x81\xab\xea\x47\x59\x1e\x61\x3c\x2e\x27\xa6\x55\x6a\x5b\xb2\x87\x24\x72\xc4\xf8\x14\x3e\xcc\xd2\x82\x6f\xe5\x9c\xb4\xd4\x2d\xfb\x3d\x91\x23\xb2\x32\x36\x2b\x28\x3b\x1a\x26\x1b\xb6\x92\x11\x12\x68\xfa\x2e\x54\xdc\x4b\xcb\x0f\x89\x74\xb9\x6f\x1a\xa3\xf9\x45\xee\xa5\xb0\x29\xa7\xd8\xf7\x47\x94\x14\x5f\xef\x7f\xb4\xc3\xee\xc7\xd9\x23\xd2\xa0\x43\xe6\x4c\x17\x37\x51\x79\x61\xcc\xed\xb4\x18\xa4\x97\xa4\x59\xcc\xd2\x7c\x34\x1a\xb4\x56\x05\x4b\x58\x1e\xec\x2d\x2c\xf7\x48\x69\x0c\x0c\xb3\x13\xd1\x1f\x50\x52\x17\x2b\xe2\xd6\x60\xba\x4f\x29\x4e\xf4\x06\xf7\x09\x7a\xc4\xeb\x55\xb4\x11\xfc\xbb\xe4\xc4\xcc\xea\x82\xed\xbf\xa6\xf5\x54\xec\x48\xfd\xbe\xc5\x13\x16\x18\x35\xfe\x1c\x92\x5b\x79\x73\x1a\x75\x26\x61\xcd\xb1\x57\xa3\xec\x63\xc2\x8c\xef\x8e\x75\xa0\xf6\xfe\xcf\x18\xc1\x78\x56\x52\xea\x8e\xaf\x15\x78\xa4\xe8\xaf\x5e\x51\x3c\x3b\x40\x19\xc5\x76\x21\xe1\x60\xd4\xe7\x93\x90\xcd\xd7\xce\xb2\x56\xf7\xf9\x19\x4b\x9b\x77\xa3\xae\x73\x80\x7e\xb1\xe7\x18\x42\x10\x6b\xb7\xfb\x91\xcb\xc3\x03\x66\xbc\x03\x2d\x5a\x34\x4a\xa4\xf2\xf9\xec\x18\xb7\xbf\xb5\x11\x36\x60\xdf\x7e\x27\x80\x8a\xfc\x3a\x07\xf5\x18\x33\xe4\xeb\x13\xfa\x1a\x5e\x6a\x19\x01\xad\x50\x2b\x33\x6f\xa6\x68\xf3\x5c\xde\xba\x8f\xfd\x02\x8b\xcf\x8e\xd6\xcf\x24\x6c\x71\xd5\x4d\x56\x7f\x08\x12\xb4\x45\x53\x67\x55\x0d\x12\x6f\xe1\xb5\xa5\xe3\x25\xe7\x21\xfa\x44\x10\x8e\xfb\x1d\xcb\x0c\xa3\x11\x53\x10\x97\xe6\x2b\x33\xc3\x17\x5e\x6e\x99\x62\xad\x60\xab\x62\xef\xb1\x18\x9c\xdc\xd8\xba\x6f\x03\x2f\x17\x9b\x8e\x55\xa0\x3d\x8d\xd7\xaa\x92\x57\x19\x4e\xe2\x20\xa1\xa9\x2a\xb6\xcd\x36\xce\xc1\xfb\x03\x89\xde\x84\x5a\x90\x8c\x8e\x18\xe3\x73\x27\xe1\xe2\x67\xd6\x2f\x1f\xc9\x72\xbf\xd3\xf1\x27\xcb\x15\xea\xe2\xda\xac\xfa\x34\xc5\x06\xe5\x15\xd6\xc7\x0e\xb4\x2d\x6d\x1f\xef\x41\x77\xa1\xdb\x1d\x56\x52\x12\xbd\xe0\xe2\xab\xfb\x53\x32\x91\xa5\x86\x8f\x8b\x67\x8b\x8b\x87\xb9\x95\x21\x8f\x66\x9a\x72\x83\xe2\x33\xa5\x01\x95\x09\x6d\x3e\x8b\x95\x90\xb9\x7c\x92\xc1\x37\x87\x4f\x01\xe4\x89\xc8\x45\x7c\x4d\x5c\xc3\x8d\x2b\xde\xa7\xd0\x1e\xdd\xae\x19\xa9\xaf\x66\x4f\x0c\xf2\xcc\x35\x4c\x92\xb1\xe7\xe9\x92\xda\x94\xba\x26\xbc\xc1\xaf\xc8\x65\xc8\xa6\xc8\x9c\xf9\xe3\x23\x73\x38\x0b\x60\xcd\xe4\x15\x11\x9f\x54\x71\x31\x7e\xe2\x6c\x17\xe2\x97\xdc\x52\xe2\xd6\xda\x36\xf6\x78\xbd\x1b\x61\x1b\x4c\xa7\xcd\x9a\xf0\x33\xde\x05\xb0\x9b\x03\xc5\x7a\x89\x4d\xb5\x1d\x95\xbb\x72\x8d\x52\x5e\x62\x7a\x42\xc8\xfc\xde\x7c\xf8\x7c\xd6\x02\xdb\x82\x79\x62\xc7\xb2\x76\x9a\xea\x16\xb9\x1e\x64\x11\x42\xe9\x7b\xe5\x2d\x1d\xed\x93\x6b\xdb\x9a\xe7\xeb\x7a\x09\xb7\x13\xb3\x80\x24\x6c\xc2\x46\x4d\xff\x91\x09\x99\xb1\xb4\x3e\x86\xa6\x8b\x8a\x86\xbc\xb6\x1c\xb3\x74\xa3\x94\xb5\xd4\xb6\x0c\xe7\xcf\x3b\xbf\xc2\x54\xc3\x0c\xd8\x6d\x42\x7c\x6e\xc6\x38\xe7\x64\xd7\x3e\xea\x1d\x9a\xcd\x3d\xc0\x3d\x97\xb0\xe5\x33\x98\x5f\x7e\x2d\xa6\xd9\x63\xc7\x76\xc2\x80\xc6\xbe\xdf\x86\xd1\x54\xc9\x40\x57\xe7\x8a\x66\xa0\xaa\xb7\xaa\xa8\xaa\x89\x7a\xa0\x66\x91\x36\xa5\x21\xaf\x45\x8d\xcb\x87\x80\xda\xc4\xcc\x02\xcb\x06\xe2\x41\xc1\xc5\x83\xa3\xdf\xbc\xef\x61\xed\x38\x45\x8d\x57\x72\x47\x04\xa9\x67\x9d\x9f\x8d\x4f\xa1\x27\x83\x43\xa8\x2d\xb3\x05\xa7\xa9\xb8\x11\xb7\x61\x9e\x91\x87\x09\xa1\x59\xb6\x65\xa6\x2d\xa9\x0b\xb2\xcf\xb3\x08\xac\x34\xc2\x92\xa5\xd6\xa9\x51\xde\xb5\xe7\x7f\xb4\x52\x73\x82\x4d\x1c\xc5\x68\xa9\x9f\xc3\x3c\x62\x4b\x23\xd5\x83\x46\xfd\x3d\xbd\xc2\x5d\x73\x1d\x5d\x1c\x3e\xd9\x4e\xdb\x37\x3a\xd2\x39\xeb\xbb\x4d\x78\xd7\xfb\xb7\x84\x7f\x4a\xcc\xc9\x95\xa8\x8c\xed\x7c\x3a\x75\x63\x2b\xe8\x8f\x12\x96\xbb\xfa\x3c\x1b\x13\x8a\x1e\xa5\xd8\x47\x38\xa4\xb7\x27\x3f\x8b\x1e\x8d\x70\x0a\x5e\xf6\x37\xf2\xf1\xf6\x6e\xf7\xc5\xf0\x6f\x0a\xbc\x13\xe2\x18\x41\x1b\x93\x96\x5c\x96\xed\x54\xf6\xae\xa9\x6e\xa0\x74\xb6\x69\x5f\xe4\x8f\x12\xb6\xc4\xe6\x44\xfa\x40\x7d\x45\x91\x75\xd5\xc3\x52\xcf\x3c\xa9\xcc\xdd\x54\xde\x84\x96\xb8\xca\x68\xfb\xa8\xf1\xe8\x8d\x18\xaf\xf8\x8f\x49\x5b\x19\xec\x39\x21\x05\x7b\x15\xaf\xeb\x3d\xbb\x9f\x8f\x6f\xaf\xa4\x1c\x73\xff\xd9\xda\x6e\xd9\x4f\xa3\xf4\x8a\x37\xb8\x96\xa4\x36\x49\xd7\x4c\x96\x97\x15\x6b\xe6\x27\xe5\xdc\xc9\xf4\xcd\x2c\xc9\x76\xcd\x51\xcd\x47\x2e\x7a\x53\xf6\xad\x7a\xab\xa1\xa0\xfd\x59\xaf\xcd\xc4\xad\x05\xe9\x5d\x9d\xbf\x7a\x8c\xd3\xd3\x4d\x9c\xe9\xa2\xfe\xf7\xcd\x9e\x7d\xa7\x5d\x03\x6d\x0f\x9a\xd8\xea\x6c\xab\x6e\x56\xc4\x96\x7f\xaa\x28\xaa\xdc\xae\xed\x6a\xcc\x6b\x71\xed\x6a\x1f\xa4\x1a\x6f\x98\x1b\x5d\x93\xfe\x1d\x8b\xfe\x65\x1e\xe4\xb3\x29\x43\xdf\xe6\x44\x26\x7a\x86\x39\x07\x78\x7b\xc9\x3b\x31\x3b\xde\xb5\x3f\x6c\x57\xec\xa2\xec\xa9\xe8\x3f\x18\x19\x98\xba\xb6\x70\x73\x8d\x63\x8f\xf8\x54\xf7\x9f\xf9\xe1\x6b\xd1\x6c\xeb\xd2\x06\xc5\xd2\xde\x6c\xcd\xf4\xe1\xe4\xdb\xf1\x9b\xe3\xc7\x13\xad\x13\xcd\x33\x4c\x0b\xa2\xcb\x9b\x5b\xca\x7b\xae\xa7\x89\xff\x89\xfb\xff\xfe\x75\xc2\x73\x70\xb2\xcf\xb0\x17\xb9\xbb\xb4\xf7\x72\x2f\xe6\x40\xe9\x54\xeb\x7f\xca\x79\x54\xb2\xa7\xb5\x45\xb0\x5a\xb3\xb4\x37\xc7\x39\x17\x36\x63\x39\xd3\x3b\x23\x38\x97\x32\x2f\xb5\x52\xbe\x43\xf3\x5f\x47\xa5\xd8\xe3\xd9\x60\x5a\x5c\x9f\x15\x9c\xbc\x3f\x6a\x39\x78\xb7\x4f\xac\xa7\xb1\x3b\xb9\x2b\xab\x8b\xa3\x07\xb5\x8f\x65\xb4\x68\xce\x7a\x4f\xe8\xdf\xb9\x8f\x5f\x6e\x35\x2c\x2f\xcc\x46\x8f\x53\x0e\x86\x74\x87\x75\x60\x37\x7b\xd7\xe7\xd4\x5e\xae\x46\xab\xd4\xab\xb4\xa8\x1c\xae\x66\xad\x5f\x6f\xc3\x1a\xd6\x5f\x50\xd8\x7f\xfe\xcf\xfc\x7b\x5a\x2b\xc3\xb3\xd5\x63\x4a\xfd\x84\x1d\x48\x8d\xae\xd5\x44\xe5\xbe\xc5\x1c\xf9\x3c\xd9\xf8\x99\x2b\x99\x97\xd2\x66\xd3\xc3\xb3\x18\x73\x0f\xab\xb5\xdb\xc7\xc6\xca\x97\x92\xf7\xd2\xfe\xce\xbf\xd3\xb1\x68\x33\xc1\x33\x80\xdf\x2e\x5b\xd7\x57\xa1\x5d\x44\x91\xf3\x23\x4d\x22\xe9\x59\x2c\x4f\xf4\x52\xc4\xd3\x70\xeb\xb0\xd9\xf0\x82\x48\xc5\x84\xd1\xbc\xaa\xea\xde\xce\x98\xd1\xf0\x65\xcb\xc3\xb9\xbf\x8c\xcf\xb4\x10\x3e\x86\xd1\xfd\xa5\xa9\xa0\x32\xba\xd0\x31\x4b\x2f\xc9\x27\x66\x35\x0c\x3b\x90\xd7\x77\xcf\xeb\x91\xfb\x0b\x37\x6f\xb7\x5c\xb7\x5a\x2f\xdd\x10\x96\x24\xd6\x7c\x8b\xda\xe4\xee\xbc\x89\xb6\x8d\xbf\xac\xe9\xd5\x97\x13\x1c\x9d\xa9\x75\xfd\xa5\x01\xd9\xc7\xc9\x94\xd1\x38\x21\x04\xbe\xc4\x6e\x2c\x8e\x31\xb6\x5f\x2c\xfb\xcc\x32\x4d\xb7\x8d\x4f\xcc\xf6\xac\x63\x3d\xa2\xc3\xed\x52\x51\x0b\xcd\x1a\x2f\xf4\xeb\xcc\xba\xec\xe0\xfd\xce\xbf\x1f\x32\x7b\xd2\x67\xdd\xd0\x5e\xb2\x9b\x65\x11\x2f\x19\xf6\xc4\x0f\xcd\xed\xbd\xed\xb1\xb9\xaf\x41\x9f\xae\xa1\x66\xa2\x5a\x96\xea\xb2\x4a\x83\xc6\x4f\x83\x54\x87\xdb\x3e\x32\x91\x02\x19\x3c\xa5\xf1\x2d\xb9\xc3\xb1\xcb\x4c\xc7\x3f\xce\x25\x6c\xb9\x4c\x48\xb4\x75\x57\x88\x65\x5f\x8d\x4b\x0d\x3e\xf5\xec\x75\x50\xb3\x08\x30\x68\xd4\x34\x52\x0a\xf9\xf5\x59\x3a\x5d\x12\x57\x3c\x4c\xfc\x81\xd4\xa2\xda\xa8\x71\x8e\x93\x9d\xbf\x7b\xac\x69\x8e\x7e\xd5\x46\xb7\xe5\x54\xd1\xd6\x6f\x68\x6c\xed\xd1\x50\x61\x63\x7d\xe1\xc3\x24\x8c\x50\x5e\x8f\x43\x3b\x31\x93\x27\xda\x59\xca\xdd\xb2\xc7\x62\x63\x02\x2a\x3c\xf1\x9c\x7a\xec\x14\x1c\xae\x02\xab\x72\x3c\x5a\x2a\xe6\x31\xae\xed\x21\xa5\xc9\x5d\x45\xf8\xcd\xc2\x43\x8b\xcb\x28\xc7\x26\xb0\x84\x65\xfb\xfe\x2f\xd5\x07\x39\x77\xa3\x16\x7c\x28\xec\xd1\x8c\x4f\x35\x1a\xe5\x2b\x25\x84\x04\x3a\x38\x89\x7e\xbc\x61\xf0\xa2\x71\xa3\x22\xa5\xfd\xc8\x81\x2b\xc2\xa4\xf0\x43\xcf\xc1\xe6\xc8\xe7\x41\x74\x54\x36\x4d\x35\x6f\xf7\xcc\xcc\xfe\x0e\xc2\x5f\x2c\x14\xf5\xf8\x57\x48\xa5\xf6\x84\x2c\xba\xb4\x99\x13\x68\xe3\xfd\x32\x13\x53\xe0\xbd\xce\xfa\x96\x2e\x8f\x6c\xe1\x2b\xe7\xa7\x5c\xc2\x6d\xd2\x5f\x0c\xed\x3c\x74\x52\x68\x6a\xb8\xa6\xec\x2e\xc9\x21\x18\x29\x22\xa5\xd4\xad\x8c\x63\x12\x6b\x87\xb0\x84\x45\xf1\xee\xae\x32\xa5\xa4\xc3\x80\x36\x7b\x7e\x7d\x6f\x25\x2a\x09\x46\x9e\x12\xe6\x67\x34\x6f\x48\xf0\xf0\x8b\x30\xad\xd0\x0f\xde\x13\x12\xbc\xa6\x68\x61\xb1\x15\x4a\x95\x17\xd5\xdb\xb7\x33\xf6\x7b\x1d\x17\x9c\x2f\xdd\x88\x33\x18\xb6\x54\x7f\xa2\x70\x26\x61\xe9\xa8\xfb\x76\xc9\x54\xc2\xb2\xb7\x90\xb5\xa4\x96\xb3\x9c\x90\x40\x19\xcb\x00\x0d\x3e\xb1\xe2\x47\xcd\xf7\x6e\x28\xb3\xc8\x15\xaf\x48\xb0\xb2\xbe\xba\xd3\x2f\xf3\x74\xca\xf8\x69\x2e\x5b\x36\x7a\x39\x45\x93\xe7\x90\xd6\x56\xf6\x0d\xce\xcf\x1f\x42\x68\x6c\xed\x65\xcf\x93\xb2\xb9\x58\x0a\xcf\x00\x0b\x3f\x35\x5d\x49\x27\xee\x19\x06\x61\xd2\x5c\xfc\xbe\x0f\x52\x28\x32\x4f\xae\x3e\xb8\xf4\xec\x19\x7a\xc7\xa7\x5a\x1a\x54\x4e\x43\x49\x0b\xb5\x29\x73\x46\xf7\x93\x48\xb2\x2c\xcb\x6a\xe7\x5e\xb4\xb9\xe2\x7d\x57\x68\x3d\xc5\xf7\x7d\x4f\x21\x4c\x7a\x64\xb1\x65\x9a\xaa\xe6\x28\x86\xc4\xb6\x4f\xcd\xfc\x85\x07\x1b\x13\x4d\xec\x65\x2d\xf2\xf3\x67\xca\xcf\x51\xd1\x42\x08\x76\xa9\xe6\x39\x32\xc4\x57\xd5\xa8\xcd\x8c\xdd\x7d\x22\x98\x33\x9f\x57\xe1\xf6\xa0\xcc\x06\xec\xb3\x42\x7b\xe2\x60\x28\x2b\xd3\x3a\x30\xdc\x3a\x40\x55\x49\x68\x5b\x58\x94\x25\x9c\x2a\xec\x73\x06\x9e\x04\x66\xc9\x7b\x2e\x34\xf6\xb7\x2f\xd0\x5e\x7d\x40\x22\xf4\xa5\x16\xe2\x28\x95\x7c\xa8\xd6\x68\xfe\xca\x7d\x2c\x42\x38\xb3\xa7\x1a\xa3\xe7\x64\xa6\x73\x6f\xe6\x4c\xc2\x61\x69\x5b\x74\xfe\xf5\x30\x7d\x7b\x2a\x75\x7d\x91\x5f\xdf\x03\x98\x98\x69\x54\xc9\xc9\x49\x7a\x3e\x27\x12\x20\xe3\x96\xe1\xc8\xe3\x7a\x7e\xe4\x23\x12\xa2\xfd\xca\xf5\x49\x0a\x45\x83\xcb\xf2\xb2\xe7\x52\x94\x6b\x76\x65\x0d\x59\x6f\xea\x3c\xeb\xc1\x7d\x58\x1b\x3d\x14\x25\x43\x31\x0e\x2e\x36\xda\xe1\x12\x77\xbf\x67\xb2\x98\xb2\x32\x32\xd1\xd2\x61\x53\x3e\x25\xa3\x24\x9e\xff\x6a\xf9\x75\x8a\x24\x82\xbc\x8b\x11\x8b\xf7\x95\xac\x82\xd6\x98\xd5\x92\xb7\x5b\xcc\x8d\x5c\xa1\x3a\xcb\xfe\xd5\xc5\x0b\x47\x50\xa4\xb1\xb7\x32\x72\x5c\x13\x95\x14\xee\xd1\x66\x78\x51\xea\x22\xbb\x87\x80\x96\x50\x33\xf7\x29\x9b\x37\xd3\x00\x63\x1e\xad\x27\x4d\x1a\xed\x2a\x7d\x2d\x23\x11\x6b\x9d\xe0\xd5\x5f\x40\x8f\xd0\xce\xc8\x5f\x20\x3e\xa9\xc0\xb2\xd1\x62\x68\x67\xe5\xde\xa9\x04\x64\xd9\x3a\x66\xbf\x37\x6d\x64\xea\xf8\x3b\x9a\xe9\xfc\xcc\x10\x91\xfc\xb5\x24\xd3\x2c\x96\x2c\x98\xc2\xeb\xc9\x45\xc4\x2e\xc4\x56\xc1\xce\xc1\xc1\xc9\x95\xc6\x67\x22\xce\xaa\x84\x6d\xa0\xe8\xd0\x1d\x74\x35\x19\xbd\xf8\x55\x73\xfc\x68\xf8\x1a\xd3\xf9\xce\x58\x21\xea\x74\xca\x53\x0f\x89\xb6\x7a\xaa\xad\x29\x1f\xa8\x25\xae\x26\xa7\x20\x2d\x77\x5f\xf2\x9a\xa8\x85\xb0\x88\xe0\x84\xd0\xac\x48\x86\x58\x8d\x54\xdf\x2f\x3d\xf5\x65\x33\x7e\xd7\xab\xa1\xee\xa9\x4b\xe5\x1d\x1d\xb6\x13\x5f\xb7\x7f\xcb\x94\x6e\xe5\x0c\x30\x97\x3e\x8c\x74\x76\x3d\xb6\xec\xd4\x1e\x33\xf7\x33\xd2\xd6\x4d\xd7\xbc\xa3\x1c\xa8\xc0\x2b\xd7\x29\x97\x21\x37\xfb\x2b\x57\x71\x48\xd5\x58\x73\xdc\x80\xdb\xc6\xc9\x73\x26\x22\x2e\x73\xb4\x2a\xb8\x7b\x7b\xda\x70\xd7\xfe\x5c\xc2\x21\xcd\x28\xa8\x42\x4d\xe4\x0c\xa5\x70\x9d\xb3\x18\xd3\xd5\xb0\x2f\xb5\x7e\x66\xfa\xc6\xc0\x49\xc7\x55\xf3\x97\x46\xa2\x66\xb2\x76\x95\x9e\x86\x51\xbc\x59\xb9\xf5\xb1\x2b\x5b\x80\x6e\xdc\xe7\xec\xc7\xb5\xb7\xfa\xf0\xe6\xa3\x0f\x4c\x7f\xb7\x32\xd3\xaf\xeb\x74\x0a\x7a\x12\x7f\x05\xdf\x75\x53\x0b\xbc\xe5\x53\xe6\x46\xee\x18\x6f\x3b\x6e\xc5\x6b\xd6\x6c\x3a\x63\xb6\x65\xb9\x65\xf3\xd5\xe1\xb9\x8b\xa4\x67\x4b\x00\x76\x44\x4e\x2a\x57\x71\x42\x63\xfb\xc0\xe1\xf2\xa3\xe3\x3f\x78\xc0\x85\x84\x1e\x8f\xda\xbe\x3c\xad\x84\xc6\x10\x9a\xb8\xf8\x08\xd5\xe0\x5d\x3f\x3a\xef\x6c\x8f\xa7\xae\x86\x2e\x3e\x6e\x97\xdd\x79\xbc\xbe\xfb\x61\x07\xee\x45\x98\xc5\x5a\xa5\x34\xe4\xf5\x55\x7a\xb7\x97\x8d\xe6\xaf\x92\xff\xd1\x52\x6e\xf8\x4e\x79\x76\xb9\xd6\x10\xe7\x75\x16\x74\x85\x3f\x49\xf3\x4e\xfc\x18\xcb\x16\x31\x1e\x8a\x1a\x5c\x18\x44\x1a\xb4\x13\xda\x17\x49\x16\x4b\x94\xa8\x96\x8e\x9c\xeb\x5e\x94\x50\xbd\xd1\xfa\x78\x40\x6a\xee\xfb\x8e\xd4\x9f\xad\xed\xda\xce\xc4\x8b\x2e\xbc\x9a\x9e\x82\xb1\xaa\xbe\x52\x8a\x7c\xf4\xac\x97\x69\xba\x29\x69\x89\x99\x09\xef\x93\xae\xa4\x10\xa6\x87\x67\x27\x16\xdc\x2c\xbb\x51\x53\xd4\x1c\xda\xf3\x7c\x98\x79\xba\x78\xfd\xc3\xe9\xc7\x3f\x4b\x38\xf9\xbc\xda\x3f\x71\xbb\xdb\xac\x47\xa7\x23\xab\xc9\xb5\x56\xa4\x42\xa0\x8c\xbb\xb0\xa6\xd0\xbb\xf0\x49\x21\x79\xc9\x83\xb2\xc2\xaa\x92\xba\x9e\x16\xb7\x9e\xb0\xa1\xb2\x49\xd1\xc5\xbd\x6d\xc9\x53\xb6\xd3\xbf\x5d\xc7\x93\x6b\x8e\x93\xb3\x7d\x9f\x9a\xb7\x07\xf5\x7a\xaf\x74\xa0\x37\xed\x35\x1e\x36\x60\xd4\x37\x37\xbc\x6b\xae\x68\xfd\xde\x45\xde\x37\x32\xfa\x7a\xaa\x7f\xe9\xd2\xe6\xf4\x61\xf3\xdf\xb9\x11\x17\xd1\xc6\xc2\xec\xe8\x22\xf3\xcc\xe4\x94\xf2\xc4\xe3\x11\xfd\xc1\xa2\x01\xe9\xc1\x8b\x03\xe3\x43\x6a\x23\xcd\x53\x4f\xe6\x22\x97\x75\xb7\x2d\x0e\x2d\xfe\x95\xfb\xff\xc1\x75\x92\x78\x18\xb3\xcf\xb4\xeb\xb4\x2d\xb0\x4d\xb4\xdd\xb4\xb3\xb0\x97\x72\xf4\xf3\x7f\xc6\x79\x9c\xb8\x67\xb3\xd5\xb5\xfe\x72\xf9\xc7\xc2\xcb\xd9\xa4\xe9\xca\xa9\xdb\xd3\xa8\x93\x33\x53\xf3\x33\xc3\x4b\xeb\x5b\x6b\xff\x85\xd9\x70\x3f\x73\x63\x63\x29\x68\x4e\x73\xd2\x72\xec\xc9\xd0\x9d\xbe\x91\x1e\xbd\x2e\xf1\x4e\xc5\xf6\xa3\x0e\xcb\xce\xf6\x9e\xc6\xa1\x98\xf9\x97\xdb\x04\xff\xce\xbe\xcb\xb2\xba\xbe\xf0\x6a\x92\x6b\x78\xbb\x37\xbe\xc3\xa8\x35\xb1\xd1\xbf\x66\xaf\x2a\xa1\x92\xba\xbc\xa3\x3c\xba\x8c\xa3\xfc\x6d\x8d\x6b\x1b\xf7\x90\xf2\x9c\xeb\x36\xcb\x3f\x71\x1f\xe2\x6e\x7e\x9c\x53\x9f\xc0\x1b\xbc\xd0\x15\xd8\x5c\x5e\xf7\xad\x92\xb7\xb8\xa8\x80\x26\xa7\x31\x33\x2f\xcd\x2d\xf5\x38\xe5\x28\x35\x22\x35\x20\xbb\xbf\x52\xb1\x2d\x65\xf8\xca\x82\xd3\x5e\xef\xdf\x9e\x99\xde\x5a\xfc\xac\xe7\x10\x63\x67\x40\x93\x69\x75\x6b\xc9\xa7\xbc\xa3\x8c\xa8\x64\xa1\xf8\xf2\xa8\xc9\xc8\xb7\x61\x6f\x42\x92\x42\x6e\x87\x3c\x08\xa7\x88\x57\xca\x09\xaf\xe4\x68\xdb\x1c\x6e\x5f\x4c\xdc\x67\xf8\xb3\x84\xcd\xee\x99\x0f\x03\x11\xad\x02\x35\x51\x25\xef\x72\x7e\xa6\x7a\xc6\x53\x46\x36\x04\xb9\xf8\xed\x78\x71\xb8\xcb\x3b\xa7\x3a\x47\x39\xb3\x39\xa7\x78\xbc\x0d\xd4\x48\x70\xcb\x3d\xaa\xe6\xe8\xc8\x1b\x9d\x5b\x35\x38\xfe\xc3\xbd\x1c\x3f\x59\x54\x1f\xa2\x6f\xe5\xae\x7c\x96\x9f\x9f\x26\x11\xe7\x15\x96\xe7\x7f\xe0\x59\xec\xc2\x66\x67\x63\x45\x63\x96\x67\x9c\x65\x54\x67\x38\x60\x3c\x68\x99\xe3\xde\x12\x72\x9c\x98\x50\x80\x5f\xb3\xd4\x3d\x3b\x95\xb4\xf9\x87\xe8\x62\x47\x60\xea\x75\x97\x58\x95\x7b\x5e\x4a\xca\xbb\xa8\x87\x01\x3d\x1e\xd6\x8e\x5e\xd6\x48\x26\x57\xf5\x68\xb4\x5c\xd4\xae\x2b\xcf\x29\x36\x2b\x92\x28\x5b\xeb\xfa\x59\xbf\xf0\xbc\x18\x36\x99\xe2\x51\x54\xdb\xe8\x37\x10\xbd\xa0\xb0\xe7\x76\x2e\x61\xad\x6f\xc4\xa9\x49\xb3\xa8\x26\xf5\x4d\x44\xb1\x6f\xb0\x0b\x9a\xb5\xa1\x31\xb9\x0e\x8e\x6a\xb2\xbc\x96\x0c\x87\x84\x92\xe8\x4f\xe1\x9f\xc2\x5a\xe2\xd7\x95\x15\x0d\x28\xec\xcc\xbd\xf3\xa3\x2c\x33\x15\xca\x4f\xdb\x75\x27\xb0\xd6\x05\xce\x25\x2c\xcb\xf6\x7b\xd4\x9e\x64\x3f\x89\xe9\xf0\x73\x72\xc6\xb6\x48\xd5\xeb\x55\x4b\xfb\x25\x26\xc9\x2f\xf4\x96\x07\x99\xc3\x86\x85\x81\x39\x93\x85\x86\x97\x4b\x2a\x40\x9d\xcb\x78\xde\xb1\x37\x70\x3d\xe1\x5e\xfe\xad\x7a\xac\xfe\xaf\xf3\x2e\x07\x44\xb0\x84\xc5\xf6\x1e\xac\x0a\x96\x34\xbc\x50\x01\x37\x24\x8b\x56\x5d\x73\x65\x27\x99\xcb\xc2\xa7\x3c\xf7\x59\xaa\xe9\x2b\xa8\x32\x29\x84\xbf\xed\x52\xdc\x62\x96\x14\x50\x91\xdb\xd0\x72\xb7\x18\xf7\xa0\x8e\x60\xcf\xb8\x56\xde\xdb\x61\x3f\x79\x6d\xeb\x21\x2c\x61\xe1\xb4\x43\xb0\xd4\x3c\x31\x37\xe0\x93\xfd\x90\x21\x9f\x72\x8d\x34\xbd\x00\x19\x7b\x1a\xc3\x09\xa5\x08\xb1\x00\xc1\x0e\xde\x45\xdc\xce\x2f\x95\x34\x81\xec\xd3\xa2\x9d\x4a\x58\x86\x32\x8e\x57\x02\xfc\x13\xd2\x0b\x05\x9b\x04\x86\xde\xae\x74\x9d\xc6\x42\x73\x50\xec\x0a\x2d\x7e\x19\xfb\xc0\x3b\xc3\x5a\x4a\xeb\x83\x6c\x80\x10\x26\x5b\x18\x5d\xd6\xb7\xaa\x4f\x72\xd8\xfa\xef\x38\x51\xab\x50\x7b\x71\xf8\x48\x6f\x32\x66\xf3\x11\xcb\x72\x6b\xf5\x58\x7d\xf6\x52\x8a\xa6\xc8\x79\x52\x33\xd3\xdb\x39\x5f\x77\x08\xc5\x2a\x8b\xa6\x5d\x36\x25\xf7\x62\x99\xbd\x24\x4d\xe7\x54\xc3\x25\x74\xb9\x7c\x19\x28\xbe\x39\x13\x4c\x63\xe4\xa0\xfe\x40\x7e\xf6\x90\xf5\xe9\x08\x3a\x3d\x61\x2d\xf5\x4d\x0e\x6f\xf1\x36\x55\x5d\xd3\x6d\x37\xed\xf0\xf7\x19\xdb\x95\x4f\xbb\x6a\x66\x4a\xf7\xec\xce\x24\xac\x14\x77\xa5\x97\x24\x78\xf7\x7a\x28\x1b\x8e\x2b\x68\x09\x73\xb0\xac\x52\xbd\xfd\x8c\x81\x99\x89\x6a\xf9\x34\xe0\x1e\xfd\x8d\xbb\x48\xd4\xa8\xa4\x78\x25\xe4\xce\x2c\x9d\xa2\xe8\xca\x8c\xc6\x56\x2e\xaa\xa1\xcf\xd3\xae\x96\xf7\x76\xd2\x4c\x4b\xef\x40\x39\xdb\x75\xa2\x01\x95\x32\xfe\xd8\x06\x73\x4d\x83\x18\xb9\x62\x7e\x8f\xef\x7a\xdf\x8e\x3e\x3e\x40\x9b\x7c\xde\xf6\x28\xf8\xc1\xf4\xfd\x29\xa4\x83\x57\x83\x38\x53\x64\x32\x2c\x9f\x85\x75\x94\x30\x8c\xac\x9d\x59\x43\x70\x52\xf5\xca\x3f\xb4\x4f\x4d\x61\xef\x4c\x9d\x49\xd8\xbb\x31\xe4\x91\x29\x12\x78\x62\x39\xaf\xdc\xc5\xdf\x42\x67\x4e\x77\x9d\x18\x03\x7b\xeb\x3d\xd9\xdb\xeb\x28\x42\xcf\x57\x9f\xdf\x7d\x11\x8d\x1a\x8a\xa3\x4c\xe6\xcd\xbc\x2d\x5c\xae\x98\x60\xcc\xea\x72\x2b\xf4\x73\x6a\x59\xb9\x6f\xe7\xde\x14\xeb\x0e\x14\xbb\x1f\xb5\x4f\x78\xe7\xfe\x08\xd5\xb4\xcd\x54\xfd\xce\x9f\x4e\xab\xff\xe9\xc1\x57\xdb\x2f\x8f\xf0\x23\xb0\x47\x30\x0a\xd1\xf5\xd1\xca\xd1\x5d\x3e\x8c\xe2\x15\x91\x55\xb1\x92\x8a\x98\x2b\x33\x99\x7c\x75\x59\x0c\x5d\x48\x4f\xac\xb0\xec\x42\x99\x1a\xdc\xed\x80\xee\xc2\xb1\x17\xab\x24\x37\x9a\xc5\x89\x4b\xb3\x58\xf8\x36\x1d\x05\x91\x2d\xf5\x3e\xd5\x6d\x52\xf7\x2f\x07\x84\xaa\xf8\x0c\x78\x9a\x1f\xa3\x08\x1f\x11\xf1\x50\xbe\x65\x9d\x14\xb7\x52\xc5\x34\x7b\xe9\xe6\x14\x71\x2f\x73\xaa\x4a\xa5\x7b\x63\x66\x62\x9f\x19\xba\x0b\xad\x91\x9b\x55\x0c\x89\xe2\xee\xdf\xf5\x5e\x8b\x07\xfe\x68\x62\x93\x65\x15\xff\x61\xc5\x20\x44\x75\x44\x9e\xfe\x4d\x9c\x24\x88\x74\x80\x9c\x89\xd2\x8b\x41\x88\xab\x52\xb2\x40\xfd\xa5\x45\x92\x17\x53\x24\x5d\x56\x49\x0d\x49\x6f\xd5\x1c\xed\x21\x9c\x63\x34\x9d\x4e\x6e\x38\x4a\x53\xf7\x51\x30\x46\x97\x79\x2c\xc0\x2a\xc2\x2f\x68\xcc\x6b\xc2\x79\x97\xd9\xe8\x7b\x23\xc3\x5b\xfa\xcb\x0c\x32\x8c\xeb\xcc\xba\xec\xe6\xfc\xf4\xb2\x57\x35\xdd\xac\x58\x7d\x24\x63\x2f\xe6\x5d\xa8\x97\x18\x90\x5d\xb2\x3b\x2e\x41\xec\x0c\xa6\xb6\x93\xec\x82\xc0\x42\x33\x2a\x0d\x7a\x19\x3e\x01\x5a\x39\x66\xc9\x63\x31\x54\x81\x38\xee\x1d\x2e\x46\x8e\x25\x4e\x1e\xee\x5e\xfe\x70\x11\x15\x89\x34\xc5\x26\x5d\x0e\x9b\x1a\xdf\xef\x71\x9d\xf9\x3a\x0d\x1d\x43\x5b\x2b\xbf\x45\x5c\x1b\xc7\xbd\x83\x85\xfa\xa1\xaf\x9d\x7f\x99\xde\x57\x27\xd6\x26\xd2\xc4\x54\xf2\x92\x6f\x94\x29\x94\xd0\x14\x7b\x24\xea\x2f\x06\x24\x09\xa5\x75\x7f\x99\x28\x95\x6b\x1e\x99\x64\x3b\x1a\x05\x24\x27\xf4\x14\x69\xb4\x28\x8e\x51\xaf\xdf\x3a\x97\xb0\x7f\x63\x08\xbd\xfc\x66\xfc\x87\xc0\x70\xc7\x61\x13\x4f\x0d\x6f\xb3\x41\x83\x1a\xed\x41\x75\x2e\x55\x46\x85\x03\x85\x4b\x0a\x89\x2a\x8e\x6a\x1b\xda\xdb\x86\x0e\xe6\xcf\x6d\xf9\x3d\x24\x43\x29\x52\x39\x4a\x14\x5a\xb5\xc7\x37\x36\x7e\xab\x40\x9c\x5c\x1b\x4b\xae\xa6\xcc\x63\x8d\xcd\xf1\xbf\xe5\x84\xe5\xce\xe1\xe4\x67\xdb\x64\x69\x6d\xea\x65\xe8\xa9\x6f\xaf\xa7\xa6\x9f\x60\xd8\x64\xca\x6c\x59\x65\xa7\xe6\xa2\xe5\xb5\x12\xfc\x3c\x96\x3c\x2b\xad\xf2\x7d\xe7\x9d\x29\xef\xed\xb7\xbf\xdb\xa9\x29\xe1\xae\xbe\x2a\xfc\xac\x9e\xd8\x47\x01\x04\x2e\x8a\x41\xf1\x5e\x84\xae\x9d\x4e\xd7\xed\xf5\x6c\x42\x6c\xe8\x6c\x94\xec\x45\x9d\x39\xdc\x6f\xfa\x9a\x04\x3f\x88\xf4\x4e\x48\xce\x54\x2d\x49\x6f\x08\xed\xbd\x3b\x57\xb7\xf7\xe2\x77\x09\xeb\x0f\xc6\x6f\xb7\x6d\x54\xc4\x66\xdf\x8a\x13\x4a\xba\x14\xc7\x18\x79\x25\x84\xce\xbf\xd2\xd7\xc6\xfb\xc8\xab\xcb\x2b\xc3\x97\x3f\xf0\x65\x28\x55\x94\x5c\xa2\x7d\x86\x61\x7e\x4c\xc5\xbb\xc6\xd7\xdd\x55\x13\x8c\x2b\x61\xc7\x2d\x7f\xb0\xf7\x22\xcb\x71\x23\x29\x6d\x99\x95\x28\x39\x8d\x05\xbb\x59\x28\xe9\xc1\x49\xe8\xf1\x1b\xd1\x0d\x91\x16\xd1\xcf\xa3\x8a\x62\x2f\xc6\xbb\x24\x1f\x65\x6e\x15\xd2\x97\xa7\xd5\x85\xb6\x0b\xf6\xc7\x4d\x11\x2e\x7d\xd9\x8b\xfd\x8b\xcf\xb9\xba\x94\x32\xb2\xd7\x3e\xd6\x1e\x5f\x60\x5b\x6e\x5a\x2a\x5f\x28\x9f\xab\x9b\xd9\x97\xf5\x3a\xc3\x36\x8b\x3f\x47\x2b\x2f\xbb\xb8\xbc\xa2\xa3\x5e\xab\xdd\xb7\x9f\x6d\x4c\x6e\xae\x7d\x63\xea\xa8\xeb\x6f\x6e\xeb\xf4\xa0\x72\x99\x6f\xcc\xbd\xfb\x6a\xc3\xd5\xd6\xce\xc6\x0f\x8d\x91\x35\x9a\x55\x5a\x15\xdf\x2b\x0c\x2a\x53\xaa\xf7\xea\x75\x9b\xd4\x3b\xbf\x0f\x30\x8d\x2e\xcc\xf1\xad\x9b\x1d\x30\xff\x9d\x1b\xbe\x8e\x90\x57\xbb\xa7\x32\xa7\x2d\xda\x5f\xf4\x95\xf5\x05\xf5\x9a\x76\x92\xb4\x57\xb7\xb3\xb5\x67\x74\x2b\xf6\x51\x0d\x1b\x8e\x77\xcd\x6e\xad\x59\xef\x75\x9f\x0e\xfd\x1b\xff\xff\xf5\xab\xfa\xc8\x77\x9f\x62\xc7\x7d\x73\x69\xd3\x6b\xf3\xd2\x46\xf8\x46\xde\xf6\xdd\xfd\x8d\x13\xd3\xff\xce\x78\x92\x7f\x40\xba\x6d\xbb\x9e\xb7\xd2\xb9\x78\x61\x4e\x71\xfa\xe1\x44\xd4\xb8\xd0\xd8\xc2\x58\xfc\xa8\xef\xd4\xed\xb9\x98\x4d\xfa\xff\xcc\x7d\x60\xb5\xd9\xb7\x7a\x63\xae\x6c\x6a\x65\x34\x64\x98\xb3\xdf\xbc\x47\xa3\x13\xbd\x9d\xa8\xd5\xb9\x15\xab\xa5\xac\x75\xb9\x03\xbb\xf7\x68\xc6\x60\xe3\x5f\x73\x31\x07\x56\x1b\xc8\x8b\x9d\x53\x69\xa3\xa8\xfd\x2b\x5d\x56\xad\x5b\x8d\x0c\xb5\x75\x55\xa3\x15\xae\xa5\xf1\x25\xd4\xc5\x6f\x0a\xe7\x4b\x36\x2a\xec\x9a\xde\xf7\xab\x4e\x6f\x6f\x5e\xf9\x27\xfe\x9d\xa3\x65\xb2\x29\xf3\xa1\xb4\xee\x9d\xd6\xfd\xfa\x0b\x55\x24\xa5\x96\xf9\x07\xb9\xd2\x99\x8e\xa9\x3b\x29\x97\x92\xa4\x13\x37\x93\x1c\x93\xa4\x33\xdc\x4a\xfb\x9b\x56\x06\x91\x67\x9c\x37\x4b\xff\xca\xbf\x7f\x75\x21\x7b\x74\xa3\x37\xbf\xc9\xbd\x66\xaa\x94\xa6\xe0\x56\xd6\x62\x0a\x5e\xfc\xcb\x68\x81\x88\x9f\xa1\x57\x82\xf8\x02\x91\x02\xa8\x02\x56\x82\x64\xa3\x5f\x66\xcc\x97\x55\xb4\x60\x0e\x64\xce\x6d\x6d\xff\xa9\xa2\x74\x52\xb4\xea\x3d\x86\xd7\x6d\x51\xcf\x54\xa6\x93\x57\x9b\x7e\x25\xa1\x20\x3a\x22\xf4\xba\x7f\xa2\xf7\x75\x37\x2f\x97\xfb\x0e\xf8\xf6\xf9\xb6\x23\xf6\x37\x9c\xef\xfb\xeb\xc6\xf4\x64\x1e\x94\x4d\xb7\x5a\x0d\x8d\x2e\xb0\xec\x17\xfc\x2e\x61\x8f\x64\x56\xa0\x17\xbd\x3e\xa6\xe4\x52\x26\x7b\xa2\x41\xe4\x85\x20\x4c\x6f\x5c\x57\x03\xfb\x06\xcb\x42\x33\x76\x23\x6a\xfd\x7b\x7a\xb7\x74\x89\xf4\x42\x4c\xf0\x9c\xef\x05\xbe\x89\xdd\xcb\xc6\xad\x9c\xea\x40\x19\x93\x5e\xad\x3a\xfd\xcd\xfb\x6f\x54\x8d\x45\xb4\xa1\x97\x11\x66\x44\xc4\x66\x87\x60\x79\x59\x3a\xdb\xda\x48\x99\x6e\xe9\xef\x69\xc6\xab\xca\x2b\x31\xff\xea\xff\x89\x27\x77\xfb\x97\x8b\xd6\x3d\x8b\x6b\x2e\x73\x41\x1f\x12\xca\xf2\x8c\x6a\x43\x7a\xdf\x4d\x97\xee\x10\x9d\x4b\x58\x31\x1e\xa4\xa9\xf3\xc9\x1b\x4f\x30\x09\x4a\x76\x27\xb3\xb3\x37\x1d\xd5\xa3\x51\xc7\x57\x08\x97\xc5\x10\xd7\x10\xfe\x24\xc0\xcc\x47\xcc\x7b\x2c\x84\x25\xef\xa6\xc3\x62\x45\xe3\x81\x14\x16\x9f\x62\x5a\xdc\xde\xe4\x32\xfc\x76\xf9\xc6\xb1\x21\xf4\x14\xd6\x16\x79\x7b\x1a\xaa\x14\xd3\xb3\xc2\xb9\x3d\x5f\xd9\x54\x18\x05\x68\x5e\x51\xe4\x92\x96\x17\x1e\xe5\x0d\x65\xa7\x66\xd6\x60\x4c\x60\x78\x43\x7f\xc8\x6e\x2b\x26\xa5\x24\xad\xff\xd1\x2e\xc1\xc7\x2a\xfa\x46\xb6\x70\xf5\xed\xee\x96\xe9\xfd\x1d\x28\x5e\x3d\x91\x99\x6b\xe9\xe4\x29\x33\x4b\x26\x0f\x74\x72\x54\x33\xc2\x57\x2f\xfa\xe9\x2a\x46\xc9\x9b\xc8\x5a\xcf\xe8\x48\xa5\xfd\x4d\xf6\xab\xe2\x97\x17\xc4\x2a\x0c\x8a\xdc\x3c\x92\x1a\xaa\xc3\xa6\x0c\xce\xc1\x41\x29\xc9\xbe\xc5\x32\xcd\xe6\x23\xdd\x6b\x88\x0c\xdb\x9c\x56\xfb\x5a\x71\x46\xfc\xae\x8f\x95\xb5\x8b\xb6\xc1\xcf\x69\x91\x00\xce\x29\xa6\x07\xd4\x04\x24\x7e\x04\xf3\x38\x6a\x1f\x56\xdf\x7f\xc0\xb3\x21\x53\xfb\x61\x24\xf0\xf3\xe7\x77\x9d\x60\x1b\x4c\x9f\x85\x98\xe0\x5c\xe6\x3a\xd6\xfe\x3b\x0b\xf4\x87\xc1\x67\x12\xe6\x87\xdb\x33\x8a\xae\xc7\x58\xb9\x15\x9b\x72\xa9\xdd\x94\xc0\xe3\x2a\x65\xdc\xa2\xc0\xfd\xf2\x08\x47\xfb\x5d\xec\xcb\xad\x67\xbb\xcf\x4c\xdf\x3f\xfd\xcc\x40\xf3\x88\x53\x56\x42\x49\xed\xad\x69\xb7\x9b\x7a\xb8\x42\x06\x5f\xc5\x44\x17\xce\x0c\xe7\x6e\xdb\x99\x84\x45\x8c\xce\xc2\x12\xdd\x98\x7b\xae\xbb\x06\xe3\xf2\x4d\x42\x48\x2c\x82\x54\x1f\x3f\x87\x62\x55\xbe\xe5\x41\xb6\x79\x10\x7f\xab\xfc\xc1\xea\x6b\x13\xdc\x5a\x32\x56\xe6\x77\xc2\xe8\x8a\xf7\x0d\x07\x9c\x9e\x04\x65\xa6\x58\x94\xd5\xb6\x6b\x4f\x06\x6c\xf1\x9d\x49\x58\x0d\xec\xae\x29\x09\x8a\x0e\x77\xa9\xd4\x1f\x92\x4e\xe5\xb1\x60\x34\x22\x99\xc1\xfd\xfc\x76\x0c\xd9\xfb\xfe\xd8\x75\xb7\x0b\xb8\xb7\xb3\x9e\xcf\x61\x8a\x10\xa7\x7d\xbf\x2e\x60\xf0\x6b\x50\x1f\xcd\xe1\x43\xe0\x7c\xd2\x8b\x12\xf6\x56\x97\x09\xba\x4d\xa8\x8e\xb3\x71\xbf\xef\x6a\xa9\x8a\xb7\x94\x69\x82\x3c\x06\x77\x33\x6b\x38\x55\xed\x27\x83\x0f\x49\x2f\x3f\x3f\xbc\x77\xfb\xc7\x4d\xf4\x1b\x24\xb7\x70\x9e\xf1\x7f\x50\xfe\xca\xc3\x78\x81\x1f\xe9\x27\x9f\x9e\x84\xbd\x78\xc0\xed\x24\x50\xfc\xa6\x55\x78\xfc\xfa\x06\x3b\xb4\xab\x32\x5b\x12\x32\x3d\xfd\x9f\x59\x28\x28\x10\xf0\x5c\xa7\x94\x21\x0d\xc3\x2d\x42\x9b\x78\x95\x83\xdc\xf1\xd8\xed\xe1\xe3\x07\x45\x0f\xe9\x9f\xf9\xbc\xdf\x23\x22\x63\x70\xe0\x7f\xf3\xb3\x43\x8f\xc2\x9e\x35\xc0\x20\xe9\x6a\x09\x56\x2b\xd7\x98\xf9\xa6\x22\xb4\xaf\xd5\xdb\x37\x72\x2f\x85\xca\x58\x75\x2b\x1d\xf1\x6a\x53\x86\x63\x7b\x60\x2b\xe1\x78\x7e\xb0\x7a\x3b\xfd\xda\xfb\x55\xd8\x8b\xd0\x97\xd1\xa8\x2f\x3e\x58\x11\xbd\x67\x58\xe3\xaf\xff\x15\xa3\xb7\xe7\xc0\x1a\x68\x9c\x14\x5f\x52\xd0\xba\x30\x9e\xb3\x29\x7c\x26\x61\x5d\xb1\x97\xb8\x08\x2d\x52\xd4\xe1\xb1\xfa\x1d\x01\x0f\x2a\xf0\x51\x80\x64\x96\xc8\x96\xc0\x1b\x67\x11\x23\xfe\x83\xd4\x7b\x8c\xf7\x13\x98\xfe\x78\x2c\xc4\x72\x8c\x8f\xf8\xb7\xe5\x25\x0d\xd0\x1d\x63\x83\x49\x92\xf3\x4b\x4e\x3a\xee\x4e\xea\x6e\xb9\x40\x3b\x8b\x78\xf8\x49\x55\x71\xdc\x92\xcb\x7b\x6d\x76\xe1\x43\x86\xa0\x6f\x02\xf4\x9e\xd4\x74\xe4\x7d\x5f\x0b\x3e\x13\x12\xa0\xe0\xf7\x10\x5e\xfb\x5c\x4d\xac\x48\xee\xf0\x83\x4c\x08\x55\xa1\xc4\x88\xd4\x79\x37\x44\x2b\x4d\xa9\x1c\xad\x33\x60\x4a\xe2\x3c\xf3\x3b\x79\xb3\xae\x3a\xe5\xa2\x67\xac\x9e\x87\xc4\x09\x8f\x36\x43\x15\xc7\x0e\x4b\xeb\xf7\x2b\xb4\x6d\x54\xd7\xc8\x2f\x92\x5d\x23\xb3\xa4\xc2\xa3\x6d\x61\x3c\x66\x77\x12\x59\x57\xba\x6c\x2c\xe7\x8a\x11\x9a\x99\xfe\xa1\x62\xb4\xdb\x7b\x56\x67\x0f\x0b\x96\xb0\x30\xd8\xa2\x9d\xc9\xed\x77\xc1\xc8\x56\x95\x4b\x82\x80\xfb\x39\xb3\xac\x40\x1c\x0f\x13\xbb\x37\xb3\x2e\x93\xf2\x77\xea\xef\xd1\x2c\x6c\xec\xde\x3c\x55\x42\x18\x52\x2b\xaa\x87\x26\xee\x6e\x26\x61\xd5\x99\x5a\x55\x7c\xbd\x33\x73\xca\x07\x7b\xb0\x84\xb5\xc4\x4e\xc2\x5c\xc6\x40\x06\x47\x72\x43\x79\xa5\x61\x09\x43\x05\x71\x39\x5c\xc9\x7a\x91\x3b\x02\x32\xbc\x2c\x3c\xb8\xbc\x0b\x82\xde\x22\x0b\x92\x51\x72\x52\xca\x0e\x3a\x3b\x96\xd9\x9e\x2b\x91\x06\x59\xd2\xb5\xae\xfd\xe8\x0b\x5b\x87\x08\x04\xb1\x8d\xdb\x2f\x55\xb8\x15\x2b\xe0\x5b\x6e\x27\x6e\xe0\xac\xf2\x42\x4f\x59\x63\x49\x29\x4d\xfe\x8e\xec\x9a\xf4\x45\x29\x2b\xe9\x4a\x59\x75\x85\xab\xaa\x78\x5a\x8c\x06\xbb\xe6\xf2\x0e\x4c\xfe\x41\xb1\x2d\xb9\x57\xea\x24\xfa\x5a\x96\x0c\x8e\x3c\x11\x76\xd2\x72\x18\x54\x66\x64\x85\x45\x29\x7b\x0f\xd8\xe9\x1b\x8e\xa8\x1d\x9b\xec\xeb\xcf\xe9\x5e\xd1\xb0\x52\x27\x57\x6d\x52\x7f\xac\xb5\xaf\x1b\x6f\x24\x69\x69\x67\x37\xef\x1a\xea\x3b\x1a\xd6\x92\x5c\x55\x0c\x1a\x8b\x07\x0d\x96\xb8\x4e\x10\xf5\xc9\xe3\x95\xb1\x2f\xed\x07\x65\x7d\xe9\x4b\x91\x61\x3e\xa2\x0e\x1c\xae\x69\x4e\xfd\xb6\x01\x56\x8f\xcd\xc5\x4c\x74\x4c\x42\x4d\x05\xcd\xdd\xac\x07\x1d\x9a\xdd\x03\x7c\xf7\xc3\xfc\x63\xec\x52\xf7\xf3\x5b\xaa\x8c\x3a\x1c\xc7\x45\xd6\x28\x7f\xb7\x95\xab\x66\xc3\x03\x2d\x1f\x4b\xfd\xd2\x8b\xa2\x32\xa2\x15\x9d\xf3\x02\xa5\x7c\xd6\xdd\xab\x5c\x90\x9c\x8d\x5d\x9e\xba\x7c\x75\xc7\xf0\xdc\xf6\x93\x0b\x95\x8d\x71\x49\x49\xcd\x26\x2a\xbd\x58\xff\xb2\x5d\x78\xc8\x60\x9e\x60\x67\xe6\x0f\xfe\xe6\x68\x61\x73\x70\xb8\xd9\xac\xec\x6a\x26\x73\xac\x6e\x30\x6a\x5c\x4a\xcc\xe7\xd0\xf6\xe0\x2f\x41\x9b\x41\x8e\x41\x36\xa1\xf7\x22\xc2\x62\x87\x52\x2a\xb2\x6b\x8a\x46\x6a\x7a\x9b\x55\x7a\x5c\xc6\x77\x97\x5e\xed\xb8\xff\xd9\x67\xec\x19\xcc\xb7\x0e\xce\xb6\xa4\x55\xa0\xe5\xec\xe6\x95\x67\x2d\x64\x3d\x4d\xd3\x4e\x2e\x48\x8c\x4b\xb0\x4e\x6c\x4f\x79\x9c\xd1\x90\x6b\x5d\x9c\x5f\x55\xdb\xd4\xde\x2d\x32\xc2\x34\x1b\xb6\x26\x76\x70\xf7\xef\x7e\x6b\x0f\x79\xc1\x77\x38\xac\xbd\xaa\x26\xa1\x88\xa5\xe2\x4d\xa9\x7a\x49\x4b\xd1\x51\x01\x75\xa1\x78\x61\x6b\xc9\xfb\x8a\x85\x5a\x8e\xe6\x6b\x9d\xa3\x43\x56\x93\xf4\xcb\xfc\x3b\x19\xff\xe4\xf7\x20\x9d\x3c\x5f\x7e\x34\x2e\xda\x93\xd6\x64\xde\x8e\xd7\xca\xd5\x62\xdd\xc4\xde\xe0\x59\xbf\xd6\x44\xd2\x12\xd6\xa9\xd4\x1b\x35\x6c\x34\xd5\xba\x58\xbe\x41\x7b\x64\xf5\x6f\xfc\xff\xf1\xaa\xff\x3f\x67\x39\x3a\xd9\x47\xd9\xb1\xde\xd8\x5c\x17\x5a\xbd\xbb\x5a\xbb\xdc\xb9\x42\xb2\x3a\xb0\x45\x7b\xcc\xfa\x5f\x19\x39\x0f\xbe\x6c\x33\xac\x75\x2c\x67\x2c\xfe\x9a\xbd\x37\x39\x3e\x56\x31\xcc\x36\x64\x39\xa4\x3c\x24\x38\x72\x6f\xf4\xed\x64\xd3\x8a\xf0\xf1\xbd\x7f\x67\xde\xf7\xda\x9c\x58\x95\x9f\xab\x9a\x5a\x1a\xd3\x18\xea\xe8\x57\xea\xfe\xd9\x7e\xd4\x4a\xdd\x14\xdb\x78\xbd\x3e\xbe\xa1\xba\x41\xa7\x79\xad\xfb\x74\xea\xfa\xea\x8f\x63\xb4\x7f\xe2\x3e\x7e\xbb\xa9\xb7\x74\x73\x3a\x63\x64\xbe\x4f\xbf\xfb\x5d\x5b\x71\x63\x74\x2d\x51\xa5\x7e\xd9\xbb\x62\xed\x02\xd4\xbc\xad\xbc\x9b\x79\x81\xf9\x9f\x8b\xf6\xea\x4c\xbb\x96\xc6\x05\x57\x03\x8e\xfe\x56\x91\x3b\x9e\x5d\x5f\x9b\xb9\x36\x64\xdd\xb3\xd0\xfa\xac\x3e\xb4\x9a\xac\x94\xad\x80\x27\x7b\x22\xa3\x32\xd5\x32\x31\x21\x1e\x39\xa6\x2d\x7a\x2a\x9a\x3b\xee\x62\x8a\x49\x41\x64\x9d\x61\xf7\xf6\x44\xc8\x1a\xef\x91\xf6\x9f\x25\x6c\xee\xcd\xb4\x0e\x70\xb4\xed\xd5\x76\x95\x73\x14\x44\x65\xa3\xa4\xfe\x4c\x88\x8a\x76\x88\x50\x08\xd6\x0c\xc0\xf3\x25\xf6\x36\xf4\x4c\xf1\x7c\xe7\x7b\x12\x66\x9b\xba\x58\x18\x5b\x57\xde\x6d\x34\x09\xd6\xad\xff\x74\xff\xf9\x8b\x60\x30\xa0\xf5\x7a\xc5\xe5\xfc\x2b\x19\x6f\x12\x85\xa2\x53\xc2\x2e\x05\xe0\x79\x75\xb9\x56\x3b\x49\xdb\x0b\x59\x7b\x58\x3e\xb3\x78\x60\x99\x64\xcb\xe2\xfd\x29\xdc\x3d\xf5\x6a\xd1\xf3\xfa\x90\xde\xce\x59\xac\xed\xe8\xdf\x25\x6c\x61\x4e\xcc\x77\x06\x55\xfd\xca\xc5\x4c\x96\x8b\xba\x19\xfc\xde\x07\xcd\x75\xd9\xc1\xc4\xca\xda\xc4\xd8\x40\x59\xc7\x45\x4b\x57\xfd\x99\x9a\xa4\x3a\x8a\xc1\x6d\xdb\x19\x6f\xe2\x08\xbe\xb4\xc2\x62\xaf\xc6\xbc\x41\xfb\x85\xfe\xfd\xd0\x73\x09\x2b\x25\xc3\x24\x4d\xc8\x85\xdb\xc9\x52\xe1\x5a\xbe\xdc\x2e\x65\xb6\xae\x66\x87\x86\x57\xb4\x58\x54\x42\x15\x1e\xca\x26\x48\x3d\x90\xa0\x16\x47\x95\x6c\x55\xa1\x37\x12\xb4\x0f\xf7\xb5\x8d\x0e\xca\x32\xa8\x88\x6b\xc7\x1b\xd7\x5c\x4b\x41\x08\x78\xbf\x50\xd8\xeb\x57\xdd\x91\x45\x1b\x25\xe3\x23\xe8\x58\x66\xbe\xa0\x9f\xab\x3e\xa9\xf8\x5c\xc6\x5c\xac\x48\xf0\x05\x2f\x0b\xd7\x1d\xf6\x0b\xec\x76\x3c\xd7\xa5\x94\xd4\x4e\x8d\x13\x1d\x73\x02\x04\xe3\xbd\xf2\x3c\xea\x02\xfa\x51\x67\x33\xf6\xa0\x4e\xd2\x13\x9c\x39\xeb\x0e\xb5\xb2\xa9\x14\xcd\xa0\x70\xe7\x26\x73\x1e\xed\x29\xa5\x4f\x32\xea\x22\x0d\xbc\x5e\xec\x97\x18\x47\xe9\xaf\x53\xad\x52\x28\x53\x1a\x7d\x0f\xe3\x57\x90\xc9\xd0\xd4\xb3\x90\x77\x63\x0b\xa3\x49\x7b\x5b\xea\xd9\x66\x38\xc6\xb7\xbe\x02\x49\xc8\x9a\x55\x6b\xdf\x2f\xb6\x8e\xa7\xf6\x15\xb6\xa1\xd6\x15\x52\xe4\x90\x18\xe4\xff\xc8\xb6\xce\xc8\x46\xf5\x81\x78\xf3\x53\xd6\x47\x11\xdc\x47\x04\x4c\x14\x13\x2c\x77\x85\x15\xe5\x47\xf4\xe6\xec\x72\xfc\x38\xe2\x5c\xf3\x82\xea\x5f\x0d\x54\x2c\x3a\x1c\xc9\x9f\xc5\xab\x73\x91\x1d\x37\x0a\x18\x62\x5e\x7a\xe8\x99\xff\x52\xd3\x91\xcc\xe0\x3d\x64\x0e\xa1\x89\x23\x15\x20\x98\xc5\x52\x7f\xa7\x83\x8a\xf1\x4a\xfa\xbd\xeb\xe7\x11\x5a\x6f\x2e\x3b\xc9\x25\xf5\x17\x66\xa3\xee\xee\x11\x58\x19\xc2\x95\x99\x5d\x0b\x33\xd4\xbb\x50\xcc\xbb\x50\xd5\xf1\xbc\xc0\x2b\x72\xd4\x85\xc2\xe0\x54\xe1\x99\x50\x11\xeb\x07\xea\xad\xaf\xcf\xf0\x4c\xde\x5f\x7d\x75\xf0\xd8\xfd\x41\xf2\xfd\x85\xd7\x17\xf1\x14\xc8\x48\x98\x45\x85\xf6\x14\x1f\x1b\x36\x39\xdd\x0e\xea\x4a\xde\x2b\x59\x6d\x9d\x1a\xa7\xde\x74\x3a\x93\xb0\x98\xdb\xf9\xb3\x50\x2a\xe2\x99\x13\xba\x76\x9b\x6c\x10\xf7\x31\x7d\x35\x29\x0a\xee\xfa\x3b\x89\x17\x4c\x48\x83\x37\x73\x2f\x63\xde\x54\x42\x7e\xf1\x61\x8d\x68\x81\x41\x88\x0f\x4f\xae\x58\xd7\xd7\x8e\xc2\xff\x7e\x82\x78\xd1\xc7\x96\xab\x23\x87\x70\x46\x69\xc5\xb1\x8b\xa7\x48\x31\xe2\xc0\x50\x5f\xd6\x87\x33\x94\xed\x21\xe5\x16\x21\xe6\xfb\xe4\x97\xc4\x48\xfd\x37\x96\x2f\x44\x82\x97\x57\x35\x1f\xad\xbf\xbb\xf7\x49\x88\xd6\x9b\x3b\x4a\x06\x49\x4b\xc3\x9a\xdc\xf7\x56\xdc\x78\x7e\x49\x13\xcb\x50\xcf\x0a\xd4\x19\xbc\x71\xb9\x4f\x3c\xbd\xc0\x33\xd3\x18\x5b\x56\x9e\x43\x86\xac\xfe\xab\x16\xee\x45\x54\xa1\xc7\x4f\x6f\x4d\x5c\xe6\xbe\x70\x04\x8e\x2e\xf9\x21\x2d\xbe\xc5\x24\x08\xa1\x5e\xe2\x9c\x92\x0a\xd2\xec\xb3\xda\xf0\x79\x16\xdb\x95\xff\xb5\x51\x64\xa8\x7d\x45\xe9\x4c\xc2\x4e\xf0\x60\x4c\xba\xa4\xdf\x3b\x53\xa3\x9f\xf1\x1c\x3e\xdf\x28\x30\x1f\xa3\x8d\x3e\x47\x7d\x1c\x75\x7f\xea\x8e\xef\xad\xeb\x37\xf2\x6e\xe1\x3f\xa0\x47\xdd\x25\x40\xa3\x76\xe4\x3c\x96\xf2\xd2\x1c\xb5\xca\xf7\x11\x8c\xbb\x92\x1f\xda\xa0\x30\x7c\x69\x45\xf8\x34\xf3\xf4\xf4\xe0\x4d\x07\x46\x4e\x71\xb0\x97\x65\x93\x02\x0f\x17\x20\x5d\x47\xef\x46\x2d\x7d\x9b\x87\xb2\xfd\xdc\xf2\xe9\x87\x47\xd1\x48\xdb\x8f\x62\x9e\x26\xbe\xb9\x86\x7f\x87\x6a\x99\x4b\x5a\x4a\x46\x2b\xc7\x9a\xcb\xa7\x2d\xee\x65\xfe\xe3\xc6\xeb\xc3\xd8\xab\x38\xd0\xce\xa4\xea\x99\x2e\x64\x0f\xdf\xb1\x0d\x51\x2e\xe5\x59\x27\x13\xc1\xdc\xc1\xfd\x8e\x13\x83\x61\xf8\x0e\x1f\x35\x01\x65\xf8\x95\x31\x8a\xde\xdb\x1b\xe8\x47\xf8\xaa\x54\xf1\x5c\x78\xd2\x02\x5a\x74\xd6\xb4\x3e\x4e\xf1\x8b\x05\xc9\x4d\x19\x23\x5b\x6b\x50\xd4\xb9\x97\x3a\x7c\xa9\xe2\x61\x0c\xb9\xe3\xaa\x86\x9e\xc0\x0a\x2d\x0a\x11\x1a\x6e\x13\xf1\x9b\x4f\xda\x1f\xf1\xb1\x73\x31\x91\x30\x9e\x62\x78\xe2\xb8\xe1\x23\x11\x5d\xa4\x89\xe3\xa2\x94\xf1\xd1\xbe\x67\xf3\xd3\x0f\x35\x61\xb0\x30\xbe\x25\x7c\xec\xf9\x3a\x54\x45\x39\xf1\x9c\x78\x55\x73\x98\x18\xe1\xce\xa8\xd3\x25\x66\xc8\x61\x46\xbd\x45\x7f\x8d\x66\x9d\x52\x90\x74\xf1\xab\xdf\xe7\xe2\x4f\xf8\x9f\x0e\xbe\x76\x92\x91\x50\xf3\x7c\x37\xe0\x1d\x92\x21\xd5\x89\xb5\x5d\x0e\xe0\x4e\x1c\x2b\x4a\x69\xbd\x38\x86\xbc\x39\x02\x6f\xae\xb9\xe4\x26\xde\xd4\x31\x2f\x09\x03\x6f\x25\x67\x11\x31\xb6\x15\xda\x45\xb6\x72\x66\x7d\x06\x3b\x5a\x34\x2a\x33\x4a\x59\x2a\x23\x9a\xc3\xef\x92\xac\xe6\xdc\x36\xc2\x2a\xbf\xba\x75\xd9\xec\x09\x03\x62\x53\xae\x94\x58\xb5\xe7\x4d\x92\x6f\x21\xf2\x07\x2b\xf7\x5b\xab\xb2\xba\xfd\xcc\xec\x2f\xe9\x09\xca\xab\x88\x88\x8a\x9b\x88\x3e\xe7\x37\xe7\x6e\xe4\x18\x60\x1d\x65\x61\x64\xb3\xe0\x7c\xc1\x7b\x5d\xa8\x4b\xa2\xf3\x27\xba\xea\x65\xa3\x01\x87\xba\xa0\xb0\x94\xcc\xd2\x2f\xed\x31\x53\xdf\x77\x3f\xc0\x12\xd6\x9b\xbb\xd1\x73\x93\xa3\x67\xbc\x9a\xac\x3f\xea\x92\x28\x3c\x14\x93\x54\x28\x91\xcd\x91\x20\x10\x2d\x11\x32\x17\x92\x14\x2e\x11\x2d\x93\xd2\xf9\x39\xa6\x12\xac\x9d\x61\xc4\x6d\xf3\xce\x83\x2f\xb4\x29\x6d\xa3\xfc\x5d\x47\xe8\x54\xdd\x0e\xa2\x4f\x6b\xfb\x67\x1f\x61\x85\x6e\x7a\x64\xb8\xa6\x47\xad\xf5\x55\x3d\x4c\x43\x2f\x6d\x27\x8d\xa7\xaa\x57\x95\xde\xc9\x4b\xfc\x8a\x93\x2f\x50\x0a\x54\x7b\xa4\x5d\x64\xf4\xc4\xa2\xd0\x31\xd7\x53\x3a\xe8\x4e\x9c\x44\x8e\x70\x55\x43\x67\xdd\x94\xd8\xde\x05\x58\xc2\x9e\xda\xe8\xdb\xd6\x0b\x25\x92\xa9\xcf\xc2\x8a\x3d\xdf\xd9\x98\xd8\x0f\x6b\xd6\x5a\x90\x1b\xce\xe8\xf6\xea\x04\xeb\x22\xeb\x39\x19\x70\x9a\x88\x5a\x8e\x3a\xaa\xbb\x6f\x05\xa8\x46\xcc\x24\x86\x66\xd9\x95\x94\x36\xab\xf7\x77\x2c\x2a\x1f\x22\x32\xc6\x87\x23\x4b\x59\x83\xac\x8d\x79\x45\xa7\x29\x6b\xe1\x11\x5e\x9b\xf6\x6b\x6e\x03\x2e\x86\x8e\x93\xb6\x0a\x36\xdf\x6c\x5c\x6d\x4b\x1d\x2e\x3a\x45\x78\x68\xf8\x83\x70\xe9\xf8\xcd\xcc\x8b\x05\x1a\xd5\x0f\x5b\x5f\xf4\xe3\x4f\x7d\xf8\x63\xd5\x7b\x4f\x66\x2e\xa2\x5f\xa4\x61\xac\xf8\x4b\xda\xb7\x28\x4e\x7f\xd3\xe0\xe3\x80\x6e\xff\x52\x9f\x1f\x5e\xd3\x5e\xf6\xde\xd5\xbe\xeb\x81\x7d\x11\x02\xf1\x5f\xd3\xa4\xf2\xb1\xcb\x6a\x1b\x71\x3b\x6f\x0e\x97\xcc\x16\x6c\x32\x9f\xdc\xff\xa3\xcd\xdf\x79\x3f\xcb\xde\xaf\xd7\xb8\x5b\x4a\x99\xb9\x1f\x4f\x16\xaa\x1d\xb7\x13\xdf\x1c\x53\x16\x1d\x19\xb9\x1d\xed\x1d\xf7\x38\x31\x33\x7d\x2a\xf7\xa0\x94\xbc\xf6\x7e\x6b\x4b\xff\xdd\x49\x8b\x65\xe1\xbd\x7f\xf0\x9f\xdb\xa5\xb3\x23\x03\x5b\xad\xb7\x2a\x7d\xf2\xdf\xa5\x56\xe5\x5a\xe4\x5c\xcf\x71\xc8\x12\xc8\xc2\xc9\x56\xcb\x23\x2a\x12\xac\x08\xaf\x55\x68\x79\xd5\x3d\x31\x5a\x30\xdb\xb2\xb6\x77\x82\xf3\x4f\xbe\xf3\xf4\x74\xa7\x66\xc1\x69\xc4\xbf\xd3\xa0\xde\xb2\x71\xa9\xf6\x72\xd5\x61\x35\x45\xf5\xa5\xca\xe9\x6a\x86\xda\x99\xa6\x6f\xed\xe4\xbd\xed\x23\x83\xd3\xfd\xcb\xa8\x7f\xad\x42\xfd\xb7\xeb\xb8\xf9\x70\xff\xf0\xd5\x3e\xc9\x41\xff\xb1\xc8\xe9\x97\xff\x29\xd7\x89\xc3\xe1\xa5\xbd\x7b\x5b\xa7\xeb\x46\xcb\x1b\x4b\xb7\x16\x76\x67\x43\x67\x1d\x67\xe9\xe7\x67\x56\x85\xf6\x7f\xfc\x97\xf1\xc0\x3e\xd6\x8e\xc4\x3a\xcf\x32\xeb\xbc\xdc\x74\xec\x84\xe5\xc8\xd0\xa0\x4a\xff\xfd\x5e\x82\xee\x27\xdd\x6b\xdd\x09\xbd\x8f\x47\xa5\x17\x24\x76\x56\xff\x8d\xfb\xd0\x7c\x2b\x60\xc5\x6f\xfe\xc6\x54\xd7\xd8\x8f\xc1\xf5\x3e\xc6\x2e\xdc\xb6\x98\x66\xd7\xfa\xd8\xda\xc4\xea\x7b\x15\xe6\x95\x7b\x55\x21\x35\x84\xad\xda\x23\xf1\x8b\x2c\xbb\xc5\xff\xc4\xbf\x3b\xbe\x82\x35\xed\x3a\x5c\xd8\x8f\xd6\xb1\xda\x32\xd1\x68\x52\xdd\x56\xde\x5f\x9a\x50\xd0\x99\xeb\x94\xe9\x9f\xc1\x95\x7e\x37\x2d\x23\xfd\x51\xb6\x4c\xe9\x48\x6b\xc0\xe0\xde\x7c\xd6\xf6\xc6\x5f\xf9\xf7\xd3\x96\x82\xc7\xdf\xf6\x9a\xb7\x2c\xd6\x4b\x54\xa6\x96\xd0\x16\x78\x67\x7f\x49\x9b\x48\x56\x8b\x3b\x8a\xb6\x8c\xc8\x0c\x3d\x0c\x29\x0c\xe6\x0c\xbf\x15\xa7\x94\x59\x50\xf1\xb8\x85\x68\xd0\x61\x3e\x68\xf7\xe6\x9f\xe6\x7f\x6f\x35\x7f\xc2\xac\x9b\xaf\x3e\xb4\xfc\x4a\x3e\x7e\x36\x5b\xaa\x7e\xbc\x6f\x14\x59\xa8\x49\xe0\xb1\xcf\xb6\x67\xb9\xdb\xa2\x4b\xac\x53\x8e\x53\x96\x1b\x53\x80\x66\xdc\x8d\x1c\xef\xf2\xbe\x56\xcc\xe1\x96\xc5\x97\x87\x7f\xc4\x0f\xcc\x33\x6a\xbd\x15\x0d\x24\xc5\x1f\xb3\xc4\x92\x6e\x46\x83\x90\x7c\x7f\x2a\x2f\x7c\x97\x9b\x0e\x32\x36\x25\x16\x82\xa6\xef\x8d\x30\x0d\xc2\x0c\x45\xcd\x28\x9c\x05\x03\x98\xe3\xea\x73\xf8\x2a\xdf\xb7\x4f\x8c\xce\xaf\xb2\x1f\xff\x76\x96\x65\x5d\x69\xec\x66\x6b\x42\x19\x6e\x06\x61\xf4\x7e\xc8\x1d\x9f\x76\xd7\x35\x7b\x17\xab\xeb\xc6\x15\xba\x5a\x5a\x2f\xd5\xb6\x95\xa6\xe4\x6d\x7e\x11\xc8\x17\x6a\x44\x9a\x8d\xb8\xe8\x04\x2e\xc7\x7f\xcf\x7b\x5f\x33\xda\xf3\x74\x9a\x7c\xeb\xb7\x5e\xd4\x25\x9f\xde\xad\x9a\xb5\x5c\xc3\xb8\xd6\x80\x1c\x37\x4d\xbb\x3c\x73\x47\x03\x71\xcd\x25\x65\xbb\x5f\x1f\xa4\x32\xc5\x39\x85\xed\x04\x0a\xf9\x32\x05\x19\x64\xbb\xb4\xf4\xcc\xa3\x5c\x7b\x42\x5e\x25\x4b\x14\x95\x36\x38\x0f\xde\x5b\xbc\x77\xa8\x07\xad\x81\x67\x73\x3d\x5d\xe6\x15\x2f\xd2\x6c\x43\xf9\xdc\xcd\xac\xaf\x1b\x12\x68\x06\x2b\x56\xca\x60\x8b\x7d\xe4\x1b\xe5\xb2\x60\x1d\x67\xba\xcd\x50\x4c\xe7\xfb\x63\x40\xc8\xe5\x17\xb5\x8e\xa9\x75\xab\x27\x79\x84\x40\x46\x50\x85\x69\xbb\xdb\xa4\xf2\x46\x04\x24\x01\x73\x26\xac\x7d\xa8\x58\x2d\xa1\xdd\xef\x8a\xdd\x3d\x83\x35\xd5\x1c\x59\x35\x11\x3d\xde\x1b\x6c\x14\x8c\xbc\xd4\xd1\x64\x19\xc4\x26\x5f\xbe\x7e\x79\x49\x85\xcb\x4e\x20\x5a\xa9\x44\x69\x88\xe1\x40\xe4\xbf\x96\x70\x29\x7f\xb2\xc1\x63\xd0\x7c\x29\xe0\x78\xec\xf4\xf4\xd8\x6f\x3a\xbf\x8d\x23\xdf\x3c\x2a\xc1\xe3\xc0\xfc\xb2\x06\xb7\x4c\x8d\x90\x05\x87\x07\xe3\x36\xe5\x10\xb1\x3c\x01\x07\x76\xc7\x87\x97\xef\x5e\xbe\x3f\x22\x62\xa1\x1b\xe1\x8e\x93\xaa\xd5\x88\xb0\xb8\xe9\xc9\x10\x11\x97\xa9\x53\xb9\xdf\x8d\x3a\x63\xbf\x5b\x76\x7a\x7a\xd4\x34\x7b\xa5\x8d\x23\x77\x22\xe2\x9b\x73\xa5\x7e\x88\x42\xbf\x08\x19\x7b\x1a\x3d\xfa\xb7\x5a\xc2\x0e\xac\x5a\x34\xfc\x97\xe5\x4f\xb7\x1e\x59\xbf\x46\xc1\xb5\x23\xc7\x62\xe1\x12\x4e\x56\xc2\x30\xcc\x76\xb2\x09\xea\x4a\xde\x28\x51\x6f\xcd\x1f\x7f\xb8\x79\x16\x69\x3d\x9a\x17\x6c\x5b\xc8\x59\x0d\xf7\x77\x74\xd0\xca\x95\xae\xe4\x71\x66\x94\xf9\x66\x8f\x3f\xfd\xc1\x0b\xa5\xf4\x89\xe6\xdd\x9d\x1b\x1a\xd7\xc7\x9f\xb1\x7f\xc8\x20\xd2\x65\xa0\xe6\x0d\x93\x7b\xae\x43\x66\x8b\xe4\x9b\x1b\xff\xa4\x60\xa9\xc9\x6f\x58\x75\x55\xf0\xec\x49\x2c\x08\xb4\x5f\xcf\x27\x0f\x41\xb3\xed\x96\x51\x16\x5d\x64\xd1\xa5\xd4\xfb\xf4\xe4\x83\xff\xab\xa8\x47\xc6\xb7\x5a\x2e\x7d\x02\x4f\x2f\x6d\x23\x39\xbc\x19\x22\xf8\x46\x4d\xc9\xf9\x48\x72\x4d\x7d\xc1\xf2\x9b\x37\x7b\x0c\x63\x2e\x7d\x3d\xf9\x80\xfa\x52\xcd\xc9\xcf\xd3\xd3\x95\xc0\x8e\xc2\xbc\x64\x57\x6b\x5d\x7c\x29\x01\x56\x1d\x7a\x6f\xa2\x6d\x6c\xbf\xd7\xa3\x8f\xcd\x6f\xbf\xb8\x84\x0b\xbe\x80\x27\x40\xfa\x6e\x36\xca\x53\xbc\xe7\xe4\x93\x6c\x68\xe2\x19\x6a\x77\xcd\xb1\x3d\x98\xa2\x2e\x64\x6b\xd5\x52\xf4\x13\x2e\xbe\x3b\xe6\x3c\x3d\x5d\x11\xef\x2c\x4d\xf9\xe6\x71\x47\xbf\x56\x9a\x81\xa5\x88\xd8\x1d\xe3\x36\xda\x3a\x72\xfa\x5d\x91\xcb\x4d\xe0\x0b\x78\x0a\x5e\x00\xce\xdb\x2e\x2f\x09\x71\x88\xc9\xd4\x59\x69\x44\x53\x54\x16\xcc\x88\xdc\x0f\x23\xe6\xb3\x26\xab\x8b\xfa\x70\xe7\x45\x8e\x51\x4f\x4f\xb7\x1c\x06\xb2\x53\xa7\xbc\x87\x4c\xb4\x65\x36\xd9\xa8\xbe\x9a\xa2\xf9\x3f\x5f\x7d\xe0\x79\xc7\xee\xba\xeb\x95\x3b\x17\x07\x2e\xc4\x5d\x8c\xbb\x39\xff\xdc\x19\x9b\xe2\x9b\x0a\xf3\xb8\xa8\xa5\xca\x4f\xd3\xef\x6e\x13\x11\x9b\x59\x5a\x35\xd2\x7d\x09\xf3\xf4\x47\xc1\xa7\xa7\xab\x4f\x5a\x27\xb3\x79\x02\xc9\xcd\x7f\xfc\x6a\x66\xb7\x25\x46\x7b\x43\xf3\x08\x13\x79\xf0\x71\xfb\x83\xbc\xbb\x1f\x6f\x27\xde\xba\x70\xdb\xe2\xae\x0d\xb2\x39\xe6\x16\x69\x36\x4b\x9a\x28\x86\x4a\xa0\xe9\xb2\xbb\x75\x44\x74\xd6\x6e\xcd\x44\x5f\xd3\x82\xd5\x91\xd6\xe9\xe9\xaa\x7c\x37\x55\x7e\x72\x28\x8b\xf5\x96\x62\x39\x97\x23\xc9\x21\xba\x35\x3a\x15\x1a\xee\xeb\x96\x17\xca\xcf\x0a\x1f\xe7\x3f\x0a\x7f\xf2\x05\xf9\xf5\xab\x7a\x2c\x4a\xd2\x51\x96\x05\xd1\x2c\x55\x74\x33\x32\xf7\xba\xa8\xb7\x39\x48\xb5\x0f\xfb\xbf\x2e\x3a\x1d\x4f\x9e\x9e\xee\x64\x0f\xa6\x95\x66\x45\xce\xd8\x6f\xab\x2e\xf0\x59\x52\xa9\x11\xa4\xa1\xbb\xe1\x65\x60\x73\xbe\x9f\x79\xbb\x8b\xca\xf2\x5a\x16\x35\x06\x8d\x1b\x23\x1f\xd7\xf5\x1b\x09\x0b\xaf\x68\x91\x2a\x8e\xf9\x07\xcf\x2b\xd1\x3d\x39\xb3\x75\x62\x03\x86\x4b\xed\x27\x33\xa7\xa7\xc7\xb2\xa3\xfb\x95\x23\xf1\x02\xce\x01\x1a\x27\x22\x7e\x2c\xfd\xe4\xbb\x04\x8d\xdf\x1e\x7d\x51\x24\x24\xc5\x9b\xc5\xe1\xc1\xc6\xc7\xb9\x88\xd7\xf2\xe9\x90\x04\x9f\x0a\x9d\x75\x4a\x2c\x4b\xf5\xa5\xf9\xb1\x17\x5b\xb4\x48\xde\xd3\xfa\xa4\xa1\x1f\xcb\xf1\xf0\xee\x9c\x76\xac\x0b\x4a\xd6\xf0\x48\xd5\x7f\x2b\xaf\x2c\x28\xc5\x8c\x45\xd1\xc7\xa0\x44\x73\x48\x21\x4e\xba\x4d\x7c\x9f\xe8\x94\x98\x8d\xb4\x8d\x72\x84\x01\x9d\xe5\x1b\xb7\xb2\xe4\x6b\xd5\x2d\x0b\x0b\xaf\xa2\x18\xdc\xbc\xaa\x06\xf1\xa1\xfc\x95\x29\x58\xc2\xbc\x63\x33\x7b\x06\x95\x77\x8f\x0d\xbb\xb6\x8b\x9c\x93\x80\x3f\xcb\x4f\xda\x78\x76\x0e\xa6\xc6\xef\x78\xf4\x24\x74\x06\x0c\xae\xdf\xab\xd9\xee\x73\xeb\x09\xbd\x96\xd8\xfa\xf5\x4d\x6b\xd6\x2a\xdf\x2b\x23\x66\x24\x1f\xab\x91\x7a\xf8\xee\x0a\xe2\xe4\xde\x72\x72\xfb\x9d\x6c\x9c\xc8\x5d\x0f\x7a\x8b\x22\x2d\x7c\x39\x3b\x21\x3a\xb1\x14\xd1\xcb\x02\x76\x7c\x6f\xb8\x9d\xb9\x32\xb9\xd1\xf8\xde\x09\xd9\x49\xec\xff\x8c\x54\xe9\xd5\x13\x31\x73\x75\x68\xf4\xa7\x8b\x5b\xce\x63\x68\x72\x1c\xad\x5a\x47\x64\x6b\xd7\x05\xba\x2a\xca\x19\x53\x79\x43\x7f\xba\x71\x58\x5c\xd5\xca\xd0\xb2\x56\x5a\xfb\xa5\x25\x47\x2f\x9d\x29\xd1\x29\x21\x24\x15\x21\x5d\x2b\x7f\x45\x65\x4d\xf7\xab\x51\xbe\xb5\xa2\x73\xb8\xaf\x6b\xf8\x9d\x34\x9c\xe2\xdb\xad\x8f\x46\x15\xd6\x9a\x10\x96\xf2\xd2\x08\x7f\x53\x70\x11\x7a\xf2\xc5\x90\x8f\x6e\xf4\x96\x6f\x74\xc9\x95\x5f\xea\x95\x69\x13\x6b\x04\xaa\x0c\xa9\x09\xa9\x37\x6a\xb1\xea\x6a\x9a\x50\x5b\xdf\x70\xd2\xf4\xf6\x0b\xb2\x8b\x7d\x92\x4e\x5c\xb0\x5e\x33\xd8\xad\x33\xf5\x65\x03\x91\x85\x3f\xc4\x5a\xc0\xeb\x47\xaa\x77\x28\xf0\x48\x12\x0d\x89\xf1\xb8\x69\x63\x64\x9b\x64\x93\x61\x39\x68\xe6\x63\x2a\x66\x22\x61\x66\x6f\xbe\x6c\xe3\xed\x54\xee\x19\x1c\x38\x1f\xf9\x30\x49\x3d\xfb\x42\xa9\x5c\x5d\x4b\x97\xdd\xe8\x8b\xa5\xf0\xc3\xa9\x73\x5b\xb9\x63\x3a\x63\xd5\x2b\x51\x57\x52\x50\x97\x2c\x19\xae\xed\x83\xe9\x98\xe6\x01\xdc\xaa\xdd\x5b\x5c\xd1\x9c\x4f\x5c\x1b\x3c\x25\x7d\x48\x83\x02\xc3\x5b\x13\x24\x33\xa6\x8a\xf0\x2a\x1b\x5b\x05\xfb\x97\xa6\x9e\xac\xd1\xfd\xf9\x1c\xe6\x16\xe9\xb4\x51\xef\xcb\x7a\xf3\xe2\x0b\x69\x8b\x31\x4f\x03\x2b\xc2\xe6\x43\x48\x43\x3f\x87\xb0\x07\x4f\x86\x7e\x0a\x97\x89\x31\x4b\x54\x4f\xaf\xc8\xd7\x2b\xdf\x6e\x40\xef\x14\x1f\xc5\x9f\x2b\xdb\xfc\x87\x2c\xc6\xa6\xcf\xf4\x6a\x9f\x6f\x53\x7a\xf9\xbd\x1c\xec\xc4\xb2\x94\x8d\x64\xf5\xe4\xe6\x64\xd6\x94\xb2\x54\xb3\x0c\xed\x9c\xc9\x22\xbb\x0a\xa5\xfa\x1f\x1d\x5f\xfb\xe3\x27\x77\x56\x3e\xec\xf3\xfd\xb3\xf7\xdd\xaa\x9b\x13\x1c\xe2\x6f\xdb\xad\xe1\x2a\xb2\xc8\xd2\x28\x1c\x2d\x7c\x5e\x94\x5a\xac\x58\xfa\xb0\x5c\xb7\x2e\xad\xd9\xbd\xe3\x51\x3f\xd1\xf8\xc9\xe2\x85\x2d\xbe\x93\x84\x7f\xe6\xff\xfb\x75\x92\x7a\x38\xb8\x3b\xbf\x83\xba\x25\xbc\x41\xbe\xa5\xb5\x99\xb1\x8b\x7d\xda\xfd\x3f\xe1\x3b\x76\xda\x57\xd9\x25\xdd\x18\x5b\x55\x59\x62\x9b\xbf\x3d\xad\x35\x49\x39\xd6\x3a\x5e\x3e\x5a\x3f\x6e\x31\xe3\xb5\x1e\x73\xb2\xf9\x1f\x38\x9f\xed\xde\xde\x18\x5e\x45\x5d\x62\x9c\xb5\x99\x1c\x18\x7f\x3f\x2c\xde\xdf\xd4\x2d\xd3\x79\xa3\x4d\xb1\x79\xb9\xe9\xb8\xc5\xab\xfd\x4e\x2f\xf6\xd4\xe6\x5a\xe9\xf1\xfd\x7f\x64\x8f\xda\x7d\xb5\xf2\x64\x96\x6f\x22\x72\xf4\xc7\x40\x6b\x4f\x6f\x87\x5e\xcb\x48\x23\x56\x0d\x69\x15\x4e\x69\x5f\xf1\x58\x21\x5d\xe1\xcd\xa2\x4f\x25\x89\x0d\x6f\x7a\x34\x26\xf7\xd7\x1e\x1d\xe5\xfc\x95\xfd\xe0\xe9\xa6\xc0\xdc\x95\x91\x83\x3e\xf4\x8e\xde\x16\x8c\x86\xe7\xd5\x4f\xcb\x4e\x8a\x5f\xe4\xcd\x67\x99\xa7\x55\xa5\x3c\x4e\x50\x8c\xc3\x8e\x63\x8a\x47\x4b\xa1\x2f\x18\xac\xb3\xea\xbd\x3c\xa9\xba\x76\xf5\xf8\xe1\x9f\x25\xac\x91\xcc\xa4\x0d\xce\xb7\x23\xd7\xf3\x56\x2e\x95\xfc\xc8\xf3\xcb\xbc\x95\xe2\x9d\xc0\x10\x53\x14\xde\x1c\x52\x18\x28\xe1\x7f\xc1\xe7\xad\x77\x8f\xdf\xe5\x30\xe1\x64\xf7\xfc\x92\xba\xb9\x2e\xca\x49\xda\x75\xa3\x13\x9b\xdf\xf9\xf7\xf1\x17\x25\x06\x73\x5b\x59\xaa\x04\x0b\xb0\xb2\x2e\x25\x6b\xc6\x3d\x89\xc8\x08\xb9\xe4\x7f\xc3\x6b\xd1\xed\xad\xd3\x67\xfb\x1c\xeb\x55\x4b\x56\xcb\x1c\xdb\xcb\xee\xc7\x61\x0a\x29\x28\x05\xf3\x75\xb6\xdd\xc9\xd3\x45\x1b\x83\xbf\x4b\xd8\xc0\x9d\xa4\xe9\xf8\x5a\x3d\x96\x77\x21\x29\x21\x2a\x34\xe4\x81\x1f\xb3\x87\xa6\xf3\x05\x5b\x7e\x4b\x0c\x13\x72\x03\x0c\xed\x44\xad\x64\x75\x27\xf5\x06\x1d\x0a\xab\x7d\x8f\x96\xb0\x0f\xc9\x83\x45\x33\x8d\x0e\xfd\xf2\xf3\x57\x76\x8f\xcf\x25\x2c\xed\x0f\x6e\xd6\xb3\x17\xfa\x24\xcb\x84\x73\xfa\xf6\xbb\xe4\xda\xf7\x58\xbe\x33\xa2\xd3\x79\xa7\x6e\xae\xb4\x20\x7f\x59\x86\x45\x62\x5b\xec\x44\x82\xe7\x57\xbd\xde\x77\x6b\x49\x4f\xda\x88\x3b\xe9\x62\xa5\x75\xad\xd4\x23\xf4\x2b\x8a\xc7\x70\x4d\x89\x6e\xb6\xa9\x27\xb0\x32\x37\x23\x3b\xd2\xca\xfb\x97\xbd\xb8\x99\xa3\x81\xbc\x86\x8d\xd2\x67\x39\x24\x71\x51\xa1\x3d\x3e\x4b\x2e\x54\xb6\x1e\x96\x64\xb6\x1d\x51\x03\x45\x11\xfd\xeb\x76\xf7\x7d\x6c\x63\x88\xb3\x9f\x55\x6d\x75\x09\x4e\xb5\x6e\x41\x16\xea\x84\x65\x66\xb3\x43\xb3\xa4\x2e\x71\x28\x20\xd9\x31\xdf\x44\x56\x6b\x54\xe9\x9a\xf4\xa9\x48\x22\x6f\x11\x9b\x09\x53\x09\x3d\x2a\x15\x2d\xb9\xcb\xb7\x76\xda\xeb\x1c\x8b\xe2\xd3\x2a\x7a\xc6\xf7\x9c\x54\x83\xb8\x93\xd0\x0b\x8f\x9a\xc6\x87\x4c\x97\x99\x4f\x28\x4f\x4f\x0f\x86\x27\x3b\x5b\x0a\x0a\x6e\xc6\x84\xba\x6f\x5a\xda\x68\x19\xc9\xdf\x14\x77\xe1\x93\x66\xe3\x67\x28\xa1\x38\x21\xd1\xf8\xb4\xfc\xd1\x0e\xe7\x3e\x16\xc3\xd7\x52\x46\x64\xde\x2e\x19\x07\x4d\x79\x4b\x55\xcf\x8a\xa8\xd6\x2c\xe4\xea\x0b\x3d\xa8\xb3\x6f\xf7\xc8\x4f\x4f\x8f\xe4\x26\xa6\x5a\xb8\x72\x37\x22\x04\x9c\x93\x8d\x4a\x15\xf3\xc4\x45\xb8\x83\x99\xd4\xa8\x6c\x88\xe5\x09\xae\x62\x76\xbc\x13\x7c\x6d\xf6\x82\xf6\xb5\x15\x5e\x3d\x79\x0f\x8b\x96\x88\x84\xe2\x9e\x91\xaa\x93\x5c\x30\x66\x0a\x61\x49\x6d\xeb\xe4\x38\xcb\xc6\xd9\x1e\xeb\x99\x2a\x6e\x29\xce\x72\x09\xbb\x6f\x77\x4d\xcb\x57\xa6\x8e\xcf\x95\xe9\x3d\x85\xc2\xe7\x52\x6c\x57\x34\x95\x17\x6e\x8f\xc5\xef\x95\xdd\xa2\x7a\x26\xfb\xbe\x95\xe8\x2e\x7d\x20\x6f\xae\x6c\x94\xce\x4d\x9b\x52\x5f\xa2\xd8\xa5\xfc\xd0\x86\xd6\xe1\x5b\xcb\x10\xca\x9e\x5a\x69\xf9\x90\x65\x1d\x4c\x6d\xe0\xa0\xaa\xc3\x69\xc5\xaa\x40\xe5\xfb\x39\x0c\x8b\x09\xd5\xee\xe9\xf8\x3d\x94\x6b\x98\x17\xde\x5d\x50\x7b\xf0\x03\x15\xeb\x63\x30\xe5\x1c\xbb\xb7\x84\xb5\x7a\x85\xb9\xa4\xc7\x6c\x64\x56\xb6\x75\xad\x6c\x1f\xe6\x82\xc5\xe1\xe8\xe9\xe9\xfc\x8f\x56\x9c\xec\x35\x77\x15\x4b\x0a\xf1\xff\x1f\x61\x6f\x15\x56\xe7\x93\x6c\x0f\x37\x09\x84\x60\xc1\xdd\xdd\xdd\xdd\x21\x84\xe0\xee\x10\xdc\x2d\xb8\x6b\x70\x77\x09\xee\xee\xee\xee\x0e\xc1\x82\x3b\xc1\x13\x02\x84\xec\xef\x99\xcc\x6f\xe6\xcc\xcc\x99\xf3\xff\xfa\x8a\x9b\x2a\x7a\xf7\x7e\x9f\x5e\xeb\xad\x5a\xb5\xf6\x2b\x2d\x02\xa9\x4f\xdc\x5c\x0c\x0c\xa4\x56\x58\xbb\x48\xfd\xd0\x53\x80\x04\xd0\x01\x65\x44\x7c\x7c\x56\x3a\x08\x3f\x8a\x6c\xac\xae\x99\x2d\xb4\x2f\x7a\x2c\x42\xce\x8f\xba\x9b\x81\xd5\xa5\xe2\xa3\x85\x07\x0f\x08\xe4\x1b\xff\x0c\xa4\x59\x23\xc6\xc2\x85\xd1\xc0\xf2\x1d\x19\x37\x19\x2b\x2f\xf9\x25\xce\xd9\x9b\x5a\x18\x29\x60\x09\x90\x01\x27\xc0\x78\x6d\x8c\x5d\x42\x43\xcb\x63\xf5\xd6\x4d\x9b\xd0\x2a\xc9\x1b\x3e\x1a\xfa\x73\x7b\x6d\x4a\x7f\xde\xc2\xf1\xa1\xe1\x83\x2c\x04\x72\x11\x37\x86\x5f\xda\x1b\x97\xe6\xf6\xdd\xd0\x58\xe6\x80\xc3\x82\x8c\x19\xef\x02\xb5\x1c\x36\x08\x30\x02\x74\xc0\x06\x48\x00\xe9\xab\xb7\x98\x3d\x54\x80\x4b\x58\x1a\x4b\x53\xc4\x92\xc8\xd3\x31\xca\xef\xf3\x9b\x9a\xda\x3e\x8f\x05\xb5\x83\xd5\x7b\x3f\x08\xe4\x58\x75\x4c\xb4\x86\x29\xf1\xd2\x1b\xd7\x58\xe0\xdd\x16\x47\x34\x31\x32\x4a\x29\x5c\x0a\xb4\x3c\x20\x04\x4c\x00\x1b\xc0\x01\x11\x68\x3e\x0c\x16\x4a\x23\xce\x34\x29\x5d\x0d\x4a\x8b\x3e\xcf\x97\x91\x8c\x59\xed\x35\x42\x7d\x1e\x0b\x76\xfb\xd3\xf7\x6f\x20\x90\x33\xe6\xa9\x93\xfa\x9b\x74\x72\x3f\x37\xb3\x51\xb9\x28\x2e\x79\x22\x2c\x04\x84\x37\x11\x88\x3b\xaf\x97\x61\x9a\xa0\x11\x5f\xa2\xbc\xcc\x81\x7e\x40\x87\xa2\x78\xc9\xd1\x27\x65\xa8\x81\x6d\x51\xed\x49\x1a\x69\x91\x7d\x57\xfd\xd8\xe7\xb5\x60\x7e\x10\x7e\x9f\x02\x81\x5c\xd2\xcd\x6f\xb5\x94\x66\xd7\x04\x95\x58\x46\x2a\x6e\xf1\x40\x93\x99\x62\xc4\xe0\xb2\x60\xc3\xa3\x63\x21\x1f\x20\x45\x22\xd1\x22\x45\x21\xd7\xa1\x43\xc8\xcc\x38\x2c\x24\xd5\xd5\xa7\x2c\xc3\x3d\x2f\xa2\x9a\xb3\x2b\x6b\x99\xfb\x85\x16\xf7\x0e\xae\x7e\x6a\x43\x20\x77\xfe\x5f\xbc\xbb\x0a\xf3\xce\x3e\x65\xd9\xc1\xa9\x4e\x09\x55\x30\x49\x90\x08\x10\xc4\x93\x62\x12\x6e\xe2\x63\xe0\x44\x60\x8b\xe1\x14\xe1\xd9\x12\xcd\x52\x0c\xb1\x27\x4b\xaa\xaa\x9f\x58\x02\x2f\x9b\xe8\xbc\xcf\xbc\xb5\x75\x03\x99\x8b\xbd\x47\x1a\x0f\xa8\x10\xc8\xa3\xf6\x26\x7c\x9f\x6d\xf1\x64\x14\x81\x63\xb5\x8e\xc1\x3b\x3f\x3e\x7f\x46\x19\x56\x14\xc6\x64\xda\x6c\x2a\x63\x8a\x66\xb2\x7e\x8a\x64\xaa\x7d\x7a\x72\x16\x3d\xee\x5a\x29\x07\xf5\x7e\x8b\x74\xaf\xa9\x68\xcb\x1c\x99\xba\xa3\x41\xb9\x65\xb4\xa3\x87\x47\x23\x08\xe4\xd9\x78\xa7\x6f\xe8\xa2\x3c\x3b\xce\xdc\x9d\xc3\xfc\x9d\xfa\x57\xe9\x13\xbe\x66\x16\x2d\xde\x52\x2e\x34\xb6\x06\x56\x39\x16\x52\x56\x62\x76\x54\x6e\x46\xc1\x15\x89\xed\xf7\xb1\x5a\xf6\x96\x1e\x9e\x6d\xd1\xcf\x9f\x23\xea\xd4\x06\xe3\x56\x92\x8e\xb1\x7f\xfd\x99\xd1\x3a\x3c\x19\x4b\xad\x61\x4c\xc6\x0c\xd6\x75\xb6\x32\x41\x50\xab\x7f\x6b\x21\x88\x29\xfd\x42\xdc\x5d\xc4\x59\xe8\x8d\x20\x85\xd0\x1b\x11\x15\x89\x4a\x59\x15\xa5\x04\x6d\x3d\xa3\x16\x5b\x37\x1f\x9f\xe8\xa0\x5c\xc4\x3a\x84\xc1\xc1\x95\xa4\x93\x87\xbf\xdf\xba\xa7\x64\xd3\x72\xf5\xe6\x79\x05\x71\xee\xfe\x31\x8e\xcd\xc6\xc5\xea\xf9\xef\x1e\xd4\x70\x95\x5e\xcb\xe3\xbf\x87\x97\x25\x91\xd3\x91\x37\x57\x81\xd2\xca\x37\x42\x32\x5f\xb2\xbf\x70\xaf\x0a\x8a\x8b\x4f\xca\x37\xa8\x97\x1c\x32\x5e\x99\x3e\xe5\x7a\xda\x86\xfc\x99\x63\x99\x3b\xe9\x41\xaa\xca\xcb\xfe\x1c\x43\xef\x97\xec\x38\x6f\x8a\xa5\x35\x6b\x58\x60\xb0\xa2\x8b\xa1\xcd\xab\x7d\xad\x9d\xad\xfb\x68\xd4\x6c\xa1\x65\x77\xef\xf6\xc9\xd7\x37\x74\x27\xbe\x3a\x93\xa5\x2c\xb5\xd5\x7f\x58\x78\xf9\xfc\xe8\xc5\xaf\xc7\xbf\x65\xb8\xa6\xdc\x58\x19\xbf\x6d\xb7\xae\x80\xce\xc2\x88\x7e\xf6\xe7\xff\x88\x6c\x49\x60\x07\x67\xf7\xd1\xf2\xc0\x22\xdc\x42\xde\xd2\xd9\x06\xd6\x11\xea\xe3\x9d\x4f\x4e\xc8\x4d\x8c\x45\xca\x63\x2e\x75\x05\x42\xe3\xef\x5e\xe9\x69\xf5\xcd\xd9\xf3\xa7\xdf\x7f\x3a\xdf\x8f\x0e\xc7\x72\x2b\xf5\x23\x07\xad\x15\xe5\xb2\x59\xca\xb1\xa2\x41\x5e\xee\x53\x0e\xf7\x1e\x5e\x1e\x57\xee\xda\x6e\x26\x1e\x3c\x5e\xfe\xfe\xd3\xc1\x87\x51\x23\xc9\x94\x9f\x39\x8b\xfd\x6a\xce\xda\x08\x87\xc4\x66\x3f\xad\xdb\x1c\x53\xdd\x7b\xfd\xe3\xb6\xbd\xeb\x3e\x40\x5f\x6a\x1a\x3e\x6e\x2d\xab\xe0\xf9\xbc\x9b\x28\x16\xe6\x19\x01\x17\xfe\xe2\x13\xf5\x27\xc4\x50\xa6\x70\xce\x68\x97\x38\xeb\x14\xed\x2c\xcc\x02\xc9\x4a\x89\xc6\xfb\x5e\xbf\x71\xbd\xc5\xe9\xad\xa8\xb3\x37\xf7\x2c\xff\x8a\x3a\x37\xe9\x7b\xc9\x4b\xea\x23\x5a\xed\x5d\xd5\xad\x05\x2f\xd3\xc6\x32\xb1\xd3\x12\x92\xaf\x52\x6d\xd2\x5e\xa5\x87\x65\xd1\xe7\xac\x14\x17\x56\x7e\x6d\x98\xe9\xf0\x19\x4c\x98\x55\x5b\x23\x3b\x50\xbc\x6c\x7a\x3a\xf8\x4f\xec\xbb\x01\xfb\x28\xcb\x47\xe3\xac\xdd\x05\x0d\xea\x65\x64\x39\x29\x99\xc8\x85\x45\x45\x7b\x25\xb5\x65\x1b\x95\xef\xea\xbc\x5a\xbe\x75\xa9\x0e\x16\x4e\x42\x96\xc0\xd7\xc6\xe3\xed\xdb\x13\x08\xc7\x7f\x83\xdf\x5b\xdc\xc3\x80\x35\xad\xe9\x2f\x83\x24\x6d\x0d\xb5\x5d\x65\x46\x8d\xae\x0d\xdb\x0d\x90\xe6\xa1\xf6\xdd\xae\xb9\xe1\xd0\x29\x97\xc5\x97\x1b\xcc\xfb\x97\x97\xdb\x0f\xce\xff\x15\xbd\xff\x73\x3d\x3d\x6d\xdf\x53\x7f\xf7\xb8\x66\xbd\x92\x3b\x6f\x3e\xd5\x3c\x73\x3f\xdb\xb8\xd8\xf9\xf9\xff\xcb\x5e\x9e\x69\x1f\x0d\xee\xeb\x6f\xbd\xae\xb5\xcf\x5f\x1f\xdb\x1e\xb0\xee\xb2\x6d\x6d\xae\x97\xaf\xf1\x7f\x99\x58\xf9\xb8\x7a\xb7\xb9\x7e\x3a\xf5\x13\xee\xff\x8a\xfd\xdd\xf1\x13\xfd\xba\xf4\xbc\xe9\xb8\xf9\x40\x62\x27\xe0\xeb\xe1\xda\xe5\xb2\xfe\x3c\xea\x74\xeb\xc4\xfe\x58\xcf\xf0\xd4\x20\xfb\x10\xd5\x08\xdb\x0c\xeb\x86\xfe\xc9\xc7\xff\xec\x84\xfd\x7d\xdd\xe9\x5e\x49\x1d\x73\xec\xb4\xac\x73\xac\x60\x2c\x62\xcf\x64\x4f\xf8\x8e\xd2\x0e\x08\xf7\xca\x77\xee\xb6\xa9\x35\xb1\x35\x1c\xd7\x69\xd7\x99\x35\x6e\xf5\xb4\x4c\xdb\xac\x55\x1f\x33\xdc\xfd\xfe\xcf\xf8\x7b\xa1\x63\x9e\x9d\xe1\x2f\x9b\x73\xee\x93\xcb\x23\x8b\x03\xb4\xdd\x03\x6d\x8b\xcd\x6c\x75\xad\xd5\x42\xe5\xd8\x45\x39\xf9\x3b\xb9\xcc\x39\xaa\xb9\x32\x85\x90\xfa\xe9\x5e\xdb\x29\xd4\x35\xbf\xe3\x93\xef\xff\xf1\x4d\x9e\xf3\xef\x52\x2e\xf5\x4d\x90\x0e\xb8\x76\xbe\x68\xbe\xab\xdb\xac\x92\x2a\x0d\x2d\xcc\xca\x31\xcd\x40\x4d\xc1\x4d\x64\x8c\x23\x88\x81\x8d\xaa\x8d\xce\x4f\x15\x28\xe4\xad\x63\xec\x89\x9c\xcc\x5f\xc7\x3d\x91\xbd\xd7\xfb\x9f\xf8\x1f\xa7\x7b\xdd\x2b\x74\x63\xf6\x3d\x3a\x8d\x9f\x2a\x3b\x4a\x0c\xf3\x86\x32\xab\x53\x46\xe3\xb1\xa3\xe6\xc2\xd8\x83\x8f\xfc\x87\xbc\x87\x3c\x61\xbc\x28\xbc\xa7\xc3\xe6\x92\x1f\x0b\x9f\xea\x03\x7a\xae\xa6\x9d\x36\x09\xcf\x6d\x1f\xa3\xff\x91\xe1\xaa\x7f\x7d\x6d\xaa\xba\x47\xa1\x3e\xa2\xc4\xee\x33\x47\x9a\x6a\xbc\x4a\x64\x71\xf0\xb2\x5f\xb0\x97\xb9\x2b\x82\xa3\xad\x6d\xb6\xd5\xa8\xf9\x88\x79\x80\xcd\x8d\x67\x7f\xb8\x53\x6a\x4f\xd1\x78\xc3\xef\xfe\xb1\x39\xb6\x1d\x97\xeb\x7f\x4e\x99\x9d\x73\x2e\x0f\x0e\x5d\x36\x0d\x95\xe4\x64\x4a\xc7\x25\x87\xa1\x06\x78\x7b\x9a\x7d\x6c\xb3\x7b\xb0\x82\x31\xde\x34\x08\xd2\xd9\xd2\xe4\x50\x63\x52\x6d\x31\x58\xb7\x6d\xf0\x0e\x89\xf4\x4d\x2f\x2e\xcd\x6d\x55\x1e\x09\x58\xfe\x7e\x44\xf5\xe3\xaf\x3a\xca\x41\xd9\xec\x73\xcf\xbb\xaa\xae\xcf\x58\xb1\xb9\x41\x5f\x3d\x73\x1c\x7b\xac\xa7\x4c\x5e\xeb\x5d\x68\xaa\x28\x97\xca\xa3\xc9\x30\x4a\x66\x89\xf7\x4a\x6a\xa8\xf4\x1b\xd3\x3b\x92\xf8\xc7\xc4\x8a\x7f\x56\xab\xd6\xed\x6a\x9e\x32\xdd\x7a\x71\xb1\xf3\xe7\xd1\x4b\xdd\x9b\x9e\x56\x6e\x0f\x2b\xa9\x4b\x41\x0f\xb6\xf7\x14\xb6\x55\x32\xc9\xd0\xfd\xa6\x46\x27\xb7\x2e\x75\x23\xda\x2f\x80\xce\x3d\xc5\x41\xce\xaa\xcb\x2b\xf8\xf6\x83\x66\xab\x39\x8c\x4b\x70\x48\x69\x72\x45\x51\x62\xb3\xd3\x50\xec\xb2\xdc\x31\xe5\xcf\x73\x08\xe4\xd7\xfb\x7d\xb8\x09\xcf\x16\x8d\xbc\xe5\x18\x7f\x1f\x56\xbb\x8a\x0f\x4a\x9a\x22\x0a\x8d\xd2\xa6\x42\x37\xdc\x39\x2c\x8f\xf4\x1b\xd4\x0c\x64\xa7\x24\x05\x2c\xed\xc2\x40\x5e\x48\x9f\xc4\x56\xd7\xbb\x2d\x3a\x3e\x5b\xa0\xfa\xa9\x3b\x7b\x56\x69\x87\xef\xc6\x03\x02\x79\x54\xd8\xdd\x1e\x73\x6f\xa4\xcb\x1e\x0b\xeb\xfa\xb8\x6a\x26\xad\x91\xfe\xfe\xb3\xb8\x36\x1f\x26\x6b\x1d\x6d\x38\xe9\x37\x02\x59\xac\x0b\xb4\x3c\xec\x19\xea\x6b\xae\x49\xa9\x69\xb5\x01\x33\x76\x17\x8d\xd0\xb8\x94\xee\x92\x9a\xd6\x92\xb1\x8d\x75\xa7\x6f\x1c\xbf\x23\x9f\xbd\x76\xcb\xc6\xdb\x6a\xd7\xd2\xcd\x83\x6b\xed\x05\xf4\x9f\x15\x54\xc5\x6d\xb8\x7f\x30\x7e\xa3\x28\x22\x28\xc1\x00\x48\x18\xb0\x46\x2f\xca\x51\xb6\x89\x3b\x99\x4d\x84\xa6\x15\xec\x0c\xa8\xed\x57\xfd\x2b\xe2\xcf\xf2\x0f\x1b\x93\x87\x0a\x57\xd4\x8f\xdd\x1f\xf7\x20\x90\xbd\xfd\xf1\x85\x5a\xf8\xb4\x4a\xa7\x4c\x1b\xe2\xf7\x9a\xd2\x76\xbc\xcf\x8c\x23\xe4\xd5\xb8\x05\x28\x9b\xb0\xdd\x80\x12\x10\x02\x6e\xf8\x01\x3c\x38\xda\x6d\x5e\x8d\x77\xa4\x3a\x94\xd6\xc5\xde\x01\xd1\x82\x39\xc8\xb5\xf6\x7d\x99\x0b\x8e\x07\x5e\xf7\x56\x10\xc8\x81\xc4\xe4\x59\x09\x7b\x24\xb3\xe3\xa2\x2e\xab\xf4\x2f\x2e\x39\x56\x16\x4a\x69\xbc\x08\x14\xd3\x57\x5b\x80\x09\xa0\x02\x52\x80\xf0\x0a\x01\x63\x83\xe2\x37\xa7\x8f\x64\xb0\xba\xac\x39\xb5\xfb\x6d\xb8\x7b\xa6\x61\xe5\x79\x77\xeb\xac\xee\x2e\xd1\xdd\x24\x04\x72\x1c\x34\xf0\xba\xf8\x38\x92\xdb\xb9\x40\xd7\x4d\x1a\x96\xfd\x0d\x59\x0c\x61\x34\x9a\xde\x6b\x34\x40\x01\xa4\xc1\x5b\x80\x0c\x28\x5f\x60\xa1\xac\x92\xaa\xb2\xbd\x11\x3b\x57\x25\x36\x79\x70\x4d\xf9\xf4\x29\xfd\x5d\x85\x74\x67\xc8\x8c\xcd\x8e\xc0\xed\x12\x04\x72\x9e\x32\x10\x59\xfc\x2b\xa6\xc4\x65\x4c\x3f\x4a\x3a\x82\x55\x8c\x50\x0c\xd5\x16\xee\x06\x14\x02\x2c\x80\x0e\x90\x01\x17\x10\x05\xb8\xc8\x6f\x88\xbb\x58\xe2\x44\xa5\x94\xdf\x9a\x88\xb9\x10\x86\xbe\x4b\xeb\x2f\x57\xeb\xac\x9d\x96\xdb\xf6\xbf\x95\x86\x40\xf6\x5e\x0e\x1b\x57\x2a\x26\xa8\x7b\x40\x8c\x82\x65\x86\x59\x87\xf1\x6d\xe0\x12\x5e\x38\x80\x37\x40\x14\x20\x02\x1c\xc0\x0a\x94\x01\x39\x52\x39\x11\x0a\xf3\x8d\x08\xa9\x52\xe1\x87\xd4\x8f\x62\xa1\x61\x69\xda\xe5\x91\x1d\x37\xd3\x0c\x5b\x1a\x37\xd0\x10\xc8\x11\xe6\x44\x5c\x5d\x48\xca\xa6\x6f\xbf\x89\xd9\x7b\x78\x8e\x8f\x04\xe2\xd0\x8e\xd0\x4d\x2f\xe9\x81\x31\x50\x02\x6a\x80\x1a\xf0\x03\x0b\xc4\x62\x42\x0a\x26\x0b\xe1\x71\xc5\x1e\x63\xd8\x8f\x6b\xa1\xbe\x69\xaa\x65\x3a\x9d\x04\xd3\x6a\xdb\x56\xb7\xa8\x10\xc8\xe9\xd2\xec\x50\x53\x71\x66\x57\xc0\xb8\x45\x89\xa2\x34\xb7\x03\x49\x2f\xf2\x2e\xf2\x5b\xa4\x13\xf8\x7c\x58\x27\x98\x7c\xe8\x7e\x98\xc6\x57\xae\x08\x22\x04\x8e\x8c\x59\xc2\xf1\x8a\xa6\xc6\xbc\xce\x47\xa1\xfe\x69\xd3\xe5\x89\x9d\x3f\xa7\xa1\xb6\xfb\x6f\x8d\x21\x90\xeb\x88\xc5\xc9\xf6\x83\x5c\x85\x50\x5a\x5b\xa0\x72\x29\x58\x4b\xff\x44\xc0\x8b\xf6\x8c\xb3\x88\xa5\x85\x56\x81\xe2\x8e\x4c\x83\xc2\x8e\xba\x8b\xa9\x4e\x10\xc3\xa0\x2b\xb4\xa1\xe8\xff\xa1\xf6\x23\x5c\xe8\x74\xfa\xef\xf2\xfb\xce\xe9\x99\xbc\x5d\x93\x3b\x5b\x08\xe4\x07\x64\xcd\xa2\x47\xaf\x70\x3e\x92\xd1\xe1\x5c\x3b\xeb\xed\x30\x0f\x13\x6d\x0f\x2d\x03\x85\x3f\xc9\x00\x61\x11\xfe\x1e\xfe\x25\x01\x2f\x11\x0a\xa9\x3a\x0d\x0e\x33\xbf\xe0\xa3\x22\x87\x71\x90\x0b\xfe\x27\xe7\x0c\xd4\x8a\xd5\xae\xd6\x19\xec\xdd\x9c\xbb\x58\x08\xe4\xe9\xd5\xd6\xd3\xc0\x6d\x59\x6d\xcc\x47\xb7\x6a\xd3\x0e\xb5\x17\x92\x69\xdc\x22\xf4\x28\x2c\x80\xa9\x87\x5e\x9f\x7a\x9e\xa6\x9b\x26\x96\x2e\x91\xd9\x89\x93\x44\xa0\x4f\xbc\x5f\xa9\xe9\x03\xac\xb3\x74\x68\x56\xda\x7d\xa5\x68\x37\xe1\x6c\xc5\xce\xe9\x0f\x02\x08\x04\x32\xb1\x77\x3f\xf2\xab\xaa\x37\xa9\x3f\xf0\xda\x71\xf3\x83\x86\x0a\xab\xa4\x1c\xcf\xa8\xe0\x47\xbe\x13\x1e\x1c\xce\x5b\x2e\x5a\x2e\x71\x1e\x17\x41\x0a\x71\x01\x99\x59\x25\x32\x2d\x42\xd3\x31\x17\xde\xd0\xcd\x0c\xc9\x4a\xb5\xae\xc8\x59\xb5\x3d\xfc\x1f\x7f\x5c\x41\x8e\xd1\x27\x65\xea\x5a\x73\xf9\x63\xbe\xfb\x91\xda\x8f\x19\xd1\xa8\x78\x48\x13\x89\xe4\x49\xdb\x4a\xd6\x4b\x48\x49\xcc\x48\x86\x4a\xc3\xc9\x46\x2b\x69\x6b\xee\x1a\xac\x58\x04\x3b\x52\x7b\xbd\x8d\xb4\xcb\x84\xaf\x78\xdd\xcd\x38\xab\xbe\x2b\xf7\xe3\x4f\xd7\xf9\xcc\x77\x06\xa3\x2b\xa3\xf2\x6d\x16\x7a\x54\xa5\xcf\xaa\xbd\xaf\xd1\xa3\xba\xb9\xe6\xbe\x9a\xa9\x4a\xbd\x72\x9e\xb2\xb2\xf2\x9c\xba\xaf\x36\x9d\x61\x9d\x79\xad\x03\x70\xeb\xf6\x77\x8c\xd4\x4a\x8c\xc9\xd9\xaf\xd1\xef\xae\x98\x45\xdc\x83\xba\x2b\xfd\x5b\x86\x8b\xb8\x75\xdc\x31\xab\x36\x8a\xb2\x84\x0c\xb3\xc8\x43\x9f\x5b\x47\x1a\xd3\x52\x1d\x0e\xe3\x6c\x63\xd9\x0f\xb2\x46\xbc\xc6\x33\xa6\xea\x96\xcf\xf6\x5d\xae\xc7\xbe\x4f\xa1\xb7\xb1\x8b\x99\x50\x05\x41\x95\x3d\x1d\xa4\xa3\x90\x95\x95\x23\x9c\xef\x7f\xea\xbd\x3f\xd3\x0f\x0f\x97\x2d\x86\x7d\x5b\x94\x4a\x3b\x33\xd4\xa2\x29\xfd\xab\x5c\x2c\xad\x5f\x3a\xfa\x38\x64\x3a\xf4\x39\x6a\x3a\xc3\xb8\x50\x7b\x58\xf9\x4a\x86\x6e\xc4\xb8\xa6\x3c\xe7\x56\x94\xa3\x35\x21\xf4\xd0\x8f\x0d\x2f\xcd\xef\xa5\xdc\x74\xff\xe3\xb6\xbd\xf5\xd9\xab\x58\xa4\x1d\x4a\x6a\x7e\x2a\x33\xcb\x2a\x8e\xdb\x0b\xe1\xf0\xe2\x0e\x10\xf5\x85\xf8\x4b\x07\xd4\x07\x41\x87\xfa\x86\x57\xc4\xf2\xa4\x20\x7d\xf6\x2a\x0e\xa8\x23\x69\x77\x18\xcc\x98\xe1\x5f\xdd\x3f\x60\xba\x51\x83\xfc\xcb\x2c\xc5\x35\xde\xae\xf0\xc2\xe0\x50\x7f\xeb\x4d\x65\x4c\x6e\x76\xf2\x8f\x54\xc1\x60\xe8\x68\xea\x58\xcb\x18\xa3\xf8\xf2\x14\xcd\xf4\x6f\x39\x0f\x25\xf6\x55\x5a\xcd\x73\xbd\x1e\x63\xc9\x8b\x1a\x5f\x7f\x9e\x75\xdd\x0f\xff\x07\xf4\xbd\xbf\xea\xdb\x55\x5d\xd2\x1c\x0d\xec\x54\xaf\x53\x2f\x0e\xc8\x5a\x4b\x86\xca\xae\xce\xee\xc9\x41\xcf\x35\x2f\x4c\x2e\x0f\xac\x25\x6c\x91\xea\xa6\x1d\x39\x9e\x71\x5c\xd5\xdf\x9b\xbd\xe2\xf8\x6f\x4e\x14\xbf\x7f\x5d\xf7\xef\xff\xfa\x52\x34\x39\xdc\xd7\xdc\x22\x5d\x4d\x5c\x2c\x51\xf1\xa5\xd2\xa9\x6a\xb6\xfa\xa4\xfe\x7d\xcb\x6c\x57\xc2\x80\xf6\xc4\xf2\x92\xdc\x57\xf1\xa3\xb4\xbb\xb6\xdf\xaf\xff\x2f\x0e\xf0\x8f\xf5\x6b\xfd\x81\xef\x7b\xf9\xb5\xc6\x05\xdd\xe9\xf2\x91\xce\x7e\xc9\xae\xf6\x0e\xc5\x6e\xda\xa1\xd4\xf5\xda\x33\xdb\xff\x33\x2e\xff\xbe\xff\x76\xf2\xf2\xfa\x5b\xe7\x29\xd1\x91\xd6\x2e\xcd\xe6\xce\x5a\xd7\xf2\xf5\xfc\xc6\x3c\xd3\x4c\xcb\x14\xd6\xac\xe7\x12\xd7\x4e\xe0\x85\xe3\x13\xcb\x7f\x8b\x7d\xd6\x7b\x50\xba\xba\x3a\x93\x3d\xe4\xda\xe5\xff\x2a\xb6\xc1\xf5\x45\x60\x31\x62\xfa\x70\x12\x7e\x94\x6e\x90\xaf\x3b\xa8\x6b\xb1\xf3\x77\x27\x74\xa7\xf7\xa0\xd7\xe2\xf8\x76\xca\x39\xe6\xe3\xff\xd6\xa3\x46\x5c\xaa\x9f\xda\x6e\x4f\xaf\xf9\x2e\xbf\x98\x35\x9a\x7c\x3f\xba\x38\xfc\xba\x6f\xaa\x6b\xb3\xcd\xb3\xc9\xa7\xd6\xb7\x3a\xba\x42\xbe\x8c\xbd\x94\xbf\x3c\xbb\xf1\x6e\x18\x76\x6e\xfa\x2b\xee\xb9\xfb\xc3\xcc\xbf\x27\xb8\xf3\xdb\x9b\xdb\x88\x5c\x44\x9e\x60\x1c\x52\xed\xb5\xec\x30\x68\x8e\x68\x58\xaf\xc9\x2d\xfb\x51\x34\x97\xd7\xf3\x39\x22\xfd\x26\xf5\x21\x79\x2d\x29\x3d\x43\xbb\x34\xbe\x05\x6e\x60\x71\x0e\x7c\x1d\x39\x77\x7a\xfc\x57\x5d\x8d\xc6\x69\xcb\xaa\xe6\x6c\xd7\xc0\x8f\x8e\xe7\x26\xd4\x1a\xdf\x72\xb5\xa2\x9b\xdc\xe7\x2c\xce\xb4\xd4\x84\x6f\x31\x55\x11\x91\x9f\x70\x82\x48\x03\x67\x02\xe5\xa3\xa4\xb3\xf8\x4b\xee\x9a\xd4\x06\x5c\xe7\xee\xb7\x82\xbf\x25\xfd\xfe\xe7\x24\xca\x8f\xd4\x5d\xf2\x99\xf3\x41\xe5\x56\xe5\xea\x91\x22\x9f\x1c\xf2\xf4\x83\x64\x9a\x98\xfb\xf0\xc3\x60\x7d\xbf\x78\xef\x45\xf7\x9d\x8f\xc9\x8e\x49\x76\x5f\x1c\xa7\x7d\xb7\xa2\x18\x33\xec\x4a\x49\x5b\xf8\x86\xa1\x16\xd7\xf7\x3e\xdd\xfe\x93\x3f\x5c\x30\x7c\x09\x1e\x36\x69\x6b\xac\xf4\xcb\x33\x48\x75\x8f\x7b\x15\x9e\x1e\x54\xe9\x2b\xe3\x01\x9c\x35\x6c\x9f\x2d\xb5\x4d\xdf\x1b\x9d\xe8\x53\xeb\xd6\x7c\x30\x75\xd4\xf0\x53\x8f\x91\xcc\xa2\x2b\x27\x68\x97\x19\xab\x5e\x7d\x7f\x42\xfa\xf0\xd7\xbc\xde\x49\xca\x7c\x7b\xb7\x60\x6d\x49\x7e\x76\xb2\x40\x84\xa8\xff\x9a\xe7\x8c\xf3\x77\x5b\x71\x33\x3e\xa3\x1a\x5d\x32\x8d\x4d\xa5\x32\x05\x24\xd9\x70\xd9\x76\xf5\x64\xe3\x73\xe7\xca\x20\xd8\x78\x89\xdc\xee\x5a\x87\x1e\xba\x99\xe7\x6d\xfc\xcb\xcc\x3f\x4f\x62\xcc\x61\xeb\x74\x5a\x7b\x42\xa9\x43\xda\x73\x44\x8e\xaf\xbd\x73\xae\x75\xa1\x89\x88\x5e\x96\x3a\x8c\xa2\xe2\xbb\x2b\xc9\xaf\xc2\x10\x81\x62\xde\x05\x01\xb4\xf7\x21\x5a\x57\x16\xe9\x6e\xe0\xd3\x79\x2a\x76\x71\x68\xd3\xd9\x30\xe4\x0b\xec\xd1\xc5\xcf\x46\x08\xe4\x99\x6e\xa7\x78\xe2\x55\xc3\x5d\xee\x6a\xcc\xa0\x3f\x99\xd3\xbd\x05\xa5\x3e\x89\x7a\xb4\x5c\x83\x94\x80\x08\x1e\x9f\x30\x47\x3f\x73\x33\x3d\x2a\x8d\x23\x8b\xba\x08\x92\xc2\xaa\x81\x95\x9d\x8d\x4f\x65\x4c\x6a\xf6\x7e\xf5\x65\x8f\xc8\xec\xc9\xf6\xd2\x0d\x05\x04\xf2\xb0\xb2\x93\x3a\x32\x5f\xb7\x94\x65\x18\x96\xe9\x96\x63\x39\xa9\xbb\xaf\x84\xf6\x36\x4b\x44\x8f\x47\x8c\x39\x84\x76\x93\xbc\x98\x28\x03\x4f\x18\xdb\x83\xc6\x8f\x07\x48\x59\xa9\xf3\x9b\x61\xb8\xc2\x87\x62\xa7\x16\x97\x0a\xb6\xd2\x8c\xf9\xae\xef\x9c\x33\x3f\x7b\xfd\xe2\xd8\x5e\x1a\xca\xae\x6e\x4c\x31\x0f\x04\x0e\x9b\x86\xc8\xca\x7a\x52\x0e\xfc\x67\xec\x80\xee\x90\xf4\x00\x6f\x1b\xfd\xfc\x4d\x12\x9c\x28\x32\x09\x71\x09\xf3\x95\xd0\x8e\x3c\xc4\x80\xc1\x3e\xd1\x1f\x23\x1e\x2a\x1f\xb7\x01\x76\x30\x72\x29\xe3\x18\xe6\xa1\xf5\xe9\xd5\xb6\xe6\x10\x41\x45\x75\x38\xc4\xe7\x41\x5f\x4b\x0b\xfa\xad\xbf\xa0\x0c\xcb\x4f\x6a\x2c\x42\x08\xe6\x4b\x44\x44\xe8\x5f\x80\x05\x90\xc3\x89\xe3\x32\xd2\xb4\xf2\x42\xbd\x9d\xd7\x4a\xb3\xbc\xf0\x3c\x8f\xbc\xca\x1a\xa8\x36\xec\x55\x9f\xab\xde\x6b\xbb\xfb\xfd\xcc\xf9\xb5\x71\x88\x39\x2f\x32\x1c\xd8\x09\x68\xb3\x49\xb3\x73\x27\xb1\x79\x51\x9b\x12\x62\xa0\x75\xc1\xcd\x00\x35\xc0\x0d\x88\x01\xc3\xcb\x4e\x74\x7c\xb2\x6d\xb6\x6f\x12\x9c\x2a\x3f\x4c\xe5\x5c\xeb\x3e\x3d\xa4\x95\x97\x13\x75\xa4\x4d\x33\x6e\x6d\xdc\xb8\x43\x20\xdb\xa2\xdd\xe1\xb9\xa7\x21\x09\xf6\x09\x5a\x11\x12\x01\xac\x17\xe4\x13\x84\xf7\xe8\x23\x70\xb1\x00\x1a\xa8\x00\x12\x40\x0d\x88\x00\xe2\x1b\x4d\xc2\x2b\xa6\x6d\x61\x79\x85\x6c\xa3\x60\xa7\xc4\x60\xbd\x64\xd7\x92\xc8\xd6\xcb\x89\xf6\x8d\xc4\xcb\x41\x48\xee\x57\xcf\xf6\xce\xdc\x5f\xe1\x78\x8e\xa9\xda\x66\x12\x2d\xcc\xfa\x04\x57\x98\xfd\xf0\x97\x50\xba\x80\x04\x90\x00\x76\xc0\x0a\x44\x01\x17\xbc\x17\x9e\x2a\x7d\xac\x80\x9c\xdc\x57\xfd\xdf\xf6\x29\x01\x43\x89\xcb\x45\x96\x2d\x93\xe3\x94\xeb\x0b\xdf\x02\x21\x90\x8d\xc1\x1e\xc6\xc2\xcd\x68\x59\xe7\x51\x3d\x63\x49\x49\x66\x32\xdc\x6a\xf8\xc8\x97\x24\x00\x13\x20\x00\x52\xc0\x04\x98\xc0\x1b\x40\xf8\xda\x05\xe7\x84\xb6\x9c\x6f\xfe\x3d\x99\xde\xac\x3d\xa6\xbf\x60\x62\x41\x61\x7a\xf3\xf4\x28\xf5\xea\xe5\x37\x4f\x08\x64\xb3\x60\xe0\xbc\xfc\x75\x9c\x9e\xfb\xa9\x21\xcc\xdb\x61\x96\x09\xbc\x97\x2f\x99\x01\x25\x40\x02\x02\x40\x1d\xa0\x00\x6a\x40\x06\x68\x5e\xdd\x61\xf7\xd2\x78\xf0\xba\xca\xfa\xea\x76\xdb\x99\xfa\xcf\x27\xf0\x15\x72\x36\x55\x8e\xce\xad\x0d\x7d\x53\xf8\x9d\xbc\x2f\x33\xba\x5c\x13\x92\x2c\xed\x43\x63\x22\x2c\x5b\xce\xe1\x48\xc0\x0b\xeb\x04\x28\x81\x22\x20\x02\xaf\x01\x0e\x40\x03\x2c\x00\x07\x26\x10\x0b\x8f\xba\x85\x97\xf2\x1d\x94\xae\x92\x9d\x8d\xbf\x49\x22\x5c\x41\x5e\xb3\xe4\x68\xdf\xda\xd7\x6f\xdc\x10\xc8\xf1\xf9\x74\x45\xc3\x5d\x06\x5b\x40\xb4\xf9\x85\x42\x02\xf7\x03\xe9\xe3\x9b\xf7\x2f\x72\x5f\x1e\x43\x59\x03\x7c\x40\x04\xcc\x00\x05\x10\x84\xb6\xc6\xb4\xa7\x2a\xe2\x19\x7c\x97\xa1\x4b\x6d\x67\xe0\x8f\x19\x7f\x58\x48\xd7\x8c\x3d\xda\xb4\x2e\xf0\xad\xeb\x4f\x37\x0a\xb6\x35\xed\x73\x46\x08\x93\x8d\x8c\xca\x17\x41\x0e\x7a\x64\x3c\x2c\x44\x32\xe4\x76\x44\x05\xb8\x9b\xd7\x68\xb0\xaf\x5e\xbf\x81\x53\x46\xf0\xc0\x88\xa1\x52\xe1\xf9\xf0\xce\x53\x87\xd7\xee\x95\x5f\x63\x82\x76\xa1\x63\xb3\xda\xd8\xf4\x7a\xe9\xb7\x7e\x08\xe4\x56\xfb\x4b\x4d\x97\x66\x81\x66\xf8\x9c\x43\x87\x36\x9a\xf4\x35\x37\x2e\xb5\x1c\x2e\x33\x46\x1e\x2e\x3c\x16\x0c\xfa\x1a\x7a\x25\xfa\x19\x66\x3c\xf6\x14\x41\x06\xd5\x27\x6e\x51\x99\x58\x5d\x7b\x3b\x3b\xbf\xc5\x04\xcb\xc2\x8d\xe6\xe9\x31\x82\x0d\xcb\x0b\x0a\x08\xe4\x67\xc9\x86\x60\xdf\xc7\x92\xc0\xe8\x22\x37\x7a\x93\x9f\x2a\xdf\x25\xc8\x38\x1a\xa8\xa9\xa9\xb3\x29\x53\x48\xad\x49\x73\x48\x58\x49\x2d\xc8\x20\x54\xd0\xf4\xe5\xac\x03\xfc\xcc\x32\xcd\x3a\xcc\x76\x5b\x01\xad\xf1\xce\x45\xd0\xcd\x0d\x63\xaa\x1b\x0b\x97\xce\x10\xc8\x33\xe1\xf6\xc8\xf0\x9b\xca\x8c\x24\xce\x40\x0c\x47\x36\x23\x1a\xa5\x4c\xb1\x51\x4e\x59\xba\x7c\xd6\x5f\x2c\xeb\x8c\x99\x4c\x0b\xcc\xba\x2c\x27\x1c\x82\xbc\x0b\x22\x3e\xd2\x69\x8a\xd6\xfa\xfa\xb6\x27\x7e\xe8\x09\xc5\x45\x45\x6d\xc2\xe3\xb9\x9b\x9f\x2e\xa1\xff\x76\x47\x1c\x48\x8d\xfb\xd4\xc5\xe6\x88\xc6\x50\xf9\xb2\xd8\x69\x1a\x38\x29\xb1\x8a\x5f\xf0\x5c\x08\x15\x0b\x46\x0a\x22\xf2\x5f\x09\xfa\x09\xcb\x89\x77\x4a\xdf\x2b\xe4\x69\xe4\x19\x94\x5b\xd4\x3a\x6d\x05\x11\xc5\xb9\x16\xa8\x36\x27\x8d\xab\x6e\xc8\x5f\xf2\xfe\xb9\xa5\xdc\xa6\x17\x3b\xc3\x2a\x94\x32\xb5\x22\x35\xbd\x25\x6c\x1b\x0c\x2a\x55\x9c\xde\x3a\xbe\xff\x2a\x37\x24\x7b\x2f\x2b\xfa\x7e\x40\xfe\x40\x45\x49\x13\x43\xbf\xd0\x6c\xc4\xee\xc9\xdd\x30\x70\x2a\x6a\x32\x23\xa8\xcc\xa2\x75\x61\xb4\x70\xe3\xea\x3a\xe8\x6f\x19\xbe\x11\xaf\x61\x8f\x46\xb4\xea\x97\xba\xa6\xe3\x45\x98\x79\xfd\xb2\x27\xfc\xb0\xa3\xe1\xac\xc3\xa1\x2d\xa2\x3d\xad\x3d\xa7\xd3\x67\x90\x67\x74\x62\x2e\x62\xef\xe1\xaa\xe9\xe7\x16\xce\x9f\xa8\x98\x55\x50\xca\xd4\x88\xdc\x3b\x3c\x53\xbe\x51\x71\xf9\xa7\x17\x74\xcf\x7f\x70\xb7\x64\x32\x54\xd4\xcc\x5d\x92\x98\xf6\x23\xd2\xc6\x37\xcb\x29\xd9\x7c\xc6\x52\xd4\x6c\xcf\xda\xcb\x4a\xdc\xf6\x87\xfd\xb1\xf3\x83\xdb\x90\x9f\x61\xe8\x58\xac\x66\x5a\x54\x7e\x58\x25\x53\x4b\xd4\x80\xc1\x8c\xed\x06\xec\xa9\xe3\x77\xc3\xbf\xdf\xb6\x37\xb9\xbb\x1d\x0b\xc2\x83\x7c\x4d\x79\x25\x2b\x99\xe8\x31\xeb\x81\xcf\xee\xaf\xed\xe9\xdd\x77\xdc\x46\x3d\x86\xbc\xc6\x7c\x59\x83\xfd\xc3\x39\x63\xf1\x53\x19\x73\x6a\xca\x44\x1b\x6a\xba\x39\xc7\xc4\x16\xee\xb6\xda\xcf\xf1\xee\xad\xfe\x89\x3a\x63\x57\xe2\x3b\xf2\xf3\xb1\x83\x5e\x2d\x92\xe5\x4d\x9f\x37\x12\x0d\xc3\x79\xfd\xf9\x43\x7f\x86\x74\x84\x9e\x85\xb7\x47\x0f\x25\x21\xa4\x89\xe6\xbc\x2b\x61\xa9\xbd\x6e\x1f\x1d\xd0\x99\xec\x5b\x15\x39\x00\x57\x3a\xcf\x06\xff\x8a\x7c\xbf\xe5\x2f\x43\x76\x98\x17\xb1\x47\xd8\xdb\x97\x6b\x2c\x0b\x9e\xd2\x21\xf1\x85\x29\x4e\x29\x69\xa9\x6d\xe9\x64\x99\x6c\x79\xc8\x25\x6e\x35\x78\xcd\x58\x3d\xf7\x23\x9e\x0b\xd4\x1b\x8d\x47\x6e\xff\xf9\xe6\xfd\x27\x07\xb8\xaa\xdf\x2b\x5a\x79\x3d\x61\xd8\xd3\xda\xf4\xbe\xe2\x77\xc1\xb7\xdc\x99\xc2\xdb\x92\x93\xf2\x93\x0a\xdb\xda\xf0\xc6\xdd\x2e\xfc\x21\xd7\x29\xa4\x65\xc5\x9d\xcd\xf3\xde\x9f\xbc\xff\x0f\x12\x41\xf5\xcb\xef\xa1\xed\xbb\xfc\x8d\xed\x05\xd3\xc9\xd2\xe1\xee\x3e\xe6\x96\xfb\xfa\xcd\xea\xda\x97\xca\xd5\xf6\xb5\x93\xa3\xb3\xef\x8c\xff\x57\xe0\xd3\xf3\x13\xc2\x77\xc5\x6b\xc2\x6f\x59\xa7\x8e\x47\x87\xbb\x39\x5b\x62\xeb\x6c\xcb\x9b\xf3\xc1\x33\x55\x13\xd9\x23\x2b\xc3\x7a\x43\x9e\xc3\xe8\x93\x06\x5f\xde\x1f\xf0\x5e\xff\x17\x57\x37\x08\xe4\x71\xe6\x9b\xf2\xe9\xe9\x81\xf7\xd6\xf5\x7a\xc4\x17\xd7\xc5\x8e\x59\xbd\x09\xd3\x91\xec\x81\x99\x1e\xd9\x4e\xfa\x96\xbb\x46\xaf\xfa\xc9\xda\x2f\xf5\x59\x5d\x4a\x63\x64\xcb\x64\x7b\x5b\xd7\x6d\x90\xd2\xff\x38\x81\x95\x6f\xa3\x5b\x39\x6b\x07\x8b\x3e\xd3\xbc\x63\xf2\x43\x1e\x7d\x39\x5d\x37\x6d\xf0\x8d\x3b\xb5\xfb\x95\x71\xa5\x55\x45\x48\x79\x32\x9f\xfb\xb2\x3f\xe7\xd1\x56\x5a\x75\x5c\x8f\x12\x2c\xf9\xed\x29\x5c\x09\x3d\xff\xdb\x2c\xca\x5d\xe4\xf6\xc5\x42\xfe\x94\xde\x50\x6c\x77\x78\x6b\x6e\xa3\x4d\x4d\x62\x85\x58\xb1\x4b\xde\x61\xb6\x65\xba\x73\xd2\x60\xbc\x67\x74\x45\x64\x6a\x44\x77\x6c\x5b\xf6\x63\x85\x40\xeb\xcd\x48\xc8\x32\xf5\xfe\xd7\x1b\xbe\x7f\xd9\xc1\xc6\xb1\xf6\x62\xda\x10\x4b\x4f\x4e\xd3\x50\xf5\x87\x52\xec\xfc\xf8\x6c\xce\xb4\xa7\x24\xe3\xd8\xf3\xf0\x83\x50\xa2\x40\x38\xdf\x60\x2f\x29\x0f\x69\xb7\xb3\xc0\xe8\xd8\xce\xcf\xfe\x15\xba\x6d\x87\xa3\x5e\xcb\x2b\x47\xac\x77\xff\xd4\x93\x7c\xaf\xda\x3a\x9b\x40\xef\xf6\xaa\x77\x29\xa5\xce\x99\x48\x13\x88\x9f\x8b\x86\x0e\x63\x0e\x74\xf0\xe9\x73\x1b\xfd\x88\x61\x3f\x69\x0d\x6f\xae\x60\x8a\x64\x46\xe2\xc2\x1f\xe8\x11\xd7\x94\x13\x58\x85\xd9\x59\x36\xd1\xb8\x1e\x7d\xea\xfe\xd8\xf1\xf7\x0c\x17\xc2\xcb\xb3\x7d\x21\xf5\x77\xc5\xd1\x19\x6b\xf1\x49\x9f\x86\x02\xe3\xbc\xa6\x5c\x25\x1c\xda\xac\x93\x4c\xfb\x0d\xab\x74\xee\x35\x6b\x54\x53\x55\x1c\xb5\xe4\xcc\x77\x5d\xd7\x42\x3a\x13\x55\xf3\x0a\xea\x45\xfa\x8c\xe6\xb8\xb6\xcf\x6e\xfe\x9a\x65\x39\x62\x9d\x45\x6b\x93\x2e\xdb\xc8\x4e\x8c\x79\x0a\xa6\xf1\xdc\x71\xba\xb1\xf1\x30\x8d\x37\xcc\xd6\x7e\xa7\xb2\xa7\x80\x2b\x73\x22\xf9\x4d\x9c\x5a\x44\x5c\xce\x41\x4f\xc7\xda\xca\x93\x24\xac\x35\x4d\xa9\xb8\xbb\x35\x60\x14\x75\x55\xeb\x44\xf0\xd1\x18\x02\xf9\x5d\xba\xaf\x38\x99\x54\xa7\x98\x8f\x9a\xe0\x18\xb8\xe9\x2e\x69\x1b\x6e\xf2\x43\xcf\x40\x6d\x49\x3e\xe1\xed\xb3\xd8\xba\xc0\x13\xf7\x03\x07\x26\x0b\x0c\x6b\x92\xd8\xa5\x92\xac\x61\x83\xfd\xb4\x9f\x75\x4c\x73\x0e\x5d\xf5\x65\x2f\xf1\x6c\xff\xce\xe8\x2d\x2b\x04\xf2\xb0\xb6\xc5\x30\x22\x50\x6d\x99\xa1\x11\xee\xed\x71\x69\xb3\x63\x98\xa3\xbe\x28\x77\x27\x75\x21\x6c\xc8\x9d\xc7\x66\xc7\x80\x4d\xf5\x81\xf4\x9e\xf0\x8a\x26\x83\xd7\xe6\xad\xb0\x86\x99\xd9\xaa\x1b\x6f\xe8\x5d\x6a\x43\x49\x58\x6b\xf7\x38\xf4\x9a\xec\x79\xd2\xf3\xe0\x7d\xce\x16\x61\x3f\x5b\x79\x73\xf2\x59\x60\xbf\x83\xe3\x87\x75\xf5\xac\x77\xdc\x22\x25\x3c\x13\x2c\xc8\x34\x85\x64\xe8\xf8\xe1\x98\x6b\xa8\x66\x48\xfc\x24\xa9\x2c\x64\xc2\x4e\xf2\xad\xfa\x86\xf6\xcb\xfe\x54\x71\x55\xb9\x03\xf5\x63\x03\xe7\x8b\x90\x43\xbf\x1f\x90\x9f\x0d\x9b\xad\x3d\xa9\xa5\xeb\xe1\xfa\x1f\x8d\xad\x16\xb4\x94\x65\x3f\x88\xbc\xe7\xe4\x66\x40\x22\x17\xc4\xbd\x46\x87\x46\xf8\x0e\x13\x01\x1c\x5f\xf5\xe2\x64\xd3\x18\x70\x2f\xbc\xf5\xd0\xe4\xb2\x8c\xf5\xf8\x16\x01\x95\xc9\x57\xd5\xd4\x2d\x30\xcb\xb4\x13\x7e\x4b\xfe\x73\x72\xfd\x63\x77\x56\x8e\x6c\xb0\x93\xbd\x9e\x56\xee\x5b\x7f\xb1\x13\x4e\x68\xba\x38\x92\x66\xec\x37\x48\x65\xd0\xc5\x00\x17\xe8\x00\x53\x28\x3b\xd4\x43\x52\x6f\x36\x2c\xd1\x72\xe5\x1a\xe3\x17\x1f\xf3\x43\x6e\x53\xbe\x96\x9a\xb4\x33\x4d\x08\x7e\xc5\xb8\xd4\x7c\x7c\x58\x9f\x6c\x2f\xcf\x08\x0e\x14\xb6\xbe\xd3\xe0\x14\x7f\x64\x5b\xa1\x46\x23\x61\xc2\x42\x45\xd4\x7d\x11\x03\xa8\x01\x29\xa0\x04\x8c\x80\x1c\xb1\x0e\xff\x3b\x03\x89\xc0\x89\x3c\xb2\x7e\xb3\xfd\x73\x40\x55\xc2\xf7\x22\xce\x66\xee\x51\x94\x35\x84\xb3\xbc\x47\x91\x35\xcf\xa6\xfd\x2c\x8c\xa0\x02\x9b\x15\x0d\x1d\xd1\x42\x26\x3a\x42\x75\x6c\x04\xc4\x98\x17\xb7\x00\x05\xd0\x00\x66\x80\x08\x88\x00\xd1\x6b\x72\x6c\x7f\xea\x1b\x9e\x36\x99\x2d\x1d\x38\x9b\x10\x1f\xbd\x58\xea\x3c\xfb\xfa\xae\x21\x9d\xe5\xfb\x53\xca\xc7\x85\xb5\xef\xad\xd0\x39\x1e\x9f\x78\xed\x77\x34\xb3\xc4\xe6\x18\x1a\x71\x26\x10\xb9\xa0\xf9\x80\x20\xa0\x05\x74\x00\x0d\x60\x01\x3e\x40\xff\xf2\x09\xbd\x9d\x42\x99\x73\x46\xea\x9b\xe6\x1b\xcb\x71\xaf\x8b\x68\x81\xcf\x83\x75\xf7\x03\x9a\x4b\x68\x27\xc4\x4f\x75\x4b\x6c\x5d\x5c\x05\x2c\x91\xf2\xce\xa4\xba\x94\x12\x97\x4c\xe8\xd8\x36\x2f\x1b\x00\x2a\x20\x03\xa8\x80\x16\x60\x03\x12\xc0\x0a\xf0\x5f\x20\xa1\xd6\x93\xc3\xb3\x3f\x4b\x8e\x6a\xe8\x58\x54\x78\xbe\x8d\xb2\xcb\xde\xac\x15\xec\x0f\x5a\x44\x3e\x7c\xf8\x19\xbe\xae\xd5\xd7\x5e\x8a\x17\x6b\xe9\x96\x6d\x70\xf2\x96\x92\xe5\x02\x8f\x16\xc6\x05\xe0\x01\x19\x80\x05\x30\x00\x39\xa0\x00\xf8\x00\x0b\x98\xa0\xc4\x91\x92\xb3\x67\x88\x5f\xab\x47\x98\xf7\x79\xd2\x44\x91\x7e\xfe\x52\xdb\x33\x40\xbe\xc4\x79\xc4\xf1\x68\xbf\x7d\x36\xec\x55\xc5\x9d\x38\xe9\x75\x60\x42\x2b\xfb\xc0\xe9\x42\x7c\x88\x48\x0f\x18\x00\x06\x40\x06\x88\x40\x0e\x88\x00\x6c\xc0\x0f\xa8\x91\x1d\x48\xac\xd9\x12\xc4\xad\x55\x67\xcd\xa9\x3c\xbc\x23\x23\xb2\x1f\x6b\xdd\xfb\xcb\x97\x10\x8f\x44\x20\x90\x83\x91\xc9\xf0\xfa\xbc\x74\x5f\xff\x34\x0b\x5c\xc5\x41\xbe\x2e\xaa\x19\x74\x03\xe0\x0d\x5e\x03\x44\x00\x0f\xc8\x80\x31\xe0\x01\xe8\xe0\xed\x9b\x68\xe2\x5a\xd6\x4d\xf1\x05\x35\x04\xb3\x11\x0f\xa5\x28\xe5\xcf\xdc\xb5\xf0\xfd\xc4\x8b\x3f\x8e\x88\x21\x90\x73\x30\x37\xda\x82\x99\x3d\x15\xbc\x60\xb3\xae\xfe\x41\xb4\x9e\x71\x0f\xaf\x1d\x4e\xea\x95\xff\x4b\x7d\x28\x5a\x80\x00\x70\xc0\x1b\x90\x09\xa5\x82\x54\x41\xfc\x8e\x25\x5d\xec\xbb\x6a\xb4\xb9\x95\x07\x55\xa4\xeb\xe7\xc6\xda\xb8\xfe\xf1\xa5\xb1\xc3\x30\x08\xe4\x9a\x66\xb9\xbb\x33\x33\x7f\x38\xbc\xc5\x29\x5a\x0f\x5d\xe6\x1d\xd7\x39\x95\x20\x96\x23\x02\x13\x72\x2e\x52\x10\x42\x0d\xfc\x25\xc2\x25\x62\xf7\x9b\x50\xd4\x09\x42\x2f\xe6\x72\xd1\x2a\xb5\x04\x33\x2b\x8f\xe6\x88\x9b\xec\x6f\xb5\xf9\x03\xd1\xcb\x58\x27\x91\x10\xc8\x77\xbb\x35\xe7\xde\x1f\x25\xda\x31\xe2\x1e\x05\xa6\x28\x2a\x95\xe2\xd2\xec\x46\x14\x8a\xd8\xa1\xf8\x97\xf8\x1a\xd8\xd7\x38\x49\x38\x9b\x78\xdf\x08\x9e\x49\x9e\xa8\xfa\xd9\x5e\x8a\x26\xa8\x40\x9b\x09\xb9\xb3\x47\xe1\x64\x37\xd4\xfa\xf6\xef\x2f\x13\x9d\x48\x42\x20\x0f\xae\x5b\x98\x43\xe4\x15\x07\xc9\xde\x01\x3d\x0e\x83\x86\x56\x8a\xfa\xa2\x34\x6c\xfe\x54\x2f\x68\x42\xa8\x0e\xa9\x24\xa8\x38\xa8\x11\x68\x99\xe8\x51\x99\x05\xb8\xe0\x85\x90\xa5\xfc\x54\xc3\x4c\x5a\xdd\x90\x23\xdf\x64\x9b\xd6\xe6\xf5\x43\x96\xbd\x8e\xe3\x21\x90\xe7\xfd\xbd\xf8\xb1\xe6\xba\xa3\xcf\x90\xe8\x26\x9f\x2c\xdb\x4e\x7d\x5e\x05\x7d\x51\x0b\x4e\x7a\x6e\x09\x8e\x02\x2e\x6a\x8e\x4f\x5c\xe4\xdc\x06\xfc\xe1\xc2\x4e\x92\x79\x72\x8e\x6a\x9b\xfa\x19\x36\x70\x9e\x38\x11\x6d\x59\x3f\xeb\x48\x06\x5c\x97\x26\x4f\xfe\xe8\x28\x8f\x62\xa7\xfb\x3a\xce\xcb\xf7\x32\xb2\x23\x66\xbd\x8c\x6c\x84\xf4\xbe\x2b\x9e\x49\x5c\x0b\x99\x89\xaf\x4b\x60\x88\xad\x4a\x8a\x4b\xb7\xbf\xb3\x52\xf8\xa0\x36\xa6\x77\x60\x2e\x65\xf7\xdb\x23\x36\x38\x3f\xe1\x5d\x1e\x7d\x75\x54\x1f\xf6\x42\xc2\xd1\x1f\x97\x9a\xb3\xe3\x55\xa9\x51\x8a\x96\xc9\x92\x9d\x34\x8b\x70\x3d\xcf\x35\x5b\x11\xc3\x12\xd5\x49\xb5\x51\x85\x69\xc5\x18\x95\x8f\x6a\xfe\x9a\x72\x3a\x2f\x0d\x35\xcc\xe4\xec\x04\x5d\x93\xfd\x03\x23\x7d\x92\xb5\x72\x08\x2a\xc8\x9a\x7b\x86\xf8\x17\x2c\x0e\xfe\xa8\x11\x7e\xe4\x1f\xb0\x2e\x42\x06\xef\x9a\x42\x8b\x1d\x53\xc7\x23\xa8\x7d\xb0\x1c\x4c\x4c\x9e\xb4\xe3\x0c\x2b\x0c\xb8\x8c\xb4\x4c\xde\x5a\x1c\xd8\xc8\xd9\x9f\xb9\x5d\xf9\x81\x4f\x74\x09\x45\x99\xfc\xc5\x70\xb5\xb2\x9d\xf8\x43\xbb\xf3\xba\x5b\xe9\xdf\xfe\xc1\x40\xd8\x76\xdf\xcc\x37\x0f\xc4\x34\x7e\x29\xee\x49\x6f\x8f\x86\x0b\x10\x70\x39\xb0\xee\xb6\x97\xb5\xcf\x71\x1c\x74\xaa\x74\xa5\xf6\x82\x0a\xf8\x10\x3a\x13\xe7\x92\xc6\x93\x37\x58\xd1\xd0\x5c\xd3\x63\x35\x11\xba\xd2\xb5\xeb\xf0\xed\xe0\xf1\x1f\xfe\xcf\x6a\x97\xb5\xdb\xa5\x73\xa7\x03\x41\xcd\x34\x65\xa1\xd9\x82\xf1\xef\x43\x47\x7d\xa4\xfd\x65\xfd\xe7\x03\x60\x82\x94\x43\x88\x23\x87\xe3\x43\x53\xb7\x3f\x67\x94\xb3\xd4\xf9\xb4\xff\x1c\xfe\x3a\xff\x61\x53\xea\xe8\xd3\x1d\x1d\xe4\x5f\x9c\x4d\x9e\xdb\x2f\x3a\xb6\x53\x17\x50\x86\x5f\xb6\x95\x54\x6d\xe4\x9b\xa5\x31\xc4\xcc\x87\x5b\xc7\xd2\xc7\x5e\x27\x14\x26\x4d\xa7\x55\x65\x97\x15\xad\x54\x49\xb7\xe8\xf4\xfa\x4f\x72\x2c\xf9\x6c\x0b\x9c\x3f\xdd\x9f\xfc\x27\x7e\x3f\x73\x5c\x8e\xef\xfa\x2c\xe3\x8e\x83\x6e\xb9\x86\xb1\xb2\xa8\xdc\xcb\x0c\xf6\xdc\x99\xdc\xbb\x3c\xfa\x22\xda\x0a\xd9\x1a\xdc\xa6\xb6\xce\xee\xe1\xb8\x39\xc9\x8d\xab\x7d\x83\x6b\xb2\x5f\x61\xff\x9b\x01\xfc\x9e\xfb\x7d\xf9\x14\xfe\xf3\xed\xdd\xc7\x6b\xd8\x6f\x77\x27\x4f\x07\x6e\xbb\x50\x5f\x8f\xd7\x3a\xbf\x60\x2f\xea\xcd\x96\xcf\x0c\xcc\x0c\xcc\xa6\x6c\x96\x1d\xff\xfa\xee\xf2\xdf\x19\xc8\x43\xf5\xc5\xd5\x25\xe2\x09\xcd\xc1\xe6\x6e\xc0\xa6\xf6\x6a\xd0\x72\xf4\xfc\xcc\x0c\xe1\xf8\x97\x91\xaa\xfe\xc2\xde\xdc\xae\xbe\x8e\xf1\x4e\xb4\x3e\xd9\x29\xc6\xb5\x83\x43\xf7\xbb\xff\xe2\x46\xfe\x73\xfd\xc4\x65\x3b\xec\xab\xf6\x97\xa4\xc5\xb3\x99\x89\x89\xb2\x11\xed\xfe\xaf\xbd\xec\xed\xab\xad\x7c\x0d\x38\x35\x64\x95\x26\xe5\xbe\xa5\xd0\xa5\xe1\x75\x72\xdd\x52\xe3\xe4\xab\x59\x07\x35\x77\xff\x31\x0d\xfb\xcc\x72\xd6\xba\x4e\x33\x57\x3c\xc5\x31\x6a\xde\xaf\xd4\x95\xd1\xe6\xde\x24\x52\xbb\x5d\x85\x58\x5a\x58\xa0\x94\x1b\x94\xad\x9c\x96\x94\xa2\x9e\x64\x92\xe4\x58\x10\x59\x79\xd5\xd5\x3c\x2e\xb7\x6a\x71\x2c\x70\xf7\x6f\x9f\xe5\x26\x7a\xd3\x74\x6a\x75\xe0\xb0\x7b\xb5\x05\xb3\x2e\xa3\x32\xa2\xc4\x3e\x7f\x22\xc7\x21\xa3\x26\x59\x3f\xfe\x36\xea\x63\x18\x4f\x48\x6f\x10\x99\x7f\x66\x68\x67\x12\x7d\xfe\x60\x0d\x42\xe7\xf4\x14\xf4\x1a\xfd\xb1\xfc\xfd\xf7\x7f\xee\x60\xf4\x50\x70\x5e\xa2\x2f\xa8\xf5\xac\xe6\x57\x71\x4b\xce\xaf\x4c\xc1\xe4\x9f\xf1\xa7\x51\xf2\x61\xd8\x81\x95\xbe\xfa\x1e\x1a\x2e\x49\x8e\xdf\xed\x97\xec\x9e\xdd\xc9\x43\xeb\x93\xd4\xf3\x86\x6b\x15\x7a\xdc\xa6\xf1\xbe\xda\x9f\xef\xfc\xba\xff\x8b\x81\x84\x6c\xb6\x8f\xe6\x37\x51\x57\x5e\xe4\x35\xa4\x55\xc6\xed\x47\x74\x84\x08\xfb\x6d\x79\xb1\xba\x50\xda\x9f\x58\xbf\x37\x33\xf8\x50\xa4\xff\x4d\x37\x50\x67\xd1\xfa\x8d\x3b\xf7\xa7\xd4\x94\xc9\x42\x48\x43\xf6\x10\xcd\x82\xe9\xae\xf2\xcd\x5f\xfd\xb1\x6f\x64\x0b\x39\xdd\x89\x65\xd5\xb9\x24\xc9\x4c\x11\xee\x01\xcf\x9e\xb3\x1f\xcb\xec\x8e\x2c\x4e\x8c\x5f\xe9\x0b\x69\x63\xaa\xe6\x2a\x84\xc8\x76\xbf\x15\x95\x8f\x32\x1c\xb5\xf5\xf4\x96\x89\x1c\x4f\xf7\x2c\x93\x6c\xcb\x1b\x9d\x5c\xcb\x39\xc5\x7a\xfc\xa3\xd0\x39\xc0\x9a\xaa\x6b\x94\xce\x47\x4a\xda\x0b\x33\xf6\xb1\xfc\x48\x6c\xfd\xca\xc4\x57\x2f\x5e\x53\x5f\x59\xf5\xbd\xbc\xd4\x67\x51\x0d\x41\x22\x5e\x7d\xae\x56\x09\x88\xaa\x9e\x31\x95\x13\x41\x80\x5e\xec\x52\x1e\x6c\xed\xdb\xde\xe6\xd9\xd4\x5d\xaf\xdb\x6a\x08\xe4\xd1\x75\x97\x76\xc4\xb9\x9a\x2d\x53\x20\x8a\xd7\x7b\xd7\xe1\xad\x59\xa9\xae\xa1\xda\x6f\xf9\x86\xb7\x3c\xa2\x94\x7c\xcc\x1c\xfb\xcc\x9d\xf4\xb6\xd4\xef\x68\x3f\xf3\x4a\xc8\x58\x68\x1a\x9a\xb7\xbb\xa9\x7d\x32\x4b\x59\x2d\xd5\x6e\x75\x1b\x27\x59\x13\x3e\x53\xf8\xe5\x78\x77\xba\xa1\xdb\xcb\x5b\x22\x96\x7c\x1a\xf4\xc5\x59\xd3\x64\x46\xdb\x47\xe1\x4a\x6a\x5c\xb8\x82\x07\x9a\xa5\x89\x0e\x8b\x7c\x9b\xe8\x35\x6e\x2d\xc6\x16\x89\x24\xcb\x67\xe1\x09\xf9\x9f\xfa\x07\x76\x87\x7e\xd7\xf1\x56\x79\xae\x75\xe7\x03\x0c\x8b\xb6\x07\x2f\xef\x23\xbf\x17\xae\x4e\x76\x96\xe7\xbf\x8f\x34\xff\x18\x6d\x2c\xa1\xc3\xac\xf0\x41\xc2\x9c\xd7\x95\x75\x81\x16\x85\x74\x1a\x8f\x03\x5d\x14\x49\xe1\x35\xe1\xcb\x75\x1c\x57\x1a\x4d\x9e\x24\x69\x4c\x4d\x76\x8b\x08\xf7\xc3\xf0\xbe\x8c\x9f\x15\x8b\x5d\x31\x53\x07\x5b\xc1\xd7\x6b\x37\x87\x4b\xe7\xad\x8b\x9f\xeb\x43\xca\x6c\x11\xf5\x9c\xdf\x9f\x48\x18\xf2\x04\x33\x4e\x53\xe4\xe0\x2f\xa2\x55\xc0\xf7\xbe\x0c\x06\xe4\x80\x09\x88\xa1\x62\x92\x72\xb0\xec\x88\x9a\x2a\x59\x7d\x90\x74\x3a\x0b\x86\x4f\xf6\x2b\xce\x6c\x9d\x1d\x1b\x58\x7f\x73\xfe\xf0\xdd\x62\x41\xb0\xe5\x29\xcd\xdc\xf7\xc9\xb2\x47\x6d\x58\x7c\x90\xa3\x9d\xa9\x82\xdc\x09\x57\x08\x79\xfb\x15\x27\x90\x04\xcc\x80\x0c\xbc\x01\x4c\x08\x6f\xf0\x89\xe8\x5c\xf9\x61\x64\x2d\x75\x5b\x6d\x5d\xfc\x24\x63\xf7\xf3\xd6\x1b\x17\x87\xda\x56\x60\x4f\x70\x6f\x6c\x16\x26\x1a\x23\x53\xc4\xfd\xed\x2d\x97\x55\x27\x44\xfc\x19\xa7\x89\x59\x70\x23\x90\x79\x61\xc2\xc0\x3b\x20\x04\x90\x00\x2b\xe0\x04\xb4\xaf\x90\x30\x31\x28\x99\xb9\xb0\xa5\xb6\x35\xd1\x2c\xdf\x78\xf6\x44\xb5\x7f\x96\xac\x65\xed\x57\x5b\x48\x38\xc4\xbe\x31\x9b\xab\xa8\x0b\xcf\x10\x0f\x34\xb4\x6e\x57\x2b\x12\xae\xa4\x27\xc0\x31\x42\x55\x86\xe9\x04\xf4\x80\xf7\xcf\x9b\x3f\x25\x60\x06\x28\x50\x99\x28\x19\x24\x0f\xac\xa7\xe2\xa6\xaa\xcb\xa6\xc5\x6e\xcd\xe1\x0b\x99\xec\x55\x26\xdd\xcb\xb3\x9b\x7b\xbf\xae\xed\xa7\xb7\x9b\xa6\xb3\x17\x43\x86\xec\xe6\x34\xc2\x45\x71\xe8\x1d\x30\x8f\x61\xb8\x81\x3c\x60\x05\xd8\x00\x0d\xd0\x01\x2a\x80\x00\xe8\x81\x00\xe2\x6f\x42\x2c\xa6\x63\x11\x0c\x65\x16\xe3\x80\x8f\xe3\xa1\xf8\x69\x67\x15\xec\x9d\x43\xb3\x50\xdb\x61\x57\xa7\xf3\xe5\x1d\xbc\x79\xca\xe1\x81\x4e\x5a\x3a\x82\x12\x56\x4c\x50\xd8\xe9\x2f\x51\x00\x3a\x40\x04\xc4\x00\x19\x60\xfd\x51\x72\xe0\x03\x58\xf8\x7d\x7c\x7e\x86\x22\xa1\x7a\x45\x95\x0f\xa8\xce\x07\xa1\xf2\xa9\xeb\x65\xc9\x9d\xa4\x53\xd3\xdb\x9b\x37\x5d\x5f\x22\x7b\xde\x17\xef\xc7\xdc\xb9\x36\x1a\xb4\xbe\x0d\x60\xfd\x4e\x28\x0d\xd7\x0b\x88\x01\x2a\x40\x00\xb4\x00\x0b\x08\x01\x06\x80\x09\xf8\xe0\x0a\xf1\xb2\xe9\x4f\x05\xdf\x2a\x30\x1a\x65\x38\x97\x06\xaf\xa7\xbe\x28\x0b\xef\x28\x9e\xce\xdd\x3e\xbc\x87\xfb\x1a\x33\x84\x58\xe9\x92\x48\xe1\x75\x6e\x02\xf5\xfe\x9e\x7b\x98\x82\x03\xa5\x07\xd0\x02\x4a\x80\x06\x88\x00\x29\xa0\x00\x38\x00\x1e\xbc\x79\xcd\x87\x8b\x4a\xe7\x24\x90\x2e\xdf\x6a\xc4\xe3\x34\x14\xc2\x9d\x02\x29\x57\xef\x84\x99\xba\xde\x61\xfc\x7d\xba\xb7\x36\x2e\x5e\x3b\x9f\xe6\xe0\x4f\x61\x89\xa6\x22\x2d\xf4\x89\x0e\x82\x23\x03\xd3\x05\x0c\x01\x1c\xc0\x06\xb8\x80\xfc\xcf\x89\x32\xc0\xbe\xc7\x11\xa3\x6b\x15\x20\x54\x50\x36\xcc\x71\xda\x0e\xde\x48\x7b\x5d\xb6\xd5\xa9\x32\x7d\xbb\x83\x09\x81\x1c\x77\xcd\x10\x35\x1d\x66\xab\x04\x4f\xd8\x13\x69\x55\x48\xd1\xb0\x93\x92\x08\x20\x2d\x03\x24\x80\x09\x50\x00\x32\x20\x02\xb8\x00\x1b\xd0\xbc\x42\xc3\xe6\xa7\x83\xe5\x1f\x96\x7b\x30\x5c\x75\x16\x0f\x4e\x4a\x35\x2f\xe3\xeb\x2a\x9e\x56\xdc\xf1\x81\x40\x2e\xb2\x16\x69\xdb\xd9\xf3\xd9\x23\xbe\xb8\x78\x18\x3e\xca\xfd\xe2\x8f\xa3\x71\xc6\xa2\x82\x99\x87\x09\x80\xd6\x7a\xd1\xf5\xc2\xe1\xe5\xc7\x97\x57\x30\x38\xb0\x8c\x58\x30\xb4\xc9\xfc\x64\x72\xc3\x86\x53\x4e\x7a\x21\xb0\xa9\x9a\xe5\x6a\x9d\xef\xa7\xfa\x77\x91\x20\x90\xdb\xf5\x55\xb4\x5e\xde\x12\xaa\x78\x2b\x1f\x2e\xcb\x4a\x75\x1d\xf1\x6d\x76\x2a\x72\x7a\x8c\x97\xc8\x04\x28\x41\x28\xc8\xc8\xf3\x28\x65\x68\xb8\xe8\x83\x58\xf0\x78\xdc\x54\x9b\x7c\xc1\xef\xa1\x0d\x8e\x1c\x43\x82\x43\x52\xe1\xcb\xae\x3a\xd7\x66\xac\x76\xae\x20\x90\xfb\xa7\xcd\xa5\xc1\xb0\x6a\x89\xb4\xd5\xe0\x45\xc7\x5e\xc3\x50\x45\x05\x91\x2c\x56\x7c\x72\x32\xbc\x2c\xc2\x23\x22\x28\xc2\x33\x62\x07\x52\x03\x72\x62\xaa\x68\x7a\x5d\xb6\x52\xc1\x78\xd9\x21\xbd\x67\x87\xc8\xa0\xc4\x94\x9b\x32\xa6\x4e\xd8\x69\xd8\x1d\x25\x08\xe4\x57\xd4\xde\x8b\xf1\xe3\x26\xe2\x5c\xc3\xe8\x9f\x3e\x3e\xb6\x9a\x7a\x25\xf2\x22\xc2\x07\x6c\xfe\xd4\x41\xf4\x1b\x0c\x82\x0c\x9b\x4c\x54\xcc\x91\x6c\x53\x5c\x46\xfc\x5e\xe2\x3f\x64\x2f\xd4\x5f\x19\xdf\xdb\x4d\x04\xe5\xa7\x32\x97\xe1\x76\x59\x4e\xff\xde\x59\xfe\xdb\x2d\x75\x1c\x36\xcf\xdf\x65\x59\xbe\x99\xe1\x13\x61\xe4\xd9\x62\xfd\x55\xf7\xab\x82\x94\x98\x04\x97\x1f\x6f\x28\xdf\x03\xbf\xb2\x60\xaf\x88\x8d\x58\xa8\x34\xeb\xfb\x4b\x55\x7d\x3d\x17\xb3\x7b\xfb\x19\x2f\xaf\xd0\xa7\xc4\x97\xc5\x59\x6d\x50\x33\x88\x3b\x7f\xf8\xc3\x45\xc8\x1a\xdd\xc8\x7d\x4b\x63\x49\x66\x1a\x71\x58\x99\xc7\x95\x8d\xb4\x01\x97\x72\x94\x54\x9e\xc8\xe6\x5b\x4d\x99\xe5\xf7\x84\x0a\x53\x2a\x64\x1a\x6f\x74\xbf\x9b\x32\xd8\x9d\xb9\xbf\x0e\x90\x8b\x48\x49\x0a\xcf\x4d\xa9\x22\x6a\xb3\xe9\x5c\x98\x16\xfd\xc3\x40\x48\x0f\xb8\x16\xdb\x07\xbb\x9b\x90\x8b\x1e\x53\x9e\xc2\x39\xbd\x56\xec\xe1\x3e\x5c\x69\xdc\x2b\xe0\x68\x3c\x6a\xc1\x69\x2b\xe8\x7f\x31\x3a\xb1\x24\xb4\xc3\x71\x23\xf6\xfb\x16\x0e\x17\x3f\x95\x25\x54\x22\x54\xe3\xd3\xae\x30\xfa\x62\x21\x6b\xf9\x2f\x0d\xc0\xf5\xd1\xce\xfc\xbc\xe4\x00\x5e\x23\x59\xd1\xcf\xb4\x8e\xc8\x21\xbf\x52\xe7\x38\x4b\x7d\x83\x13\xf3\x0d\xf3\x13\xeb\x38\x3b\x76\x67\x25\xd7\x1d\x5f\xd6\x50\xb7\x38\xed\xd4\x8f\x05\xe4\x55\xf8\x4d\xcf\xfd\x11\x53\xd0\x2b\x41\x7b\x96\x57\xfa\x7f\xc1\x0e\xc6\xa5\xd3\x36\xdf\x9c\xc8\x00\x4c\x93\x6f\xa9\x56\xe6\x75\x1c\x74\x08\xbb\x67\x93\x33\x9e\x47\x98\xfb\x88\x37\x91\x6f\x6b\x20\x7c\xa8\x5f\xd4\x78\x5a\x70\x2e\x79\xc9\xb7\xba\xcb\xae\xd4\x51\xfb\xf9\x99\xaf\xb6\x27\xd6\x3f\xfe\xa5\x0e\xf1\x4c\x71\x61\xbd\x75\x3d\xaf\x3c\xc4\xd3\x6a\x59\x99\x94\x47\x9b\x52\x1d\x8d\x1b\xc2\x16\xf8\x14\xde\x11\x19\x1e\xeb\x9e\x28\x9b\x92\x94\x43\x59\x42\x51\xa3\xd0\x86\x3b\x88\x37\x35\xf4\x05\x7a\x8f\xfe\x32\xfc\x91\xff\xdf\xf1\xf7\xd7\xc5\xa5\xfe\xce\xe3\x12\xf7\x68\x6b\x17\x5f\x3d\x7d\x29\x59\x8e\x61\x6a\x75\x12\x66\x96\x67\xd6\xab\xcf\x50\xc9\xe1\x25\xc7\x35\x62\x2d\x2e\xbd\xee\x63\x69\xf3\xdf\x67\x21\x27\xec\xb7\xef\x7e\xb4\xff\x27\x03\x78\x6a\xb8\x85\xbd\xa3\xbd\x98\x38\x4b\x38\x66\xdb\xaf\xdb\xf6\x5e\xdf\xfa\x62\xb4\x30\x3e\x5b\x3b\x9d\x3d\xde\x39\x12\x37\x5c\x38\x70\x35\x6c\xb2\x28\xb5\x33\xf5\x0d\xea\xd1\xf7\xbf\x31\x90\xfb\xdc\xd3\xd3\xdd\x98\xdd\x90\xcd\x88\xb5\xe6\x25\x85\xb9\xd8\x69\xf2\x71\x86\x41\x9d\xde\xfb\x6e\xb8\x76\xbe\x16\x98\xc6\xee\x7a\xe9\x3a\xcc\x26\xf7\xc1\xef\x73\x06\x9b\xb9\x27\x67\x0f\x32\xff\x2b\x9e\xf2\x68\x78\x6d\x72\x81\x7f\x6e\x72\xb2\x6d\xe4\xbc\x3f\xb2\x67\xa8\xdd\xb1\xe9\xbc\xde\xb9\x9a\xa0\x7c\xa2\xf8\x63\xc1\x58\x2e\x55\x4e\xf3\x67\xbd\x92\xc8\xc6\x9f\x7d\x0b\xd3\x6a\x9b\x85\x67\x14\x0f\xfd\xff\xb6\x7f\x91\x93\xd3\x55\xd6\x89\xf8\xfe\x9a\x9e\x93\xf6\xa2\x66\xc7\x7a\x92\x8a\x91\xd2\x0f\x05\x44\x9f\x7d\x32\xd6\x52\x7e\x26\xfe\x8e\xfd\x19\xf9\x14\x59\x19\x85\x91\x4e\x52\x68\x53\x37\xd0\xf7\x76\x16\x6e\x03\xf1\x5c\xfc\xb1\xef\x7f\x32\x5c\x58\xaf\xb7\x4f\xcc\x74\x79\x37\x5e\xd5\x6a\x97\xe3\x17\x2e\xe6\x14\x66\xda\x27\x17\xc6\xf7\x45\x65\x87\xc1\x04\x3b\xf8\x13\xfb\x60\x7a\x98\xba\x15\x7b\xbd\x08\x5b\x4d\xf9\x58\x74\xd7\x80\x3b\x40\x3a\x6b\xf4\xf5\xdd\x45\xd9\x3f\xb4\xa4\x4f\xe2\xfb\x26\xb3\x3c\x5d\x8d\x75\xe1\x65\x5c\x79\xde\x69\x1f\x92\x70\x63\x94\xc2\x05\x83\x57\x7d\x61\x3c\x8c\x5c\x58\x1c\xd3\x6c\xcd\x2d\x6c\xcd\xf2\x8d\xc7\x6c\x0e\x7d\xa8\x23\xfd\x32\x68\x4a\x7d\x9a\xce\x87\xf5\x16\x16\xf7\x44\x6f\xfe\x62\x94\x57\xe9\x5f\x3c\x07\x73\xeb\x3a\xf2\x52\x32\x76\x13\xd4\x22\x4a\x82\xa8\x7d\x5e\xb9\x09\x38\x23\xd9\x36\x58\x60\x7d\x18\xd2\x3b\xd4\xf6\x56\x43\x54\x99\x54\xa2\xfb\x40\x6b\x2f\xe3\xdb\x1a\xdd\x9a\x35\x5d\x51\xd6\x91\x38\xfe\x6b\x15\xe7\x94\xe7\x91\xe7\x6f\x19\x8e\xae\xe6\x88\x3b\xf6\x8a\xa7\x92\x1b\xa2\xe9\x83\xda\x3d\x9f\x9c\x32\x6c\x4a\xcc\x55\x8d\x1c\x75\x8e\xd5\x55\x15\xbf\xc8\x5a\x49\x87\x8a\xc5\x89\xbc\x92\x30\x56\x9b\x33\x86\x38\x6b\x05\xb2\xc7\x73\xe6\x0e\xd4\xbe\xef\x4d\x9f\xdb\xdd\x71\xbe\x91\x85\x40\x9e\xad\xf7\xf8\xc6\x3f\xd5\xf6\x65\xac\xc4\xf0\xf9\x3f\xba\xc2\x5b\x8f\x98\x68\xe8\xb6\x68\x88\x28\xec\xbf\x33\x90\x94\x12\x52\xe1\x7d\xcb\x89\xcd\xfc\x9b\x61\x99\xff\xcd\x7b\x5a\xed\x13\xcb\x12\x8f\x8c\x4f\x21\xe9\xc9\x65\x4c\xad\x41\x13\xce\xab\x99\x67\x0e\xbf\x7a\x7e\xd2\xac\x8f\xf6\x93\x95\x78\x25\x7c\x0a\xb5\x71\x8b\xb0\x32\x34\x18\x53\x2f\x90\xd7\x93\x5a\x14\xa9\xe7\xe5\x64\x1f\x67\x14\xa0\xa6\x25\xcb\x25\x4c\x21\x9a\x62\x45\x14\x7d\xa7\xf4\xd6\xe8\x83\x03\xad\xbf\x7d\xdc\x5c\x9e\x74\xdd\x50\x3f\xfb\x82\xe5\xde\xea\x0f\xc3\x5b\xb6\x55\xca\xce\x85\x02\x8b\x68\x1c\xf7\x29\xf3\x7d\xc3\x37\xca\xd3\x32\x2c\xc2\xe9\x3c\x8d\x2c\x69\x34\xdf\xc8\x26\xf1\x1b\x31\x55\x51\x58\x11\x3c\xb0\x94\x69\x56\x79\xd2\xa5\x07\x35\x66\xcc\xdb\xdd\x8b\xc2\xb5\x33\x5a\x2b\x88\x3b\x02\x27\x77\xbe\x52\x5d\x4a\x5c\xec\x2f\xce\x34\xcb\x66\x53\x04\xe7\x39\x2e\xea\x63\x2a\x88\x49\x67\x0b\xf8\xb1\x3b\xd2\x25\x90\xee\xe2\x9e\xa1\xf1\xc1\xaf\x41\x5b\x03\x34\xa0\x8e\x8c\x42\xd2\xc6\x12\x29\x32\xa6\xd8\x66\xa4\xe9\x84\x1a\x48\x95\x58\x58\xc4\xd9\x8c\x33\xc2\xbe\x4a\x73\xa6\xfa\xed\x6a\x7a\xa6\x4e\x3b\xd5\xd9\xfb\xda\x62\x4c\xdd\x4e\x12\x8d\xc7\x82\x95\x81\x3a\x98\x70\x0e\x63\x01\xc1\xf4\x25\x23\xd0\x01\x6a\x00\x1d\x28\xc0\x69\xe3\x4e\xd1\x76\xf3\x9c\xbe\xb3\xd7\xc9\xb6\x5e\xf0\x19\x88\x49\xcf\x7d\x59\x07\xdb\xdf\xb7\xd8\x7a\x88\x73\x26\x3e\x95\x53\xbd\x9d\xf8\xc2\x7b\xc4\x7c\x56\x05\x4f\xf8\x84\xa9\x85\x1c\x9d\x80\x0e\x0d\xfa\xf5\x77\x40\x0e\x84\x00\x0d\x20\x04\x94\x40\xfa\xe5\x21\x7a\x09\x79\x14\xbb\xba\x04\xbf\x3a\x86\x99\xa2\xdb\x42\xb8\x4b\xe6\x60\x15\x41\x77\xfd\x6c\xc5\xae\xc2\x49\xc7\x64\x53\x65\x5e\x12\x93\x2f\xbb\x05\xbf\x72\xaf\x10\x13\x9d\x32\xae\x34\x5a\x23\xec\x11\x30\x06\xf8\x00\x05\xc0\x02\x32\xc0\x04\xd8\x01\xe7\x1b\x37\xc2\x5b\xa6\x42\x11\x19\x25\x49\x63\x86\x8f\xde\x21\x13\xa9\x7b\x65\xb1\x1d\x08\x93\xd7\x5b\xe3\xc7\xf9\x63\x6e\x35\xee\x69\x14\x01\x50\x56\xea\xaa\x1b\x42\xe9\xb4\x42\x18\x63\xb0\xd4\xc0\x16\xbc\xfe\xc3\x5e\x24\x00\x1b\x40\x05\x04\x00\x17\x9e\x07\x37\x82\xce\x9d\x7f\x46\xae\xca\xa0\xd8\x21\x36\xb0\x23\x69\xaa\xe8\xb2\xf5\xd7\x78\xe2\x86\xce\x11\xed\xa4\x7a\xc3\x79\xe6\xef\xe0\x08\xbb\x08\x0d\x1d\x51\x1a\x7a\x41\x4c\x5f\xb0\x01\x48\x00\xf6\xdf\x10\x1b\x10\xfd\xd9\x09\x2a\xa0\x7f\xc5\x87\xf9\x4c\x2d\xc1\xb3\xfe\xee\x83\x6e\x98\x1d\x86\x7f\x54\x42\x74\x21\x57\xd3\xd5\x18\xfc\x9a\xda\xd9\xce\xec\x78\x9b\x45\xae\x4c\xf8\xb6\x93\xac\xce\x27\x49\x2c\xa6\x27\x3c\x05\x58\x5d\xf0\x1a\xf0\x03\x6c\xc0\x0b\x08\x01\x3a\xc0\x06\xe4\x00\x07\x5a\x1c\x43\x9d\xe2\x27\xb7\x99\x8c\xa7\xf6\xad\x2d\xb7\xdf\x59\xbc\x74\xc1\x58\xb3\xda\xc8\xe1\xba\xea\x15\xf2\x0a\x7c\xd7\x59\xd1\x53\xcc\x6b\x37\x33\x83\x43\x99\x1a\x0e\x1b\x92\xad\x37\x84\x80\x0b\x90\x02\x32\xc0\x02\xde\x02\x6c\x40\x09\x30\x01\xe6\x8b\x0c\x74\x77\x0a\x42\x2e\x97\xb7\x92\xda\x25\x36\xa2\xbe\xe5\x71\x23\xf9\xaa\x8d\xcb\xa3\xfc\xab\x33\x77\x67\x1b\x67\x03\xe2\xe5\xdb\x89\xb5\x5e\x51\x26\x2b\x0a\x7a\xfc\x56\x34\xda\x98\x7c\x2f\x6e\x00\x09\x40\x07\x08\x80\x0a\x90\x03\x62\x40\x00\x10\xa1\xf8\x51\x87\xc8\x23\x39\x05\xa5\xa5\xb5\x51\xac\x71\x7c\x55\xe2\x6c\xf3\x5b\x9b\x58\x47\x4c\x56\x0d\x7f\x91\xee\x64\x8c\x59\xd5\xf2\xa5\x11\xfa\xe7\x5a\x15\xaa\x67\x88\x75\x33\x1b\x10\x0a\xc0\x77\x02\x6e\x40\x06\xf0\x00\x3b\x80\x03\xe4\x00\x11\xa0\x03\x76\xd4\x57\x64\x3a\x9c\xd8\x52\x0b\x5a\x1f\xac\x4b\x7d\x1a\xe2\xb4\x0b\xf2\x9b\x44\x46\x90\x56\xd7\x21\x90\xa3\x8a\x69\xdc\x26\xa1\xac\xb3\x50\x51\xc7\x15\xbd\x99\x77\x08\xdc\x73\x14\xdb\x68\xe9\x20\x02\xc0\x02\x4c\xa0\x04\x88\x00\x21\x70\x05\x64\x40\x1c\xd9\x9d\x34\x9e\x03\x5e\xea\x51\xf3\xa3\xb5\xac\x4f\x4d\x2c\x65\x01\x54\x53\xd2\xa8\xc5\x1a\x80\x40\xbe\x51\xce\xef\xb6\x67\xe7\xc7\x44\xf7\x7a\x00\xd3\x10\xe5\x4a\xe1\x73\xc6\x60\x7c\x0f\x38\x56\x40\x07\x50\x01\x0a\xc0\x07\x62\x00\x0d\xf0\x03\x39\x64\x5d\x52\x25\xb6\x23\xa9\x18\xcd\x40\xab\x16\x1f\x86\xd8\xb1\x7c\xcc\x66\xf6\x51\xeb\xd5\x25\x08\xe4\x86\x7c\xe5\xae\x47\xa7\x5c\x20\xa9\xd5\x7f\xcb\x76\x4c\x7b\xe6\xad\x23\x57\x1d\x45\x10\x3a\x16\x8c\x16\xac\x3f\x2c\xec\xab\x45\xd8\x1a\x38\x56\xb8\x45\x84\x2a\x64\x01\x62\x65\x36\x71\x89\x56\x8d\x4a\x2b\x69\x1f\xa5\x58\x98\xfc\xf2\xa6\xdd\x11\x89\x75\x0c\x08\xe4\xc7\xe9\xa6\xcd\x70\x6e\x9d\x44\xd6\x4a\x78\xb0\xcb\x93\x49\xbd\x52\x94\xc8\x0c\x4b\x15\x69\x01\xfa\x3a\xc6\x25\x86\x22\xa6\x24\x56\x01\xf6\x09\xae\x1f\x01\x21\x49\x01\xd5\x26\xeb\x85\x04\x92\xda\xae\x15\x9a\xb7\x68\x6c\x4a\x7e\x41\x93\xe3\x28\xda\xfa\x28\x04\xf2\x78\xb5\xd7\x38\x35\xde\x3a\x59\xc8\x91\xe0\xe5\xd7\x6c\xdb\xa5\x77\x22\x2f\x2d\x2c\xca\x72\x4a\x5e\x44\x5e\x4f\x26\x46\xfe\x85\x72\x9d\x86\x91\x4e\x80\xe1\x2b\x1b\x31\x8f\x8c\x88\xcf\x3b\x0c\xb5\x06\x73\x46\x6f\xa9\x98\xc0\x5c\xb1\x26\x96\xe1\xe4\xf5\x3f\x1a\xc0\x93\xfc\x25\xeb\x3e\xcc\x2a\xc9\x4c\xe2\x88\x5a\x2f\x5a\xeb\x08\xdd\x8f\xf2\x94\x22\x99\xec\x1d\xf4\x65\x2c\x02\x6c\x3b\xec\x6c\x5c\xc9\xbc\xa3\x82\x57\xe2\x14\x32\xab\xca\x45\x3a\xd6\xc6\x7a\x76\x23\x9e\x50\xfe\x5e\x09\xb7\x4d\x12\x43\x4b\x6b\x73\x7f\xb0\xff\x70\xa3\x7b\x4c\xba\x15\xad\xe4\x73\x1a\x42\x58\xb3\x47\x92\x75\xba\xfe\x2b\xc5\x29\x89\x70\xbe\x32\xe1\x30\x51\x02\x71\x65\x29\x63\x19\x3a\xb9\x4b\x55\x5d\x1d\x38\xe3\x2d\xeb\x5c\x57\x78\x5f\x82\x4f\x85\x89\xc1\xa9\x77\x45\x65\xad\xa1\x13\x7f\xf6\xf0\xf3\xf0\xa0\x67\x49\x6e\x30\xbd\x89\xb9\x68\x28\xa5\x21\x2c\xcf\x0b\xd8\xde\x19\xa1\xa8\x85\xc9\x4a\x29\x5c\x2a\x91\x28\x3d\xa8\x9b\x68\x3e\x18\x26\x9b\xd6\x58\x23\x7f\x54\xf2\x29\x08\x7d\x8e\xb3\xce\xd8\x2b\x08\xa9\x99\xaa\x3f\xee\xc1\x9e\xff\xab\x76\x7e\x3d\xb5\xf3\x63\x9e\x73\xe0\x55\x23\x5a\xd1\x75\x1a\x5f\x24\x8c\xaf\x84\x13\xaa\xd9\x2f\x3d\x79\x03\x3f\xc3\xfb\x0f\x5b\x66\x74\x16\xa6\xb6\x8b\x2e\xca\x3e\xe2\x21\xd7\x31\x6f\x52\xe3\xf2\xf8\x2b\xd2\x5a\x28\xfb\xae\xc7\xb1\x67\x57\xd6\x71\xfe\x9e\xe1\xf7\x8f\x4b\xdd\x6d\xcc\xd9\xfd\xfe\xfa\x26\xae\x52\xb4\xcc\x77\x31\x37\x41\x46\xee\x87\xf6\x39\x36\xc8\x4e\xc8\xce\x30\x6e\x18\x9e\x72\xfe\x50\x9f\x22\xa2\x5d\x93\x9f\x73\xf2\xcb\x08\x1a\x35\xbb\x6c\xc7\x7c\x16\x09\xb6\xd5\x4f\xe5\x7f\xe4\xff\x93\x81\xf0\x5c\x90\x6f\x55\xce\xad\x0c\x3e\xb6\x64\x57\x74\xe4\x74\x25\xa7\x47\x2a\x05\x4e\x79\xb9\x06\x86\x7a\xa7\xfa\x74\x45\x86\xc7\x91\x45\x0b\x65\xdf\x67\x51\x15\xcd\xb6\x9b\x0f\x71\x0d\x09\xad\x1e\x1f\x86\x1e\xf5\x3d\x63\x40\x2e\xfe\x85\x81\x24\x5d\x7c\xdf\x29\x59\x2c\x1d\xe5\xe9\xc4\xac\x53\x2b\xc1\xcc\x56\x4f\xa1\x89\xa1\x8a\xa4\x8b\x4c\x8a\x8a\x89\x5b\x2a\x80\x7c\xee\x2c\x46\x6f\x63\x6a\x4a\xeb\xb6\x58\x19\xdd\x39\xd8\x72\x3b\xfb\xf5\x9f\x0c\xe0\x31\xe3\x8a\xe0\x28\x61\x0f\xb2\x6f\xbc\x15\xbc\xfe\x6b\x15\x76\x21\x78\xba\x73\xc2\x62\xb8\x7c\x40\xb7\xa7\xaa\x33\xb9\x3d\xbc\x0d\xa9\x2d\x6f\x44\x73\x71\x7f\xcf\xe9\x22\xea\x17\xe1\xff\x66\x20\x3f\x5c\x4f\xec\xbe\x86\x2d\xad\xcd\xe7\xcd\xf6\x4c\xa6\x8e\x7e\x19\xbc\xea\xb1\xed\xa0\x6a\xe5\x6a\x44\xac\xa5\xaa\xf4\x2c\x9b\x2e\xa5\x2c\xe2\xaa\x14\x6e\x49\x18\x96\x5a\x40\xd8\x0e\xbf\xa0\xfa\x55\xf4\xef\xf1\xdf\xab\x0f\xd9\x57\x49\xa6\x1c\x87\x04\x07\xab\x7a\x7e\xb5\x3b\x37\xdd\xd7\x2d\x55\xf3\x97\x89\x15\x21\xe7\xe9\x65\x15\xa7\x5d\xa5\xf8\x24\x0d\x27\xc8\x66\x93\x95\x19\xb5\x88\x0d\x89\x2e\x10\x6d\x25\x5e\x96\x3d\xf3\xfc\x4f\xfc\x4f\xd9\xa3\xf9\x95\xc0\xb1\xf2\x2e\xc1\xa6\x9f\x0d\x05\x35\xf8\xa5\xcf\x85\xd9\x39\x2f\x33\xf6\x92\xa7\x12\x02\x63\xb4\x23\xa0\x43\x6a\x03\xd7\xfd\x8f\xfd\x41\xcc\x48\x56\x7a\x05\x74\x8b\xd7\xd0\xfc\x62\xce\x5e\xcd\xdf\x1d\x8f\xfe\xbe\xce\x4f\x57\x87\x46\x17\xdb\x11\x2a\xaf\x8b\x30\xf2\xaf\xb3\xc2\x53\x09\x13\x4d\xa2\x31\xc2\xe1\x83\x70\xfc\x58\x3c\x7f\xbb\x2c\x39\x23\xd8\x0f\xda\x36\x38\x22\xfb\x5b\xc5\x4c\x67\xed\x97\x8f\xb4\xa5\x8e\xe4\xac\xdc\x1d\xbe\xff\xfe\x57\x45\xe7\xc7\xfe\xee\xf4\xb4\x6b\x27\x4c\x45\x44\x4e\x7c\xfa\x53\x42\x6d\xe4\xc6\x27\xa2\x80\x41\x2f\x2d\x97\x65\x07\x37\x1b\x3b\x0b\x14\xe3\x2f\x06\x1e\xba\x2e\xda\x47\x66\x4c\xae\x36\x81\x5c\x71\xe5\x39\x7d\x55\x51\xdd\x28\x13\x07\xeb\x31\xa7\x66\x4f\x7f\x7c\x2c\xce\xe7\x97\x07\xfa\x9b\xab\x91\xb2\xf9\xe3\x8c\x22\x64\x03\xcf\xbd\x8a\x5c\x74\xec\x2d\xad\x32\x4d\x34\xf4\x4f\xb5\xec\x54\xaf\x95\xb0\xe5\x28\x64\xe2\x64\x34\xb5\x42\xcd\x2f\x5c\x53\x82\xcf\x12\x1e\xf2\x43\xea\xd7\xfb\x03\xe6\xda\x77\x45\x6f\xc9\x21\x10\xc8\xc3\xa1\xe9\x8c\x61\xab\x58\xee\x42\x3c\x4c\x90\xb2\xb7\x8a\xf3\x86\x2d\xa6\x69\x91\x81\x8a\xd6\x7b\x95\x4f\x72\xc5\xd2\xf3\x62\x95\x42\x3a\x7c\x2f\xb9\xea\xf9\x13\x65\x83\x75\x6c\xad\x02\x3c\xcc\xc3\x2c\xd3\x85\x4a\x79\x5a\x25\x47\xf7\xd7\x5f\x9e\xc1\x3f\x05\x3c\x70\x6f\x9a\x0e\xf7\x54\x72\xa5\x22\x86\x44\x7b\x6a\xdb\x55\x98\x06\xea\xb2\xa8\x8b\xca\x07\xc9\xc0\x88\xce\xf1\x4f\x70\x8e\xb3\x7c\xa2\x0f\xa3\x7a\x22\x6f\x65\x09\x14\xd3\x50\x3e\x37\x02\xf6\xbf\xfd\x9a\x63\xfd\x72\x6a\x6b\x6f\xfb\xd6\xe7\x96\x76\x57\xee\xf6\x6e\xda\x57\x34\xbb\xaa\x0a\x1e\x62\x11\x7c\xcc\x6c\x84\x8d\xd5\xb4\x54\xe5\xf3\xa4\x51\x84\xbb\x78\x39\x58\x9b\xe9\xee\x29\xdc\x89\xca\x70\x6b\x30\xec\xd1\x6f\x69\x84\x78\xb9\xdf\x3a\x6b\xf6\x9b\x3b\x7a\x68\x84\xbd\x4b\x2f\x28\xff\xd4\x61\x31\x01\xf5\x95\xf1\x22\xea\x7c\x63\x5e\xb4\x19\x33\xe3\x3a\x14\xd6\xe9\xd4\x88\x49\x79\xff\x7d\x84\x28\x13\x0f\x84\x25\x8d\x76\x81\xd4\x14\xaf\x0c\xed\x14\x11\x02\x1b\xf1\x82\x1f\x71\x88\x84\x89\x05\x41\x54\x4e\xe1\xda\xd0\xcb\x61\x2b\x60\x3e\xe1\xbe\x00\xa3\x91\x75\x70\x7f\xc5\xfc\xe4\xe5\xa9\xc8\xcc\xa7\xfa\xb8\x94\x37\x7e\x12\x56\x12\x1a\x2c\xd2\x0d\x82\x04\x9c\xec\x0c\x12\xe4\x4c\x78\xd8\x68\x78\xf0\xe2\x2f\x02\x01\x23\x10\x07\xac\xaf\xb6\x70\xc6\x68\xb5\x78\x76\x64\xf2\xb5\xf2\xad\x3a\x3c\x6f\xa2\x6a\xb2\x87\x6b\xe0\x7b\xf9\xe7\xd6\xf7\x46\x0e\x9e\xc7\x02\xca\x7f\xc5\xf5\x78\x8e\x9a\x69\x29\xcf\x88\xc4\xb2\x09\xd1\xcd\x92\xbc\xc6\xa2\x43\x92\x7b\xd9\x01\xd4\x01\x3b\xc0\x01\x94\x40\x10\xea\x1d\x9a\x20\x99\x16\x9b\x9d\x58\xab\x8a\x97\x89\x89\xcb\x70\x68\x7f\x9a\x74\xd9\x73\xc7\xe0\x34\xeb\xb6\xd9\xee\xd6\xb0\x61\xa9\x7b\x3c\x8a\x67\xbb\xe9\xa9\xe2\x9d\x20\x1c\x5d\x2a\x81\x18\xc6\x03\x02\x26\x94\x14\x90\x01\x22\x80\x1c\x88\x01\x0a\x80\x07\x68\x90\x30\x09\x0c\x18\xf4\x05\x3f\xca\xa3\x19\x42\x3b\xb8\x04\x99\x27\x8d\x15\xf9\xb6\xfe\x18\xc3\xdc\xc0\xdb\x9f\xeb\xbf\xa9\xa0\x4d\xf8\xe6\xc3\x6a\xb6\xaf\x44\x2a\xe0\x44\xbd\x8e\x51\x03\x27\x00\x96\x81\x2a\x80\x05\xd4\x00\x19\x90\x03\x0c\x00\x07\xc8\x60\xe3\xb0\x53\x69\x5e\xf3\xa8\xbf\x53\xd5\xf1\xb3\xb9\xf6\x35\x88\x1d\x2d\x80\x6d\x74\x1d\xa1\xf9\xa2\xb7\x83\x3c\xa2\x55\xf5\x9c\x62\xed\xcf\x65\x69\xaa\xd2\x21\x84\x4c\x53\x8d\x9e\x07\xb8\x01\x22\xc0\x02\x02\x80\x1c\xa0\x00\x34\x40\x06\xa8\x01\xe5\x4b\x57\xb4\x1d\x72\x7a\x0e\x0f\xc9\x45\x8d\x03\xcb\x07\x2f\x8a\x68\x89\x9c\xcf\xf5\x1c\x03\x16\xcb\x92\xbb\x9a\xe3\x5f\xea\x8d\x32\x09\x83\x12\x6d\x0b\x34\x0c\xc5\x90\x18\x2c\x70\xa0\xa1\x4b\xc1\x47\x40\x00\x50\x01\x39\x60\x03\xe8\xe0\xcd\x9f\x7a\x90\x20\x32\x3b\xb1\x33\xab\xae\x78\xaa\x6a\x93\x59\x86\xbb\x48\x24\x7e\x96\x59\xcd\x51\xdf\xd0\x22\xdb\xb1\xd9\x0c\x43\x2b\x66\xae\x68\xd8\xa9\x53\x87\xee\x2b\x29\x5d\xd6\x3c\x22\x41\x04\x7f\xc0\x07\xd0\x01\x12\x90\x02\x8c\x80\x04\x10\x02\x16\x80\x02\x30\x91\x48\x88\xe4\x99\x9b\x45\xb7\x55\xc6\x4d\x35\xdd\x11\x22\x82\xb3\x3a\xaa\xef\x7b\xe1\xe7\xef\xbe\x95\x2f\x05\x76\x6e\x15\x7d\x8a\xe9\x72\xb3\x31\x9c\x7c\x4f\xc7\x93\x4d\x29\x89\xf6\x15\xe4\x01\x66\x40\xf8\xe7\x1c\x70\x01\x07\x10\x03\x58\x40\x14\xe1\x9e\x60\x9d\x99\x54\x24\x44\x45\xc1\xd4\xd7\xcd\x2a\x3c\x21\x4b\xb7\x3a\xb7\xe7\x61\x41\xe9\x16\x75\x6d\xbc\xdf\xb7\x82\x3e\xd1\xc9\xdb\xd5\xdc\x48\xf9\x41\xb8\x93\x21\x0f\x8f\x16\xf6\x01\xbc\x01\x48\x80\x14\x20\x01\xee\x3f\x95\x08\x42\xc0\x0e\x5f\x83\xbf\xcc\x58\x21\xa2\xa9\x1c\x65\x32\xec\x26\x1b\xae\x9e\x59\x5a\xf5\xa6\xd7\x78\x3e\xe5\xc1\x78\xdb\x66\xf4\xa0\x56\x37\x1d\x36\x90\xc3\x0e\x49\x3b\x4b\xea\x90\xc3\x9b\xf4\x1e\x39\x17\xe0\x01\x2c\xc0\x09\x70\x01\x3a\xc0\x01\x70\x80\x1a\xa8\xc2\xe5\xe1\x8d\x30\x2a\x0b\xf7\x2a\x3d\x98\x7c\x72\xc3\x0a\x37\xcc\xd4\xaf\x3a\xeb\xe3\x5e\x44\xfa\x5d\x70\xa8\x3c\xe5\xdd\xd4\xf5\x59\x33\xfc\xc2\x45\xc6\xe8\xb3\xfc\x89\x80\x20\x1d\x1d\x0e\x1a\x4c\x36\x60\x05\x54\x80\x01\xc8\x03\x06\x20\x01\x78\x81\xc4\x6b\x1f\xbc\x42\x06\x42\xa1\x3e\x65\x1e\x13\x3c\xd7\xa3\xb0\xbe\xcc\xb1\x2a\xd1\xbe\xb5\x85\x18\x08\xe4\x7c\x73\x3e\xb2\xfd\xa6\xc8\x26\xee\xd9\x87\xdd\x4a\x53\x03\x5d\x62\x88\x8d\x94\x24\xe1\x4d\x2a\x90\x01\x2c\x00\x01\x30\x03\x06\x80\x08\x50\x01\x15\xac\x2e\xce\x08\x7d\x85\x90\x98\x62\x82\x31\x93\xab\x53\x98\x49\xa6\x42\xd5\x76\xef\xf6\xdc\x28\x04\x72\xcd\xfa\x85\xb3\x6f\xaa\xf2\x21\xdd\x28\x04\xda\xc9\xd9\xc0\x40\xce\x8a\xbf\x86\x96\x1f\x3b\x0e\xa6\x0f\xb8\x00\x26\x20\x02\xe8\x00\x25\xc0\x05\x47\x30\x1b\xd8\xa5\x74\xbf\x05\x19\x15\xbc\x3e\xb0\xbb\xc4\x85\x87\x67\x86\xd5\x68\xf4\xfb\x2e\x52\x41\x20\x3f\x48\xbe\xca\x8f\x71\x37\x8e\xe7\xbe\x8e\x4e\xf1\x82\xb6\xe8\x56\x17\x94\xc4\x66\xf7\x22\xbd\x43\xa3\x80\x33\x86\x9f\x43\xc8\x46\x7a\xf5\xc6\x16\x45\x06\xf5\x0c\xa3\x0f\x57\x8b\x66\x9e\xef\x5c\x41\xd9\x88\xfd\xa3\x49\xd8\x6c\xba\x4d\x95\x63\x8f\xdb\x42\x0d\x04\xf2\x94\x7e\xe0\x38\xdb\xdf\x39\x57\xc6\x99\x62\x11\x14\xec\xb8\x6a\xa8\x27\xdf\x2a\xac\xcc\x22\x4a\xda\x84\x69\x80\x73\x82\x3b\x87\xb7\x40\x18\x48\x92\x47\xe6\x41\x95\x46\x0f\xcd\xba\x2b\x70\xfd\xde\xda\x10\xda\x79\x2a\xb4\x29\xc3\xa3\x0a\xb7\x6f\x66\xe1\x8f\xa3\xe8\xf9\x8f\x2f\x4f\x83\xcb\xf5\x26\x39\xf2\x51\x5b\xde\x30\x36\x88\xba\x4b\xf2\xef\x85\xcf\x59\xfb\x28\x03\xa8\x53\x68\x59\xe9\xe9\x19\xf9\x59\x50\x39\xa8\x79\x30\x85\xb0\x24\x72\xe4\xdd\xd4\x4a\x75\xaa\xcc\xe9\x3d\x88\x63\x7e\x55\xbb\xd7\xed\x0e\x4d\xfc\x2d\xc3\x5d\xd5\x0e\xd4\x54\x4d\x47\x47\xe9\x74\x5a\x49\xb8\xa0\xc7\x89\xf5\x90\x5e\x87\x42\xa1\xd8\x32\x37\x11\xf7\x25\x2f\x1e\x3f\xaa\x60\xb7\x08\xa9\x64\xb5\x8c\xae\xc2\x9a\x06\x30\x3c\xb6\x4c\x74\x94\xff\x18\xea\x97\x17\xf7\xad\x60\xbc\xb9\x75\xec\x8f\x3f\xd6\x33\xce\xa9\xed\x72\xc3\x90\x71\x53\x60\xf1\x8b\x94\xa7\xb0\x2d\xcf\x2e\x5b\x01\x43\x25\x55\xc3\xb7\x03\xe2\xaa\x32\x62\x32\x6b\x72\x14\x8a\x9e\xea\xd6\x3a\xaa\x46\xbf\xcc\x07\x9c\x2a\xbc\xde\x07\x87\xc7\xec\xc4\x53\x64\xb0\x94\x3f\x75\xb5\xcf\xfe\x85\x19\xb7\x2c\x3b\xbf\xe7\xd3\x06\x10\x1a\x61\x8a\x11\xd2\xa0\x22\xd2\x7d\x6a\x1c\x1a\x4c\x1d\x74\x98\x55\xf8\xb4\x05\x75\x78\x0c\xd4\x3f\x28\x99\xd9\x1b\x5b\x7c\x24\x74\x12\xf3\x62\x88\x8e\x4f\xcd\xcb\x37\x28\x9c\xa9\xa4\x6c\x29\x19\x1a\xf9\xa2\xfa\x17\x6c\x31\x5c\x26\x6d\x4b\xce\x51\xf7\x5f\x36\xf1\x96\xa4\x66\xe2\xc5\xbc\x08\x14\x74\x2b\xb0\xe3\x35\xf1\xf9\xe0\x61\x82\x6e\xc6\xef\x8a\xe5\xc0\xe7\x7c\xe0\x29\x17\x23\x1a\x25\x96\xfc\xb2\x92\xab\xec\x45\x43\x75\x1f\xd3\x04\xdd\xca\xf6\xce\x3f\x3d\xa8\x9f\xf5\x2f\xf4\xb6\xca\xe7\x7e\x0c\x06\xb4\x78\x97\xef\x7f\x1e\x4a\x12\x8f\x90\xf3\x3f\x76\x87\x77\xc8\x77\xa6\x70\x2b\xf7\xd8\xf7\x93\xff\x14\x19\x85\x9f\xd0\x9a\x25\x5d\xcc\x58\x9b\xd2\x81\x3a\x6c\x39\x2f\xf3\xd5\xff\x04\xed\x36\xf7\x5f\x18\xc8\xc4\x45\xf7\x8e\xff\xa2\xd7\x28\x5c\x47\x6f\xed\x46\x51\x7f\x96\x43\x12\x65\xa4\x48\xf0\x7c\xe8\x5a\xf8\x59\x8c\x50\x02\x51\xea\xe3\x67\xdc\x92\x83\xea\xfb\xd6\xaf\x03\x86\x53\x1a\xab\x61\xfb\x0d\xd7\x71\xcf\xf4\xff\xca\x00\x1e\x6c\x2e\xf6\x0f\x1a\x37\x93\x97\x87\x17\x12\x17\x19\x67\x46\xc7\x0d\x47\xb0\xfb\x9b\xba\x92\xda\xd4\x5a\xa2\xeb\xbb\x6a\xf3\xab\x86\x4a\xb6\x1b\xef\x7b\xac\x26\xe4\xbf\x48\xec\x8d\xdd\x52\xfc\x27\x03\xf9\x2e\x7a\x4c\xb1\xc9\xb6\xe0\x3f\x41\x3c\xec\xdf\x17\xd5\xc7\xd1\x61\xdf\x6a\xd2\x90\x56\xed\x5b\x8e\x55\x84\x9b\x2f\xf5\x39\x2e\xf3\x26\x7d\x23\xad\xbe\xb0\xb3\x73\x69\xc2\x67\xc5\x74\x35\xe0\x60\xfd\xee\xeb\xbf\xc6\xdf\x79\xec\x77\xac\x74\x4d\x3c\xf6\x55\xb6\x86\x37\xf4\xd7\xa0\x57\xdb\x94\x16\x17\xf6\xe7\x22\x65\x3a\xa6\xd5\x25\x98\xc6\x24\x45\x64\x85\x3d\x7c\xea\x48\xa4\x4f\xf5\xab\xba\xe8\xa0\x1d\xa7\x5f\xee\x5d\xa3\xbd\x6b\xfc\x9f\xf8\x7b\xfc\x83\x77\xcb\x84\x23\x2e\x1d\xd0\xb5\xf4\x25\x4f\xf9\x7b\x79\xb0\x99\xbd\xa9\x14\xf1\xe8\xd1\x97\x9f\x7e\x06\x5d\xf8\x05\x79\x79\xba\xab\xb8\x8c\x7f\x6c\x0c\xea\x4f\xac\xcf\x79\x5b\x33\xd0\x49\x35\x4e\xb2\x86\x71\x9c\xfe\xe3\x2f\x55\xca\xef\x6f\x67\x65\x5f\x8c\x47\xde\xb5\x9a\x97\xdf\xe6\x18\xa4\x2a\x27\x3b\xc4\xee\x46\xc2\x04\x4f\xfa\x47\x7b\x99\xba\x9c\xda\x5f\xdb\x74\x58\x22\x9a\xd4\x7e\x50\x30\x2b\x74\xb5\x0d\x99\x4b\xf0\xce\x6b\xad\x65\xec\x5e\x9f\x36\xdb\x18\x38\x7f\xf5\xfc\xc7\xa9\xf7\x36\xfd\xab\xc3\xe4\xdb\x36\x98\xd2\xb2\x8c\x84\xb8\xf0\xb0\xe0\xe0\x02\xdf\x29\x8f\x97\x4e\xa9\xb6\x5c\x16\xa1\xc6\x7c\x7a\x07\xda\x46\x6a\x44\xca\xdc\x0a\xbc\x5a\xf4\x56\xa1\x9e\xb4\x61\xc8\x29\x9e\x85\x2b\x0d\xb2\x03\x73\xf3\x30\xbb\xa1\xb7\x7f\xfa\x82\x67\xc9\x4b\xba\xdd\x57\x95\x2f\xd2\xcd\x23\xbf\xf9\xdf\x7a\xdb\x7d\x5c\xb1\x0b\x33\x67\x36\xa2\xd3\x2d\x50\x77\x50\x52\x95\xb5\x90\x4a\x14\x9b\x15\xea\x10\x38\x52\xa0\xd2\xd7\xb1\x27\xf1\x76\x8a\x42\xcf\x44\x2c\x73\x6c\x5f\x1b\xfb\xb5\x26\x7b\xd6\xfc\x4b\xe0\x67\xfe\x0e\xcd\x44\x56\x23\xe3\x67\xaf\xa8\x66\xdf\x02\xa7\x2b\x9b\x56\xd3\x24\x7d\x09\x0d\x25\xa5\x0c\x59\x3b\xf1\x63\x21\x6c\x9e\x0b\x8e\x0e\x16\x73\x06\x07\xd6\x77\x12\x78\x6a\x8d\xc6\xe1\x8e\xc7\x01\xb2\xf1\xb1\x79\xfa\xf5\x42\x7d\xd9\xf3\x13\x7b\xb1\x77\x59\x77\xc2\x1b\x70\xbd\x53\xa5\xf5\x89\xf3\xbe\x47\x8e\x03\xe6\x5c\x7a\xbf\xd5\x16\xe5\xc3\xa5\x93\x44\x94\x78\xa3\xd8\x43\x19\x57\xa8\xb1\xc9\x68\x09\x7b\xf1\x38\xa8\xdf\xf3\x99\xbf\x53\xd6\x52\xb2\x40\x75\x1b\x09\xab\x4d\x1b\x28\xc3\xe8\x10\x9c\xa0\xdc\x80\xfd\x46\x73\xbe\x39\x9f\xda\x72\x9d\xbb\x11\xfe\xd1\x25\xc4\x74\x49\xab\x58\xb1\x41\x7a\x48\x58\x99\x87\x8f\xa5\x9d\x16\x95\xec\x2d\x7e\x00\x66\x2e\xf2\x10\x82\x28\x1c\x14\x31\x34\x4b\xb2\x88\xa9\xa2\xac\x21\x8b\xfd\x8c\x3f\x63\xfc\xaf\x7c\xe5\xfa\xe7\x41\x99\xa5\xce\xc3\x81\x53\xd9\xa9\xe7\xba\xd4\xb4\x4d\x5f\x2b\x6b\x2f\xdd\x18\xf9\x7c\xd1\xaf\x7c\xa5\xac\xdb\xb4\x32\xa4\x39\xb8\xa9\xa8\xd3\xf0\xc1\xd0\x14\x20\x17\xa0\xbf\xb8\xc0\x36\xa2\xe5\xe0\xe9\x79\x9b\xa8\x05\x67\x71\xed\xd9\x1c\x71\x9e\xa9\x5a\x69\xdb\x2d\x39\xf3\xb8\x53\xb7\xdb\x39\x12\x5a\x31\x1d\x87\xee\x49\x6d\x16\xa4\x72\x2b\x16\xc7\xf9\x81\xa9\x9b\x12\x06\xef\x3b\x5a\x03\xbc\xe2\x0b\x12\x40\x07\x04\x00\x06\x40\x03\x1c\x28\x1d\xa4\x6e\x6c\x9d\xa2\x09\x4a\x1b\x1f\x5a\x9d\x8d\x43\xe8\x52\xd0\x4a\x3e\xb7\x9e\x8f\x8b\x6c\x58\x6f\xd1\xf7\x89\x14\x33\xc6\x1c\x79\x40\x99\x68\x28\x9a\x0a\x4a\xd0\x7f\x23\x11\xc3\xbe\x7b\x73\x00\xf3\x09\x10\x03\x16\x80\x0f\x48\x01\x27\x40\x02\xd4\x08\x78\x78\x67\xf4\x4a\xfc\x16\xb2\x37\x7a\x82\xf6\x5a\xfe\x5e\xf1\xf0\x05\xf4\x8d\xc3\xc3\x44\x5f\x90\xbe\x0a\x75\x96\x16\xdd\xc5\xee\x7a\xe4\x9a\x84\x2a\xe8\xf3\x5d\x53\x73\x62\xae\x23\x3a\xbd\x8c\x04\x5c\x00\x09\xa0\x01\x68\x80\x0d\xd4\x01\x3d\x20\x81\xf9\x81\x59\x40\x89\xc7\xb9\x2e\xdd\xa5\x69\x66\x99\xe9\xb9\x16\xed\x9f\x23\x59\x4b\xd2\x8f\xb8\x24\xb3\xc6\xd8\x7d\x52\xf6\x2b\x41\xd3\xbb\xd1\xcc\x54\x31\x83\x3f\x9b\xaa\x10\x0d\xed\xc5\x2b\x40\x0a\x24\x01\x12\x90\x00\x04\x00\x03\x50\x03\x78\x80\x01\xae\x51\xec\x48\x70\x59\x7d\xc4\xe4\x54\x2d\xcd\xd0\xdd\xec\xc2\x9e\x32\x8e\xab\x88\x7b\x78\xe7\xc1\xea\x9b\xa1\xf8\xca\xf1\xe4\xaf\x7e\xeb\x96\xa9\xaa\x30\x42\xa5\xb4\x49\x98\x4c\x2f\xd4\x00\xd9\x9f\xaa\x03\x1a\x60\xfd\xd3\x89\x41\x04\x32\x80\x01\xe1\x37\x01\x09\xc3\xa6\x90\x93\x62\xe8\x87\x68\xe7\xcb\x90\xf5\xd4\x9d\x72\xf3\x2e\xbd\x69\xd2\xed\x86\x31\x8f\x3a\xf8\x8c\xb5\x60\x7c\x3b\x69\x4d\x15\xf1\xd7\x4c\xf3\xf8\x39\xaf\x7b\x01\x03\x80\x05\x34\x00\x0d\xb0\x03\x74\x80\x05\xf0\x00\x31\xa0\x83\xbd\xc6\xb1\xa0\x8d\xe3\xaf\x93\x4b\x30\xe8\x77\x2c\x0d\x5a\x4e\x11\x29\x45\x6d\xa7\x9c\x62\x38\x6c\x99\x46\x6b\xc1\xcd\x65\x0d\x8f\x72\xf6\xd2\xeb\x91\xc1\xe0\x98\x24\xa3\x47\x4e\x07\x8c\x80\x1a\x10\x03\x2c\x80\x0f\x88\x01\x29\x40\x06\xe8\x00\xf9\x95\x21\xd6\x06\xcd\x07\xde\xad\xf7\x50\xfa\xa3\x0e\x05\x81\x8f\xc9\xee\x25\x4e\xed\x89\x53\x8c\x67\x65\x8b\x99\x9d\xa3\x45\xe9\x31\x3b\xee\x39\xc6\xbe\x0a\x98\x02\x6e\xb4\x41\xd8\x42\x30\x22\x40\x04\xa0\xfe\x51\x80\xd0\x00\x22\xc0\x08\x04\x01\x01\x74\x04\xa6\x11\x35\x31\x4f\xa7\xec\xb2\xee\xae\x83\x61\x60\x41\x32\x45\xf1\x48\xdb\xe7\x09\xa1\x9b\x57\xab\x1a\xfd\x48\xe5\xbf\x92\x94\x7c\x33\xac\x0c\x35\xe0\xc4\xc7\x59\xe9\x88\x76\x11\x4b\x01\x3a\x80\x01\x4c\x80\x00\x48\x00\x54\x80\x05\xd0\x00\xce\x4b\x72\x0c\x15\xca\x0b\xee\xc9\x77\x47\xba\x59\xf6\x4a\xfe\x81\x49\xb6\xc5\xe3\x6d\x11\x13\x22\x3f\xa1\xb6\xb2\x47\x6b\x6a\x43\x32\x08\x42\x4a\x1c\xb3\xf5\xe5\x64\x73\x78\xbe\x53\xd5\x62\xac\xbc\x58\x04\x98\x80\x14\xb0\xfe\x39\x4d\x02\xc0\x0c\xb8\x5e\xe0\xa3\x57\x51\x96\x70\x27\xbd\xc3\xd7\x95\xb4\x3b\x09\xc8\x49\x9c\x28\x89\x6c\xdd\x9d\x48\xfa\xcd\x7a\xd0\x33\x3d\xd7\x2c\x98\x47\x14\x75\xe1\xa1\x68\x86\xa8\xd2\x2a\x4a\xc0\x8c\x40\xd0\x02\xdf\x06\x50\x00\x0b\xc0\x00\x42\x40\x1a\x88\x01\x25\xc0\x04\x72\xd1\xe8\x28\xda\xb9\x1c\x65\x6e\x75\xda\x6c\xef\xfd\x63\x12\x49\x8b\xed\x5b\x85\xc7\x13\x21\x90\xd3\xfe\xf9\xbe\xae\x4f\x65\xb2\x49\x3c\xfe\x0f\x76\x5a\x3a\x5e\x32\x86\xdc\x43\x94\x19\xe8\x9f\xa1\xa4\x00\x03\xa0\x06\xf2\x00\xf9\xcf\xb3\x85\x06\xc8\x51\x25\xc9\x6d\x38\x97\xde\xba\xeb\xa0\xd9\x71\xfb\xcf\x27\xd6\x94\xf0\xb5\x69\x4f\x42\x41\x20\x57\xce\xab\x66\x83\x2d\xb5\xac\x59\x06\xe1\xd4\x6e\xc8\x26\xce\xca\x43\x22\xe3\x4c\xf3\x84\x3c\xf0\xf3\x80\x1e\xe0\x02\x22\x80\x02\xd8\x81\x20\x50\x07\xd8\xc8\x41\x64\xb4\x9c\xa6\xd2\xd5\xda\x3a\xb6\xf4\x01\xd9\x49\x5f\x8b\xfa\xda\xf1\x27\x9d\x21\x90\x1f\x82\xdb\x39\x93\xa6\xad\xb0\x85\x53\x09\x9a\x7e\xa2\xb6\x6a\x3a\xf9\x32\x10\x9e\x00\xea\x64\x4c\x81\x17\xde\x20\x09\x4a\xe8\x25\x33\xb4\x0a\x4c\xfe\xab\xf3\xd7\x67\x6f\x82\x48\x1a\xd9\x36\x24\x83\xb5\x9e\x6d\xdf\xfb\x99\x25\xaa\x14\x59\xb4\x26\x4e\x7d\x80\x40\x9e\x03\x4e\x58\x17\xa1\x7b\x2d\xab\xf1\x32\x72\xc2\x36\x5d\x8d\x4d\xd5\x54\x52\xc5\x13\xd8\xb8\x49\x2d\x50\xaf\x90\x22\x50\x14\x51\x21\xe8\xe3\x58\xd8\xd8\x87\x78\x11\x44\x4e\xe4\x6b\x0c\xcc\x42\x1f\x94\x4e\x6c\xd7\x5c\xa3\xc2\x60\xb3\x24\xda\xca\xa6\xff\xb8\x9a\x5d\xc5\x6f\x30\x8d\x71\x34\x7b\x17\xe6\x27\x18\xfb\xa7\xd9\x73\xe9\xdb\xc8\xff\x14\x41\x66\x35\x24\x47\x27\x18\x24\xa6\x22\x2d\x25\x5f\xa0\xdc\xa1\x53\x66\xe0\x60\x0d\xe6\x7e\x10\x8e\x11\x4f\x57\x98\xf8\x90\xe4\x12\x19\x36\x91\x69\x53\x3d\xd2\xf7\xc7\x5f\xf6\xa7\xcf\x01\xf5\x3c\x7f\x4f\x72\x55\x6f\x66\x40\x44\x9b\x67\xa1\xcd\x07\xbd\x21\x85\x40\x31\x78\x8e\x18\x3a\x3b\xa6\x6e\xd6\x61\x8e\xdf\xdc\xfb\x1c\x9c\x7c\xe7\x12\x79\x12\x8a\x72\xe9\xaa\xa9\x7a\xb8\x96\x3f\xbc\x47\x63\x0d\xf3\x95\x9b\x44\x47\xad\xff\x8e\x19\x17\x29\x6b\x8f\x63\x2e\x2d\x0c\xc5\x57\xa9\x2d\xe1\x3c\x5e\x12\xb6\xb9\x06\x3d\xca\xbf\xa4\xe9\xf9\xef\xf9\x52\xf9\x3a\x44\x24\xc5\xad\xa4\x4c\x54\xf4\x15\x4c\x55\x77\xf5\xcb\x2d\xc9\x1c\x7b\xbc\x10\x43\x44\x52\x4d\xca\xd6\x3a\xab\x67\x12\xfe\x42\x2d\xa9\xfd\xee\x05\x9b\x81\xde\xc6\x82\x62\xba\xb4\x80\x88\x6b\x1f\x1e\x87\x68\x93\x0e\xad\x60\xf9\x63\x99\xe9\x77\x77\x72\x22\x4a\xc2\xea\xbc\x5a\x97\x86\xf3\xe6\xde\x0e\x44\xee\x4f\xc1\xdf\xa3\xe2\x52\xa6\xf3\x7e\xd5\x8f\x0e\x0e\xaf\xfc\xf3\x17\x4e\xae\xe8\xb6\xf7\xe6\x06\x06\x74\x9a\x3e\x94\x5c\x66\xd8\xc5\x40\x07\xf4\xb8\xfa\xd9\x64\x7e\x48\xd6\x3e\xd5\xb3\x31\x82\x33\x21\xb3\x10\xb7\xf5\x74\xd6\xf2\xa2\x09\x4a\x8d\x3e\x4c\x5d\xca\xf7\xaf\x94\x6f\x3e\xee\xff\x36\x9d\xb1\x6d\xf3\x4f\x06\xd2\x7b\x11\xba\x8d\x34\x1f\x34\xb8\xd4\xd2\x58\xfe\xf0\xf9\x22\xd1\x36\xac\xc7\x9f\xd0\xa5\xc3\x1e\xc9\x51\xed\x63\x8e\x3b\x9f\xb7\x69\x40\xcf\xa7\xb2\x58\xe9\x34\x90\x17\x54\x41\xd3\x4c\xd7\x27\x3f\x51\xbc\x62\xb4\x53\xf9\xed\xfb\xff\xe0\xef\x33\xd1\x25\xf3\xce\xc2\xa2\xdf\xc8\x75\x47\x7f\x2d\x7b\x91\x73\xe6\x45\x42\x7e\x78\x6c\x10\x55\x88\x71\x58\x5e\x14\x57\x9c\x7f\xb2\x5d\xa6\x7f\x41\x6c\x45\x70\x53\x58\x8f\xf3\x98\xf0\xa2\xdd\xb6\xef\x19\xe4\xfb\xe9\xbf\x32\x80\x9f\x3e\xdf\x4e\xf7\xeb\x36\xe4\x16\xb3\xa6\xb2\x86\x9f\x7a\x1f\x3a\xb4\x5b\xfd\x1a\x14\xab\x2f\xcb\x32\x8a\x3e\x15\x28\xe5\xb3\xe7\xf2\xe5\x0f\xd5\x94\x76\x4c\x8f\xd0\x2c\xec\xed\x88\x5e\xcc\xfc\xf2\xf8\x77\x06\x72\xeb\x74\x44\xb2\x41\x32\x6f\x38\x16\xd1\x57\xd4\x2e\xd1\xa0\x58\xed\x53\x16\x59\x5c\x90\xf7\x36\xd3\x37\x25\x29\x71\x3b\xce\x3e\x86\x35\xb2\x3f\xae\xe2\xb3\x5d\xf9\x76\x0b\xde\xe0\x87\x79\xd8\xad\xa6\x6f\x8f\xff\xea\xc9\x71\x1b\xb2\x57\xbf\x5c\x38\x3e\xd7\xeb\xd8\x22\x55\x83\x55\x82\x91\xd7\x94\xe9\x93\x2c\x95\x98\x18\x53\x11\x6e\x11\x92\x14\x20\xeb\x53\xe0\x85\xec\x6e\xe0\xaf\x1f\x1d\x95\xbe\x5c\xdc\xd2\xf4\xa6\x3f\x66\x4e\x65\x5b\xf2\xd2\xe8\xf7\x5f\xb3\xd5\x3f\xe8\xf6\xa1\x96\xa0\x86\x85\xda\x3a\xab\x17\x8a\x5e\x64\xd9\x25\x1d\xc4\xe1\x85\x6f\x84\xa8\x07\x84\x04\x08\xb8\x09\x39\x03\xe7\x6a\x6b\x1a\x0b\x4d\x53\x56\x87\x3c\x5f\x89\xc8\xc1\xd4\xb1\x62\x97\xc6\xc0\xc1\xa2\x25\xee\x3d\x86\xdb\x3f\xda\xe8\x5f\x44\xc7\xb2\x2b\xb2\xc3\x04\xcd\xdc\xa5\x3f\xb2\xa3\x12\x39\x23\xf0\x83\x34\x7d\x7c\xdd\xdb\xdd\x8e\x9d\x9e\x6d\x6d\x2c\xda\x4d\x30\x0c\xc9\x35\x1d\x35\x16\x55\xcd\xcd\xd1\xfd\x7e\xf9\x3f\xc4\x2c\x66\xf9\xb7\x22\x8e\x78\xad\x68\x1d\xee\x9c\x61\x3c\x1e\x42\x20\x37\xa5\x9b\x86\xa3\x73\xcd\xb9\x25\xaf\xd3\x36\xa2\x7a\x03\x5a\x3d\x7c\x3e\xbe\xb6\x6d\xb3\x0e\x37\xed\x33\x70\xd1\x1a\x50\xed\x50\xdc\x96\xfd\x21\xbd\x21\x89\xa2\x38\x69\x74\xe2\xe0\xef\xbb\x1a\xa4\x9b\x15\x55\x29\xdd\xde\x37\xb1\xb9\x6e\x75\xe6\xfb\xab\xf8\xb9\xe1\xf0\xfb\x3c\x71\x27\x67\x79\x72\xea\x43\xd8\x67\xaf\x47\x47\x35\xab\xdf\xc6\xa6\x86\xf6\x5a\xee\x2a\x2d\x72\x1d\x6f\x9d\xc5\x3c\x05\xe3\x79\xf6\x38\x6b\xd9\x7e\x4a\x58\xaa\x8b\x9a\xde\x3a\xef\x07\xae\xc4\x47\xe7\x3e\xd4\xe6\xf4\x57\xcc\x23\xee\xd9\xdd\x36\xdf\x37\x6f\xe3\x0f\x9d\xd6\x28\x67\x85\x47\x90\x7b\x66\xd9\x84\x19\xeb\xe9\xf8\xa9\x1d\x2a\x78\xbd\x4d\x10\x6b\xe4\xdf\xe5\xf4\x66\x0e\xa0\x6b\xa5\xbc\x27\xb3\xa1\xbc\xe1\xfd\xf8\x5e\x54\x87\xdc\x32\xd7\xf3\x65\xd8\x51\xea\x4a\x19\x4b\x3b\xef\x38\xe7\xea\xee\xb9\xe5\xc5\xe1\x12\x47\x0f\x69\xd1\xf7\x58\x6f\xef\x55\xeb\x69\xc3\x60\x35\x24\xf9\x61\x29\x1c\x61\x15\x1e\x3d\xd6\x10\xba\x08\x72\x43\xc2\x67\x9c\x52\xf4\x6b\xe4\x05\x42\x73\xd6\x1d\xd1\x55\x45\x4b\xc3\x40\x47\x39\xbf\xe9\x38\x9f\x3c\x8a\x7a\x8a\x01\xd7\x05\xea\x03\xa8\xa3\xe9\xe9\xf1\xa6\x37\x19\x17\xc1\xc1\xf6\x31\xfa\x6d\x2a\x9f\xa4\xbd\x85\xfd\x79\xde\x30\x17\xd0\xa4\x91\xc4\xe1\x76\xa2\xad\x23\xf2\xbd\x2a\x87\x12\x82\x62\xc3\x2c\xa4\xb5\xe3\xa9\x94\xa1\xd3\xfc\x66\x81\xe0\xf1\x2a\xc2\x37\x3d\xb5\x82\xb5\xb3\x78\x3a\x6b\xcb\x79\x27\x75\x54\xbd\x82\x27\x31\xc4\xb3\xd8\xdc\x5e\x6d\x59\xea\x98\xbf\x81\xad\x8e\xb6\x9f\xe4\x16\x97\x02\xe5\x3b\x5c\x3e\x54\x3d\x90\x03\x1a\x80\x13\x10\xbf\xa9\x22\xd5\x65\x15\x13\xf1\x53\x34\x30\x4a\x76\x6c\x0b\x92\x4e\x7c\x2a\x36\x69\xce\x1a\x99\x5a\xa5\x5b\xdf\x19\x38\x2c\xa2\x8c\x92\x74\x17\x33\xe1\x53\x42\x17\x66\x60\xfa\x4d\x71\x4e\xc8\x86\x9e\x06\xbf\xf0\x42\x04\x08\xfc\x79\xdb\xc5\x01\xfa\x00\xef\x75\x31\x6e\x3d\x6d\x15\xef\xd5\x3b\x45\xed\x75\x1b\x04\x9f\xec\x18\x9c\x5c\xff\xba\xb4\xfe\xa3\x25\xa1\xd5\x86\x8e\xcf\x79\xbe\xd1\x18\x6e\x3b\x1f\xd6\xe5\x23\xf8\x3a\xa8\xef\x71\x8a\x50\x74\x61\xa9\x80\x16\x60\x07\x9c\x80\x08\xa0\x01\x78\xc0\x0d\x18\x5e\x12\xa1\x9f\x51\x90\xb3\xcf\x4b\x38\xa8\xed\x9a\x75\x78\xc0\x86\xdb\x64\xdc\x55\xc9\x74\xad\xcd\x76\xaf\x48\xb4\x16\x15\xe6\xc6\x7c\x71\x3f\x37\x4e\x92\xaf\xe0\x6d\xa1\x64\x43\x75\x81\x9e\x03\x42\xc0\x18\x90\xfe\xa9\x5d\x10\x83\x57\x00\x16\xe0\x01\x92\x37\x53\x44\x02\x4c\x5d\xc2\x1f\x14\x9d\x3e\x28\x38\x23\x87\xac\xa5\x84\x95\x15\xb7\xdf\x4c\x1a\xcf\x09\x77\xc5\x94\x6e\xc4\xb7\x7a\x05\x99\xa9\x2b\xfa\xf1\x67\x50\xcd\xa3\x59\x01\x2e\x40\x0f\x08\x01\x31\xc0\x07\x98\x00\x07\x60\x03\x3c\x80\x0f\x94\xe0\x3e\xe1\x8a\xd1\xbe\xe6\x5b\x7b\xcf\xa3\x37\x69\x9f\x1a\xd0\x96\xc4\x5d\x74\xd0\xfa\x6e\xdc\x6b\xc5\x6d\x50\xac\x52\x24\xd9\xd0\x6f\xcb\x4a\x52\xb5\x4a\x04\x83\xbe\x0d\xa7\xe9\x15\x1e\xa0\x01\x88\x80\x04\x90\x01\x1a\x80\x02\x10\xff\x9c\x05\x0a\x0c\x15\x46\x1d\xe5\x1c\x97\xf7\x5b\x63\x1d\x56\x9b\x34\xdf\xb5\xb8\xf8\xfc\xf9\xa6\x86\x11\xf3\xad\xf0\x51\xab\xda\xfd\x8c\xcd\xe0\x74\x7b\x52\xad\x3e\xc9\x23\x36\x1a\x62\x7c\xc4\x2c\x40\x0e\xf0\xfe\xfc\x77\xca\x3f\x3b\xc0\xfa\xdb\x5f\x50\xd2\xa8\x7a\x64\xfc\xec\x63\x92\x96\x1a\x1a\x56\xa4\xde\x9c\x31\xfc\x39\x87\xf5\xcc\x43\x24\x07\xe1\x53\x4e\xcd\xd3\xb9\xef\x23\xb4\x3f\x46\x1b\xc2\xc9\x6e\xf1\x7c\xa7\xbc\x47\x87\xbc\x10\x07\x58\x00\x19\x60\x02\x64\xc0\x02\xb0\x00\x2e\xa0\x06\xfa\x80\x1e\x39\x90\x44\x96\x0d\x51\x62\x4d\xed\xca\x92\xca\xcb\x37\xba\x38\xa7\xa5\xbe\x69\x70\xe1\xcc\x77\xe1\x77\x27\x76\x71\x68\x1c\x89\xa7\x83\x99\xb1\xf2\xba\xf0\x2e\x63\x37\xbe\x37\xdc\x00\xa0\x01\xa2\x80\x1d\x10\x03\x38\x80\x09\x70\x81\x1c\x20\x00\x62\x48\xd9\xc4\xe1\xac\x6f\xc5\x16\xd4\xe5\x2c\x18\x3c\x77\xa2\x9e\x3e\xf7\xd4\xed\x0c\xb4\x5c\xcb\xae\x76\xf6\x5f\x54\xc6\x26\x3f\x06\xe4\xdb\x3a\x69\x33\x4a\x9f\x71\xfe\x7f\x5c\xbd\x55\x54\x9c\x5b\xd7\x34\xba\x70\x77\x6d\xdc\xdd\xdd\xdd\xdd\x25\xb8\xbb\xbb\xbb\xbb\xbb\xbb\x07\x77\x77\x08\x2e\x09\x21\xc1\x89\x90\x00\x21\x42\x84\x90\x3e\xe3\xef\x6f\xbf\x5b\xce\x0d\x5c\x3d\xab\xbb\x69\xc6\xa8\x5a\x35\xab\x6a\x46\xd2\x2b\xe1\xd5\x02\x1e\x40\x0b\xc8\x01\x05\x20\x00\xf4\x80\x04\xe0\x01\x2a\xe0\x80\x39\x4f\x55\xcc\x33\x2b\xb7\x6c\xf0\xe8\x84\x15\x62\x9f\x76\x59\x35\xdf\x2d\x3b\xcb\x78\x5f\x7c\x1c\xba\xb4\xd2\x83\x56\x41\x93\x3c\x1e\xd0\x66\xab\xa5\x23\x2b\xe9\xc3\x2e\x0d\x99\x42\x59\x04\xd4\x80\x15\x60\x02\x7c\x80\x03\xe3\x73\x24\x80\x12\xa3\x80\x52\x98\xbb\x43\xae\xd4\x10\xe2\x28\x15\x72\x9d\x76\x5b\x29\xf0\xf4\x6c\x56\xe4\x51\xfa\x72\x77\x3d\x68\xc8\xb5\x9e\x30\x7b\x23\x42\xcd\xb5\xde\xf8\x83\xe2\x67\xfe\x37\x74\x06\xb8\x45\x40\x02\xd0\x02\x1a\xc0\x02\xe8\x81\x0c\xa0\x00\x32\x80\x1d\x1d\x8f\x82\x93\xab\x57\xf6\x5c\x3f\xc3\x31\x3d\x64\x3c\x1d\xb3\x4a\xbf\x47\x7c\x76\x18\x0a\xfd\x70\xb1\x87\x33\x79\xdb\x56\x50\x5c\x92\xd0\xe3\x47\x62\xcd\xad\x15\x2c\x51\xc6\xd6\x09\x11\x47\x4e\x03\x94\x40\x1e\x88\x00\x56\x98\xc2\x05\x01\xd8\xa8\x65\xe4\xda\x9c\x8d\x32\x48\xfa\x69\x8e\x65\x41\xe3\x69\x3b\x55\x88\xdd\x6f\xe7\xce\xa0\xd0\xbb\xa5\x57\x9c\x8b\xd9\x7d\xe4\xd5\xee\x19\x3b\x61\xf8\x2e\x86\xc6\x85\x8a\xd5\x02\xf0\x74\xf4\xb8\x0a\x80\x1f\xc8\x01\x4b\x18\x17\xa2\x01\x02\xc0\x0c\xc5\x0e\xc2\xc9\xe1\x2c\xb5\xab\xe7\xea\x20\x12\xfc\x2c\x6d\xbe\xaa\xbc\x5b\x62\x1e\x15\x0a\xfd\xb1\x73\x61\xb0\x11\x33\x9a\xdc\x6c\x5e\x18\x1e\x8f\xea\x4b\x6e\x6d\xa7\xf5\x56\x0a\x87\x83\x9a\xec\x29\xca\x20\xa0\x06\x52\x80\x0e\x28\x02\x57\xc0\x00\x82\x90\x6e\x20\x2b\x1c\x19\xd2\x66\x7a\x91\x0e\xb6\x41\xf3\xe9\x90\xca\xa8\x5e\xbc\xe1\x97\x30\x05\x43\xea\x85\xce\xdc\x65\xf7\xb7\xca\xc7\x0c\xe9\xb0\x52\x97\x73\x93\x19\x15\x2e\x61\xc0\x18\x43\x30\x81\x90\x85\xa4\x8f\x2a\x83\xb6\x86\x11\x8e\x69\x88\x39\x86\x23\x88\x5f\x47\x6f\x29\x38\xad\x12\x6d\xe6\xe6\x59\x1a\x83\x94\x9b\xdd\x88\x36\x34\x0c\x43\x8b\xb9\x13\xdd\x35\xeb\x91\x99\xe6\xf1\xc2\x17\x09\x0e\xfe\xf6\x76\xc5\xfa\xd2\xf2\x2c\xbc\x83\x74\x2a\x84\x22\xf8\xf9\x84\x6b\x24\x71\xa4\x4b\xe4\xa4\x94\x97\x34\x2f\x18\x94\xd9\x53\xc4\xad\xb4\x04\x6c\xf0\xfc\xc5\x13\x5f\x94\xb4\xb4\xbb\x4f\xc2\x36\xdc\xfc\x4e\x7b\xef\xb1\x77\x37\x1b\xd3\xd3\x5d\x7d\x96\xd5\x1f\xc9\xea\x19\x63\x99\xaf\x13\x2e\xbb\xcd\x9f\xca\x74\x4a\x4b\x49\xd7\xc6\x04\x61\xfe\xcd\x66\xc8\x8d\xc4\x97\x29\x6a\x26\xed\xa2\x7c\x6a\x34\xe0\x0c\x0d\xeb\xcc\xf4\xa8\x49\xee\xc3\x5f\xf8\x2b\x0b\xf2\x59\xfc\x84\x70\xad\x7c\xf4\x47\x9b\x5c\x29\x51\x2a\x4d\xd8\xaa\x27\xa7\xb5\xa5\xde\x9d\xe2\x9a\x18\x1c\xef\x96\x40\x9c\x30\x9f\x58\xaa\x94\x91\xdc\x5b\x65\x45\x4d\x17\xc3\x19\x2b\x7a\xa7\xaf\x7e\x24\xf1\x86\x85\xed\x2d\x5a\x63\x60\xfd\xaf\x3c\xee\xaf\xc7\xf7\x96\x2f\x10\x17\x91\xfb\x07\x1a\xaf\x4a\xf0\xd3\x7c\x22\x9e\xfb\xf0\xda\x6d\x9b\xdc\x68\xba\x2b\xc6\xa8\xd0\xab\xc7\x69\x4d\xe9\x75\x1a\x07\x99\x67\xda\xae\xb9\x39\xfa\x17\x46\x0a\x25\x9e\xe7\x38\x57\xeb\xf5\x60\xcc\x05\x3c\xff\xdb\x07\xf9\xf9\xe0\xcc\x7e\x5b\x7e\x8e\xad\xff\xb8\xd9\xbb\x0c\x29\xe3\x4d\x4c\x4e\x20\x96\x5b\x89\x35\xbb\x69\xb3\xb9\xa8\x55\xa8\xed\x4f\xc7\x6d\xb7\x79\x9f\x98\xa0\x95\x68\xba\xe4\xf1\xdc\xe6\xb2\xa3\x86\xfb\xee\x90\xb1\xb2\xb5\x9b\xe3\xbf\x9b\xce\xff\x44\xde\x2a\x9f\xec\xec\x60\xcf\xb3\x0e\x29\xb6\x79\x56\x46\xe7\xce\x24\xdd\x45\x3c\xfa\xa7\x78\xc2\x7b\xdb\xfb\x75\x06\x41\xc2\x24\xa2\x99\x13\x11\xd2\x4b\xf3\xb9\x2a\xbe\x36\x5e\x77\xbf\x1a\x35\x58\xf0\xda\x8c\x7a\xe5\x7a\x45\xf8\x2f\x06\x32\x72\xbb\x77\x26\xbd\x87\xbc\xa4\x3b\x9a\xde\x35\x59\x9f\x55\xa6\x97\x53\x94\x0c\x1f\xab\x1c\x5f\x94\xb4\x9d\x26\x99\x25\x97\x2f\x5d\xca\x5e\x3d\xd8\xbc\xd7\xbd\x34\x7a\x36\x7f\xbd\x99\x71\xf8\xe4\x92\xfb\x6e\xef\xb7\xc7\xbf\x34\x84\x8d\x6b\xc1\xf3\xaf\x87\x0a\x3b\x79\xcf\xec\x16\x08\x27\xa3\x87\xff\xf4\x15\x75\x69\xb5\xd6\x37\x66\xd4\xb1\x54\xdd\x54\xf4\x94\x07\xd5\x69\x3c\xad\x1d\xfb\xb9\x54\xb6\x7b\x79\x0a\xbd\x19\xfc\x1d\xfa\x5f\x06\xf2\xb9\xe1\x8d\xe6\xa1\xfe\x56\xee\xd2\xf6\xd4\xfa\xb0\x6a\x8f\x74\xdb\xa7\x86\xfe\x6a\xe1\xd2\xde\x42\xa1\x9c\xcb\xcc\xd8\x34\xf5\x14\xea\x64\xbb\x5c\xc4\xaa\xfa\xb6\x91\xc1\xef\x73\xe6\x5b\x9f\x8e\x43\xaf\x23\x1f\xfe\xd5\xa5\x75\xa7\x7a\xf6\x69\x6f\x7f\xf9\xfb\x64\xfa\xc0\x93\x8e\xe6\x46\x8a\xca\xa5\xa2\xfd\x9c\xa5\xb4\x93\xc4\xa7\x31\x2b\x11\x9c\x21\xbb\x81\x65\xfe\x92\xfe\x7e\xd1\x57\x99\xa6\xa5\x3f\x9a\x6e\xfa\xae\x67\x68\x37\x7d\x8e\x91\x6e\xf0\x1e\x9d\xff\x62\x30\x14\xe7\xd2\x3b\x9c\xf3\x66\x43\x4b\x1d\xfb\x75\x3f\xcb\x34\xf3\x88\xd2\x52\xe3\xad\x22\x41\xd0\x83\x6f\xa8\x87\xa3\xf3\x8c\x83\x82\x4d\xab\x95\xab\xf5\xb8\x37\x5b\x84\x77\xea\x70\x31\x46\x43\x54\x6f\xc6\x8c\xe4\x96\xd6\xc9\xea\x27\x98\xab\xf8\x21\xf0\xad\xd0\x1e\xfc\xec\x46\xbf\x6b\xd3\xbb\x72\xef\x5c\xd4\xe4\xd3\x68\x87\x60\x25\x1f\x66\x37\x59\x07\x1a\x4b\x46\xd3\x0e\x83\x13\x5d\x2b\x8d\x03\x35\x75\x6d\x2e\xcb\x05\xf7\x57\x61\xe6\x29\x98\x85\x0d\x0d\xcb\xfd\x81\x73\xea\xbb\x7a\x17\xe5\xdf\x98\xa0\xd0\x9b\xa6\x97\xbd\x8b\xba\xfd\xf5\x0d\x5f\x8a\x3a\xd3\x50\xa3\x2d\x03\xeb\x3d\x81\xc3\xad\xe5\xa1\xf1\x85\x7e\xa4\x06\xb7\xb2\xa4\x1c\x9e\xe4\x6f\xd1\x0b\xe1\x22\xe9\x74\x1d\x2a\x8b\x5b\xf7\xe7\xa1\x64\x69\xf6\xc5\x39\xcd\x15\xc3\x8f\x4b\x9b\x07\xba\x57\x03\x8f\x58\x6f\x84\xd6\x0f\x47\xbe\x34\x61\x16\xaa\x24\xc9\x86\xdc\x79\xbe\xb6\x9f\x31\xdb\x32\x94\xd1\x0c\x50\x5e\x90\xcd\x95\x98\x13\x7a\xcb\x1b\xc7\xb1\xc5\x62\xcd\xe8\x26\x48\xa1\x44\x6f\xe8\x6c\xa7\xe7\x93\x1e\x43\x96\xf3\xad\xfa\x7b\x37\xeb\x6c\xc4\xf6\xe7\x33\xea\xcf\x1f\x5e\x59\xcd\xd5\x76\xec\x96\xfc\x4a\x5e\x08\x2e\x70\x65\xb2\xf8\xa1\x6f\xa4\x41\xae\x38\x26\x85\x26\xf4\x82\xe7\x37\x7b\x23\xe3\x47\x6a\x62\xb2\x09\xe2\x4d\x52\x1f\x8e\x0f\x92\x6e\x7a\x21\xb6\x04\x3e\x4c\x31\x15\x39\xc1\x35\x48\xdd\xc5\x33\x99\x3b\xe6\x17\xe7\x1f\xdc\xb7\xf5\x46\xdc\xeb\xce\x32\xac\x42\xaa\x9c\x27\x9f\x68\x68\x55\x2b\x9e\x4a\xdc\x08\xfe\xe4\x1a\x64\x95\xa1\x63\x22\xf7\x25\xa2\xc6\xa1\x42\x8b\x43\xaa\x24\xc8\x65\x61\x12\xed\x56\x59\x31\x1e\x71\x7e\x1f\xcc\x94\xcc\x55\x72\xda\x42\x33\x12\xf5\x0c\xe7\xb5\xe9\x59\xfe\x52\x5d\xf7\x9f\x22\xb5\xe8\x14\x77\x81\x27\xae\x1a\x10\x99\x7b\xa1\x0a\xee\x12\x16\x64\xea\x76\xd2\x39\x3c\x25\x34\x2b\x04\x2a\x30\x0e\x08\x01\x21\xa6\x3f\xf5\x08\xcf\xa5\xf4\x85\xce\xbc\xb5\xb8\x37\x43\x0c\xc8\x09\xac\x0b\xeb\xeb\x59\x18\xdb\x3f\x3a\x54\x98\x75\x6a\x32\xc9\xc0\x0d\xe1\x75\x70\xd0\xf3\x90\x9d\x16\xa0\x65\xbd\xa0\x0d\x80\xf0\xe1\x9e\xa0\x36\x83\x06\x80\x04\x30\x01\x2f\x60\x06\x2a\x48\xab\x10\x24\xd6\x48\x91\x7b\x95\x63\x53\x3d\x57\x8c\xd0\xfb\xb4\xd2\x8a\xf6\x2e\xd5\xc9\xb6\x2d\xca\xe7\x1a\x23\xa9\x55\xe6\xa9\x2f\x02\x1b\x6d\xc3\xb4\x7a\xc4\x27\xd8\xc6\x28\x2f\x09\x5b\x31\x46\xe1\x17\x01\x1d\xc0\x05\xe8\x00\x0f\x08\x01\x6c\xc0\x08\x30\xf0\xfa\xe8\x2a\xf8\x54\xe5\xba\xf5\x1b\xed\x31\x02\x6a\x13\x2d\x8b\x4e\x5b\xa2\xc6\x70\x9e\x21\xef\xb0\xf4\x05\x57\xdd\xa7\xed\x04\xb1\xda\x7c\xd3\x54\x10\xf9\xc3\xc8\x88\xbf\x83\x6a\x06\x24\x00\x13\x50\x03\x0c\x00\x1f\x10\x01\x31\x80\x07\xb8\x80\x2d\x66\x18\x45\x3f\x87\x9c\x84\xbd\x16\xa9\xa5\xb9\x37\x79\xec\xa7\xbc\xea\xfa\xc5\x81\x9a\xa5\xea\xf5\xa5\xc1\xac\x3a\x97\xcc\xfb\xe0\x56\x3b\x53\xad\x40\xd1\x38\x86\x21\x5c\x5a\xc0\x0c\x38\x80\x14\x60\x02\x14\x80\x1c\x40\x00\x2a\xc0\x06\x04\x40\x11\xc5\x9a\x44\x9e\x99\x49\x98\x51\x65\xf0\x09\xb3\xfb\x9b\x08\x9d\x2c\xca\xda\x80\x9e\x89\x79\x8e\x4d\xb5\xb1\xe8\x66\xe4\x9c\xaf\x61\x97\x8e\xe5\xba\xf2\x12\xed\x2c\x22\x44\x73\x08\x4f\x80\x2a\x90\x82\xa1\x1e\x01\x20\x05\x64\x80\x02\x90\x02\x62\xf8\x14\xfc\x6c\x3a\x27\xbe\x52\x45\x33\x23\x64\xe7\xb0\x10\x8f\xb4\x8b\x8a\xed\x2e\xbb\x19\xee\xfd\xdc\x59\xc5\xf6\xfc\x42\xec\x68\x3b\xd7\x4b\x23\x4d\xd9\x7b\x6e\x7d\x8a\x40\x74\x0a\xc0\x07\x73\x7f\x52\x02\x32\x18\x8b\x41\x05\x54\x40\x0e\x48\x60\x1d\x53\xd1\x71\x2d\xcb\x0c\xeb\x15\xd9\x0f\x06\x16\x25\xcf\x94\xde\x75\x28\x4d\x86\x1f\x35\x2d\xb6\x77\x97\x96\xe9\x24\xa4\x79\xeb\x9b\x4b\xaa\x24\x0a\xe6\xd3\x2b\xe2\x61\x00\x02\x80\x0f\x08\x01\x01\x60\x05\xc8\x80\x14\x88\x00\x39\xc0\x0a\xb8\xd1\x21\x64\x9a\xec\x8a\x92\x15\xda\xed\x36\xdf\xfd\x13\x12\xde\x17\x5b\xb7\xee\x8d\xd5\x5c\x54\xaf\xe5\x0e\x62\x56\x87\xa6\x79\x07\x7e\xb1\xed\xd0\xe6\x93\x08\x64\xb3\x21\x75\x43\x2e\x05\xd4\x80\x14\x08\x00\x1a\xc0\x00\x7b\x17\x8c\x40\x04\x30\xa1\x9c\x92\xbe\x60\x8b\x94\x50\xd0\x6a\xb7\xd1\xf2\xbd\x48\xd0\x28\x76\x6d\xc1\x1f\xc3\xbc\xc2\xda\x99\x18\xd3\x6d\xc2\xcb\x29\x8f\x98\x73\xb9\x34\xb2\x96\xbf\xe6\xbd\xa5\xde\xc7\xb6\x04\x92\x30\x05\x87\x0a\xa6\x46\x91\x00\x7e\x20\x00\x08\x91\x6b\x48\xec\x58\xda\xc4\xd5\xb4\x2c\xac\x88\x7d\xfa\xe2\xbe\x16\x07\xb7\x7c\x19\xab\xfe\xf4\xfb\xa5\xf6\x2c\xa4\x03\xad\x38\x2d\x7e\xcb\x07\xdf\xb2\x4a\xfd\x4a\xb4\x8e\x85\x90\x38\x10\x09\x02\xc8\x00\x0a\xec\x9d\x10\x02\x0e\x20\x04\x90\x80\x02\xe2\x3c\x71\x20\xf3\x67\xb1\x30\x8d\x08\x2b\x13\x9f\xcb\x38\xb3\xc2\xd1\x16\xff\x51\xdf\xfb\xa8\xe3\xaa\xe5\xe4\xde\xfd\x6a\x8b\xb4\xdf\x21\xc4\x8e\xe7\x06\x2c\x72\x14\x3c\x44\x54\x25\x98\x9f\x00\x04\xc6\x7f\x48\x00\x39\xc0\x03\xcc\x80\x02\xe8\x20\xf4\x12\xfd\x62\xae\x12\x2d\xd2\xa4\xb1\x0c\xf2\x29\x8f\xf7\x28\x2a\x6d\x09\x19\x0b\xfe\x43\x7e\x59\xbd\xb1\x3b\x72\xdd\xf8\x23\x5f\x2f\x26\xc3\xb3\xc4\xdc\x45\x8d\x5e\xa4\x9f\x99\x8f\xa8\x1e\x21\x12\x48\x00\x5c\x40\x08\x63\xc6\x5c\x80\x15\x50\xc3\xc3\x11\x6a\x31\x17\x8a\xaa\xa9\x1f\x5a\x39\xf8\x88\xc6\x1f\x16\x09\xb6\x0a\x4c\xc0\x41\xa1\x1f\xdf\x3d\x27\x9c\x29\xe9\x52\x2a\x77\x4a\x99\x0d\xbc\xb4\x7f\xa9\xf7\x5d\x36\x9a\x87\x91\x4a\x0b\x53\x05\x40\x00\x25\x60\x02\x84\x80\x02\xc6\xa7\xc4\x81\x0b\x7e\x2e\x63\x9b\x28\x9a\xfa\x17\xf3\x33\x9f\xb9\xd8\x85\x82\xcb\x96\xd2\xb1\x0d\x28\xf4\x2b\xdd\xd1\xd0\xca\xc8\x60\x54\x83\x42\x2e\x67\xd4\x94\xc7\x84\xb9\x9a\x5a\xaa\xa8\x33\x0b\x15\x31\x26\xfc\x15\xa0\x06\x44\x40\x08\x10\x03\x71\x80\x0e\xd0\x80\x29\x5e\x29\xfd\x37\xe1\x2f\x6a\x22\x16\x27\x5e\x8d\x71\x49\x85\x6c\xad\x46\xe3\x10\x28\xf4\xa1\xfe\xad\xe3\x8e\xcd\xe4\xb3\x0e\xe6\x52\xa7\xe4\x9a\xc0\x3b\x07\x4b\xfd\x43\x79\x2c\xde\x0f\x34\xa2\x58\xf6\x00\x07\x70\x01\x5a\x60\x07\x64\x01\x1f\x60\x05\x26\x58\xa8\xd4\x82\x3c\x81\xf2\xd4\x06\xd3\xce\xe4\x41\x63\xe9\x68\x65\x17\x4f\x61\x6d\x54\xb7\xab\xaf\x70\x97\x6e\xfa\xbf\xd7\xcd\xe4\xbc\x89\x0e\xf7\x32\xb2\x14\xd6\xdc\x90\x30\x65\x0f\x20\xb5\x47\xca\x00\x0c\x80\x12\x70\xc2\xf2\x4d\x26\x70\x9f\xb0\x14\x68\x90\xf8\x16\x15\x8b\x4d\x0a\x5c\xaf\x22\x12\xb2\xa5\x6a\xbf\x0d\xa0\xc0\xd0\xaa\xee\x02\x6b\xcb\x60\x52\xa3\xa3\xbf\xac\x3c\x55\x25\x24\xc7\x05\xcf\x84\x4f\x79\x4c\x98\x9a\xe1\x94\x00\x11\xd5\x05\x03\x03\xeb\x27\x6e\x2b\x41\x38\xb1\x2d\x24\x94\x62\x90\xd5\x46\x5c\x42\xb3\xd5\x5a\xda\xf7\x6b\x42\x72\x31\x59\xeb\xc2\xf8\x5f\x6d\x16\xd7\xda\x2f\x25\x96\xc6\x07\x31\x1a\xa6\xf3\xd3\xe2\x7d\xfd\xce\xed\x5e\x1b\x38\xc9\xab\xf3\x7f\x65\xf4\xa0\xc0\xa4\x66\xa5\xfd\xce\xc8\xcd\x32\xce\x7e\xcc\xfd\x56\xa0\x58\xb4\x51\xd1\xd3\x68\xc2\x05\x21\xcc\x21\xe3\x63\x75\x56\x2f\xf9\x7c\xe5\x5f\xb7\x5e\xee\x0b\xbf\xad\xf9\x69\xc5\x2e\xeb\xaa\xb8\xcc\x9d\x28\x55\xaf\x16\xeb\x8f\x7a\xbf\x15\xfb\x45\x38\x79\xc2\xf8\x2d\x85\x4c\x45\x7d\x24\xdd\x64\x69\x15\x5b\xd4\x0e\x74\xb2\x4c\xce\x6d\x15\x7c\x2b\xe2\x8b\x0a\x57\x5b\xb8\x46\x9b\xd6\xff\xb7\x5d\xa6\xe2\x7a\xe2\xd5\xb3\xd5\xc0\x91\x8a\x56\xbf\xd2\xa1\x74\xf8\x48\x6b\xef\x6d\xfb\x54\x93\x68\xf5\x3c\x85\x65\xe5\x22\xb5\x6a\xcd\x4b\xdd\x55\x23\x8b\x27\x91\xd6\xde\x4e\x12\x5e\x49\xc1\x2a\x31\xcf\xb3\xe8\xab\xc5\x7b\xcc\xe6\xd2\xf6\xff\xd6\x0f\x7e\x28\xbd\x99\xd8\xbb\x98\x1f\x1f\x84\x6f\x01\xe5\x48\x99\x0b\x31\x6f\x03\x22\x5c\x4f\xad\x8c\x4d\x21\x66\x03\x96\xef\x6c\x15\x1c\xe1\x5c\x5b\xbd\x7a\x02\xa2\xc3\x26\xe3\x93\x33\xcb\x8b\xe1\x6a\x04\xdb\x36\xc6\xfc\xd7\x9e\x9f\xe0\xff\x0b\x7d\xed\x4e\xcf\x76\x5e\xcc\x3f\x0c\x1d\xb4\x3d\xad\xe2\xcf\x13\x4c\xd6\x8d\x58\xf1\xed\xf6\xc8\xf4\xfa\xe9\x27\x14\x98\x10\x1a\x1f\x79\x1e\xdf\x97\x9a\x93\x13\x50\xb2\x52\x97\xd6\x7e\x37\x30\x30\xa5\xb9\x5a\xf8\xe2\xf6\xfd\xd7\x7f\x4e\xf8\x63\xf3\xc9\xfd\x2c\x65\xef\x60\x99\x70\x4c\xf8\xa9\x76\xfd\x65\x69\x5e\xf6\xfb\x24\x48\x2c\x72\xbc\x78\x52\x58\xea\xc7\xcc\xdb\xbc\xd0\xe2\xf7\x95\x1f\x1b\xde\x75\xaa\x0f\x11\xcd\x10\x3e\xa3\xdd\x8b\x3a\xa9\xf8\xb0\x77\x9f\xf9\x2f\x06\x62\xf7\x71\xee\x3c\xea\x10\x71\x87\x7a\xf5\xd3\x3c\xcb\x44\xc7\xb0\x4d\x9f\x70\xe7\x66\xab\x69\xa3\x72\x1d\x5f\x35\xa4\xe2\x63\x79\x6d\x83\x6e\x77\xd1\x44\xda\x4a\xfe\x3e\xff\x59\xf8\x2d\xfe\xef\xac\xff\x10\x90\x8e\xcf\xf8\x97\x7b\x2f\xf7\xb6\x08\x96\xe4\xa7\x04\x86\x6a\xba\x67\x5a\x2f\x1b\xe4\xaa\x9e\x95\xc6\x16\x1c\xe7\x6c\x67\x46\xa7\xf9\xa4\x48\x25\x73\xe6\x31\x55\xcf\x77\x88\x0c\x4b\xce\x93\x6c\x3d\x3f\xb6\xbc\xe6\x7f\xf8\x57\xc3\xd9\xa7\xaa\xb3\xc0\x3d\x83\x65\xcf\x89\xc7\xfe\xa5\x0e\xb6\x06\xc5\x8a\xef\x45\x9a\x39\x8a\x69\x0e\x89\x92\x31\x76\x11\xd4\x21\xcf\x02\xf5\xfd\x1e\xfc\x05\x62\xec\xb2\xcc\xcb\x53\x5b\xf0\xfb\xd1\x66\x1c\x36\xe5\x8e\xa2\xaf\x2d\x7f\xb7\xfc\x8f\x01\x9d\x4e\x6c\x37\xce\x6d\x0c\x71\x75\x08\xd5\x19\x95\xc6\xe6\x7a\xa4\x5e\xc4\xe5\x47\x28\x04\x95\xf9\x14\xbb\x5f\x39\x5b\x3a\x50\xd9\xd4\x5b\x41\x6c\x74\xbc\xe5\x22\xde\xa7\x0d\x16\x5f\x37\x94\xf4\x3a\x4d\xb7\x6d\xa6\x1d\x1f\xde\xa6\x41\xcb\xa1\xd0\x1f\xb8\x97\x36\xdb\x3b\x33\x06\xbd\x57\x4d\x26\x65\xa3\x39\x6a\xc9\x94\x51\x69\x41\x71\xde\x52\x2e\x55\x76\x32\x16\x89\x26\x3e\xfa\x15\x3a\xbc\x1a\x8b\x6a\xb2\x3a\x5f\xac\x69\x3d\x09\xc3\xca\x92\x1f\x0a\x03\xea\x37\x7b\xc7\x67\x79\x77\xd0\xce\x85\xbe\xc8\x41\xa1\x37\x7c\x2f\xd0\xe6\x83\xfb\x16\xeb\xed\x0b\xdf\xa7\xf2\x45\x45\x07\x2c\xbb\xbf\xb3\x97\x37\x3f\x36\x5c\xd7\x0e\x53\x65\x92\xff\x29\xf5\x5e\x9c\x41\x38\x55\x10\x48\x57\x6b\x57\x5b\x4a\xb8\x75\x84\x74\x25\xe3\x14\x11\x36\xd6\x0c\xd4\x2c\xfc\x7c\xce\xfa\xb6\xf3\xc7\xf6\x69\xff\xb3\xde\xc1\x84\x86\x87\x02\xd1\x44\xce\x10\x0c\x8f\x2d\xbb\xce\x27\x0e\xba\x3b\xaa\x85\xb2\xb7\xe2\x15\x02\x1f\xb8\x63\xd9\x04\x99\xe8\xe8\x34\xa9\xe7\xb8\xb7\xa4\x25\xb5\x12\x2d\xb0\xdc\x06\x42\xc7\x52\x65\x4a\x13\xdb\xe0\x47\xf5\x9e\x61\xbf\x56\xb8\x7d\xfb\xbc\x62\x72\xb9\x8d\xa7\x84\x3b\x41\x2f\xa0\xc2\x79\xc8\x5c\x47\xf7\x46\x45\x56\x1a\x57\x68\x8a\xab\x86\x79\x8f\x66\x84\x9c\x8a\x28\x1f\x8f\x01\x0b\x17\x3b\x91\x96\x99\x6f\x43\xee\x8d\x9e\xa8\x4d\x88\xcf\x64\xf4\x50\xf6\x65\x2d\x71\xf7\xde\xdc\xf6\xae\xe3\x65\xe7\x9a\xfd\x40\x70\x95\x68\x6a\x72\xd0\x8d\x13\x30\x39\x52\x9f\x92\xf1\x17\x32\xe0\xf8\xc1\x70\x4b\xb9\x48\xec\x89\x33\x8b\x46\x01\xdf\x0c\x04\x80\x2f\xd2\x1e\x99\x31\x7b\xac\xc4\x07\x3d\x4d\xdb\xa7\xbe\x8a\xe1\xc6\x79\x9e\xf5\x76\xed\xaf\x27\x92\x37\x4e\x4e\xcb\xe6\xcd\xda\x7b\x73\x0f\x22\x46\x5d\xef\x4c\xde\xa8\x70\x88\x13\x70\x0f\x30\x15\x52\x71\x12\xc7\x62\x07\xa2\x40\x40\x14\x60\x02\xf2\x80\x0e\x70\xc0\x1b\x93\xe8\xb2\xc4\x8a\x28\xaa\x8a\x99\xc4\x3b\x4f\x86\xa0\xa4\x69\x97\xbe\x6e\x6f\x9d\xb8\xdd\xe8\x7e\xce\x34\xde\x5e\xfb\x39\x1d\x12\x8c\x67\x8f\xa5\x93\x26\x79\xc3\x31\x4a\x97\x09\x61\xc4\xfd\x84\x7a\x05\x74\x01\x3b\x4c\xb3\x96\x06\xec\x80\x0a\x68\xe2\x04\xd2\x94\xf0\xec\xc8\x8c\xe8\x06\xd9\x0e\xfa\x96\xc4\xe9\x16\x28\x36\x5a\x0c\xb3\xaf\xa8\x6f\xa9\xf7\x5f\x54\xc6\xa4\x1c\x05\x44\xdb\x70\x6b\x3c\x88\x5a\x33\x85\x13\x7d\xc0\x1c\x40\x98\x07\xbc\x00\x15\xa0\x03\x0c\x60\x04\xf3\x52\xa2\x01\x6e\xb4\x31\x32\x23\x36\x55\x31\x6b\xb5\x6f\xe6\xf4\x1e\xbb\x51\xc4\xd9\xfc\x35\x14\xbd\x97\xf3\x61\x2b\x65\xbd\x83\x55\x34\xa9\x87\x81\x21\x36\xc6\x1a\xc3\x22\x24\xf4\x9d\x38\x41\xc0\x1c\x88\x01\x79\x40\x0b\xa8\x00\x19\xcc\x37\x88\x0b\x64\x00\x27\x62\x17\x61\x27\x23\x8b\xc0\x81\xe2\x92\x31\xa6\x33\x67\x08\x75\x1a\x4e\xf9\xeb\xce\x99\xa9\xdb\x95\xc3\x81\xf8\xda\x82\x4c\xe7\xe0\x17\x76\x9d\x5a\xa7\x62\x16\x8c\x3f\xf0\x37\x40\x0b\x48\x03\x0e\x30\xbc\x45\x07\xfc\xb0\x13\x68\x80\x3c\xe0\xc5\x49\xa3\xb6\xe1\xb1\x97\x89\xd5\xa3\xb7\xfb\x14\x48\x9c\x8c\x59\x22\xd2\x96\x34\x1e\xb6\x51\x37\xba\xd4\xf4\x3d\x37\x27\x7c\xd8\xa9\x51\xef\xa3\x94\x07\x7b\x27\x44\x07\xc5\x11\xe0\x00\x12\xc0\x07\xd0\x01\x19\x80\x00\x14\x98\x93\x92\x1b\x10\x62\xe0\x92\x23\xb1\x2b\x48\x38\x6b\x3e\xb1\xa6\xf0\x31\x8c\x87\x14\xf2\x35\x75\x0e\x3f\xee\x7d\x9a\x39\x6b\x27\x2e\x12\x89\x25\xf2\x60\x30\x11\x56\x74\xe7\x4b\xa2\xd1\xc7\xb6\x87\xbd\x7f\x71\x18\x87\x62\x83\xf1\x08\x66\x40\x0d\x34\x90\x4f\x88\x27\x99\x59\x44\x8a\xd4\xda\xcc\x99\xbc\x7c\xa3\xa3\x73\x57\x1b\x3a\x07\xb3\x8f\xb0\x97\xa2\x7a\x0a\xca\x73\x12\xb7\x7c\x3d\xac\x82\x34\x54\x44\xbb\x99\x25\x89\x22\x11\x51\x00\x3f\xa0\x03\x04\x80\x12\xf0\x03\x1c\x80\x02\x94\x01\x15\xa0\x83\x3f\x21\xd0\x67\x60\x11\xf4\x54\xbe\x33\xfd\xea\x96\x1d\xf1\x21\x3b\xa3\x56\xaa\x7f\xf8\x82\x6f\xdd\x76\xb0\xa1\xe6\x32\xe3\x32\x24\xdd\x61\x57\xef\x46\xe6\x9a\xcb\x84\x62\x17\xc3\xf6\xff\xb1\x50\x80\x0a\x4b\xb3\x10\x00\x22\x40\x0d\xd4\x00\x15\xc8\xc2\xe3\xa3\xab\x14\x60\x53\x2a\x32\x69\x73\xed\x0b\xef\xcb\x62\xaf\xb5\xee\x97\xb8\xea\xd9\x99\x9a\xc0\x6b\x4e\xcf\x8f\x88\x21\xf0\xe0\x7e\x92\xaf\xc2\x2f\x24\xc1\x30\x41\xc0\x0b\x8f\x05\xa4\x00\x21\x60\x04\x64\x30\x2f\x08\x16\xcc\x99\x8a\x8b\x73\x47\x6b\xc8\x57\xac\xc4\x6f\xdc\xeb\xba\x1a\xa1\x94\x95\x59\x93\xdd\x17\xf8\xe9\xee\x25\xcb\xdc\x9b\xae\xc5\x32\xa7\xa4\x0d\xff\x68\xdb\x71\xed\x66\xc9\x0b\x8e\x3f\xe4\x3a\x68\x13\x40\x1d\x30\x00\x01\x80\x0d\x48\x00\x09\xa0\x03\xc4\x00\x0d\x70\x60\x33\x51\x0f\xf3\x49\x2a\x54\x19\x5d\xb8\x3a\x86\x23\x66\x71\xd7\x3c\xf6\x8d\xdc\xdf\x9f\x72\xad\x22\x0e\x84\xd4\x86\x65\x19\x85\xaf\xb9\x2a\x98\x70\x28\xc5\x09\x4c\xd3\xe7\xe0\x53\x03\x31\x98\x8e\xc4\x03\xb8\x01\x05\x6c\xa2\xc4\x09\x44\xb0\xe4\xa9\x6e\x78\x73\x14\xd8\x8d\x57\x5c\xdf\x86\xbd\xcf\xb2\xad\x09\xee\xf3\xff\x13\xf7\x56\x71\x5b\x73\xfc\x77\x2b\x55\x51\x6f\x82\xb8\x9f\x8c\x35\x9f\xd6\x3b\xc9\x46\x0e\x4b\xb2\x68\xd4\x7d\x40\x09\xc8\x81\x00\xac\xd7\x84\x14\xd0\x01\x36\xc0\x80\xa1\x45\xb5\xcd\x73\x2b\x57\x6f\xc4\xe1\xda\x1f\x4e\x9e\x65\x52\x63\xd7\x1f\x00\x85\x5e\xef\x1d\x38\x2e\xe0\xf4\x3a\x55\xab\x67\xa2\x84\xa9\xb8\x14\x1a\xe7\x2b\xa9\x09\x62\xd2\xcf\xe2\x93\x01\x42\x80\x09\x98\x00\x2a\x60\x02\x24\x80\x08\x48\x01\x12\x74\x23\x4a\x35\x9e\x1f\x72\xaf\x0d\x9f\xbb\xc4\x87\x66\x64\x7c\xa8\xa1\xe8\x63\x87\x42\xbf\x85\x9c\x6e\xad\x8f\x8e\x8a\x36\xcb\x15\xc6\xc5\x1b\xf9\x46\xd8\x70\x68\x7f\x95\x8a\xe4\x14\x25\x67\x40\x55\x00\xfc\x80\x16\xd0\x03\x1e\x20\x0e\x58\x00\x06\x60\x43\x49\x27\x85\xb2\xfe\x96\x08\xd5\x52\xb4\xca\xf6\x1d\x8f\x6b\x2f\x64\x6f\xd6\x86\x42\x1f\x1b\xde\xf7\xef\x67\xce\xb1\x76\x23\x57\xf1\x64\x50\x85\x79\xbb\x7a\x99\x86\xaa\xe8\x0b\xeb\x33\x9e\xe0\xaf\x03\x2c\x80\x0e\xdc\x00\x2a\xec\x6f\xa1\x0c\x04\x11\x93\x48\xdc\x59\x2b\x24\x58\xb4\x2e\x6c\x22\xfd\x69\x93\xa4\x4b\xb2\xdb\x61\x29\xcc\xcf\x4f\x8f\xcb\x9f\x65\x0c\x1f\x37\xb3\x17\xce\x24\xb4\xfb\x0b\xd8\x99\xe8\xbd\x96\xfd\xc9\x63\x4a\x25\x8f\xfe\x0a\xb0\xc2\x9d\x23\x8c\x23\xfd\x41\xf9\x86\x76\x80\x91\x8a\x13\x42\x63\xcf\x17\xa4\x50\x65\x74\xef\x62\x15\xf6\x31\x33\xa7\x46\xbc\x17\xd6\x5d\xf0\x50\xf6\x6e\x6d\xaf\x7a\xd6\xb9\xdb\xb5\xea\x59\x16\x6f\xe4\xa2\x27\x8b\x25\x8a\xc6\x8e\x84\x3b\x5b\x19\xa9\x26\x26\x1c\x76\x26\x6e\x0b\x3e\x94\xa8\x86\xe4\x15\xa4\x99\xa2\x83\x5d\x5c\x22\x54\x8b\xc9\x9a\xc1\xd7\x20\xbe\xac\x08\xbe\x25\x71\x8c\xe8\x2f\xc4\xd9\x3e\x7a\xbb\xc6\x3d\x86\xda\x0a\x29\x79\x9b\x02\x1f\xf2\xc2\x85\xda\x14\x4e\x85\x4f\x84\x87\x49\x98\x22\x93\x7a\x8c\x2e\x82\x31\x82\xe5\x1b\xfb\x3d\x37\x05\xdf\x94\x70\x81\xb2\x85\x09\xb9\x4b\x6f\xd8\x64\xc6\x65\x35\x51\x8f\xc1\x5c\xef\xff\x9d\xf0\xb3\xfb\x1d\xc3\x7e\xfe\xfc\x45\x5f\x5c\xbd\x6f\x7e\x71\xbc\x90\x7f\x97\xc3\xb5\xa1\x82\x92\x8e\x08\x16\xcf\x22\xff\x80\x50\xae\xe8\xa2\xa4\x83\xcc\xbd\xc2\x86\x2a\xa3\x16\xbf\x81\x82\xed\x73\xbf\x57\x09\x1e\x45\xda\x2d\xbe\xa3\xad\x6b\x7f\x6f\x88\xfd\x6c\x76\xea\xb2\xe9\x34\x99\xde\x55\x55\x75\x97\xa3\x16\x2b\xe1\x1b\x68\xbf\x6d\xc2\xa1\x6e\xaa\xf0\x47\x79\x4f\xed\x48\x8b\x42\x77\xd7\xf0\xde\xf4\xde\xf2\xc2\x3e\xd0\x4d\xc9\xaf\x38\xca\x3b\x6b\xb6\x46\xaa\xe7\xe7\xdc\xcf\xe7\x7f\xef\xe8\xff\xad\xf8\xc1\xf9\x90\x71\x65\x72\xe4\xbe\xed\xb6\x42\x34\x9b\x30\x36\x32\xa0\xd6\xf5\xde\x92\xd7\xd4\xc9\x1c\xc9\x0a\x62\x6b\xe0\xc8\xe7\x9a\xed\x45\xe9\xaf\x17\x2a\x18\x63\x9b\x0a\xf2\x88\xca\xb5\xdb\x11\xc7\x09\xd6\x97\x4e\x8a\xfe\x41\xdf\x6f\xdf\xde\xe8\xec\x57\x2e\xda\x0d\x77\xb6\xc7\x57\x6b\xe4\xe5\x24\x97\x44\xd4\xf8\x1a\x7a\x74\x79\x8b\xfa\x59\x05\xc6\x87\xea\x45\xfe\x8a\x6b\x4d\x51\xcb\x4a\x2d\xdc\xab\x72\x6e\x81\x74\x9b\x8f\x1e\x2f\x4d\x1c\x40\xae\xfe\x33\x07\xb9\x3b\x3c\x6f\xdb\xff\xb1\x9c\x32\x2e\xfc\xf4\x77\xc3\x52\x19\x5b\xf6\xe7\x44\x89\x58\xba\x78\xb3\xa4\xaa\xd4\xb3\xcc\xb1\x3c\xce\x62\xb7\x8a\x86\x7a\xf5\xb6\x2f\x7d\x33\x13\x2a\x8b\xf0\x9b\xc6\x87\xfd\x6f\xd0\xbf\x75\xfc\x8b\x81\x88\x7c\x2c\x3e\xd7\x7b\x99\xb4\xfd\x75\x75\x7d\x1e\x75\xc2\x76\x98\xb9\x77\xaa\x0b\xa9\xf5\x69\x63\x4f\x5d\x55\x75\x7b\x65\x50\x85\x7c\xa3\x74\xef\xd5\x64\xc7\xea\xdc\xf3\xae\x73\x70\x7b\xf0\xbb\xf3\x3f\x0c\x84\xf7\xee\xfc\xb2\xfe\x65\xd3\xe6\xe9\xe2\xcf\xc9\xca\x21\xc2\xee\xea\xd6\x67\x0d\x7c\x55\x0b\xa5\x09\x85\x22\x39\x5f\x32\xbf\xa5\xfd\x4c\x29\x4b\xf6\xca\x3b\xad\x95\xef\x5c\x1b\x29\x5f\xe0\xdb\x9e\x3f\x8e\xbc\x96\x79\x48\xfa\xfb\xf9\xa0\x4f\xde\xa7\xef\x77\x4f\x96\x85\x26\x66\xfa\xb3\xda\xd7\x1b\x48\x2a\x36\x8b\x78\x72\xf8\xd2\x2c\x13\x09\x62\x66\x22\x34\x42\x51\x03\x7f\xfa\x3f\x04\xe0\xc4\xf5\x64\xf7\x54\x24\xb4\xa2\x0d\x20\xcc\xbc\xda\xe4\x3d\x7a\x72\x8d\xf2\xfb\xaf\xcd\x2a\x9f\x83\x4e\xb5\xb6\x54\x67\x87\x06\xaf\xdb\xbf\xd5\x91\x94\x2a\xe6\x3c\xa4\x16\xc7\x95\x47\x70\x06\x39\xfa\x54\x7b\x68\xba\x10\x39\x58\xda\xc2\x59\xed\xd9\x69\xfb\x22\x46\x11\xa6\x1f\x94\x68\x35\xaa\xf5\x2a\x4d\x7b\x6e\xa2\x1d\x0b\xde\xf4\xfe\x31\x82\x42\xbf\x9f\x9d\xe7\x6f\xc5\xcc\xe0\xf4\xd6\x34\x06\x97\x99\x67\xff\x4e\xda\x8a\x52\x0a\xb2\xf1\x3a\x71\x21\xb0\x13\xb0\xc8\x34\x79\x69\x40\xa7\x8b\xaa\xc9\xa9\xd6\xab\x97\x6b\xfd\xe8\x39\x12\x4e\x9e\x62\x56\x98\x54\x5f\xda\xcb\x35\xe3\xbc\x0d\x4e\x67\xee\xca\xa0\xd0\x0f\x7f\xf6\xed\xe6\x3e\xf7\x08\xd7\xc9\x17\xa8\xa4\xec\x44\xd1\x07\xb8\xb9\xc7\xd8\xcb\x98\xd7\x1b\xda\x6b\x4b\xa8\xd2\x28\x48\x48\xfb\x4b\xd0\x88\xfe\x11\xec\x94\x4d\xd5\xb1\xb0\x2c\x75\xa7\x0f\x59\x4e\xda\x29\xb4\x6c\x68\xed\xb7\x9d\x57\xdf\x33\xba\x7c\xbc\x57\x3c\xfa\xba\x34\x39\xb0\x5d\xf7\x35\xef\x5d\x02\x61\xb0\xb9\x87\x89\x9d\xb8\xe9\xbd\xae\x98\xaa\xa2\xec\xa0\xb8\x9b\xc0\x0d\x0f\x1e\xc7\x18\x6b\x14\x4b\x21\x13\x07\xaf\x8a\x0c\x9c\x56\xba\xf9\xa6\xeb\x7d\xc8\x7c\x0a\x7c\xf1\x45\x33\x74\x58\x7a\x85\xf1\xe5\xee\xd5\xc6\x0e\xd2\xb8\x7d\xeb\xcb\x82\xd9\xf8\xfd\x00\x6c\x67\x26\xb3\x1e\x5d\x41\xe5\x26\xa9\x04\x21\x05\x2e\x15\xe6\x68\x5a\x65\x2a\x34\x0a\x6c\x32\x4c\x08\x0a\xf1\x0a\xad\x01\xcf\xbd\x74\xbb\x16\xb5\x05\xb7\x7b\x5e\xf8\x5c\x7a\x57\x05\x5d\x47\xca\xa4\xe8\x26\xfc\x25\xd2\xf2\x50\x0f\x5c\x79\x5f\x72\x55\x40\xb2\xfd\x1b\xa3\x5d\x35\x5e\x69\x5b\xc1\x00\x0e\x2c\x7a\x39\x72\x72\x42\x37\x9c\xef\xd8\xf8\x18\xe3\x68\x3f\x50\xbd\x50\x32\xf1\xee\x68\xb7\xf9\x98\x65\xa7\xf5\xa9\x6d\x42\x7d\x3d\xe3\x40\xae\x6a\x3d\x6f\xff\xe2\x42\xce\x81\xc4\x94\x49\xf3\x51\x76\x78\x04\xab\xab\xa2\x09\x89\x32\x87\x68\x05\xe7\x39\x7d\x12\x64\x1a\x37\x1b\x35\x11\x91\x1e\x74\x01\x55\xc0\x01\x20\xc0\x18\x90\xa1\x2f\x52\x70\x71\x8a\x48\x5c\x6a\x24\x99\x95\x79\xc0\x45\x78\x66\x2e\x55\xfa\x3e\xcd\x9b\xb6\xdf\x1a\x1d\x72\xac\x5a\x4d\x2b\x0c\x0a\xb6\xd3\xd0\x6e\x92\x88\x66\xab\xa3\xe8\xc6\x7b\x89\xaa\x05\x20\x40\x04\xe0\x03\x7a\x40\x0a\x53\x8c\x55\x01\x05\x8a\x19\x84\x90\x15\x4e\x14\x45\x45\xd3\x64\xcf\xd5\x2e\x9c\x34\x23\xa2\x6a\xfd\xe9\x8f\xd9\xe1\x67\x3b\x3d\x09\x95\x58\x29\x26\xfe\xe7\xd6\x7e\x1a\x48\xc2\x63\xf4\x75\xb8\x46\x88\xee\x80\x06\x68\x03\x0b\x40\x0c\x18\x00\x15\xa0\x02\x6c\x00\x02\xc4\xe0\xea\xf1\xcb\xe9\x36\xf8\x1c\xe5\xba\xf5\xfb\xec\x87\x03\xaf\x93\x1c\x4b\x58\xda\xac\xc7\x94\x16\xfb\x7a\x75\x2b\xbb\x53\xcd\x03\x09\x6d\x6a\x34\x56\x45\x8c\xe8\x57\x71\x76\x01\x21\x10\x02\x9a\x30\xcf\x1f\x3e\xc0\x02\xb8\x00\x17\xf0\x02\x29\xc0\x80\xd5\x43\xf1\x91\xe3\x4c\x52\x4f\x4b\xd4\xaa\xca\x27\x2d\xee\x7b\x7e\x5c\x93\xf4\x90\xe7\x4a\xf4\x00\x73\x2d\x67\xa6\x49\x48\x8c\xbd\xaa\x0e\x9d\x04\x1c\xcb\x1b\xe2\x5e\xc4\x0b\x40\x04\xf0\x81\x18\x60\x01\x74\x80\x08\x50\xc0\x6e\xae\xac\x80\x0b\xd5\x96\x14\x9f\xf9\xa3\x28\x9c\xea\xbe\xd9\x95\x27\x7e\x94\x4a\xb6\x75\x5d\x78\x3f\xee\x06\xc2\xa8\x5f\xd3\xd7\xdc\xb3\x48\x0a\x97\x1c\x43\x46\xb9\x00\xee\x20\x4a\x7b\x8c\x3e\x18\xee\xd3\x00\x3e\x40\x06\x68\x01\x26\x60\x84\xa9\x20\xf8\x08\x1b\x04\x22\xf4\x09\x02\x72\x8a\xd9\xc6\x5f\x5c\x89\x43\x3f\x64\xbc\xa9\x86\xef\xc1\xdb\x6b\x9e\x29\xec\x10\x28\x0e\x88\x5b\xf6\x02\x66\xfe\x2a\x75\x42\xa5\x0c\x61\xf8\xcf\xe1\xb2\x81\x25\x20\x02\x82\x80\x00\x50\xc0\x7e\x52\x02\x6a\x80\x02\x88\x70\xf0\xa9\xc5\x79\xf8\x65\xcd\x0d\x72\x1d\x95\x83\x8f\xd2\xe8\x2b\x29\xbb\xe0\x8f\xc0\x52\x5a\xef\x5c\xa5\x7e\x0a\x72\x40\xaa\x6d\xba\xf6\xb6\xe4\x08\xfb\x14\x19\x26\xea\x19\xc0\x01\x64\xb0\xe7\xf0\x01\x2a\x20\x07\x2c\x30\x17\x02\x1d\x46\x19\x05\x33\xe7\x82\x94\xa5\xce\x90\x9d\x55\x40\x49\x92\x72\xe9\xfb\x0e\xce\x8b\x83\xf5\xea\xe1\x8d\xba\xb6\x6c\x83\xf0\x19\x97\x2c\x63\x7e\x45\x3e\x7e\x16\x5a\x19\x5c\x1c\x20\x06\x70\x01\x23\xa0\x03\xd4\x80\x12\xf6\x89\x04\x01\x03\xc0\x45\xbb\x24\xcb\x61\x3f\x95\xe2\xd3\x99\xb0\x29\x0e\x60\x4f\xbc\x2f\x53\xee\xb0\xfa\xb0\xb7\x7b\x32\x71\xd9\x66\x52\xa4\x1f\x37\xee\x1d\x62\xa9\xa7\x51\x20\x16\xc8\xca\x43\x4a\x8c\xfc\x03\x30\x02\x5c\x80\x00\x08\x01\x29\x0c\xbd\xf9\x01\x1b\x60\x43\x59\x83\x98\xb0\xd3\x4a\xb8\x68\xbf\xb5\xb9\xf1\x7f\x97\x44\x5b\xb2\xd5\xb6\x74\xc7\xf7\xf2\xfd\xc2\xab\x9e\xca\xca\xbc\x34\x93\x60\x67\x47\x4b\x83\x38\x39\x57\x5e\x3d\xea\xdf\xd8\x75\x80\x18\xa6\x80\xa0\x03\x56\x18\xf6\x92\x03\x42\x80\x83\x9c\x4e\x5a\xcd\x46\x26\x81\xaa\x65\x6e\x0b\xef\x9f\x9c\xa8\x5b\xfc\xd0\xde\xfc\xdd\xea\xac\x78\x1d\x61\x98\xb6\x31\x22\x4f\x22\xfa\xab\x27\x93\x79\xb0\x7a\xa8\x68\x04\x4b\x04\x89\x26\x52\x20\xc0\x82\xf9\x58\x59\x00\x2d\x8c\x89\x30\x01\x26\x24\x21\xe2\x16\x56\x13\x09\x0d\x6d\x2c\xab\x5b\xbf\xbc\x84\xea\xe2\xc2\xb6\x8a\x3f\xbf\xdf\x5b\xed\x7e\x9b\xd6\xe8\x84\x94\xfe\x4c\x91\x08\x4c\x70\xc0\x35\xc0\x96\xe3\xe6\xb5\xa3\x3e\xc7\x86\x07\x10\xe0\x08\x44\x01\x0b\xac\xdb\x8c\x0c\x48\x01\x46\x84\x7a\xa2\x2e\x16\x4e\xb1\x0b\xcd\x08\x1b\x64\x3f\xe7\x84\xdb\x52\xf8\xb6\x41\x28\xf4\x53\xc0\x2b\xc9\x65\x95\x81\x27\x75\x33\xd9\x77\x51\x8a\x1e\x1d\xe6\x4e\xea\x2e\xa2\xef\x59\x89\x49\xb4\x11\x9b\x00\x12\x80\x00\x09\x80\x0a\x9b\x69\x61\x00\x31\xb8\x6b\x7c\x03\x3a\x1c\x89\x0b\xa5\xf7\x26\xc2\x81\x36\x91\x28\xd9\x2f\x6b\x44\xa0\xd0\x1f\xa8\x17\xfb\xdb\xbc\x13\x07\xed\x0c\xa5\x81\xc9\xaf\x82\x24\x1d\x32\x0c\x5c\xe4\xbb\xf8\xc6\x68\x3d\xb1\x7d\x00\x29\x60\x07\x84\x80\x0e\x48\x02\x12\x20\x0c\xa8\x80\x0e\x0e\x31\xcd\x3d\x5f\x95\x62\xba\x89\x98\x1b\x42\xc4\xd3\xec\xa6\xba\x20\x98\x76\x80\x77\xb0\xbb\x38\xdb\xef\x5f\x7b\x95\x53\x14\xfd\xc2\x1b\x58\xae\x6b\x66\x48\x54\xb0\xf3\x90\x7e\x40\x2a\x00\x94\x80\x16\xbc\x47\x20\x43\xcc\x44\x6e\x41\x65\x44\x2f\x22\x41\x62\xe9\x13\x3b\xd4\x14\xb5\x9a\xf3\xf5\x48\xc0\x2c\xda\x6d\x7d\x0a\xc3\xbb\x77\x67\xe7\x9b\x9f\x26\x4c\xdb\x23\xca\xea\x53\x95\x43\x84\x9d\x67\x4d\xe8\x95\x67\x05\x77\x18\xfa\xf1\x78\x51\x63\x31\x12\xb1\x44\x70\x1a\xf0\xde\x13\xda\x10\x7d\x25\xd5\xa7\x6b\xe0\x97\x50\x48\x37\xb2\x73\x4e\x0d\x3d\xcf\x30\xac\x7a\xdf\x03\xf3\x4f\xfe\xe9\xf9\xf0\x78\x90\xbd\x78\x30\x30\xd5\xc0\x91\x5f\x1e\xd7\xeb\x2b\x61\x0b\xd5\xe3\x97\xa5\xe5\x51\xa1\x3c\x25\x6a\x27\xad\x20\xd3\xa1\x98\xa6\xc6\xa4\xed\x62\x20\x62\xca\xe3\xb2\x97\xca\xd5\x76\xb0\x4e\xf2\xe5\x8c\x67\x2a\x34\x6a\x6e\x1d\xfd\x6b\x33\xdb\xd7\x84\xf3\xf1\xad\x87\x29\xca\x2e\xcf\xca\xe2\x4c\xbc\x88\x37\x1e\x55\x16\x27\x5a\x38\x92\xb4\xec\x03\x74\xb5\x8c\xdc\x4c\xcf\x59\xdd\x39\xd2\xb9\x7e\xf1\x2e\x0b\xd4\x8a\xdd\xab\x41\x9e\x70\xba\xa1\x87\x47\x65\x12\x57\xbd\xe9\xbe\x9b\xa3\xfe\x0b\xb5\x0c\x3f\x2a\x1c\xea\xae\xd4\x0c\xd7\xb6\x38\x94\x3c\x4f\x25\x0c\x19\x70\xf5\x7d\xe2\xaf\x1e\x26\x86\xc4\x67\x2e\xa8\x20\x82\x29\x4e\x2d\x95\x25\x3b\xa1\x28\xa9\xd2\xaf\x51\x66\x44\xec\x50\x11\xb0\x92\x78\x50\xac\xdd\x8a\x39\x3a\xb3\xf6\xf7\xdd\xfb\xfe\xf2\xd2\x73\x77\x61\xae\xa6\x2f\xb1\xfe\x57\x41\x4c\xe2\x42\x10\x9e\xb3\xa6\xc9\xa3\xba\x92\x12\x95\xca\x77\xf5\x63\x6d\x04\xbd\x26\xa3\x90\x27\x10\x8b\x13\xdb\xdf\xce\x3e\x3e\xcf\x63\x24\x72\x0a\x6b\x6b\xfa\x08\xe6\x17\x9f\xff\x6b\x47\xff\xed\xbb\x13\x8a\x4d\xcc\xa9\xe5\xa7\xdb\xb5\x54\x79\x18\xf1\x8d\x41\x8c\xae\xef\x2c\x9d\x9e\x28\x99\xbf\xb5\xba\xb7\xa3\x76\x7c\xea\xfa\xd1\x73\xc2\xcf\x26\x78\x39\xb2\x21\xe1\x36\x33\xa1\xfc\xae\xa3\x6c\x22\x79\x63\xe3\x34\xe2\x9f\x13\x7e\xf5\x7d\x60\x3e\x2c\x7f\x16\x3c\xce\xd8\xf9\xa9\x26\x3c\xbf\x28\xc5\x3f\xe2\xc6\x47\xcf\xd3\xc1\xfb\xce\x9f\x28\x48\x20\xf4\x5b\x14\x77\xdc\x50\xb2\x76\xc6\xc7\xbc\x37\xe5\x62\xf5\x3f\x3a\x91\x86\xc7\x97\xa3\x5e\x3a\x7c\x18\xfd\x37\x05\xf8\x4e\xf6\x36\xfb\x45\xe5\xca\xdb\x89\xe4\xee\x8f\x0d\x5f\xcb\x82\xb3\x95\x12\x66\x62\x47\x13\x08\x93\x05\xd2\x0c\xb2\x20\x79\x1a\xc5\x7a\x15\xce\xb5\x17\x2d\xfb\xdd\xb9\xc3\x7f\x66\xef\xd7\x50\xf7\xeb\x2f\xbf\xdd\x4b\xfc\xf3\xfc\xfd\xde\xc7\x9e\x73\xf7\x97\xad\xdb\x8b\xab\xcb\x73\xdf\x27\x5e\x0e\x6b\xf6\x91\x74\x59\xb5\xd1\x36\xa5\xd7\xff\xa8\xc9\xae\xe6\xae\x78\xd7\x8c\xdc\xaf\x37\xbd\xbf\x06\xff\xe2\xe9\x85\xc5\x27\x9b\xc7\xff\x36\x9b\x2a\xde\xfd\xb8\x1c\x79\x39\xb4\xf9\x67\x89\x7c\x72\x65\x48\xb9\x7b\xac\x8d\xa8\xc1\xa4\xea\x77\xe9\x7d\x11\x5b\xee\x71\xd6\xf3\x4c\xe1\x34\x9e\x14\xcb\xc2\xd5\xba\xf3\xa7\x74\x63\x90\xc5\xfd\x9d\xe6\x13\x99\xeb\xd3\x87\x7f\x9a\xdd\xd2\x6e\x03\x4f\xe3\x77\x6b\x97\xb5\x27\x5e\xf7\x3f\x6d\xff\xd5\xa0\x51\xf1\xbd\x28\x3a\x27\x35\x6d\x2d\x31\x3f\x76\x21\x52\x3f\xec\x55\xa8\x45\x50\x6b\x50\x49\x82\x67\xae\x49\x95\x42\xeb\xdb\x41\xba\x39\xac\xcd\xbc\x23\xbb\x6b\xac\x87\xbf\x76\xcc\xdd\x11\x1d\xff\xd8\xac\x9e\x5d\x1d\xbc\x69\x87\xd6\x49\x94\xfa\xe6\x92\xa4\xa6\xc4\x75\x44\x94\x04\x0d\xfb\x8a\x7a\x3a\x7b\x1a\xb8\x89\x39\x39\x3b\x31\x3a\x0a\xfa\x43\x62\xd2\x32\xa9\x4b\xe1\x1a\x9f\xf7\xee\x4d\xd7\x6d\xbc\x3b\x3a\xbc\xfe\xf8\x28\x01\x85\xde\x53\x9f\xae\x6f\x65\x4f\x7f\xea\xcd\x6c\x4c\x2b\x63\xcf\xa1\x4e\xfa\x13\x15\x15\x14\xe3\xad\xe4\x92\x67\xf7\x68\x95\x6d\xd1\x68\x8e\x63\x32\x6f\x2c\xa3\xff\x68\x40\x6a\x27\xe6\x2d\x18\x41\x95\x32\x54\x44\x50\xbf\xda\xf3\x38\x7d\xbf\x45\x71\x92\xfc\x29\xf9\x8f\xed\x3b\x96\x7d\xe6\x99\x82\x9e\x88\x3a\xa3\x02\x9f\x94\xfd\x28\xf1\x80\x62\xf7\x59\x7b\x3f\xf3\xe7\x46\x16\x3a\x7a\x9a\x0d\xea\xc8\xaa\x6e\xca\x5a\x8a\x0d\x8a\x42\x0a\x9a\x7a\x28\xd6\x54\x1e\x5c\xa1\x4a\xc9\xa0\xd0\xac\x81\xa4\x4f\x7f\xf6\xed\xce\xe2\x85\xe2\xdd\xde\x51\xf3\x32\x7d\xdf\xc7\xba\xc7\xbc\xbb\x04\xca\xe0\x16\x0f\x27\x3b\xa7\x27\x92\xba\x35\xaa\x3b\x72\x43\x32\xec\x12\x44\x62\x6e\xa2\xdb\xc2\x42\x42\x1a\xfc\x7d\x02\x0c\x72\x18\xda\xc5\x16\x78\xae\x3f\x42\x2c\x92\x95\x8b\xcc\x9a\x94\x07\xe1\x17\x6f\x5f\xa8\x5f\x05\x6c\xea\x8f\x7b\x34\x85\xe7\xb3\xc5\xc5\x04\x60\x3b\x7e\x36\xeb\xd5\x35\x57\xbe\x94\x06\x42\x5f\x79\x9f\x71\x55\xb1\xbf\x66\xab\x65\x29\x63\x6a\x67\x2c\x66\x90\xa4\x77\xe3\x7d\x26\xfd\x4c\xf3\x93\x79\x9e\x5b\x6c\x68\x6d\x6a\x6d\xe9\x43\x5b\xfe\x58\xdf\x1a\xe3\x29\xf6\x82\x7d\xd7\x54\x49\x5e\xc2\x90\xbf\x98\x03\xa1\x91\x96\x1a\xb7\xb4\xab\xe0\x22\x47\x13\x13\x13\x9d\x3c\x55\x3e\x79\x01\x99\x1b\x69\x2f\x31\x05\x61\x25\xc1\x35\xc1\x0e\xed\x3d\xcf\x84\x74\x93\xd6\x85\x25\xab\xc7\x8b\xc8\xa5\x2c\xbd\xea\xe9\x1e\xf6\xd9\xfc\x03\xa5\xb1\xa5\x7a\x8c\x6c\xcf\x08\x88\x2b\x9f\x09\x50\xc6\x15\xf9\xcd\xd9\x43\xbf\x44\x4e\x4d\xec\x8f\xbf\x8a\x3d\x87\xf9\x06\x1d\x17\x75\x0c\x39\x01\x19\x01\xf1\x12\x71\x80\xc0\x90\xbe\x9b\x7f\x51\x5e\x58\xcf\xd3\x3e\xc6\xff\x20\x81\xb6\xc8\xa6\x19\x8c\xa4\xae\x6d\xf4\x21\x55\x4d\xa4\x25\x05\x39\xdb\x89\x68\xc7\x4a\x68\xb3\xf9\x53\x40\xf0\xf1\x30\x09\x50\x52\x11\x0c\x00\x37\x10\x00\x78\xb0\xfb\x33\x1b\xe0\x03\x1a\xd8\x7b\x54\xa3\x5c\x26\x92\xde\x5a\x32\x96\xb6\x5e\x9f\x63\x2a\x72\xbd\x6a\x9f\xf7\x4d\x2f\x7c\xe9\x09\xad\x84\x4b\x51\xf5\xdf\xb6\x36\x57\x7f\x2f\x1c\x46\x4f\x81\x83\x8e\xe0\x0b\xc3\x49\x1c\xc0\x0b\x44\x01\x35\x50\x80\x79\x39\xd8\x00\x3d\x06\x16\xf9\x1e\x3b\xbf\x38\xbb\x7a\x85\x05\xbc\xa7\x4d\xd4\x41\x1e\x56\x9d\xef\x40\xc8\x62\x6b\xaf\x52\x65\x7d\xaa\x66\x20\x82\xcd\x9a\x66\xb3\xa8\x3a\xe3\x1a\x41\x35\xdc\x67\x98\xf2\x41\x07\x28\x00\x3a\xb0\x84\x25\x31\xd0\x01\x0e\xe0\x44\xda\x26\xf2\x60\x42\x14\x4c\x53\x22\x32\x3a\x72\xe1\x0e\x2d\x4e\x0f\xae\x3c\x79\xea\xb5\x12\x38\x40\x51\x4b\x93\xa9\x1a\x9a\xe6\x48\xa4\xfb\x4d\x1a\x91\x23\x8c\x6c\x17\xf5\x25\x6c\xe2\xc0\x0b\x9b\x01\xd1\x03\x26\x98\x07\x81\x1e\x50\x83\x23\xdc\x53\x1a\x71\x9e\x31\x59\x73\xbd\x51\xfb\x17\x81\x8f\x29\xb8\xa5\x85\xed\xeb\xeb\x3f\x47\x9d\x9b\xb1\xf3\x03\xa3\x42\xdc\xf8\x4c\xb2\x15\x6f\xf9\x7b\x68\x5b\x70\xa5\x60\x7a\x01\x26\x20\x01\x14\xb0\x09\x04\x0e\x2c\x95\x42\x03\x98\x30\xb1\xc8\x6b\x39\x04\x24\xf5\xb5\x19\x6c\xe4\xfc\xe2\x13\x22\x8b\x32\x5a\xea\xf7\xaa\x66\x86\x3b\x6b\x4b\x36\x13\x1c\xfd\x50\xad\x38\x35\x8e\xc5\x5a\x59\xa9\x48\x2c\x90\x3e\x00\x24\x40\x0d\x18\x01\x13\xe0\x02\x64\x80\x05\x08\x01\x02\x60\x0a\xc8\x50\xa0\xa4\x54\x2c\x10\x31\x2e\xf5\x18\xcb\x3c\x6f\x8f\x58\x8c\x82\xb5\x26\xbe\xd7\xdf\x57\x9e\xf4\x23\x55\xab\xa6\xf3\x07\x97\x38\x72\x18\xb0\xca\xf1\xf2\x30\x53\x15\x62\x79\x02\x32\xd8\xf7\xc0\x01\xcb\xd3\x90\x03\x26\xc0\x0c\x70\x01\x32\xc2\x47\xc2\x1c\x86\x65\x21\x71\x95\x5f\x66\x0f\x1e\x79\x31\xdc\xb9\x93\xf5\x41\x6f\x44\x37\xb9\x47\x7f\x37\x36\xe4\xf1\x46\x97\x79\x24\x99\x65\xa8\x5a\x08\xdd\x33\xfe\x21\xdc\x44\x44\x07\xf2\x30\x06\x86\x0e\x68\x00\x21\x80\x00\x08\xa0\x06\x18\x70\x9b\x78\xbf\xe8\x0f\x05\xf3\x95\x1f\xcc\x06\xdc\xcd\xa2\x10\x73\x53\xeb\x27\x3f\x1a\x3c\x47\x98\x76\xe9\x8c\x29\x6d\x4c\xca\x0b\xb0\xb1\x3d\xd5\x59\x96\x36\xe5\xdc\xa0\xc8\xc5\x98\x04\xc4\x00\x17\x50\xc0\x1a\x3d\x38\x01\x1b\x10\x06\xa4\x40\x1c\x60\xe2\xa9\xd1\xa9\x08\xc8\x2b\xf3\x98\x7c\x77\xb3\x8d\xf2\xc8\x49\xad\x6f\xfe\x52\xf7\xea\x6e\xb9\xb4\x9f\xa2\xd6\x23\x0b\x2e\x7c\xc2\x35\xdd\xe4\x50\x59\x55\xf0\x0d\xc3\x18\xc1\x20\x7c\x19\x10\x04\x2c\x00\x1b\x08\x03\x7a\x40\x03\x88\x60\x9c\x8e\x1d\x17\x9e\xd6\x81\x7f\x53\xe9\xdc\x04\xdb\x6d\x35\x82\x24\xbb\xa6\xae\xe5\xa7\xe2\xc5\xcb\x4d\xdd\x31\xdc\x96\xe2\xc2\xed\x04\x46\xdf\x0e\xeb\x47\xed\x78\x29\x05\x4e\x46\x0a\x67\xf4\x05\xd8\x14\x86\x02\xe0\xc2\x5c\x10\x14\x00\x07\x08\x00\x19\xec\x6d\x9a\x79\xfe\x24\xc5\x5c\x53\x2c\x37\xe3\x88\xba\xac\x91\xba\x5f\xd0\xef\x1f\xe8\x9f\xa7\xcf\x31\x75\x3f\xab\xfc\x91\xfe\x29\x4c\xc5\xa5\xda\xc4\x50\x19\x41\xf0\x9e\x61\x85\x60\x0b\x7c\x06\xd8\x40\x15\xa6\x25\x71\xc3\xba\x4d\x74\x80\x31\x56\x2f\x2d\xa7\x80\x99\x72\x95\x2e\x8b\x3b\x73\x34\x7d\xf2\x45\xc3\x16\x14\xfa\x85\xfe\xf8\xc3\xb3\x9d\x11\x86\x66\x85\x82\xb1\x78\x23\x5f\x75\x1b\x67\x1d\x02\x69\x04\x2e\x01\x8a\x74\x74\x59\x40\x09\x18\x00\x04\xe8\x00\x4c\x58\xa6\x86\x09\x90\xa0\x4e\x41\x5e\xb3\xdf\x4a\xa4\x6a\xed\xda\x46\xfb\x0b\x27\xe9\x94\x92\x40\xa1\xbf\xb6\xde\x5e\xee\x0e\x4e\x3f\xef\xc6\xa9\x42\x4a\x9f\x0e\xc7\x70\xd5\x30\x5d\x51\x59\x14\xbe\x61\x8a\x23\x8c\x82\x03\x00\x03\x60\x03\x69\xa0\x0a\xe7\x80\x00\x41\x2c\x43\xce\xc0\x62\xa0\x7a\xcd\x4b\x21\x9f\x69\x24\xe2\x7c\x11\x36\x91\x69\x56\x03\xdb\xfe\x70\x27\xfd\x7a\x76\xb5\x67\xd8\xbb\xa9\xbc\x30\x24\x7e\xdc\x5f\xcc\x4e\x5b\x5f\x4c\x4e\x93\x17\x8b\x6a\x1e\x63\x09\x89\x07\x15\x0d\xdd\x15\xb3\x0c\x7b\x1a\xd7\x05\x3f\x92\x10\x0d\x42\xc7\xea\x28\xd6\xaf\x91\x67\x39\xef\x23\x1a\x37\x55\x68\xdc\x82\xf9\xff\x4e\xf8\x51\xfe\x16\x7f\x4f\x62\x16\xd2\xed\x5d\x55\x96\xe9\x15\x89\xe5\xb1\x62\x91\xa0\xb1\x2e\xee\xc9\x76\x47\x42\x89\x8f\x46\xa4\x4a\xa2\x02\x89\x22\x5f\xa6\x3c\xa5\xa9\xa7\xb7\x65\xc2\x16\xf8\xa9\xe8\x63\x54\xe6\xac\x1b\x6a\x9e\x5e\x55\xf9\xb5\xfb\xaf\x5d\xe0\xb7\x75\xaf\x7f\x3e\x73\x1e\xd5\x69\xb9\x28\xfe\x92\xb4\x15\x4c\xef\xbc\x6b\x62\xaa\x6c\x2e\x64\x45\x1f\x4b\xf5\x40\x1b\xca\xa0\xc2\xd4\xc9\x4a\xcf\x2e\xcc\x85\xc1\xf3\x55\x00\x5e\xd6\x53\x17\xdb\x26\xd8\xb7\x30\x5e\xb0\x90\xb0\x99\x65\xc4\xeb\x2f\xd4\xa5\x7c\x9b\xb8\x5f\x32\x8f\xd0\xbb\x59\x77\x9d\x47\x13\x4f\xea\xaf\x64\x27\xa6\x5f\x22\x6f\xc8\x33\xc2\x51\xcd\x2d\xcb\x1b\xc2\xef\x23\x34\x2e\x3a\x23\xc1\x28\x15\x22\xc7\xa0\x99\x64\x81\xe0\xfe\x35\xc2\x27\xb3\xbe\x9a\xae\xfb\xcd\xec\xdf\x19\x8a\x3b\xd1\x93\xe8\x8d\xee\x89\x1f\x1d\x5f\x2b\xca\x32\x37\xa3\xd2\xbc\xa5\xad\xa0\x3a\xda\x52\xd7\x62\xa4\xe2\xa3\x52\x8c\x32\x6e\x0a\xb2\x4a\x5e\xaa\x67\x1a\xf7\x3a\xe7\x4f\x38\x9d\x3f\x05\x07\x27\xaf\x97\x94\xb4\x36\x8e\x91\xac\xad\xfc\xef\x84\x07\xfa\x2b\xa9\x97\x88\xcb\xe1\xc3\x25\xad\x8c\x65\x94\x69\x75\xe1\xf5\x1e\xd7\x96\xd1\xda\x4c\x2a\x54\x6a\xd7\x9a\xdf\x74\x36\x0c\x24\x8c\xc7\xcc\x0c\x2d\x2f\x6c\x47\x9d\xb8\xfc\xbf\xc7\xb3\xe6\xc3\xd5\x27\xf7\x67\x2c\xcc\xbd\x20\xfe\x07\x7c\xbf\x9c\x5c\xd0\xef\x5a\xcd\x3d\x0e\xa0\x37\xae\x97\x70\xa6\xdc\x85\xe1\x79\x60\x5b\x11\x98\xed\x5b\xfa\xda\x38\xdb\xfb\x38\x63\xb9\x1d\x7a\xed\xfb\xf5\x05\x6b\x47\x44\xc5\x31\x66\x9b\x54\xb5\x75\x55\x4e\x59\x6f\x3d\x39\xfb\x77\xa7\xe7\xd5\xed\xfe\xc9\x8b\x2d\xad\x99\xe0\xde\xac\xc6\x90\xa2\xd9\x94\xb1\x88\x0b\x5f\x49\xaf\x4e\x5f\xe1\x00\xa5\x60\xc5\xb0\x0f\x51\xbb\xf1\x9a\xc9\xf9\x19\xa5\xb9\x6b\x25\xb1\x35\xb9\xed\xd2\xa3\x76\xab\xb1\xaf\xb8\xaf\xff\xb3\xab\xf6\x81\xe3\x63\xee\xeb\xe3\xf5\xa9\xa9\xb5\xde\x9f\x4d\x51\xe5\x58\xd9\xf7\x09\x26\x71\x9b\x89\xac\x29\x4a\xe9\x96\xd9\x68\xf9\x74\xc5\x63\x15\xcc\xb5\x2d\x4d\xc7\x9d\xcb\x03\x75\x93\x0f\x4b\x9f\x9e\x9b\xbc\xd5\xfe\xf7\x9e\xde\xef\xec\xd7\x78\xe7\x1b\x87\x24\x3b\x92\xcf\x54\xe6\x63\x27\x7d\x86\x1f\xfa\x47\xbb\x87\x7a\xc6\x3b\xf2\xdb\xef\xdb\x24\x9b\x65\x1a\x05\x5b\xee\x06\xbe\xce\x22\xaf\x7f\x3c\x78\x7b\x99\x73\x67\xf3\xf8\xf2\x3f\x0c\xa4\xe4\x6e\xe9\x0d\xc9\x21\xd9\x96\xeb\x52\xf6\x94\xda\xd0\x4e\x8f\x7e\x5b\x75\x23\x4e\xf5\xb3\x0a\x87\x4a\x9b\x8a\xc8\x32\xe4\x22\xfb\x02\xdf\x5c\xe5\x62\xcf\xfa\x87\x6e\xf7\x71\xb7\xa5\x9b\xdd\xd1\x53\xac\x1b\xac\x87\x7f\xbc\x30\xe5\xb7\x5b\x27\xdf\xf7\x90\x97\xdd\x26\x35\x06\xd8\x3b\x12\x1b\x32\x2a\xab\x8b\xc6\x72\x8d\x32\x25\xd3\x2d\xd2\xdc\xd2\xce\x93\x45\x12\xed\x13\xe1\x63\x34\x93\xf4\xf2\x2a\xab\xf7\xdb\x69\x86\xd8\xe7\x71\xb6\x74\x8e\x29\xaf\x91\x1e\xfe\x72\xf4\xde\xce\x1f\x3b\x6d\x3e\xce\xb6\x0c\x7e\xee\xb0\xae\x9b\x2f\x43\xcd\x9d\x4e\x53\x89\x8f\x8d\x8a\x8e\xa8\x0e\x8d\x0a\x16\x09\x9a\x0a\x8a\x0a\xd4\xf6\x67\xf0\x65\x0b\x0c\x8b\x93\xcd\x9a\x2f\x4b\x68\xda\xed\x3b\x9d\x51\xdd\x24\x3a\x0a\xbd\x96\xfa\x9d\x01\x85\x7e\x01\x67\x0c\x5b\x7d\x53\x21\x3d\x05\x4d\xa0\xac\x3d\xa7\x37\xb9\x2e\x5a\x22\xd8\xd4\xc7\xc5\x23\xd1\x75\xd8\xe5\xca\x05\xd5\xf1\xd2\x51\xd6\x01\xc5\x76\xdb\x7a\xcb\xbe\xde\xe7\x67\xa4\x45\xea\x7d\x31\x49\x83\x54\x2f\xed\x74\xf2\xa6\xe9\x71\xd6\x2d\xef\x6f\xd1\x77\xec\x3b\x1c\x53\x7f\xba\x05\x6b\x43\x0b\xee\x52\xed\xa2\xfa\x03\x75\x3c\x4a\x1d\x16\xac\x18\xcc\xd3\x9f\x6c\x99\xd0\x1b\xfd\x31\xbc\x30\xf0\xd7\x0b\xd0\xe5\xd6\x2e\x36\x08\xb5\x61\xf3\x18\x08\x03\xc9\xcb\x85\x4f\xea\x33\x7b\x65\x67\x12\xb6\x8b\xce\xbc\xee\x16\x0f\xe7\x16\x4e\x7b\x82\x6b\x6e\x73\xdd\x13\x6a\x83\x53\x3d\x49\xed\x85\xcd\xcc\xf5\xd9\xb4\x33\xd5\xf5\xd5\x5c\x95\x03\x95\xaa\x14\x59\xe4\x0f\x65\x33\xa5\x2b\x64\xae\x14\xc8\x75\xea\x2d\x51\xdd\x62\x43\x42\x92\xaa\x0a\xbd\x1a\xda\xfb\x5f\x2c\xd0\xef\x57\xbf\xc5\xdb\x6c\x1b\xa1\x6a\x70\xc8\xa3\x8e\x5d\xf4\x97\x77\xca\x32\x17\xd6\x53\x53\x8d\x57\x40\x94\x8a\x16\x6f\x12\x51\x11\x66\x13\x62\x16\xe0\xe5\x73\xe4\x45\xe2\xa1\xe5\x61\xe1\x4f\x91\x89\xd5\x0a\x32\xf7\x71\x1d\x0b\x09\x48\x81\x2b\xa1\x6b\xf1\x1d\x91\x5a\x1d\x79\xbd\x3d\x3f\xdf\xbe\x50\x6c\x90\x48\xef\xdf\x6f\xef\x6d\x44\xab\x8e\x21\x13\x25\xf2\x91\x7f\x93\xdb\x91\x03\x99\x35\x8d\xc5\x8c\x91\x90\xc1\x88\x6e\x99\x96\x87\xe6\x90\x1a\x9f\x3e\x92\x97\x4d\xda\x45\xf3\xd2\xbc\xca\x9d\x3d\xdc\x26\x7d\xa6\x92\xb1\x8b\x7c\xea\xf7\x36\x64\xa4\xab\xde\x2e\x7b\x3b\x22\xdd\x75\xd8\xa4\x5e\xf9\xa5\x68\x2c\x37\x21\x8b\x2b\xfd\x3e\x75\x2c\x45\x26\x69\x02\x09\x3b\x61\x1d\x21\x0f\x1e\x37\x6e\x0e\x4e\x27\xce\x22\x21\x05\x9d\x2c\x2f\x9e\x0c\x9a\x76\x8e\x55\x97\xf7\x78\x4c\x57\x5e\x55\x7d\xc3\xc0\xb3\xa5\xca\x3e\xc3\x6a\xd2\xb4\xdb\xa0\x16\xbb\x25\x1d\x21\x49\x71\xf6\x79\xea\x49\x88\x1f\xe1\x15\xae\x31\x96\x36\xba\x06\x0a\x3e\x52\x07\xc2\x4b\xf8\x20\x38\x49\x30\x03\x34\x90\x04\x88\xe5\x99\xa8\x05\x1e\x15\x69\x8c\xac\x1c\x55\x83\x86\x53\x56\xcb\x94\x3a\x24\x17\xc5\x7b\x56\x2a\x29\x53\x7a\x02\x34\xad\xef\x34\x1a\x44\xc2\x18\xbb\x88\xaa\x30\xb4\x90\x45\xe0\x5e\x02\x2d\xc0\x06\x28\x00\x3f\x2c\x43\x41\x07\x20\xc0\x0e\xde\x08\x1f\x9e\x16\x8d\x77\x46\xe6\xb5\x6e\xb0\x6d\xac\x5f\x5f\xc2\x49\x91\x64\xb3\xe7\xe2\x97\x5e\xfd\xca\x3f\xa9\xfd\x81\xe1\xb6\x56\x5a\xbe\xe2\x6d\xac\xbb\x24\xbb\xc8\xba\xb0\xee\x4b\x7e\xc0\x08\xbb\xbb\xa3\x01\x05\x00\x81\x79\x11\xbc\xb0\x1a\xa8\xec\x38\x1d\xa4\xa4\xb5\x86\xac\x9f\xf8\xa1\x24\x74\x14\xc3\xb5\x8a\xaf\x04\x0f\xb8\xd5\x86\x64\x76\x86\x51\x3a\x2d\x18\x72\xca\x9d\xf1\xdc\x51\xdd\x60\x25\x03\x14\x80\x0f\x98\x01\x29\xa0\x05\xf8\x40\x16\x60\x03\x22\x40\x0c\xe8\xc1\x13\x34\x2e\xd2\x4a\x96\x48\x91\x15\x35\x33\x73\x1d\x4f\x85\xa8\xd6\x5c\xf7\xba\x5f\x1b\x52\xa3\x7d\xcd\x76\x05\xb6\x31\x81\x9e\x22\xe6\x64\xaa\x33\xc2\xb5\x4c\xd2\x84\x35\x08\x03\xb0\x16\x4e\x22\xa0\x0e\xf0\x81\x04\xec\xce\xc9\x04\xd4\x80\x06\x62\x09\x61\x17\xfd\x80\xa0\x9a\xd2\x80\x89\xa1\x1b\x7f\x04\x7d\xe6\x43\x4d\xd3\xde\xd9\x2c\xc2\x53\x9d\xb2\x1f\xc9\x6e\x01\xc6\xb6\xbf\x74\x66\xa4\xd5\x39\x05\xc8\xd3\xd0\x7b\x01\x03\x20\x81\x39\x0e\xc8\x00\x29\x2c\x8f\x42\x06\xb4\x80\x31\x08\xc4\x55\xa3\x49\xe2\xf9\xa1\x80\x65\xe8\xe5\xec\x18\x2a\x95\x3e\x58\xc9\x72\x24\xb2\x7a\x35\xf0\xbd\xf6\x6b\x96\x53\xb8\xb9\x4b\x81\x09\xa7\xe2\x92\x00\x84\xee\x23\xde\x23\x9c\x2d\xc0\x85\x69\x07\xbc\x00\x17\x10\x03\x49\x40\x03\xc4\x00\x16\x30\xc1\x42\xa5\x2c\xe3\x4a\x90\x85\xd7\x1d\x72\x90\x0e\x5a\x4a\xfe\x55\x76\xfc\xd6\x70\xeb\x60\xbc\xb9\xe5\x55\xe1\x4c\xbc\x82\xaf\xa8\x55\x9e\xa6\x93\xf8\x01\xdb\x10\x64\x10\x75\x14\x90\x01\x1e\x00\x01\xac\x80\x12\x50\x00\x4a\x20\x04\xa8\x00\x0b\x20\x44\xaf\x22\x97\xe4\x94\x90\x7e\xad\x8b\x61\x8f\x14\xf8\x3a\xf9\xb0\x6c\xe5\xba\xee\x80\x6c\xae\xb9\x5b\xb0\x52\x2f\xad\x31\x24\xc1\x71\xdb\x30\x5e\xc1\x91\x6f\x85\x36\x11\xb7\x15\x60\x02\x32\xc0\x06\x9b\x4b\xd1\xc3\x7a\xc1\x74\x00\x11\x20\x41\xfd\x4a\x66\xc6\x21\x25\x35\xac\xe3\x61\xbb\x18\x40\x94\xf4\xbc\xcc\xfb\x6b\xdc\xb1\xe0\xea\xd5\x50\x4a\x43\x5d\xee\x69\xf4\x8d\x67\xb7\x85\xaa\xba\xb3\x98\x07\xab\x23\xa9\x3f\x8a\x17\x20\x03\x22\x80\x05\x90\x02\x7a\x98\x23\x44\x08\xf0\x02\x0e\x14\x7b\x52\x36\xb6\x3a\x49\x35\xed\x60\xdb\x5f\x81\x5c\x49\x0e\xa5\xde\xbf\xaa\xdf\x4c\xed\x34\x4f\xa9\xb4\x4f\x96\x6a\x27\x07\x07\x89\x3b\xe8\x18\xe8\xc8\x3d\xe7\x73\xa7\xd5\xc4\x39\x07\x02\x80\x17\x36\x01\x12\x02\xc6\x80\x1c\xf0\x02\x3c\xa0\x82\xcc\x40\xfa\x82\x3d\x53\x4a\x4f\x27\xc6\xf6\x4d\xa0\x55\xf2\x59\x59\x2f\x14\x7a\xe3\x75\x38\xb4\xa4\xd4\x9f\x5e\x1b\x9c\x13\x1f\x85\xe4\xa9\x6c\xfe\x59\xfd\x58\xec\x91\xf5\x84\x34\x14\xd9\x1b\xf0\x02\x4a\x00\x01\x32\xe0\x09\xa0\x87\xf5\xed\x0b\xc3\xbf\x26\xd0\x63\x50\x13\xcc\x52\xc9\x7d\x62\xe9\xbe\x1a\x7d\x9b\xbb\x07\x85\xde\x77\x9e\x7b\x6e\x8e\x8e\xef\xb4\x09\x94\x9c\x26\xd3\x06\xd6\x39\x32\x18\x3a\x2a\x14\xf2\x6b\xd1\xb9\xe2\x92\x03\x22\xa0\x06\xd8\x40\x29\xac\x9f\x85\x12\xce\x0a\xfe\x0a\x61\x9d\x08\x9d\xd9\x56\xf4\x85\x46\xac\x55\xac\x2f\x5f\x02\x5b\xd1\x0c\x14\xfa\x27\xee\x6a\xf4\x05\xdf\xc2\x74\x9f\x64\x6d\x41\x8e\x47\xb4\xb1\x17\xb1\xe5\x3b\x2d\x33\xc9\x3c\xf6\x0b\x32\x12\x14\x7c\xb8\x71\x44\x79\xe4\x07\x34\x36\x0c\x08\xe6\x17\xec\x52\x5c\x45\xfc\x3e\x6a\x0f\x9e\x7d\xb9\x49\x83\x47\xa7\xc8\x50\xa6\xf4\xed\xaa\x72\x18\xde\x45\x9f\x56\x6f\xac\x8e\x97\xb6\x73\x94\xda\xa7\x5c\x04\x1f\x3b\xdb\x1b\xf7\x2b\x97\x0a\xd5\x32\x3c\xe2\x07\x62\x8b\xe3\x79\x13\x62\x10\xcd\x91\x22\x91\x15\x51\xd4\x51\x95\xd3\x14\xb1\x0b\x8b\xe7\x6a\x6c\x5a\x86\x79\xe7\xc6\x9e\x17\x3c\x69\x82\x4d\x1f\x7e\x9b\x5e\xbd\x7b\xf1\x6d\x11\xad\xbf\xa9\x7e\x2c\xef\x2a\x6e\xc0\x77\xc1\x0e\x5d\xcf\x4e\xb6\x80\x27\x90\x72\x9e\xfc\x8e\xca\x8c\xc6\x9f\x6e\x94\xd1\x98\x39\x98\x75\x83\x73\x90\xbb\x4f\x78\x4a\x99\xc9\xb8\xda\x79\x38\xd4\x34\x5d\xb5\xd2\xf3\xe9\xf0\x5f\xa8\xfb\xfb\x8c\x7b\xd3\x6d\x92\xb3\x73\xbf\x12\x35\x53\x28\xa2\xc5\x13\x62\xfe\x5e\xf3\x4c\xe2\x19\x9b\x03\xcb\x33\xf6\x42\x4e\x75\x1e\x1e\xbe\x2c\x41\x67\x11\x69\x31\x5b\xa9\x52\x85\x45\x7d\x55\x3b\x3a\xbf\xbe\xf8\xe1\x42\xa5\x66\xe2\x11\xfa\xff\x3b\xe1\xd1\xf5\xc3\xc0\x21\xf3\xb2\xe9\x90\x53\x73\x52\x31\x6f\x72\x7e\x08\x9f\x8b\x8e\x49\x99\x2a\xb9\x88\xb4\xe0\xb9\x28\xba\x38\xbc\xe4\xb0\x74\xad\x3c\xae\x62\x9a\xca\xa0\x66\xba\x6e\x8d\xd5\x5b\x2f\x48\x14\x61\x56\x4b\xf5\x42\x8f\xf8\xec\xdf\xdb\x55\xbf\xc5\x5d\x52\xef\x14\xce\x06\xf7\x91\xd5\x95\xe5\x5f\xc7\x8b\x06\x60\x3b\x22\x1a\x91\x29\x6e\xca\x73\x2b\x61\x29\xbf\x50\xed\xd1\xf4\xd3\xc5\xd3\x37\x36\x26\x34\xfd\x65\x39\xe0\xae\x1e\xe6\x9e\xfa\xae\x0c\xbb\xad\x77\xec\x60\xfd\x5f\xdb\x4d\x6e\x0e\x8e\xde\xaf\xd7\x4c\x5c\x76\xde\x55\x0d\xe6\x60\xc4\xf2\xf9\x63\xd9\x9d\x1b\x8a\xea\xd8\xea\x7b\x1a\xda\x1b\x23\x98\x45\x58\x76\xd9\xc8\xdb\xcf\xba\x8c\x78\xf2\x04\xbf\x4b\xaa\x2c\x5c\x6f\x9c\x18\xc4\x5c\x7c\xfe\xe2\xfc\x9f\x13\x7e\x2a\xbf\x3b\x3e\x08\x5f\xfe\x34\xd2\xd2\xce\x5a\x31\x91\xb5\x1e\xa3\xef\xab\x67\x4f\x6f\xd9\x60\x7d\x6c\x97\xea\xd8\xed\xb2\xe5\xd1\xe3\x23\x16\xc0\x1c\xbc\x10\xa1\x9e\x70\x9e\x8f\x53\x3b\xd6\x23\x3d\x63\xb1\x43\x71\x7e\xf1\x6f\x00\xff\x86\x70\xc9\xb9\x9f\xbc\xf8\x66\xd8\xba\x75\xbd\x42\x3b\x1b\x12\x8b\xeb\x0f\x7c\x5a\xfc\x51\x83\xb0\x43\x11\x23\x32\x62\xfc\x12\xdc\x52\x4c\x33\x2e\x72\x43\x8a\x11\xab\x57\x3b\xdf\x4e\x88\xac\x5d\x1c\xd9\xdd\x3c\xfc\x87\x03\x40\xef\x9c\xcf\x5c\x76\x4b\x16\x56\x87\x71\xda\xb6\x2b\x0d\x72\x68\x12\xa9\x13\x2c\x93\xfa\x53\x67\x33\x06\x73\xf4\x0b\xf4\x4a\x92\x2a\x5e\xd7\xce\x37\x55\x75\xcc\xf4\x35\x8c\x9d\xac\x04\x1c\x8c\xbe\xdf\xfc\xf5\xaf\x5e\x8f\xef\x73\xd7\x7d\x17\x21\x87\x93\xbb\x60\x8d\x64\xc1\x6a\xca\x62\xe2\xe7\xd8\xda\xc8\xd1\xe8\xed\xb0\xc6\xc0\xfb\x41\xde\xbe\x3f\x7d\x25\x5d\x27\x43\x1b\xf3\x3a\x9b\xe5\x87\x11\x6f\xb1\x3f\x7f\xf9\xf3\xf3\x3f\x2f\xae\xf1\x59\xe1\x8d\xfe\xe1\xc2\x36\xfd\xb2\xe1\x34\xf5\xf0\x40\x2f\x75\x47\x53\x1b\x4e\xab\x5e\x8b\x62\xf3\x56\xa3\x74\x23\x53\x7d\x5f\x9d\x5c\x55\x4c\x55\x46\xe3\x6e\x6f\xe2\x24\xd7\x8a\xd3\x3e\xd1\x99\xf2\x6d\xc4\x3f\x79\x9a\x3f\x7d\xb7\xa2\xa7\x25\x7b\x04\x2b\x0c\x53\xf8\x83\xa0\xb3\xa4\x31\xa5\xaa\xab\xbc\xb8\x74\xa5\xf8\x67\xe1\x69\xc1\xeb\x42\xe6\x02\xc4\x5c\xb7\xec\xc7\xac\xa1\x8c\xbe\x42\xe5\x5a\xde\x8e\x95\xe1\x27\xf3\x77\xdb\x97\xc7\x4d\xd7\x9c\x0f\x7f\xe9\x38\xb7\x6a\x27\xa8\x5b\x2d\x73\xd6\x43\x6e\x9d\x42\xf5\x3d\xe5\xa8\xf9\x04\x99\x29\xa9\x95\xa9\xcc\x49\xb8\xf1\x69\xf1\x5e\xf1\x3f\x62\x93\x63\x16\x62\x0a\x23\x71\xc3\x84\xe3\x5f\xe7\x70\x56\x8c\xb6\x60\xf7\x0f\xce\x7c\xdc\x94\x3f\x92\xff\xd8\xf1\xb0\x08\x85\x7e\xc9\x3f\x35\xdc\x38\x98\xb6\xec\x0d\x68\x9a\x28\xb7\xc9\xed\x4a\x99\x88\x19\x09\x87\x0f\x0d\x0a\x9c\x0d\x88\xf0\xb3\xf1\x87\xf8\x96\xfb\x38\x78\x1c\x78\x7e\x70\x0f\x75\xfd\xe4\x6f\x1f\xcd\x92\x9e\x5b\x42\xde\xc8\xd2\xeb\x31\xad\xb1\xf1\xea\xe8\xfd\x0d\xe7\x03\xf3\x25\xf3\xb6\xe8\x74\x67\xf7\xd7\x3a\xb5\x82\x3f\xa9\xc7\xd1\x5b\x41\x5f\x7d\x32\xdd\xa5\x5d\x04\x1c\xe5\x1c\xba\x6c\xf3\xac\x3b\xac\x2b\xac\x5a\x2d\x67\x2c\x57\x2d\x13\xcd\xd3\xed\xac\xbd\x0a\xc3\xf9\x53\xf4\x0b\xc7\xea\x8d\x7b\xa6\xa7\xaf\xb6\xd4\x4f\x29\x6e\x20\x07\x79\x73\x56\xbd\x6c\xb5\xc3\x79\xea\x09\x12\x21\xb5\x5e\xc8\x8e\x01\x36\xdc\x66\x69\x26\xcd\x46\x7e\x06\x1b\x7a\xae\x3a\x18\xda\x5b\xda\x4b\x9a\xdb\x1a\x79\xea\xbc\x1a\x01\x7a\x17\x56\x61\xee\xca\x21\xf3\x49\x8e\x05\x8b\xf5\xf7\x7d\x35\x73\x52\xbb\x1f\x2f\xec\xd6\x5c\x07\xe1\xea\xf8\xf3\x9c\x63\x2d\xfd\xb7\x9d\x57\x2c\x1a\x0c\x4a\x75\x32\x34\x9a\x55\x0e\x15\x63\xe5\xfe\xc8\x1c\xca\x50\xca\xe0\x4b\xbc\x96\x70\x17\xab\x10\xcb\x12\x4d\x96\x4b\xd4\xbe\x37\xbf\x76\x4d\x08\x5e\x4e\x9a\x2f\x32\x6e\xea\x1b\x8a\x58\x76\x3e\xb8\x9f\xd1\x6a\x1b\x2f\xa1\x4a\x42\x0d\x18\x73\xa8\x31\x81\x68\xbc\x52\x1c\x96\xd9\x15\xdf\x14\x29\x16\x64\xe0\xff\xca\xcb\xc0\x9d\xcb\x15\xc0\xf1\x81\xed\x1b\xbb\x07\x6b\x3d\xcb\x77\xbe\x52\x19\x6a\xcd\x14\xb3\x1d\xd7\xc1\x50\x97\x34\xfe\xb2\xc9\xf6\xa7\x13\x16\x1b\x12\x43\x6b\x0d\x54\x39\x8d\x91\xd1\x6e\x2f\x4c\x7f\xab\x66\x4a\x7a\x0a\x2d\xf0\x94\x70\x68\xb1\x10\x32\x26\xd2\x7d\xa4\xc9\xa7\x7e\x42\x89\x4c\xe9\x41\xde\x4f\x06\x85\x70\x40\x24\xe8\x89\x79\xf2\xa5\xae\x35\x4f\x2c\xd6\x3c\x79\x23\x73\xb3\xc9\x6b\x1c\x7a\xb2\x96\x85\xfb\xa0\xd5\x2f\xd2\x73\x82\x5b\xec\x1f\x74\xb7\x64\x38\xf9\x74\x99\xed\x69\xf7\x28\x99\x48\x1f\x89\x6d\x08\x3e\xe0\xb5\xe2\xec\x63\x0f\x61\x86\x60\x2a\x63\x64\xa3\x37\xa2\xef\x11\x34\xd0\x31\xf0\x9a\xc9\xca\xea\x0e\xda\xda\xf9\x85\x25\x98\x16\x95\x35\x8f\x2c\xee\xf7\x06\x56\x1e\xa7\x66\x07\xea\xd9\x72\x68\x23\x4a\xec\x72\x18\x53\xbc\x20\xc8\xc4\xae\x41\xf7\x47\xfe\x84\xc8\x02\x97\x0c\xd8\x80\x12\x30\x05\x4c\x80\x01\x60\x00\x29\x34\x2c\xd2\x68\x16\x7e\x11\x01\xe5\x60\xd3\x0c\xd7\xcd\xf0\xa9\x0c\xc7\x6a\x9c\x25\xd5\xde\x3f\x55\x93\x69\xb9\x41\x51\xf6\x62\xba\x35\x32\x36\x5c\x8c\x14\x42\xe8\x57\x40\x08\x90\x00\x6c\x40\x01\x24\x61\xf3\x0b\x5d\x80\x0b\xf3\x51\x2a\x22\xdd\x13\xa5\x32\x9a\x08\xcc\x2b\x04\x1b\x61\x39\x5d\x05\x3b\xa4\x0a\x97\x3d\x5d\xc5\x19\x24\xa8\x13\xca\x4a\x08\x27\x73\xb5\x36\x19\x54\xea\x16\x24\xa5\x87\xc7\xc7\x00\xef\x00\x3f\x60\x07\x8c\x30\xad\x9c\x08\xb0\x02\x49\x20\x05\x88\x00\x3b\x9c\x0a\x1e\x3c\xcd\x4b\x5e\x22\x39\x31\x7d\x07\x07\xdc\x20\xe7\x94\xba\x0a\xd9\x8d\x9d\x31\x93\x16\xb2\x42\xb5\xf8\x3d\x5f\x6f\x2b\x07\xcd\x66\x09\x66\xb6\x29\x08\x0f\xaa\x00\x6c\x7a\xc3\x0f\x98\x01\x27\x60\x05\x4c\x30\xff\x00\x21\x30\x03\x3a\x98\xfd\x14\x1e\x1c\xd3\x52\x78\x3a\x6a\xb6\x17\x7e\x4b\x89\xda\x45\x52\xfb\xbe\xb3\xd5\xdd\x72\x95\x61\x69\xe7\x21\xd8\x4e\x62\x06\x17\xf2\xd3\xbc\x49\x34\x5c\x38\xff\x0f\xe5\x88\x60\xc9\x4d\x34\x80\x0c\x18\x01\x3d\xf0\x85\xe1\x77\x04\xea\x18\xe9\x22\xab\x97\xd8\xb4\x06\x86\x15\xb2\x77\x4b\x1c\x6e\x41\xe0\xd1\xcc\xb3\xf4\x61\xd7\x46\x92\x3c\xcf\x68\x1c\x8f\x6b\x73\x3f\x35\x5a\x91\x43\xe6\x59\xe2\x05\x64\x6c\x58\x87\xc5\xff\x4d\x1e\xc4\x61\x13\x00\x6a\xc0\x0c\x44\x10\x8f\x88\x46\x99\x52\x85\x5b\x54\x06\xcd\xf5\x3c\xb1\x63\x6c\x72\x4f\xde\x51\xec\xe6\x4f\x3d\xef\xd0\x2d\x8d\x4f\xe6\x0f\x30\xb7\x73\xd4\x2d\x92\xe9\xe4\x56\xa1\xe2\xc6\xea\x07\x14\x80\x06\x50\x01\x22\x40\x04\xeb\x04\x11\x03\xc4\xc0\x06\xf0\xc2\x9f\x11\xfc\x60\xe8\x11\xd6\x53\x71\x37\xf3\xf3\x34\x8f\xf6\xcc\x8d\xb9\xb5\x3b\x2c\x59\x0c\xed\xf3\xac\x35\xcd\x32\x0b\x87\xba\xb1\x99\xee\xa9\x48\x09\xbd\x60\x52\x23\x12\x42\xb4\x84\x25\x61\xb9\x00\x3d\x6c\xfe\x41\x0d\x70\x00\x3f\xe0\x01\xab\xf8\x10\x7a\x0d\xc1\x20\xe5\xad\x27\xc7\xee\x55\xd1\xc8\x79\x35\xf7\xb7\xa7\xd0\xf5\x86\xd1\xa1\xe6\xf7\x85\x5b\xf1\x87\x7e\x42\x36\x35\x3a\x54\xd2\xa6\x5c\x6e\x94\xe9\x98\xe1\x80\x17\x10\xc2\xdc\xcd\xb8\x80\x00\x96\x11\xe6\x03\xda\x20\x00\x8f\x8c\x2e\x92\x7f\x4e\xa9\xfb\x89\xad\x7b\x4b\x94\x78\x2e\xe2\xef\xad\x2b\xa5\xfd\x9a\x39\xac\x6e\xa6\xca\xf8\xf4\xfe\xb0\x66\x97\x63\x93\x31\xe5\x1e\x61\x06\x26\x54\x22\x6c\x04\x02\x60\x04\x24\x00\x05\xe0\x03\x74\x40\x06\xe8\x01\x66\x80\x0d\x7c\xb0\xe6\x29\x6f\xb9\x1e\x64\x99\xf5\x59\x9c\xf0\x83\x07\xd3\x2a\xa1\xd0\x3b\xbd\xa3\x86\xd5\xd5\xe1\x67\x4d\x55\x05\x95\x71\x33\xbe\x9b\x36\x96\x3a\xf7\xd2\xf5\x5c\x17\x94\x3f\x31\x2d\x61\x5a\x18\x07\xa0\x07\x66\xb0\x6f\x94\x04\x28\x00\x39\x0c\x23\xca\x39\x1e\x62\xb9\x3a\x43\x2f\x67\x91\x30\xe4\x8c\x2e\x28\xf4\x67\xf1\x9b\xee\x1d\xf5\xe9\xfa\xae\xcd\xca\xa8\xf4\xe4\xb0\x28\xd7\xdf\x4f\x9c\x54\x0f\x45\x74\x98\x75\x89\x7a\xe1\xa7\x81\x0c\xd0\x80\xdf\x46\xa2\x41\x91\x42\x5d\x44\x1f\xc5\x34\xc5\xe6\x24\xea\x65\xfa\x24\xf2\x51\x5d\xd6\xa2\xdf\xdb\x25\xf6\xb1\x00\xe6\x9f\xbc\x11\x7e\x35\xb2\xa2\x3b\x34\xd8\x94\x5e\x70\x91\xa0\xef\x6f\x6c\x17\xac\x6f\x2c\xf7\x81\xd7\x9a\xba\x17\xcb\x15\xbd\x11\x4b\x1c\xe7\x0c\xff\x90\x30\x8b\x38\x9b\x34\x89\x3c\x82\xc2\x93\x76\x9a\x77\x49\xee\xd8\xa0\xce\x71\x2d\x84\x3a\x6d\xa2\x12\xd6\xbf\xf4\xdd\xea\x12\x77\x67\x79\xfa\xf7\xd3\xdd\x2a\xf8\xcc\xf0\xc8\x6c\x8f\x4b\xf3\x55\x8d\x22\x09\x0d\xb6\x5a\xd2\x4a\x92\x16\x32\x7c\x4a\x11\xea\x79\xda\x71\xfa\x69\x26\x49\x96\x19\x36\x3b\xae\x48\x49\x0d\xcd\x75\xcb\x73\xef\xa8\xd8\xc8\xfc\x89\x26\x8c\xbf\x50\x37\xe3\x95\xf7\xea\xfa\x48\x4d\x8b\x69\xf1\x5c\x72\x63\x90\xa5\x33\xa5\x09\xb6\xb2\x96\x10\x3f\xc3\x47\x06\x79\x66\x2d\xd6\x7d\x0e\x5e\xee\x4a\xde\x31\x01\x26\xa1\x6e\x91\x9f\x12\x5f\x55\xe3\x4d\x0d\x5c\xd6\x43\x5f\xa6\xbb\x55\xaa\x3c\xfd\x2b\x09\xfb\xc3\xe9\x4d\xdd\xee\xf5\x1c\x43\xaf\x71\xad\x55\x1e\x63\xec\xb8\x1f\xbf\x1d\xb6\xde\xa1\x1c\x2d\x1f\x0e\xef\x81\xc0\x86\xb0\x85\x68\xa7\x04\xbf\xb4\x8a\xac\xab\x82\x83\xf2\x33\x75\x7c\x23\x71\x07\xaf\x00\xa9\x84\xf1\xc2\xb3\x66\xab\xff\x31\x10\x28\xf4\x76\xe3\x98\x77\x7d\x63\x82\xa9\x93\xbe\x22\x20\x33\x2a\xe2\xc6\xb3\xc2\xaa\x40\xeb\x46\xa6\x59\x3a\x4a\x8e\x5b\xe1\xb3\x32\x9c\x1a\xbe\x46\x90\xb6\xa6\x1e\x8b\xd1\xc9\x93\x1b\x3b\x06\x9f\xf1\x18\xf2\x1c\xea\x9a\xfd\x9e\x8b\x39\xe3\xbf\xb1\xbf\xf6\xbd\xe0\x8b\xc0\x45\xbf\xa1\x83\x16\xb5\x52\xf6\x54\xb3\xd0\x18\xb7\x1d\xb3\xaf\x5a\x01\x1a\xf3\xda\x71\xba\x4d\x06\xe6\xc6\xc6\x4f\x06\x2d\xa2\xac\x87\xec\xe1\x9c\xa9\xbd\x79\x22\xc3\x32\xec\xcb\x2f\x3b\xd8\xc7\x9f\xad\x5f\xff\x03\x9d\x5f\xa6\xcf\x09\x76\x5c\x66\x87\xfa\x3a\x1b\x7e\x15\xf1\x26\x15\x87\xb8\xb9\xb8\x58\xb0\x99\xc9\x99\x6b\x5a\xba\xd9\xe4\xd8\x9b\x39\x43\xdc\x74\x3c\xeb\x7c\xce\x02\x7e\x45\xc8\xa5\x11\x97\x7c\x68\x81\x1b\xba\x5c\x16\x39\xf8\xd7\x09\x7f\x92\x6f\x74\x8f\xd9\x36\x58\x27\x7b\x9f\xba\xd5\x4e\x15\xb0\x24\x31\x06\x6d\xb8\x4d\x38\x1d\xbb\x76\xb8\x93\x79\xbe\xf1\x15\x08\xc8\x08\xae\x0e\x4f\x8f\x26\x8a\x67\x4a\xe5\x28\x26\x6c\xe4\xea\xa7\x9e\x7b\xb3\xfb\xf2\xf2\x3f\xdb\x59\x7e\x1e\x5e\xc9\x1c\x9a\x3f\x5b\x9b\xc0\x7f\x9a\x5d\xcb\x51\xb0\x96\xe8\x12\xe6\x13\x90\x1f\xb4\x1b\x8a\x12\x5e\x10\x95\x16\x57\x98\xf8\x98\x46\x91\x99\x9f\x67\x55\xd4\xd4\x40\xd0\xb3\x3c\xad\xba\x59\x73\xd2\xfe\xe9\xe3\x7f\x19\xc8\xbd\xc9\xbb\xf0\x83\x9e\x67\xb8\xe3\x96\x4f\x6b\x6b\x57\x0a\x3b\x53\xd1\x93\x6c\x52\x7a\xd3\x87\xb3\x6a\xf3\x20\x85\xdf\xca\x28\x2b\x3f\xd5\x05\x37\x2b\xb6\xcf\xf6\x1a\x4f\x46\xae\x6d\xbc\x6a\xff\xa8\xf5\xdb\xf9\x9f\xa7\x7f\x54\xdd\x94\x5f\xba\xbe\xda\xda\x53\xdb\x78\xb2\xaa\xb1\xb4\xbf\x04\xb7\xe0\x34\x73\x35\xb7\x34\xb3\x36\x2b\x3c\x25\x32\x49\x3c\x3e\x3f\x12\x3d\xb6\xb0\xc8\xbe\x3d\xf8\x5a\xef\x9d\xe9\x57\xfb\xff\xbe\x36\x94\xfe\xb3\xeb\x5b\xf1\x57\x63\x3b\xac\x2b\x6e\x33\xca\x23\xb7\xc3\xab\x03\xce\x7d\x2d\xfd\xa6\x3d\xdf\x7b\x05\xba\xcb\xbb\x4f\x9f\x22\x76\xf8\xb4\x1e\xb4\xe8\xb6\xb4\xf5\x97\x4f\xa3\x3c\x33\x7e\xfe\xee\x82\xef\x93\xc2\x23\xe6\xff\x1e\x7f\x6c\xbb\xd5\x3f\xbd\xd9\x6b\x59\xf9\x36\xcd\x3e\xc4\xd9\xd5\xdb\x3a\xd2\x8c\xd5\x20\xd6\xe0\x52\xfb\xa5\xd6\xa7\xda\xb8\x4a\xb3\x0a\xb3\x42\xa2\x74\xa7\xdc\xab\x84\xa4\x5c\xa6\x3e\xa0\x6b\x7b\x34\x6b\xe1\x61\x67\xee\x44\xf7\x3a\xe3\x41\xe9\xaf\xff\xa6\xeb\xa3\xcb\x2d\x84\x79\xad\xe1\x84\x2e\x97\x06\x68\x15\x6a\xe9\xd3\x22\xfa\x02\xba\x3c\xc5\x9c\xf6\xcc\xae\x6c\x48\x46\x47\x86\x44\x1a\x49\xea\x97\x54\x84\xd4\xd2\xa4\xaf\x79\xed\x95\x53\xad\x2f\x07\xbe\xcc\x36\x6e\xd6\x1d\x19\x7f\xcc\x7d\xd0\x80\x42\xef\xd4\x8f\xfb\x37\x9a\xa6\xf1\x7b\x1b\x9a\xb1\x2b\x3a\xf3\x95\x32\x1d\x52\x5f\x24\x2c\xc4\x09\xc5\x70\x45\xda\x44\xde\x46\x4e\x84\x97\x86\xab\x87\xba\x04\x7d\x09\xf2\x0f\x76\x0a\x2a\x8b\x75\xcf\xc4\x2f\x4d\x6e\x22\xee\xdd\x9e\x76\xde\xa8\x38\x52\xbb\xf6\xf8\x11\x77\xa1\xb8\xc3\x36\xa5\xdf\x4d\x5e\x87\x5d\xa4\x91\x4e\x13\xa7\x18\xf9\x10\x8a\x10\x20\xe4\x1b\xe9\xe5\xe1\x45\xe9\x59\xe9\x96\xe4\x36\xec\x9a\xe4\x94\xeb\x74\xeb\xa4\xef\xc8\xe8\x70\xed\xf3\x3a\x22\x3c\xd5\xa9\x08\xbb\x3e\xae\xa7\x7c\x5a\x66\x33\xef\x44\xe2\xe3\xfe\x73\xcc\x79\x93\x6e\xb3\x9a\xd0\xdc\xa9\xc4\xb6\x30\x49\xdf\x65\xcf\x7c\xe7\x0c\x07\x6a\x9b\x72\xcb\x37\x16\x6f\xcd\x7f\x9a\x69\x99\x62\x9a\x4c\x9b\x94\x18\x09\x1a\x74\x18\x12\x19\x56\xda\xf0\x78\xe2\x84\xda\x25\x55\x17\x64\xd5\xd3\xf6\x26\xce\xba\xee\x94\x9e\x0a\xae\x68\x0c\x1a\xd4\xdd\xe7\x09\xc7\x25\x05\x44\xba\x91\xd8\xd5\x58\x48\x9a\x7c\x32\xa4\xd5\xfd\xa6\x55\xac\x89\xae\x4e\xa8\xda\xaf\xf2\xa0\x6c\xab\xb8\xa5\x90\xa0\x68\xa3\xe0\xa5\x70\xa6\xab\x68\x31\xe1\xba\x1c\x5c\x98\x84\x5d\x18\xd5\xc8\x35\x20\xb4\x68\xb2\x5f\x32\xd9\xdf\xbe\x51\xaa\x93\x6c\x1f\xa4\xe6\x14\x6c\xf6\x44\xef\x46\xd3\x5f\xe5\x58\xbe\x58\xa6\x43\xca\x5c\x22\x55\xec\x99\x58\xb8\xf0\x73\x61\x1a\xc1\x09\x81\x20\xfe\x3a\xfe\x0f\x82\x1d\xb2\x8e\x9a\x8f\x66\xb5\xae\x74\x21\x62\xc9\xbf\x4b\x9e\xb6\xe2\x8c\x46\xac\xa5\x0d\x3f\x6b\x14\xcb\x7d\x1f\xf5\xc5\xc3\xcf\xfc\x52\x87\x4e\x41\x5b\x72\x41\xd4\x54\xe0\x03\xaf\x2d\x17\x32\x87\x36\xeb\x0b\xd6\x32\x16\x3a\xa6\x01\x26\x03\xc6\x15\x06\x40\x2f\xce\x18\xc0\xeb\x2a\xd5\xa7\x89\x6f\x6e\xe1\xce\x1c\x4e\x9c\xde\x58\xc9\xd7\x15\xbe\x42\x3b\x80\x50\xf3\x98\x71\x1c\xaa\xe6\xb8\x65\x44\xa7\xb4\x2e\xaa\xcd\xc3\xc4\x9a\xc9\x68\x48\x0b\x4f\x75\x44\x89\x49\x8e\x04\x91\x27\xb9\x21\x61\x27\xba\x22\x3a\x21\x64\x20\xac\x26\xe2\xa6\xdd\xe5\xa1\x97\xd6\xd5\xfa\x64\x85\xe3\x5d\x16\xe3\x91\xe7\x57\xdf\xb8\x34\xdd\x27\x59\x8d\x9c\x76\x1e\x8c\xe3\x68\x66\x10\x2a\xef\xcd\x67\xc2\xb0\x46\xee\x4e\x8c\x88\xdf\x8c\x7d\x83\xf9\x1d\x7d\x15\x2d\x00\x35\x18\x05\x82\xbc\x80\xf4\x06\xe9\x0c\xc9\x11\x49\x89\xc0\x84\x6e\x8c\x6f\x58\x1e\x47\x3f\xd8\x81\x35\xf0\x30\x15\x94\xb1\x2c\x0b\xf4\x23\x54\x5f\x66\x60\x86\xb4\x38\x17\x18\xa9\x2b\xb4\xf2\xfd\xa2\xd3\xc2\x3b\x47\x25\x41\x64\x04\x9f\x00\x26\x4c\xb9\xa7\x84\x39\x49\xb8\x00\x07\x50\x02\x92\x98\xe7\x14\x26\xec\x3b\xe2\x95\x1a\x44\x96\x36\x5e\xcf\xa3\x3f\xe4\x9e\xac\x7e\x1f\x22\xac\x37\xca\x31\x88\xa6\xf1\x44\x30\x2f\x54\x4b\x10\x15\x64\x7e\x46\x1c\x8e\x14\x05\xc3\x7e\x4d\x98\xfb\x92\x04\xe0\x03\x05\x60\x08\xd3\x52\x44\xd0\x5a\x21\x95\xac\x1f\x44\x22\x55\x85\x9f\xbc\x71\x7f\x15\xf1\x23\xeb\xe3\x66\xff\xb8\x6e\x6b\x5d\x89\x42\xd2\x52\xa0\x84\xdd\x6b\xdd\x70\x19\x51\x6e\x32\xca\x62\xcc\x7c\xd8\x8d\x1d\x07\xd6\xa6\x45\x09\x50\x60\x8e\x5a\x4a\x80\x0a\x68\x90\x28\x08\x33\x18\xee\x04\x2b\x95\x1e\x4c\x7a\xdc\x64\x23\x09\xb3\x51\x9f\x6b\xce\x7d\xed\x55\xaf\x85\x64\x11\x84\x17\xb8\xd1\x9b\x92\x2b\xe7\x08\x09\x31\x52\x11\xb2\x20\xb8\x02\x12\x80\x05\x53\x81\xd0\x01\x3f\x6c\x86\x40\x09\xe8\x80\x19\x78\x87\x27\x4a\xb3\xcc\xfb\x4d\x7e\xcc\xf0\x93\xb3\x72\xc8\xef\x0c\xe4\xe3\xd6\xf5\xa0\xb1\x86\x56\x8c\xc2\x9c\x78\x44\xdf\x08\x6b\x4d\xad\x2c\x49\x47\x0e\x26\xf2\x70\x0c\x62\x98\x17\x98\x08\xf0\xc1\x7a\x41\xb0\x80\x10\x2c\xe3\xa3\x0b\xf0\xb0\xce\xa8\xd2\xb8\xc7\x64\xbe\xe8\x33\x3b\x54\x07\xa9\xa6\xdc\xbd\xff\xb5\x9f\x32\xeb\xfb\xd4\xb1\x92\x26\x4d\x37\xc4\xdb\xa9\xc6\x48\x5a\xe1\x81\x7f\x95\x6e\x04\x5f\x06\xee\x35\x20\x05\x04\x30\x47\x0e\x3d\xcc\x8d\x82\x0b\x58\x01\x0e\x20\xc0\x70\xa7\x20\xe3\x7c\x23\x95\xad\x47\x6f\xff\x26\xe8\x22\x65\xea\x33\xfc\x91\xdf\xaa\xf6\x60\x41\x03\x46\xae\x6f\xf4\x2b\x2f\x21\x4b\x15\x8d\x02\xf1\x56\xb6\x76\x48\x39\x9a\x28\x8c\x3f\x11\xc2\x14\x10\x6e\x40\x06\xc8\x80\x05\xe0\x07\x2a\x68\x46\x64\xef\x39\x56\xa5\x82\x75\x3d\xed\xdc\x03\x7b\x52\x4a\x7f\x86\x5d\xb6\x6d\xd9\x4d\xf2\x76\x68\x94\x6e\x27\x3f\x04\x41\x1c\xde\x1a\xf4\xc9\xbf\xe1\x67\xa2\x93\xc6\x1b\x81\x7d\x7e\x19\xc0\x00\x94\x60\xad\x1e\xc4\x80\x15\xf0\x01\x46\x34\x6e\x52\x3a\x36\x52\xb1\x1a\x8d\x53\x2b\x6a\x5f\xac\x44\x32\x28\xf4\xe3\xfa\x41\xf3\x62\x49\x7f\x68\x6d\x52\xb6\x49\x14\xbe\x27\x86\x45\x8b\x46\xab\xb8\x25\x3b\x26\x99\x04\x6a\x32\xcc\x9d\xa4\x0f\x78\x81\x3c\xf0\x87\xb1\x42\x49\x60\x81\x68\x4e\x64\xca\x04\x27\xb2\xa9\x9e\x6c\xa9\xea\x0b\x17\xbf\x0a\x85\x7e\x7d\x7a\x86\xb5\x91\x34\x2e\xde\x96\x54\xe2\x9b\x4c\x13\x94\xe7\x98\x6f\xd8\xa9\xb0\x27\xe0\x4b\xaf\x8b\x37\x02\xfb\x2e\xb4\x00\x3b\xb8\x41\x80\x47\x5c\x47\xf6\x46\x65\x40\x6b\xc2\xec\xa4\xd8\xe7\x2a\x90\x19\xd0\xd7\x73\xb8\x0d\x5e\x4b\x0b\x85\x42\x7f\x87\xbd\x3f\x7a\xae\x37\x2f\xde\xbb\x53\xcb\x93\xc3\x1c\xad\xe2\xf5\xcc\xf2\x58\x4b\x5e\x72\x87\xe3\x88\x5c\x18\xf5\x29\xb2\x3d\xea\x1b\x0c\x0d\xac\x1d\x5c\x3d\xbc\x57\x84\xae\xc4\x12\x24\xf7\x10\x4e\xe6\x33\x51\x2c\xb5\x22\xf3\x40\xcf\x3f\x31\x66\x79\x30\x0f\xe7\x67\xde\x93\xbc\xf5\xe8\xb1\xee\x36\xae\xd2\xa4\x14\xe1\xe0\x13\xe7\x24\x13\x15\xe5\x7b\x61\x6e\xc6\x1b\x02\x5d\x82\x01\xa2\xb7\xa4\x02\xe4\x85\x94\x76\xd4\xd7\x74\x2d\x8c\xa2\x4c\x46\xcc\xbf\xf9\x1b\xe4\xbf\x18\x62\x39\x36\x05\x37\xa7\xae\x56\xc0\x5a\xa0\x1e\xae\xdf\x0b\x3f\x8f\x99\x4f\xef\x4b\xa9\xdb\xc9\x1d\x89\x2d\xf5\x1d\xb7\xb5\xd6\xb3\x97\x9d\xe5\x8d\xa2\x3e\xa6\xb1\xa6\x77\x67\x74\x67\x99\x63\xb7\xe5\xac\xe3\x1e\xe7\xeb\x17\x8c\x12\x91\x97\xfe\xa5\x1d\x66\x75\xe9\xfd\x18\x9b\x9f\x1f\xd9\xf8\xbf\xdc\x80\xca\x69\xf0\xfa\xa7\x89\xfa\x4e\xce\xf2\xb3\x0c\xf8\xf0\x45\x0f\x64\x0b\x3d\x4d\x3a\x09\x0f\xce\x32\x4e\x47\x9e\x70\xbe\x53\x41\x5c\x11\x3e\xb1\x26\x49\x77\x19\x33\xb9\x6c\x45\x0f\x8d\x30\xb3\x28\x37\xb3\xb0\x9b\x0c\x84\xca\xa4\xa7\x4f\xfe\xef\x84\x07\xaf\x2b\x89\x17\x51\x4b\x68\x83\xfa\x4d\xbe\x45\xd7\x49\xf1\xc1\x11\xce\xd5\x4f\xe8\x54\xa2\xc5\x22\xc5\xb2\xa4\xb4\x65\x08\xe4\x89\x14\xff\xa8\x98\xab\xcb\x69\x29\xe8\xb6\xe8\xef\x9a\x3a\x38\xed\x07\xb1\x27\x29\x17\x9d\xb6\x20\x8e\x44\xfd\x0f\x75\xbe\x3a\x9d\x6d\x6f\xf7\xcc\xe8\xf6\x68\xd4\xe1\xe4\x25\xc5\xdb\xfb\x7b\x39\x8c\x18\x7c\x57\xd9\x55\x89\x57\x17\xd2\xf4\xd5\xbe\xd2\xc7\x35\x62\x33\x85\x33\xf7\xb3\x02\x76\x9c\xce\xb5\xfe\xb5\x71\x5e\x79\x68\x75\x92\xbd\xdf\xe6\xb1\xff\xc6\xfe\x92\x6b\xb7\x57\x13\x6b\x98\xe3\x21\x1d\x06\x55\x68\x59\x9c\x31\xaa\x3e\x45\xb6\x2d\x46\xe1\x46\x54\xa6\xa9\x66\xe8\x16\xd1\x36\xaa\xf6\xa8\x8e\x3f\x5c\xcd\x3c\x10\x7c\xa7\x03\xbd\x63\x16\xb3\xd1\xab\x08\x3b\x3f\x4c\xca\x6e\x7c\xf9\x17\xf2\x0a\xbd\x83\x7f\xfe\x73\x29\x71\xb8\xbe\x4d\xac\xf4\x32\xc3\x2a\x4a\xc3\x8b\xc5\xc1\xd5\x6e\xd3\x21\xd0\xf9\xa7\x1b\x86\x47\xb5\xcf\xb0\xbf\x71\xf0\x9b\xf0\xf6\x68\xe3\x84\xb1\xcc\xad\x72\x68\x5b\xd7\xc8\xf2\xca\x9b\x43\xad\x7f\xc3\xef\x17\xe7\x73\xe5\xdd\xec\x79\xba\x41\xda\xe6\xf0\x52\xa3\xb4\x8f\x11\x62\xbe\x3f\x7d\x71\xfc\xf6\x02\x35\x82\x7b\xc3\x9d\xa2\x1c\x62\xf7\x12\x71\x53\xdd\x32\xdf\xe6\x61\x94\x75\xb6\xac\x0d\xd1\x2d\x62\xec\xaf\xbd\xd9\xfe\xf7\x09\x7f\x24\x6e\x8d\x4e\x46\xb6\xfe\xcc\xb2\xf7\xe5\x35\x13\x97\x7c\x4d\xbb\x8a\xf9\x13\xb5\x1d\xc3\x1b\x7b\x92\x10\x97\x82\x93\xc1\x9c\xed\x97\xf7\xa5\x88\xaf\xec\xbe\xda\xbf\x19\x3a\xd0\x30\x37\xbd\x93\x75\x4e\xf0\x79\xe5\xbf\x24\xe0\xc1\xfd\x5a\xf2\xe8\xf5\x66\xf8\xcc\xda\xc0\x4c\x73\x5e\x59\x4f\x8e\x68\x7a\x41\x16\x51\x4e\x44\x9e\x79\x11\x45\xc9\x43\x65\x70\xcd\xdb\x46\x94\x36\xba\xce\xe3\x81\xe0\xd9\x81\xad\xc8\x13\x9a\x5b\x9a\x3f\xfd\xff\xe2\x40\x2d\xb7\xf5\x6f\x6a\x4e\x6e\x5e\x7a\xef\x4f\xef\x98\x6c\xbe\xda\x34\xde\xc4\x78\xe6\xbb\x8e\xb7\x46\xf2\x6c\xfc\x19\xd7\xca\xab\x25\x87\x15\xd9\xe5\x80\x15\xac\xdd\x83\x63\x84\xf7\x67\xf7\x52\xff\x3f\x06\x52\xf2\x25\xf5\x1d\xc5\xeb\x5f\xbb\x61\x6b\x68\x4b\x8d\x73\x9b\x33\xec\x93\xaf\x26\x5f\x8f\x7b\x8c\xd8\x8d\x75\x8f\x06\x8e\xf4\x0c\xed\x0c\x7e\x1e\x6c\x19\x30\x1b\x94\x1f\xca\x9f\x0d\x5f\x7b\xfa\x12\xed\xd2\xeb\x2e\xf0\x71\xf8\xef\xcf\x3f\xfc\xc9\xf7\x9c\x72\xff\xea\x99\xe3\xcc\xcd\xd8\xea\x10\x61\xbf\xe2\xd3\x88\x4e\xe1\x0e\xe2\xf6\xc8\x36\x8f\x16\xed\xe6\xdc\x66\x9f\x66\xdd\x46\xfa\x7a\x84\x7a\x82\x7a\x81\xc6\xce\xee\x57\xe3\xc8\x4b\x8f\xbb\xef\x4f\x89\x6f\x20\x0f\xa9\x7f\x31\x10\x94\xe3\xf0\x6d\x87\x05\xf6\x91\xfb\xee\xb9\x76\x8a\x86\x0f\xb5\xcb\x55\x96\x95\x1e\x65\xb9\xe5\x12\x25\x3e\xc5\xc9\x85\x9b\x05\x0a\xf9\x3b\x79\x83\x39\xc8\x79\xe2\x79\xbd\x05\x8e\xd5\xba\xed\xc5\x43\x93\x73\xe9\x5b\x16\x47\x4d\x1f\x1b\x1e\xf0\xa0\xd0\x4f\xb1\x27\x06\x9b\x6f\x67\x5c\xfb\x89\x5b\xba\xab\xa7\xca\x8f\x0a\x41\xee\x4e\xe6\x5e\xfa\x51\xca\x52\xf2\x61\x22\x6d\xd2\x74\x82\x7a\x7c\x66\x6c\x72\x2c\x6d\xb4\x58\x8c\x7f\x74\x56\xfc\x6a\x36\x61\xb9\x7e\xb3\x49\x5f\xd7\xf4\xea\x46\xdd\x11\xe5\x35\xc5\xfd\xb7\x4b\xf7\xad\xf6\xe9\xa6\x9e\xf4\xfa\xf2\xe2\x92\x6c\xcb\x34\xfd\x44\x8e\x18\x9e\xc8\xd7\xe1\x92\xc1\x8b\x01\x33\x81\x91\x81\xa8\x7e\x96\xbe\xed\x3e\x77\xbe\x2c\x9e\x50\xef\x73\xcf\x47\x7f\xc2\xa8\xfe\xb4\x81\x62\x8a\x06\xec\x9e\xf6\x69\x9c\x4d\x81\xe3\xf2\x2b\x8d\x17\x12\xb3\xf6\xbd\x18\x75\x72\x79\x31\x29\xf4\xd1\x9a\x61\x57\x01\x9f\x7d\xd4\x3c\xb0\x5c\x87\x9d\xc7\x9c\x54\x1d\x74\x1c\x06\xec\xbe\xdb\x38\x59\x95\xda\xb0\x59\xee\x58\xe5\x58\x54\xd8\x3d\xf1\x0a\x0c\x9b\x49\xd6\x2e\x98\xad\xfb\xd3\x73\x34\x93\xb3\x2d\x7d\x44\xb2\xb2\x32\xb0\xdf\x10\x94\x7f\x91\xb0\x1d\x5c\xe4\x1d\xe9\xd2\xe5\xc0\x67\x9d\x64\xe6\xfb\x04\xdd\x78\xc7\x90\xc3\xa0\x50\xdf\x5a\x77\x59\xe7\x8b\xb6\x9e\x76\x87\xd6\x5b\x1d\x42\xcd\xe7\xfa\x9b\x56\xc6\x6e\x9d\xc1\x6f\x12\x8f\x0b\xb2\x1b\xf0\xfb\x32\xe6\xc5\x76\x09\xa6\xa0\x9d\x92\x65\x57\xa9\x0a\x21\xbb\x9e\x04\xb6\x92\x4f\xa2\x0d\xbc\x75\xa9\x35\x95\x55\xdf\x29\xd3\x29\x09\xca\x67\xc8\x8d\xcb\x85\xc9\xf6\x48\x5f\x49\xdd\x49\x16\x49\x0d\x4b\xf1\xc8\xb3\x69\xa3\x9b\x13\xbb\x5c\x06\x9b\x25\x79\x15\x75\x34\x8b\x0c\xcb\xae\x4f\x8e\xd2\x36\x0d\xe6\x27\xc4\xca\xf8\x2e\xda\x4d\x1b\x33\xa8\x4f\x29\x72\xc9\x6c\x4b\xc8\x88\xb6\x09\xd3\x08\x28\xf0\x6b\xf1\xbd\xe2\x3d\xe6\x69\xe3\x8e\xe0\xa6\xe6\xe4\xe3\x62\xe2\x84\xe7\xc7\x96\x76\xd5\xf8\x64\x16\xe6\x6a\x14\xf2\x2a\x35\xa9\x2c\xa8\xdd\x71\xf5\xc9\xa0\x55\x9d\x63\x56\x7b\x04\xb1\xc7\x99\xb9\x9a\xe6\x9a\x6c\xb7\xd0\x00\xaf\x3f\xa7\x2a\xeb\x04\xf3\x2a\x63\x1d\xfd\x01\x9d\x0c\x6d\x2a\x2d\x13\xf5\x1e\xd5\x7b\x2a\x5b\x4a\x09\x4a\x71\x7a\x46\x6e\xa8\x14\xbc\x26\xc4\x5c\xd5\xc3\x38\x52\x2b\x9b\xba\xa6\x7b\x79\xa2\xbf\xbc\xa6\x3a\xd3\x2b\x9c\xc1\x8d\xce\xf4\xb5\x6a\xb5\xe8\x31\xfb\x22\x9d\x2a\xe5\x4f\xb2\x49\x92\x24\xa2\x17\x04\xe3\xf8\x54\x78\x4c\xb8\x70\x38\x8c\xd8\x53\x38\x00\x3b\x06\x5b\x9e\x40\x93\xe6\x19\x0f\xa5\x74\x9f\xf6\x67\x1b\x29\x3f\x9e\xf8\xce\xa2\xf0\x15\xaf\x81\xa0\x5a\xff\x6c\x8c\xc8\x72\xf7\x07\xb3\x5c\x35\x64\x91\x1a\xe6\x97\x10\x4b\x9c\x3c\x8c\x5b\x34\x6e\xe4\x0c\x44\x1e\x78\x6b\x38\x53\x98\x8b\x91\x03\x58\x03\x76\xa0\x86\x28\x47\xd0\x4b\x2f\x25\x40\xa0\x00\x35\x32\x74\xe6\x08\x9d\xcd\x78\xbe\xc6\x39\x9c\xdd\xd8\x5f\xc0\x12\x17\xe4\x8b\x6d\xf5\x5d\x6b\x5c\x92\x97\xfd\x3d\x39\x13\xfa\xff\xe3\x2b\x04\xb0\xc4\x24\x29\x60\x83\xe5\x61\x04\x80\x08\xa0\x02\x4c\x70\x01\xb8\xda\xd4\x47\xdc\x7d\x32\x04\x3a\x07\xb6\x64\x7e\x0f\x89\x24\xdb\x48\x93\xa4\x1d\x6f\xcb\xe9\xd3\x50\x42\xd2\x9c\x0e\x8d\x78\x14\x12\xf9\xad\x68\x6f\xf1\x7c\xe0\x30\x01\x1e\x60\x00\xd4\x80\x0b\xe0\xc0\x7e\x53\x01\x1a\xa0\x0a\xe8\x81\x0b\x96\x04\xc5\x1e\xa7\x8e\x94\x8f\x96\x9b\x35\xf0\xb5\x8d\x73\x7e\xf1\x7a\x71\x65\x40\xba\x41\x30\xb7\x21\xba\xcf\xf3\xa7\x85\xb0\xfa\x95\xd8\x0f\xd6\x34\xd2\x6e\x94\x77\xb0\x36\x33\x4e\x40\x01\x18\x60\xd9\x1e\x3c\x20\x01\xb8\x01\x13\x30\x43\x43\x21\xcd\x65\xed\x10\x8b\xd1\x78\x6b\x39\xeb\xd5\x18\x3b\x7f\xda\xb4\xf9\x67\xca\xbc\xbd\xb4\x54\x33\xd9\x37\xb0\xc5\xfe\x50\x5f\x5c\xf6\x19\xcf\x22\x0d\x0d\x8e\x1b\xa0\x86\x79\x38\xa9\x01\x2b\xcc\x89\x8a\x01\x70\x80\x22\x60\x00\xdc\x48\xc1\xc4\xbc\x4c\x9b\x22\x68\xaa\xf1\x16\x68\x9e\xda\x31\xce\x1f\x2e\x0e\x4a\x16\xbe\xf6\xa5\xd4\xbc\xcc\x7a\x11\xc1\xe6\x4e\xf3\x24\x54\xd5\x47\xc4\x97\x39\x97\x44\x00\xb9\x0e\x10\x02\x76\xd8\x4e\x16\x0e\x20\x0f\xeb\x78\x65\x00\x6c\x40\x08\x41\x9e\xe0\x13\xa3\x89\x60\xbf\xca\xa5\x99\xbe\x87\x73\x64\xdd\x37\xd4\x53\xa4\xf5\x98\x31\xc4\xe6\xdf\x85\x6f\x12\xe4\xfd\xb2\x6c\x9f\xe8\x1a\x4a\xff\xe0\x16\xa1\x1a\xc6\x26\x06\xa4\x00\x03\x10\x02\x32\xc0\x05\x38\x81\x34\x50\x04\xc4\x00\x13\x48\xc3\x69\xe3\x9f\x31\xec\x0a\x2d\x29\xee\x18\x2f\xb9\x22\x47\x68\x3e\xd4\xbf\x7b\xbb\x8f\x33\x2b\xfa\x14\xa3\x0a\x2f\x43\x2d\x2c\xc7\x95\xcd\x64\x4b\xc5\x48\x78\x8d\x59\x86\xb8\x0e\x29\x09\x08\x01\x6e\x20\x0e\xc8\x81\x25\x90\x07\x62\x40\x1a\xe6\x90\x65\xc4\x61\xa1\xc9\xe2\x4d\x57\xd0\x30\xc2\x71\x5e\x08\xc7\x80\x42\x3f\xb1\xbf\x16\x58\x25\x18\xe6\x6e\x5a\x2a\x98\x88\x67\xf1\xd5\xb3\xc9\xd4\x65\x91\xf1\xe7\x11\xa1\x66\xc7\xba\x02\x3c\xb0\x6c\x92\x20\x60\x02\xd8\x40\x05\xee\x0f\xfc\x37\xc4\x08\xa4\x03\x7c\x5c\x06\x5c\x21\x2b\x95\x65\xb3\x6c\xcf\xf4\x98\x6c\x28\xf4\x47\xf0\xa5\xd5\x0e\xc9\x34\x5d\x97\x52\xc5\x42\x7a\x72\xd8\xa3\x9b\x82\xe9\x83\x6a\x84\x48\x3f\x2b\x23\x89\x38\xa2\x11\x3c\x31\x62\x22\xf2\x7b\xb4\x18\x8c\x97\x58\xc7\x38\x5f\xf0\xa8\x08\x30\x09\xc7\x29\x07\xb8\x34\xa5\x4f\x74\xcf\xed\x95\x03\x7f\xa4\xc0\x36\xaa\x5f\x1f\x1c\x7e\x5c\x11\x1e\x2c\x6d\xe2\x2c\x48\x8e\x6f\xf6\x27\xb7\xf7\xd5\xe7\x91\xfb\xce\x27\x40\xf3\x11\xfb\x1d\x76\x11\x9e\x0d\x41\x28\x71\x12\xe9\x67\xf2\x5a\xca\x5a\x1a\x4a\xba\x47\xfa\x3f\x6c\x54\xa2\xb7\x6a\xd5\xe6\x28\x9e\x78\xd1\x26\xb9\x30\xf4\xbf\x77\x38\x5f\xda\xc1\x9e\x5a\xe9\x0a\xad\x1c\xc8\xd8\x8c\xf8\xec\x3e\x63\xa1\xac\x11\x23\x31\xca\x6e\x46\xce\x41\x61\x4e\xa5\x4c\xb3\xce\xc0\xc5\x34\xc2\xf2\x8d\x1d\xc2\x55\xc2\x1b\xc9\xf7\x5d\x98\x42\xb1\xc1\x88\xd4\x09\x2e\xd8\x20\x95\xb5\xfc\xff\x3a\x2c\x83\xae\xe1\x0e\x47\x56\xac\x87\xc3\x9b\x05\x8b\x3e\x25\xad\x05\x75\x39\xfd\x7f\xac\xfd\x63\x98\x5d\x5b\xf6\xfe\x0f\xaf\x24\x95\x14\x82\x42\x92\xb2\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\x57\xa5\x98\xfd\x5c\x5d\x7d\xba\xfb\x9c\xd3\xfd\x7b\xae\xff\x8b\xef\x7a\x7f\x8f\xb5\xaa\xf6\xde\xe3\x33\xd7\x9c\x63\x8c\x7b\x4c\x51\x4a\xa0\x86\xde\x82\x90\x9f\x18\x96\x24\x8f\xdc\x9a\x72\x89\x66\x98\xfe\x85\x71\x94\xc5\x9c\xe3\x82\xab\x9e\x57\x4f\xaa\x4f\x2b\xdb\x1a\xd9\x87\x28\xb6\x39\xff\x8f\x5d\xef\xfb\x9e\xdd\xd6\x59\xf0\x1e\xb6\x6a\x95\x6c\xb4\xa8\x49\xef\x22\x9b\x4f\xda\x7d\xd2\x3c\xdc\x1f\xe8\xc9\xe8\x6d\x19\x7f\xb3\xbc\xb0\xf3\x70\x69\xf2\x5e\x0a\x18\x0b\xdb\x8a\x16\x48\x70\xc9\x48\xa9\x53\x9b\x59\xba\x19\x84\x83\x65\x90\x56\x56\xfc\x81\x8c\xde\xf3\x84\x35\xcc\x31\xf8\xd6\xd3\xd2\xbe\xd4\xf3\x30\x2a\xb7\xcf\xe6\xe6\x1a\x5f\xc4\xa5\xb8\x6f\x78\x12\xf9\xeb\x05\xdd\x85\x7f\x8b\x3d\x4b\xb5\xc8\x5a\x2b\x74\x28\xc7\xa9\xe9\x68\xcd\x19\x4f\x39\x95\x06\xf1\x24\x09\x17\xbf\x6f\x21\xff\x17\x75\x7e\x8d\x1c\x30\xcc\x2f\xf4\x2f\x37\x54\x17\x9c\x27\x7e\x08\xa2\x75\x2a\x36\x56\x57\x1e\x95\x94\x97\x36\x94\xf9\x25\x4f\xa6\x64\xa7\x5a\xaf\x61\xa5\xed\xa6\x67\x6a\x84\x6c\xe2\x63\x79\xe5\xd0\xe9\x4f\x12\x27\x9a\x7b\x5d\x27\xd7\xff\xe5\x3f\xe0\xbb\x76\xdc\x86\x9e\x26\xec\xd6\xa9\x49\xc9\xfd\x16\x87\xe7\x5f\xe5\x10\x66\xa8\xa3\x61\xad\x3e\xa6\x05\xa6\xe3\xaf\xcf\x69\xe4\x6c\xf6\xde\x32\xda\xe6\xc1\xc1\xce\x39\xc5\x7d\xc1\x8f\x23\xfa\x39\xab\xbe\xea\x4b\xe7\xec\x94\xe8\x7f\x22\xbc\xf2\x9d\xae\xae\xd6\x8c\x93\x75\x14\x54\xd2\x67\x0d\xc7\x40\xf8\x16\xd8\x82\x4c\x19\x4d\xfd\x2c\x1e\xac\x87\x6c\x93\x1d\xbc\x5d\x3c\xdd\xd5\x3d\x5f\xfd\x25\x82\x81\xf0\xf0\x58\xbd\x8c\xdb\x72\x85\x36\xa9\xd1\xee\xd5\x85\x3f\xe3\xf7\xa1\xef\x90\x6f\x99\x78\xe4\x7d\xab\x60\x59\x5b\xa6\x5a\x34\xb5\x2f\x89\x73\x99\xb3\x81\x1b\xba\xbb\xbd\x37\xa4\x6f\x5d\xe0\x74\x88\x5a\x84\x4d\x74\x42\x62\x7a\xea\x52\xee\x5e\x99\x55\x8b\xc3\x50\xda\xe2\xfd\xe1\xdf\x3c\xfa\x6f\xe1\xf6\xbf\x2f\xa4\x0c\x09\x37\x53\x97\xd6\x65\x18\x45\x3d\x07\x6b\x04\xee\x07\xeb\x85\x41\x47\x44\xc6\x30\xc7\x77\x27\xf3\xa4\x99\x66\x51\xe5\xcd\x15\x5f\x57\x6c\x37\x77\x0c\x26\xce\x17\xef\x89\xdf\x36\xfc\x6d\x15\x00\xba\x7e\xd8\xc1\x9c\x8d\x18\x84\x6e\x89\xa9\x50\xce\xe2\x4b\x5c\x8e\xff\x98\x08\x97\x3c\x98\x96\x9f\x09\x91\xfb\x5a\xa8\x5b\xaa\x51\xa9\x56\x9b\xde\xd8\xde\xce\x3f\x90\x32\x67\xbe\x93\xf8\x67\x5f\x57\x10\xe8\x69\xea\x4a\xef\x84\x79\x5f\x73\xfb\x6e\x3d\x64\xa5\x73\xd1\x74\xb9\x65\xa9\x76\xe1\x75\xde\x7a\xce\x6e\x16\x67\x36\x7f\x56\x61\xda\x75\xba\x62\x2a\x60\x9a\x62\xde\x6b\x8b\xf9\x54\xf8\xd7\x7f\xf9\xd3\xdd\x3a\x1c\x99\x6e\x7a\x2e\xc3\xcd\x3d\x4f\x61\x8f\x83\x0d\x07\x0d\xc2\x0c\xd8\xf6\x85\xf7\xe5\xf6\x55\xf6\xf8\x74\x37\x76\xc3\x76\x89\x76\x7d\xe9\x50\x6a\x0f\xeb\xb0\xea\x33\x99\x28\x5f\x91\xdf\x7f\xba\x36\xfe\xfd\x6f\x7f\xfc\xdf\xd1\x97\xf7\xbb\xb6\x8b\xb6\xe3\x35\xc3\xa3\xbd\x5e\x1d\x61\xad\xf9\x8d\xaa\x0d\x86\x75\x55\xb5\xf4\x35\xc8\x55\x8e\xd5\xa5\x55\x15\x95\x73\xe5\x62\x15\x9f\xcb\xba\xcb\xc8\x4a\x0d\x6a\x51\xdb\xb7\x46\xc0\xe6\x99\xb7\x65\xcf\x8f\xff\xd9\x0b\xf3\x7b\xed\x7c\x6c\x53\x73\xfa\x66\xc0\xaf\x83\xb3\xa9\xb9\xd6\xbe\x2c\xa0\xc4\xbc\x50\x35\xcf\x36\x67\x28\xeb\x77\x56\x6d\x26\x58\x86\x7f\x06\x57\x1a\x7b\x8a\x49\xf2\x50\x4a\x69\xaa\x43\xf2\x69\xf6\x64\xb9\x74\xd3\x43\xdf\xdd\xb4\xf0\x06\xdf\xe9\xee\x33\x19\x08\x74\xb5\xbc\x35\x30\x19\xd0\x9d\xd0\xd0\x58\x4e\x58\x68\x90\xdd\x9c\x66\x9b\x02\x97\x40\x1b\xa7\x15\xdd\x13\x95\x16\xf9\x33\xa2\x37\x82\x2a\x1c\x26\xe4\x28\x58\x2f\x24\x2b\xf0\x26\x98\x2d\x04\x2d\x3a\x33\x6d\xab\xe8\xa8\xae\xbf\x3b\x7d\xf2\xc3\x3a\xdb\xe9\xe3\x83\xe0\xce\xd4\x54\x4f\xe7\x63\xb5\x5b\x01\x74\xfa\x50\x22\x4c\x0c\x51\x18\x5c\xd0\xb3\x3f\xa5\x0f\x99\xb7\xb1\x87\xa6\x9b\x9d\x3b\xba\xab\xb7\xab\xbf\xab\x98\xb3\x87\x53\xb1\x83\xbb\xd3\x9d\xc3\x94\xb7\x5c\x98\x4f\x92\x69\xde\x7a\x0d\x41\x17\xcc\xc4\xec\xfa\xc8\x51\xf5\xbc\x4f\xaf\x61\x8d\x5d\x2e\x58\xa2\x76\x84\x58\xa0\x9e\xd7\x99\x1b\x91\xc3\x8d\xdd\xb3\x8d\xaf\x25\xb7\x25\x84\x79\x84\xe9\xbd\x69\xbd\xc9\x99\xb1\x81\x11\xbe\xe1\xb1\x41\x86\x11\xad\x21\x8b\xd5\xa2\xdb\xbb\x20\x89\x78\xe5\x5c\xe8\x6a\xab\x2e\xaf\xc9\xba\xf5\xc6\x61\x85\xc6\xa0\x82\x94\x84\x96\x50\x18\x4f\x46\x87\x27\xeb\x59\x93\x27\x83\x17\x9d\x75\xad\x54\x0d\x6a\x35\x36\x15\x1b\x55\x05\x95\x6d\x15\x6f\x95\x1f\x0a\xbf\x94\x28\x14\x70\x14\x88\x15\x94\xb5\x14\x4c\x77\x9d\x72\x02\xf0\x63\x1f\x72\x6e\x6a\x2c\x7b\xaa\xe6\x82\xbb\x53\x2b\x3f\xa5\x5b\x47\xc4\x7a\x7d\xb0\x95\x30\x2a\xd3\x9e\x55\x2d\x57\x8c\x94\xb9\x90\x0c\x96\xc8\x17\xe3\x17\x53\x11\x0d\x16\xe5\x11\xd6\x12\x16\x10\xdc\x16\x58\xe2\x4f\xe1\x2f\xe3\x9f\x94\xbc\x51\x83\x31\x66\x71\x98\xf6\x8f\x8f\xeb\xca\xbb\xae\xaf\x9f\xe4\x6c\x1d\x2e\xb2\x48\xb0\x0d\x2c\x74\x24\x36\xde\xd2\x60\x97\x59\x10\xc3\x17\x2c\xe4\x4b\xe1\x62\xe2\x88\x63\x6b\x66\x99\x65\x76\x62\x3a\x66\x6c\x67\xdc\x67\x18\xa4\x37\x65\x40\xa1\x4f\xa6\x77\xe2\x5c\x14\xf3\x56\x5e\x33\x12\x71\x64\x08\xb4\x4b\x6c\x2c\x76\x19\xdd\x6e\x3c\xc8\x6b\x89\x99\xf4\xc1\xb2\xde\xd6\xb1\x94\x63\x12\xd2\x66\xf7\x65\x6a\xa1\x43\xa3\xfe\x4e\x49\x4e\xe6\x49\xfa\x91\xb8\x93\x98\x8a\xf0\x89\xa0\x8a\xa0\x16\xff\x01\xff\x3b\xde\x30\xfe\x06\x15\x0c\x5b\xaa\x48\x98\x72\x85\x71\xa9\x4b\x7c\x18\x53\x7a\xcf\x88\x56\x83\x4f\x2e\x47\x4c\xaf\xb7\x81\x65\xb2\x26\x9c\x24\x07\x97\x18\xad\x3e\x09\x2a\x5e\x20\x36\x15\x86\x1e\x9a\x34\x4a\x1a\xb2\x0d\xe2\x06\xc2\x2b\x42\x12\x22\x2c\x22\x2d\x42\x1d\x02\x1e\x42\x26\x66\x0d\xb9\x30\x1b\xba\x18\xba\xda\x89\x85\x9d\x47\x42\xf4\xc2\x28\x58\x63\x77\xc1\x50\xec\x8a\xcf\x96\x55\x87\x26\x8f\x44\x2c\x87\x33\x79\x11\xa6\x2f\x02\xea\xf7\x2a\x98\xfa\xaf\x3b\x5f\xde\x41\x55\x41\xc6\x41\x1c\x42\x28\x42\x30\x43\xd0\x41\x50\x80\xaf\x82\xe7\xc2\x5c\x63\xe2\x53\xca\x70\x26\x48\x15\xe9\xc4\xd9\x25\x06\x62\x4e\x88\xb4\x76\x94\xf0\x27\xa1\x07\x4c\xd8\xdd\xeb\x56\xcb\x40\x72\xcd\x53\x6e\x62\x42\x42\xf7\x82\x05\xbc\x73\x06\xa0\x00\x3c\x40\x1d\xa0\x7f\xdb\xbd\xf8\x07\x7d\xe9\x00\x6c\x00\x0d\xfc\x0e\x01\x0e\x1f\x97\x41\x58\x20\x5a\xa9\xc2\xb4\xc9\x5d\x7b\xd6\xae\xbb\xb3\xca\x2a\x23\x2d\x9c\xdf\x0d\xce\x14\x5c\x39\x4b\x70\x98\x61\x18\xdf\xe1\xe7\xe5\xc7\x29\xe0\x2b\xc0\xf6\xb6\x03\x03\x01\xc0\x01\xc8\xc0\x0f\x00\xe5\xed\x3c\x83\x1a\xec\xe5\xc7\x67\x9c\x2a\x5a\x5f\xde\x67\x79\x5e\xc3\x1f\x4e\xdd\x2b\xcf\xc3\x2e\x4d\x6c\x85\xb0\x09\x18\xbe\xcf\xd6\x71\x5a\x52\x92\x9c\x1c\x7c\x64\xaf\x68\xc0\xd7\x4f\x00\x1c\x40\xf2\xd6\x79\xf1\xe3\xad\x0e\x85\x16\x20\x02\xde\x03\x6c\x00\xe9\x3b\x1c\x98\x69\x2c\x46\x6a\x6a\x1e\x65\xb9\x19\x83\x23\x87\xe9\xdd\xaa\x99\xe6\x6e\xef\x4a\xb7\xf4\xb0\x50\x0e\xe7\x28\x23\x31\x85\x40\xfe\x10\x3a\x1e\x5c\x89\x1f\x36\x60\xba\xc0\xb7\xb7\x39\x1a\x10\x00\x2e\x80\x0d\x7c\x05\x70\xde\x7a\x59\xc5\x00\xba\xaf\xbb\x68\xeb\xe4\x20\x2e\x3a\x99\x09\x7d\x1a\x07\x8e\x73\xb7\xd5\x9c\xe1\x8c\x46\xa1\x7c\xb0\x18\x0f\x6f\x6d\x4b\x06\x0d\x6a\x31\x25\xd6\x2b\x52\x37\x94\xcb\xcf\xf1\x6f\x95\x9b\x50\x00\x37\x20\x0f\x30\x00\xa8\x80\x38\x80\x0b\xf0\x02\xc4\x00\xf1\x67\x4f\xd4\x27\x72\x53\x8e\x17\x69\x1b\x3d\x4c\x07\xda\x5f\xa1\x3b\xaf\xd3\x68\x1d\xbf\xca\xc0\x52\xde\x07\x49\x3b\x3a\xe9\xf7\xc9\x05\xf2\xe6\xd0\xcc\xe3\x0c\x7e\x8f\x79\x3f\x0f\x20\x00\x24\x6f\x1e\xb9\xdc\x6f\xb3\x59\x19\x81\xaf\x00\x23\x40\x0b\xe9\x82\x38\x4f\x9c\xc9\x4a\x21\x1e\xa7\x59\x6e\x7d\xfa\xdb\xe6\x54\x6a\xc9\xb7\xbf\xb5\x56\x39\xe7\x7d\x94\xa3\xc7\xad\x79\xb7\x1a\x9e\x68\x04\x4b\x26\xc9\x2b\x4a\x18\xd4\xdd\x1f\x15\x20\x50\x80\x06\x80\x05\x70\x03\xe8\x00\x3d\xa0\x0c\x50\x82\xeb\x20\x79\x93\xb4\xb2\xb3\x49\x7d\xd4\xe9\xb7\xcf\x02\x81\x6e\xd4\x37\xfd\xc6\x3b\xdb\x52\x4a\x24\x93\x1c\x02\xd6\x1d\x08\xf4\x3f\xca\x41\xf2\xfd\xa4\x2d\xc5\x03\xff\x3e\xf5\x8e\x09\x40\x07\xbe\xbd\x47\x00\xb3\xfe\xd4\x0b\x09\x09\x25\xf3\x85\xe8\x6b\x0c\xb4\xe8\x77\x3a\x9c\x58\x3a\x22\x01\x52\xa5\x12\x53\x62\xf7\xed\x7f\x64\xd8\x23\x81\xf9\xec\xbe\x0f\x35\xf2\x59\x7d\x51\x90\x1e\xcf\x16\x3a\xea\x04\xe2\xdc\x6c\xfb\x64\x5a\xa8\xaf\x50\x4c\x50\xea\x5f\x86\xa1\x19\x60\x0f\xbf\x1f\xc3\x57\x23\xfd\x40\xc6\x45\xcd\x43\x7f\xc4\xc2\xa2\xa0\xe2\x58\x93\x12\xd5\xe1\xb6\xeb\x08\x7c\x9b\xde\x70\xc5\xb2\xd1\x32\x16\xd5\x0a\x53\x7c\x94\x0c\x19\x24\xe4\xc8\x6d\x48\xab\x30\x2b\xc8\xce\x90\x80\xdf\x0d\x8f\x89\xa0\x80\x74\x84\x8a\x80\x51\x84\x15\x86\x6b\x81\x2f\x4f\xb8\x48\x32\x4a\x36\x43\xbe\xcd\x52\x24\x62\xa7\xca\x6c\x96\xe9\x11\x14\x95\xfb\x96\xe7\x99\x0f\x2d\xe6\xeb\x7b\xab\x6a\x89\x72\xa4\xa3\x7d\xbc\x4b\xac\x51\xb4\x65\xa4\xe6\xb8\x25\xa8\x44\xb0\x13\x70\xc5\x09\x30\x89\x28\x48\x69\xc9\x2b\xa9\xd1\x68\x23\x18\x24\x98\xde\xb1\xe6\x70\xc8\x0a\x12\x2a\xa4\x1b\xf4\x3b\x66\x04\x7f\x4c\x19\xff\x67\xb6\xbe\x9c\xd9\xd4\x1d\x57\x6e\x63\x28\x53\x49\x7d\x0e\x6d\x74\x5d\x35\xa3\x52\xbd\x11\xfb\xce\x9a\x45\xb9\x4f\xb5\x40\xf3\x48\x1f\xc8\x94\xc9\x4a\xcd\xe1\xc0\x95\xc7\xc7\x28\xa0\x2a\xe2\x2c\xb6\x2e\xdb\xa5\xb3\x67\x53\xe6\x8b\x11\xf7\x31\xff\x0f\x6e\x3c\x65\x1f\x4e\x2c\x2e\x0f\x84\x37\x50\x16\xd0\x24\xe0\xf8\x07\x3b\xc0\x18\x46\x2a\x2a\x09\x2a\xb2\x2d\xb3\x3f\x72\x4d\xf1\x4a\x0a\x6c\x09\x9b\x89\x19\x4b\xc6\xc8\xf8\x2a\xbc\x57\x9a\x50\x99\xd2\x92\xb3\x98\xf7\x70\x8c\x70\xc9\xa4\xad\x52\xfb\x17\x33\x6e\x38\xb6\x63\xa7\x9e\xbb\x90\xab\x18\xb2\x22\xa3\xb6\xbd\xfb\x6d\x72\x74\x3a\x64\xad\x44\xbf\x89\x41\x48\xb4\x49\x5b\xc9\x31\x29\x84\x28\xfb\xaa\x15\x69\xb9\xe8\x3a\x1b\x1c\x99\x60\x58\x52\xb8\x6a\x87\x64\xa7\x60\x95\xe8\xb7\xd2\xfc\x2b\xc2\x0b\xfa\xc9\xd3\xf2\xc6\x88\x74\x6b\x55\x19\x4d\xda\x5e\xf8\x86\xc7\x80\xd5\x0f\x6d\x3c\xc5\x25\xa5\x5f\xaa\x89\xea\x39\xda\x48\xba\x53\x86\x28\xa6\x38\xe6\x4f\x56\x8b\x76\x41\x8e\x23\xee\xea\x41\x18\x09\x83\x05\xd8\xf5\x47\x03\x72\xff\xe1\xde\x3d\xcb\x7e\xd1\xdc\x7d\xff\x42\xc3\x73\x91\x7f\xb2\x4f\xe8\x96\xeb\xb1\x05\x86\xfe\xa8\xa1\xa8\xb1\xbf\xe9\x8c\x05\x82\x35\xb4\xbd\x93\x93\xa9\xeb\x9c\xa7\xad\x4f\x43\x60\x4c\x68\x68\xbc\x41\xae\x43\x8d\x62\xf7\xf4\xf4\xea\x9f\xd9\x79\xd5\xbd\xf5\x3a\xa3\xd4\x53\x58\x7b\x57\x50\x94\xd8\x11\x42\xe9\x86\x65\xa7\x64\x27\xee\x88\xe1\x32\xe5\x5a\xef\xa1\xea\x73\xe4\x5f\x15\xac\x16\x9e\x1b\xed\x94\x80\x9c\x22\x94\xd3\x55\x45\xd6\xd1\x37\x7e\xb5\x1e\xfd\xe7\x08\x2f\x9a\x67\xd3\xeb\x65\x93\x62\x5d\x6b\x35\x49\x79\x0d\x89\xbe\x21\x81\xde\x3b\x3e\x0f\x7e\x6d\x81\xd0\x21\x06\xe1\xf0\x51\x4b\xb1\x2f\x89\xe0\x69\x72\x59\x02\x79\x72\xc5\x60\x95\x43\xed\xc9\xa3\x3d\x2b\xbc\xc7\xa3\x7f\x25\xf8\x23\xc7\x09\xfa\xea\xf6\xd8\x43\x67\x5d\x75\x6b\xbe\x5c\x82\x45\xb4\x7b\xd4\x61\x4c\x61\x7c\x50\xe2\x75\xaa\x46\x06\x5c\x8e\x51\xbe\x67\x49\x52\xc5\x6a\xf5\x60\x83\x5c\x57\xcd\x48\xe3\x52\xde\x21\xca\xaf\xff\x72\xca\xbf\x7f\x3e\xd4\x5a\xc1\x1b\xbb\xeb\x06\xaa\x6b\x0b\x1c\x32\xa3\x32\xcc\xb3\x21\x73\x2e\xf3\x2b\x8a\x22\xcb\x7a\xab\xde\xd7\x11\x34\x7d\x6d\x7b\xe9\x7e\x1c\x54\x1f\xaf\x5c\x92\xdd\x9f\xb8\xbd\xfc\xb3\xf6\x75\xe0\xc1\xf3\x3a\xfc\x4c\xef\x98\xe0\xe0\x78\x4f\x6c\x87\x60\x93\x63\x83\x65\xf3\xc3\x7a\xfd\x1a\xdd\x7a\xd1\x32\xc1\x0a\xf6\x2a\xe2\x0a\xdd\xca\xe3\x8a\xd8\xb2\xe4\x8e\xf5\x39\xe3\x63\xe9\x7f\xdd\x5b\xfd\xcc\xf2\x10\x73\xbb\x76\xad\x76\xf1\xf7\x1c\xf6\x34\xce\x94\xc8\x78\xf1\xe8\xc9\xf8\xda\xe8\xc5\x08\xda\x88\xd9\xb0\xcb\xe0\xe7\x41\xac\x7e\xca\x81\xf5\x21\xf4\x41\xcc\x69\xc2\xb5\xf6\xc3\x83\x5b\xa4\xff\xa8\x7f\x9f\x5e\x89\xed\x41\xac\x43\x2e\xd2\x4f\xe6\x8d\xcc\x0c\x0c\xf4\x72\x74\xd9\x75\xe4\xb6\x8d\xb7\xf6\xb5\x08\x36\x59\x36\x73\x34\xa5\x37\x3c\x35\x9c\x37\x38\xd6\xb1\xd6\x1d\x35\x60\xd5\x1b\x77\x59\x8d\x96\x2d\xd2\xee\x54\x5e\xec\xbd\xfc\x73\x2f\x29\xfe\xd2\x74\x1b\x69\x2e\x7d\x6c\xb4\x2f\xb3\xe3\x63\xf3\x7e\x83\x76\x35\x7a\x45\x5a\xd9\x60\x69\x49\xe1\x59\x71\x66\xe1\x65\xfe\xaf\x42\x98\x82\x81\x3c\xe8\xfc\x9e\xec\x98\x1c\xff\x7c\x83\x3c\x8d\xca\x89\x56\x8c\x01\xfa\x19\x93\x4d\xcc\x33\x97\x67\x67\x10\xe8\x72\x75\x8b\x7a\x5a\xad\xaf\xbb\x6d\xa6\xce\xb6\xd2\xbe\x08\x25\xcf\x3a\x93\x2c\x7d\x2e\x25\x3b\x85\x31\x09\x35\xc1\x23\x01\x2e\xe1\x31\x9e\x32\x61\x32\x66\x3f\x86\x22\x06\x2f\x86\x33\x66\x2b\x0e\x2c\x53\xaa\x44\xb8\x01\xbe\x27\x6e\xb2\x78\xdd\xe9\xb4\xe9\x3e\x71\xdb\x62\x5a\xb1\x07\xa5\x41\xa6\xec\x5b\x5e\x67\xba\x61\xf2\xc7\x58\x81\xc8\xba\xb0\x2f\x21\x74\x41\x06\x41\x0c\xfe\x19\x01\xa3\xfe\xf4\x01\xb0\x7e\x8d\xbe\x9d\xbe\x72\xbe\xc1\x3e\xca\x3e\x9f\x7c\xcf\x23\x2c\x93\x7f\x17\xa0\xd4\x5c\x75\xe9\x4f\x08\xac\x9d\x1c\x6d\xcc\xc7\xf7\xf9\xd7\xb1\x16\x15\xa5\x33\xc7\xd5\x44\x3c\x04\x23\xfb\xdc\x7b\xa2\xb8\xfe\x72\x1e\x77\xa0\x74\xa0\xb6\x77\xb6\xe7\xb3\x8f\xb2\xbd\xb6\x3d\xb1\xfe\x6a\x9d\x69\x85\x6c\x71\x60\xc9\x69\xb3\xe5\x7e\x17\x3c\x9b\xa0\x9f\x9b\x54\x0d\xd9\x99\x36\x71\xb1\x2e\x39\x6a\xdf\xf2\xae\x74\x20\xbd\x22\x1a\x2e\xa0\xd0\xd3\xd5\x89\xd3\x76\xc1\xc2\xcc\x64\xc6\xd8\xc3\xd0\xc3\x60\x43\x0f\x5d\x0f\x5c\x0f\x57\xa7\x54\xbb\x47\x9b\x4a\x5b\x5c\x63\x43\x53\x45\xe3\x45\x57\xd5\xfc\xd0\xf9\x2e\x20\x3c\xf6\x29\x47\xb7\x1a\xa7\x9b\x73\x41\xb4\x37\xad\xfa\x35\xb7\x2e\xee\x53\xa0\x93\x2b\x95\x35\xb3\x11\x94\x6e\xb8\xa6\xa5\x2a\x9c\x12\x8e\xbc\x85\xdc\x94\x9c\xb2\x74\x83\x0c\xa7\x74\x9b\x54\x87\xe4\x85\xe4\x95\xa4\xa3\x44\x95\x14\xb3\x4c\xb1\xfa\x82\xf1\xa6\xe3\x4f\xbf\x9d\xd8\xe3\x5c\x8e\xda\xd0\x69\xbc\xf6\xea\x8a\x2f\x69\x93\xe1\x11\xee\xfd\xd6\x65\xba\x27\xaa\xca\x72\x30\x92\x72\xc2\x65\x42\x47\x02\x06\xfc\xca\xbc\xf8\xdc\x6d\xdc\x1a\x5c\xdc\x9c\x77\x9c\x39\x1c\x7e\x1c\xdf\xd8\xdd\x58\x97\x79\xc4\xc5\xa3\x54\xbe\x19\x56\x3a\xa0\x06\x7c\x8d\xef\x2f\xf8\x35\x1e\xd2\x52\x5f\xb2\x93\xb4\x1a\x14\xe4\x94\x6e\x34\xaa\x8a\x22\x49\x2a\xa0\xce\x79\xca\xca\xcb\xcc\xc2\x20\x4d\x1b\x49\xb3\x4e\x2d\x44\x35\x45\xcd\x42\xf5\x81\xd2\x80\x32\x8a\xb2\x98\x02\x44\x81\x49\x43\xc0\xce\x2b\xc2\xa3\xb4\x6b\xc4\xe2\x78\x18\x64\x9d\x8c\x38\xb6\xdf\x12\x5d\xf4\x94\x78\x17\x60\x6a\xaf\xab\xb7\xa5\x80\x26\xb4\xc4\x32\x42\x4d\x43\xba\x4c\x0c\x49\xa0\x88\xbb\x86\xf3\x03\x7b\x0b\x9b\x12\x53\x0e\x43\x15\xe3\x01\xc3\x0b\x23\x01\x43\x09\xf3\x13\xb6\x11\xb9\x10\x2b\x8c\x88\xa8\x32\xba\x71\x95\xab\x68\x98\xf3\x04\x6f\x9b\x6f\x49\x7d\x52\x5a\xa0\x80\xfd\x95\xbe\x9b\x5c\x21\x9f\x15\x5d\x3f\x21\x35\xfa\x30\xb2\x3b\xc2\xfc\xcf\xd7\x1f\x18\x70\xf2\xb0\xfa\x30\xad\xd0\x05\x30\x2e\xd0\xc9\x30\x39\x30\x7b\x30\x48\xb0\x0b\xe8\x15\xa4\xcd\xac\x83\xa2\xb7\x1a\xcb\x96\x3e\xde\x39\x33\x21\x5d\x3c\x15\xd6\xe9\xf8\xa1\x92\x2e\x82\x46\x1d\x8a\x91\x02\xf2\xf4\x12\x78\xdd\xf0\x5e\x9f\x8d\x20\x5a\x3e\x45\x81\xc9\xbc\x6f\x7b\x57\x09\x4c\x01\xce\x40\x08\xe0\x0b\xf4\xbf\xc3\x7a\x27\xfe\x4e\x10\x06\x05\x43\x85\xb2\x8e\x9b\x5e\xc6\x4a\x9f\xd6\x31\x76\x51\xa5\x9f\xae\x36\x25\x87\x20\x7a\xcd\x0b\xcd\x62\x5f\x9d\x5c\xf4\x82\x65\x97\x44\x0b\x39\x04\x2a\xeb\x6d\xf6\x14\x16\x40\x08\x10\x03\xd2\x80\x04\x80\x06\x70\x00\x74\x6f\x1e\x2f\x12\x9f\xe3\x51\x62\x88\x4b\x59\x78\x44\xda\xd4\x48\x2d\x6d\x37\x78\xc6\x0a\x5b\x25\x8b\x5f\x92\x3d\x82\xb0\x1d\x46\xf5\xf4\x64\x5e\x79\x44\xa8\x43\xb0\xc6\x61\xeb\xdf\xad\x00\xa8\x00\x3f\x00\x0d\x30\x02\xd8\x6f\xb3\x28\x58\x00\x1e\x80\x0b\xc0\x00\x78\x20\xc2\x10\x13\x88\x52\x99\xe6\x84\xf6\xd4\x3e\x5b\xd4\x1f\x44\xcc\x5b\xf6\x05\xd4\xa6\x64\xd7\x46\x8e\x78\x50\x9b\xd1\xa9\xf8\x08\xc7\x32\x79\x11\x82\x90\xbc\x21\xa5\xdf\x7a\x37\x69\x00\x26\x80\x12\x00\x07\xa8\x00\xe9\xb7\x3e\x65\x4c\xe0\xc7\x47\xad\x9f\xf4\xf8\x46\x0c\x0f\xc2\xb9\xaa\x1d\x16\x38\x97\x3b\x9b\xb6\xe3\xf2\x2d\xa1\x45\x11\x89\xb4\x7e\xf7\xb6\x56\x3a\x50\xd2\xb6\x5c\x2f\x94\x27\x98\x4f\x30\x55\x80\x2f\x80\x05\x60\x01\x78\x6f\x3a\x46\x00\x05\x40\x00\x44\x00\x58\x40\xe4\x03\x0b\xdc\x02\x8e\x31\xed\x0e\xbf\x89\x12\xb5\x49\xf8\x53\xe9\xe1\xb7\xb9\xaa\xee\xec\xaa\x95\xf4\xa7\x30\x2e\x57\x2a\x13\x3f\xa5\x51\xa1\x70\x26\x4c\x42\x69\x44\x1d\x88\xcf\x00\x1c\x40\x06\x80\x03\xc6\x00\x12\x00\x03\xa0\xbf\xf5\xe4\x20\x03\x78\x00\x25\xcc\x0c\xd6\x28\x4d\x30\xff\x77\x25\x76\xd3\x08\x10\xe8\x62\x7d\xf5\x79\x04\xa2\x89\x2a\x3f\x34\x0e\xc5\xe7\xd1\x26\x53\x1b\x57\x2a\x85\xb3\x90\xd2\x02\x53\x12\x86\x06\x40\x02\x98\x00\x06\x40\x19\x90\x7e\x57\xf0\xc1\xe3\xa3\x14\x38\x02\xf8\x12\xe4\xc4\xe7\x70\x44\x71\xa2\x7b\x56\x3a\x71\x27\x2d\x64\x5b\x2e\x10\xe8\x97\xd4\x6e\xe2\x74\x7a\x67\x79\x85\x6a\x5a\x5b\xa8\x8e\x0b\xbe\xb1\xad\x32\x87\x10\x29\x93\x36\x91\x01\xe2\x09\xb8\x3a\x58\x05\xb8\x1c\x14\xfe\x17\xae\x6f\xf9\xb0\x24\xdf\x69\x7e\x8c\xc2\x37\x23\x14\x20\x5b\xe0\x06\xd2\x9e\xf1\x73\x28\x12\x1b\xfb\xbb\x91\x80\x40\xbf\xf5\x4f\x7f\xaf\x7c\x1f\x22\x6e\xd0\xcb\x8b\x88\xc3\xf2\xd1\xb3\x2e\xd5\x51\x96\x41\xe1\x21\xa3\x91\xc3\x76\x80\x29\x85\x5d\xf9\x11\x89\xf0\x0e\xc9\x13\x95\x09\x43\x0a\xcb\x0e\xf7\x0b\xae\x21\x21\x2c\xf1\x1c\x15\x3e\x67\xb3\x94\x93\xf6\x8c\xad\xaf\xff\xdb\xbe\xfd\x6d\xce\xce\xd1\x54\x5f\x47\x7e\x79\x5a\xda\x75\x18\x9d\xeb\xb4\xe9\xb4\xaa\xa4\x18\x39\x9b\x2a\x69\x08\x5a\x29\x46\x01\xb6\x06\x2e\x37\x7e\x3a\x31\x1b\xe9\x2a\x85\x19\xb5\x14\xed\x24\x03\x0e\xd3\x35\x3b\x89\xe8\xa3\x1a\x84\xd9\xba\x87\x78\xd4\x5b\x15\xc7\xab\xca\x29\xce\x72\xdb\x90\x7c\x63\x70\xa1\x48\xc2\x7b\xff\x1c\xfb\x66\x83\x74\x05\x6f\x81\x64\x7a\x56\xe2\x50\x32\x5c\x0a\x7a\xea\x14\x5a\x16\x46\x61\x66\x3d\x36\x48\x8e\x17\x5e\x4f\x7e\x22\xc1\x75\x91\x3e\xa5\x02\x23\x44\x27\xb5\x60\xfe\x7f\xad\x40\xee\x08\x77\x6e\x66\xa0\xba\x34\xab\x32\x32\xbb\x22\x4f\xbd\xfc\xad\x2c\xb4\xdd\xa4\x45\xb8\x69\x19\x51\x98\xf6\x58\x16\x38\x78\xb8\x59\x78\x3b\x04\x76\x84\xad\xc5\xc6\xa4\xf4\x64\xb9\xe4\xcf\x94\x3f\xeb\xd3\xd8\xd9\xf9\x09\xc5\x35\xe7\xff\xb1\x83\xf1\x5b\xe5\x4c\x63\xd5\x71\x24\xb7\xe5\x73\xc9\x55\x0a\x6e\x88\xa7\xab\xbe\x99\x82\x86\x97\x78\x34\xbf\x86\x40\xa9\xd0\x8d\xe8\x94\x44\xa5\x0c\xad\xdc\x9c\x12\x81\x72\x82\x46\x8b\x4e\x84\xde\xb2\x11\xab\x75\x82\xd7\x7d\x94\x4d\x56\x48\xf5\xbf\xab\x38\x7e\x51\xee\x9d\xcd\xdd\xf7\x65\xd6\xb5\xe6\x35\x27\xbe\x0b\x94\x76\x9c\x32\xae\x56\xd6\x96\xc5\x92\x7b\x52\xd8\x54\xb6\x56\x1d\xd2\xb4\xd3\x29\xd3\x3f\x33\x0e\x32\x37\xb1\x8e\xb7\x13\x70\x2e\xf6\xd0\x0a\x3b\x4c\xd3\x2e\x23\x6c\xfb\x93\xb3\xea\x25\xff\x26\xf4\x24\x57\xa7\x78\x15\x5f\xf6\x4c\x6c\x80\x9f\xaa\x03\x99\xc1\x81\xd6\x9e\x0e\x81\x5e\x9a\x81\x80\x71\x98\x39\x85\x55\xad\x6d\xa6\x43\xbd\x2b\xa4\x87\xa7\x6f\xa8\x1f\x7b\xe8\x78\x72\x6a\x51\x7a\xe3\xed\xe0\x9f\xb8\xf7\x0c\x73\xdc\xb0\x22\x3a\x42\xd3\xfa\x5a\x6e\x9a\xe1\x11\x05\xe5\x03\x6b\x6f\x65\x11\x65\x59\x62\x43\x62\x37\xe7\xc8\xe8\x82\xee\xde\xe9\x9d\xe0\xff\x25\x48\x37\x74\x27\x16\x27\x5e\x24\xb9\xa2\x20\xa4\x1e\xb1\xef\xdb\x6c\xfb\x5f\xd8\x89\xbb\x0f\xb1\x90\x3f\x18\xd8\xbc\x50\xea\x9e\xfe\x14\x29\xee\xc7\xee\xce\xef\xa1\xe5\x71\xe1\xf3\xc5\x4f\x39\x70\x32\xd4\x2e\xa2\x36\x66\x27\xc1\x38\x25\x38\x73\x23\x67\xa6\x68\xba\x36\xb8\x7b\x76\xca\x63\xb3\xeb\xaf\xfc\xbd\xf6\xd9\x25\x99\xa5\x1b\x7c\xdf\xb8\x55\x62\x92\xde\x18\xa5\x10\x22\x18\x4a\x18\xae\x1b\x85\x15\x73\x9c\xf0\x9a\x34\x91\x6e\x94\x45\x98\xeb\x54\xac\x5d\x0e\x5f\x35\xdd\x50\xd0\xd5\x31\x31\xb4\x8e\x7a\xfa\xeb\xaf\x11\x7e\x5b\x5d\x04\x6d\x7d\x9f\x19\xed\xcf\x6b\xec\x2d\xae\xca\xfa\x92\xc2\x96\xf2\x2b\x6d\x3e\x93\x33\xab\x3b\x4f\xbb\x08\xba\x74\xb6\x22\xbf\xf6\x63\x63\x6a\xcb\x45\x77\x75\x7f\xca\x04\xd8\xea\xf4\xf1\xc1\x63\xeb\xdf\x57\x01\x2f\x79\xe7\x19\x9b\x13\x33\x6d\xfd\xd9\x8d\xbf\x2b\xe6\x8b\xe0\x0b\x5b\x4a\xc2\xca\x85\x2b\xbe\x55\x4b\xd7\x85\xb5\x78\xb6\x76\x77\x6b\x0d\x68\x8d\x1a\x4d\xbe\xcc\x97\xad\x43\x1d\xd3\xfe\xba\xff\x9b\xbc\xe6\x89\xed\x6e\xe2\x2a\xf1\x7c\xe0\x78\xe9\x70\xe8\xf0\xf6\x40\x72\x3f\x68\xef\x64\x5f\x63\x97\x65\x2f\x6b\x5b\x7c\xdb\x6d\x4b\x67\x63\x64\x6b\x6d\x13\x79\x9f\xe8\x92\xfd\x99\xfb\xef\xf7\x7e\xce\xba\xfb\x78\x66\x76\xe8\xb8\xb5\xb2\x31\xb7\x5c\xbb\xb4\xb7\x2c\x34\xd7\x32\x97\x31\xcb\x32\xcb\x38\xc7\x3f\x33\x36\x3d\x36\x6d\x32\x95\x38\x11\x32\x23\x3a\x91\x3c\x19\x31\xbb\xb9\x11\x74\x4c\x75\x67\xf1\x67\xfd\x4d\xf8\xe9\xfe\x6e\xc7\x7a\xd8\x22\xd3\x34\xf7\x78\xda\x88\xc9\x90\x45\x7f\x4d\x9f\x45\xf7\x40\xb7\x44\xf7\x7a\x37\x44\x4f\x6d\xcf\xcf\x9e\xa1\x8e\x6f\xed\x05\xed\x28\xed\xb9\x1d\x72\xbd\xb0\xe3\x7e\x4b\x45\x7b\x94\x57\xa4\xaf\x7f\x78\xc3\x5c\xea\xef\x33\xac\xbd\x9f\x99\x1a\x93\xef\x2f\xee\x46\x69\x19\x6b\xac\xac\xef\xae\xa9\xaa\x16\xae\x0c\xac\x34\xab\x4e\xa9\x81\xab\x34\xae\x1a\xae\xba\xac\x38\x29\xcb\x29\x0f\x29\x13\x2e\xbf\xad\xa1\x6e\xdb\x1a\x12\x98\xdd\xdc\xc2\x3d\xe7\x79\x1e\x03\x81\xae\xeb\x77\x64\xe6\x8f\x47\x65\x7b\x18\x5b\xc6\xeb\xd7\xab\x34\x4a\xbf\x15\x36\xe4\x75\xe6\xc0\x67\x25\x67\xb9\x64\xde\x66\x4e\x66\x9a\x66\x1a\x67\x5c\xa4\xff\x4a\xdb\x4b\x13\x4c\xd9\x49\x53\x4d\x13\xc8\xe6\x2c\x93\x6d\x1c\xea\x5d\x98\x4a\xd9\xf8\x78\xaa\x7c\x07\xb3\xab\x3e\x33\x31\xc4\xd2\xf6\xb1\x26\xae\xa4\x20\xbf\x2a\x93\x2b\xd5\x20\xc1\x3c\xf6\x36\xaa\x3c\xfa\x53\xc4\x58\x38\x57\x78\x67\xf8\x79\xb8\x74\xe8\x63\x98\x4c\xa8\x6b\x68\x55\xd0\x53\x28\x45\xc8\x74\x54\x6b\x6a\x4d\x61\x7c\xdd\xb7\xae\xee\x09\xa1\xb5\xca\xc3\x8d\x45\xe8\x61\xd6\x56\xe7\xaa\x1f\x79\xc5\xa9\x9c\xf1\xd4\x51\xfa\x21\x7e\xfe\x7b\x3e\x87\x5e\xab\x5e\xe2\x1e\xd7\x6e\x0e\xae\x3f\x5c\x63\x5d\x1e\x5c\x9c\x5d\x3d\x5c\x4c\x5c\x6a\x9c\x2a\x9d\xce\x9d\x87\xbd\xf0\x42\x33\x13\x4b\xf3\xe0\xaa\x59\x3b\xbf\x8f\xdf\x6e\xca\x8d\xb7\x77\xb9\x54\x0b\xe4\x4e\x27\x93\x44\x32\xf8\xc7\x7b\x62\xb9\x22\x3b\xb0\xda\xbd\xb7\x36\xb1\x14\x36\xbf\x32\x13\x31\xe9\x34\xb5\x31\xbe\x33\xd6\x36\x11\x32\x0e\x35\x6a\x32\x92\x35\x1c\xd0\x7f\xb4\x22\x71\x8d\x08\x34\x8b\xf3\xce\x3e\xad\x72\xee\x4c\x59\x12\x1e\xca\x6c\x0a\x28\x26\x49\x69\x8c\xe0\xf4\x9e\x72\x16\xb7\x92\x33\x19\xd7\xbf\xd4\x51\xd1\x12\xd2\x20\x50\xb3\x52\xdd\x55\xa1\x57\x7e\x52\xd2\x57\x82\x57\xea\x50\x54\x55\x52\x54\x08\x52\x18\x57\x90\xd4\xbc\x32\xc5\x74\xb4\xf7\xcb\x88\x05\x72\xf8\x6a\x74\x67\x17\xfa\x08\x6a\x62\x72\x3d\xe2\x04\x02\xa8\x9c\x94\xcc\xc0\x75\x79\x55\x7c\x14\xbc\x64\x51\xa5\x18\xc4\xf7\x45\xc1\x44\xa6\x45\xbf\x0b\x27\x0a\xcb\x0b\x6e\x0a\x0d\x08\x41\x0b\x8c\x0a\x66\x08\x69\x08\xe0\x4a\xaa\xab\xf4\x1b\x7a\xd8\x97\xfb\x89\xc7\x99\xe4\x22\xce\x2c\x74\xb9\x55\x66\x65\xe8\x44\x6a\x7a\x74\x58\x5b\xea\xc1\x2b\x34\x89\x27\x0a\xe6\xf2\x1a\x70\x8e\x71\xf8\xb3\xa6\x32\x8f\xb3\xb2\xb3\x28\x31\x7d\x60\x4c\x66\x02\x18\xe6\x19\xf7\x98\x50\x19\x3a\x18\xa6\x38\x26\x44\x16\x94\x58\x0c\xd4\xec\x53\xfc\x25\x13\x3c\x67\x48\xbb\xf8\xcb\x9f\xd2\xab\xc3\xf4\x5c\x33\x4c\x41\xea\x6a\x12\xb7\xbc\x04\x4c\x85\xb4\x30\x54\xfe\x14\xda\x64\xca\xc4\x09\xc4\x2e\xc4\x56\x44\xd0\x04\xf7\x84\x6c\x04\x1a\x04\x4d\x04\x5b\x84\xdf\xf0\x67\x28\x84\x59\xb6\x85\x1c\x14\xaa\x0c\x01\xc7\xd6\x60\xd7\x99\xdc\xae\x87\xca\x95\x0c\x82\xb0\x25\x57\x7f\x93\x18\x95\x6c\x11\x07\x36\x08\x4a\x1a\x3c\x5b\xac\x00\x0c\x18\x34\x63\x94\x22\x64\x0a\x24\x23\xc4\x18\x84\x67\x44\x5a\x04\x66\x84\x70\x84\x4b\x84\x19\x24\x3c\x74\x25\x12\x06\x66\x49\x61\x24\x65\x36\x33\x01\xb7\xd3\x05\xfc\xde\xeb\x9a\xe3\x2c\x8d\x28\x09\x0f\x0f\xf3\x63\xb5\x70\xd1\x60\x96\x76\xd2\x20\x34\x61\xb8\x68\xe8\xa4\xaf\x71\x9f\xc7\x20\x7b\x21\x9a\x20\x60\x20\xa8\xc1\x5f\xc1\x57\x20\xe4\x20\x6c\x20\x1a\x20\x12\xbe\x9a\xa2\x9c\x92\xa6\xb0\x09\x8b\xdf\x6a\x8a\x59\x07\xac\xd2\x0d\xfb\x37\x41\x15\x5c\xc6\xeb\xfa\xa1\xd8\xe8\x6b\x47\x4a\x61\x70\x46\x51\xd2\x63\x54\x41\xdb\x00\x66\x00\x1a\x40\x02\x70\x03\x62\x6f\xb3\x49\xb1\x01\x7c\x00\x12\x90\x02\x98\x01\xd8\x0f\x22\x70\xd9\xd8\xf2\xd4\x8d\x7c\x30\x0a\x69\xc6\x4a\xdb\x92\x93\xc7\x9d\x01\x15\x9e\x69\x53\xa1\x31\x2e\x94\xc6\xb6\x4a\x92\x82\x00\xfd\x0a\x7e\x0a\xbc\xfa\xa7\xea\x7f\xbc\xb5\xbf\xb9\xdb\xe2\x01\x90\x6f\x51\x90\xde\x56\x34\x84\x80\x3b\xf4\x05\xa6\x34\x65\x01\x17\xbf\x2c\x93\x9e\xd5\x71\xe0\x12\xdf\x60\x65\x83\x57\x5e\x78\x2c\x8b\x37\xa6\xe5\xb9\xa6\xb4\x04\x15\x7b\x3e\xf9\x4f\x74\x84\x6f\xb8\x80\xd4\x5b\x47\x11\x0e\x80\x08\xa0\x03\x14\x00\x31\xc0\xf1\xe6\x97\x83\x08\xfc\xf8\x2a\x81\xfe\x8e\x1c\x9e\xe3\x4c\xca\x5e\x17\xe6\xe6\x72\xc7\x64\x4a\xb8\x23\xb8\x2c\x3d\x65\x3d\x68\xcf\xf1\xc1\x00\x41\x7e\x8d\x5f\x80\x2e\x01\x8f\xe6\xa7\xf3\xc7\x24\x00\x0e\x40\x7c\xeb\x50\x46\x04\xb8\x00\x06\xe0\xf3\x5b\x3d\x04\x35\x80\x0d\x85\x84\x42\x42\x0a\xc3\x6e\x24\x49\xa1\xd5\xf7\x1b\xfb\x64\x67\xe9\xdb\x00\x79\xad\x6a\x8e\x73\xf4\x77\x4f\x6e\x0b\x73\x75\x64\x31\x2d\x36\x67\x32\x62\x34\xc9\xaf\x4c\x80\x18\x80\xff\xe6\xe9\x22\xfa\x56\x1b\x4b\x07\x14\xbd\x07\x3e\xb0\x81\x59\x7e\x69\x42\xaf\xa6\xcc\xe4\x09\x95\xbb\x35\xa2\x04\x81\x6e\x96\x36\xb3\x26\x60\x5a\xb7\x4b\xa4\x92\x95\x03\x8e\x1d\xe0\xf5\x1d\xe5\xb1\xf8\xc6\xe8\x62\xf0\xca\x7e\xe2\x7c\x38\x02\x94\xde\x7f\xfd\xf8\x09\xdc\x0b\x12\xe6\x73\xd3\x57\x4d\xe8\x2f\x30\x77\x70\xea\xdf\x29\x91\x74\x89\x22\x58\x00\xd1\x47\x0d\x63\xab\x56\x10\xe8\x99\xee\xd0\x7d\xbe\xac\xcf\xa0\x86\x2d\x5b\x39\xb2\xd3\x83\xda\x02\x5c\x3d\x48\x5c\x97\x5d\x92\xbc\x01\x1d\xea\x2b\xe4\x17\x0e\xe8\x7f\xfc\x13\xb3\xe1\xb7\x11\xf7\x51\xda\xd1\x93\x30\x3c\x31\x43\xb0\x53\xf1\xfb\xe8\x5a\xf9\xf1\x14\x7c\x8d\xb4\x5d\xde\xce\x9b\x2f\x95\x37\xca\xc7\xa2\x5b\x88\x8a\x29\x93\x20\x02\x8d\x1c\x46\x0c\x12\x14\xe4\x05\x05\x18\xdb\x08\x71\x10\xfb\x91\xe2\x50\x9d\xd0\x7f\x61\x55\xe1\x32\x12\x88\x10\xd1\x91\x1c\x93\x6b\x50\x64\xd2\xa0\xd2\x56\x73\x1b\x48\x13\x68\x77\xd9\x52\xf8\xbd\x79\x70\x3c\xaa\x1f\x70\xcf\x99\xf5\xd4\x57\xc7\x65\x45\x46\x7d\xf3\xf2\xb0\x12\xd0\x22\x94\xba\xe2\x4e\xa4\xaa\xc4\x2b\x27\xc0\x20\x7a\x26\x8d\x24\xdf\xa1\xea\xa4\xd5\x60\xd0\x63\x6e\x66\x95\xe7\x24\xe4\x31\xe4\xdb\x96\xc0\x52\x37\x36\x2f\xf0\xf0\x8b\x9c\xff\x67\xa6\x3c\xff\xbd\x6e\x3d\x1a\xd2\xaa\x5d\x82\x9e\x3c\x1d\x92\xef\x92\x6d\x92\xa7\x1a\x2e\xc6\xc6\x9a\x46\xa3\x48\x7b\xc8\xf8\x89\x89\x85\x95\x88\x83\x9f\x87\x95\xef\x48\x70\x4c\x54\x54\x7c\x5a\x46\x52\x1e\x5f\x15\xcb\x78\xdb\x39\x2e\x04\x3c\xf5\xd3\x3f\x23\x3c\xa2\x1d\xa4\x2d\x40\xf5\x29\xd4\xa1\xe7\xd9\xc4\x29\xf9\x0d\xda\x9b\x1b\xe0\x28\x6e\x09\x3c\x73\x5a\x71\x5b\xf0\xe2\xf3\x9f\x0b\x0d\x89\xf6\x48\x8a\xc8\xe8\xc8\x67\x2b\xf5\xaa\x83\x6b\x6d\xe8\x3a\x19\xdd\x39\x24\xf8\xaf\xc5\x4f\x17\xa8\xfc\x2b\xdf\x5f\x69\x6f\x61\x4e\x62\x77\x48\x56\xc4\x65\x32\x44\x5e\x7b\x25\x5b\xb7\xeb\x62\xcb\xfa\x88\x83\x49\x02\x52\x05\xb2\x86\x0a\x4a\x2a\x4a\x1a\x5f\xb4\x74\x74\x8a\x0c\x8a\x4c\x1e\xcc\xb7\x6c\x78\xec\x8f\x7c\x49\x62\x8c\xb2\x1f\x6a\x30\xfe\x4d\x9c\xe4\x63\xd3\xa5\x5f\x43\xba\xcd\x39\xc5\x5b\x29\x65\x61\x9e\x1e\x9a\x96\x4a\xda\x3b\x2a\xdd\x6a\x05\x1a\xae\xda\x32\x7a\x3c\x86\xfa\xc6\x73\x16\xe5\xd6\x4f\x76\xe4\xce\xd5\x1e\x8a\x5e\x60\xbe\x18\x91\xdb\x19\x4f\x15\x1c\x1d\x84\xff\xa1\xce\x1d\xcc\xae\xe5\x9c\x40\x1f\x52\xbd\x48\x41\x45\xd2\x62\xf0\x83\x6b\xba\x25\xab\x71\xbf\xc9\xb4\x19\xb3\xc5\xb5\x8d\xb8\xbd\x95\xb3\x90\xfb\x3b\x2f\x6d\xdf\xd9\x40\x8f\x50\xde\x28\x8b\xd8\xb4\xb4\xcc\x52\xca\x16\xc5\xe1\x3f\x3b\x9a\x7d\xbd\x18\xdc\x18\x9b\x7a\xd7\x75\x59\x13\x9e\xdb\x9e\x30\x1a\x38\xea\xc6\xeb\x98\xe3\x84\xe3\x92\xe2\x66\xe1\xb9\xec\x1b\x1b\x10\x19\xa2\x18\x81\x1c\x43\x12\x5f\x9c\x3a\x92\x2e\x95\x9d\x53\x1c\xd6\xd8\x32\x10\x37\xff\x97\x33\x94\x27\xed\x93\xd0\x35\xfc\x71\xd6\xce\x98\x2a\xa4\xdc\xf2\x78\xce\x90\x63\x3f\x5f\x7f\xeb\xc0\x89\x90\xea\xf0\x80\x28\xd7\xd8\x95\xc4\xdd\x34\x9a\xcc\xce\x5c\xef\x42\xc9\x72\x8e\x8a\x83\x86\xea\xbe\xce\x59\xba\x1d\xf8\xbf\xf2\xf7\xfe\xe9\xa0\x6b\x69\x7e\x94\xa0\xbd\xb7\xea\x25\x57\x32\x79\x28\x96\x31\x8e\x3b\xa1\x26\x19\x35\x95\x21\x63\x20\xdb\x32\xbf\xb0\xa4\xac\x2c\xb8\xaa\xa4\xe1\x7d\x8b\x58\x07\x43\x5f\xd1\x74\xd1\xe6\xaf\x8b\xc8\xbf\x33\xfc\xd6\x65\x3f\x75\x91\x68\xd4\xb1\x43\xa0\x1a\x2a\xff\x22\x87\x3c\x57\x37\xdf\xa4\xf0\xa8\x84\xb2\x5c\xa9\x8a\xa0\xd6\xaa\xd1\xbc\xa5\xa1\x93\xa0\xef\x74\x58\x61\x7c\x6e\x21\x61\x53\xff\xfc\xdb\x0b\xcd\xdf\x23\x80\x40\x37\xc1\x7b\x0b\x8b\x9b\xa3\x85\x9d\x04\xf5\x65\x55\xd4\xd5\xb4\xb5\xb8\xf5\xda\xcd\xa6\xad\xc3\x1d\x03\xdd\xcf\x03\x4c\x23\xae\x13\xcb\x33\x6d\x8b\xba\x1b\xdb\xbb\x83\x67\xb2\xcf\x2a\xff\xad\x7f\x56\x79\x88\xba\x6d\xbe\x96\xb9\x80\x3f\x97\x3d\xe3\x39\xbb\xb8\x48\xbe\x10\xbc\x40\xbd\x40\x3d\xe7\x3e\xf5\x3f\x3d\x3f\x89\x3a\xfa\x71\xdc\x7f\x8a\x70\xdd\xfe\x5f\xd6\xba\xff\xd0\x4e\xdc\xa2\x5e\x04\x1c\x5e\xee\x1b\xed\xf0\x6c\x6a\x6d\x52\xae\xf2\xaf\x9d\x2c\x5f\xae\x51\xac\x95\xae\x04\xac\x62\x2e\xd3\x2d\xaf\x2d\x83\x2f\xff\x5e\x1c\x5b\x29\x5b\xbe\xdd\xb6\x3c\xd5\xff\x95\xfd\x67\xf5\x63\xed\xd5\xcb\x71\xe5\xce\xe0\x3a\xfe\x92\xc2\xac\xc9\x34\xca\x44\xc7\xe8\xc8\x88\xcd\x08\xf4\xd0\xe5\xf0\xea\xb0\xc5\xb0\xde\x88\xf2\xf0\xa7\xa1\x4f\x43\x83\x03\x37\x83\xc1\x03\x37\xc3\x44\x93\xc5\x2b\xa6\xfb\xb5\xd7\x16\xbf\x4f\xfe\xf8\x04\x9c\x4e\x4a\xb6\xa1\x96\xb4\x66\xe6\x47\xdb\x06\xa3\xba\xdb\x3a\xd3\xda\x5a\xdb\xea\x9b\x83\x9a\x23\x9a\xe8\x1a\x49\x9a\x12\x9a\xe4\x1b\x5d\x9b\x84\x1a\x5e\xea\x1b\xeb\x25\x1b\x94\x1b\xfa\x1a\x2c\x3b\xfa\x47\x70\xe6\x25\xb6\x83\x2e\x58\x5e\xc0\x40\xa0\x9b\xb0\x03\xee\x95\xd0\xa9\xba\x21\x81\x5e\xe4\x56\xd6\x46\xc4\x1a\x98\x72\xcb\x72\xa6\xe2\xb4\xe2\xf8\xc2\xfb\xfc\xb4\x7c\xbb\x82\x9f\xf9\x14\x05\xb0\x05\x91\xb9\xab\x39\xe5\x79\x3b\xb9\x92\x05\xe2\x85\xec\x15\xf6\xcd\x56\xfd\xa2\xd3\xa1\x1b\x6c\xa7\x55\x77\xa1\x87\xbb\xcb\xf2\x13\x48\xbd\x64\xad\x24\xd5\xbe\x65\x1c\x85\x55\xd9\xe7\x19\x42\xa9\xaa\x29\x42\x49\x3f\x12\x0e\x12\x38\xe2\x18\xe2\xb3\xe3\x08\xe3\x46\xe3\x90\x62\x8b\x62\xb2\x63\x59\xa2\xfc\x62\xf1\xe2\x7e\xa6\x3f\x14\x8b\xd6\x93\x76\x3b\x4d\xf8\xae\xa9\x9d\xd6\x6d\xe0\x4d\x44\x76\xa7\xd5\x27\x94\x33\xe5\x4a\xa6\x52\x26\x48\x44\xdb\x45\xe4\x84\x6e\x04\x23\x07\x8e\xfa\xb9\xf9\x99\xfa\xbd\xf3\x2d\xf3\x39\xf3\x29\xf4\x99\xf2\x6e\xf1\x3e\xf7\x8e\xf1\x7a\xf2\x89\xf5\xc5\x0a\x6f\x48\x86\xcf\x7b\xa9\x2e\xe9\x74\x18\x97\xdc\x73\x9f\xab\x1c\x78\xdf\x64\x58\xe6\x96\xd9\x17\x3f\x18\xde\x16\x28\xed\xbd\xea\xee\xe8\x5a\xe6\xf8\xe4\x60\x6e\x07\x69\xeb\x61\x43\x6d\xf3\xde\x16\xd5\xba\xdd\xba\xd3\x06\xde\x4a\xdd\x3a\xdb\x72\xc5\xea\xca\xd6\xc9\xdd\x22\xa8\x23\xfe\x7b\x8e\x69\x55\x7c\x27\xf2\xc6\xe0\xf8\x72\x07\x6d\xa5\x60\x76\x6d\xfc\x41\x70\xa9\xe7\x0f\x27\x0d\x1b\x7a\x0b\x28\x53\xc0\x50\x56\xdf\x45\xd7\x43\x97\x5e\x57\x41\xc7\x4a\xbb\x48\xd3\x4c\xcb\x44\x3b\x4e\xfb\x93\x76\x8c\xb6\xbd\xd6\x7b\x1d\x5f\xb3\x65\xa7\x40\x7f\xae\x98\x9b\xec\x90\x2a\xfd\xe5\xc3\xe1\xde\xa6\x89\x62\x88\x14\xa2\xd0\x38\xcf\xef\x76\x3c\xc6\x6c\x3a\x5a\x1a\xec\x2a\x08\x0a\x25\xf2\xb2\xb2\xf0\xd2\xec\xd2\x34\x52\xed\xd2\x4a\x92\x57\x52\x78\x92\x73\x92\xb6\x52\x34\x12\x33\xd2\x44\xd2\x0b\x6a\x5a\x46\xe2\xf6\x64\x3e\xb9\xd1\xe6\xd9\xfb\x0b\x3b\x03\x1c\xf5\x97\xf9\x8f\xf1\x23\x01\x12\xce\xca\x26\x37\x9a\x1f\x15\x78\x25\x20\x84\x23\x05\x43\x05\x20\x79\xec\xb8\xa3\xb8\xa6\xb9\xbc\xb9\x88\xb8\xf4\x38\x69\xb9\x28\x39\x5d\x39\xe1\x38\x52\xb9\x14\xb9\xed\x45\x6f\x14\xad\xf4\xb5\x6d\x13\x7d\x6d\x63\x96\x16\xfc\xfb\xe2\xea\xcc\x73\xd1\x63\xbe\xfa\x1c\xd8\xa4\xea\x2a\x29\xea\x09\xa7\x70\xe5\xb0\x80\x31\x4a\xd1\x7b\xd2\xfc\xa2\x86\xa2\x82\xa7\xac\xa1\x74\xa7\x98\x26\x4f\xa0\x38\xa0\x8c\xa3\xc4\xa6\x88\xa0\xf0\xa6\x6a\x62\x85\x15\xb4\x53\xe0\xd0\x0b\xb7\xeb\xf1\x2b\x5a\xa4\x1e\x50\xae\xf3\xc9\xfd\x10\x9b\xe8\xf3\xcd\xda\x5a\x0b\x5d\x9a\x9e\x97\x8f\x01\x86\x4c\x82\x20\x11\xef\x06\xe7\x1e\xbb\x1b\x2b\x1c\x33\x1c\xe3\x1e\x93\x18\x63\x00\x63\x1a\xe3\x0c\x23\x1a\x63\x02\x23\x0c\x73\x9c\x44\x88\x91\x45\x10\x45\xbe\xd9\x70\xdc\x89\x7c\x65\x7e\x18\xb7\x51\xab\x00\x29\xee\xca\xb7\xd2\xc6\x51\x07\x5a\x6a\x96\xdb\x8c\x3a\x1f\x17\x1f\x49\x1b\x3e\xfe\xfb\x3d\x5c\x1f\xec\x31\xcc\x4f\xe8\x68\x68\x66\x68\x66\x68\x99\x6f\xb3\xdf\xee\xa0\x2d\xa1\x9d\x61\x28\x90\x79\x08\xf3\x19\xb3\x85\x82\x54\xd0\xcd\xfd\x37\x16\xc7\x71\xdb\xe2\x4a\x45\x93\x1d\x82\xfc\x9c\xd0\x0c\xb0\xe4\x2e\xf9\xb2\x68\x8d\x70\xf6\x7e\xd8\x83\xab\x83\xa5\xbe\x3f\x7b\xa7\xfa\x36\x63\x1e\x05\xc0\x7f\x9b\x63\x8d\x0a\x10\x00\x9e\xc0\x0e\xd4\x2e\x0a\x26\xe9\x1e\x47\x90\x64\xb0\x0e\xd7\xbe\xc3\x9c\x66\xcf\x4e\x75\x42\x96\x40\x24\x8b\xfb\xa1\xf9\x2f\xb5\xef\xa2\x86\x2c\xdb\xc4\xd7\x28\x8c\x9f\x6d\x00\x06\x80\x1d\x80\x05\x48\x00\x26\x80\x02\xc0\x02\x04\xdf\x3a\x6b\x48\x01\x04\x00\x16\x5c\x01\x41\x98\x60\x93\x31\x4e\xb0\x5d\xf9\xf4\x3c\x62\x2d\x6e\x04\xd4\x3c\x59\xf4\x9a\x18\xe4\x3f\x69\x07\xab\x5b\x28\x33\xc2\xbd\x48\x1d\x85\x9d\x05\xd7\xf7\x41\xfd\xcd\x9b\x1f\x11\x60\x7c\x73\x03\xc1\x05\xe8\x00\x98\xb7\x6a\x8c\x2f\x60\x0d\x3f\x3a\xf1\x3f\xd3\xdb\x0b\xd8\x29\x0e\xfc\xa2\xde\xbb\x9f\x63\xed\x29\xa8\x0c\xcc\x90\x08\xaf\x70\x33\x31\x19\x54\xde\x11\xb6\x63\x56\x25\x7a\x45\xe6\x82\xaa\x06\x88\x00\x24\x00\xee\xad\x3b\x18\x1a\xf8\x0e\xf0\xbe\xb9\xe6\xc9\x02\xaa\xef\x5a\xbe\xeb\xe3\x05\x31\xd2\x8b\x40\xa8\xb5\x83\x40\x17\xd2\xab\x5c\xc3\xdc\x4d\x42\xf9\x2f\x71\x49\x7e\x60\x36\x73\x3a\x1c\xd2\x45\xdc\x78\x54\x17\xd8\xea\x70\x52\xef\x5a\x01\x3d\x40\x02\x20\x7e\x67\xfa\xc1\xe1\x63\x21\x38\x33\xa4\x01\xe4\xc3\xe7\xa7\xaf\x90\xdf\xc4\xd0\x8a\x28\xf0\xb9\x48\x64\xba\xf5\x59\x40\xa0\x7b\xf9\xdd\x9d\x99\xcf\x9d\x79\xe5\xa1\x69\xad\xa1\x3d\x2e\x97\x26\x36\xca\xce\xc2\x1a\xcc\xc6\xc4\xf7\xc8\x2b\x90\xbb\x9f\x64\x21\x95\xbf\x20\x7f\x6b\x87\xb5\xf8\x2e\xfb\x13\x0a\xa1\x08\x71\x0d\xd9\x19\x8d\x00\xdd\x91\x58\x96\x39\x4f\x64\x4e\x6d\xda\x62\x16\x04\xfa\xed\x7d\x9a\xb9\x9c\x38\xe8\xdb\xc0\x9e\xd7\x1c\x07\xed\x53\x66\x33\xa5\x5d\x25\xc3\xc3\x53\x46\x73\x8f\xe3\xfd\x9d\xf2\xfb\x19\xbc\x16\x52\x2d\xea\x07\xf4\x2d\xac\x7a\x5c\x16\xfc\x10\x02\x17\xe2\x3c\x52\x1e\x0a\x08\x06\x1d\xfe\x43\x05\x3b\xc3\x41\xe7\xb7\xa9\x45\xb7\x38\xdb\x4e\x53\xd8\x1d\xf2\xe5\xa4\x69\x2a\x21\xdb\x2e\x03\xa6\xb0\xaa\x4a\xa2\x05\x6c\x5f\xc8\x82\x30\x71\xb0\xe8\x70\x66\xf1\xdd\x88\xe0\x49\xe9\x29\xd4\xa8\x4e\x68\xb9\xe8\x3a\x19\x1b\x59\x69\x39\xf2\x79\x3b\x64\xc2\x74\x3c\x6d\xf1\xfd\xe2\xfe\x11\xe1\x15\xfa\x78\x75\x09\x7d\xc0\xac\x81\x2e\x9f\x39\x2e\xd4\x1f\xd5\x6e\x4a\xdf\x48\x7e\x4d\xa0\x93\x61\x91\x4c\x83\xe2\x27\x15\x1b\x2d\x2a\xfd\x2d\x53\x1a\x1b\x3f\xa7\x01\x77\x34\x9f\x93\x20\x99\x88\xb7\xb8\xab\x74\xb4\xa6\x9c\xc5\x9a\x07\x28\x0a\xe1\x0f\x46\xbc\xdf\x16\x9a\xdc\xed\x48\xaa\xb0\xc9\xf0\x8a\x40\xf7\xcc\xb2\x2a\xd7\xea\x95\x46\xe1\x56\x60\x8e\x63\xad\xe1\x40\xe4\x0c\xe0\x39\x14\x58\x12\x49\x12\xe7\x91\x46\x91\x0d\x51\x44\x57\x56\x57\x73\xd4\x6e\x34\xa3\x74\x65\x0d\xc5\x4b\xfd\xa3\x6e\xf0\xf9\xf9\x84\x65\x19\x6f\x58\xa7\xa9\xaf\x28\x24\x99\x3b\xb8\xd0\x45\xc0\x74\x5c\x3d\x45\xfc\x5c\x08\x55\x78\x4b\x0c\x53\xbc\x5f\xaa\x49\xae\x4a\x09\x53\x25\x4b\x7d\x4c\x1b\x55\x1f\xce\xe4\x93\x99\xac\xf5\xb4\x33\x74\xe0\x5c\xa2\x64\xa1\xde\xbf\xd9\x1f\xb9\xbb\x3e\xab\xdd\xeb\x55\xab\x96\x2b\x1b\x77\xe2\x3f\xef\x28\x6b\x68\xaa\x42\x20\xcf\xa4\x90\xa3\x94\xaf\x3a\xa2\xe1\xa0\x23\xa9\xd7\x6e\xac\x6f\x16\x69\x59\x69\x33\xee\x8c\xe8\x06\xe1\xf9\x21\xe0\x2e\x2e\x31\xb7\xb3\xd6\xfe\x5f\x11\x7e\x1b\x9c\x3b\xac\xbb\x8e\xcf\xb6\x77\x54\xf4\x64\x69\x46\xb7\xf9\x14\xd9\x79\x19\x15\xe9\xe4\xe9\x05\x18\xcc\x18\xd3\x9a\x79\x5b\x26\xd9\xd2\x3b\x02\x2e\x1f\x3d\x98\x7c\x70\xfd\xe8\x82\xa5\xc3\x52\x62\x6e\xb3\x19\xaa\x74\x3b\x3b\xff\x43\x9d\x87\xa8\x23\x81\xa5\xb4\x21\xb6\xe6\xba\x92\xb1\xf4\xe3\x48\x36\x2f\x28\xfb\x65\x6b\x70\x9b\x06\xbb\x02\x47\x7a\x17\x17\xf7\x79\xaf\x6e\x7f\xec\xa0\xd6\x30\x20\x32\x20\xee\x7d\x32\x5d\x5a\x6d\x8e\x50\x05\x78\xdb\xf4\xd8\x5f\xbc\xe1\x6f\x58\x77\x0d\xe7\x4d\x07\xec\x9b\xec\x8a\x4b\x53\x77\x22\xac\xfd\x3e\x7b\xaa\x7a\x8d\xfb\xa2\xfa\x7f\x0e\xfa\x15\xa6\x17\x69\x19\x0b\x9b\x18\x96\x8a\x97\x11\x98\x9b\x53\x94\x56\xfa\x54\x5d\xdf\x32\x36\xac\xbc\x24\xf3\x17\x74\x06\x5d\x2a\x6d\x11\xcc\x88\xf4\xed\x35\x68\x17\x45\xa6\x1e\x45\x4f\x85\xab\x45\x7d\x88\x92\x8f\x61\x4e\x44\x4b\x49\x49\x1d\xcc\xd2\xcf\x47\x2d\x9a\xae\xd0\xac\x89\xaf\xef\x6f\xae\xeb\x9a\x18\xbc\x9d\xbf\xd9\xab\xff\x2b\x7d\x5f\x8c\xce\x62\x36\x64\xa6\xc9\x7a\x5e\x1b\x1a\x8a\x27\xb3\x02\x52\xd2\xd2\xec\x32\x71\xb3\xc0\x72\x17\x0b\x44\x4b\x59\x2a\x7b\x6b\x90\xeb\xee\x5a\x3a\x3b\x04\xfa\x65\x87\x04\xc6\xe7\xe6\xbf\xee\x92\x5f\xb3\xfe\x9d\xe0\x8f\x8b\x27\xfe\x6b\x07\xd3\x3a\x3d\x48\x8d\x1c\x95\x16\xc5\x24\x25\x1d\xe5\x6b\x95\x5a\x55\x9d\xf5\xc4\x4d\x88\xad\x59\xdd\x73\xbd\xcd\x43\xc8\xe3\x82\x33\x58\x0b\xd6\xab\xca\x3b\x53\x97\x4f\x20\xc2\xff\x5e\x05\x3c\x9c\x9d\x12\xae\xcb\x4e\xdb\xf6\x5d\xb6\x0f\x37\xbd\x36\xab\xb6\xec\xb4\x8b\x77\xe9\xf5\xc2\x0e\xca\x8d\x38\x4d\xf8\x4d\x3f\x2e\x8c\xae\x5c\x6d\x15\x1d\x5a\x9d\x7c\xb9\xa6\xf9\xfd\xf7\x6a\xd2\x7f\x7e\xae\x95\x2f\x71\x8f\xe9\x0f\xc9\xf7\x6b\xf7\x7b\xf7\x14\xf7\xcc\x77\x42\x77\xd9\x77\xef\xef\x7f\xdc\x67\xdc\x7e\xb8\xe9\xbd\xa1\xb9\x11\xbf\xbd\xb8\xdb\xf9\x5f\xf7\x06\x81\x9e\xd1\xee\xd6\x2f\x79\x4e\x5f\x8e\x02\x0e\xb2\xf6\x37\xf7\x1e\xf6\x3e\xee\x3c\xed\x8a\xef\x70\xec\x50\xec\xd0\xec\x80\x6f\x7b\x6c\x2b\xed\x38\x6e\xe5\xef\xa8\x6c\x27\xee\x31\x9c\x4f\x3e\x06\xfc\xed\xd9\x75\xae\x88\x8e\x62\xf6\x64\x37\x56\x57\x03\x96\xac\xe6\x8d\x67\x1f\xe6\x90\x66\xf0\x26\x45\x27\x2f\xa6\xa6\xa6\x22\x27\xed\xa6\xbc\xa6\x20\x26\xc9\x27\x72\xa6\x66\xa7\xd0\xa7\x10\x67\x24\xd7\x86\x0f\xab\x6f\xff\x3d\x17\xed\x95\xfe\xfa\xfb\x21\xd4\x56\xee\x4a\xf5\xcc\xcd\x78\xf8\x88\xfd\xa0\x56\x2f\x72\x2f\x55\x37\x61\x17\x47\xa7\x66\xc7\x52\x87\x62\x07\x72\x7b\x52\x47\x67\x87\x4f\x7b\x46\xbb\x62\x3b\x56\x7b\x52\xfb\x6a\xb7\xf8\x98\xe0\xa2\xc4\x2e\xe2\x25\xe4\x4b\x03\x08\xf4\x84\x71\x96\xbc\x4d\xbb\x8c\x38\x49\x36\x6c\xd1\x7b\xde\x7e\xd6\xec\x57\xbf\x52\x0f\xd4\xb0\x56\x1a\x57\xe8\x97\xf3\x95\xe3\x95\x67\x95\x7b\x94\x7d\x2a\xf3\x2b\x6f\x2d\x83\x2e\x8b\x28\xa3\x2c\xc6\x2f\x8d\xaa\xea\x6b\xbd\x18\x44\x9a\x69\xdd\x24\x3b\xbd\x7c\x71\x3d\xa3\xd8\xb0\x9d\x4d\x1c\x26\xe9\xc6\x6d\xca\xab\x45\x29\x77\x2e\x16\xce\x27\xcd\xc3\xce\x32\xcd\xd4\x4e\x3f\x4e\xd7\x4e\xdd\x4e\x19\x4a\xe7\x4a\xcd\x4b\x9d\x4f\x2b\x4d\x95\x4a\x69\x4b\xf5\x48\x1a\x4b\x01\xcb\xaa\x2d\x35\x69\xc8\xec\x71\x9a\x94\x5d\x6b\xb8\xb6\xda\x3d\x9f\x3f\x1e\x11\x6f\xef\xaa\x91\x2d\x8e\xcf\x45\x49\xb7\x4a\x7c\x8d\x97\x8e\x25\x89\x0c\x0a\x47\x0b\xa3\x0e\xb5\x08\x3b\x0e\x05\x0b\x15\x0a\x5e\x0a\x11\x08\xc3\x08\xb1\x0b\xb5\x0b\xb5\x08\xd6\x0e\x45\x8c\x62\x4b\xd9\x2c\x90\xa8\xf1\xea\xac\x1d\x8f\x3c\x9e\x58\xd1\x1b\xf5\xe9\x94\xaa\xcd\x28\x4c\x4f\x87\x88\x1d\x8a\xf8\x10\xdc\xe4\x6f\xe1\x43\xe8\x51\xe4\xe6\xe4\x16\xee\x32\xe1\x02\xe3\x66\xe1\xb2\xea\x64\xe3\x1c\xef\x0c\xe7\xd2\xe3\xd2\xe6\x5a\xed\x1c\xe4\xd4\xe3\x59\x1e\x22\x93\x40\x9f\xd3\x5b\x65\xd9\xf1\x63\x47\x61\x8e\xb3\x6f\xb2\x61\xbf\x28\x23\xb5\x24\x3a\x37\x20\xd6\x13\xd1\xc5\xd5\xde\xdd\xda\xdd\x62\xcf\xac\xd5\xf4\xcc\xe4\x9d\x09\xbd\x51\xbd\x31\x8c\x21\x98\xe1\xbe\xe1\xb4\xd1\xb2\xf1\x84\x31\xa5\xd1\xa3\xa1\x82\x25\xbc\xf3\xb9\xff\x7d\x4c\x54\x16\x4b\x85\xf8\xe6\x87\x89\xa9\x4e\xb5\x8a\xe1\xec\x8b\x38\xaf\x80\x28\x97\xaf\x36\x5c\x26\xd0\x7a\x44\xda\x8d\x9a\x01\x6a\xac\x2a\xa7\xca\x44\x4a\xa3\x4a\x86\x4a\x75\x4a\x5f\x15\xa1\x14\xee\x14\x32\x94\xe4\x95\x48\x14\x25\x15\x86\x34\xac\x8c\xad\xed\xa5\x7c\xe4\xa3\x04\xb3\x5c\xd7\x72\x47\xeb\x5a\x42\x4b\x9e\x52\x57\xc3\x4b\x3d\x22\xad\x96\x0c\xd6\xd4\xc1\xe4\xba\xa4\xa2\x25\x70\xc5\x62\x44\x82\x05\x5f\x04\x97\x05\x35\x05\xea\x04\x55\x04\xb0\x04\xde\x09\xcc\x09\x58\x09\x31\x0a\x3c\xf3\x5b\x89\x37\x28\x31\xea\x15\xdb\x50\x79\x6b\x45\x0b\xae\x91\x8d\x3a\x34\xe3\x17\xbb\x24\x4d\x06\x13\x3a\x89\x9a\xda\xa8\x97\x49\x2b\x0a\xfa\x71\x8b\xb3\xbb\xb2\xc2\x32\xa7\x33\x15\x31\x76\x32\x58\x31\x40\x30\xa4\x32\xc2\x33\xac\x31\x14\x31\xac\x33\x2a\x32\x1c\xd3\x7b\xb2\xb9\x08\x0a\xc9\xa9\xe8\x88\xd9\xa0\xfb\x5a\xae\x69\x8e\x7a\x35\x67\x16\x7b\x27\xe9\x05\x4a\x38\x06\x18\xce\x2a\xb1\x0b\xdf\xb0\x75\xd2\x62\x91\xef\x93\x56\x93\x10\x10\xde\x12\x06\x13\xb0\xe2\xe7\xe0\x0f\xe1\xcb\xe0\xf7\xe2\x17\xe1\xa3\x10\xe0\x12\x78\xe1\xb7\x92\xc2\x31\x58\xf0\x15\xc9\xfe\xd2\xad\xb0\x43\xda\x44\x1e\x4f\x68\xb7\x29\xb5\x48\x91\x0e\x86\x74\x02\x37\xa4\x55\x54\x13\xd8\x60\x8c\x25\xce\xc1\x74\x43\x6d\x41\x81\x44\xf2\x44\x24\x83\xbf\x44\xe0\xfe\xb9\xf7\x73\xe9\x67\x1c\x3c\x12\x3c\x2b\x7c\x30\x7c\x30\x02\x01\xf2\x16\xfe\x30\x1d\x03\xaf\x80\x3c\xbb\xa1\xcf\xae\xdd\xac\x51\xd7\x48\xa5\x6e\x06\x6c\x78\x8d\x6b\xa6\x49\x84\x8a\x99\x30\x0a\x53\x1f\x91\x0b\xf2\xc6\xb7\xa6\xcf\x48\x90\x26\xe0\x97\xe0\x38\x9f\xa4\x3f\xa1\x7d\x9c\xf9\x38\xfa\x71\xef\xd3\x8f\x4f\xc1\xe0\x5e\xe0\x85\x90\x74\xf0\x87\x04\x83\x8c\xe3\xc2\x6e\x6a\x67\xc7\x16\x8b\x27\x03\x49\xf5\x15\x79\xc4\x31\x5d\xde\xfe\xd6\xcb\x5a\x36\x92\x5e\x9c\x32\x14\x33\x18\x0b\x30\x61\xef\xc4\x01\x22\x00\x17\x10\x04\xbe\x01\x28\xc0\x77\x00\x17\xf8\x02\x90\xbf\x4d\xf6\x34\x00\x98\xbf\xe5\xa0\x13\x91\xf7\x71\x45\x48\xd7\x5c\x13\x6d\x46\x4f\xf0\xb7\x8b\x94\xc1\xa6\x46\x86\xf0\x39\xe5\x1b\x4e\x2a\xb2\x08\x7e\x66\x70\x25\xe8\x44\x68\x80\x08\x7b\x73\xb7\xa1\x78\xf3\xb6\x83\x06\xc4\xde\x5c\x66\x61\x01\x34\x40\x08\xa0\xfb\x9c\x8f\xea\x45\x1a\xcf\x51\x2e\x35\xfd\xc4\x72\x84\xb2\x88\xde\xbf\x53\xa7\x96\xa3\x11\x75\xe5\x05\x58\xec\x68\xb8\x4a\x84\x70\xf0\x91\x4f\x62\xf4\x41\x27\xbc\xf9\xc1\x13\x03\x94\x80\x14\x80\x06\x60\xbe\x83\x7c\x9f\x0d\x46\xf7\x71\xe9\xd3\x03\xf8\x09\xac\x15\x0e\x29\x5d\xb0\xa0\x9a\xd2\x6f\x10\xe8\xfa\x6e\x33\x64\x3c\xba\x35\xb0\x78\x3b\x69\x3f\x08\x70\x70\x31\x58\x53\xa0\xe0\x3f\xa2\x7f\x24\xd0\x42\x90\x07\x87\x01\xf0\x3f\x28\x7d\xec\x87\x50\x87\xb2\xfa\x72\xf2\xad\x16\x96\x06\xae\xe3\x87\x37\xfc\x17\x84\x30\xf4\x18\xf2\x7a\x4e\x02\xa9\x22\x9d\x33\x10\xe8\xb1\xf7\x30\x7b\x3e\xa4\x67\xbe\x26\x39\x9b\x2e\x32\xd8\xf3\x9b\x05\x8f\xc6\x47\x09\x7d\x8e\x1b\x0a\x17\x4c\x6a\x68\xd9\x6f\xe0\x30\xf5\xdf\xb3\xe0\x09\x11\xa1\x51\xf0\xd0\x3e\xa1\x4f\x62\xad\x61\x8f\xe1\xc5\xe0\x3f\x92\x32\xb3\xe0\x8b\x2c\xa8\x0e\x9b\xcf\xfd\x23\xc3\x5c\x9a\xae\x7f\x1a\x55\x68\xd9\x2f\xc6\x4d\x1c\x0a\x22\x73\x0c\x34\x44\x54\xe8\x11\xac\x60\x9c\x25\x8a\x41\xc6\x42\x9e\x47\x13\xc1\xb4\xc4\x41\xc2\x87\x20\x3c\x21\xa1\x20\xf3\xa1\x54\xa6\xda\xa0\x73\x63\x08\x67\xf6\x12\x14\x56\xf8\x65\x58\xe4\xf4\x96\xeb\x7e\x4d\x1d\x50\xcc\x7d\xec\xa9\xac\x8e\xc8\x3c\x8f\xbc\xf2\x8c\xb3\x24\xd3\xaa\x93\x5a\xe7\x91\xa7\xf9\x48\x20\x40\xa4\x42\x82\x4f\x0e\x4e\x39\x4d\xcb\xca\x08\xc5\xdc\xc1\x6a\xc5\x91\xcd\x55\xc9\xeb\x27\x48\x2c\xec\x2a\xe7\xa4\x9b\x62\x5b\xec\x17\xfa\xcf\x3c\x77\xde\xba\x76\x3f\xb2\xd3\x82\x52\x54\x99\x2c\x1c\xfc\xd9\x59\xc7\x84\x5c\x95\x4c\xf4\x94\x2d\x84\x56\x92\xfe\x03\x13\x34\xcb\x02\xbb\x3f\xd7\x0b\x6f\xb5\x40\xb1\x30\xb6\xd8\xbe\x64\xa0\x34\x89\x82\x83\xb2\xa4\x76\x8b\x95\x8e\x17\x74\x94\xf5\x3f\x23\xdc\x3f\xef\x2b\xcf\x01\x3d\x5a\x35\x02\x39\x67\xb1\x92\xbe\xcb\x76\xa7\xfa\x95\x8a\x44\x42\x18\x5c\xa1\x3c\x29\xfc\x32\x42\x55\x22\x73\xe2\x21\xd2\x18\xf2\xed\x4a\xef\xd4\x1c\x34\x3d\x74\x2c\x0c\xa4\x4d\xec\x2d\x26\xdc\x05\xc3\xf2\xd3\x12\xff\x48\xb6\xc7\xe7\xea\x6b\xa0\xb1\xad\xd6\xbb\x72\xfe\xf4\x8c\x48\x3f\xcf\x0d\xeb\x30\x6d\x35\x79\x2e\x49\x77\xe9\x12\x59\x2b\x85\x06\xa5\x1d\x35\x52\xcd\x25\xdd\x5f\x06\xaa\x26\x44\x16\x1b\x56\x9f\xec\xab\x5d\x84\xdd\x3f\x86\xc8\x26\xa3\x17\x8d\xfc\x3b\xdb\xa7\x1f\x46\x2c\x06\x0d\x6a\x35\xd6\x17\x6e\x27\xe5\x85\xbc\xba\x5e\x58\x28\xea\x6c\xa8\xab\x6a\xae\xea\x7c\xd1\x35\x37\xd0\x37\x16\x36\x67\xb1\xc1\xb0\x93\x73\xb2\x70\xdd\xf0\x12\xf6\xed\x0d\x62\x0f\x9f\x4c\x84\xcf\x9f\xa9\x47\xfd\x0f\x31\xae\x17\x76\xbe\x4f\x5b\xf7\xf0\xd5\xdc\xe6\xb1\x26\x08\x07\x46\x39\x35\x5b\x9a\x99\xfa\x98\xa5\x9a\x2f\x58\xd5\xda\xea\x3a\x6a\xbb\x96\x79\x54\xf8\x24\x06\x98\x84\xe0\x46\xe0\xc4\xfa\x27\xdc\xa5\x9b\xe7\xa3\xd5\x64\x75\xe7\xfe\x89\xdb\x87\x67\x99\x6b\x22\xe3\x51\x1d\x9b\x55\xe9\x39\x83\x71\xc3\x01\x71\x6e\xed\xce\x10\x2e\x7c\x6e\x65\x1e\x0e\x3e\x4e\xfe\x4a\xc1\x41\x61\xe1\x51\xb4\x71\x09\xc9\x42\xe9\x58\x59\x53\x79\x41\x25\x71\xd5\xc1\x9d\x33\x13\x7f\xe9\x04\x7d\xf8\x7c\x78\xbd\xb4\x39\x32\xdd\x76\x59\x29\x9d\xad\x19\x97\x16\xaa\x1d\x68\x1d\x0c\x84\x20\x85\x39\x47\xc9\xc4\x0e\x25\x12\xa7\x66\x64\x44\xe5\x86\x15\x72\x97\x2e\x55\x1b\xd5\xcc\x34\x45\x74\xe4\x8c\x51\xae\xfc\x75\x9a\x16\xe8\x36\x64\x3f\x6b\xa1\x73\x48\xb5\x95\xaf\xc2\x2f\x47\x3d\xb9\x2c\xe1\x7d\x92\x72\x52\x67\xaa\x7e\x86\x7b\x4e\x40\x7e\x73\xc9\x66\x85\x5b\xd5\x76\xbd\x75\x73\x47\xe7\x46\xef\xe1\x90\xc8\xe8\xe6\x32\xf8\xa1\xea\xdf\xe9\x7b\x5d\xb6\x1b\x33\xdf\x33\xb4\xd4\x3a\x53\xf5\x50\xe8\x9c\x97\x52\xd0\x58\x68\x5b\x52\x56\xf6\x52\xd5\x59\x57\xd2\xc8\xdd\xb6\xdd\x31\xd0\x6f\x34\xf2\x79\x5c\x61\xe6\x62\xe1\x75\xbd\xe7\x80\xe1\x8e\xf8\xbf\xd8\xdf\x76\xd9\xbc\x43\xb5\x00\x3b\x24\xd5\x49\xd8\x48\x5e\x0d\x57\x3b\x53\xbf\xd6\x38\xd0\xca\xd1\xb1\xdc\x73\xda\xc7\x3f\x22\x36\xc6\x3f\xdd\xbc\xc8\xbe\x1a\xb6\x9d\xb4\x8b\x7d\x0c\x7d\xcb\xf8\x3f\xd7\x0f\x52\x17\x73\xbb\xe5\x0b\x96\xe3\x84\xfd\x44\x9d\xfe\x5d\x59\x7d\x46\x03\xe0\x43\xd7\xa3\xe5\x13\x37\x33\x1b\x4b\x8c\xab\x5a\x9b\xfe\x7b\x91\xc7\x58\x17\x9a\xb7\x6b\x8f\xd6\xff\x4b\xff\x9f\xeb\xf5\x12\x24\xf9\x82\xf8\x42\xf6\x6c\xfc\xbc\xf0\x34\xf6\x7c\xf6\x92\xf3\x22\xf2\xfc\xfc\xe2\xf0\x14\xf1\xfc\xf0\xfb\xf4\xff\xa5\x7a\x51\xb8\x6b\xbe\x69\xbd\xdc\xbc\x98\x38\x57\x3c\x35\x3a\xde\x3c\x61\x3d\xb4\x3a\x6e\x3e\xb2\x39\x96\x3f\x72\x3e\xee\x3e\x76\x3b\xae\x3c\x34\x3a\x12\x3b\xce\x39\x09\xbe\xcc\x79\x2e\xfa\x9b\x58\xec\x57\xda\x35\xcf\xe9\xf6\x81\xdd\x8e\xc4\xc6\xe4\x06\xe7\x8a\xf9\xd2\xf2\xb2\xe3\x62\xcc\xc2\xea\x82\xcd\x22\xd5\xa2\xc9\x22\xf5\xa2\xca\xd2\x87\x85\xe8\x45\xf4\x45\xc4\xc5\xbd\xa5\xe5\xcd\x6f\xc7\xeb\xf7\xb4\x7f\xfa\x26\x90\x5e\x9a\x1e\x54\x6e\xdb\xad\xdc\xcf\x37\xcf\xd0\x4f\x59\x8d\x6e\x0e\x67\x0c\xd9\x0f\x5c\x0c\xc2\xf7\xe3\xf5\x4a\xf6\xf3\xf6\xb6\xf7\x45\x0d\xb4\x0e\xe2\xf4\x13\xf6\x19\xf6\x1b\xf7\x8b\x0d\x51\x4c\xb0\x2d\xa7\xec\x65\x5d\x89\xbd\x5a\x83\x40\xbf\x71\xaf\x53\x0f\x1b\x36\xc1\x17\x78\xa7\x80\x91\xf8\xbe\x80\xee\xc2\xce\xc1\x96\xbe\x26\xe5\x46\x9b\x06\x84\x3a\xe7\x06\x8e\x3a\xb1\x3a\x8d\xfa\xcf\x35\xdb\xf5\x29\xf5\x02\xf5\x39\xb5\xbf\x6a\xd9\x6b\x0d\x6a\x53\x3a\x8c\x87\xe1\xe6\x68\xb7\x60\xce\x26\x40\xa0\xdb\xf0\x23\xb2\xd5\xee\x29\x99\x41\xee\x6e\x98\x66\x9b\x3a\xab\xca\xec\xb2\x94\x12\xed\xc2\xe9\x82\xb2\xdc\x97\x5c\xd4\xdc\xce\xbc\x95\x9c\xf1\xdc\x8c\x1c\xf7\x3c\xea\x3c\xf8\xbc\xcf\xf9\x72\x79\xc4\xf9\xed\xf9\x3d\xe5\xdd\x4d\x1a\xbd\x07\x53\x50\xeb\xb1\x0f\x54\x47\xe5\x6b\x45\xd3\x16\xfd\x89\x2d\xe0\xd5\xa1\x25\x36\x05\x54\x59\x19\x69\xd6\xc9\xa4\x09\x3d\xf1\xef\x63\xe6\x63\x25\x62\x70\x63\x11\xa3\x0d\x62\xc6\x62\xbe\x44\x93\xc7\xb2\xc4\x66\xc7\x5b\xc4\x81\x62\x95\x63\xe1\xd2\x6e\x0a\x57\x6a\x3b\xbb\x38\xc6\xf5\x2f\x91\x77\xc8\x67\x57\xfb\x1f\x9b\x55\x2b\x63\x72\xd2\x52\x1f\xe3\x37\xa3\x4a\x42\x77\x83\x0a\x03\x7c\xfc\xf5\x7d\x5b\xbc\x03\xbc\x09\xbc\x3f\x78\x77\x79\x11\x7b\xbf\x78\x05\x7a\xf9\x7a\x0f\x7b\xaf\xfa\xba\x7a\xd7\xfb\x48\x84\x69\x25\xfa\xe7\xaa\x54\x56\xb7\x47\x1d\xef\xad\x52\x8e\x22\x77\x44\x57\x71\xe4\xae\x27\x6e\x45\xbc\xf7\xff\xed\x15\xea\x86\xeb\xac\xe6\xa0\x6b\x17\x6d\x13\x66\xed\x64\x51\x6c\x71\x6e\x29\x64\x79\x60\x15\x6c\xb1\x69\x39\x6c\xb9\x67\x8d\x6d\x7d\x6f\x15\x63\x9d\xe9\x3a\x13\x70\x19\xb3\x92\xb9\x58\x7e\x73\x40\x3e\xdf\xde\xbf\xdb\x50\x55\xbc\x92\x5c\x10\x3e\xe2\xb3\xe3\xb4\x6a\x15\x6f\xe2\x6d\xd4\x64\x40\xa2\x5b\xa3\x2d\xaa\x45\xa1\xb9\xae\x89\xaf\x61\xa6\xb1\xac\x01\xae\x1e\xa7\x49\xa2\x69\xa7\x39\xad\x05\x68\xe6\x6b\xff\x34\x59\xb3\x5f\xf1\x49\x8e\x7c\xca\x20\xdc\x39\x9a\x16\xec\x2e\xaf\xf1\xca\x36\x8e\x2d\xf1\x6f\x77\x16\x34\x5f\xd7\xd5\x50\xf3\x52\x30\x91\x0b\x92\xd9\x93\x1a\x96\x74\x91\x30\x92\x50\x13\xef\x97\x10\x15\x6f\x91\xc8\x10\x3f\x91\x6c\x91\x58\x97\x5c\x96\xfc\x2e\x85\xa6\x5c\xad\xcf\x6e\x43\xe4\xa9\x1e\x49\xbe\x15\x3e\x85\xd0\xb9\x54\x45\x93\xa9\x11\xa9\xeb\xc5\x6c\xa3\xa1\x17\xac\xf8\x5b\x42\x46\x30\x86\x2f\x9e\xbb\x87\x4b\x92\xeb\x0b\x67\x3e\xfb\x1c\xdb\x1c\x5b\x0c\xfb\x3b\x76\x7c\xf6\x2d\x76\x76\xf6\x5a\x8e\xef\xec\x54\x9c\x5c\x42\xd1\x72\xdf\xb5\x6b\x2d\x85\x3c\xbe\x6d\x9b\x4c\xcd\x77\x7e\xa9\xc4\x4e\xa7\x8b\x28\x74\x57\x30\x4f\xd3\xe8\x91\x72\xe5\xd3\x66\x89\xa6\xc3\xa2\x11\xa4\x8c\xa7\xfc\x4a\xe1\x42\x16\x44\xd6\x42\x46\x49\xe6\x48\x26\x45\xb6\x46\x46\x41\x4e\x4c\xae\x4b\x9e\x49\xd1\xc9\xa8\xc0\x0b\x25\x29\xa3\x09\x6e\xf5\x6e\x77\x72\x56\xa4\xdb\xa4\x8a\x2d\xb3\x2e\xfc\xd5\x9d\xd2\xfc\x44\xad\x45\xec\x96\xfd\x8e\x1a\x96\xe0\x1a\x87\x13\xf3\x18\x23\x10\xfd\x00\x6d\x14\xcd\x15\xed\x07\x6a\x2e\xaa\x07\x6a\x3c\x6a\x1f\x1a\x09\xda\x06\x3a\x01\x7a\x36\x3e\x16\xb5\x13\x97\xaa\xd4\xab\x8e\xf1\x61\xf8\xc2\x63\x7f\x79\x1d\x55\xce\x55\xf4\x9d\x97\xb8\x15\x8b\x26\xaa\x04\x07\x87\x02\x45\x16\x96\xf1\xcf\x1c\xd8\x2f\xd0\xba\xdf\xe2\xbe\x2a\x7e\xa9\xf9\xe2\xff\x25\xe2\x8b\xc4\x97\xe0\x2f\x1a\x5f\xe9\xbf\x3a\x7d\x53\xf8\xa6\xf0\x23\x16\x07\x89\x46\x85\x8f\x40\x7e\xee\x1c\x63\x8d\x75\x64\xbc\x59\xa1\xc8\x2f\x21\xc5\x7f\xda\xde\x51\x2f\x5a\xb6\x8a\x37\x9e\x96\x0c\x97\xe9\xe7\xbb\x4f\x64\x6f\xfe\x78\x54\x00\x26\x80\xf2\x56\xd5\x8a\x06\x60\xbf\x39\x9c\xe0\x01\xdc\x1f\x27\xe1\x55\x09\x58\x98\x08\xc5\x34\xef\x64\x77\xc5\xa7\x2f\xbb\x52\x2b\x6d\x32\xf5\x22\xdc\xdd\x51\xcc\x7e\xa8\xda\x8b\xca\xb2\xa4\x93\x0a\xa1\x36\x7e\x2d\x06\x90\x01\x58\x80\x1d\xa0\x01\xa8\x01\x68\x00\xee\xad\x0a\x83\x04\x10\x00\xe0\x01\x4f\xb0\x29\xf8\x10\xc2\x30\x16\x14\x71\xb0\x57\x81\x53\xff\x15\xf5\x61\xdd\xa6\xeb\x82\xf4\xf8\x7c\xbf\x6d\x5b\x14\x5d\x24\x99\x64\x9e\x70\x9a\x36\x5c\xf8\x1f\x75\x1f\x19\x01\x24\x80\x0a\xa0\x7e\x77\x01\x26\xf9\x29\x0d\x22\x0c\xca\xf8\x73\xe6\xd7\xb5\x6f\x0c\x30\x3f\xe1\xa2\xb1\xdf\xd1\xc8\xf2\xa1\x2b\xe0\x83\x40\x77\x0b\x3b\x03\xd3\xb6\x9d\xd7\x15\x8a\xe9\xfa\x61\x31\xae\x9a\xa6\xda\x2a\xe7\xc2\x5b\x2c\x1d\xa4\xd6\x68\xe0\x5f\xd4\x3e\x5d\x43\xf1\x7c\xa9\x86\x1e\x85\x13\xf9\x41\x08\x3f\x82\x18\x86\x7c\x89\xea\x85\x16\x8e\xb1\x83\x65\x40\x81\xc3\xa1\x2b\x19\xaf\xdd\x0c\x02\xbd\x32\x9d\xcc\x2c\xc5\x0c\xca\xd7\x33\xe6\x27\xc5\x26\xf9\xba\xdb\x8a\xe8\x9c\xca\x02\xbc\xac\x74\x00\x5e\xc4\x4f\xed\x9f\xe0\x08\x6a\xc8\x09\xa8\xb3\x18\x0c\x58\x20\xbc\x64\xfc\x7a\x22\x3b\xe2\x36\x32\x36\x0a\x76\xaa\x26\xd6\x3a\x51\x1a\xd5\x38\xb3\x37\x37\x93\x9b\xeb\xad\xc4\x29\x98\xf6\x93\x72\xaf\xb4\x9f\xa1\xe5\x6e\x04\xa6\x1b\xaa\x81\x62\xe8\x6c\x17\x14\xc6\x58\x36\xd8\x84\xb8\x87\x04\x3d\xc4\x07\xe4\xa8\x94\x4c\x34\x64\x74\x8c\x4c\x7c\xcc\xe9\xac\x2f\xec\x79\x5c\x0e\xc2\x8e\x4a\xd4\x86\x57\x4e\x49\xff\x88\xf0\xbc\x73\xcc\xbd\xb8\x38\x60\xd9\xc0\x9f\xbf\x1f\x27\xe2\x17\x66\xa7\xa9\x1f\xa1\xf0\x55\x40\x91\xe9\x3b\xb9\x16\xe5\x39\x75\x19\x9d\x07\x13\x33\x8b\x19\xfb\x2d\x57\x24\xcf\x95\x00\x83\xf0\x57\xd1\x18\x71\x26\xe9\x08\x85\x53\x7d\x2e\xbb\x25\xbf\x3f\x26\x58\x5e\xb7\x6f\x96\x4e\x7e\xee\xd0\x29\xcf\x4c\x37\x0f\xf7\xf0\xb0\xb2\x44\xd5\xcc\x94\x3a\xe7\x06\xb1\x82\xb3\x4b\x73\x06\x72\x3f\x08\x60\x0b\xed\x88\xea\x4b\xa6\xcb\xd8\xcb\x4b\x28\x55\xa9\xbc\x6a\xa2\x6b\xbf\xd3\xc7\xb5\x31\xf3\xf6\x8a\x96\xfa\x67\x84\x67\xd6\xe3\xb2\x45\xe3\xc1\xa4\xc6\xe6\x42\xea\x44\xf3\xa0\x8f\x2e\xef\x4c\x6e\xd4\xbe\x49\xc2\x0b\x0f\x8a\x9c\x8a\xe9\x4b\x72\xcb\xd0\xca\x2f\x28\x75\xab\x25\x6b\x51\xe8\x9e\x18\x22\x18\x93\x58\x62\x5a\x7f\xb1\x9f\xf7\xac\x89\x48\x4a\xdf\xfa\x57\xae\xbd\x11\xdc\xba\x9f\x2a\xed\x3a\xaa\x1e\xca\x51\x88\x75\xf7\x33\x73\xfc\x69\x38\xab\x3a\xae\x50\xac\x9c\xa9\xe2\xa2\x7e\xad\x45\xa5\xc7\x69\xc8\x66\x32\x65\xe1\x6e\xb3\x6b\x7f\xe7\xa4\xef\xde\xea\xb5\xed\x37\x11\xd6\x96\xca\x5f\xe2\xf5\x6f\x52\x98\x9d\x08\xae\xdc\x8f\xe6\xb7\x15\x94\x1b\xa4\x5f\x46\x1e\x79\x17\xd8\x12\x18\xdb\xea\xcf\x19\x68\x1a\xa7\x9a\x6c\x99\x1f\xd8\xf0\xda\x19\x3a\xd1\xb8\xb5\x7a\x2b\xfa\x81\x02\x35\x43\x4b\xa3\x16\x12\x24\x53\x0a\x8b\xd4\x1a\x61\xff\x93\xf1\x7f\xe1\x1c\xe0\x2e\x80\x0d\x08\x34\x7d\x2a\xea\x4e\xcd\x0a\x57\xf1\x4c\x73\x38\xb0\x4d\xb4\x5f\x70\x58\x70\xea\x75\x0b\xf0\xa4\xf4\xd9\x09\x44\x0b\xed\x8a\x14\x8a\xfd\x9c\x80\x9d\xf2\x92\xa9\x9d\x8f\x59\x7c\x58\x8f\xd1\x3b\xff\x67\xe8\x5c\x55\x6d\x43\xcd\x80\xf5\x11\xd7\xf5\x15\x52\x25\xe7\x85\xad\xfa\x5d\x78\xdb\x79\x33\xfb\x09\x07\x42\x06\x47\x84\x53\x45\xcd\xc7\xd3\x24\x93\xa4\x35\x66\x87\xe7\xaf\x96\xf8\x55\x21\xd6\x0b\x37\x0b\xf7\x5c\x4d\x15\xff\x85\x79\xd1\xa7\x23\x1b\x4a\x93\xed\xdd\x5b\xb5\x83\xf9\x76\xc9\x17\x31\x68\x91\x85\x51\x9c\xd1\x27\x71\xdd\x89\x6a\xa9\x62\x99\x9f\x72\xe9\x0a\xdd\x4a\x74\x2b\x0f\x6b\x69\x1a\x65\x3b\x9c\xba\xdd\x07\xe5\x26\x75\xd6\x37\xfe\x8a\xbe\x87\x8a\x13\xf6\x35\x88\x09\xcb\x6e\xa8\x9a\xdb\x22\xc9\xec\xf2\xf4\xf5\x8c\xd1\x2c\xff\x9c\xdd\xfc\xa7\xe2\x77\xe5\x9b\x55\xb5\xf5\xc2\xcd\xcd\x1d\xa8\x3d\xd2\x83\x11\xa3\xab\xe3\xde\x0b\xc9\x6b\x1c\x27\x4c\x7f\x67\xef\x2f\xa1\xa3\x2f\xab\xfe\xe3\xe5\x5d\x1b\x0d\xbd\x95\xf8\xe5\x7e\x15\x72\x95\x12\xd5\x01\x75\xaf\x4d\x6e\x6d\xfa\x5d\xac\x7d\xfa\x43\x31\xa3\x0f\xd3\x96\xf3\x06\x2b\x2a\x9b\xc2\x7b\xc7\x27\x3c\x0f\x1a\xff\xcd\xef\x3b\xc9\xa3\xaf\x2b\x33\x13\x9f\x07\x98\x3b\x71\x5a\x97\xdb\x6a\xda\xc1\xbb\xbe\xf4\x6c\x0f\x84\x8c\xa2\x8f\xb3\xcc\x44\x2d\x06\xac\x71\x6d\xbd\xdf\x57\x3b\xdc\xbf\x44\xba\x7e\x78\xf2\xfe\xdf\x6b\x80\x7b\xed\xe3\x90\xd5\xc7\x39\x8f\xb1\xab\xe1\xac\x91\xe2\x71\xce\x09\xcf\x19\xc8\xb9\xeb\xc5\x98\x55\xeb\x2d\x82\x5d\xf8\xa3\xf1\xb3\xc8\x1b\xde\x07\xed\xdf\xff\x55\xc7\xf1\x7f\x75\xfd\xc6\x7c\x7a\x7c\xfc\x79\x5f\x76\xf3\x72\x75\x75\x65\x71\x35\x78\xb1\x72\x31\x77\xe1\x79\xfd\xe9\x62\xf2\x3a\xff\xd6\xe4\xaa\xe2\x9a\xe2\x32\xfd\xf2\xe5\xca\xe8\xa6\xe8\xd5\xe7\xbf\xb4\xd0\x0f\x01\x57\xdd\xe7\x41\x27\x34\x87\x12\x7b\xad\xdb\xb9\x9b\x8f\x1b\x5d\x1b\xac\x9b\xbf\xd6\xbd\x37\xb6\x36\x87\x37\xc8\x37\x0d\xb6\xac\xb6\x75\x37\x1d\xd6\x2f\xb7\xc5\xb6\x56\xb6\x7b\xcf\xf0\x1f\x48\xfe\xa3\x7e\xbd\xb9\x7d\x3d\x7b\x3c\xb8\xda\x76\x5a\x03\x5b\x42\x5f\x50\x9e\x11\x9b\x8a\x9a\xc0\x18\xb5\x9f\x10\x1c\x37\x9e\xa4\x9d\x28\x1c\x4b\x1f\x6f\x1b\x4b\x9e\x92\x9b\xe2\x9f\x70\x9a\x62\x1e\x1f\x1c\xe9\x98\xc9\x59\xdd\x3b\x30\xb9\xae\xfa\xfd\xf6\x8d\x7a\xea\xbb\x90\xdf\xc7\x5b\x37\x58\x70\x9f\xa2\x1b\x4b\x1f\x9c\xe8\x5f\xef\xe1\xed\x8c\xed\x20\x6e\x83\x69\xb5\x6b\x8b\x69\x85\x6a\x95\x69\xeb\x6c\x23\x6a\xd3\xe9\x30\xeb\xb0\xea\x10\xed\xf2\xe8\x6c\xec\x9a\xe9\x5a\x1c\x05\x9b\x5f\xdd\x76\x3d\xdf\x03\x81\x9e\xa8\x2e\xc5\x77\x13\x16\xa5\x27\x75\xfb\x23\xba\xe2\xdb\x3d\x1a\xb6\xea\x08\xab\xd1\x2a\x52\x4b\xfb\xcb\x48\x4b\x84\x4a\x06\x4a\x1e\x4a\x0d\x4a\x7d\x4a\xde\x15\x6f\x94\x25\x97\xd1\x97\xfb\x54\x7c\x2e\x9f\xad\x48\xaa\x42\x6c\xd1\xec\xd7\x9f\x16\x5d\x9f\x04\x81\xae\x7f\xee\x7a\x2f\xec\x8f\x6a\x75\x33\x35\xfb\x55\xc7\x97\x3a\x15\xd2\xe5\x89\x65\x86\x67\x72\xa6\xe1\x24\x3f\x26\x9d\x24\xf1\x27\xc6\x27\xcd\xa4\x60\x25\xf7\x27\x21\x27\xcf\x25\x6f\xa6\x36\xa7\x0a\xa7\x7d\x4d\xcb\xcf\xf4\x2a\x9e\xac\x47\xe9\x86\x1b\x4f\xfd\x65\x72\x58\xb4\x04\x1a\x6d\xec\x86\xae\x7b\x28\xc5\xc8\xc5\x48\x8b\x4e\x70\x89\xf1\x8a\x6a\x0e\xdb\x0d\x91\x0c\xc1\x0f\x5c\x0f\xc4\x09\x02\x0b\x14\x09\x12\x0c\x20\x08\xfc\x14\x24\x19\x78\x15\x4c\x13\xec\x1b\x22\x10\x4c\x17\xd1\x97\x2c\x9a\xc7\x59\x45\xd7\xfe\xfe\x62\x6f\x3b\x61\xe6\xb0\xcf\xbf\xa1\xbb\x38\x2d\x2b\x20\x1e\x3e\xec\x35\x80\xcf\x47\xcc\x33\xc3\xed\xc2\x05\xde\xc9\xc0\x11\xdb\xc1\xc9\xc1\xc8\x41\xd5\x31\xc2\x71\xd2\xe1\xd4\x11\xd9\xb1\xcc\x19\xcc\xa9\xc1\x89\xcf\x21\xcb\xfd\x77\x10\x77\x2c\x47\x56\x5c\x39\xdb\xc9\xd1\xca\xfc\xa8\x56\xc7\x8f\x4a\xc8\xec\xe1\xb8\x83\xe0\x38\xcf\x14\x47\x05\x1b\x7a\x0b\x69\x33\x0b\xe3\x26\xa3\x16\x83\x63\x03\x24\xbd\x4b\xbd\x2d\xbd\x36\x03\x51\xfd\x7a\xa3\x4f\x86\xfd\x46\x08\xc6\x44\x86\x7a\x06\xc4\x66\xb3\x8e\x46\x3e\x03\x11\xfd\xe9\xa8\x47\x13\x4b\xc5\x43\x78\x8d\x79\x45\xca\xa9\x4f\xe1\x30\x9e\xc3\x76\xe2\xc6\xa6\x3a\xf1\xea\xb5\xaa\xcc\x4a\xf5\x8a\x8d\x0a\x6d\xf2\x67\x72\x63\xf2\x2e\xb2\x8d\xf2\x0f\xf2\xa7\x0a\x9a\x0a\xe0\x0a\x4b\x0a\x29\x8a\x64\x0a\x6a\xaa\xa9\x06\x52\xd6\xf3\x9e\x11\x61\x53\xfb\x37\x0b\x89\xfd\xbb\xf5\x09\x79\xad\xf1\x79\x81\x9f\x9d\x02\x4d\x8e\x35\x15\xe4\x72\xc4\x67\x45\x70\x85\xd6\x05\x4c\x04\x10\xf8\x8c\x78\x09\xf9\xb4\xf8\x3e\xf2\xe9\xf1\x3e\xf3\xc1\xf3\x09\xf3\xd1\xf2\x65\xf3\x83\xf8\x6d\x44\x94\xe5\x2a\xb4\xac\xcc\xd1\x5c\x9d\x0f\x3f\xcd\x57\xf4\x43\xd7\x62\xe6\xc1\xc5\x1a\xfa\x8a\xdb\xbd\xd3\xbb\x52\x54\x11\x45\xe0\xb6\x61\xf1\x60\xb2\x66\x64\xa0\xdb\xa1\x3b\xa0\x63\xa0\xf5\xa2\xa5\xa5\x39\xa0\xfe\x45\xab\x4a\xb3\x47\x3b\x4b\xf7\x85\x6e\x9e\xee\x99\xa9\x8e\x87\x59\x62\x5d\x0d\x64\x36\x71\x34\xb6\x64\x35\x40\x52\x5f\x94\xa7\x12\xc7\xe4\xbb\x65\x93\xad\x53\x2d\x73\xca\x77\xc3\x38\x49\x41\x45\x38\x49\xa0\x8c\x8f\x86\xc7\x8a\x0b\x87\xd3\x85\x73\x80\x43\x81\x93\x8d\xa3\x84\x3d\x83\x0b\x86\xfb\x15\x8f\x09\x8f\x93\xa0\x96\xaa\x9d\x13\x5f\xcc\x4e\x3d\xe8\xac\x60\x55\x7b\xf8\xb4\xa9\xa6\x30\x32\x51\x35\x00\xc9\xfe\x9d\x1e\xa1\x6c\x05\xef\x1d\x9d\x0f\x81\x1e\xaa\x1c\x02\xe4\xcf\x81\x1f\x9b\x3f\xc0\xbf\x23\xc1\x59\xc1\x69\xc3\xe1\xc3\x99\xc3\x45\x7e\xa7\xfb\x5e\xf7\xa3\xfd\x87\xd2\xcf\x75\x4c\x02\xf2\x03\xf6\x07\x69\xa8\xeb\xb8\x2d\xc2\xc9\xc9\xf6\xbe\x32\x20\x15\x23\x64\xd8\x59\xd0\x68\x42\x29\x5e\xf0\x94\x31\x8d\x08\x11\x99\xf6\xf3\xc5\x27\x52\x30\xff\x0f\x55\xef\x17\xdf\x47\xbc\xef\x7a\xef\xf1\xde\xf8\x7d\xfb\x7b\xd0\x87\x61\x30\x4b\xb0\x91\x8f\xac\x30\x1d\xb8\x5a\x8c\x69\xa2\xcf\x8f\xec\x07\xb3\xf3\xe2\x7d\xb4\xb5\xf5\xb9\xe8\xd1\x1e\xde\x48\x56\x39\x5a\x4c\x92\xb2\x9c\x64\x94\x43\x58\x45\x70\x25\x1f\xfa\x80\xcf\x00\x27\x40\x0a\x50\x03\x3f\x01\xd2\x77\xe7\x1f\x3c\xc0\x46\x3f\x99\x41\xc0\x41\x04\x42\xd9\xfe\x98\xc3\x87\x62\x0a\x11\x4b\x05\x81\x2e\xe2\xd7\x53\xc7\x45\x5a\x2f\x4a\xf6\x92\x53\x83\xc8\x9d\xb8\x0d\x5d\x15\x40\x02\x2b\x8c\xab\x44\xe4\xc8\x76\x50\x25\x80\xc2\x87\x9c\x4f\x24\x10\xab\x9f\x95\xbe\xd2\xc3\x40\xc0\x9a\x7c\xc7\xf8\xe9\x09\x7f\x88\x60\x8e\xc4\x81\x1d\x4b\xad\xcf\x63\x2f\x27\x00\x02\x3d\x8c\x1e\x3c\xcf\xdd\xf4\xb1\xd6\xb2\x65\x9f\x45\x85\x7a\x2e\x58\x12\x68\x2c\x4a\x9c\x73\x36\x53\x45\x61\xe3\xc0\x9e\x7e\x9d\x81\x95\xfd\x1e\x09\xbf\x8a\xb8\x8b\x82\x8e\xb6\x8b\xf9\x05\xfb\x06\xe7\x0e\xef\x94\x30\x8e\xe8\x0b\x65\x26\x47\xa3\x24\x8f\xe6\xeb\x3f\x7e\xdd\x17\x53\x6b\x2b\x23\xbd\x2d\xa1\x45\x5b\x49\x2d\x81\x0b\x0e\xd7\x86\x06\x8a\x32\x42\x2c\x4c\x9d\xc4\xec\x28\xb5\x28\x85\xe8\x56\x58\x78\x38\xd5\xf8\x0e\x44\x66\xa4\x5a\xe4\x51\x54\xde\xd4\xe6\x74\xbc\x8c\x17\x8c\xe7\xec\xbf\xc4\xb8\x54\xd7\xcc\xde\x66\x2f\xdc\x17\xed\x7f\x9d\x1d\xef\xee\xaa\xd6\xcf\xca\x88\x92\xf6\x7c\xb6\x6a\xd4\xa2\x95\x1a\xe2\xc9\xa4\xe9\x21\x74\x20\x56\x22\xa5\x26\x3f\xa2\x16\xa1\x25\x64\x50\x61\x41\x63\xcb\xe0\xb4\xe7\x5e\xe2\x4b\x17\x14\x13\x2a\x10\x7d\x50\x1e\x35\x7e\xe7\xfc\xcf\xfe\x4d\xf5\x33\x83\x55\xc5\x11\xd3\xe6\xa4\x62\xaf\x64\x93\x20\x13\x67\x34\xe3\x42\x15\x5b\xd1\x56\xd6\x73\xba\x64\x06\x66\xa6\x11\x56\x5e\x0e\x59\xee\x35\xbe\x64\x21\x64\x91\x4a\x09\x61\x29\x71\xb9\x35\x05\x53\x15\x48\x35\x0a\x43\x2b\xfb\x47\xff\xea\x3f\xf2\x3b\xd3\xae\xc8\xac\x47\x8f\x61\xcd\x87\x9c\x8e\x68\x5f\x5f\x72\xdb\x73\xfd\x51\xf9\x4d\x21\x56\x5e\x34\x3e\x30\x01\x73\x61\x2a\x71\x0b\x29\x02\x39\x32\x05\x3c\x55\x1c\x75\x39\xed\x16\xdd\x71\x03\x27\xe3\x08\x8b\x5d\xfb\xaf\xbe\xa2\x31\x9e\x7f\x24\x4a\xe9\xb3\xdc\x35\xf0\x51\xa8\x36\xb4\x52\xf7\x34\xc8\x70\x03\xf7\x34\x2b\x74\xad\x23\xf9\x64\x69\x7c\x69\x49\x79\x0a\xc5\x17\xe5\x3a\x0d\x7a\xad\x45\xdd\x3c\x43\x6d\x13\x5f\xcb\x15\xeb\x78\x47\xc0\x65\xdf\x63\xdb\x57\x2f\xca\x31\xf3\xdf\xef\xdd\xf7\x1f\xf7\xbf\xcd\xcb\xf4\xe9\xd4\x3b\x15\x28\x24\xae\x06\xd9\xba\xc6\x99\xd9\xeb\x78\x69\x68\x6a\x59\x69\x0f\xeb\x73\x1a\xda\x98\x34\x9b\x77\xd8\x60\x3a\x12\xb9\xa0\x7b\xb0\x79\xe9\xfb\x35\x04\x7b\x86\x5b\xc7\xc0\xa4\x97\x96\xfd\x7b\x96\x17\xe8\xf6\x62\x6f\x63\x68\xb2\xba\x4b\xa1\x1a\x36\x97\x23\xde\x2c\xc0\xce\x29\xd2\xea\xd0\x4c\xd3\x82\xda\xf2\xd6\x46\xc3\x9e\xd2\x89\xd4\x3d\xd6\x5b\xc0\x5f\x35\xe8\x24\x1c\x23\xfa\x7b\xac\x49\x52\x4f\x86\x78\x4e\x57\x49\x5d\x33\xdb\x7f\x32\xfe\x13\xd9\xb1\xc8\x8a\xed\x48\x61\x7b\x75\x85\x5f\x56\x7f\xcc\x07\xff\x33\x8f\x1d\x97\x52\x37\x2a\x8f\x1d\x1f\x3b\x5f\xeb\x40\xc7\x50\x98\x08\xaf\x58\xf1\x84\xc3\x94\xe9\x2c\xaa\x3c\x91\x62\x89\xd2\xc9\x9a\x8f\x4d\x05\x03\x24\x7f\x66\xce\xdd\xdc\x7e\xee\x02\xd9\xb0\x41\x73\x64\xd9\x6a\xc6\x43\x9c\x4a\xd8\x69\x70\x6d\xe8\x4c\x18\x61\x44\x63\x34\x72\xdc\x49\x32\x5c\x9a\x4f\xf6\x72\x7e\x6a\xb1\x64\x05\x55\x8d\x4b\x63\x5a\xdb\x52\xaf\xd4\xd0\xe4\x2c\xd1\x5f\xb9\x75\x4d\xb3\xd3\x3e\x47\x3e\xc8\xdc\x54\x5a\x6a\x94\x9d\x9e\x12\x93\x98\x9e\x48\x9d\x62\x90\x5a\x98\x51\x94\xfb\xb3\xf0\x67\x89\x67\x25\x58\x6d\x72\x03\xa8\x4d\xbe\xab\x7c\x60\x64\x74\x7e\x3a\x77\x51\x70\xeb\xaf\xf3\x3c\x41\xaf\x08\x17\xf0\x5b\x3d\x33\x5d\xfd\xdf\x9b\x60\x2a\x04\x0a\xc7\xf2\xbf\xe6\xdf\x16\x71\x17\x6f\x97\x8f\x56\xa5\xd5\x7b\x36\x83\xb7\x65\xf4\xb0\xf5\xf7\x8d\x08\x4d\x78\xcf\xca\x2e\xef\xac\x9d\xec\xa6\x9e\x4b\xfe\x9d\x9e\xcf\x3c\xe7\x98\x9b\x67\xb3\x92\x03\xac\xed\xc1\x8d\xc6\xb5\x36\xf5\x1f\x1b\x9c\x9a\x05\x5b\x8b\xbb\xec\x7b\x45\x06\x5c\x46\x7b\x26\xcb\xe7\x52\x16\x6d\x36\xa8\x76\x7f\x1e\xf2\x9d\xf9\xdd\xf4\x3c\xf3\xfe\x37\xbd\x9f\x9f\xcf\x77\xb6\xce\xe6\x51\xc7\x10\xfa\x8e\x7b\x9d\xfb\x62\xfb\xf7\x87\x4c\x46\x86\xc7\x9b\x67\xb8\xe7\x87\x57\x69\x37\x8e\x77\x02\x8f\x14\xcf\xf2\xaf\xbb\x1e\xcc\x5f\xbf\xfe\x6f\xfe\x83\x40\x2f\xc8\xe7\xe6\x3b\xec\xab\x99\x73\xa7\x33\x0b\x33\x2b\x73\x4c\x0b\x11\xcb\xc8\xeb\xdf\xb6\xdf\xef\xf5\x1f\xe3\x9e\xbb\x5d\xfb\x3e\xe0\xbe\xae\xfc\xbf\xb4\xff\x57\xd7\x6f\xd8\x57\xd9\x97\x9f\x8f\x7d\xbf\x7e\xfd\x32\x7c\xe4\xfc\x05\xff\x58\xf8\x60\xf4\xc4\xfa\xf8\xf5\xe9\xe5\x19\xf1\x79\xe7\x45\xe8\x37\xd2\x33\xce\x63\xea\xff\x52\xbe\x6e\x3e\xaa\xdf\x6f\x5d\xce\x9e\x53\x9e\x50\x1c\x5a\xef\xdb\xee\x9b\xef\x91\xef\x0b\xed\xeb\x1d\xe2\x1f\xd2\x1e\x84\x1d\x94\x1f\xd4\x1e\xed\x1f\x53\x9d\xe4\x1d\x6b\x9f\xe2\x1c\xd7\x5c\x0c\x3c\x21\xfc\xe5\x6f\xc7\xb8\xdd\x39\x87\x3a\x86\xd8\xfd\xbd\xb9\xba\xe6\xb9\xec\xbe\x24\xb2\x90\x30\x07\x35\xfb\x71\x16\x66\xee\x66\x0e\x6f\xfe\x74\xee\x7e\x6e\x64\xb6\x62\x9e\x7a\xf1\x69\x79\x78\x99\x73\x35\x6d\xe5\xd3\x06\xec\x91\xd9\xad\xe9\xbf\xf4\x77\xbd\xe7\x82\x7b\x12\x9b\x49\xcb\xfe\x73\xd0\x13\x01\xa3\x62\x43\x75\x03\x30\xfd\x12\x3d\xdd\x5d\x1b\xdd\x17\xdd\x62\xdd\x75\xbd\x6a\xdd\xd0\x3d\x48\x7d\x09\x7d\xe5\xfd\xf9\x03\x3b\x83\x99\x83\x7e\x83\x04\xe3\x36\x8b\x63\x3b\xcf\x17\x6f\x75\xc5\x77\x9d\xc7\x8a\x1b\x1d\x0b\x47\xe3\xee\x43\x48\xdd\x2f\x9d\xda\x2d\x58\x8d\x43\x0d\x60\xb5\x41\xd5\xf5\xd5\xe9\x95\x75\x95\xa9\x55\x09\x55\x57\xd5\xca\x95\x15\xd5\x6e\xd5\x15\xf5\x0e\x0d\x52\x0d\x14\xf5\xb5\xf5\xa8\x6d\x39\x83\xaa\x33\x71\x1b\xb4\x20\xd0\x2f\x86\x63\xaa\x8d\xa5\xa9\x97\xa1\xe9\x4e\xcd\xa6\x97\x6a\xf9\x8a\xea\x92\xb4\x82\x9c\x3c\xe5\xdc\x9f\x59\x54\x19\xa1\x19\xa1\x19\xbf\x32\x40\x99\xa4\x59\x15\x99\x15\x59\xca\xd9\x75\x39\x02\xb9\xc3\x79\xa0\x1c\xcc\x1c\xf8\x32\x9e\x86\xe6\xee\x91\xf1\xcd\xdf\x33\x97\xe2\x5b\x49\x73\x98\x83\x02\x6d\x14\x35\xaf\xc5\x2f\x39\x22\xe9\x89\x49\x8d\x09\x68\x31\x83\x31\x8d\x51\xf9\xe1\x73\xe1\x0f\x61\x2c\xe1\xc7\x11\x28\x51\xb1\x91\x13\xd1\xb8\xd1\xe5\x31\xa6\xb1\xd4\x71\x26\x51\x18\x31\x85\xa9\x3f\xf3\xcd\xab\x71\xda\xed\x7f\xe1\x1f\xab\xad\xa8\x8d\xfc\x68\xe3\xa8\xb1\xcc\x6f\x4a\xeb\x8e\x9d\x0c\xc7\x0a\x58\xf4\x17\xf5\x85\xf0\xc2\xf5\x62\xf1\x98\x75\x6b\x72\xd7\x75\xc7\x71\xe7\xf7\xc0\xf0\x88\xf4\xda\xf6\x86\xf2\x62\xf0\x79\xef\x33\xec\x73\xef\xf3\x1c\xbc\x1e\x87\x9e\x25\x51\x76\x74\x23\xb8\x03\xcc\xc0\xf4\xb9\xd6\x4d\x17\xae\xa5\xfe\x8e\x32\x0c\x28\x70\x4f\x74\x3c\xb2\x9b\xb4\x41\xb0\x24\xb4\xf8\x68\xfe\xcd\xac\xc4\xcc\xcb\x6c\xc1\xb4\xc6\x5c\xce\xfc\xd6\x22\xc5\xc2\xcb\xb2\xc7\xd2\xc4\xd2\xc0\x9a\xdf\x32\xc3\xa9\xcc\xd7\x3d\x72\x31\x4d\xe2\xf2\x7e\x53\x61\x02\xa5\x5d\xb6\x4a\x3f\x1b\x2f\x96\x3c\xa0\xce\xa5\xd3\x1a\xd5\x28\x51\x57\x57\x3b\x46\x53\x5f\xdd\x5d\xad\x46\xed\x83\xaa\xba\x4a\x80\x1a\x9c\x9a\x8a\x9a\x91\x2a\x8f\x1a\xb3\xc6\x37\xf5\x28\xb5\x2c\x75\x1b\x4d\x11\xc3\x54\xeb\x13\xb7\xce\x10\x96\xb3\x99\xd5\xec\x51\xcd\x16\x81\x52\xe7\x34\xda\x70\x0e\x8f\x19\x1b\x5a\xfd\x12\xb5\x5b\x39\x2d\xa9\x48\x29\x44\xb1\x79\xd1\x5d\x51\x36\x91\x49\x11\x23\x51\x7e\x11\x7d\xe1\x0d\x11\x66\x91\x0d\xd1\x16\x31\x01\x71\x5a\x31\x3a\xb1\x57\x79\x12\xcd\x6e\xb3\xf7\xce\x8f\xe7\xe4\x6b\x72\x23\x59\x2d\x3c\xc5\x0c\x49\xbf\x83\x55\x5d\x60\x4c\xd7\xd4\xf9\xa4\x4d\x04\x37\xb8\x3f\xb2\x37\xb1\x63\xb0\xc9\xb3\x2c\xb0\x48\x31\x23\xb1\xc4\xb1\xbc\x63\x5a\x63\x96\x60\x5e\x66\x09\x64\x59\x61\xd5\x60\x39\x67\x8d\xe7\x15\x90\x28\x50\x15\x33\x3a\xbf\x50\x59\x43\x1d\x9b\x6e\x91\x2b\xa1\x4b\xbe\x0e\x8a\x72\xf2\x37\x6a\x50\xce\x10\x69\xe4\x28\xa1\x9b\x24\x4f\x26\x1d\x25\x39\x26\x79\x4f\xa2\x40\x14\x48\xfc\x83\x28\x9d\xc8\x8c\x28\x92\xe8\x27\x51\x1e\xb1\x14\x89\x1f\xf1\x01\x09\x3b\x35\x3f\xdb\x98\xc8\x89\x0a\xc5\x35\xf6\x66\xed\xf8\x6b\xbb\x7e\x39\x74\x2a\x28\xc4\xdd\xb9\xc8\xb8\x5c\x19\x41\x84\x94\xc5\x9f\xdc\x1a\x07\x06\x55\x1f\x65\x17\xd9\x18\x59\x0c\x71\x17\x49\x14\xb1\x07\x31\x0f\x71\x0b\x49\x02\xc9\x1a\xa9\x15\xb9\x07\x45\x01\x19\x84\xe9\x41\xd6\xcf\x01\x2b\xb5\x70\x9f\xb1\xbb\x33\xcb\xd1\x6d\x5f\x95\x90\x25\x14\x31\xeb\x21\x64\xde\xa4\x6e\x28\x56\xc1\xd6\x46\x6e\x8b\x51\x01\xe7\xfe\x99\x14\x8a\x0f\x32\x0d\x12\x09\xa2\x16\xa2\x1c\xc2\x09\x22\x14\xe2\x18\x52\x1e\xd2\x17\x8a\x1f\x4a\xfe\x33\x0e\x9c\x3d\xde\x4f\xc6\xdf\x62\xb4\x2f\x07\x27\x0a\xcb\xd4\x43\xbd\x8d\x08\x05\x52\x09\x70\x7e\x5e\x76\x86\xba\x2e\xb2\x02\xbc\xe7\x74\x4d\xf8\x22\x08\xe7\x90\x88\x00\x16\x40\x03\xb0\xbc\xc7\x05\x5b\xf8\xf4\x04\xb1\x04\xa5\xf5\x05\xef\x6b\xea\xb7\x2d\x98\x49\xd8\xd0\x9f\xb5\xf8\x7d\xcc\x28\xe2\xe0\x20\xd0\x0d\xce\x76\xea\xe4\x72\x67\x4c\x85\x4e\xfa\x5c\x58\xb1\xeb\x8c\x69\xbd\xea\xad\x18\x24\x1b\x0d\xb9\x30\x46\x0b\xf4\x15\x38\x34\x54\xe2\x57\x02\x68\x57\x38\xf8\x1f\x48\x08\x9f\x11\x2d\x91\x8b\x50\xa3\xd1\x2c\x30\x58\xb1\x0e\x71\x33\xa9\xaf\xb8\x63\x65\xe1\x41\xa0\x17\xfb\xe3\xc3\xa5\xc3\x21\xea\x06\xa7\x7c\xdd\x38\x1e\x5f\x37\xdb\x4a\x5d\x4a\xd9\x2a\xbe\x70\x7a\x76\x02\x58\x84\xd3\x1f\x9e\x08\x15\xc8\xac\x68\xac\x98\x9a\xd8\x4a\x78\xf2\xf8\x07\x44\x20\x92\x34\xb2\x35\xca\x28\x2a\x24\x9a\x48\xce\x5b\x49\x6c\xcd\xac\x7f\xfc\x36\x6f\xfa\xb6\xa2\x27\xd9\x3b\x60\xcb\xfd\xd2\xa3\xc3\x74\xdd\x3e\x9a\x36\xaa\x91\x8b\x9b\xb2\xeb\x52\x8c\x61\xeb\x61\xbb\xe1\xbe\x10\x1a\x12\x27\x91\xa3\x53\xd2\xd0\x98\xd0\x7f\x67\x6c\x65\xf9\xc1\x56\xc9\xb1\xc6\x2d\xc7\x4b\x27\x3e\xa6\x56\x61\x56\xf5\x8f\x08\x4f\xbf\x8e\xe4\x96\xf8\x07\x8a\xea\x7b\xf3\xd6\xe3\xe8\xfd\xde\xd9\xdd\xea\x8b\x2a\x64\x08\x62\x32\x45\x53\x5c\x53\xfa\xd3\x88\xd1\x65\x33\x19\xb2\xd8\xb2\x1f\x73\x1b\xf2\xba\x08\xb4\x0b\xeb\x88\xc1\x8a\x57\x4a\xa6\xca\x3a\xa8\x41\x9a\x08\x39\xff\x71\xe2\x7c\x0d\x6c\x32\x4c\x26\x74\x10\x97\x2f\xa6\xab\x87\x5b\xba\x5f\x5b\xb4\x6a\x06\x49\xf3\xf2\xf8\xb3\x45\xb1\x73\x73\x1e\xf0\x18\x0b\x7c\x15\xc6\x10\x0d\x96\x74\x94\xa3\x54\x00\x53\x6a\x57\x4d\xd6\x9c\xd1\x26\xd2\x57\x37\x81\x74\xdc\x0d\xf8\xa3\x76\xf1\x29\xf8\xc8\x70\x91\x6d\x10\xad\xd1\xb6\x40\x29\x11\x25\x10\xcd\xa9\xd4\x24\x58\xd5\x41\xb2\x5d\x78\x54\x0c\x57\x5c\x5f\x8a\x44\x0e\x53\x21\x44\xc5\x58\xc3\x43\xdb\x56\xaf\xdb\xf8\x83\x29\xa5\xc5\xa1\xcd\xb8\x7d\x81\x63\x85\xbf\x57\xdc\xbf\xbb\x48\xae\xc5\xb7\x55\x27\x7f\x77\x69\x55\xfa\x65\x53\x47\x6f\xf9\xc6\xd8\x0d\x1a\x92\xaa\xd1\x28\xf1\x2b\x5f\xa9\xae\xaa\x6f\xe8\x28\xe9\xad\x1a\x35\x9a\x79\x58\xe3\xd9\xb2\x3a\xde\xb9\x34\x7a\x72\xfa\x7a\xf8\x83\x42\x92\x63\x3f\x66\x0b\xff\x2b\xc2\xd3\xde\x49\xfa\x32\xd3\xb0\x76\xf3\x4b\x29\x53\x9a\x69\xb8\xb6\x97\x8d\x8d\x8b\xf1\x91\xbe\xb1\x21\x8b\xf1\x8a\xc9\x8b\x85\x99\xf5\xb4\xfd\x98\xf3\x95\x87\x8b\xb7\x5a\x00\x71\x30\x44\xc8\x6c\x94\x40\xfc\x6e\x9a\x69\x56\x54\x85\xed\x7f\xb2\xf5\x2d\xef\x8e\xc9\xac\x6f\xdf\x66\x83\x5e\x21\x4f\xb2\x6e\x68\xa7\xa7\xad\xe3\xa4\x2d\x96\x3d\x99\x83\xb7\xf3\xae\x5b\xa5\x17\x87\x9f\x63\x10\x61\x18\x75\x64\x40\x1c\x4e\xe2\x75\xda\x5a\xd6\x69\xbe\x41\x11\x78\x85\x56\xeb\x9f\xea\x1f\x7e\x7f\x3b\x6f\xdb\x38\x9d\x6c\xe8\xaa\xaa\x95\x2b\xf8\x94\xf4\x2d\xec\xde\x9f\xd7\x07\xc9\xd7\xc1\x7f\x3c\x50\x3f\xe4\x32\x3c\x36\x96\x35\x41\x3b\x39\x2f\x43\x29\xfb\xb5\x08\xb9\x4c\xa7\xe2\xa5\x1e\xa6\x79\xad\xab\x79\xa8\xfa\xcf\xcc\x78\x5c\x39\x56\x5f\x4d\x1c\xf3\xeb\x34\xaa\x79\x97\xf7\x39\x85\x2f\x6e\x22\x6a\x39\x66\x32\x0e\x21\x81\x23\x69\x29\x4d\x34\x6b\x26\x8f\xa8\x28\xbc\x9c\xbf\x1a\xbb\x21\xb7\x05\xbe\x53\xa6\xef\x65\x98\x65\x7c\x74\x81\xfc\xaf\xd4\xba\x27\x3a\x84\x5d\x92\x1f\x2d\xeb\x18\xab\xfa\x5c\xac\x93\x93\x98\x61\x94\xc5\x9e\x0b\x9d\xb7\x5f\x10\x5e\xbc\x58\x6e\x5e\x73\xd4\x50\xdb\x72\xdb\x69\xda\x87\x3e\xcc\x3f\x41\x3f\x03\xbd\x40\xbe\x45\xbe\x3f\xf7\x77\xf2\xdd\xe4\xec\x5f\x2f\x26\x8e\x52\x77\xb2\x35\xec\x54\x42\x96\xe9\x94\x93\x56\xea\xd4\xa0\xd7\xed\x37\x15\xb6\xed\x76\xe1\xf5\x4d\x0f\x17\x8c\x17\xce\x84\x2f\x1e\xad\xe5\x6d\x99\x1d\x4a\x9f\xab\xdd\xb2\xfd\x37\x3d\x6f\xd0\xf6\xec\x96\x4c\xc7\x1a\x7a\xae\xda\xe3\x5a\x6b\xdb\x58\x3a\x2a\x3b\x8b\x7a\xc1\xfb\x5f\x47\xae\x27\x7e\xcf\xea\x2c\xbe\xae\xa5\x6d\xdd\x1f\xc8\x9d\x74\x5c\xd9\xdf\x4e\xbd\x54\xfe\x2f\xfe\x82\xa2\x6e\x4e\x0f\x2c\x96\xab\x66\x4e\xc7\xcd\x46\x3f\x8c\xbe\x1b\x3b\x98\x20\x9e\x1e\x9b\xcf\x5a\x2a\x59\xcf\xde\xc6\x3d\x74\x3e\xb5\xbe\xf4\xbb\xff\xf2\xf8\xbf\xca\x40\xff\xfc\x1c\xbf\x8e\xf5\xb6\x43\x56\x9a\x96\xad\x56\x58\x56\xcd\xd6\x16\xb6\xa6\x76\x97\x0f\x7f\x9f\xee\x5f\x8d\xdf\xdf\x3c\xbf\x03\x9d\xfc\xff\x57\xff\x5f\x5e\xaf\xfd\xbf\x3f\xbe\xd4\xbd\x6c\xbf\x0e\x80\x44\x7f\xaf\xfd\x7f\x55\xbd\x38\xdd\xcf\xde\xa5\x5f\x61\x5d\x0a\x5e\x50\x9d\xc2\x9c\x98\x1f\x2f\x9f\x12\x1e\xa7\x9e\x2e\x9c\xcd\x9f\x1f\x9d\xe3\x5d\x58\x5e\x36\x5d\xa7\xdc\xc0\xdc\xf1\xdd\x2e\xdd\xdc\xbe\x88\xfc\x55\xfb\xac\xf8\xeb\xdd\xe5\xee\x89\xc0\xe1\xe7\xed\xce\x4d\xe7\x0d\xc4\xd5\xee\xd5\xbe\xa5\x9d\x25\x8c\xa5\xc5\x15\xf4\xd5\x2f\xab\xd0\xab\xa2\x6b\xa2\x6b\xf4\x1b\x22\x5b\x3f\xb6\xd3\x76\xcd\xb6\x18\xb6\xa9\x4e\x2a\xef\xf9\xff\xfd\xbc\xad\xd7\x39\x27\x4a\xfb\x8c\x1b\x45\xcb\x5d\xb3\xcf\xb3\xba\x53\xa0\x71\xec\x91\xd7\x61\xd6\x21\xf4\x41\xf8\x81\xd5\x41\xb0\xa1\xde\x11\xc2\x61\xbc\xe1\x84\x91\x8b\x31\x86\x71\xfc\x71\xc6\x29\x9f\xc9\x86\xc9\xa7\x15\xca\xbd\xe9\xcb\xb7\x5d\x94\xd7\xea\xcb\xf8\x83\xb1\x75\x86\x79\xc6\xf1\xfa\xe1\xe3\x7e\x83\xae\xe1\x0e\xb0\xd6\xb9\x16\xdc\xc6\xea\xfa\xfd\xba\xff\x1f\x7b\x7f\x1e\xbd\x5f\x51\x9d\x89\xe2\x66\x30\xe6\x63\x8b\xda\x1d\x8d\xd1\x8e\xa0\x46\x63\x63\xfb\xbe\x9e\x9a\xab\x42\x3a\xfa\x05\xe2\x3c\x01\xd2\x4e\x31\xa8\x38\x1b\x0c\x0a\x0e\x88\xb3\x82\x62\x70\x1e\x40\x71\x88\x0a\xe2\x44\x9c\x12\x11\x49\x1c\x82\x82\x3f\x5a\x32\x28\x31\xce\x8a\x4a\xda\x48\x14\x93\x88\xa8\x6d\xe4\xb7\xce\x7e\x76\x9d\xf7\xec\xaa\x7d\xce\xbd\xeb\xfe\x77\xd7\xba\xf9\x43\x16\xa4\xea\xf3\x9e\xaa\x5d\xb5\x6b\x0f\xcf\x7e\xf6\x8f\xff\xe2\xc2\x0f\x7d\xf1\xdc\xaf\x9c\x7f\xb7\xf3\x9e\x75\xde\xd5\x1f\xb9\xfc\xfc\xe1\xaf\xbe\xfe\xd1\x5b\x7f\xd4\x7f\xfc\x3a\x1f\xff\xda\xc5\x8f\xbe\xf4\xdb\xdf\x30\xd7\x5c\xf3\x1f\x6f\xfe\xb7\x77\x5d\xfe\xbb\x5f\x3a\xe9\x6f\x3f\xf3\x69\xff\xb1\x93\x3f\x7c\xf1\x5f\xdc\xf0\xfd\x47\x9c\xf3\xb1\x77\x1f\xfe\xce\xb7\xbe\xe3\x8d\x6f\x77\x67\x7e\xed\xed\xb7\x7f\xfb\xdd\xce\xba\xf2\xec\xbb\xbd\xe3\x27\xef\xfc\xa5\xf7\xdc\xe2\x3d\x07\x9d\xf3\xe1\x73\x4e\x7e\xef\xfe\xe7\xbc\xf6\xbd\xef\x38\xef\xc9\x17\x7c\xf2\xef\x7e\xed\x9a\x6b\x7e\xf4\x0b\xff\xfb\xc8\x2f\x9d\xf6\x77\xff\x72\xc1\x63\x3f\x72\xea\xfb\x8f\x7c\xe7\xd3\xce\x3c\xec\x4f\x7f\xe7\x8c\x7f\x7a\xfd\xb7\x5f\xf7\xa8\xd3\x8e\x3d\xed\x25\xaf\x7d\xc1\xab\xdf\xf8\xea\x03\x5f\xfd\xe6\xd7\xfc\xec\xb4\xed\xe9\x57\xbf\xfe\xab\xaf\xdf\xef\x0d\xd7\x7f\xfd\x95\x6f\xbc\xf5\x19\x17\xbe\xe9\xed\xef\xb8\xef\x07\xf7\xfb\xd8\xef\xfe\xec\xdd\x57\xbe\xf0\x1b\x2f\xfc\xec\x9f\x5e\xf8\x4b\x1f\x79\xd9\x9f\x3d\xe5\xcc\x74\xc6\x2b\x5f\xf5\x91\x97\x5d\xfa\x27\x1f\x79\xd1\x3f\xbe\xf0\xd2\x93\x5f\xfe\x82\x23\x5e\xf0\xfd\xe7\xff\xca\xf3\xbf\x73\xd2\xc5\x27\xdd\xf0\xa4\x53\x4f\xfa\xe2\x8b\xae\x7d\xca\x37\x4e\x49\xa7\x7c\xfd\x94\x6b\x5e\xfc\xf8\x97\xfc\xb7\xd3\x0e\x7c\xcb\xcf\xff\xec\x4e\x3f\xbe\xe2\x3b\xef\xf9\xe2\x1b\x2e\xf9\xa3\x8f\xde\xf6\xbd\x17\xbc\xed\x16\xa7\x9f\xfc\x92\xab\x5e\xf0\xe7\xcf\xfe\xe5\xa7\x9f\x7e\xc2\x45\x4f\x7d\xe9\xf1\x5f\x38\xfe\xa2\x27\x1d\x7b\xdc\x0d\x8f\x3b\xf1\xf8\xfd\x9f\xfc\x87\x4f\xb9\xd1\xf1\xa7\x3c\xf9\x9b\x4f\xfe\xb3\xa7\xd9\xa7\xe6\xa7\xbc\xfd\xa9\x0f\x3b\xf1\xff\x77\xd2\xeb\x5e\xbe\xef\x8c\xeb\x5d\xf5\x37\x97\xbb\x4b\x1f\x7f\xe1\xa1\xe7\x9e\xf5\x8e\x78\xc6\x7f\x7a\xe9\xad\x9e\xf7\x97\x4f\xbb\xdf\xb1\xbf\xf8\xb8\xa3\x1e\x73\xbd\x47\x3f\xf5\x91\xd7\x7d\xc4\xad\x1e\x6e\x1e\xf6\xdd\x87\x9f\xf7\xf0\xaf\x1d\x7d\xf3\xa3\x9f\x77\xf4\xad\x8f\xbe\xfb\xd1\x1f\x78\xd4\x6f\x3d\xea\xa4\x47\xbe\xe6\x51\xff\xfc\xb8\x5f\x39\xee\xc0\x67\x1d\xf8\xe2\xd3\xfe\xed\x75\xdf\xfc\x8d\x4b\xaf\x75\xc1\x4d\x3e\xf8\x94\xb7\xb9\x57\x1f\x7e\xf2\x3b\x4f\x38\xf1\x98\x9f\x1e\x7d\xfd\x07\xff\xe8\x01\x37\x3b\xf2\x29\x47\x9c\x76\xf8\xd3\x0f\xdf\x77\xd8\x61\xf7\xbd\xea\xf0\x3f\x38\xec\xd2\xc3\xef\x78\xf8\xfd\x8f\x38\xea\xf0\x17\xde\xef\xd5\xf7\x3b\xfd\xc8\x07\x1d\xf1\xd3\x07\xdc\xfc\x61\x0f\xf8\xa3\x7b\x3f\xed\x27\xff\x7e\xdb\xcb\x5e\xfa\xf7\xb7\xfa\xf8\x15\xef\xfd\xc4\x9b\x7f\xf2\xf2\x27\x3e\xe7\x03\x4f\x3a\xe8\x91\xe7\x3e\xf0\x76\xf7\xf9\xcc\x5d\xef\x71\xe8\x41\x87\xdc\xe0\xe0\xf3\xf7\x7d\xef\xe0\xeb\xed\x3b\xe7\x4e\x8f\xbd\xe3\x4f\xee\x74\xf2\x9d\xce\xbf\xd3\x67\xf6\xfd\xfa\xc1\x2f\x3c\xf8\xd5\xfb\xbe\x73\xf0\xf3\xef\x7c\xcf\xfb\x3c\xe6\xc1\x2f\x7f\xcc\x0f\xfe\xfd\x06\xdf\xba\xe8\xef\x2f\xfe\xc4\xf0\xbe\x2b\xfe\xf4\x97\x5f\xf6\xe8\x67\xbf\xe3\xd8\xdf\x78\xe8\x0f\x0e\x7f\xed\x9d\xdf\xfa\xbb\xf7\xf2\x67\x9a\x4f\x9b\x7f\x19\xde\x6e\xe2\x70\xdc\x1d\xbe\x7e\x87\x61\xb8\xde\x1d\x3e\x71\x87\xaf\xdf\xe1\x42\x73\x2b\xb3\xcf\xbc\xcc\xbc\xc1\xbf\xfa\xf7\x7e\xfd\x1e\xaf\x7f\xf0\x97\xae\x1e\x2e\xff\x9f\x97\x1e\x7a\xc1\x0f\x3f\x70\xc5\x5b\x8e\x79\xf9\x49\xcf\xb9\xee\xb1\xc7\x3c\xf4\xa1\xf7\x7d\xde\xc1\x77\xf1\xaf\x38\xf0\xb4\x5b\x9d\x7a\xcb\x7d\xb7\x78\xea\x01\x67\x1d\x70\xf8\xfe\x17\x1c\xf0\x0b\xfb\x5f\xba\xff\xdb\x0f\xb8\xef\x01\x27\x1d\x70\xfc\x01\x7f\x7d\x8b\xed\x2d\xbe\xfa\x5b\x87\xdd\xe1\xcb\x77\x3a\xed\x88\x5f\xf9\xe9\xb1\xff\xfc\xd9\x2f\xfc\xea\x45\xb7\xff\xd0\x3f\x9d\xb5\xdf\xab\x7f\xe7\x05\x7f\x78\xdc\x33\x1e\x7e\xf0\xe1\x27\x1e\x72\x7b\xf7\xc3\xdb\x9c\x7a\xd3\xfd\x6e\x78\xd6\x0d\x3e\x75\x83\x13\x6f\x70\xc0\xf5\x5f\xbb\xdf\xbf\x5e\x7f\xef\xfa\x77\xbd\xfe\x4f\x6e\xf0\xb0\x1b\x5e\xf6\x5f\x1e\xfb\x6b\x87\xfc\xda\x4d\x6e\xf2\x88\xdb\xbe\xee\x77\xde\x79\xef\x27\x5e\x73\xcd\x95\x47\x7d\xed\xca\x4b\xfc\x5f\x3e\xfa\x5d\xff\xe7\xf5\x4f\x3a\xe5\xec\x13\xc2\x63\x9e\xf9\x80\xd7\xde\xf5\xfb\xe5\xbc\xdb\xbd\xeb\x37\x6f\x76\xfd\x5b\x5f\x6b\xef\x97\x6e\x71\xed\xf3\x7e\xf5\x19\xff\xe9\xf6\xfb\x9d\x7d\x83\x57\xfe\xe7\xdf\xfb\xb5\xa7\xdc\xe8\x56\x37\xfe\xc1\x4d\xde\x7d\xd3\x27\xdd\xec\x26\x07\x6e\x0f\xfa\xe8\x7d\xee\x74\xcd\x35\x57\xdf\xf0\xf2\x27\xff\xc3\x2d\x2f\xf8\xe8\x07\xff\xe0\xad\xcf\x7d\xe5\x3d\x9f\xfb\xbc\x27\x1e\xf1\xd0\xb3\x0e\x3b\xec\xe0\x13\xdd\xfd\x6f\xf3\xec\x1b\x7f\x77\xbf\xe3\x6e\xf8\xad\x1b\xfd\xf2\xaf\x3f\xe2\xa6\xf1\xbf\xde\xeb\xe6\x9f\xbc\xc5\x2f\xdd\xf2\xe9\xbf\xf5\xc4\xdb\xdc\xed\xb6\xbf\x7d\xe0\x9b\x6f\x77\xa6\xfb\xda\x21\xc7\x1c\x79\xab\x6b\xae\xb9\x66\xbf\xef\xdf\xe6\xab\x4f\xfd\xcc\x55\xe7\x7f\xfc\x5d\x2f\x7f\xdd\x9b\x4e\x39\xe6\x84\x73\x1f\xf3\xf5\x07\x3e\xf9\xee\x57\x1c\x74\xc7\xdb\x9f\x7a\xf3\x8b\xfe\xeb\xc9\xfb\x3f\xe2\x96\xfe\xb7\x2e\xfc\xed\x8f\x1c\xb8\xff\xed\x1f\x79\x87\xdb\x99\x23\xed\x83\xc3\x75\xd2\xa6\x1c\x7a\xd0\x05\x07\xbf\xfd\xbe\xdf\x7f\xe8\x71\xe3\xdd\xfc\xd1\xd5\x97\x3f\xf6\xd2\x73\x2e\xb8\xfe\x07\xde\xf8\xd6\x87\xbc\xe2\x99\xcf\x79\xe1\x13\xef\xff\xf0\x1f\x1d\xf1\xc0\x43\x1f\xeb\xaf\x39\xf0\xaa\x03\x4f\xfc\xef\x3f\xd9\xbe\xc4\xfc\xcc\x7f\x20\x1d\x59\xae\xf9\x1f\x8f\xbf\xd3\x31\x87\xec\x7f\xe8\x3f\xdd\xe5\x8c\xbb\x6f\xef\xf5\xb6\xc3\xd2\x51\xff\xf9\x98\x2f\x92\x7a\x78\xcc\xf7\xfe\xe8\x2b\x4f\xfa\xcc\x01\x1f\x79\xc1\xbb\xe2\xeb\x5e\x7a\xca\x71\x27\x5c\xf4\xb8\xab\x1f\xfc\xfe\x7b\xdd\xe5\x8e\x07\xa4\xfd\xd2\x95\xe5\xf3\x07\x7d\xee\x8e\x8f\x3e\x78\xff\xdf\xff\xc5\xbb\xfe\xc9\x3d\x9e\x7a\xef\xc7\x1d\x7e\xfe\xff\xdc\x7b\xe0\x21\x0f\x3a\xe1\x21\x37\x7b\xd8\x7f\x3f\xe6\x97\x4f\xfc\x6b\x68\x98\xab\x9e\x73\xf9\x83\x3e\x77\xe1\x5f\xff\xe8\x03\x7f\xfd\xd6\xcb\x5e\xf9\xf2\xe7\xdf\xe6\xf8\x2b\x1e\xf9\xe4\xfb\xff\xe1\xdd\xae\x3a\xf4\xbf\x1d\xfa\x83\xbb\x1c\x73\xf7\x73\xee\xf5\xe4\xfb\x3e\xee\x88\x4b\xef\xff\xeb\x0f\xfe\xdc\x43\xce\x7e\xd8\x4b\x1f\x71\xdf\x47\x7f\xf7\xf1\x77\x38\xe6\x8a\x63\x3f\x7c\xe2\x41\xa7\x3c\x0a\x7f\xe1\xe7\x67\x7f\xef\x5e\x5f\xfe\xc6\xc5\x3f\x3d\xff\xdc\xf7\x5c\xe7\x0d\xdf\x7f\xc9\x6f\x3c\xf3\x7b\x7f\xfc\xbc\x87\xdb\x23\xcf\x3c\xec\x3a\x47\x9c\x71\xe4\xb9\x0f\xf8\xe8\x83\xbf\x75\xd4\x2d\x1f\xfe\xa6\x47\x5d\xe7\xb1\x97\x3d\xe1\x0e\xc7\xde\xf6\xb8\x8f\x9e\x70\xd0\x89\x6f\x7b\xd6\x2f\x3e\xff\x66\x2f\xfa\xd2\x6b\xa7\xfa\x8b\x1f\xbd\xf8\xf2\xfb\xfc\xc3\xf5\x3e\xf9\xbd\xbf\xf8\xc2\x59\xff\xe7\xb5\x9f\x3f\xe5\xb7\x9f\x7e\xea\x31\xef\x39\xfa\x53\x0f\xbd\xe8\x61\xa7\x1e\x7d\xb7\x47\x9e\xfe\xd8\x93\xff\xe8\x43\xc7\x3e\xe3\xf8\xfb\x3f\xed\xbe\x27\xfe\xaf\xe7\x7c\xf3\xf9\x5f\x7d\xe1\xfb\x4e\x7d\xfc\x4b\x3f\xfb\x8a\x57\x9d\x76\xe3\x33\x9f\x5e\xff\xc2\xcf\xbf\xf9\xfd\x37\x7c\xfd\x0f\xfe\xe6\xc5\x1f\xfd\xd1\xfb\x2e\x7d\xeb\xdd\x5f\xf5\x92\x93\xbe\xfc\xb4\xab\x9f\xf8\xd3\x27\x3c\xe7\x8f\x5f\xf4\xc4\xd3\x8f\x7b\xd1\x53\xe3\xd3\x9f\xfd\xac\x07\x3d\x6f\x78\xe1\xb5\xff\xe4\x91\x2f\x3d\xe1\x55\xfe\xb5\x27\x9e\x71\xeb\x37\xde\xf9\xcc\x6f\xbf\xe3\xf8\xf7\xcf\xbc\xdf\xab\xff\xf1\x7f\xff\xf0\x8b\xd7\xbe\xf8\x3a\xe7\xef\x7b\xcf\x5f\xfd\xe9\xc3\x5f\xf9\x88\x93\x3e\xf8\xcc\x53\x4f\xfc\xfb\x67\xdd\xfe\x59\xdf\x7c\xee\x5b\x5f\x70\xd9\x8b\xca\xa9\xb7\x7c\xd9\xdb\x5e\xf3\xe0\xd3\x9f\xf1\xc6\xdf\x7c\xeb\x4d\xce\xfa\xe3\x77\x3c\xe1\x9c\x5f\x7d\xff\xb7\xce\x3b\xe3\x63\x77\x9d\xeb\xfb\x7f\x7b\xf9\xb7\xcf\xfc\x87\x13\x2f\xfa\xcd\x0f\x3f\xe4\xdd\x67\xbf\xe9\x6e\xaf\xd9\xff\xd4\x93\x5f\x7c\x9b\x53\xc3\x4b\xee\xf1\xb2\x27\xbc\xea\xed\xaf\x8d\xaf\xbf\xe4\x4d\x17\xbd\xf5\x21\x67\xff\xfb\xbb\xaf\xfd\xde\xdb\xfe\xf9\x1f\x7f\xe8\x9f\xff\xea\x61\x9f\x38\xec\xc2\x7f\xbd\x64\xdf\xfc\x2f\xfc\xfc\xc6\xdf\x3f\xfb\x1b\x3f\xff\xdc\xfd\x3f\x79\xe1\x87\x9f\xf6\xae\xbb\xbe\xe5\x2b\xaf\x7f\xd5\xe9\x17\xbf\xee\xa9\x67\xfc\xdd\x9b\xde\xff\x96\xdb\x9d\x79\xc8\xd9\x5f\x3e\xe7\x88\x0f\x1c\xf3\xa1\xcd\xf9\x87\x7f\xfc\x3a\x17\x9c\x7f\xe1\xb9\x97\x7c\xea\xef\x0f\xfa\xfc\x57\xbf\x7e\x5e\xf3\xea\x3c\xe6\x7b\xd7\xfe\xea\x87\x3e\xfb\xc2\x4f\xbe\xe4\xdc\x6f\xbd\xf7\x29\xef\xfc\xe0\xd9\x2f\x7b\xe7\x9d\xdf\xf5\x17\xe7\x0c\xef\xfb\x85\x0f\x6e\xce\xbd\xee\xf9\xf9\x63\x37\xfa\xd4\xb1\x9f\x7e\xc6\xdf\x1e\xf2\xd9\x97\xfc\xe3\x27\xbe\x72\xe3\xcb\x4e\xff\xce\x5f\x7e\xbf\xcb\xa1\xfc\xf8\x3a\xdf\xbd\xe8\x6b\x7f\xf0\xb7\xef\xfb\xd4\xab\x3e\x7a\xeb\xf3\xee\xff\xa1\x13\xce\xcd\xe7\xdd\xfe\xfc\xbb\xfe\xd5\xfd\x3f\x71\xd7\x4f\x3d\xf1\xe2\xbb\x5c\xf2\x84\xcf\x7e\xf0\x0b\xb7\xff\xca\x09\xdf\x38\xf9\xf2\xcb\xaf\xf8\x2f\x57\xde\xf8\x87\x37\xfd\x59\xe8\x5f\xce\xab\x6f\xfe\xdd\xd7\x7c\xed\xe8\x7f\x78\xd0\x25\xbf\xf7\xc9\xe7\x7e\x72\xbf\x4f\xbe\xe5\xc2\x07\x7e\xfa\xf4\xff\xf5\x99\xbf\xb9\xf8\x73\xff\xe3\x0b\xa7\x7f\xb9\x7c\xe3\xb9\xdf\xfe\xd7\xef\xfc\xf8\x7b\x9f\xfe\xe1\x6d\x7e\x72\xa3\xe5\x1c\xc8\xd5\x4f\xbe\xe2\x79\xdf\x7c\xf3\x17\xff\xf0\xd2\xa3\x3f\xfb\xae\xcf\x3d\xfb\xd2\x57\x7d\xfe\x13\x5f\x7a\xc8\x57\x3f\xf9\x8d\x3f\xbf\xfc\x0b\xff\xfc\x9d\x2b\x7f\xe1\x87\xf7\xfb\xf1\x9b\x7f\xf6\xec\xa5\xb9\xf5\xff\x7e\x7a\xf4\x95\x1f\xfa\xee\xf5\xbe\x7d\xa7\x6f\x5e\x70\xd9\x7f\x7c\xeb\xf3\x97\x5f\xf9\x9d\x37\xff\xcb\xab\x7e\xf0\xe7\x3f\xbc\xe7\x4f\xf6\xfe\xe3\x59\xed\xd8\x6b\x2d\xfe\xdf\xb5\xaf\x7d\xd3\x9b\x6e\x36\xfb\xf6\x1d\x79\xe4\x63\x1f\xfb\xcc\x67\xbe\xe2\x15\x67\x9d\x75\xde\x79\x97\x5c\x72\xd9\x65\x57\x5d\xf5\x7f\xf5\xfb\xff\xdf\xff\xfd\xbf\xe7\xff\xae\x75\xad\xe3\x1f\xf9\xb4\xe3\x47\x79\x1f\xfc\xfb\x77\xb9\xdb\xbd\x8f\x3a\x74\xdf\xfd\xf6\x1d\x75\xe7\xfb\x1c\x7e\xaf\x7d\xf7\xbb\xee\xde\x21\xf7\x7a\xe0\x3d\x8e\x3a\x04\xff\xb8\x17\xfe\xf1\x40\xfc\xe3\x1e\x7b\xf7\xdc\x77\xf0\x51\xf7\xa4\xff\xdd\x47\xff\x7b\xf0\x75\x7f\xff\xde\x87\x8a\xe9\xbb\x3f\x78\xdd\xbd\x61\x3b\x0c\x83\xf2\xbf\x25\xcc\xfe\x65\x63\xc7\x7f\xd4\xc1\x46\x19\x3d\x6c\x63\x1a\xf6\xc2\xb6\x8c\xa3\xdd\x36\xc7\x69\xb4\xed\x47\xe7\xb8\x35\x79\xd8\x33\x76\x3b\x98\x61\x6f\x13\xb6\xd6\x4c\xc3\x9d\x32\xdc\x6c\x5d\x19\xf6\x4c\xde\xa6\xf1\xaf\xc7\xad\x29\xd3\x70\xdf\x0f\x4f\x71\xeb\xed\xb0\x67\xc3\x36\x65\x1a\x5e\x76\x7f\x3d\x84\x6e\x78\xcc\xdb\x68\x87\x3d\x97\xb6\xc9\x0e\x7b\x9b\xb4\x75\x69\x1a\x9e\xfa\xbf\x1e\x87\x6d\xf6\xc3\x5e\x18\xb6\xa1\xd0\x5f\x4f\x7e\x1a\x9e\xfb\xbf\x1e\xdc\x36\x8c\xb3\x1c\xcd\xda\x84\xf9\x5f\x37\x43\xff\xe7\x7d\xc6\x0f\x7b\xec\xbb\xc3\xbe\x2b\x3b\xce\xfb\x6e\xb6\x3e\x93\x7c\x4a\xc2\x5a\xe3\x6e\xb8\x32\x2b\xa7\xad\x49\xc3\x9e\xa5\x25\x6f\xf2\xd6\xf8\xdd\x70\x4d\x50\x96\x3e\x3b\x6f\xc3\x28\xa7\x32\xee\xeb\x34\x5c\x11\x54\xca\x5b\x3b\x0a\x2a\x6c\x8d\x1b\xf6\x36\x66\xd8\xda\xd9\xdf\xd7\x44\xe5\xb6\x2e\x0e\x7b\xd6\x6e\xcd\xb8\x5a\x63\xc6\x03\x31\x4d\xd0\x84\x15\xb6\xa9\x0c\x7b\xce\x61\xbd\xc6\x6c\xed\xec\x93\x14\x71\x85\x3c\x9e\x96\x3d\x1f\xb7\xc1\xe3\x93\xf2\x6c\x82\x26\x30\xb3\x1d\xf2\xb0\x17\xca\xd6\x3b\xac\x39\xcf\x77\x54\x91\x58\xd8\xc6\x38\xec\xc5\xb2\x8d\x9e\xce\x8f\x1f\x25\xa6\x6c\xe6\x24\x81\x98\xe9\x24\xd0\xe9\x34\x66\x9b\x67\xe3\x35\x91\xb9\x6d\x1c\x77\x7f\xc0\x3f\x8c\x1d\x6f\xc1\x34\x41\xf9\x9d\x84\x4f\x0f\xbc\xa7\x6e\xfc\xae\x69\xbc\x26\xb5\xb0\x1d\x46\xa9\x99\xad\x0f\xe3\x04\xbf\x75\x61\x37\x41\x93\xda\xb0\xb5\x99\xee\xe3\x28\xbc\x71\x42\x29\xbb\x09\x9a\xd4\xec\xb6\x8c\x37\xb2\x6c\x33\xfd\x42\x18\x27\x4e\x13\x34\xa9\x05\xba\x35\xde\x6e\x9d\xe7\x5f\x98\x7d\x92\x22\x35\x9f\xb7\xde\xd0\x3c\x9c\x3c\xb7\x2d\x6e\xbe\xab\x8a\xd8\xdc\x76\x88\x74\xa0\xac\x87\x1c\xca\xb8\x4d\xca\xfe\x4c\x62\xc8\x85\x0e\x84\xa1\x35\xc4\x6d\x08\xbb\xf1\x8a\xdc\x52\x99\x94\x21\x4d\x48\xe3\x92\xa6\x09\x9a\xdc\xc2\x78\x36\xf7\xcc\x36\xd1\xf8\x8c\xcb\xe3\x96\xe5\x66\xe8\x44\xa4\x6d\x8a\x18\x9f\x66\x7f\x5f\x11\x5b\x4c\xf4\xe9\xc6\x8f\x5f\xbe\xb7\x31\x05\x77\xc7\x2d\x8a\x2d\x14\xba\x65\x36\xe0\xc4\x9a\x82\x83\xe1\x96\xc5\x66\xb7\xc9\x91\x2a\x2d\xfc\x0b\xc3\xec\x93\x34\xb1\xe1\xc1\x18\x95\x69\xc2\x1e\x15\x3b\xdf\x54\x45\x6c\xb8\x06\xb1\xde\x86\xb8\xb5\xe3\x37\x29\xcb\x9d\xa4\x40\x6a\xdd\xd8\x6d\x18\x4f\x86\xa5\xed\x9d\x26\x68\x72\x8b\xdb\x21\xd0\x45\xa6\x5f\xb0\x16\x2a\xdb\x2f\xcb\xcd\xe2\x48\xd8\xed\x60\x31\x21\x99\xdd\x04\x45\x70\x31\xd3\xbb\xe7\xc6\x9b\xbf\xb7\xb1\x6e\x6b\xe3\x6e\xbc\x26\x38\xb7\x8d\x85\xbe\xd5\x39\x4c\x48\xb3\x09\x9a\xe0\xe2\x36\x8d\x82\x33\x74\x4f\xc7\x09\x71\x36\x41\x11\x9c\x2f\x74\x88\x9c\x1b\xd7\x4a\x13\x9c\xdd\x4d\xd0\x04\x47\x1f\x3d\xca\x2f\xf0\x9a\xbd\x99\xef\x6a\xff\x13\x0e\x8b\x0e\x61\xeb\xe8\x9b\x06\xdc\x37\xe5\xeb\xa7\xa7\x21\x0c\x38\xd7\x9e\xbe\xa9\x40\xd2\x3c\x41\x11\x5c\x2c\xdb\x92\x71\xf9\x49\xd7\xdb\x32\xbe\x15\xd3\x0c\x45\x72\x31\x8e\xeb\x1c\xdf\x41\x4b\x37\x75\x18\xff\x39\x4d\xd0\x24\x67\x71\x50\x2d\x96\x3d\x4e\x98\x7d\x93\x22\xba\x90\x49\x83\xb9\x6d\xce\x18\x4f\xaf\x09\x8f\xd7\x24\x67\xb1\x3a\x8f\xd7\x67\xfc\x81\xb4\x9b\xa0\x49\x2e\x6c\x7d\x84\xb1\x53\xb0\xe6\x3c\xfb\x05\x45\x72\xae\x90\x8a\x74\x69\x1b\x03\x26\x18\x37\xdf\x56\x45\x72\x7e\x6b\xcc\xb0\xe7\x13\xfd\xd2\xc6\xe6\xed\x30\x4a\x4e\xf9\x98\x69\x57\x33\x0d\xf4\xa4\x0d\x36\x2e\x8d\x2f\xd1\x34\x41\x93\x9c\x83\x65\x67\xca\x68\xbf\xd0\x0c\x37\x9b\xa1\x49\x6e\x20\x93\x90\x5e\x86\xcc\x33\x66\x1f\xa5\x88\x2e\xc4\x6d\x9e\x8c\x18\x9a\x10\xf2\x6e\x82\x26\x3a\x3b\x9e\xd0\x51\x7f\x5b\xfe\x85\x60\x77\x13\x14\xd9\xf9\xb4\x1d\xd2\xb0\x17\x71\xad\x5d\x1a\x6d\xa1\x69\xbc\x26\xba\x81\x4e\x85\x49\x7c\x38\xa2\xf8\x22\x4d\x74\x9e\xb6\xc7\x16\xe8\x01\x17\x20\xeb\xb4\x72\xe9\x06\x7a\xa2\x5d\x1e\xad\xd4\xbd\xcd\xf8\x07\xc6\x35\x28\x7f\x7b\xda\x56\x7a\x1b\x9c\xc1\xc5\xf0\x1e\xdb\x9a\x17\x2f\x5d\x60\x73\xc6\x46\xdc\x0c\xef\x71\x25\xf2\xe2\xa5\x0b\x7e\xd4\x8f\xa4\x89\xb3\xc3\x0c\x33\x9b\xa1\x89\xce\x40\x2d\x99\x38\x3e\x40\x34\x63\x88\xbb\x19\x8a\xec\x7c\x7d\x81\x06\x28\x0f\xef\xa0\x0a\xf2\xe2\xc5\x1b\x4d\x0d\x58\x59\x64\xd6\x7b\x07\x85\x96\x17\x2f\x9e\x8b\x74\xba\x0b\x2f\x82\x9e\x97\x69\xbc\x26\x3c\x43\xf7\x6e\xd4\x7b\x34\xc1\x8c\xe6\xc4\x6c\x67\xfb\x5f\xb0\x91\x4c\x44\x37\x90\xb3\x34\xce\xb0\xf0\x05\x96\x2e\x1e\x2f\x6b\x3c\x7a\xf4\xcf\x40\xff\x79\x37\x43\x13\x1f\x5b\x58\xce\xf2\x46\x95\xf1\x37\x77\x53\x14\xf9\xf9\x02\x3b\xd1\xa6\x6d\xe6\x29\x3e\xce\xa6\x28\x02\xf4\x91\x75\xb8\x85\x0a\xf1\x65\x6b\xe6\x53\x34\x09\x3a\x36\xfd\xd2\x76\xa0\xfd\x22\x2f\x6d\x37\x45\x11\xa1\xcb\xf4\x26\x8d\x0f\x37\xfd\x48\x1a\x7d\x97\xdd\x0c\x4d\x86\x8e\x6c\x64\x8b\x03\xe9\xd3\xb8\xd1\xbb\x09\x8a\x10\x6d\x22\x8b\xc8\xb8\xad\xa1\xeb\x11\xc7\xad\x98\x6f\xb0\x22\x45\x78\x72\x16\x8a\x7d\x9c\x32\xf3\xa4\x15\xb9\x14\x8f\x85\xd3\xfb\xb8\x17\xe0\x72\x89\x71\x62\x78\x2e\xa3\xf1\xbd\xe7\xc9\x68\x74\xb0\x3c\x84\xe8\xe4\x68\xd8\xd5\x66\x20\xb3\xcb\xc2\xdb\x12\x62\x93\xc3\xe1\xeb\x8e\xa6\xab\x1b\xff\x5b\xe8\xfc\x6e\x31\x3c\x05\x98\x1d\xe4\x0f\xd0\x55\xea\x1c\x6f\x31\x3e\x66\x7a\x58\xea\x71\x35\x78\x1c\x85\xb4\x4c\xa3\x9d\x46\x67\x77\x3c\xd6\x64\xe4\x8f\x06\x5a\xe3\x7a\x8b\xf1\xc1\x8d\xbe\xd8\xf8\xba\x90\x61\x26\xbe\x5f\xbd\x13\xe3\x91\x29\xf0\x4a\xc7\x65\x8f\x96\x4a\xe3\x7b\x4b\x51\x0d\x78\x74\x49\x81\xed\x0d\xb8\xd0\x66\x45\x56\x71\x1b\xe2\xf8\x77\xe9\x12\x50\xc4\xa4\x75\xbe\xe5\x78\x3b\xbe\xfe\x7b\x89\x66\x6d\x2c\xc2\x1e\x66\x59\x5c\x29\x91\xc2\x30\x1e\x61\x15\x27\xbe\x5f\x15\x98\x9d\xec\x44\xac\x63\xee\xeb\xaa\x12\x83\xf5\x36\xde\x1b\x44\x33\x6c\xec\xbc\x6f\xd3\x3c\x0f\xc5\x90\x95\x92\x30\x21\xf4\xde\xb7\x9c\x30\xd0\x84\x90\xb7\x91\xae\x0b\x4c\x5d\xb3\x26\xb4\xb0\x8d\x8e\x0e\x13\xf9\x67\x14\x09\x69\xfc\x6f\xb9\xab\x09\x8e\x71\xda\x5a\xba\xf5\xe3\x61\x6a\xfd\xef\x56\x0c\x78\x4c\xea\x1a\x5c\xea\xfc\x6f\xb9\xad\x78\x6e\x3d\x8e\x5d\x1c\x3f\xaf\xf5\xbf\xe5\x78\xbf\xf5\x1e\xf6\x7d\x82\xfe\xea\xfd\x6f\x29\x86\x42\x3f\x30\xde\x4b\x4f\xe6\xeb\xfc\x17\x54\xb9\x59\x1a\x69\x33\xc2\x26\x05\xa6\x89\x5d\x91\x5b\x18\x9d\xc3\x3d\xcf\xe1\xa5\x02\xc5\x62\x97\xe5\xe6\x33\xbd\x9f\xc1\x63\x57\xb3\x90\x82\x2e\x37\x47\x61\x87\xc8\xa6\x6e\x82\x2a\x75\xcb\x72\x73\x14\xc9\x19\xdf\x74\x0a\xb4\x48\xe7\x52\x13\x5c\x2a\xb0\x17\xd8\xe5\x30\x03\x5e\x1d\xb7\x22\xb9\x40\xc6\xde\x40\x7a\x63\x63\x8c\x98\xa0\x8a\xce\xd0\x61\x8a\x08\x90\x19\x0b\xd3\xd8\xad\x88\x0e\x81\x28\xe3\xf0\x69\xc6\x8e\x56\x69\xeb\x84\x4b\x51\x14\xb2\xac\xac\x47\xcc\xce\x38\xdc\x52\xb7\x22\x3c\x4b\x5b\xea\x22\x9f\x5b\x36\x7e\xdc\x8a\xf4\x70\x3f\x7d\xe1\x75\xb0\x4b\xea\xd6\xc4\x07\x9f\x3d\x14\xba\x7d\x14\xc7\xca\xad\x23\xde\x4a\xc3\x70\x30\x87\x04\x6e\x3c\xdc\x02\xbf\x22\xc0\x50\x83\x70\x90\x7c\x18\x0d\xec\xd6\x15\x6f\xe5\x41\xf6\x9b\xe3\x20\x4a\x18\xcd\xb3\xd6\x17\x97\x02\xa1\xb8\xcc\x9e\xe5\x58\x56\x84\xfd\xe3\x57\x24\xe8\xb6\xd6\x0d\x7b\x99\x37\x37\x09\xef\x5d\x15\x60\x24\x7b\xdd\xd6\x67\x2b\xc1\xf3\xf5\xcb\x02\x1c\xe5\x60\x87\x3d\x67\xe9\x7d\x1c\x5d\x60\xd3\xbb\xe3\x72\x86\x85\x19\xe0\xd9\x2d\x4a\x22\x06\xa1\x0a\xd0\x25\x58\x18\x55\x1c\x11\xcf\xa3\x30\xac\xba\xd7\x22\xc2\x75\xc7\x83\xc4\x26\xac\x5c\x73\xab\xa8\xc8\xaa\x36\x01\xea\xdc\x5a\xe8\x36\xe9\x92\xb7\x4f\x0c\xf9\x69\x66\x80\x35\x67\xc9\xff\x6a\x9d\xf2\x56\xbb\x0d\xfc\x7e\xf1\x8c\xdc\x7b\xe5\xdd\xb3\x34\xfe\x37\x18\x2a\xd6\x0b\x2f\x5b\x95\xa1\x19\x9d\xb3\x3d\x63\xd9\x6b\xf6\xd8\x5f\xe9\x97\xb7\x57\x8a\xec\x7d\xe8\x76\x9a\x51\x3a\xc7\x5c\x0a\x04\x47\xca\x45\x0e\xc2\xf8\x71\x9b\x3b\xcf\x5c\x4e\xf1\x14\xac\x1e\x8d\xca\xc2\x91\x21\xd3\xba\xe6\xad\xfa\x31\x09\xc6\x3b\xc2\x61\x05\x32\x4c\xcb\x97\x70\x34\x9f\x32\xc7\xb5\x3c\x07\x31\x4c\xe7\x9c\xb7\x2a\x2b\xb3\xf1\x1e\x38\x8c\x91\x87\xce\x3b\xef\x2e\x89\xe5\x38\xac\x81\x07\x6a\x4c\xe7\x9f\x77\x6a\x2e\x92\x7a\x27\x6d\xed\x8c\xe6\xa0\x4b\x99\x44\x3a\x86\x9e\xc2\x69\xe3\x04\xb2\xc0\xd2\xca\x45\xc4\x5b\x63\x6a\x5e\xcb\x20\x96\x9e\x96\x2f\xa2\xf3\xb4\x74\x9b\xb0\x9c\xd1\x91\x76\xbd\x8f\x2e\xa7\x20\x9c\xee\x22\xfc\x29\x37\x20\xa5\x94\x17\x2f\x62\x28\x30\x75\x9c\xa7\xa4\x1b\x05\x58\x5c\xe7\xa5\xb7\x07\x1e\x42\x2c\xbc\xbd\x09\xc6\x61\x5e\xbe\x88\xc1\x23\x0e\x6a\xe1\x5b\x8c\x53\xa2\xed\xfc\xf4\xd6\x78\xa3\xc8\x8f\x29\x78\x71\x5d\x1a\xed\xcb\xd6\x51\x6f\x4d\x6e\xc7\x11\x7b\x3a\xc2\x2e\xc1\x72\xc8\xcb\x77\xd1\x1b\x8e\x12\x41\xb7\x20\xb0\xd8\xba\xea\x72\x87\x23\x1d\x91\xc4\x6f\x03\x5d\xfe\xd6\x57\x97\x13\x0c\xe9\x6a\x93\xa1\xe9\x5c\x42\xb0\x3f\xaf\x5c\x45\x1b\x29\x10\x32\x7a\x88\x0e\xd1\x9c\x52\x3a\x6f\xbd\xdd\x60\x37\xc0\xb1\x27\x83\x74\xd4\xe1\xa6\x77\xd7\x5b\x3d\x84\xb3\x1b\xf1\x5e\x79\x07\xd1\x37\xfe\x7a\x6b\x9a\x15\x3e\x8b\x64\xcc\xf9\x29\xa9\xb8\x7c\x1d\x47\x8d\x62\x10\xd6\xa1\xd8\x36\x8c\xb5\xce\x63\x6f\xdf\xa0\x6c\xf1\x3e\x90\xe6\x1e\xd7\x13\x7b\x97\xbd\x7d\x84\x68\x8e\x19\x48\xbf\x8e\x73\xa2\xe9\x9d\x76\x39\x87\xdf\xa1\x01\x56\x81\xb7\x10\x4e\xe3\xb6\x4b\xe1\x20\x49\x52\x23\xe8\xde\xca\xf8\x83\x2e\x50\x47\xb7\xcb\xb0\x4d\x34\x9e\x3a\xdb\x38\xee\xc2\xc9\x28\x8e\x0d\x34\xfa\xc7\x68\x42\xa5\xd6\x73\x17\xe3\x33\xac\x53\xca\x95\x53\xf2\x2d\xb7\xae\xbb\x1c\x2e\x96\xc5\xa1\x6d\x21\x40\x39\x7c\x20\x2b\x05\xf6\xcc\x1e\x9b\x1c\x42\x76\x62\x38\x1b\xbe\xd6\xd3\xb1\x8a\xd0\xf0\x42\x6c\x62\x78\x4c\xf4\x16\xb8\x48\xd6\x3e\xc5\x60\x1b\xc7\x5d\x0e\xc7\x89\xf0\x85\xfe\xba\x87\xc5\x24\x96\x25\x86\x07\xb8\x97\xd1\x6e\x6d\x18\x87\xfb\xde\x6d\xb7\x8d\x0e\x19\xfd\xf0\x84\xa8\x7c\x40\xae\xd0\x2c\x0b\x6a\xa8\xb0\x03\x43\x76\x5c\x1e\x3a\xb7\xbd\xdd\xf9\x8c\xf0\x87\x19\xb7\x66\x9e\x61\x57\x05\x65\xe0\x8f\x92\x0a\x0c\xc2\x07\xd7\x04\x95\x52\xc5\x42\x8c\x4a\xcd\x21\x89\x67\x56\x24\x85\x5d\xb1\x03\xe2\xfe\x22\x28\xa0\x8a\x2a\xd4\x4b\x33\x8a\x60\x18\xdf\x98\xd6\x63\xb7\xcd\x4b\x11\x61\xbe\x8c\x9b\x34\xd4\x98\xe3\xb2\xb0\x18\xf9\x81\x28\xf6\x50\x63\x81\x2b\xd2\x42\x0c\x2a\x12\xf8\x60\xcf\x8c\x5a\xb3\x71\xd7\xe5\x76\x46\xc4\xc3\x32\xed\xa7\x47\x88\xce\xae\x48\xcb\x72\x32\x87\xde\x13\x8b\xc3\x63\x97\xc5\x95\xf0\x1d\x96\x1e\xdf\x41\xa4\x8d\x55\x71\x51\x66\x79\xaf\x50\x64\x66\xc3\xcb\xb5\xcb\xe2\x8a\xf0\x7a\x4c\x8d\x80\xe2\xad\xb2\x2b\xf2\x82\x51\x6a\xf1\x59\x1b\x87\x2c\xb0\x5d\x11\x98\xa7\xe3\xe9\x07\x44\x31\x9d\x96\x2a\xb7\xcd\x7b\x30\xfa\xf6\xc1\x71\x1a\x01\xe6\x86\x5d\x13\x99\x1b\xfd\xda\xd1\x12\x84\xd1\x88\x2b\xe3\x96\x65\x66\x39\xc5\x6c\x11\x27\x1d\xc4\x04\x4d\x6a\x29\x23\x68\x1b\x39\x8d\x05\x80\x80\x5b\x11\x9b\x87\x25\x3e\xf0\xdb\x36\x3e\x8b\xad\xa7\x2e\x27\x0c\xf4\xf1\x01\x8b\x0e\xdb\xc1\x76\x8e\xba\x94\x43\x84\x09\x60\x61\x30\x47\xd8\x71\x6e\x59\x70\xa1\xd0\x04\x7e\x36\x36\x09\xee\x94\x5b\x11\x1c\x50\x2f\x2e\x20\x85\x95\x45\xb0\x41\x15\x5c\xa0\x6d\xf5\x19\xd9\xc7\x0c\xff\xd9\xad\x09\x0e\x4a\x2b\x64\x38\xe9\x9c\x92\xf2\x8b\x82\x4b\x15\xd2\x11\xe0\x19\x45\x18\xe1\x7e\x45\x70\x9e\x71\x2c\x03\x60\x0e\x49\x64\x8e\x55\xc9\xf1\xc8\x80\xb4\x46\xd6\x3c\xf4\x56\x12\x70\xd6\x06\xc4\x02\x72\x9f\x2d\x97\xe3\x2d\xd9\x48\x8c\xe7\x32\x03\xd2\x00\x7e\x45\x72\x81\x0e\x91\xc9\x38\x7c\xc6\x40\xc7\xfb\x65\xd1\xf9\x42\x4a\x66\x74\x52\x76\xe0\x82\xd6\x41\x97\x33\x2c\x2d\xc2\x3b\x86\x9b\xb0\x9d\xe3\x57\x84\xe7\xa0\x52\x03\x27\x20\x6b\x70\x49\x38\xe8\xed\xd3\x30\x78\xf6\xb2\x39\xd2\x32\x98\xce\x41\x97\x7b\x95\x19\xdb\x91\x78\x4a\xc0\x83\x22\xb7\xa9\x7b\x50\xfc\xec\x72\x9b\x88\xfc\x9d\x74\xd0\x5b\x9d\xe6\x11\x0a\x45\x34\x20\x21\x8e\x23\x1d\xf4\xf6\x15\x72\xf4\x2f\x34\xcf\x24\x1c\x12\xe9\xa0\xcb\x09\x86\xbc\x15\x63\xa0\x98\x4d\x06\xce\x4b\x3a\xe8\x52\x22\x48\x4f\x5b\xe0\x80\x46\x9f\xc5\x87\xce\x41\x97\x02\x81\x92\x72\x1e\x26\xbe\x29\x70\x88\x1a\x07\x5d\x4e\xf1\xf5\xb7\x48\x29\x98\x82\xf7\x34\x2d\xde\xc0\x88\x7c\xfe\xe8\x05\x1a\x86\x9f\x98\xd4\x39\xe8\xed\x79\xa7\x4b\x6b\x03\x56\x62\x2d\x5c\x8f\xb4\x7c\x07\x47\x5d\xc5\x90\x9e\x8a\x41\xa1\x90\x49\x5a\xbe\x85\x21\x70\x48\xcd\x8f\x7a\x8a\xdc\x42\x57\x3a\x07\xbd\x95\x49\x66\x55\x18\xf0\x7d\xd6\x75\x0e\xba\x94\x49\x64\x78\x22\xc1\x01\x6c\xc0\xd5\x4d\x2b\x17\x11\x96\xa5\xf1\x0c\x8d\x89\x5b\xef\x3a\x07\xbd\x95\xc8\xe8\x69\xd8\x80\x03\x6f\x23\xae\x6e\x5a\xbb\x88\x03\x25\xf6\x1d\x83\xcb\x6c\x44\x06\x20\x2f\x5e\xc4\x50\xe0\x01\x39\x76\x06\x6d\xc1\x03\x98\x97\x2f\x62\xe0\xdc\xb6\xb3\x1c\x6a\x18\x44\x02\x5a\x15\xa2\xc3\xed\xb0\x09\x8e\x87\x1b\x44\x4a\x59\x15\xe2\x40\x4f\xff\x78\x44\x86\xc4\xe1\x89\xd2\x39\xe8\xad\x48\xa0\xe0\x03\xa3\x39\x18\x40\x95\x97\xef\xa2\x37\xc8\x4b\x04\x8e\x35\xb0\x91\x9a\x97\xef\xa2\xa3\x87\x66\x2f\xb0\xcd\x63\x11\x98\xc9\x2b\x57\x71\x40\xaa\x8b\x63\x65\xce\xe2\xba\xe7\x95\xab\x38\x3a\xe8\x80\x05\xe3\x82\x59\x99\xbb\xd5\x37\x18\x4e\x29\x5f\x78\x17\xaa\x75\xbe\x7c\x19\x47\x3d\x34\xae\xc1\x73\xd6\x7e\x7c\xdd\x63\xef\xa0\xb7\x06\x19\x64\x1f\x90\x3c\x19\x9d\x7b\xc5\x41\x6f\x6d\x01\x6f\x18\xe4\xc4\xe8\x11\x91\x1f\x57\x45\x69\xf1\x4d\xd6\x71\x58\x23\x42\xad\x36\x0e\x7a\xfb\x08\x79\x4e\x3b\x64\x0e\xe9\x0c\xb6\x77\xd0\xe5\x1c\xcb\xe8\x25\xb6\xc4\xd9\x26\x68\x1c\x74\x29\x1c\x82\xe3\xec\x71\xea\xde\xb1\xf1\xd4\xfa\xe7\x72\x0a\x70\xb1\x26\xc2\x10\x74\x09\x17\xb9\xbd\xb8\x3b\xb7\x8f\x31\xd2\xf4\xf2\x52\x3e\xbe\xcb\xac\x8b\xf1\x39\x93\xce\x26\x20\x08\x45\x01\x52\xeb\x9f\xcb\xe1\x14\x44\xde\x2b\xa3\xc3\xb1\x67\xd2\xdc\x9d\xd7\x20\x9c\x09\x70\xe1\xf1\xf1\x44\x80\x71\x86\x0b\xd7\x90\x83\x09\x41\xcb\x51\x74\x00\x20\x04\xdb\x7a\xe8\x62\x7c\x4c\xf4\xd6\x3a\x44\xd3\x8d\x99\xe7\xe2\x35\x90\x54\x00\x36\xd7\x67\x64\xfc\x07\x9c\x40\x21\x30\x39\x1e\x90\xde\x48\xfe\xdb\x38\xde\xf8\xce\x49\x17\x13\x3c\x22\x3d\x89\x92\x06\xe3\x07\xf5\xc0\x76\xb9\x9f\x05\x7e\x1f\x42\xdb\x26\xe1\xed\x30\x2b\xf2\x42\xca\x72\x33\x54\x0c\xfa\xe0\x3a\x47\x5d\x4e\x30\x40\x24\x22\xcc\xe3\x46\xfb\xa1\xf5\xd4\xa5\x08\x00\x71\x32\x80\x7b\x8e\x96\x46\x0f\x6e\x97\x13\x0c\xa2\x4e\x94\x3d\x1d\x4f\x46\xea\x5c\x75\x29\x33\x4f\x9e\xb1\x33\xf4\x5e\x32\x90\xdc\xac\xc8\x2c\x21\xac\x82\xc7\x2f\xd6\x08\xdd\xb2\xcc\x06\x3a\x9c\x21\x91\x9d\x10\x9a\xc0\x87\x26\xb3\x40\xc9\x8b\x48\x9b\xbf\x27\x13\xd9\xba\x04\x22\x20\xd2\x74\x31\xed\x36\xf6\xc8\xf6\x56\x02\xa4\xbc\x00\x58\x30\x03\xee\x98\x5d\x16\x59\x4a\x64\x19\xa0\x6e\x24\x6b\x89\x75\x39\x1c\x2e\x6e\x06\x0c\x04\x31\x30\xbb\x2c\xaf\x08\xd0\x81\x09\xc8\x6c\x0a\xcf\x5b\x95\x97\x21\xd5\xc3\xb1\x7e\x07\xe0\x9b\x5d\x91\x97\xa7\x00\xb4\x2b\xf4\x9c\x18\x44\x7b\xed\xb2\xbc\x3c\xc0\x13\x01\xd0\x65\x83\xf7\xca\xae\xc9\x8b\x2f\x25\x02\x61\x16\x59\x43\xb7\x2c\x2f\xc3\x69\x1a\x57\xc3\xe3\xb9\xf3\xd2\xdb\xed\x2f\x80\x4e\x10\x6a\x7b\x74\xb0\x5a\x27\xbd\x55\x5a\x88\x22\x93\x55\xe7\x85\xcf\xad\xc9\x2b\x16\xfa\x7e\x24\xb5\x18\x52\xec\x56\xe4\x15\x28\xa0\x8d\x22\x90\x3d\xf6\xf3\xdc\xb2\xbc\x02\x2a\x7d\x46\xf7\x88\x2c\x1a\xe1\x3f\xab\x02\xc3\x05\x9e\x0c\x3f\x04\xf3\xdc\x8a\xc4\x10\x5e\xf0\xfc\x8e\x59\x24\x93\xdd\x9a\xc8\x06\x14\x6b\x4c\x20\x1f\xe7\x5b\x0f\xbd\xbb\x01\x9c\x45\x0e\x88\xff\xb9\xce\x41\xef\x64\x30\x73\xd7\xf8\x8e\xf9\x15\xa1\x0d\x70\xa1\x90\x2b\xdb\x18\xe8\x45\xbf\x22\xb5\x08\x07\x95\x51\x13\x1c\x72\xf3\x2b\x72\xa3\xaf\xde\x8b\x0c\xa2\x06\x02\xc2\xaf\xc8\x8d\x50\x70\x7b\xf0\x02\xa9\x72\xa6\x77\xcf\xe5\xa6\x52\x50\x61\xcf\x32\x20\x3c\x8a\x84\xbb\x2a\x37\x18\x05\xde\x22\xa5\x40\xb8\x9a\xce\x39\x97\x17\x09\x11\xf0\xc0\x86\x74\xc2\xfb\x27\x7c\xf3\xf6\x2d\x70\x9c\x6b\x0e\x28\xff\x99\xe3\xb4\x35\xc1\xc5\x5d\x15\x85\x1b\x76\x85\x45\xd2\x48\x6b\xdf\x0f\x5f\x18\xf0\x01\x10\xce\xdc\x3f\x55\x45\x07\x80\x1f\x5f\xe8\x4d\x11\x6e\xb6\x26\xba\x10\x21\x03\x03\xd3\xce\x0c\x88\x36\x4a\xc7\xbc\x7d\x74\xc6\x4b\x57\xe0\x0a\x1a\x4e\xd6\x48\xbf\x5c\xca\x02\xaf\xa0\x35\x8c\x09\xe7\xf3\x21\xfd\x72\x29\x0b\xd4\xa7\x39\x36\xd7\x51\xe0\xd2\xf9\xe5\x72\x0a\xaa\x79\xbc\xe3\x6a\x1e\x0f\x65\x9f\x16\xef\x5d\x64\xd4\xb2\x63\xe8\xff\xe8\x71\xda\xce\x2f\x6f\x9f\x07\xb8\xb1\x0c\x9c\x37\x41\x38\xa7\x9a\x04\x03\x27\x1c\x47\xaf\xdf\x33\xe2\xd9\x75\x7e\x79\x7b\x39\xc8\xa8\xaf\xae\x90\x61\x20\x55\x5a\xbe\x7f\x15\x4f\x5d\xf0\x5c\x9b\x2c\x12\xfa\x9a\x10\x7d\xa0\x97\x8e\x8c\x36\x44\x0d\x42\xe7\x97\xcb\xfd\x2d\xc0\xb6\xb3\x27\x60\x07\x31\x43\x15\xa2\xa7\x8f\xb2\xec\x67\x58\x99\xcd\x57\x85\x68\x81\x7d\x75\x1c\xc8\xb6\x6c\xe4\xe6\xc5\x4b\x18\x32\x2e\x88\x1f\x38\x53\x69\xa1\xdc\xf2\xf2\x2d\x0c\x8c\x5c\x74\x0c\x01\xb0\x56\x38\xd9\xaa\x10\x2d\x02\x9c\x6e\xe0\x3a\x14\x07\x9d\x9b\x97\xef\xa1\x2f\xd0\xea\xd6\xc3\x65\xb6\x1e\xc6\x62\x5e\xbe\x89\x9e\x2a\x9f\x20\xbd\x32\x8b\xae\xe4\xe5\xab\xe8\x0d\x72\xec\x5c\xee\x62\x23\x8e\x70\x5e\xbe\x8b\x0e\x16\x1d\x03\x68\x6d\x42\xc5\x58\x5e\xb9\x8a\xc8\xe3\x9a\x8a\x1d\x48\xc2\x93\xd7\xa5\x48\x31\x9b\x3d\xd4\x1c\xd1\x94\x92\x3b\xbf\xbc\xf3\x3d\x02\x30\xe1\x14\x92\xb2\x19\x11\xc8\xc6\x2f\x6f\xd5\x10\xb9\x13\x1e\xb5\x54\xe3\x9c\x64\x7a\xbf\xbc\x73\x59\x18\x61\x80\x8b\x5c\x6a\xb5\xe9\xf2\x75\xf4\x9e\x13\x12\x48\x99\x6c\xf0\xff\xec\xfc\xf2\x56\x2e\x99\x93\xed\xf5\xe0\xb8\xd0\xfb\xe5\xed\xfb\x33\xf0\xb5\xcf\x5c\xb1\x61\x14\xb4\xbb\x9c\xc3\x8f\x55\x60\xa0\x89\x45\x18\xb6\xf1\xcb\xa5\x70\x12\xc5\xab\xeb\xa2\x38\xce\xdd\xfa\xe5\x72\x0a\xe1\x8e\xe9\x08\x0c\x98\x43\xf1\x22\xb1\xe0\xf9\xbf\x14\x7e\x74\x1d\x65\xc8\xc6\x75\x84\xd6\x2f\x17\xe3\x33\x30\xf8\x08\xf2\xdb\x3c\x77\x6c\xad\x36\xdc\x91\x1d\x83\xd8\xbe\x0d\xf3\x54\xb5\x53\x86\xa7\x02\x7f\x33\x20\x4a\xc8\x79\x25\x31\x50\x8e\xa7\x8c\xe4\x68\x53\x52\x85\xab\x99\xfb\xf1\x5a\x59\x58\x8c\x64\xfc\x3b\x54\xe7\x1a\xce\x3e\x0b\x99\x89\xf1\x01\x50\x40\x9f\xc9\x64\x32\x1c\xe5\x11\x02\xf3\xad\xf2\x81\x5f\x3e\x60\xbc\x88\x72\x28\x3f\xe0\x61\xc8\x24\xbc\xe8\x26\x0a\xaf\x56\xdb\xcf\x8c\xba\xc8\x48\xa6\xb1\x8d\x30\x58\xcd\x8a\xbc\x3c\x17\x77\xd2\xe1\xb3\x0e\xc6\x98\x59\x91\x18\xae\x2a\x76\x68\x54\xea\xb1\xf3\xcb\xa5\x08\x02\x8a\x32\xe0\x36\xd7\x2a\x55\xb3\x22\x33\x38\x0c\xe3\xe6\x07\x84\x16\x42\xe7\x98\x4b\xa1\x39\x3c\x34\x86\xf4\xa0\x21\x48\x5f\xeb\x99\x4b\x29\xa0\x04\xce\xa3\xc4\xd3\xb0\x2b\x63\x56\xc4\x46\x01\x17\x8a\x02\xc3\xa3\x09\xbe\xf7\xcd\xa5\xdc\x08\x7c\x3f\x9e\x27\xb2\x8d\x8d\xc8\x5c\xeb\x62\x28\x9c\x0f\x8b\x0e\xfb\xea\x3b\xef\xbc\x95\x03\xe1\xac\x3c\xca\x92\x0b\x4c\x11\xbb\x2c\xb8\x14\xe9\x27\xc8\x26\x1c\xb7\x95\x8e\x9e\x5d\x11\x1c\xca\x85\xa9\xb0\x6e\xaf\x82\x7b\xed\xb2\xdc\x22\xe1\x60\xc7\xfd\x8f\xb0\x2d\xb2\xed\x1c\x74\x39\x01\xc1\x58\x1b\x11\x90\x18\x00\x3c\xb1\x2b\x72\xf3\xf4\x0b\x8e\x14\xfd\x5e\x16\x48\x7f\x4d\x6c\xa3\xa3\x57\xe0\x27\xda\x71\x21\x2e\xf7\x1e\xba\x9c\xb0\x0b\x9b\x75\x1e\xb7\x26\x02\x64\xb5\x08\x33\x1d\xe8\x76\x06\xd3\xb9\xe8\x72\x4f\x13\xbc\xb7\x82\x90\x8a\x07\x78\xd6\xad\x08\x8d\x33\x92\x78\xe3\x8d\x15\x45\xe1\x9a\xd4\x62\xa1\x68\x90\xa3\x58\xb5\x19\x44\x4d\xb8\x2a\x35\x3e\x3f\x03\xbd\xef\x19\x05\x4d\x6e\x59\x68\x21\xc3\xfd\x37\x35\xc8\x10\x3b\x27\x5d\x8e\x37\x14\xa1\x75\x54\x78\xb8\xc7\x85\xff\x6e\x45\x66\x50\x2c\x9c\xd7\x60\x8c\x9a\x5b\x93\x19\x8a\x28\x03\xaa\x77\x1c\xe2\x8a\xed\x08\x79\x0b\x38\xd7\x37\x00\xd9\x35\xf4\x2e\x7a\x2b\x02\xc7\xb0\xfb\x00\x64\x79\xe9\x5c\xf4\x56\x04\xe4\xe9\x00\xd0\x48\x91\xde\xd6\x43\x97\xe3\x03\xe7\xc2\x69\x3c\xb3\x2f\xf8\x15\x91\x19\xc6\x4a\x78\x8a\x6b\xcd\x0b\xe6\x55\x89\xa1\x08\xd7\x44\x32\x93\xb8\x4c\xd1\x2f\x4b\xcc\x67\x10\xb4\x70\x12\x52\x26\xe8\x55\x91\xa1\x38\xd3\x1b\xde\x27\x81\xd1\x57\x65\x06\xb0\xea\x78\x36\xc0\x07\x21\xb2\xc1\x9a\x08\x98\x4f\xc0\x12\xb9\xcc\x9e\x6d\xa0\xd7\xca\x16\x25\x98\xdf\x5c\xcf\x29\xab\xd9\x55\x99\x39\xf6\x9c\xc3\x14\x2d\x49\x9d\x73\x2e\x67\x70\xb2\xae\xb0\xb9\x0e\xe8\x93\x14\x40\xfb\xea\xd0\x55\xb6\x5c\xe2\x0c\x68\x95\xf4\xcd\xdb\x57\x67\x5c\x2d\x63\x6f\xf8\xaa\x49\xd7\x5c\xca\xc1\xe3\x0d\x67\xc7\x26\x89\xf8\x82\x26\x38\x07\x42\x18\x67\x81\x07\xce\x62\x97\x74\xc1\x21\xab\xe3\x0d\x8a\xaf\x8b\x28\x04\xd7\xb5\x0b\x25\xbd\x9d\x87\x0d\x1d\xe1\xd1\xa5\xe5\xdb\x16\x0d\x07\x25\x0b\x08\x06\x92\xc8\x4a\x6b\xa2\x0b\x1c\x78\xb2\x1e\xa7\x29\x83\x4e\x21\x2d\x5f\xb8\xe0\xe1\xc7\x9b\x0c\x61\x17\x68\xa5\xb4\x7c\xe5\x02\x3f\xb6\x6c\xc5\x8c\xff\x74\x7d\xb2\xbc\xb3\x00\x06\x3a\x49\x89\xcb\x7c\xe6\xd8\x02\x4d\x7e\x0e\x58\x56\x33\x70\x4a\xd7\x43\xf9\xa5\xe5\x9b\xe7\xb0\xbd\x96\xab\xa3\x47\x7b\x32\xf5\x5e\xb9\x04\x14\x21\xdd\xe1\x90\xe8\xa1\x8a\x9a\xd2\x7a\xe5\xdd\xf6\x5a\x76\xcd\x6a\xaa\xb1\x87\xb3\xcb\x29\x0c\x75\x70\x99\x6d\x4b\x8f\x0d\xce\xcb\xf7\x2f\x58\x84\xd1\x5c\x2d\x2c\x0e\xe2\x57\x34\x29\xfa\x32\x15\x4b\xd4\xaa\x9a\xc1\x76\x5e\x79\x2b\x13\x44\x16\x0c\xbb\x67\x59\xe4\xbe\x55\x31\x0e\x1c\x68\x1d\xb8\x10\xa7\x20\xa6\x96\x97\xef\xa1\x43\x98\x79\x80\x1f\x57\x9d\x8e\xbc\x72\x0f\x61\x5e\x8e\xaf\x3b\x83\x4a\xbc\xeb\xdd\x72\x29\x46\x4a\x42\x93\x47\x13\x10\xc4\x18\x7c\xe7\x96\x77\x3b\x4c\xf1\x59\x3e\x2c\x76\x50\xdd\xf2\x76\x8b\x53\x42\xed\xf5\x50\x69\x41\x52\xef\x96\xb7\x46\x97\x61\xac\x38\xaa\x5e\xb8\xf4\xac\xf1\x46\x5b\xcd\xe5\x38\xe5\x8d\x58\x91\x95\x75\xee\xaa\x2c\x0d\x19\x3a\x84\xde\x60\x56\x94\x58\x7a\xb7\x5c\x6e\x74\x64\x1c\x15\x53\x1d\x59\x3e\x98\x8d\x5b\x2e\xe7\x18\x80\x70\x32\xc7\x80\xa2\xac\xf3\xd7\xe4\x69\x23\xbd\xb8\x76\x02\x80\x58\x2d\x5d\x2e\xa7\xa0\x7c\xd2\x30\x14\xcb\xe6\x79\xf1\xb7\x58\x10\xfe\xa5\xf0\xea\x3d\x72\x8c\x8c\x04\x14\x92\x14\xe3\x33\xd8\x2f\x90\x12\xf3\x16\x38\x63\x21\x44\x39\xdc\x92\x4e\xcd\x55\x2f\x65\xdf\xba\xe5\x62\x78\xca\x64\xd6\x1a\x4f\x26\x86\xe3\x2a\x3d\xb1\x4c\x39\x1e\xb7\xdc\x82\xde\xc0\xb9\x39\x76\x5f\x63\x5f\x89\x60\xa4\x73\xb0\xb3\x6b\x55\x94\x90\x99\x18\x1f\x0a\x79\x16\xcc\x89\x62\x23\xa4\x2c\x04\x26\xc7\x53\x56\x84\x9e\xf4\x81\x60\xf6\xb3\xef\x57\x29\x0d\x3c\x6a\x7b\xd3\x40\x0e\x89\xf5\x55\xc2\x4b\xe2\xca\xc8\x8c\x6e\x12\xd2\xf8\x92\x17\x4d\x95\x97\x43\x35\x0c\x8a\x69\x5c\x16\x40\x72\x4d\x62\xa9\x50\x80\x96\x3d\xa4\x80\xe4\x99\x59\x11\x59\x40\x08\x02\x8f\x8d\xb3\xb0\x52\xcd\x8a\xcc\x86\x4a\xf3\x67\x60\x1d\x7a\xd7\xb9\xe5\x52\x68\x60\x8f\x1b\x95\x1b\x23\xba\x5c\xe7\x96\x4b\x29\x20\xd4\x88\x02\x98\xf1\x70\x84\xdc\xb9\xe5\x72\xc2\x50\x49\x8b\x22\x2a\x38\x93\xe9\xdd\x72\x29\x37\x60\x78\x22\xe0\x39\xe3\x3e\xfa\xd6\x2d\x6f\xc5\x50\xb8\x7e\x36\x00\xaf\x51\x62\xe7\x96\xcb\x19\x5c\xbe\x10\xe9\x09\x04\x85\x45\xeb\x96\xb7\x82\x28\xb0\x38\x0d\x44\xe5\x7b\xbf\x5c\x4e\x80\x42\x8a\x04\x8c\xb0\x09\xf6\xbf\x5d\x16\x5c\x4c\x80\x5c\x20\xda\x61\x03\x4c\x30\xbb\x22\x38\x54\xba\xdb\x50\xe9\x07\x4c\x9f\x39\x97\x72\x20\x5b\x76\x3c\xa5\x54\x28\x9f\x05\x43\x9d\x26\xb8\xf1\x62\x3a\x24\x9f\x80\xb2\xb1\x4a\xee\x5c\xce\x00\xe8\x30\x0e\x13\x06\xa0\xc3\xb8\x77\x62\x48\x93\x1d\x31\x0e\x8c\xb1\x73\xcd\xe5\xb6\xb2\x79\x6e\x06\x3a\x22\x36\xc1\xcf\x73\x2b\x92\xb3\x00\x79\x51\x76\x6a\xdc\x2e\xd7\x97\xa3\xcb\x8d\x85\x67\xc5\x25\x04\x16\xef\xa2\x5b\x91\x1c\x92\xc3\xa5\x16\x28\xcf\xab\xbe\x35\xc1\x85\x44\x02\xb0\x03\xe2\x5a\x51\xa0\xee\x55\xc1\x81\x69\x64\x3c\xa5\x91\x4e\x48\xea\x31\xee\x52\x0c\xc0\x93\x73\x91\xc8\xf8\x5a\x95\xde\x3d\x6f\xfd\xb8\xd1\x2a\x0f\x01\x21\x12\xae\x35\xe8\xcc\x45\x71\x1d\x38\x27\x35\x9a\x29\xd6\x8b\xc2\x75\x55\x70\x96\x6b\x53\x3d\x45\xf5\x46\xbd\x61\x3a\x07\xbd\x95\x43\x44\x42\xd5\xa0\x84\xac\xf4\x39\xf4\x56\x10\x70\x31\xc8\xed\x31\x09\x35\x19\x7e\x45\x72\x60\x6a\xf2\xf8\x81\x20\x0a\xc4\x55\xc9\x79\xd4\x83\x05\x50\x90\x18\x20\x19\xfd\xb2\xe4\x98\x42\xc9\x82\xdf\x29\xe3\x01\xf5\x2b\x82\x03\xf8\xdc\x21\xe7\x1e\xf1\x80\xfa\x15\xb9\x39\x4a\x68\x8f\x16\x60\xa6\xaa\xad\xdc\x25\xd0\xe5\x82\x0b\x20\xd4\x96\x75\x40\xd4\xe8\xe0\xda\x37\xdd\x72\x55\x34\xc5\xc2\xd8\x08\x90\x3e\xba\x9c\x61\xd9\x47\x4f\x35\x0c\x9b\xfb\xd2\xf3\xd6\x0e\xb0\xec\xb6\x8d\xd6\x55\xc1\x8b\x22\x2d\xc3\x76\x4d\x64\x7f\x11\xd7\x4a\x8d\x18\x4a\x81\xc9\x6d\x2d\x80\x60\xa1\xc6\x07\xaa\x5b\x7a\xe8\x72\x38\xb2\x28\x86\xb2\x5b\x7b\x2c\x65\xe9\xa0\xb7\x42\x48\x78\x42\x13\x48\x87\x82\xe2\xa0\xcb\x19\x0e\x09\x09\xc0\xec\x36\x1c\x46\x4e\x8b\xd7\x2d\x3a\x84\x30\x1d\x9c\x28\xb2\xf3\x5b\xff\xbc\x3d\xd9\x86\x01\xba\x36\x10\x0c\x2b\x77\xee\x79\xfb\xaa\x17\x8e\xdd\x24\x8a\x57\x79\xdb\x79\xe7\xda\x6b\x32\x6a\x00\xd2\xf5\xd0\x31\x69\xf9\xb2\x85\xaa\xeb\x1d\xa2\x12\x83\x98\xa1\x8a\xad\xc2\x05\xa6\x2a\xae\xde\x35\x97\xdb\x5a\x68\x9b\x32\xb8\xb5\x02\x14\x6b\x5a\xbe\x6e\xce\xd1\x62\xc7\xfd\x00\xe7\x55\x51\x50\xec\xb2\x54\x84\x79\x44\x0a\x16\xcf\x51\xc6\xbc\x78\xe1\x02\xca\x6e\x46\xd7\xcc\xcd\x80\x40\x79\xf9\xc2\x05\xbc\x53\x9b\x0a\xa3\xb1\xc2\xf3\x57\x45\x67\xb8\x50\x3c\x22\xea\xe1\x85\x27\xab\xc9\x8e\x89\x5e\xa9\x4a\xde\x02\x63\xde\x03\xd8\x5b\x8b\x6c\x60\xd4\x73\x01\xb8\x27\xe6\xce\x23\xef\x22\x83\x1c\x88\x00\xa4\x62\x00\x41\x75\x5e\xbe\x77\x8e\x39\xaf\x2c\xce\xae\xb1\x82\x37\x4f\x13\x20\x57\xe2\x17\x78\xe4\x95\x74\x37\xaf\xdc\x3c\x4b\xb6\x21\x15\xa5\x73\x00\x43\x20\xbe\xf5\xed\xa5\x82\xbd\x8a\xda\x49\x35\xf7\xb6\x7c\xfb\x3c\x53\x04\x05\x03\x58\x41\xa9\x66\xfb\xf2\xfd\xf3\x91\x55\x5a\xe4\x30\xc9\x20\xd1\xdb\xaa\x18\x1d\x50\xdb\x7e\xe0\xc3\x65\x6a\xd5\xee\xf2\x2d\xf4\x03\xea\xbe\x1d\x0b\xd2\x38\xf9\x6d\x9a\x28\x5d\x44\x6d\xbd\xad\xb1\xa5\x50\x6d\xfe\x95\xab\x58\x6b\x88\x2a\x27\x4c\x92\x7e\xbf\x2a\xcd\xc8\xb0\x3c\xa6\x1a\x2a\x30\x1f\x5b\x8f\x5c\xce\x71\xa4\x55\x12\x02\x7f\xa3\x32\xca\x8d\x43\x2e\xb4\x6a\xa9\x08\x06\xd8\xa9\x1c\xa2\x16\x92\x14\xe3\x73\x44\xca\x18\x86\x70\x9e\x7b\x9c\x56\x1b\x6e\xb8\x52\x3c\xe2\x26\xcf\xf2\xd2\x4e\x19\x9e\x52\xcd\xf2\x8f\xf6\x44\xe0\xa0\xbf\x10\x9e\x1c\x0f\xca\x71\x6b\xe0\x9f\x12\x8a\xb1\x71\xc8\xc5\xf8\x08\x73\xce\xc1\xc0\xf1\x76\x8e\x77\xd7\x28\x35\x43\x06\x63\x34\xc8\xbd\x50\x3a\xd7\x38\xe4\x72\xbc\x45\x11\x6c\x41\x40\xc1\xcf\xb9\xe4\x54\xc6\x40\x26\xaa\x88\xa5\x46\xb4\x4b\x97\x27\x6f\xb7\x3f\x21\x58\x1c\x32\xea\xd9\xfa\x3c\xb9\x9c\xc0\xa4\xec\x16\x49\x1a\x57\x59\x0d\x16\x25\x96\x32\xd9\x10\xe0\x4e\xf5\xa5\xc2\x66\x96\x45\xe6\x91\xe2\x1f\x6a\x44\x47\xa1\x87\x93\x32\x40\x84\xdc\x90\x07\x48\x31\x9d\xde\x21\x97\x13\xf0\xed\xcc\xf3\x5d\x79\x36\xcc\x8a\xd4\x08\x06\x49\xf0\x4b\x8e\xfd\x87\xce\x21\x97\x52\x40\xd9\x44\x00\xcb\x8a\x93\xe5\xe9\xba\xdc\x40\x9a\x1a\x3d\xfd\x84\xcd\x22\xed\xad\x89\xc1\x31\x4d\x13\xa0\x6b\xc1\x34\x4c\x66\xca\xbe\x16\x14\x42\x22\xfd\xe5\xb3\xc0\x69\xab\x82\x9b\x08\x12\xa3\xa3\x0f\xcc\xa9\x73\xc8\x53\xf3\x81\x20\x83\x1c\x4d\x6b\x2f\x4b\xe6\x55\xc1\x31\x8c\xc0\xe1\xac\x66\xd8\x5c\x76\x59\x70\x01\xdb\x6a\x91\x51\x70\x4c\xff\x6c\x57\x04\x07\x52\x20\x6e\x9a\x60\xb3\x86\x65\x6f\xaf\xcf\x68\xdf\x84\xe9\x29\x4b\xb6\x77\xc8\xe5\x0c\x38\xbf\xa1\x20\xc4\xe6\x04\x96\x5a\x17\xc3\xc0\x39\x8a\x6c\xc0\x60\xd2\x17\x9d\xcb\x19\x81\x53\x01\x08\xd6\xd7\x03\xee\x56\x24\xc7\xaf\x62\xa8\x30\x81\xd4\x53\xb4\x4b\x49\x24\xc6\xee\x1b\x30\x3b\xf9\xbe\xea\x5c\x8e\x47\x5a\x3d\xd7\xb0\xa5\xc2\xd0\x2e\xe5\x40\xfd\x27\xc8\x75\x37\x38\xdd\x3d\xa4\x5d\x4e\x40\x1a\xde\x61\x73\x2d\xb3\xf5\xba\x15\xc1\x81\x8f\xd4\xfb\x29\x04\xe6\x7b\x87\x5c\xe2\x66\x41\x1b\x1f\x3c\x02\xce\x45\xd0\xbc\x2d\x5c\x07\x3f\x41\x3e\xd9\x9f\x6f\x1d\xf2\x56\x0c\x8e\xe1\xb1\x14\x03\x8b\xc2\x3b\xd5\x04\x17\x2b\x6c\x1e\x65\x79\xce\x09\x48\xb8\x2a\x39\x10\xb3\x6c\x00\x14\x76\x5c\xaf\xe4\x97\x45\x17\xa8\x32\x7d\xcf\x51\x25\xa3\xcd\xa0\x28\xf6\x2b\xa2\x73\x15\x2a\x49\xc5\x1a\x0e\x99\x4e\xbf\x2c\xba\xf1\x05\xe2\x60\x33\x2a\xd2\x6c\xee\x5c\x72\x39\x01\xe6\x9f\xcb\x08\x2a\x84\x86\xf9\x5e\x13\x1d\xc3\xfd\xf0\xb2\x00\xc5\x79\xdd\x2e\x4a\x3b\x88\x38\x47\x4d\x91\xc0\x8d\x8c\x3d\xaa\xbd\x7d\xd7\x2b\x0e\xde\x83\x27\xab\xf4\x84\x70\xed\xa3\x02\x6b\x1c\xf4\x68\x96\xeb\x72\xa4\x53\xde\xda\x02\x9e\xcb\xf2\x23\xe2\x35\xde\x77\x5e\xb9\x9c\xc1\xf9\x5a\xe0\x24\x4c\xc1\x4e\x49\x83\x52\x6e\x6d\x26\x5b\x34\xc0\xdb\x0e\xa2\x74\x5c\x95\x9d\x45\xcd\xcf\x14\x58\x88\xae\x73\xcc\x5b\x49\x78\x94\x30\x58\x42\x2f\x5a\x05\xd1\x2e\x27\xc0\x59\x71\xb0\x37\x64\x1d\xb4\xbe\xab\x94\xcb\x76\x08\xbf\x58\xee\xbc\x92\x96\x2f\x5d\x00\x28\x6a\xe3\x50\x6e\x66\x32\x36\x29\x2d\x5f\xba\x50\x69\xe9\xb8\xa8\x30\x8a\x4c\xbb\x2a\x39\xbb\x43\x59\x23\x64\x93\x52\xe7\x9a\xb7\x06\x01\x1c\x08\x44\xf5\x6a\x43\x98\xb4\x7c\xef\x3c\xbb\x0f\xd0\xe1\x09\xd8\xec\xb4\x7c\xed\xc6\x1d\x45\xb5\x0a\x19\x5b\x39\x75\x8e\x79\x27\x87\x40\xdb\x63\x29\x45\x9b\x14\xbf\x5c\x4c\xb0\x85\x6e\x84\x4d\x8c\xc6\x87\x1e\xc8\x8b\x77\x2e\x70\x7f\x8a\xc0\x5d\x58\x98\x2b\x25\x2f\xdf\xb9\xe0\x70\xe7\x3c\x14\x6d\x2d\xd6\xcc\xcb\x77\x8e\x8b\x36\xc6\xd3\x11\xe9\x39\x1a\x7a\x86\xf6\x56\x37\x91\x22\x70\x28\x25\x0b\x82\x67\x5e\x95\x1b\x27\x64\x2d\xe8\xf2\x1d\x1e\xae\xbc\x7c\xe3\x5c\x99\x78\x2a\x07\xda\x58\xc5\x25\x97\x13\x98\x0b\xd3\xc3\x5d\x76\x62\x0d\x9a\xe4\x2c\x16\xcb\xfc\xfd\x11\xb0\xad\xbc\x72\xe5\x6c\x40\x2d\x6b\x84\xd3\x9f\x6b\x05\xe9\xe2\xa5\x1b\xb7\x95\x68\x55\xd8\xf2\x43\x65\x4b\xe3\x8e\xb7\x7a\x06\x14\xb6\xa8\x5a\x77\xc8\xc2\x36\xde\xb8\x9c\xc1\x05\x0b\x1e\x1c\x8c\x46\x42\xc9\x55\xd9\xb1\xc5\x3b\x5e\x0c\xa6\xc0\x4f\xbd\x2b\xde\x42\x70\x4c\xed\xa2\x80\xb2\xb5\xe0\x7b\x4f\x5c\x8a\x23\x4c\x08\x2b\x0e\xdc\x08\x0f\x59\x95\x60\x45\x3f\xa2\xfa\x64\x93\x6b\x05\xed\xf2\xed\xb3\xcc\xc4\xeb\xb9\x4a\xc7\x54\x86\xea\xb5\x0b\x68\x61\x57\x73\x55\x20\x33\xdd\xcd\x47\x88\xcb\x98\x81\xc8\xde\x50\x4f\xa2\xd1\x09\xcb\xbe\xf5\xc3\xe5\xf8\x00\x85\x40\xda\x73\xf4\xc1\x6c\xeb\x87\xcb\xe1\x86\x6c\x1a\xd4\x94\xc6\x82\x84\x89\x10\x5e\x6e\x92\x4a\x91\x31\xc9\x81\x5e\xd7\xd0\xf9\xe1\x72\x3c\xf2\xbd\x16\x29\xa2\x68\x10\x42\x11\x62\xcb\x4d\x62\x82\x98\xde\xc0\xeb\x1c\x3c\x08\x30\xc5\x2e\xe6\x26\x43\x54\x10\x13\xa2\x3d\x65\x1a\x16\x31\x30\x37\x21\xaa\xec\xf0\xb8\xc0\xca\xb4\xa1\xf3\xc3\x73\x93\x97\xa0\x04\x6b\x46\xfe\xc3\x40\x0f\x98\x65\x71\x05\xd8\x71\xb0\x54\x92\x03\x9d\x8a\x59\x91\x97\x61\x08\x0f\xdd\x9f\x28\xf9\xe1\x34\x89\x25\xa4\x48\x1c\x02\xf5\x1e\x1a\xdf\xac\x88\x0c\x2f\xb5\x01\xc3\x4b\x1c\x44\x9d\xb7\x26\xb3\x88\xe2\x05\x03\x8e\x84\x10\x2b\xe5\xe3\xb2\xd0\x0c\xe0\x21\x64\xc7\x90\xcf\x55\x3a\x3f\xbc\x0d\xfc\x3a\x78\x40\xc4\xb8\xe7\x2b\x35\xc6\xa2\xd8\x7c\x41\x70\x1e\x5a\xdc\xc9\xce\x70\xba\xdc\x3c\x25\x7b\x23\xda\x61\xb9\xa8\xf8\xe1\x52\x0c\xb5\x04\x0e\x94\xbb\x91\xdb\x67\xd9\x65\xc1\x25\x50\x90\x6f\x10\x02\x8a\xcc\x1b\x6c\x57\x04\xe7\xb9\x8a\x11\x7b\x50\x04\xb7\x9c\x2a\xb9\x81\x69\x4a\x12\x77\x32\x2a\x9d\x1f\x2e\xe5\x80\x04\xb7\x41\xbd\x52\x30\xa0\x84\xb4\xcb\x82\x0b\x85\x6c\x5d\x8b\xf0\x86\x0f\x82\x9b\x5e\x15\x9c\x85\x59\x82\xe4\x8a\x2b\xa2\xd7\x9b\x2a\x38\xca\xd9\x52\x5a\xc9\xd2\xb5\xd6\xc8\xdf\xe4\x0c\x4b\x51\x84\x00\xa6\x28\x67\x44\x52\x79\x41\x0c\x4c\xda\x34\x3a\x69\x91\xd1\x69\x6e\x45\x70\x3b\x6d\x1d\xc1\x4f\xe0\x53\xe7\x87\xb7\x82\x60\x2e\x7e\x3a\xe0\x0e\x77\xce\x2d\x4b\x2e\xc2\x4f\x06\x47\x9e\x2f\xc2\xd1\x57\x25\x67\xc9\x03\xca\x14\xa1\xf5\x41\xc4\x1e\x54\xc1\x45\x94\x26\x20\x49\x59\x5d\x58\xb7\x2c\x38\x5f\xd0\xc8\x90\xc2\x4b\x4c\x4a\xd4\xfa\xe1\xed\xfd\x19\xf0\x58\xe7\x52\x41\x96\x9d\x1f\x9e\x9b\x94\x52\x44\x24\xd1\x21\x91\x3b\x74\x7e\x78\x2b\x06\xc3\xc5\xa7\xa3\xe9\x1a\xbc\x48\x42\xab\x82\xe3\x6e\x39\x26\xe2\x46\x18\xe1\xb9\x6b\x82\x8b\x9c\xab\x43\xe1\x30\xa1\x9c\x86\xce\x0f\xcf\x4d\xfe\xd0\xb8\x89\xdc\xdb\x3b\x91\xad\xd7\x44\x17\x0a\x33\x3f\x3a\x48\x42\xf1\xc3\xdb\x2b\x44\xf4\x72\x9e\xa6\x8d\x37\xc2\x76\x7e\x78\x7b\x85\x32\x4c\x0d\x03\xab\x51\x21\x67\x97\x13\x90\x50\x70\x19\x04\x81\x1e\xe9\x11\xbf\x26\x3a\x74\xbd\xf1\x70\x17\xd1\x29\xa9\xf1\xc3\xe5\x26\x25\x0e\x56\x0c\x28\x6b\x66\x46\x56\xe9\x87\xb7\xef\x7a\xe0\xb2\x51\x8f\xa0\xe2\x9c\xd0\x5c\x15\x1d\x77\x93\x33\x38\x56\x2e\x23\x24\x2f\xfd\xf0\xd6\x16\x40\x6b\x42\x3c\x8d\x8e\xfb\x44\x4a\x3f\x5c\xce\xe0\x04\x2b\x6e\xab\x63\xe3\x55\xfa\xe1\xb9\x49\x57\x19\x82\x41\x04\x44\x46\x4c\x8f\x60\x6f\x95\x59\x00\x69\x10\xe1\xfc\x8c\x68\xf8\xa6\xc9\xce\x25\xa0\xd1\x32\xca\x63\x62\x43\x79\xaf\xc9\xce\xd5\x14\x84\x03\xe4\xa5\xa4\xd6\x13\x6f\xf7\x15\x45\xc9\x53\x1d\x8b\xef\x33\xe4\x72\x97\x10\x9e\xa1\x06\x60\xd8\xa6\xd8\x77\x4b\x6b\xdf\xf7\xa9\x61\x9d\xa3\xd5\xa4\xd2\x79\xe2\xed\xad\xb0\x4c\xf3\x66\x4a\x6d\xa6\xdb\x7a\xe2\xad\x28\x12\x93\xbe\x1b\xb0\x6c\x84\x1e\xc0\x9e\x9b\x24\xa0\x87\xab\xe5\x18\xf4\x62\x3b\x57\x5c\x6e\x2d\xa4\x1d\x2a\x98\x68\xce\x10\xaf\x0a\xcf\x55\xf2\xd5\x94\x87\xbd\x02\xf4\x76\x5a\xb9\x77\x16\x6c\xad\x36\xe2\x9b\x05\xa8\x5c\xdf\x56\x30\xd0\xa3\x51\x8f\x0d\x82\x89\x5c\x15\x1d\x93\xe8\xfb\x34\xe1\xea\xfb\x6e\x69\xed\x43\x51\xb8\xfd\x97\x67\x32\xa1\xdc\xf9\xe2\xad\x85\x3c\x30\x5d\x99\xe7\x42\xbc\xbe\x96\xbc\x15\x44\xe6\x42\x6a\x6a\x34\xc9\x6c\x08\x79\xf9\xde\x31\x5c\x61\x63\x32\x68\x17\x65\x48\x41\x95\x1d\x58\x5d\x36\x11\x1c\x44\x70\x7d\xf3\xf2\xc5\xb3\xb0\x50\x3c\x6a\x3b\x05\x29\xbc\x2e\x3a\x54\x35\x1b\x0f\xb3\x71\x40\xe4\x48\x3a\xe3\x52\x14\xc0\xe2\x6e\x22\xd7\x2b\x47\x89\x3c\xd7\xa4\xe7\x2b\x03\x09\xbc\x72\xe3\x25\x7f\x9a\x2a\x3e\x6e\x3e\x13\x2c\x6c\x78\x5b\xbb\x3e\x2d\x5f\x3d\x6f\x11\x4b\xf1\x91\xac\x1b\x33\x54\xea\xab\xe5\xbb\xe7\x90\xc6\xa4\x68\x1e\x39\x8f\x62\xf1\xaa\x00\x03\xd7\x2f\x01\x80\xe0\x64\xfa\x5d\x15\x20\x23\x2e\x0c\x98\x89\x07\x19\xed\x50\x45\xc8\x00\x2c\xee\xbc\xe8\x6a\x15\xec\xda\x05\x04\x0f\x33\xd7\x8e\xc4\x1e\xa3\xde\x08\x94\x9a\x00\x11\x9d\x2f\x18\xd8\xfb\x2e\xe5\xcd\x04\x0f\x5e\x0a\xba\x7d\x99\x83\xcf\x42\x7a\xcd\xf8\x81\xb9\xb8\x46\xf3\x1a\x1d\x88\xba\x86\x69\xf3\xf1\x29\x02\x05\x0f\xbf\x28\xe5\x39\xd5\xb9\x57\x27\x18\x60\x3b\x41\x2a\x96\x1c\x52\x75\x42\x6e\x72\x42\x04\x20\xdf\x01\xb9\x19\xc3\xbc\xba\x3e\x69\xbf\x10\xe0\x36\x7a\x94\x24\x87\x8c\xb3\x21\xf6\xbe\x99\x30\x41\x06\x08\x98\x67\xe1\x47\xc9\x3f\xdd\x94\x81\xa0\x83\x5b\x04\x9a\x1f\x2d\xcc\xbb\xc6\x69\xcd\x45\x74\x68\xc6\x39\xee\x56\x8e\x82\x95\x5c\x17\x1c\x77\xa4\x04\x66\x22\x4b\x34\xb9\x2a\xba\x94\x00\x48\xa4\xf7\x2b\x25\xad\x8c\xbc\x99\x80\x2b\x8a\xb8\x59\xb2\x35\x38\xb7\x2c\xbb\x08\x22\x6d\x0e\xea\xc7\x24\x5a\x8b\xeb\xc2\x43\x46\xc6\x96\x5a\x0d\x10\x7a\x36\xf6\x46\x18\xa8\x9e\xf5\xa0\x3c\x0b\x6a\x86\xbc\x11\x46\x06\x6b\x18\x85\xaa\x09\x69\xa1\x76\x50\x13\x53\x90\x1c\xe7\xce\x46\x9e\xc9\x05\xed\x8a\xfc\x98\xe1\xd3\xc0\x76\xce\x46\xd0\x9a\xab\x02\x4c\xdc\x70\x36\x91\x95\x93\xb8\xc8\xc5\xae\x09\xd0\xd5\xaa\xd5\x51\x43\x25\xee\xbf\x60\x57\x24\x18\x51\xdf\xc6\x95\xf1\x49\x94\x7b\xeb\x12\xe4\xd6\xe7\x48\x14\x45\x2b\x52\xf7\xaa\x04\x99\x4a\x9b\x69\x9c\x60\x00\xf4\x9d\xd4\xc4\x0c\x60\xc2\x1c\xea\x63\x3c\x17\x0f\xda\x35\x09\x82\x27\x79\x14\x24\x82\x32\x45\x01\xaf\x37\x53\x2c\x38\xfd\xb8\xa3\x22\x33\x3f\xb9\x65\x09\xa6\x4a\x8f\x0d\xe2\xe7\xe4\x11\x8f\x71\x6b\x12\x64\xe3\xdc\x20\x32\x83\xc5\xf6\xed\xd4\xc4\x14\x66\x31\x06\x13\x6c\x94\x8c\x71\xba\x08\x23\xd3\x94\x8d\x2a\xa8\x86\x27\xdd\x9a\x08\x11\xae\xc3\x72\x42\x14\x4c\xf3\xba\x04\x11\x88\x46\xfe\x94\xcc\xab\xbe\xc0\xbc\xd9\x5c\xee\xd4\x01\x03\x7d\xb4\x5a\x7b\x10\x7b\x33\x03\x47\x97\x9b\x98\x3a\xc9\x05\xaf\x4b\xd0\x15\x64\x4e\xb8\x85\xba\x13\x8c\xe2\x0b\xe2\x88\x71\x97\x2b\x8b\x49\x30\xbb\xe9\x12\xac\xc0\xc6\x44\xce\x71\x94\x3f\xa2\x4a\x30\x72\xa3\x19\xae\x4f\x09\x5c\x95\xe3\xd7\x44\x68\x6b\x0c\x9e\x40\x2b\x01\xd1\x47\xbf\x22\x43\xa6\xbd\x42\xbb\x33\x74\x80\xec\x3b\xaa\x35\x77\x8a\x01\x2e\x9e\x73\x49\x46\xe9\xa8\xd6\xde\x29\xb0\xff\x06\x5c\x46\x05\xcf\xde\xd5\x36\x66\x0c\xb5\xa8\x5f\x9a\xbb\xf9\x0b\x32\x04\x19\x8f\x67\xef\x32\x23\x36\x2d\xdc\xf6\x66\xab\x12\x33\xff\x82\x01\x28\xb4\xee\xa5\x36\xc5\x4f\x2c\xd4\x06\xb1\x2f\xef\x94\x8e\x6a\x62\x0a\x47\xcb\xec\x00\x80\x45\xd1\x4a\xcf\x3b\xa3\xc1\xa6\x1d\xdb\xb7\x0f\xd0\x5a\xd2\x75\x6f\xa6\x70\x61\x2d\xaa\x33\xe1\xae\xf4\x3d\xd5\xc4\x0e\xe3\x49\x70\x68\x7b\x16\x84\xb3\xaf\x0b\x11\x1d\x13\x50\x9c\x33\x55\x88\x49\xf3\xb6\x97\x08\x6a\x6d\xc6\x65\x58\x6e\x1c\xdd\x7c\x4d\x33\x85\xca\x66\xa8\x0d\x5b\x06\xb2\x26\xf4\x2d\xd5\x1a\x0d\x34\x70\xff\x26\xea\x99\xc9\xc0\xa3\xb4\x72\x11\x43\x42\x0e\xda\x45\xba\xc3\xde\x0a\x7f\x5c\x15\x62\xa8\x9d\xce\x41\x69\xe0\x8a\xc6\x0c\xd7\x19\x72\x99\x79\xd4\x07\x70\x0e\xe5\x9e\x19\xae\x33\x1e\x2c\x73\xc2\x99\x84\xae\x31\x5e\xe9\xa9\xd6\xe8\xba\x01\x72\x77\x70\x9d\x7d\xdf\xf6\xbc\xd9\xe1\xc4\xd5\x0c\xa6\x47\x1e\xe8\x52\x04\xa3\x9a\x81\xbb\x6d\x02\xc0\x3b\x69\xed\x2a\x5a\xa0\xc1\xac\xaf\x9c\xbd\xb6\x73\xe5\x7b\xe0\x34\xf9\xf2\x8c\xa3\x90\x29\x6c\x5d\x8a\x16\xf1\x0b\x8f\xc6\xd3\x8e\xfb\x77\xe5\x95\xab\xe8\x0b\x10\xd9\x9e\x1b\xb2\x16\xc1\x5b\xae\x4a\xd1\x47\x2e\x25\x88\xb0\x3c\xa2\x68\x0f\xa7\x4b\x91\x09\xbe\x2d\x90\x58\x96\x5f\xac\xbc\x72\x17\x47\x93\x81\x0b\x97\x99\x98\xca\xf6\x9c\xed\xcd\x14\x57\xe9\xfd\x0b\xb0\x1a\xae\x77\xe9\x3b\xa1\x50\x68\x0c\xde\x14\x72\x15\x79\xed\x2e\xa2\xa6\x93\x08\x94\x08\xff\xe8\x7a\x9f\xbe\x11\x09\xfe\xb1\xe1\xae\x47\x35\xe8\xdd\x38\xf5\x9d\x1a\xa2\xf7\x2a\xf2\x6f\x7a\x80\x98\x1a\xaf\xbe\x99\x83\xbf\xbf\x09\x08\x4b\x5b\x2b\xdb\xa3\xe9\x82\x9c\x1d\x17\x00\xe3\xbc\xc2\x0c\xd7\x5b\x05\x01\xd1\x1f\xca\x24\x45\x95\x19\xae\x99\x53\xc9\x11\x98\xd2\xcb\xa0\x63\x4a\xe3\xdb\x37\x73\xb8\xff\x9a\x29\x4c\xc9\xe4\x14\xc4\x7b\x23\x1b\x00\x31\x36\x4c\xbe\x29\xfb\xd0\x2d\x88\xd3\xcd\xfe\x65\xd8\x76\x8d\xd0\xc5\x86\x67\xb8\x63\x2c\x50\x33\x27\x62\xd3\x7a\x7b\xa5\x42\xd6\x83\x07\xca\xc0\x21\x24\x2a\x46\xc8\xe1\x81\x84\x50\x60\x05\xfb\xb9\x17\xed\x95\xe1\x11\x97\xd0\x82\xee\x7c\x13\xe7\x69\xea\xa4\x8c\x0f\xc8\x1e\xc3\x95\xa2\xf1\xbd\x0f\x2d\x26\x30\xb7\x4d\xf4\x5c\xde\x22\x48\xcc\xf4\xe5\x26\x66\xb3\xc7\x07\x99\xbe\xde\x5b\x4e\x00\x4a\x85\x23\x2b\x49\x8c\x57\x37\x08\x19\xb0\x88\x64\x78\x16\x69\x76\x75\x87\x60\x29\x98\x0c\x37\xaf\xd4\x3e\x7e\xcb\x5b\x34\x00\x2f\x3d\x80\x82\xb5\xd4\x6a\x96\xe5\x3d\x72\x40\x4a\x45\xa6\x2f\x89\xc2\x2f\xd2\x97\x1c\xb8\xd9\x13\xd7\xa5\x98\xd0\x79\xa9\x72\x86\x9b\x1a\x56\x05\xce\x52\x99\xce\x4b\x95\xcb\x46\x55\xd5\xae\x8a\x7b\x8e\x6b\x56\xf7\xc9\xe0\x45\xe2\x88\xbc\xb1\xc2\xad\xd5\x36\xca\xa3\xb4\xc1\x45\x4e\xb6\x39\x18\x31\xaa\x5e\xaa\x3b\x95\x28\xea\x11\xd2\xb4\xf2\x94\x5a\x6f\xa2\x5b\x06\xd3\xce\x0c\xdc\x3f\x27\xda\xce\x9b\x68\xaf\x84\xc7\x51\x82\x4f\x51\x90\x7c\xf1\x2b\x7b\xe5\xb8\xfb\x08\x43\xf6\x0a\x9e\x25\x8d\x7b\x63\xe7\x82\x53\x7c\x81\x89\x54\x07\xa8\x25\x0d\x91\x54\xf7\x0a\xdd\xb7\x6c\xc6\xbd\xb6\x83\x20\xa3\xd2\xf7\x0a\x45\x9f\x8c\x79\x1d\x57\x1e\x72\x6b\xf0\xc9\x8f\xca\x5c\xde\xc6\xfc\x23\xce\x34\xc5\x77\xea\x3a\xc0\xf1\x92\x99\x15\x94\xbd\x89\xb4\xbc\x59\x95\x45\xd6\x38\x26\xa0\xe5\x9e\x95\x69\x79\xb7\x46\xbf\x03\x50\x37\x10\x6a\x32\x32\x50\x83\x56\xd5\xb5\x23\xd1\x81\xf6\x13\xe8\x6f\x1b\x7a\xcb\x4a\x4c\xb1\x70\x6e\x9c\xe3\xa0\xee\x20\xa1\x5f\xda\x67\xa5\xa9\x6e\x2b\x70\xcf\x52\xaf\x3c\xca\x72\x4e\x60\x56\x5b\x66\x3a\xf3\xdc\x4e\xb3\x79\x94\x5b\xd9\x0f\x6c\xee\xfa\x95\x9e\xa5\xed\x45\xa9\xc5\x74\x14\x90\x5c\xe8\x3f\x2a\x77\x20\xa3\x0c\x1c\x01\x74\x6f\x74\xf2\x15\x39\xc5\x54\xcc\x2c\x36\xad\x60\x9f\xe7\x23\x1b\x80\x11\x3c\x9d\x0d\x18\x27\xbd\xec\xae\xa1\x8c\x4f\x19\xec\xa9\x30\x11\x61\x21\x8a\x01\xcd\x70\x4f\x7e\x47\x86\x51\x81\x6a\x0f\xb1\x49\xa6\xbd\xea\xd5\x54\x77\x3b\xc2\x36\xb1\x43\xa6\x3d\xbc\x81\x89\x36\x40\xd8\x96\xfb\x16\x9e\x0d\x03\x28\xf0\x71\x91\xa0\x1c\x7b\x83\x60\xd8\x54\x57\x50\x18\xbf\x4c\x19\xab\xa1\xc1\x1f\x69\x13\x02\xa9\xcf\xa1\x62\x1c\x73\xdf\xc6\xb3\x99\x40\x25\x89\x7b\x91\xb9\x8f\x2b\xbd\xee\xca\x2e\x61\xf7\x0d\xfb\x76\x5e\x30\xa4\xe8\xdb\x84\x26\x9e\x0e\x35\xde\x9b\x20\x70\x5a\xfa\x3e\x39\xf4\x50\x8d\x03\x2b\x12\xf1\xa4\x2d\xac\x9b\x5b\xf9\x51\xf6\xde\x21\xff\xd4\x46\x6a\xc5\x8c\x4a\x71\x8e\x76\x78\xcc\x55\xd3\x46\x6a\xc5\xca\xb9\x73\x39\xbe\x89\x89\xb5\xda\xb8\xab\x98\x80\x8a\x1b\xe3\x6b\xd3\xc0\xd0\x13\x80\x34\xe7\x83\x7d\xac\x50\xed\x91\x90\xb4\x98\x68\x73\xb7\x2d\x62\x82\x0e\x7c\x29\xa5\xc3\xbf\x34\x5f\x55\xa6\xd2\xaf\xc8\xff\xb4\x3d\x02\xa6\x99\x83\xa2\xdc\x4d\x9e\x28\x1c\xe7\xed\x12\xf4\xdd\xb2\xdc\x49\x8b\xf3\xe5\xcc\xd3\xd7\x06\xc8\xc4\x41\x81\x3a\xac\x3c\x64\x5e\x2c\x45\xdf\x2f\x87\x18\x54\xe2\x87\x27\x08\x0b\x60\x61\xc3\x2c\xb8\x37\x12\x6c\x68\xe3\xe1\x9c\xa6\xe5\x1d\x0b\xdc\x36\xd0\x7a\x66\x09\xe3\xb6\x06\x6d\xec\xa3\x59\x0b\x4a\x72\xb9\xf4\xd7\x46\x38\x8e\x6d\xf0\xa3\xd1\x27\x64\x16\x9b\x4a\xaf\xc6\xbd\x68\xda\x50\x86\xd8\x81\xc8\x9d\xb8\xb8\xba\x28\xe1\x05\x69\x03\x13\x62\x03\x02\x78\x4d\x6a\x64\x35\x09\x2a\x01\x7d\xd3\x6c\x04\x6c\xa3\xf6\xd6\x8a\xb5\xe8\x71\x79\xd7\x7c\xe2\xc6\x58\x91\xfb\x8a\x35\x0d\xb2\xd4\x6d\xf3\x5c\x34\xc8\x42\x22\xe8\xb5\xea\xa6\x8a\x49\x28\xac\x24\xd2\x0c\xfe\x25\xf1\x5a\xab\x1b\x37\x1a\x8f\x01\x51\xe2\xc2\xfd\xd2\x93\x92\x1c\x6e\xb6\x81\x2b\x81\x86\xa9\xf3\x9d\x0a\xbc\x6e\x26\x21\xf9\x69\xd0\x58\x69\xe3\x04\xc9\x98\x1c\x89\x7f\x64\x66\x2f\x03\xcb\x98\x19\xe6\x55\xc4\x46\x9b\x90\x12\xc5\x28\xe0\x8d\x15\xbc\xd4\xda\xb8\xdd\xbb\x68\xd0\x2e\x1b\x85\xd9\x1d\x96\xda\xb6\x97\x3f\x82\x0f\x13\x98\x86\xa1\x73\x0a\x6d\x7b\x8c\x5d\x98\x02\x01\x0e\x06\x9d\xdc\x20\x39\xc1\x23\xd8\x17\x29\xb2\xb4\xe7\xab\x57\xbe\xb8\x3f\x29\x73\x88\x81\x2c\x2d\xe6\xda\x50\x8f\xd3\x6e\xc1\x85\xda\x3c\x0f\xd4\xac\x7a\x9e\x8e\xd4\x37\xc8\x70\x0b\xef\xf1\x64\xf8\x6a\x93\xad\xec\x10\x1a\x6c\x18\x66\x88\xaa\xc4\x00\x2b\x5b\x04\x54\x86\x83\x69\xb2\x19\x6a\xa3\xf6\x95\x4d\x72\x8c\x45\x2e\xdc\x32\x74\x5e\x4d\xab\xae\x01\xae\x3f\xba\xe1\x36\x6d\x9b\xf4\x4d\xe2\x3e\x49\x80\xf1\x1a\xf1\x03\xea\x3f\x22\xc4\x80\x9c\x9c\xec\x6a\xa5\xef\x12\x08\x55\x8d\xe3\x8e\x2f\x38\x78\x76\x65\x9b\x3c\x25\x30\x88\x86\x8d\xa9\x5e\xcd\x62\x0f\xe7\xd9\xb5\xe6\x94\x25\x16\x33\x07\x52\x2e\xac\xc2\x85\x19\xeb\x49\x10\xb4\x47\xea\x4e\x45\x46\xbb\x80\x02\x74\x13\x05\xba\x53\xdf\x2a\xee\x49\x80\x6a\x8a\x4d\x12\xbd\x7d\xd4\x89\x01\x9d\xc9\xb9\x5f\xa6\xcc\x47\xe9\x7b\xe5\xd0\x54\x34\x72\x81\xd5\x20\xd8\x98\x16\x36\x0b\x38\x2d\xcf\x11\x04\xc3\xf6\xa2\xea\x0e\xf0\x67\x25\xee\xbe\xca\x9d\xbe\x8d\x0c\xd0\xab\xdb\x15\x3c\x22\x8f\xd6\xb2\x63\x4c\xff\x79\xa1\x73\x6b\x9d\xc3\x3d\xd3\x0c\x13\xfe\x55\x52\xba\xb4\xb2\x65\x3e\x60\x19\x4c\x49\x60\xf9\x80\xa5\x95\x4d\x73\xb0\x38\x0c\x7b\x39\x96\xc3\x14\x69\x6d\xd3\x6c\x84\x8d\x36\xb0\x51\xc0\x81\x0a\xdd\x23\xe2\x2f\x8b\x13\x0f\x08\x19\x05\xce\x48\x9f\x4d\xdd\x36\xee\x10\xc4\xbd\x35\xd1\xc5\x54\x79\x0a\x9b\x49\xdc\xc8\x9b\xbb\xeb\x4d\x7d\x4c\x9b\xa7\xb0\xd9\x85\xc8\xf5\xad\x95\x7a\xa4\x69\x1a\xaa\x0b\x8a\xcb\x4f\x6b\x27\x57\x2b\xe3\xc9\x0b\x5f\xc9\x3d\x09\x3c\x5f\x68\x4e\x58\xcc\x77\xae\x81\x55\x73\x2e\x17\xe9\x0a\xcb\x49\x27\xb1\x6b\x4d\x3d\x74\xe4\x52\x74\x0a\x64\xba\x39\x41\x86\xaa\x9b\x92\x25\x37\x17\x29\xcd\x0a\x41\x16\x03\xe5\xf8\x08\x9f\xd2\x94\xda\x5c\x61\x70\x0b\x9d\x2d\x66\x27\xd9\x4d\x34\xab\xb5\x59\xb5\xdc\x24\x39\x83\x1b\xd8\x44\x03\x5e\x0a\x27\xca\x54\xd4\x35\xf0\xa5\x8c\x15\x6d\xa9\x3c\x88\xcd\x0c\xc7\x6d\xa7\x6a\xf6\xcf\xf4\x2c\x1c\x5d\x9d\x39\x15\xf7\x83\xe5\x3e\x0b\xe2\x4d\x7d\xa3\xc0\xc2\x6b\x02\x92\x5a\x5e\x40\x7a\xd4\x9d\xf2\x1c\x64\x84\x31\x6f\x06\x41\x0d\xa2\x6f\x95\x03\x41\x29\xf7\x95\x2b\xcb\xdd\x21\x76\xeb\x2e\xd0\xa7\x96\x39\x38\x7b\x40\x4f\xb7\xee\x08\xcd\xcd\x88\xea\xe5\xf6\x10\x75\xe1\x48\x2a\x83\xc7\xc6\x78\x01\xb6\x51\x77\x2a\x4c\x9d\x24\x09\x4a\x3d\x08\x6e\x4c\x7d\xa7\xb8\xed\xa9\xe3\x16\xf0\xa6\x2c\x36\x64\xd8\x3d\x8b\x03\xf3\xad\xd0\xab\xd2\x77\xc8\xef\x16\x81\xc8\x0c\xc2\xb1\x05\xf5\x64\x7e\x65\xa3\xa2\xe7\x98\x2a\x75\x9b\x42\xbb\x8b\x05\x7a\xff\x9d\x3d\x50\xc0\xd7\x34\xd0\x0d\x34\x8b\x7c\xfd\x75\xa3\x1c\x69\x42\x4f\x16\x90\x43\xac\xde\xaf\x6d\x13\x82\xfb\xd6\x83\x3a\x9c\x9f\x10\xbf\xba\x4f\xc8\x58\xa2\x36\x8c\x42\x3a\x4b\xc4\xec\xbb\x77\xba\x30\xe6\x9c\xa3\x1b\xbe\xaf\x30\xef\x96\xe1\x39\x82\xc7\x8d\xfb\x5c\x5f\x62\xde\x4c\x19\xa6\x37\xcd\x83\xff\x76\xde\x36\x4c\xdd\x2c\xef\xb9\x2c\x61\xe2\xd7\x4f\x7d\xc6\xba\x59\x3c\x71\xb4\xec\xed\xe2\x03\x79\x58\x64\x41\xdf\x3d\x86\xf4\x0f\x7e\xa6\x8d\x47\x5e\xbc\xc3\x98\x0c\xe2\x99\x26\xb3\xc9\xef\xfa\xe4\x7b\xa5\x40\xb8\x99\xe4\x38\xa3\xcc\xe1\x9a\xf1\xea\x2a\x8f\x61\xa7\x48\x2d\xbb\x76\xf0\xab\x4b\xed\x96\xbb\xb2\x6f\xe3\x73\x1b\x76\x3d\x12\xa8\xa9\x9b\x92\x58\x6c\xb6\x01\x45\x2f\x9b\x34\x75\x5c\x4b\x61\x99\xaa\x7a\xa7\x3d\x8a\x65\x36\x45\x70\x77\xb5\xd1\xd2\x86\x75\x20\x83\x45\x0d\x1d\xfd\x83\x80\xe9\xaa\xce\x46\xf2\x5c\x0e\xe6\x40\x12\x6b\xdc\x02\x37\xd6\xce\x03\x40\xe1\x5f\x00\xbc\x27\x77\xcd\x9a\xe5\xf8\x08\x93\xd3\x70\xfd\x18\xa7\x91\xc4\xc8\xd4\x1d\xe3\x34\xd5\x55\x3b\x8b\x08\xb9\xdc\xa3\xee\x1a\x24\x00\xb2\x02\x78\x34\x52\x5e\xe0\xa3\x9a\xb9\x3d\x7e\x4a\xd7\x7b\xa6\xec\x31\x6b\xbb\x64\xb8\x2c\x00\xb5\x5a\x41\xf0\x3f\xa9\xfb\x34\xba\x0c\x79\xaa\xbd\xb2\x82\xff\x49\xdf\x28\xa6\x60\x84\xe4\x5c\x14\x61\x59\x75\xa7\x3c\x12\x8c\x0e\xb8\x34\x9b\x05\x0f\x97\xbe\x55\xec\x4c\x86\x40\xb9\x52\xeb\xa1\xb2\xed\xca\x56\x55\x1a\x3f\x88\xdd\x7b\x81\xf2\x54\xf7\x2a\x66\xa8\x6c\xa0\x86\x3c\x7b\xba\x76\x6d\xaf\x02\x3b\x0a\xe8\x5b\x93\x45\xe9\xa6\xba\x59\x8c\x1a\x42\xef\x6c\x82\x9b\xf4\x6e\x62\xb3\x59\xf0\x92\x1c\x2c\x0e\x4b\x69\xfc\x25\xd6\xa5\x99\xc9\x8b\x62\x55\x62\xa5\x90\x09\xb4\x85\x75\x58\xee\x75\x51\x50\xe5\x35\x6f\x2f\xa3\x6f\x96\x65\x94\x91\xa7\xb0\x94\x33\xa2\xe6\x4e\xdd\xad\x4a\xb4\x4a\xd8\x35\xa2\x45\xe9\x63\xa6\xcd\x0c\x8b\x08\x28\x96\xae\x42\x04\x53\xab\x14\xc7\xeb\x6d\x11\x9e\x35\x51\xb8\xa2\x0b\x9b\x65\x51\xb6\x4e\xd8\x64\x42\x5a\x74\x64\xa8\xcd\x47\x79\x0e\xc3\x7b\x94\x83\xe4\xa6\x26\x49\x9b\x62\xb8\xf3\xfe\x00\x9d\x12\x71\x7c\xd3\xca\x66\x79\xde\x2c\xcb\xfc\x34\x1e\x4e\x55\x5a\xd9\x2d\xef\x76\xce\x3e\x19\x8c\xa9\x4f\x1d\x36\x6b\xf7\x1c\x34\xa2\x13\x26\x92\xa6\x0b\xee\x11\xa2\xab\xb6\xe6\xca\x65\xf7\x41\xf5\xa3\x18\x0d\x11\x50\x03\xea\x6b\x30\x68\x65\xb7\x3c\xf7\x44\xf0\xc8\x00\x5b\xe0\x16\x9b\xc7\xb0\xd3\xa4\x86\xf3\x85\x44\x3a\x23\xbd\x56\x75\xb7\x1c\x43\x0a\x9c\xe5\x6e\x92\x92\x8a\x53\x77\xac\x13\xbc\x56\xc3\x99\xd3\x24\xd1\x4c\x8b\x2e\x65\x26\x74\x4d\x62\xe6\xf0\x18\x17\x0a\x62\x76\x5e\x5e\x66\x76\x9b\x4c\x4e\xa2\xb5\x4b\x15\x31\x3b\xcb\xdf\x83\x1e\xde\x72\x01\x8b\x92\x3c\x94\xd7\x17\x55\x46\x81\x94\x63\xe2\x2e\x92\x62\xb7\xda\x09\x00\x22\x9a\x0c\x7b\xd6\xcd\x13\x8e\x7a\x44\xc1\x17\xac\x1b\xf5\xd4\x81\x19\x45\xe5\xd0\xde\xc2\xf1\xc8\xce\x53\x11\xc3\x00\xee\x63\xb5\x08\x65\xb7\x72\x8a\xeb\x81\xe0\x27\x05\x0d\x43\xd3\x9f\x9c\x00\x56\x30\xea\xbc\x65\xa0\xeb\xf4\x32\x94\xba\x78\x50\x61\x00\x39\x14\x93\x88\xe1\xea\xdb\x15\x4a\x2d\x2f\x33\xc0\xf4\xcf\x99\x1d\x17\xf6\x0b\xfd\xae\x5c\x00\x9e\x34\x8a\x86\x83\x0b\x1b\xe6\x40\x36\x1c\x3c\xaa\x93\xa3\xc0\xba\x2c\xad\x3e\x31\x5b\xeb\x68\x41\xa7\x41\x14\x71\xe8\x3b\x16\x19\x5d\x87\x64\x5c\x8c\x70\x4e\xec\xea\x8e\x81\xab\x7c\x03\x16\x8b\x68\xb5\x97\xb1\xdd\x32\xb4\xa3\x34\xe8\x5d\x1e\xfc\x5a\x59\xc6\xce\xda\xe6\x86\xa3\x01\xad\xbf\xad\x9a\x51\x94\x5b\x86\x52\x55\x6e\x0b\xe1\x2c\xcc\x15\x15\xa4\x3f\x73\xfe\x6a\xb6\xcb\x56\xa4\xfb\x12\x4a\x7f\x77\x5d\x86\x9a\xed\x02\xd1\x84\x5d\x86\xe9\xcf\x6c\x03\xe6\x2a\xce\xa0\xad\x9c\x77\x55\x5f\xd8\x34\x54\x74\xa3\x3a\x1d\x41\xb5\x25\x10\xfd\x6e\xf3\x6b\xf3\x48\x78\xd9\x46\xf1\x1b\xdb\x3d\xc3\xe3\xe8\x0a\xe8\xdb\x1c\x4e\xb3\x8a\xa7\xde\xb9\x81\x35\x89\x34\xf0\x4c\xbf\x08\xa8\x9e\x19\xd0\x15\xf4\x62\x51\x7d\xdd\x47\x52\xdb\xd5\x30\xd8\xd9\x02\x04\xe2\xbc\xf0\x50\xf5\x3d\xf3\x96\xb5\x38\x98\x4b\x2d\x57\xf8\xe9\x70\xe7\xba\x03\x8e\x21\x92\x14\xf6\x91\xdd\xc3\x96\xa2\x82\x01\x66\xbd\xa9\xe5\xb5\x82\x29\x4a\xff\x32\x87\x94\x49\x40\x56\xd1\x4e\xa5\x62\x6b\xdb\x86\xba\x7f\x2a\x4f\x0d\xa0\x05\xf2\x7e\x19\xfb\xba\x8b\x2d\x05\x2e\x62\x26\xb5\x5e\x64\x9f\x27\x7d\xe3\x1c\x53\xec\x39\x80\x94\x8c\x5b\x45\xa5\xee\xde\x4c\xc3\x84\xfc\xc1\x52\x47\x12\xad\x82\xb4\x8f\xa8\x26\x80\xf8\x3c\x3a\xf3\xb5\x4f\xa6\xf8\xcc\x88\x3a\x20\xfc\xcb\x86\x19\x07\xc4\xdf\x93\xc3\xd1\x27\x93\x6f\x9b\xa0\x2b\xd2\x82\x46\x01\x57\xd8\x24\xd8\x3c\x01\x09\x65\xb1\x64\x31\xde\x73\x7b\x9d\x88\xd0\x44\x98\xb7\x13\x56\x43\x07\x0e\x99\xf7\x50\xd5\x0c\x6e\x97\x5d\x5e\xae\xaf\xf9\x16\x8f\x9e\x53\x73\xdd\xaa\x2d\x38\xa0\x85\x1d\x48\x0d\x36\x45\xf8\x1c\xea\x8a\xd1\x64\xd2\x20\xe5\x4a\xfa\x28\x2f\xe0\x1b\x77\xca\x29\x1a\x40\x90\x59\x83\x95\x45\x7c\x63\x5d\xf5\x80\x04\x24\x58\x19\x36\x05\x71\x5d\x05\xde\x38\x5b\x04\xda\x09\x02\x42\x19\x10\x8c\xd1\xb0\x8a\x75\x86\xad\x84\xee\x96\xa3\x7d\xb6\xd7\xa7\x72\x19\xa0\x36\xe1\xe2\x7b\x93\x44\xdb\x4f\x6d\xdd\xa3\xa7\xc5\xfe\x28\xff\x44\x56\xda\x5a\x8a\x29\x16\xac\x90\x9e\x51\x4c\x26\x08\x8e\x05\xed\xa3\x32\xb3\x9a\x15\xa6\x62\x94\xc4\x90\xda\xca\xbd\xdf\x51\xb2\x57\xc2\xb6\x1e\x6b\x21\x57\xc2\x81\x31\xcb\x7d\xcc\x13\x6c\x48\x0d\x78\xb8\x13\x20\x71\x60\x55\xc8\x5e\x54\x91\x16\x72\xed\x54\x88\x4c\x40\x03\x86\x9a\xb8\x9e\xfe\xbe\xfd\xac\xc4\x65\x10\x00\x4b\x4d\xcd\xad\x97\x57\xef\xc0\xe9\xb7\xe1\x82\xec\x09\x93\xa0\x82\x08\xeb\x1c\x83\x08\xa7\x71\x8c\xb2\x08\xb5\x12\x78\x79\x03\x2c\x68\x75\x19\x4f\xee\xbc\xa4\xcc\x57\x37\xc0\x70\xb9\x71\x60\x00\x88\x9d\xa3\x1f\xa4\x56\xe7\xbb\x0e\x7b\x7b\x03\xbf\x96\x79\xa9\x5b\x55\x39\x1f\x8f\x16\x2e\x00\xb4\x44\x85\xd1\x5d\x0e\x0f\xe8\x28\x6d\x22\xf3\xde\xf6\x31\x2e\x39\x9e\x8b\x22\x1d\x3a\x64\x31\x29\xab\xaa\xc1\x77\xba\x8d\x48\xe7\x2c\x97\x89\xf9\x2e\x87\x61\x3b\xdd\xcc\x7c\x22\x03\xfd\x40\x6f\x69\x36\x2b\x48\x6c\x00\x79\x7a\x01\x6c\x9f\x8f\x68\xc6\xe3\x65\x31\xa0\xe2\xd8\x18\x38\xc9\x4b\x4e\xe5\xb0\xf3\x2d\x2d\x7a\x26\x6f\x5c\x93\x56\x51\x57\xcd\xba\x8d\x99\x0c\xad\x30\xcb\x96\x56\x11\xa6\x1e\x0a\xa3\x6a\x9f\xe3\xc9\xf4\x85\x23\x15\x51\x5f\x81\x28\xea\x40\xd5\xa5\x7b\x3a\x0f\xa3\xcf\xc7\x25\x3f\x61\x29\xeb\xbe\xd3\x6e\xb6\x4c\xb7\x76\xc3\x36\xc2\x82\x51\x35\x69\x37\x2a\xbd\x42\x25\xc7\x46\xf2\xb5\xa8\x1f\x95\x58\xe1\x58\xae\x5e\x89\xf0\xdd\x75\x18\xc0\x74\x0a\x3d\xf7\xed\x82\xda\x4d\xc2\x82\x53\x17\xef\x18\xdd\x17\x18\x41\x90\xa1\x7a\xf4\x28\x12\xff\x1b\x68\x5b\x0c\x37\x6d\x40\x33\xe8\xa5\xfc\xf9\x4e\xc3\x19\xd0\xc8\xe0\xe9\x9c\x1c\xbf\xe5\x1d\x70\x40\x5e\x12\x29\x2f\x2b\xeb\x61\x39\x15\xbe\xd3\x71\x96\xfb\x9a\x56\xed\x1b\x15\xc6\xcf\xee\x58\xc6\x32\xc7\x1d\xb0\x85\xbd\x18\x9d\x1e\x86\x6a\xed\x53\x47\x62\xc7\x73\x34\x03\xce\xaa\x7a\xae\x46\x9f\xf9\x74\x2a\x1a\xb1\xde\xfb\xc8\x1a\x11\x45\x9e\x66\x8e\x96\xee\xae\xe3\x80\xa8\x33\x02\x18\x0e\xb6\x59\xdf\x4c\xd2\xb7\x9a\x6e\x40\xfd\x21\x65\xb8\x3d\x42\x0b\x62\xdd\xbe\x3d\x64\x16\xf4\x7a\xe3\x49\x1e\xf5\x45\x6f\xc6\xf9\x56\xd7\x11\x3a\x07\x65\x40\x66\x00\x55\x96\xfa\x3e\xf3\x1a\x40\x9c\xb9\xc9\xa8\xd7\xf3\x42\x17\xa9\xab\xae\x40\x58\x80\xbd\x8c\x41\xda\x4b\x1d\x5a\xff\x01\x9f\xcd\xc0\xdd\xe5\x50\xbb\x5d\x59\xb7\x2b\x60\xdc\xa6\xf6\x1b\x95\x3f\xc9\xae\xae\x1b\xad\x0d\x3c\xba\x9a\x48\x4f\x77\x61\x11\xb5\x61\x0e\x85\xab\xb4\x56\x6c\xcd\x0c\xee\x01\x1e\xc1\x6a\x07\xd3\x44\x5f\x2e\xff\x23\x80\xd4\x12\xf5\xac\x28\x24\xf3\x6b\x8b\xa6\xc6\xd9\xe3\x8f\xd3\xab\x30\x88\xfc\xee\x42\x46\x2d\xa1\x87\x7e\x62\x8e\x4b\x81\x80\x55\xbf\x29\x32\x8a\x15\xfe\xc4\x86\x9d\xf5\xa5\x37\x67\x80\xa7\x1a\x39\x2e\x6f\xe2\xae\x66\x4d\x3f\xaf\xbc\x92\x04\x6f\x30\x83\xfd\x39\x43\x67\xab\x89\xd1\x9d\x9a\x0b\x03\xe7\xb4\xd1\xc2\x58\x09\x03\xfb\x56\xcb\x0d\x40\xa0\x18\x6e\xbe\x10\x7b\x94\x90\x6f\xb5\x1c\xa2\xe6\x65\x02\x40\xc7\xe5\x2e\xc1\xbb\x1b\x15\xb8\x3c\x07\x4c\x17\x0c\x91\xd1\xbf\x6a\x77\x1c\xe9\xed\x61\x7e\x5c\x4a\xc1\x96\xc5\x1c\xe7\x4e\xcb\x71\x11\x1e\x18\xaa\xb3\x74\x6d\xf5\x1f\x34\x99\x2c\xf2\xc4\x9c\x1a\xdc\xe8\x7c\xbe\x07\xf2\xb7\x22\x43\xfd\x50\xd0\x0c\x5b\x4a\xcf\x59\xd6\x73\xcf\x9d\x6a\x90\x95\x61\xc0\xbc\x18\xd1\x8c\xe7\xbc\x87\x07\x33\xa8\x9b\x17\x5c\xea\x47\xc0\x82\x74\x14\x94\x4d\x36\xce\x63\xd3\xfa\x7e\x39\x04\x5c\x99\xb3\xdd\x5a\x51\x2c\xa7\x2e\x7a\x4a\xd1\x33\x69\x6c\x5c\x6c\xad\xb2\x53\xd5\x08\x95\xc3\x66\x34\x22\xa8\xa9\xdf\x62\x30\xe6\xe3\xcc\xdb\x24\xe2\x93\xea\xba\x1d\xd7\xff\x20\x16\x88\x68\xc3\x52\x52\x6d\x77\xac\x02\xb7\x31\x02\xd5\x58\xec\xca\xf1\xba\x65\x44\x66\x3b\xa7\x1f\xc9\xa2\x54\x4e\x57\xc1\xa5\x36\x1c\xa2\xc6\x0a\x32\xe1\xa5\xaf\xdc\x73\x87\xa8\x9a\xe9\xf3\x4b\x19\xb2\x9d\xa6\x1b\x00\x72\x0a\x78\x73\x06\xa5\xa6\x20\xb5\x9a\x8e\x2f\x63\xa2\x6e\x67\xa5\x83\x51\xa6\x56\xf9\xa2\x0b\x52\xa9\xb5\xfe\x0a\x22\xb2\x99\x02\x38\xd8\x78\x67\x29\x97\x6c\x34\xaa\xc2\x66\x21\x91\xdb\x81\x21\x31\x91\x45\xd3\x00\x1d\x08\x82\xfc\xae\x47\xb2\x56\x94\x12\x2c\x2c\x9c\x73\x82\x2c\x95\x01\x02\x54\xb3\x5d\x3b\xed\x8b\x1a\x34\xf4\x02\x65\xfe\x62\x3d\x75\xb5\xbb\x50\x89\x83\x6a\x19\xf4\xb6\x0a\xba\x3f\x75\x1a\xbb\x36\x0d\x47\x72\xdf\x2d\xa7\xae\x76\x0a\x0e\x6d\xcd\xa6\xf6\x37\x45\xf3\x56\x93\xa6\xe0\x6c\x35\x53\x6c\x5f\xf1\x26\xef\xba\x9b\x32\x57\x11\xbc\x33\x8b\xdc\x6c\xf5\x92\x80\x89\x8e\x88\x07\x08\x2b\xd6\xc5\xe2\xda\x09\x66\x3a\xb8\xb9\x16\x95\x2c\xe4\xa1\x66\x67\x0b\x80\x0c\x33\xec\x5a\x2f\xc9\xa1\xcd\x14\x50\xf7\x50\xd5\x63\xa2\x7f\x1b\xba\x88\x5c\xbf\x8e\xcc\xc8\xe4\xe8\x6a\xb0\x6a\x29\x47\x52\xe7\xb8\xa9\x5b\x98\x83\x3f\xa7\xd5\x5c\xc9\xb5\x24\x7e\xab\x09\x75\x19\x80\x74\xd3\x53\x24\x3b\x4d\x67\x80\x1b\x20\xfe\xd6\xa0\x16\x1e\xb7\x73\x50\xd6\xe3\x0d\xc5\x12\xac\x6c\x04\xbb\xb4\x14\x5f\x3d\x0b\x5f\x5b\xab\x2c\xa5\x3b\x76\x4a\x9b\x1b\xec\x66\x36\xb7\xc3\x62\xb6\x63\x67\x93\x1b\x82\xe3\x7b\xae\x0d\x8b\x8b\xd9\x8e\x9d\x05\x31\x2e\xc5\x00\xb6\x58\x1b\x61\xfb\xd5\xe5\x5b\x24\xa2\x9c\x45\x3e\xaa\x28\x88\x80\xf6\xbb\x3c\x97\x83\xe1\x72\x39\x07\x30\xb3\x9e\xb9\xd8\xad\x90\x0c\x35\x8b\xad\xb3\x19\xd0\x1c\x3d\x73\xb1\x53\xde\xb5\x6d\x62\xc4\x9d\x56\x52\xfc\xed\x6a\xc0\xb2\x0f\x10\xb8\x09\x6a\x93\xd1\x76\x0a\xf0\xe9\x06\xd8\xc5\xa2\xa9\xbd\xf6\xc3\xa0\xbc\x36\x1e\xad\x03\x4c\xa9\x54\x7d\x6b\x3b\xc0\xed\x6e\x36\x1e\x69\x6b\x13\x2a\x4d\xff\xda\x16\x58\xc6\x45\xf0\x73\x6c\xa6\xf4\xed\xea\x1e\x38\xce\x46\x22\xdc\x15\xa4\x8e\x5d\xd8\x05\x93\xa7\xfa\xdd\x81\x30\xd7\x6d\x6b\x47\xd6\x79\x7c\x03\x7c\xa5\xd4\x1c\xe8\xa9\x28\x49\xcf\x41\xf0\x70\x8f\x4e\xfc\x28\xca\xad\x21\x7f\xf1\xf3\x72\x38\xe3\x1a\x3c\xb7\xf9\x50\x80\xd9\x62\xbc\xf3\xe4\xe9\xb3\xec\x37\x2a\x2e\x5b\x4c\xb0\xb1\x12\xd5\x21\xba\x2e\x22\xfe\xda\x72\x87\xda\x15\x37\xa2\x4a\xc4\xf7\xae\xab\x5c\x41\x60\x30\x87\x45\xf0\x29\xf4\x36\x9d\x1c\x8f\x2c\xbd\x19\x10\xe5\xca\xe8\xbd\xa8\xa5\x20\xea\x92\x6d\xa5\xe6\x36\x00\x04\x38\xc5\xa4\x93\x6b\xf6\xc8\x1e\xe3\xcc\x6e\xa2\x20\x5f\xd3\x97\x10\x91\x06\xcf\xcc\xa1\x37\xf7\x43\xd5\x45\x1b\x6e\x98\x82\x53\x61\xb8\x32\xdd\x2f\x2f\x9b\xeb\x09\xc3\x14\x8d\xb6\x7d\x90\x4e\x2e\x02\x71\x7b\x04\x9a\xc0\x45\xe1\x97\x32\x10\x71\xba\xde\x99\xcb\x1d\x13\xd3\xc2\x15\x3d\x03\x51\x3f\xaa\xde\x84\xc0\x56\x9a\x2c\xa5\xd1\x56\xee\x3c\x78\xab\x98\x9c\xa5\x61\x88\x52\x57\xce\x94\x20\x7c\x42\xac\x11\x5c\x09\xea\xd2\x11\x6f\xa9\xf1\x39\x3b\x08\xad\xab\x2e\xdd\x20\xe9\x87\x76\x62\x3b\xc2\x0b\x2d\x01\xb1\xfb\xac\xc2\x1d\xc8\xd1\x70\x3a\x23\x86\xad\x26\x20\xe2\xa4\x72\x07\x0e\x32\x0e\xdc\xef\xdc\x29\xd0\xdc\x76\x31\x15\x1f\x44\x34\xf0\x36\x4b\x36\x1e\x6d\x03\x0c\xf8\x95\xc1\x46\xd2\x95\xad\xea\x1b\x80\x56\x9a\xa6\x82\x9e\x04\x6b\x8e\x58\x51\xbd\xe8\x8e\x4f\x09\x3a\x41\x28\x2d\x68\xe5\xf8\xd1\x15\xa3\xba\x42\x44\xe7\x86\x8e\x96\xc0\xb6\x8a\xcd\x80\x79\x8a\x08\x36\xe7\x50\xa7\xa4\x8d\xe7\x8e\x50\x16\xb4\x73\x76\x8e\xfa\x6d\x11\x18\x93\x62\x23\x0e\x55\xc3\x9e\xf4\xd0\xb9\xab\xb6\x53\xcc\x88\x13\x1b\xa2\x61\x98\x8f\xd7\x17\x8c\xb2\x37\xca\x78\xee\x0d\xb0\x78\xd5\x04\x44\x5d\x41\x21\x4b\x31\x57\x04\x9d\xed\xa9\x63\x9a\x09\x68\xa9\x61\x2d\x87\x8f\x1a\x06\x1c\x75\xd1\xbe\xd2\xcd\x70\x92\x63\x1e\xce\x5a\x58\x44\xe6\xa2\xbf\x01\x5a\xbd\x47\xab\xd8\x56\x3f\x17\xb0\x1c\x25\x74\x3b\x1f\x7a\xeb\xcd\xb6\xaa\xcd\x21\x98\x01\x3a\x25\xd3\x83\x39\x6d\x7b\x8d\xc8\x00\x03\x37\xef\x26\x0a\xa4\xce\xc2\xc2\x59\xb5\x0d\x50\x54\x51\x74\x86\x53\x3f\x2a\xb1\xe1\x9a\x51\xfb\x8d\x8b\xb1\x90\x7e\xd8\x9d\x41\xc4\x2f\xb9\x5e\xdc\x70\x9f\x5f\x35\xfd\xb0\x53\x23\x64\xb6\x78\x2e\x46\xf4\x30\xdd\xd5\xf4\x43\x5d\x0b\x40\x96\x19\x26\x82\xf1\x42\x4b\xeb\xcb\x37\x68\x44\x6d\x07\x06\x1f\xf9\xda\x5b\x77\x65\x03\x06\xae\x74\x4b\x13\x41\x4f\x08\x8b\xd9\x87\xfa\x69\x09\x75\x43\xa3\xbb\xce\x6d\x3f\xb5\xb8\x5c\x77\x28\xab\x11\x36\xb0\xaf\xef\x15\xd3\xcd\xb6\x2a\x8e\x71\x64\x91\xe7\x18\xcd\x74\x6b\x26\xd1\x69\xdc\x2b\x40\xab\x98\x82\x83\x33\xdf\x03\x2f\x75\x1c\x63\xc5\x51\x30\x6a\xe2\x3c\xad\x69\xb5\x09\x3e\x51\x5c\xd6\x81\x88\x9c\x1b\x91\x8a\x81\xcd\x78\x24\x4f\x8c\x45\x87\x19\x33\x77\x73\xbb\x68\x19\x1f\x31\x0a\xb0\xa2\x76\xb1\x20\x56\x21\x97\xec\x3b\x35\x17\x2a\xce\x6a\x8f\x1b\x9a\xa9\xe0\x97\x49\x4d\x73\xda\x70\x14\xa0\x31\xc8\xcf\xe8\x29\xe5\x49\x45\x58\x98\xb6\x8e\x9c\x02\xd7\x93\x64\xf9\x56\xd1\x39\xf2\x55\x63\x6e\xcb\xb8\xf4\x35\x83\x60\x87\xf9\xd9\xbc\xc8\x9e\x2c\x2c\xda\xc3\xdd\x82\xb1\xcb\xc5\x68\x7e\x65\xd1\xc8\xe5\x90\xc5\x43\x3d\x28\x72\x8f\x20\xf1\xad\x96\xb3\x00\xfd\x58\xfa\x05\x45\xc9\x35\x8b\x40\xbb\x28\x54\xbb\x59\x28\x77\x35\x86\xb3\xd3\x71\xc4\x82\xcb\x65\x43\x83\x30\x29\x17\x56\x4d\x55\xaf\x64\xdb\x03\xf3\xdb\x5b\x6f\xbe\x55\xbc\x99\x8b\x7d\x98\xb4\x24\xf4\xd6\x5b\x33\xc5\x31\x95\x24\xc7\x30\xbd\xf0\x81\xd5\x95\x73\xc7\xf0\x4d\xac\x45\x14\xb6\xc7\x8f\xf8\x56\xc1\x45\xf2\xc6\xc8\xb0\x4a\x6b\x05\x59\x33\xfd\x06\x7a\x9e\x00\xc2\x16\xdf\x77\x6b\xec\xbe\xaa\x70\xa9\x70\xed\x13\xad\x31\x43\xfa\x56\xbd\xa1\x96\x3b\xa0\x4a\x0a\xfd\xcb\x96\xd2\x0e\xbb\xd5\x10\x95\xa6\xa9\xa9\x7c\x27\xbd\x4c\x75\x0b\x0c\xe7\xc9\x6b\x39\x9b\xaf\x24\x48\xab\xbb\x10\xb8\xa6\xd0\xf1\x1c\xd3\xe6\x56\x93\x54\x6f\xc0\x93\x6e\x00\x1b\x93\x59\x01\xab\x4d\xf0\xc8\x82\x20\xd2\x6d\x85\xfa\xf4\xea\x78\x14\xee\x99\x81\x1c\x29\x2b\x60\x27\x49\x9b\xe0\x40\x1f\x6a\x51\x78\x60\x87\x79\x21\x73\xb3\x5f\x3b\xfd\x16\x53\x25\x7d\x1e\x0f\x40\xec\x72\xab\xa9\x55\xd1\x06\x8e\xa3\x45\xef\x1f\xa5\xb4\x35\xb5\x4a\xba\x94\x5a\x16\x49\xf6\x78\x9f\x5b\x6d\x96\x41\x11\xd1\xbd\x58\x3b\x3c\xd9\xde\x45\x6d\x26\x0c\xb8\xba\x03\xda\x6a\xcb\x7a\xdb\x85\x85\xfb\xca\x5d\x4d\x74\x29\x4e\x50\x58\x2f\x2d\x83\x69\x8c\xe8\xb3\x54\x2f\x35\xb5\x9a\x9a\x21\x21\x06\x05\x2d\xa5\x87\x92\x34\x33\xc0\xfa\x04\x96\x00\x13\xa0\x1d\xd4\xb4\xc3\xee\x4a\x65\x6e\xa5\x84\x16\xbf\x46\xe9\x9f\x95\x5a\x3d\x47\x36\x7e\x64\xaa\xd9\x1e\x49\x92\x5a\xd5\x4b\x80\x4e\x56\x2b\x8d\x5b\xab\x2f\xbc\x22\x1c\x81\x5a\xe1\xee\x81\x6a\xd6\x61\xe6\x6e\x97\xa9\x86\x49\x25\x4a\x4e\xad\x5a\x20\x68\x3e\xde\xf3\x86\x5a\x49\x9b\x60\x12\x12\xf6\xc4\xd9\xb5\x37\xd4\x5a\xf4\xe5\x75\x73\x97\x9d\x8d\x03\x03\xa0\x95\x5c\x76\xea\xba\x6d\x64\xe6\x51\xd4\x7b\x0d\xb2\x46\x55\x5f\x78\xe5\x23\x36\xfc\x86\xaa\xd8\xdf\xd4\x6a\xb7\x81\x73\xd1\x50\x72\x4e\x53\x6e\xa9\x55\x6e\xd4\x4c\x05\x00\xc6\x80\x64\xf4\x7c\xf1\x75\xda\xce\x5f\xcb\x30\xac\x47\xdb\x2d\x98\x39\x21\x8f\xd5\x67\x80\xb6\x13\xb5\xb6\x3e\x2a\x2e\x6a\x3b\x01\x28\x64\x83\x66\xcd\x9e\x19\x2c\xc5\xc7\x37\x33\x98\x7a\xc4\x7a\xba\x82\xce\xce\xc3\x75\xed\xf2\x77\x22\x09\x61\x72\x92\x6c\x40\xea\x4f\x4d\x39\xec\xb4\x34\xe3\x79\x07\x34\xfc\x2c\xcb\x19\x87\x9d\x6e\x40\x6a\x7c\xaa\x54\xed\x55\x5c\xbb\x14\xc0\x55\x19\x4f\xe1\x11\xd7\xd4\x33\x0e\x33\x57\x87\x9b\x33\x80\xb6\x7d\x9e\x3c\x59\x5a\x3d\xea\x64\x1c\x18\x34\xec\x20\xda\x16\xea\x4b\xa9\xd9\x7d\x18\x7f\x2e\x89\xd0\x9a\xbe\x7c\x97\x71\xaa\x72\x2d\x7d\xf0\xcb\xf5\x15\x3b\x45\x67\x90\xfb\x73\x88\xa7\xa6\xbc\x98\x72\xd8\xa9\x3a\x2a\xfd\xb1\x78\x47\x0c\xe8\xba\x16\x52\x0e\x3b\x5d\x17\x4c\x7d\x74\x88\x24\x7d\xb1\xc0\x62\xa7\xed\x9c\x63\x0c\x2d\x5a\xea\x2b\x7e\x6b\x7f\x2c\x2b\x33\x3c\x47\xc1\x6c\x5f\x53\xd8\x7e\x59\x9e\x53\xee\x8c\x8f\x83\xef\x01\x25\xed\x1c\x62\x8d\xd9\x03\xa4\xd6\x70\xed\xcf\x42\xca\x61\xa6\xf5\x06\x1a\x0c\xee\xea\xbc\x9c\x72\xd8\xa9\x3d\xc7\xfd\xab\x19\xf3\x50\x56\x28\xbf\x67\x66\x44\xdc\x25\x6a\x8c\x95\x0e\xf2\xc2\x16\x70\x75\x9d\x45\xd6\x25\xd7\x4e\x47\x6b\x5b\x50\x55\x9f\x41\x7d\x8e\x87\xab\xb1\x94\x71\xd8\xe9\x3e\xcf\xcc\x96\x54\x81\xed\x75\x72\xed\xcc\xd2\x44\x02\x1c\xff\x52\x21\x4b\x62\x1d\x62\xb8\x05\x92\xba\xd4\x28\x92\xef\x94\x98\x1c\x8e\x7e\x72\x66\xe2\xa8\x36\x3d\xd4\x57\x4c\x30\x19\x5f\x8d\x1e\x28\x9b\x41\xf8\x3e\xda\xe7\xe3\x40\x6d\x00\xc8\xdb\x64\x41\xc2\xa1\x2e\x20\x70\x33\xa8\x5c\x76\xc8\x52\x2d\x32\x9e\x27\x11\x50\x6b\x77\xee\x69\x91\x85\x7b\xa8\x2f\x81\x9b\x52\x30\x61\x52\x54\x08\xa3\xda\x2f\xca\xec\x54\x0c\xec\x2d\xb9\xb4\x10\xe5\xce\xd3\xb1\xcc\x60\xbf\xf3\x1c\xd5\x89\x3d\x6c\x41\x7e\x14\x8e\x6c\xe2\xc0\x91\x53\x6f\x93\x9c\xc1\x84\x6d\x81\xf1\x27\xa6\xd6\xd7\x2f\x2f\x04\x64\x0d\xb5\x09\x2c\xf5\x07\x55\x50\x08\xed\x77\xd1\xc3\xcb\x00\x54\x53\x24\x2e\x54\x5d\x4a\xad\xce\xcd\x4c\x8d\x91\x35\xbe\x79\x39\x05\xdd\xb6\x0a\xd3\xaf\x84\x39\x0a\x53\x7c\x5b\x9e\xd4\xa2\x45\x19\xc3\x00\xd4\xa6\x5d\x0a\xcd\xe4\x49\xbf\x15\xc3\xf0\x91\xbd\x3c\x2f\x9c\x4d\xea\x70\x64\x6b\x0d\xfc\x10\xa6\xb0\x94\xdf\xef\xbb\x6b\x01\x2b\x36\x13\x15\x7b\xec\xaa\x0d\x7d\x7b\x4d\x99\x8c\xd4\x23\xe2\xd0\x9b\xe2\xcd\x04\xcf\x9c\x50\x30\x6a\x62\x9f\x2f\xf2\xed\xb5\x48\xc8\x9a\x80\x9a\xdf\x2b\xe4\xda\xbe\xbd\x16\x89\x7d\x55\xfa\x68\xdf\x19\xe2\xbe\xbd\x16\x35\x64\x89\xb8\x03\x5e\x40\x35\x78\xb0\x3b\x80\x11\xa4\x87\x19\x00\x39\xd3\xf3\x7c\xfa\xf6\xf8\x51\x1f\x68\x94\x47\xc8\xf8\xc4\xc2\x32\xc0\x4c\x63\x38\x5d\xe2\xf1\x60\xaa\xc1\x83\xdd\x57\x51\xe4\xd9\x9a\xca\x58\xeb\x96\xd1\x87\xb3\xef\x62\x58\x92\x67\x32\x26\x85\x6d\xac\xfb\x32\x78\x2e\x88\xa5\x97\x96\x3f\x4d\x9d\x03\x37\x95\x3b\x72\xe6\x79\xcf\x41\xf1\x4b\xf5\x5e\xf8\xca\x2b\x6e\xf1\xf2\xf7\x7c\xd1\xa9\xbd\x17\x8e\x5e\xe2\x01\x7d\x5d\x7d\x5c\x70\xe9\x77\x17\xc3\xb2\xb6\x62\x0e\xb4\x3e\xe3\x9c\xba\x9b\x51\xe8\xfc\x16\x3c\xc5\xa6\xbb\x1a\xa9\xbd\x1a\x94\x1a\x64\x58\xbe\xec\xc1\xac\x2f\x02\xa0\xef\x01\x29\xd2\x41\x24\x78\xd5\x55\x8c\x8a\x6f\x20\x47\x90\xd6\x9e\x94\xbb\x91\xda\xbb\x91\x11\x33\x2e\x94\xef\x2a\x1d\xa3\x52\xf7\x45\x91\xa3\x44\xc3\x0e\xfb\xac\x7a\x9c\xbb\x43\x38\xeb\xc0\xe9\x05\x23\xa1\xbe\x06\x84\x4a\x80\x2d\xb7\xa2\x32\x62\x61\x0d\x8e\xa3\xcc\x03\xa8\x13\xfa\x94\x41\xf7\x45\x64\x79\x71\xfe\xdc\xe0\xb2\xea\xde\xe3\xec\xb1\x60\x95\x50\x31\x15\x4a\x72\xb3\x99\xc3\xbd\xcc\x2b\x8d\x7c\xe5\xe2\x5e\x5d\x0a\xfa\xda\x71\x07\x04\x0b\x20\xe8\x7c\x25\x75\xda\xee\x5a\x0c\x50\x38\x1c\x64\x99\x15\x40\x79\x75\x86\x05\x0b\x12\x57\xc6\x70\xcf\x0e\xf1\x29\xed\x04\x8b\x90\x55\x40\x34\x43\x8d\x75\x35\x53\xd8\x78\xb4\x6e\x82\x9a\x2e\xf6\x91\xdb\xdd\xd6\x5c\xd9\x6e\x70\xa7\x6c\x6f\x4d\xb5\x73\x5c\xc5\x7a\x0c\x6c\xd8\xf7\x8d\x19\xfa\x0f\xb3\x04\x78\xce\x88\x45\x69\xc5\x8e\xed\x14\xf4\x0d\x34\x70\x53\x50\xdc\xbf\xe0\xd9\xec\xae\x88\xe7\xbe\xc4\x0e\x24\x2e\x73\x9c\xfc\xc2\x5a\x26\x98\x88\x71\x55\x37\x2e\x39\x29\xbb\x23\x19\x90\xb1\xa5\x84\x89\x35\xcb\x3e\xca\xee\x9e\x8c\x5e\x7d\xa2\x60\x59\x90\x08\xa7\xa5\xaf\xaa\x0d\xda\x0b\x85\x97\x74\xe2\xe6\xf6\xb3\x00\xe4\x80\xf5\xc6\xe1\x89\x05\x67\x63\x77\x53\x1c\x08\xba\x98\xc5\x70\x0d\xdd\xb4\xbb\x29\x5c\xea\x80\x46\x08\xa9\xbd\x29\xcd\xec\xd8\xfe\xbf\x54\x5f\x63\x1a\x0e\x97\x29\xc0\xf4\x1e\x80\xd1\x92\x43\xda\xaf\x03\x94\x81\xe3\x83\x48\xa3\x2b\xce\xc3\xec\x07\x80\x9e\xab\xd1\x9f\xb9\x37\xa0\x7f\x92\x41\x5d\x0b\xf3\x8e\x0a\xfa\x75\xfd\x9b\x0a\x90\xd2\xd5\x36\x96\x2e\xdc\xd2\x22\x10\xef\x42\xc1\xf1\x20\xdf\x7e\xf5\xb3\x0a\x1e\x70\xee\x2b\x55\x64\x9f\x68\xfd\xbb\x6a\x65\x4e\x62\x1c\xaf\xd7\x2d\xe2\xe9\x8f\x84\x7a\xcf\x1d\x3c\xd1\xee\xe5\x6f\x27\x00\xfd\xea\x18\xc2\x5c\x7a\xda\x96\xee\xca\xc3\x05\x07\xda\xc9\x0b\x10\xfa\xd2\x2f\x24\x36\xf7\x2a\x78\x7d\xc1\xc8\x9d\x66\x00\xdd\x85\x56\xce\xcc\x0f\xad\x1b\xad\xbb\x8d\x0d\xd4\x1e\x03\xef\x81\xd2\x75\xac\x5f\x44\xe4\x12\x4c\x8b\x9e\x09\x22\xf2\xaa\x7f\x16\x48\x3d\x19\xef\xbc\xf1\xdb\x41\x7b\xa2\xda\x8b\x8e\xfe\xfd\xcc\x4f\x0f\xcc\x92\x7e\x9a\x26\xf9\xa1\x79\x5c\xad\xf9\x8a\x1d\x56\xb0\x9b\x02\x4d\x65\xd8\xe3\xcf\x7d\xf6\xb8\xfb\x27\x92\xaf\x88\xd4\x26\xc1\xcc\xb5\xf8\x13\x85\x5b\x32\x18\x9e\xb7\xf4\xde\xcc\x64\x08\x4e\x44\xba\x50\xb2\xb8\x7e\xf1\xbb\x06\xa6\x8d\x02\x37\x66\x59\x6e\x1e\x37\x5f\x09\x77\x65\xa2\x1e\x90\x52\x4f\x2f\xfe\x1c\x24\x98\x50\x78\x21\x4b\x93\x16\x35\xe9\x94\xb3\x4d\x4c\x14\xae\xab\x07\xfc\x2f\xf7\x79\x23\x46\x14\x0a\x6d\xb3\x16\x2d\x79\x79\x02\xd2\xb5\xa8\x85\xde\x78\x66\xa3\x2e\x61\x69\x42\x6d\xd2\xce\x7d\xe1\x7d\x86\x1c\xcb\xe2\x27\x71\x1d\xfe\x04\xc4\x8d\xf0\x06\xf3\xd2\x2f\xc4\x61\x22\x5e\xa6\x3d\xf6\x1e\xb0\xcc\xbc\xf4\x0b\xd1\x62\x82\x65\x07\xde\x33\xd3\x54\x5a\xfc\x05\xcf\x30\xbb\x88\x9c\xa5\xe3\x26\x64\x4a\x10\x86\x27\x70\x18\xc2\x56\x08\x76\x82\x9d\x18\x97\x26\x24\x33\x11\x75\xc3\x23\x62\xac\x6b\x58\x9c\xc0\xe5\x2c\x26\x72\x18\x30\x0a\xbf\x40\x99\xc0\xa0\x47\x03\x60\xff\xc6\x32\x4d\xb5\x5b\x9a\x90\xa7\x98\x16\x9a\x36\x44\xee\xa5\xb2\xb4\x49\x39\xd4\x9e\x2b\xbe\xcc\x32\xc0\x0a\x5a\x97\xc7\x03\x83\xb1\x61\xd6\x81\x6a\x1e\x99\xc5\xbf\x5f\x6a\xd6\x9f\x1f\xa5\x39\x43\x56\xff\xbf\xc5\xf0\xc6\xc0\x8b\x8d\x5c\x20\xb4\x34\xda\x32\x5c\x11\x89\xb4\x80\xb8\xe5\xd2\xa7\x14\x87\xb2\x41\xae\x0f\xf2\x18\xdd\xf5\x20\xac\xa3\x19\x5a\x34\x30\x6d\x37\x2c\x47\xbb\x3c\xda\x81\x3a\x97\x41\xba\xca\x4b\x27\x1e\x0c\xdc\xd4\xc4\x3f\xe2\xb6\x33\x2b\x48\xb9\xc5\x3e\x93\x1f\x96\x90\x07\xd8\xb8\x79\x38\x57\xb9\xc3\xbe\x80\xef\x78\xc0\x2e\x0a\x50\x91\x72\x83\xb9\x0e\x26\x82\x34\x6c\x23\xea\x99\x95\xfb\x1b\x1c\x86\x33\x5d\x9a\x20\xa5\x51\x6e\x6f\x00\xcf\x5f\xe0\x42\x23\x61\x64\x28\x77\x37\x64\x30\x63\xf9\xda\xa7\xa8\xcf\x90\x35\x6a\x24\xfb\x4a\x09\x47\x94\xf6\xbb\xbf\xae\xdc\xdb\x18\xc9\x1d\xf2\x06\x91\xb1\x34\x6f\xc4\xa8\xdc\xda\x04\x32\xf2\x0a\x61\x49\xf3\xaa\x4c\xe5\xce\x26\xe2\x2d\x19\x2f\x5b\xed\x48\xb8\xb3\x84\x95\x1b\x9b\x51\x6a\x67\x32\x2c\x98\x38\xe7\xa9\x55\x2e\xec\x78\xb5\xf1\x86\x3b\xec\x7b\x5a\xa8\x0b\xe0\xe1\x11\x90\x66\x84\x2f\x37\x61\xee\xc0\x2a\xd7\x35\x83\xfe\x0d\x21\x4c\x94\x95\xaa\xfd\x35\xa7\x53\x44\x4c\x7c\xf5\x72\xcc\x60\x1d\xfd\x65\x2d\x60\x6e\x63\xc4\x94\x9b\x93\x1e\xf5\xdf\x51\x2c\x7b\x11\xe8\x85\x33\x4f\xa9\xf6\x57\xb5\x4c\xc6\x09\x6a\xd7\xe2\x6e\x89\xfd\x4d\x2d\x8c\xf1\x06\x40\xc1\xce\x0f\x96\x76\x51\x73\xc1\xdd\x0c\xf5\x97\xba\xfe\xa4\xe2\xa2\xe6\x52\x95\xd0\xb8\xdd\xc5\x20\xff\x2f\x86\x07\x39\xdc\xe4\xe9\xaf\xe7\x3c\xc7\x09\x2a\x17\x35\x97\x2a\x74\x3e\x09\xa9\x85\x21\xe6\xe6\xaf\x07\x3b\xb5\xd1\x48\x79\xde\xa1\x4d\xb9\xa8\x99\xab\x12\x11\x32\x4d\x6e\x9e\xff\x51\x2e\x6a\x19\x6a\xa4\x63\xdc\xf6\x98\xe6\xca\x4e\xb9\xa8\x85\x41\xf5\xa8\xe9\x8f\x16\x56\x54\x73\x89\xc5\xf0\x82\xbf\x3e\x5e\x8e\x60\x10\xd6\x12\x2a\xa2\x39\x5c\xb5\x2e\x05\xa9\xdc\x4e\x4c\xbe\x39\x5e\xe8\x86\x58\xd9\xfe\x4c\x8b\x59\x77\xcd\x70\x0e\xa7\x8e\x7a\xdd\xda\xf9\x71\x54\x2e\x6a\x71\x1c\xce\x42\xec\x20\xcd\x0f\xa4\x72\x51\x0b\x57\xed\x19\x04\x3a\xdd\x1c\x9b\xa9\x5c\xd4\xc2\xf4\x19\x20\x85\xe0\x24\x89\x3c\xc0\xf2\xb8\xb3\xc7\x4c\x7d\xf7\xe7\xb7\xae\xbf\xa8\xc5\x63\x17\xc1\xea\xe1\x60\xf7\x88\x3d\x97\x83\x29\x8f\x0b\x64\xb4\x41\x7e\x47\x6c\xa1\x1c\x9c\xd9\x71\xa7\xce\x42\xa6\x3d\x2b\x56\x0e\x2e\xe0\x6a\xb3\x30\x87\x3b\xaa\x0f\x79\x53\x97\x43\x09\xca\x3d\x65\x5c\x36\xfe\xdb\x68\x6a\xeb\x44\x70\x7c\x4d\x01\x29\xde\x8d\x36\xed\x22\xc5\x2d\xe5\x6e\x32\xd3\xe8\x4e\x90\xe2\x92\x32\x07\xc1\x34\xfa\xff\x71\x72\x56\xb9\xa2\x1e\xa0\x9a\x69\x74\x27\x1c\x71\x43\xb9\x15\xcc\x34\xba\xab\xe0\x10\x17\x74\xa5\x30\x4d\xb9\x9f\x11\xa9\x0e\x1e\x2d\xd0\x34\xca\xf5\x5c\x21\xde\x53\x6e\x67\x42\xb5\xdb\x34\x7a\x61\x4f\xf8\x72\x26\x40\xac\xa6\xd1\xdd\xad\x14\x77\x73\xa5\xd3\xb4\x72\x35\x33\x18\xc2\xa6\xd1\x49\xdf\x13\xbe\x9a\x19\x70\x89\x69\x74\xd6\x57\x99\xea\xd9\xca\x66\x3e\x58\xff\x90\x50\x35\xd5\xe0\x66\x83\x8b\xbe\x23\xae\x6a\x12\xeb\xe7\x83\x75\xd1\xd8\x3a\x18\x00\xbd\x3a\x58\x5f\xa1\xb8\x3d\x3c\xd8\x6e\x45\x14\x43\x36\x83\x9f\x6e\xce\x2c\x27\xb1\x61\x20\x0d\x1f\x7d\xee\xdb\x1e\xe7\x13\x5c\x02\x63\x93\x83\xb3\xc6\x2d\x2f\x77\x80\xac\xd9\x3f\x78\x7f\x6a\x3b\x25\xb8\x16\x4e\xb0\x5b\x31\x21\x81\x9d\x2b\xc3\xc8\x25\x09\x6c\x24\x72\x26\xbe\xa2\x40\xec\xfc\x1f\xbc\x2e\xa6\xda\x1a\xe0\x7b\xc9\x56\x9f\x71\xf6\xbf\xd3\x21\x08\xac\x12\x99\xa7\xc8\x4d\x6e\x8b\x9b\xfd\x2f\xef\x28\xb2\x73\xa3\x0a\xca\x3b\x6e\x69\xf5\xf3\xeb\x2f\x72\x0f\x08\x8b\x78\xa0\x97\x55\x3e\xe2\xfb\xcd\x74\x9d\x10\xf3\x87\xad\xe8\x80\xda\x54\x16\x60\xa6\x2b\x52\xf0\x02\xb0\x28\x86\x61\x49\x06\x76\xfa\x8f\x89\x13\xb8\x90\xda\x10\x97\x56\xc1\x33\x42\x61\x54\x12\xd6\xed\x04\x75\x87\x5c\x45\xc5\x90\x99\x2a\x37\x34\x8f\x42\x20\x5a\x59\x45\x1d\x0f\xbe\xb7\x4d\x0d\xad\x63\xd5\xea\xd1\xab\x1f\x5a\xab\xf0\x18\x76\x80\x2b\xa9\xae\x9b\x67\xb8\xca\x4f\xc8\xdd\x2d\x25\x41\x91\x58\x77\x8d\x78\xa1\x88\xbd\x4a\xcf\x89\x6a\x55\xb9\x6e\x89\xe5\xde\x98\xda\x03\xd7\x2d\xac\xbb\x8e\xe7\xc0\x48\x6d\xcc\x25\x7b\x70\xc8\x4b\x5a\xe1\x44\xb1\x32\x9c\x3a\xe6\x52\xb5\x4b\x5b\x55\x91\x4e\x4c\xc2\x66\x2b\xa7\xd1\xf2\x35\xdd\x81\xfd\x00\x0b\xe5\xd0\x05\x40\xd3\xea\x56\xcd\xc0\xc6\x30\x88\x0a\x4e\x4a\xb0\x4b\x5b\xb5\x83\x72\x0f\xcc\x36\x1f\x77\x4e\x80\xb2\x55\x3b\xbc\x7b\xc4\x82\x81\x7f\x81\xc2\xd6\xb7\x6a\x06\x99\x61\x60\x24\xe9\xe3\xb4\xa8\xcf\x76\x69\x1a\xcb\x1c\x35\xe8\x71\x48\x1a\x50\xdd\xa9\x9a\x0c\x32\x75\xdd\xdc\xfe\x52\x34\x99\x15\x3b\x95\x27\x2d\x0b\xf6\x27\x06\xfa\xcb\x7e\xb9\x62\xa7\xaa\xd5\xc1\x7c\x6b\x4c\xa4\xcc\x9c\x65\xca\x4e\xed\xd2\x9f\x16\xe3\x51\x0e\x2b\xe9\xfc\xe5\x4e\xed\xa2\x9e\x19\xe7\x10\x8d\x14\xc9\x63\x52\x77\x6a\x17\x23\x67\x36\x9f\x81\xde\x45\xb7\xb8\x51\xb3\x08\xee\x30\xeb\xe0\x3f\x88\x64\x50\xab\x3c\xa7\xdd\x08\x98\x92\xd8\x82\xca\xcb\xda\x93\xff\xab\x87\x53\xc1\x0a\x5d\x36\xe4\x92\xea\x73\x67\x3b\xa4\xb9\x9d\xeb\xfa\x44\x39\xeb\xa8\x49\x7e\x03\x97\xd4\x91\xca\xb2\x7e\x0e\x2f\x52\x33\xec\x96\x98\x00\xa8\xa7\x3b\x2b\xc5\xa5\x04\x76\xb5\x05\xa7\xde\x8b\xd4\xd9\xc9\x56\xfe\xfb\x95\xdf\x80\xcb\x52\x01\x40\xe3\xd7\x29\x35\xd0\xcd\xcf\x8c\x36\x99\x9b\x82\xa5\x84\x9b\x5c\xce\x62\xef\xd6\x32\x9a\x92\x0e\x5c\x75\x76\x00\x3e\x53\x4b\xd1\xa5\xe9\xf4\x12\x43\x0b\x9f\x7a\x23\xe8\x26\xc5\xb4\x34\x59\x15\x86\xbb\x40\xa1\xc5\x7a\xe9\x0a\x55\x9a\x09\xa1\x62\x9f\xc6\xab\xc8\xc4\x1e\xfd\xeb\xcd\xe7\xd6\xd2\x61\x1a\x6a\xf8\x8e\x12\x86\xf3\x61\xe2\xc1\x47\x9c\x67\x63\xb8\x91\xca\xdc\x45\x55\xcc\x03\x87\x66\xa1\x20\x1b\x1b\x00\xc6\x71\x4b\x83\xe9\xfd\xd9\x1b\xa6\xb6\xb9\xed\x77\xcc\x7f\xa5\x58\xe0\xdf\xd8\xaa\x11\x71\x9b\xfe\xdb\x0b\x40\xd4\x66\xe2\xa1\xc9\xea\x7e\x4c\x83\x71\x83\x39\x1b\x95\x5b\x07\x68\x3e\xb1\xb8\x7a\x87\x1d\x4c\xfe\xa8\x6e\xde\xf4\xd1\xc0\x4f\xd6\x5a\xcf\x59\xfd\x50\xbf\x2b\x05\xc8\x7d\x83\xc7\x99\x35\x6f\x3f\x8c\x07\x0f\xec\xcf\xa0\x33\x0a\xa3\x2d\x71\x26\xba\x2d\xcc\x85\xc5\x92\x11\xc7\xa6\xf0\xce\x7c\x58\x92\x62\xe1\x27\xa3\x60\xc3\xe7\x94\x1c\xfd\x68\x84\x6b\x1d\x33\x06\x97\xf6\x33\x92\xfc\x0c\xe2\x83\xa4\x7f\x81\x61\xa4\x85\xd3\xf9\xad\xc8\xc8\xe3\xc3\x93\xd8\x84\x79\x80\xa1\xff\xf4\x8c\xce\x51\x95\x72\x8a\x7b\xb3\x2d\x0d\x46\xe2\x03\x79\xf3\x4d\xec\x83\x63\xf3\x89\x65\xa8\xf2\x48\x94\xdd\x24\x97\xaa\xff\x9b\xd3\x47\x0f\x9c\xbd\xc7\xde\xcd\x6e\x4b\xbf\x2b\x19\x59\x39\x07\x14\x17\x53\xef\x2f\x8d\x0d\x1c\x2f\xc8\x33\x03\xc6\xf7\xe7\x9f\x7f\x2b\x4f\x10\xd9\x89\x32\x70\x77\x50\xb5\x60\x31\x23\x84\xd9\x18\xcb\x8a\x8a\x9a\xff\x4a\xe2\xfc\xb0\x71\xcc\x81\x5f\x04\xc8\xa6\xbf\x69\x29\x33\xf6\x85\x41\x8a\xa6\xcc\xbd\x7b\x65\x1d\x09\x9c\xbe\x36\xd4\x40\xfd\xe0\xdb\xef\x77\xf2\xfb\x1d\xea\x0c\xe8\xc1\x8f\xa2\x0c\x4b\x19\x1f\xa9\xb4\x7d\xaf\x20\x64\x6c\xd9\xbc\x73\xbd\x46\x9e\x4e\xb9\xe1\xc4\x91\x01\xe2\xbc\xbd\xc8\x72\xf8\xc0\xcc\x89\x95\x3c\x9e\x8e\xa3\x5b\x1a\x9e\x0b\xb3\x99\xe3\x88\x65\x41\x60\xac\x8c\x4f\xe8\xef\x40\x04\x90\x9e\xb4\xbe\x2b\xed\xe6\xc8\x09\x0e\xa4\x86\xdc\x5f\x75\x50\x10\x89\xf3\x1f\xab\x2d\xeb\x6a\x5e\xdb\x1a\x91\x37\xef\xb5\x5d\x4a\x5c\x4f\x3a\x30\xa5\xae\x99\x97\x37\x29\xa7\x28\x51\x51\x03\x01\x6a\xa1\x91\xb2\xd5\x4f\xe7\x34\xdc\x40\xba\x06\x70\xa0\xc5\x17\x17\xe3\x23\x12\x94\x66\x60\xc3\xda\x09\x42\xad\xfe\x8c\xa6\x4a\x46\x6e\x79\x63\x8b\x72\xbf\x9c\x5c\x70\xad\x82\xa8\x3d\x0a\x7d\x97\x8c\x71\x72\x05\x54\x3e\xed\x6b\xaf\x85\xa5\xe3\xec\xaa\xc0\xb8\x4f\x06\x63\x11\x4c\x8f\x02\x72\x72\xc1\x9e\xa2\xb0\x91\x4b\xd9\xba\x74\x82\x98\x54\x26\x67\xdf\xa3\x27\xb2\xcb\xfa\xe9\x77\xf5\x7c\x3a\xf8\xee\xc4\xf7\x58\x04\xc0\x41\x19\xcf\xca\x64\x63\x50\x62\x63\x44\x24\x4f\x59\x73\x2e\x8c\x2b\xc2\xf1\x2c\x80\x05\x2a\xd7\xc5\x55\x25\xcb\x50\xf8\x84\x2e\x7b\xce\x2e\x5c\x97\x69\xef\x3d\x43\x53\x0d\xec\x43\xd3\xa9\x1e\x39\x81\xff\x32\x5a\x05\x5a\x46\xe5\x68\xd7\x8b\xc7\x53\x21\xc2\xd4\x26\xb9\x88\x22\x2f\x6d\x42\x04\x9e\x2a\x30\x61\x63\x4c\xaa\xe1\x53\x1d\xe4\x29\x40\x43\x5e\x83\x08\x87\x2b\x22\x8b\x99\xbc\x2a\xd0\xb6\x54\x17\xbf\x57\xc8\x75\x74\x22\xb7\x9b\xa1\xb8\x0e\xc1\x25\xe5\x9e\xf3\x7f\x0a\x9c\x99\x67\x12\x5e\x13\x10\xd1\x55\x2e\x6e\x9d\x80\x4a\x73\x83\xfe\xee\x95\xe7\xb7\xbf\x87\xbb\xb8\xab\x61\xe3\x87\x13\x00\xba\x6d\x3a\x5b\x2b\xbb\x13\x5c\x7b\xd2\xf1\xf9\x89\xf1\x21\xf3\x73\x85\x7f\xdd\x48\x86\x0b\xe5\xc0\xc5\x4c\x9f\x3f\x54\x40\x4c\x69\x0f\xa6\x6b\x36\x13\x64\xfd\xd0\x0d\xa2\xa4\x4e\x19\x1e\x12\xfc\xdf\xcc\x38\x3c\x3f\xc7\xdc\x6a\xc7\x39\x00\x6a\xcb\x5c\x84\x1b\x1e\xaf\x9c\xf8\xdd\x78\x06\xb9\x0f\x48\xa3\xe6\xa5\x47\xb1\xfe\xb7\xc8\x18\x60\x4a\xc0\x81\x52\x5c\xd5\x0b\x75\xc1\xec\xce\xc1\x47\xb0\x22\x9f\xa2\x5d\x97\x18\x2a\x39\x50\xe1\xda\x88\xd6\x3f\xe8\xc6\x5b\x04\x85\xb8\x7b\xf7\x1c\x9f\xa2\x4d\x08\xb5\x6f\x25\x5a\xc2\x70\x89\xa6\x36\xb2\x4e\x80\x0a\x34\xc8\x0b\x19\xb7\x14\xd6\xfe\xbf\x1b\x31\x37\xed\x70\x9b\xa6\x98\x82\xef\xf3\xa4\x56\x0e\x67\xfa\x07\xc4\x5e\xd0\x92\x79\x01\x01\x89\xf1\xb1\x72\xd5\x79\x50\x01\x84\x85\xd4\x67\x1d\xcf\x01\x33\x4f\x09\x9f\x90\x60\xf4\x88\x21\xed\x78\x80\xff\x2d\x33\xe2\xc5\x76\xb8\xd1\xfe\x3e\x32\xdb\x6e\xee\xec\xb4\x4d\xe8\x30\xdc\x71\x7e\xcf\x01\x8d\xea\xbb\x3f\xdf\x2c\x17\xed\xb3\xc0\x35\x63\xa3\xf4\xd4\xb5\xe5\x0e\xec\x5f\x8e\x5e\x55\xf0\x8b\xdd\x93\x76\xc3\x93\xdf\xc1\x62\xbd\xc2\x74\x68\xda\x09\x86\xca\x0b\x72\x9e\x0a\x94\xc4\x70\x39\x2b\x15\x52\x9a\x85\xf9\xea\x73\xf7\xd7\xe5\x6a\x13\x75\xef\xda\x4b\xa8\x76\xe0\x20\xb8\x18\x2f\x57\x9b\x22\x80\x30\x14\x3e\x46\xc7\xb1\x05\x24\x33\x86\x9b\x89\x69\x13\xac\x26\x41\x01\x5f\x36\x13\x06\x2e\x81\xf5\x35\x20\xd5\x4c\xb0\xad\x30\xb8\xe8\xd0\x83\x9a\x72\x19\x9e\x8b\xcb\x5e\x80\x51\x44\x1f\xfd\xfa\x8a\x8a\x91\x72\xc5\x11\xa4\x29\x75\xf7\x44\xbf\xab\xa4\x2c\x39\x44\x92\xac\x47\xe7\xb6\x4d\x9c\xe7\xf2\x93\xb6\xe4\x10\x69\x8f\x7c\x64\x38\xda\x9c\x23\xae\xad\x47\xae\x13\xa8\xb9\x30\x60\x6c\x6e\x8e\x3d\x6f\x51\xfe\x55\x5d\x25\xf4\xf0\x8d\xe0\x93\xee\xe1\x45\xf2\xc3\x02\xa8\xaa\xbd\x43\xcf\xfd\x50\x1b\x6a\x2c\xea\xab\x50\x7b\x80\x26\xa4\xb5\x7c\xe8\xfb\x4e\x36\x13\x68\x73\xc0\xf9\x32\xc0\x12\x33\x2b\x2a\xcb\x57\xfa\xaf\x4c\xf8\xda\xd2\x01\xea\xba\x3b\xcc\x9c\x94\xde\x55\x0e\x10\xbd\x33\x74\x9d\xc0\x25\xa8\x70\x49\x82\x83\x4e\x34\x2b\x4a\x8b\x69\x4e\xe0\xc2\x24\x11\xfd\xd4\xb5\x96\xa9\x48\x9c\x52\x23\xcc\xed\x04\xdb\xde\x7b\xee\xc9\x93\x98\xac\xa6\x1d\xef\xdb\x8b\x6f\x61\x9e\x58\xb4\xf0\x35\x6e\xa9\xb9\x75\xfd\x37\xb6\x0c\x20\x36\x00\xe8\xda\x4e\x9e\xed\x84\x44\xd0\xe3\x84\x72\xbe\x14\x94\xce\x9f\xcd\x04\x43\x55\x18\xe8\x51\x83\x87\xdb\xac\x69\xaf\x48\x56\x28\xda\x49\xf8\x5a\x29\xbe\xa2\xbe\x02\xa8\x96\xc9\x90\x33\x45\x1c\x0c\x5d\x7f\xa1\xb2\xc2\x81\xf4\x41\x6e\xab\xa6\xc0\x62\x26\x5b\xc5\x72\x69\x02\x48\x2c\xfa\xe6\xa5\xcd\x14\x0b\x3b\x22\xa6\xea\xce\xb4\x33\x6c\xab\x62\x12\x6a\x88\xa8\xd4\x49\x64\x22\x75\x25\x16\xe7\xd4\x7e\x26\x88\xf6\xa8\xba\x16\x43\x51\xa9\x89\x70\x06\x8a\x68\x64\xae\xaa\x31\xa0\x63\x3c\x97\x7f\x9b\xa1\x96\xfa\xaf\x28\x32\x94\x81\x55\x12\xdc\x20\x16\xae\x6b\xb2\x09\xc1\x94\xf3\x14\xe6\x34\x6b\xaa\x0c\x4c\xe7\x1e\x50\x3c\x63\xf0\x9e\x98\x35\x5d\x66\xd1\x9d\x19\x2c\x2f\xce\x88\x7e\xad\xda\xc5\xe6\x54\x5c\xe0\x4e\x16\x83\xe0\x05\x59\xb8\xd9\x01\xf5\xee\xc9\x76\x49\xdb\x85\x9b\x9d\x01\xad\xcc\x69\x72\xcc\x34\xb2\xb9\xdd\xcd\xf6\x5c\xb8\xc9\x84\xda\x61\x81\xbc\x69\x77\xed\x2a\xb7\x7f\xca\x84\xa4\x35\x7d\x93\x5a\x39\x23\xd7\x58\x7a\xf2\xd3\xc4\xbe\xad\x6d\xf3\x23\x9c\x10\xe6\x42\x1a\x63\xbb\x19\x56\xd3\x06\x0c\x74\xb6\x82\x3d\x45\x57\x69\xa1\x82\x0b\x12\xa0\x65\x79\xb1\x07\x7d\xfd\x37\x2e\xe8\x85\x7d\xe2\xbd\x68\xbf\xa3\xaa\x34\x94\x7f\x7b\xee\xde\x62\x85\x30\x74\x9d\xe6\x38\x06\x1c\x10\x02\x54\x9a\xf9\xda\x76\x82\x43\xb7\x37\x3a\xe3\xcb\x4d\x8a\xea\x78\xcb\x88\xa3\x08\x2e\x93\xb4\xd8\xf0\x63\xb7\x05\x9c\xd3\x2f\xe8\xc4\x9e\x96\x1a\x54\xee\x94\x01\x9d\x24\xee\xa8\x83\x86\xe7\x3d\x91\x4d\x33\xc5\xfb\xda\x7a\x9d\x22\xb7\x7d\x43\xe2\x46\xa9\x81\x13\xd5\x84\xa9\x93\x71\x3f\xa3\xd1\x6a\x13\x21\x64\x00\xf9\x40\xe9\x39\x12\x1b\xad\x86\x74\x8d\xc1\x9d\x75\x01\x29\x07\xbb\xa2\xd5\xa8\xce\x84\xb4\x41\x80\x33\x3c\xf4\xfc\xb1\x8d\x56\x63\x4e\x54\x0e\x46\x30\xe5\xb1\xca\x38\xbb\x9b\x31\xfe\x75\x87\xfb\xbd\x71\x5a\x8f\xbc\x46\xad\x81\xbc\xd9\xa1\xef\x60\x12\x97\x4f\xd5\x6a\xbe\xd0\xad\x73\x08\xf4\xd9\x28\x28\xc7\xf4\x63\x1e\x99\xac\x3a\x73\xf5\x86\xe9\xd8\xba\x4d\x3b\xc5\x30\x11\x5a\x6d\xda\x6e\xbb\x68\x7d\x77\xd2\x3d\x13\x5d\x0f\x43\x2d\x98\x58\x2a\x65\xab\x67\x1d\x21\x51\x90\x82\x8f\xff\xb5\x8b\xad\x74\x87\x1d\x4a\x04\x7d\x71\x5c\x82\x9d\xe3\x57\x74\x1b\x57\xdb\x24\xc6\xd6\x0c\x4d\x13\x03\x6d\xed\x20\x9a\xdb\x64\xae\xf8\xf0\x38\xee\x7e\x4d\xb9\x0d\x53\xd0\xc7\xd9\xca\xe3\xd8\x4e\x69\xce\x7b\x06\x39\x0c\x37\x8a\x65\x8e\x3d\xbf\xa2\xde\x62\xe4\xc8\x31\x9c\x65\xe7\x85\x48\x34\xfd\x16\x6b\xaf\x3a\xa6\x68\x35\x62\xbb\x54\x05\x17\x53\x85\x0b\x47\x2e\x8f\xc9\x3d\x03\x9e\x6d\xbf\x2b\x98\x4a\x63\x4c\x56\x74\xff\x23\xbe\xd5\x27\x16\xb4\x95\x2e\x70\x28\x68\x81\x64\x6f\xa7\x1c\x02\x5a\x22\x52\x59\xa5\xa4\x85\xd2\x8e\x71\x28\x74\xd4\xf9\xa6\x5b\x2b\x1a\xe4\xaa\xc2\x0f\x85\xa9\xf2\x90\x96\x88\x1a\xa5\x4e\x73\xd3\x81\xe6\xa8\x00\x9b\x41\x1c\x13\xf5\xa7\x42\xc2\x93\xcc\x4f\xbf\x5f\xa4\x60\xd8\xf9\x7a\x86\xc8\x8c\x22\x5a\x89\x0c\x7d\xcb\x0e\x79\xc2\xd0\x08\xd0\x19\x6e\x47\x2b\x11\x45\xaa\x82\xf3\xa0\x4e\xb3\xcc\x04\x87\x0a\xea\x05\x6a\xe9\xdd\x14\x0b\x0e\xd5\x4a\xe0\x93\xfa\x4e\xbf\xcd\xd1\x47\x8a\xcd\x32\xea\x8e\x31\x42\x7e\x4d\xc7\xe1\x51\xb6\xd3\xeb\x5f\x16\x1a\xfd\xee\x1e\x83\xc0\x54\xf3\xd4\x22\xcd\x79\x41\x2f\xa8\x1e\x75\xc3\x99\xa4\x00\x30\xa3\x4d\x88\xcc\xa5\x65\x1d\x17\x0d\xab\x91\x3c\xd1\xe6\xa7\x8e\xb4\xa2\x39\xeb\x03\xc7\x2f\xb9\x68\x35\x08\x0e\x22\x55\xea\xcc\xb4\xe6\xb8\x3b\x6b\x11\x2b\xd1\x94\x5c\x60\xa2\x29\x03\x3a\xbb\x71\xf1\x51\xeb\x18\xdf\xcc\xb1\x9c\x97\x44\x5f\x82\xcc\x09\xed\x15\x35\x17\x38\x4d\x60\xb9\x04\xd9\x9a\xa6\x6d\xb1\x7e\xe6\x1d\x73\x64\x67\x78\xe5\x69\xe8\xa6\x34\x1b\x10\xf0\x5e\x31\xe5\xda\xe8\xe8\xf4\xf4\x6c\xed\x45\x89\xac\xab\x49\x3e\xce\x23\xb2\xa3\x9e\x5f\x79\xb9\xc6\x23\x0f\xc0\x62\xc6\xa9\x4c\x2b\xaa\x2e\x04\xe8\x21\x93\xb9\x00\x87\x39\xd0\xd2\x8a\xb2\x0b\x9e\x1d\x6d\xa4\x5e\x6b\x66\x31\xad\xa8\xbb\x60\x99\x38\x0c\x18\x1d\x13\x44\x3b\x07\x4d\xdf\x79\x06\x8a\x39\xd6\xde\x5e\x1c\x65\x55\xe1\xcd\xc8\xfa\x0b\xaa\x4c\x5d\x4f\xe0\xd9\xdc\x7c\x7e\xb3\x12\x57\x14\x39\x60\xe4\x54\x72\xa2\x3a\x85\x1b\x84\x98\x61\xea\x87\xee\x17\x79\x42\x77\x0a\xa6\xb6\x39\x2c\x1c\xb6\xed\x69\xf3\xc4\x0c\x97\xd1\xf0\x04\xc1\xb4\x71\xf9\x46\xe3\xb0\x68\xa6\x38\x3b\x51\x85\x8e\xcb\x0f\x3d\x39\x8c\x5c\xbe\x4b\x20\xcf\x71\x0c\xaf\x96\xac\xf2\xea\x5e\x3b\xaa\xa0\xab\x18\x00\xa3\xf6\x1c\x92\x9f\xc7\x66\x20\x74\x12\x87\xf7\x82\xb6\xc1\xd3\x95\x1c\x90\x5c\x8b\x15\x10\xbb\xc4\xb3\x80\xf1\x86\xf5\x63\xe0\x66\x6b\x71\x0e\xf7\x6f\x71\x6c\x55\x15\x8f\x9a\x2b\x96\x1a\xa3\x5f\xc4\xd5\xed\xbc\xe8\xc2\xa5\x5e\x99\x32\x08\x0a\xd1\x57\x33\xc5\x43\xa3\x44\xa2\xe8\xa5\x38\x6b\xcf\x17\xd1\x4e\x89\x0c\x35\x42\x66\xce\x06\xc9\x88\xaf\x2e\xc5\xf2\x53\x8a\xe8\xda\xc6\x5b\xf2\x7d\x7e\xff\xde\x87\x1e\x75\xe8\xbe\xfb\xed\xbb\xee\xb5\xae\x75\xad\xff\x7f\x00\x00\x00\xff\xff\x58\x17\xbe\xdb\xc4\x0f\x10\x00"); +func AssetNames ()[]string {_ceda :=make ([]string ,0,len (_cd ));for _ff :=range _cd {_ceda =append (_ceda ,_ff );};return _ceda ;};func (_cfg bindataFileInfo )ModTime ()_ef .Time {return _cfg ._cf }; \ No newline at end of file diff --git a/model/internal/docutil/docutil.go b/model/internal/docutil/docutil.go index 2a504cc29..48cd6b15c 100644 --- a/model/internal/docutil/docutil.go +++ b/model/internal/docutil/docutil.go @@ -9,45 +9,46 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package docutil ;import (_d "errors";_c "fmt";_e "github.com/unidoc/unipdf/v3/common";_cg "github.com/unidoc/unipdf/v3/core";);func (_ggf *Catalog )NewOutputIntents ()*OutputIntents {return &OutputIntents {_cga :_ggf ._gc }};func (_cgf *Catalog )GetMetadata ()(*_cg .PdfObjectStream ,bool ){_gf ,_ga :=_cg .GetStream (_cgf .Object .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061")); -return _gf ,_ga ;};type Image struct{Name string ;Width int ;Height int ;Colorspace _cg .PdfObjectName ;ColorComponents int ;BitsPerComponent int ;SMask *ImageSMask ;Stream *_cg .PdfObjectStream ;};func (_cb *OutputIntents )Get (i int )(OutputIntent ,bool ){if _cb ._eg ==nil {return OutputIntent {},false ; -};if i >=_cb ._eg .Len (){return OutputIntent {},false ;};_gce :=_cb ._eg .Get (i );_daf ,_af :=_cg .GetIndirect (_gce );if !_af {_gac ,_bde :=_cg .GetDict (_gce );return OutputIntent {Object :_gac },_bde ;};_feb ,_bef :=_cg .GetDict (_daf .PdfObject ); -return OutputIntent {Object :_feb },_bef ;};func (_bdg Page )GetResourcesXObject ()(*_cg .PdfObjectDictionary ,bool ){_df ,_dcb :=_bdg .GetResources ();if !_dcb {return nil ,false ;};return _cg .GetDict (_df .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074")); -};func (_eb Page )GetContents ()([]Content ,bool ){_abg ,_ed :=_cg .GetArray (_eb .Object .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if !_ed {_agb ,_aegd :=_cg .GetStream (_eb .Object .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073")); -if !_aegd {return nil ,false ;};return []Content {{Stream :_agb ,_ff :_eb ,_ddc :0}},true ;};_fge :=make ([]Content ,_abg .Len ());for _ggc ,_eee :=range _abg .Elements (){_febb ,_gcb :=_cg .GetStream (_eee );if !_gcb {continue ;};_fge [_ggc ]=Content {Stream :_febb ,_ff :_eb ,_ddc :_ggc }; -};return _fge ,true ;};type OutputIntent struct{Object *_cg .PdfObjectDictionary ;};func (_faa *OutputIntents )Len ()int {return _faa ._eg .Len ()};func (_gad *Document )AddIndirectObject (indirect *_cg .PdfIndirectObject ){for _ ,_bae :=range _gad .Objects {if _bae ==indirect {return ; -};};_gad .Objects =append (_gad .Objects ,indirect );};func (_egb Page )GetResources ()(*_cg .PdfObjectDictionary ,bool ){return _cg .GetDict (_egb .Object .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s"));};func (_gg *Catalog )HasMetadata ()bool {_fe :=_gg .Object .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"); -return _fe !=nil ;};func (_gcc *Catalog )SetMetadata (data []byte )error {_bbg ,_fc :=_cg .MakeStream (data ,nil );if _fc !=nil {return _fc ;};_bbg .Set ("\u0054\u0079\u0070\u0065",_cg .MakeName ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"));_bbg .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_cg .MakeName ("\u0058\u004d\u004c")); -_gcc .Object .Set ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_bbg );_gcc ._gc .Objects =append (_gcc ._gc .Objects ,_bbg );return nil ;};func (_aea Content )GetData ()([]byte ,error ){_aabg ,_ded :=_cg .NewEncoderFromStream (_aea .Stream );if _ded !=nil {return nil ,_ded ; -};_gfc ,_ded :=_aabg .DecodeStream (_aea .Stream );if _ded !=nil {return nil ,_ded ;};return _gfc ,nil ;};type OutputIntents struct{_eg *_cg .PdfObjectArray ;_cga *Document ;_fdg *_cg .PdfIndirectObject ;};func _gceb (_afc _cg .PdfObject )(_cg .PdfObjectName ,error ){var _bf *_cg .PdfObjectName ; -var _begc *_cg .PdfObjectArray ;if _ab ,_gec :=_afc .(*_cg .PdfIndirectObject );_gec {if _agf ,_bac :=_ab .PdfObject .(*_cg .PdfObjectArray );_bac {_begc =_agf ;}else if _ca ,_fde :=_ab .PdfObject .(*_cg .PdfObjectName );_fde {_bf =_ca ;};}else if _cae ,_dbd :=_afc .(*_cg .PdfObjectArray ); -_dbd {_begc =_cae ;}else if _afg ,_baeg :=_afc .(*_cg .PdfObjectName );_baeg {_bf =_afg ;};if _bf !=nil {switch *_bf {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return *_bf ,nil ; -case "\u0050a\u0074\u0074\u0065\u0072\u006e":return *_bf ,nil ;};};if _begc !=nil &&_begc .Len ()> 0{if _ae ,_dgc :=_begc .Get (0).(*_cg .PdfObjectName );_dgc {switch *_ae {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":if _begc .Len ()==1{return *_ae ,nil ; -};case "\u0043a\u006c\u0047\u0072\u0061\u0079","\u0043\u0061\u006c\u0052\u0047\u0042","\u004c\u0061\u0062":return *_ae ,nil ;case "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064","\u0050a\u0074\u0074\u0065\u0072\u006e","\u0049n\u0064\u0065\u0078\u0065\u0064":return *_ae ,nil ; -case "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e","\u0044e\u0076\u0069\u0063\u0065\u004e":return *_ae ,nil ;};};};return "",nil ;};func (_acg *Document )FindCatalog ()(*Catalog ,bool ){var _ag *_cg .PdfObjectDictionary ;for _ ,_bbed :=range _acg .Objects {_dcf ,_bg :=_cg .GetDict (_bbed ); -if !_bg {continue ;};if _dba ,_cgad :=_cg .GetName (_dcf .Get ("\u0054\u0079\u0070\u0065"));_cgad &&*_dba =="\u0043a\u0074\u0061\u006c\u006f\u0067"{_ag =_dcf ;break ;};};if _ag ==nil {return nil ,false ;};return &Catalog {Object :_ag ,_gc :_acg },true ; -};func (_egbf *Content )SetData (data []byte )error {_ffd ,_dggb :=_cg .MakeStream (data ,_cg .NewFlateEncoder ());if _dggb !=nil {return _dggb ;};_gecd ,_eff :=_cg .GetArray (_egbf ._ff .Object .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073")); -if !_eff &&_egbf ._ddc ==0{_egbf ._ff .Object .Set ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_ffd );}else {if _dggb =_gecd .Set (_egbf ._ddc ,_ffd );_dggb !=nil {return _dggb ;};};_egbf ._ff ._aeg .Objects =append (_egbf ._ff ._aeg .Objects ,_ffd ); -return nil ;};func (_fgc *Page )Number ()int {return _fgc ._gab };type Page struct{_gab int ;Object *_cg .PdfObjectDictionary ;_aeg *Document ;};func (_de *Catalog )SetVersion (){_de .Object .Set ("\u0056e\u0072\u0073\u0069\u006f\u006e",_cg .MakeName (_c .Sprintf ("\u0025\u0064\u002e%\u0064",_de ._gc .Version .Major ,_de ._gc .Version .Minor ))); -};func (_a *Catalog )SetOutputIntents (outputIntents *OutputIntents ){if _fd :=_a .Object .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073");_fd !=nil {for _feg ,_gbb :=range _a ._gc .Objects {if _gbb ==_fd {if outputIntents ._fdg ==_fd {return ; -};_a ._gc .Objects =append (_a ._gc .Objects [:_feg ],_a ._gc .Objects [_feg +1:]...);break ;};};};_dc :=outputIntents ._fdg ;if _dc ==nil {_dc =_cg .MakeIndirectObject (outputIntents ._eg );};_a .Object .Set ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073",_dc ); -_a ._gc .Objects =append (_a ._gc .Objects ,_dc );};func (_b *Catalog )GetPages ()([]Page ,bool ){_ec ,_f :=_cg .GetDict (_b .Object .Get ("\u0050\u0061\u0067e\u0073"));if !_f {return nil ,false ;};_cc ,_fa :=_cg .GetArray (_ec .Get ("\u004b\u0069\u0064\u0073")); -if !_fa {return nil ,false ;};_deg :=make ([]Page ,_cc .Len ());for _bb ,_dg :=range _cc .Elements (){_cd ,_da :=_cg .GetDict (_dg );if !_da {continue ;};_deg [_bb ]=Page {Object :_cd ,_gab :_bb +1,_aeg :_b ._gc };};return _deg ,true ;};func (_fcd Page )FindXObjectForms ()[]*_cg .PdfObjectStream {_gged ,_dce :=_fcd .GetResourcesXObject (); -if !_dce {return nil ;};_fdeg :=map[*_cg .PdfObjectStream ]struct{}{};var _gga func (_egc *_cg .PdfObjectDictionary ,_aba map[*_cg .PdfObjectStream ]struct{});_gga =func (_bcd *_cg .PdfObjectDictionary ,_bff map[*_cg .PdfObjectStream ]struct{}){for _ ,_gadd :=range _bcd .Keys (){_fad ,_gacdg :=_cg .GetStream (_bcd .Get (_gadd )); -if !_gacdg {continue ;};if _ ,_bdde :=_bff [_fad ];_bdde {continue ;};_cbc ,_dae :=_cg .GetName (_fad .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_dae ||_cbc .String ()!="\u0046\u006f\u0072\u006d"{continue ;};_bff [_fad ]=struct{}{};_ecc ,_dae :=_cg .GetDict (_fad .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); -if !_dae {continue ;};_bad ,_acga :=_cg .GetDict (_ecc .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074"));if _acga {_gga (_bad ,_bff );};};};_gga (_gged ,_fdeg );var _efe []*_cg .PdfObjectStream ;for _gd :=range _fdeg {_efe =append (_efe ,_gd );};return _efe ; -};func (_gb *Catalog )SetMarkInfo (mi _cg .PdfObject ){_ee :=_cg .MakeIndirectObject (mi );_gb .Object .Set ("\u004d\u0061\u0072\u006b\u0049\u006e\u0066\u006f",_ee );_gb ._gc .Objects =append (_gb ._gc .Objects ,_ee );};func (_bd *Catalog )GetMarkInfo ()(*_cg .PdfObjectDictionary ,bool ){_be ,_ecd :=_cg .GetDict (_bd .Object .Get ("\u004d\u0061\u0072\u006b\u0049\u006e\u0066\u006f")); -return _be ,_ecd ;};func (_ge *Document )GetPages ()([]Page ,bool ){_fgb ,_bc :=_ge .FindCatalog ();if !_bc {return nil ,false ;};return _fgb .GetPages ();};type Catalog struct{Object *_cg .PdfObjectDictionary ;_gc *Document ;};func (_ccd *Catalog )GetOutputIntents ()(*OutputIntents ,bool ){_bbe :=_ccd .Object .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073"); -if _bbe ==nil {return nil ,false ;};_dd ,_eec :=_cg .GetIndirect (_bbe );if !_eec {return nil ,false ;};_fg ,_ac :=_cg .GetArray (_dd .PdfObject );if !_ac {return nil ,false ;};return &OutputIntents {_fdg :_dd ,_eg :_fg ,_cga :_ccd ._gc },true ;};type Content struct{Stream *_cg .PdfObjectStream ; -_ddc int ;_ff Page ;};func (_bcf Page )FindXObjectImages ()([]*Image ,error ){_bdbe ,_egf :=_bcf .GetResourcesXObject ();if !_egf {return nil ,nil ;};var _cac []*Image ;var _bdec error ;_gcd :=map[*_cg .PdfObjectStream ]int {};_gacd :=map[*_cg .PdfObjectStream ]struct{}{}; -var _agfc int ;for _ ,_dbdd :=range _bdbe .Keys (){_fag ,_cde :=_cg .GetStream (_bdbe .Get (_dbdd ));if !_cde {continue ;};if _ ,_cf :=_gcd [_fag ];_cf {continue ;};_cbf ,_fea :=_cg .GetName (_fag .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_fea ||_cbf .String ()!="\u0049\u006d\u0061g\u0065"{continue ; -};_fb :=Image {BitsPerComponent :8,Stream :_fag ,Name :string (_dbdd )};if _fb .Colorspace ,_bdec =_gceb (_fag .PdfObjectDictionary .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"));_bdec !=nil {_e .Log .Error ("\u0045\u0072\u0072\u006f\u0072\u0020\u0064\u0065\u0074\u0065r\u006d\u0069\u006e\u0065\u0020\u0063\u006fl\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0025\u0073",_bdec ); -continue ;};if _eeec ,_dfe :=_cg .GetIntVal (_fag .PdfObjectDictionary .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));_dfe {_fb .BitsPerComponent =_eeec ;};if _gge ,_bgc :=_cg .GetIntVal (_fag .PdfObjectDictionary .Get ("\u0057\u0069\u0064t\u0068")); -_bgc {_fb .Width =_gge ;};if _gccg ,_agg :=_cg .GetIntVal (_fag .PdfObjectDictionary .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_agg {_fb .Height =_gccg ;};if _def ,_aa :=_cg .GetStream (_fag .Get ("\u0053\u004d\u0061s\u006b"));_aa {_fb .SMask =&ImageSMask {Image :&_fb ,Stream :_def }; -_gacd [_def ]=struct{}{};};switch _fb .Colorspace {case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_fb .ColorComponents =3;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_fb .ColorComponents =1;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_fb .ColorComponents =4; -default:_fb .ColorComponents =-1;};_gcd [_fag ]=_agfc ;_cac =append (_cac ,&_fb );_agfc ++;};var _cgb []int ;for _ ,_baef :=range _cac {if _baef .SMask !=nil {_gfg ,_ebbc :=_gcd [_baef .SMask .Stream ];if _ebbc {_cgb =append (_cgb ,_gfg );};};};_bfb :=make ([]*Image ,len (_cac )-len (_cgb )); -_agfc =0;_dbac :for _ea ,_faf :=range _cac {for _ ,_bdd :=range _cgb {if _ea ==_bdd {continue _dbac ;};};_bfb [_agfc ]=_faf ;_agfc ++;};return _cac ,nil ;};func (_bdb *Document )AddStream (stream *_cg .PdfObjectStream ){for _ ,_ecf :=range _bdb .Objects {if _ecf ==stream {return ; -};};_bdb .Objects =append (_bdb .Objects ,stream );};type ImageSMask struct{Image *Image ;Stream *_cg .PdfObjectStream ;};type Document struct{ID [2]string ;Version _cg .Version ;Objects []_cg .PdfObject ;Info _cg .PdfObject ;Crypt *_cg .PdfCrypt ;UseHashBasedID bool ; -};func (_bdc *OutputIntents )Add (oi _cg .PdfObject )error {_cgc ,_fdb :=oi .(*_cg .PdfObjectDictionary );if !_fdb {return _d .New ("\u0069\u006e\u0070\u0075\u0074\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0069\u006e\u0074\u0065\u006et\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u0061\u006e\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};if _db ,_ef :=_cg .GetStream (_cgc .Get ("\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072o\u0066\u0069\u006c\u0065"));_ef {_bdc ._cga .Objects =append (_bdc ._cga .Objects ,_db );};_ba ,_baf :=oi .(*_cg .PdfIndirectObject );if !_baf {_ba =_cg .MakeIndirectObject (oi ); -};if _bdc ._eg ==nil {_bdc ._eg =_cg .MakeArray (_ba );}else {_bdc ._eg .Append (_ba );};_bdc ._cga .Objects =append (_bdc ._cga .Objects ,_ba );return nil ;}; \ No newline at end of file +package docutil ;import (_c "errors";_d "fmt";_e "github.com/unidoc/unipdf/v3/common";_da "github.com/unidoc/unipdf/v3/core";);func (_ddee Page )GetResources ()(*_da .PdfObjectDictionary ,bool ){return _da .GetDict (_ddee .Object .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); +};type OutputIntent struct{Object *_da .PdfObjectDictionary ;};func (_fde *Catalog )SetMarkInfo (mi _da .PdfObject ){_eg :=_da .MakeIndirectObject (mi );_fde .Object .Set ("\u004d\u0061\u0072\u006b\u0049\u006e\u0066\u006f",_eg );_fde ._f .Objects =append (_fde ._f .Objects ,_eg ); +};func (_aed *OutputIntents )Get (i int )(OutputIntent ,bool ){if _aed ._aea ==nil {return OutputIntent {},false ;};if i >=_aed ._aea .Len (){return OutputIntent {},false ;};_db :=_aed ._aea .Get (i );_bae ,_gec :=_da .GetIndirect (_db );if !_gec {_dab ,_gee :=_da .GetDict (_db ); +return OutputIntent {Object :_dab },_gee ;};_dde ,_ege :=_da .GetDict (_bae .PdfObject );return OutputIntent {Object :_dde },_ege ;};func (_de *Page )Number ()int {return _de ._aeb };func (_ae *Catalog )NewOutputIntents ()*OutputIntents {return &OutputIntents {_egb :_ae ._f }}; +func (_cb *Catalog )GetMetadata ()(*_da .PdfObjectStream ,bool ){_af ,_aff :=_da .GetStream (_cb .Object .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"));return _af ,_aff ;};func _ab (_bd _da .PdfObject )(_da .PdfObjectName ,error ){var _ee *_da .PdfObjectName ; +var _bdd *_da .PdfObjectArray ;if _cba ,_dbg :=_bd .(*_da .PdfIndirectObject );_dbg {if _cbe ,_gf :=_cba .PdfObject .(*_da .PdfObjectArray );_gf {_bdd =_cbe ;}else if _ffd ,_ebe :=_cba .PdfObject .(*_da .PdfObjectName );_ebe {_ee =_ffd ;};}else if _eaa ,_gd :=_bd .(*_da .PdfObjectArray ); +_gd {_bdd =_eaa ;}else if _dbge ,_cag :=_bd .(*_da .PdfObjectName );_cag {_ee =_dbge ;};if _ee !=nil {switch *_ee {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return *_ee ,nil ; +case "\u0050a\u0074\u0074\u0065\u0072\u006e":return *_ee ,nil ;};};if _bdd !=nil &&_bdd .Len ()> 0{if _bec ,_cgf :=_bdd .Get (0).(*_da .PdfObjectName );_cgf {switch *_bec {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":if _bdd .Len ()==1{return *_bec ,nil ; +};case "\u0043a\u006c\u0047\u0072\u0061\u0079","\u0043\u0061\u006c\u0052\u0047\u0042","\u004c\u0061\u0062":return *_bec ,nil ;case "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064","\u0050a\u0074\u0074\u0065\u0072\u006e","\u0049n\u0064\u0065\u0078\u0065\u0064":return *_bec ,nil ; +case "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e","\u0044e\u0076\u0069\u0063\u0065\u004e":return *_bec ,nil ;};};};return "",nil ;};func (_ad *Catalog )HasMetadata ()bool {_ceg :=_ad .Object .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"); +return _ceg !=nil ;};type Document struct{ID [2]string ;Version _da .Version ;Objects []_da .PdfObject ;Info _da .PdfObject ;Crypt *_da .PdfCrypt ;UseHashBasedID bool ;};type Catalog struct{Object *_da .PdfObjectDictionary ;_f *Document ;};func (_ec *Catalog )SetMetadata (data []byte )error {_fd ,_ag :=_da .MakeStream (data ,nil ); +if _ag !=nil {return _ag ;};_fd .Set ("\u0054\u0079\u0070\u0065",_da .MakeName ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"));_fd .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_da .MakeName ("\u0058\u004d\u004c"));_ec .Object .Set ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_fd ); +_ec ._f .Objects =append (_ec ._f .Objects ,_fd );return nil ;};type ImageSMask struct{Image *Image ;Stream *_da .PdfObjectStream ;};func (_g *Catalog )SetVersion (){_g .Object .Set ("\u0056e\u0072\u0073\u0069\u006f\u006e",_da .MakeName (_d .Sprintf ("\u0025\u0064\u002e%\u0064",_g ._f .Version .Major ,_g ._f .Version .Minor ))); +};func (_df Page )GetContents ()([]Content ,bool ){_geeb ,_ebee :=_da .GetArray (_df .Object .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if !_ebee {_cge ,_baeg :=_da .GetStream (_df .Object .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073")); +if !_baeg {return nil ,false ;};return []Content {{Stream :_cge ,_bf :_df ,_ddf :0}},true ;};_dbe :=make ([]Content ,_geeb .Len ());for _eba ,_ccc :=range _geeb .Elements (){_dgg ,_dfc :=_da .GetStream (_ccc );if !_dfc {continue ;};_dbe [_eba ]=Content {Stream :_dgg ,_bf :_df ,_ddf :_eba }; +};return _dbe ,true ;};func (_b *Catalog )GetPages ()([]Page ,bool ){_ac ,_ef :=_da .GetDict (_b .Object .Get ("\u0050\u0061\u0067e\u0073"));if !_ef {return nil ,false ;};_ce ,_ba :=_da .GetArray (_ac .Get ("\u004b\u0069\u0064\u0073"));if !_ba {return nil ,false ; +};_fc :=make ([]Page ,_ce .Len ());for _gg ,_gc :=range _ce .Elements (){_eb ,_cg :=_da .GetDict (_gc );if !_cg {continue ;};_fc [_gg ]=Page {Object :_eb ,_aeb :_gg +1,_gfb :_b ._f };};return _fc ,true ;};func (_bac *Document )GetPages ()([]Page ,bool ){_dcf ,_beb :=_bac .FindCatalog (); +if !_beb {return nil ,false ;};return _dcf .GetPages ();};func (_cgd Content )GetData ()([]byte ,error ){_afeb ,_cad :=_da .NewEncoderFromStream (_cgd .Stream );if _cad !=nil {return nil ,_cad ;};_bee ,_cad :=_afeb .DecodeStream (_cgd .Stream );if _cad !=nil {return nil ,_cad ; +};return _bee ,nil ;};type Content struct{Stream *_da .PdfObjectStream ;_ddf int ;_bf Page ;};func (_fdf Page )GetResourcesXObject ()(*_da .PdfObjectDictionary ,bool ){_bba ,_cdcc :=_fdf .GetResources ();if !_cdcc {return nil ,false ;};return _da .GetDict (_bba .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074")); +};func (_ca *Catalog )GetOutputIntents ()(*OutputIntents ,bool ){_dc :=_ca .Object .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073");if _dc ==nil {return nil ,false ;};_ge ,_cea :=_da .GetIndirect (_dc );if !_cea {return nil ,false ; +};_dac ,_fff :=_da .GetArray (_ge .PdfObject );if !_fff {return nil ,false ;};return &OutputIntents {_fcb :_ge ,_aea :_dac ,_egb :_ca ._f },true ;};type OutputIntents struct{_aea *_da .PdfObjectArray ;_egb *Document ;_fcb *_da .PdfIndirectObject ;};func (_agd *Document )FindCatalog ()(*Catalog ,bool ){var _ebg *_da .PdfObjectDictionary ; +for _ ,_gce :=range _agd .Objects {_acg ,_bag :=_da .GetDict (_gce );if !_bag {continue ;};if _fdg ,_aca :=_da .GetName (_acg .Get ("\u0054\u0079\u0070\u0065"));_aca &&*_fdg =="\u0043a\u0074\u0061\u006c\u006f\u0067"{_ebg =_acg ;break ;};};if _ebg ==nil {return nil ,false ; +};return &Catalog {Object :_ebg ,_f :_agd },true ;};func (_dcd *OutputIntents )Len ()int {return _dcd ._aea .Len ()};func (_afc *Content )SetData (data []byte )error {_bef ,_efc :=_da .MakeStream (data ,_da .NewFlateEncoder ());if _efc !=nil {return _efc ; +};_ccd ,_bgd :=_da .GetArray (_afc ._bf .Object .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if !_bgd &&_afc ._ddf ==0{_afc ._bf .Object .Set ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_bef );}else {if _efc =_ccd .Set (_afc ._ddf ,_bef ); +_efc !=nil {return _efc ;};};_afc ._bf ._gfb .Objects =append (_afc ._bf ._gfb .Objects ,_bef );return nil ;};type Image struct{Name string ;Width int ;Height int ;Colorspace _da .PdfObjectName ;ColorComponents int ;BitsPerComponent int ;SMask *ImageSMask ; +Stream *_da .PdfObjectStream ;};func (_agf Page )FindXObjectImages ()([]*Image ,error ){_aaab ,_dbf :=_agf .GetResourcesXObject ();if !_dbf {return nil ,nil ;};var _eaaa []*Image ;var _bc error ;_dgb :=map[*_da .PdfObjectStream ]int {};_eae :=map[*_da .PdfObjectStream ]struct{}{}; +var _cac int ;for _ ,_ggg :=range _aaab .Keys (){_dad ,_agb :=_da .GetStream (_aaab .Get (_ggg ));if !_agb {continue ;};if _ ,_dadf :=_dgb [_dad ];_dadf {continue ;};_acd ,_cf :=_da .GetName (_dad .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_cf ||_acd .String ()!="\u0049\u006d\u0061g\u0065"{continue ; +};_dba :=Image {BitsPerComponent :8,Stream :_dad ,Name :string (_ggg )};if _dba .Colorspace ,_bc =_ab (_dad .PdfObjectDictionary .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"));_bc !=nil {_e .Log .Error ("\u0045\u0072\u0072\u006f\u0072\u0020\u0064\u0065\u0074\u0065r\u006d\u0069\u006e\u0065\u0020\u0063\u006fl\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0025\u0073",_bc ); +continue ;};if _cfa ,_bg :=_da .GetIntVal (_dad .PdfObjectDictionary .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));_bg {_dba .BitsPerComponent =_cfa ;};if _cef ,_efd :=_da .GetIntVal (_dad .PdfObjectDictionary .Get ("\u0057\u0069\u0064t\u0068")); +_efd {_dba .Width =_cef ;};if _dbfb ,_afe :=_da .GetIntVal (_dad .PdfObjectDictionary .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_afe {_dba .Height =_dbfb ;};if _dga ,_dfg :=_da .GetStream (_dad .Get ("\u0053\u004d\u0061s\u006b"));_dfg {_dba .SMask =&ImageSMask {Image :&_dba ,Stream :_dga }; +_eae [_dga ]=struct{}{};};switch _dba .Colorspace {case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_dba .ColorComponents =3;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_dba .ColorComponents =1;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_dba .ColorComponents =4; +default:_dba .ColorComponents =-1;};_dgb [_dad ]=_cac ;_eaaa =append (_eaaa ,&_dba );_cac ++;};var _cca []int ;for _ ,_gdd :=range _eaaa {if _gdd .SMask !=nil {_cfb ,_affg :=_dgb [_gdd .SMask .Stream ];if _affg {_cca =append (_cca ,_cfb );};};};_ceb :=make ([]*Image ,len (_eaaa )-len (_cca )); +_cac =0;_fda :for _ed ,_cab :=range _eaaa {for _ ,_ecc :=range _cca {if _ed ==_ecc {continue _fda ;};};_ceb [_cac ]=_cab ;_cac ++;};return _eaaa ,nil ;};type Page struct{_aeb int ;Object *_da .PdfObjectDictionary ;_gfb *Document ;};func (_fffb *OutputIntents )Add (oi _da .PdfObject )error {_ea ,_be :=oi .(*_da .PdfObjectDictionary ); +if !_be {return _c .New ("\u0069\u006e\u0070\u0075\u0074\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0069\u006e\u0074\u0065\u006et\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u0061\u006e\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};if _ead ,_fg :=_da .GetStream (_ea .Get ("\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072o\u0066\u0069\u006c\u0065"));_fg {_fffb ._egb .Objects =append (_fffb ._egb .Objects ,_ead );};_aaa ,_cc :=oi .(*_da .PdfIndirectObject ); +if !_cc {_aaa =_da .MakeIndirectObject (oi );};if _fffb ._aea ==nil {_fffb ._aea =_da .MakeArray (_aaa );}else {_fffb ._aea .Append (_aaa );};_fffb ._egb .Objects =append (_fffb ._egb .Objects ,_aaa );return nil ;};func (_ff *Catalog )GetMarkInfo ()(*_da .PdfObjectDictionary ,bool ){_cd ,_cgb :=_da .GetDict (_ff .Object .Get ("\u004d\u0061\u0072\u006b\u0049\u006e\u0066\u006f")); +return _cd ,_cgb ;};func (_dd *Catalog )SetOutputIntents (outputIntents *OutputIntents ){if _cdc :=_dd .Object .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073");_cdc !=nil {for _bb ,_aga :=range _dd ._f .Objects {if _aga ==_cdc {if outputIntents ._fcb ==_cdc {return ; +};_dd ._f .Objects =append (_dd ._f .Objects [:_bb ],_dd ._f .Objects [_bb +1:]...);break ;};};};_aa :=outputIntents ._fcb ;if _aa ==nil {_aa =_da .MakeIndirectObject (outputIntents ._aea );};_dd .Object .Set ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073",_aa ); +_dd ._f .Objects =append (_dd ._f .Objects ,_aa );};func (_cdb Page )FindXObjectForms ()[]*_da .PdfObjectStream {_fad ,_abd :=_cdb .GetResourcesXObject ();if !_abd {return nil ;};_gaa :=map[*_da .PdfObjectStream ]struct{}{};var _fbd func (_eeg *_da .PdfObjectDictionary ,_bga map[*_da .PdfObjectStream ]struct{}); +_fbd =func (_cfe *_da .PdfObjectDictionary ,_cfc map[*_da .PdfObjectStream ]struct{}){for _ ,_gad :=range _cfe .Keys (){_gag ,_gab :=_da .GetStream (_cfe .Get (_gad ));if !_gab {continue ;};if _ ,_abc :=_cfc [_gag ];_abc {continue ;};_ffa ,_fbb :=_da .GetName (_gag .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_fbb ||_ffa .String ()!="\u0046\u006f\u0072\u006d"{continue ;};_cfc [_gag ]=struct{}{};_cee ,_fbb :=_da .GetDict (_gag .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s"));if !_fbb {continue ;};_abe ,_adf :=_da .GetDict (_cee .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074")); +if _adf {_fbd (_abe ,_cfc );};};};_fbd (_fad ,_gaa );var _cfee []*_da .PdfObjectStream ;for _dcb :=range _gaa {_cfee =append (_cfee ,_dcb );};return _cfee ;};func (_ga *Document )AddIndirectObject (indirect *_da .PdfIndirectObject ){for _ ,_fab :=range _ga .Objects {if _fab ==indirect {return ; +};};_ga .Objects =append (_ga .Objects ,indirect );};func (_dg *Document )AddStream (stream *_da .PdfObjectStream ){for _ ,_ega :=range _dg .Objects {if _ega ==stream {return ;};};_dg .Objects =append (_dg .Objects ,stream );}; \ No newline at end of file diff --git a/model/internal/fonts/fonts.go b/model/internal/fonts/fonts.go index 36a4349a6..eed211e02 100644 --- a/model/internal/fonts/fonts.go +++ b/model/internal/fonts/fonts.go @@ -9,122 +9,124 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package fonts ;import (_fc "bytes";_d "encoding/binary";_fb "errors";_g "fmt";_gcge "github.com/unidoc/unipdf/v3/common";_ed "github.com/unidoc/unipdf/v3/core";_fe "github.com/unidoc/unipdf/v3/internal/cmap";_ad "github.com/unidoc/unipdf/v3/internal/textencoding"; -_e "io";_a "os";_gb "regexp";_gcg "sort";_gc "strings";_ab "sync";);var _bgg =[]rune {'A','Æ','Á','Ă','Â','Ä','À','Ā','Ą','Å','Ã','B','C','Ć','Č','Ç','D','Ď','Đ','∆','E','É','Ě','Ê','Ë','Ė','È','Ē','Ę','Ð','€','F','G','Ğ','Ģ','H','I','Í','Î','Ï','İ','Ì','Ī','Į','J','K','Ķ','L','Ĺ','Ľ','Ļ','Ł','M','N','Ń','Ň','Ņ','Ñ','O','Œ','Ó','Ô','Ö','Ò','Ő','Ō','Ø','Õ','P','Q','R','Ŕ','Ř','Ŗ','S','Ś','Š','Ş','Ș','T','Ť','Ţ','Þ','U','Ú','Û','Ü','Ù','Ű','Ū','Ų','Ů','V','W','X','Y','Ý','Ÿ','Z','Ź','Ž','Ż','a','á','ă','â','´','ä','æ','à','ā','&','ą','å','^','~','*','@','ã','b','\\','|','{','}','[',']','˘','¦','•','c','ć','ˇ','č','ç','¸','¢','ˆ',':',',','\uf6c3','©','¤','d','†','‡','ď','đ','°','¨','÷','$','˙','ı','e','é','ě','ê','ë','ė','è','8','…','ē','—','–','ę','=','ð','!','¡','f','fi','5','fl','ƒ','4','⁄','g','ğ','ģ','ß','`','>','≥','«','»','‹','›','h','˝','-','i','í','î','ï','ì','ī','į','j','k','ķ','l','ĺ','ľ','ļ','<','≤','¬','◊','ł','m','¯','−','µ','×','n','ń','ň','ņ','9','≠','ñ','#','o','ó','ô','ö','œ','˛','ò','ő','ō','1','½','¼','¹','ª','º','ø','õ','p','¶','(',')','∂','%','.','·','‰','+','±','q','?','¿','"','„','“','”','‘','’','‚','\'','r','ŕ','√','ř','ŗ','®','˚','s','ś','š','ş','ș','§',';','7','6','/',' ','£','∑','t','ť','ţ','þ','3','¾','³','˜','™','2','²','u','ú','û','ü','ù','ű','ū','_','ų','ů','v','w','x','y','ý','ÿ','¥','z','ź','ž','ż','0'}; -type RuneCharSafeMap struct{_b map[rune ]CharMetrics ;_bc _ab .RWMutex ;};type Font interface{Encoder ()_ad .TextEncoder ;GetRuneMetrics (_ge rune )(CharMetrics ,bool );};func _gbe (){_eeg =MakeRuneCharSafeMap (len (_bgg ));_acdg =MakeRuneCharSafeMap (len (_bgg )); -for _bee ,_bf :=range _bgg {_eeg .Write (_bf ,CharMetrics {Wx :float64 (_bge [_bee ])});_acdg .Write (_bf ,CharMetrics {Wx :float64 (_fdf [_bee ])});};_efa =_eeg .Copy ();_bcf =_acdg .Copy ();};func _ade ()StdFont {_cge .Do (_gbe );_cgd :=Descriptor {Name :HelveticaObliqueName ,Family :string (HelveticaName ),Weight :FontWeightMedium ,Flags :0x0060,BBox :[4]float64 {-170,-225,1116,931},ItalicAngle :-12,Ascent :718,Descent :-207,CapHeight :718,XHeight :523,StemV :88,StemH :76}; -return NewStdFont (_cgd ,_efa );};func _gdg (){const _cbe =600;_gea =MakeRuneCharSafeMap (len (_bgg ));for _ ,_eec :=range _bgg {_gea .Write (_eec ,CharMetrics {Wx :_cbe });};_bgf =_gea .Copy ();_adcg =_gea .Copy ();_agd =_gea .Copy ();};func IsStdFont (name StdFontName )bool {_ ,_ac :=_gbd .read (name ); -return _ac };type StdFont struct{_efd Descriptor ;_bg *RuneCharSafeMap ;_dc _ad .TextEncoder ;};func _ag ()StdFont {_ce .Do (_gdg );_ggb :=Descriptor {Name :CourierBoldName ,Family :string (CourierName ),Weight :FontWeightBold ,Flags :0x0021,BBox :[4]float64 {-113,-250,749,801},ItalicAngle :0,Ascent :629,Descent :-157,CapHeight :562,XHeight :439,StemV :106,StemH :84}; -return NewStdFont (_ggb ,_bgf );};func NewStdFontWithEncoding (desc Descriptor ,metrics *RuneCharSafeMap ,encoder _ad .TextEncoder )StdFont {var _ebe rune =0xA0;if _ ,_gfd :=metrics .Read (_ebe );!_gfd {_fgf ,_ :=metrics .Read (0x20);metrics .Write (_ebe ,_fgf ); -};return StdFont {_efd :desc ,_bg :metrics ,_dc :encoder };};func _caaa ()StdFont {_adcc .Do (_bgc );_fba :=Descriptor {Name :TimesBoldName ,Family :_fdb ,Weight :FontWeightBold ,Flags :0x0020,BBox :[4]float64 {-168,-218,1000,935},ItalicAngle :0,Ascent :683,Descent :-217,CapHeight :676,XHeight :461,StemV :139,StemH :44}; -return NewStdFont (_fba ,_fcb );};var _bgf *RuneCharSafeMap ;var _bge =[]int16 {667,1000,667,667,667,667,667,667,667,667,667,667,722,722,722,722,722,722,722,612,667,667,667,667,667,667,667,667,667,722,556,611,778,778,778,722,278,278,278,278,278,278,278,278,500,667,667,556,556,556,556,556,833,722,722,722,722,722,778,1000,778,778,778,778,778,778,778,778,667,778,722,722,722,722,667,667,667,667,667,611,611,611,667,722,722,722,722,722,722,722,722,722,667,944,667,667,667,667,611,611,611,611,556,556,556,556,333,556,889,556,556,667,556,556,469,584,389,1015,556,556,278,260,334,334,278,278,333,260,350,500,500,333,500,500,333,556,333,278,278,250,737,556,556,556,556,643,556,400,333,584,556,333,278,556,556,556,556,556,556,556,556,1000,556,1000,556,556,584,556,278,333,278,500,556,500,556,556,167,556,556,556,611,333,584,549,556,556,333,333,556,333,333,222,278,278,278,278,278,222,222,500,500,222,222,299,222,584,549,584,471,222,833,333,584,556,584,556,556,556,556,556,549,556,556,556,556,556,556,944,333,556,556,556,556,834,834,333,370,365,611,556,556,537,333,333,476,889,278,278,1000,584,584,556,556,611,355,333,333,333,222,222,222,191,333,333,453,333,333,737,333,500,500,500,500,500,556,278,556,556,278,278,556,600,278,317,278,556,556,834,333,333,1000,556,333,556,556,556,556,556,556,556,556,556,556,500,722,500,500,500,500,556,500,500,500,500,556}; -var _aaec =[]int16 {722,889,722,722,722,722,722,722,722,722,722,667,667,667,667,667,722,722,722,612,611,611,611,611,611,611,611,611,611,722,500,556,722,722,722,722,333,333,333,333,333,333,333,333,389,722,722,611,611,611,611,611,889,722,722,722,722,722,722,889,722,722,722,722,722,722,722,722,556,722,667,667,667,667,556,556,556,556,556,611,611,611,556,722,722,722,722,722,722,722,722,722,722,944,722,722,722,722,611,611,611,611,444,444,444,444,333,444,667,444,444,778,444,444,469,541,500,921,444,500,278,200,480,480,333,333,333,200,350,444,444,333,444,444,333,500,333,278,250,250,760,500,500,500,500,588,500,400,333,564,500,333,278,444,444,444,444,444,444,444,500,1000,444,1000,500,444,564,500,333,333,333,556,500,556,500,500,167,500,500,500,500,333,564,549,500,500,333,333,500,333,333,278,278,278,278,278,278,278,278,500,500,278,278,344,278,564,549,564,471,278,778,333,564,500,564,500,500,500,500,500,549,500,500,500,500,500,500,722,333,500,500,500,500,750,750,300,276,310,500,500,500,453,333,333,476,833,250,250,1000,564,564,500,444,444,408,444,444,444,333,333,333,180,333,333,453,333,333,760,333,389,389,389,389,389,500,278,500,500,278,250,500,600,278,326,278,500,500,750,300,333,980,500,300,500,500,500,500,500,500,500,500,500,500,500,722,500,500,500,500,500,444,444,444,444,500}; -const (SymbolName =StdFontName ("\u0053\u0079\u006d\u0062\u006f\u006c");ZapfDingbatsName =StdFontName ("\u005a\u0061\u0070f\u0044\u0069\u006e\u0067\u0062\u0061\u0074\u0073"););func NewStdFont (desc Descriptor ,metrics *RuneCharSafeMap )StdFont {return NewStdFontWithEncoding (desc ,metrics ,_ad .NewStandardEncoder ()); -};func (_ca StdFont )Descriptor ()Descriptor {return _ca ._efd };func (_bffc *ttfParser )ParseComponents ()error {if _gfcg :=_bffc .ParseHead ();_gfcg !=nil {return _gfcg ;};if _bbc :=_bffc .ParseHhea ();_bbc !=nil {return _bbc ;};if _daf :=_bffc .ParseMaxp (); -_daf !=nil {return _daf ;};if _cged :=_bffc .ParseHmtx ();_cged !=nil {return _cged ;};if _ ,_acdf :=_bffc ._ege ["\u006e\u0061\u006d\u0065"];_acdf {if _eegf :=_bffc .ParseName ();_eegf !=nil {return _eegf ;};};if _ ,_deeb :=_bffc ._ege ["\u004f\u0053\u002f\u0032"]; -_deeb {if _cgdf :=_bffc .ParseOS2 ();_cgdf !=nil {return _cgdf ;};};if _ ,_edb :=_bffc ._ege ["\u0070\u006f\u0073\u0074"];_edb {if _fbe :=_bffc .ParsePost ();_fbe !=nil {return _fbe ;};};if _ ,_fagb :=_bffc ._ege ["\u0063\u006d\u0061\u0070"];_fagb {if _dce :=_bffc .ParseCmap (); -_dce !=nil {return _dce ;};};return nil ;};var _eeg *RuneCharSafeMap ;func (_aec *ttfParser )ParseHhea ()error {if _gcf :=_aec .Seek ("\u0068\u0068\u0065\u0061");_gcf !=nil {return _gcf ;};_aec .Skip (4+15*2);_aec ._eag =_aec .ReadUShort ();return nil ; -};var _agd *RuneCharSafeMap ;var _gac *RuneCharSafeMap ;type Descriptor struct{Name StdFontName ;Family string ;Weight FontWeight ;Flags uint ;BBox [4]float64 ;ItalicAngle float64 ;Ascent float64 ;Descent float64 ;CapHeight float64 ;XHeight float64 ;StemV float64 ; -StemH float64 ;};func (_fdg *RuneCharSafeMap )Range (f func (_fag rune ,_eeb CharMetrics )(_db bool )){_fdg ._bc .RLock ();defer _fdg ._bc .RUnlock ();for _bb ,_cf :=range _fdg ._b {if f (_bb ,_cf ){break ;};};};var _cge _ab .Once ;var _ Font =StdFont {}; -var _fcb *RuneCharSafeMap ;func (_abc *ttfParser )ParseHmtx ()error {if _acc :=_abc .Seek ("\u0068\u006d\u0074\u0078");_acc !=nil {return _acc ;};_abc ._dee .Widths =make ([]uint16 ,0,8);for _geea :=uint16 (0);_geea < _abc ._eag ;_geea ++{_abc ._dee .Widths =append (_abc ._dee .Widths ,_abc .ReadUShort ()); -_abc .Skip (2);};if _abc ._eag < _abc ._ada &&_abc ._eag > 0{_fbc :=_abc ._dee .Widths [_abc ._eag -1];for _faa :=_abc ._eag ;_faa < _abc ._ada ;_faa ++{_abc ._dee .Widths =append (_abc ._dee .Widths ,_fbc );};};return nil ;};type GID =_ad .GID ;var _adcc _ab .Once ; -func (_fed StdFont )GetMetricsTable ()*RuneCharSafeMap {return _fed ._bg };func MakeRuneCharSafeMap (length int )*RuneCharSafeMap {return &RuneCharSafeMap {_b :make (map[rune ]CharMetrics ,length )};};func init (){RegisterStdFont (CourierName ,_fef ,"\u0043\u006f\u0075\u0072\u0069\u0065\u0072\u0043\u006f\u0075\u0072\u0069e\u0072\u004e\u0065\u0077","\u0043\u006f\u0075\u0072\u0069\u0065\u0072\u004e\u0065\u0077"); -RegisterStdFont (CourierBoldName ,_ag ,"\u0043o\u0075r\u0069\u0065\u0072\u004e\u0065\u0077\u002c\u0042\u006f\u006c\u0064");RegisterStdFont (CourierObliqueName ,_adc ,"\u0043\u006f\u0075\u0072\u0069\u0065\u0072\u004e\u0065\u0077\u002c\u0049t\u0061\u006c\u0069\u0063"); -RegisterStdFont (CourierBoldObliqueName ,_gbb ,"C\u006f\u0075\u0072\u0069er\u004ee\u0077\u002c\u0042\u006f\u006cd\u0049\u0074\u0061\u006c\u0069\u0063");};func (_da *RuneCharSafeMap )Copy ()*RuneCharSafeMap {_fa :=MakeRuneCharSafeMap (_da .Length ());_da .Range (func (_ee rune ,_fg CharMetrics )(_fd bool ){_fa ._b [_ee ]=_fg ; -return false });return _fa ;};type ttfParser struct{_dee TtfType ;_gcd _e .ReadSeeker ;_ege map[string ]uint32 ;_eag uint16 ;_ada uint16 ;};var _fdf =[]int16 {722,1000,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,612,667,667,667,667,667,667,667,667,667,722,556,611,778,778,778,722,278,278,278,278,278,278,278,278,556,722,722,611,611,611,611,611,833,722,722,722,722,722,778,1000,778,778,778,778,778,778,778,778,667,778,722,722,722,722,667,667,667,667,667,611,611,611,667,722,722,722,722,722,722,722,722,722,667,944,667,667,667,667,611,611,611,611,556,556,556,556,333,556,889,556,556,722,556,556,584,584,389,975,556,611,278,280,389,389,333,333,333,280,350,556,556,333,556,556,333,556,333,333,278,250,737,556,611,556,556,743,611,400,333,584,556,333,278,556,556,556,556,556,556,556,556,1000,556,1000,556,556,584,611,333,333,333,611,556,611,556,556,167,611,611,611,611,333,584,549,556,556,333,333,611,333,333,278,278,278,278,278,278,278,278,556,556,278,278,400,278,584,549,584,494,278,889,333,584,611,584,611,611,611,611,556,549,611,556,611,611,611,611,944,333,611,611,611,556,834,834,333,370,365,611,611,611,556,333,333,494,889,278,278,1000,584,584,611,611,611,474,500,500,500,278,278,278,238,389,389,549,389,389,737,333,556,556,556,556,556,556,333,556,556,278,278,556,600,333,389,333,611,556,834,333,333,1000,556,333,611,611,611,611,611,611,611,556,611,611,556,778,556,556,556,556,556,500,500,500,500,556}; -var _cbc =&RuneCharSafeMap {_b :map[rune ]CharMetrics {' ':{Wx :278},'→':{Wx :838},'↔':{Wx :1016},'↕':{Wx :458},'①':{Wx :788},'②':{Wx :788},'③':{Wx :788},'④':{Wx :788},'⑤':{Wx :788},'⑥':{Wx :788},'⑦':{Wx :788},'⑧':{Wx :788},'⑨':{Wx :788},'⑩':{Wx :788},'■':{Wx :761},'▲':{Wx :892},'▼':{Wx :892},'◆':{Wx :788},'●':{Wx :791},'◗':{Wx :438},'★':{Wx :816},'☎':{Wx :719},'☛':{Wx :960},'☞':{Wx :939},'♠':{Wx :626},'♣':{Wx :776},'♥':{Wx :694},'♦':{Wx :595},'✁':{Wx :974},'✂':{Wx :961},'✃':{Wx :974},'✄':{Wx :980},'✆':{Wx :789},'✇':{Wx :790},'✈':{Wx :791},'✉':{Wx :690},'✌':{Wx :549},'✍':{Wx :855},'✎':{Wx :911},'✏':{Wx :933},'✐':{Wx :911},'✑':{Wx :945},'✒':{Wx :974},'✓':{Wx :755},'✔':{Wx :846},'✕':{Wx :762},'✖':{Wx :761},'✗':{Wx :571},'✘':{Wx :677},'✙':{Wx :763},'✚':{Wx :760},'✛':{Wx :759},'✜':{Wx :754},'✝':{Wx :494},'✞':{Wx :552},'✟':{Wx :537},'✠':{Wx :577},'✡':{Wx :692},'✢':{Wx :786},'✣':{Wx :788},'✤':{Wx :788},'✥':{Wx :790},'✦':{Wx :793},'✧':{Wx :794},'✩':{Wx :823},'✪':{Wx :789},'✫':{Wx :841},'✬':{Wx :823},'✭':{Wx :833},'✮':{Wx :816},'✯':{Wx :831},'✰':{Wx :923},'✱':{Wx :744},'✲':{Wx :723},'✳':{Wx :749},'✴':{Wx :790},'✵':{Wx :792},'✶':{Wx :695},'✷':{Wx :776},'✸':{Wx :768},'✹':{Wx :792},'✺':{Wx :759},'✻':{Wx :707},'✼':{Wx :708},'✽':{Wx :682},'✾':{Wx :701},'✿':{Wx :826},'❀':{Wx :815},'❁':{Wx :789},'❂':{Wx :789},'❃':{Wx :707},'❄':{Wx :687},'❅':{Wx :696},'❆':{Wx :689},'❇':{Wx :786},'❈':{Wx :787},'❉':{Wx :713},'❊':{Wx :791},'❋':{Wx :785},'❍':{Wx :873},'❏':{Wx :762},'❐':{Wx :762},'❑':{Wx :759},'❒':{Wx :759},'❖':{Wx :784},'❘':{Wx :138},'❙':{Wx :277},'❚':{Wx :415},'❛':{Wx :392},'❜':{Wx :392},'❝':{Wx :668},'❞':{Wx :668},'❡':{Wx :732},'❢':{Wx :544},'❣':{Wx :544},'❤':{Wx :910},'❥':{Wx :667},'❦':{Wx :760},'❧':{Wx :760},'❶':{Wx :788},'❷':{Wx :788},'❸':{Wx :788},'❹':{Wx :788},'❺':{Wx :788},'❻':{Wx :788},'❼':{Wx :788},'❽':{Wx :788},'❾':{Wx :788},'❿':{Wx :788},'➀':{Wx :788},'➁':{Wx :788},'➂':{Wx :788},'➃':{Wx :788},'➄':{Wx :788},'➅':{Wx :788},'➆':{Wx :788},'➇':{Wx :788},'➈':{Wx :788},'➉':{Wx :788},'➊':{Wx :788},'➋':{Wx :788},'➌':{Wx :788},'➍':{Wx :788},'➎':{Wx :788},'➏':{Wx :788},'➐':{Wx :788},'➑':{Wx :788},'➒':{Wx :788},'➓':{Wx :788},'➔':{Wx :894},'➘':{Wx :748},'➙':{Wx :924},'➚':{Wx :748},'➛':{Wx :918},'➜':{Wx :927},'➝':{Wx :928},'➞':{Wx :928},'➟':{Wx :834},'➠':{Wx :873},'➡':{Wx :828},'➢':{Wx :924},'➣':{Wx :924},'➤':{Wx :917},'➥':{Wx :930},'➦':{Wx :931},'➧':{Wx :463},'➨':{Wx :883},'➩':{Wx :836},'➪':{Wx :836},'➫':{Wx :867},'➬':{Wx :867},'➭':{Wx :696},'➮':{Wx :696},'➯':{Wx :874},'➱':{Wx :874},'➲':{Wx :760},'➳':{Wx :946},'➴':{Wx :771},'➵':{Wx :865},'➶':{Wx :771},'➷':{Wx :888},'➸':{Wx :967},'➹':{Wx :888},'➺':{Wx :831},'➻':{Wx :873},'➼':{Wx :927},'➽':{Wx :970},'➾':{Wx :918},'\uf8d7':{Wx :390},'\uf8d8':{Wx :390},'\uf8d9':{Wx :317},'\uf8da':{Wx :317},'\uf8db':{Wx :276},'\uf8dc':{Wx :276},'\uf8dd':{Wx :509},'\uf8de':{Wx :509},'\uf8df':{Wx :410},'\uf8e0':{Wx :410},'\uf8e1':{Wx :234},'\uf8e2':{Wx :234},'\uf8e3':{Wx :334},'\uf8e4':{Wx :334}}}; -func (_cfd *TtfType )MakeEncoder ()(_ad .SimpleEncoder ,error ){_edga :=make (map[_ad .CharCode ]GlyphName );for _bfg :=_ad .CharCode (0);_bfg <=256;_bfg ++{_ae :=rune (_bfg );_agc ,_gee :=_cfd .Chars [_ae ];if !_gee {continue ;};var _cdd GlyphName ;if int (_agc )>=0&&int (_agc )< len (_cfd .GlyphNames ){_cdd =_cfd .GlyphNames [_agc ]; -}else {_dd :=rune (_agc );if _dde ,_aac :=_ad .RuneToGlyph (_dd );_aac {_cdd =_dde ;};};if _cdd !=""{_edga [_bfg ]=_cdd ;};};if len (_edga )==0{_gcge .Log .Debug ("WA\u0052\u004eI\u004e\u0047\u003a\u0020\u005a\u0065\u0072\u006f\u0020l\u0065\u006e\u0067\u0074\u0068\u0020\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002e\u0020\u0074\u0074\u0066=\u0025s\u0020\u0043\u0068\u0061\u0072\u0073\u003d\u005b%\u00200\u0032\u0078]",_cfd ,_cfd .Chars ); -};return _ad .NewCustomSimpleTextEncoder (_edga ,nil );};func (_acg *ttfParser )ReadUShort ()(_eeeg uint16 ){_d .Read (_acg ._gcd ,_d .BigEndian ,&_eeeg );return _eeeg ;};func _cfc ()StdFont {_cge .Do (_gbe );_agb :=Descriptor {Name :HelveticaBoldName ,Family :string (HelveticaName ),Weight :FontWeightBold ,Flags :0x0020,BBox :[4]float64 {-170,-228,1003,962},ItalicAngle :0,Ascent :718,Descent :-207,CapHeight :718,XHeight :532,StemV :140,StemH :118}; -return NewStdFont (_agb ,_acdg );};var _eaf *RuneCharSafeMap ;var _bcf *RuneCharSafeMap ;func (_abf StdFont )GetRuneMetrics (r rune )(CharMetrics ,bool ){_bde ,_cfe :=_abf ._bg .Read (r );return _bde ,_cfe ;};var _gea *RuneCharSafeMap ;func init (){RegisterStdFont (HelveticaName ,_gge ,"\u0041\u0072\u0069a\u006c"); -RegisterStdFont (HelveticaBoldName ,_cfc ,"\u0041\u0072\u0069\u0061\u006c\u002c\u0042\u006f\u006c\u0064");RegisterStdFont (HelveticaObliqueName ,_ade ,"\u0041\u0072\u0069a\u006c\u002c\u0049\u0074\u0061\u006c\u0069\u0063");RegisterStdFont (HelveticaBoldObliqueName ,_beg ,"\u0041\u0072i\u0061\u006c\u002cB\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063"); -};func _bgc (){_eaf =MakeRuneCharSafeMap (len (_bgg ));_fcb =MakeRuneCharSafeMap (len (_bgg ));_bda =MakeRuneCharSafeMap (len (_bgg ));_gac =MakeRuneCharSafeMap (len (_bgg ));for _bfa ,_deg :=range _bgg {_eaf .Write (_deg ,CharMetrics {Wx :float64 (_aaec [_bfa ])}); -_fcb .Write (_deg ,CharMetrics {Wx :float64 (_aca [_bfa ])});_bda .Write (_deg ,CharMetrics {Wx :float64 (_ceg [_bfa ])});_gac .Write (_deg ,CharMetrics {Wx :float64 (_bdcg [_bfa ])});};};func (_dac *TtfType )MakeToUnicode ()*_fe .CMap {_ba :=make (map[_fe .CharCode ]rune ); -if len (_dac .GlyphNames )==0{for _bff :=range _dac .Chars {_ba [_fe .CharCode (_bff )]=_bff ;};return _fe .NewToUnicodeCMap (_ba );};for _eg ,_eee :=range _dac .Chars {_daa :=_fe .CharCode (_eg );_eab :=_dac .GlyphNames [_eee ];_ced ,_cgda :=_ad .GlyphToRune (_eab ); -if !_cgda {_gcge .Log .Debug ("\u004e\u006f \u0072\u0075\u006e\u0065\u002e\u0020\u0063\u006f\u0064\u0065\u003d\u0030\u0078\u0025\u0030\u0034\u0078\u0020\u0067\u006c\u0079\u0070h=\u0025\u0071",_eg ,_eab );_ced =_ad .MissingCodeRune ;};_ba [_daa ]=_ced ; -};return _fe .NewToUnicodeCMap (_ba );};var _ged =[]GlyphName {"\u002en\u006f\u0074\u0064\u0065\u0066","\u002e\u006e\u0075l\u006c","\u006e\u006fn\u006d\u0061\u0072k\u0069\u006e\u0067\u0072\u0065\u0074\u0075\u0072\u006e","\u0073\u0070\u0061c\u0065","\u0065\u0078\u0063\u006c\u0061\u006d","\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c","\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e","\u0064\u006f\u006c\u006c\u0061\u0072","\u0070e\u0072\u0063\u0065\u006e\u0074","\u0061m\u0070\u0065\u0072\u0073\u0061\u006ed","q\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065","\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t","\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074","\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b","\u0070\u006c\u0075\u0073","\u0063\u006f\u006dm\u0061","\u0068\u0079\u0070\u0068\u0065\u006e","\u0070\u0065\u0072\u0069\u006f\u0064","\u0073\u006c\u0061s\u0068","\u007a\u0065\u0072\u006f","\u006f\u006e\u0065","\u0074\u0077\u006f","\u0074\u0068\u0072e\u0065","\u0066\u006f\u0075\u0072","\u0066\u0069\u0076\u0065","\u0073\u0069\u0078","\u0073\u0065\u0076e\u006e","\u0065\u0069\u0067h\u0074","\u006e\u0069\u006e\u0065","\u0063\u006f\u006co\u006e","\u0073e\u006d\u0069\u0063\u006f\u006c\u006fn","\u006c\u0065\u0073\u0073","\u0065\u0071\u0075a\u006c","\u0067r\u0065\u0061\u0074\u0065\u0072","\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e","\u0061\u0074","\u0041","\u0042","\u0043","\u0044","\u0045","\u0046","\u0047","\u0048","\u0049","\u004a","\u004b","\u004c","\u004d","\u004e","\u004f","\u0050","\u0051","\u0052","\u0053","\u0054","\u0055","\u0056","\u0057","\u0058","\u0059","\u005a","b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074","\u0062a\u0063\u006b\u0073\u006c\u0061\u0073h","\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074","a\u0073\u0063\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006d","\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065","\u0067\u0072\u0061v\u0065","\u0061","\u0062","\u0063","\u0064","\u0065","\u0066","\u0067","\u0068","\u0069","\u006a","\u006b","\u006c","\u006d","\u006e","\u006f","\u0070","\u0071","\u0072","\u0073","\u0074","\u0075","\u0076","\u0077","\u0078","\u0079","\u007a","\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t","\u0062\u0061\u0072","\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074","\u0061\u0073\u0063\u0069\u0069\u0074\u0069\u006c\u0064\u0065","\u0041d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0041\u0072\u0069n\u0067","\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0045\u0061\u0063\u0075\u0074\u0065","\u004e\u0074\u0069\u006c\u0064\u0065","\u004fd\u0069\u0065\u0072\u0065\u0073\u0069s","\u0055d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0061\u0061\u0063\u0075\u0074\u0065","\u0061\u0067\u0072\u0061\u0076\u0065","a\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0061d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0061\u0074\u0069\u006c\u0064\u0065","\u0061\u0072\u0069n\u0067","\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0065\u0061\u0063\u0075\u0074\u0065","\u0065\u0067\u0072\u0061\u0076\u0065","e\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0065d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0069\u0061\u0063\u0075\u0074\u0065","\u0069\u0067\u0072\u0061\u0076\u0065","i\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s","\u006e\u0074\u0069\u006c\u0064\u0065","\u006f\u0061\u0063\u0075\u0074\u0065","\u006f\u0067\u0072\u0061\u0076\u0065","o\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u006fd\u0069\u0065\u0072\u0065\u0073\u0069s","\u006f\u0074\u0069\u006c\u0064\u0065","\u0075\u0061\u0063\u0075\u0074\u0065","\u0075\u0067\u0072\u0061\u0076\u0065","u\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0075d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0064\u0061\u0067\u0067\u0065\u0072","\u0064\u0065\u0067\u0072\u0065\u0065","\u0063\u0065\u006e\u0074","\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067","\u0073e\u0063\u0074\u0069\u006f\u006e","\u0062\u0075\u006c\u006c\u0065\u0074","\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h","\u0067\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073","\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064","\u0063o\u0070\u0079\u0072\u0069\u0067\u0068t","\u0074r\u0061\u0064\u0065\u006d\u0061\u0072k","\u0061\u0063\u0075t\u0065","\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073","\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c","\u0041\u0045","\u004f\u0073\u006c\u0061\u0073\u0068","\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079","\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s","\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l","\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c","\u0079\u0065\u006e","\u006d\u0075","p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066","\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn","\u0070r\u006f\u0064\u0075\u0063\u0074","\u0070\u0069","\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c","o\u0072\u0064\u0066\u0065\u006d\u0069\u006e\u0069\u006e\u0065","\u006f\u0072\u0064m\u0061\u0073\u0063\u0075\u006c\u0069\u006e\u0065","\u004f\u006d\u0065g\u0061","\u0061\u0065","\u006f\u0073\u006c\u0061\u0073\u0068","\u0071\u0075\u0065s\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006e","\u0065\u0078\u0063\u006c\u0061\u006d\u0064\u006f\u0077\u006e","\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074","\u0072a\u0064\u0069\u0063\u0061\u006c","\u0066\u006c\u006f\u0072\u0069\u006e","a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c","\u0044\u0065\u006ct\u0061","\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074\u006c\u0065\u0066\u0074","\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074r\u0069\u0067\u0068\u0074","\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073","\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065","\u0041\u0067\u0072\u0061\u0076\u0065","\u0041\u0074\u0069\u006c\u0064\u0065","\u004f\u0074\u0069\u006c\u0064\u0065","\u004f\u0045","\u006f\u0065","\u0065\u006e\u0064\u0061\u0073\u0068","\u0065\u006d\u0064\u0061\u0073\u0068","\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u006c\u0065\u0066\u0074","\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074","\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t","\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074","\u0064\u0069\u0076\u0069\u0064\u0065","\u006co\u007a\u0065\u006e\u0067\u0065","\u0079d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0059d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e","\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079","\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006c\u006c\u0065\u0066\u0074","\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006cr\u0069\u0067\u0068\u0074","\u0066\u0069","\u0066\u006c","\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l","\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064","\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u0062\u0061\u0073\u0065","\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u0062\u0061\u0073\u0065","p\u0065\u0072\u0074\u0068\u006f\u0075\u0073\u0061\u006e\u0064","A\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","E\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0041\u0061\u0063\u0075\u0074\u0065","\u0045d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0045\u0067\u0072\u0061\u0076\u0065","\u0049\u0061\u0063\u0075\u0074\u0065","I\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0049d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0049\u0067\u0072\u0061\u0076\u0065","\u004f\u0061\u0063\u0075\u0074\u0065","O\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0061\u0070\u0070l\u0065","\u004f\u0067\u0072\u0061\u0076\u0065","\u0055\u0061\u0063\u0075\u0074\u0065","U\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0055\u0067\u0072\u0061\u0076\u0065","\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0069","\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0074\u0069\u006cd\u0065","\u006d\u0061\u0063\u0072\u006f\u006e","\u0062\u0072\u0065v\u0065","\u0064o\u0074\u0061\u0063\u0063\u0065\u006et","\u0072\u0069\u006e\u0067","\u0063e\u0064\u0069\u006c\u006c\u0061","\u0068\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074","\u006f\u0067\u006f\u006e\u0065\u006b","\u0063\u0061\u0072o\u006e","\u004c\u0073\u006c\u0061\u0073\u0068","\u006c\u0073\u006c\u0061\u0073\u0068","\u0053\u0063\u0061\u0072\u006f\u006e","\u0073\u0063\u0061\u0072\u006f\u006e","\u005a\u0063\u0061\u0072\u006f\u006e","\u007a\u0063\u0061\u0072\u006f\u006e","\u0062r\u006f\u006b\u0065\u006e\u0062\u0061r","\u0045\u0074\u0068","\u0065\u0074\u0068","\u0059\u0061\u0063\u0075\u0074\u0065","\u0079\u0061\u0063\u0075\u0074\u0065","\u0054\u0068\u006fr\u006e","\u0074\u0068\u006fr\u006e","\u006d\u0069\u006eu\u0073","\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079","o\u006e\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072","t\u0077\u006f\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072","\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072","\u006fn\u0065\u0068\u0061\u006c\u0066","\u006f\u006e\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072","\u0074\u0068\u0072\u0065\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0073","\u0066\u0072\u0061n\u0063","\u0047\u0062\u0072\u0065\u0076\u0065","\u0067\u0062\u0072\u0065\u0076\u0065","\u0049\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074","\u0053\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0073\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0043\u0061\u0063\u0075\u0074\u0065","\u0063\u0061\u0063\u0075\u0074\u0065","\u0043\u0063\u0061\u0072\u006f\u006e","\u0063\u0063\u0061\u0072\u006f\u006e","\u0064\u0063\u0072\u006f\u0061\u0074"}; -func TtfParse (r _e .ReadSeeker )(TtfType ,error ){_ggee :=&ttfParser {_gcd :r };return _ggee .Parse ()};const (CourierName =StdFontName ("\u0043o\u0075\u0072\u0069\u0065\u0072");CourierBoldName =StdFontName ("\u0043\u006f\u0075r\u0069\u0065\u0072\u002d\u0042\u006f\u006c\u0064"); -CourierObliqueName =StdFontName ("\u0043o\u0075r\u0069\u0065\u0072\u002d\u004f\u0062\u006c\u0069\u0071\u0075\u0065");CourierBoldObliqueName =StdFontName ("\u0043\u006f\u0075\u0072ie\u0072\u002d\u0042\u006f\u006c\u0064\u004f\u0062\u006c\u0069\u0071\u0075\u0065"); -);const (_fdb ="\u0054\u0069\u006de\u0073";TimesRomanName =StdFontName ("T\u0069\u006d\u0065\u0073\u002d\u0052\u006f\u006d\u0061\u006e");TimesBoldName =StdFontName ("\u0054\u0069\u006d\u0065\u0073\u002d\u0042\u006f\u006c\u0064");TimesItalicName =StdFontName ("\u0054\u0069\u006de\u0073\u002d\u0049\u0074\u0061\u006c\u0069\u0063"); -TimesBoldItalicName =StdFontName ("\u0054\u0069m\u0065\u0073\u002dB\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063"););func _eca ()StdFont {_adcc .Do (_bgc );_abd :=Descriptor {Name :TimesRomanName ,Family :_fdb ,Weight :FontWeightRoman ,Flags :0x0020,BBox :[4]float64 {-168,-218,1000,898},ItalicAngle :0,Ascent :683,Descent :-217,CapHeight :662,XHeight :450,StemV :84,StemH :28}; -return NewStdFont (_abd ,_eaf );};func _gbb ()StdFont {_ce .Do (_gdg );_fcc :=Descriptor {Name :CourierBoldObliqueName ,Family :string (CourierName ),Weight :FontWeightBold ,Flags :0x0061,BBox :[4]float64 {-57,-250,869,801},ItalicAngle :-12,Ascent :629,Descent :-157,CapHeight :562,XHeight :439,StemV :106,StemH :84}; -return NewStdFont (_fcc ,_adcg );};func (_cega *ttfParser )readByte ()(_caf uint8 ){_d .Read (_cega ._gcd ,_d .BigEndian ,&_caf );return _caf ;};type StdFontName string ;func (_gca StdFont )Name ()string {return string (_gca ._efd .Name )};func _de ()StdFont {_bbf :=_ad .NewZapfDingbatsEncoder (); -_efab :=Descriptor {Name :ZapfDingbatsName ,Family :string (ZapfDingbatsName ),Weight :FontWeightMedium ,Flags :0x0004,BBox :[4]float64 {-1,-143,981,820},ItalicAngle :0,Ascent :0,Descent :0,CapHeight :0,XHeight :0,StemV :90,StemH :28};return NewStdFontWithEncoding (_efab ,_cbc ,_bbf ); -};func (_dgea *ttfParser )parseCmapFormat0 ()error {_agda ,_add :=_dgea .ReadStr (256);if _add !=nil {return _add ;};_fbg :=[]byte (_agda );_gcge .Log .Trace ("\u0070a\u0072\u0073e\u0043\u006d\u0061p\u0046\u006f\u0072\u006d\u0061\u0074\u0030:\u0020\u0025\u0073\u000a\u0064\u0061t\u0061\u0053\u0074\u0072\u003d\u0025\u002b\u0071\u000a\u0064\u0061t\u0061\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d",_dgea ._dee .String (),_agda ,_fbg ); -for _ccad ,_eceb :=range _fbg {_dgea ._dee .Chars [rune (_ccad )]=GID (_eceb );};return nil ;};func init (){RegisterStdFont (SymbolName ,_bdd ,"\u0053\u0079\u006d\u0062\u006f\u006c\u002c\u0049\u0074\u0061\u006c\u0069\u0063","S\u0079\u006d\u0062\u006f\u006c\u002c\u0042\u006f\u006c\u0064","\u0053\u0079\u006d\u0062\u006f\u006c\u002c\u0042\u006f\u006c\u0064\u0049t\u0061\u006c\u0069\u0063"); -RegisterStdFont (ZapfDingbatsName ,_de );};func (_fcg *RuneCharSafeMap )Read (b rune )(CharMetrics ,bool ){_fcg ._bc .RLock ();defer _fcg ._bc .RUnlock ();_gg ,_fec :=_fcg ._b [b ];return _gg ,_fec ;};func (_decc *ttfParser )Seek (tag string )error {_gbec ,_dged :=_decc ._ege [tag ]; -if !_dged {return _g .Errorf ("\u0074\u0061\u0062\u006ce \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u003a\u0020\u0025\u0073",tag );};_decc ._gcd .Seek (int64 (_gbec ),_e .SeekStart );return nil ;};var _bda *RuneCharSafeMap ;func (_bgee *ttfParser )parseCmapSubtable10 (_aef int64 )error {if _bgee ._dee .Chars ==nil {_bgee ._dee .Chars =make (map[rune ]GID ); -};_bgee ._gcd .Seek (int64 (_bgee ._ege ["\u0063\u006d\u0061\u0070"])+_aef ,_e .SeekStart );var _adfg ,_dbb uint32 ;_efc :=_bgee .ReadUShort ();if _efc < 8{_adfg =uint32 (_bgee .ReadUShort ());_dbb =uint32 (_bgee .ReadUShort ());}else {_bgee .ReadUShort (); -_adfg =_bgee .ReadULong ();_dbb =_bgee .ReadULong ();};_gcge .Log .Trace ("\u0070\u0061r\u0073\u0065\u0043\u006d\u0061p\u0053\u0075\u0062\u0074\u0061b\u006c\u0065\u0031\u0030\u003a\u0020\u0066\u006f\u0072\u006d\u0061\u0074\u003d\u0025\u0064\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003d\u0025\u0064\u0020\u006c\u0061\u006e\u0067\u0075\u0061\u0067\u0065\u003d\u0025\u0064",_efc ,_adfg ,_dbb ); -if _efc !=0{return _fb .New ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006d\u0061p\u0020s\u0075\u0062\u0074\u0061\u0062\u006c\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_cef ,_edgc :=_bgee .ReadStr (256); -if _edgc !=nil {return _edgc ;};_bgcg :=[]byte (_cef );for _ccc ,_baa :=range _bgcg {_bgee ._dee .Chars [rune (_ccc )]=GID (_baa );if _baa !=0{_g .Printf ("\u0009\u0030\u0078\u002502\u0078\u0020\u279e\u0020\u0030\u0078\u0025\u0030\u0032\u0078\u003d\u0025\u0063\u000a",_ccc ,_baa ,rune (_baa )); -};};return nil ;};const (FontWeightMedium FontWeight =iota ;FontWeightBold ;FontWeightRoman ;);func init (){RegisterStdFont (TimesRomanName ,_eca ,"\u0054\u0069\u006d\u0065\u0073\u004e\u0065\u0077\u0052\u006f\u006d\u0061\u006e","\u0054\u0069\u006de\u0073"); -RegisterStdFont (TimesBoldName ,_caaa ,"\u0054i\u006de\u0073\u004e\u0065\u0077\u0052o\u006d\u0061n\u002c\u0042\u006f\u006c\u0064","\u0054\u0069\u006d\u0065\u0073\u002c\u0042\u006f\u006c\u0064");RegisterStdFont (TimesItalicName ,_ga ,"T\u0069m\u0065\u0073\u004e\u0065\u0077\u0052\u006f\u006da\u006e\u002c\u0049\u0074al\u0069\u0063","\u0054\u0069\u006de\u0073\u002c\u0049\u0074\u0061\u006c\u0069\u0063"); -RegisterStdFont (TimesBoldItalicName ,_dec ,"\u0054i\u006d\u0065\u0073\u004e\u0065\u0077\u0052\u006f\u006d\u0061\u006e,\u0042\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063","\u0054\u0069m\u0065\u0073\u002cB\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063"); -};var _adcg *RuneCharSafeMap ;type GlyphName =_ad .GlyphName ;func RegisterStdFont (name StdFontName ,fnc func ()StdFont ,aliases ...StdFontName ){if _ ,_dg :=_gbd .read (name );_dg {panic ("\u0066o\u006e\u0074\u0020\u0061l\u0072\u0065\u0061\u0064\u0079 \u0072e\u0067i\u0073\u0074\u0065\u0072\u0065\u0064\u003a "+string (name )); -};_gbd .write (name ,fnc );for _ ,_bdc :=range aliases {RegisterStdFont (_bdc ,fnc );};};var _aca =[]int16 {722,1000,722,722,722,722,722,722,722,722,722,667,722,722,722,722,722,722,722,612,667,667,667,667,667,667,667,667,667,722,500,611,778,778,778,778,389,389,389,389,389,389,389,389,500,778,778,667,667,667,667,667,944,722,722,722,722,722,778,1000,778,778,778,778,778,778,778,778,611,778,722,722,722,722,556,556,556,556,556,667,667,667,611,722,722,722,722,722,722,722,722,722,722,1000,722,722,722,722,667,667,667,667,500,500,500,500,333,500,722,500,500,833,500,500,581,520,500,930,500,556,278,220,394,394,333,333,333,220,350,444,444,333,444,444,333,500,333,333,250,250,747,500,556,500,500,672,556,400,333,570,500,333,278,444,444,444,444,444,444,444,500,1000,444,1000,500,444,570,500,333,333,333,556,500,556,500,500,167,500,500,500,556,333,570,549,500,500,333,333,556,333,333,278,278,278,278,278,278,278,333,556,556,278,278,394,278,570,549,570,494,278,833,333,570,556,570,556,556,556,556,500,549,556,500,500,500,500,500,722,333,500,500,500,500,750,750,300,300,330,500,500,556,540,333,333,494,1000,250,250,1000,570,570,556,500,500,555,500,500,500,333,333,333,278,444,444,549,444,444,747,333,389,389,389,389,389,500,333,500,500,278,250,500,600,333,416,333,556,500,750,300,333,1000,500,300,556,556,556,556,556,556,556,500,556,556,500,722,500,500,500,500,500,444,444,444,444,500}; -func (_ega *ttfParser )Skip (n int ){_ega ._gcd .Seek (int64 (n ),_e .SeekCurrent )};func (_ec StdFont )Encoder ()_ad .TextEncoder {return _ec ._dc };func (_feb *ttfParser )ReadStr (length int )(string ,error ){_bdda :=make ([]byte ,length );_cfdd ,_dcg :=_feb ._gcd .Read (_bdda ); -if _dcg !=nil {return "",_dcg ;}else if _cfdd !=length {return "",_g .Errorf ("\u0075\u006e\u0061bl\u0065\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0073",length );};return string (_bdda ),nil ;};func NewFontFile2FromPdfObject (obj _ed .PdfObject )(TtfType ,error ){obj =_ed .TraceToDirectObject (obj ); -_bgd ,_afc :=obj .(*_ed .PdfObjectStream );if !_afc {_gcge .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0032\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u0061\u0020\u0073\u0074\u0072e\u0061\u006d \u0028\u0025\u0054\u0029",obj ); -return TtfType {},_ed .ErrTypeError ;};_bbg ,_bea :=_ed .DecodeStream (_bgd );if _bea !=nil {return TtfType {},_bea ;};_dcd :=ttfParser {_gcd :_fc .NewReader (_bbg )};return _dcd .Parse ();};func (_edd CharMetrics )String ()string {return _g .Sprintf ("<\u0025\u002e\u0031\u0066\u002c\u0025\u002e\u0031\u0066\u003e",_edd .Wx ,_edd .Wy ); -};func _dec ()StdFont {_adcc .Do (_bgc );_deb :=Descriptor {Name :TimesBoldItalicName ,Family :_fdb ,Weight :FontWeightBold ,Flags :0x0060,BBox :[4]float64 {-200,-218,996,921},ItalicAngle :-15,Ascent :683,Descent :-217,CapHeight :669,XHeight :462,StemV :121,StemH :42}; -return NewStdFont (_deb ,_bda );};func (_fbd StdFont )ToPdfObject ()_ed .PdfObject {_gd :=_ed .MakeDict ();_gd .Set ("\u0054\u0079\u0070\u0065",_ed .MakeName ("\u0046\u006f\u006e\u0074"));_gd .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_ed .MakeName ("\u0054\u0079\u0070e\u0031")); -_gd .Set ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074",_ed .MakeName (_fbd .Name ()));_gd .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_fbd ._dc .ToPdfObject ());return _ed .MakeIndirectObject (_gd );};func (_afcf *ttfParser )ParseOS2 ()error {if _ddef :=_afcf .Seek ("\u004f\u0053\u002f\u0032"); -_ddef !=nil {return _ddef ;};_gcde :=_afcf .ReadUShort ();_afcf .Skip (4*2);_afcf .Skip (11*2+10+4*4+4);_ddfa :=_afcf .ReadUShort ();_afcf ._dee .Bold =(_ddfa &32)!=0;_afcf .Skip (2*2);_afcf ._dee .TypoAscender =_afcf .ReadShort ();_afcf ._dee .TypoDescender =_afcf .ReadShort (); -if _gcde >=2{_afcf .Skip (3*2+2*4+2);_afcf ._dee .CapHeight =_afcf .ReadShort ();}else {_afcf ._dee .CapHeight =0;};return nil ;};var _acdg *RuneCharSafeMap ;func _adc ()StdFont {_ce .Do (_gdg );_dcf :=Descriptor {Name :CourierObliqueName ,Family :string (CourierName ),Weight :FontWeightMedium ,Flags :0x0061,BBox :[4]float64 {-27,-250,849,805},ItalicAngle :-12,Ascent :629,Descent :-157,CapHeight :562,XHeight :426,StemV :51,StemH :51}; -return NewStdFont (_dcf ,_agd );};func (_fdc *ttfParser )parseCmapFormat6 ()error {_afa :=int (_fdc .ReadUShort ());_cbgf :=int (_fdc .ReadUShort ());_gcge .Log .Trace ("p\u0061\u0072\u0073\u0065\u0043\u006d\u0061\u0070\u0046o\u0072\u006d\u0061\u0074\u0036\u003a\u0020%s\u0020\u0066\u0069\u0072s\u0074\u0043\u006f\u0064\u0065\u003d\u0025\u0064\u0020en\u0074\u0072y\u0043\u006f\u0075\u006e\u0074\u003d\u0025\u0064",_fdc ._dee .String (),_afa ,_cbgf ); -for _fdaf :=0;_fdaf < _cbgf ;_fdaf ++{_deca :=GID (_fdc .ReadUShort ());_fdc ._dee .Chars [rune (_fdaf +_afa )]=_deca ;};return nil ;};func (_ffgb *ttfParser )ParsePost ()error {if _cbd :=_ffgb .Seek ("\u0070\u006f\u0073\u0074");_cbd !=nil {return _cbd ; -};_adaa :=_ffgb .Read32Fixed ();_ffgb ._dee .ItalicAngle =_ffgb .Read32Fixed ();_ffgb ._dee .UnderlinePosition =_ffgb .ReadShort ();_ffgb ._dee .UnderlineThickness =_ffgb .ReadShort ();_ffgb ._dee .IsFixedPitch =_ffgb .ReadULong ()!=0;_ffgb .ReadULong (); -_ffgb .ReadULong ();_ffgb .ReadULong ();_ffgb .ReadULong ();_gcge .Log .Trace ("\u0050a\u0072\u0073\u0065\u0050\u006f\u0073\u0074\u003a\u0020\u0066\u006fr\u006d\u0061\u0074\u0054\u0079\u0070\u0065\u003d\u0025\u0066",_adaa );switch _adaa {case 1.0:_ffgb ._dee .GlyphNames =_ged ; -case 2.0:_gfcf :=int (_ffgb .ReadUShort ());_gcc :=make ([]int ,_gfcf );_ffgb ._dee .GlyphNames =make ([]GlyphName ,_gfcf );_abcg :=-1;for _bed :=0;_bed < _gfcf ;_bed ++{_ddfd :=int (_ffgb .ReadUShort ());_gcc [_bed ]=_ddfd ;if _ddfd <=0x7fff&&_ddfd > _abcg {_abcg =_ddfd ; -};};var _eeae []GlyphName ;if _abcg >=len (_ged ){_eeae =make ([]GlyphName ,_abcg -len (_ged )+1);for _afcc :=0;_afcc < _abcg -len (_ged )+1;_afcc ++{_eeec :=int (_ffgb .readByte ());_cgdff ,_fca :=_ffgb .ReadStr (_eeec );if _fca !=nil {return _fca ;}; -_eeae [_afcc ]=GlyphName (_cgdff );};};for _bae :=0;_bae < _gfcf ;_bae ++{_adcgc :=_gcc [_bae ];if _adcgc < len (_ged ){_ffgb ._dee .GlyphNames [_bae ]=_ged [_adcgc ];}else if _adcgc >=len (_ged )&&_adcgc <=32767{_ffgb ._dee .GlyphNames [_bae ]=_eeae [_adcgc -len (_ged )]; -}else {_ffgb ._dee .GlyphNames [_bae ]="\u002e\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064";};};case 2.5:_cac :=make ([]int ,_ffgb ._ada );for _egef :=0;_egef < len (_cac );_egef ++{_fagc :=int (_ffgb .ReadSByte ());_cac [_egef ]=_egef +1+_fagc ; -};_ffgb ._dee .GlyphNames =make ([]GlyphName ,len (_cac ));for _dae :=0;_dae < len (_ffgb ._dee .GlyphNames );_dae ++{_eagc :=_ged [_cac [_dae ]];_ffgb ._dee .GlyphNames [_dae ]=_eagc ;};case 3.0:_gcge .Log .Debug ("\u004e\u006f\u0020\u0050\u006f\u0073t\u0053\u0063\u0072i\u0070\u0074\u0020n\u0061\u006d\u0065\u0020\u0069\u006e\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0020is\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u002e"); -default:_gcge .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020f\u006fr\u006d\u0061\u0074\u0054\u0079\u0070\u0065=\u0025\u0066",_adaa );};return nil ;};var _gbd =&fontMap {_cg :make (map[StdFontName ]func ()StdFont )}; -func (_eb *RuneCharSafeMap )Length ()int {_eb ._bc .RLock ();defer _eb ._bc .RUnlock ();return len (_eb ._b );};type TtfType struct{UnitsPerEm uint16 ;PostScriptName string ;Bold bool ;ItalicAngle float64 ;IsFixedPitch bool ;TypoAscender int16 ;TypoDescender int16 ; -UnderlinePosition int16 ;UnderlineThickness int16 ;Xmin ,Ymin ,Xmax ,Ymax int16 ;CapHeight int16 ;Widths []uint16 ;Chars map[rune ]GID ;GlyphNames []GlyphName ;};func _fef ()StdFont {_ce .Do (_gdg );_eda :=Descriptor {Name :CourierName ,Family :string (CourierName ),Weight :FontWeightMedium ,Flags :0x0021,BBox :[4]float64 {-23,-250,715,805},ItalicAngle :0,Ascent :629,Descent :-157,CapHeight :562,XHeight :426,StemV :51,StemH :51}; -return NewStdFont (_eda ,_gea );};func (_cd *fontMap )write (_cb StdFontName ,_gf func ()StdFont ){_cd .Lock ();defer _cd .Unlock ();_cd ._cg [_cb ]=_gf ;};func (_gab *ttfParser )ReadSByte ()(_cbef int8 ){_d .Read (_gab ._gcd ,_d .BigEndian ,&_cbef );return _cbef ; -};var _efa *RuneCharSafeMap ;func (_aab *ttfParser )ParseHead ()error {if _ffe :=_aab .Seek ("\u0068\u0065\u0061\u0064");_ffe !=nil {return _ffe ;};_aab .Skip (3*4);_efad :=_aab .ReadULong ();if _efad !=0x5F0F3CF5{_gcge .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0049\u006e\u0063\u006fr\u0072e\u0063\u0074\u0020\u006d\u0061\u0067\u0069\u0063\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u002e\u0020\u0046\u006fn\u0074\u0020\u006d\u0061\u0079\u0020\u006e\u006f\u0074\u0020\u0064\u0069\u0073\u0070\u006c\u0061\u0079\u0020\u0063\u006f\u0072\u0072\u0065\u0063t\u006c\u0079\u002e\u0020\u0025\u0073",_aab ); -};_aab .Skip (2);_aab ._dee .UnitsPerEm =_aab .ReadUShort ();_aab .Skip (2*8);_aab ._dee .Xmin =_aab .ReadShort ();_aab ._dee .Ymin =_aab .ReadShort ();_aab ._dee .Xmax =_aab .ReadShort ();_aab ._dee .Ymax =_aab .ReadShort ();return nil ;};func NewStdFontByName (name StdFontName )(StdFont ,bool ){_df ,_be :=_gbd .read (name ); -if !_be {return StdFont {},false ;};return _df (),true ;};func (_ef *fontMap )read (_ebf StdFontName )(func ()StdFont ,bool ){_ef .Lock ();defer _ef .Unlock ();_bcd ,_edf :=_ef ._cg [_ebf ];return _bcd ,_edf ;};func (_gad *ttfParser )parseTTC ()(TtfType ,error ){_gad .Skip (2*2); -_dgb :=_gad .ReadULong ();if _dgb < 1{return TtfType {},_fb .New ("N\u006f \u0066\u006f\u006e\u0074\u0073\u0020\u0069\u006e \u0054\u0054\u0043\u0020fi\u006c\u0065");};_eeba :=_gad .ReadULong ();_ ,_dba :=_gad ._gcd .Seek (int64 (_eeba ),_e .SeekStart ); -if _dba !=nil {return TtfType {},_dba ;};return _gad .Parse ();};func _cgfd (_dgbc map[string ]uint32 )string {var _cgef []string ;for _beee :=range _dgbc {_cgef =append (_cgef ,_beee );};_gcg .Slice (_cgef ,func (_afg ,_ccd int )bool {return _dgbc [_cgef [_afg ]]< _dgbc [_cgef [_ccd ]]}); -_ffg :=[]string {_g .Sprintf ("\u0054\u0072\u0075\u0065Ty\u0070\u0065\u0020\u0074\u0061\u0062\u006c\u0065\u0073\u003a\u0020\u0025\u0064",len (_dgbc ))};for _ ,_cfb :=range _cgef {_ffg =append (_ffg ,_g .Sprintf ("\u0009%\u0071\u0020\u0025\u0035\u0064",_cfb ,_dgbc [_cfb ])); -};return _gc .Join (_ffg ,"\u000a");};func (_beaf *ttfParser )parseCmapSubtable31 (_ffge int64 )error {_gcbe :=make ([]rune ,0,8);_egc :=make ([]rune ,0,8);_bce :=make ([]int16 ,0,8);_cca :=make ([]uint16 ,0,8);_beaf ._dee .Chars =make (map[rune ]GID ); -_beaf ._gcd .Seek (int64 (_beaf ._ege ["\u0063\u006d\u0061\u0070"])+_ffge ,_e .SeekStart );_bef :=_beaf .ReadUShort ();if _bef !=4{_gcge .Log .Debug ("u\u006e\u0065\u0078\u0070\u0065\u0063t\u0065\u0064\u0020\u0073\u0075\u0062t\u0061\u0062\u006c\u0065\u0020\u0066\u006fr\u006d\u0061\u0074\u003a\u0020\u0025\u0064\u0020\u0028\u0025w\u0029",_bef ); -return nil ;};_beaf .Skip (2*2);_cfdg :=int (_beaf .ReadUShort ()/2);_beaf .Skip (3*2);for _aabf :=0;_aabf < _cfdg ;_aabf ++{_egc =append (_egc ,rune (_beaf .ReadUShort ()));};_beaf .Skip (2);for _cfab :=0;_cfab < _cfdg ;_cfab ++{_gcbe =append (_gcbe ,rune (_beaf .ReadUShort ())); -};for _fga :=0;_fga < _cfdg ;_fga ++{_bce =append (_bce ,_beaf .ReadShort ());};_dea ,_ :=_beaf ._gcd .Seek (int64 (0),_e .SeekCurrent );for _ddf :=0;_ddf < _cfdg ;_ddf ++{_cca =append (_cca ,_beaf .ReadUShort ());};for _adf :=0;_adf < _cfdg ;_adf ++{_afd :=_gcbe [_adf ]; -_dda :=_egc [_adf ];_cede :=_bce [_adf ];_ebg :=_cca [_adf ];if _ebg > 0{_beaf ._gcd .Seek (_dea +2*int64 (_adf )+int64 (_ebg ),_e .SeekStart );};for _bca :=_afd ;_bca <=_dda ;_bca ++{if _bca ==0xFFFF{break ;};var _fab int32 ;if _ebg > 0{_fab =int32 (_beaf .ReadUShort ()); -if _fab > 0{_fab +=int32 (_cede );};}else {_fab =_bca +int32 (_cede );};if _fab >=65536{_fab -=65536;};if _fab > 0{_beaf ._dee .Chars [_bca ]=GID (_fab );};};};return nil ;};func (_cgb *ttfParser )Parse ()(TtfType ,error ){_fgb ,_gdf :=_cgb .ReadStr (4); -if _gdf !=nil {return TtfType {},_gdf ;};if _fgb =="\u0074\u0074\u0063\u0066"{return _cgb .parseTTC ();}else if _fgb !="\u0000\u0001\u0000\u0000"&&_fgb !="\u0074\u0072\u0075\u0065"{_gcge .Log .Debug ("\u0055n\u0072\u0065c\u006f\u0067\u006ei\u007a\u0065\u0064\u0020\u0054\u0072\u0075e\u0054\u0079\u0070\u0065\u0020\u0066i\u006c\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u0074\u002e\u0020v\u0065\u0072\u0073\u0069\u006f\u006e\u003d\u0025\u0071",_fgb ); -};_aaa :=int (_cgb .ReadUShort ());_cgb .Skip (3*2);_cgb ._ege =make (map[string ]uint32 );var _gcb string ;for _dcb :=0;_dcb < _aaa ;_dcb ++{_gcb ,_gdf =_cgb .ReadStr (4);if _gdf !=nil {return TtfType {},_gdf ;};_cgb .Skip (4);_bddb :=_cgb .ReadULong (); -_cgb .Skip (4);_cgb ._ege [_gcb ]=_bddb ;};_gcge .Log .Trace (_cgfd (_cgb ._ege ));if _gdf =_cgb .ParseComponents ();_gdf !=nil {return TtfType {},_gdf ;};return _cgb ._dee ,nil ;};func (_dgec *ttfParser )ReadShort ()(_dffb int16 ){_d .Read (_dgec ._gcd ,_d .BigEndian ,&_dffb ); -return _dffb ;};func (_c *RuneCharSafeMap )Write (b rune ,r CharMetrics ){_c ._bc .Lock ();defer _c ._bc .Unlock ();_c ._b [b ]=r ;};func (_afdg *ttfParser )ParseCmap ()error {var _gce int64 ;if _gadg :=_afdg .Seek ("\u0063\u006d\u0061\u0070");_gadg !=nil {return _gadg ; -};_afdg .ReadUShort ();_ceb :=int (_afdg .ReadUShort ());_gfg :=int64 (0);_fefc :=int64 (0);_cgfb :=int64 (0);for _abce :=0;_abce < _ceb ;_abce ++{_adcga :=_afdg .ReadUShort ();_ggg :=_afdg .ReadUShort ();_gce =int64 (_afdg .ReadULong ());if _adcga ==3&&_ggg ==1{_fefc =_gce ; -}else if _adcga ==3&&_ggg ==10{_cgfb =_gce ;}else if _adcga ==1&&_ggg ==0{_gfg =_gce ;};};if _gfg !=0{if _gaf :=_afdg .parseCmapVersion (_gfg );_gaf !=nil {return _gaf ;};};if _fefc !=0{if _ffed :=_afdg .parseCmapSubtable31 (_fefc );_ffed !=nil {return _ffed ; -};};if _cgfb !=0{if _ddd :=_afdg .parseCmapVersion (_cgfb );_ddd !=nil {return _ddd ;};};if _fefc ==0&&_gfg ==0&&_cgfb ==0{_gcge .Log .Debug ("\u0074\u0074\u0066P\u0061\u0072\u0073\u0065\u0072\u002e\u0050\u0061\u0072\u0073\u0065\u0043\u006d\u0061\u0070\u002e\u0020\u004e\u006f\u0020\u0033\u0031\u002c\u0020\u0031\u0030\u002c\u0020\u00331\u0030\u0020\u0074\u0061\u0062\u006c\u0065\u002e"); -};return nil ;};const (HelveticaName =StdFontName ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a");HelveticaBoldName =StdFontName ("\u0048\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061-\u0042\u006f\u006c\u0064");HelveticaObliqueName =StdFontName ("\u0048\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061\u002d\u004f\u0062l\u0069\u0071\u0075\u0065"); -HelveticaBoldObliqueName =StdFontName ("H\u0065\u006c\u0076\u0065ti\u0063a\u002d\u0042\u006f\u006c\u0064O\u0062\u006c\u0069\u0071\u0075\u0065"););type fontMap struct{_ab .Mutex ;_cg map[StdFontName ]func ()StdFont ;};func (_eba *ttfParser )ReadULong ()(_fde uint32 ){_d .Read (_eba ._gcd ,_d .BigEndian ,&_fde ); -return _fde ;};type CharMetrics struct{Wx float64 ;Wy float64 ;};func (_dbc *ttfParser )parseCmapFormat12 ()error {_cgfdb :=_dbc .ReadULong ();_gcge .Log .Trace ("\u0070\u0061\u0072se\u0043\u006d\u0061\u0070\u0046\u006f\u0072\u006d\u0061t\u00312\u003a \u0025s\u0020\u006e\u0075\u006d\u0047\u0072\u006f\u0075\u0070\u0073\u003d\u0025\u0064",_dbc ._dee .String (),_cgfdb ); -for _fagg :=uint32 (0);_fagg < _cgfdb ;_fagg ++{_ddeg :=_dbc .ReadULong ();_afdb :=_dbc .ReadULong ();_gbc :=_dbc .ReadULong ();if _ddeg > 0x0010FFFF||(0xD800<=_ddeg &&_ddeg <=0xDFFF){return _fb .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0068\u0061\u0072\u0061c\u0074\u0065\u0072\u0073\u0020\u0063\u006f\u0064\u0065\u0073"); -};if _afdb < _ddeg ||_afdb > 0x0010FFFF||(0xD800<=_afdb &&_afdb <=0xDFFF){return _fb .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0068\u0061\u0072\u0061c\u0074\u0065\u0072\u0073\u0020\u0063\u006f\u0064\u0065\u0073");};for _bfd :=_ddeg ;_bfd <=_afdb ; -_bfd ++{if _bfd > 0x10FFFF{_gcge .Log .Debug ("\u0046\u006fr\u006d\u0061\u0074\u0020\u0031\u0032\u0020\u0063\u006d\u0061\u0070\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0062\u0065\u0079\u006f\u006e\u0064\u0020\u0055\u0043\u0053\u002d\u0034"); -};_dbc ._dee .Chars [rune (_bfd )]=GID (_gbc );_gbc ++;};};return nil ;};func (_agdc *ttfParser )Read32Fixed ()float64 {_eeeag :=float64 (_agdc .ReadShort ());_degc :=float64 (_agdc .ReadUShort ())/65536.0;return _eeeag +_degc ;};var _bdcg =[]int16 {611,889,611,611,611,611,611,611,611,611,611,611,667,667,667,667,722,722,722,612,611,611,611,611,611,611,611,611,611,722,500,611,722,722,722,722,333,333,333,333,333,333,333,333,444,667,667,556,556,611,556,556,833,667,667,667,667,667,722,944,722,722,722,722,722,722,722,722,611,722,611,611,611,611,500,500,500,500,500,556,556,556,611,722,722,722,722,722,722,722,722,722,611,833,611,556,556,556,556,556,556,556,500,500,500,500,333,500,667,500,500,778,500,500,422,541,500,920,500,500,278,275,400,400,389,389,333,275,350,444,444,333,444,444,333,500,333,333,250,250,760,500,500,500,500,544,500,400,333,675,500,333,278,444,444,444,444,444,444,444,500,889,444,889,500,444,675,500,333,389,278,500,500,500,500,500,167,500,500,500,500,333,675,549,500,500,333,333,500,333,333,278,278,278,278,278,278,278,278,444,444,278,278,300,278,675,549,675,471,278,722,333,675,500,675,500,500,500,500,500,549,500,500,500,500,500,500,667,333,500,500,500,500,750,750,300,276,310,500,500,500,523,333,333,476,833,250,250,1000,675,675,500,500,500,420,556,556,556,333,333,333,214,389,389,453,389,389,760,333,389,389,389,389,389,500,333,500,500,278,250,500,600,278,300,278,500,500,750,300,333,980,500,300,500,500,500,500,500,500,500,500,500,500,444,667,444,444,444,444,500,389,389,389,389,500}; -func _ga ()StdFont {_adcc .Do (_bgc );_cc :=Descriptor {Name :TimesItalicName ,Family :_fdb ,Weight :FontWeightMedium ,Flags :0x0060,BBox :[4]float64 {-169,-217,1010,883},ItalicAngle :-15.5,Ascent :683,Descent :-217,CapHeight :653,XHeight :441,StemV :76,StemH :32}; -return NewStdFont (_cc ,_gac );};func (_fda *TtfType )String ()string {return _g .Sprintf ("\u0046\u004fN\u0054\u005f\u0046\u0049\u004cE\u0032\u007b\u0025\u0023\u0071 \u0055\u006e\u0069\u0074\u0073\u0050\u0065\u0072\u0045\u006d\u003d\u0025\u0064\u0020\u0042\u006f\u006c\u0064\u003d\u0025\u0074\u0020\u0049\u0074\u0061\u006c\u0069\u0063\u0041\u006e\u0067\u006c\u0065\u003d\u0025\u0066\u0020"+"\u0043\u0061pH\u0065\u0069\u0067h\u0074\u003d\u0025\u0064 Ch\u0061rs\u003d\u0025\u0064\u0020\u0047\u006c\u0079ph\u004e\u0061\u006d\u0065\u0073\u003d\u0025d\u007d",_fda .PostScriptName ,_fda .UnitsPerEm ,_fda .Bold ,_fda .ItalicAngle ,_fda .CapHeight ,len (_fda .Chars ),len (_fda .GlyphNames )); -};func _beg ()StdFont {_cge .Do (_gbe );_gfc :=Descriptor {Name :HelveticaBoldObliqueName ,Family :string (HelveticaName ),Weight :FontWeightBold ,Flags :0x0060,BBox :[4]float64 {-174,-228,1114,962},ItalicAngle :-12,Ascent :718,Descent :-207,CapHeight :718,XHeight :532,StemV :140,StemH :118}; -return NewStdFont (_gfc ,_bcf );};func _bdd ()StdFont {_aad :=_ad .NewSymbolEncoder ();_ea :=Descriptor {Name :SymbolName ,Family :string (SymbolName ),Weight :FontWeightMedium ,Flags :0x0004,BBox :[4]float64 {-180,-293,1090,1010},ItalicAngle :0,Ascent :0,Descent :0,CapHeight :0,XHeight :0,StemV :85,StemH :92}; -return NewStdFontWithEncoding (_ea ,_aae ,_aad );};func (_ecag *TtfType )NewEncoder ()_ad .TextEncoder {return _ad .NewTrueTypeFontEncoder (_ecag .Chars )};var _ce _ab .Once ;func (_ddec *ttfParser )parseCmapVersion (_cfg int64 )error {_gcge .Log .Trace ("p\u0061\u0072\u0073\u0065\u0043\u006da\u0070\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u003a \u006f\u0066\u0066s\u0065t\u003d\u0025\u0064",_cfg ); -if _ddec ._dee .Chars ==nil {_ddec ._dee .Chars =make (map[rune ]GID );};_ddec ._gcd .Seek (int64 (_ddec ._ege ["\u0063\u006d\u0061\u0070"])+_cfg ,_e .SeekStart );var _ddg ,_dag uint32 ;_abda :=_ddec .ReadUShort ();if _abda < 8{_ddg =uint32 (_ddec .ReadUShort ()); -_dag =uint32 (_ddec .ReadUShort ());}else {_ddec .ReadUShort ();_ddg =_ddec .ReadULong ();_dag =_ddec .ReadULong ();};_gcge .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u0043m\u0061\u0070\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u003a\u0020\u0066\u006f\u0072\u006d\u0061\u0074\u003d\u0025\u0064 \u006c\u0065\u006e\u0067\u0074\u0068\u003d\u0025\u0064\u0020\u006c\u0061\u006e\u0067u\u0061g\u0065\u003d\u0025\u0064",_abda ,_ddg ,_dag ); -switch _abda {case 0:return _ddec .parseCmapFormat0 ();case 6:return _ddec .parseCmapFormat6 ();case 12:return _ddec .parseCmapFormat12 ();default:_gcge .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063m\u0061\u0070\u0020\u0066\u006f\u0072\u006da\u0074\u003d\u0025\u0064",_abda ); -return nil ;};};type FontWeight int ;func TtfParseFile (fileStr string )(TtfType ,error ){_afb ,_ece :=_a .Open (fileStr );if _ece !=nil {return TtfType {},_ece ;};defer _afb .Close ();return TtfParse (_afb );};var _ceg =[]int16 {667,944,667,667,667,667,667,667,667,667,667,667,667,667,667,667,722,722,722,612,667,667,667,667,667,667,667,667,667,722,500,667,722,722,722,778,389,389,389,389,389,389,389,389,500,667,667,611,611,611,611,611,889,722,722,722,722,722,722,944,722,722,722,722,722,722,722,722,611,722,667,667,667,667,556,556,556,556,556,611,611,611,611,722,722,722,722,722,722,722,722,722,667,889,667,611,611,611,611,611,611,611,500,500,500,500,333,500,722,500,500,778,500,500,570,570,500,832,500,500,278,220,348,348,333,333,333,220,350,444,444,333,444,444,333,500,333,333,250,250,747,500,500,500,500,608,500,400,333,570,500,333,278,444,444,444,444,444,444,444,500,1000,444,1000,500,444,570,500,389,389,333,556,500,556,500,500,167,500,500,500,500,333,570,549,500,500,333,333,556,333,333,278,278,278,278,278,278,278,278,500,500,278,278,382,278,570,549,606,494,278,778,333,606,576,570,556,556,556,556,500,549,556,500,500,500,500,500,722,333,500,500,500,500,750,750,300,266,300,500,500,500,500,333,333,494,833,250,250,1000,570,570,500,500,500,555,500,500,500,333,333,333,278,389,389,549,389,389,747,333,389,389,389,389,389,500,333,500,500,278,250,500,600,278,366,278,500,500,750,300,333,1000,500,300,556,556,556,556,556,556,556,500,556,556,444,667,500,444,444,444,500,389,389,389,389,500}; -func (_eff *ttfParser )ParseMaxp ()error {if _edaf :=_eff .Seek ("\u006d\u0061\u0078\u0070");_edaf !=nil {return _edaf ;};_eff .Skip (4);_eff ._ada =_eff .ReadUShort ();return nil ;};func (_bgga *ttfParser )ParseName ()error {if _dgbd :=_bgga .Seek ("\u006e\u0061\u006d\u0065"); -_dgbd !=nil {return _dgbd ;};_ccca ,_ :=_bgga ._gcd .Seek (0,_e .SeekCurrent );_bgga ._dee .PostScriptName ="";_bgga .Skip (2);_gceb :=_bgga .ReadUShort ();_gcab :=_bgga .ReadUShort ();for _feca :=uint16 (0);_feca < _gceb &&_bgga ._dee .PostScriptName ==""; -_feca ++{_bgga .Skip (3*2);_cbb :=_bgga .ReadUShort ();_adcgae :=_bgga .ReadUShort ();_eea :=_bgga .ReadUShort ();if _cbb ==6{_bgga ._gcd .Seek (_ccca +int64 (_gcab )+int64 (_eea ),_e .SeekStart );_dff ,_fgca :=_bgga .ReadStr (int (_adcgae ));if _fgca !=nil {return _fgca ; -};_dff =_gc .Replace (_dff ,"\u0000","",-1);_ffd ,_fgca :=_gb .Compile ("\u005b\u0028\u0029\u007b\u007d\u003c\u003e\u0020\u002f%\u005b\u005c\u005d\u005d");if _fgca !=nil {return _fgca ;};_bgga ._dee .PostScriptName =_ffd .ReplaceAllString (_dff ,"");}; -};if _bgga ._dee .PostScriptName ==""{_gcge .Log .Debug ("\u0050a\u0072\u0073e\u004e\u0061\u006de\u003a\u0020\u0054\u0068\u0065\u0020\u006ea\u006d\u0065\u0020\u0050\u006f\u0073t\u0053\u0063\u0072\u0069\u0070\u0074\u0020\u0077\u0061\u0073\u0020n\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e"); -};return nil ;};var _aae =&RuneCharSafeMap {_b :map[rune ]CharMetrics {' ':{Wx :250},'!':{Wx :333},'#':{Wx :500},'%':{Wx :833},'&':{Wx :778},'(':{Wx :333},')':{Wx :333},'+':{Wx :549},',':{Wx :250},'.':{Wx :250},'/':{Wx :278},'0':{Wx :500},'1':{Wx :500},'2':{Wx :500},'3':{Wx :500},'4':{Wx :500},'5':{Wx :500},'6':{Wx :500},'7':{Wx :500},'8':{Wx :500},'9':{Wx :500},':':{Wx :278},';':{Wx :278},'<':{Wx :549},'=':{Wx :549},'>':{Wx :549},'?':{Wx :444},'[':{Wx :333},']':{Wx :333},'_':{Wx :500},'{':{Wx :480},'|':{Wx :200},'}':{Wx :480},'¬':{Wx :713},'°':{Wx :400},'±':{Wx :549},'µ':{Wx :576},'×':{Wx :549},'÷':{Wx :549},'ƒ':{Wx :500},'Α':{Wx :722},'Β':{Wx :667},'Γ':{Wx :603},'Ε':{Wx :611},'Ζ':{Wx :611},'Η':{Wx :722},'Θ':{Wx :741},'Ι':{Wx :333},'Κ':{Wx :722},'Λ':{Wx :686},'Μ':{Wx :889},'Ν':{Wx :722},'Ξ':{Wx :645},'Ο':{Wx :722},'Π':{Wx :768},'Ρ':{Wx :556},'Σ':{Wx :592},'Τ':{Wx :611},'Υ':{Wx :690},'Φ':{Wx :763},'Χ':{Wx :722},'Ψ':{Wx :795},'α':{Wx :631},'β':{Wx :549},'γ':{Wx :411},'δ':{Wx :494},'ε':{Wx :439},'ζ':{Wx :494},'η':{Wx :603},'θ':{Wx :521},'ι':{Wx :329},'κ':{Wx :549},'λ':{Wx :549},'ν':{Wx :521},'ξ':{Wx :493},'ο':{Wx :549},'π':{Wx :549},'ρ':{Wx :549},'ς':{Wx :439},'σ':{Wx :603},'τ':{Wx :439},'υ':{Wx :576},'φ':{Wx :521},'χ':{Wx :549},'ψ':{Wx :686},'ω':{Wx :686},'ϑ':{Wx :631},'ϒ':{Wx :620},'ϕ':{Wx :603},'ϖ':{Wx :713},'•':{Wx :460},'…':{Wx :1000},'′':{Wx :247},'″':{Wx :411},'⁄':{Wx :167},'€':{Wx :750},'ℑ':{Wx :686},'℘':{Wx :987},'ℜ':{Wx :795},'Ω':{Wx :768},'ℵ':{Wx :823},'←':{Wx :987},'↑':{Wx :603},'→':{Wx :987},'↓':{Wx :603},'↔':{Wx :1042},'↵':{Wx :658},'⇐':{Wx :987},'⇑':{Wx :603},'⇒':{Wx :987},'⇓':{Wx :603},'⇔':{Wx :1042},'∀':{Wx :713},'∂':{Wx :494},'∃':{Wx :549},'∅':{Wx :823},'∆':{Wx :612},'∇':{Wx :713},'∈':{Wx :713},'∉':{Wx :713},'∋':{Wx :439},'∏':{Wx :823},'∑':{Wx :713},'−':{Wx :549},'∗':{Wx :500},'√':{Wx :549},'∝':{Wx :713},'∞':{Wx :713},'∠':{Wx :768},'∧':{Wx :603},'∨':{Wx :603},'∩':{Wx :768},'∪':{Wx :768},'∫':{Wx :274},'∴':{Wx :863},'∼':{Wx :549},'≅':{Wx :549},'≈':{Wx :549},'≠':{Wx :549},'≡':{Wx :549},'≤':{Wx :549},'≥':{Wx :549},'⊂':{Wx :713},'⊃':{Wx :713},'⊄':{Wx :713},'⊆':{Wx :713},'⊇':{Wx :713},'⊕':{Wx :768},'⊗':{Wx :768},'⊥':{Wx :658},'⋅':{Wx :250},'⌠':{Wx :686},'⌡':{Wx :686},'〈':{Wx :329},'〉':{Wx :329},'◊':{Wx :494},'♠':{Wx :753},'♣':{Wx :753},'♥':{Wx :753},'♦':{Wx :753},'\uf6d9':{Wx :790},'\uf6da':{Wx :790},'\uf6db':{Wx :890},'\uf8e5':{Wx :500},'\uf8e6':{Wx :603},'\uf8e7':{Wx :1000},'\uf8e8':{Wx :790},'\uf8e9':{Wx :790},'\uf8ea':{Wx :786},'\uf8eb':{Wx :384},'\uf8ec':{Wx :384},'\uf8ed':{Wx :384},'\uf8ee':{Wx :384},'\uf8ef':{Wx :384},'\uf8f0':{Wx :384},'\uf8f1':{Wx :494},'\uf8f2':{Wx :494},'\uf8f3':{Wx :494},'\uf8f4':{Wx :494},'\uf8f5':{Wx :686},'\uf8f6':{Wx :384},'\uf8f7':{Wx :384},'\uf8f8':{Wx :384},'\uf8f9':{Wx :384},'\uf8fa':{Wx :384},'\uf8fb':{Wx :384},'\uf8fc':{Wx :494},'\uf8fd':{Wx :494},'\uf8fe':{Wx :494},'\uf8ff':{Wx :790}}}; -func _gge ()StdFont {_cge .Do (_gbe );_caa :=Descriptor {Name :HelveticaName ,Family :string (HelveticaName ),Weight :FontWeightMedium ,Flags :0x0020,BBox :[4]float64 {-166,-225,1000,931},ItalicAngle :0,Ascent :718,Descent :-207,CapHeight :718,XHeight :523,StemV :88,StemH :76}; -return NewStdFont (_caa ,_eeg );}; \ No newline at end of file +package fonts ;import (_af "bytes";_fg "encoding/binary";_dd "errors";_eg "fmt";_ae "github.com/unidoc/unipdf/v3/common";_gc "github.com/unidoc/unipdf/v3/core";_g "github.com/unidoc/unipdf/v3/internal/cmap";_dg "github.com/unidoc/unipdf/v3/internal/textencoding"; +_dc "io";_d "os";_f "regexp";_b "sort";_a "strings";_ad "sync";);const (HelveticaName =StdFontName ("\u0048e\u006c\u0076\u0065\u0074\u0069\u0063a");HelveticaBoldName =StdFontName ("\u0048\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061-\u0042\u006f\u006c\u0064"); +HelveticaObliqueName =StdFontName ("\u0048\u0065\u006c\u0076\u0065\u0074\u0069\u0063\u0061\u002d\u004f\u0062l\u0069\u0071\u0075\u0065");HelveticaBoldObliqueName =StdFontName ("H\u0065\u006c\u0076\u0065ti\u0063a\u002d\u0042\u006f\u006c\u0064O\u0062\u006c\u0069\u0071\u0075\u0065"); +);func (_bef StdFont )Name ()string {return string (_bef ._be .Name )};func _dag (_afed map[string ]uint32 )string {var _ea []string ;for _gbcc :=range _afed {_ea =append (_ea ,_gbcc );};_b .Slice (_ea ,func (_caeg ,_agf int )bool {return _afed [_ea [_caeg ]]< _afed [_ea [_agf ]]}); +_eaa :=[]string {_eg .Sprintf ("\u0054\u0072\u0075\u0065Ty\u0070\u0065\u0020\u0074\u0061\u0062\u006c\u0065\u0073\u003a\u0020\u0025\u0064",len (_afed ))};for _ ,_cdc :=range _ea {_eaa =append (_eaa ,_eg .Sprintf ("\u0009%\u0071\u0020\u0025\u0035\u0064",_cdc ,_afed [_cdc ])); +};return _a .Join (_eaa ,"\u000a");};func TtfParse (r _dc .ReadSeeker )(TtfType ,error ){_ced :=&ttfParser {_cdb :r };return _ced .Parse ()};func (_ca *RuneCharSafeMap )Range (f func (_adc rune ,_cb CharMetrics )(_fb bool )){_ca ._fc .RLock ();defer _ca ._fc .RUnlock (); +for _fbc ,_bb :=range _ca ._ee {if f (_fbc ,_bb ){break ;};};};func (_cdaa *ttfParser )Seek (tag string )error {_dfee ,_adg :=_cdaa ._eef [tag ];if !_adg {return _eg .Errorf ("\u0074\u0061\u0062\u006ce \u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u003a\u0020\u0025\u0073",tag ); +};_cdaa ._cdb .Seek (int64 (_dfee ),_dc .SeekStart );return nil ;};var _gcgg *RuneCharSafeMap ;func (_ffa StdFont )GetMetricsTable ()*RuneCharSafeMap {return _ffa ._ge };type GlyphName =_dg .GlyphName ;func _afc ()StdFont {_bbf .Do (_gaa );_cd :=Descriptor {Name :CourierBoldObliqueName ,Family :string (CourierName ),Weight :FontWeightBold ,Flags :0x0061,BBox :[4]float64 {-57,-250,869,801},ItalicAngle :-12,Ascent :629,Descent :-157,CapHeight :562,XHeight :439,StemV :106,StemH :84}; +return NewStdFont (_cd ,_gag );};func MakeRuneCharSafeMap (length int )*RuneCharSafeMap {return &RuneCharSafeMap {_ee :make (map[rune ]CharMetrics ,length )};};type fontMap struct{_ad .Mutex ;_gca map[StdFontName ]func ()StdFont ;};func (_bbg *ttfParser )ParseComponents ()error {if _eaf :=_bbg .ParseHead (); +_eaf !=nil {return _eaf ;};if _cf :=_bbg .ParseHhea ();_cf !=nil {return _cf ;};if _ddd :=_bbg .ParseMaxp ();_ddd !=nil {return _ddd ;};if _dfff :=_bbg .ParseHmtx ();_dfff !=nil {return _dfff ;};if _ ,_dfe :=_bbg ._eef ["\u006e\u0061\u006d\u0065"];_dfe {if _ba :=_bbg .ParseName (); +_ba !=nil {return _ba ;};};if _ ,_fbg :=_bbg ._eef ["\u004f\u0053\u002f\u0032"];_fbg {if _bdgg :=_bbg .ParseOS2 ();_bdgg !=nil {return _bdgg ;};};if _ ,_add :=_bbg ._eef ["\u0070\u006f\u0073\u0074"];_add {if _ada :=_bbg .ParsePost ();_ada !=nil {return _ada ; +};};if _ ,_eeece :=_bbg ._eef ["\u0063\u006d\u0061\u0070"];_eeece {if _gga :=_bbg .ParseCmap ();_gga !=nil {return _gga ;};};return nil ;};func (_dec *ttfParser )parseCmapFormat6 ()error {_gbg :=int (_dec .ReadUShort ());_gbf :=int (_dec .ReadUShort ()); +_ae .Log .Trace ("p\u0061\u0072\u0073\u0065\u0043\u006d\u0061\u0070\u0046o\u0072\u006d\u0061\u0074\u0036\u003a\u0020%s\u0020\u0066\u0069\u0072s\u0074\u0043\u006f\u0064\u0065\u003d\u0025\u0064\u0020en\u0074\u0072y\u0043\u006f\u0075\u006e\u0074\u003d\u0025\u0064",_dec ._fce .String (),_gbg ,_gbf ); +for _gdc :=0;_gdc < _gbf ;_gdc ++{_cdfb :=GID (_dec .ReadUShort ());_dec ._fce .Chars [rune (_gdc +_gbg )]=_cdfb ;};return nil ;};func (_fea StdFont )Encoder ()_dg .TextEncoder {return _fea ._df };func (_cc *RuneCharSafeMap )Read (b rune )(CharMetrics ,bool ){_cc ._fc .RLock (); +defer _cc ._fc .RUnlock ();_ef ,_ec :=_cc ._ee [b ];return _ef ,_ec ;};func _ebd ()StdFont {_cbdc .Do (_dcaf );_dge :=Descriptor {Name :TimesRomanName ,Family :_ebe ,Weight :FontWeightRoman ,Flags :0x0020,BBox :[4]float64 {-168,-218,1000,898},ItalicAngle :0,Ascent :683,Descent :-217,CapHeight :662,XHeight :450,StemV :84,StemH :28}; +return NewStdFont (_dge ,_ecg );};func NewStdFontByName (name StdFontName )(StdFont ,bool ){_caf ,_fe :=_ed .read (name );if !_fe {return StdFont {},false ;};return _caf (),true ;};func (_fcgc *ttfParser )parseCmapFormat12 ()error {_dgfg :=_fcgc .ReadULong (); +_ae .Log .Trace ("\u0070\u0061\u0072se\u0043\u006d\u0061\u0070\u0046\u006f\u0072\u006d\u0061t\u00312\u003a \u0025s\u0020\u006e\u0075\u006d\u0047\u0072\u006f\u0075\u0070\u0073\u003d\u0025\u0064",_fcgc ._fce .String (),_dgfg );for _cdbd :=uint32 (0);_cdbd < _dgfg ; +_cdbd ++{_cea :=_fcgc .ReadULong ();_fgea :=_fcgc .ReadULong ();_cab :=_fcgc .ReadULong ();if _cea > 0x0010FFFF||(0xD800<=_cea &&_cea <=0xDFFF){return _dd .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0068\u0061\u0072\u0061c\u0074\u0065\u0072\u0073\u0020\u0063\u006f\u0064\u0065\u0073"); +};if _fgea < _cea ||_fgea > 0x0010FFFF||(0xD800<=_fgea &&_fgea <=0xDFFF){return _dd .New ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0068\u0061\u0072\u0061c\u0074\u0065\u0072\u0073\u0020\u0063\u006f\u0064\u0065\u0073");};for _gcd :=_cea ;_gcd <=_fgea ; +_gcd ++{if _gcd > 0x10FFFF{_ae .Log .Debug ("\u0046\u006fr\u006d\u0061\u0074\u0020\u0031\u0032\u0020\u0063\u006d\u0061\u0070\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0062\u0065\u0079\u006f\u006e\u0064\u0020\u0055\u0043\u0053\u002d\u0034"); +};_fcgc ._fce .Chars [rune (_gcd )]=GID (_cab );_cab ++;};};return nil ;};type RuneCharSafeMap struct{_ee map[rune ]CharMetrics ;_fc _ad .RWMutex ;};func _eec ()StdFont {_ffc :=_dg .NewSymbolEncoder ();_eee :=Descriptor {Name :SymbolName ,Family :string (SymbolName ),Weight :FontWeightMedium ,Flags :0x0004,BBox :[4]float64 {-180,-293,1090,1010},ItalicAngle :0,Ascent :0,Descent :0,CapHeight :0,XHeight :0,StemV :85,StemH :92}; +return NewStdFontWithEncoding (_eee ,_fbab ,_ffc );};var _gcaa *RuneCharSafeMap ;func _efa ()StdFont {_fcg .Do (_dea );_deb :=Descriptor {Name :HelveticaName ,Family :string (HelveticaName ),Weight :FontWeightMedium ,Flags :0x0020,BBox :[4]float64 {-166,-225,1000,931},ItalicAngle :0,Ascent :718,Descent :-207,CapHeight :718,XHeight :523,StemV :88,StemH :76}; +return NewStdFont (_deb ,_gcaa );};var _bdb *RuneCharSafeMap ;var _eba =[]int16 {722,889,722,722,722,722,722,722,722,722,722,667,667,667,667,667,722,722,722,612,611,611,611,611,611,611,611,611,611,722,500,556,722,722,722,722,333,333,333,333,333,333,333,333,389,722,722,611,611,611,611,611,889,722,722,722,722,722,722,889,722,722,722,722,722,722,722,722,556,722,667,667,667,667,556,556,556,556,556,611,611,611,556,722,722,722,722,722,722,722,722,722,722,944,722,722,722,722,611,611,611,611,444,444,444,444,333,444,667,444,444,778,444,444,469,541,500,921,444,500,278,200,480,480,333,333,333,200,350,444,444,333,444,444,333,500,333,278,250,250,760,500,500,500,500,588,500,400,333,564,500,333,278,444,444,444,444,444,444,444,500,1000,444,1000,500,444,564,500,333,333,333,556,500,556,500,500,167,500,500,500,500,333,564,549,500,500,333,333,500,333,333,278,278,278,278,278,278,278,278,500,500,278,278,344,278,564,549,564,471,278,778,333,564,500,564,500,500,500,500,500,549,500,500,500,500,500,500,722,333,500,500,500,500,750,750,300,276,310,500,500,500,453,333,333,476,833,250,250,1000,564,564,500,444,444,408,444,444,444,333,333,333,180,333,333,453,333,333,760,333,389,389,389,389,389,500,278,500,500,278,250,500,600,278,326,278,500,500,750,300,333,980,500,300,500,500,500,500,500,500,500,500,500,500,500,722,500,500,500,500,500,444,444,444,444,500}; +func _gcc ()StdFont {_cbdc .Do (_dcaf );_fdc :=Descriptor {Name :TimesBoldName ,Family :_ebe ,Weight :FontWeightBold ,Flags :0x0020,BBox :[4]float64 {-168,-218,1000,935},ItalicAngle :0,Ascent :683,Descent :-217,CapHeight :676,XHeight :461,StemV :139,StemH :44}; +return NewStdFont (_fdc ,_gcgg );};type FontWeight int ;func _ded ()StdFont {_fcg .Do (_dea );_db :=Descriptor {Name :HelveticaObliqueName ,Family :string (HelveticaName ),Weight :FontWeightMedium ,Flags :0x0060,BBox :[4]float64 {-170,-225,1116,931},ItalicAngle :-12,Ascent :718,Descent :-207,CapHeight :718,XHeight :523,StemV :88,StemH :76}; +return NewStdFont (_db ,_ebb );};func _efg ()StdFont {_fcg .Do (_dea );_ag :=Descriptor {Name :HelveticaBoldName ,Family :string (HelveticaName ),Weight :FontWeightBold ,Flags :0x0020,BBox :[4]float64 {-170,-228,1003,962},ItalicAngle :0,Ascent :718,Descent :-207,CapHeight :718,XHeight :532,StemV :140,StemH :118}; +return NewStdFont (_ag ,_ebg );};func _gd ()StdFont {_aebf :=_dg .NewZapfDingbatsEncoder ();_fag :=Descriptor {Name :ZapfDingbatsName ,Family :string (ZapfDingbatsName ),Weight :FontWeightMedium ,Flags :0x0004,BBox :[4]float64 {-1,-143,981,820},ItalicAngle :0,Ascent :0,Descent :0,CapHeight :0,XHeight :0,StemV :90,StemH :28}; +return NewStdFontWithEncoding (_fag ,_gec ,_aebf );};var _ce =[]int16 {611,889,611,611,611,611,611,611,611,611,611,611,667,667,667,667,722,722,722,612,611,611,611,611,611,611,611,611,611,722,500,611,722,722,722,722,333,333,333,333,333,333,333,333,444,667,667,556,556,611,556,556,833,667,667,667,667,667,722,944,722,722,722,722,722,722,722,722,611,722,611,611,611,611,500,500,500,500,500,556,556,556,611,722,722,722,722,722,722,722,722,722,611,833,611,556,556,556,556,556,556,556,500,500,500,500,333,500,667,500,500,778,500,500,422,541,500,920,500,500,278,275,400,400,389,389,333,275,350,444,444,333,444,444,333,500,333,333,250,250,760,500,500,500,500,544,500,400,333,675,500,333,278,444,444,444,444,444,444,444,500,889,444,889,500,444,675,500,333,389,278,500,500,500,500,500,167,500,500,500,500,333,675,549,500,500,333,333,500,333,333,278,278,278,278,278,278,278,278,444,444,278,278,300,278,675,549,675,471,278,722,333,675,500,675,500,500,500,500,500,549,500,500,500,500,500,500,667,333,500,500,500,500,750,750,300,276,310,500,500,500,523,333,333,476,833,250,250,1000,675,675,500,500,500,420,556,556,556,333,333,333,214,389,389,453,389,389,760,333,389,389,389,389,389,500,333,500,500,278,250,500,600,278,300,278,500,500,750,300,333,980,500,300,500,500,500,500,500,500,500,500,500,500,444,667,444,444,444,444,500,389,389,389,389,500}; +func _geg ()StdFont {_fcg .Do (_dea );_ac :=Descriptor {Name :HelveticaBoldObliqueName ,Family :string (HelveticaName ),Weight :FontWeightBold ,Flags :0x0060,BBox :[4]float64 {-174,-228,1114,962},ItalicAngle :-12,Ascent :718,Descent :-207,CapHeight :718,XHeight :532,StemV :140,StemH :118}; +return NewStdFont (_ac ,_fff );};func init (){RegisterStdFont (CourierName ,_fgc ,"\u0043\u006f\u0075\u0072\u0069\u0065\u0072\u0043\u006f\u0075\u0072\u0069e\u0072\u004e\u0065\u0077","\u0043\u006f\u0075\u0072\u0069\u0065\u0072\u004e\u0065\u0077");RegisterStdFont (CourierBoldName ,_cbd ,"\u0043o\u0075r\u0069\u0065\u0072\u004e\u0065\u0077\u002c\u0042\u006f\u006c\u0064"); +RegisterStdFont (CourierObliqueName ,_dff ,"\u0043\u006f\u0075\u0072\u0069\u0065\u0072\u004e\u0065\u0077\u002c\u0049t\u0061\u006c\u0069\u0063");RegisterStdFont (CourierBoldObliqueName ,_afc ,"C\u006f\u0075\u0072\u0069er\u004ee\u0077\u002c\u0042\u006f\u006cd\u0049\u0074\u0061\u006c\u0069\u0063"); +};type StdFontName string ;var _aga =[]int16 {722,1000,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,612,667,667,667,667,667,667,667,667,667,722,556,611,778,778,778,722,278,278,278,278,278,278,278,278,556,722,722,611,611,611,611,611,833,722,722,722,722,722,778,1000,778,778,778,778,778,778,778,778,667,778,722,722,722,722,667,667,667,667,667,611,611,611,667,722,722,722,722,722,722,722,722,722,667,944,667,667,667,667,611,611,611,611,556,556,556,556,333,556,889,556,556,722,556,556,584,584,389,975,556,611,278,280,389,389,333,333,333,280,350,556,556,333,556,556,333,556,333,333,278,250,737,556,611,556,556,743,611,400,333,584,556,333,278,556,556,556,556,556,556,556,556,1000,556,1000,556,556,584,611,333,333,333,611,556,611,556,556,167,611,611,611,611,333,584,549,556,556,333,333,611,333,333,278,278,278,278,278,278,278,278,556,556,278,278,400,278,584,549,584,494,278,889,333,584,611,584,611,611,611,611,556,549,611,556,611,611,611,611,944,333,611,611,611,556,834,834,333,370,365,611,611,611,556,333,333,494,889,278,278,1000,584,584,611,611,611,474,500,500,500,278,278,278,238,389,389,549,389,389,737,333,556,556,556,556,556,556,333,556,556,278,278,556,600,333,389,333,611,556,834,333,333,1000,556,333,611,611,611,611,611,611,611,556,611,611,556,778,556,556,556,556,556,500,500,500,500,556}; +var _ddc *RuneCharSafeMap ;func NewStdFontWithEncoding (desc Descriptor ,metrics *RuneCharSafeMap ,encoder _dg .TextEncoder )StdFont {var _gbc rune =0xA0;if _ ,_gbb :=metrics .Read (_gbc );!_gbb {_fec ,_ :=metrics .Read (0x20);metrics .Write (_gbc ,_fec ); +};return StdFont {_be :desc ,_ge :metrics ,_df :encoder };};type StdFont struct{_be Descriptor ;_ge *RuneCharSafeMap ;_df _dg .TextEncoder ;};func (_bebc *ttfParser )ParseHhea ()error {if _edag :=_bebc .Seek ("\u0068\u0068\u0065\u0061");_edag !=nil {return _edag ; +};_bebc .Skip (4+15*2);_bebc ._adf =_bebc .ReadUShort ();return nil ;};func TtfParseFile (fileStr string )(TtfType ,error ){_bdf ,_dfbef :=_d .Open (fileStr );if _dfbef !=nil {return TtfType {},_dfbef ;};defer _bdf .Close ();return TtfParse (_bdf );};func (_fgd *ttfParser )ReadUShort ()(_adcg uint16 ){_fg .Read (_fgd ._cdb ,_fg .BigEndian ,&_adcg ); +return _adcg ;};var _fbab =&RuneCharSafeMap {_ee :map[rune ]CharMetrics {' ':{Wx :250},'!':{Wx :333},'#':{Wx :500},'%':{Wx :833},'&':{Wx :778},'(':{Wx :333},')':{Wx :333},'+':{Wx :549},',':{Wx :250},'.':{Wx :250},'/':{Wx :278},'0':{Wx :500},'1':{Wx :500},'2':{Wx :500},'3':{Wx :500},'4':{Wx :500},'5':{Wx :500},'6':{Wx :500},'7':{Wx :500},'8':{Wx :500},'9':{Wx :500},':':{Wx :278},';':{Wx :278},'<':{Wx :549},'=':{Wx :549},'>':{Wx :549},'?':{Wx :444},'[':{Wx :333},']':{Wx :333},'_':{Wx :500},'{':{Wx :480},'|':{Wx :200},'}':{Wx :480},'¬':{Wx :713},'°':{Wx :400},'±':{Wx :549},'µ':{Wx :576},'×':{Wx :549},'÷':{Wx :549},'ƒ':{Wx :500},'Α':{Wx :722},'Β':{Wx :667},'Γ':{Wx :603},'Ε':{Wx :611},'Ζ':{Wx :611},'Η':{Wx :722},'Θ':{Wx :741},'Ι':{Wx :333},'Κ':{Wx :722},'Λ':{Wx :686},'Μ':{Wx :889},'Ν':{Wx :722},'Ξ':{Wx :645},'Ο':{Wx :722},'Π':{Wx :768},'Ρ':{Wx :556},'Σ':{Wx :592},'Τ':{Wx :611},'Υ':{Wx :690},'Φ':{Wx :763},'Χ':{Wx :722},'Ψ':{Wx :795},'α':{Wx :631},'β':{Wx :549},'γ':{Wx :411},'δ':{Wx :494},'ε':{Wx :439},'ζ':{Wx :494},'η':{Wx :603},'θ':{Wx :521},'ι':{Wx :329},'κ':{Wx :549},'λ':{Wx :549},'ν':{Wx :521},'ξ':{Wx :493},'ο':{Wx :549},'π':{Wx :549},'ρ':{Wx :549},'ς':{Wx :439},'σ':{Wx :603},'τ':{Wx :439},'υ':{Wx :576},'φ':{Wx :521},'χ':{Wx :549},'ψ':{Wx :686},'ω':{Wx :686},'ϑ':{Wx :631},'ϒ':{Wx :620},'ϕ':{Wx :603},'ϖ':{Wx :713},'•':{Wx :460},'…':{Wx :1000},'′':{Wx :247},'″':{Wx :411},'⁄':{Wx :167},'€':{Wx :750},'ℑ':{Wx :686},'℘':{Wx :987},'ℜ':{Wx :795},'Ω':{Wx :768},'ℵ':{Wx :823},'←':{Wx :987},'↑':{Wx :603},'→':{Wx :987},'↓':{Wx :603},'↔':{Wx :1042},'↵':{Wx :658},'⇐':{Wx :987},'⇑':{Wx :603},'⇒':{Wx :987},'⇓':{Wx :603},'⇔':{Wx :1042},'∀':{Wx :713},'∂':{Wx :494},'∃':{Wx :549},'∅':{Wx :823},'∆':{Wx :612},'∇':{Wx :713},'∈':{Wx :713},'∉':{Wx :713},'∋':{Wx :439},'∏':{Wx :823},'∑':{Wx :713},'−':{Wx :549},'∗':{Wx :500},'√':{Wx :549},'∝':{Wx :713},'∞':{Wx :713},'∠':{Wx :768},'∧':{Wx :603},'∨':{Wx :603},'∩':{Wx :768},'∪':{Wx :768},'∫':{Wx :274},'∴':{Wx :863},'∼':{Wx :549},'≅':{Wx :549},'≈':{Wx :549},'≠':{Wx :549},'≡':{Wx :549},'≤':{Wx :549},'≥':{Wx :549},'⊂':{Wx :713},'⊃':{Wx :713},'⊄':{Wx :713},'⊆':{Wx :713},'⊇':{Wx :713},'⊕':{Wx :768},'⊗':{Wx :768},'⊥':{Wx :658},'⋅':{Wx :250},'⌠':{Wx :686},'⌡':{Wx :686},'〈':{Wx :329},'〉':{Wx :329},'◊':{Wx :494},'♠':{Wx :753},'♣':{Wx :753},'♥':{Wx :753},'♦':{Wx :753},'\uf6d9':{Wx :790},'\uf6da':{Wx :790},'\uf6db':{Wx :890},'\uf8e5':{Wx :500},'\uf8e6':{Wx :603},'\uf8e7':{Wx :1000},'\uf8e8':{Wx :790},'\uf8e9':{Wx :790},'\uf8ea':{Wx :786},'\uf8eb':{Wx :384},'\uf8ec':{Wx :384},'\uf8ed':{Wx :384},'\uf8ee':{Wx :384},'\uf8ef':{Wx :384},'\uf8f0':{Wx :384},'\uf8f1':{Wx :494},'\uf8f2':{Wx :494},'\uf8f3':{Wx :494},'\uf8f4':{Wx :494},'\uf8f5':{Wx :686},'\uf8f6':{Wx :384},'\uf8f7':{Wx :384},'\uf8f8':{Wx :384},'\uf8f9':{Wx :384},'\uf8fa':{Wx :384},'\uf8fb':{Wx :384},'\uf8fc':{Wx :494},'\uf8fd':{Wx :494},'\uf8fe':{Wx :494},'\uf8ff':{Wx :790}}}; +const (_ebe ="\u0054\u0069\u006de\u0073";TimesRomanName =StdFontName ("T\u0069\u006d\u0065\u0073\u002d\u0052\u006f\u006d\u0061\u006e");TimesBoldName =StdFontName ("\u0054\u0069\u006d\u0065\u0073\u002d\u0042\u006f\u006c\u0064");TimesItalicName =StdFontName ("\u0054\u0069\u006de\u0073\u002d\u0049\u0074\u0061\u006c\u0069\u0063"); +TimesBoldItalicName =StdFontName ("\u0054\u0069m\u0065\u0073\u002dB\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063"););func (_adb *RuneCharSafeMap )Write (b rune ,r CharMetrics ){_adb ._fc .Lock ();defer _adb ._fc .Unlock ();_adb ._ee [b ]=r ;}; +func init (){RegisterStdFont (HelveticaName ,_efa ,"\u0041\u0072\u0069a\u006c");RegisterStdFont (HelveticaBoldName ,_efg ,"\u0041\u0072\u0069\u0061\u006c\u002c\u0042\u006f\u006c\u0064");RegisterStdFont (HelveticaObliqueName ,_ded ,"\u0041\u0072\u0069a\u006c\u002c\u0049\u0074\u0061\u006c\u0069\u0063"); +RegisterStdFont (HelveticaBoldObliqueName ,_geg ,"\u0041\u0072i\u0061\u006c\u002cB\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063");};func (_gabf *ttfParser )ReadStr (length int )(string ,error ){_abe :=make ([]byte ,length );_caa ,_becb :=_gabf ._cdb .Read (_abe ); +if _becb !=nil {return "",_becb ;}else if _caa !=length {return "",_eg .Errorf ("\u0075\u006e\u0061bl\u0065\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0073",length );};return string (_abe ),nil ;};func (_dca StdFont )GetRuneMetrics (r rune )(CharMetrics ,bool ){_abc ,_egd :=_dca ._ge .Read (r ); +return _abc ,_egd ;};var _gec =&RuneCharSafeMap {_ee :map[rune ]CharMetrics {' ':{Wx :278},'→':{Wx :838},'↔':{Wx :1016},'↕':{Wx :458},'①':{Wx :788},'②':{Wx :788},'③':{Wx :788},'④':{Wx :788},'⑤':{Wx :788},'⑥':{Wx :788},'⑦':{Wx :788},'⑧':{Wx :788},'⑨':{Wx :788},'⑩':{Wx :788},'■':{Wx :761},'▲':{Wx :892},'▼':{Wx :892},'◆':{Wx :788},'●':{Wx :791},'◗':{Wx :438},'★':{Wx :816},'☎':{Wx :719},'☛':{Wx :960},'☞':{Wx :939},'♠':{Wx :626},'♣':{Wx :776},'♥':{Wx :694},'♦':{Wx :595},'✁':{Wx :974},'✂':{Wx :961},'✃':{Wx :974},'✄':{Wx :980},'✆':{Wx :789},'✇':{Wx :790},'✈':{Wx :791},'✉':{Wx :690},'✌':{Wx :549},'✍':{Wx :855},'✎':{Wx :911},'✏':{Wx :933},'✐':{Wx :911},'✑':{Wx :945},'✒':{Wx :974},'✓':{Wx :755},'✔':{Wx :846},'✕':{Wx :762},'✖':{Wx :761},'✗':{Wx :571},'✘':{Wx :677},'✙':{Wx :763},'✚':{Wx :760},'✛':{Wx :759},'✜':{Wx :754},'✝':{Wx :494},'✞':{Wx :552},'✟':{Wx :537},'✠':{Wx :577},'✡':{Wx :692},'✢':{Wx :786},'✣':{Wx :788},'✤':{Wx :788},'✥':{Wx :790},'✦':{Wx :793},'✧':{Wx :794},'✩':{Wx :823},'✪':{Wx :789},'✫':{Wx :841},'✬':{Wx :823},'✭':{Wx :833},'✮':{Wx :816},'✯':{Wx :831},'✰':{Wx :923},'✱':{Wx :744},'✲':{Wx :723},'✳':{Wx :749},'✴':{Wx :790},'✵':{Wx :792},'✶':{Wx :695},'✷':{Wx :776},'✸':{Wx :768},'✹':{Wx :792},'✺':{Wx :759},'✻':{Wx :707},'✼':{Wx :708},'✽':{Wx :682},'✾':{Wx :701},'✿':{Wx :826},'❀':{Wx :815},'❁':{Wx :789},'❂':{Wx :789},'❃':{Wx :707},'❄':{Wx :687},'❅':{Wx :696},'❆':{Wx :689},'❇':{Wx :786},'❈':{Wx :787},'❉':{Wx :713},'❊':{Wx :791},'❋':{Wx :785},'❍':{Wx :873},'❏':{Wx :762},'❐':{Wx :762},'❑':{Wx :759},'❒':{Wx :759},'❖':{Wx :784},'❘':{Wx :138},'❙':{Wx :277},'❚':{Wx :415},'❛':{Wx :392},'❜':{Wx :392},'❝':{Wx :668},'❞':{Wx :668},'❡':{Wx :732},'❢':{Wx :544},'❣':{Wx :544},'❤':{Wx :910},'❥':{Wx :667},'❦':{Wx :760},'❧':{Wx :760},'❶':{Wx :788},'❷':{Wx :788},'❸':{Wx :788},'❹':{Wx :788},'❺':{Wx :788},'❻':{Wx :788},'❼':{Wx :788},'❽':{Wx :788},'❾':{Wx :788},'❿':{Wx :788},'➀':{Wx :788},'➁':{Wx :788},'➂':{Wx :788},'➃':{Wx :788},'➄':{Wx :788},'➅':{Wx :788},'➆':{Wx :788},'➇':{Wx :788},'➈':{Wx :788},'➉':{Wx :788},'➊':{Wx :788},'➋':{Wx :788},'➌':{Wx :788},'➍':{Wx :788},'➎':{Wx :788},'➏':{Wx :788},'➐':{Wx :788},'➑':{Wx :788},'➒':{Wx :788},'➓':{Wx :788},'➔':{Wx :894},'➘':{Wx :748},'➙':{Wx :924},'➚':{Wx :748},'➛':{Wx :918},'➜':{Wx :927},'➝':{Wx :928},'➞':{Wx :928},'➟':{Wx :834},'➠':{Wx :873},'➡':{Wx :828},'➢':{Wx :924},'➣':{Wx :924},'➤':{Wx :917},'➥':{Wx :930},'➦':{Wx :931},'➧':{Wx :463},'➨':{Wx :883},'➩':{Wx :836},'➪':{Wx :836},'➫':{Wx :867},'➬':{Wx :867},'➭':{Wx :696},'➮':{Wx :696},'➯':{Wx :874},'➱':{Wx :874},'➲':{Wx :760},'➳':{Wx :946},'➴':{Wx :771},'➵':{Wx :865},'➶':{Wx :771},'➷':{Wx :888},'➸':{Wx :967},'➹':{Wx :888},'➺':{Wx :831},'➻':{Wx :873},'➼':{Wx :927},'➽':{Wx :970},'➾':{Wx :918},'\uf8d7':{Wx :390},'\uf8d8':{Wx :390},'\uf8d9':{Wx :317},'\uf8da':{Wx :317},'\uf8db':{Wx :276},'\uf8dc':{Wx :276},'\uf8dd':{Wx :509},'\uf8de':{Wx :509},'\uf8df':{Wx :410},'\uf8e0':{Wx :410},'\uf8e1':{Wx :234},'\uf8e2':{Wx :234},'\uf8e3':{Wx :334},'\uf8e4':{Wx :334}}}; +var _ffe =[]GlyphName {"\u002en\u006f\u0074\u0064\u0065\u0066","\u002e\u006e\u0075l\u006c","\u006e\u006fn\u006d\u0061\u0072k\u0069\u006e\u0067\u0072\u0065\u0074\u0075\u0072\u006e","\u0073\u0070\u0061c\u0065","\u0065\u0078\u0063\u006c\u0061\u006d","\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c","\u006e\u0075\u006d\u0062\u0065\u0072\u0073\u0069\u0067\u006e","\u0064\u006f\u006c\u006c\u0061\u0072","\u0070e\u0072\u0063\u0065\u006e\u0074","\u0061m\u0070\u0065\u0072\u0073\u0061\u006ed","q\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067\u006c\u0065","\u0070a\u0072\u0065\u006e\u006c\u0065\u0066t","\u0070\u0061\u0072\u0065\u006e\u0072\u0069\u0067\u0068\u0074","\u0061\u0073\u0074\u0065\u0072\u0069\u0073\u006b","\u0070\u006c\u0075\u0073","\u0063\u006f\u006dm\u0061","\u0068\u0079\u0070\u0068\u0065\u006e","\u0070\u0065\u0072\u0069\u006f\u0064","\u0073\u006c\u0061s\u0068","\u007a\u0065\u0072\u006f","\u006f\u006e\u0065","\u0074\u0077\u006f","\u0074\u0068\u0072e\u0065","\u0066\u006f\u0075\u0072","\u0066\u0069\u0076\u0065","\u0073\u0069\u0078","\u0073\u0065\u0076e\u006e","\u0065\u0069\u0067h\u0074","\u006e\u0069\u006e\u0065","\u0063\u006f\u006co\u006e","\u0073e\u006d\u0069\u0063\u006f\u006c\u006fn","\u006c\u0065\u0073\u0073","\u0065\u0071\u0075a\u006c","\u0067r\u0065\u0061\u0074\u0065\u0072","\u0071\u0075\u0065\u0073\u0074\u0069\u006f\u006e","\u0061\u0074","\u0041","\u0042","\u0043","\u0044","\u0045","\u0046","\u0047","\u0048","\u0049","\u004a","\u004b","\u004c","\u004d","\u004e","\u004f","\u0050","\u0051","\u0052","\u0053","\u0054","\u0055","\u0056","\u0057","\u0058","\u0059","\u005a","b\u0072\u0061\u0063\u006b\u0065\u0074\u006c\u0065\u0066\u0074","\u0062a\u0063\u006b\u0073\u006c\u0061\u0073h","\u0062\u0072\u0061c\u006b\u0065\u0074\u0072\u0069\u0067\u0068\u0074","a\u0073\u0063\u0069\u0069\u0063\u0069\u0072\u0063\u0075\u006d","\u0075\u006e\u0064\u0065\u0072\u0073\u0063\u006f\u0072\u0065","\u0067\u0072\u0061v\u0065","\u0061","\u0062","\u0063","\u0064","\u0065","\u0066","\u0067","\u0068","\u0069","\u006a","\u006b","\u006c","\u006d","\u006e","\u006f","\u0070","\u0071","\u0072","\u0073","\u0074","\u0075","\u0076","\u0077","\u0078","\u0079","\u007a","\u0062r\u0061\u0063\u0065\u006c\u0065\u0066t","\u0062\u0061\u0072","\u0062\u0072\u0061\u0063\u0065\u0072\u0069\u0067\u0068\u0074","\u0061\u0073\u0063\u0069\u0069\u0074\u0069\u006c\u0064\u0065","\u0041d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0041\u0072\u0069n\u0067","\u0043\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0045\u0061\u0063\u0075\u0074\u0065","\u004e\u0074\u0069\u006c\u0064\u0065","\u004fd\u0069\u0065\u0072\u0065\u0073\u0069s","\u0055d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0061\u0061\u0063\u0075\u0074\u0065","\u0061\u0067\u0072\u0061\u0076\u0065","a\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0061d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0061\u0074\u0069\u006c\u0064\u0065","\u0061\u0072\u0069n\u0067","\u0063\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0065\u0061\u0063\u0075\u0074\u0065","\u0065\u0067\u0072\u0061\u0076\u0065","e\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0065d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0069\u0061\u0063\u0075\u0074\u0065","\u0069\u0067\u0072\u0061\u0076\u0065","i\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0069d\u0069\u0065\u0072\u0065\u0073\u0069s","\u006e\u0074\u0069\u006c\u0064\u0065","\u006f\u0061\u0063\u0075\u0074\u0065","\u006f\u0067\u0072\u0061\u0076\u0065","o\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u006fd\u0069\u0065\u0072\u0065\u0073\u0069s","\u006f\u0074\u0069\u006c\u0064\u0065","\u0075\u0061\u0063\u0075\u0074\u0065","\u0075\u0067\u0072\u0061\u0076\u0065","u\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0075d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0064\u0061\u0067\u0067\u0065\u0072","\u0064\u0065\u0067\u0072\u0065\u0065","\u0063\u0065\u006e\u0074","\u0073\u0074\u0065\u0072\u006c\u0069\u006e\u0067","\u0073e\u0063\u0074\u0069\u006f\u006e","\u0062\u0075\u006c\u006c\u0065\u0074","\u0070a\u0072\u0061\u0067\u0072\u0061\u0070h","\u0067\u0065\u0072\u006d\u0061\u006e\u0064\u0062\u006c\u0073","\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064","\u0063o\u0070\u0079\u0072\u0069\u0067\u0068t","\u0074r\u0061\u0064\u0065\u006d\u0061\u0072k","\u0061\u0063\u0075t\u0065","\u0064\u0069\u0065\u0072\u0065\u0073\u0069\u0073","\u006e\u006f\u0074\u0065\u0071\u0075\u0061\u006c","\u0041\u0045","\u004f\u0073\u006c\u0061\u0073\u0068","\u0069\u006e\u0066\u0069\u006e\u0069\u0074\u0079","\u0070l\u0075\u0073\u006d\u0069\u006e\u0075s","\u006ce\u0073\u0073\u0065\u0071\u0075\u0061l","\u0067\u0072\u0065a\u0074\u0065\u0072\u0065\u0071\u0075\u0061\u006c","\u0079\u0065\u006e","\u006d\u0075","p\u0061\u0072\u0074\u0069\u0061\u006c\u0064\u0069\u0066\u0066","\u0073u\u006d\u006d\u0061\u0074\u0069\u006fn","\u0070r\u006f\u0064\u0075\u0063\u0074","\u0070\u0069","\u0069\u006e\u0074\u0065\u0067\u0072\u0061\u006c","o\u0072\u0064\u0066\u0065\u006d\u0069\u006e\u0069\u006e\u0065","\u006f\u0072\u0064m\u0061\u0073\u0063\u0075\u006c\u0069\u006e\u0065","\u004f\u006d\u0065g\u0061","\u0061\u0065","\u006f\u0073\u006c\u0061\u0073\u0068","\u0071\u0075\u0065s\u0074\u0069\u006f\u006e\u0064\u006f\u0077\u006e","\u0065\u0078\u0063\u006c\u0061\u006d\u0064\u006f\u0077\u006e","\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u006e\u006f\u0074","\u0072a\u0064\u0069\u0063\u0061\u006c","\u0066\u006c\u006f\u0072\u0069\u006e","a\u0070\u0070\u0072\u006f\u0078\u0065\u0071\u0075\u0061\u006c","\u0044\u0065\u006ct\u0061","\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074\u006c\u0065\u0066\u0074","\u0067\u0075\u0069\u006c\u006c\u0065\u006d\u006f\u0074r\u0069\u0067\u0068\u0074","\u0065\u006c\u006c\u0069\u0070\u0073\u0069\u0073","\u006e\u006fn\u0062\u0072\u0065a\u006b\u0069\u006e\u0067\u0073\u0070\u0061\u0063\u0065","\u0041\u0067\u0072\u0061\u0076\u0065","\u0041\u0074\u0069\u006c\u0064\u0065","\u004f\u0074\u0069\u006c\u0064\u0065","\u004f\u0045","\u006f\u0065","\u0065\u006e\u0064\u0061\u0073\u0068","\u0065\u006d\u0064\u0061\u0073\u0068","\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u006c\u0065\u0066\u0074","\u0071\u0075\u006f\u0074\u0065\u0064\u0062\u006c\u0072\u0069\u0067\u0068\u0074","\u0071u\u006f\u0074\u0065\u006c\u0065\u0066t","\u0071\u0075\u006f\u0074\u0065\u0072\u0069\u0067\u0068\u0074","\u0064\u0069\u0076\u0069\u0064\u0065","\u006co\u007a\u0065\u006e\u0067\u0065","\u0079d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0059d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0066\u0072\u0061\u0063\u0074\u0069\u006f\u006e","\u0063\u0075\u0072\u0072\u0065\u006e\u0063\u0079","\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006c\u006c\u0065\u0066\u0074","\u0067\u0075\u0069\u006c\u0073\u0069\u006e\u0067\u006cr\u0069\u0067\u0068\u0074","\u0066\u0069","\u0066\u006c","\u0064a\u0067\u0067\u0065\u0072\u0064\u0062l","\u0070\u0065\u0072\u0069\u006f\u0064\u0063\u0065\u006et\u0065\u0072\u0065\u0064","\u0071\u0075\u006f\u0074\u0065\u0073\u0069\u006e\u0067l\u0062\u0061\u0073\u0065","\u0071\u0075\u006ft\u0065\u0064\u0062\u006c\u0062\u0061\u0073\u0065","p\u0065\u0072\u0074\u0068\u006f\u0075\u0073\u0061\u006e\u0064","A\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","E\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0041\u0061\u0063\u0075\u0074\u0065","\u0045d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0045\u0067\u0072\u0061\u0076\u0065","\u0049\u0061\u0063\u0075\u0074\u0065","I\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0049d\u0069\u0065\u0072\u0065\u0073\u0069s","\u0049\u0067\u0072\u0061\u0076\u0065","\u004f\u0061\u0063\u0075\u0074\u0065","O\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0061\u0070\u0070l\u0065","\u004f\u0067\u0072\u0061\u0076\u0065","\u0055\u0061\u0063\u0075\u0074\u0065","U\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0055\u0067\u0072\u0061\u0076\u0065","\u0064\u006f\u0074\u006c\u0065\u0073\u0073\u0069","\u0063\u0069\u0072\u0063\u0075\u006d\u0066\u006c\u0065\u0078","\u0074\u0069\u006cd\u0065","\u006d\u0061\u0063\u0072\u006f\u006e","\u0062\u0072\u0065v\u0065","\u0064o\u0074\u0061\u0063\u0063\u0065\u006et","\u0072\u0069\u006e\u0067","\u0063e\u0064\u0069\u006c\u006c\u0061","\u0068\u0075\u006eg\u0061\u0072\u0075\u006d\u006c\u0061\u0075\u0074","\u006f\u0067\u006f\u006e\u0065\u006b","\u0063\u0061\u0072o\u006e","\u004c\u0073\u006c\u0061\u0073\u0068","\u006c\u0073\u006c\u0061\u0073\u0068","\u0053\u0063\u0061\u0072\u006f\u006e","\u0073\u0063\u0061\u0072\u006f\u006e","\u005a\u0063\u0061\u0072\u006f\u006e","\u007a\u0063\u0061\u0072\u006f\u006e","\u0062r\u006f\u006b\u0065\u006e\u0062\u0061r","\u0045\u0074\u0068","\u0065\u0074\u0068","\u0059\u0061\u0063\u0075\u0074\u0065","\u0079\u0061\u0063\u0075\u0074\u0065","\u0054\u0068\u006fr\u006e","\u0074\u0068\u006fr\u006e","\u006d\u0069\u006eu\u0073","\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0079","o\u006e\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072","t\u0077\u006f\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072","\u0074\u0068\u0072\u0065\u0065\u0073\u0075\u0070\u0065\u0072\u0069\u006f\u0072","\u006fn\u0065\u0068\u0061\u006c\u0066","\u006f\u006e\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072","\u0074\u0068\u0072\u0065\u0065\u0071\u0075\u0061\u0072\u0074\u0065\u0072\u0073","\u0066\u0072\u0061n\u0063","\u0047\u0062\u0072\u0065\u0076\u0065","\u0067\u0062\u0072\u0065\u0076\u0065","\u0049\u0064\u006f\u0074\u0061\u0063\u0063\u0065\u006e\u0074","\u0053\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0073\u0063\u0065\u0064\u0069\u006c\u006c\u0061","\u0043\u0061\u0063\u0075\u0074\u0065","\u0063\u0061\u0063\u0075\u0074\u0065","\u0043\u0063\u0061\u0072\u006f\u006e","\u0063\u0063\u0061\u0072\u006f\u006e","\u0064\u0063\u0072\u006f\u0061\u0074"}; +func (_bagf *ttfParser )ReadULong ()(_dbf uint32 ){_fg .Read (_bagf ._cdb ,_fg .BigEndian ,&_dbf );return _dbf ;};var _ggd *RuneCharSafeMap ;type Font interface{Encoder ()_dg .TextEncoder ;GetRuneMetrics (_bf rune )(CharMetrics ,bool );};func (_ebbf *TtfType )String ()string {return _eg .Sprintf ("\u0046\u004fN\u0054\u005f\u0046\u0049\u004cE\u0032\u007b\u0025\u0023\u0071 \u0055\u006e\u0069\u0074\u0073\u0050\u0065\u0072\u0045\u006d\u003d\u0025\u0064\u0020\u0042\u006f\u006c\u0064\u003d\u0025\u0074\u0020\u0049\u0074\u0061\u006c\u0069\u0063\u0041\u006e\u0067\u006c\u0065\u003d\u0025\u0066\u0020"+"\u0043\u0061pH\u0065\u0069\u0067h\u0074\u003d\u0025\u0064 Ch\u0061rs\u003d\u0025\u0064\u0020\u0047\u006c\u0079ph\u004e\u0061\u006d\u0065\u0073\u003d\u0025d\u007d",_ebbf .PostScriptName ,_ebbf .UnitsPerEm ,_ebbf .Bold ,_ebbf .ItalicAngle ,_ebbf .CapHeight ,len (_ebbf .Chars ),len (_ebbf .GlyphNames )); +};func _dea (){_gcaa =MakeRuneCharSafeMap (len (_bec ));_ebg =MakeRuneCharSafeMap (len (_bec ));for _fcd ,_gg :=range _bec {_gcaa .Write (_gg ,CharMetrics {Wx :float64 (_gcg [_fcd ])});_ebg .Write (_gg ,CharMetrics {Wx :float64 (_aga [_fcd ])});};_ebb =_gcaa .Copy (); +_fff =_ebg .Copy ();};type CharMetrics struct{Wx float64 ;Wy float64 ;};func _efc ()StdFont {_cbdc .Do (_dcaf );_edb :=Descriptor {Name :TimesBoldItalicName ,Family :_ebe ,Weight :FontWeightBold ,Flags :0x0060,BBox :[4]float64 {-200,-218,996,921},ItalicAngle :-15,Ascent :683,Descent :-217,CapHeight :669,XHeight :462,StemV :121,StemH :42}; +return NewStdFont (_edb ,_ggd );};func (_bfb *ttfParser )parseCmapSubtable31 (_fbd int64 )error {_gagg :=make ([]rune ,0,8);_dada :=make ([]rune ,0,8);_eff :=make ([]int16 ,0,8);_faca :=make ([]uint16 ,0,8);_bfb ._fce .Chars =make (map[rune ]GID );_bfb ._cdb .Seek (int64 (_bfb ._eef ["\u0063\u006d\u0061\u0070"])+_fbd ,_dc .SeekStart ); +_debd :=_bfb .ReadUShort ();if _debd !=4{_ae .Log .Debug ("u\u006e\u0065\u0078\u0070\u0065\u0063t\u0065\u0064\u0020\u0073\u0075\u0062t\u0061\u0062\u006c\u0065\u0020\u0066\u006fr\u006d\u0061\u0074\u003a\u0020\u0025\u0064\u0020\u0028\u0025w\u0029",_debd ); +return nil ;};_bfb .Skip (2*2);_eca :=int (_bfb .ReadUShort ()/2);_bfb .Skip (3*2);for _abd :=0;_abd < _eca ;_abd ++{_dada =append (_dada ,rune (_bfb .ReadUShort ()));};_bfb .Skip (2);for _gea :=0;_gea < _eca ;_gea ++{_gagg =append (_gagg ,rune (_bfb .ReadUShort ())); +};for _feeb :=0;_feeb < _eca ;_feeb ++{_eff =append (_eff ,_bfb .ReadShort ());};_eafe ,_ :=_bfb ._cdb .Seek (int64 (0),_dc .SeekCurrent );for _gaf :=0;_gaf < _eca ;_gaf ++{_faca =append (_faca ,_bfb .ReadUShort ());};for _bfa :=0;_bfa < _eca ;_bfa ++{_bbfb :=_gagg [_bfa ]; +_dffc :=_dada [_bfa ];_eag :=_eff [_bfa ];_ebgd :=_faca [_bfa ];if _ebgd > 0{_bfb ._cdb .Seek (_eafe +2*int64 (_bfa )+int64 (_ebgd ),_dc .SeekStart );};for _gce :=_bbfb ;_gce <=_dffc ;_gce ++{if _gce ==0xFFFF{break ;};var _acf int32 ;if _ebgd > 0{_acf =int32 (_bfb .ReadUShort ()); +if _acf > 0{_acf +=int32 (_eag );};}else {_acf =_gce +int32 (_eag );};if _acf >=65536{_acf -=65536;};if _acf > 0{_bfb ._fce .Chars [_gce ]=GID (_acf );};};};return nil ;};var _ebb *RuneCharSafeMap ;func init (){RegisterStdFont (SymbolName ,_eec ,"\u0053\u0079\u006d\u0062\u006f\u006c\u002c\u0049\u0074\u0061\u006c\u0069\u0063","S\u0079\u006d\u0062\u006f\u006c\u002c\u0042\u006f\u006c\u0064","\u0053\u0079\u006d\u0062\u006f\u006c\u002c\u0042\u006f\u006c\u0064\u0049t\u0061\u006c\u0069\u0063"); +RegisterStdFont (ZapfDingbatsName ,_gd );};var _ed =&fontMap {_gca :make (map[StdFontName ]func ()StdFont )};func (_aeb *fontMap )read (_dgb StdFontName )(func ()StdFont ,bool ){_aeb .Lock ();defer _aeb .Unlock ();_bd ,_fd :=_aeb ._gca [_dgb ];return _bd ,_fd ; +};func _dcaf (){_ecg =MakeRuneCharSafeMap (len (_bec ));_gcgg =MakeRuneCharSafeMap (len (_bec ));_ggd =MakeRuneCharSafeMap (len (_bec ));_ddc =MakeRuneCharSafeMap (len (_bec ));for _beb ,_eeec :=range _bec {_ecg .Write (_eeec ,CharMetrics {Wx :float64 (_eba [_beb ])}); +_gcgg .Write (_eeec ,CharMetrics {Wx :float64 (_gee [_beb ])});_ggd .Write (_eeec ,CharMetrics {Wx :float64 (_geca [_beb ])});_ddc .Write (_eeec ,CharMetrics {Wx :float64 (_ce [_beb ])});};};func NewFontFile2FromPdfObject (obj _gc .PdfObject )(TtfType ,error ){obj =_gc .TraceToDirectObject (obj ); +_cgd ,_eefc :=obj .(*_gc .PdfObjectStream );if !_eefc {_ae .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0032\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065 \u0061\u0020\u0073\u0074\u0072e\u0061\u006d \u0028\u0025\u0054\u0029",obj ); +return TtfType {},_gc .ErrTypeError ;};_eea ,_dbe :=_gc .DecodeStream (_cgd );if _dbe !=nil {return TtfType {},_dbe ;};_bbfec :=ttfParser {_cdb :_af .NewReader (_eea )};return _bbfec .Parse ();};func (_feac *TtfType )NewEncoder ()_dg .TextEncoder {return _dg .NewTrueTypeFontEncoder (_feac .Chars )}; +func init (){RegisterStdFont (TimesRomanName ,_ebd ,"\u0054\u0069\u006d\u0065\u0073\u004e\u0065\u0077\u0052\u006f\u006d\u0061\u006e","\u0054\u0069\u006de\u0073");RegisterStdFont (TimesBoldName ,_gcc ,"\u0054i\u006de\u0073\u004e\u0065\u0077\u0052o\u006d\u0061n\u002c\u0042\u006f\u006c\u0064","\u0054\u0069\u006d\u0065\u0073\u002c\u0042\u006f\u006c\u0064"); +RegisterStdFont (TimesItalicName ,_bdba ,"T\u0069m\u0065\u0073\u004e\u0065\u0077\u0052\u006f\u006da\u006e\u002c\u0049\u0074al\u0069\u0063","\u0054\u0069\u006de\u0073\u002c\u0049\u0074\u0061\u006c\u0069\u0063");RegisterStdFont (TimesBoldItalicName ,_efc ,"\u0054i\u006d\u0065\u0073\u004e\u0065\u0077\u0052\u006f\u006d\u0061\u006e,\u0042\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063","\u0054\u0069m\u0065\u0073\u002cB\u006f\u006c\u0064\u0049\u0074\u0061\u006c\u0069\u0063"); +};const (CourierName =StdFontName ("\u0043o\u0075\u0072\u0069\u0065\u0072");CourierBoldName =StdFontName ("\u0043\u006f\u0075r\u0069\u0065\u0072\u002d\u0042\u006f\u006c\u0064");CourierObliqueName =StdFontName ("\u0043o\u0075r\u0069\u0065\u0072\u002d\u004f\u0062\u006c\u0069\u0071\u0075\u0065"); +CourierBoldObliqueName =StdFontName ("\u0043\u006f\u0075\u0072ie\u0072\u002d\u0042\u006f\u006c\u0064\u004f\u0062\u006c\u0069\u0071\u0075\u0065"););func _cbd ()StdFont {_bbf .Do (_gaa );_cag :=Descriptor {Name :CourierBoldName ,Family :string (CourierName ),Weight :FontWeightBold ,Flags :0x0021,BBox :[4]float64 {-113,-250,749,801},ItalicAngle :0,Ascent :629,Descent :-157,CapHeight :562,XHeight :439,StemV :106,StemH :84}; +return NewStdFont (_cag ,_fa );};func NewStdFont (desc Descriptor ,metrics *RuneCharSafeMap )StdFont {return NewStdFontWithEncoding (desc ,metrics ,_dg .NewStandardEncoder ());};type GID =_dg .GID ;var _ Font =StdFont {};var _gag *RuneCharSafeMap ;type TtfType struct{UnitsPerEm uint16 ; +PostScriptName string ;Bold bool ;ItalicAngle float64 ;IsFixedPitch bool ;TypoAscender int16 ;TypoDescender int16 ;UnderlinePosition int16 ;UnderlineThickness int16 ;Xmin ,Ymin ,Xmax ,Ymax int16 ;CapHeight int16 ;Widths []uint16 ;Chars map[rune ]GID ;GlyphNames []GlyphName ; +};var _gee =[]int16 {722,1000,722,722,722,722,722,722,722,722,722,667,722,722,722,722,722,722,722,612,667,667,667,667,667,667,667,667,667,722,500,611,778,778,778,778,389,389,389,389,389,389,389,389,500,778,778,667,667,667,667,667,944,722,722,722,722,722,778,1000,778,778,778,778,778,778,778,778,611,778,722,722,722,722,556,556,556,556,556,667,667,667,611,722,722,722,722,722,722,722,722,722,722,1000,722,722,722,722,667,667,667,667,500,500,500,500,333,500,722,500,500,833,500,500,581,520,500,930,500,556,278,220,394,394,333,333,333,220,350,444,444,333,444,444,333,500,333,333,250,250,747,500,556,500,500,672,556,400,333,570,500,333,278,444,444,444,444,444,444,444,500,1000,444,1000,500,444,570,500,333,333,333,556,500,556,500,500,167,500,500,500,556,333,570,549,500,500,333,333,556,333,333,278,278,278,278,278,278,278,333,556,556,278,278,394,278,570,549,570,494,278,833,333,570,556,570,556,556,556,556,500,549,556,500,500,500,500,500,722,333,500,500,500,500,750,750,300,300,330,500,500,556,540,333,333,494,1000,250,250,1000,570,570,556,500,500,555,500,500,500,333,333,333,278,444,444,549,444,444,747,333,389,389,389,389,389,500,333,500,500,278,250,500,600,333,416,333,556,500,750,300,333,1000,500,300,556,556,556,556,556,556,556,500,556,556,500,722,500,500,500,500,500,444,444,444,444,500}; +func _dff ()StdFont {_bbf .Do (_gaa );_bgg :=Descriptor {Name :CourierObliqueName ,Family :string (CourierName ),Weight :FontWeightMedium ,Flags :0x0061,BBox :[4]float64 {-27,-250,849,805},ItalicAngle :-12,Ascent :629,Descent :-157,CapHeight :562,XHeight :426,StemV :51,StemH :51}; +return NewStdFont (_bgg ,_eb );};func (_cbb *ttfParser )readByte ()(_bbfa uint8 ){_fg .Read (_cbb ._cdb ,_fg .BigEndian ,&_bbfa );return _bbfa ;};func RegisterStdFont (name StdFontName ,fnc func ()StdFont ,aliases ...StdFontName ){if _ ,_bdd :=_ed .read (name ); +_bdd {panic ("\u0066o\u006e\u0074\u0020\u0061l\u0072\u0065\u0061\u0064\u0079 \u0072e\u0067i\u0073\u0074\u0065\u0072\u0065\u0064\u003a "+string (name ));};_ed .write (name ,fnc );for _ ,_bge :=range aliases {RegisterStdFont (_bge ,fnc );};};func (_afe StdFont )Descriptor ()Descriptor {return _afe ._be }; +func (_bgge *ttfParser )Parse ()(TtfType ,error ){_eed ,_ccb :=_bgge .ReadStr (4);if _ccb !=nil {return TtfType {},_ccb ;};if _eed =="\u0074\u0074\u0063\u0066"{return _bgge .parseTTC ();}else if _eed !="\u0000\u0001\u0000\u0000"&&_eed !="\u0074\u0072\u0075\u0065"{_ae .Log .Debug ("\u0055n\u0072\u0065c\u006f\u0067\u006ei\u007a\u0065\u0064\u0020\u0054\u0072\u0075e\u0054\u0079\u0070\u0065\u0020\u0066i\u006c\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u0074\u002e\u0020v\u0065\u0072\u0073\u0069\u006f\u006e\u003d\u0025\u0071",_eed ); +};_adcc :=int (_bgge .ReadUShort ());_bgge .Skip (3*2);_bgge ._eef =make (map[string ]uint32 );var _gcaf string ;for _aa :=0;_aa < _adcc ;_aa ++{_gcaf ,_ccb =_bgge .ReadStr (4);if _ccb !=nil {return TtfType {},_ccb ;};_bgge .Skip (4);_dgd :=_bgge .ReadULong (); +_bgge .Skip (4);_bgge ._eef [_gcaf ]=_dgd ;};_ae .Log .Trace (_dag (_bgge ._eef ));if _ccb =_bgge .ParseComponents ();_ccb !=nil {return TtfType {},_ccb ;};return _bgge ._fce ,nil ;};func (_dgg CharMetrics )String ()string {return _eg .Sprintf ("<\u0025\u002e\u0031\u0066\u002c\u0025\u002e\u0031\u0066\u003e",_dgg .Wx ,_dgg .Wy ); +};func (_bg *RuneCharSafeMap )Length ()int {_bg ._fc .RLock ();defer _bg ._fc .RUnlock ();return len (_bg ._ee );};func (_fceg *ttfParser )ParsePost ()error {if _fcdg :=_fceg .Seek ("\u0070\u006f\u0073\u0074");_fcdg !=nil {return _fcdg ;};_becd :=_fceg .Read32Fixed (); +_fceg ._fce .ItalicAngle =_fceg .Read32Fixed ();_fceg ._fce .UnderlinePosition =_fceg .ReadShort ();_fceg ._fce .UnderlineThickness =_fceg .ReadShort ();_fceg ._fce .IsFixedPitch =_fceg .ReadULong ()!=0;_fceg .ReadULong ();_fceg .ReadULong ();_fceg .ReadULong (); +_fceg .ReadULong ();_ae .Log .Trace ("\u0050a\u0072\u0073\u0065\u0050\u006f\u0073\u0074\u003a\u0020\u0066\u006fr\u006d\u0061\u0074\u0054\u0079\u0070\u0065\u003d\u0025\u0066",_becd );switch _becd {case 1.0:_fceg ._fce .GlyphNames =_ffe ;case 2.0:_gge :=int (_fceg .ReadUShort ()); +_eeeaa :=make ([]int ,_gge );_fceg ._fce .GlyphNames =make ([]GlyphName ,_gge );_debdc :=-1;for _bee :=0;_bee < _gge ;_bee ++{_afa :=int (_fceg .ReadUShort ());_eeeaa [_bee ]=_afa ;if _afa <=0x7fff&&_afa > _debdc {_debdc =_afa ;};};var _geee []GlyphName ; +if _debdc >=len (_ffe ){_geee =make ([]GlyphName ,_debdc -len (_ffe )+1);for _agd :=0;_agd < _debdc -len (_ffe )+1;_agd ++{_edcb :=int (_fceg .readByte ());_efgb ,_aag :=_fceg .ReadStr (_edcb );if _aag !=nil {return _aag ;};_geee [_agd ]=GlyphName (_efgb ); +};};for _faf :=0;_faf < _gge ;_faf ++{_acagb :=_eeeaa [_faf ];if _acagb < len (_ffe ){_fceg ._fce .GlyphNames [_faf ]=_ffe [_acagb ];}else if _acagb >=len (_ffe )&&_acagb <=32767{_fceg ._fce .GlyphNames [_faf ]=_geee [_acagb -len (_ffe )];}else {_fceg ._fce .GlyphNames [_faf ]="\u002e\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064"; +};};case 2.5:_egdc :=make ([]int ,_fceg ._gac );for _cba :=0;_cba < len (_egdc );_cba ++{_aba :=int (_fceg .ReadSByte ());_egdc [_cba ]=_cba +1+_aba ;};_fceg ._fce .GlyphNames =make ([]GlyphName ,len (_egdc ));for _edg :=0;_edg < len (_fceg ._fce .GlyphNames ); +_edg ++{_cbf :=_ffe [_egdc [_edg ]];_fceg ._fce .GlyphNames [_edg ]=_cbf ;};case 3.0:_ae .Log .Debug ("\u004e\u006f\u0020\u0050\u006f\u0073t\u0053\u0063\u0072i\u0070\u0074\u0020n\u0061\u006d\u0065\u0020\u0069\u006e\u0066\u006f\u0072\u006da\u0074\u0069\u006f\u006e\u0020is\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u002e"); +default:_ae .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020f\u006fr\u006d\u0061\u0074\u0054\u0079\u0070\u0065=\u0025\u0066",_becd );};return nil ;};func (_ffb *ttfParser )ParseOS2 ()error {if _abcb :=_ffb .Seek ("\u004f\u0053\u002f\u0032"); +_abcb !=nil {return _abcb ;};_dcb :=_ffb .ReadUShort ();_ffb .Skip (4*2);_ffb .Skip (11*2+10+4*4+4);_baa :=_ffb .ReadUShort ();_ffb ._fce .Bold =(_baa &32)!=0;_ffb .Skip (2*2);_ffb ._fce .TypoAscender =_ffb .ReadShort ();_ffb ._fce .TypoDescender =_ffb .ReadShort (); +if _dcb >=2{_ffb .Skip (3*2+2*4+2);_ffb ._fce .CapHeight =_ffb .ReadShort ();}else {_ffb ._fce .CapHeight =0;};return nil ;};var _geca =[]int16 {667,944,667,667,667,667,667,667,667,667,667,667,667,667,667,667,722,722,722,612,667,667,667,667,667,667,667,667,667,722,500,667,722,722,722,778,389,389,389,389,389,389,389,389,500,667,667,611,611,611,611,611,889,722,722,722,722,722,722,944,722,722,722,722,722,722,722,722,611,722,667,667,667,667,556,556,556,556,556,611,611,611,611,722,722,722,722,722,722,722,722,722,667,889,667,611,611,611,611,611,611,611,500,500,500,500,333,500,722,500,500,778,500,500,570,570,500,832,500,500,278,220,348,348,333,333,333,220,350,444,444,333,444,444,333,500,333,333,250,250,747,500,500,500,500,608,500,400,333,570,500,333,278,444,444,444,444,444,444,444,500,1000,444,1000,500,444,570,500,389,389,333,556,500,556,500,500,167,500,500,500,500,333,570,549,500,500,333,333,556,333,333,278,278,278,278,278,278,278,278,500,500,278,278,382,278,570,549,606,494,278,778,333,606,576,570,556,556,556,556,500,549,556,500,500,500,500,500,722,333,500,500,500,500,750,750,300,266,300,500,500,500,500,333,333,494,833,250,250,1000,570,570,500,500,500,555,500,500,500,333,333,333,278,389,389,549,389,389,747,333,389,389,389,389,389,500,333,500,500,278,250,500,600,278,366,278,500,500,750,300,333,1000,500,300,556,556,556,556,556,556,556,500,556,556,444,667,500,444,444,444,500,389,389,389,389,500}; +var _eb *RuneCharSafeMap ;var _fcg _ad .Once ;func (_bea *ttfParser )Read32Fixed ()float64 {_ege :=float64 (_bea .ReadShort ());_afeb :=float64 (_bea .ReadUShort ())/65536.0;return _ege +_afeb ;};func (_cce *ttfParser )parseCmapSubtable10 (_aaa int64 )error {if _cce ._fce .Chars ==nil {_cce ._fce .Chars =make (map[rune ]GID ); +};_cce ._cdb .Seek (int64 (_cce ._eef ["\u0063\u006d\u0061\u0070"])+_aaa ,_dc .SeekStart );var _edc ,_bgf uint32 ;_edbb :=_cce .ReadUShort ();if _edbb < 8{_edc =uint32 (_cce .ReadUShort ());_bgf =uint32 (_cce .ReadUShort ());}else {_cce .ReadUShort (); +_edc =_cce .ReadULong ();_bgf =_cce .ReadULong ();};_ae .Log .Trace ("\u0070\u0061r\u0073\u0065\u0043\u006d\u0061p\u0053\u0075\u0062\u0074\u0061b\u006c\u0065\u0031\u0030\u003a\u0020\u0066\u006f\u0072\u006d\u0061\u0074\u003d\u0025\u0064\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003d\u0025\u0064\u0020\u006c\u0061\u006e\u0067\u0075\u0061\u0067\u0065\u003d\u0025\u0064",_edbb ,_edc ,_bgf ); +if _edbb !=0{return _dd .New ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063\u006d\u0061p\u0020s\u0075\u0062\u0074\u0061\u0062\u006c\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};_dbc ,_eab :=_cce .ReadStr (256);if _eab !=nil {return _eab ; +};_fage :=[]byte (_dbc );for _bbd ,_ffcc :=range _fage {_cce ._fce .Chars [rune (_bbd )]=GID (_ffcc );if _ffcc !=0{_eg .Printf ("\u0009\u0030\u0078\u002502\u0078\u0020\u279e\u0020\u0030\u0078\u0025\u0030\u0032\u0078\u003d\u0025\u0063\u000a",_bbd ,_ffcc ,rune (_ffcc )); +};};return nil ;};var _bbf _ad .Once ;const (SymbolName =StdFontName ("\u0053\u0079\u006d\u0062\u006f\u006c");ZapfDingbatsName =StdFontName ("\u005a\u0061\u0070f\u0044\u0069\u006e\u0067\u0062\u0061\u0074\u0073"););type Descriptor struct{Name StdFontName ; +Family string ;Weight FontWeight ;Flags uint ;BBox [4]float64 ;ItalicAngle float64 ;Ascent float64 ;Descent float64 ;CapHeight float64 ;XHeight float64 ;StemV float64 ;StemH float64 ;};func _fgc ()StdFont {_bbf .Do (_gaa );_afea :=Descriptor {Name :CourierName ,Family :string (CourierName ),Weight :FontWeightMedium ,Flags :0x0021,BBox :[4]float64 {-23,-250,715,805},ItalicAngle :0,Ascent :629,Descent :-157,CapHeight :562,XHeight :426,StemV :51,StemH :51}; +return NewStdFont (_afea ,_bdb );};func (_daf *ttfParser )ParseMaxp ()error {if _adba :=_daf .Seek ("\u006d\u0061\u0078\u0070");_adba !=nil {return _adba ;};_daf .Skip (4);_daf ._gac =_daf .ReadUShort ();return nil ;};func _bdba ()StdFont {_cbdc .Do (_dcaf ); +_fee :=Descriptor {Name :TimesItalicName ,Family :_ebe ,Weight :FontWeightMedium ,Flags :0x0060,BBox :[4]float64 {-169,-217,1010,883},ItalicAngle :-15.5,Ascent :683,Descent :-217,CapHeight :653,XHeight :441,StemV :76,StemH :32};return NewStdFont (_fee ,_ddc ); +};func (_edbd *ttfParser )parseCmapVersion (_cfe int64 )error {_ae .Log .Trace ("p\u0061\u0072\u0073\u0065\u0043\u006da\u0070\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u003a \u006f\u0066\u0066s\u0065t\u003d\u0025\u0064",_cfe );if _edbd ._fce .Chars ==nil {_edbd ._fce .Chars =make (map[rune ]GID ); +};_edbd ._cdb .Seek (int64 (_edbd ._eef ["\u0063\u006d\u0061\u0070"])+_cfe ,_dc .SeekStart );var _gff ,_fga uint32 ;_gfb :=_edbd .ReadUShort ();if _gfb < 8{_gff =uint32 (_edbd .ReadUShort ());_fga =uint32 (_edbd .ReadUShort ());}else {_edbd .ReadUShort (); +_gff =_edbd .ReadULong ();_fga =_edbd .ReadULong ();};_ae .Log .Debug ("\u0070\u0061\u0072\u0073\u0065\u0043m\u0061\u0070\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u003a\u0020\u0066\u006f\u0072\u006d\u0061\u0074\u003d\u0025\u0064 \u006c\u0065\u006e\u0067\u0074\u0068\u003d\u0025\u0064\u0020\u006c\u0061\u006e\u0067u\u0061g\u0065\u003d\u0025\u0064",_gfb ,_gff ,_fga ); +switch _gfb {case 0:return _edbd .parseCmapFormat0 ();case 6:return _edbd .parseCmapFormat6 ();case 12:return _edbd .parseCmapFormat12 ();default:_ae .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0063m\u0061\u0070\u0020\u0066\u006f\u0072\u006da\u0074\u003d\u0025\u0064",_gfb ); +return nil ;};};func (_dfd *ttfParser )ParseCmap ()error {var _cda int64 ;if _fcc :=_dfd .Seek ("\u0063\u006d\u0061\u0070");_fcc !=nil {return _fcc ;};_dfd .ReadUShort ();_fed :=int (_dfd .ReadUShort ());_bgga :=int64 (0);_ecgg :=int64 (0);_facb :=int64 (0); +for _ggg :=0;_ggg < _fed ;_ggg ++{_bag :=_dfd .ReadUShort ();_gaga :=_dfd .ReadUShort ();_cda =int64 (_dfd .ReadULong ());if _bag ==3&&_gaga ==1{_ecgg =_cda ;}else if _bag ==3&&_gaga ==10{_facb =_cda ;}else if _bag ==1&&_gaga ==0{_bgga =_cda ;};};if _bgga !=0{if _ggdc :=_dfd .parseCmapVersion (_bgga ); +_ggdc !=nil {return _ggdc ;};};if _ecgg !=0{if _fae :=_dfd .parseCmapSubtable31 (_ecgg );_fae !=nil {return _fae ;};};if _facb !=0{if _cgb :=_dfd .parseCmapVersion (_facb );_cgb !=nil {return _cgb ;};};if _ecgg ==0&&_bgga ==0&&_facb ==0{_ae .Log .Debug ("\u0074\u0074\u0066P\u0061\u0072\u0073\u0065\u0072\u002e\u0050\u0061\u0072\u0073\u0065\u0043\u006d\u0061\u0070\u002e\u0020\u004e\u006f\u0020\u0033\u0031\u002c\u0020\u0031\u0030\u002c\u0020\u00331\u0030\u0020\u0074\u0061\u0062\u006c\u0065\u002e"); +};return nil ;};func (_cee *ttfParser )ParseHmtx ()error {if _aad :=_cee .Seek ("\u0068\u006d\u0074\u0078");_aad !=nil {return _aad ;};_cee ._fce .Widths =make ([]uint16 ,0,8);for _aca :=uint16 (0);_aca < _cee ._adf ;_aca ++{_cee ._fce .Widths =append (_cee ._fce .Widths ,_cee .ReadUShort ()); +_cee .Skip (2);};if _cee ._adf < _cee ._gac &&_cee ._adf > 0{_eeff :=_cee ._fce .Widths [_cee ._adf -1];for _eeea :=_cee ._adf ;_eeea < _cee ._gac ;_eeea ++{_cee ._fce .Widths =append (_cee ._fce .Widths ,_eeff );};};return nil ;};const (FontWeightMedium FontWeight =iota ; +FontWeightBold ;FontWeightRoman ;);func (_cae StdFont )ToPdfObject ()_gc .PdfObject {_ga :=_gc .MakeDict ();_ga .Set ("\u0054\u0079\u0070\u0065",_gc .MakeName ("\u0046\u006f\u006e\u0074"));_ga .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_gc .MakeName ("\u0054\u0079\u0070e\u0031")); +_ga .Set ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074",_gc .MakeName (_cae .Name ()));_ga .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_cae ._df .ToPdfObject ());return _gc .MakeIndirectObject (_ga );};func (_adfd *ttfParser )ParseName ()error {if _dffg :=_adfd .Seek ("\u006e\u0061\u006d\u0065"); +_dffg !=nil {return _dffg ;};_cdba ,_ :=_adfd ._cdb .Seek (0,_dc .SeekCurrent );_adfd ._fce .PostScriptName ="";_adfd .Skip (2);_cgc :=_adfd .ReadUShort ();_bca :=_adfd .ReadUShort ();for _gcad :=uint16 (0);_gcad < _cgc &&_adfd ._fce .PostScriptName ==""; +_gcad ++{_adfd .Skip (3*2);_bae :=_adfd .ReadUShort ();_dee :=_adfd .ReadUShort ();_cef :=_adfd .ReadUShort ();if _bae ==6{_adfd ._cdb .Seek (_cdba +int64 (_bca )+int64 (_cef ),_dc .SeekStart );_fdg ,_afff :=_adfd .ReadStr (int (_dee ));if _afff !=nil {return _afff ; +};_fdg =_a .Replace (_fdg ,"\u0000","",-1);_acag ,_afff :=_f .Compile ("\u005b\u0028\u0029\u007b\u007d\u003c\u003e\u0020\u002f%\u005b\u005c\u005d\u005d");if _afff !=nil {return _afff ;};_adfd ._fce .PostScriptName =_acag .ReplaceAllString (_fdg ,"");}; +};if _adfd ._fce .PostScriptName ==""{_ae .Log .Debug ("\u0050a\u0072\u0073e\u004e\u0061\u006de\u003a\u0020\u0054\u0068\u0065\u0020\u006ea\u006d\u0065\u0020\u0050\u006f\u0073t\u0053\u0063\u0072\u0069\u0070\u0074\u0020\u0077\u0061\u0073\u0020n\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u002e"); +};return nil ;};var _ecg *RuneCharSafeMap ;func (_cdf *TtfType )MakeEncoder ()(_dg .SimpleEncoder ,error ){_ffg :=make (map[_dg .CharCode ]GlyphName );for _bdg :=_dg .CharCode (0);_bdg <=256;_bdg ++{_bga :=rune (_bdg );_gfg ,_dfb :=_cdf .Chars [_bga ]; +if !_dfb {continue ;};var _ggc GlyphName ;if int (_gfg )>=0&&int (_gfg )< len (_cdf .GlyphNames ){_ggc =_cdf .GlyphNames [_gfg ];}else {_gad :=rune (_gfg );if _ccf ,_dfbe :=_dg .RuneToGlyph (_gad );_dfbe {_ggc =_ccf ;};};if _ggc !=""{_ffg [_bdg ]=_ggc ; +};};if len (_ffg )==0{_ae .Log .Debug ("WA\u0052\u004eI\u004e\u0047\u003a\u0020\u005a\u0065\u0072\u006f\u0020l\u0065\u006e\u0067\u0074\u0068\u0020\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002e\u0020\u0074\u0074\u0066=\u0025s\u0020\u0043\u0068\u0061\u0072\u0073\u003d\u005b%\u00200\u0032\u0078]",_cdf ,_cdf .Chars ); +};return _dg .NewCustomSimpleTextEncoder (_ffg ,nil );};func (_c *RuneCharSafeMap )Copy ()*RuneCharSafeMap {_gb :=MakeRuneCharSafeMap (_c .Length ());_c .Range (func (_gf rune ,_cg CharMetrics )(_gba bool ){_gb ._ee [_gf ]=_cg ;return false });return _gb ; +};var _cbdc _ad .Once ;func _gaa (){const _egdd =600;_bdb =MakeRuneCharSafeMap (len (_bec ));for _ ,_eda :=range _bec {_bdb .Write (_eda ,CharMetrics {Wx :_egdd });};_fa =_bdb .Copy ();_gag =_bdb .Copy ();_eb =_bdb .Copy ();};func IsStdFont (name StdFontName )bool {_ ,_dgf :=_ed .read (name ); +return _dgf };type ttfParser struct{_fce TtfType ;_cdb _dc .ReadSeeker ;_eef map[string ]uint32 ;_adf uint16 ;_gac uint16 ;};var _bec =[]rune {'A','Æ','Á','Ă','Â','Ä','À','Ā','Ą','Å','Ã','B','C','Ć','Č','Ç','D','Ď','Đ','∆','E','É','Ě','Ê','Ë','Ė','È','Ē','Ę','Ð','€','F','G','Ğ','Ģ','H','I','Í','Î','Ï','İ','Ì','Ī','Į','J','K','Ķ','L','Ĺ','Ľ','Ļ','Ł','M','N','Ń','Ň','Ņ','Ñ','O','Œ','Ó','Ô','Ö','Ò','Ő','Ō','Ø','Õ','P','Q','R','Ŕ','Ř','Ŗ','S','Ś','Š','Ş','Ș','T','Ť','Ţ','Þ','U','Ú','Û','Ü','Ù','Ű','Ū','Ų','Ů','V','W','X','Y','Ý','Ÿ','Z','Ź','Ž','Ż','a','á','ă','â','´','ä','æ','à','ā','&','ą','å','^','~','*','@','ã','b','\\','|','{','}','[',']','˘','¦','•','c','ć','ˇ','č','ç','¸','¢','ˆ',':',',','\uf6c3','©','¤','d','†','‡','ď','đ','°','¨','÷','$','˙','ı','e','é','ě','ê','ë','ė','è','8','…','ē','—','–','ę','=','ð','!','¡','f','fi','5','fl','ƒ','4','⁄','g','ğ','ģ','ß','`','>','≥','«','»','‹','›','h','˝','-','i','í','î','ï','ì','ī','į','j','k','ķ','l','ĺ','ľ','ļ','<','≤','¬','◊','ł','m','¯','−','µ','×','n','ń','ň','ņ','9','≠','ñ','#','o','ó','ô','ö','œ','˛','ò','ő','ō','1','½','¼','¹','ª','º','ø','õ','p','¶','(',')','∂','%','.','·','‰','+','±','q','?','¿','"','„','“','”','‘','’','‚','\'','r','ŕ','√','ř','ŗ','®','˚','s','ś','š','ş','ș','§',';','7','6','/',' ','£','∑','t','ť','ţ','þ','3','¾','³','˜','™','2','²','u','ú','û','ü','ù','ű','ū','_','ų','ů','v','w','x','y','ý','ÿ','¥','z','ź','ž','ż','0'}; +func (_de *fontMap )write (_aec StdFontName ,_da func ()StdFont ){_de .Lock ();defer _de .Unlock ();_de ._gca [_aec ]=_da ;};func (_fgee *ttfParser )parseTTC ()(TtfType ,error ){_fgee .Skip (2*2);_aff :=_fgee .ReadULong ();if _aff < 1{return TtfType {},_dd .New ("N\u006f \u0066\u006f\u006e\u0074\u0073\u0020\u0069\u006e \u0054\u0054\u0043\u0020fi\u006c\u0065"); +};_agc :=_fgee .ReadULong ();_ ,_feaf :=_fgee ._cdb .Seek (int64 (_agc ),_dc .SeekStart );if _feaf !=nil {return TtfType {},_feaf ;};return _fgee .Parse ();};var _fff *RuneCharSafeMap ;var _gcg =[]int16 {667,1000,667,667,667,667,667,667,667,667,667,667,722,722,722,722,722,722,722,612,667,667,667,667,667,667,667,667,667,722,556,611,778,778,778,722,278,278,278,278,278,278,278,278,500,667,667,556,556,556,556,556,833,722,722,722,722,722,778,1000,778,778,778,778,778,778,778,778,667,778,722,722,722,722,667,667,667,667,667,611,611,611,667,722,722,722,722,722,722,722,722,722,667,944,667,667,667,667,611,611,611,611,556,556,556,556,333,556,889,556,556,667,556,556,469,584,389,1015,556,556,278,260,334,334,278,278,333,260,350,500,500,333,500,500,333,556,333,278,278,250,737,556,556,556,556,643,556,400,333,584,556,333,278,556,556,556,556,556,556,556,556,1000,556,1000,556,556,584,556,278,333,278,500,556,500,556,556,167,556,556,556,611,333,584,549,556,556,333,333,556,333,333,222,278,278,278,278,278,222,222,500,500,222,222,299,222,584,549,584,471,222,833,333,584,556,584,556,556,556,556,556,549,556,556,556,556,556,556,944,333,556,556,556,556,834,834,333,370,365,611,556,556,537,333,333,476,889,278,278,1000,584,584,556,556,611,355,333,333,333,222,222,222,191,333,333,453,333,333,737,333,500,500,500,500,500,556,278,556,556,278,278,556,600,278,317,278,556,556,834,333,333,1000,556,333,556,556,556,556,556,556,556,556,556,556,500,722,500,500,500,500,556,500,500,500,500,556}; +func (_bcaf *ttfParser )ReadShort ()(_aeca int16 ){_fg .Read (_bcaf ._cdb ,_fg .BigEndian ,&_aeca );return _aeca ;};func (_efbc *ttfParser )ReadSByte ()(_dbdg int8 ){_fg .Read (_efbc ._cdb ,_fg .BigEndian ,&_dbdg );return _dbdg ;};func (_cgdd *ttfParser )Skip (n int ){_cgdd ._cdb .Seek (int64 (n ),_dc .SeekCurrent )}; +var _fa *RuneCharSafeMap ;func (_fcb *TtfType )MakeToUnicode ()*_g .CMap {_bgd :=make (map[_g .CharCode ]rune );if len (_fcb .GlyphNames )==0{for _def :=range _fcb .Chars {_bgd [_g .CharCode (_def )]=_def ;};return _g .NewToUnicodeCMap (_bgd );};for _fbf ,_gcf :=range _fcb .Chars {_agea :=_g .CharCode (_fbf ); +_ecf :=_fcb .GlyphNames [_gcf ];_fac ,_deg :=_dg .GlyphToRune (_ecf );if !_deg {_ae .Log .Debug ("\u004e\u006f \u0072\u0075\u006e\u0065\u002e\u0020\u0063\u006f\u0064\u0065\u003d\u0030\u0078\u0025\u0030\u0034\u0078\u0020\u0067\u006c\u0079\u0070h=\u0025\u0071",_fbf ,_ecf ); +_fac =_dg .MissingCodeRune ;};_bgd [_agea ]=_fac ;};return _g .NewToUnicodeCMap (_bgd );};var _ebg *RuneCharSafeMap ;func (_gfa *ttfParser )parseCmapFormat0 ()error {_ggdb ,_dbd :=_gfa .ReadStr (256);if _dbd !=nil {return _dbd ;};_efb :=[]byte (_ggdb ); +_ae .Log .Trace ("\u0070a\u0072\u0073e\u0043\u006d\u0061p\u0046\u006f\u0072\u006d\u0061\u0074\u0030:\u0020\u0025\u0073\u000a\u0064\u0061t\u0061\u0053\u0074\u0072\u003d\u0025\u002b\u0071\u000a\u0064\u0061t\u0061\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d",_gfa ._fce .String (),_ggdb ,_efb ); +for _bfc ,_gffa :=range _efb {_gfa ._fce .Chars [rune (_bfc )]=GID (_gffa );};return nil ;};func (_bcf *ttfParser )ParseHead ()error {if _gab :=_bcf .Seek ("\u0068\u0065\u0061\u0064");_gab !=nil {return _gab ;};_bcf .Skip (3*4);_eeaa :=_bcf .ReadULong (); +if _eeaa !=0x5F0F3CF5{_ae .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0049\u006e\u0063\u006fr\u0072e\u0063\u0074\u0020\u006d\u0061\u0067\u0069\u0063\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u002e\u0020\u0046\u006fn\u0074\u0020\u006d\u0061\u0079\u0020\u006e\u006f\u0074\u0020\u0064\u0069\u0073\u0070\u006c\u0061\u0079\u0020\u0063\u006f\u0072\u0072\u0065\u0063t\u006c\u0079\u002e\u0020\u0025\u0073",_bcf ); +};_bcf .Skip (2);_bcf ._fce .UnitsPerEm =_bcf .ReadUShort ();_bcf .Skip (2*8);_bcf ._fce .Xmin =_bcf .ReadShort ();_bcf ._fce .Ymin =_bcf .ReadShort ();_bcf ._fce .Xmax =_bcf .ReadShort ();_bcf ._fce .Ymax =_bcf .ReadShort ();return nil ;}; \ No newline at end of file diff --git a/model/mdp/mdp.go b/model/mdp/mdp.go index a9c19f1aa..59db994e1 100644 --- a/model/mdp/mdp.go +++ b/model/mdp/mdp.go @@ -9,80 +9,32 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package mdp ;import (_b "errors";_d "fmt";_bd "github.com/unidoc/unipdf/v3/core";);type defaultDiffPolicy struct{_db map[int64 ]_bd .PdfObject ;_fe *DiffResults ;_c DocMDPPermission ;}; - -// IsPermitted returns true if changes permitted. -func (_dcf *DiffResults )IsPermitted ()bool {return len (_dcf .Errors )==0};func (_fce *defaultDiffPolicy )comparePages (_ae int ,_cad ,_fcg *_bd .PdfIndirectObject )error {if _ ,_ecab :=_fce ._db [_fcg .ObjectNumber ];_ecab {_fce ._fe .addErrorWithDescription (_ae ,"\u0050a\u0067e\u0073\u0020\u0077\u0065\u0072e\u0020\u0063h\u0061\u006e\u0067\u0065\u0064"); -};_bfg ,_ge :=_bd .GetDict (_fcg .PdfObject );_eaf ,_fb :=_bd .GetDict (_cad .PdfObject );if !_ge ||!_fb {return _b .New ("\u0075n\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0050\u0061g\u0065\u0073\u0027\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -};_efg ,_ge :=_bd .GetArray (_bfg .Get ("\u004b\u0069\u0064\u0073"));_bcg ,_fb :=_bd .GetArray (_eaf .Get ("\u004b\u0069\u0064\u0073"));if !_ge ||!_fb {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0050\u0061\u0067\u0065s\u0027 \u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079"); -};_ce :=_efg .Len ();if _ce > _bcg .Len (){_ce =_bcg .Len ();};for _dfd :=0;_dfd < _ce ;_dfd ++{_cbb ,_ceb :=_bd .GetIndirect (_bd .ResolveReference (_bcg .Get (_dfd )));_eg ,_abb :=_bd .GetIndirect (_bd .ResolveReference (_efg .Get (_dfd )));if !_ceb ||!_abb {return _b .New ("\u0075\u006e\u0065\u0078pe\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065c\u0074"); -};if _cbb .ObjectNumber !=_eg .ObjectNumber {_fce ._fe .addErrorWithDescription (_ae ,_d .Sprintf ("p\u0061\u0067\u0065\u0020#%\u0064 \u0077\u0061\u0073\u0020\u0072e\u0070\u006c\u0061\u0063\u0065\u0064",_dfd ));};_beg ,_ceb :=_bd .GetDict (_eg );_dab ,_abb :=_bd .GetDict (_cbb ); -if !_ceb ||!_abb {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0067\u0065'\u0073 \u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079");};_dea ,_cf :=_gec (_beg .Get ("\u0041\u006e\u006e\u006f\u0074\u0073")); -if _cf !=nil {return _cf ;};_bda ,_cf :=_gec (_dab .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if _cf !=nil {return _cf ;};if _cac :=_fce .compareAnnots (_ae ,_bda ,_dea );_cac !=nil {return _cac ;};};for _af :=_ce +1;_af <=_efg .Len ();_af ++{_fce ._fe .addErrorWithDescription (_ae ,_d .Sprintf ("\u0070a\u0067e\u0020\u0023\u0025\u0064\u0020w\u0061\u0073 \u0061\u0064\u0064\u0065\u0064",_af )); -};for _bfa :=_ce +1;_bfa <=_bcg .Len ();_bfa ++{_fce ._fe .addErrorWithDescription (_ae ,_d .Sprintf ("p\u0061g\u0065\u0020\u0023\u0025\u0064\u0020\u0077\u0061s\u0020\u0072\u0065\u006dov\u0065\u0064",_bfa ));};return nil ;};func (_cdd *DiffResults )addWarningWithDescription (_bde int ,_adb string ){if _cdd .Warnings ==nil {_cdd .Warnings =make ([]*DiffResult ,0); -};_cdd .Warnings =append (_cdd .Warnings ,&DiffResult {Revision :_bde ,Description :_adb });};func (_gd *defaultDiffPolicy )compareFields (_bc int ,_bdd ,_dbc []_bd .PdfObject )error {_dbbe :=make (map[int64 ]*_bd .PdfObjectDictionary );for _ ,_caf :=range _bdd {_eca ,_eff :=_bd .GetIndirect (_caf ); -if !_eff {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006cd\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_gdb ,_eff :=_bd .GetDict (_eca .PdfObject );if !_eff {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065"); -};_dbbe [_eca .ObjectNumber ]=_gdb ;};for _ ,_fcb :=range _dbc {_caa ,_ede :=_bd .GetIndirect (_fcb );if !_ede {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006cd\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065"); -};_fa ,_ede :=_bd .GetDict (_caa .PdfObject );if !_ede {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006cd\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};T :=_fa .Get ("\u0054");if _ ,_fdb :=_gd ._db [_caa .ObjectNumber ]; -_fdb {switch _gd ._c {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_gd ._fe .addWarningWithDescription (_bc ,_d .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",T ));default:_gd ._fe .addErrorWithDescription (_bc ,_d .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",T )); -};};if _ ,_bcb :=_dbbe [_caa .ObjectNumber ];!_bcb {switch _gd ._c {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_gd ._fe .addWarningWithDescription (_bc ,_d .Sprintf ("\u0046i\u0065l\u0064\u0020\u0025\u0073\u0020w\u0061\u0073 \u0061\u0064\u0064\u0065\u0064",_fa .Get ("\u0054"))); -default:_gd ._fe .addErrorWithDescription (_bc ,_d .Sprintf ("\u0046i\u0065l\u0064\u0020\u0025\u0073\u0020w\u0061\u0073 \u0061\u0064\u0064\u0065\u0064",_fa .Get ("\u0054")));};}else {delete (_dbbe ,_caa .ObjectNumber );if _ ,_abc :=_gd ._db [_caa .ObjectNumber ]; -_abc {switch _gd ._c {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_gd ._fe .addWarningWithDescription (_bc ,_d .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",_fa .Get ("\u0054")));default:_gd ._fe .addErrorWithDescription (_bc ,_d .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",_fa .Get ("\u0054"))); -};};};if FT ,_cbe :=_bd .GetNameVal (_fa .Get ("\u0046\u0054"));_cbe {if FT =="\u0053\u0069\u0067"{if _dd ,_gg :=_bd .GetIndirect (_fa .Get ("\u0056"));_gg {if _ ,_cd :=_gd ._db [_dd .ObjectNumber ];_cd {switch _gd ._c {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_gd ._fe .addWarningWithDescription (_bc ,_d .Sprintf ("\u0053\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0066\u006f\u0072\u0020%\u0073 \u0066i\u0065l\u0064\u0020\u0077\u0061\u0073\u0020\u0063\u0068\u0061\u006e\u0067\u0065\u0064",T )); -default:_gd ._fe .addErrorWithDescription (_bc ,_d .Sprintf ("\u0053\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0066\u006f\u0072\u0020%\u0073 \u0066i\u0065l\u0064\u0020\u0077\u0061\u0073\u0020\u0063\u0068\u0061\u006e\u0067\u0065\u0064",T ));};};};};}; -};for _ ,_da :=range _dbbe {switch _gd ._c {case NoRestrictions :_gd ._fe .addWarningWithDescription (_bc ,_d .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0072\u0065\u006dov\u0065\u0064",_da .Get ("\u0054")));default:_gd ._fe .addErrorWithDescription (_bc ,_d .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0072\u0065\u006dov\u0065\u0064",_da .Get ("\u0054"))); -};};return nil ;};func NewDefaultDiffPolicy ()DiffPolicy {return &defaultDiffPolicy {_db :nil ,_fe :&DiffResults {},_c :0};}; - -// ReviewFile implementation of DiffPolicy interface -// The default policy only checks the next types of objects: -// Page, Pages (container for page objects), Annot, Annots (container for annotation objects), Field. -// It checks adding, removing and modifying objects of these types. -func (_e *defaultDiffPolicy )ReviewFile (oldParser *_bd .PdfParser ,newParser *_bd .PdfParser ,params *MDPParameters )(*DiffResults ,error ){if oldParser .GetRevisionNumber ()> newParser .GetRevisionNumber (){return nil ,_b .New ("\u006f\u006c\u0064\u0020\u0072\u0065\u0076\u0069\u0073\u0069\u006f\u006e\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061n\u0020\u006e\u0065\u0077\u0020r\u0065\u0076i\u0073\u0069\u006f\u006e"); -};if oldParser .GetRevisionNumber ()==newParser .GetRevisionNumber (){if oldParser !=newParser {return nil ,_b .New ("\u0073\u0061m\u0065\u0020\u0072\u0065v\u0069\u0073i\u006f\u006e\u0073\u002c\u0020\u0062\u0075\u0074 \u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0074\u0020\u0070\u0061r\u0073\u0065\u0072\u0073"); -};return &DiffResults {},nil ;};if params ==nil {_e ._c =NoRestrictions ;}else {_e ._c =params .DocMDPLevel ;};_fc :=&DiffResults {};for _eb :=oldParser .GetRevisionNumber ()+1;_eb <=newParser .GetRevisionNumber ();_eb ++{_a ,_dc :=newParser .GetRevision (_eb -1); -if _dc !=nil {return nil ,_dc ;};_ab ,_dc :=newParser .GetRevision (_eb );if _dc !=nil {return nil ,_dc ;};_dg ,_dc :=_e .compareRevisions (_a ,_ab );if _dc !=nil {return nil ,_dc ;};_fc .Warnings =append (_fc .Warnings ,_dg .Warnings ...);_fc .Errors =append (_fc .Errors ,_dg .Errors ...); -};return _fc ,nil ;};func (_beed *DiffResults )addError (_cga *DiffResult ){if _beed .Errors ==nil {_beed .Errors =make ([]*DiffResult ,0);};_beed .Errors =append (_beed .Errors ,_cga );}; - -// DiffResult describes the warning or the error for the DiffPolicy results. -type DiffResult struct{Revision int ;Description string ;}; - -// String returns the state of the warning. -func (_ffa *DiffResult )String ()string {return _d .Sprintf ("\u0025\u0073\u0020\u0069n \u0072\u0065\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u0020\u0023\u0025\u0064",_ffa .Description ,_ffa .Revision );}; - -// MDPParameters describes parameters for the MDP checks (now only DocMDP). -type MDPParameters struct{DocMDPLevel DocMDPPermission ;};func (_g *defaultDiffPolicy )compareRevisions (_cb *_bd .PdfParser ,_ee *_bd .PdfParser )(*DiffResults ,error ){var _dce error ;_g ._db ,_dce =_ee .GetUpdatedObjects (_cb );if _dce !=nil {return &DiffResults {},_dce ; -};if len (_g ._db )==0{return &DiffResults {},nil ;};_fd :=_ee .GetRevisionNumber ();_dbd ,_de :=_bd .GetIndirect (_bd .ResolveReference (_cb .GetTrailer ().Get ("\u0052\u006f\u006f\u0074")));_ea ,_cc :=_bd .GetIndirect (_bd .ResolveReference (_ee .GetTrailer ().Get ("\u0052\u006f\u006f\u0074"))); -if !_de ||!_cc {return &DiffResults {},_b .New ("\u0065\u0072\u0072o\u0072\u0020\u0077\u0068i\u006c\u0065\u0020\u0067\u0065\u0074\u0074i\u006e\u0067\u0020\u0072\u006f\u006f\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_gc ,_de :=_bd .GetDict (_bd .ResolveReference (_dbd .PdfObject )); -_ec ,_cc :=_bd .GetDict (_bd .ResolveReference (_ea .PdfObject ));if !_de ||!_cc {return &DiffResults {},_b .New ("\u0065\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0067e\u0074\u0074\u0069\u006e\u0067\u0020a\u0020\u0072\u006f\u006f\u0074\u0027\u0073\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -};if _aba ,_be :=_bd .GetIndirect (_ec .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));_be {_ed ,_ca :=_bd .GetDict (_aba );if !_ca {return &DiffResults {},_b .New ("\u0065\u0072\u0072\u006f\u0072 \u0077\u0068\u0069\u006c\u0065\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067 \u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u0027\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_eea :=make ([]_bd .PdfObject ,0);if _bf ,_dbb :=_bd .GetIndirect (_gc .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));_dbb {if _bfe ,_df :=_bd .GetDict (_bf );_df {if _ef ,_ga :=_bd .GetArray (_bfe .Get ("\u0046\u0069\u0065\u006c\u0064\u0073")); -_ga {_eea =_ef .Elements ();};};};_fcf ,_ca :=_bd .GetArray (_ed .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_ca {return &DiffResults {},_b .New ("\u0065\u0072r\u006f\u0072\u0020\u0077h\u0069\u006ce\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067 \u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u0027\u0073\u0020\u0066i\u0065\u006c\u0064\u0073"); -};if _ag :=_g .compareFields (_fd ,_eea ,_fcf .Elements ());_ag !=nil {return &DiffResults {},_ag ;};};_fg ,_bee :=_bd .GetIndirect (_ec .Get ("\u0050\u0061\u0067e\u0073"));if !_bee {return &DiffResults {},_b .New ("\u0065\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020p\u0061\u0067\u0065\u0073\u0027\u0020\u006fb\u006a\u0065\u0063\u0074"); -};_aa ,_bee :=_bd .GetIndirect (_gc .Get ("\u0050\u0061\u0067e\u0073"));if !_bee {return &DiffResults {},_b .New ("\u0065\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020p\u0061\u0067\u0065\u0073\u0027\u0020\u006fb\u006a\u0065\u0063\u0074"); -};if _ff :=_g .comparePages (_fd ,_aa ,_fg );_ff !=nil {return &DiffResults {},_ff ;};return _g ._fe ,nil ;};func (_cba *defaultDiffPolicy )compareAnnots (_bca int ,_fdc ,_cff []_bd .PdfObject )error {_dgd :=make (map[int64 ]*_bd .PdfObjectDictionary ); -for _ ,_gdg :=range _fdc {_bb ,_ggb :=_bd .GetIndirect (_gdg );if !_ggb {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_afd ,_ggb :=_bd .GetDict (_bb .PdfObject ); -if !_ggb {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_dgd [_bb .ObjectNumber ]=_afd ;};for _ ,_cbf :=range _cff {_gb ,_eeaf :=_bd .GetIndirect (_cbf ); -if !_eeaf {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_gae ,_eeaf :=_bd .GetDict (_gb .PdfObject );if !_eeaf {return _b .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065"); -};_egg ,_ :=_bd .GetStringVal (_gae .Get ("\u0054"));_dae ,_ :=_bd .GetNameVal (_gae .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if _ ,_gde :=_dgd [_gb .ObjectNumber ];!_gde {switch _cba ._c {case NoRestrictions ,FillFormsAndAnnots :_cba ._fe .addWarningWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_dae ,_egg )); -default:_gga ,_abg :=_bd .GetDict (_gb .PdfObject );if !_abg {return _b .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0061n\u006e\u006f\u0074\u0061ti\u006f\u006e");};_ebc ,_abg :=_bd .GetNameVal (_gga .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -if !_abg {return _b .New ("\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020a\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0027\u0073\u0020\u0073\u0075\u0062\u0074\u0079\u0070\u0065");};if _ebc =="\u0057\u0069\u0064\u0067\u0065\u0074"{switch _cba ._c {case NoRestrictions ,FillFormsAndAnnots ,FillForms :_cba ._fe .addWarningWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_dae ,_egg )); -default:_cba ._fe .addErrorWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_dae ,_egg ));};}else {_cba ._fe .addErrorWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_dae ,_egg )); -};};}else {delete (_dgd ,_gb .ObjectNumber );if _aeg ,_fea :=_cba ._db [_gb .ObjectNumber ];_fea {switch _cba ._c {case NoRestrictions ,FillFormsAndAnnots :_cba ._fe .addWarningWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_dae ,_egg )); -default:_bcd ,_abcb :=_bd .GetIndirect (_aeg );if !_abcb {return _b .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0061n\u006e\u006f\u0074\u0061ti\u006f\u006e");};_cgc ,_abcb :=_bd .GetDict (_bcd .PdfObject );if !_abcb {return _b .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0061n\u006e\u006f\u0074\u0061ti\u006f\u006e"); -};_adc ,_abcb :=_bd .GetNameVal (_cgc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_abcb {return _b .New ("\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020a\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0027\u0073\u0020\u0073\u0075\u0062\u0074\u0079\u0070\u0065"); -};if _adc =="\u0057\u0069\u0064\u0067\u0065\u0074"{switch _cba ._c {case NoRestrictions ,FillFormsAndAnnots ,FillForms :_cba ._fe .addWarningWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_dae ,_egg )); -default:_cba ._fe .addErrorWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_dae ,_egg ));};}else {_cba ._fe .addErrorWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_dae ,_egg )); -};};};};};for _ ,_gbc :=range _dgd {_afg ,_ :=_bd .GetStringVal (_gbc .Get ("\u0054"));_bfef ,_ :=_bd .GetNameVal (_gbc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));switch _cba ._c {case NoRestrictions ,FillFormsAndAnnots :_cba ._fe .addWarningWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0072\u0065\u006d\u006fv\u0065\u0064",_bfef ,_afg )); -default:_cba ._fe .addErrorWithDescription (_bca ,_d .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0072\u0065\u006d\u006fv\u0065\u0064",_bfef ,_afg ));};};return nil ;};func (_bef *DiffResults )addWarning (_fbg *DiffResult ){if _bef .Warnings ==nil {_bef .Warnings =make ([]*DiffResult ,0); -};_bef .Warnings =append (_bef .Warnings ,_fbg );};const (NoRestrictions DocMDPPermission =0;NoChanges DocMDPPermission =1;FillForms DocMDPPermission =2;FillFormsAndAnnots DocMDPPermission =3;); - -// DiffResults describes the results of the DiffPolicy. -type DiffResults struct{Warnings []*DiffResult ;Errors []*DiffResult ;}; +package mdp ;import (_a "errors";_ef "fmt";_ed "github.com/unidoc/unipdf/v3/core";);func (_dfb *defaultDiffPolicy )compareRevisions (_ba *_ed .PdfParser ,_de *_ed .PdfParser )(*DiffResults ,error ){var _ffe error ;_dfb ._g ,_ffe =_de .GetUpdatedObjects (_ba ); +if _ffe !=nil {return &DiffResults {},_ffe ;};if len (_dfb ._g )==0{return &DiffResults {},nil ;};_bd :=_de .GetRevisionNumber ();_ge ,_gg :=_ed .GetIndirect (_ed .ResolveReference (_ba .GetTrailer ().Get ("\u0052\u006f\u006f\u0074")));_ffd ,_db :=_ed .GetIndirect (_ed .ResolveReference (_de .GetTrailer ().Get ("\u0052\u006f\u006f\u0074"))); +if !_gg ||!_db {return &DiffResults {},_a .New ("\u0065\u0072\u0072o\u0072\u0020\u0077\u0068i\u006c\u0065\u0020\u0067\u0065\u0074\u0074i\u006e\u0067\u0020\u0072\u006f\u006f\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_be ,_gg :=_ed .GetDict (_ed .ResolveReference (_ge .PdfObject )); +_ec ,_db :=_ed .GetDict (_ed .ResolveReference (_ffd .PdfObject ));if !_gg ||!_db {return &DiffResults {},_a .New ("\u0065\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0067e\u0074\u0074\u0069\u006e\u0067\u0020a\u0020\u0072\u006f\u006f\u0074\u0027\u0073\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +};if _ggg ,_gc :=_ed .GetIndirect (_ec .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));_gc {_agc ,_ga :=_ed .GetDict (_ggg );if !_ga {return &DiffResults {},_a .New ("\u0065\u0072\u0072\u006f\u0072 \u0077\u0068\u0069\u006c\u0065\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067 \u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u0027\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_deg :=make ([]_ed .PdfObject ,0);if _aa ,_bf :=_ed .GetIndirect (_be .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));_bf {if _dfe ,_bb :=_ed .GetDict (_aa );_bb {if _dc ,_efc :=_ed .GetArray (_dfe .Get ("\u0046\u0069\u0065\u006c\u0064\u0073")); +_efc {_deg =_dc .Elements ();};};};_ggb ,_ga :=_ed .GetArray (_agc .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_ga {return &DiffResults {},_a .New ("\u0065\u0072r\u006f\u0072\u0020\u0077h\u0069\u006ce\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067 \u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u0027\u0073\u0020\u0066i\u0065\u006c\u0064\u0073"); +};if _dg :=_dfb .compareFields (_bd ,_deg ,_ggb .Elements ());_dg !=nil {return &DiffResults {},_dg ;};};_fc ,_degc :=_ed .GetIndirect (_ec .Get ("\u0050\u0061\u0067e\u0073"));if !_degc {return &DiffResults {},_a .New ("\u0065\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020p\u0061\u0067\u0065\u0073\u0027\u0020\u006fb\u006a\u0065\u0063\u0074"); +};_cf ,_degc :=_ed .GetIndirect (_be .Get ("\u0050\u0061\u0067e\u0073"));if !_degc {return &DiffResults {},_a .New ("\u0065\u0072\u0072\u006f\u0072\u0020w\u0068\u0069\u006c\u0065\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020p\u0061\u0067\u0065\u0073\u0027\u0020\u006fb\u006a\u0065\u0063\u0074"); +};if _fg :=_dfb .comparePages (_bd ,_cf ,_fc );_fg !=nil {return &DiffResults {},_fg ;};return _dfb ._d ,nil ;};func (_gba *DiffResults )addErrorWithDescription (_cba int ,_egd string ){if _gba .Errors ==nil {_gba .Errors =make ([]*DiffResult ,0);};_gba .Errors =append (_gba .Errors ,&DiffResult {Revision :_cba ,Description :_egd }); +}; // DocMDPPermission is values for set up access permissions for DocMDP. // (Section 12.8.2.2, Table 254 - Entries in a signature dictionary p. 471 in PDF32000_2008). -type DocMDPPermission int64 ;func (_faf *DiffResults )addErrorWithDescription (_cce int ,_fbb string ){if _faf .Errors ==nil {_faf .Errors =make ([]*DiffResult ,0);};_faf .Errors =append (_faf .Errors ,&DiffResult {Revision :_cce ,Description :_fbb }); -}; +type DocMDPPermission int64 ;type defaultDiffPolicy struct{_g map[int64 ]_ed .PdfObject ;_d *DiffResults ;_f DocMDPPermission ;};func (_gde *DiffResults )addWarningWithDescription (_ad int ,_fda string ){if _gde .Warnings ==nil {_gde .Warnings =make ([]*DiffResult ,0); +};_gde .Warnings =append (_gde .Warnings ,&DiffResult {Revision :_ad ,Description :_fda });};func (_dbc *defaultDiffPolicy )comparePages (_ffde int ,_ea ,_ggf *_ed .PdfIndirectObject )error {if _ ,_bdd :=_dbc ._g [_ggf .ObjectNumber ];_bdd {_dbc ._d .addErrorWithDescription (_ffde ,"\u0050a\u0067e\u0073\u0020\u0077\u0065\u0072e\u0020\u0063h\u0061\u006e\u0067\u0065\u0064"); +};_fad ,_gd :=_ed .GetDict (_ggf .PdfObject );_dfg ,_eff :=_ed .GetDict (_ea .PdfObject );if !_gd ||!_eff {return _a .New ("\u0075n\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0050\u0061g\u0065\u0073\u0027\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +};_dfac ,_gd :=_ed .GetArray (_fad .Get ("\u004b\u0069\u0064\u0073"));_ded ,_eff :=_ed .GetArray (_dfg .Get ("\u004b\u0069\u0064\u0073"));if !_gd ||!_eff {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0050\u0061\u0067\u0065s\u0027 \u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079"); +};_dge :=_dfac .Len ();if _dge > _ded .Len (){_dge =_ded .Len ();};for _bcc :=0;_bcc < _dge ;_bcc ++{_ccf ,_bga :=_ed .GetIndirect (_ed .ResolveReference (_ded .Get (_bcc )));_cff ,_ce :=_ed .GetIndirect (_ed .ResolveReference (_dfac .Get (_bcc )));if !_bga ||!_ce {return _a .New ("\u0075\u006e\u0065\u0078pe\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065c\u0074"); +};if _ccf .ObjectNumber !=_cff .ObjectNumber {_dbc ._d .addErrorWithDescription (_ffde ,_ef .Sprintf ("p\u0061\u0067\u0065\u0020#%\u0064 \u0077\u0061\u0073\u0020\u0072e\u0070\u006c\u0061\u0063\u0065\u0064",_bcc ));};_eae ,_bga :=_ed .GetDict (_cff );_faa ,_ce :=_ed .GetDict (_ccf ); +if !_bga ||!_ce {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0070\u0061\u0067\u0065'\u0073 \u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079");};_bdb ,_bfa :=_gcb (_eae .Get ("\u0041\u006e\u006e\u006f\u0074\u0073")); +if _bfa !=nil {return _bfa ;};_gb ,_bfa :=_gcb (_faa .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if _bfa !=nil {return _bfa ;};if _egf :=_dbc .compareAnnots (_ffde ,_gb ,_bdb );_egf !=nil {return _egf ;};};for _ede :=_dge +1;_ede <=_dfac .Len ();_ede ++{_dbc ._d .addErrorWithDescription (_ffde ,_ef .Sprintf ("\u0070a\u0067e\u0020\u0023\u0025\u0064\u0020w\u0061\u0073 \u0061\u0064\u0064\u0065\u0064",_ede )); +};for _eb :=_dge +1;_eb <=_ded .Len ();_eb ++{_dbc ._d .addErrorWithDescription (_ffde ,_ef .Sprintf ("p\u0061g\u0065\u0020\u0023\u0025\u0064\u0020\u0077\u0061s\u0020\u0072\u0065\u006dov\u0065\u0064",_eb ));};return nil ;}; + +// String returns the state of the warning. +func (_gfa *DiffResult )String ()string {return _ef .Sprintf ("\u0025\u0073\u0020\u0069n \u0072\u0065\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u0020\u0023\u0025\u0064",_gfa .Description ,_gfa .Revision );}; // DiffPolicy interface for comparing two revisions of the Pdf document. type DiffPolicy interface{ @@ -91,6 +43,53 @@ type DiffPolicy interface{ // and evaluate the differences between the revisions. // Each implementation of this interface must decide // how to handle cases where there are multiple revisions between the old and new revisions. -ReviewFile (_deb *_bd .PdfParser ,_gbfe *_bd .PdfParser ,_fcfg *MDPParameters )(*DiffResults ,error );};func _gec (_ddd _bd .PdfObject )([]_bd .PdfObject ,error ){_aga :=make ([]_bd .PdfObject ,0);if _ddd !=nil {_fbd :=_ddd ;if _cbd ,_gbf :=_bd .GetIndirect (_ddd ); -_gbf {_fbd =_cbd .PdfObject ;};if _ced ,_ggaf :=_bd .GetArray (_fbd );_ggaf {_aga =_ced .Elements ();}else {return nil ,_b .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0061n\u006eo\u0074s\u0027\u0020\u006f\u0062\u006a\u0065\u0063t"); -};};return _aga ,nil ;}; \ No newline at end of file +ReviewFile (_feac *_ed .PdfParser ,_cbf *_ed .PdfParser ,_gfg *MDPParameters )(*DiffResults ,error );}; + +// DiffResults describes the results of the DiffPolicy. +type DiffResults struct{Warnings []*DiffResult ;Errors []*DiffResult ;};func (_ggd *defaultDiffPolicy )compareAnnots (_gcg int ,_fcd ,_cg []_ed .PdfObject )error {_fe :=make (map[int64 ]*_ed .PdfObjectDictionary );for _ ,_agcb :=range _fcd {_baad ,_fea :=_ed .GetIndirect (_agcb ); +if !_fea {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_dgc ,_fea :=_ed .GetDict (_baad .PdfObject );if !_fea {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065"); +};_fe [_baad .ObjectNumber ]=_dgc ;};for _ ,_aaa :=range _cg {_gbb ,_dbe :=_ed .GetIndirect (_aaa );if !_dbe {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065"); +};_cd ,_dbe :=_ed .GetDict (_gbb .PdfObject );if !_dbe {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_bfg ,_ :=_ed .GetStringVal (_cd .Get ("\u0054")); +_bff ,_ :=_ed .GetNameVal (_cd .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if _ ,_abg :=_fe [_gbb .ObjectNumber ];!_abg {switch _ggd ._f {case NoRestrictions ,FillFormsAndAnnots :_ggd ._d .addWarningWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_bff ,_bfg )); +default:_dbd ,_aef :=_ed .GetDict (_gbb .PdfObject );if !_aef {return _a .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0061n\u006e\u006f\u0074\u0061ti\u006f\u006e");};_aae ,_aef :=_ed .GetNameVal (_dbd .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_aef {return _a .New ("\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020a\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0027\u0073\u0020\u0073\u0075\u0062\u0074\u0079\u0070\u0065");};if _aae =="\u0057\u0069\u0064\u0067\u0065\u0074"{switch _ggd ._f {case NoRestrictions ,FillFormsAndAnnots ,FillForms :_ggd ._d .addWarningWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_bff ,_bfg )); +default:_ggd ._d .addErrorWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_bff ,_bfg ));};}else {_ggd ._d .addErrorWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0025\u0073\u0020\u0077\u0061\u0073\u0020\u0061d\u0064\u0065\u0064",_bff ,_bfg )); +};};}else {delete (_fe ,_gbb .ObjectNumber );if _gdf ,_bgb :=_ggd ._g [_gbb .ObjectNumber ];_bgb {switch _ggd ._f {case NoRestrictions ,FillFormsAndAnnots :_ggd ._d .addWarningWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_bff ,_bfg )); +default:_age ,_bbb :=_ed .GetIndirect (_gdf );if !_bbb {return _a .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0061n\u006e\u006f\u0074\u0061ti\u006f\u006e");};_dga ,_bbb :=_ed .GetDict (_age .PdfObject );if !_bbb {return _a .New ("u\u006ed\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0061n\u006e\u006f\u0074\u0061ti\u006f\u006e"); +};_dgcg ,_bbb :=_ed .GetNameVal (_dga .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_bbb {return _a .New ("\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020a\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0027\u0073\u0020\u0073\u0075\u0062\u0074\u0079\u0070\u0065"); +};if _dgcg =="\u0057\u0069\u0064\u0067\u0065\u0074"{switch _ggd ._f {case NoRestrictions ,FillFormsAndAnnots ,FillForms :_ggd ._d .addWarningWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_bff ,_bfg )); +default:_ggd ._d .addErrorWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_bff ,_bfg ));};}else {_ggd ._d .addErrorWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0063\u0068\u0061\u006eg\u0065\u0064",_bff ,_bfg )); +};};};};};for _ ,_eag :=range _fe {_fbc ,_ :=_ed .GetStringVal (_eag .Get ("\u0054"));_aed ,_ :=_ed .GetNameVal (_eag .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));switch _ggd ._f {case NoRestrictions ,FillFormsAndAnnots :_ggd ._d .addWarningWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0072\u0065\u006d\u006fv\u0065\u0064",_aed ,_fbc )); +default:_ggd ._d .addErrorWithDescription (_gcg ,_ef .Sprintf ("\u0025\u0073\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0025s\u0020w\u0061\u0073\u0020\u0072\u0065\u006d\u006fv\u0065\u0064",_aed ,_fbc ));};};return nil ;}; + +// DiffResult describes the warning or the error for the DiffPolicy results. +type DiffResult struct{Revision int ;Description string ;}; + +// MDPParameters describes parameters for the MDP checks (now only DocMDP). +type MDPParameters struct{DocMDPLevel DocMDPPermission ;}; + +// IsPermitted returns true if changes permitted. +func (_aad *DiffResults )IsPermitted ()bool {return len (_aad .Errors )==0}; + +// ReviewFile implementation of DiffPolicy interface +// The default policy only checks the next types of objects: +// Page, Pages (container for page objects), Annot, Annots (container for annotation objects), Field. +// It checks adding, removing and modifying objects of these types. +func (_c *defaultDiffPolicy )ReviewFile (oldParser *_ed .PdfParser ,newParser *_ed .PdfParser ,params *MDPParameters )(*DiffResults ,error ){if oldParser .GetRevisionNumber ()> newParser .GetRevisionNumber (){return nil ,_a .New ("\u006f\u006c\u0064\u0020\u0072\u0065\u0076\u0069\u0073\u0069\u006f\u006e\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061n\u0020\u006e\u0065\u0077\u0020r\u0065\u0076i\u0073\u0069\u006f\u006e"); +};if oldParser .GetRevisionNumber ()==newParser .GetRevisionNumber (){if oldParser !=newParser {return nil ,_a .New ("\u0073\u0061m\u0065\u0020\u0072\u0065v\u0069\u0073i\u006f\u006e\u0073\u002c\u0020\u0062\u0075\u0074 \u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0074\u0020\u0070\u0061r\u0073\u0065\u0072\u0073"); +};return &DiffResults {},nil ;};if params ==nil {_c ._f =NoRestrictions ;}else {_c ._f =params .DocMDPLevel ;};_ff :=&DiffResults {};for _df :=oldParser .GetRevisionNumber ()+1;_df <=newParser .GetRevisionNumber ();_df ++{_b ,_ag :=newParser .GetRevision (_df -1); +if _ag !=nil {return nil ,_ag ;};_ae ,_ag :=newParser .GetRevision (_df );if _ag !=nil {return nil ,_ag ;};_da ,_ag :=_c .compareRevisions (_b ,_ae );if _ag !=nil {return nil ,_ag ;};_ff .Warnings =append (_ff .Warnings ,_da .Warnings ...);_ff .Errors =append (_ff .Errors ,_da .Errors ...); +};return _ff ,nil ;};func _gcb (_bbc _ed .PdfObject )([]_ed .PdfObject ,error ){_cfcc :=make ([]_ed .PdfObject ,0);if _bbc !=nil {_aaed :=_bbc ;if _fd ,_dbg :=_ed .GetIndirect (_bbc );_dbg {_aaed =_fd .PdfObject ;};if _dee ,_cae :=_ed .GetArray (_aaed ); +_cae {_cfcc =_dee .Elements ();}else {return nil ,_a .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0061n\u006eo\u0074s\u0027\u0020\u006f\u0062\u006a\u0065\u0063t");};};return _cfcc ,nil ;};func (_ffc *DiffResults )addWarning (_bfc *DiffResult ){if _ffc .Warnings ==nil {_ffc .Warnings =make ([]*DiffResult ,0); +};_ffc .Warnings =append (_ffc .Warnings ,_bfc );};const (NoRestrictions DocMDPPermission =0;NoChanges DocMDPPermission =1;FillForms DocMDPPermission =2;FillFormsAndAnnots DocMDPPermission =3;);func (_fb *defaultDiffPolicy )compareFields (_beb int ,_bc ,_dfa []_ed .PdfObject )error {_gf :=make (map[int64 ]*_ed .PdfObjectDictionary ); +for _ ,_ggbd :=range _bc {_fgb ,_bed :=_ed .GetIndirect (_ggbd );if !_bed {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006cd\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_dd ,_bed :=_ed .GetDict (_fgb .PdfObject ); +if !_bed {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0061\u006e\u006e\u006ft\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_gf [_fgb .ObjectNumber ]=_dd ;};for _ ,_bfb :=range _dfa {_efe ,_eg :=_ed .GetIndirect (_bfb ); +if !_eg {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006cd\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065");};_cfc ,_eg :=_ed .GetDict (_efe .PdfObject );if !_eg {return _a .New ("\u0075\u006e\u0065\u0078p\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006cd\u0027s\u0020\u0073\u0074\u0072\u0075\u0063\u0074u\u0072\u0065"); +};T :=_cfc .Get ("\u0054");if _ ,_dfc :=_fb ._g [_efe .ObjectNumber ];_dfc {switch _fb ._f {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_fb ._d .addWarningWithDescription (_beb ,_ef .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",T )); +default:_fb ._d .addErrorWithDescription (_beb ,_ef .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",T ));};};if _ ,_edb :=_gf [_efe .ObjectNumber ];!_edb {switch _fb ._f {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_fb ._d .addWarningWithDescription (_beb ,_ef .Sprintf ("\u0046i\u0065l\u0064\u0020\u0025\u0073\u0020w\u0061\u0073 \u0061\u0064\u0064\u0065\u0064",_cfc .Get ("\u0054"))); +default:_fb ._d .addErrorWithDescription (_beb ,_ef .Sprintf ("\u0046i\u0065l\u0064\u0020\u0025\u0073\u0020w\u0061\u0073 \u0061\u0064\u0064\u0065\u0064",_cfc .Get ("\u0054")));};}else {delete (_gf ,_efe .ObjectNumber );if _ ,_bg :=_fb ._g [_efe .ObjectNumber ]; +_bg {switch _fb ._f {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_fb ._d .addWarningWithDescription (_beb ,_ef .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",_cfc .Get ("\u0054")));default:_fb ._d .addErrorWithDescription (_beb ,_ef .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0063\u0068\u0061ng\u0065\u0064",_cfc .Get ("\u0054"))); +};};};if FT ,_cc :=_ed .GetNameVal (_cfc .Get ("\u0046\u0054"));_cc {if FT =="\u0053\u0069\u0067"{if _ab ,_bae :=_ed .GetIndirect (_cfc .Get ("\u0056"));_bae {if _ ,_cb :=_fb ._g [_ab .ObjectNumber ];_cb {switch _fb ._f {case NoRestrictions ,FillForms ,FillFormsAndAnnots :_fb ._d .addWarningWithDescription (_beb ,_ef .Sprintf ("\u0053\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0066\u006f\u0072\u0020%\u0073 \u0066i\u0065l\u0064\u0020\u0077\u0061\u0073\u0020\u0063\u0068\u0061\u006e\u0067\u0065\u0064",T )); +default:_fb ._d .addErrorWithDescription (_beb ,_ef .Sprintf ("\u0053\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0066\u006f\u0072\u0020%\u0073 \u0066i\u0065l\u0064\u0020\u0077\u0061\u0073\u0020\u0063\u0068\u0061\u006e\u0067\u0065\u0064",T ));};};};}; +};};for _ ,_fa :=range _gf {switch _fb ._f {case NoRestrictions :_fb ._d .addWarningWithDescription (_beb ,_ef .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0072\u0065\u006dov\u0065\u0064",_fa .Get ("\u0054")));default:_fb ._d .addErrorWithDescription (_beb ,_ef .Sprintf ("F\u0069e\u006c\u0064\u0020\u0025\u0073\u0020\u0077\u0061s\u0020\u0072\u0065\u006dov\u0065\u0064",_fa .Get ("\u0054"))); +};};return nil ;};func (_gfd *DiffResults )addError (_edf *DiffResult ){if _gfd .Errors ==nil {_gfd .Errors =make ([]*DiffResult ,0);};_gfd .Errors =append (_gfd .Errors ,_edf );};func NewDefaultDiffPolicy ()DiffPolicy {return &defaultDiffPolicy {_g :nil ,_d :&DiffResults {},_f :0}}; diff --git a/model/model.go b/model/model.go index 0e430fb01..cc54d98fe 100644 --- a/model/model.go +++ b/model/model.go @@ -37,3509 +37,3542 @@ // fmt.Printf("The PDF file has %d pages\n", numPages) // // For more examples, see the unidoc-examples repository on GitHub: https://github.com/unidoc/unidoc-examples -package model ;import (_ag "bufio";_af "bytes";_ff "crypto/md5";_ed "crypto/rand";_be "crypto/sha1";_fb "crypto/x509";_d "encoding/binary";_fe "encoding/hex";_g "errors";_e "fmt";_feg "github.com/unidoc/pkcs7";_adg "github.com/unidoc/unipdf/v3/common"; -_aff "github.com/unidoc/unipdf/v3/core";_eec "github.com/unidoc/unipdf/v3/core/security";_aa "github.com/unidoc/unipdf/v3/core/security/crypt";_da "github.com/unidoc/unipdf/v3/internal/cmap";_gd "github.com/unidoc/unipdf/v3/internal/imageutil";_gff "github.com/unidoc/unipdf/v3/internal/license"; -_aae "github.com/unidoc/unipdf/v3/internal/sampling";_eee "github.com/unidoc/unipdf/v3/internal/textencoding";_cd "github.com/unidoc/unipdf/v3/internal/timeutils";_eb "github.com/unidoc/unipdf/v3/internal/transform";_bb "github.com/unidoc/unipdf/v3/model/internal/docutil"; -_bcd "github.com/unidoc/unipdf/v3/model/internal/fonts";_gf "github.com/unidoc/unipdf/v3/model/mdp";_bfd "github.com/unidoc/unipdf/v3/model/sigutil";_bf "github.com/unidoc/unipdf/v3/ps";_fga "github.com/unidoc/unitype";_ffb "golang.org/x/xerrors";_c "hash"; -_cg "image";_bc "image/color";_ "image/gif";_ "image/png";_ega "io";_ad "io/ioutil";_cf "math";_ffe "math/rand";_db "os";_bd "regexp";_fg "sort";_eed "strconv";_ba "strings";_b "sync";_f "time";_ee "unicode";_eg "unicode/utf8";); +package model ;import (_ba "bufio";_bc "bytes";_f "crypto/md5";_ec "crypto/rand";_fb "crypto/sha1";_bb "crypto/x509";_bad "encoding/binary";_be "encoding/hex";_bf "errors";_b "fmt";_eg "github.com/unidoc/pkcs7";_ag "github.com/unidoc/unipdf/v3/common"; +_dg "github.com/unidoc/unipdf/v3/core";_gbd "github.com/unidoc/unipdf/v3/core/security";_afb "github.com/unidoc/unipdf/v3/core/security/crypt";_ff "github.com/unidoc/unipdf/v3/internal/cmap";_fc "github.com/unidoc/unipdf/v3/internal/imageutil";_cfb "github.com/unidoc/unipdf/v3/internal/license"; +_fcd "github.com/unidoc/unipdf/v3/internal/sampling";_bd "github.com/unidoc/unipdf/v3/internal/textencoding";_bcc "github.com/unidoc/unipdf/v3/internal/timeutils";_fec "github.com/unidoc/unipdf/v3/internal/transform";_eba "github.com/unidoc/unipdf/v3/model/internal/docutil"; +_bbg "github.com/unidoc/unipdf/v3/model/internal/fonts";_ecb "github.com/unidoc/unipdf/v3/model/mdp";_fe "github.com/unidoc/unipdf/v3/model/sigutil";_gfd "github.com/unidoc/unipdf/v3/ps";_bfc "github.com/unidoc/unitype";_ge "golang.org/x/xerrors";_ed "hash"; +_gd "image";_edg "image/color";_ "image/gif";_ "image/png";_cf "io";_gf "io/ioutil";_cg "math";_cb "math/rand";_eb "os";_c "regexp";_gc "sort";_fbb "strconv";_ga "strings";_e "sync";_a "time";_af "unicode";_gbf "unicode/utf8";);func (_dbgf *PdfReader )newPdfAnnotationRichMediaFromDict (_cffb *_dg .PdfObjectDictionary )(*PdfAnnotationRichMedia ,error ){_cbdeg :=&PdfAnnotationRichMedia {}; +_cbdeg .RichMediaSettings =_cffb .Get ("\u0052\u0069\u0063\u0068\u004d\u0065\u0064\u0069\u0061\u0053\u0065\u0074t\u0069\u006e\u0067\u0073");_cbdeg .RichMediaContent =_cffb .Get ("\u0052\u0069c\u0068\u004d\u0065d\u0069\u0061\u0043\u006f\u006e\u0074\u0065\u006e\u0074"); +return _cbdeg ,nil ;}; -// PdfAnnotationLine represents Line annotations. -// (Section 12.5.6.7). -type PdfAnnotationLine struct{*PdfAnnotation ;*PdfAnnotationMarkup ;L _aff .PdfObject ;BS _aff .PdfObject ;LE _aff .PdfObject ;IC _aff .PdfObject ;LL _aff .PdfObject ;LLE _aff .PdfObject ;Cap _aff .PdfObject ;IT _aff .PdfObject ;LLO _aff .PdfObject ;CP _aff .PdfObject ; -Measure _aff .PdfObject ;CO _aff .PdfObject ;}; +// FlattenFieldsWithOpts flattens the AcroForm fields of the page using the +// provided field appearance generator and the specified options. If no options +// are specified, all form fields are flattened for the page. +// If a filter function is provided using the opts parameter, only the filtered +// fields are flattened. Otherwise, all form fields are flattened. +func (_ecfc *PdfPage )FlattenFieldsWithOpts (appgen FieldAppearanceGenerator ,opts *FieldFlattenOpts )error {_cbdgf :=map[*PdfAnnotation ]bool {};_ffccb ,_egef :=_ecfc .GetAnnotations ();if _egef !=nil {return _egef ;};_dcbb :=false ;for _ ,_cfae :=range _ffccb {if opts .AnnotFilterFunc !=nil {_cbdgf [_cfae ]=opts .AnnotFilterFunc (_cfae ); +}else {_cbdgf [_cfae ]=true ;};if _cbdgf [_cfae ]{_dcbb =true ;};};if !_dcbb {return nil ;};return _ecfc .flattenFieldsWithOpts (appgen ,opts ,_cbdgf );}; -// PdfColorPatternType3 represents a color shading pattern type 3 (Radial). -type PdfColorPatternType3 struct{Color PdfColor ;PatternName _aff .PdfObjectName ;}; +// GetPdfName returns the PDF name used to indicate the border style. +// (Table 166 p. 395). +func (_fccb *BorderStyle )GetPdfName ()string {switch *_fccb {case BorderStyleSolid :return "\u0053";case BorderStyleDashed :return "\u0044";case BorderStyleBeveled :return "\u0042";case BorderStyleInset :return "\u0049";case BorderStyleUnderline :return "\u0055"; +};return "";}; -// PageFromIndirectObject returns the PdfPage and page number for a given indirect object. -func (_fcdfd *PdfReader )PageFromIndirectObject (ind *_aff .PdfIndirectObject )(*PdfPage ,int ,error ){if len (_fcdfd .PageList )!=len (_fcdfd ._bfgfec ){return nil ,0,_g .New ("\u0070\u0061\u0067\u0065\u0020\u006c\u0069\u0073\u0074\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};for _gaeg ,_dfacb :=range _fcdfd ._bfgfec {if _dfacb ==ind {return _fcdfd .PageList [_gaeg ],_gaeg +1,nil ;};};return nil ,0,_g .New ("\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};func (_gfba *PdfReader )newPdfPageFromDict (_cafca *_aff .PdfObjectDictionary )(*PdfPage ,error ){_fccg :=NewPdfPage (); -_fccg ._bbdac =_cafca ;_fccg ._bfce =*_cafca ;_ccdd :=*_cafca ;_afgb ,_cgce :=_ccdd .Get ("\u0054\u0079\u0070\u0065").(*_aff .PdfObjectName );if !_cgce {return nil ,_g .New ("\u006d\u0069ss\u0069\u006e\u0067/\u0069\u006e\u0076\u0061lid\u0020Pa\u0067\u0065\u0020\u0064\u0069\u0063\u0074io\u006e\u0061\u0072\u0079\u0020\u0054\u0079p\u0065"); -};if *_afgb !="\u0050\u0061\u0067\u0065"{return nil ,_g .New ("\u0070\u0061\u0067\u0065 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0054y\u0070\u0065\u0020\u0021\u003d\u0020\u0050a\u0067\u0065");};if _cafdc :=_ccdd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"); -_cafdc !=nil {_fccg .Parent =_cafdc ;};if _bbbeg :=_ccdd .Get ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064");_bbbeg !=nil {_cagaf ,_faff :=_aff .GetString (_bbbeg );if !_faff {return nil ,_g .New ("\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u004c\u0061\u0073\u0074\u004d\u006f\u0064\u0069f\u0069\u0065\u0064\u0020\u0021=\u0020\u0073t\u0072\u0069\u006e\u0067"); -};_acedg ,_feafa :=NewPdfDate (_cagaf .Str ());if _feafa !=nil {return nil ,_feafa ;};_fccg .LastModified =&_acedg ;};if _agef :=_ccdd .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");_agef !=nil &&!_aff .IsNullObject (_agef ){_cfgab ,_afgg :=_aff .GetDict (_agef ); -if !_afgg {return nil ,_e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063e\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_agef );};var _eedef error ;_fccg .Resources ,_eedef =NewPdfPageResourcesFromDict (_cfgab ); -if _eedef !=nil {return nil ,_eedef ;};}else {_cedcd ,_abdc :=_fccg .getParentResources ();if _abdc !=nil {return nil ,_abdc ;};if _cedcd ==nil {_cedcd =NewPdfPageResources ();};_fccg .Resources =_cedcd ;};if _faaba :=_ccdd .Get ("\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078"); -_faaba !=nil {_fbfbd ,_afef :=_aff .GetArray (_faaba );if !_afef {return nil ,_g .New ("\u0070\u0061\u0067\u0065\u0020\u004d\u0065\u0064\u0069\u0061\u0042o\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079");};var _ccef error ; -_fccg .MediaBox ,_ccef =NewPdfRectangle (*_fbfbd );if _ccef !=nil {return nil ,_ccef ;};};if _ggabb :=_ccdd .Get ("\u0043r\u006f\u0070\u0042\u006f\u0078");_ggabb !=nil {_edfc ,_gfacf :=_aff .GetArray (_ggabb );if !_gfacf {return nil ,_g .New ("\u0070a\u0067\u0065\u0020\u0043r\u006f\u0070\u0042\u006f\u0078 \u006eo\u0074 \u0061\u006e\u0020\u0061\u0072\u0072\u0061y"); -};var _daeef error ;_fccg .CropBox ,_daeef =NewPdfRectangle (*_edfc );if _daeef !=nil {return nil ,_daeef ;};};if _gfag :=_ccdd .Get ("\u0042\u006c\u0065\u0065\u0064\u0042\u006f\u0078");_gfag !=nil {_dgdg ,_ceede :=_aff .GetArray (_gfag );if !_ceede {return nil ,_g .New ("\u0070\u0061\u0067\u0065\u0020\u0042\u006c\u0065\u0065\u0064\u0042o\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079"); -};var _cgfg error ;_fccg .BleedBox ,_cgfg =NewPdfRectangle (*_dgdg );if _cgfg !=nil {return nil ,_cgfg ;};};if _ddfab :=_ccdd .Get ("\u0054r\u0069\u006d\u0042\u006f\u0078");_ddfab !=nil {_ecbcf ,_dfecf :=_aff .GetArray (_ddfab );if !_dfecf {return nil ,_g .New ("\u0070a\u0067\u0065\u0020\u0054r\u0069\u006d\u0042\u006f\u0078 \u006eo\u0074 \u0061\u006e\u0020\u0061\u0072\u0072\u0061y"); -};var _gcaed error ;_fccg .TrimBox ,_gcaed =NewPdfRectangle (*_ecbcf );if _gcaed !=nil {return nil ,_gcaed ;};};if _dcggb :=_ccdd .Get ("\u0041\u0072\u0074\u0042\u006f\u0078");_dcggb !=nil {_aceb ,_adcg :=_aff .GetArray (_dcggb );if !_adcg {return nil ,_g .New ("\u0070a\u0067\u0065\u0020\u0041\u0072\u0074\u0042\u006f\u0078\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); -};var _abcc error ;_fccg .ArtBox ,_abcc =NewPdfRectangle (*_aceb );if _abcc !=nil {return nil ,_abcc ;};};if _feaaa :=_ccdd .Get ("\u0042\u006f\u0078C\u006f\u006c\u006f\u0072\u0049\u006e\u0066\u006f");_feaaa !=nil {_fccg .BoxColorInfo =_feaaa ;};if _ddecc :=_ccdd .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"); -_ddecc !=nil {_fccg .Contents =_ddecc ;};if _bgaag :=_ccdd .Get ("\u0052\u006f\u0074\u0061\u0074\u0065");_bgaag !=nil {_dfcd ,_afeda :=_aff .GetNumberAsInt64 (_bgaag );if _afeda !=nil {return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0067e\u0020\u0052\u006f\u0074\u0061\u0074\u0065\u0020\u006f\u0062j\u0065\u0063\u0074"); -};_fccg .Rotate =&_dfcd ;};if _afda :=_ccdd .Get ("\u0047\u0072\u006fu\u0070");_afda !=nil {_fccg .Group =_afda ;};if _egebb :=_ccdd .Get ("\u0054\u0068\u0075m\u0062");_egebb !=nil {_fccg .Thumb =_egebb ;};if _abgda :=_ccdd .Get ("\u0042");_abgda !=nil {_fccg .B =_abgda ; -};if _ddea :=_ccdd .Get ("\u0044\u0075\u0072");_ddea !=nil {_fccg .Dur =_ddea ;};if _bgfgc :=_ccdd .Get ("\u0054\u0072\u0061n\u0073");_bgfgc !=nil {_fccg .Trans =_bgfgc ;};if _dgffa :=_ccdd .Get ("\u0041\u0041");_dgffa !=nil {_fccg .AA =_dgffa ;};if _bedea :=_ccdd .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"); -_bedea !=nil {_fccg .Metadata =_bedea ;};if _fgeaf :=_ccdd .Get ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o");_fgeaf !=nil {_fccg .PieceInfo =_fgeaf ;};if _bcad :=_ccdd .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073"); -_bcad !=nil {_fccg .StructParents =_bcad ;};if _abda :=_ccdd .Get ("\u0049\u0044");_abda !=nil {_fccg .ID =_abda ;};if _ceddc :=_ccdd .Get ("\u0050\u005a");_ceddc !=nil {_fccg .PZ =_ceddc ;};if _dabd :=_ccdd .Get ("\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006fn\u0049\u006e\u0066\u006f"); -_dabd !=nil {_fccg .SeparationInfo =_dabd ;};if _adbge :=_ccdd .Get ("\u0054\u0061\u0062\u0073");_adbge !=nil {_fccg .Tabs =_adbge ;};if _eedca :=_ccdd .Get ("T\u0065m\u0070\u006c\u0061\u0074\u0065\u0049\u006e\u0073t\u0061\u006e\u0074\u0069at\u0065\u0064"); -_eedca !=nil {_fccg .TemplateInstantiated =_eedca ;};if _gegb :=_ccdd .Get ("\u0050r\u0065\u0073\u0053\u0074\u0065\u0070s");_gegb !=nil {_fccg .PresSteps =_gegb ;};if _bbgbe :=_ccdd .Get ("\u0055\u0073\u0065\u0072\u0055\u006e\u0069\u0074");_bbgbe !=nil {_fccg .UserUnit =_bbgbe ; -};if _eagc :=_ccdd .Get ("\u0056\u0050");_eagc !=nil {_fccg .VP =_eagc ;};if _cegg :=_ccdd .Get ("\u0041\u006e\u006e\u006f\u0074\u0073");_cegg !=nil {_fccg .Annots =_cegg ;};_fccg ._dbbf =_gfba ;return _fccg ,nil ;}; +// PdfActionTrans represents a trans action. +type PdfActionTrans struct{*PdfAction ;Trans _dg .PdfObject ;}; -// GetEncryptionMethod returns a descriptive information string about the encryption method used. -func (_fggde *PdfReader )GetEncryptionMethod ()string {_cfabf :=_fggde ._gaece .GetCrypter ();return _cfabf .String ();};func _ccbae (_bbea *_aff .PdfObjectDictionary )(*PdfShadingType2 ,error ){_cbaee :=PdfShadingType2 {};_dfgdec :=_bbea .Get ("\u0043\u006f\u006f\u0072\u0064\u0073"); -if _dfgdec ==nil {_adg .Log .Debug ("R\u0065\u0071\u0075\u0069\u0072\u0065d\u0020\u0061\u0074\u0074\u0072\u0069b\u0075\u0074\u0065\u0020\u006d\u0069\u0073s\u0069\u006e\u0067\u003a\u0020\u0020\u0043\u006f\u006f\u0072d\u0073");return nil ,ErrRequiredAttributeMissing ; -};_cdgbc ,_bgffg :=_dfgdec .(*_aff .PdfObjectArray );if !_bgffg {_adg .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_dfgdec );return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); -};if _cdgbc .Len ()!=4{_adg .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0034\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_cdgbc .Len ());return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065"); -};_cbaee .Coords =_cdgbc ;if _fbcfb :=_bbea .Get ("\u0044\u006f\u006d\u0061\u0069\u006e");_fbcfb !=nil {_fbcfb =_aff .TraceToDirectObject (_fbcfb );_dfdbg ,_cgbf :=_fbcfb .(*_aff .PdfObjectArray );if !_cgbf {_adg .Log .Debug ("\u0044\u006f\u006d\u0061i\u006e\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_fbcfb ); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_cbaee .Domain =_dfdbg ;};_dfgdec =_bbea .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _dfgdec ==nil {_adg .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); -return nil ,ErrRequiredAttributeMissing ;};_cbaee .Function =[]PdfFunction {};if _becfcc ,_dcag :=_dfgdec .(*_aff .PdfObjectArray );_dcag {for _ ,_gbaf :=range _becfcc .Elements (){_acbff ,_cfgbg :=_fdfeg (_gbaf );if _cfgbg !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_cfgbg ); -return nil ,_cfgbg ;};_cbaee .Function =append (_cbaee .Function ,_acbff );};}else {_afdbe ,_edbgc :=_fdfeg (_dfgdec );if _edbgc !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_edbgc ); -return nil ,_edbgc ;};_cbaee .Function =append (_cbaee .Function ,_afdbe );};if _eedgd :=_bbea .Get ("\u0045\u0078\u0074\u0065\u006e\u0064");_eedgd !=nil {_eedgd =_aff .TraceToDirectObject (_eedgd );_egec ,_cafcae :=_eedgd .(*_aff .PdfObjectArray );if !_cafcae {_adg .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_eedgd ); -return nil ,_aff .ErrTypeError ;};if _egec .Len ()!=2{_adg .Log .Debug ("\u0045\u0078\u0074\u0065n\u0064\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0032\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_egec .Len ());return nil ,ErrInvalidAttribute ; -};_cbaee .Extend =_egec ;};return &_cbaee ,nil ;}; +// DefaultImageHandler is the default implementation of the ImageHandler using the standard go library. +type DefaultImageHandler struct{}; -// K returns the value of the key component of the color. -func (_fee *PdfColorDeviceCMYK )K ()float64 {return _fee [3]}; +// String returns string value of output intent for given type +// ISO_19005-2 6.2.3: GTS_PDFA1 value should be used for PDF/A-1, A-2 and A-3 at least +func (_cdcc PdfOutputIntentType )String ()string {switch _cdcc {case PdfOutputIntentTypeA1 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411";case PdfOutputIntentTypeA2 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411";case PdfOutputIntentTypeA3 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411"; +case PdfOutputIntentTypeA4 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411";case PdfOutputIntentTypeX :return "\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0058";default:return "\u0055N\u0044\u0045\u0046\u0049\u004e\u0045D";};}; -// GetType returns the button field type which returns one of the following -// - PdfFieldButtonPush for push button fields -// - PdfFieldButtonCheckbox for checkbox fields -// - PdfFieldButtonRadio for radio button fields -func (_dfcc *PdfFieldButton )GetType ()ButtonType {_ebgbc :=ButtonTypeCheckbox ;if _dfcc .Ff !=nil {if (uint32 (*_dfcc .Ff )&FieldFlagPushbutton .Mask ())> 0{_ebgbc =ButtonTypePush ;}else if (uint32 (*_dfcc .Ff )&FieldFlagRadio .Mask ())> 0{_ebgbc =ButtonTypeRadio ; -};};return _ebgbc ;}; +// ToPdfObject implements interface PdfModel. +func (_bee *PdfActionImportData )ToPdfObject ()_dg .PdfObject {_bee .PdfAction .ToPdfObject ();_bga :=_bee ._cbd ;_fce :=_bga .PdfObject .(*_dg .PdfObjectDictionary );_fce .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeImportData )));if _bee .F !=nil {_fce .Set ("\u0046",_bee .F .ToPdfObject ()); +};return _bga ;}; -// GetNamedDestinations returns the Dests entry in the PDF catalog. -// See section 12.3.2.3 "Named Destinations" (p. 367 PDF32000_2008). -func (_cgcbf *PdfReader )GetNamedDestinations ()(_aff .PdfObject ,error ){_agbde :=_aff .ResolveReference (_cgcbf ._dcadd .Get ("\u0044\u0065\u0073t\u0073"));if _agbde ==nil {return nil ,nil ;};if !_cgcbf ._gfgg {_bfcag :=_cgcbf .traverseObjectData (_agbde ); -if _bfcag !=nil {return nil ,_bfcag ;};};return _agbde ,nil ;}; +// NewPdfField returns an initialized PdfField. +func NewPdfField ()*PdfField {return &PdfField {_egce :_dg .MakeIndirectObject (_dg .MakeDict ())}}; -// NewPdfOutlineItem returns an initialized PdfOutlineItem. -func NewPdfOutlineItem ()*PdfOutlineItem {_ggcde :=&PdfOutlineItem {_dcee :_aff .MakeIndirectObject (_aff .MakeDict ())};_ggcde ._gecd =_ggcde ;return _ggcde ;}; +// Items returns all children outline items. +func (_dadce *OutlineItem )Items ()[]*OutlineItem {return _dadce .Entries }; -// GetXObjectFormByName returns the XObjectForm with the specified name from the -// page resources, if it exists. -func (_begag *PdfPageResources )GetXObjectFormByName (keyName _aff .PdfObjectName )(*XObjectForm ,error ){_gbded ,_decdc :=_begag .GetXObjectByName (keyName );if _gbded ==nil {return nil ,nil ;};if _decdc !=XObjectTypeForm {return nil ,_g .New ("\u006e\u006f\u0074\u0020\u0061\u0020\u0066\u006f\u0072\u006d"); -};_cdgddb ,_aegbf :=NewXObjectFormFromStream (_gbded );if _aegbf !=nil {return nil ,_aegbf ;};return _cdgddb ,nil ;};func (_dbegd *LTV )enable (_gadge ,_dgge []*_fb .Certificate ,_dbcga string )error {_cbgf ,_eacdc ,_gdfeb :=_dbegd .buildCertChain (_gadge ,_dgge ); -if _gdfeb !=nil {return _gdfeb ;};_ffcfd ,_gdfeb :=_dbegd .getCerts (_cbgf );if _gdfeb !=nil {return _gdfeb ;};var _gafcb ,_fcgg [][]byte ;if _dbegd .OCSPClient !=nil {_gafcb ,_gdfeb =_dbegd .getOCSPs (_cbgf ,_eacdc );if _gdfeb !=nil {return _gdfeb ;}; -};if _dbegd .CRLClient !=nil {_fcgg ,_gdfeb =_dbegd .getCRLs (_cbgf );if _gdfeb !=nil {return _gdfeb ;};};_ecbec :=_dbegd ._gceb ;_dffda ,_gdfeb :=_ecbec .AddCerts (_ffcfd );if _gdfeb !=nil {return _gdfeb ;};_ggad ,_gdfeb :=_ecbec .AddOCSPs (_gafcb );if _gdfeb !=nil {return _gdfeb ; -};_gcgae ,_gdfeb :=_ecbec .AddCRLs (_fcgg );if _gdfeb !=nil {return _gdfeb ;};if _dbcga !=""{_ecbec .VRI [_dbcga ]=&VRI {Cert :_dffda ,OCSP :_ggad ,CRL :_gcgae };};_dbegd ._bbbab .SetDSS (_ecbec );return nil ;}; +// ToPdfObject returns the PDF representation of the colorspace. +func (_fcdf *PdfColorspaceDeviceGray )ToPdfObject ()_dg .PdfObject {return _dg .MakeName ("\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079");};func (_eafa SignatureValidationResult )String ()string {var _egacb _bc .Buffer ;_egacb .WriteString (_b .Sprintf ("\u004ea\u006d\u0065\u003a\u0020\u0025\u0073\n",_eafa .Name )); +if _eafa .Date ._bgfdb > 0{_egacb .WriteString (_b .Sprintf ("\u0044a\u0074\u0065\u003a\u0020\u0025\u0073\n",_eafa .Date .ToGoTime ().String ()));}else {_egacb .WriteString ("\u0044\u0061\u0074\u0065 n\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u000a"); +};if len (_eafa .Reason )> 0{_egacb .WriteString (_b .Sprintf ("R\u0065\u0061\u0073\u006f\u006e\u003a\u0020\u0025\u0073\u000a",_eafa .Reason ));}else {_egacb .WriteString ("N\u006f \u0072\u0065\u0061\u0073\u006f\u006e\u0020\u0073p\u0065\u0063\u0069\u0066ie\u0064\u000a"); +};if len (_eafa .Location )> 0{_egacb .WriteString (_b .Sprintf ("\u004c\u006f\u0063\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0073\u000a",_eafa .Location ));}else {_egacb .WriteString ("\u004c\u006f\u0063at\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u000a"); +};if len (_eafa .ContactInfo )> 0{_egacb .WriteString (_b .Sprintf ("\u0043\u006f\u006e\u0074\u0061\u0063\u0074\u0020\u0049\u006e\u0066\u006f:\u0020\u0025\u0073\u000a",_eafa .ContactInfo ));}else {_egacb .WriteString ("C\u006f\u006e\u0074\u0061\u0063\u0074 \u0069\u006e\u0066\u006f\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063i\u0066i\u0065\u0064\u000a"); +};_egacb .WriteString (_b .Sprintf ("F\u0069\u0065\u006c\u0064\u0073\u003a\u0020\u0025\u0064\u000a",len (_eafa .Fields )));if _eafa .IsSigned {_egacb .WriteString ("S\u0069\u0067\u006e\u0065\u0064\u003a \u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020i\u0073\u0020\u0073i\u0067n\u0065\u0064\u000a"); +}else {_egacb .WriteString ("\u0053\u0069\u0067\u006eed\u003a\u0020\u004e\u006f\u0074\u0020\u0073\u0069\u0067\u006e\u0065\u0064\u000a");};if _eafa .IsVerified {_egacb .WriteString ("\u0053\u0069\u0067n\u0061\u0074\u0075\u0072e\u0020\u0076\u0061\u006c\u0069\u0064\u0061t\u0069\u006f\u006e\u003a\u0020\u0049\u0073\u0020\u0076\u0061\u006c\u0069\u0064\u000a"); +}else {_egacb .WriteString ("\u0053\u0069\u0067\u006e\u0061\u0074u\u0072\u0065\u0020\u0076\u0061\u006c\u0069\u0064\u0061\u0074\u0069\u006f\u006e:\u0020\u0049\u0073\u0020\u0069\u006e\u0076a\u006c\u0069\u0064\u000a");};if _eafa .IsTrusted {_egacb .WriteString ("\u0054\u0072\u0075\u0073\u0074\u0065\u0064\u003a\u0020\u0043\u0065\u0072\u0074\u0069\u0066i\u0063a\u0074\u0065\u0020\u0069\u0073\u0020\u0074\u0072\u0075\u0073\u0074\u0065\u0064\u000a"); +}else {_egacb .WriteString ("\u0054\u0072\u0075s\u0074\u0065\u0064\u003a \u0055\u006e\u0074\u0072\u0075\u0073\u0074e\u0064\u0020\u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u000a");};if !_eafa .GeneralizedTime .IsZero (){_egacb .WriteString (_b .Sprintf ("G\u0065n\u0065\u0072\u0061\u006c\u0069\u007a\u0065\u0064T\u0069\u006d\u0065\u003a %\u0073\u000a",_eafa .GeneralizedTime .String ())); +};if _eafa .DiffResults !=nil {_egacb .WriteString (_b .Sprintf ("\u0064\u0069\u0066\u0066 i\u0073\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u003a\u0020\u0025v\u000a",_eafa .DiffResults .IsPermitted ()));if len (_eafa .DiffResults .Warnings )> 0{_egacb .WriteString ("\u004d\u0044\u0050\u0020\u0077\u0061\u0072\u006e\u0069n\u0067\u0073\u003a\u000a"); +for _ ,_gafd :=range _eafa .DiffResults .Warnings {_egacb .WriteString (_b .Sprintf ("\u0009\u0025\u0073\u000a",_gafd ));};};if len (_eafa .DiffResults .Errors )> 0{_egacb .WriteString ("\u004d\u0044\u0050 \u0065\u0072\u0072\u006f\u0072\u0073\u003a\u000a"); +for _ ,_fefc :=range _eafa .DiffResults .Errors {_egacb .WriteString (_b .Sprintf ("\u0009\u0025\u0073\u000a",_fefc ));};};};if _eafa .IsCrlFound {_egacb .WriteString ("R\u0065\u0076\u006f\u0063\u0061\u0074i\u006f\u006e\u0020\u0064\u0061\u0074\u0061\u003a\u0020C\u0052\u004c\u0020f\u006fu\u006e\u0064\u000a"); +}else {_egacb .WriteString ("\u0052\u0065\u0076o\u0063\u0061\u0074\u0069o\u006e\u0020\u0064\u0061\u0074\u0061\u003a \u0043\u0052\u004c\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u000a");};if _eafa .IsOcspFound {_egacb .WriteString ("\u0052\u0065\u0076\u006fc\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061\u0074\u0061:\u0020O\u0043\u0053\u0050\u0020\u0066\u006f\u0075n\u0064\u000a"); +}else {_egacb .WriteString ("\u0052\u0065\u0076\u006f\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061\u0074\u0061:\u0020O\u0043\u0053\u0050\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u000a");};return _egacb .String ();}; -// NewPdfColorPattern returns an empty color pattern. -func NewPdfColorPattern ()*PdfColorPattern {_accc :=&PdfColorPattern {};return _accc }; +// NewPdfActionThread returns a new "thread" action. +func NewPdfActionThread ()*PdfActionThread {_ebcc :=NewPdfAction ();_gfdc :=&PdfActionThread {};_gfdc .PdfAction =_ebcc ;_ebcc .SetContext (_gfdc );return _gfdc ;}; -// FlattenFieldsWithOpts flattens the AcroForm fields of the page using the -// provided field appearance generator and the specified options. If no options -// are specified, all form fields are flattened for the page. -// If a filter function is provided using the opts parameter, only the filtered -// fields are flattened. Otherwise, all form fields are flattened. -func (_cfba *PdfPage )FlattenFieldsWithOpts (appgen FieldAppearanceGenerator ,opts *FieldFlattenOpts )error {_abacc :=map[*PdfAnnotation ]bool {};_fgafc ,_ggfa :=_cfba .GetAnnotations ();if _ggfa !=nil {return _ggfa ;};_fffad :=false ;for _ ,_bffdg :=range _fgafc {if opts .AnnotFilterFunc !=nil {_abacc [_bffdg ]=opts .AnnotFilterFunc (_bffdg ); -}else {_abacc [_bffdg ]=true ;};if _abacc [_bffdg ]{_fffad =true ;};};if !_fffad {return nil ;};return _cfba .flattenFieldsWithOpts (appgen ,opts ,_abacc );}; +// GetContainingPdfObject returns the containing object for the PdfField, i.e. an indirect object +// containing the field dictionary. +func (_defd *PdfField )GetContainingPdfObject ()_dg .PdfObject {return _defd ._egce }; -// ColorFromPdfObjects gets the color from a series of pdf objects (3 for rgb). -func (_baeed *PdfColorspaceDeviceRGB )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=3{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_afcb ,_gdfa :=_aff .GetNumbersAsFloat (objects ); -if _gdfa !=nil {return nil ,_gdfa ;};return _baeed .ColorFromFloats (_afcb );}; +// ToPdfObject implements interface PdfModel. +func (_gdgf *PdfAnnotationLink )ToPdfObject ()_dg .PdfObject {_gdgf .PdfAnnotation .ToPdfObject ();_baca :=_gdgf ._cdf ;_bfdg :=_baca .PdfObject .(*_dg .PdfObjectDictionary );_bfdg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u004c\u0069\u006e\u006b")); +if _gdgf ._ece !=nil &&_gdgf ._ece ._bg !=nil {_bfdg .Set ("\u0041",_gdgf ._ece ._bg .ToPdfObject ());}else if _gdgf .A !=nil {_bfdg .Set ("\u0041",_gdgf .A );};_bfdg .SetIfNotNil ("\u0044\u0065\u0073\u0074",_gdgf .Dest );_bfdg .SetIfNotNil ("\u0048",_gdgf .H ); +_bfdg .SetIfNotNil ("\u0050\u0041",_gdgf .PA );_bfdg .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_gdgf .QuadPoints );_bfdg .SetIfNotNil ("\u0042\u0053",_gdgf .BS );return _baca ;}; -// NewPdfFieldSignature returns an initialized signature field. -func NewPdfFieldSignature (signature *PdfSignature )*PdfFieldSignature {_dbeb :=&PdfFieldSignature {};_dbeb .PdfField =NewPdfField ();_dbeb .PdfField .SetContext (_dbeb );_dbeb .PdfAnnotationWidget =NewPdfAnnotationWidget ();_dbeb .PdfAnnotationWidget .SetContext (_dbeb ); -_dbeb .PdfAnnotationWidget ._ccfb =_dbeb .PdfField ._dfbfd ;_dbeb .T =_aff .MakeString ("");_dbeb .F =_aff .MakeInteger (132);_dbeb .V =signature ;return _dbeb ;};func (_ffgf *PdfWriter )copyObjects (){_ffgfc :=make (map[_aff .PdfObject ]_aff .PdfObject ); -_ffee :=make ([]_aff .PdfObject ,0,len (_ffgf ._babcd ));_ceddcb :=make (map[_aff .PdfObject ]struct{},len (_ffgf ._babcd ));_egagc :=make (map[_aff .PdfObject ]struct{});for _ ,_bffcf :=range _ffgf ._babcd {_dgbdag :=_ffgf .copyObject (_bffcf ,_ffgfc ,_egagc ,false ); -if _ ,_eabbf :=_egagc [_bffcf ];_eabbf {continue ;};_ffee =append (_ffee ,_dgbdag );_ceddcb [_dgbdag ]=struct{}{};};_ffgf ._babcd =_ffee ;_ffgf ._bgadg =_ceddcb ;_ffgf ._bacec =_ffgf .copyObject (_ffgf ._bacec ,_ffgfc ,nil ,false ).(*_aff .PdfIndirectObject ); -_ffgf ._adefd =_ffgf .copyObject (_ffgf ._adefd ,_ffgfc ,nil ,false ).(*_aff .PdfIndirectObject );if _ffgf ._fdedd !=nil {_ffgf ._fdedd =_ffgf .copyObject (_ffgf ._fdedd ,_ffgfc ,nil ,false ).(*_aff .PdfIndirectObject );};if _ffgf ._ccbe {_abfcb :=make (map[_aff .PdfObject ]int64 ); -for _fcefg ,_bbead :=range _ffgf ._becc {if _fbacg ,_dafge :=_ffgfc [_fcefg ];_dafge {_abfcb [_fbacg ]=_bbead ;}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020a\u0070\u0070\u0065n\u0064\u0020\u006d\u006fd\u0065\u0020\u002d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u0070\u0079\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u006d\u0061\u0070"); -};};_ffgf ._becc =_abfcb ;};};func (_fcbd fontCommon )asPdfObjectDictionary (_agagb string )*_aff .PdfObjectDictionary {if _agagb !=""&&_fcbd ._fbged !=""&&_agagb !=_fcbd ._fbged {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0061\u0073\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074\u0044\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0020O\u0076\u0065\u0072\u0072\u0069\u0064\u0069\u006e\u0067\u0020\u0073\u0075\u0062t\u0079\u0070\u0065\u0020\u0074\u006f \u0025\u0023\u0071 \u0025\u0073",_agagb ,_fcbd ); -}else if _agagb ==""&&_fcbd ._fbged ==""{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0061s\u0050\u0064\u0066Ob\u006a\u0065\u0063\u0074\u0044\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006e\u006f\u0020\u0073\u0075\u0062\u0074y\u0070\u0065\u002e\u0020\u0066\u006f\u006e\u0074=\u0025\u0073",_fcbd ); -}else if _fcbd ._fbged ==""{_fcbd ._fbged =_agagb ;};_bbbfe :=_aff .MakeDict ();_bbbfe .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0046\u006f\u006e\u0074"));_bbbfe .Set ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074",_aff .MakeName (_fcbd ._abed )); -_bbbfe .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName (_fcbd ._fbged ));if _fcbd ._ggca !=nil {_bbbfe .Set ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072",_fcbd ._ggca .ToPdfObject ());};if _fcbd ._ccbfg !=nil {_bbbfe .Set ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e",_fcbd ._ccbfg ); -}else if _fcbd ._dcad !=nil {_bgaac ,_cdffe :=_fcbd ._dcad .Stream ();if _cdffe !=nil {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0067\u0065\u0074\u0020C\u004d\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e\u0020\u0065r\u0072\u003d\u0025\u0076",_cdffe ); -}else {_bbbfe .Set ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e",_bgaac );};};return _bbbfe ;}; +// FullName returns the full name of the field as in rootname.parentname.partialname. +func (_gebg *PdfField )FullName ()(string ,error ){var _aaccb _bc .Buffer ;_efebd :=[]string {};if _gebg .T !=nil {_efebd =append (_efebd ,_gebg .T .Decoded ());};_dcff :=map[*PdfField ]bool {};_dcff [_gebg ]=true ;_adga :=_gebg .Parent ;for _adga !=nil {if _ ,_ffde :=_dcff [_adga ]; +_ffde {return _aaccb .String (),_bf .New ("\u0072\u0065\u0063\u0075rs\u0069\u0076\u0065\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0061\u006c");};if _adga .T ==nil {return _aaccb .String (),_bf .New ("\u0066\u0069el\u0064\u0020\u0070a\u0072\u0074\u0069\u0061l n\u0061me\u0020\u0028\u0054\u0029\u0020\u006e\u006ft \u0073\u0070\u0065\u0063\u0069\u0066\u0069e\u0064"); +};_efebd =append (_efebd ,_adga .T .Decoded ());_dcff [_adga ]=true ;_adga =_adga .Parent ;};for _ecedf :=len (_efebd )-1;_ecedf >=0;_ecedf --{_aaccb .WriteString (_efebd [_ecedf ]);if _ecedf > 0{_aaccb .WriteString ("\u002e");};};return _aaccb .String (),nil ; +};func (_fbfd *PdfAppender )updateObjectsDeep (_bebc _dg .PdfObject ,_bagd map[_dg .PdfObject ]struct{}){if _bagd ==nil {_bagd =map[_dg .PdfObject ]struct{}{};};if _ ,_ggc :=_bagd [_bebc ];_ggc ||_bebc ==nil {return ;};_bagd [_bebc ]=struct{}{};_ebcg :=_dg .ResolveReferencesDeep (_bebc ,_fbfd ._ebaa ); +if _ebcg !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ebcg );};switch _aea :=_bebc .(type ){case *_dg .PdfIndirectObject :switch {case _aea .GetParser ()==_fbfd ._debg ._baad :return ;case _aea .GetParser ()==_fbfd .Reader ._baad :_afgc ,_ :=_fbfd ._debg .GetIndirectObjectByNumber (int (_aea .ObjectNumber )); +_aaea ,_acba :=_afgc .(*_dg .PdfIndirectObject );if _acba &&_aaea !=nil {if _aaea .PdfObject !=_aea .PdfObject &&_aaea .PdfObject .WriteString ()!=_aea .PdfObject .WriteString (){if _ga .Contains (_aea .PdfObject .WriteString (),"\u002f\u0053\u0069\u0067")&&_ga .Contains (_aea .PdfObject .WriteString (),"\u002f\u0053\u0075\u0062\u0074\u0079\u0070\u0065"){return ; +};_fbfd .addNewObject (_bebc );_fbfd ._gebe [_bebc ]=_aea .ObjectNumber ;};};default:_fbfd .addNewObject (_bebc );};_fbfd .updateObjectsDeep (_aea .PdfObject ,_bagd );case *_dg .PdfObjectArray :for _ ,_ggcg :=range _aea .Elements (){_fbfd .updateObjectsDeep (_ggcg ,_bagd ); +};case *_dg .PdfObjectDictionary :for _ ,_bfe :=range _aea .Keys (){_fbfd .updateObjectsDeep (_aea .Get (_bfe ),_bagd );};case *_dg .PdfObjectStreams :if _aea .GetParser ()!=_fbfd ._debg ._baad {for _ ,_bcfeb :=range _aea .Elements (){_fbfd .updateObjectsDeep (_bcfeb ,_bagd ); +};};case *_dg .PdfObjectStream :switch {case _aea .GetParser ()==_fbfd ._debg ._baad :return ;case _aea .GetParser ()==_fbfd .Reader ._baad :if _bgcc ,_gdag :=_fbfd ._debg ._baad .LookupByReference (_aea .PdfObjectReference );_gdag ==nil {var _agdg bool ; +if _aeac ,_fccee :=_dg .GetStream (_bgcc );_fccee &&_bc .Equal (_aeac .Stream ,_aea .Stream ){_agdg =true ;};if _cabg ,_ebb :=_dg .GetDict (_bgcc );_agdg &&_ebb {_agdg =_cabg .WriteString ()==_aea .PdfObjectDictionary .WriteString ();};if _agdg {return ; +};};if _aea .ObjectNumber !=0{_fbfd ._gebe [_bebc ]=_aea .ObjectNumber ;};default:if _ ,_dcadf :=_fbfd ._efa [_bebc ];!_dcadf {_fbfd .addNewObject (_bebc );};};_fbfd .updateObjectsDeep (_aea .PdfObjectDictionary ,_bagd );};}; -// DefaultFont returns the default font, which is currently the built in Helvetica. -func DefaultFont ()*PdfFont {_gfdc ,_cebed :=_bcd .NewStdFontByName (HelveticaName );if !_cebed {panic ("\u0048\u0065lv\u0065\u0074\u0069c\u0061\u0020\u0073\u0068oul\u0064 a\u006c\u0077\u0061\u0079\u0073\u0020\u0062e \u0061\u0076\u0061\u0069\u006c\u0061\u0062l\u0065"); -};_dfaf :=_dbcbc (_gfdc );return &PdfFont {_gebd :&_dfaf };}; +// FlattenFieldsWithOpts flattens the AcroForm fields of the reader using the +// provided field appearance generator and the specified options. If no options +// are specified, all form fields are flattened. +// If a filter function is provided using the opts parameter, only the filtered +// fields are flattened. Otherwise, all form fields are flattened. +// At the end of the process, the AcroForm contains all the fields which were +// not flattened. If all fields are flattened, the reader's AcroForm field +// is set to nil. +func (_ebfd *PdfReader )FlattenFieldsWithOpts (appgen FieldAppearanceGenerator ,opts *FieldFlattenOpts )error {return _ebfd .flattenFieldsWithOpts (false ,appgen ,opts );}; -// PdfSignature represents a PDF signature dictionary and is used for signing via form signature fields. -// (Section 12.8, Table 252 - Entries in a signature dictionary p. 475 in PDF32000_2008). -type PdfSignature struct{Handler SignatureHandler ;_gagbc *_aff .PdfIndirectObject ; +// ToPdfObject implements interface PdfModel. +func (_fdbf *PdfAnnotationPopup )ToPdfObject ()_dg .PdfObject {_fdbf .PdfAnnotation .ToPdfObject ();_cfda :=_fdbf ._cdf ;_fgdd :=_cfda .PdfObject .(*_dg .PdfObjectDictionary );_fgdd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0050\u006f\u0070u\u0070")); +_fgdd .SetIfNotNil ("\u0050\u0061\u0072\u0065\u006e\u0074",_fdbf .Parent );_fgdd .SetIfNotNil ("\u004f\u0070\u0065\u006e",_fdbf .Open );return _cfda ;}; -// Type: Sig/DocTimeStamp -Type *_aff .PdfObjectName ;Filter *_aff .PdfObjectName ;SubFilter *_aff .PdfObjectName ;Contents *_aff .PdfObjectString ;Cert _aff .PdfObject ;ByteRange *_aff .PdfObjectArray ;Reference *_aff .PdfObjectArray ;Changes *_aff .PdfObjectArray ;Name *_aff .PdfObjectString ; -M *_aff .PdfObjectString ;Location *_aff .PdfObjectString ;Reason *_aff .PdfObjectString ;ContactInfo *_aff .PdfObjectString ;R *_aff .PdfObjectInteger ;V *_aff .PdfObjectInteger ;PropBuild *_aff .PdfObjectDictionary ;PropAuthTime *_aff .PdfObjectInteger ; -PropAuthType *_aff .PdfObjectName ;}; +// ImageToRGB converts ICCBased colorspace image to RGB and returns the result. +func (_ebdg *PdfColorspaceICCBased )ImageToRGB (img Image )(Image ,error ){if _ebdg .Alternate ==nil {_ag .Log .Debug ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); +if _ebdg .N ==1{_ag .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061y\u0020\u0028\u004e\u003d\u0031\u0029"); +_efff :=NewPdfColorspaceDeviceGray ();return _efff .ImageToRGB (img );}else if _ebdg .N ==3{_ag .Log .Debug ("\u0049\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006eg\u0020\u0044\u0065\u0076\u0069\u0063e\u0052\u0047B\u0020\u0028N\u003d3\u0029"); +return img ,nil ;}else if _ebdg .N ==4{_ag .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059K\u0020\u0028\u004e\u003d\u0034\u0029"); +_bgade :=NewPdfColorspaceDeviceCMYK ();return _bgade .ImageToRGB (img );}else {return img ,_bf .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); +};};_ag .Log .Trace ("\u0049\u0043\u0043 \u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061t\u0069\u0076\u0065\u003a\u0020\u0025\u0023\u0076",_ebdg ); +_ggaf ,_decd :=_ebdg .Alternate .ImageToRGB (img );_ag .Log .Trace ("I\u0043C\u0020\u0049\u006e\u0070\u0075\u0074\u0020\u0069m\u0061\u0067\u0065\u003a %\u002b\u0076",img );_ag .Log .Trace ("I\u0043\u0043\u0020\u004fut\u0070u\u0074\u0020\u0069\u006d\u0061g\u0065\u003a\u0020\u0025\u002b\u0076",_ggaf ); +return _ggaf ,_decd ;};func _ffgc (_aggca _dg .PdfObject )(*PdfBorderStyle ,error ){_bgbg :=&PdfBorderStyle {};_bgbg ._cbcb =_aggca ;var _gcfee *_dg .PdfObjectDictionary ;_aggca =_dg .TraceToDirectObject (_aggca );_gcfee ,_dfb :=_aggca .(*_dg .PdfObjectDictionary ); +if !_dfb {return nil ,_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};if _egae :=_gcfee .Get ("\u0054\u0079\u0070\u0065");_egae !=nil {_dffc ,_eged :=_egae .(*_dg .PdfObjectName );if !_eged {_ag .Log .Debug ("I\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062i\u006c\u0069\u0074\u0079\u0020\u0077\u0069th\u0020\u0054\u0079\u0070e\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061me\u0020\u006fb\u006a\u0065\u0063\u0074\u003a\u0020\u0025\u0054",_egae ); +}else {if *_dffc !="\u0042\u006f\u0072\u0064\u0065\u0072"{_ag .Log .Debug ("W\u0061\u0072\u006e\u0069\u006e\u0067,\u0020\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020B\u006f\u0072\u0064e\u0072:\u0020\u0025\u0073",*_dffc );};};};if _abdg :=_gcfee .Get ("\u0057"); +_abdg !=nil {_gbfd ,_cada :=_dg .GetNumberAsFloat (_abdg );if _cada !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006fr \u0072\u0065\u0074\u0072\u0069\u0065\u0076\u0069\u006e\u0067\u0020\u0057\u003a\u0020%\u0076",_cada );return nil ,_cada ;};_bgbg .W =&_gbfd ; +};if _fedf :=_gcfee .Get ("\u0053");_fedf !=nil {_fede ,_egga :=_fedf .(*_dg .PdfObjectName );if !_egga {return nil ,_bf .New ("\u0062\u006f\u0072\u0064\u0065\u0072\u0020\u0053\u0020\u006e\u006ft\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0062j\u0065\u0063\u0074"); +};var _fbdd BorderStyle ;switch *_fede {case "\u0053":_fbdd =BorderStyleSolid ;case "\u0044":_fbdd =BorderStyleDashed ;case "\u0042":_fbdd =BorderStyleBeveled ;case "\u0049":_fbdd =BorderStyleInset ;case "\u0055":_fbdd =BorderStyleUnderline ;default:_ag .Log .Debug ("I\u006e\u0076\u0061\u006cid\u0020s\u0074\u0079\u006c\u0065\u0020n\u0061\u006d\u0065\u0020\u0025\u0073",*_fede ); +return nil ,_bf .New ("\u0073\u0074\u0079\u006ce \u0074\u0079\u0070\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065c\u006b");};_bgbg .S =&_fbdd ;};if _aggf :=_gcfee .Get ("\u0044");_aggf !=nil {_becg ,_acab :=_aggf .(*_dg .PdfObjectArray ); +if !_acab {_ag .Log .Debug ("\u0042\u006f\u0072\u0064\u0065\u0072\u0020\u0044\u0020\u0064a\u0073\u0068\u0020\u006e\u006f\u0074\u0020a\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0054",_aggf );return nil ,_bf .New ("\u0062o\u0072\u0064\u0065\u0072 \u0044\u0020\u0074\u0079\u0070e\u0020c\u0068e\u0063\u006b\u0020\u0065\u0072\u0072\u006fr"); +};_fegg ,_fbgb :=_becg .ToIntegerArray ();if _fbgb !=nil {_ag .Log .Debug ("\u0042\u006f\u0072\u0064\u0065\u0072\u0020\u0044 \u0050\u0072\u006fbl\u0065\u006d\u0020\u0063\u006f\u006ev\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0069\u006e\u0074\u0065\u0067e\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u003a \u0025\u0076",_fbgb ); +return nil ,_fbgb ;};_bgbg .D =&_fegg ;};return _bgbg ,nil ;};func _ecef (_fggbf _dg .PdfObject )(*PdfColorspaceDeviceNAttributes ,error ){_ggfca :=&PdfColorspaceDeviceNAttributes {};var _cbfec *_dg .PdfObjectDictionary ;switch _bcfb :=_fggbf .(type ){case *_dg .PdfIndirectObject :_ggfca ._ffbg =_bcfb ; +var _ffdg bool ;_cbfec ,_ffdg =_bcfb .PdfObject .(*_dg .PdfObjectDictionary );if !_ffdg {_ag .Log .Error ("\u0044\u0065\u0076\u0069c\u0065\u004e\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065 \u0074\u0079\u0070\u0065\u0020\u0065\u0072r\u006f\u0072"); +return nil ,_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};case *_dg .PdfObjectDictionary :_cbfec =_bcfb ;case *_dg .PdfObjectReference :_agccb :=_bcfb .Resolve ();return _ecef (_agccb );default:_ag .Log .Error ("\u0044\u0065\u0076\u0069c\u0065\u004e\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065 \u0074\u0079\u0070\u0065\u0020\u0065\u0072r\u006f\u0072"); +return nil ,_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _bdgag :=_cbfec .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_bdgag !=nil {_acad ,_eacdc :=_dg .TraceToDirectObject (_bdgag ).(*_dg .PdfObjectName );if !_eacdc {_ag .Log .Error ("\u0044\u0065vi\u0063\u0065\u004e \u0061\u0074\u0074\u0072ibu\u0074e \u0053\u0075\u0062\u0074\u0079\u0070\u0065 t\u0079\u0070\u0065\u0020\u0065\u0072\u0072o\u0072"); +return nil ,_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_ggfca .Subtype =_acad ;};if _dggg :=_cbfec .Get ("\u0043o\u006c\u006f\u0072\u0061\u006e\u0074s");_dggg !=nil {_ggfca .Colorants =_dggg ;};if _deee :=_cbfec .Get ("\u0050r\u006f\u0063\u0065\u0073\u0073"); +_deee !=nil {_ggfca .Process =_deee ;};if _ecbaba :=_cbfec .Get ("M\u0069\u0078\u0069\u006e\u0067\u0048\u0069\u006e\u0074\u0073");_ecbaba !=nil {_ggfca .MixingHints =_ecbaba ;};return _ggfca ,nil ;}; -// Encoder returns the font's text encoder. -func (_cgfc pdfCIDFontType0 )Encoder ()_eee .TextEncoder {return _cgfc ._fbdc };func (_gdaee *Image )getSuitableEncoder ()(_aff .StreamEncoder ,error ){var (_ggba ,_begge =int (_gdaee .Width ),int (_gdaee .Height );_gacgb =make (map[string ]bool );_ceec =true ; -_begcb =false ;_efbfb =func ()*_aff .DCTEncoder {return _aff .NewDCTEncoder ()};_eefda =func ()*_aff .DCTEncoder {_eaccgb :=_aff .NewDCTEncoder ();_eaccgb .BitsPerComponent =16;return _eaccgb ;};);for _egbd :=0;_egbd < _begge ;_egbd ++{for _fddaf :=0;_fddaf < _ggba ; -_fddaf ++{_aeac ,_ggdgac :=_gdaee .ColorAt (_fddaf ,_egbd );if _ggdgac !=nil {return nil ,_ggdgac ;};_ebgbf ,_bbgf ,_bdaab ,_bfgc :=_aeac .RGBA ();if _ceec &&(_ebgbf !=_bbgf ||_ebgbf !=_bdaab ||_bbgf !=_bdaab ){_ceec =false ;};if !_begcb {switch _aeac .(type ){case _bc .NRGBA :_begcb =_bfgc > 0; -};};_gacgb [_e .Sprintf ("\u0025\u0064\u002c\u0025\u0064\u002c\u0025\u0064",_ebgbf ,_bbgf ,_bdaab )]=true ;if len (_gacgb )> 2&&_begcb {return _eefda (),nil ;};};};if _begcb ||len (_gdaee ._becb )> 0{return _aff .NewFlateEncoder (),nil ;};if len (_gacgb )<=2{_daaed :=_gdaee .ConvertToBinary (); -if _daaed !=nil {return nil ,_daaed ;};return _aff .NewJBIG2Encoder (),nil ;};if _ceec {return _efbfb (),nil ;};if _gdaee .ColorComponents ==1{if _gdaee .BitsPerComponent ==1{return _aff .NewJBIG2Encoder (),nil ;}else if _gdaee .BitsPerComponent ==8{_dccd :=_aff .NewDCTEncoder (); -_dccd .ColorComponents =1;return _dccd ,nil ;};}else if _gdaee .ColorComponents ==3{if _gdaee .BitsPerComponent ==8{return _efbfb (),nil ;}else if _gdaee .BitsPerComponent ==16{return _eefda (),nil ;};}else if _gdaee .ColorComponents ==4{_aacg :=_eefda (); -_aacg .ColorComponents =4;return _aacg ,nil ;};return _eefda (),nil ;}; +// SetDecode sets the decode image float slice. +func (_caaeca *Image )SetDecode (decode []float64 ){_caaeca ._gfbb =decode }; -// ToPdfObject implements model.PdfModel interface. -func (_gfbf *PdfOutputIntent )ToPdfObject ()_aff .PdfObject {if _gfbf ._gebea ==nil {_gfbf ._gebea =_aff .MakeDict ();};_agea :=_gfbf ._gebea ;if _gfbf .Type !=""{_agea .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName (_gfbf .Type ));};_agea .Set ("\u0053",_aff .MakeName (_gfbf .S .String ())); -if _gfbf .OutputCondition !=""{_agea .Set ("\u004fu\u0074p\u0075\u0074\u0043\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e",_aff .MakeString (_gfbf .OutputCondition ));};_agea .Set ("\u004fu\u0074\u0070\u0075\u0074C\u006f\u006e\u0064\u0069\u0074i\u006fn\u0049d\u0065\u006e\u0074\u0069\u0066\u0069\u0065r",_aff .MakeString (_gfbf .OutputConditionIdentifier )); -_agea .Set ("\u0052\u0065\u0067i\u0073\u0074\u0072\u0079\u004e\u0061\u006d\u0065",_aff .MakeString (_gfbf .RegistryName ));if _gfbf .Info !=""{_agea .Set ("\u0049\u006e\u0066\u006f",_aff .MakeString (_gfbf .Info ));};if len (_gfbf .DestOutputProfile )!=0{_gccf ,_aaaag :=_aff .MakeStream (_gfbf .DestOutputProfile ,_aff .NewFlateEncoder ()); -if _aaaag !=nil {_adg .Log .Error ("\u004d\u0061\u006b\u0065\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0044\u0065s\u0074\u004f\u0075\u0074\u0070\u0075t\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_aaaag ); -};_gccf .PdfObjectDictionary .Set ("\u004e",_aff .MakeInteger (int64 (_gfbf .ColorComponents )));_ggada :=make ([]float64 ,_gfbf .ColorComponents *2);for _eagge :=0;_eagge < _gfbf .ColorComponents *2;_eagge ++{_fgagc :=0.0;if _eagge %2!=0{_fgagc =1.0;}; -_ggada [_eagge ]=_fgagc ;};_gccf .PdfObjectDictionary .Set ("\u0052\u0061\u006eg\u0065",_aff .MakeArrayFromFloats (_ggada ));_agea .Set ("\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072o\u0066\u0069\u006c\u0065",_gccf );};return _agea ; +// AddExtension adds the specified extension to the Extensions dictionary. +// See section 7.1.2 "Extensions Dictionary" (pp. 108-109 PDF32000_2008). +func (_eccdb *PdfWriter )AddExtension (extName ,baseVersion string ,extLevel int ){_gaecd ,_bgbdg :=_dg .GetDict (_eccdb ._ecdf .Get ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0073"));if !_bgbdg {_gaecd =_dg .MakeDict ();_eccdb ._ecdf .Set ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0073",_gaecd ); +};_badda ,_bgbdg :=_dg .GetDict (_gaecd .Get (_dg .PdfObjectName (extName )));if !_bgbdg {_badda =_dg .MakeDict ();_gaecd .Set (_dg .PdfObjectName (extName ),_badda );};if _gedfe ,_ :=_dg .GetNameVal (_badda .Get ("B\u0061\u0073\u0065\u0056\u0065\u0072\u0073\u0069\u006f\u006e")); +_gedfe !=baseVersion {_badda .Set ("B\u0061\u0073\u0065\u0056\u0065\u0072\u0073\u0069\u006f\u006e",_dg .MakeName (baseVersion ));};if _bbfdd ,_ :=_dg .GetIntVal (_badda .Get ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006eL\u0065\u0076\u0065\u006c")); +_bbfdd !=extLevel {_badda .Set ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006eL\u0065\u0076\u0065\u006c",_dg .MakeInteger (int64 (extLevel )));};};func _bccf (_beb _dg .PdfObject )(*PdfFilespec ,error ){if _beb ==nil {return nil ,nil ;};return NewPdfFilespecFromObj (_beb ); }; -// SetPdfModifiedDate sets the ModDate attribute of the output PDF. -func SetPdfModifiedDate (modifiedDate _f .Time ){_aebda .Lock ();defer _aebda .Unlock ();_ffbbd =modifiedDate ;}; - -// FlattenFields flattens the form fields and annotations for the PDF loaded in `pdf` and makes -// non-editable. -// Looks up all widget annotations corresponding to form fields and flattens them by drawing the content -// through the content stream rather than annotations. -// References to flattened annotations will be removed from Page Annots array. For fields the AcroForm entry -// will be emptied. -// When `allannots` is true, all annotations will be flattened. Keep false if want to keep non-form related -// annotations intact. -// When `appgen` is not nil, it will be used to generate appearance streams for the field annotations. -func (_fgebg *PdfReader )FlattenFields (allannots bool ,appgen FieldAppearanceGenerator )error {return _fgebg .flattenFieldsWithOpts (allannots ,appgen ,nil );}; - -// SetReason sets the `Reason` field of the signature. -func (_gefcd *PdfSignature )SetReason (reason string ){_gefcd .Reason =_aff .MakeString (reason )}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// components. The slice should contain three PdfObjectFloat elements representing +// the A, B and C components of the color. +func (_eaegc *PdfColorspaceCalRGB )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=3{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_beba ,_ggddc :=_dg .GetNumbersAsFloat (objects ); +if _ggddc !=nil {return nil ,_ggddc ;};return _eaegc .ColorFromFloats (_beba );}; -// ToPdfObject returns the PDF representation of the function. -func (_cfaga *PdfFunctionType0 )ToPdfObject ()_aff .PdfObject {if _cfaga ._fcbe ==nil {_cfaga ._fcbe =&_aff .PdfObjectStream {};};_fceg :=_aff .MakeDict ();_fceg .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_aff .MakeInteger (0)); -_afdf :=&_aff .PdfObjectArray {};for _ ,_daedd :=range _cfaga .Domain {_afdf .Append (_aff .MakeFloat (_daedd ));};_fceg .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_afdf );_acfga :=&_aff .PdfObjectArray {};for _ ,_bdcba :=range _cfaga .Range {_acfga .Append (_aff .MakeFloat (_bdcba )); -};_fceg .Set ("\u0052\u0061\u006eg\u0065",_acfga );_dbccf :=&_aff .PdfObjectArray {};for _ ,_accae :=range _cfaga .Size {_dbccf .Append (_aff .MakeInteger (int64 (_accae )));};_fceg .Set ("\u0053\u0069\u007a\u0065",_dbccf );_fceg .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0053\u0061\u006d\u0070\u006c\u0065",_aff .MakeInteger (int64 (_cfaga .BitsPerSample ))); -if _cfaga .Order !=1{_fceg .Set ("\u004f\u0072\u0064e\u0072",_aff .MakeInteger (int64 (_cfaga .Order )));};_fceg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_cfaga ._aggcg ))));_cfaga ._fcbe .Stream =_cfaga ._aggcg ;_cfaga ._fcbe .PdfObjectDictionary =_fceg ; -return _cfaga ._fcbe ;}; +// ColorToRGB converts a CalGray color to an RGB color. +func (_acea *PdfColorspaceCalGray )ColorToRGB (color PdfColor )(PdfColor ,error ){_adcc ,_eacd :=color .(*PdfColorCalGray );if !_eacd {_ag .Log .Debug ("\u0049n\u0070\u0075\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006eo\u0074\u0020\u0063\u0061\u006c\u0020\u0067\u0072\u0061\u0079"); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};ANorm :=_adcc .Val ();X :=_acea .WhitePoint [0]*_cg .Pow (ANorm ,_acea .Gamma );Y :=_acea .WhitePoint [1]*_cg .Pow (ANorm ,_acea .Gamma ); +Z :=_acea .WhitePoint [2]*_cg .Pow (ANorm ,_acea .Gamma );_gdda :=3.240479*X +-1.537150*Y +-0.498535*Z ;_cafg :=-0.969256*X +1.875992*Y +0.041556*Z ;_fgfed :=0.055648*X +-0.204043*Y +1.057311*Z ;_gdda =_cg .Min (_cg .Max (_gdda ,0),1.0);_cafg =_cg .Min (_cg .Max (_cafg ,0),1.0); +_fgfed =_cg .Min (_cg .Max (_fgfed ,0),1.0);return NewPdfColorDeviceRGB (_gdda ,_cafg ,_fgfed ),nil ;}; -// VariableText contains the common attributes of a variable text. -// The VariableText is typically not used directly, but is can encapsulate by PdfField -// See section 12.7.3.3 "Variable Text" and Table 222 (pp. 434-436 PDF32000_2008). -type VariableText struct{DA *_aff .PdfObjectString ;Q *_aff .PdfObjectInteger ;DS *_aff .PdfObjectString ;RV _aff .PdfObject ;}; +// PdfColorPattern represents a pattern color. +type PdfColorPattern struct{Color PdfColor ;PatternName _dg .PdfObjectName ;};func (_cce *PdfReader )loadAction (_beadc _dg .PdfObject )(*PdfAction ,error ){if _aagg ,_aefd :=_dg .GetIndirect (_beadc );_aefd {_gdgc ,_beadg :=_cce .newPdfActionFromIndirectObject (_aagg ); +if _beadg !=nil {return nil ,_beadg ;};return _gdgc ,nil ;}else if !_dg .IsNullObject (_beadc ){return nil ,_bf .New ("\u0061\u0063\u0074\u0069\u006fn\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0070\u006f\u0069\u006e\u0074 \u0074\u006f\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +};return nil ,nil ;};func (_edea *PdfReader )newPdfActionTransFromDict (_cag *_dg .PdfObjectDictionary )(*PdfActionTrans ,error ){return &PdfActionTrans {Trans :_cag .Get ("\u0054\u0072\u0061n\u0073")},nil ;}; -// PdfColorCalGray represents a CalGray colorspace. -type PdfColorCalGray float64 ; +// NewPdfColorspaceDeviceRGB returns a new RGB colorspace object. +func NewPdfColorspaceDeviceRGB ()*PdfColorspaceDeviceRGB {return &PdfColorspaceDeviceRGB {}};var _decga =_c .MustCompile ("\u005b\\\u006e\u005c\u0072\u005d\u002b");func (_agdd *PdfReader )newPdfAnnotationPrinterMarkFromDict (_bcge *_dg .PdfObjectDictionary )(*PdfAnnotationPrinterMark ,error ){_bcfgb :=PdfAnnotationPrinterMark {}; +_bcfgb .MN =_bcge .Get ("\u004d\u004e");return &_bcfgb ,nil ;}; -// Add appends an outline item as a child of the current outline item. -func (_aecdg *OutlineItem )Add (item *OutlineItem ){_aecdg .Entries =append (_aecdg .Entries ,item )};const (_ PdfOutputIntentType =iota ;PdfOutputIntentTypeA1 ;PdfOutputIntentTypeA2 ;PdfOutputIntentTypeA3 ;PdfOutputIntentTypeA4 ;PdfOutputIntentTypeX ; -); +// String returns a string describing the font descriptor. +func (_adddb *PdfFontDescriptor )String ()string {var _cge []string ;if _adddb .FontName !=nil {_cge =append (_cge ,_adddb .FontName .String ());};if _adddb .FontFamily !=nil {_cge =append (_cge ,_adddb .FontFamily .String ());};if _adddb .fontFile !=nil {_cge =append (_cge ,_adddb .fontFile .String ()); +};if _adddb ._gbcg !=nil {_cge =append (_cge ,_adddb ._gbcg .String ());};_cge =append (_cge ,_b .Sprintf ("\u0046\u006f\u006et\u0046\u0069\u006c\u0065\u0033\u003d\u0025\u0074",_adddb .FontFile3 !=nil ));return _b .Sprintf ("\u0046\u004f\u004e\u0054_D\u0045\u0053\u0043\u0052\u0049\u0050\u0054\u004f\u0052\u007b\u0025\u0073\u007d",_ga .Join (_cge ,"\u002c\u0020")); +};func (_dbee *PdfAppender )addNewObject (_dbca _dg .PdfObject ){if _ ,_dbcb :=_dbee ._efa [_dbca ];!_dbcb {_dbee ._dgfd =append (_dbee ._dgfd ,_dbca );_dbee ._efa [_dbca ]=struct{}{};};}; // ToPdfObject implements interface PdfModel. -func (_gae *PdfAnnotationInk )ToPdfObject ()_aff .PdfObject {_gae .PdfAnnotation .ToPdfObject ();_abd :=_gae ._ccfb ;_abee :=_abd .PdfObject .(*_aff .PdfObjectDictionary );_gae .PdfAnnotationMarkup .appendToPdfDictionary (_abee );_abee .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0049\u006e\u006b")); -_abee .SetIfNotNil ("\u0049n\u006b\u004c\u0069\u0073\u0074",_gae .InkList );_abee .SetIfNotNil ("\u0042\u0053",_gae .BS );return _abd ;}; +func (_bgf *PdfActionLaunch )ToPdfObject ()_dg .PdfObject {_bgf .PdfAction .ToPdfObject ();_ecba :=_bgf ._cbd ;_adb :=_ecba .PdfObject .(*_dg .PdfObjectDictionary );_adb .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeLaunch )));if _bgf .F !=nil {_adb .Set ("\u0046",_bgf .F .ToPdfObject ()); +};_adb .SetIfNotNil ("\u0057\u0069\u006e",_bgf .Win );_adb .SetIfNotNil ("\u004d\u0061\u0063",_bgf .Mac );_adb .SetIfNotNil ("\u0055\u006e\u0069\u0078",_bgf .Unix );_adb .SetIfNotNil ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw",_bgf .NewWindow );return _ecba ; +}; + +// FieldAppearanceGenerator generates appearance stream for a given field. +type FieldAppearanceGenerator interface{ContentStreamWrapper ;GenerateAppearanceDict (_aegf *PdfAcroForm ,_bafcea *PdfField ,_faed *PdfAnnotationWidget )(*_dg .PdfObjectDictionary ,error );}; // ToPdfObject implements interface PdfModel. -func (_dfgf *PdfAnnotationHighlight )ToPdfObject ()_aff .PdfObject {_dfgf .PdfAnnotation .ToPdfObject ();_accg :=_dfgf ._ccfb ;_bec :=_accg .PdfObject .(*_aff .PdfObjectDictionary );_dfgf .PdfAnnotationMarkup .appendToPdfDictionary (_bec );_bec .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0048i\u0067\u0068\u006c\u0069\u0067\u0068t")); -_bec .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_dfgf .QuadPoints );return _accg ;}; +func (_cbfbc *PdfAnnotationProjection )ToPdfObject ()_dg .PdfObject {_cbfbc .PdfAnnotation .ToPdfObject ();_gdfdb :=_cbfbc ._cdf ;_dcag :=_gdfdb .PdfObject .(*_dg .PdfObjectDictionary );_cbfbc .PdfAnnotationMarkup .appendToPdfDictionary (_dcag );return _gdfdb ; +};func (_dgaba PdfFont )actualFont ()pdfFont {if _dgaba ._cadf ==nil {_ag .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0061\u0063\u0074\u0075\u0061\u006c\u0046\u006f\u006e\u0074\u002e\u0020\u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c.\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_dgaba ); +};return _dgaba ._cadf ;}; -// Normalize swaps (Llx,Urx) if Urx < Llx, and (Lly,Ury) if Ury < Lly. -func (_fbcbe *PdfRectangle )Normalize (){if _fbcbe .Llx > _fbcbe .Urx {_fbcbe .Llx ,_fbcbe .Urx =_fbcbe .Urx ,_fbcbe .Llx ;};if _fbcbe .Lly > _fbcbe .Ury {_fbcbe .Lly ,_fbcbe .Ury =_fbcbe .Ury ,_fbcbe .Lly ;};}; +// GetNumComponents returns the number of color components (3 for CalRGB). +func (_bafce *PdfColorCalRGB )GetNumComponents ()int {return 3}; -// PdfWriter handles outputing PDF content. -type PdfWriter struct{_adefd *_aff .PdfIndirectObject ;_edgeg *_aff .PdfIndirectObject ;_gbbce map[_aff .PdfObject ]struct{};_babcd []_aff .PdfObject ;_bgadg map[_aff .PdfObject ]struct{};_faggf []*_aff .PdfIndirectObject ;_dccbd *PdfOutlineTreeNode ;_cdccb *_aff .PdfObjectDictionary ; -_gbffe []_aff .PdfObject ;_bacec *_aff .PdfIndirectObject ;_ggee *_ag .Writer ;_cagac int64 ;_acag error ;_fcgf *_aff .PdfCrypt ;_egecb *_aff .PdfObjectDictionary ;_fdedd *_aff .PdfIndirectObject ;_dfdcg *_aff .PdfObjectArray ;_bgeecg _aff .Version ;_deggb *bool ; -_gbfdc map[_aff .PdfObject ][]*_aff .PdfObjectDictionary ;_deacb *PdfAcroForm ;_bgbg Optimizer ;_afgef StandardApplier ;_abebd map[int ]crossReference ;_bfage int64 ;ObjNumOffset int ;_ccbe bool ;_gfaab _aff .XrefTable ;_gecec int64 ;_abced int64 ;_becc map[_aff .PdfObject ]int64 ; -_cgdcb map[_aff .PdfObject ]struct{};_cgdb string ;_bfedd []*PdfOutputIntent ;_bdef bool ;_bacb ,_aceag string ;}; +// SetNameDictionary sets the Names entry in the PDF catalog. +// See section 7.7.4 "Name Dictionary" (p. 80 PDF32000_2008). +func (_gafca *PdfWriter )SetNameDictionary (names _dg .PdfObject )error {if names ==nil {return nil ;};_ag .Log .Trace ("\u0053e\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u004e\u0061\u006d\u0065\u0073\u002e\u002e\u002e"); +_gafca ._ecdf .Set ("\u004e\u0061\u006de\u0073",names );return _gafca .addObjects (names );}; -// NewPdfAnnotationStrikeOut returns a new text strikeout annotation. -func NewPdfAnnotationStrikeOut ()*PdfAnnotationStrikeOut {_cdcf :=NewPdfAnnotation ();_badb :=&PdfAnnotationStrikeOut {};_badb .PdfAnnotation =_cdcf ;_badb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_cdcf .SetContext (_badb );return _badb ;};func (_cbeef *LTV )validateSig (_ddacb *PdfSignature )error {if _ddacb ==nil ||_ddacb .Contents ==nil ||len (_ddacb .Contents .Bytes ())==0{return _e .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065 \u0066\u0069\u0065l\u0064:\u0020\u0025\u0076",_ddacb ); -};return nil ;}; +// PdfBorderStyle represents a border style dictionary (12.5.4 Border Styles p. 394). +type PdfBorderStyle struct{W *float64 ;S *BorderStyle ;D *[]int ;_cbcb _dg .PdfObject ;}; -// GetNumComponents returns the number of color components of the colorspace device. -// Returns 3 for a Lab device. -func (_eadf *PdfColorspaceLab )GetNumComponents ()int {return 3};func _cgfdc ()_f .Time {_aebda .Lock ();defer _aebda .Unlock ();return _ffbbd }; +// A returns the value of the A component of the color. +func (_bfab *PdfColorCalRGB )A ()float64 {return _bfab [0]};func (_daba *PdfReader )newPdfAnnotationSquareFromDict (_gba *_dg .PdfObjectDictionary )(*PdfAnnotationSquare ,error ){_dce :=PdfAnnotationSquare {};_dfca ,_bdcf :=_daba .newPdfAnnotationMarkupFromDict (_gba ); +if _bdcf !=nil {return nil ,_bdcf ;};_dce .PdfAnnotationMarkup =_dfca ;_dce .BS =_gba .Get ("\u0042\u0053");_dce .IC =_gba .Get ("\u0049\u0043");_dce .BE =_gba .Get ("\u0042\u0045");_dce .RD =_gba .Get ("\u0052\u0044");return &_dce ,nil ;}; -// ToGoImage converts the unidoc Image to a golang Image structure. -func (_dfdf *Image )ToGoImage ()(_cg .Image ,error ){_adg .Log .Trace ("\u0043\u006f\u006e\u0076er\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0067\u006f\u0020\u0069\u006d\u0061g\u0065");_fffbf ,_degda :=_gd .NewImage (int (_dfdf .Width ),int (_dfdf .Height ),int (_dfdf .BitsPerComponent ),_dfdf .ColorComponents ,_dfdf .Data ,_dfdf ._becb ,_dfdf ._edgef ); -if _degda !=nil {return nil ,_degda ;};return _fffbf ,nil ;}; +// PdfVersion returns version of the PDF file. +func (_bcgbf *PdfReader )PdfVersion ()_dg .Version {return _bcgbf ._baad .PdfVersion ()};func (_adbd *PdfReader )newPdfActionNamedFromDict (_gagd *_dg .PdfObjectDictionary )(*PdfActionNamed ,error ){return &PdfActionNamed {N :_gagd .Get ("\u004e")},nil ; +}; -// ValidateSignatures validates digital signatures in the document. -func (_faeeg *PdfReader )ValidateSignatures (handlers []SignatureHandler )([]SignatureValidationResult ,error ){if _faeeg .AcroForm ==nil {return nil ,nil ;};if _faeeg .AcroForm .Fields ==nil {return nil ,nil ;};type sigFieldPair struct{_gbccd *PdfSignature ; -_ebfa *PdfField ;_dbgga SignatureHandler ;};var _cecac []*sigFieldPair ;for _ ,_ebadd :=range _faeeg .AcroForm .AllFields (){if _ebadd .V ==nil {continue ;};if _dadg ,_gdeeb :=_aff .GetDict (_ebadd .V );_gdeeb {if _afdacb ,_fabdcf :=_aff .GetNameVal (_dadg .Get ("\u0054\u0079\u0070\u0065")); -_fabdcf &&(_afdacb =="\u0053\u0069\u0067"||_afdacb =="\u0044\u006f\u0063T\u0069\u006d\u0065\u0053\u0074\u0061\u006d\u0070"){_cgfcd ,_dbgae :=_aff .GetIndirect (_ebadd .V );if !_dbgae {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0065\u0072\u0020\u0069s\u0020\u006e\u0069\u006c"); -return nil ,ErrTypeCheck ;};_cdbga ,_fddc :=_faeeg .newPdfSignatureFromIndirect (_cgfcd );if _fddc !=nil {return nil ,_fddc ;};var _fegbb SignatureHandler ;for _ ,_cegfd :=range handlers {if _cegfd .IsApplicable (_cdbga ){_fegbb =_cegfd ;break ;};};_cecac =append (_cecac ,&sigFieldPair {_gbccd :_cdbga ,_ebfa :_ebadd ,_dbgga :_fegbb }); -};};};var _cdcgg []SignatureValidationResult ;for _ ,_cdafg :=range _cecac {_edfbe :=SignatureValidationResult {IsSigned :true ,Fields :[]*PdfField {_cdafg ._ebfa }};if _cdafg ._dbgga ==nil {_edfbe .Errors =append (_edfbe .Errors ,"\u0068a\u006ed\u006c\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0073\u0065\u0074"); -_cdcgg =append (_cdcgg ,_edfbe );continue ;};_cdagf ,_dgbfe :=_cdafg ._dbgga .NewDigest (_cdafg ._gbccd );if _dgbfe !=nil {_edfbe .Errors =append (_edfbe .Errors ,"\u0064\u0069\u0067e\u0073\u0074\u0020\u0065\u0072\u0072\u006f\u0072",_dgbfe .Error ());_cdcgg =append (_cdcgg ,_edfbe ); -continue ;};_fgcad :=_cdafg ._gbccd .ByteRange ;if _fgcad ==nil {_edfbe .Errors =append (_edfbe .Errors ,"\u0042\u0079\u0074\u0065\u0052\u0061\u006e\u0067\u0065\u0020\u006e\u006ft\u0020\u0073\u0065\u0074");_cdcgg =append (_cdcgg ,_edfbe );continue ;};for _efbdb :=0; -_efbdb < _fgcad .Len ();_efbdb =_efbdb +2{_bfed ,_ :=_aff .GetNumberAsInt64 (_fgcad .Get (_efbdb ));_dgfeb ,_ :=_aff .GetIntVal (_fgcad .Get (_efbdb +1));if _ ,_cacfb :=_faeeg ._dged .Seek (_bfed ,_ega .SeekStart );_cacfb !=nil {return nil ,_cacfb ;};_eggce :=make ([]byte ,_dgfeb ); -if _ ,_efdcc :=_faeeg ._dged .Read (_eggce );_efdcc !=nil {return nil ,_efdcc ;};_cdagf .Write (_eggce );};var _agec SignatureValidationResult ;if _deeee ,_fcge :=_cdafg ._dbgga .(SignatureHandlerDocMDP );_fcge {_agec ,_dgbfe =_deeee .ValidateWithOpts (_cdafg ._gbccd ,_cdagf ,SignatureHandlerDocMDPParams {Parser :_faeeg ._gaece }); -}else {_agec ,_dgbfe =_cdafg ._dbgga .Validate (_cdafg ._gbccd ,_cdagf );};if _dgbfe !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052: \u0025v\u0020\u0028\u0025\u0054\u0029 \u002d\u0020\u0073\u006b\u0069\u0070",_dgbfe ,_cdafg ._dbgga );_agec .Errors =append (_agec .Errors ,_dgbfe .Error ()); -};_agec .Name =_cdafg ._gbccd .Name .Decoded ();_agec .Reason =_cdafg ._gbccd .Reason .Decoded ();if _cdafg ._gbccd .M !=nil {_adgcb ,_defge :=NewPdfDate (_cdafg ._gbccd .M .String ());if _defge !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_defge ); -_agec .Errors =append (_agec .Errors ,_defge .Error ());continue ;};_agec .Date =_adgcb ;};_agec .ContactInfo =_cdafg ._gbccd .ContactInfo .Decoded ();_agec .Location =_cdafg ._gbccd .Location .Decoded ();_agec .Fields =_edfbe .Fields ;_cdcgg =append (_cdcgg ,_agec ); -};return _cdcgg ,nil ;}; +// PdfAnnotationCaret represents Caret annotations. +// (Section 12.5.6.11). +type PdfAnnotationCaret struct{*PdfAnnotation ;*PdfAnnotationMarkup ;RD _dg .PdfObject ;Sy _dg .PdfObject ;}; -// NewPdfAnnotationCaret returns a new caret annotation. -func NewPdfAnnotationCaret ()*PdfAnnotationCaret {_ccb :=NewPdfAnnotation ();_fda :=&PdfAnnotationCaret {};_fda .PdfAnnotation =_ccb ;_fda .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_ccb .SetContext (_fda );return _fda ;};func (_cdee *PdfReader )newPdfAnnotationPrinterMarkFromDict (_ead *_aff .PdfObjectDictionary )(*PdfAnnotationPrinterMark ,error ){_adbd :=PdfAnnotationPrinterMark {}; -_adbd .MN =_ead .Get ("\u004d\u004e");return &_adbd ,nil ;}; +// PageProcessCallback callback function used in page loading +// that could be used to modify the page content. +// +// If an error is returned, the `ToWriter` process would fail. +// +// This callback, if defined, will take precedence over `PageCallback` callback. +type PageProcessCallback func (_fgefa int ,_adee *PdfPage )error ; -// SetEncoder sets the encoding for the underlying font. -// TODO(peterwilliams97): Change function signature to SetEncoder(encoder *textencoding.simpleEncoder). -// TODO(gunnsth): Makes sense if SetEncoder is removed from the interface fonts.Font as proposed in PR #260. -func (_ffdcg *pdfFontSimple )SetEncoder (encoder _eee .TextEncoder ){_ffdcg ._fdgc =encoder }; +// Encoder returns the font's text encoder. +func (_faga pdfFontType0 )Encoder ()_bd .TextEncoder {return _faga ._ggec };func (_abad *PdfAcroForm )fill (_geagcb FieldValueProvider ,_dcaca FieldAppearanceGenerator )error {if _abad ==nil {return nil ;};_bdce ,_dgcg :=_geagcb .FieldValues ();if _dgcg !=nil {return _dgcg ; +};for _ ,_fdee :=range _abad .AllFields (){_aeag :=_fdee .PartialName ();_bdegd ,_badea :=_bdce [_aeag ];if !_badea {if _gbaac ,_efbgb :=_fdee .FullName ();_efbgb ==nil {_bdegd ,_badea =_bdce [_gbaac ];};};if !_badea {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020f\u006f\u0072\u006d \u0066\u0069\u0065l\u0064\u0020\u0025\u0073\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u0069n \u0074\u0068\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0072\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_aeag ); +continue ;};if _egfe :=_ebbce (_fdee ,_bdegd );_egfe !=nil {return _egfe ;};if _dcaca ==nil {continue ;};for _ ,_aafg :=range _fdee .Annotations {_gdaf ,_debgf :=_dcaca .GenerateAppearanceDict (_abad ,_fdee ,_aafg );if _debgf !=nil {return _debgf ;};_aafg .AP =_gdaf ; +_aafg .ToPdfObject ();};};return nil ;}; -// ToPdfObject implements interface PdfModel. -func (_eaaaf *Permissions )ToPdfObject ()_aff .PdfObject {return _eaaaf ._cbdgg }; +// ToPdfOutline returns a low level PdfOutline object, based on the current +// instance. +func (_gdfde *Outline )ToPdfOutline ()*PdfOutline {_fecab :=NewPdfOutline ();var _fcege []*PdfOutlineItem ;var _bbbba int64 ;var _fdbba *PdfOutlineItem ;for _ ,_ebfb :=range _gdfde .Entries {_aeec ,_bccgg :=_ebfb .ToPdfOutlineItem ();_aeec .Parent =&_fecab .PdfOutlineTreeNode ; +if _fdbba !=nil {_fdbba .Next =&_aeec .PdfOutlineTreeNode ;_aeec .Prev =&_fdbba .PdfOutlineTreeNode ;};_fcege =append (_fcege ,_aeec );_bbbba +=_bccgg ;_fdbba =_aeec ;};_eddbb :=int64 (len (_fcege ));_bbbba +=_eddbb ;if _eddbb > 0{_fecab .First =&_fcege [0].PdfOutlineTreeNode ; +_fecab .Last =&_fcege [_eddbb -1].PdfOutlineTreeNode ;_fecab .Count =&_bbbba ;};return _fecab ;}; -// String returns a string representation of what flags are set. -func (_ffedg FieldFlag )String ()string {_deeeg :="";if _ffedg ==FieldFlagClear {_deeeg ="\u0043\u006c\u0065a\u0072";return _deeeg ;};if _ffedg &FieldFlagReadOnly > 0{_deeeg +="\u007cR\u0065\u0061\u0064\u004f\u006e\u006cy";};if _ffedg &FieldFlagRequired > 0{_deeeg +="\u007cR\u0065\u0071\u0075\u0069\u0072\u0065d"; -};if _ffedg &FieldFlagNoExport > 0{_deeeg +="\u007cN\u006f\u0045\u0078\u0070\u006f\u0072t";};if _ffedg &FieldFlagNoToggleToOff > 0{_deeeg +="\u007c\u004e\u006f\u0054\u006f\u0067\u0067\u006c\u0065T\u006f\u004f\u0066\u0066";};if _ffedg &FieldFlagRadio > 0{_deeeg +="\u007c\u0052\u0061\u0064\u0069\u006f"; -};if _ffedg &FieldFlagPushbutton > 0{_deeeg +="|\u0050\u0075\u0073\u0068\u0062\u0075\u0074\u0074\u006f\u006e";};if _ffedg &FieldFlagRadiosInUnision > 0{_deeeg +="\u007c\u0052a\u0064\u0069\u006fs\u0049\u006e\u0055\u006e\u0069\u0073\u0069\u006f\u006e";}; -if _ffedg &FieldFlagMultiline > 0{_deeeg +="\u007c\u004d\u0075\u006c\u0074\u0069\u006c\u0069\u006e\u0065";};if _ffedg &FieldFlagPassword > 0{_deeeg +="\u007cP\u0061\u0073\u0073\u0077\u006f\u0072d";};if _ffedg &FieldFlagFileSelect > 0{_deeeg +="|\u0046\u0069\u006c\u0065\u0053\u0065\u006c\u0065\u0063\u0074"; -};if _ffedg &FieldFlagDoNotScroll > 0{_deeeg +="\u007c\u0044\u006fN\u006f\u0074\u0053\u0063\u0072\u006f\u006c\u006c";};if _ffedg &FieldFlagComb > 0{_deeeg +="\u007c\u0043\u006fm\u0062";};if _ffedg &FieldFlagRichText > 0{_deeeg +="\u007cR\u0069\u0063\u0068\u0054\u0065\u0078t"; -};if _ffedg &FieldFlagDoNotSpellCheck > 0{_deeeg +="\u007c\u0044o\u004e\u006f\u0074S\u0070\u0065\u006c\u006c\u0043\u0068\u0065\u0063\u006b";};if _ffedg &FieldFlagCombo > 0{_deeeg +="\u007c\u0043\u006f\u006d\u0062\u006f";};if _ffedg &FieldFlagEdit > 0{_deeeg +="\u007c\u0045\u0064i\u0074"; -};if _ffedg &FieldFlagSort > 0{_deeeg +="\u007c\u0053\u006fr\u0074";};if _ffedg &FieldFlagMultiSelect > 0{_deeeg +="\u007c\u004d\u0075l\u0074\u0069\u0053\u0065\u006c\u0065\u0063\u0074";};if _ffedg &FieldFlagCommitOnSelChange > 0{_deeeg +="\u007cC\u006fm\u006d\u0069\u0074\u004f\u006eS\u0065\u006cC\u0068\u0061\u006e\u0067\u0065"; -};return _ba .Trim (_deeeg ,"\u007c");}; +// ToGray returns a PdfColorDeviceGray color based on the current RGB color. +func (_gcdb *PdfColorDeviceRGB )ToGray ()*PdfColorDeviceGray {_efbea :=0.3*_gcdb .R ()+0.59*_gcdb .G ()+0.11*_gcdb .B ();_efbea =_cg .Min (_cg .Max (_efbea ,0.0),1.0);return NewPdfColorDeviceGray (_efbea );};func _ccgad (_caaec _dg .PdfObject )(*PdfFunctionType3 ,error ){_ffeg :=&PdfFunctionType3 {}; +var _baeeg *_dg .PdfObjectDictionary ;if _cfgfc ,_facf :=_caaec .(*_dg .PdfIndirectObject );_facf {_gggf ,_ababf :=_cfgfc .PdfObject .(*_dg .PdfObjectDictionary );if !_ababf {return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +};_ffeg ._defdg =_cfgfc ;_baeeg =_gggf ;}else if _bafd ,_gfadd :=_caaec .(*_dg .PdfObjectDictionary );_gfadd {_baeeg =_bafd ;}else {return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_eedee ,_bdaff :=_dg .TraceToDirectObject (_baeeg .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_dg .PdfObjectArray ); +if !_bdaff {_ag .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};if _eedee .Len ()!=2{_ag .Log .Error ("\u0044\u006f\u006d\u0061\u0069\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");return nil ,_bf .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065");};_gabcf ,_fddea :=_eedee .ToFloat64Array (); +if _fddea !=nil {return nil ,_fddea ;};_ffeg .Domain =_gabcf ;_eedee ,_bdaff =_dg .TraceToDirectObject (_baeeg .Get ("\u0052\u0061\u006eg\u0065")).(*_dg .PdfObjectArray );if _bdaff {if _eedee .Len ()< 0||_eedee .Len ()%2!=0{return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); +};_edgdd ,_gebaec :=_eedee .ToFloat64Array ();if _gebaec !=nil {return nil ,_gebaec ;};_ffeg .Range =_edgdd ;};_eedee ,_bdaff =_dg .TraceToDirectObject (_baeeg .Get ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006es")).(*_dg .PdfObjectArray );if !_bdaff {_ag .Log .Error ("\u0046\u0075\u006ect\u0069\u006f\u006e\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064"); +return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_ffeg .Functions =[]PdfFunction {}; +for _ ,_gaacb :=range _eedee .Elements (){_fgaff ,_ebgbb :=_agec (_gaacb );if _ebgbb !=nil {return nil ,_ebgbb ;};_ffeg .Functions =append (_ffeg .Functions ,_fgaff );};_eedee ,_bdaff =_dg .TraceToDirectObject (_baeeg .Get ("\u0042\u006f\u0075\u006e\u0064\u0073")).(*_dg .PdfObjectArray ); +if !_bdaff {_ag .Log .Error ("B\u006fu\u006e\u0064\u0073\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};_edbb ,_fddea :=_eedee .ToFloat64Array ();if _fddea !=nil {return nil ,_fddea ;};_ffeg .Bounds =_edbb ;if len (_ffeg .Bounds )!=len (_ffeg .Functions )-1{_ag .Log .Error ("B\u006f\u0075\u006e\u0064\u0073\u0020\u0028\u0025\u0064)\u0020\u0061\u006e\u0064\u0020\u006e\u0075m \u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0073\u0020\u0028\u0025\u0064\u0029 n\u006f\u0074 \u006d\u0061\u0074\u0063\u0068\u0069\u006e\u0067",len (_ffeg .Bounds ),len (_ffeg .Functions )); +return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_eedee ,_bdaff =_dg .TraceToDirectObject (_baeeg .Get ("\u0045\u006e\u0063\u006f\u0064\u0065")).(*_dg .PdfObjectArray );if !_bdaff {_ag .Log .Error ("E\u006ec\u006f\u0064\u0065\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064"); +return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_bbafg ,_fddea :=_eedee .ToFloat64Array (); +if _fddea !=nil {return nil ,_fddea ;};_ffeg .Encode =_bbafg ;if len (_ffeg .Encode )!=2*len (_ffeg .Functions ){_ag .Log .Error ("\u004c\u0065\u006e\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0020\u0028\u0025\u0064\u0029 \u0061\u006e\u0064\u0020\u006e\u0075\u006d\u0020\u0066\u0075\u006e\u0063\u0074i\u006f\u006e\u0073\u0020\u0028\u0025\u0064\u0029\u0020\u006e\u006f\u0074 m\u0061\u0074\u0063\u0068\u0069\u006e\u0067\u0020\u0075\u0070",len (_ffeg .Encode ),len (_ffeg .Functions )); +return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};return _ffeg ,nil ;}; -// PdfReader represents a PDF file reader. It is a frontend to the lower level parsing mechanism and provides -// a higher level access to work with PDF structure and information, such as the page structure etc. -type PdfReader struct{_gaece *_aff .PdfParser ;_geae _aff .PdfObject ;_efcfb *_aff .PdfIndirectObject ;_gacfc *_aff .PdfObjectDictionary ;_bfgfec []*_aff .PdfIndirectObject ;PageList []*PdfPage ;_fddff int ;_dcadd *_aff .PdfObjectDictionary ;_ecbcb *PdfOutlineTreeNode ; -AcroForm *PdfAcroForm ;DSS *DSS ;Rotate *int64 ;_cdea *Permissions ;_gfga map[*PdfReader ]*PdfReader ;_ccbga []*PdfReader ;_cfadc *modelManager ;_gfgg bool ;_ddcba map[_aff .PdfObject ]struct{};_dged _ega .ReadSeeker ;_fafag string ;_bfadc bool ;_edbfa *ReaderOpts ; -_acgad bool ;}; +// ImageToRGB converts an image with samples in Separation CS to an image with samples specified in +// DeviceRGB CS. +func (_aedeg *PdfColorspaceSpecialSeparation )ImageToRGB (img Image )(Image ,error ){_fbfa :=_fcd .NewReader (img .getBase ());_ggce :=_fc .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),_aedeg .AlternateSpace .GetNumComponents (),nil ,img ._dgeb ,nil ); +_dffcc :=_fcd .NewWriter (_ggce );_ddcc :=_cg .Pow (2,float64 (img .BitsPerComponent ))-1;_ag .Log .Trace ("\u0053\u0065\u0070a\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u002d\u003e\u0020\u0054\u006f\u0052\u0047\u0042\u0020\u0063o\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); +_ag .Log .Trace ("\u0054i\u006et\u0054\u0072\u0061\u006e\u0073f\u006f\u0072m\u003a\u0020\u0025\u002b\u0076",_aedeg .TintTransform );_bbfe :=_aedeg .AlternateSpace .DecodeArray ();var (_dded uint32 ;_bgadc error ;);for {_dded ,_bgadc =_fbfa .ReadSample (); +if _bgadc ==_cf .EOF {break ;};if _bgadc !=nil {return img ,_bgadc ;};_bafe :=float64 (_dded )/_ddcc ;_ffcb ,_fage :=_aedeg .TintTransform .Evaluate ([]float64 {_bafe });if _fage !=nil {return img ,_fage ;};for _bgdf ,_bdcd :=range _ffcb {_cfgc :=_fc .LinearInterpolate (_bdcd ,_bbfe [_bgdf *2],_bbfe [_bgdf *2+1],0,1); +if _fage =_dffcc .WriteSample (uint32 (_cfgc *_ddcc ));_fage !=nil {return img ,_fage ;};};};return _aedeg .AlternateSpace .ImageToRGB (_edcf (&_ggce ));}; -// NewPdfColorCalRGB returns a new CalRBG color. -func NewPdfColorCalRGB (a ,b ,c float64 )*PdfColorCalRGB {_deff :=PdfColorCalRGB {a ,b ,c };return &_deff ;}; +// ToInteger convert to an integer format. +func (_dcae *PdfColorCalRGB )ToInteger (bits int )[3]uint32 {_cdgbb :=_cg .Pow (2,float64 (bits ))-1;return [3]uint32 {uint32 (_cdgbb *_dcae .A ()),uint32 (_cdgbb *_dcae .B ()),uint32 (_cdgbb *_dcae .C ())};};func _cefdc (_eeac *_dg .PdfObjectDictionary ,_bebae *fontCommon )(*pdfFontType0 ,error ){_addfe ,_dfgbf :=_dg .GetArray (_eeac .Get ("\u0044e\u0073c\u0065\u006e\u0064\u0061\u006e\u0074\u0046\u006f\u006e\u0074\u0073")); +if !_dfgbf {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049n\u0076\u0061\u006cid\u0020\u0044\u0065\u0073\u0063\u0065n\u0064\u0061\u006e\u0074\u0046\u006f\u006e\u0074\u0073\u0020\u002d\u0020\u006e\u006f\u0074 \u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079 \u0025\u0073",_bebae ); +return nil ,_dg .ErrRangeError ;};if _addfe .Len ()!=1{_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0041\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0031\u0020(%\u0064\u0029",_addfe .Len ());return nil ,_dg .ErrRangeError ; +};_eceff ,_acda :=_gegbd (_addfe .Get (0),false );if _acda !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046a\u0069\u006c\u0065d \u006c\u006f\u0061\u0064\u0069\u006eg\u0020\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0061\u006e\u0074\u0020\u0066\u006f\u006et\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076 \u0025\u0073",_acda ,_bebae ); +return nil ,_acda ;};_gdcb :=_cbbgd (_bebae );_gdcb .DescendantFont =_eceff ;_agfe ,_dfgbf :=_dg .GetNameVal (_eeac .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));if _dfgbf {if _agfe =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048"||_agfe =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056"{_gdcb ._ggec =_bd .NewIdentityTextEncoder (_agfe ); +}else if _ff .IsPredefinedCMap (_agfe ){_gdcb ._bfae ,_acda =_ff .LoadPredefinedCMap (_agfe );if _acda !=nil {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020l\u006f\u0061\u0064\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0043\u004d\u0061\u0070\u0020\u0025\u0073\u003a\u0020\u0025\u0076",_agfe ,_acda ); +};}else {_ag .Log .Debug ("\u0055\u006e\u0068\u0061\u006e\u0064\u006c\u0065\u0064\u0020\u0063\u006da\u0070\u0020\u0025\u0071",_agfe );};};if _efaac :=_eceff .baseFields ()._ecfb ;_efaac !=nil {if _fdbbf :=_efaac .Name ();_fdbbf =="\u0041d\u006fb\u0065\u002d\u0043\u004e\u0053\u0031\u002d\u0055\u0043\u0053\u0032"||_fdbbf =="\u0041\u0064\u006f\u0062\u0065\u002d\u0047\u0042\u0031-\u0055\u0043\u0053\u0032"||_fdbbf =="\u0041\u0064\u006f\u0062\u0065\u002d\u004a\u0061\u0070\u0061\u006e\u0031-\u0055\u0043\u0053\u0032"||_fdbbf =="\u0041\u0064\u006f\u0062\u0065\u002d\u004b\u006f\u0072\u0065\u0061\u0031-\u0055\u0043\u0053\u0032"{_gdcb ._ggec =_bd .NewCMapEncoder (_agfe ,_gdcb ._bfae ,_efaac ); +};};return _gdcb ,nil ;}; -// SetContentStream sets the pattern cell's content stream. -func (_dbdd *PdfTilingPattern )SetContentStream (content []byte ,encoder _aff .StreamEncoder )error {_aaedd ,_gdge :=_dbdd ._cfegc .(*_aff .PdfObjectStream );if !_gdge {_adg .Log .Debug ("\u0054\u0069l\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_dbdd ._cfegc ); -return _aff .ErrTypeError ;};if encoder ==nil {encoder =_aff .NewRawEncoder ();};_daagg :=_aaedd .PdfObjectDictionary ;_abgea :=encoder .MakeStreamDict ();_daagg .Merge (_abgea );_cbef ,_agcg :=encoder .EncodeBytes (content );if _agcg !=nil {return _agcg ; -};_daagg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_cbef ))));_aaedd .Stream =_cbef ;return nil ;}; +// SetLocation sets the `Location` field of the signature. +func (_daefd *PdfSignature )SetLocation (location string ){_daefd .Location =_dg .MakeString (location )}; -// NewPdfFontFromPdfObject loads a PdfFont from the dictionary `fontObj`. If there is a problem an -// error is returned. -func NewPdfFontFromPdfObject (fontObj _aff .PdfObject )(*PdfFont ,error ){return _bfdbcc (fontObj ,true )};func (_ccee *PdfColorspaceSpecialIndexed )String ()string {return "\u0049n\u0064\u0065\u0078\u0065\u0064";};func (_dgbd *PdfReader )newPdfAnnotation3DFromDict (_fefg *_aff .PdfObjectDictionary )(*PdfAnnotation3D ,error ){_geeb :=PdfAnnotation3D {}; -_geeb .T3DD =_fefg .Get ("\u0033\u0044\u0044");_geeb .T3DV =_fefg .Get ("\u0033\u0044\u0056");_geeb .T3DA =_fefg .Get ("\u0033\u0044\u0041");_geeb .T3DI =_fefg .Get ("\u0033\u0044\u0049");_geeb .T3DB =_fefg .Get ("\u0033\u0044\u0042");return &_geeb ,nil ; -};func _gcdde (_bfgfe *_aff .PdfObjectDictionary ,_adge *fontCommon ,_fffaa _eee .TextEncoder )(*pdfFontSimple ,error ){_bbeg :=_gcbd (_adge );_bbeg ._ggebf =_fffaa ;if _fffaa ==nil {_fcbgf :=_bfgfe .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r"); -if _fcbgf ==nil {_fcbgf =_aff .MakeInteger (0);};_bbeg .FirstChar =_fcbgf ;_ebadb ,_bbga :=_aff .GetIntVal (_fcbgf );if !_bbga {_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0046i\u0072s\u0074C\u0068\u0061\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029",_fcbgf ); -return nil ,_aff .ErrTypeError ;};_gdfaa :=_eee .CharCode (_ebadb );_fcbgf =_bfgfe .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072");if _fcbgf ==nil {_fcbgf =_aff .MakeInteger (255);};_bbeg .LastChar =_fcbgf ;_ebadb ,_bbga =_aff .GetIntVal (_fcbgf ); -if !_bbga {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004c\u0061\u0073\u0074\u0043h\u0061\u0072\u0020\u0074\u0079\u0070\u0065 \u0028\u0025\u0054\u0029",_fcbgf );return nil ,_aff .ErrTypeError ; -};_agaff :=_eee .CharCode (_ebadb );_bbeg ._ecgd =make (map[_eee .CharCode ]float64 );_fcbgf =_bfgfe .Get ("\u0057\u0069\u0064\u0074\u0068\u0073");if _fcbgf !=nil {_bbeg .Widths =_fcbgf ;_fcdcfd ,_agegg :=_aff .GetArray (_fcbgf );if !_agegg {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020W\u0069\u0064t\u0068\u0073\u0020\u0061\u0074\u0074\u0072\u0069b\u0075\u0074\u0065\u0020\u0021\u003d\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025\u0054\u0029",_fcbgf ); -return nil ,_aff .ErrTypeError ;};_eedfe ,_agfcg :=_fcdcfd .ToFloat64Array ();if _agfcg !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0077\u0069d\u0074\u0068\u0073\u0020\u0074\u006f\u0020a\u0072\u0072\u0061\u0079"); -return nil ,_agfcg ;};if len (_eedfe )!=int (_agaff -_gdfaa +1){_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0077\u0069\u0064\u0074\u0068s\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0025\u0064 \u0028\u0025\u0064\u0029",_agaff -_gdfaa +1,len (_eedfe )); -return nil ,_aff .ErrRangeError ;};for _fbbgg ,_dffcd :=range _eedfe {_bbeg ._ecgd [_gdfaa +_eee .CharCode (_fbbgg )]=_dffcd ;};};};_bbeg .Encoding =_aff .TraceToDirectObject (_bfgfe .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));return _bbeg ,nil ; -};func (_aefda *PdfWriter )makeOffSetReference (_fcfde int64 ){_agbdf :=_e .Sprintf ("\u0073\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u000a\u0025\u0064\u000a",_fcfde );_aefda .writeString (_agbdf );_aefda .writeString ("\u0025\u0025\u0045\u004f\u0046\u000a"); +// ToPdfObject implements model.PdfModel interface. +func (_ebcbd *PdfOutputIntent )ToPdfObject ()_dg .PdfObject {if _ebcbd ._cfaef ==nil {_ebcbd ._cfaef =_dg .MakeDict ();};_ccfbe :=_ebcbd ._cfaef ;if _ebcbd .Type !=""{_ccfbe .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName (_ebcbd .Type ));};_ccfbe .Set ("\u0053",_dg .MakeName (_ebcbd .S .String ())); +if _ebcbd .OutputCondition !=""{_ccfbe .Set ("\u004fu\u0074p\u0075\u0074\u0043\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e",_dg .MakeString (_ebcbd .OutputCondition ));};_ccfbe .Set ("\u004fu\u0074\u0070\u0075\u0074C\u006f\u006e\u0064\u0069\u0074i\u006fn\u0049d\u0065\u006e\u0074\u0069\u0066\u0069\u0065r",_dg .MakeString (_ebcbd .OutputConditionIdentifier )); +_ccfbe .Set ("\u0052\u0065\u0067i\u0073\u0074\u0072\u0079\u004e\u0061\u006d\u0065",_dg .MakeString (_ebcbd .RegistryName ));if _ebcbd .Info !=""{_ccfbe .Set ("\u0049\u006e\u0066\u006f",_dg .MakeString (_ebcbd .Info ));};if len (_ebcbd .DestOutputProfile )!=0{_ggga ,_fafbe :=_dg .MakeStream (_ebcbd .DestOutputProfile ,_dg .NewFlateEncoder ()); +if _fafbe !=nil {_ag .Log .Error ("\u004d\u0061\u006b\u0065\u0053\u0074\u0072\u0065\u0061\u006d\u0020\u0044\u0065s\u0074\u004f\u0075\u0074\u0070\u0075t\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_fafbe ); +};_ggga .PdfObjectDictionary .Set ("\u004e",_dg .MakeInteger (int64 (_ebcbd .ColorComponents )));_cgec :=make ([]float64 ,_ebcbd .ColorComponents *2);for _fdadf :=0;_fdadf < _ebcbd .ColorComponents *2;_fdadf ++{_edage :=0.0;if _fdadf %2!=0{_edage =1.0; +};_cgec [_fdadf ]=_edage ;};_ggga .PdfObjectDictionary .Set ("\u0052\u0061\u006eg\u0065",_dg .MakeArrayFromFloats (_cgec ));_ccfbe .Set ("\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072o\u0066\u0069\u006c\u0065",_ggga );};return _ccfbe ; +};func (_gbb *PdfReader )newPdfActionSoundFromDict (_bae *_dg .PdfObjectDictionary )(*PdfActionSound ,error ){return &PdfActionSound {Sound :_bae .Get ("\u0053\u006f\u0075n\u0064"),Volume :_bae .Get ("\u0056\u006f\u006c\u0075\u006d\u0065"),Synchronous :_bae .Get ("S\u0079\u006e\u0063\u0068\u0072\u006f\u006e\u006f\u0075\u0073"),Repeat :_bae .Get ("\u0052\u0065\u0070\u0065\u0061\u0074"),Mix :_bae .Get ("\u004d\u0069\u0078")},nil ; }; -// PdfColorspaceDeviceNAttributes contains additional information about the components of colour space that -// conforming readers may use. Conforming readers need not use the alternateSpace and tintTransform parameters, -// and may instead use a custom blending algorithms, along with other information provided in the attributes -// dictionary if present. -type PdfColorspaceDeviceNAttributes struct{Subtype *_aff .PdfObjectName ;Colorants _aff .PdfObject ;Process _aff .PdfObject ;MixingHints _aff .PdfObject ;_ecgec *_aff .PdfIndirectObject ;}; +// WriteToFile writes the Appender output to file specified by path. +func (_gaef *PdfAppender )WriteToFile (outputPath string )error {_ffge ,_fccec :=_eb .Create (outputPath );if _fccec !=nil {return _fccec ;};defer _ffge .Close ();return _gaef .Write (_ffge );}; -// HasXObjectByName checks if has XObject resource by name. -func (_agbef *PdfPage )HasXObjectByName (name _aff .PdfObjectName )bool {_fdefg ,_abecf :=_agbef .Resources .XObject .(*_aff .PdfObjectDictionary );if !_abecf {return false ;};if _dbcgd :=_fdefg .Get (name );_dbcgd !=nil {return true ;};return false ;}; +// ToPdfObject converts colorspace to a PDF object. [/Indexed base hival lookup] +func (_gbgd *PdfColorspaceSpecialIndexed )ToPdfObject ()_dg .PdfObject {_bdacd :=_dg .MakeArray (_dg .MakeName ("\u0049n\u0064\u0065\u0078\u0065\u0064"));_bdacd .Append (_gbgd .Base .ToPdfObject ());_bdacd .Append (_dg .MakeInteger (int64 (_gbgd .HiVal ))); +_bdacd .Append (_gbgd .Lookup );if _gbgd ._fffd !=nil {_gbgd ._fffd .PdfObject =_bdacd ;return _gbgd ._fffd ;};return _bdacd ;}; +// PdfAnnotationSound represents Sound annotations. +// (Section 12.5.6.16). +type PdfAnnotationSound struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Sound _dg .PdfObject ;Name _dg .PdfObject ;}; -// SetShadingByName sets a shading resource specified by keyName. -func (_egabb *PdfPageResources )SetShadingByName (keyName _aff .PdfObjectName ,shadingObj _aff .PdfObject )error {if _egabb .Shading ==nil {_egabb .Shading =_aff .MakeDict ();};_gdgbc ,_aeacb :=_aff .GetDict (_egabb .Shading );if !_aeacb {return _aff .ErrTypeError ; -};_gdgbc .Set (keyName ,shadingObj );return nil ;}; +// ToPdfObject implements interface PdfModel. +func (_aad *PdfActionGoToR )ToPdfObject ()_dg .PdfObject {_aad .PdfAction .ToPdfObject ();_gfb :=_aad ._cbd ;_ecg :=_gfb .PdfObject .(*_dg .PdfObjectDictionary );_ecg .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeGoToR )));if _aad .F !=nil {_ecg .Set ("\u0046",_aad .F .ToPdfObject ()); +};_ecg .SetIfNotNil ("\u0044",_aad .D );_ecg .SetIfNotNil ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw",_aad .NewWindow );return _gfb ;}; -// B returns the value of the B component of the color. -func (_gddga *PdfColorCalRGB )B ()float64 {return _gddga [1]}; +// PdfColorPatternType3 represents a color shading pattern type 3 (Radial). +type PdfColorPatternType3 struct{Color PdfColor ;PatternName _dg .PdfObjectName ;}; -// PdfAnnotationFreeText represents FreeText annotations. -// (Section 12.5.6.6). -type PdfAnnotationFreeText struct{*PdfAnnotation ;*PdfAnnotationMarkup ;DA _aff .PdfObject ;Q _aff .PdfObject ;RC _aff .PdfObject ;DS _aff .PdfObject ;CL _aff .PdfObject ;IT _aff .PdfObject ;BE _aff .PdfObject ;RD _aff .PdfObject ;BS _aff .PdfObject ;LE _aff .PdfObject ; -}; +// NewPdfAnnotationPolyLine returns a new polyline annotation. +func NewPdfAnnotationPolyLine ()*PdfAnnotationPolyLine {_edef :=NewPdfAnnotation ();_cagg :=&PdfAnnotationPolyLine {};_cagg .PdfAnnotation =_edef ;_cagg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_edef .SetContext (_cagg );return _cagg ;}; -// GetNumComponents returns the number of color components (3 for CalRGB). -func (_dbdg *PdfColorCalRGB )GetNumComponents ()int {return 3}; +// ToPdfObject implements interface PdfModel. +func (_dfgc *PdfFilespec )ToPdfObject ()_dg .PdfObject {_fgag :=_dfgc .getDict ();_fgag .Clear ();_fgag .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"));_fgag .SetIfNotNil ("\u0046\u0053",_dfgc .FS ); +_fgag .SetIfNotNil ("\u0046",_dfgc .F );_fgag .SetIfNotNil ("\u0055\u0046",_dfgc .UF );_fgag .SetIfNotNil ("\u0044\u004f\u0053",_dfgc .DOS );_fgag .SetIfNotNil ("\u004d\u0061\u0063",_dfgc .Mac );_fgag .SetIfNotNil ("\u0055\u006e\u0069\u0078",_dfgc .Unix ); +_fgag .SetIfNotNil ("\u0049\u0044",_dfgc .ID );_fgag .SetIfNotNil ("\u0056",_dfgc .V );_fgag .SetIfNotNil ("\u0045\u0046",_dfgc .EF );_fgag .SetIfNotNil ("\u0052\u0046",_dfgc .RF );_fgag .SetIfNotNil ("\u0044\u0065\u0073\u0063",_dfgc .Desc );_fgag .SetIfNotNil ("\u0043\u0049",_dfgc .CI ); +return _dfgc ._bcbe ;}; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// components. The slice should contain a single PdfObjectFloat element in -// range 0-1. -func (_abea *PdfColorspaceCalGray )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_eaca ,_cgee :=_aff .GetNumbersAsFloat (objects ); -if _cgee !=nil {return nil ,_cgee ;};return _abea .ColorFromFloats (_eaca );}; +// GetNumComponents returns the number of color components (1 for CalGray). +func (_ddfd *PdfColorCalGray )GetNumComponents ()int {return 1};func (_debdc *PdfFunctionType0 )processSamples ()error {_gdfcg :=_fcd .ResampleBytes (_debdc ._bgdg ,_debdc .BitsPerSample );_debdc ._fecfc =_gdfcg ;return nil ;}; -// Enable LTV enables the specified signature. The signing certificate -// chain is extracted from the signature dictionary. Optionally, additional -// certificates can be specified through the `extraCerts` parameter. -// The LTV client attempts to build the certificate chain up to a trusted root -// by downloading any missing certificates. -func (_baae *LTV )Enable (sig *PdfSignature ,extraCerts []*_fb .Certificate )error {if _abbc :=_baae .validateSig (sig );_abbc !=nil {return _abbc ;};_febbc ,_bbdgd :=_baae .generateVRIKey (sig );if _bbdgd !=nil {return _bbdgd ;};if _ ,_dcgfa :=_baae ._gceb .VRI [_febbc ]; -_dcgfa &&_baae .SkipExisting {return nil ;};_fdcag ,_bbdgd :=sig .GetCerts ();if _bbdgd !=nil {return _bbdgd ;};return _baae .enable (_fdcag ,extraCerts ,_febbc );}; +// Outline represents a PDF outline dictionary (Table 152 - p. 376). +// Currently, the Outline object can only be used to construct PDF outlines. +type Outline struct{Entries []*OutlineItem `json:"entries,omitempty"`;};func (_fbgbe *PdfAppender )replaceObject (_aagc ,_gfee _dg .PdfObject ){switch _efgd :=_aagc .(type ){case *_dg .PdfIndirectObject :_fbgbe ._gebe [_gfee ]=_efgd .ObjectNumber ;case *_dg .PdfObjectStream :_fbgbe ._gebe [_gfee ]=_efgd .ObjectNumber ; +};}; -// NewPdfAnnotationStamp returns a new stamp annotation. -func NewPdfAnnotationStamp ()*PdfAnnotationStamp {_aea :=NewPdfAnnotation ();_cfca :=&PdfAnnotationStamp {};_cfca .PdfAnnotation =_aea ;_cfca .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_aea .SetContext (_cfca );return _cfca ;}; +// NewPdfAnnotationProjection returns a new projection annotation. +func NewPdfAnnotationProjection ()*PdfAnnotationProjection {_ecc :=NewPdfAnnotation ();_egf :=&PdfAnnotationProjection {};_egf .PdfAnnotation =_ecc ;_egf .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_ecc .SetContext (_egf );return _egf ;};func (_efgb *PdfReader )newPdfAnnotationPolygonFromDict (_bgdbg *_dg .PdfObjectDictionary )(*PdfAnnotationPolygon ,error ){_aed :=PdfAnnotationPolygon {}; +_cfg ,_bgec :=_efgb .newPdfAnnotationMarkupFromDict (_bgdbg );if _bgec !=nil {return nil ,_bgec ;};_aed .PdfAnnotationMarkup =_cfg ;_aed .Vertices =_bgdbg .Get ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073");_aed .LE =_bgdbg .Get ("\u004c\u0045"); +_aed .BS =_bgdbg .Get ("\u0042\u0053");_aed .IC =_bgdbg .Get ("\u0049\u0043");_aed .BE =_bgdbg .Get ("\u0042\u0045");_aed .IT =_bgdbg .Get ("\u0049\u0054");_aed .Measure =_bgdbg .Get ("\u004de\u0061\u0073\u0075\u0072\u0065");return &_aed ,nil ;};func (_eadeg *PdfWriter )checkCrossReferenceStream ()bool {_debace :=_eadeg ._efacd .Major > 1||(_eadeg ._efacd .Major ==1&&_eadeg ._efacd .Minor > 4); +if _eadeg ._eaacb !=nil {_debace =*_eadeg ._eaacb ;};return _debace ;}; -// GetContainingPdfObject implements model.PdfModel interface. -func (_aceaa *PdfOutputIntent )GetContainingPdfObject ()_aff .PdfObject {return _aceaa ._gebea }; +// Read reads an image and loads into a new Image object with an RGB +// colormap and 8 bits per component. +func (_dbeg DefaultImageHandler )Read (reader _cf .Reader )(*Image ,error ){_gafac ,_ ,_ebaaa :=_gd .Decode (reader );if _ebaaa !=nil {_ag .Log .Debug ("\u0045\u0072\u0072or\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0073",_ebaaa ); +return nil ,_ebaaa ;};return _dbeg .NewImageFromGoImage (_gafac );}; -// Encoder returns the font's text encoder. -func (_bffg pdfFontType0 )Encoder ()_eee .TextEncoder {return _bffg ._faggb }; +// NewOutline returns a new outline instance. +func NewOutline ()*Outline {return &Outline {}};func _dcbd (_eegd _dg .PdfObject )(*PdfColorspaceLab ,error ){_dbfg :=NewPdfColorspaceLab ();if _bfbg ,_eeda :=_eegd .(*_dg .PdfIndirectObject );_eeda {_dbfg ._aadb =_bfbg ;};_eegd =_dg .TraceToDirectObject (_eegd ); +_ecbc ,_cbbaf :=_eegd .(*_dg .PdfObjectArray );if !_cbbaf {return nil ,_b .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _ecbc .Len ()!=2{return nil ,_b .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0043\u0061\u006c\u0052G\u0042 \u0063o\u006c\u006f\u0072\u0073\u0070\u0061\u0063e"); +};_eegd =_dg .TraceToDirectObject (_ecbc .Get (0));_cagfec ,_cbbaf :=_eegd .(*_dg .PdfObjectName );if !_cbbaf {return nil ,_b .Errorf ("\u006c\u0061\u0062\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006ft\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062j\u0065\u0063\u0074"); +};if *_cagfec !="\u004c\u0061\u0062"{return nil ,_b .Errorf ("n\u006ft\u0020\u0061\u0020\u004c\u0061\u0062\u0020\u0063o\u006c\u006f\u0072\u0073pa\u0063\u0065");};_eegd =_dg .TraceToDirectObject (_ecbc .Get (1));_edgc ,_cbbaf :=_eegd .(*_dg .PdfObjectDictionary ); +if !_cbbaf {return nil ,_b .Errorf ("c\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020or\u0020\u0069\u006ev\u0061l\u0069\u0064");}; +_eegd =_edgc .Get ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074");_eegd =_dg .TraceToDirectObject (_eegd );_eeae ,_cbbaf :=_eegd .(*_dg .PdfObjectArray );if !_cbbaf {return nil ,_b .Errorf ("\u004c\u0061\u0062\u0020In\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069n\u0074"); +};if _eeae .Len ()!=3{return nil ,_b .Errorf ("\u004c\u0061b\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074\u0020\u0061rr\u0061\u0079");};_geec ,_dgec :=_eeae .GetAsFloat64Slice (); +if _dgec !=nil {return nil ,_dgec ;};_dbfg .WhitePoint =_geec ;_eegd =_edgc .Get ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");if _eegd !=nil {_eegd =_dg .TraceToDirectObject (_eegd );_edae ,_dbcd :=_eegd .(*_dg .PdfObjectArray );if !_dbcd {return nil ,_b .Errorf ("\u004c\u0061\u0062: \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074"); +};if _edae .Len ()!=3{return nil ,_b .Errorf ("\u004c\u0061b\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074\u0020\u0061rr\u0061\u0079");};_bcfea ,_bebac :=_edae .GetAsFloat64Slice (); +if _bebac !=nil {return nil ,_bebac ;};_dbfg .BlackPoint =_bcfea ;};_eegd =_edgc .Get ("\u0052\u0061\u006eg\u0065");if _eegd !=nil {_eegd =_dg .TraceToDirectObject (_eegd );_dbccf ,_bbaf :=_eegd .(*_dg .PdfObjectArray );if !_bbaf {_ag .Log .Error ("\u0052\u0061n\u0067\u0065\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +return nil ,_b .Errorf ("\u004ca\u0062:\u0020\u0054\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _dbccf .Len ()!=4{_ag .Log .Error ("\u0052\u0061\u006e\u0067\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020e\u0072\u0072\u006f\u0072");return nil ,_b .Errorf ("\u004c\u0061b\u003a\u0020\u0052a\u006e\u0067\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};_gbbc ,_gecfa :=_dbccf .GetAsFloat64Slice ();if _gecfa !=nil {return nil ,_gecfa ;};_dbfg .Range =_gbbc ;};return _dbfg ,nil ;}; -// PdfColorspaceICCBased format [/ICCBased stream] -// -// The stream shall contain the ICC profile. -// A conforming reader shall support ICC.1:2004:10 as required by PDF 1.7, which will enable it -// to properly render all embedded ICC profiles regardless of the PDF version -// -// In the current implementation, we rely on the alternative colormap provided. -type PdfColorspaceICCBased struct{N int ;Alternate PdfColorspace ; +// EnableByName LTV enables the signature dictionary of the PDF AcroForm +// field identified the specified name. The signing certificate chain is +// extracted from the signature dictionary. Optionally, additional certificates +// can be specified through the `extraCerts` parameter. The LTV client attempts +// to build the certificate chain up to a trusted root by downloading any +// missing certificates. +func (_geacf *LTV )EnableByName (name string ,extraCerts []*_bb .Certificate )error {_eggcf :=_geacf ._ebdgd ._debg .AcroForm ;for _ ,_faeac :=range _eggcf .AllFields (){_cagee ,_ :=_faeac .GetContext ().(*PdfFieldSignature );if _cagee ==nil {continue ; +};if _cafce :=_cagee .PartialName ();_cafce !=name {continue ;};return _geacf .Enable (_cagee .V ,extraCerts );};return nil ;}; -// If omitted ICC not supported: then use DeviceGray, -// DeviceRGB or DeviceCMYK for N=1,3,4 respectively. -Range []float64 ;Metadata *_aff .PdfObjectStream ;Data []byte ;_ecfc *_aff .PdfIndirectObject ;_abcbf *_aff .PdfObjectStream ;}; +// RemovePage removes a page by number. +func (_ggac *PdfAppender )RemovePage (pageNum int ){_dgd :=pageNum -1;_ggac ._ggdd =append (_ggac ._ggdd [0:_dgd ],_ggac ._ggdd [pageNum :]...);}; -// NewPdfPage returns a new PDF page. -func NewPdfPage ()*PdfPage {_gdbda :=PdfPage {};_gdbda ._bbdac =_aff .MakeDict ();_gdbda .Resources =NewPdfPageResources ();_gfgdd :=_aff .PdfIndirectObject {};_gfgdd .PdfObject =_gdbda ._bbdac ;_gdbda ._fage =&_gfgdd ;_gdbda ._bfce =*_gdbda ._bbdac ;return &_gdbda ; -}; +// GetPage returns the PdfPage model for the specified page number. +func (_fadfb *PdfReader )GetPage (pageNumber int )(*PdfPage ,error ){if _fadfb ._baad .GetCrypter ()!=nil &&!_fadfb ._baad .IsAuthenticated (){return nil ,_b .Errorf ("\u0066\u0069\u006c\u0065\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f\u0020\u0062e\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); +};if len (_fadfb ._daddd )< pageNumber {return nil ,_bf .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0028\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u0075\u006e\u0074\u0020\u0074o\u006f\u0020\u0073\u0068\u006f\u0072\u0074\u0029"); +};_fcacb :=pageNumber -1;if _fcacb < 0{return nil ,_b .Errorf ("\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065r\u0069\u006e\u0067\u0020\u006d\u0075\u0073t\u0020\u0073\u0074\u0061\u0072\u0074\u0020\u0061\u0074\u0020\u0031");};_gcdaa :=_fadfb .PageList [_fcacb ]; +return _gcdaa ,nil ;}; -// NewPdfColorspaceCalGray returns a new CalGray colorspace object. -func NewPdfColorspaceCalGray ()*PdfColorspaceCalGray {_bgdgc :=&PdfColorspaceCalGray {};_bgdgc .BlackPoint =[]float64 {0.0,0.0,0.0};_bgdgc .Gamma =1;return _bgdgc ;}; +// GetBorderWidth returns the border style's width. +func (_fdbec *PdfBorderStyle )GetBorderWidth ()float64 {if _fdbec .W ==nil {return 1;};return *_fdbec .W ;}; -// Mask returns the uin32 bitmask for the specific flag. -func (_gegf FieldFlag )Mask ()uint32 {return uint32 (_gegf )}; +// PdfAnnotationUnderline represents Underline annotations. +// (Section 12.5.6.10). +type PdfAnnotationUnderline struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _dg .PdfObject ;};func (_ggbbf *PdfWriter )setCatalogVersion (){_ggbbf ._ecdf .Set ("\u0056e\u0072\u0073\u0069\u006f\u006e",_dg .MakeName (_b .Sprintf ("\u0025\u0064\u002e%\u0064",_ggbbf ._efacd .Major ,_ggbbf ._efacd .Minor ))); +}; -// BaseFont returns the font's "BaseFont" field. -func (_dbgg *PdfFont )BaseFont ()string {return _dbgg .baseFields ()._abed }; +// SetContext sets the specific fielddata type, e.g. would be PdfFieldButton for a button field. +func (_gbddg *PdfField )SetContext (ctx PdfModel ){_gbddg ._bdfg =ctx };func (_fbae *PdfReader )newPdfAnnotationSquigglyFromDict (_gee *_dg .PdfObjectDictionary )(*PdfAnnotationSquiggly ,error ){_gfdag :=PdfAnnotationSquiggly {};_egab ,_baec :=_fbae .newPdfAnnotationMarkupFromDict (_gee ); +if _baec !=nil {return nil ,_baec ;};_gfdag .PdfAnnotationMarkup =_egab ;_gfdag .QuadPoints =_gee .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_gfdag ,nil ;}; -// ToPdfObject implements interface PdfModel. -func (_eea *PdfAnnotationTrapNet )ToPdfObject ()_aff .PdfObject {_eea .PdfAnnotation .ToPdfObject ();_cegc :=_eea ._ccfb ;_fge :=_cegc .PdfObject .(*_aff .PdfObjectDictionary );_fge .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0054r\u0061\u0070\u004e\u0065\u0074")); -return _cegc ;}; +// NewOutlineItem returns a new outline item instance. +func NewOutlineItem (title string ,dest OutlineDest )*OutlineItem {return &OutlineItem {Title :title ,Dest :dest };}; -// PdfShadingType3 is a Radial shading. -type PdfShadingType3 struct{*PdfShading ;Coords *_aff .PdfObjectArray ;Domain *_aff .PdfObjectArray ;Function []PdfFunction ;Extend *_aff .PdfObjectArray ;}; +// GetCatalogMarkInfo gets catalog MarkInfo object. +func (_adbbe *PdfReader )GetCatalogMarkInfo ()(_dg .PdfObject ,bool ){if _adbbe ._gccfb ==nil {return nil ,false ;};_gdafag :=_adbbe ._gccfb .Get ("\u004d\u0061\u0072\u006b\u0049\u006e\u0066\u006f");return _gdafag ,_gdafag !=nil ;}; -// ToGoTime returns the date in time.Time format. -func (_bffcgb PdfDate )ToGoTime ()_f .Time {_fbdfb :=int (_bffcgb ._cdbec *60*60+_bffcgb ._geecde *60);switch _bffcgb ._acbgca {case '-':_fbdfb =-_fbdfb ;case 'Z':_fbdfb =0;};_cgfb :=_e .Sprintf ("\u0055\u0054\u0043\u0025\u0063\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064",_bffcgb ._acbgca ,_bffcgb ._cdbec ,_bffcgb ._geecde ); -_gcag :=_f .FixedZone (_cgfb ,_fbdfb );return _f .Date (int (_bffcgb ._ababa ),_f .Month (_bffcgb ._acdbf ),int (_bffcgb ._afcd ),int (_bffcgb ._bfcbd ),int (_bffcgb ._ggdbf ),int (_bffcgb ._bdcc ),0,_gcag );};var _ pdfFont =(*pdfFontType3 )(nil ); +// PdfActionMovie represents a movie action. +type PdfActionMovie struct{*PdfAction ;Annotation _dg .PdfObject ;T _dg .PdfObject ;Operation _dg .PdfObject ;};func _bgdgf (_bced _dg .PdfObject )(*PdfShading ,error ){_ddbgg :=&PdfShading {};var _fdfdb *_dg .PdfObjectDictionary ;if _fada ,_bcfda :=_dg .GetIndirect (_bced ); +_bcfda {_ddbgg ._bcfbg =_fada ;_dgea ,_bagcc :=_fada .PdfObject .(*_dg .PdfObjectDictionary );if !_bagcc {_ag .Log .Debug ("\u004f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074i\u006f\u006e\u0061\u0072\u0079\u0020\u0074y\u0070\u0065"); +return nil ,_dg .ErrTypeError ;};_fdfdb =_dgea ;}else if _aceb ,_affa :=_dg .GetStream (_bced );_affa {_ddbgg ._bcfbg =_aceb ;_fdfdb =_aceb .PdfObjectDictionary ;}else if _becbef ,_agaa :=_dg .GetDict (_bced );_agaa {_ddbgg ._bcfbg =_becbef ;_fdfdb =_becbef ; +}else {_ag .Log .Debug ("O\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0075\u006e\u0065\u0078\u0070e\u0063\u0074\u0065d\u0020(\u0025\u0054\u0029",_bced );return nil ,_dg .ErrTypeError ;};if _fdfdb ==nil {_ag .Log .Debug ("\u0044i\u0063t\u0069\u006f\u006e\u0061\u0072y\u0020\u006di\u0073\u0073\u0069\u006e\u0067"); +return nil ,_bf .New ("\u0064\u0069\u0063t\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};_bced =_fdfdb .Get ("S\u0068\u0061\u0064\u0069\u006e\u0067\u0054\u0079\u0070\u0065");if _bced ==nil {_ag .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065\u0064\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u0065\u0020\u006d\u0069\u0073si\u006e\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_bced =_dg .TraceToDirectObject (_bced );_cdba ,_gfbdc :=_bced .(*_dg .PdfObjectInteger );if !_gfbdc {_ag .Log .Debug ("\u0049\u006e\u0076al\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0066o\u0072 \u0073h\u0061d\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029",_bced ); +return nil ,_dg .ErrTypeError ;};if *_cdba < 1||*_cdba > 7{_ag .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u0065\u002c\u0020\u006e\u006ft\u0020\u0031\u002d\u0037\u0020(\u0067\u006ft\u0020\u0025\u0064\u0029",*_cdba ); +return nil ,_dg .ErrTypeError ;};_ddbgg .ShadingType =_cdba ;_bced =_fdfdb .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065");if _bced ==nil {_ag .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072e\u0064\u0020\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0020e\u006e\u0074\u0072\u0079\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_cbgfb ,_cagef :=NewPdfColorspaceFromPdfObject (_bced );if _cagef !=nil {_ag .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065: \u0025\u0076",_cagef ); +return nil ,_cagef ;};_ddbgg .ColorSpace =_cbgfb ;_bced =_fdfdb .Get ("\u0042\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064");if _bced !=nil {_bced =_dg .TraceToDirectObject (_bced );_bgcfd ,_ebdbb :=_bced .(*_dg .PdfObjectArray );if !_ebdbb {_ag .Log .Debug ("\u0042\u0061\u0063\u006b\u0067r\u006f\u0075\u006e\u0064\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054)",_bced ); +return nil ,_dg .ErrTypeError ;};_ddbgg .Background =_bgcfd ;};_bced =_fdfdb .Get ("\u0042\u0042\u006f\u0078");if _bced !=nil {_bced =_dg .TraceToDirectObject (_bced );_cdfdg ,_dfcba :=_bced .(*_dg .PdfObjectArray );if !_dfcba {_ag .Log .Debug ("\u0042\u0061\u0063\u006b\u0067r\u006f\u0075\u006e\u0064\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054)",_bced ); +return nil ,_dg .ErrTypeError ;};_bcffb ,_abfg :=NewPdfRectangle (*_cdfdg );if _abfg !=nil {_ag .Log .Debug ("\u0042\u0042\u006f\u0078\u0020\u0065\u0072\u0072\u006fr\u003a\u0020\u0025\u0076",_abfg );return nil ,_abfg ;};_ddbgg .BBox =_bcffb ;};_bced =_fdfdb .Get ("\u0041n\u0074\u0069\u0041\u006c\u0069\u0061s"); +if _bced !=nil {_bced =_dg .TraceToDirectObject (_bced );_cddcbg ,_cfaad :=_bced .(*_dg .PdfObjectBool );if !_cfaad {_ag .Log .Debug ("A\u006e\u0074\u0069\u0041\u006c\u0069\u0061\u0073\u0020i\u006e\u0076\u0061\u006c\u0069\u0064\u0020ty\u0070\u0065\u002c\u0020s\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020bo\u006f\u006c \u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_bced ); +return nil ,_dg .ErrTypeError ;};_ddbgg .AntiAlias =_cddcbg ;};switch *_cdba {case 1:_dcceg ,_gdeg :=_ggdcc (_fdfdb );if _gdeg !=nil {return nil ,_gdeg ;};_dcceg .PdfShading =_ddbgg ;_ddbgg ._eeddb =_dcceg ;return _ddbgg ,nil ;case 2:_gfdf ,_ecbfb :=_dgag (_fdfdb ); +if _ecbfb !=nil {return nil ,_ecbfb ;};_gfdf .PdfShading =_ddbgg ;_ddbgg ._eeddb =_gfdf ;return _ddbgg ,nil ;case 3:_dfafa ,_gfege :=_caff (_fdfdb );if _gfege !=nil {return nil ,_gfege ;};_dfafa .PdfShading =_ddbgg ;_ddbgg ._eeddb =_dfafa ;return _ddbgg ,nil ; +case 4:_cfgbb ,_fafa :=_eaac (_fdfdb );if _fafa !=nil {return nil ,_fafa ;};_cfgbb .PdfShading =_ddbgg ;_ddbgg ._eeddb =_cfgbb ;return _ddbgg ,nil ;case 5:_fcgae ,_dafdd :=_edaac (_fdfdb );if _dafdd !=nil {return nil ,_dafdd ;};_fcgae .PdfShading =_ddbgg ; +_ddbgg ._eeddb =_fcgae ;return _ddbgg ,nil ;case 6:_feeef ,_ecdea :=_eabg (_fdfdb );if _ecdea !=nil {return nil ,_ecdea ;};_feeef .PdfShading =_ddbgg ;_ddbgg ._eeddb =_feeef ;return _ddbgg ,nil ;case 7:_fbfdf ,_cdced :=_dfdb (_fdfdb );if _cdced !=nil {return nil ,_cdced ; +};_fbfdf .PdfShading =_ddbgg ;_ddbgg ._eeddb =_fbfdf ;return _ddbgg ,nil ;};return nil ,_bf .New ("u\u006ek\u006e\u006f\u0077\u006e\u0020\u0073\u0068\u0061d\u0069\u006e\u0067\u0020ty\u0070\u0065");};func (_gcdfe *PdfWriter )optimize ()error {if _gcdfe ._egeac ==nil {return nil ; +};var _fgcbfa error ;_gcdfe ._agaba ,_fgcbfa =_gcdfe ._egeac .Optimize (_gcdfe ._agaba );if _fgcbfa !=nil {return _fgcbfa ;};_edbgb :=make (map[_dg .PdfObject ]struct{},len (_gcdfe ._agaba ));for _ ,_gefeb :=range _gcdfe ._agaba {_edbgb [_gefeb ]=struct{}{}; +};_gcdfe ._fdbfa =_edbgb ;return nil ;}; -// GetContainingPdfObject returns the container of the shading object (indirect object). -func (_cdgb *PdfShading )GetContainingPdfObject ()_aff .PdfObject {return _cdgb ._bdacg }; +// String returns a string representation of what flags are set. +func (_fgad FieldFlag )String ()string {_gebae :="";if _fgad ==FieldFlagClear {_gebae ="\u0043\u006c\u0065a\u0072";return _gebae ;};if _fgad &FieldFlagReadOnly > 0{_gebae +="\u007cR\u0065\u0061\u0064\u004f\u006e\u006cy";};if _fgad &FieldFlagRequired > 0{_gebae +="\u007cR\u0065\u0071\u0075\u0069\u0072\u0065d"; +};if _fgad &FieldFlagNoExport > 0{_gebae +="\u007cN\u006f\u0045\u0078\u0070\u006f\u0072t";};if _fgad &FieldFlagNoToggleToOff > 0{_gebae +="\u007c\u004e\u006f\u0054\u006f\u0067\u0067\u006c\u0065T\u006f\u004f\u0066\u0066";};if _fgad &FieldFlagRadio > 0{_gebae +="\u007c\u0052\u0061\u0064\u0069\u006f"; +};if _fgad &FieldFlagPushbutton > 0{_gebae +="|\u0050\u0075\u0073\u0068\u0062\u0075\u0074\u0074\u006f\u006e";};if _fgad &FieldFlagRadiosInUnision > 0{_gebae +="\u007c\u0052a\u0064\u0069\u006fs\u0049\u006e\u0055\u006e\u0069\u0073\u0069\u006f\u006e";};if _fgad &FieldFlagMultiline > 0{_gebae +="\u007c\u004d\u0075\u006c\u0074\u0069\u006c\u0069\u006e\u0065"; +};if _fgad &FieldFlagPassword > 0{_gebae +="\u007cP\u0061\u0073\u0073\u0077\u006f\u0072d";};if _fgad &FieldFlagFileSelect > 0{_gebae +="|\u0046\u0069\u006c\u0065\u0053\u0065\u006c\u0065\u0063\u0074";};if _fgad &FieldFlagDoNotScroll > 0{_gebae +="\u007c\u0044\u006fN\u006f\u0074\u0053\u0063\u0072\u006f\u006c\u006c"; +};if _fgad &FieldFlagComb > 0{_gebae +="\u007c\u0043\u006fm\u0062";};if _fgad &FieldFlagRichText > 0{_gebae +="\u007cR\u0069\u0063\u0068\u0054\u0065\u0078t";};if _fgad &FieldFlagDoNotSpellCheck > 0{_gebae +="\u007c\u0044o\u004e\u006f\u0074S\u0070\u0065\u006c\u006c\u0043\u0068\u0065\u0063\u006b"; +};if _fgad &FieldFlagCombo > 0{_gebae +="\u007c\u0043\u006f\u006d\u0062\u006f";};if _fgad &FieldFlagEdit > 0{_gebae +="\u007c\u0045\u0064i\u0074";};if _fgad &FieldFlagSort > 0{_gebae +="\u007c\u0053\u006fr\u0074";};if _fgad &FieldFlagMultiSelect > 0{_gebae +="\u007c\u004d\u0075l\u0074\u0069\u0053\u0065\u006c\u0065\u0063\u0074"; +};if _fgad &FieldFlagCommitOnSelChange > 0{_gebae +="\u007cC\u006fm\u006d\u0069\u0074\u004f\u006eS\u0065\u006cC\u0068\u0061\u006e\u0067\u0065";};return _ga .Trim (_gebae ,"\u007c");}; -// PdfAnnotationPolygon represents Polygon annotations. -// (Section 12.5.6.9). -type PdfAnnotationPolygon struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Vertices _aff .PdfObject ;LE _aff .PdfObject ;BS _aff .PdfObject ;IC _aff .PdfObject ;BE _aff .PdfObject ;IT _aff .PdfObject ;Measure _aff .PdfObject ;}; +// NewPdfAnnotationHighlight returns a new text highlight annotation. +func NewPdfAnnotationHighlight ()*PdfAnnotationHighlight {_dbc :=NewPdfAnnotation ();_ceb :=&PdfAnnotationHighlight {};_ceb .PdfAnnotation =_dbc ;_ceb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_dbc .SetContext (_ceb );return _ceb ;};func (_gggea *PdfWriter )setWriter (_fbfcg _cf .Writer ){_gggea ._fbbfc =_gggea ._bgggdg ; +_gggea ._bddfa =_ba .NewWriter (_fbfcg );}; -// EnableChain adds the specified certificate chain and validation data (OCSP -// and CRL information) for it to the global scope of the document DSS. The -// added data is used for validating any of the signatures present in the -// document. The LTV client attempts to build the certificate chain up to a -// trusted root by downloading any missing certificates. -func (_eced *LTV )EnableChain (chain []*_fb .Certificate )error {return _eced .enable (nil ,chain ,"")}; +// AllFields returns a flattened list of all fields in the form. +func (_aebgc *PdfAcroForm )AllFields ()[]*PdfField {if _aebgc ==nil {return nil ;};var _gbef []*PdfField ;if _aebgc .Fields !=nil {for _ ,_afga :=range *_aebgc .Fields {_gbef =append (_gbef ,_aacd (_afga )...);};};return _gbef ;};func _adddc (_adcb _dg .PdfObject )(*PdfColorspaceICCBased ,error ){_cdag :=&PdfColorspaceICCBased {}; +if _eedae ,_cceg :=_adcb .(*_dg .PdfIndirectObject );_cceg {_cdag ._fbdff =_eedae ;};_adcb =_dg .TraceToDirectObject (_adcb );_gfga ,_bccb :=_adcb .(*_dg .PdfObjectArray );if !_bccb {return nil ,_b .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};if _gfga .Len ()!=2{return nil ,_b .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020c\u006f\u006c\u006fr\u0073p\u0061\u0063\u0065");};_adcb =_dg .TraceToDirectObject (_gfga .Get (0));_cbfc ,_bccb :=_adcb .(*_dg .PdfObjectName ); +if !_bccb {return nil ,_b .Errorf ("\u0049\u0043\u0043B\u0061\u0073\u0065\u0064 \u006e\u0061\u006d\u0065\u0020\u006e\u006ft\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};if *_cbfc !="\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064"{return nil ,_b .Errorf ("\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0049\u0043\u0043\u0042a\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073p\u0061\u0063\u0065"); +};_adcb =_gfga .Get (1);_gacgd ,_bccb :=_dg .GetStream (_adcb );if !_bccb {_ag .Log .Error ("I\u0043\u0043\u0042\u0061\u0073\u0065d\u0020\u006e\u006f\u0074\u0020\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0020t\u006f\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020%\u0054",_adcb ); +return nil ,_b .Errorf ("\u0049\u0043\u0043Ba\u0073\u0065\u0064\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_ebac :=_gacgd .PdfObjectDictionary ;_bcfca ,_bccb :=_ebac .Get ("\u004e").(*_dg .PdfObjectInteger ); +if !_bccb {return nil ,_b .Errorf ("I\u0043\u0043\u0042\u0061\u0073\u0065d\u0020\u006d\u0069\u0073\u0073\u0069n\u0067\u0020\u004e\u0020\u0066\u0072\u006fm\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074");};if *_bcfca !=1&&*_bcfca !=3&&*_bcfca !=4{return nil ,_b .Errorf ("\u0049\u0043\u0043\u0042\u0061s\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065 \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004e\u0020\u0028\u006e\u006f\u0074\u0020\u0031\u002c\u0033\u002c\u0034\u0029"); +};_cdag .N =int (*_bcfca );if _abae :=_ebac .Get ("\u0041l\u0074\u0065\u0072\u006e\u0061\u0074e");_abae !=nil {_cabe ,_cgcaf :=NewPdfColorspaceFromPdfObject (_abae );if _cgcaf !=nil {return nil ,_cgcaf ;};_cdag .Alternate =_cabe ;};if _bbbcc :=_ebac .Get ("\u0052\u0061\u006eg\u0065"); +_bbbcc !=nil {_bbbcc =_dg .TraceToDirectObject (_bbbcc );_fegaa ,_dddbe :=_bbbcc .(*_dg .PdfObjectArray );if !_dddbe {return nil ,_b .Errorf ("I\u0043\u0043\u0042\u0061\u0073\u0065d\u0020\u0052\u0061\u006e\u0067\u0065\u0020\u006e\u006ft\u0020\u0061\u006e \u0061r\u0072\u0061\u0079"); +};if _fegaa .Len ()!=2*_cdag .N {return nil ,_b .Errorf ("\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0052\u0061\u006e\u0067e\u0020\u0077\u0072\u006f\u006e\u0067 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0065\u006c\u0065m\u0065\u006e\u0074\u0073"); +};_eccg ,_bgfc :=_fegaa .GetAsFloat64Slice ();if _bgfc !=nil {return nil ,_bgfc ;};_cdag .Range =_eccg ;}else {_cdag .Range =make ([]float64 ,2*_cdag .N );for _bace :=0;_bace < _cdag .N ;_bace ++{_cdag .Range [2*_bace ]=0.0;_cdag .Range [2*_bace +1]=1.0; +};};if _bagb :=_ebac .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");_bagb !=nil {_dcaed ,_dcagg :=_bagb .(*_dg .PdfObjectStream );if !_dcagg {return nil ,_b .Errorf ("\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u004de\u0074\u0061\u0064\u0061\u0074\u0061\u0020n\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); +};_cdag .Metadata =_dcaed ;};_baaf ,_abdcd :=_dg .DecodeStream (_gacgd );if _abdcd !=nil {return nil ,_abdcd ;};_cdag .Data =_baaf ;_cdag ._dafg =_gacgd ;return _cdag ,nil ;}; -// ToPdfObject returns the PDF representation of the colorspace. -func (_cdaf *PdfColorspaceDeviceCMYK )ToPdfObject ()_aff .PdfObject {return _aff .MakeName ("\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b");}; +// HasColorspaceByName checks if the colorspace with the specified name exists in the page resources. +func (_fggg *PdfPageResources )HasColorspaceByName (keyName _dg .PdfObjectName )bool {_eaceb ,_aefa :=_fggg .GetColorspaces ();if _aefa !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0072\u0061\u0063\u0065: \u0025\u0076",_aefa ); +return false ;};if _eaceb ==nil {return false ;};_ ,_aceed :=_eaceb .Colorspaces [string (keyName )];return _aceed ;}; -// ToPdfObject returns colorspace in a PDF object format [name dictionary] -func (_gcbe *PdfColorspaceCalRGB )ToPdfObject ()_aff .PdfObject {_bebc :=&_aff .PdfObjectArray {};_bebc .Append (_aff .MakeName ("\u0043\u0061\u006c\u0052\u0047\u0042"));_gcfg :=_aff .MakeDict ();if _gcbe .WhitePoint !=nil {_abebe :=_aff .MakeArray (_aff .MakeFloat (_gcbe .WhitePoint [0]),_aff .MakeFloat (_gcbe .WhitePoint [1]),_aff .MakeFloat (_gcbe .WhitePoint [2])); -_gcfg .Set ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074",_abebe );}else {_adg .Log .Error ("\u0043\u0061l\u0052\u0047\u0042\u003a \u004d\u0069s\u0073\u0069\u006e\u0067\u0020\u0057\u0068\u0069t\u0065\u0050\u006f\u0069\u006e\u0074\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0029"); -};if _gcbe .BlackPoint !=nil {_cfcg :=_aff .MakeArray (_aff .MakeFloat (_gcbe .BlackPoint [0]),_aff .MakeFloat (_gcbe .BlackPoint [1]),_aff .MakeFloat (_gcbe .BlackPoint [2]));_gcfg .Set ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074",_cfcg ); -};if _gcbe .Gamma !=nil {_efg :=_aff .MakeArray (_aff .MakeFloat (_gcbe .Gamma [0]),_aff .MakeFloat (_gcbe .Gamma [1]),_aff .MakeFloat (_gcbe .Gamma [2]));_gcfg .Set ("\u0047\u0061\u006dm\u0061",_efg );};if _gcbe .Matrix !=nil {_deef :=_aff .MakeArray (_aff .MakeFloat (_gcbe .Matrix [0]),_aff .MakeFloat (_gcbe .Matrix [1]),_aff .MakeFloat (_gcbe .Matrix [2]),_aff .MakeFloat (_gcbe .Matrix [3]),_aff .MakeFloat (_gcbe .Matrix [4]),_aff .MakeFloat (_gcbe .Matrix [5]),_aff .MakeFloat (_gcbe .Matrix [6]),_aff .MakeFloat (_gcbe .Matrix [7]),_aff .MakeFloat (_gcbe .Matrix [8])); -_gcfg .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_deef );};_bebc .Append (_gcfg );if _gcbe ._caef !=nil {_gcbe ._caef .PdfObject =_bebc ;return _gcbe ._caef ;};return _bebc ;}; +// DecodeArray returns the component range values for the Indexed colorspace. +func (_fdff *PdfColorspaceSpecialIndexed )DecodeArray ()[]float64 {return []float64 {0,float64 (_fdff .HiVal )};}; -// SetPdfTitle sets the Title attribute of the output PDF. -func SetPdfTitle (title string ){_aebda .Lock ();defer _aebda .Unlock ();_eddc =title }; +// GetContainingPdfObject implements model.PdfModel interface. +func (_eadbe *PdfOutputIntent )GetContainingPdfObject ()_dg .PdfObject {return _eadbe ._cfaef }; -// PdfActionHide represents a hide action. -type PdfActionHide struct{*PdfAction ;T _aff .PdfObject ;H _aff .PdfObject ;}; +// PdfActionGoTo3DView represents a GoTo3DView action. +type PdfActionGoTo3DView struct{*PdfAction ;TA _dg .PdfObject ;V _dg .PdfObject ;}; -// FillWithAppearance populates `form` with values provided by `provider`. -// If not nil, `appGen` is used to generate appearance dictionaries for the -// field annotations, based on the specified settings. Otherwise, appearance -// generation is skipped. -// e.g.: appGen := annotator.FieldAppearance{OnlyIfMissing: true, RegenerateTextFields: true} -// NOTE: In next major version this functionality will be part of Fill. (v4) -func (_gdege *PdfAcroForm )FillWithAppearance (provider FieldValueProvider ,appGen FieldAppearanceGenerator )error {_ggaag :=_gdege .fill (provider ,appGen );if _ggaag !=nil {return _ggaag ;};if _ ,_feafg :=provider .(FieldImageProvider );_feafg {_ggaag =_gdege .fillImageWithAppearance (provider .(FieldImageProvider ),appGen ); -};return _ggaag ;};var _eefae =map[string ]struct{}{"\u0046\u0054":{},"\u004b\u0069\u0064\u0073":{},"\u0054":{},"\u0054\u0055":{},"\u0054\u004d":{},"\u0046\u0066":{},"\u0056":{},"\u0044\u0056":{},"\u0041\u0041":{},"\u0044\u0041":{},"\u0051":{},"\u0044\u0053":{},"\u0052\u0056":{}}; +// Width returns the width of `rect`. +func (_fbcdc *PdfRectangle )Width ()float64 {return _cg .Abs (_fbcdc .Urx -_fbcdc .Llx )}; +// PdfActionGoToE represents a GoToE action. +type PdfActionGoToE struct{*PdfAction ;F *PdfFilespec ;D _dg .PdfObject ;NewWindow _dg .PdfObject ;T _dg .PdfObject ;}; -// GetRuneMetrics returns the character metrics for the rune. +// GetRuneMetrics returns the character metrics for the specified rune. // A bool flag is returned to indicate whether or not the entry was found. -func (_adbba pdfFontSimple )GetRuneMetrics (r rune )(_bcd .CharMetrics ,bool ){if _adbba ._cadeb !=nil {_becda ,_cffe :=_adbba ._cadeb .Read (r );if _cffe {return _becda ,true ;};};_fbbe :=_adbba .Encoder ();if _fbbe ==nil {_adg .Log .Debug ("\u004e\u006f\u0020en\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u0073\u003d\u0025\u0073",_adbba ); -return _bcd .CharMetrics {},false ;};_egge ,_fafa :=_fbbe .RuneToCharcode (r );if !_fafa {if r !=' '{_adg .Log .Trace ("\u004e\u006f\u0020c\u0068\u0061\u0072\u0063o\u0064\u0065\u0020\u0066\u006f\u0072\u0020r\u0075\u006e\u0065\u003d\u0025\u0076\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",r ,_adbba ); -};return _bcd .CharMetrics {},false ;};_acea ,_eeeca :=_adbba .GetCharMetrics (_egge );return _acea ,_eeeca ;};func (_gaa *PdfReader )newPdfActionSubmitFormFromDict (_agce *_aff .PdfObjectDictionary )(*PdfActionSubmitForm ,error ){_cgad ,_ecdd :=_dfc (_agce .Get ("\u0046")); -if _ecdd !=nil {return nil ,_ecdd ;};return &PdfActionSubmitForm {F :_cgad ,Fields :_agce .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"),Flags :_agce .Get ("\u0046\u006c\u0061g\u0073")},nil ;}; - -// ToPdfObject returns a stream object. -func (_edgac *XObjectForm )ToPdfObject ()_aff .PdfObject {_gbdc :=_edgac ._fddef ;_eaee :=_gbdc .PdfObjectDictionary ;if _edgac .Filter !=nil {_eaee =_edgac .Filter .MakeStreamDict ();_gbdc .PdfObjectDictionary =_eaee ;};_eaee .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0058O\u0062\u006a\u0065\u0063\u0074")); -_eaee .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0046\u006f\u0072\u006d"));_eaee .SetIfNotNil ("\u0046\u006f\u0072\u006d\u0054\u0079\u0070\u0065",_edgac .FormType );_eaee .SetIfNotNil ("\u0042\u0042\u006f\u0078",_edgac .BBox );_eaee .SetIfNotNil ("\u004d\u0061\u0074\u0072\u0069\u0078",_edgac .Matrix ); -if _edgac .Resources !=nil {_eaee .SetIfNotNil ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_edgac .Resources .ToPdfObject ());};_eaee .SetIfNotNil ("\u0047\u0072\u006fu\u0070",_edgac .Group );_eaee .SetIfNotNil ("\u0052\u0065\u0066",_edgac .Ref );_eaee .SetIfNotNil ("\u004d\u0065\u0074\u0061\u0044\u0061\u0074\u0061",_edgac .MetaData ); -_eaee .SetIfNotNil ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o",_edgac .PieceInfo );_eaee .SetIfNotNil ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064",_edgac .LastModified );_eaee .SetIfNotNil ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074",_edgac .StructParent ); -_eaee .SetIfNotNil ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073",_edgac .StructParents );_eaee .SetIfNotNil ("\u004f\u0050\u0049",_edgac .OPI );_eaee .SetIfNotNil ("\u004f\u0043",_edgac .OC );_eaee .SetIfNotNil ("\u004e\u0061\u006d\u0065",_edgac .Name ); -_eaee .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_edgac .Stream ))));_gbdc .Stream =_edgac .Stream ;return _gbdc ;}; - -// ToPdfObject implements interface PdfModel. -func (_bfde *PdfActionGoTo3DView )ToPdfObject ()_aff .PdfObject {_bfde .PdfAction .ToPdfObject ();_cfd :=_bfde ._df ;_fbd :=_cfd .PdfObject .(*_aff .PdfObjectDictionary );_fbd .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeGoTo3DView )));_fbd .SetIfNotNil ("\u0054\u0041",_bfde .TA ); -_fbd .SetIfNotNil ("\u0056",_bfde .V );return _cfd ;}; +func (_ccccb pdfCIDFontType0 )GetRuneMetrics (r rune )(_bbg .CharMetrics ,bool ){return _bbg .CharMetrics {Wx :_ccccb ._gfdca },true ;}; -// NewPdfColorspaceDeviceRGB returns a new RGB colorspace object. -func NewPdfColorspaceDeviceRGB ()*PdfColorspaceDeviceRGB {return &PdfColorspaceDeviceRGB {}}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// components. The slice should contain a single PdfObjectFloat element in +// range 0-1. +func (_cedf *PdfColorspaceDeviceGray )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_bgcb ,_febe :=_dg .GetNumbersAsFloat (objects ); +if _febe !=nil {return nil ,_febe ;};return _cedf .ColorFromFloats (_bgcb );}; -// ToPdfObject returns a PDF object representation of the outline. -func (_gfcg *Outline )ToPdfObject ()_aff .PdfObject {return _gfcg .ToPdfOutline ().ToPdfObject ()}; +// AddPages adds pages to be appended to the end of the source PDF. +func (_dgcb *PdfAppender )AddPages (pages ...*PdfPage ){for _ ,_geda :=range pages {_geda =_geda .Duplicate ();_dccea (_geda );_dgcb ._ggdd =append (_dgcb ._ggdd ,_geda );};};func (_dace *pdfFontType0 )subsetRegistered ()error {_gegdg ,_bcdgc :=_dace .DescendantFont ._cadf .(*pdfCIDFontType2 ); +if !_bcdgc {_ag .Log .Debug ("\u0046\u006fnt\u0020\u006e\u006ft\u0020\u0073\u0075\u0070por\u0074ed\u0020\u0066\u006f\u0072\u0020\u0073\u0075bs\u0065\u0074\u0074\u0069\u006e\u0067\u0020%\u0054",_dace .DescendantFont );return nil ;};if _gegdg ==nil {return nil ; +};if _gegdg ._ccfb ==nil {_ag .Log .Debug ("\u004d\u0069\u0073si\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072");return nil ;};if _dace ._ggec ==nil {_ag .Log .Debug ("\u004e\u006f\u0020e\u006e\u0063\u006f\u0064e\u0072\u0020\u002d\u0020\u0073\u0075\u0062s\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u0067\u006e\u006f\u0072\u0065\u0064"); +return nil ;};_gcdg ,_bcdgc :=_dg .GetStream (_gegdg ._ccfb .FontFile2 );if !_bcdgc {_ag .Log .Debug ("\u0045\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u002d\u002d\u0020\u0041\u0042\u004f\u0052T\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069\u006e\u0067"); +return _bf .New ("\u0066\u006f\u006e\u0074fi\u006c\u0065\u0032\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_degc ,_babc :=_dg .DecodeStream (_gcdg );if _babc !=nil {_ag .Log .Debug ("\u0044\u0065c\u006f\u0064\u0065 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_babc ); +return _babc ;};_bfabf ,_babc :=_bfc .Parse (_bc .NewReader (_degc ));if _babc !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0020f\u006f\u006e\u0074",len (_gcdg .Stream )); +return _babc ;};var _bggb []rune ;var _ffcba *_bfc .Font ;switch _bfgfg :=_dace ._ggec .(type ){case *_bd .TrueTypeFontEncoder :_bggb =_bfgfg .RegisteredRunes ();_ffcba ,_babc =_bfabf .SubsetKeepRunes (_bggb );if _babc !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_babc ); +return _babc ;};_bfgfg .SubsetRegistered ();case *_bd .IdentityEncoder :_bggb =_bfgfg .RegisteredRunes ();_fcga :=make ([]_bfc .GlyphIndex ,len (_bggb ));for _dfgf ,_aedb :=range _bggb {_fcga [_dfgf ]=_bfc .GlyphIndex (_aedb );};_ffcba ,_babc =_bfabf .SubsetKeepIndices (_fcga ); +if _babc !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_babc );return _babc ;};case _bd .SimpleEncoder :_bbadb :=_bfgfg .Charcodes ();for _ ,_ebcdc :=range _bbadb {_dbcbc ,_gbaf :=_bfgfg .CharcodeToRune (_ebcdc );if !_gbaf {_ag .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0020\u0074\u006f \u0072\u0075\u006e\u0065\u003a\u0020\u0025\u0064",_ebcdc ); +continue ;};_bggb =append (_bggb ,_dbcbc );};default:return _b .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u006f\u0072\u0020s\u0075\u0062\u0073\u0065\u0074t\u0069\u006eg\u003a\u0020\u0025\u0054",_dace ._ggec ); +};var _ebff _bc .Buffer ;_babc =_ffcba .Write (&_ebff );if _babc !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_babc );return _babc ;};if _dace ._ecfb !=nil {_aedd :=make (map[_ff .CharCode ]rune ,len (_bggb ));for _ ,_fdce :=range _bggb {_daae ,_bafeg :=_dace ._ggec .RuneToCharcode (_fdce ); +if !_bafeg {continue ;};_aedd [_ff .CharCode (_daae )]=_fdce ;};_dace ._ecfb =_ff .NewToUnicodeCMap (_aedd );};_gcdg ,_babc =_dg .MakeStream (_ebff .Bytes (),_dg .NewFlateEncoder ());if _babc !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_babc ); +return _babc ;};_gcdg .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_dg .MakeInteger (int64 (_ebff .Len ())));if _eeee ,_ffcdf :=_dg .GetStream (_gegdg ._ccfb .FontFile2 );_ffcdf {*_eeee =*_gcdg ;}else {_gegdg ._ccfb .FontFile2 =_gcdg ;};_abefc :=_daffeb (); +if len (_dace ._ecbf )> 0{_dace ._ecbf =_bbgcf (_dace ._ecbf ,_abefc );};if len (_gegdg ._ecbf )> 0{_gegdg ._ecbf =_bbgcf (_gegdg ._ecbf ,_abefc );};if len (_dace ._cefg )> 0{_dace ._cefg =_bbgcf (_dace ._cefg ,_abefc );};if _gegdg ._ccfb !=nil {_ccbdb ,_cgdc :=_dg .GetName (_gegdg ._ccfb .FontName ); +if _cgdc &&len (_ccbdb .String ())> 0{_edfac :=_bbgcf (_ccbdb .String (),_abefc );_gegdg ._ccfb .FontName =_dg .MakeName (_edfac );};};return nil ;}; -// NewPdfActionTrans returns a new "trans" action. -func NewPdfActionTrans ()*PdfActionTrans {_eag :=NewPdfAction ();_fcc :=&PdfActionTrans {};_fcc .PdfAction =_eag ;_eag .SetContext (_fcc );return _fcc ;}; +// FieldFlattenOpts defines a set of options which can be used to configure +// the field flattening process. +type FieldFlattenOpts struct{ -// Has checks if flag fl is set in flag and returns true if so, false otherwise. -func (_dbecd FieldFlag )Has (fl FieldFlag )bool {return (_dbecd .Mask ()&fl .Mask ())> 0};func (_bbc *PdfReader )newPdfActionGotoRFromDict (_ebb *_aff .PdfObjectDictionary )(*PdfActionGoToR ,error ){_gbe ,_eef :=_dfc (_ebb .Get ("\u0046"));if _eef !=nil {return nil ,_eef ; -};return &PdfActionGoToR {D :_ebb .Get ("\u0044"),NewWindow :_ebb .Get ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw"),F :_gbe },nil ;};func (_cab *PdfReader )newPdfActionSetOCGStateFromDict (_bcda *_aff .PdfObjectDictionary )(*PdfActionSetOCGState ,error ){return &PdfActionSetOCGState {State :_bcda .Get ("\u0053\u0074\u0061t\u0065"),PreserveRB :_bcda .Get ("\u0050\u0072\u0065\u0073\u0065\u0072\u0076\u0065\u0052\u0042")},nil ; -}; +// FilterFunc allows filtering the form fields used in the flattening +// process. If the filter function returns true, the field is flattened, +// otherwise it is skipped. +// If a non-terminal field is discarded, all of its children (the fields +// present in the Kids array) are discarded as well. +// Non-terminal fields are kept in the AcroForm if one or more of their +// child fields have not been selected for flattening. +// If a filter function is not provided, all form fields are flattened. +FilterFunc FieldFilterFunc ; -// NewLTV returns a new LTV client. -func NewLTV (appender *PdfAppender )(*LTV ,error ){_bfgfc :=appender .Reader .DSS ;if _bfgfc ==nil {_bfgfc =NewDSS ();};if _dgef :=_bfgfc .GenerateHashMaps ();_dgef !=nil {return nil ,_dgef ;};return <V {CertClient :_bfd .NewCertClient (),OCSPClient :_bfd .NewOCSPClient (),CRLClient :_bfd .NewCRLClient (),SkipExisting :true ,_bbbab :appender ,_gceb :_bfgfc },nil ; -}; +// AnnotFilterFunc allows filtering the annotations in the flattening +// process. If the filter function returns true, the annotation is flattened, +// otherwise it is skipped. +AnnotFilterFunc AnnotFilterFunc ;}; // ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain three elements representing the -// L (range 0-100), A (range -100-100) and B (range -100-100) components of -// the color. -func (_ebdg *PdfColorspaceLab )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=3{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_dgdf :=vals [0];if _dgdf < 0.0||_dgdf > 100.0{_adg .Log .Debug ("\u004c\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067e\u0020\u0028\u0067\u006f\u0074\u0020%\u0076\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030-\u0031\u0030\u0030\u0029",_dgdf ); -return nil ,ErrColorOutOfRange ;};_accec :=vals [1];_egdca :=float64 (-100);_cbac :=float64 (100);if len (_ebdg .Range )> 1{_egdca =_ebdg .Range [0];_cbac =_ebdg .Range [1];};if _accec < _egdca ||_accec > _cbac {_adg .Log .Debug ("\u0041\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067e\u0020\u0028\u0067\u006f\u0074\u0020%\u0076\u003b\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0025\u0076\u0020\u0074o\u0020\u0025\u0076\u0029",_accec ,_egdca ,_cbac ); -return nil ,ErrColorOutOfRange ;};_dcdb :=vals [2];_gaf :=float64 (-100);_ebde :=float64 (100);if len (_ebdg .Range )> 3{_gaf =_ebdg .Range [2];_ebde =_ebdg .Range [3];};if _dcdb < _gaf ||_dcdb > _ebde {_adg .Log .Debug ("\u0062\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067e\u0020\u0028\u0067\u006f\u0074\u0020%\u0076\u003b\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0025\u0076\u0020\u0074o\u0020\u0025\u0076\u0029",_dcdb ,_gaf ,_ebde ); -return nil ,ErrColorOutOfRange ;};_gbea :=NewPdfColorLab (_dgdf ,_accec ,_dcdb );return _gbea ,nil ;}; +// components. The slice should contain a single element between 0 and 1. +func (_dgab *PdfColorspaceCalGray )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_agacc :=vals [0];if _agacc < 0.0||_agacc > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_agacc ); +return nil ,ErrColorOutOfRange ;};_aebd :=NewPdfColorCalGray (_agacc );return _aebd ,nil ;};func _gegbd (_dgegc _dg .PdfObject ,_fdfd bool )(*PdfFont ,error ){_fafca ,_agagf ,_beaef :=_cbaa (_dgegc );if _fafca !=nil {_acbbg (_fafca );};if _beaef !=nil {if _beaef ==ErrType1CFontNotSupported {_fbccc ,_ccddg :=_cfaa (_fafca ,_agagf ,nil ); +if _ccddg !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0057h\u0069\u006c\u0065 l\u006f\u0061\u0064\u0069\u006e\u0067 \u0073\u0069\u006d\u0070\u006c\u0065\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0066\u006fn\u0074\u003d\u0025\u0073\u0020\u0065\u0072\u0072=\u0025\u0076",_agagf ,_ccddg ); +return nil ,_beaef ;};return &PdfFont {_cadf :_fbccc },_beaef ;};return nil ,_beaef ;};_aefb :=&PdfFont {};switch _agagf ._bcga {case "\u0054\u0079\u0070e\u0030":if !_fdfd {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u004c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u00650\u0020\u006e\u006f\u0074\u0020\u0061\u006c\u006c\u006f\u0077\u0065\u0064\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_agagf ); +return nil ,_bf .New ("\u0063\u0079\u0063\u006cic\u0061\u006c\u0020\u0074\u0079\u0070\u0065\u0030\u0020\u006c\u006f\u0061\u0064\u0069n\u0067");};_cefcc ,_geff :=_cefdc (_fafca ,_agagf );if _geff !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0057\u0068\u0069l\u0065\u0020\u006c\u006f\u0061\u0064\u0069ng\u0020\u0054\u0079\u0070e\u0030\u0020\u0066\u006f\u006e\u0074\u002e\u0020\u0066on\u0074\u003d%\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_agagf ,_geff ); +return nil ,_geff ;};_aefb ._cadf =_cefcc ;case "\u0054\u0079\u0070e\u0031","\u004dM\u0054\u0079\u0070\u0065\u0031","\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":var _dafc *pdfFontSimple ;_bdbb ,_abgb :=_bbg .NewStdFontByName (_bbg .StdFontName (_agagf ._ecbf )); +if _abgb {_fbaaa :=_gecgd (_bdbb );_aefb ._cadf =&_fbaaa ;_aadg :=_dg .TraceToDirectObject (_fbaaa .ToPdfObject ());_fgcac ,_gdae ,_ccebc :=_cbaa (_aadg );if _ccebc !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042\u0061\u0064\u0020\u0053\u0074a\u006e\u0064\u0061\u0072\u0064\u00314\u000a\u0009\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u000a\u0009\u0073\u0074d\u003d\u0025\u002b\u0076",_agagf ,_fbaaa ); +return nil ,_ccebc ;};for _ ,_abga :=range _fafca .Keys (){_fgcac .Set (_abga ,_fafca .Get (_abga ));};_dafc ,_ccebc =_cfaa (_fgcac ,_gdae ,_fbaaa ._dbdb );if _ccebc !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042\u0061\u0064\u0020\u0053\u0074a\u006e\u0064\u0061\u0072\u0064\u00314\u000a\u0009\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u000a\u0009\u0073\u0074d\u003d\u0025\u002b\u0076",_agagf ,_fbaaa ); +return nil ,_ccebc ;};_dafc ._cfagf =_fbaaa ._cfagf ;_dafc ._bfdee =_fbaaa ._bfdee ;if _dafc ._gagbe ==nil {_dafc ._gagbe =_fbaaa ._gagbe ;};}else {_dafc ,_beaef =_cfaa (_fafca ,_agagf ,nil );if _beaef !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0057h\u0069\u006c\u0065 l\u006f\u0061\u0064\u0069\u006e\u0067 \u0073\u0069\u006d\u0070\u006c\u0065\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0066\u006fn\u0074\u003d\u0025\u0073\u0020\u0065\u0072\u0072=\u0025\u0076",_agagf ,_beaef ); +return nil ,_beaef ;};};_beaef =_dafc .addEncoding ();if _beaef !=nil {return nil ,_beaef ;};if _abgb {_dafc .updateStandard14Font ();};if _abgb &&_dafc ._bdeed ==nil &&_dafc ._dbdb ==nil {_ag .Log .Error ("\u0073\u0069\u006d\u0070\u006c\u0065\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_dafc ); +_ag .Log .Error ("\u0066n\u0074\u003d\u0025\u002b\u0076",_bdbb );};if len (_dafc ._cfagf )==0{_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u004e\u006f\u0020\u0077\u0069d\u0074h\u0073.\u0020\u0066\u006f\u006e\u0074\u003d\u0025s",_dafc );};_aefb ._cadf =_dafc ; +case "\u0054\u0079\u0070e\u0033":_cgaa ,_feffa :=_bagde (_fafca ,_agagf );if _feffa !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020W\u0068\u0069\u006c\u0065\u0020\u006co\u0061\u0064\u0069\u006e\u0067\u0020\u0074y\u0070\u0065\u0033\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076",_feffa ); +return nil ,_feffa ;};_aefb ._cadf =_cgaa ;case "\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030":_fafg ,_abfe :=_fbff (_fafca ,_agagf );if _abfe !=nil {_ag .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0057\u0068i\u006c\u0065\u0020l\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u0069d \u0066\u006f\u006et\u0020\u0074y\u0070\u0065\u0030\u0020\u0066\u006fn\u0074\u003a \u0025\u0076",_abfe ); +return nil ,_abfe ;};_aefb ._cadf =_fafg ;case "\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":_ebafa ,_eecf :=_dadaa (_fafca ,_agagf );if _eecf !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0057\u0068\u0069l\u0065\u0020\u006co\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u0069\u0064\u0020f\u006f\u006e\u0074\u0020\u0074yp\u0065\u0032\u0020\u0066\u006f\u006e\u0074\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_agagf ,_eecf ); +return nil ,_eecf ;};_aefb ._cadf =_ebafa ;default:_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020U\u006e\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020f\u006f\u006e\u0074\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0066\u006fn\u0074\u003d\u0025\u0073",_agagf ); +return nil ,_b .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0066\u006f\u006e\u0074\u0020\u0074y\u0070\u0065\u003a\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_agagf );};return _aefb ,nil ;};func _cfaa (_geef *_dg .PdfObjectDictionary ,_dbbf *fontCommon ,_gedbf _bd .TextEncoder )(*pdfFontSimple ,error ){_dddef :=_beabe (_dbbf ); +_dddef ._dbdb =_gedbf ;if _gedbf ==nil {_bfgab :=_geef .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r");if _bfgab ==nil {_bfgab =_dg .MakeInteger (0);};_dddef .FirstChar =_bfgab ;_cfgb ,_eecg :=_dg .GetIntVal (_bfgab );if !_eecg {_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0046i\u0072s\u0074C\u0068\u0061\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029",_bfgab ); +return nil ,_dg .ErrTypeError ;};_dbce :=_bd .CharCode (_cfgb );_bfgab =_geef .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072");if _bfgab ==nil {_bfgab =_dg .MakeInteger (255);};_dddef .LastChar =_bfgab ;_cfgb ,_eecg =_dg .GetIntVal (_bfgab );if !_eecg {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004c\u0061\u0073\u0074\u0043h\u0061\u0072\u0020\u0074\u0079\u0070\u0065 \u0028\u0025\u0054\u0029",_bfgab ); +return nil ,_dg .ErrTypeError ;};_aacf :=_bd .CharCode (_cfgb );_dddef ._cfagf =make (map[_bd .CharCode ]float64 );_bfgab =_geef .Get ("\u0057\u0069\u0064\u0074\u0068\u0073");if _bfgab !=nil {_dddef .Widths =_bfgab ;_cage ,_fafe :=_dg .GetArray (_bfgab ); +if !_fafe {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020W\u0069\u0064t\u0068\u0073\u0020\u0061\u0074\u0074\u0072\u0069b\u0075\u0074\u0065\u0020\u0021\u003d\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025\u0054\u0029",_bfgab );return nil ,_dg .ErrTypeError ; +};_fbdg ,_bbaeg :=_cage .ToFloat64Array ();if _bbaeg !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0077\u0069d\u0074\u0068\u0073\u0020\u0074\u006f\u0020a\u0072\u0072\u0061\u0079"); +return nil ,_bbaeg ;};if len (_fbdg )!=int (_aacf -_dbce +1){_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0077\u0069\u0064\u0074\u0068s\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0025\u0064 \u0028\u0025\u0064\u0029",_aacf -_dbce +1,len (_fbdg )); +return nil ,_dg .ErrRangeError ;};for _cgcg ,_bccdf :=range _fbdg {_dddef ._cfagf [_dbce +_bd .CharCode (_cgcg )]=_bccdf ;};};};_dddef .Encoding =_dg .TraceToDirectObject (_geef .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));return _dddef ,nil ; +}; -// ContentStreamWrapper wraps the Page's contentstream into q ... Q blocks. -type ContentStreamWrapper interface{WrapContentStream (_ecgc *PdfPage )error ;}; +// ColorToRGB verifies that the input color is an RGB color. Method exists in +// order to satisfy the PdfColorspace interface. +func (_dcgf *PdfColorspaceDeviceRGB )ColorToRGB (color PdfColor )(PdfColor ,error ){_gafc ,_gcfea :=color .(*PdfColorDeviceRGB );if !_gcfea {_ag .Log .Debug ("\u0049\u006e\u0070\u0075\u0074\u0020\u0063\u006f\u006c\u006f\u0072 \u006e\u006f\u0074\u0020\u0064\u0065\u0076\u0069\u0063\u0065 \u0052\u0047\u0042"); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};return _gafc ,nil ;}; -// PdfAnnotationPrinterMark represents PrinterMark annotations. -// (Section 12.5.6.20). -type PdfAnnotationPrinterMark struct{*PdfAnnotation ;MN _aff .PdfObject ;}; +// PdfActionThread represents a thread action. +type PdfActionThread struct{*PdfAction ;F *PdfFilespec ;D _dg .PdfObject ;B _dg .PdfObject ;}; -// Encoder returns the font's text encoder. -func (_ddbaf pdfCIDFontType2 )Encoder ()_eee .TextEncoder {return _ddbaf ._begcd };func (_ccbc *PdfReader )newPdfAnnotationPopupFromDict (_gabd *_aff .PdfObjectDictionary )(*PdfAnnotationPopup ,error ){_cac :=PdfAnnotationPopup {};_cac .Parent =_gabd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"); -_cac .Open =_gabd .Get ("\u004f\u0070\u0065\u006e");return &_cac ,nil ;};func _dfede (_ffcfb _aff .PdfObject ,_badaf *PdfReader )(*OutlineDest ,error ){_efgfgf ,_dbaec :=_aff .GetArray (_ffcfb );if !_dbaec {return nil ,_g .New ("\u006f\u0075\u0074\u006c\u0069\u006e\u0065 \u0064\u0065\u0073t\u0069\u006e\u0061\u0074i\u006f\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); -};_aedffd :=_efgfgf .Len ();if _aedffd < 2{return nil ,_e .Errorf ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u006fu\u0074\u006c\u0069n\u0065\u0020\u0064\u0065\u0073\u0074\u0069\u006e\u0061ti\u006f\u006e\u0020a\u0072\u0072a\u0079\u0020\u006c\u0065\u006e\u0067t\u0068\u003a \u0025\u0064",_aedffd ); -};_fgagg :=&OutlineDest {Mode :"\u0046\u0069\u0074"};_ggged :=_efgfgf .Get (0);if _beff ,_dgbda :=_aff .GetIndirect (_ggged );_dgbda {if _ ,_egcff ,_ebeea :=_badaf .PageFromIndirectObject (_beff );_ebeea ==nil {_fgagg .Page =int64 (_egcff -1);}else {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020g\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006e\u0064\u0065\u0078\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u002b\u0076",_beff ); -};_fgagg .PageObj =_beff ;}else if _ffdd ,_cfdb :=_aff .GetIntVal (_ggged );_cfdb {if _ffdd >=0&&_ffdd < len (_badaf .PageList ){_fgagg .PageObj =_badaf .PageList [_ffdd ].GetPageAsIndirectObject ();}else {_adg .Log .Debug ("\u0057\u0041R\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u0064",_ffdd ); -};_fgagg .Page =int64 (_ffdd );}else {return nil ,_e .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u006f\u0075\u0074\u006cine\u0020de\u0073\u0074\u0069\u006e\u0061\u0074\u0069on\u0020\u0070\u0061\u0067\u0065\u003a\u0020%\u0054",_ggged );};_ddbb ,_dbaec :=_aff .GetNameVal (_efgfgf .Get (1)); -if !_dbaec {_adg .Log .Debug ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0064\u0065s\u0074\u0069\u006e\u0061\u0074\u0069\u006fn\u0020\u006d\u0061\u0067\u006e\u0069\u0066\u0069\u0063\u0061\u0074i\u006f\u006e\u0020\u006d\u006f\u0064\u0065\u003a\u0020\u0025\u0076",_efgfgf .Get (1)); -return _fgagg ,nil ;};switch _ddbb {case "\u0046\u0069\u0074","\u0046\u0069\u0074\u0042":case "\u0046\u0069\u0074\u0048","\u0046\u0069\u0074B\u0048":if _aedffd > 2{_fgagg .Y ,_ =_aff .GetNumberAsFloat (_aff .TraceToDirectObject (_efgfgf .Get (2)));};case "\u0046\u0069\u0074\u0056","\u0046\u0069\u0074B\u0056":if _aedffd > 2{_fgagg .X ,_ =_aff .GetNumberAsFloat (_aff .TraceToDirectObject (_efgfgf .Get (2))); -};case "\u0058\u0059\u005a":if _aedffd > 4{_fgagg .X ,_ =_aff .GetNumberAsFloat (_aff .TraceToDirectObject (_efgfgf .Get (2)));_fgagg .Y ,_ =_aff .GetNumberAsFloat (_aff .TraceToDirectObject (_efgfgf .Get (3)));_fgagg .Zoom ,_ =_aff .GetNumberAsFloat (_aff .TraceToDirectObject (_efgfgf .Get (4))); -};default:_ddbb ="\u0046\u0069\u0074";};_fgagg .Mode =_ddbb ;return _fgagg ,nil ;}; +// PdfShadingType2 is an Axial shading. +type PdfShadingType2 struct{*PdfShading ;Coords *_dg .PdfObjectArray ;Domain *_dg .PdfObjectArray ;Function []PdfFunction ;Extend *_dg .PdfObjectArray ;}; -// GetNumComponents returns the number of color components (3 for Lab). -func (_ddbc *PdfColorLab )GetNumComponents ()int {return 3};func (_bfc *PdfReader )newPdfAnnotationLineFromDict (_ebc *_aff .PdfObjectDictionary )(*PdfAnnotationLine ,error ){_febg :=PdfAnnotationLine {};_ffbbc ,_dafb :=_bfc .newPdfAnnotationMarkupFromDict (_ebc ); -if _dafb !=nil {return nil ,_dafb ;};_febg .PdfAnnotationMarkup =_ffbbc ;_febg .L =_ebc .Get ("\u004c");_febg .BS =_ebc .Get ("\u0042\u0053");_febg .LE =_ebc .Get ("\u004c\u0045");_febg .IC =_ebc .Get ("\u0049\u0043");_febg .LL =_ebc .Get ("\u004c\u004c"); -_febg .LLE =_ebc .Get ("\u004c\u004c\u0045");_febg .Cap =_ebc .Get ("\u0043\u0061\u0070");_febg .IT =_ebc .Get ("\u0049\u0054");_febg .LLO =_ebc .Get ("\u004c\u004c\u004f");_febg .CP =_ebc .Get ("\u0043\u0050");_febg .Measure =_ebc .Get ("\u004de\u0061\u0073\u0075\u0072\u0065"); -_febg .CO =_ebc .Get ("\u0043\u004f");return &_febg ,nil ;}; +// G returns the value of the green component of the color. +func (_egege *PdfColorDeviceRGB )G ()float64 {return _egege [1]};func (_dcbab *PdfWriter )writeDocumentVersion (){if _dcbab ._bbac {_dcbab .writeString ("\u000a");}else {_dcbab .writeString (_b .Sprintf ("\u0025\u0025\u0050D\u0046\u002d\u0025\u0064\u002e\u0025\u0064\u000a",_dcbab ._efacd .Major ,_dcbab ._efacd .Minor )); +_dcbab .writeString ("\u0025\u00e2\u00e3\u00cf\u00d3\u000a");};}; -// GetContext returns the action context which contains the specific type-dependent context. -// The context represents the subaction. -func (_ef *PdfAction )GetContext ()PdfModel {if _ef ==nil {return nil ;};return _ef ._gfg ;}; +// NewPdfColorspaceLab returns a new Lab colorspace object. +func NewPdfColorspaceLab ()*PdfColorspaceLab {_bfccb :=&PdfColorspaceLab {};_bfccb .BlackPoint =[]float64 {0.0,0.0,0.0};_bfccb .Range =[]float64 {-100,100,-100,100};return _bfccb ;}; // ToPdfObject implements interface PdfModel. -func (_gfgdc *PdfAnnotationRedact )ToPdfObject ()_aff .PdfObject {_gfgdc .PdfAnnotation .ToPdfObject ();_ddac :=_gfgdc ._ccfb ;_fgdae :=_ddac .PdfObject .(*_aff .PdfObjectDictionary );_gfgdc .PdfAnnotationMarkup .appendToPdfDictionary (_fgdae );_fgdae .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0052\u0065\u0064\u0061\u0063\u0074")); -_fgdae .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_gfgdc .QuadPoints );_fgdae .SetIfNotNil ("\u0049\u0043",_gfgdc .IC );_fgdae .SetIfNotNil ("\u0052\u004f",_gfgdc .RO );_fgdae .SetIfNotNil ("O\u0076\u0065\u0072\u006c\u0061\u0079\u0054\u0065\u0078\u0074",_gfgdc .OverlayText ); -_fgdae .SetIfNotNil ("\u0052\u0065\u0070\u0065\u0061\u0074",_gfgdc .Repeat );_fgdae .SetIfNotNil ("\u0044\u0041",_gfgdc .DA );_fgdae .SetIfNotNil ("\u0051",_gfgdc .Q );return _ddac ;}; +func (_fgd *PdfAnnotationFreeText )ToPdfObject ()_dg .PdfObject {_fgd .PdfAnnotation .ToPdfObject ();_dae :=_fgd ._cdf ;_aca :=_dae .PdfObject .(*_dg .PdfObjectDictionary );_fgd .PdfAnnotationMarkup .appendToPdfDictionary (_aca );_aca .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0046\u0072\u0065\u0065\u0054\u0065\u0078\u0074")); +_aca .SetIfNotNil ("\u0044\u0041",_fgd .DA );_aca .SetIfNotNil ("\u0051",_fgd .Q );_aca .SetIfNotNil ("\u0052\u0043",_fgd .RC );_aca .SetIfNotNil ("\u0044\u0053",_fgd .DS );_aca .SetIfNotNil ("\u0043\u004c",_fgd .CL );_aca .SetIfNotNil ("\u0049\u0054",_fgd .IT ); +_aca .SetIfNotNil ("\u0042\u0045",_fgd .BE );_aca .SetIfNotNil ("\u0052\u0044",_fgd .RD );_aca .SetIfNotNil ("\u0042\u0053",_fgd .BS );_aca .SetIfNotNil ("\u004c\u0045",_fgd .LE );return _dae ;}; -// SetType sets the field button's type. Can be one of: -// - PdfFieldButtonPush for push button fields -// - PdfFieldButtonCheckbox for checkbox fields -// - PdfFieldButtonRadio for radio button fields -// This sets the field's flag appropriately. -func (_begcc *PdfFieldButton )SetType (btype ButtonType ){_cbdf :=uint32 (0);if _begcc .Ff !=nil {_cbdf =uint32 (*_begcc .Ff );};switch btype {case ButtonTypePush :_cbdf |=FieldFlagPushbutton .Mask ();case ButtonTypeRadio :_cbdf |=FieldFlagRadio .Mask (); -};_begcc .Ff =_aff .MakeInteger (int64 (_cbdf ));}; +// ColorFromPdfObjects loads the color from PDF objects. +// The first objects (if present) represent the color in underlying colorspace. The last one represents +// the name of the pattern. +func (_dedcdb *PdfColorspaceSpecialPattern )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )< 1{return nil ,_bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); +};_egdb :=&PdfColorPattern {};_adfdf ,_ddba :=objects [len (objects )-1].(*_dg .PdfObjectName );if !_ddba {_ag .Log .Debug ("\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006ft\u0020a\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",objects [len (objects )-1]); +return nil ,ErrTypeCheck ;};_egdb .PatternName =*_adfdf ;if len (objects )> 1{_cbcc :=objects [0:len (objects )-1];if _dedcdb .UnderlyingCS ==nil {_ag .Log .Debug ("P\u0061\u0074t\u0065\u0072\u006e\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0077\u0069\u0074\u0068\u0020\u0064\u0065\u0066\u0069\u006ee\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006et\u0073\u0020\u0062\u0075\u0074\u0020\u0075\u006e\u0064\u0065\u0072\u006c\u0079i\u006e\u0067\u0020\u0063\u0073\u0020\u006d\u0069\u0073\u0073\u0069n\u0067"); +return nil ,_bf .New ("\u0075n\u0064\u0065\u0072\u006cy\u0069\u006e\u0067\u0020\u0043S\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};_abde ,_abaaf :=_dedcdb .UnderlyingCS .ColorFromPdfObjects (_cbcc );if _abaaf !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055n\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0076\u0069\u0061\u0020\u0075\u006e\u0064\u0065\u0072\u006c\u0079\u0069\u006e\u0067\u0020\u0063\u0073\u003a\u0020\u0025\u0076",_abaaf ); +return nil ,_abaaf ;};_egdb .Color =_abde ;};return _egdb ,nil ;};func _fdabf (_ecbeb _dg .PdfObject ){_ag .Log .Debug ("\u006f\u0062\u006a\u003a\u0020\u0025\u0054\u0020\u0025\u0073",_ecbeb ,_ecbeb .String ());if _dgcae ,_abbec :=_ecbeb .(*_dg .PdfObjectStream ); +_abbec {_bdfa ,_gcfce :=_dg .DecodeStream (_dgcae );if _gcfce !=nil {_ag .Log .Debug ("\u0045r\u0072\u006f\u0072\u003a\u0020\u0025v",_gcfce );return ;};_ag .Log .Debug ("D\u0065\u0063\u006f\u0064\u0065\u0064\u003a\u0020\u0025\u0073",_bdfa );}else if _eggagb ,_cdfee :=_ecbeb .(*_dg .PdfIndirectObject ); +_cdfee {_ag .Log .Debug ("\u0025\u0054\u0020%\u0076",_eggagb .PdfObject ,_eggagb .PdfObject );_ag .Log .Debug ("\u0025\u0073",_eggagb .PdfObject .String ());};}; -// Val returns the value of the color. -func (_bfdac *PdfColorCalGray )Val ()float64 {return float64 (*_bfdac )}; +// PdfColorspace interface defines the common methods of a PDF colorspace. +// The colorspace defines the data storage format for each color and color representation. +// +// Device based colorspace, specified by name +// - /DeviceGray +// - /DeviceRGB +// - /DeviceCMYK +// +// CIE based colorspace specified by [name, dictionary] +// - [/CalGray dict] +// - [/CalRGB dict] +// - [/Lab dict] +// - [/ICCBased dict] +// +// Special colorspaces +// - /Pattern +// - /Indexed +// - /Separation +// - /DeviceN +// +// Work is in progress to support all colorspaces. At the moment ICCBased color spaces fall back to the alternate +// colorspace which works OK in most cases. For full color support, will need fully featured ICC support. +type PdfColorspace interface{ -// PdfAnnotationMovie represents Movie annotations. -// (Section 12.5.6.17). -type PdfAnnotationMovie struct{*PdfAnnotation ;T _aff .PdfObject ;Movie _aff .PdfObject ;A _aff .PdfObject ;}; +// String returns the PdfColorspace's name. +String ()string ; -// IsTiling specifies if the pattern is a tiling pattern. -func (_dgega *PdfPattern )IsTiling ()bool {return _dgega .PatternType ==1}; +// ImageToRGB converts an Image in a given PdfColorspace to an RGB image. +ImageToRGB (Image )(Image ,error ); -// SetDSS sets the DSS dictionary (ETSI TS 102 778-4 V1.1.1) of the current -// document revision. -func (_befb *PdfAppender )SetDSS (dss *DSS ){if dss !=nil {_befb .updateObjectsDeep (dss .ToPdfObject (),nil );};_befb ._fdbb =dss ;};func (_bcgc *PdfReader )traverseObjectData (_gdebf _aff .PdfObject )error {return _aff .ResolveReferencesDeep (_gdebf ,_bcgc ._ddcba ); -}; +// ColorToRGB converts a single color in a given PdfColorspace to an RGB color. +ColorToRGB (_dcadd PdfColor )(PdfColor ,error ); -// NewPdfAnnotationSquare returns a new square annotation. -func NewPdfAnnotationSquare ()*PdfAnnotationSquare {_bfda :=NewPdfAnnotation ();_gdgd :=&PdfAnnotationSquare {};_gdgd .PdfAnnotation =_bfda ;_gdgd .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_bfda .SetContext (_gdgd );return _gdgd ;};const (RC4_128bit =EncryptionAlgorithm (iota ); -AES_128bit ;AES_256bit ;);func (_cebef *PdfColorspaceSpecialPattern )String ()string {return "\u0050a\u0074\u0074\u0065\u0072\u006e";}; +// GetNumComponents returns the number of components in the PdfColorspace. +GetNumComponents ()int ; -// Field returns the parent form field of the widget annotation, if one exists. -// NOTE: the method returns nil if the parent form field has not been parsed. -func (_dfd *PdfAnnotationWidget )Field ()*PdfField {return _dfd ._afae };func (_gfgbe *PdfColorspaceDeviceRGB )String ()string {return "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B";}; +// ToPdfObject returns a PdfObject representation of the PdfColorspace. +ToPdfObject ()_dg .PdfObject ; -// SignatureHandler interface defines the common functionality for PDF signature handlers, which -// need to be capable of validating digital signatures and signing PDF documents. -type SignatureHandler interface{ +// ColorFromPdfObjects returns a PdfColor in the given PdfColorspace from an array of PdfObject where each +// PdfObject represents a numeric value. +ColorFromPdfObjects (_eggag []_dg .PdfObject )(PdfColor ,error ); -// IsApplicable checks if a given signature dictionary `sig` is applicable for the signature handler. -// For example a signature of type `adbe.pkcs7.detached` might not fit for a rsa.sha1 handler. -IsApplicable (_cbbcd *PdfSignature )bool ; +// ColorFromFloats returns a new PdfColor based on input color components for a given PdfColorspace. +ColorFromFloats (_gccc []float64 )(PdfColor ,error ); -// Validate validates a PDF signature against a given digest (hash) such as that determined -// for an input file. Returns validation results. -Validate (_efggf *PdfSignature ,_deeab Hasher )(SignatureValidationResult ,error ); +// DecodeArray returns the Decode array for the PdfColorSpace, i.e. the range of each component. +DecodeArray ()[]float64 ;}; -// InitSignature prepares the signature dictionary for signing. This involves setting all -// necessary fields, and also allocating sufficient space to the Contents so that the -// finalized signature can be inserted once the hash is calculated. -InitSignature (_bbfcgf *PdfSignature )error ; +// NewPdfColorPattern returns an empty color pattern. +func NewPdfColorPattern ()*PdfColorPattern {_egcba :=&PdfColorPattern {};return _egcba };func _gadec (_gdbb []byte )(_ggdfa ,_fdfeb string ,_bcgga error ){_ag .Log .Trace ("g\u0065\u0074\u0041\u0053CI\u0049S\u0065\u0063\u0074\u0069\u006fn\u0073\u003a\u0020\u0025\u0064\u0020",len (_gdbb )); +_ggca :=_caga .FindIndex (_gdbb );if _ggca ==nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0067\u0065\u0074\u0041\u0053\u0043\u0049\u0049\u0053\u0065\u0063\u0074\u0069o\u006e\u0073\u002e\u0020\u004e\u006f\u0020d\u0069\u0063\u0074\u002e"); +return "","",_dg .ErrTypeError ;};_gfcc :=_ggca [1];_cbbf :=_ga .Index (string (_gdbb [_gfcc :]),_degb );if _cbbf < 0{_ggdfa =string (_gdbb [_gfcc :]);return _ggdfa ,"",nil ;};_eecfa :=_gfcc +_cbbf ;_ggdfa =string (_gdbb [_gfcc :_eecfa ]);_cfgce :=_eecfa ; +_cbbf =_ga .Index (string (_gdbb [_cfgce :]),_cgcga );if _cbbf < 0{_ag .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0067e\u0074\u0041\u0053\u0043\u0049\u0049\u0053e\u0063\u0074\u0069\u006f\u006e\u0073\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_bcgga ); +return "","",_dg .ErrTypeError ;};_beecg :=_cfgce +_cbbf ;_fdfeb =string (_gdbb [_cfgce :_beecg ]);return _ggdfa ,_fdfeb ,nil ;}; -// NewDigest creates a new digest/hasher based on the signature dictionary and handler. -NewDigest (_acff *PdfSignature )(Hasher ,error ); +// ToPdfObject implements interface PdfModel. +func (_ecgb *PdfAnnotationWatermark )ToPdfObject ()_dg .PdfObject {_ecgb .PdfAnnotation .ToPdfObject ();_bfdc :=_ecgb ._cdf ;_cgb :=_bfdc .PdfObject .(*_dg .PdfObjectDictionary );_cgb .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0057a\u0074\u0065\u0072\u006d\u0061\u0072k")); +_cgb .SetIfNotNil ("\u0046\u0069\u0078\u0065\u0064\u0050\u0072\u0069\u006e\u0074",_ecgb .FixedPrint );return _bfdc ;}; -// Sign receives the hash `digest` (for example hash of an input file), and signs based -// on the signature dictionary `sig` and applies the signature data to the signature -// dictionary Contents field. -Sign (_afcag *PdfSignature ,_fcebc Hasher )error ;}; +// PdfActionSubmitForm represents a submitForm action. +type PdfActionSubmitForm struct{*PdfAction ;F *PdfFilespec ;Fields _dg .PdfObject ;Flags _dg .PdfObject ;};func (_aacb *PdfReader )newPdfAnnotationPolyLineFromDict (_bbab *_dg .PdfObjectDictionary )(*PdfAnnotationPolyLine ,error ){_fge :=PdfAnnotationPolyLine {}; +_dgf ,_defg :=_aacb .newPdfAnnotationMarkupFromDict (_bbab );if _defg !=nil {return nil ,_defg ;};_fge .PdfAnnotationMarkup =_dgf ;_fge .Vertices =_bbab .Get ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073");_fge .LE =_bbab .Get ("\u004c\u0045");_fge .BS =_bbab .Get ("\u0042\u0053"); +_fge .IC =_bbab .Get ("\u0049\u0043");_fge .BE =_bbab .Get ("\u0042\u0045");_fge .IT =_bbab .Get ("\u0049\u0054");_fge .Measure =_bbab .Get ("\u004de\u0061\u0073\u0075\u0072\u0065");return &_fge ,nil ;}; -// GenerateHashMaps generates DSS hashmaps for Certificates, OCSPs and CRLs to make sure they are unique. -func (_faec *DSS )GenerateHashMaps ()error {_bggbc ,_eade :=_faec .generateHashMap (_faec .Certs );if _eade !=nil {return _eade ;};_edcf ,_eade :=_faec .generateHashMap (_faec .OCSPs );if _eade !=nil {return _eade ;};_gcfa ,_eade :=_faec .generateHashMap (_faec .CRLs ); -if _eade !=nil {return _eade ;};_faec ._eddd =_bggbc ;_faec ._eaga =_edcf ;_faec ._abba =_gcfa ;return nil ;};func _fada (_bcba ,_beed string )string {if _ba .Contains (_bcba ,"\u002b"){_cbabd :=_ba .Split (_bcba ,"\u002b");if len (_cbabd )==2{_bcba =_cbabd [1]; -};};return _beed +"\u002b"+_bcba ;}; +// ContentStreamWrapper wraps the Page's contentstream into q ... Q blocks. +type ContentStreamWrapper interface{WrapContentStream (_afgf *PdfPage )error ;}; -// ToPdfObject implements interface PdfModel. -func (_aaed *PdfActionGoTo )ToPdfObject ()_aff .PdfObject {_aaed .PdfAction .ToPdfObject ();_agc :=_aaed ._df ;_fegb :=_agc .PdfObject .(*_aff .PdfObjectDictionary );_fegb .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeGoTo )));_fegb .SetIfNotNil ("\u0044",_aaed .D ); -return _agc ;}; +// NewPdfActionRendition returns a new "rendition" action. +func NewPdfActionRendition ()*PdfActionRendition {_dc :=NewPdfAction ();_eade :=&PdfActionRendition {};_eade .PdfAction =_dc ;_dc .SetContext (_eade );return _eade ;};var _addac =map[string ]string {"\u0053\u0079\u006d\u0062\u006f\u006c":"\u0053\u0079\u006d\u0062\u006f\u006c\u0045\u006e\u0063o\u0064\u0069\u006e\u0067","\u005a\u0061\u0070f\u0044\u0069\u006e\u0067\u0062\u0061\u0074\u0073":"Z\u0061p\u0066\u0044\u0069\u006e\u0067\u0062\u0061\u0074s\u0045\u006e\u0063\u006fdi\u006e\u0067"}; -// GetXObjectByName returns the XObject with the specified keyName and the object type. -func (_ddbbf *PdfPageResources )GetXObjectByName (keyName _aff .PdfObjectName )(*_aff .PdfObjectStream ,XObjectType ){if _ddbbf .XObject ==nil {return nil ,XObjectTypeUndefined ;};_cfgagc ,_daffb :=_aff .TraceToDirectObject (_ddbbf .XObject ).(*_aff .PdfObjectDictionary ); -if !_daffb {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0021\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_aff .TraceToDirectObject (_ddbbf .XObject )); -return nil ,XObjectTypeUndefined ;};if _fdcb :=_cfgagc .Get (keyName );_fdcb !=nil {_afgfa ,_gdaea :=_aff .GetStream (_fdcb );if !_gdaea {_adg .Log .Debug ("X\u004f\u0062\u006a\u0065\u0063\u0074 \u006e\u006f\u0074\u0020\u0070\u006fi\u006e\u0074\u0069\u006e\u0067\u0020\u0074o\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020%\u0054",_fdcb ); -return nil ,XObjectTypeUndefined ;};_fdcaa :=_afgfa .PdfObjectDictionary ;_eeafb ,_gdaea :=_aff .TraceToDirectObject (_fdcaa .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")).(*_aff .PdfObjectName );if !_gdaea {_adg .Log .Debug ("\u0058\u004fbj\u0065\u0063\u0074 \u0053\u0075\u0062\u0074ype\u0020no\u0074\u0020\u0061\u0020\u004e\u0061\u006de,\u0020\u0064\u0069\u0063\u0074\u003a\u0020%\u0073",_fdcaa .String ()); -return nil ,XObjectTypeUndefined ;};if *_eeafb =="\u0049\u006d\u0061g\u0065"{return _afgfa ,XObjectTypeImage ;}else if *_eeafb =="\u0046\u006f\u0072\u006d"{return _afgfa ,XObjectTypeForm ;}else if *_eeafb =="\u0050\u0053"{return _afgfa ,XObjectTypePS ; -}else {_adg .Log .Debug ("\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0053\u0075b\u0074\u0079\u0070\u0065\u0020\u006e\u006ft\u0020\u006b\u006e\u006f\u0077\u006e\u0020\u0028\u0025\u0073\u0029",*_eeafb );return nil ,XObjectTypeUndefined ;};}else {return nil ,XObjectTypeUndefined ; -};};func (_cbedd *pdfCIDFontType2 )getFontDescriptor ()*PdfFontDescriptor {return _cbedd ._ggca };func (_bbbg *PdfReader )newPdfActionFromIndirectObject (_ggfb *_aff .PdfIndirectObject )(*PdfAction ,error ){_bac ,_fcf :=_ggfb .PdfObject .(*_aff .PdfObjectDictionary ); -if !_fcf {return nil ,_e .Errorf ("\u0061\u0063\u0074\u0069\u006f\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u006e\u006f\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};if model :=_bbbg ._cfadc .GetModelFromPrimitive (_bac );model !=nil {_aagg ,_fbg :=model .(*PdfAction );if !_fbg {return nil ,_e .Errorf ("\u0063\u0061c\u0068\u0065\u0064\u0020\u006d\u006f\u0064\u0065\u006c\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0050\u0044\u0046\u0020\u0061\u0063ti\u006f\u006e"); -};return _aagg ,nil ;};_aec :=&PdfAction {};_aec ._df =_ggfb ;_bbbg ._cfadc .Register (_bac ,_aec );if _afcf :=_bac .Get ("\u0054\u0079\u0070\u0065");_afcf !=nil {_aecd ,_ffg :=_afcf .(*_aff .PdfObjectName );if !_ffg {_adg .Log .Trace ("\u0049\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u0021\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u004e\u0061m\u0065",_afcf ); -}else {if *_aecd !="\u0041\u0063\u0074\u0069\u006f\u006e"{_adg .Log .Trace ("\u0055\u006e\u0073u\u0073\u0070\u0065\u0063t\u0065\u0064\u0020\u0054\u0079\u0070\u0065 \u0021\u003d\u0020\u0041\u0063\u0074\u0069\u006f\u006e\u0020\u0028\u0025\u0073\u0029",*_aecd ); -};_aec .Type =_aecd ;};};if _gge :=_bac .Get ("\u004e\u0065\u0078\u0074");_gge !=nil {_aec .Next =_gge ;};if _fdb :=_bac .Get ("\u0053");_fdb !=nil {_aec .S =_fdb ;};_dbff ,_faab :=_aec .S .(*_aff .PdfObjectName );if !_faab {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065\u0020\u0021\u003d\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0025\u0054\u0029",_aec .S ); -return nil ,_e .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0053\u0020\u006f\u0062\u006a\u0065c\u0074 \u0074y\u0070e\u0020\u0021\u003d\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0025\u0054\u0029",_aec .S );};_cfc :=PdfActionType (_dbff .String ()); -switch _cfc {case ActionTypeGoTo :_abf ,_fegd :=_bbbg .newPdfActionGotoFromDict (_bac );if _fegd !=nil {return nil ,_fegd ;};_abf .PdfAction =_aec ;_aec ._gfg =_abf ;return _aec ,nil ;case ActionTypeGoToR :_ggc ,_cga :=_bbbg .newPdfActionGotoRFromDict (_bac ); -if _cga !=nil {return nil ,_cga ;};_ggc .PdfAction =_aec ;_aec ._gfg =_ggc ;return _aec ,nil ;case ActionTypeGoToE :_geb ,_dcb :=_bbbg .newPdfActionGotoEFromDict (_bac );if _dcb !=nil {return nil ,_dcb ;};_geb .PdfAction =_aec ;_aec ._gfg =_geb ;return _aec ,nil ; -case ActionTypeLaunch :_dcg ,_acce :=_bbbg .newPdfActionLaunchFromDict (_bac );if _acce !=nil {return nil ,_acce ;};_dcg .PdfAction =_aec ;_aec ._gfg =_dcg ;return _aec ,nil ;case ActionTypeThread :_cgfe ,_bcag :=_bbbg .newPdfActionThreadFromDict (_bac ); -if _bcag !=nil {return nil ,_bcag ;};_cgfe .PdfAction =_aec ;_aec ._gfg =_cgfe ;return _aec ,nil ;case ActionTypeURI :_ddc ,_dff :=_bbbg .newPdfActionURIFromDict (_bac );if _dff !=nil {return nil ,_dff ;};_ddc .PdfAction =_aec ;_aec ._gfg =_ddc ;return _aec ,nil ; -case ActionTypeSound :_dae ,_ebaf :=_bbbg .newPdfActionSoundFromDict (_bac );if _ebaf !=nil {return nil ,_ebaf ;};_dae .PdfAction =_aec ;_aec ._gfg =_dae ;return _aec ,nil ;case ActionTypeMovie :_dcd ,_faef :=_bbbg .newPdfActionMovieFromDict (_bac );if _faef !=nil {return nil ,_faef ; -};_dcd .PdfAction =_aec ;_aec ._gfg =_dcd ;return _aec ,nil ;case ActionTypeHide :_cb ,_gag :=_bbbg .newPdfActionHideFromDict (_bac );if _gag !=nil {return nil ,_gag ;};_cb .PdfAction =_aec ;_aec ._gfg =_cb ;return _aec ,nil ;case ActionTypeNamed :_gee ,_fgb :=_bbbg .newPdfActionNamedFromDict (_bac ); -if _fgb !=nil {return nil ,_fgb ;};_gee .PdfAction =_aec ;_aec ._gfg =_gee ;return _aec ,nil ;case ActionTypeSubmitForm :_abgd ,_faed :=_bbbg .newPdfActionSubmitFormFromDict (_bac );if _faed !=nil {return nil ,_faed ;};_abgd .PdfAction =_aec ;_aec ._gfg =_abgd ; -return _aec ,nil ;case ActionTypeResetForm :_fbe ,_dfa :=_bbbg .newPdfActionResetFormFromDict (_bac );if _dfa !=nil {return nil ,_dfa ;};_fbe .PdfAction =_aec ;_aec ._gfg =_fbe ;return _aec ,nil ;case ActionTypeImportData :_cfcd ,_efff :=_bbbg .newPdfActionImportDataFromDict (_bac ); -if _efff !=nil {return nil ,_efff ;};_cfcd .PdfAction =_aec ;_aec ._gfg =_cfcd ;return _aec ,nil ;case ActionTypeSetOCGState :_bef ,_bdc :=_bbbg .newPdfActionSetOCGStateFromDict (_bac );if _bdc !=nil {return nil ,_bdc ;};_bef .PdfAction =_aec ;_aec ._gfg =_bef ; -return _aec ,nil ;case ActionTypeRendition :_aaee ,_ffed :=_bbbg .newPdfActionRenditionFromDict (_bac );if _ffed !=nil {return nil ,_ffed ;};_aaee .PdfAction =_aec ;_aec ._gfg =_aaee ;return _aec ,nil ;case ActionTypeTrans :_ffeg ,_gfgc :=_bbbg .newPdfActionTransFromDict (_bac ); -if _gfgc !=nil {return nil ,_gfgc ;};_ffeg .PdfAction =_aec ;_aec ._gfg =_ffeg ;return _aec ,nil ;case ActionTypeGoTo3DView :_agf ,_eeee :=_bbbg .newPdfActionGoTo3DViewFromDict (_bac );if _eeee !=nil {return nil ,_eeee ;};_agf .PdfAction =_aec ;_aec ._gfg =_agf ; -return _aec ,nil ;case ActionTypeJavaScript :_abe ,_fegde :=_bbbg .newPdfActionJavaScriptFromDict (_bac );if _fegde !=nil {return nil ,_fegde ;};_abe .PdfAction =_aec ;_aec ._gfg =_abe ;return _aec ,nil ;};_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006eg\u0020u\u006ek\u006eo\u0077\u006e\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0073",_cfc ); -return nil ,nil ;}; -// G returns the value of the green component of the color. -func (_bgdge *PdfColorDeviceRGB )G ()float64 {return _bgdge [1]}; +// ToPdfObject implements interface PdfModel. +func (_eec *PdfAnnotationSquare )ToPdfObject ()_dg .PdfObject {_eec .PdfAnnotation .ToPdfObject ();_gaf :=_eec ._cdf ;_fdba :=_gaf .PdfObject .(*_dg .PdfObjectDictionary );if _eec .PdfAnnotationMarkup !=nil {_eec .PdfAnnotationMarkup .appendToPdfDictionary (_fdba ); +};_fdba .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0053\u0071\u0075\u0061\u0072\u0065"));_fdba .SetIfNotNil ("\u0042\u0053",_eec .BS );_fdba .SetIfNotNil ("\u0049\u0043",_eec .IC );_fdba .SetIfNotNil ("\u0042\u0045",_eec .BE ); +_fdba .SetIfNotNil ("\u0052\u0044",_eec .RD );return _gaf ;}; -// String returns a string describing the font descriptor. -func (_dcfca *PdfFontDescriptor )String ()string {var _aedff []string ;if _dcfca .FontName !=nil {_aedff =append (_aedff ,_dcfca .FontName .String ());};if _dcfca .FontFamily !=nil {_aedff =append (_aedff ,_dcfca .FontFamily .String ());};if _dcfca .fontFile !=nil {_aedff =append (_aedff ,_dcfca .fontFile .String ()); -};if _dcfca ._ddffd !=nil {_aedff =append (_aedff ,_dcfca ._ddffd .String ());};_aedff =append (_aedff ,_e .Sprintf ("\u0046\u006f\u006et\u0046\u0069\u006c\u0065\u0033\u003d\u0025\u0074",_dcfca .FontFile3 !=nil ));return _e .Sprintf ("\u0046\u004f\u004e\u0054_D\u0045\u0053\u0043\u0052\u0049\u0050\u0054\u004f\u0052\u007b\u0025\u0073\u007d",_ba .Join (_aedff ,"\u002c\u0020")); -};func (_bdcb *PdfReader )newPdfAnnotationCircleFromDict (_bbfg *_aff .PdfObjectDictionary )(*PdfAnnotationCircle ,error ){_bgc :=PdfAnnotationCircle {};_gdbe ,_efef :=_bdcb .newPdfAnnotationMarkupFromDict (_bbfg );if _efef !=nil {return nil ,_efef ;}; -_bgc .PdfAnnotationMarkup =_gdbe ;_bgc .BS =_bbfg .Get ("\u0042\u0053");_bgc .IC =_bbfg .Get ("\u0049\u0043");_bgc .BE =_bbfg .Get ("\u0042\u0045");_bgc .RD =_bbfg .Get ("\u0052\u0044");return &_bgc ,nil ;};func (_egaa *PdfReader )newPdfAnnotationWatermarkFromDict (_fcfdf *_aff .PdfObjectDictionary )(*PdfAnnotationWatermark ,error ){_gacc :=PdfAnnotationWatermark {}; -_gacc .FixedPrint =_fcfdf .Get ("\u0046\u0069\u0078\u0065\u0064\u0050\u0072\u0069\u006e\u0074");return &_gacc ,nil ;}; +// SetName sets the `Name` field of the signature. +func (_eaag *PdfSignature )SetName (name string ){_eaag .Name =_dg .MakeString (name )}; -// GetCapHeight returns the CapHeight of the font `descriptor`. -func (_fedd *PdfFontDescriptor )GetCapHeight ()(float64 ,error ){return _aff .GetNumberAsFloat (_fedd .CapHeight );};func (_dda *PdfReader )newPdfActionJavaScriptFromDict (_dddc *_aff .PdfObjectDictionary )(*PdfActionJavaScript ,error ){return &PdfActionJavaScript {JS :_dddc .Get ("\u004a\u0053")},nil ; -}; +// Clear clears flag fl from the flag and returns the resulting flag. +func (_fgbc FieldFlag )Clear (fl FieldFlag )FieldFlag {return FieldFlag (_fgbc .Mask ()&^fl .Mask ())}; -// String implements interface PdfObject. -func (_dfg *PdfAction )String ()string {_bfe ,_aag :=_dfg .ToPdfObject ().(*_aff .PdfIndirectObject );if _aag {return _e .Sprintf ("\u0025\u0054\u003a\u0020\u0025\u0073",_dfg ._gfg ,_bfe .PdfObject .String ());};return "";}; +// NewPdfAnnotationPopup returns a new popup annotation. +func NewPdfAnnotationPopup ()*PdfAnnotationPopup {_egad :=NewPdfAnnotation ();_cebf :=&PdfAnnotationPopup {};_cebf .PdfAnnotation =_egad ;_egad .SetContext (_cebf );return _cebf ;}; -// ToGray returns a PdfColorDeviceGray color based on the current RGB color. -func (_gddg *PdfColorDeviceRGB )ToGray ()*PdfColorDeviceGray {_gfff :=0.3*_gddg .R ()+0.59*_gddg .G ()+0.11*_gddg .B ();_gfff =_cf .Min (_cf .Max (_gfff ,0.0),1.0);return NewPdfColorDeviceGray (_gfff );}; +// SetAction sets the PDF action for the annotation link. +func (_fgfa *PdfAnnotationLink )SetAction (action *PdfAction ){_fgfa ._ece =action ;if action ==nil {_fgfa .A =nil ;};}; -// CheckAccessRights checks access rights and permissions for a specified password. If either user/owner -// password is specified, full rights are granted, otherwise the access rights are specified by the -// Permissions flag. -// -// The bool flag indicates that the user can access and view the file. -// The AccessPermissions shows what access the user has for editing etc. -// An error is returned if there was a problem performing the authentication. -func (_gdceb *PdfReader )CheckAccessRights (password []byte )(bool ,_eec .Permissions ,error ){return _gdceb ._gaece .CheckAccessRights (password );}; +// DecodeArray returns the range of color component values in DeviceGray colorspace. +func (_cebfg *PdfColorspaceDeviceGray )DecodeArray ()[]float64 {return []float64 {0,1.0}}; -// PdfAnnotationCaret represents Caret annotations. -// (Section 12.5.6.11). -type PdfAnnotationCaret struct{*PdfAnnotation ;*PdfAnnotationMarkup ;RD _aff .PdfObject ;Sy _aff .PdfObject ;}; +// Fill populates `form` with values provided by `provider`. +func (_accef *PdfAcroForm )Fill (provider FieldValueProvider )error {return _accef .fill (provider ,nil )}; -// ImageToRGB converts image in CalGray color space to RGB (A, B, C -> X, Y, Z). -func (_ecf *PdfColorspaceCalGray )ImageToRGB (img Image )(Image ,error ){_adc :=_aae .NewReader (img .getBase ());_afcg :=_gd .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),3,nil ,nil ,nil );_egeba :=_aae .NewWriter (_afcg ); -_deegf :=_cf .Pow (2,float64 (img .BitsPerComponent ))-1;_bbaef :=make ([]uint32 ,3);var (_fdcd uint32 ;ANorm ,X ,Y ,Z ,_fdebf ,_bbdg ,_eagd float64 ;_fafg error ;);for {_fdcd ,_fafg =_adc .ReadSample ();if _fafg ==_ega .EOF {break ;}else if _fafg !=nil {return img ,_fafg ; -};ANorm =float64 (_fdcd )/_deegf ;X =_ecf .WhitePoint [0]*_cf .Pow (ANorm ,_ecf .Gamma );Y =_ecf .WhitePoint [1]*_cf .Pow (ANorm ,_ecf .Gamma );Z =_ecf .WhitePoint [2]*_cf .Pow (ANorm ,_ecf .Gamma );_fdebf =3.240479*X +-1.537150*Y +-0.498535*Z ;_bbdg =-0.969256*X +1.875992*Y +0.041556*Z ; -_eagd =0.055648*X +-0.204043*Y +1.057311*Z ;_fdebf =_cf .Min (_cf .Max (_fdebf ,0),1.0);_bbdg =_cf .Min (_cf .Max (_bbdg ,0),1.0);_eagd =_cf .Min (_cf .Max (_eagd ,0),1.0);_bbaef [0]=uint32 (_fdebf *_deegf );_bbaef [1]=uint32 (_bbdg *_deegf );_bbaef [2]=uint32 (_eagd *_deegf ); -if _fafg =_egeba .WriteSamples (_bbaef );_fafg !=nil {return img ,_fafg ;};};return _efecb (&_afcg ),nil ;}; +// SetPdfProducer sets the Producer attribute of the output PDF. +func SetPdfProducer (producer string ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_faff =producer };func (_cdgfgc *PdfAcroForm )filteredFields (_egegd FieldFilterFunc ,_agfab bool )[]*PdfField {if _cdgfgc ==nil {return nil ;};return _abcgf (_cdgfgc .Fields ,_egegd ,_agfab ); +}; -// DecodeArray returns the range of color component values in CalRGB colorspace. -func (_efdb *PdfColorspaceCalRGB )DecodeArray ()[]float64 {return []float64 {0.0,1.0,0.0,1.0,0.0,1.0};}; +// NewPdfFilespecFromObj creates and returns a new PdfFilespec object. +func NewPdfFilespecFromObj (obj _dg .PdfObject )(*PdfFilespec ,error ){_cbfbg :=&PdfFilespec {};var _ffba *_dg .PdfObjectDictionary ;if _eaddd ,_cbgd :=_dg .GetIndirect (obj );_cbgd {_cbfbg ._bcbe =_eaddd ;_bcee ,_bddc :=_dg .GetDict (_eaddd .PdfObject ); +if !_bddc {_ag .Log .Debug ("\u004f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074i\u006f\u006e\u0061\u0072\u0079\u0020\u0074y\u0070\u0065");return nil ,_dg .ErrTypeError ;};_ffba =_bcee ;}else if _gafb ,_bbgfa :=_dg .GetDict (obj ); +_bbgfa {_cbfbg ._bcbe =_gafb ;_ffba =_gafb ;}else {_ag .Log .Debug ("O\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0075\u006e\u0065\u0078\u0070e\u0063\u0074\u0065d\u0020(\u0025\u0054\u0029",obj );return nil ,_dg .ErrTypeError ;};if _ffba ==nil {_ag .Log .Debug ("\u0044i\u0063t\u0069\u006f\u006e\u0061\u0072y\u0020\u006di\u0073\u0073\u0069\u006e\u0067"); +return nil ,_bf .New ("\u0064\u0069\u0063t\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};if _ggba :=_ffba .Get ("\u0054\u0079\u0070\u0065");_ggba !=nil {_eaafb ,_ecdef :=_ggba .(*_dg .PdfObjectName );if !_ecdef {_ag .Log .Trace ("\u0049\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u0021\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u004e\u0061m\u0065",_ggba ); +}else {if *_eaafb !="\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"{_ag .Log .Trace ("\u0055\u006e\u0073\u0075\u0073\u0070e\u0063\u0074\u0065\u0064\u0020\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020F\u0069\u006c\u0065\u0073\u0070\u0065\u0063 \u0028\u0025\u0073\u0029",*_eaafb ); +};};};if _gdbd :=_ffba .Get ("\u0046\u0053");_gdbd !=nil {_cbfbg .FS =_gdbd ;};if _ccfd :=_ffba .Get ("\u0046");_ccfd !=nil {_cbfbg .F =_ccfd ;};if _ecff :=_ffba .Get ("\u0055\u0046");_ecff !=nil {_cbfbg .UF =_ecff ;};if _gcedg :=_ffba .Get ("\u0044\u004f\u0053"); +_gcedg !=nil {_cbfbg .DOS =_gcedg ;};if _cdebb :=_ffba .Get ("\u004d\u0061\u0063");_cdebb !=nil {_cbfbg .Mac =_cdebb ;};if _cgcfb :=_ffba .Get ("\u0055\u006e\u0069\u0078");_cgcfb !=nil {_cbfbg .Unix =_cgcfb ;};if _cgce :=_ffba .Get ("\u0049\u0044");_cgce !=nil {_cbfbg .ID =_cgce ; +};if _abdgeb :=_ffba .Get ("\u0056");_abdgeb !=nil {_cbfbg .V =_abdgeb ;};if _aabe :=_ffba .Get ("\u0045\u0046");_aabe !=nil {_cbfbg .EF =_aabe ;};if _ebcff :=_ffba .Get ("\u0052\u0046");_ebcff !=nil {_cbfbg .RF =_ebcff ;};if _ecafg :=_ffba .Get ("\u0044\u0065\u0073\u0063"); +_ecafg !=nil {_cbfbg .Desc =_ecafg ;};if _debed :=_ffba .Get ("\u0043\u0049");_debed !=nil {_cbfbg .CI =_debed ;};return _cbfbg ,nil ;}; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// components. The slice should contain a single PdfObjectFloat element. -func (_efdbf *PdfColorspaceSpecialSeparation )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_bcae ,_ecdg :=_aff .GetNumbersAsFloat (objects ); -if _ecdg !=nil {return nil ,_ecdg ;};return _efdbf .ColorFromFloats (_bcae );}; +// ToPdfObject implements interface PdfModel. +func (_add *PdfActionGoTo3DView )ToPdfObject ()_dg .PdfObject {_add .PdfAction .ToPdfObject ();_fcc :=_add ._cbd ;_eac :=_fcc .PdfObject .(*_dg .PdfObjectDictionary );_eac .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeGoTo3DView )));_eac .SetIfNotNil ("\u0054\u0041",_add .TA ); +_eac .SetIfNotNil ("\u0056",_add .V );return _fcc ;}; -// PdfActionResetForm represents a resetForm action. -type PdfActionResetForm struct{*PdfAction ;Fields _aff .PdfObject ;Flags _aff .PdfObject ;}; +// GetContainingPdfObject returns the XObject Form's containing object (indirect object). +func (_cbfcg *XObjectForm )GetContainingPdfObject ()_dg .PdfObject {return _cbfcg ._ebaeb };func (_abecg *PdfReader )buildNameNodes (_afdc *_dg .PdfIndirectObject ,_edgda map[_dg .PdfObject ]struct{})error {if _afdc ==nil {return nil ;};if _ ,_ggfg :=_edgda [_afdc ]; +_ggfg {_ag .Log .Debug ("\u0043\u0079\u0063l\u0069\u0063\u0020\u0072e\u0063\u0075\u0072\u0073\u0069\u006f\u006e,\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0028\u0025\u0076\u0029",_afdc .ObjectNumber );return nil ;};_edgda [_afdc ]=struct{}{}; +_ceebbb ,_fgeff :=_afdc .PdfObject .(*_dg .PdfObjectDictionary );if !_fgeff {return _bf .New ("n\u006f\u0064\u0065\u0020no\u0074 \u0061\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079");};if _dcdg ,_ddgaa :=_dg .GetDict (_ceebbb .Get ("\u0044\u0065\u0073t\u0073")); +_ddgaa {_fceb ,_cfgbd :=_dg .GetArray (_dcdg .Get ("\u004b\u0069\u0064\u0073"));if !_cfgbd {return _bf .New ("\u0049n\u0076\u0061\u006c\u0069d\u0020\u004b\u0069\u0064\u0073 \u0061r\u0072a\u0079\u0020\u006f\u0062\u006a\u0065\u0063t");};_ag .Log .Trace ("\u004b\u0069\u0064\u0073\u003a\u0020\u0025\u0073",_fceb ); +for _fcfe ,_bcgcd :=range _fceb .Elements (){_feafb ,_gcgcce :=_dg .GetIndirect (_bcgcd );if !_gcgcce {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u0068\u0069\u006c\u0064\u0020n\u006f\u0074\u0020\u0069\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u002d \u0028\u0025\u0073\u0029",_feafb ); +return _bf .New ("\u0063h\u0069\u006c\u0064\u0020n\u006f\u0074\u0020\u0069\u006ed\u0069r\u0065c\u0074\u0020\u006f\u0062\u006a\u0065\u0063t");};_fceb .Set (_fcfe ,_feafb );_fggec :=_abecg .buildNameNodes (_feafb ,_edgda );if _fggec !=nil {return _fggec ; +};};};if _eccgd ,_ddcdc :=_dg .GetDict (_ceebbb );_ddcdc {if !_dg .IsNullObject (_eccgd .Get ("\u004b\u0069\u0064\u0073")){if _acadg ,_cfac :=_dg .GetArray (_eccgd .Get ("\u004b\u0069\u0064\u0073"));_cfac {for _dfafg ,_eaeec :=range _acadg .Elements (){if _agdfe ,_cged :=_dg .GetIndirect (_eaeec ); +_cged {_acadg .Set (_dfafg ,_agdfe );_gffeg :=_abecg .buildNameNodes (_agdfe ,_edgda );if _gffeg !=nil {return _gffeg ;};};};};};};return nil ;}; -// ToPdfObject implements interface PdfModel. -func (_edb *PdfActionGoToR )ToPdfObject ()_aff .PdfObject {_edb .PdfAction .ToPdfObject ();_dc :=_edb ._df ;_cde :=_dc .PdfObject .(*_aff .PdfObjectDictionary );_cde .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeGoToR )));if _edb .F !=nil {_cde .Set ("\u0046",_edb .F .ToPdfObject ()); -};_cde .SetIfNotNil ("\u0044",_edb .D );_cde .SetIfNotNil ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw",_edb .NewWindow );return _dc ;}; +// NewPdfDateFromTime will create a PdfDate based on the given time +func NewPdfDateFromTime (timeObj _a .Time )(PdfDate ,error ){_efefee :=timeObj .Format ("\u002d\u0030\u0037\u003a\u0030\u0030");_ffgab ,_ :=_fbb .ParseInt (_efefee [1:3],10,32);_edeec ,_ :=_fbb .ParseInt (_efefee [4:6],10,32);return PdfDate {_bgfdb :int64 (timeObj .Year ()),_gbbge :int64 (timeObj .Month ()),_cbad :int64 (timeObj .Day ()),_cade :int64 (timeObj .Hour ()),_ccgbg :int64 (timeObj .Minute ()),_aacfe :int64 (timeObj .Second ()),_ggbdg :_efefee [0],_bdde :_ffgab ,_gafe :_edeec },nil ; +}; -// AllFields returns a flattened list of all fields in the form. -func (_edbcf *PdfAcroForm )AllFields ()[]*PdfField {if _edbcf ==nil {return nil ;};var _fdcdg []*PdfField ;if _edbcf .Fields !=nil {for _ ,_dfbc :=range *_edbcf .Fields {_fdcdg =append (_fdcdg ,_fffb (_dfbc )...);};};return _fdcdg ;}; +// ToPdfObject implements interface PdfModel. +func (_eda *PdfAnnotationSound )ToPdfObject ()_dg .PdfObject {_eda .PdfAnnotation .ToPdfObject ();_gcea :=_eda ._cdf ;_aegb :=_gcea .PdfObject .(*_dg .PdfObjectDictionary );_eda .PdfAnnotationMarkup .appendToPdfDictionary (_aegb );_aegb .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0053\u006f\u0075n\u0064")); +_aegb .SetIfNotNil ("\u0053\u006f\u0075n\u0064",_eda .Sound );_aegb .SetIfNotNil ("\u004e\u0061\u006d\u0065",_eda .Name );return _gcea ;}; -// SetContext sets the sub action (context). -func (_fa *PdfAction )SetContext (ctx PdfModel ){_fa ._gfg =ctx }; +// SetSubtype sets the Subtype S for given PdfOutputIntent. +func (_aadgf *PdfOutputIntent )SetSubtype (subtype PdfOutputIntentType )error {if !subtype .IsValid (){return _bf .New ("\u0070\u0072o\u0076\u0069\u0064\u0065d\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u004f\u0075t\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0053\u0075b\u0054\u0079\u0070\u0065"); +};_aadgf .S =subtype ;return nil ;}; -// GetNumComponents returns the number of color components. -func (_deed *PdfColorspaceICCBased )GetNumComponents ()int {return _deed .N }; +// PdfActionGoToR represents a GoToR action. +type PdfActionGoToR struct{*PdfAction ;F *PdfFilespec ;D _dg .PdfObject ;NewWindow _dg .PdfObject ;}; -// PdfAnnotationRedact represents Redact annotations. -// (Section 12.5.6.23). -type PdfAnnotationRedact struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _aff .PdfObject ;IC _aff .PdfObject ;RO _aff .PdfObject ;OverlayText _aff .PdfObject ;Repeat _aff .PdfObject ;DA _aff .PdfObject ;Q _aff .PdfObject ;}; +// AddPage adds a page to the PDF file. The new page should be an indirect object. +func (_fbgdc *PdfWriter )AddPage (page *PdfPage )error {const _geegdg ="\u006d\u006f\u0064el\u003a\u0050\u0064\u0066\u0057\u0072\u0069\u0074\u0065\u0072\u002e\u0041\u0064\u0064\u0050\u0061\u0067\u0065";_dccea (page );_dfaba :=page .ToPdfObject ();_ag .Log .Trace ("\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d"); +_ag .Log .Trace ("\u0041p\u0070\u0065\u006e\u0064i\u006e\u0067\u0020\u0074\u006f \u0070a\u0067e\u0020\u006c\u0069\u0073\u0074\u0020\u0025T",_dfaba );_febcb ,_abcgc :=_dg .GetIndirect (_dfaba );if !_abcgc {return _bf .New ("\u0070\u0061\u0067\u0065\u0020\u0073h\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u006fb\u006a\u0065\u0063\u0074"); +};_ag .Log .Trace ("\u0025\u0073",_febcb );_ag .Log .Trace ("\u0025\u0073",_febcb .PdfObject );_gfeca ,_abcgc :=_dg .GetDict (_febcb .PdfObject );if !_abcgc {return _bf .New ("\u0070\u0061\u0067e \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068o\u0075l\u0064 \u0062e\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_dgbc ,_abcgc :=_dg .GetName (_gfeca .Get ("\u0054\u0079\u0070\u0065"));if !_abcgc {return _b .Errorf ("\u0070\u0061\u0067\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0054y\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020t\u0079\u0070\u0065\u0020\u006e\u0061m\u0065\u0020\u0028%\u0054\u0029",_gfeca .Get ("\u0054\u0079\u0070\u0065")); +};if _dgbc .String ()!="\u0050\u0061\u0067\u0065"{return _bf .New ("\u0066\u0069e\u006c\u0064\u0020\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020\u0050\u0061\u0067\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069re\u0064\u0029");};_babcg :=[]_dg .PdfObjectName {"\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s","\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078","\u0043r\u006f\u0070\u0042\u006f\u0078","\u0052\u006f\u0074\u0061\u0074\u0065"}; +_edcgb ,_bddfb :=_dg .GetIndirect (_gfeca .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));_ag .Log .Trace ("P\u0061g\u0065\u0020\u0050\u0061\u0072\u0065\u006e\u0074:\u0020\u0025\u0054\u0020(%\u0076\u0029",_gfeca .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"),_bddfb ); +for _bddfb {_ag .Log .Trace ("\u0050a\u0067e\u0020\u0050\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_edcgb );_bdcac ,_eadga :=_dg .GetDict (_edcgb .PdfObject );if !_eadga {return _bf .New ("i\u006e\u0076\u0061\u006cid\u0020P\u0061\u0072\u0065\u006e\u0074 \u006f\u0062\u006a\u0065\u0063\u0074"); +};for _ ,_dcdge :=range _babcg {_ag .Log .Trace ("\u0046\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_dcdge );if _gfeca .Get (_dcdge )!=nil {_ag .Log .Trace ("\u002d \u0070a\u0067\u0065\u0020\u0068\u0061s\u0020\u0061l\u0072\u0065\u0061\u0064\u0079");continue ; +};if _dcgbe :=_bdcac .Get (_dcdge );_dcgbe !=nil {_ag .Log .Trace ("\u0049\u006e\u0068\u0065ri\u0074\u0069\u006e\u0067\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_dcdge );_gfeca .Set (_dcdge ,_dcgbe );};};_edcgb ,_bddfb =_dg .GetIndirect (_bdcac .Get ("\u0050\u0061\u0072\u0065\u006e\u0074")); +_ag .Log .Trace ("\u004ee\u0078t\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_bdcac .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));};_ag .Log .Trace ("\u0054\u0072\u0061\u0076\u0065\u0072\u0073\u0061\u006c \u0064\u006f\u006e\u0065"); +_gfeca .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_fbgdc ._gbgb );_febcb .PdfObject =_gfeca ;_abccg ,_abcgc :=_dg .GetDict (_fbgdc ._gbgb .PdfObject );if !_abcgc {return _bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0020(\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0029"); +};_deecb ,_abcgc :=_dg .GetArray (_abccg .Get ("\u004b\u0069\u0064\u0073"));if !_abcgc {return _bf .New ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0050\u0061g\u0065\u0073\u0020\u004b\u0069\u0064\u0073\u0020o\u0062\u006a\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079\u0029"); +};_deecb .Append (_febcb );_fbgdc ._fegdf [_gfeca ]=struct{}{};_edecd ,_abcgc :=_dg .GetInt (_abccg .Get ("\u0043\u006f\u0075n\u0074"));if !_abcgc {return _bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064 \u0050\u0061\u0067e\u0073\u0020\u0043\u006fu\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0029"); +};*_edecd =*_edecd +1;if page ._cbbcc ==nil {_bbacc :=_cfb .Track (_fbgdc ._gdfbg ,_geegdg );if _bbacc !=nil {return _bbacc ;};}else {_dfegec :=_cfb .Track (page ._cbbcc ._aafgg ,_geegdg );if _dfegec !=nil {return _dfegec ;};};_fbgdc .addObject (_febcb ); +_efagd :=_fbgdc .addObjects (_gfeca );if _efagd !=nil {return _efagd ;};return nil ;};func (_bfggf fontCommon )asPdfObjectDictionary (_dgacb string )*_dg .PdfObjectDictionary {if _dgacb !=""&&_bfggf ._bcga !=""&&_dgacb !=_bfggf ._bcga {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0061\u0073\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074\u0044\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e\u0020O\u0076\u0065\u0072\u0072\u0069\u0064\u0069\u006e\u0067\u0020\u0073\u0075\u0062t\u0079\u0070\u0065\u0020\u0074\u006f \u0025\u0023\u0071 \u0025\u0073",_dgacb ,_bfggf ); +}else if _dgacb ==""&&_bfggf ._bcga ==""{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0061s\u0050\u0064\u0066Ob\u006a\u0065\u0063\u0074\u0044\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006e\u006f\u0020\u0073\u0075\u0062\u0074y\u0070\u0065\u002e\u0020\u0066\u006f\u006e\u0074=\u0025\u0073",_bfggf ); +}else if _bfggf ._bcga ==""{_bfggf ._bcga =_dgacb ;};_babb :=_dg .MakeDict ();_babb .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0046\u006f\u006e\u0074"));_babb .Set ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074",_dg .MakeName (_bfggf ._ecbf )); +_babb .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName (_bfggf ._bcga ));if _bfggf ._ccfb !=nil {_babb .Set ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072",_bfggf ._ccfb .ToPdfObject ());};if _bfggf ._ebbff !=nil {_babb .Set ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e",_bfggf ._ebbff ); +}else if _bfggf ._ecfb !=nil {_gdcf ,_bebf :=_bfggf ._ecfb .Stream ();if _bebf !=nil {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0067\u0065\u0074\u0020C\u004d\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e\u0020\u0065r\u0072\u003d\u0025\u0076",_bebf ); +}else {_babb .Set ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e",_gdcf );};};return _babb ;}; -// String returns string value of output intent for given type -// ISO_19005-2 6.2.3: GTS_PDFA1 value should be used for PDF/A-1, A-2 and A-3 at least -func (_cgcbg PdfOutputIntentType )String ()string {switch _cgcbg {case PdfOutputIntentTypeA1 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411";case PdfOutputIntentTypeA2 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411";case PdfOutputIntentTypeA3 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411"; -case PdfOutputIntentTypeA4 :return "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411";case PdfOutputIntentTypeX :return "\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0058";default:return "\u0055N\u0044\u0045\u0046\u0049\u004e\u0045D";};}; +// C returns the value of the C component of the color. +func (_aebe *PdfColorCalRGB )C ()float64 {return _aebe [2]}; -// PageProcessCallback callback function used in page loading -// that could be used to modify the page content. -// -// If an error is returned, the `ToWriter` process would fail. -// -// This callback, if defined, will take precedence over `PageCallback` callback. -type PageProcessCallback func (_fcefe int ,_ecbee *PdfPage )error ; +// SetBorderWidth sets the style's border width. +func (_gaeea *PdfBorderStyle )SetBorderWidth (width float64 ){_gaeea .W =&width }; -// PageCallback callback function used in page loading -// that could be used to modify the page content. -// -// Deprecated: will be removed in v4. Use PageProcessCallback instead. -type PageCallback func (_cbfeb int ,_bcbd *PdfPage );func (_edggg *PdfWriter )writeOutlines ()error {if _edggg ._dccbd ==nil {return nil ;};_adg .Log .Trace ("\u004f\u0075t\u006c\u0069\u006ee\u0054\u0072\u0065\u0065\u003a\u0020\u0025\u002b\u0076",_edggg ._dccbd ); -_efagc :=_edggg ._dccbd .ToPdfObject ();_adg .Log .Trace ("\u004fu\u0074\u006c\u0069\u006e\u0065\u0073\u003a\u0020\u0025\u002b\u0076 \u0028\u0025\u0054\u002c\u0020\u0070\u003a\u0025\u0070\u0029",_efagc ,_efagc ,_efagc );_edggg ._cdccb .Set ("\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073",_efagc ); -_dfeb :=_edggg .addObjects (_efagc );if _dfeb !=nil {return _dfeb ;};return nil ;}; +// AcroFormRepairOptions contains options for rebuilding the AcroForm. +type AcroFormRepairOptions struct{}; -// SetContext sets the sub annotation (context). -func (_acb *PdfAnnotation )SetContext (ctx PdfModel ){_acb ._eefa =ctx }; +// SetPdfTitle sets the Title attribute of the output PDF. +func SetPdfTitle (title string ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_fgfda =title }; -// ToPdfObject implements interface PdfModel. -func (_edcga *PdfAnnotationPolyLine )ToPdfObject ()_aff .PdfObject {_edcga .PdfAnnotation .ToPdfObject ();_fac :=_edcga ._ccfb ;_eabc :=_fac .PdfObject .(*_aff .PdfObjectDictionary );_edcga .PdfAnnotationMarkup .appendToPdfDictionary (_eabc );_eabc .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0050\u006f\u006c\u0079\u004c\u0069\u006e\u0065")); -_eabc .SetIfNotNil ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073",_edcga .Vertices );_eabc .SetIfNotNil ("\u004c\u0045",_edcga .LE );_eabc .SetIfNotNil ("\u0042\u0053",_edcga .BS );_eabc .SetIfNotNil ("\u0049\u0043",_edcga .IC );_eabc .SetIfNotNil ("\u0042\u0045",_edcga .BE ); -_eabc .SetIfNotNil ("\u0049\u0054",_edcga .IT );_eabc .SetIfNotNil ("\u004de\u0061\u0073\u0075\u0072\u0065",_edcga .Measure );return _fac ;}; +// NewStandardPdfOutputIntent creates a new standard PdfOutputIntent. +func NewStandardPdfOutputIntent (outputCondition ,outputConditionIdentifier ,registryName string ,destOutputProfile []byte ,colorComponents int )*PdfOutputIntent {return &PdfOutputIntent {Type :"\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074",OutputCondition :outputCondition ,OutputConditionIdentifier :outputConditionIdentifier ,RegistryName :registryName ,DestOutputProfile :destOutputProfile ,ColorComponents :colorComponents ,_cfaef :_dg .MakeDict ()}; +}; -// PdfAnnotation represents an annotation in PDF (section 12.5 p. 389). -type PdfAnnotation struct{_eefa PdfModel ;Rect _aff .PdfObject ;Contents _aff .PdfObject ;P _aff .PdfObject ;NM _aff .PdfObject ;M _aff .PdfObject ;F _aff .PdfObject ;AP _aff .PdfObject ;AS _aff .PdfObject ;Border _aff .PdfObject ;C _aff .PdfObject ;StructParent _aff .PdfObject ; -OC _aff .PdfObject ;_ccfb *_aff .PdfIndirectObject ;}; +// DecodeArray returns the range of color component values in the ICCBased colorspace. +func (_becb *PdfColorspaceICCBased )DecodeArray ()[]float64 {return _becb .Range };var (_caga =_c .MustCompile ("\u005cd\u002b\u0020\u0064\u0069c\u0074\u005c\u0073\u002b\u0028d\u0075p\u005cs\u002b\u0029\u003f\u0062\u0065\u0067\u0069n");_caegd =_c .MustCompile ("\u005e\u005cs\u002a\u002f\u0028\u005c\u0053\u002b\u003f\u0029\u005c\u0073\u002b\u0028\u002e\u002b\u003f\u0029\u005c\u0073\u002b\u0064\u0065\u0066\\s\u002a\u0024"); +_bacefb =_c .MustCompile ("\u005e\u005c\u0073*\u0064\u0075\u0070\u005c\u0073\u002b\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002a\u002f\u0028\u005c\u0077\u002b\u003f\u0029\u0028\u003f\u003a\u005c\u002e\u005c\u0064\u002b)\u003f\u005c\u0073\u002b\u0070\u0075\u0074\u0024"); +_degb ="\u002f\u0045\u006e\u0063od\u0069\u006e\u0067\u0020\u0032\u0035\u0036\u0020\u0061\u0072\u0072\u0061\u0079";_cgcga ="\u0072\u0065\u0061d\u006f\u006e\u006c\u0079\u0020\u0064\u0065\u0066";_cccafaf ="\u0063\u0075\u0072\u0072\u0065\u006e\u0074\u0066\u0069\u006c\u0065\u0020e\u0065\u0078\u0065\u0063"; +); -// GetContext returns a reference to the subpattern entry: either PdfTilingPattern or PdfShadingPattern. -func (_baecdb *PdfPattern )GetContext ()PdfModel {return _baecdb ._abbe };type pdfFontType0 struct{fontCommon ;_aaegb *_aff .PdfIndirectObject ;_faggb _eee .TextEncoder ;Encoding _aff .PdfObject ;DescendantFont *PdfFont ;_baedc *_da .CMap ;};func (_gceeg *PdfReader )newPdfAnnotationScreenFromDict (_bgb *_aff .PdfObjectDictionary )(*PdfAnnotationScreen ,error ){_bagc :=PdfAnnotationScreen {}; -_bagc .T =_bgb .Get ("\u0054");_bagc .MK =_bgb .Get ("\u004d\u004b");_bagc .A =_bgb .Get ("\u0041");_bagc .AA =_bgb .Get ("\u0041\u0041");return &_bagc ,nil ;};func _dgdfe (_ebgec _aff .PdfObject ,_gffff *fontCommon )(*_da .CMap ,error ){_efgbc ,_aece :=_aff .GetStream (_ebgec ); -if !_aece {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0074\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0054\u006f\u0043m\u0061\u0070\u003a\u0020\u004e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0025\u0054\u0029",_ebgec ); -return nil ,_aff .ErrTypeError ;};_cffce ,_gcddf :=_aff .DecodeStream (_efgbc );if _gcddf !=nil {return nil ,_gcddf ;};_bgfb ,_gcddf :=_da .LoadCmapFromData (_cffce ,!_gffff .isCIDFont ());if _gcddf !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u004e\u0075\u006d\u0062\u0065\u0072\u003d\u0025\u0064\u0020\u0065\u0072r=\u0025\u0076",_efgbc .ObjectNumber ,_gcddf ); -};return _bgfb ,_gcddf ;}; +// NewPdfAnnotationFileAttachment returns a new file attachment annotation. +func NewPdfAnnotationFileAttachment ()*PdfAnnotationFileAttachment {_bcfc :=NewPdfAnnotation ();_dafd :=&PdfAnnotationFileAttachment {};_dafd .PdfAnnotation =_bcfc ;_dafd .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_bcfc .SetContext (_dafd );return _dafd ; +}; -// NewPdfAppenderWithOpts creates a new Pdf appender from a Pdf reader with options. -func NewPdfAppenderWithOpts (reader *PdfReader ,opts *ReaderOpts ,encryptOptions *EncryptOptions )(*PdfAppender ,error ){_fgfe :=&PdfAppender {_dbb :reader ._dged ,Reader :reader ,_dga :reader ._gaece ,_fdab :reader ._ddcba };_bbe ,_cce :=_fgfe ._dbb .Seek (0,_ega .SeekEnd ); -if _cce !=nil {return nil ,_cce ;};_fgfe ._beec =_bbe ;if _ ,_cce =_fgfe ._dbb .Seek (0,_ega .SeekStart );_cce !=nil {return nil ,_cce ;};_fgfe ._dafgd ,_cce =NewPdfReaderWithOpts (_fgfe ._dbb ,opts );if _cce !=nil {return nil ,_cce ;};for _ ,_gffb :=range _fgfe .Reader .GetObjectNums (){if _fgfe ._bfafd < _gffb {_fgfe ._bfafd =_gffb ; -};};_fgfe ._gaec =_fgfe ._dga .GetXrefTable ();_fgfe ._cadg =_fgfe ._dga .GetXrefOffset ();_fgfe ._bbgg =append (_fgfe ._bbgg ,_fgfe ._dafgd .PageList ...);_fgfe ._deeb =make (map[_aff .PdfObject ]struct{});_fgfe ._fffa =make (map[_aff .PdfObject ]int64 ); -_fgfe ._abcb =make (map[_aff .PdfObject ]struct{});_fgfe ._bgac =_fgfe ._dafgd .AcroForm ;_fgfe ._fdbb =_fgfe ._dafgd .DSS ;if opts !=nil {_fgfe ._geff =opts .Password ;};if encryptOptions !=nil {_fgfe ._dcgbg =encryptOptions ;};return _fgfe ,nil ;}; +// SetAnnotations sets the annotations list. +func (_aafb *PdfPage )SetAnnotations (annotations []*PdfAnnotation ){_aafb ._cadgg =annotations }; -// NewPdfActionMovie returns a new "movie" action. -func NewPdfActionMovie ()*PdfActionMovie {_cgf :=NewPdfAction ();_baa :=&PdfActionMovie {};_baa .PdfAction =_cgf ;_cgf .SetContext (_baa );return _baa ;}; +// PdfAnnotationTrapNet represents TrapNet annotations. +// (Section 12.5.6.21). +type PdfAnnotationTrapNet struct{*PdfAnnotation };func (_deffff *PdfReader )loadDSS ()(*DSS ,error ){if _deffff ._baad .GetCrypter ()!=nil &&!_deffff ._baad .IsAuthenticated (){return nil ,_b .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); +};_bfff :=_deffff ._gccfb .Get ("\u0044\u0053\u0053");if _bfff ==nil {return nil ,nil ;};_dfbd ,_ :=_dg .GetIndirect (_bfff );_bfff =_dg .TraceToDirectObject (_bfff );switch _cgeb :=_bfff .(type ){case *_dg .PdfObjectNull :return nil ,nil ;case *_dg .PdfObjectDictionary :return _ceca (_dfbd ,_cgeb ); +};return nil ,_b .Errorf ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0044\u0053\u0053 \u0065\u006e\u0074\u0072y \u0025\u0054",_bfff );}; -// StringToCharcodeBytes maps the provided string runes to charcode bytes and -// it returns the resulting slice of bytes, along with the number of runes -// which could not be converted. If the number of misses is 0, all string runes -// were successfully converted. -func (_cfdfe *PdfFont )StringToCharcodeBytes (str string )([]byte ,int ){return _cfdfe .RunesToCharcodeBytes ([]rune (str ));}; +// PdfAnnotationStrikeOut represents StrikeOut annotations. +// (Section 12.5.6.10). +type PdfAnnotationStrikeOut struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _dg .PdfObject ;}; -// ToPdfObject return the CalGray colorspace as a PDF object (name dictionary). -func (_fgcb *PdfColorspaceCalGray )ToPdfObject ()_aff .PdfObject {_fdgg :=&_aff .PdfObjectArray {};_fdgg .Append (_aff .MakeName ("\u0043a\u006c\u0047\u0072\u0061\u0079"));_eaea :=_aff .MakeDict ();if _fgcb .WhitePoint !=nil {_eaea .Set ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074",_aff .MakeArray (_aff .MakeFloat (_fgcb .WhitePoint [0]),_aff .MakeFloat (_fgcb .WhitePoint [1]),_aff .MakeFloat (_fgcb .WhitePoint [2]))); -}else {_adg .Log .Error ("\u0043\u0061\u006c\u0047\u0072\u0061\u0079\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0057\u0068\u0069\u0074\u0065\u0050\u006fi\u006e\u0074\u0020\u0028\u0052e\u0071\u0075i\u0072\u0065\u0064\u0029");};if _fgcb .BlackPoint !=nil {_eaea .Set ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074",_aff .MakeArray (_aff .MakeFloat (_fgcb .BlackPoint [0]),_aff .MakeFloat (_fgcb .BlackPoint [1]),_aff .MakeFloat (_fgcb .BlackPoint [2]))); -};_eaea .Set ("\u0047\u0061\u006dm\u0061",_aff .MakeFloat (_fgcb .Gamma ));_fdgg .Append (_eaea );if _fgcb ._ffbf !=nil {_fgcb ._ffbf .PdfObject =_fdgg ;return _fgcb ._ffbf ;};return _fdgg ;};func _cdfa (_dcacd []byte )([]byte ,error ){_ccdfa :=_be .New (); -if _ ,_dgcbc :=_ega .Copy (_ccdfa ,_af .NewReader (_dcacd ));_dgcbc !=nil {return nil ,_dgcbc ;};return _ccdfa .Sum (nil ),nil ;}; +// DefaultFont returns the default font, which is currently the built in Helvetica. +func DefaultFont ()*PdfFont {_gdgag ,_gaefc :=_bbg .NewStdFontByName (HelveticaName );if !_gaefc {panic ("\u0048\u0065lv\u0065\u0074\u0069c\u0061\u0020\u0073\u0068oul\u0064 a\u006c\u0077\u0061\u0079\u0073\u0020\u0062e \u0061\u0076\u0061\u0069\u006c\u0061\u0062l\u0065"); +};_fcdg :=_gecgd (_gdgag );return &PdfFont {_cadf :&_fcdg };}; -// PdfFontDescriptor specifies metrics and other attributes of a font and can refer to a FontFile -// for embedded fonts. -// 9.8 Font Descriptors (page 281) -type PdfFontDescriptor struct{FontName _aff .PdfObject ;FontFamily _aff .PdfObject ;FontStretch _aff .PdfObject ;FontWeight _aff .PdfObject ;Flags _aff .PdfObject ;FontBBox _aff .PdfObject ;ItalicAngle _aff .PdfObject ;Ascent _aff .PdfObject ;Descent _aff .PdfObject ; -Leading _aff .PdfObject ;CapHeight _aff .PdfObject ;XHeight _aff .PdfObject ;StemV _aff .PdfObject ;StemH _aff .PdfObject ;AvgWidth _aff .PdfObject ;MaxWidth _aff .PdfObject ;MissingWidth _aff .PdfObject ;FontFile _aff .PdfObject ;FontFile2 _aff .PdfObject ; -FontFile3 _aff .PdfObject ;CharSet _aff .PdfObject ;_cdbb int ;_eace float64 ;*fontFile ;_ddffd *_bcd .TtfType ; +// GetContext returns a reference to the subpattern entry: either PdfTilingPattern or PdfShadingPattern. +func (_egac *PdfPattern )GetContext ()PdfModel {return _egac ._cgdcc }; -// Additional entries for CIDFonts -Style _aff .PdfObject ;Lang _aff .PdfObject ;FD _aff .PdfObject ;CIDSet _aff .PdfObject ;_cade *_aff .PdfIndirectObject ;}; +// PdfAnnotationRichMedia represents Rich Media annotations. +type PdfAnnotationRichMedia struct{*PdfAnnotation ;RichMediaSettings _dg .PdfObject ;RichMediaContent _dg .PdfObject ;}; -// GetContainingPdfObject returns the XObject Form's containing object (indirect object). -func (_eaacb *XObjectForm )GetContainingPdfObject ()_aff .PdfObject {return _eaacb ._fddef }; +// SetDocInfo sets the document /Info metadata. +// This will overwrite any globally declared document info. +func (_dfgd *PdfAppender )SetDocInfo (info *PdfInfo ){_dfgd ._fega =info };func _edda (_gbca *_dg .PdfObjectStream )(*PdfFunctionType4 ,error ){_cecgf :=&PdfFunctionType4 {};_cecgf ._ggfdf =_gbca ;_dadd :=_gbca .PdfObjectDictionary ;_bfcbb ,_ffggf :=_dg .TraceToDirectObject (_dadd .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_dg .PdfObjectArray ); +if !_ffggf {_ag .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};if _bfcbb .Len ()%2!=0{_ag .Log .Error ("\u0044\u006f\u006d\u0061\u0069\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");return nil ,_bf .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065");};_cgcfe ,_aead :=_bfcbb .ToFloat64Array (); +if _aead !=nil {return nil ,_aead ;};_cecgf .Domain =_cgcfe ;_bfcbb ,_ffggf =_dg .TraceToDirectObject (_dadd .Get ("\u0052\u0061\u006eg\u0065")).(*_dg .PdfObjectArray );if _ffggf {if _bfcbb .Len ()< 0||_bfcbb .Len ()%2!=0{return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); +};_fcfb ,_gcfeed :=_bfcbb .ToFloat64Array ();if _gcfeed !=nil {return nil ,_gcfeed ;};_cecgf .Range =_fcfb ;};_bfec ,_aead :=_dg .DecodeStream (_gbca );if _aead !=nil {return nil ,_aead ;};_cecgf ._cbdbd =_bfec ;_fdaa :=_gfd .NewPSParser (_bfec );_gbffb ,_aead :=_fdaa .Parse (); +if _aead !=nil {return nil ,_aead ;};_cecgf .Program =_gbffb ;return _cecgf ,nil ;};func (_gbcb *PdfReader )newPdfAnnotation3DFromDict (_dddg *_dg .PdfObjectDictionary )(*PdfAnnotation3D ,error ){_bdf :=PdfAnnotation3D {};_bdf .T3DD =_dddg .Get ("\u0033\u0044\u0044"); +_bdf .T3DV =_dddg .Get ("\u0033\u0044\u0056");_bdf .T3DA =_dddg .Get ("\u0033\u0044\u0041");_bdf .T3DI =_dddg .Get ("\u0033\u0044\u0049");_bdf .T3DB =_dddg .Get ("\u0033\u0044\u0042");return &_bdf ,nil ;};func (_dad *PdfReader )newPdfActionThreadFromDict (_faea *_dg .PdfObjectDictionary )(*PdfActionThread ,error ){_ggfc ,_egc :=_bccf (_faea .Get ("\u0046")); +if _egc !=nil {return nil ,_egc ;};return &PdfActionThread {D :_faea .Get ("\u0044"),B :_faea .Get ("\u0042"),F :_ggfc },nil ;}; -// NewOutlineBookmark returns an initialized PdfOutlineItem for a given bookmark title and page. -func NewOutlineBookmark (title string ,page *_aff .PdfIndirectObject )*PdfOutlineItem {_dfdg :=PdfOutlineItem {};_dfdg ._gecd =&_dfdg ;_dfdg .Title =_aff .MakeString (title );_acdbd :=_aff .MakeArray ();_acdbd .Append (page );_acdbd .Append (_aff .MakeName ("\u0046\u0069\u0074")); -_dfdg .Dest =_acdbd ;return &_dfdg ;}; +// ToPdfObject returns a stream object. +func (_eaaca *XObjectForm )ToPdfObject ()_dg .PdfObject {_dgada :=_eaaca ._ebaeb ;_dbafd :=_dgada .PdfObjectDictionary ;if _eaaca .Filter !=nil {_dbafd =_eaaca .Filter .MakeStreamDict ();_dgada .PdfObjectDictionary =_dbafd ;};_dbafd .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0058O\u0062\u006a\u0065\u0063\u0074")); +_dbafd .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0046\u006f\u0072\u006d"));_dbafd .SetIfNotNil ("\u0046\u006f\u0072\u006d\u0054\u0079\u0070\u0065",_eaaca .FormType );_dbafd .SetIfNotNil ("\u0042\u0042\u006f\u0078",_eaaca .BBox );_dbafd .SetIfNotNil ("\u004d\u0061\u0074\u0072\u0069\u0078",_eaaca .Matrix ); +if _eaaca .Resources !=nil {_dbafd .SetIfNotNil ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_eaaca .Resources .ToPdfObject ());};_dbafd .SetIfNotNil ("\u0047\u0072\u006fu\u0070",_eaaca .Group );_dbafd .SetIfNotNil ("\u0052\u0065\u0066",_eaaca .Ref ); +_dbafd .SetIfNotNil ("\u004d\u0065\u0074\u0061\u0044\u0061\u0074\u0061",_eaaca .MetaData );_dbafd .SetIfNotNil ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o",_eaaca .PieceInfo );_dbafd .SetIfNotNil ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064",_eaaca .LastModified ); +_dbafd .SetIfNotNil ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074",_eaaca .StructParent );_dbafd .SetIfNotNil ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073",_eaaca .StructParents );_dbafd .SetIfNotNil ("\u004f\u0050\u0049",_eaaca .OPI ); +_dbafd .SetIfNotNil ("\u004f\u0043",_eaaca .OC );_dbafd .SetIfNotNil ("\u004e\u0061\u006d\u0065",_eaaca .Name );_dbafd .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_eaaca .Stream ))));_dgada .Stream =_eaaca .Stream ;return _dgada ; +};func (_abbcb *pdfFontSimple )getFontEncoding ()(_gcff string ,_ecbce map[_bd .CharCode ]_bd .GlyphName ,_ebbc error ){_gcff ="\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067";if _bbada ,_dgca :=_addac [_abbcb ._ecbf ]; +_dgca {_gcff =_bbada ;}else if _abbcb .fontFlags ()&_bbfd !=0{for _acgee ,_gdab :=range _addac {if _ga .Contains (_abbcb ._ecbf ,_acgee ){_gcff =_gdab ;break ;};};};if _abbcb .Encoding ==nil {return _gcff ,nil ,nil ;};switch _cbbe :=_abbcb .Encoding .(type ){case *_dg .PdfObjectName :return string (*_cbbe ),nil ,nil ; +case *_dg .PdfObjectDictionary :_agggd ,_ffbfc :=_dg .GetName (_cbbe .Get ("\u0042\u0061\u0073e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));if _ffbfc {_gcff =_agggd .String ();};if _agbag :=_cbbe .Get ("D\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073"); +_agbag !=nil {_cgbfea ,_cbcef :=_dg .GetArray (_agbag );if !_cbcef {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042a\u0064\u0020\u0066on\u0074\u0020\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u003d\u0025\u002b\u0076\u0020\u0044\u0069f\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073=\u0025\u0054",_cbbe ,_cbbe .Get ("D\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073")); +return "",nil ,_dg .ErrTypeError ;};_ecbce ,_ebbc =_bd .FromFontDifferences (_cgbfea );};return _gcff ,_ecbce ,_ebbc ;default:_ag .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0072\u0020\u0064\u0069\u0063t\u0020\u0028\u0025\u0054\u0029\u0020\u0025\u0073",_abbcb .Encoding ,_abbcb .Encoding ); +return "",nil ,_dg .ErrTypeError ;};}; -// GetFontByName gets the font specified by keyName. Returns the PdfObject which -// the entry refers to. Returns a bool value indicating whether or not the entry was found. -func (_cecee *PdfPageResources )GetFontByName (keyName _aff .PdfObjectName )(_aff .PdfObject ,bool ){if _cecee .Font ==nil {return nil ,false ;};_cgaab ,_ddegf :=_aff .TraceToDirectObject (_cecee .Font ).(*_aff .PdfObjectDictionary );if !_ddegf {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0021\u0020(\u0067\u006ft\u0020\u0025\u0054\u0029",_aff .TraceToDirectObject (_cecee .Font )); -return nil ,false ;};if _feebc :=_cgaab .Get (keyName );_feebc !=nil {return _feebc ,true ;};return nil ,false ;}; +// NewPdfColorCalGray returns a new CalGray color. +func NewPdfColorCalGray (grayVal float64 )*PdfColorCalGray {_ggbb :=PdfColorCalGray (grayVal );return &_ggbb ;};var (ErrRequiredAttributeMissing =_bf .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074t\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073s\u0069\u006e\u0067"); +ErrInvalidAttribute =_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065");ErrTypeCheck =_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0063\u0068\u0065\u0063\u006b");_dgaa =_bf .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"); +ErrEncrypted =_bf .New ("\u0066\u0069\u006c\u0065\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f\u0020\u0062e\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074");ErrNoFont =_bf .New ("\u0066\u006fn\u0074\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +ErrFontNotSupported =_ge .Errorf ("u\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0066\u006fn\u0074\u0020\u0028\u0025\u0077\u0029",_dg .ErrNotSupported );ErrType1CFontNotSupported =_ge .Errorf ("\u0054y\u0070\u00651\u0043\u0020\u0066o\u006e\u0074\u0073\u0020\u0061\u0072\u0065 \u006e\u006f\u0074\u0020\u0063\u0075r\u0072\u0065\u006e\u0074\u006c\u0079\u0020\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0028\u0025\u0077\u0029",_dg .ErrNotSupported ); +ErrType3FontNotSupported =_ge .Errorf ("\u0054y\u0070\u00653\u0020\u0066\u006f\u006et\u0073\u0020\u0061r\u0065\u0020\u006e\u006f\u0074\u0020\u0063\u0075\u0072re\u006e\u0074\u006cy\u0020\u0073u\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0028%\u0077\u0029",_dg .ErrNotSupported ); +ErrTTCmapNotSupported =_ge .Errorf ("\u0075\u006es\u0075\u0070\u0070\u006fr\u0074\u0065d\u0020\u0054\u0072\u0075\u0065\u0054\u0079\u0070e\u0020\u0063\u006d\u0061\u0070\u0020\u0066\u006f\u0072\u006d\u0061\u0074 \u0028\u0025\u0077\u0029",_dg .ErrNotSupported ); +ErrSignNotEnoughSpace =_ge .Errorf ("\u0069\u006e\u0073\u0075\u0066\u0066\u0069c\u0069\u0065\u006et\u0020\u0073\u0070a\u0063\u0065 \u0061\u006c\u006c\u006f\u0063\u0061t\u0065d \u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0073"); +ErrSignNoCertificates =_ge .Errorf ("\u0063\u006ful\u0064\u0020\u006eo\u0074\u0020\u0072\u0065tri\u0065ve\u0020\u0063\u0065\u0072\u0074\u0069\u0066ic\u0061\u0074\u0065\u0020\u0063\u0068\u0061i\u006e");); -// ToPdfObject returns a PDF object representation of the outline item. -func (_ccafc *OutlineItem )ToPdfObject ()_aff .PdfObject {_dfdcb ,_ :=_ccafc .ToPdfOutlineItem ();return _dfdcb .ToPdfObject ();};func (_adbc *PdfReader )newPdfAnnotationSquigglyFromDict (_bdegg *_aff .PdfObjectDictionary )(*PdfAnnotationSquiggly ,error ){_fbf :=PdfAnnotationSquiggly {}; -_fce ,_cbfe :=_adbc .newPdfAnnotationMarkupFromDict (_bdegg );if _cbfe !=nil {return nil ,_cbfe ;};_fbf .PdfAnnotationMarkup =_fce ;_fbf .QuadPoints =_bdegg .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_fbf ,nil ;};func _ffff (_bbgc _aff .PdfObject )(*PdfBorderStyle ,error ){_gggb :=&PdfBorderStyle {}; -_gggb ._bgcf =_bbgc ;var _gcb *_aff .PdfObjectDictionary ;_bbgc =_aff .TraceToDirectObject (_bbgc );_gcb ,_cfaac :=_bbgc .(*_aff .PdfObjectDictionary );if !_cfaac {return nil ,_g .New ("\u0074\u0079\u0070\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};if _afbf :=_gcb .Get ("\u0054\u0079\u0070\u0065"); -_afbf !=nil {_cff ,_facd :=_afbf .(*_aff .PdfObjectName );if !_facd {_adg .Log .Debug ("I\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062i\u006c\u0069\u0074\u0079\u0020\u0077\u0069th\u0020\u0054\u0079\u0070e\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061me\u0020\u006fb\u006a\u0065\u0063\u0074\u003a\u0020\u0025\u0054",_afbf ); -}else {if *_cff !="\u0042\u006f\u0072\u0064\u0065\u0072"{_adg .Log .Debug ("W\u0061\u0072\u006e\u0069\u006e\u0067,\u0020\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020B\u006f\u0072\u0064e\u0072:\u0020\u0025\u0073",*_cff );};};};if _cega :=_gcb .Get ("\u0057"); -_cega !=nil {_bega ,_bgagd :=_aff .GetNumberAsFloat (_cega );if _bgagd !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006fr \u0072\u0065\u0074\u0072\u0069\u0065\u0076\u0069\u006e\u0067\u0020\u0057\u003a\u0020%\u0076",_bgagd );return nil ,_bgagd ;};_gggb .W =&_bega ; -};if _dfff :=_gcb .Get ("\u0053");_dfff !=nil {_gbef ,_cbce :=_dfff .(*_aff .PdfObjectName );if !_cbce {return nil ,_g .New ("\u0062\u006f\u0072\u0064\u0065\u0072\u0020\u0053\u0020\u006e\u006ft\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0062j\u0065\u0063\u0074"); -};var _ebce BorderStyle ;switch *_gbef {case "\u0053":_ebce =BorderStyleSolid ;case "\u0044":_ebce =BorderStyleDashed ;case "\u0042":_ebce =BorderStyleBeveled ;case "\u0049":_ebce =BorderStyleInset ;case "\u0055":_ebce =BorderStyleUnderline ;default:_adg .Log .Debug ("I\u006e\u0076\u0061\u006cid\u0020s\u0074\u0079\u006c\u0065\u0020n\u0061\u006d\u0065\u0020\u0025\u0073",*_gbef ); -return nil ,_g .New ("\u0073\u0074\u0079\u006ce \u0074\u0079\u0070\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065c\u006b");};_gggb .S =&_ebce ;};if _cffa :=_gcb .Get ("\u0044");_cffa !=nil {_fdee ,_dgcd :=_cffa .(*_aff .PdfObjectArray ); -if !_dgcd {_adg .Log .Debug ("\u0042\u006f\u0072\u0064\u0065\u0072\u0020\u0044\u0020\u0064a\u0073\u0068\u0020\u006e\u006f\u0074\u0020a\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0054",_cffa );return nil ,_g .New ("\u0062o\u0072\u0064\u0065\u0072 \u0044\u0020\u0074\u0079\u0070e\u0020c\u0068e\u0063\u006b\u0020\u0065\u0072\u0072\u006fr"); -};_dcfg ,_deeaf :=_fdee .ToIntegerArray ();if _deeaf !=nil {_adg .Log .Debug ("\u0042\u006f\u0072\u0064\u0065\u0072\u0020\u0044 \u0050\u0072\u006fbl\u0065\u006d\u0020\u0063\u006f\u006ev\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0069\u006e\u0074\u0065\u0067e\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u003a \u0025\u0076",_deeaf ); -return nil ,_deeaf ;};_gggb .D =&_dcfg ;};return _gggb ,nil ;};func _cfdg ()_f .Time {_aebda .Lock ();defer _aebda .Unlock ();return _bebcb }; +// Items returns all children outline items. +func (_dfce *Outline )Items ()[]*OutlineItem {return _dfce .Entries }; -// NewPdfColorspaceSpecialSeparation returns a new separation color. -func NewPdfColorspaceSpecialSeparation ()*PdfColorspaceSpecialSeparation {_aaggf :=&PdfColorspaceSpecialSeparation {};return _aaggf ;};func _fgdf (_abfeb *fontCommon )*pdfFontType0 {return &pdfFontType0 {fontCommon :*_abfeb }}; +// NewPdfAnnotationScreen returns a new screen annotation. +func NewPdfAnnotationScreen ()*PdfAnnotationScreen {_bead :=NewPdfAnnotation ();_gae :=&PdfAnnotationScreen {};_gae .PdfAnnotation =_bead ;_bead .SetContext (_gae );return _gae ;}; // ToPdfObject implements interface PdfModel. -func (_baga *PdfActionJavaScript )ToPdfObject ()_aff .PdfObject {_baga .PdfAction .ToPdfObject ();_aca :=_baga ._df ;_dbg :=_aca .PdfObject .(*_aff .PdfObjectDictionary );_dbg .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeJavaScript )));_dbg .SetIfNotNil ("\u004a\u0053",_baga .JS ); -return _aca ;}; +func (_dfc *PdfActionSubmitForm )ToPdfObject ()_dg .PdfObject {_dfc .PdfAction .ToPdfObject ();_gea :=_dfc ._cbd ;_bac :=_gea .PdfObject .(*_dg .PdfObjectDictionary );_bac .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeSubmitForm )));if _dfc .F !=nil {_bac .Set ("\u0046",_dfc .F .ToPdfObject ()); +};_bac .SetIfNotNil ("\u0046\u0069\u0065\u006c\u0064\u0073",_dfc .Fields );_bac .SetIfNotNil ("\u0046\u006c\u0061g\u0073",_dfc .Flags );return _gea ;}; -// NewStandardPdfOutputIntent creates a new standard PdfOutputIntent. -func NewStandardPdfOutputIntent (outputCondition ,outputConditionIdentifier ,registryName string ,destOutputProfile []byte ,colorComponents int )*PdfOutputIntent {return &PdfOutputIntent {Type :"\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074",OutputCondition :outputCondition ,OutputConditionIdentifier :outputConditionIdentifier ,RegistryName :registryName ,DestOutputProfile :destOutputProfile ,ColorComponents :colorComponents ,_gebea :_aff .MakeDict ()}; +// SetForms sets the Acroform for a PDF file. +func (_fbdbb *PdfWriter )SetForms (form *PdfAcroForm )error {_fbdbb ._geabe =form ;return nil };func _dfgb (_dedb *XObjectForm )(*PdfRectangle ,bool ,error ){if _eeaed ,_cdcd :=_dedb .BBox .(*_dg .PdfObjectArray );_cdcd {_ddfe ,_abcea :=NewPdfRectangle (*_eeaed ); +if _abcea !=nil {return nil ,false ,_abcea ;};if _dbde ,_ddca :=_dedb .Matrix .(*_dg .PdfObjectArray );_ddca {_cgcac ,_ebedfg :=_dbde .ToFloat64Array ();if _ebedfg !=nil {return nil ,false ,_ebedfg ;};_edfa :=_fec .IdentityMatrix ();if len (_cgcac )==6{_edfa =_fec .NewMatrix (_cgcac [0],_cgcac [1],_cgcac [2],_cgcac [3],_cgcac [4],_cgcac [5]); +};_ddfe .Transform (_edfa );return _ddfe ,true ,nil ;};return _ddfe ,false ,nil ;};return nil ,false ,_bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063e\u0020\u0042\u0042\u006f\u0078\u0020\u0074y\u0070\u0065"); }; -// NewStandard14FontMustCompile returns the standard 14 font named `basefont` as a *PdfFont. -// If `basefont` is one of the 14 Standard14Font values defined above then NewStandard14FontMustCompile -// is guaranteed to succeed. -func NewStandard14FontMustCompile (basefont StdFontName )*PdfFont {_fcccd ,_bebbb :=NewStandard14Font (basefont );if _bebbb !=nil {panic (_e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0074\u0061n\u0064\u0061\u0072\u0064\u0031\u0034\u0046\u006f\u006e\u0074 \u0025\u0023\u0071",basefont )); -};return _fcccd ;}; +// SetCatalogMetadata sets the catalog metadata (XMP) stream object. +func (_ffbgc *PdfWriter )SetCatalogMetadata (meta _dg .PdfObject )error {if meta ==nil {_ffbgc ._ecdf .Remove ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");return nil ;};_bbfc ,_dgedc :=_dg .GetStream (meta );if !_dgedc {return _bf .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006d\u0065\u0074\u0061\u0064a\u0074\u0061\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0073t\u0072\u0065\u0061\u006d"); +};_ffbgc .addObject (_bbfc );_ffbgc ._ecdf .Set ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_bbfc );return nil ;};func (_dcg *PdfReader )newPdfAnnotationMovieFromDict (_dcad *_dg .PdfObjectDictionary )(*PdfAnnotationMovie ,error ){_afbb :=PdfAnnotationMovie {}; +_afbb .T =_dcad .Get ("\u0054");_afbb .Movie =_dcad .Get ("\u004d\u006f\u0076i\u0065");_afbb .A =_dcad .Get ("\u0041");return &_afbb ,nil ;}; -// GetXHeight returns the XHeight of the font `descriptor`. -func (_adbfe *PdfFontDescriptor )GetXHeight ()(float64 ,error ){return _aff .GetNumberAsFloat (_adbfe .XHeight );}; +// NewDSS returns a new DSS dictionary. +func NewDSS ()*DSS {return &DSS {_agdcg :_dg .MakeIndirectObject (_dg .MakeDict ()),VRI :map[string ]*VRI {}};}; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain a single element. -func (_dbcf *PdfColorspaceSpecialSeparation )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_eefc :=vals [0];_dcfdd :=[]float64 {_eefc };_bgeeg ,_cdag :=_dbcf .TintTransform .Evaluate (_dcfdd ); -if _cdag !=nil {_adg .Log .Debug ("\u0045\u0072r\u006f\u0072\u002c\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0065\u0076\u0061\u006c\u0075\u0061\u0074\u0065: \u0025\u0076",_cdag );_adg .Log .Trace ("\u0054\u0069\u006e\u0074 t\u0072\u0061\u006e\u0073\u0066\u006f\u0072\u006d\u003a\u0020\u0025\u002b\u0076",_dbcf .TintTransform ); -return nil ,_cdag ;};_adg .Log .Trace ("\u0050\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0043\u006f\u006c\u006fr\u0046\u0072\u006f\u006d\u0046\u006c\u006f\u0061\u0074\u0073\u0028\u0025\u002bv\u0029\u0020\u006f\u006e\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061te\u0053\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0023\u0076",_bgeeg ,_dbcf .AlternateSpace ); -_fecag ,_cdag :=_dbcf .AlternateSpace .ColorFromFloats (_bgeeg );if _cdag !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u002c\u0020\u0066a\u0069\u006c\u0065d \u0074\u006f\u0020\u0065\u0076\u0061l\u0075\u0061\u0074\u0065\u0020\u0069\u006e\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061t\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u003a \u0025\u0076",_cdag ); -return nil ,_cdag ;};return _fecag ,nil ;}; +// ToPdfObject implements interface PdfModel. +func (_deda *PdfAnnotationMovie )ToPdfObject ()_dg .PdfObject {_deda .PdfAnnotation .ToPdfObject ();_gaaa :=_deda ._cdf ;_bffb :=_gaaa .PdfObject .(*_dg .PdfObjectDictionary );_bffb .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u004d\u006f\u0076i\u0065")); +_bffb .SetIfNotNil ("\u0054",_deda .T );_bffb .SetIfNotNil ("\u004d\u006f\u0076i\u0065",_deda .Movie );_bffb .SetIfNotNil ("\u0041",_deda .A );return _gaaa ;}; -// NewPdfColorspaceCalRGB returns a new CalRGB colorspace object. -func NewPdfColorspaceCalRGB ()*PdfColorspaceCalRGB {_bceg :=&PdfColorspaceCalRGB {};_bceg .BlackPoint =[]float64 {0.0,0.0,0.0};_bceg .Gamma =[]float64 {1.0,1.0,1.0};_bceg .Matrix =[]float64 {1,0,0,0,1,0,0,0,1};return _bceg ;}; +// AlphaMap performs mapping of alpha data for transformations. Allows custom filtering of alpha data etc. +func (_addgf *Image )AlphaMap (mapFunc AlphaMapFunc ){for _aeeaa ,_ggdc :=range _addgf ._dgeb {_addgf ._dgeb [_aeeaa ]=mapFunc (_ggdc );};}; -// ApplyStandard is used to apply changes required on the document to match the rules required by the input standard. -// The writer's content would be changed after all the document parts are already established during the Write method. -// A good example of the StandardApplier could be a PDF/A Profile (i.e.: pdfa.Profile1A). In such a case PdfWriter would -// set up all rules required by that Profile. -func (_fgadd *PdfWriter )ApplyStandard (optimizer StandardApplier ){_fgadd ._afgef =optimizer }; +// NewPdfColorCalRGB returns a new CalRBG color. +func NewPdfColorCalRGB (a ,b ,c float64 )*PdfColorCalRGB {_gbbb :=PdfColorCalRGB {a ,b ,c };return &_gbbb ;}; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_febcf *PdfShading )ToPdfObject ()_aff .PdfObject {_eeab :=_febcf ._bdacg ;_fcbga ,_gbgc :=_febcf .getShadingDict ();if _gbgc !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _febcf .ShadingType !=nil {_fcbga .Set ("S\u0068\u0061\u0064\u0069\u006e\u0067\u0054\u0079\u0070\u0065",_febcf .ShadingType );};if _febcf .ColorSpace !=nil {_fcbga .Set ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065",_febcf .ColorSpace .ToPdfObject ()); -};if _febcf .Background !=nil {_fcbga .Set ("\u0042\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064",_febcf .Background );};if _febcf .BBox !=nil {_fcbga .Set ("\u0042\u0042\u006f\u0078",_febcf .BBox .ToPdfObject ());};if _febcf .AntiAlias !=nil {_fcbga .Set ("\u0041n\u0074\u0069\u0041\u006c\u0069\u0061s",_febcf .AntiAlias ); -};return _eeab ;};func (_efdd *PdfReader )newPdfSignatureReferenceFromDict (_ggege *_aff .PdfObjectDictionary )(*PdfSignatureReference ,error ){if _bgdcf ,_ebgg :=_efdd ._cfadc .GetModelFromPrimitive (_ggege ).(*PdfSignatureReference );_ebgg {return _bgdcf ,nil ; -};_bgdff :=&PdfSignatureReference {_fdebg :_ggege ,Data :_ggege .Get ("\u0044\u0061\u0074\u0061")};var _edccd bool ;_bgdff .Type ,_ =_aff .GetName (_ggege .Get ("\u0054\u0079\u0070\u0065"));_bgdff .TransformMethod ,_edccd =_aff .GetName (_ggege .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064")); -if !_edccd {_adg .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0053\u0069g\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0054\u0072\u0061\u006e\u0073\u0066o\u0072\u006dM\u0065\u0074h\u006f\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020in\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0072\u0020m\u0069\u0073\u0073\u0069\u006e\u0067"); -return nil ,ErrInvalidAttribute ;};_bgdff .TransformParams ,_ =_aff .GetDict (_ggege .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"));_bgdff .DigestMethod ,_ =_aff .GetName (_ggege .Get ("\u0044\u0069\u0067e\u0073\u0074\u004d\u0065\u0074\u0068\u006f\u0064")); -return _bgdff ,nil ;}; +// GetContainingPdfObject implements interface PdfModel. +func (_aa *PdfAction )GetContainingPdfObject ()_dg .PdfObject {return _aa ._cbd }; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_beedf *PdfShadingType6 )ToPdfObject ()_aff .PdfObject {_beedf .PdfShading .ToPdfObject ();_fgfee ,_fgbaf :=_beedf .getShadingDict ();if _fgbaf !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _beedf .BitsPerCoordinate !=nil {_fgfee .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_beedf .BitsPerCoordinate );};if _beedf .BitsPerComponent !=nil {_fgfee .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_beedf .BitsPerComponent ); -};if _beedf .BitsPerFlag !=nil {_fgfee .Set ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067",_beedf .BitsPerFlag );};if _beedf .Decode !=nil {_fgfee .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_beedf .Decode );};if _beedf .Function !=nil {if len (_beedf .Function )==1{_fgfee .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_beedf .Function [0].ToPdfObject ()); -}else {_gdegg :=_aff .MakeArray ();for _ ,_fdde :=range _beedf .Function {_gdegg .Append (_fdde .ToPdfObject ());};_fgfee .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_gdegg );};};return _beedf ._bdacg ;};func (_aead *PdfColorspaceCalGray )String ()string {return "\u0043a\u006c\u0047\u0072\u0061\u0079"}; -func (_aaeda *pdfFontSimple )baseFields ()*fontCommon {return &_aaeda .fontCommon }; +// SignatureHandler interface defines the common functionality for PDF signature handlers, which +// need to be capable of validating digital signatures and signing PDF documents. +type SignatureHandler interface{ -// M returns the value of the magenta component of the color. -func (_bfge *PdfColorDeviceCMYK )M ()float64 {return _bfge [1]}; +// IsApplicable checks if a given signature dictionary `sig` is applicable for the signature handler. +// For example a signature of type `adbe.pkcs7.detached` might not fit for a rsa.sha1 handler. +IsApplicable (_fdfda *PdfSignature )bool ; -// PdfAnnotationPopup represents Popup annotations. -// (Section 12.5.6.14). -type PdfAnnotationPopup struct{*PdfAnnotation ;Parent _aff .PdfObject ;Open _aff .PdfObject ;};var (ErrRequiredAttributeMissing =_g .New ("\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074t\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073s\u0069\u006e\u0067"); -ErrInvalidAttribute =_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065");ErrTypeCheck =_g .New ("\u0074\u0079\u0070\u0065\u0020\u0063\u0068\u0065\u0063\u006b");_ddcbc =_g .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"); -ErrEncrypted =_g .New ("\u0066\u0069\u006c\u0065\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f\u0020\u0062e\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074");ErrNoFont =_g .New ("\u0066\u006fn\u0074\u0020\u006eo\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -ErrFontNotSupported =_ffb .Errorf ("u\u006e\u0073\u0075\u0070po\u0072t\u0065\u0064\u0020\u0066\u006fn\u0074\u0020\u0028\u0025\u0077\u0029",_aff .ErrNotSupported );ErrType1CFontNotSupported =_ffb .Errorf ("\u0054y\u0070\u00651\u0043\u0020\u0066o\u006e\u0074\u0073\u0020\u0061\u0072\u0065 \u006e\u006f\u0074\u0020\u0063\u0075r\u0072\u0065\u006e\u0074\u006c\u0079\u0020\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020\u0028\u0025\u0077\u0029",_aff .ErrNotSupported ); -ErrType3FontNotSupported =_ffb .Errorf ("\u0054y\u0070\u00653\u0020\u0066\u006f\u006et\u0073\u0020\u0061r\u0065\u0020\u006e\u006f\u0074\u0020\u0063\u0075\u0072re\u006e\u0074\u006cy\u0020\u0073u\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0028%\u0077\u0029",_aff .ErrNotSupported ); -ErrTTCmapNotSupported =_ffb .Errorf ("\u0075\u006es\u0075\u0070\u0070\u006fr\u0074\u0065d\u0020\u0054\u0072\u0075\u0065\u0054\u0079\u0070e\u0020\u0063\u006d\u0061\u0070\u0020\u0066\u006f\u0072\u006d\u0061\u0074 \u0028\u0025\u0077\u0029",_aff .ErrNotSupported ); -ErrSignNotEnoughSpace =_ffb .Errorf ("\u0069\u006e\u0073\u0075\u0066\u0066\u0069c\u0069\u0065\u006et\u0020\u0073\u0070a\u0063\u0065 \u0061\u006c\u006c\u006f\u0063\u0061t\u0065d \u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0073"); -ErrSignNoCertificates =_ffb .Errorf ("\u0063\u006ful\u0064\u0020\u006eo\u0074\u0020\u0072\u0065tri\u0065ve\u0020\u0063\u0065\u0072\u0074\u0069\u0066ic\u0061\u0074\u0065\u0020\u0063\u0068\u0061i\u006e");); +// Validate validates a PDF signature against a given digest (hash) such as that determined +// for an input file. Returns validation results. +Validate (_eeagbe *PdfSignature ,_efabg Hasher )(SignatureValidationResult ,error ); -// NewPdfAnnotationSound returns a new sound annotation. -func NewPdfAnnotationSound ()*PdfAnnotationSound {_bff :=NewPdfAnnotation ();_gab :=&PdfAnnotationSound {};_gab .PdfAnnotation =_bff ;_gab .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_bff .SetContext (_gab );return _gab ;}; +// InitSignature prepares the signature dictionary for signing. This involves setting all +// necessary fields, and also allocating sufficient space to the Contents so that the +// finalized signature can be inserted once the hash is calculated. +InitSignature (_cgeeg *PdfSignature )error ; -// PdfColorspaceCalGray represents CalGray color space. -type PdfColorspaceCalGray struct{WhitePoint []float64 ;BlackPoint []float64 ;Gamma float64 ;_ffbf *_aff .PdfIndirectObject ;}; +// NewDigest creates a new digest/hasher based on the signature dictionary and handler. +NewDigest (_caccf *PdfSignature )(Hasher ,error ); -// SubsetRegistered subsets the font to only the glyphs that have been registered by the encoder. -// -// NOTE: This only works on fonts that support subsetting. For unsupported fonts this is a no-op, although a debug -// message is emitted. Currently supported fonts are embedded Truetype CID fonts (type 0). -// -// NOTE: Make sure to call this soon before writing (once all needed runes have been registered). -// If using package creator, use its EnableFontSubsetting method instead. -func (_agdfg *PdfFont )SubsetRegistered ()error {switch _cccae :=_agdfg ._gebd .(type ){case *pdfFontType0 :_aeba :=_cccae .subsetRegistered ();if _aeba !=nil {_adg .Log .Debug ("\u0053\u0075b\u0073\u0065\u0074 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_aeba ); -return _aeba ;};if _cccae ._aaegb !=nil {if _cccae ._faggb !=nil {_cccae ._faggb .ToPdfObject ();};_cccae .ToPdfObject ();};default:_adg .Log .Debug ("F\u006f\u006e\u0074\u0020\u0025\u0054 \u0064\u006f\u0065\u0073\u0020\u006eo\u0074\u0020\u0073\u0075\u0070\u0070\u006fr\u0074\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069n\u0067",_cccae ); -};return nil ;}; - -// GetContainingPdfObject returns the container of the DSS (indirect object). -func (_ddaa *DSS )GetContainingPdfObject ()_aff .PdfObject {return _ddaa ._dfad }; +// Sign receives the hash `digest` (for example hash of an input file), and signs based +// on the signature dictionary `sig` and applies the signature data to the signature +// dictionary Contents field. +Sign (_dgagg *PdfSignature ,_bfebg Hasher )error ;}; -// NewPdfActionGoTo3DView returns a new "goTo3DView" action. -func NewPdfActionGoTo3DView ()*PdfActionGoTo3DView {_bed :=NewPdfAction ();_bfa :=&PdfActionGoTo3DView {};_bfa .PdfAction =_bed ;_bed .SetContext (_bfa );return _bfa ;};func _dadc (_baed *_aff .PdfObjectDictionary )bool {for _ ,_ddfa :=range _baed .Keys (){if _ ,_cegdf :=_eefae [_ddfa .String ()]; -_cegdf {return true ;};};return false ;}; +// NewPdfAnnotationStrikeOut returns a new text strikeout annotation. +func NewPdfAnnotationStrikeOut ()*PdfAnnotationStrikeOut {_fdcd :=NewPdfAnnotation ();_egb :=&PdfAnnotationStrikeOut {};_egb .PdfAnnotation =_fdcd ;_egb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_fdcd .SetContext (_egb );return _egb ;}; -// GetContentStream returns the pattern cell's content stream -func (_eedfb *PdfTilingPattern )GetContentStream ()([]byte ,error ){_baacea ,_ ,_eagab :=_eedfb .GetContentStreamWithEncoder ();return _baacea ,_eagab ;}; +// PdfAnnotationMarkup represents additional fields for mark-up annotations. +// (Section 12.5.6.2 p. 399). +type PdfAnnotationMarkup struct{T _dg .PdfObject ;Popup *PdfAnnotationPopup ;CA _dg .PdfObject ;RC _dg .PdfObject ;CreationDate _dg .PdfObject ;IRT _dg .PdfObject ;Subj _dg .PdfObject ;RT _dg .PdfObject ;IT _dg .PdfObject ;ExData _dg .PdfObject ;}; -// WriteToFile writes the output PDF to file. -func (_fagea *PdfWriter )WriteToFile (outputFilePath string )error {_ccfgd ,_dbage :=_db .Create (outputFilePath );if _dbage !=nil {return _dbage ;};defer _ccfgd .Close ();return _fagea .Write (_ccfgd );}; +// ColorToRGB only converts color used with uncolored patterns (defined in underlying colorspace). Does not go into the +// pattern objects and convert those. If that is desired, needs to be done separately. See for example +// grayscale conversion example in unidoc-examples repo. +func (_gecc *PdfColorspaceSpecialPattern )ColorToRGB (color PdfColor )(PdfColor ,error ){_eagbg ,_dceb :=color .(*PdfColorPattern );if !_dceb {_ag .Log .Debug ("\u0043\u006f\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0070a\u0074\u0074\u0065\u0072\u006e\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",color ); +return nil ,ErrTypeCheck ;};if _eagbg .Color ==nil {return color ,nil ;};if _gecc .UnderlyingCS ==nil {return nil ,_bf .New ("\u0075n\u0064\u0065\u0072\u006cy\u0069\u006e\u0067\u0020\u0043S\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};return _gecc .UnderlyingCS .ColorToRGB (_eagbg .Color ); +};func (_abdgf *PdfWriter )writeObjectsInStreams (_bbfbg map[_dg .PdfObject ]bool )error {for _ ,_bebcf :=range _abdgf ._agaba {if _bcag :=_bbfbg [_bebcf ];_bcag {continue ;};_deeb :=int64 (0);switch _gbge :=_bebcf .(type ){case *_dg .PdfIndirectObject :_deeb =_gbge .ObjectNumber ; +case *_dg .PdfObjectStream :_deeb =_gbge .ObjectNumber ;case *_dg .PdfObjectStreams :_deeb =_gbge .ObjectNumber ;default:_ag .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0055n\u0073\u0075\u0070\u0070\u006f\u0072\u0074e\u0064\u0020\u0074\u0079\u0070\u0065 \u0069\u006e\u0020\u0077\u0072\u0069\u0074\u0065\u0072\u0020\u006fb\u006a\u0065\u0063\u0074\u0073\u003a\u0020\u0025\u0054",_bebcf ); +return ErrTypeCheck ;};if _abdgf ._fadcg !=nil &&_bebcf !=_abdgf ._acdag {_aeda :=_abdgf ._fadcg .Encrypt (_bebcf ,_deeb ,0);if _aeda !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006e\u0067\u0020(%\u0073\u0029",_aeda ); +return _aeda ;};};_abdgf .writeObject (int (_deeb ),_bebcf );};return nil ;};func (_abbd *PdfReader )traverseObjectData (_dbff _dg .PdfObject )error {return _dg .ResolveReferencesDeep (_dbff ,_abbd ._addfg );}; -// ImageToRGB returns an error since an image cannot be defined in a pattern colorspace. -func (_eggfc *PdfColorspaceSpecialPattern )ImageToRGB (img Image )(Image ,error ){_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066i\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0061\u0074\u0074\u0065\u0072n \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065"); -return img ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0066\u006f\u0072\u0020\u0069m\u0061\u0067\u0065\u0020\u0028p\u0061\u0074t\u0065\u0072\u006e\u0029");}; +// PdfColorspaceDeviceNAttributes contains additional information about the components of colour space that +// conforming readers may use. Conforming readers need not use the alternateSpace and tintTransform parameters, +// and may instead use a custom blending algorithms, along with other information provided in the attributes +// dictionary if present. +type PdfColorspaceDeviceNAttributes struct{Subtype *_dg .PdfObjectName ;Colorants _dg .PdfObject ;Process _dg .PdfObject ;MixingHints _dg .PdfObject ;_ffbg *_dg .PdfIndirectObject ;}; -// NewPdfAnnotationFreeText returns a new free text annotation. -func NewPdfAnnotationFreeText ()*PdfAnnotationFreeText {_fca :=NewPdfAnnotation ();_cdeg :=&PdfAnnotationFreeText {};_cdeg .PdfAnnotation =_fca ;_cdeg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_fca .SetContext (_cdeg );return _cdeg ;}; +// ToPdfObject implements interface PdfModel. +func (_age *PdfAnnotationRichMedia )ToPdfObject ()_dg .PdfObject {_age .PdfAnnotation .ToPdfObject ();_gdfg :=_age ._cdf ;_cgda :=_gdfg .PdfObject .(*_dg .PdfObjectDictionary );_cgda .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0052i\u0063\u0068\u004d\u0065\u0064\u0069a")); +_cgda .SetIfNotNil ("\u0052\u0069\u0063\u0068\u004d\u0065\u0064\u0069\u0061\u0053\u0065\u0074t\u0069\u006e\u0067\u0073",_age .RichMediaSettings );_cgda .SetIfNotNil ("\u0052\u0069c\u0068\u004d\u0065d\u0069\u0061\u0043\u006f\u006e\u0074\u0065\u006e\u0074",_age .RichMediaContent ); +return _gdfg ;}; -// NewPdfColorspaceDeviceGray returns a new grayscale colorspace. -func NewPdfColorspaceDeviceGray ()*PdfColorspaceDeviceGray {return &PdfColorspaceDeviceGray {}}; +// GetRevision returns the specific version of the PdfReader for the current Pdf document +func (_gbee *PdfReader )GetRevision (revisionNumber int )(*PdfReader ,error ){_feeeg :=_gbee ._baad .GetRevisionNumber ();if revisionNumber < 0||revisionNumber > _feeeg {return nil ,_bf .New ("w\u0072\u006f\u006e\u0067 r\u0065v\u0069\u0073\u0069\u006f\u006e \u006e\u0075\u006d\u0062\u0065\u0072"); +};if revisionNumber ==_feeeg {return _gbee ,nil ;};if _gbee ._aggag [revisionNumber ]!=nil {return _gbee ._aggag [revisionNumber ],nil ;};_bbdcad :=_gbee ;for _ebbcb :=_feeeg -1;_ebbcb >=revisionNumber ;_ebbcb --{_agbd ,_abfd :=_bbdcad .GetPreviousRevision (); +if _abfd !=nil {return nil ,_abfd ;};_gbee ._aggag [_ebbcb ]=_agbd ;_bbdcad =_agbd ;};return _bbdcad ,nil ;}; -// ImageHandler interface implements common image loading and processing tasks. -// Implementing as an interface allows for the possibility to use non-standard libraries for faster -// loading and processing of images. -type ImageHandler interface{ +// ToPdfObject converts the PdfFont object to its PDF representation. +func (_dcfbb *PdfFont )ToPdfObject ()_dg .PdfObject {if _dcfbb ._cadf ==nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0066\u006f\u006e\u0074 \u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073 \u006e\u0069\u006c");return _dg .MakeNull (); +};return _dcfbb ._cadf .ToPdfObject ();};func (_ggeb *PdfReader )newPdfSignatureReferenceFromDict (_fadfe *_dg .PdfObjectDictionary )(*PdfSignatureReference ,error ){if _abdcc ,_dfgbb :=_ggeb ._cadfa .GetModelFromPrimitive (_fadfe ).(*PdfSignatureReference ); +_dfgbb {return _abdcc ,nil ;};_cgcbe :=&PdfSignatureReference {_eccgb :_fadfe ,Data :_fadfe .Get ("\u0044\u0061\u0074\u0061")};var _dceedc bool ;_cgcbe .Type ,_ =_dg .GetName (_fadfe .Get ("\u0054\u0079\u0070\u0065"));_cgcbe .TransformMethod ,_dceedc =_dg .GetName (_fadfe .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064")); +if !_dceedc {_ag .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0053\u0069g\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0054\u0072\u0061\u006e\u0073\u0066o\u0072\u006dM\u0065\u0074h\u006f\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020in\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0072\u0020m\u0069\u0073\u0073\u0069\u006e\u0067"); +return nil ,ErrInvalidAttribute ;};_cgcbe .TransformParams ,_ =_dg .GetDict (_fadfe .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"));_cgcbe .DigestMethod ,_ =_dg .GetName (_fadfe .Get ("\u0044\u0069\u0067e\u0073\u0074\u004d\u0065\u0074\u0068\u006f\u0064")); +return _cgcbe ,nil ;};func _dfdb (_gcegf *_dg .PdfObjectDictionary )(*PdfShadingType7 ,error ){_bgeeg :=PdfShadingType7 {};_afdce :=_gcegf .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065");if _afdce ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_fgfba ,_efcda :=_afdce .(*_dg .PdfObjectInteger );if !_efcda {_ag .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_afdce ); +return nil ,_dg .ErrTypeError ;};_bgeeg .BitsPerCoordinate =_fgfba ;_afdce =_gcegf .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _afdce ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); +return nil ,ErrRequiredAttributeMissing ;};_fgfba ,_efcda =_afdce .(*_dg .PdfObjectInteger );if !_efcda {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_afdce ); +return nil ,_dg .ErrTypeError ;};_bgeeg .BitsPerComponent =_fgfba ;_afdce =_gcegf .Get ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067");if _afdce ==nil {_ag .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065r\u0046\u006c\u0061\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_fgfba ,_efcda =_afdce .(*_dg .PdfObjectInteger );if !_efcda {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072F\u006c\u0061\u0067\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_afdce ); +return nil ,_dg .ErrTypeError ;};_bgeeg .BitsPerComponent =_fgfba ;_afdce =_gcegf .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _afdce ==nil {_ag .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_aebb ,_efcda :=_afdce .(*_dg .PdfObjectArray );if !_efcda {_ag .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_afdce ); +return nil ,_dg .ErrTypeError ;};_bgeeg .Decode =_aebb ;if _aecbf :=_gcegf .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_aecbf !=nil {_bgeeg .Function =[]PdfFunction {};if _cfgbdb ,_gggeea :=_aecbf .(*_dg .PdfObjectArray );_gggeea {for _ ,_gaeac :=range _cfgbdb .Elements (){_bbcd ,_bfgfe :=_agec (_gaeac ); +if _bfgfe !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_bfgfe );return nil ,_bfgfe ;};_bgeeg .Function =append (_bgeeg .Function ,_bbcd ); +};}else {_aaega ,_deab :=_agec (_aecbf );if _deab !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_deab );return nil ,_deab ;}; +_bgeeg .Function =append (_bgeeg .Function ,_aaega );};};return &_bgeeg ,nil ;}; -// Read any image type and load into a new Image object. -Read (_gecfc _ega .Reader )(*Image ,error ); +// NewPdfColorspaceSpecialSeparation returns a new separation color. +func NewPdfColorspaceSpecialSeparation ()*PdfColorspaceSpecialSeparation {_ebbde :=&PdfColorspaceSpecialSeparation {};return _ebbde ;}; -// NewImageFromGoImage loads a NRGBA32 unidoc Image from a standard Go image structure. -NewImageFromGoImage (_gade _cg .Image )(*Image ,error ); +// SetShadingByName sets a shading resource specified by keyName. +func (_cbbcf *PdfPageResources )SetShadingByName (keyName _dg .PdfObjectName ,shadingObj _dg .PdfObject )error {if _cbbcf .Shading ==nil {_cbbcf .Shading =_dg .MakeDict ();};_dgddc ,_abddg :=_dg .GetDict (_cbbcf .Shading );if !_abddg {return _dg .ErrTypeError ; +};_dgddc .Set (keyName ,shadingObj );return nil ;}; -// NewGrayImageFromGoImage loads a grayscale unidoc Image from a standard Go image structure. -NewGrayImageFromGoImage (_dcgf _cg .Image )(*Image ,error ); +// SubsetRegistered subsets the font to only the glyphs that have been registered by the encoder. +// +// NOTE: This only works on fonts that support subsetting. For unsupported fonts this is a no-op, although a debug +// message is emitted. Currently supported fonts are embedded Truetype CID fonts (type 0). +// +// NOTE: Make sure to call this soon before writing (once all needed runes have been registered). +// If using package creator, use its EnableFontSubsetting method instead. +func (_cegc *PdfFont )SubsetRegistered ()error {switch _eegab :=_cegc ._cadf .(type ){case *pdfFontType0 :_gegg :=_eegab .subsetRegistered ();if _gegg !=nil {_ag .Log .Debug ("\u0053\u0075b\u0073\u0065\u0074 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_gegg ); +return _gegg ;};if _eegab ._bedc !=nil {if _eegab ._ggec !=nil {_eegab ._ggec .ToPdfObject ();};_eegab .ToPdfObject ();};default:_ag .Log .Debug ("F\u006f\u006e\u0074\u0020\u0025\u0054 \u0064\u006f\u0065\u0073\u0020\u006eo\u0074\u0020\u0073\u0075\u0070\u0070\u006fr\u0074\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069n\u0067",_eegab ); +};return nil ;}; -// Compress an image. -Compress (_bfagf *Image ,_bbaec int64 )(*Image ,error );}; +// GetContentStreamObjs returns a slice of PDF objects containing the content +// streams of the page. +func (_dccab *PdfPage )GetContentStreamObjs ()[]_dg .PdfObject {if _dccab .Contents ==nil {return nil ;};_cgaee :=_dg .TraceToDirectObject (_dccab .Contents );if _dgfg ,_eegaa :=_cgaee .(*_dg .PdfObjectArray );_eegaa {return _dgfg .Elements ();};return []_dg .PdfObject {_cgaee }; +}; // ToPdfObject returns the PDF representation of the shading dictionary. -func (_fdgff *PdfShadingType5 )ToPdfObject ()_aff .PdfObject {_fdgff .PdfShading .ToPdfObject ();_bbgdg ,_acaad :=_fdgff .getShadingDict ();if _acaad !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _fdgff .BitsPerCoordinate !=nil {_bbgdg .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_fdgff .BitsPerCoordinate );};if _fdgff .BitsPerComponent !=nil {_bbgdg .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_fdgff .BitsPerComponent ); -};if _fdgff .VerticesPerRow !=nil {_bbgdg .Set ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073\u0050e\u0072\u0052\u006f\u0077",_fdgff .VerticesPerRow );};if _fdgff .Decode !=nil {_bbgdg .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_fdgff .Decode );}; -if _fdgff .Function !=nil {if len (_fdgff .Function )==1{_bbgdg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_fdgff .Function [0].ToPdfObject ());}else {_facaa :=_aff .MakeArray ();for _ ,_bdbag :=range _fdgff .Function {_facaa .Append (_bdbag .ToPdfObject ()); -};_bbgdg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_facaa );};};return _fdgff ._bdacg ;}; - -// GetOutlineTree returns the outline tree. -func (_gcgaf *PdfReader )GetOutlineTree ()*PdfOutlineTreeNode {return _gcgaf ._ecbcb };func _bfggb (_gabf []byte )(_bgde ,_bfdeb string ,_fggfd error ){_adg .Log .Trace ("g\u0065\u0074\u0041\u0053CI\u0049S\u0065\u0063\u0074\u0069\u006fn\u0073\u003a\u0020\u0025\u0064\u0020",len (_gabf )); -_bgdeb :=_eedcf .FindIndex (_gabf );if _bgdeb ==nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0067\u0065\u0074\u0041\u0053\u0043\u0049\u0049\u0053\u0065\u0063\u0074\u0069o\u006e\u0073\u002e\u0020\u004e\u006f\u0020d\u0069\u0063\u0074\u002e"); -return "","",_aff .ErrTypeError ;};_cacde :=_bgdeb [1];_affc :=_ba .Index (string (_gabf [_cacde :]),_gcef );if _affc < 0{_bgde =string (_gabf [_cacde :]);return _bgde ,"",nil ;};_ceff :=_cacde +_affc ;_bgde =string (_gabf [_cacde :_ceff ]);_ggcac :=_ceff ; -_affc =_ba .Index (string (_gabf [_ggcac :]),_fdbfce );if _affc < 0{_adg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0067e\u0074\u0041\u0053\u0043\u0049\u0049\u0053e\u0063\u0074\u0069\u006f\u006e\u0073\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fggfd ); -return "","",_aff .ErrTypeError ;};_fbeag :=_ggcac +_affc ;_bfdeb =string (_gabf [_ggcac :_fbeag ]);return _bgde ,_bfdeb ,nil ;}; +func (_caeba *PdfShadingType4 )ToPdfObject ()_dg .PdfObject {_caeba .PdfShading .ToPdfObject ();_cefea ,_baed :=_caeba .getShadingDict ();if _baed !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _caeba .BitsPerCoordinate !=nil {_cefea .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_caeba .BitsPerCoordinate );};if _caeba .BitsPerComponent !=nil {_cefea .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_caeba .BitsPerComponent ); +};if _caeba .BitsPerFlag !=nil {_cefea .Set ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067",_caeba .BitsPerFlag );};if _caeba .Decode !=nil {_cefea .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_caeba .Decode );};if _caeba .Function !=nil {if len (_caeba .Function )==1{_cefea .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_caeba .Function [0].ToPdfObject ()); +}else {_bbefg :=_dg .MakeArray ();for _ ,_bcgfad :=range _caeba .Function {_bbefg .Append (_bcgfad .ToPdfObject ());};_cefea .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_bbefg );};};return _caeba ._bcfbg ;}; -// NewPdfColorspaceDeviceCMYK returns a new CMYK32 colorspace object. -func NewPdfColorspaceDeviceCMYK ()*PdfColorspaceDeviceCMYK {return &PdfColorspaceDeviceCMYK {}}; +// PdfInfo holds document information that will overwrite +// document information global variables defined above. +type PdfInfo struct{Title *_dg .PdfObjectString ;Author *_dg .PdfObjectString ;Subject *_dg .PdfObjectString ;Keywords *_dg .PdfObjectString ;Creator *_dg .PdfObjectString ;Producer *_dg .PdfObjectString ;CreationDate *PdfDate ;ModifiedDate *PdfDate ;Trapped *_dg .PdfObjectName ; +_dccdg *_dg .PdfObjectDictionary ;}; -// EnableAll LTV enables all signatures in the PDF document. -// The signing certificate chain is extracted from each signature dictionary. -// Optionally, additional certificates can be specified through the -// `extraCerts` parameter. The LTV client attempts to build the certificate -// chain up to a trusted root by downloading any missing certificates. -func (_eadd *LTV )EnableAll (extraCerts []*_fb .Certificate )error {_ecdde :=_eadd ._bbbab ._dafgd .AcroForm ;for _ ,_ddefa :=range _ecdde .AllFields (){_ebdgg ,_ :=_ddefa .GetContext ().(*PdfFieldSignature );if _ebdgg ==nil {continue ;};_cgba :=_ebdgg .V ; -if _aadg :=_eadd .validateSig (_cgba );_aadg !=nil {_adg .Log .Debug ("\u0057\u0041\u0052N\u003a\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0076",_aadg ); -};if _degg :=_eadd .Enable (_cgba ,extraCerts );_degg !=nil {return _degg ;};};return nil ;};func _bedc ()string {_aebda .Lock ();defer _aebda .Unlock ();_dcbeg :=_gff .GetLicenseKey ();if len (_aaaab )> 0&&(_dcbeg .IsLicensed ()||_cafgd ){return _aaaab ; -};return _e .Sprintf ("\u0055\u006e\u0069Do\u0063\u0020\u0076\u0025\u0073\u0020\u0028\u0025\u0073)\u0020-\u0020h\u0074t\u0070\u003a\u002f\u002f\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f",_gccca (),_dcbeg .TypeToString ());}; +// NewPdfWriter initializes a new PdfWriter. +func NewPdfWriter ()PdfWriter {_edcg :=PdfWriter {};_edcg ._fdbfa =map[_dg .PdfObject ]struct{}{};_edcg ._agaba =[]_dg .PdfObject {};_edcg ._ccgade =map[_dg .PdfObject ][]*_dg .PdfObjectDictionary {};_edcg ._cffaa =map[_dg .PdfObject ]struct{}{};_edcg ._efacd .Major =1; +_edcg ._efacd .Minor =3;_fdeee :=_dg .MakeDict ();_abag :=[]struct{_gdgd _dg .PdfObjectName ;_gagfce string ;}{{"\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",_bbadae ()},{"\u0043r\u0065\u0061\u0074\u006f\u0072",_fgcbf ()},{"\u0041\u0075\u0074\u0068\u006f\u0072",_dgdbe ()},{"\u0053u\u0062\u006a\u0065\u0063\u0074",_aedcd ()},{"\u0054\u0069\u0074l\u0065",_daece ()},{"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",_bbece ()}}; +for _ ,_fedbd :=range _abag {if _fedbd ._gagfce !=""{_fdeee .Set (_fedbd ._gdgd ,_dg .MakeString (_fedbd ._gagfce ));};};if _dcadfb :=_bgcbab ();!_dcadfb .IsZero (){if _becdg ,_dadec :=NewPdfDateFromTime (_dcadfb );_dadec ==nil {_fdeee .Set ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_becdg .ToPdfObject ()); +};};if _abdac :=_ffeac ();!_abdac .IsZero (){if _agbdd ,_ffaab :=NewPdfDateFromTime (_abdac );_ffaab ==nil {_fdeee .Set ("\u004do\u0064\u0044\u0061\u0074\u0065",_agbdd .ToPdfObject ());};};_fefba :=_dg .PdfIndirectObject {};_fefba .PdfObject =_fdeee ;_edcg ._efbfa =&_fefba ; +_edcg .addObject (&_fefba );_afabg :=_dg .PdfIndirectObject {};_gcgcg :=_dg .MakeDict ();_gcgcg .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0043a\u0074\u0061\u006c\u006f\u0067"));_afabg .PdfObject =_gcgcg ;_edcg ._fadee =&_afabg ;_edcg .addObject (_edcg ._fadee ); +_gebfe ,_cefaae :=_aeegd ("\u0077");if _cefaae !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cefaae );};_edcg ._gdfbg =_gebfe ;_addfa :=_dg .PdfIndirectObject {};_egfed :=_dg .MakeDict ();_egfed .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0050\u0061\u0067e\u0073")); +_bebgd :=_dg .PdfObjectArray {};_egfed .Set ("\u004b\u0069\u0064\u0073",&_bebgd );_egfed .Set ("\u0043\u006f\u0075n\u0074",_dg .MakeInteger (0));_addfa .PdfObject =_egfed ;_edcg ._gbgb =&_addfa ;_edcg ._fegdf =map[_dg .PdfObject ]struct{}{};_edcg .addObject (_edcg ._gbgb ); +_gcgcg .Set ("\u0050\u0061\u0067e\u0073",&_addfa );_edcg ._ecdf =_gcgcg ;_ag .Log .Trace ("\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0025\u0073",_afabg );return _edcg ;}; -// GetSubFilter returns SubFilter value or empty string. -func (_adaae *pdfSignDictionary )GetSubFilter ()string {_dcdee :=_adaae .Get ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r");if _dcdee ==nil {return "";};if _ggdcb ,_bdagb :=_aff .GetNameVal (_dcdee );_bdagb {return _ggdcb ;};return "";}; +// SetOptimizer sets the optimizer to optimize PDF before writing. +func (_faceb *PdfWriter )SetOptimizer (optimizer Optimizer ){_faceb ._egeac =optimizer }; -// PdfColorLab represents a color in the L*, a*, b* 3 component colorspace. -// Each component is defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. -type PdfColorLab [3]float64 ; +// PdfAnnotationSquare represents Square annotations. +// (Section 12.5.6.8). +type PdfAnnotationSquare struct{*PdfAnnotation ;*PdfAnnotationMarkup ;BS _dg .PdfObject ;IC _dg .PdfObject ;BE _dg .PdfObject ;RD _dg .PdfObject ;}; -// Encrypt encrypts the output file with a specified user/owner password. -func (_eggeg *PdfWriter )Encrypt (userPass ,ownerPass []byte ,options *EncryptOptions )error {_baefc :=RC4_128bit ;if options !=nil {_baefc =options .Algorithm ;};_ecdeg :=_eec .PermOwner ;if options !=nil {_ecdeg =options .Permissions ;};var _acace _aa .Filter ; -switch _baefc {case RC4_128bit :_acace =_aa .NewFilterV2 (16);case AES_128bit :_acace =_aa .NewFilterAESV2 ();case AES_256bit :_acace =_aa .NewFilterAESV3 ();default:return _e .Errorf ("\u0075n\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020a\u006cg\u006fr\u0069\u0074\u0068\u006d\u003a\u0020\u0025v",options .Algorithm ); -};_dcdbag ,_adgf ,_fbbag :=_aff .PdfCryptNewEncrypt (_acace ,userPass ,ownerPass ,_ecdeg );if _fbbag !=nil {return _fbbag ;};_eggeg ._fcgf =_dcdbag ;if _adgf .Major !=0{_eggeg .SetVersion (_adgf .Major ,_adgf .Minor );};_eggeg ._egecb =_adgf .Encrypt ; -_eggeg ._bacb ,_eggeg ._aceag =_adgf .ID0 ,_adgf .ID1 ;_aafac :=_aff .MakeIndirectObject (_adgf .Encrypt );_eggeg ._fdedd =_aafac ;_eggeg .addObject (_aafac );return nil ;}; +// VRI represents a Validation-Related Information dictionary. +// The VRI dictionary contains validation data in the form of +// certificates, OCSP and CRL information, for a single signature. +// See ETSI TS 102 778-4 V1.1.1 for more information. +type VRI struct{Cert []*_dg .PdfObjectStream ;OCSP []*_dg .PdfObjectStream ;CRL []*_dg .PdfObjectStream ;TU *_dg .PdfObjectString ;TS *_dg .PdfObjectString ;}; -// Height returns the height of `rect`. -func (_ccccg *PdfRectangle )Height ()float64 {return _cf .Abs (_ccccg .Ury -_ccccg .Lly )}; +// SetType sets the field button's type. Can be one of: +// - PdfFieldButtonPush for push button fields +// - PdfFieldButtonCheckbox for checkbox fields +// - PdfFieldButtonRadio for radio button fields +// This sets the field's flag appropriately. +func (_efef *PdfFieldButton )SetType (btype ButtonType ){_adbae :=uint32 (0);if _efef .Ff !=nil {_adbae =uint32 (*_efef .Ff );};switch btype {case ButtonTypePush :_adbae |=FieldFlagPushbutton .Mask ();case ButtonTypeRadio :_adbae |=FieldFlagRadio .Mask (); +};_efef .Ff =_dg .MakeInteger (int64 (_adbae ));}; -// AnnotFilterFunc represents a PDF annotation filtering function. If the function -// returns true, the annotation is kept, otherwise it is discarded. -type AnnotFilterFunc func (*PdfAnnotation )bool ;func (_cebf *PdfWriter )optimize ()error {if _cebf ._bgbg ==nil {return nil ;};var _accfdb error ;_cebf ._babcd ,_accfdb =_cebf ._bgbg .Optimize (_cebf ._babcd );if _accfdb !=nil {return _accfdb ;};_adabg :=make (map[_aff .PdfObject ]struct{},len (_cebf ._babcd )); -for _ ,_bcbae :=range _cebf ._babcd {_adabg [_bcbae ]=struct{}{};};_cebf ._bgadg =_adabg ;return nil ;}; +// PdfFontDescriptor specifies metrics and other attributes of a font and can refer to a FontFile +// for embedded fonts. +// 9.8 Font Descriptors (page 281) +type PdfFontDescriptor struct{FontName _dg .PdfObject ;FontFamily _dg .PdfObject ;FontStretch _dg .PdfObject ;FontWeight _dg .PdfObject ;Flags _dg .PdfObject ;FontBBox _dg .PdfObject ;ItalicAngle _dg .PdfObject ;Ascent _dg .PdfObject ;Descent _dg .PdfObject ; +Leading _dg .PdfObject ;CapHeight _dg .PdfObject ;XHeight _dg .PdfObject ;StemV _dg .PdfObject ;StemH _dg .PdfObject ;AvgWidth _dg .PdfObject ;MaxWidth _dg .PdfObject ;MissingWidth _dg .PdfObject ;FontFile _dg .PdfObject ;FontFile2 _dg .PdfObject ;FontFile3 _dg .PdfObject ; +CharSet _dg .PdfObject ;_gcdf int ;_adggg float64 ;*fontFile ;_gbcg *_bbg .TtfType ; -// Encoder returns the font's text encoder. -func (_abga pdfFontType3 )Encoder ()_eee .TextEncoder {return _abga ._bfcg };const (BorderStyleSolid BorderStyle =iota ;BorderStyleDashed BorderStyle =iota ;BorderStyleBeveled BorderStyle =iota ;BorderStyleInset BorderStyle =iota ;BorderStyleUnderline BorderStyle =iota ; -); +// Additional entries for CIDFonts +Style _dg .PdfObject ;Lang _dg .PdfObject ;FD _dg .PdfObject ;CIDSet _dg .PdfObject ;_acag *_dg .PdfIndirectObject ;}; -// NewPdfSignature creates a new PdfSignature object. -func NewPdfSignature (handler SignatureHandler )*PdfSignature {_dagb :=&PdfSignature {Type :_aff .MakeName ("\u0053\u0069\u0067"),Handler :handler };_cdcge :=&pdfSignDictionary {PdfObjectDictionary :_aff .MakeDict (),_efde :&handler ,_afgeg :_dagb };_dagb ._gagbc =_aff .MakeIndirectObject (_cdcge ); -return _dagb ;}; +// PdfColorspaceCalGray represents CalGray color space. +type PdfColorspaceCalGray struct{WhitePoint []float64 ;BlackPoint []float64 ;Gamma float64 ;_gcbf *_dg .PdfIndirectObject ;}; -// ReplaceAcroForm replaces the acrobat form. It appends a new form to the Pdf which -// replaces the original AcroForm. -func (_fgdc *PdfAppender )ReplaceAcroForm (acroForm *PdfAcroForm ){if acroForm !=nil {_fgdc .updateObjectsDeep (acroForm .ToPdfObject (),nil );};_fgdc ._bgac =acroForm ;};func _abeg (_gcgab _aff .PdfObject )(*PdfColorspaceDeviceN ,error ){_ecga :=NewPdfColorspaceDeviceN (); -if _cbcg ,_dbcd :=_gcgab .(*_aff .PdfIndirectObject );_dbcd {_ecga ._debe =_cbcg ;};_gcgab =_aff .TraceToDirectObject (_gcgab );_gadd ,_dcbg :=_gcgab .(*_aff .PdfObjectArray );if !_dcbg {return nil ,_e .Errorf ("\u0064\u0065\u0076\u0069\u0063\u0065\u004e\u0020\u0043\u0053\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0062j\u0065\u0063\u0074"); -};if _gadd .Len ()!=4&&_gadd .Len ()!=5{return nil ,_e .Errorf ("\u0064\u0065\u0076ic\u0065\u004e\u0020\u0043\u0053\u003a\u0020\u0049\u006ec\u006fr\u0072e\u0063t\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068");};_gcgab =_gadd .Get (0); -_bgabc ,_dcbg :=_gcgab .(*_aff .PdfObjectName );if !_dcbg {return nil ,_e .Errorf ("\u0064\u0065\u0076i\u0063\u0065\u004e\u0020C\u0053\u003a\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020\u006e\u0061\u006d\u0065"); -};if *_bgabc !="\u0044e\u0076\u0069\u0063\u0065\u004e"{return nil ,_e .Errorf ("\u0064\u0065v\u0069\u0063\u0065\u004e\u0020\u0043\u0053\u003a\u0020\u0077\u0072\u006f\u006e\u0067\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020na\u006d\u0065");};_gcgab =_gadd .Get (1); -_gcgab =_aff .TraceToDirectObject (_gcgab );_bbbgb ,_dcbg :=_gcgab .(*_aff .PdfObjectArray );if !_dcbg {return nil ,_e .Errorf ("\u0064\u0065\u0076i\u0063\u0065\u004e\u0020C\u0053\u003a\u0020\u0049\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0061\u006d\u0065\u0073\u0020\u0061\u0072\u0072\u0061\u0079"); -};_ecga .ColorantNames =_bbbgb ;_gcgab =_gadd .Get (2);_ddece ,_edaa :=NewPdfColorspaceFromPdfObject (_gcgab );if _edaa !=nil {return nil ,_edaa ;};_ecga .AlternateSpace =_ddece ;_fbed ,_edaa :=_fdfeg (_gadd .Get (3));if _edaa !=nil {return nil ,_edaa ; -};_ecga .TintTransform =_fbed ;if _gadd .Len ()==5{_ggdgc ,_eegf :=_gbge (_gadd .Get (4));if _eegf !=nil {return nil ,_eegf ;};_ecga .Attributes =_ggdgc ;};return _ecga ,nil ;}; +// ImageToRGB converts Lab colorspace image to RGB and returns the result. +func (_gab *PdfColorspaceLab )ImageToRGB (img Image )(Image ,error ){_acfa :=func (_acbb float64 )float64 {if _acbb >=6.0/29{return _acbb *_acbb *_acbb ;};return 108.0/841*(_acbb -4.0/29.0);};_feeee :=img ._gfbb ;if len (_feeee )!=6{_ag .Log .Trace ("\u0049\u006d\u0061\u0067\u0065\u0020\u002d\u0020\u004c\u0061\u0062\u0020\u0044e\u0063\u006f\u0064\u0065\u0020\u0072\u0061\u006e\u0067e\u0020\u0021\u003d\u0020\u0036\u002e\u002e\u002e\u0020\u0075\u0073\u0065\u0020\u005b0\u0020\u0031\u0030\u0030\u0020\u0061\u006d\u0069\u006e\u0020\u0061\u006d\u0061\u0078\u0020\u0062\u006d\u0069\u006e\u0020\u0062\u006d\u0061\u0078\u005d\u0020\u0064\u0065\u0066\u0061u\u006c\u0074\u0020\u0064\u0065\u0063\u006f\u0064\u0065 \u0061\u0072r\u0061\u0079"); +_feeee =_gab .DecodeArray ();};_cef :=_fcd .NewReader (img .getBase ());_adaf :=_fc .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),3,nil ,img ._dgeb ,img ._gfbb );_gfca :=_fcd .NewWriter (_adaf );_dcf :=_cg .Pow (2,float64 (img .BitsPerComponent ))-1; +_dbfe :=make ([]uint32 ,3);var (_dcabf error ;Ls ,As ,Bs ,L ,M ,N ,X ,Y ,Z ,_adgdd ,_dcd ,_afgef float64 ;);for {_dcabf =_cef .ReadSamples (_dbfe );if _dcabf ==_cf .EOF {break ;}else if _dcabf !=nil {return img ,_dcabf ;};Ls =float64 (_dbfe [0])/_dcf ; +As =float64 (_dbfe [1])/_dcf ;Bs =float64 (_dbfe [2])/_dcf ;Ls =_fc .LinearInterpolate (Ls ,0.0,1.0,_feeee [0],_feeee [1]);As =_fc .LinearInterpolate (As ,0.0,1.0,_feeee [2],_feeee [3]);Bs =_fc .LinearInterpolate (Bs ,0.0,1.0,_feeee [4],_feeee [5]);L =(Ls +16)/116+As /500; +M =(Ls +16)/116;N =(Ls +16)/116-Bs /200;X =_gab .WhitePoint [0]*_acfa (L );Y =_gab .WhitePoint [1]*_acfa (M );Z =_gab .WhitePoint [2]*_acfa (N );_adgdd =3.240479*X +-1.537150*Y +-0.498535*Z ;_dcd =-0.969256*X +1.875992*Y +0.041556*Z ;_afgef =0.055648*X +-0.204043*Y +1.057311*Z ; +_adgdd =_cg .Min (_cg .Max (_adgdd ,0),1.0);_dcd =_cg .Min (_cg .Max (_dcd ,0),1.0);_afgef =_cg .Min (_cg .Max (_afgef ,0),1.0);_dbfe [0]=uint32 (_adgdd *_dcf );_dbfe [1]=uint32 (_dcd *_dcf );_dbfe [2]=uint32 (_afgef *_dcf );if _dcabf =_gfca .WriteSamples (_dbfe ); +_dcabf !=nil {return img ,_dcabf ;};};return _edcf (&_adaf ),nil ;};const (BorderEffectNoEffect BorderEffect =iota ;BorderEffectCloudy BorderEffect =iota ;); -// GetFillImage get attached model.Image in push button. -func (_geeec *PdfFieldButton )GetFillImage ()*Image {if _geeec .IsPush (){return _geeec ._agbe ;};return nil ;}; +// String returns a string that describes `base`. +func (_aaaf fontCommon )String ()string {return _b .Sprintf ("\u0046\u004f\u004e\u0054\u007b\u0025\u0073\u007d",_aaaf .coreString ());}; -// AddWatermarkImage adds a watermark to the page. -func (_cfcbd *PdfPage )AddWatermarkImage (ximg *XObjectImage ,opt WatermarkImageOptions )error {_cefa ,_cfadb :=_cfcbd .GetMediaBox ();if _cfadb !=nil {return _cfadb ;};_dbebd :=_cefa .Urx -_cefa .Llx ;_dgdgb :=_cefa .Ury -_cefa .Lly ;_eeebf :=float64 (*ximg .Width ); -_bdfe :=(_dbebd -_eeebf )/2;if opt .FitToWidth {_eeebf =_dbebd ;_bdfe =0;};_ddgdb :=_dgdgb ;_aaae :=float64 (0);if opt .PreserveAspectRatio {_ddgdb =_eeebf *float64 (*ximg .Height )/float64 (*ximg .Width );_aaae =(_dgdgb -_ddgdb )/2;};if _cfcbd .Resources ==nil {_cfcbd .Resources =NewPdfPageResources (); -};_aeffc :=0;_fgcae :=_aff .PdfObjectName (_e .Sprintf ("\u0049\u006d\u0077%\u0064",_aeffc ));for _cfcbd .Resources .HasXObjectByName (_fgcae ){_aeffc ++;_fgcae =_aff .PdfObjectName (_e .Sprintf ("\u0049\u006d\u0077%\u0064",_aeffc ));};_cfadb =_cfcbd .AddImageResource (_fgcae ,ximg ); -if _cfadb !=nil {return _cfadb ;};_aeffc =0;_agbce :=_aff .PdfObjectName (_e .Sprintf ("\u0047\u0053\u0025\u0064",_aeffc ));for _cfcbd .HasExtGState (_agbce ){_aeffc ++;_agbce =_aff .PdfObjectName (_e .Sprintf ("\u0047\u0053\u0025\u0064",_aeffc ));};_ggcga :=_aff .MakeDict (); -_ggcga .Set ("\u0042\u004d",_aff .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c"));_ggcga .Set ("\u0043\u0041",_aff .MakeFloat (opt .Alpha ));_ggcga .Set ("\u0063\u0061",_aff .MakeFloat (opt .Alpha ));_cfadb =_cfcbd .AddExtGState (_agbce ,_ggcga );if _cfadb !=nil {return _cfadb ; -};_gbaac :=_e .Sprintf ("\u0071\u000a"+"\u002f%\u0073\u0020\u0067\u0073\u000a"+"%\u002e\u0030\u0066\u0020\u0030\u00200\u0020\u0025\u002e\u0030\u0066\u0020\u0025\u002e\u0034f\u0020\u0025\u002e4\u0066 \u0063\u006d\u000a"+"\u002f%\u0073\u0020\u0044\u006f\u000a"+"\u0051",_agbce ,_eeebf ,_ddgdb ,_bdfe ,_aaae ,_fgcae ); -_cfcbd .AddContentStreamByString (_gbaac );return nil ;}; +// GetNumComponents returns the number of color components of the colorspace device. +// Returns 3 for a CalRGB device. +func (_adfdc *PdfColorspaceCalRGB )GetNumComponents ()int {return 3}; // ToPdfObject implements interface PdfModel. -func (_cge *PdfAnnotationSquare )ToPdfObject ()_aff .PdfObject {_cge .PdfAnnotation .ToPdfObject ();_cgff :=_cge ._ccfb ;_egac :=_cgff .PdfObject .(*_aff .PdfObjectDictionary );if _cge .PdfAnnotationMarkup !=nil {_cge .PdfAnnotationMarkup .appendToPdfDictionary (_egac ); -};_egac .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0053\u0071\u0075\u0061\u0072\u0065"));_egac .SetIfNotNil ("\u0042\u0053",_cge .BS );_egac .SetIfNotNil ("\u0049\u0043",_cge .IC );_egac .SetIfNotNil ("\u0042\u0045",_cge .BE ); -_egac .SetIfNotNil ("\u0052\u0044",_cge .RD );return _cgff ;}; +// Note: Call the sub-annotation's ToPdfObject to set both the generic and non-generic information. +func (_fgfe *PdfAnnotation )ToPdfObject ()_dg .PdfObject {_cdfd :=_fgfe ._cdf ;_abdcf :=_cdfd .PdfObject .(*_dg .PdfObjectDictionary );_abdcf .Clear ();_abdcf .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0041\u006e\u006eo\u0074"));_abdcf .SetIfNotNil ("\u0052\u0065\u0063\u0074",_fgfe .Rect ); +_abdcf .SetIfNotNil ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_fgfe .Contents );_abdcf .SetIfNotNil ("\u0050",_fgfe .P );_abdcf .SetIfNotNil ("\u004e\u004d",_fgfe .NM );_abdcf .SetIfNotNil ("\u004d",_fgfe .M );_abdcf .SetIfNotNil ("\u0046",_fgfe .F ); +_abdcf .SetIfNotNil ("\u0041\u0050",_fgfe .AP );_abdcf .SetIfNotNil ("\u0041\u0053",_fgfe .AS );_abdcf .SetIfNotNil ("\u0042\u006f\u0072\u0064\u0065\u0072",_fgfe .Border );_abdcf .SetIfNotNil ("\u0043",_fgfe .C );_abdcf .SetIfNotNil ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074",_fgfe .StructParent ); +_abdcf .SetIfNotNil ("\u004f\u0043",_fgfe .OC );return _cdfd ;}; -// AddImageResource adds an image to the XObject resources. -func (_fddgb *PdfPage )AddImageResource (name _aff .PdfObjectName ,ximg *XObjectImage )error {var _babec *_aff .PdfObjectDictionary ;if _fddgb .Resources .XObject ==nil {_babec =_aff .MakeDict ();_fddgb .Resources .XObject =_babec ;}else {var _edcdg bool ; -_babec ,_edcdg =(_fddgb .Resources .XObject ).(*_aff .PdfObjectDictionary );if !_edcdg {return _g .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0078\u0072\u0065\u0073\u0020\u0064\u0069\u0063\u0074\u0020\u0074\u0079p\u0065");};};_babec .Set (name ,ximg .ToPdfObject ()); -return nil ;}; +// GetPrimitiveFromModel returns the primitive object corresponding to the input `model`. +func (_daad *modelManager )GetPrimitiveFromModel (model PdfModel )_dg .PdfObject {_fbacd ,_bgcbb :=_daad ._aaddgg [model ];if !_bgcbb {return nil ;};return _fbacd ;}; -// NewPdfActionSetOCGState returns a new "named" action. -func NewPdfActionSetOCGState ()*PdfActionSetOCGState {_aba :=NewPdfAction ();_bbb :=&PdfActionSetOCGState {};_bbb .PdfAction =_aba ;_aba .SetContext (_bbb );return _bbb ;};func _cdffb (_ebega *_aff .PdfObjectArray )(float64 ,error ){_edfbg ,_dbfad :=_ebega .ToFloat64Array (); -if _dbfad !=nil {_adg .Log .Debug ("\u0042\u0061\u0064\u0020\u004d\u0061\u0074\u0074\u0065\u0020\u0061\u0072\u0072\u0061\u0079:\u0020m\u0061\u0074\u0074\u0065\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_ebega ,_dbfad );};switch len (_edfbg ){case 1:return _edfbg [0],nil ; -case 3:_ggbge :=PdfColorspaceDeviceRGB {};_bbec ,_fcdfc :=_ggbge .ColorFromFloats (_edfbg );if _fcdfc !=nil {return 0.0,_fcdfc ;};return _bbec .(*PdfColorDeviceRGB ).ToGray ().Val (),nil ;case 4:_gccae :=PdfColorspaceDeviceCMYK {};_ggggc ,_agcb :=_gccae .ColorFromFloats (_edfbg ); -if _agcb !=nil {return 0.0,_agcb ;};_aadae ,_agcb :=_gccae .ColorToRGB (_ggggc .(*PdfColorDeviceCMYK ));if _agcb !=nil {return 0.0,_agcb ;};return _aadae .(*PdfColorDeviceRGB ).ToGray ().Val (),nil ;};_dbfad =_g .New ("\u0062a\u0064 \u004d\u0061\u0074\u0074\u0065\u0020\u0063\u006f\u006c\u006f\u0072"); -_adg .Log .Error ("\u0074\u006f\u0047ra\u0079\u003a\u0020\u006d\u0061\u0074\u0074\u0065\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_ebega ,_dbfad );return 0.0,_dbfad ;}; +// ReplaceAcroForm replaces the acrobat form. It appends a new form to the Pdf which +// replaces the original AcroForm. +func (_cfba *PdfAppender )ReplaceAcroForm (acroForm *PdfAcroForm ){if acroForm !=nil {_cfba .updateObjectsDeep (acroForm .ToPdfObject (),nil );};_cfba ._afab =acroForm ;};func (_dee *PdfReader )newPdfAnnotationRedactFromDict (_cea *_dg .PdfObjectDictionary )(*PdfAnnotationRedact ,error ){_fabb :=PdfAnnotationRedact {}; +_afcd ,_caggb :=_dee .newPdfAnnotationMarkupFromDict (_cea );if _caggb !=nil {return nil ,_caggb ;};_fabb .PdfAnnotationMarkup =_afcd ;_fabb .QuadPoints =_cea .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");_fabb .IC =_cea .Get ("\u0049\u0043"); +_fabb .RO =_cea .Get ("\u0052\u004f");_fabb .OverlayText =_cea .Get ("O\u0076\u0065\u0072\u006c\u0061\u0079\u0054\u0065\u0078\u0074");_fabb .Repeat =_cea .Get ("\u0052\u0065\u0070\u0065\u0061\u0074");_fabb .DA =_cea .Get ("\u0044\u0041");_fabb .Q =_cea .Get ("\u0051"); +return &_fabb ,nil ;};func (_dbec *PdfReader )loadOutlines ()(*PdfOutlineTreeNode ,error ){if _dbec ._baad .GetCrypter ()!=nil &&!_dbec ._baad .IsAuthenticated (){return nil ,_b .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); +};_dcada :=_dbec ._gccfb ;_cfdbe :=_dcada .Get ("\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073");if _cfdbe ==nil {return nil ,nil ;};_ag .Log .Trace ("\u002d\u0048\u0061\u0073\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0073");_accgf :=_dg .ResolveReference (_cfdbe ); +_ag .Log .Trace ("\u004f\u0075t\u006c\u0069\u006ee\u0020\u0072\u006f\u006f\u0074\u003a\u0020\u0025\u0076",_accgf );if _fdbaa :=_dg .IsNullObject (_accgf );_fdbaa {_ag .Log .Trace ("\u004f\u0075\u0074li\u006e\u0065\u0020\u0072\u006f\u006f\u0074\u0020\u0069s\u0020n\u0075l\u006c \u002d\u0020\u006e\u006f\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0073"); +return nil ,nil ;};_eddbf ,_aedf :=_accgf .(*_dg .PdfIndirectObject );if !_aedf {if _ ,_gacca :=_dg .GetDict (_accgf );!_gacca {_ag .Log .Debug ("\u0049\u006e\u0076a\u006c\u0069\u0064\u0020o\u0075\u0074\u006c\u0069\u006e\u0065\u0020r\u006f\u006f\u0074\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067"); +return nil ,nil ;};_ag .Log .Debug ("\u004f\u0075t\u006c\u0069\u006e\u0065\u0020r\u006f\u006f\u0074\u0020\u0069s\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u002e\u0020\u0053\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +_eddbf =_dg .MakeIndirectObject (_accgf );};_eabba ,_aedf :=_eddbf .PdfObject .(*_dg .PdfObjectDictionary );if !_aedf {return nil ,_bf .New ("\u006f\u0075\u0074\u006c\u0069n\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y"); +};_ag .Log .Trace ("O\u0075\u0074\u006c\u0069ne\u0020r\u006f\u006f\u0074\u0020\u0064i\u0063\u0074\u003a\u0020\u0025\u0076",_eabba );_gcef ,_ ,_bfafe :=_dbec .buildOutlineTree (_eddbf ,nil ,nil ,nil );if _bfafe !=nil {return nil ,_bfafe ;};_ag .Log .Trace ("\u0052\u0065\u0073\u0075\u006c\u0074\u0069\u006e\u0067\u0020\u006fu\u0074\u006c\u0069\u006e\u0065\u0020\u0074\u0072\u0065\u0065:\u0020\u0025\u0076",_gcef ); +return _gcef ,nil ;};func _fecf (_abac []byte )[]byte {const _ecfdc =52845;const _afcbc =22719;_ccad :=55665;for _ ,_dbbdb :=range _abac [:4]{_ccad =(int (_dbbdb )+_ccad )*_ecfdc +_afcbc ;};_cagea :=make ([]byte ,len (_abac )-4);for _gbdg ,_eeafa :=range _abac [4:]{_cagea [_gbdg ]=byte (int (_eeafa )^_ccad >>8); +_ccad =(int (_eeafa )+_ccad )*_ecfdc +_afcbc ;};return _cagea ;}; -// NewImageFromGoImage creates a new NRGBA32 unidoc Image from a golang Image. -// If `goimg` is grayscale (*goimage.Gray8) then calls NewGrayImageFromGoImage instead. -func (_ggcg DefaultImageHandler )NewImageFromGoImage (goimg _cg .Image )(*Image ,error ){_cbfab ,_cdbbg :=_gd .FromGoImage (goimg );if _cdbbg !=nil {return nil ,_cdbbg ;};_bggg :=_efecb (_cbfab .Base ());return &_bggg ,nil ;}; +// AlphaMapFunc represents a alpha mapping function: byte -> byte. Can be used for +// thresholding the alpha channel, i.e. setting all alpha values below threshold to transparent. +type AlphaMapFunc func (_eadca byte )byte ; -// ToPdfObject converts the pdfCIDFontType0 to a PDF representation. -func (_accag *pdfCIDFontType0 )ToPdfObject ()_aff .PdfObject {return _aff .MakeNull ()}; +// GetNumComponents returns the number of color components of the underlying +// colorspace device. +func (_ccdc *PdfColorspaceSpecialPattern )GetNumComponents ()int {return _ccdc .UnderlyingCS .GetNumComponents ();};func (_gegc fontCommon )isCIDFont ()bool {if _gegc ._bcga ==""{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0069\u0073\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u002e\u0020\u0063o\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_gegc ); +};_cfec :=false ;switch _gegc ._bcga {case "\u0054\u0079\u0070e\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":_cfec =true ;};_ag .Log .Trace ("i\u0073\u0043\u0049\u0044\u0046\u006fn\u0074\u003a\u0020\u0069\u0073\u0043\u0049\u0044\u003d%\u0074\u0020\u0066o\u006et\u003d\u0025\u0073",_cfec ,_gegc ); +return _cfec ;}; -// ImageToRGB converts an Image in a given PdfColorspace to an RGB image. -func (_cbacf *PdfColorspaceDeviceN )ImageToRGB (img Image )(Image ,error ){_agdfe :=_aae .NewReader (img .getBase ());_eged :=_gd .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,nil ,img ._becb ,img ._edgef ); -_ageg :=_aae .NewWriter (_eged );_ebad :=_cf .Pow (2,float64 (img .BitsPerComponent ))-1;_aafb :=_cbacf .GetNumComponents ();_becd :=make ([]uint32 ,_aafb );_dcae :=make ([]float64 ,_aafb );for {_agaf :=_agdfe .ReadSamples (_becd );if _agaf ==_ega .EOF {break ; -}else if _agaf !=nil {return img ,_agaf ;};for _cfbe :=0;_cfbe < _aafb ;_cfbe ++{_dcbb :=float64 (_becd [_cfbe ])/_ebad ;_dcae [_cfbe ]=_dcbb ;};_cegde ,_agaf :=_cbacf .TintTransform .Evaluate (_dcae );if _agaf !=nil {return img ,_agaf ;};for _ ,_gdac :=range _cegde {_gdac =_cf .Min (_cf .Max (0,_gdac ),1.0); -if _agaf =_ageg .WriteSample (uint32 (_gdac *_ebad ));_agaf !=nil {return img ,_agaf ;};};};return _cbacf .AlternateSpace .ImageToRGB (_efecb (&_eged ));}; +// PdfSignatureReference represents a PDF signature reference dictionary and is used for signing via form signature fields. +// (Section 12.8.1, Table 253 - Entries in a signature reference dictionary p. 469 in PDF32000_2008). +type PdfSignatureReference struct{_eccgb *_dg .PdfObjectDictionary ;Type *_dg .PdfObjectName ;TransformMethod *_dg .PdfObjectName ;TransformParams _dg .PdfObject ;Data _dg .PdfObject ;DigestMethod *_dg .PdfObjectName ;}; -// NewCompositePdfFontFromTTFFile loads a composite font from a TTF font file. Composite fonts can -// be used to represent unicode fonts which can have multi-byte character codes, representing a wide -// range of values. They are often used for symbolic languages, including Chinese, Japanese and Korean. -// It is represented by a Type0 Font with an underlying CIDFontType2 and an Identity-H encoding map. -// TODO: May be extended in the future to support a larger variety of CMaps and vertical fonts. -// NOTE: For simple fonts, use NewPdfFontFromTTFFile. -func NewCompositePdfFontFromTTFFile (filePath string )(*PdfFont ,error ){_eebb ,_begf :=_db .Open (filePath );if _begf !=nil {_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u006f\u0070\u0065\u006e\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0076",_begf ); -return nil ,_begf ;};defer _eebb .Close ();return NewCompositePdfFontFromTTF (_eebb );};func (_ecee *PdfReader )newPdfAnnotationMovieFromDict (_gaaf *_aff .PdfObjectDictionary )(*PdfAnnotationMovie ,error ){_cbfd :=PdfAnnotationMovie {};_cbfd .T =_gaaf .Get ("\u0054"); -_cbfd .Movie =_gaaf .Get ("\u004d\u006f\u0076i\u0065");_cbfd .A =_gaaf .Get ("\u0041");return &_cbfd ,nil ;}; +// NewPdfSignature creates a new PdfSignature object. +func NewPdfSignature (handler SignatureHandler )*PdfSignature {_gbagb :=&PdfSignature {Type :_dg .MakeName ("\u0053\u0069\u0067"),Handler :handler };_bcddg :=&pdfSignDictionary {PdfObjectDictionary :_dg .MakeDict (),_cgdea :&handler ,_cdfca :_gbagb };_gbagb ._bbda =_dg .MakeIndirectObject (_bcddg ); +return _gbagb ;}; -// NewPdfShadingPatternType3 creates an empty shading pattern type 3 object. -func NewPdfShadingPatternType3 ()*PdfShadingPatternType3 {_aecdda :=&PdfShadingPatternType3 {};_aecdda .Matrix =_aff .MakeArrayFromIntegers ([]int {1,0,0,1,0,0});_aecdda .PdfPattern =&PdfPattern {};_aecdda .PdfPattern .PatternType =int64 (*_aff .MakeInteger (2)); -_aecdda .PdfPattern ._abbe =_aecdda ;_aecdda .PdfPattern ._cfegc =_aff .MakeIndirectObject (_aff .MakeDict ());return _aecdda ;}; +// AppendContentStream adds content stream by string. Appends to the last +// contentstream instance if many. +func (_afaf *PdfPage )AppendContentStream (contentStr string )error {_debea ,_dbda :=_afaf .GetContentStreams ();if _dbda !=nil {return _dbda ;};if len (_debea )==0{_debea =[]string {contentStr };return _afaf .SetContentStreams (_debea ,_dg .NewFlateEncoder ()); +};var _gefe _bc .Buffer ;_gefe .WriteString (_debea [len (_debea )-1]);_gefe .WriteString ("\u000a");_gefe .WriteString (contentStr );_debea [len (_debea )-1]=_gefe .String ();return _afaf .SetContentStreams (_debea ,_dg .NewFlateEncoder ());};func (_fbaag *pdfFontSimple )addEncoding ()error {var (_dfgbd string ; +_ggfag map[_bd .CharCode ]_bd .GlyphName ;_ecgbe _bd .SimpleEncoder ;);if _fbaag .Encoder ()!=nil {_bdcfd ,_eeeee :=_fbaag .Encoder ().(_bd .SimpleEncoder );if _eeeee &&_bdcfd !=nil {_dfgbd =_bdcfd .BaseName ();};};if _fbaag .Encoding !=nil {_efdbc ,_gbcdd ,_fbed :=_fbaag .getFontEncoding (); +if _fbed !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042\u0061\u0073\u0065F\u006f\u006e\u0074\u003d\u0025\u0071\u0020\u0053u\u0062t\u0079\u0070\u0065\u003d\u0025\u0071\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003d\u0025\u0073 \u0028\u0025\u0054\u0029\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fbaag ._ecbf ,_fbaag ._bcga ,_fbaag .Encoding ,_fbaag .Encoding ,_fbed ); +return _fbed ;};if _efdbc !=""{_dfgbd =_efdbc ;};_ggfag =_gbcdd ;_ecgbe ,_fbed =_bd .NewSimpleTextEncoder (_dfgbd ,_ggfag );if _fbed !=nil {return _fbed ;};};if _ecgbe ==nil {_fgdcd :=_fbaag ._ccfb ;if _fgdcd !=nil {switch _fbaag ._bcga {case "\u0054\u0079\u0070e\u0031":if _fgdcd .fontFile !=nil &&_fgdcd .fontFile ._beaeb !=nil {_ag .Log .Debug ("\u0055\u0073\u0069\u006e\u0067\u0020\u0066\u006f\u006et\u0046\u0069\u006c\u0065"); +_ecgbe =_fgdcd .fontFile ._beaeb ;};case "\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":if _fgdcd ._gbcg !=nil {_ag .Log .Debug ("\u0055s\u0069n\u0067\u0020\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0032");_ddbg ,_bggeg :=_fgdcd ._gbcg .MakeEncoder (); +if _bggeg ==nil {_ecgbe =_ddbg ;};if _fbaag ._ecfb ==nil {_fbaag ._ecfb =_fgdcd ._gbcg .MakeToUnicode ();};};};};};if _ecgbe !=nil {if _ggfag !=nil {_ag .Log .Trace ("\u0064\u0069\u0066fe\u0072\u0065\u006e\u0063\u0065\u0073\u003d\u0025\u002b\u0076\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_ggfag ,_fbaag .baseFields ()); +_ecgbe =_bd .ApplyDifferences (_ecgbe ,_ggfag );};_fbaag .SetEncoder (_ecgbe );};return nil ;}; -// UpdateXObjectImageFromImage creates a new XObject Image from an -// Image object `img` and default masks from xobjIn. -// The default masks are overridden if img.hasAlpha -// If `encoder` is nil, uses raw encoding (none). -func UpdateXObjectImageFromImage (xobjIn *XObjectImage ,img *Image ,cs PdfColorspace ,encoder _aff .StreamEncoder )(*XObjectImage ,error ){if encoder ==nil {var _bdcbf error ;encoder ,_bdcbf =img .getSuitableEncoder ();if _bdcbf !=nil {_adg .Log .Debug ("F\u0061\u0069l\u0075\u0072\u0065\u0020\u006f\u006e\u0020\u0066\u0069\u006e\u0064\u0069\u006e\u0067\u0020\u0073\u0075\u0069\u0074\u0061b\u006c\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072,\u0020\u0066\u0061\u006c\u006c\u0062\u0061\u0063\u006b\u0020\u0074\u006f\u0020R\u0061\u0077\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020%\u0076",_bdcbf ); -encoder =_aff .NewRawEncoder ();};};encoder .UpdateParams (img .GetParamsDict ());_effga ,_ecfbf :=encoder .EncodeBytes (img .Data );if _ecfbf !=nil {_adg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0076",_ecfbf ); -return nil ,_ecfbf ;};_dggcb :=NewXObjectImage ();_edaeg :=img .Width ;_gggd :=img .Height ;_dggcb .Width =&_edaeg ;_dggcb .Height =&_gggd ;_gcacf :=img .BitsPerComponent ;_dggcb .BitsPerComponent =&_gcacf ;_dggcb .Filter =encoder ;_dggcb .Stream =_effga ; -if cs ==nil {if img .ColorComponents ==1{_dggcb .ColorSpace =NewPdfColorspaceDeviceGray ();if img .BitsPerComponent ==16{switch encoder .(type ){case *_aff .DCTEncoder :_dggcb .ColorSpace =NewPdfColorspaceDeviceRGB ();_gcacf =8;_dggcb .BitsPerComponent =&_gcacf ; -};};}else if img .ColorComponents ==3{_dggcb .ColorSpace =NewPdfColorspaceDeviceRGB ();}else if img .ColorComponents ==4{switch encoder .(type ){case *_aff .DCTEncoder :_dggcb .ColorSpace =NewPdfColorspaceDeviceRGB ();default:_dggcb .ColorSpace =NewPdfColorspaceDeviceCMYK (); -};}else {return nil ,_g .New ("c\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020u\u006e\u0064\u0065\u0066in\u0065\u0064");};}else {_dggcb .ColorSpace =cs ;};if len (img ._becb )!=0{_beaf :=NewXObjectImage ();_beaf .Filter =encoder ;_fddad ,_dgabc :=encoder .EncodeBytes (img ._becb ); -if _dgabc !=nil {_adg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0076",_dgabc );return nil ,_dgabc ;};_beaf .Stream =_fddad ;_beaf .BitsPerComponent =_dggcb .BitsPerComponent ; -_beaf .Width =&img .Width ;_beaf .Height =&img .Height ;_beaf .ColorSpace =NewPdfColorspaceDeviceGray ();_dggcb .SMask =_beaf .ToPdfObject ();}else {_dggcb .SMask =xobjIn .SMask ;_dggcb .ImageMask =xobjIn .ImageMask ;if _dggcb .ColorSpace .GetNumComponents ()==1{_dfbfc (_dggcb ); -};};return _dggcb ,nil ;}; +// CustomKeys returns all custom info keys as list. +func (_deaa *PdfInfo )CustomKeys ()[]string {if _deaa ._dccdg ==nil {return nil ;};_eccgc :=make ([]string ,len (_deaa ._dccdg .Keys ()));for _ ,_dfaf :=range _deaa ._dccdg .Keys (){_eccgc =append (_eccgc ,_dfaf .String ());};return _eccgc ;};func (_bgbfd *PdfReader )newPdfFieldFromIndirectObject (_acfe *_dg .PdfIndirectObject ,_baecf *PdfField )(*PdfField ,error ){if _fgcc ,_bdbde :=_bgbfd ._cadfa .GetModelFromPrimitive (_acfe ).(*PdfField ); +_bdbde {return _fgcc ,nil ;};_eabc ,_gabf :=_dg .GetDict (_acfe );if !_gabf {return nil ,_b .Errorf ("\u0050\u0064f\u0046\u0069\u0065\u006c\u0064 \u0069\u006e\u0064\u0069\u0072e\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_egbfb :=NewPdfField ();_egbfb ._egce =_acfe ;_egbfb ._egce .PdfObject =_eabc ;if _dagea ,_cdff :=_dg .GetName (_eabc .Get ("\u0046\u0054"));_cdff {_egbfb .FT =_dagea ;};if _baecf !=nil {_egbfb .Parent =_baecf ;};_egbfb .T ,_ =_eabc .Get ("\u0054").(*_dg .PdfObjectString ); +_egbfb .TU ,_ =_eabc .Get ("\u0054\u0055").(*_dg .PdfObjectString );_egbfb .TM ,_ =_eabc .Get ("\u0054\u004d").(*_dg .PdfObjectString );_egbfb .Ff ,_ =_eabc .Get ("\u0046\u0066").(*_dg .PdfObjectInteger );_egbfb .V =_eabc .Get ("\u0056");_egbfb .DV =_eabc .Get ("\u0044\u0056"); +_egbfb .AA =_eabc .Get ("\u0041\u0041");if DA :=_eabc .Get ("\u0044\u0041");DA !=nil {DA ,_ :=_dg .GetString (DA );_egbfb .VariableText =&VariableText {DA :DA };Q ,_ :=_eabc .Get ("\u0051").(*_dg .PdfObjectInteger );DS ,_ :=_eabc .Get ("\u0044\u0053").(*_dg .PdfObjectString ); +RV :=_eabc .Get ("\u0052\u0056");_egbfb .VariableText .Q =Q ;_egbfb .VariableText .DS =DS ;_egbfb .VariableText .RV =RV ;};_fdae :=_egbfb .FT ;if _fdae ==nil &&_baecf !=nil {_fdae =_baecf .FT ;};if _fdae !=nil {switch *_fdae {case "\u0054\u0078":_ggff ,_eedgc :=_gacf (_eabc ); +if _eedgc !=nil {return nil ,_eedgc ;};_ggff .PdfField =_egbfb ;_egbfb ._bdfg =_ggff ;case "\u0043\u0068":_gacd ,_ddded :=_aaaa (_eabc );if _ddded !=nil {return nil ,_ddded ;};_gacd .PdfField =_egbfb ;_egbfb ._bdfg =_gacd ;case "\u0042\u0074\u006e":_dcdb ,_cgcf :=_cdfe (_eabc ); +if _cgcf !=nil {return nil ,_cgcf ;};_dcdb .PdfField =_egbfb ;_egbfb ._bdfg =_dcdb ;case "\u0053\u0069\u0067":_ffacg ,_abcg :=_bgbfd .newPdfFieldSignatureFromDict (_eabc );if _abcg !=nil {return nil ,_abcg ;};_ffacg .PdfField =_egbfb ;_egbfb ._bdfg =_ffacg ; +default:_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065d\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0073",*_egbfb .FT );return nil ,_bf .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0074\u0079p\u0065"); +};};if _adda ,_fefd :=_dg .GetName (_eabc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_fefd {if *_adda =="\u0057\u0069\u0064\u0067\u0065\u0074"{_cceb ,_gbbcb :=_bgbfd .newPdfAnnotationFromIndirectObject (_acfe );if _gbbcb !=nil {return nil ,_gbbcb ; +};_ababd ,_gedb :=_cceb .GetContext ().(*PdfAnnotationWidget );if !_gedb {return nil ,_bf .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0077\u0069\u0064\u0067e\u0074 \u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006fn");};_ababd ._cgg =_egbfb ;_ababd .Parent =_egbfb ._egce ; +_egbfb .Annotations =append (_egbfb .Annotations ,_ababd );return _egbfb ,nil ;};};_edfec :=true ;if _cgaf ,_afdda :=_dg .GetArray (_eabc .Get ("\u004b\u0069\u0064\u0073"));_afdda {_ddcbc :=make ([]*_dg .PdfIndirectObject ,0,_cgaf .Len ());for _ ,_aagb :=range _cgaf .Elements (){_adfcc ,_bega :=_dg .GetIndirect (_aagb ); +if !_bega {_gggd ,_dbccg :=_dg .GetStream (_aagb );if _dbccg &&_gggd .PdfObjectDictionary !=nil {_gedc ,_egdfe :=_dg .GetNameVal (_gggd .Get ("\u0054\u0079\u0070\u0065"));if _egdfe &&_gedc =="\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"{_ag .Log .Debug ("E\u0052RO\u0052:\u0020f\u006f\u0072\u006d\u0020\u0066i\u0065\u006c\u0064 \u004b\u0069\u0064\u0073\u0020a\u0072\u0072\u0061y\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0069n\u0076\u0061\u006cid \u004d\u0065\u0074\u0061\u0064\u0061t\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e"); +continue ;};};return nil ,_bf .New ("n\u006f\u0074\u0020\u0061\u006e\u0020i\u006e\u0064\u0069\u0072\u0065\u0063t\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0028\u0066\u006f\u0072\u006d\u0020\u0066\u0069\u0065\u006cd\u0029");};_fdde ,_eeecf :=_dg .GetDict (_adfcc ); +if !_eeecf {return nil ,ErrTypeCheck ;};if _edfec {_edfec =!_gef (_fdde );};_ddcbc =append (_ddcbc ,_adfcc );};for _ ,_afgd :=range _ddcbc {if _edfec {_ggbg ,_ebacd :=_bgbfd .newPdfAnnotationFromIndirectObject (_afgd );if _ebacd !=nil {_ag .Log .Debug ("\u0045r\u0072\u006fr\u0020\u006c\u006fa\u0064\u0069\u006e\u0067\u0020\u0077\u0069d\u0067\u0065\u0074\u0020\u0061\u006en\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u006f\u0072 \u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0076",_ebacd ); +return nil ,_ebacd ;};_aaged ,_gfgaf :=_ggbg ._egcg .(*PdfAnnotationWidget );if !_gfgaf {return nil ,ErrTypeCheck ;};_aaged ._cgg =_egbfb ;_egbfb .Annotations =append (_egbfb .Annotations ,_aaged );}else {_beggg ,_bcbc :=_bgbfd .newPdfFieldFromIndirectObject (_afgd ,_egbfb ); +if _bcbc !=nil {_ag .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u0068\u0069\u006c\u0064\u0020\u0066\u0069\u0065\u006c\u0064: \u0025\u0076",_bcbc );return nil ,_bcbc ;};_egbfb .Kids =append (_egbfb .Kids ,_beggg ); +};};};return _egbfb ,nil ;}; -// DecodeArray returns the component range values for the Indexed colorspace. -func (_gcedb *PdfColorspaceSpecialIndexed )DecodeArray ()[]float64 {return []float64 {0,float64 (_gcedb .HiVal )};}; +// ToPdfObject returns a *PdfIndirectObject containing a *PdfObjectArray representation of the DeviceN colorspace. +/* + Format: [/DeviceN names alternateSpace tintTransform] + or: [/DeviceN names alternateSpace tintTransform attributes] +*/ +func (_fdbd *PdfColorspaceDeviceN )ToPdfObject ()_dg .PdfObject {_gggef :=_dg .MakeArray (_dg .MakeName ("\u0044e\u0076\u0069\u0063\u0065\u004e"));_gggef .Append (_fdbd .ColorantNames );_gggef .Append (_fdbd .AlternateSpace .ToPdfObject ());_gggef .Append (_fdbd .TintTransform .ToPdfObject ()); +if _fdbd .Attributes !=nil {_gggef .Append (_fdbd .Attributes .ToPdfObject ());};if _fdbd ._effag !=nil {_fdbd ._effag .PdfObject =_gggef ;return _fdbd ._effag ;};return _gggef ;}; -// CharcodeBytesToUnicode converts PDF character codes `data` to a Go unicode string. -// -// 9.10 Extraction of Text Content (page 292) -// The process of finding glyph descriptions in OpenType fonts by a conforming reader shall be the following: -// - For Type 1 fonts using “CFF” tables, the process shall be as described in 9.6.6.2, "Encodings -// for Type 1 Fonts". -// - For TrueType fonts using “glyf” tables, the process shall be as described in 9.6.6.4, -// "Encodings for TrueType Fonts". Since this process sometimes produces ambiguous results, -// conforming writers, instead of using a simple font, shall use a Type 0 font with an Identity-H -// encoding and use the glyph indices as character codes, as described following Table 118. -func (_ggbb *PdfFont )CharcodeBytesToUnicode (data []byte )(string ,int ,int ){_dgfe ,_ ,_edcbc :=_ggbb .CharcodesToUnicodeWithStats (_ggbb .BytesToCharcodes (data ));_babg :=_eee .ExpandLigatures (_dgfe );return _babg ,_eg .RuneCountInString (_babg ),_edcbc ; +// GetContainingPdfObject returns the container of the PdfAcroForm (indirect object). +func (_dbcec *PdfAcroForm )GetContainingPdfObject ()_dg .PdfObject {return _dbcec ._bebfe };type fontCommon struct{_ecbf string ;_bcga string ;_cefg string ;_ebbff _dg .PdfObject ;_ecfb *_ff .CMap ;_ccfb *PdfFontDescriptor ;_bgggd int64 ;}; + +// ToPdfObject implements interface PdfModel. +func (_cgcb *PdfBorderStyle )ToPdfObject ()_dg .PdfObject {_acgc :=_dg .MakeDict ();if _cgcb ._cbcb !=nil {if _gfad ,_gdcca :=_cgcb ._cbcb .(*_dg .PdfIndirectObject );_gdcca {_gfad .PdfObject =_acgc ;};};_acgc .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0042\u006f\u0072\u0064\u0065\u0072")); +if _cgcb .W !=nil {_acgc .Set ("\u0057",_dg .MakeFloat (*_cgcb .W ));};if _cgcb .S !=nil {_acgc .Set ("\u0053",_dg .MakeName (_cgcb .S .GetPdfName ()));};if _cgcb .D !=nil {_acgc .Set ("\u0044",_dg .MakeArrayFromIntegers (*_cgcb .D ));};if _cgcb ._cbcb !=nil {return _cgcb ._cbcb ; +};return _acgc ;}; + +// NewXObjectImageFromStream builds the image xobject from a stream object. +// An image dictionary is the dictionary portion of a stream object representing an image XObject. +func NewXObjectImageFromStream (stream *_dg .PdfObjectStream )(*XObjectImage ,error ){_gacgfc :=&XObjectImage {};_gacgfc ._abfb =stream ;_ccbeg :=*(stream .PdfObjectDictionary );_eecc ,_ddabcc :=_dg .NewEncoderFromStream (stream );if _ddabcc !=nil {return nil ,_ddabcc ; +};_gacgfc .Filter =_eecc ;if _ffdcde :=_dg .TraceToDirectObject (_ccbeg .Get ("\u0057\u0069\u0064t\u0068"));_ffdcde !=nil {_gdbc ,_cead :=_ffdcde .(*_dg .PdfObjectInteger );if !_cead {return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006d\u0061g\u0065\u0020\u0077\u0069\u0064\u0074\u0068\u0020\u006f\u0062j\u0065\u0063\u0074"); +};_ceabce :=int64 (*_gdbc );_gacgfc .Width =&_ceabce ;}else {return nil ,_bf .New ("\u0077\u0069\u0064\u0074\u0068\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};if _cccac :=_dg .TraceToDirectObject (_ccbeg .Get ("\u0048\u0065\u0069\u0067\u0068\u0074")); +_cccac !=nil {_egaad ,_caadd :=_cccac .(*_dg .PdfObjectInteger );if !_caadd {return nil ,_bf .New ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0069\u006d\u0061\u0067\u0065\u0020\u0068\u0065\u0069g\u0068\u0074\u0020o\u0062j\u0065\u0063\u0074");};_gdac :=int64 (*_egaad ); +_gacgfc .Height =&_gdac ;}else {return nil ,_bf .New ("\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};if _aedg :=_dg .TraceToDirectObject (_ccbeg .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065")); +_aedg !=nil {_cacf ,_cfbef :=NewPdfColorspaceFromPdfObject (_aedg );if _cfbef !=nil {return nil ,_cfbef ;};_gacgfc .ColorSpace =_cacf ;}else {_ag .Log .Debug ("\u0058O\u0062\u006a\u0065c\u0074\u0020\u0049m\u0061ge\u0020\u0063\u006f\u006c\u006f\u0072\u0073p\u0061\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u002d\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067 1\u0020c\u006f\u006c\u006f\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065n\u0074\u0020\u002d\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047r\u0061\u0079"); +_gacgfc .ColorSpace =NewPdfColorspaceDeviceGray ();};if _ecggf :=_dg .TraceToDirectObject (_ccbeg .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));_ecggf !=nil {_fgaeg ,_cdcdfb :=_ecggf .(*_dg .PdfObjectInteger ); +if !_cdcdfb {return nil ,_bf .New ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0069\u006d\u0061\u0067\u0065\u0020\u0068\u0065\u0069g\u0068\u0074\u0020o\u0062j\u0065\u0063\u0074");};_cbafa :=int64 (*_fgaeg );_gacgfc .BitsPerComponent =&_cbafa ;};_gacgfc .Intent =_ccbeg .Get ("\u0049\u006e\u0074\u0065\u006e\u0074"); +_gacgfc .ImageMask =_ccbeg .Get ("\u0049m\u0061\u0067\u0065\u004d\u0061\u0073k");_gacgfc .Mask =_ccbeg .Get ("\u004d\u0061\u0073\u006b");_gacgfc .Decode =_ccbeg .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");_gacgfc .Interpolate =_ccbeg .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065"); +_gacgfc .Alternatives =_ccbeg .Get ("\u0041\u006c\u0074e\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0073");_gacgfc .SMask =_ccbeg .Get ("\u0053\u004d\u0061s\u006b");_gacgfc .SMaskInData =_ccbeg .Get ("S\u004d\u0061\u0073\u006b\u0049\u006e\u0044\u0061\u0074\u0061"); +_gacgfc .Matte =_ccbeg .Get ("\u004d\u0061\u0074t\u0065");_gacgfc .Name =_ccbeg .Get ("\u004e\u0061\u006d\u0065");_gacgfc .StructParent =_ccbeg .Get ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074");_gacgfc .ID =_ccbeg .Get ("\u0049\u0044"); +_gacgfc .OPI =_ccbeg .Get ("\u004f\u0050\u0049");_gacgfc .Metadata =_ccbeg .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");_gacgfc .OC =_ccbeg .Get ("\u004f\u0043");_gacgfc .Stream =stream .Stream ;return _gacgfc ,nil ;};func _baac (_fbbb _dg .PdfObject )(*PdfColorspaceSpecialIndexed ,error ){_ceda :=NewPdfColorspaceSpecialIndexed (); +if _gffb ,_bbbe :=_fbbb .(*_dg .PdfIndirectObject );_bbbe {_ceda ._fffd =_gffb ;};_fbbb =_dg .TraceToDirectObject (_fbbb );_edfd ,_bdbf :=_fbbb .(*_dg .PdfObjectArray );if !_bdbf {return nil ,_b .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};if _edfd .Len ()!=4{return nil ,_b .Errorf ("\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0043\u0053\u003a\u0020\u0069\u006e\u0076a\u006ci\u0064\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068");};_fbbb =_edfd .Get (0); +_acac ,_bdbf :=_fbbb .(*_dg .PdfObjectName );if !_bdbf {return nil ,_b .Errorf ("\u0069n\u0064\u0065\u0078\u0065\u0064\u0020\u0043\u0053\u003a\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u006e\u0061\u006d\u0065");};if *_acac !="\u0049n\u0064\u0065\u0078\u0065\u0064"{return nil ,_b .Errorf ("\u0069\u006e\u0064\u0065xe\u0064\u0020\u0043\u0053\u003a\u0020\u0077\u0072\u006f\u006e\u0067\u0020\u006e\u0061m\u0065"); +};_fbbb =_edfd .Get (1);_egbf ,_acgcf :=DetermineColorspaceNameFromPdfObject (_fbbb );if _acgcf !=nil {return nil ,_acgcf ;};if _egbf =="\u0049n\u0064\u0065\u0078\u0065\u0064"||_egbf =="\u0050a\u0074\u0074\u0065\u0072\u006e"{_ag .Log .Debug ("E\u0072\u0072o\u0072\u003a\u0020\u0049\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0049\u006e\u0064e\u0078\u0065\u0064\u002f\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0043S\u0020\u0061\u0073\u0020\u0062\u0061\u0073\u0065\u0020\u0028\u0025v\u0029",_egbf ); +return nil ,_dgaa ;};_caabf ,_acgcf :=NewPdfColorspaceFromPdfObject (_fbbb );if _acgcf !=nil {return nil ,_acgcf ;};_ceda .Base =_caabf ;_fbbb =_edfd .Get (2);_dgba ,_acgcf :=_dg .GetNumberAsInt64 (_fbbb );if _acgcf !=nil {return nil ,_acgcf ;};if _dgba > 255{return nil ,_b .Errorf ("\u0069n\u0064\u0065\u0078\u0065d\u0020\u0043\u0053\u003a\u0020I\u006ev\u0061l\u0069\u0064\u0020\u0068\u0069\u0076\u0061l"); +};_ceda .HiVal =int (_dgba );_fbbb =_edfd .Get (3);_ceda .Lookup =_fbbb ;_fbbb =_dg .TraceToDirectObject (_fbbb );var _edaa []byte ;if _dffcb ,_gadbd :=_fbbb .(*_dg .PdfObjectString );_gadbd {_edaa =_dffcb .Bytes ();_ag .Log .Trace ("\u0049\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0073\u0074r\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072\u0020\u0064\u0061\u0074\u0061\u003a\u0020\u0025\u0020\u0064",_edaa ); +}else if _cbge ,_accg :=_fbbb .(*_dg .PdfObjectStream );_accg {_ag .Log .Trace ("\u0049n\u0064e\u0078\u0065\u0064\u0020\u0073t\u0072\u0065a\u006d\u003a\u0020\u0025\u0073",_fbbb .String ());_ag .Log .Trace ("\u0045\u006e\u0063\u006fde\u0064\u0020\u0028\u0025\u0064\u0029\u0020\u003a\u0020\u0025\u0023\u0020\u0078",len (_cbge .Stream ),_cbge .Stream ); +_cbfg ,_gdagg :=_dg .DecodeStream (_cbge );if _gdagg !=nil {return nil ,_gdagg ;};_ag .Log .Trace ("\u0044e\u0063o\u0064\u0065\u0064\u0020\u0028%\u0064\u0029 \u003a\u0020\u0025\u0020\u0058",len (_cbfg ),_cbfg );_edaa =_cbfg ;}else {_ag .Log .Debug ("\u0054\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_fbbb ); +return nil ,_b .Errorf ("\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0043\u0053\u003a\u0020\u0049\u006e\u0076a\u006ci\u0064\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};if len (_edaa )< _ceda .Base .GetNumComponents ()*(_ceda .HiVal +1){_ag .Log .Debug ("\u0050\u0044\u0046\u0020\u0049\u006e\u0063o\u006d\u0070\u0061t\u0069\u0062\u0069\u006ci\u0074\u0079\u003a\u0020\u0049\u006e\u0064\u0065\u0078\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0074\u006f\u006f\u0020\u0073\u0068\u006f\u0072\u0074"); +_ag .Log .Debug ("\u0046\u0061i\u006c\u002c\u0020\u006c\u0065\u006e\u0028\u0064\u0061\u0074\u0061\u0029\u003a\u0020\u0025\u0064\u002c\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0064\u002c\u0020\u0068\u0069\u0056\u0061\u006c\u003a\u0020\u0025\u0064",len (_edaa ),_ceda .Base .GetNumComponents (),_ceda .HiVal ); +}else {_edaa =_edaa [:_ceda .Base .GetNumComponents ()*(_ceda .HiVal +1)];};_ceda ._bcea =_edaa ;return _ceda ,nil ;}; + +// SetDate sets the `M` field of the signature. +func (_efbd *PdfSignature )SetDate (date _a .Time ,format string ){if format ==""{format ="\u0044\u003a\u003200\u0036\u0030\u0031\u0030\u0032\u0031\u0035\u0030\u0034\u0030\u0035\u002d\u0030\u0037\u0027\u0030\u0030\u0027";};_efbd .M =_dg .MakeString (date .Format (format )); }; -// GetAscent returns the Ascent of the font `descriptor`. -func (_cbagg *PdfFontDescriptor )GetAscent ()(float64 ,error ){return _aff .GetNumberAsFloat (_cbagg .Ascent );};func _dggca (_cegdd StdFontName )(pdfFontSimple ,error ){_ebaaf ,_ceae :=_bcd .NewStdFontByName (_cegdd );if !_ceae {return pdfFontSimple {},ErrFontNotSupported ; -};_gfee :=_dbcbc (_ebaaf );return _gfee ,nil ;};func _ceeb (_aabd _aff .PdfObject )(*PdfColorspaceCalRGB ,error ){_gfbd :=NewPdfColorspaceCalRGB ();if _fabdc ,_ebbe :=_aabd .(*_aff .PdfIndirectObject );_ebbe {_gfbd ._caef =_fabdc ;};_aabd =_aff .TraceToDirectObject (_aabd ); -_aaa ,_gcaf :=_aabd .(*_aff .PdfObjectArray );if !_gcaf {return nil ,_e .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _aaa .Len ()!=2{return nil ,_e .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0043\u0061\u006c\u0052G\u0042 \u0063o\u006c\u006f\u0072\u0073\u0070\u0061\u0063e"); -};_aabd =_aff .TraceToDirectObject (_aaa .Get (0));_gedf ,_gcaf :=_aabd .(*_aff .PdfObjectName );if !_gcaf {return nil ,_e .Errorf ("\u0043\u0061l\u0052\u0047\u0042\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062je\u0063\u0074"); -};if *_gedf !="\u0043\u0061\u006c\u0052\u0047\u0042"{return nil ,_e .Errorf ("\u006e\u006f\u0074 a\u0020\u0043\u0061\u006c\u0052\u0047\u0042\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065");};_aabd =_aff .TraceToDirectObject (_aaa .Get (1)); -_ddbf ,_gcaf :=_aabd .(*_aff .PdfObjectDictionary );if !_gcaf {return nil ,_e .Errorf ("\u0043\u0061l\u0052\u0047\u0042\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062je\u0063\u0074");}; -_aabd =_ddbf .Get ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074");_aabd =_aff .TraceToDirectObject (_aabd );_agbf ,_gcaf :=_aabd .(*_aff .PdfObjectArray );if !_gcaf {return nil ,_e .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0057\u0068\u0069\u0074\u0065\u0050o\u0069\u006e\u0074"); -};if _agbf .Len ()!=3{return nil ,_e .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0057h\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074\u0020\u0061\u0072\u0072\u0061\u0079");};_cbbae ,_gfbe :=_agbf .GetAsFloat64Slice (); -if _gfbe !=nil {return nil ,_gfbe ;};_gfbd .WhitePoint =_cbbae ;_aabd =_ddbf .Get ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");if _aabd !=nil {_aabd =_aff .TraceToDirectObject (_aabd );_geec ,_fdef :=_aabd .(*_aff .PdfObjectArray ); -if !_fdef {return nil ,_e .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0042\u006c\u0061\u0063\u006b\u0050o\u0069\u006e\u0074");};if _geec .Len ()!=3{return nil ,_e .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0042l\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074\u0020\u0061\u0072\u0072\u0061\u0079"); -};_adffc ,_ageb :=_geec .GetAsFloat64Slice ();if _ageb !=nil {return nil ,_ageb ;};_gfbd .BlackPoint =_adffc ;};_aabd =_ddbf .Get ("\u0047\u0061\u006dm\u0061");if _aabd !=nil {_aabd =_aff .TraceToDirectObject (_aabd );_aga ,_eecc :=_aabd .(*_aff .PdfObjectArray ); -if !_eecc {return nil ,_e .Errorf ("C\u0061\u006c\u0052\u0047B:\u0020I\u006e\u0076\u0061\u006c\u0069d\u0020\u0047\u0061\u006d\u006d\u0061");};if _aga .Len ()!=3{return nil ,_e .Errorf ("C\u0061\u006c\u0052\u0047\u0042\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0047a\u006d\u006d\u0061 \u0061r\u0072\u0061\u0079"); -};_efafe ,_cgade :=_aga .GetAsFloat64Slice ();if _cgade !=nil {return nil ,_cgade ;};_gfbd .Gamma =_efafe ;};_aabd =_ddbf .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");if _aabd !=nil {_aabd =_aff .TraceToDirectObject (_aabd );_dgff ,_cfde :=_aabd .(*_aff .PdfObjectArray ); -if !_cfde {return nil ,_e .Errorf ("\u0043\u0061\u006c\u0052GB\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004d\u0061\u0074\u0072i\u0078");};if _dgff .Len ()!=9{_adg .Log .Error ("\u004d\u0061t\u0072\u0069\u0078 \u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0073",_dgff .String ()); -return nil ,_e .Errorf ("\u0043\u0061\u006c\u0052G\u0042\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u004da\u0074\u0072\u0069\u0078\u0020\u0061\u0072r\u0061\u0079");};_dcdf ,_dfee :=_dgff .GetAsFloat64Slice ();if _dfee !=nil {return nil ,_dfee ; -};_gfbd .Matrix =_dcdf ;};return _gfbd ,nil ;}; +// PdfShadingType7 is a Tensor-product patch mesh. +type PdfShadingType7 struct{*PdfShading ;BitsPerCoordinate *_dg .PdfObjectInteger ;BitsPerComponent *_dg .PdfObjectInteger ;BitsPerFlag *_dg .PdfObjectInteger ;Decode *_dg .PdfObjectArray ;Function []PdfFunction ;};func (_cddb *PdfAppender )mergeResources (_ccda ,_cebd _dg .PdfObject ,_ceed map[_dg .PdfObjectName ]_dg .PdfObjectName )_dg .PdfObject {if _cebd ==nil &&_ccda ==nil {return nil ; +};if _cebd ==nil {return _ccda ;};_fbgbb ,_dede :=_dg .GetDict (_cebd );if !_dede {return _ccda ;};if _ccda ==nil {_gcc :=_dg .MakeDict ();_gcc .Merge (_fbgbb );return _cebd ;};_edce ,_dede :=_dg .GetDict (_ccda );if !_dede {_ag .Log .Error ("\u0045\u0072\u0072or\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065 \u0069s\u0020n\u006ft\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +_edce =_dg .MakeDict ();};for _ ,_egcb :=range _fbgbb .Keys (){if _dfgaf ,_gagf :=_ceed [_egcb ];_gagf {_edce .Set (_dfgaf ,_fbgbb .Get (_egcb ));}else {_edce .Set (_egcb ,_fbgbb .Get (_egcb ));};};return _edce ;}; -// PdfColorspaceDeviceRGB represents an RGB colorspace. -type PdfColorspaceDeviceRGB struct{}; +// GetFontByName gets the font specified by keyName. Returns the PdfObject which +// the entry refers to. Returns a bool value indicating whether or not the entry was found. +func (_aeadg *PdfPageResources )GetFontByName (keyName _dg .PdfObjectName )(_dg .PdfObject ,bool ){if _aeadg .Font ==nil {return nil ,false ;};_fbbgb ,_gfagc :=_dg .TraceToDirectObject (_aeadg .Font ).(*_dg .PdfObjectDictionary );if !_gfagc {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0021\u0020(\u0067\u006ft\u0020\u0025\u0054\u0029",_dg .TraceToDirectObject (_aeadg .Font )); +return nil ,false ;};if _fgbgf :=_fbbgb .Get (keyName );_fgbgf !=nil {return _fgbgf ,true ;};return nil ,false ;};func _deg (_cgae _dg .PdfObject )(*PdfFontDescriptor ,error ){_gbbf :=&PdfFontDescriptor {};_cgae =_dg .ResolveReference (_cgae );if _bcbg ,_cbdb :=_cgae .(*_dg .PdfIndirectObject ); +_cbdb {_gbbf ._acag =_bcbg ;_cgae =_bcbg .PdfObject ;};_baeb ,_bcggg :=_dg .GetDict (_cgae );if !_bcggg {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046o\u006e\u0074\u0044\u0065\u0073c\u0072\u0069\u0070\u0074\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0062\u0079\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_cgae ); +return nil ,_dg .ErrTypeError ;};if _gagfc :=_baeb .Get ("\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065");_gagfc !=nil {_gbbf .FontName =_gagfc ;}else {_ag .Log .Debug ("\u0049n\u0063\u006fm\u0070\u0061\u0074\u0069b\u0069\u006c\u0069t\u0079\u003a\u0020\u0046\u006f\u006e\u0074\u004e\u0061me\u0020\u0028\u0052e\u0071\u0075i\u0072\u0065\u0064\u0029\u0020\u006di\u0073\u0073i\u006e\u0067"); +};_beafb ,_ :=_dg .GetName (_gbbf .FontName );if _fcac :=_baeb .Get ("\u0054\u0079\u0070\u0065");_fcac !=nil {_gdefe ,_beadd :=_fcac .(*_dg .PdfObjectName );if !_beadd ||string (*_gdefe )!="\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072"{_ag .Log .Debug ("I\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072i\u0070t\u006f\u0072\u0020\u0054y\u0070\u0065 \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0025\u0054\u0029\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0071\u0020\u0025\u0054",_fcac ,_beafb ,_gbbf .FontName ); +};}else {_ag .Log .Trace ("\u0049\u006ec\u006f\u006d\u0070\u0061\u0074i\u0062\u0069\u006c\u0069\u0074y\u003a\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0071\u0020\u0025\u0054",_beafb ,_gbbf .FontName ); +};_gbbf .FontFamily =_baeb .Get ("\u0046\u006f\u006e\u0074\u0046\u0061\u006d\u0069\u006c\u0079");_gbbf .FontStretch =_baeb .Get ("F\u006f\u006e\u0074\u0053\u0074\u0072\u0065\u0074\u0063\u0068");_gbbf .FontWeight =_baeb .Get ("\u0046\u006f\u006e\u0074\u0057\u0065\u0069\u0067\u0068\u0074"); +_gbbf .Flags =_baeb .Get ("\u0046\u006c\u0061g\u0073");_gbbf .FontBBox =_baeb .Get ("\u0046\u006f\u006e\u0074\u0042\u0042\u006f\u0078");_gbbf .ItalicAngle =_baeb .Get ("I\u0074\u0061\u006c\u0069\u0063\u0041\u006e\u0067\u006c\u0065");_gbbf .Ascent =_baeb .Get ("\u0041\u0073\u0063\u0065\u006e\u0074"); +_gbbf .Descent =_baeb .Get ("\u0044e\u0073\u0063\u0065\u006e\u0074");_gbbf .Leading =_baeb .Get ("\u004ce\u0061\u0064\u0069\u006e\u0067");_gbbf .CapHeight =_baeb .Get ("\u0043a\u0070\u0048\u0065\u0069\u0067\u0068t");_gbbf .XHeight =_baeb .Get ("\u0058H\u0065\u0069\u0067\u0068\u0074"); +_gbbf .StemV =_baeb .Get ("\u0053\u0074\u0065m\u0056");_gbbf .StemH =_baeb .Get ("\u0053\u0074\u0065m\u0048");_gbbf .AvgWidth =_baeb .Get ("\u0041\u0076\u0067\u0057\u0069\u0064\u0074\u0068");_gbbf .MaxWidth =_baeb .Get ("\u004d\u0061\u0078\u0057\u0069\u0064\u0074\u0068"); +_gbbf .MissingWidth =_baeb .Get ("\u004d\u0069\u0073s\u0069\u006e\u0067\u0057\u0069\u0064\u0074\u0068");_gbbf .FontFile =_baeb .Get ("\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065");_gbbf .FontFile2 =_baeb .Get ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00652"); +_gbbf .FontFile3 =_baeb .Get ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00653");_gbbf .CharSet =_baeb .Get ("\u0043h\u0061\u0072\u0053\u0065\u0074");_gbbf .Style =_baeb .Get ("\u0053\u0074\u0079l\u0065");_gbbf .Lang =_baeb .Get ("\u004c\u0061\u006e\u0067"); +_gbbf .FD =_baeb .Get ("\u0046\u0044");_gbbf .CIDSet =_baeb .Get ("\u0043\u0049\u0044\u0053\u0065\u0074");if _gbbf .Flags !=nil {if _bcgb ,_fedg :=_dg .GetIntVal (_gbbf .Flags );_fedg {_gbbf ._gcdf =_bcgb ;};};if _gbbf .MissingWidth !=nil {if _fbca ,_adfac :=_dg .GetNumberAsFloat (_gbbf .MissingWidth ); +_adfac ==nil {_gbbf ._adggg =_fbca ;};};if _gbbf .FontFile !=nil {_bffec ,_faee :=_bedbb (_gbbf .FontFile );if _faee !=nil {return _gbbf ,_faee ;};_ag .Log .Trace ("f\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u003d\u0025\u0073",_bffec );_gbbf .fontFile =_bffec ; +};if _gbbf .FontFile2 !=nil {_fedd ,_bgdfa :=_bbg .NewFontFile2FromPdfObject (_gbbf .FontFile2 );if _bgdfa !=nil {return _gbbf ,_bgdfa ;};_ag .Log .Trace ("\u0066\u006f\u006et\u0046\u0069\u006c\u0065\u0032\u003d\u0025\u0073",_fedd .String ());_gbbf ._gbcg =&_fedd ; +};return _gbbf ,nil ;}; -// DecodeArray returns the range of color component values in the ICCBased colorspace. -func (_ddfg *PdfColorspaceICCBased )DecodeArray ()[]float64 {return _ddfg .Range };func (_bfbb *DSS )generateHashMap (_ffgbb []*_aff .PdfObjectStream )(map[string ]*_aff .PdfObjectStream ,error ){_ccdb :=map[string ]*_aff .PdfObjectStream {};for _ ,_egaec :=range _ffgbb {_cceag ,_dcccb :=_aff .DecodeStream (_egaec ); -if _dcccb !=nil {return nil ,_dcccb ;};_fcdg ,_dcccb :=_cdfa (_cceag );if _dcccb !=nil {return nil ,_dcccb ;};_ccdb [string (_fcdg )]=_egaec ;};return _ccdb ,nil ;}; +// NewPdfAnnotationWatermark returns a new watermark annotation. +func NewPdfAnnotationWatermark ()*PdfAnnotationWatermark {_eaeg :=NewPdfAnnotation ();_gec :=&PdfAnnotationWatermark {};_gec .PdfAnnotation =_eaeg ;_eaeg .SetContext (_gec );return _gec ;}; -// Items returns all children outline items. -func (_aafcc *Outline )Items ()[]*OutlineItem {return _aafcc .Entries };func (_cgb *PdfReader )newPdfActionMovieFromDict (_dbffc *_aff .PdfObjectDictionary )(*PdfActionMovie ,error ){return &PdfActionMovie {Annotation :_dbffc .Get ("\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e"),T :_dbffc .Get ("\u0054"),Operation :_dbffc .Get ("\u004fp\u0065\u0072\u0061\u0074\u0069\u006fn")},nil ; +// IsCID returns true if the underlying font is CID. +func (_gadd *PdfFont )IsCID ()bool {return _gadd .baseFields ().isCIDFont ()}; + +// ColorToRGB converts a CMYK32 color to an RGB color. +func (_afbf *PdfColorspaceDeviceCMYK )ColorToRGB (color PdfColor )(PdfColor ,error ){_dcadde ,_bfef :=color .(*PdfColorDeviceCMYK );if !_bfef {_ag .Log .Debug ("I\u006e\u0070\u0075\u0074\u0020\u0063o\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0064e\u0076\u0069\u0063e\u0020c\u006d\u0079\u006b"); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_aede :=_dcadde .C ();_bgcdb :=_dcadde .M ();_dfde :=_dcadde .Y ();_afabe :=_dcadde .K ();_aede =_aede *(1-_afabe )+_afabe ;_bgcdb =_bgcdb *(1-_afabe )+_afabe ; +_dfde =_dfde *(1-_afabe )+_afabe ;_fgddc :=1-_aede ;_cgdaf :=1-_bgcdb ;_ggb :=1-_dfde ;return NewPdfColorDeviceRGB (_fgddc ,_cgdaf ,_ggb ),nil ;};func (_ebbf *PdfColorspaceSpecialIndexed )String ()string {return "\u0049n\u0064\u0065\u0078\u0065\u0064"; }; -// ReplacePage replaces the original page to a new page. -func (_eeef *PdfAppender )ReplacePage (pageNum int ,page *PdfPage ){_gacga :=pageNum -1;for _eebe :=range _eeef ._bbgg {if _eebe ==_gacga {_egeb :=page .Duplicate ();_aefbgd (_egeb );_eeef ._bbgg [_eebe ]=_egeb ;};};};type fontFile struct{_gdag string ; -_ffca string ;_bgbca _eee .SimpleEncoder ;}; +// AddCerts adds certificates to DSS. +func (_cfbb *DSS )AddCerts (certs [][]byte )([]*_dg .PdfObjectStream ,error ){return _cfbb .add (&_cfbb .Certs ,_cfbb ._agbg ,certs );}; -// ToOutlineTree returns a low level PdfOutlineTreeNode object, based on -// the current instance. -func (_gabgc *Outline )ToOutlineTree ()*PdfOutlineTreeNode {return &_gabgc .ToPdfOutline ().PdfOutlineTreeNode ;};func (_dcaae *PdfReader )buildOutlineTree (_bbaefb _aff .PdfObject ,_eafg *PdfOutlineTreeNode ,_cbgb *PdfOutlineTreeNode ,_fded map[_aff .PdfObject ]struct{})(*PdfOutlineTreeNode ,*PdfOutlineTreeNode ,error ){if _fded ==nil {_fded =map[_aff .PdfObject ]struct{}{}; -};_fded [_bbaefb ]=struct{}{};_affbc ,_efbfd :=_bbaefb .(*_aff .PdfIndirectObject );if !_efbfd {return nil ,nil ,_e .Errorf ("\u006f\u0075\u0074\u006c\u0069\u006e\u0065 \u0063\u006f\u006et\u0061\u0069\u006e\u0065r\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0025\u0054",_bbaefb ); -};_bbfca ,_faggd :=_affbc .PdfObject .(*_aff .PdfObjectDictionary );if !_faggd {return nil ,nil ,_g .New ("\u006e\u006f\u0074 a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_adg .Log .Trace ("\u0062\u0075\u0069\u006c\u0064\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065 \u0074\u0072\u0065\u0065\u003a\u0020d\u0069\u0063\u0074\u003a\u0020\u0025\u0076\u0020\u0028\u0025\u0076\u0029\u0020p\u003a\u0020\u0025\u0070",_bbfca ,_affbc ,_affbc ); -if _efdcd :=_bbfca .Get ("\u0054\u0069\u0074l\u0065");_efdcd !=nil {_dbbba ,_ggabbg :=_dcaae .newPdfOutlineItemFromIndirectObject (_affbc );if _ggabbg !=nil {return nil ,nil ,_ggabbg ;};_dbbba .Parent =_eafg ;_dbbba .Prev =_cbgb ;_fbgba :=_aff .ResolveReference (_bbfca .Get ("\u0046\u0069\u0072s\u0074")); -if _ ,_cfadcf :=_fded [_fbgba ];_fbgba !=nil &&_fbgba !=_affbc &&!_cfadcf {if !_aff .IsNullObject (_fbgba ){_bbbc ,_bgeec ,_cgdgg :=_dcaae .buildOutlineTree (_fbgba ,&_dbbba .PdfOutlineTreeNode ,nil ,_fded );if _cgdgg !=nil {_adg .Log .Debug ("D\u0045\u0042U\u0047\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0075\u0069\u006c\u0064\u0020\u006fu\u0074\u006c\u0069\u006e\u0065\u0020\u0069\u0074\u0065\u006d\u0020\u0074\u0072\u0065\u0065\u003a \u0025\u0076\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020n\u006f\u0064\u0065\u0020\u0063\u0068\u0069\u006c\u0064\u0072\u0065n\u002e",_cgdgg ); -}else {_dbbba .First =_bbbc ;_dbbba .Last =_bgeec ;};};};_cadbg :=_aff .ResolveReference (_bbfca .Get ("\u004e\u0065\u0078\u0074"));if _ ,_eddbb :=_fded [_cadbg ];_cadbg !=nil &&_cadbg !=_affbc &&!_eddbb {if !_aff .IsNullObject (_cadbg ){_ecaad ,_cadbgd ,_gffdcc :=_dcaae .buildOutlineTree (_cadbg ,_eafg ,&_dbbba .PdfOutlineTreeNode ,_fded ); -if _gffdcc !=nil {_adg .Log .Debug ("D\u0045\u0042U\u0047\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0075\u0069\u006c\u0064\u0020\u006fu\u0074\u006c\u0069\u006e\u0065\u0020\u0074\u0072\u0065\u0065\u0020\u0066\u006f\u0072\u0020\u004ee\u0078\u0074\u0020\u006e\u006f\u0064\u0065\u003a\u0020\u0025\u0076\u002e\u0020S\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006e\u006f\u0064e\u002e",_gffdcc ); -}else {_dbbba .Next =_ecaad ;return &_dbbba .PdfOutlineTreeNode ,_cadbgd ,nil ;};};};return &_dbbba .PdfOutlineTreeNode ,&_dbbba .PdfOutlineTreeNode ,nil ;};_dfda ,_fcbge :=_dcge (_affbc );if _fcbge !=nil {return nil ,nil ,_fcbge ;};_dfda .Parent =_eafg ; -if _gccbbe :=_bbfca .Get ("\u0046\u0069\u0072s\u0074");_gccbbe !=nil {_gccbbe =_aff .ResolveReference (_gccbbe );if _ ,_dbfae :=_fded [_gccbbe ];_gccbbe !=nil &&_gccbbe !=_affbc &&!_dbfae {_bdbf :=_aff .TraceToDirectObject (_gccbbe );if _ ,_geeeg :=_bdbf .(*_aff .PdfObjectNull ); -!_geeeg &&_bdbf !=nil {_cbgbe ,_gbde ,_dgga :=_dcaae .buildOutlineTree (_gccbbe ,&_dfda .PdfOutlineTreeNode ,nil ,_fded );if _dgga !=nil {_adg .Log .Debug ("\u0044\u0045\u0042\u0055\u0047\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020b\u0075\u0069\u006c\u0064\u0020\u006f\u0075\u0074\u006c\u0069n\u0065\u0020\u0074\u0072\u0065\u0065\u003a\u0020\u0025\u0076\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u0020\u006e\u006f\u0064\u0065 \u0063\u0068i\u006c\u0064r\u0065n\u002e",_dgga ); -}else {_dfda .First =_cbgbe ;_dfda .Last =_gbde ;};};};};return &_dfda .PdfOutlineTreeNode ,&_dfda .PdfOutlineTreeNode ,nil ;}; +// GetFontDescriptor returns the font descriptor for `font`. +func (_ageba PdfFont )GetFontDescriptor ()(*PdfFontDescriptor ,error ){return _ageba ._cadf .getFontDescriptor (),nil ;}; -// SetImage updates XObject Image with new image data. -func (_dddcb *XObjectImage )SetImage (img *Image ,cs PdfColorspace )error {_dddcb .Filter .UpdateParams (img .GetParamsDict ());_egcddd ,_gcbad :=_dddcb .Filter .EncodeBytes (img .Data );if _gcbad !=nil {return _gcbad ;};_dddcb .Stream =_egcddd ;_aacfc :=img .Width ; -_dddcb .Width =&_aacfc ;_eecfg :=img .Height ;_dddcb .Height =&_eecfg ;_eedeec :=img .BitsPerComponent ;_dddcb .BitsPerComponent =&_eedeec ;if cs ==nil {if img .ColorComponents ==1{_dddcb .ColorSpace =NewPdfColorspaceDeviceGray ();}else if img .ColorComponents ==3{_dddcb .ColorSpace =NewPdfColorspaceDeviceRGB (); -}else if img .ColorComponents ==4{_dddcb .ColorSpace =NewPdfColorspaceDeviceCMYK ();}else {return _g .New ("c\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020u\u006e\u0064\u0065\u0066in\u0065\u0064");};}else {_dddcb .ColorSpace =cs ;};return nil ; -}; +// ToPdfObject implements interface PdfModel. +func (_cfc *PdfActionGoTo )ToPdfObject ()_dg .PdfObject {_cfc .PdfAction .ToPdfObject ();_bdd :=_cfc ._cbd ;_bbb :=_bdd .PdfObject .(*_dg .PdfObjectDictionary );_bbb .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeGoTo )));_bbb .SetIfNotNil ("\u0044",_cfc .D ); +return _bdd ;}; -// PdfAnnotationCircle represents Circle annotations. -// (Section 12.5.6.8). -type PdfAnnotationCircle struct{*PdfAnnotation ;*PdfAnnotationMarkup ;BS _aff .PdfObject ;IC _aff .PdfObject ;BE _aff .PdfObject ;RD _aff .PdfObject ;}; +// ImageToRGB returns the passed in image. Method exists in order to satisfy +// the PdfColorspace interface. +func (_dgb *PdfColorspaceDeviceRGB )ImageToRGB (img Image )(Image ,error ){return img ,nil }; -// NewPdfAnnotationProjection returns a new projection annotation. -func NewPdfAnnotationProjection ()*PdfAnnotationProjection {_edef :=NewPdfAnnotation ();_cdce :=&PdfAnnotationProjection {};_cdce .PdfAnnotation =_edef ;_cdce .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_edef .SetContext (_cdce );return _cdce ;}; +// DecodeArray returns the range of color component values in CalGray colorspace. +func (_gdfge *PdfColorspaceCalGray )DecodeArray ()[]float64 {return []float64 {0.0,1.0}}; -// WriteToFile writes the Appender output to file specified by path. -func (_aecb *PdfAppender )WriteToFile (outputPath string )error {_ebabg ,_fade :=_db .Create (outputPath );if _fade !=nil {return _fade ;};defer _ebabg .Close ();return _aecb .Write (_ebabg );}; +// NewStandard14FontWithEncoding returns the standard 14 font named `basefont` as a *PdfFont and +// a TextEncoder that encodes all the runes in `alphabet`, or an error if this is not possible. +// An error can occur if `basefont` is not one the standard 14 font names. +func NewStandard14FontWithEncoding (basefont StdFontName ,alphabet map[rune ]int )(*PdfFont ,_bd .SimpleEncoder ,error ){_dbbc ,_gbeb :=_eece (basefont );if _gbeb !=nil {return nil ,nil ,_gbeb ;};_eaaef ,_ebefc :=_dbbc .Encoder ().(_bd .SimpleEncoder ); +if !_ebefc {return nil ,nil ,_b .Errorf ("\u006f\u006e\u006c\u0079\u0020s\u0069\u006d\u0070\u006c\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006eg\u0020\u0069\u0073\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u002c\u0020\u0067\u006f\u0074\u0020\u0025\u0054",_dbbc .Encoder ()); +};_dbccb :=make (map[rune ]_bd .GlyphName );for _gcgdc :=range alphabet {if _ ,_bfaa :=_eaaef .RuneToCharcode (_gcgdc );!_bfaa {_ ,_ffbc :=_dbbc ._bfdee .Read (_gcgdc );if !_ffbc {_ag .Log .Trace ("r\u0075\u006e\u0065\u0020\u0025\u0023x\u003d\u0025\u0071\u0020\u006e\u006f\u0074\u0020\u0069n\u0020\u0074\u0068e\u0020f\u006f\u006e\u0074",_gcgdc ,_gcgdc ); +continue ;};_dfdc ,_ffbc :=_bd .RuneToGlyph (_gcgdc );if !_ffbc {_ag .Log .Debug ("\u006eo\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u0066\u006f\u0072\u0020r\u0075\u006e\u0065\u0020\u0025\u0023\u0078\u003d\u0025\u0071",_gcgdc ,_gcgdc );continue ;};if len (_dbccb )>=255{return nil ,nil ,_bf .New ("\u0074\u006f\u006f\u0020\u006d\u0061\u006e\u0079\u0020\u0063\u0068\u0061\u0072a\u0063\u0074\u0065\u0072\u0073\u0020f\u006f\u0072\u0020\u0073\u0069\u006d\u0070\u006c\u0065\u0020\u0065\u006e\u0063o\u0064\u0069\u006e\u0067"); +};_dbccb [_gcgdc ]=_dfdc ;};};var (_fcbbb []_bd .CharCode ;_gade []_bd .CharCode ;);for _fgca :=_bd .CharCode (1);_fgca <=0xff;_fgca ++{_aagbf ,_bgea :=_eaaef .CharcodeToRune (_fgca );if !_bgea {_fcbbb =append (_fcbbb ,_fgca );continue ;};if _ ,_bgea =alphabet [_aagbf ]; +!_bgea {_gade =append (_gade ,_fgca );};};_edab :=append (_fcbbb ,_gade ...);if len (_edab )< len (_dbccb ){return nil ,nil ,_b .Errorf ("n\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0065\u006ec\u006f\u0064\u0065\u0020\u0025\u0064\u0020ru\u006e\u0065\u0073\u002c \u0062\u0075\u0074\u0020\u0068\u0061\u0076\u0065\u0020on\u006c\u0079 \u0025\u0064\u0020\u0073\u006c\u006f\u0074\u0073",len (_dbccb ),len (_edab )); +};_gabff :=make ([]rune ,0,len (_dbccb ));for _ecfd :=range _dbccb {_gabff =append (_gabff ,_ecfd );};_gc .Slice (_gabff ,func (_bdace ,_fafdc int )bool {return _gabff [_bdace ]< _gabff [_fafdc ]});_cgfe :=make (map[_bd .CharCode ]_bd .GlyphName ,len (_gabff )); +for _ ,_cgdf :=range _gabff {_cegd :=_edab [0];_edab =_edab [1:];_cgfe [_cegd ]=_dbccb [_cgdf ];};_eaaef =_bd .ApplyDifferences (_eaaef ,_cgfe );_dbbc .SetEncoder (_eaaef );return &PdfFont {_cadf :&_dbbc },_eaaef ,nil ;}; -// CharMetrics represents width and height metrics of a glyph. -type CharMetrics =_bcd .CharMetrics ; +// SetPatternByName sets a pattern resource specified by keyName. +func (_agbf *PdfPageResources )SetPatternByName (keyName _dg .PdfObjectName ,pattern _dg .PdfObject )error {if _agbf .Pattern ==nil {_agbf .Pattern =_dg .MakeDict ();};_gcgde ,_febaf :=_dg .GetDict (_agbf .Pattern );if !_febaf {return _dg .ErrTypeError ; +};_gcgde .Set (keyName ,pattern );return nil ;}; -// SetBorderWidth sets the style's border width. -func (_fcff *PdfBorderStyle )SetBorderWidth (width float64 ){_fcff .W =&width }; +// AddAnnotation appends `annot` to the list of page annotations. +func (_cddcb *PdfPage )AddAnnotation (annot *PdfAnnotation ){if _cddcb ._cadgg ==nil {_cddcb .GetAnnotations ();};_cddcb ._cadgg =append (_cddcb ._cadgg ,annot );}; -// NewCompliancePdfReader creates a PdfReader or an input io.ReadSeeker that during reading will scan the files for the -// metadata details. It could be used for the PDF standard implementations like PDF/A or PDF/X. -// NOTE: This implementation is in experimental development state. -// Keep in mind that it might change in the subsequent minor versions. -func NewCompliancePdfReader (rs _ega .ReadSeeker )(*CompliancePdfReader ,error ){const _gaecd ="\u006d\u006f\u0064\u0065l\u003a\u004e\u0065\u0077\u0043\u006f\u006d\u0070\u006c\u0069a\u006ec\u0065\u0050\u0064\u0066\u0052\u0065\u0061d\u0065\u0072";_baad ,_gaab :=_dffg (rs ,&ReaderOpts {ComplianceMode :true },false ,_gaecd ); -if _gaab !=nil {return nil ,_gaab ;};return &CompliancePdfReader {PdfReader :_baad },nil ;}; +// NewPdfColorspaceDeviceGray returns a new grayscale colorspace. +func NewPdfColorspaceDeviceGray ()*PdfColorspaceDeviceGray {return &PdfColorspaceDeviceGray {}}; -// ToPdfObject returns the PDF representation of the colorspace. -func (_ffdg *PdfColorspaceDeviceGray )ToPdfObject ()_aff .PdfObject {return _aff .MakeName ("\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079");}; +// CharcodesToUnicode converts the character codes `charcodes` to a slice of runes. +// How it works: +// 1. Use the ToUnicode CMap if there is one. +// 2. Use the underlying font's encoding. +func (_gfbg *PdfFont )CharcodesToUnicode (charcodes []_bd .CharCode )[]rune {_cdeg ,_ ,_ :=_gfbg .CharcodesToUnicodeWithStats (charcodes );return _cdeg ;}; -// ColorToRGB converts a Lab color to an RGB color. -func (_ddec *PdfColorspaceLab )ColorToRGB (color PdfColor )(PdfColor ,error ){_eaccg :=func (_gdefg float64 )float64 {if _gdefg >=6.0/29{return _gdefg *_gdefg *_gdefg ;};return 108.0/841*(_gdefg -4.0/29.0);};_ceaf ,_ebdaf :=color .(*PdfColorLab );if !_ebdaf {_adg .Log .Debug ("\u0069\u006e\u0070\u0075t \u0063\u006f\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u006c\u0061\u0062"); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};LStar :=_ceaf .L ();AStar :=_ceaf .A ();BStar :=_ceaf .B ();L :=(LStar +16)/116+AStar /500;M :=(LStar +16)/116;N :=(LStar +16)/116-BStar /200; -X :=_ddec .WhitePoint [0]*_eaccg (L );Y :=_ddec .WhitePoint [1]*_eaccg (M );Z :=_ddec .WhitePoint [2]*_eaccg (N );_gcgg :=3.240479*X +-1.537150*Y +-0.498535*Z ;_abfa :=-0.969256*X +1.875992*Y +0.041556*Z ;_gage :=0.055648*X +-0.204043*Y +1.057311*Z ;_gcgg =_cf .Min (_cf .Max (_gcgg ,0),1.0); -_abfa =_cf .Min (_cf .Max (_abfa ,0),1.0);_gage =_cf .Min (_cf .Max (_gage ,0),1.0);return NewPdfColorDeviceRGB (_gcgg ,_abfa ,_gage ),nil ;}; +// GetNamedDestinations returns the Dests entry in the PDF catalog. +// See section 12.3.2.3 "Named Destinations" (p. 367 PDF32000_2008). +func (_gbed *PdfReader )GetNamedDestinations ()(_dg .PdfObject ,error ){_gceed :=_dg .ResolveReference (_gbed ._gccfb .Get ("\u0044\u0065\u0073t\u0073"));if _gceed ==nil {return nil ,nil ;};if !_gbed ._dadcef {_abefg :=_gbed .traverseObjectData (_gceed ); +if _abefg !=nil {return nil ,_abefg ;};};return _gceed ,nil ;}; -// ToJBIG2Image converts current image to the core.JBIG2Image. -func (_dacfa *Image )ToJBIG2Image ()(*_aff .JBIG2Image ,error ){_gcgfd ,_dbggf :=_dacfa .ToGoImage ();if _dbggf !=nil {return nil ,_dbggf ;};return _aff .GoImageToJBIG2 (_gcgfd ,_aff .JB2ImageAutoThreshold );}; +// ToPdfObject implements interface PdfModel. +func (_daa *PdfAnnotationFileAttachment )ToPdfObject ()_dg .PdfObject {_daa .PdfAnnotation .ToPdfObject ();_fgeg :=_daa ._cdf ;_ceg :=_fgeg .PdfObject .(*_dg .PdfObjectDictionary );_daa .PdfAnnotationMarkup .appendToPdfDictionary (_ceg );_ceg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0046\u0069\u006c\u0065\u0041\u0074\u0074\u0061\u0063h\u006d\u0065\u006e\u0074")); +_ceg .SetIfNotNil ("\u0046\u0053",_daa .FS );_ceg .SetIfNotNil ("\u004e\u0061\u006d\u0065",_daa .Name );return _fgeg ;}; -// Inspect inspects the object types, subtypes and content in the PDF file returning a map of -// object type to number of instances of each. -func (_gfffa *PdfReader )Inspect ()(map[string ]int ,error ){return _gfffa ._gaece .Inspect ()};func _fffb (_dffdd *PdfField )[]*PdfField {_eaeaa :=[]*PdfField {_dffdd };for _ ,_bdbcd :=range _dffdd .Kids {_eaeaa =append (_eaeaa ,_fffb (_bdbcd )...);}; -return _eaeaa ;}; +// PdfAction represents an action in PDF (section 12.6 p. 412). +type PdfAction struct{_bg PdfModel ;Type _dg .PdfObject ;S _dg .PdfObject ;Next _dg .PdfObject ;_cbd *_dg .PdfIndirectObject ;}; -// SetDecode sets the decode image float slice. -func (_ddecf *Image )SetDecode (decode []float64 ){_ddecf ._edgef =decode }; +// GetNumPages returns the number of pages in the document. +func (_dfgca *PdfReader )GetNumPages ()(int ,error ){if _dfgca ._baad .GetCrypter ()!=nil &&!_dfgca ._baad .IsAuthenticated (){return 0,_b .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); +};return len (_dfgca ._daddd ),nil ;}; -// NewPdfColorspaceDeviceN returns an initialized PdfColorspaceDeviceN. -func NewPdfColorspaceDeviceN ()*PdfColorspaceDeviceN {_cfbg :=&PdfColorspaceDeviceN {};return _cfbg };var _fgdgb =map[string ]struct{}{"\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":{},"\u004d\u0061c\u0052\u006f\u006da\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":{},"\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074\u0045\u006e\u0063o\u0064\u0069\u006e\u0067":{},"\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":{}}; +// NewOutlineDest returns a new outline destination which can be used +// with outline items. +func NewOutlineDest (page int64 ,x ,y float64 )OutlineDest {return OutlineDest {Page :page ,Mode :"\u0058\u0059\u005a",X :x ,Y :y };};func _agec (_fdfebc _dg .PdfObject )(PdfFunction ,error ){_fdfebc =_dg .ResolveReference (_fdfebc );if _abeac ,_beabd :=_fdfebc .(*_dg .PdfObjectStream ); +_beabd {_fgef :=_abeac .PdfObjectDictionary ;_dcgge ,_gfdd :=_fgef .Get ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065").(*_dg .PdfObjectInteger );if !_gfdd {_ag .Log .Error ("F\u0075\u006e\u0063\u0074\u0069\u006fn\u0054\u0079\u0070\u0065\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006di\u0073s\u0069\u006e\u0067"); +return nil ,_bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067");};if *_dcgge ==0{return _adcgg (_abeac );}else if *_dcgge ==4{return _edda (_abeac ); +}else {return nil ,_bf .New ("i\u006e\u0076\u0061\u006cid\u0020f\u0075\u006e\u0063\u0074\u0069o\u006e\u0020\u0074\u0079\u0070\u0065");};}else if _aaccg ,_aaae :=_fdfebc .(*_dg .PdfIndirectObject );_aaae {_eedf ,_afdbd :=_aaccg .PdfObject .(*_dg .PdfObjectDictionary ); +if !_afdbd {_ag .Log .Error ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e\u0020\u0049\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006eg\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +return nil ,_bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067");};_gead ,_afdbd :=_eedf .Get ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065").(*_dg .PdfObjectInteger ); +if !_afdbd {_ag .Log .Error ("F\u0075\u006e\u0063\u0074\u0069\u006fn\u0054\u0079\u0070\u0065\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006di\u0073s\u0069\u006e\u0067");return nil ,_bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067"); +};if *_gead ==2{return _fdgf (_aaccg );}else if *_gead ==3{return _ccgad (_aaccg );}else {return nil ,_bf .New ("i\u006e\u0076\u0061\u006cid\u0020f\u0075\u006e\u0063\u0074\u0069o\u006e\u0020\u0074\u0079\u0070\u0065");};}else if _gaaad ,_gcfaf :=_fdfebc .(*_dg .PdfObjectDictionary ); +_gcfaf {_edcaf ,_ccff :=_gaaad .Get ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065").(*_dg .PdfObjectInteger );if !_ccff {_ag .Log .Error ("F\u0075\u006e\u0063\u0074\u0069\u006fn\u0054\u0079\u0070\u0065\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006di\u0073s\u0069\u006e\u0067"); +return nil ,_bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067");};if *_edcaf ==2{return _fdgf (_gaaad );}else if *_edcaf ==3{return _ccgad (_gaaad ); +}else {return nil ,_bf .New ("i\u006e\u0076\u0061\u006cid\u0020f\u0075\u006e\u0063\u0074\u0069o\u006e\u0020\u0074\u0079\u0070\u0065");};}else {_ag .Log .Debug ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006e\u0020\u0054\u0079\u0070\u0065 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0023\u0076",_fdfebc ); +return nil ,_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};}; +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. +func (_beade *PdfColorspaceICCBased )ColorFromFloats (vals []float64 )(PdfColor ,error ){if _beade .Alternate ==nil {if _beade .N ==1{_dcee :=NewPdfColorspaceDeviceGray ();return _dcee .ColorFromFloats (vals );}else if _beade .N ==3{_fdeg :=NewPdfColorspaceDeviceRGB (); +return _fdeg .ColorFromFloats (vals );}else if _beade .N ==4{_baeee :=NewPdfColorspaceDeviceCMYK ();return _baeee .ColorFromFloats (vals );}else {return nil ,_bf .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); +};};return _beade .Alternate .ColorFromFloats (vals );};func (_gecfacb *PdfWriter )setHashIDs (_eccbcf _ed .Hash )error {_acaaa :=_eccbcf .Sum (nil );if _gecfacb ._cedaf ==""{_gecfacb ._cedaf =_be .EncodeToString (_acaaa [:8]);};_gecfacb .setDocumentIDs (_gecfacb ._cedaf ,_be .EncodeToString (_acaaa [8:])); +return nil ;};func _adcgg (_ddcaf *_dg .PdfObjectStream )(*PdfFunctionType0 ,error ){_edagc :=&PdfFunctionType0 {};_edagc ._bedaf =_ddcaf ;_dege :=_ddcaf .PdfObjectDictionary ;_bbfgf ,_gdbdf :=_dg .TraceToDirectObject (_dege .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_dg .PdfObjectArray ); +if !_gdbdf {_ag .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};if _bbfgf .Len ()< 0||_bbfgf .Len ()%2!=0{_ag .Log .Error ("\u0044\u006f\u006d\u0061\u0069\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");return nil ,_bf .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065"); +};_edagc .NumInputs =_bbfgf .Len ()/2;_fgcff ,_fdgec :=_bbfgf .ToFloat64Array ();if _fdgec !=nil {return nil ,_fdgec ;};_edagc .Domain =_fgcff ;_bbfgf ,_gdbdf =_dg .TraceToDirectObject (_dege .Get ("\u0052\u0061\u006eg\u0065")).(*_dg .PdfObjectArray ); +if !_gdbdf {_ag .Log .Error ("\u0052\u0061\u006e\u0067e \u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};if _bbfgf .Len ()< 0||_bbfgf .Len ()%2!=0{return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065");};_edagc .NumOutputs =_bbfgf .Len ()/2;_bdgac ,_fdgec :=_bbfgf .ToFloat64Array ();if _fdgec !=nil {return nil ,_fdgec ; +};_edagc .Range =_bdgac ;_bbfgf ,_gdbdf =_dg .TraceToDirectObject (_dege .Get ("\u0053\u0069\u007a\u0065")).(*_dg .PdfObjectArray );if !_gdbdf {_ag .Log .Error ("\u0053i\u007ae\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); +return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_fbdgf ,_fdgec :=_bbfgf .ToIntegerArray (); +if _fdgec !=nil {return nil ,_fdgec ;};if len (_fbdgf )!=_edagc .NumInputs {_ag .Log .Error ("T\u0061\u0062\u006c\u0065\u0020\u0073\u0069\u007a\u0065\u0020\u006e\u006f\u0074\u0020\u006d\u0061\u0074\u0063h\u0069\u006e\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072 o\u0066\u0020\u0069n\u0070u\u0074\u0073"); +return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_edagc .Size =_fbdgf ;_fgegg ,_gdbdf :=_dg .TraceToDirectObject (_dege .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0053\u0061\u006d\u0070\u006c\u0065")).(*_dg .PdfObjectInteger ); +if !_gdbdf {_ag .Log .Error ("B\u0069\u0074\u0073\u0050\u0065\u0072S\u0061\u006d\u0070\u006c\u0065\u0020\u006e\u006f\u0074 \u0073\u0070\u0065c\u0069f\u0069\u0065\u0064");return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};if *_fgegg !=1&&*_fgegg !=2&&*_fgegg !=4&&*_fgegg !=8&&*_fgegg !=12&&*_fgegg !=16&&*_fgegg !=24&&*_fgegg !=32{_ag .Log .Error ("\u0042\u0069\u0074s \u0070\u0065\u0072\u0020\u0073\u0061\u006d\u0070\u006ce\u0020o\u0075t\u0073i\u0064\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064\u0029",*_fgegg ); +return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_edagc .BitsPerSample =int (*_fgegg );_edagc .Order =1;_afbdgg ,_gdbdf :=_dg .TraceToDirectObject (_dege .Get ("\u004f\u0072\u0064e\u0072")).(*_dg .PdfObjectInteger ); +if _gdbdf {if *_afbdgg !=1&&*_afbdgg !=3{_ag .Log .Error ("\u0049n\u0076a\u006c\u0069\u0064\u0020\u006fr\u0064\u0065r\u0020\u0028\u0025\u0064\u0029",*_afbdgg );return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_edagc .Order =int (*_afbdgg ); +};_bbfgf ,_gdbdf =_dg .TraceToDirectObject (_dege .Get ("\u0045\u006e\u0063\u006f\u0064\u0065")).(*_dg .PdfObjectArray );if _gdbdf {_ebffc ,_geaf :=_bbfgf .ToFloat64Array ();if _geaf !=nil {return nil ,_geaf ;};_edagc .Encode =_ebffc ;};_bbfgf ,_gdbdf =_dg .TraceToDirectObject (_dege .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")).(*_dg .PdfObjectArray ); +if _gdbdf {_edacd ,_abec :=_bbfgf .ToFloat64Array ();if _abec !=nil {return nil ,_abec ;};_edagc .Decode =_edacd ;};_cfeae ,_fdgec :=_dg .DecodeStream (_ddcaf );if _fdgec !=nil {return nil ,_fdgec ;};_edagc ._bgdg =_cfeae ;return _edagc ,nil ;};func _geee (_acabc _dg .PdfObject )(*PdfColorspaceCalGray ,error ){_ddgc :=NewPdfColorspaceCalGray (); +if _gagc ,_baga :=_acabc .(*_dg .PdfIndirectObject );_baga {_ddgc ._gcbf =_gagc ;};_acabc =_dg .TraceToDirectObject (_acabc );_cbdg ,_eceg :=_acabc .(*_dg .PdfObjectArray );if !_eceg {return nil ,_b .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};if _cbdg .Len ()!=2{return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0061\u006cG\u0072\u0061\u0079\u0020\u0063\u006f\u006c\u006f\u0072\u0073p\u0061\u0063\u0065");};_acabc =_dg .TraceToDirectObject (_cbdg .Get (0));_abgg ,_eceg :=_acabc .(*_dg .PdfObjectName ); +if !_eceg {return nil ,_b .Errorf ("\u0043\u0061\u006c\u0047\u0072\u0061\u0079\u0020\u006e\u0061m\u0065\u0020\u006e\u006f\u0074\u0020\u0061 \u004e\u0061\u006d\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};if *_abgg !="\u0043a\u006c\u0047\u0072\u0061\u0079"{return nil ,_b .Errorf ("\u006eo\u0074\u0020\u0061\u0020\u0043\u0061\u006c\u0047\u0072\u0061\u0079 \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065"); +};_acabc =_dg .TraceToDirectObject (_cbdg .Get (1));_fbfdc ,_eceg :=_acabc .(*_dg .PdfObjectDictionary );if !_eceg {return nil ,_b .Errorf ("\u0043\u0061lG\u0072\u0061\u0079 \u0064\u0069\u0063\u0074 no\u0074 a\u0020\u0044\u0069\u0063\u0074\u0069\u006fna\u0072\u0079\u0020\u006f\u0062\u006a\u0065c\u0074"); +};_acabc =_fbfdc .Get ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074");_acabc =_dg .TraceToDirectObject (_acabc );_dccaa ,_eceg :=_acabc .(*_dg .PdfObjectArray );if !_eceg {return nil ,_b .Errorf ("C\u0061\u006c\u0047\u0072\u0061\u0079:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020W\u0068\u0069\u0074e\u0050o\u0069\u006e\u0074"); +};if _dccaa .Len ()!=3{return nil ,_b .Errorf ("\u0043\u0061\u006c\u0047\u0072\u0061y\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0068\u0069t\u0065\u0050\u006f\u0069\u006e\u0074\u0020a\u0072\u0072\u0061\u0079");};_ccba ,_bbf :=_dccaa .GetAsFloat64Slice (); +if _bbf !=nil {return nil ,_bbf ;};_ddgc .WhitePoint =_ccba ;_acabc =_fbfdc .Get ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");if _acabc !=nil {_acabc =_dg .TraceToDirectObject (_acabc );_ddde ,_abce :=_acabc .(*_dg .PdfObjectArray ); +if !_abce {return nil ,_b .Errorf ("C\u0061\u006c\u0047\u0072\u0061\u0079:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020B\u006c\u0061\u0063k\u0050o\u0069\u006e\u0074");};if _ddde .Len ()!=3{return nil ,_b .Errorf ("\u0043\u0061\u006c\u0047\u0072\u0061y\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u006c\u0061c\u006b\u0050\u006f\u0069\u006e\u0074\u0020a\u0072\u0072\u0061\u0079"); +};_eddb ,_bedb :=_ddde .GetAsFloat64Slice ();if _bedb !=nil {return nil ,_bedb ;};_ddgc .BlackPoint =_eddb ;};_acabc =_fbfdc .Get ("\u0047\u0061\u006dm\u0061");if _acabc !=nil {_acabc =_dg .TraceToDirectObject (_acabc );_gcfb ,_edgb :=_dg .GetNumberAsFloat (_acabc ); +if _edgb !=nil {return nil ,_b .Errorf ("C\u0061\u006c\u0047\u0072\u0061\u0079:\u0020\u0067\u0061\u006d\u006d\u0061\u0020\u006e\u006ft\u0020\u0061\u0020n\u0075m\u0062\u0065\u0072");};_ddgc .Gamma =_gcfb ;};return _ddgc ,nil ;}; -// GetNumComponents returns the number of color components (4 for CMYK32). -func (_affa *PdfColorDeviceCMYK )GetNumComponents ()int {return 4}; +// ToWriter creates a new writer from the current reader, based on the specified options. +// If no options are provided, all reader properties are copied to the writer. +func (_eedaeb *PdfReader )ToWriter (opts *ReaderToWriterOpts )(*PdfWriter ,error ){_efab :=NewPdfWriter ();if opts ==nil {opts =&ReaderToWriterOpts {};};_ebefa ,_adef :=_eedaeb .GetNumPages ();if _adef !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_adef ); +return nil ,_adef ;};for _cddgc :=1;_cddgc <=_ebefa ;_cddgc ++{_abdf ,_fgcce :=_eedaeb .GetPage (_cddgc );if _fgcce !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fgcce );return nil ,_fgcce ;};if opts .PageProcessCallback !=nil {_fgcce =opts .PageProcessCallback (_cddgc ,_abdf ); +if _fgcce !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fgcce );return nil ,_fgcce ;};}else if opts .PageCallback !=nil {opts .PageCallback (_cddgc ,_abdf );};_fgcce =_efab .AddPage (_abdf );if _fgcce !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fgcce ); +return nil ,_fgcce ;};};_efab ._efacd =_eedaeb .PdfVersion ();if !opts .SkipInfo {_ecccf ,_egag :=_eedaeb .GetPdfInfo ();if _egag !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_egag );}else {_efab ._efbfa .PdfObject =_ecccf .ToPdfObject (); +};};if !opts .SkipMetadata {if _dcegf :=_eedaeb ._gccfb .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");_dcegf !=nil {if _caca :=_efab .SetCatalogMetadata (_dcegf );_caca !=nil {return nil ,_caca ;};};};if !opts .SkipAcroForm {_dgcba :=_efab .SetForms (_eedaeb .AcroForm ); +if _dgcba !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_dgcba );return nil ,_dgcba ;};};if !opts .SkipOutlines {_efab .AddOutlineTree (_eedaeb .GetOutlineTree ());};if !opts .SkipOCProperties {_daddaf ,_gddef :=_eedaeb .GetOCProperties (); +if _gddef !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gddef );}else {_gddef =_efab .SetOCProperties (_daddaf );if _gddef !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gddef );};};};if !opts .SkipPageLabels {_cddf ,_dgcf :=_eedaeb .GetPageLabels (); +if _dgcf !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_dgcf );}else {_dgcf =_efab .SetPageLabels (_cddf );if _dgcf !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_dgcf );};};};if !opts .SkipNamedDests {_aadca ,_ebgga :=_eedaeb .GetNamedDestinations (); +if _ebgga !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ebgga );}else {_ebgga =_efab .SetNamedDestinations (_aadca );if _ebgga !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ebgga );};};};if !opts .SkipNameDictionary {_afcgcg ,_gfbe :=_eedaeb .GetNameDictionary (); +if _gfbe !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gfbe );}else {_gfbe =_efab .SetNameDictionary (_afcgcg );if _gfbe !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gfbe );};};};if !opts .SkipRotation &&_eedaeb .Rotate !=nil {if _gccfc :=_efab .SetRotation (*_eedaeb .Rotate ); +_gccfc !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_gccfc );};};return &_efab ,nil ;}; -// NewPdfPageResourcesFromDict creates and returns a new PdfPageResources object -// from the input dictionary. -func NewPdfPageResourcesFromDict (dict *_aff .PdfObjectDictionary )(*PdfPageResources ,error ){_dabee :=NewPdfPageResources ();if _fbef :=dict .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e");_fbef !=nil {_dabee .ExtGState =_fbef ;};if _bdcg :=dict .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"); -_bdcg !=nil &&!_aff .IsNullObject (_bdcg ){_dabee .ColorSpace =_bdcg ;};if _dbfac :=dict .Get ("\u0050a\u0074\u0074\u0065\u0072\u006e");_dbfac !=nil {_dabee .Pattern =_dbfac ;};if _aeed :=dict .Get ("\u0053h\u0061\u0064\u0069\u006e\u0067");_aeed !=nil {_dabee .Shading =_aeed ; -};if _cabd :=dict .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074");_cabd !=nil {_dabee .XObject =_cabd ;};if _fbbaf :=_aff .ResolveReference (dict .Get ("\u0046\u006f\u006e\u0074"));_fbbaf !=nil {_dabee .Font =_fbbaf ;};if _bddad :=dict .Get ("\u0050r\u006f\u0063\u0053\u0065\u0074"); -_bddad !=nil {_dabee .ProcSet =_bddad ;};if _cgdcd :=dict .Get ("\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073");_cgdcd !=nil {_dabee .Properties =_cgdcd ;};return _dabee ,nil ;}; +// SetPageLabels sets the PageLabels entry in the PDF catalog. +// See section 12.4.2 "Page Labels" (p. 382 PDF32000_2008). +func (_cgcag *PdfWriter )SetPageLabels (pageLabels _dg .PdfObject )error {if pageLabels ==nil {return nil ;};_ag .Log .Trace ("\u0053\u0065t\u0074\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0050\u0061\u0067\u0065\u004c\u0061\u0062\u0065\u006cs.\u002e\u002e"); +_cgcag ._ecdf .Set ("\u0050\u0061\u0067\u0065\u004c\u0061\u0062\u0065\u006c\u0073",pageLabels );return _cgcag .addObjects (pageLabels );}; -// ToPdfObject implements interface PdfModel. -func (_dfe *PdfActionSound )ToPdfObject ()_aff .PdfObject {_dfe .PdfAction .ToPdfObject ();_egaf :=_dfe ._df ;_efe :=_egaf .PdfObject .(*_aff .PdfObjectDictionary );_efe .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeSound )));_efe .SetIfNotNil ("\u0053\u006f\u0075n\u0064",_dfe .Sound ); -_efe .SetIfNotNil ("\u0056\u006f\u006c\u0075\u006d\u0065",_dfe .Volume );_efe .SetIfNotNil ("S\u0079\u006e\u0063\u0068\u0072\u006f\u006e\u006f\u0075\u0073",_dfe .Synchronous );_efe .SetIfNotNil ("\u0052\u0065\u0070\u0065\u0061\u0074",_dfe .Repeat );_efe .SetIfNotNil ("\u004d\u0069\u0078",_dfe .Mix ); -return _egaf ;}; +// PdfShadingType6 is a Coons patch mesh. +type PdfShadingType6 struct{*PdfShading ;BitsPerCoordinate *_dg .PdfObjectInteger ;BitsPerComponent *_dg .PdfObjectInteger ;BitsPerFlag *_dg .PdfObjectInteger ;Decode *_dg .PdfObjectArray ;Function []PdfFunction ;}; -// AcroFormRepairOptions contains options for rebuilding the AcroForm. -type AcroFormRepairOptions struct{}; +// SetFillImage attach a model.Image to push button. +func (_gegd *PdfFieldButton )SetFillImage (image *Image ){if _gegd .IsPush (){_gegd ._gddc =image ;};};var _fecec =map[string ]struct{}{"\u0046\u0054":{},"\u004b\u0069\u0064\u0073":{},"\u0054":{},"\u0054\u0055":{},"\u0054\u004d":{},"\u0046\u0066":{},"\u0056":{},"\u0044\u0056":{},"\u0041\u0041":{},"\u0044\u0041":{},"\u0051":{},"\u0044\u0053":{},"\u0052\u0056":{}}; -// IsSimple returns true if `font` is a simple font. -func (_dacee *PdfFont )IsSimple ()bool {_ ,_efdf :=_dacee ._gebd .(*pdfFontSimple );return _efdf }; -// ConvertToBinary converts current image into binary (bi-level) format. -// Binary images are composed of single bits per pixel (only black or white). -// If provided image has more color components, then it would be converted into binary image using -// histogram auto threshold function. -func (_fead *Image )ConvertToBinary ()error {if _fead .ColorComponents ==1&&_fead .BitsPerComponent ==1{return nil ;};_dggd ,_ggfac :=_fead .ToGoImage ();if _ggfac !=nil {return _ggfac ;};_bdcbd ,_ggfac :=_gd .MonochromeConverter .Convert (_dggd );if _ggfac !=nil {return _ggfac ; -};_fead .Data =_bdcbd .Base ().Data ;_fead ._becb ,_ggfac =_gd .ScaleAlphaToMonochrome (_fead ._becb ,int (_fead .Width ),int (_fead .Height ));if _ggfac !=nil {return _ggfac ;};_fead .BitsPerComponent =1;_fead .ColorComponents =1;_fead ._edgef =nil ;return nil ; +// GetContainingPdfObject returns the container of the outline item (indirect object). +func (_ggeafa *PdfOutlineItem )GetContainingPdfObject ()_dg .PdfObject {return _ggeafa ._fbgf };func _agea (_dcdeb _dg .PdfObject )(*PdfPattern ,error ){_bgadec :=&PdfPattern {};var _gacddg *_dg .PdfObjectDictionary ;if _edbg ,_egde :=_dg .GetIndirect (_dcdeb ); +_egde {_bgadec ._eacce =_edbg ;_abceg ,_degea :=_edbg .PdfObject .(*_dg .PdfObjectDictionary );if !_degea {_ag .Log .Debug ("\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006fn\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0028g\u006f\u0074\u0020%\u0054\u0029",_edbg .PdfObject ); +return nil ,_dg .ErrTypeError ;};_gacddg =_abceg ;}else if _aafde ,_fgab :=_dg .GetStream (_dcdeb );_fgab {_bgadec ._eacce =_aafde ;_gacddg =_aafde .PdfObjectDictionary ;}else {_ag .Log .Debug ("\u0050a\u0074\u0074e\u0072\u006e\u0020\u006eo\u0074\u0020\u0061n\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074 o\u0062\u006a\u0065c\u0074\u0020o\u0072\u0020\u0073\u0074\u0072\u0065a\u006d\u002e \u0025\u0054",_dcdeb ); +return nil ,_dg .ErrTypeError ;};_cfbae :=_gacddg .Get ("P\u0061\u0074\u0074\u0065\u0072\u006e\u0054\u0079\u0070\u0065");if _cfbae ==nil {_ag .Log .Debug ("\u0050\u0064\u0066\u0020\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0020\u0050\u0061\u0074t\u0065\u0072n\u0054\u0079\u0070\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_cdad ,_edbbg :=_cfbae .(*_dg .PdfObjectInteger );if !_edbbg {_ag .Log .Debug ("\u0050\u0061tt\u0065\u0072\u006e \u0074\u0079\u0070\u0065 no\u0074 a\u006e\u0020\u0069\u006e\u0074\u0065\u0067er\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_cfbae ); +return nil ,_dg .ErrTypeError ;};if *_cdad !=1&&*_cdad !=2{_ag .Log .Debug ("\u0050\u0061\u0074\u0074e\u0072\u006e\u0020\u0074\u0079\u0070\u0065\u0020\u0021\u003d \u0031/\u0032\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",*_cdad );return nil ,_dg .ErrRangeError ; +};_bgadec .PatternType =int64 (*_cdad );switch *_cdad {case 1:_dfead ,_ecedd :=_afbc (_gacddg );if _ecedd !=nil {return nil ,_ecedd ;};_dfead .PdfPattern =_bgadec ;_bgadec ._cgdcc =_dfead ;return _bgadec ,nil ;case 2:_bffcd ,_beadeb :=_adabe (_gacddg ); +if _beadeb !=nil {return nil ,_beadeb ;};_bffcd .PdfPattern =_bgadec ;_bgadec ._cgdcc =_bffcd ;return _bgadec ,nil ;};return nil ,_bf .New ("\u0075n\u006bn\u006f\u0077\u006e\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e");};func (_caa *PdfReader )newPdfActionResetFormFromDict (_bgb *_dg .PdfObjectDictionary )(*PdfActionResetForm ,error ){return &PdfActionResetForm {Fields :_bgb .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"),Flags :_bgb .Get ("\u0046\u006c\u0061g\u0073")},nil ; }; -// ToPdfObject implements interface PdfModel. -func (_bbg *PdfActionSetOCGState )ToPdfObject ()_aff .PdfObject {_bbg .PdfAction .ToPdfObject ();_ga :=_bbg ._df ;_fae :=_ga .PdfObject .(*_aff .PdfObjectDictionary );_fae .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeSetOCGState )));_fae .SetIfNotNil ("\u0053\u0074\u0061t\u0065",_bbg .State ); -_fae .SetIfNotNil ("\u0050\u0072\u0065\u0073\u0065\u0072\u0076\u0065\u0052\u0042",_bbg .PreserveRB );return _ga ;}; +// NewPdfAnnotation3D returns a new 3d annotation. +func NewPdfAnnotation3D ()*PdfAnnotation3D {_cggg :=NewPdfAnnotation ();_fff :=&PdfAnnotation3D {};_fff .PdfAnnotation =_cggg ;_cggg .SetContext (_fff );return _fff ;}; -// PdfOutline represents a PDF outline dictionary (Table 152 - p. 376). -type PdfOutline struct{PdfOutlineTreeNode ;Parent *PdfOutlineTreeNode ;Count *int64 ;_ecbb *_aff .PdfIndirectObject ;}; +// DecodeArray returns the range of color component values in DeviceCMYK colorspace. +func (_dedec *PdfColorspaceDeviceCMYK )DecodeArray ()[]float64 {return []float64 {0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0};}; -// NewPdfAnnotationPolyLine returns a new polyline annotation. -func NewPdfAnnotationPolyLine ()*PdfAnnotationPolyLine {_cbg :=NewPdfAnnotation ();_cag :=&PdfAnnotationPolyLine {};_cag .PdfAnnotation =_cbg ;_cag .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_cbg .SetContext (_cag );return _cag ;}; +// ToPdfObject implements interface PdfModel. +func (_cagc *PdfAnnotationWidget )ToPdfObject ()_dg .PdfObject {_cagc .PdfAnnotation .ToPdfObject ();_dbbb :=_cagc ._cdf ;_cdgdg :=_dbbb .PdfObject .(*_dg .PdfObjectDictionary );if _cagc ._dgac {return _dbbb ;};_cagc ._dgac =true ;_cdgdg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0057\u0069\u0064\u0067\u0065\u0074")); +_cdgdg .SetIfNotNil ("\u0048",_cagc .H );_cdgdg .SetIfNotNil ("\u004d\u004b",_cagc .MK );_cdgdg .SetIfNotNil ("\u0041",_cagc .A );_cdgdg .SetIfNotNil ("\u0041\u0041",_cagc .AA );_cdgdg .SetIfNotNil ("\u0042\u0053",_cagc .BS );_abaa :=_cagc .Parent ;if _cagc ._cgg !=nil {if _cagc ._cgg ._egce ==_cagc ._cdf {_cagc ._cgg .ToPdfObject (); +};_abaa =_cagc ._cgg .GetContainingPdfObject ();};if _abaa !=_dbbb {_cdgdg .SetIfNotNil ("\u0050\u0061\u0072\u0065\u006e\u0074",_abaa );};_cagc ._dgac =false ;return _dbbb ;}; -// SetDocInfo sets the document /Info metadata. -// This will overwrite any globally declared document info. -func (_cedd *PdfAppender )SetDocInfo (info *PdfInfo ){_cedd ._fabd =info };func (_cdefg *PdfFilespec )getDict ()*_aff .PdfObjectDictionary {if _cgacc ,_fgbgb :=_cdefg ._dfefa .(*_aff .PdfIndirectObject );_fgbgb {_ecgef ,_cgfag :=_cgacc .PdfObject .(*_aff .PdfObjectDictionary ); -if !_cgfag {return nil ;};return _ecgef ;}else if _eeffa ,_cdeggg :=_cdefg ._dfefa .(*_aff .PdfObjectDictionary );_cdeggg {return _eeffa ;}else {_adg .Log .Debug ("\u0054\u0072\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020F\u0069\u006c\u0065\u0073\u0070\u0065\u0063\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064 \u006f\u0062\u006a\u0065\u0063\u0074 \u0074\u0079p\u0065\u0020(\u0025T\u0029",_cdefg ._dfefa ); -return nil ;};}; +// AcroFormNeedsRepair returns true if the document contains widget annotations +// linked to fields which are not referenced in the AcroForm. The AcroForm can +// be repaired using the RepairAcroForm method of the reader. +func (_dddge *PdfReader )AcroFormNeedsRepair ()(bool ,error ){var _gefga []*PdfField ;if _dddge .AcroForm !=nil {_gefga =_dddge .AcroForm .AllFields ();};_beeab :=make (map[*PdfField ]struct{},len (_gefga ));for _ ,_adcff :=range _gefga {_beeab [_adcff ]=struct{}{}; +};for _ ,_cgbfd :=range _dddge .PageList {_cbgcce ,_dfebb :=_cgbfd .GetAnnotations ();if _dfebb !=nil {return false ,_dfebb ;};for _ ,_ffffg :=range _cbgcce {_efec ,_cdgbe :=_ffffg .GetContext ().(*PdfAnnotationWidget );if !_cdgbe {continue ;};_befaa :=_efec .Field (); +if _befaa ==nil {return true ,nil ;};if _ ,_gbba :=_beeab [_befaa ];!_gbba {return true ,nil ;};};};return false ,nil ;}; -// GetContainingPdfObject returns the containing object for the PdfField, i.e. an indirect object -// containing the field dictionary. -func (_cbee *PdfField )GetContainingPdfObject ()_aff .PdfObject {return _cbee ._dfbfd }; +// FontDescriptor returns font's PdfFontDescriptor. This may be a builtin descriptor for standard 14 +// fonts but must be an explicit descriptor for other fonts. +func (_gbgfb *PdfFont )FontDescriptor ()*PdfFontDescriptor {if _gbgfb .baseFields ()._ccfb !=nil {return _gbgfb .baseFields ()._ccfb ;};if _bffeb :=_gbgfb ._cadf .getFontDescriptor ();_bffeb !=nil {return _bffeb ;};_ag .Log .Error ("\u0041\u006cl \u0066\u006f\u006et\u0073\u0020\u0068\u0061ve \u0061 D\u0065\u0073\u0063\u0072\u0069\u0070\u0074or\u002e\u0020\u0066\u006f\u006e\u0074\u003d%\u0073",_gbgfb ); +return nil ;};func _cbaa (_ebdb _dg .PdfObject )(*_dg .PdfObjectDictionary ,*fontCommon ,error ){_cebg :=&fontCommon {};if _efbg ,_eabag :=_ebdb .(*_dg .PdfIndirectObject );_eabag {_cebg ._bgggd =_efbg .ObjectNumber ;};_gafg ,_bdee :=_dg .GetDict (_ebdb ); +if !_bdee {_ag .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0062\u0079\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_ebdb ); +return nil ,nil ,ErrFontNotSupported ;};_aafa ,_bdee :=_dg .GetNameVal (_gafg .Get ("\u0054\u0079\u0070\u0065"));if !_bdee {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046o\u006e\u0074\u0020\u0049\u006ec\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u002e\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); +return nil ,nil ,ErrRequiredAttributeMissing ;};if _aafa !="\u0046\u006f\u006e\u0074"{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0046\u006f\u006e\u0074\u0020\u0049\u006e\u0063\u006f\u006d\u0070\u0061t\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u002e\u0020\u0054\u0079\u0070\u0065\u003d\u0025\u0071\u002e\u0020\u0053\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0025\u0071.",_aafa ,"\u0046\u006f\u006e\u0074"); +return nil ,nil ,_dg .ErrTypeError ;};_bbfgd ,_bdee :=_dg .GetNameVal (_gafg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_bdee {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020F\u006f\u006e\u0074 \u0049\u006e\u0063o\u006d\u0070a\u0074\u0069\u0062\u0069\u006c\u0069t\u0079. \u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); +return nil ,nil ,ErrRequiredAttributeMissing ;};_cebg ._bcga =_bbfgd ;_dgbae ,_bdee :=_dg .GetNameVal (_gafg .Get ("\u004e\u0061\u006d\u0065"));if _bdee {_cebg ._cefg =_dgbae ;};_aabbd :=_gafg .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e");if _aabbd !=nil {_cebg ._ebbff =_dg .TraceToDirectObject (_aabbd ); +_dfdeg ,_eeagb :=_bfbgg (_cebg ._ebbff ,_cebg );if _eeagb !=nil {return _gafg ,_cebg ,_eeagb ;};_cebg ._ecfb =_dfdeg ;}else if _bbfgd =="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030"||_bbfgd =="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{_beaf ,_fgdcg :=_ff .NewCIDSystemInfo (_gafg .Get ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f")); +if _fgdcg !=nil {return _gafg ,_cebg ,_fgdcg ;};_ddda :=_b .Sprintf ("\u0025\u0073\u002d\u0025\u0073\u002d\u0055\u0043\u0053\u0032",_beaf .Registry ,_beaf .Ordering );if _ff .IsPredefinedCMap (_ddda ){_cebg ._ecfb ,_fgdcg =_ff .LoadPredefinedCMap (_ddda ); +if _fgdcg !=nil {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020l\u006f\u0061\u0064\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0043\u004d\u0061\u0070\u0020\u0025\u0073\u003a\u0020\u0025\u0076",_ddda ,_fgdcg ); +};};};_fced :=_gafg .Get ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072");if _fced !=nil {_ffdd ,_fgga :=_deg (_fced );if _fgga !=nil {_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0042\u0061\u0064\u0020\u0066\u006f\u006et\u0020d\u0065s\u0063r\u0069\u0070\u0074\u006f\u0072\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fgga ); +return _gafg ,_cebg ,_fgga ;};_cebg ._ccfb =_ffdd ;};if _bbfgd !="\u0054\u0079\u0070e\u0033"{_bccd ,_eacdd :=_dg .GetNameVal (_gafg .Get ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074"));if !_eacdd {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u006f\u006et\u0020\u0049\u006ec\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069t\u0079\u002e\u0020\u0042\u0061se\u0046\u006f\u006e\u0074\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); +return _gafg ,_cebg ,ErrRequiredAttributeMissing ;};_cebg ._ecbf =_bccd ;};return _gafg ,_cebg ,nil ;}; -// GetContext returns the PdfField context which is the more specific field data type, e.g. PdfFieldButton -// for a button field. -func (_afcfa *PdfField )GetContext ()PdfModel {return _afcfa ._gaecf }; +// Flags returns the field flags for the field accounting for any inherited flags. +func (_eeb *PdfField )Flags ()FieldFlag {var _bcbb FieldFlag ;_fdabc ,_fffdg :=_eeb .inherit (func (_cgcbd *PdfField )bool {if _cgcbd .Ff !=nil {_bcbb =FieldFlag (*_cgcbd .Ff );return true ;};return false ;});if _fffdg !=nil {_ag .Log .Debug ("\u0045\u0072\u0072o\u0072\u0020\u0065\u0076\u0061\u006c\u0075\u0061\u0074\u0069\u006e\u0067\u0020\u0066\u006c\u0061\u0067\u0073\u0020\u0076\u0069\u0061\u0020\u0069\u006e\u0068\u0065\u0072\u0069t\u0061\u006e\u0063\u0065\u003a\u0020\u0025\u0076",_fffdg ); +};if !_fdabc {_ag .Log .Trace ("N\u006f\u0020\u0066\u0069\u0065\u006cd\u0020\u0066\u006c\u0061\u0067\u0073 \u0066\u006f\u0075\u006e\u0064\u0020\u002d \u0061\u0073\u0073\u0075\u006d\u0065\u0020\u0063\u006c\u0065a\u0072");};return _bcbb ;}; -// GetContainingPdfObject returns the page as a dictionary within an PdfIndirectObject. -func (_dgdgg *PdfPage )GetContainingPdfObject ()_aff .PdfObject {return _dgdgg ._fage }; +// SetContext sets the sub action (context). +func (_gfe *PdfAction )SetContext (ctx PdfModel ){_gfe ._bg =ctx }; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// components. The slice should contain a single PdfObjectFloat element in -// range 0-1. -func (_cecd *PdfColorspaceDeviceGray )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_eede ,_dfgb :=_aff .GetNumbersAsFloat (objects ); -if _dfgb !=nil {return nil ,_dfgb ;};return _cecd .ColorFromFloats (_eede );}; +// SetDSS sets the DSS dictionary (ETSI TS 102 778-4 V1.1.1) of the current +// document revision. +func (_fddd *PdfAppender )SetDSS (dss *DSS ){if dss !=nil {_fddd .updateObjectsDeep (dss .ToPdfObject (),nil );};_fddd ._cfdd =dss ;}; -// GetContext returns the context of the outline tree node, which is either a -// *PdfOutline or a *PdfOutlineItem. The method returns nil for uninitialized -// tree nodes. -func (_degeca *PdfOutlineTreeNode )GetContext ()PdfModel {if _accfdf ,_dedce :=_degeca ._gecd .(*PdfOutline );_dedce {return _accfdf ;};if _fgfbe ,_gbcf :=_degeca ._gecd .(*PdfOutlineItem );_gbcf {return _fgfbe ;};_adg .Log .Debug ("\u0045\u0052RO\u0052\u0020\u0049n\u0076\u0061\u006c\u0069d o\u0075tl\u0069\u006e\u0065\u0020\u0074\u0072\u0065e \u006e\u006f\u0064\u0065\u0020\u0069\u0074e\u006d"); -return nil ;}; +// NewPdfAnnotationRedact returns a new redact annotation. +func NewPdfAnnotationRedact ()*PdfAnnotationRedact {_eadg :=NewPdfAnnotation ();_gdg :=&PdfAnnotationRedact {};_gdg .PdfAnnotation =_eadg ;_gdg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_eadg .SetContext (_gdg );return _gdg ;}; -// GetNumComponents returns the number of color components (1 for Separation). -func (_aage *PdfColorspaceSpecialSeparation )GetNumComponents ()int {return 1}; +// B returns the value of the B component of the color. +func (_gbac *PdfColorLab )B ()float64 {return _gbac [2]};func _cdfe (_cdec *_dg .PdfObjectDictionary )(*PdfFieldButton ,error ){_dadc :=&PdfFieldButton {};_dadc .PdfField =NewPdfField ();_dadc .PdfField .SetContext (_dadc );_dadc .Opt ,_ =_dg .GetArray (_cdec .Get ("\u004f\u0070\u0074")); +_afcgc :=NewPdfAnnotationWidget ();_afcgc .A ,_ =_dg .GetDict (_cdec .Get ("\u0041"));_afcgc .AP ,_ =_dg .GetDict (_cdec .Get ("\u0041\u0050"));_afcgc .SetContext (_dadc );_dadc .PdfField .Annotations =append (_dadc .PdfField .Annotations ,_afcgc );return _dadc ,nil ; +}; -// GetStandardApplier gets currently used StandardApplier.. -func (_dbcffc *PdfWriter )GetStandardApplier ()StandardApplier {return _dbcffc ._afgef }; +// Encoder returns the font's text encoder. +func (_bfge *PdfFont )Encoder ()_bd .TextEncoder {_ffccg :=_bfge .actualFont ();if _ffccg ==nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0045n\u0063\u006f\u0064er\u0020\u006e\u006f\u0074\u0020\u0069m\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0066o\u006e\u0074\u0020\u0074\u0079\u0070\u0065\u003d%\u0023\u0054",_bfge ._cadf ); +return nil ;};return _ffccg .Encoder ();}; -// IsRadio returns true if the button field represents a radio button, false otherwise. -func (_ccad *PdfFieldButton )IsRadio ()bool {return _ccad .GetType ()==ButtonTypeRadio }; +// PdfPageResources is a Page resources model. +// Implements PdfModel. +type PdfPageResources struct{ExtGState _dg .PdfObject ;ColorSpace _dg .PdfObject ;Pattern _dg .PdfObject ;Shading _dg .PdfObject ;XObject _dg .PdfObject ;Font _dg .PdfObject ;ProcSet _dg .PdfObject ;Properties _dg .PdfObject ;_ddcfb *_dg .PdfObjectDictionary ; +_dadae *PdfPageResourcesColorspaces ;}; -// ToPdfObject implements interface PdfModel. -func (_de *PdfActionHide )ToPdfObject ()_aff .PdfObject {_de .PdfAction .ToPdfObject ();_fag :=_de ._df ;_acc :=_fag .PdfObject .(*_aff .PdfObjectDictionary );_acc .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeHide )));_acc .SetIfNotNil ("\u0054",_de .T ); -_acc .SetIfNotNil ("\u0048",_de .H );return _fag ;}; +// GetContainingPdfObject returns the container of the resources object (indirect object). +func (_ffeef *PdfPageResources )GetContainingPdfObject ()_dg .PdfObject {return _ffeef ._ddcfb }; -// ToPdfOutlineItem returns a low level PdfOutlineItem object, -// based on the current instance. -func (_edcda *OutlineItem )ToPdfOutlineItem ()(*PdfOutlineItem ,int64 ){_beeeg :=NewPdfOutlineItem ();_beeeg .Title =_aff .MakeEncodedString (_edcda .Title ,true );_beeeg .Dest =_edcda .Dest .ToPdfObject ();var _gceed []*PdfOutlineItem ;var _edgefe int64 ; -var _fdfa *PdfOutlineItem ;for _ ,_fdefe :=range _edcda .Entries {_febc ,_eaddb :=_fdefe .ToPdfOutlineItem ();_febc .Parent =&_beeeg .PdfOutlineTreeNode ;if _fdfa !=nil {_fdfa .Next =&_febc .PdfOutlineTreeNode ;_febc .Prev =&_fdfa .PdfOutlineTreeNode ; -};_gceed =append (_gceed ,_febc );_edgefe +=_eaddb ;_fdfa =_febc ;};_ceac :=len (_gceed );_edgefe +=int64 (_ceac );if _ceac > 0{_beeeg .First =&_gceed [0].PdfOutlineTreeNode ;_beeeg .Last =&_gceed [_ceac -1].PdfOutlineTreeNode ;_beeeg .Count =&_edgefe ; -};return _beeeg ,_edgefe ;}; +// VariableText contains the common attributes of a variable text. +// The VariableText is typically not used directly, but is can encapsulate by PdfField +// See section 12.7.3.3 "Variable Text" and Table 222 (pp. 434-436 PDF32000_2008). +type VariableText struct{DA *_dg .PdfObjectString ;Q *_dg .PdfObjectInteger ;DS *_dg .PdfObjectString ;RV _dg .PdfObject ;}; -// ToPdfObject implements interface PdfModel. -func (_bacg *PdfAnnotationStrikeOut )ToPdfObject ()_aff .PdfObject {_bacg .PdfAnnotation .ToPdfObject ();_fcga :=_bacg ._ccfb ;_cfdf :=_fcga .PdfObject .(*_aff .PdfObjectDictionary );_bacg .PdfAnnotationMarkup .appendToPdfDictionary (_cfdf );_cfdf .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0053t\u0072\u0069\u006b\u0065\u004f\u0075t")); -_cfdf .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_bacg .QuadPoints );return _fcga ;}; +// SignatureValidationResult defines the response from the signature validation handler. +type SignatureValidationResult struct{ -// Register registers (caches) a model to primitive object relationship. -func (_cecg *modelManager )Register (primitive _aff .PdfObject ,model PdfModel ){_cecg ._ceaea [model ]=primitive ;_cecg ._geefd [primitive ]=model ;}; +// List of errors when validating the signature. +Errors []string ;IsSigned bool ;IsVerified bool ;IsTrusted bool ;Fields []*PdfField ;Name string ;Date PdfDate ;Reason string ;Location string ;ContactInfo string ;DiffResults *_ecb .DiffResults ;IsCrlFound bool ;IsOcspFound bool ; -// ToPdfObject implements interface PdfModel. -func (_gfgb *PdfActionGoToE )ToPdfObject ()_aff .PdfObject {_gfgb .PdfAction .ToPdfObject ();_gce :=_gfgb ._df ;_gg :=_gce .PdfObject .(*_aff .PdfObjectDictionary );_gg .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeGoToE )));if _gfgb .F !=nil {_gg .Set ("\u0046",_gfgb .F .ToPdfObject ()); -};_gg .SetIfNotNil ("\u0044",_gfgb .D );_gg .SetIfNotNil ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw",_gfgb .NewWindow );_gg .SetIfNotNil ("\u0054",_gfgb .T );return _gce ;}; +// GeneralizedTime is the time at which the time-stamp token has been created by the TSA (RFC 3161). +GeneralizedTime _a .Time ;}; -// NewPdfReaderFromFile creates a new PdfReader from the speficied PDF file. -// If ReaderOpts is nil it will be set to default value from NewReaderOpts. -func NewPdfReaderFromFile (pdfFile string ,opts *ReaderOpts )(*PdfReader ,*_db .File ,error ){const _fgef ="\u006d\u006f\u0064\u0065\u006c\u003a\u004e\u0065\u0077\u0050\u0064f\u0052\u0065\u0061\u0064\u0065\u0072\u0046\u0072\u006f\u006dF\u0069\u006c\u0065"; -_acefb ,_abdb :=_db .Open (pdfFile );if _abdb !=nil {return nil ,nil ,_abdb ;};_aaabc ,_abdb :=_dffg (_acefb ,opts ,true ,_fgef );if _abdb !=nil {_acefb .Close ();return nil ,nil ,_abdb ;};return _aaabc ,_acefb ,nil ;};func (_bab *PdfReader )newPdfAnnotationCaretFromDict (_fbgf *_aff .PdfObjectDictionary )(*PdfAnnotationCaret ,error ){_gefd :=PdfAnnotationCaret {}; -_gdcf ,_fcag :=_bab .newPdfAnnotationMarkupFromDict (_fbgf );if _fcag !=nil {return nil ,_fcag ;};_gefd .PdfAnnotationMarkup =_gdcf ;_gefd .RD =_fbgf .Get ("\u0052\u0044");_gefd .Sy =_fbgf .Get ("\u0053\u0079");return &_gefd ,nil ;}; +// Encoder returns the font's text encoder. +func (_dfda pdfCIDFontType2 )Encoder ()_bd .TextEncoder {return _dfda ._dcde };type pdfFontSimple struct{fontCommon ;_gccg *_dg .PdfIndirectObject ;_cfagf map[_bd .CharCode ]float64 ;_bdeed _bd .TextEncoder ;_dbdb _bd .TextEncoder ;_gagbe *PdfFontDescriptor ; -// Evaluate runs the function. Input is [x1 x2 x3]. -func (_eeagb *PdfFunctionType4 )Evaluate (xVec []float64 )([]float64 ,error ){if _eeagb ._gdbae ==nil {_eeagb ._gdbae =_bf .NewPSExecutor (_eeagb .Program );};var _eddb []_bf .PSObject ;for _ ,_gcdf :=range xVec {_eddb =append (_eddb ,_bf .MakeReal (_gcdf )); -};_cege ,_dedge :=_eeagb ._gdbae .Execute (_eddb );if _dedge !=nil {return nil ,_dedge ;};_eccg ,_dedge :=_bf .PSObjectArrayToFloat64Array (_cege );if _dedge !=nil {return nil ,_dedge ;};return _eccg ,nil ;}; -// ColorAt returns the color of the image pixel specified by the x and y coordinates. -func (_ebbc *Image )ColorAt (x ,y int )(_bc .Color ,error ){_abca :=_gd .BytesPerLine (int (_ebbc .Width ),int (_ebbc .BitsPerComponent ),_ebbc .ColorComponents );switch _ebbc .ColorComponents {case 1:return _gd .ColorAtGrayscale (x ,y ,int (_ebbc .BitsPerComponent ),_abca ,_ebbc .Data ,_ebbc ._edgef ); -case 3:return _gd .ColorAtNRGBA (x ,y ,int (_ebbc .Width ),_abca ,int (_ebbc .BitsPerComponent ),_ebbc .Data ,_ebbc ._becb ,_ebbc ._edgef );case 4:return _gd .ColorAtCMYK (x ,y ,int (_ebbc .Width ),_ebbc .Data ,_ebbc ._edgef );};_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 i\u006da\u0067\u0065\u002e\u0020\u0025\u0064\u0020\u0063\u006f\u006d\u0070\u006fn\u0065\u006e\u0074\u0073\u002c\u0020\u0025\u0064\u0020\u0062\u0069\u0074\u0073\u0020\u0070\u0065\u0072 \u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_ebbc .ColorComponents ,_ebbc .BitsPerComponent ); -return nil ,_g .New ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006d\u0061g\u0065 \u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065");}; +// Encoding is subject to limitations that are described in 9.6.6, "Character Encoding". +// BaseFont is derived differently. +FirstChar _dg .PdfObject ;LastChar _dg .PdfObject ;Widths _dg .PdfObject ;Encoding _dg .PdfObject ;_bfdee *_bbg .RuneCharSafeMap ;}; -// Write writes out the PDF. -func (_eeaee *PdfWriter )Write (writer _ega .Writer )error {_adg .Log .Trace ("\u0057r\u0069\u0074\u0065\u0028\u0029");_fagfe :=_eeaee .checkLicense ();if _fagfe !=nil {return _fagfe ;};if _fagfe =_eeaee .writeOutlines ();_fagfe !=nil {return _fagfe ;}; -if _fagfe =_eeaee .writeAcroFormFields ();_fagfe !=nil {return _fagfe ;};_eeaee .checkPendingObjects ();if _fagfe =_eeaee .writeOutputIntents ();_fagfe !=nil {return _fagfe ;};_eeaee .setCatalogVersion ();_eeaee .copyObjects ();if _fagfe =_eeaee .optimize (); -_fagfe !=nil {return _fagfe ;};if _fagfe =_eeaee .optimizeDocument ();_fagfe !=nil {return _fagfe ;};var _dbgca _c .Hash ;if _eeaee ._bdef {_dbgca =_ff .New ();writer =_ega .MultiWriter (_dbgca ,writer );};_eeaee .setWriter (writer );_efbe :=_eeaee .checkCrossReferenceStream (); -_bdafd ,_efbe :=_eeaee .mapObjectStreams (_efbe );_eeaee .adjustXRefAffectedVersion (_efbe );_eeaee .writeDocumentVersion ();_eeaee .updateObjectNumbers ();_eeaee .writeObjects ();if _fagfe =_eeaee .writeObjectsInStreams (_bdafd );_fagfe !=nil {return _fagfe ; -};_gdbbd :=_eeaee ._cagac ;var _bdebc int ;for _bdbfb :=range _eeaee ._abebd {if _bdbfb > _bdebc {_bdebc =_bdbfb ;};};if _eeaee ._bdef {if _fagfe =_eeaee .setHashIDs (_dbgca );_fagfe !=nil {return _fagfe ;};};if _efbe {if _fagfe =_eeaee .writeXRefStreams (_bdebc ,_gdbbd ); -_fagfe !=nil {return _fagfe ;};}else {_eeaee .writeTrailer (_bdebc );};_eeaee .makeOffSetReference (_gdbbd );if _fagfe =_eeaee .flushWriter ();_fagfe !=nil {return _fagfe ;};return nil ;}; +// Size returns the width and the height of the page. The method reports +// the page dimensions as displayed by a PDF viewer (i.e. page rotation is +// taken into account). +func (_bfbe *PdfPage )Size ()(float64 ,float64 ,error ){_ecbe ,_bfaea :=_bfbe .GetMediaBox ();if _bfaea !=nil {return 0,0,_bfaea ;};_gagba ,_deff :=_ecbe .Width (),_ecbe .Height ();_dbgdf ,_bfaea :=_bfbe .GetRotate ();if _bfaea !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_bfaea .Error ()); +};if _acaae :=_dbgdf ;_acaae %360!=0&&_acaae %90==0{if _dddd :=(360+_acaae %360)%360;_dddd ==90||_dddd ==270{_gagba ,_deff =_deff ,_gagba ;};};return _gagba ,_deff ,nil ;};var (CourierName =_bbg .CourierName ;CourierBoldName =_bbg .CourierBoldName ;CourierObliqueName =_bbg .CourierObliqueName ; +CourierBoldObliqueName =_bbg .CourierBoldObliqueName ;HelveticaName =_bbg .HelveticaName ;HelveticaBoldName =_bbg .HelveticaBoldName ;HelveticaObliqueName =_bbg .HelveticaObliqueName ;HelveticaBoldObliqueName =_bbg .HelveticaBoldObliqueName ;SymbolName =_bbg .SymbolName ; +ZapfDingbatsName =_bbg .ZapfDingbatsName ;TimesRomanName =_bbg .TimesRomanName ;TimesBoldName =_bbg .TimesBoldName ;TimesItalicName =_bbg .TimesItalicName ;TimesBoldItalicName =_bbg .TimesBoldItalicName ;); -// PdfFieldChoice represents a choice field which includes scrollable list boxes and combo boxes. -type PdfFieldChoice struct{*PdfField ;Opt *_aff .PdfObjectArray ;TI *_aff .PdfObjectInteger ;I *_aff .PdfObjectArray ;}; +// PdfColorCalGray represents a CalGray colorspace. +type PdfColorCalGray float64 ;func (_efdb *PdfReader )newPdfAnnotationFreeTextFromDict (_bgde *_dg .PdfObjectDictionary )(*PdfAnnotationFreeText ,error ){_decg :=PdfAnnotationFreeText {};_cbgc ,_dffd :=_efdb .newPdfAnnotationMarkupFromDict (_bgde );if _dffd !=nil {return nil ,_dffd ; +};_decg .PdfAnnotationMarkup =_cbgc ;_decg .DA =_bgde .Get ("\u0044\u0041");_decg .Q =_bgde .Get ("\u0051");_decg .RC =_bgde .Get ("\u0052\u0043");_decg .DS =_bgde .Get ("\u0044\u0053");_decg .CL =_bgde .Get ("\u0043\u004c");_decg .IT =_bgde .Get ("\u0049\u0054"); +_decg .BE =_bgde .Get ("\u0042\u0045");_decg .RD =_bgde .Get ("\u0052\u0044");_decg .BS =_bgde .Get ("\u0042\u0053");_decg .LE =_bgde .Get ("\u004c\u0045");return &_decg ,nil ;};func (_ffegb *PdfWriter )writeObjects (){_ag .Log .Trace ("\u0057\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0025d\u0020\u006f\u0062\u006a",len (_ffegb ._agaba )); +_ffegb ._fffge =make (map[int ]crossReference );_ffegb ._fffge [0]=crossReference {Type :0,ObjectNumber :0,Generation :0xFFFF};if _ffegb ._cfcdcb .ObjectMap !=nil {for _fccg ,_eafdd :=range _ffegb ._cfcdcb .ObjectMap {if _fccg ==0{continue ;};if _eafdd .XType ==_dg .XrefTypeObjectStream {_fagea :=crossReference {Type :2,ObjectNumber :_eafdd .OsObjNumber ,Index :_eafdd .OsObjIndex }; +_ffegb ._fffge [_fccg ]=_fagea ;};if _eafdd .XType ==_dg .XrefTypeTableEntry {_dgbce :=crossReference {Type :1,ObjectNumber :_eafdd .ObjectNumber ,Offset :_eafdd .Offset };_ffegb ._fffge [_fccg ]=_dgbce ;};};};}; -// GetObjectNums returns the object numbers of the PDF objects in the file -// Numbered objects are either indirect objects or stream objects. -// e.g. objNums := pdfReader.GetObjectNums() -// The underlying objects can then be accessed with -// pdfReader.GetIndirectObjectByNumber(objNums[0]) for the first available object. -func (_gfgce *PdfReader )GetObjectNums ()[]int {return _gfgce ._gaece .GetObjectNums ()};func (_bbdd *PdfReader )newPdfAnnotationSoundFromDict (_ggae *_aff .PdfObjectDictionary )(*PdfAnnotationSound ,error ){_badcb :=PdfAnnotationSound {};_ecde ,_adbg :=_bbdd .newPdfAnnotationMarkupFromDict (_ggae ); -if _adbg !=nil {return nil ,_adbg ;};_badcb .PdfAnnotationMarkup =_ecde ;_badcb .Name =_ggae .Get ("\u004e\u0061\u006d\u0065");_badcb .Sound =_ggae .Get ("\u0053\u006f\u0075n\u0064");return &_badcb ,nil ;}; +// PdfFunctionType2 defines an exponential interpolation of one input value and n +// output values: +// f(x) = y_0, ..., y_(n-1) +// y_j = C0_j + x^N * (C1_j - C0_j); for 0 <= j < n +// When N=1 ; linear interpolation between C0 and C1. +type PdfFunctionType2 struct{Domain []float64 ;Range []float64 ;C0 []float64 ;C1 []float64 ;N float64 ;_acfde *_dg .PdfIndirectObject ;};func _abeda (_gaddg *_dg .PdfIndirectObject )(*PdfOutline ,error ){_dcccac ,_gacbg :=_gaddg .PdfObject .(*_dg .PdfObjectDictionary ); +if !_gacbg {return nil ,_b .Errorf ("\u006f\u0075\u0074l\u0069\u006e\u0065\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079");};_dfbcg :=NewPdfOutline ();if _ccgac :=_dcccac .Get ("\u0054\u0079\u0070\u0065"); +_ccgac !=nil {_ecbga ,_cgfgg :=_ccgac .(*_dg .PdfObjectName );if _cgfgg {if *_ecbga !="\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073"{_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0054y\u0070\u0065\u0020\u0021\u003d\u0020\u004f\u0075\u0074l\u0069\u006e\u0065s\u0020(\u0025\u0073\u0029",*_ecbga ); +};};};if _gbdge :=_dcccac .Get ("\u0043\u006f\u0075n\u0074");_gbdge !=nil {_cdfdbf ,_fbcgb :=_dg .GetNumberAsInt64 (_gbdge );if _fbcgb !=nil {return nil ,_fbcgb ;};_dfbcg .Count =&_cdfdbf ;};return _dfbcg ,nil ;};func (_dcab *PdfColorspaceDeviceGray )String ()string {return "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079"; +}; -// Sign signs a specific page with a digital signature. -// The signature field parameter must have a valid signature dictionary -// specified by its V field. -func (_dafd *PdfAppender )Sign (pageNum int ,field *PdfFieldSignature )error {if field ==nil {return _g .New ("\u0073\u0069g\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065 n\u0069\u006c"); -};_dgae :=field .V ;if _dgae ==nil {return _g .New ("\u0073\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0064\u0069\u0063\u0074i\u006fn\u0061r\u0079 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c");};_geaa :=pageNum -1;if _geaa < 0||_geaa > len (_dafd ._bbgg )-1{return _e .Errorf ("\u0070\u0061\u0067\u0065\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064",pageNum ); -};_cbff :=_dafd .Reader .PageList [_geaa ];field .P =_cbff .ToPdfObject ();if field .T ==nil ||field .T .String ()==""{field .T =_aff .MakeString (_e .Sprintf ("\u0053\u0069\u0067n\u0061\u0074\u0075\u0072\u0065\u0020\u0025\u0064",pageNum ));};_cbff .AddAnnotation (field .PdfAnnotationWidget .PdfAnnotation ); -if _dafd ._bgac ==_dafd ._dafgd .AcroForm {_dafd ._bgac =_dafd .Reader .AcroForm ;};_gdee :=_dafd ._bgac ;if _gdee ==nil {_gdee =NewPdfAcroForm ();};_gdee .SigFlags =_aff .MakeInteger (3);if _gdee .NeedAppearances !=nil {_gdee .NeedAppearances =nil ;}; -_bafc :=append (_gdee .AllFields (),field .PdfField );_gdee .Fields =&_bafc ;_dafd .ReplaceAcroForm (_gdee );_dafd .UpdatePage (_cbff );_dafd ._bbgg [_geaa ]=_cbff ;if _ ,_daff :=field .V .GetDocMDPPermission ();_daff {_dafd ._dgcg =NewPermissions (field .V ); -};return nil ;}; +// NewPdfAnnotationUnderline returns a new text underline annotation. +func NewPdfAnnotationUnderline ()*PdfAnnotationUnderline {_gcgb :=NewPdfAnnotation ();_bgd :=&PdfAnnotationUnderline {};_bgd .PdfAnnotation =_gcgb ;_bgd .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_gcgb .SetContext (_bgd );return _bgd ;}; -// C returns the value of the cyan component of the color. -func (_fgcd *PdfColorDeviceCMYK )C ()float64 {return _fgcd [0]}; +// GetPdfVersion gets the version of the PDF used within this document. +func (_fcgbc *PdfWriter )GetPdfVersion ()string {return _fcgbc .getPdfVersion ()};func _cbbgd (_cfbe *fontCommon )*pdfFontType0 {return &pdfFontType0 {fontCommon :*_cfbe }}; + +// NewPdfReaderFromFile creates a new PdfReader from the speficied PDF file. +// If ReaderOpts is nil it will be set to default value from NewReaderOpts. +func NewPdfReaderFromFile (pdfFile string ,opts *ReaderOpts )(*PdfReader ,*_eb .File ,error ){const _dgccd ="\u006d\u006f\u0064\u0065\u006c\u003a\u004e\u0065\u0077\u0050\u0064f\u0052\u0065\u0061\u0064\u0065\u0072\u0046\u0072\u006f\u006dF\u0069\u006c\u0065"; +_bagbb ,_fcaga :=_eb .Open (pdfFile );if _fcaga !=nil {return nil ,nil ,_fcaga ;};_faedb ,_fcaga :=_dcdd (_bagbb ,opts ,true ,_dgccd );if _fcaga !=nil {_bagbb .Close ();return nil ,nil ,_fcaga ;};return _faedb ,_bagbb ,nil ;}; + +// GetStandardApplier gets currently used StandardApplier.. +func (_abbcg *PdfWriter )GetStandardApplier ()StandardApplier {return _abbcg ._afafd };func _gacbe (_affd _dg .PdfObject )(map[_bd .CharCode ]float64 ,error ){if _affd ==nil {return nil ,nil ;};_gadfb ,_ebab :=_dg .GetArray (_affd );if !_ebab {return nil ,nil ; +};_aabc :=map[_bd .CharCode ]float64 {};_affg :=_gadfb .Len ();for _dggb :=0;_dggb < _affg -1;_dggb ++{_dggad :=_dg .TraceToDirectObject (_gadfb .Get (_dggb ));_gccfe ,_decf :=_dg .GetIntVal (_dggad );if !_decf {return nil ,_b .Errorf ("\u0042a\u0064\u0020\u0066\u006fn\u0074\u0020\u0057\u0020\u006fb\u006a0\u003a \u0069\u003d\u0025\u0064\u0020\u0025\u0023v",_dggb ,_dggad ); +};_dggb ++;if _dggb > _affg -1{return nil ,_b .Errorf ("\u0042\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020a\u0072\u0072\u0061\u0079\u003a\u0020\u0061\u0072\u0072\u0032=\u0025\u002b\u0076",_gadfb );};_dffad :=_dg .TraceToDirectObject (_gadfb .Get (_dggb )); +switch _dffad .(type ){case *_dg .PdfObjectArray :_acbda ,_ :=_dg .GetArray (_dffad );if _efca ,_fgge :=_acbda .ToFloat64Array ();_fgge ==nil {for _agccg :=0;_agccg < len (_efca );_agccg ++{_aabc [_bd .CharCode (_gccfe +_agccg )]=_efca [_agccg ];};}else {return nil ,_b .Errorf ("\u0042\u0061\u0064 \u0066\u006f\u006e\u0074 \u0057\u0020\u0061\u0072\u0072\u0061\u0079 \u006f\u0062\u006a\u0031\u003a\u0020\u0069\u003d\u0025\u0064\u0020\u0025\u0023\u0076",_dggb ,_dffad ); +};case *_dg .PdfObjectInteger :_fgbg ,_fagb :=_dg .GetIntVal (_dffad );if !_fagb {return nil ,_b .Errorf ("\u0042\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020\u0069\u006e\u0074\u0020\u006f\u0062\u006a\u0031\u003a\u0020\u0069\u003d\u0025\u0064 %\u0023\u0076",_dggb ,_dffad ); +};_dggb ++;if _dggb > _affg -1{return nil ,_b .Errorf ("\u0042\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020a\u0072\u0072\u0061\u0079\u003a\u0020\u0061\u0072\u0072\u0032=\u0025\u002b\u0076",_gadfb );};_gagce :=_gadfb .Get (_dggb );_bcdge ,_bccfd :=_dg .GetNumberAsFloat (_gagce ); +if _bccfd !=nil {return nil ,_b .Errorf ("\u0042\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020\u0069\u006e\u0074\u0020\u006f\u0062\u006a\u0032\u003a\u0020\u0069\u003d\u0025\u0064 %\u0023\u0076",_dggb ,_gagce );};for _cdee :=_gccfe ;_cdee <=_fgbg ; +_cdee ++{_aabc [_bd .CharCode (_cdee )]=_bcdge ;};default:return nil ,_b .Errorf ("\u0042\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0057 \u006f\u0062\u006a\u0031\u0020\u0074\u0079p\u0065\u003a\u0020\u0069\u003d\u0025\u0064\u0020\u0025\u0023\u0076",_dggb ,_dffad ); +};};return _aabc ,nil ;}; // ToInteger convert to an integer format. -func (_babb *PdfColorDeviceGray )ToInteger (bits int )uint32 {_fgedg :=_cf .Pow (2,float64 (bits ))-1;return uint32 (_fgedg *_babb .Val ());};func (_bcgfed *PdfAcroForm )fillImageWithAppearance (_gadfe FieldImageProvider ,_gacbe FieldAppearanceGenerator )error {if _bcgfed ==nil {return nil ; -};_eaacc ,_dbedb :=_gadfe .FieldImageValues ();if _dbedb !=nil {return _dbedb ;};for _ ,_agaee :=range _bcgfed .AllFields (){_gfaf :=_agaee .PartialName ();_ddebf ,_gcca :=_eaacc [_gfaf ];if !_gcca {if _aeda ,_bfgb :=_agaee .FullName ();_bfgb ==nil {_ddebf ,_gcca =_eaacc [_aeda ]; -};};if !_gcca {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020f\u006f\u0072\u006d \u0066\u0069\u0065l\u0064\u0020\u0025\u0073\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u0069n \u0074\u0068\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0072\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_gfaf ); -continue ;};switch _gbdg :=_agaee .GetContext ().(type ){case *PdfFieldButton :if _gbdg .IsPush (){_gbdg .SetFillImage (_ddebf );};};if _gacbe ==nil {continue ;};for _ ,_aaabe :=range _agaee .Annotations {_cbgeb ,_ededd :=_gacbe .GenerateAppearanceDict (_bcgfed ,_agaee ,_aaabe ); -if _ededd !=nil {return _ededd ;};_aaabe .AP =_cbgeb ;_aaabe .ToPdfObject ();};};return nil ;}; +func (_fagf *PdfColorCalGray )ToInteger (bits int )uint32 {_geag :=_cg .Pow (2,float64 (bits ))-1;return uint32 (_geag *_fagf .Val ());};func (_eefgd *PdfSignature )extractChainFromPKCS7 ()([]*_bb .Certificate ,error ){_dgccc ,_cfceg :=_eg .Parse (_eefgd .Contents .Bytes ()); +if _cfceg !=nil {return nil ,_cfceg ;};return _dgccc .Certificates ,nil ;}; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain a single element between 0 and 1. -func (_bacc *PdfColorspaceCalGray )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_afabf :=vals [0];if _afabf < 0.0||_afabf > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_afabf ); -return nil ,ErrColorOutOfRange ;};_gagd :=NewPdfColorCalGray (_afabf );return _gagd ,nil ;};func (_fecf *pdfFontType0 )subsetRegistered ()error {_gabge ,_fcacg :=_fecf .DescendantFont ._gebd .(*pdfCIDFontType2 );if !_fcacg {_adg .Log .Debug ("\u0046\u006fnt\u0020\u006e\u006ft\u0020\u0073\u0075\u0070por\u0074ed\u0020\u0066\u006f\u0072\u0020\u0073\u0075bs\u0065\u0074\u0074\u0069\u006e\u0067\u0020%\u0054",_fecf .DescendantFont ); -return nil ;};if _gabge ==nil {return nil ;};if _gabge ._ggca ==nil {_adg .Log .Debug ("\u004d\u0069\u0073si\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072");return nil ;};if _fecf ._faggb ==nil {_adg .Log .Debug ("\u004e\u006f\u0020e\u006e\u0063\u006f\u0064e\u0072\u0020\u002d\u0020\u0073\u0075\u0062s\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u0067\u006e\u006f\u0072\u0065\u0064"); -return nil ;};_dgbdb ,_fcacg :=_aff .GetStream (_gabge ._ggca .FontFile2 );if !_fcacg {_adg .Log .Debug ("\u0045\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u002d\u002d\u0020\u0041\u0042\u004f\u0052T\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069\u006e\u0067"); -return _g .New ("\u0066\u006f\u006e\u0074fi\u006c\u0065\u0032\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_eacde ,_cefgc :=_aff .DecodeStream (_dgbdb );if _cefgc !=nil {_adg .Log .Debug ("\u0044\u0065c\u006f\u0064\u0065 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_cefgc ); -return _cefgc ;};_gdeg ,_cefgc :=_fga .Parse (_af .NewReader (_eacde ));if _cefgc !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0020f\u006f\u006e\u0074",len (_dgbdb .Stream )); -return _cefgc ;};var _fbafc []rune ;var _cddd *_fga .Font ;switch _gcdcb :=_fecf ._faggb .(type ){case *_eee .TrueTypeFontEncoder :_fbafc =_gcdcb .RegisteredRunes ();_cddd ,_cefgc =_gdeg .SubsetKeepRunes (_fbafc );if _cefgc !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cefgc ); -return _cefgc ;};_gcdcb .SubsetRegistered ();case *_eee .IdentityEncoder :_fbafc =_gcdcb .RegisteredRunes ();_degf :=make ([]_fga .GlyphIndex ,len (_fbafc ));for _bbbfg ,_ecddc :=range _fbafc {_degf [_bbbfg ]=_fga .GlyphIndex (_ecddc );};_cddd ,_cefgc =_gdeg .SubsetKeepIndices (_degf ); -if _cefgc !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cefgc );return _cefgc ;};case _eee .SimpleEncoder :_fbbgf :=_gcdcb .Charcodes ();for _ ,_dgcbe :=range _fbbgf {_fgga ,_ffac :=_gcdcb .CharcodeToRune (_dgcbe );if !_ffac {_adg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0075\u006e\u0061\u0062\u006c\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0020\u0074\u006f \u0072\u0075\u006e\u0065\u003a\u0020\u0025\u0064",_dgcbe ); -continue ;};_fbafc =append (_fbafc ,_fgga );};default:return _e .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u006f\u0072\u0020s\u0075\u0062\u0073\u0065\u0074t\u0069\u006eg\u003a\u0020\u0025\u0054",_fecf ._faggb ); -};var _fcfa _af .Buffer ;_cefgc =_cddd .Write (&_fcfa );if _cefgc !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cefgc );return _cefgc ;};if _fecf ._dcad !=nil {_afca :=make (map[_da .CharCode ]rune ,len (_fbafc ));for _ ,_eeaeb :=range _fbafc {_acdc ,_edfd :=_fecf ._faggb .RuneToCharcode (_eeaeb ); -if !_edfd {continue ;};_afca [_da .CharCode (_acdc )]=_eeaeb ;};_fecf ._dcad =_da .NewToUnicodeCMap (_afca );};_dgbdb ,_cefgc =_aff .MakeStream (_fcfa .Bytes (),_aff .NewFlateEncoder ());if _cefgc !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cefgc ); -return _cefgc ;};_dgbdb .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_aff .MakeInteger (int64 (_fcfa .Len ())));if _febf ,_cebb :=_aff .GetStream (_gabge ._ggca .FontFile2 );_cebb {*_febf =*_dgbdb ;}else {_gabge ._ggca .FontFile2 =_dgbdb ;};_bgec :=_aabee (); -if len (_fecf ._abed )> 0{_fecf ._abed =_fada (_fecf ._abed ,_bgec );};if len (_gabge ._abed )> 0{_gabge ._abed =_fada (_gabge ._abed ,_bgec );};if len (_fecf ._edebf )> 0{_fecf ._edebf =_fada (_fecf ._edebf ,_bgec );};if _gabge ._ggca !=nil {_gbac ,_ffbed :=_aff .GetName (_gabge ._ggca .FontName ); -if _ffbed &&len (_gbac .String ())> 0{_ddeg :=_fada (_gbac .String (),_bgec );_gabge ._ggca .FontName =_aff .MakeName (_ddeg );};};return nil ;}; +// ToPdfObject converts the font to a PDF representation. +func (_gddaa *pdfFontType3 )ToPdfObject ()_dg .PdfObject {if _gddaa ._aedbb ==nil {_gddaa ._aedbb =&_dg .PdfIndirectObject {};};_gcffe :=_gddaa .baseFields ().asPdfObjectDictionary ("\u0054\u0079\u0070e\u0033");_gddaa ._aedbb .PdfObject =_gcffe ;if _gddaa .FirstChar !=nil {_gcffe .Set ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r",_gddaa .FirstChar ); +};if _gddaa .LastChar !=nil {_gcffe .Set ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072",_gddaa .LastChar );};if _gddaa .Widths !=nil {_gcffe .Set ("\u0057\u0069\u0064\u0074\u0068\u0073",_gddaa .Widths );};if _gddaa .Encoding !=nil {_gcffe .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_gddaa .Encoding ); +}else if _gddaa ._geffb !=nil {_beebff :=_gddaa ._geffb .ToPdfObject ();if _beebff !=nil {_gcffe .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_beebff );};};if _gddaa .FontBBox !=nil {_gcffe .Set ("\u0046\u006f\u006e\u0074\u0042\u0042\u006f\u0078",_gddaa .FontBBox ); +};if _gddaa .FontMatrix !=nil {_gcffe .Set ("\u0046\u006f\u006e\u0074\u004d\u0061\u0074\u0069\u0072\u0078",_gddaa .FontMatrix );};if _gddaa .CharProcs !=nil {_gcffe .Set ("\u0043h\u0061\u0072\u0050\u0072\u006f\u0063s",_gddaa .CharProcs );};if _gddaa .Resources !=nil {_gcffe .Set ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_gddaa .Resources ); +};return _gddaa ._aedbb ;};func (_efgdd *PdfFilespec )getDict ()*_dg .PdfObjectDictionary {if _gcega ,_abgd :=_efgdd ._bcbe .(*_dg .PdfIndirectObject );_abgd {_ccbc ,_fbabe :=_gcega .PdfObject .(*_dg .PdfObjectDictionary );if !_fbabe {return nil ;};return _ccbc ; +}else if _ddccd ,_ccdb :=_efgdd ._bcbe .(*_dg .PdfObjectDictionary );_ccdb {return _ddccd ;}else {_ag .Log .Debug ("\u0054\u0072\u0079\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020F\u0069\u006c\u0065\u0073\u0070\u0065\u0063\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064 \u006f\u0062\u006a\u0065\u0063\u0074 \u0074\u0079p\u0065\u0020(\u0025T\u0029",_efgdd ._bcbe ); +return nil ;};}; -// LTV represents an LTV (Long-Term Validation) client. It is used to LTV -// enable signatures by adding validation and revocation data (certificate, -// OCSP and CRL information) to the DSS dictionary of a PDF document. -// -// LTV is added through the DSS by: -// - Adding certificates, OCSP and CRL information in the global scope of the -// DSS. The global data is used for validating any of the signatures present -// in the document. -// - Adding certificates, OCSP and CRL information for a single signature, -// through an entry in the VRI dictionary of the DSS. The added data is used -// for validating that particular signature only. This is the recommended -// method for adding validation data for a signature. However, this is not -// is not possible in the same revision the signature is applied. Validation -// data for a signature is added based on the Contents entry of the signature, -// which is known only after the revision is written. Even if the Contents -// are known (e.g. when signing externally), updating the DSS at that point -// would invalidate the calculated signature. As a result, if adding LTV -// in the same revision is a requirement, use the first method. -// See LTV.EnableChain. -// The client applies both methods, when possible. -// -// If `LTV.SkipExisting` is set to true (the default), validations are -// not added for signatures which are already present in the VRI entry of the -// document's DSS dictionary. -type LTV struct{ +// NewPdfColorspaceCalRGB returns a new CalRGB colorspace object. +func NewPdfColorspaceCalRGB ()*PdfColorspaceCalRGB {_daga :=&PdfColorspaceCalRGB {};_daga .BlackPoint =[]float64 {0.0,0.0,0.0};_daga .Gamma =[]float64 {1.0,1.0,1.0};_daga .Matrix =[]float64 {1,0,0,0,1,0,0,0,1};return _daga ;}; -// CertClient is the client used to retrieve certificates. -CertClient *_bfd .CertClient ; +// PdfColorspaceLab is a L*, a*, b* 3 component colorspace. +type PdfColorspaceLab struct{WhitePoint []float64 ;BlackPoint []float64 ;Range []float64 ;_aadb *_dg .PdfIndirectObject ;};func (_bgbb Image )getBase ()_fc .ImageBase {return _fc .NewImageBase (int (_bgbb .Width ),int (_bgbb .Height ),int (_bgbb .BitsPerComponent ),_bgbb .ColorComponents ,_bgbb .Data ,_bgbb ._dgeb ,_bgbb ._gfbb ); +}; -// OCSPClient is the client used to retrieve OCSP validation information. -OCSPClient *_bfd .OCSPClient ; +// Compress is yet to be implemented. +// Should be able to compress in terms of JPEG quality parameter, +// and DPI threshold (need to know bounding area dimensions). +func (_ecafd DefaultImageHandler )Compress (input *Image ,quality int64 )(*Image ,error ){return input ,nil ;}; -// CRLClient is the client used to retrieve CRL validation information. -CRLClient *_bfd .CRLClient ; +// ToPdfObject convert PdfInfo to pdf object. +func (_geeb *PdfInfo )ToPdfObject ()_dg .PdfObject {_fgdc :=_dg .MakeDict ();_fgdc .SetIfNotNil ("\u0054\u0069\u0074l\u0065",_geeb .Title );_fgdc .SetIfNotNil ("\u0041\u0075\u0074\u0068\u006f\u0072",_geeb .Author );_fgdc .SetIfNotNil ("\u0053u\u0062\u006a\u0065\u0063\u0074",_geeb .Subject ); +_fgdc .SetIfNotNil ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",_geeb .Keywords );_fgdc .SetIfNotNil ("\u0043r\u0065\u0061\u0074\u006f\u0072",_geeb .Creator );_fgdc .SetIfNotNil ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",_geeb .Producer ); +_fgdc .SetIfNotNil ("\u0054r\u0061\u0070\u0070\u0065\u0064",_geeb .Trapped );if _geeb .CreationDate !=nil {_fgdc .SetIfNotNil ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_geeb .CreationDate .ToPdfObject ());};if _geeb .ModifiedDate !=nil {_fgdc .SetIfNotNil ("\u004do\u0064\u0044\u0061\u0074\u0065",_geeb .ModifiedDate .ToPdfObject ()); +};for _ ,_begf :=range _geeb ._dccdg .Keys (){_fgdc .SetIfNotNil (_begf ,_geeb ._dccdg .Get (_begf ));};return _fgdc ;}; -// SkipExisting specifies whether existing signature validations -// should be skipped. -SkipExisting bool ;_bbbab *PdfAppender ;_gceb *DSS ;}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// components. The slice should contain three PdfObjectFloat elements representing +// the L, A and B components of the color. +func (_bfdf *PdfColorspaceLab )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=3{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gfge ,_faab :=_dg .GetNumbersAsFloat (objects ); +if _faab !=nil {return nil ,_faab ;};return _bfdf .ColorFromFloats (_gfge );}; -// NewPdfAppender creates a new Pdf appender from a Pdf reader. -func NewPdfAppender (reader *PdfReader )(*PdfAppender ,error ){_agd :=&PdfAppender {_dbb :reader ._dged ,Reader :reader ,_dga :reader ._gaece ,_fdab :reader ._ddcba };_fbbg ,_gfeb :=_agd ._dbb .Seek (0,_ega .SeekEnd );if _gfeb !=nil {return nil ,_gfeb ; -};_agd ._beec =_fbbg ;if _ ,_gfeb =_agd ._dbb .Seek (0,_ega .SeekStart );_gfeb !=nil {return nil ,_gfeb ;};_agd ._dafgd ,_gfeb =NewPdfReader (_agd ._dbb );if _gfeb !=nil {return nil ,_gfeb ;};for _ ,_fddd :=range _agd .Reader .GetObjectNums (){if _agd ._bfafd < _fddd {_agd ._bfafd =_fddd ; -};};_agd ._gaec =_agd ._dga .GetXrefTable ();_agd ._cadg =_agd ._dga .GetXrefOffset ();_agd ._bbgg =append (_agd ._bbgg ,_agd ._dafgd .PageList ...);_agd ._deeb =make (map[_aff .PdfObject ]struct{});_agd ._fffa =make (map[_aff .PdfObject ]int64 );_agd ._abcb =make (map[_aff .PdfObject ]struct{}); -_agd ._bgac =_agd ._dafgd .AcroForm ;_agd ._fdbb =_agd ._dafgd .DSS ;return _agd ,nil ;}; +// PdfAnnotationFileAttachment represents FileAttachment annotations. +// (Section 12.5.6.15). +type PdfAnnotationFileAttachment struct{*PdfAnnotation ;*PdfAnnotationMarkup ;FS _dg .PdfObject ;Name _dg .PdfObject ;}; -// GetNumComponents returns the number of color components of the colorspace device. -// Returns 3 for a CalRGB device. -func (_bfdc *PdfColorspaceCalRGB )GetNumComponents ()int {return 3}; +// NewPdfReader returns a new PdfReader for an input io.ReadSeeker interface. Can be used to read PDF from +// memory or file. Immediately loads and traverses the PDF structure including pages and page contents (if +// not encrypted). Loads entire document structure into memory. +// Alternatively a lazy-loading reader can be created with NewPdfReaderLazy which loads only references, +// and references are loaded from disk into memory on an as-needed basis. +func NewPdfReader (rs _cf .ReadSeeker )(*PdfReader ,error ){const _gcfeea ="\u006do\u0064e\u006c\u003a\u004e\u0065\u0077P\u0064\u0066R\u0065\u0061\u0064\u0065\u0072";return _dcdd (rs ,&ReaderOpts {},false ,_gcfeea );}; -// NewPdfColorDeviceRGB returns a new PdfColorDeviceRGB based on the r,g,b component values. -func NewPdfColorDeviceRGB (r ,g ,b float64 )*PdfColorDeviceRGB {_dfec :=PdfColorDeviceRGB {r ,g ,b };return &_dfec ;}; +// ToPdfObject implements interface PdfModel. +func (_geg *PdfActionJavaScript )ToPdfObject ()_dg .PdfObject {_geg .PdfAction .ToPdfObject ();_bacb :=_geg ._cbd ;_eed :=_bacb .PdfObject .(*_dg .PdfObjectDictionary );_eed .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeJavaScript )));_eed .SetIfNotNil ("\u004a\u0053",_geg .JS ); +return _bacb ;};func (_fggc *PdfAnnotationMarkup )appendToPdfDictionary (_ebgge *_dg .PdfObjectDictionary ){_ebgge .SetIfNotNil ("\u0054",_fggc .T );if _fggc .Popup !=nil {_ebgge .Set ("\u0050\u006f\u0070u\u0070",_fggc .Popup .ToPdfObject ());};_ebgge .SetIfNotNil ("\u0043\u0041",_fggc .CA ); +_ebgge .SetIfNotNil ("\u0052\u0043",_fggc .RC );_ebgge .SetIfNotNil ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_fggc .CreationDate );_ebgge .SetIfNotNil ("\u0049\u0052\u0054",_fggc .IRT );_ebgge .SetIfNotNil ("\u0053\u0075\u0062\u006a",_fggc .Subj ); +_ebgge .SetIfNotNil ("\u0052\u0054",_fggc .RT );_ebgge .SetIfNotNil ("\u0049\u0054",_fggc .IT );_ebgge .SetIfNotNil ("\u0045\u0078\u0044\u0061\u0074\u0061",_fggc .ExData );}; -// PdfColorDeviceGray represents a grayscale color value that shall be represented by a single number in the -// range 0.0 to 1.0 where 0.0 corresponds to black and 1.0 to white. -type PdfColorDeviceGray float64 ; +// ToPdfObject returns the choice field dictionary within an indirect object (container). +func (_dcegd *PdfFieldChoice )ToPdfObject ()_dg .PdfObject {_dcegd .PdfField .ToPdfObject ();_cdef :=_dcegd ._egce ;_bcfcc :=_cdef .PdfObject .(*_dg .PdfObjectDictionary );_bcfcc .Set ("\u0046\u0054",_dg .MakeName ("\u0043\u0068"));if _dcegd .Opt !=nil {_bcfcc .Set ("\u004f\u0070\u0074",_dcegd .Opt ); +};if _dcegd .TI !=nil {_bcfcc .Set ("\u0054\u0049",_dcegd .TI );};if _dcegd .I !=nil {_bcfcc .Set ("\u0049",_dcegd .I );};return _cdef ;};func (_fcde *PdfReader )newPdfAnnotationStrikeOut (_gdeb *_dg .PdfObjectDictionary )(*PdfAnnotationStrikeOut ,error ){_ddd :=PdfAnnotationStrikeOut {}; +_fcae ,_cgdg :=_fcde .newPdfAnnotationMarkupFromDict (_gdeb );if _cgdg !=nil {return nil ,_cgdg ;};_ddd .PdfAnnotationMarkup =_fcae ;_ddd .QuadPoints =_gdeb .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_ddd ,nil ;}; -// GetContentStream returns the XObject Form's content stream. -func (_fabfg *XObjectForm )GetContentStream ()([]byte ,error ){_ffcfg ,_gdcgb :=_aff .DecodeStream (_fabfg ._fddef );if _gdcgb !=nil {return nil ,_gdcgb ;};return _ffcfg ,nil ;}; +// PdfShadingType5 is a Lattice-form Gouraud-shaded triangle mesh. +type PdfShadingType5 struct{*PdfShading ;BitsPerCoordinate *_dg .PdfObjectInteger ;BitsPerComponent *_dg .PdfObjectInteger ;VerticesPerRow *_dg .PdfObjectInteger ;Decode *_dg .PdfObjectArray ;Function []PdfFunction ;};func _edaac (_gegdb *_dg .PdfObjectDictionary )(*PdfShadingType5 ,error ){_cdcbg :=PdfShadingType5 {}; +_gddba :=_gegdb .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065");if _gddba ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_feffe ,_eddd :=_gddba .(*_dg .PdfObjectInteger );if !_eddd {_ag .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_gddba ); +return nil ,_dg .ErrTypeError ;};_cdcbg .BitsPerCoordinate =_feffe ;_gddba =_gegdb .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _gddba ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); +return nil ,ErrRequiredAttributeMissing ;};_feffe ,_eddd =_gddba .(*_dg .PdfObjectInteger );if !_eddd {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_gddba ); +return nil ,_dg .ErrTypeError ;};_cdcbg .BitsPerComponent =_feffe ;_gddba =_gegdb .Get ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073\u0050e\u0072\u0052\u006f\u0077");if _gddba ==nil {_ag .Log .Debug ("\u0052\u0065\u0071u\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0056\u0065\u0072\u0074\u0069c\u0065\u0073\u0050\u0065\u0072\u0052\u006f\u0077"); +return nil ,ErrRequiredAttributeMissing ;};_feffe ,_eddd =_gddba .(*_dg .PdfObjectInteger );if !_eddd {_ag .Log .Debug ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073\u0050\u0065\u0072\u0052\u006f\u0077\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006et\u0065\u0067\u0065\u0072\u0020(\u0067\u006ft\u0020\u0025\u0054\u0029",_gddba ); +return nil ,_dg .ErrTypeError ;};_cdcbg .VerticesPerRow =_feffe ;_gddba =_gegdb .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _gddba ==nil {_ag .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_fbce ,_eddd :=_gddba .(*_dg .PdfObjectArray );if !_eddd {_ag .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_gddba ); +return nil ,_dg .ErrTypeError ;};_cdcbg .Decode =_fbce ;if _bdge :=_gegdb .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_bdge !=nil {_cdcbg .Function =[]PdfFunction {};if _gdbbf ,_beede :=_bdge .(*_dg .PdfObjectArray );_beede {for _ ,_ebfab :=range _gdbbf .Elements (){_ecabe ,_acgeg :=_agec (_ebfab ); +if _acgeg !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_acgeg );return nil ,_acgeg ;};_cdcbg .Function =append (_cdcbg .Function ,_ecabe ); +};}else {_eaaee ,_deaec :=_agec (_bdge );if _deaec !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_deaec );return nil ,_deaec ; +};_cdcbg .Function =append (_cdcbg .Function ,_eaaee );};};return &_cdcbg ,nil ;};func _dbdg (_acef string )map[string ]string {_agded :=_decga .Split (_acef ,-1);_abgc :=map[string ]string {};for _ ,_fbfca :=range _agded {_feagd :=_caegd .FindStringSubmatch (_fbfca ); +if _feagd ==nil {continue ;};_gbga ,_efda :=_feagd [1],_feagd [2];_abgc [_gbga ]=_efda ;};return _abgc ;};func (_eggdb *PdfWriter )writeBytes (_aadef []byte ){if _eggdb ._ffefc !=nil {return ;};_dfgafg ,_gggdb :=_eggdb ._bddfa .Write (_aadef );_eggdb ._fbbfc +=int64 (_dfgafg ); +_eggdb ._ffefc =_gggdb ;}; -// ToPdfObject converts the font to a PDF representation. -func (_efbf *pdfFontType3 )ToPdfObject ()_aff .PdfObject {if _efbf ._bggc ==nil {_efbf ._bggc =&_aff .PdfIndirectObject {};};_ggdge :=_efbf .baseFields ().asPdfObjectDictionary ("\u0054\u0079\u0070e\u0033");_efbf ._bggc .PdfObject =_ggdge ;if _efbf .FirstChar !=nil {_ggdge .Set ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r",_efbf .FirstChar ); -};if _efbf .LastChar !=nil {_ggdge .Set ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072",_efbf .LastChar );};if _efbf .Widths !=nil {_ggdge .Set ("\u0057\u0069\u0064\u0074\u0068\u0073",_efbf .Widths );};if _efbf .Encoding !=nil {_ggdge .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_efbf .Encoding ); -}else if _efbf ._bfcg !=nil {_bbfcg :=_efbf ._bfcg .ToPdfObject ();if _bbfcg !=nil {_ggdge .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_bbfcg );};};if _efbf .FontBBox !=nil {_ggdge .Set ("\u0046\u006f\u006e\u0074\u0042\u0042\u006f\u0078",_efbf .FontBBox ); -};if _efbf .FontMatrix !=nil {_ggdge .Set ("\u0046\u006f\u006e\u0074\u004d\u0061\u0074\u0069\u0072\u0078",_efbf .FontMatrix );};if _efbf .CharProcs !=nil {_ggdge .Set ("\u0043h\u0061\u0072\u0050\u0072\u006f\u0063s",_efbf .CharProcs );};if _efbf .Resources !=nil {_ggdge .Set ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_efbf .Resources ); -};return _efbf ._bggc ;}; +// NewPdfActionGoToR returns a new "go to remote" action. +func NewPdfActionGoToR ()*PdfActionGoToR {_ee :=NewPdfAction ();_ea :=&PdfActionGoToR {};_ea .PdfAction =_ee ;_ee .SetContext (_ea );return _ea ;};const (ButtonTypeCheckbox ButtonType =iota ;ButtonTypePush ButtonType =iota ;ButtonTypeRadio ButtonType =iota ; +);func _gcga (_egadf string )(map[_bd .CharCode ]_bd .GlyphName ,error ){_daag :=_ga .Split (_egadf ,"\u000a");_cdgfg :=make (map[_bd .CharCode ]_bd .GlyphName );for _ ,_bfaba :=range _daag {_ffbcg :=_bacefb .FindStringSubmatch (_bfaba );if _ffbcg ==nil {continue ; +};_cfagd ,_ccdba :=_ffbcg [1],_ffbcg [2];_bgdbe ,_dbddf :=_fbb .Atoi (_cfagd );if _dbddf !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0042\u0061\u0064\u0020\u0065\u006e\u0063\u006fd\u0069n\u0067\u0020\u006c\u0069\u006e\u0065\u002e \u0025\u0071",_bfaba ); +return nil ,_dg .ErrTypeError ;};_cdgfg [_bd .CharCode (_bgdbe )]=_bd .GlyphName (_ccdba );};_ag .Log .Trace ("g\u0065\u0074\u0045\u006e\u0063\u006fd\u0069\u006e\u0067\u0073\u003a\u0020\u006b\u0065\u0079V\u0061\u006c\u0075e\u0073=\u0025\u0023\u0076",_cdgfg ); +return _cdgfg ,nil ;}; -// NewOutline returns a new outline instance. -func NewOutline ()*Outline {return &Outline {}};func (_bbf *PdfReader )newPdfActionGotoEFromDict (_gcf *_aff .PdfObjectDictionary )(*PdfActionGoToE ,error ){_ccc ,_dcf :=_dfc (_gcf .Get ("\u0046"));if _dcf !=nil {return nil ,_dcf ;};return &PdfActionGoToE {D :_gcf .Get ("\u0044"),NewWindow :_gcf .Get ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw"),T :_gcf .Get ("\u0054"),F :_ccc },nil ; -}; +// CharcodesToUnicodeWithStats is identical to CharcodesToUnicode except it returns more statistical +// information about hits and misses from the reverse mapping process. +// NOTE: The number of runes returned may be greater than the number of charcodes. +// TODO(peterwilliams97): Deprecate in v4 and use only CharcodesToStrings() +func (_bbeg *PdfFont )CharcodesToUnicodeWithStats (charcodes []_bd .CharCode )(_ebgb []rune ,_ddga ,_gdeaf int ){_aaf ,_ddga ,_gdeaf :=_bbeg .CharcodesToStrings (charcodes );return []rune (_ga .Join (_aaf ,"")),_ddga ,_gdeaf ;}; -// DecodeArray returns the range of color component values in DeviceGray colorspace. -func (_gaag *PdfColorspaceDeviceGray )DecodeArray ()[]float64 {return []float64 {0,1.0}}; +// PdfActionJavaScript represents a javaScript action. +type PdfActionJavaScript struct{*PdfAction ;JS _dg .PdfObject ;}; -// ToPdfObject implements interface PdfModel. -func (_gace *PdfAnnotationText )ToPdfObject ()_aff .PdfObject {_gace .PdfAnnotation .ToPdfObject ();_bfcc :=_gace ._ccfb ;_dffba :=_bfcc .PdfObject .(*_aff .PdfObjectDictionary );if _gace .PdfAnnotationMarkup !=nil {_gace .PdfAnnotationMarkup .appendToPdfDictionary (_dffba ); -};_dffba .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0054\u0065\u0078\u0074"));_dffba .SetIfNotNil ("\u004f\u0070\u0065\u006e",_gace .Open );_dffba .SetIfNotNil ("\u004e\u0061\u006d\u0065",_gace .Name );_dffba .SetIfNotNil ("\u0053\u0074\u0061t\u0065",_gace .State ); -_dffba .SetIfNotNil ("\u0053\u0074\u0061\u0074\u0065\u004d\u006f\u0064\u0065\u006c",_gace .StateModel );return _bfcc ;}; +// NewPdfOutlineTree returns an initialized PdfOutline tree. +func NewPdfOutlineTree ()*PdfOutline {_fdeeg :=NewPdfOutline ();_fdeeg ._baddf =&_fdeeg ;return _fdeeg ;}; -// NewXObjectImageFromStream builds the image xobject from a stream object. -// An image dictionary is the dictionary portion of a stream object representing an image XObject. -func NewXObjectImageFromStream (stream *_aff .PdfObjectStream )(*XObjectImage ,error ){_eabdbf :=&XObjectImage {};_eabdbf ._fccgd =stream ;_gdedbf :=*(stream .PdfObjectDictionary );_ceba ,_ccfdb :=_aff .NewEncoderFromStream (stream );if _ccfdb !=nil {return nil ,_ccfdb ; -};_eabdbf .Filter =_ceba ;if _cgfeg :=_aff .TraceToDirectObject (_gdedbf .Get ("\u0057\u0069\u0064t\u0068"));_cgfeg !=nil {_baebd ,_ddcdb :=_cgfeg .(*_aff .PdfObjectInteger );if !_ddcdb {return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0069\u006d\u0061g\u0065\u0020\u0077\u0069\u0064\u0074\u0068\u0020\u006f\u0062j\u0065\u0063\u0074"); -};_fedfa :=int64 (*_baebd );_eabdbf .Width =&_fedfa ;}else {return nil ,_g .New ("\u0077\u0069\u0064\u0074\u0068\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};if _ecfdc :=_aff .TraceToDirectObject (_gdedbf .Get ("\u0048\u0065\u0069\u0067\u0068\u0074")); -_ecfdc !=nil {_deaeg ,_dacff :=_ecfdc .(*_aff .PdfObjectInteger );if !_dacff {return nil ,_g .New ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0069\u006d\u0061\u0067\u0065\u0020\u0068\u0065\u0069g\u0068\u0074\u0020o\u0062j\u0065\u0063\u0074");};_ceegd :=int64 (*_deaeg ); -_eabdbf .Height =&_ceegd ;}else {return nil ,_g .New ("\u0068\u0065\u0069\u0067\u0068\u0074\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};if _cbdfac :=_aff .TraceToDirectObject (_gdedbf .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065")); -_cbdfac !=nil {_bebg ,_addcaa :=NewPdfColorspaceFromPdfObject (_cbdfac );if _addcaa !=nil {return nil ,_addcaa ;};_eabdbf .ColorSpace =_bebg ;}else {_adg .Log .Debug ("\u0058O\u0062\u006a\u0065c\u0074\u0020\u0049m\u0061ge\u0020\u0063\u006f\u006c\u006f\u0072\u0073p\u0061\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u002d\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067 1\u0020c\u006f\u006c\u006f\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065n\u0074\u0020\u002d\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047r\u0061\u0079"); -_eabdbf .ColorSpace =NewPdfColorspaceDeviceGray ();};if _cbbgc :=_aff .TraceToDirectObject (_gdedbf .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));_cbbgc !=nil {_dggac ,_edfce :=_cbbgc .(*_aff .PdfObjectInteger ); -if !_edfce {return nil ,_g .New ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0069\u006d\u0061\u0067\u0065\u0020\u0068\u0065\u0069g\u0068\u0074\u0020o\u0062j\u0065\u0063\u0074");};_aaedg :=int64 (*_dggac );_eabdbf .BitsPerComponent =&_aaedg ;};_eabdbf .Intent =_gdedbf .Get ("\u0049\u006e\u0074\u0065\u006e\u0074"); -_eabdbf .ImageMask =_gdedbf .Get ("\u0049m\u0061\u0067\u0065\u004d\u0061\u0073k");_eabdbf .Mask =_gdedbf .Get ("\u004d\u0061\u0073\u006b");_eabdbf .Decode =_gdedbf .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");_eabdbf .Interpolate =_gdedbf .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065"); -_eabdbf .Alternatives =_gdedbf .Get ("\u0041\u006c\u0074e\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0073");_eabdbf .SMask =_gdedbf .Get ("\u0053\u004d\u0061s\u006b");_eabdbf .SMaskInData =_gdedbf .Get ("S\u004d\u0061\u0073\u006b\u0049\u006e\u0044\u0061\u0074\u0061"); -_eabdbf .Matte =_gdedbf .Get ("\u004d\u0061\u0074t\u0065");_eabdbf .Name =_gdedbf .Get ("\u004e\u0061\u006d\u0065");_eabdbf .StructParent =_gdedbf .Get ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074");_eabdbf .ID =_gdedbf .Get ("\u0049\u0044"); -_eabdbf .OPI =_gdedbf .Get ("\u004f\u0050\u0049");_eabdbf .Metadata =_gdedbf .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");_eabdbf .OC =_gdedbf .Get ("\u004f\u0043");_eabdbf .Stream =stream .Stream ;return _eabdbf ,nil ;}; +// BytesToCharcodes converts the bytes in a PDF string to character codes. +func (_bgge *PdfFont )BytesToCharcodes (data []byte )[]_bd .CharCode {_ag .Log .Trace ("\u0042\u0079\u0074es\u0054\u006f\u0043\u0068\u0061\u0072\u0063\u006f\u0064e\u0073:\u0020d\u0061t\u0061\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d\u003d\u0025\u0023\u0071",data ,data ); +if _agfd ,_ccdfg :=_bgge ._cadf .(*pdfFontType0 );_ccdfg &&_agfd ._bfae !=nil {if _bcef ,_cfad :=_agfd .bytesToCharcodes (data );_cfad {return _bcef ;};};var (_fffc =make ([]_bd .CharCode ,0,len (data )+len (data )%2);_ffdcd =_bgge .baseFields (););if _ffdcd ._ecfb !=nil {if _ebggb ,_eggd :=_ffdcd ._ecfb .BytesToCharcodes (data ); +_eggd {for _ ,_cdcg :=range _ebggb {_fffc =append (_fffc ,_bd .CharCode (_cdcg ));};return _fffc ;};};if _ffdcd .isCIDFont (){if len (data )==1{data =[]byte {0,data [0]};};if len (data )%2!=0{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0064\u0061\u0074\u0061\u003d\u0025\u002b\u0076\u0020t\u006f\u0020\u0065\u0076\u0065n\u0020\u006ce\u006e\u0067\u0074\u0068",data ); +data =append (data ,0);};for _fffgf :=0;_fffgf < len (data );_fffgf +=2{_cefe :=uint16 (data [_fffgf ])<<8|uint16 (data [_fffgf +1]);_fffc =append (_fffc ,_bd .CharCode (_cefe ));};}else {for _ ,_cafge :=range data {_fffc =append (_fffc ,_bd .CharCode (_cafge )); +};};return _fffc ;}; -// NewPdfActionURI returns a new "Uri" action. -func NewPdfActionURI ()*PdfActionURI {_cae :=NewPdfAction ();_dd :=&PdfActionURI {};_dd .PdfAction =_cae ;_cae .SetContext (_dd );return _dd ;};func (_affd *PdfColorspaceICCBased )String ()string {return "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064"; -}; +// GenerateHashMaps generates DSS hashmaps for Certificates, OCSPs and CRLs to make sure they are unique. +func (_bdcdg *DSS )GenerateHashMaps ()error {_cfdb ,_febed :=_bdcdg .generateHashMap (_bdcdg .Certs );if _febed !=nil {return _febed ;};_bggd ,_febed :=_bdcdg .generateHashMap (_bdcdg .OCSPs );if _febed !=nil {return _febed ;};_cgde ,_febed :=_bdcdg .generateHashMap (_bdcdg .CRLs ); +if _febed !=nil {return _febed ;};_bdcdg ._agbg =_cfdb ;_bdcdg ._bggg =_bggd ;_bdcdg ._dcdf =_cgde ;return nil ;}; -// GetRuneMetrics returns the character metrics for the specified rune. -// A bool flag is returned to indicate whether or not the entry was found. -func (_gdgc pdfCIDFontType0 )GetRuneMetrics (r rune )(_bcd .CharMetrics ,bool ){return _bcd .CharMetrics {Wx :_gdgc ._fgbc },true ;}; +// GetPerms returns the Permissions dictionary +func (_gfec *PdfReader )GetPerms ()*Permissions {return _gfec ._fbcaa }; -// PdfAnnotationWidget represents Widget annotations. -// Note: Widget annotations are used to display form fields. -// (Section 12.5.6.19). -type PdfAnnotationWidget struct{*PdfAnnotation ;H _aff .PdfObject ;MK _aff .PdfObject ;A _aff .PdfObject ;AA _aff .PdfObject ;BS _aff .PdfObject ;Parent _aff .PdfObject ;_afae *PdfField ;_cbcf bool ;}; +// GetExtGState gets the ExtGState specified by keyName. Returns a bool +// indicating whether it was found or not. +func (_gdcff *PdfPageResources )GetExtGState (keyName _dg .PdfObjectName )(_dg .PdfObject ,bool ){if _gdcff .ExtGState ==nil {return nil ,false ;};_eddfdg ,_bccbf :=_dg .TraceToDirectObject (_gdcff .ExtGState ).(*_dg .PdfObjectDictionary );if !_bccbf {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064 \u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_gdcff .ExtGState ); +return nil ,false ;};if _aebee :=_eddfdg .Get (keyName );_aebee !=nil {return _aebee ,true ;};return nil ,false ;};func (_cdde *PdfColorspaceCalGray )String ()string {return "\u0043a\u006c\u0047\u0072\u0061\u0079"}; -// Image interface is a basic representation of an image used in PDF. -// The colorspace is not specified, but must be known when handling the image. -type Image struct{Width int64 ;Height int64 ;BitsPerComponent int64 ;ColorComponents int ;Data []byte ;_becb []byte ;_edgef []float64 ;}; +// FillWithAppearance populates `form` with values provided by `provider`. +// If not nil, `appGen` is used to generate appearance dictionaries for the +// field annotations, based on the specified settings. Otherwise, appearance +// generation is skipped. +// e.g.: appGen := annotator.FieldAppearance{OnlyIfMissing: true, RegenerateTextFields: true} +// NOTE: In next major version this functionality will be part of Fill. (v4) +func (_dcfg *PdfAcroForm )FillWithAppearance (provider FieldValueProvider ,appGen FieldAppearanceGenerator )error {_degde :=_dcfg .fill (provider ,appGen );if _degde !=nil {return _degde ;};if _ ,_cddea :=provider .(FieldImageProvider );_cddea {_degde =_dcfg .fillImageWithAppearance (provider .(FieldImageProvider ),appGen ); +};return _degde ;}; -// NewPdfAnnotationCircle returns a new circle annotation. -func NewPdfAnnotationCircle ()*PdfAnnotationCircle {_bad :=NewPdfAnnotation ();_gffd :=&PdfAnnotationCircle {};_gffd .PdfAnnotation =_bad ;_gffd .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_bad .SetContext (_gffd );return _gffd ;}; +// PdfShadingPatternType3 is shading patterns that will use a Type 3 shading pattern (Radial). +type PdfShadingPatternType3 struct{*PdfPattern ;Shading *PdfShadingType3 ;Matrix *_dg .PdfObjectArray ;ExtGState _dg .PdfObject ;}; -// SignatureHandlerDocMDP extends SignatureHandler with the ValidateWithOpts method for checking the DocMDP policy. -type SignatureHandlerDocMDP interface{SignatureHandler ; +// PdfFieldSignature signature field represents digital signatures and optional data for authenticating +// the name of the signer and verifying document contents. +type PdfFieldSignature struct{*PdfField ;*PdfAnnotationWidget ;V *PdfSignature ;Lock *_dg .PdfIndirectObject ;SV *_dg .PdfIndirectObject ;}; -// ValidateWithOpts validates a PDF signature by checking PdfReader or PdfParser -// ValidateWithOpts shall contain Validate call -ValidateWithOpts (_edfag *PdfSignature ,_ddbaee Hasher ,_dedaa SignatureHandlerDocMDPParams )(SignatureValidationResult ,error );}; +// PdfColorspaceSpecialIndexed is an indexed color space is a lookup table, where the input element +// is an index to the lookup table and the output is a color defined in the lookup table in the Base +// colorspace. +// [/Indexed base hival lookup] +type PdfColorspaceSpecialIndexed struct{Base PdfColorspace ;HiVal int ;Lookup _dg .PdfObject ;_bcea []byte ;_fffd *_dg .PdfIndirectObject ;}; -// ToPdfObject implements interface PdfModel. -func (_faddd *PdfAnnotationProjection )ToPdfObject ()_aff .PdfObject {_faddd .PdfAnnotation .ToPdfObject ();_bfdbc :=_faddd ._ccfb ;_ebee :=_bfdbc .PdfObject .(*_aff .PdfObjectDictionary );_faddd .PdfAnnotationMarkup .appendToPdfDictionary (_ebee );return _bfdbc ; +// GetNumComponents returns the number of color components of the colorspace device. +// Returns 3 for an RGB device. +func (_gadbb *PdfColorspaceDeviceRGB )GetNumComponents ()int {return 3}; + +// ToPdfObject returns the PDF representation of the colorspace. +func (_addf *PdfColorspaceSpecialPattern )ToPdfObject ()_dg .PdfObject {if _addf .UnderlyingCS ==nil {return _dg .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e");};_dgg :=_dg .MakeArray (_dg .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_dgg .Append (_addf .UnderlyingCS .ToPdfObject ()); +if _addf ._cbff !=nil {_addf ._cbff .PdfObject =_dgg ;return _addf ._cbff ;};return _dgg ;};func (_aggc *PdfReader )newPdfAnnotationInkFromDict (_ffed *_dg .PdfObjectDictionary )(*PdfAnnotationInk ,error ){_ccde :=PdfAnnotationInk {};_egg ,_gbcf :=_aggc .newPdfAnnotationMarkupFromDict (_ffed ); +if _gbcf !=nil {return nil ,_gbcf ;};_ccde .PdfAnnotationMarkup =_egg ;_ccde .InkList =_ffed .Get ("\u0049n\u006b\u004c\u0069\u0073\u0074");_ccde .BS =_ffed .Get ("\u0042\u0053");return &_ccde ,nil ;}; + +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. The slice should contain three elements representing the +// A, B and C components of the color. The values of the elements should be +// between 0 and 1. +func (_eccb *PdfColorspaceCalRGB )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=3{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gfdb :=vals [0];if _gfdb < 0.0||_gfdb > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_gfdb ); +return nil ,ErrColorOutOfRange ;};_ada :=vals [1];if _ada < 0.0||_ada > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_ada );return nil ,ErrColorOutOfRange ; +};_egea :=vals [2];if _egea < 0.0||_egea > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_egea );return nil ,ErrColorOutOfRange ;};_gegea :=NewPdfColorCalRGB (_gfdb ,_ada ,_egea ); +return _gegea ,nil ;};func (_gdada *PdfAcroForm )fillImageWithAppearance (_gece FieldImageProvider ,_beea FieldAppearanceGenerator )error {if _gdada ==nil {return nil ;};_agga ,_gcfef :=_gece .FieldImageValues ();if _gcfef !=nil {return _gcfef ;};for _ ,_ggbab :=range _gdada .AllFields (){_ddee :=_ggbab .PartialName (); +_cggd ,_agbe :=_agga [_ddee ];if !_agbe {if _dgcaf ,_eegga :=_ggbab .FullName ();_eegga ==nil {_cggd ,_agbe =_agga [_dgcaf ];};};if !_agbe {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020f\u006f\u0072\u006d \u0066\u0069\u0065l\u0064\u0020\u0025\u0073\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u0069n \u0074\u0068\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0072\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_ddee ); +continue ;};switch _eaedg :=_ggbab .GetContext ().(type ){case *PdfFieldButton :if _eaedg .IsPush (){_eaedg .SetFillImage (_cggd );};};if _beea ==nil {continue ;};for _ ,_bbce :=range _ggbab .Annotations {_abbce ,_ddgff :=_beea .GenerateAppearanceDict (_gdada ,_ggbab ,_bbce ); +if _ddgff !=nil {return _ddgff ;};_bbce .AP =_abbce ;_bbce .ToPdfObject ();};};return nil ;}; + +// GetPdfInfo returns the PDF info dictionary. +func (_fgfgb *PdfReader )GetPdfInfo ()(*PdfInfo ,error ){_dcec ,_gbdfa :=_fgfgb .GetTrailer ();if _gbdfa !=nil {return nil ,_gbdfa ;};var _gbace *_dg .PdfObjectDictionary ;_cafa :=_dcec .Get ("\u0049\u006e\u0066\u006f");switch _edcc :=_cafa .(type ){case *_dg .PdfObjectReference :_bbade :=_edcc ; +_cafa ,_gbdfa =_fgfgb .GetIndirectObjectByNumber (int (_bbade .ObjectNumber ));_cafa =_dg .TraceToDirectObject (_cafa );if _gbdfa !=nil {return nil ,_gbdfa ;};_gbace ,_ =_cafa .(*_dg .PdfObjectDictionary );case *_dg .PdfObjectDictionary :_gbace =_edcc ; +};if _gbace ==nil {return nil ,_bf .New ("I\u006e\u0066\u006f\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006eo\u0074\u0020\u0070r\u0065s\u0065\u006e\u0074");};_agfb ,_gbdfa :=NewPdfInfoFromObject (_gbace );if _gbdfa !=nil {return nil ,_gbdfa ; +};return _agfb ,nil ;}; + +// NewPdfAnnotationText returns a new text annotation. +func NewPdfAnnotationText ()*PdfAnnotationText {_afg :=NewPdfAnnotation ();_ggg :=&PdfAnnotationText {};_ggg .PdfAnnotation =_afg ;_ggg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_afg .SetContext (_ggg );return _ggg ;};func (_eggcfb *PdfWriter )getPdfVersion ()string {return _b .Sprintf ("\u0025\u0064\u002e%\u0064",_eggcfb ._efacd .Major ,_eggcfb ._efacd .Minor ); }; -// GetPageLabels returns the PageLabels entry in the PDF catalog. -// See section 12.4.2 "Page Labels" (p. 382 PDF32000_2008). -func (_afdag *PdfReader )GetPageLabels ()(_aff .PdfObject ,error ){_ggeca :=_aff .ResolveReference (_afdag ._dcadd .Get ("\u0050\u0061\u0067\u0065\u004c\u0061\u0062\u0065\u006c\u0073"));if _ggeca ==nil {return nil ,nil ;};if !_afdag ._gfgg {_egcb :=_afdag .traverseObjectData (_ggeca ); -if _egcb !=nil {return nil ,_egcb ;};};return _ggeca ,nil ;};func _dbdf (_ddageg _aff .PdfObject )(*PdfShading ,error ){_eefaf :=&PdfShading {};var _fccaa *_aff .PdfObjectDictionary ;if _adcca ,_gagba :=_aff .GetIndirect (_ddageg );_gagba {_eefaf ._bdacg =_adcca ; -_abfcg ,_accacf :=_adcca .PdfObject .(*_aff .PdfObjectDictionary );if !_accacf {_adg .Log .Debug ("\u004f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074i\u006f\u006e\u0061\u0072\u0079\u0020\u0074y\u0070\u0065");return nil ,_aff .ErrTypeError ; -};_fccaa =_abfcg ;}else if _cgadec ,_babdg :=_aff .GetStream (_ddageg );_babdg {_eefaf ._bdacg =_cgadec ;_fccaa =_cgadec .PdfObjectDictionary ;}else if _agad ,_ebfe :=_aff .GetDict (_ddageg );_ebfe {_eefaf ._bdacg =_agad ;_fccaa =_agad ;}else {_adg .Log .Debug ("O\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0075\u006e\u0065\u0078\u0070e\u0063\u0074\u0065d\u0020(\u0025\u0054\u0029",_ddageg ); -return nil ,_aff .ErrTypeError ;};if _fccaa ==nil {_adg .Log .Debug ("\u0044i\u0063t\u0069\u006f\u006e\u0061\u0072y\u0020\u006di\u0073\u0073\u0069\u006e\u0067");return nil ,_g .New ("\u0064\u0069\u0063t\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -};_ddageg =_fccaa .Get ("S\u0068\u0061\u0064\u0069\u006e\u0067\u0054\u0079\u0070\u0065");if _ddageg ==nil {_adg .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065\u0064\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u0065\u0020\u006d\u0069\u0073si\u006e\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_ddageg =_aff .TraceToDirectObject (_ddageg );_deceg ,_beea :=_ddageg .(*_aff .PdfObjectInteger );if !_beea {_adg .Log .Debug ("\u0049\u006e\u0076al\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0066o\u0072 \u0073h\u0061d\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029",_ddageg ); -return nil ,_aff .ErrTypeError ;};if *_deceg < 1||*_deceg > 7{_adg .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u0065\u002c\u0020\u006e\u006ft\u0020\u0031\u002d\u0037\u0020(\u0067\u006ft\u0020\u0025\u0064\u0029",*_deceg ); -return nil ,_aff .ErrTypeError ;};_eefaf .ShadingType =_deceg ;_ddageg =_fccaa .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065");if _ddageg ==nil {_adg .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072e\u0064\u0020\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065\u0020e\u006e\u0074\u0072\u0079\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_eeece ,_edage :=NewPdfColorspaceFromPdfObject (_ddageg );if _edage !=nil {_adg .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065: \u0025\u0076",_edage ); -return nil ,_edage ;};_eefaf .ColorSpace =_eeece ;_ddageg =_fccaa .Get ("\u0042\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064");if _ddageg !=nil {_ddageg =_aff .TraceToDirectObject (_ddageg );_aecfb ,_ffacf :=_ddageg .(*_aff .PdfObjectArray );if !_ffacf {_adg .Log .Debug ("\u0042\u0061\u0063\u006b\u0067r\u006f\u0075\u006e\u0064\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054)",_ddageg ); -return nil ,_aff .ErrTypeError ;};_eefaf .Background =_aecfb ;};_ddageg =_fccaa .Get ("\u0042\u0042\u006f\u0078");if _ddageg !=nil {_ddageg =_aff .TraceToDirectObject (_ddageg );_gbcef ,_eggfd :=_ddageg .(*_aff .PdfObjectArray );if !_eggfd {_adg .Log .Debug ("\u0042\u0061\u0063\u006b\u0067r\u006f\u0075\u006e\u0064\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062e\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054)",_ddageg ); -return nil ,_aff .ErrTypeError ;};_eeba ,_fcdad :=NewPdfRectangle (*_gbcef );if _fcdad !=nil {_adg .Log .Debug ("\u0042\u0042\u006f\u0078\u0020\u0065\u0072\u0072\u006fr\u003a\u0020\u0025\u0076",_fcdad );return nil ,_fcdad ;};_eefaf .BBox =_eeba ;};_ddageg =_fccaa .Get ("\u0041n\u0074\u0069\u0041\u006c\u0069\u0061s"); -if _ddageg !=nil {_ddageg =_aff .TraceToDirectObject (_ddageg );_gcgba ,_cfeag :=_ddageg .(*_aff .PdfObjectBool );if !_cfeag {_adg .Log .Debug ("A\u006e\u0074\u0069\u0041\u006c\u0069\u0061\u0073\u0020i\u006e\u0076\u0061\u006c\u0069\u0064\u0020ty\u0070\u0065\u002c\u0020s\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020bo\u006f\u006c \u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_ddageg ); -return nil ,_aff .ErrTypeError ;};_eefaf .AntiAlias =_gcgba ;};switch *_deceg {case 1:_efedb ,_abfeef :=_aggd (_fccaa );if _abfeef !=nil {return nil ,_abfeef ;};_efedb .PdfShading =_eefaf ;_eefaf ._fcbfb =_efedb ;return _eefaf ,nil ;case 2:_babae ,_bbgcb :=_ccbae (_fccaa ); -if _bbgcb !=nil {return nil ,_bbgcb ;};_babae .PdfShading =_eefaf ;_eefaf ._fcbfb =_babae ;return _eefaf ,nil ;case 3:_fdadd ,_aaded :=_ffcgg (_fccaa );if _aaded !=nil {return nil ,_aaded ;};_fdadd .PdfShading =_eefaf ;_eefaf ._fcbfb =_fdadd ;return _eefaf ,nil ; -case 4:_fbefc ,_geefc :=_abegfg (_fccaa );if _geefc !=nil {return nil ,_geefc ;};_fbefc .PdfShading =_eefaf ;_eefaf ._fcbfb =_fbefc ;return _eefaf ,nil ;case 5:_bbdcf ,_dddb :=_ccfa (_fccaa );if _dddb !=nil {return nil ,_dddb ;};_bbdcf .PdfShading =_eefaf ; -_eefaf ._fcbfb =_bbdcf ;return _eefaf ,nil ;case 6:_dbgdg ,_afcfg :=_dccgd (_fccaa );if _afcfg !=nil {return nil ,_afcfg ;};_dbgdg .PdfShading =_eefaf ;_eefaf ._fcbfb =_dbgdg ;return _eefaf ,nil ;case 7:_deedc ,_gdfge :=_daeaac (_fccaa );if _gdfge !=nil {return nil ,_gdfge ; -};_deedc .PdfShading =_eefaf ;_eefaf ._fcbfb =_deedc ;return _eefaf ,nil ;};return nil ,_g .New ("u\u006ek\u006e\u006f\u0077\u006e\u0020\u0073\u0068\u0061d\u0069\u006e\u0067\u0020ty\u0070\u0065");}; +// Enable LTV enables the specified signature. The signing certificate +// chain is extracted from the signature dictionary. Optionally, additional +// certificates can be specified through the `extraCerts` parameter. +// The LTV client attempts to build the certificate chain up to a trusted root +// by downloading any missing certificates. +func (_ffgga *LTV )Enable (sig *PdfSignature ,extraCerts []*_bb .Certificate )error {if _geeea :=_ffgga .validateSig (sig );_geeea !=nil {return _geeea ;};_ebedd ,_deae :=_ffgga .generateVRIKey (sig );if _deae !=nil {return _deae ;};if _ ,_bgbcb :=_ffgga ._abca .VRI [_ebedd ]; +_bgbcb &&_ffgga .SkipExisting {return nil ;};_bagf ,_deae :=sig .GetCerts ();if _deae !=nil {return _deae ;};return _ffgga .enable (_bagf ,extraCerts ,_ebedd );}; -// AddAnnotation appends `annot` to the list of page annotations. -func (_bfcaa *PdfPage )AddAnnotation (annot *PdfAnnotation ){if _bfcaa ._bbgb ==nil {_bfcaa .GetAnnotations ();};_bfcaa ._bbgb =append (_bfcaa ._bbgb ,annot );}; +// GetXHeight returns the XHeight of the font `descriptor`. +func (_becga *PdfFontDescriptor )GetXHeight ()(float64 ,error ){return _dg .GetNumberAsFloat (_becga .XHeight );}; -// PdfColorPatternType2 represents a color shading pattern type 2 (Axial). -type PdfColorPatternType2 struct{Color PdfColor ;PatternName _aff .PdfObjectName ;}; +// PdfFieldText represents a text field where user can enter text. +type PdfFieldText struct{*PdfField ;DA *_dg .PdfObjectString ;Q *_dg .PdfObjectInteger ;DS *_dg .PdfObjectString ;RV _dg .PdfObject ;MaxLen *_dg .PdfObjectInteger ;}; -// GetRuneMetrics returns the character metrics for the specified rune. -// A bool flag is returned to indicate whether or not the entry was found. -func (_afbfg pdfCIDFontType2 )GetRuneMetrics (r rune )(_bcd .CharMetrics ,bool ){_afaae ,_fafd :=_afbfg ._aedcf [r ];if !_fafd {_egafa ,_eeefb :=_aff .GetInt (_afbfg .DW );if !_eeefb {return _bcd .CharMetrics {},false ;};_afaae =int (*_egafa );};return _bcd .CharMetrics {Wx :float64 (_afaae )},true ; -};func (_fcageb *PdfReader )buildNameNodes (_dbeaca *_aff .PdfIndirectObject ,_efefd map[_aff .PdfObject ]struct{})error {if _dbeaca ==nil {return nil ;};if _ ,_dbeae :=_efefd [_dbeaca ];_dbeae {_adg .Log .Debug ("\u0043\u0079\u0063l\u0069\u0063\u0020\u0072e\u0063\u0075\u0072\u0073\u0069\u006f\u006e,\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0028\u0025\u0076\u0029",_dbeaca .ObjectNumber ); -return nil ;};_efefd [_dbeaca ]=struct{}{};_edcedb ,_cgcd :=_dbeaca .PdfObject .(*_aff .PdfObjectDictionary );if !_cgcd {return _g .New ("n\u006f\u0064\u0065\u0020no\u0074 \u0061\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079");};if _facb ,_eedffd :=_aff .GetDict (_edcedb .Get ("\u0044\u0065\u0073t\u0073")); -_eedffd {_daeaa ,_gdcef :=_aff .GetArray (_facb .Get ("\u004b\u0069\u0064\u0073"));if !_gdcef {return _g .New ("\u0049n\u0076\u0061\u006c\u0069d\u0020\u004b\u0069\u0064\u0073 \u0061r\u0072a\u0079\u0020\u006f\u0062\u006a\u0065\u0063t");};_adg .Log .Trace ("\u004b\u0069\u0064\u0073\u003a\u0020\u0025\u0073",_daeaa ); -for _deffca ,_deeeb :=range _daeaa .Elements (){_aebbd ,_fbacb :=_aff .GetIndirect (_deeeb );if !_fbacb {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u0068\u0069\u006c\u0064\u0020n\u006f\u0074\u0020\u0069\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u002d \u0028\u0025\u0073\u0029",_aebbd ); -return _g .New ("\u0063h\u0069\u006c\u0064\u0020n\u006f\u0074\u0020\u0069\u006ed\u0069r\u0065c\u0074\u0020\u006f\u0062\u006a\u0065\u0063t");};_daeaa .Set (_deffca ,_aebbd );_cecbg :=_fcageb .buildNameNodes (_aebbd ,_efefd );if _cecbg !=nil {return _cecbg ; -};};};if _adab ,_bfcf :=_aff .GetDict (_edcedb );_bfcf {if !_aff .IsNullObject (_adab .Get ("\u004b\u0069\u0064\u0073")){if _cbdde ,_gcafa :=_aff .GetArray (_adab .Get ("\u004b\u0069\u0064\u0073"));_gcafa {for _caddb ,_cffga :=range _cbdde .Elements (){if _cfea ,_fbdge :=_aff .GetIndirect (_cffga ); -_fbdge {_cbdde .Set (_caddb ,_cfea );_dgcf :=_fcageb .buildNameNodes (_cfea ,_efefd );if _dgcf !=nil {return _dgcf ;};};};};};};return nil ;};func (_egcac *LTV )getCerts (_dfae []*_fb .Certificate )([][]byte ,error ){_addca :=make ([][]byte ,0,len (_dfae )); -for _ ,_acfe :=range _dfae {_addca =append (_addca ,_acfe .Raw );};return _addca ,nil ;}; +// SetPdfCreator sets the Creator attribute of the output PDF. +func SetPdfCreator (creator string ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_cebb =creator };func (_acf *PdfReader )newPdfAnnotationTextFromDict (_bag *_dg .PdfObjectDictionary )(*PdfAnnotationText ,error ){_bdgg :=PdfAnnotationText {};_bdc ,_gagda :=_acf .newPdfAnnotationMarkupFromDict (_bag ); +if _gagda !=nil {return nil ,_gagda ;};_bdgg .PdfAnnotationMarkup =_bdc ;_bdgg .Open =_bag .Get ("\u004f\u0070\u0065\u006e");_bdgg .Name =_bag .Get ("\u004e\u0061\u006d\u0065");_bdgg .State =_bag .Get ("\u0053\u0074\u0061t\u0065");_bdgg .StateModel =_bag .Get ("\u0053\u0074\u0061\u0074\u0065\u004d\u006f\u0064\u0065\u006c"); +return &_bdgg ,nil ;}; -// ImageToRGB converts an image with samples in Separation CS to an image with samples specified in -// DeviceRGB CS. -func (_ffcf *PdfColorspaceSpecialSeparation )ImageToRGB (img Image )(Image ,error ){_gcgf :=_aae .NewReader (img .getBase ());_bfag :=_gd .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),_ffcf .AlternateSpace .GetNumComponents (),nil ,img ._becb ,nil ); -_cdacf :=_aae .NewWriter (_bfag );_abac :=_cf .Pow (2,float64 (img .BitsPerComponent ))-1;_adg .Log .Trace ("\u0053\u0065\u0070a\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u002d\u003e\u0020\u0054\u006f\u0052\u0047\u0042\u0020\u0063o\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); -_adg .Log .Trace ("\u0054i\u006et\u0054\u0072\u0061\u006e\u0073f\u006f\u0072m\u003a\u0020\u0025\u002b\u0076",_ffcf .TintTransform );_ebdf :=_ffcf .AlternateSpace .DecodeArray ();var (_dfdb uint32 ;_bfdbf error ;);for {_dfdb ,_bfdbf =_gcgf .ReadSample (); -if _bfdbf ==_ega .EOF {break ;};if _bfdbf !=nil {return img ,_bfdbf ;};_agag :=float64 (_dfdb )/_abac ;_cfeea ,_efgb :=_ffcf .TintTransform .Evaluate ([]float64 {_agag });if _efgb !=nil {return img ,_efgb ;};for _cfeg ,_bcgg :=range _cfeea {_gfgca :=_gd .LinearInterpolate (_bcgg ,_ebdf [_cfeg *2],_ebdf [_cfeg *2+1],0,1); -if _efgb =_cdacf .WriteSample (uint32 (_gfgca *_abac ));_efgb !=nil {return img ,_efgb ;};};};return _ffcf .AlternateSpace .ImageToRGB (_efecb (&_bfag ));}; +// ToPdfObject returns the button field dictionary within an indirect object. +func (_decgb *PdfFieldButton )ToPdfObject ()_dg .PdfObject {_decgb .PdfField .ToPdfObject ();_gdad :=_decgb ._egce ;_daeg :=_gdad .PdfObject .(*_dg .PdfObjectDictionary );_daeg .Set ("\u0046\u0054",_dg .MakeName ("\u0042\u0074\u006e"));if _decgb .Opt !=nil {_daeg .Set ("\u004f\u0070\u0074",_decgb .Opt ); +};return _gdad ;}; -// DecodeArray returns the range of color component values in DeviceCMYK colorspace. -func (_eacc *PdfColorspaceDeviceCMYK )DecodeArray ()[]float64 {return []float64 {0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0};}; +// PdfAnnotationProjection represents Projection annotations. +type PdfAnnotationProjection struct{*PdfAnnotation ;*PdfAnnotationMarkup ;}; -// PdfFilespec represents a file specification which can either refer to an external or embedded file. -type PdfFilespec struct{Type _aff .PdfObject ;FS _aff .PdfObject ;F _aff .PdfObject ;UF _aff .PdfObject ;DOS _aff .PdfObject ;Mac _aff .PdfObject ;Unix _aff .PdfObject ;ID _aff .PdfObject ;V _aff .PdfObject ;EF _aff .PdfObject ;RF _aff .PdfObject ;Desc _aff .PdfObject ; -CI _aff .PdfObject ;_dfefa _aff .PdfObject ;}; +// FieldFilterFunc represents a PDF field filtering function. If the function +// returns true, the PDF field is kept, otherwise it is discarded. +type FieldFilterFunc func (*PdfField )bool ; -// PdfActionTrans represents a trans action. -type PdfActionTrans struct{*PdfAction ;Trans _aff .PdfObject ;}; +// SetEncoder sets the encoding for the underlying font. +// TODO(peterwilliams97): Change function signature to SetEncoder(encoder *textencoding.simpleEncoder). +// TODO(gunnsth): Makes sense if SetEncoder is removed from the interface fonts.Font as proposed in PR #260. +func (_gdaa *pdfFontSimple )SetEncoder (encoder _bd .TextEncoder ){_gdaa ._bdeed =encoder };func (_bea *PdfReader )newPdfActionRenditionFromDict (_gad *_dg .PdfObjectDictionary )(*PdfActionRendition ,error ){return &PdfActionRendition {R :_gad .Get ("\u0052"),AN :_gad .Get ("\u0041\u004e"),OP :_gad .Get ("\u004f\u0050"),JS :_gad .Get ("\u004a\u0053")},nil ; +}; -// GetXObjectImageByName returns the XObjectImage with the specified name from the -// page resources, if it exists. -func (_cfeff *PdfPageResources )GetXObjectImageByName (keyName _aff .PdfObjectName )(*XObjectImage ,error ){_dfeag ,_egdb :=_cfeff .GetXObjectByName (keyName );if _dfeag ==nil {return nil ,nil ;};if _egdb !=XObjectTypeImage {return nil ,_g .New ("\u006e\u006f\u0074 \u0061\u006e\u0020\u0069\u006d\u0061\u0067\u0065"); -};_bbbae ,_aagdc :=NewXObjectImageFromStream (_dfeag );if _aagdc !=nil {return nil ,_aagdc ;};return _bbbae ,nil ;}; +// Mask returns the uin32 bitmask for the specific flag. +func (_cefd FieldFlag )Mask ()uint32 {return uint32 (_cefd )}; -// ColorToRGB converts a CalRGB color to an RGB color. -func (_aebfa *PdfColorspaceCalRGB )ColorToRGB (color PdfColor )(PdfColor ,error ){_bdceb ,_dfef :=color .(*PdfColorCalRGB );if !_dfef {_adg .Log .Debug ("\u0049\u006e\u0070ut\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0063\u0061\u006c\u0020\u0072\u0067\u0062"); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_adfe :=_bdceb .A ();_aagd :=_bdceb .B ();_gffbe :=_bdceb .C ();X :=_aebfa .Matrix [0]*_cf .Pow (_adfe ,_aebfa .Gamma [0])+_aebfa .Matrix [3]*_cf .Pow (_aagd ,_aebfa .Gamma [1])+_aebfa .Matrix [6]*_cf .Pow (_gffbe ,_aebfa .Gamma [2]); -Y :=_aebfa .Matrix [1]*_cf .Pow (_adfe ,_aebfa .Gamma [0])+_aebfa .Matrix [4]*_cf .Pow (_aagd ,_aebfa .Gamma [1])+_aebfa .Matrix [7]*_cf .Pow (_gffbe ,_aebfa .Gamma [2]);Z :=_aebfa .Matrix [2]*_cf .Pow (_adfe ,_aebfa .Gamma [0])+_aebfa .Matrix [5]*_cf .Pow (_aagd ,_aebfa .Gamma [1])+_aebfa .Matrix [8]*_cf .Pow (_gffbe ,_aebfa .Gamma [2]); -_egef :=3.240479*X +-1.537150*Y +-0.498535*Z ;_cdegg :=-0.969256*X +1.875992*Y +0.041556*Z ;_cbecb :=0.055648*X +-0.204043*Y +1.057311*Z ;_egef =_cf .Min (_cf .Max (_egef ,0),1.0);_cdegg =_cf .Min (_cf .Max (_cdegg ,0),1.0);_cbecb =_cf .Min (_cf .Max (_cbecb ,0),1.0); -return NewPdfColorDeviceRGB (_egef ,_cdegg ,_cbecb ),nil ;}; +// AppendContentBytes creates a PDF stream from `cs` and appends it to the +// array of streams specified by the pages's Contents entry. +// If `wrapContents` is true, the content stream of the page is wrapped using +// a `q/Q` operator pair, so that its state does not affect the appended +// content stream. +func (_gggee *PdfPage )AppendContentBytes (cs []byte ,wrapContents bool )error {_gbea :=_gggee .GetContentStreamObjs ();wrapContents =wrapContents &&len (_gbea )> 0;_dbbda :=_dg .NewFlateEncoder ();_bagdg :=_dg .MakeArray ();if wrapContents {_eace ,_efedfb :=_dg .MakeStream ([]byte ("\u0071\u000a"),_dbbda ); +if _efedfb !=nil {return _efedfb ;};_bagdg .Append (_eace );};_bagdg .Append (_gbea ...);if wrapContents {_effc ,_dcfbf :=_dg .MakeStream ([]byte ("\u000a\u0051\u000a"),_dbbda );if _dcfbf !=nil {return _dcfbf ;};_bagdg .Append (_effc );};_fgbea ,_bebee :=_dg .MakeStream (cs ,_dbbda ); +if _bebee !=nil {return _bebee ;};_bagdg .Append (_fgbea );_gggee .Contents =_bagdg ;return nil ;}; -// NewPdfFontFromTTF loads a TTF font and returns a PdfFont type that can be -// used in text styling functions. -// Uses a WinAnsiTextEncoder and loads only character codes 32-255. -// NOTE: For composite fonts such as used in symbolic languages, use NewCompositePdfFontFromTTF. -func NewPdfFontFromTTF (r _ega .ReadSeeker )(*PdfFont ,error ){const _ffdfg =_eee .CharCode (32);const _abcee =_eee .CharCode (255);_dcdg ,_bcdfe :=_ad .ReadAll (r );if _bcdfe !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0072\u0065\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u003a\u0020\u0025\u0076",_bcdfe ); -return nil ,_bcdfe ;};_gcfdf ,_bcdfe :=_bcd .TtfParse (_af .NewReader (_dcdg ));if _bcdfe !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020l\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0054\u0054F\u0020\u0066\u006fn\u0074:\u0020\u0025\u0076",_bcdfe ); -return nil ,_bcdfe ;};_egfc :=&pdfFontSimple {_ecgd :make (map[_eee .CharCode ]float64 ),fontCommon :fontCommon {_fbged :"\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"}};_egfc ._fdgc =_eee .NewWinAnsiEncoder ();_egfc ._abed =_gcfdf .PostScriptName ; -_egfc .FirstChar =_aff .MakeInteger (int64 (_ffdfg ));_egfc .LastChar =_aff .MakeInteger (int64 (_abcee ));_bbdc :=1000.0/float64 (_gcfdf .UnitsPerEm );if len (_gcfdf .Widths )<=0{return nil ,_g .New ("\u0045\u0052\u0052O\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065 \u0028\u0057\u0069\u0064\u0074\u0068\u0073\u0029"); -};_gcbb :=_bbdc *float64 (_gcfdf .Widths [0]);_gddfc :=make ([]float64 ,0,_abcee -_ffdfg +1);for _gcedd :=_ffdfg ;_gcedd <=_abcee ;_gcedd ++{_cabe ,_agae :=_egfc .Encoder ().CharcodeToRune (_gcedd );if !_agae {_adg .Log .Debug ("\u0052u\u006e\u0065\u0020\u006eo\u0074\u0020\u0066\u006f\u0075n\u0064 \u0028c\u006f\u0064\u0065\u003a\u0020\u0025\u0064)",_gcedd ); -_gddfc =append (_gddfc ,_gcbb );continue ;};_bggdd ,_bfac :=_gcfdf .Chars [_cabe ];if !_bfac {_adg .Log .Debug ("R\u0075\u006e\u0065\u0020no\u0074 \u0069\u006e\u0020\u0054\u0054F\u0020\u0043\u0068\u0061\u0072\u0073");_gddfc =append (_gddfc ,_gcbb );continue ; -};_gdae :=_bbdc *float64 (_gcfdf .Widths [_bggdd ]);_gddfc =append (_gddfc ,_gdae );};_egfc .Widths =_aff .MakeIndirectObject (_aff .MakeArrayFromFloats (_gddfc ));if len (_gddfc )< int (_abcee -_ffdfg +1){_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u006f\u0066\u0020\u0077\u0069\u0064\u0074\u0068s,\u0020\u0025\u0064 \u003c \u0025\u0064",len (_gddfc ),255-32+1); -return nil ,_aff .ErrRangeError ;};for _bdaec :=_ffdfg ;_bdaec <=_abcee ;_bdaec ++{_egfc ._ecgd [_bdaec ]=_gddfc [_bdaec -_ffdfg ];};_egfc .Encoding =_aff .MakeName ("\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067");_bfefg :=&PdfFontDescriptor {}; -_bfefg .FontName =_aff .MakeName (_gcfdf .PostScriptName );_bfefg .Ascent =_aff .MakeFloat (_bbdc *float64 (_gcfdf .TypoAscender ));_bfefg .Descent =_aff .MakeFloat (_bbdc *float64 (_gcfdf .TypoDescender ));_bfefg .CapHeight =_aff .MakeFloat (_bbdc *float64 (_gcfdf .CapHeight )); -_bfefg .FontBBox =_aff .MakeArrayFromFloats ([]float64 {_bbdc *float64 (_gcfdf .Xmin ),_bbdc *float64 (_gcfdf .Ymin ),_bbdc *float64 (_gcfdf .Xmax ),_bbdc *float64 (_gcfdf .Ymax )});_bfefg .ItalicAngle =_aff .MakeFloat (_gcfdf .ItalicAngle );_bfefg .MissingWidth =_aff .MakeFloat (_bbdc *float64 (_gcfdf .Widths [0])); -_fgfc ,_bcdfe :=_aff .MakeStream (_dcdg ,_aff .NewFlateEncoder ());if _bcdfe !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074o\u0020m\u0061\u006b\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_bcdfe ); -return nil ,_bcdfe ;};_fgfc .PdfObjectDictionary .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_aff .MakeInteger (int64 (len (_dcdg ))));_bfefg .FontFile2 =_fgfc ;if _gcfdf .Bold {_bfefg .StemV =_aff .MakeInteger (120);}else {_bfefg .StemV =_aff .MakeInteger (70); -};_fafdb :=_gffbb ;if _gcfdf .IsFixedPitch {_fafdb |=_egde ;};if _gcfdf .ItalicAngle !=0{_fafdb |=_degcc ;};_bfefg .Flags =_aff .MakeInteger (int64 (_fafdb ));_egfc ._ggca =_bfefg ;_ggdga :=&PdfFont {_gebd :_egfc };return _ggdga ,nil ;}; +// ToPdfObject returns colorspace in a PDF object format [name dictionary] +func (_bcff *PdfColorspaceLab )ToPdfObject ()_dg .PdfObject {_ccg :=_dg .MakeArray ();_ccg .Append (_dg .MakeName ("\u004c\u0061\u0062"));_gacb :=_dg .MakeDict ();if _bcff .WhitePoint !=nil {_bdggd :=_dg .MakeArray (_dg .MakeFloat (_bcff .WhitePoint [0]),_dg .MakeFloat (_bcff .WhitePoint [1]),_dg .MakeFloat (_bcff .WhitePoint [2])); +_gacb .Set ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074",_bdggd );}else {_ag .Log .Error ("\u004c\u0061\u0062: \u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0057h\u0069t\u0065P\u006fi\u006e\u0074\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029"); +};if _bcff .BlackPoint !=nil {_geeec :=_dg .MakeArray (_dg .MakeFloat (_bcff .BlackPoint [0]),_dg .MakeFloat (_bcff .BlackPoint [1]),_dg .MakeFloat (_bcff .BlackPoint [2]));_gacb .Set ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074",_geeec ); +};if _bcff .Range !=nil {_afge :=_dg .MakeArray (_dg .MakeFloat (_bcff .Range [0]),_dg .MakeFloat (_bcff .Range [1]),_dg .MakeFloat (_bcff .Range [2]),_dg .MakeFloat (_bcff .Range [3]));_gacb .Set ("\u0052\u0061\u006eg\u0065",_afge );};_ccg .Append (_gacb ); +if _bcff ._aadb !=nil {_bcff ._aadb .PdfObject =_ccg ;return _bcff ._aadb ;};return _ccg ;}; -// NewPdfActionImportData returns a new "import data" action. -func NewPdfActionImportData ()*PdfActionImportData {_cgd :=NewPdfAction ();_aad :=&PdfActionImportData {};_aad .PdfAction =_cgd ;_cgd .SetContext (_aad );return _aad ;}; +// ToPdfObject converts rectangle to a PDF object. +func (_cggga *PdfRectangle )ToPdfObject ()_dg .PdfObject {return _dg .MakeArray (_dg .MakeFloat (_cggga .Llx ),_dg .MakeFloat (_cggga .Lly ),_dg .MakeFloat (_cggga .Urx ),_dg .MakeFloat (_cggga .Ury ));}; -// HasExtGState checks if ExtGState name is available. -func (_becab *PdfPage )HasExtGState (name _aff .PdfObjectName )bool {if _becab .Resources ==nil {return false ;};if _becab .Resources .ExtGState ==nil {return false ;};_cddfd ,_egabg :=_aff .TraceToDirectObject (_becab .Resources .ExtGState ).(*_aff .PdfObjectDictionary ); -if !_egabg {_adg .Log .Debug ("\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0045\u0078t\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064i\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u003a\u0020\u0025\u0076",_aff .TraceToDirectObject (_becab .Resources .ExtGState )); -return false ;};_ddbcd :=_cddfd .Get (name );_deffc :=_ddbcd !=nil ;return _deffc ;}; +// GetXObjectFormByName returns the XObjectForm with the specified name from the +// page resources, if it exists. +func (_bggcd *PdfPageResources )GetXObjectFormByName (keyName _dg .PdfObjectName )(*XObjectForm ,error ){_fgcbda ,_ggcf :=_bggcd .GetXObjectByName (keyName );if _fgcbda ==nil {return nil ,nil ;};if _ggcf !=XObjectTypeForm {return nil ,_bf .New ("\u006e\u006f\u0074\u0020\u0061\u0020\u0066\u006f\u0072\u006d"); +};_dggc ,_gecfc :=NewXObjectFormFromStream (_fgcbda );if _gecfc !=nil {return nil ,_gecfc ;};return _dggc ,nil ;}; -// PdfFunction interface represents the common methods of a function in PDF. -type PdfFunction interface{Evaluate ([]float64 )([]float64 ,error );ToPdfObject ()_aff .PdfObject ;}; +// GetOutlinesFlattened returns a flattened list of tree nodes and titles. +// NOTE: for most use cases, it is recommended to use the high-level GetOutlines +// method instead, which also provides information regarding the destination +// of the outline items. +func (_dffda *PdfReader )GetOutlinesFlattened ()([]*PdfOutlineTreeNode ,[]string ,error ){var _gebfa []*PdfOutlineTreeNode ;var _cfaf []string ;var _cdagc func (*PdfOutlineTreeNode ,*[]*PdfOutlineTreeNode ,*[]string ,int );_cdagc =func (_cbgcc *PdfOutlineTreeNode ,_fgfae *[]*PdfOutlineTreeNode ,_abebg *[]string ,_bdefg int ){if _cbgcc ==nil {return ; +};if _cbgcc ._baddf ==nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020M\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006e\u006fd\u0065\u002e\u0063o\u006et\u0065\u0078\u0074");return ;};_dcegc ,_fgfad :=_cbgcc ._baddf .(*PdfOutlineItem );if _fgfad {*_fgfae =append (*_fgfae ,&_dcegc .PdfOutlineTreeNode ); +_gbafg :=_ga .Repeat ("\u0020",_bdefg *2)+_dcegc .Title .Decoded ();*_abebg =append (*_abebg ,_gbafg );};if _cbgcc .First !=nil {_cdefg :=_ga .Repeat ("\u0020",_bdefg *2)+"\u002b";*_abebg =append (*_abebg ,_cdefg );_cdagc (_cbgcc .First ,_fgfae ,_abebg ,_bdefg +1); +};if _fgfad &&_dcegc .Next !=nil {_cdagc (_dcegc .Next ,_fgfae ,_abebg ,_bdefg );};};_cdagc (_dffda ._fcfc ,&_gebfa ,&_cfaf ,0);return _gebfa ,_cfaf ,nil ;}; -// PdfActionGoToR represents a GoToR action. -type PdfActionGoToR struct{*PdfAction ;F *PdfFilespec ;D _aff .PdfObject ;NewWindow _aff .PdfObject ;}; +// ToPdfObject returns the PDF representation of the colorspace. +func (_gfeeb *PdfColorspaceDeviceCMYK )ToPdfObject ()_dg .PdfObject {return _dg .MakeName ("\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b");};func (_gedf *PdfReader )newPdfAnnotationStampFromDict (_cdgb *_dg .PdfObjectDictionary )(*PdfAnnotationStamp ,error ){_afbd :=PdfAnnotationStamp {}; +_beee ,_bcg :=_gedf .newPdfAnnotationMarkupFromDict (_cdgb );if _bcg !=nil {return nil ,_bcg ;};_afbd .PdfAnnotationMarkup =_beee ;_afbd .Name =_cdgb .Get ("\u004e\u0061\u006d\u0065");return &_afbd ,nil ;}; -// NewPdfFontFromTTFFile loads a TTF font file and returns a PdfFont type -// that can be used in text styling functions. -// Uses a WinAnsiTextEncoder and loads only character codes 32-255. -// NOTE: For composite fonts such as used in symbolic languages, use NewCompositePdfFontFromTTFFile. -func NewPdfFontFromTTFFile (filePath string )(*PdfFont ,error ){_ccgf ,_ddafa :=_db .Open (filePath );if _ddafa !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0072\u0065\u0061\u0064\u0069\u006e\u0067\u0020T\u0054F\u0020\u0066\u006f\u006e\u0074\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0076",_ddafa ); -return nil ,_ddafa ;};defer _ccgf .Close ();return NewPdfFontFromTTF (_ccgf );};type pdfCIDFontType2 struct{fontCommon ;_eaacd *_aff .PdfIndirectObject ;_begcd _eee .TextEncoder ; +// Evaluate runs the function on the passed in slice and returns the results. +func (_cgbfc *PdfFunctionType2 )Evaluate (x []float64 )([]float64 ,error ){if len (x )!=1{_ag .Log .Error ("\u004f\u006e\u006c\u0079 o\u006e\u0065\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0061\u006c\u006c\u006f\u0077e\u0064");return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b"); +};_cecae :=[]float64 {0.0};if _cgbfc .C0 !=nil {_cecae =_cgbfc .C0 ;};_gagbb :=[]float64 {1.0};if _cgbfc .C1 !=nil {_gagbb =_cgbfc .C1 ;};var _ccacf []float64 ;for _fbfe :=0;_fbfe < len (_cecae );_fbfe ++{_cfee :=_cecae [_fbfe ]+_cg .Pow (x [0],_cgbfc .N )*(_gagbb [_fbfe ]-_cecae [_fbfe ]); +_ccacf =append (_ccacf ,_cfee );};return _ccacf ,nil ;}; -// Table 117 – Entries in a CIDFont dictionary (page 269) -// Dictionary that defines the character collection of the CIDFont (required). -// See Table 116. -CIDSystemInfo *_aff .PdfObjectDictionary ; +// ToPdfObject returns the PDF representation of the pattern. +func (_gfed *PdfPattern )ToPdfObject ()_dg .PdfObject {_gcfbc :=_gfed .getDict ();_gcfbc .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_gcfbc .Set ("P\u0061\u0074\u0074\u0065\u0072\u006e\u0054\u0079\u0070\u0065",_dg .MakeInteger (_gfed .PatternType )); +return _gfed ._eacce ;}; -// Glyph metrics fields (optional). -DW _aff .PdfObject ;W _aff .PdfObject ;DW2 _aff .PdfObject ;W2 _aff .PdfObject ; +// PdfFieldChoice represents a choice field which includes scrollable list boxes and combo boxes. +type PdfFieldChoice struct{*PdfField ;Opt *_dg .PdfObjectArray ;TI *_dg .PdfObjectInteger ;I *_dg .PdfObjectArray ;}; -// CIDs to glyph indices mapping (optional). -CIDToGIDMap _aff .PdfObject ;_egdcef map[_eee .CharCode ]float64 ;_ceageb float64 ;_aedcf map[rune ]int ;};func _ggceb (_bcfg _aff .PdfObject )(*PdfColorspaceICCBased ,error ){_bgee :=&PdfColorspaceICCBased {};if _gdba ,_eaaa :=_bcfg .(*_aff .PdfIndirectObject ); -_eaaa {_bgee ._ecfc =_gdba ;};_bcfg =_aff .TraceToDirectObject (_bcfg );_ccbac ,_ccca :=_bcfg .(*_aff .PdfObjectArray );if !_ccca {return nil ,_e .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _ccbac .Len ()!=2{return nil ,_e .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020c\u006f\u006c\u006fr\u0073p\u0061\u0063\u0065"); -};_bcfg =_aff .TraceToDirectObject (_ccbac .Get (0));_fafb ,_ccca :=_bcfg .(*_aff .PdfObjectName );if !_ccca {return nil ,_e .Errorf ("\u0049\u0043\u0043B\u0061\u0073\u0065\u0064 \u006e\u0061\u006d\u0065\u0020\u006e\u006ft\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -};if *_fafb !="\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064"{return nil ,_e .Errorf ("\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0049\u0043\u0043\u0042a\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073p\u0061\u0063\u0065");};_bcfg =_ccbac .Get (1); -_abcbe ,_ccca :=_aff .GetStream (_bcfg );if !_ccca {_adg .Log .Error ("I\u0043\u0043\u0042\u0061\u0073\u0065d\u0020\u006e\u006f\u0074\u0020\u0070o\u0069\u006e\u0074\u0069\u006e\u0067\u0020t\u006f\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020%\u0054",_bcfg ); -return nil ,_e .Errorf ("\u0049\u0043\u0043Ba\u0073\u0065\u0064\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_agge :=_abcbe .PdfObjectDictionary ;_fdcg ,_ccca :=_agge .Get ("\u004e").(*_aff .PdfObjectInteger ); -if !_ccca {return nil ,_e .Errorf ("I\u0043\u0043\u0042\u0061\u0073\u0065d\u0020\u006d\u0069\u0073\u0073\u0069n\u0067\u0020\u004e\u0020\u0066\u0072\u006fm\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0064\u0069c\u0074");};if *_fdcg !=1&&*_fdcg !=3&&*_fdcg !=4{return nil ,_e .Errorf ("\u0049\u0043\u0043\u0042\u0061s\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065 \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004e\u0020\u0028\u006e\u006f\u0074\u0020\u0031\u002c\u0033\u002c\u0034\u0029"); -};_bgee .N =int (*_fdcg );if _abdfd :=_agge .Get ("\u0041l\u0074\u0065\u0072\u006e\u0061\u0074e");_abdfd !=nil {_aaab ,_fgaf :=NewPdfColorspaceFromPdfObject (_abdfd );if _fgaf !=nil {return nil ,_fgaf ;};_bgee .Alternate =_aaab ;};if _fegg :=_agge .Get ("\u0052\u0061\u006eg\u0065"); -_fegg !=nil {_fegg =_aff .TraceToDirectObject (_fegg );_dbac ,_babf :=_fegg .(*_aff .PdfObjectArray );if !_babf {return nil ,_e .Errorf ("I\u0043\u0043\u0042\u0061\u0073\u0065d\u0020\u0052\u0061\u006e\u0067\u0065\u0020\u006e\u006ft\u0020\u0061\u006e \u0061r\u0072\u0061\u0079"); -};if _dbac .Len ()!=2*_bgee .N {return nil ,_e .Errorf ("\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0052\u0061\u006e\u0067e\u0020\u0077\u0072\u006f\u006e\u0067 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0065\u006c\u0065m\u0065\u006e\u0074\u0073"); -};_efb ,_fcab :=_dbac .GetAsFloat64Slice ();if _fcab !=nil {return nil ,_fcab ;};_bgee .Range =_efb ;}else {_bgee .Range =make ([]float64 ,2*_bgee .N );for _bgf :=0;_bgf < _bgee .N ;_bgf ++{_bgee .Range [2*_bgf ]=0.0;_bgee .Range [2*_bgf +1]=1.0;};};if _cbeb :=_agge .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"); -_cbeb !=nil {_cdff ,_ddef :=_cbeb .(*_aff .PdfObjectStream );if !_ddef {return nil ,_e .Errorf ("\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u004de\u0074\u0061\u0064\u0061\u0074\u0061\u0020n\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d"); -};_bgee .Metadata =_cdff ;};_gebg ,_eeaga :=_aff .DecodeStream (_abcbe );if _eeaga !=nil {return nil ,_eeaga ;};_bgee .Data =_gebg ;_bgee ._abcbf =_abcbe ;return _bgee ,nil ;};func _begg (_fcfbf _aff .PdfObject )(*PdfColorspaceSpecialPattern ,error ){_adg .Log .Trace ("\u004e\u0065\u0077\u0020\u0050\u0061\u0074\u0074\u0065\u0072n\u0020\u0043\u0053\u0020\u0066\u0072\u006fm\u0020\u006f\u0062\u006a\u003a\u0020\u0025\u0073\u0020\u0025\u0054",_fcfbf .String (),_fcfbf ); -_dccc :=NewPdfColorspaceSpecialPattern ();if _dgcde ,_ccage :=_fcfbf .(*_aff .PdfIndirectObject );_ccage {_dccc ._ccd =_dgcde ;};_fcfbf =_aff .TraceToDirectObject (_fcfbf );if _bbca ,_ffaa :=_fcfbf .(*_aff .PdfObjectName );_ffaa {if *_bbca !="\u0050a\u0074\u0074\u0065\u0072\u006e"{return nil ,_e .Errorf ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u006e\u0061\u006d\u0065"); -};return _dccc ,nil ;};_bddf ,_egbg :=_fcfbf .(*_aff .PdfObjectArray );if !_egbg {_adg .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061t\u0074\u0065\u0072\u006e\u0020\u0043\u0053 \u004f\u0062\u006a\u0065\u0063\u0074\u003a\u0020\u0025\u0023\u0076",_fcfbf ); -return nil ,_e .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0050\u0061\u0074\u0074e\u0072n\u0020C\u0053\u0020\u006f\u0062\u006a\u0065\u0063t");};if _bddf .Len ()!=1&&_bddf .Len ()!=2{_adg .Log .Error ("\u0049\u006ev\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0043\u0053\u0020\u0061\u0072\u0072\u0061\u0079\u003a %\u0023\u0076",_bddf ); -return nil ,_e .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0074\u0074\u0065r\u006e\u0020\u0043\u0053\u0020\u0061\u0072\u0072\u0061\u0079");};_fcfbf =_bddf .Get (0);if _dfgg ,_ccfe :=_fcfbf .(*_aff .PdfObjectName );_ccfe {if *_dfgg !="\u0050a\u0074\u0074\u0065\u0072\u006e"{_adg .Log .Error ("\u0049\u006e\u0076al\u0069\u0064\u0020\u0050\u0061\u0074\u0074\u0065\u0072n\u0020C\u0053 \u0061r\u0072\u0061\u0079\u0020\u006e\u0061\u006d\u0065\u003a\u0020\u0025\u0023\u0076",_dfgg ); -return nil ,_e .Errorf ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u006e\u0061\u006d\u0065");};};if _bddf .Len ()> 1{_fcfbf =_bddf .Get (1);_fcfbf =_aff .TraceToDirectObject (_fcfbf );_afdge ,_abfg :=NewPdfColorspaceFromPdfObject (_fcfbf );if _abfg !=nil {return nil ,_abfg ; -};_dccc .UnderlyingCS =_afdge ;};_adg .Log .Trace ("R\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0077i\u0074\u0068\u0020\u0075\u006e\u0064\u0065\u0072\u006c\u0079in\u0067\u0020\u0063s\u003a \u0025\u0054",_dccc .UnderlyingCS ); -return _dccc ,nil ;}; +// NewCompliancePdfReader creates a PdfReader or an input io.ReadSeeker that during reading will scan the files for the +// metadata details. It could be used for the PDF standard implementations like PDF/A or PDF/X. +// NOTE: This implementation is in experimental development state. +// Keep in mind that it might change in the subsequent minor versions. +func NewCompliancePdfReader (rs _cf .ReadSeeker )(*CompliancePdfReader ,error ){const _dabd ="\u006d\u006f\u0064\u0065l\u003a\u004e\u0065\u0077\u0043\u006f\u006d\u0070\u006c\u0069a\u006ec\u0065\u0050\u0064\u0066\u0052\u0065\u0061d\u0065\u0072";_fabcg ,_adebg :=_dcdd (rs ,&ReaderOpts {ComplianceMode :true },false ,_dabd ); +if _adebg !=nil {return nil ,_adebg ;};return &CompliancePdfReader {PdfReader :_fabcg },nil ;}; -// PdfInfo holds document information that will overwrite -// document information global variables defined above. -type PdfInfo struct{Title *_aff .PdfObjectString ;Author *_aff .PdfObjectString ;Subject *_aff .PdfObjectString ;Keywords *_aff .PdfObjectString ;Creator *_aff .PdfObjectString ;Producer *_aff .PdfObjectString ;CreationDate *PdfDate ;ModifiedDate *PdfDate ; -Trapped *_aff .PdfObjectName ;_cgbc *_aff .PdfObjectDictionary ;}; +// NewPdfActionURI returns a new "Uri" action. +func NewPdfActionURI ()*PdfActionURI {_dga :=NewPdfAction ();_afd :=&PdfActionURI {};_afd .PdfAction =_dga ;_dga .SetContext (_afd );return _afd ;}; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// components. The slice should contain a single PdfObjectFloat element. -func (_ebced *PdfColorspaceSpecialIndexed )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_dag ,_afdb :=_aff .GetNumbersAsFloat (objects ); -if _afdb !=nil {return nil ,_afdb ;};return _ebced .ColorFromFloats (_dag );};var _abcgc =map[string ]struct{}{"\u0054\u0069\u0074l\u0065":{},"\u0041\u0075\u0074\u0068\u006f\u0072":{},"\u0053u\u0062\u006a\u0065\u0063\u0074":{},"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073":{},"\u0043r\u0065\u0061\u0074\u006f\u0072":{},"\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072":{},"\u0054r\u0061\u0070\u0070\u0065\u0064":{},"\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065":{},"\u004do\u0064\u0044\u0061\u0074\u0065":{}}; +// Permissions specify a permissions dictionary (PDF 1.5). +// (Section 12.8.4, Table 258 - Entries in a permissions dictionary p. 477 in PDF32000_2008). +type Permissions struct{DocMDP *PdfSignature ;_fbdaa *_dg .PdfObjectDictionary ;}; + +// ParserMetadata gets the parser metadata. +func (_adba *CompliancePdfReader )ParserMetadata ()_dg .ParserMetadata {if _adba ._acgf ==(_dg .ParserMetadata {}){_adba ._acgf ,_ =_adba ._baad .ParserMetadata ();};return _adba ._acgf ;};func _gfebd (_dcffb _dg .PdfObject )(string ,error ){_dcffb =_dg .TraceToDirectObject (_dcffb ); +switch _gffbd :=_dcffb .(type ){case *_dg .PdfObjectString :return _gffbd .Str (),nil ;case *_dg .PdfObjectStream :_cfdda ,_ebdf :=_dg .DecodeStream (_gffbd );if _ebdf !=nil {return "",_ebdf ;};return string (_cfdda ),nil ;};return "",_b .Errorf ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072e\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0068\u006f\u006c\u0064\u0065\u0072\u0020\u0028\u0025\u0054\u0029",_dcffb ); +}; +// PdfAnnotationWatermark represents Watermark annotations. +// (Section 12.5.6.22). +type PdfAnnotationWatermark struct{*PdfAnnotation ;FixedPrint _dg .PdfObject ;}; -// ToPdfObject implements interface PdfModel. -func (_egcf *PdfAnnotationCaret )ToPdfObject ()_aff .PdfObject {_egcf .PdfAnnotation .ToPdfObject ();_cbfa :=_egcf ._ccfb ;_bgag :=_cbfa .PdfObject .(*_aff .PdfObjectDictionary );_egcf .PdfAnnotationMarkup .appendToPdfDictionary (_bgag );_bgag .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0043\u0061\u0072e\u0074")); -_bgag .SetIfNotNil ("\u0052\u0044",_egcf .RD );_bgag .SetIfNotNil ("\u0053\u0079",_egcf .Sy );return _cbfa ;};func (_gdb *PdfReader )newPdfAnnotationLinkFromDict (_cdge *_aff .PdfObjectDictionary )(*PdfAnnotationLink ,error ){_edgd :=PdfAnnotationLink {}; -_edgd .A =_cdge .Get ("\u0041");_edgd .Dest =_cdge .Get ("\u0044\u0065\u0073\u0074");_edgd .H =_cdge .Get ("\u0048");_edgd .PA =_cdge .Get ("\u0050\u0041");_edgd .QuadPoints =_cdge .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");_edgd .BS =_cdge .Get ("\u0042\u0053"); -return &_edgd ,nil ;}; +// ToPdfObject returns the PDF representation of the DSS dictionary. +func (_gfbd *DSS )ToPdfObject ()_dg .PdfObject {_bgeg :=_gfbd ._agdcg .PdfObject .(*_dg .PdfObjectDictionary );_bgeg .Clear ();_gaeb :=_dg .MakeDict ();for _gcgd ,_dcfe :=range _gfbd .VRI {_gaeb .Set (*_dg .MakeName (_gcgd ),_dcfe .ToPdfObject ());};_bgeg .SetIfNotNil ("\u0043\u0065\u0072t\u0073",_fecee (_gfbd .Certs )); +_bgeg .SetIfNotNil ("\u004f\u0043\u0053P\u0073",_fecee (_gfbd .OCSPs ));_bgeg .SetIfNotNil ("\u0043\u0052\u004c\u0073",_fecee (_gfbd .CRLs ));_bgeg .Set ("\u0056\u0052\u0049",_gaeb );return _gfbd ._agdcg ;};func _ggbff (_fcgd *fontCommon )*pdfCIDFontType0 {return &pdfCIDFontType0 {fontCommon :*_fcgd }}; -// PdfBorderEffect represents a PDF border effect. -type PdfBorderEffect struct{S *BorderEffect ;I *float64 ;}; -// Y returns the value of the yellow component of the color. -func (_beee *PdfColorDeviceCMYK )Y ()float64 {return _beee [2]}; +// NewPdfAnnotationLine returns a new line annotation. +func NewPdfAnnotationLine ()*PdfAnnotationLine {_adbda :=NewPdfAnnotation ();_dba :=&PdfAnnotationLine {};_dba .PdfAnnotation =_adbda ;_dba .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_adbda .SetContext (_dba );return _dba ;};const (_gafad =0x00001;_agcf =0x00002; +_bbfd =0x00004;_caaca =0x00008;_gbaba =0x00020;_bfeb =0x00040;_ggee =0x10000;_gabe =0x20000;_edgfe =0x40000;); -// ToPdfObject converts colorspace to a PDF object. [/Indexed base hival lookup] -func (_eeeb *PdfColorspaceSpecialIndexed )ToPdfObject ()_aff .PdfObject {_gdfc :=_aff .MakeArray (_aff .MakeName ("\u0049n\u0064\u0065\u0078\u0065\u0064"));_gdfc .Append (_eeeb .Base .ToPdfObject ());_gdfc .Append (_aff .MakeInteger (int64 (_eeeb .HiVal ))); -_gdfc .Append (_eeeb .Lookup );if _eeeb ._efeca !=nil {_eeeb ._efeca .PdfObject =_gdfc ;return _eeeb ._efeca ;};return _gdfc ;}; +// RunesToCharcodeBytes maps the provided runes to charcode bytes and it +// returns the resulting slice of bytes, along with the number of runes which +// could not be converted. If the number of misses is 0, all runes were +// successfully converted. +func (_efgde *PdfFont )RunesToCharcodeBytes (data []rune )([]byte ,int ){var _adcd []_bd .TextEncoder ;var _ecac _bd .CMapEncoder ;if _fdfaf :=_efgde .baseFields ()._ecfb ;_fdfaf !=nil {_ecac =_bd .NewCMapEncoder ("",nil ,_fdfaf );};_dafca :=_efgde .Encoder (); +if _dafca !=nil {switch _befa :=_dafca .(type ){case _bd .SimpleEncoder :_abbcc :=_befa .BaseName ();if _ ,_aedc :=_eabb [_abbcc ];_aedc {_adcd =append (_adcd ,_dafca );};};};if len (_adcd )==0{if _efgde .baseFields ()._ecfb !=nil {_adcd =append (_adcd ,_ecac ); +};if _dafca !=nil {_adcd =append (_adcd ,_dafca );};};var _bgac _bc .Buffer ;var _egaeb int ;for _ ,_cgfd :=range data {var _ffcda bool ;for _ ,_cabbf :=range _adcd {if _gbbga :=_cabbf .Encode (string (_cgfd ));len (_gbbga )> 0{_bgac .Write (_gbbga );_ffcda =true ; +break ;};};if !_ffcda {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020f\u0061\u0069\u006ce\u0064\u0020\u0074\u006f \u006d\u0061\u0070\u0020\u0072\u0075\u006e\u0065\u0020\u0060\u0025\u002b\u0071\u0060\u0020\u0074\u006f\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065",_cgfd ); +_egaeb ++;};};if _egaeb !=0{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0061\u006cl\u0020\u0072\u0075\u006e\u0065\u0073\u0020\u0074\u006f\u0020\u0063\u0068\u0061\u0072c\u006fd\u0065\u0073\u002e\u000a"+"\u0009\u006e\u0075\u006d\u0052\u0075\u006e\u0065\u0073\u003d\u0025d\u0020\u006e\u0075\u006d\u004d\u0069\u0073\u0073\u0065\u0073=\u0025\u0064\u000a"+"\t\u0066\u006f\u006e\u0074=%\u0073 \u0065\u006e\u0063\u006f\u0064e\u0072\u0073\u003d\u0025\u002b\u0076",len (data ),_egaeb ,_efgde ,_adcd ); +};return _bgac .Bytes (),_egaeb ;}; -// PdfShadingType5 is a Lattice-form Gouraud-shaded triangle mesh. -type PdfShadingType5 struct{*PdfShading ;BitsPerCoordinate *_aff .PdfObjectInteger ;BitsPerComponent *_aff .PdfObjectInteger ;VerticesPerRow *_aff .PdfObjectInteger ;Decode *_aff .PdfObjectArray ;Function []PdfFunction ;}; +// NewPdfAnnotationWidget returns an initialized annotation widget. +func NewPdfAnnotationWidget ()*PdfAnnotationWidget {_ceec :=NewPdfAnnotation ();_bbbb :=&PdfAnnotationWidget {};_bbbb .PdfAnnotation =_ceec ;_ceec .SetContext (_bbbb );return _bbbb ;};func (_fdgg *pdfCIDFontType0 )baseFields ()*fontCommon {return &_fdgg .fontCommon }; -// MergePageWith appends page content to source Pdf file page content. -func (_effc *PdfAppender )MergePageWith (pageNum int ,page *PdfPage )error {_ecbf :=pageNum -1;var _ddag *PdfPage ;for _fdga ,_aded :=range _effc ._bbgg {if _fdga ==_ecbf {_ddag =_aded ;};};if _ddag ==nil {return _e .Errorf ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0073o\u0075\u0072\u0063\u0065\u0020\u0064o\u0063\u0075\u006de\u006e\u0074",pageNum ); -};if _ddag ._fage !=nil &&_ddag ._fage .GetParser ()==_effc ._dafgd ._gaece {_ddag =_ddag .Duplicate ();_effc ._bbgg [_ecbf ]=_ddag ;};page =page .Duplicate ();_aefbgd (page );_dbcg :=_gca (_ddag );_ebf :=_gca (page );_dgfd :=make (map[_aff .PdfObjectName ]_aff .PdfObjectName ); -for _efeff :=range _ebf {if _ ,_eaeg :=_dbcg [_efeff ];_eaeg {for _becg :=1;true ;_becg ++{_gaaa :=_aff .PdfObjectName (string (_efeff )+_eed .Itoa (_becg ));if _ ,_geebf :=_dbcg [_gaaa ];!_geebf {_dgfd [_efeff ]=_gaaa ;break ;};};};};_gcdc ,_cdad :=page .GetContentStreams (); -if _cdad !=nil {return _cdad ;};_egdc ,_cdad :=_ddag .GetContentStreams ();if _cdad !=nil {return _cdad ;};for _fdagdd ,_ffbd :=range _gcdc {for _eaa ,_baba :=range _dgfd {_ffbd =_ba .Replace (_ffbd ,"\u002f"+string (_eaa ),"\u002f"+string (_baba ),-1); -};_gcdc [_fdagdd ]=_ffbd ;};_egdc =append (_egdc ,_gcdc ...);if _bcgf :=_ddag .SetContentStreams (_egdc ,_aff .NewFlateEncoder ());_bcgf !=nil {return _bcgf ;};_ddag ._bbgb =append (_ddag ._bbgb ,page ._bbgb ...);if _ddag .Resources ==nil {_ddag .Resources =NewPdfPageResources (); -};if page .Resources !=nil {_ddag .Resources .Font =_effc .mergeResources (_ddag .Resources .Font ,page .Resources .Font ,_dgfd );_ddag .Resources .XObject =_effc .mergeResources (_ddag .Resources .XObject ,page .Resources .XObject ,_dgfd );_ddag .Resources .Properties =_effc .mergeResources (_ddag .Resources .Properties ,page .Resources .Properties ,_dgfd ); -if _ddag .Resources .ProcSet ==nil {_ddag .Resources .ProcSet =page .Resources .ProcSet ;};_ddag .Resources .Shading =_effc .mergeResources (_ddag .Resources .Shading ,page .Resources .Shading ,_dgfd );_ddag .Resources .ExtGState =_effc .mergeResources (_ddag .Resources .ExtGState ,page .Resources .ExtGState ,_dgfd ); -};_adff ,_cdad :=_ddag .GetMediaBox ();if _cdad !=nil {return _cdad ;};_ebgdg ,_cdad :=page .GetMediaBox ();if _cdad !=nil {return _cdad ;};var _dfgd bool ;if _adff .Llx > _ebgdg .Llx {_adff .Llx =_ebgdg .Llx ;_dfgd =true ;};if _adff .Lly > _ebgdg .Lly {_adff .Lly =_ebgdg .Lly ; -_dfgd =true ;};if _adff .Urx < _ebgdg .Urx {_adff .Urx =_ebgdg .Urx ;_dfgd =true ;};if _adff .Ury < _ebgdg .Ury {_adff .Ury =_ebgdg .Ury ;_dfgd =true ;};if _dfgd {_ddag .MediaBox =_adff ;};return nil ;};func _efbb (_beca _aff .PdfObject )(*PdfFunctionType3 ,error ){_ebdbg :=&PdfFunctionType3 {}; -var _gabdd *_aff .PdfObjectDictionary ;if _ddce ,_daac :=_beca .(*_aff .PdfIndirectObject );_daac {_gggfd ,_cbdfa :=_ddce .PdfObject .(*_aff .PdfObjectDictionary );if !_cbdfa {return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); -};_ebdbg ._cabf =_ddce ;_gabdd =_gggfd ;}else if _ceca ,_dcce :=_beca .(*_aff .PdfObjectDictionary );_dcce {_gabdd =_ceca ;}else {return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_addec ,_bgaba :=_aff .TraceToDirectObject (_gabdd .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_aff .PdfObjectArray ); -if !_bgaba {_adg .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};if _addec .Len ()!=2{_adg .Log .Error ("\u0044\u006f\u006d\u0061\u0069\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");return nil ,_g .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065");};_dcdde ,_dbdbb :=_addec .ToFloat64Array (); -if _dbdbb !=nil {return nil ,_dbdbb ;};_ebdbg .Domain =_dcdde ;_addec ,_bgaba =_aff .TraceToDirectObject (_gabdd .Get ("\u0052\u0061\u006eg\u0065")).(*_aff .PdfObjectArray );if _bgaba {if _addec .Len ()< 0||_addec .Len ()%2!=0{return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); -};_gfede ,_ggdbb :=_addec .ToFloat64Array ();if _ggdbb !=nil {return nil ,_ggdbb ;};_ebdbg .Range =_gfede ;};_addec ,_bgaba =_aff .TraceToDirectObject (_gabdd .Get ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006es")).(*_aff .PdfObjectArray );if !_bgaba {_adg .Log .Error ("\u0046\u0075\u006ect\u0069\u006f\u006e\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064"); -return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_ebdbg .Functions =[]PdfFunction {}; -for _ ,_bdcef :=range _addec .Elements (){_baada ,_cdfb :=_fdfeg (_bdcef );if _cdfb !=nil {return nil ,_cdfb ;};_ebdbg .Functions =append (_ebdbg .Functions ,_baada );};_addec ,_bgaba =_aff .TraceToDirectObject (_gabdd .Get ("\u0042\u006f\u0075\u006e\u0064\u0073")).(*_aff .PdfObjectArray ); -if !_bgaba {_adg .Log .Error ("B\u006fu\u006e\u0064\u0073\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};_eegd ,_dbdbb :=_addec .ToFloat64Array ();if _dbdbb !=nil {return nil ,_dbdbb ;};_ebdbg .Bounds =_eegd ;if len (_ebdbg .Bounds )!=len (_ebdbg .Functions )-1{_adg .Log .Error ("B\u006f\u0075\u006e\u0064\u0073\u0020\u0028\u0025\u0064)\u0020\u0061\u006e\u0064\u0020\u006e\u0075m \u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0073\u0020\u0028\u0025\u0064\u0029 n\u006f\u0074 \u006d\u0061\u0074\u0063\u0068\u0069\u006e\u0067",len (_ebdbg .Bounds ),len (_ebdbg .Functions )); -return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_addec ,_bgaba =_aff .TraceToDirectObject (_gabdd .Get ("\u0045\u006e\u0063\u006f\u0064\u0065")).(*_aff .PdfObjectArray );if !_bgaba {_adg .Log .Error ("E\u006ec\u006f\u0064\u0065\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064"); -return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_efged ,_dbdbb :=_addec .ToFloat64Array (); -if _dbdbb !=nil {return nil ,_dbdbb ;};_ebdbg .Encode =_efged ;if len (_ebdbg .Encode )!=2*len (_ebdbg .Functions ){_adg .Log .Error ("\u004c\u0065\u006e\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0020\u0028\u0025\u0064\u0029 \u0061\u006e\u0064\u0020\u006e\u0075\u006d\u0020\u0066\u0075\u006e\u0063\u0074i\u006f\u006e\u0073\u0020\u0028\u0025\u0064\u0029\u0020\u006e\u006f\u0074 m\u0061\u0074\u0063\u0068\u0069\u006e\u0067\u0020\u0075\u0070",len (_ebdbg .Encode ),len (_ebdbg .Functions )); -return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};return _ebdbg ,nil ;}; -// GetPreviousRevision returns the previous revision of PdfReader for the Pdf document -func (_cbcde *PdfReader )GetPreviousRevision ()(*PdfReader ,error ){if _cbcde ._gaece .GetRevisionNumber ()==0{return nil ,_g .New ("\u0070\u0072e\u0076\u0069\u006f\u0075\u0073\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0065xi\u0073\u0074"); -};if _ddcga ,_beae :=_cbcde ._gfga [_cbcde ];_beae {return _ddcga ,nil ;};_daabd ,_agcc :=_cbcde ._gaece .GetPreviousRevisionReadSeeker ();if _agcc !=nil {return nil ,_agcc ;};_fbdbe ,_agcc :=_dffg (_daabd ,_cbcde ._edbfa ,_cbcde ._acgad ,"\u006do\u0064\u0065\u006c\u003aG\u0065\u0074\u0050\u0072\u0065v\u0069o\u0075s\u0052\u0065\u0076\u0069\u0073\u0069\u006fn"); -if _agcc !=nil {return nil ,_agcc ;};_cbcde ._ccbga [_cbcde ._gaece .GetRevisionNumber ()-1]=_fbdbe ;_cbcde ._gfga [_cbcde ]=_fbdbe ;_fbdbe ._gfga =_cbcde ._gfga ;return _fbdbe ,nil ;}; +// IsEncrypted returns true if the PDF file is encrypted. +func (_cdgdc *PdfReader )IsEncrypted ()(bool ,error ){return _cdgdc ._baad .IsEncrypted ()}; -// SetXObjectFormByName adds the provided XObjectForm to the page resources. -// The added XObjectForm is identified by the specified name. -func (_cede *PdfPageResources )SetXObjectFormByName (keyName _aff .PdfObjectName ,xform *XObjectForm )error {_ffbgc :=xform .ToPdfObject ().(*_aff .PdfObjectStream );_aadbd :=_cede .SetXObjectByName (keyName ,_ffbgc );return _aadbd ;}; +// SetOCProperties sets the optional content properties. +func (_eaaae *PdfWriter )SetOCProperties (ocProperties _dg .PdfObject )error {_edcee :=_eaaae ._ecdf ;if ocProperties !=nil {_ag .Log .Trace ("\u0053e\u0074\u0074\u0069\u006e\u0067\u0020\u004f\u0043\u0020\u0050\u0072o\u0070\u0065\u0072\u0074\u0069\u0065\u0073\u002e\u002e\u002e"); +_edcee .Set ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073",ocProperties );return _eaaae .addObjects (ocProperties );};return nil ;}; -// SignatureValidationResult defines the response from the signature validation handler. -type SignatureValidationResult struct{ +// AddOutlineTree adds outlines to a PDF file. +func (_ebgd *PdfWriter )AddOutlineTree (outlineTree *PdfOutlineTreeNode ){_ebgd ._cedcg =outlineTree }; -// List of errors when validating the signature. -Errors []string ;IsSigned bool ;IsVerified bool ;IsTrusted bool ;Fields []*PdfField ;Name string ;Date PdfDate ;Reason string ;Location string ;ContactInfo string ;DiffResults *_gf .DiffResults ;IsCrlFound bool ;IsOcspFound bool ; +// String returns a string representation of PdfTransformParamsDocMDP. +func (_fcgdd *PdfTransformParamsDocMDP )String ()string {return _b .Sprintf ("\u0025\u0073\u0020\u0050\u003a\u0020\u0025\u0073\u0020V\u003a\u0020\u0025\u0073",_fcgdd .Type ,_fcgdd .P ,_fcgdd .V );}; -// GeneralizedTime is the time at which the time-stamp token has been created by the TSA (RFC 3161). -GeneralizedTime _f .Time ;}; +// ToGoImage converts the unidoc Image to a golang Image structure. +func (_bdefc *Image )ToGoImage ()(_gd .Image ,error ){_ag .Log .Trace ("\u0043\u006f\u006e\u0076er\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0067\u006f\u0020\u0069\u006d\u0061g\u0065");_feecb ,_adfde :=_fc .NewImage (int (_bdefc .Width ),int (_bdefc .Height ),int (_bdefc .BitsPerComponent ),_bdefc .ColorComponents ,_bdefc .Data ,_bdefc ._dgeb ,_bdefc ._gfbb ); +if _adfde !=nil {return nil ,_adfde ;};return _feecb ,nil ;}; -// OutlineItem represents a PDF outline item dictionary (Table 153 - pp. 376 - 377). -type OutlineItem struct{Title string `json:"title"`;Dest OutlineDest `json:"dest"`;Entries []*OutlineItem `json:"entries,omitempty"`;}; +// NewPdfAnnotation returns an initialized generic PDF annotation model. +func NewPdfAnnotation ()*PdfAnnotation {_dbg :=&PdfAnnotation {};_dbg ._cdf =_dg .MakeIndirectObject (_dg .MakeDict ());return _dbg ;}; -// FieldFlag represents form field flags. Some of the flags can apply to all types of fields whereas other -// flags are specific. -type FieldFlag uint32 ; +// ParsePdfObject parses input pdf object into given output intent. +func (_ggfac *PdfOutputIntent )ParsePdfObject (object _dg .PdfObject )error {_adddg ,_fadfg :=_dg .GetDict (object );if !_fadfg {_ag .Log .Error ("\u0055\u006e\u006bno\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020%\u0054 \u0066o\u0072 \u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0069\u006e\u0074\u0065\u006e\u0074",object ); +return _bf .New ("\u0075\u006e\u006b\u006e\u006fw\u006e\u0020\u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0066\u006f\u0072\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0069\u006e\u0074\u0065\u006e\u0074"); +};_ggfac ._cfaef =_adddg ;_ggfac .Type ,_ =_adddg .GetString ("\u0054\u0079\u0070\u0065");_eggab ,_fadfg :=_adddg .GetString ("\u0053");if _fadfg {switch _eggab {case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411":_ggfac .S =PdfOutputIntentTypeA1 ;case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00412":_ggfac .S =PdfOutputIntentTypeA2 ; +case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00413":_ggfac .S =PdfOutputIntentTypeA3 ;case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00414":_ggfac .S =PdfOutputIntentTypeA4 ;case "\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0058":_ggfac .S =PdfOutputIntentTypeX ; +};};_ggfac .OutputCondition ,_ =_adddg .GetString ("\u004fu\u0074p\u0075\u0074\u0043\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e");_ggfac .OutputConditionIdentifier ,_ =_adddg .GetString ("\u004fu\u0074\u0070\u0075\u0074C\u006f\u006e\u0064\u0069\u0074i\u006fn\u0049d\u0065\u006e\u0074\u0069\u0066\u0069\u0065r"); +_ggfac .RegistryName ,_ =_adddg .GetString ("\u0052\u0065\u0067i\u0073\u0074\u0072\u0079\u004e\u0061\u006d\u0065");_ggfac .Info ,_ =_adddg .GetString ("\u0049\u006e\u0066\u006f");if _fdfbe ,_daeb :=_dg .GetStream (_adddg .Get ("\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072o\u0066\u0069\u006c\u0065")); +_daeb {_ggfac .ColorComponents ,_ =_dg .GetIntVal (_fdfbe .Get ("\u004e"));_feagg ,_agaeb :=_dg .DecodeStream (_fdfbe );if _agaeb !=nil {return _agaeb ;};_ggfac .DestOutputProfile =_feagg ;};return nil ;}; -// BytesToCharcodes converts the bytes in a PDF string to character codes. -func (_cefc *PdfFont )BytesToCharcodes (data []byte )[]_eee .CharCode {_adg .Log .Trace ("\u0042\u0079\u0074es\u0054\u006f\u0043\u0068\u0061\u0072\u0063\u006f\u0064e\u0073:\u0020d\u0061t\u0061\u003d\u005b\u0025\u0020\u0030\u0032\u0078\u005d\u003d\u0025\u0023\u0071",data ,data ); -if _dege ,_cfcgac :=_cefc ._gebd .(*pdfFontType0 );_cfcgac &&_dege ._baedc !=nil {if _cdcfga ,_bffdc :=_dege .bytesToCharcodes (data );_bffdc {return _cdcfga ;};};var (_ffad =make ([]_eee .CharCode ,0,len (data )+len (data )%2);_dbfgf =_cefc .baseFields (); -);if _dbfgf ._dcad !=nil {if _gcbg ,_cggf :=_dbfgf ._dcad .BytesToCharcodes (data );_cggf {for _ ,_adbgg :=range _gcbg {_ffad =append (_ffad ,_eee .CharCode (_adbgg ));};return _ffad ;};};if _dbfgf .isCIDFont (){if len (data )==1{data =[]byte {0,data [0]}; -};if len (data )%2!=0{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0064\u0064\u0069\u006e\u0067\u0020\u0064\u0061\u0074\u0061\u003d\u0025\u002b\u0076\u0020t\u006f\u0020\u0065\u0076\u0065n\u0020\u006ce\u006e\u0067\u0074\u0068",data ); -data =append (data ,0);};for _ebbb :=0;_ebbb < len (data );_ebbb +=2{_dfadg :=uint16 (data [_ebbb ])<<8|uint16 (data [_ebbb +1]);_ffad =append (_ffad ,_eee .CharCode (_dfadg ));};}else {for _ ,_abeab :=range data {_ffad =append (_ffad ,_eee .CharCode (_abeab )); -};};return _ffad ;}; +// GetCharMetrics returns the char metrics for character code `code`. +func (_edaaf pdfCIDFontType0 )GetCharMetrics (code _bd .CharCode )(_bbg .CharMetrics ,bool ){_bcaed :=_edaaf ._gfdca ;if _aaddg ,_dcbeb :=_edaaf ._gfcba [code ];_dcbeb {_bcaed =_aaddg ;};return _bbg .CharMetrics {Wx :_bcaed },true ;}; -// NewGrayImageFromGoImage creates a new grayscale unidoc Image from a golang Image. -func (_effe DefaultImageHandler )NewGrayImageFromGoImage (goimg _cg .Image )(*Image ,error ){_geebg :=goimg .Bounds ();_fecfd :=&Image {Width :int64 (_geebg .Dx ()),Height :int64 (_geebg .Dy ()),ColorComponents :1,BitsPerComponent :8};switch _debfc :=goimg .(type ){case *_cg .Gray :if len (_debfc .Pix )!=_geebg .Dx ()*_geebg .Dy (){_fgbfc ,_gcbga :=_gd .GrayConverter .Convert (goimg ); -if _gcbga !=nil {return nil ,_gcbga ;};_fecfd .Data =_fgbfc .Pix ();}else {_fecfd .Data =_debfc .Pix ;};case *_cg .Gray16 :_fecfd .BitsPerComponent =16;if len (_debfc .Pix )!=_geebg .Dx ()*_geebg .Dy ()*2{_bgbd ,_dcbgg :=_gd .Gray16Converter .Convert (goimg ); -if _dcbgg !=nil {return nil ,_dcbgg ;};_fecfd .Data =_bgbd .Pix ();}else {_fecfd .Data =_debfc .Pix ;};case _gd .Image :_fcec :=_debfc .Base ();if _fcec .ColorComponents ==1{_fecfd .BitsPerComponent =int64 (_fcec .BitsPerComponent );_fecfd .Data =_fcec .Data ; -return _fecfd ,nil ;};_dccgf ,_egeg :=_gd .GrayConverter .Convert (goimg );if _egeg !=nil {return nil ,_egeg ;};_fecfd .Data =_dccgf .Pix ();default:_dbdcc ,_cagcf :=_gd .GrayConverter .Convert (goimg );if _cagcf !=nil {return nil ,_cagcf ;};_fecfd .Data =_dbdcc .Pix (); -};return _fecfd ,nil ;};func (_ffbb *PdfAnnotation )String ()string {_add :="";_dcgb ,_cdc :=_ffbb .ToPdfObject ().(*_aff .PdfIndirectObject );if _cdc {_add =_e .Sprintf ("\u0025\u0054\u003a\u0020\u0025\u0073",_ffbb ._eefa ,_dcgb .PdfObject .String ()); -};return _add ;}; +// ToPdfObject return the CalGray colorspace as a PDF object (name dictionary). +func (_egbb *PdfColorspaceCalGray )ToPdfObject ()_dg .PdfObject {_fcf :=&_dg .PdfObjectArray {};_fcf .Append (_dg .MakeName ("\u0043a\u006c\u0047\u0072\u0061\u0079"));_abeg :=_dg .MakeDict ();if _egbb .WhitePoint !=nil {_abeg .Set ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074",_dg .MakeArray (_dg .MakeFloat (_egbb .WhitePoint [0]),_dg .MakeFloat (_egbb .WhitePoint [1]),_dg .MakeFloat (_egbb .WhitePoint [2]))); +}else {_ag .Log .Error ("\u0043\u0061\u006c\u0047\u0072\u0061\u0079\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0057\u0068\u0069\u0074\u0065\u0050\u006fi\u006e\u0074\u0020\u0028\u0052e\u0071\u0075i\u0072\u0065\u0064\u0029");};if _egbb .BlackPoint !=nil {_abeg .Set ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074",_dg .MakeArray (_dg .MakeFloat (_egbb .BlackPoint [0]),_dg .MakeFloat (_egbb .BlackPoint [1]),_dg .MakeFloat (_egbb .BlackPoint [2]))); +};_abeg .Set ("\u0047\u0061\u006dm\u0061",_dg .MakeFloat (_egbb .Gamma ));_fcf .Append (_abeg );if _egbb ._gcbf !=nil {_egbb ._gcbf .PdfObject =_fcf ;return _egbb ._gcbf ;};return _fcf ;};type modelManager struct{_aaddgg map[PdfModel ]_dg .PdfObject ;_eccbc map[_dg .PdfObject ]PdfModel ; +}; -// PdfColor interface represents a generic color in PDF. -type PdfColor interface{}; +// GetCharMetrics returns the character metrics for the specified character code. A bool flag is +// returned to indicate whether or not the entry was found in the glyph to charcode mapping. +// How it works: +// 1. Return a value the /Widths array (charWidths) if there is one. +// 2. If the font has the same name as a standard 14 font then return width=250. +// 3. Otherwise return no match and let the caller substitute a default. +func (_ddacc pdfFontSimple )GetCharMetrics (code _bd .CharCode )(_bbg .CharMetrics ,bool ){if _abcbf ,_cfecg :=_ddacc ._cfagf [code ];_cfecg {return _bbg .CharMetrics {Wx :_abcbf },true ;};if _bbg .IsStdFont (_bbg .StdFontName (_ddacc ._ecbf )){return _bbg .CharMetrics {Wx :250},true ; +};return _bbg .CharMetrics {},false ;};func _ceca (_edb *_dg .PdfIndirectObject ,_eggf *_dg .PdfObjectDictionary )(*DSS ,error ){if _edb ==nil {_edb =_dg .MakeIndirectObject (nil );};_edb .PdfObject =_dg .MakeDict ();_eaga :=map[string ]*VRI {};if _aabf ,_aagcg :=_dg .GetDict (_eggf .Get ("\u0056\u0052\u0049")); +_aagcg {for _ ,_fffdf :=range _aabf .Keys (){if _cfcd ,_ddgf :=_dg .GetDict (_aabf .Get (_fffdf ));_ddgf {_eaga [_ga .ToUpper (_fffdf .String ())]=_eceba (_cfcd );};};};return &DSS {Certs :_eeafe (_eggf .Get ("\u0043\u0065\u0072t\u0073")),OCSPs :_eeafe (_eggf .Get ("\u004f\u0043\u0053P\u0073")),CRLs :_eeafe (_eggf .Get ("\u0043\u0052\u004c\u0073")),VRI :_eaga ,_agdcg :_edb },nil ; +}; -// NewPdfAnnotationLine returns a new line annotation. -func NewPdfAnnotationLine ()*PdfAnnotationLine {_bfb :=NewPdfAnnotation ();_dgg :=&PdfAnnotationLine {};_dgg .PdfAnnotation =_bfb ;_dgg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_bfb .SetContext (_dgg );return _dgg ;};func (_adfec *Image )resampleLowBits (_eabdb []uint32 ){_ebeadg :=_gd .BytesPerLine (int (_adfec .Width ),int (_adfec .BitsPerComponent ),_adfec .ColorComponents ); -_cgfd :=make ([]byte ,_adfec .ColorComponents *_ebeadg *int (_adfec .Height ));_decc :=int (_adfec .BitsPerComponent )*_adfec .ColorComponents *int (_adfec .Width );_edcd :=uint8 (8);var (_abcfa ,_dfcba int ;_abbb uint32 ;);for _addcg :=0;_addcg < int (_adfec .Height ); -_addcg ++{_dfcba =_addcg *_ebeadg ;for _deba :=0;_deba < _decc ;_deba ++{_abbb =_eabdb [_abcfa ];_edcd -=uint8 (_adfec .BitsPerComponent );_cgfd [_dfcba ]|=byte (_abbb )<<_edcd ;if _edcd ==0{_edcd =8;_dfcba ++;};_abcfa ++;};};_adfec .Data =_cgfd ;};func (_decab *PdfWriter )checkPendingObjects (){for _ddgcf ,_feabbg :=range _decab ._gbfdc {if !_decab .hasObject (_ddgcf ){_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u0020\u0050\u0065n\u0064\u0069\u006eg\u0020\u006f\u0062j\u0065\u0063t\u0020\u0025\u002b\u0076\u0020\u0025T\u0020(%\u0070\u0029\u0020\u006e\u0065\u0076\u0065\u0072\u0020\u0061\u0064\u0064\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0077\u0072\u0069\u0074\u0069\u006e\u0067",_ddgcf ,_ddgcf ,_ddgcf ); -for _ ,_aagfa :=range _feabbg {for _ ,_faabad :=range _aagfa .Keys (){_gfcdd :=_aagfa .Get (_faabad );if _gfcdd ==_ddgcf {_adg .Log .Debug ("\u0050e\u006e\u0064i\u006e\u0067\u0020\u006fb\u006a\u0065\u0063t\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0061nd\u0020\u0072\u0065p\u006c\u0061c\u0065\u0064\u0020\u0077\u0069\u0074h\u0020\u006eu\u006c\u006c"); -_aagfa .Set (_faabad ,_aff .MakeNull ());break ;};};};};};}; +// NewPdfActionHide returns a new "hide" action. +func NewPdfActionHide ()*PdfActionHide {_aee :=NewPdfAction ();_ecd :=&PdfActionHide {};_ecd .PdfAction =_aee ;_aee .SetContext (_ecd );return _ecd ;}; -// GetParamsDict returns *core.PdfObjectDictionary with a set of basic image parameters. -func (_degec *Image )GetParamsDict ()*_aff .PdfObjectDictionary {_aggaa :=_aff .MakeDict ();_aggaa .Set ("\u0057\u0069\u0064t\u0068",_aff .MakeInteger (_degec .Width ));_aggaa .Set ("\u0048\u0065\u0069\u0067\u0068\u0074",_aff .MakeInteger (_degec .Height )); -_aggaa .Set ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073",_aff .MakeInteger (int64 (_degec .ColorComponents )));_aggaa .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_aff .MakeInteger (_degec .BitsPerComponent )); -return _aggaa ;}; +// ToPdfObject returns an indirect object containing the signature field dictionary. +func (_efed *PdfFieldSignature )ToPdfObject ()_dg .PdfObject {if _efed .PdfAnnotationWidget !=nil {_efed .PdfAnnotationWidget .ToPdfObject ();};_efed .PdfField .ToPdfObject ();_dagfc :=_efed ._egce ;_caaeb :=_dagfc .PdfObject .(*_dg .PdfObjectDictionary ); +_caaeb .SetIfNotNil ("\u0046\u0054",_dg .MakeName ("\u0053\u0069\u0067"));_caaeb .SetIfNotNil ("\u004c\u006f\u0063\u006b",_efed .Lock );_caaeb .SetIfNotNil ("\u0053\u0056",_efed .SV );if _efed .V !=nil {_caaeb .SetIfNotNil ("\u0056",_efed .V .ToPdfObject ()); +};return _dagfc ;};func _ababg (_ffccd _dg .PdfObject )(*PdfPageResourcesColorspaces ,error ){_aege :=&PdfPageResourcesColorspaces {};if _adag ,_ecbed :=_ffccd .(*_dg .PdfIndirectObject );_ecbed {_aege ._dcebf =_adag ;_ffccd =_adag .PdfObject ;};_affe ,_ddeda :=_dg .GetDict (_ffccd ); +if !_ddeda {return nil ,_bf .New ("\u0043\u0053\u0020at\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_aege .Names =[]string {};_aege .Colorspaces =map[string ]PdfColorspace {};for _ ,_dcdc :=range _affe .Keys (){_ddbf :=_affe .Get (_dcdc ); +_aege .Names =append (_aege .Names ,string (_dcdc ));_aggbc ,_fddb :=NewPdfColorspaceFromPdfObject (_ddbf );if _fddb !=nil {return nil ,_fddb ;};_aege .Colorspaces [string (_dcdc )]=_aggbc ;};return _aege ,nil ;}; -// ToPdfObject returns the PDF representation of the colorspace. -func (_dcdd *PdfColorspaceSpecialSeparation )ToPdfObject ()_aff .PdfObject {_dfed :=_aff .MakeArray (_aff .MakeName ("\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e"));_dfed .Append (_dcdd .ColorantName );_dfed .Append (_dcdd .AlternateSpace .ToPdfObject ()); -_dfed .Append (_dcdd .TintTransform .ToPdfObject ());if _dcdd ._dede !=nil {_dcdd ._dede .PdfObject =_dfed ;return _dcdd ._dede ;};return _dfed ;}; +// GetCharMetrics returns the char metrics for character code `code`. +func (_dabce pdfCIDFontType2 )GetCharMetrics (code _bd .CharCode )(_bbg .CharMetrics ,bool ){if _dfbe ,_afed :=_dabce ._ddeb [code ];_afed {return _bbg .CharMetrics {Wx :_dfbe },true ;};_fcag :=rune (code );_bgfcb ,_adfbb :=_dabce ._ebgc [_fcag ];if !_adfbb {_bgfcb =int (_dabce ._bfbc ); +};return _bbg .CharMetrics {Wx :float64 (_bgfcb )},true ;}; -// IsTerminal returns true for terminal fields, false otherwise. -// Terminal fields are fields whose descendants are only widget annotations. -func (_bgef *PdfField )IsTerminal ()bool {return len (_bgef .Kids )==0}; +// NewPermissions returns a new permissions object. +func NewPermissions (docMdp *PdfSignature )*Permissions {_fdef :=Permissions {};_fdef .DocMDP =docMdp ;_ggafd :=_dg .MakeDict ();_ggafd .Set ("\u0044\u006f\u0063\u004d\u0044\u0050",docMdp .ToPdfObject ());_fdef ._fbdaa =_ggafd ;return &_fdef ;}; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. -func (_adcf *PdfColorspaceSpecialPattern )ColorFromFloats (vals []float64 )(PdfColor ,error ){if _adcf .UnderlyingCS ==nil {return nil ,_g .New ("u\u006e\u0064\u0065\u0072\u006c\u0079i\u006e\u0067\u0020\u0043\u0053\u0020\u006e\u006f\u0074 \u0073\u0070\u0065c\u0069f\u0069\u0065\u0064"); -};return _adcf .UnderlyingCS .ColorFromFloats (vals );};func _eceg (_edgf *_aff .PdfObjectDictionary )(*PdfFieldChoice ,error ){_gddgd :=&PdfFieldChoice {};_gddgd .Opt ,_ =_aff .GetArray (_edgf .Get ("\u004f\u0070\u0074"));_gddgd .TI ,_ =_aff .GetInt (_edgf .Get ("\u0054\u0049")); -_gddgd .I ,_ =_aff .GetArray (_edgf .Get ("\u0049"));return _gddgd ,nil ;};func (_ebceb *PdfField )inherit (_begb func (*PdfField )bool )(bool ,error ){_ffbg :=map[*PdfField ]bool {};_defe :=false ;_dabe :=_ebceb ;for _dabe !=nil {if _ ,_ccff :=_ffbg [_dabe ]; -_ccff {return false ,_g .New ("\u0072\u0065\u0063\u0075rs\u0069\u0076\u0065\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0061\u006c");};_cdab :=_begb (_dabe );if _cdab {_defe =true ;break ;};_ffbg [_dabe ]=true ;_dabe =_dabe .Parent ;};return _defe ,nil ; -}; +// ImageHandler interface implements common image loading and processing tasks. +// Implementing as an interface allows for the possibility to use non-standard libraries for faster +// loading and processing of images. +type ImageHandler interface{ -// NewPdfActionSubmitForm returns a new "submit form" action. -func NewPdfActionSubmitForm ()*PdfActionSubmitForm {_ebg :=NewPdfAction ();_ddb :=&PdfActionSubmitForm {};_ddb .PdfAction =_ebg ;_ebg .SetContext (_ddb );return _ddb ;};type pdfFont interface{_bcd .Font ; +// Read any image type and load into a new Image object. +Read (_aaeeg _cf .Reader )(*Image ,error ); -// ToPdfObject returns a PDF representation of the font and implements interface Model. -ToPdfObject ()_aff .PdfObject ;getFontDescriptor ()*PdfFontDescriptor ;baseFields ()*fontCommon ;}; +// NewImageFromGoImage loads a NRGBA32 unidoc Image from a standard Go image structure. +NewImageFromGoImage (_caaa _gd .Image )(*Image ,error ); -// ToPdfObject implements interface PdfModel. -func (_dddca *PdfTransformParamsDocMDP )ToPdfObject ()_aff .PdfObject {_egbgc :=_aff .MakeDict ();_egbgc .SetIfNotNil ("\u0054\u0079\u0070\u0065",_dddca .Type );_egbgc .SetIfNotNil ("\u0056",_dddca .V );_egbgc .SetIfNotNil ("\u0050",_dddca .P );return _egbgc ; -}; +// NewGrayImageFromGoImage loads a grayscale unidoc Image from a standard Go image structure. +NewGrayImageFromGoImage (_efgge _gd .Image )(*Image ,error ); -// NewPdfAnnotationPolygon returns a new polygon annotation. -func NewPdfAnnotationPolygon ()*PdfAnnotationPolygon {_afb :=NewPdfAnnotation ();_egg :=&PdfAnnotationPolygon {};_egg .PdfAnnotation =_afb ;_egg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_afb .SetContext (_egg );return _egg ;}; +// Compress an image. +Compress (_cfcde *Image ,_bgbga int64 )(*Image ,error );};func _egcfg (_cgdda *XObjectImage )error {if _cgdda .SMask ==nil {return nil ;};_dddag ,_dbae :=_cgdda .SMask .(*_dg .PdfObjectStream );if !_dbae {_ag .Log .Debug ("\u0053\u004da\u0073\u006b\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u002a\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074\u0053\u0074re\u0061\u006d"); +return _dg .ErrTypeError ;};_ggeee :=_dddag .PdfObjectDictionary ;_edgcd :=_ggeee .Get ("\u004d\u0061\u0074t\u0065");if _edgcd ==nil {return nil ;};_cddfd ,_gcfagd :=_ceafc (_edgcd .(*_dg .PdfObjectArray ));if _gcfagd !=nil {return _gcfagd ;};_bbfca :=_dg .MakeArrayFromFloats ([]float64 {_cddfd }); +_ggeee .SetIfNotNil ("\u004d\u0061\u0074t\u0065",_bbfca );return nil ;}; -// DecodeArray returns the component range values for the DeviceN colorspace. -// [0 1.0 0 1.0 ...] for each color component. -func (_addee *PdfColorspaceDeviceN )DecodeArray ()[]float64 {var _gfa []float64 ;for _cfcb :=0;_cfcb < _addee .GetNumComponents ();_cfcb ++{_gfa =append (_gfa ,0.0,1.0);};return _gfa ;}; +// Write writes out the PDF. +func (_ccge *PdfWriter )Write (writer _cf .Writer )error {_ag .Log .Trace ("\u0057r\u0069\u0074\u0065\u0028\u0029");_cdfbg :=_ccge .checkLicense ();if _cdfbg !=nil {return _cdfbg ;};if _cdfbg =_ccge .writeOutlines ();_cdfbg !=nil {return _cdfbg ;};if _cdfbg =_ccge .writeAcroFormFields (); +_cdfbg !=nil {return _cdfbg ;};_ccge .checkPendingObjects ();if _cdfbg =_ccge .writeOutputIntents ();_cdfbg !=nil {return _cdfbg ;};_ccge .setCatalogVersion ();_ccge .copyObjects ();if _cdfbg =_ccge .optimize ();_cdfbg !=nil {return _cdfbg ;};if _cdfbg =_ccge .optimizeDocument (); +_cdfbg !=nil {return _cdfbg ;};var _ccgab _ed .Hash ;if _ccge ._affea {_ccgab =_f .New ();writer =_cf .MultiWriter (_ccgab ,writer );};_ccge .setWriter (writer );_dedeed :=_ccge .checkCrossReferenceStream ();_ccffa ,_dedeed :=_ccge .mapObjectStreams (_dedeed ); +_ccge .adjustXRefAffectedVersion (_dedeed );_ccge .writeDocumentVersion ();_ccge .updateObjectNumbers ();_ccge .writeObjects ();if _cdfbg =_ccge .writeObjectsInStreams (_ccffa );_cdfbg !=nil {return _cdfbg ;};_dbabe :=_ccge ._fbbfc ;var _dfdf int ;for _bbbbb :=range _ccge ._fffge {if _bbbbb > _dfdf {_dfdf =_bbbbb ; +};};if _ccge ._affea {if _cdfbg =_ccge .setHashIDs (_ccgab );_cdfbg !=nil {return _cdfbg ;};};if _dedeed {if _cdfbg =_ccge .writeXRefStreams (_dfdf ,_dbabe );_cdfbg !=nil {return _cdfbg ;};}else {_ccge .writeTrailer (_dfdf );};_ccge .makeOffSetReference (_dbabe ); +if _cdfbg =_ccge .flushWriter ();_cdfbg !=nil {return _cdfbg ;};return nil ;}; -// Size returns the width and the height of the page. The method reports -// the page dimensions as displayed by a PDF viewer (i.e. page rotation is -// taken into account). -func (_caea *PdfPage )Size ()(float64 ,float64 ,error ){_cgbcgd ,_ccbacd :=_caea .GetMediaBox ();if _ccbacd !=nil {return 0,0,_ccbacd ;};_edebg ,_ggff :=_cgbcgd .Width (),_cgbcgd .Height ();_agfbe ,_ccbacd :=_caea .GetRotate ();if _ccbacd !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_ccbacd .Error ()); -};if _gdcc :=_agfbe ;_gdcc %360!=0&&_gdcc %90==0{if _cddaa :=(360+_gdcc %360)%360;_cddaa ==90||_cddaa ==270{_edebg ,_ggff =_ggff ,_edebg ;};};return _edebg ,_ggff ,nil ;};func (_ffag *PdfReader )newPdfAnnotationUnderlineFromDict (_dgc *_aff .PdfObjectDictionary )(*PdfAnnotationUnderline ,error ){_fdd :=PdfAnnotationUnderline {}; -_ced ,_dgce :=_ffag .newPdfAnnotationMarkupFromDict (_dgc );if _dgce !=nil {return nil ,_dgce ;};_fdd .PdfAnnotationMarkup =_ced ;_fdd .QuadPoints =_dgc .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_fdd ,nil ;}; +// PdfDate represents a date, which is a PDF string of the form: +// (D:YYYYMMDDHHmmSSOHH'mm) +type PdfDate struct{_bgfdb int64 ;_gbbge int64 ;_cbad int64 ;_cade int64 ;_ccgbg int64 ;_aacfe int64 ;_ggbdg byte ;_bdde int64 ;_gafe int64 ;};func (_fefde *LTV )buildCertChain (_afgdg ,_fgdae []*_bb .Certificate )([]*_bb .Certificate ,map[string ]*_bb .Certificate ,error ){_dcgae :=map[string ]*_bb .Certificate {}; +for _ ,_ccdg :=range _afgdg {_dcgae [_ccdg .Subject .CommonName ]=_ccdg ;};_fegf :=_afgdg ;for _ ,_cggb :=range _fgdae {_cbedf :=_cggb .Subject .CommonName ;if _ ,_gdead :=_dcgae [_cbedf ];_gdead {continue ;};_dcgae [_cbedf ]=_cggb ;_fegf =append (_fegf ,_cggb ); +};if len (_fegf )==0{return nil ,nil ,ErrSignNoCertificates ;};var _cdbeg error ;for _faaf :=_fegf [0];_faaf !=nil &&!_fefde .CertClient .IsCA (_faaf );{_bfgda ,_beadeg :=_dcgae [_faaf .Issuer .CommonName ];if !_beadeg {if _bfgda ,_cdbeg =_fefde .CertClient .GetIssuer (_faaf ); +_cdbeg !=nil {_ag .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u006f\u0075\u006cd\u0020\u006e\u006f\u0074\u0020\u0072\u0065tr\u0069\u0065\u0076\u0065 \u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061te\u0020\u0069s\u0073\u0075\u0065\u0072\u003a\u0020\u0025\u0076",_cdbeg ); +break ;};_dcgae [_faaf .Issuer .CommonName ]=_bfgda ;_fegf =append (_fegf ,_bfgda );};_faaf =_bfgda ;};return _fegf ,_dcgae ,nil ;}; -// ColorFromPdfObjects returns a new PdfColor based on input color components. The input PdfObjects should -// be numeric. -func (_dbea *PdfColorspaceDeviceN )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=_dbea .GetNumComponents (){return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_adbgf ,_bbbad :=_aff .GetNumbersAsFloat (objects ); -if _bbbad !=nil {return nil ,_bbbad ;};return _dbea .ColorFromFloats (_adbgf );}; +// GetContainingPdfObject implements interface PdfModel. +func (_abeb *PdfFilespec )GetContainingPdfObject ()_dg .PdfObject {return _abeb ._bcbe };func _bfbgg (_gegcc _dg .PdfObject ,_gbfgf *fontCommon )(*_ff .CMap ,error ){_dcce ,_aabd :=_dg .GetStream (_gegcc );if !_aabd {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0074\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0054\u006f\u0043m\u0061\u0070\u003a\u0020\u004e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0025\u0054\u0029",_gegcc ); +return nil ,_dg .ErrTypeError ;};_debge ,_efaab :=_dg .DecodeStream (_dcce );if _efaab !=nil {return nil ,_efaab ;};_dceaff ,_efaab :=_ff .LoadCmapFromData (_debge ,!_gbfgf .isCIDFont ());if _efaab !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u004e\u0075\u006d\u0062\u0065\u0072\u003d\u0025\u0064\u0020\u0065\u0072r=\u0025\u0076",_dcce .ObjectNumber ,_efaab ); +};return _dceaff ,_efaab ;}; -// ToPdfObject sets the common field elements. -// Note: Call the more field context's ToPdfObject to set both the generic and -// non-generic information. -func (_dagc *PdfField )ToPdfObject ()_aff .PdfObject {_dbdc :=_dagc ._dfbfd ;_eaag :=_dbdc .PdfObject .(*_aff .PdfObjectDictionary );_dgegb :=_aff .MakeArray ();for _ ,_fcfg :=range _dagc .Kids {_dgegb .Append (_fcfg .ToPdfObject ());};for _ ,_ebcf :=range _dagc .Annotations {if _ebcf ._ccfb !=_dagc ._dfbfd {_dgegb .Append (_ebcf .GetContext ().ToPdfObject ()); -};};if _dagc .Parent !=nil {_eaag .SetIfNotNil ("\u0050\u0061\u0072\u0065\u006e\u0074",_dagc .Parent .GetContainingPdfObject ());};if _dgegb .Len ()> 0{_eaag .Set ("\u004b\u0069\u0064\u0073",_dgegb );};_eaag .SetIfNotNil ("\u0046\u0054",_dagc .FT );_eaag .SetIfNotNil ("\u0054",_dagc .T ); -_eaag .SetIfNotNil ("\u0054\u0055",_dagc .TU );_eaag .SetIfNotNil ("\u0054\u004d",_dagc .TM );_eaag .SetIfNotNil ("\u0046\u0066",_dagc .Ff );_eaag .SetIfNotNil ("\u0056",_dagc .V );_eaag .SetIfNotNil ("\u0044\u0056",_dagc .DV );_eaag .SetIfNotNil ("\u0041\u0041",_dagc .AA ); -if _dagc .VariableText !=nil {_eaag .SetIfNotNil ("\u0044\u0041",_dagc .VariableText .DA );_eaag .SetIfNotNil ("\u0051",_dagc .VariableText .Q );_eaag .SetIfNotNil ("\u0044\u0053",_dagc .VariableText .DS );_eaag .SetIfNotNil ("\u0052\u0056",_dagc .VariableText .RV ); -};return _dbdc ;}; +// PdfTransformParamsDocMDP represents a transform parameters dictionary for the DocMDP method and is used to detect +// modifications relative to a signature field that is signed by the author of a document. +// (Section 12.8.2.2, Table 254 - Entries in the DocMDP transform parameters dictionary p. 471 in PDF32000_2008). +type PdfTransformParamsDocMDP struct{Type *_dg .PdfObjectName ;P *_dg .PdfObjectInteger ;V *_dg .PdfObjectName ;}; -// GetXObjectByName gets XObject by name. -func (_eegdgd *PdfPage )GetXObjectByName (name _aff .PdfObjectName )(_aff .PdfObject ,bool ){_febgg ,_agfdg :=_eegdgd .Resources .XObject .(*_aff .PdfObjectDictionary );if !_agfdg {return nil ,false ;};if _cecba :=_febgg .Get (name );_cecba !=nil {return _cecba ,true ; -};return nil ,false ;};func _bbcf (_ecbc *_aff .PdfObjectDictionary ,_edefe *fontCommon )(*pdfFontType0 ,error ){_facfg ,_fedafc :=_aff .GetArray (_ecbc .Get ("\u0044e\u0073c\u0065\u006e\u0064\u0061\u006e\u0074\u0046\u006f\u006e\u0074\u0073"));if !_fedafc {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049n\u0076\u0061\u006cid\u0020\u0044\u0065\u0073\u0063\u0065n\u0064\u0061\u006e\u0074\u0046\u006f\u006e\u0074\u0073\u0020\u002d\u0020\u006e\u006f\u0074 \u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079 \u0025\u0073",_edefe ); -return nil ,_aff .ErrRangeError ;};if _facfg .Len ()!=1{_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0041\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0031\u0020(%\u0064\u0029",_facfg .Len ()); -return nil ,_aff .ErrRangeError ;};_egaad ,_dbgf :=_bfdbcc (_facfg .Get (0),false );if _dbgf !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046a\u0069\u006c\u0065d \u006c\u006f\u0061\u0064\u0069\u006eg\u0020\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0061\u006e\u0074\u0020\u0066\u006f\u006et\u003a\u0020\u0065\u0072\u0072\u003d\u0025\u0076 \u0025\u0073",_dbgf ,_edefe ); -return nil ,_dbgf ;};_ffcfeg :=_fgdf (_edefe );_ffcfeg .DescendantFont =_egaad ;_ebdgf ,_fedafc :=_aff .GetNameVal (_ecbc .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));if _fedafc {if _ebdgf =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048"||_ebdgf =="\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056"{_ffcfeg ._faggb =_eee .NewIdentityTextEncoder (_ebdgf ); -}else if _da .IsPredefinedCMap (_ebdgf ){_ffcfeg ._baedc ,_dbgf =_da .LoadPredefinedCMap (_ebdgf );if _dbgf !=nil {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020l\u006f\u0061\u0064\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0043\u004d\u0061\u0070\u0020\u0025\u0073\u003a\u0020\u0025\u0076",_ebdgf ,_dbgf ); -};}else {_adg .Log .Debug ("\u0055\u006e\u0068\u0061\u006e\u0064\u006c\u0065\u0064\u0020\u0063\u006da\u0070\u0020\u0025\u0071",_ebdgf );};};if _becfc :=_egaad .baseFields ()._dcad ;_becfc !=nil {if _ccbb :=_becfc .Name ();_ccbb =="\u0041d\u006fb\u0065\u002d\u0043\u004e\u0053\u0031\u002d\u0055\u0043\u0053\u0032"||_ccbb =="\u0041\u0064\u006f\u0062\u0065\u002d\u0047\u0042\u0031-\u0055\u0043\u0053\u0032"||_ccbb =="\u0041\u0064\u006f\u0062\u0065\u002d\u004a\u0061\u0070\u0061\u006e\u0031-\u0055\u0043\u0053\u0032"||_ccbb =="\u0041\u0064\u006f\u0062\u0065\u002d\u004b\u006f\u0072\u0065\u0061\u0031-\u0055\u0043\u0053\u0032"{_ffcfeg ._faggb =_eee .NewCMapEncoder (_ebdgf ,_ffcfeg ._baedc ,_becfc ); -};};return _ffcfeg ,nil ;}; +// PdfAnnotationLine represents Line annotations. +// (Section 12.5.6.7). +type PdfAnnotationLine struct{*PdfAnnotation ;*PdfAnnotationMarkup ;L _dg .PdfObject ;BS _dg .PdfObject ;LE _dg .PdfObject ;IC _dg .PdfObject ;LL _dg .PdfObject ;LLE _dg .PdfObject ;Cap _dg .PdfObject ;IT _dg .PdfObject ;LLO _dg .PdfObject ;CP _dg .PdfObject ; +Measure _dg .PdfObject ;CO _dg .PdfObject ;}; -// Set applies flag fl to the flag's bitmask and returns the combined flag. -func (_fbagb FieldFlag )Set (fl FieldFlag )FieldFlag {return FieldFlag (_fbagb .Mask ()|fl .Mask ())};func _geffg (_gffcg _aff .PdfObject )(*PdfFunctionType2 ,error ){_ggbe :=&PdfFunctionType2 {};var _cbdfg *_aff .PdfObjectDictionary ;if _beaab ,_ebcc :=_gffcg .(*_aff .PdfIndirectObject ); -_ebcc {_daaad ,_edbb :=_beaab .PdfObject .(*_aff .PdfObjectDictionary );if !_edbb {return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_ggbe ._ceeae =_beaab ;_cbdfg =_daaad ;}else if _ccde ,_baacb :=_gffcg .(*_aff .PdfObjectDictionary ); -_baacb {_cbdfg =_ccde ;}else {return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_adg .Log .Trace ("\u0046U\u004e\u0043\u0032\u003a\u0020\u0025s",_cbdfg .String ());_acec ,_accgb :=_aff .TraceToDirectObject (_cbdfg .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_aff .PdfObjectArray ); -if !_accgb {_adg .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};if _acec .Len ()< 0||_acec .Len ()%2!=0{_adg .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u0072\u0061\u006e\u0067e\u0020\u0069\u006e\u0076al\u0069\u0064");return nil ,_g .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065"); -};_ggefd ,_fgbcc :=_acec .ToFloat64Array ();if _fgbcc !=nil {return nil ,_fgbcc ;};_ggbe .Domain =_ggefd ;_acec ,_accgb =_aff .TraceToDirectObject (_cbdfg .Get ("\u0052\u0061\u006eg\u0065")).(*_aff .PdfObjectArray );if _accgb {if _acec .Len ()< 0||_acec .Len ()%2!=0{return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); -};_dega ,_caegc :=_acec .ToFloat64Array ();if _caegc !=nil {return nil ,_caegc ;};_ggbe .Range =_dega ;};_acec ,_accgb =_aff .TraceToDirectObject (_cbdfg .Get ("\u0043\u0030")).(*_aff .PdfObjectArray );if _accgb {_ecffa ,_bdgad :=_acec .ToFloat64Array (); -if _bdgad !=nil {return nil ,_bdgad ;};_ggbe .C0 =_ecffa ;};_acec ,_accgb =_aff .TraceToDirectObject (_cbdfg .Get ("\u0043\u0031")).(*_aff .PdfObjectArray );if _accgb {_ccedc ,_aceg :=_acec .ToFloat64Array ();if _aceg !=nil {return nil ,_aceg ;};_ggbe .C1 =_ccedc ; -};if len (_ggbe .C0 )!=len (_ggbe .C1 ){_adg .Log .Error ("\u0043\u0030\u0020\u0061nd\u0020\u0043\u0031\u0020\u006e\u006f\u0074\u0020\u006d\u0061\u0074\u0063\u0068\u0069n\u0067");return nil ,_aff .ErrRangeError ;};N ,_fgbcc :=_aff .GetNumberAsFloat (_aff .TraceToDirectObject (_cbdfg .Get ("\u004e"))); -if _fgbcc !=nil {_adg .Log .Error ("\u004e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020o\u0072\u0020\u0069\u006e\u0076\u0061\u006ci\u0064\u002c\u0020\u0064\u0069\u0063\u0074\u003a\u0020\u0025\u0073",_cbdfg .String ());return nil ,_fgbcc ;};_ggbe .N =N ; -return _ggbe ,nil ;};func (_daaca *PdfShading )getShadingDict ()(*_aff .PdfObjectDictionary ,error ){_begfd :=_daaca ._bdacg ;if _dedde ,_cgedgf :=_begfd .(*_aff .PdfIndirectObject );_cgedgf {_adbgcf ,_cdfcf :=_dedde .PdfObject .(*_aff .PdfObjectDictionary ); -if !_cdfcf {return nil ,_aff .ErrTypeError ;};return _adbgcf ,nil ;}else if _gfgcfd ,_cfcaf :=_begfd .(*_aff .PdfObjectStream );_cfcaf {return _gfgcfd .PdfObjectDictionary ,nil ;}else if _faedd ,_facec :=_begfd .(*_aff .PdfObjectDictionary );_facec {return _faedd ,nil ; -}else {_adg .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0063\u0063\u0065s\u0073\u0020\u0073\u0068\u0061\u0064\u0069n\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079");return nil ,_aff .ErrTypeError ;};}; +// ImageToRGB converts an Image in a given PdfColorspace to an RGB image. +func (_deec *PdfColorspaceDeviceN )ImageToRGB (img Image )(Image ,error ){_dfbc :=_fcd .NewReader (img .getBase ());_ecf :=_fc .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,nil ,img ._dgeb ,img ._gfbb ); +_ceaf :=_fcd .NewWriter (_ecf );_eeag :=_cg .Pow (2,float64 (img .BitsPerComponent ))-1;_fdacf :=_deec .GetNumComponents ();_fdbad :=make ([]uint32 ,_fdacf );_dcafd :=make ([]float64 ,_fdacf );for {_cfgca :=_dfbc .ReadSamples (_fdbad );if _cfgca ==_cf .EOF {break ; +}else if _cfgca !=nil {return img ,_cfgca ;};for _acbe :=0;_acbe < _fdacf ;_acbe ++{_fgaf :=float64 (_fdbad [_acbe ])/_eeag ;_dcafd [_acbe ]=_fgaf ;};_cfbaa ,_cfgca :=_deec .TintTransform .Evaluate (_dcafd );if _cfgca !=nil {return img ,_cfgca ;};for _ ,_fffg :=range _cfbaa {_fffg =_cg .Min (_cg .Max (0,_fffg ),1.0); +if _cfgca =_ceaf .WriteSample (uint32 (_fffg *_eeag ));_cfgca !=nil {return img ,_cfgca ;};};};return _deec .AlternateSpace .ImageToRGB (_edcf (&_ecf ));}; -// DSS represents a Document Security Store dictionary. -// The DSS dictionary contains both global and signature specific validation -// information. The certificates and revocation data in the `Certs`, `OCSPs`, -// and `CRLs` fields can be used to validate any signature in the document. -// Additionally, the VRI entry contains validation data per signature. -// The keys in the VRI entry are calculated as upper(hex(sha1(sig.Contents))). -// The values are VRI dictionaries containing certificates and revocation -// information used for validating a single signature. -// See ETSI TS 102 778-4 V1.1.1 for more information. -type DSS struct{_dfad *_aff .PdfIndirectObject ;Certs []*_aff .PdfObjectStream ;OCSPs []*_aff .PdfObjectStream ;CRLs []*_aff .PdfObjectStream ;VRI map[string ]*VRI ;_eddd map[string ]*_aff .PdfObjectStream ;_eaga map[string ]*_aff .PdfObjectStream ;_abba map[string ]*_aff .PdfObjectStream ; +// NewLTV returns a new LTV client. +func NewLTV (appender *PdfAppender )(*LTV ,error ){_cedae :=appender .Reader .DSS ;if _cedae ==nil {_cedae =NewDSS ();};if _abgab :=_cedae .GenerateHashMaps ();_abgab !=nil {return nil ,_abgab ;};return <V {CertClient :_fe .NewCertClient (),OCSPClient :_fe .NewOCSPClient (),CRLClient :_fe .NewCRLClient (),SkipExisting :true ,_ebdgd :appender ,_abca :_cedae },nil ; }; -// NewPdfAnnotationTrapNet returns a new trapnet annotation. -func NewPdfAnnotationTrapNet ()*PdfAnnotationTrapNet {_aadb :=NewPdfAnnotation ();_bbge :=&PdfAnnotationTrapNet {};_bbge .PdfAnnotation =_aadb ;_aadb .SetContext (_bbge );return _bbge ;}; - -// AcroFormNeedsRepair returns true if the document contains widget annotations -// linked to fields which are not referenced in the AcroForm. The AcroForm can -// be repaired using the RepairAcroForm method of the reader. -func (_cddag *PdfReader )AcroFormNeedsRepair ()(bool ,error ){var _dbcba []*PdfField ;if _cddag .AcroForm !=nil {_dbcba =_cddag .AcroForm .AllFields ();};_aagcb :=make (map[*PdfField ]struct{},len (_dbcba ));for _ ,_fbfc :=range _dbcba {_aagcb [_fbfc ]=struct{}{}; -};for _ ,_bcce :=range _cddag .PageList {_effb ,_feafe :=_bcce .GetAnnotations ();if _feafe !=nil {return false ,_feafe ;};for _ ,_fdaba :=range _effb {_degbc ,_cdbcb :=_fdaba .GetContext ().(*PdfAnnotationWidget );if !_cdbcb {continue ;};_cbgbf :=_degbc .Field (); -if _cbgbf ==nil {return true ,nil ;};if _ ,_fdgd :=_aagcb [_cbgbf ];!_fdgd {return true ,nil ;};};};return false ,nil ;}; +// NewPdfColorLab returns a new Lab color. +func NewPdfColorLab (l ,a ,b float64 )*PdfColorLab {_gbbg :=PdfColorLab {l ,a ,b };return &_gbbg }; -// AddCerts adds certificates to DSS. -func (_daga *DSS )AddCerts (certs [][]byte )([]*_aff .PdfObjectStream ,error ){return _daga .add (&_daga .Certs ,_daga ._eddd ,certs );}; +// NewXObjectForm creates a brand new XObject Form. Creates a new underlying PDF object stream primitive. +func NewXObjectForm ()*XObjectForm {_cggaa :=&XObjectForm {};_fgae :=&_dg .PdfObjectStream {};_fgae .PdfObjectDictionary =_dg .MakeDict ();_cggaa ._ebaeb =_fgae ;return _cggaa ;}; -// PdfShadingPatternType2 is shading patterns that will use a Type 2 shading pattern (Axial). -type PdfShadingPatternType2 struct{*PdfPattern ;Shading *PdfShadingType2 ;Matrix *_aff .PdfObjectArray ;ExtGState _aff .PdfObject ;}; +// GetAnnotations returns the list of page annotations for `page`. If not loaded attempts to load the +// annotations, otherwise returns the loaded list. +func (_baafe *PdfPage )GetAnnotations ()([]*PdfAnnotation ,error ){if _baafe ._cadgg !=nil {return _baafe ._cadgg ,nil ;};if _baafe .Annots ==nil {_baafe ._cadgg =[]*PdfAnnotation {};return nil ,nil ;};if _baafe ._cbbcc ==nil {_baafe ._cadgg =[]*PdfAnnotation {}; +return nil ,nil ;};_gdefc ,_dcfc :=_baafe ._cbbcc .loadAnnotations (_baafe .Annots );if _dcfc !=nil {return nil ,_dcfc ;};if _gdefc ==nil {_baafe ._cadgg =[]*PdfAnnotation {};};_baafe ._cadgg =_gdefc ;return _baafe ._cadgg ,nil ;};func _daffeb ()string {_geed :="\u0051\u0057\u0045\u0052\u0054\u0059\u0055\u0049\u004f\u0050\u0041S\u0044\u0046\u0047\u0048\u004a\u004b\u004c\u005a\u0058\u0043V\u0042\u004e\u004d"; +var _afeed _bc .Buffer ;for _ebcd :=0;_ebcd < 6;_ebcd ++{_afeed .WriteRune (rune (_geed [_cb .Intn (len (_geed ))]));};return _afeed .String ();};func _adabe (_acgcg *_dg .PdfObjectDictionary )(*PdfShadingPattern ,error ){_aaggf :=&PdfShadingPattern {}; +_gcfc :=_acgcg .Get ("\u0053h\u0061\u0064\u0069\u006e\u0067");if _gcfc ==nil {_ag .Log .Debug ("\u0053h\u0061d\u0069\u006e\u0067\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ;};_dffe ,_aeaf :=_bgdgf (_gcfc ); +if _aeaf !=nil {_ag .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020l\u006f\u0061\u0064\u0069\u006eg\u0020s\u0068a\u0064\u0069\u006e\u0067\u003a\u0020\u0025v",_aeaf );return nil ,_aeaf ;};_aaggf .Shading =_dffe ;if _ccbce :=_acgcg .Get ("\u004d\u0061\u0074\u0072\u0069\u0078"); +_ccbce !=nil {_cgbff ,_efgba :=_ccbce .(*_dg .PdfObjectArray );if !_efgba {_ag .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_ccbce ); +return nil ,_dg .ErrTypeError ;};_aaggf .Matrix =_cgbff ;};if _cbfbge :=_acgcg .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e");_cbfbge !=nil {_aaggf .ExtGState =_cbfbge ;};return _aaggf ,nil ;};func (_cagd *PdfReader )newPdfAnnotationTrapNetFromDict (_adbb *_dg .PdfObjectDictionary )(*PdfAnnotationTrapNet ,error ){_adc :=PdfAnnotationTrapNet {}; +return &_adc ,nil ;}; -// SetColorspaceByName adds the provided colorspace to the page resources. -func (_gdaga *PdfPageResources )SetColorspaceByName (keyName _aff .PdfObjectName ,cs PdfColorspace )error {_dgde ,_bfcad :=_gdaga .GetColorspaces ();if _bfcad !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0072\u0061\u0063\u0065: \u0025\u0076",_bfcad ); -return _bfcad ;};if _dgde ==nil {_dgde =NewPdfPageResourcesColorspaces ();_gdaga .SetColorSpace (_dgde );};_dgde .Set (keyName ,cs );return nil ;}; +// ToPdfObject implements interface PdfModel. +func (_bcda *PdfAnnotationScreen )ToPdfObject ()_dg .PdfObject {_bcda .PdfAnnotation .ToPdfObject ();_abef :=_bcda ._cdf ;_eeab :=_abef .PdfObject .(*_dg .PdfObjectDictionary );_eeab .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0053\u0063\u0072\u0065\u0065\u006e")); +_eeab .SetIfNotNil ("\u0054",_bcda .T );_eeab .SetIfNotNil ("\u004d\u004b",_bcda .MK );_eeab .SetIfNotNil ("\u0041",_bcda .A );_eeab .SetIfNotNil ("\u0041\u0041",_bcda .AA );return _abef ;}; -// GetContentStreams returns the content stream as an array of strings. -func (_agddb *PdfPage )GetContentStreams ()([]string ,error ){_cbgff :=_agddb .GetContentStreamObjs ();var _cbad []string ;for _ ,_fcbbg :=range _cbgff {_ddcae ,_fgadg :=_cefcd (_fcbbg );if _fgadg !=nil {return nil ,_fgadg ;};_cbad =append (_cbad ,_ddcae ); -};return _cbad ,nil ;};func (_ffec *DSS )add (_dgdb *[]*_aff .PdfObjectStream ,_dbdb map[string ]*_aff .PdfObjectStream ,_cgac [][]byte )([]*_aff .PdfObjectStream ,error ){_fgea :=make ([]*_aff .PdfObjectStream ,0,len (_cgac ));for _ ,_ebead :=range _cgac {_dcef ,_gdbb :=_cdfa (_ebead ); -if _gdbb !=nil {return nil ,_gdbb ;};_gcgag ,_badg :=_dbdb [string (_dcef )];if !_badg {_gcgag ,_gdbb =_aff .MakeStream (_ebead ,_aff .NewRawEncoder ());if _gdbb !=nil {return nil ,_gdbb ;};_dbdb [string (_dcef )]=_gcgag ;*_dgdb =append (*_dgdb ,_gcgag ); -};_fgea =append (_fgea ,_gcgag );};return _fgea ,nil ;}; +// NewGrayImageFromGoImage creates a new grayscale unidoc Image from a golang Image. +func (_ecad DefaultImageHandler )NewGrayImageFromGoImage (goimg _gd .Image )(*Image ,error ){_cbfeg :=goimg .Bounds ();_fcgeb :=&Image {Width :int64 (_cbfeg .Dx ()),Height :int64 (_cbfeg .Dy ()),ColorComponents :1,BitsPerComponent :8};switch _eedd :=goimg .(type ){case *_gd .Gray :if len (_eedd .Pix )!=_cbfeg .Dx ()*_cbfeg .Dy (){_ecab ,_eeabg :=_fc .GrayConverter .Convert (goimg ); +if _eeabg !=nil {return nil ,_eeabg ;};_fcgeb .Data =_ecab .Pix ();}else {_fcgeb .Data =_eedd .Pix ;};case *_gd .Gray16 :_fcgeb .BitsPerComponent =16;if len (_eedd .Pix )!=_cbfeg .Dx ()*_cbfeg .Dy ()*2{_dadda ,_fbfbb :=_fc .Gray16Converter .Convert (goimg ); +if _fbfbb !=nil {return nil ,_fbfbb ;};_fcgeb .Data =_dadda .Pix ();}else {_fcgeb .Data =_eedd .Pix ;};case _fc .Image :_gefg :=_eedd .Base ();if _gefg .ColorComponents ==1{_fcgeb .BitsPerComponent =int64 (_gefg .BitsPerComponent );_fcgeb .Data =_gefg .Data ; +return _fcgeb ,nil ;};_fdec ,_eefac :=_fc .GrayConverter .Convert (goimg );if _eefac !=nil {return nil ,_eefac ;};_fcgeb .Data =_fdec .Pix ();default:_dagg ,_cccfa :=_fc .GrayConverter .Convert (goimg );if _cccfa !=nil {return nil ,_cccfa ;};_fcgeb .Data =_dagg .Pix (); +};return _fcgeb ,nil ;}; -// AddOCSPs adds OCSPs to DSS. -func (_addg *DSS )AddOCSPs (ocsps [][]byte )([]*_aff .PdfObjectStream ,error ){return _addg .add (&_addg .OCSPs ,_addg ._eaga ,ocsps );}; +// SetImageHandler sets the image handler used by the package. +func SetImageHandler (imgHandling ImageHandler ){ImageHandling =imgHandling }; -// Initialize initializes the PdfSignature. -func (_cfbbf *PdfSignature )Initialize ()error {if _cfbbf .Handler ==nil {return _g .New ("\u0073\u0069\u0067n\u0061\u0074\u0075\u0072e\u0020\u0068\u0061\u006e\u0064\u006c\u0065r\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c"); -};return _cfbbf .Handler .InitSignature (_cfbbf );}; +// HasXObjectByName checks if an XObject with a specified keyName is defined. +func (_dbafe *PdfPageResources )HasXObjectByName (keyName _dg .PdfObjectName )bool {_dadggb ,_ :=_dbafe .GetXObjectByName (keyName );return _dadggb !=nil ;};func (_eggc *PdfReader )newPdfAnnotationFileAttachmentFromDict (_adeg *_dg .PdfObjectDictionary )(*PdfAnnotationFileAttachment ,error ){_deca :=PdfAnnotationFileAttachment {}; +_bcgf ,_gffg :=_eggc .newPdfAnnotationMarkupFromDict (_adeg );if _gffg !=nil {return nil ,_gffg ;};_deca .PdfAnnotationMarkup =_bcgf ;_deca .FS =_adeg .Get ("\u0046\u0053");_deca .Name =_adeg .Get ("\u004e\u0061\u006d\u0065");return &_deca ,nil ;}; -// ToPdfObject implements interface PdfModel. -func (_acfbf *PdfFilespec )ToPdfObject ()_aff .PdfObject {_dbde :=_acfbf .getDict ();_dbde .Clear ();_dbde .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"));_dbde .SetIfNotNil ("\u0046\u0053",_acfbf .FS ); -_dbde .SetIfNotNil ("\u0046",_acfbf .F );_dbde .SetIfNotNil ("\u0055\u0046",_acfbf .UF );_dbde .SetIfNotNil ("\u0044\u004f\u0053",_acfbf .DOS );_dbde .SetIfNotNil ("\u004d\u0061\u0063",_acfbf .Mac );_dbde .SetIfNotNil ("\u0055\u006e\u0069\u0078",_acfbf .Unix ); -_dbde .SetIfNotNil ("\u0049\u0044",_acfbf .ID );_dbde .SetIfNotNil ("\u0056",_acfbf .V );_dbde .SetIfNotNil ("\u0045\u0046",_acfbf .EF );_dbde .SetIfNotNil ("\u0052\u0046",_acfbf .RF );_dbde .SetIfNotNil ("\u0044\u0065\u0073\u0063",_acfbf .Desc );_dbde .SetIfNotNil ("\u0043\u0049",_acfbf .CI ); -return _acfbf ._dfefa ;}; +// SetNamedDestinations sets the Dests entry in the PDF catalog. +// See section 12.3.2.3 "Named Destinations" (p. 367 PDF32000_2008). +func (_cdcee *PdfWriter )SetNamedDestinations (dests _dg .PdfObject )error {if dests ==nil {return nil ;};_ag .Log .Trace ("\u0053e\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0044\u0065\u0073\u0074\u0073\u002e\u002e\u002e"); +_cdcee ._ecdf .Set ("\u0044\u0065\u0073t\u0073",dests );return _cdcee .addObjects (dests );}; -// PdfAnnotationPolyLine represents PolyLine annotations. -// (Section 12.5.6.9). -type PdfAnnotationPolyLine struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Vertices _aff .PdfObject ;LE _aff .PdfObject ;BS _aff .PdfObject ;IC _aff .PdfObject ;BE _aff .PdfObject ;IT _aff .PdfObject ;Measure _aff .PdfObject ;}; +// GetContainingPdfObject returns the container of the pattern object (indirect object). +func (_ggdb *PdfPattern )GetContainingPdfObject ()_dg .PdfObject {return _ggdb ._eacce }; -// NewCustomPdfOutputIntent creates a new custom PdfOutputIntent. -func NewCustomPdfOutputIntent (outputCondition ,outputConditionIdentifier ,info string ,destOutputProfile []byte ,colorComponents int )*PdfOutputIntent {return &PdfOutputIntent {Type :"\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074",OutputCondition :outputCondition ,OutputConditionIdentifier :outputConditionIdentifier ,Info :info ,DestOutputProfile :destOutputProfile ,_gebea :_aff .MakeDict (),ColorComponents :colorComponents }; -};func _fcage (_begbe string )map[string ]string {_cdbgdd :=_cgcf .Split (_begbe ,-1);_ccebg :=map[string ]string {};for _ ,_cfdc :=range _cdbgdd {_ebcd :=_ggge .FindStringSubmatch (_cfdc );if _ebcd ==nil {continue ;};_eege ,_ccdfc :=_ebcd [1],_ebcd [2]; -_ccebg [_eege ]=_ccdfc ;};return _ccebg ;}; +// ToPdfObject returns the PDF representation of the colorspace. +func (_cfga *PdfColorspaceDeviceRGB )ToPdfObject ()_dg .PdfObject {return _dg .MakeName ("\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B");}; -// ToPdfObject implements interface PdfModel. -func (_edcg *PdfAnnotationCircle )ToPdfObject ()_aff .PdfObject {_edcg .PdfAnnotation .ToPdfObject ();_ggg :=_edcg ._ccfb ;_bge :=_ggg .PdfObject .(*_aff .PdfObjectDictionary );_edcg .PdfAnnotationMarkup .appendToPdfDictionary (_bge );_bge .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0043\u0069\u0072\u0063\u006c\u0065")); -_bge .SetIfNotNil ("\u0042\u0053",_edcg .BS );_bge .SetIfNotNil ("\u0049\u0043",_edcg .IC );_bge .SetIfNotNil ("\u0042\u0045",_edcg .BE );_bge .SetIfNotNil ("\u0052\u0044",_edcg .RD );return _ggg ;};func (_gcff *pdfFontSimple )addEncoding ()error {var (_bbbd string ; -_aaede map[_eee .CharCode ]_eee .GlyphName ;_abeae _eee .SimpleEncoder ;);if _gcff .Encoder ()!=nil {_cddgf ,_dfaad :=_gcff .Encoder ().(_eee .SimpleEncoder );if _dfaad &&_cddgf !=nil {_bbbd =_cddgf .BaseName ();};};if _gcff .Encoding !=nil {_dfbfdg ,_daae ,_adaa :=_gcff .getFontEncoding (); -if _adaa !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042\u0061\u0073\u0065F\u006f\u006e\u0074\u003d\u0025\u0071\u0020\u0053u\u0062t\u0079\u0070\u0065\u003d\u0025\u0071\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003d\u0025\u0073 \u0028\u0025\u0054\u0029\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gcff ._abed ,_gcff ._fbged ,_gcff .Encoding ,_gcff .Encoding ,_adaa ); -return _adaa ;};if _dfbfdg !=""{_bbbd =_dfbfdg ;};_aaede =_daae ;_abeae ,_adaa =_eee .NewSimpleTextEncoder (_bbbd ,_aaede );if _adaa !=nil {return _adaa ;};};if _abeae ==nil {_fbcb :=_gcff ._ggca ;if _fbcb !=nil {switch _gcff ._fbged {case "\u0054\u0079\u0070e\u0031":if _fbcb .fontFile !=nil &&_fbcb .fontFile ._bgbca !=nil {_adg .Log .Debug ("\u0055\u0073\u0069\u006e\u0067\u0020\u0066\u006f\u006et\u0046\u0069\u006c\u0065"); -_abeae =_fbcb .fontFile ._bgbca ;};case "\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":if _fbcb ._ddffd !=nil {_adg .Log .Debug ("\u0055s\u0069n\u0067\u0020\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0032");_agaga ,_cagab :=_fbcb ._ddffd .MakeEncoder (); -if _cagab ==nil {_abeae =_agaga ;};if _gcff ._dcad ==nil {_gcff ._dcad =_fbcb ._ddffd .MakeToUnicode ();};};};};};if _abeae !=nil {if _aaede !=nil {_adg .Log .Trace ("\u0064\u0069\u0066fe\u0072\u0065\u006e\u0063\u0065\u0073\u003d\u0025\u002b\u0076\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_aaede ,_gcff .baseFields ()); -_abeae =_eee .ApplyDifferences (_abeae ,_aaede );};_gcff .SetEncoder (_abeae );};return nil ;}; +// GetCapHeight returns the CapHeight of the font `descriptor`. +func (_ceae *PdfFontDescriptor )GetCapHeight ()(float64 ,error ){return _dg .GetNumberAsFloat (_ceae .CapHeight );}; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain three elements representing the -// red, green and blue components of the color. The values of the elements -// should be between 0 and 1. -func (_bgbf *PdfColorspaceDeviceRGB )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=3{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_cgec :=vals [0];if _cgec < 0.0||_cgec > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_cgec ); -return nil ,ErrColorOutOfRange ;};_gffbg :=vals [1];if _gffbg < 0.0||_gffbg > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_cgec );return nil ,ErrColorOutOfRange ; -};_gadae :=vals [2];if _gadae < 0.0||_gadae > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_cgec );return nil ,ErrColorOutOfRange ;};_dac :=NewPdfColorDeviceRGB (_cgec ,_gffbg ,_gadae ); -return _dac ,nil ;}; +// Encoder returns the font's text encoder. +func (_dcfd pdfCIDFontType0 )Encoder ()_bd .TextEncoder {return _dcfd ._afbff };func _dffca (_gdgb _dg .PdfObject )(*PdfColorspaceSpecialPattern ,error ){_ag .Log .Trace ("\u004e\u0065\u0077\u0020\u0050\u0061\u0074\u0074\u0065\u0072n\u0020\u0043\u0053\u0020\u0066\u0072\u006fm\u0020\u006f\u0062\u006a\u003a\u0020\u0025\u0073\u0020\u0025\u0054",_gdgb .String (),_gdgb ); +_gbddf :=NewPdfColorspaceSpecialPattern ();if _gcccc ,_cgff :=_gdgb .(*_dg .PdfIndirectObject );_cgff {_gbddf ._cbff =_gcccc ;};_gdgb =_dg .TraceToDirectObject (_gdgb );if _ffcd ,_gdca :=_gdgb .(*_dg .PdfObjectName );_gdca {if *_ffcd !="\u0050a\u0074\u0074\u0065\u0072\u006e"{return nil ,_b .Errorf ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u006e\u0061\u006d\u0065"); +};return _gbddf ,nil ;};_dccdc ,_fcegc :=_gdgb .(*_dg .PdfObjectArray );if !_fcegc {_ag .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061t\u0074\u0065\u0072\u006e\u0020\u0043\u0053 \u004f\u0062\u006a\u0065\u0063\u0074\u003a\u0020\u0025\u0023\u0076",_gdgb ); +return nil ,_b .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0050\u0061\u0074\u0074e\u0072n\u0020C\u0053\u0020\u006f\u0062\u006a\u0065\u0063t");};if _dccdc .Len ()!=1&&_dccdc .Len ()!=2{_ag .Log .Error ("\u0049\u006ev\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0043\u0053\u0020\u0061\u0072\u0072\u0061\u0079\u003a %\u0023\u0076",_dccdc ); +return nil ,_b .Errorf ("\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0074\u0074\u0065r\u006e\u0020\u0043\u0053\u0020\u0061\u0072\u0072\u0061\u0079");};_gdgb =_dccdc .Get (0);if _cddc ,_gffc :=_gdgb .(*_dg .PdfObjectName );_gffc {if *_cddc !="\u0050a\u0074\u0074\u0065\u0072\u006e"{_ag .Log .Error ("\u0049\u006e\u0076al\u0069\u0064\u0020\u0050\u0061\u0074\u0074\u0065\u0072n\u0020C\u0053 \u0061r\u0072\u0061\u0079\u0020\u006e\u0061\u006d\u0065\u003a\u0020\u0025\u0023\u0076",_cddc ); +return nil ,_b .Errorf ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u006e\u0061\u006d\u0065");};};if _dccdc .Len ()> 1{_gdgb =_dccdc .Get (1);_gdgb =_dg .TraceToDirectObject (_gdgb );_fadf ,_gaab :=NewPdfColorspaceFromPdfObject (_gdgb );if _gaab !=nil {return nil ,_gaab ; +};_gbddf .UnderlyingCS =_fadf ;};_ag .Log .Trace ("R\u0065\u0074\u0075\u0072\u006e\u0069\u006e\u0067\u0020\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0077i\u0074\u0068\u0020\u0075\u006e\u0064\u0065\u0072\u006c\u0079in\u0067\u0020\u0063s\u003a \u0025\u0054",_gbddf .UnderlyingCS ); +return _gbddf ,nil ;}; -// PdfFunctionType3 defines stitching of the subdomains of several 1-input functions to produce -// a single new 1-input function. -type PdfFunctionType3 struct{Domain []float64 ;Range []float64 ;Functions []PdfFunction ;Bounds []float64 ;Encode []float64 ;_cabf *_aff .PdfIndirectObject ;}; +// PdfFieldButton represents a button field which includes push buttons, checkboxes, and radio buttons. +type PdfFieldButton struct{*PdfField ;Opt *_dg .PdfObjectArray ;_gddc *Image ;}; -// String returns a string representation of the field. -func (_abfcd *PdfField )String ()string {if _deda ,_gegfd :=_abfcd .ToPdfObject ().(*_aff .PdfIndirectObject );_gegfd {return _e .Sprintf ("\u0025\u0054\u003a\u0020\u0025\u0073",_abfcd ._gaecf ,_deda .PdfObject .String ());};return "";}; +// NewPdfFontFromTTFFile loads a TTF font file and returns a PdfFont type +// that can be used in text styling functions. +// Uses a WinAnsiTextEncoder and loads only character codes 32-255. +// NOTE: For composite fonts such as used in symbolic languages, use NewCompositePdfFontFromTTFFile. +func NewPdfFontFromTTFFile (filePath string )(*PdfFont ,error ){_ebdd ,_bdbg :=_eb .Open (filePath );if _bdbg !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0072\u0065\u0061\u0064\u0069\u006e\u0067\u0020T\u0054F\u0020\u0066\u006f\u006e\u0074\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0076",_bdbg ); +return nil ,_bdbg ;};defer _ebdd .Close ();return NewPdfFontFromTTF (_ebdd );}; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_degcf *PdfShadingType7 )ToPdfObject ()_aff .PdfObject {_degcf .PdfShading .ToPdfObject ();_ffbbe ,_adeb :=_degcf .getShadingDict ();if _adeb !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _degcf .BitsPerCoordinate !=nil {_ffbbe .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_degcf .BitsPerCoordinate );};if _degcf .BitsPerComponent !=nil {_ffbbe .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_degcf .BitsPerComponent ); -};if _degcf .BitsPerFlag !=nil {_ffbbe .Set ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067",_degcf .BitsPerFlag );};if _degcf .Decode !=nil {_ffbbe .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_degcf .Decode );};if _degcf .Function !=nil {if len (_degcf .Function )==1{_ffbbe .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_degcf .Function [0].ToPdfObject ()); -}else {_ecdga :=_aff .MakeArray ();for _ ,_cceff :=range _degcf .Function {_ecdga .Append (_cceff .ToPdfObject ());};_ffbbe .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_ecdga );};};return _degcf ._bdacg ;}; +// UpdatePage updates the `page` in the new revision if it has changed. +func (_ffea *PdfAppender )UpdatePage (page *PdfPage ){_ffea .updateObjectsDeep (page .ToPdfObject (),nil )}; -// GetRuneMetrics returns the character metrics for the specified rune. -// A bool flag is returned to indicate whether or not the entry was found. -func (_dfbdgg pdfFontType3 )GetRuneMetrics (r rune )(_bcd .CharMetrics ,bool ){_efdg :=_dfbdgg .Encoder ();if _efdg ==nil {_adg .Log .Debug ("\u004e\u006f\u0020en\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u0073\u003d\u0025\u0073",_dfbdgg ); -return _bcd .CharMetrics {},false ;};_gcce ,_daag :=_efdg .RuneToCharcode (r );if !_daag {if r !=' '{_adg .Log .Trace ("\u004e\u006f\u0020c\u0068\u0061\u0072\u0063o\u0064\u0065\u0020\u0066\u006f\u0072\u0020r\u0075\u006e\u0065\u003d\u0025\u0076\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",r ,_dfbdgg ); -};return _bcd .CharMetrics {},false ;};_baccf ,_bafec :=_dfbdgg .GetCharMetrics (_gcce );return _baccf ,_bafec ;}; +// GetPageAsIndirectObject returns the page as a dictionary within an PdfIndirectObject. +func (_bbcfg *PdfPage )GetPageAsIndirectObject ()*_dg .PdfIndirectObject {return _bbcfg ._cggbe }; -// NewPdfReaderLazy creates a new PdfReader for `rs` in lazy-loading mode. The difference -// from NewPdfReader is that in lazy-loading mode, objects are only loaded into memory when needed -// rather than entire structure being loaded into memory on reader creation. -// Note that it may make sense to use the lazy-load reader when processing only parts of files, -// rather than loading entire file into memory. Example: splitting a few pages from a large PDF file. -func NewPdfReaderLazy (rs _ega .ReadSeeker )(*PdfReader ,error ){const _caad ="\u006d\u006f\u0064\u0065l:\u004e\u0065\u0077\u0050\u0064\u0066\u0052\u0065\u0061\u0064\u0065\u0072\u004c\u0061z\u0079";return _dffg (rs ,&ReaderOpts {LazyLoad :true },false ,_caad ); -}; +// PdfColorspaceSpecialSeparation is a Separation colorspace. +// At the moment the colour space is set to a Separation space, the conforming reader shall determine whether the +// device has an available colorant (e.g. dye) corresponding to the name of the requested space. If so, the conforming +// reader shall ignore the alternateSpace and tintTransform parameters; subsequent painting operations within the +// space shall apply the designated colorant directly, according to the tint values supplied. +// +// Format: [/Separation name alternateSpace tintTransform] +type PdfColorspaceSpecialSeparation struct{ColorantName *_dg .PdfObjectName ;AlternateSpace PdfColorspace ;TintTransform PdfFunction ;_fecg *_dg .PdfIndirectObject ;};const (TrappedUnknown PdfInfoTrapped ="\u0055n\u006b\u006e\u006f\u0077\u006e";TrappedTrue PdfInfoTrapped ="\u0054\u0072\u0075\u0065"; +TrappedFalse PdfInfoTrapped ="\u0046\u0061\u006cs\u0065";); -// PdfAnnotationSound represents Sound annotations. -// (Section 12.5.6.16). -type PdfAnnotationSound struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Sound _aff .PdfObject ;Name _aff .PdfObject ;}; +// SetFontByName sets the font specified by keyName to the given object. +func (_ffffd *PdfPageResources )SetFontByName (keyName _dg .PdfObjectName ,obj _dg .PdfObject )error {if _ffffd .Font ==nil {_ffffd .Font =_dg .MakeDict ();};_cgcgb ,_ggfe :=_dg .TraceToDirectObject (_ffffd .Font ).(*_dg .PdfObjectDictionary );if !_ggfe {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0021\u0020(\u0067\u006ft\u0020\u0025\u0054\u0029",_dg .TraceToDirectObject (_ffffd .Font )); +return _dg .ErrTypeError ;};_cgcgb .Set (keyName ,obj );return nil ;}; -// NewPdfColorspaceSpecialPattern returns a new pattern color. -func NewPdfColorspaceSpecialPattern ()*PdfColorspaceSpecialPattern {return &PdfColorspaceSpecialPattern {};};var _cafgd =false ; +// SetImage updates XObject Image with new image data. +func (_dbfdf *XObjectImage )SetImage (img *Image ,cs PdfColorspace )error {_dbfdf .Filter .UpdateParams (img .GetParamsDict ());_fecbb ,_dfgdg :=_dbfdf .Filter .EncodeBytes (img .Data );if _dfgdg !=nil {return _dfgdg ;};_dbfdf .Stream =_fecbb ;_gdba :=img .Width ; +_dbfdf .Width =&_gdba ;_ceadd :=img .Height ;_dbfdf .Height =&_ceadd ;_cabbd :=img .BitsPerComponent ;_dbfdf .BitsPerComponent =&_cabbd ;if cs ==nil {if img .ColorComponents ==1{_dbfdf .ColorSpace =NewPdfColorspaceDeviceGray ();}else if img .ColorComponents ==3{_dbfdf .ColorSpace =NewPdfColorspaceDeviceRGB (); +}else if img .ColorComponents ==4{_dbfdf .ColorSpace =NewPdfColorspaceDeviceCMYK ();}else {return _bf .New ("c\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020u\u006e\u0064\u0065\u0066in\u0065\u0064");};}else {_dbfdf .ColorSpace =cs ;};return nil ; +}; -// ToPdfObject returns a PdfObject representation of PdfColorspaceDeviceNAttributes as a PdfObjectDictionary directly -// or indirectly within an indirect object container. -func (_aefe *PdfColorspaceDeviceNAttributes )ToPdfObject ()_aff .PdfObject {_gafg :=_aff .MakeDict ();if _aefe .Subtype !=nil {_gafg .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aefe .Subtype );};_gafg .SetIfNotNil ("\u0043o\u006c\u006f\u0072\u0061\u006e\u0074s",_aefe .Colorants ); -_gafg .SetIfNotNil ("\u0050r\u006f\u0063\u0065\u0073\u0073",_aefe .Process );_gafg .SetIfNotNil ("M\u0069\u0078\u0069\u006e\u0067\u0048\u0069\u006e\u0074\u0073",_aefe .MixingHints );if _aefe ._ecgec !=nil {_aefe ._ecgec .PdfObject =_gafg ;return _aefe ._ecgec ; -};return _gafg ;}; +// SetContentStream sets the pattern cell's content stream. +func (_geab *PdfTilingPattern )SetContentStream (content []byte ,encoder _dg .StreamEncoder )error {_bbcec ,_feaef :=_geab ._eacce .(*_dg .PdfObjectStream );if !_feaef {_ag .Log .Debug ("\u0054\u0069l\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_geab ._eacce ); +return _dg .ErrTypeError ;};if encoder ==nil {encoder =_dg .NewRawEncoder ();};_aaeg :=_bbcec .PdfObjectDictionary ;_gdcab :=encoder .MakeStreamDict ();_aaeg .Merge (_gdcab );_gbcdf ,_fggcc :=encoder .EncodeBytes (content );if _fggcc !=nil {return _fggcc ; +};_aaeg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_gbcdf ))));_bbcec .Stream =_gbcdf ;return nil ;}; -// NewXObjectFormFromStream builds the Form XObject from a stream object. -// TODO: Should this be exposed? Consider different access points. -func NewXObjectFormFromStream (stream *_aff .PdfObjectStream )(*XObjectForm ,error ){_dfeg :=&XObjectForm {};_dfeg ._fddef =stream ;_fbgeda :=*(stream .PdfObjectDictionary );_accagg ,_caff :=_aff .NewEncoderFromStream (stream );if _caff !=nil {return nil ,_caff ; -};_dfeg .Filter =_accagg ;if _aefab :=_fbgeda .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_aefab !=nil {_egaea ,_ccdee :=_aefab .(*_aff .PdfObjectName );if !_ccdee {return nil ,_g .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};if *_egaea !="\u0046\u006f\u0072\u006d"{_adg .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0066\u006f\u0072m\u0020\u0073\u0075\u0062ty\u0070\u0065");return nil ,_g .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0066\u006f\u0072m\u0020\u0073\u0075\u0062ty\u0070\u0065"); -};};if _adagad :=_fbgeda .Get ("\u0046\u006f\u0072\u006d\u0054\u0079\u0070\u0065");_adagad !=nil {_dfeg .FormType =_adagad ;};if _bfafe :=_fbgeda .Get ("\u0042\u0042\u006f\u0078");_bfafe !=nil {_dfeg .BBox =_bfafe ;};if _bedgdb :=_fbgeda .Get ("\u004d\u0061\u0074\u0072\u0069\u0078"); -_bedgdb !=nil {_dfeg .Matrix =_bedgdb ;};if _eccd :=_fbgeda .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");_eccd !=nil {_eccd =_aff .TraceToDirectObject (_eccd );_agfdf ,_abcdc :=_eccd .(*_aff .PdfObjectDictionary );if !_abcdc {_adg .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u0058\u004f\u0062j\u0065c\u0074\u0020\u0046\u006f\u0072\u006d\u0020\u0052\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020\u006f\u0062j\u0065\u0063\u0074\u002c\u0020\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u006e\u006f\u006e\u002d\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079"); -return nil ,_aff .ErrTypeError ;};_ffacfd ,_gfeab :=NewPdfPageResourcesFromDict (_agfdf );if _gfeab !=nil {_adg .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0020\u0072\u0065\u0073\u006f\u0075rc\u0065\u0073"); -return nil ,_gfeab ;};_dfeg .Resources =_ffacfd ;_adg .Log .Trace ("\u0046\u006f\u0072\u006d r\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u003a\u0020\u0025\u0023\u0076",_dfeg .Resources );};_dfeg .Group =_fbgeda .Get ("\u0047\u0072\u006fu\u0070"); -_dfeg .Ref =_fbgeda .Get ("\u0052\u0065\u0066");_dfeg .MetaData =_fbgeda .Get ("\u004d\u0065\u0074\u0061\u0044\u0061\u0074\u0061");_dfeg .PieceInfo =_fbgeda .Get ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o");_dfeg .LastModified =_fbgeda .Get ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064"); -_dfeg .StructParent =_fbgeda .Get ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074");_dfeg .StructParents =_fbgeda .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073");_dfeg .OPI =_fbgeda .Get ("\u004f\u0050\u0049"); -_dfeg .OC =_fbgeda .Get ("\u004f\u0043");_dfeg .Name =_fbgeda .Get ("\u004e\u0061\u006d\u0065");_dfeg .Stream =stream .Stream ;return _dfeg ,nil ;}; +// ColorFromPdfObjects returns a new PdfColor based on input color components. The input PdfObjects should +// be numeric. +func (_cabd *PdfColorspaceDeviceN )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=_cabd .GetNumComponents (){return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_cbbb ,_ddggg :=_dg .GetNumbersAsFloat (objects ); +if _ddggg !=nil {return nil ,_ddggg ;};return _cabd .ColorFromFloats (_cbbb );}; // PdfTilingPattern is a Tiling pattern that consists of repetitions of a pattern cell with defined intervals. // It is a type 1 pattern. (PatternType = 1). // A tiling pattern is represented by a stream object, where the stream content is // a content stream that describes the pattern cell. -type PdfTilingPattern struct{*PdfPattern ;PaintType *_aff .PdfObjectInteger ;TilingType *_aff .PdfObjectInteger ;BBox *PdfRectangle ;XStep *_aff .PdfObjectFloat ;YStep *_aff .PdfObjectFloat ;Resources *PdfPageResources ;Matrix *_aff .PdfObjectArray ;}; - - -// NewPdfAnnotation returns an initialized generic PDF annotation model. -func NewPdfAnnotation ()*PdfAnnotation {_ged :=&PdfAnnotation {};_ged ._ccfb =_aff .MakeIndirectObject (_aff .MakeDict ());return _ged ;};func _gface (_fadde *fontCommon )*pdfFontType3 {return &pdfFontType3 {fontCommon :*_fadde }}; - -// ReaderOpts defines options for creating PdfReader instances. -type ReaderOpts struct{ - -// Password password of the PDF file encryption. -// Default: empty (""). -Password string ; - -// LazyLoad set if the PDF file would be loaded using lazy-loading mode. -// Default: true. -LazyLoad bool ; - -// ComplianceMode set if parsed PDF file should contain meta information for the verifiers of the compliance standards like PDF/A. -ComplianceMode bool ;}; +type PdfTilingPattern struct{*PdfPattern ;PaintType *_dg .PdfObjectInteger ;TilingType *_dg .PdfObjectInteger ;BBox *PdfRectangle ;XStep *_dg .PdfObjectFloat ;YStep *_dg .PdfObjectFloat ;Resources *PdfPageResources ;Matrix *_dg .PdfObjectArray ;}; -// SetContentStream updates the content stream with specified encoding. -// If encoding is null, will use the xform.Filter object or Raw encoding if not set. -func (_cfcac *XObjectForm )SetContentStream (content []byte ,encoder _aff .StreamEncoder )error {_bbfgf :=content ;if encoder ==nil {if _cfcac .Filter !=nil {encoder =_cfcac .Filter ;}else {encoder =_aff .NewRawEncoder ();};};_eadfa ,_cbfg :=encoder .EncodeBytes (_bbfgf ); -if _cbfg !=nil {return _cbfg ;};_bbfgf =_eadfa ;_cfcac .Stream =_bbfgf ;_cfcac .Filter =encoder ;return nil ;};func (_bbab fontCommon )coreString ()string {_gaaac :="";if _bbab ._ggca !=nil {_gaaac =_bbab ._ggca .String ();};return _e .Sprintf ("\u0025#\u0071\u0020%\u0023\u0071\u0020%\u0071\u0020\u006f\u0062\u006a\u003d\u0025d\u0020\u0054\u006f\u0055\u006e\u0069c\u006f\u0064\u0065\u003d\u0025\u0074\u0020\u0066\u006c\u0061\u0067s\u003d\u0030\u0078\u0025\u0030\u0078\u0020\u0025\u0073",_bbab ._fbged ,_bbab ._abed ,_bbab ._edebf ,_bbab ._acfg ,_bbab ._ccbfg !=nil ,_bbab .fontFlags (),_gaaac ); -}; +// ToPdfObject implements interface PdfModel. +func (_bcae *PdfAnnotationText )ToPdfObject ()_dg .PdfObject {_bcae .PdfAnnotation .ToPdfObject ();_edgf :=_bcae ._cdf ;_cfd :=_edgf .PdfObject .(*_dg .PdfObjectDictionary );if _bcae .PdfAnnotationMarkup !=nil {_bcae .PdfAnnotationMarkup .appendToPdfDictionary (_cfd ); +};_cfd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0054\u0065\u0078\u0074"));_cfd .SetIfNotNil ("\u004f\u0070\u0065\u006e",_bcae .Open );_cfd .SetIfNotNil ("\u004e\u0061\u006d\u0065",_bcae .Name );_cfd .SetIfNotNil ("\u0053\u0074\u0061t\u0065",_bcae .State ); +_cfd .SetIfNotNil ("\u0053\u0074\u0061\u0074\u0065\u004d\u006f\u0064\u0065\u006c",_bcae .StateModel );return _edgf ;}; -// NewPdfInfoFromObject creates a new PdfInfo from the input core.PdfObject. -func NewPdfInfoFromObject (obj _aff .PdfObject )(*PdfInfo ,error ){var _dccg PdfInfo ;_egaag ,_ddff :=obj .(*_aff .PdfObjectDictionary );if !_ddff {return nil ,_e .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0074\u0079p\u0065:\u0020\u0025\u0054",obj ); -};for _ ,_cddc :=range _egaag .Keys (){switch _cddc {case "\u0054\u0069\u0074l\u0065":_dccg .Title ,_ =_aff .GetString (_egaag .Get ("\u0054\u0069\u0074l\u0065"));case "\u0041\u0075\u0074\u0068\u006f\u0072":_dccg .Author ,_ =_aff .GetString (_egaag .Get ("\u0041\u0075\u0074\u0068\u006f\u0072")); -case "\u0053u\u0062\u006a\u0065\u0063\u0074":_dccg .Subject ,_ =_aff .GetString (_egaag .Get ("\u0053u\u0062\u006a\u0065\u0063\u0074"));case "\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073":_dccg .Keywords ,_ =_aff .GetString (_egaag .Get ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073")); -case "\u0043r\u0065\u0061\u0074\u006f\u0072":_dccg .Creator ,_ =_aff .GetString (_egaag .Get ("\u0043r\u0065\u0061\u0074\u006f\u0072"));case "\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072":_dccg .Producer ,_ =_aff .GetString (_egaag .Get ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072")); -case "\u0054r\u0061\u0070\u0070\u0065\u0064":_dccg .Trapped ,_ =_aff .GetName (_egaag .Get ("\u0054r\u0061\u0070\u0070\u0065\u0064"));case "\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065":if _gecf ,_fbbdfe :=_aff .GetString (_egaag .Get ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065")); -_fbbdfe &&_gecf .String ()!=""{_bede ,_aedg :=NewPdfDate (_gecf .String ());if _aedg !=nil {return nil ,_e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0072e\u0061\u0074\u0069\u006f\u006e\u0044\u0061t\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0077",_aedg ); -};_dccg .CreationDate =&_bede ;};case "\u004do\u0064\u0044\u0061\u0074\u0065":if _fedaf ,_bfddf :=_aff .GetString (_egaag .Get ("\u004do\u0064\u0044\u0061\u0074\u0065"));_bfddf &&_fedaf .String ()!=""{_abeec ,_gaad :=NewPdfDate (_fedaf .String ());if _gaad !=nil {return nil ,_e .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u004d\u006f\u0064\u0044a\u0074e\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025w",_gaad ); -};_dccg .ModifiedDate =&_abeec ;};default:_dbcff ,_ :=_aff .GetString (_egaag .Get (_cddc ));if _dccg ._cgbc ==nil {_dccg ._cgbc =_aff .MakeDict ();};_dccg ._cgbc .Set (_cddc ,_dbcff );};};return &_dccg ,nil ;}; +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. The slice should contain a single element. +func (_ffgg *PdfColorspaceSpecialSeparation )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_ffbf :=vals [0];_abedf :=[]float64 {_ffbf };_gggga ,_gbaa :=_ffgg .TintTransform .Evaluate (_abedf ); +if _gbaa !=nil {_ag .Log .Debug ("\u0045\u0072r\u006f\u0072\u002c\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0065\u0076\u0061\u006c\u0075\u0061\u0074\u0065: \u0025\u0076",_gbaa );_ag .Log .Trace ("\u0054\u0069\u006e\u0074 t\u0072\u0061\u006e\u0073\u0066\u006f\u0072\u006d\u003a\u0020\u0025\u002b\u0076",_ffgg .TintTransform ); +return nil ,_gbaa ;};_ag .Log .Trace ("\u0050\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0043\u006f\u006c\u006fr\u0046\u0072\u006f\u006d\u0046\u006c\u006f\u0061\u0074\u0073\u0028\u0025\u002bv\u0029\u0020\u006f\u006e\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061te\u0053\u0070\u0061\u0063\u0065\u003a\u0020\u0025\u0023\u0076",_gggga ,_ffgg .AlternateSpace ); +_febef ,_gbaa :=_ffgg .AlternateSpace .ColorFromFloats (_gggga );if _gbaa !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u002c\u0020\u0066a\u0069\u006c\u0065d \u0074\u006f\u0020\u0065\u0076\u0061l\u0075\u0061\u0074\u0065\u0020\u0069\u006e\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061t\u0065\u0020\u0073\u0070\u0061\u0063\u0065\u003a \u0025\u0076",_gbaa ); +return nil ,_gbaa ;};return _febef ,nil ;}; -// HasExtGState checks whether a font is defined by the specified keyName. -func (_dded *PdfPageResources )HasExtGState (keyName _aff .PdfObjectName )bool {_ ,_agfbeg :=_dded .GetFontByName (keyName );return _agfbeg ;};func (_ffga *PdfReader )newPdfActionResetFormFromDict (_dfb *_aff .PdfObjectDictionary )(*PdfActionResetForm ,error ){return &PdfActionResetForm {Fields :_dfb .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"),Flags :_dfb .Get ("\u0046\u006c\u0061g\u0073")},nil ; -}; +// PdfColorDeviceGray represents a grayscale color value that shall be represented by a single number in the +// range 0.0 to 1.0 where 0.0 corresponds to black and 1.0 to white. +type PdfColorDeviceGray float64 ;func (_cbce *PdfReader )newPdfActionImportDataFromDict (_cfea *_dg .PdfObjectDictionary )(*PdfActionImportData ,error ){_gde ,_fbc :=_bccf (_cfea .Get ("\u0046"));if _fbc !=nil {return nil ,_fbc ;};return &PdfActionImportData {F :_gde },nil ; +};func (_cgbea *PdfPage )setContainer (_eggfa *_dg .PdfIndirectObject ){_eggfa .PdfObject =_cgbea ._bfdge ;_cgbea ._cggbe =_eggfa ;}; -// PdfActionURI represents an URI action. -type PdfActionURI struct{*PdfAction ;URI _aff .PdfObject ;IsMap _aff .PdfObject ;};var (_aebda _b .Mutex ;_gabfb ="";_bebcb _f .Time ;_gddfe ="";_bbbade ="";_ffbbd _f .Time ;_aaaab ="";_cacc ="";_eddc ="";); +// FieldFlag represents form field flags. Some of the flags can apply to all types of fields whereas other +// flags are specific. +type FieldFlag uint32 ; -// DecodeArray returns the range of color component values in DeviceRGB colorspace. -func (_eddg *PdfColorspaceDeviceRGB )DecodeArray ()[]float64 {return []float64 {0.0,1.0,0.0,1.0,0.0,1.0};};func (_fgeab *PdfWriter )writeOutputIntents ()error {if len (_fgeab ._bfedd )==0{return nil ;};_degcd :=make ([]_aff .PdfObject ,len (_fgeab ._bfedd )); -for _befcb ,_eebef :=range _fgeab ._bfedd {_gddfb :=_eebef .ToPdfObject ();_degcd [_befcb ]=_aff .MakeIndirectObject (_gddfb );};_febgc :=_aff .MakeIndirectObject (_aff .MakeArray (_degcd ...));_fgeab ._cdccb .Set ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073",_febgc ); -if _bdfbf :=_fgeab .addObjects (_febgc );_bdfbf !=nil {return _bdfbf ;};return nil ;}; +// BorderEffect represents a border effect (Table 167 p. 395). +type BorderEffect int ; -// ColorToRGB converts gray -> rgb for a single color component. -func (_adad *PdfColorspaceDeviceGray )ColorToRGB (color PdfColor )(PdfColor ,error ){_baea ,_gegc :=color .(*PdfColorDeviceGray );if !_gegc {_adg .Log .Debug ("\u0049\u006e\u0070\u0075\u0074\u0020\u0063\u006f\u006c\u006fr\u0020\u006e\u006f\u0074\u0020\u0064\u0065v\u0069\u0063\u0065\u0020\u0067\u0072\u0061\u0079\u0020\u0025\u0054",color ); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};return NewPdfColorDeviceRGB (float64 (*_baea ),float64 (*_baea ),float64 (*_baea )),nil ;}; +// NewPdfColorspaceDeviceCMYK returns a new CMYK32 colorspace object. +func NewPdfColorspaceDeviceCMYK ()*PdfColorspaceDeviceCMYK {return &PdfColorspaceDeviceCMYK {}};func (_aabdgg *LTV )generateVRIKey (_dcga *PdfSignature )(string ,error ){_afea ,_afdg :=_cbeaf (_dcga .Contents .Bytes ());if _afdg !=nil {return "",_afdg ; +};return _ga .ToUpper (_be .EncodeToString (_afea )),nil ;}; -// PdfColorspaceLab is a L*, a*, b* 3 component colorspace. -type PdfColorspaceLab struct{WhitePoint []float64 ;BlackPoint []float64 ;Range []float64 ;_bccfg *_aff .PdfIndirectObject ;};func (_debc Image )getBase ()_gd .ImageBase {return _gd .NewImageBase (int (_debc .Width ),int (_debc .Height ),int (_debc .BitsPerComponent ),_debc .ColorComponents ,_debc .Data ,_debc ._becb ,_debc ._edgef ); -}; +// GetOutlineTree returns the outline tree. +func (_cgfa *PdfReader )GetOutlineTree ()*PdfOutlineTreeNode {return _cgfa ._fcfc }; -// Compress is yet to be implemented. -// Should be able to compress in terms of JPEG quality parameter, -// and DPI threshold (need to know bounding area dimensions). -func (_bfddd DefaultImageHandler )Compress (input *Image ,quality int64 )(*Image ,error ){return input ,nil ;};func (_eefe *pdfFontSimple )getFontDescriptor ()*PdfFontDescriptor {if _cgda :=_eefe ._ggca ;_cgda !=nil {return _cgda ;};return _eefe ._adcc ; +// ConvertToBinary converts current image into binary (bi-level) format. +// Binary images are composed of single bits per pixel (only black or white). +// If provided image has more color components, then it would be converted into binary image using +// histogram auto threshold function. +func (_ebge *Image )ConvertToBinary ()error {if _ebge .ColorComponents ==1&&_ebge .BitsPerComponent ==1{return nil ;};_ebdae ,_bccdg :=_ebge .ToGoImage ();if _bccdg !=nil {return _bccdg ;};_fdbdc ,_bccdg :=_fc .MonochromeConverter .Convert (_ebdae );if _bccdg !=nil {return _bccdg ; +};_ebge .Data =_fdbdc .Base ().Data ;_ebge ._dgeb ,_bccdg =_fc .ScaleAlphaToMonochrome (_ebge ._dgeb ,int (_ebge .Width ),int (_ebge .Height ));if _bccdg !=nil {return _bccdg ;};_ebge .BitsPerComponent =1;_ebge .ColorComponents =1;_ebge ._gfbb =nil ;return nil ; }; -// GetContainingPdfObject returns the container of the pattern object (indirect object). -func (_fgge *PdfPattern )GetContainingPdfObject ()_aff .PdfObject {return _fgge ._cfegc }; +// HasPatternByName checks whether a pattern object is defined by the specified keyName. +func (_cffbc *PdfPageResources )HasPatternByName (keyName _dg .PdfObjectName )bool {_ ,_fbcfc :=_cffbc .GetPatternByName (keyName );return _fbcfc ;}; -// SetPdfCreationDate sets the CreationDate attribute of the output PDF. -func SetPdfCreationDate (creationDate _f .Time ){_aebda .Lock ();defer _aebda .Unlock ();_bebcb =creationDate ;}; +// Has checks if flag fl is set in flag and returns true if so, false otherwise. +func (_cgad FieldFlag )Has (fl FieldFlag )bool {return (_cgad .Mask ()&fl .Mask ())> 0}; -// SetAnnotations sets the annotations list. -func (_ddceb *PdfPage )SetAnnotations (annotations []*PdfAnnotation ){_ddceb ._bbgb =annotations }; +// PartialName returns the partial name of the field. +func (_bgbf *PdfField )PartialName ()string {_ceecb :="";if _bgbf .T !=nil {_ceecb =_bgbf .T .Decoded ();}else {_ag .Log .Debug ("\u0046\u0069el\u0064\u0020\u006di\u0073\u0073\u0069\u006eg T\u0020fi\u0065\u006c\u0064\u0020\u0028\u0069\u006eco\u006d\u0070\u0061\u0074\u0069\u0062\u006ce\u0029"); +};return _ceecb ;}; -// FieldFlattenOpts defines a set of options which can be used to configure -// the field flattening process. -type FieldFlattenOpts struct{ +// AddExtGState add External Graphics State (GState). The gsDict can be specified +// either directly as a dictionary or an indirect object containing a dictionary. +func (_acfc *PdfPageResources )AddExtGState (gsName _dg .PdfObjectName ,gsDict _dg .PdfObject )error {if _acfc .ExtGState ==nil {_acfc .ExtGState =_dg .MakeDict ();};_gcded :=_acfc .ExtGState ;_afffc ,_bcece :=_dg .TraceToDirectObject (_gcded ).(*_dg .PdfObjectDictionary ); +if !_bcece {_ag .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0074\u0079\u0070\u0065\u0020e\u0072r\u006f\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u002f\u0025\u0054\u0029",_gcded ,_dg .TraceToDirectObject (_gcded )); +return _dg .ErrTypeError ;};_afffc .Set (gsName ,gsDict );return nil ;}; -// FilterFunc allows filtering the form fields used in the flattening -// process. If the filter function returns true, the field is flattened, -// otherwise it is skipped. -// If a non-terminal field is discarded, all of its children (the fields -// present in the Kids array) are discarded as well. -// Non-terminal fields are kept in the AcroForm if one or more of their -// child fields have not been selected for flattening. -// If a filter function is not provided, all form fields are flattened. -FilterFunc FieldFilterFunc ; +// NewPdfOutline returns an initialized PdfOutline. +func NewPdfOutline ()*PdfOutline {_debdd :=&PdfOutline {_bbef :_dg .MakeIndirectObject (_dg .MakeDict ())};_debdd ._baddf =_debdd ;return _debdd ;}; -// AnnotFilterFunc allows filtering the annotations in the flattening -// process. If the filter function returns true, the annotation is flattened, -// otherwise it is skipped. -AnnotFilterFunc AnnotFilterFunc ;};func _cbdga (_gbeaa _aff .PdfObject )[]*_aff .PdfObjectStream {if _gbeaa ==nil {return nil ;};_abgfec ,_eaaccg :=_aff .GetArray (_gbeaa );if !_eaaccg ||_abgfec .Len ()==0{return nil ;};_ebdbc :=make ([]*_aff .PdfObjectStream ,0,_abgfec .Len ()); -for _ ,_edecb :=range _abgfec .Elements (){if _cdceb ,_feea :=_aff .GetStream (_edecb );_feea {_ebdbc =append (_ebdbc ,_cdceb );};};return _ebdbc ;};var (CourierName =_bcd .CourierName ;CourierBoldName =_bcd .CourierBoldName ;CourierObliqueName =_bcd .CourierObliqueName ; -CourierBoldObliqueName =_bcd .CourierBoldObliqueName ;HelveticaName =_bcd .HelveticaName ;HelveticaBoldName =_bcd .HelveticaBoldName ;HelveticaObliqueName =_bcd .HelveticaObliqueName ;HelveticaBoldObliqueName =_bcd .HelveticaBoldObliqueName ;SymbolName =_bcd .SymbolName ; -ZapfDingbatsName =_bcd .ZapfDingbatsName ;TimesRomanName =_bcd .TimesRomanName ;TimesBoldName =_bcd .TimesBoldName ;TimesItalicName =_bcd .TimesItalicName ;TimesBoldItalicName =_bcd .TimesBoldItalicName ;);func (_agfda *PdfFunctionType0 )processSamples ()error {_dfedg :=_aae .ResampleBytes (_agfda ._aggcg ,_agfda .BitsPerSample ); -_agfda ._bfcae =_dfedg ;return nil ;};func _gdbebd (_ggdbe *_aff .PdfObjectDictionary ,_bcggb *fontCommon )(*pdfFontType3 ,error ){_dafa :=_gface (_bcggb );_bcge :=_ggdbe .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r");if _bcge ==nil {_bcge =_aff .MakeInteger (0); -};_dafa .FirstChar =_bcge ;_eefef ,_cdfcd :=_aff .GetIntVal (_bcge );if !_cdfcd {_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0046i\u0072s\u0074C\u0068\u0061\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029",_bcge ); -return nil ,_aff .ErrTypeError ;};_efcf :=_eee .CharCode (_eefef );_bcge =_ggdbe .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072");if _bcge ==nil {_bcge =_aff .MakeInteger (255);};_dafa .LastChar =_bcge ;_eefef ,_cdfcd =_aff .GetIntVal (_bcge ); -if !_cdfcd {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004c\u0061\u0073\u0074\u0043h\u0061\u0072\u0020\u0074\u0079\u0070\u0065 \u0028\u0025\u0054\u0029",_bcge );return nil ,_aff .ErrTypeError ; -};_ccgcd :=_eee .CharCode (_eefef );_bcge =_ggdbe .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");if _bcge !=nil {_dafa .Resources =_bcge ;};_bcge =_ggdbe .Get ("\u0043h\u0061\u0072\u0050\u0072\u006f\u0063s");if _bcge ==nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0068\u0061\u0072\u0050\u0072\u006f\u0063\u0073\u0020(%\u0076\u0029",_bcge ); -return nil ,_aff .ErrNotSupported ;};_dafa .CharProcs =_bcge ;_bcge =_ggdbe .Get ("\u0046\u006f\u006e\u0074\u004d\u0061\u0074\u0072\u0069\u0078");if _bcge ==nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0046\u006f\u006et\u004d\u0061\u0074\u0072\u0069\u0078\u0020\u0028\u0025\u0076\u0029",_bcge ); -return nil ,_aff .ErrNotSupported ;};_dafa .FontMatrix =_bcge ;_dafa ._bbef =make (map[_eee .CharCode ]float64 );_bcge =_ggdbe .Get ("\u0057\u0069\u0064\u0074\u0068\u0073");if _bcge !=nil {_dafa .Widths =_bcge ;_aeef ,_gafc :=_aff .GetArray (_bcge );if !_gafc {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020W\u0069\u0064t\u0068\u0073\u0020\u0061\u0074\u0074\u0072\u0069b\u0075\u0074\u0065\u0020\u0021\u003d\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025\u0054\u0029",_bcge ); -return nil ,_aff .ErrTypeError ;};_eeeab ,_gggbf :=_aeef .ToFloat64Array ();if _gggbf !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0077\u0069d\u0074\u0068\u0073\u0020\u0074\u006f\u0020a\u0072\u0072\u0061\u0079"); -return nil ,_gggbf ;};if len (_eeeab )!=int (_ccgcd -_efcf +1){_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0077\u0069\u0064\u0074\u0068s\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0025\u0064 \u0028\u0025\u0064\u0029",_ccgcd -_efcf +1,len (_eeeab )); -return nil ,_aff .ErrRangeError ;};_ebgf ,_gafc :=_aff .GetArray (_dafa .FontMatrix );if !_gafc {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0046\u006f\u006e\u0074\u004d\u0061\u0074\u0072\u0069\u0078\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0021\u003d\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0025\u0054\u0029",_ebgf ); -return nil ,_gggbf ;};_egab ,_gggbf :=_ebgf .ToFloat64Array ();if _gggbf !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020c\u006f\u006ev\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0046o\u006e\u0074\u004d\u0061\u0074\u0072\u0069\u0078\u0020\u0074\u006f\u0020a\u0072\u0072\u0061\u0079"); -return nil ,_gggbf ;};_ggbbc :=_eb .NewMatrix (_egab [0],_egab [1],_egab [2],_egab [3],_egab [4],_egab [5]);for _bece ,_edaea :=range _eeeab {_edfbc ,_ :=_ggbbc .Transform (_edaea ,_edaea );_dafa ._bbef [_efcf +_eee .CharCode (_bece )]=_edfbc ;};};_dafa .Encoding =_aff .TraceToDirectObject (_ggdbe .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")); -_gecfa :=_ggdbe .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e");if _gecfa !=nil {_dafa ._ccbfg =_aff .TraceToDirectObject (_gecfa );_ddfga ,_aabc :=_dgdfe (_dafa ._ccbfg ,&_dafa .fontCommon );if _aabc !=nil {return nil ,_aabc ;};_dafa ._dcad =_ddfga ; -};if _dfafc :=_dafa ._dcad ;_dfafc !=nil {_dafa ._bfcg =_eee .NewCMapEncoder ("",nil ,_dfafc );}else {_dafa ._bfcg =_eee .NewPdfDocEncoder ();};return _dafa ,nil ;};func (_cdcb *PdfWriter )setHashIDs (_adedb _c .Hash )error {_fefeg :=_adedb .Sum (nil ); -if _cdcb ._bacb ==""{_cdcb ._bacb =_fe .EncodeToString (_fefeg [:8]);};_cdcb .setDocumentIDs (_cdcb ._bacb ,_fe .EncodeToString (_fefeg [8:]));return nil ;}; +// StdFontName represents name of a standard font. +type StdFontName =_bbg .StdFontName ; -// FieldFilterFunc represents a PDF field filtering function. If the function -// returns true, the PDF field is kept, otherwise it is discarded. -type FieldFilterFunc func (*PdfField )bool ; +// ReaderOpts defines options for creating PdfReader instances. +type ReaderOpts struct{ -// GenerateXObjectName generates an unused XObject name that can be used for -// adding new XObjects. Uses format XObj1, XObj2, ... -func (_ffdeb *PdfPageResources )GenerateXObjectName ()_aff .PdfObjectName {_cbcfc :=1;for {_fbde :=_aff .MakeName (_e .Sprintf ("\u0058\u004f\u0062\u006a\u0025\u0064",_cbcfc ));if !_ffdeb .HasXObjectByName (*_fbde ){return *_fbde ;};_cbcfc ++;};}; +// Password password of the PDF file encryption. +// Default: empty (""). +Password string ; -// NewPdfColorDeviceCMYK returns a new CMYK32 color. -func NewPdfColorDeviceCMYK (c ,m ,y ,k float64 )*PdfColorDeviceCMYK {_cfac :=PdfColorDeviceCMYK {c ,m ,y ,k };return &_cfac ;}; +// LazyLoad set if the PDF file would be loaded using lazy-loading mode. +// Default: true. +LazyLoad bool ; -// ToPdfObject returns the PDF representation of the VRI dictionary. -func (_eaac *VRI )ToPdfObject ()*_aff .PdfObjectDictionary {_bfgdc :=_aff .MakeDict ();_bfgdc .SetIfNotNil (_aff .PdfObjectName ("\u0043\u0065\u0072\u0074"),_egcdd (_eaac .Cert ));_bfgdc .SetIfNotNil (_aff .PdfObjectName ("\u004f\u0043\u0053\u0050"),_egcdd (_eaac .OCSP )); -_bfgdc .SetIfNotNil (_aff .PdfObjectName ("\u0043\u0052\u004c"),_egcdd (_eaac .CRL ));_bfgdc .SetIfNotNil ("\u0054\u0055",_eaac .TU );_bfgdc .SetIfNotNil ("\u0054\u0053",_eaac .TS );return _bfgdc ;}; +// ComplianceMode set if parsed PDF file should contain meta information for the verifiers of the compliance standards like PDF/A. +ComplianceMode bool ;};func (_cccg *PdfReader )newPdfAnnotationFromIndirectObject (_bafb *_dg .PdfIndirectObject )(*PdfAnnotation ,error ){_bbe ,_bba :=_bafb .PdfObject .(*_dg .PdfObjectDictionary );if !_bba {return nil ,_b .Errorf ("\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0069\u006e\u0064\u0069r\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020a \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};if model :=_cccg ._cadfa .GetModelFromPrimitive (_bbe );model !=nil {_ebae ,_dca :=model .(*PdfAnnotation );if !_dca {return nil ,_b .Errorf ("\u0063\u0061\u0063\u0068\u0065\u0064 \u006d\u006f\u0064\u0065\u006c\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0050D\u0046\u0020\u0061\u006e\u006e\u006f\u0074a\u0074\u0069\u006f\u006e"); +};return _ebae ,nil ;};_dcccc :=&PdfAnnotation {};_dcccc ._cdf =_bafb ;_cccg ._cadfa .Register (_bbe ,_dcccc );if _gggg :=_bbe .Get ("\u0054\u0079\u0070\u0065");_gggg !=nil {_fcea ,_cadg :=_gggg .(*_dg .PdfObjectName );if !_cadg {_ag .Log .Trace ("\u0049\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u0021\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u004e\u0061m\u0065",_gggg ); +}else {if *_fcea !="\u0041\u006e\u006eo\u0074"{_ag .Log .Trace ("\u0055\u006e\u0073\u0075\u0073\u0070\u0065\u0063\u0074\u0065d\u0020\u0054\u0079\u0070\u0065\u0020\u0021=\u0020\u0041\u006e\u006e\u006f\u0074\u0020\u0028\u0025\u0073\u0029",*_fcea );};};}; +if _fcec :=_bbe .Get ("\u0052\u0065\u0063\u0074");_fcec !=nil {_dcccc .Rect =_fcec ;};if _aega :=_bbe .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073");_aega !=nil {_dcccc .Contents =_aega ;};if _faeg :=_bbe .Get ("\u0050");_faeg !=nil {_dcccc .P =_faeg ; +};if _ffd :=_bbe .Get ("\u004e\u004d");_ffd !=nil {_dcccc .NM =_ffd ;};if _bfcd :=_bbe .Get ("\u004d");_bfcd !=nil {_dcccc .M =_bfcd ;};if _ffac :=_bbe .Get ("\u0046");_ffac !=nil {_dcccc .F =_ffac ;};if _ddc :=_bbe .Get ("\u0041\u0050");_ddc !=nil {_dcccc .AP =_ddc ; +};if _bec :=_bbe .Get ("\u0041\u0053");_bec !=nil {_dcccc .AS =_bec ;};if _cbfb :=_bbe .Get ("\u0042\u006f\u0072\u0064\u0065\u0072");_cbfb !=nil {_dcccc .Border =_cbfb ;};if _bdg :=_bbe .Get ("\u0043");_bdg !=nil {_dcccc .C =_bdg ;};if _gff :=_bbe .Get ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074"); +_gff !=nil {_dcccc .StructParent =_gff ;};if _fac :=_bbe .Get ("\u004f\u0043");_fac !=nil {_dcccc .OC =_fac ;};_agg :=_bbe .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");if _agg ==nil {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u0049\u004e\u0047:\u0020\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079 \u0069s\u0073\u0075\u0065\u0020\u002d\u0020a\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u002d\u0020\u0061\u0073\u0073u\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0073\u0075\u0062\u0074\u0079p\u0065"); +_dcccc ._egcg =nil ;return _dcccc ,nil ;};_deb ,_feea :=_agg .(*_dg .PdfObjectName );if !_feea {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065 !\u003d\u0020n\u0061\u006d\u0065\u0020\u0028\u0025\u0054\u0029",_agg ); +return nil ,_b .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u0074\u0079\u0070\u0065\u0020\u0021\u003d n\u0061\u006d\u0065 \u0028%\u0054\u0029",_agg );};switch *_deb {case "\u0054\u0065\u0078\u0074":_ace ,_dbe :=_cccg .newPdfAnnotationTextFromDict (_bbe ); +if _dbe !=nil {return nil ,_dbe ;};_ace .PdfAnnotation =_dcccc ;_dcccc ._egcg =_ace ;return _dcccc ,nil ;case "\u004c\u0069\u006e\u006b":_cgcd ,_adfa :=_cccg .newPdfAnnotationLinkFromDict (_bbe );if _adfa !=nil {return nil ,_adfa ;};_cgcd .PdfAnnotation =_dcccc ; +_dcccc ._egcg =_cgcd ;return _dcccc ,nil ;case "\u0046\u0072\u0065\u0065\u0054\u0065\u0078\u0074":_aag ,_gcbe :=_cccg .newPdfAnnotationFreeTextFromDict (_bbe );if _gcbe !=nil {return nil ,_gcbe ;};_aag .PdfAnnotation =_dcccc ;_dcccc ._egcg =_aag ;return _dcccc ,nil ; +case "\u004c\u0069\u006e\u0065":_dccg ,_ffb :=_cccg .newPdfAnnotationLineFromDict (_bbe );if _ffb !=nil {return nil ,_ffb ;};_dccg .PdfAnnotation =_dcccc ;_dcccc ._egcg =_dccg ;_ag .Log .Trace ("\u004c\u0049\u004e\u0045\u0020\u0041N\u004e\u004f\u0054\u0041\u0054\u0049\u004f\u004e\u003a\u0020\u0061\u006e\u006eo\u0074\u0020\u0028\u0025\u0054\u0029\u003a \u0025\u002b\u0076\u000a",_dcccc ,_dcccc ); +_ag .Log .Trace ("\u004c\u0049\u004eE\u0020\u0041\u004e\u004eO\u0054\u0041\u0054\u0049\u004f\u004e\u003a \u0063\u0074\u0078\u0020\u0028\u0025\u0054\u0029\u003a\u0020\u0025\u002b\u0076\u000a",_dccg ,_dccg );_ag .Log .Trace ("\u004c\u0049\u004e\u0045\u0020\u0041\u004e\u004e\u004f\u0054\u0041\u0054\u0049\u004f\u004e\u0020\u004d\u0061\u0072\u006b\u0075\u0070\u003a\u0020c\u0074\u0078\u0020\u0028\u0025T\u0029\u003a \u0025\u002b\u0076\u000a",_dccg .PdfAnnotationMarkup ,_dccg .PdfAnnotationMarkup ); +return _dcccc ,nil ;case "\u0053\u0071\u0075\u0061\u0072\u0065":_acee ,_agag :=_cccg .newPdfAnnotationSquareFromDict (_bbe );if _agag !=nil {return nil ,_agag ;};_acee .PdfAnnotation =_dcccc ;_dcccc ._egcg =_acee ;return _dcccc ,nil ;case "\u0043\u0069\u0072\u0063\u006c\u0065":_fdbe ,_cbe :=_cccg .newPdfAnnotationCircleFromDict (_bbe ); +if _cbe !=nil {return nil ,_cbe ;};_fdbe .PdfAnnotation =_dcccc ;_dcccc ._egcg =_fdbe ;return _dcccc ,nil ;case "\u0050o\u006c\u0079\u0067\u006f\u006e":_dff ,_fdf :=_cccg .newPdfAnnotationPolygonFromDict (_bbe );if _fdf !=nil {return nil ,_fdf ;};_dff .PdfAnnotation =_dcccc ; +_dcccc ._egcg =_dff ;return _dcccc ,nil ;case "\u0050\u006f\u006c\u0079\u004c\u0069\u006e\u0065":_ddab ,_fda :=_cccg .newPdfAnnotationPolyLineFromDict (_bbe );if _fda !=nil {return nil ,_fda ;};_ddab .PdfAnnotation =_dcccc ;_dcccc ._egcg =_ddab ;return _dcccc ,nil ; +case "\u0048i\u0067\u0068\u006c\u0069\u0067\u0068t":_cbde ,_ffec :=_cccg .newPdfAnnotationHighlightFromDict (_bbe );if _ffec !=nil {return nil ,_ffec ;};_cbde .PdfAnnotation =_dcccc ;_dcccc ._egcg =_cbde ;return _dcccc ,nil ;case "\u0055n\u0064\u0065\u0072\u006c\u0069\u006ee":_bgda ,_ebcb :=_cccg .newPdfAnnotationUnderlineFromDict (_bbe ); +if _ebcb !=nil {return nil ,_ebcb ;};_bgda .PdfAnnotation =_dcccc ;_dcccc ._egcg =_bgda ;return _dcccc ,nil ;case "\u0053\u0071\u0075\u0069\u0067\u0067\u006c\u0079":_accd ,_fbg :=_cccg .newPdfAnnotationSquigglyFromDict (_bbe );if _fbg !=nil {return nil ,_fbg ; +};_accd .PdfAnnotation =_dcccc ;_dcccc ._egcg =_accd ;return _dcccc ,nil ;case "\u0053t\u0072\u0069\u006b\u0065\u004f\u0075t":_bffc ,_eag :=_cccg .newPdfAnnotationStrikeOut (_bbe );if _eag !=nil {return nil ,_eag ;};_bffc .PdfAnnotation =_dcccc ;_dcccc ._egcg =_bffc ; +return _dcccc ,nil ;case "\u0043\u0061\u0072e\u0074":_aaa ,_bcdf :=_cccg .newPdfAnnotationCaretFromDict (_bbe );if _bcdf !=nil {return nil ,_bcdf ;};_aaa .PdfAnnotation =_dcccc ;_dcccc ._egcg =_aaa ;return _dcccc ,nil ;case "\u0053\u0074\u0061m\u0070":_caac ,_cbcf :=_cccg .newPdfAnnotationStampFromDict (_bbe ); +if _cbcf !=nil {return nil ,_cbcf ;};_caac .PdfAnnotation =_dcccc ;_dcccc ._egcg =_caac ;return _dcccc ,nil ;case "\u0049\u006e\u006b":_fdac ,_dcca :=_cccg .newPdfAnnotationInkFromDict (_bbe );if _dcca !=nil {return nil ,_dcca ;};_fdac .PdfAnnotation =_dcccc ; +_dcccc ._egcg =_fdac ;return _dcccc ,nil ;case "\u0050\u006f\u0070u\u0070":_fbe ,_dadg :=_cccg .newPdfAnnotationPopupFromDict (_bbe );if _dadg !=nil {return nil ,_dadg ;};_fbe .PdfAnnotation =_dcccc ;_dcccc ._egcg =_fbe ;return _dcccc ,nil ;case "\u0046\u0069\u006c\u0065\u0041\u0074\u0074\u0061\u0063h\u006d\u0065\u006e\u0074":_eded ,_bcfg :=_cccg .newPdfAnnotationFileAttachmentFromDict (_bbe ); +if _bcfg !=nil {return nil ,_bcfg ;};_eded .PdfAnnotation =_dcccc ;_dcccc ._egcg =_eded ;return _dcccc ,nil ;case "\u0053\u006f\u0075n\u0064":_fca ,_ebe :=_cccg .newPdfAnnotationSoundFromDict (_bbe );if _ebe !=nil {return nil ,_ebe ;};_fca .PdfAnnotation =_dcccc ; +_dcccc ._egcg =_fca ;return _dcccc ,nil ;case "\u0052i\u0063\u0068\u004d\u0065\u0064\u0069a":_dccb ,_eaef :=_cccg .newPdfAnnotationRichMediaFromDict (_bbe );if _eaef !=nil {return nil ,_eaef ;};_dccb .PdfAnnotation =_dcccc ;_dcccc ._egcg =_dccb ;return _dcccc ,nil ; +case "\u004d\u006f\u0076i\u0065":_gbc ,_fece :=_cccg .newPdfAnnotationMovieFromDict (_bbe );if _fece !=nil {return nil ,_fece ;};_gbc .PdfAnnotation =_dcccc ;_dcccc ._egcg =_gbc ;return _dcccc ,nil ;case "\u0053\u0063\u0072\u0065\u0065\u006e":_gbcd ,_cadge :=_cccg .newPdfAnnotationScreenFromDict (_bbe ); +if _cadge !=nil {return nil ,_cadge ;};_gbcd .PdfAnnotation =_dcccc ;_dcccc ._egcg =_gbcd ;return _dcccc ,nil ;case "\u0057\u0069\u0064\u0067\u0065\u0074":_cadd ,_ccdde :=_cccg .newPdfAnnotationWidgetFromDict (_bbe );if _ccdde !=nil {return nil ,_ccdde ; +};_cadd .PdfAnnotation =_dcccc ;_dcccc ._egcg =_cadd ;return _dcccc ,nil ;case "P\u0072\u0069\u006e\u0074\u0065\u0072\u004d\u0061\u0072\u006b":_beec ,_dfcg :=_cccg .newPdfAnnotationPrinterMarkFromDict (_bbe );if _dfcg !=nil {return nil ,_dfcg ;};_beec .PdfAnnotation =_dcccc ; +_dcccc ._egcg =_beec ;return _dcccc ,nil ;case "\u0054r\u0061\u0070\u004e\u0065\u0074":_bbad ,_bfa :=_cccg .newPdfAnnotationTrapNetFromDict (_bbe );if _bfa !=nil {return nil ,_bfa ;};_bbad .PdfAnnotation =_dcccc ;_dcccc ._egcg =_bbad ;return _dcccc ,nil ; +case "\u0057a\u0074\u0065\u0072\u006d\u0061\u0072k":_dbgc ,_ffc :=_cccg .newPdfAnnotationWatermarkFromDict (_bbe );if _ffc !=nil {return nil ,_ffc ;};_dbgc .PdfAnnotation =_dcccc ;_dcccc ._egcg =_dbgc ;return _dcccc ,nil ;case "\u0033\u0044":_eef ,_bade :=_cccg .newPdfAnnotation3DFromDict (_bbe ); +if _bade !=nil {return nil ,_bade ;};_eef .PdfAnnotation =_dcccc ;_dcccc ._egcg =_eef ;return _dcccc ,nil ;case "\u0050\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u006f\u006e":_efga ,_afcf :=_cccg .newPdfAnnotationProjectionFromDict (_bbe );if _afcf !=nil {return nil ,_afcf ; +};_efga .PdfAnnotation =_dcccc ;_dcccc ._egcg =_efga ;return _dcccc ,nil ;case "\u0052\u0065\u0064\u0061\u0063\u0074":_ddbb ,_fcce :=_cccg .newPdfAnnotationRedactFromDict (_bbe );if _fcce !=nil {return nil ,_fcce ;};_ddbb .PdfAnnotation =_dcccc ;_dcccc ._egcg =_ddbb ; +return _dcccc ,nil ;};_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0075\u006e\u006b\u006e\u006f\u0077\u006e\u0020a\u006e\u006e\u006f\u0074\u0061t\u0069\u006fn\u003a\u0020\u0025\u0073",*_deb ); +return nil ,nil ;}; -// SetXObjectByName adds the XObject from the passed in stream to the page resources. -// The added XObject is identified by the specified name. -func (_faebg *PdfPageResources )SetXObjectByName (keyName _aff .PdfObjectName ,stream *_aff .PdfObjectStream )error {if _faebg .XObject ==nil {_faebg .XObject =_aff .MakeDict ();};_dedcfg :=_aff .TraceToDirectObject (_faebg .XObject );_ceedg ,_ddgbg :=_dedcfg .(*_aff .PdfObjectDictionary ); -if !_ddgbg {_adg .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0058\u004f\u0062j\u0065\u0063\u0074\u002c\u0020\u0067\u006f\u0074\u0020\u0025T\u002f\u0025\u0054",_faebg .XObject ,_dedcfg );return _g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); -};_ceedg .Set (keyName ,stream );return nil ;}; +// ToPdfObject returns the PDF representation of the outline tree node. +func (_beac *PdfOutlineTreeNode )ToPdfObject ()_dg .PdfObject {return _beac .GetContext ().ToPdfObject ()}; -// ImageToRGB convert 1-component grayscale data to 3-component RGB. -func (_cebe *PdfColorspaceDeviceGray )ImageToRGB (img Image )(Image ,error ){if img .ColorComponents !=1{return img ,_g .New ("\u0074\u0068e \u0070\u0072\u006fv\u0069\u0064\u0065\u0064 im\u0061ge\u0020\u0069\u0073\u0020\u006e\u006f\u0074 g\u0072\u0061\u0079\u0020\u0073\u0063\u0061l\u0065"); -};_fbab ,_bgce :=_gd .NewImage (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,img .Data ,img ._becb ,img ._edgef );if _bgce !=nil {return img ,_bgce ;};_dfbf ,_bgce :=_gd .NRGBAConverter .Convert (_fbab );if _bgce !=nil {return img ,_bgce ; -};_ccea :=_efecb (_dfbf .Base ());_adg .Log .Trace ("\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079\u0020\u002d>\u0020\u0052\u0047\u0042");_adg .Log .Trace ("s\u0061\u006d\u0070\u006c\u0065\u0073\u003a\u0020\u0025\u0076",img .Data );_adg .Log .Trace ("\u0052G\u0042 \u0073\u0061\u006d\u0070\u006c\u0065\u0073\u003a\u0020\u0025\u0076",_ccea .Data ); -_adg .Log .Trace ("\u0025\u0076\u0020\u002d\u003e\u0020\u0025\u0076",img ,_ccea );return _ccea ,nil ;}; +// ToPdfObject implements interface PdfModel. +func (_ddceg *PdfAnnotationSquiggly )ToPdfObject ()_dg .PdfObject {_ddceg .PdfAnnotation .ToPdfObject ();_dbcc :=_ddceg ._cdf ;_ceba :=_dbcc .PdfObject .(*_dg .PdfObjectDictionary );_ddceg .PdfAnnotationMarkup .appendToPdfDictionary (_ceba );_ceba .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0053\u0071\u0075\u0069\u0067\u0067\u006c\u0079")); +_ceba .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_ddceg .QuadPoints );return _dbcc ;};func (_gefd fontCommon )fontFlags ()int {if _gefd ._ccfb ==nil {return 0;};return _gefd ._ccfb ._gcdf ;}; -// GetPrimitiveFromModel returns the primitive object corresponding to the input `model`. -func (_adbgd *modelManager )GetPrimitiveFromModel (model PdfModel )_aff .PdfObject {_aaega ,_aedfc :=_adbgd ._ceaea [model ];if !_aedfc {return nil ;};return _aaega ;};func _aefbgd (_ccdgbc *PdfPage ){_fbfa :=_gff .GetLicenseKey ();if _fbfa !=nil &&_fbfa .IsLicensed (){return ; -};_abfga :=_aff .PdfObjectName ("\u0055\u0046\u0031");if !_ccdgbc .Resources .HasFontByName (_abfga ){_ccdgbc .Resources .SetFontByName (_abfga ,DefaultFont ().ToPdfObject ());};var _daedgd []string ;_daedgd =append (_daedgd ,"\u0071");_daedgd =append (_daedgd ,"\u0042\u0054"); -_daedgd =append (_daedgd ,_e .Sprintf ("\u002f%\u0073\u0020\u0031\u0034\u0020\u0054f",_abfga .String ()));_daedgd =append (_daedgd ,"\u0031\u0020\u0030\u0020\u0030\u0020\u0072\u0067");_daedgd =append (_daedgd ,"\u0031\u0030\u0020\u0031\u0030\u0020\u0054\u0064"); -_bdefc :="\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064\u0020\u0055\u006e\u0069\u0044o\u0063\u0020\u002d\u0020\u0047\u0065\u0074\u0020\u0061\u0020\u006c\u0069\u0063e\u006e\u0073\u0065\u0020\u006f\u006e\u0020\u0068\u0074\u0074\u0070\u0073:/\u002f\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"; -_daedgd =append (_daedgd ,_e .Sprintf ("\u0028%\u0073\u0029\u0020\u0054\u006a",_bdefc ));_daedgd =append (_daedgd ,"\u0045\u0054");_daedgd =append (_daedgd ,"\u0051");_acad :=_ba .Join (_daedgd ,"\u000a");_ccdgbc .AddContentStreamByString (_acad );_ccdgbc .ToPdfObject (); -}; +// PdfAppender appends new PDF content to an existing PDF document via incremental updates. +type PdfAppender struct{_cga _cf .ReadSeeker ;_gfab *_dg .PdfParser ;_debg *PdfReader ;Reader *PdfReader ;_ggdd []*PdfPage ;_afab *PdfAcroForm ;_cfdd *DSS ;_accbd *Permissions ;_ceef _dg .XrefTable ;_bcdg int64 ;_ceecc int ;_dgfd []_dg .PdfObject ;_efa map[_dg .PdfObject ]struct{}; +_gebe map[_dg .PdfObject ]int64 ;_eede map[_dg .PdfObject ]struct{};_ebaa map[_dg .PdfObject ]struct{};_dcaf int64 ;_fdbb bool ;_acb string ;_ccfc *EncryptOptions ;_fega *PdfInfo ;}; -// GetAsTilingPattern returns a tiling pattern. Check with IsTiling() prior to using this. -func (_fcea *PdfPattern )GetAsTilingPattern ()*PdfTilingPattern {return _fcea ._abbe .(*PdfTilingPattern );};func (_cbdb *PdfAcroForm )filteredFields (_dffcf FieldFilterFunc ,_badgf bool )[]*PdfField {if _cbdb ==nil {return nil ;};return _ebaff (_cbdb .Fields ,_dffcf ,_badgf ); -};func (_gabef *PdfWriter )writeAcroFormFields ()error {if _gabef ._deacb ==nil {return nil ;};_adg .Log .Trace ("\u0057r\u0069t\u0069\u006e\u0067\u0020\u0061c\u0072\u006f \u0066\u006f\u0072\u006d\u0073");_afgcf :=_gabef ._deacb .ToPdfObject ();_adg .Log .Trace ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u003a\u0020\u0025\u002b\u0076",_afgcf ); -_gabef ._cdccb .Set ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d",_afgcf );_gcec :=_gabef .addObjects (_afgcf );if _gcec !=nil {return _gcec ;};return nil ;}; +// GetType returns the button field type which returns one of the following +// - PdfFieldButtonPush for push button fields +// - PdfFieldButtonCheckbox for checkbox fields +// - PdfFieldButtonRadio for radio button fields +func (_dcebc *PdfFieldButton )GetType ()ButtonType {_febf :=ButtonTypeCheckbox ;if _dcebc .Ff !=nil {if (uint32 (*_dcebc .Ff )&FieldFlagPushbutton .Mask ())> 0{_febf =ButtonTypePush ;}else if (uint32 (*_dcebc .Ff )&FieldFlagRadio .Mask ())> 0{_febf =ButtonTypeRadio ; +};};return _febf ;};func _fbff (_afegg *_dg .PdfObjectDictionary ,_aeed *fontCommon )(*pdfCIDFontType0 ,error ){if _aeed ._bcga !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030"{_ag .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0046\u006fn\u0074\u0020\u0053u\u0062\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020CI\u0044\u0046\u006fn\u0074\u0054y\u0070\u0065\u0030\u002e\u0020\u0066o\u006e\u0074=\u0025\u0073",_aeed ); +return nil ,_dg .ErrRangeError ;};_bfcbf :=_ggbff (_aeed );_bcaec ,_ffga :=_dg .GetDict (_afegg .Get ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f"));if !_ffga {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043I\u0044\u0053\u0079st\u0065\u006d\u0049\u006e\u0066\u006f \u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u002e\u0020\u0066\u006f\u006e\u0074=\u0025\u0073",_aeed ); +return nil ,ErrRequiredAttributeMissing ;};_bfcbf .CIDSystemInfo =_bcaec ;_bfcbf .DW =_afegg .Get ("\u0044\u0057");_bfcbf .W =_afegg .Get ("\u0057");_bfcbf .DW2 =_afegg .Get ("\u0044\u0057\u0032");_bfcbf .W2 =_afegg .Get ("\u0057\u0032");_bfcbf ._gfdca =1000.0; +if _cbbba ,_bfaf :=_dg .GetNumberAsFloat (_bfcbf .DW );_bfaf ==nil {_bfcbf ._gfdca =_cbbba ;};_bfga ,_bbbcea :=_gacbe (_bfcbf .W );if _bbbcea !=nil {return nil ,_bbbcea ;};if _bfga ==nil {_bfga =map[_bd .CharCode ]float64 {};};_bfcbf ._gfcba =_bfga ;return _bfcbf ,nil ; +};func _fgcbf ()string {_fgefgf .Lock ();defer _fgefgf .Unlock ();if len (_cebb )> 0{return _cebb ;};return "\u0055n\u0069\u0044\u006f\u0063 \u002d\u0020\u0068\u0074\u0074p\u003a/\u002fu\u006e\u0069\u0064\u006f\u0063\u002e\u0069o";}; -// ColorFromFloats returns a new PdfColorDevice based on the input slice of -// color components. The slice should contain four elements representing the -// cyan, magenta, yellow and key components of the color. The values of the -// elements should be between 0 and 1. -func (_ffeda *PdfColorspaceDeviceCMYK )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=4{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_abad :=vals [0];if _abad < 0.0||_abad > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_abad ); -return nil ,ErrColorOutOfRange ;};_egdg :=vals [1];if _egdg < 0.0||_egdg > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_egdg );return nil ,ErrColorOutOfRange ; -};_dcba :=vals [2];if _dcba < 0.0||_dcba > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_dcba );return nil ,ErrColorOutOfRange ;};_ecea :=vals [3]; -if _ecea < 0.0||_ecea > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_ecea );return nil ,ErrColorOutOfRange ;};_bbgd :=NewPdfColorDeviceCMYK (_abad ,_egdg ,_dcba ,_ecea ); -return _bbgd ,nil ;}; +// ToPdfObject returns the PDF representation of the colorspace. +func (_feae *PdfPageResourcesColorspaces )ToPdfObject ()_dg .PdfObject {_ffggfa :=_dg .MakeDict ();for _ ,_fgbed :=range _feae .Names {_ffggfa .Set (_dg .PdfObjectName (_fgbed ),_feae .Colorspaces [_fgbed ].ToPdfObject ());};if _feae ._dcebf !=nil {_feae ._dcebf .PdfObject =_ffggfa ; +return _feae ._dcebf ;};return _ffggfa ;};func (_gbcfcg *PdfWriter )addObject (_dceag _dg .PdfObject )bool {_cdagb :=_gbcfcg .hasObject (_dceag );if !_cdagb {_cfafe :=_dg .ResolveReferencesDeep (_dceag ,_gbcfcg ._cffaa );if _cfafe !=nil {_ag .Log .Debug ("E\u0052R\u004f\u0052\u003a\u0020\u0025\u0076\u0020\u002d \u0073\u006b\u0069\u0070pi\u006e\u0067",_cfafe ); +};_gbcfcg ._agaba =append (_gbcfcg ._agaba ,_dceag );_gbcfcg ._fdbfa [_dceag ]=struct{}{};return true ;};return false ;}; -// WriteString outputs the object as it is to be written to file. -func (_ffdgc *pdfSignDictionary )WriteString ()string {_ffdgc ._aeage =0;_ffdgc ._gebef =0;_ffdgc ._bedebd =0;_ffdgc ._ebceg =0;_egefd :=_af .NewBuffer (nil );_egefd .WriteString ("\u003c\u003c");for _ ,_aebgf :=range _ffdgc .Keys (){_gdda :=_ffdgc .Get (_aebgf ); -switch _aebgf {case "\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e":_egefd .WriteString (_aebgf .WriteString ());_egefd .WriteString ("\u0020");_ffdgc ._bedebd =_egefd .Len ();_egefd .WriteString (_gdda .WriteString ());_egefd .WriteString ("\u0020");_ffdgc ._ebceg =_egefd .Len ()-1; -case "\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073":_egefd .WriteString (_aebgf .WriteString ());_egefd .WriteString ("\u0020");_ffdgc ._aeage =_egefd .Len ();_egefd .WriteString (_gdda .WriteString ());_egefd .WriteString ("\u0020");_ffdgc ._gebef =_egefd .Len ()-1; -default:_egefd .WriteString (_aebgf .WriteString ());_egefd .WriteString ("\u0020");_egefd .WriteString (_gdda .WriteString ());};};_egefd .WriteString ("\u003e\u003e");return _egefd .String ();}; +// AddFont adds a font dictionary to the Font resources. +func (_ecbfc *PdfPage )AddFont (name _dg .PdfObjectName ,font _dg .PdfObject )error {if _ecbfc .Resources ==nil {_ecbfc .Resources =NewPdfPageResources ();};if _ecbfc .Resources .Font ==nil {_ecbfc .Resources .Font =_dg .MakeDict ();};_gegaa ,_bcdd :=_dg .TraceToDirectObject (_ecbfc .Resources .Font ).(*_dg .PdfObjectDictionary ); +if !_bcdd {_ag .Log .Debug ("\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u0066\u006f\u006et \u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u003a \u0025\u0076",_dg .TraceToDirectObject (_ecbfc .Resources .Font )); +return _bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_gegaa .Set (name ,font );return nil ;};func (_caacf *PdfWriter )makeOffSetReference (_dgdbf int64 ){_cdeaa :=_b .Sprintf ("\u0073\u0074\u0061\u0072\u0074\u0078\u0072\u0065\u0066\u000a\u0025\u0064\u000a",_dgdbf ); +_caacf .writeString (_cdeaa );_caacf .writeString ("\u0025\u0025\u0045\u004f\u0046\u000a");};func (_gfged *PdfWriter )copyObject (_cddfe _dg .PdfObject ,_adce map[_dg .PdfObject ]_dg .PdfObject ,_ceegc map[_dg .PdfObject ]struct{},_dcdfb bool )_dg .PdfObject {_dbcf :=!_gfged ._bbac &&_ceegc !=nil ; +if _acbfc ,_bfbggc :=_adce [_cddfe ];_bfbggc {if _dbcf &&!_dcdfb {delete (_ceegc ,_cddfe );};return _acbfc ;};if _cddfe ==nil {_efgbc :=_dg .MakeNull ();return _efgbc ;};_dffcf :=_cddfe ;switch _bcfec :=_cddfe .(type ){case *_dg .PdfObjectArray :_dagff :=_dg .MakeArray (); +_dffcf =_dagff ;_adce [_cddfe ]=_dffcf ;for _ ,_cfbdd :=range _bcfec .Elements (){_dagff .Append (_gfged .copyObject (_cfbdd ,_adce ,_ceegc ,_dcdfb ));};case *_dg .PdfObjectStreams :_fgbd :=&_dg .PdfObjectStreams {PdfObjectReference :_bcfec .PdfObjectReference }; +_dffcf =_fgbd ;_adce [_cddfe ]=_dffcf ;for _ ,_acabe :=range _bcfec .Elements (){_fgbd .Append (_gfged .copyObject (_acabe ,_adce ,_ceegc ,_dcdfb ));};case *_dg .PdfObjectStream :_baebc :=&_dg .PdfObjectStream {Stream :_bcfec .Stream ,PdfObjectReference :_bcfec .PdfObjectReference }; +_dffcf =_baebc ;_adce [_cddfe ]=_dffcf ;_baebc .PdfObjectDictionary =_gfged .copyObject (_bcfec .PdfObjectDictionary ,_adce ,_ceegc ,_dcdfb ).(*_dg .PdfObjectDictionary );case *_dg .PdfObjectDictionary :var _gfcaa bool ;if _dbcf &&!_dcdfb {if _cdggc ,_ :=_dg .GetNameVal (_bcfec .Get ("\u0054\u0079\u0070\u0065")); +_cdggc =="\u0050\u0061\u0067\u0065"{_ ,_bbadc :=_gfged ._fegdf [_bcfec ];_dcdfb =!_bbadc ;_gfcaa =_dcdfb ;};};_bfbea :=_dg .MakeDict ();_dffcf =_bfbea ;_adce [_cddfe ]=_dffcf ;for _ ,_gfafd :=range _bcfec .Keys (){_bfbea .Set (_gfafd ,_gfged .copyObject (_bcfec .Get (_gfafd ),_adce ,_ceegc ,_dcdfb )); +};if _gfcaa {_dffcf =_dg .MakeNull ();_dcdfb =false ;};case *_dg .PdfIndirectObject :_cdfdf :=&_dg .PdfIndirectObject {PdfObjectReference :_bcfec .PdfObjectReference };_dffcf =_cdfdf ;_adce [_cddfe ]=_dffcf ;_cdfdf .PdfObject =_gfged .copyObject (_bcfec .PdfObject ,_adce ,_ceegc ,_dcdfb ); +case *_dg .PdfObjectString :_dcfdb :=*_bcfec ;_dffcf =&_dcfdb ;_adce [_cddfe ]=_dffcf ;case *_dg .PdfObjectName :_gegccb :=*_bcfec ;_dffcf =&_gegccb ;_adce [_cddfe ]=_dffcf ;case *_dg .PdfObjectNull :_dffcf =_dg .MakeNull ();_adce [_cddfe ]=_dffcf ;case *_dg .PdfObjectInteger :_dgacg :=*_bcfec ; +_dffcf =&_dgacg ;_adce [_cddfe ]=_dffcf ;case *_dg .PdfObjectReference :_ggbc :=*_bcfec ;_dffcf =&_ggbc ;_adce [_cddfe ]=_dffcf ;case *_dg .PdfObjectFloat :_dfbgg :=*_bcfec ;_dffcf =&_dfbgg ;_adce [_cddfe ]=_dffcf ;case *_dg .PdfObjectBool :_dggbf :=*_bcfec ; +_dffcf =&_dggbf ;_adce [_cddfe ]=_dffcf ;case *pdfSignDictionary :_gcefe :=&pdfSignDictionary {PdfObjectDictionary :_dg .MakeDict (),_cgdea :_bcfec ._cgdea ,_cdfca :_bcfec ._cdfca };_dffcf =_gcefe ;_adce [_cddfe ]=_dffcf ;for _ ,_ggcec :=range _bcfec .Keys (){_gcefe .Set (_ggcec ,_gfged .copyObject (_bcfec .Get (_ggcec ),_adce ,_ceegc ,_dcdfb )); +};default:_ag .Log .Info ("\u0054\u004f\u0044\u004f\u0028\u0061\u0035\u0069\u0029\u003a\u0020\u0069\u006dp\u006c\u0065\u006d\u0065\u006e\u0074 \u0063\u006f\u0070\u0079\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0066\u006fr\u0020\u0025\u002b\u0076",_cddfe ); +};if _dbcf &&_dcdfb {_ceegc [_cddfe ]=struct{}{};};return _dffcf ;}; -// SetOptimizer sets the optimizer to optimize PDF before writing. -func (_edaeb *PdfWriter )SetOptimizer (optimizer Optimizer ){_edaeb ._bgbg =optimizer };type pdfFontType3 struct{fontCommon ;_bggc *_aff .PdfIndirectObject ; +// NewPdfActionLaunch returns a new "launch" action. +func NewPdfActionLaunch ()*PdfActionLaunch {_fdg :=NewPdfAction ();_ad :=&PdfActionLaunch {};_ad .PdfAction =_fdg ;_fdg .SetContext (_ad );return _ad ;}; -// These fields are specific to Type 3 fonts. -CharProcs _aff .PdfObject ;Encoding _aff .PdfObject ;FontBBox _aff .PdfObject ;FontMatrix _aff .PdfObject ;FirstChar _aff .PdfObject ;LastChar _aff .PdfObject ;Widths _aff .PdfObject ;Resources _aff .PdfObject ;_bbef map[_eee .CharCode ]float64 ;_bfcg _eee .TextEncoder ; +// String returns a human readable description of `fontfile`. +func (_abcbg *fontFile )String ()string {_eeca :="\u005b\u004e\u006f\u006e\u0065\u005d";if _abcbg ._beaeb !=nil {_eeca =_abcbg ._beaeb .String ();};return _b .Sprintf ("\u0046O\u004e\u0054\u0046\u0049\u004c\u0045\u007b\u0025\u0023\u0071\u0020e\u006e\u0063\u006f\u0064\u0065\u0072\u003d\u0025\u0073\u007d",_abcbg ._ecgd ,_eeca ); }; -// NewPdfColorspaceFromPdfObject loads a PdfColorspace from a PdfObject. Returns an error if there is -// a failure in loading. -func NewPdfColorspaceFromPdfObject (obj _aff .PdfObject )(PdfColorspace ,error ){if obj ==nil {return nil ,nil ;};var _afd *_aff .PdfIndirectObject ;var _aabe *_aff .PdfObjectName ;var _faag *_aff .PdfObjectArray ;if _efd ,_agbd :=obj .(*_aff .PdfIndirectObject ); -_agbd {_afd =_efd ;};obj =_aff .TraceToDirectObject (obj );switch _abfb :=obj .(type ){case *_aff .PdfObjectArray :_faag =_abfb ;case *_aff .PdfObjectName :_aabe =_abfb ;};if _aabe !=nil {switch *_aabe {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":return NewPdfColorspaceDeviceGray (),nil ; -case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":return NewPdfColorspaceDeviceRGB (),nil ;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return NewPdfColorspaceDeviceCMYK (),nil ;case "\u0050a\u0074\u0074\u0065\u0072\u006e":return NewPdfColorspaceSpecialPattern (),nil ; -default:_adg .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020c\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065 \u0025\u0073",*_aabe );return nil ,_ddcbc ;};};if _faag !=nil &&_faag .Len ()> 0{var _bcdc _aff .PdfObject =_afd ; -if _afd ==nil {_bcdc =_faag ;};if _cef ,_ccgc :=_aff .GetName (_faag .Get (0));_ccgc {switch _cef .String (){case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":if _faag .Len ()==1{return NewPdfColorspaceDeviceGray (),nil ;};case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":if _faag .Len ()==1{return NewPdfColorspaceDeviceRGB (),nil ; -};case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":if _faag .Len ()==1{return NewPdfColorspaceDeviceCMYK (),nil ;};case "\u0043a\u006c\u0047\u0072\u0061\u0079":return _edgb (_bcdc );case "\u0043\u0061\u006c\u0052\u0047\u0042":return _ceeb (_bcdc ); -case "\u004c\u0061\u0062":return _ffaff (_bcdc );case "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064":return _ggceb (_bcdc );case "\u0050a\u0074\u0074\u0065\u0072\u006e":return _begg (_bcdc );case "\u0049n\u0064\u0065\u0078\u0065\u0064":return _egba (_bcdc ); -case "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e":return _baef (_bcdc );case "\u0044e\u0076\u0069\u0063\u0065\u004e":return _abeg (_bcdc );default:_adg .Log .Debug ("A\u0072\u0072\u0061\u0079\u0020\u0077i\u0074\u0068\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u006e\u0061m\u0065:\u0020\u0025\u0073",*_cef ); -};};};_adg .Log .Debug ("\u0050\u0044\u0046\u0020\u0046i\u006c\u0065\u0020\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0043\u006f\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0073",obj .String ()); -return nil ,ErrTypeCheck ;};func _fefef (_abegf *_aff .PdfObjectDictionary )(*PdfFieldText ,error ){_gegfg :=&PdfFieldText {};_gegfg .DA ,_ =_aff .GetString (_abegf .Get ("\u0044\u0041"));_gegfg .Q ,_ =_aff .GetInt (_abegf .Get ("\u0051"));_gegfg .DS ,_ =_aff .GetString (_abegf .Get ("\u0044\u0053")); -_gegfg .RV =_abegf .Get ("\u0052\u0056");_gegfg .MaxLen ,_ =_aff .GetInt (_abegf .Get ("\u004d\u0061\u0078\u004c\u0065\u006e"));return _gegfg ,nil ;}; - -// PdfShadingPattern is a Shading patterns that provide a smooth transition between colors across an area to be painted, -// i.e. color(x,y) = f(x,y) at each point. -// It is a type 2 pattern (PatternType = 2). -type PdfShadingPattern struct{*PdfPattern ;Shading *PdfShading ;Matrix *_aff .PdfObjectArray ;ExtGState _aff .PdfObject ;}; +// GetContentStreamWithEncoder returns the pattern cell's content stream and its encoder +func (_ddebe *PdfTilingPattern )GetContentStreamWithEncoder ()([]byte ,_dg .StreamEncoder ,error ){_bgcba ,_eeebf :=_ddebe ._eacce .(*_dg .PdfObjectStream );if !_eeebf {_ag .Log .Debug ("\u0054\u0069l\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_ddebe ._eacce ); +return nil ,nil ,_dg .ErrTypeError ;};_aegef ,_ecge :=_dg .DecodeStream (_bgcba );if _ecge !=nil {_ag .Log .Debug ("\u0046\u0061\u0069l\u0065\u0064\u0020\u0064e\u0063\u006f\u0064\u0069\u006e\u0067\u0020s\u0074\u0072\u0065\u0061\u006d\u002c\u0020\u0065\u0072\u0072\u003a\u0020\u0025\u0076",_ecge ); +return nil ,nil ,_ecge ;};_begee ,_ecge :=_dg .NewEncoderFromStream (_bgcba );if _ecge !=nil {_ag .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020f\u0069\u006e\u0064\u0069\u006e\u0067 \u0064\u0065\u0063\u006f\u0064\u0069\u006eg\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020%\u0076",_ecge ); +return nil ,nil ,_ecge ;};return _aegef ,_begee ,nil ;}; -// GetContainingPdfObject implements interface PdfModel. -func (_dfce *PdfFilespec )GetContainingPdfObject ()_aff .PdfObject {return _dfce ._dfefa }; +// ToPdfObject implements interface PdfModel. +func (_fbcab *PdfSignatureReference )ToPdfObject ()_dg .PdfObject {_eaafc :=_dg .MakeDict ();_eaafc .SetIfNotNil ("\u0054\u0079\u0070\u0065",_fbcab .Type );_eaafc .SetIfNotNil ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064",_fbcab .TransformMethod ); +_eaafc .SetIfNotNil ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073",_fbcab .TransformParams );_eaafc .SetIfNotNil ("\u0044\u0061\u0074\u0061",_fbcab .Data );_eaafc .SetIfNotNil ("\u0044\u0069\u0067e\u0073\u0074\u004d\u0065\u0074\u0068\u006f\u0064",_fbcab .DigestMethod ); +return _eaafc ;};func (_fffad *pdfFontSimple )updateStandard14Font (){_afca ,_eagg :=_fffad .Encoder ().(_bd .SimpleEncoder );if !_eagg {_ag .Log .Error ("\u0057\u0072\u006f\u006e\u0067\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0074y\u0070e\u003a\u0020\u0025\u0054\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u002e",_fffad .Encoder (),_fffad ); +return ;};_cgcba :=_afca .Charcodes ();_fffad ._cfagf =make (map[_bd .CharCode ]float64 ,len (_cgcba ));for _ ,_gcda :=range _cgcba {_fgec ,_ :=_afca .CharcodeToRune (_gcda );_bffa ,_ :=_fffad ._bfdee .Read (_fgec );_fffad ._cfagf [_gcda ]=_bffa .Wx ;}; +}; -// NewPdfOutlineTree returns an initialized PdfOutline tree. -func NewPdfOutlineTree ()*PdfOutline {_ffaaa :=NewPdfOutline ();_ffaaa ._gecd =&_ffaaa ;return _ffaaa ;}; +// GetParamsDict returns *core.PdfObjectDictionary with a set of basic image parameters. +func (_gfdg *Image )GetParamsDict ()*_dg .PdfObjectDictionary {_dadgb :=_dg .MakeDict ();_dadgb .Set ("\u0057\u0069\u0064t\u0068",_dg .MakeInteger (_gfdg .Width ));_dadgb .Set ("\u0048\u0065\u0069\u0067\u0068\u0074",_dg .MakeInteger (_gfdg .Height ));_dadgb .Set ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073",_dg .MakeInteger (int64 (_gfdg .ColorComponents ))); +_dadgb .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_dg .MakeInteger (_gfdg .BitsPerComponent ));return _dadgb ;};func (_fcab *PdfColorspaceSpecialPattern )String ()string {return "\u0050a\u0074\u0074\u0065\u0072\u006e"; +}; -// ToPdfObject implements interface PdfModel. -func (_ffea *PdfActionTrans )ToPdfObject ()_aff .PdfObject {_ffea .PdfAction .ToPdfObject ();_eeb :=_ffea ._df ;_dee :=_eeb .PdfObject .(*_aff .PdfObjectDictionary );_dee .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeTrans )));_dee .SetIfNotNil ("\u0054\u0072\u0061n\u0073",_ffea .Trans ); -return _eeb ;};type pdfSignDictionary struct{*_aff .PdfObjectDictionary ;_efde *SignatureHandler ;_afgeg *PdfSignature ;_fgfd int64 ;_aeage int ;_gebef int ;_bedebd int ;_ebceg int ;}; +// NewPdfAction returns an initialized generic PDF action model. +func NewPdfAction ()*PdfAction {_cc :=&PdfAction {};_cc ._cbd =_dg .MakeIndirectObject (_dg .MakeDict ());return _cc ;}; -// NewPdfColorDeviceGray returns a new grayscale color based on an input grayscale float value in range [0-1]. -func NewPdfColorDeviceGray (grayVal float64 )*PdfColorDeviceGray {_decb :=PdfColorDeviceGray (grayVal );return &_decb ;}; +// NewPdfOutputIntentFromPdfObject creates a new PdfOutputIntent from the input core.PdfObject. +func NewPdfOutputIntentFromPdfObject (object _dg .PdfObject )(*PdfOutputIntent ,error ){_ffadff :=&PdfOutputIntent {};if _fddaa :=_ffadff .ParsePdfObject (object );_fddaa !=nil {return nil ,_fddaa ;};return _ffadff ,nil ;}; -// CharcodesToUnicodeWithStats is identical to CharcodesToUnicode except it returns more statistical -// information about hits and misses from the reverse mapping process. -// NOTE: The number of runes returned may be greater than the number of charcodes. -// TODO(peterwilliams97): Deprecate in v4 and use only CharcodesToStrings() -func (_bafe *PdfFont )CharcodesToUnicodeWithStats (charcodes []_eee .CharCode )(_defa []rune ,_dgba ,_dfdcd int ){_fcbgc ,_dgba ,_dfdcd :=_bafe .CharcodesToStrings (charcodes );return []rune (_ba .Join (_fcbgc ,"")),_dgba ,_dfdcd ;}; +// PdfColorspaceSpecialPattern is a Pattern colorspace. +// Can be defined either as /Pattern or with an underlying colorspace [/Pattern cs]. +type PdfColorspaceSpecialPattern struct{UnderlyingCS PdfColorspace ;_cbff *_dg .PdfIndirectObject ;}; -// IsValid checks if the given pdf output intent type is valid. -func (_bfdfc PdfOutputIntentType )IsValid ()bool {return _bfdfc >=PdfOutputIntentTypeA1 &&_bfdfc <=PdfOutputIntentTypeX ;}; +// IsTerminal returns true for terminal fields, false otherwise. +// Terminal fields are fields whose descendants are only widget annotations. +func (_cecf *PdfField )IsTerminal ()bool {return len (_cecf .Kids )==0}; -// GetPdfName returns the PDF name used to indicate the border style. -// (Table 166 p. 395). -func (_caf *BorderStyle )GetPdfName ()string {switch *_caf {case BorderStyleSolid :return "\u0053";case BorderStyleDashed :return "\u0044";case BorderStyleBeveled :return "\u0042";case BorderStyleInset :return "\u0049";case BorderStyleUnderline :return "\u0055"; -};return "";}; +// PdfReader represents a PDF file reader. It is a frontend to the lower level parsing mechanism and provides +// a higher level access to work with PDF structure and information, such as the page structure etc. +type PdfReader struct{_baad *_dg .PdfParser ;_dfdg _dg .PdfObject ;_eeeef *_dg .PdfIndirectObject ;_eefc *_dg .PdfObjectDictionary ;_daddd []*_dg .PdfIndirectObject ;PageList []*PdfPage ;_eeeg int ;_gccfb *_dg .PdfObjectDictionary ;_fcfc *PdfOutlineTreeNode ; +AcroForm *PdfAcroForm ;DSS *DSS ;Rotate *int64 ;_fbcaa *Permissions ;_ggafe map[*PdfReader ]*PdfReader ;_aggag []*PdfReader ;_cadfa *modelManager ;_dadcef bool ;_addfg map[_dg .PdfObject ]struct{};_efcfa _cf .ReadSeeker ;_aafgg string ;_cfbbb bool ;_gcecfe *ReaderOpts ; +_eadef bool ;}; -// PdfDate represents a date, which is a PDF string of the form: -// (D:YYYYMMDDHHmmSSOHH'mm) -type PdfDate struct{_ababa int64 ;_acdbf int64 ;_afcd int64 ;_bfcbd int64 ;_ggdbf int64 ;_bdcc int64 ;_acbgca byte ;_cdbec int64 ;_geecde int64 ;}; +// GetRuneMetrics returns the char metrics for a rune. +// TODO(peterwilliams97) There is nothing callers can do if no CharMetrics are found so we might as +// well give them 0 width. There is no need for the bool return. +func (_gadf *PdfFont )GetRuneMetrics (r rune )(CharMetrics ,bool ){_eefg :=_gadf .actualFont ();if _eefg ==nil {_ag .Log .Debug ("ER\u0052\u004fR\u003a\u0020\u0047\u0065\u0074\u0047\u006c\u0079\u0070h\u0043\u0068\u0061\u0072\u004d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u004e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020f\u006fr\u0020\u0066\u006f\u006e\u0074\u0020\u0074\u0079p\u0065=\u0025\u0023T",_gadf ._cadf ); +return _bbg .CharMetrics {},false ;};if _cdfdb ,_afbdg :=_eefg .GetRuneMetrics (r );_afbdg {return _cdfdb ,true ;};if _cfdf ,_aaaaee :=_gadf .GetFontDescriptor ();_aaaaee ==nil &&_cfdf !=nil {return _bbg .CharMetrics {Wx :_cfdf ._adggg },true ;};_ag .Log .Debug ("\u0047\u0065\u0074\u0047\u006c\u0079\u0070h\u0043\u0068\u0061r\u004d\u0065\u0074\u0072i\u0063\u0073\u003a\u0020\u004e\u006f\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_gadf ); +return _bbg .CharMetrics {},false ;}; -// GetTrailer returns the PDF's trailer dictionary. -func (_daabg *PdfReader )GetTrailer ()(*_aff .PdfObjectDictionary ,error ){_bgaacb :=_daabg ._gaece .GetTrailer ();if _bgaacb ==nil {return nil ,_g .New ("\u0074r\u0061i\u006c\u0065\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};return _bgaacb ,nil ; -}; +// AnnotFilterFunc represents a PDF annotation filtering function. If the function +// returns true, the annotation is kept, otherwise it is discarded. +type AnnotFilterFunc func (*PdfAnnotation )bool ; -// PartialName returns the partial name of the field. -func (_bffd *PdfField )PartialName ()string {_gadbb :="";if _bffd .T !=nil {_gadbb =_bffd .T .Decoded ();}else {_adg .Log .Debug ("\u0046\u0069el\u0064\u0020\u006di\u0073\u0073\u0069\u006eg T\u0020fi\u0065\u006c\u0064\u0020\u0028\u0069\u006eco\u006d\u0070\u0061\u0074\u0069\u0062\u006ce\u0029"); -};return _gadbb ;}; +// PdfAnnotationRedact represents Redact annotations. +// (Section 12.5.6.23). +type PdfAnnotationRedact struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _dg .PdfObject ;IC _dg .PdfObject ;RO _dg .PdfObject ;OverlayText _dg .PdfObject ;Repeat _dg .PdfObject ;DA _dg .PdfObject ;Q _dg .PdfObject ;}; -// AlphaMapFunc represents a alpha mapping function: byte -> byte. Can be used for -// thresholding the alpha channel, i.e. setting all alpha values below threshold to transparent. -type AlphaMapFunc func (_fgfaa byte )byte ; +// ToPdfObject implements interface PdfModel. +func (_agffg *PdfTransformParamsDocMDP )ToPdfObject ()_dg .PdfObject {_feccg :=_dg .MakeDict ();_feccg .SetIfNotNil ("\u0054\u0079\u0070\u0065",_agffg .Type );_feccg .SetIfNotNil ("\u0056",_agffg .V );_feccg .SetIfNotNil ("\u0050",_agffg .P );return _feccg ; +}; -// ToPdfObject returns the PDF representation of the function. -func (_bgacg *PdfFunctionType4 )ToPdfObject ()_aff .PdfObject {_ebbgg :=_bgacg ._edgbg ;if _ebbgg ==nil {_bgacg ._edgbg =&_aff .PdfObjectStream {};_ebbgg =_bgacg ._edgbg ;};_fffgg :=_aff .MakeDict ();_fffgg .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_aff .MakeInteger (4)); -_bgegf :=&_aff .PdfObjectArray {};for _ ,_edfee :=range _bgacg .Domain {_bgegf .Append (_aff .MakeFloat (_edfee ));};_fffgg .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_bgegf );_bgca :=&_aff .PdfObjectArray {};for _ ,_eefd :=range _bgacg .Range {_bgca .Append (_aff .MakeFloat (_eefd )); -};_fffgg .Set ("\u0052\u0061\u006eg\u0065",_bgca );if _bgacg ._addecb ==nil &&_bgacg .Program !=nil {_bgacg ._addecb =[]byte (_bgacg .Program .String ());};_fffgg .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_bgacg ._addecb )))); -_ebbgg .Stream =_bgacg ._addecb ;_ebbgg .PdfObjectDictionary =_fffgg ;return _ebbgg ;}; +// NewPdfActionGoTo returns a new "go to" action. +func NewPdfActionGoTo ()*PdfActionGoTo {_ebc :=NewPdfAction ();_ce :=&PdfActionGoTo {};_ce .PdfAction =_ebc ;_ebc .SetContext (_ce );return _ce ;}; -// GetRevision returns the specific version of the PdfReader for the current Pdf document -func (_ecaeg *PdfReader )GetRevision (revisionNumber int )(*PdfReader ,error ){_dcbd :=_ecaeg ._gaece .GetRevisionNumber ();if revisionNumber < 0||revisionNumber > _dcbd {return nil ,_g .New ("w\u0072\u006f\u006e\u0067 r\u0065v\u0069\u0073\u0069\u006f\u006e \u006e\u0075\u006d\u0062\u0065\u0072"); -};if revisionNumber ==_dcbd {return _ecaeg ,nil ;};if _ecaeg ._ccbga [revisionNumber ]!=nil {return _ecaeg ._ccbga [revisionNumber ],nil ;};_fadef :=_ecaeg ;for _gbca :=_dcbd -1;_gbca >=revisionNumber ;_gbca --{_bbbcb ,_cagcg :=_fadef .GetPreviousRevision (); -if _cagcg !=nil {return nil ,_cagcg ;};_ecaeg ._ccbga [_gbca ]=_bbbcb ;_fadef =_bbbcb ;};return _fadef ,nil ;}; +// GetNumComponents returns the number of color components (1 for Separation). +func (_egaa *PdfColorspaceSpecialSeparation )GetNumComponents ()int {return 1};var _eabb =map[string ]struct{}{"\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":{},"\u004d\u0061c\u0052\u006f\u006da\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":{},"\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074\u0045\u006e\u0063o\u0064\u0069\u006e\u0067":{},"\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":{}}; -// GetDocMDPPermission returns the DocMDP level of the restrictions -func (_gcafc *PdfSignature )GetDocMDPPermission ()(_gf .DocMDPPermission ,bool ){for _ ,_ebdda :=range _gcafc .Reference .Elements (){if _ceggc ,_bgcg :=_aff .GetDict (_ebdda );_bgcg {if _ecabg ,_efcbg :=_aff .GetNameVal (_ceggc .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064")); -_efcbg &&_ecabg =="\u0044\u006f\u0063\u004d\u0044\u0050"{if _dedga ,_fdbda :=_aff .GetDict (_ceggc .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"));_fdbda {if P ,_bbbbb :=_aff .GetIntVal (_dedga .Get ("\u0050")); -_bbbbb {return _gf .DocMDPPermission (P ),true ;};};};};};return 0,false ;}; -// NewPdfActionGoTo returns a new "go to" action. -func NewPdfActionGoTo ()*PdfActionGoTo {_ac :=NewPdfAction ();_fcg :=&PdfActionGoTo {};_fcg .PdfAction =_ac ;_ac .SetContext (_fcg );return _fcg ;};func (_gdf *PdfReader )newPdfAnnotationSquareFromDict (_fcbc *_aff .PdfObjectDictionary )(*PdfAnnotationSquare ,error ){_ece :=PdfAnnotationSquare {}; -_abfe ,_eebg :=_gdf .newPdfAnnotationMarkupFromDict (_fcbc );if _eebg !=nil {return nil ,_eebg ;};_ece .PdfAnnotationMarkup =_abfe ;_ece .BS =_fcbc .Get ("\u0042\u0053");_ece .IC =_fcbc .Get ("\u0049\u0043");_ece .BE =_fcbc .Get ("\u0042\u0045");_ece .RD =_fcbc .Get ("\u0052\u0044"); -return &_ece ,nil ;}; +// ToJBIG2Image converts current image to the core.JBIG2Image. +func (_fdad *Image )ToJBIG2Image ()(*_dg .JBIG2Image ,error ){_gfbbg ,_dbdgc :=_fdad .ToGoImage ();if _dbdgc !=nil {return nil ,_dbdgc ;};return _dg .GoImageToJBIG2 (_gfbbg ,_dg .JB2ImageAutoThreshold );}; -// ToPdfObject implements interface PdfModel. -func (_bdga *PdfAnnotationRichMedia )ToPdfObject ()_aff .PdfObject {_bdga .PdfAnnotation .ToPdfObject ();_fdg :=_bdga ._ccfb ;_cdd :=_fdg .PdfObject .(*_aff .PdfObjectDictionary );_cdd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0052i\u0063\u0068\u004d\u0065\u0064\u0069a")); -_cdd .SetIfNotNil ("\u0052\u0069\u0063\u0068\u004d\u0065\u0064\u0069\u0061\u0053\u0065\u0074t\u0069\u006e\u0067\u0073",_bdga .RichMediaSettings );_cdd .SetIfNotNil ("\u0052\u0069c\u0068\u004d\u0065d\u0069\u0061\u0043\u006f\u006e\u0074\u0065\u006e\u0074",_bdga .RichMediaContent ); -return _fdg ;}; +// GetAlphabet returns a map of the runes in `text` and their frequencies. +func GetAlphabet (text string )map[rune ]int {_fgbe :=map[rune ]int {};for _ ,_efcg :=range text {_fgbe [_efcg ]++;};return _fgbe ;}; -// GetCharMetrics returns the char metrics for character code `code`. -func (_bcaag pdfCIDFontType0 )GetCharMetrics (code _eee .CharCode )(_bcd .CharMetrics ,bool ){_cebea :=_bcaag ._fgbc ;if _bagfg ,_bagga :=_bcaag ._egfb [code ];_bagga {_cebea =_bagfg ;};return _bcd .CharMetrics {Wx :_cebea },true ;};func (_adga *PdfReader )newPdfAnnotationStampFromDict (_cdced *_aff .PdfObjectDictionary )(*PdfAnnotationStamp ,error ){_eda :=PdfAnnotationStamp {}; -_aed ,_gbc :=_adga .newPdfAnnotationMarkupFromDict (_cdced );if _gbc !=nil {return nil ,_gbc ;};_eda .PdfAnnotationMarkup =_aed ;_eda .Name =_cdced .Get ("\u004e\u0061\u006d\u0065");return &_eda ,nil ;}; +// ToPdfOutlineItem returns a low level PdfOutlineItem object, +// based on the current instance. +func (_bbadd *OutlineItem )ToPdfOutlineItem ()(*PdfOutlineItem ,int64 ){_abgfg :=NewPdfOutlineItem ();_abgfg .Title =_dg .MakeEncodedString (_bbadd .Title ,true );_abgfg .Dest =_bbadd .Dest .ToPdfObject ();var _ffgefc []*PdfOutlineItem ;var _cfcga int64 ; +var _dgbaf *PdfOutlineItem ;for _ ,_ffafe :=range _bbadd .Entries {_egaef ,_bbgb :=_ffafe .ToPdfOutlineItem ();_egaef .Parent =&_abgfg .PdfOutlineTreeNode ;if _dgbaf !=nil {_dgbaf .Next =&_egaef .PdfOutlineTreeNode ;_egaef .Prev =&_dgbaf .PdfOutlineTreeNode ; +};_ffgefc =append (_ffgefc ,_egaef );_cfcga +=_bbgb ;_dgbaf =_egaef ;};_ebdda :=len (_ffgefc );_cfcga +=int64 (_ebdda );if _ebdda > 0{_abgfg .First =&_ffgefc [0].PdfOutlineTreeNode ;_abgfg .Last =&_ffgefc [_ebdda -1].PdfOutlineTreeNode ;_abgfg .Count =&_cfcga ; +};return _abgfg ,_cfcga ;}; -// IsPush returns true if the button field represents a push button, false otherwise. -func (_afaef *PdfFieldButton )IsPush ()bool {return _afaef .GetType ()==ButtonTypePush }; +// NewPdfShadingType3 creates an empty shading type 3 dictionary. +func NewPdfShadingType3 ()*PdfShadingType3 {_egcd :=&PdfShadingType3 {};_egcd .PdfShading =&PdfShading {};_egcd .PdfShading ._bcfbg =_dg .MakeIndirectObject (_dg .MakeDict ());_egcd .PdfShading ._eeddb =_egcd ;return _egcd ;}; -// SetForms sets the Acroform for a PDF file. -func (_afdcb *PdfWriter )SetForms (form *PdfAcroForm )error {_afdcb ._deacb =form ;return nil };func _geda (_cbfef []byte )bool {if len (_cbfef )< 4{return true ;};for _aaef :=range _cbfef [:4]{_gcggb :=rune (_aaef );if !_ee .Is (_ee .ASCII_Hex_Digit ,_gcggb )&&!_ee .IsSpace (_gcggb ){return true ; -};};return false ;}; +// GetPageDict converts the Page to a PDF object dictionary. +func (_ceaa *PdfPage )GetPageDict ()*_dg .PdfObjectDictionary {_dgde :=_ceaa ._bfdge ;_dgde .Clear ();_dgde .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0050\u0061\u0067\u0065"));_dgde .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_ceaa .Parent ); +if _ceaa .LastModified !=nil {_dgde .Set ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064",_ceaa .LastModified .ToPdfObject ());};if _ceaa .Resources !=nil {_dgde .Set ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_ceaa .Resources .ToPdfObject ()); +};if _ceaa .CropBox !=nil {_dgde .Set ("\u0043r\u006f\u0070\u0042\u006f\u0078",_ceaa .CropBox .ToPdfObject ());};if _ceaa .MediaBox !=nil {_dgde .Set ("\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078",_ceaa .MediaBox .ToPdfObject ());};if _ceaa .BleedBox !=nil {_dgde .Set ("\u0042\u006c\u0065\u0065\u0064\u0042\u006f\u0078",_ceaa .BleedBox .ToPdfObject ()); +};if _ceaa .TrimBox !=nil {_dgde .Set ("\u0054r\u0069\u006d\u0042\u006f\u0078",_ceaa .TrimBox .ToPdfObject ());};if _ceaa .ArtBox !=nil {_dgde .Set ("\u0041\u0072\u0074\u0042\u006f\u0078",_ceaa .ArtBox .ToPdfObject ());};_dgde .SetIfNotNil ("\u0042\u006f\u0078C\u006f\u006c\u006f\u0072\u0049\u006e\u0066\u006f",_ceaa .BoxColorInfo ); +_dgde .SetIfNotNil ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_ceaa .Contents );if _ceaa .Rotate !=nil {_dgde .Set ("\u0052\u006f\u0074\u0061\u0074\u0065",_dg .MakeInteger (*_ceaa .Rotate ));};_dgde .SetIfNotNil ("\u0047\u0072\u006fu\u0070",_ceaa .Group ); +_dgde .SetIfNotNil ("\u0054\u0068\u0075m\u0062",_ceaa .Thumb );_dgde .SetIfNotNil ("\u0042",_ceaa .B );_dgde .SetIfNotNil ("\u0044\u0075\u0072",_ceaa .Dur );_dgde .SetIfNotNil ("\u0054\u0072\u0061n\u0073",_ceaa .Trans );_dgde .SetIfNotNil ("\u0041\u0041",_ceaa .AA ); +_dgde .SetIfNotNil ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_ceaa .Metadata );_dgde .SetIfNotNil ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o",_ceaa .PieceInfo );_dgde .SetIfNotNil ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073",_ceaa .StructParents ); +_dgde .SetIfNotNil ("\u0049\u0044",_ceaa .ID );_dgde .SetIfNotNil ("\u0050\u005a",_ceaa .PZ );_dgde .SetIfNotNil ("\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006fn\u0049\u006e\u0066\u006f",_ceaa .SeparationInfo );_dgde .SetIfNotNil ("\u0054\u0061\u0062\u0073",_ceaa .Tabs ); +_dgde .SetIfNotNil ("T\u0065m\u0070\u006c\u0061\u0074\u0065\u0049\u006e\u0073t\u0061\u006e\u0074\u0069at\u0065\u0064",_ceaa .TemplateInstantiated );_dgde .SetIfNotNil ("\u0050r\u0065\u0073\u0053\u0074\u0065\u0070s",_ceaa .PresSteps );_dgde .SetIfNotNil ("\u0055\u0073\u0065\u0072\u0055\u006e\u0069\u0074",_ceaa .UserUnit ); +_dgde .SetIfNotNil ("\u0056\u0050",_ceaa .VP );if _ceaa ._cadgg !=nil {_eeacb :=_dg .MakeArray ();for _ ,_gbdagg :=range _ceaa ._cadgg {if _eaadb :=_gbdagg .GetContext ();_eaadb !=nil {_eeacb .Append (_eaadb .ToPdfObject ());}else {_eeacb .Append (_gbdagg .ToPdfObject ()); +};};if _eeacb .Len ()> 0{_dgde .Set ("\u0041\u006e\u006e\u006f\u0074\u0073",_eeacb );};}else if _ceaa .Annots !=nil {_dgde .SetIfNotNil ("\u0041\u006e\u006e\u006f\u0074\u0073",_ceaa .Annots );};return _dgde ;}; -// NewPdfReader returns a new PdfReader for an input io.ReadSeeker interface. Can be used to read PDF from -// memory or file. Immediately loads and traverses the PDF structure including pages and page contents (if -// not encrypted). Loads entire document structure into memory. -// Alternatively a lazy-loading reader can be created with NewPdfReaderLazy which loads only references, -// and references are loaded from disk into memory on an as-needed basis. -func NewPdfReader (rs _ega .ReadSeeker )(*PdfReader ,error ){const _eacbb ="\u006do\u0064e\u006c\u003a\u004e\u0065\u0077P\u0064\u0066R\u0065\u0061\u0064\u0065\u0072";return _dffg (rs ,&ReaderOpts {},false ,_eacbb );}; +// GetContainingPdfObject returns the container of the outline tree node (indirect object). +func (_ecea *PdfOutlineTreeNode )GetContainingPdfObject ()_dg .PdfObject {return _ecea .GetContext ().GetContainingPdfObject ();}; -// GetContainingPdfObject gets the primitive used to parse the color space. -func (_bdgd *PdfColorspaceICCBased )GetContainingPdfObject ()_aff .PdfObject {return _bdgd ._abcbf }; +// NewPdfColorPatternType2 returns an empty color shading pattern type 2 (Axial). +func NewPdfColorPatternType2 ()*PdfColorPatternType2 {_cdaf :=&PdfColorPatternType2 {};return _cdaf }; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain a single element. -func (_ecbe *PdfColorspaceSpecialIndexed )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};N :=_ecbe .Base .GetNumComponents ();_gdcee :=int (vals [0])*N ; -if _gdcee < 0||(_gdcee +N -1)>=len (_ecbe ._ecfb ){_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_gdcee );return nil ,ErrColorOutOfRange ;};_edfe :=_ecbe ._ecfb [_gdcee :_gdcee +N ]; -var _egae []float64 ;for _ ,_daad :=range _edfe {_egae =append (_egae ,float64 (_daad )/255.0);};_cbge ,_gdeec :=_ecbe .Base .ColorFromFloats (_egae );if _gdeec !=nil {return nil ,_gdeec ;};return _cbge ,nil ;}; +// IsColored specifies if the pattern is colored. +func (_adaa *PdfTilingPattern )IsColored ()bool {if _adaa .PaintType !=nil &&*_adaa .PaintType ==1{return true ;};return false ;}; -// NewPdfPageResourcesColorspaces returns a new PdfPageResourcesColorspaces object. -func NewPdfPageResourcesColorspaces ()*PdfPageResourcesColorspaces {_befa :=&PdfPageResourcesColorspaces {};_befa .Names =[]string {};_befa .Colorspaces =map[string ]PdfColorspace {};_befa ._abedg =&_aff .PdfIndirectObject {};return _befa ;};func _fegcf (_aecdd *_aff .PdfObjectDictionary ,_ebeeg *fontCommon )(*pdfCIDFontType2 ,error ){if _ebeeg ._fbged !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{_adg .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0046\u006fn\u0074\u0020\u0053u\u0062\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020CI\u0044\u0046\u006fn\u0074\u0054y\u0070\u0065\u0032\u002e\u0020\u0066o\u006e\u0074=\u0025\u0073",_ebeeg ); -return nil ,_aff .ErrRangeError ;};_fcdab :=_aedb (_ebeeg );_fddf ,_faefe :=_aff .GetDict (_aecdd .Get ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f"));if !_faefe {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043I\u0044\u0053\u0079st\u0065\u006d\u0049\u006e\u0066\u006f \u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u002e\u0020\u0066\u006f\u006e\u0074=\u0025\u0073",_ebeeg ); -return nil ,ErrRequiredAttributeMissing ;};_fcdab .CIDSystemInfo =_fddf ;_fcdab .DW =_aecdd .Get ("\u0044\u0057");_fcdab .W =_aecdd .Get ("\u0057");_fcdab .DW2 =_aecdd .Get ("\u0044\u0057\u0032");_fcdab .W2 =_aecdd .Get ("\u0057\u0032");_fcdab .CIDToGIDMap =_aecdd .Get ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070"); -_fcdab ._ceageb =1000.0;if _cfbd ,_cffg :=_aff .GetNumberAsFloat (_fcdab .DW );_cffg ==nil {_fcdab ._ceageb =_cfbd ;};_ffgag ,_ddffb :=_adffed (_fcdab .W );if _ddffb !=nil {return nil ,_ddffb ;};if _ffgag ==nil {_ffgag =map[_eee .CharCode ]float64 {};}; -_fcdab ._egdcef =_ffgag ;return _fcdab ,nil ;};func (_bbac *PdfReader )newPdfAnnotationFileAttachmentFromDict (_dafg *_aff .PdfObjectDictionary )(*PdfAnnotationFileAttachment ,error ){_ddgb :=PdfAnnotationFileAttachment {};_agfe ,_fcfe :=_bbac .newPdfAnnotationMarkupFromDict (_dafg ); -if _fcfe !=nil {return nil ,_fcfe ;};_ddgb .PdfAnnotationMarkup =_agfe ;_ddgb .FS =_dafg .Get ("\u0046\u0053");_ddgb .Name =_dafg .Get ("\u004e\u0061\u006d\u0065");return &_ddgb ,nil ;};func _aggd (_abbdd *_aff .PdfObjectDictionary )(*PdfShadingType1 ,error ){_bgda :=PdfShadingType1 {}; -if _daedg :=_abbdd .Get ("\u0044\u006f\u006d\u0061\u0069\u006e");_daedg !=nil {_daedg =_aff .TraceToDirectObject (_daedg );_fdbfa ,_gdbcfb :=_daedg .(*_aff .PdfObjectArray );if !_gdbcfb {_adg .Log .Debug ("\u0044\u006f\u006d\u0061i\u006e\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_daedg ); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_bgda .Domain =_fdbfa ;};if _geeegf :=_abbdd .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");_geeegf !=nil {_geeegf =_aff .TraceToDirectObject (_geeegf ); -_dgdc ,_gdced :=_geeegf .(*_aff .PdfObjectArray );if !_gdced {_adg .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_geeegf );return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); -};_bgda .Matrix =_dgdc ;};_bcfd :=_abbdd .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _bcfd ==nil {_adg .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); -return nil ,ErrRequiredAttributeMissing ;};_bgda .Function =[]PdfFunction {};if _cead ,_fbgdd :=_bcfd .(*_aff .PdfObjectArray );_fbgdd {for _ ,_fccdf :=range _cead .Elements (){_dagg ,_bgad :=_fdfeg (_fccdf );if _bgad !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_bgad ); -return nil ,_bgad ;};_bgda .Function =append (_bgda .Function ,_dagg );};}else {_accee ,_ddcbbe :=_fdfeg (_bcfd );if _ddcbbe !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_ddcbbe ); -return nil ,_ddcbbe ;};_bgda .Function =append (_bgda .Function ,_accee );};return &_bgda ,nil ;}; +// SignatureHandlerDocMDP extends SignatureHandler with the ValidateWithOpts method for checking the DocMDP policy. +type SignatureHandlerDocMDP interface{SignatureHandler ; -// Insert adds a top level outline item in the outline, -// at the specified index. -func (_facff *Outline )Insert (index uint ,item *OutlineItem ){_bcgge :=uint (len (_facff .Entries ));if index > _bcgge {index =_bcgge ;};_facff .Entries =append (_facff .Entries [:index ],append ([]*OutlineItem {item },_facff .Entries [index :]...)...); -}; +// ValidateWithOpts validates a PDF signature by checking PdfReader or PdfParser +// ValidateWithOpts shall contain Validate call +ValidateWithOpts (_aadcb *PdfSignature ,_cccbg Hasher ,_gbcebg SignatureHandlerDocMDPParams )(SignatureValidationResult ,error );};type pdfCIDFontType2 struct{fontCommon ;_ddccf *_dg .PdfIndirectObject ;_dcde _bd .TextEncoder ; -// PdfAnnotationText represents Text annotations. -// (Section 12.5.6.4 p. 402). -type PdfAnnotationText struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Open _aff .PdfObject ;Name _aff .PdfObject ;State _aff .PdfObject ;StateModel _aff .PdfObject ;}; +// Table 117 – Entries in a CIDFont dictionary (page 269) +// Dictionary that defines the character collection of the CIDFont (required). +// See Table 116. +CIDSystemInfo *_dg .PdfObjectDictionary ; -// ToPdfObject implements interface PdfModel. -func (_gb *PdfAction )ToPdfObject ()_aff .PdfObject {_faa :=_gb ._df ;_bag :=_faa .PdfObject .(*_aff .PdfObjectDictionary );_bag .Clear ();_bag .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0041\u0063\u0074\u0069\u006f\u006e"));_bag .SetIfNotNil ("\u0053",_gb .S ); -_bag .SetIfNotNil ("\u004e\u0065\u0078\u0074",_gb .Next );return _faa ;}; +// Glyph metrics fields (optional). +DW _dg .PdfObject ;W _dg .PdfObject ;DW2 _dg .PdfObject ;W2 _dg .PdfObject ; -// PdfActionGoTo3DView represents a GoTo3DView action. -type PdfActionGoTo3DView struct{*PdfAction ;TA _aff .PdfObject ;V _aff .PdfObject ;}; +// CIDs to glyph indices mapping (optional). +CIDToGIDMap _dg .PdfObject ;_ddeb map[_bd .CharCode ]float64 ;_bfbc float64 ;_ebgc map[rune ]int ;};func _aeegd (_baefe string )(string ,error ){var _fggea _bc .Buffer ;_fggea .WriteString (_baefe );_bddad :=make ([]byte ,8+16);_gecag :=_a .Now ().UTC ().UnixNano (); +_bad .BigEndian .PutUint64 (_bddad ,uint64 (_gecag ));_ ,_aaadd :=_ec .Read (_bddad [8:]);if _aaadd !=nil {return "",_aaadd ;};_fggea .WriteString (_be .EncodeToString (_bddad ));return _fggea .String (),nil ;}; -// NewPdfAnnotationWatermark returns a new watermark annotation. -func NewPdfAnnotationWatermark ()*PdfAnnotationWatermark {_beb :=NewPdfAnnotation ();_aaca :=&PdfAnnotationWatermark {};_aaca .PdfAnnotation =_beb ;_beb .SetContext (_aaca );return _aaca ;}; +// ImageToGray returns a new grayscale image based on the passed in RGB image. +func (_efgga *PdfColorspaceDeviceRGB )ImageToGray (img Image )(Image ,error ){if img .ColorComponents !=3{return img ,_bf .New ("\u0070\u0072\u006f\u0076\u0069\u0064e\u0064\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0061\u0020\u0044\u0065\u0076\u0069c\u0065\u0052\u0047\u0042"); +};_aadd ,_abcc :=_fc .NewImage (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,img .Data ,img ._dgeb ,img ._gfbb );if _abcc !=nil {return img ,_abcc ;};_bbea ,_abcc :=_fc .GrayConverter .Convert (_aadd );if _abcc !=nil {return img ,_abcc ; +};return _edcf (_bbea .Base ()),nil ;}; -// AddExtGState add External Graphics State (GState). The gsDict can be specified -// either directly as a dictionary or an indirect object containing a dictionary. -func (_faeed *PdfPageResources )AddExtGState (gsName _aff .PdfObjectName ,gsDict _aff .PdfObject )error {if _faeed .ExtGState ==nil {_faeed .ExtGState =_aff .MakeDict ();};_ebgbcf :=_faeed .ExtGState ;_ddage ,_cfgaba :=_aff .TraceToDirectObject (_ebgbcf ).(*_aff .PdfObjectDictionary ); -if !_cfgaba {_adg .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0074\u0079\u0070\u0065\u0020e\u0072r\u006f\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u002f\u0025\u0054\u0029",_ebgbcf ,_aff .TraceToDirectObject (_ebgbcf )); -return _aff .ErrTypeError ;};_ddage .Set (gsName ,gsDict );return nil ;}; +// XObjectType represents the type of an XObject. +type XObjectType int ; -// DefaultImageHandler is the default implementation of the ImageHandler using the standard go library. -type DefaultImageHandler struct{}; +// GetAllContentStreams gets all the content streams for a page as one string. +func (_efdac *PdfPage )GetAllContentStreams ()(string ,error ){_gdddg ,_dacba :=_efdac .GetContentStreams ();if _dacba !=nil {return "",_dacba ;};return _ga .Join (_gdddg ,"\u0020"),nil ;}; -// ToInteger convert to an integer format. -func (_bcb *PdfColorDeviceCMYK )ToInteger (bits int )[4]uint32 {_abfbd :=_cf .Pow (2,float64 (bits ))-1;return [4]uint32 {uint32 (_abfbd *_bcb .C ()),uint32 (_abfbd *_bcb .M ()),uint32 (_abfbd *_bcb .Y ()),uint32 (_abfbd *_bcb .K ())};}; +// SetPdfSubject sets the Subject attribute of the output PDF. +func SetPdfSubject (subject string ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_adgf =subject }; -// GetCharMetrics returns the char metrics for character code `code`. -func (_abbd pdfFontType3 )GetCharMetrics (code _eee .CharCode )(_bcd .CharMetrics ,bool ){if _fefeb ,_dbcc :=_abbd ._bbef [code ];_dbcc {return _bcd .CharMetrics {Wx :_fefeb },true ;};if _bcd .IsStdFont (_bcd .StdFontName (_abbd ._abed )){return _bcd .CharMetrics {Wx :250},true ; -};return _bcd .CharMetrics {},false ;}; +// PdfColorPatternType2 represents a color shading pattern type 2 (Axial). +type PdfColorPatternType2 struct{Color PdfColor ;PatternName _dg .PdfObjectName ;};func (_deacf *PdfWriter )writeXRefStreams (_abeed int ,_baecfb int64 )error {_bafg :=_abeed +1;_deacf ._fffge [_bafg ]=crossReference {Type :1,ObjectNumber :_bafg ,Offset :_baecfb }; +_bdacdc :=_bc .NewBuffer (nil );_fcaf :=_dg .MakeArray ();for _febea :=0;_febea <=_abeed ;{for ;_febea <=_abeed ;_febea ++{_cdcdd ,_bgdbggd :=_deacf ._fffge [_febea ];if _bgdbggd &&(!_deacf ._bbac ||_deacf ._bbac &&(_cdcdd .Type ==1&&_cdcdd .Offset >=_deacf ._fafab ||_cdcdd .Type ==0)){break ; +};};var _dbgg int ;for _dbgg =_febea +1;_dbgg <=_abeed ;_dbgg ++{_gbcc ,_dcebb :=_deacf ._fffge [_dbgg ];if _dcebb &&(!_deacf ._bbac ||_deacf ._bbac &&(_gbcc .Type ==1&&_gbcc .Offset > _deacf ._fafab )){continue ;};break ;};_fcaf .Append (_dg .MakeInteger (int64 (_febea )),_dg .MakeInteger (int64 (_dbgg -_febea ))); +for _gcca :=_febea ;_gcca < _dbgg ;_gcca ++{_edfdb :=_deacf ._fffge [_gcca ];switch _edfdb .Type {case 0:_bad .Write (_bdacdc ,_bad .BigEndian ,byte (0));_bad .Write (_bdacdc ,_bad .BigEndian ,uint32 (0));_bad .Write (_bdacdc ,_bad .BigEndian ,uint16 (0xFFFF)); +case 1:_bad .Write (_bdacdc ,_bad .BigEndian ,byte (1));_bad .Write (_bdacdc ,_bad .BigEndian ,uint32 (_edfdb .Offset ));_bad .Write (_bdacdc ,_bad .BigEndian ,uint16 (_edfdb .Generation ));case 2:_bad .Write (_bdacdc ,_bad .BigEndian ,byte (2));_bad .Write (_bdacdc ,_bad .BigEndian ,uint32 (_edfdb .ObjectNumber )); +_bad .Write (_bdacdc ,_bad .BigEndian ,uint16 (_edfdb .Index ));};};_febea =_dbgg +1;};_ececc ,_bdgba :=_dg .MakeStream (_bdacdc .Bytes (),_dg .NewFlateEncoder ());if _bdgba !=nil {return _bdgba ;};_ececc .ObjectNumber =int64 (_bafg );_ececc .PdfObjectDictionary .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0058\u0052\u0065\u0066")); +_ececc .PdfObjectDictionary .Set ("\u0057",_dg .MakeArray (_dg .MakeInteger (1),_dg .MakeInteger (4),_dg .MakeInteger (2)));_ececc .PdfObjectDictionary .Set ("\u0049\u006e\u0064e\u0078",_fcaf );_ececc .PdfObjectDictionary .Set ("\u0053\u0069\u007a\u0065",_dg .MakeInteger (int64 (_bafg ))); +_ececc .PdfObjectDictionary .Set ("\u0049\u006e\u0066\u006f",_deacf ._efbfa );_ececc .PdfObjectDictionary .Set ("\u0052\u006f\u006f\u0074",_deacf ._fadee );if _deacf ._bbac &&_deacf ._eege > 0{_ececc .PdfObjectDictionary .Set ("\u0050\u0072\u0065\u0076",_dg .MakeInteger (_deacf ._eege )); +};if _deacf ._fadcg !=nil {_ececc .Set ("\u0045n\u0063\u0072\u0079\u0070\u0074",_deacf ._acdag );};if _deacf ._agbeg ==nil &&_deacf ._cedaf !=""&&_deacf ._ceaab !=""{_deacf ._agbeg =_dg .MakeArray (_dg .MakeHexString (_deacf ._cedaf ),_dg .MakeHexString (_deacf ._ceaab )); +};if _deacf ._agbeg !=nil {_ag .Log .Trace ("\u0049d\u0073\u003a\u0020\u0025\u0073",_deacf ._agbeg );_ececc .Set ("\u0049\u0044",_deacf ._agbeg );};_deacf .writeObject (int (_ececc .ObjectNumber ),_ececc );return nil ;}; -// GetNameDictionary returns the Names entry in the PDF catalog. -// See section 7.7.4 "Name Dictionary" (p. 80 PDF32000_2008). -func (_dbadd *PdfReader )GetNameDictionary ()(_aff .PdfObject ,error ){_ffbbg :=_aff .ResolveReference (_dbadd ._dcadd .Get ("\u004e\u0061\u006de\u0073"));if _ffbbg ==nil {return nil ,nil ;};if !_dbadd ._gfgg {_ceeaf :=_dbadd .traverseObjectData (_ffbbg ); -if _ceeaf !=nil {return nil ,_ceeaf ;};};return _ffbbg ,nil ;}; +// PdfModel is a higher level PDF construct which can be collapsed into a PdfObject. +// Each PdfModel has an underlying PdfObject and vice versa (one-to-one). +// Under normal circumstances there should only be one copy of each. +// Copies can be made, but care must be taken to do it properly. +type PdfModel interface{ToPdfObject ()_dg .PdfObject ;GetContainingPdfObject ()_dg .PdfObject ;}; -// ToPdfObject returns the PDF representation of the shading pattern. -func (_febdg *PdfShadingPattern )ToPdfObject ()_aff .PdfObject {_febdg .PdfPattern .ToPdfObject ();_deeac :=_febdg .getDict ();if _febdg .Shading !=nil {_deeac .Set ("\u0053h\u0061\u0064\u0069\u006e\u0067",_febdg .Shading .ToPdfObject ());};if _febdg .Matrix !=nil {_deeac .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_febdg .Matrix ); -};if _febdg .ExtGState !=nil {_deeac .Set ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_febdg .ExtGState );};return _febdg ._cfegc ;}; +// IsCheckbox returns true if the button field represents a checkbox, false otherwise. +func (_eeec *PdfFieldButton )IsCheckbox ()bool {return _eeec .GetType ()==ButtonTypeCheckbox }; -// Outline represents a PDF outline dictionary (Table 152 - p. 376). -// Currently, the Outline object can only be used to construct PDF outlines. -type Outline struct{Entries []*OutlineItem `json:"entries,omitempty"`;}; +// Hasher is the interface that wraps the basic Write method. +type Hasher interface{Write (_gaedg []byte )(_bdebe int ,_bffba error );}; -// SetSamples convert samples to byte-data and sets for the image. -// NOTE: The method resamples the data and this could lead to high memory usage, -// especially on large images. It should be used only when it is not possible -// to work with the image byte data directly. -func (_ccadg *Image )SetSamples (samples []uint32 ){if _ccadg .BitsPerComponent < 8{samples =_ccadg .samplesAddPadding (samples );};_aged :=_aae .ResampleUint32 (samples ,int (_ccadg .BitsPerComponent ),8);_egea :=make ([]byte ,len (_aged ));for _dbcde ,_cdfbe :=range _aged {_egea [_dbcde ]=byte (_cdfbe ); -};_ccadg .Data =_egea ;}; +// SetPdfCreationDate sets the CreationDate attribute of the output PDF. +func SetPdfCreationDate (creationDate _a .Time ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_ccfea =creationDate ;}; -// NewPdfShadingType2 creates an empty shading type 2 dictionary. -func NewPdfShadingType2 ()*PdfShadingType2 {_ffacc :=&PdfShadingType2 {};_ffacc .PdfShading =&PdfShading {};_ffacc .PdfShading ._bdacg =_aff .MakeIndirectObject (_aff .MakeDict ());_ffacc .PdfShading ._fcbfb =_ffacc ;return _ffacc ;}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// components. The slice should contain a single PdfObjectFloat element. +func (_cdbe *PdfColorspaceSpecialSeparation )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gbab ,_fgac :=_dg .GetNumbersAsFloat (objects ); +if _fgac !=nil {return nil ,_fgac ;};return _cdbe .ColorFromFloats (_gbab );}; -// ToPdfObject returns the PDF representation of the pattern. -func (_baag *PdfPattern )ToPdfObject ()_aff .PdfObject {_afadb :=_baag .getDict ();_afadb .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e"));_afadb .Set ("P\u0061\u0074\u0074\u0065\u0072\u006e\u0054\u0079\u0070\u0065",_aff .MakeInteger (_baag .PatternType )); -return _baag ._cfegc ;};func (_gdaeb *PdfReader )newPdfOutlineItemFromIndirectObject (_cecf *_aff .PdfIndirectObject )(*PdfOutlineItem ,error ){_ccageg ,_eadbd :=_cecf .PdfObject .(*_aff .PdfObjectDictionary );if !_eadbd {return nil ,_e .Errorf ("\u006f\u0075\u0074l\u0069\u006e\u0065\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_ebcfe :=NewPdfOutlineItem ();_cbfc :=_ccageg .Get ("\u0054\u0069\u0074l\u0065");if _cbfc ==nil {return nil ,_e .Errorf ("\u006d\u0069\u0073s\u0069\u006e\u0067\u0020\u0054\u0069\u0074\u006c\u0065\u0020\u0066\u0072\u006f\u006d\u0020\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0049\u0074\u0065\u006d\u0020\u0028r\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029"); -};_affg ,_gbdd :=_aff .GetString (_cbfc );if !_gbdd {return nil ,_e .Errorf ("\u0074\u0069\u0074le\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0028\u0025\u0054\u0029",_cbfc );};_ebcfe .Title =_affg ;if _aeff :=_ccageg .Get ("\u0043\u006f\u0075n\u0074"); -_aeff !=nil {_aecfd ,_eeacf :=_aeff .(*_aff .PdfObjectInteger );if !_eeacf {return nil ,_e .Errorf ("\u0063o\u0075\u006e\u0074\u0020n\u006f\u0074\u0020\u0061\u006e \u0069n\u0074e\u0067\u0065\u0072\u0020\u0028\u0025\u0054)",_aeff );};_bbff :=int64 (*_aecfd ); -_ebcfe .Count =&_bbff ;};if _aafa :=_ccageg .Get ("\u0044\u0065\u0073\u0074");_aafa !=nil {_ebcfe .Dest =_aff .ResolveReference (_aafa );if !_gdaeb ._gfgg {_eeccc :=_gdaeb .traverseObjectData (_ebcfe .Dest );if _eeccc !=nil {return nil ,_eeccc ;};};};if _dfgdge :=_ccageg .Get ("\u0041"); -_dfgdge !=nil {_ebcfe .A =_aff .ResolveReference (_dfgdge );if !_gdaeb ._gfgg {_gafff :=_gdaeb .traverseObjectData (_ebcfe .A );if _gafff !=nil {return nil ,_gafff ;};};};if _gfcea :=_ccageg .Get ("\u0053\u0045");_gfcea !=nil {_ebcfe .SE =nil ;};if _babe :=_ccageg .Get ("\u0043"); -_babe !=nil {_ebcfe .C =_aff .ResolveReference (_babe );};if _acbgf :=_ccageg .Get ("\u0046");_acbgf !=nil {_ebcfe .F =_aff .ResolveReference (_acbgf );};return _ebcfe ,nil ;};func _dbcbc (_cgbcg _bcd .StdFont )pdfFontSimple {_aada :=_cgbcg .Descriptor (); -return pdfFontSimple {fontCommon :fontCommon {_fbged :"\u0054\u0079\u0070e\u0031",_abed :_cgbcg .Name ()},_cadeb :_cgbcg .GetMetricsTable (),_adcc :&PdfFontDescriptor {FontName :_aff .MakeName (string (_aada .Name )),FontFamily :_aff .MakeName (_aada .Family ),FontWeight :_aff .MakeFloat (float64 (_aada .Weight )),Flags :_aff .MakeInteger (int64 (_aada .Flags )),FontBBox :_aff .MakeArrayFromFloats (_aada .BBox [:]),ItalicAngle :_aff .MakeFloat (_aada .ItalicAngle ),Ascent :_aff .MakeFloat (_aada .Ascent ),Descent :_aff .MakeFloat (_aada .Descent ),CapHeight :_aff .MakeFloat (_aada .CapHeight ),XHeight :_aff .MakeFloat (_aada .XHeight ),StemV :_aff .MakeFloat (_aada .StemV ),StemH :_aff .MakeFloat (_aada .StemH )},_ggebf :_cgbcg .Encoder ()}; +// GetNumComponents returns the number of color components (3 for Lab). +func (_beebf *PdfColorLab )GetNumComponents ()int {return 3};func (_afdf *PdfReader )newPdfActionLaunchFromDict (_gge *_dg .PdfObjectDictionary )(*PdfActionLaunch ,error ){_aebc ,_aba :=_bccf (_gge .Get ("\u0046"));if _aba !=nil {return nil ,_aba ;};return &PdfActionLaunch {Win :_gge .Get ("\u0057\u0069\u006e"),Mac :_gge .Get ("\u004d\u0061\u0063"),Unix :_gge .Get ("\u0055\u006e\u0069\u0078"),NewWindow :_gge .Get ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw"),F :_aebc },nil ; }; -// GetMediaBox gets the inheritable media box value, either from the page -// or a higher up page/pages struct. -func (_aegbb *PdfPage )GetMediaBox ()(*PdfRectangle ,error ){if _aegbb .MediaBox !=nil {return _aegbb .MediaBox ,nil ;};_fccde :=_aegbb .Parent ;for _fccde !=nil {_bcegd ,_bdbcf :=_aff .GetDict (_fccde );if !_bdbcf {return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -};if _debg :=_bcegd .Get ("\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078");_debg !=nil {_beffg ,_febd :=_aff .GetArray (_debg );if !_febd {return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006d\u0065\u0064\u0069a\u0020\u0062\u006f\u0078"); -};_gcafbd ,_cfdbd :=NewPdfRectangle (*_beffg );if _cfdbd !=nil {return nil ,_cfdbd ;};return _gcafbd ,nil ;};_fccde =_bcegd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");};return nil ,_g .New ("m\u0065\u0064\u0069\u0061 b\u006fx\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064"); -}; +// PdfColorspaceDeviceGray represents a grayscale colorspace. +type PdfColorspaceDeviceGray struct{}; -// PdfPage represents a page in a PDF document. (7.7.3.3 - Table 30). -type PdfPage struct{Parent _aff .PdfObject ;LastModified *PdfDate ;Resources *PdfPageResources ;CropBox *PdfRectangle ;MediaBox *PdfRectangle ;BleedBox *PdfRectangle ;TrimBox *PdfRectangle ;ArtBox *PdfRectangle ;BoxColorInfo _aff .PdfObject ;Contents _aff .PdfObject ; -Rotate *int64 ;Group _aff .PdfObject ;Thumb _aff .PdfObject ;B _aff .PdfObject ;Dur _aff .PdfObject ;Trans _aff .PdfObject ;AA _aff .PdfObject ;Metadata _aff .PdfObject ;PieceInfo _aff .PdfObject ;StructParents _aff .PdfObject ;ID _aff .PdfObject ;PZ _aff .PdfObject ; -SeparationInfo _aff .PdfObject ;Tabs _aff .PdfObject ;TemplateInstantiated _aff .PdfObject ;PresSteps _aff .PdfObject ;UserUnit _aff .PdfObject ;VP _aff .PdfObject ;Annots _aff .PdfObject ;_bbgb []*PdfAnnotation ;_bbdac *_aff .PdfObjectDictionary ;_fage *_aff .PdfIndirectObject ; -_bfce _aff .PdfObjectDictionary ;_dbbf *PdfReader ;};func (_efcb *Image )samplesTrimPadding (_cfcdf []uint32 )[]uint32 {_bcage :=_efcb .ColorComponents *int (_efcb .Width )*int (_efcb .Height );if len (_cfcdf )==_bcage {return _cfcdf ;};_dbceb :=make ([]uint32 ,_bcage ); -_ddae :=int (_efcb .Width )*_efcb .ColorComponents ;var _gabcb ,_bggbf ,_cdgc ,_bbdba int ;_cdeb :=_gd .BytesPerLine (int (_efcb .Width ),int (_efcb .BitsPerComponent ),_efcb .ColorComponents );for _gabcb =0;_gabcb < int (_efcb .Height );_gabcb ++{_bggbf =_gabcb *int (_efcb .Width ); -_cdgc =_gabcb *_cdeb ;for _bbdba =0;_bbdba < _ddae ;_bbdba ++{_dbceb [_bggbf +_bbdba ]=_cfcdf [_cdgc +_bbdba ];};};return _dbceb ;};func _aebd (_gfcdc _aff .PdfObject )(*PdfPattern ,error ){_beggf :=&PdfPattern {};var _cadc *_aff .PdfObjectDictionary ; -if _gffbab ,_cfab :=_aff .GetIndirect (_gfcdc );_cfab {_beggf ._cfegc =_gffbab ;_bfaga ,_ebfdfe :=_gffbab .PdfObject .(*_aff .PdfObjectDictionary );if !_ebfdfe {_adg .Log .Debug ("\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006fn\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0028g\u006f\u0074\u0020%\u0054\u0029",_gffbab .PdfObject ); -return nil ,_aff .ErrTypeError ;};_cadc =_bfaga ;}else if _agfad ,_fgaad :=_aff .GetStream (_gfcdc );_fgaad {_beggf ._cfegc =_agfad ;_cadc =_agfad .PdfObjectDictionary ;}else {_adg .Log .Debug ("\u0050a\u0074\u0074e\u0072\u006e\u0020\u006eo\u0074\u0020\u0061n\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074 o\u0062\u006a\u0065c\u0074\u0020o\u0072\u0020\u0073\u0074\u0072\u0065a\u006d\u002e \u0025\u0054",_gfcdc ); -return nil ,_aff .ErrTypeError ;};_ggdbec :=_cadc .Get ("P\u0061\u0074\u0074\u0065\u0072\u006e\u0054\u0079\u0070\u0065");if _ggdbec ==nil {_adg .Log .Debug ("\u0050\u0064\u0066\u0020\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069n\u0067\u0020\u0050\u0061\u0074t\u0065\u0072n\u0054\u0079\u0070\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_edad ,_fecg :=_ggdbec .(*_aff .PdfObjectInteger );if !_fecg {_adg .Log .Debug ("\u0050\u0061tt\u0065\u0072\u006e \u0074\u0079\u0070\u0065 no\u0074 a\u006e\u0020\u0069\u006e\u0074\u0065\u0067er\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_ggdbec ); -return nil ,_aff .ErrTypeError ;};if *_edad !=1&&*_edad !=2{_adg .Log .Debug ("\u0050\u0061\u0074\u0074e\u0072\u006e\u0020\u0074\u0079\u0070\u0065\u0020\u0021\u003d \u0031/\u0032\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",*_edad );return nil ,_aff .ErrRangeError ; -};_beggf .PatternType =int64 (*_edad );switch *_edad {case 1:_ggaee ,_eaab :=_bdagg (_cadc );if _eaab !=nil {return nil ,_eaab ;};_ggaee .PdfPattern =_beggf ;_beggf ._abbe =_ggaee ;return _beggf ,nil ;case 2:_egcce ,_feedd :=_agfed (_cadc );if _feedd !=nil {return nil ,_feedd ; -};_egcce .PdfPattern =_beggf ;_beggf ._abbe =_egcce ;return _beggf ,nil ;};return nil ,_g .New ("\u0075n\u006bn\u006f\u0077\u006e\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e");};func _dggcf (_aafce *_aff .PdfIndirectObject ,_afgf *_aff .PdfObjectDictionary )(*DSS ,error ){if _aafce ==nil {_aafce =_aff .MakeIndirectObject (nil ); -};_aafce .PdfObject =_aff .MakeDict ();_fdfdf :=map[string ]*VRI {};if _fbbf ,_cbae :=_aff .GetDict (_afgf .Get ("\u0056\u0052\u0049"));_cbae {for _ ,_bbdde :=range _fbbf .Keys (){if _ggcb ,_abbgg :=_aff .GetDict (_fbbf .Get (_bbdde ));_abbgg {_fdfdf [_ba .ToUpper (_bbdde .String ())]=_efdc (_ggcb ); -};};};return &DSS {Certs :_cbdga (_afgf .Get ("\u0043\u0065\u0072t\u0073")),OCSPs :_cbdga (_afgf .Get ("\u004f\u0043\u0053P\u0073")),CRLs :_cbdga (_afgf .Get ("\u0043\u0052\u004c\u0073")),VRI :_fdfdf ,_dfad :_aafce },nil ;};func (_gcgdd *PdfReader )loadForms ()(*PdfAcroForm ,error ){if _gcgdd ._gaece .GetCrypter ()!=nil &&!_gcgdd ._gaece .IsAuthenticated (){return nil ,_e .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); -};_fddb :=_gcgdd ._dcadd ;_eddbg :=_fddb .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d");if _eddbg ==nil {return nil ,nil ;};_cegca ,_ccdg :=_aff .GetIndirect (_eddbg );_eddbg =_aff .TraceToDirectObject (_eddbg );if _aff .IsNullObject (_eddbg ){_adg .Log .Trace ("\u0041\u0063\u0072of\u006f\u0072\u006d\u0020\u0069\u0073\u0020\u0061\u0020n\u0075l\u006c \u006fb\u006a\u0065\u0063\u0074\u0020\u0028\u0065\u006d\u0070\u0074\u0079\u0029\u000a"); -return nil ,nil ;};_dfac ,_gbgdc :=_aff .GetDict (_eddbg );if !_gbgdc {_adg .Log .Debug ("\u0049n\u0076\u0061\u006c\u0069d\u0020\u0041\u0063\u0072\u006fF\u006fr\u006d \u0065\u006e\u0074\u0072\u0079\u0020\u0025T",_eddbg );_adg .Log .Debug ("\u0044\u006f\u0065\u0073 n\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0066\u006f\u0072\u006d\u0073"); -return nil ,_e .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0061\u0063\u0072\u006ff\u006fr\u006d \u0065\u006e\u0074\u0072\u0079\u0020\u0025T",_eddbg );};_adg .Log .Trace ("\u0048\u0061\u0073\u0020\u0041\u0063\u0072\u006f\u0020f\u006f\u0072\u006d\u0073"); -_adg .Log .Trace ("\u0054\u0072\u0061\u0076\u0065\u0072\u0073\u0065\u0020\u0074\u0068\u0065\u0020\u0041\u0063r\u006ff\u006f\u0072\u006d\u0073\u0020\u0073\u0074\u0072\u0075\u0063\u0074\u0075\u0072\u0065");if !_gcgdd ._gfgg {_bcee :=_gcgdd .traverseObjectData (_dfac ); -if _bcee !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0074\u0072a\u0076\u0065\u0072\u0073\u0065\u0020\u0041\u0063\u0072\u006fFo\u0072\u006d\u0073 \u0028%\u0073\u0029",_bcee ); -return nil ,_bcee ;};};_ecfga ,_daeda :=_gcgdd .newPdfAcroFormFromDict (_cegca ,_dfac );if _daeda !=nil {return nil ,_daeda ;};_ecfga ._abcga =!_ccdg ;return _ecfga ,nil ;}; +// GetObjectNums returns the object numbers of the PDF objects in the file +// Numbered objects are either indirect objects or stream objects. +// e.g. objNums := pdfReader.GetObjectNums() +// The underlying objects can then be accessed with +// pdfReader.GetIndirectObjectByNumber(objNums[0]) for the first available object. +func (_ffdgc *PdfReader )GetObjectNums ()[]int {return _ffdgc ._baad .GetObjectNums ()}; -// PdfTransformParamsDocMDP represents a transform parameters dictionary for the DocMDP method and is used to detect -// modifications relative to a signature field that is signed by the author of a document. -// (Section 12.8.2.2, Table 254 - Entries in the DocMDP transform parameters dictionary p. 471 in PDF32000_2008). -type PdfTransformParamsDocMDP struct{Type *_aff .PdfObjectName ;P *_aff .PdfObjectInteger ;V *_aff .PdfObjectName ;}; +// PdfShadingType3 is a Radial shading. +type PdfShadingType3 struct{*PdfShading ;Coords *_dg .PdfObjectArray ;Domain *_dg .PdfObjectArray ;Function []PdfFunction ;Extend *_dg .PdfObjectArray ;}; // ToPdfObject implements interface PdfModel. -func (_abcg *PdfAnnotationWidget )ToPdfObject ()_aff .PdfObject {_abcg .PdfAnnotation .ToPdfObject ();_fgda :=_abcg ._ccfb ;_ceg :=_fgda .PdfObject .(*_aff .PdfObjectDictionary );if _abcg ._cbcf {return _fgda ;};_abcg ._cbcf =true ;_ceg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0057\u0069\u0064\u0067\u0065\u0074")); -_ceg .SetIfNotNil ("\u0048",_abcg .H );_ceg .SetIfNotNil ("\u004d\u004b",_abcg .MK );_ceg .SetIfNotNil ("\u0041",_abcg .A );_ceg .SetIfNotNil ("\u0041\u0041",_abcg .AA );_ceg .SetIfNotNil ("\u0042\u0053",_abcg .BS );_gbb :=_abcg .Parent ;if _abcg ._afae !=nil {if _abcg ._afae ._dfbfd ==_abcg ._ccfb {_abcg ._afae .ToPdfObject (); -};_gbb =_abcg ._afae .GetContainingPdfObject ();};if _gbb !=_fgda {_ceg .SetIfNotNil ("\u0050\u0061\u0072\u0065\u006e\u0074",_gbb );};_abcg ._cbcf =false ;return _fgda ;}; +func (_begg *PdfActionGoToE )ToPdfObject ()_dg .PdfObject {_begg .PdfAction .ToPdfObject ();_fee :=_begg ._cbd ;_afc :=_fee .PdfObject .(*_dg .PdfObjectDictionary );_afc .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeGoToE )));if _begg .F !=nil {_afc .Set ("\u0046",_begg .F .ToPdfObject ()); +};_afc .SetIfNotNil ("\u0044",_begg .D );_afc .SetIfNotNil ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw",_begg .NewWindow );_afc .SetIfNotNil ("\u0054",_begg .T );return _fee ;}; -// PdfActionImportData represents a importData action. -type PdfActionImportData struct{*PdfAction ;F *PdfFilespec ;};func _cbgad (_dfba _aff .PdfObject ){_adg .Log .Debug ("\u006f\u0062\u006a\u003a\u0020\u0025\u0054\u0020\u0025\u0073",_dfba ,_dfba .String ());if _agefc ,_cfbf :=_dfba .(*_aff .PdfObjectStream ); -_cfbf {_dgfebd ,_gfbb :=_aff .DecodeStream (_agefc );if _gfbb !=nil {_adg .Log .Debug ("\u0045r\u0072\u006f\u0072\u003a\u0020\u0025v",_gfbb );return ;};_adg .Log .Debug ("D\u0065\u0063\u006f\u0064\u0065\u0064\u003a\u0020\u0025\u0073",_dgfebd );}else if _dbdgf ,_aabb :=_dfba .(*_aff .PdfIndirectObject ); -_aabb {_adg .Log .Debug ("\u0025\u0054\u0020%\u0076",_dbdgf .PdfObject ,_dbdgf .PdfObject );_adg .Log .Debug ("\u0025\u0073",_dbdgf .PdfObject .String ());};};func _dcbc (_aaegc *fontCommon )*pdfCIDFontType0 {return &pdfCIDFontType0 {fontCommon :*_aaegc }}; -func _cefcd (_cdcgf _aff .PdfObject )(string ,error ){_cdcgf =_aff .TraceToDirectObject (_cdcgf );switch _gdeb :=_cdcgf .(type ){case *_aff .PdfObjectString :return _gdeb .Str (),nil ;case *_aff .PdfObjectStream :_debae ,_cbdda :=_aff .DecodeStream (_gdeb ); -if _cbdda !=nil {return "",_cbdda ;};return string (_debae ),nil ;};return "",_e .Errorf ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072e\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0068\u006f\u006c\u0064\u0065\u0072\u0020\u0028\u0025\u0054\u0029",_cdcgf ); -}; +// NewXObjectFormFromStream builds the Form XObject from a stream object. +// TODO: Should this be exposed? Consider different access points. +func NewXObjectFormFromStream (stream *_dg .PdfObjectStream )(*XObjectForm ,error ){_gegda :=&XObjectForm {};_gegda ._ebaeb =stream ;_edddf :=*(stream .PdfObjectDictionary );_accgb ,_fbbeg :=_dg .NewEncoderFromStream (stream );if _fbbeg !=nil {return nil ,_fbbeg ; +};_gegda .Filter =_accgb ;if _dgfda :=_edddf .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_dgfda !=nil {_caaad ,_effe :=_dgfda .(*_dg .PdfObjectName );if !_effe {return nil ,_bf .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");}; +if *_caaad !="\u0046\u006f\u0072\u006d"{_ag .Log .Debug ("I\u006ev\u0061\u006c\u0069\u0064\u0020\u0066\u006f\u0072m\u0020\u0073\u0075\u0062ty\u0070\u0065");return nil ,_bf .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0066\u006f\u0072m\u0020\u0073\u0075\u0062ty\u0070\u0065"); +};};if _ecbda :=_edddf .Get ("\u0046\u006f\u0072\u006d\u0054\u0079\u0070\u0065");_ecbda !=nil {_gegda .FormType =_ecbda ;};if _cafef :=_edddf .Get ("\u0042\u0042\u006f\u0078");_cafef !=nil {_gegda .BBox =_cafef ;};if _bbbeca :=_edddf .Get ("\u004d\u0061\u0074\u0072\u0069\u0078"); +_bbbeca !=nil {_gegda .Matrix =_bbbeca ;};if _cggc :=_edddf .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");_cggc !=nil {_cggc =_dg .TraceToDirectObject (_cggc );_dfdab ,_gaebg :=_cggc .(*_dg .PdfObjectDictionary );if !_gaebg {_ag .Log .Debug ("\u0049\u006e\u0076\u0061\u006ci\u0064\u0020\u0058\u004f\u0062j\u0065c\u0074\u0020\u0046\u006f\u0072\u006d\u0020\u0052\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020\u006f\u0062j\u0065\u0063\u0074\u002c\u0020\u0070\u006f\u0069\u006e\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u006e\u006f\u006e\u002d\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079"); +return nil ,_dg .ErrTypeError ;};_bede ,_egfda :=NewPdfPageResourcesFromDict (_dfdab );if _egfda !=nil {_ag .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u0020\u0072\u0065\u0073\u006f\u0075rc\u0065\u0073"); +return nil ,_egfda ;};_gegda .Resources =_bede ;_ag .Log .Trace ("\u0046\u006f\u0072\u006d r\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u003a\u0020\u0025\u0023\u0076",_gegda .Resources );};_gegda .Group =_edddf .Get ("\u0047\u0072\u006fu\u0070");_gegda .Ref =_edddf .Get ("\u0052\u0065\u0066"); +_gegda .MetaData =_edddf .Get ("\u004d\u0065\u0074\u0061\u0044\u0061\u0074\u0061");_gegda .PieceInfo =_edddf .Get ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o");_gegda .LastModified =_edddf .Get ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064"); +_gegda .StructParent =_edddf .Get ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074");_gegda .StructParents =_edddf .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073");_gegda .OPI =_edddf .Get ("\u004f\u0050\u0049"); +_gegda .OC =_edddf .Get ("\u004f\u0043");_gegda .Name =_edddf .Get ("\u004e\u0061\u006d\u0065");_gegda .Stream =stream .Stream ;return _gegda ,nil ;}; -// CharcodesToUnicode converts the character codes `charcodes` to a slice of runes. -// How it works: -// 1. Use the ToUnicode CMap if there is one. -// 2. Use the underlying font's encoding. -func (_eaecd *PdfFont )CharcodesToUnicode (charcodes []_eee .CharCode )[]rune {_cfcda ,_ ,_ :=_eaecd .CharcodesToUnicodeWithStats (charcodes );return _cfcda ;};func _dffg (_aafaf _ega .ReadSeeker ,_eedg *ReaderOpts ,_defb bool ,_fbae string )(*PdfReader ,error ){if _eedg ==nil {_eedg =NewReaderOpts (); -};_gdacf :=*_eedg ;_afffe :=&PdfReader {_dged :_aafaf ,_ddcba :map[_aff .PdfObject ]struct{}{},_cfadc :_cgdee (),_gfgg :_eedg .LazyLoad ,_bfadc :_eedg .ComplianceMode ,_acgad :_defb ,_edbfa :&_gdacf };_eacaa ,_gffg :=_ecaeb ("\u0072");if _gffg !=nil {return nil ,_gffg ; -};_gffg =_gff .Track (_eacaa ,_fbae );if _gffg !=nil {return nil ,_gffg ;};_afffe ._fafag =_eacaa ;var _gbeba *_aff .PdfParser ;if !_afffe ._bfadc {_gbeba ,_gffg =_aff .NewParser (_aafaf );}else {_gbeba ,_gffg =_aff .NewCompliancePdfParser (_aafaf );}; -if _gffg !=nil {return nil ,_gffg ;};_afffe ._gaece =_gbeba ;_geefe ,_gffg :=_afffe .IsEncrypted ();if _gffg !=nil {return nil ,_gffg ;};if !_geefe {_gffg =_afffe .loadStructure ();if _gffg !=nil {return nil ,_gffg ;};}else if _defb {_gecaa ,_cbbfg :=_afffe .Decrypt ([]byte (_eedg .Password )); -if _cbbfg !=nil {return nil ,_cbbfg ;};if !_gecaa {return nil ,_g .New ("\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f \u0064\u0065c\u0072\u0079\u0070\u0074\u0020\u0070\u0061\u0073\u0073w\u006f\u0072\u0064\u0020p\u0072\u006f\u0074\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u006c\u0065\u0020\u002d\u0020\u006e\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0073\u0070\u0065\u0063\u0069\u0066y\u0020\u0070\u0061s\u0073\u0020\u0074\u006f\u0020\u0044\u0065\u0063\u0072\u0079\u0070\u0074"); -};};_afffe ._gfga =make (map[*PdfReader ]*PdfReader );_afffe ._ccbga =make ([]*PdfReader ,_gbeba .GetRevisionNumber ());return _afffe ,nil ;}; +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_bbbbd *PdfShadingType6 )ToPdfObject ()_dg .PdfObject {_bbbbd .PdfShading .ToPdfObject ();_feafd ,_bdff :=_bbbbd .getShadingDict ();if _bdff !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _bbbbd .BitsPerCoordinate !=nil {_feafd .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_bbbbd .BitsPerCoordinate );};if _bbbbd .BitsPerComponent !=nil {_feafd .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_bbbbd .BitsPerComponent ); +};if _bbbbd .BitsPerFlag !=nil {_feafd .Set ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067",_bbbbd .BitsPerFlag );};if _bbbbd .Decode !=nil {_feafd .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_bbbbd .Decode );};if _bbbbd .Function !=nil {if len (_bbbbd .Function )==1{_feafd .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_bbbbd .Function [0].ToPdfObject ()); +}else {_gefaf :=_dg .MakeArray ();for _ ,_ddag :=range _bbbbd .Function {_gefaf .Append (_ddag .ToPdfObject ());};_feafd .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_gefaf );};};return _bbbbd ._bcfbg ;};func (_ecgdg *PdfWriter )writeAcroFormFields ()error {if _ecgdg ._geabe ==nil {return nil ; +};_ag .Log .Trace ("\u0057r\u0069t\u0069\u006e\u0067\u0020\u0061c\u0072\u006f \u0066\u006f\u0072\u006d\u0073");_geefg :=_ecgdg ._geabe .ToPdfObject ();_ag .Log .Trace ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u003a\u0020\u0025\u002b\u0076",_geefg ); +_ecgdg ._ecdf .Set ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d",_geefg );_dcfad :=_ecgdg .addObjects (_geefg );if _dcfad !=nil {return _dcfad ;};return nil ;}; -// ToPdfObject returns the choice field dictionary within an indirect object (container). -func (_bagf *PdfFieldChoice )ToPdfObject ()_aff .PdfObject {_bagf .PdfField .ToPdfObject ();_cdbff :=_bagf ._dfbfd ;_gfgcc :=_cdbff .PdfObject .(*_aff .PdfObjectDictionary );_gfgcc .Set ("\u0046\u0054",_aff .MakeName ("\u0043\u0068"));if _bagf .Opt !=nil {_gfgcc .Set ("\u004f\u0070\u0074",_bagf .Opt ); -};if _bagf .TI !=nil {_gfgcc .Set ("\u0054\u0049",_bagf .TI );};if _bagf .I !=nil {_gfgcc .Set ("\u0049",_bagf .I );};return _cdbff ;}; +// ColorFromPdfObjects gets the color from a series of pdf objects (3 for rgb). +func (_ddabd *PdfColorspaceDeviceRGB )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=3{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_fegb ,_fgcf :=_dg .GetNumbersAsFloat (objects ); +if _fgcf !=nil {return nil ,_fgcf ;};return _ddabd .ColorFromFloats (_fegb );};type pdfSignDictionary struct{*_dg .PdfObjectDictionary ;_cgdea *SignatureHandler ;_cdfca *PdfSignature ;_cagb int64 ;_aaeae int ;_gdbfe int ;_egda int ;_ebaaaa int ;}; -// AlphaMap performs mapping of alpha data for transformations. Allows custom filtering of alpha data etc. -func (_ecda *Image )AlphaMap (mapFunc AlphaMapFunc ){for _dgbf ,_bbcfa :=range _ecda ._becb {_ecda ._becb [_dgbf ]=mapFunc (_bbcfa );};}; +// UpdateXObjectImageFromImage creates a new XObject Image from an +// Image object `img` and default masks from xobjIn. +// The default masks are overridden if img.hasAlpha +// If `encoder` is nil, uses raw encoding (none). +func UpdateXObjectImageFromImage (xobjIn *XObjectImage ,img *Image ,cs PdfColorspace ,encoder _dg .StreamEncoder )(*XObjectImage ,error ){if encoder ==nil {var _fbea error ;encoder ,_fbea =img .getSuitableEncoder ();if _fbea !=nil {_ag .Log .Debug ("F\u0061\u0069l\u0075\u0072\u0065\u0020\u006f\u006e\u0020\u0066\u0069\u006e\u0064\u0069\u006e\u0067\u0020\u0073\u0075\u0069\u0074\u0061b\u006c\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072,\u0020\u0066\u0061\u006c\u006c\u0062\u0061\u0063\u006b\u0020\u0074\u006f\u0020R\u0061\u0077\u0045\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020%\u0076",_fbea ); +encoder =_dg .NewRawEncoder ();};};encoder .UpdateParams (img .GetParamsDict ());_bagda ,_caged :=encoder .EncodeBytes (img .Data );if _caged !=nil {_ag .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0076",_caged ); +return nil ,_caged ;};_efcfe :=NewXObjectImage ();_bdbbf :=img .Width ;_ebaac :=img .Height ;_efcfe .Width =&_bdbbf ;_efcfe .Height =&_ebaac ;_gbfdf :=img .BitsPerComponent ;_efcfe .BitsPerComponent =&_gbfdf ;_efcfe .Filter =encoder ;_efcfe .Stream =_bagda ; +if cs ==nil {if img .ColorComponents ==1{_efcfe .ColorSpace =NewPdfColorspaceDeviceGray ();if img .BitsPerComponent ==16{switch encoder .(type ){case *_dg .DCTEncoder :_efcfe .ColorSpace =NewPdfColorspaceDeviceRGB ();_gbfdf =8;_efcfe .BitsPerComponent =&_gbfdf ; +};};}else if img .ColorComponents ==3{_efcfe .ColorSpace =NewPdfColorspaceDeviceRGB ();}else if img .ColorComponents ==4{switch encoder .(type ){case *_dg .DCTEncoder :_efcfe .ColorSpace =NewPdfColorspaceDeviceRGB ();default:_efcfe .ColorSpace =NewPdfColorspaceDeviceCMYK (); +};}else {return nil ,_bf .New ("c\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020u\u006e\u0064\u0065\u0066in\u0065\u0064");};}else {_efcfe .ColorSpace =cs ;};if len (img ._dgeb )!=0{_fgdb :=NewXObjectImage ();_fgdb .Filter =encoder ;_bacac ,_bbfcc :=encoder .EncodeBytes (img ._dgeb ); +if _bbfcc !=nil {_ag .Log .Debug ("\u0045\u0072\u0072or\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u003a\u0020\u0025\u0076",_bbfcc );return nil ,_bbfcc ;};_fgdb .Stream =_bacac ;_fgdb .BitsPerComponent =_efcfe .BitsPerComponent ; +_fgdb .Width =&img .Width ;_fgdb .Height =&img .Height ;_fgdb .ColorSpace =NewPdfColorspaceDeviceGray ();_efcfe .SMask =_fgdb .ToPdfObject ();}else {_efcfe .SMask =xobjIn .SMask ;_efcfe .ImageMask =xobjIn .ImageMask ;if _efcfe .ColorSpace .GetNumComponents ()==1{_egcfg (_efcfe ); +};};return _efcfe ,nil ;}; -// PdfFunctionType2 defines an exponential interpolation of one input value and n -// output values: -// f(x) = y_0, ..., y_(n-1) -// y_j = C0_j + x^N * (C1_j - C0_j); for 0 <= j < n -// When N=1 ; linear interpolation between C0 and C1. -type PdfFunctionType2 struct{Domain []float64 ;Range []float64 ;C0 []float64 ;C1 []float64 ;N float64 ;_ceeae *_aff .PdfIndirectObject ;}; +// AddCRLs adds CRLs to DSS. +func (_cdbb *DSS )AddCRLs (crls [][]byte )([]*_dg .PdfObjectStream ,error ){return _cdbb .add (&_cdbb .CRLs ,_cdbb ._dcdf ,crls );};func (_ffa *PdfAnnotation )String ()string {_efd :="";_gcfa ,_dab :=_ffa .ToPdfObject ().(*_dg .PdfIndirectObject );if _dab {_efd =_b .Sprintf ("\u0025\u0054\u003a\u0020\u0025\u0073",_ffa ._egcg ,_gcfa .PdfObject .String ()); +};return _efd ;};func (_gegbf *PdfReader )newPdfFieldSignatureFromDict (_dfeg *_dg .PdfObjectDictionary )(*PdfFieldSignature ,error ){_fggbd :=&PdfFieldSignature {};_begc ,_ggbd :=_dg .GetIndirect (_dfeg .Get ("\u0056"));if _ggbd {var _ececg error ;_fggbd .V ,_ececg =_gegbf .newPdfSignatureFromIndirect (_begc ); +if _ececg !=nil {return nil ,_ececg ;};};_fggbd .Lock ,_ =_dg .GetIndirect (_dfeg .Get ("\u004c\u006f\u0063\u006b"));_fggbd .SV ,_ =_dg .GetIndirect (_dfeg .Get ("\u0053\u0056"));return _fggbd ,nil ;}; -// ToInteger convert to an integer format. -func (_dbgd *PdfColorCalRGB )ToInteger (bits int )[3]uint32 {_ecba :=_cf .Pow (2,float64 (bits ))-1;return [3]uint32 {uint32 (_ecba *_dbgd .A ()),uint32 (_ecba *_dbgd .B ()),uint32 (_ecba *_dbgd .C ())};}; +// HasExtGState checks if ExtGState name is available. +func (_defcdb *PdfPage )HasExtGState (name _dg .PdfObjectName )bool {if _defcdb .Resources ==nil {return false ;};if _defcdb .Resources .ExtGState ==nil {return false ;};_cbbec ,_fcegg :=_dg .TraceToDirectObject (_defcdb .Resources .ExtGState ).(*_dg .PdfObjectDictionary ); +if !_fcegg {_ag .Log .Debug ("\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0045\u0078t\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064i\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u003a\u0020\u0025\u0076",_dg .TraceToDirectObject (_defcdb .Resources .ExtGState )); +return false ;};_ecgf :=_cbbec .Get (name );_eaade :=_ecgf !=nil ;return _eaade ;};func (_adcf *Image )samplesAddPadding (_fgaab []uint32 )[]uint32 {_cegde :=_fc .BytesPerLine (int (_adcf .Width ),int (_adcf .BitsPerComponent ),_adcf .ColorComponents )*(8/int (_adcf .BitsPerComponent )); +_bfaca :=_cegde *int (_adcf .Height );if len (_fgaab )==_bfaca {return _fgaab ;};_bgaa :=make ([]uint32 ,_bfaca );_eegac :=int (_adcf .Width )*_adcf .ColorComponents ;for _defb :=0;_defb < int (_adcf .Height );_defb ++{_cgba :=_defb *int (_adcf .Width ); +_cfdfdd :=_defb *_cegde ;for _egaba :=0;_egaba < _eegac ;_egaba ++{_bgaa [_cfdfdd +_egaba ]=_fgaab [_cgba +_egaba ];};};return _bgaa ;};func _abcgf (_aegabe *[]*PdfField ,_adfe FieldFilterFunc ,_gceab bool )[]*PdfField {if _aegabe ==nil {return nil ;}; +_egaf :=*_aegabe ;if len (*_aegabe )==0{return nil ;};_faedg :=_egaf [:0];if _adfe ==nil {_adfe =func (*PdfField )bool {return true };};var _bbafa []*PdfField ;for _ ,_fecad :=range _egaf {_ccbdg :=_adfe (_fecad );if _ccbdg {_bbafa =append (_bbafa ,_fecad ); +if len (_fecad .Kids )> 0{_bbafa =append (_bbafa ,_abcgf (&_fecad .Kids ,_adfe ,_gceab )...);};};if !_gceab ||!_ccbdg ||len (_fecad .Kids )> 0{_faedg =append (_faedg ,_fecad );};};*_aegabe =_faedg ;return _bbafa ;}; -// NewStandard14FontWithEncoding returns the standard 14 font named `basefont` as a *PdfFont and -// a TextEncoder that encodes all the runes in `alphabet`, or an error if this is not possible. -// An error can occur if `basefont` is not one the standard 14 font names. -func NewStandard14FontWithEncoding (basefont StdFontName ,alphabet map[rune ]int )(*PdfFont ,_eee .SimpleEncoder ,error ){_eaged ,_ffdb :=_dggca (basefont );if _ffdb !=nil {return nil ,nil ,_ffdb ;};_acdff ,_cacb :=_eaged .Encoder ().(_eee .SimpleEncoder ); -if !_cacb {return nil ,nil ,_e .Errorf ("\u006f\u006e\u006c\u0079\u0020s\u0069\u006d\u0070\u006c\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0069\u006eg\u0020\u0069\u0073\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u002c\u0020\u0067\u006f\u0074\u0020\u0025\u0054",_eaged .Encoder ()); -};_aebc :=make (map[rune ]_eee .GlyphName );for _gedg :=range alphabet {if _ ,_fcdeg :=_acdff .RuneToCharcode (_gedg );!_fcdeg {_ ,_ddfb :=_eaged ._cadeb .Read (_gedg );if !_ddfb {_adg .Log .Trace ("r\u0075\u006e\u0065\u0020\u0025\u0023x\u003d\u0025\u0071\u0020\u006e\u006f\u0074\u0020\u0069n\u0020\u0074\u0068e\u0020f\u006f\u006e\u0074",_gedg ,_gedg ); -continue ;};_abfd ,_ddfb :=_eee .RuneToGlyph (_gedg );if !_ddfb {_adg .Log .Debug ("\u006eo\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u0066\u006f\u0072\u0020r\u0075\u006e\u0065\u0020\u0025\u0023\u0078\u003d\u0025\u0071",_gedg ,_gedg );continue ;};if len (_aebc )>=255{return nil ,nil ,_g .New ("\u0074\u006f\u006f\u0020\u006d\u0061\u006e\u0079\u0020\u0063\u0068\u0061\u0072a\u0063\u0074\u0065\u0072\u0073\u0020f\u006f\u0072\u0020\u0073\u0069\u006d\u0070\u006c\u0065\u0020\u0065\u006e\u0063o\u0064\u0069\u006e\u0067"); -};_aebc [_gedg ]=_abfd ;};};var (_baadg []_eee .CharCode ;_feabf []_eee .CharCode ;);for _fafgc :=_eee .CharCode (1);_fafgc <=0xff;_fafgc ++{_eggfb ,_bfgg :=_acdff .CharcodeToRune (_fafgc );if !_bfgg {_baadg =append (_baadg ,_fafgc );continue ;};if _ ,_bfgg =alphabet [_eggfb ]; -!_bfgg {_feabf =append (_feabf ,_fafgc );};};_aced :=append (_baadg ,_feabf ...);if len (_aced )< len (_aebc ){return nil ,nil ,_e .Errorf ("n\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0065\u006ec\u006f\u0064\u0065\u0020\u0025\u0064\u0020ru\u006e\u0065\u0073\u002c \u0062\u0075\u0074\u0020\u0068\u0061\u0076\u0065\u0020on\u006c\u0079 \u0025\u0064\u0020\u0073\u006c\u006f\u0074\u0073",len (_aebc ),len (_aced )); -};_ecae :=make ([]rune ,0,len (_aebc ));for _cfbb :=range _aebc {_ecae =append (_ecae ,_cfbb );};_fg .Slice (_ecae ,func (_eacbe ,_dedcf int )bool {return _ecae [_eacbe ]< _ecae [_dedcf ]});_abgg :=make (map[_eee .CharCode ]_eee .GlyphName ,len (_ecae )); -for _ ,_cgfee :=range _ecae {_ffdf :=_aced [0];_aced =_aced [1:];_abgg [_ffdf ]=_aebc [_cgfee ];};_acdff =_eee .ApplyDifferences (_acdff ,_abgg );_eaged .SetEncoder (_acdff );return &PdfFont {_gebd :&_eaged },_acdff ,nil ;}; +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_bdbgc *PdfShadingType1 )ToPdfObject ()_dg .PdfObject {_bdbgc .PdfShading .ToPdfObject ();_gfcfc ,_fdfebg :=_bdbgc .getShadingDict ();if _fdfebg !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _bdbgc .Domain !=nil {_gfcfc .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_bdbgc .Domain );};if _bdbgc .Matrix !=nil {_gfcfc .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_bdbgc .Matrix );};if _bdbgc .Function !=nil {if len (_bdbgc .Function )==1{_gfcfc .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_bdbgc .Function [0].ToPdfObject ()); +}else {_aagce :=_dg .MakeArray ();for _ ,_aecc :=range _bdbgc .Function {_aagce .Append (_aecc .ToPdfObject ());};_gfcfc .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_aagce );};};return _bdbgc ._bcfbg ;}; -// PdfInfoTrapped specifies pdf trapped information. -type PdfInfoTrapped string ;func (_cfad *fontFile )loadFromSegments (_ecdb ,_dafdf []byte )error {_adg .Log .Trace ("\u006c\u006f\u0061dF\u0072\u006f\u006d\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0064\u0020\u0025\u0064",len (_ecdb ),len (_dafdf )); -_dfcb :=_cfad .parseASCIIPart (_ecdb );if _dfcb !=nil {return _dfcb ;};_adg .Log .Trace ("f\u006f\u006e\u0074\u0066\u0069\u006c\u0065\u003d\u0025\u0073",_cfad );if len (_dafdf )==0{return nil ;};_adg .Log .Trace ("f\u006f\u006e\u0074\u0066\u0069\u006c\u0065\u003d\u0025\u0073",_cfad ); -return nil ;}; +// PdfActionHide represents a hide action. +type PdfActionHide struct{*PdfAction ;T _dg .PdfObject ;H _dg .PdfObject ;}; -// PdfShadingType6 is a Coons patch mesh. -type PdfShadingType6 struct{*PdfShading ;BitsPerCoordinate *_aff .PdfObjectInteger ;BitsPerComponent *_aff .PdfObjectInteger ;BitsPerFlag *_aff .PdfObjectInteger ;Decode *_aff .PdfObjectArray ;Function []PdfFunction ;}; +// ToPdfObject returns a PDF object representation of the outline. +func (_efdda *Outline )ToPdfObject ()_dg .PdfObject {return _efdda .ToPdfOutline ().ToPdfObject ()}; -// NewPdfField returns an initialized PdfField. -func NewPdfField ()*PdfField {return &PdfField {_dfbfd :_aff .MakeIndirectObject (_aff .MakeDict ())}}; +// PdfFunctionType3 defines stitching of the subdomains of several 1-input functions to produce +// a single new 1-input function. +type PdfFunctionType3 struct{Domain []float64 ;Range []float64 ;Functions []PdfFunction ;Bounds []float64 ;Encode []float64 ;_defdg *_dg .PdfIndirectObject ;}; -// GetContainingPdfObject returns the container of the outline (indirect object). -func (_bffcg *PdfOutline )GetContainingPdfObject ()_aff .PdfObject {return _bffcg ._ecbb };func _ecaeb (_cfcfbf string )(string ,error ){var _ccdgb _af .Buffer ;_ccdgb .WriteString (_cfcfbf );_ebfdc :=make ([]byte ,8+16);_caacb :=_f .Now ().UTC ().UnixNano (); -_d .BigEndian .PutUint64 (_ebfdc ,uint64 (_caacb ));_ ,_ggecg :=_ed .Read (_ebfdc [8:]);if _ggecg !=nil {return "",_ggecg ;};_ccdgb .WriteString (_fe .EncodeToString (_ebfdc ));return _ccdgb .String (),nil ;}; +// Evaluate runs the function. Input is [x1 x2 x3]. +func (_beccd *PdfFunctionType4 )Evaluate (xVec []float64 )([]float64 ,error ){if _beccd ._agbgd ==nil {_beccd ._agbgd =_gfd .NewPSExecutor (_beccd .Program );};var _fdag []_gfd .PSObject ;for _ ,_gcffa :=range xVec {_fdag =append (_fdag ,_gfd .MakeReal (_gcffa )); +};_eaaa ,_cdfbc :=_beccd ._agbgd .Execute (_fdag );if _cdfbc !=nil {return nil ,_cdfbc ;};_gggfe ,_cdfbc :=_gfd .PSObjectArrayToFloat64Array (_eaaa );if _cdfbc !=nil {return nil ,_cdfbc ;};return _gggfe ,nil ;}; -// NewOutlineDest returns a new outline destination which can be used -// with outline items. -func NewOutlineDest (page int64 ,x ,y float64 )OutlineDest {return OutlineDest {Page :page ,Mode :"\u0058\u0059\u005a",X :x ,Y :y };}; +// GetContext returns the context of the outline tree node, which is either a +// *PdfOutline or a *PdfOutlineItem. The method returns nil for uninitialized +// tree nodes. +func (_ccab *PdfOutlineTreeNode )GetContext ()PdfModel {if _baddd ,_cgef :=_ccab ._baddf .(*PdfOutline );_cgef {return _baddd ;};if _acfb ,_bgegb :=_ccab ._baddf .(*PdfOutlineItem );_bgegb {return _acfb ;};_ag .Log .Debug ("\u0045\u0052RO\u0052\u0020\u0049n\u0076\u0061\u006c\u0069d o\u0075tl\u0069\u006e\u0065\u0020\u0074\u0072\u0065e \u006e\u006f\u0064\u0065\u0020\u0069\u0074e\u006d"); +return nil ;};func _ececd (_bgff []byte )bool {if len (_bgff )< 4{return true ;};for _cgada :=range _bgff [:4]{_dfbf :=rune (_cgada );if !_af .Is (_af .ASCII_Hex_Digit ,_dfbf )&&!_af .IsSpace (_dfbf ){return true ;};};return false ;}; -// HasShadingByName checks whether a shading is defined by the specified keyName. -func (_cfgce *PdfPageResources )HasShadingByName (keyName _aff .PdfObjectName )bool {_ ,_eggc :=_cfgce .GetShadingByName (keyName );return _eggc ;}; +// PdfColorspaceCalRGB stores A, B, C components +type PdfColorspaceCalRGB struct{WhitePoint []float64 ;BlackPoint []float64 ;Gamma []float64 ;Matrix []float64 ;_dfab *_dg .PdfObjectDictionary ;_ccae *_dg .PdfIndirectObject ;};func _eaac (_feed *_dg .PdfObjectDictionary )(*PdfShadingType4 ,error ){_fdeac :=PdfShadingType4 {}; +_aeede :=_feed .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065");if _aeede ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_cedbe ,_cegbd :=_aeede .(*_dg .PdfObjectInteger );if !_cegbd {_ag .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_aeede ); +return nil ,_dg .ErrTypeError ;};_fdeac .BitsPerCoordinate =_cedbe ;_aeede =_feed .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _aeede ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); +return nil ,ErrRequiredAttributeMissing ;};_cedbe ,_cegbd =_aeede .(*_dg .PdfObjectInteger );if !_cegbd {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_aeede ); +return nil ,_dg .ErrTypeError ;};_fdeac .BitsPerComponent =_cedbe ;_aeede =_feed .Get ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067");if _aeede ==nil {_ag .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065r\u0046\u006c\u0061\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_cedbe ,_cegbd =_aeede .(*_dg .PdfObjectInteger );if !_cegbd {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072F\u006c\u0061\u0067\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_aeede ); +return nil ,_dg .ErrTypeError ;};_fdeac .BitsPerComponent =_cedbe ;_aeede =_feed .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _aeede ==nil {_ag .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_cdca ,_cegbd :=_aeede .(*_dg .PdfObjectArray );if !_cegbd {_ag .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_aeede ); +return nil ,_dg .ErrTypeError ;};_fdeac .Decode =_cdca ;_aeede =_feed .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _aeede ==nil {_ag .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); +return nil ,ErrRequiredAttributeMissing ;};_fdeac .Function =[]PdfFunction {};if _bdgcc ,_dedee :=_aeede .(*_dg .PdfObjectArray );_dedee {for _ ,_bedac :=range _bdgcc .Elements (){_ecfe ,_dgdde :=_agec (_bedac );if _dgdde !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_dgdde ); +return nil ,_dgdde ;};_fdeac .Function =append (_fdeac .Function ,_ecfe );};}else {_efefe ,_abaad :=_agec (_aeede );if _abaad !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_abaad ); +return nil ,_abaad ;};_fdeac .Function =append (_fdeac .Function ,_efefe );};return &_fdeac ,nil ;}; -// PdfColorspaceSpecialIndexed is an indexed color space is a lookup table, where the input element -// is an index to the lookup table and the output is a color defined in the lookup table in the Base -// colorspace. -// [/Indexed base hival lookup] -type PdfColorspaceSpecialIndexed struct{Base PdfColorspace ;HiVal int ;Lookup _aff .PdfObject ;_ecfb []byte ;_efeca *_aff .PdfIndirectObject ;};func (_cbc *PdfReader )newPdfActionURIFromDict (_fegba *_aff .PdfObjectDictionary )(*PdfActionURI ,error ){return &PdfActionURI {URI :_fegba .Get ("\u0055\u0052\u0049"),IsMap :_fegba .Get ("\u0049\u0073\u004da\u0070")},nil ; -}; +// NewPdfAnnotationInk returns a new ink annotation. +func NewPdfAnnotationInk ()*PdfAnnotationInk {_ebf :=NewPdfAnnotation ();_fgg :=&PdfAnnotationInk {};_fgg .PdfAnnotation =_ebf ;_fgg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_ebf .SetContext (_fgg );return _fgg ;};func (_bfddd *pdfFontType3 )baseFields ()*fontCommon {return &_bfddd .fontCommon }; +func (_aeg *PdfReader )newPdfActionSubmitFormFromDict (_acc *_dg .PdfObjectDictionary )(*PdfActionSubmitForm ,error ){_dec ,_agcc :=_bccf (_acc .Get ("\u0046"));if _agcc !=nil {return nil ,_agcc ;};return &PdfActionSubmitForm {F :_dec ,Fields :_acc .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"),Flags :_acc .Get ("\u0046\u006c\u0061g\u0073")},nil ; +};func (_bdgb *PdfColorspaceDeviceRGB )String ()string {return "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B";};func (_dafaf *XObjectImage )getParamsDict ()*_dg .PdfObjectDictionary {_agabg :=_dg .MakeDict ();_agabg .Set ("\u0057\u0069\u0064t\u0068",_dg .MakeInteger (*_dafaf .Width )); +_agabg .Set ("\u0048\u0065\u0069\u0067\u0068\u0074",_dg .MakeInteger (*_dafaf .Height ));_agabg .Set ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073",_dg .MakeInteger (int64 (_dafaf .ColorSpace .GetNumComponents ()))); +_agabg .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_dg .MakeInteger (*_dafaf .BitsPerComponent ));return _agabg ;}; -// ToPdfObject implements interface PdfModel. -func (_abgf *PdfAnnotationPolygon )ToPdfObject ()_aff .PdfObject {_abgf .PdfAnnotation .ToPdfObject ();_aegab :=_abgf ._ccfb ;_bbcg :=_aegab .PdfObject .(*_aff .PdfObjectDictionary );_abgf .PdfAnnotationMarkup .appendToPdfDictionary (_bbcg );_bbcg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0050o\u006c\u0079\u0067\u006f\u006e")); -_bbcg .SetIfNotNil ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073",_abgf .Vertices );_bbcg .SetIfNotNil ("\u004c\u0045",_abgf .LE );_bbcg .SetIfNotNil ("\u0042\u0053",_abgf .BS );_bbcg .SetIfNotNil ("\u0049\u0043",_abgf .IC );_bbcg .SetIfNotNil ("\u0042\u0045",_abgf .BE ); -_bbcg .SetIfNotNil ("\u0049\u0054",_abgf .IT );_bbcg .SetIfNotNil ("\u004de\u0061\u0073\u0075\u0072\u0065",_abgf .Measure );return _aegab ;}; +// DetermineColorspaceNameFromPdfObject determines PDF colorspace from a PdfObject. Returns the colorspace name and +// an error on failure. If the colorspace was not found, will return an empty string. +func DetermineColorspaceNameFromPdfObject (obj _dg .PdfObject )(_dg .PdfObjectName ,error ){var _bfcg *_dg .PdfObjectName ;var _abeaf *_dg .PdfObjectArray ;if _gbad ,_cebe :=obj .(*_dg .PdfIndirectObject );_cebe {if _cacc ,_dafa :=_gbad .PdfObject .(*_dg .PdfObjectArray ); +_dafa {_abeaf =_cacc ;}else if _fabc ,_aegba :=_gbad .PdfObject .(*_dg .PdfObjectName );_aegba {_bfcg =_fabc ;};}else if _eacb ,_eaed :=obj .(*_dg .PdfObjectArray );_eaed {_abeaf =_eacb ;}else if _afcfg ,_aegd :=obj .(*_dg .PdfObjectName );_aegd {_bfcg =_afcfg ; +};if _bfcg !=nil {switch *_bfcg {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return *_bfcg ,nil ;case "\u0050a\u0074\u0074\u0065\u0072\u006e":return *_bfcg ,nil ; +};};if _abeaf !=nil &&_abeaf .Len ()> 0{if _aded ,_cbfe :=_abeaf .Get (0).(*_dg .PdfObjectName );_cbfe {switch *_aded {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":if _abeaf .Len ()==1{return *_aded ,nil ; +};case "\u0043a\u006c\u0047\u0072\u0061\u0079","\u0043\u0061\u006c\u0052\u0047\u0042","\u004c\u0061\u0062":return *_aded ,nil ;case "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064","\u0050a\u0074\u0074\u0065\u0072\u006e","\u0049n\u0064\u0065\u0078\u0065\u0064":return *_aded ,nil ; +case "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e","\u0044e\u0076\u0069\u0063\u0065\u004e":return *_aded ,nil ;};};};return "",nil ;}; + +// PdfShading represents a shading dictionary. There are 7 types of shading, +// indicatedby the shading type variable: +// 1: Function-based shading. +// 2: Axial shading. +// 3: Radial shading. +// 4: Free-form Gouraud-shaded triangle mesh. +// 5: Lattice-form Gouraud-shaded triangle mesh. +// 6: Coons patch mesh. +// 7: Tensor-product patch mesh. +// types 4-7 are contained in a stream object, where the dictionary is given by the stream dictionary. +type PdfShading struct{ShadingType *_dg .PdfObjectInteger ;ColorSpace PdfColorspace ;Background *_dg .PdfObjectArray ;BBox *PdfRectangle ;AntiAlias *_dg .PdfObjectBool ;_eeddb PdfModel ;_bcfbg _dg .PdfObject ;}; + +// AddExtGState adds a graphics state to the XObject resources. +func (_fcgeg *PdfPage )AddExtGState (name _dg .PdfObjectName ,egs *_dg .PdfObjectDictionary )error {if _fcgeg .Resources ==nil {_fcgeg .Resources =NewPdfPageResources ();};if _fcgeg .Resources .ExtGState ==nil {_fcgeg .Resources .ExtGState =_dg .MakeDict (); +};_bcdec ,_cgcbc :=_dg .TraceToDirectObject (_fcgeg .Resources .ExtGState ).(*_dg .PdfObjectDictionary );if !_cgcbc {_ag .Log .Debug ("\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0045\u0078t\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064i\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u003a\u0020\u0025\u0076",_dg .TraceToDirectObject (_fcgeg .Resources .ExtGState )); +return _bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_bcdec .Set (name ,egs );return nil ;};type pdfFontType0 struct{fontCommon ;_bedc *_dg .PdfIndirectObject ;_ggec _bd .TextEncoder ;Encoding _dg .PdfObject ; +DescendantFont *PdfFont ;_bfae *_ff .CMap ;}; // GetContainingPdfObject implements interface PdfModel. -func (_dffb *PdfAnnotation )GetContainingPdfObject ()_aff .PdfObject {return _dffb ._ccfb };func (_edcc *pdfCIDFontType0 )baseFields ()*fontCommon {return &_edcc .fontCommon }; +func (_aebbc *PdfSignatureReference )GetContainingPdfObject ()_dg .PdfObject {return _aebbc ._eccgb }; -// ToPdfObject convert PdfInfo to pdf object. -func (_gceda *PdfInfo )ToPdfObject ()_aff .PdfObject {_bgbc :=_aff .MakeDict ();_bgbc .SetIfNotNil ("\u0054\u0069\u0074l\u0065",_gceda .Title );_bgbc .SetIfNotNil ("\u0041\u0075\u0074\u0068\u006f\u0072",_gceda .Author );_bgbc .SetIfNotNil ("\u0053u\u0062\u006a\u0065\u0063\u0074",_gceda .Subject ); -_bgbc .SetIfNotNil ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",_gceda .Keywords );_bgbc .SetIfNotNil ("\u0043r\u0065\u0061\u0074\u006f\u0072",_gceda .Creator );_bgbc .SetIfNotNil ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",_gceda .Producer ); -_bgbc .SetIfNotNil ("\u0054r\u0061\u0070\u0070\u0065\u0064",_gceda .Trapped );if _gceda .CreationDate !=nil {_bgbc .SetIfNotNil ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_gceda .CreationDate .ToPdfObject ());};if _gceda .ModifiedDate !=nil {_bgbc .SetIfNotNil ("\u004do\u0064\u0044\u0061\u0074\u0065",_gceda .ModifiedDate .ToPdfObject ()); -};for _ ,_fcac :=range _gceda ._cgbc .Keys (){_bgbc .SetIfNotNil (_fcac ,_gceda ._cgbc .Get (_fcac ));};return _bgbc ;}; +// PdfAnnotationPolyLine represents PolyLine annotations. +// (Section 12.5.6.9). +type PdfAnnotationPolyLine struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Vertices _dg .PdfObject ;LE _dg .PdfObject ;BS _dg .PdfObject ;IC _dg .PdfObject ;BE _dg .PdfObject ;IT _dg .PdfObject ;Measure _dg .PdfObject ;};func (_cee *PdfReader )newPdfActionGotoRFromDict (_ceeb *_dg .PdfObjectDictionary )(*PdfActionGoToR ,error ){_eeg ,_beeb :=_bccf (_ceeb .Get ("\u0046")); +if _beeb !=nil {return nil ,_beeb ;};return &PdfActionGoToR {D :_ceeb .Get ("\u0044"),NewWindow :_ceeb .Get ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw"),F :_eeg },nil ;}; + +// PdfColorspaceICCBased format [/ICCBased stream] +// +// The stream shall contain the ICC profile. +// A conforming reader shall support ICC.1:2004:10 as required by PDF 1.7, which will enable it +// to properly render all embedded ICC profiles regardless of the PDF version +// +// In the current implementation, we rely on the alternative colormap provided. +type PdfColorspaceICCBased struct{N int ;Alternate PdfColorspace ; + +// If omitted ICC not supported: then use DeviceGray, +// DeviceRGB or DeviceCMYK for N=1,3,4 respectively. +Range []float64 ;Metadata *_dg .PdfObjectStream ;Data []byte ;_fbdff *_dg .PdfIndirectObject ;_dafg *_dg .PdfObjectStream ;};func (_cca *PdfReader )newPdfAnnotationWatermarkFromDict (_gac *_dg .PdfObjectDictionary )(*PdfAnnotationWatermark ,error ){_abbe :=PdfAnnotationWatermark {}; +_abbe .FixedPrint =_gac .Get ("\u0046\u0069\u0078\u0065\u0064\u0050\u0072\u0069\u006e\u0074");return &_abbe ,nil ;}; + +// UpdateObject marks `obj` as updated and to be included in the following revision. +func (_ccag *PdfAppender )UpdateObject (obj _dg .PdfObject ){_ccag .replaceObject (obj ,obj );if _ ,_edde :=_ccag ._efa [obj ];!_edde {_ccag ._dgfd =append (_ccag ._dgfd ,obj );_ccag ._efa [obj ]=struct{}{};};}; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// components. The slice should contain three PdfObjectFloat elements representing -// the A, B and C components of the color. -func (_fbceb *PdfColorspaceCalRGB )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=3{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_cgaf ,_cbab :=_aff .GetNumbersAsFloat (objects ); -if _cbab !=nil {return nil ,_cbab ;};return _fbceb .ColorFromFloats (_cgaf );}; +// CheckAccessRights checks access rights and permissions for a specified password. If either user/owner +// password is specified, full rights are granted, otherwise the access rights are specified by the +// Permissions flag. +// +// The bool flag indicates that the user can access and view the file. +// The AccessPermissions shows what access the user has for editing etc. +// An error is returned if there was a problem performing the authentication. +func (_fegbg *PdfReader )CheckAccessRights (password []byte )(bool ,_gbd .Permissions ,error ){return _fegbg ._baad .CheckAccessRights (password );}; -// ColorFromPdfObjects loads the color from PDF objects. -// The first objects (if present) represent the color in underlying colorspace. The last one represents -// the name of the pattern. -func (_dcfd *PdfColorspaceSpecialPattern )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )< 1{return nil ,_g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020o\u0066 \u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072\u0073"); -};_fcba :=&PdfColorPattern {};_agdf ,_gfec :=objects [len (objects )-1].(*_aff .PdfObjectName );if !_gfec {_adg .Log .Debug ("\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006ft\u0020a\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",objects [len (objects )-1]); -return nil ,ErrTypeCheck ;};_fcba .PatternName =*_agdf ;if len (objects )> 1{_bbddd :=objects [0:len (objects )-1];if _dcfd .UnderlyingCS ==nil {_adg .Log .Debug ("P\u0061\u0074t\u0065\u0072\u006e\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0077\u0069\u0074\u0068\u0020\u0064\u0065\u0066\u0069\u006ee\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006et\u0073\u0020\u0062\u0075\u0074\u0020\u0075\u006e\u0064\u0065\u0072\u006c\u0079i\u006e\u0067\u0020\u0063\u0073\u0020\u006d\u0069\u0073\u0073\u0069n\u0067"); -return nil ,_g .New ("\u0075n\u0064\u0065\u0072\u006cy\u0069\u006e\u0067\u0020\u0043S\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};_acgf ,_dgbc :=_dcfd .UnderlyingCS .ColorFromPdfObjects (_bbddd );if _dgbc !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055n\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0076\u0069\u0061\u0020\u0075\u006e\u0064\u0065\u0072\u006c\u0079\u0069\u006e\u0067\u0020\u0063\u0073\u003a\u0020\u0025\u0076",_dgbc ); -return nil ,_dgbc ;};_fcba .Color =_acgf ;};return _fcba ,nil ;};func (_ffba *pdfFontType0 )bytesToCharcodes (_cdbbc []byte )([]_eee .CharCode ,bool ){if _ffba ._baedc ==nil {return nil ,false ;};_deaf ,_dcff :=_ffba ._baedc .BytesToCharcodes (_cdbbc ); -if !_dcff {return nil ,false ;};_bedgd :=make ([]_eee .CharCode ,len (_deaf ));for _cdgdd ,_fgaeg :=range _deaf {_bedgd [_cdgdd ]=_eee .CharCode (_fgaeg );};return _bedgd ,true ;}; +// ToPdfObject returns a stream object. +func (_bbaae *XObjectImage )ToPdfObject ()_dg .PdfObject {_cddfec :=_bbaae ._abfb ;_ceea :=_cddfec .PdfObjectDictionary ;if _bbaae .Filter !=nil {_ceea =_bbaae .Filter .MakeStreamDict ();_cddfec .PdfObjectDictionary =_ceea ;};_ceea .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0058O\u0062\u006a\u0065\u0063\u0074")); +_ceea .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0049\u006d\u0061g\u0065"));_ceea .Set ("\u0057\u0069\u0064t\u0068",_dg .MakeInteger (*(_bbaae .Width )));_ceea .Set ("\u0048\u0065\u0069\u0067\u0068\u0074",_dg .MakeInteger (*(_bbaae .Height ))); +if _bbaae .BitsPerComponent !=nil {_ceea .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_dg .MakeInteger (*(_bbaae .BitsPerComponent )));};if _bbaae .ColorSpace !=nil {_ceea .SetIfNotNil ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065",_bbaae .ColorSpace .ToPdfObject ()); +};_ceea .SetIfNotNil ("\u0049\u006e\u0074\u0065\u006e\u0074",_bbaae .Intent );_ceea .SetIfNotNil ("\u0049m\u0061\u0067\u0065\u004d\u0061\u0073k",_bbaae .ImageMask );_ceea .SetIfNotNil ("\u004d\u0061\u0073\u006b",_bbaae .Mask );_cbbef :=_ceea .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")!=nil ; +if _bbaae .Decode ==nil &&_cbbef {_ceea .Remove ("\u0044\u0065\u0063\u006f\u0064\u0065");}else if _bbaae .Decode !=nil {_ceea .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_bbaae .Decode );};_ceea .SetIfNotNil ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065",_bbaae .Interpolate ); +_ceea .SetIfNotNil ("\u0041\u006c\u0074e\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0073",_bbaae .Alternatives );_ceea .SetIfNotNil ("\u0053\u004d\u0061s\u006b",_bbaae .SMask );_ceea .SetIfNotNil ("S\u004d\u0061\u0073\u006b\u0049\u006e\u0044\u0061\u0074\u0061",_bbaae .SMaskInData ); +_ceea .SetIfNotNil ("\u004d\u0061\u0074t\u0065",_bbaae .Matte );_ceea .SetIfNotNil ("\u004e\u0061\u006d\u0065",_bbaae .Name );_ceea .SetIfNotNil ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074",_bbaae .StructParent );_ceea .SetIfNotNil ("\u0049\u0044",_bbaae .ID ); +_ceea .SetIfNotNil ("\u004f\u0050\u0049",_bbaae .OPI );_ceea .SetIfNotNil ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_bbaae .Metadata );_ceea .SetIfNotNil ("\u004f\u0043",_bbaae .OC );_ceea .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_bbaae .Stream )))); +_cddfec .Stream =_bbaae .Stream ;return _cddfec ;}; -// ColorFromFloats returns a new PdfColor based on input color components. -func (_begd *PdfColorspaceDeviceN )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=_begd .GetNumComponents (){return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_daca ,_bcfcd :=_begd .TintTransform .Evaluate (vals ); -if _bcfcd !=nil {return nil ,_bcfcd ;};_bdbb ,_bcfcd :=_begd .AlternateSpace .ColorFromFloats (_daca );if _bcfcd !=nil {return nil ,_bcfcd ;};return _bdbb ,nil ;};func (_cafd *pdfFontSimple )updateStandard14Font (){_fcbgd ,_bbcgf :=_cafd .Encoder ().(_eee .SimpleEncoder ); -if !_bbcgf {_adg .Log .Error ("\u0057\u0072\u006f\u006e\u0067\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0074y\u0070e\u003a\u0020\u0025\u0054\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u002e",_cafd .Encoder (),_cafd );return ;};_addaf :=_fcbgd .Charcodes (); -_cafd ._ecgd =make (map[_eee .CharCode ]float64 ,len (_addaf ));for _ ,_adfa :=range _addaf {_ecfg ,_ :=_fcbgd .CharcodeToRune (_adfa );_bedeb ,_ :=_cafd ._cadeb .Read (_ecfg );_cafd ._ecgd [_adfa ]=_bedeb .Wx ;};}; +// ToInteger convert to an integer format. +func (_dcbe *PdfColorDeviceRGB )ToInteger (bits int )[3]uint32 {_dag :=_cg .Pow (2,float64 (bits ))-1;return [3]uint32 {uint32 (_dag *_dcbe .R ()),uint32 (_dag *_dcbe .G ()),uint32 (_dag *_dcbe .B ())};}; -// GetPdfVersion gets the version of the PDF used within this document. -func (_gdea *PdfWriter )GetPdfVersion ()string {return _gdea .getPdfVersion ()}; +// NewPdfFontFromTTF loads a TTF font and returns a PdfFont type that can be +// used in text styling functions. +// Uses a WinAnsiTextEncoder and loads only character codes 32-255. +// NOTE: For composite fonts such as used in symbolic languages, use NewCompositePdfFontFromTTF. +func NewPdfFontFromTTF (r _cf .ReadSeeker )(*PdfFont ,error ){const _gcba =_bd .CharCode (32);const _begca =_bd .CharCode (255);_aebec ,_ggad :=_gf .ReadAll (r );if _ggad !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0072\u0065\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u003a\u0020\u0025\u0076",_ggad ); +return nil ,_ggad ;};_cffae ,_ggad :=_bbg .TtfParse (_bc .NewReader (_aebec ));if _ggad !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020l\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0054\u0054F\u0020\u0066\u006fn\u0074:\u0020\u0025\u0076",_ggad ); +return nil ,_ggad ;};_gefbg :=&pdfFontSimple {_cfagf :make (map[_bd .CharCode ]float64 ),fontCommon :fontCommon {_bcga :"\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"}};_gefbg ._bdeed =_bd .NewWinAnsiEncoder ();_gefbg ._ecbf =_cffae .PostScriptName ; +_gefbg .FirstChar =_dg .MakeInteger (int64 (_gcba ));_gefbg .LastChar =_dg .MakeInteger (int64 (_begca ));_cbae :=1000.0/float64 (_cffae .UnitsPerEm );if len (_cffae .Widths )<=0{return nil ,_bf .New ("\u0045\u0052\u0052O\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065 \u0028\u0057\u0069\u0064\u0074\u0068\u0073\u0029"); +};_baaca :=_cbae *float64 (_cffae .Widths [0]);_adgdf :=make ([]float64 ,0,_begca -_gcba +1);for _acbag :=_gcba ;_acbag <=_begca ;_acbag ++{_aabce ,_dgad :=_gefbg .Encoder ().CharcodeToRune (_acbag );if !_dgad {_ag .Log .Debug ("\u0052u\u006e\u0065\u0020\u006eo\u0074\u0020\u0066\u006f\u0075n\u0064 \u0028c\u006f\u0064\u0065\u003a\u0020\u0025\u0064)",_acbag ); +_adgdf =append (_adgdf ,_baaca );continue ;};_afec ,_egaaa :=_cffae .Chars [_aabce ];if !_egaaa {_ag .Log .Debug ("R\u0075\u006e\u0065\u0020no\u0074 \u0069\u006e\u0020\u0054\u0054F\u0020\u0043\u0068\u0061\u0072\u0073");_adgdf =append (_adgdf ,_baaca ); +continue ;};_fdddf :=_cbae *float64 (_cffae .Widths [_afec ]);_adgdf =append (_adgdf ,_fdddf );};_gefbg .Widths =_dg .MakeIndirectObject (_dg .MakeArrayFromFloats (_adgdf ));if len (_adgdf )< int (_begca -_gcba +1){_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0065\u006e\u0067t\u0068\u0020\u006f\u0066\u0020\u0077\u0069\u0064\u0074\u0068s,\u0020\u0025\u0064 \u003c \u0025\u0064",len (_adgdf ),255-32+1); +return nil ,_dg .ErrRangeError ;};for _egfff :=_gcba ;_egfff <=_begca ;_egfff ++{_gefbg ._cfagf [_egfff ]=_adgdf [_egfff -_gcba ];};_gefbg .Encoding =_dg .MakeName ("\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067");_cdfac :=&PdfFontDescriptor {}; +_cdfac .FontName =_dg .MakeName (_cffae .PostScriptName );_cdfac .Ascent =_dg .MakeFloat (_cbae *float64 (_cffae .TypoAscender ));_cdfac .Descent =_dg .MakeFloat (_cbae *float64 (_cffae .TypoDescender ));_cdfac .CapHeight =_dg .MakeFloat (_cbae *float64 (_cffae .CapHeight )); +_cdfac .FontBBox =_dg .MakeArrayFromFloats ([]float64 {_cbae *float64 (_cffae .Xmin ),_cbae *float64 (_cffae .Ymin ),_cbae *float64 (_cffae .Xmax ),_cbae *float64 (_cffae .Ymax )});_cdfac .ItalicAngle =_dg .MakeFloat (_cffae .ItalicAngle );_cdfac .MissingWidth =_dg .MakeFloat (_cbae *float64 (_cffae .Widths [0])); +_eegdb ,_ggad :=_dg .MakeStream (_aebec ,_dg .NewFlateEncoder ());if _ggad !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074o\u0020m\u0061\u006b\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_ggad ); +return nil ,_ggad ;};_eegdb .PdfObjectDictionary .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_dg .MakeInteger (int64 (len (_aebec ))));_cdfac .FontFile2 =_eegdb ;if _cffae .Bold {_cdfac .StemV =_dg .MakeInteger (120);}else {_cdfac .StemV =_dg .MakeInteger (70); +};_defge :=_gbaba ;if _cffae .IsFixedPitch {_defge |=_gafad ;};if _cffae .ItalicAngle !=0{_defge |=_bfeb ;};_cdfac .Flags =_dg .MakeInteger (int64 (_defge ));_gefbg ._ccfb =_cdfac ;_cfgf :=&PdfFont {_cadf :_gefbg };return _cfgf ,nil ;}; -// PdfActionJavaScript represents a javaScript action. -type PdfActionJavaScript struct{*PdfAction ;JS _aff .PdfObject ;};var _ pdfFont =(*pdfCIDFontType0 )(nil ); +// PdfActionResetForm represents a resetForm action. +type PdfActionResetForm struct{*PdfAction ;Fields _dg .PdfObject ;Flags _dg .PdfObject ;}; -// PdfFunctionType0 uses a sequence of sample values (contained in a stream) to provide an approximation -// for functions whose domains and ranges are bounded. The samples are organized as an m-dimensional -// table in which each entry has n components -type PdfFunctionType0 struct{Domain []float64 ;Range []float64 ;NumInputs int ;NumOutputs int ;Size []int ;BitsPerSample int ;Order int ;Encode []float64 ;Decode []float64 ;_aggcg []byte ;_bfcae []uint32 ;_fcbe *_aff .PdfObjectStream ;}; +// ToPdfObject returns the PDF representation of the shading pattern. +func (_debbb *PdfShadingPattern )ToPdfObject ()_dg .PdfObject {_debbb .PdfPattern .ToPdfObject ();_deecg :=_debbb .getDict ();if _debbb .Shading !=nil {_deecg .Set ("\u0053h\u0061\u0064\u0069\u006e\u0067",_debbb .Shading .ToPdfObject ());};if _debbb .Matrix !=nil {_deecg .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_debbb .Matrix ); +};if _debbb .ExtGState !=nil {_deecg .Set ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_debbb .ExtGState );};return _debbb ._eacce ;}; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain a single element between 0 and 1. -func (_facf *PdfColorspaceDeviceGray )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gcc :=vals [0];if _gcc < 0.0||_gcc > 1.0{_adg .Log .Debug ("\u0049\u006eco\u006d\u0070\u0061t\u0069\u0062\u0069\u006city\u003a R\u0061\u006e\u0067\u0065\u0020\u006f\u0075ts\u0069\u0064\u0065\u0020\u005b\u0030\u002c1\u005d"); -};if _gcc < 0.0{_gcc =0.0;}else if _gcc > 1.0{_gcc =1.0;};return NewPdfColorDeviceGray (_gcc ),nil ;}; +// ToPdfObject converts the font to a PDF representation. +func (_dgfeg *pdfFontType0 )ToPdfObject ()_dg .PdfObject {if _dgfeg ._bedc ==nil {_dgfeg ._bedc =&_dg .PdfIndirectObject {};};_fggcb :=_dgfeg .baseFields ().asPdfObjectDictionary ("\u0054\u0079\u0070e\u0030");_dgfeg ._bedc .PdfObject =_fggcb ;if _dgfeg .Encoding !=nil {_fggcb .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_dgfeg .Encoding ); +}else if _dgfeg ._ggec !=nil {_fggcb .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_dgfeg ._ggec .ToPdfObject ());};if _dgfeg .DescendantFont !=nil {_fggcb .Set ("\u0044e\u0073c\u0065\u006e\u0064\u0061\u006e\u0074\u0046\u006f\u006e\u0074\u0073",_dg .MakeArray (_dgfeg .DescendantFont .ToPdfObject ())); +};return _dgfeg ._bedc ;}; -// ToPdfObject implements interface PdfModel. -func (_dad *PdfAnnotation3D )ToPdfObject ()_aff .PdfObject {_dad .PdfAnnotation .ToPdfObject ();_bfafb :=_dad ._ccfb ;_dbab :=_bfafb .PdfObject .(*_aff .PdfObjectDictionary );_dbab .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0033\u0044")); -_dbab .SetIfNotNil ("\u0033\u0044\u0044",_dad .T3DD );_dbab .SetIfNotNil ("\u0033\u0044\u0056",_dad .T3DV );_dbab .SetIfNotNil ("\u0033\u0044\u0041",_dad .T3DA );_dbab .SetIfNotNil ("\u0033\u0044\u0049",_dad .T3DI );_dbab .SetIfNotNil ("\u0033\u0044\u0042",_dad .T3DB ); -return _bfafb ;}; +// StandardImplementer is an interface that defines specified PDF standards like PDF/A-1A (pdfa.Profile1A) +// NOTE: This implementation is in experimental development state. +// Keep in mind that it might change in the subsequent minor versions. +type StandardImplementer interface{StandardValidator ;StandardApplier ; -// ToPdfObject implements interface PdfModel. -func (_dcfb *PdfBorderStyle )ToPdfObject ()_aff .PdfObject {_bafg :=_aff .MakeDict ();if _dcfb ._bgcf !=nil {if _ddba ,_eacg :=_dcfb ._bgcf .(*_aff .PdfIndirectObject );_eacg {_ddba .PdfObject =_bafg ;};};_bafg .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0042\u006f\u0072\u0064\u0065\u0072")); -if _dcfb .W !=nil {_bafg .Set ("\u0057",_aff .MakeFloat (*_dcfb .W ));};if _dcfb .S !=nil {_bafg .Set ("\u0053",_aff .MakeName (_dcfb .S .GetPdfName ()));};if _dcfb .D !=nil {_bafg .Set ("\u0044",_aff .MakeArrayFromIntegers (*_dcfb .D ));};if _dcfb ._bgcf !=nil {return _dcfb ._bgcf ; -};return _bafg ;}; +// StandardName gets the human-readable name of the standard. +StandardName ()string ;}; -// ToPdfObject recursively builds the Outline tree PDF object. -func (_bffdf *PdfOutline )ToPdfObject ()_aff .PdfObject {_bbcd :=_bffdf ._ecbb ;_fgdb :=_bbcd .PdfObject .(*_aff .PdfObjectDictionary );_fgdb .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073"));if _bffdf .First !=nil {_fgdb .Set ("\u0046\u0069\u0072s\u0074",_bffdf .First .ToPdfObject ()); -};if _bffdf .Last !=nil {_fgdb .Set ("\u004c\u0061\u0073\u0074",_bffdf .Last .GetContext ().GetContainingPdfObject ());};if _bffdf .Parent !=nil {_fgdb .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_bffdf .Parent .GetContext ().GetContainingPdfObject ()); -};if _bffdf .Count !=nil {_fgdb .Set ("\u0043\u006f\u0075n\u0074",_aff .MakeInteger (*_bffdf .Count ));};return _bbcd ;}; +// PdfActionLaunch represents a launch action. +type PdfActionLaunch struct{*PdfAction ;F *PdfFilespec ;Win _dg .PdfObject ;Mac _dg .PdfObject ;Unix _dg .PdfObject ;NewWindow _dg .PdfObject ;}; -// NewPdfAnnotationFileAttachment returns a new file attachment annotation. -func NewPdfAnnotationFileAttachment ()*PdfAnnotationFileAttachment {_cbf :=NewPdfAnnotation ();_ecb :=&PdfAnnotationFileAttachment {};_ecb .PdfAnnotation =_cbf ;_ecb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_cbf .SetContext (_ecb );return _ecb ;}; -var _ pdfFont =(*pdfFontType0 )(nil ); +// Sign signs a specific page with a digital signature. +// The signature field parameter must have a valid signature dictionary +// specified by its V field. +func (_ddgg *PdfAppender )Sign (pageNum int ,field *PdfFieldSignature )error {if field ==nil {return _bf .New ("\u0073\u0069g\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065 n\u0069\u006c"); +};_ffad :=field .V ;if _ffad ==nil {return _bf .New ("\u0073\u0069\u0067na\u0074\u0075\u0072\u0065\u0020\u0064\u0069\u0063\u0074i\u006fn\u0061r\u0079 \u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c");};_cadgf :=pageNum -1; +if _cadgf < 0||_cadgf > len (_ddgg ._ggdd )-1{return _b .Errorf ("\u0070\u0061\u0067\u0065\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064",pageNum );};_cdbg :=_ddgg .Reader .PageList [_cadgf ];field .P =_cdbg .ToPdfObject ();if field .T ==nil ||field .T .String ()==""{field .T =_dg .MakeString (_b .Sprintf ("\u0053\u0069\u0067n\u0061\u0074\u0075\u0072\u0065\u0020\u0025\u0064",pageNum )); +};_cdbg .AddAnnotation (field .PdfAnnotationWidget .PdfAnnotation );if _ddgg ._afab ==_ddgg ._debg .AcroForm {_ddgg ._afab =_ddgg .Reader .AcroForm ;};_dedcd :=_ddgg ._afab ;if _dedcd ==nil {_dedcd =NewPdfAcroForm ();};_dedcd .SigFlags =_dg .MakeInteger (3); +if _dedcd .NeedAppearances !=nil {_dedcd .NeedAppearances =nil ;};_acff :=append (_dedcd .AllFields (),field .PdfField );_dedcd .Fields =&_acff ;_ddgg .ReplaceAcroForm (_dedcd );_ddgg .UpdatePage (_cdbg );_ddgg ._ggdd [_cadgf ]=_cdbg ;if _ ,_bdag :=field .V .GetDocMDPPermission (); +_bdag {_ddgg ._accbd =NewPermissions (field .V );};return nil ;};type pdfFontType3 struct{fontCommon ;_aedbb *_dg .PdfIndirectObject ; -// GetNumComponents returns the number of color components (1 for grayscale). -func (_fgba *PdfColorDeviceGray )GetNumComponents ()int {return 1}; +// These fields are specific to Type 3 fonts. +CharProcs _dg .PdfObject ;Encoding _dg .PdfObject ;FontBBox _dg .PdfObject ;FontMatrix _dg .PdfObject ;FirstChar _dg .PdfObject ;LastChar _dg .PdfObject ;Widths _dg .PdfObject ;Resources _dg .PdfObject ;_bcde map[_bd .CharCode ]float64 ;_geffb _bd .TextEncoder ; +};func (_edcde *PdfPattern )getDict ()*_dg .PdfObjectDictionary {if _bcfgf ,_cdce :=_edcde ._eacce .(*_dg .PdfIndirectObject );_cdce {_gecd ,_fcbgf :=_bcfgf .PdfObject .(*_dg .PdfObjectDictionary );if !_fcbgf {return nil ;};return _gecd ;}else if _fegef ,_bfgc :=_edcde ._eacce .(*_dg .PdfObjectStream ); +_bfgc {return _fegef .PdfObjectDictionary ;}else {_ag .Log .Debug ("\u0054r\u0079\u0069\u006e\u0067\u0020\u0074\u006f a\u0063\u0063\u0065\u0073\u0073\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0079\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0062j\u0065\u0063t \u0074\u0079\u0070e\u0020\u0028\u0025\u0054\u0029",_edcde ._eacce ); +return nil ;};};func _edcf (_bcfcb *_fc .ImageBase )(_decbg Image ){_decbg .Width =int64 (_bcfcb .Width );_decbg .Height =int64 (_bcfcb .Height );_decbg .BitsPerComponent =int64 (_bcfcb .BitsPerComponent );_decbg .ColorComponents =_bcfcb .ColorComponents ; +_decbg .Data =_bcfcb .Data ;_decbg ._gfbb =_bcfcb .Decode ;_decbg ._dgeb =_bcfcb .Alpha ;return _decbg ;};func (_gfeg *PdfShading )getShadingDict ()(*_dg .PdfObjectDictionary ,error ){_gfebe :=_gfeg ._bcfbg ;if _gdaaf ,_gdbbg :=_gfebe .(*_dg .PdfIndirectObject ); +_gdbbg {_ffdb ,_ecafgd :=_gdaaf .PdfObject .(*_dg .PdfObjectDictionary );if !_ecafgd {return nil ,_dg .ErrTypeError ;};return _ffdb ,nil ;}else if _gfeea ,_bccfdd :=_gfebe .(*_dg .PdfObjectStream );_bccfdd {return _gfeea .PdfObjectDictionary ,nil ;}else if _gfdda ,_cagcc :=_gfebe .(*_dg .PdfObjectDictionary ); +_cagcc {return _gfdda ,nil ;}else {_ag .Log .Debug ("U\u006e\u0061\u0062\u006c\u0065\u0020t\u006f\u0020\u0061\u0063\u0063\u0065s\u0073\u0020\u0073\u0068\u0061\u0064\u0069n\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079");return nil ,_dg .ErrTypeError ; +};}; -// GetDescent returns the Descent of the font `descriptor`. -func (_bdee *PdfFontDescriptor )GetDescent ()(float64 ,error ){return _aff .GetNumberAsFloat (_bdee .Descent );}; +// PdfActionGoTo represents a GoTo action. +type PdfActionGoTo struct{*PdfAction ;D _dg .PdfObject ;}; -// Transform rectangle with the supplied matrix. -func (_ceegc *PdfRectangle )Transform (transformMatrix _eb .Matrix ){_ceegc .Llx ,_ceegc .Lly =transformMatrix .Transform (_ceegc .Llx ,_ceegc .Lly );_ceegc .Urx ,_ceegc .Ury =transformMatrix .Transform (_ceegc .Urx ,_ceegc .Ury );_ceegc .Normalize (); -}; +// SetContentStream updates the content stream with specified encoding. +// If encoding is null, will use the xform.Filter object or Raw encoding if not set. +func (_egfec *XObjectForm )SetContentStream (content []byte ,encoder _dg .StreamEncoder )error {_gbgg :=content ;if encoder ==nil {if _egfec .Filter !=nil {encoder =_egfec .Filter ;}else {encoder =_dg .NewRawEncoder ();};};_afde ,_aefgb :=encoder .EncodeBytes (_gbgg ); +if _aefgb !=nil {return _aefgb ;};_gbgg =_afde ;_egfec .Stream =_gbgg ;_egfec .Filter =encoder ;return nil ;}; -// NewPdfColorspaceICCBased returns a new ICCBased colorspace object. -func NewPdfColorspaceICCBased (N int )(*PdfColorspaceICCBased ,error ){_faeb :=&PdfColorspaceICCBased {};if N !=1&&N !=3&&N !=4{return nil ,_e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004e\u0020\u0028\u0031/\u0033\u002f\u0034\u0029"); -};_faeb .N =N ;return _faeb ,nil ;}; +// ToPdfObject returns the PDF representation of the colorspace. +func (_dfcaf *PdfColorspaceSpecialSeparation )ToPdfObject ()_dg .PdfObject {_begd :=_dg .MakeArray (_dg .MakeName ("\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e"));_begd .Append (_dfcaf .ColorantName );_begd .Append (_dfcaf .AlternateSpace .ToPdfObject ()); +_begd .Append (_dfcaf .TintTransform .ToPdfObject ());if _dfcaf ._fecg !=nil {_dfcaf ._fecg .PdfObject =_begd ;return _dfcaf ._fecg ;};return _begd ;}; -// ToPdfObject returns the PDF representation of the tiling pattern. -func (_afcfc *PdfTilingPattern )ToPdfObject ()_aff .PdfObject {_afcfc .PdfPattern .ToPdfObject ();_bfggf :=_afcfc .getDict ();if _afcfc .PaintType !=nil {_bfggf .Set ("\u0050a\u0069\u006e\u0074\u0054\u0079\u0070e",_afcfc .PaintType );};if _afcfc .TilingType !=nil {_bfggf .Set ("\u0054\u0069\u006c\u0069\u006e\u0067\u0054\u0079\u0070\u0065",_afcfc .TilingType ); -};if _afcfc .BBox !=nil {_bfggf .Set ("\u0042\u0042\u006f\u0078",_afcfc .BBox .ToPdfObject ());};if _afcfc .XStep !=nil {_bfggf .Set ("\u0058\u0053\u0074e\u0070",_afcfc .XStep );};if _afcfc .YStep !=nil {_bfggf .Set ("\u0059\u0053\u0074e\u0070",_afcfc .YStep ); -};if _afcfc .Resources !=nil {_bfggf .Set ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_afcfc .Resources .ToPdfObject ());};if _afcfc .Matrix !=nil {_bfggf .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_afcfc .Matrix );};return _afcfc ._cfegc ;}; +// ToPdfObject implements interface PdfModel. +func (_eab *PdfAnnotationStamp )ToPdfObject ()_dg .PdfObject {_eab .PdfAnnotation .ToPdfObject ();_daee :=_eab ._cdf ;_afdd :=_daee .PdfObject .(*_dg .PdfObjectDictionary );_eab .PdfAnnotationMarkup .appendToPdfDictionary (_afdd );_afdd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0053\u0074\u0061m\u0070")); +_afdd .SetIfNotNil ("\u004e\u0061\u006d\u0065",_eab .Name );return _daee ;}; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_cbfdg *PdfShadingType2 )ToPdfObject ()_aff .PdfObject {_cbfdg .PdfShading .ToPdfObject ();_geea ,_eafa :=_cbfdg .getShadingDict ();if _eafa !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _geea ==nil {_adg .Log .Error ("\u0053\u0068\u0061\u0064in\u0067\u0020\u0064\u0069\u0063\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c");return nil ;};if _cbfdg .Coords !=nil {_geea .Set ("\u0043\u006f\u006f\u0072\u0064\u0073",_cbfdg .Coords ); -};if _cbfdg .Domain !=nil {_geea .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_cbfdg .Domain );};if _cbfdg .Function !=nil {if len (_cbfdg .Function )==1{_geea .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_cbfdg .Function [0].ToPdfObject ()); -}else {_afge :=_aff .MakeArray ();for _ ,_dafc :=range _cbfdg .Function {_afge .Append (_dafc .ToPdfObject ());};_geea .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_afge );};};if _cbfdg .Extend !=nil {_geea .Set ("\u0045\u0078\u0074\u0065\u006e\u0064",_cbfdg .Extend ); -};return _cbfdg ._bdacg ;}; +// ToPdfObject converts PdfAcroForm to a PdfObject, i.e. an indirect object containing the +// AcroForm dictionary. +func (_bceab *PdfAcroForm )ToPdfObject ()_dg .PdfObject {_egcbf :=_bceab ._bebfe ;_cgdfg :=_egcbf .PdfObject .(*_dg .PdfObjectDictionary );if _bceab .Fields !=nil {_cfgbc :=_dg .PdfObjectArray {};for _ ,_gcbdc :=range *_bceab .Fields {_afda :=_gcbdc .GetContext (); +if _afda !=nil {_cfgbc .Append (_afda .ToPdfObject ());}else {_cfgbc .Append (_gcbdc .ToPdfObject ());};};_cgdfg .Set ("\u0046\u0069\u0065\u006c\u0064\u0073",&_cfgbc );};if _bceab .NeedAppearances !=nil {_cgdfg .Set ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073",_bceab .NeedAppearances ); +}else {if _cdgdf :=_cgdfg .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073");_cdgdf !=nil {_cgdfg .Remove ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073");};};if _bceab .SigFlags !=nil {_cgdfg .Set ("\u0053\u0069\u0067\u0046\u006c\u0061\u0067\u0073",_bceab .SigFlags ); +};if _bceab .CO !=nil {_cgdfg .Set ("\u0043\u004f",_bceab .CO );};if _bceab .DR !=nil {_cgdfg .Set ("\u0044\u0052",_bceab .DR .ToPdfObject ());};if _bceab .DA !=nil {_cgdfg .Set ("\u0044\u0041",_bceab .DA );};if _bceab .Q !=nil {_cgdfg .Set ("\u0051",_bceab .Q ); +};if _bceab .XFA !=nil {_cgdfg .Set ("\u0058\u0046\u0041",_bceab .XFA );};if _bceab .ADBEEchoSign !=nil {_cgdfg .Set ("\u0041\u0044\u0042\u0045\u005f\u0045\u0063\u0068\u006f\u0053\u0069\u0067\u006e",_bceab .ADBEEchoSign );};return _egcbf ;};func (_abaec *pdfCIDFontType2 )baseFields ()*fontCommon {return &_abaec .fontCommon }; -// SetDocInfo set document info. -// This will overwrite any globally declared document info. -func (_baeab *PdfWriter )SetDocInfo (info *PdfInfo ){_baeab .setDocInfo (info .ToPdfObject ())}; -// GetRotate gets the inheritable rotate value, either from the page -// or a higher up page/pages struct. -func (_gaga *PdfPage )GetRotate ()(int64 ,error ){if _gaga .Rotate !=nil {return *_gaga .Rotate ,nil ;};_bcega :=_gaga .Parent ;for _bcega !=nil {_ecddea ,_gfagb :=_aff .GetDict (_bcega );if !_gfagb {return 0,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -};if _efgbg :=_ecddea .Get ("\u0052\u006f\u0074\u0061\u0074\u0065");_efgbg !=nil {_degfa ,_gegbc :=_aff .GetInt (_efgbg );if !_gegbc {return 0,_g .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0074a\u0074\u0065\u0020\u0076al\u0075\u0065");}; -if _degfa !=nil {return int64 (*_degfa ),nil ;};return 0,_g .New ("\u0072\u006f\u0074\u0061te\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};_bcega =_ecddea .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");};return 0,_g .New ("\u0072o\u0074a\u0074\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +// GetContentStream returns the XObject Form's content stream. +func (_eccbcc *XObjectForm )GetContentStream ()([]byte ,error ){_bebge ,_fdfaa :=_dg .DecodeStream (_eccbcc ._ebaeb );if _fdfaa !=nil {return nil ,_fdfaa ;};return _bebge ,nil ;};const (FieldFlagClear FieldFlag =0;FieldFlagReadOnly FieldFlag =1;FieldFlagRequired FieldFlag =(1<<1); +FieldFlagNoExport FieldFlag =(2<<1);FieldFlagNoToggleToOff FieldFlag =(1<<14);FieldFlagRadio FieldFlag =(1<<15);FieldFlagPushbutton FieldFlag =(1<<16);FieldFlagRadiosInUnision FieldFlag =(1<<25);FieldFlagMultiline FieldFlag =(1<<12);FieldFlagPassword FieldFlag =(1<<13); +FieldFlagFileSelect FieldFlag =(1<<20);FieldFlagDoNotScroll FieldFlag =(1<<23);FieldFlagComb FieldFlag =(1<<24);FieldFlagRichText FieldFlag =(1<<26);FieldFlagDoNotSpellCheck FieldFlag =(1<<22);FieldFlagCombo FieldFlag =(1<<17);FieldFlagEdit FieldFlag =(1<<18); +FieldFlagSort FieldFlag =(1<<19);FieldFlagMultiSelect FieldFlag =(1<<21);FieldFlagCommitOnSelChange FieldFlag =(1<<27););func (_afa *PdfReader )newPdfActionMovieFromDict (_fgf *_dg .PdfObjectDictionary )(*PdfActionMovie ,error ){return &PdfActionMovie {Annotation :_fgf .Get ("\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e"),T :_fgf .Get ("\u0054"),Operation :_fgf .Get ("\u004fp\u0065\u0072\u0061\u0074\u0069\u006fn")},nil ; }; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_dbcfd *PdfShadingType4 )ToPdfObject ()_aff .PdfObject {_dbcfd .PdfShading .ToPdfObject ();_cgeb ,_gfadc :=_dbcfd .getShadingDict ();if _gfadc !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _dbcfd .BitsPerCoordinate !=nil {_cgeb .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_dbcfd .BitsPerCoordinate );};if _dbcfd .BitsPerComponent !=nil {_cgeb .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_dbcfd .BitsPerComponent ); -};if _dbcfd .BitsPerFlag !=nil {_cgeb .Set ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067",_dbcfd .BitsPerFlag );};if _dbcfd .Decode !=nil {_cgeb .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_dbcfd .Decode );};if _dbcfd .Function !=nil {if len (_dbcfd .Function )==1{_cgeb .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_dbcfd .Function [0].ToPdfObject ()); -}else {_edeeg :=_aff .MakeArray ();for _ ,_aadac :=range _dbcfd .Function {_edeeg .Append (_aadac .ToPdfObject ());};_cgeb .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_edeeg );};};return _dbcfd ._bdacg ;}; - -// NewPdfAcroForm returns a new PdfAcroForm with an initialized container (indirect object). -func NewPdfAcroForm ()*PdfAcroForm {return &PdfAcroForm {Fields :&[]*PdfField {},_fbcde :_aff .MakeIndirectObject (_aff .MakeDict ())};};func (_cgaaf *PdfWriter )hasObject (_bdagf _aff .PdfObject )bool {_ ,_dcgaaf :=_cgaaf ._bgadg [_bdagf ];return _dcgaaf ; -};func (_fcdcg *pdfFontType0 )getFontDescriptor ()*PdfFontDescriptor {if _fcdcg ._ggca ==nil &&_fcdcg .DescendantFont !=nil {return _fcdcg .DescendantFont .FontDescriptor ();};return _fcdcg ._ggca ;}; +// GetColorspaceByName returns the colorspace with the specified name from the page resources. +func (_eaadbe *PdfPageResources )GetColorspaceByName (keyName _dg .PdfObjectName )(PdfColorspace ,bool ){_gebed ,_bdcbe :=_eaadbe .GetColorspaces ();if _bdcbe !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0072\u0061\u0063\u0065: \u0025\u0076",_bdcbe ); +return nil ,false ;};if _gebed ==nil {return nil ,false ;};_aagba ,_fagac :=_gebed .Colorspaces [string (keyName )];if !_fagac {return nil ,false ;};return _aagba ,true ;};func (_afege *PdfReader )lookupPageByObject (_fcef _dg .PdfObject )(*PdfPage ,error ){return nil ,_bf .New ("\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};func _bedbb (_gaca _dg .PdfObject )(*fontFile ,error ){_ag .Log .Trace ("\u006e\u0065\u0077\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0046\u0072\u006f\u006dP\u0064f\u004f\u0062\u006a\u0065\u0063\u0074\u003a\u0020\u006f\u0062\u006a\u003d\u0025\u0073",_gaca ); +_fcgea :=&fontFile {};_gaca =_dg .TraceToDirectObject (_gaca );_ceaec ,_dcaga :=_gaca .(*_dg .PdfObjectStream );if !_dcaga {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020F\u006f\u006et\u0046\u0069\u006c\u0065\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u0028\u0025\u0054\u0029",_gaca ); +return nil ,_dg .ErrTypeError ;};_cced :=_ceaec .PdfObjectDictionary ;_cefbb ,_ebdc :=_dg .DecodeStream (_ceaec );if _ebdc !=nil {return nil ,_ebdc ;};_dcaede ,_dcaga :=_dg .GetNameVal (_cced .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_dcaga {_fcgea ._geffe =_dcaede ; +if _dcaede =="\u0054\u0079\u0070\u0065\u0031\u0043"{_ag .Log .Debug ("T\u0079\u0070\u0065\u0031\u0043\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u0072\u0065\u0020\u0063\u0075r\u0072\u0065\u006e\u0074\u006c\u0079\u0020\u006e\u006f\u0074 s\u0075\u0070\u0070o\u0072t\u0065\u0064"); +return nil ,ErrType1CFontNotSupported ;};};_facg ,_ :=_dg .GetIntVal (_cced .Get ("\u004ce\u006e\u0067\u0074\u0068\u0031"));_gcecf ,_ :=_dg .GetIntVal (_cced .Get ("\u004ce\u006e\u0067\u0074\u0068\u0032"));if _facg > len (_cefbb ){_facg =len (_cefbb ); +};if _facg +_gcecf > len (_cefbb ){_gcecf =len (_cefbb )-_facg ;};_ebgcc :=_cefbb [:_facg ];var _gceec []byte ;if _gcecf > 0{_gceec =_cefbb [_facg :_facg +_gcecf ];};if _facg > 0&&_gcecf > 0{_ccegb :=_fcgea .loadFromSegments (_ebgcc ,_gceec );if _ccegb !=nil {return nil ,_ccegb ; +};};return _fcgea ,nil ;}; -// IsShading specifies if the pattern is a shading pattern. -func (_cfda *PdfPattern )IsShading ()bool {return _cfda .PatternType ==2};func (_gefe *PdfWriter )writeObject (_gdbad int ,_gabgec _aff .PdfObject ){_adg .Log .Trace ("\u0057\u0072\u0069\u0074\u0065\u0020\u006f\u0062\u006a \u0023\u0025\u0064\u000a",_gdbad ); -if _gfcgb ,_begdg :=_gabgec .(*_aff .PdfIndirectObject );_begdg {_gefe ._abebd [_gdbad ]=crossReference {Type :1,Offset :_gefe ._cagac ,Generation :_gfcgb .GenerationNumber };_gdagg :=_e .Sprintf ("\u0025d\u0020\u0030\u0020\u006f\u0062\u006a\n",_gdbad ); -if _cebbf ,_bded :=_gfcgb .PdfObject .(*pdfSignDictionary );_bded {_cebbf ._fgfd =_gefe ._cagac +int64 (len (_gdagg ));};if _gfcgb .PdfObject ==nil {_adg .Log .Debug ("E\u0072\u0072\u006fr\u003a\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0027\u0073\u0020\u0050\u0064\u0066\u004f\u0062j\u0065\u0063\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u0065\u0076\u0065\u0072\u0020b\u0065\u0020\u006e\u0069l\u0020\u002d\u0020\u0073e\u0074\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063t\u004e\u0075\u006c\u006c"); -_gfcgb .PdfObject =_aff .MakeNull ();};_gdagg +=_gfcgb .PdfObject .WriteString ();_gdagg +="\u000a\u0065\u006e\u0064\u006f\u0062\u006a\u000a";_gefe .writeString (_gdagg );return ;};if _ccefa ,_gbfda :=_gabgec .(*_aff .PdfObjectStream );_gbfda {_gefe ._abebd [_gdbad ]=crossReference {Type :1,Offset :_gefe ._cagac ,Generation :_ccefa .GenerationNumber }; -_bfdbcg :=_e .Sprintf ("\u0025d\u0020\u0030\u0020\u006f\u0062\u006a\n",_gdbad );_bfdbcg +=_ccefa .PdfObjectDictionary .WriteString ();_bfdbcg +="\u000a\u0073\u0074\u0072\u0065\u0061\u006d\u000a";_gefe .writeString (_bfdbcg );_gefe .writeBytes (_ccefa .Stream ); -_gefe .writeString ("\u000ae\u006ed\u0073\u0074\u0072\u0065\u0061m\u000a\u0065n\u0064\u006f\u0062\u006a\u000a");return ;};if _fddbc ,_aadbe :=_gabgec .(*_aff .PdfObjectStreams );_aadbe {_gefe ._abebd [_gdbad ]=crossReference {Type :1,Offset :_gefe ._cagac ,Generation :_fddbc .GenerationNumber }; -_aggfa :=_e .Sprintf ("\u0025d\u0020\u0030\u0020\u006f\u0062\u006a\n",_gdbad );var _gceff []string ;var _bdacfd string ;var _faecc int64 ;for _fbcfe ,_bgged :=range _fddbc .Elements (){_ebedg ,_aacb :=_bgged .(*_aff .PdfIndirectObject );if !_aacb {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065am\u0073 \u004e\u0020\u0025\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006es\u0020\u006e\u006f\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u0070\u0064\u0066 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0025\u0076",_gdbad ,_bgged ); -continue ;};_gdeffb :=_ebedg .PdfObject .WriteString ()+"\u0020";_bdacfd =_bdacfd +_gdeffb ;_gceff =append (_gceff ,_e .Sprintf ("\u0025\u0064\u0020%\u0064",_ebedg .ObjectNumber ,_faecc ));_gefe ._abebd [int (_ebedg .ObjectNumber )]=crossReference {Type :2,ObjectNumber :_gdbad ,Index :_fbcfe }; -_faecc =_faecc +int64 (len ([]byte (_gdeffb )));};_agaa :=_ba .Join (_gceff ,"\u0020")+"\u0020";_eafe :=_aff .NewFlateEncoder ();_ecca :=_eafe .MakeStreamDict ();_ecca .Set (_aff .PdfObjectName ("\u0054\u0079\u0070\u0065"),_aff .MakeName ("\u004f\u0062\u006a\u0053\u0074\u006d")); -_bdad :=int64 (_fddbc .Len ());_ecca .Set (_aff .PdfObjectName ("\u004e"),_aff .MakeInteger (_bdad ));_cbaca :=int64 (len (_agaa ));_ecca .Set (_aff .PdfObjectName ("\u0046\u0069\u0072s\u0074"),_aff .MakeInteger (_cbaca ));_gefeb ,_ :=_eafe .EncodeBytes ([]byte (_agaa +_bdacfd )); -_bdadb :=int64 (len (_gefeb ));_ecca .Set (_aff .PdfObjectName ("\u004c\u0065\u006e\u0067\u0074\u0068"),_aff .MakeInteger (_bdadb ));_aggfa +=_ecca .WriteString ();_aggfa +="\u000a\u0073\u0074\u0072\u0065\u0061\u006d\u000a";_gefe .writeString (_aggfa ); -_gefe .writeBytes (_gefeb );_gefe .writeString ("\u000ae\u006ed\u0073\u0074\u0072\u0065\u0061m\u000a\u0065n\u0064\u006f\u0062\u006a\u000a");return ;};_gefe .writeString (_gabgec .WriteString ());}; +// GetEncryptionMethod returns a descriptive information string about the encryption method used. +func (_ggcdb *PdfReader )GetEncryptionMethod ()string {_cfdgf :=_ggcdb ._baad .GetCrypter ();return _cfdgf .String ();};func (_gga *PdfReader )newPdfActionSetOCGStateFromDict (_aeea *_dg .PdfObjectDictionary )(*PdfActionSetOCGState ,error ){return &PdfActionSetOCGState {State :_aeea .Get ("\u0053\u0074\u0061t\u0065"),PreserveRB :_aeea .Get ("\u0050\u0072\u0065\u0073\u0065\u0072\u0076\u0065\u0052\u0042")},nil ; +}; // ToPdfObject implements interface PdfModel. -func (_aaea *PdfActionURI )ToPdfObject ()_aff .PdfObject {_aaea .PdfAction .ToPdfObject ();_gcd :=_aaea ._df ;_ffd :=_gcd .PdfObject .(*_aff .PdfObjectDictionary );_ffd .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeURI )));_ffd .SetIfNotNil ("\u0055\u0052\u0049",_aaea .URI ); -_ffd .SetIfNotNil ("\u0049\u0073\u004da\u0070",_aaea .IsMap );return _gcd ;}; - -// GetContainingPdfObject returns the container of the outline item (indirect object). -func (_ecad *PdfOutlineItem )GetContainingPdfObject ()_aff .PdfObject {return _ecad ._dcee };func (_bgfed *PdfWriter )checkCrossReferenceStream ()bool {_bbaa :=_bgfed ._bgeecg .Major > 1||(_bgfed ._bgeecg .Major ==1&&_bgfed ._bgeecg .Minor > 4);if _bgfed ._deggb !=nil {_bbaa =*_bgfed ._deggb ; -};return _bbaa ;};func _becdc (_ceddb *_aff .PdfObjectStream )(*PdfFunctionType4 ,error ){_abaeb :=&PdfFunctionType4 {};_abaeb ._edgbg =_ceddb ;_ggga :=_ceddb .PdfObjectDictionary ;_gbec ,_ebbg :=_aff .TraceToDirectObject (_ggga .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_aff .PdfObjectArray ); -if !_ebbg {_adg .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064");return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};if _gbec .Len ()%2!=0{_adg .Log .Error ("\u0044\u006f\u006d\u0061\u0069\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");return nil ,_g .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065");};_gecg ,_baeb :=_gbec .ToFloat64Array (); -if _baeb !=nil {return nil ,_baeb ;};_abaeb .Domain =_gecg ;_gbec ,_ebbg =_aff .TraceToDirectObject (_ggga .Get ("\u0052\u0061\u006eg\u0065")).(*_aff .PdfObjectArray );if _ebbg {if _gbec .Len ()< 0||_gbec .Len ()%2!=0{return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065"); -};_fcce ,_caed :=_gbec .ToFloat64Array ();if _caed !=nil {return nil ,_caed ;};_abaeb .Range =_fcce ;};_dcefcb ,_baeb :=_aff .DecodeStream (_ceddb );if _baeb !=nil {return nil ,_baeb ;};_abaeb ._addecb =_dcefcb ;_dcbbd :=_bf .NewPSParser (_dcefcb );_gfda ,_baeb :=_dcbbd .Parse (); -if _baeb !=nil {return nil ,_baeb ;};_abaeb .Program =_gfda ;return _abaeb ,nil ;}; +func (_bcd *PdfActionMovie )ToPdfObject ()_dg .PdfObject {_bcd .PdfAction .ToPdfObject ();_aadf :=_bcd ._cbd ;_bge :=_aadf .PdfObject .(*_dg .PdfObjectDictionary );_bge .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeMovie )));_bge .SetIfNotNil ("\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e",_bcd .Annotation ); +_bge .SetIfNotNil ("\u0054",_bcd .T );_bge .SetIfNotNil ("\u004fp\u0065\u0072\u0061\u0074\u0069\u006fn",_bcd .Operation );return _aadf ;};func _gecgd (_cfbce _bbg .StdFont )pdfFontSimple {_gbdae :=_cfbce .Descriptor ();return pdfFontSimple {fontCommon :fontCommon {_bcga :"\u0054\u0079\u0070e\u0031",_ecbf :_cfbce .Name ()},_bfdee :_cfbce .GetMetricsTable (),_gagbe :&PdfFontDescriptor {FontName :_dg .MakeName (string (_gbdae .Name )),FontFamily :_dg .MakeName (_gbdae .Family ),FontWeight :_dg .MakeFloat (float64 (_gbdae .Weight )),Flags :_dg .MakeInteger (int64 (_gbdae .Flags )),FontBBox :_dg .MakeArrayFromFloats (_gbdae .BBox [:]),ItalicAngle :_dg .MakeFloat (_gbdae .ItalicAngle ),Ascent :_dg .MakeFloat (_gbdae .Ascent ),Descent :_dg .MakeFloat (_gbdae .Descent ),CapHeight :_dg .MakeFloat (_gbdae .CapHeight ),XHeight :_dg .MakeFloat (_gbdae .XHeight ),StemV :_dg .MakeFloat (_gbdae .StemV ),StemH :_dg .MakeFloat (_gbdae .StemH )},_dbdb :_cfbce .Encoder ()}; +};const (_ PdfOutputIntentType =iota ;PdfOutputIntentTypeA1 ;PdfOutputIntentTypeA2 ;PdfOutputIntentTypeA3 ;PdfOutputIntentTypeA4 ;PdfOutputIntentTypeX ;); -// FieldValueProvider provides field values from a data source such as FDF, JSON or any other. -type FieldValueProvider interface{FieldValues ()(map[string ]_aff .PdfObject ,error );}; +// SetContext sets the sub annotation (context). +func (_cabb *PdfAnnotation )SetContext (ctx PdfModel ){_cabb ._egcg =ctx };func _dgag (_fcbec *_dg .PdfObjectDictionary )(*PdfShadingType2 ,error ){_geegd :=PdfShadingType2 {};_abgad :=_fcbec .Get ("\u0043\u006f\u006f\u0072\u0064\u0073");if _abgad ==nil {_ag .Log .Debug ("R\u0065\u0071\u0075\u0069\u0072\u0065d\u0020\u0061\u0074\u0074\u0072\u0069b\u0075\u0074\u0065\u0020\u006d\u0069\u0073s\u0069\u006e\u0067\u003a\u0020\u0020\u0043\u006f\u006f\u0072d\u0073"); +return nil ,ErrRequiredAttributeMissing ;};_ffcac ,_dcggf :=_abgad .(*_dg .PdfObjectArray );if !_dcggf {_ag .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_abgad ); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};if _ffcac .Len ()!=4{_ag .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0034\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_ffcac .Len ()); +return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065");};_geegd .Coords =_ffcac ;if _addca :=_fcbec .Get ("\u0044\u006f\u006d\u0061\u0069\u006e");_addca !=nil {_addca =_dg .TraceToDirectObject (_addca ); +_bacec ,_bfddc :=_addca .(*_dg .PdfObjectArray );if !_bfddc {_ag .Log .Debug ("\u0044\u006f\u006d\u0061i\u006e\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_addca );return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +};_geegd .Domain =_bacec ;};_abgad =_fcbec .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _abgad ==nil {_ag .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); +return nil ,ErrRequiredAttributeMissing ;};_geegd .Function =[]PdfFunction {};if _dddbae ,_dafgb :=_abgad .(*_dg .PdfObjectArray );_dafgb {for _ ,_ddabc :=range _dddbae .Elements (){_eeeec ,_gagee :=_agec (_ddabc );if _gagee !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_gagee ); +return nil ,_gagee ;};_geegd .Function =append (_geegd .Function ,_eeeec );};}else {_bgdgfa ,_gffgf :=_agec (_abgad );if _gffgf !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_gffgf ); +return nil ,_gffgf ;};_geegd .Function =append (_geegd .Function ,_bgdgfa );};if _cgee :=_fcbec .Get ("\u0045\u0078\u0074\u0065\u006e\u0064");_cgee !=nil {_cgee =_dg .TraceToDirectObject (_cgee );_dagac ,_ecafc :=_cgee .(*_dg .PdfObjectArray );if !_ecafc {_ag .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_cgee ); +return nil ,_dg .ErrTypeError ;};if _dagac .Len ()!=2{_ag .Log .Debug ("\u0045\u0078\u0074\u0065n\u0064\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0032\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_dagac .Len ());return nil ,ErrInvalidAttribute ; +};_geegd .Extend =_dagac ;};return &_geegd ,nil ;}; -// ToPdfObject recursively builds the Outline tree PDF object. -func (_afbd *PdfOutlineItem )ToPdfObject ()_aff .PdfObject {_cceed :=_afbd ._dcee ;_fbgfc :=_cceed .PdfObject .(*_aff .PdfObjectDictionary );_fbgfc .Set ("\u0054\u0069\u0074l\u0065",_afbd .Title );if _afbd .A !=nil {_fbgfc .Set ("\u0041",_afbd .A );};if _cbbb :=_fbgfc .Get ("\u0053\u0045"); -_cbbb !=nil {_fbgfc .Remove ("\u0053\u0045");};if _afbd .C !=nil {_fbgfc .Set ("\u0043",_afbd .C );};if _afbd .Dest !=nil {_fbgfc .Set ("\u0044\u0065\u0073\u0074",_afbd .Dest );};if _afbd .F !=nil {_fbgfc .Set ("\u0046",_afbd .F );};if _afbd .Count !=nil {_fbgfc .Set ("\u0043\u006f\u0075n\u0074",_aff .MakeInteger (*_afbd .Count )); -};if _afbd .Next !=nil {_fbgfc .Set ("\u004e\u0065\u0078\u0074",_afbd .Next .ToPdfObject ());};if _afbd .First !=nil {_fbgfc .Set ("\u0046\u0069\u0072s\u0074",_afbd .First .ToPdfObject ());};if _afbd .Prev !=nil {_fbgfc .Set ("\u0050\u0072\u0065\u0076",_afbd .Prev .GetContext ().GetContainingPdfObject ()); -};if _afbd .Last !=nil {_fbgfc .Set ("\u004c\u0061\u0073\u0074",_afbd .Last .GetContext ().GetContainingPdfObject ());};if _afbd .Parent !=nil {_fbgfc .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_afbd .Parent .GetContext ().GetContainingPdfObject ()); -};return _cceed ;}; +// PdfFont represents an underlying font structure which can be of type: +// - Type0 +// - Type1 +// - TrueType +// etc. +type PdfFont struct{_cadf pdfFont }; -// NewPdfActionThread returns a new "thread" action. -func NewPdfActionThread ()*PdfActionThread {_dbe :=NewPdfAction ();_fad :=&PdfActionThread {};_fad .PdfAction =_dbe ;_dbe .SetContext (_fad );return _fad ;}; +// ToPdfObject implements interface PdfModel. +func (_cgcdf *PdfAnnotationCaret )ToPdfObject ()_dg .PdfObject {_cgcdf .PdfAnnotation .ToPdfObject ();_eadd :=_cgcdf ._cdf ;_gffe :=_eadd .PdfObject .(*_dg .PdfObjectDictionary );_cgcdf .PdfAnnotationMarkup .appendToPdfDictionary (_gffe );_gffe .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0043\u0061\u0072e\u0074")); +_gffe .SetIfNotNil ("\u0052\u0044",_cgcdf .RD );_gffe .SetIfNotNil ("\u0053\u0079",_cgcdf .Sy );return _eadd ;}; -// ToPdfObject returns the PDF representation of the colorspace. -func (_gggg *PdfColorspaceSpecialPattern )ToPdfObject ()_aff .PdfObject {if _gggg .UnderlyingCS ==nil {return _aff .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e");};_gced :=_aff .MakeArray (_aff .MakeName ("\u0050a\u0074\u0074\u0065\u0072\u006e")); -_gced .Append (_gggg .UnderlyingCS .ToPdfObject ());if _gggg ._ccd !=nil {_gggg ._ccd .PdfObject =_gced ;return _gggg ._ccd ;};return _gced ;}; +// GetContext returns the PdfField context which is the more specific field data type, e.g. PdfFieldButton +// for a button field. +func (_adafg *PdfField )GetContext ()PdfModel {return _adafg ._bdfg }; -// PdfAnnotationSquare represents Square annotations. -// (Section 12.5.6.8). -type PdfAnnotationSquare struct{*PdfAnnotation ;*PdfAnnotationMarkup ;BS _aff .PdfObject ;IC _aff .PdfObject ;BE _aff .PdfObject ;RD _aff .PdfObject ;}; +// IsPush returns true if the button field represents a push button, false otherwise. +func (_ggab *PdfFieldButton )IsPush ()bool {return _ggab .GetType ()==ButtonTypePush }; -// R returns the value of the red component of the color. -func (_dbce *PdfColorDeviceRGB )R ()float64 {return _dbce [0]}; +// NewPdfAnnotationPrinterMark returns a new printermark annotation. +func NewPdfAnnotationPrinterMark ()*PdfAnnotationPrinterMark {_cgca :=NewPdfAnnotation ();_ggge :=&PdfAnnotationPrinterMark {};_ggge .PdfAnnotation =_cgca ;_cgca .SetContext (_ggge );return _ggge ;}; -// GetNumPages returns the number of pages in the document. -func (_gabdac *PdfReader )GetNumPages ()(int ,error ){if _gabdac ._gaece .GetCrypter ()!=nil &&!_gabdac ._gaece .IsAuthenticated (){return 0,_e .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); -};return len (_gabdac ._bfgfec ),nil ;}; +// GetContainingPdfObject implements interface PdfModel. +func (_fbfcf *PdfSignature )GetContainingPdfObject ()_dg .PdfObject {return _fbfcf ._bbda };func (_bagg *PdfWriter )setDocumentIDs (_aacece ,_cefff string ){_bagg ._agbeg =_dg .MakeArray (_dg .MakeHexString (_aacece ),_dg .MakeHexString (_cefff ));}; -// PdfColorspaceSpecialSeparation is a Separation colorspace. -// At the moment the colour space is set to a Separation space, the conforming reader shall determine whether the -// device has an available colorant (e.g. dye) corresponding to the name of the requested space. If so, the conforming -// reader shall ignore the alternateSpace and tintTransform parameters; subsequent painting operations within the -// space shall apply the designated colorant directly, according to the tint values supplied. -// -// Format: [/Separation name alternateSpace tintTransform] -type PdfColorspaceSpecialSeparation struct{ColorantName *_aff .PdfObjectName ;AlternateSpace PdfColorspace ;TintTransform PdfFunction ;_dede *_aff .PdfIndirectObject ;};func (_cdadb *PdfReader )resolveReference (_bbabb *_aff .PdfObjectReference )(_aff .PdfObject ,bool ,error ){_acfda ,_ecebe :=_cdadb ._gaece .ObjCache [int (_bbabb .ObjectNumber )]; -if !_ecebe {_adg .Log .Trace ("R\u0065\u0061\u0064\u0065r \u004co\u006f\u006b\u0075\u0070\u0020r\u0065\u0066\u003a\u0020\u0025\u0073",_bbabb );_cceg ,_geffb :=_cdadb ._gaece .LookupByReference (*_bbabb );if _geffb !=nil {return nil ,false ,_geffb ;};_cdadb ._gaece .ObjCache [int (_bbabb .ObjectNumber )]=_cceg ; -return _cceg ,false ,nil ;};return _acfda ,true ,nil ;};type pdfCIDFontType0 struct{fontCommon ;_gccc *_aff .PdfIndirectObject ;_fbdc _eee .TextEncoder ; +// NewPdfColorspaceSpecialPattern returns a new pattern color. +func NewPdfColorspaceSpecialPattern ()*PdfColorspaceSpecialPattern {return &PdfColorspaceSpecialPattern {};}; -// Table 117 – Entries in a CIDFont dictionary (page 269) -// (Required) Dictionary that defines the character collection of the CIDFont. -// See Table 116. -CIDSystemInfo *_aff .PdfObjectDictionary ; +// GetNumComponents returns the number of color components (1 for grayscale). +func (_acdc *PdfColorDeviceGray )GetNumComponents ()int {return 1}; -// Glyph metrics fields (optional). -DW _aff .PdfObject ;W _aff .PdfObject ;DW2 _aff .PdfObject ;W2 _aff .PdfObject ;_egfb map[_eee .CharCode ]float64 ;_fgbc float64 ;}; +// NewPdfAnnotationTrapNet returns a new trapnet annotation. +func NewPdfAnnotationTrapNet ()*PdfAnnotationTrapNet {_gbeg :=NewPdfAnnotation ();_bab :=&PdfAnnotationTrapNet {};_bab .PdfAnnotation =_gbeg ;_gbeg .SetContext (_bab );return _bab ;};func (_fgdfc *PdfColorspaceSpecialSeparation )String ()string {return "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e"; +}; -// ToPdfObject converts PdfAcroForm to a PdfObject, i.e. an indirect object containing the -// AcroForm dictionary. -func (_befeb *PdfAcroForm )ToPdfObject ()_aff .PdfObject {_fecef :=_befeb ._fbcde ;_baeedb :=_fecef .PdfObject .(*_aff .PdfObjectDictionary );if _befeb .Fields !=nil {_ffde :=_aff .PdfObjectArray {};for _ ,_fffg :=range *_befeb .Fields {_edgg :=_fffg .GetContext (); -if _edgg !=nil {_ffde .Append (_edgg .ToPdfObject ());}else {_ffde .Append (_fffg .ToPdfObject ());};};_baeedb .Set ("\u0046\u0069\u0065\u006c\u0064\u0073",&_ffde );};if _befeb .NeedAppearances !=nil {_baeedb .Set ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073",_befeb .NeedAppearances ); -}else {if _bdda :=_baeedb .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073");_bdda !=nil {_baeedb .Remove ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073");};};if _befeb .SigFlags !=nil {_baeedb .Set ("\u0053\u0069\u0067\u0046\u006c\u0061\u0067\u0073",_befeb .SigFlags ); -};if _befeb .CO !=nil {_baeedb .Set ("\u0043\u004f",_befeb .CO );};if _befeb .DR !=nil {_baeedb .Set ("\u0044\u0052",_befeb .DR .ToPdfObject ());};if _befeb .DA !=nil {_baeedb .Set ("\u0044\u0041",_befeb .DA );};if _befeb .Q !=nil {_baeedb .Set ("\u0051",_befeb .Q ); -};if _befeb .XFA !=nil {_baeedb .Set ("\u0058\u0046\u0041",_befeb .XFA );};if _befeb .ADBEEchoSign !=nil {_baeedb .Set ("\u0041\u0044\u0042\u0045\u005f\u0045\u0063\u0068\u006f\u0053\u0069\u0067\u006e",_befeb .ADBEEchoSign );};return _fecef ;}; +// SetSamples convert samples to byte-data and sets for the image. +// NOTE: The method resamples the data and this could lead to high memory usage, +// especially on large images. It should be used only when it is not possible +// to work with the image byte data directly. +func (_fcgaf *Image )SetSamples (samples []uint32 ){if _fcgaf .BitsPerComponent < 8{samples =_fcgaf .samplesAddPadding (samples );};_gaeg :=_fcd .ResampleUint32 (samples ,int (_fcgaf .BitsPerComponent ),8);_efde :=make ([]byte ,len (_gaeg ));for _fgccd ,_abaeg :=range _gaeg {_efde [_fgccd ]=byte (_abaeg ); +};_fcgaf .Data =_efde ;};func _deag ()*modelManager {_afac :=modelManager {};_afac ._aaddgg =map[PdfModel ]_dg .PdfObject {};_afac ._eccbc =map[_dg .PdfObject ]PdfModel {};return &_afac ;};func (_adea *LTV )enable (_fbfec ,_gafgd []*_bb .Certificate ,_fcbgd string )error {_cdab ,_cgaab ,_facb :=_adea .buildCertChain (_fbfec ,_gafgd ); +if _facb !=nil {return _facb ;};_afcge ,_facb :=_adea .getCerts (_cdab );if _facb !=nil {return _facb ;};var _dcfda ,_afgce [][]byte ;if _adea .OCSPClient !=nil {_dcfda ,_facb =_adea .getOCSPs (_cdab ,_cgaab );if _facb !=nil {return _facb ;};};if _adea .CRLClient !=nil {_afgce ,_facb =_adea .getCRLs (_cdab ); +if _facb !=nil {return _facb ;};};_ddbde :=_adea ._abca ;_fdccg ,_facb :=_ddbde .AddCerts (_afcge );if _facb !=nil {return _facb ;};_dagc ,_facb :=_ddbde .AddOCSPs (_dcfda );if _facb !=nil {return _facb ;};_feeg ,_facb :=_ddbde .AddCRLs (_afgce );if _facb !=nil {return _facb ; +};if _fcbgd !=""{_ddbde .VRI [_fcbgd ]=&VRI {Cert :_fdccg ,OCSP :_dagc ,CRL :_feeg };};_adea ._ebdgd .SetDSS (_ddbde );return nil ;}; -// ToInteger convert to an integer format. -func (_agfd *PdfColorLab )ToInteger (bits int )[3]uint32 {_cddf :=_cf .Pow (2,float64 (bits ))-1;return [3]uint32 {uint32 (_cddf *_agfd .L ()),uint32 (_cddf *_agfd .A ()),uint32 (_cddf *_agfd .B ())};}; +// ImageToRGB returns an error since an image cannot be defined in a pattern colorspace. +func (_bebg *PdfColorspaceSpecialPattern )ImageToRGB (img Image )(Image ,error ){_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u0061n\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066i\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0061\u0074\u0074\u0065\u0072n \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065"); +return img ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0066\u006f\u0072\u0020\u0069m\u0061\u0067\u0065\u0020\u0028p\u0061\u0074t\u0065\u0072\u006e\u0029");}; -// GetOutlinesFlattened returns a flattened list of tree nodes and titles. -// NOTE: for most use cases, it is recommended to use the high-level GetOutlines -// method instead, which also provides information regarding the destination -// of the outline items. -func (_cdgdf *PdfReader )GetOutlinesFlattened ()([]*PdfOutlineTreeNode ,[]string ,error ){var _aegc []*PdfOutlineTreeNode ;var _fcbee []string ;var _baadgd func (*PdfOutlineTreeNode ,*[]*PdfOutlineTreeNode ,*[]string ,int );_baadgd =func (_gfad *PdfOutlineTreeNode ,_cefe *[]*PdfOutlineTreeNode ,_efffa *[]string ,_ffebb int ){if _gfad ==nil {return ; -};if _gfad ._gecd ==nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020M\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006e\u006fd\u0065\u002e\u0063o\u006et\u0065\u0078\u0074");return ;};_bfabb ,_gdedb :=_gfad ._gecd .(*PdfOutlineItem );if _gdedb {*_cefe =append (*_cefe ,&_bfabb .PdfOutlineTreeNode ); -_dcac :=_ba .Repeat ("\u0020",_ffebb *2)+_bfabb .Title .Decoded ();*_efffa =append (*_efffa ,_dcac );};if _gfad .First !=nil {_edddgg :=_ba .Repeat ("\u0020",_ffebb *2)+"\u002b";*_efffa =append (*_efffa ,_edddgg );_baadgd (_gfad .First ,_cefe ,_efffa ,_ffebb +1); -};if _gdedb &&_bfabb .Next !=nil {_baadgd (_bfabb .Next ,_cefe ,_efffa ,_ffebb );};};_baadgd (_cdgdf ._ecbcb ,&_aegc ,&_fcbee ,0);return _aegc ,_fcbee ,nil ;};func _gccbb (_efge map[_bcd .GID ]int ,_gebaf uint16 )*_aff .PdfObjectArray {_cdbd :=&_aff .PdfObjectArray {}; -_eedcd :=_bcd .GID (_gebaf );for _bbbe :=_bcd .GID (0);_bbbe < _eedcd ;{_eebec ,_faad :=_efge [_bbbe ];if !_faad {_bbbe ++;continue ;};_dcbe :=_bbbe ;for _bedbc :=_dcbe +1;_bedbc < _eedcd ;_bedbc ++{if _abebb ,_adgg :=_efge [_bedbc ];!_adgg ||_eebec !=_abebb {break ; -};_dcbe =_bedbc ;};_cdbd .Append (_aff .MakeInteger (int64 (_bbbe )));_cdbd .Append (_aff .MakeInteger (int64 (_dcbe )));_cdbd .Append (_aff .MakeInteger (int64 (_eebec )));_bbbe =_dcbe +1;};return _cdbd ;}; +// GetAction returns the PDF action for the annotation link. +func (_cec *PdfAnnotationLink )GetAction ()(*PdfAction ,error ){if _cec ._ece !=nil {return _cec ._ece ,nil ;};if _cec .A ==nil {return nil ,nil ;};if _cec ._abea ==nil {return nil ,nil ;};_cfab ,_ced :=_cec ._abea .loadAction (_cec .A );if _ced !=nil {return nil ,_ced ; +};_cec ._ece =_cfab ;return _cec ._ece ,nil ;}; -// Read reads an image and loads into a new Image object with an RGB -// colormap and 8 bits per component. -func (_cbacfc DefaultImageHandler )Read (reader _ega .Reader )(*Image ,error ){_geed ,_ ,_ffef :=_cg .Decode (reader );if _ffef !=nil {_adg .Log .Debug ("\u0045\u0072\u0072or\u0020\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0073",_ffef ); -return nil ,_ffef ;};return _cbacfc .NewImageFromGoImage (_geed );};func _gccca ()string {return _adg .Version }; +// Duplicate creates a duplicate page based on the current one and returns it. +func (_ffcf *PdfPage )Duplicate ()*PdfPage {_gbcfc :=*_ffcf ;_gbcfc ._bfdge =_dg .MakeDict ();_gbcfc ._cggbe =_dg .MakeIndirectObject (_gbcfc ._bfdge );_gbcfc ._gaed =*_gbcfc ._bfdge ;return &_gbcfc ;}; -// NewPdfAnnotationInk returns a new ink annotation. -func NewPdfAnnotationInk ()*PdfAnnotationInk {_dce :=NewPdfAnnotation ();_cfa :=&PdfAnnotationInk {};_cfa .PdfAnnotation =_dce ;_cfa .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_dce .SetContext (_cfa );return _cfa ;}; +// PdfBorderEffect represents a PDF border effect. +type PdfBorderEffect struct{S *BorderEffect ;I *float64 ;}; -// SetFlag sets the flag for the field. -func (_befec *PdfField )SetFlag (flag FieldFlag ){_befec .Ff =_aff .MakeInteger (int64 (flag ))};func (_dbfe *PdfReader )newPdfAnnotationPolyLineFromDict (_cad *_aff .PdfObjectDictionary )(*PdfAnnotationPolyLine ,error ){_ggd :=PdfAnnotationPolyLine {}; -_egc ,_bfdec :=_dbfe .newPdfAnnotationMarkupFromDict (_cad );if _bfdec !=nil {return nil ,_bfdec ;};_ggd .PdfAnnotationMarkup =_egc ;_ggd .Vertices =_cad .Get ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073");_ggd .LE =_cad .Get ("\u004c\u0045");_ggd .BS =_cad .Get ("\u0042\u0053"); -_ggd .IC =_cad .Get ("\u0049\u0043");_ggd .BE =_cad .Get ("\u0042\u0045");_ggd .IT =_cad .Get ("\u0049\u0054");_ggd .Measure =_cad .Get ("\u004de\u0061\u0073\u0075\u0072\u0065");return &_ggd ,nil ;};const (BorderEffectNoEffect BorderEffect =iota ;BorderEffectCloudy BorderEffect =iota ; -);func (_ddfc *LTV )generateVRIKey (_dabef *PdfSignature )(string ,error ){_eceb ,_gfbee :=_cdfa (_dabef .Contents .Bytes ());if _gfbee !=nil {return "",_gfbee ;};return _ba .ToUpper (_fe .EncodeToString (_eceb )),nil ;}; +// SetContext set the sub annotation (context). +func (_dcfecg *PdfShading )SetContext (ctx PdfModel ){_dcfecg ._eeddb =ctx }; -// GetColorspaceByName returns the colorspace with the specified name from the page resources. -func (_gdeead *PdfPageResources )GetColorspaceByName (keyName _aff .PdfObjectName )(PdfColorspace ,bool ){_eaeca ,_egag :=_gdeead .GetColorspaces ();if _egag !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0072\u0061\u0063\u0065: \u0025\u0076",_egag ); -return nil ,false ;};if _eaeca ==nil {return nil ,false ;};_ecacd ,_cffdb :=_eaeca .Colorspaces [string (keyName )];if !_cffdb {return nil ,false ;};return _ecacd ,true ;}; +// GetContext returns the annotation context which contains the specific type-dependent context. +// The context represents the subannotation. +func (_def *PdfAnnotation )GetContext ()PdfModel {if _def ==nil {return nil ;};return _def ._egcg ;};func (_edeag *PdfReader )newPdfAcroFormFromDict (_gaabd *_dg .PdfIndirectObject ,_effd *_dg .PdfObjectDictionary )(*PdfAcroForm ,error ){_dacb :=NewPdfAcroForm (); +if _gaabd !=nil {_dacb ._bebfe =_gaabd ;_gaabd .PdfObject =_dg .MakeDict ();};if _dggbd :=_effd .Get ("\u0046\u0069\u0065\u006c\u0064\u0073");_dggbd !=nil &&!_dg .IsNullObject (_dggbd ){_aacfb ,_gcad :=_dg .GetArray (_dggbd );if !_gcad {return nil ,_b .Errorf ("\u0066i\u0065\u006c\u0064\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e \u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0025\u0054\u0029",_dggbd ); +};var _eagfa []*PdfField ;for _ ,_baegg :=range _aacfb .Elements (){_eddfd ,_gcdfd :=_dg .GetIndirect (_baegg );if !_gcdfd {if _ ,_gdde :=_baegg .(*_dg .PdfObjectNull );_gdde {_ag .Log .Trace ("\u0053k\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006f\u0076\u0065\u0072 \u006e\u0075\u006c\u006c\u0020\u0066\u0069\u0065\u006c\u0064"); +continue ;};_ag .Log .Debug ("\u0046\u0069\u0065\u006c\u0064 \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0064 \u0069\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0025\u0054",_baegg ); +return nil ,_b .Errorf ("\u0066\u0069\u0065l\u0064\u0020\u006e\u006ft\u0020\u0069\u006e\u0020\u0061\u006e\u0020i\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_ggeec ,_ccbe :=_edeag .newPdfFieldFromIndirectObject (_eddfd ,nil ); +if _ccbe !=nil {return nil ,_ccbe ;};_ag .Log .Trace ("\u0041\u0063\u0072\u006fFo\u0072\u006d\u0020\u0046\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u002b\u0076",*_ggeec );_eagfa =append (_eagfa ,_ggeec );};_dacb .Fields =&_eagfa ;};if _cefaa :=_effd .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073"); +_cefaa !=nil {_bdeg ,_bfce :=_dg .GetBool (_cefaa );if _bfce {_dacb .NeedAppearances =_bdeg ;}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u0065\u0065\u0064\u0041\u0070p\u0065\u0061\u0072\u0061\u006e\u0063e\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006ft\u0020\u0025\u0054\u0029",_cefaa ); +};};if _cefge :=_effd .Get ("\u0053\u0069\u0067\u0046\u006c\u0061\u0067\u0073");_cefge !=nil {_bffce ,_fafgb :=_dg .GetInt (_cefge );if _fafgb {_dacb .SigFlags =_bffce ;}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0053\u0069\u0067\u0046\u006c\u0061\u0067\u0073 \u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_cefge ); +};};if _eabcg :=_effd .Get ("\u0043\u004f");_eabcg !=nil {_adab ,_dcfbc :=_dg .GetArray (_eabcg );if _dcfbc {_dacb .CO =_adab ;}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u004f\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",_eabcg ); +};};if _cecgg :=_effd .Get ("\u0044\u0052");_cecgg !=nil {if _bbff ,_gdgcg :=_dg .GetDict (_cecgg );_gdgcg {_aafe ,_dcac :=NewPdfPageResourcesFromDict (_bbff );if _dcac !=nil {_ag .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0044R\u003a\u0020\u0025\u0076",_dcac ); +return nil ,_dcac ;};_dacb .DR =_aafe ;}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0044\u0052\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",_cecgg );};};if _degd :=_effd .Get ("\u0044\u0041"); +_degd !=nil {_becd ,_gacgb :=_dg .GetString (_degd );if _gacgb {_dacb .DA =_becd ;}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0044\u0041\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",_degd ); +};};if _bccff :=_effd .Get ("\u0051");_bccff !=nil {_adcda ,_afcfb :=_dg .GetInt (_bccff );if _afcfb {_dacb .Q =_adcda ;}else {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0051\u0020\u0069\u006e\u0076a\u006ci\u0064 \u0028\u0067\u006f\u0074\u0020\u0025\u0054)",_bccff ); +};};if _afbfa :=_effd .Get ("\u0058\u0046\u0041");_afbfa !=nil {_dacb .XFA =_afbfa ;};if _dgfa :=_effd .Get ("\u0041\u0044\u0042\u0045\u005f\u0045\u0063\u0068\u006f\u0053\u0069\u0067\u006e");_dgfa !=nil {_dacb .ADBEEchoSign =_dgfa ;};_dacb .ToPdfObject (); +return _dacb ,nil ;};func (_bdedc *PdfWriter )hasObject (_begfd _dg .PdfObject )bool {_ ,_cabca :=_bdedc ._fdbfa [_begfd ];return _cabca ;}; -// NewPdfActionResetForm returns a new "reset form" action. -func NewPdfActionResetForm ()*PdfActionResetForm {_fd :=NewPdfAction ();_ce :=&PdfActionResetForm {};_ce .PdfAction =_fd ;_fd .SetContext (_ce );return _ce ;}; +// PdfActionSetOCGState represents a SetOCGState action. +type PdfActionSetOCGState struct{*PdfAction ;State _dg .PdfObject ;PreserveRB _dg .PdfObject ;};func (_aef *PdfReader )newPdfActionURIFromDict (_eaa *_dg .PdfObjectDictionary )(*PdfActionURI ,error ){return &PdfActionURI {URI :_eaa .Get ("\u0055\u0052\u0049"),IsMap :_eaa .Get ("\u0049\u0073\u004da\u0070")},nil ; +};func _beabe (_debca *fontCommon )*pdfFontSimple {return &pdfFontSimple {fontCommon :*_debca }};func (_adgd *PdfReader )newPdfActionFromIndirectObject (_afcg *_dg .PdfIndirectObject )(*PdfAction ,error ){_bdb ,_ddg :=_afcg .PdfObject .(*_dg .PdfObjectDictionary ); +if !_ddg {return nil ,_b .Errorf ("\u0061\u0063\u0074\u0069\u006f\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u006e\u006f\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};if model :=_adgd ._cadfa .GetModelFromPrimitive (_bdb );model !=nil {_daf ,_ccc :=model .(*PdfAction );if !_ccc {return nil ,_b .Errorf ("\u0063\u0061c\u0068\u0065\u0064\u0020\u006d\u006f\u0064\u0065\u006c\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0050\u0044\u0046\u0020\u0061\u0063ti\u006f\u006e"); +};return _daf ,nil ;};_bce :=&PdfAction {};_bce ._cbd =_afcg ;_adgd ._cadfa .Register (_bdb ,_bce );if _abe :=_bdb .Get ("\u0054\u0079\u0070\u0065");_abe !=nil {_acd ,_fae :=_abe .(*_dg .PdfObjectName );if !_fae {_ag .Log .Trace ("\u0049\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u0021\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u004e\u0061m\u0065",_abe ); +}else {if *_acd !="\u0041\u0063\u0074\u0069\u006f\u006e"{_ag .Log .Trace ("\u0055\u006e\u0073u\u0073\u0070\u0065\u0063t\u0065\u0064\u0020\u0054\u0079\u0070\u0065 \u0021\u003d\u0020\u0041\u0063\u0074\u0069\u006f\u006e\u0020\u0028\u0025\u0073\u0029",*_acd ); +};_bce .Type =_acd ;};};if _abg :=_bdb .Get ("\u004e\u0065\u0078\u0074");_abg !=nil {_bce .Next =_abg ;};if _edc :=_bdb .Get ("\u0053");_edc !=nil {_bce .S =_edc ;};_dac ,_bed :=_bce .S .(*_dg .PdfObjectName );if !_bed {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065\u0020\u0021\u003d\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0025\u0054\u0029",_bce .S ); +return nil ,_b .Errorf ("\u0069\u006e\u0076al\u0069\u0064\u0020\u0053\u0020\u006f\u0062\u006a\u0065c\u0074 \u0074y\u0070e\u0020\u0021\u003d\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0025\u0054\u0029",_bce .S );};_badc :=PdfActionType (_dac .String ()); +switch _badc {case ActionTypeGoTo :_ebg ,_fde :=_adgd .newPdfActionGotoFromDict (_bdb );if _fde !=nil {return nil ,_fde ;};_ebg .PdfAction =_bce ;_bce ._bg =_ebg ;return _bce ,nil ;case ActionTypeGoToR :_fcb ,_bcdb :=_adgd .newPdfActionGotoRFromDict (_bdb ); +if _bcdb !=nil {return nil ,_bcdb ;};_fcb .PdfAction =_bce ;_bce ._bg =_fcb ;return _bce ,nil ;case ActionTypeGoToE :_abed ,_efe :=_adgd .newPdfActionGotoEFromDict (_bdb );if _efe !=nil {return nil ,_efe ;};_abed .PdfAction =_bce ;_bce ._bg =_abed ;return _bce ,nil ; +case ActionTypeLaunch :_de ,_eff :=_adgd .newPdfActionLaunchFromDict (_bdb );if _eff !=nil {return nil ,_eff ;};_de .PdfAction =_bce ;_bce ._bg =_de ;return _bce ,nil ;case ActionTypeThread :_cdd ,_bfd :=_adgd .newPdfActionThreadFromDict (_bdb );if _bfd !=nil {return nil ,_bfd ; +};_cdd .PdfAction =_bce ;_bce ._bg =_cdd ;return _bce ,nil ;case ActionTypeURI :_cdg ,_dcc :=_adgd .newPdfActionURIFromDict (_bdb );if _dcc !=nil {return nil ,_dcc ;};_cdg .PdfAction =_bce ;_bce ._bg =_cdg ;return _bce ,nil ;case ActionTypeSound :_cbf ,_aga :=_adgd .newPdfActionSoundFromDict (_bdb ); +if _aga !=nil {return nil ,_aga ;};_cbf .PdfAction =_bce ;_bce ._bg =_cbf ;return _bce ,nil ;case ActionTypeMovie :_gce ,_cgc :=_adgd .newPdfActionMovieFromDict (_bdb );if _cgc !=nil {return nil ,_cgc ;};_gce .PdfAction =_bce ;_bce ._bg =_gce ;return _bce ,nil ; +case ActionTypeHide :_adf ,_dccc :=_adgd .newPdfActionHideFromDict (_bdb );if _dccc !=nil {return nil ,_dccc ;};_adf .PdfAction =_bce ;_bce ._bg =_adf ;return _bce ,nil ;case ActionTypeNamed :_efg ,_gdfb :=_adgd .newPdfActionNamedFromDict (_bdb );if _gdfb !=nil {return nil ,_gdfb ; +};_efg .PdfAction =_bce ;_bce ._bg =_efg ;return _bce ,nil ;case ActionTypeSubmitForm :_gag ,_gfda :=_adgd .newPdfActionSubmitFormFromDict (_bdb );if _gfda !=nil {return nil ,_gfda ;};_gag .PdfAction =_bce ;_bce ._bg =_gag ;return _bce ,nil ;case ActionTypeResetForm :_fg ,_ebd :=_adgd .newPdfActionResetFormFromDict (_bdb ); +if _ebd !=nil {return nil ,_ebd ;};_fg .PdfAction =_bce ;_bce ._bg =_fg ;return _bce ,nil ;case ActionTypeImportData :_gbe ,_dgc :=_adgd .newPdfActionImportDataFromDict (_bdb );if _dgc !=nil {return nil ,_dgc ;};_gbe .PdfAction =_bce ;_bce ._bg =_gbe ; +return _bce ,nil ;case ActionTypeSetOCGState :_cgf ,_bddb :=_adgd .newPdfActionSetOCGStateFromDict (_bdb );if _bddb !=nil {return nil ,_bddb ;};_cgf .PdfAction =_bce ;_bce ._bg =_cgf ;return _bce ,nil ;case ActionTypeRendition :_db ,_agd :=_adgd .newPdfActionRenditionFromDict (_bdb ); +if _agd !=nil {return nil ,_agd ;};_db .PdfAction =_bce ;_bce ._bg =_db ;return _bce ,nil ;case ActionTypeTrans :_cfe ,_cde :=_adgd .newPdfActionTransFromDict (_bdb );if _cde !=nil {return nil ,_cde ;};_cfe .PdfAction =_bce ;_bce ._bg =_cfe ;return _bce ,nil ; +case ActionTypeGoTo3DView :_gceg ,_dbb :=_adgd .newPdfActionGoTo3DViewFromDict (_bdb );if _dbb !=nil {return nil ,_dbb ;};_gceg .PdfAction =_bce ;_bce ._bg =_gceg ;return _bce ,nil ;case ActionTypeJavaScript :_feff ,_adfc :=_adgd .newPdfActionJavaScriptFromDict (_bdb ); +if _adfc !=nil {return nil ,_adfc ;};_feff .PdfAction =_bce ;_bce ._bg =_feff ;return _bce ,nil ;};_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006eg\u0020u\u006ek\u006eo\u0077\u006e\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0073",_badc ); +return nil ,nil ;}; -// NewBorderStyle returns an initialized PdfBorderStyle. -func NewBorderStyle ()*PdfBorderStyle {_gaccd :=&PdfBorderStyle {};return _gaccd }; +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. The slice should contain a single element between 0 and 1. +func (_bdbdg *PdfColorspaceDeviceGray )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gfcfa :=vals [0];if _gfcfa < 0.0||_gfcfa > 1.0{_ag .Log .Debug ("\u0049\u006eco\u006d\u0070\u0061t\u0069\u0062\u0069\u006city\u003a R\u0061\u006e\u0067\u0065\u0020\u006f\u0075ts\u0069\u0064\u0065\u0020\u005b\u0030\u002c1\u005d"); +};if _gfcfa < 0.0{_gfcfa =0.0;}else if _gfcfa > 1.0{_gfcfa =1.0;};return NewPdfColorDeviceGray (_gfcfa ),nil ;}; -// NewXObjectImageFromImage creates a new XObject Image from an image object -// with default options. If encoder is nil, uses raw encoding (none). -func NewXObjectImageFromImage (img *Image ,cs PdfColorspace ,encoder _aff .StreamEncoder )(*XObjectImage ,error ){_abedee :=NewXObjectImage ();return UpdateXObjectImageFromImage (_abedee ,img ,cs ,encoder );}; +// NewReaderOpts generates a default `ReaderOpts` instance. +func NewReaderOpts ()*ReaderOpts {return &ReaderOpts {Password :"",LazyLoad :true }}; -// PdfOutputIntent provides a means for matching the color characteristics of a PDF document with -// those of a target output device. -// Multiple PdfOutputIntents allows the production process to be customized to the expected workflow and the specific -// tools available. -type PdfOutputIntent struct{ +// Val returns the color value. +func (_gege *PdfColorDeviceGray )Val ()float64 {return float64 (*_gege )};func (_gcdc *PdfColorspaceCalRGB )String ()string {return "\u0043\u0061\u006c\u0052\u0047\u0042"}; -// Type is an optional PDF object that this dictionary describes. -// If present, must be OutputIntent for an output intent dictionary. -Type string ; +// ToPdfObject recursively builds the Outline tree PDF object. +func (_ffadf *PdfOutline )ToPdfObject ()_dg .PdfObject {_dfee :=_ffadf ._bbef ;_geccd :=_dfee .PdfObject .(*_dg .PdfObjectDictionary );_geccd .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073"));if _ffadf .First !=nil {_geccd .Set ("\u0046\u0069\u0072s\u0074",_ffadf .First .ToPdfObject ()); +};if _ffadf .Last !=nil {_geccd .Set ("\u004c\u0061\u0073\u0074",_ffadf .Last .GetContext ().GetContainingPdfObject ());};if _ffadf .Parent !=nil {_geccd .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_ffadf .Parent .GetContext ().GetContainingPdfObject ()); +};if _ffadf .Count !=nil {_geccd .Set ("\u0043\u006f\u0075n\u0074",_dg .MakeInteger (*_ffadf .Count ));};return _dfee ;}; -// S defines the OutputIntent subtype which should match the standard used in given document i.e: -// for PDF/X use PdfOutputIntentTypeX. -S PdfOutputIntentType ; +// NewPdfPage returns a new PDF page. +func NewPdfPage ()*PdfPage {_fabed :=PdfPage {};_fabed ._bfdge =_dg .MakeDict ();_fabed .Resources =NewPdfPageResources ();_gdfe :=_dg .PdfIndirectObject {};_gdfe .PdfObject =_fabed ._bfdge ;_fabed ._cggbe =&_gdfe ;_fabed ._gaed =*_fabed ._bfdge ;return &_fabed ; +}; -// OutputCondition is an optional field that is identifying the intended output device or production condition in -// human-readable form. This is preferred method of defining such a string for presentation to the user. -OutputCondition string ; +// ToPdfObject implements interface PdfModel. +func (_acg *PdfActionHide )ToPdfObject ()_dg .PdfObject {_acg .PdfAction .ToPdfObject ();_dfg :=_acg ._cbd ;_dd :=_dfg .PdfObject .(*_dg .PdfObjectDictionary );_dd .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeHide )));_dd .SetIfNotNil ("\u0054",_acg .T ); +_dd .SetIfNotNil ("\u0048",_acg .H );return _dfg ;}; -// OutputConditionIdentifier is a required field identifying the intended output device or production condition in -// human or machine-readable form. If human-readable, this string may be used -// in lieu of an OutputCondition for presentation to the user. -// A typical value for this entry would be the name of a production condition maintained -// in an industry-standard registry such as the ICC Characterization Data Registry -// If the intended production condition is not a recognized standard, the value Custom is recommended for this entry. -// the DestOutputProfile entry defines the ICC profile, and the Info entry is used for further -// human-readable identification. -OutputConditionIdentifier string ; +// ToPdfObject implements interface PdfModel. +func (_cfa *PdfActionNamed )ToPdfObject ()_dg .PdfObject {_cfa .PdfAction .ToPdfObject ();_bgg :=_cfa ._cbd ;_feg :=_bgg .PdfObject .(*_dg .PdfObjectDictionary );_feg .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeNamed )));_feg .SetIfNotNil ("\u004e",_cfa .N ); +return _bgg ;}; -// RegistryName is an optional string field (conventionally URI) identifying the registry in which the condition -// designated by OutputConditionIdentifier is defined. -RegistryName string ; +// ReaderToWriterOpts options used to generate a PdfWriter. +type ReaderToWriterOpts struct{SkipAcroForm bool ;SkipInfo bool ;SkipNameDictionary bool ;SkipNamedDests bool ;SkipOCProperties bool ;SkipOutlines bool ;SkipPageLabels bool ;SkipRotation bool ;SkipMetadata bool ;PageProcessCallback PageProcessCallback ; -// Info is a required field if OutputConditionIdentifier does not specify a standard production condition. -// A human-readable text string containing additional information or comments about intended -// target device or production condition. -Info string ; -// DestOutputProfile is required if OutputConditionIdentifier does not specify a standard production condition. -// It is an ICC profile stream defining the transformation from the PDF document's source colors to output device colorants. -DestOutputProfile []byte ; +// Deprecated: will be removed in v4. Use PageProcessCallback instead. +PageCallback PageCallback ;};type fontFile struct{_ecgd string ;_geffe string ;_beaeb _bd .SimpleEncoder ;}; -// ColorComponents is the number of color components supported by given output profile. -ColorComponents int ;_gebea *_aff .PdfObjectDictionary ;}; +// ToPdfObject implements interface PdfModel. +func (_fdga *PdfAnnotationUnderline )ToPdfObject ()_dg .PdfObject {_fdga .PdfAnnotation .ToPdfObject ();_bdaa :=_fdga ._cdf ;_bafc :=_bdaa .PdfObject .(*_dg .PdfObjectDictionary );_fdga .PdfAnnotationMarkup .appendToPdfDictionary (_bafc );_bafc .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0055n\u0064\u0065\u0072\u006c\u0069\u006ee")); +_bafc .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_fdga .QuadPoints );return _bdaa ;}; -// Evaluate runs the function on the passed in slice and returns the results. -func (_agaffc *PdfFunctionType3 )Evaluate (x []float64 )([]float64 ,error ){if len (x )!=1{_adg .Log .Error ("\u004f\u006e\u006c\u0079 o\u006e\u0065\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0061\u006c\u006c\u006f\u0077e\u0064");return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b"); -};return nil ,_g .New ("\u006e\u006f\u0074\u0020im\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074");}; +// NewReaderForText makes a new PdfReader for an input PDF content string. For use in testing. +func NewReaderForText (txt string )*PdfReader {return &PdfReader {_addfg :map[_dg .PdfObject ]struct{}{},_cadfa :_deag (),_baad :_dg .NewParserFromString (txt )};}; -// GetContainingPdfObject returns the container of the PdfAcroForm (indirect object). -func (_afecf *PdfAcroForm )GetContainingPdfObject ()_aff .PdfObject {return _afecf ._fbcde }; +// ImageToRGB convert 1-component grayscale data to 3-component RGB. +func (_egbac *PdfColorspaceDeviceGray )ImageToRGB (img Image )(Image ,error ){if img .ColorComponents !=1{return img ,_bf .New ("\u0074\u0068e \u0070\u0072\u006fv\u0069\u0064\u0065\u0064 im\u0061ge\u0020\u0069\u0073\u0020\u006e\u006f\u0074 g\u0072\u0061\u0079\u0020\u0073\u0063\u0061l\u0065"); +};_eadge ,_egd :=_fc .NewImage (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,img .Data ,img ._dgeb ,img ._gfbb );if _egd !=nil {return img ,_egd ;};_bcaeb ,_egd :=_fc .NRGBAConverter .Convert (_eadge );if _egd !=nil {return img ,_egd ; +};_bcgg :=_edcf (_bcaeb .Base ());_ag .Log .Trace ("\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079\u0020\u002d>\u0020\u0052\u0047\u0042");_ag .Log .Trace ("s\u0061\u006d\u0070\u006c\u0065\u0073\u003a\u0020\u0025\u0076",img .Data );_ag .Log .Trace ("\u0052G\u0042 \u0073\u0061\u006d\u0070\u006c\u0065\u0073\u003a\u0020\u0025\u0076",_bcgg .Data ); +_ag .Log .Trace ("\u0025\u0076\u0020\u002d\u003e\u0020\u0025\u0076",img ,_bcgg );return _bcgg ,nil ;}; -// GetModelFromPrimitive returns the model corresponding to the `primitive` PdfObject. -func (_ebage *modelManager )GetModelFromPrimitive (primitive _aff .PdfObject )PdfModel {model ,_fbbc :=_ebage ._geefd [primitive ];if !_fbbc {return nil ;};return model ;};func (_edeg *PdfReader )newPdfAnnotationFromIndirectObject (_bfdd *_aff .PdfIndirectObject )(*PdfAnnotation ,error ){_bcc ,_cdg :=_bfdd .PdfObject .(*_aff .PdfObjectDictionary ); -if !_cdg {return nil ,_e .Errorf ("\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0069\u006e\u0064\u0069r\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020a \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};if model :=_edeg ._cfadc .GetModelFromPrimitive (_bcc );model !=nil {_fedg ,_cfag :=model .(*PdfAnnotation );if !_cfag {return nil ,_e .Errorf ("\u0063\u0061\u0063\u0068\u0065\u0064 \u006d\u006f\u0064\u0065\u006c\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0050D\u0046\u0020\u0061\u006e\u006e\u006f\u0074a\u0074\u0069\u006f\u006e"); -};return _fedg ,nil ;};_edea :=&PdfAnnotation {};_edea ._ccfb =_bfdd ;_edeg ._cfadc .Register (_bcc ,_edea );if _bbbge :=_bcc .Get ("\u0054\u0079\u0070\u0065");_bbbge !=nil {_cbb ,_cdbe :=_bbbge .(*_aff .PdfObjectName );if !_cdbe {_adg .Log .Trace ("\u0049\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u0021\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u004e\u0061m\u0065",_bbbge ); -}else {if *_cbb !="\u0041\u006e\u006eo\u0074"{_adg .Log .Trace ("\u0055\u006e\u0073\u0075\u0073\u0070\u0065\u0063\u0074\u0065d\u0020\u0054\u0079\u0070\u0065\u0020\u0021=\u0020\u0041\u006e\u006e\u006f\u0074\u0020\u0028\u0025\u0073\u0029",*_cbb );};};};if _ggec :=_bcc .Get ("\u0052\u0065\u0063\u0074"); -_ggec !=nil {_edea .Rect =_ggec ;};if _gfd :=_bcc .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073");_gfd !=nil {_edea .Contents =_gfd ;};if _bg :=_bcc .Get ("\u0050");_bg !=nil {_edea .P =_bg ;};if _dgb :=_bcc .Get ("\u004e\u004d");_dgb !=nil {_edea .NM =_dgb ; -};if _fab :=_bcc .Get ("\u004d");_fab !=nil {_edea .M =_fab ;};if _ecc :=_bcc .Get ("\u0046");_ecc !=nil {_edea .F =_ecc ;};if _bee :=_bcc .Get ("\u0041\u0050");_bee !=nil {_edea .AP =_bee ;};if _deag :=_bcc .Get ("\u0041\u0053");_deag !=nil {_edea .AS =_deag ; -};if _adb :=_bcc .Get ("\u0042\u006f\u0072\u0064\u0065\u0072");_adb !=nil {_edea .Border =_adb ;};if _bga :=_bcc .Get ("\u0043");_bga !=nil {_edea .C =_bga ;};if _gffc :=_bcc .Get ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074"); -_gffc !=nil {_edea .StructParent =_gffc ;};if _fbea :=_bcc .Get ("\u004f\u0043");_fbea !=nil {_edea .OC =_fbea ;};_dba :=_bcc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");if _dba ==nil {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u0049\u004e\u0047:\u0020\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079 \u0069s\u0073\u0075\u0065\u0020\u002d\u0020a\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u002d\u0020\u0061\u0073\u0073u\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0073\u0075\u0062\u0074\u0079p\u0065"); -_edea ._eefa =nil ;return _edea ,nil ;};_ebga ,_bdd :=_dba .(*_aff .PdfObjectName );if !_bdd {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u0074\u0079\u0070\u0065 !\u003d\u0020n\u0061\u006d\u0065\u0020\u0028\u0025\u0054\u0029",_dba ); -return nil ,_e .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u006f\u0062\u006ae\u0063\u0074\u0020\u0074\u0079\u0070\u0065\u0020\u0021\u003d n\u0061\u006d\u0065 \u0028%\u0054\u0029",_dba );};switch *_ebga {case "\u0054\u0065\u0078\u0074":_bbfe ,_daf :=_edeg .newPdfAnnotationTextFromDict (_bcc ); -if _daf !=nil {return nil ,_daf ;};_bbfe .PdfAnnotation =_edea ;_edea ._eefa =_bbfe ;return _edea ,nil ;case "\u004c\u0069\u006e\u006b":_fbee ,_badc :=_edeg .newPdfAnnotationLinkFromDict (_bcc );if _badc !=nil {return nil ,_badc ;};_fbee .PdfAnnotation =_edea ; -_edea ._eefa =_fbee ;return _edea ,nil ;case "\u0046\u0072\u0065\u0065\u0054\u0065\u0078\u0074":_fcbf ,_ddg :=_edeg .newPdfAnnotationFreeTextFromDict (_bcc );if _ddg !=nil {return nil ,_ddg ;};_fcbf .PdfAnnotation =_edea ;_edea ._eefa =_fcbf ;return _edea ,nil ; -case "\u004c\u0069\u006e\u0065":_baac ,_dbc :=_edeg .newPdfAnnotationLineFromDict (_bcc );if _dbc !=nil {return nil ,_dbc ;};_baac .PdfAnnotation =_edea ;_edea ._eefa =_baac ;_adg .Log .Trace ("\u004c\u0049\u004e\u0045\u0020\u0041N\u004e\u004f\u0054\u0041\u0054\u0049\u004f\u004e\u003a\u0020\u0061\u006e\u006eo\u0074\u0020\u0028\u0025\u0054\u0029\u003a \u0025\u002b\u0076\u000a",_edea ,_edea ); -_adg .Log .Trace ("\u004c\u0049\u004eE\u0020\u0041\u004e\u004eO\u0054\u0041\u0054\u0049\u004f\u004e\u003a \u0063\u0074\u0078\u0020\u0028\u0025\u0054\u0029\u003a\u0020\u0025\u002b\u0076\u000a",_baac ,_baac );_adg .Log .Trace ("\u004c\u0049\u004e\u0045\u0020\u0041\u004e\u004e\u004f\u0054\u0041\u0054\u0049\u004f\u004e\u0020\u004d\u0061\u0072\u006b\u0075\u0070\u003a\u0020c\u0074\u0078\u0020\u0028\u0025T\u0029\u003a \u0025\u002b\u0076\u000a",_baac .PdfAnnotationMarkup ,_baac .PdfAnnotationMarkup ); -return _edea ,nil ;case "\u0053\u0071\u0075\u0061\u0072\u0065":_bgd ,_aeb :=_edeg .newPdfAnnotationSquareFromDict (_bcc );if _aeb !=nil {return nil ,_aeb ;};_bgd .PdfAnnotation =_edea ;_edea ._eefa =_bgd ;return _edea ,nil ;case "\u0043\u0069\u0072\u0063\u006c\u0065":_fcfb ,_aab :=_edeg .newPdfAnnotationCircleFromDict (_bcc ); -if _aab !=nil {return nil ,_aab ;};_fcfb .PdfAnnotation =_edea ;_edea ._eefa =_fcfb ;return _edea ,nil ;case "\u0050o\u006c\u0079\u0067\u006f\u006e":_caga ,_ffbe :=_edeg .newPdfAnnotationPolygonFromDict (_bcc );if _ffbe !=nil {return nil ,_ffbe ;};_caga .PdfAnnotation =_edea ; -_edea ._eefa =_caga ;return _edea ,nil ;case "\u0050\u006f\u006c\u0079\u004c\u0069\u006e\u0065":_cgcc ,_ebgd :=_edeg .newPdfAnnotationPolyLineFromDict (_bcc );if _ebgd !=nil {return nil ,_ebgd ;};_cgcc .PdfAnnotation =_edea ;_edea ._eefa =_cgcc ;return _edea ,nil ; -case "\u0048i\u0067\u0068\u006c\u0069\u0067\u0068t":_fec ,_gdgb :=_edeg .newPdfAnnotationHighlightFromDict (_bcc );if _gdgb !=nil {return nil ,_gdgb ;};_fec .PdfAnnotation =_edea ;_edea ._eefa =_fec ;return _edea ,nil ;case "\u0055n\u0064\u0065\u0072\u006c\u0069\u006ee":_ggeg ,_aagf :=_edeg .newPdfAnnotationUnderlineFromDict (_bcc ); -if _aagf !=nil {return nil ,_aagf ;};_ggeg .PdfAnnotation =_edea ;_edea ._eefa =_ggeg ;return _edea ,nil ;case "\u0053\u0071\u0075\u0069\u0067\u0067\u006c\u0079":_bgdg ,_faf :=_edeg .newPdfAnnotationSquigglyFromDict (_bcc );if _faf !=nil {return nil ,_faf ; -};_bgdg .PdfAnnotation =_edea ;_edea ._eefa =_bgdg ;return _edea ,nil ;case "\u0053t\u0072\u0069\u006b\u0065\u004f\u0075t":_ebd ,_agg :=_edeg .newPdfAnnotationStrikeOut (_bcc );if _agg !=nil {return nil ,_agg ;};_ebd .PdfAnnotation =_edea ;_edea ._eefa =_ebd ; -return _edea ,nil ;case "\u0043\u0061\u0072e\u0074":_gagc ,_fbge :=_edeg .newPdfAnnotationCaretFromDict (_bcc );if _fbge !=nil {return nil ,_fbge ;};_gagc .PdfAnnotation =_edea ;_edea ._eefa =_gagc ;return _edea ,nil ;case "\u0053\u0074\u0061m\u0070":_cfe ,_eebc :=_edeg .newPdfAnnotationStampFromDict (_bcc ); -if _eebc !=nil {return nil ,_eebc ;};_cfe .PdfAnnotation =_edea ;_edea ._eefa =_cfe ;return _edea ,nil ;case "\u0049\u006e\u006b":_eece ,_bfaf :=_edeg .newPdfAnnotationInkFromDict (_bcc );if _bfaf !=nil {return nil ,_bfaf ;};_eece .PdfAnnotation =_edea ; -_edea ._eefa =_eece ;return _edea ,nil ;case "\u0050\u006f\u0070u\u0070":_aeg ,_fbeb :=_edeg .newPdfAnnotationPopupFromDict (_bcc );if _fbeb !=nil {return nil ,_fbeb ;};_aeg .PdfAnnotation =_edea ;_edea ._eefa =_aeg ;return _edea ,nil ;case "\u0046\u0069\u006c\u0065\u0041\u0074\u0074\u0061\u0063h\u006d\u0065\u006e\u0074":_aegg ,_edf :=_edeg .newPdfAnnotationFileAttachmentFromDict (_bcc ); -if _edf !=nil {return nil ,_edf ;};_aegg .PdfAnnotation =_edea ;_edea ._eefa =_aegg ;return _edea ,nil ;case "\u0053\u006f\u0075n\u0064":_cgag ,_ebe :=_edeg .newPdfAnnotationSoundFromDict (_bcc );if _ebe !=nil {return nil ,_ebe ;};_cgag .PdfAnnotation =_edea ; -_edea ._eefa =_cgag ;return _edea ,nil ;case "\u0052i\u0063\u0068\u004d\u0065\u0064\u0069a":_ded ,_ffa :=_edeg .newPdfAnnotationRichMediaFromDict (_bcc );if _ffa !=nil {return nil ,_ffa ;};_ded .PdfAnnotation =_edea ;_edea ._eefa =_ded ;return _edea ,nil ; -case "\u004d\u006f\u0076i\u0065":_beba ,_feb :=_edeg .newPdfAnnotationMovieFromDict (_bcc );if _feb !=nil {return nil ,_feb ;};_beba .PdfAnnotation =_edea ;_edea ._eefa =_beba ;return _edea ,nil ;case "\u0053\u0063\u0072\u0065\u0065\u006e":_fagc ,_abb :=_edeg .newPdfAnnotationScreenFromDict (_bcc ); -if _abb !=nil {return nil ,_abb ;};_fagc .PdfAnnotation =_edea ;_edea ._eefa =_fagc ;return _edea ,nil ;case "\u0057\u0069\u0064\u0067\u0065\u0074":_fba ,_eecf :=_edeg .newPdfAnnotationWidgetFromDict (_bcc );if _eecf !=nil {return nil ,_eecf ;};_fba .PdfAnnotation =_edea ; -_edea ._eefa =_fba ;return _edea ,nil ;case "P\u0072\u0069\u006e\u0074\u0065\u0072\u004d\u0061\u0072\u006b":_edge ,_eae :=_edeg .newPdfAnnotationPrinterMarkFromDict (_bcc );if _eae !=nil {return nil ,_eae ;};_edge .PdfAnnotation =_edea ;_edea ._eefa =_edge ; -return _edea ,nil ;case "\u0054r\u0061\u0070\u004e\u0065\u0074":_bagg ,_addc :=_edeg .newPdfAnnotationTrapNetFromDict (_bcc );if _addc !=nil {return nil ,_addc ;};_bagg .PdfAnnotation =_edea ;_edea ._eefa =_bagg ;return _edea ,nil ;case "\u0057a\u0074\u0065\u0072\u006d\u0061\u0072k":_dbgc ,_fcdec :=_edeg .newPdfAnnotationWatermarkFromDict (_bcc ); -if _fcdec !=nil {return nil ,_fcdec ;};_dbgc .PdfAnnotation =_edea ;_edea ._eefa =_dbgc ;return _edea ,nil ;case "\u0033\u0044":_caeg ,_afea :=_edeg .newPdfAnnotation3DFromDict (_bcc );if _afea !=nil {return nil ,_afea ;};_caeg .PdfAnnotation =_edea ;_edea ._eefa =_caeg ; -return _edea ,nil ;case "\u0050\u0072\u006f\u006a\u0065\u0063\u0074\u0069\u006f\u006e":_bbd ,_bbdb :=_edeg .newPdfAnnotationProjectionFromDict (_bcc );if _bbdb !=nil {return nil ,_bbdb ;};_bbd .PdfAnnotation =_edea ;_edea ._eefa =_bbd ;return _edea ,nil ; -case "\u0052\u0065\u0064\u0061\u0063\u0074":_bdcf ,_bae :=_edeg .newPdfAnnotationRedactFromDict (_bcc );if _bae !=nil {return nil ,_bae ;};_bdcf .PdfAnnotation =_edea ;_edea ._eefa =_bdcf ;return _edea ,nil ;};_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0075\u006e\u006b\u006e\u006f\u0077\u006e\u0020a\u006e\u006e\u006f\u0074\u0061t\u0069\u006fn\u003a\u0020\u0025\u0073",*_ebga ); -return nil ,nil ;};func _ebaff (_ecbg *[]*PdfField ,_aagcc FieldFilterFunc ,_ecegc bool )[]*PdfField {if _ecbg ==nil {return nil ;};_gagdd :=*_ecbg ;if len (*_ecbg )==0{return nil ;};_efgfg :=_gagdd [:0];if _aagcc ==nil {_aagcc =func (*PdfField )bool {return true }; -};var _gbfe []*PdfField ;for _ ,_cdcdc :=range _gagdd {_bbdaf :=_aagcc (_cdcdc );if _bbdaf {_gbfe =append (_gbfe ,_cdcdc );if len (_cdcdc .Kids )> 0{_gbfe =append (_gbfe ,_ebaff (&_cdcdc .Kids ,_aagcc ,_ecegc )...);};};if !_ecegc ||!_bbdaf ||len (_cdcdc .Kids )> 0{_efgfg =append (_efgfg ,_cdcdc ); -};};*_ecbg =_efgfg ;return _gbfe ;};var _ pdfFont =(*pdfCIDFontType2 )(nil );func (_abccb *PdfWriter )setWriter (_cdfd _ega .Writer ){_abccb ._cagac =_abccb ._bfage ;_abccb ._ggee =_ag .NewWriter (_cdfd );}; +// NewPdfSignatureReferenceDocMDP returns PdfSignatureReference for the transformParams. +func NewPdfSignatureReferenceDocMDP (transformParams *PdfTransformParamsDocMDP )*PdfSignatureReference {return &PdfSignatureReference {Type :_dg .MakeName ("\u0053\u0069\u0067\u0052\u0065\u0066"),TransformMethod :_dg .MakeName ("\u0044\u006f\u0063\u004d\u0044\u0050"),TransformParams :transformParams .ToPdfObject ()}; +};func (_facec *PdfAcroForm )signatureFields ()[]*PdfFieldSignature {var _gceeg []*PdfFieldSignature ;for _ ,_fbbd :=range _facec .AllFields (){switch _cbfd :=_fbbd .GetContext ().(type ){case *PdfFieldSignature :_dddgf :=_cbfd ;_gceeg =append (_gceeg ,_dddgf ); +};};return _gceeg ;}; -// String returns a string that describes `font`. -func (_fgfbg *PdfFont )String ()string {_gabda :="";if _fgfbg ._gebd .Encoder ()!=nil {_gabda =_fgfbg ._gebd .Encoder ().String ();};return _e .Sprintf ("\u0046\u004f\u004e\u0054\u007b\u0025\u0054\u0020\u0025s\u0020\u0025\u0073\u007d",_fgfbg ._gebd ,_fgfbg .baseFields ().coreString (),_gabda ); -};func (_acdbc *PdfSignature )extractChainFromCert ()([]*_fb .Certificate ,error ){var _gegbb *_aff .PdfObjectArray ;switch _adgb :=_acdbc .Cert .(type ){case *_aff .PdfObjectString :_gegbb =_aff .MakeArray (_adgb );case *_aff .PdfObjectArray :_gegbb =_adgb ; -default:return nil ,_e .Errorf ("\u0069n\u0076\u0061l\u0069\u0064\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072e\u0020\u0063\u0065\u0072\u0074\u0069f\u0069\u0063\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_adgb ); -};var _dcagf _af .Buffer ;for _ ,_egfa :=range _gegbb .Elements (){_ccfc ,_dage :=_aff .GetString (_egfa );if !_dage {return nil ,_e .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0074\u0079p\u0065\u0020\u0069\u006e\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065 \u0063\u0065r\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u0063h\u0061\u0069\u006e\u003a\u0020\u0025\u0054",_egfa ); -};if _ ,_edacb :=_dcagf .Write (_ccfc .Bytes ());_edacb !=nil {return nil ,_edacb ;};};return _fb .ParseCertificates (_dcagf .Bytes ());}; +// SetAlpha sets the alpha layer for the image. +func (_abcbb *Image )SetAlpha (alpha []byte ){_abcbb ._dgeb =alpha }; -// GetContentStreamWithEncoder returns the pattern cell's content stream and its encoder -func (_bbaee *PdfTilingPattern )GetContentStreamWithEncoder ()([]byte ,_aff .StreamEncoder ,error ){_fcae ,_aacaga :=_bbaee ._cfegc .(*_aff .PdfObjectStream );if !_aacaga {_adg .Log .Debug ("\u0054\u0069l\u0069\u006e\u0067\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_bbaee ._cfegc ); -return nil ,nil ,_aff .ErrTypeError ;};_aefbg ,_dcddeb :=_aff .DecodeStream (_fcae );if _dcddeb !=nil {_adg .Log .Debug ("\u0046\u0061\u0069l\u0065\u0064\u0020\u0064e\u0063\u006f\u0064\u0069\u006e\u0067\u0020s\u0074\u0072\u0065\u0061\u006d\u002c\u0020\u0065\u0072\u0072\u003a\u0020\u0025\u0076",_dcddeb ); -return nil ,nil ,_dcddeb ;};_gfdb ,_dcddeb :=_aff .NewEncoderFromStream (_fcae );if _dcddeb !=nil {_adg .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020f\u0069\u006e\u0064\u0069\u006e\u0067 \u0064\u0065\u0063\u006f\u0064\u0069\u006eg\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0072\u003a\u0020%\u0076",_dcddeb ); -return nil ,nil ,_dcddeb ;};return _aefbg ,_gfdb ,nil ;}; +// NewPdfActionSetOCGState returns a new "named" action. +func NewPdfActionSetOCGState ()*PdfActionSetOCGState {_ccd :=NewPdfAction ();_gfc :=&PdfActionSetOCGState {};_gfc .PdfAction =_ccd ;_ccd .SetContext (_gfc );return _gfc ;}; -// GetColorspaces loads PdfPageResourcesColorspaces from `r.ColorSpace` and returns an error if there -// is a problem loading. Once loaded, the same object is returned on multiple calls. -func (_aeabe *PdfPageResources )GetColorspaces ()(*PdfPageResourcesColorspaces ,error ){if _aeabe ._cfdbe !=nil {return _aeabe ._cfdbe ,nil ;};if _aeabe .ColorSpace ==nil {return nil ,nil ;};_aeddc ,_cdegf :=_fgagf (_aeabe .ColorSpace );if _cdegf !=nil {return nil ,_cdegf ; -};_aeabe ._cfdbe =_aeddc ;return _aeabe ._cfdbe ,nil ;};func _gbge (_dfgdad _aff .PdfObject )(*PdfColorspaceDeviceNAttributes ,error ){_eefcc :=&PdfColorspaceDeviceNAttributes {};var _cfed *_aff .PdfObjectDictionary ;switch _edcgb :=_dfgdad .(type ){case *_aff .PdfIndirectObject :_eefcc ._ecgec =_edcgb ; -var _geba bool ;_cfed ,_geba =_edcgb .PdfObject .(*_aff .PdfObjectDictionary );if !_geba {_adg .Log .Error ("\u0044\u0065\u0076\u0069c\u0065\u004e\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065 \u0074\u0079\u0070\u0065\u0020\u0065\u0072r\u006f\u0072"); -return nil ,_g .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};case *_aff .PdfObjectDictionary :_cfed =_edcgb ;case *_aff .PdfObjectReference :_adef :=_edcgb .Resolve ();return _gbge (_adef );default:_adg .Log .Error ("\u0044\u0065\u0076\u0069c\u0065\u004e\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065 \u0074\u0079\u0070\u0065\u0020\u0065\u0072r\u006f\u0072"); -return nil ,_g .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _feec :=_cfed .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_feec !=nil {_gaaeca ,_bfbc :=_aff .TraceToDirectObject (_feec ).(*_aff .PdfObjectName );if !_bfbc {_adg .Log .Error ("\u0044\u0065vi\u0063\u0065\u004e \u0061\u0074\u0074\u0072ibu\u0074e \u0053\u0075\u0062\u0074\u0079\u0070\u0065 t\u0079\u0070\u0065\u0020\u0065\u0072\u0072o\u0072"); -return nil ,_g .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_eefcc .Subtype =_gaaeca ;};if _gaef :=_cfed .Get ("\u0043o\u006c\u006f\u0072\u0061\u006e\u0074s");_gaef !=nil {_eefcc .Colorants =_gaef ;};if _dbffcc :=_cfed .Get ("\u0050r\u006f\u0063\u0065\u0073\u0073"); -_dbffcc !=nil {_eefcc .Process =_dbffcc ;};if _bffc :=_cfed .Get ("M\u0069\u0078\u0069\u006e\u0067\u0048\u0069\u006e\u0074\u0073");_bffc !=nil {_eefcc .MixingHints =_bffc ;};return _eefcc ,nil ;}; +// BaseFont returns the font's "BaseFont" field. +func (_ffef *PdfFont )BaseFont ()string {return _ffef .baseFields ()._ecbf }; -// GetFontDescriptor returns the font descriptor for `font`. -func (_fbdf PdfFont )GetFontDescriptor ()(*PdfFontDescriptor ,error ){return _fbdf ._gebd .getFontDescriptor (),nil ;}; +// PdfOutline represents a PDF outline dictionary (Table 152 - p. 376). +type PdfOutline struct{PdfOutlineTreeNode ;Parent *PdfOutlineTreeNode ;Count *int64 ;_bbef *_dg .PdfIndirectObject ;}; -// ColorToRGB converts a ICCBased color to an RGB color. -func (_fabeg *PdfColorspaceICCBased )ColorToRGB (color PdfColor )(PdfColor ,error ){if _fabeg .Alternate ==nil {_adg .Log .Debug ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); -if _fabeg .N ==1{_adg .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061y\u0020\u0028\u004e\u003d\u0031\u0029"); -_dgab :=NewPdfColorspaceDeviceGray ();return _dgab .ColorToRGB (color );}else if _fabeg .N ==3{_adg .Log .Debug ("\u0049\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006eg\u0020\u0044\u0065\u0076\u0069\u0063e\u0052\u0047B\u0020\u0028N\u003d3\u0029"); -return color ,nil ;}else if _fabeg .N ==4{_adg .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059K\u0020\u0028\u004e\u003d\u0034\u0029"); -_bdae :=NewPdfColorspaceDeviceCMYK ();return _bdae .ColorToRGB (color );}else {return nil ,_g .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); -};};_adg .Log .Trace ("\u0049\u0043\u0043 \u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061t\u0069\u0076\u0065\u003a\u0020\u0025\u0023\u0076",_fabeg ); -return _fabeg .Alternate .ColorToRGB (color );}; +// PdfShadingType1 is a Function-based shading. +type PdfShadingType1 struct{*PdfShading ;Domain *_dg .PdfObjectArray ;Matrix *_dg .PdfObjectArray ;Function []PdfFunction ;}; -// ToPdfObject returns colorspace in a PDF object format [name stream] -func (_deab *PdfColorspaceICCBased )ToPdfObject ()_aff .PdfObject {_fgcbb :=&_aff .PdfObjectArray {};_fgcbb .Append (_aff .MakeName ("\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064"));var _acda *_aff .PdfObjectStream ;if _deab ._abcbf !=nil {_acda =_deab ._abcbf ; -}else {_acda =&_aff .PdfObjectStream {};};_deagc :=_aff .MakeDict ();_deagc .Set ("\u004e",_aff .MakeInteger (int64 (_deab .N )));if _deab .Alternate !=nil {_deagc .Set ("\u0041l\u0074\u0065\u0072\u006e\u0061\u0074e",_deab .Alternate .ToPdfObject ());}; -if _deab .Metadata !=nil {_deagc .Set ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_deab .Metadata );};if _deab .Range !=nil {var _eeae []_aff .PdfObject ;for _ ,_fcdcf :=range _deab .Range {_eeae =append (_eeae ,_aff .MakeFloat (_fcdcf ));};_deagc .Set ("\u0052\u0061\u006eg\u0065",_aff .MakeArray (_eeae ...)); -};_deagc .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_deab .Data ))));_acda .Stream =_deab .Data ;_acda .PdfObjectDictionary =_deagc ;_fgcbb .Append (_acda );if _deab ._ecfc !=nil {_deab ._ecfc .PdfObject =_fgcbb ;return _deab ._ecfc ; -};return _fgcbb ;}; +// ImageToRGB convert an indexed image to RGB. +func (_dfcd *PdfColorspaceSpecialIndexed )ImageToRGB (img Image )(Image ,error ){N :=_dfcd .Base .GetNumComponents ();if N < 1{return Image {},_b .Errorf ("\u0062\u0061d \u0062\u0061\u0073e\u0020\u0063\u006f\u006cors\u0070ac\u0065\u0020\u004e\u0075\u006d\u0043\u006fmp\u006f\u006e\u0065\u006e\u0074\u0073\u003d%\u0064",N ); +};_edec :=_fc .NewImageBase (int (img .Width ),int (img .Height ),8,N ,nil ,img ._dgeb ,img ._gfbb );_edadd :=_fcd .NewReader (img .getBase ());_dcaa :=_fcd .NewWriter (_edec );var (_bbcg uint32 ;_egdbe int ;_fefa error ;);for {_bbcg ,_fefa =_edadd .ReadSample (); +if _fefa ==_cf .EOF {break ;}else if _fefa !=nil {return img ,_fefa ;};_egdbe =int (_bbcg );_ag .Log .Trace ("\u0049\u006ed\u0065\u0078\u0065\u0064\u003a\u0020\u0069\u006e\u0064\u0065\u0078\u003d\u0025\u0064\u0020\u004e\u003d\u0025\u0064\u0020\u006c\u0075t=\u0025\u0064",_egdbe ,N ,len (_dfcd ._bcea )); +if (_egdbe +1)*N > len (_dfcd ._bcea ){_egdbe =len (_dfcd ._bcea )/N -1;_ag .Log .Trace ("C\u006c\u0069\u0070\u0070in\u0067 \u0074\u006f\u0020\u0069\u006ed\u0065\u0078\u003a\u0020\u0025\u0064",_egdbe );if _egdbe < 0{_ag .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0043a\u006e\u0027\u0074\u0020\u0063\u006c\u0069p\u0020\u0069\u006e\u0064\u0065\u0078.\u0020\u0049\u0073\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006ce\u0020\u0064\u0061\u006d\u0061\u0067\u0065\u0064\u003f"); +break ;};};for _dgdf :=_egdbe *N ;_dgdf < (_egdbe +1)*N ;_dgdf ++{if _fefa =_dcaa .WriteSample (uint32 (_dfcd ._bcea [_dgdf ]));_fefa !=nil {return img ,_fefa ;};};};return _dfcd .Base .ImageToRGB (_edcf (&_edec ));}; -// ToPdfObject implements interface PdfModel. -func (_afc *PdfActionResetForm )ToPdfObject ()_aff .PdfObject {_afc .PdfAction .ToPdfObject ();_ffc :=_afc ._df ;_fdf :=_ffc .PdfObject .(*_aff .PdfObjectDictionary );_fdf .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeResetForm )));_fdf .SetIfNotNil ("\u0046\u0069\u0065\u006c\u0064\u0073",_afc .Fields ); -_fdf .SetIfNotNil ("\u0046\u006c\u0061g\u0073",_afc .Flags );return _ffc ;};func _abegb (_degbg string )(map[_eee .CharCode ]_eee .GlyphName ,error ){_agddg :=_ba .Split (_degbg ,"\u000a");_fgadc :=make (map[_eee .CharCode ]_eee .GlyphName );for _ ,_gbee :=range _agddg {_ddabf :=_ebaad .FindStringSubmatch (_gbee ); -if _ddabf ==nil {continue ;};_dcbf ,_eagb :=_ddabf [1],_ddabf [2];_ebgc ,_ccffe :=_eed .Atoi (_dcbf );if _ccffe !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0042\u0061\u0064\u0020\u0065\u006e\u0063\u006fd\u0069n\u0067\u0020\u006c\u0069\u006e\u0065\u002e \u0025\u0071",_gbee ); -return nil ,_aff .ErrTypeError ;};_fgadc [_eee .CharCode (_ebgc )]=_eee .GlyphName (_eagb );};_adg .Log .Trace ("g\u0065\u0074\u0045\u006e\u0063\u006fd\u0069\u006e\u0067\u0073\u003a\u0020\u006b\u0065\u0079V\u0061\u006c\u0075e\u0073=\u0025\u0023\u0076",_fgadc ); -return _fgadc ,nil ;}; +// SetRotation sets the rotation of all pages added to writer. The rotation is +// specified in degrees and must be a multiple of 90. +// The Rotate field of individual pages has priority over the global rotation. +func (_gfdde *PdfWriter )SetRotation (rotate int64 )error {_cbdegg ,_cfdff :=_dg .GetDict (_gfdde ._gbgb );if !_cfdff {return ErrTypeCheck ;};_cbdegg .Set ("\u0052\u006f\u0074\u0061\u0074\u0065",_dg .MakeInteger (rotate ));return nil ;}; -// B returns the value of the blue component of the color. -func (_cdef *PdfColorDeviceRGB )B ()float64 {return _cdef [2]};func (_ecaf *PdfReader )newPdfAcroFormFromDict (_decba *_aff .PdfIndirectObject ,_bbcge *_aff .PdfObjectDictionary )(*PdfAcroForm ,error ){_edeac :=NewPdfAcroForm ();if _decba !=nil {_edeac ._fbcde =_decba ; -_decba .PdfObject =_aff .MakeDict ();};if _eggg :=_bbcge .Get ("\u0046\u0069\u0065\u006c\u0064\u0073");_eggg !=nil &&!_aff .IsNullObject (_eggg ){_cggg ,_bbed :=_aff .GetArray (_eggg );if !_bbed {return nil ,_e .Errorf ("\u0066i\u0065\u006c\u0064\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e \u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0025\u0054\u0029",_eggg ); -};var _afaaa []*PdfField ;for _ ,_begdd :=range _cggg .Elements (){_baecd ,_agfcd :=_aff .GetIndirect (_begdd );if !_agfcd {if _ ,_fbdcb :=_begdd .(*_aff .PdfObjectNull );_fbdcb {_adg .Log .Trace ("\u0053k\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006f\u0076\u0065\u0072 \u006e\u0075\u006c\u006c\u0020\u0066\u0069\u0065\u006c\u0064"); -continue ;};_adg .Log .Debug ("\u0046\u0069\u0065\u006c\u0064 \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0064 \u0069\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0025\u0054",_begdd ); -return nil ,_e .Errorf ("\u0066\u0069\u0065l\u0064\u0020\u006e\u006ft\u0020\u0069\u006e\u0020\u0061\u006e\u0020i\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_gacd ,_ccae :=_ecaf .newPdfFieldFromIndirectObject (_baecd ,nil ); -if _ccae !=nil {return nil ,_ccae ;};_adg .Log .Trace ("\u0041\u0063\u0072\u006fFo\u0072\u006d\u0020\u0046\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u002b\u0076",*_gacd );_afaaa =append (_afaaa ,_gacd );};_edeac .Fields =&_afaaa ;};if _aebg :=_bbcge .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073"); -_aebg !=nil {_bdfa ,_affe :=_aff .GetBool (_aebg );if _affe {_edeac .NeedAppearances =_bdfa ;}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u0065\u0065\u0064\u0041\u0070p\u0065\u0061\u0072\u0061\u006e\u0063e\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006ft\u0020\u0025\u0054\u0029",_aebg ); -};};if _egfg :=_bbcge .Get ("\u0053\u0069\u0067\u0046\u006c\u0061\u0067\u0073");_egfg !=nil {_fgaa ,_fffd :=_aff .GetInt (_egfg );if _fffd {_edeac .SigFlags =_fgaa ;}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0053\u0069\u0067\u0046\u006c\u0061\u0067\u0073 \u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_egfg ); -};};if _gbcd :=_bbcge .Get ("\u0043\u004f");_gbcd !=nil {_fbad ,_cafg :=_aff .GetArray (_gbcd );if _cafg {_edeac .CO =_fbad ;}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u004f\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",_gbcd ); -};};if _bddfb :=_bbcge .Get ("\u0044\u0052");_bddfb !=nil {if _bcab ,_cdbef :=_aff .GetDict (_bddfb );_cdbef {_fbfd ,_ecgb :=NewPdfPageResourcesFromDict (_bcab );if _ecgb !=nil {_adg .Log .Error ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0044R\u003a\u0020\u0025\u0076",_ecgb ); -return nil ,_ecgb ;};_edeac .DR =_fbfd ;}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0044\u0052\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",_bddfb );};};if _cefce :=_bbcge .Get ("\u0044\u0041"); -_cefce !=nil {_fagge ,_gafb :=_aff .GetString (_cefce );if _gafb {_edeac .DA =_fagge ;}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0044\u0041\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",_cefce ); -};};if _gfcfe :=_bbcge .Get ("\u0051");_gfcfe !=nil {_fbdfc ,_cdda :=_aff .GetInt (_gfcfe );if _cdda {_edeac .Q =_fbdfc ;}else {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u0051\u0020\u0069\u006e\u0076a\u006ci\u0064 \u0028\u0067\u006f\u0074\u0020\u0025\u0054)",_gfcfe ); -};};if _bdcfb :=_bbcge .Get ("\u0058\u0046\u0041");_bdcfb !=nil {_edeac .XFA =_bdcfb ;};if _ddfgb :=_bbcge .Get ("\u0041\u0044\u0042\u0045\u005f\u0045\u0063\u0068\u006f\u0053\u0069\u0067\u006e");_ddfgb !=nil {_edeac .ADBEEchoSign =_ddfgb ;};_edeac .ToPdfObject (); -return _edeac ,nil ;}; +// GetPreviousRevision returns the previous revision of PdfReader for the Pdf document +func (_cbca *PdfReader )GetPreviousRevision ()(*PdfReader ,error ){if _cbca ._baad .GetRevisionNumber ()==0{return nil ,_bf .New ("\u0070\u0072e\u0076\u0069\u006f\u0075\u0073\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0065xi\u0073\u0074"); +};if _dabdc ,_eebd :=_cbca ._ggafe [_cbca ];_eebd {return _dabdc ,nil ;};_afeb ,_gcfdc :=_cbca ._baad .GetPreviousRevisionReadSeeker ();if _gcfdc !=nil {return nil ,_gcfdc ;};_ccgacb ,_gcfdc :=_dcdd (_afeb ,_cbca ._gcecfe ,_cbca ._eadef ,"\u006do\u0064\u0065\u006c\u003aG\u0065\u0074\u0050\u0072\u0065v\u0069o\u0075s\u0052\u0065\u0076\u0069\u0073\u0069\u006fn"); +if _gcfdc !=nil {return nil ,_gcfdc ;};_cbca ._aggag [_cbca ._baad .GetRevisionNumber ()-1]=_ccgacb ;_cbca ._ggafe [_cbca ]=_ccgacb ;_ccgacb ._ggafe =_cbca ._ggafe ;return _ccgacb ,nil ;};func (_bbdca *PdfPage )getParentResources ()(*PdfPageResources ,error ){_bgfff :=_bbdca .Parent ; +for _bgfff !=nil {_gbcbd ,_cgddc :=_dg .GetDict (_bgfff );if !_cgddc {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020n\u006f\u0064\u0065");return nil ,_bf .New ("i\u006e\u0076\u0061\u006cid\u0020p\u0061\u0072\u0065\u006e\u0074 \u006f\u0062\u006a\u0065\u0063\u0074"); +};if _fddc :=_gbcbd .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");_fddc !=nil {_egfg ,_feegd :=_dg .GetDict (_fddc );if !_feegd {return nil ,_bf .New ("i\u006e\u0076\u0061\u006cid\u0020r\u0065\u0073\u006f\u0075\u0072c\u0065\u0020\u0064\u0069\u0063\u0074"); +};_eacac ,_gcde :=NewPdfPageResourcesFromDict (_egfg );if _gcde !=nil {return nil ,_gcde ;};return _eacac ,nil ;};_bgfff =_gbcbd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");};return nil ,nil ;}; -// NewPdfColorPatternType2 returns an empty color shading pattern type 2 (Axial). -func NewPdfColorPatternType2 ()*PdfColorPatternType2 {_cegd :=&PdfColorPatternType2 {};return _cegd };func (_bcdd SignatureValidationResult )String ()string {var _ccfcc _af .Buffer ;_ccfcc .WriteString (_e .Sprintf ("\u004ea\u006d\u0065\u003a\u0020\u0025\u0073\n",_bcdd .Name )); -if _bcdd .Date ._ababa > 0{_ccfcc .WriteString (_e .Sprintf ("\u0044a\u0074\u0065\u003a\u0020\u0025\u0073\n",_bcdd .Date .ToGoTime ().String ()));}else {_ccfcc .WriteString ("\u0044\u0061\u0074\u0065 n\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u000a"); -};if len (_bcdd .Reason )> 0{_ccfcc .WriteString (_e .Sprintf ("R\u0065\u0061\u0073\u006f\u006e\u003a\u0020\u0025\u0073\u000a",_bcdd .Reason ));}else {_ccfcc .WriteString ("N\u006f \u0072\u0065\u0061\u0073\u006f\u006e\u0020\u0073p\u0065\u0063\u0069\u0066ie\u0064\u000a"); -};if len (_bcdd .Location )> 0{_ccfcc .WriteString (_e .Sprintf ("\u004c\u006f\u0063\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u0073\u000a",_bcdd .Location ));}else {_ccfcc .WriteString ("\u004c\u006f\u0063at\u0069\u006f\u006e\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u000a"); -};if len (_bcdd .ContactInfo )> 0{_ccfcc .WriteString (_e .Sprintf ("\u0043\u006f\u006e\u0074\u0061\u0063\u0074\u0020\u0049\u006e\u0066\u006f:\u0020\u0025\u0073\u000a",_bcdd .ContactInfo ));}else {_ccfcc .WriteString ("C\u006f\u006e\u0074\u0061\u0063\u0074 \u0069\u006e\u0066\u006f\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063i\u0066i\u0065\u0064\u000a"); -};_ccfcc .WriteString (_e .Sprintf ("F\u0069\u0065\u006c\u0064\u0073\u003a\u0020\u0025\u0064\u000a",len (_bcdd .Fields )));if _bcdd .IsSigned {_ccfcc .WriteString ("S\u0069\u0067\u006e\u0065\u0064\u003a \u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020i\u0073\u0020\u0073i\u0067n\u0065\u0064\u000a"); -}else {_ccfcc .WriteString ("\u0053\u0069\u0067\u006eed\u003a\u0020\u004e\u006f\u0074\u0020\u0073\u0069\u0067\u006e\u0065\u0064\u000a");};if _bcdd .IsVerified {_ccfcc .WriteString ("\u0053\u0069\u0067n\u0061\u0074\u0075\u0072e\u0020\u0076\u0061\u006c\u0069\u0064\u0061t\u0069\u006f\u006e\u003a\u0020\u0049\u0073\u0020\u0076\u0061\u006c\u0069\u0064\u000a"); -}else {_ccfcc .WriteString ("\u0053\u0069\u0067\u006e\u0061\u0074u\u0072\u0065\u0020\u0076\u0061\u006c\u0069\u0064\u0061\u0074\u0069\u006f\u006e:\u0020\u0049\u0073\u0020\u0069\u006e\u0076a\u006c\u0069\u0064\u000a");};if _bcdd .IsTrusted {_ccfcc .WriteString ("\u0054\u0072\u0075\u0073\u0074\u0065\u0064\u003a\u0020\u0043\u0065\u0072\u0074\u0069\u0066i\u0063a\u0074\u0065\u0020\u0069\u0073\u0020\u0074\u0072\u0075\u0073\u0074\u0065\u0064\u000a"); -}else {_ccfcc .WriteString ("\u0054\u0072\u0075s\u0074\u0065\u0064\u003a \u0055\u006e\u0074\u0072\u0075\u0073\u0074e\u0064\u0020\u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u000a");};if !_bcdd .GeneralizedTime .IsZero (){_ccfcc .WriteString (_e .Sprintf ("G\u0065n\u0065\u0072\u0061\u006c\u0069\u007a\u0065\u0064T\u0069\u006d\u0065\u003a %\u0073\u000a",_bcdd .GeneralizedTime .String ())); -};if _bcdd .DiffResults !=nil {_ccfcc .WriteString (_e .Sprintf ("\u0064\u0069\u0066\u0066 i\u0073\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u003a\u0020\u0025v\u000a",_bcdd .DiffResults .IsPermitted ()));if len (_bcdd .DiffResults .Warnings )> 0{_ccfcc .WriteString ("\u004d\u0044\u0050\u0020\u0077\u0061\u0072\u006e\u0069n\u0067\u0073\u003a\u000a"); -for _ ,_acba :=range _bcdd .DiffResults .Warnings {_ccfcc .WriteString (_e .Sprintf ("\u0009\u0025\u0073\u000a",_acba ));};};if len (_bcdd .DiffResults .Errors )> 0{_ccfcc .WriteString ("\u004d\u0044\u0050 \u0065\u0072\u0072\u006f\u0072\u0073\u003a\u000a"); -for _ ,_aebca :=range _bcdd .DiffResults .Errors {_ccfcc .WriteString (_e .Sprintf ("\u0009\u0025\u0073\u000a",_aebca ));};};};if _bcdd .IsCrlFound {_ccfcc .WriteString ("R\u0065\u0076\u006f\u0063\u0061\u0074i\u006f\u006e\u0020\u0064\u0061\u0074\u0061\u003a\u0020C\u0052\u004c\u0020f\u006fu\u006e\u0064\u000a"); -}else {_ccfcc .WriteString ("\u0052\u0065\u0076o\u0063\u0061\u0074\u0069o\u006e\u0020\u0064\u0061\u0074\u0061\u003a \u0043\u0052\u004c\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u000a");};if _bcdd .IsOcspFound {_ccfcc .WriteString ("\u0052\u0065\u0076\u006fc\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061\u0074\u0061:\u0020O\u0043\u0053\u0050\u0020\u0066\u006f\u0075n\u0064\u000a"); -}else {_ccfcc .WriteString ("\u0052\u0065\u0076\u006f\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0061\u0074\u0061:\u0020O\u0043\u0053\u0050\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064\u000a");};return _ccfcc .String ();}; +// ToPdfObject converts date to a PDF string object. +func (_efadb *PdfDate )ToPdfObject ()_dg .PdfObject {_fdcee :=_b .Sprintf ("\u0044\u003a\u0025\u002e\u0034\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e2\u0064\u0025\u0063\u0025\u002e2\u0064\u0027%\u002e\u0032\u0064\u0027",_efadb ._bgfdb ,_efadb ._gbbge ,_efadb ._cbad ,_efadb ._cade ,_efadb ._ccgbg ,_efadb ._aacfe ,_efadb ._ggbdg ,_efadb ._bdde ,_efadb ._gafe ); +return _dg .MakeString (_fdcee );}; -// NewPdfAnnotationLink returns a new link annotation. -func NewPdfAnnotationLink ()*PdfAnnotationLink {_ebgb :=NewPdfAnnotation ();_fdeg :=&PdfAnnotationLink {};_fdeg .PdfAnnotation =_ebgb ;_ebgb .SetContext (_fdeg );return _fdeg ;};func _fdfeg (_agage _aff .PdfObject )(PdfFunction ,error ){_agage =_aff .ResolveReference (_agage ); -if _cfece ,_bbfed :=_agage .(*_aff .PdfObjectStream );_bbfed {_bdeba :=_cfece .PdfObjectDictionary ;_dbdad ,_aageg :=_bdeba .Get ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065").(*_aff .PdfObjectInteger );if !_aageg {_adg .Log .Error ("F\u0075\u006e\u0063\u0074\u0069\u006fn\u0054\u0079\u0070\u0065\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006di\u0073s\u0069\u006e\u0067"); -return nil ,_g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067");};if *_dbdad ==0{return _fdbfg (_cfece );}else if *_dbdad ==4{return _becdc (_cfece ); -}else {return nil ,_g .New ("i\u006e\u0076\u0061\u006cid\u0020f\u0075\u006e\u0063\u0074\u0069o\u006e\u0020\u0074\u0079\u0070\u0065");};}else if _abebf ,_cbbe :=_agage .(*_aff .PdfIndirectObject );_cbbe {_dcea ,_ecgaa :=_abebf .PdfObject .(*_aff .PdfObjectDictionary ); -if !_ecgaa {_adg .Log .Error ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e\u0020\u0049\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006eg\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -return nil ,_g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067");};_cegdc ,_ecgaa :=_dcea .Get ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065").(*_aff .PdfObjectInteger ); -if !_ecgaa {_adg .Log .Error ("F\u0075\u006e\u0063\u0074\u0069\u006fn\u0054\u0079\u0070\u0065\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006di\u0073s\u0069\u006e\u0067");return nil ,_g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067"); -};if *_cegdc ==2{return _geffg (_abebf );}else if *_cegdc ==3{return _efbb (_abebf );}else {return nil ,_g .New ("i\u006e\u0076\u0061\u006cid\u0020f\u0075\u006e\u0063\u0074\u0069o\u006e\u0020\u0074\u0079\u0070\u0065");};}else if _fecefa ,_daab :=_agage .(*_aff .PdfObjectDictionary ); -_daab {_gaage ,_efbg :=_fecefa .Get ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065").(*_aff .PdfObjectInteger );if !_efbg {_adg .Log .Error ("F\u0075\u006e\u0063\u0074\u0069\u006fn\u0054\u0079\u0070\u0065\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u006di\u0073s\u0069\u006e\u0067"); -return nil ,_g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074e\u0072 \u006f\u0072\u0020\u006d\u0069\u0073\u0073i\u006e\u0067");};if *_gaage ==2{return _geffg (_fecefa );}else if *_gaage ==3{return _efbb (_fecefa ); -}else {return nil ,_g .New ("i\u006e\u0076\u0061\u006cid\u0020f\u0075\u006e\u0063\u0074\u0069o\u006e\u0020\u0074\u0079\u0070\u0065");};}else {_adg .Log .Debug ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006e\u0020\u0054\u0079\u0070\u0065 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0023\u0076",_agage ); -return nil ,_g .New ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};}; +// ReplacePage replaces the original page to a new page. +func (_dbgcb *PdfAppender )ReplacePage (pageNum int ,page *PdfPage ){_bagc :=pageNum -1;for _acae :=range _dbgcb ._ggdd {if _acae ==_bagc {_fgdf :=page .Duplicate ();_dccea (_fgdf );_dbgcb ._ggdd [_acae ]=_fgdf ;};};};func (_fcbgb *pdfFontSimple )baseFields ()*fontCommon {return &_fcbgb .fontCommon }; +var ErrColorOutOfRange =_bf .New ("\u0063o\u006co\u0072\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065");func (_gbda *PdfReader )newPdfAnnotationWidgetFromDict (_efgad *_dg .PdfObjectDictionary )(*PdfAnnotationWidget ,error ){_cbbg :=PdfAnnotationWidget {}; +_cbbg .H =_efgad .Get ("\u0048");_cbbg .MK =_efgad .Get ("\u004d\u004b");_cbbg .A =_efgad .Get ("\u0041");_cbbg .AA =_efgad .Get ("\u0041\u0041");_cbbg .BS =_efgad .Get ("\u0042\u0053");_cbbg .Parent =_efgad .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"); +return &_cbbg ,nil ;}; -// PdfShadingType1 is a Function-based shading. -type PdfShadingType1 struct{*PdfShading ;Domain *_aff .PdfObjectArray ;Matrix *_aff .PdfObjectArray ;Function []PdfFunction ;}; +// SetPdfKeywords sets the Keywords attribute of the output PDF. +func SetPdfKeywords (keywords string ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_abbgf =keywords };func _fdfee (_becc _dg .PdfObject )(*PdfColorspaceDeviceN ,error ){_dddba :=NewPdfColorspaceDeviceN ();if _ceag ,_bcac :=_becc .(*_dg .PdfIndirectObject ); +_bcac {_dddba ._effag =_ceag ;};_becc =_dg .TraceToDirectObject (_becc );_ecbab ,_gdfgg :=_becc .(*_dg .PdfObjectArray );if !_gdfgg {return nil ,_b .Errorf ("\u0064\u0065\u0076\u0069\u0063\u0065\u004e\u0020\u0043\u0053\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0062j\u0065\u0063\u0074"); +};if _ecbab .Len ()!=4&&_ecbab .Len ()!=5{return nil ,_b .Errorf ("\u0064\u0065\u0076ic\u0065\u004e\u0020\u0043\u0053\u003a\u0020\u0049\u006ec\u006fr\u0072e\u0063t\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068");};_becc =_ecbab .Get (0); +_bbfa ,_gdfgg :=_becc .(*_dg .PdfObjectName );if !_gdfgg {return nil ,_b .Errorf ("\u0064\u0065\u0076i\u0063\u0065\u004e\u0020C\u0053\u003a\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020\u006e\u0061\u006d\u0065"); +};if *_bbfa !="\u0044e\u0076\u0069\u0063\u0065\u004e"{return nil ,_b .Errorf ("\u0064\u0065v\u0069\u0063\u0065\u004e\u0020\u0043\u0053\u003a\u0020\u0077\u0072\u006f\u006e\u0067\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020na\u006d\u0065");};_becc =_ecbab .Get (1); +_becc =_dg .TraceToDirectObject (_becc );_edcec ,_gdfgg :=_becc .(*_dg .PdfObjectArray );if !_gdfgg {return nil ,_b .Errorf ("\u0064\u0065\u0076i\u0063\u0065\u004e\u0020C\u0053\u003a\u0020\u0049\u006e\u0076\u0061l\u0069\u0064\u0020\u006e\u0061\u006d\u0065\u0073\u0020\u0061\u0072\u0072\u0061\u0079"); +};_dddba .ColorantNames =_edcec ;_becc =_ecbab .Get (2);_caeg ,_afdfa :=NewPdfColorspaceFromPdfObject (_becc );if _afdfa !=nil {return nil ,_afdfa ;};_dddba .AlternateSpace =_caeg ;_fffa ,_afdfa :=_agec (_ecbab .Get (3));if _afdfa !=nil {return nil ,_afdfa ; +};_dddba .TintTransform =_fffa ;if _ecbab .Len ()==5{_cgge ,_eefae :=_ecef (_ecbab .Get (4));if _eefae !=nil {return nil ,_eefae ;};_dddba .Attributes =_cgge ;};return _dddba ,nil ;}; -// NewPdfAction returns an initialized generic PDF action model. -func NewPdfAction ()*PdfAction {_egd :=&PdfAction {};_egd ._df =_aff .MakeIndirectObject (_aff .MakeDict ());return _egd ;}; +// GetSamples converts the raw byte slice into samples which are stored in a uint32 bit array. +// Each sample is represented by BitsPerComponent consecutive bits in the raw data. +// NOTE: The method resamples the image byte data before returning the result and +// this could lead to high memory usage, especially on large images. It should +// be avoided, when possible. It is recommended to access the Data field of the +// image directly or use the ColorAt method to extract individual pixels. +func (_ffca *Image )GetSamples ()[]uint32 {_cbccd :=_fcd .ResampleBytes (_ffca .Data ,int (_ffca .BitsPerComponent ));if _ffca .BitsPerComponent < 8{_cbccd =_ffca .samplesTrimPadding (_cbccd );};_ffgcc :=int (_ffca .Width )*int (_ffca .Height )*_ffca .ColorComponents ; +if len (_cbccd )< _ffgcc {_ag .Log .Debug ("\u0045r\u0072\u006fr\u003a\u0020\u0054o\u006f\u0020\u0066\u0065\u0077\u0020\u0073a\u006d\u0070\u006c\u0065\u0073\u0020(\u0067\u006f\u0074\u0020\u0025\u0064\u002c\u0020\u0065\u0078\u0070e\u0063\u0074\u0069\u006e\u0067\u0020\u0025\u0064\u0029",len (_cbccd ),_ffgcc ); +return _cbccd ;}else if len (_cbccd )> _ffgcc {_ag .Log .Debug ("\u0045r\u0072\u006fr\u003a\u0020\u0054o\u006f\u0020\u006d\u0061\u006e\u0079\u0020s\u0061\u006d\u0070\u006c\u0065\u0073 \u0028\u0067\u006f\u0074\u0020\u0025\u0064\u002c\u0020\u0065\u0078p\u0065\u0063\u0074\u0069\u006e\u0067\u0020\u0025\u0064",len (_cbccd ),_ffgcc ); +_cbccd =_cbccd [:_ffgcc ];};return _cbccd ;}; -// GetAction returns the PDF action for the annotation link. -func (_acfd *PdfAnnotationLink )GetAction ()(*PdfAction ,error ){if _acfd ._dea !=nil {return _acfd ._dea ,nil ;};if _acfd .A ==nil {return nil ,nil ;};if _acfd ._cdf ==nil {return nil ,nil ;};_afa ,_gdg :=_acfd ._cdf .loadAction (_acfd .A );if _gdg !=nil {return nil ,_gdg ; -};_acfd ._dea =_afa ;return _acfd ._dea ,nil ;};func (_ggdca *PdfColorspaceLab )String ()string {return "\u004c\u0061\u0062"}; +// DSS represents a Document Security Store dictionary. +// The DSS dictionary contains both global and signature specific validation +// information. The certificates and revocation data in the `Certs`, `OCSPs`, +// and `CRLs` fields can be used to validate any signature in the document. +// Additionally, the VRI entry contains validation data per signature. +// The keys in the VRI entry are calculated as upper(hex(sha1(sig.Contents))). +// The values are VRI dictionaries containing certificates and revocation +// information used for validating a single signature. +// See ETSI TS 102 778-4 V1.1.1 for more information. +type DSS struct{_agdcg *_dg .PdfIndirectObject ;Certs []*_dg .PdfObjectStream ;OCSPs []*_dg .PdfObjectStream ;CRLs []*_dg .PdfObjectStream ;VRI map[string ]*VRI ;_agbg map[string ]*_dg .PdfObjectStream ;_bggg map[string ]*_dg .PdfObjectStream ;_dcdf map[string ]*_dg .PdfObjectStream ; +};func (_fag *PdfReader )newPdfActionGotoEFromDict (_fbf *_dg .PdfObjectDictionary )(*PdfActionGoToE ,error ){_cdb ,_ege :=_bccf (_fbf .Get ("\u0046"));if _ege !=nil {return nil ,_ege ;};return &PdfActionGoToE {D :_fbf .Get ("\u0044"),NewWindow :_fbf .Get ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw"),T :_fbf .Get ("\u0054"),F :_cdb },nil ; +}; -// PdfOutputIntentType is the subtype of the given PdfOutputIntent. -type PdfOutputIntentType int ; +// ToPdfObject returns colorspace in a PDF object format [name stream] +func (_fcegf *PdfColorspaceICCBased )ToPdfObject ()_dg .PdfObject {_dgef :=&_dg .PdfObjectArray {};_dgef .Append (_dg .MakeName ("\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064"));var _gebb *_dg .PdfObjectStream ;if _fcegf ._dafg !=nil {_gebb =_fcegf ._dafg ; +}else {_gebb =&_dg .PdfObjectStream {};};_fceab :=_dg .MakeDict ();_fceab .Set ("\u004e",_dg .MakeInteger (int64 (_fcegf .N )));if _fcegf .Alternate !=nil {_fceab .Set ("\u0041l\u0074\u0065\u0072\u006e\u0061\u0074e",_fcegf .Alternate .ToPdfObject ());}; +if _fcegf .Metadata !=nil {_fceab .Set ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_fcegf .Metadata );};if _fcegf .Range !=nil {var _badd []_dg .PdfObject ;for _ ,_efaa :=range _fcegf .Range {_badd =append (_badd ,_dg .MakeFloat (_efaa ));};_fceab .Set ("\u0052\u0061\u006eg\u0065",_dg .MakeArray (_badd ...)); +};_fceab .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_fcegf .Data ))));_gebb .Stream =_fcegf .Data ;_gebb .PdfObjectDictionary =_fceab ;_dgef .Append (_gebb );if _fcegf ._fbdff !=nil {_fcegf ._fbdff .PdfObject =_dgef ;return _fcegf ._fbdff ; +};return _dgef ;}; -// GetPatternByName gets the pattern specified by keyName. Returns nil if not existing. -// The bool flag indicated whether it was found or not. -func (_cfgd *PdfPageResources )GetPatternByName (keyName _aff .PdfObjectName )(*PdfPattern ,bool ){if _cfgd .Pattern ==nil {return nil ,false ;};_feddg ,_fceff :=_aff .TraceToDirectObject (_cfgd .Pattern ).(*_aff .PdfObjectDictionary );if !_fceff {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0074t\u0065\u0072\u006e\u0020\u0065\u006e\u0074r\u0079\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064i\u0063\u0074\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_cfgd .Pattern ); -return nil ,false ;};if _eaegd :=_feddg .Get (keyName );_eaegd !=nil {_bbbb ,_bcgca :=_aebd (_eaegd );if _bcgca !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020f\u0061\u0069l\u0065\u0064\u0020\u0074\u006f\u0020\u006c\u006fa\u0064\u0020\u0070\u0064\u0066\u0020\u0070\u0061\u0074\u0074\u0065\u0072n\u003a\u0020\u0025\u0076",_bcgca ); -return nil ,false ;};return _bbbb ,true ;};return nil ,false ;}; +// ValidateSignatures validates digital signatures in the document. +func (_bdfff *PdfReader )ValidateSignatures (handlers []SignatureHandler )([]SignatureValidationResult ,error ){if _bdfff .AcroForm ==nil {return nil ,nil ;};if _bdfff .AcroForm .Fields ==nil {return nil ,nil ;};type sigFieldPair struct{_fbaba *PdfSignature ; +_ecfcf *PdfField ;_fgccg SignatureHandler ;};var _efcae []*sigFieldPair ;for _ ,_fcdff :=range _bdfff .AcroForm .AllFields (){if _fcdff .V ==nil {continue ;};if _eabe ,_bfecf :=_dg .GetDict (_fcdff .V );_bfecf {if _bcgcfb ,_bgcdg :=_dg .GetNameVal (_eabe .Get ("\u0054\u0079\u0070\u0065")); +_bgcdg &&(_bcgcfb =="\u0053\u0069\u0067"||_bcgcfb =="\u0044\u006f\u0063T\u0069\u006d\u0065\u0053\u0074\u0061\u006d\u0070"){_aegaa ,_gbdfad :=_dg .GetIndirect (_fcdff .V );if !_gbdfad {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0065\u0072\u0020\u0069s\u0020\u006e\u0069\u006c"); +return nil ,ErrTypeCheck ;};_dbbae ,_bdaba :=_bdfff .newPdfSignatureFromIndirect (_aegaa );if _bdaba !=nil {return nil ,_bdaba ;};var _bffdc SignatureHandler ;for _ ,_ecae :=range handlers {if _ecae .IsApplicable (_dbbae ){_bffdc =_ecae ;break ;};};_efcae =append (_efcae ,&sigFieldPair {_fbaba :_dbbae ,_ecfcf :_fcdff ,_fgccg :_bffdc }); +};};};var _eefgg []SignatureValidationResult ;for _ ,_dfae :=range _efcae {_fdggb :=SignatureValidationResult {IsSigned :true ,Fields :[]*PdfField {_dfae ._ecfcf }};if _dfae ._fgccg ==nil {_fdggb .Errors =append (_fdggb .Errors ,"\u0068a\u006ed\u006c\u0065\u0072\u0020\u006e\u006f\u0074\u0020\u0073\u0065\u0074"); +_eefgg =append (_eefgg ,_fdggb );continue ;};_afggg ,_bgaad :=_dfae ._fgccg .NewDigest (_dfae ._fbaba );if _bgaad !=nil {_fdggb .Errors =append (_fdggb .Errors ,"\u0064\u0069\u0067e\u0073\u0074\u0020\u0065\u0072\u0072\u006f\u0072",_bgaad .Error ());_eefgg =append (_eefgg ,_fdggb ); +continue ;};_eeff :=_dfae ._fbaba .ByteRange ;if _eeff ==nil {_fdggb .Errors =append (_fdggb .Errors ,"\u0042\u0079\u0074\u0065\u0052\u0061\u006e\u0067\u0065\u0020\u006e\u006ft\u0020\u0073\u0065\u0074");_eefgg =append (_eefgg ,_fdggb );continue ;};for _fgbce :=0; +_fgbce < _eeff .Len ();_fgbce =_fgbce +2{_dadgc ,_ :=_dg .GetNumberAsInt64 (_eeff .Get (_fgbce ));_bface ,_ :=_dg .GetIntVal (_eeff .Get (_fgbce +1));if _ ,_bgadcf :=_bdfff ._efcfa .Seek (_dadgc ,_cf .SeekStart );_bgadcf !=nil {return nil ,_bgadcf ;};_dgdef :=make ([]byte ,_bface ); +if _ ,_cfcef :=_bdfff ._efcfa .Read (_dgdef );_cfcef !=nil {return nil ,_cfcef ;};_afggg .Write (_dgdef );};var _bcgfd SignatureValidationResult ;if _gbcbe ,_gbade :=_dfae ._fgccg .(SignatureHandlerDocMDP );_gbade {_bcgfd ,_bgaad =_gbcbe .ValidateWithOpts (_dfae ._fbaba ,_afggg ,SignatureHandlerDocMDPParams {Parser :_bdfff ._baad }); +}else {_bcgfd ,_bgaad =_dfae ._fgccg .Validate (_dfae ._fbaba ,_afggg );};if _bgaad !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052: \u0025v\u0020\u0028\u0025\u0054\u0029 \u002d\u0020\u0073\u006b\u0069\u0070",_bgaad ,_dfae ._fgccg );_bcgfd .Errors =append (_bcgfd .Errors ,_bgaad .Error ()); +};_bcgfd .Name =_dfae ._fbaba .Name .Decoded ();_bcgfd .Reason =_dfae ._fbaba .Reason .Decoded ();if _dfae ._fbaba .M !=nil {_ddbgf ,_fadd :=NewPdfDate (_dfae ._fbaba .M .String ());if _fadd !=nil {_ag .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fadd ); +_bcgfd .Errors =append (_bcgfd .Errors ,_fadd .Error ());continue ;};_bcgfd .Date =_ddbgf ;};_bcgfd .ContactInfo =_dfae ._fbaba .ContactInfo .Decoded ();_bcgfd .Location =_dfae ._fbaba .Location .Decoded ();_bcgfd .Fields =_fdggb .Fields ;_eefgg =append (_eefgg ,_bcgfd ); +};return _eefgg ,nil ;}; // ToPdfObject implements interface PdfModel. -func (_ddd *PdfActionNamed )ToPdfObject ()_aff .PdfObject {_ddd .PdfAction .ToPdfObject ();_dbed :=_ddd ._df ;_dbf :=_dbed .PdfObject .(*_aff .PdfObjectDictionary );_dbf .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeNamed )));_dbf .SetIfNotNil ("\u004e",_ddd .N ); -return _dbed ;}; +func (_cbc *PdfActionThread )ToPdfObject ()_dg .PdfObject {_cbc .PdfAction .ToPdfObject ();_adg :=_cbc ._cbd ;_efb :=_adg .PdfObject .(*_dg .PdfObjectDictionary );_efb .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeThread )));if _cbc .F !=nil {_efb .Set ("\u0046",_cbc .F .ToPdfObject ()); +};_efb .SetIfNotNil ("\u0044",_cbc .D );_efb .SetIfNotNil ("\u0042",_cbc .B );return _adg ;}; -// PdfAnnotationTrapNet represents TrapNet annotations. -// (Section 12.5.6.21). -type PdfAnnotationTrapNet struct{*PdfAnnotation }; +// WriteToFile writes the output PDF to file. +func (_ceebg *PdfWriter )WriteToFile (outputFilePath string )error {_cafb ,_bffcc :=_eb .Create (outputFilePath );if _bffcc !=nil {return _bffcc ;};defer _cafb .Close ();return _ceebg .Write (_cafb );};func _ceafc (_fcca *_dg .PdfObjectArray )(float64 ,error ){_fgagfe ,_gedcdd :=_fcca .ToFloat64Array (); +if _gedcdd !=nil {_ag .Log .Debug ("\u0042\u0061\u0064\u0020\u004d\u0061\u0074\u0074\u0065\u0020\u0061\u0072\u0072\u0061\u0079:\u0020m\u0061\u0074\u0074\u0065\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fcca ,_gedcdd );};switch len (_fgagfe ){case 1:return _fgagfe [0],nil ; +case 3:_fcecc :=PdfColorspaceDeviceRGB {};_agebg ,_fafdd :=_fcecc .ColorFromFloats (_fgagfe );if _fafdd !=nil {return 0.0,_fafdd ;};return _agebg .(*PdfColorDeviceRGB ).ToGray ().Val (),nil ;case 4:_efaag :=PdfColorspaceDeviceCMYK {};_adebge ,_cdbege :=_efaag .ColorFromFloats (_fgagfe ); +if _cdbege !=nil {return 0.0,_cdbege ;};_gcdd ,_cdbege :=_efaag .ColorToRGB (_adebge .(*PdfColorDeviceCMYK ));if _cdbege !=nil {return 0.0,_cdbege ;};return _gcdd .(*PdfColorDeviceRGB ).ToGray ().Val (),nil ;};_gedcdd =_bf .New ("\u0062a\u0064 \u004d\u0061\u0074\u0074\u0065\u0020\u0063\u006f\u006c\u006f\u0072"); +_ag .Log .Error ("\u0074\u006f\u0047ra\u0079\u003a\u0020\u006d\u0061\u0074\u0074\u0065\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fcca ,_gedcdd );return 0.0,_gedcdd ;}; -// RunesToCharcodeBytes maps the provided runes to charcode bytes and it -// returns the resulting slice of bytes, along with the number of runes which -// could not be converted. If the number of misses is 0, all runes were -// successfully converted. -func (_aedfe *PdfFont )RunesToCharcodeBytes (data []rune )([]byte ,int ){var _bbfdc []_eee .TextEncoder ;var _dbga _eee .CMapEncoder ;if _cccbg :=_aedfe .baseFields ()._dcad ;_cccbg !=nil {_dbga =_eee .NewCMapEncoder ("",nil ,_cccbg );};_bcebf :=_aedfe .Encoder (); -if _bcebf !=nil {switch _egfdb :=_bcebf .(type ){case _eee .SimpleEncoder :_cccfb :=_egfdb .BaseName ();if _ ,_efede :=_fgdgb [_cccfb ];_efede {_bbfdc =append (_bbfdc ,_bcebf );};};};if len (_bbfdc )==0{if _aedfe .baseFields ()._dcad !=nil {_bbfdc =append (_bbfdc ,_dbga ); -};if _bcebf !=nil {_bbfdc =append (_bbfdc ,_bcebf );};};var _efadb _af .Buffer ;var _abade int ;for _ ,_cggff :=range data {var _eceecg bool ;for _ ,_cadd :=range _bbfdc {if _agfb :=_cadd .Encode (string (_cggff ));len (_agfb )> 0{_efadb .Write (_agfb ); -_eceecg =true ;break ;};};if !_eceecg {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020f\u0061\u0069\u006ce\u0064\u0020\u0074\u006f \u006d\u0061\u0070\u0020\u0072\u0075\u006e\u0065\u0020\u0060\u0025\u002b\u0071\u0060\u0020\u0074\u006f\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065",_cggff ); -_abade ++;};};if _abade !=0{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0061\u006cl\u0020\u0072\u0075\u006e\u0065\u0073\u0020\u0074\u006f\u0020\u0063\u0068\u0061\u0072c\u006fd\u0065\u0073\u002e\u000a"+"\u0009\u006e\u0075\u006d\u0052\u0075\u006e\u0065\u0073\u003d\u0025d\u0020\u006e\u0075\u006d\u004d\u0069\u0073\u0073\u0065\u0073=\u0025\u0064\u000a"+"\t\u0066\u006f\u006e\u0074=%\u0073 \u0065\u006e\u0063\u006f\u0064e\u0072\u0073\u003d\u0025\u002b\u0076",len (data ),_abade ,_aedfe ,_bbfdc ); -};return _efadb .Bytes (),_abade ;}; +// GetNumComponents returns the number of color components. +func (_eca *PdfColorspaceICCBased )GetNumComponents ()int {return _eca .N }; + +// ToPdfObject returns the PDF representation of the tiling pattern. +func (_cbec *PdfTilingPattern )ToPdfObject ()_dg .PdfObject {_cbec .PdfPattern .ToPdfObject ();_aaga :=_cbec .getDict ();if _cbec .PaintType !=nil {_aaga .Set ("\u0050a\u0069\u006e\u0074\u0054\u0079\u0070e",_cbec .PaintType );};if _cbec .TilingType !=nil {_aaga .Set ("\u0054\u0069\u006c\u0069\u006e\u0067\u0054\u0079\u0070\u0065",_cbec .TilingType ); +};if _cbec .BBox !=nil {_aaga .Set ("\u0042\u0042\u006f\u0078",_cbec .BBox .ToPdfObject ());};if _cbec .XStep !=nil {_aaga .Set ("\u0058\u0053\u0074e\u0070",_cbec .XStep );};if _cbec .YStep !=nil {_aaga .Set ("\u0059\u0053\u0074e\u0070",_cbec .YStep ); +};if _cbec .Resources !=nil {_aaga .Set ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_cbec .Resources .ToPdfObject ());};if _cbec .Matrix !=nil {_aaga .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_cbec .Matrix );};return _cbec ._eacce ;};func _eabg (_gdee *_dg .PdfObjectDictionary )(*PdfShadingType6 ,error ){_adfbbe :=PdfShadingType6 {}; +_ebacf :=_gdee .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065");if _ebacf ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_baeeec ,_cdcdfg :=_ebacf .(*_dg .PdfObjectInteger );if !_cdcdfg {_ag .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_ebacf ); +return nil ,_dg .ErrTypeError ;};_adfbbe .BitsPerCoordinate =_baeeec ;_ebacf =_gdee .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _ebacf ==nil {_ag .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); +return nil ,ErrRequiredAttributeMissing ;};_baeeec ,_cdcdfg =_ebacf .(*_dg .PdfObjectInteger );if !_cdcdfg {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_ebacf ); +return nil ,_dg .ErrTypeError ;};_adfbbe .BitsPerComponent =_baeeec ;_ebacf =_gdee .Get ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067");if _ebacf ==nil {_ag .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065r\u0046\u006c\u0061\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_baeeec ,_cdcdfg =_ebacf .(*_dg .PdfObjectInteger );if !_cdcdfg {_ag .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072F\u006c\u0061\u0067\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_ebacf ); +return nil ,_dg .ErrTypeError ;};_adfbbe .BitsPerComponent =_baeeec ;_ebacf =_gdee .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _ebacf ==nil {_ag .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); +return nil ,ErrRequiredAttributeMissing ;};_cefcf ,_cdcdfg :=_ebacf .(*_dg .PdfObjectArray );if !_cdcdfg {_ag .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_ebacf ); +return nil ,_dg .ErrTypeError ;};_adfbbe .Decode =_cefcf ;if _gbafgc :=_gdee .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_gbafgc !=nil {_adfbbe .Function =[]PdfFunction {};if _eedec ,_ddada :=_gbafgc .(*_dg .PdfObjectArray );_ddada {for _ ,_aabg :=range _eedec .Elements (){_cfdgfg ,_cbgdd :=_agec (_aabg ); +if _cbgdd !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_cbgdd );return nil ,_cbgdd ;};_adfbbe .Function =append (_adfbbe .Function ,_cfdgfg ); +};}else {_fcddf ,_dgdfd :=_agec (_gbafgc );if _dgdfd !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_dgdfd );return nil ,_dgdfd ; +};_adfbbe .Function =append (_adfbbe .Function ,_fcddf );};};return &_adfbbe ,nil ;};func _dcdd (_ageca _cf .ReadSeeker ,_ebafd *ReaderOpts ,_aaab bool ,_aaaga string )(*PdfReader ,error ){if _ebafd ==nil {_ebafd =NewReaderOpts ();};_ccgb :=*_ebafd ;_bcfga :=&PdfReader {_efcfa :_ageca ,_addfg :map[_dg .PdfObject ]struct{}{},_cadfa :_deag (),_dadcef :_ebafd .LazyLoad ,_cfbbb :_ebafd .ComplianceMode ,_eadef :_aaab ,_gcecfe :&_ccgb }; +_cbdf ,_faeea :=_aeegd ("\u0072");if _faeea !=nil {return nil ,_faeea ;};_faeea =_cfb .Track (_cbdf ,_aaaga );if _faeea !=nil {return nil ,_faeea ;};_bcfga ._aafgg =_cbdf ;var _fcagff *_dg .PdfParser ;if !_bcfga ._cfbbb {_fcagff ,_faeea =_dg .NewParser (_ageca ); +}else {_fcagff ,_faeea =_dg .NewCompliancePdfParser (_ageca );};if _faeea !=nil {return nil ,_faeea ;};_bcfga ._baad =_fcagff ;_afccb ,_faeea :=_bcfga .IsEncrypted ();if _faeea !=nil {return nil ,_faeea ;};if !_afccb {_faeea =_bcfga .loadStructure ();if _faeea !=nil {return nil ,_faeea ; +};}else if _aaab {_afbde ,_agfag :=_bcfga .Decrypt ([]byte (_ebafd .Password ));if _agfag !=nil {return nil ,_agfag ;};if !_afbde {return nil ,_bf .New ("\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f \u0064\u0065c\u0072\u0079\u0070\u0074\u0020\u0070\u0061\u0073\u0073w\u006f\u0072\u0064\u0020p\u0072\u006f\u0074\u0065\u0063\u0074\u0065\u0064\u0020\u0066\u0069\u006c\u0065\u0020\u002d\u0020\u006e\u0065\u0065\u0064\u0020\u0074\u006f\u0020\u0073\u0070\u0065\u0063\u0069\u0066y\u0020\u0070\u0061s\u0073\u0020\u0074\u006f\u0020\u0044\u0065\u0063\u0072\u0079\u0070\u0074"); +};};_bcfga ._ggafe =make (map[*PdfReader ]*PdfReader );_bcfga ._aggag =make ([]*PdfReader ,_fcagff .GetRevisionNumber ());return _bcfga ,nil ;}; + +// PdfAnnotationWidget represents Widget annotations. +// Note: Widget annotations are used to display form fields. +// (Section 12.5.6.19). +type PdfAnnotationWidget struct{*PdfAnnotation ;H _dg .PdfObject ;MK _dg .PdfObject ;A _dg .PdfObject ;AA _dg .PdfObject ;BS _dg .PdfObject ;Parent _dg .PdfObject ;_cgg *PdfField ;_dgac bool ;};func _caff (_debac *_dg .PdfObjectDictionary )(*PdfShadingType3 ,error ){_eegabg :=PdfShadingType3 {}; +_ddccb :=_debac .Get ("\u0043\u006f\u006f\u0072\u0064\u0073");if _ddccb ==nil {_ag .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0043\u006f\u006f\u0072\u0064\u0073"); +return nil ,ErrRequiredAttributeMissing ;};_cecfb ,_fdgff :=_ddccb .(*_dg .PdfObjectArray );if !_fdgff {_ag .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_ddccb ); +return nil ,_dg .ErrTypeError ;};if _cecfb .Len ()!=6{_ag .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0036\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_cecfb .Len ());return nil ,ErrInvalidAttribute ; +};_eegabg .Coords =_cecfb ;if _egaeg :=_debac .Get ("\u0044\u006f\u006d\u0061\u0069\u006e");_egaeg !=nil {_egaeg =_dg .TraceToDirectObject (_egaeg );_cbded ,_addbcf :=_egaeg .(*_dg .PdfObjectArray );if !_addbcf {_ag .Log .Debug ("\u0044\u006f\u006d\u0061i\u006e\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_egaeg ); +return nil ,_dg .ErrTypeError ;};_eegabg .Domain =_cbded ;};_ddccb =_debac .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _ddccb ==nil {_ag .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); +return nil ,ErrRequiredAttributeMissing ;};_eegabg .Function =[]PdfFunction {};if _ggdda ,_bfcce :=_ddccb .(*_dg .PdfObjectArray );_bfcce {for _ ,_babca :=range _ggdda .Elements (){_bfcbg ,_fdgad :=_agec (_babca );if _fdgad !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_fdgad ); +return nil ,_fdgad ;};_eegabg .Function =append (_eegabg .Function ,_bfcbg );};}else {_gfbbb ,_cdcdf :=_agec (_ddccb );if _cdcdf !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_cdcdf ); +return nil ,_cdcdf ;};_eegabg .Function =append (_eegabg .Function ,_gfbbb );};if _cagfb :=_debac .Get ("\u0045\u0078\u0074\u0065\u006e\u0064");_cagfb !=nil {_cagfb =_dg .TraceToDirectObject (_cagfb );_aeaa ,_geacb :=_cagfb .(*_dg .PdfObjectArray );if !_geacb {_ag .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_cagfb ); +return nil ,_dg .ErrTypeError ;};if _aeaa .Len ()!=2{_ag .Log .Debug ("\u0045\u0078\u0074\u0065n\u0064\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0032\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_aeaa .Len ());return nil ,ErrInvalidAttribute ; +};_eegabg .Extend =_aeaa ;};return &_eegabg ,nil ;}; -// PdfAnnotation3D represents 3D annotations. -// (Section 13.6.2). -type PdfAnnotation3D struct{*PdfAnnotation ;T3DD _aff .PdfObject ;T3DV _aff .PdfObject ;T3DA _aff .PdfObject ;T3DI _aff .PdfObject ;T3DB _aff .PdfObject ;}; +// ToPdfObject implements interface PdfModel. +func (_dfga *PdfActionRendition )ToPdfObject ()_dg .PdfObject {_dfga .PdfAction .ToPdfObject ();_cbbd :=_dfga ._cbd ;_fed :=_cbbd .PdfObject .(*_dg .PdfObjectDictionary );_fed .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeRendition )));_fed .SetIfNotNil ("\u0052",_dfga .R ); +_fed .SetIfNotNil ("\u0041\u004e",_dfga .AN );_fed .SetIfNotNil ("\u004f\u0050",_dfga .OP );_fed .SetIfNotNil ("\u004a\u0053",_dfga .JS );return _cbbd ;}; -// L returns the value of the L component of the color. -func (_fgag *PdfColorLab )L ()float64 {return _fgag [0]}; +// NewBorderStyle returns an initialized PdfBorderStyle. +func NewBorderStyle ()*PdfBorderStyle {_begge :=&PdfBorderStyle {};return _begge };func (_cddg *PdfReader )newPdfAnnotationProjectionFromDict (_fdfa *_dg .PdfObjectDictionary )(*PdfAnnotationProjection ,error ){_aegab :=&PdfAnnotationProjection {};_dedc ,_ddce :=_cddg .newPdfAnnotationMarkupFromDict (_fdfa ); +if _ddce !=nil {return nil ,_ddce ;};_aegab .PdfAnnotationMarkup =_dedc ;return _aegab ,nil ;};func _bbgcf (_dgbe ,_becbf string )string {if _ga .Contains (_dgbe ,"\u002b"){_faeb :=_ga .Split (_dgbe ,"\u002b");if len (_faeb )==2{_dgbe =_faeb [1];};};return _becbf +"\u002b"+_dgbe ; +}; -// A PdfPattern can represent a Pattern, either a tiling pattern or a shading pattern. -// Note that all patterns shall be treated as colours; a Pattern colour space shall be established with the CS or cs -// operator just like other colour spaces, and a particular pattern shall be installed as the current colour with the -// SCN or scn operator. -type PdfPattern struct{ +// GetXObjectByName gets XObject by name. +func (_abefd *PdfPage )GetXObjectByName (name _dg .PdfObjectName )(_dg .PdfObject ,bool ){_ecgg ,_dcgee :=_abefd .Resources .XObject .(*_dg .PdfObjectDictionary );if !_dcgee {return nil ,false ;};if _ccbcg :=_ecgg .Get (name );_ccbcg !=nil {return _ccbcg ,true ; +};return nil ,false ;}; -// Type: Pattern -PatternType int64 ;_abbe PdfModel ;_cfegc _aff .PdfObject ;}; +// DecodeArray returns the range of color component values in the Lab colorspace. +func (_ffbbe *PdfColorspaceLab )DecodeArray ()[]float64 {_dfcac :=[]float64 {0,100};if _ffbbe .Range !=nil &&len (_ffbbe .Range )==4{_dfcac =append (_dfcac ,_ffbbe .Range ...);}else {_dfcac =append (_dfcac ,-100,100,-100,100);};return _dfcac ;}; -// PdfColorspace interface defines the common methods of a PDF colorspace. -// The colorspace defines the data storage format for each color and color representation. -// -// Device based colorspace, specified by name -// - /DeviceGray -// - /DeviceRGB -// - /DeviceCMYK -// -// CIE based colorspace specified by [name, dictionary] -// - [/CalGray dict] -// - [/CalRGB dict] -// - [/Lab dict] -// - [/ICCBased dict] -// -// Special colorspaces -// - /Pattern -// - /Indexed -// - /Separation -// - /DeviceN -// -// Work is in progress to support all colorspaces. At the moment ICCBased color spaces fall back to the alternate -// colorspace which works OK in most cases. For full color support, will need fully featured ICC support. -type PdfColorspace interface{ +// SetVersion sets the PDF version of the output file. +func (_gcadg *PdfWriter )SetVersion (majorVersion ,minorVersion int ){_gcadg ._efacd .Major =majorVersion ;_gcadg ._efacd .Minor =minorVersion ;};func _bbece ()string {_fgefgf .Lock ();defer _fgefgf .Unlock ();return _abbgf }; -// String returns the PdfColorspace's name. -String ()string ; +// NewPdfActionMovie returns a new "movie" action. +func NewPdfActionMovie ()*PdfActionMovie {_ede :=NewPdfAction ();_fa :=&PdfActionMovie {};_fa .PdfAction =_ede ;_ede .SetContext (_fa );return _fa ;}; -// ImageToRGB converts an Image in a given PdfColorspace to an RGB image. -ImageToRGB (Image )(Image ,error ); +// ToPdfObject implements interface PdfModel. +func (_bcf *PdfActionSetOCGState )ToPdfObject ()_dg .PdfObject {_bcf .PdfAction .ToPdfObject ();_ccdd :=_bcf ._cbd ;_dda :=_ccdd .PdfObject .(*_dg .PdfObjectDictionary );_dda .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeSetOCGState )));_dda .SetIfNotNil ("\u0053\u0074\u0061t\u0065",_bcf .State ); +_dda .SetIfNotNil ("\u0050\u0072\u0065\u0073\u0065\u0072\u0076\u0065\u0052\u0042",_bcf .PreserveRB );return _ccdd ;}; -// ColorToRGB converts a single color in a given PdfColorspace to an RGB color. -ColorToRGB (_dcga PdfColor )(PdfColor ,error ); +// MergePageWith appends page content to source Pdf file page content. +func (_bfgd *PdfAppender )MergePageWith (pageNum int ,page *PdfPage )error {_bdea :=pageNum -1;var _ddea *PdfPage ;for _edgd ,_bcgfa :=range _bfgd ._ggdd {if _edgd ==_bdea {_ddea =_bcgfa ;};};if _ddea ==nil {return _b .Errorf ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0073o\u0075\u0072\u0063\u0065\u0020\u0064o\u0063\u0075\u006de\u006e\u0074",pageNum ); +};if _ddea ._cggbe !=nil &&_ddea ._cggbe .GetParser ()==_bfgd ._debg ._baad {_ddea =_ddea .Duplicate ();_bfgd ._ggdd [_bdea ]=_ddea ;};page =page .Duplicate ();_dccea (page );_bgcce :=_fgea (_ddea );_caf :=_fgea (page );_bfcc :=make (map[_dg .PdfObjectName ]_dg .PdfObjectName ); +for _ebad :=range _caf {if _ ,_aeae :=_bgcce [_ebad ];_aeae {for _eee :=1;true ;_eee ++{_decc :=_dg .PdfObjectName (string (_ebad )+_fbb .Itoa (_eee ));if _ ,_bffe :=_bgcce [_decc ];!_bffe {_bfcc [_ebad ]=_decc ;break ;};};};};_cffa ,_fafd :=page .GetContentStreams (); +if _fafd !=nil {return _fafd ;};_baef ,_fafd :=_ddea .GetContentStreams ();if _fafd !=nil {return _fafd ;};for _efeb ,_eaaf :=range _cffa {for _cgfb ,_gfce :=range _bfcc {_eaaf =_ga .Replace (_eaaf ,"\u002f"+string (_cgfb ),"\u002f"+string (_gfce ),-1); +};_cffa [_efeb ]=_eaaf ;};_baef =append (_baef ,_cffa ...);if _gagdg :=_ddea .SetContentStreams (_baef ,_dg .NewFlateEncoder ());_gagdg !=nil {return _gagdg ;};_ddea ._cadgg =append (_ddea ._cadgg ,page ._cadgg ...);if _ddea .Resources ==nil {_ddea .Resources =NewPdfPageResources (); +};if page .Resources !=nil {_ddea .Resources .Font =_bfgd .mergeResources (_ddea .Resources .Font ,page .Resources .Font ,_bfcc );_ddea .Resources .XObject =_bfgd .mergeResources (_ddea .Resources .XObject ,page .Resources .XObject ,_bfcc );_ddea .Resources .Properties =_bfgd .mergeResources (_ddea .Resources .Properties ,page .Resources .Properties ,_bfcc ); +if _ddea .Resources .ProcSet ==nil {_ddea .Resources .ProcSet =page .Resources .ProcSet ;};_ddea .Resources .Shading =_bfgd .mergeResources (_ddea .Resources .Shading ,page .Resources .Shading ,_bfcc );_ddea .Resources .ExtGState =_bfgd .mergeResources (_ddea .Resources .ExtGState ,page .Resources .ExtGState ,_bfcc ); +};_ggcd ,_fafd :=_ddea .GetMediaBox ();if _fafd !=nil {return _fafd ;};_fdfe ,_fafd :=page .GetMediaBox ();if _fafd !=nil {return _fafd ;};var _gdb bool ;if _ggcd .Llx > _fdfe .Llx {_ggcd .Llx =_fdfe .Llx ;_gdb =true ;};if _ggcd .Lly > _fdfe .Lly {_ggcd .Lly =_fdfe .Lly ; +_gdb =true ;};if _ggcd .Urx < _fdfe .Urx {_ggcd .Urx =_fdfe .Urx ;_gdb =true ;};if _ggcd .Ury < _fdfe .Ury {_ggcd .Ury =_fdfe .Ury ;_gdb =true ;};if _gdb {_ddea .MediaBox =_ggcd ;};return nil ;}; -// GetNumComponents returns the number of components in the PdfColorspace. -GetNumComponents ()int ; +// ColorToRGB converts a Lab color to an RGB color. +func (_gegb *PdfColorspaceLab )ColorToRGB (color PdfColor )(PdfColor ,error ){_bage :=func (_bgad float64 )float64 {if _bgad >=6.0/29{return _bgad *_bgad *_bgad ;};return 108.0/841*(_bgad -4.0/29.0);};_ddbdf ,_gecgb :=color .(*PdfColorLab );if !_gecgb {_ag .Log .Debug ("\u0069\u006e\u0070\u0075t \u0063\u006f\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u006c\u0061\u0062"); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};LStar :=_ddbdf .L ();AStar :=_ddbdf .A ();BStar :=_ddbdf .B ();L :=(LStar +16)/116+AStar /500;M :=(LStar +16)/116;N :=(LStar +16)/116-BStar /200; +X :=_gegb .WhitePoint [0]*_bage (L );Y :=_gegb .WhitePoint [1]*_bage (M );Z :=_gegb .WhitePoint [2]*_bage (N );_eadda :=3.240479*X +-1.537150*Y +-0.498535*Z ;_fdgb :=-0.969256*X +1.875992*Y +0.041556*Z ;_gceda :=0.055648*X +-0.204043*Y +1.057311*Z ;_eadda =_cg .Min (_cg .Max (_eadda ,0),1.0); +_fdgb =_cg .Min (_cg .Max (_fdgb ,0),1.0);_gceda =_cg .Min (_cg .Max (_gceda ,0),1.0);return NewPdfColorDeviceRGB (_eadda ,_fdgb ,_gceda ),nil ;}; -// ToPdfObject returns a PdfObject representation of the PdfColorspace. -ToPdfObject ()_aff .PdfObject ; +// NewPdfActionGoTo3DView returns a new "goTo3DView" action. +func NewPdfActionGoTo3DView ()*PdfActionGoTo3DView {_beg :=NewPdfAction ();_bgc :=&PdfActionGoTo3DView {};_bgc .PdfAction =_beg ;_beg .SetContext (_bgc );return _bgc ;};func _ebbce (_cfgcc *PdfField ,_gdfcc _dg .PdfObject )error {switch _cfgcc .GetContext ().(type ){case *PdfFieldText :switch _dggf :=_gdfcc .(type ){case *_dg .PdfObjectName :_cagdc :=_dggf ; +_ag .Log .Debug ("\u0055\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u003a\u0020\u0047\u006f\u0074 \u0056\u0020\u0061\u0073\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u003e\u0020c\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0074\u006f s\u0074\u0072\u0069\u006e\u0067\u0020\u0027\u0025\u0073\u0027",_cagdc .String ()); +_cfgcc .V =_dg .MakeEncodedString (_dggf .String (),true );case *_dg .PdfObjectString :_cfgcc .V =_dg .MakeEncodedString (_dggf .String (),true );default:_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0056\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054\u0020\u0028\u0025\u0023\u0076\u0029",_dggf ,_dggf ); +};case *PdfFieldButton :switch _gdfcc .(type ){case *_dg .PdfObjectName :if len (_gdfcc .String ())> 0{_cfgcc .V =_gdfcc ;_gcab (_cfgcc ,_gdfcc );};case *_dg .PdfObjectString :if len (_gdfcc .String ())> 0{_cfgcc .V =_dg .MakeName (_gdfcc .String ());_gcab (_cfgcc ,_cfgcc .V ); +};default:_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u004e\u0045\u0058P\u0045\u0043\u0054\u0045\u0044\u0020\u0025\u0073\u0020\u002d>\u0020\u0025\u0076",_cfgcc .PartialName (),_gdfcc );_cfgcc .V =_gdfcc ;};case *PdfFieldChoice :switch _gdfcc .(type ){case *_dg .PdfObjectName :if len (_gdfcc .String ())> 0{_cfgcc .V =_dg .MakeString (_gdfcc .String ()); +_gcab (_cfgcc ,_gdfcc );};case *_dg .PdfObjectString :if len (_gdfcc .String ())> 0{_cfgcc .V =_gdfcc ;_gcab (_cfgcc ,_dg .MakeName (_gdfcc .String ()));};default:_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u004e\u0045\u0058P\u0045\u0043\u0054\u0045\u0044\u0020\u0025\u0073\u0020\u002d>\u0020\u0025\u0076",_cfgcc .PartialName (),_gdfcc ); +_cfgcc .V =_gdfcc ;};case *PdfFieldSignature :_ag .Log .Debug ("\u0054\u004f\u0044\u004f\u003a \u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0061\u0070\u0070e\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0079\u0065\u0074\u003a\u0020\u0025\u0073\u002f\u0025v",_cfgcc .PartialName (),_gdfcc ); +};return nil ;}; -// ColorFromPdfObjects returns a PdfColor in the given PdfColorspace from an array of PdfObject where each -// PdfObject represents a numeric value. -ColorFromPdfObjects (_abeb []_aff .PdfObject )(PdfColor ,error ); +// SetOpenAction sets the OpenAction in the PDF catalog. +// The value shall be either an array defining a destination (12.3.2 "Destinations" PDF32000_2008), +// or an action dictionary representing an action (12.6 "Actions" PDF32000_2008). +func (_fbfac *PdfWriter )SetOpenAction (dest _dg .PdfObject )error {if dest ==nil ||_dg .IsNullObject (dest ){return nil ;};_fbfac ._ecdf .Set ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e",dest );return _fbfac .addObjects (dest );}; -// ColorFromFloats returns a new PdfColor based on input color components for a given PdfColorspace. -ColorFromFloats (_bcf []float64 )(PdfColor ,error ); +// Decrypt decrypts the PDF file with a specified password. Also tries to +// decrypt with an empty password. Returns true if successful, +// false otherwise. +func (_ddaa *PdfReader )Decrypt (password []byte )(bool ,error ){_ccbec ,_ebege :=_ddaa ._baad .Decrypt (password );if _ebege !=nil {return false ,_ebege ;};if !_ccbec {return false ,nil ;};_ebege =_ddaa .loadStructure ();if _ebege !=nil {_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f \u006co\u0061d\u0020s\u0074\u0072\u0075\u0063\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",_ebege ); +return false ,_ebege ;};return true ,nil ;}; -// DecodeArray returns the Decode array for the PdfColorSpace, i.e. the range of each component. -DecodeArray ()[]float64 ;};func (_ecfdg *Image )samplesAddPadding (_ggfaf []uint32 )[]uint32 {_gbbdd :=_gd .BytesPerLine (int (_ecfdg .Width ),int (_ecfdg .BitsPerComponent ),_ecfdg .ColorComponents )*(8/int (_ecfdg .BitsPerComponent ));_becgd :=_gbbdd *int (_ecfdg .Height ); -if len (_ggfaf )==_becgd {return _ggfaf ;};_gdaeed :=make ([]uint32 ,_becgd );_ebcdg :=int (_ecfdg .Width )*_ecfdg .ColorComponents ;for _bcegf :=0;_bcegf < int (_ecfdg .Height );_bcegf ++{_fdca :=_bcegf *int (_ecfdg .Width );_bgbbf :=_bcegf *_gbbdd ;for _deca :=0; -_deca < _ebcdg ;_deca ++{_gdaeed [_bgbbf +_deca ]=_ggfaf [_fdca +_deca ];};};return _gdaeed ;};func (_ebgaa *PdfPattern )getDict ()*_aff .PdfObjectDictionary {if _cefab ,_geddg :=_ebgaa ._cfegc .(*_aff .PdfIndirectObject );_geddg {_acafad ,_bfdae :=_cefab .PdfObject .(*_aff .PdfObjectDictionary ); -if !_bfdae {return nil ;};return _acafad ;}else if _gfbda ,_gaefc :=_ebgaa ._cfegc .(*_aff .PdfObjectStream );_gaefc {return _gfbda .PdfObjectDictionary ;}else {_adg .Log .Debug ("\u0054r\u0079\u0069\u006e\u0067\u0020\u0074\u006f a\u0063\u0063\u0065\u0073\u0073\u0020\u0070\u0061\u0074\u0074\u0065\u0072\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0079\u0020\u006f\u0066\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0062j\u0065\u0063t \u0074\u0079\u0070e\u0020\u0028\u0025\u0054\u0029",_ebgaa ._cfegc ); -return nil ;};}; +// HasXObjectByName checks if has XObject resource by name. +func (_caag *PdfPage )HasXObjectByName (name _dg .PdfObjectName )bool {_adfg ,_caegc :=_caag .Resources .XObject .(*_dg .PdfObjectDictionary );if !_caegc {return false ;};if _aecb :=_adfg .Get (name );_aecb !=nil {return true ;};return false ;}; -// ToPdfObject implements interface PdfModel. -// Note: Call the sub-annotation's ToPdfObject to set both the generic and non-generic information. -func (_aacag *PdfAnnotation )ToPdfObject ()_aff .PdfObject {_afab :=_aacag ._ccfb ;_cacg :=_afab .PdfObject .(*_aff .PdfObjectDictionary );_cacg .Clear ();_cacg .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0041\u006e\u006eo\u0074"));_cacg .SetIfNotNil ("\u0052\u0065\u0063\u0074",_aacag .Rect ); -_cacg .SetIfNotNil ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_aacag .Contents );_cacg .SetIfNotNil ("\u0050",_aacag .P );_cacg .SetIfNotNil ("\u004e\u004d",_aacag .NM );_cacg .SetIfNotNil ("\u004d",_aacag .M );_cacg .SetIfNotNil ("\u0046",_aacag .F ); -_cacg .SetIfNotNil ("\u0041\u0050",_aacag .AP );_cacg .SetIfNotNil ("\u0041\u0053",_aacag .AS );_cacg .SetIfNotNil ("\u0042\u006f\u0072\u0064\u0065\u0072",_aacag .Border );_cacg .SetIfNotNil ("\u0043",_aacag .C );_cacg .SetIfNotNil ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074",_aacag .StructParent ); -_cacg .SetIfNotNil ("\u004f\u0043",_aacag .OC );return _afab ;}; +// GetContainingPdfObject returns the container of the DSS (indirect object). +func (_cacb *DSS )GetContainingPdfObject ()_dg .PdfObject {return _cacb ._agdcg };func (_gcf *PdfReader )newPdfActionGotoFromDict (_baf *_dg .PdfObjectDictionary )(*PdfActionGoTo ,error ){return &PdfActionGoTo {D :_baf .Get ("\u0044")},nil ;}; -// IsColored specifies if the pattern is colored. -func (_eabca *PdfTilingPattern )IsColored ()bool {if _eabca .PaintType !=nil &&*_eabca .PaintType ==1{return true ;};return false ;}; +// Optimizer is the interface that performs optimization of PDF object structure for output writing. +// +// Optimize receives a slice of input `objects`, performs optimization, including removing, replacing objects and +// output the optimized slice of objects. +type Optimizer interface{Optimize (_egffgc []_dg .PdfObject )([]_dg .PdfObject ,error );}; -// SetImageHandler sets the image handler used by the package. -func SetImageHandler (imgHandling ImageHandler ){ImageHandling =imgHandling };func (_ddgc *PdfReader )newPdfAnnotationHighlightFromDict (_cagd *_aff .PdfObjectDictionary )(*PdfAnnotationHighlight ,error ){_bbde :=PdfAnnotationHighlight {};_baee ,_bdaf :=_ddgc .newPdfAnnotationMarkupFromDict (_cagd ); -if _bdaf !=nil {return nil ,_bdaf ;};_bbde .PdfAnnotationMarkup =_baee ;_bbde .QuadPoints =_cagd .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_bbde ,nil ;};func (_cgdg *PdfColorspaceCalRGB )String ()string {return "\u0043\u0061\u006c\u0052\u0047\u0042"}; -func (_afaf *PdfAppender )mergeResources (_defg ,_gffdg _aff .PdfObject ,_fccd map[_aff .PdfObjectName ]_aff .PdfObjectName )_aff .PdfObject {if _gffdg ==nil &&_defg ==nil {return nil ;};if _gffdg ==nil {return _defg ;};_feacd ,_bbbfd :=_aff .GetDict (_gffdg ); -if !_bbbfd {return _defg ;};if _defg ==nil {_egcd :=_aff .MakeDict ();_egcd .Merge (_feacd );return _gffdg ;};_edce ,_bbbfd :=_aff .GetDict (_defg );if !_bbbfd {_adg .Log .Error ("\u0045\u0072\u0072or\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065 \u0069s\u0020n\u006ft\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -_edce =_aff .MakeDict ();};for _ ,_fcbb :=range _feacd .Keys (){if _dcc ,_bdge :=_fccd [_fcbb ];_bdge {_edce .Set (_dcc ,_feacd .Get (_fcbb ));}else {_edce .Set (_fcbb ,_feacd .Get (_fcbb ));};};return _edce ;}; +// ToPdfObject returns the text field dictionary within an indirect object (container). +func (_gede *PdfFieldText )ToPdfObject ()_dg .PdfObject {_gede .PdfField .ToPdfObject ();_dgdb :=_gede ._egce ;_deba :=_dgdb .PdfObject .(*_dg .PdfObjectDictionary );_deba .Set ("\u0046\u0054",_dg .MakeName ("\u0054\u0078"));if _gede .DA !=nil {_deba .Set ("\u0044\u0041",_gede .DA ); +};if _gede .Q !=nil {_deba .Set ("\u0051",_gede .Q );};if _gede .DS !=nil {_deba .Set ("\u0044\u0053",_gede .DS );};if _gede .RV !=nil {_deba .Set ("\u0052\u0056",_gede .RV );};if _gede .MaxLen !=nil {_deba .Set ("\u004d\u0061\u0078\u004c\u0065\u006e",_gede .MaxLen ); +};return _dgdb ;};func (_agaga *pdfFontType0 )bytesToCharcodes (_daec []byte )([]_bd .CharCode ,bool ){if _agaga ._bfae ==nil {return nil ,false ;};_ddgad ,_acbd :=_agaga ._bfae .BytesToCharcodes (_daec );if !_acbd {return nil ,false ;};_bggc :=make ([]_bd .CharCode ,len (_ddgad )); +for _gccb ,_eegg :=range _ddgad {_bggc [_gccb ]=_bd .CharCode (_eegg );};return _bggc ,true ;}; -// Evaluate runs the function on the passed in slice and returns the results. -func (_eedfa *PdfFunctionType0 )Evaluate (x []float64 )([]float64 ,error ){if len (x )!=_eedfa .NumInputs {_adg .Log .Error ("\u004eu\u006d\u0062e\u0072\u0020\u006f\u0066 \u0069\u006e\u0070u\u0074\u0073\u0020\u006e\u006f\u0074\u0020\u006d\u0061tc\u0068\u0069\u006eg\u0020\u0077h\u0061\u0074\u0020\u0069\u0073\u0020n\u0065\u0065d\u0065\u0064"); -return nil ,_g .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};if _eedfa ._bfcae ==nil {_fbeagf :=_eedfa .processSamples ();if _fbeagf !=nil {return nil ,_fbeagf ;};};_faaef :=_eedfa .Encode ; -if _faaef ==nil {_faaef =[]float64 {};for _gbaa :=0;_gbaa < len (_eedfa .Size );_gbaa ++{_faaef =append (_faaef ,0);_faaef =append (_faaef ,float64 (_eedfa .Size [_gbaa ]-1));};};_ddbcb :=_eedfa .Decode ;if _ddbcb ==nil {_ddbcb =_eedfa .Range ;};_fbbfc :=make ([]int ,len (x )); -for _ffda :=0;_ffda < len (x );_ffda ++{_cbdge :=x [_ffda ];_bdff :=_cf .Min (_cf .Max (_cbdge ,_eedfa .Domain [2*_ffda ]),_eedfa .Domain [2*_ffda +1]);_ggdae :=_gd .LinearInterpolate (_bdff ,_eedfa .Domain [2*_ffda ],_eedfa .Domain [2*_ffda +1],_faaef [2*_ffda ],_faaef [2*_ffda +1]); -_cfcage :=_cf .Min (_cf .Max (_ggdae ,0),float64 (_eedfa .Size [_ffda ]-1));_fabgg :=int (_cf .Floor (_cfcage +0.5));if _fabgg < 0{_fabgg =0;}else if _fabgg > _eedfa .Size [_ffda ]{_fabgg =_eedfa .Size [_ffda ]-1;};_fbbfc [_ffda ]=_fabgg ;};_abec :=_fbbfc [0]; -for _afff :=1;_afff < _eedfa .NumInputs ;_afff ++{_ffbfce :=_fbbfc [_afff ];for _dfeae :=0;_dfeae < _afff ;_dfeae ++{_ffbfce *=_eedfa .Size [_dfeae ];};_abec +=_ffbfce ;};_abec *=_eedfa .NumOutputs ;var _edaca []float64 ;for _edfeb :=0;_edfeb < _eedfa .NumOutputs ; -_edfeb ++{_eccf :=_abec +_edfeb ;if _eccf >=len (_eedfa ._bfcae ){_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u006e\u006ft\u0020\u0065\u006eo\u0075\u0067\u0068\u0020\u0069\u006ep\u0075\u0074\u0020sa\u006dp\u006c\u0065\u0073\u0020\u0074\u006f\u0020d\u0065\u0074\u0065\u0072\u006d\u0069\u006e\u0065\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0076\u0061lu\u0065\u0073\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -continue ;};_efbd :=_eedfa ._bfcae [_eccf ];_ddge :=_gd .LinearInterpolate (float64 (_efbd ),0,_cf .Pow (2,float64 (_eedfa .BitsPerSample )),_ddbcb [2*_edfeb ],_ddbcb [2*_edfeb +1]);_gfea :=_cf .Min (_cf .Max (_ddge ,_eedfa .Range [2*_edfeb ]),_eedfa .Range [2*_edfeb +1]); -_edaca =append (_edaca ,_gfea );};return _edaca ,nil ;}; +// GetCerts returns the signature certificate chain. +func (_bgba *PdfSignature )GetCerts ()([]*_bb .Certificate ,error ){var _cdcab []func ()([]*_bb .Certificate ,error );switch _fbedg ,_ :=_dg .GetNameVal (_bgba .SubFilter );_fbedg {case "\u0061\u0064\u0062\u0065.p\u006b\u0063\u0073\u0037\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064","\u0045\u0054\u0053\u0049.C\u0041\u0064\u0045\u0053\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064":_cdcab =append (_cdcab ,_bgba .extractChainFromPKCS7 ,_bgba .extractChainFromCert ); +case "\u0061d\u0062e\u002e\u0078\u0035\u0030\u0039.\u0072\u0073a\u005f\u0073\u0068\u0061\u0031":_cdcab =append (_cdcab ,_bgba .extractChainFromCert );case "\u0045\u0054\u0053I\u002e\u0052\u0046\u0043\u0033\u0031\u0036\u0031":_cdcab =append (_cdcab ,_bgba .extractChainFromPKCS7 ); +default:return nil ,_b .Errorf ("\u0075n\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020S\u0075b\u0046i\u006c\u0074\u0065\u0072\u003a\u0020\u0025s",_fbedg );};for _ ,_efad :=range _cdcab {_agece ,_ggfda :=_efad ();if _ggfda !=nil {return nil ,_ggfda ; +};if len (_agece )> 0{return _agece ,nil ;};};return nil ,ErrSignNoCertificates ;}; -// PdfActionThread represents a thread action. -type PdfActionThread struct{*PdfAction ;F *PdfFilespec ;D _aff .PdfObject ;B _aff .PdfObject ;}; +// Field returns the parent form field of the widget annotation, if one exists. +// NOTE: the method returns nil if the parent form field has not been parsed. +func (_cfca *PdfAnnotationWidget )Field ()*PdfField {return _cfca ._cgg }; -// GetContext returns the annotation context which contains the specific type-dependent context. -// The context represents the subannotation. -func (_eab *PdfAnnotation )GetContext ()PdfModel {if _eab ==nil {return nil ;};return _eab ._eefa ;};func (_cgfa *PdfAppender )replaceObject (_abcgg ,_gffba _aff .PdfObject ){switch _gcbc :=_abcgg .(type ){case *_aff .PdfIndirectObject :_cgfa ._fffa [_gffba ]=_gcbc .ObjectNumber ; -case *_aff .PdfObjectStream :_cgfa ._fffa [_gffba ]=_gcbc .ObjectNumber ;};}; +// PdfAnnotation3D represents 3D annotations. +// (Section 13.6.2). +type PdfAnnotation3D struct{*PdfAnnotation ;T3DD _dg .PdfObject ;T3DV _dg .PdfObject ;T3DA _dg .PdfObject ;T3DI _dg .PdfObject ;T3DB _dg .PdfObject ;};func (_ebfgd *PdfWriter )writeString (_eadfg string ){if _ebfgd ._ffefc !=nil {return ;};_accaf ,_gacab :=_ebfgd ._bddfa .WriteString (_eadfg ); +_ebfgd ._fbbfc +=int64 (_accaf );_ebfgd ._ffefc =_gacab ;}; -// GetCatalogMetadata gets the catalog defined XMP Metadata. -func (_dagff *PdfReader )GetCatalogMetadata ()(_aff .PdfObject ,bool ){if _dagff ._dcadd ==nil {return nil ,false ;};_ffead :=_dagff ._dcadd .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");return _ffead ,_ffead !=nil ;}; +// NewPdfFieldSignature returns an initialized signature field. +func NewPdfFieldSignature (signature *PdfSignature )*PdfFieldSignature {_ffgef :=&PdfFieldSignature {};_ffgef .PdfField =NewPdfField ();_ffgef .PdfField .SetContext (_ffgef );_ffgef .PdfAnnotationWidget =NewPdfAnnotationWidget ();_ffgef .PdfAnnotationWidget .SetContext (_ffgef ); +_ffgef .PdfAnnotationWidget ._cdf =_ffgef .PdfField ._egce ;_ffgef .T =_dg .MakeString ("");_ffgef .F =_dg .MakeInteger (132);_ffgef .V =signature ;return _ffgef ;}; -// GetVersion gets the document version. -func (_gaffd *PdfWriter )GetVersion ()_aff .Version {return _gaffd ._bgeecg }; +// GetCatalogStructTreeRoot gets the catalog StructTreeRoot object. +func (_ffgf *PdfReader )GetCatalogStructTreeRoot ()(_dg .PdfObject ,bool ){if _ffgf ._gccfb ==nil {return nil ,false ;};_gfbbe :=_ffgf ._gccfb .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074");return _gfbbe ,_gfbbe !=nil ; +}; -// PdfAnnotationMarkup represents additional fields for mark-up annotations. -// (Section 12.5.6.2 p. 399). -type PdfAnnotationMarkup struct{T _aff .PdfObject ;Popup *PdfAnnotationPopup ;CA _aff .PdfObject ;RC _aff .PdfObject ;CreationDate _aff .PdfObject ;IRT _aff .PdfObject ;Subj _aff .PdfObject ;RT _aff .PdfObject ;IT _aff .PdfObject ;ExData _aff .PdfObject ; +// GetOutlines returns a high-level Outline object, based on the outline tree +// of the reader. +func (_febfg *PdfReader )GetOutlines ()(*Outline ,error ){if _febfg ==nil {return nil ,_bf .New ("\u0063\u0061n\u006e\u006f\u0074\u0020c\u0072\u0065a\u0074\u0065\u0020\u006f\u0075\u0074\u006c\u0069n\u0065\u0020\u0066\u0072\u006f\u006d\u0020\u006e\u0069\u006c\u0020\u0072e\u0061\u0064\u0065\u0072"); +};_accge :=_febfg .GetOutlineTree ();if _accge ==nil {return nil ,_bf .New ("\u0074\u0068\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0072\u0065\u0061\u0064e\u0072\u0020\u0064\u006f\u0065\u0073\u0020n\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0020o\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0074\u0072\u0065\u0065"); +};var _fcee func (_abeff *PdfOutlineTreeNode ,_eccca *[]*OutlineItem );_fcee =func (_fcedc *PdfOutlineTreeNode ,_cfggb *[]*OutlineItem ){if _fcedc ==nil {return ;};if _fcedc ._baddf ==nil {_ag .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020m\u0069\u0073\u0073\u0069ng \u006fut\u006c\u0069\u006e\u0065\u0020\u0065\u006etr\u0079\u0020\u0063\u006f\u006e\u0074\u0065x\u0074"); +return ;};var _aegcd *OutlineItem ;if _fgdfab ,_edgba :=_fcedc ._baddf .(*PdfOutlineItem );_edgba {_gdgcgc :=_fgdfab .Dest ;if (_gdgcgc ==nil ||_dg .IsNullObject (_gdgcgc ))&&_fgdfab .A !=nil {if _facd ,_dcacc :=_dg .GetDict (_fgdfab .A );_dcacc {if _dfdegg ,_adfae :=_dg .GetArray (_facd .Get ("\u0044")); +_adfae {_gdgcgc =_dfdegg ;}else {_gafab ,_baebd :=_dg .GetString (_facd .Get ("\u0044"));if !_baebd {return ;};_daef ,_baebd :=_febfg ._gccfb .Get ("\u004e\u0061\u006de\u0073").(*_dg .PdfObjectReference );if !_baebd {return ;};_gfgeg ,_cbab :=_febfg ._baad .LookupByReference (*_daef ); +if _cbab !=nil {_ag .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020\u006e\u0061\u006d\u0065\u0073\u0020\u0072\u0065\u0066\u0065\u0072e\u006e\u0063\u0065\u0020\u0028\u0025\u0073\u0029",_cbab .Error ()); +return ;};_daege ,_baebd :=_gfgeg .(*_dg .PdfIndirectObject );if !_baebd {return ;};_gabd :=map[_dg .PdfObject ]struct{}{};_cbab =_febfg .buildNameNodes (_daege ,_gabd );if _cbab !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0062\u0075\u0069\u006c\u0064\u0020\u006ea\u006d\u0065\u0020\u006e\u006fd\u0065\u0073 \u0028\u0025\u0073\u0029",_cbab .Error ()); +return ;};for _bfed :=range _gabd {_daegeg ,_adae :=_dg .GetDict (_bfed );if !_adae {continue ;};_bgcdd ,_adae :=_dg .GetArray (_daegeg .Get ("\u004e\u0061\u006de\u0073"));if !_adae {continue ;};for _ebbe ,_aeca :=range _bgcdd .Elements (){switch _aeca .(type ){case *_dg .PdfObjectString :if _aeca .String ()==_gafab .String (){if _efcd :=_bgcdd .Get (_ebbe +1); +_efcd !=nil {if _baff ,_efaeg :=_dg .GetDict (_efcd );_efaeg {_gdgcgc =_baff .Get ("\u0044");break ;};};};};};};};};};var _bddd OutlineDest ;if _gdgcgc !=nil &&!_dg .IsNullObject (_gdgcgc ){if _badbg ,_dfcdg :=_eadf (_gdgcgc ,_febfg );_dfcdg ==nil {_bddd =*_badbg ; +}else {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020p\u0061\u0072\u0073\u0065\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0064\u0065\u0073\u0074\u0020\u0028\u0025\u0076\u0029\u003a\u0020\u0025\u0076",_gdgcgc ,_dfcdg ); +};};_aegcd =NewOutlineItem (_fgdfab .Title .Decoded (),_bddd );*_cfggb =append (*_cfggb ,_aegcd );if _fgdfab .Next !=nil {_fcee (_fgdfab .Next ,_cfggb );};};if _fcedc .First !=nil {if _aegcd !=nil {_cfggb =&_aegcd .Entries ;};_fcee (_fcedc .First ,_cfggb ); +};};_gddeg :=NewOutline ();_fcee (_accge ,&_gddeg .Entries );return _gddeg ,nil ;};func (_dabc *PdfReader )newPdfAnnotationPopupFromDict (_gdcc *_dg .PdfObjectDictionary )(*PdfAnnotationPopup ,error ){_geb :=PdfAnnotationPopup {};_geb .Parent =_gdcc .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"); +_geb .Open =_gdcc .Get ("\u004f\u0070\u0065\u006e");return &_geb ,nil ;}; + +// GetMediaBox gets the inheritable media box value, either from the page +// or a higher up page/pages struct. +func (_ebfga *PdfPage )GetMediaBox ()(*PdfRectangle ,error ){if _ebfga .MediaBox !=nil {return _ebfga .MediaBox ,nil ;};_dccad :=_ebfga .Parent ;for _dccad !=nil {_ecebe ,_cdccd :=_dg .GetDict (_dccad );if !_cdccd {return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +};if _cbfbb :=_ecebe .Get ("\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078");_cbfbb !=nil {_acdba ,_bfaac :=_dg .GetArray (_cbfbb );if !_bfaac {return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006d\u0065\u0064\u0069a\u0020\u0062\u006f\u0078"); +};_aefbf ,_fccc :=NewPdfRectangle (*_acdba );if _fccc !=nil {return nil ,_fccc ;};return _aefbf ,nil ;};_dccad =_ecebe .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");};return nil ,_bf .New ("m\u0065\u0064\u0069\u0061 b\u006fx\u0020\u006e\u006f\u0074\u0020d\u0065\u0066\u0069\u006e\u0065\u0064"); }; -// NewPdfAnnotationRichMedia returns a new rich media annotation. -func NewPdfAnnotationRichMedia ()*PdfAnnotationRichMedia {_bcdf :=NewPdfAnnotation ();_fcd :=&PdfAnnotationRichMedia {};_fcd .PdfAnnotation =_bcdf ;_bcdf .SetContext (_fcd );return _fcd ;};func _bdeaf (_ceead _aff .PdfObject )(*fontFile ,error ){_adg .Log .Trace ("\u006e\u0065\u0077\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0046\u0072\u006f\u006dP\u0064f\u004f\u0062\u006a\u0065\u0063\u0074\u003a\u0020\u006f\u0062\u006a\u003d\u0025\u0073",_ceead ); -_caag :=&fontFile {};_ceead =_aff .TraceToDirectObject (_ceead );_cbbdf ,_cdfea :=_ceead .(*_aff .PdfObjectStream );if !_cdfea {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020F\u006f\u006et\u0046\u0069\u006c\u0065\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u0028\u0025\u0054\u0029",_ceead ); -return nil ,_aff .ErrTypeError ;};_adccf :=_cbbdf .PdfObjectDictionary ;_aegga ,_bgfc :=_aff .DecodeStream (_cbbdf );if _bgfc !=nil {return nil ,_bgfc ;};_eddf ,_cdfea :=_aff .GetNameVal (_adccf .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_cdfea {_caag ._ffca =_eddf ; -if _eddf =="\u0054\u0079\u0070\u0065\u0031\u0043"{_adg .Log .Debug ("T\u0079\u0070\u0065\u0031\u0043\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u0072\u0065\u0020\u0063\u0075r\u0072\u0065\u006e\u0074\u006c\u0079\u0020\u006e\u006f\u0074 s\u0075\u0070\u0070o\u0072t\u0065\u0064"); -return nil ,ErrType1CFontNotSupported ;};};_afcfad ,_ :=_aff .GetIntVal (_adccf .Get ("\u004ce\u006e\u0067\u0074\u0068\u0031"));_gaeag ,_ :=_aff .GetIntVal (_adccf .Get ("\u004ce\u006e\u0067\u0074\u0068\u0032"));if _afcfad > len (_aegga ){_afcfad =len (_aegga ); -};if _afcfad +_gaeag > len (_aegga ){_gaeag =len (_aegga )-_afcfad ;};_dbggc :=_aegga [:_afcfad ];var _bdgg []byte ;if _gaeag > 0{_bdgg =_aegga [_afcfad :_afcfad +_gaeag ];};if _afcfad > 0&&_gaeag > 0{_dggce :=_caag .loadFromSegments (_dbggc ,_bdgg );if _dggce !=nil {return nil ,_dggce ; -};};return _caag ,nil ;}; +// B returns the value of the blue component of the color. +func (_edfe *PdfColorDeviceRGB )B ()float64 {return _edfe [2]};func _dccea (_dcagbd *PdfPage ){_gffa :=_cfb .GetLicenseKey ();if _gffa !=nil &&_gffa .IsLicensed (){return ;};_aecbb :=_dg .PdfObjectName ("\u0055\u0046\u0031");if !_dcagbd .Resources .HasFontByName (_aecbb ){_dcagbd .Resources .SetFontByName (_aecbb ,DefaultFont ().ToPdfObject ()); +};var _agadf []string ;_agadf =append (_agadf ,"\u0071");_agadf =append (_agadf ,"\u0042\u0054");_agadf =append (_agadf ,_b .Sprintf ("\u002f%\u0073\u0020\u0031\u0034\u0020\u0054f",_aecbb .String ()));_agadf =append (_agadf ,"\u0031\u0020\u0030\u0020\u0030\u0020\u0072\u0067"); +_agadf =append (_agadf ,"\u0031\u0030\u0020\u0031\u0030\u0020\u0054\u0064");_eegfcg :="\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064\u0020\u0055\u006e\u0069\u0044o\u0063\u0020\u002d\u0020\u0047\u0065\u0074\u0020\u0061\u0020\u006c\u0069\u0063e\u006e\u0073\u0065\u0020\u006f\u006e\u0020\u0068\u0074\u0074\u0070\u0073:/\u002f\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"; +_agadf =append (_agadf ,_b .Sprintf ("\u0028%\u0073\u0029\u0020\u0054\u006a",_eegfcg ));_agadf =append (_agadf ,"\u0045\u0054");_agadf =append (_agadf ,"\u0051");_fcaeb :=_ga .Join (_agadf ,"\u000a");_dcagbd .AddContentStreamByString (_fcaeb );_dcagbd .ToPdfObject (); +}; -// PdfPageResources is a Page resources model. -// Implements PdfModel. -type PdfPageResources struct{ExtGState _aff .PdfObject ;ColorSpace _aff .PdfObject ;Pattern _aff .PdfObject ;Shading _aff .PdfObject ;XObject _aff .PdfObject ;Font _aff .PdfObject ;ProcSet _aff .PdfObject ;Properties _aff .PdfObject ;_bdegd *_aff .PdfObjectDictionary ; -_cfdbe *PdfPageResourcesColorspaces ;}; +// NewPdfActionSound returns a new "sound" action. +func NewPdfActionSound ()*PdfActionSound {_gcb :=NewPdfAction ();_ac :=&PdfActionSound {};_ac .PdfAction =_gcb ;_gcb .SetContext (_ac );return _ac ;}; // SetContentStreams sets the content streams based on a string array. Will make // 1 object stream for each string and reference from the page Contents. // Each stream will be encoded using the encoding specified by the StreamEncoder, // if empty, will use identity encoding (raw data). -func (_agfbc *PdfPage )SetContentStreams (cStreams []string ,encoder _aff .StreamEncoder )error {if len (cStreams )==0{_agfbc .Contents =nil ;return nil ;};if encoder ==nil {encoder =_aff .NewRawEncoder ();};var _dcfa []*_aff .PdfObjectStream ;for _ ,_cfedg :=range cStreams {_acbgc :=&_aff .PdfObjectStream {}; -_bddfd :=encoder .MakeStreamDict ();_edddg ,_cfgc :=encoder .EncodeBytes ([]byte (_cfedg ));if _cfgc !=nil {return _cfgc ;};_bddfd .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_edddg ))));_acbgc .PdfObjectDictionary =_bddfd ; -_acbgc .Stream =_edddg ;_dcfa =append (_dcfa ,_acbgc );};if len (_dcfa )==1{_agfbc .Contents =_dcfa [0];}else {_gbdde :=_aff .MakeArray ();for _ ,_dcgaa :=range _dcfa {_gbdde .Append (_dcgaa );};_agfbc .Contents =_gbdde ;};return nil ;};func (_cba *PdfReader )newPdfActionNamedFromDict (_gfgf *_aff .PdfObjectDictionary )(*PdfActionNamed ,error ){return &PdfActionNamed {N :_gfgf .Get ("\u004e")},nil ; -};func _aedb (_gaffe *fontCommon )*pdfCIDFontType2 {return &pdfCIDFontType2 {fontCommon :*_gaffe }}; - -// ToPdfObject returns a PDF object representation of the outline destination. -func (_gcffg OutlineDest )ToPdfObject ()_aff .PdfObject {if (_gcffg .PageObj ==nil &&_gcffg .Page < 0)||_gcffg .Mode ==""{return _aff .MakeNull ();};_baebf :=_aff .MakeArray ();if _gcffg .PageObj !=nil {_baebf .Append (_gcffg .PageObj );}else {_baebf .Append (_aff .MakeInteger (_gcffg .Page )); -};_baebf .Append (_aff .MakeName (_gcffg .Mode ));switch _gcffg .Mode {case "\u0046\u0069\u0074","\u0046\u0069\u0074\u0042":case "\u0046\u0069\u0074\u0048","\u0046\u0069\u0074B\u0048":_baebf .Append (_aff .MakeFloat (_gcffg .Y ));case "\u0046\u0069\u0074\u0056","\u0046\u0069\u0074B\u0056":_baebf .Append (_aff .MakeFloat (_gcffg .X )); -case "\u0058\u0059\u005a":_baebf .Append (_aff .MakeFloat (_gcffg .X ));_baebf .Append (_aff .MakeFloat (_gcffg .Y ));_baebf .Append (_aff .MakeFloat (_gcffg .Zoom ));default:_baebf .Set (1,_aff .MakeName ("\u0046\u0069\u0074"));};return _baebf ;}; +func (_bgabg *PdfPage )SetContentStreams (cStreams []string ,encoder _dg .StreamEncoder )error {if len (cStreams )==0{_bgabg .Contents =nil ;return nil ;};if encoder ==nil {encoder =_dg .NewRawEncoder ();};var _bggge []*_dg .PdfObjectStream ;for _ ,_fgeea :=range cStreams {_abbba :=&_dg .PdfObjectStream {}; +_fbdec :=encoder .MakeStreamDict ();_acbbc ,_aeecb :=encoder .EncodeBytes ([]byte (_fgeea ));if _aeecb !=nil {return _aeecb ;};_fbdec .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_acbbc ))));_abbba .PdfObjectDictionary =_fbdec ; +_abbba .Stream =_acbbc ;_bggge =append (_bggge ,_abbba );};if len (_bggge )==1{_bgabg .Contents =_bggge [0];}else {_aacfg :=_dg .MakeArray ();for _ ,_aaad :=range _bggge {_aacfg .Append (_aaad );};_bgabg .Contents =_aacfg ;};return nil ;}; -// DecodeArray returns an empty slice as there are no components associated with pattern colorspace. -func (_bdfb *PdfColorspaceSpecialPattern )DecodeArray ()[]float64 {return []float64 {}}; - -// ParserMetadata gets the parser metadata. -func (_fdddb *CompliancePdfReader )ParserMetadata ()_aff .ParserMetadata {if _fdddb ._cffae ==(_aff .ParserMetadata {}){_fdddb ._cffae ,_ =_fdddb ._gaece .ParserMetadata ();};return _fdddb ._cffae ;}; +// GetColorspaces loads PdfPageResourcesColorspaces from `r.ColorSpace` and returns an error if there +// is a problem loading. Once loaded, the same object is returned on multiple calls. +func (_cfcdb *PdfPageResources )GetColorspaces ()(*PdfPageResourcesColorspaces ,error ){if _cfcdb ._dadae !=nil {return _cfcdb ._dadae ,nil ;};if _cfcdb .ColorSpace ==nil {return nil ,nil ;};_bcec ,_fcaea :=_ababg (_cfcdb .ColorSpace );if _fcaea !=nil {return nil ,_fcaea ; +};_cfcdb ._dadae =_bcec ;return _cfcdb ._dadae ,nil ;}; -// SetPdfProducer sets the Producer attribute of the output PDF. -func SetPdfProducer (producer string ){_aebda .Lock ();defer _aebda .Unlock ();_aaaab =producer }; +// SetColorspaceByName adds the provided colorspace to the page resources. +func (_fdacg *PdfPageResources )SetColorspaceByName (keyName _dg .PdfObjectName ,cs PdfColorspace )error {_gebgb ,_dbfdc :=_fdacg .GetColorspaces ();if _dbfdc !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0072\u0061\u0063\u0065: \u0025\u0076",_dbfdc ); +return _dbfdc ;};if _gebgb ==nil {_gebgb =NewPdfPageResourcesColorspaces ();_fdacg .SetColorSpace (_gebgb );};_gebgb .Set (keyName ,cs );return nil ;};func (_cfag *PdfReader )newPdfActionGoTo3DViewFromDict (_beed *_dg .PdfObjectDictionary )(*PdfActionGoTo3DView ,error ){return &PdfActionGoTo3DView {TA :_beed .Get ("\u0054\u0041"),V :_beed .Get ("\u0056")},nil ; +}; -// Flags returns the field flags for the field accounting for any inherited flags. -func (_gcgd *PdfField )Flags ()FieldFlag {var _fdeba FieldFlag ;_afad ,_aebb :=_gcgd .inherit (func (_geecd *PdfField )bool {if _geecd .Ff !=nil {_fdeba =FieldFlag (*_geecd .Ff );return true ;};return false ;});if _aebb !=nil {_adg .Log .Debug ("\u0045\u0072\u0072o\u0072\u0020\u0065\u0076\u0061\u006c\u0075\u0061\u0074\u0069\u006e\u0067\u0020\u0066\u006c\u0061\u0067\u0073\u0020\u0076\u0069\u0061\u0020\u0069\u006e\u0068\u0065\u0072\u0069t\u0061\u006e\u0063\u0065\u003a\u0020\u0025\u0076",_aebb ); -};if !_afad {_adg .Log .Trace ("N\u006f\u0020\u0066\u0069\u0065\u006cd\u0020\u0066\u006c\u0061\u0067\u0073 \u0066\u006f\u0075\u006e\u0064\u0020\u002d \u0061\u0073\u0073\u0075\u006d\u0065\u0020\u0063\u006c\u0065a\u0072");};return _fdeba ;};type modelManager struct{_ceaea map[PdfModel ]_aff .PdfObject ; -_geefd map[_aff .PdfObject ]PdfModel ;}; +// BorderStyle defines border type, typically used for annotations. +type BorderStyle int ;func (_adfcb *LTV )getOCSPs (_bcca []*_bb .Certificate ,_gdafa map[string ]*_bb .Certificate )([][]byte ,error ){_debaa :=make ([][]byte ,0,len (_bcca ));for _ ,_fgde :=range _bcca {for _ ,_febbd :=range _fgde .OCSPServer {if _adfcb .CertClient .IsCA (_fgde ){continue ; +};_abafb ,_bcgfc :=_gdafa [_fgde .Issuer .CommonName ];if !_bcgfc {_ag .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074\u003a\u0020\u0069\u0073\u0073\u0075e\u0072\u0020\u0063\u0065\u0072t\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +continue ;};_ ,_fgcae ,_ededa :=_adfcb .OCSPClient .MakeRequest (_febbd ,_fgde ,_abafb );if _ededa !=nil {_ag .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075e\u0073t\u0020\u0065\u0072\u0072\u006f\u0072\u003a \u0025\u0076",_ededa ); +continue ;};_debaa =append (_debaa ,_fgcae );};};return _debaa ,nil ;}; -// StandardValidator is the interface that is used for the PDF StandardImplementer validation for the PDF document. -// It is using a CompliancePdfReader which is expected to give more Metadata during reading process. -// NOTE: This implementation is in experimental development state. -// Keep in mind that it might change in the subsequent minor versions. -type StandardValidator interface{ +// ToPdfObject returns the PDF representation of the page resources. +func (_baba *PdfPageResources )ToPdfObject ()_dg .PdfObject {_bgee :=_baba ._ddcfb ;_bgee .SetIfNotNil ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_baba .ExtGState );if _baba ._dadae !=nil {_baba .ColorSpace =_baba ._dadae .ToPdfObject ();};_bgee .SetIfNotNil ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065",_baba .ColorSpace ); +_bgee .SetIfNotNil ("\u0050a\u0074\u0074\u0065\u0072\u006e",_baba .Pattern );_bgee .SetIfNotNil ("\u0053h\u0061\u0064\u0069\u006e\u0067",_baba .Shading );_bgee .SetIfNotNil ("\u0058O\u0062\u006a\u0065\u0063\u0074",_baba .XObject );_bgee .SetIfNotNil ("\u0046\u006f\u006e\u0074",_baba .Font ); +_bgee .SetIfNotNil ("\u0050r\u006f\u0063\u0053\u0065\u0074",_baba .ProcSet );_bgee .SetIfNotNil ("\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073",_baba .Properties );return _bgee ;}; -// ValidateStandard checks if the input reader -ValidateStandard (_acbag *CompliancePdfReader )error ;}; +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. The slice should contain a single element. +func (_bbdf *PdfColorspaceSpecialIndexed )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};N :=_bbdf .Base .GetNumComponents ();_dacdf :=int (vals [0])*N ; +if _dacdf < 0||(_dacdf +N -1)>=len (_bbdf ._bcea ){_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_dacdf );return nil ,ErrColorOutOfRange ;};_gbfg :=_bbdf ._bcea [_dacdf :_dacdf +N ]; +var _geae []float64 ;for _ ,_ffcc :=range _gbfg {_geae =append (_geae ,float64 (_ffcc )/255.0);};_agfac ,_bebe :=_bbdf .Base .ColorFromFloats (_geae );if _bebe !=nil {return nil ,_bebe ;};return _agfac ,nil ;}; -// PdfAnnotationRichMedia represents Rich Media annotations. -type PdfAnnotationRichMedia struct{*PdfAnnotation ;RichMediaSettings _aff .PdfObject ;RichMediaContent _aff .PdfObject ;}; +// PdfShadingPattern is a Shading patterns that provide a smooth transition between colors across an area to be painted, +// i.e. color(x,y) = f(x,y) at each point. +// It is a type 2 pattern (PatternType = 2). +type PdfShadingPattern struct{*PdfPattern ;Shading *PdfShading ;Matrix *_dg .PdfObjectArray ;ExtGState _dg .PdfObject ;}; -// EncryptOptions represents encryption options for an output PDF. -type EncryptOptions struct{Permissions _eec .Permissions ;Algorithm EncryptionAlgorithm ;};func (_fgeda *PdfReader )buildPageList (_ceffg *_aff .PdfIndirectObject ,_cegef *_aff .PdfIndirectObject ,_ccbbb map[_aff .PdfObject ]struct{})error {if _ceffg ==nil {return nil ; -};if _ ,_fbca :=_ccbbb [_ceffg ];_fbca {_adg .Log .Debug ("\u0043\u0079\u0063l\u0069\u0063\u0020\u0072e\u0063\u0075\u0072\u0073\u0069\u006f\u006e,\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0028\u0025\u0076\u0029",_ceffg .ObjectNumber ); -return nil ;};_ccbbb [_ceffg ]=struct{}{};_gbff ,_afdgb :=_ceffg .PdfObject .(*_aff .PdfObjectDictionary );if !_afdgb {return _g .New ("n\u006f\u0064\u0065\u0020no\u0074 \u0061\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079");};_ecadd ,_afdgb :=(*_gbff ).Get ("\u0054\u0079\u0070\u0065").(*_aff .PdfObjectName ); -if !_afdgb {if _gbff .Get ("\u004b\u0069\u0064\u0073")==nil {return _g .New ("\u006e\u006f\u0064\u0065 \u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0054\u0079p\u0065 \u0028\u0052\u0065\u0071\u0075\u0069\u0072e\u0064\u0029");};_adg .Log .Debug ("ER\u0052\u004fR\u003a\u0020\u006e\u006f\u0064\u0065\u0020\u006d\u0069s\u0073\u0069\u006e\u0067\u0020\u0054\u0079\u0070\u0065\u002c\u0020\u0062\u0075\u0074\u0020\u0068\u0061\u0073\u0020\u004b\u0069\u0064\u0073\u002e\u0020\u0041\u0073\u0073u\u006di\u006e\u0067\u0020\u0050\u0061\u0067\u0065\u0073 \u006eo\u0064\u0065."); -_ecadd =_aff .MakeName ("\u0050\u0061\u0067e\u0073");_gbff .Set ("\u0054\u0079\u0070\u0065",_ecadd );};_adg .Log .Trace ("\u0062\u0075\u0069\u006c\u0064\u0050a\u0067\u0065\u004c\u0069\u0073\u0074\u0020\u006e\u006f\u0064\u0065\u0020\u0074y\u0070\u0065\u003a\u0020\u0025\u0073\u0020(\u0025\u002b\u0076\u0029",*_ecadd ,_ceffg ); -if *_ecadd =="\u0050\u0061\u0067\u0065"{_gfceag ,_bggae :=_fgeda .newPdfPageFromDict (_gbff );if _bggae !=nil {return _bggae ;};_gfceag .setContainer (_ceffg );if _cegef !=nil {_gbff .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_cegef );};_fgeda ._bfgfec =append (_fgeda ._bfgfec ,_ceffg ); -_fgeda .PageList =append (_fgeda .PageList ,_gfceag );return nil ;};if *_ecadd !="\u0050\u0061\u0067e\u0073"{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u006f\u0066\u0020\u0063\u006fnt\u0065n\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067 \u006e\u006f\u006e\u0020\u0050\u0061\u0067\u0065\u002f\u0050\u0061\u0067\u0065\u0073\u0020\u006f\u0062j\u0065\u0063\u0074\u0021\u0020\u0028\u0025\u0073\u0029",_ecadd ); -return _g .New ("\u0074\u0061\u0062\u006c\u0065\u0020o\u0066\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067 \u006e\u006f\u006e\u0020\u0050\u0061\u0067\u0065\u002f\u0050\u0061\u0067\u0065\u0073 \u006fb\u006a\u0065\u0063\u0074"); -};if _cegef !=nil {_gbff .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_cegef );};if !_fgeda ._gfgg {_dbgac :=_fgeda .traverseObjectData (_ceffg );if _dbgac !=nil {return _dbgac ;};};_adeca ,_cffb :=_fgeda ._gaece .Resolve (_gbff .Get ("\u004b\u0069\u0064\u0073")); -if _cffb !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u0061\u0069\u006c\u0065\u0064\u0020\u006c\u006f\u0061\u0064\u0069\u006eg\u0020\u004b\u0069\u0064\u0073\u0020\u006fb\u006a\u0065\u0063\u0074");return _cffb ;};var _facfa *_aff .PdfObjectArray ; -_facfa ,_afdgb =_adeca .(*_aff .PdfObjectArray );if !_afdgb {_eecaa ,_beabb :=_adeca .(*_aff .PdfIndirectObject );if !_beabb {return _g .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u004b\u0069\u0064\u0073\u0020\u006f\u0062\u006a\u0065\u0063\u0074");}; -_facfa ,_afdgb =_eecaa .PdfObject .(*_aff .PdfObjectArray );if !_afdgb {return _g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u004b\u0069\u0064\u0073\u0020\u0069\u006ed\u0069r\u0065\u0063\u0074\u0020\u006f\u0062\u006ae\u0063\u0074");};};_adg .Log .Trace ("\u004b\u0069\u0064\u0073\u003a\u0020\u0025\u0073",_facfa ); -for _feefc ,_bfcgf :=range _facfa .Elements (){_fcfc ,_gbgdd :=_aff .GetIndirect (_bfcgf );if !_gbgdd {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074 \u006f\u0062\u006a\u0065\u0063t\u0020\u002d \u0028\u0025\u0073\u0029",_fcfc ); -return _g .New ("\u0070a\u0067\u0065\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0064\u0069r\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_facfa .Set (_feefc ,_fcfc );_cffb =_fgeda .buildPageList (_fcfc ,_ceffg ,_ccbbb );if _cffb !=nil {return _cffb ; -};};return nil ;}; +// A returns the value of the A component of the color. +func (_dfad *PdfColorLab )A ()float64 {return _dfad [1]}; -// SetCatalogMetadata sets the catalog metadata (XMP) stream object. -func (_fcagd *PdfWriter )SetCatalogMetadata (meta _aff .PdfObject )error {if meta ==nil {_fcagd ._cdccb .Remove ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");return nil ;};_bdbdf ,_defd :=_aff .GetStream (meta );if !_defd {return _g .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006d\u0065\u0074\u0061\u0064a\u0074\u0061\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0073t\u0072\u0065\u0061\u006d"); -};_fcagd .addObject (_bdbdf );_fcagd ._cdccb .Set ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_bdbdf );return nil ;}; +// GetFillImage get attached model.Image in push button. +func (_gdbf *PdfFieldButton )GetFillImage ()*Image {if _gdbf .IsPush (){return _gdbf ._gddc ;};return nil ;}; -// XObjectType represents the type of an XObject. -type XObjectType int ; +// IsSimple returns true if `font` is a simple font. +func (_agba *PdfFont )IsSimple ()bool {_ ,_edcdda :=_agba ._cadf .(*pdfFontSimple );return _edcdda }; -// Resample resamples the image data converting from current BitsPerComponent to a target BitsPerComponent -// value. Sets the image's BitsPerComponent to the target value following resampling. -// -// For example, converting an 8-bit RGB image to 1-bit grayscale (common for scanned images): -// // Convert RGB image to grayscale. -// rgbColorSpace := pdf.NewPdfColorspaceDeviceRGB() -// grayImage, err := rgbColorSpace.ImageToGray(rgbImage) -// if err != nil { -// return err -// } -// // Resample as 1 bit. -// grayImage.Resample(1) -func (_agfg *Image )Resample (targetBitsPerComponent int64 ){if _agfg .BitsPerComponent ==targetBitsPerComponent {return ;};_faebd :=_agfg .GetSamples ();if targetBitsPerComponent < _agfg .BitsPerComponent {_fdcf :=_agfg .BitsPerComponent -targetBitsPerComponent ; -for _cgbdg :=range _faebd {_faebd [_cgbdg ]>>=uint (_fdcf );};}else if targetBitsPerComponent > _agfg .BitsPerComponent {_dafbe :=targetBitsPerComponent -_agfg .BitsPerComponent ;for _aagge :=range _faebd {_faebd [_aagge ]<<=uint (_dafbe );};};_agfg .BitsPerComponent =targetBitsPerComponent ; -if _agfg .BitsPerComponent < 8{_agfg .resampleLowBits (_faebd );return ;};_bddca :=_gd .BytesPerLine (int (_agfg .Width ),int (_agfg .BitsPerComponent ),_agfg .ColorComponents );_ffdfc :=make ([]byte ,_bddca *int (_agfg .Height ));var (_gbecd ,_adddc ,_defab ,_ebeef int ; -_beecf uint32 ;);for _defab =0;_defab < int (_agfg .Height );_defab ++{_gbecd =_defab *_bddca ;_adddc =(_defab +1)*_bddca -1;_cccaeg :=_aae .ResampleUint32 (_faebd [_gbecd :_adddc ],int (targetBitsPerComponent ),8);for _ebeef ,_beecf =range _cccaeg {_ffdfc [_ebeef +_gbecd ]=byte (_beecf ); -};};_agfg .Data =_ffdfc ;}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// component PDF objects. +func (_aeege *PdfColorspaceICCBased )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if _aeege .Alternate ==nil {if _aeege .N ==1{_feec :=NewPdfColorspaceDeviceGray ();return _feec .ColorFromPdfObjects (objects );}else if _aeege .N ==3{_dea :=NewPdfColorspaceDeviceRGB (); +return _dea .ColorFromPdfObjects (objects );}else if _aeege .N ==4{_dage :=NewPdfColorspaceDeviceCMYK ();return _dage .ColorFromPdfObjects (objects );}else {return nil ,_bf .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); +};};return _aeege .Alternate .ColorFromPdfObjects (objects );};func _afbc (_ecdefc *_dg .PdfObjectDictionary )(*PdfTilingPattern ,error ){_ecbgf :=&PdfTilingPattern {};_fead :=_ecdefc .Get ("\u0050a\u0069\u006e\u0074\u0054\u0079\u0070e");if _fead ==nil {_ag .Log .Debug ("\u0050\u0061\u0069\u006e\u0074\u0054\u0079\u0070\u0065\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_bdgaab ,_gdaeg :=_fead .(*_dg .PdfObjectInteger );if !_gdaeg {_ag .Log .Debug ("\u0050\u0061\u0069\u006e\u0074\u0054y\u0070\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006ft\u0020\u0025\u0054\u0029",_fead ); +return nil ,_dg .ErrTypeError ;};_ecbgf .PaintType =_bdgaab ;_fead =_ecdefc .Get ("\u0054\u0069\u006c\u0069\u006e\u0067\u0054\u0079\u0070\u0065");if _fead ==nil {_ag .Log .Debug ("\u0054i\u006ci\u006e\u0067\u0054\u0079\u0070e\u0020\u006di\u0073\u0073\u0069\u006e\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_fdfc ,_gdaeg :=_fead .(*_dg .PdfObjectInteger );if !_gdaeg {_ag .Log .Debug ("\u0054\u0069\u006cin\u0067\u0054\u0079\u0070\u0065\u0020\u006e\u006f\u0074 \u0061n\u0020i\u006et\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_fead ); +return nil ,_dg .ErrTypeError ;};_ecbgf .TilingType =_fdfc ;_fead =_ecdefc .Get ("\u0042\u0042\u006f\u0078");if _fead ==nil {_ag .Log .Debug ("\u0042\u0042\u006fx\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ; +};_fead =_dg .TraceToDirectObject (_fead );_bbbec ,_gdaeg :=_fead .(*_dg .PdfObjectArray );if !_gdaeg {_ag .Log .Debug ("\u0042B\u006f\u0078 \u0073\u0068\u006fu\u006c\u0064\u0020\u0062\u0065\u0020\u0073p\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0062\u0079\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061y\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_fead ); +return nil ,_dg .ErrTypeError ;};_ccbcf ,_bdagca :=NewPdfRectangle (*_bbbec );if _bdagca !=nil {_ag .Log .Debug ("\u0042\u0042\u006f\u0078\u0020\u0065\u0072\u0072\u006fr\u003a\u0020\u0025\u0076",_bdagca );return nil ,_bdagca ;};_ecbgf .BBox =_ccbcf ;_fead =_ecdefc .Get ("\u0058\u0053\u0074e\u0070"); +if _fead ==nil {_ag .Log .Debug ("\u0058\u0053\u0074\u0065\u0070\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ;};_fddaae ,_bdagca :=_dg .GetNumberAsFloat (_fead );if _bdagca !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0058S\u0074e\u0070\u0020\u0061\u0073\u0020\u0066\u006c\u006f\u0061\u0074\u003a\u0020\u0025\u0076",_fddaae ); +return nil ,_bdagca ;};_ecbgf .XStep =_dg .MakeFloat (_fddaae );_fead =_ecdefc .Get ("\u0059\u0053\u0074e\u0070");if _fead ==nil {_ag .Log .Debug ("\u0059\u0053\u0074\u0065\u0070\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ; +};_bdebd ,_bdagca :=_dg .GetNumberAsFloat (_fead );if _bdagca !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0059S\u0074e\u0070\u0020\u0061\u0073\u0020\u0066\u006c\u006f\u0061\u0074\u003a\u0020\u0025\u0076",_bdebd ); +return nil ,_bdagca ;};_ecbgf .YStep =_dg .MakeFloat (_bdebd );_fead =_ecdefc .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");if _fead ==nil {_ag .Log .Debug ("\u0052\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); +return nil ,ErrRequiredAttributeMissing ;};_ecdefc ,_gdaeg =_dg .TraceToDirectObject (_fead ).(*_dg .PdfObjectDictionary );if !_gdaeg {return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063e\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_fead ); +};_bedf ,_bdagca :=NewPdfPageResourcesFromDict (_ecdefc );if _bdagca !=nil {return nil ,_bdagca ;};_ecbgf .Resources =_bedf ;if _ddadb :=_ecdefc .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");_ddadb !=nil {_dfed ,_bdeedg :=_ddadb .(*_dg .PdfObjectArray ); +if !_bdeedg {_ag .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_ddadb );return nil ,_dg .ErrTypeError ;};_ecbgf .Matrix =_dfed ;};return _ecbgf ,nil ; +}; -// FullName returns the full name of the field as in rootname.parentname.partialname. -func (_dcfcf *PdfField )FullName ()(string ,error ){var _beecc _af .Buffer ;_ffbfc :=[]string {};if _dcfcf .T !=nil {_ffbfc =append (_ffbfc ,_dcfcf .T .Decoded ());};_cdcg :=map[*PdfField ]bool {};_cdcg [_dcfcf ]=true ;_ggbg :=_dcfcf .Parent ;for _ggbg !=nil {if _ ,_bggd :=_cdcg [_ggbg ]; -_bggd {return _beecc .String (),_g .New ("\u0072\u0065\u0063\u0075rs\u0069\u0076\u0065\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0061\u006c");};if _ggbg .T ==nil {return _beecc .String (),_g .New ("\u0066\u0069el\u0064\u0020\u0070a\u0072\u0074\u0069\u0061l n\u0061me\u0020\u0028\u0054\u0029\u0020\u006e\u006ft \u0073\u0070\u0065\u0063\u0069\u0066\u0069e\u0064"); -};_ffbfc =append (_ffbfc ,_ggbg .T .Decoded ());_cdcg [_ggbg ]=true ;_ggbg =_ggbg .Parent ;};for _dada :=len (_ffbfc )-1;_dada >=0;_dada --{_beecc .WriteString (_ffbfc [_dada ]);if _dada > 0{_beecc .WriteString ("\u002e");};};return _beecc .String (),nil ; -};func _cgdee ()*modelManager {_ddcd :=modelManager {};_ddcd ._ceaea =map[PdfModel ]_aff .PdfObject {};_ddcd ._geefd =map[_aff .PdfObject ]PdfModel {};return &_ddcd ;};func _ffgg (_edbfg *_aff .PdfObjectDictionary ,_dcfbg *fontCommon )(*pdfCIDFontType0 ,error ){if _dcfbg ._fbged !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030"{_adg .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0046\u006fn\u0074\u0020\u0053u\u0062\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020CI\u0044\u0046\u006fn\u0074\u0054y\u0070\u0065\u0030\u002e\u0020\u0066o\u006e\u0074=\u0025\u0073",_dcfbg ); -return nil ,_aff .ErrRangeError ;};_bgfg :=_dcbc (_dcfbg );_bdfbg ,_agcd :=_aff .GetDict (_edbfg .Get ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f"));if !_agcd {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043I\u0044\u0053\u0079st\u0065\u006d\u0049\u006e\u0066\u006f \u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u002e\u0020\u0066\u006f\u006e\u0074=\u0025\u0073",_dcfbg ); -return nil ,ErrRequiredAttributeMissing ;};_bgfg .CIDSystemInfo =_bdfbg ;_bgfg .DW =_edbfg .Get ("\u0044\u0057");_bgfg .W =_edbfg .Get ("\u0057");_bgfg .DW2 =_edbfg .Get ("\u0044\u0057\u0032");_bgfg .W2 =_edbfg .Get ("\u0057\u0032");_bgfg ._fgbc =1000.0; -if _cdaeb ,_gcbfd :=_aff .GetNumberAsFloat (_bgfg .DW );_gcbfd ==nil {_bgfg ._fgbc =_cdaeb ;};_cfbab ,_aggag :=_adffed (_bgfg .W );if _aggag !=nil {return nil ,_aggag ;};if _cfbab ==nil {_cfbab =map[_eee .CharCode ]float64 {};};_bgfg ._egfb =_cfbab ;return _bgfg ,nil ; -};func (_cdcd *PdfAcroForm )fill (_fbga FieldValueProvider ,_faae FieldAppearanceGenerator )error {if _cdcd ==nil {return nil ;};_cacgf ,_ffedb :=_fbga .FieldValues ();if _ffedb !=nil {return _ffedb ;};for _ ,_eedeb :=range _cdcd .AllFields (){_cgbda :=_eedeb .PartialName (); -_gdfg ,_dbcdb :=_cacgf [_cgbda ];if !_dbcdb {if _gefc ,_bcdb :=_eedeb .FullName ();_bcdb ==nil {_gdfg ,_dbcdb =_cacgf [_gefc ];};};if !_dbcdb {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020f\u006f\u0072\u006d \u0066\u0069\u0065l\u0064\u0020\u0025\u0073\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u0069n \u0074\u0068\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0072\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u002e",_cgbda ); -continue ;};if _fbbgd :=_acgfb (_eedeb ,_gdfg );_fbbgd !=nil {return _fbbgd ;};if _faae ==nil {continue ;};for _ ,_cdbc :=range _eedeb .Annotations {_daaa ,_gefaa :=_faae .GenerateAppearanceDict (_cdcd ,_eedeb ,_cdbc );if _gefaa !=nil {return _gefaa ;}; -_cdbc .AP =_daaa ;_cdbc .ToPdfObject ();};};return nil ;}; +// Image interface is a basic representation of an image used in PDF. +// The colorspace is not specified, but must be known when handling the image. +type Image struct{Width int64 ;Height int64 ;BitsPerComponent int64 ;ColorComponents int ;Data []byte ;_dgeb []byte ;_gfbb []float64 ;};func (_cede fontCommon )coreString ()string {_abede :="";if _cede ._ccfb !=nil {_abede =_cede ._ccfb .String ();};return _b .Sprintf ("\u0025#\u0071\u0020%\u0023\u0071\u0020%\u0071\u0020\u006f\u0062\u006a\u003d\u0025d\u0020\u0054\u006f\u0055\u006e\u0069c\u006f\u0064\u0065\u003d\u0025\u0074\u0020\u0066\u006c\u0061\u0067s\u003d\u0030\u0078\u0025\u0030\u0078\u0020\u0025\u0073",_cede ._bcga ,_cede ._ecbf ,_cede ._cefg ,_cede ._bgggd ,_cede ._ebbff !=nil ,_cede .fontFlags (),_abede ); +}; -// OutlineDest represents the destination of an outline item. -// It holds the page and the position on the page an outline item points to. -type OutlineDest struct{PageObj *_aff .PdfIndirectObject `json:"-"`;Page int64 `json:"page"`;Mode string `json:"mode"`;X float64 `json:"x"`;Y float64 `json:"y"`;Zoom float64 `json:"zoom"`;}; +// ToPdfObject implements interface PdfModel. +func (_cba *PdfActionTrans )ToPdfObject ()_dg .PdfObject {_cba .PdfAction .ToPdfObject ();_cbg :=_cba ._cbd ;_cd :=_cbg .PdfObject .(*_dg .PdfObjectDictionary );_cd .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeTrans )));_cd .SetIfNotNil ("\u0054\u0072\u0061n\u0073",_cba .Trans ); +return _cbg ;};func (_aae *PdfReader )newPdfActionHideFromDict (_fcbd *_dg .PdfObjectDictionary )(*PdfActionHide ,error ){return &PdfActionHide {T :_fcbd .Get ("\u0054"),H :_fcbd .Get ("\u0048")},nil ;};func (_abfa *pdfCIDFontType0 )getFontDescriptor ()*PdfFontDescriptor {return _abfa ._ccfb }; -// GetPage returns the PdfPage model for the specified page number. -func (_gdbg *PdfReader )GetPage (pageNumber int )(*PdfPage ,error ){if _gdbg ._gaece .GetCrypter ()!=nil &&!_gdbg ._gaece .IsAuthenticated (){return nil ,_e .Errorf ("\u0066\u0069\u006c\u0065\u0020\u006e\u0065\u0065\u0064\u0073\u0020\u0074\u006f\u0020\u0062e\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); -};if len (_gdbg ._bfgfec )< pageNumber {return nil ,_g .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0028\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u0075\u006e\u0074\u0020\u0074o\u006f\u0020\u0073\u0068\u006f\u0072\u0074\u0029"); -};_bcca :=pageNumber -1;if _bcca < 0{return nil ,_e .Errorf ("\u0070\u0061\u0067\u0065\u0020\u006e\u0075\u006d\u0062\u0065r\u0069\u006e\u0067\u0020\u006d\u0075\u0073t\u0020\u0073\u0074\u0061\u0072\u0074\u0020\u0061\u0074\u0020\u0031");};_ebfg :=_gdbg .PageList [_bcca ]; -return _ebfg ,nil ;}; -// ToInteger convert to an integer format. -func (_babd *PdfColorDeviceRGB )ToInteger (bits int )[3]uint32 {_bfae :=_cf .Pow (2,float64 (bits ))-1;return [3]uint32 {uint32 (_bfae *_babd .R ()),uint32 (_bfae *_babd .G ()),uint32 (_bfae *_babd .B ())};}; +// NewPdfPageResourcesColorspaces returns a new PdfPageResourcesColorspaces object. +func NewPdfPageResourcesColorspaces ()*PdfPageResourcesColorspaces {_aadeg :=&PdfPageResourcesColorspaces {};_aadeg .Names =[]string {};_aadeg .Colorspaces =map[string ]PdfColorspace {};_aadeg ._dcebf =&_dg .PdfIndirectObject {};return _aadeg ;}; -// HasFontByName checks if has font resource by name. -func (_abfcc *PdfPage )HasFontByName (name _aff .PdfObjectName )bool {_gfde ,_dcdbg :=_abfcc .Resources .Font .(*_aff .PdfObjectDictionary );if !_dcdbg {return false ;};if _eeadf :=_gfde .Get (name );_eeadf !=nil {return true ;};return false ;};func (_fcabg *PdfWriter )adjustXRefAffectedVersion (_ffcb bool ){if _ffcb &&_fcabg ._bgeecg .Major ==1&&_fcabg ._bgeecg .Minor < 5{_fcabg ._bgeecg .Minor =5; -};}; +// GetShadingByName gets the shading specified by keyName. Returns nil if not existing. +// The bool flag indicated whether it was found or not. +func (_dged *PdfPageResources )GetShadingByName (keyName _dg .PdfObjectName )(*PdfShading ,bool ){if _dged .Shading ==nil {return nil ,false ;};_cegad ,_gafag :=_dg .TraceToDirectObject (_dged .Shading ).(*_dg .PdfObjectDictionary );if !_gafag {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0068\u0061d\u0069\u006e\u0067\u0020\u0065\u006e\u0074r\u0079\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064i\u0063\u0074\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_dged .Shading ); +return nil ,false ;};if _bfdac :=_cegad .Get (keyName );_bfdac !=nil {_dece ,_fbgbef :=_bgdgf (_bfdac );if _fbgbef !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020f\u0061\u0069l\u0065\u0064\u0020\u0074\u006f\u0020\u006c\u006fa\u0064\u0020\u0070\u0064\u0066\u0020\u0073\u0068\u0061\u0064\u0069\u006eg\u003a\u0020\u0025\u0076",_fbgbef ); +return nil ,false ;};return _dece ,true ;};return nil ,false ;}; -// A returns the value of the A component of the color. -func (_gebc *PdfColorLab )A ()float64 {return _gebc [1]}; +// PdfAnnotationPolygon represents Polygon annotations. +// (Section 12.5.6.9). +type PdfAnnotationPolygon struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Vertices _dg .PdfObject ;LE _dg .PdfObject ;BS _dg .PdfObject ;IC _dg .PdfObject ;BE _dg .PdfObject ;IT _dg .PdfObject ;Measure _dg .PdfObject ;}; -// DecodeArray returns the component range values for the Separation colorspace. -func (_eca *PdfColorspaceSpecialSeparation )DecodeArray ()[]float64 {return []float64 {0,1.0}}; +// ToPdfObject recursively builds the Outline tree PDF object. +func (_cbbc *PdfOutlineItem )ToPdfObject ()_dg .PdfObject {_bcgd :=_cbbc ._fbgf ;_bgga :=_bcgd .PdfObject .(*_dg .PdfObjectDictionary );_bgga .Set ("\u0054\u0069\u0074l\u0065",_cbbc .Title );if _cbbc .A !=nil {_bgga .Set ("\u0041",_cbbc .A );};if _efaf :=_bgga .Get ("\u0053\u0045"); +_efaf !=nil {_bgga .Remove ("\u0053\u0045");};if _cbbc .C !=nil {_bgga .Set ("\u0043",_cbbc .C );};if _cbbc .Dest !=nil {_bgga .Set ("\u0044\u0065\u0073\u0074",_cbbc .Dest );};if _cbbc .F !=nil {_bgga .Set ("\u0046",_cbbc .F );};if _cbbc .Count !=nil {_bgga .Set ("\u0043\u006f\u0075n\u0074",_dg .MakeInteger (*_cbbc .Count )); +};if _cbbc .Next !=nil {_bgga .Set ("\u004e\u0065\u0078\u0074",_cbbc .Next .ToPdfObject ());};if _cbbc .First !=nil {_bgga .Set ("\u0046\u0069\u0072s\u0074",_cbbc .First .ToPdfObject ());};if _cbbc .Prev !=nil {_bgga .Set ("\u0050\u0072\u0065\u0076",_cbbc .Prev .GetContext ().GetContainingPdfObject ()); +};if _cbbc .Last !=nil {_bgga .Set ("\u004c\u0061\u0073\u0074",_cbbc .Last .GetContext ().GetContainingPdfObject ());};if _cbbc .Parent !=nil {_bgga .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_cbbc .Parent .GetContext ().GetContainingPdfObject ());}; +return _bcgd ;}; -// GetCerts returns the signature certificate chain. -func (_aaeb *PdfSignature )GetCerts ()([]*_fb .Certificate ,error ){var _afdbaa []func ()([]*_fb .Certificate ,error );switch _fgdga ,_ :=_aff .GetNameVal (_aaeb .SubFilter );_fgdga {case "\u0061\u0064\u0062\u0065.p\u006b\u0063\u0073\u0037\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064","\u0045\u0054\u0053\u0049.C\u0041\u0064\u0045\u0053\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064":_afdbaa =append (_afdbaa ,_aaeb .extractChainFromPKCS7 ,_aaeb .extractChainFromCert ); -case "\u0061d\u0062e\u002e\u0078\u0035\u0030\u0039.\u0072\u0073a\u005f\u0073\u0068\u0061\u0031":_afdbaa =append (_afdbaa ,_aaeb .extractChainFromCert );case "\u0045\u0054\u0053I\u002e\u0052\u0046\u0043\u0033\u0031\u0036\u0031":_afdbaa =append (_afdbaa ,_aaeb .extractChainFromPKCS7 ); -default:return nil ,_e .Errorf ("\u0075n\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020S\u0075b\u0046i\u006c\u0074\u0065\u0072\u003a\u0020\u0025s",_fgdga );};for _ ,_fbbbg :=range _afdbaa {_cbfebc ,_egbeg :=_fbbbg ();if _egbeg !=nil {return nil ,_egbeg ; -};if len (_cbfebc )> 0{return _cbfebc ,nil ;};};return nil ,ErrSignNoCertificates ;}; +// PdfFunctionType0 uses a sequence of sample values (contained in a stream) to provide an approximation +// for functions whose domains and ranges are bounded. The samples are organized as an m-dimensional +// table in which each entry has n components +type PdfFunctionType0 struct{Domain []float64 ;Range []float64 ;NumInputs int ;NumOutputs int ;Size []int ;BitsPerSample int ;Order int ;Encode []float64 ;Decode []float64 ;_bgdg []byte ;_fecfc []uint32 ;_bedaf *_dg .PdfObjectStream ;}; -// ToPdfObject returns the PDF representation of the outline tree node. -func (_gbecg *PdfOutlineTreeNode )ToPdfObject ()_aff .PdfObject {return _gbecg .GetContext ().ToPdfObject ();}; +// SetXObjectImageByName adds the provided XObjectImage to the page resources. +// The added XObjectImage is identified by the specified name. +func (_bacaa *PdfPageResources )SetXObjectImageByName (keyName _dg .PdfObjectName ,ximg *XObjectImage )error {_dbcgg :=ximg .ToPdfObject ().(*_dg .PdfObjectStream );_ebbeg :=_bacaa .SetXObjectByName (keyName ,_dbcgg );return _ebbeg ;};var _ pdfFont =(*pdfCIDFontType0 )(nil ); -// ToPdfObject implements interface PdfModel. -func (_dge *PdfAnnotationWatermark )ToPdfObject ()_aff .PdfObject {_dge .PdfAnnotation .ToPdfObject ();_aef :=_dge ._ccfb ;_fdc :=_aef .PdfObject .(*_aff .PdfObjectDictionary );_fdc .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0057a\u0074\u0065\u0072\u006d\u0061\u0072k")); -_fdc .SetIfNotNil ("\u0046\u0069\u0078\u0065\u0064\u0050\u0072\u0069\u006e\u0074",_dge .FixedPrint );return _aef ;}; -// NewPdfFilespec returns an initialized generic PDF filespec model. -func NewPdfFilespec ()*PdfFilespec {_dgcbb :=&PdfFilespec {};_dgcbb ._dfefa =_aff .MakeIndirectObject (_aff .MakeDict ());return _dgcbb ;};type fontCommon struct{_abed string ;_fbged string ;_edebf string ;_ccbfg _aff .PdfObject ;_dcad *_da .CMap ;_ggca *PdfFontDescriptor ; -_acfg int64 ;}; +// ToPdfObject returns the PDF representation of the function. +func (_dfbb *PdfFunctionType0 )ToPdfObject ()_dg .PdfObject {if _dfbb ._bedaf ==nil {_dfbb ._bedaf =&_dg .PdfObjectStream {};};_eacc :=_dg .MakeDict ();_eacc .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_dg .MakeInteger (0)); +_gbfa :=&_dg .PdfObjectArray {};for _ ,_gcac :=range _dfbb .Domain {_gbfa .Append (_dg .MakeFloat (_gcac ));};_eacc .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_gbfa );_addbc :=&_dg .PdfObjectArray {};for _ ,_dggdb :=range _dfbb .Range {_addbc .Append (_dg .MakeFloat (_dggdb )); +};_eacc .Set ("\u0052\u0061\u006eg\u0065",_addbc );_gbfgd :=&_dg .PdfObjectArray {};for _ ,_agdcf :=range _dfbb .Size {_gbfgd .Append (_dg .MakeInteger (int64 (_agdcf )));};_eacc .Set ("\u0053\u0069\u007a\u0065",_gbfgd );_eacc .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0053\u0061\u006d\u0070\u006c\u0065",_dg .MakeInteger (int64 (_dfbb .BitsPerSample ))); +if _dfbb .Order !=1{_eacc .Set ("\u004f\u0072\u0064e\u0072",_dg .MakeInteger (int64 (_dfbb .Order )));};_eacc .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_dfbb ._bgdg ))));_dfbb ._bedaf .Stream =_dfbb ._bgdg ;_dfbb ._bedaf .PdfObjectDictionary =_eacc ; +return _dfbb ._bedaf ;}; // ColorToRGB converts a color in Separation colorspace to RGB colorspace. -func (_eeff *PdfColorspaceSpecialSeparation )ColorToRGB (color PdfColor )(PdfColor ,error ){if _eeff .AlternateSpace ==nil {return nil ,_g .New ("\u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0020c\u006f\u006c\u006f\u0072\u0073\u0070\u0061c\u0065\u0020\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); -};return _eeff .AlternateSpace .ColorToRGB (color );};func (_cbbf *PdfAcroForm )signatureFields ()[]*PdfFieldSignature {var _becea []*PdfFieldSignature ;for _ ,_gdgffa :=range _cbbf .AllFields (){switch _dcfe :=_gdgffa .GetContext ().(type ){case *PdfFieldSignature :_eagdd :=_dcfe ; -_becea =append (_becea ,_eagdd );};};return _becea ;};func (_fcbde *PdfWriter )setCatalogVersion (){_fcbde ._cdccb .Set ("\u0056e\u0072\u0073\u0069\u006f\u006e",_aff .MakeName (_e .Sprintf ("\u0025\u0064\u002e%\u0064",_fcbde ._bgeecg .Major ,_fcbde ._bgeecg .Minor ))); -}; +func (_aaed *PdfColorspaceSpecialSeparation )ColorToRGB (color PdfColor )(PdfColor ,error ){if _aaed .AlternateSpace ==nil {return nil ,_bf .New ("\u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0020c\u006f\u006c\u006f\u0072\u0073\u0070\u0061c\u0065\u0020\u0075\u006e\u0064\u0065\u0066\u0069\u006e\u0065\u0064"); +};return _aaed .AlternateSpace .ColorToRGB (color );};func (_cebeg *PdfReader )loadPerms ()(*Permissions ,error ){if _adbed :=_cebeg ._gccfb .Get ("\u0050\u0065\u0072m\u0073");_adbed !=nil {if _cdgdff ,_bbga :=_dg .GetDict (_adbed );_bbga {_ecaff :=_cdgdff .Get ("\u0044\u006f\u0063\u004d\u0044\u0050"); +if _ecaff ==nil {return nil ,nil ;};if _afgfg ,_fbeca :=_dg .GetIndirect (_ecaff );_fbeca {_aadea ,_cfbd :=_cebeg .newPdfSignatureFromIndirect (_afgfg );if _cfbd !=nil {return nil ,_cfbd ;};return NewPermissions (_aadea ),nil ;};return nil ,_b .Errorf ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0044\u006f\u0063M\u0044\u0050\u0020\u0065nt\u0072\u0079"); +};return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0050\u0065\u0072\u006d\u0073\u0020\u0065\u006e\u0074\u0072\u0079");};return nil ,nil ;};func (_beafe *PdfReader )loadForms ()(*PdfAcroForm ,error ){if _beafe ._baad .GetCrypter ()!=nil &&!_beafe ._baad .IsAuthenticated (){return nil ,_b .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); +};_afacg :=_beafe ._gccfb ;_cdge :=_afacg .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d");if _cdge ==nil {return nil ,nil ;};_feaf ,_eecd :=_dg .GetIndirect (_cdge );_cdge =_dg .TraceToDirectObject (_cdge );if _dg .IsNullObject (_cdge ){_ag .Log .Trace ("\u0041\u0063\u0072of\u006f\u0072\u006d\u0020\u0069\u0073\u0020\u0061\u0020n\u0075l\u006c \u006fb\u006a\u0065\u0063\u0074\u0020\u0028\u0065\u006d\u0070\u0074\u0079\u0029\u000a"); +return nil ,nil ;};_bgadf ,_agge :=_dg .GetDict (_cdge );if !_agge {_ag .Log .Debug ("\u0049n\u0076\u0061\u006c\u0069d\u0020\u0041\u0063\u0072\u006fF\u006fr\u006d \u0065\u006e\u0074\u0072\u0079\u0020\u0025T",_cdge );_ag .Log .Debug ("\u0044\u006f\u0065\u0073 n\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0066\u006f\u0072\u006d\u0073"); +return nil ,_b .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0061\u0063\u0072\u006ff\u006fr\u006d \u0065\u006e\u0074\u0072\u0079\u0020\u0025T",_cdge );};_ag .Log .Trace ("\u0048\u0061\u0073\u0020\u0041\u0063\u0072\u006f\u0020f\u006f\u0072\u006d\u0073"); +_ag .Log .Trace ("\u0054\u0072\u0061\u0076\u0065\u0072\u0073\u0065\u0020\u0074\u0068\u0065\u0020\u0041\u0063r\u006ff\u006f\u0072\u006d\u0073\u0020\u0073\u0074\u0072\u0075\u0063\u0074\u0075\u0072\u0065");if !_beafe ._dadcef {_ecaa :=_beafe .traverseObjectData (_bgadf ); +if _ecaa !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0074\u0072a\u0076\u0065\u0072\u0073\u0065\u0020\u0041\u0063\u0072\u006fFo\u0072\u006d\u0073 \u0028%\u0073\u0029",_ecaa ); +return nil ,_ecaa ;};};_fbgfb ,_cedca :=_beafe .newPdfAcroFormFromDict (_feaf ,_bgadf );if _cedca !=nil {return nil ,_cedca ;};_fbgfb ._eeecb =!_eecd ;return _fbgfb ,nil ;}; -// ToPdfObject returns colorspace in a PDF object format [name dictionary] -func (_cbdd *PdfColorspaceLab )ToPdfObject ()_aff .PdfObject {_beeef :=_aff .MakeArray ();_beeef .Append (_aff .MakeName ("\u004c\u0061\u0062"));_bcdfc :=_aff .MakeDict ();if _cbdd .WhitePoint !=nil {_fdgac :=_aff .MakeArray (_aff .MakeFloat (_cbdd .WhitePoint [0]),_aff .MakeFloat (_cbdd .WhitePoint [1]),_aff .MakeFloat (_cbdd .WhitePoint [2])); -_bcdfc .Set ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074",_fdgac );}else {_adg .Log .Error ("\u004c\u0061\u0062: \u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0057h\u0069t\u0065P\u006fi\u006e\u0074\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029"); -};if _cbdd .BlackPoint !=nil {_ecddb :=_aff .MakeArray (_aff .MakeFloat (_cbdd .BlackPoint [0]),_aff .MakeFloat (_cbdd .BlackPoint [1]),_aff .MakeFloat (_cbdd .BlackPoint [2]));_bcdfc .Set ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074",_ecddb ); -};if _cbdd .Range !=nil {_ecge :=_aff .MakeArray (_aff .MakeFloat (_cbdd .Range [0]),_aff .MakeFloat (_cbdd .Range [1]),_aff .MakeFloat (_cbdd .Range [2]),_aff .MakeFloat (_cbdd .Range [3]));_bcdfc .Set ("\u0052\u0061\u006eg\u0065",_ecge );};_beeef .Append (_bcdfc ); -if _cbdd ._bccfg !=nil {_cbdd ._bccfg .PdfObject =_beeef ;return _cbdd ._bccfg ;};return _beeef ;}; - -// Duplicate creates a duplicate page based on the current one and returns it. -func (_ddgac *PdfPage )Duplicate ()*PdfPage {_abbge :=*_ddgac ;_abbge ._bbdac =_aff .MakeDict ();_abbge ._fage =_aff .MakeIndirectObject (_abbge ._bbdac );_abbge ._bfce =*_abbge ._bbdac ;return &_abbge ;}; +// ColorToRGB converts a ICCBased color to an RGB color. +func (_fdfg *PdfColorspaceICCBased )ColorToRGB (color PdfColor )(PdfColor ,error ){if _fdfg .Alternate ==nil {_ag .Log .Debug ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); +if _fdfg .N ==1{_ag .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061y\u0020\u0028\u004e\u003d\u0031\u0029"); +_cgbb :=NewPdfColorspaceDeviceGray ();return _cgbb .ColorToRGB (color );}else if _fdfg .N ==3{_ag .Log .Debug ("\u0049\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006eg\u0020\u0044\u0065\u0076\u0069\u0063e\u0052\u0047B\u0020\u0028N\u003d3\u0029"); +return color ,nil ;}else if _fdfg .N ==4{_ag .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059K\u0020\u0028\u004e\u003d\u0034\u0029"); +_gdff :=NewPdfColorspaceDeviceCMYK ();return _gdff .ColorToRGB (color );}else {return nil ,_bf .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); +};};_ag .Log .Trace ("\u0049\u0043\u0043 \u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061t\u0069\u0076\u0065\u003a\u0020\u0025\u0023\u0076",_fdfg ); +return _fdfg .Alternate .ColorToRGB (color );}; -// AddCustomInfo adds a custom info into document info dictionary. -func (_abfee *PdfInfo )AddCustomInfo (name string ,value string )error {if _abfee ._cgbc ==nil {_abfee ._cgbc =_aff .MakeDict ();};if _ ,_acaa :=_abcgc [name ];_acaa {return _e .Errorf ("\u0063\u0061\u006e\u006e\u006ft\u0020\u0075\u0073\u0065\u0020\u0073\u0074\u0061\u006e\u0064\u0061\u0072\u0064 \u0069\u006e\u0066\u006f\u0020\u006b\u0065\u0079\u0020\u0025\u0073\u0020\u0061\u0073\u0020\u0063\u0075\u0073\u0074\u006f\u006d\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u006b\u0065y",name ); -};_abfee ._cgbc .SetIfNotNil (*_aff .MakeName (name ),_aff .MakeString (value ));return nil ;}; +// GetRuneMetrics returns the character metrics for the specified rune. +// A bool flag is returned to indicate whether or not the entry was found. +func (_gabg pdfFontType0 )GetRuneMetrics (r rune )(_bbg .CharMetrics ,bool ){if _gabg .DescendantFont ==nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0061\u006e\u0074\u002e\u0020\u0066\u006f\u006et=\u0025\u0073",_gabg ); +return _bbg .CharMetrics {},false ;};return _gabg .DescendantFont .GetRuneMetrics (r );};func (_ebdgg *PdfWriter )seekByName (_cdgbbf _dg .PdfObject ,_dfaec []string ,_bcaab string )([]_dg .PdfObject ,error ){_ag .Log .Trace ("\u0053\u0065\u0065\u006b\u0020\u0062\u0079\u0020\u006e\u0061\u006d\u0065.\u002e\u0020\u0025\u0054",_cdgbbf ); +var _eada []_dg .PdfObject ;if _faeed ,_daecea :=_cdgbbf .(*_dg .PdfIndirectObject );_daecea {return _ebdgg .seekByName (_faeed .PdfObject ,_dfaec ,_bcaab );};if _gfgba ,_bgbbd :=_cdgbbf .(*_dg .PdfObjectStream );_bgbbd {return _ebdgg .seekByName (_gfgba .PdfObjectDictionary ,_dfaec ,_bcaab ); +};if _gaaae ,_degg :=_cdgbbf .(*_dg .PdfObjectDictionary );_degg {_ag .Log .Trace ("\u0044\u0069\u0063\u0074");for _ ,_deaag :=range _gaaae .Keys (){_cfaff :=_gaaae .Get (_deaag );if string (_deaag )==_bcaab {_eada =append (_eada ,_cfaff );};for _ ,_bddcd :=range _dfaec {if string (_deaag )==_bddcd {_ag .Log .Trace ("\u0046\u006f\u006c\u006c\u006f\u0077\u0020\u006b\u0065\u0079\u0020\u0025\u0073",_bddcd ); +_ddcdf ,_agaee :=_ebdgg .seekByName (_cfaff ,_dfaec ,_bcaab );if _agaee !=nil {return _eada ,_agaee ;};_eada =append (_eada ,_ddcdf ...);break ;};};};return _eada ,nil ;};return _eada ,nil ;}; -// SetName sets the `Name` field of the signature. -func (_egggg *PdfSignature )SetName (name string ){_egggg .Name =_aff .MakeString (name )};func (_ffccb *PdfPage )setContainer (_gcgbe *_aff .PdfIndirectObject ){_gcgbe .PdfObject =_ffccb ._bbdac ;_ffccb ._fage =_gcgbe ;}; +// Encrypt encrypts the output file with a specified user/owner password. +func (_agadd *PdfWriter )Encrypt (userPass ,ownerPass []byte ,options *EncryptOptions )error {_dcdeg :=RC4_128bit ;if options !=nil {_dcdeg =options .Algorithm ;};_ceagc :=_gbd .PermOwner ;if options !=nil {_ceagc =options .Permissions ;};var _gcaba _afb .Filter ; +switch _dcdeg {case RC4_128bit :_gcaba =_afb .NewFilterV2 (16);case AES_128bit :_gcaba =_afb .NewFilterAESV2 ();case AES_256bit :_gcaba =_afb .NewFilterAESV3 ();default:return _b .Errorf ("\u0075n\u0073\u0075\u0070\u0070o\u0072\u0074\u0065\u0064\u0020a\u006cg\u006fr\u0069\u0074\u0068\u006d\u003a\u0020\u0025v",options .Algorithm ); +};_deccab ,_gdeed ,_fdca :=_dg .PdfCryptNewEncrypt (_gcaba ,userPass ,ownerPass ,_ceagc );if _fdca !=nil {return _fdca ;};_agadd ._fadcg =_deccab ;if _gdeed .Major !=0{_agadd .SetVersion (_gdeed .Major ,_gdeed .Minor );};_agadd ._fbfbf =_gdeed .Encrypt ; +_agadd ._cedaf ,_agadd ._ceaab =_gdeed .ID0 ,_gdeed .ID1 ;_gdbda :=_dg .MakeIndirectObject (_gdeed .Encrypt );_agadd ._acdag =_gdbda ;_agadd .addObject (_gdbda );return nil ;}; -// NewPdfOutputIntentFromPdfObject creates a new PdfOutputIntent from the input core.PdfObject. -func NewPdfOutputIntentFromPdfObject (object _aff .PdfObject )(*PdfOutputIntent ,error ){_egbb :=&PdfOutputIntent {};if _eggfcd :=_egbb .ParsePdfObject (object );_eggfcd !=nil {return nil ,_eggfcd ;};return _egbb ,nil ;}; +// ColorFromPdfObjects gets the color from a series of pdf objects (4 for cmyk). +func (_baee *PdfColorspaceDeviceCMYK )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=4{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_bbbce ,_cbcgc :=_dg .GetNumbersAsFloat (objects ); +if _cbcgc !=nil {return nil ,_cbcgc ;};return _baee .ColorFromFloats (_bbbce );}; -// PdfActionLaunch represents a launch action. -type PdfActionLaunch struct{*PdfAction ;F *PdfFilespec ;Win _aff .PdfObject ;Mac _aff .PdfObject ;Unix _aff .PdfObject ;NewWindow _aff .PdfObject ;};func _efecb (_cegfa *_gd .ImageBase )(_ccbba Image ){_ccbba .Width =int64 (_cegfa .Width );_ccbba .Height =int64 (_cegfa .Height ); -_ccbba .BitsPerComponent =int64 (_cegfa .BitsPerComponent );_ccbba .ColorComponents =_cegfa .ColorComponents ;_ccbba .Data =_cegfa .Data ;_ccbba ._edgef =_cegfa .Decode ;_ccbba ._becb =_cegfa .Alpha ;return _ccbba ;};func _ecgcg ()string {_aebda .Lock (); -defer _aebda .Unlock ();return _cacc };func (_gbegg *PdfWriter )writeObjectsInStreams (_fbgad map[_aff .PdfObject ]bool )error {for _ ,_efdab :=range _gbegg ._babcd {if _gefea :=_fbgad [_efdab ];_gefea {continue ;};_eegge :=int64 (0);switch _bbbca :=_efdab .(type ){case *_aff .PdfIndirectObject :_eegge =_bbbca .ObjectNumber ; -case *_aff .PdfObjectStream :_eegge =_bbbca .ObjectNumber ;case *_aff .PdfObjectStreams :_eegge =_bbbca .ObjectNumber ;default:_adg .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0055n\u0073\u0075\u0070\u0070\u006f\u0072\u0074e\u0064\u0020\u0074\u0079\u0070\u0065 \u0069\u006e\u0020\u0077\u0072\u0069\u0074\u0065\u0072\u0020\u006fb\u006a\u0065\u0063\u0074\u0073\u003a\u0020\u0025\u0054",_efdab ); -return ErrTypeCheck ;};if _gbegg ._fcgf !=nil &&_efdab !=_gbegg ._fdedd {_feeg :=_gbegg ._fcgf .Encrypt (_efdab ,_eegge ,0);if _feeg !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0065\u006e\u0063\u0072\u0079\u0070\u0074\u0069\u006e\u0067\u0020(%\u0073\u0029",_feeg ); -return _feeg ;};};_gbegg .writeObject (int (_eegge ),_efdab );};return nil ;}; +// PdfOutputIntent provides a means for matching the color characteristics of a PDF document with +// those of a target output device. +// Multiple PdfOutputIntents allows the production process to be customized to the expected workflow and the specific +// tools available. +type PdfOutputIntent struct{ -// NewPdfAnnotationPrinterMark returns a new printermark annotation. -func NewPdfAnnotationPrinterMark ()*PdfAnnotationPrinterMark {_addb :=NewPdfAnnotation ();_efaa :=&PdfAnnotationPrinterMark {};_efaa .PdfAnnotation =_addb ;_addb .SetContext (_efaa );return _efaa ;}; +// Type is an optional PDF object that this dictionary describes. +// If present, must be OutputIntent for an output intent dictionary. +Type string ; -// SetFilter sets compression filter. Decodes with current filter sets and -// encodes the data with the new filter. -func (_fgagga *XObjectImage )SetFilter (encoder _aff .StreamEncoder )error {_abaa :=_fgagga .Stream ;_ageac ,_fdeeff :=_fgagga .Filter .DecodeBytes (_abaa );if _fdeeff !=nil {return _fdeeff ;};_fgagga .Filter =encoder ;encoder .UpdateParams (_fgagga .getParamsDict ()); -_abaa ,_fdeeff =encoder .EncodeBytes (_ageac );if _fdeeff !=nil {return _fdeeff ;};_fgagga .Stream =_abaa ;return nil ;};func (_face *PdfReader )loadAnnotations (_cbdba _aff .PdfObject )([]*PdfAnnotation ,error ){_agebc ,_dbaaed :=_aff .GetArray (_cbdba ); -if !_dbaaed {return nil ,_e .Errorf ("\u0041\u006e\u006e\u006fts\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079");};var _befecb []*PdfAnnotation ;for _ ,_gbgd :=range _agebc .Elements (){_gbgd =_aff .ResolveReference (_gbgd ); -if _ ,_ffdeg :=_gbgd .(*_aff .PdfObjectNull );_ffdeg {continue ;};_afdd ,_fdfc :=_gbgd .(*_aff .PdfObjectDictionary );_dadef ,_cbffd :=_gbgd .(*_aff .PdfIndirectObject );if _fdfc {_dadef =&_aff .PdfIndirectObject {};_dadef .PdfObject =_afdd ;}else {if !_cbffd {return nil ,_e .Errorf ("\u0061\u006eno\u0074\u0061\u0074i\u006f\u006e\u0020\u006eot \u0069n \u0061\u006e\u0020\u0069\u006e\u0064\u0069re\u0063\u0074\u0020\u006f\u0062\u006a\u0065c\u0074"); -};};_edcedg ,_cagce :=_face .newPdfAnnotationFromIndirectObject (_dadef );if _cagce !=nil {return nil ,_cagce ;};switch _cdcc :=_edcedg .GetContext ().(type ){case *PdfAnnotationWidget :for _ ,_ffbbce :=range _face .AcroForm .AllFields (){if _ffbbce ._dfbfd ==_cdcc .Parent {_cdcc ._afae =_ffbbce ; -break ;};};};if _edcedg !=nil {_befecb =append (_befecb ,_edcedg );};};return _befecb ,nil ;};func (_geef *PdfReader )newPdfAnnotationPolygonFromDict (_cdgeg *_aff .PdfObjectDictionary )(*PdfAnnotationPolygon ,error ){_bba :=PdfAnnotationPolygon {};_cec ,_gde :=_geef .newPdfAnnotationMarkupFromDict (_cdgeg ); -if _gde !=nil {return nil ,_gde ;};_bba .PdfAnnotationMarkup =_cec ;_bba .Vertices =_cdgeg .Get ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073");_bba .LE =_cdgeg .Get ("\u004c\u0045");_bba .BS =_cdgeg .Get ("\u0042\u0053");_bba .IC =_cdgeg .Get ("\u0049\u0043"); -_bba .BE =_cdgeg .Get ("\u0042\u0045");_bba .IT =_cdgeg .Get ("\u0049\u0054");_bba .Measure =_cdgeg .Get ("\u004de\u0061\u0073\u0075\u0072\u0065");return &_bba ,nil ;};func (_dca *PdfReader )newPdfActionSoundFromDict (_bde *_aff .PdfObjectDictionary )(*PdfActionSound ,error ){return &PdfActionSound {Sound :_bde .Get ("\u0053\u006f\u0075n\u0064"),Volume :_bde .Get ("\u0056\u006f\u006c\u0075\u006d\u0065"),Synchronous :_bde .Get ("S\u0079\u006e\u0063\u0068\u0072\u006f\u006e\u006f\u0075\u0073"),Repeat :_bde .Get ("\u0052\u0065\u0070\u0065\u0061\u0074"),Mix :_bde .Get ("\u004d\u0069\u0078")},nil ; -};func _eead (_cagc []byte )[]byte {const _cbeeg =52845;const _dfcf =22719;_bfebb :=55665;for _ ,_affcf :=range _cagc [:4]{_bfebb =(int (_affcf )+_bfebb )*_cbeeg +_dfcf ;};_acdb :=make ([]byte ,len (_cagc )-4);for _dabc ,_cabb :=range _cagc [4:]{_acdb [_dabc ]=byte (int (_cabb )^_bfebb >>8); -_bfebb =(int (_cabb )+_bfebb )*_cbeeg +_dfcf ;};return _acdb ;}; +// S defines the OutputIntent subtype which should match the standard used in given document i.e: +// for PDF/X use PdfOutputIntentTypeX. +S PdfOutputIntentType ; -// Clear clears flag fl from the flag and returns the resulting flag. -func (_gadba FieldFlag )Clear (fl FieldFlag )FieldFlag {return FieldFlag (_gadba .Mask ()&^fl .Mask ())};func (_adfg *pdfCIDFontType0 )getFontDescriptor ()*PdfFontDescriptor {return _adfg ._ggca }; +// OutputCondition is an optional field that is identifying the intended output device or production condition in +// human-readable form. This is preferred method of defining such a string for presentation to the user. +OutputCondition string ; -// ToPdfObject returns the PdfFontDescriptor as a PDF dictionary inside an indirect object. -func (_dfgdg *PdfFontDescriptor )ToPdfObject ()_aff .PdfObject {_dcefc :=_aff .MakeDict ();if _dfgdg ._cade ==nil {_dfgdg ._cade =&_aff .PdfIndirectObject {};};_dfgdg ._cade .PdfObject =_dcefc ;_dcefc .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072")); -if _dfgdg .FontName !=nil {_dcefc .Set ("\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065",_dfgdg .FontName );};if _dfgdg .FontFamily !=nil {_dcefc .Set ("\u0046\u006f\u006e\u0074\u0046\u0061\u006d\u0069\u006c\u0079",_dfgdg .FontFamily );};if _dfgdg .FontStretch !=nil {_dcefc .Set ("F\u006f\u006e\u0074\u0053\u0074\u0072\u0065\u0074\u0063\u0068",_dfgdg .FontStretch ); -};if _dfgdg .FontWeight !=nil {_dcefc .Set ("\u0046\u006f\u006e\u0074\u0057\u0065\u0069\u0067\u0068\u0074",_dfgdg .FontWeight );};if _dfgdg .Flags !=nil {_dcefc .Set ("\u0046\u006c\u0061g\u0073",_dfgdg .Flags );};if _dfgdg .FontBBox !=nil {_dcefc .Set ("\u0046\u006f\u006e\u0074\u0042\u0042\u006f\u0078",_dfgdg .FontBBox ); -};if _dfgdg .ItalicAngle !=nil {_dcefc .Set ("I\u0074\u0061\u006c\u0069\u0063\u0041\u006e\u0067\u006c\u0065",_dfgdg .ItalicAngle );};if _dfgdg .Ascent !=nil {_dcefc .Set ("\u0041\u0073\u0063\u0065\u006e\u0074",_dfgdg .Ascent );};if _dfgdg .Descent !=nil {_dcefc .Set ("\u0044e\u0073\u0063\u0065\u006e\u0074",_dfgdg .Descent ); -};if _dfgdg .Leading !=nil {_dcefc .Set ("\u004ce\u0061\u0064\u0069\u006e\u0067",_dfgdg .Leading );};if _dfgdg .CapHeight !=nil {_dcefc .Set ("\u0043a\u0070\u0048\u0065\u0069\u0067\u0068t",_dfgdg .CapHeight );};if _dfgdg .XHeight !=nil {_dcefc .Set ("\u0058H\u0065\u0069\u0067\u0068\u0074",_dfgdg .XHeight ); -};if _dfgdg .StemV !=nil {_dcefc .Set ("\u0053\u0074\u0065m\u0056",_dfgdg .StemV );};if _dfgdg .StemH !=nil {_dcefc .Set ("\u0053\u0074\u0065m\u0048",_dfgdg .StemH );};if _dfgdg .AvgWidth !=nil {_dcefc .Set ("\u0041\u0076\u0067\u0057\u0069\u0064\u0074\u0068",_dfgdg .AvgWidth ); -};if _dfgdg .MaxWidth !=nil {_dcefc .Set ("\u004d\u0061\u0078\u0057\u0069\u0064\u0074\u0068",_dfgdg .MaxWidth );};if _dfgdg .MissingWidth !=nil {_dcefc .Set ("\u004d\u0069\u0073s\u0069\u006e\u0067\u0057\u0069\u0064\u0074\u0068",_dfgdg .MissingWidth );}; -if _dfgdg .FontFile !=nil {_dcefc .Set ("\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065",_dfgdg .FontFile );};if _dfgdg .FontFile2 !=nil {_dcefc .Set ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00652",_dfgdg .FontFile2 );};if _dfgdg .FontFile3 !=nil {_dcefc .Set ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00653",_dfgdg .FontFile3 ); -};if _dfgdg .CharSet !=nil {_dcefc .Set ("\u0043h\u0061\u0072\u0053\u0065\u0074",_dfgdg .CharSet );};if _dfgdg .Style !=nil {_dcefc .Set ("\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065",_dfgdg .FontName );};if _dfgdg .Lang !=nil {_dcefc .Set ("\u004c\u0061\u006e\u0067",_dfgdg .Lang ); -};if _dfgdg .FD !=nil {_dcefc .Set ("\u0046\u0044",_dfgdg .FD );};if _dfgdg .CIDSet !=nil {_dcefc .Set ("\u0043\u0049\u0044\u0053\u0065\u0074",_dfgdg .CIDSet );};return _dfgdg ._cade ;}; +// OutputConditionIdentifier is a required field identifying the intended output device or production condition in +// human or machine-readable form. If human-readable, this string may be used +// in lieu of an OutputCondition for presentation to the user. +// A typical value for this entry would be the name of a production condition maintained +// in an industry-standard registry such as the ICC Characterization Data Registry +// If the intended production condition is not a recognized standard, the value Custom is recommended for this entry. +// the DestOutputProfile entry defines the ICC profile, and the Info entry is used for further +// human-readable identification. +OutputConditionIdentifier string ; -// PdfOutlineTreeNode contains common fields used by the outline and outline -// item objects. -type PdfOutlineTreeNode struct{_gecd interface{};First *PdfOutlineTreeNode ;Last *PdfOutlineTreeNode ;}; +// RegistryName is an optional string field (conventionally URI) identifying the registry in which the condition +// designated by OutputConditionIdentifier is defined. +RegistryName string ; -// GetCharMetrics returns the character metrics for the specified character code. A bool flag is -// returned to indicate whether or not the entry was found in the glyph to charcode mapping. -// How it works: -// 1. Return a value the /Widths array (charWidths) if there is one. -// 2. If the font has the same name as a standard 14 font then return width=250. -// 3. Otherwise return no match and let the caller substitute a default. -func (_abce pdfFontSimple )GetCharMetrics (code _eee .CharCode )(_bcd .CharMetrics ,bool ){if _edfdb ,_dggfc :=_abce ._ecgd [code ];_dggfc {return _bcd .CharMetrics {Wx :_edfdb },true ;};if _bcd .IsStdFont (_bcd .StdFontName (_abce ._abed )){return _bcd .CharMetrics {Wx :250},true ; -};return _bcd .CharMetrics {},false ;}; +// Info is a required field if OutputConditionIdentifier does not specify a standard production condition. +// A human-readable text string containing additional information or comments about intended +// target device or production condition. +Info string ; -// PdfActionGoTo represents a GoTo action. -type PdfActionGoTo struct{*PdfAction ;D _aff .PdfObject ;};func _abegfg (_dbgda *_aff .PdfObjectDictionary )(*PdfShadingType4 ,error ){_afdac :=PdfShadingType4 {};_agdga :=_dbgda .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065"); -if _agdga ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_ebgdd ,_decec :=_agdga .(*_aff .PdfObjectInteger );if !_decec {_adg .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_agdga ); -return nil ,_aff .ErrTypeError ;};_afdac .BitsPerCoordinate =_ebgdd ;_agdga =_dbgda .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _agdga ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); -return nil ,ErrRequiredAttributeMissing ;};_ebgdd ,_decec =_agdga .(*_aff .PdfObjectInteger );if !_decec {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_agdga ); -return nil ,_aff .ErrTypeError ;};_afdac .BitsPerComponent =_ebgdd ;_agdga =_dbgda .Get ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067");if _agdga ==nil {_adg .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065r\u0046\u006c\u0061\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_ebgdd ,_decec =_agdga .(*_aff .PdfObjectInteger );if !_decec {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072F\u006c\u0061\u0067\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_agdga ); -return nil ,_aff .ErrTypeError ;};_afdac .BitsPerComponent =_ebgdd ;_agdga =_dbgda .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _agdga ==nil {_adg .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_gabbg ,_decec :=_agdga .(*_aff .PdfObjectArray );if !_decec {_adg .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_agdga ); -return nil ,_aff .ErrTypeError ;};_afdac .Decode =_gabbg ;_agdga =_dbgda .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _agdga ==nil {_adg .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); -return nil ,ErrRequiredAttributeMissing ;};_afdac .Function =[]PdfFunction {};if _agbg ,_beac :=_agdga .(*_aff .PdfObjectArray );_beac {for _ ,_acgac :=range _agbg .Elements (){_dgbb ,_faedb :=_fdfeg (_acgac );if _faedb !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_faedb ); -return nil ,_faedb ;};_afdac .Function =append (_afdac .Function ,_dgbb );};}else {_fccca ,_dgcdf :=_fdfeg (_agdga );if _dgcdf !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_dgcdf ); -return nil ,_dgcdf ;};_afdac .Function =append (_afdac .Function ,_fccca );};return &_afdac ,nil ;}; +// DestOutputProfile is required if OutputConditionIdentifier does not specify a standard production condition. +// It is an ICC profile stream defining the transformation from the PDF document's source colors to output device colorants. +DestOutputProfile []byte ; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_ecbcfg *PdfShadingType1 )ToPdfObject ()_aff .PdfObject {_ecbcfg .PdfShading .ToPdfObject ();_caaeg ,_cbcc :=_ecbcfg .getShadingDict ();if _cbcc !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _ecbcfg .Domain !=nil {_caaeg .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_ecbcfg .Domain );};if _ecbcfg .Matrix !=nil {_caaeg .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_ecbcfg .Matrix );};if _ecbcfg .Function !=nil {if len (_ecbcfg .Function )==1{_caaeg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_ecbcfg .Function [0].ToPdfObject ()); -}else {_eagf :=_aff .MakeArray ();for _ ,_fcacc :=range _ecbcfg .Function {_eagf .Append (_fcacc .ToPdfObject ());};_caaeg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_eagf );};};return _ecbcfg ._bdacg ;}; +// ColorComponents is the number of color components supported by given output profile. +ColorComponents int ;_cfaef *_dg .PdfObjectDictionary ;}; -// Hasher is the interface that wraps the basic Write method. -type Hasher interface{Write (_cfcfg []byte )(_fdddc int ,_dfdfg error );}; +// PdfOutputIntentType is the subtype of the given PdfOutputIntent. +type PdfOutputIntentType int ; -// AppendContentStream adds content stream by string. Appends to the last -// contentstream instance if many. -func (_efefa *PdfPage )AppendContentStream (contentStr string )error {_cdca ,_cbdbb :=_efefa .GetContentStreams ();if _cbdbb !=nil {return _cbdbb ;};if len (_cdca )==0{_cdca =[]string {contentStr };return _efefa .SetContentStreams (_cdca ,_aff .NewFlateEncoder ()); -};var _dcdbe _af .Buffer ;_dcdbe .WriteString (_cdca [len (_cdca )-1]);_dcdbe .WriteString ("\u000a");_dcdbe .WriteString (contentStr );_cdca [len (_cdca )-1]=_dcdbe .String ();return _efefa .SetContentStreams (_cdca ,_aff .NewFlateEncoder ());}; +// DecodeArray returns the component range values for the Separation colorspace. +func (_gcec *PdfColorspaceSpecialSeparation )DecodeArray ()[]float64 {return []float64 {0,1.0}}; -// NewPdfAnnotationText returns a new text annotation. -func NewPdfAnnotationText ()*PdfAnnotationText {_efa :=NewPdfAnnotation ();_fff :=&PdfAnnotationText {};_fff .PdfAnnotation =_efa ;_fff .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_efa .SetContext (_fff );return _fff ;};func (_gfc *PdfReader )newPdfActionGotoFromDict (_gea *_aff .PdfObjectDictionary )(*PdfActionGoTo ,error ){return &PdfActionGoTo {D :_gea .Get ("\u0044")},nil ; +// ToPdfObject converts the pdfCIDFontType2 to a PDF representation. +func (_bcbbd *pdfCIDFontType2 )ToPdfObject ()_dg .PdfObject {if _bcbbd ._ddccf ==nil {_bcbbd ._ddccf =&_dg .PdfIndirectObject {};};_dgae :=_bcbbd .baseFields ().asPdfObjectDictionary ("\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"); +_bcbbd ._ddccf .PdfObject =_dgae ;if _bcbbd .CIDSystemInfo !=nil {_dgae .Set ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f",_bcbbd .CIDSystemInfo );};if _bcbbd .DW !=nil {_dgae .Set ("\u0044\u0057",_bcbbd .DW );};if _bcbbd .DW2 !=nil {_dgae .Set ("\u0044\u0057\u0032",_bcbbd .DW2 ); +};if _bcbbd .W !=nil {_dgae .Set ("\u0057",_bcbbd .W );};if _bcbbd .W2 !=nil {_dgae .Set ("\u0057\u0032",_bcbbd .W2 );};if _bcbbd .CIDToGIDMap !=nil {_dgae .Set ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070",_bcbbd .CIDToGIDMap );};return _bcbbd ._ddccf ; }; -// GetNumComponents returns the number of color components (3 for RGB). -func (_bbfa *PdfColorDeviceRGB )GetNumComponents ()int {return 3}; - -// PdfActionType represents an action type in PDF (section 12.6.4 p. 417). -type PdfActionType string ; - -// ImageToRGB convert an indexed image to RGB. -func (_acdf *PdfColorspaceSpecialIndexed )ImageToRGB (img Image )(Image ,error ){N :=_acdf .Base .GetNumComponents ();if N < 1{return Image {},_e .Errorf ("\u0062\u0061d \u0062\u0061\u0073e\u0020\u0063\u006f\u006cors\u0070ac\u0065\u0020\u004e\u0075\u006d\u0043\u006fmp\u006f\u006e\u0065\u006e\u0074\u0073\u003d%\u0064",N ); -};_gcafb :=_gd .NewImageBase (int (img .Width ),int (img .Height ),8,N ,nil ,img ._becb ,img ._edgef );_deb :=_aae .NewReader (img .getBase ());_cceb :=_aae .NewWriter (_gcafb );var (_fabdb uint32 ;_gaaec int ;_gabdf error ;);for {_fabdb ,_gabdf =_deb .ReadSample (); -if _gabdf ==_ega .EOF {break ;}else if _gabdf !=nil {return img ,_gabdf ;};_gaaec =int (_fabdb );_adg .Log .Trace ("\u0049\u006ed\u0065\u0078\u0065\u0064\u003a\u0020\u0069\u006e\u0064\u0065\u0078\u003d\u0025\u0064\u0020\u004e\u003d\u0025\u0064\u0020\u006c\u0075t=\u0025\u0064",_gaaec ,N ,len (_acdf ._ecfb )); -if (_gaaec +1)*N > len (_acdf ._ecfb ){_gaaec =len (_acdf ._ecfb )/N -1;_adg .Log .Trace ("C\u006c\u0069\u0070\u0070in\u0067 \u0074\u006f\u0020\u0069\u006ed\u0065\u0078\u003a\u0020\u0025\u0064",_gaaec );if _gaaec < 0{_adg .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0043a\u006e\u0027\u0074\u0020\u0063\u006c\u0069p\u0020\u0069\u006e\u0064\u0065\u0078.\u0020\u0049\u0073\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006ce\u0020\u0064\u0061\u006d\u0061\u0067\u0065\u0064\u003f"); -break ;};};for _afcc :=_gaaec *N ;_afcc < (_gaaec +1)*N ;_afcc ++{if _gabdf =_cceb .WriteSample (uint32 (_acdf ._ecfb [_afcc ]));_gabdf !=nil {return img ,_gabdf ;};};};return _acdf .Base .ImageToRGB (_efecb (&_gcafb ));}; - -// SetLocation sets the `Location` field of the signature. -func (_eega *PdfSignature )SetLocation (location string ){_eega .Location =_aff .MakeString (location )};func (_gadg *PdfColorspaceDeviceCMYK )String ()string {return "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b";}; +// GetNumComponents returns the number of color components (4 for CMYK32). +func (_bfcb *PdfColorDeviceCMYK )GetNumComponents ()int {return 4}; -// IsCID returns true if the underlying font is CID. -func (_geecgg *PdfFont )IsCID ()bool {return _geecgg .baseFields ().isCIDFont ()};const (_egde =0x00001;_edbg =0x00002;_cbda =0x00004;_fbabe =0x00008;_gffbb =0x00020;_degcc =0x00040;_ecbde =0x10000;_gfdfg =0x20000;_dedg =0x40000;);func (_agbfg PdfFont )actualFont ()pdfFont {if _agbfg ._gebd ==nil {_adg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0061\u0063\u0074\u0075\u0061\u006c\u0046\u006f\u006e\u0074\u002e\u0020\u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c.\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_agbfg ); -};return _agbfg ._gebd ;}; +// PdfActionSound represents a sound action. +type PdfActionSound struct{*PdfAction ;Sound _dg .PdfObject ;Volume _dg .PdfObject ;Synchronous _dg .PdfObject ;Repeat _dg .PdfObject ;Mix _dg .PdfObject ;}; -// GetOutlines returns a high-level Outline object, based on the outline tree -// of the reader. -func (_bbgcg *PdfReader )GetOutlines ()(*Outline ,error ){if _bbgcg ==nil {return nil ,_g .New ("\u0063\u0061n\u006e\u006f\u0074\u0020c\u0072\u0065a\u0074\u0065\u0020\u006f\u0075\u0074\u006c\u0069n\u0065\u0020\u0066\u0072\u006f\u006d\u0020\u006e\u0069\u006c\u0020\u0072e\u0061\u0064\u0065\u0072"); -};_faeff :=_bbgcg .GetOutlineTree ();if _faeff ==nil {return nil ,_g .New ("\u0074\u0068\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0072\u0065\u0061\u0064e\u0072\u0020\u0064\u006f\u0065\u0073\u0020n\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0020o\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0074\u0072\u0065\u0065"); -};var _edeadc func (_dbced *PdfOutlineTreeNode ,_cgge *[]*OutlineItem );_edeadc =func (_abdcb *PdfOutlineTreeNode ,_egebbg *[]*OutlineItem ){if _abdcb ==nil {return ;};if _abdcb ._gecd ==nil {_adg .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020m\u0069\u0073\u0073\u0069ng \u006fut\u006c\u0069\u006e\u0065\u0020\u0065\u006etr\u0079\u0020\u0063\u006f\u006e\u0074\u0065x\u0074"); -return ;};var _ecgfb *OutlineItem ;if _eafgf ,_gbada :=_abdcb ._gecd .(*PdfOutlineItem );_gbada {_agab :=_eafgf .Dest ;if (_agab ==nil ||_aff .IsNullObject (_agab ))&&_eafgf .A !=nil {if _acafd ,_gfcgf :=_aff .GetDict (_eafgf .A );_gfcgf {if _dbedd ,_ccebb :=_aff .GetArray (_acafd .Get ("\u0044")); -_ccebb {_agab =_dbedd ;}else {_afde ,_ebabgd :=_aff .GetString (_acafd .Get ("\u0044"));if !_ebabgd {return ;};_egace ,_ebabgd :=_bbgcg ._dcadd .Get ("\u004e\u0061\u006de\u0073").(*_aff .PdfObjectReference );if !_ebabgd {return ;};_afafg ,_gbecc :=_bbgcg ._gaece .LookupByReference (*_egace ); -if _gbecc !=nil {_adg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020\u006e\u0061\u006d\u0065\u0073\u0020\u0072\u0065\u0066\u0065\u0072e\u006e\u0063\u0065\u0020\u0028\u0025\u0073\u0029",_gbecc .Error ()); -return ;};_acbf ,_ebabgd :=_afafg .(*_aff .PdfIndirectObject );if !_ebabgd {return ;};_aabad :=map[_aff .PdfObject ]struct{}{};_gbecc =_bbgcg .buildNameNodes (_acbf ,_aabad );if _gbecc !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0062\u0075\u0069\u006c\u0064\u0020\u006ea\u006d\u0065\u0020\u006e\u006fd\u0065\u0073 \u0028\u0025\u0073\u0029",_gbecc .Error ()); -return ;};for _eeca :=range _aabad {_cbga ,_befge :=_aff .GetDict (_eeca );if !_befge {continue ;};_fbafa ,_befge :=_aff .GetArray (_cbga .Get ("\u004e\u0061\u006de\u0073"));if !_befge {continue ;};for _ffccg ,_aacf :=range _fbafa .Elements (){switch _aacf .(type ){case *_aff .PdfObjectString :if _aacf .String ()==_afde .String (){if _bfafg :=_fbafa .Get (_ffccg +1); -_bfafg !=nil {if _gaged ,_cgedg :=_aff .GetDict (_bfafg );_cgedg {_agab =_gaged .Get ("\u0044");break ;};};};};};};};};};var _gaebe OutlineDest ;if _agab !=nil &&!_aff .IsNullObject (_agab ){if _fedc ,_fdada :=_dfede (_agab ,_bbgcg );_fdada ==nil {_gaebe =*_fedc ; -}else {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020p\u0061\u0072\u0073\u0065\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0064\u0065\u0073\u0074\u0020\u0028\u0025\u0076\u0029\u003a\u0020\u0025\u0076",_agab ,_fdada ); -};};_ecgfb =NewOutlineItem (_eafgf .Title .Decoded (),_gaebe );*_egebbg =append (*_egebbg ,_ecgfb );if _eafgf .Next !=nil {_edeadc (_eafgf .Next ,_egebbg );};};if _abdcb .First !=nil {if _ecgfb !=nil {_egebbg =&_ecgfb .Entries ;};_edeadc (_abdcb .First ,_egebbg ); -};};_facg :=NewOutline ();_edeadc (_faeff ,&_facg .Entries );return _facg ,nil ;}; +// PdfActionRendition represents a Rendition action. +type PdfActionRendition struct{*PdfAction ;R _dg .PdfObject ;AN _dg .PdfObject ;OP _dg .PdfObject ;JS _dg .PdfObject ;}; -// ToPdfObject implements interface PdfModel. -func (_cedc *PdfAnnotationFileAttachment )ToPdfObject ()_aff .PdfObject {_cedc .PdfAnnotation .ToPdfObject ();_dfbec :=_cedc ._ccfb ;_feca :=_dfbec .PdfObject .(*_aff .PdfObjectDictionary );_cedc .PdfAnnotationMarkup .appendToPdfDictionary (_feca );_feca .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0046\u0069\u006c\u0065\u0041\u0074\u0074\u0061\u0063h\u006d\u0065\u006e\u0074")); -_feca .SetIfNotNil ("\u0046\u0053",_cedc .FS );_feca .SetIfNotNil ("\u004e\u0061\u006d\u0065",_cedc .Name );return _dfbec ;}; +// GetSubFilter returns SubFilter value or empty string. +func (_faac *pdfSignDictionary )GetSubFilter ()string {_bdcbbd :=_faac .Get ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r");if _bdcbbd ==nil {return "";};if _bdcdga ,_fgbad :=_dg .GetNameVal (_bdcbbd );_fgbad {return _bdcdga ;};return "";};func (_ecec *PdfReader )newPdfAnnotationSoundFromDict (_ebcf *_dg .PdfObjectDictionary )(*PdfAnnotationSound ,error ){_cbcg :=PdfAnnotationSound {}; +_badb ,_dde :=_ecec .newPdfAnnotationMarkupFromDict (_ebcf );if _dde !=nil {return nil ,_dde ;};_cbcg .PdfAnnotationMarkup =_badb ;_cbcg .Name =_ebcf .Get ("\u004e\u0061\u006d\u0065");_cbcg .Sound =_ebcf .Get ("\u0053\u006f\u0075n\u0064");return &_cbcg ,nil ; +}; -// PdfAnnotationUnderline represents Underline annotations. -// (Section 12.5.6.10). -type PdfAnnotationUnderline struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _aff .PdfObject ;};func _dcge (_bbbdb *_aff .PdfIndirectObject )(*PdfOutline ,error ){_daea ,_cccga :=_bbbdb .PdfObject .(*_aff .PdfObjectDictionary );if !_cccga {return nil ,_e .Errorf ("\u006f\u0075\u0074l\u0069\u006e\u0065\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_bbefg :=NewPdfOutline ();if _bfbbd :=_daea .Get ("\u0054\u0079\u0070\u0065");_bfbbd !=nil {_ecdad ,_bbfgd :=_bfbbd .(*_aff .PdfObjectName );if _bbfgd {if *_ecdad !="\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073"{_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u0020\u0054y\u0070\u0065\u0020\u0021\u003d\u0020\u004f\u0075\u0074l\u0069\u006e\u0065s\u0020(\u0025\u0073\u0029",*_ecdad ); -};};};if _bcea :=_daea .Get ("\u0043\u006f\u0075n\u0074");_bcea !=nil {_dbfgg ,_cfecf :=_aff .GetNumberAsInt64 (_bcea );if _cfecf !=nil {return nil ,_cfecf ;};_bbefg .Count =&_dbfgg ;};return _bbefg ,nil ;}; +// GetContentStreams returns the content stream as an array of strings. +func (_cadgb *PdfPage )GetContentStreams ()([]string ,error ){_afbbe :=_cadgb .GetContentStreamObjs ();var _bgbgd []string ;for _ ,_baea :=range _afbbe {_afcce ,_edfdg :=_gfebd (_baea );if _edfdg !=nil {return nil ,_edfdg ;};_bgbgd =append (_bgbgd ,_afcce ); +};return _bgbgd ,nil ;}; -// ToPdfObject converts the font to a PDF representation. -func (_bgeb *pdfFontType0 )ToPdfObject ()_aff .PdfObject {if _bgeb ._aaegb ==nil {_bgeb ._aaegb =&_aff .PdfIndirectObject {};};_cddg :=_bgeb .baseFields ().asPdfObjectDictionary ("\u0054\u0079\u0070e\u0030");_bgeb ._aaegb .PdfObject =_cddg ;if _bgeb .Encoding !=nil {_cddg .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_bgeb .Encoding ); -}else if _bgeb ._faggb !=nil {_cddg .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_bgeb ._faggb .ToPdfObject ());};if _bgeb .DescendantFont !=nil {_cddg .Set ("\u0044e\u0073c\u0065\u006e\u0064\u0061\u006e\u0074\u0046\u006f\u006e\u0074\u0073",_aff .MakeArray (_bgeb .DescendantFont .ToPdfObject ())); -};return _bgeb ._aaegb ;}; +// DecodeArray returns the component range values for the DeviceN colorspace. +// [0 1.0 0 1.0 ...] for each color component. +func (_bbgf *PdfColorspaceDeviceN )DecodeArray ()[]float64 {var _dafgd []float64 ;for _cgbg :=0;_cgbg < _bbgf .GetNumComponents ();_cgbg ++{_dafgd =append (_dafgd ,0.0,1.0);};return _dafgd ;};func _eeafe (_cdcfe _dg .PdfObject )[]*_dg .PdfObjectStream {if _cdcfe ==nil {return nil ; +};_geddc ,_cddfg :=_dg .GetArray (_cdcfe );if !_cddfg ||_geddc .Len ()==0{return nil ;};_ddbfa :=make ([]*_dg .PdfObjectStream ,0,_geddc .Len ());for _ ,_agacb :=range _geddc .Elements (){if _abegb ,_fggag :=_dg .GetStream (_agacb );_fggag {_ddbfa =append (_ddbfa ,_abegb ); +};};return _ddbfa ;}; -// PdfFieldSignature signature field represents digital signatures and optional data for authenticating -// the name of the signer and verifying document contents. -type PdfFieldSignature struct{*PdfField ;*PdfAnnotationWidget ;V *PdfSignature ;Lock *_aff .PdfIndirectObject ;SV *_aff .PdfIndirectObject ;}; +// GetNumComponents returns the number of color components of the colorspace device. +// Returns 4 for a CMYK32 device. +func (_fdbbb *PdfColorspaceDeviceCMYK )GetNumComponents ()int {return 4}; -// ToPdfObject returns the PDF representation of the page resources. -func (_gafcf *PdfPageResources )ToPdfObject ()_aff .PdfObject {_ffdgd :=_gafcf ._bdegd ;_ffdgd .SetIfNotNil ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_gafcf .ExtGState );if _gafcf ._cfdbe !=nil {_gafcf .ColorSpace =_gafcf ._cfdbe .ToPdfObject (); -};_ffdgd .SetIfNotNil ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065",_gafcf .ColorSpace );_ffdgd .SetIfNotNil ("\u0050a\u0074\u0074\u0065\u0072\u006e",_gafcf .Pattern );_ffdgd .SetIfNotNil ("\u0053h\u0061\u0064\u0069\u006e\u0067",_gafcf .Shading ); -_ffdgd .SetIfNotNil ("\u0058O\u0062\u006a\u0065\u0063\u0074",_gafcf .XObject );_ffdgd .SetIfNotNil ("\u0046\u006f\u006e\u0074",_gafcf .Font );_ffdgd .SetIfNotNil ("\u0050r\u006f\u0063\u0053\u0065\u0074",_gafcf .ProcSet );_ffdgd .SetIfNotNil ("\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073",_gafcf .Properties ); -return _ffdgd ;};func _ffcgg (_gecaae *_aff .PdfObjectDictionary )(*PdfShadingType3 ,error ){_fbdee :=PdfShadingType3 {};_dafe :=_gecaae .Get ("\u0043\u006f\u006f\u0072\u0064\u0073");if _dafe ==nil {_adg .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0043\u006f\u006f\u0072\u0064\u0073"); -return nil ,ErrRequiredAttributeMissing ;};_bcbe ,_caaae :=_dafe .(*_aff .PdfObjectArray );if !_caaae {_adg .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_dafe ); -return nil ,_aff .ErrTypeError ;};if _bcbe .Len ()!=6{_adg .Log .Debug ("\u0043\u006f\u006f\u0072d\u0073\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0036\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_bcbe .Len ());return nil ,ErrInvalidAttribute ; -};_fbdee .Coords =_bcbe ;if _daffa :=_gecaae .Get ("\u0044\u006f\u006d\u0061\u0069\u006e");_daffa !=nil {_daffa =_aff .TraceToDirectObject (_daffa );_edgdd ,_agggc :=_daffa .(*_aff .PdfObjectArray );if !_agggc {_adg .Log .Debug ("\u0044\u006f\u006d\u0061i\u006e\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_daffa ); -return nil ,_aff .ErrTypeError ;};_fbdee .Domain =_edgdd ;};_dafe =_gecaae .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _dafe ==nil {_adg .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); -return nil ,ErrRequiredAttributeMissing ;};_fbdee .Function =[]PdfFunction {};if _bcaagg ,_ddfcf :=_dafe .(*_aff .PdfObjectArray );_ddfcf {for _ ,_efgc :=range _bcaagg .Elements (){_aeacc ,_degdd :=_fdfeg (_efgc );if _degdd !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_degdd ); -return nil ,_degdd ;};_fbdee .Function =append (_fbdee .Function ,_aeacc );};}else {_cgcgc ,_begbb :=_fdfeg (_dafe );if _begbb !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_begbb ); -return nil ,_begbb ;};_fbdee .Function =append (_fbdee .Function ,_cgcgc );};if _dfecb :=_gecaae .Get ("\u0045\u0078\u0074\u0065\u006e\u0064");_dfecb !=nil {_dfecb =_aff .TraceToDirectObject (_dfecb );_fggbe ,_fefgc :=_dfecb .(*_aff .PdfObjectArray );if !_fefgc {_adg .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_dfecb ); -return nil ,_aff .ErrTypeError ;};if _fggbe .Len ()!=2{_adg .Log .Debug ("\u0045\u0078\u0074\u0065n\u0064\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006eo\u0074 \u0032\u0020\u0028\u0067\u006f\u0074\u0020%\u0064\u0029",_fggbe .Len ());return nil ,ErrInvalidAttribute ; -};_fbdee .Extend =_fggbe ;};return &_fbdee ,nil ;}; +// HasExtGState checks whether a font is defined by the specified keyName. +func (_cafe *PdfPageResources )HasExtGState (keyName _dg .PdfObjectName )bool {_ ,_cdfaa :=_cafe .GetFontByName (keyName );return _cdfaa ;}; -// ToPdfObject implements interface PdfModel. -func (_aaeg *PdfAnnotationUnderline )ToPdfObject ()_aff .PdfObject {_aaeg .PdfAnnotation .ToPdfObject ();_ebea :=_aaeg ._ccfb ;_fdfd :=_ebea .PdfObject .(*_aff .PdfObjectDictionary );_aaeg .PdfAnnotationMarkup .appendToPdfDictionary (_fdfd );_fdfd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0055n\u0064\u0065\u0072\u006c\u0069\u006ee")); -_fdfd .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_aaeg .QuadPoints );return _ebea ;};func (_bggf *fontFile )parseASCIIPart (_eabb []byte )error {if len (_eabb )< 2||string (_eabb [:2])!="\u0025\u0021"{return _g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0074a\u0072\u0074\u0020\u006f\u0066\u0020\u0041S\u0043\u0049\u0049\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074"); -};_affb ,_edccb ,_cdbgd :=_bfggb (_eabb );if _cdbgd !=nil {return _cdbgd ;};_geaaa :=_fcage (_affb );_bggf ._gdag =_geaaa ["\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065"];if _bggf ._gdag ==""{_adg .Log .Debug ("\u0020\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0020\u0068a\u0073\u0020\u006e\u006f\u0020\u002f\u0046\u006f\u006e\u0074N\u0061\u006d\u0065"); -};if _edccb !=""{_aaaf ,_gagb :=_abegb (_edccb );if _gagb !=nil {return _gagb ;};_dbaaa ,_gagb :=_eee .NewCustomSimpleTextEncoder (_aaaf ,nil );if _gagb !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004fR\u0020\u003a\u0055\u004e\u004b\u004e\u004f\u0057\u004e\u0020G\u004cY\u0050\u0048\u003a\u0020\u0065\u0072\u0072=\u0025\u0076",_gagb ); -return nil ;};_bggf ._bgbca =_dbaaa ;};return nil ;}; +// GetContext returns the action context which contains the specific type-dependent context. +// The context represents the subaction. +func (_fef *PdfAction )GetContext ()PdfModel {if _fef ==nil {return nil ;};return _fef ._bg ;}; -// HasColorspaceByName checks if the colorspace with the specified name exists in the page resources. -func (_accfeb *PdfPageResources )HasColorspaceByName (keyName _aff .PdfObjectName )bool {_abagd ,_bbcgb :=_accfeb .GetColorspaces ();if _bbcgb !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0072\u0061\u0063\u0065: \u0025\u0076",_bbcgb ); -return false ;};if _abagd ==nil {return false ;};_ ,_fdcc :=_abagd .Colorspaces [string (keyName )];return _fdcc ;}; +// Normalize swaps (Llx,Urx) if Urx < Llx, and (Lly,Ury) if Ury < Lly. +func (_cfcee *PdfRectangle )Normalize (){if _cfcee .Llx > _cfcee .Urx {_cfcee .Llx ,_cfcee .Urx =_cfcee .Urx ,_cfcee .Llx ;};if _cfcee .Lly > _cfcee .Ury {_cfcee .Lly ,_cfcee .Ury =_cfcee .Ury ,_cfcee .Lly ;};}; -// GetCatalogMarkInfo gets catalog MarkInfo object. -func (_cbffdd *PdfReader )GetCatalogMarkInfo ()(_aff .PdfObject ,bool ){if _cbffdd ._dcadd ==nil {return nil ,false ;};_edde :=_cbffdd ._dcadd .Get ("\u004d\u0061\u0072\u006b\u0049\u006e\u0066\u006f");return _edde ,_edde !=nil ;}; +// LTV represents an LTV (Long-Term Validation) client. It is used to LTV +// enable signatures by adding validation and revocation data (certificate, +// OCSP and CRL information) to the DSS dictionary of a PDF document. +// +// LTV is added through the DSS by: +// - Adding certificates, OCSP and CRL information in the global scope of the +// DSS. The global data is used for validating any of the signatures present +// in the document. +// - Adding certificates, OCSP and CRL information for a single signature, +// through an entry in the VRI dictionary of the DSS. The added data is used +// for validating that particular signature only. This is the recommended +// method for adding validation data for a signature. However, this is not +// is not possible in the same revision the signature is applied. Validation +// data for a signature is added based on the Contents entry of the signature, +// which is known only after the revision is written. Even if the Contents +// are known (e.g. when signing externally), updating the DSS at that point +// would invalidate the calculated signature. As a result, if adding LTV +// in the same revision is a requirement, use the first method. +// See LTV.EnableChain. +// The client applies both methods, when possible. +// +// If `LTV.SkipExisting` is set to true (the default), validations are +// not added for signatures which are already present in the VRI entry of the +// document's DSS dictionary. +type LTV struct{ -// Subtype returns the font's "Subtype" field. -func (_fdbf *PdfFont )Subtype ()string {_gaea :=_fdbf .baseFields ()._fbged ;if _adfba ,_dbfg :=_fdbf ._gebd .(*pdfFontType0 );_dbfg {_gaea =_gaea +"\u003a"+_adfba .DescendantFont .Subtype ();};return _gaea ;}; +// CertClient is the client used to retrieve certificates. +CertClient *_fe .CertClient ; -// SetNameDictionary sets the Names entry in the PDF catalog. -// See section 7.7.4 "Name Dictionary" (p. 80 PDF32000_2008). -func (_adcgd *PdfWriter )SetNameDictionary (names _aff .PdfObject )error {if names ==nil {return nil ;};_adg .Log .Trace ("\u0053e\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u004e\u0061\u006d\u0065\u0073\u002e\u002e\u002e"); -_adcgd ._cdccb .Set ("\u004e\u0061\u006de\u0073",names );return _adcgd .addObjects (names );}; +// OCSPClient is the client used to retrieve OCSP validation information. +OCSPClient *_fe .OCSPClient ; -// FieldAppearanceGenerator generates appearance stream for a given field. -type FieldAppearanceGenerator interface{ContentStreamWrapper ;GenerateAppearanceDict (_ccadd *PdfAcroForm ,_gcbf *PdfField ,_fedfb *PdfAnnotationWidget )(*_aff .PdfObjectDictionary ,error );}; +// CRLClient is the client used to retrieve CRL validation information. +CRLClient *_fe .CRLClient ; -// AddFont adds a font dictionary to the Font resources. -func (_geecdf *PdfPage )AddFont (name _aff .PdfObjectName ,font _aff .PdfObject )error {if _geecdf .Resources ==nil {_geecdf .Resources =NewPdfPageResources ();};if _geecdf .Resources .Font ==nil {_geecdf .Resources .Font =_aff .MakeDict ();};_gbcgd ,_dcgff :=_aff .TraceToDirectObject (_geecdf .Resources .Font ).(*_aff .PdfObjectDictionary ); -if !_dcgff {_adg .Log .Debug ("\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064 \u0066\u006f\u006et \u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u003a \u0025\u0076",_aff .TraceToDirectObject (_geecdf .Resources .Font )); -return _g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_gbcgd .Set (name ,font );return nil ;}; +// SkipExisting specifies whether existing signature validations +// should be skipped. +SkipExisting bool ;_ebdgd *PdfAppender ;_abca *DSS ;};func (_bbadf *PdfWriter )checkPendingObjects (){for _ggccg ,_dbbab :=range _bbadf ._ccgade {if !_bbadf .hasObject (_ggccg ){_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u0020\u0050\u0065n\u0064\u0069\u006eg\u0020\u006f\u0062j\u0065\u0063t\u0020\u0025\u002b\u0076\u0020\u0025T\u0020(%\u0070\u0029\u0020\u006e\u0065\u0076\u0065\u0072\u0020\u0061\u0064\u0064\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0077\u0072\u0069\u0074\u0069\u006e\u0067",_ggccg ,_ggccg ,_ggccg ); +for _ ,_gbffd :=range _dbbab {for _ ,_cgaae :=range _gbffd .Keys (){_fffef :=_gbffd .Get (_cgaae );if _fffef ==_ggccg {_ag .Log .Debug ("\u0050e\u006e\u0064i\u006e\u0067\u0020\u006fb\u006a\u0065\u0063t\u0020\u0066\u006f\u0075\u006e\u0064\u0021\u0020\u0061nd\u0020\u0072\u0065p\u006c\u0061c\u0065\u0064\u0020\u0077\u0069\u0074h\u0020\u006eu\u006c\u006c"); +_gbffd .Set (_cgaae ,_dg .MakeNull ());break ;};};};};};}; -// ImageToGray returns a new grayscale image based on the passed in RGB image. -func (_ecef *PdfColorspaceDeviceRGB )ImageToGray (img Image )(Image ,error ){if img .ColorComponents !=3{return img ,_g .New ("\u0070\u0072\u006f\u0076\u0069\u0064e\u0064\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0061\u0020\u0044\u0065\u0076\u0069c\u0065\u0052\u0047\u0042"); -};_eage ,_gebf :=_gd .NewImage (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,img .Data ,img ._becb ,img ._edgef );if _gebf !=nil {return img ,_gebf ;};_dfdd ,_gebf :=_gd .GrayConverter .Convert (_eage );if _gebf !=nil {return img ,_gebf ; -};return _efecb (_dfdd .Base ()),nil ;}; +// NewPdfActionSubmitForm returns a new "submit form" action. +func NewPdfActionSubmitForm ()*PdfActionSubmitForm {_da :=NewPdfAction ();_ead :=&PdfActionSubmitForm {};_ead .PdfAction =_da ;_da .SetContext (_ead );return _ead ;}; -// Set sets the colorspace corresponding to key. Add to Names if not set. -func (_ebfdf *PdfPageResourcesColorspaces )Set (key _aff .PdfObjectName ,val PdfColorspace ){if _ ,_dbbed :=_ebfdf .Colorspaces [string (key )];!_dbbed {_ebfdf .Names =append (_ebfdf .Names ,string (key ));};_ebfdf .Colorspaces [string (key )]=val ;};var ImageHandling ImageHandler =DefaultImageHandler {}; +// ToPdfObject implements interface PdfModel. +func (_abab *PdfAnnotationPolyLine )ToPdfObject ()_dg .PdfObject {_abab .PdfAnnotation .ToPdfObject ();_fafc :=_abab ._cdf ;_ccf :=_fafc .PdfObject .(*_dg .PdfObjectDictionary );_abab .PdfAnnotationMarkup .appendToPdfDictionary (_ccf );_ccf .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0050\u006f\u006c\u0079\u004c\u0069\u006e\u0065")); +_ccf .SetIfNotNil ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073",_abab .Vertices );_ccf .SetIfNotNil ("\u004c\u0045",_abab .LE );_ccf .SetIfNotNil ("\u0042\u0053",_abab .BS );_ccf .SetIfNotNil ("\u0049\u0043",_abab .IC );_ccf .SetIfNotNil ("\u0042\u0045",_abab .BE ); +_ccf .SetIfNotNil ("\u0049\u0054",_abab .IT );_ccf .SetIfNotNil ("\u004de\u0061\u0073\u0075\u0072\u0065",_abab .Measure );return _fafc ;};const (BorderStyleSolid BorderStyle =iota ;BorderStyleDashed BorderStyle =iota ;BorderStyleBeveled BorderStyle =iota ; +BorderStyleInset BorderStyle =iota ;BorderStyleUnderline BorderStyle =iota ;);func _bbadae ()string {_fgefgf .Lock ();defer _fgefgf .Unlock ();_aabdb :=_cfb .GetLicenseKey ();if len (_faff )> 0&&(_aabdb .IsLicensed ()||_cfeab ){return _faff ;};return _b .Sprintf ("\u0055\u006e\u0069Do\u0063\u0020\u0076\u0025\u0073\u0020\u0028\u0025\u0073)\u0020-\u0020h\u0074t\u0070\u003a\u002f\u002f\u0075\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f",_dgagb (),_aabdb .TypeToString ()); +}; +// String returns the name of the colorspace (DeviceN). +func (_caae *PdfColorspaceDeviceN )String ()string {return "\u0044e\u0076\u0069\u0063\u0065\u004e"};func (_daabag *PdfWriter )addObjects (_dcbba _dg .PdfObject )error {_ag .Log .Trace ("\u0041d\u0064i\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0073\u0021"); +if _bgcbc ,_ebcbf :=_dcbba .(*_dg .PdfIndirectObject );_ebcbf {_ag .Log .Trace ("\u0049\u006e\u0064\u0069\u0072\u0065\u0063\u0074");_ag .Log .Trace ("\u002d \u0025\u0073\u0020\u0028\u0025\u0070)",_dcbba ,_bgcbc );_ag .Log .Trace ("\u002d\u0020\u0025\u0073",_bgcbc .PdfObject ); +if _daabag .addObject (_bgcbc ){_cdada :=_daabag .addObjects (_bgcbc .PdfObject );if _cdada !=nil {return _cdada ;};};return nil ;};if _ddcff ,_afbcb :=_dcbba .(*_dg .PdfObjectStream );_afbcb {_ag .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d");_ag .Log .Trace ("\u002d \u0025\u0073\u0020\u0025\u0070",_dcbba ,_dcbba ); +if _daabag .addObject (_ddcff ){_fgcbdg :=_daabag .addObjects (_ddcff .PdfObjectDictionary );if _fgcbdg !=nil {return _fgcbdg ;};};return nil ;};if _acec ,_ceabc :=_dcbba .(*_dg .PdfObjectDictionary );_ceabc {_ag .Log .Trace ("\u0044\u0069\u0063\u0074"); +_ag .Log .Trace ("\u002d\u0020\u0025\u0073",_dcbba );for _ ,_ecbd :=range _acec .Keys (){_fcdaf :=_acec .Get (_ecbd );if _caadg ,_caagg :=_fcdaf .(*_dg .PdfObjectReference );_caagg {_fcdaf =_caadg .Resolve ();_acec .Set (_ecbd ,_fcdaf );};if _ecbd !="\u0050\u0061\u0072\u0065\u006e\u0074"{if _ddcegf :=_daabag .addObjects (_fcdaf ); +_ddcegf !=nil {return _ddcegf ;};}else {if _ ,_faef :=_fcdaf .(*_dg .PdfObjectNull );_faef {continue ;};if _caceg :=_daabag .hasObject (_fcdaf );!_caceg {_ag .Log .Debug ("P\u0061\u0072\u0065\u006e\u0074\u0020o\u0062\u006a\u0020\u006e\u006f\u0074 \u0061\u0064\u0064\u0065\u0064\u0020\u0079e\u0074\u0021\u0021\u0020\u0025\u0054\u0020\u0025\u0070\u0020%\u0076",_fcdaf ,_fcdaf ,_fcdaf ); +_daabag ._ccgade [_fcdaf ]=append (_daabag ._ccgade [_fcdaf ],_acec );};};};return nil ;};if _gecbb ,_cfbec :=_dcbba .(*_dg .PdfObjectArray );_cfbec {_ag .Log .Trace ("\u0041\u0072\u0072a\u0079");_ag .Log .Trace ("\u002d\u0020\u0025\u0073",_dcbba );if _gecbb ==nil {return _bf .New ("\u0061\u0072\u0072a\u0079\u0020\u0069\u0073\u0020\u006e\u0069\u006c"); +};for _dgbafe ,_gbbd :=range _gecbb .Elements (){if _gcfg ,_edfc :=_gbbd .(*_dg .PdfObjectReference );_edfc {_gbbd =_gcfg .Resolve ();_gecbb .Set (_dgbafe ,_gbbd );};if _eecdf :=_daabag .addObjects (_gbbd );_eecdf !=nil {return _eecdf ;};};return nil ; +};if _ ,_dbecf :=_dcbba .(*_dg .PdfObjectReference );_dbecf {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u0061\u006e\u006e\u006f\u0074 \u0062\u0065\u0020\u0061\u0020\u0072e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u002d\u0020\u0067\u006f\u0074 \u0025\u0023\u0076\u0021",_dcbba ); +return _bf .New ("r\u0065\u0066\u0065\u0072en\u0063e\u0020\u006e\u006f\u0074\u0020a\u006c\u006c\u006f\u0077\u0065\u0064");};return nil ;}; -// AddPage adds a page to the PDF file. The new page should be an indirect object. -func (_ebdfd *PdfWriter )AddPage (page *PdfPage )error {const _edeae ="\u006d\u006f\u0064el\u003a\u0050\u0064\u0066\u0057\u0072\u0069\u0074\u0065\u0072\u002e\u0041\u0064\u0064\u0050\u0061\u0067\u0065";_aefbgd (page );_ecefca :=page .ToPdfObject ();_adg .Log .Trace ("\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d"); -_adg .Log .Trace ("\u0041p\u0070\u0065\u006e\u0064i\u006e\u0067\u0020\u0074\u006f \u0070a\u0067e\u0020\u006c\u0069\u0073\u0074\u0020\u0025T",_ecefca );_cgaeb ,_gcgeb :=_aff .GetIndirect (_ecefca );if !_gcgeb {return _g .New ("\u0070\u0061\u0067\u0065\u0020\u0073h\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u006fb\u006a\u0065\u0063\u0074"); -};_adg .Log .Trace ("\u0025\u0073",_cgaeb );_adg .Log .Trace ("\u0025\u0073",_cgaeb .PdfObject );_dfdfd ,_gcgeb :=_aff .GetDict (_cgaeb .PdfObject );if !_gcgeb {return _g .New ("\u0070\u0061\u0067e \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068o\u0075l\u0064 \u0062e\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_deged ,_gcgeb :=_aff .GetName (_dfdfd .Get ("\u0054\u0079\u0070\u0065"));if !_gcgeb {return _e .Errorf ("\u0070\u0061\u0067\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0054y\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020t\u0079\u0070\u0065\u0020\u006e\u0061m\u0065\u0020\u0028%\u0054\u0029",_dfdfd .Get ("\u0054\u0079\u0070\u0065")); -};if _deged .String ()!="\u0050\u0061\u0067\u0065"{return _g .New ("\u0066\u0069e\u006c\u0064\u0020\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020\u0050\u0061\u0067\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069re\u0064\u0029");};_dfeea :=[]_aff .PdfObjectName {"\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s","\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078","\u0043r\u006f\u0070\u0042\u006f\u0078","\u0052\u006f\u0074\u0061\u0074\u0065"}; -_ccgae ,_fefa :=_aff .GetIndirect (_dfdfd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));_adg .Log .Trace ("P\u0061g\u0065\u0020\u0050\u0061\u0072\u0065\u006e\u0074:\u0020\u0025\u0054\u0020(%\u0076\u0029",_dfdfd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"),_fefa ); -for _fefa {_adg .Log .Trace ("\u0050a\u0067e\u0020\u0050\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_ccgae );_dbcbb ,_bfdbb :=_aff .GetDict (_ccgae .PdfObject );if !_bfdbb {return _g .New ("i\u006e\u0076\u0061\u006cid\u0020P\u0061\u0072\u0065\u006e\u0074 \u006f\u0062\u006a\u0065\u0063\u0074"); -};for _ ,_eadfee :=range _dfeea {_adg .Log .Trace ("\u0046\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_eadfee );if _dfdfd .Get (_eadfee )!=nil {_adg .Log .Trace ("\u002d \u0070a\u0067\u0065\u0020\u0068\u0061s\u0020\u0061l\u0072\u0065\u0061\u0064\u0079"); -continue ;};if _acefbd :=_dbcbb .Get (_eadfee );_acefbd !=nil {_adg .Log .Trace ("\u0049\u006e\u0068\u0065ri\u0074\u0069\u006e\u0067\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_eadfee );_dfdfd .Set (_eadfee ,_acefbd );};};_ccgae ,_fefa =_aff .GetIndirect (_dbcbb .Get ("\u0050\u0061\u0072\u0065\u006e\u0074")); -_adg .Log .Trace ("\u004ee\u0078t\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_dbcbb .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));};_adg .Log .Trace ("\u0054\u0072\u0061\u0076\u0065\u0072\u0073\u0061\u006c \u0064\u006f\u006e\u0065"); -_dfdfd .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_ebdfd ._edgeg );_cgaeb .PdfObject =_dfdfd ;_ceggf ,_gcgeb :=_aff .GetDict (_ebdfd ._edgeg .PdfObject );if !_gcgeb {return _g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0020(\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0029"); -};_dfdbb ,_gcgeb :=_aff .GetArray (_ceggf .Get ("\u004b\u0069\u0064\u0073"));if !_gcgeb {return _g .New ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0050\u0061g\u0065\u0073\u0020\u004b\u0069\u0064\u0073\u0020o\u0062\u006a\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079\u0029"); -};_dfdbb .Append (_cgaeb );_ebdfd ._gbbce [_dfdfd ]=struct{}{};_gaefa ,_gcgeb :=_aff .GetInt (_ceggf .Get ("\u0043\u006f\u0075n\u0074"));if !_gcgeb {return _g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064 \u0050\u0061\u0067e\u0073\u0020\u0043\u006fu\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0029"); -};*_gaefa =*_gaefa +1;if page ._dbbf ==nil {_fgdcg :=_gff .Track (_ebdfd ._cgdb ,_edeae );if _fgdcg !=nil {return _fgdcg ;};}else {_efecd :=_gff .Track (page ._dbbf ._fafag ,_edeae );if _efecd !=nil {return _efecd ;};};_ebdfd .addObject (_cgaeb );_bfdcf :=_ebdfd .addObjects (_dfdfd ); -if _bfdcf !=nil {return _bfdcf ;};return nil ;}; +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. +func (_gbgf *PdfColorspaceSpecialPattern )ColorFromFloats (vals []float64 )(PdfColor ,error ){if _gbgf .UnderlyingCS ==nil {return nil ,_bf .New ("u\u006e\u0064\u0065\u0072\u006c\u0079i\u006e\u0067\u0020\u0043\u0053\u0020\u006e\u006f\u0074 \u0073\u0070\u0065c\u0069f\u0069\u0065\u0064"); +};return _gbgf .UnderlyingCS .ColorFromFloats (vals );}; -// CharcodesToStrings returns the unicode strings corresponding to `charcodes`. -// The int returns are the number of strings and the number of unconvereted codes. -// NOTE: The number of strings returned is equal to the number of charcodes -func (_adegg *PdfFont )CharcodesToStrings (charcodes []_eee .CharCode )([]string ,int ,int ){_degb :=_adegg .baseFields ();_aggg :=make ([]string ,0,len (charcodes ));_cfec :=0;_gded :=_adegg .Encoder ();_ceed :=_degb ._dcad !=nil &&_adegg .IsSimple ()&&_adegg .Subtype ()=="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"&&!_ba .Contains (_degb ._dcad .Name (),"\u0049d\u0065\u006e\u0074\u0069\u0074\u0079-"); -if !_ceed &&_gded !=nil {switch _cfcfb :=_gded .(type ){case _eee .SimpleEncoder :_faddb :=_cfcfb .BaseName ();if _ ,_cdgd :=_fgdgb [_faddb ];_cdgd {for _ ,_bdba :=range charcodes {if _fbgd ,_eedf :=_gded .CharcodeToRune (_bdba );_eedf {_aggg =append (_aggg ,string (_fbgd )); -}else {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0072u\u006e\u0065\u002e\u0020\u0063\u006f\u0064\u0065=\u0030x\u0025\u0030\u0034\u0078\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0073\u003d\u005b\u0025\u00200\u0034\u0078\u005d\u0020\u0043\u0049\u0044\u003d\u0025\u0074\u000a"+"\t\u0066\u006f\u006e\u0074=%\u0073\n\u0009\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003d\u0025\u0073",_bdba ,charcodes ,_degb .isCIDFont (),_adegg ,_gded ); -_cfec ++;_aggg =append (_aggg ,_da .MissingCodeString );};};return _aggg ,len (_aggg ),_cfec ;};};};for _ ,_cdbfa :=range charcodes {if _degb ._dcad !=nil {if _eceab ,_edgc :=_degb ._dcad .CharcodeToUnicode (_da .CharCode (_cdbfa ));_edgc {_aggg =append (_aggg ,_eceab ); -continue ;};};if _gded !=nil {if _cdbg ,_edeeb :=_gded .CharcodeToRune (_cdbfa );_edeeb {_aggg =append (_aggg ,string (_cdbg ));continue ;};};_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0072u\u006e\u0065\u002e\u0020\u0063\u006f\u0064\u0065=\u0030x\u0025\u0030\u0034\u0078\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0073\u003d\u005b\u0025\u00200\u0034\u0078\u005d\u0020\u0043\u0049\u0044\u003d\u0025\u0074\u000a"+"\t\u0066\u006f\u006e\u0074=%\u0073\n\u0009\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003d\u0025\u0073",_cdbfa ,charcodes ,_degb .isCIDFont (),_adegg ,_gded ); -_cfec ++;_aggg =append (_aggg ,_da .MissingCodeString );};if _cfec !=0{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0043\u006f\u0075\u006c\u0064\u006e\u0027\u0074\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0074\u006f\u0020u\u006e\u0069\u0063\u006f\u0064\u0065\u002e\u0020\u0055\u0073\u0069\u006e\u0067\u0020i\u006ep\u0075\u0074\u002e\u000a"+"\u0009\u006e\u0075\u006d\u0043\u0068\u0061\u0072\u0073\u003d\u0025d\u0020\u006e\u0075\u006d\u004d\u0069\u0073\u0073\u0065\u0073=\u0025\u0064\u000a"+"\u0009\u0066\u006f\u006e\u0074\u003d\u0025\u0073",len (charcodes ),_cfec ,_adegg ); -};return _aggg ,len (_aggg ),_cfec ;};func _ccfeb (_bfdf *XObjectForm )(*PdfRectangle ,bool ,error ){if _fgee ,_ecddbc :=_bfdf .BBox .(*_aff .PdfObjectArray );_ecddbc {_efgf ,_cadb :=NewPdfRectangle (*_fgee );if _cadb !=nil {return nil ,false ,_cadb ;}; -if _ceage ,_dbedc :=_bfdf .Matrix .(*_aff .PdfObjectArray );_dbedc {_cfef ,_gcedbc :=_ceage .ToFloat64Array ();if _gcedbc !=nil {return nil ,false ,_gcedbc ;};_geegg :=_eb .IdentityMatrix ();if len (_cfef )==6{_geegg =_eb .NewMatrix (_cfef [0],_cfef [1],_cfef [2],_cfef [3],_cfef [4],_cfef [5]); -};_efgf .Transform (_geegg );return _efgf ,true ,nil ;};return _efgf ,false ,nil ;};return nil ,false ,_g .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063e\u0020\u0042\u0042\u006f\u0078\u0020\u0074y\u0070\u0065"); -}; +// NewPdfAcroForm returns a new PdfAcroForm with an initialized container (indirect object). +func NewPdfAcroForm ()*PdfAcroForm {return &PdfAcroForm {Fields :&[]*PdfField {},_bebfe :_dg .MakeIndirectObject (_dg .MakeDict ())};}; -// GetNumComponents returns the number of color components of the colorspace device. -// Returns 4 for a CMYK32 device. -func (_cdae *PdfColorspaceDeviceCMYK )GetNumComponents ()int {return 4};func (_ebbbf *PdfWriter )flushWriter ()error {if _ebbbf ._acag ==nil {_ebbbf ._acag =_ebbbf ._ggee .Flush ();};return _ebbbf ._acag ;};func _efdc (_gcaff *_aff .PdfObjectDictionary )*VRI {_agegb ,_ :=_aff .GetString (_gcaff .Get ("\u0054\u0055")); -_eedee ,_ :=_aff .GetString (_gcaff .Get ("\u0054\u0053"));return &VRI {Cert :_cbdga (_gcaff .Get ("\u0043\u0065\u0072\u0074")),OCSP :_cbdga (_gcaff .Get ("\u004f\u0043\u0053\u0050")),CRL :_cbdga (_gcaff .Get ("\u0043\u0052\u004c")),TU :_agegb ,TS :_eedee }; -}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// components. The slice should contain a single PdfObjectFloat element. +func (_cbfbcg *PdfColorspaceSpecialIndexed )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_fbac ,_gdffe :=_dg .GetNumbersAsFloat (objects ); +if _gdffe !=nil {return nil ,_gdffe ;};return _cbfbcg .ColorFromFloats (_fbac );}; -// Width returns the width of `rect`. -func (_aaaef *PdfRectangle )Width ()float64 {return _cf .Abs (_aaaef .Urx -_aaaef .Llx )}; +// ToPdfObject returns the PDF representation of the function. +func (_aedda *PdfFunctionType3 )ToPdfObject ()_dg .PdfObject {_adafa :=_dg .MakeDict ();_adafa .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_dg .MakeInteger (3));_cefec :=&_dg .PdfObjectArray {};for _ ,_bgaf :=range _aedda .Domain {_cefec .Append (_dg .MakeFloat (_bgaf )); +};_adafa .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_cefec );if _aedda .Range !=nil {_fdgac :=&_dg .PdfObjectArray {};for _ ,_caaebd :=range _aedda .Range {_fdgac .Append (_dg .MakeFloat (_caaebd ));};_adafa .Set ("\u0052\u0061\u006eg\u0065",_fdgac ); +};if _aedda .Functions !=nil {_bbdc :=&_dg .PdfObjectArray {};for _ ,_bdgca :=range _aedda .Functions {_bbdc .Append (_bdgca .ToPdfObject ());};_adafa .Set ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006es",_bbdc );};if _aedda .Bounds !=nil {_abaf :=&_dg .PdfObjectArray {}; +for _ ,_accda :=range _aedda .Bounds {_abaf .Append (_dg .MakeFloat (_accda ));};_adafa .Set ("\u0042\u006f\u0075\u006e\u0064\u0073",_abaf );};if _aedda .Encode !=nil {_cdfff :=&_dg .PdfObjectArray {};for _ ,_ccagfg :=range _aedda .Encode {_cdfff .Append (_dg .MakeFloat (_ccagfg )); +};_adafa .Set ("\u0045\u006e\u0063\u006f\u0064\u0065",_cdfff );};if _aedda ._defdg !=nil {_aedda ._defdg .PdfObject =_adafa ;return _aedda ._defdg ;};return _adafa ;}; -// PdfActionSubmitForm represents a submitForm action. -type PdfActionSubmitForm struct{*PdfAction ;F *PdfFilespec ;Fields _aff .PdfObject ;Flags _aff .PdfObject ;};func _egcdd (_ffdab []*_aff .PdfObjectStream )*_aff .PdfObjectArray {if len (_ffdab )==0{return nil ;};_bdgec :=make ([]_aff .PdfObject ,0,len (_ffdab )); -for _ ,_aacab :=range _ffdab {_bdgec =append (_bdgec ,_aacab );};return _aff .MakeArray (_bdgec ...);}; +// Write writes the Appender output to io.Writer. +// It can only be called once and further invocations will result in an error. +func (_dfcb *PdfAppender )Write (w _cf .Writer )error {if _dfcb ._fdbb {return _bf .New ("\u0061\u0070\u0070\u0065\u006e\u0064\u0065\u0072\u0020\u0077\u0072\u0069\u0074e\u0020\u0063\u0061\u006e\u0020\u006fn\u006c\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0076\u006f\u006b\u0065\u0064 \u006f\u006e\u0063\u0065"); +};_adbf :=NewPdfWriter ();_bfdgc ,_gged :=_dg .GetDict (_adbf ._gbgb );if !_gged {return _bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0020(\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0029"); +};_cadaf ,_gged :=_bfdgc .Get ("\u004b\u0069\u0064\u0073").(*_dg .PdfObjectArray );if !_gged {return _bf .New ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0050\u0061g\u0065\u0073\u0020\u004b\u0069\u0064\u0073\u0020o\u0062\u006a\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079\u0029"); +};_efbf ,_gged :=_bfdgc .Get ("\u0043\u006f\u0075n\u0074").(*_dg .PdfObjectInteger );if !_gged {return _bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064 \u0050\u0061\u0067e\u0073\u0020\u0043\u006fu\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0029"); +};_gfba :=_dfcb ._debg ._baad ;_fceg :=_gfba .GetTrailer ();if _fceg ==nil {return _bf .New ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072");};_edgfc ,_gged :=_dg .GetIndirect (_fceg .Get ("\u0052\u006f\u006f\u0074")); +if !_gged {return _bf .New ("c\u0061\u0074\u0061\u006c\u006f\u0067 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072 \u006e\u006f\u0074 \u0066o\u0075\u006e\u0064");};_ddf ,_gged :=_dg .GetDict (_edgfc );if !_gged {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0028\u0072\u006f\u006f\u0074\u0020\u0025\u0071\u0029\u0020\u0028\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0025\u0073\u0029",_edgfc ,*_fceg ); +return _bf .New ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067");};for _ ,_agfa :=range _ddf .Keys (){if _adbf ._ecdf .Get (_agfa )==nil {_efcf :=_ddf .Get (_agfa );_adbf ._ecdf .Set (_agfa ,_efcf );};};if _dfcb ._afab !=nil {if _dfcb ._afab ._eeecb {if _gbcff :=_dg .TraceToDirectObject (_dfcb ._afab .ToPdfObject ()); +!_dg .IsNullObject (_gbcff ){_adbf ._ecdf .Set ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d",_gbcff );_dfcb .updateObjectsDeep (_gbcff ,nil );}else {_ag .Log .Debug ("\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020t\u0072\u0061\u0063e\u0020\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u0020o\u0062\u006a\u0065\u0063\u0074, \u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0061\u0064\u0064\u0020\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u002e"); +};}else {_adbf ._ecdf .Set ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d",_dfcb ._afab .ToPdfObject ());_dfcb .updateObjectsDeep (_dfcb ._afab .ToPdfObject (),nil );};};if _dfcb ._cfdd !=nil {_dfcb .updateObjectsDeep (_dfcb ._cfdd .ToPdfObject (),nil ); +_adbf ._ecdf .Set ("\u0044\u0053\u0053",_dfcb ._cfdd .GetContainingPdfObject ());};if _dfcb ._accbd !=nil {_adbf ._ecdf .Set ("\u0050\u0065\u0072m\u0073",_dfcb ._accbd .ToPdfObject ());_dfcb .updateObjectsDeep (_dfcb ._accbd .ToPdfObject (),nil );};if _adbf ._efacd .Major < 2{_adbf .AddExtension ("\u0045\u0053\u0049\u0043","\u0031\u002e\u0037",5); +_adbf .AddExtension ("\u0041\u0044\u0042\u0045","\u0031\u002e\u0037",8);};if _ebba ,_defe :=_dg .GetDict (_fceg .Get ("\u0049\u006e\u0066\u006f"));_defe {if _eagf ,_cdgc :=_dg .GetDict (_adbf ._efbfa );_cdgc {for _ ,_ebccb :=range _ebba .Keys (){if _eagf .Get (_ebccb )==nil {_eagf .Set (_ebccb ,_ebba .Get (_ebccb )); +};};};};if _dfcb ._fega !=nil {_adbf ._efbfa =_dg .MakeIndirectObject (_dfcb ._fega .ToPdfObject ());};_dfcb .addNewObject (_adbf ._efbfa );_dfcb .addNewObject (_adbf ._fadee );_bgcg :=false ;if len (_dfcb ._debg .PageList )!=len (_dfcb ._ggdd ){_bgcg =true ; +}else {for _cdc :=range _dfcb ._debg .PageList {switch {case _dfcb ._ggdd [_cdc ]==_dfcb ._debg .PageList [_cdc ]:case _dfcb ._ggdd [_cdc ]==_dfcb .Reader .PageList [_cdc ]:default:_bgcg =true ;};if _bgcg {break ;};};};if _bgcg {_dfcb .updateObjectsDeep (_adbf ._gbgb ,nil ); +}else {_dfcb ._eede [_adbf ._gbgb ]=struct{}{};};_adbf ._gbgb .ObjectNumber =_dfcb .Reader ._eeeef .ObjectNumber ;_dfcb ._gebe [_adbf ._gbgb ]=_dfcb .Reader ._eeeef .ObjectNumber ;_gbdag :=[]_dg .PdfObjectName {"\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s","\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078","\u0043r\u006f\u0070\u0042\u006f\u0078","\u0052\u006f\u0074\u0061\u0074\u0065"}; +for _ ,_fbcd :=range _dfcb ._ggdd {_bfgf :=_fbcd .ToPdfObject ();*_efbf =*_efbf +1;if _acca ,_dge :=_bfgf .(*_dg .PdfIndirectObject );_dge &&_acca .GetParser ()==_dfcb ._debg ._baad {_cadaf .Append (&_acca .PdfObjectReference );continue ;};if _cgdd ,_gcgbf :=_dg .GetDict (_bfgf ); +_gcgbf {_ggfd ,_edag :=_cgdd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074").(*_dg .PdfIndirectObject );for _edag {_ag .Log .Trace ("\u0050a\u0067e\u0020\u0050\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_ggfd );_fged ,_feggc :=_ggfd .PdfObject .(*_dg .PdfObjectDictionary ); +if !_feggc {return _bf .New ("i\u006e\u0076\u0061\u006cid\u0020P\u0061\u0072\u0065\u006e\u0074 \u006f\u0062\u006a\u0065\u0063\u0074");};for _ ,_dfe :=range _gbdag {_ag .Log .Trace ("\u0046\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_dfe );if _gebc :=_cgdd .Get (_dfe ); +_gebc !=nil {_ag .Log .Trace ("\u002d \u0070a\u0067\u0065\u0020\u0068\u0061s\u0020\u0061l\u0072\u0065\u0061\u0064\u0079");if len (_fbcd ._gaed .Keys ())> 0&&!_bgcg {_cbba :=_fbcd ._gaed ;if _befbb :=_cbba .Get (_dfe );_befbb !=nil {if _gebc !=_befbb {_ag .Log .Trace ("\u0049\u006e\u0068\u0065\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u006f\u0072\u0069\u0067i\u006ea\u006c\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0025\u0073\u002c\u0020\u0025\u0054",_dfe ,_befbb ); +_cgdd .Set (_dfe ,_befbb );};};};continue ;};if _debd :=_fged .Get (_dfe );_debd !=nil {_ag .Log .Trace ("\u0049\u006e\u0068\u0065ri\u0074\u0069\u006e\u0067\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_dfe );_cgdd .Set (_dfe ,_debd );};};_ggfd ,_edag =_fged .Get ("\u0050\u0061\u0072\u0065\u006e\u0074").(*_dg .PdfIndirectObject ); +_ag .Log .Trace ("\u004ee\u0078t\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_fged .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));};if _bgcg {_cgdd .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_adbf ._gbgb );};};_dfcb .updateObjectsDeep (_bfgf ,nil ); +_cadaf .Append (_bfgf );};if _ ,_ebed :=_dfcb ._cga .Seek (0,_cf .SeekStart );_ebed !=nil {return _ebed ;};_defgc :=make (map[SignatureHandler ]_cf .Writer );_addg :=_dg .MakeArray ();for _ ,_ffdc :=range _dfcb ._dgfd {if _gcd ,_eedg :=_dg .GetIndirect (_ffdc ); +_eedg {if _ccca ,_fbbe :=_gcd .PdfObject .(*pdfSignDictionary );_fbbe {_abf :=*_ccca ._cgdea ;var _fdbeb error ;_defgc [_abf ],_fdbeb =_abf .NewDigest (_ccca ._cdfca );if _fdbeb !=nil {return _fdbeb ;};_addg .Append (_dg .MakeInteger (0xfffff),_dg .MakeInteger (0xfffff)); +};};};if _addg .Len ()> 0{_addg .Append (_dg .MakeInteger (0xfffff),_dg .MakeInteger (0xfffff));};for _ ,_cdeb :=range _dfcb ._dgfd {if _ceebb ,_eddf :=_dg .GetIndirect (_cdeb );_eddf {if _ccb ,_ebda :=_ceebb .PdfObject .(*pdfSignDictionary );_ebda {_ccb .Set ("\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e",_addg ); +};};};_bdbd :=len (_defgc )> 0;var _gaaf _cf .Reader =_dfcb ._cga ;if _bdbd {_cgac :=make ([]_cf .Writer ,0,len (_defgc ));for _ ,_aeeb :=range _defgc {_cgac =append (_cgac ,_aeeb );};_gaaf =_cf .TeeReader (_dfcb ._cga ,_cf .MultiWriter (_cgac ...));}; +_ddeag ,_aab :=_cf .Copy (w ,_gaaf );if _aab !=nil {return _aab ;};if len (_dfcb ._dgfd )==0{return nil ;};_adbf ._bgggdg =_ddeag ;_adbf .ObjNumOffset =_dfcb ._ceecc ;_adbf ._bbac =true ;_adbf ._cfcdcb =_dfcb ._ceef ;_adbf ._eege =_dfcb ._bcdg ;_adbf ._fafab =_dfcb ._dcaf ; +_adbf ._efacd =_dfcb ._debg .PdfVersion ();_adbf ._ecabb =_dfcb ._gebe ;_adbf ._fadcg =_dfcb ._gfab .GetCrypter ();_adbf ._acdag =_dfcb ._gfab .GetEncryptObj ();_fbdf :=_dfcb ._gfab .GetXrefType ();if _fbdf !=nil {_gfg :=*_fbdf ==_dg .XrefTypeObjectStream ; +_adbf ._eaacb =&_gfg ;};_adbf ._fdbfa =map[_dg .PdfObject ]struct{}{};_adbf ._agaba =[]_dg .PdfObject {};for _ ,_ccbg :=range _dfcb ._dgfd {if _ ,_abaag :=_dfcb ._eede [_ccbg ];_abaag {continue ;};_adbf .addObject (_ccbg );};_bgab :=w ;if _bdbd {_bgab =_bc .NewBuffer (nil ); +};if _dfcb ._acb !=""&&_adbf ._fadcg ==nil {_adbf .Encrypt ([]byte (_dfcb ._acb ),[]byte (_dfcb ._acb ),_dfcb ._ccfc );};if _fbdb :=_fceg .Get ("\u0049\u0044");_fbdb !=nil {if _fcg ,_ffff :=_dg .GetArray (_fbdb );_ffff {_adbf ._agbeg =_fcg ;};};if _caace :=_adbf .Write (_bgab ); +_caace !=nil {return _caace ;};if _bdbd {_fegd :=_bgab .(*_bc .Buffer ).Bytes ();_ebef :=_dg .MakeArray ();var _badcc []*pdfSignDictionary ;var _edad int64 ;for _ ,_ccbd :=range _adbf ._agaba {if _abda ,_cgbe :=_dg .GetIndirect (_ccbd );_cgbe {if _feee ,_faa :=_abda .PdfObject .(*pdfSignDictionary ); +_faa {_badcc =append (_badcc ,_feee );_fcge :=_feee ._cagb +int64 (_feee ._aaeae );_ebef .Append (_dg .MakeInteger (_edad ),_dg .MakeInteger (_fcge -_edad ));_edad =_feee ._cagb +int64 (_feee ._gdbfe );};};};_ebef .Append (_dg .MakeInteger (_edad ),_dg .MakeInteger (_ddeag +int64 (len (_fegd ))-_edad )); +_gced :=[]byte (_ebef .WriteString ());for _ ,_cccaf :=range _badcc {_bdgc :=int (_cccaf ._cagb -_ddeag );for _ccefc :=_cccaf ._egda ;_ccefc < _cccaf ._ebaaaa ;_ccefc ++{_fegd [_bdgc +_ccefc ]=' ';};_agae :=_fegd [_bdgc +_cccaf ._egda :_bdgc +_cccaf ._ebaaaa ]; +copy (_agae ,_gced );};var _dceg int ;for _ ,_gfaf :=range _badcc {_ffbb :=int (_gfaf ._cagb -_ddeag );_feggca :=_fegd [_dceg :_ffbb +_gfaf ._aaeae ];_ddaf :=*_gfaf ._cgdea ;_defgc [_ddaf ].Write (_feggca );_dceg =_ffbb +_gfaf ._gdbfe ;};for _ ,_egbg :=range _badcc {_gcge :=_fegd [_dceg :]; +_fbeg :=*_egbg ._cgdea ;_defgc [_fbeg ].Write (_gcge );};for _ ,_dccd :=range _badcc {_gdef :=int (_dccd ._cagb -_ddeag );_efcb :=*_dccd ._cgdea ;_ddae :=_defgc [_efcb ];if _adgg :=_efcb .Sign (_dccd ._cdfca ,_ddae );_adgg !=nil {return _adgg ;};_dccd ._cdfca .ByteRange =_ebef ; +_egba :=[]byte (_dccd ._cdfca .Contents .WriteString ());for _fcbb :=_dccd ._egda ;_fcbb < _dccd ._ebaaaa ;_fcbb ++{_fegd [_gdef +_fcbb ]=' ';};for _decca :=_dccd ._aaeae ;_decca < _dccd ._gdbfe ;_decca ++{_fegd [_gdef +_decca ]=' ';};_fade :=_fegd [_gdef +_dccd ._egda :_gdef +_dccd ._ebaaaa ]; +copy (_fade ,_gced );_fade =_fegd [_gdef +_dccd ._aaeae :_gdef +_dccd ._gdbfe ];copy (_fade ,_egba );};_bgcd :=_bc .NewBuffer (_fegd );_ ,_aab =_cf .Copy (w ,_bgcd );if _aab !=nil {return _aab ;};};_dfcb ._fdbb =true ;return nil ;}; -// ToPdfObject returns a stream object. -func (_fbagc *XObjectImage )ToPdfObject ()_aff .PdfObject {_ffffb :=_fbagc ._fccgd ;_bgdec :=_ffffb .PdfObjectDictionary ;if _fbagc .Filter !=nil {_bgdec =_fbagc .Filter .MakeStreamDict ();_ffffb .PdfObjectDictionary =_bgdec ;};_bgdec .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0058O\u0062\u006a\u0065\u0063\u0074")); -_bgdec .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0049\u006d\u0061g\u0065"));_bgdec .Set ("\u0057\u0069\u0064t\u0068",_aff .MakeInteger (*(_fbagc .Width )));_bgdec .Set ("\u0048\u0065\u0069\u0067\u0068\u0074",_aff .MakeInteger (*(_fbagc .Height ))); -if _fbagc .BitsPerComponent !=nil {_bgdec .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_aff .MakeInteger (*(_fbagc .BitsPerComponent )));};if _fbagc .ColorSpace !=nil {_bgdec .SetIfNotNil ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065",_fbagc .ColorSpace .ToPdfObject ()); -};_bgdec .SetIfNotNil ("\u0049\u006e\u0074\u0065\u006e\u0074",_fbagc .Intent );_bgdec .SetIfNotNil ("\u0049m\u0061\u0067\u0065\u004d\u0061\u0073k",_fbagc .ImageMask );_bgdec .SetIfNotNil ("\u004d\u0061\u0073\u006b",_fbagc .Mask );_bffdb :=_bgdec .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")!=nil ; -if _fbagc .Decode ==nil &&_bffdb {_bgdec .Remove ("\u0044\u0065\u0063\u006f\u0064\u0065");}else if _fbagc .Decode !=nil {_bgdec .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_fbagc .Decode );};_bgdec .SetIfNotNil ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065",_fbagc .Interpolate ); -_bgdec .SetIfNotNil ("\u0041\u006c\u0074e\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0073",_fbagc .Alternatives );_bgdec .SetIfNotNil ("\u0053\u004d\u0061s\u006b",_fbagc .SMask );_bgdec .SetIfNotNil ("S\u004d\u0061\u0073\u006b\u0049\u006e\u0044\u0061\u0074\u0061",_fbagc .SMaskInData ); -_bgdec .SetIfNotNil ("\u004d\u0061\u0074t\u0065",_fbagc .Matte );_bgdec .SetIfNotNil ("\u004e\u0061\u006d\u0065",_fbagc .Name );_bgdec .SetIfNotNil ("\u0053\u0074\u0072u\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074",_fbagc .StructParent );_bgdec .SetIfNotNil ("\u0049\u0044",_fbagc .ID ); -_bgdec .SetIfNotNil ("\u004f\u0050\u0049",_fbagc .OPI );_bgdec .SetIfNotNil ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_fbagc .Metadata );_bgdec .SetIfNotNil ("\u004f\u0043",_fbagc .OC );_bgdec .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_aff .MakeInteger (int64 (len (_fbagc .Stream )))); -_ffffb .Stream =_fbagc .Stream ;return _ffffb ;};func (_edba *PdfReader )newPdfAnnotationProjectionFromDict (_gefg *_aff .PdfObjectDictionary )(*PdfAnnotationProjection ,error ){_caa :=&PdfAnnotationProjection {};_daa ,_bebb :=_edba .newPdfAnnotationMarkupFromDict (_gefg ); -if _bebb !=nil {return nil ,_bebb ;};_caa .PdfAnnotationMarkup =_daa ;return _caa ,nil ;}; +// SetFilter sets compression filter. Decodes with current filter sets and +// encodes the data with the new filter. +func (_ceffb *XObjectImage )SetFilter (encoder _dg .StreamEncoder )error {_bdfgg :=_ceffb .Stream ;_gfcde ,_fdeec :=_ceffb .Filter .DecodeBytes (_bdfgg );if _fdeec !=nil {return _fdeec ;};_ceffb .Filter =encoder ;encoder .UpdateParams (_ceffb .getParamsDict ()); +_bdfgg ,_fdeec =encoder .EncodeBytes (_gfcde );if _fdeec !=nil {return _fdeec ;};_ceffb .Stream =_bdfgg ;return nil ;}; -// String returns a string that describes `base`. -func (_gdgbf fontCommon )String ()string {return _e .Sprintf ("\u0046\u004f\u004e\u0054\u007b\u0025\u0073\u007d",_gdgbf .coreString ());}; +// NewPdfAppender creates a new Pdf appender from a Pdf reader. +func NewPdfAppender (reader *PdfReader )(*PdfAppender ,error ){_eega :=&PdfAppender {_cga :reader ._efcfa ,Reader :reader ,_gfab :reader ._baad ,_ebaa :reader ._addfg };_aage ,_gaac :=_eega ._cga .Seek (0,_cf .SeekEnd );if _gaac !=nil {return nil ,_gaac ; +};_eega ._dcaf =_aage ;if _ ,_gaac =_eega ._cga .Seek (0,_cf .SeekStart );_gaac !=nil {return nil ,_gaac ;};_eega ._debg ,_gaac =NewPdfReader (_eega ._cga );if _gaac !=nil {return nil ,_gaac ;};for _ ,_abbca :=range _eega .Reader .GetObjectNums (){if _eega ._ceecc < _abbca {_eega ._ceecc =_abbca ; +};};_eega ._ceef =_eega ._gfab .GetXrefTable ();_eega ._bcdg =_eega ._gfab .GetXrefOffset ();_eega ._ggdd =append (_eega ._ggdd ,_eega ._debg .PageList ...);_eega ._efa =make (map[_dg .PdfObject ]struct{});_eega ._gebe =make (map[_dg .PdfObject ]int64 ); +_eega ._eede =make (map[_dg .PdfObject ]struct{});_eega ._afab =_eega ._debg .AcroForm ;_eega ._cfdd =_eega ._debg .DSS ;return _eega ,nil ;};type pdfCIDFontType0 struct{fontCommon ;_adcdd *_dg .PdfIndirectObject ;_afbff _bd .TextEncoder ; -// ToPdfObject implements interface PdfModel. -func (_ceea *PdfAnnotationStamp )ToPdfObject ()_aff .PdfObject {_ceea .PdfAnnotation .ToPdfObject ();_efec :=_ceea ._ccfb ;_fbaf :=_efec .PdfObject .(*_aff .PdfObjectDictionary );_ceea .PdfAnnotationMarkup .appendToPdfDictionary (_fbaf );_fbaf .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0053\u0074\u0061m\u0070")); -_fbaf .SetIfNotNil ("\u004e\u0061\u006d\u0065",_ceea .Name );return _efec ;}; +// Table 117 – Entries in a CIDFont dictionary (page 269) +// (Required) Dictionary that defines the character collection of the CIDFont. +// See Table 116. +CIDSystemInfo *_dg .PdfObjectDictionary ; -// PdfShadingType7 is a Tensor-product patch mesh. -type PdfShadingType7 struct{*PdfShading ;BitsPerCoordinate *_aff .PdfObjectInteger ;BitsPerComponent *_aff .PdfObjectInteger ;BitsPerFlag *_aff .PdfObjectInteger ;Decode *_aff .PdfObjectArray ;Function []PdfFunction ;};func (_bfab *PdfReader )loadOutlines ()(*PdfOutlineTreeNode ,error ){if _bfab ._gaece .GetCrypter ()!=nil &&!_bfab ._gaece .IsAuthenticated (){return nil ,_e .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); -};_dbfcf :=_bfab ._dcadd ;_gaba :=_dbfcf .Get ("\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073");if _gaba ==nil {return nil ,nil ;};_adg .Log .Trace ("\u002d\u0048\u0061\u0073\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0073");_bfcdg :=_aff .ResolveReference (_gaba ); -_adg .Log .Trace ("\u004f\u0075t\u006c\u0069\u006ee\u0020\u0072\u006f\u006f\u0074\u003a\u0020\u0025\u0076",_bfcdg );if _dcfeg :=_aff .IsNullObject (_bfcdg );_dcfeg {_adg .Log .Trace ("\u004f\u0075\u0074li\u006e\u0065\u0020\u0072\u006f\u006f\u0074\u0020\u0069s\u0020n\u0075l\u006c \u002d\u0020\u006e\u006f\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0073"); -return nil ,nil ;};_beag ,_edbbe :=_bfcdg .(*_aff .PdfIndirectObject );if !_edbbe {if _ ,_bcbfc :=_aff .GetDict (_bfcdg );!_bcbfc {_adg .Log .Debug ("\u0049\u006e\u0076a\u006c\u0069\u0064\u0020o\u0075\u0074\u006c\u0069\u006e\u0065\u0020r\u006f\u006f\u0074\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067"); -return nil ,nil ;};_adg .Log .Debug ("\u004f\u0075t\u006c\u0069\u006e\u0065\u0020r\u006f\u006f\u0074\u0020\u0069s\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u002e\u0020\u0053\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -_beag =_aff .MakeIndirectObject (_bfcdg );};_aebee ,_edbbe :=_beag .PdfObject .(*_aff .PdfObjectDictionary );if !_edbbe {return nil ,_g .New ("\u006f\u0075\u0074\u006c\u0069n\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y"); -};_adg .Log .Trace ("O\u0075\u0074\u006c\u0069ne\u0020r\u006f\u006f\u0074\u0020\u0064i\u0063\u0074\u003a\u0020\u0025\u0076",_aebee );_edfbb ,_ ,_cfgcb :=_bfab .buildOutlineTree (_beag ,nil ,nil ,nil );if _cfgcb !=nil {return nil ,_cfgcb ;};_adg .Log .Trace ("\u0052\u0065\u0073\u0075\u006c\u0074\u0069\u006e\u0067\u0020\u006fu\u0074\u006c\u0069\u006e\u0065\u0020\u0074\u0072\u0065\u0065:\u0020\u0025\u0076",_edfbb ); -return _edfbb ,nil ;}; +// Glyph metrics fields (optional). +DW _dg .PdfObject ;W _dg .PdfObject ;DW2 _dg .PdfObject ;W2 _dg .PdfObject ;_gfcba map[_bd .CharCode ]float64 ;_gfdca float64 ;}; -// ColorToRGB converts a DeviceN color to an RGB color. -func (_fbba *PdfColorspaceDeviceN )ColorToRGB (color PdfColor )(PdfColor ,error ){if _fbba .AlternateSpace ==nil {return nil ,_g .New ("\u0044\u0065\u0076\u0069\u0063\u0065N\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0020\u0073\u0070a\u0063\u0065\u0020\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064"); -};return _fbba .AlternateSpace .ColorToRGB (color );};func (_caab fontCommon )isCIDFont ()bool {if _caab ._fbged ==""{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0069\u0073\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u002e\u0020\u0063o\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_caab ); -};_dafdea :=false ;switch _caab ._fbged {case "\u0054\u0079\u0070e\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":_dafdea =true ;};_adg .Log .Trace ("i\u0073\u0043\u0049\u0044\u0046\u006fn\u0074\u003a\u0020\u0069\u0073\u0043\u0049\u0044\u003d%\u0074\u0020\u0066o\u006et\u003d\u0025\u0073",_dafdea ,_caab ); -return _dafdea ;};func (_bdec *PdfReader )newPdfActionTransFromDict (_dfaa *_aff .PdfObjectDictionary )(*PdfActionTrans ,error ){return &PdfActionTrans {Trans :_dfaa .Get ("\u0054\u0072\u0061n\u0073")},nil ;}; +// GetXObjectByName returns the XObject with the specified keyName and the object type. +func (_bcdad *PdfPageResources )GetXObjectByName (keyName _dg .PdfObjectName )(*_dg .PdfObjectStream ,XObjectType ){if _bcdad .XObject ==nil {return nil ,XObjectTypeUndefined ;};_fddcc ,_cfce :=_dg .TraceToDirectObject (_bcdad .XObject ).(*_dg .PdfObjectDictionary ); +if !_cfce {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0021\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_dg .TraceToDirectObject (_bcdad .XObject )); +return nil ,XObjectTypeUndefined ;};if _dagad :=_fddcc .Get (keyName );_dagad !=nil {_fbfg ,_cedgd :=_dg .GetStream (_dagad );if !_cedgd {_ag .Log .Debug ("X\u004f\u0062\u006a\u0065\u0063\u0074 \u006e\u006f\u0074\u0020\u0070\u006fi\u006e\u0074\u0069\u006e\u0067\u0020\u0074o\u0020\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020%\u0054",_dagad ); +return nil ,XObjectTypeUndefined ;};_bffecg :=_fbfg .PdfObjectDictionary ;_bdbbd ,_cedgd :=_dg .TraceToDirectObject (_bffecg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")).(*_dg .PdfObjectName );if !_cedgd {_ag .Log .Debug ("\u0058\u004fbj\u0065\u0063\u0074 \u0053\u0075\u0062\u0074ype\u0020no\u0074\u0020\u0061\u0020\u004e\u0061\u006de,\u0020\u0064\u0069\u0063\u0074\u003a\u0020%\u0073",_bffecg .String ()); +return nil ,XObjectTypeUndefined ;};if *_bdbbd =="\u0049\u006d\u0061g\u0065"{return _fbfg ,XObjectTypeImage ;}else if *_bdbbd =="\u0046\u006f\u0072\u006d"{return _fbfg ,XObjectTypeForm ;}else if *_bdbbd =="\u0050\u0053"{return _fbfg ,XObjectTypePS ;}else {_ag .Log .Debug ("\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0053\u0075b\u0074\u0079\u0070\u0065\u0020\u006e\u006ft\u0020\u006b\u006e\u006f\u0077\u006e\u0020\u0028\u0025\u0073\u0029",*_bdbbd ); +return nil ,XObjectTypeUndefined ;};}else {return nil ,XObjectTypeUndefined ;};}; -// B returns the value of the B component of the color. -func (_fdfb *PdfColorLab )B ()float64 {return _fdfb [2]}; +// IsValid checks if the given pdf output intent type is valid. +func (_dgfab PdfOutputIntentType )IsValid ()bool {return _dgfab >=PdfOutputIntentTypeA1 &&_dgfab <=PdfOutputIntentTypeX ;};func (_bffg *PdfReader )loadStructure ()error {if _bffg ._baad .GetCrypter ()!=nil &&!_bffg ._baad .IsAuthenticated (){return _b .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); +};_dfff :=_bffg ._baad .GetTrailer ();if _dfff ==nil {return _b .Errorf ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072");};_cecfe ,_fgeae :=_dfff .Get ("\u0052\u006f\u006f\u0074").(*_dg .PdfObjectReference );if !_fgeae {return _b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0052\u006f\u006ft\u0020\u0028\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u003a \u0025\u0073\u0029",_dfff ); +};_gffbc ,_feef :=_bffg ._baad .LookupByReference (*_cecfe );if _feef !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020\u0072\u006f\u006f\u0074\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0025\u0073",_feef ); +return _feef ;};_fffgfd ,_fgeae :=_gffbc .(*_dg .PdfIndirectObject );if !_fgeae {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0028\u0072\u006f\u006f\u0074\u0020\u0025\u0071\u0029\u0020\u0028\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0025\u0073\u0029",_gffbc ,*_dfff ); +return _bf .New ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067");};_cbbdf ,_fgeae :=(*_fffgfd ).PdfObject .(*_dg .PdfObjectDictionary );if !_fgeae {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020I\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0061t\u0061\u006c\u006fg\u0020(\u0025\u0073\u0029",_fffgfd .PdfObject ); +return _bf .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067");};_ag .Log .Trace ("C\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0025\u0073",_cbbdf );_aafef ,_fgeae :=_cbbdf .Get ("\u0050\u0061\u0067e\u0073").(*_dg .PdfObjectReference ); +if !_fgeae {return _bf .New ("\u0070\u0061\u0067\u0065\u0073\u0020\u0069\u006e\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020b\u0065\u0020\u0061\u0020\u0072e\u0066\u0065r\u0065\u006e\u0063\u0065");};_ffbaa ,_feef :=_bffg ._baad .LookupByReference (*_aafef ); +if _feef !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020F\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020r\u0065\u0061\u0064 \u0070a\u0067\u0065\u0073");return _feef ;};_eggdc ,_fgeae :=_ffbaa .(*_dg .PdfIndirectObject );if !_fgeae {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020P\u0061\u0067\u0065\u0073\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0069n\u0076a\u006c\u0069\u0064"); +_ag .Log .Debug ("\u006f\u0070\u003a\u0020\u0025\u0070",_eggdc );return _bf .New ("p\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0069\u006e\u0076al\u0069\u0064");};_ccabd ,_fgeae :=_eggdc .PdfObject .(*_dg .PdfObjectDictionary );if !_fgeae {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067\u0065\u0073\u0020\u006f\u0062j\u0065c\u0074\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0025\u0073\u0029",_eggdc ); +return _bf .New ("p\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0069\u006e\u0076al\u0069\u0064");};_bafdb ,_fgeae :=_dg .GetInt (_ccabd .Get ("\u0043\u006f\u0075n\u0074"));if !_fgeae {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0050\u0061\u0067\u0065\u0073\u0020\u0063\u006f\u0075\u006e\u0074\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +return _bf .New ("\u0070\u0061\u0067\u0065s \u0063\u006f\u0075\u006e\u0074\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};if _ ,_fgeae =_dg .GetName (_ccabd .Get ("\u0054\u0079\u0070\u0065"));!_fgeae {_ag .Log .Debug ("\u0050\u0061\u0067\u0065\u0073\u0020\u0064\u0069\u0063\u0074\u0020T\u0079\u0070\u0065\u0020\u0066\u0069\u0065\u006cd\u0020n\u006f\u0074\u0020\u0073\u0065\u0074\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0054\u0079p\u0065\u0020\u0074\u006f\u0020\u0050\u0061\u0067\u0065\u0073\u002e"); +_ccabd .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0050\u0061\u0067e\u0073"));};if _gadecg ,_bafa :=_dg .GetInt (_ccabd .Get ("\u0052\u006f\u0074\u0061\u0074\u0065"));_bafa {_dfada :=int64 (*_gadecg );_bffg .Rotate =&_dfada ;};_bffg ._dfdg =_cecfe ; +_bffg ._gccfb =_cbbdf ;_bffg ._eefc =_ccabd ;_bffg ._eeeef =_eggdc ;_bffg ._eeeg =int (*_bafdb );_bffg ._daddd =[]*_dg .PdfIndirectObject {};_dbfeg :=map[_dg .PdfObject ]struct{}{};_feef =_bffg .buildPageList (_eggdc ,nil ,_dbfeg );if _feef !=nil {return _feef ; +};_ag .Log .Trace ("\u002d\u002d\u002d");_ag .Log .Trace ("\u0054\u004f\u0043");_ag .Log .Trace ("\u0050\u0061\u0067e\u0073");_ag .Log .Trace ("\u0025\u0064\u003a\u0020\u0025\u0073",len (_bffg ._daddd ),_bffg ._daddd );_bffg ._fcfc ,_feef =_bffg .loadOutlines (); +if _feef !=nil {_ag .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0062\u0075i\u006c\u0064\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065 t\u0072\u0065\u0065 \u0028%\u0073\u0029",_feef ); +return _feef ;};_bffg .AcroForm ,_feef =_bffg .loadForms ();if _feef !=nil {return _feef ;};_bffg .DSS ,_feef =_bffg .loadDSS ();if _feef !=nil {return _feef ;};_bffg ._fbcaa ,_feef =_bffg .loadPerms ();if _feef !=nil {return _feef ;};return nil ;}; -// Write writes the Appender output to io.Writer. -// It can only be called once and further invocations will result in an error. -func (_geaf *PdfAppender )Write (w _ega .Writer )error {if _geaf ._gdgbd {return _g .New ("\u0061\u0070\u0070\u0065\u006e\u0064\u0065\u0072\u0020\u0077\u0072\u0069\u0074e\u0020\u0063\u0061\u006e\u0020\u006fn\u006c\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0076\u006f\u006b\u0065\u0064 \u006f\u006e\u0063\u0065"); -};_dcgg :=NewPdfWriter ();_fged ,_cgcba :=_aff .GetDict (_dcgg ._edgeg );if !_cgcba {return _g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0020(\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0029"); -};_cdcee ,_cgcba :=_fged .Get ("\u004b\u0069\u0064\u0073").(*_aff .PdfObjectArray );if !_cgcba {return _g .New ("\u0069\u006ev\u0061\u006c\u0069\u0064 \u0050\u0061g\u0065\u0073\u0020\u004b\u0069\u0064\u0073\u0020o\u0062\u006a\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079\u0029"); -};_fega ,_cgcba :=_fged .Get ("\u0043\u006f\u0075n\u0074").(*_aff .PdfObjectInteger );if !_cgcba {return _g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064 \u0050\u0061\u0067e\u0073\u0020\u0043\u006fu\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0028\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0029"); -};_dab :=_geaf ._dafgd ._gaece ;_fegab :=_dab .GetTrailer ();if _fegab ==nil {return _g .New ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072");};_becf ,_cgcba :=_aff .GetIndirect (_fegab .Get ("\u0052\u006f\u006f\u0074")); -if !_cgcba {return _g .New ("c\u0061\u0074\u0061\u006c\u006f\u0067 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072 \u006e\u006f\u0074 \u0066o\u0075\u006e\u0064");};_abfc ,_cgcba :=_aff .GetDict (_becf );if !_cgcba {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0028\u0072\u006f\u006f\u0074\u0020\u0025\u0071\u0029\u0020\u0028\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0025\u0073\u0029",_becf ,*_fegab ); -return _g .New ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067");};for _ ,_efc :=range _abfc .Keys (){if _dcgg ._cdccb .Get (_efc )==nil {_deec :=_abfc .Get (_efc );_dcgg ._cdccb .Set (_efc ,_deec );};};if _geaf ._bgac !=nil {if _geaf ._bgac ._abcga {if _cffd :=_aff .TraceToDirectObject (_geaf ._bgac .ToPdfObject ()); -!_aff .IsNullObject (_cffd ){_dcgg ._cdccb .Set ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d",_cffd );_geaf .updateObjectsDeep (_cffd ,nil );}else {_adg .Log .Debug ("\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020t\u0072\u0061\u0063e\u0020\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u0020o\u0062\u006a\u0065\u0063\u0074, \u0066\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0061\u0064\u0064\u0020\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d\u002e"); -};}else {_dcgg ._cdccb .Set ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d",_geaf ._bgac .ToPdfObject ());_geaf .updateObjectsDeep (_geaf ._bgac .ToPdfObject (),nil );};};if _geaf ._fdbb !=nil {_geaf .updateObjectsDeep (_geaf ._fdbb .ToPdfObject (),nil ); -_dcgg ._cdccb .Set ("\u0044\u0053\u0053",_geaf ._fdbb .GetContainingPdfObject ());};if _geaf ._dgcg !=nil {_dcgg ._cdccb .Set ("\u0050\u0065\u0072m\u0073",_geaf ._dgcg .ToPdfObject ());_geaf .updateObjectsDeep (_geaf ._dgcg .ToPdfObject (),nil );};if _dcgg ._bgeecg .Major < 2{_dcgg .AddExtension ("\u0045\u0053\u0049\u0043","\u0031\u002e\u0037",5); -_dcgg .AddExtension ("\u0041\u0044\u0042\u0045","\u0031\u002e\u0037",8);};if _baace ,_cedb :=_aff .GetDict (_fegab .Get ("\u0049\u006e\u0066\u006f"));_cedb {if _geade ,_abab :=_aff .GetDict (_dcgg ._bacec );_abab {for _ ,_aefg :=range _baace .Keys (){if _geade .Get (_aefg )==nil {_geade .Set (_aefg ,_baace .Get (_aefg )); -};};};};if _geaf ._fabd !=nil {_dcgg ._bacec =_aff .MakeIndirectObject (_geaf ._fabd .ToPdfObject ());};_geaf .addNewObject (_dcgg ._bacec );_geaf .addNewObject (_dcgg ._adefd );_ffge :=false ;if len (_geaf ._dafgd .PageList )!=len (_geaf ._bbgg ){_ffge =true ; -}else {for _eggf :=range _geaf ._dafgd .PageList {switch {case _geaf ._bbgg [_eggf ]==_geaf ._dafgd .PageList [_eggf ]:case _geaf ._bbgg [_eggf ]==_geaf .Reader .PageList [_eggf ]:default:_ffge =true ;};if _ffge {break ;};};};if _ffge {_geaf .updateObjectsDeep (_dcgg ._edgeg ,nil ); -}else {_geaf ._abcb [_dcgg ._edgeg ]=struct{}{};};_dcgg ._edgeg .ObjectNumber =_geaf .Reader ._efcfb .ObjectNumber ;_geaf ._fffa [_dcgg ._edgeg ]=_geaf .Reader ._efcfb .ObjectNumber ;_fbce :=[]_aff .PdfObjectName {"\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s","\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078","\u0043r\u006f\u0070\u0042\u006f\u0078","\u0052\u006f\u0074\u0061\u0074\u0065"}; -for _ ,_aaff :=range _geaf ._bbgg {_gdbeg :=_aaff .ToPdfObject ();*_fega =*_fega +1;if _aebe ,_dde :=_gdbeg .(*_aff .PdfIndirectObject );_dde &&_aebe .GetParser ()==_geaf ._dafgd ._gaece {_cdcee .Append (&_aebe .PdfObjectReference );continue ;};if _fabf ,_fdaf :=_aff .GetDict (_gdbeg ); -_fdaf {_ccg ,_aeea :=_fabf .Get ("\u0050\u0061\u0072\u0065\u006e\u0074").(*_aff .PdfIndirectObject );for _aeea {_adg .Log .Trace ("\u0050a\u0067e\u0020\u0050\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_ccg );_ffaf ,_egb :=_ccg .PdfObject .(*_aff .PdfObjectDictionary ); -if !_egb {return _g .New ("i\u006e\u0076\u0061\u006cid\u0020P\u0061\u0072\u0065\u006e\u0074 \u006f\u0062\u006a\u0065\u0063\u0074");};for _ ,_bgab :=range _fbce {_adg .Log .Trace ("\u0046\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_bgab );if _bdb :=_fabf .Get (_bgab ); -_bdb !=nil {_adg .Log .Trace ("\u002d \u0070a\u0067\u0065\u0020\u0068\u0061s\u0020\u0061l\u0072\u0065\u0061\u0064\u0079");if len (_aaff ._bfce .Keys ())> 0&&!_ffge {_edbf :=_aaff ._bfce ;if _gfcb :=_edbf .Get (_bgab );_gfcb !=nil {if _bdb !=_gfcb {_adg .Log .Trace ("\u0049\u006e\u0068\u0065\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u006f\u0072\u0069\u0067i\u006ea\u006c\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0025\u0073\u002c\u0020\u0025\u0054",_bgab ,_gfcb ); -_fabf .Set (_bgab ,_gfcb );};};};continue ;};if _aeag :=_ffaf .Get (_bgab );_aeag !=nil {_adg .Log .Trace ("\u0049\u006e\u0068\u0065ri\u0074\u0069\u006e\u0067\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0025\u0073",_bgab );_fabf .Set (_bgab ,_aeag );};}; -_ccg ,_aeea =_ffaf .Get ("\u0050\u0061\u0072\u0065\u006e\u0074").(*_aff .PdfIndirectObject );_adg .Log .Trace ("\u004ee\u0078t\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u003a\u0020\u0025\u0054",_ffaf .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));};if _ffge {_fabf .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_dcgg ._edgeg ); -};};_geaf .updateObjectsDeep (_gdbeg ,nil );_cdcee .Append (_gdbeg );};if _ ,_aaedb :=_geaf ._dbb .Seek (0,_ega .SeekStart );_aaedb !=nil {return _aaedb ;};_acg :=make (map[SignatureHandler ]_ega .Writer );_edeb :=_aff .MakeArray ();for _ ,_cggd :=range _geaf ._aggc {if _efce ,_ecdf :=_aff .GetIndirect (_cggd ); -_ecdf {if _aaga ,_defgd :=_efce .PdfObject .(*pdfSignDictionary );_defgd {_fdfe :=*_aaga ._efde ;var _cebd error ;_acg [_fdfe ],_cebd =_fdfe .NewDigest (_aaga ._afgeg );if _cebd !=nil {return _cebd ;};_edeb .Append (_aff .MakeInteger (0xfffff),_aff .MakeInteger (0xfffff)); -};};};if _edeb .Len ()> 0{_edeb .Append (_aff .MakeInteger (0xfffff),_aff .MakeInteger (0xfffff));};for _ ,_gcdd :=range _geaf ._aggc {if _cdac ,_deg :=_aff .GetIndirect (_gcdd );_deg {if _cbd ,_cagf :=_cdac .PdfObject .(*pdfSignDictionary );_cagf {_cbd .Set ("\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e",_edeb ); -};};};_fdbg :=len (_acg )> 0;var _ddcb _ega .Reader =_geaf ._dbb ;if _fdbg {_cegb :=make ([]_ega .Writer ,0,len (_acg ));for _ ,_ddga :=range _acg {_cegb =append (_cegb ,_ddga );};_ddcb =_ega .TeeReader (_geaf ._dbb ,_ega .MultiWriter (_cegb ...));};_ffdc ,_dggf :=_ega .Copy (w ,_ddcb ); -if _dggf !=nil {return _dggf ;};if len (_geaf ._aggc )==0{return nil ;};_dcgg ._bfage =_ffdc ;_dcgg .ObjNumOffset =_geaf ._bfafd ;_dcgg ._ccbe =true ;_dcgg ._gfaab =_geaf ._gaec ;_dcgg ._gecec =_geaf ._cadg ;_dcgg ._abced =_geaf ._beec ;_dcgg ._bgeecg =_geaf ._dafgd .PdfVersion (); -_dcgg ._becc =_geaf ._fffa ;_dcgg ._fcgf =_geaf ._dga .GetCrypter ();_dcgg ._fdedd =_geaf ._dga .GetEncryptObj ();_cbba :=_geaf ._dga .GetXrefType ();if _cbba !=nil {_aedd :=*_cbba ==_aff .XrefTypeObjectStream ;_dcgg ._deggb =&_aedd ;};_dcgg ._bgadg =map[_aff .PdfObject ]struct{}{}; -_dcgg ._babcd =[]_aff .PdfObject {};for _ ,_gdd :=range _geaf ._aggc {if _ ,_fcafa :=_geaf ._abcb [_gdd ];_fcafa {continue ;};_dcgg .addObject (_gdd );};_ccbd :=w ;if _fdbg {_ccbd =_af .NewBuffer (nil );};if _geaf ._geff !=""&&_dcgg ._fcgf ==nil {_dcgg .Encrypt ([]byte (_geaf ._geff ),[]byte (_geaf ._geff ),_geaf ._dcgbg ); -};if _bggb :=_fegab .Get ("\u0049\u0044");_bggb !=nil {if _caec ,_dfea :=_aff .GetArray (_bggb );_dfea {_dcgg ._dfdcg =_caec ;};};if _afee :=_dcgg .Write (_ccbd );_afee !=nil {return _afee ;};if _fdbg {_cfaf :=_ccbd .(*_af .Buffer ).Bytes ();_abbg :=_aff .MakeArray (); -var _eabe []*pdfSignDictionary ;var _bege int64 ;for _ ,_geee :=range _dcgg ._babcd {if _bffa ,_bedg :=_aff .GetIndirect (_geee );_bedg {if _cagg ,_accf :=_bffa .PdfObject .(*pdfSignDictionary );_accf {_eabe =append (_eabe ,_cagg );_ggeb :=_cagg ._fgfd +int64 (_cagg ._aeage ); -_abbg .Append (_aff .MakeInteger (_bege ),_aff .MakeInteger (_ggeb -_bege ));_bege =_cagg ._fgfd +int64 (_cagg ._gebef );};};};_abbg .Append (_aff .MakeInteger (_bege ),_aff .MakeInteger (_ffdc +int64 (len (_cfaf ))-_bege ));_gbgb :=[]byte (_abbg .WriteString ()); -for _ ,_bgbb :=range _eabe {_dbeg :=int (_bgbb ._fgfd -_ffdc );for _geeg :=_bgbb ._bedebd ;_geeg < _bgbb ._ebceg ;_geeg ++{_cfaf [_dbeg +_geeg ]=' ';};_bbbged :=_cfaf [_dbeg +_bgbb ._bedebd :_dbeg +_bgbb ._ebceg ];copy (_bbbged ,_gbgb );};var _cgae int ; -for _ ,_abgfa :=range _eabe {_eacgg :=int (_abgfa ._fgfd -_ffdc );_gebe :=_cfaf [_cgae :_eacgg +_abgfa ._aeage ];_ggfbe :=*_abgfa ._efde ;_acg [_ggfbe ].Write (_gebe );_cgae =_eacgg +_abgfa ._gebef ;};for _ ,_fbdd :=range _eabe {_gdfe :=_cfaf [_cgae :]; -_ebdb :=*_fbdd ._efde ;_acg [_ebdb ].Write (_gdfe );};for _ ,_dddcg :=range _eabe {_fbgb :=int (_dddcg ._fgfd -_ffdc );_bdege :=*_dddcg ._efde ;_cgfaf :=_acg [_bdege ];if _adfb :=_bdege .Sign (_dddcg ._afgeg ,_cgfaf );_adfb !=nil {return _adfb ;};_dddcg ._afgeg .ByteRange =_abbg ; -_acga :=[]byte (_dddcg ._afgeg .Contents .WriteString ());for _acfb :=_dddcg ._bedebd ;_acfb < _dddcg ._ebceg ;_acfb ++{_cfaf [_fbgb +_acfb ]=' ';};for _fbbdf :=_dddcg ._aeage ;_fbbdf < _dddcg ._gebef ;_fbbdf ++{_cfaf [_fbgb +_fbbdf ]=' ';};_ccbg :=_cfaf [_fbgb +_dddcg ._bedebd :_fbgb +_dddcg ._ebceg ]; -copy (_ccbg ,_gbgb );_ccbg =_cfaf [_fbgb +_dddcg ._aeage :_fbgb +_dddcg ._gebef ];copy (_ccbg ,_acga );};_fggb :=_af .NewBuffer (_cfaf );_ ,_dggf =_ega .Copy (w ,_fggb );if _dggf !=nil {return _dggf ;};};_geaf ._gdgbd =true ;return nil ;}; +// GetRuneMetrics returns the character metrics for the specified rune. +// A bool flag is returned to indicate whether or not the entry was found. +func (_gage pdfCIDFontType2 )GetRuneMetrics (r rune )(_bbg .CharMetrics ,bool ){_beaeff ,_gaeba :=_gage ._ebgc [r ];if !_gaeba {_bdeee ,_fbfbe :=_dg .GetInt (_gage .DW );if !_fbfbe {return _bbg .CharMetrics {},false ;};_beaeff =int (*_bdeee );};return _bbg .CharMetrics {Wx :float64 (_beaeff )},true ; +}; -// SetAlpha sets the alpha layer for the image. -func (_adbbaa *Image )SetAlpha (alpha []byte ){_adbbaa ._becb =alpha }; +// EnableAll LTV enables all signatures in the PDF document. +// The signing certificate chain is extracted from each signature dictionary. +// Optionally, additional certificates can be specified through the +// `extraCerts` parameter. The LTV client attempts to build the certificate +// chain up to a trusted root by downloading any missing certificates. +func (_eabfc *LTV )EnableAll (extraCerts []*_bb .Certificate )error {_ddccfa :=_eabfc ._ebdgd ._debg .AcroForm ;for _ ,_faegd :=range _ddccfa .AllFields (){_cabdd ,_ :=_faegd .GetContext ().(*PdfFieldSignature );if _cabdd ==nil {continue ;};_bdeeec :=_cabdd .V ; +if _agbc :=_eabfc .validateSig (_bdeeec );_agbc !=nil {_ag .Log .Debug ("\u0057\u0041\u0052N\u003a\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0076",_agbc ); +};if _acdb :=_eabfc .Enable (_bdeeec ,extraCerts );_acdb !=nil {return _acdb ;};};return nil ;}; -// SetContext sets the specific fielddata type, e.g. would be PdfFieldButton for a button field. -func (_afaa *PdfField )SetContext (ctx PdfModel ){_afaa ._gaecf =ctx }; +// NewPdfActionNamed returns a new "named" action. +func NewPdfActionNamed ()*PdfActionNamed {_gda :=NewPdfAction ();_aeb :=&PdfActionNamed {};_aeb .PdfAction =_gda ;_gda .SetContext (_aeb );return _aeb ;};func (_bccg *PdfReader )newPdfAnnotationLinkFromDict (_dffa *_dg .PdfObjectDictionary )(*PdfAnnotationLink ,error ){_gbdd :=PdfAnnotationLink {}; +_gbdd .A =_dffa .Get ("\u0041");_gbdd .Dest =_dffa .Get ("\u0044\u0065\u0073\u0074");_gbdd .H =_dffa .Get ("\u0048");_gbdd .PA =_dffa .Get ("\u0050\u0041");_gbdd .QuadPoints =_dffa .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");_gbdd .BS =_dffa .Get ("\u0042\u0053"); +return &_gbdd ,nil ;}; -// GetContainingPdfObject implements interface PdfModel. -func (_abgfaf *PdfSignatureReference )GetContainingPdfObject ()_aff .PdfObject {return _abgfaf ._fdebg }; +// FieldValueProvider provides field values from a data source such as FDF, JSON or any other. +type FieldValueProvider interface{FieldValues ()(map[string ]_dg .PdfObject ,error );}; -// CompliancePdfReader is a wrapper over PdfReader that is used for verifying if the input Pdf document matches the -// compliance rules of standards like PDF/A. -// NOTE: This implementation is in experimental development state. -// Keep in mind that it might change in the subsequent minor versions. -type CompliancePdfReader struct{*PdfReader ;_cffae _aff .ParserMetadata ;};func (_deee *PdfReader )newPdfActionRenditionFromDict (_gfgd *_aff .PdfObjectDictionary )(*PdfActionRendition ,error ){return &PdfActionRendition {R :_gfgd .Get ("\u0052"),AN :_gfgd .Get ("\u0041\u004e"),OP :_gfgd .Get ("\u004f\u0050"),JS :_gfgd .Get ("\u004a\u0053")},nil ; -};func _cfafa (_bcec *_aff .PdfObjectDictionary )(*PdfFieldButton ,error ){_gabb :=&PdfFieldButton {};_gabb .PdfField =NewPdfField ();_gabb .PdfField .SetContext (_gabb );_gabb .Opt ,_ =_aff .GetArray (_bcec .Get ("\u004f\u0070\u0074"));_egcg :=NewPdfAnnotationWidget (); -_egcg .A ,_ =_aff .GetDict (_bcec .Get ("\u0041"));_egcg .AP ,_ =_aff .GetDict (_bcec .Get ("\u0041\u0050"));_egcg .SetContext (_gabb );_gabb .PdfField .Annotations =append (_gabb .PdfField .Annotations ,_egcg );return _gabb ,nil ;};func (_aac *PdfReader )newPdfActionLaunchFromDict (_age *_aff .PdfObjectDictionary )(*PdfActionLaunch ,error ){_gffa ,_bfdg :=_dfc (_age .Get ("\u0046")); -if _bfdg !=nil {return nil ,_bfdg ;};return &PdfActionLaunch {Win :_age .Get ("\u0057\u0069\u006e"),Mac :_age .Get ("\u004d\u0061\u0063"),Unix :_age .Get ("\u0055\u006e\u0069\u0078"),NewWindow :_age .Get ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw"),F :_gffa },nil ; -}; +// PdfPageResourcesColorspaces contains the colorspace in the PdfPageResources. +// Needs to have matching name and colorspace map entry. The Names define the order. +type PdfPageResourcesColorspaces struct{Names []string ;Colorspaces map[string ]PdfColorspace ;_dcebf *_dg .PdfIndirectObject ;}; -// SetContext set the sub annotation (context). -func (_bfga *PdfShading )SetContext (ctx PdfModel ){_bfga ._fcbfb =ctx }; +// PdfColor interface represents a generic color in PDF. +type PdfColor interface{}; -// GetContainingPdfObject returns the container of the outline tree node (indirect object). -func (_fgebb *PdfOutlineTreeNode )GetContainingPdfObject ()_aff .PdfObject {return _fgebb .GetContext ().GetContainingPdfObject ();}; +// NewPdfAnnotationLink returns a new link annotation. +func NewPdfAnnotationLink ()*PdfAnnotationLink {_ded :=NewPdfAnnotation ();_fdcc :=&PdfAnnotationLink {};_fdcc .PdfAnnotation =_ded ;_ded .SetContext (_fdcc );return _fdcc ;}; -// String returns the name of the colorspace (DeviceN). -func (_cged *PdfColorspaceDeviceN )String ()string {return "\u0044e\u0076\u0069\u0063\u0065\u004e"};func (_ggaab *PdfWriter )setDocumentIDs (_beecb ,_dbcdeb string ){_ggaab ._dfdcg =_aff .MakeArray (_aff .MakeHexString (_beecb ),_aff .MakeHexString (_dbcdeb )); +// String returns a string that describes `font`. +func (_cdgaf *PdfFont )String ()string {_gabc :="";if _cdgaf ._cadf .Encoder ()!=nil {_gabc =_cdgaf ._cadf .Encoder ().String ();};return _b .Sprintf ("\u0046\u004f\u004e\u0054\u007b\u0025\u0054\u0020\u0025s\u0020\u0025\u0073\u007d",_cdgaf ._cadf ,_cdgaf .baseFields ().coreString (),_gabc ); }; -// ToPdfObject returns an indirect object containing the signature field dictionary. -func (_abef *PdfFieldSignature )ToPdfObject ()_aff .PdfObject {if _abef .PdfAnnotationWidget !=nil {_abef .PdfAnnotationWidget .ToPdfObject ();};_abef .PdfField .ToPdfObject ();_agga :=_abef ._dfbfd ;_cdec :=_agga .PdfObject .(*_aff .PdfObjectDictionary ); -_cdec .SetIfNotNil ("\u0046\u0054",_aff .MakeName ("\u0053\u0069\u0067"));_cdec .SetIfNotNil ("\u004c\u006f\u0063\u006b",_abef .Lock );_cdec .SetIfNotNil ("\u0053\u0056",_abef .SV );if _abef .V !=nil {_cdec .SetIfNotNil ("\u0056",_abef .V .ToPdfObject ()); -};return _agga ;}; - -// ToPdfObject implements interface PdfModel. -func (_cc *PdfActionImportData )ToPdfObject ()_aff .PdfObject {_cc .PdfAction .ToPdfObject ();_bfdb :=_cc ._df ;_gcee :=_bfdb .PdfObject .(*_aff .PdfObjectDictionary );_gcee .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeImportData )));if _cc .F !=nil {_gcee .Set ("\u0046",_cc .F .ToPdfObject ()); -};return _bfdb ;}; +// NewPdfColorDeviceCMYK returns a new CMYK32 color. +func NewPdfColorDeviceCMYK (c ,m ,y ,k float64 )*PdfColorDeviceCMYK {_ccac :=PdfColorDeviceCMYK {c ,m ,y ,k };return &_ccac ;}; -// SetSubtype sets the Subtype S for given PdfOutputIntent. -func (_fcefa *PdfOutputIntent )SetSubtype (subtype PdfOutputIntentType )error {if !subtype .IsValid (){return _g .New ("\u0070\u0072o\u0076\u0069\u0064\u0065d\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u004f\u0075t\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0053\u0075b\u0054\u0079\u0070\u0065"); -};_fcefa .S =subtype ;return nil ;};func (_gbcfb *PdfWriter )updateObjectNumbers (){_fdeed :=_gbcfb .ObjNumOffset ;_dcbca :=0;for _ ,_dface :=range _gbcfb ._babcd {_bafgf :=int64 (_dcbca +1+_fdeed );_fccae :=true ;if _gbcfb ._ccbe {if _deefb ,_badcd :=_gbcfb ._becc [_dface ]; -_badcd {_bafgf =_deefb ;_fccae =false ;};};switch _cedda :=_dface .(type ){case *_aff .PdfIndirectObject :_cedda .ObjectNumber =_bafgf ;_cedda .GenerationNumber =0;case *_aff .PdfObjectStream :_cedda .ObjectNumber =_bafgf ;_cedda .GenerationNumber =0;case *_aff .PdfObjectStreams :_cedda .ObjectNumber =_bafgf ; -_cedda .GenerationNumber =0;default:_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u0020%\u0054\u0020\u002d\u0020\u0073\u006b\u0069p\u0070\u0069\u006e\u0067",_cedda );continue ; -};if _fccae {_dcbca ++;};};_fcgc :=func (_abbfa _aff .PdfObject )int64 {switch _fadad :=_abbfa .(type ){case *_aff .PdfIndirectObject :return _fadad .ObjectNumber ;case *_aff .PdfObjectStream :return _fadad .ObjectNumber ;case *_aff .PdfObjectStreams :return _fadad .ObjectNumber ; -};return 0;};_fg .SliceStable (_gbcfb ._babcd ,func (_bdded ,_dfdgg int )bool {return _fcgc (_gbcfb ._babcd [_bdded ])< _fcgc (_gbcfb ._babcd [_dfdgg ])});}; +// A PdfPattern can represent a Pattern, either a tiling pattern or a shading pattern. +// Note that all patterns shall be treated as colours; a Pattern colour space shall be established with the CS or cs +// operator just like other colour spaces, and a particular pattern shall be installed as the current colour with the +// SCN or scn operator. +type PdfPattern struct{ -// GetNumComponents returns the number of color components of the colorspace device. -// Returns 1 for a CalGray device. -func (_ddcg *PdfColorspaceCalGray )GetNumComponents ()int {return 1}; +// Type: Pattern +PatternType int64 ;_cgdcc PdfModel ;_eacce _dg .PdfObject ;}; -// ImageToRGB returns the passed in image. Method exists in order to satisfy -// the PdfColorspace interface. -func (_dggc *PdfColorspaceDeviceRGB )ImageToRGB (img Image )(Image ,error ){return img ,nil }; +// GetContainingPdfObject returns the container of the shading object (indirect object). +func (_eeafd *PdfShading )GetContainingPdfObject ()_dg .PdfObject {return _eeafd ._bcfbg }; -// NewPdfActionLaunch returns a new "launch" action. -func NewPdfActionLaunch ()*PdfActionLaunch {_gdc :=NewPdfAction ();_ea :=&PdfActionLaunch {};_ea .PdfAction =_gdc ;_gdc .SetContext (_ea );return _ea ;}; +// Register registers (caches) a model to primitive object relationship. +func (_ffae *modelManager )Register (primitive _dg .PdfObject ,model PdfModel ){_ffae ._aaddgg [model ]=primitive ;_ffae ._eccbc [primitive ]=model ;};var _ddcf =map[string ]struct{}{"\u0054\u0069\u0074l\u0065":{},"\u0041\u0075\u0074\u0068\u006f\u0072":{},"\u0053u\u0062\u006a\u0065\u0063\u0074":{},"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073":{},"\u0043r\u0065\u0061\u0074\u006f\u0072":{},"\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072":{},"\u0054r\u0061\u0070\u0070\u0065\u0064":{},"\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065":{},"\u004do\u0064\u0044\u0061\u0074\u0065":{}}; -// ToImage converts an object to an Image which can be transformed or saved out. -// The image data is decoded and the Image returned. -func (_gfbeg *XObjectImage )ToImage ()(*Image ,error ){_fdadf :=&Image {};if _gfbeg .Height ==nil {return nil ,_g .New ("\u0068e\u0069\u0067\u0068\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -};_fdadf .Height =*_gfbeg .Height ;if _gfbeg .Width ==nil {return nil ,_g .New ("\u0077\u0069\u0064th\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};_fdadf .Width =*_gfbeg .Width ;if _gfbeg .BitsPerComponent ==nil {switch _gfbeg .Filter .(type ){case *_aff .CCITTFaxEncoder ,*_aff .JBIG2Encoder :_fdadf .BitsPerComponent =1; -case *_aff .LZWEncoder ,*_aff .RunLengthEncoder :_fdadf .BitsPerComponent =8;default:return nil ,_g .New ("\u0062\u0069\u0074\u0073\u0020\u0070\u0065\u0072\u0020\u0063\u006fm\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006d\u0069\u0073s\u0069\u006e\u0067"); -};}else {_fdadf .BitsPerComponent =*_gfbeg .BitsPerComponent ;};_fdadf .ColorComponents =_gfbeg .ColorSpace .GetNumComponents ();_gfbeg ._fccgd .Set ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073",_aff .MakeInteger (int64 (_fdadf .ColorComponents ))); -_cdddf ,_deceb :=_aff .DecodeStream (_gfbeg ._fccgd );if _deceb !=nil {return nil ,_deceb ;};_fdadf .Data =_cdddf ;if _gfbeg .Decode !=nil {_eccfc ,_cgegb :=_gfbeg .Decode .(*_aff .PdfObjectArray );if !_cgegb {_adg .Log .Debug ("I\u006e\u0076\u0061\u006cid\u0020D\u0065\u0063\u006f\u0064\u0065 \u006f\u0062\u006a\u0065\u0063\u0074"); -return nil ,_g .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065");};_dadgb ,_acbb :=_eccfc .ToFloat64Array ();if _acbb !=nil {return nil ,_acbb ;};switch _gfbeg .ColorSpace .(type ){case *PdfColorspaceDeviceCMYK :_ebege :=_gfbeg .ColorSpace .DecodeArray (); -if _ebege [0]==_dadgb [0]&&_ebege [1]==_dadgb [1]&&_ebege [2]==_dadgb [2]&&_ebege [3]==_dadgb [3]{_fdadf ._edgef =_dadgb ;};default:_fdadf ._edgef =_dadgb ;};};return _fdadf ,nil ;}; -// NewReaderOpts generates a default `ReaderOpts` instance. -func NewReaderOpts ()*ReaderOpts {return &ReaderOpts {Password :"",LazyLoad :true }}; +// NewCustomPdfOutputIntent creates a new custom PdfOutputIntent. +func NewCustomPdfOutputIntent (outputCondition ,outputConditionIdentifier ,info string ,destOutputProfile []byte ,colorComponents int )*PdfOutputIntent {return &PdfOutputIntent {Type :"\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074",OutputCondition :outputCondition ,OutputConditionIdentifier :outputConditionIdentifier ,Info :info ,DestOutputProfile :destOutputProfile ,_cfaef :_dg .MakeDict (),ColorComponents :colorComponents }; +}; // ToPdfObject implements interface PdfModel. -func (_afaee *PdfAnnotationPrinterMark )ToPdfObject ()_aff .PdfObject {_afaee .PdfAnnotation .ToPdfObject ();_feda :=_afaee ._ccfb ;_fgfa :=_feda .PdfObject .(*_aff .PdfObjectDictionary );_fgfa .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("P\u0072\u0069\u006e\u0074\u0065\u0072\u004d\u0061\u0072\u006b")); -_fgfa .SetIfNotNil ("\u004d\u004e",_afaee .MN );return _feda ;};func (_geeac *PdfWriter )checkLicense ()error {_gfgfa :=_gff .GetLicenseKey ();if (_gfgfa ==nil ||!_gfgfa .IsLicensed ())&&!_cafgd {_e .Printf ("\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064\u0020c\u006f\u0070\u0079\u0020\u006f\u0066\u0020\u0055\u006e\u0069P\u0044\u0046\u000a"); -_e .Println ("-\u0020\u0047\u0065\u0074\u0020\u0061\u0020\u0066\u0072e\u0065\u0020\u0074\u0072\u0069\u0061\u006c l\u0069\u0063\u0065\u006es\u0065\u0020\u006f\u006e\u0020\u0068\u0074\u0074\u0070s:\u002f\u002fu\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"); -return _g .New ("\u0075\u006e\u0069\u0070d\u0066\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020c\u006fd\u0065\u0020\u0072\u0065\u0071\u0075\u0069r\u0065\u0064");};return nil ;};func _fgagf (_cdadc _aff .PdfObject )(*PdfPageResourcesColorspaces ,error ){_cgdff :=&PdfPageResourcesColorspaces {}; -if _eggfcda ,_bbbabf :=_cdadc .(*_aff .PdfIndirectObject );_bbbabf {_cgdff ._abedg =_eggfcda ;_cdadc =_eggfcda .PdfObject ;};_eggd ,_abag :=_aff .GetDict (_cdadc );if !_abag {return nil ,_g .New ("\u0043\u0053\u0020at\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};_cgdff .Names =[]string {};_cgdff .Colorspaces =map[string ]PdfColorspace {};for _ ,_dcab :=range _eggd .Keys (){_fgaec :=_eggd .Get (_dcab );_cgdff .Names =append (_cgdff .Names ,string (_dcab ));_abgbe ,_cadba :=NewPdfColorspaceFromPdfObject (_fgaec ); -if _cadba !=nil {return nil ,_cadba ;};_cgdff .Colorspaces [string (_dcab )]=_abgbe ;};return _cgdff ,nil ;}; +func (_abb *PdfActionSound )ToPdfObject ()_dg .PdfObject {_abb .PdfAction .ToPdfObject ();_gdf :=_abb ._cbd ;_ged :=_gdf .PdfObject .(*_dg .PdfObjectDictionary );_ged .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeSound )));_ged .SetIfNotNil ("\u0053\u006f\u0075n\u0064",_abb .Sound ); +_ged .SetIfNotNil ("\u0056\u006f\u006c\u0075\u006d\u0065",_abb .Volume );_ged .SetIfNotNil ("S\u0079\u006e\u0063\u0068\u0072\u006f\u006e\u006f\u0075\u0073",_abb .Synchronous );_ged .SetIfNotNil ("\u0052\u0065\u0070\u0065\u0061\u0074",_abb .Repeat );_ged .SetIfNotNil ("\u004d\u0069\u0078",_abb .Mix ); +return _gdf ;}; + +// NewPdfActionGoToE returns a new "go to embedded" action. +func NewPdfActionGoToE ()*PdfActionGoToE {_ae :=NewPdfAction ();_ecbg :=&PdfActionGoToE {};_ecbg .PdfAction =_ae ;_ae .SetContext (_ecbg );return _ecbg ;}; // ButtonType represents the subtype of a button field, can be one of: // - Checkbox (ButtonTypeCheckbox) @@ -3547,1416 +3580,1381 @@ if _cadba !=nil {return nil ,_cadba ;};_cgdff .Colorspaces [string (_dcab )]=_ab // - RadioButton (ButtonTypeRadioButton) type ButtonType int ; -// NewDSS returns a new DSS dictionary. -func NewDSS ()*DSS {return &DSS {_dfad :_aff .MakeIndirectObject (_aff .MakeDict ()),VRI :map[string ]*VRI {}};};func _bdagg (_dfdde *_aff .PdfObjectDictionary )(*PdfTilingPattern ,error ){_ebeaf :=&PdfTilingPattern {};_bcgfd :=_dfdde .Get ("\u0050a\u0069\u006e\u0074\u0054\u0079\u0070e"); -if _bcgfd ==nil {_adg .Log .Debug ("\u0050\u0061\u0069\u006e\u0074\u0054\u0079\u0070\u0065\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ;};_gbad ,_efggd :=_bcgfd .(*_aff .PdfObjectInteger );if !_efggd {_adg .Log .Debug ("\u0050\u0061\u0069\u006e\u0074\u0054y\u0070\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006ft\u0020\u0025\u0054\u0029",_bcgfd ); -return nil ,_aff .ErrTypeError ;};_ebeaf .PaintType =_gbad ;_bcgfd =_dfdde .Get ("\u0054\u0069\u006c\u0069\u006e\u0067\u0054\u0079\u0070\u0065");if _bcgfd ==nil {_adg .Log .Debug ("\u0054i\u006ci\u006e\u0067\u0054\u0079\u0070e\u0020\u006di\u0073\u0073\u0069\u006e\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_bbfdb ,_efggd :=_bcgfd .(*_aff .PdfObjectInteger );if !_efggd {_adg .Log .Debug ("\u0054\u0069\u006cin\u0067\u0054\u0079\u0070\u0065\u0020\u006e\u006f\u0074 \u0061n\u0020i\u006et\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_bcgfd ); -return nil ,_aff .ErrTypeError ;};_ebeaf .TilingType =_bbfdb ;_bcgfd =_dfdde .Get ("\u0042\u0042\u006f\u0078");if _bcgfd ==nil {_adg .Log .Debug ("\u0042\u0042\u006fx\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ; -};_bcgfd =_aff .TraceToDirectObject (_bcgfd );_acdg ,_efggd :=_bcgfd .(*_aff .PdfObjectArray );if !_efggd {_adg .Log .Debug ("\u0042B\u006f\u0078 \u0073\u0068\u006fu\u006c\u0064\u0020\u0062\u0065\u0020\u0073p\u0065\u0063\u0069\u0066\u0069\u0065d\u0020\u0062\u0079\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061y\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_bcgfd ); -return nil ,_aff .ErrTypeError ;};_gdfab ,_ffcge :=NewPdfRectangle (*_acdg );if _ffcge !=nil {_adg .Log .Debug ("\u0042\u0042\u006f\u0078\u0020\u0065\u0072\u0072\u006fr\u003a\u0020\u0025\u0076",_ffcge );return nil ,_ffcge ;};_ebeaf .BBox =_gdfab ;_bcgfd =_dfdde .Get ("\u0058\u0053\u0074e\u0070"); -if _bcgfd ==nil {_adg .Log .Debug ("\u0058\u0053\u0074\u0065\u0070\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ;};_ccagea ,_ffcge :=_aff .GetNumberAsFloat (_bcgfd );if _ffcge !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0058S\u0074e\u0070\u0020\u0061\u0073\u0020\u0066\u006c\u006f\u0061\u0074\u003a\u0020\u0025\u0076",_ccagea ); -return nil ,_ffcge ;};_ebeaf .XStep =_aff .MakeFloat (_ccagea );_bcgfd =_dfdde .Get ("\u0059\u0053\u0074e\u0070");if _bcgfd ==nil {_adg .Log .Debug ("\u0059\u0053\u0074\u0065\u0070\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");return nil ,ErrRequiredAttributeMissing ; -};_gaeff ,_ffcge :=_aff .GetNumberAsFloat (_bcgfd );if _ffcge !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0059S\u0074e\u0070\u0020\u0061\u0073\u0020\u0066\u006c\u006f\u0061\u0074\u003a\u0020\u0025\u0076",_gaeff ); -return nil ,_ffcge ;};_ebeaf .YStep =_aff .MakeFloat (_gaeff );_bcgfd =_dfdde .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");if _bcgfd ==nil {_adg .Log .Debug ("\u0052\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_dfdde ,_efggd =_aff .TraceToDirectObject (_bcgfd ).(*_aff .PdfObjectDictionary );if !_efggd {return nil ,_e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063e\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_bcgfd ); -};_fagfa ,_ffcge :=NewPdfPageResourcesFromDict (_dfdde );if _ffcge !=nil {return nil ,_ffcge ;};_ebeaf .Resources =_fagfa ;if _bcbf :=_dfdde .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");_bcbf !=nil {_gfgddd ,_bbage :=_bcbf .(*_aff .PdfObjectArray );if !_bbage {_adg .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_bcbf ); -return nil ,_aff .ErrTypeError ;};_ebeaf .Matrix =_gfgddd ;};return _ebeaf ,nil ;}; - -// GetAnnotations returns the list of page annotations for `page`. If not loaded attempts to load the -// annotations, otherwise returns the loaded list. -func (_cdfg *PdfPage )GetAnnotations ()([]*PdfAnnotation ,error ){if _cdfg ._bbgb !=nil {return _cdfg ._bbgb ,nil ;};if _cdfg .Annots ==nil {_cdfg ._bbgb =[]*PdfAnnotation {};return nil ,nil ;};if _cdfg ._dbbf ==nil {_cdfg ._bbgb =[]*PdfAnnotation {};return nil ,nil ; -};_dgcbeb ,_gceeb :=_cdfg ._dbbf .loadAnnotations (_cdfg .Annots );if _gceeb !=nil {return nil ,_gceeb ;};if _dgcbeb ==nil {_cdfg ._bbgb =[]*PdfAnnotation {};};_cdfg ._bbgb =_dgcbeb ;return _cdfg ._bbgb ,nil ;};func (_eecbg *PdfWriter )copyObject (_fagff _aff .PdfObject ,_befbg map[_aff .PdfObject ]_aff .PdfObject ,_ggdfg map[_aff .PdfObject ]struct{},_fafaf bool )_aff .PdfObject {_bbcgfg :=!_eecbg ._ccbe &&_ggdfg !=nil ; -if _cegfde ,_fbabeg :=_befbg [_fagff ];_fbabeg {if _bbcgfg &&!_fafaf {delete (_ggdfg ,_fagff );};return _cegfde ;};if _fagff ==nil {_faddf :=_aff .MakeNull ();return _faddf ;};_gagbcb :=_fagff ;switch _gbgbb :=_fagff .(type ){case *_aff .PdfObjectArray :_efae :=_aff .MakeArray (); -_gagbcb =_efae ;_befbg [_fagff ]=_gagbcb ;for _ ,_dacd :=range _gbgbb .Elements (){_efae .Append (_eecbg .copyObject (_dacd ,_befbg ,_ggdfg ,_fafaf ));};case *_aff .PdfObjectStreams :_cedef :=&_aff .PdfObjectStreams {PdfObjectReference :_gbgbb .PdfObjectReference }; -_gagbcb =_cedef ;_befbg [_fagff ]=_gagbcb ;for _ ,_afbed :=range _gbgbb .Elements (){_cedef .Append (_eecbg .copyObject (_afbed ,_befbg ,_ggdfg ,_fafaf ));};case *_aff .PdfObjectStream :_aebae :=&_aff .PdfObjectStream {Stream :_gbgbb .Stream ,PdfObjectReference :_gbgbb .PdfObjectReference }; -_gagbcb =_aebae ;_befbg [_fagff ]=_gagbcb ;_aebae .PdfObjectDictionary =_eecbg .copyObject (_gbgbb .PdfObjectDictionary ,_befbg ,_ggdfg ,_fafaf ).(*_aff .PdfObjectDictionary );case *_aff .PdfObjectDictionary :var _caaee bool ;if _bbcgfg &&!_fafaf {if _dfcbe ,_ :=_aff .GetNameVal (_gbgbb .Get ("\u0054\u0079\u0070\u0065")); -_dfcbe =="\u0050\u0061\u0067\u0065"{_ ,_cecc :=_eecbg ._gbbce [_gbgbb ];_fafaf =!_cecc ;_caaee =_fafaf ;};};_fddgc :=_aff .MakeDict ();_gagbcb =_fddgc ;_befbg [_fagff ]=_gagbcb ;for _ ,_ecec :=range _gbgbb .Keys (){_fddgc .Set (_ecec ,_eecbg .copyObject (_gbgbb .Get (_ecec ),_befbg ,_ggdfg ,_fafaf )); -};if _caaee {_gagbcb =_aff .MakeNull ();_fafaf =false ;};case *_aff .PdfIndirectObject :_cccca :=&_aff .PdfIndirectObject {PdfObjectReference :_gbgbb .PdfObjectReference };_gagbcb =_cccca ;_befbg [_fagff ]=_gagbcb ;_cccca .PdfObject =_eecbg .copyObject (_gbgbb .PdfObject ,_befbg ,_ggdfg ,_fafaf ); -case *_aff .PdfObjectString :_eccc :=*_gbgbb ;_gagbcb =&_eccc ;_befbg [_fagff ]=_gagbcb ;case *_aff .PdfObjectName :_bdbbg :=*_gbgbb ;_gagbcb =&_bdbbg ;_befbg [_fagff ]=_gagbcb ;case *_aff .PdfObjectNull :_gagbcb =_aff .MakeNull ();_befbg [_fagff ]=_gagbcb ; -case *_aff .PdfObjectInteger :_dgfgc :=*_gbgbb ;_gagbcb =&_dgfgc ;_befbg [_fagff ]=_gagbcb ;case *_aff .PdfObjectReference :_cfabe :=*_gbgbb ;_gagbcb =&_cfabe ;_befbg [_fagff ]=_gagbcb ;case *_aff .PdfObjectFloat :_befce :=*_gbgbb ;_gagbcb =&_befce ;_befbg [_fagff ]=_gagbcb ; -case *_aff .PdfObjectBool :_dadbd :=*_gbgbb ;_gagbcb =&_dadbd ;_befbg [_fagff ]=_gagbcb ;case *pdfSignDictionary :_dcaea :=&pdfSignDictionary {PdfObjectDictionary :_aff .MakeDict (),_efde :_gbgbb ._efde ,_afgeg :_gbgbb ._afgeg };_gagbcb =_dcaea ;_befbg [_fagff ]=_gagbcb ; -for _ ,_caabc :=range _gbgbb .Keys (){_dcaea .Set (_caabc ,_eecbg .copyObject (_gbgbb .Get (_caabc ),_befbg ,_ggdfg ,_fafaf ));};default:_adg .Log .Info ("\u0054\u004f\u0044\u004f\u0028\u0061\u0035\u0069\u0029\u003a\u0020\u0069\u006dp\u006c\u0065\u006d\u0065\u006e\u0074 \u0063\u006f\u0070\u0079\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0066\u006fr\u0020\u0025\u002b\u0076",_fagff ); -};if _bbcgfg &&_fafaf {_ggdfg [_fagff ]=struct{}{};};return _gagbcb ;}; - -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. -func (_adgad *PdfColorspaceICCBased )ColorFromFloats (vals []float64 )(PdfColor ,error ){if _adgad .Alternate ==nil {if _adgad .N ==1{_bgcfa :=NewPdfColorspaceDeviceGray ();return _bgcfa .ColorFromFloats (vals );}else if _adgad .N ==3{_ecbd :=NewPdfColorspaceDeviceRGB (); -return _ecbd .ColorFromFloats (vals );}else if _adgad .N ==4{_fgagd :=NewPdfColorspaceDeviceCMYK ();return _fgagd .ColorFromFloats (vals );}else {return nil ,_g .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); -};};return _adgad .Alternate .ColorFromFloats (vals );}; - -// ToInteger convert to an integer format. -func (_egda *PdfColorCalGray )ToInteger (bits int )uint32 {_afdc :=_cf .Pow (2,float64 (bits ))-1;return uint32 (_afdc *_egda .Val ());}; - -// NewPdfColorLab returns a new Lab color. -func NewPdfColorLab (l ,a ,b float64 )*PdfColorLab {_bfeff :=PdfColorLab {l ,a ,b };return &_bfeff }; - -// NewPdfWriter initializes a new PdfWriter. -func NewPdfWriter ()PdfWriter {_cdceeb :=PdfWriter {};_cdceeb ._bgadg =map[_aff .PdfObject ]struct{}{};_cdceeb ._babcd =[]_aff .PdfObject {};_cdceeb ._gbfdc =map[_aff .PdfObject ][]*_aff .PdfObjectDictionary {};_cdceeb ._cgdcb =map[_aff .PdfObject ]struct{}{}; -_cdceeb ._bgeecg .Major =1;_cdceeb ._bgeecg .Minor =3;_cedce :=_aff .MakeDict ();_cgfdd :=[]struct{_fdcee _aff .PdfObjectName ;_adcea string ;}{{"\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",_bedc ()},{"\u0043r\u0065\u0061\u0074\u006f\u0072",_bfdfd ()},{"\u0041\u0075\u0074\u0068\u006f\u0072",_baccc ()},{"\u0053u\u0062\u006a\u0065\u0063\u0074",_ecgcg ()},{"\u0054\u0069\u0074l\u0065",_bgabd ()},{"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",_gbddg ()}}; -for _ ,_bbcac :=range _cgfdd {if _bbcac ._adcea !=""{_cedce .Set (_bbcac ._fdcee ,_aff .MakeString (_bbcac ._adcea ));};};if _cceda :=_cfdg ();!_cceda .IsZero (){if _gaabg ,_gbbg :=NewPdfDateFromTime (_cceda );_gbbg ==nil {_cedce .Set ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_gaabg .ToPdfObject ()); -};};if _cgfdcb :=_cgfdc ();!_cgfdcb .IsZero (){if _feba ,_dcaddg :=NewPdfDateFromTime (_cgfdcb );_dcaddg ==nil {_cedce .Set ("\u004do\u0064\u0044\u0061\u0074\u0065",_feba .ToPdfObject ());};};_dfaff :=_aff .PdfIndirectObject {};_dfaff .PdfObject =_cedce ; -_cdceeb ._bacec =&_dfaff ;_cdceeb .addObject (&_dfaff );_gbfde :=_aff .PdfIndirectObject {};_fdefb :=_aff .MakeDict ();_fdefb .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0043a\u0074\u0061\u006c\u006f\u0067"));_gbfde .PdfObject =_fdefb ;_cdceeb ._adefd =&_gbfde ; -_cdceeb .addObject (_cdceeb ._adefd );_gabe ,_bgbe :=_ecaeb ("\u0077");if _bgbe !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_bgbe );};_cdceeb ._cgdb =_gabe ;_fgcdg :=_aff .PdfIndirectObject {};_cbaab :=_aff .MakeDict ();_cbaab .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0050\u0061\u0067e\u0073")); -_dgad :=_aff .PdfObjectArray {};_cbaab .Set ("\u004b\u0069\u0064\u0073",&_dgad );_cbaab .Set ("\u0043\u006f\u0075n\u0074",_aff .MakeInteger (0));_fgcdg .PdfObject =_cbaab ;_cdceeb ._edgeg =&_fgcdg ;_cdceeb ._gbbce =map[_aff .PdfObject ]struct{}{};_cdceeb .addObject (_cdceeb ._edgeg ); -_fdefb .Set ("\u0050\u0061\u0067e\u0073",&_fgcdg );_cdceeb ._cdccb =_fdefb ;_adg .Log .Trace ("\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0025\u0073",_gbfde );return _cdceeb ;}; - -// NewCompositePdfFontFromTTF loads a composite TTF font. Composite fonts can -// be used to represent unicode fonts which can have multi-byte character codes, representing a wide -// range of values. They are often used for symbolic languages, including Chinese, Japanese and Korean. -// It is represented by a Type0 Font with an underlying CIDFontType2 and an Identity-H encoding map. -// TODO: May be extended in the future to support a larger variety of CMaps and vertical fonts. -// NOTE: For simple fonts, use NewPdfFontFromTTF. -func NewCompositePdfFontFromTTF (r _ega .ReadSeeker )(*PdfFont ,error ){_ecab ,_fagdf :=_ad .ReadAll (r );if _fagdf !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0072\u0065\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u003a\u0020\u0025\u0076",_fagdf ); -return nil ,_fagdf ;};_dadcb ,_fagdf :=_bcd .TtfParse (_af .NewReader (_ecab ));if _fagdf !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0077\u0068\u0069\u006c\u0065\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067 \u0074\u0074\u0066\u0020\u0066\u006f\u006et\u003a\u0020\u0025\u0076",_fagdf ); -return nil ,_fagdf ;};_fcef :=&pdfCIDFontType2 {fontCommon :fontCommon {_fbged :"\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"},CIDToGIDMap :_aff .MakeName ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079")};if len (_dadcb .Widths )<=0{return nil ,_g .New ("\u0045\u0052\u0052O\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065 \u0028\u0057\u0069\u0064\u0074\u0068\u0073\u0029"); -};_bgage :=1000.0/float64 (_dadcb .UnitsPerEm );_ddgag :=_bgage *float64 (_dadcb .Widths [0]);_cgdc :=make (map[rune ]int );_afbc :=make (map[_bcd .GID ]int );_ecfd :=_bcd .GID (len (_dadcb .Widths ));for _bbdf ,_faga :=range _dadcb .Chars {if _faga > _ecfd -1{continue ; -};_ggde :=int (_bgage *float64 (_dadcb .Widths [_faga ]));_cgdc [_bbdf ]=_ggde ;_afbc [_faga ]=_ggde ;};_fcef ._aedcf =_cgdc ;_fcef .DW =_aff .MakeInteger (int64 (_ddgag ));_aefbd :=_gccbb (_afbc ,uint16 (_ecfd ));_fcef .W =_aff .MakeIndirectObject (_aefbd ); -_gdbeb :=_aff .MakeDict ();_gdbeb .Set ("\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067",_aff .MakeString ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"));_gdbeb .Set ("\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079",_aff .MakeString ("\u0041\u0064\u006fb\u0065")); -_gdbeb .Set ("\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074",_aff .MakeInteger (0));_fcef .CIDSystemInfo =_gdbeb ;_cgaccc :=&PdfFontDescriptor {FontName :_aff .MakeName (_dadcb .PostScriptName ),Ascent :_aff .MakeFloat (_bgage *float64 (_dadcb .TypoAscender )),Descent :_aff .MakeFloat (_bgage *float64 (_dadcb .TypoDescender )),CapHeight :_aff .MakeFloat (_bgage *float64 (_dadcb .CapHeight )),FontBBox :_aff .MakeArrayFromFloats ([]float64 {_bgage *float64 (_dadcb .Xmin ),_bgage *float64 (_dadcb .Ymin ),_bgage *float64 (_dadcb .Xmax ),_bgage *float64 (_dadcb .Ymax )}),ItalicAngle :_aff .MakeFloat (_dadcb .ItalicAngle ),MissingWidth :_aff .MakeFloat (_ddgag )}; -_bbbaf ,_fagdf :=_aff .MakeStream (_ecab ,_aff .NewFlateEncoder ());if _fagdf !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074o\u0020m\u0061\u006b\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_fagdf ); -return nil ,_fagdf ;};_bbbaf .PdfObjectDictionary .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_aff .MakeInteger (int64 (len (_ecab ))));_cgaccc .FontFile2 =_bbbaf ;if _dadcb .Bold {_cgaccc .StemV =_aff .MakeInteger (120);}else {_cgaccc .StemV =_aff .MakeInteger (70); -};_cgaa :=_cbda ;if _dadcb .IsFixedPitch {_cgaa |=_egde ;};if _dadcb .ItalicAngle !=0{_cgaa |=_degcc ;};_cgaccc .Flags =_aff .MakeInteger (int64 (_cgaa ));_fcef ._abed =_dadcb .PostScriptName ;_fcef ._ggca =_cgaccc ;_cced :=pdfFontType0 {fontCommon :fontCommon {_fbged :"\u0054\u0079\u0070e\u0030",_abed :_dadcb .PostScriptName },DescendantFont :&PdfFont {_gebd :_fcef },Encoding :_aff .MakeName ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048"),_faggb :_dadcb .NewEncoder ()}; -if len (_dadcb .Chars )> 0{_cbbd :=make (map[_da .CharCode ]rune ,len (_dadcb .Chars ));for _abdfc ,_geeggd :=range _dadcb .Chars {_gcfgg :=_da .CharCode (_geeggd );if _aagdd ,_cfgag :=_cbbd [_gcfgg ];!_cfgag ||(_cfgag &&_aagdd > _abdfc ){_cbbd [_gcfgg ]=_abdfc ; -};};_cced ._dcad =_da .NewToUnicodeCMap (_cbbd );};_bbfeb :=PdfFont {_gebd :&_cced };return &_bbfeb ,nil ;};func (_gdgf *PdfReader )newPdfAnnotationInkFromDict (_gffda *_aff .PdfObjectDictionary )(*PdfAnnotationInk ,error ){_fef :=PdfAnnotationInk {};_gcg ,_fdbd :=_gdgf .newPdfAnnotationMarkupFromDict (_gffda ); -if _fdbd !=nil {return nil ,_fdbd ;};_fef .PdfAnnotationMarkup =_gcg ;_fef .InkList =_gffda .Get ("\u0049n\u006b\u004c\u0069\u0073\u0074");_fef .BS =_gffda .Get ("\u0042\u0053");return &_fef ,nil ;}; +// ToPdfObject returns a PdfObject representation of PdfColorspaceDeviceNAttributes as a PdfObjectDictionary directly +// or indirectly within an indirect object container. +func (_cefc *PdfColorspaceDeviceNAttributes )ToPdfObject ()_dg .PdfObject {_cebdb :=_dg .MakeDict ();if _cefc .Subtype !=nil {_cebdb .Set ("\u0053u\u0062\u0074\u0079\u0070\u0065",_cefc .Subtype );};_cebdb .SetIfNotNil ("\u0043o\u006c\u006f\u0072\u0061\u006e\u0074s",_cefc .Colorants ); +_cebdb .SetIfNotNil ("\u0050r\u006f\u0063\u0065\u0073\u0073",_cefc .Process );_cebdb .SetIfNotNil ("M\u0069\u0078\u0069\u006e\u0067\u0048\u0069\u006e\u0074\u0073",_cefc .MixingHints );if _cefc ._ffbg !=nil {_cefc ._ffbg .PdfObject =_cebdb ;return _cefc ._ffbg ; +};return _cebdb ;};func _bagde (_fcdd *_dg .PdfObjectDictionary ,_abgde *fontCommon )(*pdfFontType3 ,error ){_ecebae :=_aacff (_abgde );_cagec :=_fcdd .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r");if _cagec ==nil {_cagec =_dg .MakeInteger (0);}; +_ecebae .FirstChar =_cagec ;_dbbed ,_abbeb :=_dg .GetIntVal (_cagec );if !_abbeb {_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0046i\u0072s\u0074C\u0068\u0061\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029",_cagec ); +return nil ,_dg .ErrTypeError ;};_gbcda :=_bd .CharCode (_dbbed );_cagec =_fcdd .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072");if _cagec ==nil {_cagec =_dg .MakeInteger (255);};_ecebae .LastChar =_cagec ;_dbbed ,_abbeb =_dg .GetIntVal (_cagec ); +if !_abbeb {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004c\u0061\u0073\u0074\u0043h\u0061\u0072\u0020\u0074\u0079\u0070\u0065 \u0028\u0025\u0054\u0029",_cagec );return nil ,_dg .ErrTypeError ; +};_gccfd :=_bd .CharCode (_dbbed );_cagec =_fcdd .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");if _cagec !=nil {_ecebae .Resources =_cagec ;};_cagec =_fcdd .Get ("\u0043h\u0061\u0072\u0050\u0072\u006f\u0063s");if _cagec ==nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0068\u0061\u0072\u0050\u0072\u006f\u0063\u0073\u0020(%\u0076\u0029",_cagec ); +return nil ,_dg .ErrNotSupported ;};_ecebae .CharProcs =_cagec ;_cagec =_fcdd .Get ("\u0046\u006f\u006e\u0074\u004d\u0061\u0074\u0072\u0069\u0078");if _cagec ==nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0046\u006f\u006et\u004d\u0061\u0074\u0072\u0069\u0078\u0020\u0028\u0025\u0076\u0029",_cagec ); +return nil ,_dg .ErrNotSupported ;};_ecebae .FontMatrix =_cagec ;_ecebae ._bcde =make (map[_bd .CharCode ]float64 );_cagec =_fcdd .Get ("\u0057\u0069\u0064\u0074\u0068\u0073");if _cagec !=nil {_ecebae .Widths =_cagec ;_fegae ,_dbfgc :=_dg .GetArray (_cagec ); +if !_dbfgc {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020W\u0069\u0064t\u0068\u0073\u0020\u0061\u0074\u0074\u0072\u0069b\u0075\u0074\u0065\u0020\u0021\u003d\u0020\u0061\u0072\u0072\u0061\u0079 \u0028\u0025\u0054\u0029",_cagec );return nil ,_dg .ErrTypeError ; +};_cbgg ,_gdcg :=_fegae .ToFloat64Array ();if _gdcg !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0077\u0069d\u0074\u0068\u0073\u0020\u0074\u006f\u0020a\u0072\u0072\u0061\u0079"); +return nil ,_gdcg ;};if len (_cbgg )!=int (_gccfd -_gbcda +1){_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0077\u0069\u0064\u0074\u0068s\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u0021\u003d\u0020\u0025\u0064 \u0028\u0025\u0064\u0029",_gccfd -_gbcda +1,len (_cbgg )); +return nil ,_dg .ErrRangeError ;};_bcbdc ,_dbfgc :=_dg .GetArray (_ecebae .FontMatrix );if !_dbfgc {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0046\u006f\u006e\u0074\u004d\u0061\u0074\u0072\u0069\u0078\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0021\u003d\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0028\u0025\u0054\u0029",_bcbdc ); +return nil ,_gdcg ;};_fbegf ,_gdcg :=_bcbdc .ToFloat64Array ();if _gdcg !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020c\u006f\u006ev\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0046o\u006e\u0074\u004d\u0061\u0074\u0072\u0069\u0078\u0020\u0074\u006f\u0020a\u0072\u0072\u0061\u0079"); +return nil ,_gdcg ;};_bebd :=_fec .NewMatrix (_fbegf [0],_fbegf [1],_fbegf [2],_fbegf [3],_fbegf [4],_fbegf [5]);for _gebcc ,_eeagf :=range _cbgg {_fdda ,_ :=_bebd .Transform (_eeagf ,_eeagf );_ecebae ._bcde [_gbcda +_bd .CharCode (_gebcc )]=_fdda ;};}; +_ecebae .Encoding =_dg .TraceToDirectObject (_fcdd .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));_cdfb :=_fcdd .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e");if _cdfb !=nil {_ecebae ._ebbff =_dg .TraceToDirectObject (_cdfb );_fecd ,_dfba :=_bfbgg (_ecebae ._ebbff ,&_ecebae .fontCommon ); +if _dfba !=nil {return nil ,_dfba ;};_ecebae ._ecfb =_fecd ;};if _bbbf :=_ecebae ._ecfb ;_bbbf !=nil {_ecebae ._geffb =_bd .NewCMapEncoder ("",nil ,_bbbf );}else {_ecebae ._geffb =_bd .NewPdfDocEncoder ();};return _ecebae ,nil ;}; -// GetOptimizer returns current PDF optimizer. -func (_adfd *PdfWriter )GetOptimizer ()Optimizer {return _adfd ._bgbg };const (FieldFlagClear FieldFlag =0;FieldFlagReadOnly FieldFlag =1;FieldFlagRequired FieldFlag =(1<<1);FieldFlagNoExport FieldFlag =(2<<1);FieldFlagNoToggleToOff FieldFlag =(1<<14); -FieldFlagRadio FieldFlag =(1<<15);FieldFlagPushbutton FieldFlag =(1<<16);FieldFlagRadiosInUnision FieldFlag =(1<<25);FieldFlagMultiline FieldFlag =(1<<12);FieldFlagPassword FieldFlag =(1<<13);FieldFlagFileSelect FieldFlag =(1<<20);FieldFlagDoNotScroll FieldFlag =(1<<23); -FieldFlagComb FieldFlag =(1<<24);FieldFlagRichText FieldFlag =(1<<26);FieldFlagDoNotSpellCheck FieldFlag =(1<<22);FieldFlagCombo FieldFlag =(1<<17);FieldFlagEdit FieldFlag =(1<<18);FieldFlagSort FieldFlag =(1<<19);FieldFlagMultiSelect FieldFlag =(1<<21); -FieldFlagCommitOnSelChange FieldFlag =(1<<27);); +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_faad *PdfShadingType5 )ToPdfObject ()_dg .PdfObject {_faad .PdfShading .ToPdfObject ();_acgg ,_ebagc :=_faad .getShadingDict ();if _ebagc !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _faad .BitsPerCoordinate !=nil {_acgg .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_faad .BitsPerCoordinate );};if _faad .BitsPerComponent !=nil {_acgg .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_faad .BitsPerComponent ); +};if _faad .VerticesPerRow !=nil {_acgg .Set ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073\u0050e\u0072\u0052\u006f\u0077",_faad .VerticesPerRow );};if _faad .Decode !=nil {_acgg .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_faad .Decode );};if _faad .Function !=nil {if len (_faad .Function )==1{_acgg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_faad .Function [0].ToPdfObject ()); +}else {_cbdcd :=_dg .MakeArray ();for _ ,_fdfde :=range _faad .Function {_cbdcd .Append (_fdfde .ToPdfObject ());};_acgg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_cbdcd );};};return _faad ._bcfbg ;}; -// Add appends a top level outline item to the outline. -func (_eaad *Outline )Add (item *OutlineItem ){_eaad .Entries =append (_eaad .Entries ,item )}; +// GetContainingPdfObject returns the container of the outline (indirect object). +func (_cdgdfb *PdfOutline )GetContainingPdfObject ()_dg .PdfObject {return _cdgdfb ._bbef }; -// ColorToRGB converts a CMYK32 color to an RGB color. -func (_gdef *PdfColorspaceDeviceCMYK )ColorToRGB (color PdfColor )(PdfColor ,error ){_gegg ,_cbag :=color .(*PdfColorDeviceCMYK );if !_cbag {_adg .Log .Debug ("I\u006e\u0070\u0075\u0074\u0020\u0063o\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0064e\u0076\u0069\u0063e\u0020c\u006d\u0079\u006b"); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_gbfd :=_gegg .C ();_afce :=_gegg .M ();_bdac :=_gegg .Y ();_adea :=_gegg .K ();_gbfd =_gbfd *(1-_adea )+_adea ;_afce =_afce *(1-_adea )+_adea ; -_bdac =_bdac *(1-_adea )+_adea ;_gccb :=1-_gbfd ;_eggff :=1-_afce ;_ccba :=1-_bdac ;return NewPdfColorDeviceRGB (_gccb ,_eggff ,_ccba ),nil ;}; +// EncryptOptions represents encryption options for an output PDF. +type EncryptOptions struct{Permissions _gbd .Permissions ;Algorithm EncryptionAlgorithm ;};func _aacff (_caeaa *fontCommon )*pdfFontType3 {return &pdfFontType3 {fontCommon :*_caeaa }}; -// ImageToRGB converts CalRGB colorspace image to RGB and returns the result. -func (_eeag *PdfColorspaceCalRGB )ImageToRGB (img Image )(Image ,error ){_cece :=_aae .NewReader (img .getBase ());_cea :=_gd .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),3,nil ,nil ,nil );_fccc :=_aae .NewWriter (_cea ); -_cgdd :=_cf .Pow (2,float64 (img .BitsPerComponent ))-1;_bfad :=make ([]uint32 ,3);var (_bddg error ;_dbcge ,_gaeb ,_bafga ,_gged ,_dbca ,_egca float64 ;);for {_bddg =_cece .ReadSamples (_bfad );if _bddg ==_ega .EOF {break ;}else if _bddg !=nil {return img ,_bddg ; -};_dbcge =float64 (_bfad [0])/_cgdd ;_gaeb =float64 (_bfad [1])/_cgdd ;_bafga =float64 (_bfad [2])/_cgdd ;_gged =_eeag .Matrix [0]*_cf .Pow (_dbcge ,_eeag .Gamma [0])+_eeag .Matrix [3]*_cf .Pow (_gaeb ,_eeag .Gamma [1])+_eeag .Matrix [6]*_cf .Pow (_bafga ,_eeag .Gamma [2]); -_dbca =_eeag .Matrix [1]*_cf .Pow (_dbcge ,_eeag .Gamma [0])+_eeag .Matrix [4]*_cf .Pow (_gaeb ,_eeag .Gamma [1])+_eeag .Matrix [7]*_cf .Pow (_bafga ,_eeag .Gamma [2]);_egca =_eeag .Matrix [2]*_cf .Pow (_dbcge ,_eeag .Gamma [0])+_eeag .Matrix [5]*_cf .Pow (_gaeb ,_eeag .Gamma [1])+_eeag .Matrix [8]*_cf .Pow (_bafga ,_eeag .Gamma [2]); -_dbcge =3.240479*_gged +-1.537150*_dbca +-0.498535*_egca ;_gaeb =-0.969256*_gged +1.875992*_dbca +0.041556*_egca ;_bafga =0.055648*_gged +-0.204043*_dbca +1.057311*_egca ;_dbcge =_cf .Min (_cf .Max (_dbcge ,0),1.0);_gaeb =_cf .Min (_cf .Max (_gaeb ,0),1.0); -_bafga =_cf .Min (_cf .Max (_bafga ,0),1.0);_bfad [0]=uint32 (_dbcge *_cgdd );_bfad [1]=uint32 (_gaeb *_cgdd );_bfad [2]=uint32 (_bafga *_cgdd );if _bddg =_fccc .WriteSamples (_bfad );_bddg !=nil {return img ,_bddg ;};};return _efecb (&_cea ),nil ;}; +// NewPdfAnnotationCircle returns a new circle annotation. +func NewPdfAnnotationCircle ()*PdfAnnotationCircle {_gcfe :=NewPdfAnnotation ();_gdfd :=&PdfAnnotationCircle {};_gdfd .PdfAnnotation =_gcfe ;_gdfd .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_gcfe .SetContext (_gdfd );return _gdfd ;};func (_agde *PdfReader )flattenFieldsWithOpts (_efbc bool ,_gdce FieldAppearanceGenerator ,_gcgg *FieldFlattenOpts )error {if _gcgg ==nil {_gcgg =&FieldFlattenOpts {}; +};var _fgfde bool ;_bbgd :=map[*PdfAnnotation ]bool {};{var _ggbba []*PdfField ;_gacdd :=_agde .AcroForm ;if _gacdd !=nil {if _gcgg .FilterFunc !=nil {_ggbba =_gacdd .filteredFields (_gcgg .FilterFunc ,true );_fgfde =_gacdd .Fields !=nil &&len (*_gacdd .Fields )> 0; +}else {_ggbba =_gacdd .AllFields ();};};for _ ,_dddca :=range _ggbba {if len (_dddca .Annotations )< 1{_ag .Log .Debug ("\u004e\u006f\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u006f\u0075\u006ed\u0020\u0066\u006f\u0072\u003a\u0020\u0025v\u002c\u0020\u006c\u006f\u006f\u006b\u0020\u0069\u006e\u0074\u006f \u004b\u0069\u0064\u0073\u0020\u004f\u0062\u006a\u0065\u0063\u0074",_dddca .PartialName ()); +for _gbcfa ,_gddd :=range _dddca .Kids {for _ ,_gfdaa :=range _gddd .Annotations {_bbgd [_gfdaa .PdfAnnotation ]=_dddca .V !=nil ;if _gddd .V ==nil {_gddd .V =_dddca .V ;};if _gddd .T ==nil {_gddd .T =_dg .MakeString (_b .Sprintf ("\u0025\u0073\u0023%\u0064",_dddca .PartialName (),_gbcfa )); +};if _gdce !=nil {_afaa ,_ddad :=_gdce .GenerateAppearanceDict (_gacdd ,_gddd ,_gfdaa );if _ddad !=nil {return _ddad ;};_gfdaa .AP =_afaa ;};};};};for _ ,_ccec :=range _dddca .Annotations {_bbgd [_ccec .PdfAnnotation ]=_dddca .V !=nil ;if _gdce !=nil {_badee ,_cdefd :=_gdce .GenerateAppearanceDict (_gacdd ,_dddca ,_ccec ); +if _cdefd !=nil {return _cdefd ;};_ccec .AP =_badee ;};};};};if _efbc {for _ ,_fcgb :=range _agde .PageList {_fecb ,_dccgac :=_fcgb .GetAnnotations ();if _dccgac !=nil {return _dccgac ;};for _ ,_gefb :=range _fecb {_bbgd [_gefb ]=true ;};};};for _ ,_ebaag :=range _agde .PageList {_dada :=_ebaag .flattenFieldsWithOpts (_gdce ,_gcgg ,_bbgd ); +if _dada !=nil {return _dada ;};};if !_fgfde {_agde .AcroForm =nil ;};return nil ;}; -// SetColorSpace sets `r` colorspace object to `colorspace`. -func (_bcafa *PdfPageResources )SetColorSpace (colorspace *PdfPageResourcesColorspaces ){_bcafa ._cfdbe =colorspace ;}; +// StandardValidator is the interface that is used for the PDF StandardImplementer validation for the PDF document. +// It is using a CompliancePdfReader which is expected to give more Metadata during reading process. +// NOTE: This implementation is in experimental development state. +// Keep in mind that it might change in the subsequent minor versions. +type StandardValidator interface{ -// String returns a human readable description of `fontfile`. -func (_ddcgd *fontFile )String ()string {_efeb :="\u005b\u004e\u006f\u006e\u0065\u005d";if _ddcgd ._bgbca !=nil {_efeb =_ddcgd ._bgbca .String ();};return _e .Sprintf ("\u0046O\u004e\u0054\u0046\u0049\u004c\u0045\u007b\u0025\u0023\u0071\u0020e\u006e\u0063\u006f\u0064\u0065\u0072\u003d\u0025\u0073\u007d",_ddcgd ._gdag ,_efeb ); -};const (TrappedUnknown PdfInfoTrapped ="\u0055n\u006b\u006e\u006f\u0077\u006e";TrappedTrue PdfInfoTrapped ="\u0054\u0072\u0075\u0065";TrappedFalse PdfInfoTrapped ="\u0046\u0061\u006cs\u0065";); +// ValidateStandard checks if the input reader +ValidateStandard (_edge *CompliancePdfReader )error ;}; -// A returns the value of the A component of the color. -func (_dggg *PdfColorCalRGB )A ()float64 {return _dggg [0]}; +// ColorAt returns the color of the image pixel specified by the x and y coordinates. +func (_abfaa *Image )ColorAt (x ,y int )(_edg .Color ,error ){_bcfa :=_fc .BytesPerLine (int (_abfaa .Width ),int (_abfaa .BitsPerComponent ),_abfaa .ColorComponents );switch _abfaa .ColorComponents {case 1:return _fc .ColorAtGrayscale (x ,y ,int (_abfaa .BitsPerComponent ),_bcfa ,_abfaa .Data ,_abfaa ._gfbb ); +case 3:return _fc .ColorAtNRGBA (x ,y ,int (_abfaa .Width ),_bcfa ,int (_abfaa .BitsPerComponent ),_abfaa .Data ,_abfaa ._dgeb ,_abfaa ._gfbb );case 4:return _fc .ColorAtCMYK (x ,y ,int (_abfaa .Width ),_abfaa .Data ,_abfaa ._gfbb );};_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064 i\u006da\u0067\u0065\u002e\u0020\u0025\u0064\u0020\u0063\u006f\u006d\u0070\u006fn\u0065\u006e\u0074\u0073\u002c\u0020\u0025\u0064\u0020\u0062\u0069\u0074\u0073\u0020\u0070\u0065\u0072 \u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_abfaa .ColorComponents ,_abfaa .BitsPerComponent ); +return nil ,_bf .New ("\u0075\u006e\u0073\u0075p\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0069\u006d\u0061g\u0065 \u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065");}; -// NewPdfDateFromTime will create a PdfDate based on the given time -func NewPdfDateFromTime (timeObj _f .Time )(PdfDate ,error ){_gcbfg :=timeObj .Format ("\u002d\u0030\u0037\u003a\u0030\u0030");_facc ,_ :=_eed .ParseInt (_gcbfg [1:3],10,32);_fabee ,_ :=_eed .ParseInt (_gcbfg [4:6],10,32);return PdfDate {_ababa :int64 (timeObj .Year ()),_acdbf :int64 (timeObj .Month ()),_afcd :int64 (timeObj .Day ()),_bfcbd :int64 (timeObj .Hour ()),_ggdbf :int64 (timeObj .Minute ()),_bdcc :int64 (timeObj .Second ()),_acbgca :_gcbfg [0],_cdbec :_facc ,_geecde :_fabee },nil ; -};func (_afebc *PdfWriter )addObject (_cffff _aff .PdfObject )bool {_ccgdf :=_afebc .hasObject (_cffff );if !_ccgdf {_egfdc :=_aff .ResolveReferencesDeep (_cffff ,_afebc ._cgdcb );if _egfdc !=nil {_adg .Log .Debug ("E\u0052R\u004f\u0052\u003a\u0020\u0025\u0076\u0020\u002d \u0073\u006b\u0069\u0070pi\u006e\u0067",_egfdc ); -};_afebc ._babcd =append (_afebc ._babcd ,_cffff );_afebc ._bgadg [_cffff ]=struct{}{};return true ;};return false ;}; +// GetOptimizer returns current PDF optimizer. +func (_dgbfe *PdfWriter )GetOptimizer ()Optimizer {return _dgbfe ._egeac };func _aacd (_efeba *PdfField )[]*PdfField {_fegab :=[]*PdfField {_efeba };for _ ,_geac :=range _efeba .Kids {_fegab =append (_fegab ,_aacd (_geac )...);};return _fegab ;}; -// PdfActionMovie represents a movie action. -type PdfActionMovie struct{*PdfAction ;Annotation _aff .PdfObject ;T _aff .PdfObject ;Operation _aff .PdfObject ;};func (_eadee *PdfReader )flattenFieldsWithOpts (_edfb bool ,_fdaa FieldAppearanceGenerator ,_abfab *FieldFlattenOpts )error {if _abfab ==nil {_abfab =&FieldFlattenOpts {}; -};var _afbe bool ;_febb :=map[*PdfAnnotation ]bool {};{var _feaac []*PdfField ;_fdeeb :=_eadee .AcroForm ;if _fdeeb !=nil {if _abfab .FilterFunc !=nil {_feaac =_fdeeb .filteredFields (_abfab .FilterFunc ,true );_afbe =_fdeeb .Fields !=nil &&len (*_fdeeb .Fields )> 0; -}else {_feaac =_fdeeb .AllFields ();};};for _ ,_fgde :=range _feaac {if len (_fgde .Annotations )< 1{_adg .Log .Debug ("\u004e\u006f\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u006f\u0075\u006ed\u0020\u0066\u006f\u0072\u003a\u0020\u0025v\u002c\u0020\u006c\u006f\u006f\u006b\u0020\u0069\u006e\u0074\u006f \u004b\u0069\u0064\u0073\u0020\u004f\u0062\u006a\u0065\u0063\u0074",_fgde .PartialName ()); -for _bddb ,_agcef :=range _fgde .Kids {for _ ,_gfac :=range _agcef .Annotations {_febb [_gfac .PdfAnnotation ]=_fgde .V !=nil ;if _agcef .V ==nil {_agcef .V =_fgde .V ;};if _agcef .T ==nil {_agcef .T =_aff .MakeString (_e .Sprintf ("\u0025\u0073\u0023%\u0064",_fgde .PartialName (),_bddb )); -};if _fdaa !=nil {_ceag ,_dedac :=_fdaa .GenerateAppearanceDict (_fdeeb ,_agcef ,_gfac );if _dedac !=nil {return _dedac ;};_gfac .AP =_ceag ;};};};};for _ ,_bdaee :=range _fgde .Annotations {_febb [_bdaee .PdfAnnotation ]=_fgde .V !=nil ;if _fdaa !=nil {_afabfe ,_cdcfg :=_fdaa .GenerateAppearanceDict (_fdeeb ,_fgde ,_bdaee ); -if _cdcfg !=nil {return _cdcfg ;};_bdaee .AP =_afabfe ;};};};};if _edfb {for _ ,_ggda :=range _eadee .PageList {_gdeea ,_dfgce :=_ggda .GetAnnotations ();if _dfgce !=nil {return _dfgce ;};for _ ,_gabbe :=range _gdeea {_febb [_gabbe ]=true ;};};};for _ ,_fcfef :=range _eadee .PageList {_effa :=_fcfef .flattenFieldsWithOpts (_fdaa ,_abfab ,_febb ); -if _effa !=nil {return _effa ;};};if !_afbe {_eadee .AcroForm =nil ;};return nil ;};func (_cfcf *PdfReader )newPdfActionImportDataFromDict (_bea *_aff .PdfObjectDictionary )(*PdfActionImportData ,error ){_ccf ,_gbd :=_dfc (_bea .Get ("\u0046"));if _gbd !=nil {return nil ,_gbd ; -};return &PdfActionImportData {F :_ccf },nil ;};func (_dgdd *PdfReader )loadDSS ()(*DSS ,error ){if _dgdd ._gaece .GetCrypter ()!=nil &&!_dgdd ._gaece .IsAuthenticated (){return nil ,_e .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); -};_dfgde :=_dgdd ._dcadd .Get ("\u0044\u0053\u0053");if _dfgde ==nil {return nil ,nil ;};_agbfe ,_ :=_aff .GetIndirect (_dfgde );_dfgde =_aff .TraceToDirectObject (_dfgde );switch _ecdbg :=_dfgde .(type ){case *_aff .PdfObjectNull :return nil ,nil ;case *_aff .PdfObjectDictionary :return _dggcf (_agbfe ,_ecdbg ); -};return nil ,_e .Errorf ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0044\u0053\u0053 \u0065\u006e\u0074\u0072y \u0025\u0054",_dfgde );};func (_gedc *LTV )buildCertChain (_bbefd ,_eabdd []*_fb .Certificate )([]*_fb .Certificate ,map[string ]*_fb .Certificate ,error ){_afdba :=map[string ]*_fb .Certificate {}; -for _ ,_dgbdg :=range _bbefd {_afdba [_dgbdg .Subject .CommonName ]=_dgbdg ;};_accda :=_bbefd ;for _ ,_gdaad :=range _eabdd {_fgbge :=_gdaad .Subject .CommonName ;if _ ,_fbebd :=_afdba [_fgbge ];_fbebd {continue ;};_afdba [_fgbge ]=_gdaad ;_accda =append (_accda ,_gdaad ); -};if len (_accda )==0{return nil ,nil ,ErrSignNoCertificates ;};var _bgcea error ;for _gede :=_accda [0];_gede !=nil &&!_gedc .CertClient .IsCA (_gede );{_edbe ,_ecaff :=_afdba [_gede .Issuer .CommonName ];if !_ecaff {if _edbe ,_bgcea =_gedc .CertClient .GetIssuer (_gede ); -_bgcea !=nil {_adg .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u006f\u0075\u006cd\u0020\u006e\u006f\u0074\u0020\u0072\u0065tr\u0069\u0065\u0076\u0065 \u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061te\u0020\u0069s\u0073\u0075\u0065\u0072\u003a\u0020\u0025\u0076",_bgcea ); -break ;};_afdba [_gede .Issuer .CommonName ]=_edbe ;_accda =append (_accda ,_edbe );};_gede =_edbe ;};return _accda ,_afdba ,nil ;}; +// GetContainingPdfObject returns the container of the image object (indirect object). +func (_dacbb *XObjectImage )GetContainingPdfObject ()_dg .PdfObject {return _dacbb ._abfb }; -// ToPdfObject returns the PDF representation of the DSS dictionary. -func (_egfd *DSS )ToPdfObject ()_aff .PdfObject {_gegcd :=_egfd ._dfad .PdfObject .(*_aff .PdfObjectDictionary );_gegcd .Clear ();_ggfg :=_aff .MakeDict ();for _fegc ,_fbcc :=range _egfd .VRI {_ggfg .Set (*_aff .MakeName (_fegc ),_fbcc .ToPdfObject ()); -};_gegcd .SetIfNotNil ("\u0043\u0065\u0072t\u0073",_egcdd (_egfd .Certs ));_gegcd .SetIfNotNil ("\u004f\u0043\u0053P\u0073",_egcdd (_egfd .OCSPs ));_gegcd .SetIfNotNil ("\u0043\u0052\u004c\u0073",_egcdd (_egfd .CRLs ));_gegcd .Set ("\u0056\u0052\u0049",_ggfg ); -return _egfd ._dfad ;}; +// R returns the value of the red component of the color. +func (_egeg *PdfColorDeviceRGB )R ()float64 {return _egeg [0]}; -// GetContentStreamObjs returns a slice of PDF objects containing the content -// streams of the page. -func (_dbbg *PdfPage )GetContentStreamObjs ()[]_aff .PdfObject {if _dbbg .Contents ==nil {return nil ;};_befg :=_aff .TraceToDirectObject (_dbbg .Contents );if _bbgad ,_gfbc :=_befg .(*_aff .PdfObjectArray );_gfbc {return _bbgad .Elements ();};return []_aff .PdfObject {_befg }; +// CharcodeBytesToUnicode converts PDF character codes `data` to a Go unicode string. +// +// 9.10 Extraction of Text Content (page 292) +// The process of finding glyph descriptions in OpenType fonts by a conforming reader shall be the following: +// - For Type 1 fonts using “CFF” tables, the process shall be as described in 9.6.6.2, "Encodings +// for Type 1 Fonts". +// - For TrueType fonts using “glyf” tables, the process shall be as described in 9.6.6.4, +// "Encodings for TrueType Fonts". Since this process sometimes produces ambiguous results, +// conforming writers, instead of using a simple font, shall use a Type 0 font with an Identity-H +// encoding and use the glyph indices as character codes, as described following Table 118. +func (_bbee *PdfFont )CharcodeBytesToUnicode (data []byte )(string ,int ,int ){_cega ,_ ,_aaedg :=_bbee .CharcodesToUnicodeWithStats (_bbee .BytesToCharcodes (data ));_fbaca :=_bd .ExpandLigatures (_cega );return _fbaca ,_gbf .RuneCountInString (_fbaca ),_aaedg ; }; -// ColorToRGB only converts color used with uncolored patterns (defined in underlying colorspace). Does not go into the -// pattern objects and convert those. If that is desired, needs to be done separately. See for example -// grayscale conversion example in unidoc-examples repo. -func (_afgc *PdfColorspaceSpecialPattern )ColorToRGB (color PdfColor )(PdfColor ,error ){_feab ,_baaf :=color .(*PdfColorPattern );if !_baaf {_adg .Log .Debug ("\u0043\u006f\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0070a\u0074\u0074\u0065\u0072\u006e\u0020\u0028\u0067\u006f\u0074 \u0025\u0054\u0029",color ); -return nil ,ErrTypeCheck ;};if _feab .Color ==nil {return color ,nil ;};if _afgc .UnderlyingCS ==nil {return nil ,_g .New ("\u0075n\u0064\u0065\u0072\u006cy\u0069\u006e\u0067\u0020\u0043S\u0020n\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065d");};return _afgc .UnderlyingCS .ColorToRGB (_feab .Color ); -}; +// NewPdfActionResetForm returns a new "reset form" action. +func NewPdfActionResetForm ()*PdfActionResetForm {_ab :=NewPdfAction ();_ggf :=&PdfActionResetForm {};_ggf .PdfAction =_ab ;_ab .SetContext (_ggf );return _ggf ;}; -// GetContainingPdfObject implements interface PdfModel. -func (_eebbf *Permissions )GetContainingPdfObject ()_aff .PdfObject {return _eebbf ._cbdgg }; +// NewPdfAnnotationRichMedia returns a new rich media annotation. +func NewPdfAnnotationRichMedia ()*PdfAnnotationRichMedia {_cad :=NewPdfAnnotation ();_efgg :=&PdfAnnotationRichMedia {};_efgg .PdfAnnotation =_cad ;_cad .SetContext (_efgg );return _efgg ;};var _ pdfFont =(*pdfFontType3 )(nil ); -// PdfModel is a higher level PDF construct which can be collapsed into a PdfObject. -// Each PdfModel has an underlying PdfObject and vice versa (one-to-one). -// Under normal circumstances there should only be one copy of each. -// Copies can be made, but care must be taken to do it properly. -type PdfModel interface{ToPdfObject ()_aff .PdfObject ;GetContainingPdfObject ()_aff .PdfObject ;};func _gbddg ()string {_aebda .Lock ();defer _aebda .Unlock ();return _bbbade };func (_bdceg *LTV )getCRLs (_fdbba []*_fb .Certificate )([][]byte ,error ){_cggc :=make ([][]byte ,0,len (_fdbba )); -for _ ,_gacbea :=range _fdbba {for _ ,_ecac :=range _gacbea .CRLDistributionPoints {if _bdceg .CertClient .IsCA (_gacbea ){continue ;};_gdca ,_fdac :=_bdceg .CRLClient .MakeRequest (_ecac ,_gacbea );if _fdac !=nil {_adg .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043R\u004c\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074 \u0065\u0072\u0072o\u0072:\u0020\u0025\u0076",_fdac ); -continue ;};_cggc =append (_cggc ,_gdca );};};return _cggc ,nil ;}; +// EnableChain adds the specified certificate chain and validation data (OCSP +// and CRL information) for it to the global scope of the document DSS. The +// added data is used for validating any of the signatures present in the +// document. The LTV client attempts to build the certificate chain up to a +// trusted root by downloading any missing certificates. +func (_fbbea *LTV )EnableChain (chain []*_bb .Certificate )error {return _fbbea .enable (nil ,chain ,"")}; -// AppendContentBytes creates a PDF stream from `cs` and appends it to the -// array of streams specified by the pages's Contents entry. -// If `wrapContents` is true, the content stream of the page is wrapped using -// a `q/Q` operator pair, so that its state does not affect the appended -// content stream. -func (_egfbd *PdfPage )AppendContentBytes (cs []byte ,wrapContents bool )error {_gffdcdb :=_egfbd .GetContentStreamObjs ();wrapContents =wrapContents &&len (_gffdcdb )> 0;_ggffg :=_aff .NewFlateEncoder ();_dgfee :=_aff .MakeArray ();if wrapContents {_befc ,_egaage :=_aff .MakeStream ([]byte ("\u0071\u000a"),_ggffg ); -if _egaage !=nil {return _egaage ;};_dgfee .Append (_befc );};_dgfee .Append (_gffdcdb ...);if wrapContents {_gfebf ,_gabdc :=_aff .MakeStream ([]byte ("\u000a\u0051\u000a"),_ggffg );if _gabdc !=nil {return _gabdc ;};_dgfee .Append (_gfebf );};_cbcb ,_dgea :=_aff .MakeStream (cs ,_ggffg ); -if _dgea !=nil {return _dgea ;};_dgfee .Append (_cbcb );_egfbd .Contents =_dgfee ;return nil ;}; +// EncryptionAlgorithm is used in EncryptOptions to change the default algorithm used to encrypt the document. +type EncryptionAlgorithm int ;func (_aacec *PdfPage )flattenFieldsWithOpts (_ccgg FieldAppearanceGenerator ,_cfcg *FieldFlattenOpts ,_gccf map[*PdfAnnotation ]bool )error {var _eaded []*PdfAnnotation ;if _ccgg !=nil {if _edaec :=_ccgg .WrapContentStream (_aacec ); +_edaec !=nil {return _edaec ;};};_ceeg ,_daaa :=_aacec .GetAnnotations ();if _daaa !=nil {return _daaa ;};for _ ,_bdef :=range _ceeg {_bgeca ,_eacdb :=_gccf [_bdef ];if !_eacdb &&_cfcg .AnnotFilterFunc !=nil {if _ ,_aaag :=_bdef .GetContext ().(*PdfAnnotationWidget ); +!_aaag {_eacdb =_cfcg .AnnotFilterFunc (_bdef );};};if !_eacdb {_eaded =append (_eaded ,_bdef );continue ;};switch _bdef .GetContext ().(type ){case *PdfAnnotationPopup :continue ;case *PdfAnnotationLink :continue ;case *PdfAnnotationProjection :continue ; +};_efbag ,_bbgg ,_gfgag :=_dbag (_bdef );if _gfgag !=nil {if !_bgeca {_ag .Log .Trace ("\u0046\u0069\u0065\u006c\u0064\u0020\u0077\u0069\u0074h\u006f\u0075\u0074\u0020\u0056\u0020\u002d\u003e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0077\u0069\u0074h\u006f\u0075t\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0074\u0072\u0065am\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067\u0020\u006f\u0076\u0065\u0072"); +continue ;};_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0077\u0069\u0074h\u006f\u0075\u0074\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d,\u0020\u0065\u0072\u0072\u0020\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0073\u006bi\u0070\u0070\u0069n\u0067\u0020\u006f\u0076\u0065\u0072",_gfgag ); +continue ;};if _efbag ==nil {continue ;};_eadb :=_aacec .Resources .GenerateXObjectName ();_aacec .Resources .SetXObjectFormByName (_eadb ,_efbag );_cgcdb ,_gaccg ,_gfgag :=_dfgb (_efbag );if _gfgag !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0061\u0070p\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u004d\u0061\u0074\u0072\u0069\u0078\u002c\u0020s\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0078\u0066\u006f\u0072\u006d\u0020\u0062\u0062\u006f\u0078\u0020\u0061\u0064\u006a\u0075\u0073t\u006d\u0065\u006e\u0074\u003a \u0025\u0076",_gfgag ); +}else {_gegf :=_fec .IdentityMatrix ();_gegf =_gegf .Translate (-_cgcdb .Llx ,-_cgcdb .Lly );if _gaccg {_aeaed :=0.0;if _cgcdb .Width ()> 0{_aeaed =_bbgg .Width ()/_cgcdb .Width ();};_aaaae :=0.0;if _cgcdb .Height ()> 0{_aaaae =_bbgg .Height ()/_cgcdb .Height (); +};_gegf =_gegf .Scale (_aeaed ,_aaaae );};_bbgg .Transform (_gegf );};_cbag :=_cg .Min (_bbgg .Llx ,_bbgg .Urx );_afee :=_cg .Min (_bbgg .Lly ,_bbgg .Ury );var _adege []string ;_adege =append (_adege ,"\u0071");_adege =append (_adege ,_b .Sprintf ("\u0025\u002e\u0036\u0066\u0020\u0025\u002e\u0036\u0066\u0020\u0025\u002e\u0036\u0066\u0020%\u002e6\u0066\u0020\u0025\u002e\u0036\u0066\u0020\u0025\u002e\u0036\u0066\u0020\u0063\u006d",1.0,0.0,0.0,1.0,_cbag ,_afee )); +_adege =append (_adege ,_b .Sprintf ("\u002f\u0025\u0073\u0020\u0044\u006f",_eadb .String ()));_adege =append (_adege ,"\u0051");_fdegg :=_ga .Join (_adege ,"\u000a");_gfgag =_aacec .AppendContentStream (_fdegg );if _gfgag !=nil {return _gfgag ;};if _efbag .Resources !=nil {_daffe ,_ffbd :=_dg .GetDict (_efbag .Resources .Font ); +if _ffbd {for _ ,_caba :=range _daffe .Keys (){if !_aacec .Resources .HasFontByName (_caba ){_aacec .Resources .SetFontByName (_caba ,_daffe .Get (_caba ));};};};};};if len (_eaded )> 0{_aacec ._cadgg =_eaded ;}else {_aacec ._cadgg =[]*PdfAnnotation {}; +};return nil ;}; -// GetCatalogStructTreeRoot gets the catalog StructTreeRoot object. -func (_cedgee *PdfReader )GetCatalogStructTreeRoot ()(_aff .PdfObject ,bool ){if _cedgee ._dcadd ==nil {return nil ,false ;};_efba :=_cedgee ._dcadd .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074");return _efba ,_efba !=nil ; -}; +// PdfAnnotationHighlight represents Highlight annotations. +// (Section 12.5.6.10). +type PdfAnnotationHighlight struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _dg .PdfObject ;}; -// SetFillImage attach a model.Image to push button. -func (_edcea *PdfFieldButton )SetFillImage (image *Image ){if _edcea .IsPush (){_edcea ._agbe =image ;};}; +// NewPdfShadingPatternType2 creates an empty shading pattern type 2 object. +func NewPdfShadingPatternType2 ()*PdfShadingPatternType2 {_bcdgcg :=&PdfShadingPatternType2 {};_bcdgcg .Matrix =_dg .MakeArrayFromIntegers ([]int {1,0,0,1,0,0});_bcdgcg .PdfPattern =&PdfPattern {};_bcdgcg .PdfPattern .PatternType =int64 (*_dg .MakeInteger (2)); +_bcdgcg .PdfPattern ._cgdcc =_bcdgcg ;_bcdgcg .PdfPattern ._eacce =_dg .MakeIndirectObject (_dg .MakeDict ());return _bcdgcg ;}; -// SetPageLabels sets the PageLabels entry in the PDF catalog. -// See section 12.4.2 "Page Labels" (p. 382 PDF32000_2008). -func (_fede *PdfWriter )SetPageLabels (pageLabels _aff .PdfObject )error {if pageLabels ==nil {return nil ;};_adg .Log .Trace ("\u0053\u0065t\u0074\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0050\u0061\u0067\u0065\u004c\u0061\u0062\u0065\u006cs.\u002e\u002e"); -_fede ._cdccb .Set ("\u0050\u0061\u0067\u0065\u004c\u0061\u0062\u0065\u006c\u0073",pageLabels );return _fede .addObjects (pageLabels );}; +// AddOCSPs adds OCSPs to DSS. +func (_gbfc *DSS )AddOCSPs (ocsps [][]byte )([]*_dg .PdfObjectStream ,error ){return _gbfc .add (&_gbfc .OCSPs ,_gbfc ._bggg ,ocsps );}; -// GetNumComponents returns the number of color components of the colorspace device. -// Returns 1 for a grayscale device. -func (_bfgd *PdfColorspaceDeviceGray )GetNumComponents ()int {return 1};func (_aebaed *PdfWriter )optimizeDocument ()error {if _aebaed ._afgef ==nil {return nil ;};_afbg ,_abgag :=_aff .GetDict (_aebaed ._bacec );if !_abgag {return _g .New ("\u0061\u006e\u0020in\u0066\u006f\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0069s\u0020n\u006ft\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_eaggeg :=_bb .Document {ID :[2]string {_aebaed ._bacb ,_aebaed ._aceag },Version :_aebaed ._bgeecg ,Objects :_aebaed ._babcd ,Info :_afbg ,Crypt :_aebaed ._fcgf ,UseHashBasedID :_aebaed ._bdef };if _cdgbca :=_aebaed ._afgef .ApplyStandard (&_eaggeg ); -_cdgbca !=nil {return _cdgbca ;};_aebaed ._bacb ,_aebaed ._aceag =_eaggeg .ID [0],_eaggeg .ID [1];_aebaed ._bgeecg =_eaggeg .Version ;_aebaed ._babcd =_eaggeg .Objects ;_aebaed ._bacec .PdfObject =_eaggeg .Info ;_aebaed ._bdef =_eaggeg .UseHashBasedID ; -_aebaed ._fcgf =_eaggeg .Crypt ;_eegba :=make (map[_aff .PdfObject ]struct{},len (_aebaed ._babcd ));for _ ,_ddbaa :=range _aebaed ._babcd {_eegba [_ddbaa ]=struct{}{};};_aebaed ._bgadg =_eegba ;return nil ;}; +// NewPdfAnnotationPolygon returns a new polygon annotation. +func NewPdfAnnotationPolygon ()*PdfAnnotationPolygon {_cggf :=NewPdfAnnotation ();_ceebf :=&PdfAnnotationPolygon {};_ceebf .PdfAnnotation =_cggf ;_ceebf .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_cggf .SetContext (_ceebf );return _ceebf ;}; -// GetCharMetrics returns the char metrics for character code `code`. -func (_decbb pdfFontType0 )GetCharMetrics (code _eee .CharCode )(_bcd .CharMetrics ,bool ){if _decbb .DescendantFont ==nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0061\u006e\u0074\u002e\u0020\u0066\u006f\u006et=\u0025\u0073",_decbb ); -return _bcd .CharMetrics {},false ;};return _decbb .DescendantFont .GetCharMetrics (code );}; +// ToPdfObject returns the PDF representation of the shading pattern. +func (_gfff *PdfShadingPatternType2 )ToPdfObject ()_dg .PdfObject {_gfff .PdfPattern .ToPdfObject ();_fffeb :=_gfff .getDict ();if _gfff .Shading !=nil {_fffeb .Set ("\u0053h\u0061\u0064\u0069\u006e\u0067",_gfff .Shading .ToPdfObject ());};if _gfff .Matrix !=nil {_fffeb .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_gfff .Matrix ); +};if _gfff .ExtGState !=nil {_fffeb .Set ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_gfff .ExtGState );};return _gfff ._eacce ;}; -// ToPdfObject converts date to a PDF string object. -func (_fbdeb *PdfDate )ToPdfObject ()_aff .PdfObject {_geegb :=_e .Sprintf ("\u0044\u003a\u0025\u002e\u0034\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064\u0025\u002e2\u0064\u0025\u0063\u0025\u002e2\u0064\u0027%\u002e\u0032\u0064\u0027",_fbdeb ._ababa ,_fbdeb ._acdbf ,_fbdeb ._afcd ,_fbdeb ._bfcbd ,_fbdeb ._ggdbf ,_fbdeb ._bdcc ,_fbdeb ._acbgca ,_fbdeb ._cdbec ,_fbdeb ._geecde ); -return _aff .MakeString (_geegb );};func (_efbdd *PdfReader )lookupPageByObject (_fcdgc _aff .PdfObject )(*PdfPage ,error ){return nil ,_g .New ("\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};var (_eedcf =_bd .MustCompile ("\u005cd\u002b\u0020\u0064\u0069c\u0074\u005c\u0073\u002b\u0028d\u0075p\u005cs\u002b\u0029\u003f\u0062\u0065\u0067\u0069n"); -_ggge =_bd .MustCompile ("\u005e\u005cs\u002a\u002f\u0028\u005c\u0053\u002b\u003f\u0029\u005c\u0073\u002b\u0028\u002e\u002b\u003f\u0029\u005c\u0073\u002b\u0064\u0065\u0066\\s\u002a\u0024");_ebaad =_bd .MustCompile ("\u005e\u005c\u0073*\u0064\u0075\u0070\u005c\u0073\u002b\u0028\u005c\u0064\u002b\u0029\u005c\u0073\u002a\u002f\u0028\u005c\u0077\u002b\u003f\u0029\u0028\u003f\u003a\u005c\u002e\u005c\u0064\u002b)\u003f\u005c\u0073\u002b\u0070\u0075\u0074\u0024"); -_gcef ="\u002f\u0045\u006e\u0063od\u0069\u006e\u0067\u0020\u0032\u0035\u0036\u0020\u0061\u0072\u0072\u0061\u0079";_fdbfce ="\u0072\u0065\u0061d\u006f\u006e\u006c\u0079\u0020\u0064\u0065\u0066";_dedeb ="\u0063\u0075\u0072\u0072\u0065\u006e\u0074\u0066\u0069\u006c\u0065\u0020e\u0065\u0078\u0065\u0063"; -);func (_fbbd *PdfReader )loadAction (_ace _aff .PdfObject )(*PdfAction ,error ){if _deac ,_baf :=_aff .GetIndirect (_ace );_baf {_ggcd ,_bdg :=_fbbd .newPdfActionFromIndirectObject (_deac );if _bdg !=nil {return nil ,_bdg ;};return _ggcd ,nil ;}else if !_aff .IsNullObject (_ace ){return nil ,_g .New ("\u0061\u0063\u0074\u0069\u006fn\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0070\u006f\u0069\u006e\u0074 \u0074\u006f\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -};return nil ,nil ;};func (_bcaf *PdfReader )newPdfAnnotationWidgetFromDict (_ffcg *_aff .PdfObjectDictionary )(*PdfAnnotationWidget ,error ){_ddaf :=PdfAnnotationWidget {};_ddaf .H =_ffcg .Get ("\u0048");_ddaf .MK =_ffcg .Get ("\u004d\u004b");_ddaf .A =_ffcg .Get ("\u0041"); -_ddaf .AA =_ffcg .Get ("\u0041\u0041");_ddaf .BS =_ffcg .Get ("\u0042\u0053");_ddaf .Parent =_ffcg .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");return &_ddaf ,nil ;};func _dcaee (_gffdcd *PdfField ,_dbcgg _aff .PdfObject ){for _ ,_bbebc :=range _gffdcd .Annotations {_bbebc .AS =_dbcgg ; -_bbebc .ToPdfObject ();};}; +// DecodeArray returns an empty slice as there are no components associated with pattern colorspace. +func (_debb *PdfColorspaceSpecialPattern )DecodeArray ()[]float64 {return []float64 {}}; + +// NewPdfReaderLazy creates a new PdfReader for `rs` in lazy-loading mode. The difference +// from NewPdfReader is that in lazy-loading mode, objects are only loaded into memory when needed +// rather than entire structure being loaded into memory on reader creation. +// Note that it may make sense to use the lazy-load reader when processing only parts of files, +// rather than loading entire file into memory. Example: splitting a few pages from a large PDF file. +func NewPdfReaderLazy (rs _cf .ReadSeeker )(*PdfReader ,error ){const _fbaf ="\u006d\u006f\u0064\u0065l:\u004e\u0065\u0077\u0050\u0064\u0066\u0052\u0065\u0061\u0064\u0065\u0072\u004c\u0061z\u0079";return _dcdd (rs ,&ReaderOpts {LazyLoad :true },false ,_fbaf ); +}; -// GetContainingPdfObject returns the container of the resources object (indirect object). -func (_bdgfb *PdfPageResources )GetContainingPdfObject ()_aff .PdfObject {return _bdgfb ._bdegd };var _eaed =map[string ]string {"\u0053\u0079\u006d\u0062\u006f\u006c":"\u0053\u0079\u006d\u0062\u006f\u006c\u0045\u006e\u0063o\u0064\u0069\u006e\u0067","\u005a\u0061\u0070f\u0044\u0069\u006e\u0067\u0062\u0061\u0074\u0073":"Z\u0061p\u0066\u0044\u0069\u006e\u0067\u0062\u0061\u0074s\u0045\u006e\u0063\u006fdi\u006e\u0067"}; +// Resample resamples the image data converting from current BitsPerComponent to a target BitsPerComponent +// value. Sets the image's BitsPerComponent to the target value following resampling. +// +// For example, converting an 8-bit RGB image to 1-bit grayscale (common for scanned images): +// // Convert RGB image to grayscale. +// rgbColorSpace := pdf.NewPdfColorspaceDeviceRGB() +// grayImage, err := rgbColorSpace.ImageToGray(rgbImage) +// if err != nil { +// return err +// } +// // Resample as 1 bit. +// grayImage.Resample(1) +func (_bddcb *Image )Resample (targetBitsPerComponent int64 ){if _bddcb .BitsPerComponent ==targetBitsPerComponent {return ;};_ebggd :=_bddcb .GetSamples ();if targetBitsPerComponent < _bddcb .BitsPerComponent {_ffcbb :=_bddcb .BitsPerComponent -targetBitsPerComponent ; +for _ceege :=range _ebggd {_ebggd [_ceege ]>>=uint (_ffcbb );};}else if targetBitsPerComponent > _bddcb .BitsPerComponent {_dbed :=targetBitsPerComponent -_bddcb .BitsPerComponent ;for _bfefg :=range _ebggd {_ebggd [_bfefg ]<<=uint (_dbed );};};_bddcb .BitsPerComponent =targetBitsPerComponent ; +if _bddcb .BitsPerComponent < 8{_bddcb .resampleLowBits (_ebggd );return ;};_cabbg :=_fc .BytesPerLine (int (_bddcb .Width ),int (_bddcb .BitsPerComponent ),_bddcb .ColorComponents );_gded :=make ([]byte ,_cabbg *int (_bddcb .Height ));var (_bgfcc ,_acdgc ,_eabf ,_dacab int ; +_fcdfb uint32 ;);for _eabf =0;_eabf < int (_bddcb .Height );_eabf ++{_bgfcc =_eabf *_cabbg ;_acdgc =(_eabf +1)*_cabbg -1;_bedce :=_fcd .ResampleUint32 (_ebggd [_bgfcc :_acdgc ],int (targetBitsPerComponent ),8);for _dacab ,_fcdfb =range _bedce {_gded [_dacab +_bgfcc ]=byte (_fcdfb ); +};};_bddcb .Data =_gded ;};func (_ddbbg *fontFile )loadFromSegments (_aagcc ,_acaef []byte )error {_ag .Log .Trace ("\u006c\u006f\u0061dF\u0072\u006f\u006d\u0053\u0065\u0067\u006d\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0064\u0020\u0025\u0064",len (_aagcc ),len (_acaef )); +_fadgd :=_ddbbg .parseASCIIPart (_aagcc );if _fadgd !=nil {return _fadgd ;};_ag .Log .Trace ("f\u006f\u006e\u0074\u0066\u0069\u006c\u0065\u003d\u0025\u0073",_ddbbg );if len (_acaef )==0{return nil ;};_ag .Log .Trace ("f\u006f\u006e\u0074\u0066\u0069\u006c\u0065\u003d\u0025\u0073",_ddbbg ); +return nil ;}; +// PdfColorspaceDeviceCMYK represents a CMYK32 colorspace. +type PdfColorspaceDeviceCMYK struct{}; -// SetVersion sets the PDF version of the output file. -func (_fadbf *PdfWriter )SetVersion (majorVersion ,minorVersion int ){_fadbf ._bgeecg .Major =majorVersion ;_fadbf ._bgeecg .Minor =minorVersion ;}; +// ToPdfObject returns the PdfFontDescriptor as a PDF dictionary inside an indirect object. +func (_aebg *PdfFontDescriptor )ToPdfObject ()_dg .PdfObject {_afgdd :=_dg .MakeDict ();if _aebg ._acag ==nil {_aebg ._acag =&_dg .PdfIndirectObject {};};_aebg ._acag .PdfObject =_afgdd ;_afgdd .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072")); +if _aebg .FontName !=nil {_afgdd .Set ("\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065",_aebg .FontName );};if _aebg .FontFamily !=nil {_afgdd .Set ("\u0046\u006f\u006e\u0074\u0046\u0061\u006d\u0069\u006c\u0079",_aebg .FontFamily );};if _aebg .FontStretch !=nil {_afgdd .Set ("F\u006f\u006e\u0074\u0053\u0074\u0072\u0065\u0074\u0063\u0068",_aebg .FontStretch ); +};if _aebg .FontWeight !=nil {_afgdd .Set ("\u0046\u006f\u006e\u0074\u0057\u0065\u0069\u0067\u0068\u0074",_aebg .FontWeight );};if _aebg .Flags !=nil {_afgdd .Set ("\u0046\u006c\u0061g\u0073",_aebg .Flags );};if _aebg .FontBBox !=nil {_afgdd .Set ("\u0046\u006f\u006e\u0074\u0042\u0042\u006f\u0078",_aebg .FontBBox ); +};if _aebg .ItalicAngle !=nil {_afgdd .Set ("I\u0074\u0061\u006c\u0069\u0063\u0041\u006e\u0067\u006c\u0065",_aebg .ItalicAngle );};if _aebg .Ascent !=nil {_afgdd .Set ("\u0041\u0073\u0063\u0065\u006e\u0074",_aebg .Ascent );};if _aebg .Descent !=nil {_afgdd .Set ("\u0044e\u0073\u0063\u0065\u006e\u0074",_aebg .Descent ); +};if _aebg .Leading !=nil {_afgdd .Set ("\u004ce\u0061\u0064\u0069\u006e\u0067",_aebg .Leading );};if _aebg .CapHeight !=nil {_afgdd .Set ("\u0043a\u0070\u0048\u0065\u0069\u0067\u0068t",_aebg .CapHeight );};if _aebg .XHeight !=nil {_afgdd .Set ("\u0058H\u0065\u0069\u0067\u0068\u0074",_aebg .XHeight ); +};if _aebg .StemV !=nil {_afgdd .Set ("\u0053\u0074\u0065m\u0056",_aebg .StemV );};if _aebg .StemH !=nil {_afgdd .Set ("\u0053\u0074\u0065m\u0048",_aebg .StemH );};if _aebg .AvgWidth !=nil {_afgdd .Set ("\u0041\u0076\u0067\u0057\u0069\u0064\u0074\u0068",_aebg .AvgWidth ); +};if _aebg .MaxWidth !=nil {_afgdd .Set ("\u004d\u0061\u0078\u0057\u0069\u0064\u0074\u0068",_aebg .MaxWidth );};if _aebg .MissingWidth !=nil {_afgdd .Set ("\u004d\u0069\u0073s\u0069\u006e\u0067\u0057\u0069\u0064\u0074\u0068",_aebg .MissingWidth );};if _aebg .FontFile !=nil {_afgdd .Set ("\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065",_aebg .FontFile ); +};if _aebg .FontFile2 !=nil {_afgdd .Set ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00652",_aebg .FontFile2 );};if _aebg .FontFile3 !=nil {_afgdd .Set ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00653",_aebg .FontFile3 );};if _aebg .CharSet !=nil {_afgdd .Set ("\u0043h\u0061\u0072\u0053\u0065\u0074",_aebg .CharSet ); +};if _aebg .Style !=nil {_afgdd .Set ("\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065",_aebg .FontName );};if _aebg .Lang !=nil {_afgdd .Set ("\u004c\u0061\u006e\u0067",_aebg .Lang );};if _aebg .FD !=nil {_afgdd .Set ("\u0046\u0044",_aebg .FD );};if _aebg .CIDSet !=nil {_afgdd .Set ("\u0043\u0049\u0044\u0053\u0065\u0074",_aebg .CIDSet ); +};return _aebg ._acag ;}; -// GetAsShadingPattern returns a shading pattern. Check with IsShading() prior to using this. -func (_caabe *PdfPattern )GetAsShadingPattern ()*PdfShadingPattern {return _caabe ._abbe .(*PdfShadingPattern );}; +// PdfColorCalRGB represents a color in the Colorimetric CIE RGB colorspace. +// A, B, C components +// Each component is defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. +type PdfColorCalRGB [3]float64 ; -// StandardApplier is the interface that performs optimization of the whole PDF document. -// As a result an input document is being changed by the optimizer. -// The writer than takes back all it's parts and overwrites it. -// NOTE: This implementation is in experimental development state. -// Keep in mind that it might change in the subsequent minor versions. -type StandardApplier interface{ApplyStandard (_gfcdg *_bb .Document )error ;}; +// NewPdfPageResourcesFromDict creates and returns a new PdfPageResources object +// from the input dictionary. +func NewPdfPageResourcesFromDict (dict *_dg .PdfObjectDictionary )(*PdfPageResources ,error ){_bdeeb :=NewPdfPageResources ();if _egedd :=dict .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e");_egedd !=nil {_bdeeb .ExtGState =_egedd ;};if _fgcg :=dict .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"); +_fgcg !=nil &&!_dg .IsNullObject (_fgcg ){_bdeeb .ColorSpace =_fgcg ;};if _eeebfg :=dict .Get ("\u0050a\u0074\u0074\u0065\u0072\u006e");_eeebfg !=nil {_bdeeb .Pattern =_eeebfg ;};if _feac :=dict .Get ("\u0053h\u0061\u0064\u0069\u006e\u0067");_feac !=nil {_bdeeb .Shading =_feac ; +};if _fdcca :=dict .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074");_fdcca !=nil {_bdeeb .XObject =_fdcca ;};if _bddg :=_dg .ResolveReference (dict .Get ("\u0046\u006f\u006e\u0074"));_bddg !=nil {_bdeeb .Font =_bddg ;};if _bceae :=dict .Get ("\u0050r\u006f\u0063\u0053\u0065\u0074"); +_bceae !=nil {_bdeeb .ProcSet =_bceae ;};if _deea :=dict .Get ("\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073");_deea !=nil {_bdeeb .Properties =_deea ;};return _bdeeb ,nil ;}; -// ToPdfObject implements interface PdfModel. -func (_bfacd *PdfSignatureReference )ToPdfObject ()_aff .PdfObject {_debeg :=_aff .MakeDict ();_debeg .SetIfNotNil ("\u0054\u0079\u0070\u0065",_bfacd .Type );_debeg .SetIfNotNil ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064",_bfacd .TransformMethod ); -_debeg .SetIfNotNil ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073",_bfacd .TransformParams );_debeg .SetIfNotNil ("\u0044\u0061\u0074\u0061",_bfacd .Data );_debeg .SetIfNotNil ("\u0044\u0069\u0067e\u0073\u0074\u004d\u0065\u0074\u0068\u006f\u0064",_bfacd .DigestMethod ); -return _debeg ;}; +// GetContainingPdfObject implements interface PdfModel. +func (_bcad *PdfAnnotation )GetContainingPdfObject ()_dg .PdfObject {return _bcad ._cdf };func _dbag (_cdffd *PdfAnnotation )(*XObjectForm ,*PdfRectangle ,error ){_cdgbc ,_adcg :=_dg .GetDict (_cdffd .AP );if !_adcg {return nil ,nil ,_bf .New ("f\u0069\u0065\u006c\u0064\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u0020\u0041\u0050\u0020d\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079"); +};if _cdgbc ==nil {return nil ,nil ,nil ;};_deecf ,_adcg :=_dg .GetArray (_cdffd .Rect );if !_adcg ||_deecf .Len ()!=4{return nil ,nil ,_bf .New ("\u0072\u0065\u0063t\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_dbab ,_cbagg :=NewPdfRectangle (*_deecf ); +if _cbagg !=nil {return nil ,nil ,_cbagg ;};_adff :=_dg .TraceToDirectObject (_cdgbc .Get ("\u004e"));switch _agff :=_adff .(type ){case *_dg .PdfObjectStream :_dgbd :=_agff ;_cccafa ,_ddgde :=NewXObjectFormFromStream (_dgbd );return _cccafa ,_dbab ,_ddgde ; +case *_dg .PdfObjectDictionary :_cgggf :=_agff ;_effbb ,_deac :=_dg .GetName (_cdffd .AS );if !_deac {return nil ,nil ,nil ;};if _cgggf .Get (*_effbb )==nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0041\u0053\u0020\u0073\u0074\u0061\u0074\u0065\u0020\u006e\u006f\u0074 \u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0069\u006e\u0020\u0041\u0050\u0020\u0064\u0069\u0063\u0074\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006eg"); +return nil ,nil ,nil ;};_cabc ,_deac :=_dg .GetStream (_cgggf .Get (*_effbb ));if !_deac {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055n\u0061\u0062\u006ce \u0074\u006f\u0020\u0061\u0063\u0063e\u0073\u0073\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073t\u0072\u0065\u0061\u006d\u0020\u0066\u006f\u0072 \u0025\u0076",_effbb ); +return nil ,nil ,_bf .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};_caad ,_aggb :=NewXObjectFormFromStream (_cabc );return _caad ,_dbab ,_aggb ;};_ag .Log .Debug ("\u0049\u006e\u0076\u0061li\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0066\u006f\u0072\u0020\u004e\u003a\u0020%\u0054",_adff ); +return nil ,nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};func _daece ()string {_fgefgf .Lock ();defer _fgefgf .Unlock ();return _fgfda }; -// SetDate sets the `M` field of the signature. -func (_dccgc *PdfSignature )SetDate (date _f .Time ,format string ){if format ==""{format ="\u0044\u003a\u003200\u0036\u0030\u0031\u0030\u0032\u0031\u0035\u0030\u0034\u0030\u0035\u002d\u0030\u0037\u0027\u0030\u0030\u0027";};_dccgc .M =_aff .MakeString (date .Format (format )); -}; +// PdfOutlineTreeNode contains common fields used by the outline and outline +// item objects. +type PdfOutlineTreeNode struct{_baddf interface{};First *PdfOutlineTreeNode ;Last *PdfOutlineTreeNode ;};func (_fccd *PdfWriter )mapObjectStreams (_feggg bool )(map[_dg .PdfObject ]bool ,bool ){_afefb :=make (map[_dg .PdfObject ]bool );for _ ,_fcfcc :=range _fccd ._agaba {if _cbada ,_ccfeg :=_fcfcc .(*_dg .PdfObjectStreams ); +_ccfeg {_feggg =true ;for _ ,_egegbg :=range _cbada .Elements (){_afefb [_egegbg ]=true ;if _gdcgb ,_gcaa :=_egegbg .(*_dg .PdfIndirectObject );_gcaa {_afefb [_gdcgb .PdfObject ]=true ;};};};};return _afefb ,_feggg ;}; -// NewPdfAnnotationHighlight returns a new text highlight annotation. -func NewPdfAnnotationHighlight ()*PdfAnnotationHighlight {_acbg :=NewPdfAnnotation ();_bcg :=&PdfAnnotationHighlight {};_bcg .PdfAnnotation =_acbg ;_bcg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_acbg .SetContext (_bcg );return _bcg ;}; +// GetContentStream returns the pattern cell's content stream +func (_fdfef *PdfTilingPattern )GetContentStream ()([]byte ,error ){_ddgcc ,_ ,_edfea :=_fdfef .GetContentStreamWithEncoder ();return _ddgcc ,_edfea ;}; -// ToPdfObject returns the text field dictionary within an indirect object (container). -func (_abeecb *PdfFieldText )ToPdfObject ()_aff .PdfObject {_abeecb .PdfField .ToPdfObject ();_ccdbg :=_abeecb ._dfbfd ;_geadf :=_ccdbg .PdfObject .(*_aff .PdfObjectDictionary );_geadf .Set ("\u0046\u0054",_aff .MakeName ("\u0054\u0078"));if _abeecb .DA !=nil {_geadf .Set ("\u0044\u0041",_abeecb .DA ); -};if _abeecb .Q !=nil {_geadf .Set ("\u0051",_abeecb .Q );};if _abeecb .DS !=nil {_geadf .Set ("\u0044\u0053",_abeecb .DS );};if _abeecb .RV !=nil {_geadf .Set ("\u0052\u0056",_abeecb .RV );};if _abeecb .MaxLen !=nil {_geadf .Set ("\u004d\u0061\u0078\u004c\u0065\u006e",_abeecb .MaxLen ); -};return _ccdbg ;}; +// NewPdfDate returns a new PdfDate object from a PDF date string (see 7.9.4 Dates). +// format: "D: YYYYMMDDHHmmSSOHH'mm" +func NewPdfDate (dateStr string )(PdfDate ,error ){_dgee ,_bcba :=_bcc .ParsePdfTime (dateStr );if _bcba !=nil {return PdfDate {},_bcba ;};return NewPdfDateFromTime (_dgee );};func (_edee *PdfReader )newPdfAnnotationMarkupFromDict (_dbf *_dg .PdfObjectDictionary )(*PdfAnnotationMarkup ,error ){_dccga :=&PdfAnnotationMarkup {}; +if _effa :=_dbf .Get ("\u0054");_effa !=nil {_dccga .T =_effa ;};if _cagf :=_dbf .Get ("\u0050\u006f\u0070u\u0070");_cagf !=nil {_fdd ,_gdc :=_cagf .(*_dg .PdfIndirectObject );if !_gdc {if _ ,_faf :=_cagf .(*_dg .PdfObjectNull );!_faf {return nil ,_bf .New ("p\u006f\u0070\u0075\u0070\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0070\u006f\u0069\u006e\u0074\u0020t\u006f\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072ec\u0074\u0020\u006fb\u006ae\u0063\u0074"); +};}else {_cagfe ,_bbeb :=_edee .newPdfAnnotationFromIndirectObject (_fdd );if _bbeb !=nil {return nil ,_bbeb ;};if _cagfe !=nil {_fgc ,_gdd :=_cagfe ._egcg .(*PdfAnnotationPopup );if !_gdd {return nil ,_bf .New ("\u006f\u0062\u006ae\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0066\u0065\u0072\u0072\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0061\u0020\u0070\u006f\u0070\u0075\u0070\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e"); +};_dccga .Popup =_fgc ;};};};if _aac :=_dbf .Get ("\u0043\u0041");_aac !=nil {_dccga .CA =_aac ;};if _bcfe :=_dbf .Get ("\u0052\u0043");_bcfe !=nil {_dccga .RC =_bcfe ;};if _bfgg :=_dbf .Get ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065"); +_bfgg !=nil {_dccga .CreationDate =_bfgg ;};if _bgdb :=_dbf .Get ("\u0049\u0052\u0054");_bgdb !=nil {_dccga .IRT =_bgdb ;};if _agab :=_dbf .Get ("\u0053\u0075\u0062\u006a");_agab !=nil {_dccga .Subj =_agab ;};if _efbe :=_dbf .Get ("\u0052\u0054");_efbe !=nil {_dccga .RT =_efbe ; +};if _fbfc :=_dbf .Get ("\u0049\u0054");_fbfc !=nil {_dccga .IT =_fbfc ;};if _cfeaf :=_dbf .Get ("\u0045\u0078\u0044\u0061\u0074\u0061");_cfeaf !=nil {_dccga .ExData =_cfeaf ;};return _dccga ,nil ;}; -// ToPdfObject returns the PDF representation of the function. -func (_aaedad *PdfFunctionType2 )ToPdfObject ()_aff .PdfObject {_fbdb :=_aff .MakeDict ();_fbdb .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_aff .MakeInteger (2));_cfbgg :=&_aff .PdfObjectArray {};for _ ,_bagb :=range _aaedad .Domain {_cfbgg .Append (_aff .MakeFloat (_bagb )); -};_fbdb .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_cfbgg );if _aaedad .Range !=nil {_dffac :=&_aff .PdfObjectArray {};for _ ,_gecb :=range _aaedad .Range {_dffac .Append (_aff .MakeFloat (_gecb ));};_fbdb .Set ("\u0052\u0061\u006eg\u0065",_dffac );}; -if _aaedad .C0 !=nil {_ddbfa :=&_aff .PdfObjectArray {};for _ ,_dcde :=range _aaedad .C0 {_ddbfa .Append (_aff .MakeFloat (_dcde ));};_fbdb .Set ("\u0043\u0030",_ddbfa );};if _aaedad .C1 !=nil {_dagf :=&_aff .PdfObjectArray {};for _ ,_eegc :=range _aaedad .C1 {_dagf .Append (_aff .MakeFloat (_eegc )); -};_fbdb .Set ("\u0043\u0031",_dagf );};_fbdb .Set ("\u004e",_aff .MakeFloat (_aaedad .N ));if _aaedad ._ceeae !=nil {_aaedad ._ceeae .PdfObject =_fbdb ;return _aaedad ._ceeae ;};return _fbdb ;}; +// GetNameDictionary returns the Names entry in the PDF catalog. +// See section 7.7.4 "Name Dictionary" (p. 80 PDF32000_2008). +func (_afgad *PdfReader )GetNameDictionary ()(_dg .PdfObject ,error ){_dgbdc :=_dg .ResolveReference (_afgad ._gccfb .Get ("\u004e\u0061\u006de\u0073"));if _dgbdc ==nil {return nil ,nil ;};if !_afgad ._dadcef {_aeecg :=_afgad .traverseObjectData (_dgbdc ); +if _aeecg !=nil {return nil ,_aeecg ;};};return _dgbdc ,nil ;};func _gacf (_aeee *_dg .PdfObjectDictionary )(*PdfFieldText ,error ){_fbbfe :=&PdfFieldText {};_fbbfe .DA ,_ =_dg .GetString (_aeee .Get ("\u0044\u0041"));_fbbfe .Q ,_ =_dg .GetInt (_aeee .Get ("\u0051")); +_fbbfe .DS ,_ =_dg .GetString (_aeee .Get ("\u0044\u0053"));_fbbfe .RV =_aeee .Get ("\u0052\u0056");_fbbfe .MaxLen ,_ =_dg .GetInt (_aeee .Get ("\u004d\u0061\u0078\u004c\u0065\u006e"));return _fbbfe ,nil ;}; -// C returns the value of the C component of the color. -func (_abdg *PdfColorCalRGB )C ()float64 {return _abdg [2]}; +// GetRotate gets the inheritable rotate value, either from the page +// or a higher up page/pages struct. +func (_dfdd *PdfPage )GetRotate ()(int64 ,error ){if _dfdd .Rotate !=nil {return *_dfdd .Rotate ,nil ;};_gbecb :=_dfdd .Parent ;for _gbecb !=nil {_gbgfff ,_bbdde :=_dg .GetDict (_gbecb );if !_bbdde {return 0,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +};if _gbcebc :=_gbgfff .Get ("\u0052\u006f\u0074\u0061\u0074\u0065");_gbcebc !=nil {_baegf ,_fbgfg :=_dg .GetInt (_gbcebc );if !_fbgfg {return 0,_bf .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0072\u006f\u0074a\u0074\u0065\u0020\u0076al\u0075\u0065"); +};if _baegf !=nil {return int64 (*_baegf ),nil ;};return 0,_bf .New ("\u0072\u006f\u0074\u0061te\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};_gbecb =_gbgfff .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");};return 0,_bf .New ("\u0072o\u0074a\u0074\u0065\u0020\u006e\u006ft\u0020\u0064e\u0066\u0069\u006e\u0065\u0064"); +};func _fecee (_ffdee []*_dg .PdfObjectStream )*_dg .PdfObjectArray {if len (_ffdee )==0{return nil ;};_faebf :=make ([]_dg .PdfObject ,0,len (_ffdee ));for _ ,_gfedd :=range _ffdee {_faebf =append (_faebf ,_gfedd );};return _dg .MakeArray (_faebf ...); +};func _dgagb ()string {return _ag .Version }; -// DecodeArray returns the range of color component values in CalGray colorspace. -func (_gece *PdfColorspaceCalGray )DecodeArray ()[]float64 {return []float64 {0.0,1.0}}; +// GetCharMetrics returns the char metrics for character code `code`. +// How it works: +// 1. It calls the GetCharMetrics function for the underlying font, either a simple font or +// a Type0 font. The underlying font GetCharMetrics() functions do direct charcode ➞ metrics +// mappings. +// 2. If the underlying font's GetCharMetrics() doesn't have a CharMetrics for `code` then a +// a CharMetrics with the FontDescriptor's /MissingWidth is returned. +// 3. If there is no /MissingWidth then a failure is returned. +// +// TODO(peterwilliams97) There is nothing callers can do if no CharMetrics are found so we might as +// well give them 0 width. There is no need for the bool return. +// +// TODO(gunnsth): Reconsider whether needed or if can map via GlyphName. +func (_daca *PdfFont )GetCharMetrics (code _bd .CharCode )(CharMetrics ,bool ){var _bcgea _bbg .CharMetrics ;switch _dcgcg :=_daca ._cadf .(type ){case *pdfFontSimple :if _cffag ,_egfdg :=_dcgcg .GetCharMetrics (code );_egfdg {return _cffag ,_egfdg ;}; +case *pdfFontType0 :if _bgce ,_fgfgf :=_dcgcg .GetCharMetrics (code );_fgfgf {return _bgce ,_fgfgf ;};case *pdfCIDFontType0 :if _ebfa ,_fdeb :=_dcgcg .GetCharMetrics (code );_fdeb {return _ebfa ,_fdeb ;};case *pdfCIDFontType2 :if _bgca ,_bgbc :=_dcgcg .GetCharMetrics (code ); +_bgbc {return _bgca ,_bgbc ;};case *pdfFontType3 :if _bbcfc ,_fgeb :=_dcgcg .GetCharMetrics (code );_fgeb {return _bbcfc ,_fgeb ;};default:_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020G\u0065\u0074\u0043h\u0061\u0072\u004de\u0074\u0072i\u0063\u0073\u0020\u006e\u006f\u0074 \u0069mp\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u0020\u0074\u0079\u0070\u0065\u003d\u0025\u0054\u002e",_daca ._cadf ); +return _bcgea ,false ;};if _bgcfb ,_cbgeg :=_daca .GetFontDescriptor ();_cbgeg ==nil &&_bgcfb !=nil {return _bbg .CharMetrics {Wx :_bgcfb ._adggg },true ;};_ag .Log .Debug ("\u0047\u0065\u0074\u0043\u0068\u0061\u0072\u004d\u0065\u0074\u0072\u0069\u0063\u0073\u003a\u0020\u004e\u006f\u0020\u006d\u0065\u0074\u0072\u0069c\u0073\u0020\u0066\u006f\u0072 \u0066\u006fn\u0074\u003d\u0025\u0073",_daca ); +return _bcgea ,false ;}; -// NewPdfColorspaceSpecialIndexed returns a new Indexed color. -func NewPdfColorspaceSpecialIndexed ()*PdfColorspaceSpecialIndexed {return &PdfColorspaceSpecialIndexed {HiVal :255};}; +// PdfOutlineItem represents an outline item dictionary (Table 153 - pp. 376 - 377). +type PdfOutlineItem struct{PdfOutlineTreeNode ;Title *_dg .PdfObjectString ;Parent *PdfOutlineTreeNode ;Prev *PdfOutlineTreeNode ;Next *PdfOutlineTreeNode ;Count *int64 ;Dest _dg .PdfObject ;A _dg .PdfObject ;SE _dg .PdfObject ;C _dg .PdfObject ;F _dg .PdfObject ; +_fbgf *_dg .PdfIndirectObject ;}; -// NewPdfSignatureReferenceDocMDP returns PdfSignatureReference for the transformParams. -func NewPdfSignatureReferenceDocMDP (transformParams *PdfTransformParamsDocMDP )*PdfSignatureReference {return &PdfSignatureReference {Type :_aff .MakeName ("\u0053\u0069\u0067\u0052\u0065\u0066"),TransformMethod :_aff .MakeName ("\u0044\u006f\u0063\u004d\u0044\u0050"),TransformParams :transformParams .ToPdfObject ()}; -}; +// NewPdfColorspaceFromPdfObject loads a PdfColorspace from a PdfObject. Returns an error if there is +// a failure in loading. +func NewPdfColorspaceFromPdfObject (obj _dg .PdfObject )(PdfColorspace ,error ){if obj ==nil {return nil ,nil ;};var _cdfc *_dg .PdfIndirectObject ;var _acdg *_dg .PdfObjectName ;var _ecdb *_dg .PdfObjectArray ;if _gafa ,_cgag :=obj .(*_dg .PdfIndirectObject ); +_cgag {_cdfc =_gafa ;};obj =_dg .TraceToDirectObject (obj );switch _egbge :=obj .(type ){case *_dg .PdfObjectArray :_ecdb =_egbge ;case *_dg .PdfObjectName :_acdg =_egbge ;};if _acdg !=nil {switch *_acdg {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":return NewPdfColorspaceDeviceGray (),nil ; +case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":return NewPdfColorspaceDeviceRGB (),nil ;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return NewPdfColorspaceDeviceCMYK (),nil ;case "\u0050a\u0074\u0074\u0065\u0072\u006e":return NewPdfColorspaceSpecialPattern (),nil ; +default:_ag .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020c\u006fl\u006f\u0072\u0073\u0070\u0061\u0063\u0065 \u0025\u0073",*_acdg );return nil ,_dgaa ;};};if _ecdb !=nil &&_ecdb .Len ()> 0{var _eced _dg .PdfObject =_cdfc ; +if _cdfc ==nil {_eced =_ecdb ;};if _ageb ,_cgbc :=_dg .GetName (_ecdb .Get (0));_cgbc {switch _ageb .String (){case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":if _ecdb .Len ()==1{return NewPdfColorspaceDeviceGray (),nil ;};case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":if _ecdb .Len ()==1{return NewPdfColorspaceDeviceRGB (),nil ; +};case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":if _ecdb .Len ()==1{return NewPdfColorspaceDeviceCMYK (),nil ;};case "\u0043a\u006c\u0047\u0072\u0061\u0079":return _geee (_eced );case "\u0043\u0061\u006c\u0052\u0047\u0042":return _gdea (_eced ); +case "\u004c\u0061\u0062":return _dcbd (_eced );case "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064":return _adddc (_eced );case "\u0050a\u0074\u0074\u0065\u0072\u006e":return _dffca (_eced );case "\u0049n\u0064\u0065\u0078\u0065\u0064":return _baac (_eced ); +case "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e":return _fbbg (_eced );case "\u0044e\u0076\u0069\u0063\u0065\u004e":return _fdfee (_eced );default:_ag .Log .Debug ("A\u0072\u0072\u0061\u0079\u0020\u0077i\u0074\u0068\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u006e\u0061m\u0065:\u0020\u0025\u0073",*_ageb ); +};};};_ag .Log .Debug ("\u0050\u0044\u0046\u0020\u0046i\u006c\u0065\u0020\u0045\u0072\u0072\u006f\u0072\u003a\u0020\u0043\u006f\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0073",obj .String ()); +return nil ,ErrTypeCheck ;};func (_gaa *PdfReader )newPdfActionJavaScriptFromDict (_bff *_dg .PdfObjectDictionary )(*PdfActionJavaScript ,error ){return &PdfActionJavaScript {JS :_bff .Get ("\u004a\u0053")},nil ;}; -// SetAction sets the PDF action for the annotation link. -func (_aaf *PdfAnnotationLink )SetAction (action *PdfAction ){_aaf ._dea =action ;if action ==nil {_aaf .A =nil ;};}; +// ColorToRGB converts gray -> rgb for a single color component. +func (_eagb *PdfColorspaceDeviceGray )ColorToRGB (color PdfColor )(PdfColor ,error ){_bcbd ,_ccagf :=color .(*PdfColorDeviceGray );if !_ccagf {_ag .Log .Debug ("\u0049\u006e\u0070\u0075\u0074\u0020\u0063\u006f\u006c\u006fr\u0020\u006e\u006f\u0074\u0020\u0064\u0065v\u0069\u0063\u0065\u0020\u0067\u0072\u0061\u0079\u0020\u0025\u0054",color ); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};return NewPdfColorDeviceRGB (float64 (*_bcbd ),float64 (*_bcbd ),float64 (*_bcbd )),nil ;}; -// PdfAnnotationSquiggly represents Squiggly annotations. -// (Section 12.5.6.10). -type PdfAnnotationSquiggly struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _aff .PdfObject ;}; +// ToInteger convert to an integer format. +func (_dadf *PdfColorDeviceCMYK )ToInteger (bits int )[4]uint32 {_bfb :=_cg .Pow (2,float64 (bits ))-1;return [4]uint32 {uint32 (_bfb *_dadf .C ()),uint32 (_bfb *_dadf .M ()),uint32 (_bfb *_dadf .Y ()),uint32 (_bfb *_dadf .K ())};};func (_feag *PdfField )inherit (_adgb func (*PdfField )bool )(bool ,error ){_decaf :=map[*PdfField ]bool {}; +_fcbe :=false ;_bdcb :=_feag ;for _bdcb !=nil {if _ ,_cdeaf :=_decaf [_bdcb ];_cdeaf {return false ,_bf .New ("\u0072\u0065\u0063\u0075rs\u0069\u0076\u0065\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0061\u006c");};_cgcc :=_adgb (_bdcb );if _cgcc {_fcbe =true ; +break ;};_decaf [_bdcb ]=true ;_bdcb =_bdcb .Parent ;};return _fcbe ,nil ;};var _ pdfFont =(*pdfFontSimple )(nil ); -// ToPdfObject implements interface PdfModel. -func (_ae *PdfActionMovie )ToPdfObject ()_aff .PdfObject {_ae .PdfAction .ToPdfObject ();_afe :=_ae ._df ;_edc :=_afe .PdfObject .(*_aff .PdfObjectDictionary );_edc .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeMovie )));_edc .SetIfNotNil ("\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e",_ae .Annotation ); -_edc .SetIfNotNil ("\u0054",_ae .T );_edc .SetIfNotNil ("\u004fp\u0065\u0072\u0061\u0074\u0069\u006fn",_ae .Operation );return _afe ;}; +// SetPdfModifiedDate sets the ModDate attribute of the output PDF. +func SetPdfModifiedDate (modifiedDate _a .Time ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_efafac =modifiedDate ;}; -// GetShadingByName gets the shading specified by keyName. Returns nil if not existing. -// The bool flag indicated whether it was found or not. -func (_agagd *PdfPageResources )GetShadingByName (keyName _aff .PdfObjectName )(*PdfShading ,bool ){if _agagd .Shading ==nil {return nil ,false ;};_gbgac ,_abbcg :=_aff .TraceToDirectObject (_agagd .Shading ).(*_aff .PdfObjectDictionary );if !_abbcg {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0068\u0061d\u0069\u006e\u0067\u0020\u0065\u006e\u0074r\u0079\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064i\u0063\u0074\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_agagd .Shading ); -return nil ,false ;};if _gedga :=_gbgac .Get (keyName );_gedga !=nil {_adfgc ,_bfaef :=_dbdf (_gedga );if _bfaef !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020f\u0061\u0069l\u0065\u0064\u0020\u0074\u006f\u0020\u006c\u006fa\u0064\u0020\u0070\u0064\u0066\u0020\u0073\u0068\u0061\u0064\u0069\u006eg\u003a\u0020\u0025\u0076",_bfaef ); -return nil ,false ;};return _adfgc ,true ;};return nil ,false ;}; +// NewPdfAnnotationMovie returns a new movie annotation. +func NewPdfAnnotationMovie ()*PdfAnnotationMovie {_fcda :=NewPdfAnnotation ();_dabe :=&PdfAnnotationMovie {};_dabe .PdfAnnotation =_fcda ;_fcda .SetContext (_dabe );return _dabe ;}; -// FieldImageProvider provides fields images for specified fields. -type FieldImageProvider interface{FieldImageValues ()(map[string ]*Image ,error );}; +// NewPdfColorspaceICCBased returns a new ICCBased colorspace object. +func NewPdfColorspaceICCBased (N int )(*PdfColorspaceICCBased ,error ){_eaad :=&PdfColorspaceICCBased {};if N !=1&&N !=3&&N !=4{return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004e\u0020\u0028\u0031/\u0033\u002f\u0034\u0029"); +};_eaad .N =N ;return _eaad ,nil ;};func (_bcfd *PdfReader )newPdfPageFromDict (_ggef *_dg .PdfObjectDictionary )(*PdfPage ,error ){_efedf :=NewPdfPage ();_efedf ._bfdge =_ggef ;_efedf ._gaed =*_ggef ;_daagd :=*_ggef ;_fcgag ,_bacae :=_daagd .Get ("\u0054\u0079\u0070\u0065").(*_dg .PdfObjectName ); +if !_bacae {return nil ,_bf .New ("\u006d\u0069ss\u0069\u006e\u0067/\u0069\u006e\u0076\u0061lid\u0020Pa\u0067\u0065\u0020\u0064\u0069\u0063\u0074io\u006e\u0061\u0072\u0079\u0020\u0054\u0079p\u0065");};if *_fcgag !="\u0050\u0061\u0067\u0065"{return nil ,_bf .New ("\u0070\u0061\u0067\u0065 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0054y\u0070\u0065\u0020\u0021\u003d\u0020\u0050a\u0067\u0065"); +};if _abega :=_daagd .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");_abega !=nil {_efedf .Parent =_abega ;};if _dfgdd :=_daagd .Get ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064");_dfgdd !=nil {_fffdgd ,_adebe :=_dg .GetString (_dfgdd ); +if !_adebe {return nil ,_bf .New ("\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u004c\u0061\u0073\u0074\u004d\u006f\u0064\u0069f\u0069\u0065\u0064\u0020\u0021=\u0020\u0073t\u0072\u0069\u006e\u0067");}; +_egcbe ,_fdceb :=NewPdfDate (_fffdgd .Str ());if _fdceb !=nil {return nil ,_fdceb ;};_efedf .LastModified =&_egcbe ;};if _gbag :=_daagd .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");_gbag !=nil &&!_dg .IsNullObject (_gbag ){_afae ,_aeff :=_dg .GetDict (_gbag ); +if !_aeff {return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063e\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_gbag );};var _dfege error ;_efedf .Resources ,_dfege =NewPdfPageResourcesFromDict (_afae ); +if _dfege !=nil {return nil ,_dfege ;};}else {_gdeag ,_afbg :=_efedf .getParentResources ();if _afbg !=nil {return nil ,_afbg ;};if _gdeag ==nil {_gdeag =NewPdfPageResources ();};_efedf .Resources =_gdeag ;};if _eaecg :=_daagd .Get ("\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078"); +_eaecg !=nil {_gaec ,_fdbed :=_dg .GetArray (_eaecg );if !_fdbed {return nil ,_bf .New ("\u0070\u0061\u0067\u0065\u0020\u004d\u0065\u0064\u0069\u0061\u0042o\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079");};var _ggacc error ; +_efedf .MediaBox ,_ggacc =NewPdfRectangle (*_gaec );if _ggacc !=nil {return nil ,_ggacc ;};};if _eaff :=_daagd .Get ("\u0043r\u006f\u0070\u0042\u006f\u0078");_eaff !=nil {_dadde ,_aefgf :=_dg .GetArray (_eaff );if !_aefgf {return nil ,_bf .New ("\u0070a\u0067\u0065\u0020\u0043r\u006f\u0070\u0042\u006f\u0078 \u006eo\u0074 \u0061\u006e\u0020\u0061\u0072\u0072\u0061y"); +};var _beag error ;_efedf .CropBox ,_beag =NewPdfRectangle (*_dadde );if _beag !=nil {return nil ,_beag ;};};if _cbea :=_daagd .Get ("\u0042\u006c\u0065\u0065\u0064\u0042\u006f\u0078");_cbea !=nil {_efea ,_febbb :=_dg .GetArray (_cbea );if !_febbb {return nil ,_bf .New ("\u0070\u0061\u0067\u0065\u0020\u0042\u006c\u0065\u0065\u0064\u0042o\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072\u0061\u0079"); +};var _bgcdf error ;_efedf .BleedBox ,_bgcdf =NewPdfRectangle (*_efea );if _bgcdf !=nil {return nil ,_bgcdf ;};};if _eccdd :=_daagd .Get ("\u0054r\u0069\u006d\u0042\u006f\u0078");_eccdd !=nil {_abee ,_bbgdg :=_dg .GetArray (_eccdd );if !_bbgdg {return nil ,_bf .New ("\u0070a\u0067\u0065\u0020\u0054r\u0069\u006d\u0042\u006f\u0078 \u006eo\u0074 \u0061\u006e\u0020\u0061\u0072\u0072\u0061y"); +};var _aecf error ;_efedf .TrimBox ,_aecf =NewPdfRectangle (*_abee );if _aecf !=nil {return nil ,_aecf ;};};if _ffee :=_daagd .Get ("\u0041\u0072\u0074\u0042\u006f\u0078");_ffee !=nil {_afff ,_eafg :=_dg .GetArray (_ffee );if !_eafg {return nil ,_bf .New ("\u0070a\u0067\u0065\u0020\u0041\u0072\u0074\u0042\u006f\u0078\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); +};var _ggfcfa error ;_efedf .ArtBox ,_ggfcfa =NewPdfRectangle (*_afff );if _ggfcfa !=nil {return nil ,_ggfcfa ;};};if _ggaff :=_daagd .Get ("\u0042\u006f\u0078C\u006f\u006c\u006f\u0072\u0049\u006e\u0066\u006f");_ggaff !=nil {_efedf .BoxColorInfo =_ggaff ; +};if _gbgffe :=_daagd .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073");_gbgffe !=nil {_efedf .Contents =_gbgffe ;};if _bcgaa :=_daagd .Get ("\u0052\u006f\u0074\u0061\u0074\u0065");_bcgaa !=nil {_ddaff ,_bbcce :=_dg .GetNumberAsInt64 (_bcgaa ); +if _bbcce !=nil {return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0067e\u0020\u0052\u006f\u0074\u0061\u0074\u0065\u0020\u006f\u0062j\u0065\u0063\u0074");};_efedf .Rotate =&_ddaff ;};if _cdbd :=_daagd .Get ("\u0047\u0072\u006fu\u0070"); +_cdbd !=nil {_efedf .Group =_cdbd ;};if _ceage :=_daagd .Get ("\u0054\u0068\u0075m\u0062");_ceage !=nil {_efedf .Thumb =_ceage ;};if _gddcb :=_daagd .Get ("\u0042");_gddcb !=nil {_efedf .B =_gddcb ;};if _cdead :=_daagd .Get ("\u0044\u0075\u0072");_cdead !=nil {_efedf .Dur =_cdead ; +};if _cfcae :=_daagd .Get ("\u0054\u0072\u0061n\u0073");_cfcae !=nil {_efedf .Trans =_cfcae ;};if _dacaf :=_daagd .Get ("\u0041\u0041");_dacaf !=nil {_efedf .AA =_dacaf ;};if _cdda :=_daagd .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");_cdda !=nil {_efedf .Metadata =_cdda ; +};if _bbbef :=_daagd .Get ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o");_bbbef !=nil {_efedf .PieceInfo =_bbbef ;};if _fegdc :=_daagd .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073");_fegdc !=nil {_efedf .StructParents =_fegdc ; +};if _dddfa :=_daagd .Get ("\u0049\u0044");_dddfa !=nil {_efedf .ID =_dddfa ;};if _gccbd :=_daagd .Get ("\u0050\u005a");_gccbd !=nil {_efedf .PZ =_gccbd ;};if _gafcf :=_daagd .Get ("\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006fn\u0049\u006e\u0066\u006f"); +_gafcf !=nil {_efedf .SeparationInfo =_gafcf ;};if _bbefc :=_daagd .Get ("\u0054\u0061\u0062\u0073");_bbefc !=nil {_efedf .Tabs =_bbefc ;};if _eedb :=_daagd .Get ("T\u0065m\u0070\u006c\u0061\u0074\u0065\u0049\u006e\u0073t\u0061\u006e\u0074\u0069at\u0065\u0064"); +_eedb !=nil {_efedf .TemplateInstantiated =_eedb ;};if _dcffe :=_daagd .Get ("\u0050r\u0065\u0073\u0053\u0074\u0065\u0070s");_dcffe !=nil {_efedf .PresSteps =_dcffe ;};if _bffecc :=_daagd .Get ("\u0055\u0073\u0065\u0072\u0055\u006e\u0069\u0074");_bffecc !=nil {_efedf .UserUnit =_bffecc ; +};if _eafe :=_daagd .Get ("\u0056\u0050");_eafe !=nil {_efedf .VP =_eafe ;};if _cbfcb :=_daagd .Get ("\u0041\u006e\u006e\u006f\u0074\u0073");_cbfcb !=nil {_efedf .Annots =_cbfcb ;};_efedf ._cbbcc =_bcfd ;return _efedf ,nil ;}; -// AddOutlineTree adds outlines to a PDF file. -func (_dedda *PdfWriter )AddOutlineTree (outlineTree *PdfOutlineTreeNode ){_dedda ._dccbd =outlineTree };func (_eabaa *PdfWriter )writeObjects (){_adg .Log .Trace ("\u0057\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0025d\u0020\u006f\u0062\u006a",len (_eabaa ._babcd )); -_eabaa ._abebd =make (map[int ]crossReference );_eabaa ._abebd [0]=crossReference {Type :0,ObjectNumber :0,Generation :0xFFFF};if _eabaa ._gfaab .ObjectMap !=nil {for _gcaedc ,_aafeb :=range _eabaa ._gfaab .ObjectMap {if _gcaedc ==0{continue ;};if _aafeb .XType ==_aff .XrefTypeObjectStream {_bagd :=crossReference {Type :2,ObjectNumber :_aafeb .OsObjNumber ,Index :_aafeb .OsObjIndex }; -_eabaa ._abebd [_gcaedc ]=_bagd ;};if _aafeb .XType ==_aff .XrefTypeTableEntry {_dfbg :=crossReference {Type :1,ObjectNumber :_aafeb .ObjectNumber ,Offset :_aafeb .Offset };_eabaa ._abebd [_gcaedc ]=_dfbg ;};};};}; +// NewCompositePdfFontFromTTF loads a composite TTF font. Composite fonts can +// be used to represent unicode fonts which can have multi-byte character codes, representing a wide +// range of values. They are often used for symbolic languages, including Chinese, Japanese and Korean. +// It is represented by a Type0 Font with an underlying CIDFontType2 and an Identity-H encoding map. +// TODO: May be extended in the future to support a larger variety of CMaps and vertical fonts. +// NOTE: For simple fonts, use NewPdfFontFromTTF. +func NewCompositePdfFontFromTTF (r _cf .ReadSeeker )(*PdfFont ,error ){_dcgg ,_egedc :=_gf .ReadAll (r );if _egedc !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065 \u0074\u006f\u0020\u0072\u0065\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u003a\u0020\u0025\u0076",_egedc ); +return nil ,_egedc ;};_cdcb ,_egedc :=_bbg .TtfParse (_bc .NewReader (_dcgg ));if _egedc !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0077\u0068\u0069\u006c\u0065\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067 \u0074\u0074\u0066\u0020\u0066\u006f\u006et\u003a\u0020\u0025\u0076",_egedc ); +return nil ,_egedc ;};_fcaa :=&pdfCIDFontType2 {fontCommon :fontCommon {_bcga :"\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"},CIDToGIDMap :_dg .MakeName ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079")};if len (_cdcb .Widths )<=0{return nil ,_bf .New ("\u0045\u0052\u0052O\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065 \u0028\u0057\u0069\u0064\u0074\u0068\u0073\u0029"); +};_abbg :=1000.0/float64 (_cdcb .UnitsPerEm );_ceff :=_abbg *float64 (_cdcb .Widths [0]);_ecbaf :=make (map[rune ]int );_cadb :=make (map[_bbg .GID ]int );_fbece :=_bbg .GID (len (_cdcb .Widths ));for _aefe ,_bfcba :=range _cdcb .Chars {if _bfcba > _fbece -1{continue ; +};_ccbgg :=int (_abbg *float64 (_cdcb .Widths [_bfcba ]));_ecbaf [_aefe ]=_ccbgg ;_cadb [_bfcba ]=_ccbgg ;};_fcaa ._ebgc =_ecbaf ;_fcaa .DW =_dg .MakeInteger (int64 (_ceff ));_gbff :=_ggcb (_cadb ,uint16 (_fbece ));_fcaa .W =_dg .MakeIndirectObject (_gbff ); +_fbege :=_dg .MakeDict ();_fbege .Set ("\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067",_dg .MakeString ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079"));_fbege .Set ("\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079",_dg .MakeString ("\u0041\u0064\u006fb\u0065")); +_fbege .Set ("\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074",_dg .MakeInteger (0));_fcaa .CIDSystemInfo =_fbege ;_aabdg :=&PdfFontDescriptor {FontName :_dg .MakeName (_cdcb .PostScriptName ),Ascent :_dg .MakeFloat (_abbg *float64 (_cdcb .TypoAscender )),Descent :_dg .MakeFloat (_abbg *float64 (_cdcb .TypoDescender )),CapHeight :_dg .MakeFloat (_abbg *float64 (_cdcb .CapHeight )),FontBBox :_dg .MakeArrayFromFloats ([]float64 {_abbg *float64 (_cdcb .Xmin ),_abbg *float64 (_cdcb .Ymin ),_abbg *float64 (_cdcb .Xmax ),_abbg *float64 (_cdcb .Ymax )}),ItalicAngle :_dg .MakeFloat (_cdcb .ItalicAngle ),MissingWidth :_dg .MakeFloat (_ceff )}; +_gefa ,_egedc :=_dg .MakeStream (_dcgg ,_dg .NewFlateEncoder ());if _egedc !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0061\u0062\u006c\u0065\u0020\u0074o\u0020m\u0061\u006b\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_egedc ); +return nil ,_egedc ;};_gefa .PdfObjectDictionary .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_dg .MakeInteger (int64 (len (_dcgg ))));_aabdg .FontFile2 =_gefa ;if _cdcb .Bold {_aabdg .StemV =_dg .MakeInteger (120);}else {_aabdg .StemV =_dg .MakeInteger (70); +};_ggbbc :=_bbfd ;if _cdcb .IsFixedPitch {_ggbbc |=_gafad ;};if _cdcb .ItalicAngle !=0{_ggbbc |=_bfeb ;};_aabdg .Flags =_dg .MakeInteger (int64 (_ggbbc ));_fcaa ._ecbf =_cdcb .PostScriptName ;_fcaa ._ccfb =_aabdg ;_faca :=pdfFontType0 {fontCommon :fontCommon {_bcga :"\u0054\u0079\u0070e\u0030",_ecbf :_cdcb .PostScriptName },DescendantFont :&PdfFont {_cadf :_fcaa },Encoding :_dg .MakeName ("\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048"),_ggec :_cdcb .NewEncoder ()}; +if len (_cdcb .Chars )> 0{_gebfg :=make (map[_ff .CharCode ]rune ,len (_cdcb .Chars ));for _cafc ,_cggeb :=range _cdcb .Chars {_gegfd :=_ff .CharCode (_cggeb );if _caaef ,_ggccd :=_gebfg [_gegfd ];!_ggccd ||(_ggccd &&_caaef > _cafc ){_gebfg [_gegfd ]=_cafc ; +};};_faca ._ecfb =_ff .NewToUnicodeCMap (_gebfg );};_cffbf :=PdfFont {_cadf :&_faca };return &_cffbf ,nil ;};func _aaaa (_gbgff *_dg .PdfObjectDictionary )(*PdfFieldChoice ,error ){_fbab :=&PdfFieldChoice {};_fbab .Opt ,_ =_dg .GetArray (_gbgff .Get ("\u004f\u0070\u0074")); +_fbab .TI ,_ =_dg .GetInt (_gbgff .Get ("\u0054\u0049"));_fbab .I ,_ =_dg .GetArray (_gbgff .Get ("\u0049"));return _fbab ,nil ;};func (_edfg *DSS )add (_bgbd *[]*_dg .PdfObjectStream ,_cdcf map[string ]*_dg .PdfObjectStream ,_dgeg [][]byte )([]*_dg .PdfObjectStream ,error ){_abcb :=make ([]*_dg .PdfObjectStream ,0,len (_dgeg )); +for _ ,_fbbf :=range _dgeg {_dagf ,_dggd :=_cbeaf (_fbbf );if _dggd !=nil {return nil ,_dggd ;};_cefa ,_fddg :=_cdcf [string (_dagf )];if !_fddg {_cefa ,_dggd =_dg .MakeStream (_fbbf ,_dg .NewRawEncoder ());if _dggd !=nil {return nil ,_dggd ;};_cdcf [string (_dagf )]=_cefa ; +*_bgbd =append (*_bgbd ,_cefa );};_abcb =append (_abcb ,_cefa );};return _abcb ,nil ;}; -// GetSamples converts the raw byte slice into samples which are stored in a uint32 bit array. -// Each sample is represented by BitsPerComponent consecutive bits in the raw data. -// NOTE: The method resamples the image byte data before returning the result and -// this could lead to high memory usage, especially on large images. It should -// be avoided, when possible. It is recommended to access the Data field of the -// image directly or use the ColorAt method to extract individual pixels. -func (_eadfe *Image )GetSamples ()[]uint32 {_gcgga :=_aae .ResampleBytes (_eadfe .Data ,int (_eadfe .BitsPerComponent ));if _eadfe .BitsPerComponent < 8{_gcgga =_eadfe .samplesTrimPadding (_gcgga );};_abfabg :=int (_eadfe .Width )*int (_eadfe .Height )*_eadfe .ColorComponents ; -if len (_gcgga )< _abfabg {_adg .Log .Debug ("\u0045r\u0072\u006fr\u003a\u0020\u0054o\u006f\u0020\u0066\u0065\u0077\u0020\u0073a\u006d\u0070\u006c\u0065\u0073\u0020(\u0067\u006f\u0074\u0020\u0025\u0064\u002c\u0020\u0065\u0078\u0070e\u0063\u0074\u0069\u006e\u0067\u0020\u0025\u0064\u0029",len (_gcgga ),_abfabg ); -return _gcgga ;}else if len (_gcgga )> _abfabg {_adg .Log .Debug ("\u0045r\u0072\u006fr\u003a\u0020\u0054o\u006f\u0020\u006d\u0061\u006e\u0079\u0020s\u0061\u006d\u0070\u006c\u0065\u0073 \u0028\u0067\u006f\u0074\u0020\u0025\u0064\u002c\u0020\u0065\u0078p\u0065\u0063\u0074\u0069\u006e\u0067\u0020\u0025\u0064",len (_gcgga ),_abfabg ); -_gcgga =_gcgga [:_abfabg ];};return _gcgga ;};var _ pdfFont =(*pdfFontSimple )(nil ); +// PdfActionImportData represents a importData action. +type PdfActionImportData struct{*PdfAction ;F *PdfFilespec ;};func _acbbg (_acdgd *_dg .PdfObjectDictionary ){_cefb ,_gedg :=_dg .GetArray (_acdgd .Get ("\u0057\u0069\u0064\u0074\u0068\u0073"));_dbcca ,_edga :=_dg .GetIntVal (_acdgd .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r")); +_dgfe ,_edfgd :=_dg .GetIntVal (_acdgd .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072"));if _gedg &&_edga &&_edfgd {_fceaa :=_cefb .Len ();if _fceaa !=_dgfe -_dbcca +1{_ag .Log .Debug ("\u0055\u006e\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0057\u0069\u0064\u0074\u0068\u0073\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0025\u0076\u002c\u0020\u004c\u0061\u0073t\u0043\u0068\u0061\u0072\u003a\u0020\u0025\u0076",_fceaa ,_dgfe ); +_fffe :=_dg .PdfObjectInteger (_dbcca +_fceaa -1);_acdgd .Set ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072",&_fffe );};};}; -// GetPageAsIndirectObject returns the page as a dictionary within an PdfIndirectObject. -func (_babdb *PdfPage )GetPageAsIndirectObject ()*_aff .PdfIndirectObject {return _babdb ._fage }; +// PdfColorspaceDeviceRGB represents an RGB colorspace. +type PdfColorspaceDeviceRGB struct{}; -// SetPdfCreator sets the Creator attribute of the output PDF. -func SetPdfCreator (creator string ){_aebda .Lock ();defer _aebda .Unlock ();_gddfe =creator }; +// RepairAcroForm attempts to rebuild the AcroForm fields using the widget +// annotations present in the document pages. Pass nil for the opts parameter +// in order to use the default options. +// NOTE: Currently, the opts parameter is declared in order to enable adding +// future options, but passing nil will always result in the default options +// being used. +func (_aecd *PdfReader )RepairAcroForm (opts *AcroFormRepairOptions )error {var _aceg []*PdfField ;_ddeeb :=map[*_dg .PdfIndirectObject ]struct{}{};for _ ,_fbbbd :=range _aecd .PageList {_eabbe ,_abebe :=_fbbbd .GetAnnotations ();if _abebe !=nil {return _abebe ; +};for _ ,_cdcfg :=range _eabbe {var _ebcbb *PdfField ;switch _fdced :=_cdcfg .GetContext ().(type ){case *PdfAnnotationWidget :if _fdced ._cgg !=nil {_ebcbb =_fdced ._cgg ;break ;};if _gaege ,_eedgg :=_dg .GetIndirect (_fdced .Parent );_eedgg {_ebcbb ,_abebe =_aecd .newPdfFieldFromIndirectObject (_gaege ,nil ); +if _abebe ==nil {break ;};_ag .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0070\u0061\u0072s\u0065\u0020\u0066\u006f\u0072\u006d\u0020\u0066\u0069\u0065ld\u0020\u0025\u002bv\u003a \u0025\u0076",_gaege ,_abebe ); +};if _fdced ._cdf !=nil {_ebcbb ,_abebe =_aecd .newPdfFieldFromIndirectObject (_fdced ._cdf ,nil );if _abebe ==nil {break ;};_ag .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0070\u0061\u0072s\u0065\u0020\u0066\u006f\u0072\u006d\u0020\u0066\u0069\u0065ld\u0020\u0025\u002bv\u003a \u0025\u0076",_fdced ._cdf ,_abebe ); +};};if _ebcbb ==nil {continue ;};if _ ,_cagce :=_ddeeb [_ebcbb ._egce ];_cagce {continue ;};_ddeeb [_ebcbb ._egce ]=struct{}{};_aceg =append (_aceg ,_ebcbb );};};if len (_aceg )==0{return nil ;};if _aecd .AcroForm ==nil {_aecd .AcroForm =NewPdfAcroForm (); +};_aecd .AcroForm .Fields =&_aceg ;return nil ;};func (_debeg *PdfReader )buildPageList (_gdfea *_dg .PdfIndirectObject ,_eegf *_dg .PdfIndirectObject ,_bcaa map[_dg .PdfObject ]struct{})error {if _gdfea ==nil {return nil ;};if _ ,_cefgb :=_bcaa [_gdfea ]; +_cefgb {_ag .Log .Debug ("\u0043\u0079\u0063l\u0069\u0063\u0020\u0072e\u0063\u0075\u0072\u0073\u0069\u006f\u006e,\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0028\u0025\u0076\u0029",_gdfea .ObjectNumber );return nil ;};_bcaa [_gdfea ]=struct{}{}; +_fcefd ,_dgbdf :=_gdfea .PdfObject .(*_dg .PdfObjectDictionary );if !_dgbdf {return _bf .New ("n\u006f\u0064\u0065\u0020no\u0074 \u0061\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079");};_eabbae ,_dgbdf :=(*_fcefd ).Get ("\u0054\u0079\u0070\u0065").(*_dg .PdfObjectName ); +if !_dgbdf {if _fcefd .Get ("\u004b\u0069\u0064\u0073")==nil {return _bf .New ("\u006e\u006f\u0064\u0065 \u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0054\u0079p\u0065 \u0028\u0052\u0065\u0071\u0075\u0069\u0072e\u0064\u0029");};_ag .Log .Debug ("ER\u0052\u004fR\u003a\u0020\u006e\u006f\u0064\u0065\u0020\u006d\u0069s\u0073\u0069\u006e\u0067\u0020\u0054\u0079\u0070\u0065\u002c\u0020\u0062\u0075\u0074\u0020\u0068\u0061\u0073\u0020\u004b\u0069\u0064\u0073\u002e\u0020\u0041\u0073\u0073u\u006di\u006e\u0067\u0020\u0050\u0061\u0067\u0065\u0073 \u006eo\u0064\u0065."); +_eabbae =_dg .MakeName ("\u0050\u0061\u0067e\u0073");_fcefd .Set ("\u0054\u0079\u0070\u0065",_eabbae );};_ag .Log .Trace ("\u0062\u0075\u0069\u006c\u0064\u0050a\u0067\u0065\u004c\u0069\u0073\u0074\u0020\u006e\u006f\u0064\u0065\u0020\u0074y\u0070\u0065\u003a\u0020\u0025\u0073\u0020(\u0025\u002b\u0076\u0029",*_eabbae ,_gdfea ); +if *_eabbae =="\u0050\u0061\u0067\u0065"{_caaaa ,_edbgf :=_debeg .newPdfPageFromDict (_fcefd );if _edbgf !=nil {return _edbgf ;};_caaaa .setContainer (_gdfea );if _eegf !=nil {_fcefd .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_eegf );};_debeg ._daddd =append (_debeg ._daddd ,_gdfea ); +_debeg .PageList =append (_debeg .PageList ,_caaaa );return nil ;};if *_eabbae !="\u0050\u0061\u0067e\u0073"{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u006f\u0066\u0020\u0063\u006fnt\u0065n\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067 \u006e\u006f\u006e\u0020\u0050\u0061\u0067\u0065\u002f\u0050\u0061\u0067\u0065\u0073\u0020\u006f\u0062j\u0065\u0063\u0074\u0021\u0020\u0028\u0025\u0073\u0029",_eabbae ); +return _bf .New ("\u0074\u0061\u0062\u006c\u0065\u0020o\u0066\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067 \u006e\u006f\u006e\u0020\u0050\u0061\u0067\u0065\u002f\u0050\u0061\u0067\u0065\u0073 \u006fb\u006a\u0065\u0063\u0074"); +};if _eegf !=nil {_fcefd .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_eegf );};if !_debeg ._dadcef {_cbfde :=_debeg .traverseObjectData (_gdfea );if _cbfde !=nil {return _cbfde ;};};_egfb ,_bcbbb :=_debeg ._baad .Resolve (_fcefd .Get ("\u004b\u0069\u0064\u0073")); +if _bcbbb !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u0061\u0069\u006c\u0065\u0064\u0020\u006c\u006f\u0061\u0064\u0069\u006eg\u0020\u004b\u0069\u0064\u0073\u0020\u006fb\u006a\u0065\u0063\u0074");return _bcbbb ;};var _gfeda *_dg .PdfObjectArray ; +_gfeda ,_dgbdf =_egfb .(*_dg .PdfObjectArray );if !_dgbdf {_abgfa ,_deaeb :=_egfb .(*_dg .PdfIndirectObject );if !_deaeb {return _bf .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u004b\u0069\u0064\u0073\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_gfeda ,_dgbdf =_abgfa .PdfObject .(*_dg .PdfObjectArray ); +if !_dgbdf {return _bf .New ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u004b\u0069\u0064\u0073\u0020\u0069\u006ed\u0069r\u0065\u0063\u0074\u0020\u006f\u0062\u006ae\u0063\u0074");};};_ag .Log .Trace ("\u004b\u0069\u0064\u0073\u003a\u0020\u0025\u0073",_gfeda ); +for _aacg ,_bcbea :=range _gfeda .Elements (){_egddb ,_cddd :=_dg .GetIndirect (_bcbea );if !_cddd {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074 \u006f\u0062\u006a\u0065\u0063t\u0020\u002d \u0028\u0025\u0073\u0029",_egddb ); +return _bf .New ("\u0070a\u0067\u0065\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0064\u0069r\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_gfeda .Set (_aacg ,_egddb );_bcbbb =_debeg .buildPageList (_egddb ,_gdfea ,_bcaa );if _bcbbb !=nil {return _bcbbb ; +};};return nil ;}; -// GetContainingPdfObject implements interface PdfModel. -func (_eff *PdfAction )GetContainingPdfObject ()_aff .PdfObject {return _eff ._df };func (_gceea *PdfWriter )writeTrailer (_caaf int ){_gceea .writeString ("\u0078\u0072\u0065\u0066\u000d\u000a");for _cedaa :=0;_cedaa <=_caaf ;{for ;_cedaa <=_caaf ;_cedaa ++{_fbabf ,_dbdda :=_gceea ._abebd [_cedaa ]; -if _dbdda &&(!_gceea ._ccbe ||_gceea ._ccbe &&(_fbabf .Type ==1&&_fbabf .Offset >=_gceea ._abced ||_fbabf .Type ==0)){break ;};};var _cfgabf int ;for _cfgabf =_cedaa +1;_cfgabf <=_caaf ;_cfgabf ++{_afdbae ,_ffae :=_gceea ._abebd [_cfgabf ];if _ffae &&(!_gceea ._ccbe ||_gceea ._ccbe &&(_afdbae .Type ==1&&_afdbae .Offset > _gceea ._abced )){continue ; -};break ;};_gebba :=_e .Sprintf ("\u0025d\u0020\u0025\u0064\u000d\u000a",_cedaa ,_cfgabf -_cedaa );_gceea .writeString (_gebba );for _ffab :=_cedaa ;_ffab < _cfgabf ;_ffab ++{_ccbeg :=_gceea ._abebd [_ffab ];switch _ccbeg .Type {case 0:_gebba =_e .Sprintf ("\u0025\u002e\u0031\u0030\u0064\u0020\u0025\u002e\u0035d\u0020\u0066\u000d\u000a",0,65535); -_gceea .writeString (_gebba );case 1:_gebba =_e .Sprintf ("\u0025\u002e\u0031\u0030\u0064\u0020\u0025\u002e\u0035d\u0020\u006e\u000d\u000a",_ccbeg .Offset ,0);_gceea .writeString (_gebba );};};_cedaa =_cfgabf +1;};_gggag :=_aff .MakeDict ();_gggag .Set ("\u0049\u006e\u0066\u006f",_gceea ._bacec ); -_gggag .Set ("\u0052\u006f\u006f\u0074",_gceea ._adefd );_gggag .Set ("\u0053\u0069\u007a\u0065",_aff .MakeInteger (int64 (_caaf +1)));if _gceea ._ccbe &&_gceea ._gecec > 0{_gggag .Set ("\u0050\u0072\u0065\u0076",_aff .MakeInteger (_gceea ._gecec ));}; -if _gceea ._fcgf !=nil {_gggag .Set ("\u0045n\u0063\u0072\u0079\u0070\u0074",_gceea ._fdedd );};if _gceea ._dfdcg ==nil &&_gceea ._bacb !=""&&_gceea ._aceag !=""{_gceea ._dfdcg =_aff .MakeArray (_aff .MakeHexString (_gceea ._bacb ),_aff .MakeHexString (_gceea ._aceag )); -};if _gceea ._dfdcg !=nil {_gggag .Set ("\u0049\u0044",_gceea ._dfdcg );_adg .Log .Trace ("\u0049d\u0073\u003a\u0020\u0025\u0073",_gceea ._dfdcg );};_gceea .writeString ("\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u000a");_gceea .writeString (_gggag .WriteString ()); -_gceea .writeString ("\u000a");};var ErrColorOutOfRange =_g .New ("\u0063o\u006co\u0072\u0020\u006f\u0075\u0074 \u006f\u0066 \u0072\u0061\u006e\u0067\u0065"); +// GetPatternByName gets the pattern specified by keyName. Returns nil if not existing. +// The bool flag indicated whether it was found or not. +func (_acdbb *PdfPageResources )GetPatternByName (keyName _dg .PdfObjectName )(*PdfPattern ,bool ){if _acdbb .Pattern ==nil {return nil ,false ;};_afbe ,_efedb :=_dg .TraceToDirectObject (_acdbb .Pattern ).(*_dg .PdfObjectDictionary );if !_efedb {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0061\u0074t\u0065\u0072\u006e\u0020\u0065\u006e\u0074r\u0079\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064i\u0063\u0074\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_acdbb .Pattern ); +return nil ,false ;};if _debbc :=_afbe .Get (keyName );_debbc !=nil {_cfgfe ,_ccedc :=_agea (_debbc );if _ccedc !=nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020f\u0061\u0069l\u0065\u0064\u0020\u0074\u006f\u0020\u006c\u006fa\u0064\u0020\u0070\u0064\u0066\u0020\u0070\u0061\u0074\u0074\u0065\u0072n\u003a\u0020\u0025\u0076",_ccedc ); +return nil ,false ;};return _cfgfe ,true ;};return nil ,false ;}; -// Optimizer is the interface that performs optimization of PDF object structure for output writing. -// -// Optimize receives a slice of input `objects`, performs optimization, including removing, replacing objects and -// output the optimized slice of objects. -type Optimizer interface{Optimize (_cggfa []_aff .PdfObject )([]_aff .PdfObject ,error );}; +// GetOCProperties returns the optional content properties PdfObject. +func (_dcaaf *PdfReader )GetOCProperties ()(_dg .PdfObject ,error ){_cbee :=_dcaaf ._gccfb ;_efee :=_cbee .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073");_efee =_dg .ResolveReference (_efee );if !_dcaaf ._dadcef {_gdebg :=_dcaaf .traverseObjectData (_efee ); +if _gdebg !=nil {return nil ,_gdebg ;};};return _efee ,nil ;}; -// ToPdfObject implements interface PdfModel. -func (_bebbg *PdfAnnotationSound )ToPdfObject ()_aff .PdfObject {_bebbg .PdfAnnotation .ToPdfObject ();_faca :=_bebbg ._ccfb ;_afag :=_faca .PdfObject .(*_aff .PdfObjectDictionary );_bebbg .PdfAnnotationMarkup .appendToPdfDictionary (_afag );_afag .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0053\u006f\u0075n\u0064")); -_afag .SetIfNotNil ("\u0053\u006f\u0075n\u0064",_bebbg .Sound );_afag .SetIfNotNil ("\u004e\u0061\u006d\u0065",_bebbg .Name );return _faca ;}; +// PdfFilespec represents a file specification which can either refer to an external or embedded file. +type PdfFilespec struct{Type _dg .PdfObject ;FS _dg .PdfObject ;F _dg .PdfObject ;UF _dg .PdfObject ;DOS _dg .PdfObject ;Mac _dg .PdfObject ;Unix _dg .PdfObject ;ID _dg .PdfObject ;V _dg .PdfObject ;EF _dg .PdfObject ;RF _dg .PdfObject ;Desc _dg .PdfObject ; +CI _dg .PdfObject ;_bcbe _dg .PdfObject ;}; -// NewPdfOutline returns an initialized PdfOutline. -func NewPdfOutline ()*PdfOutline {_fcecf :=&PdfOutline {_ecbb :_aff .MakeIndirectObject (_aff .MakeDict ())};_fcecf ._gecd =_fcecf ;return _fcecf ;}; +// PdfField contains the common attributes of a form field. The context object contains the specific field data +// which can represent a button, text, choice or signature. +// The PdfField is typically not used directly, but is encapsulated by the more specific field types such as +// PdfFieldButton etc (i.e. the context attribute). +type PdfField struct{_bdfg PdfModel ;_egce *_dg .PdfIndirectObject ;Parent *PdfField ;Annotations []*PdfAnnotationWidget ;Kids []*PdfField ;FT *_dg .PdfObjectName ;T *_dg .PdfObjectString ;TU *_dg .PdfObjectString ;TM *_dg .PdfObjectString ;Ff *_dg .PdfObjectInteger ; +V _dg .PdfObject ;DV _dg .PdfObject ;AA _dg .PdfObject ;VariableText *VariableText ;}; -// PdfColorspaceDeviceCMYK represents a CMYK32 colorspace. -type PdfColorspaceDeviceCMYK struct{};func (_gbeg *PdfReader )newPdfActionHideFromDict (_aade *_aff .PdfObjectDictionary )(*PdfActionHide ,error ){return &PdfActionHide {T :_aade .Get ("\u0054"),H :_aade .Get ("\u0048")},nil ;}; +// NewPdfFilespec returns an initialized generic PDF filespec model. +func NewPdfFilespec ()*PdfFilespec {_ggcef :=&PdfFilespec {};_ggcef ._bcbe =_dg .MakeIndirectObject (_dg .MakeDict ());return _ggcef ;}; -// SetXObjectImageByName adds the provided XObjectImage to the page resources. -// The added XObjectImage is identified by the specified name. -func (_efbbf *PdfPageResources )SetXObjectImageByName (keyName _aff .PdfObjectName ,ximg *XObjectImage )error {_fedcb :=ximg .ToPdfObject ().(*_aff .PdfObjectStream );_degce :=_efbbf .SetXObjectByName (keyName ,_fedcb );return _degce ;}; +// GetTrailer returns the PDF's trailer dictionary. +func (_agdf *PdfReader )GetTrailer ()(*_dg .PdfObjectDictionary ,error ){_aagf :=_agdf ._baad .GetTrailer ();if _aagf ==nil {return nil ,_bf .New ("\u0074r\u0061i\u006c\u0065\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};return _aagf ,nil ; +}; -// SetPdfKeywords sets the Keywords attribute of the output PDF. -func SetPdfKeywords (keywords string ){_aebda .Lock ();defer _aebda .Unlock ();_bbbade =keywords }; +// PdfWriter handles outputing PDF content. +type PdfWriter struct{_fadee *_dg .PdfIndirectObject ;_gbgb *_dg .PdfIndirectObject ;_fegdf map[_dg .PdfObject ]struct{};_agaba []_dg .PdfObject ;_fdbfa map[_dg .PdfObject ]struct{};_fcbf []*_dg .PdfIndirectObject ;_cedcg *PdfOutlineTreeNode ;_ecdf *_dg .PdfObjectDictionary ; +_cacg []_dg .PdfObject ;_efbfa *_dg .PdfIndirectObject ;_bddfa *_ba .Writer ;_fbbfc int64 ;_ffefc error ;_fadcg *_dg .PdfCrypt ;_fbfbf *_dg .PdfObjectDictionary ;_acdag *_dg .PdfIndirectObject ;_agbeg *_dg .PdfObjectArray ;_efacd _dg .Version ;_eaacb *bool ; +_ccgade map[_dg .PdfObject ][]*_dg .PdfObjectDictionary ;_geabe *PdfAcroForm ;_egeac Optimizer ;_afafd StandardApplier ;_fffge map[int ]crossReference ;_bgggdg int64 ;ObjNumOffset int ;_bbac bool ;_cfcdcb _dg .XrefTable ;_eege int64 ;_fafab int64 ;_ecabb map[_dg .PdfObject ]int64 ; +_cffaa map[_dg .PdfObject ]struct{};_gdfbg string ;_ceab []*PdfOutputIntent ;_affea bool ;_cedaf ,_ceaab string ;}; -// GetOCProperties returns the optional content properties PdfObject. -func (_dagfc *PdfReader )GetOCProperties ()(_aff .PdfObject ,error ){_dbad :=_dagfc ._dcadd ;_eefgd :=_dbad .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073");_eefgd =_aff .ResolveReference (_eefgd );if !_dagfc ._gfgg {_cffbd :=_dagfc .traverseObjectData (_eefgd ); -if _cffbd !=nil {return nil ,_cffbd ;};};return _eefgd ,nil ;}; +// PdfAnnotationInk represents Ink annotations. +// (Section 12.5.6.13). +type PdfAnnotationInk struct{*PdfAnnotation ;*PdfAnnotationMarkup ;InkList _dg .PdfObject ;BS _dg .PdfObject ;}; -// PdfAction represents an action in PDF (section 12.6 p. 412). -type PdfAction struct{_gfg PdfModel ;Type _aff .PdfObject ;S _aff .PdfObject ;Next _aff .PdfObject ;_df *_aff .PdfIndirectObject ;}; +// ColorToRGB converts a DeviceN color to an RGB color. +func (_bfabc *PdfColorspaceDeviceN )ColorToRGB (color PdfColor )(PdfColor ,error ){if _bfabc .AlternateSpace ==nil {return nil ,_bf .New ("\u0044\u0065\u0076\u0069\u0063\u0065N\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0020\u0073\u0070a\u0063\u0065\u0020\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064"); +};return _bfabc .AlternateSpace .ColorToRGB (color );}; -// ImageToRGB converts ICCBased colorspace image to RGB and returns the result. -func (_dbda *PdfColorspaceICCBased )ImageToRGB (img Image )(Image ,error ){if _dbda .Alternate ==nil {_adg .Log .Debug ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); -if _dbda .N ==1{_adg .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061y\u0020\u0028\u004e\u003d\u0031\u0029"); -_ggdf :=NewPdfColorspaceDeviceGray ();return _ggdf .ImageToRGB (img );}else if _dbda .N ==3{_adg .Log .Debug ("\u0049\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067 \u0061\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006eg\u0020\u0044\u0065\u0076\u0069\u0063e\u0052\u0047B\u0020\u0028N\u003d3\u0029"); -return img ,nil ;}else if _dbda .N ==4{_adg .Log .Debug ("\u0049\u0043\u0043\u0020\u0042a\u0073\u0065\u0064\u0020\u0063o\u006co\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061\u006c\u0074\u0065r\u006e\u0061\u0074\u0069\u0076\u0065\u0020\u002d\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059K\u0020\u0028\u004e\u003d\u0034\u0029"); -_ebdd :=NewPdfColorspaceDeviceCMYK ();return _ebdd .ImageToRGB (img );}else {return img ,_g .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); -};};_adg .Log .Trace ("\u0049\u0043\u0043 \u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006c\u0074\u0065\u0072\u006e\u0061t\u0069\u0076\u0065\u003a\u0020\u0025\u0023\u0076",_dbda ); -_gbfa ,_fgca :=_dbda .Alternate .ImageToRGB (img );_adg .Log .Trace ("I\u0043C\u0020\u0049\u006e\u0070\u0075\u0074\u0020\u0069m\u0061\u0067\u0065\u003a %\u002b\u0076",img );_adg .Log .Trace ("I\u0043\u0043\u0020\u004fut\u0070u\u0074\u0020\u0069\u006d\u0061g\u0065\u003a\u0020\u0025\u002b\u0076",_gbfa ); -return _gbfa ,_fgca ;};func _ggggfe (_adeeb _aff .PdfObject )(*_aff .PdfObjectDictionary ,*fontCommon ,error ){_ffeba :=&fontCommon {};if _feace ,_cccg :=_adeeb .(*_aff .PdfIndirectObject );_cccg {_ffeba ._acfg =_feace .ObjectNumber ;};_eaf ,_dcaag :=_aff .GetDict (_adeeb ); -if !_dcaag {_adg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0062\u0079\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_adeeb ); -return nil ,nil ,ErrFontNotSupported ;};_baec ,_dcaag :=_aff .GetNameVal (_eaf .Get ("\u0054\u0079\u0070\u0065"));if !_dcaag {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046o\u006e\u0074\u0020\u0049\u006ec\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u002e\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -return nil ,nil ,ErrRequiredAttributeMissing ;};if _baec !="\u0046\u006f\u006e\u0074"{_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0046\u006f\u006e\u0074\u0020\u0049\u006e\u0063\u006f\u006d\u0070\u0061t\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u002e\u0020\u0054\u0079\u0070\u0065\u003d\u0025\u0071\u002e\u0020\u0053\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0025\u0071.",_baec ,"\u0046\u006f\u006e\u0074"); -return nil ,nil ,_aff .ErrTypeError ;};_fbgee ,_dcaag :=_aff .GetNameVal (_eaf .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));if !_dcaag {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020F\u006f\u006e\u0074 \u0049\u006e\u0063o\u006d\u0070a\u0074\u0069\u0062\u0069\u006c\u0069t\u0079. \u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -return nil ,nil ,ErrRequiredAttributeMissing ;};_ffeba ._fbged =_fbgee ;_dacf ,_dcaag :=_aff .GetNameVal (_eaf .Get ("\u004e\u0061\u006d\u0065"));if _dcaag {_ffeba ._edebf =_dacf ;};_badbe :=_eaf .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e");if _badbe !=nil {_ffeba ._ccbfg =_aff .TraceToDirectObject (_badbe ); -_dgfb ,_cecdd :=_dgdfe (_ffeba ._ccbfg ,_ffeba );if _cecdd !=nil {return _eaf ,_ffeba ,_cecdd ;};_ffeba ._dcad =_dgfb ;}else if _fbgee =="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030"||_fbgee =="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{_bbfee ,_gefa :=_da .NewCIDSystemInfo (_eaf .Get ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f")); -if _gefa !=nil {return _eaf ,_ffeba ,_gefa ;};_cdbfb :=_e .Sprintf ("\u0025\u0073\u002d\u0025\u0073\u002d\u0055\u0043\u0053\u0032",_bbfee .Registry ,_bbfee .Ordering );if _da .IsPredefinedCMap (_cdbfb ){_ffeba ._dcad ,_gefa =_da .LoadPredefinedCMap (_cdbfb ); -if _gefa !=nil {_adg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020l\u006f\u0061\u0064\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0043\u004d\u0061\u0070\u0020\u0025\u0073\u003a\u0020\u0025\u0076",_cdbfb ,_gefa ); -};};};_ffgba :=_eaf .Get ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072");if _ffgba !=nil {_cccbf ,_gdcdec :=_cgaeg (_ffgba );if _gdcdec !=nil {_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0042\u0061\u0064\u0020\u0066\u006f\u006et\u0020d\u0065s\u0063r\u0069\u0070\u0074\u006f\u0072\u002e\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_gdcdec ); -return _eaf ,_ffeba ,_gdcdec ;};_ffeba ._ggca =_cccbf ;};if _fbgee !="\u0054\u0079\u0070e\u0033"{_eagg ,_afaag :=_aff .GetNameVal (_eaf .Get ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074"));if !_afaag {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0046\u006f\u006et\u0020\u0049\u006ec\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069t\u0079\u002e\u0020\u0042\u0061se\u0046\u006f\u006e\u0074\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -return _eaf ,_ffeba ,ErrRequiredAttributeMissing ;};_ffeba ._abed =_eagg ;};return _eaf ,_ffeba ,nil ;}; +// Insert adds a top level outline item in the outline, +// at the specified index. +func (_acaa *Outline )Insert (index uint ,item *OutlineItem ){_cbgf :=uint (len (_acaa .Entries ));if index > _cbgf {index =_cbgf ;};_acaa .Entries =append (_acaa .Entries [:index ],append ([]*OutlineItem {item },_acaa .Entries [index :]...)...);}; -// UpdateObject marks `obj` as updated and to be included in the following revision. -func (_adgc *PdfAppender )UpdateObject (obj _aff .PdfObject ){_adgc .replaceObject (obj ,obj );if _ ,_bgdf :=_adgc ._deeb [obj ];!_bgdf {_adgc ._aggc =append (_adgc ._aggc ,obj );_adgc ._deeb [obj ]=struct{}{};};}; +// NewXObjectImage returns a new XObjectImage. +func NewXObjectImage ()*XObjectImage {_cebga :=&XObjectImage {};_bbega :=&_dg .PdfObjectStream {};_bbega .PdfObjectDictionary =_dg .MakeDict ();_cebga ._abfb =_bbega ;return _cebga ;};func _ggdcc (_fefe *_dg .PdfObjectDictionary )(*PdfShadingType1 ,error ){_fcedb :=PdfShadingType1 {}; +if _ageg :=_fefe .Get ("\u0044\u006f\u006d\u0061\u0069\u006e");_ageg !=nil {_ageg =_dg .TraceToDirectObject (_ageg );_cedge ,_fbbge :=_ageg .(*_dg .PdfObjectArray );if !_fbbge {_ag .Log .Debug ("\u0044\u006f\u006d\u0061i\u006e\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_ageg ); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_fcedb .Domain =_cedge ;};if _bfdeg :=_fefe .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");_bfdeg !=nil {_bfdeg =_dg .TraceToDirectObject (_bfdeg ); +_ffce ,_cceec :=_bfdeg .(*_dg .PdfObjectArray );if !_cceec {_ag .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_bfdeg );return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +};_fcedb .Matrix =_ffce ;};_gecde :=_fefe .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");if _gecde ==nil {_ag .Log .Debug ("\u0052\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0020\u0046\u0075\u006ec\u0074\u0069\u006f\u006e"); +return nil ,ErrRequiredAttributeMissing ;};_fcedb .Function =[]PdfFunction {};if _dfag ,_cgfgb :=_gecde .(*_dg .PdfObjectArray );_cgfgb {for _ ,_ebebbc :=range _dfag .Elements (){_cbfbe ,_fbgc :=_agec (_ebebbc );if _fbgc !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_fbgc ); +return nil ,_fbgc ;};_fcedb .Function =append (_fcedb .Function ,_cbfbe );};}else {_bcdc ,_dgfaa :=_agec (_gecde );if _dgfaa !=nil {_ag .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_dgfaa ); +return nil ,_dgfaa ;};_fcedb .Function =append (_fcedb .Function ,_bcdc );};return &_fcedb ,nil ;}; -// GetAlphabet returns a map of the runes in `text` and their frequencies. -func GetAlphabet (text string )map[rune ]int {_gaee :=map[rune ]int {};for _ ,_agdg :=range text {_gaee [_agdg ]++;};return _gaee ;}; +// PdfAnnotationPrinterMark represents PrinterMark annotations. +// (Section 12.5.6.20). +type PdfAnnotationPrinterMark struct{*PdfAnnotation ;MN _dg .PdfObject ;}; -// PdfShading represents a shading dictionary. There are 7 types of shading, -// indicatedby the shading type variable: -// 1: Function-based shading. -// 2: Axial shading. -// 3: Radial shading. -// 4: Free-form Gouraud-shaded triangle mesh. -// 5: Lattice-form Gouraud-shaded triangle mesh. -// 6: Coons patch mesh. -// 7: Tensor-product patch mesh. -// types 4-7 are contained in a stream object, where the dictionary is given by the stream dictionary. -type PdfShading struct{ShadingType *_aff .PdfObjectInteger ;ColorSpace PdfColorspace ;Background *_aff .PdfObjectArray ;BBox *PdfRectangle ;AntiAlias *_aff .PdfObjectBool ;_fcbfb PdfModel ;_bdacg _aff .PdfObject ;};const (ActionTypeGoTo PdfActionType ="\u0047\u006f\u0054\u006f"; -ActionTypeGoTo3DView PdfActionType ="\u0047\u006f\u0054\u006f\u0033\u0044\u0056\u0069\u0065\u0077";ActionTypeGoToE PdfActionType ="\u0047\u006f\u0054o\u0045";ActionTypeGoToR PdfActionType ="\u0047\u006f\u0054o\u0052";ActionTypeHide PdfActionType ="\u0048\u0069\u0064\u0065"; -ActionTypeImportData PdfActionType ="\u0049\u006d\u0070\u006f\u0072\u0074\u0044\u0061\u0074\u0061";ActionTypeJavaScript PdfActionType ="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074";ActionTypeLaunch PdfActionType ="\u004c\u0061\u0075\u006e\u0063\u0068"; -ActionTypeMovie PdfActionType ="\u004d\u006f\u0076i\u0065";ActionTypeNamed PdfActionType ="\u004e\u0061\u006de\u0064";ActionTypeRendition PdfActionType ="\u0052e\u006e\u0064\u0069\u0074\u0069\u006fn";ActionTypeResetForm PdfActionType ="\u0052e\u0073\u0065\u0074\u0046\u006f\u0072m"; -ActionTypeSetOCGState PdfActionType ="S\u0065\u0074\u004f\u0043\u0047\u0053\u0074\u0061\u0074\u0065";ActionTypeSound PdfActionType ="\u0053\u006f\u0075n\u0064";ActionTypeSubmitForm PdfActionType ="\u0053\u0075\u0062\u006d\u0069\u0074\u0046\u006f\u0072\u006d"; -ActionTypeThread PdfActionType ="\u0054\u0068\u0072\u0065\u0061\u0064";ActionTypeTrans PdfActionType ="\u0054\u0072\u0061n\u0073";ActionTypeURI PdfActionType ="\u0055\u0052\u0049";); +// PdfColorDeviceRGB represents a color in DeviceRGB colorspace with R, G, B components, where component is +// defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. +type PdfColorDeviceRGB [3]float64 ; -// ToPdfObject converts the pdfCIDFontType2 to a PDF representation. -func (_bfbf *pdfCIDFontType2 )ToPdfObject ()_aff .PdfObject {if _bfbf ._eaacd ==nil {_bfbf ._eaacd =&_aff .PdfIndirectObject {};};_acgaf :=_bfbf .baseFields ().asPdfObjectDictionary ("\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"); -_bfbf ._eaacd .PdfObject =_acgaf ;if _bfbf .CIDSystemInfo !=nil {_acgaf .Set ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f",_bfbf .CIDSystemInfo );};if _bfbf .DW !=nil {_acgaf .Set ("\u0044\u0057",_bfbf .DW );};if _bfbf .DW2 !=nil {_acgaf .Set ("\u0044\u0057\u0032",_bfbf .DW2 ); -};if _bfbf .W !=nil {_acgaf .Set ("\u0057",_bfbf .W );};if _bfbf .W2 !=nil {_acgaf .Set ("\u0057\u0032",_bfbf .W2 );};if _bfbf .CIDToGIDMap !=nil {_acgaf .Set ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070",_bfbf .CIDToGIDMap );};return _bfbf ._eaacd ; +// PdfAnnotationStamp represents Stamp annotations. +// (Section 12.5.6.12). +type PdfAnnotationStamp struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Name _dg .PdfObject ;};func (_gadcg *PdfReader )resolveReference (_efdab *_dg .PdfObjectReference )(_dg .PdfObject ,bool ,error ){_gfcbd ,_efdabd :=_gadcg ._baad .ObjCache [int (_efdab .ObjectNumber )]; +if !_efdabd {_ag .Log .Trace ("R\u0065\u0061\u0064\u0065r \u004co\u006f\u006b\u0075\u0070\u0020r\u0065\u0066\u003a\u0020\u0025\u0073",_efdab );_fbaee ,_gfgbc :=_gadcg ._baad .LookupByReference (*_efdab );if _gfgbc !=nil {return nil ,false ,_gfgbc ;};_gadcg ._baad .ObjCache [int (_efdab .ObjectNumber )]=_fbaee ; +return _fbaee ,false ,nil ;};return _gfcbd ,true ,nil ;};func _eece (_abbed StdFontName )(pdfFontSimple ,error ){_beda ,_fbef :=_bbg .NewStdFontByName (_abbed );if !_fbef {return pdfFontSimple {},ErrFontNotSupported ;};_dggda :=_gecgd (_beda );return _dggda ,nil ; }; -// NewPdfActionJavaScript returns a new "javaScript" action. -func NewPdfActionJavaScript ()*PdfActionJavaScript {_bbbf :=NewPdfAction ();_dfgc :=&PdfActionJavaScript {};_dfgc .PdfAction =_bbbf ;_bbbf .SetContext (_dfgc );return _dfgc ;}; +// NewStandard14FontMustCompile returns the standard 14 font named `basefont` as a *PdfFont. +// If `basefont` is one of the 14 Standard14Font values defined above then NewStandard14FontMustCompile +// is guaranteed to succeed. +func NewStandard14FontMustCompile (basefont StdFontName )*PdfFont {_fggd ,_adegg :=NewStandard14Font (basefont );if _adegg !=nil {panic (_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0053\u0074\u0061n\u0064\u0061\u0072\u0064\u0031\u0034\u0046\u006f\u006e\u0074 \u0025\u0023\u0071",basefont )); +};return _fggd ;};func _aedcd ()string {_fgefgf .Lock ();defer _fgefgf .Unlock ();return _adgf }; -// NewPdfTransformParamsDocMDP create a PdfTransformParamsDocMDP with the specific permissions. -func NewPdfTransformParamsDocMDP (permission _gf .DocMDPPermission )*PdfTransformParamsDocMDP {return &PdfTransformParamsDocMDP {Type :_aff .MakeName ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"),P :_aff .MakeInteger (int64 (permission )),V :_aff .MakeName ("\u0031\u002e\u0032")}; -};func (_daee *PdfColorspaceDeviceGray )String ()string {return "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079";}; +// PdfAnnotationText represents Text annotations. +// (Section 12.5.6.4 p. 402). +type PdfAnnotationText struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Open _dg .PdfObject ;Name _dg .PdfObject ;State _dg .PdfObject ;StateModel _dg .PdfObject ;};func (_dceab *PdfWriter )updateObjectNumbers (){_fedee :=_dceab .ObjNumOffset ;_dgbb :=0;for _ ,_fdggd :=range _dceab ._agaba {_aeged :=int64 (_dgbb +1+_fedee ); +_bbaaf :=true ;if _dceab ._bbac {if _ecfg ,_cgccc :=_dceab ._ecabb [_fdggd ];_cgccc {_aeged =_ecfg ;_bbaaf =false ;};};switch _gdfbf :=_fdggd .(type ){case *_dg .PdfIndirectObject :_gdfbf .ObjectNumber =_aeged ;_gdfbf .GenerationNumber =0;case *_dg .PdfObjectStream :_gdfbf .ObjectNumber =_aeged ; +_gdfbf .GenerationNumber =0;case *_dg .PdfObjectStreams :_gdfbf .ObjectNumber =_aeged ;_gdfbf .GenerationNumber =0;default:_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0055\u006e\u006b\u006e\u006f\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u0020%\u0054\u0020\u002d\u0020\u0073\u006b\u0069p\u0070\u0069\u006e\u0067",_gdfbf ); +continue ;};if _bbaaf {_dgbb ++;};};_cbcbd :=func (_fbbdg _dg .PdfObject )int64 {switch _aecbfa :=_fbbdg .(type ){case *_dg .PdfIndirectObject :return _aecbfa .ObjectNumber ;case *_dg .PdfObjectStream :return _aecbfa .ObjectNumber ;case *_dg .PdfObjectStreams :return _aecbfa .ObjectNumber ; +};return 0;};_gc .SliceStable (_dceab ._agaba ,func (_gcecc ,_defbc int )bool {return _cbcbd (_dceab ._agaba [_gcecc ])< _cbcbd (_dceab ._agaba [_defbc ])});}; -// GetContext returns a reference to the subshading entry as represented by PdfShadingType1-7. -func (_cbace *PdfShading )GetContext ()PdfModel {return _cbace ._fcbfb }; +// IsRadio returns true if the button field represents a radio button, false otherwise. +func (_ccefe *PdfFieldButton )IsRadio ()bool {return _ccefe .GetType ()==ButtonTypeRadio }; -// PdfFunctionType4 is a Postscript calculator functions. -type PdfFunctionType4 struct{Domain []float64 ;Range []float64 ;Program *_bf .PSProgram ;_gdbae *_bf .PSExecutor ;_addecb []byte ;_edgbg *_aff .PdfObjectStream ;};func _baef (_bbaf _aff .PdfObject )(*PdfColorspaceSpecialSeparation ,error ){_cbabc :=NewPdfColorspaceSpecialSeparation (); -if _begc ,_gbfc :=_bbaf .(*_aff .PdfIndirectObject );_gbfc {_cbabc ._dede =_begc ;};_bbaf =_aff .TraceToDirectObject (_bbaf );_bdgf ,_fgfac :=_bbaf .(*_aff .PdfObjectArray );if !_fgfac {return nil ,_e .Errorf ("\u0073\u0065p\u0061\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0043\u0053\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0062je\u0063\u0074"); -};if _bdgf .Len ()!=4{return nil ,_e .Errorf ("\u0073\u0065p\u0061\u0072\u0061\u0074i\u006f\u006e \u0043\u0053\u003a\u0020\u0049\u006e\u0063\u006fr\u0072\u0065\u0063\u0074\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006ce\u006e\u0067\u0074\u0068");};_bbaf =_bdgf .Get (0); -_dgee ,_fgfac :=_bbaf .(*_aff .PdfObjectName );if !_fgfac {return nil ,_e .Errorf ("\u0073\u0065\u0070ar\u0061\u0074\u0069\u006f\u006e\u0020\u0043\u0053\u003a \u0069n\u0076a\u006ci\u0064\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020\u006e\u0061\u006d\u0065"); -};if *_dgee !="\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e"{return nil ,_e .Errorf ("\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0043\u0053\u003a\u0020w\u0072o\u006e\u0067\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020\u006e\u0061\u006d\u0065"); -};_bbaf =_bdgf .Get (1);_dgee ,_fgfac =_bbaf .(*_aff .PdfObjectName );if !_fgfac {return nil ,_e .Errorf ("\u0073\u0065pa\u0072\u0061\u0074i\u006f\u006e\u0020\u0043S: \u0049nv\u0061\u006c\u0069\u0064\u0020\u0063\u006flo\u0072\u0061\u006e\u0074\u0020\u006e\u0061m\u0065"); -};_cbabc .ColorantName =_dgee ;_bbaf =_bdgf .Get (2);_bgeg ,_cfcga :=NewPdfColorspaceFromPdfObject (_bbaf );if _cfcga !=nil {return nil ,_cfcga ;};_cbabc .AlternateSpace =_bgeg ;_bbafa ,_cfcga :=_fdfeg (_bdgf .Get (3));if _cfcga !=nil {return nil ,_cfcga ; -};_cbabc .TintTransform =_bbafa ;return _cbabc ,nil ;}; +// NewOutlineBookmark returns an initialized PdfOutlineItem for a given bookmark title and page. +func NewOutlineBookmark (title string ,page *_dg .PdfIndirectObject )*PdfOutlineItem {_abade :=PdfOutlineItem {};_abade ._baddf =&_abade ;_abade .Title =_dg .MakeString (title );_cedg :=_dg .MakeArray ();_cedg .Append (page );_cedg .Append (_dg .MakeName ("\u0046\u0069\u0074")); +_abade .Dest =_cedg ;return &_abade ;};func (_ecda *PdfReader )loadAnnotations (_dabfe _dg .PdfObject )([]*PdfAnnotation ,error ){_bgccf ,_gfabe :=_dg .GetArray (_dabfe );if !_gfabe {return nil ,_b .Errorf ("\u0041\u006e\u006e\u006fts\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); +};var _eaee []*PdfAnnotation ;for _ ,_beagg :=range _bgccf .Elements (){_beagg =_dg .ResolveReference (_beagg );if _ ,_addc :=_beagg .(*_dg .PdfObjectNull );_addc {continue ;};_fabf ,_bdebb :=_beagg .(*_dg .PdfObjectDictionary );_bbbcd ,_ffagg :=_beagg .(*_dg .PdfIndirectObject ); +if _bdebb {_bbbcd =&_dg .PdfIndirectObject {};_bbbcd .PdfObject =_fabf ;}else {if !_ffagg {return nil ,_b .Errorf ("\u0061\u006eno\u0074\u0061\u0074i\u006f\u006e\u0020\u006eot \u0069n \u0061\u006e\u0020\u0069\u006e\u0064\u0069re\u0063\u0074\u0020\u006f\u0062\u006a\u0065c\u0074"); +};};_agcfb ,_cegb :=_ecda .newPdfAnnotationFromIndirectObject (_bbbcd );if _cegb !=nil {return nil ,_cegb ;};switch _accf :=_agcfb .GetContext ().(type ){case *PdfAnnotationWidget :for _ ,_gfdcaa :=range _ecda .AcroForm .AllFields (){if _gfdcaa ._egce ==_accf .Parent {_accf ._cgg =_gfdcaa ; +break ;};};};if _agcfb !=nil {_eaee =append (_eaee ,_agcfb );};};return _eaee ,nil ;}; -// SetContext sets the sub pattern (context). Either PdfTilingPattern or PdfShadingPattern. -func (_ffadb *PdfPattern )SetContext (ctx PdfModel ){_ffadb ._abbe =ctx }; +// GetContainingPdfObject returns the page as a dictionary within an PdfIndirectObject. +func (_befda *PdfPage )GetContainingPdfObject ()_dg .PdfObject {return _befda ._cggbe }; -// PdfShadingType4 is a Free-form Gouraud-shaded triangle mesh. -type PdfShadingType4 struct{*PdfShading ;BitsPerCoordinate *_aff .PdfObjectInteger ;BitsPerComponent *_aff .PdfObjectInteger ;BitsPerFlag *_aff .PdfObjectInteger ;Decode *_aff .PdfObjectArray ;Function []PdfFunction ;}; +// GetDescent returns the Descent of the font `descriptor`. +func (_ffaca *PdfFontDescriptor )GetDescent ()(float64 ,error ){return _dg .GetNumberAsFloat (_ffaca .Descent );}; -// PdfFieldButton represents a button field which includes push buttons, checkboxes, and radio buttons. -type PdfFieldButton struct{*PdfField ;Opt *_aff .PdfObjectArray ;_agbe *Image ;};func (_eecff fontCommon )fontFlags ()int {if _eecff ._ggca ==nil {return 0;};return _eecff ._ggca ._cdbb ;};func (_ebgaf *PdfReader )newPdfAnnotationRedactFromDict (_dbaf *_aff .PdfObjectDictionary )(*PdfAnnotationRedact ,error ){_fcda :=PdfAnnotationRedact {}; -_dddg ,_edd :=_ebgaf .newPdfAnnotationMarkupFromDict (_dbaf );if _edd !=nil {return nil ,_edd ;};_fcda .PdfAnnotationMarkup =_dddg ;_fcda .QuadPoints =_dbaf .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");_fcda .IC =_dbaf .Get ("\u0049\u0043"); -_fcda .RO =_dbaf .Get ("\u0052\u004f");_fcda .OverlayText =_dbaf .Get ("O\u0076\u0065\u0072\u006c\u0061\u0079\u0054\u0065\u0078\u0074");_fcda .Repeat =_dbaf .Get ("\u0052\u0065\u0070\u0065\u0061\u0074");_fcda .DA =_dbaf .Get ("\u0044\u0041");_fcda .Q =_dbaf .Get ("\u0051"); -return &_fcda ,nil ;}; +// ImageToRGB converts CalRGB colorspace image to RGB and returns the result. +func (_cdgg *PdfColorspaceCalRGB )ImageToRGB (img Image )(Image ,error ){_aeeg :=_fcd .NewReader (img .getBase ());_acge :=_fc .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),3,nil ,nil ,nil );_dcgc :=_fcd .NewWriter (_acge ); +_beae :=_cg .Pow (2,float64 (img .BitsPerComponent ))-1;_gacg :=make ([]uint32 ,3);var (_gdefa error ;_beff ,_ggbe ,_fgba ,_ccdeg ,_eaec ,_dddb float64 ;);for {_gdefa =_aeeg .ReadSamples (_gacg );if _gdefa ==_cf .EOF {break ;}else if _gdefa !=nil {return img ,_gdefa ; +};_beff =float64 (_gacg [0])/_beae ;_ggbe =float64 (_gacg [1])/_beae ;_fgba =float64 (_gacg [2])/_beae ;_ccdeg =_cdgg .Matrix [0]*_cg .Pow (_beff ,_cdgg .Gamma [0])+_cdgg .Matrix [3]*_cg .Pow (_ggbe ,_cdgg .Gamma [1])+_cdgg .Matrix [6]*_cg .Pow (_fgba ,_cdgg .Gamma [2]); +_eaec =_cdgg .Matrix [1]*_cg .Pow (_beff ,_cdgg .Gamma [0])+_cdgg .Matrix [4]*_cg .Pow (_ggbe ,_cdgg .Gamma [1])+_cdgg .Matrix [7]*_cg .Pow (_fgba ,_cdgg .Gamma [2]);_dddb =_cdgg .Matrix [2]*_cg .Pow (_beff ,_cdgg .Gamma [0])+_cdgg .Matrix [5]*_cg .Pow (_ggbe ,_cdgg .Gamma [1])+_cdgg .Matrix [8]*_cg .Pow (_fgba ,_cdgg .Gamma [2]); +_beff =3.240479*_ccdeg +-1.537150*_eaec +-0.498535*_dddb ;_ggbe =-0.969256*_ccdeg +1.875992*_eaec +0.041556*_dddb ;_fgba =0.055648*_ccdeg +-0.204043*_eaec +1.057311*_dddb ;_beff =_cg .Min (_cg .Max (_beff ,0),1.0);_ggbe =_cg .Min (_cg .Max (_ggbe ,0),1.0); +_fgba =_cg .Min (_cg .Max (_fgba ,0),1.0);_gacg [0]=uint32 (_beff *_beae );_gacg [1]=uint32 (_ggbe *_beae );_gacg [2]=uint32 (_fgba *_beae );if _gdefa =_dcgc .WriteSamples (_gacg );_gdefa !=nil {return img ,_gdefa ;};};return _edcf (&_acge ),nil ;};var _ pdfFont =(*pdfCIDFontType2 )(nil ); +func (_fgfgg *PdfWriter )writeOutputIntents ()error {if len (_fgfgg ._ceab )==0{return nil ;};_cbdgg :=make ([]_dg .PdfObject ,len (_fgfgg ._ceab ));for _dbage ,_fccece :=range _fgfgg ._ceab {_afecd :=_fccece .ToPdfObject ();_cbdgg [_dbage ]=_dg .MakeIndirectObject (_afecd ); +};_dabfec :=_dg .MakeIndirectObject (_dg .MakeArray (_cbdgg ...));_fgfgg ._ecdf .Set ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073",_dabfec );if _bbccg :=_fgfgg .addObjects (_dabfec );_bbccg !=nil {return _bbccg ;};return nil ; +}; -// ToPdfObject returns the button field dictionary within an indirect object. -func (_fbbff *PdfFieldButton )ToPdfObject ()_aff .PdfObject {_fbbff .PdfField .ToPdfObject ();_egcfd :=_fbbff ._dfbfd ;_bfgf :=_egcfd .PdfObject .(*_aff .PdfObjectDictionary );_bfgf .Set ("\u0046\u0054",_aff .MakeName ("\u0042\u0074\u006e"));if _fbbff .Opt !=nil {_bfgf .Set ("\u004f\u0070\u0074",_fbbff .Opt ); -};return _egcfd ;};func _bgabd ()string {_aebda .Lock ();defer _aebda .Unlock ();return _eddc }; +// Add appends a top level outline item to the outline. +func (_caecd *Outline )Add (item *OutlineItem ){_caecd .Entries =append (_caecd .Entries ,item )}; -// PdfAcroForm represents the AcroForm dictionary used for representation of form data in PDF. -type PdfAcroForm struct{Fields *[]*PdfField ;NeedAppearances *_aff .PdfObjectBool ;SigFlags *_aff .PdfObjectInteger ;CO *_aff .PdfObjectArray ;DR *PdfPageResources ;DA *_aff .PdfObjectString ;Q *_aff .PdfObjectInteger ;XFA _aff .PdfObject ; +// ToPdfObject implements interface PdfModel. +func (_cab *PdfActionURI )ToPdfObject ()_dg .PdfObject {_cab .PdfAction .ToPdfObject ();_fad :=_cab ._cbd ;_bda :=_fad .PdfObject .(*_dg .PdfObjectDictionary );_bda .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeURI )));_bda .SetIfNotNil ("\u0055\u0052\u0049",_cab .URI ); +_bda .SetIfNotNil ("\u0049\u0073\u004da\u0070",_cab .IsMap );return _fad ;}; -// ADBEEchoSign extra objects from Adobe Acrobat, causing signature invalid if not exists. -ADBEEchoSign _aff .PdfObject ;_fbcde *_aff .PdfIndirectObject ;_abcga bool ;}; +// C returns the value of the cyan component of the color. +func (_fgcfa *PdfColorDeviceCMYK )C ()float64 {return _fgcfa [0]};func (_acgce *PdfWriter )checkLicense ()error {_accee :=_cfb .GetLicenseKey ();if (_accee ==nil ||!_accee .IsLicensed ())&&!_cfeab {_b .Printf ("\u0055\u006e\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0064\u0020c\u006f\u0070\u0079\u0020\u006f\u0066\u0020\u0055\u006e\u0069P\u0044\u0046\u000a"); +_b .Println ("-\u0020\u0047\u0065\u0074\u0020\u0061\u0020\u0066\u0072e\u0065\u0020\u0074\u0072\u0069\u0061\u006c l\u0069\u0063\u0065\u006es\u0065\u0020\u006f\u006e\u0020\u0068\u0074\u0074\u0070s:\u002f\u002fu\u006e\u0069\u0064\u006f\u0063\u002e\u0069\u006f"); +return _bf .New ("\u0075\u006e\u0069\u0070d\u0066\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0020c\u006fd\u0065\u0020\u0072\u0065\u0071\u0075\u0069r\u0065\u0064");};return nil ;};func _fdgf (_bgcgd _dg .PdfObject )(*PdfFunctionType2 ,error ){_gfcee :=&PdfFunctionType2 {}; +var _agggcd *_dg .PdfObjectDictionary ;if _cfcgb ,_bege :=_bgcgd .(*_dg .PdfIndirectObject );_bege {_geggf ,_fege :=_cfcgb .PdfObject .(*_dg .PdfObjectDictionary );if !_fege {return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +};_gfcee ._acfde =_cfcgb ;_agggcd =_geggf ;}else if _adbec ,_fcdbd :=_bgcgd .(*_dg .PdfObjectDictionary );_fcdbd {_agggcd =_adbec ;}else {return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");}; +_ag .Log .Trace ("\u0046U\u004e\u0043\u0032\u003a\u0020\u0025s",_agggcd .String ());_fgff ,_cace :=_dg .TraceToDirectObject (_agggcd .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_dg .PdfObjectArray );if !_cace {_ag .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064"); +return nil ,_bf .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};if _fgff .Len ()< 0||_fgff .Len ()%2!=0{_ag .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u0072\u0061\u006e\u0067e\u0020\u0069\u006e\u0076al\u0069\u0064"); +return nil ,_bf .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065");};_gddb ,_gaea :=_fgff .ToFloat64Array ();if _gaea !=nil {return nil ,_gaea ;};_gfcee .Domain =_gddb ;_fgff ,_cace =_dg .TraceToDirectObject (_agggcd .Get ("\u0052\u0061\u006eg\u0065")).(*_dg .PdfObjectArray ); +if _cace {if _fgff .Len ()< 0||_fgff .Len ()%2!=0{return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065");};_aeeeb ,_ebcge :=_fgff .ToFloat64Array ();if _ebcge !=nil {return nil ,_ebcge ;};_gfcee .Range =_aeeeb ; +};_fgff ,_cace =_dg .TraceToDirectObject (_agggcd .Get ("\u0043\u0030")).(*_dg .PdfObjectArray );if _cace {_dcfec ,_efgbd :=_fgff .ToFloat64Array ();if _efgbd !=nil {return nil ,_efgbd ;};_gfcee .C0 =_dcfec ;};_fgff ,_cace =_dg .TraceToDirectObject (_agggcd .Get ("\u0043\u0031")).(*_dg .PdfObjectArray ); +if _cace {_gdfcb ,_cgcbdg :=_fgff .ToFloat64Array ();if _cgcbdg !=nil {return nil ,_cgcbdg ;};_gfcee .C1 =_gdfcb ;};if len (_gfcee .C0 )!=len (_gfcee .C1 ){_ag .Log .Error ("\u0043\u0030\u0020\u0061nd\u0020\u0043\u0031\u0020\u006e\u006f\u0074\u0020\u006d\u0061\u0074\u0063\u0068\u0069n\u0067"); +return nil ,_dg .ErrRangeError ;};N ,_gaea :=_dg .GetNumberAsFloat (_dg .TraceToDirectObject (_agggcd .Get ("\u004e")));if _gaea !=nil {_ag .Log .Error ("\u004e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020o\u0072\u0020\u0069\u006e\u0076\u0061\u006ci\u0064\u002c\u0020\u0064\u0069\u0063\u0074\u003a\u0020\u0025\u0073",_agggcd .String ()); +return nil ,_gaea ;};_gfcee .N =N ;return _gfcee ,nil ;}; -// NewPdfActionRendition returns a new "rendition" action. -func NewPdfActionRendition ()*PdfActionRendition {_ceb :=NewPdfAction ();_gc :=&PdfActionRendition {};_gc .PdfAction =_ceb ;_ceb .SetContext (_gc );return _gc ;};func _eaec (_dbaef *_aff .PdfObjectDictionary ){_aedf ,_gdbf :=_aff .GetArray (_dbaef .Get ("\u0057\u0069\u0064\u0074\u0068\u0073")); -_feeb ,_cegab :=_aff .GetIntVal (_dbaef .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r"));_fcfbd ,_gaff :=_aff .GetIntVal (_dbaef .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072"));if _gdbf &&_cegab &&_gaff {_gaebg :=_aedf .Len ();if _gaebg !=_fcfbd -_feeb +1{_adg .Log .Debug ("\u0055\u006e\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0057\u0069\u0064\u0074\u0068\u0073\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u003a\u0020\u0025\u0076\u002c\u0020\u004c\u0061\u0073t\u0043\u0068\u0061\u0072\u003a\u0020\u0025\u0076",_gaebg ,_fcfbd ); -_fbcf :=_aff .PdfObjectInteger (_feeb +_gaebg -1);_dbaef .Set ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072",&_fbcf );};};}; +// ApplyStandard is used to apply changes required on the document to match the rules required by the input standard. +// The writer's content would be changed after all the document parts are already established during the Write method. +// A good example of the StandardApplier could be a PDF/A Profile (i.e.: pdfa.Profile1A). In such a case PdfWriter would +// set up all rules required by that Profile. +func (_bbefgf *PdfWriter )ApplyStandard (optimizer StandardApplier ){_bbefgf ._afafd =optimizer }; -// ToPdfObject implements interface PdfModel. -func (_acf *PdfActionSubmitForm )ToPdfObject ()_aff .PdfObject {_acf .PdfAction .ToPdfObject ();_ge :=_acf ._df ;_abg :=_ge .PdfObject .(*_aff .PdfObjectDictionary );_abg .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeSubmitForm )));if _acf .F !=nil {_abg .Set ("\u0046",_acf .F .ToPdfObject ()); -};_abg .SetIfNotNil ("\u0046\u0069\u0065\u006c\u0064\u0073",_acf .Fields );_abg .SetIfNotNil ("\u0046\u006c\u0061g\u0073",_acf .Flags );return _ge ;}; +// GetRuneMetrics returns the character metrics for the rune. +// A bool flag is returned to indicate whether or not the entry was found. +func (_bdagc pdfFontSimple )GetRuneMetrics (r rune )(_bbg .CharMetrics ,bool ){if _bdagc ._bfdee !=nil {_eabd ,_gaag :=_bdagc ._bfdee .Read (r );if _gaag {return _eabd ,true ;};};_bece :=_bdagc .Encoder ();if _bece ==nil {_ag .Log .Debug ("\u004e\u006f\u0020en\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u0073\u003d\u0025\u0073",_bdagc ); +return _bbg .CharMetrics {},false ;};_ebeg ,_cfcdc :=_bece .RuneToCharcode (r );if !_cfcdc {if r !=' '{_ag .Log .Trace ("\u004e\u006f\u0020c\u0068\u0061\u0072\u0063o\u0064\u0065\u0020\u0066\u006f\u0072\u0020r\u0075\u006e\u0065\u003d\u0025\u0076\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",r ,_bdagc ); +};return _bbg .CharMetrics {},false ;};_adafb ,_fadg :=_bdagc .GetCharMetrics (_ebeg );return _adafb ,_fadg ;}; -// NewXObjectImage returns a new XObjectImage. -func NewXObjectImage ()*XObjectImage {_decag :=&XObjectImage {};_bffde :=&_aff .PdfObjectStream {};_bffde .PdfObjectDictionary =_aff .MakeDict ();_decag ._fccgd =_bffde ;return _decag ;}; +// B returns the value of the B component of the color. +func (_ecega *PdfColorCalRGB )B ()float64 {return _ecega [1]}; -// NewPdfAnnotation3D returns a new 3d annotation. -func NewPdfAnnotation3D ()*PdfAnnotation3D {_cgc :=NewPdfAnnotation ();_afg :=&PdfAnnotation3D {};_afg .PdfAnnotation =_cgc ;_cgc .SetContext (_afg );return _afg ;}; +// PdfAnnotationPopup represents Popup annotations. +// (Section 12.5.6.14). +type PdfAnnotationPopup struct{*PdfAnnotation ;Parent _dg .PdfObject ;Open _dg .PdfObject ;}; -// PdfColorDeviceRGB represents a color in DeviceRGB colorspace with R, G, B components, where component is -// defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. -type PdfColorDeviceRGB [3]float64 ; +// ToPdfObject returns the PDF representation of the shading pattern. +func (_dfebg *PdfShadingPatternType3 )ToPdfObject ()_dg .PdfObject {_dfebg .PdfPattern .ToPdfObject ();_feceg :=_dfebg .getDict ();if _dfebg .Shading !=nil {_feceg .Set ("\u0053h\u0061\u0064\u0069\u006e\u0067",_dfebg .Shading .ToPdfObject ());};if _dfebg .Matrix !=nil {_feceg .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_dfebg .Matrix ); +};if _dfebg .ExtGState !=nil {_feceg .Set ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_dfebg .ExtGState );};return _dfebg ._eacce ;}; -// ColorToRGB converts an Indexed color to an RGB color. -func (_fggff *PdfColorspaceSpecialIndexed )ColorToRGB (color PdfColor )(PdfColor ,error ){if _fggff .Base ==nil {return nil ,_g .New ("\u0069\u006e\u0064\u0065\u0078\u0065d\u0020\u0062\u0061\u0073\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065\u0020\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064"); -};return _fggff .Base .ColorToRGB (color );};func (_gbbdc *PdfReader )loadPerms ()(*Permissions ,error ){if _gbbcd :=_gbbdc ._dcadd .Get ("\u0050\u0065\u0072m\u0073");_gbbcd !=nil {if _eadbb ,_dfge :=_aff .GetDict (_gbbcd );_dfge {_eecb :=_eadbb .Get ("\u0044\u006f\u0063\u004d\u0044\u0050"); -if _eecb ==nil {return nil ,nil ;};if _cebga ,_gffca :=_aff .GetIndirect (_eecb );_gffca {_fgedgd ,_afgfc :=_gbbdc .newPdfSignatureFromIndirect (_cebga );if _afgfc !=nil {return nil ,_afgfc ;};return NewPermissions (_fgedgd ),nil ;};return nil ,_e .Errorf ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0044\u006f\u0063M\u0044\u0050\u0020\u0065nt\u0072\u0079"); -};return nil ,_e .Errorf ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0050\u0065\u0072\u006d\u0073\u0020\u0065\u006e\u0074\u0072\u0079");};return nil ,nil ;};func (_bdeg *PdfReader )newPdfAnnotationMarkupFromDict (_gdga *_aff .PdfObjectDictionary )(*PdfAnnotationMarkup ,error ){_adf :=&PdfAnnotationMarkup {}; -if _bdf :=_gdga .Get ("\u0054");_bdf !=nil {_adf .T =_bdf ;};if _ggce :=_gdga .Get ("\u0050\u006f\u0070u\u0070");_ggce !=nil {_gbda ,_cfb :=_ggce .(*_aff .PdfIndirectObject );if !_cfb {if _ ,_dfbe :=_ggce .(*_aff .PdfObjectNull );!_dfbe {return nil ,_g .New ("p\u006f\u0070\u0075\u0070\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0070\u006f\u0069\u006e\u0074\u0020t\u006f\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072ec\u0074\u0020\u006fb\u006ae\u0063\u0074"); -};}else {_cfaa ,_cee :=_bdeg .newPdfAnnotationFromIndirectObject (_gbda );if _cee !=nil {return nil ,_cee ;};if _cfaa !=nil {_fgad ,_aee :=_cfaa ._eefa .(*PdfAnnotationPopup );if !_aee {return nil ,_g .New ("\u006f\u0062\u006ae\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0066\u0065\u0072\u0072\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0061\u0020\u0070\u006f\u0070\u0075\u0070\u0020\u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e"); -};_adf .Popup =_fgad ;};};};if _fgc :=_gdga .Get ("\u0043\u0041");_fgc !=nil {_adf .CA =_fgc ;};if _fcbg :=_gdga .Get ("\u0052\u0043");_fcbg !=nil {_adf .RC =_fcbg ;};if _adbb :=_gdga .Get ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065"); -_adbb !=nil {_adf .CreationDate =_adbb ;};if _aegb :=_gdga .Get ("\u0049\u0052\u0054");_aegb !=nil {_adf .IRT =_aegb ;};if _aega :=_gdga .Get ("\u0053\u0075\u0062\u006a");_aega !=nil {_adf .Subj =_aega ;};if _fcfd :=_gdga .Get ("\u0052\u0054");_fcfd !=nil {_adf .RT =_fcfd ; -};if _edead :=_gdga .Get ("\u0049\u0054");_edead !=nil {_adf .IT =_edead ;};if _cda :=_gdga .Get ("\u0045\u0078\u0044\u0061\u0074\u0061");_cda !=nil {_adf .ExData =_cda ;};return _adf ,nil ;}; +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_egfdde *PdfShadingType3 )ToPdfObject ()_dg .PdfObject {_egfdde .PdfShading .ToPdfObject ();_becce ,_ffeea :=_egfdde .getShadingDict ();if _ffeea !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _egfdde .Coords !=nil {_becce .Set ("\u0043\u006f\u006f\u0072\u0064\u0073",_egfdde .Coords );};if _egfdde .Domain !=nil {_becce .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_egfdde .Domain );};if _egfdde .Function !=nil {if len (_egfdde .Function )==1{_becce .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_egfdde .Function [0].ToPdfObject ()); +}else {_gddea :=_dg .MakeArray ();for _ ,_cfcge :=range _egfdde .Function {_gddea .Append (_cfcge .ToPdfObject ());};_becce .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_gddea );};};if _egfdde .Extend !=nil {_becce .Set ("\u0045\u0078\u0074\u0065\u006e\u0064",_egfdde .Extend ); +};return _egfdde ._bcfbg ;};func (_abdc *PdfReader )newPdfAnnotationCircleFromDict (_gfag *_dg .PdfObjectDictionary )(*PdfAnnotationCircle ,error ){_bcb :=PdfAnnotationCircle {};_fdcdc ,_gfcf :=_abdc .newPdfAnnotationMarkupFromDict (_gfag );if _gfcf !=nil {return nil ,_gfcf ; +};_bcb .PdfAnnotationMarkup =_fdcdc ;_bcb .BS =_gfag .Get ("\u0042\u0053");_bcb .IC =_gfag .Get ("\u0049\u0043");_bcb .BE =_gfag .Get ("\u0042\u0045");_bcb .RD =_gfag .Get ("\u0052\u0044");return &_bcb ,nil ;}; -// ToWriter creates a new writer from the current reader, based on the specified options. -// If no options are provided, all reader properties are copied to the writer. -func (_deaeb *PdfReader )ToWriter (opts *ReaderToWriterOpts )(*PdfWriter ,error ){_ebef :=NewPdfWriter ();if opts ==nil {opts =&ReaderToWriterOpts {};};_dgac ,_fadg :=_deaeb .GetNumPages ();if _fadg !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fadg ); -return nil ,_fadg ;};for _dffbd :=1;_dffbd <=_dgac ;_dffbd ++{_cgfcc ,_eeadd :=_deaeb .GetPage (_dffbd );if _eeadd !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eeadd );return nil ,_eeadd ;};if opts .PageProcessCallback !=nil {_eeadd =opts .PageProcessCallback (_dffbd ,_cgfcc ); -if _eeadd !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eeadd );return nil ,_eeadd ;};}else if opts .PageCallback !=nil {opts .PageCallback (_dffbd ,_cgfcc );};_eeadd =_ebef .AddPage (_cgfcc );if _eeadd !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eeadd ); -return nil ,_eeadd ;};};_ebef ._bgeecg =_deaeb .PdfVersion ();if !opts .SkipInfo {_dagac ,_ffbdd :=_deaeb .GetPdfInfo ();if _ffbdd !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ffbdd );}else {_ebef ._bacec .PdfObject =_dagac .ToPdfObject (); -};};if !opts .SkipMetadata {if _gaffb :=_deaeb ._dcadd .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");_gaffb !=nil {if _fcdb :=_ebef .SetCatalogMetadata (_gaffb );_fcdb !=nil {return nil ,_fcdb ;};};};if !opts .SkipAcroForm {_bfgfcg :=_ebef .SetForms (_deaeb .AcroForm ); -if _bfgfcg !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_bfgfcg );return nil ,_bfgfcg ;};};if !opts .SkipOutlines {_ebef .AddOutlineTree (_deaeb .GetOutlineTree ());};if !opts .SkipOCProperties {_abfdc ,_ggdcf :=_deaeb .GetOCProperties (); -if _ggdcf !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ggdcf );}else {_ggdcf =_ebef .SetOCProperties (_abfdc );if _ggdcf !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ggdcf );};};};if !opts .SkipPageLabels {_aeadd ,_eagcg :=_deaeb .GetPageLabels (); -if _eagcg !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eagcg );}else {_eagcg =_ebef .SetPageLabels (_aeadd );if _eagcg !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eagcg );};};};if !opts .SkipNamedDests {_egbce ,_fbgec :=_deaeb .GetNamedDestinations (); -if _fbgec !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fbgec );}else {_fbgec =_ebef .SetNamedDestinations (_egbce );if _fbgec !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_fbgec );};};};if !opts .SkipNameDictionary {_gcgdb ,_eaadd :=_deaeb .GetNameDictionary (); -if _eaadd !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eaadd );}else {_eaadd =_ebef .SetNameDictionary (_gcgdb );if _eaadd !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_eaadd );};};};if !opts .SkipRotation &&_deaeb .Rotate !=nil {if _edddc :=_ebef .SetRotation (*_deaeb .Rotate ); -_edddc !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_edddc );};};return &_ebef ,nil ;}; +// GenerateXObjectName generates an unused XObject name that can be used for +// adding new XObjects. Uses format XObj1, XObj2, ... +func (_gbgabg *PdfPageResources )GenerateXObjectName ()_dg .PdfObjectName {_effg :=1;for {_cegf :=_dg .MakeName (_b .Sprintf ("\u0058\u004f\u0062\u006a\u0025\u0064",_effg ));if !_gbgabg .HasXObjectByName (*_cegf ){return *_cegf ;};_effg ++;};}; -// ToPdfObject converts the PdfPage to a dictionary within an indirect object container. -func (_daaba *PdfPage )ToPdfObject ()_aff .PdfObject {_beeec :=_daaba ._fage ;_daaba .GetPageDict ();return _beeec ;}; +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_efeae *PdfShadingType2 )ToPdfObject ()_dg .PdfObject {_efeae .PdfShading .ToPdfObject ();_bgcbaa ,_cdabb :=_efeae .getShadingDict ();if _cdabb !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _bgcbaa ==nil {_ag .Log .Error ("\u0053\u0068\u0061\u0064in\u0067\u0020\u0064\u0069\u0063\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c");return nil ;};if _efeae .Coords !=nil {_bgcbaa .Set ("\u0043\u006f\u006f\u0072\u0064\u0073",_efeae .Coords ); +};if _efeae .Domain !=nil {_bgcbaa .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_efeae .Domain );};if _efeae .Function !=nil {if len (_efeae .Function )==1{_bgcbaa .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_efeae .Function [0].ToPdfObject ()); +}else {_cdadb :=_dg .MakeArray ();for _ ,_ddfdf :=range _efeae .Function {_cdadb .Append (_ddfdf .ToPdfObject ());};_bgcbaa .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_cdadb );};};if _efeae .Extend !=nil {_bgcbaa .Set ("\u0045\u0078\u0074\u0065\u006e\u0064",_efeae .Extend ); +};return _efeae ._bcfbg ;}; -// NewXObjectForm creates a brand new XObject Form. Creates a new underlying PDF object stream primitive. -func NewXObjectForm ()*XObjectForm {_abegc :=&XObjectForm {};_adcgc :=&_aff .PdfObjectStream {};_adcgc .PdfObjectDictionary =_aff .MakeDict ();_abegc ._fddef =_adcgc ;return _abegc ;}; +// OutlineDest represents the destination of an outline item. +// It holds the page and the position on the page an outline item points to. +type OutlineDest struct{PageObj *_dg .PdfIndirectObject `json:"-"`;Page int64 `json:"page"`;Mode string `json:"mode"`;X float64 `json:"x"`;Y float64 `json:"y"`;Zoom float64 `json:"zoom"`;}; -// PdfColorCalRGB represents a color in the Colorimetric CIE RGB colorspace. -// A, B, C components -// Each component is defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. -type PdfColorCalRGB [3]float64 ; +// GetContext returns a reference to the subshading entry as represented by PdfShadingType1-7. +func (_ffded *PdfShading )GetContext ()PdfModel {return _ffded ._eeddb }; -// ToPdfObject implements interface PdfModel. -func (_gfeg *PdfAnnotationLink )ToPdfObject ()_aff .PdfObject {_gfeg .PdfAnnotation .ToPdfObject ();_fgg :=_gfeg ._ccfb ;_fceb :=_fgg .PdfObject .(*_aff .PdfObjectDictionary );_fceb .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u004c\u0069\u006e\u006b")); -if _gfeg ._dea !=nil &&_gfeg ._dea ._gfg !=nil {_fceb .Set ("\u0041",_gfeg ._dea ._gfg .ToPdfObject ());}else if _gfeg .A !=nil {_fceb .Set ("\u0041",_gfeg .A );};_fceb .SetIfNotNil ("\u0044\u0065\u0073\u0074",_gfeg .Dest );_fceb .SetIfNotNil ("\u0048",_gfeg .H ); -_fceb .SetIfNotNil ("\u0050\u0041",_gfeg .PA );_fceb .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_gfeg .QuadPoints );_fceb .SetIfNotNil ("\u0042\u0053",_gfeg .BS );return _fgg ;};func (_gbg *PdfAnnotationMarkup )appendToPdfDictionary (_caaa *_aff .PdfObjectDictionary ){_caaa .SetIfNotNil ("\u0054",_gbg .T ); -if _gbg .Popup !=nil {_caaa .Set ("\u0050\u006f\u0070u\u0070",_gbg .Popup .ToPdfObject ());};_caaa .SetIfNotNil ("\u0043\u0041",_gbg .CA );_caaa .SetIfNotNil ("\u0052\u0043",_gbg .RC );_caaa .SetIfNotNil ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_gbg .CreationDate ); -_caaa .SetIfNotNil ("\u0049\u0052\u0054",_gbg .IRT );_caaa .SetIfNotNil ("\u0053\u0075\u0062\u006a",_gbg .Subj );_caaa .SetIfNotNil ("\u0052\u0054",_gbg .RT );_caaa .SetIfNotNil ("\u0049\u0054",_gbg .IT );_caaa .SetIfNotNil ("\u0045\u0078\u0044\u0061\u0074\u0061",_gbg .ExData ); -};func _gcbd (_dgaee *fontCommon )*pdfFontSimple {return &pdfFontSimple {fontCommon :*_dgaee }}; +// GetDocMDPPermission returns the DocMDP level of the restrictions +func (_eadgb *PdfSignature )GetDocMDPPermission ()(_ecb .DocMDPPermission ,bool ){for _ ,_fgbcd :=range _eadgb .Reference .Elements (){if _abfc ,_dcgb :=_dg .GetDict (_fgbcd );_dcgb {if _cgefa ,_ddbfe :=_dg .GetNameVal (_abfc .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064")); +_ddbfe &&_cgefa =="\u0044\u006f\u0063\u004d\u0044\u0050"{if _aefba ,_dgfeb :=_dg .GetDict (_abfc .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"));_dgfeb {if P ,_dade :=_dg .GetIntVal (_aefba .Get ("\u0050"));_dade {return _ecb .DocMDPPermission (P ),true ; +};};};};};return 0,false ;}; -// WatermarkImageOptions contains options for configuring the watermark process. -type WatermarkImageOptions struct{Alpha float64 ;FitToWidth bool ;PreserveAspectRatio bool ;}; +// PdfActionURI represents an URI action. +type PdfActionURI struct{*PdfAction ;URI _dg .PdfObject ;IsMap _dg .PdfObject ;}; -// NewPdfActionGoToE returns a new "go to embedded" action. -func NewPdfActionGoToE ()*PdfActionGoToE {_ab :=NewPdfAction ();_bce :=&PdfActionGoToE {};_bce .PdfAction =_ab ;_ab .SetContext (_bce );return _bce ;}; +// GetAscent returns the Ascent of the font `descriptor`. +func (_ebeb *PdfFontDescriptor )GetAscent ()(float64 ,error ){return _dg .GetNumberAsFloat (_ebeb .Ascent );};func _cbeaf (_ebaea []byte )([]byte ,error ){_dbeaa :=_fb .New ();if _ ,_fdeggb :=_cf .Copy (_dbeaa ,_bc .NewReader (_ebaea ));_fdeggb !=nil {return nil ,_fdeggb ; +};return _dbeaa .Sum (nil ),nil ;}; -// GetPerms returns the Permissions dictionary -func (_fccb *PdfReader )GetPerms ()*Permissions {return _fccb ._cdea }; +// Inspect inspects the object types, subtypes and content in the PDF file returning a map of +// object type to number of instances of each. +func (_ddddf *PdfReader )Inspect ()(map[string ]int ,error ){return _ddddf ._baad .Inspect ()};func (_bca *PdfReader )newPdfAnnotationHighlightFromDict (_gcbea *_dg .PdfObjectDictionary )(*PdfAnnotationHighlight ,error ){_cgd :=PdfAnnotationHighlight {}; +_cdgd ,_cac :=_bca .newPdfAnnotationMarkupFromDict (_gcbea );if _cac !=nil {return nil ,_cac ;};_cgd .PdfAnnotationMarkup =_cdgd ;_cgd .QuadPoints =_gcbea .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_cgd ,nil ;}; -// AddContentStreamByString adds content stream by string. Puts the content -// string into a stream object and points the content stream towards it. -func (_bagbe *PdfPage )AddContentStreamByString (contentStr string )error {_ffbbf ,_dbfd :=_aff .MakeStream ([]byte (contentStr ),_aff .NewFlateEncoder ());if _dbfd !=nil {return _dbfd ;};if _bagbe .Contents ==nil {_bagbe .Contents =_ffbbf ;}else {_eccge :=_aff .TraceToDirectObject (_bagbe .Contents ); -_cbbed ,_abge :=_eccge .(*_aff .PdfObjectArray );if !_abge {_cbbed =_aff .MakeArray (_eccge );};_cbbed .Append (_ffbbf );_bagbe .Contents =_cbbed ;};return nil ;}; +// ToPdfObject implements interface PdfModel. +func (_dfge *PdfAnnotation3D )ToPdfObject ()_dg .PdfObject {_dfge .PdfAnnotation .ToPdfObject ();_ebaed :=_dfge ._cdf ;_aagd :=_ebaed .PdfObject .(*_dg .PdfObjectDictionary );_aagd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0033\u0044")); +_aagd .SetIfNotNil ("\u0033\u0044\u0044",_dfge .T3DD );_aagd .SetIfNotNil ("\u0033\u0044\u0056",_dfge .T3DV );_aagd .SetIfNotNil ("\u0033\u0044\u0041",_dfge .T3DA );_aagd .SetIfNotNil ("\u0033\u0044\u0049",_dfge .T3DI );_aagd .SetIfNotNil ("\u0033\u0044\u0042",_dfge .T3DB ); +return _ebaed ;}; -// PdfSignatureReference represents a PDF signature reference dictionary and is used for signing via form signature fields. -// (Section 12.8.1, Table 253 - Entries in a signature reference dictionary p. 469 in PDF32000_2008). -type PdfSignatureReference struct{_fdebg *_aff .PdfObjectDictionary ;Type *_aff .PdfObjectName ;TransformMethod *_aff .PdfObjectName ;TransformParams _aff .PdfObject ;Data _aff .PdfObject ;DigestMethod *_aff .PdfObjectName ;}; +// NewPdfActionJavaScript returns a new "javaScript" action. +func NewPdfActionJavaScript ()*PdfActionJavaScript {_dfa :=NewPdfAction ();_fdc :=&PdfActionJavaScript {};_fdc .PdfAction =_dfa ;_dfa .SetContext (_fdc );return _fdc ;};var _cfeab =false ;func (_cegadb *PdfSignature )extractChainFromCert ()([]*_bb .Certificate ,error ){var _ffeb *_dg .PdfObjectArray ; +switch _bcaefb :=_cegadb .Cert .(type ){case *_dg .PdfObjectString :_ffeb =_dg .MakeArray (_bcaefb );case *_dg .PdfObjectArray :_ffeb =_bcaefb ;default:return nil ,_b .Errorf ("\u0069n\u0076\u0061l\u0069\u0064\u0020s\u0069\u0067\u006e\u0061\u0074\u0075\u0072e\u0020\u0063\u0065\u0072\u0074\u0069f\u0069\u0063\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_bcaefb ); +};var _daafc _bc .Buffer ;for _ ,_dfeeb :=range _ffeb .Elements (){_ffgae ,_dcece :=_dg .GetString (_dfeeb );if !_dcece {return nil ,_b .Errorf ("\u0069\u006ev\u0061\u006c\u0069\u0064\u0020\u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0074\u0079p\u0065\u0020\u0069\u006e\u0020\u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065 \u0063\u0065r\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u0063h\u0061\u0069\u006e\u003a\u0020\u0025\u0054",_dfeeb ); +};if _ ,_adbdae :=_daafc .Write (_ffgae .Bytes ());_adbdae !=nil {return nil ,_adbdae ;};};return _bb .ParseCertificates (_daafc .Bytes ());}; -// PdfActionRendition represents a Rendition action. -type PdfActionRendition struct{*PdfAction ;R _aff .PdfObject ;AN _aff .PdfObject ;OP _aff .PdfObject ;JS _aff .PdfObject ;}; +// PdfActionNamed represents a named action. +type PdfActionNamed struct{*PdfAction ;N _dg .PdfObject ;};func (_ffg *PdfReader )newPdfAnnotationLineFromDict (_edd *_dg .PdfObjectDictionary )(*PdfAnnotationLine ,error ){_abgf :=PdfAnnotationLine {};_abd ,_fba :=_ffg .newPdfAnnotationMarkupFromDict (_edd ); +if _fba !=nil {return nil ,_fba ;};_abgf .PdfAnnotationMarkup =_abd ;_abgf .L =_edd .Get ("\u004c");_abgf .BS =_edd .Get ("\u0042\u0053");_abgf .LE =_edd .Get ("\u004c\u0045");_abgf .IC =_edd .Get ("\u0049\u0043");_abgf .LL =_edd .Get ("\u004c\u004c"); +_abgf .LLE =_edd .Get ("\u004c\u004c\u0045");_abgf .Cap =_edd .Get ("\u0043\u0061\u0070");_abgf .IT =_edd .Get ("\u0049\u0054");_abgf .LLO =_edd .Get ("\u004c\u004c\u004f");_abgf .CP =_edd .Get ("\u0043\u0050");_abgf .Measure =_edd .Get ("\u004de\u0061\u0073\u0075\u0072\u0065"); +_abgf .CO =_edd .Get ("\u0043\u004f");return &_abgf ,nil ;}; -// ReaderToWriterOpts options used to generate a PdfWriter. -type ReaderToWriterOpts struct{SkipAcroForm bool ;SkipInfo bool ;SkipNameDictionary bool ;SkipNamedDests bool ;SkipOCProperties bool ;SkipOutlines bool ;SkipPageLabels bool ;SkipRotation bool ;SkipMetadata bool ;PageProcessCallback PageProcessCallback ; +// GetAsTilingPattern returns a tiling pattern. Check with IsTiling() prior to using this. +func (_bdbe *PdfPattern )GetAsTilingPattern ()*PdfTilingPattern {return _bdbe ._cgdcc .(*PdfTilingPattern );}; +// ToPdfObject implements interface PdfModel. +func (_fd *PdfAction )ToPdfObject ()_dg .PdfObject {_gcg :=_fd ._cbd ;_ef :=_gcg .PdfObject .(*_dg .PdfObjectDictionary );_ef .Clear ();_ef .Set ("\u0054\u0079\u0070\u0065",_dg .MakeName ("\u0041\u0063\u0074\u0069\u006f\u006e"));_ef .SetIfNotNil ("\u0053",_fd .S ); +_ef .SetIfNotNil ("\u004e\u0065\u0078\u0074",_fd .Next );return _gcg ;}; -// Deprecated: will be removed in v4. Use PageProcessCallback instead. -PageCallback PageCallback ;}; +// FieldImageProvider provides fields images for specified fields. +type FieldImageProvider interface{FieldImageValues ()(map[string ]*Image ,error );};func (_fgfdb *PdfReader )newPdfOutlineItemFromIndirectObject (_fbecee *_dg .PdfIndirectObject )(*PdfOutlineItem ,error ){_ggdfc ,_ebdbc :=_fbecee .PdfObject .(*_dg .PdfObjectDictionary ); +if !_ebdbc {return nil ,_b .Errorf ("\u006f\u0075\u0074l\u0069\u006e\u0065\u0020o\u0062\u006a\u0065\u0063\u0074\u0020\u006eo\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079");};_ecfbb :=NewPdfOutlineItem ();_fcagf :=_ggdfc .Get ("\u0054\u0069\u0074l\u0065"); +if _fcagf ==nil {return nil ,_b .Errorf ("\u006d\u0069\u0073s\u0069\u006e\u0067\u0020\u0054\u0069\u0074\u006c\u0065\u0020\u0066\u0072\u006f\u006d\u0020\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0049\u0074\u0065\u006d\u0020\u0028r\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029"); +};_acgd ,_cedc :=_dg .GetString (_fcagf );if !_cedc {return nil ,_b .Errorf ("\u0074\u0069\u0074le\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u0028\u0025\u0054\u0029",_fcagf );};_ecfbb .Title =_acgd ;if _edcfg :=_ggdfc .Get ("\u0043\u006f\u0075n\u0074"); +_edcfg !=nil {_feege ,_feda :=_edcfg .(*_dg .PdfObjectInteger );if !_feda {return nil ,_b .Errorf ("\u0063o\u0075\u006e\u0074\u0020n\u006f\u0074\u0020\u0061\u006e \u0069n\u0074e\u0067\u0065\u0072\u0020\u0028\u0025\u0054)",_edcfg );};_geafd :=int64 (*_feege ); +_ecfbb .Count =&_geafd ;};if _edfge :=_ggdfc .Get ("\u0044\u0065\u0073\u0074");_edfge !=nil {_ecfbb .Dest =_dg .ResolveReference (_edfge );if !_fgfdb ._dadcef {_caggf :=_fgfdb .traverseObjectData (_ecfbb .Dest );if _caggf !=nil {return nil ,_caggf ;};}; +};if _bcfcf :=_ggdfc .Get ("\u0041");_bcfcf !=nil {_ecfbb .A =_dg .ResolveReference (_bcfcf );if !_fgfdb ._dadcef {_gfcge :=_fgfdb .traverseObjectData (_ecfbb .A );if _gfcge !=nil {return nil ,_gfcge ;};};};if _acdd :=_ggdfc .Get ("\u0053\u0045");_acdd !=nil {_ecfbb .SE =nil ; +};if _egcc :=_ggdfc .Get ("\u0043");_egcc !=nil {_ecfbb .C =_dg .ResolveReference (_egcc );};if _cfge :=_ggdfc .Get ("\u0046");_cfge !=nil {_ecfbb .F =_dg .ResolveReference (_cfge );};return _ecfbb ,nil ;}; -// PdfShadingPatternType3 is shading patterns that will use a Type 3 shading pattern (Radial). -type PdfShadingPatternType3 struct{*PdfPattern ;Shading *PdfShadingType3 ;Matrix *_aff .PdfObjectArray ;ExtGState _aff .PdfObject ;}; +// PdfAnnotationSquiggly represents Squiggly annotations. +// (Section 12.5.6.10). +type PdfAnnotationSquiggly struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _dg .PdfObject ;}; -// ToPdfObject implements interface PdfModel. -func (_caeb *PdfAnnotationMovie )ToPdfObject ()_aff .PdfObject {_caeb .PdfAnnotation .ToPdfObject ();_fedf :=_caeb ._ccfb ;_fcdc :=_fedf .PdfObject .(*_aff .PdfObjectDictionary );_fcdc .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u004d\u006f\u0076i\u0065")); -_fcdc .SetIfNotNil ("\u0054",_caeb .T );_fcdc .SetIfNotNil ("\u004d\u006f\u0076i\u0065",_caeb .Movie );_fcdc .SetIfNotNil ("\u0041",_caeb .A );return _fedf ;}; +// SetXObjectByName adds the XObject from the passed in stream to the page resources. +// The added XObject is identified by the specified name. +func (_ddadbf *PdfPageResources )SetXObjectByName (keyName _dg .PdfObjectName ,stream *_dg .PdfObjectStream )error {if _ddadbf .XObject ==nil {_ddadbf .XObject =_dg .MakeDict ();};_acbf :=_dg .TraceToDirectObject (_ddadbf .XObject );_dgddd ,_feggd :=_acbf .(*_dg .PdfObjectDictionary ); +if !_feggd {_ag .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0058\u004f\u0062j\u0065\u0063\u0074\u002c\u0020\u0067\u006f\u0074\u0020\u0025T\u002f\u0025\u0054",_ddadbf .XObject ,_acbf );return _bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +};_dgddd .Set (keyName ,stream );return nil ;}; // NewStandard14Font returns the standard 14 font named `basefont` as a *PdfFont, or an error if it // `basefont` is not one of the standard 14 font names. -func NewStandard14Font (basefont StdFontName )(*PdfFont ,error ){_cdfe ,_dcca :=_dggca (basefont );if _dcca !=nil {return nil ,_dcca ;};if basefont !=SymbolName &&basefont !=ZapfDingbatsName {_cdfe ._fdgc =_eee .NewWinAnsiEncoder ();};return &PdfFont {_gebd :&_cdfe },nil ; +func NewStandard14Font (basefont StdFontName )(*PdfFont ,error ){_caeb ,_gbec :=_eece (basefont );if _gbec !=nil {return nil ,_gbec ;};if basefont !=SymbolName &&basefont !=ZapfDingbatsName {_caeb ._bdeed =_bd .NewWinAnsiEncoder ();};return &PdfFont {_cadf :&_caeb },nil ; }; -// PdfRectangle is a definition of a rectangle. -type PdfRectangle struct{Llx float64 ;Lly float64 ;Urx float64 ;Ury float64 ;};func _aabee ()string {_gdbd :="\u0051\u0057\u0045\u0052\u0054\u0059\u0055\u0049\u004f\u0050\u0041S\u0044\u0046\u0047\u0048\u004a\u004b\u004c\u005a\u0058\u0043V\u0042\u004e\u004d"; -var _fddg _af .Buffer ;for _ffgbd :=0;_ffgbd < 6;_ffgbd ++{_fddg .WriteRune (rune (_gdbd [_ffe .Intn (len (_gdbd ))]));};return _fddg .String ();};func (_dgcdd *PdfFont )baseFields ()*fontCommon {if _dgcdd ._gebd ==nil {_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0062\u0061\u0073\u0065\u0046\u0069\u0065l\u0064s\u002e \u0063o\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c\u002e"); -return nil ;};return _dgcdd ._gebd .baseFields ();}; +// Val returns the value of the color. +func (_ggea *PdfColorCalGray )Val ()float64 {return float64 (*_ggea )}; -// Items returns all children outline items. -func (_adec *OutlineItem )Items ()[]*OutlineItem {return _adec .Entries }; +// ColorFromFloats returns a new PdfColor based on input color components. +func (_bggf *PdfColorspaceDeviceN )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=_bggf .GetNumComponents (){return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_acgb ,_abdcg :=_bggf .TintTransform .Evaluate (vals ); +if _abdcg !=nil {return nil ,_abdcg ;};_bfda ,_abdcg :=_bggf .AlternateSpace .ColorFromFloats (_acgb );if _abdcg !=nil {return nil ,_abdcg ;};return _bfda ,nil ;}; + +// GetCatalogMetadata gets the catalog defined XMP Metadata. +func (_dacf *PdfReader )GetCatalogMetadata ()(_dg .PdfObject ,bool ){if _dacf ._gccfb ==nil {return nil ,false ;};_dbedf :=_dacf ._gccfb .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");return _dbedf ,_dbedf !=nil ;}; + +// GetRevisionNumber returns the version of the current Pdf document +func (_gbde *PdfReader )GetRevisionNumber ()int {return _gbde ._baad .GetRevisionNumber ()}; -// ParsePdfObject parses input pdf object into given output intent. -func (_eaagga *PdfOutputIntent )ParsePdfObject (object _aff .PdfObject )error {_acbgb ,_daec :=_aff .GetDict (object );if !_daec {_adg .Log .Error ("\u0055\u006e\u006bno\u0077\u006e\u0020\u0074\u0079\u0070\u0065\u003a\u0020%\u0054 \u0066o\u0072 \u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0069\u006e\u0074\u0065\u006e\u0074",object ); -return _g .New ("\u0075\u006e\u006b\u006e\u006fw\u006e\u0020\u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0066\u006f\u0072\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0069\u006e\u0074\u0065\u006e\u0074"); -};_eaagga ._gebea =_acbgb ;_eaagga .Type ,_ =_acbgb .GetString ("\u0054\u0079\u0070\u0065");_adefc ,_daec :=_acbgb .GetString ("\u0053");if _daec {switch _adefc {case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00411":_eaagga .S =PdfOutputIntentTypeA1 ;case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00412":_eaagga .S =PdfOutputIntentTypeA2 ; -case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00413":_eaagga .S =PdfOutputIntentTypeA3 ;case "\u0047T\u0053\u005f\u0050\u0044\u0046\u00414":_eaagga .S =PdfOutputIntentTypeA4 ;case "\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0058":_eaagga .S =PdfOutputIntentTypeX ; -};};_eaagga .OutputCondition ,_ =_acbgb .GetString ("\u004fu\u0074p\u0075\u0074\u0043\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e");_eaagga .OutputConditionIdentifier ,_ =_acbgb .GetString ("\u004fu\u0074\u0070\u0075\u0074C\u006f\u006e\u0064\u0069\u0074i\u006fn\u0049d\u0065\u006e\u0074\u0069\u0066\u0069\u0065r"); -_eaagga .RegistryName ,_ =_acbgb .GetString ("\u0052\u0065\u0067i\u0073\u0074\u0072\u0079\u004e\u0061\u006d\u0065");_eaagga .Info ,_ =_acbgb .GetString ("\u0049\u006e\u0066\u006f");if _abgb ,_gdceec :=_aff .GetStream (_acbgb .Get ("\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072o\u0066\u0069\u006c\u0065")); -_gdceec {_eaagga .ColorComponents ,_ =_aff .GetIntVal (_abgb .Get ("\u004e"));_gggbb ,_badab :=_aff .DecodeStream (_abgb );if _badab !=nil {return _badab ;};_eaagga .DestOutputProfile =_gggbb ;};return nil ;}; +// PdfPage represents a page in a PDF document. (7.7.3.3 - Table 30). +type PdfPage struct{Parent _dg .PdfObject ;LastModified *PdfDate ;Resources *PdfPageResources ;CropBox *PdfRectangle ;MediaBox *PdfRectangle ;BleedBox *PdfRectangle ;TrimBox *PdfRectangle ;ArtBox *PdfRectangle ;BoxColorInfo _dg .PdfObject ;Contents _dg .PdfObject ; +Rotate *int64 ;Group _dg .PdfObject ;Thumb _dg .PdfObject ;B _dg .PdfObject ;Dur _dg .PdfObject ;Trans _dg .PdfObject ;AA _dg .PdfObject ;Metadata _dg .PdfObject ;PieceInfo _dg .PdfObject ;StructParents _dg .PdfObject ;ID _dg .PdfObject ;PZ _dg .PdfObject ; +SeparationInfo _dg .PdfObject ;Tabs _dg .PdfObject ;TemplateInstantiated _dg .PdfObject ;PresSteps _dg .PdfObject ;UserUnit _dg .PdfObject ;VP _dg .PdfObject ;Annots _dg .PdfObject ;_cadgg []*PdfAnnotation ;_bfdge *_dg .PdfObjectDictionary ;_cggbe *_dg .PdfIndirectObject ; +_gaed _dg .PdfObjectDictionary ;_cbbcc *PdfReader ;}; // ToPdfObject implements interface PdfModel. -func (_cgg *PdfAnnotationSquiggly )ToPdfObject ()_aff .PdfObject {_cgg .PdfAnnotation .ToPdfObject ();_gad :=_cgg ._ccfb ;_bddc :=_gad .PdfObject .(*_aff .PdfObjectDictionary );_cgg .PdfAnnotationMarkup .appendToPdfDictionary (_bddc );_bddc .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0053\u0071\u0075\u0069\u0067\u0067\u006c\u0079")); -_bddc .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_cgg .QuadPoints );return _gad ;}; +func (_gcgc *PdfAnnotationInk )ToPdfObject ()_dg .PdfObject {_gcgc .PdfAnnotation .ToPdfObject ();_gcgcf :=_gcgc ._cdf ;_abdd :=_gcgcf .PdfObject .(*_dg .PdfObjectDictionary );_gcgc .PdfAnnotationMarkup .appendToPdfDictionary (_abdd );_abdd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0049\u006e\u006b")); +_abdd .SetIfNotNil ("\u0049n\u006b\u004c\u0069\u0073\u0074",_gcgc .InkList );_abdd .SetIfNotNil ("\u0042\u0053",_gcgc .BS );return _gcgcf ;}; -// DetermineColorspaceNameFromPdfObject determines PDF colorspace from a PdfObject. Returns the colorspace name and -// an error on failure. If the colorspace was not found, will return an empty string. -func DetermineColorspaceNameFromPdfObject (obj _aff .PdfObject )(_aff .PdfObjectName ,error ){var _geg *_aff .PdfObjectName ;var _fggc *_aff .PdfObjectArray ;if _fbfbe ,_bbdee :=obj .(*_aff .PdfIndirectObject );_bbdee {if _adde ,_gebb :=_fbfbe .PdfObject .(*_aff .PdfObjectArray ); -_gebb {_fggc =_adde ;}else if _cefg ,_fbeee :=_fbfbe .PdfObject .(*_aff .PdfObjectName );_fbeee {_geg =_cefg ;};}else if _bbda ,_dfgda :=obj .(*_aff .PdfObjectArray );_dfgda {_fggc =_bbda ;}else if _fdae ,_bcfc :=obj .(*_aff .PdfObjectName );_bcfc {_geg =_fdae ; -};if _geg !=nil {switch *_geg {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":return *_geg ,nil ;case "\u0050a\u0074\u0074\u0065\u0072\u006e":return *_geg ,nil ; -};};if _fggc !=nil &&_fggc .Len ()> 0{if _gada ,_fbgfb :=_fggc .Get (0).(*_aff .PdfObjectName );_fbgfb {switch *_gada {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":if _fggc .Len ()==1{return *_gada ,nil ; -};case "\u0043a\u006c\u0047\u0072\u0061\u0079","\u0043\u0061\u006c\u0052\u0047\u0042","\u004c\u0061\u0062":return *_gada ,nil ;case "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064","\u0050a\u0074\u0074\u0065\u0072\u006e","\u0049n\u0064\u0065\u0078\u0065\u0064":return *_gada ,nil ; -case "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e","\u0044e\u0076\u0069\u0063\u0065\u004e":return *_gada ,nil ;};};};return "",nil ;}; +// GetModelFromPrimitive returns the model corresponding to the `primitive` PdfObject. +func (_ffgd *modelManager )GetModelFromPrimitive (primitive _dg .PdfObject )PdfModel {model ,_cccb :=_ffgd ._eccbc [primitive ];if !_cccb {return nil ;};return model ;}; -// PdfFieldText represents a text field where user can enter text. -type PdfFieldText struct{*PdfField ;DA *_aff .PdfObjectString ;Q *_aff .PdfObjectInteger ;DS *_aff .PdfObjectString ;RV _aff .PdfObject ;MaxLen *_aff .PdfObjectInteger ;};func (_dfgba *pdfCIDFontType2 )baseFields ()*fontCommon {return &_dfgba .fontCommon }; +// PageFromIndirectObject returns the PdfPage and page number for a given indirect object. +func (_cbcba *PdfReader )PageFromIndirectObject (ind *_dg .PdfIndirectObject )(*PdfPage ,int ,error ){if len (_cbcba .PageList )!=len (_cbcba ._daddd ){return nil ,0,_bf .New ("\u0070\u0061\u0067\u0065\u0020\u006c\u0069\u0073\u0074\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); +};for _bdec ,_bebcb :=range _cbcba ._daddd {if _bebcb ==ind {return _cbcba .PageList [_bdec ],_bdec +1,nil ;};};return nil ,0,_bf .New ("\u0070\u0061\u0067\u0065\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");}; +// Set sets the colorspace corresponding to key. Add to Names if not set. +func (_dgdbd *PdfPageResourcesColorspaces )Set (key _dg .PdfObjectName ,val PdfColorspace ){if _ ,_fbfbbg :=_dgdbd .Colorspaces [string (key )];!_fbfbbg {_dgdbd .Names =append (_dgdbd .Names ,string (key ));};_dgdbd .Colorspaces [string (key )]=val ;}; -// Permissions specify a permissions dictionary (PDF 1.5). -// (Section 12.8.4, Table 258 - Entries in a permissions dictionary p. 477 in PDF32000_2008). -type Permissions struct{DocMDP *PdfSignature ;_cbdgg *_aff .PdfObjectDictionary ;};func _ccfa (_afbfd *_aff .PdfObjectDictionary )(*PdfShadingType5 ,error ){_addf :=PdfShadingType5 {};_egegc :=_afbfd .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065"); -if _egegc ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_dcdgd ,_bcef :=_egegc .(*_aff .PdfObjectInteger );if !_bcef {_adg .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_egegc ); -return nil ,_aff .ErrTypeError ;};_addf .BitsPerCoordinate =_dcdgd ;_egegc =_afbfd .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _egegc ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); -return nil ,ErrRequiredAttributeMissing ;};_dcdgd ,_bcef =_egegc .(*_aff .PdfObjectInteger );if !_bcef {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_egegc ); -return nil ,_aff .ErrTypeError ;};_addf .BitsPerComponent =_dcdgd ;_egegc =_afbfd .Get ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073\u0050e\u0072\u0052\u006f\u0077");if _egegc ==nil {_adg .Log .Debug ("\u0052\u0065\u0071u\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0056\u0065\u0072\u0074\u0069c\u0065\u0073\u0050\u0065\u0072\u0052\u006f\u0077"); -return nil ,ErrRequiredAttributeMissing ;};_dcdgd ,_bcef =_egegc .(*_aff .PdfObjectInteger );if !_bcef {_adg .Log .Debug ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073\u0050\u0065\u0072\u0052\u006f\u0077\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006et\u0065\u0067\u0065\u0072\u0020(\u0067\u006ft\u0020\u0025\u0054\u0029",_egegc ); -return nil ,_aff .ErrTypeError ;};_addf .VerticesPerRow =_dcdgd ;_egegc =_afbfd .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _egegc ==nil {_adg .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_efbbe ,_bcef :=_egegc .(*_aff .PdfObjectArray );if !_bcef {_adg .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_egegc ); -return nil ,_aff .ErrTypeError ;};_addf .Decode =_efbbe ;if _ebfcf :=_afbfd .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_ebfcf !=nil {_addf .Function =[]PdfFunction {};if _ecdgf ,_bfgcd :=_ebfcf .(*_aff .PdfObjectArray );_bfgcd {for _ ,_aagcg :=range _ecdgf .Elements (){_afbcd ,_eccgf :=_fdfeg (_aagcg ); -if _eccgf !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_eccgf );return nil ,_eccgf ;};_addf .Function =append (_addf .Function ,_afbcd ); -};}else {_fffgc ,_ceda :=_fdfeg (_ebfcf );if _ceda !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_ceda );return nil ,_ceda ; -};_addf .Function =append (_addf .Function ,_fffgc );};};return &_addf ,nil ;}; -// StdFontName represents name of a standard font. -type StdFontName =_bcd .StdFontName ; +// ColorToRGB converts an Indexed color to an RGB color. +func (_gbcde *PdfColorspaceSpecialIndexed )ColorToRGB (color PdfColor )(PdfColor ,error ){if _gbcde .Base ==nil {return nil ,_bf .New ("\u0069\u006e\u0064\u0065\u0078\u0065d\u0020\u0062\u0061\u0073\u0065\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070a\u0063\u0065\u0020\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064"); +};return _gbcde .Base .ColorToRGB (color );}; -// PdfAnnotationProjection represents Projection annotations. -type PdfAnnotationProjection struct{*PdfAnnotation ;*PdfAnnotationMarkup ;}; +// NewCompositePdfFontFromTTFFile loads a composite font from a TTF font file. Composite fonts can +// be used to represent unicode fonts which can have multi-byte character codes, representing a wide +// range of values. They are often used for symbolic languages, including Chinese, Japanese and Korean. +// It is represented by a Type0 Font with an underlying CIDFontType2 and an Identity-H encoding map. +// TODO: May be extended in the future to support a larger variety of CMaps and vertical fonts. +// NOTE: For simple fonts, use NewPdfFontFromTTFFile. +func NewCompositePdfFontFromTTFFile (filePath string )(*PdfFont ,error ){_ecgbf ,_cegdd :=_eb .Open (filePath );if _cegdd !=nil {_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u006f\u0070\u0065\u006e\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u003a\u0020\u0025\u0076",_cegdd ); +return nil ,_cegdd ;};defer _ecgbf .Close ();return NewCompositePdfFontFromTTF (_ecgbf );};func (_efdaa *PdfWriter )copyObjects (){_bgcae :=make (map[_dg .PdfObject ]_dg .PdfObject );_bdefe :=make ([]_dg .PdfObject ,0,len (_efdaa ._agaba ));_efcdb :=make (map[_dg .PdfObject ]struct{},len (_efdaa ._agaba )); +_ebedc :=make (map[_dg .PdfObject ]struct{});for _ ,_dbdc :=range _efdaa ._agaba {_febae :=_efdaa .copyObject (_dbdc ,_bgcae ,_ebedc ,false );if _ ,_gacad :=_ebedc [_dbdc ];_gacad {continue ;};_bdefe =append (_bdefe ,_febae );_efcdb [_febae ]=struct{}{}; +};_efdaa ._agaba =_bdefe ;_efdaa ._fdbfa =_efcdb ;_efdaa ._efbfa =_efdaa .copyObject (_efdaa ._efbfa ,_bgcae ,nil ,false ).(*_dg .PdfIndirectObject );_efdaa ._fadee =_efdaa .copyObject (_efdaa ._fadee ,_bgcae ,nil ,false ).(*_dg .PdfIndirectObject );if _efdaa ._acdag !=nil {_efdaa ._acdag =_efdaa .copyObject (_efdaa ._acdag ,_bgcae ,nil ,false ).(*_dg .PdfIndirectObject ); +};if _efdaa ._bbac {_abdca :=make (map[_dg .PdfObject ]int64 );for _bded ,_gfaac :=range _efdaa ._ecabb {if _ccbf ,_ddgb :=_bgcae [_bded ];_ddgb {_abdca [_ccbf ]=_gfaac ;}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020a\u0070\u0070\u0065n\u0064\u0020\u006d\u006fd\u0065\u0020\u002d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u0070\u0079\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0020\u006d\u0061\u0070"); +};};_efdaa ._ecabb =_abdca ;};};const (ActionTypeGoTo PdfActionType ="\u0047\u006f\u0054\u006f";ActionTypeGoTo3DView PdfActionType ="\u0047\u006f\u0054\u006f\u0033\u0044\u0056\u0069\u0065\u0077";ActionTypeGoToE PdfActionType ="\u0047\u006f\u0054o\u0045"; +ActionTypeGoToR PdfActionType ="\u0047\u006f\u0054o\u0052";ActionTypeHide PdfActionType ="\u0048\u0069\u0064\u0065";ActionTypeImportData PdfActionType ="\u0049\u006d\u0070\u006f\u0072\u0074\u0044\u0061\u0074\u0061";ActionTypeJavaScript PdfActionType ="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"; +ActionTypeLaunch PdfActionType ="\u004c\u0061\u0075\u006e\u0063\u0068";ActionTypeMovie PdfActionType ="\u004d\u006f\u0076i\u0065";ActionTypeNamed PdfActionType ="\u004e\u0061\u006de\u0064";ActionTypeRendition PdfActionType ="\u0052e\u006e\u0064\u0069\u0074\u0069\u006fn"; +ActionTypeResetForm PdfActionType ="\u0052e\u0073\u0065\u0074\u0046\u006f\u0072m";ActionTypeSetOCGState PdfActionType ="S\u0065\u0074\u004f\u0043\u0047\u0053\u0074\u0061\u0074\u0065";ActionTypeSound PdfActionType ="\u0053\u006f\u0075n\u0064";ActionTypeSubmitForm PdfActionType ="\u0053\u0075\u0062\u006d\u0069\u0074\u0046\u006f\u0072\u006d"; +ActionTypeThread PdfActionType ="\u0054\u0068\u0072\u0065\u0061\u0064";ActionTypeTrans PdfActionType ="\u0054\u0072\u0061n\u0073";ActionTypeURI PdfActionType ="\u0055\u0052\u0049";); -// PdfOutlineItem represents an outline item dictionary (Table 153 - pp. 376 - 377). -type PdfOutlineItem struct{PdfOutlineTreeNode ;Title *_aff .PdfObjectString ;Parent *PdfOutlineTreeNode ;Prev *PdfOutlineTreeNode ;Next *PdfOutlineTreeNode ;Count *int64 ;Dest _aff .PdfObject ;A _aff .PdfObject ;SE _aff .PdfObject ;C _aff .PdfObject ;F _aff .PdfObject ; -_dcee *_aff .PdfIndirectObject ;};func _agfed (_dgefd *_aff .PdfObjectDictionary )(*PdfShadingPattern ,error ){_dafbf :=&PdfShadingPattern {};_fdgaca :=_dgefd .Get ("\u0053h\u0061\u0064\u0069\u006e\u0067");if _fdgaca ==nil {_adg .Log .Debug ("\u0053h\u0061d\u0069\u006e\u0067\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_baab ,_adecf :=_dbdf (_fdgaca );if _adecf !=nil {_adg .Log .Debug ("\u0045r\u0072\u006f\u0072\u0020l\u006f\u0061\u0064\u0069\u006eg\u0020s\u0068a\u0064\u0069\u006e\u0067\u003a\u0020\u0025v",_adecf );return nil ,_adecf ; -};_dafbf .Shading =_baab ;if _bfade :=_dgefd .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");_bfade !=nil {_cggde ,_dcfee :=_bfade .(*_aff .PdfObjectArray );if !_dcfee {_adg .Log .Debug ("\u004d\u0061\u0074\u0072i\u0078\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_bfade ); -return nil ,_aff .ErrTypeError ;};_dafbf .Matrix =_cggde ;};if _bffag :=_dgefd .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e");_bffag !=nil {_dafbf .ExtGState =_bffag ;};return _dafbf ,nil ;}; +// NewPdfColorDeviceRGB returns a new PdfColorDeviceRGB based on the r,g,b component values. +func NewPdfColorDeviceRGB (r ,g ,b float64 )*PdfColorDeviceRGB {_eabaf :=PdfColorDeviceRGB {r ,g ,b };return &_eabaf ;};func _ggcb (_eaefc map[_bbg .GID ]int ,_cdegd uint16 )*_dg .PdfObjectArray {_bbeac :=&_dg .PdfObjectArray {};_egbfc :=_bbg .GID (_cdegd ); +for _cgbfe :=_bbg .GID (0);_cgbfe < _egbfc ;{_fgagf ,_edabf :=_eaefc [_cgbfe ];if !_edabf {_cgbfe ++;continue ;};_dfgcf :=_cgbfe ;for _dfeb :=_dfgcf +1;_dfeb < _egbfc ;_dfeb ++{if _cfdfd ,_ggag :=_eaefc [_dfeb ];!_ggag ||_fgagf !=_cfdfd {break ;};_dfgcf =_dfeb ; +};_bbeac .Append (_dg .MakeInteger (int64 (_cgbfe )));_bbeac .Append (_dg .MakeInteger (int64 (_dfgcf )));_bbeac .Append (_dg .MakeInteger (int64 (_fgagf )));_cgbfe =_dfgcf +1;};return _bbeac ;}; -// WriteString outputs the object as it is to be written to file. -func (_gedb *PdfTransformParamsDocMDP )WriteString ()string {return _gedb .ToPdfObject ().WriteString ()}; +// NewPdfActionImportData returns a new "import data" action. +func NewPdfActionImportData ()*PdfActionImportData {_ca :=NewPdfAction ();_cbb :=&PdfActionImportData {};_cbb .PdfAction =_ca ;_ca .SetContext (_cbb );return _cbb ;};func (_bbdd *PdfColorspaceDeviceCMYK )String ()string {return "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"; +}; -// PdfAppender appends new PDF content to an existing PDF document via incremental updates. -type PdfAppender struct{_dbb _ega .ReadSeeker ;_dga *_aff .PdfParser ;_dafgd *PdfReader ;Reader *PdfReader ;_bbgg []*PdfPage ;_bgac *PdfAcroForm ;_fdbb *DSS ;_dgcg *Permissions ;_gaec _aff .XrefTable ;_cadg int64 ;_bfafd int ;_aggc []_aff .PdfObject ;_deeb map[_aff .PdfObject ]struct{}; -_fffa map[_aff .PdfObject ]int64 ;_abcb map[_aff .PdfObject ]struct{};_fdab map[_aff .PdfObject ]struct{};_beec int64 ;_gdgbd bool ;_geff string ;_dcgbg *EncryptOptions ;_fabd *PdfInfo ;}; +// SetReason sets the `Reason` field of the signature. +func (_dgbeg *PdfSignature )SetReason (reason string ){_dgbeg .Reason =_dg .MakeEncodedString (reason ,true );}; -// SetPdfSubject sets the Subject attribute of the output PDF. -func SetPdfSubject (subject string ){_aebda .Lock ();defer _aebda .Unlock ();_cacc =subject };func _bbdgf (_dacc *PdfAnnotation )(*XObjectForm ,*PdfRectangle ,error ){_cgbd ,_bdbd :=_aff .GetDict (_dacc .AP );if !_bdbd {return nil ,nil ,_g .New ("f\u0069\u0065\u006c\u0064\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u0020\u0041\u0050\u0020d\u0069\u0063\u0074i\u006fn\u0061\u0072\u0079"); -};if _cgbd ==nil {return nil ,nil ,nil ;};_dfggb ,_bdbd :=_aff .GetArray (_dacc .Rect );if !_bdbd ||_dfggb .Len ()!=4{return nil ,nil ,_g .New ("\u0072\u0065\u0063t\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};_edee ,_fffc :=NewPdfRectangle (*_dfggb ); -if _fffc !=nil {return nil ,nil ,_fffc ;};_gdaa :=_aff .TraceToDirectObject (_cgbd .Get ("\u004e"));switch _gagg :=_gdaa .(type ){case *_aff .PdfObjectStream :_ffcc :=_gagg ;_feff ,_edcgg :=NewXObjectFormFromStream (_ffcc );return _feff ,_edee ,_edcgg ; -case *_aff .PdfObjectDictionary :_ddgaf :=_gagg ;_gdeff ,_bdacf :=_aff .GetName (_dacc .AS );if !_bdacf {return nil ,nil ,nil ;};if _ddgaf .Get (*_gdeff )==nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u0041\u0053\u0020\u0073\u0074\u0061\u0074\u0065\u0020\u006e\u006f\u0074 \u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0069\u006e\u0020\u0041\u0050\u0020\u0064\u0069\u0063\u0074\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006eg"); -return nil ,nil ,nil ;};_eaagg ,_bdacf :=_aff .GetStream (_ddgaf .Get (*_gdeff ));if !_bdacf {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055n\u0061\u0062\u006ce \u0074\u006f\u0020\u0061\u0063\u0063e\u0073\u0073\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073t\u0072\u0065\u0061\u006d\u0020\u0066\u006f\u0072 \u0025\u0076",_gdeff ); -return nil ,nil ,_g .New ("\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006d\u0069s\u0073\u0069\u006e\u0067");};_gfgbd ,_bgfe :=NewXObjectFormFromStream (_eaagg );return _gfgbd ,_edee ,_bgfe ;};_adg .Log .Debug ("\u0049\u006e\u0076\u0061li\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0066\u006f\u0072\u0020\u004e\u003a\u0020%\u0054",_gdaa ); -return nil ,nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");}; +// ToPdfObject implements interface PdfModel. +func (_fcgg *PdfSignature )ToPdfObject ()_dg .PdfObject {_eggbf :=_fcgg ._bbda ;var _bcefg *_dg .PdfObjectDictionary ;if _beadde ,_gaaca :=_eggbf .PdfObject .(*pdfSignDictionary );_gaaca {_bcefg =_beadde .PdfObjectDictionary ;}else {_bcefg =_eggbf .PdfObject .(*_dg .PdfObjectDictionary ); +};_bcefg .SetIfNotNil ("\u0054\u0079\u0070\u0065",_fcgg .Type );_bcefg .SetIfNotNil ("\u0046\u0069\u006c\u0074\u0065\u0072",_fcgg .Filter );_bcefg .SetIfNotNil ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r",_fcgg .SubFilter );_bcefg .SetIfNotNil ("\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e",_fcgg .ByteRange ); +_bcefg .SetIfNotNil ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_fcgg .Contents );_bcefg .SetIfNotNil ("\u0043\u0065\u0072\u0074",_fcgg .Cert );_bcefg .SetIfNotNil ("\u004e\u0061\u006d\u0065",_fcgg .Name );_bcefg .SetIfNotNil ("\u0052\u0065\u0061\u0073\u006f\u006e",_fcgg .Reason ); +_bcefg .SetIfNotNil ("\u004d",_fcgg .M );_bcefg .SetIfNotNil ("\u0052e\u0066\u0065\u0072\u0065\u006e\u0063e",_fcgg .Reference );_bcefg .SetIfNotNil ("\u0043h\u0061\u006e\u0067\u0065\u0073",_fcgg .Changes );_bcefg .SetIfNotNil ("C\u006f\u006e\u0074\u0061\u0063\u0074\u0049\u006e\u0066\u006f",_fcgg .ContactInfo ); +return _eggbf ;}; -// PdfAnnotationHighlight represents Highlight annotations. -// (Section 12.5.6.10). -type PdfAnnotationHighlight struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _aff .PdfObject ;};func (_gccbd *PdfWriter )seekByName (_faefff _aff .PdfObject ,_gceg []string ,_daggd string )([]_aff .PdfObject ,error ){_adg .Log .Trace ("\u0053\u0065\u0065\u006b\u0020\u0062\u0079\u0020\u006e\u0061\u006d\u0065.\u002e\u0020\u0025\u0054",_faefff ); -var _cadec []_aff .PdfObject ;if _aggcf ,_gaffg :=_faefff .(*_aff .PdfIndirectObject );_gaffg {return _gccbd .seekByName (_aggcf .PdfObject ,_gceg ,_daggd );};if _cebgf ,_cgdcc :=_faefff .(*_aff .PdfObjectStream );_cgdcc {return _gccbd .seekByName (_cebgf .PdfObjectDictionary ,_gceg ,_daggd ); -};if _fagba ,_aefee :=_faefff .(*_aff .PdfObjectDictionary );_aefee {_adg .Log .Trace ("\u0044\u0069\u0063\u0074");for _ ,_bebaa :=range _fagba .Keys (){_gdagf :=_fagba .Get (_bebaa );if string (_bebaa )==_daggd {_cadec =append (_cadec ,_gdagf );};for _ ,_fefgd :=range _gceg {if string (_bebaa )==_fefgd {_adg .Log .Trace ("\u0046\u006f\u006c\u006c\u006f\u0077\u0020\u006b\u0065\u0079\u0020\u0025\u0073",_fefgd ); -_abged ,_cdcff :=_gccbd .seekByName (_gdagf ,_gceg ,_daggd );if _cdcff !=nil {return _cadec ,_cdcff ;};_cadec =append (_cadec ,_abged ...);break ;};};};return _cadec ,nil ;};return _cadec ,nil ;}; +// IsTiling specifies if the pattern is a tiling pattern. +func (_ebce *PdfPattern )IsTiling ()bool {return _ebce .PatternType ==1}; -// AddPages adds pages to be appended to the end of the source PDF. -func (_cfg *PdfAppender )AddPages (pages ...*PdfPage ){for _ ,_beaa :=range pages {_beaa =_beaa .Duplicate ();_aefbgd (_beaa );_cfg ._bbgg =append (_cfg ._bbgg ,_beaa );};}; +// ToPdfObject returns a PDF object representation of the outline destination. +func (_fcacd OutlineDest )ToPdfObject ()_dg .PdfObject {if (_fcacd .PageObj ==nil &&_fcacd .Page < 0)||_fcacd .Mode ==""{return _dg .MakeNull ();};_cdbgg :=_dg .MakeArray ();if _fcacd .PageObj !=nil {_cdbgg .Append (_fcacd .PageObj );}else {_cdbgg .Append (_dg .MakeInteger (_fcacd .Page )); +};_cdbgg .Append (_dg .MakeName (_fcacd .Mode ));switch _fcacd .Mode {case "\u0046\u0069\u0074","\u0046\u0069\u0074\u0042":case "\u0046\u0069\u0074\u0048","\u0046\u0069\u0074B\u0048":_cdbgg .Append (_dg .MakeFloat (_fcacd .Y ));case "\u0046\u0069\u0074\u0056","\u0046\u0069\u0074B\u0056":_cdbgg .Append (_dg .MakeFloat (_fcacd .X )); +case "\u0058\u0059\u005a":_cdbgg .Append (_dg .MakeFloat (_fcacd .X ));_cdbgg .Append (_dg .MakeFloat (_fcacd .Y ));_cdbgg .Append (_dg .MakeFloat (_fcacd .Zoom ));default:_cdbgg .Set (1,_dg .MakeName ("\u0046\u0069\u0074"));};return _cdbgg ;};func (_fbfecf *PdfWriter )writeObject (_dffg int ,_fgefd _dg .PdfObject ){_ag .Log .Trace ("\u0057\u0072\u0069\u0074\u0065\u0020\u006f\u0062\u006a \u0023\u0025\u0064\u000a",_dffg ); +if _addab ,_ebbdc :=_fgefd .(*_dg .PdfIndirectObject );_ebbdc {_fbfecf ._fffge [_dffg ]=crossReference {Type :1,Offset :_fbfecf ._fbbfc ,Generation :_addab .GenerationNumber };_adfcd :=_b .Sprintf ("\u0025d\u0020\u0030\u0020\u006f\u0062\u006a\n",_dffg ); +if _deaea ,_bddfc :=_addab .PdfObject .(*pdfSignDictionary );_bddfc {_deaea ._cagb =_fbfecf ._fbbfc +int64 (len (_adfcd ));};if _addab .PdfObject ==nil {_ag .Log .Debug ("E\u0072\u0072\u006fr\u003a\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0027\u0073\u0020\u0050\u0064\u0066\u004f\u0062j\u0065\u0063\u0074 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006e\u0065\u0076\u0065\u0072\u0020b\u0065\u0020\u006e\u0069l\u0020\u002d\u0020\u0073e\u0074\u0074\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063t\u004e\u0075\u006c\u006c"); +_addab .PdfObject =_dg .MakeNull ();};_adfcd +=_addab .PdfObject .WriteString ();_adfcd +="\u000a\u0065\u006e\u0064\u006f\u0062\u006a\u000a";_fbfecf .writeString (_adfcd );return ;};if _caccb ,_fdfbec :=_fgefd .(*_dg .PdfObjectStream );_fdfbec {_fbfecf ._fffge [_dffg ]=crossReference {Type :1,Offset :_fbfecf ._fbbfc ,Generation :_caccb .GenerationNumber }; +_afcac :=_b .Sprintf ("\u0025d\u0020\u0030\u0020\u006f\u0062\u006a\n",_dffg );_afcac +=_caccb .PdfObjectDictionary .WriteString ();_afcac +="\u000a\u0073\u0074\u0072\u0065\u0061\u006d\u000a";_fbfecf .writeString (_afcac );_fbfecf .writeBytes (_caccb .Stream ); +_fbfecf .writeString ("\u000ae\u006ed\u0073\u0074\u0072\u0065\u0061m\u000a\u0065n\u0064\u006f\u0062\u006a\u000a");return ;};if _dfec ,_accga :=_fgefd .(*_dg .PdfObjectStreams );_accga {_fbfecf ._fffge [_dffg ]=crossReference {Type :1,Offset :_fbfecf ._fbbfc ,Generation :_dfec .GenerationNumber }; +_eebf :=_b .Sprintf ("\u0025d\u0020\u0030\u0020\u006f\u0062\u006a\n",_dffg );var _bdage []string ;var _aadbf string ;var _aadcd int64 ;for _defbg ,_ebfgg :=range _dfec .Elements (){_caddb ,_geedg :=_ebfgg .(*_dg .PdfIndirectObject );if !_geedg {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065am\u0073 \u004e\u0020\u0025\u0064\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006es\u0020\u006e\u006f\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u0070\u0064\u0066 \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0025\u0076",_dffg ,_ebfgg ); +continue ;};_fgecd :=_caddb .PdfObject .WriteString ()+"\u0020";_aadbf =_aadbf +_fgecd ;_bdage =append (_bdage ,_b .Sprintf ("\u0025\u0064\u0020%\u0064",_caddb .ObjectNumber ,_aadcd ));_fbfecf ._fffge [int (_caddb .ObjectNumber )]=crossReference {Type :2,ObjectNumber :_dffg ,Index :_defbg }; +_aadcd =_aadcd +int64 (len ([]byte (_fgecd )));};_cdcbf :=_ga .Join (_bdage ,"\u0020")+"\u0020";_gdgcf :=_dg .NewFlateEncoder ();_cfbbe :=_gdgcf .MakeStreamDict ();_cfbbe .Set (_dg .PdfObjectName ("\u0054\u0079\u0070\u0065"),_dg .MakeName ("\u004f\u0062\u006a\u0053\u0074\u006d")); +_cfadc :=int64 (_dfec .Len ());_cfbbe .Set (_dg .PdfObjectName ("\u004e"),_dg .MakeInteger (_cfadc ));_acgegd :=int64 (len (_cdcbf ));_cfbbe .Set (_dg .PdfObjectName ("\u0046\u0069\u0072s\u0074"),_dg .MakeInteger (_acgegd ));_aaec ,_ :=_gdgcf .EncodeBytes ([]byte (_cdcbf +_aadbf )); +_cbgcg :=int64 (len (_aaec ));_cfbbe .Set (_dg .PdfObjectName ("\u004c\u0065\u006e\u0067\u0074\u0068"),_dg .MakeInteger (_cbgcg ));_eebf +=_cfbbe .WriteString ();_eebf +="\u000a\u0073\u0074\u0072\u0065\u0061\u006d\u000a";_fbfecf .writeString (_eebf );_fbfecf .writeBytes (_aaec ); +_fbfecf .writeString ("\u000ae\u006ed\u0073\u0074\u0072\u0065\u0061m\u000a\u0065n\u0064\u006f\u0062\u006a\u000a");return ;};_fbfecf .writeString (_fgefd .WriteString ());}; -// BorderStyle defines border type, typically used for annotations. -type BorderStyle int ; +// SetXObjectFormByName adds the provided XObjectForm to the page resources. +// The added XObjectForm is identified by the specified name. +func (_afbec *PdfPageResources )SetXObjectFormByName (keyName _dg .PdfObjectName ,xform *XObjectForm )error {_fbcgg :=xform .ToPdfObject ().(*_dg .PdfObjectStream );_ffdac :=_afbec .SetXObjectByName (keyName ,_fbcgg );return _ffdac ;}; -// BorderEffect represents a border effect (Table 167 p. 395). -type BorderEffect int ;func (_gffdc *PdfReader )newPdfFieldFromIndirectObject (_fcbba *_aff .PdfIndirectObject ,_fgfb *PdfField )(*PdfField ,error ){if _gbeb ,_aaggb :=_gffdc ._cfadc .GetModelFromPrimitive (_fcbba ).(*PdfField );_aaggb {return _gbeb ,nil ; -};_bdgeb ,_edae :=_aff .GetDict (_fcbba );if !_edae {return nil ,_e .Errorf ("\u0050\u0064f\u0046\u0069\u0065\u006c\u0064 \u0069\u006e\u0064\u0069\u0072e\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -};_bgffe :=NewPdfField ();_bgffe ._dfbfd =_fcbba ;_bgffe ._dfbfd .PdfObject =_bdgeb ;if _bbfb ,_fced :=_aff .GetName (_bdgeb .Get ("\u0046\u0054"));_fced {_bgffe .FT =_bbfb ;};if _fgfb !=nil {_bgffe .Parent =_fgfb ;};_bgffe .T ,_ =_bdgeb .Get ("\u0054").(*_aff .PdfObjectString ); -_bgffe .TU ,_ =_bdgeb .Get ("\u0054\u0055").(*_aff .PdfObjectString );_bgffe .TM ,_ =_bdgeb .Get ("\u0054\u004d").(*_aff .PdfObjectString );_bgffe .Ff ,_ =_bdgeb .Get ("\u0046\u0066").(*_aff .PdfObjectInteger );_bgffe .V =_bdgeb .Get ("\u0056");_bgffe .DV =_bdgeb .Get ("\u0044\u0056"); -_bgffe .AA =_bdgeb .Get ("\u0041\u0041");if DA :=_bdgeb .Get ("\u0044\u0041");DA !=nil {DA ,_ :=_aff .GetString (DA );_bgffe .VariableText =&VariableText {DA :DA };Q ,_ :=_bdgeb .Get ("\u0051").(*_aff .PdfObjectInteger );DS ,_ :=_bdgeb .Get ("\u0044\u0053").(*_aff .PdfObjectString ); -RV :=_bdgeb .Get ("\u0052\u0056");_bgffe .VariableText .Q =Q ;_bgffe .VariableText .DS =DS ;_bgffe .VariableText .RV =RV ;};_fgade :=_bgffe .FT ;if _fgade ==nil &&_fgfb !=nil {_fgade =_fgfb .FT ;};if _fgade !=nil {switch *_fgade {case "\u0054\u0078":_dfbdg ,_adbbd :=_fefef (_bdgeb ); -if _adbbd !=nil {return nil ,_adbbd ;};_dfbdg .PdfField =_bgffe ;_bgffe ._gaecf =_dfbdg ;case "\u0043\u0068":_ecefc ,_decf :=_eceg (_bdgeb );if _decf !=nil {return nil ,_decf ;};_ecefc .PdfField =_bgffe ;_bgffe ._gaecf =_ecefc ;case "\u0042\u0074\u006e":_fdad ,_degc :=_cfafa (_bdgeb ); -if _degc !=nil {return nil ,_degc ;};_fdad .PdfField =_bgffe ;_bgffe ._gaecf =_fdad ;case "\u0053\u0069\u0067":_adee ,_agagf :=_gffdc .newPdfFieldSignatureFromDict (_bdgeb );if _agagf !=nil {return nil ,_agagf ;};_adee .PdfField =_bgffe ;_bgffe ._gaecf =_adee ; -default:_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072t\u0065d\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0073",*_bgffe .FT );return nil ,_g .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0074\u0079p\u0065"); -};};if _bgga ,_bcff :=_aff .GetName (_bdgeb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_bcff {if *_bgga =="\u0057\u0069\u0064\u0067\u0065\u0074"{_eeecf ,_fgcaf :=_gffdc .newPdfAnnotationFromIndirectObject (_fcbba );if _fgcaf !=nil {return nil ,_fgcaf ; -};_ddca ,_eegg :=_eeecf .GetContext ().(*PdfAnnotationWidget );if !_eegg {return nil ,_g .New ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0077\u0069\u0064\u0067e\u0074 \u0061n\u006e\u006f\u0074\u0061\u0074\u0069\u006fn");};_ddca ._afae =_bgffe ;_ddca .Parent =_bgffe ._dfbfd ; -_bgffe .Annotations =append (_bgffe .Annotations ,_ddca );return _bgffe ,nil ;};};_ccdf :=true ;if _dffa ,_cedf :=_aff .GetArray (_bdgeb .Get ("\u004b\u0069\u0064\u0073"));_cedf {_cbcdd :=make ([]*_aff .PdfIndirectObject ,0,_dffa .Len ());for _ ,_dbbe :=range _dffa .Elements (){_cbaf ,_dgffc :=_aff .GetIndirect (_dbbe ); -if !_dgffc {_fdfg ,_cded :=_aff .GetStream (_dbbe );if _cded &&_fdfg .PdfObjectDictionary !=nil {_bfcb ,_bdbc :=_aff .GetNameVal (_fdfg .Get ("\u0054\u0079\u0070\u0065"));if _bdbc &&_bfcb =="\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061"{_adg .Log .Debug ("E\u0052RO\u0052:\u0020f\u006f\u0072\u006d\u0020\u0066i\u0065\u006c\u0064 \u004b\u0069\u0064\u0073\u0020a\u0072\u0072\u0061y\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0069n\u0076\u0061\u006cid \u004d\u0065\u0074\u0061\u0064\u0061t\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e\u0020\u0053\u006bi\u0070p\u0069\u006e\u0067\u002e"); -continue ;};};return nil ,_g .New ("n\u006f\u0074\u0020\u0061\u006e\u0020i\u006e\u0064\u0069\u0072\u0065\u0063t\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0028\u0066\u006f\u0072\u006d\u0020\u0066\u0069\u0065\u006cd\u0029");};_ggeag ,_dafde :=_aff .GetDict (_cbaf ); -if !_dafde {return nil ,ErrTypeCheck ;};if _ccdf {_ccdf =!_dadc (_ggeag );};_cbcdd =append (_cbcdd ,_cbaf );};for _ ,_ccaf :=range _cbcdd {if _ccdf {_cgeg ,_fbcg :=_gffdc .newPdfAnnotationFromIndirectObject (_ccaf );if _fbcg !=nil {_adg .Log .Debug ("\u0045r\u0072\u006fr\u0020\u006c\u006fa\u0064\u0069\u006e\u0067\u0020\u0077\u0069d\u0067\u0065\u0074\u0020\u0061\u006en\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0066\u006f\u0072 \u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0076",_fbcg ); -return nil ,_fbcg ;};_bdde ,_aaccb :=_cgeg ._eefa .(*PdfAnnotationWidget );if !_aaccb {return nil ,ErrTypeCheck ;};_bdde ._afae =_bgffe ;_bgffe .Annotations =append (_bgffe .Annotations ,_bdde );}else {_ddbae ,_bcdg :=_gffdc .newPdfFieldFromIndirectObject (_ccaf ,_bgffe ); -if _bcdg !=nil {_adg .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u0068\u0069\u006c\u0064\u0020\u0066\u0069\u0065\u006c\u0064: \u0025\u0076",_bcdg );return nil ,_bcdg ;};_bgffe .Kids =append (_bgffe .Kids ,_ddbae ); -};};};return _bgffe ,nil ;}; +// NewPdfRectangle creates a PDF rectangle object based on an input array of 4 integers. +// Defining the lower left (LL) and upper right (UR) corners with +// floating point numbers. +func NewPdfRectangle (arr _dg .PdfObjectArray )(*PdfRectangle ,error ){_aedfc :=PdfRectangle {};if arr .Len ()!=4{return nil ,_bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065\u0020\u0061\u0072r\u0061\u0079\u002c\u0020\u006c\u0065\u006e \u0021\u003d\u0020\u0034"); +};var _beege error ;_aedfc .Llx ,_beege =_dg .GetNumberAsFloat (arr .Get (0));if _beege !=nil {return nil ,_beege ;};_aedfc .Lly ,_beege =_dg .GetNumberAsFloat (arr .Get (1));if _beege !=nil {return nil ,_beege ;};_aedfc .Urx ,_beege =_dg .GetNumberAsFloat (arr .Get (2)); +if _beege !=nil {return nil ,_beege ;};_aedfc .Ury ,_beege =_dg .GetNumberAsFloat (arr .Get (3));if _beege !=nil {return nil ,_beege ;};return &_aedfc ,nil ;}; -// DecodeArray returns the range of color component values in the Lab colorspace. -func (_aaba *PdfColorspaceLab )DecodeArray ()[]float64 {_aadfb :=[]float64 {0,100};if _aaba .Range !=nil &&len (_aaba .Range )==4{_aadfb =append (_aadfb ,_aaba .Range ...);}else {_aadfb =append (_aadfb ,-100,100,-100,100);};return _aadfb ;}; +// NewPdfAnnotationSound returns a new sound annotation. +func NewPdfAnnotationSound ()*PdfAnnotationSound {_ffe :=NewPdfAnnotation ();_afe :=&PdfAnnotationSound {};_afe .PdfAnnotation =_ffe ;_afe .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_ffe .SetContext (_afe );return _afe ;}; -// NewPdfPageResources returns a new PdfPageResources object. -func NewPdfPageResources ()*PdfPageResources {_feadb :=&PdfPageResources {};_feadb ._bdegd =_aff .MakeDict ();return _feadb ;};func (_dfbb *PdfReader )newPdfAnnotationFreeTextFromDict (_fbebg *_aff .PdfObjectDictionary )(*PdfAnnotationFreeText ,error ){_efaf :=PdfAnnotationFreeText {}; -_gef ,_cbe :=_dfbb .newPdfAnnotationMarkupFromDict (_fbebg );if _cbe !=nil {return nil ,_cbe ;};_efaf .PdfAnnotationMarkup =_gef ;_efaf .DA =_fbebg .Get ("\u0044\u0041");_efaf .Q =_fbebg .Get ("\u0051");_efaf .RC =_fbebg .Get ("\u0052\u0043");_efaf .DS =_fbebg .Get ("\u0044\u0053"); -_efaf .CL =_fbebg .Get ("\u0043\u004c");_efaf .IT =_fbebg .Get ("\u0049\u0054");_efaf .BE =_fbebg .Get ("\u0042\u0045");_efaf .RD =_fbebg .Get ("\u0052\u0044");_efaf .BS =_fbebg .Get ("\u0042\u0053");_efaf .LE =_fbebg .Get ("\u004c\u0045");return &_efaf ,nil ; -}; +// WriteString outputs the object as it is to be written to file. +func (_agca *PdfTransformParamsDocMDP )WriteString ()string {return _agca .ToPdfObject ().WriteString ()}; -// NewReaderForText makes a new PdfReader for an input PDF content string. For use in testing. -func NewReaderForText (txt string )*PdfReader {return &PdfReader {_ddcba :map[_aff .PdfObject ]struct{}{},_cfadc :_cgdee (),_gaece :_aff .NewParserFromString (txt )};}; +// PdfSignature represents a PDF signature dictionary and is used for signing via form signature fields. +// (Section 12.8, Table 252 - Entries in a signature dictionary p. 475 in PDF32000_2008). +type PdfSignature struct{Handler SignatureHandler ;_bbda *_dg .PdfIndirectObject ; -// NewPdfActionGoToR returns a new "go to remote" action. -func NewPdfActionGoToR ()*PdfActionGoToR {_ede :=NewPdfAction ();_ca :=&PdfActionGoToR {};_ca .PdfAction =_ede ;_ede .SetContext (_ca );return _ca ;};func (_cebg *pdfFontType3 )getFontDescriptor ()*PdfFontDescriptor {return _cebg ._ggca }; +// Type: Sig/DocTimeStamp +Type *_dg .PdfObjectName ;Filter *_dg .PdfObjectName ;SubFilter *_dg .PdfObjectName ;Contents *_dg .PdfObjectString ;Cert _dg .PdfObject ;ByteRange *_dg .PdfObjectArray ;Reference *_dg .PdfObjectArray ;Changes *_dg .PdfObjectArray ;Name *_dg .PdfObjectString ; +M *_dg .PdfObjectString ;Location *_dg .PdfObjectString ;Reason *_dg .PdfObjectString ;ContactInfo *_dg .PdfObjectString ;R *_dg .PdfObjectInteger ;V *_dg .PdfObjectInteger ;PropBuild *_dg .PdfObjectDictionary ;PropAuthTime *_dg .PdfObjectInteger ;PropAuthType *_dg .PdfObjectName ; +};func _dadaa (_aefg *_dg .PdfObjectDictionary ,_acfd *fontCommon )(*pdfCIDFontType2 ,error ){if _acfd ._bcga !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{_ag .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0046\u006fn\u0074\u0020\u0053u\u0062\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020CI\u0044\u0046\u006fn\u0074\u0054y\u0070\u0065\u0032\u002e\u0020\u0066o\u006e\u0074=\u0025\u0073",_acfd ); +return nil ,_dg .ErrRangeError ;};_ecefd :=_ebccc (_acfd );_gfgec ,_fgcb :=_dg .GetDict (_aefg .Get ("\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f"));if !_fgcb {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043I\u0044\u0053\u0079st\u0065\u006d\u0049\u006e\u0066\u006f \u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u002e\u0020\u0066\u006f\u006e\u0074=\u0025\u0073",_acfd ); +return nil ,ErrRequiredAttributeMissing ;};_ecefd .CIDSystemInfo =_gfgec ;_ecefd .DW =_aefg .Get ("\u0044\u0057");_ecefd .W =_aefg .Get ("\u0057");_ecefd .DW2 =_aefg .Get ("\u0044\u0057\u0032");_ecefd .W2 =_aefg .Get ("\u0057\u0032");_ecefd .CIDToGIDMap =_aefg .Get ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070"); +_ecefd ._bfbc =1000.0;if _edcb ,_fgddcd :=_dg .GetNumberAsFloat (_ecefd .DW );_fgddcd ==nil {_ecefd ._bfbc =_edcb ;};_acfee ,_aegg :=_gacbe (_ecefd .W );if _aegg !=nil {return nil ,_aegg ;};if _acfee ==nil {_acfee =map[_bd .CharCode ]float64 {};};_ecefd ._ddeb =_acfee ; +return _ecefd ,nil ;}; -// RepairAcroForm attempts to rebuild the AcroForm fields using the widget -// annotations present in the document pages. Pass nil for the opts parameter -// in order to use the default options. -// NOTE: Currently, the opts parameter is declared in order to enable adding -// future options, but passing nil will always result in the default options -// being used. -func (_feggf *PdfReader )RepairAcroForm (opts *AcroFormRepairOptions )error {var _edeca []*PdfField ;_bbdca :=map[*_aff .PdfIndirectObject ]struct{}{};for _ ,_gaeeb :=range _feggf .PageList {_fcagg ,_fedce :=_gaeeb .GetAnnotations ();if _fedce !=nil {return _fedce ; -};for _ ,_dcdea :=range _fcagg {var _abcbg *PdfField ;switch _aagae :=_dcdea .GetContext ().(type ){case *PdfAnnotationWidget :if _aagae ._afae !=nil {_abcbg =_aagae ._afae ;break ;};if _fegbe ,_baebfg :=_aff .GetIndirect (_aagae .Parent );_baebfg {_abcbg ,_fedce =_feggf .newPdfFieldFromIndirectObject (_fegbe ,nil ); -if _fedce ==nil {break ;};_adg .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0070\u0061\u0072s\u0065\u0020\u0066\u006f\u0072\u006d\u0020\u0066\u0069\u0065ld\u0020\u0025\u002bv\u003a \u0025\u0076",_fegbe ,_fedce ); -};if _aagae ._ccfb !=nil {_abcbg ,_fedce =_feggf .newPdfFieldFromIndirectObject (_aagae ._ccfb ,nil );if _fedce ==nil {break ;};_adg .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0070\u0061\u0072s\u0065\u0020\u0066\u006f\u0072\u006d\u0020\u0066\u0069\u0065ld\u0020\u0025\u002bv\u003a \u0025\u0076",_aagae ._ccfb ,_fedce ); -};};if _abcbg ==nil {continue ;};if _ ,_feffa :=_bbdca [_abcbg ._dfbfd ];_feffa {continue ;};_bbdca [_abcbg ._dfbfd ]=struct{}{};_edeca =append (_edeca ,_abcbg );};};if len (_edeca )==0{return nil ;};if _feggf .AcroForm ==nil {_feggf .AcroForm =NewPdfAcroForm (); -};_feggf .AcroForm .Fields =&_edeca ;return nil ;}; +// NewPdfAnnotationCaret returns a new caret annotation. +func NewPdfAnnotationCaret ()*PdfAnnotationCaret {_gdfa :=NewPdfAnnotation ();_cedb :=&PdfAnnotationCaret {};_cedb .PdfAnnotation =_gdfa ;_cedb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_gdfa .SetContext (_cedb );return _cedb ;};var ImageHandling ImageHandler =DefaultImageHandler {}; -// NewPdfAnnotationUnderline returns a new text underline annotation. -func NewPdfAnnotationUnderline ()*PdfAnnotationUnderline {_gga :=NewPdfAnnotation ();_gba :=&PdfAnnotationUnderline {};_gba .PdfAnnotation =_gga ;_gba .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_gga .SetContext (_gba );return _gba ;}; -// NewPdfAnnotationSquiggly returns a new text squiggly annotation. -func NewPdfAnnotationSquiggly ()*PdfAnnotationSquiggly {_fgbe :=NewPdfAnnotation ();_gcdg :=&PdfAnnotationSquiggly {};_gcdg .PdfAnnotation =_fgbe ;_gcdg .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_fgbe .SetContext (_gcdg );return _gcdg ;}; +// GetNumComponents returns the number of color components of the colorspace device. +// Returns 1 for a grayscale device. +func (_fadc *PdfColorspaceDeviceGray )GetNumComponents ()int {return 1}; -// PdfColorspaceSpecialPattern is a Pattern colorspace. -// Can be defined either as /Pattern or with an underlying colorspace [/Pattern cs]. -type PdfColorspaceSpecialPattern struct{UnderlyingCS PdfColorspace ;_ccd *_aff .PdfIndirectObject ;}; +// Evaluate runs the function on the passed in slice and returns the results. +func (_dbcg *PdfFunctionType0 )Evaluate (x []float64 )([]float64 ,error ){if len (x )!=_dbcg .NumInputs {_ag .Log .Error ("\u004eu\u006d\u0062e\u0072\u0020\u006f\u0066 \u0069\u006e\u0070u\u0074\u0073\u0020\u006e\u006f\u0074\u0020\u006d\u0061tc\u0068\u0069\u006eg\u0020\u0077h\u0061\u0074\u0020\u0069\u0073\u0020n\u0065\u0065d\u0065\u0064"); +return nil ,_bf .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");};if _dbcg ._fecfc ==nil {_ecbba :=_dbcg .processSamples ();if _ecbba !=nil {return nil ,_ecbba ;};};_dabag :=_dbcg .Encode ;if _dabag ==nil {_dabag =[]float64 {}; +for _eacbc :=0;_eacbc < len (_dbcg .Size );_eacbc ++{_dabag =append (_dabag ,0);_dabag =append (_dabag ,float64 (_dbcg .Size [_eacbc ]-1));};};_acaf :=_dbcg .Decode ;if _acaf ==nil {_acaf =_dbcg .Range ;};_adfcg :=make ([]int ,len (x ));for _abgfe :=0; +_abgfe < len (x );_abgfe ++{_adgca :=x [_abgfe ];_bbcc :=_cg .Min (_cg .Max (_adgca ,_dbcg .Domain [2*_abgfe ]),_dbcg .Domain [2*_abgfe +1]);_cgdcg :=_fc .LinearInterpolate (_bbcc ,_dbcg .Domain [2*_abgfe ],_dbcg .Domain [2*_abgfe +1],_dabag [2*_abgfe ],_dabag [2*_abgfe +1]); +_babe :=_cg .Min (_cg .Max (_cgdcg ,0),float64 (_dbcg .Size [_abgfe ]-1));_befdg :=int (_cg .Floor (_babe +0.5));if _befdg < 0{_befdg =0;}else if _befdg > _dbcg .Size [_abgfe ]{_befdg =_dbcg .Size [_abgfe ]-1;};_adfcg [_abgfe ]=_befdg ;};_acgfa :=_adfcg [0]; +for _bdgaa :=1;_bdgaa < _dbcg .NumInputs ;_bdgaa ++{_fbabc :=_adfcg [_bdgaa ];for _agggc :=0;_agggc < _bdgaa ;_agggc ++{_fbabc *=_dbcg .Size [_agggc ];};_acgfa +=_fbabc ;};_acgfa *=_dbcg .NumOutputs ;var _beef []float64 ;for _ggeg :=0;_ggeg < _dbcg .NumOutputs ; +_ggeg ++{_ddgaf :=_acgfa +_ggeg ;if _ddgaf >=len (_dbcg ._fecfc ){_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u006e\u006ft\u0020\u0065\u006eo\u0075\u0067\u0068\u0020\u0069\u006ep\u0075\u0074\u0020sa\u006dp\u006c\u0065\u0073\u0020\u0074\u006f\u0020d\u0065\u0074\u0065\u0072\u006d\u0069\u006e\u0065\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0076\u0061lu\u0065\u0073\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +continue ;};_fecc :=_dbcg ._fecfc [_ddgaf ];_gecce :=_fc .LinearInterpolate (float64 (_fecc ),0,_cg .Pow (2,float64 (_dbcg .BitsPerSample )),_acaf [2*_ggeg ],_acaf [2*_ggeg +1]);_eacf :=_cg .Min (_cg .Max (_gecce ,_dbcg .Range [2*_ggeg ]),_dbcg .Range [2*_ggeg +1]); +_beef =append (_beef ,_eacf );};return _beef ,nil ;}; -// NewPdfColorspaceLab returns a new Lab colorspace object. -func NewPdfColorspaceLab ()*PdfColorspaceLab {_gbfg :=&PdfColorspaceLab {};_gbfg .BlackPoint =[]float64 {0.0,0.0,0.0};_gbfg .Range =[]float64 {-100,100,-100,100};return _gbfg ;}; +// OutlineItem represents a PDF outline item dictionary (Table 153 - pp. 376 - 377). +type OutlineItem struct{Title string `json:"title"`;Dest OutlineDest `json:"dest"`;Entries []*OutlineItem `json:"entries,omitempty"`;}; -// PdfAnnotationWatermark represents Watermark annotations. -// (Section 12.5.6.22). -type PdfAnnotationWatermark struct{*PdfAnnotation ;FixedPrint _aff .PdfObject ;}; +// HasShadingByName checks whether a shading is defined by the specified keyName. +func (_cadbd *PdfPageResources )HasShadingByName (keyName _dg .PdfObjectName )bool {_ ,_bbffc :=_cadbd .GetShadingByName (keyName );return _bbffc ;}; -// Insert adds an outline item as a child of the current outline item, -// at the specified index. -func (_bfdacc *OutlineItem )Insert (index uint ,item *OutlineItem ){_fggffc :=uint (len (_bfdacc .Entries ));if index > _fggffc {index =_fggffc ;};_bfdacc .Entries =append (_bfdacc .Entries [:index ],append ([]*OutlineItem {item },_bfdacc .Entries [index :]...)...); +// GetContainingPdfObject gets the primitive used to parse the color space. +func (_aaeeb *PdfColorspaceICCBased )GetContainingPdfObject ()_dg .PdfObject {return _aaeeb ._dafg };const (RC4_128bit =EncryptionAlgorithm (iota );AES_128bit ;AES_256bit ;); + +// NewPdfTransformParamsDocMDP create a PdfTransformParamsDocMDP with the specific permissions. +func NewPdfTransformParamsDocMDP (permission _ecb .DocMDPPermission )*PdfTransformParamsDocMDP {return &PdfTransformParamsDocMDP {Type :_dg .MakeName ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"),P :_dg .MakeInteger (int64 (permission )),V :_dg .MakeName ("\u0031\u002e\u0032")}; }; -// NewPdfRectangle creates a PDF rectangle object based on an input array of 4 integers. -// Defining the lower left (LL) and upper right (UR) corners with -// floating point numbers. -func NewPdfRectangle (arr _aff .PdfObjectArray )(*PdfRectangle ,error ){_eeadfg :=PdfRectangle {};if arr .Len ()!=4{return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069d\u0020\u0072\u0065\u0063\u0074\u0061\u006e\u0067\u006c\u0065\u0020\u0061\u0072r\u0061\u0079\u002c\u0020\u006c\u0065\u006e \u0021\u003d\u0020\u0034"); -};var _abfdd error ;_eeadfg .Llx ,_abfdd =_aff .GetNumberAsFloat (arr .Get (0));if _abfdd !=nil {return nil ,_abfdd ;};_eeadfg .Lly ,_abfdd =_aff .GetNumberAsFloat (arr .Get (1));if _abfdd !=nil {return nil ,_abfdd ;};_eeadfg .Urx ,_abfdd =_aff .GetNumberAsFloat (arr .Get (2)); -if _abfdd !=nil {return nil ,_abfdd ;};_eeadfg .Ury ,_abfdd =_aff .GetNumberAsFloat (arr .Get (3));if _abfdd !=nil {return nil ,_abfdd ;};return &_eeadfg ,nil ;}; +// ToPdfObject implements interface PdfModel. +func (_bdcff *PdfAnnotationCircle )ToPdfObject ()_dg .PdfObject {_bdcff .PdfAnnotation .ToPdfObject ();_eaae :=_bdcff ._cdf ;_gbg :=_eaae .PdfObject .(*_dg .PdfObjectDictionary );_bdcff .PdfAnnotationMarkup .appendToPdfDictionary (_gbg );_gbg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0043\u0069\u0072\u0063\u006c\u0065")); +_gbg .SetIfNotNil ("\u0042\u0053",_bdcff .BS );_gbg .SetIfNotNil ("\u0049\u0043",_bdcff .IC );_gbg .SetIfNotNil ("\u0042\u0045",_bdcff .BE );_gbg .SetIfNotNil ("\u0052\u0044",_bdcff .RD );return _eaae ;}; -// PdfShadingType2 is an Axial shading. -type PdfShadingType2 struct{*PdfShading ;Coords *_aff .PdfObjectArray ;Domain *_aff .PdfObjectArray ;Function []PdfFunction ;Extend *_aff .PdfObjectArray ;}; +// ToPdfObject converts the pdfFontSimple to its PDF representation for outputting. +func (_gfcg *pdfFontSimple )ToPdfObject ()_dg .PdfObject {if _gfcg ._gccg ==nil {_gfcg ._gccg =&_dg .PdfIndirectObject {};};_gddf :=_gfcg .baseFields ().asPdfObjectDictionary ("");_gfcg ._gccg .PdfObject =_gddf ;if _gfcg .FirstChar !=nil {_gddf .Set ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r",_gfcg .FirstChar ); +};if _gfcg .LastChar !=nil {_gddf .Set ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072",_gfcg .LastChar );};if _gfcg .Widths !=nil {_gddf .Set ("\u0057\u0069\u0064\u0074\u0068\u0073",_gfcg .Widths );};if _gfcg .Encoding !=nil {_gddf .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_gfcg .Encoding ); +}else if _gfcg ._bdeed !=nil {_ddcfg :=_gfcg ._bdeed .ToPdfObject ();if _ddcfg !=nil {_gddf .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_ddcfg );};};return _gfcg ._gccg ;}; -// PdfColorDeviceCMYK is a CMYK32 color, where each component is defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. -type PdfColorDeviceCMYK [4]float64 ; +// ColorToRGB converts a CalRGB color to an RGB color. +func (_eceb *PdfColorspaceCalRGB )ColorToRGB (color PdfColor )(PdfColor ,error ){_edac ,_ffda :=color .(*PdfColorCalRGB );if !_ffda {_ag .Log .Debug ("\u0049\u006e\u0070ut\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0063\u0061\u006c\u0020\u0072\u0067\u0062"); +return nil ,_bf .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_fbcc :=_edac .A ();_fggb :=_edac .B ();_efba :=_edac .C ();X :=_eceb .Matrix [0]*_cg .Pow (_fbcc ,_eceb .Gamma [0])+_eceb .Matrix [3]*_cg .Pow (_fggb ,_eceb .Gamma [1])+_eceb .Matrix [6]*_cg .Pow (_efba ,_eceb .Gamma [2]); +Y :=_eceb .Matrix [1]*_cg .Pow (_fbcc ,_eceb .Gamma [0])+_eceb .Matrix [4]*_cg .Pow (_fggb ,_eceb .Gamma [1])+_eceb .Matrix [7]*_cg .Pow (_efba ,_eceb .Gamma [2]);Z :=_eceb .Matrix [2]*_cg .Pow (_fbcc ,_eceb .Gamma [0])+_eceb .Matrix [5]*_cg .Pow (_fggb ,_eceb .Gamma [1])+_eceb .Matrix [8]*_cg .Pow (_efba ,_eceb .Gamma [2]); +_beecbd :=3.240479*X +-1.537150*Y +-0.498535*Z ;_bbgc :=-0.969256*X +1.875992*Y +0.041556*Z ;_fdab :=0.055648*X +-0.204043*Y +1.057311*Z ;_beecbd =_cg .Min (_cg .Max (_beecbd ,0),1.0);_bbgc =_cg .Min (_cg .Max (_bbgc ,0),1.0);_fdab =_cg .Min (_cg .Max (_fdab ,0),1.0); +return NewPdfColorDeviceRGB (_beecbd ,_bbgc ,_fdab ),nil ;}; -// PdfColorspaceCalRGB stores A, B, C components -type PdfColorspaceCalRGB struct{WhitePoint []float64 ;BlackPoint []float64 ;Gamma []float64 ;Matrix []float64 ;_ccge *_aff .PdfObjectDictionary ;_caef *_aff .PdfIndirectObject ;}; +// ImageToRGB converts image in CalGray color space to RGB (A, B, C -> X, Y, Z). +func (_bbc *PdfColorspaceCalGray )ImageToRGB (img Image )(Image ,error ){_edcdd :=_fcd .NewReader (img .getBase ());_egee :=_fc .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),3,nil ,nil ,nil );_bdgbg :=_fcd .NewWriter (_egee ); +_cgcde :=_cg .Pow (2,float64 (img .BitsPerComponent ))-1;_dccca :=make ([]uint32 ,3);var (_adfd uint32 ;ANorm ,X ,Y ,Z ,_febb ,_beeg ,_addb float64 ;_cabgd error ;);for {_adfd ,_cabgd =_edcdd .ReadSample ();if _cabgd ==_cf .EOF {break ;}else if _cabgd !=nil {return img ,_cabgd ; +};ANorm =float64 (_adfd )/_cgcde ;X =_bbc .WhitePoint [0]*_cg .Pow (ANorm ,_bbc .Gamma );Y =_bbc .WhitePoint [1]*_cg .Pow (ANorm ,_bbc .Gamma );Z =_bbc .WhitePoint [2]*_cg .Pow (ANorm ,_bbc .Gamma );_febb =3.240479*X +-1.537150*Y +-0.498535*Z ;_beeg =-0.969256*X +1.875992*Y +0.041556*Z ; +_addb =0.055648*X +-0.204043*Y +1.057311*Z ;_febb =_cg .Min (_cg .Max (_febb ,0),1.0);_beeg =_cg .Min (_cg .Max (_beeg ,0),1.0);_addb =_cg .Min (_cg .Max (_addb ,0),1.0);_dccca [0]=uint32 (_febb *_cgcde );_dccca [1]=uint32 (_beeg *_cgcde );_dccca [2]=uint32 (_addb *_cgcde ); +if _cabgd =_bdgbg .WriteSamples (_dccca );_cabgd !=nil {return img ,_cabgd ;};};return _edcf (&_egee ),nil ;};func (_dcbef *PdfReader )buildOutlineTree (_eeceb _dg .PdfObject ,_ccebd *PdfOutlineTreeNode ,_gacae *PdfOutlineTreeNode ,_gebbf map[_dg .PdfObject ]struct{})(*PdfOutlineTreeNode ,*PdfOutlineTreeNode ,error ){if _gebbf ==nil {_gebbf =map[_dg .PdfObject ]struct{}{}; +};_gebbf [_eeceb ]=struct{}{};_dcba ,_cgbgc :=_eeceb .(*_dg .PdfIndirectObject );if !_cgbgc {return nil ,nil ,_b .Errorf ("\u006f\u0075\u0074\u006c\u0069\u006e\u0065 \u0063\u006f\u006et\u0061\u0069\u006e\u0065r\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0064\u0069\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0025\u0054",_eeceb ); +};_gcdbf ,_dagdc :=_dcba .PdfObject .(*_dg .PdfObjectDictionary );if !_dagdc {return nil ,nil ,_bf .New ("\u006e\u006f\u0074 a\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0062\u006a\u0065\u0063\u0074");};_ag .Log .Trace ("\u0062\u0075\u0069\u006c\u0064\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065 \u0074\u0072\u0065\u0065\u003a\u0020d\u0069\u0063\u0074\u003a\u0020\u0025\u0076\u0020\u0028\u0025\u0076\u0029\u0020p\u003a\u0020\u0025\u0070",_gcdbf ,_dcba ,_dcba ); +if _dgefd :=_gcdbf .Get ("\u0054\u0069\u0074l\u0065");_dgefd !=nil {_fbddc ,_eadcc :=_dcbef .newPdfOutlineItemFromIndirectObject (_dcba );if _eadcc !=nil {return nil ,nil ,_eadcc ;};_fbddc .Parent =_ccebd ;_fbddc .Prev =_gacae ;_bfbf :=_dg .ResolveReference (_gcdbf .Get ("\u0046\u0069\u0072s\u0074")); +if _ ,_cbef :=_gebbf [_bfbf ];_bfbf !=nil &&_bfbf !=_dcba &&!_cbef {if !_dg .IsNullObject (_bfbf ){_edgcb ,_cdccc ,_fgedb :=_dcbef .buildOutlineTree (_bfbf ,&_fbddc .PdfOutlineTreeNode ,nil ,_gebbf );if _fgedb !=nil {_ag .Log .Debug ("D\u0045\u0042U\u0047\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0075\u0069\u006c\u0064\u0020\u006fu\u0074\u006c\u0069\u006e\u0065\u0020\u0069\u0074\u0065\u006d\u0020\u0074\u0072\u0065\u0065\u003a \u0025\u0076\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020n\u006f\u0064\u0065\u0020\u0063\u0068\u0069\u006c\u0064\u0072\u0065n\u002e",_fgedb ); +}else {_fbddc .First =_edgcb ;_fbddc .Last =_cdccc ;};};};_afdba :=_dg .ResolveReference (_gcdbf .Get ("\u004e\u0065\u0078\u0074"));if _ ,_dbded :=_gebbf [_afdba ];_afdba !=nil &&_afdba !=_dcba &&!_dbded {if !_dg .IsNullObject (_afdba ){_gfbc ,_bgfg ,_feaggf :=_dcbef .buildOutlineTree (_afdba ,_ccebd ,&_fbddc .PdfOutlineTreeNode ,_gebbf ); +if _feaggf !=nil {_ag .Log .Debug ("D\u0045\u0042U\u0047\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0075\u0069\u006c\u0064\u0020\u006fu\u0074\u006c\u0069\u006e\u0065\u0020\u0074\u0072\u0065\u0065\u0020\u0066\u006f\u0072\u0020\u004ee\u0078\u0074\u0020\u006e\u006f\u0064\u0065\u003a\u0020\u0025\u0076\u002e\u0020S\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u006e\u006f\u0064e\u002e",_feaggf ); +}else {_fbddc .Next =_gfbc ;return &_fbddc .PdfOutlineTreeNode ,_bgfg ,nil ;};};};return &_fbddc .PdfOutlineTreeNode ,&_fbddc .PdfOutlineTreeNode ,nil ;};_egfdgd ,_gfgae :=_abeda (_dcba );if _gfgae !=nil {return nil ,nil ,_gfgae ;};_egfdgd .Parent =_ccebd ; +if _badddf :=_gcdbf .Get ("\u0046\u0069\u0072s\u0074");_badddf !=nil {_badddf =_dg .ResolveReference (_badddf );if _ ,_aggcb :=_gebbf [_badddf ];_badddf !=nil &&_badddf !=_dcba &&!_aggcb {_fegda :=_dg .TraceToDirectObject (_badddf );if _ ,_eddgd :=_fegda .(*_dg .PdfObjectNull ); +!_eddgd &&_fegda !=nil {_cbbae ,_egffa ,_bcbgf :=_dcbef .buildOutlineTree (_badddf ,&_egfdgd .PdfOutlineTreeNode ,nil ,_gebbf );if _bcbgf !=nil {_ag .Log .Debug ("\u0044\u0045\u0042\u0055\u0047\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020b\u0075\u0069\u006c\u0064\u0020\u006f\u0075\u0074\u006c\u0069n\u0065\u0020\u0074\u0072\u0065\u0065\u003a\u0020\u0025\u0076\u002e\u0020\u0053\u006b\u0069\u0070\u0070\u0069n\u0067\u0020\u006e\u006f\u0064\u0065 \u0063\u0068i\u006c\u0064r\u0065n\u002e",_bcbgf ); +}else {_egfdgd .First =_cbbae ;_egfdgd .Last =_egffa ;};};};};return &_egfdgd .PdfOutlineTreeNode ,&_egfdgd .PdfOutlineTreeNode ,nil ;}; + +// Subtype returns the font's "Subtype" field. +func (_afgfd *PdfFont )Subtype ()string {_cgbf :=_afgfd .baseFields ()._bcga ;if _ebcad ,_daab :=_afgfd ._cadf .(*pdfFontType0 );_daab {_cgbf =_cgbf +"\u003a"+_ebcad .DescendantFont .Subtype ();};return _cgbf ;}; // ToPdfObject implements interface PdfModel. -func (_fdbc *PdfSignature )ToPdfObject ()_aff .PdfObject {_agabd :=_fdbc ._gagbc ;var _ceef *_aff .PdfObjectDictionary ;if _dccdeb ,_abdcf :=_agabd .PdfObject .(*pdfSignDictionary );_abdcf {_ceef =_dccdeb .PdfObjectDictionary ;}else {_ceef =_agabd .PdfObject .(*_aff .PdfObjectDictionary ); -};_ceef .SetIfNotNil ("\u0054\u0079\u0070\u0065",_fdbc .Type );_ceef .SetIfNotNil ("\u0046\u0069\u006c\u0074\u0065\u0072",_fdbc .Filter );_ceef .SetIfNotNil ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r",_fdbc .SubFilter );_ceef .SetIfNotNil ("\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e",_fdbc .ByteRange ); -_ceef .SetIfNotNil ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_fdbc .Contents );_ceef .SetIfNotNil ("\u0043\u0065\u0072\u0074",_fdbc .Cert );_ceef .SetIfNotNil ("\u004e\u0061\u006d\u0065",_fdbc .Name );_ceef .SetIfNotNil ("\u0052\u0065\u0061\u0073\u006f\u006e",_fdbc .Reason ); -_ceef .SetIfNotNil ("\u004d",_fdbc .M );_ceef .SetIfNotNil ("\u0052e\u0066\u0065\u0072\u0065\u006e\u0063e",_fdbc .Reference );_ceef .SetIfNotNil ("\u0043h\u0061\u006e\u0067\u0065\u0073",_fdbc .Changes );_ceef .SetIfNotNil ("C\u006f\u006e\u0074\u0061\u0063\u0074\u0049\u006e\u0066\u006f",_fdbc .ContactInfo ); -return _agabd ;}; +func (_ddac *PdfAnnotationPolygon )ToPdfObject ()_dg .PdfObject {_ddac .PdfAnnotation .ToPdfObject ();_edf :=_ddac ._cdf ;_egff :=_edf .PdfObject .(*_dg .PdfObjectDictionary );_ddac .PdfAnnotationMarkup .appendToPdfDictionary (_egff );_egff .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0050o\u006c\u0079\u0067\u006f\u006e")); +_egff .SetIfNotNil ("\u0056\u0065\u0072\u0074\u0069\u0063\u0065\u0073",_ddac .Vertices );_egff .SetIfNotNil ("\u004c\u0045",_ddac .LE );_egff .SetIfNotNil ("\u0042\u0053",_ddac .BS );_egff .SetIfNotNil ("\u0049\u0043",_ddac .IC );_egff .SetIfNotNil ("\u0042\u0045",_ddac .BE ); +_egff .SetIfNotNil ("\u0049\u0054",_ddac .IT );_egff .SetIfNotNil ("\u004de\u0061\u0073\u0075\u0072\u0065",_ddac .Measure );return _edf ;}; -// PdfActionNamed represents a named action. -type PdfActionNamed struct{*PdfAction ;N _aff .PdfObject ;};func (_aefc *PdfWriter )writeString (_cdffc string ){if _aefc ._acag !=nil {return ;};_fffaf ,_fecc :=_aefc ._ggee .WriteString (_cdffc );_aefc ._cagac +=int64 (_fffaf );_aefc ._acag =_fecc ;}; -func (_fagd *PdfPage )flattenFieldsWithOpts (_gcfe FieldAppearanceGenerator ,_bbbgeg *FieldFlattenOpts ,_aacd map[*PdfAnnotation ]bool )error {var _cebeb []*PdfAnnotation ;if _gcfe !=nil {if _ffgbg :=_gcfe .WrapContentStream (_fagd );_ffgbg !=nil {return _ffgbg ; -};};_dbaed ,_begbg :=_fagd .GetAnnotations ();if _begbg !=nil {return _begbg ;};for _ ,_fcdd :=range _dbaed {_gfcec ,_bgge :=_aacd [_fcdd ];if !_bgge &&_bbbgeg .AnnotFilterFunc !=nil {if _ ,_bfca :=_fcdd .GetContext ().(*PdfAnnotationWidget );!_bfca {_bgge =_bbbgeg .AnnotFilterFunc (_fcdd ); -};};if !_bgge {_cebeb =append (_cebeb ,_fcdd );continue ;};switch _fcdd .GetContext ().(type ){case *PdfAnnotationPopup :continue ;case *PdfAnnotationLink :continue ;case *PdfAnnotationProjection :continue ;};_ffgea ,_gffbd ,_facfb :=_bbdgf (_fcdd );if _facfb !=nil {if !_gfcec {_adg .Log .Trace ("\u0046\u0069\u0065\u006c\u0064\u0020\u0077\u0069\u0074h\u006f\u0075\u0074\u0020\u0056\u0020\u002d\u003e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0077\u0069\u0074h\u006f\u0075t\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0074\u0072\u0065am\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067\u0020\u006f\u0076\u0065\u0072"); -continue ;};_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0077\u0069\u0074h\u006f\u0075\u0074\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d,\u0020\u0065\u0072\u0072\u0020\u003a\u0020\u0025\u0076\u0020\u002d\u0020\u0073\u006bi\u0070\u0070\u0069n\u0067\u0020\u006f\u0076\u0065\u0072",_facfb ); -continue ;};if _ffgea ==nil {continue ;};_ecaa :=_fagd .Resources .GenerateXObjectName ();_fagd .Resources .SetXObjectFormByName (_ecaa ,_ffgea );_ggef ,_adbbdf ,_facfb :=_ccfeb (_ffgea );if _facfb !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0061\u0070p\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u004d\u0061\u0074\u0072\u0069\u0078\u002c\u0020s\u006b\u0069\u0070\u0070\u0069\u006e\u0067\u0020\u0078\u0066\u006f\u0072\u006d\u0020\u0062\u0062\u006f\u0078\u0020\u0061\u0064\u006a\u0075\u0073t\u006d\u0065\u006e\u0074\u003a \u0025\u0076",_facfb ); -}else {_ebeg :=_eb .IdentityMatrix ();_ebeg =_ebeg .Translate (-_ggef .Llx ,-_ggef .Lly );if _adbbdf {_gcgb :=0.0;if _ggef .Width ()> 0{_gcgb =_gffbd .Width ()/_ggef .Width ();};_cegf :=0.0;if _ggef .Height ()> 0{_cegf =_gffbd .Height ()/_ggef .Height (); -};_ebeg =_ebeg .Scale (_gcgb ,_cegf );};_gffbd .Transform (_ebeg );};_fcaa :=_cf .Min (_gffbd .Llx ,_gffbd .Urx );_efcd :=_cf .Min (_gffbd .Lly ,_gffbd .Ury );var _edbc []string ;_edbc =append (_edbc ,"\u0071");_edbc =append (_edbc ,_e .Sprintf ("\u0025\u002e\u0036\u0066\u0020\u0025\u002e\u0036\u0066\u0020\u0025\u002e\u0036\u0066\u0020%\u002e6\u0066\u0020\u0025\u002e\u0036\u0066\u0020\u0025\u002e\u0036\u0066\u0020\u0063\u006d",1.0,0.0,0.0,1.0,_fcaa ,_efcd )); -_edbc =append (_edbc ,_e .Sprintf ("\u002f\u0025\u0073\u0020\u0044\u006f",_ecaa .String ()));_edbc =append (_edbc ,"\u0051");_caba :=_ba .Join (_edbc ,"\u000a");_facfb =_fagd .AppendContentStream (_caba );if _facfb !=nil {return _facfb ;};if _ffgea .Resources !=nil {_fcdf ,_eeffb :=_aff .GetDict (_ffgea .Resources .Font ); -if _eeffb {for _ ,_ecgg :=range _fcdf .Keys (){if !_fagd .Resources .HasFontByName (_ecgg ){_fagd .Resources .SetFontByName (_ecgg ,_fcdf .Get (_ecgg ));};};};};};if len (_cebeb )> 0{_fagd ._bbgb =_cebeb ;}else {_fagd ._bbgb =[]*PdfAnnotation {};};return nil ; -};func (_bgbcb *PdfWriter )mapObjectStreams (_cefgg bool )(map[_aff .PdfObject ]bool ,bool ){_fdaaa :=make (map[_aff .PdfObject ]bool );for _ ,_ccda :=range _bgbcb ._babcd {if _cageb ,_deebe :=_ccda .(*_aff .PdfObjectStreams );_deebe {_cefgg =true ;for _ ,_bbddf :=range _cageb .Elements (){_fdaaa [_bbddf ]=true ; -if _bbdff ,_dabed :=_bbddf .(*_aff .PdfIndirectObject );_dabed {_fdaaa [_bbdff .PdfObject ]=true ;};};};};return _fdaaa ,_cefgg ;}; +// ToPdfObject implements interface PdfModel. +func (_eea *PdfAnnotationStrikeOut )ToPdfObject ()_dg .PdfObject {_eea .PdfAnnotation .ToPdfObject ();_bddf :=_eea ._cdf ;_bdga :=_bddf .PdfObject .(*_dg .PdfObjectDictionary );_eea .PdfAnnotationMarkup .appendToPdfDictionary (_bdga );_bdga .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0053t\u0072\u0069\u006b\u0065\u004f\u0075t")); +_bdga .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_eea .QuadPoints );return _bddf ;};var (_fgefgf _e .Mutex ;_bdeaf ="";_ccfea _a .Time ;_cebb ="";_abbgf ="";_efafac _a .Time ;_faff ="";_adgf ="";_fgfda ="";); -// NewPdfActionNamed returns a new "named" action. -func NewPdfActionNamed ()*PdfActionNamed {_bfef :=NewPdfAction ();_cdb :=&PdfActionNamed {};_cdb .PdfAction =_bfef ;_bfef .SetContext (_cdb );return _cdb ;}; +// Height returns the height of `rect`. +func (_fdgge *PdfRectangle )Height ()float64 {return _cg .Abs (_fdgge .Ury -_fdgge .Lly )}; -// GetCharMetrics returns the char metrics for character code `code`. -// How it works: -// 1. It calls the GetCharMetrics function for the underlying font, either a simple font or -// a Type0 font. The underlying font GetCharMetrics() functions do direct charcode ➞ metrics -// mappings. -// 2. If the underlying font's GetCharMetrics() doesn't have a CharMetrics for `code` then a -// a CharMetrics with the FontDescriptor's /MissingWidth is returned. -// 3. If there is no /MissingWidth then a failure is returned. -// -// TODO(peterwilliams97) There is nothing callers can do if no CharMetrics are found so we might as -// well give them 0 width. There is no need for the bool return. -// -// TODO(gunnsth): Reconsider whether needed or if can map via GlyphName. -func (_ecfbg *PdfFont )GetCharMetrics (code _eee .CharCode )(CharMetrics ,bool ){var _ddgaa _bcd .CharMetrics ;switch _fdfbf :=_ecfbg ._gebd .(type ){case *pdfFontSimple :if _eedd ,_efca :=_fdfbf .GetCharMetrics (code );_efca {return _eedd ,_efca ;};case *pdfFontType0 :if _dbbbc ,_cgde :=_fdfbf .GetCharMetrics (code ); -_cgde {return _dbbbc ,_cgde ;};case *pdfCIDFontType0 :if _abbgb ,_ffbc :=_fdfbf .GetCharMetrics (code );_ffbc {return _abbgb ,_ffbc ;};case *pdfCIDFontType2 :if _dccb ,_ccbff :=_fdfbf .GetCharMetrics (code );_ccbff {return _dccb ,_ccbff ;};case *pdfFontType3 :if _debf ,_gbga :=_fdfbf .GetCharMetrics (code ); -_gbga {return _debf ,_gbga ;};default:_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020G\u0065\u0074\u0043h\u0061\u0072\u004de\u0074\u0072i\u0063\u0073\u0020\u006e\u006f\u0074 \u0069mp\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u0020\u0074\u0079\u0070\u0065\u003d\u0025\u0054\u002e",_ecfbg ._gebd ); -return _ddgaa ,false ;};if _effg ,_cbcea :=_ecfbg .GetFontDescriptor ();_cbcea ==nil &&_effg !=nil {return _bcd .CharMetrics {Wx :_effg ._eace },true ;};_adg .Log .Debug ("\u0047\u0065\u0074\u0043\u0068\u0061\u0072\u004d\u0065\u0074\u0072\u0069\u0063\u0073\u003a\u0020\u004e\u006f\u0020\u006d\u0065\u0074\u0072\u0069c\u0073\u0020\u0066\u006f\u0072 \u0066\u006fn\u0074\u003d\u0025\u0073",_ecfbg ); -return _ddgaa ,false ;}; +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_dggdbg *PdfShading )ToPdfObject ()_dg .PdfObject {_bfcaf :=_dggdbg ._bcfbg ;_gdfbe ,_effba :=_dggdbg .getShadingDict ();if _effba !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _dggdbg .ShadingType !=nil {_gdfbe .Set ("S\u0068\u0061\u0064\u0069\u006e\u0067\u0054\u0079\u0070\u0065",_dggdbg .ShadingType );};if _dggdbg .ColorSpace !=nil {_gdfbe .Set ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065",_dggdbg .ColorSpace .ToPdfObject ()); +};if _dggdbg .Background !=nil {_gdfbe .Set ("\u0042\u0061\u0063\u006b\u0067\u0072\u006f\u0075\u006e\u0064",_dggdbg .Background );};if _dggdbg .BBox !=nil {_gdfbe .Set ("\u0042\u0042\u006f\u0078",_dggdbg .BBox .ToPdfObject ());};if _dggdbg .AntiAlias !=nil {_gdfbe .Set ("\u0041n\u0074\u0069\u0041\u006c\u0069\u0061s",_dggdbg .AntiAlias ); +};return _bfcaf ;}; -// XObjectForm (Table 95 in 8.10.2). -type XObjectForm struct{Filter _aff .StreamEncoder ;FormType _aff .PdfObject ;BBox _aff .PdfObject ;Matrix _aff .PdfObject ;Resources *PdfPageResources ;Group _aff .PdfObject ;Ref _aff .PdfObject ;MetaData _aff .PdfObject ;PieceInfo _aff .PdfObject ;LastModified _aff .PdfObject ; -StructParent _aff .PdfObject ;StructParents _aff .PdfObject ;OPI _aff .PdfObject ;OC _aff .PdfObject ;Name _aff .PdfObject ; +// GetXObjectImageByName returns the XObjectImage with the specified name from the +// page resources, if it exists. +func (_acbc *PdfPageResources )GetXObjectImageByName (keyName _dg .PdfObjectName )(*XObjectImage ,error ){_gfcgc ,_fgaga :=_acbc .GetXObjectByName (keyName );if _gfcgc ==nil {return nil ,nil ;};if _fgaga !=XObjectTypeImage {return nil ,_bf .New ("\u006e\u006f\u0074 \u0061\u006e\u0020\u0069\u006d\u0061\u0067\u0065"); +};_fddcb ,_adgdc :=NewXObjectImageFromStream (_gfcgc );if _adgdc !=nil {return nil ,_adgdc ;};return _fddcb ,nil ;}; -// Stream data. -Stream []byte ;_fddef *_aff .PdfObjectStream ;};func _bfdfd ()string {_aebda .Lock ();defer _aebda .Unlock ();if len (_gddfe )> 0{return _gddfe ;};return "\u0055n\u0069\u0044\u006f\u0063 \u002d\u0020\u0068\u0074\u0074p\u003a/\u002fu\u006e\u0069\u0064\u006f\u0063\u002e\u0069o"; -}; +// PdfRectangle is a definition of a rectangle. +type PdfRectangle struct{Llx float64 ;Lly float64 ;Urx float64 ;Ury float64 ;};func (_daac *PdfWriter )setDocInfo (_aaecd _dg .PdfObject ){if _daac .hasObject (_daac ._efbfa ){delete (_daac ._fdbfa ,_daac ._efbfa );delete (_daac ._cffaa ,_daac ._efbfa ); +for _bafgc ,_ddeebg :=range _daac ._agaba {if _ddeebg ==_daac ._efbfa {copy (_daac ._agaba [_bafgc :],_daac ._agaba [_bafgc +1:]);_daac ._agaba [len (_daac ._agaba )-1]=nil ;_daac ._agaba =_daac ._agaba [:len (_daac ._agaba )-1];break ;};};};_fgggf :=_dg .PdfIndirectObject {}; +_fgggf .PdfObject =_aaecd ;_daac ._efbfa =&_fgggf ;_daac .addObject (&_fgggf );}; -// ColorToRGB verifies that the input color is an RGB color. Method exists in -// order to satisfy the PdfColorspace interface. -func (_egdce *PdfColorspaceDeviceRGB )ColorToRGB (color PdfColor )(PdfColor ,error ){_cfeb ,_ebfd :=color .(*PdfColorDeviceRGB );if !_ebfd {_adg .Log .Debug ("\u0049\u006e\u0070\u0075\u0074\u0020\u0063\u006f\u006c\u006f\u0072 \u006e\u006f\u0074\u0020\u0064\u0065\u0076\u0069\u0063\u0065 \u0052\u0047\u0042"); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};return _cfeb ,nil ;};func (_eeg *PdfReader )newPdfActionThreadFromDict (_gcfd *_aff .PdfObjectDictionary )(*PdfActionThread ,error ){_gac ,_ecd :=_dfc (_gcfd .Get ("\u0046")); -if _ecd !=nil {return nil ,_ecd ;};return &PdfActionThread {D :_gcfd .Get ("\u0044"),B :_gcfd .Get ("\u0042"),F :_gac },nil ;};func (_bbfedb *PdfWriter )writeXRefStreams (_efda int ,_aaedf int64 )error {_aeffa :=_efda +1;_bbfedb ._abebd [_aeffa ]=crossReference {Type :1,ObjectNumber :_aeffa ,Offset :_aaedf }; -_beef :=_af .NewBuffer (nil );_fgbeed :=_aff .MakeArray ();for _accb :=0;_accb <=_efda ;{for ;_accb <=_efda ;_accb ++{_dgbdd ,_dbgadc :=_bbfedb ._abebd [_accb ];if _dbgadc &&(!_bbfedb ._ccbe ||_bbfedb ._ccbe &&(_dgbdd .Type ==1&&_dgbdd .Offset >=_bbfedb ._abced ||_dgbdd .Type ==0)){break ; -};};var _dbabg int ;for _dbabg =_accb +1;_dbabg <=_efda ;_dbabg ++{_fedfba ,_ebefd :=_bbfedb ._abebd [_dbabg ];if _ebefd &&(!_bbfedb ._ccbe ||_bbfedb ._ccbe &&(_fedfba .Type ==1&&_fedfba .Offset > _bbfedb ._abced )){continue ;};break ;};_fgbeed .Append (_aff .MakeInteger (int64 (_accb )),_aff .MakeInteger (int64 (_dbabg -_accb ))); -for _efggc :=_accb ;_efggc < _dbabg ;_efggc ++{_bfgdg :=_bbfedb ._abebd [_efggc ];switch _bfgdg .Type {case 0:_d .Write (_beef ,_d .BigEndian ,byte (0));_d .Write (_beef ,_d .BigEndian ,uint32 (0));_d .Write (_beef ,_d .BigEndian ,uint16 (0xFFFF));case 1:_d .Write (_beef ,_d .BigEndian ,byte (1)); -_d .Write (_beef ,_d .BigEndian ,uint32 (_bfgdg .Offset ));_d .Write (_beef ,_d .BigEndian ,uint16 (_bfgdg .Generation ));case 2:_d .Write (_beef ,_d .BigEndian ,byte (2));_d .Write (_beef ,_d .BigEndian ,uint32 (_bfgdg .ObjectNumber ));_d .Write (_beef ,_d .BigEndian ,uint16 (_bfgdg .Index )); -};};_accb =_dbabg +1;};_dfbef ,_edgdda :=_aff .MakeStream (_beef .Bytes (),_aff .NewFlateEncoder ());if _edgdda !=nil {return _edgdda ;};_dfbef .ObjectNumber =int64 (_aeffa );_dfbef .PdfObjectDictionary .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0058\u0052\u0065\u0066")); -_dfbef .PdfObjectDictionary .Set ("\u0057",_aff .MakeArray (_aff .MakeInteger (1),_aff .MakeInteger (4),_aff .MakeInteger (2)));_dfbef .PdfObjectDictionary .Set ("\u0049\u006e\u0064e\u0078",_fgbeed );_dfbef .PdfObjectDictionary .Set ("\u0053\u0069\u007a\u0065",_aff .MakeInteger (int64 (_aeffa ))); -_dfbef .PdfObjectDictionary .Set ("\u0049\u006e\u0066\u006f",_bbfedb ._bacec );_dfbef .PdfObjectDictionary .Set ("\u0052\u006f\u006f\u0074",_bbfedb ._adefd );if _bbfedb ._ccbe &&_bbfedb ._gecec > 0{_dfbef .PdfObjectDictionary .Set ("\u0050\u0072\u0065\u0076",_aff .MakeInteger (_bbfedb ._gecec )); -};if _bbfedb ._fcgf !=nil {_dfbef .Set ("\u0045n\u0063\u0072\u0079\u0070\u0074",_bbfedb ._fdedd );};if _bbfedb ._dfdcg ==nil &&_bbfedb ._bacb !=""&&_bbfedb ._aceag !=""{_bbfedb ._dfdcg =_aff .MakeArray (_aff .MakeHexString (_bbfedb ._bacb ),_aff .MakeHexString (_bbfedb ._aceag )); -};if _bbfedb ._dfdcg !=nil {_adg .Log .Trace ("\u0049d\u0073\u003a\u0020\u0025\u0073",_bbfedb ._dfdcg );_dfbef .Set ("\u0049\u0044",_bbfedb ._dfdcg );};_bbfedb .writeObject (int (_dfbef .ObjectNumber ),_dfbef );return nil ;}; +// NewPdfReaderWithOpts creates a new PdfReader for an input io.ReadSeeker interface +// with a ReaderOpts. +// If ReaderOpts is nil it will be set to default value from NewReaderOpts. +func NewPdfReaderWithOpts (rs _cf .ReadSeeker ,opts *ReaderOpts )(*PdfReader ,error ){const _dfdcb ="\u006d\u006f\u0064\u0065\u006c\u003a\u004e\u0065\u0077\u0050\u0064f\u0052\u0065\u0061\u0064\u0065\u0072\u0057\u0069\u0074\u0068O\u0070\u0074\u0073";return _dcdd (rs ,opts ,true ,_dfdcb ); +}; -// ToPdfObject returns the PDF representation of the shading pattern. -func (_acgg *PdfShadingPatternType3 )ToPdfObject ()_aff .PdfObject {_acgg .PdfPattern .ToPdfObject ();_ebgca :=_acgg .getDict ();if _acgg .Shading !=nil {_ebgca .Set ("\u0053h\u0061\u0064\u0069\u006e\u0067",_acgg .Shading .ToPdfObject ());};if _acgg .Matrix !=nil {_ebgca .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_acgg .Matrix ); -};if _acgg .ExtGState !=nil {_ebgca .Set ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_acgg .ExtGState );};return _acgg ._cfegc ;}; +// DecodeArray returns the range of color component values in DeviceRGB colorspace. +func (_fgda *PdfColorspaceDeviceRGB )DecodeArray ()[]float64 {return []float64 {0.0,1.0,0.0,1.0,0.0,1.0};};func _fgea (_dbd *PdfPage )map[_dg .PdfObjectName ]_dg .PdfObject {_efac :=make (map[_dg .PdfObjectName ]_dg .PdfObject );if _dbd .Resources ==nil {return _efac ; +};if _dbd .Resources .Font !=nil {if _cdfa ,_afbda :=_dg .GetDict (_dbd .Resources .Font );_afbda {for _ ,_befb :=range _cdfa .Keys (){_efac [_befb ]=_cdfa .Get (_befb );};};};if _dbd .Resources .ExtGState !=nil {if _fga ,_ebag :=_dg .GetDict (_dbd .Resources .ExtGState ); +_ebag {for _ ,_gdec :=range _fga .Keys (){_efac [_gdec ]=_fga .Get (_gdec );};};};if _dbd .Resources .XObject !=nil {if _cfbc ,_bfddb :=_dg .GetDict (_dbd .Resources .XObject );_bfddb {for _ ,_gfeb :=range _cfbc .Keys (){_efac [_gfeb ]=_cfbc .Get (_gfeb ); +};};};if _dbd .Resources .Pattern !=nil {if _fbcg ,_dcge :=_dg .GetDict (_dbd .Resources .Pattern );_dcge {for _ ,_adbe :=range _fbcg .Keys (){_efac [_adbe ]=_fbcg .Get (_adbe );};};};if _dbd .Resources .Shading !=nil {if _gagg ,_afad :=_dg .GetDict (_dbd .Resources .Shading ); +_afad {for _ ,_gcfag :=range _gagg .Keys (){_efac [_gcfag ]=_gagg .Get (_gcfag );};};};if _dbd .Resources .ProcSet !=nil {if _ddbd ,_ccef :=_dg .GetDict (_dbd .Resources .ProcSet );_ccef {for _ ,_aggg :=range _ddbd .Keys (){_efac [_aggg ]=_ddbd .Get (_aggg ); +};};};if _dbd .Resources .Properties !=nil {if _agac ,_abbc :=_dg .GetDict (_dbd .Resources .Properties );_abbc {for _ ,_cccce :=range _agac .Keys (){_efac [_cccce ]=_agac .Get (_cccce );};};};return _efac ;};func (_dfabae *PdfWriter )adjustXRefAffectedVersion (_cgggd bool ){if _cgggd &&_dfabae ._efacd .Major ==1&&_dfabae ._efacd .Minor < 5{_dfabae ._efacd .Minor =5; +};};func (_gega *PdfFont )baseFields ()*fontCommon {if _gega ._cadf ==nil {_ag .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0062\u0061\u0073\u0065\u0046\u0069\u0065l\u0064s\u002e \u0063o\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073\u0020\u006e\u0069\u006c\u002e"); +return nil ;};return _gega ._cadf .baseFields ();};func (_eeagd *pdfFontType0 )baseFields ()*fontCommon {return &_eeagd .fontCommon }; -// Evaluate runs the function on the passed in slice and returns the results. -func (_gcacb *PdfFunctionType2 )Evaluate (x []float64 )([]float64 ,error ){if len (x )!=1{_adg .Log .Error ("\u004f\u006e\u006c\u0079 o\u006e\u0065\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0061\u006c\u006c\u006f\u0077e\u0064");return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b"); -};_fcfba :=[]float64 {0.0};if _gcacb .C0 !=nil {_fcfba =_gcacb .C0 ;};_cabc :=[]float64 {1.0};if _gcacb .C1 !=nil {_cabc =_gcacb .C1 ;};var _fcad []float64 ;for _dgaf :=0;_dgaf < len (_fcfba );_dgaf ++{_gabgb :=_fcfba [_dgaf ]+_cf .Pow (x [0],_gcacb .N )*(_cabc [_dgaf ]-_fcfba [_dgaf ]); -_fcad =append (_fcad ,_gabgb );};return _fcad ,nil ;}; +// Set applies flag fl to the flag's bitmask and returns the combined flag. +func (_gaga FieldFlag )Set (fl FieldFlag )FieldFlag {return FieldFlag (_gaga .Mask ()|fl .Mask ())}; -// PdfBorderStyle represents a border style dictionary (12.5.4 Border Styles p. 394). -type PdfBorderStyle struct{W *float64 ;S *BorderStyle ;D *[]int ;_bgcf _aff .PdfObject ;}; +// Encoder returns the font's text encoder. +func (_cgace *pdfFontSimple )Encoder ()_bd .TextEncoder {if _cgace ._bdeed !=nil {return _cgace ._bdeed ;};if _cgace ._dbdb !=nil {return _cgace ._dbdb ;};_aefdg ,_ :=_bd .NewSimpleTextEncoder ("\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",nil ); +return _aefdg ;}; -// NewPdfAnnotationRedact returns a new redact annotation. -func NewPdfAnnotationRedact ()*PdfAnnotationRedact {_cccc :=NewPdfAnnotation ();_gfge :=&PdfAnnotationRedact {};_gfge .PdfAnnotation =_cccc ;_gfge .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_cccc .SetContext (_gfge );return _gfge ;};func _dfc (_fbc _aff .PdfObject )(*PdfFilespec ,error ){if _fbc ==nil {return nil ,nil ; -};return NewPdfFilespecFromObj (_fbc );}; +// CharMetrics represents width and height metrics of a glyph. +type CharMetrics =_bbg .CharMetrics ; -// ToPdfObject implements interface PdfModel. -func (_bda *PdfActionRendition )ToPdfObject ()_aff .PdfObject {_bda .PdfAction .ToPdfObject ();_bceb :=_bda ._df ;_fcb :=_bceb .PdfObject .(*_aff .PdfObjectDictionary );_fcb .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeRendition )));_fcb .SetIfNotNil ("\u0052",_bda .R ); -_fcb .SetIfNotNil ("\u0041\u004e",_bda .AN );_fcb .SetIfNotNil ("\u004f\u0050",_bda .OP );_fcb .SetIfNotNil ("\u004a\u0053",_bda .JS );return _bceb ;}; +// HasFontByName checks if has font resource by name. +func (_gfgd *PdfPage )HasFontByName (name _dg .PdfObjectName )bool {_faccg ,_bdefd :=_gfgd .Resources .Font .(*_dg .PdfObjectDictionary );if !_bdefd {return false ;};if _adffg :=_faccg .Get (name );_adffg !=nil {return true ;};return false ;}; -// ToPdfObject converts rectangle to a PDF object. -func (_bbcgeb *PdfRectangle )ToPdfObject ()_aff .PdfObject {return _aff .MakeArray (_aff .MakeFloat (_bbcgeb .Llx ),_aff .MakeFloat (_bbcgeb .Lly ),_aff .MakeFloat (_bbcgeb .Urx ),_aff .MakeFloat (_bbcgeb .Ury ));}; +// PdfColorspaceDeviceN represents a DeviceN color space. DeviceN color spaces are similar to Separation color +// spaces, except they can contain an arbitrary number of color components. +/* + Format: [/DeviceN names alternateSpace tintTransform] + or: [/DeviceN names alternateSpace tintTransform attributes] +*/ +type PdfColorspaceDeviceN struct{ColorantNames *_dg .PdfObjectArray ;AlternateSpace PdfColorspace ;TintTransform PdfFunction ;Attributes *PdfColorspaceDeviceNAttributes ;_effag *_dg .PdfIndirectObject ;};func (_fegbc *pdfFontSimple )getFontDescriptor ()*PdfFontDescriptor {if _cccf :=_fegbc ._ccfb ; +_cccf !=nil {return _cccf ;};return _fegbc ._gagbe ;}; -// EnableByName LTV enables the signature dictionary of the PDF AcroForm -// field identified the specified name. The signing certificate chain is -// extracted from the signature dictionary. Optionally, additional certificates -// can be specified through the `extraCerts` parameter. The LTV client attempts -// to build the certificate chain up to a trusted root by downloading any -// missing certificates. -func (_bdaeg *LTV )EnableByName (name string ,extraCerts []*_fb .Certificate )error {_edegc :=_bdaeg ._bbbab ._dafgd .AcroForm ;for _ ,_adbgc :=range _edegc .AllFields (){_cbacd ,_ :=_adbgc .GetContext ().(*PdfFieldSignature );if _cbacd ==nil {continue ; -};if _bbag :=_cbacd .PartialName ();_bbag !=name {continue ;};return _bdaeg .Enable (_cbacd .V ,extraCerts );};return nil ;}; +// NewPdfAnnotationFreeText returns a new free text annotation. +func NewPdfAnnotationFreeText ()*PdfAnnotationFreeText {_fbd :=NewPdfAnnotation ();_fdb :=&PdfAnnotationFreeText {};_fdb .PdfAnnotation =_fbd ;_fdb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_fbd .SetContext (_fdb );return _fdb ;}; -// GetContainingPdfObject returns the container of the image object (indirect object). -func (_ddcdg *XObjectImage )GetContainingPdfObject ()_aff .PdfObject {return _ddcdg ._fccgd }; +// M returns the value of the magenta component of the color. +func (_cfef *PdfColorDeviceCMYK )M ()float64 {return _cfef [1]}; -// ToPdfObject converts the PdfFont object to its PDF representation. -func (_cbfae *PdfFont )ToPdfObject ()_aff .PdfObject {if _cbfae ._gebd ==nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0066\u006f\u006e\u0074 \u0063\u006f\u006e\u0074\u0065\u0078\u0074\u0020\u0069\u0073 \u006e\u0069\u006c");return _aff .MakeNull (); -};return _cbfae ._gebd .ToPdfObject ();};func _acgfb (_aafd *PdfField ,_fgfcf _aff .PdfObject )error {switch _aafd .GetContext ().(type ){case *PdfFieldText :switch _gddc :=_fgfcf .(type ){case *_aff .PdfObjectName :_daba :=_gddc ;_adg .Log .Debug ("\u0055\u006e\u0065\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u003a\u0020\u0047\u006f\u0074 \u0056\u0020\u0061\u0073\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u003e\u0020c\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0074\u006f s\u0074\u0072\u0069\u006e\u0067\u0020\u0027\u0025\u0073\u0027",_daba .String ()); -_aafd .V =_aff .MakeEncodedString (_gddc .String (),true );case *_aff .PdfObjectString :_aafd .V =_aff .MakeEncodedString (_gddc .String (),true );default:_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0055\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0074\u0065\u0078\u0074\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u0056\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0025\u0054\u0020\u0028\u0025\u0023\u0076\u0029",_gddc ,_gddc ); -};case *PdfFieldButton :switch _fgfcf .(type ){case *_aff .PdfObjectName :if len (_fgfcf .String ())> 0{_aafd .V =_fgfcf ;_dcaee (_aafd ,_fgfcf );};case *_aff .PdfObjectString :if len (_fgfcf .String ())> 0{_aafd .V =_aff .MakeName (_fgfcf .String ()); -_dcaee (_aafd ,_aafd .V );};default:_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u004e\u0045\u0058P\u0045\u0043\u0054\u0045\u0044\u0020\u0025\u0073\u0020\u002d>\u0020\u0025\u0076",_aafd .PartialName (),_fgfcf );_aafd .V =_fgfcf ; -};case *PdfFieldChoice :switch _fgfcf .(type ){case *_aff .PdfObjectName :if len (_fgfcf .String ())> 0{_aafd .V =_aff .MakeString (_fgfcf .String ());_dcaee (_aafd ,_fgfcf );};case *_aff .PdfObjectString :if len (_fgfcf .String ())> 0{_aafd .V =_fgfcf ; -_dcaee (_aafd ,_aff .MakeName (_fgfcf .String ()));};default:_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0055\u004e\u0045\u0058P\u0045\u0043\u0054\u0045\u0044\u0020\u0025\u0073\u0020\u002d>\u0020\u0025\u0076",_aafd .PartialName (),_fgfcf ); -_aafd .V =_fgfcf ;};case *PdfFieldSignature :_adg .Log .Debug ("\u0054\u004f\u0044\u004f\u003a \u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0061\u0070\u0070e\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020\u0079\u0065\u0074\u003a\u0020\u0025\u0073\u002f\u0025v",_aafd .PartialName (),_fgfcf ); -};return nil ;};func (_ddecb *PdfReader )loadStructure ()error {if _ddecb ._gaece .GetCrypter ()!=nil &&!_ddecb ._gaece .IsAuthenticated (){return _e .Errorf ("\u0066\u0069\u006ce\u0020\u006e\u0065\u0065d\u0020\u0074\u006f\u0020\u0062\u0065\u0020d\u0065\u0063\u0072\u0079\u0070\u0074\u0065\u0064\u0020\u0066\u0069\u0072\u0073\u0074"); -};_ggbbce :=_ddecb ._gaece .GetTrailer ();if _ggbbce ==nil {return _e .Errorf ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072");};_ebfcc ,_aaad :=_ggbbce .Get ("\u0052\u006f\u006f\u0074").(*_aff .PdfObjectReference ); -if !_aaad {return _e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0052\u006f\u006ft\u0020\u0028\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u003a \u0025\u0073\u0029",_ggbbce );};_ggcae ,_dcaed :=_ddecb ._gaece .LookupByReference (*_ebfcc ); -if _dcaed !=nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0072\u0065\u0061\u0064\u0020\u0072\u006f\u006f\u0074\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0025\u0073",_dcaed ); -return _dcaed ;};_cbafg ,_aaad :=_ggcae .(*_aff .PdfIndirectObject );if !_aaad {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0028\u0072\u006f\u006f\u0074\u0020\u0025\u0071\u0029\u0020\u0028\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0025\u0073\u0029",_ggcae ,*_ggbbce ); -return _g .New ("\u006di\u0073s\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067");};_fbcfd ,_aaad :=(*_cbafg ).PdfObject .(*_aff .PdfObjectDictionary );if !_aaad {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020I\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u0061t\u0061\u006c\u006fg\u0020(\u0025\u0073\u0029",_cbafg .PdfObject ); -return _g .New ("\u0069n\u0076a\u006c\u0069\u0064\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067");};_adg .Log .Trace ("C\u0061\u0074\u0061\u006c\u006f\u0067\u003a\u0020\u0025\u0073",_fbcfd );_faedf ,_aaad :=_fbcfd .Get ("\u0050\u0061\u0067e\u0073").(*_aff .PdfObjectReference ); -if !_aaad {return _g .New ("\u0070\u0061\u0067\u0065\u0073\u0020\u0069\u006e\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020b\u0065\u0020\u0061\u0020\u0072e\u0066\u0065r\u0065\u006e\u0063\u0065");};_fbgfg ,_dcaed :=_ddecb ._gaece .LookupByReference (*_faedf ); -if _dcaed !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020F\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020r\u0065\u0061\u0064 \u0070a\u0067\u0065\u0073");return _dcaed ;};_edbce ,_aaad :=_fbgfg .(*_aff .PdfIndirectObject );if !_aaad {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020P\u0061\u0067\u0065\u0073\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0069n\u0076a\u006c\u0069\u0064"); -_adg .Log .Debug ("\u006f\u0070\u003a\u0020\u0025\u0070",_edbce );return _g .New ("p\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0069\u006e\u0076al\u0069\u0064");};_babac ,_aaad :=_edbce .PdfObject .(*_aff .PdfObjectDictionary );if !_aaad {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0050\u0061\u0067\u0065\u0073\u0020\u006f\u0062j\u0065c\u0074\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0025\u0073\u0029",_edbce ); -return _g .New ("p\u0061g\u0065\u0073\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0069\u006e\u0076al\u0069\u0064");};_dbag ,_aaad :=_aff .GetInt (_babac .Get ("\u0043\u006f\u0075n\u0074"));if !_aaad {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0050\u0061\u0067\u0065\u0073\u0020\u0063\u006f\u0075\u006e\u0074\u0020\u006fb\u006a\u0065\u0063\u0074\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -return _g .New ("\u0070\u0061\u0067\u0065s \u0063\u006f\u0075\u006e\u0074\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064");};if _ ,_aaad =_aff .GetName (_babac .Get ("\u0054\u0079\u0070\u0065"));!_aaad {_adg .Log .Debug ("\u0050\u0061\u0067\u0065\u0073\u0020\u0064\u0069\u0063\u0074\u0020T\u0079\u0070\u0065\u0020\u0066\u0069\u0065\u006cd\u0020n\u006f\u0074\u0020\u0073\u0065\u0074\u002e\u0020\u0053\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0054\u0079p\u0065\u0020\u0074\u006f\u0020\u0050\u0061\u0067\u0065\u0073\u002e"); -_babac .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0050\u0061\u0067e\u0073"));};if _beaba ,_caae :=_aff .GetInt (_babac .Get ("\u0052\u006f\u0074\u0061\u0074\u0065"));_caae {_gfaag :=int64 (*_beaba );_ddecb .Rotate =&_gfaag ;};_ddecb ._geae =_ebfcc ; -_ddecb ._dcadd =_fbcfd ;_ddecb ._gacfc =_babac ;_ddecb ._efcfb =_edbce ;_ddecb ._fddff =int (*_dbag );_ddecb ._bfgfec =[]*_aff .PdfIndirectObject {};_cegbd :=map[_aff .PdfObject ]struct{}{};_dcaed =_ddecb .buildPageList (_edbce ,nil ,_cegbd );if _dcaed !=nil {return _dcaed ; -};_adg .Log .Trace ("\u002d\u002d\u002d");_adg .Log .Trace ("\u0054\u004f\u0043");_adg .Log .Trace ("\u0050\u0061\u0067e\u0073");_adg .Log .Trace ("\u0025\u0064\u003a\u0020\u0025\u0073",len (_ddecb ._bfgfec ),_ddecb ._bfgfec );_ddecb ._ecbcb ,_dcaed =_ddecb .loadOutlines (); -if _dcaed !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0062\u0075i\u006c\u0064\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065 t\u0072\u0065\u0065 \u0028%\u0073\u0029",_dcaed ); -return _dcaed ;};_ddecb .AcroForm ,_dcaed =_ddecb .loadForms ();if _dcaed !=nil {return _dcaed ;};_ddecb .DSS ,_dcaed =_ddecb .loadDSS ();if _dcaed !=nil {return _dcaed ;};_ddecb ._cdea ,_dcaed =_ddecb .loadPerms ();if _dcaed !=nil {return _dcaed ;};return nil ; -}; +// FlattenFields flattens the form fields and annotations for the PDF loaded in `pdf` and makes +// non-editable. +// Looks up all widget annotations corresponding to form fields and flattens them by drawing the content +// through the content stream rather than annotations. +// References to flattened annotations will be removed from Page Annots array. For fields the AcroForm entry +// will be emptied. +// When `allannots` is true, all annotations will be flattened. Keep false if want to keep non-form related +// annotations intact. +// When `appgen` is not nil, it will be used to generate appearance streams for the field annotations. +func (_dagd *PdfReader )FlattenFields (allannots bool ,appgen FieldAppearanceGenerator )error {return _dagd .flattenFieldsWithOpts (allannots ,appgen ,nil );}; -// GetContainingPdfObject implements interface PdfModel. -func (_edca *PdfSignature )GetContainingPdfObject ()_aff .PdfObject {return _edca ._gagbc }; +// Encoder returns the font's text encoder. +func (_eage pdfFontType3 )Encoder ()_bd .TextEncoder {return _eage ._geffb }; -// ToPdfObject implements interface PdfModel. -func (_ebab *PdfAnnotationScreen )ToPdfObject ()_aff .PdfObject {_ebab .PdfAnnotation .ToPdfObject ();_eded :=_ebab ._ccfb ;_cbgd :=_eded .PdfObject .(*_aff .PdfObjectDictionary );_cbgd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0053\u0063\u0072\u0065\u0065\u006e")); -_cbgd .SetIfNotNil ("\u0054",_ebab .T );_cbgd .SetIfNotNil ("\u004d\u004b",_ebab .MK );_cbgd .SetIfNotNil ("\u0041",_ebab .A );_cbgd .SetIfNotNil ("\u0041\u0041",_ebab .AA );return _eded ;}; +// NewPdfShadingPatternType3 creates an empty shading pattern type 3 object. +func NewPdfShadingPatternType3 ()*PdfShadingPatternType3 {_faeaf :=&PdfShadingPatternType3 {};_faeaf .Matrix =_dg .MakeArrayFromIntegers ([]int {1,0,0,1,0,0});_faeaf .PdfPattern =&PdfPattern {};_faeaf .PdfPattern .PatternType =int64 (*_dg .MakeInteger (2)); +_faeaf .PdfPattern ._cgdcc =_faeaf ;_faeaf .PdfPattern ._eacce =_dg .MakeIndirectObject (_dg .MakeDict ());return _faeaf ;}; -// SetPdfAuthor sets the Author attribute of the output PDF. -func SetPdfAuthor (author string ){_aebda .Lock ();defer _aebda .Unlock ();_gabfb =author }; +// ToPdfObject converts the pdfCIDFontType0 to a PDF representation. +func (_fefb *pdfCIDFontType0 )ToPdfObject ()_dg .PdfObject {return _dg .MakeNull ()}; -// IsCheckbox returns true if the button field represents a checkbox, false otherwise. -func (_bfgee *PdfFieldButton )IsCheckbox ()bool {return _bfgee .GetType ()==ButtonTypeCheckbox };const (ButtonTypeCheckbox ButtonType =iota ;ButtonTypePush ButtonType =iota ;ButtonTypeRadio ButtonType =iota ;); +// ToPdfObject implements interface PdfModel. +func (_ade *PdfActionResetForm )ToPdfObject ()_dg .PdfObject {_ade .PdfAction .ToPdfObject ();_eae :=_ade ._cbd ;_bfg :=_eae .PdfObject .(*_dg .PdfObjectDictionary );_bfg .SetIfNotNil ("\u0053",_dg .MakeName (string (ActionTypeResetForm )));_bfg .SetIfNotNil ("\u0046\u0069\u0065\u006c\u0064\u0073",_ade .Fields ); +_bfg .SetIfNotNil ("\u0046\u006c\u0061g\u0073",_ade .Flags );return _eae ;}; -// NewPdfAnnotationScreen returns a new screen annotation. -func NewPdfAnnotationScreen ()*PdfAnnotationScreen {_ecg :=NewPdfAnnotation ();_ggfe :=&PdfAnnotationScreen {};_ggfe .PdfAnnotation =_ecg ;_ecg .SetContext (_ggfe );return _ggfe ;}; +// NewPdfAnnotationStamp returns a new stamp annotation. +func NewPdfAnnotationStamp ()*PdfAnnotationStamp {_cff :=NewPdfAnnotation ();_bfdd :=&PdfAnnotationStamp {};_bfdd .PdfAnnotation =_cff ;_bfdd .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_cff .SetContext (_bfdd );return _bfdd ;}; -// XObjectImage (Table 89 in 8.9.5.1). -// Implements PdfModel interface. -type XObjectImage struct{ +// PdfShadingPatternType2 is shading patterns that will use a Type 2 shading pattern (Axial). +type PdfShadingPatternType2 struct{*PdfPattern ;Shading *PdfShadingType2 ;Matrix *_dg .PdfObjectArray ;ExtGState _dg .PdfObject ;}; -//ColorSpace PdfObject -Width *int64 ;Height *int64 ;ColorSpace PdfColorspace ;BitsPerComponent *int64 ;Filter _aff .StreamEncoder ;Intent _aff .PdfObject ;ImageMask _aff .PdfObject ;Mask _aff .PdfObject ;Matte _aff .PdfObject ;Decode _aff .PdfObject ;Interpolate _aff .PdfObject ; -Alternatives _aff .PdfObject ;SMask _aff .PdfObject ;SMaskInData _aff .PdfObject ;Name _aff .PdfObject ;StructParent _aff .PdfObject ;ID _aff .PdfObject ;OPI _aff .PdfObject ;Metadata _aff .PdfObject ;OC _aff .PdfObject ;Stream []byte ;_fccgd *_aff .PdfObjectStream ; +// ToGoTime returns the date in time.Time format. +func (_ebadb PdfDate )ToGoTime ()_a .Time {_gcdee :=int (_ebadb ._bdde *60*60+_ebadb ._gafe *60);switch _ebadb ._ggbdg {case '-':_gcdee =-_gcdee ;case 'Z':_gcdee =0;};_adeac :=_b .Sprintf ("\u0055\u0054\u0043\u0025\u0063\u0025\u002e\u0032\u0064\u0025\u002e\u0032\u0064",_ebadb ._ggbdg ,_ebadb ._bdde ,_ebadb ._gafe ); +_eaecc :=_a .FixedZone (_adeac ,_gcdee );return _a .Date (int (_ebadb ._bgfdb ),_a .Month (_ebadb ._gbbge ),int (_ebadb ._cbad ),int (_ebadb ._cade ),int (_ebadb ._ccgbg ),int (_ebadb ._aacfe ),0,_eaecc );};func _eceba (_bcgeb *_dg .PdfObjectDictionary )*VRI {_ecde ,_ :=_dg .GetString (_bcgeb .Get ("\u0054\u0055")); +_adgcc ,_ :=_dg .GetString (_bcgeb .Get ("\u0054\u0053"));return &VRI {Cert :_eeafe (_bcgeb .Get ("\u0043\u0065\u0072\u0074")),OCSP :_eeafe (_bcgeb .Get ("\u004f\u0043\u0053\u0050")),CRL :_eeafe (_bcgeb .Get ("\u0043\u0052\u004c")),TU :_ecde ,TS :_adgcc }; }; -// SetRotation sets the rotation of all pages added to writer. The rotation is -// specified in degrees and must be a multiple of 90. -// The Rotate field of individual pages has priority over the global rotation. -func (_acada *PdfWriter )SetRotation (rotate int64 )error {_efade ,_ggbf :=_aff .GetDict (_acada ._edgeg );if !_ggbf {return ErrTypeCheck ;};_efade .Set ("\u0052\u006f\u0074\u0061\u0074\u0065",_aff .MakeInteger (rotate ));return nil ;}; - -// NewPermissions returns a new permissions object. -func NewPermissions (docMdp *PdfSignature )*Permissions {_beaec :=Permissions {};_beaec .DocMDP =docMdp ;_afeb :=_aff .MakeDict ();_afeb .Set ("\u0044\u006f\u0063\u004d\u0044\u0050",docMdp .ToPdfObject ());_beaec ._cbdgg =_afeb ;return &_beaec ;}; - -// ToPdfObject converts the pdfFontSimple to its PDF representation for outputting. -func (_dgag *pdfFontSimple )ToPdfObject ()_aff .PdfObject {if _dgag ._effd ==nil {_dgag ._effd =&_aff .PdfIndirectObject {};};_gfef :=_dgag .baseFields ().asPdfObjectDictionary ("");_dgag ._effd .PdfObject =_gfef ;if _dgag .FirstChar !=nil {_gfef .Set ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r",_dgag .FirstChar ); -};if _dgag .LastChar !=nil {_gfef .Set ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072",_dgag .LastChar );};if _dgag .Widths !=nil {_gfef .Set ("\u0057\u0069\u0064\u0074\u0068\u0073",_dgag .Widths );};if _dgag .Encoding !=nil {_gfef .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_dgag .Encoding ); -}else if _dgag ._fdgc !=nil {_cfff :=_dgag ._fdgc .ToPdfObject ();if _cfff !=nil {_gfef .Set ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",_cfff );};};return _dgag ._effd ;}; - -// FlattenFieldsWithOpts flattens the AcroForm fields of the reader using the -// provided field appearance generator and the specified options. If no options -// are specified, all form fields are flattened. -// If a filter function is provided using the opts parameter, only the filtered -// fields are flattened. Otherwise, all form fields are flattened. -// At the end of the process, the AcroForm contains all the fields which were -// not flattened. If all fields are flattened, the reader's AcroForm field -// is set to nil. -func (_ggab *PdfReader )FlattenFieldsWithOpts (appgen FieldAppearanceGenerator ,opts *FieldFlattenOpts )error {return _ggab .flattenFieldsWithOpts (false ,appgen ,opts );}; +// GetCustomInfo returns a custom info value for the specified name. +func (_aacc *PdfInfo )GetCustomInfo (name string )*_dg .PdfObjectString {var _egfdd *_dg .PdfObjectString ;if _aacc ._dccdg ==nil {return _egfdd ;};if _ggbf ,_fcdbb :=_aacc ._dccdg .Get (*_dg .MakeName (name )).(*_dg .PdfObjectString );_fcdbb {_egfdd =_ggbf ; +};return _egfdd ;}; -// RemovePage removes a page by number. -func (_adaf *PdfAppender )RemovePage (pageNum int ){_cca :=pageNum -1;_adaf ._bbgg =append (_adaf ._bbgg [0:_cca ],_adaf ._bbgg [pageNum :]...);};func (_aadf *PdfReader )newPdfAnnotationRichMediaFromDict (_fdag *_aff .PdfObjectDictionary )(*PdfAnnotationRichMedia ,error ){_adag :=&PdfAnnotationRichMedia {}; -_adag .RichMediaSettings =_fdag .Get ("\u0052\u0069\u0063\u0068\u004d\u0065\u0064\u0069\u0061\u0053\u0065\u0074t\u0069\u006e\u0067\u0073");_adag .RichMediaContent =_fdag .Get ("\u0052\u0069c\u0068\u004d\u0065d\u0069\u0061\u0043\u006f\u006e\u0074\u0065\u006e\u0074"); -return _adag ,nil ;}; +// GetNumComponents returns the number of color components of the colorspace device. +// Returns 3 for a Lab device. +func (_fcdfd *PdfColorspaceLab )GetNumComponents ()int {return 3}; -// GetNumComponents returns the number of input color components, i.e. that are input to the tint transform. -func (_fdda *PdfColorspaceDeviceN )GetNumComponents ()int {return _fdda .ColorantNames .Len ()}; +// ToPdfObject implements interface PdfModel. +func (_ecbgd *PdfAnnotationHighlight )ToPdfObject ()_dg .PdfObject {_ecbgd .PdfAnnotation .ToPdfObject ();_dacd :=_ecbgd ._cdf ;_eggcg :=_dacd .PdfObject .(*_dg .PdfObjectDictionary );_ecbgd .PdfAnnotationMarkup .appendToPdfDictionary (_eggcg );_eggcg .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0048i\u0067\u0068\u006c\u0069\u0067\u0068t")); +_eggcg .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_ecbgd .QuadPoints );return _dacd ;}; -// GetIndirectObjectByNumber retrieves and returns a specific PdfObject by object number. -func (_cgbe *PdfReader )GetIndirectObjectByNumber (number int )(_aff .PdfObject ,error ){_fdec ,_ffdgg :=_cgbe ._gaece .LookupByNumber (number );return _fdec ,_ffdgg ;}; +// PdfShadingType4 is a Free-form Gouraud-shaded triangle mesh. +type PdfShadingType4 struct{*PdfShading ;BitsPerCoordinate *_dg .PdfObjectInteger ;BitsPerComponent *_dg .PdfObjectInteger ;BitsPerFlag *_dg .PdfObjectInteger ;Decode *_dg .PdfObjectArray ;Function []PdfFunction ;}; -// ImageToRGB converts an image in CMYK32 colorspace to an RGB image. -func (_feed *PdfColorspaceDeviceCMYK )ImageToRGB (img Image )(Image ,error ){_adg .Log .Trace ("\u0043\u004d\u0059\u004b\u0033\u0032\u0020\u002d\u003e\u0020\u0052\u0047\u0042");_adg .Log .Trace ("I\u006d\u0061\u0067\u0065\u0020\u0042P\u0043\u003a\u0020\u0025\u0064\u002c \u0043\u006f\u006c\u006f\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u003a\u0020%\u0064",img .BitsPerComponent ,img .ColorComponents ); -_adg .Log .Trace ("\u004c\u0065\u006e \u0064\u0061\u0074\u0061\u003a\u0020\u0025\u0064",len (img .Data ));_adg .Log .Trace ("H\u0065\u0069\u0067\u0068t:\u0020%\u0064\u002c\u0020\u0057\u0069d\u0074\u0068\u003a\u0020\u0025\u0064",img .Height ,img .Width ); -_acaf ,_bgcc :=_gd .NewImage (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,img .Data ,img ._becb ,img ._edgef );if _bgcc !=nil {return Image {},_bgcc ;};_afec ,_bgcc :=_gd .NRGBAConverter .Convert (_acaf );if _bgcc !=nil {return Image {},_bgcc ; -};return _efecb (_afec .Base ()),nil ;}; +// ToPdfObject sets the common field elements. +// Note: Call the more field context's ToPdfObject to set both the generic and +// non-generic information. +func (_ddef *PdfField )ToPdfObject ()_dg .PdfObject {_afcb :=_ddef ._egce ;_ebee :=_afcb .PdfObject .(*_dg .PdfObjectDictionary );_gbaec :=_dg .MakeArray ();for _ ,_eafd :=range _ddef .Kids {_gbaec .Append (_eafd .ToPdfObject ());};for _ ,_efdd :=range _ddef .Annotations {if _efdd ._cdf !=_ddef ._egce {_gbaec .Append (_efdd .GetContext ().ToPdfObject ()); +};};if _ddef .Parent !=nil {_ebee .SetIfNotNil ("\u0050\u0061\u0072\u0065\u006e\u0074",_ddef .Parent .GetContainingPdfObject ());};if _gbaec .Len ()> 0{_ebee .Set ("\u004b\u0069\u0064\u0073",_gbaec );};_ebee .SetIfNotNil ("\u0046\u0054",_ddef .FT );_ebee .SetIfNotNil ("\u0054",_ddef .T ); +_ebee .SetIfNotNil ("\u0054\u0055",_ddef .TU );_ebee .SetIfNotNil ("\u0054\u004d",_ddef .TM );_ebee .SetIfNotNil ("\u0046\u0066",_ddef .Ff );_ebee .SetIfNotNil ("\u0056",_ddef .V );_ebee .SetIfNotNil ("\u0044\u0056",_ddef .DV );_ebee .SetIfNotNil ("\u0041\u0041",_ddef .AA ); +if _ddef .VariableText !=nil {_ebee .SetIfNotNil ("\u0044\u0041",_ddef .VariableText .DA );_ebee .SetIfNotNil ("\u0051",_ddef .VariableText .Q );_ebee .SetIfNotNil ("\u0044\u0053",_ddef .VariableText .DS );_ebee .SetIfNotNil ("\u0052\u0056",_ddef .VariableText .RV ); +};return _afcb ;}; -// HasXObjectByName checks if an XObject with a specified keyName is defined. -func (_bgcb *PdfPageResources )HasXObjectByName (keyName _aff .PdfObjectName )bool {_gacea ,_ :=_bgcb .GetXObjectByName (keyName );return _gacea !=nil ;}; +// NewPdfInfoFromObject creates a new PdfInfo from the input core.PdfObject. +func NewPdfInfoFromObject (obj _dg .PdfObject )(*PdfInfo ,error ){var _aggcd PdfInfo ;_bafcd ,_fcbc :=obj .(*_dg .PdfObjectDictionary );if !_fcbc {return nil ,_b .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0074\u0079p\u0065:\u0020\u0025\u0054",obj ); +};for _ ,_ffag :=range _bafcd .Keys (){switch _ffag {case "\u0054\u0069\u0074l\u0065":_aggcd .Title ,_ =_dg .GetString (_bafcd .Get ("\u0054\u0069\u0074l\u0065"));case "\u0041\u0075\u0074\u0068\u006f\u0072":_aggcd .Author ,_ =_dg .GetString (_bafcd .Get ("\u0041\u0075\u0074\u0068\u006f\u0072")); +case "\u0053u\u0062\u006a\u0065\u0063\u0074":_aggcd .Subject ,_ =_dg .GetString (_bafcd .Get ("\u0053u\u0062\u006a\u0065\u0063\u0074"));case "\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073":_aggcd .Keywords ,_ =_dg .GetString (_bafcd .Get ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073")); +case "\u0043r\u0065\u0061\u0074\u006f\u0072":_aggcd .Creator ,_ =_dg .GetString (_bafcd .Get ("\u0043r\u0065\u0061\u0074\u006f\u0072"));case "\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072":_aggcd .Producer ,_ =_dg .GetString (_bafcd .Get ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072")); +case "\u0054r\u0061\u0070\u0070\u0065\u0064":_aggcd .Trapped ,_ =_dg .GetName (_bafcd .Get ("\u0054r\u0061\u0070\u0070\u0065\u0064"));case "\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065":if _dedeg ,_ebca :=_dg .GetString (_bafcd .Get ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065")); +_ebca &&_dedeg .String ()!=""{_fdfb ,_cadc :=NewPdfDate (_dedeg .String ());if _cadc !=nil {return nil ,_b .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0072e\u0061\u0074\u0069\u006f\u006e\u0044\u0061t\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0077",_cadc ); +};_aggcd .CreationDate =&_fdfb ;};case "\u004do\u0064\u0044\u0061\u0074\u0065":if _cbed ,_gedfa :=_dg .GetString (_bafcd .Get ("\u004do\u0064\u0044\u0061\u0074\u0065"));_gedfa &&_cbed .String ()!=""{_cfgg ,_aegc :=NewPdfDate (_cbed .String ());if _aegc !=nil {return nil ,_b .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u004d\u006f\u0064\u0044a\u0074e\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025w",_aegc ); +};_aggcd .ModifiedDate =&_cfgg ;};default:_bacd ,_ :=_dg .GetString (_bafcd .Get (_ffag ));if _aggcd ._dccdg ==nil {_aggcd ._dccdg =_dg .MakeDict ();};_aggcd ._dccdg .Set (_ffag ,_bacd );};};return &_aggcd ,nil ;};func (_agaf *PdfColorspaceICCBased )String ()string {return "\u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064"; +};func (_badeef *pdfCIDFontType2 )getFontDescriptor ()*PdfFontDescriptor {return _badeef ._ccfb };func _dgdbe ()string {_fgefgf .Lock ();defer _fgefgf .Unlock ();return _bdeaf }; -// String returns a string representation of PdfTransformParamsDocMDP. -func (_befgeg *PdfTransformParamsDocMDP )String ()string {return _e .Sprintf ("\u0025\u0073\u0020\u0050\u003a\u0020\u0025\u0073\u0020V\u003a\u0020\u0025\u0073",_befgeg .Type ,_befgeg .P ,_befgeg .V );}; +// ToPdfObject returns the PDF representation of the function. +func (_acdcg *PdfFunctionType2 )ToPdfObject ()_dg .PdfObject {_dgaf :=_dg .MakeDict ();_dgaf .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_dg .MakeInteger (2));_eggb :=&_dg .PdfObjectArray {};for _ ,_gggc :=range _acdcg .Domain {_eggb .Append (_dg .MakeFloat (_gggc )); +};_dgaf .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_eggb );if _acdcg .Range !=nil {_faged :=&_dg .PdfObjectArray {};for _ ,_egega :=range _acdcg .Range {_faged .Append (_dg .MakeFloat (_egega ));};_dgaf .Set ("\u0052\u0061\u006eg\u0065",_faged );};if _acdcg .C0 !=nil {_defcd :=&_dg .PdfObjectArray {}; +for _ ,_bcbba :=range _acdcg .C0 {_defcd .Append (_dg .MakeFloat (_bcbba ));};_dgaf .Set ("\u0043\u0030",_defcd );};if _acdcg .C1 !=nil {_gaafg :=&_dg .PdfObjectArray {};for _ ,_fgedc :=range _acdcg .C1 {_gaafg .Append (_dg .MakeFloat (_fgedc ));};_dgaf .Set ("\u0043\u0031",_gaafg ); +};_dgaf .Set ("\u004e",_dg .MakeFloat (_acdcg .N ));if _acdcg ._acfde !=nil {_acdcg ._acfde .PdfObject =_dgaf ;return _acdcg ._acfde ;};return _dgaf ;};func (_ebgg *PdfReader )newPdfAnnotationScreenFromDict (_gadb *_dg .PdfObjectDictionary )(*PdfAnnotationScreen ,error ){_bdac :=PdfAnnotationScreen {}; +_bdac .T =_gadb .Get ("\u0054");_bdac .MK =_gadb .Get ("\u004d\u004b");_bdac .A =_gadb .Get ("\u0041");_bdac .AA =_gadb .Get ("\u0041\u0041");return &_bdac ,nil ;}; -// GetAllContentStreams gets all the content streams for a page as one string. -func (_ccgfe *PdfPage )GetAllContentStreams ()(string ,error ){_dedee ,_dgdbc :=_ccgfe .GetContentStreams ();if _dgdbc !=nil {return "",_dgdbc ;};return _ba .Join (_dedee ,"\u0020"),nil ;}; +// NewPdfColorPatternType3 returns an empty color shading pattern type 3 (Radial). +func NewPdfColorPatternType3 ()*PdfColorPatternType3 {_egbc :=&PdfColorPatternType3 {};return _egbc };func (_eddgb *PdfReader )newPdfSignatureFromIndirect (_cece *_dg .PdfIndirectObject )(*PdfSignature ,error ){_dcgad ,_eefca :=_cece .PdfObject .(*_dg .PdfObjectDictionary ); +if !_eefca {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072e\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020a \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +return nil ,ErrTypeCheck ;};if _aceea ,_defeb :=_eddgb ._cadfa .GetModelFromPrimitive (_cece ).(*PdfSignature );_defeb {return _aceea ,nil ;};_gagac :=&PdfSignature {};_gagac ._bbda =_cece ;_gagac .Type ,_ =_dg .GetName (_dcgad .Get ("\u0054\u0079\u0070\u0065")); +_gagac .Filter ,_eefca =_dg .GetName (_dcgad .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"));if !_eefca {_ag .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0053i\u0067\u006e\u0061\u0074\u0075r\u0065\u0020\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); +return nil ,ErrInvalidAttribute ;};_gagac .SubFilter ,_ =_dg .GetName (_dcgad .Get ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r"));_gagac .Contents ,_eefca =_dg .GetString (_dcgad .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if !_eefca {_ag .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0063\u006f\u006et\u0065\u006e\u0074\u0073\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); +return nil ,ErrInvalidAttribute ;};if _ebdde ,_gabed :=_dg .GetArray (_dcgad .Get ("\u0052e\u0066\u0065\u0072\u0065\u006e\u0063e"));_gabed {_gagac .Reference =_dg .MakeArray ();for _ ,_gebcf :=range _ebdde .Elements (){_eeegg ,_aaade :=_dg .GetDict (_gebcf ); +if !_aaade {_ag .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020R\u0065\u0066e\u0072\u0065\u006e\u0063\u0065\u0020\u0063\u006fn\u0074\u0065\u006e\u0074\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0061\u0074\u0065\u0064");return nil ,ErrInvalidAttribute ; +};_edcfgg ,_cggbb :=_eddgb .newPdfSignatureReferenceFromDict (_eeegg );if _cggbb !=nil {return nil ,_cggbb ;};_gagac .Reference .Append (_edcfgg .ToPdfObject ());};};_gagac .Cert =_dcgad .Get ("\u0043\u0065\u0072\u0074");_gagac .ByteRange ,_ =_dg .GetArray (_dcgad .Get ("\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e")); +_gagac .Changes ,_ =_dg .GetArray (_dcgad .Get ("\u0043h\u0061\u006e\u0067\u0065\u0073"));_gagac .Name ,_ =_dg .GetString (_dcgad .Get ("\u004e\u0061\u006d\u0065"));_gagac .M ,_ =_dg .GetString (_dcgad .Get ("\u004d"));_gagac .Location ,_ =_dg .GetString (_dcgad .Get ("\u004c\u006f\u0063\u0061\u0074\u0069\u006f\u006e")); +_gagac .Reason ,_ =_dg .GetString (_dcgad .Get ("\u0052\u0065\u0061\u0073\u006f\u006e"));_gagac .ContactInfo ,_ =_dg .GetString (_dcgad .Get ("C\u006f\u006e\u0074\u0061\u0063\u0074\u0049\u006e\u0066\u006f"));_gagac .R ,_ =_dg .GetInt (_dcgad .Get ("\u0052")); +_gagac .V ,_ =_dg .GetInt (_dcgad .Get ("\u0056"));_gagac .PropBuild ,_ =_dg .GetDict (_dcgad .Get ("\u0050\u0072\u006f\u0070\u005f\u0042\u0075\u0069\u006c\u0064"));_gagac .PropAuthTime ,_ =_dg .GetInt (_dcgad .Get ("\u0050\u0072\u006f\u0070\u005f\u0041\u0075\u0074\u0068\u0054\u0069\u006d\u0065")); +_gagac .PropAuthType ,_ =_dg .GetName (_dcgad .Get ("\u0050\u0072\u006f\u0070\u005f\u0041\u0075\u0074\u0068\u0054\u0079\u0070\u0065"));_eddgb ._cadfa .Register (_cece ,_gagac );return _gagac ,nil ;};func _ebccc (_adfb *fontCommon )*pdfCIDFontType2 {return &pdfCIDFontType2 {fontCommon :*_adfb }}; +func _gcab (_caec *PdfField ,_caaebb _dg .PdfObject ){for _ ,_dfea :=range _caec .Annotations {_dfea .AS =_caaebb ;_dfea .ToPdfObject ();};}; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// component PDF objects. -func (_badd *PdfColorspaceICCBased )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if _badd .Alternate ==nil {if _badd .N ==1{_cfgg :=NewPdfColorspaceDeviceGray ();return _cfgg .ColorFromPdfObjects (objects );}else if _badd .N ==3{_ccab :=NewPdfColorspaceDeviceRGB (); -return _ccab .ColorFromPdfObjects (objects );}else if _badd .N ==4{_adce :=NewPdfColorspaceDeviceCMYK ();return _adce .ColorFromPdfObjects (objects );}else {return nil ,_g .New ("I\u0043\u0043\u0020\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u0061lt\u0065\u0072\u006ea\u0074i\u0076\u0065"); -};};return _badd .Alternate .ColorFromPdfObjects (objects );}; +// Insert adds an outline item as a child of the current outline item, +// at the specified index. +func (_agcce *OutlineItem )Insert (index uint ,item *OutlineItem ){_dffb :=uint (len (_agcce .Entries ));if index > _dffb {index =_dffb ;};_agcce .Entries =append (_agcce .Entries [:index ],append ([]*OutlineItem {item },_agcce .Entries [index :]...)...); +}; -// CustomKeys returns all custom info keys as list. -func (_fgae *PdfInfo )CustomKeys ()[]string {if _fgae ._cgbc ==nil {return nil ;};_dddd :=make ([]string ,len (_fgae ._cgbc .Keys ()));for _ ,_bgff :=range _fgae ._cgbc .Keys (){_dddd =append (_dddd ,_bgff .String ());};return _dddd ;};func _daeaac (_bfceae *_aff .PdfObjectDictionary )(*PdfShadingType7 ,error ){_dfaadc :=PdfShadingType7 {}; -_eeefa :=_bfceae .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065");if _eeefa ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_cgccf ,_beadg :=_eeefa .(*_aff .PdfObjectInteger );if !_beadg {_adg .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_eeefa ); -return nil ,_aff .ErrTypeError ;};_dfaadc .BitsPerCoordinate =_cgccf ;_eeefa =_bfceae .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _eeefa ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); -return nil ,ErrRequiredAttributeMissing ;};_cgccf ,_beadg =_eeefa .(*_aff .PdfObjectInteger );if !_beadg {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_eeefa ); -return nil ,_aff .ErrTypeError ;};_dfaadc .BitsPerComponent =_cgccf ;_eeefa =_bfceae .Get ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067");if _eeefa ==nil {_adg .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065r\u0046\u006c\u0061\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_cgccf ,_beadg =_eeefa .(*_aff .PdfObjectInteger );if !_beadg {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072F\u006c\u0061\u0067\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_eeefa ); -return nil ,_aff .ErrTypeError ;};_dfaadc .BitsPerComponent =_cgccf ;_eeefa =_bfceae .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _eeefa ==nil {_adg .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_ddbfae ,_beadg :=_eeefa .(*_aff .PdfObjectArray );if !_beadg {_adg .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_eeefa ); -return nil ,_aff .ErrTypeError ;};_dfaadc .Decode =_ddbfae ;if _ceeg :=_bfceae .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_ceeg !=nil {_dfaadc .Function =[]PdfFunction {};if _daaaa ,_cacgbf :=_ceeg .(*_aff .PdfObjectArray );_cacgbf {for _ ,_gdff :=range _daaaa .Elements (){_cfcagg ,_fgeg :=_fdfeg (_gdff ); -if _fgeg !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_fgeg );return nil ,_fgeg ;};_dfaadc .Function =append (_dfaadc .Function ,_cfcagg ); -};}else {_fbgef ,_gega :=_fdfeg (_ceeg );if _gega !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_gega );return nil ,_gega ;}; -_dfaadc .Function =append (_dfaadc .Function ,_fbgef );};};return &_dfaadc ,nil ;}; +// SetContext sets the sub pattern (context). Either PdfTilingPattern or PdfShadingPattern. +func (_ecbgc *PdfPattern )SetContext (ctx PdfModel ){_ecbgc ._cgdcc =ctx }; -// ToUnicode returns the name of the font's "ToUnicode" field if there is one, or "" if there isn't. -func (_eecg *PdfFont )ToUnicode ()string {if _eecg .baseFields ()._dcad ==nil {return "";};return _eecg .baseFields ()._dcad .Name ();}; +// PdfAnnotationCircle represents Circle annotations. +// (Section 12.5.6.8). +type PdfAnnotationCircle struct{*PdfAnnotation ;*PdfAnnotationMarkup ;BS _dg .PdfObject ;IC _dg .PdfObject ;BE _dg .PdfObject ;RD _dg .PdfObject ;}; // ToPdfObject implements interface PdfModel. -func (_fbcd *PdfAnnotationPopup )ToPdfObject ()_aff .PdfObject {_fbcd .PdfAnnotation .ToPdfObject ();_dec :=_fbcd ._ccfb ;_edga :=_dec .PdfObject .(*_aff .PdfObjectDictionary );_edga .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0050\u006f\u0070u\u0070")); -_edga .SetIfNotNil ("\u0050\u0061\u0072\u0065\u006e\u0074",_fbcd .Parent );_edga .SetIfNotNil ("\u004f\u0070\u0065\u006e",_fbcd .Open );return _dec ;};func _dccgd (_eaacg *_aff .PdfObjectDictionary )(*PdfShadingType6 ,error ){_fbfcf :=PdfShadingType6 {}; -_fdbfac :=_eaacg .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065");if _fdbfac ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064 \u0061\u0074\u0074\u0072\u0069\u0062\u0075t\u0065\u0020\u006d\u0069\u0073\u0073i\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065\u0072C\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_bbad ,_gfgde :=_fdbfac .(*_aff .PdfObjectInteger );if !_gfgde {_adg .Log .Debug ("\u0042\u0069\u0074\u0073\u0050e\u0072\u0043\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0020\u006eo\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_fdbfac ); -return nil ,_aff .ErrTypeError ;};_fbfcf .BitsPerCoordinate =_bbad ;_fdbfac =_eaacg .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074");if _fdbfac ==nil {_adg .Log .Debug ("\u0052e\u0071\u0075i\u0072\u0065\u0064\u0020a\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073in\u0067\u003a\u0020B\u0069\u0074s\u0050\u0065\u0072\u0043\u006f\u006dp\u006f\u006ee\u006e\u0074"); -return nil ,ErrRequiredAttributeMissing ;};_bbad ,_gfgde =_fdbfac .(*_aff .PdfObjectInteger );if !_gfgde {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065r \u0028\u0067\u006ft\u0020%\u0054\u0029",_fdbfac ); -return nil ,_aff .ErrTypeError ;};_fbfcf .BitsPerComponent =_bbad ;_fdbfac =_eaacg .Get ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067");if _fdbfac ==nil {_adg .Log .Debug ("\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072i\u0062\u0075\u0074\u0065\u0020\u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0042\u0069\u0074\u0073\u0050\u0065r\u0046\u006c\u0061\u0067"); -return nil ,ErrRequiredAttributeMissing ;};_bbad ,_gfgde =_fdbfac .(*_aff .PdfObjectInteger );if !_gfgde {_adg .Log .Debug ("B\u0069\u0074\u0073\u0050\u0065\u0072F\u006c\u0061\u0067\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0074e\u0067\u0065\u0072\u0020\u0028\u0067\u006f\u0074\u0020\u0025T\u0029",_fdbfac ); -return nil ,_aff .ErrTypeError ;};_fbfcf .BitsPerComponent =_bbad ;_fdbfac =_eaacg .Get ("\u0044\u0065\u0063\u006f\u0064\u0065");if _fdbfac ==nil {_adg .Log .Debug ("\u0052\u0065\u0071ui\u0072\u0065\u0064\u0020\u0061\u0074\u0074\u0072\u0069b\u0075t\u0065 \u006di\u0073\u0073\u0069\u006e\u0067\u003a\u0020\u0044\u0065\u0063\u006f\u0064\u0065"); -return nil ,ErrRequiredAttributeMissing ;};_gadbe ,_gfgde :=_fdbfac .(*_aff .PdfObjectArray );if !_gfgde {_adg .Log .Debug ("\u0044\u0065\u0063\u006fd\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061r\u0072a\u0079\u0020\u0028\u0067\u006f\u0074\u0020%\u0054\u0029",_fdbfac ); -return nil ,_aff .ErrTypeError ;};_fbfcf .Decode =_gadbe ;if _gdbed :=_eaacg .Get ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_gdbed !=nil {_fbfcf .Function =[]PdfFunction {};if _cebgea ,_dccca :=_gdbed .(*_aff .PdfObjectArray );_dccca {for _ ,_cfgge :=range _cebgea .Elements (){_abedf ,_degbd :=_fdfeg (_cfgge ); -if _degbd !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_degbd );return nil ,_degbd ;};_fbfcf .Function =append (_fbfcf .Function ,_abedf ); -};}else {_dgcgb ,_acab :=_fdfeg (_gdbed );if _acab !=nil {_adg .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e:\u0020\u0025\u0076",_acab );return nil ,_acab ; -};_fbfcf .Function =append (_fbfcf .Function ,_dgcgb );};};return &_fbfcf ,nil ;}; +func (_affge *Permissions )ToPdfObject ()_dg .PdfObject {return _affge ._fbdaa }; -// Fill populates `form` with values provided by `provider`. -func (_fdce *PdfAcroForm )Fill (provider FieldValueProvider )error {return _fdce .fill (provider ,nil )}; +// NewPdfColorspaceDeviceN returns an initialized PdfColorspaceDeviceN. +func NewPdfColorspaceDeviceN ()*PdfColorspaceDeviceN {_dceed :=&PdfColorspaceDeviceN {};return _dceed ;};func (_acdf *PdfWriter )optimizeDocument ()error {if _acdf ._afafd ==nil {return nil ;};_agdfd ,_faefc :=_dg .GetDict (_acdf ._efbfa );if !_faefc {return _bf .New ("\u0061\u006e\u0020in\u0066\u006f\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0069s\u0020n\u006ft\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); +};_eecdb :=_eba .Document {ID :[2]string {_acdf ._cedaf ,_acdf ._ceaab },Version :_acdf ._efacd ,Objects :_acdf ._agaba ,Info :_agdfd ,Crypt :_acdf ._fadcg ,UseHashBasedID :_acdf ._affea };if _bdfdd :=_acdf ._afafd .ApplyStandard (&_eecdb );_bdfdd !=nil {return _bdfdd ; +};_acdf ._cedaf ,_acdf ._ceaab =_eecdb .ID [0],_eecdb .ID [1];_acdf ._efacd =_eecdb .Version ;_acdf ._agaba =_eecdb .Objects ;_acdf ._efbfa .PdfObject =_eecdb .Info ;_acdf ._affea =_eecdb .UseHashBasedID ;_acdf ._fadcg =_eecdb .Crypt ;_dfgfb :=make (map[_dg .PdfObject ]struct{},len (_acdf ._agaba )); +for _ ,_bdddf :=range _acdf ._agaba {_dfgfb [_bdddf ]=struct{}{};};_acdf ._fdbfa =_dfgfb ;return nil ;}; -// ImageToRGB converts Lab colorspace image to RGB and returns the result. -func (_fagcf *PdfColorspaceLab )ImageToRGB (img Image )(Image ,error ){_egdf :=func (_bfbg float64 )float64 {if _bfbg >=6.0/29{return _bfbg *_bfbg *_bfbg ;};return 108.0/841*(_bfbg -4.0/29.0);};_bcgfe :=img ._edgef ;if len (_bcgfe )!=6{_adg .Log .Trace ("\u0049\u006d\u0061\u0067\u0065\u0020\u002d\u0020\u004c\u0061\u0062\u0020\u0044e\u0063\u006f\u0064\u0065\u0020\u0072\u0061\u006e\u0067e\u0020\u0021\u003d\u0020\u0036\u002e\u002e\u002e\u0020\u0075\u0073\u0065\u0020\u005b0\u0020\u0031\u0030\u0030\u0020\u0061\u006d\u0069\u006e\u0020\u0061\u006d\u0061\u0078\u0020\u0062\u006d\u0069\u006e\u0020\u0062\u006d\u0061\u0078\u005d\u0020\u0064\u0065\u0066\u0061u\u006c\u0074\u0020\u0064\u0065\u0063\u006f\u0064\u0065 \u0061\u0072r\u0061\u0079"); -_bcgfe =_fagcf .DecodeArray ();};_eegb :=_aae .NewReader (img .getBase ());_cafc :=_gd .NewImageBase (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),3,nil ,img ._becb ,img ._edgef );_geecg :=_aae .NewWriter (_cafc );_aaec :=_cf .Pow (2,float64 (img .BitsPerComponent ))-1; -_ddcf :=make ([]uint32 ,3);var (_acd error ;Ls ,As ,Bs ,L ,M ,N ,X ,Y ,Z ,_fdabf ,_fgeb ,_dbcbg float64 ;);for {_acd =_eegb .ReadSamples (_ddcf );if _acd ==_ega .EOF {break ;}else if _acd !=nil {return img ,_acd ;};Ls =float64 (_ddcf [0])/_aaec ;As =float64 (_ddcf [1])/_aaec ; -Bs =float64 (_ddcf [2])/_aaec ;Ls =_gd .LinearInterpolate (Ls ,0.0,1.0,_bcgfe [0],_bcgfe [1]);As =_gd .LinearInterpolate (As ,0.0,1.0,_bcgfe [2],_bcgfe [3]);Bs =_gd .LinearInterpolate (Bs ,0.0,1.0,_bcgfe [4],_bcgfe [5]);L =(Ls +16)/116+As /500;M =(Ls +16)/116; -N =(Ls +16)/116-Bs /200;X =_fagcf .WhitePoint [0]*_egdf (L );Y =_fagcf .WhitePoint [1]*_egdf (M );Z =_fagcf .WhitePoint [2]*_egdf (N );_fdabf =3.240479*X +-1.537150*Y +-0.498535*Z ;_fgeb =-0.969256*X +1.875992*Y +0.041556*Z ;_dbcbg =0.055648*X +-0.204043*Y +1.057311*Z ; -_fdabf =_cf .Min (_cf .Max (_fdabf ,0),1.0);_fgeb =_cf .Min (_cf .Max (_fgeb ,0),1.0);_dbcbg =_cf .Min (_cf .Max (_dbcbg ,0),1.0);_ddcf [0]=uint32 (_fdabf *_aaec );_ddcf [1]=uint32 (_fgeb *_aaec );_ddcf [2]=uint32 (_dbcbg *_aaec );if _acd =_geecg .WriteSamples (_ddcf ); -_acd !=nil {return img ,_acd ;};};return _efecb (&_cafc ),nil ;}; +// ToPdfObject implements interface PdfModel. +func (_fgdde *PdfAnnotationPrinterMark )ToPdfObject ()_dg .PdfObject {_fgdde .PdfAnnotation .ToPdfObject ();_fcba :=_fgdde ._cdf ;_ddgd :=_fcba .PdfObject .(*_dg .PdfObjectDictionary );_ddgd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("P\u0072\u0069\u006e\u0074\u0065\u0072\u004d\u0061\u0072\u006b")); +_ddgd .SetIfNotNil ("\u004d\u004e",_fgdde .MN );return _fcba ;}; -// PdfActionSound represents a sound action. -type PdfActionSound struct{*PdfAction ;Sound _aff .PdfObject ;Volume _aff .PdfObject ;Synchronous _aff .PdfObject ;Repeat _aff .PdfObject ;Mix _aff .PdfObject ;};func (_aabcf *PdfWriter )writeBytes (_dfbae []byte ){if _aabcf ._acag !=nil {return ;};_fadbd ,_gcega :=_aabcf ._ggee .Write (_dfbae ); -_aabcf ._cagac +=int64 (_fadbd );_aabcf ._acag =_gcega ;}; +// ColorFromPdfObjects returns a new PdfColor based on the input slice of color +// components. The slice should contain a single PdfObjectFloat element in +// range 0-1. +func (_gcbd *PdfColorspaceCalGray )ColorFromPdfObjects (objects []_dg .PdfObject )(PdfColor ,error ){if len (objects )!=1{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gdagf ,_gecf :=_dg .GetNumbersAsFloat (objects ); +if _gecf !=nil {return nil ,_gecf ;};return _gcbd .ColorFromFloats (_gdagf );};func _gdea (_ccdf _dg .PdfObject )(*PdfColorspaceCalRGB ,error ){_ggcc :=NewPdfColorspaceCalRGB ();if _gbce ,_ffffa :=_ccdf .(*_dg .PdfIndirectObject );_ffffa {_ggcc ._ccae =_gbce ; +};_ccdf =_dg .TraceToDirectObject (_ccdf );_bbfg ,_gcfd :=_ccdf .(*_dg .PdfObjectArray );if !_gcfd {return nil ,_b .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _bbfg .Len ()!=2{return nil ,_b .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0043\u0061\u006c\u0052G\u0042 \u0063o\u006c\u006f\u0072\u0073\u0070\u0061\u0063e"); +};_ccdf =_dg .TraceToDirectObject (_bbfg .Get (0));_addd ,_gcfd :=_ccdf .(*_dg .PdfObjectName );if !_gcfd {return nil ,_b .Errorf ("\u0043\u0061l\u0052\u0047\u0042\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062je\u0063\u0074"); +};if *_addd !="\u0043\u0061\u006c\u0052\u0047\u0042"{return nil ,_b .Errorf ("\u006e\u006f\u0074 a\u0020\u0043\u0061\u006c\u0052\u0047\u0042\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065");};_ccdf =_dg .TraceToDirectObject (_bbfg .Get (1)); +_afef ,_gcfd :=_ccdf .(*_dg .PdfObjectDictionary );if !_gcfd {return nil ,_b .Errorf ("\u0043\u0061l\u0052\u0047\u0042\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062je\u0063\u0074");};_ccdf =_afef .Get ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074"); +_ccdf =_dg .TraceToDirectObject (_ccdf );_aece ,_gcfd :=_ccdf .(*_dg .PdfObjectArray );if !_gcfd {return nil ,_b .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0057\u0068\u0069\u0074\u0065\u0050o\u0069\u006e\u0074"); +};if _aece .Len ()!=3{return nil ,_b .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0057h\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074\u0020\u0061\u0072\u0072\u0061\u0079");};_fabcd ,_bgfd :=_aece .GetAsFloat64Slice (); +if _bgfd !=nil {return nil ,_bgfd ;};_ggcc .WhitePoint =_fabcd ;_ccdf =_afef .Get ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");if _ccdf !=nil {_ccdf =_dg .TraceToDirectObject (_ccdf );_dddea ,_fgee :=_ccdf .(*_dg .PdfObjectArray );if !_fgee {return nil ,_b .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0042\u006c\u0061\u0063\u006b\u0050o\u0069\u006e\u0074"); +};if _dddea .Len ()!=3{return nil ,_b .Errorf ("\u0043\u0061\u006c\u0052\u0047\u0042\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u0042l\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074\u0020\u0061\u0072\u0072\u0061\u0079");};_cagdd ,_gedfd :=_dddea .GetAsFloat64Slice (); +if _gedfd !=nil {return nil ,_gedfd ;};_ggcc .BlackPoint =_cagdd ;};_ccdf =_afef .Get ("\u0047\u0061\u006dm\u0061");if _ccdf !=nil {_ccdf =_dg .TraceToDirectObject (_ccdf );_cfcb ,_eggcd :=_ccdf .(*_dg .PdfObjectArray );if !_eggcd {return nil ,_b .Errorf ("C\u0061\u006c\u0052\u0047B:\u0020I\u006e\u0076\u0061\u006c\u0069d\u0020\u0047\u0061\u006d\u006d\u0061"); +};if _cfcb .Len ()!=3{return nil ,_b .Errorf ("C\u0061\u006c\u0052\u0047\u0042\u003a \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0047a\u006d\u006d\u0061 \u0061r\u0072\u0061\u0079");};_cae ,_cgdb :=_cfcb .GetAsFloat64Slice ();if _cgdb !=nil {return nil ,_cgdb ; +};_ggcc .Gamma =_cae ;};_ccdf =_afef .Get ("\u004d\u0061\u0074\u0072\u0069\u0078");if _ccdf !=nil {_ccdf =_dg .TraceToDirectObject (_ccdf );_eaf ,_cfeac :=_ccdf .(*_dg .PdfObjectArray );if !_cfeac {return nil ,_b .Errorf ("\u0043\u0061\u006c\u0052GB\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u004d\u0061\u0074\u0072i\u0078"); +};if _eaf .Len ()!=9{_ag .Log .Error ("\u004d\u0061t\u0072\u0069\u0078 \u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u0073",_eaf .String ());return nil ,_b .Errorf ("\u0043\u0061\u006c\u0052G\u0042\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064 \u004da\u0074\u0072\u0069\u0078\u0020\u0061\u0072r\u0061\u0079"); +};_eefa ,_ebcfb :=_eaf .GetAsFloat64Slice ();if _ebcfb !=nil {return nil ,_ebcfb ;};_ggcc .Matrix =_eefa ;};return _ggcc ,nil ;}; -// ToPdfObject returns the PDF representation of the colorspace. -func (_bfcaec *PdfPageResourcesColorspaces )ToPdfObject ()_aff .PdfObject {_gfdfgb :=_aff .MakeDict ();for _ ,_gecbd :=range _bfcaec .Names {_gfdfgb .Set (_aff .PdfObjectName (_gecbd ),_bfcaec .Colorspaces [_gecbd ].ToPdfObject ());};if _bfcaec ._abedg !=nil {_bfcaec ._abedg .PdfObject =_gfdfgb ; -return _bfcaec ._abedg ;};return _gfdfgb ;}; +// GetPageLabels returns the PageLabels entry in the PDF catalog. +// See section 12.4.2 "Page Labels" (p. 382 PDF32000_2008). +func (_cecad *PdfReader )GetPageLabels ()(_dg .PdfObject ,error ){_ecbfd :=_dg .ResolveReference (_cecad ._gccfb .Get ("\u0050\u0061\u0067\u0065\u004c\u0061\u0062\u0065\u006c\u0073"));if _ecbfd ==nil {return nil ,nil ;};if !_cecad ._dadcef {_cgga :=_cecad .traverseObjectData (_ecbfd ); +if _cgga !=nil {return nil ,_cgga ;};};return _ecbfd ,nil ;}; -// GetNumComponents returns the number of color components of the underlying -// colorspace device. -func (_accd *PdfColorspaceSpecialPattern )GetNumComponents ()int {return _accd .UnderlyingCS .GetNumComponents ();}; +// StandardApplier is the interface that performs optimization of the whole PDF document. +// As a result an input document is being changed by the optimizer. +// The writer than takes back all it's parts and overwrites it. +// NOTE: This implementation is in experimental development state. +// Keep in mind that it might change in the subsequent minor versions. +type StandardApplier interface{ApplyStandard (_cgeg *_eba .Document )error ;}; -// PdfAnnotationStrikeOut represents StrikeOut annotations. -// (Section 12.5.6.10). -type PdfAnnotationStrikeOut struct{*PdfAnnotation ;*PdfAnnotationMarkup ;QuadPoints _aff .PdfObject ;}; +// AddImageResource adds an image to the XObject resources. +func (_gdaee *PdfPage )AddImageResource (name _dg .PdfObjectName ,ximg *XObjectImage )error {var _bceg *_dg .PdfObjectDictionary ;if _gdaee .Resources .XObject ==nil {_bceg =_dg .MakeDict ();_gdaee .Resources .XObject =_bceg ;}else {var _ggged bool ;_bceg ,_ggged =(_gdaee .Resources .XObject ).(*_dg .PdfObjectDictionary ); +if !_ggged {return _bf .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0078\u0072\u0065\u0073\u0020\u0064\u0069\u0063\u0074\u0020\u0074\u0079p\u0065");};};_bceg .Set (name ,ximg .ToPdfObject ());return nil ;}; -// NewOutlineItem returns a new outline item instance. -func NewOutlineItem (title string ,dest OutlineDest )*OutlineItem {return &OutlineItem {Title :title ,Dest :dest };}; +// CharcodesToStrings returns the unicode strings corresponding to `charcodes`. +// The int returns are the number of strings and the number of unconvereted codes. +// NOTE: The number of strings returned is equal to the number of charcodes +func (_eebc *PdfFont )CharcodesToStrings (charcodes []_bd .CharCode )([]string ,int ,int ){_eeaf :=_eebc .baseFields ();_bffd :=make ([]string ,0,len (charcodes ));_ggeaf :=0;_abdaa :=_eebc .Encoder ();_gfcd :=_eeaf ._ecfb !=nil &&_eebc .IsSimple ()&&_eebc .Subtype ()=="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"&&!_ga .Contains (_eeaf ._ecfb .Name (),"\u0049d\u0065\u006e\u0074\u0069\u0074\u0079-"); +if !_gfcd &&_abdaa !=nil {switch _gbdf :=_abdaa .(type ){case _bd .SimpleEncoder :_faege :=_gbdf .BaseName ();if _ ,_ecgbc :=_eabb [_faege ];_ecgbc {for _ ,_gacdda :=range charcodes {if _fdfab ,_ccbge :=_abdaa .CharcodeToRune (_gacdda );_ccbge {_bffd =append (_bffd ,string (_fdfab )); +}else {_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0072u\u006e\u0065\u002e\u0020\u0063\u006f\u0064\u0065=\u0030x\u0025\u0030\u0034\u0078\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0073\u003d\u005b\u0025\u00200\u0034\u0078\u005d\u0020\u0043\u0049\u0044\u003d\u0025\u0074\u000a"+"\t\u0066\u006f\u006e\u0074=%\u0073\n\u0009\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003d\u0025\u0073",_gacdda ,charcodes ,_eeaf .isCIDFont (),_eebc ,_abdaa ); +_ggeaf ++;_bffd =append (_bffd ,_ff .MissingCodeString );};};return _bffd ,len (_bffd ),_ggeaf ;};};};for _ ,_eafdb :=range charcodes {if _eeaf ._ecfb !=nil {if _bgdaf ,_ccaa :=_eeaf ._ecfb .CharcodeToUnicode (_ff .CharCode (_eafdb ));_ccaa {_bffd =append (_bffd ,_bgdaf ); +continue ;};};if _abdaa !=nil {if _gbfgg ,_edgfg :=_abdaa .CharcodeToRune (_eafdb );_edgfg {_bffd =append (_bffd ,string (_gbfgg ));continue ;};};_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0072u\u006e\u0065\u002e\u0020\u0063\u006f\u0064\u0065=\u0030x\u0025\u0030\u0034\u0078\u0020\u0063\u0068\u0061\u0072\u0063\u006f\u0064\u0065\u0073\u003d\u005b\u0025\u00200\u0034\u0078\u005d\u0020\u0043\u0049\u0044\u003d\u0025\u0074\u000a"+"\t\u0066\u006f\u006e\u0074=%\u0073\n\u0009\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u003d\u0025\u0073",_eafdb ,charcodes ,_eeaf .isCIDFont (),_eebc ,_abdaa ); +_ggeaf ++;_bffd =append (_bffd ,_ff .MissingCodeString );};if _ggeaf !=0{_ag .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0043\u006f\u0075\u006c\u0064\u006e\u0027\u0074\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0020\u0074\u006f\u0020u\u006e\u0069\u0063\u006f\u0064\u0065\u002e\u0020\u0055\u0073\u0069\u006e\u0067\u0020i\u006ep\u0075\u0074\u002e\u000a"+"\u0009\u006e\u0075\u006d\u0043\u0068\u0061\u0072\u0073\u003d\u0025d\u0020\u006e\u0075\u006d\u004d\u0069\u0073\u0073\u0065\u0073=\u0025\u0064\u000a"+"\u0009\u0066\u006f\u006e\u0074\u003d\u0025\u0073",len (charcodes ),_ggeaf ,_eebc ); +};return _bffd ,len (_bffd ),_ggeaf ;};func (_gebeg *PdfWriter )writeOutlines ()error {if _gebeg ._cedcg ==nil {return nil ;};_ag .Log .Trace ("\u004f\u0075t\u006c\u0069\u006ee\u0054\u0072\u0065\u0065\u003a\u0020\u0025\u002b\u0076",_gebeg ._cedcg );_cfgfg :=_gebeg ._cedcg .ToPdfObject (); +_ag .Log .Trace ("\u004fu\u0074\u006c\u0069\u006e\u0065\u0073\u003a\u0020\u0025\u002b\u0076 \u0028\u0025\u0054\u002c\u0020\u0070\u003a\u0025\u0070\u0029",_cfgfg ,_cfgfg ,_cfgfg );_gebeg ._ecdf .Set ("\u004f\u0075\u0074\u006c\u0069\u006e\u0065\u0073",_cfgfg ); +_dfbdf :=_gebeg .addObjects (_cfgfg );if _dfbdf !=nil {return _dfbdf ;};return nil ;}; -// StandardImplementer is an interface that defines specified PDF standards like PDF/A-1A (pdfa.Profile1A) -// NOTE: This implementation is in experimental development state. -// Keep in mind that it might change in the subsequent minor versions. -type StandardImplementer interface{StandardValidator ;StandardApplier ; +// SetDocInfo set document info. +// This will overwrite any globally declared document info. +func (_bbca *PdfWriter )SetDocInfo (info *PdfInfo ){_bbca .setDocInfo (info .ToPdfObject ())}; -// StandardName gets the human-readable name of the standard. -StandardName ()string ;}; +// ToPdfObject implements interface PdfModel. +func (_aec *PdfAnnotationTrapNet )ToPdfObject ()_dg .PdfObject {_aec .PdfAnnotation .ToPdfObject ();_bef :=_aec ._cdf ;_egfd :=_bef .PdfObject .(*_dg .PdfObjectDictionary );_egfd .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0054r\u0061\u0070\u004e\u0065\u0074")); +return _bef ;}; -// Encoder returns the font's text encoder. -func (_eebf *pdfFontSimple )Encoder ()_eee .TextEncoder {if _eebf ._fdgc !=nil {return _eebf ._fdgc ;};if _eebf ._ggebf !=nil {return _eebf ._ggebf ;};_cdddc ,_ :=_eee .NewSimpleTextEncoder ("\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067",nil ); -return _cdddc ;};func (_fgbf *pdfFontSimple )getFontEncoding ()(_gagf string ,_bgdc map[_eee .CharCode ]_eee .GlyphName ,_badff error ){_gagf ="\u0053\u0074a\u006e\u0064\u0061r\u0064\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067";if _feae ,_abbf :=_eaed [_fgbf ._abed ]; -_abbf {_gagf =_feae ;}else if _fgbf .fontFlags ()&_cbda !=0{for _ebfc ,_edbaf :=range _eaed {if _ba .Contains (_fgbf ._abed ,_ebfc ){_gagf =_edbaf ;break ;};};};if _fgbf .Encoding ==nil {return _gagf ,nil ,nil ;};switch _ceeaa :=_fgbf .Encoding .(type ){case *_aff .PdfObjectName :return string (*_ceeaa ),nil ,nil ; -case *_aff .PdfObjectDictionary :_fdfgg ,_cdfeg :=_aff .GetName (_ceeaa .Get ("\u0042\u0061\u0073e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));if _cdfeg {_gagf =_fdfgg .String ();};if _feafb :=_ceeaa .Get ("D\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073"); -_feafb !=nil {_bgdd ,_faecd :=_aff .GetArray (_feafb );if !_faecd {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042a\u0064\u0020\u0066on\u0074\u0020\u0065\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u003d\u0025\u002b\u0076\u0020\u0044\u0069f\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073=\u0025\u0054",_ceeaa ,_ceeaa .Get ("D\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0073")); -return "",nil ,_aff .ErrTypeError ;};_bgdc ,_badff =_eee .FromFontDifferences (_bgdd );};return _gagf ,_bgdc ,_badff ;default:_adg .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0072\u0020\u0064\u0069\u0063t\u0020\u0028\u0025\u0054\u0029\u0020\u0025\u0073",_fgbf .Encoding ,_fgbf .Encoding ); -return "",nil ,_aff .ErrTypeError ;};}; +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. The slice should contain three elements representing the +// red, green and blue components of the color. The values of the elements +// should be between 0 and 1. +func (_baeg *PdfColorspaceDeviceRGB )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=3{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_bdab :=vals [0];if _bdab < 0.0||_bdab > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_bdab ); +return nil ,ErrColorOutOfRange ;};_aaee :=vals [1];if _aaee < 0.0||_aaee > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_bdab );return nil ,ErrColorOutOfRange ; +};_accc :=vals [2];if _accc < 0.0||_accc > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_bdab );return nil ,ErrColorOutOfRange ;};_ddfb :=NewPdfColorDeviceRGB (_bdab ,_aaee ,_accc ); +return _ddfb ,nil ;};func (_cdgf *pdfFontType0 )getFontDescriptor ()*PdfFontDescriptor {if _cdgf ._ccfb ==nil &&_cdgf .DescendantFont !=nil {return _cdgf .DescendantFont .FontDescriptor ();};return _cdgf ._ccfb ;}; -// GetStructRoot gets the StructTreeRoot object -func (_aeec *PdfPage )GetStructTreeRoot ()(*_aff .PdfObject ,bool ){_dcbfb ,_bfdbg :=_aeec ._dbbf .GetCatalogStructTreeRoot ();return &_dcbfb ,_bfdbg ;};func _fdbfg (_fcdde *_aff .PdfObjectStream )(*PdfFunctionType0 ,error ){_egad :=&PdfFunctionType0 {}; -_egad ._fcbe =_fcdde ;_abcf :=_fcdde .PdfObjectDictionary ;_edaga ,_aede :=_aff .TraceToDirectObject (_abcf .Get ("\u0044\u006f\u006d\u0061\u0069\u006e")).(*_aff .PdfObjectArray );if !_aede {_adg .Log .Error ("D\u006fm\u0061\u0069\u006e\u0020\u006e\u006f\u0074\u0020s\u0070\u0065\u0063\u0069fi\u0065\u0064"); -return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};if _edaga .Len ()< 0||_edaga .Len ()%2!=0{_adg .Log .Error ("\u0044\u006f\u006d\u0061\u0069\u006e\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -return nil ,_g .New ("i\u006ev\u0061\u006c\u0069\u0064\u0020\u0064\u006f\u006da\u0069\u006e\u0020\u0072an\u0067\u0065");};_egad .NumInputs =_edaga .Len ()/2;_cada ,_fbdg :=_edaga .ToFloat64Array ();if _fbdg !=nil {return nil ,_fbdg ;};_egad .Domain =_cada ; -_edaga ,_aede =_aff .TraceToDirectObject (_abcf .Get ("\u0052\u0061\u006eg\u0065")).(*_aff .PdfObjectArray );if !_aede {_adg .Log .Error ("\u0052\u0061\u006e\u0067e \u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0065\u0064");return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};if _edaga .Len ()< 0||_edaga .Len ()%2!=0{return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0072\u0061\u006e\u0067\u0065");};_egad .NumOutputs =_edaga .Len ()/2;_gacf ,_fbdg :=_edaga .ToFloat64Array ();if _fbdg !=nil {return nil ,_fbdg ; -};_egad .Range =_gacf ;_edaga ,_aede =_aff .TraceToDirectObject (_abcf .Get ("\u0053\u0069\u007a\u0065")).(*_aff .PdfObjectArray );if !_aede {_adg .Log .Error ("\u0053i\u007ae\u0020\u006e\u006f\u0074\u0020s\u0070\u0065c\u0069\u0066\u0069\u0065\u0064"); -return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064");};_bffbe ,_fbdg :=_edaga .ToIntegerArray (); -if _fbdg !=nil {return nil ,_fbdg ;};if len (_bffbe )!=_egad .NumInputs {_adg .Log .Error ("T\u0061\u0062\u006c\u0065\u0020\u0073\u0069\u007a\u0065\u0020\u006e\u006f\u0074\u0020\u006d\u0061\u0074\u0063h\u0069\u006e\u0067\u0020\u006e\u0075\u006d\u0062\u0065\u0072 o\u0066\u0020\u0069n\u0070u\u0074\u0073"); -return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_egad .Size =_bffbe ;_cbaff ,_aede :=_aff .TraceToDirectObject (_abcf .Get ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0053\u0061\u006d\u0070\u006c\u0065")).(*_aff .PdfObjectInteger ); -if !_aede {_adg .Log .Error ("B\u0069\u0074\u0073\u0050\u0065\u0072S\u0061\u006d\u0070\u006c\u0065\u0020\u006e\u006f\u0074 \u0073\u0070\u0065c\u0069f\u0069\u0065\u0064");return nil ,_g .New ("\u0072\u0065q\u0075\u0069\u0072\u0065d\u0020\u0061t\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020m\u0069\u0073\u0073\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0069\u006ev\u0061\u006c\u0069\u0064"); -};if *_cbaff !=1&&*_cbaff !=2&&*_cbaff !=4&&*_cbaff !=8&&*_cbaff !=12&&*_cbaff !=16&&*_cbaff !=24&&*_cbaff !=32{_adg .Log .Error ("\u0042\u0069\u0074s \u0070\u0065\u0072\u0020\u0073\u0061\u006d\u0070\u006ce\u0020o\u0075t\u0073i\u0064\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0028\u0025\u0064\u0029",*_cbaff ); -return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_egad .BitsPerSample =int (*_cbaff );_egad .Order =1;_dcdba ,_aede :=_aff .TraceToDirectObject (_abcf .Get ("\u004f\u0072\u0064e\u0072")).(*_aff .PdfObjectInteger ); -if _aede {if *_dcdba !=1&&*_dcdba !=3{_adg .Log .Error ("\u0049n\u0076a\u006c\u0069\u0064\u0020\u006fr\u0064\u0065r\u0020\u0028\u0025\u0064\u0029",*_dcdba );return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_egad .Order =int (*_dcdba ); -};_edaga ,_aede =_aff .TraceToDirectObject (_abcf .Get ("\u0045\u006e\u0063\u006f\u0064\u0065")).(*_aff .PdfObjectArray );if _aede {_aeca ,_bccd :=_edaga .ToFloat64Array ();if _bccd !=nil {return nil ,_bccd ;};_egad .Encode =_aeca ;};_edaga ,_aede =_aff .TraceToDirectObject (_abcf .Get ("\u0044\u0065\u0063\u006f\u0064\u0065")).(*_aff .PdfObjectArray ); -if _aede {_ccgd ,_agfa :=_edaga .ToFloat64Array ();if _agfa !=nil {return nil ,_agfa ;};_egad .Decode =_ccgd ;};_cgdfd ,_fbdg :=_aff .DecodeStream (_fcdde );if _fbdg !=nil {return nil ,_fbdg ;};_egad ._aggcg =_cgdfd ;return _egad ,nil ;};func (_fde *PdfReader )newPdfActionGoTo3DViewFromDict (_fbb *_aff .PdfObjectDictionary )(*PdfActionGoTo3DView ,error ){return &PdfActionGoTo3DView {TA :_fbb .Get ("\u0054\u0041"),V :_fbb .Get ("\u0056")},nil ; -};func _edgb (_cccf _aff .PdfObject )(*PdfColorspaceCalGray ,error ){_cbed :=NewPdfColorspaceCalGray ();if _gbdf ,_ddf :=_cccf .(*_aff .PdfIndirectObject );_ddf {_cbed ._ffbf =_gbdf ;};_cccf =_aff .TraceToDirectObject (_cccf );_deae ,_adaga :=_cccf .(*_aff .PdfObjectArray ); -if !_adaga {return nil ,_e .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _deae .Len ()!=2{return nil ,_e .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0061\u006cG\u0072\u0061\u0079\u0020\u0063\u006f\u006c\u006f\u0072\u0073p\u0061\u0063\u0065"); -};_cccf =_aff .TraceToDirectObject (_deae .Get (0));_dffd ,_adaga :=_cccf .(*_aff .PdfObjectName );if !_adaga {return nil ,_e .Errorf ("\u0043\u0061\u006c\u0047\u0072\u0061\u0079\u0020\u006e\u0061m\u0065\u0020\u006e\u006f\u0074\u0020\u0061 \u004e\u0061\u006d\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -};if *_dffd !="\u0043a\u006c\u0047\u0072\u0061\u0079"{return nil ,_e .Errorf ("\u006eo\u0074\u0020\u0061\u0020\u0043\u0061\u006c\u0047\u0072\u0061\u0079 \u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065");};_cccf =_aff .TraceToDirectObject (_deae .Get (1)); -_caece ,_adaga :=_cccf .(*_aff .PdfObjectDictionary );if !_adaga {return nil ,_e .Errorf ("\u0043\u0061lG\u0072\u0061\u0079 \u0064\u0069\u0063\u0074 no\u0074 a\u0020\u0044\u0069\u0063\u0074\u0069\u006fna\u0072\u0079\u0020\u006f\u0062\u006a\u0065c\u0074"); -};_cccf =_caece .Get ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074");_cccf =_aff .TraceToDirectObject (_cccf );_dcfgc ,_adaga :=_cccf .(*_aff .PdfObjectArray );if !_adaga {return nil ,_e .Errorf ("C\u0061\u006c\u0047\u0072\u0061\u0079:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020W\u0068\u0069\u0074e\u0050o\u0069\u006e\u0074"); -};if _dcfgc .Len ()!=3{return nil ,_e .Errorf ("\u0043\u0061\u006c\u0047\u0072\u0061y\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0068\u0069t\u0065\u0050\u006f\u0069\u006e\u0074\u0020a\u0072\u0072\u0061\u0079");};_cdfc ,_gbbd :=_dcfgc .GetAsFloat64Slice (); -if _gbbd !=nil {return nil ,_gbbd ;};_cbed .WhitePoint =_cdfc ;_cccf =_caece .Get ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");if _cccf !=nil {_cccf =_aff .TraceToDirectObject (_cccf );_gfdf ,_befe :=_cccf .(*_aff .PdfObjectArray ); -if !_befe {return nil ,_e .Errorf ("C\u0061\u006c\u0047\u0072\u0061\u0079:\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020B\u006c\u0061\u0063k\u0050o\u0069\u006e\u0074");};if _gfdf .Len ()!=3{return nil ,_e .Errorf ("\u0043\u0061\u006c\u0047\u0072\u0061y\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u006c\u0061c\u006b\u0050\u006f\u0069\u006e\u0074\u0020a\u0072\u0072\u0061\u0079"); -};_fagca ,_fdgf :=_gfdf .GetAsFloat64Slice ();if _fdgf !=nil {return nil ,_fdgf ;};_cbed .BlackPoint =_fagca ;};_cccf =_caece .Get ("\u0047\u0061\u006dm\u0061");if _cccf !=nil {_cccf =_aff .TraceToDirectObject (_cccf );_gfebg ,_edec :=_aff .GetNumberAsFloat (_cccf ); -if _edec !=nil {return nil ,_e .Errorf ("C\u0061\u006c\u0047\u0072\u0061\u0079:\u0020\u0067\u0061\u006d\u006d\u0061\u0020\u006e\u006ft\u0020\u0061\u0020n\u0075m\u0062\u0065\u0072");};_cbed .Gamma =_gfebg ;};return _cbed ,nil ;}; +// ToPdfObject returns the PDF representation of the shading dictionary. +func (_abbbg *PdfShadingType7 )ToPdfObject ()_dg .PdfObject {_abbbg .PdfShading .ToPdfObject ();_ebbg ,_geagg :=_abbbg .getShadingDict ();if _geagg !=nil {_ag .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); +return nil ;};if _abbbg .BitsPerCoordinate !=nil {_ebbg .Set ("\u0042\u0069\u0074\u0073\u0050\u0065\u0072\u0043\u006f\u006f\u0072\u0064i\u006e\u0061\u0074\u0065",_abbbg .BitsPerCoordinate );};if _abbbg .BitsPerComponent !=nil {_ebbg .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_abbbg .BitsPerComponent ); +};if _abbbg .BitsPerFlag !=nil {_ebbg .Set ("B\u0069\u0074\u0073\u0050\u0065\u0072\u0046\u006c\u0061\u0067",_abbbg .BitsPerFlag );};if _abbbg .Decode !=nil {_ebbg .Set ("\u0044\u0065\u0063\u006f\u0064\u0065",_abbbg .Decode );};if _abbbg .Function !=nil {if len (_abbbg .Function )==1{_ebbg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_abbbg .Function [0].ToPdfObject ()); +}else {_agabc :=_dg .MakeArray ();for _ ,_eegfc :=range _abbbg .Function {_agabc .Append (_eegfc .ToPdfObject ());};_ebbg .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_agabc );};};return _abbbg ._bcfbg ;}; -// GetPdfInfo returns the PDF info dictionary. -func (_ebae *PdfReader )GetPdfInfo ()(*PdfInfo ,error ){_aafg ,_fgcf :=_ebae .GetTrailer ();if _fgcf !=nil {return nil ,_fgcf ;};var _bcfa *_aff .PdfObjectDictionary ;_cbeec :=_aafg .Get ("\u0049\u006e\u0066\u006f");switch _bgcd :=_cbeec .(type ){case *_aff .PdfObjectReference :_agff :=_bgcd ; -_cbeec ,_fgcf =_ebae .GetIndirectObjectByNumber (int (_agff .ObjectNumber ));_cbeec =_aff .TraceToDirectObject (_cbeec );if _fgcf !=nil {return nil ,_fgcf ;};_bcfa ,_ =_cbeec .(*_aff .PdfObjectDictionary );case *_aff .PdfObjectDictionary :_bcfa =_bgcd ; -};if _bcfa ==nil {return nil ,_g .New ("I\u006e\u0066\u006f\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006eo\u0074\u0020\u0070r\u0065s\u0065\u006e\u0074");};_feefca ,_fgcf :=NewPdfInfoFromObject (_bcfa );if _fgcf !=nil {return nil ,_fgcf ; -};return _feefca ,nil ;};func _bfdbcc (_adbbdg _aff .PdfObject ,_egff bool )(*PdfFont ,error ){_cfcgb ,_fadb ,_dffc :=_ggggfe (_adbbdg );if _cfcgb !=nil {_eaec (_cfcgb );};if _dffc !=nil {if _dffc ==ErrType1CFontNotSupported {_gffbf ,_dacg :=_gcdde (_cfcgb ,_fadb ,nil ); -if _dacg !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0057h\u0069\u006c\u0065 l\u006f\u0061\u0064\u0069\u006e\u0067 \u0073\u0069\u006d\u0070\u006c\u0065\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0066\u006fn\u0074\u003d\u0025\u0073\u0020\u0065\u0072\u0072=\u0025\u0076",_fadb ,_dacg ); -return nil ,_dffc ;};return &PdfFont {_gebd :_gffbf },_dffc ;};return nil ,_dffc ;};_cbbga :=&PdfFont {};switch _fadb ._fbged {case "\u0054\u0079\u0070e\u0030":if !_egff {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052:\u0020\u004c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0074\u0079\u0070\u00650\u0020\u006e\u006f\u0074\u0020\u0061\u006c\u006c\u006f\u0077\u0065\u0064\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_fadb ); -return nil ,_g .New ("\u0063\u0079\u0063\u006cic\u0061\u006c\u0020\u0074\u0079\u0070\u0065\u0030\u0020\u006c\u006f\u0061\u0064\u0069n\u0067");};_gdcde ,_facdd :=_bbcf (_cfcgb ,_fadb );if _facdd !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0057\u0068\u0069l\u0065\u0020\u006c\u006f\u0061\u0064\u0069ng\u0020\u0054\u0079\u0070e\u0030\u0020\u0066\u006f\u006e\u0074\u002e\u0020\u0066on\u0074\u003d%\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fadb ,_facdd ); -return nil ,_facdd ;};_cbbga ._gebd =_gdcde ;case "\u0054\u0079\u0070e\u0031","\u004dM\u0054\u0079\u0070\u0065\u0031","\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":var _ecgf *pdfFontSimple ;_deacd ,_gddgf :=_bcd .NewStdFontByName (_bcd .StdFontName (_fadb ._abed )); -if _gddgf {_bbbgg :=_dbcbc (_deacd );_cbbga ._gebd =&_bbbgg ;_addd :=_aff .TraceToDirectObject (_bbbgg .ToPdfObject ());_bada ,_dedeg ,_acefg :=_ggggfe (_addd );if _acefg !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042\u0061\u0064\u0020\u0053\u0074a\u006e\u0064\u0061\u0072\u0064\u00314\u000a\u0009\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u000a\u0009\u0073\u0074d\u003d\u0025\u002b\u0076",_fadb ,_bbbgg ); -return nil ,_acefg ;};for _ ,_ggegg :=range _cfcgb .Keys (){_bada .Set (_ggegg ,_cfcgb .Get (_ggegg ));};_ecgf ,_acefg =_gcdde (_bada ,_dedeg ,_bbbgg ._ggebf );if _acefg !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0042\u0061\u0064\u0020\u0053\u0074a\u006e\u0064\u0061\u0072\u0064\u00314\u000a\u0009\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u000a\u0009\u0073\u0074d\u003d\u0025\u002b\u0076",_fadb ,_bbbgg ); -return nil ,_acefg ;};_ecgf ._ecgd =_bbbgg ._ecgd ;_ecgf ._cadeb =_bbbgg ._cadeb ;if _ecgf ._adcc ==nil {_ecgf ._adcc =_bbbgg ._adcc ;};}else {_ecgf ,_dffc =_gcdde (_cfcgb ,_fadb ,nil );if _dffc !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0057h\u0069\u006c\u0065 l\u006f\u0061\u0064\u0069\u006e\u0067 \u0073\u0069\u006d\u0070\u006c\u0065\u0020\u0066\u006f\u006e\u0074\u003a\u0020\u0066\u006fn\u0074\u003d\u0025\u0073\u0020\u0065\u0072\u0072=\u0025\u0076",_fadb ,_dffc ); -return nil ,_dffc ;};};_dffc =_ecgf .addEncoding ();if _dffc !=nil {return nil ,_dffc ;};if _gddgf {_ecgf .updateStandard14Font ();};if _gddgf &&_ecgf ._fdgc ==nil &&_ecgf ._ggebf ==nil {_adg .Log .Error ("\u0073\u0069\u006d\u0070\u006c\u0065\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_ecgf ); -_adg .Log .Error ("\u0066n\u0074\u003d\u0025\u002b\u0076",_deacd );};if len (_ecgf ._ecgd )==0{_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a \u004e\u006f\u0020\u0077\u0069d\u0074h\u0073.\u0020\u0066\u006f\u006e\u0074\u003d\u0025s",_ecgf );};_cbbga ._gebd =_ecgf ; -case "\u0054\u0079\u0070e\u0033":_bgdgg ,_fddac :=_gdbebd (_cfcgb ,_fadb );if _fddac !=nil {_adg .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020W\u0068\u0069\u006c\u0065\u0020\u006co\u0061\u0064\u0069\u006e\u0067\u0020\u0074y\u0070\u0065\u0033\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076",_fddac ); -return nil ,_fddac ;};_cbbga ._gebd =_bgdgg ;case "\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030":_gacb ,_daeg :=_ffgg (_cfcgb ,_fadb );if _daeg !=nil {_adg .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0057\u0068i\u006c\u0065\u0020l\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u0069d \u0066\u006f\u006et\u0020\u0074y\u0070\u0065\u0030\u0020\u0066\u006fn\u0074\u003a \u0025\u0076",_daeg ); -return nil ,_daeg ;};_cbbga ._gebd =_gacb ;case "\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":_badf ,_bafa :=_fegcf (_cfcgb ,_fadb );if _bafa !=nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0057\u0068\u0069l\u0065\u0020\u006co\u0061\u0064\u0069\u006e\u0067\u0020\u0063\u0069\u0064\u0020f\u006f\u006e\u0074\u0020\u0074yp\u0065\u0032\u0020\u0066\u006f\u006e\u0074\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073\u0020\u0065\u0072\u0072\u003d\u0025\u0076",_fadb ,_bafa ); -return nil ,_bafa ;};_cbbga ._gebd =_badf ;default:_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020U\u006e\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064\u0020f\u006f\u006e\u0074\u0020\u0074\u0079\u0070\u0065\u003a\u0020\u0066\u006fn\u0074\u003d\u0025\u0073",_fadb ); -return nil ,_e .Errorf ("\u0075\u006e\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065d\u0020\u0066\u006f\u006e\u0074\u0020\u0074y\u0070\u0065\u003a\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_fadb );};return _cbbga ,nil ;};func (_bbgfe *PdfWriter )getPdfVersion ()string {return _e .Sprintf ("\u0025\u0064\u002e%\u0064",_bbgfe ._bgeecg .Major ,_bbgfe ._bgeecg .Minor ); +// Transform rectangle with the supplied matrix. +func (_dffaa *PdfRectangle )Transform (transformMatrix _fec .Matrix ){_dffaa .Llx ,_dffaa .Lly =transformMatrix .Transform (_dffaa .Llx ,_dffaa .Lly );_dffaa .Urx ,_dffaa .Ury =transformMatrix .Transform (_dffaa .Urx ,_dffaa .Ury );_dffaa .Normalize (); }; +// GetDSS gets the DSS dictionary (ETSI TS 102 778-4 V1.1.1) of the current +// document revision. +func (_dbaf *PdfAppender )GetDSS ()(_agf *DSS ){return _dbaf ._cfdd }; + // SignatureHandlerDocMDPParams describe the specific parameters for the SignatureHandlerEx // These parameters describe how to check the difference between revisions. // Revisions of the document get from the PdfParser. -type SignatureHandlerDocMDPParams struct{Parser *_aff .PdfParser ;DiffPolicy _gf .DiffPolicy ;}; +type SignatureHandlerDocMDPParams struct{Parser *_dg .PdfParser ;DiffPolicy _ecb .DiffPolicy ;};const (XObjectTypeUndefined XObjectType =iota ;XObjectTypeImage ;XObjectTypeForm ;XObjectTypePS ;XObjectTypeUnknown ;); -// PdfColorspaceDeviceGray represents a grayscale colorspace. -type PdfColorspaceDeviceGray struct{}; +// GetCharMetrics returns the char metrics for character code `code`. +func (_dfcbf pdfFontType0 )GetCharMetrics (code _bd .CharCode )(_bbg .CharMetrics ,bool ){if _dfcbf .DescendantFont ==nil {_ag .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0061\u006e\u0074\u002e\u0020\u0066\u006f\u006et=\u0025\u0073",_dfcbf ); +return _bbg .CharMetrics {},false ;};return _dfcbf .DescendantFont .GetCharMetrics (code );};func (_bdfd *PdfColorspaceLab )String ()string {return "\u004c\u0061\u0062"};func (_babg *PdfReader )newPdfAnnotationCaretFromDict (_edca *_dg .PdfObjectDictionary )(*PdfAnnotationCaret ,error ){_daff :=PdfAnnotationCaret {}; +_fefg ,_ecce :=_babg .newPdfAnnotationMarkupFromDict (_edca );if _ecce !=nil {return nil ,_ecce ;};_daff .PdfAnnotationMarkup =_fefg ;_daff .RD =_edca .Get ("\u0052\u0044");_daff .Sy =_edca .Get ("\u0053\u0079");return &_daff ,nil ;};func (_cgafg *pdfFontType3 )getFontDescriptor ()*PdfFontDescriptor {return _cgafg ._ccfb }; +func _ffeac ()_a .Time {_fgefgf .Lock ();defer _fgefgf .Unlock ();return _efafac }; -// GetBorderWidth returns the border style's width. -func (_abdf *PdfBorderStyle )GetBorderWidth ()float64 {if _abdf .W ==nil {return 1;};return *_abdf .W ;}; +// NewPdfAppenderWithOpts creates a new Pdf appender from a Pdf reader with options. +func NewPdfAppenderWithOpts (reader *PdfReader ,opts *ReaderOpts ,encryptOptions *EncryptOptions )(*PdfAppender ,error ){_baa :=&PdfAppender {_cga :reader ._efcfa ,Reader :reader ,_gfab :reader ._baad ,_ebaa :reader ._addfg };_beecb ,_bcadd :=_baa ._cga .Seek (0,_cf .SeekEnd ); +if _bcadd !=nil {return nil ,_bcadd ;};_baa ._dcaf =_beecb ;if _ ,_bcadd =_baa ._cga .Seek (0,_cf .SeekStart );_bcadd !=nil {return nil ,_bcadd ;};_baa ._debg ,_bcadd =NewPdfReaderWithOpts (_baa ._cga ,opts );if _bcadd !=nil {return nil ,_bcadd ;};for _ ,_gaff :=range _baa .Reader .GetObjectNums (){if _baa ._ceecc < _gaff {_baa ._ceecc =_gaff ; +};};_baa ._ceef =_baa ._gfab .GetXrefTable ();_baa ._bcdg =_baa ._gfab .GetXrefOffset ();_baa ._ggdd =append (_baa ._ggdd ,_baa ._debg .PageList ...);_baa ._efa =make (map[_dg .PdfObject ]struct{});_baa ._gebe =make (map[_dg .PdfObject ]int64 );_baa ._eede =make (map[_dg .PdfObject ]struct{}); +_baa ._afab =_baa ._debg .AcroForm ;_baa ._cfdd =_baa ._debg .DSS ;if opts !=nil {_baa ._acb =opts .Password ;};if encryptOptions !=nil {_baa ._ccfc =encryptOptions ;};return _baa ,nil ;};func _gef (_egec *_dg .PdfObjectDictionary )bool {for _ ,_bbdb :=range _egec .Keys (){if _ ,_efae :=_fecec [_bbdb .String ()]; +_efae {return true ;};};return false ;}; -// GetRuneMetrics returns the character metrics for the specified rune. -// A bool flag is returned to indicate whether or not the entry was found. -func (_febe pdfFontType0 )GetRuneMetrics (r rune )(_bcd .CharMetrics ,bool ){if _febe .DescendantFont ==nil {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u004e\u006f\u0020\u0064\u0065\u0073\u0063\u0065\u006e\u0064\u0061\u006e\u0074\u002e\u0020\u0066\u006f\u006et=\u0025\u0073",_febe ); -return _bcd .CharMetrics {},false ;};return _febe .DescendantFont .GetRuneMetrics (r );}; +// PdfAnnotationLink represents Link annotations. +// (Section 12.5.6.5 p. 403). +type PdfAnnotationLink struct{*PdfAnnotation ;A _dg .PdfObject ;Dest _dg .PdfObject ;H _dg .PdfObject ;PA _dg .PdfObject ;QuadPoints _dg .PdfObject ;BS _dg .PdfObject ;_ece *PdfAction ;_abea *PdfReader ;}; -// ToPdfObject implements interface PdfModel. -func (_fbeec *PdfAnnotationLine )ToPdfObject ()_aff .PdfObject {_fbeec .PdfAnnotation .ToPdfObject ();_aecf :=_fbeec ._ccfb ;_fgf :=_aecf .PdfObject .(*_aff .PdfObjectDictionary );_fbeec .PdfAnnotationMarkup .appendToPdfDictionary (_fgf );_fgf .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u004c\u0069\u006e\u0065")); -_fgf .SetIfNotNil ("\u004c",_fbeec .L );_fgf .SetIfNotNil ("\u0042\u0053",_fbeec .BS );_fgf .SetIfNotNil ("\u004c\u0045",_fbeec .LE );_fgf .SetIfNotNil ("\u0049\u0043",_fbeec .IC );_fgf .SetIfNotNil ("\u004c\u004c",_fbeec .LL );_fgf .SetIfNotNil ("\u004c\u004c\u0045",_fbeec .LLE ); -_fgf .SetIfNotNil ("\u0043\u0061\u0070",_fbeec .Cap );_fgf .SetIfNotNil ("\u0049\u0054",_fbeec .IT );_fgf .SetIfNotNil ("\u004c\u004c\u004f",_fbeec .LLO );_fgf .SetIfNotNil ("\u0043\u0050",_fbeec .CP );_fgf .SetIfNotNil ("\u004de\u0061\u0073\u0075\u0072\u0065",_fbeec .Measure ); -_fgf .SetIfNotNil ("\u0043\u004f",_fbeec .CO );return _aecf ;}; +// NewPdfColorspaceCalGray returns a new CalGray colorspace object. +func NewPdfColorspaceCalGray ()*PdfColorspaceCalGray {_aaead :=&PdfColorspaceCalGray {};_aaead .BlackPoint =[]float64 {0.0,0.0,0.0};_aaead .Gamma =1;return _aaead ;}; -// AddCRLs adds CRLs to DSS. -func (_bdca *DSS )AddCRLs (crls [][]byte )([]*_aff .PdfObjectStream ,error ){return _bdca .add (&_bdca .CRLs ,_bdca ._abba ,crls );};func _gca (_bccf *PdfPage )map[_aff .PdfObjectName ]_aff .PdfObject {_bdag :=make (map[_aff .PdfObjectName ]_aff .PdfObject ); -if _bccf .Resources ==nil {return _bdag ;};if _bccf .Resources .Font !=nil {if _efad ,_dbcb :=_aff .GetDict (_bccf .Resources .Font );_dbcb {for _ ,_gfb :=range _efad .Keys (){_bdag [_gfb ]=_efad .Get (_gfb );};};};if _bccf .Resources .ExtGState !=nil {if _fafe ,_ebec :=_aff .GetDict (_bccf .Resources .ExtGState ); -_ebec {for _ ,_eeeg :=range _fafe .Keys (){_bdag [_eeeg ]=_fafe .Get (_eeeg );};};};if _bccf .Resources .XObject !=nil {if _aacc ,_deeg :=_aff .GetDict (_bccf .Resources .XObject );_deeg {for _ ,_cbcd :=range _aacc .Keys (){_bdag [_cbcd ]=_aacc .Get (_cbcd ); -};};};if _bccf .Resources .Pattern !=nil {if _eeaf ,_ddgd :=_aff .GetDict (_bccf .Resources .Pattern );_ddgd {for _ ,_eacd :=range _eeaf .Keys (){_bdag [_eacd ]=_eeaf .Get (_eacd );};};};if _bccf .Resources .Shading !=nil {if _dbd ,_ggdb :=_aff .GetDict (_bccf .Resources .Shading ); -_ggdb {for _ ,_fcfea :=range _dbd .Keys (){_bdag [_fcfea ]=_dbd .Get (_fcfea );};};};if _bccf .Resources .ProcSet !=nil {if _ggb ,_aebf :=_aff .GetDict (_bccf .Resources .ProcSet );_aebf {for _ ,_def :=range _ggb .Keys (){_bdag [_def ]=_ggb .Get (_def ); -};};};if _bccf .Resources .Properties !=nil {if _ggdc ,_fggd :=_aff .GetDict (_bccf .Resources .Properties );_fggd {for _ ,_ade :=range _ggdc .Keys (){_bdag [_ade ]=_ggdc .Get (_ade );};};};return _bdag ;}; +// SetColorSpace sets `r` colorspace object to `colorspace`. +func (_fgdeb *PdfPageResources )SetColorSpace (colorspace *PdfPageResourcesColorspaces ){_fgdeb ._dadae =colorspace ;}; -// PdfAnnotationScreen represents Screen annotations. -// (Section 12.5.6.18). -type PdfAnnotationScreen struct{*PdfAnnotation ;T _aff .PdfObject ;MK _aff .PdfObject ;A _aff .PdfObject ;AA _aff .PdfObject ;}; +// GetCharMetrics returns the char metrics for character code `code`. +func (_ggedg pdfFontType3 )GetCharMetrics (code _bd .CharCode )(_bbg .CharMetrics ,bool ){if _ddfc ,_fbdc :=_ggedg ._bcde [code ];_fbdc {return _bbg .CharMetrics {Wx :_ddfc },true ;};if _bbg .IsStdFont (_bbg .StdFontName (_ggedg ._ecbf )){return _bbg .CharMetrics {Wx :250},true ; +};return _bbg .CharMetrics {},false ;};var _ pdfFont =(*pdfFontType0 )(nil ); -// NewPdfAnnotationPopup returns a new popup annotation. -func NewPdfAnnotationPopup ()*PdfAnnotationPopup {_deea :=NewPdfAnnotation ();_bdea :=&PdfAnnotationPopup {};_bdea .PdfAnnotation =_deea ;_deea .SetContext (_bdea );return _bdea ;}; +// PdfActionType represents an action type in PDF (section 12.6.4 p. 417). +type PdfActionType string ; -// NewPdfReaderWithOpts creates a new PdfReader for an input io.ReadSeeker interface -// with a ReaderOpts. -// If ReaderOpts is nil it will be set to default value from NewReaderOpts. -func NewPdfReaderWithOpts (rs _ega .ReadSeeker ,opts *ReaderOpts )(*PdfReader ,error ){const _dffcdc ="\u006d\u006f\u0064\u0065\u006c\u003a\u004e\u0065\u0077\u0050\u0064f\u0052\u0065\u0061\u0064\u0065\u0072\u0057\u0069\u0074\u0068O\u0070\u0074\u0073";return _dffg (rs ,opts ,true ,_dffcdc ); -};func (_dbfc *PdfReader )newPdfAnnotationTrapNetFromDict (_beg *_aff .PdfObjectDictionary )(*PdfAnnotationTrapNet ,error ){_eceec :=PdfAnnotationTrapNet {};return &_eceec ,nil ;}; +// ColorFromFloats returns a new PdfColorDevice based on the input slice of +// color components. The slice should contain four elements representing the +// cyan, magenta, yellow and key components of the color. The values of the +// elements should be between 0 and 1. +func (_agb *PdfColorspaceDeviceCMYK )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=4{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_ebbd :=vals [0];if _ebbd < 0.0||_ebbd > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_ebbd ); +return nil ,ErrColorOutOfRange ;};_dbgcd :=vals [1];if _dbgcd < 0.0||_dbgcd > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_dbgcd );return nil ,ErrColorOutOfRange ; +};_debe :=vals [2];if _debe < 0.0||_debe > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_debe );return nil ,ErrColorOutOfRange ;};_cda :=vals [3]; +if _cda < 0.0||_cda > 1.0{_ag .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_cda );return nil ,ErrColorOutOfRange ;};_ddcb :=NewPdfColorDeviceCMYK (_ebbd ,_dbgcd ,_debe ,_cda ); +return _ddcb ,nil ;}; -// ColorFromFloats returns a new PdfColor based on the input slice of color -// components. The slice should contain three elements representing the -// A, B and C components of the color. The values of the elements should be -// between 0 and 1. -func (_aefb *PdfColorspaceCalRGB )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=3{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_edbd :=vals [0];if _edbd < 0.0||_edbd > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_edbd ); -return nil ,ErrColorOutOfRange ;};_cccd :=vals [1];if _cccd < 0.0||_cccd > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_cccd );return nil ,ErrColorOutOfRange ; -};_cdgec :=vals [2];if _cdgec < 0.0||_cdgec > 1.0{_adg .Log .Debug ("\u0063\u006f\u006cor\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0043\u0053\u0020\u0072\u0061\u006e\u0067\u0065\u003a\u0020",_cdgec );return nil ,ErrColorOutOfRange ;};_dgd :=NewPdfColorCalRGB (_edbd ,_cccd ,_cdgec ); -return _dgd ,nil ;}; +// Y returns the value of the yellow component of the color. +func (_bcgc *PdfColorDeviceCMYK )Y ()float64 {return _bcgc [2]}; -// GetDSS gets the DSS dictionary (ETSI TS 102 778-4 V1.1.1) of the current -// document revision. -func (_cgcb *PdfAppender )GetDSS ()(_dade *DSS ){return _cgcb ._fdbb };func (_bgg *PdfAppender )addNewObject (_adagb _aff .PdfObject ){if _ ,_cccba :=_bgg ._deeb [_adagb ];!_cccba {_bgg ._aggc =append (_bgg ._aggc ,_adagb );_bgg ._deeb [_adagb ]=struct{}{}; -};}; +// ToPdfObject returns the PDF representation of the VRI dictionary. +func (_adbg *VRI )ToPdfObject ()*_dg .PdfObjectDictionary {_cdea :=_dg .MakeDict ();_cdea .SetIfNotNil (_dg .PdfObjectName ("\u0043\u0065\u0072\u0074"),_fecee (_adbg .Cert ));_cdea .SetIfNotNil (_dg .PdfObjectName ("\u004f\u0043\u0053\u0050"),_fecee (_adbg .OCSP )); +_cdea .SetIfNotNil (_dg .PdfObjectName ("\u0043\u0052\u004c"),_fecee (_adbg .CRL ));_cdea .SetIfNotNil ("\u0054\u0055",_adbg .TU );_cdea .SetIfNotNil ("\u0054\u0053",_adbg .TS );return _cdea ;}; -// Val returns the color value. -func (_dafgb *PdfColorDeviceGray )Val ()float64 {return float64 (*_dafgb )}; +// StringToCharcodeBytes maps the provided string runes to charcode bytes and +// it returns the resulting slice of bytes, along with the number of runes +// which could not be converted. If the number of misses is 0, all string runes +// were successfully converted. +func (_egffg *PdfFont )StringToCharcodeBytes (str string )([]byte ,int ){return _egffg .RunesToCharcodeBytes ([]rune (str ));}; -// PdfAnnotationStamp represents Stamp annotations. -// (Section 12.5.6.12). -type PdfAnnotationStamp struct{*PdfAnnotation ;*PdfAnnotationMarkup ;Name _aff .PdfObject ;};const (XObjectTypeUndefined XObjectType =iota ;XObjectTypeImage ;XObjectTypeForm ;XObjectTypePS ;XObjectTypeUnknown ;); +// WriteString outputs the object as it is to be written to file. +func (_gefc *pdfSignDictionary )WriteString ()string {_gefc ._aaeae =0;_gefc ._gdbfe =0;_gefc ._egda =0;_gefc ._ebaaaa =0;_fdaga :=_bc .NewBuffer (nil );_fdaga .WriteString ("\u003c\u003c");for _ ,_egcff :=range _gefc .Keys (){_dacbc :=_gefc .Get (_egcff ); +switch _egcff {case "\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e":_fdaga .WriteString (_egcff .WriteString ());_fdaga .WriteString ("\u0020");_gefc ._egda =_fdaga .Len ();_fdaga .WriteString (_dacbc .WriteString ());_fdaga .WriteString ("\u0020");_gefc ._ebaaaa =_fdaga .Len ()-1; +case "\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073":_fdaga .WriteString (_egcff .WriteString ());_fdaga .WriteString ("\u0020");_gefc ._aaeae =_fdaga .Len ();_fdaga .WriteString (_dacbc .WriteString ());_fdaga .WriteString ("\u0020");_gefc ._gdbfe =_fdaga .Len ()-1; +default:_fdaga .WriteString (_egcff .WriteString ());_fdaga .WriteString ("\u0020");_fdaga .WriteString (_dacbc .WriteString ());};};_fdaga .WriteString ("\u003e\u003e");return _fdaga .String ();}; -// HasPatternByName checks whether a pattern object is defined by the specified keyName. -func (_fcee *PdfPageResources )HasPatternByName (keyName _aff .PdfObjectName )bool {_ ,_fdcga :=_fcee .GetPatternByName (keyName );return _fdcga ;}; +// String implements interface PdfObject. +func (_gg *PdfAction )String ()string {_df ,_agc :=_gg .ToPdfObject ().(*_dg .PdfIndirectObject );if _agc {return _b .Sprintf ("\u0025\u0054\u003a\u0020\u0025\u0073",_gg ._bg ,_df .PdfObject .String ());};return "";}; -// ToPdfObject returns the PDF representation of the colorspace. -func (_gbbc *PdfColorspaceDeviceRGB )ToPdfObject ()_aff .PdfObject {return _aff .MakeName ("\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B");}; +// DecodeArray returns the range of color component values in CalRGB colorspace. +func (_fea *PdfColorspaceCalRGB )DecodeArray ()[]float64 {return []float64 {0.0,1.0,0.0,1.0,0.0,1.0};};func _fbbg (_geagc _dg .PdfObject )(*PdfColorspaceSpecialSeparation ,error ){_debgd :=NewPdfColorspaceSpecialSeparation ();if _dgga ,_fcbg :=_geagc .(*_dg .PdfIndirectObject ); +_fcbg {_debgd ._fecg =_dgga ;};_geagc =_dg .TraceToDirectObject (_geagc );_becbe ,_beab :=_geagc .(*_dg .PdfObjectArray );if !_beab {return nil ,_b .Errorf ("\u0073\u0065p\u0061\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0043\u0053\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0062je\u0063\u0074"); +};if _becbe .Len ()!=4{return nil ,_b .Errorf ("\u0073\u0065p\u0061\u0072\u0061\u0074i\u006f\u006e \u0043\u0053\u003a\u0020\u0049\u006e\u0063\u006fr\u0072\u0065\u0063\u0074\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006ce\u006e\u0067\u0074\u0068");};_geagc =_becbe .Get (0); +_bgcf ,_beab :=_geagc .(*_dg .PdfObjectName );if !_beab {return nil ,_b .Errorf ("\u0073\u0065\u0070ar\u0061\u0074\u0069\u006f\u006e\u0020\u0043\u0053\u003a \u0069n\u0076a\u006ci\u0064\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020\u006e\u0061\u006d\u0065"); +};if *_bgcf !="\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e"{return nil ,_b .Errorf ("\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0043\u0053\u003a\u0020w\u0072o\u006e\u0067\u0020\u0066\u0061\u006d\u0069\u006c\u0079\u0020\u006e\u0061\u006d\u0065"); +};_geagc =_becbe .Get (1);_bgcf ,_beab =_geagc .(*_dg .PdfObjectName );if !_beab {return nil ,_b .Errorf ("\u0073\u0065pa\u0072\u0061\u0074i\u006f\u006e\u0020\u0043S: \u0049nv\u0061\u006c\u0069\u0064\u0020\u0063\u006flo\u0072\u0061\u006e\u0074\u0020\u006e\u0061m\u0065"); +};_debgd .ColorantName =_bgcf ;_geagc =_becbe .Get (2);_afdb ,_cebc :=NewPdfColorspaceFromPdfObject (_geagc );if _cebc !=nil {return nil ,_cebc ;};_debgd .AlternateSpace =_afdb ;_ggdf ,_cebc :=_agec (_becbe .Get (3));if _cebc !=nil {return nil ,_cebc ; +};_debgd .TintTransform =_ggdf ;return _debgd ,nil ;}; -// PdfAnnotationFileAttachment represents FileAttachment annotations. -// (Section 12.5.6.15). -type PdfAnnotationFileAttachment struct{*PdfAnnotation ;*PdfAnnotationMarkup ;FS _aff .PdfObject ;Name _aff .PdfObject ;}; +// NewPdfShadingType2 creates an empty shading type 2 dictionary. +func NewPdfShadingType2 ()*PdfShadingType2 {_acgeec :=&PdfShadingType2 {};_acgeec .PdfShading =&PdfShading {};_acgeec .PdfShading ._bcfbg =_dg .MakeIndirectObject (_dg .MakeDict ());_acgeec .PdfShading ._eeddb =_acgeec ;return _acgeec ;};func (_bfggfb *LTV )getCerts (_gfgb []*_bb .Certificate )([][]byte ,error ){_fgefg :=make ([][]byte ,0,len (_gfgb )); +for _ ,_abdcb :=range _gfgb {_fgefg =append (_fgefg ,_abdcb .Raw );};return _fgefg ,nil ;}; -// GetCharMetrics returns the char metrics for character code `code`. -func (_abede pdfCIDFontType2 )GetCharMetrics (code _eee .CharCode )(_bcd .CharMetrics ,bool ){if _edced ,_cedge :=_abede ._egdcef [code ];_cedge {return _bcd .CharMetrics {Wx :_edced },true ;};_aeeaf :=rune (code );_fabg ,_fbda :=_abede ._aedcf [_aeeaf ]; -if !_fbda {_fabg =int (_abede ._ceageb );};return _bcd .CharMetrics {Wx :float64 (_fabg )},true ;};func (_cbec *PdfAppender )updateObjectsDeep (_fcaf _aff .PdfObject ,_efab map[_aff .PdfObject ]struct{}){if _efab ==nil {_efab =map[_aff .PdfObject ]struct{}{}; -};if _ ,_dbec :=_efab [_fcaf ];_dbec ||_fcaf ==nil {return ;};_efab [_fcaf ]=struct{}{};_dgcb :=_aff .ResolveReferencesDeep (_fcaf ,_cbec ._fdab );if _dgcb !=nil {_adg .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_dgcb );};switch _gfgcf :=_fcaf .(type ){case *_aff .PdfIndirectObject :switch {case _gfgcf .GetParser ()==_cbec ._dafgd ._gaece :return ; -case _gfgcf .GetParser ()==_cbec .Reader ._gaece :_egf ,_ :=_cbec ._dafgd .GetIndirectObjectByNumber (int (_gfgcf .ObjectNumber ));_bfcd ,_gabg :=_egf .(*_aff .PdfIndirectObject );if _gabg &&_bfcd !=nil {if _bfcd .PdfObject !=_gfgcf .PdfObject &&_bfcd .PdfObject .WriteString ()!=_gfgcf .PdfObject .WriteString (){if _ba .Contains (_gfgcf .PdfObject .WriteString (),"\u002f\u0053\u0069\u0067")&&_ba .Contains (_gfgcf .PdfObject .WriteString (),"\u002f\u0053\u0075\u0062\u0074\u0079\u0070\u0065"){return ; -};_cbec .addNewObject (_fcaf );_cbec ._fffa [_fcaf ]=_gfgcf .ObjectNumber ;};};default:_cbec .addNewObject (_fcaf );};_cbec .updateObjectsDeep (_gfgcf .PdfObject ,_efab );case *_aff .PdfObjectArray :for _ ,_aegd :=range _gfgcf .Elements (){_cbec .updateObjectsDeep (_aegd ,_efab ); -};case *_aff .PdfObjectDictionary :for _ ,_bbcc :=range _gfgcf .Keys (){_cbec .updateObjectsDeep (_gfgcf .Get (_bbcc ),_efab );};case *_aff .PdfObjectStreams :if _gfgcf .GetParser ()!=_cbec ._dafgd ._gaece {for _ ,_dgf :=range _gfgcf .Elements (){_cbec .updateObjectsDeep (_dgf ,_efab ); -};};case *_aff .PdfObjectStream :switch {case _gfgcf .GetParser ()==_cbec ._dafgd ._gaece :return ;case _gfgcf .GetParser ()==_cbec .Reader ._gaece :if _feac ,_ffeac :=_cbec ._dafgd ._gaece .LookupByReference (_gfgcf .PdfObjectReference );_ffeac ==nil {var _fbfb bool ; -if _dbef ,_gec :=_aff .GetStream (_feac );_gec &&_af .Equal (_dbef .Stream ,_gfgcf .Stream ){_fbfb =true ;};if _faea ,_dcfc :=_aff .GetDict (_feac );_fbfb &&_dcfc {_fbfb =_faea .WriteString ()==_gfgcf .PdfObjectDictionary .WriteString ();};if _fbfb {return ; -};};if _gfgcf .ObjectNumber !=0{_cbec ._fffa [_fcaf ]=_gfgcf .ObjectNumber ;};default:if _ ,_bbae :=_cbec ._deeb [_fcaf ];!_bbae {_cbec .addNewObject (_fcaf );};};_cbec .updateObjectsDeep (_gfgcf .PdfObjectDictionary ,_efab );};}; +// GetRuneMetrics returns the character metrics for the specified rune. +// A bool flag is returned to indicate whether or not the entry was found. +func (_begcae pdfFontType3 )GetRuneMetrics (r rune )(_bbg .CharMetrics ,bool ){_bgfcd :=_begcae .Encoder ();if _bgfcd ==nil {_ag .Log .Debug ("\u004e\u006f\u0020en\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u0073\u003d\u0025\u0073",_begcae ); +return _bbg .CharMetrics {},false ;};_befd ,_bdca :=_bgfcd .RuneToCharcode (r );if !_bdca {if r !=' '{_ag .Log .Trace ("\u004e\u006f\u0020c\u0068\u0061\u0072\u0063o\u0064\u0065\u0020\u0066\u006f\u0072\u0020r\u0075\u006e\u0065\u003d\u0025\u0076\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",r ,_begcae ); +};return _bbg .CharMetrics {},false ;};_geca ,_aeeba :=_begcae .GetCharMetrics (_befd );return _geca ,_aeeba ;}; -// SetOCProperties sets the optional content properties. -func (_ffdef *PdfWriter )SetOCProperties (ocProperties _aff .PdfObject )error {_deffb :=_ffdef ._cdccb ;if ocProperties !=nil {_adg .Log .Trace ("\u0053e\u0074\u0074\u0069\u006e\u0067\u0020\u004f\u0043\u0020\u0050\u0072o\u0070\u0065\u0072\u0074\u0069\u0065\u0073\u002e\u002e\u002e"); -_deffb .Set ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073",ocProperties );return _ffdef .addObjects (ocProperties );};return nil ;}; +// GetContainingPdfObject implements interface PdfModel. +func (_faabf *Permissions )GetContainingPdfObject ()_dg .PdfObject {return _faabf ._fbdaa }; -// NewPdfActionSound returns a new "sound" action. -func NewPdfActionSound ()*PdfActionSound {_fed :=NewPdfAction ();_eba :=&PdfActionSound {};_eba .PdfAction =_fed ;_fed .SetContext (_eba );return _eba ;}; +// ToImage converts an object to an Image which can be transformed or saved out. +// The image data is decoded and the Image returned. +func (_ccfcd *XObjectImage )ToImage ()(*Image ,error ){_ebcfba :=&Image {};if _ccfcd .Height ==nil {return nil ,_bf .New ("\u0068e\u0069\u0067\u0068\u0074\u0020\u0061\u0074\u0074\u0072\u0069\u0062u\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); +};_ebcfba .Height =*_ccfcd .Height ;if _ccfcd .Width ==nil {return nil ,_bf .New ("\u0077\u0069\u0064th\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};_ebcfba .Width =*_ccfcd .Width ;if _ccfcd .BitsPerComponent ==nil {switch _ccfcd .Filter .(type ){case *_dg .CCITTFaxEncoder ,*_dg .JBIG2Encoder :_ebcfba .BitsPerComponent =1; +case *_dg .LZWEncoder ,*_dg .RunLengthEncoder :_ebcfba .BitsPerComponent =8;default:return nil ,_bf .New ("\u0062\u0069\u0074\u0073\u0020\u0070\u0065\u0072\u0020\u0063\u006fm\u0070\u006f\u006e\u0065\u006e\u0074\u0020\u006d\u0069\u0073s\u0069\u006e\u0067"); +};}else {_ebcfba .BitsPerComponent =*_ccfcd .BitsPerComponent ;};_ebcfba .ColorComponents =_ccfcd .ColorSpace .GetNumComponents ();_ccfcd ._abfb .Set ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073",_dg .MakeInteger (int64 (_ebcfba .ColorComponents ))); +_cafgb ,_bdad :=_dg .DecodeStream (_ccfcd ._abfb );if _bdad !=nil {return nil ,_bdad ;};_ebcfba .Data =_cafgb ;if _ccfcd .Decode !=nil {_dbbbe ,_ebcccf :=_ccfcd .Decode .(*_dg .PdfObjectArray );if !_ebcccf {_ag .Log .Debug ("I\u006e\u0076\u0061\u006cid\u0020D\u0065\u0063\u006f\u0064\u0065 \u006f\u0062\u006a\u0065\u0063\u0074"); +return nil ,_bf .New ("\u0069\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065");};_edebd ,_faedd :=_dbbbe .ToFloat64Array ();if _faedd !=nil {return nil ,_faedd ;};switch _ccfcd .ColorSpace .(type ){case *PdfColorspaceDeviceCMYK :_dcggb :=_ccfcd .ColorSpace .DecodeArray (); +if _dcggb [0]==_edebd [0]&&_dcggb [1]==_edebd [1]&&_dcggb [2]==_edebd [2]&&_dcggb [3]==_edebd [3]{_ebcfba ._gfbb =_edebd ;};default:_ebcfba ._gfbb =_edebd ;};};return _ebcfba ,nil ;}; -// GetRevisionNumber returns the version of the current Pdf document -func (_dgdba *PdfReader )GetRevisionNumber ()int {return _dgdba ._gaece .GetRevisionNumber ()}; +// SetFlag sets the flag for the field. +func (_ddgcd *PdfField )SetFlag (flag FieldFlag ){_ddgcd .Ff =_dg .MakeInteger (int64 (flag ))};func (_daegege *PdfWriter )flushWriter ()error {if _daegege ._ffefc ==nil {_daegege ._ffefc =_daegege ._bddfa .Flush ();};return _daegege ._ffefc ;}; -// PdfActionGoToE represents a GoToE action. -type PdfActionGoToE struct{*PdfAction ;F *PdfFilespec ;D _aff .PdfObject ;NewWindow _aff .PdfObject ;T _aff .PdfObject ;}; +// NewPdfColorspaceSpecialIndexed returns a new Indexed color. +func NewPdfColorspaceSpecialIndexed ()*PdfColorspaceSpecialIndexed {return &PdfColorspaceSpecialIndexed {HiVal :255};}; -// ColorToRGB converts a CalGray color to an RGB color. -func (_gda *PdfColorspaceCalGray )ColorToRGB (color PdfColor )(PdfColor ,error ){_ededb ,_gdefd :=color .(*PdfColorCalGray );if !_gdefd {_adg .Log .Debug ("\u0049n\u0070\u0075\u0074\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u006eo\u0074\u0020\u0063\u0061\u006c\u0020\u0067\u0072\u0061\u0079"); -return nil ,_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};ANorm :=_ededb .Val ();X :=_gda .WhitePoint [0]*_cf .Pow (ANorm ,_gda .Gamma );Y :=_gda .WhitePoint [1]*_cf .Pow (ANorm ,_gda .Gamma );Z :=_gda .WhitePoint [2]*_cf .Pow (ANorm ,_gda .Gamma ); -_dfdc :=3.240479*X +-1.537150*Y +-0.498535*Z ;_acefa :=-0.969256*X +1.875992*Y +0.041556*Z ;_ffgb :=0.055648*X +-0.204043*Y +1.057311*Z ;_dfdc =_cf .Min (_cf .Max (_dfdc ,0),1.0);_acefa =_cf .Min (_cf .Max (_acefa ,0),1.0);_ffgb =_cf .Min (_cf .Max (_ffgb ,0),1.0); -return NewPdfColorDeviceRGB (_dfdc ,_acefa ,_ffgb ),nil ;}; +// ToOutlineTree returns a low level PdfOutlineTreeNode object, based on +// the current instance. +func (_gffca *Outline )ToOutlineTree ()*PdfOutlineTreeNode {return &_gffca .ToPdfOutline ().PdfOutlineTreeNode ;}; -// VRI represents a Validation-Related Information dictionary. -// The VRI dictionary contains validation data in the form of -// certificates, OCSP and CRL information, for a single signature. -// See ETSI TS 102 778-4 V1.1.1 for more information. -type VRI struct{Cert []*_aff .PdfObjectStream ;OCSP []*_aff .PdfObjectStream ;CRL []*_aff .PdfObjectStream ;TU *_aff .PdfObjectString ;TS *_aff .PdfObjectString ;};func (_adda *PdfReader )newPdfAnnotationStrikeOut (_acef *_aff .PdfObjectDictionary )(*PdfAnnotationStrikeOut ,error ){_gead :=PdfAnnotationStrikeOut {}; -_eeea ,_bdce :=_adda .newPdfAnnotationMarkupFromDict (_acef );if _bdce !=nil {return nil ,_bdce ;};_gead .PdfAnnotationMarkup =_eeea ;_gead .QuadPoints =_acef .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_gead ,nil ;};func (_fgffd *pdfFontType3 )baseFields ()*fontCommon {return &_fgffd .fontCommon }; +// GetNumComponents returns the number of input color components, i.e. that are input to the tint transform. +func (_fbec *PdfColorspaceDeviceN )GetNumComponents ()int {return _fbec .ColorantNames .Len ()}; +// PdfAnnotationMovie represents Movie annotations. +// (Section 12.5.6.17). +type PdfAnnotationMovie struct{*PdfAnnotation ;T _dg .PdfObject ;Movie _dg .PdfObject ;A _dg .PdfObject ;}; -// EncryptionAlgorithm is used in EncryptOptions to change the default algorithm used to encrypt the document. -type EncryptionAlgorithm int ; +// GetVersion gets the document version. +func (_cbdff *PdfWriter )GetVersion ()_dg .Version {return _cbdff ._efacd }; -// GetNumComponents returns the number of color components of the colorspace device. -// Returns 3 for an RGB device. -func (_dabf *PdfColorspaceDeviceRGB )GetNumComponents ()int {return 3}; +// ImageToRGB converts an image in CMYK32 colorspace to an RGB image. +func (_ecga *PdfColorspaceDeviceCMYK )ImageToRGB (img Image )(Image ,error ){_ag .Log .Trace ("\u0043\u004d\u0059\u004b\u0033\u0032\u0020\u002d\u003e\u0020\u0052\u0047\u0042");_ag .Log .Trace ("I\u006d\u0061\u0067\u0065\u0020\u0042P\u0043\u003a\u0020\u0025\u0064\u002c \u0043\u006f\u006c\u006f\u0072\u0020\u0063o\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u003a\u0020%\u0064",img .BitsPerComponent ,img .ColorComponents ); +_ag .Log .Trace ("\u004c\u0065\u006e \u0064\u0061\u0074\u0061\u003a\u0020\u0025\u0064",len (img .Data ));_ag .Log .Trace ("H\u0065\u0069\u0067\u0068t:\u0020%\u0064\u002c\u0020\u0057\u0069d\u0074\u0068\u003a\u0020\u0025\u0064",img .Height ,img .Width ); +_dddc ,_dbgd :=_fc .NewImage (int (img .Width ),int (img .Height ),int (img .BitsPerComponent ),img .ColorComponents ,img .Data ,img ._dgeb ,img ._gfbb );if _dbgd !=nil {return Image {},_dbgd ;};_gceag ,_dbgd :=_fc .NRGBAConverter .Convert (_dddc );if _dbgd !=nil {return Image {},_dbgd ; +};return _edcf (_gceag .Base ()),nil ;}; -// NewPdfShadingPatternType2 creates an empty shading pattern type 2 object. -func NewPdfShadingPatternType2 ()*PdfShadingPatternType2 {_fgab :=&PdfShadingPatternType2 {};_fgab .Matrix =_aff .MakeArrayFromIntegers ([]int {1,0,0,1,0,0});_fgab .PdfPattern =&PdfPattern {};_fgab .PdfPattern .PatternType =int64 (*_aff .MakeInteger (2)); -_fgab .PdfPattern ._abbe =_fgab ;_fgab .PdfPattern ._cfegc =_aff .MakeIndirectObject (_aff .MakeDict ());return _fgab ;}; +// ToPdfObject implements interface PdfModel. +func (_ebgf *PdfAnnotationRedact )ToPdfObject ()_dg .PdfObject {_ebgf .PdfAnnotation .ToPdfObject ();_gdgfe :=_ebgf ._cdf ;_cbac :=_gdgfe .PdfObject .(*_dg .PdfObjectDictionary );_ebgf .PdfAnnotationMarkup .appendToPdfDictionary (_cbac );_cbac .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u0052\u0065\u0064\u0061\u0063\u0074")); +_cbac .SetIfNotNil ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073",_ebgf .QuadPoints );_cbac .SetIfNotNil ("\u0049\u0043",_ebgf .IC );_cbac .SetIfNotNil ("\u0052\u004f",_ebgf .RO );_cbac .SetIfNotNil ("O\u0076\u0065\u0072\u006c\u0061\u0079\u0054\u0065\u0078\u0074",_ebgf .OverlayText ); +_cbac .SetIfNotNil ("\u0052\u0065\u0070\u0065\u0061\u0074",_ebgf .Repeat );_cbac .SetIfNotNil ("\u0044\u0041",_ebgf .DA );_cbac .SetIfNotNil ("\u0051",_ebgf .Q );return _gdgfe ;}; -// ToPdfOutline returns a low level PdfOutline object, based on the current -// instance. -func (_gedd *Outline )ToPdfOutline ()*PdfOutline {_gcdb :=NewPdfOutline ();var _baddb []*PdfOutlineItem ;var _gebbe int64 ;var _edgba *PdfOutlineItem ;for _ ,_aeggd :=range _gedd .Entries {_febfe ,_bbdafc :=_aeggd .ToPdfOutlineItem ();_febfe .Parent =&_gcdb .PdfOutlineTreeNode ; -if _edgba !=nil {_edgba .Next =&_febfe .PdfOutlineTreeNode ;_febfe .Prev =&_edgba .PdfOutlineTreeNode ;};_baddb =append (_baddb ,_febfe );_gebbe +=_bbdafc ;_edgba =_febfe ;};_agebe :=int64 (len (_baddb ));_gebbe +=_agebe ;if _agebe > 0{_gcdb .First =&_baddb [0].PdfOutlineTreeNode ; -_gcdb .Last =&_baddb [_agebe -1].PdfOutlineTreeNode ;_gcdb .Count =&_gebbe ;};return _gcdb ;}; +// GetNumComponents returns the number of color components (1 for Indexed). +func (_afgb *PdfColorspaceSpecialIndexed )GetNumComponents ()int {return 1};func _eadf (_eabage _dg .PdfObject ,_facecc *PdfReader )(*OutlineDest ,error ){_eacff ,_cabdda :=_dg .GetArray (_eabage );if !_cabdda {return nil ,_bf .New ("\u006f\u0075\u0074\u006c\u0069\u006e\u0065 \u0064\u0065\u0073t\u0069\u006e\u0061\u0074i\u006f\u006e\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006d\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); +};_gcgf :=_eacff .Len ();if _gcgf < 2{return nil ,_b .Errorf ("\u0069n\u0076\u0061l\u0069\u0064\u0020\u006fu\u0074\u006c\u0069n\u0065\u0020\u0064\u0065\u0073\u0074\u0069\u006e\u0061ti\u006f\u006e\u0020a\u0072\u0072a\u0079\u0020\u006c\u0065\u006e\u0067t\u0068\u003a \u0025\u0064",_gcgf ); +};_bdda :=&OutlineDest {Mode :"\u0046\u0069\u0074"};_bccda :=_eacff .Get (0);if _dbcaf ,_eccd :=_dg .GetIndirect (_bccda );_eccd {if _ ,_dabfd ,_bcaef :=_facecc .PageFromIndirectObject (_dbcaf );_bcaef ==nil {_bdda .Page =int64 (_dabfd -1);}else {_ag .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064 \u006e\u006f\u0074\u0020g\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0069\u006e\u0064\u0065\u0078\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u002b\u0076",_dbcaf ); +};_bdda .PageObj =_dbcaf ;}else if _eeeb ,_dbabg :=_dg .GetIntVal (_bccda );_dbabg {if _eeeb >=0&&_eeeb < len (_facecc .PageList ){_bdda .PageObj =_facecc .PageList [_eeeb ].GetPageAsIndirectObject ();}else {_ag .Log .Debug ("\u0057\u0041R\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0070\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0070\u0061\u0067\u0065\u0020\u0025\u0064",_eeeb ); +};_bdda .Page =int64 (_eeeb );}else {return nil ,_b .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u006f\u0075\u0074\u006cine\u0020de\u0073\u0074\u0069\u006e\u0061\u0074\u0069on\u0020\u0070\u0061\u0067\u0065\u003a\u0020%\u0054",_bccda );};_eaca ,_cabdda :=_dg .GetNameVal (_eacff .Get (1)); +if !_cabdda {_ag .Log .Debug ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0075\u0074\u006c\u0069\u006e\u0065\u0020\u0064\u0065s\u0074\u0069\u006e\u0061\u0074\u0069\u006fn\u0020\u006d\u0061\u0067\u006e\u0069\u0066\u0069\u0063\u0061\u0074i\u006f\u006e\u0020\u006d\u006f\u0064\u0065\u003a\u0020\u0025\u0076",_eacff .Get (1)); +return _bdda ,nil ;};switch _eaca {case "\u0046\u0069\u0074","\u0046\u0069\u0074\u0042":case "\u0046\u0069\u0074\u0048","\u0046\u0069\u0074B\u0048":if _gcgf > 2{_bdda .Y ,_ =_dg .GetNumberAsFloat (_dg .TraceToDirectObject (_eacff .Get (2)));};case "\u0046\u0069\u0074\u0056","\u0046\u0069\u0074B\u0056":if _gcgf > 2{_bdda .X ,_ =_dg .GetNumberAsFloat (_dg .TraceToDirectObject (_eacff .Get (2))); +};case "\u0058\u0059\u005a":if _gcgf > 4{_bdda .X ,_ =_dg .GetNumberAsFloat (_dg .TraceToDirectObject (_eacff .Get (2)));_bdda .Y ,_ =_dg .GetNumberAsFloat (_dg .TraceToDirectObject (_eacff .Get (3)));_bdda .Zoom ,_ =_dg .GetNumberAsFloat (_dg .TraceToDirectObject (_eacff .Get (4))); +};default:_eaca ="\u0046\u0069\u0074";};_bdda .Mode =_eaca ;return _bdda ,nil ;}; -// GetRuneMetrics returns the char metrics for a rune. -// TODO(peterwilliams97) There is nothing callers can do if no CharMetrics are found so we might as -// well give them 0 width. There is no need for the bool return. -func (_cffc *PdfFont )GetRuneMetrics (r rune )(CharMetrics ,bool ){_egbgd :=_cffc .actualFont ();if _egbgd ==nil {_adg .Log .Debug ("ER\u0052\u004fR\u003a\u0020\u0047\u0065\u0074\u0047\u006c\u0079\u0070h\u0043\u0068\u0061\u0072\u004d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u004e\u006f\u0074\u0020\u0069\u006d\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020f\u006fr\u0020\u0066\u006f\u006e\u0074\u0020\u0074\u0079p\u0065=\u0025\u0023T",_cffc ._gebd ); -return _bcd .CharMetrics {},false ;};if _ecdeb ,_feef :=_egbgd .GetRuneMetrics (r );_feef {return _ecdeb ,true ;};if _fgafb ,_gbgf :=_cffc .GetFontDescriptor ();_gbgf ==nil &&_fgafb !=nil {return _bcd .CharMetrics {Wx :_fgafb ._eace },true ;};_adg .Log .Debug ("\u0047\u0065\u0074\u0047\u006c\u0079\u0070h\u0043\u0068\u0061r\u004d\u0065\u0074\u0072i\u0063\u0073\u003a\u0020\u004e\u006f\u0020\u006d\u0065\u0074\u0072\u0069\u0063\u0073\u0020\u0066\u006f\u0072\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0073",_cffc ); -return _bcd .CharMetrics {},false ;}; +// PdfColorLab represents a color in the L*, a*, b* 3 component colorspace. +// Each component is defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. +type PdfColorLab [3]float64 ; -// PdfColorspaceDeviceN represents a DeviceN color space. DeviceN color spaces are similar to Separation color -// spaces, except they can contain an arbitrary number of color components. -/* - Format: [/DeviceN names alternateSpace tintTransform] - or: [/DeviceN names alternateSpace tintTransform attributes] -*/ -type PdfColorspaceDeviceN struct{ColorantNames *_aff .PdfObjectArray ;AlternateSpace PdfColorspace ;TintTransform PdfFunction ;Attributes *PdfColorspaceDeviceNAttributes ;_debe *_aff .PdfIndirectObject ;}; +// ToInteger convert to an integer format. +func (_gagb *PdfColorDeviceGray )ToInteger (bits int )uint32 {_fgfb :=_cg .Pow (2,float64 (bits ))-1;return uint32 (_fgfb *_gagb .Val ());};func (_acedc *fontFile )parseASCIIPart (_dbaa []byte )error {if len (_dbaa )< 2||string (_dbaa [:2])!="\u0025\u0021"{return _bf .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0074a\u0072\u0074\u0020\u006f\u0066\u0020\u0041S\u0043\u0049\u0049\u0020\u0073\u0065\u0067\u006d\u0065\u006e\u0074"); +};_daed ,_adgcca ,_cfdag :=_gadec (_dbaa );if _cfdag !=nil {return _cfdag ;};_aafad :=_dbdg (_daed );_acedc ._ecgd =_aafad ["\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065"];if _acedc ._ecgd ==""{_ag .Log .Debug ("\u0020\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u0020\u0068a\u0073\u0020\u006e\u006f\u0020\u002f\u0046\u006f\u006e\u0074N\u0061\u006d\u0065"); +};if _adgcca !=""{_egcf ,_ggdef :=_gcga (_adgcca );if _ggdef !=nil {return _ggdef ;};_bgecc ,_ggdef :=_bd .NewCustomSimpleTextEncoder (_egcf ,nil );if _ggdef !=nil {_ag .Log .Debug ("\u0045\u0052\u0052\u004fR\u0020\u003a\u0055\u004e\u004b\u004e\u004f\u0057\u004e\u0020G\u004cY\u0050\u0048\u003a\u0020\u0065\u0072\u0072=\u0025\u0076",_ggdef ); +return nil ;};_acedc ._beaeb =_bgecc ;};return nil ;};func (_accb *PdfReader )newPdfAnnotationUnderlineFromDict (_gbae *_dg .PdfObjectDictionary )(*PdfAnnotationUnderline ,error ){_cccc :=PdfAnnotationUnderline {};_gggec ,_gaee :=_accb .newPdfAnnotationMarkupFromDict (_gbae ); +if _gaee !=nil {return nil ,_gaee ;};_cccc .PdfAnnotationMarkup =_gggec ;_cccc .QuadPoints =_gbae .Get ("\u0051\u0075\u0061\u0064\u0050\u006f\u0069\u006e\u0074\u0073");return &_cccc ,nil ;}; -// ToPdfObject returns the PDF representation of the shading dictionary. -func (_bbgcbc *PdfShadingType3 )ToPdfObject ()_aff .PdfObject {_bbgcbc .PdfShading .ToPdfObject ();_acac ,_fegac :=_bbgcbc .getShadingDict ();if _fegac !=nil {_adg .Log .Error ("\u0055\u006ea\u0062\u006c\u0065\u0020\u0074\u006f\u0020\u0061\u0063\u0063\u0065\u0073\u0073\u0020\u0073\u0068\u0061\u0064\u0069\u006e\u0067\u0020di\u0063\u0074"); -return nil ;};if _bbgcbc .Coords !=nil {_acac .Set ("\u0043\u006f\u006f\u0072\u0064\u0073",_bbgcbc .Coords );};if _bbgcbc .Domain !=nil {_acac .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_bbgcbc .Domain );};if _bbgcbc .Function !=nil {if len (_bbgcbc .Function )==1{_acac .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_bbgcbc .Function [0].ToPdfObject ()); -}else {_bebba :=_aff .MakeArray ();for _ ,_fdaff :=range _bbgcbc .Function {_bebba .Append (_fdaff .ToPdfObject ());};_acac .Set ("\u0046\u0075\u006e\u0063\u0074\u0069\u006f\u006e",_bebba );};};if _bbgcbc .Extend !=nil {_acac .Set ("\u0045\u0078\u0074\u0065\u006e\u0064",_bbgcbc .Extend ); -};return _bbgcbc ._bdacg ;}; +// NewPdfActionTrans returns a new "trans" action. +func NewPdfActionTrans ()*PdfActionTrans {_ecbb :=NewPdfAction ();_abc :=&PdfActionTrans {};_abc .PdfAction =_ecbb ;_ecbb .SetContext (_abc );return _abc ;};func (_befg *Image )resampleLowBits (_dbfd []uint32 ){_ddge :=_fc .BytesPerLine (int (_befg .Width ),int (_befg .BitsPerComponent ),_befg .ColorComponents ); +_gaacbf :=make ([]byte ,_befg .ColorComponents *_ddge *int (_befg .Height ));_fcaeg :=int (_befg .BitsPerComponent )*_befg .ColorComponents *int (_befg .Width );_gabceb :=uint8 (8);var (_gbacf ,_fgbee int ;_eagbgf uint32 ;);for _ccfbf :=0;_ccfbf < int (_befg .Height ); +_ccfbf ++{_fgbee =_ccfbf *_ddge ;for _dfgg :=0;_dfgg < _fcaeg ;_dfgg ++{_eagbgf =_dbfd [_gbacf ];_gabceb -=uint8 (_befg .BitsPerComponent );_gaacbf [_fgbee ]|=byte (_eagbgf )<<_gabceb ;if _gabceb ==0{_gabceb =8;_fgbee ++;};_gbacf ++;};};_befg .Data =_gaacbf ; +};func (_bdcbb *LTV )getCRLs (_ccee []*_bb .Certificate )([][]byte ,error ){_bacdc :=make ([][]byte ,0,len (_ccee ));for _ ,_bbfb :=range _ccee {for _ ,_adfeb :=range _bbfb .CRLDistributionPoints {if _bdcbb .CertClient .IsCA (_bbfb ){continue ;};_fedc ,_aaafg :=_bdcbb .CRLClient .MakeRequest (_adfeb ,_bbfb ); +if _aaafg !=nil {_ag .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043R\u004c\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074 \u0065\u0072\u0072o\u0072:\u0020\u0025\u0076",_aaafg );continue ;};_bacdc =append (_bacdc ,_fedc );};};return _bacdc ,nil ;}; -// ColorFromPdfObjects gets the color from a series of pdf objects (4 for cmyk). -func (_fgdg *PdfColorspaceDeviceCMYK )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=4{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_dbbb ,_adbf :=_aff .GetNumbersAsFloat (objects ); -if _adbf !=nil {return nil ,_adbf ;};return _fgdg .ColorFromFloats (_dbbb );}; -// SetPatternByName sets a pattern resource specified by keyName. -func (_fdge *PdfPageResources )SetPatternByName (keyName _aff .PdfObjectName ,pattern _aff .PdfObject )error {if _fdge .Pattern ==nil {_fdge .Pattern =_aff .MakeDict ();};_gcebb ,_cebge :=_aff .GetDict (_fdge .Pattern );if !_cebge {return _aff .ErrTypeError ; -};_gcebb .Set (keyName ,pattern );return nil ;};func (_ggag *PdfWriter )addObjects (_feabb _aff .PdfObject )error {_adg .Log .Trace ("\u0041d\u0064i\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0073\u0021");if _eedb ,_ceega :=_feabb .(*_aff .PdfIndirectObject ); -_ceega {_adg .Log .Trace ("\u0049\u006e\u0064\u0069\u0072\u0065\u0063\u0074");_adg .Log .Trace ("\u002d \u0025\u0073\u0020\u0028\u0025\u0070)",_feabb ,_eedb );_adg .Log .Trace ("\u002d\u0020\u0025\u0073",_eedb .PdfObject );if _ggag .addObject (_eedb ){_bdfee :=_ggag .addObjects (_eedb .PdfObject ); -if _bdfee !=nil {return _bdfee ;};};return nil ;};if _fefgb ,_bfcaac :=_feabb .(*_aff .PdfObjectStream );_bfcaac {_adg .Log .Trace ("\u0053\u0074\u0072\u0065\u0061\u006d");_adg .Log .Trace ("\u002d \u0025\u0073\u0020\u0025\u0070",_feabb ,_feabb );if _ggag .addObject (_fefgb ){_bdceba :=_ggag .addObjects (_fefgb .PdfObjectDictionary ); -if _bdceba !=nil {return _bdceba ;};};return nil ;};if _cgebd ,_acadab :=_feabb .(*_aff .PdfObjectDictionary );_acadab {_adg .Log .Trace ("\u0044\u0069\u0063\u0074");_adg .Log .Trace ("\u002d\u0020\u0025\u0073",_feabb );for _ ,_dfcef :=range _cgebd .Keys (){_cdga :=_cgebd .Get (_dfcef ); -if _gedac ,_eebfb :=_cdga .(*_aff .PdfObjectReference );_eebfb {_cdga =_gedac .Resolve ();_cgebd .Set (_dfcef ,_cdga );};if _dfcef !="\u0050\u0061\u0072\u0065\u006e\u0074"{if _gcbfa :=_ggag .addObjects (_cdga );_gcbfa !=nil {return _gcbfa ;};}else {if _ ,_eeaa :=_cdga .(*_aff .PdfObjectNull ); -_eeaa {continue ;};if _fggbf :=_ggag .hasObject (_cdga );!_fggbf {_adg .Log .Debug ("P\u0061\u0072\u0065\u006e\u0074\u0020o\u0062\u006a\u0020\u006e\u006f\u0074 \u0061\u0064\u0064\u0065\u0064\u0020\u0079e\u0074\u0021\u0021\u0020\u0025\u0054\u0020\u0025\u0070\u0020%\u0076",_cdga ,_cdga ,_cdga ); -_ggag ._gbfdc [_cdga ]=append (_ggag ._gbfdc [_cdga ],_cgebd );};};};return nil ;};if _bgfeb ,_afgda :=_feabb .(*_aff .PdfObjectArray );_afgda {_adg .Log .Trace ("\u0041\u0072\u0072a\u0079");_adg .Log .Trace ("\u002d\u0020\u0025\u0073",_feabb );if _bgfeb ==nil {return _g .New ("\u0061\u0072\u0072a\u0079\u0020\u0069\u0073\u0020\u006e\u0069\u006c"); -};for _fccfg ,_ggdaa :=range _bgfeb .Elements (){if _aabea ,_aabf :=_ggdaa .(*_aff .PdfObjectReference );_aabf {_ggdaa =_aabea .Resolve ();_bgfeb .Set (_fccfg ,_ggdaa );};if _beabbb :=_ggag .addObjects (_ggdaa );_beabbb !=nil {return _beabbb ;};};return nil ; -};if _ ,_fggda :=_feabb .(*_aff .PdfObjectReference );_fggda {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0043\u0061\u006e\u006e\u006f\u0074 \u0062\u0065\u0020\u0061\u0020\u0072e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u002d\u0020\u0067\u006f\u0074 \u0025\u0023\u0076\u0021",_feabb ); -return _g .New ("r\u0065\u0066\u0065\u0072en\u0063e\u0020\u006e\u006f\u0074\u0020a\u006c\u006c\u006f\u0077\u0065\u0064");};return nil ;}; +// String returns a string representation of the field. +func (_afgg *PdfField )String ()string {if _befc ,_fadeg :=_afgg .ToPdfObject ().(*_dg .PdfIndirectObject );_fadeg {return _b .Sprintf ("\u0025\u0054\u003a\u0020\u0025\u0073",_afgg ._bdfg ,_befc .PdfObject .String ());};return "";};func (_efaaf *LTV )validateSig (_facbb *PdfSignature )error {if _facbb ==nil ||_facbb .Contents ==nil ||len (_facbb .Contents .Bytes ())==0{return _b .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065 \u0066\u0069\u0065l\u0064:\u0020\u0025\u0076",_facbb ); +};return nil ;}; -// SetOpenAction sets the OpenAction in the PDF catalog. -// The value shall be either an array defining a destination (12.3.2 "Destinations" PDF32000_2008), -// or an action dictionary representing an action (12.6 "Actions" PDF32000_2008). -func (_ffbedf *PdfWriter )SetOpenAction (dest _aff .PdfObject )error {if dest ==nil ||_aff .IsNullObject (dest ){return nil ;};_ffbedf ._cdccb .Set ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e",dest );return _ffbedf .addObjects (dest ); -}; +// NewImageFromGoImage creates a new NRGBA32 unidoc Image from a golang Image. +// If `goimg` is grayscale (*goimage.Gray8) then calls NewGrayImageFromGoImage instead. +func (_bgfeg DefaultImageHandler )NewImageFromGoImage (goimg _gd .Image )(*Image ,error ){_babd ,_dgcc :=_fc .FromGoImage (goimg );if _dgcc !=nil {return nil ,_dgcc ;};_aafd :=_edcf (_babd .Base ());return &_aafd ,nil ;};func (_gbdgb *PdfWriter )writeTrailer (_efeffc int ){_gbdgb .writeString ("\u0078\u0072\u0065\u0066\u000d\u000a"); +for _bbbbbf :=0;_bbbbbf <=_efeffc ;{for ;_bbbbbf <=_efeffc ;_bbbbbf ++{_ccgf ,_fbfbbe :=_gbdgb ._fffge [_bbbbbf ];if _fbfbbe &&(!_gbdgb ._bbac ||_gbdgb ._bbac &&(_ccgf .Type ==1&&_ccgf .Offset >=_gbdgb ._fafab ||_ccgf .Type ==0)){break ;};};var _gfadf int ; +for _gfadf =_bbbbbf +1;_gfadf <=_efeffc ;_gfadf ++{_dcdda ,_edff :=_gbdgb ._fffge [_gfadf ];if _edff &&(!_gbdgb ._bbac ||_gbdgb ._bbac &&(_dcdda .Type ==1&&_dcdda .Offset > _gbdgb ._fafab )){continue ;};break ;};_gcae :=_b .Sprintf ("\u0025d\u0020\u0025\u0064\u000d\u000a",_bbbbbf ,_gfadf -_bbbbbf ); +_gbdgb .writeString (_gcae );for _dccae :=_bbbbbf ;_dccae < _gfadf ;_dccae ++{_fcceeb :=_gbdgb ._fffge [_dccae ];switch _fcceeb .Type {case 0:_gcae =_b .Sprintf ("\u0025\u002e\u0031\u0030\u0064\u0020\u0025\u002e\u0035d\u0020\u0066\u000d\u000a",0,65535); +_gbdgb .writeString (_gcae );case 1:_gcae =_b .Sprintf ("\u0025\u002e\u0031\u0030\u0064\u0020\u0025\u002e\u0035d\u0020\u006e\u000d\u000a",_fcceeb .Offset ,0);_gbdgb .writeString (_gcae );};};_bbbbbf =_gfadf +1;};_fdebc :=_dg .MakeDict ();_fdebc .Set ("\u0049\u006e\u0066\u006f",_gbdgb ._efbfa ); +_fdebc .Set ("\u0052\u006f\u006f\u0074",_gbdgb ._fadee );_fdebc .Set ("\u0053\u0069\u007a\u0065",_dg .MakeInteger (int64 (_efeffc +1)));if _gbdgb ._bbac &&_gbdgb ._eege > 0{_fdebc .Set ("\u0050\u0072\u0065\u0076",_dg .MakeInteger (_gbdgb ._eege ));};if _gbdgb ._fadcg !=nil {_fdebc .Set ("\u0045n\u0063\u0072\u0079\u0070\u0074",_gbdgb ._acdag ); +};if _gbdgb ._agbeg ==nil &&_gbdgb ._cedaf !=""&&_gbdgb ._ceaab !=""{_gbdgb ._agbeg =_dg .MakeArray (_dg .MakeHexString (_gbdgb ._cedaf ),_dg .MakeHexString (_gbdgb ._ceaab ));};if _gbdgb ._agbeg !=nil {_fdebc .Set ("\u0049\u0044",_gbdgb ._agbeg );_ag .Log .Trace ("\u0049d\u0073\u003a\u0020\u0025\u0073",_gbdgb ._agbeg ); +};_gbdgb .writeString ("\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u000a");_gbdgb .writeString (_fdebc .WriteString ());_gbdgb .writeString ("\u000a");}; -// PdfAnnotationInk represents Ink annotations. -// (Section 12.5.6.13). -type PdfAnnotationInk struct{*PdfAnnotation ;*PdfAnnotationMarkup ;InkList _aff .PdfObject ;BS _aff .PdfObject ;};type pdfFontSimple struct{fontCommon ;_effd *_aff .PdfIndirectObject ;_ecgd map[_eee .CharCode ]float64 ;_fdgc _eee .TextEncoder ;_ggebf _eee .TextEncoder ; -_adcc *PdfFontDescriptor ; +// NewPdfFontFromPdfObject loads a PdfFont from the dictionary `fontObj`. If there is a problem an +// error is returned. +func NewPdfFontFromPdfObject (fontObj _dg .PdfObject )(*PdfFont ,error ){return _gegbd (fontObj ,true )}; -// Encoding is subject to limitations that are described in 9.6.6, "Character Encoding". -// BaseFont is derived differently. -FirstChar _aff .PdfObject ;LastChar _aff .PdfObject ;Widths _aff .PdfObject ;Encoding _aff .PdfObject ;_cadeb *_bcd .RuneCharSafeMap ;}; +// NewPdfColorDeviceGray returns a new grayscale color based on an input grayscale float value in range [0-1]. +func NewPdfColorDeviceGray (grayVal float64 )*PdfColorDeviceGray {_cebaa :=PdfColorDeviceGray (grayVal );return &_cebaa ;}; -// Encoder returns the font's text encoder. -func (_bdab *PdfFont )Encoder ()_eee .TextEncoder {_fcfgg :=_bdab .actualFont ();if _fcfgg ==nil {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0045n\u0063\u006f\u0064er\u0020\u006e\u006f\u0074\u0020\u0069m\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0066o\u006e\u0074\u0020\u0074\u0079\u0070\u0065\u003d%\u0023\u0054",_bdab ._gebd ); -return nil ;};return _fcfgg .Encoder ();};func (_cddb *PdfWriter )writeDocumentVersion (){if _cddb ._ccbe {_cddb .writeString ("\u000a");}else {_cddb .writeString (_e .Sprintf ("\u0025\u0025\u0050D\u0046\u002d\u0025\u0064\u002e\u0025\u0064\u000a",_cddb ._bgeecg .Major ,_cddb ._bgeecg .Minor )); -_cddb .writeString ("\u0025\u00e2\u00e3\u00cf\u00d3\u000a");};};func _ffaff (_cacf _aff .PdfObject )(*PdfColorspaceLab ,error ){_ffebc :=NewPdfColorspaceLab ();if _aafc ,_ddad :=_cacf .(*_aff .PdfIndirectObject );_ddad {_ffebc ._bccfg =_aafc ;};_cacf =_aff .TraceToDirectObject (_cacf ); -_gbfge ,_fbbb :=_cacf .(*_aff .PdfObjectArray );if !_fbbb {return nil ,_e .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _gbfge .Len ()!=2{return nil ,_e .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u0043\u0061\u006c\u0052G\u0042 \u0063o\u006c\u006f\u0072\u0073\u0070\u0061\u0063e"); -};_cacf =_aff .TraceToDirectObject (_gbfge .Get (0));_gbdaf ,_fbbb :=_cacf .(*_aff .PdfObjectName );if !_fbbb {return nil ,_e .Errorf ("\u006c\u0061\u0062\u0020\u006e\u0061\u006d\u0065\u0020\u006e\u006ft\u0020\u0061\u0020\u004e\u0061\u006d\u0065\u0020\u006f\u0062j\u0065\u0063\u0074"); -};if *_gbdaf !="\u004c\u0061\u0062"{return nil ,_e .Errorf ("n\u006ft\u0020\u0061\u0020\u004c\u0061\u0062\u0020\u0063o\u006c\u006f\u0072\u0073pa\u0063\u0065");};_cacf =_aff .TraceToDirectObject (_gbfge .Get (1));_faee ,_fbbb :=_cacf .(*_aff .PdfObjectDictionary ); -if !_fbbb {return nil ,_e .Errorf ("c\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u0020or\u0020\u0069\u006ev\u0061l\u0069\u0064");};_cacf =_faee .Get ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074"); -_cacf =_aff .TraceToDirectObject (_cacf );_dgbgf ,_fbbb :=_cacf .(*_aff .PdfObjectArray );if !_fbbb {return nil ,_e .Errorf ("\u004c\u0061\u0062\u0020In\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069n\u0074");};if _dgbgf .Len ()!=3{return nil ,_e .Errorf ("\u004c\u0061b\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074\u0020\u0061rr\u0061\u0079"); -};_begad ,_gggf :=_dgbgf .GetAsFloat64Slice ();if _gggf !=nil {return nil ,_gggf ;};_ffebc .WhitePoint =_begad ;_cacf =_faee .Get ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");if _cacf !=nil {_cacf =_aff .TraceToDirectObject (_cacf ); -_dbaa ,_gabc :=_cacf .(*_aff .PdfObjectArray );if !_gabc {return nil ,_e .Errorf ("\u004c\u0061\u0062: \u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074");};if _dbaa .Len ()!=3{return nil ,_e .Errorf ("\u004c\u0061b\u003a\u0020\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074\u0020\u0061rr\u0061\u0079"); -};_gdce ,_afdg :=_dbaa .GetAsFloat64Slice ();if _afdg !=nil {return nil ,_afdg ;};_ffebc .BlackPoint =_gdce ;};_cacf =_faee .Get ("\u0052\u0061\u006eg\u0065");if _cacf !=nil {_cacf =_aff .TraceToDirectObject (_cacf );_agfc ,_fefe :=_cacf .(*_aff .PdfObjectArray ); -if !_fefe {_adg .Log .Error ("\u0052\u0061n\u0067\u0065\u0020t\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");return nil ,_e .Errorf ("\u004ca\u0062:\u0020\u0054\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};if _agfc .Len ()!=4{_adg .Log .Error ("\u0052\u0061\u006e\u0067\u0065\u0020\u0072\u0061\u006e\u0067\u0065\u0020e\u0072\u0072\u006f\u0072"); -return nil ,_e .Errorf ("\u004c\u0061b\u003a\u0020\u0052a\u006e\u0067\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_fagg ,_gbgg :=_agfc .GetAsFloat64Slice ();if _gbgg !=nil {return nil ,_gbgg ;};_ffebc .Range =_fagg ;};return _ffebc ,nil ;}; +// K returns the value of the key component of the color. +func (_eadc *PdfColorDeviceCMYK )K ()float64 {return _eadc [3]}; -// SetNamedDestinations sets the Dests entry in the PDF catalog. -// See section 12.3.2.3 "Named Destinations" (p. 367 PDF32000_2008). -func (_ceegf *PdfWriter )SetNamedDestinations (dests _aff .PdfObject )error {if dests ==nil {return nil ;};_adg .Log .Trace ("\u0053e\u0074\u0074\u0069\u006e\u0067\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0044\u0065\u0073\u0074\u0073\u002e\u002e\u002e"); -_ceegf ._cdccb .Set ("\u0044\u0065\u0073t\u0073",dests );return _ceegf .addObjects (dests );}; +// ToPdfObject returns the PDF representation of the function. +func (_gbabe *PdfFunctionType4 )ToPdfObject ()_dg .PdfObject {_daaf :=_gbabe ._ggfdf ;if _daaf ==nil {_gbabe ._ggfdf =&_dg .PdfObjectStream {};_daaf =_gbabe ._ggfdf ;};_aabbb :=_dg .MakeDict ();_aabbb .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_dg .MakeInteger (4)); +_dbad :=&_dg .PdfObjectArray {};for _ ,_dbgcbg :=range _gbabe .Domain {_dbad .Append (_dg .MakeFloat (_dbgcbg ));};_aabbb .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_dbad );_ffaa :=&_dg .PdfObjectArray {};for _ ,_dcagb :=range _gbabe .Range {_ffaa .Append (_dg .MakeFloat (_dcagb )); +};_aabbb .Set ("\u0052\u0061\u006eg\u0065",_ffaa );if _gbabe ._cbdbd ==nil &&_gbabe .Program !=nil {_gbabe ._cbdbd =[]byte (_gbabe .Program .String ());};_aabbb .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_dg .MakeInteger (int64 (len (_gbabe ._cbdbd )))); +_daaf .Stream =_gbabe ._cbdbd ;_daaf .PdfObjectDictionary =_aabbb ;return _daaf ;}; -// NewPdfDate returns a new PdfDate object from a PDF date string (see 7.9.4 Dates). -// format: "D: YYYYMMDDHHmmSSOHH'mm" -func NewPdfDate (dateStr string )(PdfDate ,error ){_fffga ,_eaccd :=_cd .ParsePdfTime (dateStr );if _eaccd !=nil {return PdfDate {},_eaccd ;};return NewPdfDateFromTime (_fffga );}; +// XObjectImage (Table 89 in 8.9.5.1). +// Implements PdfModel interface. +type XObjectImage struct{ -// ToPdfObject returns a *PdfIndirectObject containing a *PdfObjectArray representation of the DeviceN colorspace. -/* - Format: [/DeviceN names alternateSpace tintTransform] - or: [/DeviceN names alternateSpace tintTransform attributes] -*/ -func (_fege *PdfColorspaceDeviceN )ToPdfObject ()_aff .PdfObject {_dggga :=_aff .MakeArray (_aff .MakeName ("\u0044e\u0076\u0069\u0063\u0065\u004e"));_dggga .Append (_fege .ColorantNames );_dggga .Append (_fege .AlternateSpace .ToPdfObject ());_dggga .Append (_fege .TintTransform .ToPdfObject ()); -if _fege .Attributes !=nil {_dggga .Append (_fege .Attributes .ToPdfObject ());};if _fege ._debe !=nil {_fege ._debe .PdfObject =_dggga ;return _fege ._debe ;};return _dggga ;}; +//ColorSpace PdfObject +Width *int64 ;Height *int64 ;ColorSpace PdfColorspace ;BitsPerComponent *int64 ;Filter _dg .StreamEncoder ;Intent _dg .PdfObject ;ImageMask _dg .PdfObject ;Mask _dg .PdfObject ;Matte _dg .PdfObject ;Decode _dg .PdfObject ;Interpolate _dg .PdfObject ;Alternatives _dg .PdfObject ; +SMask _dg .PdfObject ;SMaskInData _dg .PdfObject ;Name _dg .PdfObject ;StructParent _dg .PdfObject ;ID _dg .PdfObject ;OPI _dg .PdfObject ;Metadata _dg .PdfObject ;OC _dg .PdfObject ;Stream []byte ;_abfb *_dg .PdfObjectStream ;}; -// SetFontByName sets the font specified by keyName to the given object. -func (_fcdcd *PdfPageResources )SetFontByName (keyName _aff .PdfObjectName ,obj _aff .PdfObject )error {if _fcdcd .Font ==nil {_fcdcd .Font =_aff .MakeDict ();};_bbbfgd ,_ebed :=_aff .TraceToDirectObject (_fcdcd .Font ).(*_aff .PdfObjectDictionary );if !_ebed {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u0021\u0020(\u0067\u006ft\u0020\u0025\u0054\u0029",_aff .TraceToDirectObject (_fcdcd .Font )); -return _aff .ErrTypeError ;};_bbbfgd .Set (keyName ,obj );return nil ;}; +// ToUnicode returns the name of the font's "ToUnicode" field if there is one, or "" if there isn't. +func (_bfac *PdfFont )ToUnicode ()string {if _bfac .baseFields ()._ecfb ==nil {return "";};return _bfac .baseFields ()._ecfb .Name ();}; -// FontDescriptor returns font's PdfFontDescriptor. This may be a builtin descriptor for standard 14 -// fonts but must be an explicit descriptor for other fonts. -func (_decd *PdfFont )FontDescriptor ()*PdfFontDescriptor {if _decd .baseFields ()._ggca !=nil {return _decd .baseFields ()._ggca ;};if _bedb :=_decd ._gebd .getFontDescriptor ();_bedb !=nil {return _bedb ;};_adg .Log .Error ("\u0041\u006cl \u0066\u006f\u006et\u0073\u0020\u0068\u0061ve \u0061 D\u0065\u0073\u0063\u0072\u0069\u0070\u0074or\u002e\u0020\u0066\u006f\u006e\u0074\u003d%\u0073",_decd ); -return nil ;}; +// ToPdfObject implements interface PdfModel. +func (_ggd *PdfAnnotationLine )ToPdfObject ()_dg .PdfObject {_ggd .PdfAnnotation .ToPdfObject ();_aadc :=_ggd ._cdf ;_fafb :=_aadc .PdfObject .(*_dg .PdfObjectDictionary );_ggd .PdfAnnotationMarkup .appendToPdfDictionary (_fafb );_fafb .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_dg .MakeName ("\u004c\u0069\u006e\u0065")); +_fafb .SetIfNotNil ("\u004c",_ggd .L );_fafb .SetIfNotNil ("\u0042\u0053",_ggd .BS );_fafb .SetIfNotNil ("\u004c\u0045",_ggd .LE );_fafb .SetIfNotNil ("\u0049\u0043",_ggd .IC );_fafb .SetIfNotNil ("\u004c\u004c",_ggd .LL );_fafb .SetIfNotNil ("\u004c\u004c\u0045",_ggd .LLE ); +_fafb .SetIfNotNil ("\u0043\u0061\u0070",_ggd .Cap );_fafb .SetIfNotNil ("\u0049\u0054",_ggd .IT );_fafb .SetIfNotNil ("\u004c\u004c\u004f",_ggd .LLO );_fafb .SetIfNotNil ("\u0043\u0050",_ggd .CP );_fafb .SetIfNotNil ("\u004de\u0061\u0073\u0075\u0072\u0065",_ggd .Measure ); +_fafb .SetIfNotNil ("\u0043\u004f",_ggd .CO );return _aadc ;};func _bgcbab ()_a .Time {_fgefgf .Lock ();defer _fgefgf .Unlock ();return _ccfea }; -// PdfPageResourcesColorspaces contains the colorspace in the PdfPageResources. -// Needs to have matching name and colorspace map entry. The Names define the order. -type PdfPageResourcesColorspaces struct{Names []string ;Colorspaces map[string ]PdfColorspace ;_abedg *_aff .PdfIndirectObject ;}; +// GetNumComponents returns the number of color components (3 for RGB). +func (_fbge *PdfColorDeviceRGB )GetNumComponents ()int {return 3}; -// NewPdfFilespecFromObj creates and returns a new PdfFilespec object. -func NewPdfFilespecFromObj (obj _aff .PdfObject )(*PdfFilespec ,error ){_eedc :=&PdfFilespec {};var _baefd *_aff .PdfObjectDictionary ;if _ccbaf ,_ffce :=_aff .GetIndirect (obj );_ffce {_eedc ._dfefa =_ccbaf ;_fbcca ,_eabd :=_aff .GetDict (_ccbaf .PdfObject ); -if !_eabd {_adg .Log .Debug ("\u004f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074i\u006f\u006e\u0061\u0072\u0079\u0020\u0074y\u0070\u0065");return nil ,_aff .ErrTypeError ;};_baefd =_fbcca ;}else if _ebcebc ,_efag :=_aff .GetDict (obj ); -_efag {_eedc ._dfefa =_ebcebc ;_baefd =_ebcebc ;}else {_adg .Log .Debug ("O\u0062\u006a\u0065\u0063\u0074\u0020t\u0079\u0070\u0065\u0020\u0075\u006e\u0065\u0078\u0070e\u0063\u0074\u0065d\u0020(\u0025\u0054\u0029",obj );return nil ,_aff .ErrTypeError ;}; -if _baefd ==nil {_adg .Log .Debug ("\u0044i\u0063t\u0069\u006f\u006e\u0061\u0072y\u0020\u006di\u0073\u0073\u0069\u006e\u0067");return nil ,_g .New ("\u0064\u0069\u0063t\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067");};if _cbbc :=_baefd .Get ("\u0054\u0079\u0070\u0065"); -_cbbc !=nil {_faac ,_ebge :=_cbbc .(*_aff .PdfObjectName );if !_ebge {_adg .Log .Trace ("\u0049\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u0021\u0020\u0049\u006e\u0076a\u006c\u0069\u0064\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0025\u0054\u0029\u0020\u002d\u0020\u0073\u0068\u006f\u0075\u006c\u0064 \u0062\u0065\u0020\u004e\u0061m\u0065",_cbbc ); -}else {if *_faac !="\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"{_adg .Log .Trace ("\u0055\u006e\u0073\u0075\u0073\u0070e\u0063\u0074\u0065\u0064\u0020\u0054\u0079\u0070\u0065\u0020\u0021\u003d\u0020F\u0069\u006c\u0065\u0073\u0070\u0065\u0063 \u0028\u0025\u0073\u0029",*_faac ); -};};};if _acafa :=_baefd .Get ("\u0046\u0053");_acafa !=nil {_eedc .FS =_acafa ;};if _gddf :=_baefd .Get ("\u0046");_gddf !=nil {_eedc .F =_gddf ;};if _fabfe :=_baefd .Get ("\u0055\u0046");_fabfe !=nil {_eedc .UF =_fabfe ;};if _gfaa :=_baefd .Get ("\u0044\u004f\u0053"); -_gfaa !=nil {_eedc .DOS =_gfaa ;};if _bfee :=_baefd .Get ("\u004d\u0061\u0063");_bfee !=nil {_eedc .Mac =_bfee ;};if _bdbg :=_baefd .Get ("\u0055\u006e\u0069\u0078");_bdbg !=nil {_eedc .Unix =_bdbg ;};if _gfcd :=_baefd .Get ("\u0049\u0044");_gfcd !=nil {_eedc .ID =_gfcd ; -};if _caca :=_baefd .Get ("\u0056");_caca !=nil {_eedc .V =_caca ;};if _cafe :=_baefd .Get ("\u0045\u0046");_cafe !=nil {_eedc .EF =_cafe ;};if _aeab :=_baefd .Get ("\u0052\u0046");_aeab !=nil {_eedc .RF =_aeab ;};if _ggaa :=_baefd .Get ("\u0044\u0065\u0073\u0063"); -_ggaa !=nil {_eedc .Desc =_ggaa ;};if _dgda :=_baefd .Get ("\u0043\u0049");_dgda !=nil {_eedc .CI =_dgda ;};return _eedc ,nil ;}; +// AddWatermarkImage adds a watermark to the page. +func (_agad *PdfPage )AddWatermarkImage (ximg *XObjectImage ,opt WatermarkImageOptions )error {_edaca ,_aaef :=_agad .GetMediaBox ();if _aaef !=nil {return _aaef ;};_ddfba :=_edaca .Urx -_edaca .Llx ;_fbad :=_edaca .Ury -_edaca .Lly ;_bfabcb :=float64 (*ximg .Width ); +_egbae :=(_ddfba -_bfabcb )/2;if opt .FitToWidth {_bfabcb =_ddfba ;_egbae =0;};_cbdd :=_fbad ;_ecacc :=float64 (0);if opt .PreserveAspectRatio {_cbdd =_bfabcb *float64 (*ximg .Height )/float64 (*ximg .Width );_ecacc =(_fbad -_cbdd )/2;};if _agad .Resources ==nil {_agad .Resources =NewPdfPageResources (); +};_bcdga :=0;_cbbgg :=_dg .PdfObjectName (_b .Sprintf ("\u0049\u006d\u0077%\u0064",_bcdga ));for _agad .Resources .HasXObjectByName (_cbbgg ){_bcdga ++;_cbbgg =_dg .PdfObjectName (_b .Sprintf ("\u0049\u006d\u0077%\u0064",_bcdga ));};_aaef =_agad .AddImageResource (_cbbgg ,ximg ); +if _aaef !=nil {return _aaef ;};_bcdga =0;_aefgff :=_dg .PdfObjectName (_b .Sprintf ("\u0047\u0053\u0025\u0064",_bcdga ));for _agad .HasExtGState (_aefgff ){_bcdga ++;_aefgff =_dg .PdfObjectName (_b .Sprintf ("\u0047\u0053\u0025\u0064",_bcdga ));};_dadaaf :=_dg .MakeDict (); +_dadaaf .Set ("\u0042\u004d",_dg .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c"));_dadaaf .Set ("\u0043\u0041",_dg .MakeFloat (opt .Alpha ));_dadaaf .Set ("\u0063\u0061",_dg .MakeFloat (opt .Alpha ));_aaef =_agad .AddExtGState (_aefgff ,_dadaaf );if _aaef !=nil {return _aaef ; +};_bbcgd :=_b .Sprintf ("\u0071\u000a"+"\u002f%\u0073\u0020\u0067\u0073\u000a"+"%\u002e\u0030\u0066\u0020\u0030\u00200\u0020\u0025\u002e\u0030\u0066\u0020\u0025\u002e\u0034f\u0020\u0025\u002e4\u0066 \u0063\u006d\u000a"+"\u002f%\u0073\u0020\u0044\u006f\u000a"+"\u0051",_aefgff ,_bfabcb ,_cbdd ,_egbae ,_ecacc ,_cbbgg ); +_agad .AddContentStreamByString (_bbcgd );return nil ;}; -// GetExtGState gets the ExtGState specified by keyName. Returns a bool -// indicating whether it was found or not. -func (_dadb *PdfPageResources )GetExtGState (keyName _aff .PdfObjectName )(_aff .PdfObject ,bool ){if _dadb .ExtGState ==nil {return nil ,false ;};_fafc ,_ccfd :=_aff .TraceToDirectObject (_dadb .ExtGState ).(*_aff .PdfObjectDictionary );if !_ccfd {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0049n\u0076\u0061\u006c\u0069\u0064 \u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u002d\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0020\u0028\u0067\u006f\u0074\u0020\u0025\u0054\u0029",_dadb .ExtGState ); -return nil ,false ;};if _bgdb :=_fafc .Get (keyName );_bgdb !=nil {return _bgdb ,true ;};return nil ,false ;};func (_fbgg *PdfReader )newPdfAnnotationTextFromDict (_cgdf *_aff .PdfObjectDictionary )(*PdfAnnotationText ,error ){_fgd :=PdfAnnotationText {}; -_ggea ,_bdeb :=_fbgg .newPdfAnnotationMarkupFromDict (_cgdf );if _bdeb !=nil {return nil ,_bdeb ;};_fgd .PdfAnnotationMarkup =_ggea ;_fgd .Open =_cgdf .Get ("\u004f\u0070\u0065\u006e");_fgd .Name =_cgdf .Get ("\u004e\u0061\u006d\u0065");_fgd .State =_cgdf .Get ("\u0053\u0074\u0061t\u0065"); -_fgd .StateModel =_cgdf .Get ("\u0053\u0074\u0061\u0074\u0065\u004d\u006f\u0064\u0065\u006c");return &_fgd ,nil ;}; +// NewPdfAnnotationSquare returns a new square annotation. +func NewPdfAnnotationSquare ()*PdfAnnotationSquare {_fgb :=NewPdfAnnotation ();_ddb :=&PdfAnnotationSquare {};_ddb .PdfAnnotation =_fgb ;_ddb .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_fgb .SetContext (_ddb );return _ddb ;}; -// ToPdfObject implements interface PdfModel. -func (_eac *PdfAnnotationFreeText )ToPdfObject ()_aff .PdfObject {_eac .PdfAnnotation .ToPdfObject ();_fdagd :=_eac ._ccfb ;_dead :=_fdagd .PdfObject .(*_aff .PdfObjectDictionary );_eac .PdfAnnotationMarkup .appendToPdfDictionary (_dead );_dead .SetIfNotNil ("\u0053u\u0062\u0074\u0079\u0070\u0065",_aff .MakeName ("\u0046\u0072\u0065\u0065\u0054\u0065\u0078\u0074")); -_dead .SetIfNotNil ("\u0044\u0041",_eac .DA );_dead .SetIfNotNil ("\u0051",_eac .Q );_dead .SetIfNotNil ("\u0052\u0043",_eac .RC );_dead .SetIfNotNil ("\u0044\u0053",_eac .DS );_dead .SetIfNotNil ("\u0043\u004c",_eac .CL );_dead .SetIfNotNil ("\u0049\u0054",_eac .IT ); -_dead .SetIfNotNil ("\u0042\u0045",_eac .BE );_dead .SetIfNotNil ("\u0052\u0044",_eac .RD );_dead .SetIfNotNil ("\u0042\u0053",_eac .BS );_dead .SetIfNotNil ("\u004c\u0045",_eac .LE );return _fdagd ;};func _egba (_fece _aff .PdfObject )(*PdfColorspaceSpecialIndexed ,error ){_fggf :=NewPdfColorspaceSpecialIndexed (); -if _aaaa ,_efgg :=_fece .(*_aff .PdfIndirectObject );_efgg {_fggf ._efeca =_aaaa ;};_fece =_aff .TraceToDirectObject (_fece );_aefa ,_gcac :=_fece .(*_aff .PdfObjectArray );if !_gcac {return nil ,_e .Errorf ("\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};if _aefa .Len ()!=4{return nil ,_e .Errorf ("\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0043\u0053\u003a\u0020\u0069\u006e\u0076a\u006ci\u0064\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068");};_fece =_aefa .Get (0); -_bafce ,_gcac :=_fece .(*_aff .PdfObjectName );if !_gcac {return nil ,_e .Errorf ("\u0069n\u0064\u0065\u0078\u0065\u0064\u0020\u0043\u0053\u003a\u0020\u0069n\u0076\u0061\u006c\u0069\u0064\u0020\u006e\u0061\u006d\u0065");};if *_bafce !="\u0049n\u0064\u0065\u0078\u0065\u0064"{return nil ,_e .Errorf ("\u0069\u006e\u0064\u0065xe\u0064\u0020\u0043\u0053\u003a\u0020\u0077\u0072\u006f\u006e\u0067\u0020\u006e\u0061m\u0065"); -};_fece =_aefa .Get (1);_accfe ,_bfeb :=DetermineColorspaceNameFromPdfObject (_fece );if _bfeb !=nil {return nil ,_bfeb ;};if _accfe =="\u0049n\u0064\u0065\u0078\u0065\u0064"||_accfe =="\u0050a\u0074\u0074\u0065\u0072\u006e"{_adg .Log .Debug ("E\u0072\u0072o\u0072\u003a\u0020\u0049\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072\u0073\u0070\u0061\u0063e\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0049\u006e\u0064e\u0078\u0065\u0064\u002f\u0050\u0061\u0074\u0074\u0065\u0072\u006e\u0020\u0043S\u0020\u0061\u0073\u0020\u0062\u0061\u0073\u0065\u0020\u0028\u0025v\u0029",_accfe ); -return nil ,_ddcbc ;};_bfea ,_bfeb :=NewPdfColorspaceFromPdfObject (_fece );if _bfeb !=nil {return nil ,_bfeb ;};_fggf .Base =_bfea ;_fece =_aefa .Get (2);_cgef ,_bfeb :=_aff .GetNumberAsInt64 (_fece );if _bfeb !=nil {return nil ,_bfeb ;};if _cgef > 255{return nil ,_e .Errorf ("\u0069n\u0064\u0065\u0078\u0065d\u0020\u0043\u0053\u003a\u0020I\u006ev\u0061l\u0069\u0064\u0020\u0068\u0069\u0076\u0061l"); -};_fggf .HiVal =int (_cgef );_fece =_aefa .Get (3);_fggf .Lookup =_fece ;_fece =_aff .TraceToDirectObject (_fece );var _cgab []byte ;if _cfee ,_abdd :=_fece .(*_aff .PdfObjectString );_abdd {_cgab =_cfee .Bytes ();_adg .Log .Trace ("\u0049\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0073\u0074r\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072\u0020\u0064\u0061\u0074\u0061\u003a\u0020\u0025\u0020\u0064",_cgab ); -}else if _aafe ,_dcaa :=_fece .(*_aff .PdfObjectStream );_dcaa {_adg .Log .Trace ("\u0049n\u0064e\u0078\u0065\u0064\u0020\u0073t\u0072\u0065a\u006d\u003a\u0020\u0025\u0073",_fece .String ());_adg .Log .Trace ("\u0045\u006e\u0063\u006fde\u0064\u0020\u0028\u0025\u0064\u0029\u0020\u003a\u0020\u0025\u0023\u0020\u0078",len (_aafe .Stream ),_aafe .Stream ); -_gfce ,_eeac :=_aff .DecodeStream (_aafe );if _eeac !=nil {return nil ,_eeac ;};_adg .Log .Trace ("\u0044e\u0063o\u0064\u0065\u0064\u0020\u0028%\u0064\u0029 \u003a\u0020\u0025\u0020\u0058",len (_gfce ),_gfce );_cgab =_gfce ;}else {_adg .Log .Debug ("\u0054\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_fece ); -return nil ,_e .Errorf ("\u0069\u006e\u0064\u0065\u0078\u0065\u0064\u0020\u0043\u0053\u003a\u0020\u0049\u006e\u0076a\u006ci\u0064\u0020\u0074\u0061\u0062\u006c\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u0074");};if len (_cgab )< _fggf .Base .GetNumComponents ()*(_fggf .HiVal +1){_adg .Log .Debug ("\u0050\u0044\u0046\u0020\u0049\u006e\u0063o\u006d\u0070\u0061t\u0069\u0062\u0069\u006ci\u0074\u0079\u003a\u0020\u0049\u006e\u0064\u0065\u0078\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0074\u006f\u006f\u0020\u0073\u0068\u006f\u0072\u0074"); -_adg .Log .Debug ("\u0046\u0061i\u006c\u002c\u0020\u006c\u0065\u006e\u0028\u0064\u0061\u0074\u0061\u0029\u003a\u0020\u0025\u0064\u002c\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u003a\u0020\u0025\u0064\u002c\u0020\u0068\u0069\u0056\u0061\u006c\u003a\u0020\u0025\u0064",len (_cgab ),_fggf .Base .GetNumComponents (),_fggf .HiVal ); -}else {_cgab =_cgab [:_fggf .Base .GetNumComponents ()*(_fggf .HiVal +1)];};_fggf ._ecfb =_cgab ;return _fggf ,nil ;}; +// AddCustomInfo adds a custom info into document info dictionary. +func (_ggfa *PdfInfo )AddCustomInfo (name string ,value string )error {if _ggfa ._dccdg ==nil {_ggfa ._dccdg =_dg .MakeDict ();};if _ ,_bdbc :=_ddcf [name ];_bdbc {return _b .Errorf ("\u0063\u0061\u006e\u006e\u006ft\u0020\u0075\u0073\u0065\u0020\u0073\u0074\u0061\u006e\u0064\u0061\u0072\u0064 \u0069\u006e\u0066\u006f\u0020\u006b\u0065\u0079\u0020\u0025\u0073\u0020\u0061\u0073\u0020\u0063\u0075\u0073\u0074\u006f\u006d\u0020\u0066\u0069\u0065\u006c\u0064\u0020\u006b\u0065y",name ); +};_ggfa ._dccdg .SetIfNotNil (*_dg .MakeName (name ),_dg .MakeString (value ));return nil ;}; -// IsEncrypted returns true if the PDF file is encrypted. -func (_cedbd *PdfReader )IsEncrypted ()(bool ,error ){return _cedbd ._gaece .IsEncrypted ()};func _cgaeg (_ddeb _aff .PdfObject )(*PdfFontDescriptor ,error ){_cgcg :=&PdfFontDescriptor {};_ddeb =_aff .ResolveReference (_ddeb );if _cecde ,_gbefe :=_ddeb .(*_aff .PdfIndirectObject ); -_gbefe {_cgcg ._cade =_cecde ;_ddeb =_cecde .PdfObject ;};_becfg ,_egbc :=_aff .GetDict (_ddeb );if !_egbc {_adg .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0046o\u006e\u0074\u0044\u0065\u0073c\u0072\u0069\u0070\u0074\u006f\u0072\u0020\u006e\u006f\u0074\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0062\u0079\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0028\u0025\u0054\u0029",_ddeb ); -return nil ,_aff .ErrTypeError ;};if _bcgfg :=_becfg .Get ("\u0046\u006f\u006e\u0074\u004e\u0061\u006d\u0065");_bcgfg !=nil {_cgcg .FontName =_bcgfg ;}else {_adg .Log .Debug ("\u0049n\u0063\u006fm\u0070\u0061\u0074\u0069b\u0069\u006c\u0069t\u0079\u003a\u0020\u0046\u006f\u006e\u0074\u004e\u0061me\u0020\u0028\u0052e\u0071\u0075i\u0072\u0065\u0064\u0029\u0020\u006di\u0073\u0073i\u006e\u0067"); -};_cbfb ,_ :=_aff .GetName (_cgcg .FontName );if _agdb :=_becfg .Get ("\u0054\u0079\u0070\u0065");_agdb !=nil {_dace ,_adege :=_agdb .(*_aff .PdfObjectName );if !_adege ||string (*_dace )!="\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072"{_adg .Log .Debug ("I\u006e\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006c\u0069\u0074\u0079\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072i\u0070t\u006f\u0072\u0020\u0054y\u0070\u0065 \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0028\u0025\u0054\u0029\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0071\u0020\u0025\u0054",_agdb ,_cbfb ,_cgcg .FontName ); -};}else {_adg .Log .Trace ("\u0049\u006ec\u006f\u006d\u0070\u0061\u0074i\u0062\u0069\u006c\u0069\u0074y\u003a\u0020\u0054\u0079\u0070\u0065\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0029\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067\u002e\u0020\u0066\u006f\u006e\u0074\u003d\u0025\u0071\u0020\u0025\u0054",_cbfb ,_cgcg .FontName ); -};_cgcg .FontFamily =_becfg .Get ("\u0046\u006f\u006e\u0074\u0046\u0061\u006d\u0069\u006c\u0079");_cgcg .FontStretch =_becfg .Get ("F\u006f\u006e\u0074\u0053\u0074\u0072\u0065\u0074\u0063\u0068");_cgcg .FontWeight =_becfg .Get ("\u0046\u006f\u006e\u0074\u0057\u0065\u0069\u0067\u0068\u0074"); -_cgcg .Flags =_becfg .Get ("\u0046\u006c\u0061g\u0073");_cgcg .FontBBox =_becfg .Get ("\u0046\u006f\u006e\u0074\u0042\u0042\u006f\u0078");_cgcg .ItalicAngle =_becfg .Get ("I\u0074\u0061\u006c\u0069\u0063\u0041\u006e\u0067\u006c\u0065");_cgcg .Ascent =_becfg .Get ("\u0041\u0073\u0063\u0065\u006e\u0074"); -_cgcg .Descent =_becfg .Get ("\u0044e\u0073\u0063\u0065\u006e\u0074");_cgcg .Leading =_becfg .Get ("\u004ce\u0061\u0064\u0069\u006e\u0067");_cgcg .CapHeight =_becfg .Get ("\u0043a\u0070\u0048\u0065\u0069\u0067\u0068t");_cgcg .XHeight =_becfg .Get ("\u0058H\u0065\u0069\u0067\u0068\u0074"); -_cgcg .StemV =_becfg .Get ("\u0053\u0074\u0065m\u0056");_cgcg .StemH =_becfg .Get ("\u0053\u0074\u0065m\u0048");_cgcg .AvgWidth =_becfg .Get ("\u0041\u0076\u0067\u0057\u0069\u0064\u0074\u0068");_cgcg .MaxWidth =_becfg .Get ("\u004d\u0061\u0078\u0057\u0069\u0064\u0074\u0068"); -_cgcg .MissingWidth =_becfg .Get ("\u004d\u0069\u0073s\u0069\u006e\u0067\u0057\u0069\u0064\u0074\u0068");_cgcg .FontFile =_becfg .Get ("\u0046\u006f\u006e\u0074\u0046\u0069\u006c\u0065");_cgcg .FontFile2 =_becfg .Get ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00652"); -_cgcg .FontFile3 =_becfg .Get ("\u0046o\u006e\u0074\u0046\u0069\u006c\u00653");_cgcg .CharSet =_becfg .Get ("\u0043h\u0061\u0072\u0053\u0065\u0074");_cgcg .Style =_becfg .Get ("\u0053\u0074\u0079l\u0065");_cgcg .Lang =_becfg .Get ("\u004c\u0061\u006e\u0067"); -_cgcg .FD =_becfg .Get ("\u0046\u0044");_cgcg .CIDSet =_becfg .Get ("\u0043\u0049\u0044\u0053\u0065\u0074");if _cgcg .Flags !=nil {if _bbfc ,_cacgb :=_aff .GetIntVal (_cgcg .Flags );_cacgb {_cgcg ._cdbb =_bbfc ;};};if _cgcg .MissingWidth !=nil {if _cbdg ,_cedg :=_aff .GetNumberAsFloat (_cgcg .MissingWidth ); -_cedg ==nil {_cgcg ._eace =_cbdg ;};};if _cgcg .FontFile !=nil {_ccga ,_edac :=_bdeaf (_cgcg .FontFile );if _edac !=nil {return _cgcg ,_edac ;};_adg .Log .Trace ("f\u006f\u006e\u0074\u0046\u0069\u006c\u0065\u003d\u0025\u0073",_ccga );_cgcg .fontFile =_ccga ; -};if _cgcg .FontFile2 !=nil {_cdffd ,_daed :=_bcd .NewFontFile2FromPdfObject (_cgcg .FontFile2 );if _daed !=nil {return _cgcg ,_daed ;};_adg .Log .Trace ("\u0066\u006f\u006et\u0046\u0069\u006c\u0065\u0032\u003d\u0025\u0073",_cdffd .String ());_cgcg ._ddffd =&_cdffd ; -};return _cgcg ,nil ;};func (_ffgd *PdfColorspaceSpecialSeparation )String ()string {return "\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006f\u006e";}; +// NewPdfOutlineItem returns an initialized PdfOutlineItem. +func NewPdfOutlineItem ()*PdfOutlineItem {_geebb :=&PdfOutlineItem {_fbgf :_dg .MakeIndirectObject (_dg .MakeDict ())};_geebb ._baddf =_geebb ;return _geebb ;}; -// GetNumComponents returns the number of color components (1 for CalGray). -func (_gcfc *PdfColorCalGray )GetNumComponents ()int {return 1};func (_efaae *PdfPage )getParentResources ()(*PdfPageResources ,error ){_fbcbc :=_efaae .Parent ;for _fbcbc !=nil {_fegea ,_bggff :=_aff .GetDict (_fbcbc );if !_bggff {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0070\u0061\u0072\u0065\u006e\u0074\u0020n\u006f\u0064\u0065"); -return nil ,_g .New ("i\u006e\u0076\u0061\u006cid\u0020p\u0061\u0072\u0065\u006e\u0074 \u006f\u0062\u006a\u0065\u0063\u0074");};if _gdfaad :=_fegea .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s");_gdfaad !=nil {_beab ,_egafb :=_aff .GetDict (_gdfaad ); -if !_egafb {return nil ,_g .New ("i\u006e\u0076\u0061\u006cid\u0020r\u0065\u0073\u006f\u0075\u0072c\u0065\u0020\u0064\u0069\u0063\u0074");};_bdbad ,_cgfcf :=NewPdfPageResourcesFromDict (_beab );if _cgfcf !=nil {return nil ,_cgfcf ;};return _bdbad ,nil ; -};_fbcbc =_fegea .Get ("\u0050\u0061\u0072\u0065\u006e\u0074");};return nil ,nil ;};var _cgcf =_bd .MustCompile ("\u005b\\\u006e\u005c\u0072\u005d\u002b"); +// GetAsShadingPattern returns a shading pattern. Check with IsShading() prior to using this. +func (_bfaff *PdfPattern )GetAsShadingPattern ()*PdfShadingPattern {return _bfaff ._cgdcc .(*PdfShadingPattern );}; -// NewPdfActionHide returns a new "hide" action. -func NewPdfActionHide ()*PdfActionHide {_gfe :=NewPdfAction ();_fadd :=&PdfActionHide {};_fadd .PdfAction =_gfe ;_gfe .SetContext (_fadd );return _fadd ;};func _dfbfc (_bbfea *XObjectImage )error {if _bbfea .SMask ==nil {return nil ;};_fdecd ,_fgaef :=_bbfea .SMask .(*_aff .PdfObjectStream ); -if !_fgaef {_adg .Log .Debug ("\u0053\u004da\u0073\u006b\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u002a\u0050\u0064\u0066\u004f\u0062\u006a\u0065\u0063\u0074\u0053\u0074re\u0061\u006d");return _aff .ErrTypeError ;};_fedcg :=_fdecd .PdfObjectDictionary ; -_egede :=_fedcg .Get ("\u004d\u0061\u0074t\u0065");if _egede ==nil {return nil ;};_efeg ,_ecabgb :=_cdffb (_egede .(*_aff .PdfObjectArray ));if _ecabgb !=nil {return _ecabgb ;};_aacff :=_aff .MakeArrayFromFloats ([]float64 {_efeg });_fedcg .SetIfNotNil ("\u004d\u0061\u0074t\u0065",_aacff ); -return nil ;};func (_egadf *XObjectImage )getParamsDict ()*_aff .PdfObjectDictionary {_acaadg :=_aff .MakeDict ();_acaadg .Set ("\u0057\u0069\u0064t\u0068",_aff .MakeInteger (*_egadf .Width ));_acaadg .Set ("\u0048\u0065\u0069\u0067\u0068\u0074",_aff .MakeInteger (*_egadf .Height )); -_acaadg .Set ("\u0043o\u006co\u0072\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073",_aff .MakeInteger (int64 (_egadf .ColorSpace .GetNumComponents ())));_acaadg .Set ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074",_aff .MakeInteger (*_egadf .BitsPerComponent )); -return _acaadg ;}; +// PdfAnnotation represents an annotation in PDF (section 12.5 p. 389). +type PdfAnnotation struct{_egcg PdfModel ;Rect _dg .PdfObject ;Contents _dg .PdfObject ;P _dg .PdfObject ;NM _dg .PdfObject ;M _dg .PdfObject ;F _dg .PdfObject ;AP _dg .PdfObject ;AS _dg .PdfObject ;Border _dg .PdfObject ;C _dg .PdfObject ;StructParent _dg .PdfObject ; +OC _dg .PdfObject ;_cdf *_dg .PdfIndirectObject ;}; -// NewPdfShadingType3 creates an empty shading type 3 dictionary. -func NewPdfShadingType3 ()*PdfShadingType3 {_ffbfg :=&PdfShadingType3 {};_ffbfg .PdfShading =&PdfShading {};_ffbfg .PdfShading ._bdacg =_aff .MakeIndirectObject (_aff .MakeDict ());_ffbfg .PdfShading ._fcbfb =_ffbfg ;return _ffbfg ;}; +// AddContentStreamByString adds content stream by string. Puts the content +// string into a stream object and points the content stream towards it. +func (_abcf *PdfPage )AddContentStreamByString (contentStr string )error {_egafg ,_cfgge :=_dg .MakeStream ([]byte (contentStr ),_dg .NewFlateEncoder ());if _cfgge !=nil {return _cfgge ;};if _abcf .Contents ==nil {_abcf .Contents =_egafg ;}else {_cabf :=_dg .TraceToDirectObject (_abcf .Contents ); +_bgceg ,_fffdgf :=_cabf .(*_dg .PdfObjectArray );if !_fffdgf {_bgceg =_dg .MakeArray (_cabf );};_bgceg .Append (_egafg );_abcf .Contents =_bgceg ;};return nil ;}; -// ToPdfObject returns the PDF representation of the function. -func (_bbgcd *PdfFunctionType3 )ToPdfObject ()_aff .PdfObject {_gfae :=_aff .MakeDict ();_gfae .Set ("\u0046\u0075\u006ec\u0074\u0069\u006f\u006e\u0054\u0079\u0070\u0065",_aff .MakeInteger (3));_egbe :=&_aff .PdfObjectArray {};for _ ,_bddgb :=range _bbgcd .Domain {_egbe .Append (_aff .MakeFloat (_bddgb )); -};_gfae .Set ("\u0044\u006f\u006d\u0061\u0069\u006e",_egbe );if _bbgcd .Range !=nil {_ceaa :=&_aff .PdfObjectArray {};for _ ,_dbfa :=range _bbgcd .Range {_ceaa .Append (_aff .MakeFloat (_dbfa ));};_gfae .Set ("\u0052\u0061\u006eg\u0065",_ceaa );};if _bbgcd .Functions !=nil {_cecb :=&_aff .PdfObjectArray {}; -for _ ,_ggfbf :=range _bbgcd .Functions {_cecb .Append (_ggfbf .ToPdfObject ());};_gfae .Set ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006es",_cecb );};if _bbgcd .Bounds !=nil {_afaeb :=&_aff .PdfObjectArray {};for _ ,_abffg :=range _bbgcd .Bounds {_afaeb .Append (_aff .MakeFloat (_abffg )); -};_gfae .Set ("\u0042\u006f\u0075\u006e\u0064\u0073",_afaeb );};if _bbgcd .Encode !=nil {_adca :=&_aff .PdfObjectArray {};for _ ,_cbfbg :=range _bbgcd .Encode {_adca .Append (_aff .MakeFloat (_cbfbg ));};_gfae .Set ("\u0045\u006e\u0063\u006f\u0064\u0065",_adca ); -};if _bbgcd ._cabf !=nil {_bbgcd ._cabf .PdfObject =_gfae ;return _bbgcd ._cabf ;};return _gfae ;}; +// NewXObjectImageFromImage creates a new XObject Image from an image object +// with default options. If encoder is nil, uses raw encoding (none). +func NewXObjectImageFromImage (img *Image ,cs PdfColorspace ,encoder _dg .StreamEncoder )(*XObjectImage ,error ){_gaegd :=NewXObjectImage ();return UpdateXObjectImageFromImage (_gaegd ,img ,cs ,encoder );}; -// ToPdfObject implements interface PdfModel. -func (_aagc *PdfActionThread )ToPdfObject ()_aff .PdfObject {_aagc .PdfAction .ToPdfObject ();_ggf :=_aagc ._df ;_abc :=_ggf .PdfObject .(*_aff .PdfObjectDictionary );_abc .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeThread )));if _aagc .F !=nil {_abc .Set ("\u0046",_aagc .F .ToPdfObject ()); -};_abc .SetIfNotNil ("\u0044",_aagc .D );_abc .SetIfNotNil ("\u0042",_aagc .B );return _ggf ;}; +// XObjectForm (Table 95 in 8.10.2). +type XObjectForm struct{Filter _dg .StreamEncoder ;FormType _dg .PdfObject ;BBox _dg .PdfObject ;Matrix _dg .PdfObject ;Resources *PdfPageResources ;Group _dg .PdfObject ;Ref _dg .PdfObject ;MetaData _dg .PdfObject ;PieceInfo _dg .PdfObject ;LastModified _dg .PdfObject ; +StructParent _dg .PdfObject ;StructParents _dg .PdfObject ;OPI _dg .PdfObject ;OC _dg .PdfObject ;Name _dg .PdfObject ; -// ToPdfObject implements interface PdfModel. -func (_fea *PdfActionLaunch )ToPdfObject ()_aff .PdfObject {_fea .PdfAction .ToPdfObject ();_ffeb :=_fea ._df ;_ec :=_ffeb .PdfObject .(*_aff .PdfObjectDictionary );_ec .SetIfNotNil ("\u0053",_aff .MakeName (string (ActionTypeLaunch )));if _fea .F !=nil {_ec .Set ("\u0046",_fea .F .ToPdfObject ()); -};_ec .SetIfNotNil ("\u0057\u0069\u006e",_fea .Win );_ec .SetIfNotNil ("\u004d\u0061\u0063",_fea .Mac );_ec .SetIfNotNil ("\u0055\u006e\u0069\u0078",_fea .Unix );_ec .SetIfNotNil ("\u004ee\u0077\u0057\u0069\u006e\u0064\u006fw",_fea .NewWindow );return _ffeb ; -};func (_acgb *LTV )getOCSPs (_fagad []*_fb .Certificate ,_bddbf map[string ]*_fb .Certificate )([][]byte ,error ){_accac :=make ([][]byte ,0,len (_fagad ));for _ ,_bbebb :=range _fagad {for _ ,_ggggd :=range _bbebb .OCSPServer {if _acgb .CertClient .IsCA (_bbebb ){continue ; -};_egaac ,_eaba :=_bddbf [_bbebb .Issuer .CommonName ];if !_eaba {_adg .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074\u003a\u0020\u0069\u0073\u0073\u0075e\u0072\u0020\u0063\u0065\u0072t\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -continue ;};_ ,_aebbc ,_agfce :=_acgb .OCSPClient .MakeRequest (_ggggd ,_bbebb ,_egaac );if _agfce !=nil {_adg .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075e\u0073t\u0020\u0065\u0072\u0072\u006f\u0072\u003a \u0025\u0076",_agfce ); -continue ;};_accac =append (_accac ,_aebbc );};};return _accac ,nil ;};func (_dggfd *PdfReader )newPdfFieldSignatureFromDict (_bddd *_aff .PdfObjectDictionary )(*PdfFieldSignature ,error ){_acgfd :=&PdfFieldSignature {};_cfge ,_fgbg :=_aff .GetIndirect (_bddd .Get ("\u0056")); -if _fgbg {var _efed error ;_acgfd .V ,_efed =_dggfd .newPdfSignatureFromIndirect (_cfge );if _efed !=nil {return nil ,_efed ;};};_acgfd .Lock ,_ =_aff .GetIndirect (_bddd .Get ("\u004c\u006f\u0063\u006b"));_acgfd .SV ,_ =_aff .GetIndirect (_bddd .Get ("\u0053\u0056")); -return _acgfd ,nil ;};func (_fcddd *pdfFontType0 )baseFields ()*fontCommon {return &_fcddd .fontCommon }; +// Stream data. +Stream []byte ;_ebaeb *_dg .PdfObjectStream ;}; -// PdfAnnotationLink represents Link annotations. -// (Section 12.5.6.5 p. 403). -type PdfAnnotationLink struct{*PdfAnnotation ;A _aff .PdfObject ;Dest _aff .PdfObject ;H _aff .PdfObject ;PA _aff .PdfObject ;QuadPoints _aff .PdfObject ;BS _aff .PdfObject ;_dea *PdfAction ;_cdf *PdfReader ;}; +// CompliancePdfReader is a wrapper over PdfReader that is used for verifying if the input Pdf document matches the +// compliance rules of standards like PDF/A. +// NOTE: This implementation is in experimental development state. +// Keep in mind that it might change in the subsequent minor versions. +type CompliancePdfReader struct{*PdfReader ;_acgf _dg .ParserMetadata ;}; -// GetNumComponents returns the number of color components (1 for Indexed). -func (_bedf *PdfColorspaceSpecialIndexed )GetNumComponents ()int {return 1}; +// GetStructRoot gets the StructTreeRoot object +func (_geggg *PdfPage )GetStructTreeRoot ()(*_dg .PdfObject ,bool ){_ebfg ,_bgbcba :=_geggg ._cbbcc .GetCatalogStructTreeRoot ();return &_ebfg ,_bgbcba ;};func (_gecaf *Image )getSuitableEncoder ()(_dg .StreamEncoder ,error ){var (_caed ,_dgdd =int (_gecaf .Width ),int (_gecaf .Height ); +_gabce =make (map[string ]bool );_dfcbc =true ;_bdeaa =false ;_gbcbg =func ()*_dg .DCTEncoder {return _dg .NewDCTEncoder ()};_fgcbd =func ()*_dg .DCTEncoder {_ddebf :=_dg .NewDCTEncoder ();_ddebf .BitsPerComponent =16;return _ddebf };);for _fbfad :=0;_fbfad < _dgdd ; +_fbfad ++{for _eaea :=0;_eaea < _caed ;_eaea ++{_bfgac ,_agfdc :=_gecaf .ColorAt (_eaea ,_fbfad );if _agfdc !=nil {return nil ,_agfdc ;};_dbbdc ,_egabc ,_eaead ,_fcbdb :=_bfgac .RGBA ();if _dfcbc &&(_dbbdc !=_egabc ||_dbbdc !=_eaead ||_egabc !=_eaead ){_dfcbc =false ; +};if !_bdeaa {switch _bfgac .(type ){case _edg .NRGBA :_bdeaa =_fcbdb > 0;};};_gabce [_b .Sprintf ("\u0025\u0064\u002c\u0025\u0064\u002c\u0025\u0064",_dbbdc ,_egabc ,_eaead )]=true ;if len (_gabce )> 2&&_bdeaa {return _fgcbd (),nil ;};};};if _bdeaa ||len (_gecaf ._dgeb )> 0{return _dg .NewFlateEncoder (),nil ; +};if len (_gabce )<=2{_cedeg :=_gecaf .ConvertToBinary ();if _cedeg !=nil {return nil ,_cedeg ;};return _dg .NewJBIG2Encoder (),nil ;};if _dfcbc {return _gbcbg (),nil ;};if _gecaf .ColorComponents ==1{if _gecaf .BitsPerComponent ==1{return _dg .NewJBIG2Encoder (),nil ; +}else if _gecaf .BitsPerComponent ==8{_aacca :=_dg .NewDCTEncoder ();_aacca .ColorComponents =1;return _aacca ,nil ;};}else if _gecaf .ColorComponents ==3{if _gecaf .BitsPerComponent ==8{return _gbcbg (),nil ;}else if _gecaf .BitsPerComponent ==16{return _fgcbd (),nil ; +};}else if _gecaf .ColorComponents ==4{_degdec :=_fgcbd ();_degdec .ColorComponents =4;return _degdec ,nil ;};return _fgcbd (),nil ;};func (_bgbcg *Image )samplesTrimPadding (_dgfdd []uint32 )[]uint32 {_aade :=_bgbcg .ColorComponents *int (_bgbcg .Width )*int (_bgbcg .Height ); +if len (_dgfdd )==_aade {return _dgfdd ;};_adcde :=make ([]uint32 ,_aade );_cfdc :=int (_bgbcg .Width )*_bgbcg .ColorComponents ;var _fegeg ,_cgdef ,_gcfeg ,_dgbf int ;_affde :=_fc .BytesPerLine (int (_bgbcg .Width ),int (_bgbcg .BitsPerComponent ),_bgbcg .ColorComponents ); +for _fegeg =0;_fegeg < int (_bgbcg .Height );_fegeg ++{_cgdef =_fegeg *int (_bgbcg .Width );_gcfeg =_fegeg *_affde ;for _dgbf =0;_dgbf < _cfdc ;_dgbf ++{_adcde [_cgdef +_dgbf ]=_dgfdd [_gcfeg +_dgbf ];};};return _adcde ;}; -// ColorFromPdfObjects returns a new PdfColor based on the input slice of color -// components. The slice should contain three PdfObjectFloat elements representing -// the L, A and B components of the color. -func (_acfc *PdfColorspaceLab )ColorFromPdfObjects (objects []_aff .PdfObject )(PdfColor ,error ){if len (objects )!=3{return nil ,_g .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_adffe ,_afecg :=_aff .GetNumbersAsFloat (objects ); -if _afecg !=nil {return nil ,_afecg ;};return _acfc .ColorFromFloats (_adffe );}; +// Initialize initializes the PdfSignature. +func (_deccd *PdfSignature )Initialize ()error {if _deccd .Handler ==nil {return _bf .New ("\u0073\u0069\u0067n\u0061\u0074\u0075\u0072e\u0020\u0068\u0061\u006e\u0064\u006c\u0065r\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c"); +};return _deccd .Handler .InitSignature (_deccd );}; -// ToPdfObject returns the PDF representation of the shading pattern. -func (_cfbbd *PdfShadingPatternType2 )ToPdfObject ()_aff .PdfObject {_cfbbd .PdfPattern .ToPdfObject ();_abacb :=_cfbbd .getDict ();if _cfbbd .Shading !=nil {_abacb .Set ("\u0053h\u0061\u0064\u0069\u006e\u0067",_cfbbd .Shading .ToPdfObject ());};if _cfbbd .Matrix !=nil {_abacb .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_cfbbd .Matrix ); -};if _cfbbd .ExtGState !=nil {_abacb .Set ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e",_cfbbd .ExtGState );};return _cfbbd ._cfegc ;}; +// PdfFunction interface represents the common methods of a function in PDF. +type PdfFunction interface{Evaluate ([]float64 )([]float64 ,error );ToPdfObject ()_dg .PdfObject ;}; -// PdfField contains the common attributes of a form field. The context object contains the specific field data -// which can represent a button, text, choice or signature. -// The PdfField is typically not used directly, but is encapsulated by the more specific field types such as -// PdfFieldButton etc (i.e. the context attribute). -type PdfField struct{_gaecf PdfModel ;_dfbfd *_aff .PdfIndirectObject ;Parent *PdfField ;Annotations []*PdfAnnotationWidget ;Kids []*PdfField ;FT *_aff .PdfObjectName ;T *_aff .PdfObjectString ;TU *_aff .PdfObjectString ;TM *_aff .PdfObjectString ;Ff *_aff .PdfObjectInteger ; -V _aff .PdfObject ;DV _aff .PdfObject ;AA _aff .PdfObject ;VariableText *VariableText ;};func (_feaacc *PdfReader )newPdfSignatureFromIndirect (_egece *_aff .PdfIndirectObject )(*PdfSignature ,error ){_eadgc ,_fafdd :=_egece .PdfObject .(*_aff .PdfObjectDictionary ); -if !_fafdd {_adg .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072e\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0065\u0072\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020a \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079"); -return nil ,ErrTypeCheck ;};if _aabadc ,_fggbc :=_feaacc ._cfadc .GetModelFromPrimitive (_egece ).(*PdfSignature );_fggbc {return _aabadc ,nil ;};_aedfb :=&PdfSignature {};_aedfb ._gagbc =_egece ;_aedfb .Type ,_ =_aff .GetName (_eadgc .Get ("\u0054\u0079\u0070\u0065")); -_aedfb .Filter ,_fafdd =_aff .GetName (_eadgc .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"));if !_fafdd {_adg .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0053i\u0067\u006e\u0061\u0074\u0075r\u0065\u0020\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006f\u0072\u0020\u006d\u0069\u0073\u0073\u0069\u006e\u0067"); -return nil ,ErrInvalidAttribute ;};_aedfb .SubFilter ,_ =_aff .GetName (_eadgc .Get ("\u0053u\u0062\u0046\u0069\u006c\u0074\u0065r"));_aedfb .Contents ,_fafdd =_aff .GetString (_eadgc .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if !_fafdd {_adg .Log .Error ("\u0045\u0052\u0052\u004f\u0052\u003a \u0053\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0063\u006f\u006et\u0065\u006e\u0074\u0073\u0020\u006d\u0069s\u0073\u0069\u006e\u0067"); -return nil ,ErrInvalidAttribute ;};if _afgcc ,_ceece :=_aff .GetArray (_eadgc .Get ("\u0052e\u0066\u0065\u0072\u0065\u006e\u0063e"));_ceece {_aedfb .Reference =_aff .MakeArray ();for _ ,_bgagc :=range _afgcc .Elements (){_ffeadf ,_dafef :=_aff .GetDict (_bgagc ); -if !_dafef {_adg .Log .Error ("\u0045\u0052R\u004f\u0052\u003a\u0020R\u0065\u0066e\u0072\u0065\u006e\u0063\u0065\u0020\u0063\u006fn\u0074\u0065\u006e\u0074\u0073\u0020\u0069\u006e\u0076\u0061\u006c\u0069d\u0061\u0074\u0065\u0064");return nil ,ErrInvalidAttribute ; -};_cefd ,_abcec :=_feaacc .newPdfSignatureReferenceFromDict (_ffeadf );if _abcec !=nil {return nil ,_abcec ;};_aedfb .Reference .Append (_cefd .ToPdfObject ());};};_aedfb .Cert =_eadgc .Get ("\u0043\u0065\u0072\u0074");_aedfb .ByteRange ,_ =_aff .GetArray (_eadgc .Get ("\u0042y\u0074\u0065\u0052\u0061\u006e\u0067e")); -_aedfb .Changes ,_ =_aff .GetArray (_eadgc .Get ("\u0043h\u0061\u006e\u0067\u0065\u0073"));_aedfb .Name ,_ =_aff .GetString (_eadgc .Get ("\u004e\u0061\u006d\u0065"));_aedfb .M ,_ =_aff .GetString (_eadgc .Get ("\u004d"));_aedfb .Location ,_ =_aff .GetString (_eadgc .Get ("\u004c\u006f\u0063\u0061\u0074\u0069\u006f\u006e")); -_aedfb .Reason ,_ =_aff .GetString (_eadgc .Get ("\u0052\u0065\u0061\u0073\u006f\u006e"));_aedfb .ContactInfo ,_ =_aff .GetString (_eadgc .Get ("C\u006f\u006e\u0074\u0061\u0063\u0074\u0049\u006e\u0066\u006f"));_aedfb .R ,_ =_aff .GetInt (_eadgc .Get ("\u0052")); -_aedfb .V ,_ =_aff .GetInt (_eadgc .Get ("\u0056"));_aedfb .PropBuild ,_ =_aff .GetDict (_eadgc .Get ("\u0050\u0072\u006f\u0070\u005f\u0042\u0075\u0069\u006c\u0064"));_aedfb .PropAuthTime ,_ =_aff .GetInt (_eadgc .Get ("\u0050\u0072\u006f\u0070\u005f\u0041\u0075\u0074\u0068\u0054\u0069\u006d\u0065")); -_aedfb .PropAuthType ,_ =_aff .GetName (_eadgc .Get ("\u0050\u0072\u006f\u0070\u005f\u0041\u0075\u0074\u0068\u0054\u0079\u0070\u0065"));_feaacc ._cfadc .Register (_egece ,_aedfb );return _aedfb ,nil ;}; +// PageCallback callback function used in page loading +// that could be used to modify the page content. +// +// Deprecated: will be removed in v4. Use PageProcessCallback instead. +type PageCallback func (_gebab int ,_ceffc *PdfPage ); -// PdfVersion returns version of the PDF file. -func (_cefge *PdfReader )PdfVersion ()_aff .Version {return _cefge ._gaece .PdfVersion ()}; +// HasFontByName checks whether a font is defined by the specified keyName. +func (_cdefgc *PdfPageResources )HasFontByName (keyName _dg .PdfObjectName )bool {_ ,_bggce :=_cdefgc .GetFontByName (keyName );return _bggce ;}; -// Decrypt decrypts the PDF file with a specified password. Also tries to -// decrypt with an empty password. Returns true if successful, -// false otherwise. -func (_gfffg *PdfReader )Decrypt (password []byte )(bool ,error ){_geaec ,_bfcea :=_gfffg ._gaece .Decrypt (password );if _bfcea !=nil {return false ,_bfcea ;};if !_geaec {return false ,nil ;};_bfcea =_gfffg .loadStructure ();if _bfcea !=nil {_adg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0046\u0061\u0069\u006c\u0020\u0074\u006f \u006co\u0061d\u0020s\u0074\u0072\u0075\u0063\u0074\u0075\u0072\u0065\u0020\u0028\u0025\u0073\u0029",_bfcea ); -return false ,_bfcea ;};return true ,nil ;};func (_aefbe *PdfWriter )setDocInfo (_ededf _aff .PdfObject ){if _aefbe .hasObject (_aefbe ._bacec ){delete (_aefbe ._bgadg ,_aefbe ._bacec );delete (_aefbe ._cgdcb ,_aefbe ._bacec );for _bdcge ,_gdfeg :=range _aefbe ._babcd {if _gdfeg ==_aefbe ._bacec {copy (_aefbe ._babcd [_bdcge :],_aefbe ._babcd [_bdcge +1:]); -_aefbe ._babcd [len (_aefbe ._babcd )-1]=nil ;_aefbe ._babcd =_aefbe ._babcd [:len (_aefbe ._babcd )-1];break ;};};};_efecf :=_aff .PdfIndirectObject {};_efecf .PdfObject =_ededf ;_aefbe ._bacec =&_efecf ;_aefbe .addObject (&_efecf );}; +// ToPdfObject returns colorspace in a PDF object format [name dictionary] +func (_dagb *PdfColorspaceCalRGB )ToPdfObject ()_dg .PdfObject {_ggcgb :=&_dg .PdfObjectArray {};_ggcgb .Append (_dg .MakeName ("\u0043\u0061\u006c\u0052\u0047\u0042"));_gbceb :=_dg .MakeDict ();if _dagb .WhitePoint !=nil {_bgfe :=_dg .MakeArray (_dg .MakeFloat (_dagb .WhitePoint [0]),_dg .MakeFloat (_dagb .WhitePoint [1]),_dg .MakeFloat (_dagb .WhitePoint [2])); +_gbceb .Set ("\u0057\u0068\u0069\u0074\u0065\u0050\u006f\u0069\u006e\u0074",_bgfe );}else {_ag .Log .Error ("\u0043\u0061l\u0052\u0047\u0042\u003a \u004d\u0069s\u0073\u0069\u006e\u0067\u0020\u0057\u0068\u0069t\u0065\u0050\u006f\u0069\u006e\u0074\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0029"); +};if _dagb .BlackPoint !=nil {_ddcba :=_dg .MakeArray (_dg .MakeFloat (_dagb .BlackPoint [0]),_dg .MakeFloat (_dagb .BlackPoint [1]),_dg .MakeFloat (_dagb .BlackPoint [2]));_gbceb .Set ("\u0042\u006c\u0061\u0063\u006b\u0050\u006f\u0069\u006e\u0074",_ddcba ); +};if _dagb .Gamma !=nil {_dgfdf :=_dg .MakeArray (_dg .MakeFloat (_dagb .Gamma [0]),_dg .MakeFloat (_dagb .Gamma [1]),_dg .MakeFloat (_dagb .Gamma [2]));_gbceb .Set ("\u0047\u0061\u006dm\u0061",_dgfdf );};if _dagb .Matrix !=nil {_caab :=_dg .MakeArray (_dg .MakeFloat (_dagb .Matrix [0]),_dg .MakeFloat (_dagb .Matrix [1]),_dg .MakeFloat (_dagb .Matrix [2]),_dg .MakeFloat (_dagb .Matrix [3]),_dg .MakeFloat (_dagb .Matrix [4]),_dg .MakeFloat (_dagb .Matrix [5]),_dg .MakeFloat (_dagb .Matrix [6]),_dg .MakeFloat (_dagb .Matrix [7]),_dg .MakeFloat (_dagb .Matrix [8])); +_gbceb .Set ("\u004d\u0061\u0074\u0072\u0069\u0078",_caab );};_ggcgb .Append (_gbceb );if _dagb ._ccae !=nil {_dagb ._ccae .PdfObject =_ggcgb ;return _dagb ._ccae ;};return _ggcgb ;}; -// UpdatePage updates the `page` in the new revision if it has changed. -func (_eadg *PdfAppender )UpdatePage (page *PdfPage ){_eadg .updateObjectsDeep (page .ToPdfObject (),nil )};type crossReference struct{Type int ; +// ToPdfObject returns a PDF object representation of the outline item. +func (_gbcbc *OutlineItem )ToPdfObject ()_dg .PdfObject {_gdcbb ,_ :=_gbcbc .ToPdfOutlineItem ();return _gdcbb .ToPdfObject ();}; + +// PdfAnnotationScreen represents Screen annotations. +// (Section 12.5.6.18). +type PdfAnnotationScreen struct{*PdfAnnotation ;T _dg .PdfObject ;MK _dg .PdfObject ;A _dg .PdfObject ;AA _dg .PdfObject ;}; + +// NewPdfAnnotationSquiggly returns a new text squiggly annotation. +func NewPdfAnnotationSquiggly ()*PdfAnnotationSquiggly {_gfa :=NewPdfAnnotation ();_fab :=&PdfAnnotationSquiggly {};_fab .PdfAnnotation =_gfa ;_fab .PdfAnnotationMarkup =&PdfAnnotationMarkup {};_gfa .SetContext (_fab );return _fab ;}; + +// GetNumComponents returns the number of color components of the colorspace device. +// Returns 1 for a CalGray device. +func (_eaeb *PdfColorspaceCalGray )GetNumComponents ()int {return 1}; + +// ToPdfObject converts the PdfPage to a dictionary within an indirect object container. +func (_gcged *PdfPage )ToPdfObject ()_dg .PdfObject {_gggde :=_gcged ._cggbe ;_gcged .GetPageDict ();return _gggde ;}; + +// GetIndirectObjectByNumber retrieves and returns a specific PdfObject by object number. +func (_ffffb *PdfReader )GetIndirectObjectByNumber (number int )(_dg .PdfObject ,error ){_agce ,_dcgfc :=_ffffb ._baad .LookupByNumber (number );return _agce ,_dcgfc ;};type crossReference struct{Type int ; // Type 1 Offset int64 ;Generation int64 ; @@ -4964,69 +4962,60 @@ Offset int64 ;Generation int64 ; // Type 2 ObjectNumber int ;Index int ;}; -// NewPdfColorPatternType3 returns an empty color shading pattern type 3 (Radial). -func NewPdfColorPatternType3 ()*PdfColorPatternType3 {_gcga :=&PdfColorPatternType3 {};return _gcga }; +// SetPdfAuthor sets the Author attribute of the output PDF. +func SetPdfAuthor (author string ){_fgefgf .Lock ();defer _fgefgf .Unlock ();_bdeaf =author }; -// PdfFont represents an underlying font structure which can be of type: -// - Type0 -// - Type1 -// - TrueType -// etc. -type PdfFont struct{_gebd pdfFont }; +// IsShading specifies if the pattern is a shading pattern. +func (_aceae *PdfPattern )IsShading ()bool {return _aceae .PatternType ==2}; -// NewPdfAnnotationMovie returns a new movie annotation. -func NewPdfAnnotationMovie ()*PdfAnnotationMovie {_fgbb :=NewPdfAnnotation ();_ada :=&PdfAnnotationMovie {};_ada .PdfAnnotation =_fgbb ;_fgbb .SetContext (_ada );return _ada ;}; +// PdfInfoTrapped specifies pdf trapped information. +type PdfInfoTrapped string ; -// PdfActionSetOCGState represents a SetOCGState action. -type PdfActionSetOCGState struct{*PdfAction ;State _aff .PdfObject ;PreserveRB _aff .PdfObject ;};func _adffed (_fgdaf _aff .PdfObject )(map[_eee .CharCode ]float64 ,error ){if _fgdaf ==nil {return nil ,nil ;};_ebagd ,_bedfb :=_aff .GetArray (_fgdaf ); -if !_bedfb {return nil ,nil ;};_ddcbb :=map[_eee .CharCode ]float64 {};_dbbd :=_ebagd .Len ();for _efdfd :=0;_efdfd < _dbbd -1;_efdfd ++{_abfbg :=_aff .TraceToDirectObject (_ebagd .Get (_efdfd ));_bbeb ,_fgcc :=_aff .GetIntVal (_abfbg );if !_fgcc {return nil ,_e .Errorf ("\u0042a\u0064\u0020\u0066\u006fn\u0074\u0020\u0057\u0020\u006fb\u006a0\u003a \u0069\u003d\u0025\u0064\u0020\u0025\u0023v",_efdfd ,_abfbg ); -};_efdfd ++;if _efdfd > _dbbd -1{return nil ,_e .Errorf ("\u0042\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020a\u0072\u0072\u0061\u0079\u003a\u0020\u0061\u0072\u0072\u0032=\u0025\u002b\u0076",_ebagd );};_feaf :=_aff .TraceToDirectObject (_ebagd .Get (_efdfd )); -switch _feaf .(type ){case *_aff .PdfObjectArray :_ddcgb ,_ :=_aff .GetArray (_feaf );if _fcdga ,_gadf :=_ddcgb .ToFloat64Array ();_gadf ==nil {for _bffe :=0;_bffe < len (_fcdga );_bffe ++{_ddcbb [_eee .CharCode (_bbeb +_bffe )]=_fcdga [_bffe ];};}else {return nil ,_e .Errorf ("\u0042\u0061\u0064 \u0066\u006f\u006e\u0074 \u0057\u0020\u0061\u0072\u0072\u0061\u0079 \u006f\u0062\u006a\u0031\u003a\u0020\u0069\u003d\u0025\u0064\u0020\u0025\u0023\u0076",_efdfd ,_feaf ); -};case *_aff .PdfObjectInteger :_fdbfc ,_geac :=_aff .GetIntVal (_feaf );if !_geac {return nil ,_e .Errorf ("\u0042\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020\u0069\u006e\u0074\u0020\u006f\u0062\u006a\u0031\u003a\u0020\u0069\u003d\u0025\u0064 %\u0023\u0076",_efdfd ,_feaf ); -};_efdfd ++;if _efdfd > _dbbd -1{return nil ,_e .Errorf ("\u0042\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020a\u0072\u0072\u0061\u0079\u003a\u0020\u0061\u0072\u0072\u0032=\u0025\u002b\u0076",_ebagd );};_fccdd :=_ebagd .Get (_efdfd );_facfgb ,_dbefe :=_aff .GetNumberAsFloat (_fccdd ); -if _dbefe !=nil {return nil ,_e .Errorf ("\u0042\u0061d\u0020\u0066\u006f\u006e\u0074\u0020\u0057\u0020\u0069\u006e\u0074\u0020\u006f\u0062\u006a\u0032\u003a\u0020\u0069\u003d\u0025\u0064 %\u0023\u0076",_efdfd ,_fccdd );};for _eggb :=_bbeb ;_eggb <=_fdbfc ; -_eggb ++{_ddcbb [_eee .CharCode (_eggb )]=_facfgb ;};default:return nil ,_e .Errorf ("\u0042\u0061\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0057 \u006f\u0062\u006a\u0031\u0020\u0074\u0079p\u0065\u003a\u0020\u0069\u003d\u0025\u0064\u0020\u0025\u0023\u0076",_efdfd ,_feaf ); -};};return _ddcbb ,nil ;}; +// Add appends an outline item as a child of the current outline item. +func (_ebcac *OutlineItem )Add (item *OutlineItem ){_ebcac .Entries =append (_ebcac .Entries ,item )}; -// PdfColorPattern represents a pattern color. -type PdfColorPattern struct{Color PdfColor ;PatternName _aff .PdfObjectName ;}; +// ToInteger convert to an integer format. +func (_dabf *PdfColorLab )ToInteger (bits int )[3]uint32 {_adgc :=_cg .Pow (2,float64 (bits ))-1;return [3]uint32 {uint32 (_adgc *_dabf .L ()),uint32 (_adgc *_dabf .A ()),uint32 (_adgc *_dabf .B ())};};type pdfFont interface{_bbg .Font ; -// GetCustomInfo returns a custom info value for the specified name. -func (_fagf *PdfInfo )GetCustomInfo (name string )*_aff .PdfObjectString {var _abff *_aff .PdfObjectString ;if _fagf ._cgbc ==nil {return _abff ;};if _cgbg ,_abdde :=_fagf ._cgbc .Get (*_aff .MakeName (name )).(*_aff .PdfObjectString );_abdde {_abff =_cgbg ; -};return _abff ;}; +// ToPdfObject returns a PDF representation of the font and implements interface Model. +ToPdfObject ()_dg .PdfObject ;getFontDescriptor ()*PdfFontDescriptor ;baseFields ()*fontCommon ;}; -// NewPdfColorCalGray returns a new CalGray color. -func NewPdfColorCalGray (grayVal float64 )*PdfColorCalGray {_bffb :=PdfColorCalGray (grayVal );return &_bffb ;}; +// PdfAcroForm represents the AcroForm dictionary used for representation of form data in PDF. +type PdfAcroForm struct{Fields *[]*PdfField ;NeedAppearances *_dg .PdfObjectBool ;SigFlags *_dg .PdfObjectInteger ;CO *_dg .PdfObjectArray ;DR *PdfPageResources ;DA *_dg .PdfObjectString ;Q *_dg .PdfObjectInteger ;XFA _dg .PdfObject ; -// HasFontByName checks whether a font is defined by the specified keyName. -func (_dccde *PdfPageResources )HasFontByName (keyName _aff .PdfObjectName )bool {_ ,_bfead :=_dccde .GetFontByName (keyName );return _bfead ;}; +// ADBEEchoSign extra objects from Adobe Acrobat, causing signature invalid if not exists. +ADBEEchoSign _dg .PdfObject ;_bebfe *_dg .PdfIndirectObject ;_eeecb bool ;}; -// AddExtGState adds a graphics state to the XObject resources. -func (_caac *PdfPage )AddExtGState (name _aff .PdfObjectName ,egs *_aff .PdfObjectDictionary )error {if _caac .Resources ==nil {_caac .Resources =NewPdfPageResources ();};if _caac .Resources .ExtGState ==nil {_caac .Resources .ExtGState =_aff .MakeDict (); -};_ceeaeg ,_abddg :=_aff .TraceToDirectObject (_caac .Resources .ExtGState ).(*_aff .PdfObjectDictionary );if !_abddg {_adg .Log .Debug ("\u0045\u0078\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0045\u0078t\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064i\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u003a\u0020\u0025\u0076",_aff .TraceToDirectObject (_caac .Resources .ExtGState )); -return _g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");};_ceeaeg .Set (name ,egs );return nil ;}; +// PdfColorDeviceCMYK is a CMYK32 color, where each component is defined in the range 0.0 - 1.0 where 1.0 is the primary intensity. +type PdfColorDeviceCMYK [4]float64 ; -// NewPdfAnnotationWidget returns an initialized annotation widget. -func NewPdfAnnotationWidget ()*PdfAnnotationWidget {_ege :=NewPdfAnnotation ();_edg :=&PdfAnnotationWidget {};_edg .PdfAnnotation =_ege ;_ege .SetContext (_edg );return _edg ;}; +// L returns the value of the L component of the color. +func (_cffc *PdfColorLab )L ()float64 {return _cffc [0]}; -// GetPageDict converts the Page to a PDF object dictionary. -func (_fbgdg *PdfPage )GetPageDict ()*_aff .PdfObjectDictionary {_ddbbe :=_fbgdg ._bbdac ;_ddbbe .Clear ();_ddbbe .Set ("\u0054\u0079\u0070\u0065",_aff .MakeName ("\u0050\u0061\u0067\u0065"));_ddbbe .Set ("\u0050\u0061\u0072\u0065\u006e\u0074",_fbgdg .Parent ); -if _fbgdg .LastModified !=nil {_ddbbe .Set ("\u004c\u0061\u0073t\u004d\u006f\u0064\u0069\u0066\u0069\u0065\u0064",_fbgdg .LastModified .ToPdfObject ());};if _fbgdg .Resources !=nil {_ddbbe .Set ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s",_fbgdg .Resources .ToPdfObject ()); -};if _fbgdg .CropBox !=nil {_ddbbe .Set ("\u0043r\u006f\u0070\u0042\u006f\u0078",_fbgdg .CropBox .ToPdfObject ());};if _fbgdg .MediaBox !=nil {_ddbbe .Set ("\u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078",_fbgdg .MediaBox .ToPdfObject ());};if _fbgdg .BleedBox !=nil {_ddbbe .Set ("\u0042\u006c\u0065\u0065\u0064\u0042\u006f\u0078",_fbgdg .BleedBox .ToPdfObject ()); -};if _fbgdg .TrimBox !=nil {_ddbbe .Set ("\u0054r\u0069\u006d\u0042\u006f\u0078",_fbgdg .TrimBox .ToPdfObject ());};if _fbgdg .ArtBox !=nil {_ddbbe .Set ("\u0041\u0072\u0074\u0042\u006f\u0078",_fbgdg .ArtBox .ToPdfObject ());};_ddbbe .SetIfNotNil ("\u0042\u006f\u0078C\u006f\u006c\u006f\u0072\u0049\u006e\u0066\u006f",_fbgdg .BoxColorInfo ); -_ddbbe .SetIfNotNil ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_fbgdg .Contents );if _fbgdg .Rotate !=nil {_ddbbe .Set ("\u0052\u006f\u0074\u0061\u0074\u0065",_aff .MakeInteger (*_fbgdg .Rotate ));};_ddbbe .SetIfNotNil ("\u0047\u0072\u006fu\u0070",_fbgdg .Group ); -_ddbbe .SetIfNotNil ("\u0054\u0068\u0075m\u0062",_fbgdg .Thumb );_ddbbe .SetIfNotNil ("\u0042",_fbgdg .B );_ddbbe .SetIfNotNil ("\u0044\u0075\u0072",_fbgdg .Dur );_ddbbe .SetIfNotNil ("\u0054\u0072\u0061n\u0073",_fbgdg .Trans );_ddbbe .SetIfNotNil ("\u0041\u0041",_fbgdg .AA ); -_ddbbe .SetIfNotNil ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061",_fbgdg .Metadata );_ddbbe .SetIfNotNil ("\u0050i\u0065\u0063\u0065\u0049\u006e\u0066o",_fbgdg .PieceInfo );_ddbbe .SetIfNotNil ("\u0053\u0074\u0072\u0075\u0063\u0074\u0050\u0061\u0072\u0065\u006e\u0074\u0073",_fbgdg .StructParents ); -_ddbbe .SetIfNotNil ("\u0049\u0044",_fbgdg .ID );_ddbbe .SetIfNotNil ("\u0050\u005a",_fbgdg .PZ );_ddbbe .SetIfNotNil ("\u0053\u0065\u0070\u0061\u0072\u0061\u0074\u0069\u006fn\u0049\u006e\u0066\u006f",_fbgdg .SeparationInfo );_ddbbe .SetIfNotNil ("\u0054\u0061\u0062\u0073",_fbgdg .Tabs ); -_ddbbe .SetIfNotNil ("T\u0065m\u0070\u006c\u0061\u0074\u0065\u0049\u006e\u0073t\u0061\u006e\u0074\u0069at\u0065\u0064",_fbgdg .TemplateInstantiated );_ddbbe .SetIfNotNil ("\u0050r\u0065\u0073\u0053\u0074\u0065\u0070s",_fbgdg .PresSteps );_ddbbe .SetIfNotNil ("\u0055\u0073\u0065\u0072\u0055\u006e\u0069\u0074",_fbgdg .UserUnit ); -_ddbbe .SetIfNotNil ("\u0056\u0050",_fbgdg .VP );if _fbgdg ._bbgb !=nil {_gfgccg :=_aff .MakeArray ();for _ ,_aeecf :=range _fbgdg ._bbgb {if _aefd :=_aeecf .GetContext ();_aefd !=nil {_gfgccg .Append (_aefd .ToPdfObject ());}else {_gfgccg .Append (_aeecf .ToPdfObject ()); -};};if _gfgccg .Len ()> 0{_ddbbe .Set ("\u0041\u006e\u006e\u006f\u0074\u0073",_gfgccg );};}else if _fbgdg .Annots !=nil {_ddbbe .SetIfNotNil ("\u0041\u006e\u006e\u006f\u0074\u0073",_fbgdg .Annots );};return _ddbbe ;};func _baccc ()string {_aebda .Lock (); -defer _aebda .Unlock ();return _gabfb };func (_cbadb *PdfSignature )extractChainFromPKCS7 ()([]*_fb .Certificate ,error ){_bdfd ,_ceggb :=_feg .Parse (_cbadb .Contents .Bytes ());if _ceggb !=nil {return nil ,_ceggb ;};return _bdfd .Certificates ,nil ;}; +// NewPdfPageResources returns a new PdfPageResources object. +func NewPdfPageResources ()*PdfPageResources {_dead :=&PdfPageResources {};_dead ._ddcfb =_dg .MakeDict ();return _dead ;}; +// PdfAnnotationFreeText represents FreeText annotations. +// (Section 12.5.6.6). +type PdfAnnotationFreeText struct{*PdfAnnotation ;*PdfAnnotationMarkup ;DA _dg .PdfObject ;Q _dg .PdfObject ;RC _dg .PdfObject ;DS _dg .PdfObject ;CL _dg .PdfObject ;IT _dg .PdfObject ;BE _dg .PdfObject ;RD _dg .PdfObject ;BS _dg .PdfObject ;LE _dg .PdfObject ; +}; -// AddExtension adds the specified extension to the Extensions dictionary. -// See section 7.1.2 "Extensions Dictionary" (pp. 108-109 PDF32000_2008). -func (_bfgbc *PdfWriter )AddExtension (extName ,baseVersion string ,extLevel int ){_ecfcb ,_cccce :=_aff .GetDict (_bfgbc ._cdccb .Get ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0073"));if !_cccce {_ecfcb =_aff .MakeDict ();_bfgbc ._cdccb .Set ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0073",_ecfcb ); -};_cafda ,_cccce :=_aff .GetDict (_ecfcb .Get (_aff .PdfObjectName (extName )));if !_cccce {_cafda =_aff .MakeDict ();_ecfcb .Set (_aff .PdfObjectName (extName ),_cafda );};if _abcd ,_ :=_aff .GetNameVal (_cafda .Get ("B\u0061\u0073\u0065\u0056\u0065\u0072\u0073\u0069\u006f\u006e")); -_abcd !=baseVersion {_cafda .Set ("B\u0061\u0073\u0065\u0056\u0065\u0072\u0073\u0069\u006f\u006e",_aff .MakeName (baseVersion ));};if _eddfc ,_ :=_aff .GetIntVal (_cafda .Get ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006eL\u0065\u0076\u0065\u006c")); -_eddfc !=extLevel {_cafda .Set ("\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006eL\u0065\u0076\u0065\u006c",_aff .MakeInteger (int64 (extLevel )));};}; \ No newline at end of file +// ColorFromFloats returns a new PdfColor based on the input slice of color +// components. The slice should contain three elements representing the +// L (range 0-100), A (range -100-100) and B (range -100-100) components of +// the color. +func (_ggfcf *PdfColorspaceLab )ColorFromFloats (vals []float64 )(PdfColor ,error ){if len (vals )!=3{return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b");};_gbegf :=vals [0];if _gbegf < 0.0||_gbegf > 100.0{_ag .Log .Debug ("\u004c\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067e\u0020\u0028\u0067\u006f\u0074\u0020%\u0076\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u0030-\u0031\u0030\u0030\u0029",_gbegf ); +return nil ,ErrColorOutOfRange ;};_egdf :=vals [1];_bdeb :=float64 (-100);_bffeg :=float64 (100);if len (_ggfcf .Range )> 1{_bdeb =_ggfcf .Range [0];_bffeg =_ggfcf .Range [1];};if _egdf < _bdeb ||_egdf > _bffeg {_ag .Log .Debug ("\u0041\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067e\u0020\u0028\u0067\u006f\u0074\u0020%\u0076\u003b\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0025\u0076\u0020\u0074o\u0020\u0025\u0076\u0029",_egdf ,_bdeb ,_bffeg ); +return nil ,ErrColorOutOfRange ;};_fgaa :=vals [2];_edgg :=float64 (-100);_cgfg :=float64 (100);if len (_ggfcf .Range )> 3{_edgg =_ggfcf .Range [2];_cgfg =_ggfcf .Range [3];};if _fgaa < _edgg ||_fgaa > _cgfg {_ag .Log .Debug ("\u0062\u0020\u006f\u0075\u0074\u0020\u006f\u0066\u0020\u0072\u0061\u006e\u0067e\u0020\u0028\u0067\u006f\u0074\u0020%\u0076\u003b\u0020\u0072\u0061\u006e\u0067\u0065\u0020\u0025\u0076\u0020\u0074o\u0020\u0025\u0076\u0029",_fgaa ,_edgg ,_cgfg ); +return nil ,ErrColorOutOfRange ;};_bfde :=NewPdfColorLab (_gbegf ,_egdf ,_fgaa );return _bfde ,nil ;}; + +// PdfFunctionType4 is a Postscript calculator functions. +type PdfFunctionType4 struct{Domain []float64 ;Range []float64 ;Program *_gfd .PSProgram ;_agbgd *_gfd .PSExecutor ;_cbdbd []byte ;_ggfdf *_dg .PdfObjectStream ;}; + +// Evaluate runs the function on the passed in slice and returns the results. +func (_afecg *PdfFunctionType3 )Evaluate (x []float64 )([]float64 ,error ){if len (x )!=1{_ag .Log .Error ("\u004f\u006e\u006c\u0079 o\u006e\u0065\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u0061\u006c\u006c\u006f\u0077e\u0064");return nil ,_bf .New ("r\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b"); +};return nil ,_bf .New ("\u006e\u006f\u0074\u0020im\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0065\u0064\u0020\u0079\u0065\u0074");};func (_ggde *DSS )generateHashMap (_dceaf []*_dg .PdfObjectStream )(map[string ]*_dg .PdfObjectStream ,error ){_feca :=map[string ]*_dg .PdfObjectStream {}; +for _ ,_geecd :=range _dceaf {_bcgcf ,_face :=_dg .DecodeStream (_geecd );if _face !=nil {return nil ,_face ;};_cbdc ,_face :=_cbeaf (_bcgcf );if _face !=nil {return nil ,_face ;};_feca [string (_cbdc )]=_geecd ;};return _feca ,nil ;}; + +// WatermarkImageOptions contains options for configuring the watermark process. +type WatermarkImageOptions struct{Alpha float64 ;FitToWidth bool ;PreserveAspectRatio bool ;}; \ No newline at end of file diff --git a/model/optimize/optimize.go b/model/optimize/optimize.go index ded4a6f66..ce44068d4 100644 --- a/model/optimize/optimize.go +++ b/model/optimize/optimize.go @@ -9,231 +9,229 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package optimize ;import (_cgg "bytes";_a "crypto/md5";_gda "errors";_ga "fmt";_c "github.com/unidoc/unipdf/v3/common";_b "github.com/unidoc/unipdf/v3/contentstream";_fe "github.com/unidoc/unipdf/v3/core";_cg "github.com/unidoc/unipdf/v3/extractor";_fa "github.com/unidoc/unipdf/v3/internal/imageutil"; -_d "github.com/unidoc/unipdf/v3/internal/textencoding";_af "github.com/unidoc/unipdf/v3/model";_gc "github.com/unidoc/unitype";_g "golang.org/x/image/draw";_gd "math";_e "strings";);func _edae (_cge _fe .PdfObject )[]content {if _cge ==nil {return nil ; -};_bca ,_ab :=_fe .GetArray (_cge );if !_ab {_c .Log .Debug ("\u0041\u006e\u006e\u006fts\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079");return nil ;};var _ddge []content ;for _ ,_aeec :=range _bca .Elements (){_gggg ,_cac :=_fe .GetDict (_aeec ); -if !_cac {_c .Log .Debug ("I\u0067\u006e\u006f\u0072\u0069\u006eg\u0020\u006e\u006f\u006e\u002d\u0064i\u0063\u0074\u0020\u0065\u006c\u0065\u006de\u006e\u0074\u0020\u0069\u006e\u0020\u0041\u006e\u006e\u006ft\u0073");continue ;};_baab ,_cac :=_fe .GetDict (_gggg .Get ("\u0041\u0050")); -if !_cac {_c .Log .Debug ("\u004e\u006f\u0020\u0041P \u0065\u006e\u0074\u0072\u0079\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067");continue ;};_fgda :=_fe .TraceToDirectObject (_baab .Get ("\u004e"));if _fgda ==nil {_c .Log .Debug ("N\u006f\u0020\u004e\u0020en\u0074r\u0079\u0020\u002d\u0020\u0073k\u0069\u0070\u0070\u0069\u006e\u0067"); -continue ;};var _fcff *_fe .PdfObjectStream ;switch _dbd :=_fgda .(type ){case *_fe .PdfObjectDictionary :_gff ,_dgd :=_fe .GetName (_gggg .Get ("\u0041\u0053"));if !_dgd {_c .Log .Debug ("\u004e\u006f\u0020\u0041S \u0065\u006e\u0074\u0072\u0079\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067"); -continue ;};_fcff ,_dgd =_fe .GetStream (_dbd .Get (*_gff ));if !_dgd {_c .Log .Debug ("\u0046o\u0072\u006d\u0020\u006eo\u0074\u0020\u0066\u006f\u0075n\u0064 \u002d \u0073\u006b\u0069\u0070\u0070\u0069\u006eg");continue ;};case *_fe .PdfObjectStream :_fcff =_dbd ; -};if _fcff ==nil {_c .Log .Debug ("\u0046\u006f\u0072m\u0020\u006e\u006f\u0074 \u0066\u006f\u0075\u006e\u0064\u0020\u0028n\u0069\u006c\u0029\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067");continue ;};_ced ,_egb :=_af .NewXObjectFormFromStream (_fcff ); -if _egb !=nil {_c .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020l\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u003a\u0020%\u0076\u0020\u002d\u0020\u0069\u0067\u006eo\u0072\u0069\u006e\u0067",_egb );continue ;};_efe ,_egb :=_ced .GetContentStream (); -if _egb !=nil {_c .Log .Debug ("E\u0072\u0072\u006f\u0072\u0020\u0064e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0063\u006fn\u0074\u0065\u006et\u0073:\u0020\u0025\u0076",_egb );continue ;};_ddge =append (_ddge ,content {_ecg :string (_efe ),_gcc :_ced .Resources }); -};return _ddge ;};func _bacc (_gdfb *_af .XObjectImage ,_bdc imageModifications )error {_ceba ,_daec :=_gdfb .ToImage ();if _daec !=nil {return _daec ;};if _bdc .Scale !=0{_ceba ,_daec =_dgde (_ceba ,_bdc .Scale );if _daec !=nil {return _daec ;};};if _bdc .Encoding !=nil {_gdfb .Filter =_bdc .Encoding ; -};_gdfb .Decode =nil ;switch _gede :=_gdfb .Filter .(type ){case *_fe .FlateEncoder :if _gede .Predictor !=1&&_gede .Predictor !=11{_gede .Predictor =1;};};if _daec =_gdfb .SetImage (_ceba ,nil );_daec !=nil {_c .Log .Debug ("\u0045\u0072\u0072or\u0020\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0076",_daec ); -return _daec ;};_gdfb .ToPdfObject ();return nil ;};func _ebd (_gagb []_fe .PdfObject ){for _ceda ,_cccb :=range _gagb {switch _bbfbb :=_cccb .(type ){case *_fe .PdfIndirectObject :_bbfbb .ObjectNumber =int64 (_ceda +1);_bbfbb .GenerationNumber =0;case *_fe .PdfObjectStream :_bbfbb .ObjectNumber =int64 (_ceda +1); -_bbfbb .GenerationNumber =0;case *_fe .PdfObjectStreams :_bbfbb .ObjectNumber =int64 (_ceda +1);_bbfbb .GenerationNumber =0;};};};func _gcg (_dc *_b .ContentStreamOperations )*_b .ContentStreamOperations {if _dc ==nil {return nil ;};_fga :=_b .ContentStreamOperations {}; -for _ ,_ed :=range *_dc {switch _ed .Operand {case "\u0042\u0044\u0043","\u0042\u004d\u0043","\u0045\u004d\u0043":continue ;case "\u0054\u006d":if len (_ed .Params )==6{if _bg ,_bc :=_fe .GetNumbersAsFloat (_ed .Params );_bc ==nil {if _bg [0]==1&&_bg [1]==0&&_bg [2]==0&&_bg [3]==1{_ed =&_b .ContentStreamOperation {Params :[]_fe .PdfObject {_ed .Params [4],_ed .Params [5]},Operand :"\u0054\u0064"}; -};};};};_fga =append (_fga ,_ed );};return &_fga ;}; +package optimize ;import (_af "bytes";_be "crypto/md5";_cf "errors";_d "fmt";_f "github.com/unidoc/unipdf/v3/common";_fa "github.com/unidoc/unipdf/v3/contentstream";_g "github.com/unidoc/unipdf/v3/core";_e "github.com/unidoc/unipdf/v3/extractor";_ce "github.com/unidoc/unipdf/v3/internal/imageutil"; +_a "github.com/unidoc/unipdf/v3/internal/textencoding";_ag "github.com/unidoc/unipdf/v3/model";_fd "github.com/unidoc/unitype";_c "golang.org/x/image/draw";_ff "math";_bc "strings";);func _agf (_dcfb string ,_eaea []string )bool {for _ ,_ccg :=range _eaea {if _dcfb ==_ccg {return true ; +};};return false ;};func _gaa (_bcd []_g .PdfObject )(_fde map[*_g .PdfObjectStream ]struct{},_deff error ){_fde =map[*_g .PdfObjectStream ]struct{}{};_afgc :=map[*_ag .PdfFont ]struct{}{};_bgf :=_gfab (_bcd );for _ ,_dee :=range _bgf ._cebg {_cb ,_dff :=_g .GetDict (_dee .PdfObject ); +if !_dff {continue ;};_abb ,_dff :=_g .GetDict (_cb .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s"));if !_dff {continue ;};_gab ,_ :=_agdb (_cb .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));_fdc ,_gca :=_ag .NewPdfPageResourcesFromDict (_abb ); +if _gca !=nil {return nil ,_gca ;};_dda :=[]content {{_beae :_gab ,_daee :_fdc }};_ea :=_fgf (_cb .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if _ea !=nil {_dda =append (_dda ,_ea ...);};for _ ,_ddab :=range _dda {_eaf ,_ccff :=_e .NewFromContents (_ddab ._beae ,_ddab ._daee ); +if _ccff !=nil {return nil ,_ccff ;};_cgd ,_ ,_ ,_ccff :=_eaf .ExtractPageText ();if _ccff !=nil {return nil ,_ccff ;};for _ ,_cef :=range _cgd .Marks ().Elements (){if _cef .Font ==nil {continue ;};if _ ,_ccd :=_afgc [_cef .Font ];!_ccd {_afgc [_cef .Font ]=struct{}{}; +};};};};_dfd :=map[*_g .PdfObjectStream ][]*_ag .PdfFont {};for _gf :=range _afgc {_ef :=_gf .FontDescriptor ();if _ef ==nil ||_ef .FontFile2 ==nil {continue ;};_aaa ,_dec :=_g .GetStream (_ef .FontFile2 );if !_dec {continue ;};_dfd [_aaa ]=append (_dfd [_aaa ],_gf ); +};for _abbb :=range _dfd {var _aga []rune ;var _fgb []_fd .GlyphIndex ;for _ ,_fee :=range _dfd [_abbb ]{switch _bbc :=_fee .Encoder ().(type ){case *_a .IdentityEncoder :_bgfe :=_bbc .RegisteredRunes ();_bce :=make ([]_fd .GlyphIndex ,len (_bgfe ));for _dag ,_bbf :=range _bgfe {_bce [_dag ]=_fd .GlyphIndex (_bbf ); +};_fgb =append (_fgb ,_bce ...);case *_a .TrueTypeFontEncoder :_ffa :=_bbc .RegisteredRunes ();_aga =append (_aga ,_ffa ...);case _a .SimpleEncoder :_dcd :=_bbc .Charcodes ();for _ ,_ead :=range _dcd {_fgbb ,_fcb :=_bbc .CharcodeToRune (_ead );if !_fcb {_f .Log .Debug ("\u0043\u0068a\u0072\u0063\u006f\u0064\u0065\u003c\u002d\u003e\u0072\u0075\u006e\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064: \u0025\u0064",_ead ); +continue ;};_aga =append (_aga ,_fgbb );};};};_deff =_efe (_abbb ,_aga ,_fgb );if _deff !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069\u006eg\u0020f\u006f\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_deff ); +return nil ,_deff ;};_fde [_abbb ]=struct{}{};};return _fde ,nil ;};func _afg (_dg *_fa .ContentStreamOperations )*_fa .ContentStreamOperations {if _dg ==nil {return nil ;};_ab :=_fa .ContentStreamOperations {};for _ ,_ed :=range *_dg {switch _ed .Operand {case "\u0042\u0044\u0043","\u0042\u004d\u0043","\u0045\u004d\u0043":continue ; +case "\u0054\u006d":if len (_ed .Params )==6{if _gd ,_acf :=_g .GetNumbersAsFloat (_ed .Params );_acf ==nil {if _gd [0]==1&&_gd [1]==0&&_gd [2]==0&&_gd [3]==1{_ed =&_fa .ContentStreamOperation {Params :[]_g .PdfObject {_ed .Params [4],_ed .Params [5]},Operand :"\u0054\u0064"}; +};};};};_ab =append (_ab ,_ed );};return &_ab ;}; // CleanContentstream cleans up redundant operands in content streams, including Page and XObject Form // contents. This process includes: // 1. Marked content operators are removed. // 2. Some operands are simplified (shorter form). // TODO: Add more reduction methods and improving the methods for identifying unnecessary operands. -type CleanContentstream struct{};type imageInfo struct{BitsPerComponent int ;ColorComponents int ;Width int ;Height int ;Stream *_fe .PdfObjectStream ;PPI float64 ;}; +type CleanContentstream struct{};func _agdb (_cgba _g .PdfObject )(_eeac string ,_eeaf []_g .PdfObject ){var _becd _af .Buffer ;switch _gbef :=_cgba .(type ){case *_g .PdfIndirectObject :_eeaf =append (_eeaf ,_gbef );_cgba =_gbef .PdfObject ;};switch _fdec :=_cgba .(type ){case *_g .PdfObjectStream :if _cbb ,_cda :=_g .DecodeStream (_fdec ); +_cda ==nil {_becd .Write (_cbb );_eeaf =append (_eeaf ,_fdec );};case *_g .PdfObjectArray :for _ ,_baca :=range _fdec .Elements (){switch _gcdc :=_baca .(type ){case *_g .PdfObjectStream :if _cbc ,_edga :=_g .DecodeStream (_gcdc );_edga ==nil {_becd .Write (_cbc ); +_eeaf =append (_eeaf ,_gcdc );};};};};return _becd .String (),_eeaf ;};type content struct{_beae string ;_daee *_ag .PdfPageResources ;}; -// Chain allows to use sequence of optimizers. -// It implements interface model.Optimizer. -type Chain struct{_cgd []_af .Optimizer }; - -// Optimize optimizes PDF objects to decrease PDF size. -func (_cgdc *CleanContentstream )Optimize (objects []_fe .PdfObject )(_baa []_fe .PdfObject ,_eda error ){_cfd :=map[*_fe .PdfObjectStream ]struct{}{};var _ggf []*_fe .PdfObjectStream ;_dd :=func (_gbb *_fe .PdfObjectStream ){if _ ,_ee :=_cfd [_gbb ];!_ee {_cfd [_gbb ]=struct{}{}; -_ggf =append (_ggf ,_gbb );};};_dec :=map[_fe .PdfObject ]bool {};_ae :=map[_fe .PdfObject ]bool {};for _ ,_fdg :=range objects {switch _gfd :=_fdg .(type ){case *_fe .PdfIndirectObject :switch _afe :=_gfd .PdfObject .(type ){case *_fe .PdfObjectDictionary :if _fdc ,_bb :=_fe .GetName (_afe .Get ("\u0054\u0079\u0070\u0065")); -!_bb ||_fdc .String ()!="\u0050\u0061\u0067\u0065"{continue ;};if _bag ,_cba :=_fe .GetStream (_afe .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));_cba {_dd (_bag );}else if _faa ,_ea :=_fe .GetArray (_afe .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073")); -_ea {var _agb []*_fe .PdfObjectStream ;for _ ,_degb :=range _faa .Elements (){if _ge ,_ff :=_fe .GetStream (_degb );_ff {_agb =append (_agb ,_ge );};};if len (_agb )> 0{var _aff _cgg .Buffer ;for _ ,_gge :=range _agb {if _dce ,_bfc :=_fe .DecodeStream (_gge ); -_bfc ==nil {_aff .Write (_dce );};_dec [_gge ]=true ;};_edb ,_ffd :=_fe .MakeStream (_aff .Bytes (),_fe .NewFlateEncoder ());if _ffd !=nil {return nil ,_ffd ;};_ae [_edb ]=true ;_afe .Set ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_edb );_dd (_edb ); -};};};case *_fe .PdfObjectStream :if _ec ,_ceb :=_fe .GetName (_gfd .Get ("\u0054\u0079\u0070\u0065"));!_ceb ||_ec .String ()!="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};if _beb ,_gbc :=_fe .GetName (_gfd .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -!_gbc ||_beb .String ()!="\u0046\u006f\u0072\u006d"{continue ;};_dd (_gfd );};};for _ ,_dceb :=range _ggf {_eda =_cb (_dceb );if _eda !=nil {return nil ,_eda ;};};_baa =nil ;for _ ,_gef :=range objects {if _dec [_gef ]{continue ;};_baa =append (_baa ,_gef ); -};for _ebg :=range _ae {_baa =append (_baa ,_ebg );};return _baa ,nil ;}; +// Optimize implements Optimizer interface. +func (_agc *CleanUnusedResources )Optimize (objects []_g .PdfObject )(_ecge []_g .PdfObject ,_gbga error ){_abc ,_gbga :=_ffe (objects );if _gbga !=nil {return nil ,_gbga ;};_aef :=[]_g .PdfObject {};for _ ,_gge :=range objects {_ ,_abd :=_abc [_gge ]; +if _abd {continue ;};_aef =append (_aef ,_gge );};return _aef ,nil ;}; -// ObjectStreams groups PDF objects to object streams. +// ImagePPI optimizes images by scaling images such that the PPI (pixels per inch) is never higher than ImageUpperPPI. +// TODO(a5i): Add support for inline images. // It implements interface model.Optimizer. -type ObjectStreams struct{};func _cb (_fgd *_fe .PdfObjectStream )error {_gf ,_de :=_fe .DecodeStream (_fgd );if _de !=nil {return _de ;};_bf :=_b .NewContentStreamParser (string (_gf ));_ag ,_de :=_bf .Parse ();if _de !=nil {return _de ;};_ag =_gcg (_ag ); -_gga :=_ag .Bytes ();if len (_gga )>=len (_gf ){return nil ;};_deg ,_de :=_fe .MakeStream (_ag .Bytes (),_fe .NewFlateEncoder ());if _de !=nil {return _de ;};_fgd .Stream =_deg .Stream ;_fgd .Merge (_deg .PdfObjectDictionary );return nil ;};type imageModifications struct{Scale float64 ; -Encoding _fe .StreamEncoder ;}; +type ImagePPI struct{ImageUpperPPI float64 ;};func _ffe (_ffad []_g .PdfObject )(map[_g .PdfObject ]struct{},error ){_dbg :=_gfab (_ffad );_dgad :=_dbg ._cebg ;_bcgb :=make (map[_g .PdfObject ]struct{});_abeg :=_ddde (_dgad );for _ ,_bac :=range _dgad {_acg ,_abg :=_g .GetDict (_bac .PdfObject ); +if !_abg {continue ;};_gdd ,_abg :=_g .GetDict (_acg .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s"));if !_abg {continue ;};_aca :=_abeg ["\u0058O\u0062\u006a\u0065\u0063\u0074"];_cefa ,_abg :=_g .GetDict (_gdd .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074")); +if _abg {_cff :=_bcbf (_cefa );for _ ,_gfed :=range _cff {if _agf (_gfed ,_aca ){continue ;};_add :=*_g .MakeName (_gfed );_cae :=_cefa .Get (_add );_bcgb [_cae ]=struct{}{};_cefa .Remove (_add );_eddd :=_bec (_cae ,_bcgb );if _eddd !=nil {_f .Log .Debug ("\u0066\u0061\u0069\u006ce\u0064\u0020\u0074\u006f\u0020\u0074\u0072\u0061\u0076\u0065r\u0073e\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0025\u0076",_cae ); +};};};_gba ,_abg :=_g .GetDict (_gdd .Get ("\u0046\u006f\u006e\u0074"));_eadg :=_abeg ["\u0046\u006f\u006e\u0074"];if _abg {_dad :=_bcbf (_gba );for _ ,_gcd :=range _dad {if _agf (_gcd ,_eadg ){continue ;};_cee :=*_g .MakeName (_gcd );_gcfe :=_gba .Get (_cee ); +_bcgb [_gcfe ]=struct{}{};_gba .Remove (_cee );_dbc :=_bec (_gcfe ,_bcgb );if _dbc !=nil {_f .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074 %\u0076\u000a",_gcfe ); +};};};_aadaa ,_abg :=_g .GetDict (_gdd .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if _abg {_fgg :=_bcbf (_aadaa );_fgga :=_abeg ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"];for _ ,_acad :=range _fgg {if _agf (_acad ,_fgga ){continue ;}; +_eaed :=*_g .MakeName (_acad );_ebc :=_aadaa .Get (_eaed );_bcgb [_ebc ]=struct{}{};_aadaa .Remove (_eaed );_dbb :=_bec (_ebc ,_bcgb );if _dbb !=nil {_f .Log .Debug ("\u0066\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074 %\u0076\u000a",_ebc ); +};};};};return _bcgb ,nil ;}; + +// New creates a optimizers chain from options. +func New (options Options )*Chain {_ggfa :=new (Chain );if options .CleanFonts ||options .SubsetFonts {_ggfa .Append (&CleanFonts {Subset :options .SubsetFonts });};if options .CleanContentstream {_ggfa .Append (new (CleanContentstream ));};if options .ImageUpperPPI > 0{_abbg :=new (ImagePPI ); +_abbg .ImageUpperPPI =options .ImageUpperPPI ;_ggfa .Append (_abbg );};if options .ImageQuality > 0{_acbg :=new (Image );_acbg .ImageQuality =options .ImageQuality ;_ggfa .Append (_acbg );};if options .CombineDuplicateDirectObjects {_ggfa .Append (new (CombineDuplicateDirectObjects )); +};if options .CombineDuplicateStreams {_ggfa .Append (new (CombineDuplicateStreams ));};if options .CombineIdenticalIndirectObjects {_ggfa .Append (new (CombineIdenticalIndirectObjects ));};if options .UseObjectStreams {_ggfa .Append (new (ObjectStreams )); +};if options .CompressStreams {_ggfa .Append (new (CompressStreams ));};if options .CleanUnusedResources {_ggfa .Append (new (CleanUnusedResources ));};return _ggfa ;}; // CombineDuplicateStreams combines duplicated streams by its data hash. // It implements interface model.Optimizer. -type CombineDuplicateStreams struct{}; - -// GetOptimizers gets the list of optimizers in chain `c`. -func (_eg *Chain )GetOptimizers ()[]_af .Optimizer {return _eg ._cgd };func _bga (_df []_fe .PdfObject )(_bfg map[*_fe .PdfObjectStream ]struct{},_fbb error ){_bfg =map[*_fe .PdfObjectStream ]struct{}{};_cc :=map[*_af .PdfFont ]struct{}{};_gbg :=_cbbg (_df ); -for _ ,_bfgd :=range _gbg ._egaa {_egf ,_dde :=_fe .GetDict (_bfgd .PdfObject );if !_dde {continue ;};_ccd ,_dde :=_fe .GetDict (_egf .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s"));if !_dde {continue ;};_db ,_ :=_dda (_egf .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073")); -_cfe ,_gee :=_af .NewPdfPageResourcesFromDict (_ccd );if _gee !=nil {return nil ,_gee ;};_fdf :=[]content {{_ecg :_db ,_gcc :_cfe }};_da :=_edae (_egf .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if _da !=nil {_fdf =append (_fdf ,_da ...);};for _ ,_cbg :=range _fdf {_dbb ,_ddg :=_cg .NewFromContents (_cbg ._ecg ,_cbg ._gcc ); -if _ddg !=nil {return nil ,_ddg ;};_dded ,_ ,_ ,_ddg :=_dbb .ExtractPageText ();if _ddg !=nil {return nil ,_ddg ;};for _ ,_gbcf :=range _dded .Marks ().Elements (){if _gbcf .Font ==nil {continue ;};if _ ,_ca :=_cc [_gbcf .Font ];!_ca {_cc [_gbcf .Font ]=struct{}{}; -};};};};_cca :=map[*_fe .PdfObjectStream ][]*_af .PdfFont {};for _ffg :=range _cc {_cga :=_ffg .FontDescriptor ();if _cga ==nil ||_cga .FontFile2 ==nil {continue ;};_fab ,_ef :=_fe .GetStream (_cga .FontFile2 );if !_ef {continue ;};_cca [_fab ]=append (_cca [_fab ],_ffg ); -};for _fc :=range _cca {var _dcf []rune ;var _gdc []_gc .GlyphIndex ;for _ ,_ffc :=range _cca [_fc ]{switch _cd :=_ffc .Encoder ().(type ){case *_d .IdentityEncoder :_gfe :=_cd .RegisteredRunes ();_faf :=make ([]_gc .GlyphIndex ,len (_gfe ));for _dcde ,_eec :=range _gfe {_faf [_dcde ]=_gc .GlyphIndex (_eec ); -};_gdc =append (_gdc ,_faf ...);case *_d .TrueTypeFontEncoder :_bae :=_cd .RegisteredRunes ();_dcf =append (_dcf ,_bae ...);case _d .SimpleEncoder :_aca :=_cd .Charcodes ();for _ ,_acc :=range _aca {_gbd ,_aef :=_cd .CharcodeToRune (_acc );if !_aef {_c .Log .Debug ("\u0043\u0068a\u0072\u0063\u006f\u0064\u0065\u003c\u002d\u003e\u0072\u0075\u006e\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064: \u0025\u0064",_acc ); -continue ;};_dcf =append (_dcf ,_gbd );};};};_fbb =_ccdb (_fc ,_dcf ,_gdc );if _fbb !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069\u006eg\u0020f\u006f\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u003a\u0020\u0025\u0076",_fbb ); -return nil ,_fbb ;};_bfg [_fc ]=struct{}{};};return _bfg ,nil ;}; - -// Optimize optimizes PDF objects to decrease PDF size. -func (_cgb *Image )Optimize (objects []_fe .PdfObject )(_fbed []_fe .PdfObject ,_fae error ){if _cgb .ImageQuality <=0{return objects ,nil ;};_afaa :=_cfa (objects );if len (_afaa )==0{return objects ,nil ;};_cccc :=make (map[_fe .PdfObject ]_fe .PdfObject ); -_aceb :=make (map[_fe .PdfObject ]struct{});for _ ,_adad :=range _afaa {_age :=_adad .Stream .Get ("\u0053\u004d\u0061s\u006b");_aceb [_age ]=struct{}{};};for _cbe ,_dca :=range _afaa {_gfge :=_dca .Stream ;if _ ,_fgg :=_aceb [_gfge ];_fgg {continue ;}; -_fdge ,_dcba :=_af .NewXObjectImageFromStream (_gfge );if _dcba !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_dcba );continue ;};switch _fdge .Filter .(type ){case *_fe .JBIG2Encoder :continue ;case *_fe .CCITTFaxEncoder :continue ; -};_gaca ,_dcba :=_fdge .ToImage ();if _dcba !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_dcba );continue ;};_gegc :=_fe .NewDCTEncoder ();_gegc .ColorComponents =_gaca .ColorComponents ;_gegc .Quality =_cgb .ImageQuality ; -_gegc .BitsPerComponent =_dca .BitsPerComponent ;_gegc .Width =_dca .Width ;_gegc .Height =_dca .Height ;_fdd ,_dcba :=_gegc .EncodeBytes (_gaca .Data );if _dcba !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_dcba ); -continue ;};var _bbfb _fe .StreamEncoder ;_bbfb =_gegc ;{_eggd :=_fe .NewFlateEncoder ();_baeb :=_fe .NewMultiEncoder ();_baeb .AddEncoder (_eggd );_baeb .AddEncoder (_gegc );_gab ,_aed :=_baeb .EncodeBytes (_gaca .Data );if _aed !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aed ); -continue ;};if len (_gab )< len (_fdd ){_c .Log .Trace ("\u004d\u0075\u006c\u0074\u0069\u0020\u0065\u006e\u0063\u0020\u0069\u006d\u0070\u0072\u006f\u0076\u0065\u0073\u003a\u0020\u0025\u0064\u0020\u0074o\u0020\u0025\u0064\u0020\u0028o\u0072\u0069g\u0020\u0025\u0064\u0029",len (_fdd ),len (_gab ),len (_gfge .Stream )); -_fdd =_gab ;_bbfb =_baeb ;};};_cdg :=len (_gfge .Stream );if _cdg < len (_fdd ){continue ;};_dcc :=&_fe .PdfObjectStream {Stream :_fdd };_dcc .PdfObjectReference =_gfge .PdfObjectReference ;_dcc .PdfObjectDictionary =_fe .MakeDict ();_dcc .Merge (_gfge .PdfObjectDictionary ); -_dcc .Merge (_bbfb .MakeStreamDict ());_dcc .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_fe .MakeInteger (int64 (len (_fdd ))));_cccc [_gfge ]=_dcc ;_afaa [_cbe ].Stream =_dcc ;};_fbed =make ([]_fe .PdfObject ,len (objects ));copy (_fbed ,objects );_ccbb (_fbed ,_cccc ); -return _fbed ,nil ;}; +type CombineDuplicateStreams struct{};type imageInfo struct{BitsPerComponent int ;ColorComponents int ;Width int ;Height int ;Stream *_g .PdfObjectStream ;PPI float64 ;}; -// Image optimizes images by rewrite images into JPEG format with quality equals to ImageQuality. -// TODO(a5i): Add support for inline images. +// CombineDuplicateDirectObjects combines duplicated direct objects by its data hash. // It implements interface model.Optimizer. -type Image struct{ImageQuality int ;}; +type CombineDuplicateDirectObjects struct{}; // Optimize optimizes PDF objects to decrease PDF size. -func (_gbec *CombineIdenticalIndirectObjects )Optimize (objects []_fe .PdfObject )(_gdfc []_fe .PdfObject ,_cbbe error ){_ebd (objects );_efee :=make (map[_fe .PdfObject ]_fe .PdfObject );_gea :=make (map[_fe .PdfObject ]struct{});_adaf :=make (map[string ][]*_fe .PdfIndirectObject ); -for _ ,_ffad :=range objects {_eaec ,_eaa :=_ffad .(*_fe .PdfIndirectObject );if !_eaa {continue ;};if _fgb ,_gcfd :=_eaec .PdfObject .(*_fe .PdfObjectDictionary );_gcfd {if _bfcb ,_ebb :=_fgb .Get ("\u0054\u0079\u0070\u0065").(*_fe .PdfObjectName );_ebb &&*_bfcb =="\u0050\u0061\u0067\u0065"{continue ; -};_cfda :=_a .New ();_cfda .Write ([]byte (_fgb .WriteString ()));_edefa :=string (_cfda .Sum (nil ));_adaf [_edefa ]=append (_adaf [_edefa ],_eaec );};};for _ ,_gaed :=range _adaf {if len (_gaed )< 2{continue ;};_ggd :=_gaed [0];for _bgbc :=1;_bgbc < len (_gaed ); -_bgbc ++{_egfa :=_gaed [_bgbc ];_efee [_egfa ]=_ggd ;_gea [_egfa ]=struct{}{};};};_gdfc =make ([]_fe .PdfObject ,0,len (objects )-len (_gea ));for _ ,_gbea :=range objects {if _ ,_dgb :=_gea [_gbea ];_dgb {continue ;};_gdfc =append (_gdfc ,_gbea );};_ccbb (_gdfc ,_efee ); -return _gdfc ,nil ;};func _fgdf (_aac string ,_debd []string )bool {for _ ,_dbf :=range _debd {if _aac ==_dbf {return true ;};};return false ;}; +func (_ecc *CombineDuplicateDirectObjects )Optimize (objects []_g .PdfObject )(_fdce []_g .PdfObject ,_bccd error ){_gdc (objects );_aff :=make (map[string ][]*_g .PdfObjectDictionary );var _fea func (_gbe *_g .PdfObjectDictionary );_fea =func (_dfe *_g .PdfObjectDictionary ){for _ ,_bgge :=range _dfe .Keys (){_gcce :=_dfe .Get (_bgge ); +if _bcbfd ,_cefb :=_gcce .(*_g .PdfObjectDictionary );_cefb {_cfg :=_be .New ();_cfg .Write ([]byte (_bcbfd .WriteString ()));_gda :=string (_cfg .Sum (nil ));_aff [_gda ]=append (_aff [_gda ],_bcbfd );_fea (_bcbfd );};};};for _ ,_eac :=range objects {_fcf ,_cgg :=_eac .(*_g .PdfIndirectObject ); +if !_cgg {continue ;};if _feb ,_faa :=_fcf .PdfObject .(*_g .PdfObjectDictionary );_faa {_fea (_feb );};};_fba :=make ([]_g .PdfObject ,0,len (_aff ));_caf :=make (map[_g .PdfObject ]_g .PdfObject );for _ ,_dagd :=range _aff {if len (_dagd )< 2{continue ; +};_eea :=_g .MakeDict ();_eea .Merge (_dagd [0]);_aee :=_g .MakeIndirectObject (_eea );_fba =append (_fba ,_aee );for _cgga :=0;_cgga < len (_dagd );_cgga ++{_efc :=_dagd [_cgga ];_caf [_efc ]=_aee ;};};_fdce =make ([]_g .PdfObject ,len (objects ));copy (_fdce ,objects ); +_fdce =append (_fba ,_fdce ...);_daf (_fdce ,_caf );return _fdce ,nil ;};type objectStructure struct{_bddf *_g .PdfObjectDictionary ;_eccc *_g .PdfObjectDictionary ;_cebg []*_g .PdfIndirectObject ;}; -// CleanUnusedResources represents an optimizer used to clean unused resources. -type CleanUnusedResources struct{};func _bfgf (_eba _fe .PdfObject )(string ,error ){_bfa :=_fe .TraceToDirectObject (_eba );switch _fadf :=_bfa .(type ){case *_fe .PdfObjectString :return _fadf .Str (),nil ;case *_fe .PdfObjectStream :_ffe ,_eca :=_fe .DecodeStream (_fadf ); -if _eca !=nil {return "",_eca ;};return string (_ffe ),nil ;};return "",_ga .Errorf ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072e\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0068\u006f\u006c\u0064\u0065\u0072\u0020\u0028\u0025\u0054\u0029",_bfa ); -};func _dda (_daee _fe .PdfObject )(_aeegc string ,_ffaf []_fe .PdfObject ){var _ece _cgg .Buffer ;switch _bgc :=_daee .(type ){case *_fe .PdfIndirectObject :_ffaf =append (_ffaf ,_bgc );_daee =_bgc .PdfObject ;};switch _gca :=_daee .(type ){case *_fe .PdfObjectStream :if _debb ,_ggac :=_fe .DecodeStream (_gca ); -_ggac ==nil {_ece .Write (_debb );_ffaf =append (_ffaf ,_gca );};case *_fe .PdfObjectArray :for _ ,_abda :=range _gca .Elements (){switch _aga :=_abda .(type ){case *_fe .PdfObjectStream :if _gabg ,_bfcc :=_fe .DecodeStream (_aga );_bfcc ==nil {_ece .Write (_gabg ); -_ffaf =append (_ffaf ,_aga );};};};};return _ece .String (),_ffaf ;}; +// Options describes PDF optimization parameters. +type Options struct{CombineDuplicateStreams bool ;CombineDuplicateDirectObjects bool ;ImageUpperPPI float64 ;ImageQuality int ;UseObjectStreams bool ;CombineIdenticalIndirectObjects bool ;CompressStreams bool ;CleanFonts bool ;SubsetFonts bool ;CleanContentstream bool ; +CleanUnusedResources bool ;}; -// Optimize optimizes PDF objects to decrease PDF size. -func (_ebfe *CombineDuplicateDirectObjects )Optimize (objects []_fe .PdfObject )(_afee []_fe .PdfObject ,_def error ){_ebd (objects );_ebe :=make (map[string ][]*_fe .PdfObjectDictionary );var _edef func (_ged *_fe .PdfObjectDictionary );_edef =func (_dcfg *_fe .PdfObjectDictionary ){for _ ,_fdfc :=range _dcfg .Keys (){_eab :=_dcfg .Get (_fdfc ); -if _cbfg ,_caaa :=_eab .(*_fe .PdfObjectDictionary );_caaa {_bfb :=_a .New ();_bfb .Write ([]byte (_cbfg .WriteString ()));_dfe :=string (_bfb .Sum (nil ));_ebe [_dfe ]=append (_ebe [_dfe ],_cbfg );_edef (_cbfg );};};};for _ ,_fafe :=range objects {_ffeb ,_ecc :=_fafe .(*_fe .PdfIndirectObject ); -if !_ecc {continue ;};if _gfgd ,_ecfd :=_ffeb .PdfObject .(*_fe .PdfObjectDictionary );_ecfd {_edef (_gfgd );};};_dcgf :=make ([]_fe .PdfObject ,0,len (_ebe ));_gbcd :=make (map[_fe .PdfObject ]_fe .PdfObject );for _ ,_cfed :=range _ebe {if len (_cfed )< 2{continue ; -};_ada :=_fe .MakeDict ();_ada .Merge (_cfed [0]);_fadg :=_fe .MakeIndirectObject (_ada );_dcgf =append (_dcgf ,_fadg );for _bbe :=0;_bbe < len (_cfed );_bbe ++{_gcd :=_cfed [_bbe ];_gbcd [_gcd ]=_fadg ;};};_afee =make ([]_fe .PdfObject ,len (objects )); -copy (_afee ,objects );_afee =append (_dcgf ,_afee ...);_ccbb (_afee ,_gbcd );return _afee ,nil ;}; +// Chain allows to use sequence of optimizers. +// It implements interface model.Optimizer. +type Chain struct{_dc []_ag .Optimizer }; // Optimize optimizes PDF objects to decrease PDF size. -func (_gb *Chain )Optimize (objects []_fe .PdfObject )(_gg []_fe .PdfObject ,_ba error ){_fd :=objects ;for _ ,_gaf :=range _gb ._cgd {_be ,_ce :=_gaf .Optimize (_fd );if _ce !=nil {_c .Log .Debug ("\u0045\u0052\u0052OR\u0020\u004f\u0070\u0074\u0069\u006d\u0069\u007a\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u002b\u0076",_ce ); -continue ;};_fd =_be ;};return _fd ,nil ;}; +func (_faf *Chain )Optimize (objects []_g .PdfObject )(_ge []_g .PdfObject ,_ae error ){_ec :=objects ;for _ ,_ac :=range _faf ._dc {_bd ,_bg :=_ac .Optimize (_ec );if _bg !=nil {_f .Log .Debug ("\u0045\u0052\u0052OR\u0020\u004f\u0070\u0074\u0069\u006d\u0069\u007a\u0061\u0074\u0069\u006f\u006e\u003a\u0020\u0025\u002b\u0076",_bg ); +continue ;};_ec =_bd ;};return _ec ,nil ;};func _aefc (_afbf *_ag .Image ,_cagd float64 )(*_ag .Image ,error ){_ecfc ,_eafe :=_afbf .ToGoImage ();if _eafe !=nil {return nil ,_eafe ;};var _cce _ce .Image ;_efcg ,_gaef :=_ecfc .(*_ce .Monochrome );if _gaef {if _eafe =_efcg .ResolveDecode (); +_eafe !=nil {return nil ,_eafe ;};_cce ,_eafe =_efcg .Scale (_cagd );if _eafe !=nil {return nil ,_eafe ;};}else {_gcdd :=int (_ff .RoundToEven (float64 (_afbf .Width )*_cagd ));_caa :=int (_ff .RoundToEven (float64 (_afbf .Height )*_cagd ));_cce ,_eafe =_ce .NewImage (_gcdd ,_caa ,int (_afbf .BitsPerComponent ),_afbf .ColorComponents ,nil ,nil ,nil ); +if _eafe !=nil {return nil ,_eafe ;};_c .CatmullRom .Scale (_cce ,_cce .Bounds (),_ecfc ,_ecfc .Bounds (),_c .Over ,&_c .Options {});};_edgd :=_cce .Base ();_gaba :=&_ag .Image {Width :int64 (_edgd .Width ),Height :int64 (_edgd .Height ),BitsPerComponent :int64 (_edgd .BitsPerComponent ),ColorComponents :_edgd .ColorComponents ,Data :_edgd .Data }; +_gaba .SetDecode (_edgd .Decode );_gaba .SetAlpha (_edgd .Alpha );return _gaba ,nil ;}; -// New creates a optimizers chain from options. -func New (options Options )*Chain {_fafec :=new (Chain );if options .CleanFonts ||options .SubsetFonts {_fafec .Append (&CleanFonts {Subset :options .SubsetFonts });};if options .CleanContentstream {_fafec .Append (new (CleanContentstream ));};if options .ImageUpperPPI > 0{_agbgc :=new (ImagePPI ); -_agbgc .ImageUpperPPI =options .ImageUpperPPI ;_fafec .Append (_agbgc );};if options .ImageQuality > 0{_bed :=new (Image );_bed .ImageQuality =options .ImageQuality ;_fafec .Append (_bed );};if options .CombineDuplicateDirectObjects {_fafec .Append (new (CombineDuplicateDirectObjects )); -};if options .CombineDuplicateStreams {_fafec .Append (new (CombineDuplicateStreams ));};if options .CombineIdenticalIndirectObjects {_fafec .Append (new (CombineIdenticalIndirectObjects ));};if options .UseObjectStreams {_fafec .Append (new (ObjectStreams )); -};if options .CompressStreams {_fafec .Append (new (CompressStreams ));};if options .CleanUnusedResources {_fafec .Append (new (CleanUnusedResources ));};return _fafec ;};func _cfa (_bdda []_fe .PdfObject )[]*imageInfo {_gccf :=_fe .PdfObjectName ("\u0053u\u0062\u0074\u0079\u0070\u0065"); -_ggb :=make (map[*_fe .PdfObjectStream ]struct{});var _fbg []*imageInfo ;for _ ,_ecac :=range _bdda {_edag ,_bbee :=_fe .GetStream (_ecac );if !_bbee {continue ;};if _ ,_fgaf :=_ggb [_edag ];_fgaf {continue ;};_ggb [_edag ]=struct{}{};_bbc :=_edag .PdfObjectDictionary .Get (_gccf ); -_eegf ,_bbee :=_fe .GetName (_bbc );if !_bbee ||string (*_eegf )!="\u0049\u006d\u0061g\u0065"{continue ;};_gcgf :=&imageInfo {Stream :_edag ,BitsPerComponent :8};if _gbbf ,_afc :=_fe .GetIntVal (_edag .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074")); -_afc {_gcgf .BitsPerComponent =_gbbf ;};if _geg ,_abdg :=_fe .GetIntVal (_edag .Get ("\u0057\u0069\u0064t\u0068"));_abdg {_gcgf .Width =_geg ;};if _eaad ,_fec :=_fe .GetIntVal (_edag .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_fec {_gcgf .Height =_eaad ; -};_gaef ,_cebb :=_af .NewPdfColorspaceFromPdfObject (_edag .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"));if _cebb !=nil {_c .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cebb );continue ;};if _gaef ==nil {_acg ,_eed :=_fe .GetName (_edag .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")); -if _eed {switch _acg .String (){case "\u0043\u0043\u0049\u0054\u0054\u0046\u0061\u0078\u0044e\u0063\u006f\u0064\u0065","J\u0042\u0049\u0047\u0032\u0044\u0065\u0063\u006f\u0064\u0065":_gaef =_af .NewPdfColorspaceDeviceGray ();_gcgf .BitsPerComponent =1; -};};};switch _edbd :=_gaef .(type ){case *_af .PdfColorspaceDeviceRGB :_gcgf .ColorComponents =3;case *_af .PdfColorspaceDeviceGray :_gcgf .ColorComponents =1;default:_c .Log .Debug ("\u004f\u0070\u0074\u0069\u006d\u0069\u007aa\u0074\u0069\u006fn\u0020\u0069\u0073 \u006e\u006ft\u0020\u0073\u0075\u0070\u0070\u006fr\u0074ed\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0025\u0054\u0020\u002d\u0020\u0073\u006b\u0069\u0070",_edbd ); -continue ;};_fbg =append (_fbg ,_gcgf );};return _fbg ;};type content struct{_ecg string ;_gcc *_af .PdfPageResources ;}; +// Optimize optimizes PDF objects to decrease PDF size. +func (_gaff *ImagePPI )Optimize (objects []_g .PdfObject )(_baf []_g .PdfObject ,_abbbc error ){if _gaff .ImageUpperPPI <=0{return objects ,nil ;};_ecd :=_gbgg (objects );if len (_ecd )==0{return objects ,nil ;};_adee :=make (map[_g .PdfObject ]struct{}); +for _ ,_bcec :=range _ecd {_aea :=_bcec .Stream .PdfObjectDictionary .Get ("\u0053\u004d\u0061s\u006b");_adee [_aea ]=struct{}{};};_faef :=make (map[*_g .PdfObjectStream ]*imageInfo );for _ ,_ffdf :=range _ecd {_faef [_ffdf .Stream ]=_ffdf ;};var _gdad *_g .PdfObjectDictionary ; +for _ ,_cad :=range objects {if _bfda ,_gga :=_g .GetDict (_cad );_gdad ==nil &&_gga {if _efa ,_ccda :=_g .GetName (_bfda .Get ("\u0054\u0079\u0070\u0065"));_ccda &&*_efa =="\u0043a\u0074\u0061\u006c\u006f\u0067"{_gdad =_bfda ;};};};if _gdad ==nil {return objects ,nil ; +};_fed ,_gbea :=_g .GetDict (_gdad .Get ("\u0050\u0061\u0067e\u0073"));if !_gbea {return objects ,nil ;};_gfad ,_bbcbg :=_g .GetArray (_fed .Get ("\u004b\u0069\u0064\u0073"));if !_bbcbg {return objects ,nil ;};for _ ,_bfgg :=range _gfad .Elements (){_feg :=make (map[string ]*imageInfo ); +_febd ,_fdea :=_g .GetDict (_bfgg );if !_fdea {continue ;};_ecb ,_ :=_agdb (_febd .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if len (_ecb )==0{continue ;};_bab ,_agg :=_g .GetDict (_febd .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); +if !_agg {continue ;};_egf ,_bdea :=_ag .NewPdfPageResourcesFromDict (_bab );if _bdea !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020-\u0020\u0069\u0067\u006e\u006fr\u0069\u006eg\u003a\u0020\u0025\u0076",_bdea ); +continue ;};_ggee ,_efca :=_g .GetDict (_bab .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074"));if !_efca {continue ;};_abbd :=_ggee .Keys ();for _ ,_bfbd :=range _abbd {if _eceb ,_gcbc :=_g .GetStream (_ggee .Get (_bfbd ));_gcbc {if _facd ,_eef :=_faef [_eceb ]; +_eef {_feg [string (_bfbd )]=_facd ;};};};_aaeg :=_fa .NewContentStreamParser (_ecb );_febg ,_bdea :=_aaeg .Parse ();if _bdea !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_bdea );continue ;};_addd :=_fa .NewContentStreamProcessor (*_febg ); +_addd .AddHandler (_fa .HandlerConditionEnumAllOperands ,"",func (_dfg *_fa .ContentStreamOperation ,_dfb _fa .GraphicsState ,_ebcc *_ag .PdfPageResources )error {switch _dfg .Operand {case "\u0044\u006f":if len (_dfg .Params )!=1{_f .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0044\u006f\u0020w\u0069\u0074\u0068\u0020\u006c\u0065\u006e\u0028\u0070\u0061ra\u006d\u0073\u0029 \u0021=\u0020\u0031"); +return nil ;};_ggff ,_abec :=_g .GetName (_dfg .Params [0]);if !_abec {_f .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0044\u006f\u0020\u0077\u0069\u0074\u0068\u0020\u006e\u006f\u006e\u0020\u004e\u0061\u006d\u0065\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072"); +return nil ;};if _bfgc ,_cdda :=_feg [string (*_ggff )];_cdda {_bgd :=_dfb .CTM .ScalingFactorX ();_feeb :=_dfb .CTM .ScalingFactorY ();_gfadf ,_cecd :=_bgd /72.0,_feeb /72.0;_edf ,_faefe :=float64 (_bfgc .Width )/_gfadf ,float64 (_bfgc .Height )/_cecd ; +if _gfadf ==0||_cecd ==0{_edf =72.0;_faefe =72.0;};_bfgc .PPI =_ff .Max (_bfgc .PPI ,_edf );_bfgc .PPI =_ff .Max (_bfgc .PPI ,_faefe );};};return nil ;});_bdea =_addd .Process (_egf );if _bdea !=nil {_f .Log .Debug ("E\u0052\u0052\u004f\u0052 p\u0072o\u0063\u0065\u0073\u0073\u0069n\u0067\u003a\u0020\u0025\u002b\u0076",_bdea ); +continue ;};};for _ ,_baba :=range _ecd {if _ ,_fedb :=_adee [_baba .Stream ];_fedb {continue ;};if _baba .PPI <=_gaff .ImageUpperPPI {continue ;};_aadd ,_aabfa :=_ag .NewXObjectImageFromStream (_baba .Stream );if _aabfa !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aabfa ); +continue ;};var _caea imageModifications ;_caea .Scale =_gaff .ImageUpperPPI /_baba .PPI ;if _baba .BitsPerComponent ==1&&_baba .ColorComponents ==1{_bgcd :=_ff .Round (_baba .PPI /_gaff .ImageUpperPPI );_fdf :=_ce .NextPowerOf2 (uint (_bgcd ));if _ce .InDelta (float64 (_fdf ),1/_caea .Scale ,0.3){_caea .Scale =float64 (1)/float64 (_fdf ); +};if _ ,_eff :=_aadd .Filter .(*_g .JBIG2Encoder );!_eff {_caea .Encoding =_g .NewJBIG2Encoder ();};};if _aabfa =_fbc (_aadd ,_caea );_aabfa !=nil {_f .Log .Debug ("\u0045\u0072\u0072\u006f\u0072 \u0073\u0063\u0061\u006c\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u006be\u0065\u0070\u0020\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_aabfa ); +continue ;};_caea .Encoding =nil ;if _fagc ,_gcbg :=_g .GetStream (_baba .Stream .PdfObjectDictionary .Get ("\u0053\u004d\u0061s\u006b"));_gcbg {_cefc ,_ded :=_ag .NewXObjectImageFromStream (_fagc );if _ded !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_ded ); +continue ;};if _ded =_fbc (_cefc ,_caea );_ded !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_ded );continue ;};};};return objects ,nil ;};func _gbgg (_eddda []_g .PdfObject )[]*imageInfo {_fcfb :=_g .PdfObjectName ("\u0053u\u0062\u0074\u0079\u0070\u0065"); +_efb :=make (map[*_g .PdfObjectStream ]struct{});var _baa []*imageInfo ;for _ ,_edde :=range _eddda {_fgcb ,_bfb :=_g .GetStream (_edde );if !_bfb {continue ;};if _ ,_ceb :=_efb [_fgcb ];_ceb {continue ;};_efb [_fgcb ]=struct{}{};_afb :=_fgcb .PdfObjectDictionary .Get (_fcfb ); +_eda ,_bfb :=_g .GetName (_afb );if !_bfb ||string (*_eda )!="\u0049\u006d\u0061g\u0065"{continue ;};_bbfe :=&imageInfo {Stream :_fgcb ,BitsPerComponent :8};if _cbdb ,_cffc :=_g .GetIntVal (_fgcb .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074")); +_cffc {_bbfe .BitsPerComponent =_cbdb ;};if _fgbe ,_adb :=_g .GetIntVal (_fgcb .Get ("\u0057\u0069\u0064t\u0068"));_adb {_bbfe .Width =_fgbe ;};if _edbg ,_geda :=_g .GetIntVal (_fgcb .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_geda {_bbfe .Height =_edbg ; +};_ffb ,_ggc :=_ag .NewPdfColorspaceFromPdfObject (_fgcb .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"));if _ggc !=nil {_f .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_ggc );continue ;};if _ffb ==nil {_dgff ,_fgd :=_g .GetName (_fgcb .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")); +if _fgd {switch _dgff .String (){case "\u0043\u0043\u0049\u0054\u0054\u0046\u0061\u0078\u0044e\u0063\u006f\u0064\u0065","J\u0042\u0049\u0047\u0032\u0044\u0065\u0063\u006f\u0064\u0065":_ffb =_ag .NewPdfColorspaceDeviceGray ();_bbfe .BitsPerComponent =1; +};};};switch _caeb :=_ffb .(type ){case *_ag .PdfColorspaceDeviceRGB :_bbfe .ColorComponents =3;case *_ag .PdfColorspaceDeviceGray :_bbfe .ColorComponents =1;default:_f .Log .Debug ("\u004f\u0070\u0074\u0069\u006d\u0069\u007aa\u0074\u0069\u006fn\u0020\u0069\u0073 \u006e\u006ft\u0020\u0073\u0075\u0070\u0070\u006fr\u0074ed\u0020\u0066\u006f\u0072\u0020\u0063\u006f\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0025\u0054\u0020\u002d\u0020\u0073\u006b\u0069\u0070",_caeb ); +continue ;};_baa =append (_baa ,_bbfe );};return _baa ;};func _fgf (_aab _g .PdfObject )[]content {if _aab ==nil {return nil ;};_abe ,_ecg :=_g .GetArray (_aab );if !_ecg {_f .Log .Debug ("\u0041\u006e\u006e\u006fts\u0020\u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079"); +return nil ;};var _ece []content ;for _ ,_bge :=range _abe .Elements (){_eae ,_gcf :=_g .GetDict (_bge );if !_gcf {_f .Log .Debug ("I\u0067\u006e\u006f\u0072\u0069\u006eg\u0020\u006e\u006f\u006e\u002d\u0064i\u0063\u0074\u0020\u0065\u006c\u0065\u006de\u006e\u0074\u0020\u0069\u006e\u0020\u0041\u006e\u006e\u006ft\u0073"); +continue ;};_fdbc ,_gcf :=_g .GetDict (_eae .Get ("\u0041\u0050"));if !_gcf {_f .Log .Debug ("\u004e\u006f\u0020\u0041P \u0065\u006e\u0074\u0072\u0079\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067");continue ;};_bff :=_g .TraceToDirectObject (_fdbc .Get ("\u004e")); +if _bff ==nil {_f .Log .Debug ("N\u006f\u0020\u004e\u0020en\u0074r\u0079\u0020\u002d\u0020\u0073k\u0069\u0070\u0070\u0069\u006e\u0067");continue ;};var _eadc *_g .PdfObjectStream ;switch _fbb :=_bff .(type ){case *_g .PdfObjectDictionary :_edg ,_aabf :=_g .GetName (_eae .Get ("\u0041\u0053")); +if !_aabf {_f .Log .Debug ("\u004e\u006f\u0020\u0041S \u0065\u006e\u0074\u0072\u0079\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067");continue ;};_eadc ,_aabf =_g .GetStream (_fbb .Get (*_edg ));if !_aabf {_f .Log .Debug ("\u0046o\u0072\u006d\u0020\u006eo\u0074\u0020\u0066\u006f\u0075n\u0064 \u002d \u0073\u006b\u0069\u0070\u0070\u0069\u006eg"); +continue ;};case *_g .PdfObjectStream :_eadc =_fbb ;};if _eadc ==nil {_f .Log .Debug ("\u0046\u006f\u0072m\u0020\u006e\u006f\u0074 \u0066\u006f\u0075\u006e\u0064\u0020\u0028n\u0069\u006c\u0029\u0020\u002d\u0020\u0073\u006b\u0069\u0070\u0070\u0069\u006e\u0067"); +continue ;};_afgb ,_ddd :=_ag .NewXObjectFormFromStream (_eadc );if _ddd !=nil {_f .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020l\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0066\u006f\u0072\u006d\u003a\u0020%\u0076\u0020\u002d\u0020\u0069\u0067\u006eo\u0072\u0069\u006e\u0067",_ddd ); +continue ;};_cdd ,_ddd :=_afgb .GetContentStream ();if _ddd !=nil {_f .Log .Debug ("E\u0072\u0072\u006f\u0072\u0020\u0064e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0063\u006fn\u0074\u0065\u006et\u0073:\u0020\u0025\u0076",_ddd );continue ;};_ece =append (_ece ,content {_beae :string (_cdd ),_daee :_afgb .Resources }); +};return _ece ;}; -// Append appends optimizers to the chain. -func (_fb *Chain )Append (optimizers ..._af .Optimizer ){_fb ._cgd =append (_fb ._cgd ,optimizers ...)}; +// Image optimizes images by rewrite images into JPEG format with quality equals to ImageQuality. +// TODO(a5i): Add support for inline images. +// It implements interface model.Optimizer. +type Image struct{ImageQuality int ;};func _gdc (_ffcbb []_g .PdfObject ){for _cafbc ,_caba :=range _ffcbb {switch _babe :=_caba .(type ){case *_g .PdfIndirectObject :_babe .ObjectNumber =int64 (_cafbc +1);_babe .GenerationNumber =0;case *_g .PdfObjectStream :_babe .ObjectNumber =int64 (_cafbc +1); +_babe .GenerationNumber =0;case *_g .PdfObjectStreams :_babe .ObjectNumber =int64 (_cafbc +1);_babe .GenerationNumber =0;};};};func _efe (_dfde *_g .PdfObjectStream ,_bdc []rune ,_gcb []_fd .GlyphIndex )error {_dfde ,_cab :=_g .GetStream (_dfde );if !_cab {_f .Log .Debug ("\u0045\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u002d\u002d\u0020\u0041\u0042\u004f\u0052T\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069\u006e\u0067"); +return _cf .New ("\u0066\u006f\u006e\u0074fi\u006c\u0065\u0032\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_efd ,_bccg :=_g .DecodeStream (_dfde );if _bccg !=nil {_f .Log .Debug ("\u0044\u0065c\u006f\u0064\u0065 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_bccg ); +return _bccg ;};_cec ,_bccg :=_fd .Parse (_af .NewReader (_efd ));if _bccg !=nil {_f .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0020f\u006f\u006e\u0074",len (_dfde .Stream )); +return _bccg ;};_gaf :=_gcb ;if len (_bdc )> 0{_cd :=_cec .LookupRunes (_bdc );_gaf =append (_gaf ,_cd ...);};_cec ,_bccg =_cec .SubsetKeepIndices (_gaf );if _bccg !=nil {_f .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020s\u0075\u0062\u0073\u0065\u0074t\u0069n\u0067 \u0066\u006f\u006e\u0074\u003a\u0020\u0025v",_bccg ); +return _bccg ;};var _cba _af .Buffer ;_bccg =_cec .Write (&_cba );if _bccg !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004fR \u0057\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076",_bccg );return _bccg ;};if _cba .Len ()> len (_efd ){_f .Log .Debug ("\u0052\u0065-\u0077\u0072\u0069\u0074\u0074\u0065\u006e\u0020\u0066\u006f\u006e\u0074\u0020\u0069\u0073\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u002d\u0020\u0073\u006b\u0069\u0070"); +return nil ;};_bfd ,_bccg :=_g .MakeStream (_cba .Bytes (),_g .NewFlateEncoder ());if _bccg !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004fR \u0057\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076",_bccg );return _bccg ; +};*_dfde =*_bfd ;_dfde .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_g .MakeInteger (int64 (_cba .Len ())));return nil ;};func _gfab (_dbe []_g .PdfObject )objectStructure {_beag :=objectStructure {};_ccgc :=false ;for _ ,_baag :=range _dbe {switch _dde :=_baag .(type ){case *_g .PdfIndirectObject :_gefg ,_ffg :=_g .GetDict (_dde ); +if !_ffg {continue ;};_ddaag ,_ffg :=_g .GetName (_gefg .Get ("\u0054\u0079\u0070\u0065"));if !_ffg {continue ;};switch _ddaag .String (){case "\u0043a\u0074\u0061\u006c\u006f\u0067":_beag ._bddf =_gefg ;_ccgc =true ;};};if _ccgc {break ;};};if !_ccgc {return _beag ; +};_baagg ,_ecca :=_g .GetDict (_beag ._bddf .Get ("\u0050\u0061\u0067e\u0073"));if !_ecca {return _beag ;};_beag ._eccc =_baagg ;_bcdf ,_ecca :=_g .GetArray (_baagg .Get ("\u004b\u0069\u0064\u0073"));if !_ecca {return _beag ;};for _ ,_bfgd :=range _bcdf .Elements (){_fabf ,_dbcf :=_g .GetIndirect (_bfgd ); +if !_dbcf {break ;};_beag ._cebg =append (_beag ._cebg ,_fabf );};return _beag ;}; -// Optimize implements Optimizer interface. -func (_abb *CleanUnusedResources )Optimize (objects []_fe .PdfObject )(_ad []_fe .PdfObject ,_cdf error ){_cggc ,_cdf :=_aa (objects );if _cdf !=nil {return nil ,_cdf ;};_daf :=[]_fe .PdfObject {};for _ ,_fbea :=range objects {_ ,_cgc :=_cggc [_fbea ]; -if _cgc {continue ;};_daf =append (_daf ,_fbea );};return _daf ,nil ;};type objectStructure struct{_deed *_fe .PdfObjectDictionary ;_acfb *_fe .PdfObjectDictionary ;_egaa []*_fe .PdfIndirectObject ;}; +// CleanUnusedResources represents an optimizer used to clean unused resources. +type CleanUnusedResources struct{};func _bec (_gddc _g .PdfObject ,_fgc map[_g .PdfObject ]struct{})error {if _gag ,_dgcd :=_gddc .(*_g .PdfIndirectObject );_dgcd {_fgc [_gddc ]=struct{}{};_bca :=_bec (_gag .PdfObject ,_fgc );if _bca !=nil {return _bca ; +};return nil ;};if _bag ,_bfee :=_gddc .(*_g .PdfObjectStream );_bfee {_fgc [_bag ]=struct{}{};_bed :=_bec (_bag .PdfObjectDictionary ,_fgc );if _bed !=nil {return _bed ;};return nil ;};if _gabg ,_gefe :=_gddc .(*_g .PdfObjectDictionary );_gefe {for _ ,_aefe :=range _gabg .Keys (){_bgg :=_gabg .Get (_aefe ); +_ =_bgg ;if _dfdg ,_gcc :=_bgg .(*_g .PdfObjectReference );_gcc {_bgg =_dfdg .Resolve ();_gabg .Set (_aefe ,_bgg );};if _aefe !="\u0050\u0061\u0072\u0065\u006e\u0074"{if _gfa :=_bec (_bgg ,_fgc );_gfa !=nil {return _gfa ;};};};return nil ;};if _dgfd ,_ggg :=_gddc .(*_g .PdfObjectArray ); +_ggg {if _dgfd ==nil {return _cf .New ("\u0061\u0072\u0072a\u0079\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};for _gae ,_gff :=range _dgfd .Elements (){if _ced ,_abga :=_gff .(*_g .PdfObjectReference );_abga {_gff =_ced .Resolve ();_dgfd .Set (_gae ,_gff ); +};if _dbce :=_bec (_gff ,_fgc );_dbce !=nil {return _dbce ;};};return nil ;};return nil ;}; -// CombineDuplicateDirectObjects combines duplicated direct objects by its data hash. -// It implements interface model.Optimizer. -type CombineDuplicateDirectObjects struct{}; +// GetOptimizers gets the list of optimizers in chain `c`. +func (_gc *Chain )GetOptimizers ()[]_ag .Optimizer {return _gc ._dc };type imageModifications struct{Scale float64 ;Encoding _g .StreamEncoder ;};func _aa (_bcc *_g .PdfObjectStream )error {_deg ,_ca :=_g .DecodeStream (_bcc );if _ca !=nil {return _ca ; +};_fe :=_fa .NewContentStreamParser (string (_deg ));_def ,_ca :=_fe .Parse ();if _ca !=nil {return _ca ;};_def =_afg (_def );_dd :=_def .Bytes ();if len (_dd )>=len (_deg ){return nil ;};_cfc ,_ca :=_g .MakeStream (_def .Bytes (),_g .NewFlateEncoder ()); +if _ca !=nil {return _ca ;};_bcc .Stream =_cfc .Stream ;_bcc .Merge (_cfc .PdfObjectDictionary );return nil ;}; // Optimize optimizes PDF objects to decrease PDF size. -func (_aea *CompressStreams )Optimize (objects []_fe .PdfObject )(_ebc []_fe .PdfObject ,_babc error ){_ebc =make ([]_fe .PdfObject ,len (objects ));copy (_ebc ,objects );for _ ,_ddgd :=range objects {_gcdc ,_gdff :=_fe .GetStream (_ddgd );if !_gdff {continue ; -};if _gged :=_gcdc .Get ("\u0046\u0069\u006c\u0074\u0065\u0072");_gged !=nil {if _ ,_bac :=_fe .GetName (_gged );_bac {continue ;};if _gec ,_fcaa :=_fe .GetArray (_gged );_fcaa &&_gec .Len ()> 0{continue ;};};_cbd :=_fe .NewFlateEncoder ();var _cdb []byte ; -_cdb ,_babc =_cbd .EncodeBytes (_gcdc .Stream );if _babc !=nil {return _ebc ,_babc ;};_bgd :=_cbd .MakeStreamDict ();if len (_cdb )+len (_bgd .WriteString ())< len (_gcdc .Stream ){_gcdc .Stream =_cdb ;_gcdc .PdfObjectDictionary .Merge (_bgd );_gcdc .PdfObjectDictionary .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_fe .MakeInteger (int64 (len (_gcdc .Stream )))); -};};return _ebc ,nil ;};func _dff (_ddeg _fe .PdfObject ,_caf map[_fe .PdfObject ]struct{})error {if _aab ,_ffa :=_ddeg .(*_fe .PdfIndirectObject );_ffa {_caf [_ddeg ]=struct{}{};_bdd :=_dff (_aab .PdfObject ,_caf );if _bdd !=nil {return _bdd ;};return nil ; -};if _efg ,_gbf :=_ddeg .(*_fe .PdfObjectStream );_gbf {_caf [_efg ]=struct{}{};_gbdf :=_dff (_efg .PdfObjectDictionary ,_caf );if _gbdf !=nil {return _gbdf ;};return nil ;};if _efea ,_cbab :=_ddeg .(*_fe .PdfObjectDictionary );_cbab {for _ ,_egfdb :=range _efea .Keys (){_gefd :=_efea .Get (_egfdb ); -_ =_gefd ;if _bbd ,_cffd :=_gefd .(*_fe .PdfObjectReference );_cffd {_gefd =_bbd .Resolve ();_efea .Set (_egfdb ,_gefd );};if _egfdb !="\u0050\u0061\u0072\u0065\u006e\u0074"{if _ggfb :=_dff (_gefd ,_caf );_ggfb !=nil {return _ggfb ;};};};return nil ;}; -if _ede ,_efgf :=_ddeg .(*_fe .PdfObjectArray );_efgf {if _ede ==nil {return _gda .New ("\u0061\u0072\u0072a\u0079\u0020\u0069\u0073\u0020\u006e\u0069\u006c");};for _eac ,_dcgg :=range _ede .Elements (){if _afa ,_bcaf :=_dcgg .(*_fe .PdfObjectReference ); -_bcaf {_dcgg =_afa .Resolve ();_ede .Set (_eac ,_dcgg );};if _fbec :=_dff (_dcgg ,_caf );_fbec !=nil {return _fbec ;};};return nil ;};return nil ;};func _ccbb (_gdee []_fe .PdfObject ,_cda map[_fe .PdfObject ]_fe .PdfObject ){if len (_cda )==0{return ; -};for _ggce ,_cgag :=range _gdee {if _cgec ,_ddb :=_cda [_cgag ];_ddb {_gdee [_ggce ]=_cgec ;continue ;};_cda [_cgag ]=_cgag ;switch _bfbb :=_cgag .(type ){case *_fe .PdfObjectArray :_edf :=make ([]_fe .PdfObject ,_bfbb .Len ());copy (_edf ,_bfbb .Elements ()); -_ccbb (_edf ,_cda );for _eecd ,_cgf :=range _edf {_bfbb .Set (_eecd ,_cgf );};case *_fe .PdfObjectStreams :_ccbb (_bfbb .Elements (),_cda );case *_fe .PdfObjectStream :_cebe :=[]_fe .PdfObject {_bfbb .PdfObjectDictionary };_ccbb (_cebe ,_cda );_bfbb .PdfObjectDictionary =_cebe [0].(*_fe .PdfObjectDictionary ); -case *_fe .PdfObjectDictionary :_fdb :=_bfbb .Keys ();_deef :=make ([]_fe .PdfObject ,len (_fdb ));for _eadc ,_dcgb :=range _fdb {_deef [_eadc ]=_bfbb .Get (_dcgb );};_ccbb (_deef ,_cda );for _deba ,_afcg :=range _fdb {_bfbb .Set (_afcg ,_deef [_deba ]); -};case *_fe .PdfIndirectObject :_dgaa :=[]_fe .PdfObject {_bfbb .PdfObject };_ccbb (_dgaa ,_cda );_bfbb .PdfObject =_dgaa [0];};};}; +func (_fcd *CombineIdenticalIndirectObjects )Optimize (objects []_g .PdfObject )(_dbd []_g .PdfObject ,_dcec error ){_gdc (objects );_bfg :=make (map[_g .PdfObject ]_g .PdfObject );_ddaa :=make (map[_g .PdfObject ]struct{});_bdd :=make (map[string ][]*_g .PdfIndirectObject ); +for _ ,_cgda :=range objects {_bad ,_agbf :=_cgda .(*_g .PdfIndirectObject );if !_agbf {continue ;};if _bcdb ,_ggf :=_bad .PdfObject .(*_g .PdfObjectDictionary );_ggf {if _deea ,_abef :=_bcdb .Get ("\u0054\u0079\u0070\u0065").(*_g .PdfObjectName );_abef &&*_deea =="\u0050\u0061\u0067\u0065"{continue ; +};_ffcb :=_be .New ();_ffcb .Write ([]byte (_bcdb .WriteString ()));_efg :=string (_ffcb .Sum (nil ));_bdd [_efg ]=append (_bdd [_efg ],_bad );};};for _ ,_dcb :=range _bdd {if len (_dcb )< 2{continue ;};_cdf :=_dcb [0];for _dfeb :=1;_dfeb < len (_dcb ); +_dfeb ++{_cgf :=_dcb [_dfeb ];_bfg [_cgf ]=_cdf ;_ddaa [_cgf ]=struct{}{};};};_dbd =make ([]_g .PdfObject ,0,len (objects )-len (_ddaa ));for _ ,_caeg :=range objects {if _ ,_bcdc :=_ddaa [_caeg ];_bcdc {continue ;};_dbd =append (_dbd ,_caeg );};_daf (_dbd ,_bfg ); +return _dbd ,nil ;}; // CombineIdenticalIndirectObjects combines identical indirect objects. // It implements interface model.Optimizer. type CombineIdenticalIndirectObjects struct{}; -// ImagePPI optimizes images by scaling images such that the PPI (pixels per inch) is never higher than ImageUpperPPI. -// TODO(a5i): Add support for inline images. -// It implements interface model.Optimizer. -type ImagePPI struct{ImageUpperPPI float64 ;};func _aa (_bab []_fe .PdfObject )(map[_fe .PdfObject ]struct{},error ){_cbb :=_cbbg (_bab );_fee :=_cbb ._egaa ;_fba :=make (map[_fe .PdfObject ]struct{});_fgc :=_abdb (_fee );for _ ,_bde :=range _fee {_bcb ,_eeg :=_fe .GetDict (_bde .PdfObject ); -if !_eeg {continue ;};_affc ,_eeg :=_fe .GetDict (_bcb .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s"));if !_eeg {continue ;};_bbf :=_fgc ["\u0058O\u0062\u006a\u0065\u0063\u0074"];_dgf ,_eeg :=_fe .GetDict (_affc .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074")); -if _eeg {_aaf :=_fea (_dgf );for _ ,_gfc :=range _aaf {if _fgdf (_gfc ,_bbf ){continue ;};_gae :=*_fe .MakeName (_gfc );_bfd :=_dgf .Get (_gae );_fba [_bfd ]=struct{}{};_dgf .Remove (_gae );_bgb :=_dff (_bfd ,_fba );if _bgb !=nil {_c .Log .Debug ("\u0066\u0061\u0069\u006ce\u0064\u0020\u0074\u006f\u0020\u0074\u0072\u0061\u0076\u0065r\u0073e\u0020\u006f\u0062\u006a\u0065\u0063\u0074 \u0025\u0076",_bfd ); -};};};_afd ,_eeg :=_fe .GetDict (_affc .Get ("\u0046\u006f\u006e\u0074"));_fce :=_fgc ["\u0046\u006f\u006e\u0074"];if _eeg {_eaef :=_fea (_afd );for _ ,_dbg :=range _eaef {if _fgdf (_dbg ,_fce ){continue ;};_bdee :=*_fe .MakeName (_dbg );_dbe :=_afd .Get (_bdee ); -_fba [_dbe ]=struct{}{};_afd .Remove (_bdee );_aaa :=_dff (_dbe ,_fba );if _aaa !=nil {_c .Log .Debug ("\u0046\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074 %\u0076\u000a",_dbe ); -};};};_eea ,_eeg :=_fe .GetDict (_affc .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if _eeg {_cebd :=_fea (_eea );_gbee :=_fgc ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"];for _ ,_cfde :=range _cebd {if _fgdf (_cfde ,_gbee ){continue ;};_aaad :=*_fe .MakeName (_cfde ); -_caa :=_eea .Get (_aaad );_fba [_caa ]=struct{}{};_eea .Remove (_aaad );_aag :=_dff (_caa ,_fba );if _aag !=nil {_c .Log .Debug ("\u0066\u0061i\u006c\u0065\u0064\u0020\u0074\u006f\u0020\u0074\u0072\u0061\u0076\u0065\u0072\u0073\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074 %\u0076\u000a",_caa ); -};};};};return _fba ,nil ;};func _ccdb (_bff *_fe .PdfObjectStream ,_eag []rune ,_agbg []_gc .GlyphIndex )error {_bff ,_fbf :=_fe .GetStream (_bff );if !_fbf {_c .Log .Debug ("\u0045\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u006e\u006f\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u002d\u002d\u0020\u0041\u0042\u004f\u0052T\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0074\u0069\u006e\u0067"); -return _gda .New ("\u0066\u006f\u006e\u0074fi\u006c\u0065\u0032\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064");};_gbcfd ,_fbe :=_fe .DecodeStream (_bff );if _fbe !=nil {_c .Log .Debug ("\u0044\u0065c\u006f\u0064\u0065 \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_fbe ); -return _fbe ;};_cbgb ,_fbe :=_gc .Parse (_cgg .NewReader (_gbcfd ));if _fbe !=nil {_c .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069n\u0067\u0020\u0025\u0064\u0020\u0062\u0079\u0074\u0065\u0020f\u006f\u006e\u0074",len (_bff .Stream )); -return _fbe ;};_cfdf :=_agbg ;if len (_eag )> 0{_ecb :=_cbgb .LookupRunes (_eag );_cfdf =append (_cfdf ,_ecb ...);};_cbgb ,_fbe =_cbgb .SubsetKeepIndices (_cfdf );if _fbe !=nil {_c .Log .Debug ("\u0045R\u0052\u004f\u0052\u0020s\u0075\u0062\u0073\u0065\u0074t\u0069n\u0067 \u0066\u006f\u006e\u0074\u003a\u0020\u0025v",_fbe ); -return _fbe ;};var _fabb _cgg .Buffer ;_fbe =_cbgb .Write (&_fabb );if _fbe !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004fR \u0057\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076",_fbe );return _fbe ;};if _fabb .Len ()> len (_gbcfd ){_c .Log .Debug ("\u0052\u0065-\u0077\u0072\u0069\u0074\u0074\u0065\u006e\u0020\u0066\u006f\u006e\u0074\u0020\u0069\u0073\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u002d\u0020\u0073\u006b\u0069\u0070"); -return nil ;};_gfg ,_fbe :=_fe .MakeStream (_fabb .Bytes (),_fe .NewFlateEncoder ());if _fbe !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004fR \u0057\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076",_fbe );return _fbe ; -};*_bff =*_gfg ;_bff .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_fe .MakeInteger (int64 (_fabb .Len ())));return nil ;}; - // Optimize optimizes PDF objects to decrease PDF size. -func (_feec *CombineDuplicateStreams )Optimize (objects []_fe .PdfObject )(_gcf []_fe .PdfObject ,_gbfa error ){_fcd :=make (map[_fe .PdfObject ]_fe .PdfObject );_acca :=make (map[_fe .PdfObject ]struct{});_gbca :=make (map[string ][]*_fe .PdfObjectStream ); -for _ ,_bdec :=range objects {if _bee ,_ege :=_bdec .(*_fe .PdfObjectStream );_ege {_gffd :=_a .New ();_gffd .Write (_bee .Stream );_gffd .Write ([]byte (_bee .PdfObjectDictionary .WriteString ()));_edg :=string (_gffd .Sum (nil ));_gbca [_edg ]=append (_gbca [_edg ],_bee ); -};};for _ ,_gbdc :=range _gbca {if len (_gbdc )< 2{continue ;};_cfca :=_gbdc [0];for _fef :=1;_fef < len (_gbdc );_fef ++{_agf :=_gbdc [_fef ];_fcd [_agf ]=_cfca ;_acca [_agf ]=struct{}{};};};_gcf =make ([]_fe .PdfObject ,0,len (objects )-len (_acca )); -for _ ,_dbc :=range objects {if _ ,_ebac :=_acca [_dbc ];_ebac {continue ;};_gcf =append (_gcf ,_dbc );};_ccbb (_gcf ,_fcd );return _gcf ,nil ;};func _abdb (_bec []*_fe .PdfIndirectObject )map[string ][]string {_beg :=map[string ][]string {};for _ ,_ddef :=range _bec {_ecf ,_dcbf :=_fe .GetDict (_ddef .PdfObject ); -if !_dcbf {continue ;};_gdd :=_ecf .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073");_egad :=_fe .TraceToDirectObject (_gdd );var _dgfb []string ;if _fde ,_afb :=_egad .(*_fe .PdfObjectArray );_afb {for _ ,_fbd :=range _fde .Elements (){_acf ,_fadc :=_bfgf (_fbd ); -if _fadc !=nil {continue ;};_dgfb =append (_dgfb ,_acf );};};_gaeg :=_e .Join (_dgfb ,"\u0020");_dcg :=_b .NewContentStreamParser (_gaeg );_abf ,_gcb :=_dcg .Parse ();if _gcb !=nil {continue ;};for _ ,_dfa :=range *_abf {_bcef :=_dfa .Operand ;_geb :=_dfa .Params ; -switch _bcef {case "\u0044\u006f":_edaa :=_geb [0].String ();if _ ,_dae :=_beg ["\u0058O\u0062\u006a\u0065\u0063\u0074"];!_dae {_beg ["\u0058O\u0062\u006a\u0065\u0063\u0074"]=[]string {_edaa };}else {_beg ["\u0058O\u0062\u006a\u0065\u0063\u0074"]=append (_beg ["\u0058O\u0062\u006a\u0065\u0063\u0074"],_edaa ); -};case "\u0054\u0066":_bagf :=_geb [0].String ();if _ ,_bebb :=_beg ["\u0046\u006f\u006e\u0074"];!_bebb {_beg ["\u0046\u006f\u006e\u0074"]=[]string {_bagf };}else {_beg ["\u0046\u006f\u006e\u0074"]=append (_beg ["\u0046\u006f\u006e\u0074"],_bagf );};case "\u0067\u0073":_fac :=_geb [0].String (); -if _ ,_ebf :=_beg ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"];!_ebf {_beg ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"]=[]string {_fac };}else {_beg ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"]=append (_beg ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"],_fac ); -};};};};return _beg ;}; +func (_fae *Image )Optimize (objects []_g .PdfObject )(_ebff []_g .PdfObject ,_gaedf error ){if _fae .ImageQuality <=0{return objects ,nil ;};_gbgd :=_gbgg (objects );if len (_gbgd )==0{return objects ,nil ;};_cddb :=make (map[_g .PdfObject ]_g .PdfObject ); +_abda :=make (map[_g .PdfObject ]struct{});for _ ,_cecf :=range _gbgd {_gcfed :=_cecf .Stream .Get ("\u0053\u004d\u0061s\u006b");_abda [_gcfed ]=struct{}{};};for _gfg ,_bcde :=range _gbgd {_defa :=_bcde .Stream ;if _ ,_fcdg :=_abda [_defa ];_fcdg {continue ; +};_fce ,_aaf :=_ag .NewXObjectImageFromStream (_defa );if _aaf !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aaf );continue ;};switch _fce .Filter .(type ){case *_g .JBIG2Encoder :continue ;case *_g .CCITTFaxEncoder :continue ; +};_edc ,_aaf :=_fce .ToImage ();if _aaf !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aaf );continue ;};_dgac :=_g .NewDCTEncoder ();_dgac .ColorComponents =_edc .ColorComponents ;_dgac .Quality =_fae .ImageQuality ; +_dgac .BitsPerComponent =_bcde .BitsPerComponent ;_dgac .Width =_bcde .Width ;_dgac .Height =_bcde .Height ;_dddc ,_aaf :=_dgac .EncodeBytes (_edc .Data );if _aaf !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aaf ); +continue ;};var _gad _g .StreamEncoder ;_gad =_dgac ;{_ebfe :=_g .NewFlateEncoder ();_acgc :=_g .NewMultiEncoder ();_acgc .AddEncoder (_ebfe );_acgc .AddEncoder (_dgac );_cdc ,_fdcea :=_acgc .EncodeBytes (_edc .Data );if _fdcea !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_fdcea ); +continue ;};if len (_cdc )< len (_dddc ){_f .Log .Trace ("\u004d\u0075\u006c\u0074\u0069\u0020\u0065\u006e\u0063\u0020\u0069\u006d\u0070\u0072\u006f\u0076\u0065\u0073\u003a\u0020\u0025\u0064\u0020\u0074o\u0020\u0025\u0064\u0020\u0028o\u0072\u0069g\u0020\u0025\u0064\u0029",len (_dddc ),len (_cdc ),len (_defa .Stream )); +_dddc =_cdc ;_gad =_acgc ;};};_gbc :=len (_defa .Stream );if _gbc < len (_dddc ){continue ;};_ecf :=&_g .PdfObjectStream {Stream :_dddc };_ecf .PdfObjectReference =_defa .PdfObjectReference ;_ecf .PdfObjectDictionary =_g .MakeDict ();_ecf .Merge (_defa .PdfObjectDictionary ); +_ecf .Merge (_gad .MakeStreamDict ());_ecf .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_g .MakeInteger (int64 (len (_dddc ))));_cddb [_defa ]=_ecf ;_gbgd [_gfg ].Stream =_ecf ;};_ebff =make ([]_g .PdfObject ,len (objects ));copy (_ebff ,objects );_daf (_ebff ,_cddb ); +return _ebff ,nil ;};func _ddde (_dgc []*_g .PdfIndirectObject )map[string ][]string {_afgf :=map[string ][]string {};for _ ,_aed :=range _dgc {_cffe ,_ffaf :=_g .GetDict (_aed .PdfObject );if !_ffaf {continue ;};_beb :=_cffe .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"); +_fgbf :=_g .TraceToDirectObject (_beb );var _gafe []string ;if _bcce ,_cfdf :=_fgbf .(*_g .PdfObjectArray );_cfdf {for _ ,_eba :=range _bcce .Elements (){_dce ,_eed :=_dcff (_eba );if _eed !=nil {continue ;};_gafe =append (_gafe ,_dce );};};_gbb :=_bc .Join (_gafe ,"\u0020"); +_gbac :=_fa .NewContentStreamParser (_gbb );_efdf ,_bbcb :=_gbac .Parse ();if _bbcb !=nil {continue ;};for _ ,_fgba :=range *_efdf {_deca :=_fgba .Operand ;_cag :=_fgba .Params ;switch _deca {case "\u0044\u006f":_bbd :=_cag [0].String ();if _ ,_gde :=_afgf ["\u0058O\u0062\u006a\u0065\u0063\u0074"]; +!_gde {_afgf ["\u0058O\u0062\u006a\u0065\u0063\u0074"]=[]string {_bbd };}else {_afgf ["\u0058O\u0062\u006a\u0065\u0063\u0074"]=append (_afgf ["\u0058O\u0062\u006a\u0065\u0063\u0074"],_bbd );};case "\u0054\u0066":_ecea :=_cag [0].String ();if _ ,_cgb :=_afgf ["\u0046\u006f\u006e\u0074"]; +!_cgb {_afgf ["\u0046\u006f\u006e\u0074"]=[]string {_ecea };}else {_afgf ["\u0046\u006f\u006e\u0074"]=append (_afgf ["\u0046\u006f\u006e\u0074"],_ecea );};case "\u0067\u0073":_bbdg :=_cag [0].String ();if _ ,_bged :=_afgf ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"]; +!_bged {_afgf ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"]=[]string {_bbdg };}else {_afgf ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"]=append (_afgf ["\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"],_bbdg );};};};};return _afgf ;}; -// CompressStreams compresses uncompressed streams. +// ObjectStreams groups PDF objects to object streams. // It implements interface model.Optimizer. -type CompressStreams struct{}; +type ObjectStreams struct{}; + +// Append appends optimizers to the chain. +func (_de *Chain )Append (optimizers ..._ag .Optimizer ){_de ._dc =append (_de ._dc ,optimizers ...)}; // Optimize optimizes PDF objects to decrease PDF size. -func (_cbgc *ObjectStreams )Optimize (objects []_fe .PdfObject )(_bcea []_fe .PdfObject ,_baaf error ){_becf :=&_fe .PdfObjectStreams {};_fefa :=make ([]_fe .PdfObject ,0,len (objects ));for _ ,_bgfe :=range objects {if _aaee ,_adfg :=_bgfe .(*_fe .PdfIndirectObject ); -_adfg &&_aaee .GenerationNumber ==0{_becf .Append (_bgfe );}else {_fefa =append (_fefa ,_bgfe );};};if _becf .Len ()==0{return _fefa ,nil ;};_bcea =make ([]_fe .PdfObject ,0,len (_fefa )+_becf .Len ()+1);if _becf .Len ()> 1{_bcea =append (_bcea ,_becf ); -};_bcea =append (_bcea ,_becf .Elements ()...);_bcea =append (_bcea ,_fefa ...);return _bcea ,nil ;}; +func (_aba *CleanContentstream )Optimize (objects []_g .PdfObject )(_cfe []_g .PdfObject ,_fc error ){_fag :=map[*_g .PdfObjectStream ]struct{}{};var _eb []*_g .PdfObjectStream ;_ad :=func (_gbf *_g .PdfObjectStream ){if _ ,_age :=_fag [_gbf ];!_age {_fag [_gbf ]=struct{}{}; +_eb =append (_eb ,_gbf );};};_bea :=map[_g .PdfObject ]bool {};_aad :=map[_g .PdfObject ]bool {};for _ ,_bb :=range objects {switch _beg :=_bb .(type ){case *_g .PdfIndirectObject :switch _fac :=_beg .PdfObject .(type ){case *_g .PdfObjectDictionary :if _aadc ,_aec :=_g .GetName (_fac .Get ("\u0054\u0079\u0070\u0065")); +!_aec ||_aadc .String ()!="\u0050\u0061\u0067\u0065"{continue ;};if _eca ,_gbff :=_g .GetStream (_fac .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));_gbff {_ad (_eca );}else if _ebf ,_agb :=_g .GetArray (_fac .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073")); +_agb {var _begg []*_g .PdfObjectStream ;for _ ,_da :=range _ebf .Elements (){if _fab ,_ddf :=_g .GetStream (_da );_ddf {_begg =append (_begg ,_fab );};};if len (_begg )> 0{var _dae _af .Buffer ;for _ ,_defd :=range _begg {if _aada ,_cg :=_g .DecodeStream (_defd ); +_cg ==nil {_dae .Write (_aada );};_bea [_defd ]=true ;};_fdb ,_bgc :=_g .MakeStream (_dae .Bytes (),_g .NewFlateEncoder ());if _bgc !=nil {return nil ,_bgc ;};_aad [_fdb ]=true ;_fac .Set ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073",_fdb );_ad (_fdb ); +};};};case *_g .PdfObjectStream :if _ccf ,_ga :=_g .GetName (_beg .Get ("\u0054\u0079\u0070\u0065"));!_ga ||_ccf .String ()!="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};if _bde ,_deb :=_g .GetName (_beg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +!_deb ||_bde .String ()!="\u0046\u006f\u0072\u006d"{continue ;};_ad (_beg );};};for _ ,_bgb :=range _eb {_fc =_aa (_bgb );if _fc !=nil {return nil ,_fc ;};};_cfe =nil ;for _ ,_bf :=range objects {if _bea [_bf ]{continue ;};_cfe =append (_cfe ,_bf );};for _df :=range _aad {_cfe =append (_cfe ,_df ); +};return _cfe ,nil ;};func _fbc (_dgeb *_ag .XObjectImage ,_bcab imageModifications )error {_eg ,_gagd :=_dgeb .ToImage ();if _gagd !=nil {return _gagd ;};if _bcab .Scale !=0{_eg ,_gagd =_aefc (_eg ,_bcab .Scale );if _gagd !=nil {return _gagd ;};};if _bcab .Encoding !=nil {_dgeb .Filter =_bcab .Encoding ; +};_dgeb .Decode =nil ;switch _bbb :=_dgeb .Filter .(type ){case *_g .FlateEncoder :if _bbb .Predictor !=1&&_bbb .Predictor !=11{_bbb .Predictor =1;};};if _gagd =_dgeb .SetImage (_eg ,nil );_gagd !=nil {_f .Log .Debug ("\u0045\u0072\u0072or\u0020\u0073\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0076",_gagd ); +return _gagd ;};_dgeb .ToPdfObject ();return nil ;};func _dcff (_adf _g .PdfObject )(string ,error ){_bffa :=_g .TraceToDirectObject (_adf );switch _gbfg :=_bffa .(type ){case *_g .PdfObjectString :return _gbfg .Str (),nil ;case *_g .PdfObjectStream :_fcg ,_dcg :=_g .DecodeStream (_gbfg ); +if _dcg !=nil {return "",_dcg ;};return string (_fcg ),nil ;};return "",_d .Errorf ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072e\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0068\u006f\u006c\u0064\u0065\u0072\u0020\u0028\u0025\u0054\u0029",_bffa ); +}; -// Options describes PDF optimization parameters. -type Options struct{CombineDuplicateStreams bool ;CombineDuplicateDirectObjects bool ;ImageUpperPPI float64 ;ImageQuality int ;UseObjectStreams bool ;CombineIdenticalIndirectObjects bool ;CompressStreams bool ;CleanFonts bool ;SubsetFonts bool ;CleanContentstream bool ; -CleanUnusedResources bool ;};func _cbbg (_eaf []_fe .PdfObject )objectStructure {_dad :=objectStructure {};_gagbe :=false ;for _ ,_bcad :=range _eaf {switch _gba :=_bcad .(type ){case *_fe .PdfIndirectObject :_bacf ,_gcdd :=_fe .GetDict (_gba );if !_gcdd {continue ; -};_gdag ,_gcdd :=_fe .GetName (_bacf .Get ("\u0054\u0079\u0070\u0065"));if !_gcdd {continue ;};switch _gdag .String (){case "\u0043a\u0074\u0061\u006c\u006f\u0067":_dad ._deed =_bacf ;_gagbe =true ;};};if _gagbe {break ;};};if !_gagbe {return _dad ;};_gdfa ,_affe :=_fe .GetDict (_dad ._deed .Get ("\u0050\u0061\u0067e\u0073")); -if !_affe {return _dad ;};_dad ._acfb =_gdfa ;_aebf ,_affe :=_fe .GetArray (_gdfa .Get ("\u004b\u0069\u0064\u0073"));if !_affe {return _dad ;};for _ ,_fff :=range _aebf .Elements (){_fbad ,_daef :=_fe .GetIndirect (_fff );if !_daef {break ;};_dad ._egaa =append (_dad ._egaa ,_fbad ); -};return _dad ;};func _fea (_cef *_fe .PdfObjectDictionary )[]string {_agdcc :=[]string {};for _ ,_ffef :=range _cef .Keys (){_agdcc =append (_agdcc ,_ffef .String ());};return _agdcc ;}; +// Optimize optimizes PDF objects to decrease PDF size. +func (_dgd *CompressStreams )Optimize (objects []_g .PdfObject )(_beca []_g .PdfObject ,_bagf error ){_beca =make ([]_g .PdfObject ,len (objects ));copy (_beca ,objects );for _ ,_gdbe :=range objects {_acaf ,_abdd :=_g .GetStream (_gdbe );if !_abdd {continue ; +};if _eabd :=_acaf .Get ("\u0046\u0069\u006c\u0074\u0065\u0072");_eabd !=nil {if _ ,_dea :=_g .GetName (_eabd );_dea {continue ;};if _dabg ,_fge :=_g .GetArray (_eabd );_fge &&_dabg .Len ()> 0{continue ;};};_fcdf :=_g .NewFlateEncoder ();var _dfa []byte ; +_dfa ,_bagf =_fcdf .EncodeBytes (_acaf .Stream );if _bagf !=nil {return _beca ,_bagf ;};_gfb :=_fcdf .MakeStreamDict ();if len (_dfa )+len (_gfb .WriteString ())< len (_acaf .Stream ){_acaf .Stream =_dfa ;_acaf .PdfObjectDictionary .Merge (_gfb );_acaf .PdfObjectDictionary .Set ("\u004c\u0065\u006e\u0067\u0074\u0068",_g .MakeInteger (int64 (len (_acaf .Stream )))); +};};return _beca ,nil ;}; // Optimize optimizes PDF objects to decrease PDF size. -func (_gdg *ImagePPI )Optimize (objects []_fe .PdfObject )(_bdf []_fe .PdfObject ,_fdef error ){if _gdg .ImageUpperPPI <=0{return objects ,nil ;};_dea :=_cfa (objects );if len (_dea )==0{return objects ,nil ;};_geca :=make (map[_fe .PdfObject ]struct{}); -for _ ,_cbec :=range _dea {_eaeb :=_cbec .Stream .PdfObjectDictionary .Get ("\u0053\u004d\u0061s\u006b");_geca [_eaeb ]=struct{}{};};_dac :=make (map[*_fe .PdfObjectStream ]*imageInfo );for _ ,_efdd :=range _dea {_dac [_efdd .Stream ]=_efdd ;};var _cedb *_fe .PdfObjectDictionary ; -for _ ,_bcbe :=range objects {if _abcb ,_gedd :=_fe .GetDict (_bcbe );_cedb ==nil &&_gedd {if _feff ,_dfg :=_fe .GetName (_abcb .Get ("\u0054\u0079\u0070\u0065"));_dfg &&*_feff =="\u0043a\u0074\u0061\u006c\u006f\u0067"{_cedb =_abcb ;};};};if _cedb ==nil {return objects ,nil ; -};_gffa ,_cdd :=_fe .GetDict (_cedb .Get ("\u0050\u0061\u0067e\u0073"));if !_cdd {return objects ,nil ;};_abbg ,_gdeb :=_fe .GetArray (_gffa .Get ("\u004b\u0069\u0064\u0073"));if !_gdeb {return objects ,nil ;};for _ ,_ade :=range _abbg .Elements (){_dfb :=make (map[string ]*imageInfo ); -_bbeb ,_dgc :=_fe .GetDict (_ade );if !_dgc {continue ;};_gbcdc ,_ :=_dda (_bbeb .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"));if len (_gbcdc )==0{continue ;};_faac ,_cffa :=_fe .GetDict (_bbeb .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); -if !_cffa {continue ;};_bdeeb ,_aced :=_af .NewPdfPageResourcesFromDict (_faac );if _aced !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0073\u0020-\u0020\u0069\u0067\u006e\u006fr\u0069\u006eg\u003a\u0020\u0025\u0076",_aced ); -continue ;};_gffg ,_bdecg :=_fe .GetDict (_faac .Get ("\u0058O\u0062\u006a\u0065\u0063\u0074"));if !_bdecg {continue ;};_ffdg :=_gffg .Keys ();for _ ,_bea :=range _ffdg {if _cde ,_aeb :=_fe .GetStream (_gffg .Get (_bea ));_aeb {if _bgf ,_dee :=_dac [_cde ]; -_dee {_dfb [string (_bea )]=_bgf ;};};};_ggba :=_b .NewContentStreamParser (_gbcdc );_gbgg ,_aced :=_ggba .Parse ();if _aced !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aced );continue ;};_gffge :=_b .NewContentStreamProcessor (*_gbgg ); -_gffge .AddHandler (_b .HandlerConditionEnumAllOperands ,"",func (_fdfb *_b .ContentStreamOperation ,_ebca _b .GraphicsState ,_cbeg *_af .PdfPageResources )error {switch _fdfb .Operand {case "\u0044\u006f":if len (_fdfb .Params )!=1{_c .Log .Debug ("E\u0052\u0052\u004f\u0052\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0044\u006f\u0020w\u0069\u0074\u0068\u0020\u006c\u0065\u006e\u0028\u0070\u0061ra\u006d\u0073\u0029 \u0021=\u0020\u0031"); -return nil ;};_afaf ,_agde :=_fe .GetName (_fdfb .Params [0]);if !_agde {_c .Log .Debug ("\u0045\u0052\u0052O\u0052\u003a\u0020\u0049\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0044\u006f\u0020\u0077\u0069\u0074\u0068\u0020\u006e\u006f\u006e\u0020\u004e\u0061\u006d\u0065\u0020p\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072"); -return nil ;};if _gece ,_afg :=_dfb [string (*_afaf )];_afg {_aeeg :=_ebca .CTM .ScalingFactorX ();_gffad :=_ebca .CTM .ScalingFactorY ();_acedc ,_aafeb :=_aeeg /72.0,_gffad /72.0;_gbeb ,_cec :=float64 (_gece .Width )/_acedc ,float64 (_gece .Height )/_aafeb ; -if _acedc ==0||_aafeb ==0{_gbeb =72.0;_cec =72.0;};_gece .PPI =_gd .Max (_gece .PPI ,_gbeb );_gece .PPI =_gd .Max (_gece .PPI ,_cec );};};return nil ;});_aced =_gffge .Process (_bdeeb );if _aced !=nil {_c .Log .Debug ("E\u0052\u0052\u004f\u0052 p\u0072o\u0063\u0065\u0073\u0073\u0069n\u0067\u003a\u0020\u0025\u002b\u0076",_aced ); -continue ;};};for _ ,_accc :=range _dea {if _ ,_begf :=_geca [_accc .Stream ];_begf {continue ;};if _accc .PPI <=_gdg .ImageUpperPPI {continue ;};_aad ,_aec :=_af .NewXObjectImageFromStream (_accc .Stream );if _aec !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_aec ); -continue ;};var _edc imageModifications ;_edc .Scale =_gdg .ImageUpperPPI /_accc .PPI ;if _accc .BitsPerComponent ==1&&_accc .ColorComponents ==1{_bcc :=_gd .Round (_accc .PPI /_gdg .ImageUpperPPI );_fcce :=_fa .NextPowerOf2 (uint (_bcc ));if _fa .InDelta (float64 (_fcce ),1/_edc .Scale ,0.3){_edc .Scale =float64 (1)/float64 (_fcce ); -};if _ ,_bfce :=_aad .Filter .(*_fe .JBIG2Encoder );!_bfce {_edc .Encoding =_fe .NewJBIG2Encoder ();};};if _aec =_bacc (_aad ,_edc );_aec !=nil {_c .Log .Debug ("\u0045\u0072\u0072\u006f\u0072 \u0073\u0063\u0061\u006c\u0065\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u006be\u0065\u0070\u0020\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u0069\u006d\u0061\u0067\u0065\u003a\u0020\u0025\u0073",_aec ); -continue ;};_edc .Encoding =nil ;if _fda ,_fge :=_fe .GetStream (_accc .Stream .PdfObjectDictionary .Get ("\u0053\u004d\u0061s\u006b"));_fge {_dga ,_ccg :=_af .NewXObjectImageFromStream (_fda );if _ccg !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_ccg ); -continue ;};if _ccg =_bacc (_dga ,_edc );_ccg !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0025\u002b\u0076",_ccg );continue ;};};};return objects ,nil ;}; +func (_babd *ObjectStreams )Optimize (objects []_g .PdfObject )(_dedg []_g .PdfObject ,_bbe error ){_ebfb :=&_g .PdfObjectStreams {};_acb :=make ([]_g .PdfObject ,0,len (objects ));for _ ,_aeg :=range objects {if _fgfa ,_gccef :=_aeg .(*_g .PdfIndirectObject ); +_gccef &&_fgfa .GenerationNumber ==0{_ebfb .Append (_aeg );}else {_acb =append (_acb ,_aeg );};};if _ebfb .Len ()==0{return _acb ,nil ;};_dedg =make ([]_g .PdfObject ,0,len (_acb )+_ebfb .Len ()+1);if _ebfb .Len ()> 1{_dedg =append (_dedg ,_ebfb );};_dedg =append (_dedg ,_ebfb .Elements ()...); +_dedg =append (_dedg ,_acb ...);return _dedg ,nil ;};func _daf (_fef []_g .PdfObject ,_gbab map[_g .PdfObject ]_g .PdfObject ){if len (_gbab )==0{return ;};for _cafb ,_edfc :=range _fef {if _eedd ,_egg :=_gbab [_edfc ];_egg {_fef [_cafb ]=_eedd ;continue ; +};_gbab [_edfc ]=_edfc ;switch _ggae :=_edfc .(type ){case *_g .PdfObjectArray :_febb :=make ([]_g .PdfObject ,_ggae .Len ());copy (_febb ,_ggae .Elements ());_daf (_febb ,_gbab );for _gfeb ,_afca :=range _febb {_ggae .Set (_gfeb ,_afca );};case *_g .PdfObjectStreams :_daf (_ggae .Elements (),_gbab ); +case *_g .PdfObjectStream :_bgfef :=[]_g .PdfObject {_ggae .PdfObjectDictionary };_daf (_bgfef ,_gbab );_ggae .PdfObjectDictionary =_bgfef [0].(*_g .PdfObjectDictionary );case *_g .PdfObjectDictionary :_dabc :=_ggae .Keys ();_egfd :=make ([]_g .PdfObject ,len (_dabc )); +for _bfgca ,_gccea :=range _dabc {_egfd [_bfgca ]=_ggae .Get (_gccea );};_daf (_egfd ,_gbab );for _cafe ,_fdfe :=range _dabc {_ggae .Set (_fdfe ,_egfd [_cafe ]);};case *_g .PdfIndirectObject :_cbe :=[]_g .PdfObject {_ggae .PdfObject };_daf (_cbe ,_gbab ); +_ggae .PdfObject =_cbe [0];};};}; // Optimize optimizes PDF objects to decrease PDF size. -func (_gbe *CleanFonts )Optimize (objects []_fe .PdfObject )(_agd []_fe .PdfObject ,_efd error ){var _cee map[*_fe .PdfObjectStream ]struct{};if _gbe .Subset {var _ceg error ;_cee ,_ceg =_bga (objects );if _ceg !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0073u\u0062s\u0065\u0074\u0074\u0069\u006e\u0067\u003a \u0025\u0076",_ceg ); -return nil ,_ceg ;};};for _ ,_ddgf :=range objects {_fcf ,_gce :=_fe .GetStream (_ddgf );if !_gce {continue ;};if _ ,_agda :=_cee [_fcf ];_agda {continue ;};_dge ,_agdg :=_fe .NewEncoderFromStream (_fcf );if _agdg !=nil {_c .Log .Debug ("\u0045\u0052RO\u0052\u0020\u0067e\u0074\u0074\u0069\u006eg e\u006eco\u0064\u0065\u0072\u003a\u0020\u0025\u0076 -\u0020\u0069\u0067\u006e\u006f\u0072\u0069n\u0067",_agdg ); -continue ;};_aefd ,_agdg :=_dge .DecodeStream (_fcf );if _agdg !=nil {_c .Log .Debug ("\u0044\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065r\u0072\u006f\u0072\u0020\u003a\u0020\u0025v\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067",_agdg ); -continue ;};if len (_aefd )< 4{continue ;};_degg :=string (_aefd [:4]);if _degg =="\u004f\u0054\u0054\u004f"{continue ;};if _degg !="\u0000\u0001\u0000\u0000"&&_degg !="\u0074\u0072\u0075\u0065"{continue ;};_fad ,_agdg :=_gc .Parse (_cgg .NewReader (_aefd )); -if _agdg !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020P\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076\u0020\u002d\u0020\u0069\u0067\u006eo\u0072\u0069\u006e\u0067",_agdg );continue ;};_agdg =_fad .Optimize (); -if _agdg !=nil {_c .Log .Debug ("\u0045\u0052RO\u0052\u0020\u004fp\u0074\u0069\u006d\u0069zin\u0067 f\u006f\u006e\u0074\u003a\u0020\u0025\u0076 -\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067",_agdg );continue ;};var _edd _cgg .Buffer ;_agdg =_fad .Write (&_edd ); -if _agdg !=nil {_c .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020W\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076\u0020\u002d\u0020\u0069\u0067\u006eo\u0072\u0069\u006e\u0067",_agdg );continue ;};if _edd .Len ()> len (_aefd ){_c .Log .Debug ("\u0052\u0065-\u0077\u0072\u0069\u0074\u0074\u0065\u006e\u0020\u0066\u006f\u006e\u0074\u0020\u0069\u0073\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u002d\u0020\u0073\u006b\u0069\u0070"); -continue ;};_acd ,_agdg :=_fe .MakeStream (_edd .Bytes (),_fe .NewFlateEncoder ());if _agdg !=nil {continue ;};*_fcf =*_acd ;_fcf .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_fe .MakeInteger (int64 (_edd .Len ())));};return objects ,nil ;};func _dgde (_bge *_af .Image ,_gaedd float64 )(*_af .Image ,error ){_fbeg ,_aede :=_bge .ToGoImage (); -if _aede !=nil {return nil ,_aede ;};var _eacd _fa .Image ;_cegb ,_fgf :=_fbeg .(*_fa .Monochrome );if _fgf {if _aede =_cegb .ResolveDecode ();_aede !=nil {return nil ,_aede ;};_eacd ,_aede =_cegb .Scale (_gaedd );if _aede !=nil {return nil ,_aede ;};}else {_afda :=int (_gd .RoundToEven (float64 (_bge .Width )*_gaedd )); -_bbbg :=int (_gd .RoundToEven (float64 (_bge .Height )*_gaedd ));_eacd ,_aede =_fa .NewImage (_afda ,_bbbg ,int (_bge .BitsPerComponent ),_bge .ColorComponents ,nil ,nil ,nil );if _aede !=nil {return nil ,_aede ;};_g .CatmullRom .Scale (_eacd ,_eacd .Bounds (),_fbeg ,_fbeg .Bounds (),_g .Over ,&_g .Options {}); -};_ccb :=_eacd .Base ();_cad :=&_af .Image {Width :int64 (_ccb .Width ),Height :int64 (_ccb .Height ),BitsPerComponent :int64 (_ccb .BitsPerComponent ),ColorComponents :_ccb .ColorComponents ,Data :_ccb .Data };_cad .SetDecode (_ccb .Decode );_cad .SetAlpha (_ccb .Alpha ); -return _cad ,nil ;}; +func (_ccba *CombineDuplicateStreams )Optimize (objects []_g .PdfObject )(_efeg []_g .PdfObject ,_aae error ){_cde :=make (map[_g .PdfObject ]_g .PdfObject );_dcfc :=make (map[_g .PdfObject ]struct{});_ffd :=make (map[string ][]*_g .PdfObjectStream );for _ ,_dgca :=range objects {if _acge ,_afff :=_dgca .(*_g .PdfObjectStream ); +_afff {_ged :=_be .New ();_ged .Write (_acge .Stream );_ged .Write ([]byte (_acge .PdfObjectDictionary .WriteString ()));_debe :=string (_ged .Sum (nil ));_ffd [_debe ]=append (_ffd [_debe ],_acge );};};for _ ,_ade :=range _ffd {if len (_ade )< 2{continue ; +};_fad :=_ade [0];for _adc :=1;_adc < len (_ade );_adc ++{_fbba :=_ade [_adc ];_cde [_fbba ]=_fad ;_dcfc [_fbba ]=struct{}{};};};_efeg =make ([]_g .PdfObject ,0,len (objects )-len (_dcfc ));for _ ,_dab :=range objects {if _ ,_cea :=_dcfc [_dab ];_cea {continue ; +};_efeg =append (_efeg ,_dab );};_daf (_efeg ,_cde );return _efeg ,nil ;}; + +// Optimize optimizes PDF objects to decrease PDF size. +func (_ba *CleanFonts )Optimize (objects []_g .PdfObject )(_afa []_g .PdfObject ,_ddg error ){var _ccb map[*_g .PdfObjectStream ]struct{};if _ba .Subset {var _gaac error ;_ccb ,_gaac =_gaa (objects );if _gaac !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004fR\u003a\u0020\u0046\u0061\u0069\u006c\u0065\u0064\u0020\u0073u\u0062s\u0065\u0074\u0074\u0069\u006e\u0067\u003a \u0025\u0076",_gaac ); +return nil ,_gaac ;};};for _ ,_cbf :=range objects {_afc ,_aag :=_g .GetStream (_cbf );if !_aag {continue ;};if _ ,_fb :=_ccb [_afc ];_fb {continue ;};_gcaf ,_gdb :=_g .NewEncoderFromStream (_afc );if _gdb !=nil {_f .Log .Debug ("\u0045\u0052RO\u0052\u0020\u0067e\u0074\u0074\u0069\u006eg e\u006eco\u0064\u0065\u0072\u003a\u0020\u0025\u0076 -\u0020\u0069\u0067\u006e\u006f\u0072\u0069n\u0067",_gdb ); +continue ;};_dga ,_gdb :=_gcaf .DecodeStream (_afc );if _gdb !=nil {_f .Log .Debug ("\u0044\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065r\u0072\u006f\u0072\u0020\u003a\u0020\u0025v\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067",_gdb ); +continue ;};if len (_dga )< 4{continue ;};_gbg :=string (_dga [:4]);if _gbg =="\u004f\u0054\u0054\u004f"{continue ;};if _gbg !="\u0000\u0001\u0000\u0000"&&_gbg !="\u0074\u0072\u0075\u0065"{continue ;};_gfe ,_gdb :=_fd .Parse (_af .NewReader (_dga ));if _gdb !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020P\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076\u0020\u002d\u0020\u0069\u0067\u006eo\u0072\u0069\u006e\u0067",_gdb ); +continue ;};_gdb =_gfe .Optimize ();if _gdb !=nil {_f .Log .Debug ("\u0045\u0052RO\u0052\u0020\u004fp\u0074\u0069\u006d\u0069zin\u0067 f\u006f\u006e\u0074\u003a\u0020\u0025\u0076 -\u0020\u0073\u006b\u0069\u0070\u0070\u0069n\u0067",_gdb );continue ;};var _dgf _af .Buffer ; +_gdb =_gfe .Write (&_dgf );if _gdb !=nil {_f .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u0020W\u0072\u0069\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u003a\u0020%\u0076\u0020\u002d\u0020\u0069\u0067\u006eo\u0072\u0069\u006e\u0067",_gdb );continue ; +};if _dgf .Len ()> len (_dga ){_f .Log .Debug ("\u0052\u0065-\u0077\u0072\u0069\u0074\u0074\u0065\u006e\u0020\u0066\u006f\u006e\u0074\u0020\u0069\u0073\u0020\u006c\u0061\u0072\u0067\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u002d\u0020\u0073\u006b\u0069\u0070"); +continue ;};_cdb ,_gdb :=_g .MakeStream (_dgf .Bytes (),_g .NewFlateEncoder ());if _gdb !=nil {continue ;};*_afc =*_cdb ;_afc .Set ("\u004ce\u006e\u0067\u0074\u0068\u0031",_g .MakeInteger (int64 (_dgf .Len ())));};return objects ,nil ;}; + +// CompressStreams compresses uncompressed streams. +// It implements interface model.Optimizer. +type CompressStreams struct{}; // CleanFonts cleans up embedded fonts, reducing font sizes. type CleanFonts struct{ // Subset embedded fonts if encountered (if true). // Otherwise attempts to reduce the font program. -Subset bool ;}; \ No newline at end of file +Subset bool ;};func _bcbf (_ebcf *_g .PdfObjectDictionary )[]string {_gddg :=[]string {};for _ ,_bcf :=range _ebcf .Keys (){_gddg =append (_gddg ,_bcf .String ());};return _gddg ;}; \ No newline at end of file diff --git a/model/pdfa/pdfa.go b/model/pdfa/pdfa.go index b5329f200..77ed1156a 100644 --- a/model/pdfa/pdfa.go +++ b/model/pdfa/pdfa.go @@ -12,213 +12,414 @@ // Package pdfa provides abstraction to optimize and verify documents with respect to the PDF/A standards. // NOTE: This implementation is in experimental development state. // Keep in mind that it might change in the subsequent minor versions. -package pdfa ;import (_d "errors";_g "fmt";_cg "github.com/adrg/sysfont";_ea "github.com/trimmer-io/go-xmp/models/dc";_bc "github.com/trimmer-io/go-xmp/models/pdf";_ab "github.com/trimmer-io/go-xmp/models/xmp_base";_dd "github.com/trimmer-io/go-xmp/models/xmp_mm"; -_aa "github.com/trimmer-io/go-xmp/models/xmp_rights";_fb "github.com/trimmer-io/go-xmp/xmp";_cf "github.com/unidoc/unipdf/v3/common";_fbg "github.com/unidoc/unipdf/v3/contentstream";_fc "github.com/unidoc/unipdf/v3/core";_gc "github.com/unidoc/unipdf/v3/internal/cmap"; -_ae "github.com/unidoc/unipdf/v3/internal/imageutil";_cb "github.com/unidoc/unipdf/v3/internal/timeutils";_b "github.com/unidoc/unipdf/v3/model";_fa "github.com/unidoc/unipdf/v3/model/internal/colorprofile";_ag "github.com/unidoc/unipdf/v3/model/internal/docutil"; -_aec "github.com/unidoc/unipdf/v3/model/internal/fonts";_fg "github.com/unidoc/unipdf/v3/model/xmputil";_bd "github.com/unidoc/unipdf/v3/model/xmputil/pdfaextension";_gg "github.com/unidoc/unipdf/v3/model/xmputil/pdfaid";_ad "image/color";_f "math";_e "sort"; -_ed "strings";_c "time";);func _gab (_dbcb *_ag .Document ,_dcbf bool )error {_fbdf ,_cfdg :=_dbcb .GetPages ();if !_cfdg {return nil ;};for _ ,_gbfg :=range _fbdf {_cggc :=_gbfg .FindXObjectForms ();for _ ,_cac :=range _cggc {_cgd ,_bcab :=_b .NewXObjectFormFromStream (_cac ); -if _bcab !=nil {return _bcab ;};_gbe ,_bcab :=_cgd .GetContentStream ();if _bcab !=nil {return _bcab ;};_ebcg :=_fbg .NewContentStreamParser (string (_gbe ));_eaf ,_bcab :=_ebcg .Parse ();if _bcab !=nil {return _bcab ;};_bae ,_bcab :=_gebb (_cgd .Resources ,_eaf ,_dcbf ); -if _bcab !=nil {return _bcab ;};if len (_bae )==0{continue ;};if _bcab =_cgd .SetContentStream (_bae ,_fc .NewFlateEncoder ());_bcab !=nil {return _bcab ;};_cgd .ToPdfObject ();};};return nil ;};func _ccdfb (_ffbed *Profile2Options ){if _ffbed .Now ==nil {_ffbed .Now =_c .Now ; -};};func _ccgf (_fdge *_ag .Document )error {_gbg :=func (_cabdd *_fc .PdfObjectDictionary )error {if _cabdd .Get ("\u0054\u0052")!=nil {_cf .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0054\u0052\u0020\u006b\u0065\u0079"); -_cabdd .Remove ("\u0054\u0052");};_fffd :=_cabdd .Get ("\u0054\u0052\u0032");if _fffd !=nil {_ecgf :=_fffd .String ();if _ecgf !="\u0044e\u0066\u0061\u0075\u006c\u0074"{_cf .Log .Debug ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074\u0065 o\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073 \u0054\u00522\u0020\u006b\u0065y\u0020\u0077\u0069\u0074\u0068\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0074\u0068\u0065r\u0020\u0074ha\u006e\u0020\u0044e\u0066\u0061\u0075\u006c\u0074"); -_cabdd .Set ("\u0054\u0052\u0032",_fc .MakeName ("\u0044e\u0066\u0061\u0075\u006c\u0074"));};};if _cabdd .Get ("\u0048\u0054\u0050")!=nil {_cf .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074a\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0073\u0020\u0048\u0054P\u0020\u006b\u0065\u0079"); -_cabdd .Remove ("\u0048\u0054\u0050");};_ead :=_cabdd .Get ("\u0042\u004d");if _ead !=nil {_bafc ,_feeb :=_fc .GetName (_ead );if !_feeb {_cf .Log .Debug ("E\u0078\u0074\u0047\u0053\u0074\u0061t\u0065\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0027\u0042\u004d\u0027\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061m\u0065"); -_bafc =_fc .MakeName ("");};_dbcc :=_bafc .String ();switch _dbcc {case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065","\u004d\u0075\u006c\u0074\u0069\u0070\u006c\u0079","\u0053\u0063\u0072\u0065\u0065\u006e","\u004fv\u0065\u0072\u006c\u0061\u0079","\u0044\u0061\u0072\u006b\u0065\u006e","\u004ci\u0067\u0068\u0074\u0065\u006e","\u0043\u006f\u006c\u006f\u0072\u0044\u006f\u0064\u0067\u0065","\u0043o\u006c\u006f\u0072\u0042\u0075\u0072n","\u0048a\u0072\u0064\u004c\u0069\u0067\u0068t","\u0053o\u0066\u0074\u004c\u0069\u0067\u0068t","\u0044\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065","\u0045x\u0063\u006c\u0075\u0073\u0069\u006fn","\u0048\u0075\u0065","\u0053\u0061\u0074\u0075\u0072\u0061\u0074\u0069\u006f\u006e","\u0043\u006f\u006co\u0072","\u004c\u0075\u006d\u0069\u006e\u006f\u0073\u0069\u0074\u0079":default:_cabdd .Set ("\u0042\u004d",_fc .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c")); -};};return nil ;};_agaf ,_bcg :=_fdge .GetPages ();if !_bcg {return nil ;};for _ ,_ebage :=range _agaf {_bgce ,_cbdcd :=_ebage .GetResources ();if !_cbdcd {continue ;};_fcac ,_agdd :=_fc .GetDict (_bgce .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e")); -if !_agdd {return nil ;};_acdb :=_fcac .Keys ();for _ ,_faeaa :=range _acdb {_ddacd ,_dcab :=_fc .GetDict (_fcac .Get (_faeaa ));if !_dcab {continue ;};_bfd :=_gbg (_ddacd );if _bfd !=nil {continue ;};};};for _ ,_gdae :=range _agaf {_edbe ,_aagf :=_gdae .GetContents (); -if !_aagf {return nil ;};for _ ,_ceea :=range _edbe {_agae ,_dbce :=_ceea .GetData ();if _dbce !=nil {continue ;};_bacg :=_fbg .NewContentStreamParser (string (_agae ));_bfa ,_dbce :=_bacg .Parse ();if _dbce !=nil {continue ;};for _ ,_ced :=range *_bfa {if len (_ced .Params )==0{continue ; -};_ ,_dfe :=_fc .GetName (_ced .Params [0]);if !_dfe {continue ;};_fcdd ,_efdf :=_gdae .GetResourcesXObject ();if !_efdf {continue ;};for _ ,_eecc :=range _fcdd .Keys (){_aafd ,_eeff :=_fc .GetStream (_fcdd .Get (_eecc ));if !_eeff {continue ;};_abeb ,_eeff :=_fc .GetDict (_aafd .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); -if !_eeff {continue ;};_gcd ,_eeff :=_fc .GetDict (_abeb .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_eeff {continue ;};for _ ,_dfeg :=range _gcd .Keys (){_bcce ,_bgd :=_fc .GetDict (_gcd .Get (_dfeg ));if !_bgd {continue ;};_addb :=_gbg (_bcce ); -if _addb !=nil {continue ;};};};};};};return nil ;};func _faac (_bddd *_b .CompliancePdfReader )(*_fc .PdfObjectDictionary ,bool ){_gddbf ,_fggg :=_bddd .GetTrailer ();if _fggg !=nil {_cf .Log .Debug ("\u0043\u0061\u006en\u006f\u0074\u0020\u0067e\u0074\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0076",_fggg ); -return nil ,false ;};_bdbde ,_dded :=_gddbf .Get ("\u0052\u006f\u006f\u0074").(*_fc .PdfObjectReference );if !_dded {_cf .Log .Debug ("\u0043a\u006e\u006e\u006f\u0074 \u0066\u0069\u006e\u0064\u0020d\u006fc\u0075m\u0065\u006e\u0074\u0020\u0072\u006f\u006ft"); -return nil ,false ;};_daefd ,_dded :=_fc .GetDict (_fc .ResolveReference (_bdbde ));if !_dded {_cf .Log .Debug ("\u0063\u0061\u006e\u006e\u006f\u0074 \u0072\u0065\u0073\u006f\u006c\u0076\u0065\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -return nil ,false ;};return _daefd ,true ;}; +package pdfa ;import (_gg "errors";_d "fmt";_dad "github.com/adrg/sysfont";_cb "github.com/trimmer-io/go-xmp/models/dc";_f "github.com/trimmer-io/go-xmp/models/pdf";_ef "github.com/trimmer-io/go-xmp/models/xmp_base";_cf "github.com/trimmer-io/go-xmp/models/xmp_mm"; +_eb "github.com/trimmer-io/go-xmp/models/xmp_rights";_ga "github.com/trimmer-io/go-xmp/xmp";_ca "github.com/unidoc/unipdf/v3/common";_cad "github.com/unidoc/unipdf/v3/contentstream";_ad "github.com/unidoc/unipdf/v3/core";_b "github.com/unidoc/unipdf/v3/internal/cmap"; +_de "github.com/unidoc/unipdf/v3/internal/imageutil";_fe "github.com/unidoc/unipdf/v3/internal/timeutils";_da "github.com/unidoc/unipdf/v3/model";_ac "github.com/unidoc/unipdf/v3/model/internal/colorprofile";_ea "github.com/unidoc/unipdf/v3/model/internal/docutil"; +_cac "github.com/unidoc/unipdf/v3/model/internal/fonts";_gf "github.com/unidoc/unipdf/v3/model/xmputil";_be "github.com/unidoc/unipdf/v3/model/xmputil/pdfaextension";_ebe "github.com/unidoc/unipdf/v3/model/xmputil/pdfaid";_g "image/color";_e "math";_cg "sort"; +_eg "strings";_a "time";);func _decc (_ecdfb *_da .CompliancePdfReader ,_adgbc standardType )(_ebag []ViolatedRule ){var _ddfe ,_dgbe ,_ggea ,_bgbe ,_dfgd ,_fege ,_gedg ,_fbgc ,_egce ,_bgdbg ,_gaadf bool ;_aada :=func ()bool {return _ddfe &&_dgbe &&_ggea &&_bgbe &&_dfgd &&_fege &&_gedg &&_fbgc &&_egce &&_bgdbg &&_gaadf ; +};_aaad :=map[*_ad .PdfObjectStream ]*_b .CMap {};_faccc :=map[*_ad .PdfObjectStream ][]byte {};_gbcc :=map[_ad .PdfObject ]*_da .PdfFont {};for _ ,_bdcd :=range _ecdfb .GetObjectNums (){_dcdb ,_ccagg :=_ecdfb .GetIndirectObjectByNumber (_bdcd );if _ccagg !=nil {continue ; +};_afab ,_gebc :=_ad .GetDict (_dcdb );if !_gebc {continue ;};_fdab ,_gebc :=_ad .GetName (_afab .Get ("\u0054\u0079\u0070\u0065"));if !_gebc {continue ;};if *_fdab !="\u0046\u006f\u006e\u0074"{continue ;};_ffda ,_ccagg :=_da .NewPdfFontFromPdfObject (_afab ); +if _ccagg !=nil {_ca .Log .Debug ("g\u0065\u0074\u0074\u0069\u006e\u0067 \u0066\u006f\u006e\u0074\u0020\u0066r\u006f\u006d\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020%\u0076",_ccagg );continue ;};_gbcc [_afab ]=_ffda ; +};for _ ,_bgfca :=range _ecdfb .PageList {_bbbg ,_gfbd :=_bgfca .GetContentStreams ();if _gfbd !=nil {_ca .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067 \u0070\u0061\u0067\u0065\u0020\u0063o\u006e\u0074\u0065\u006e\u0074\u0020\u0073t\u0072\u0065\u0061\u006d\u0073\u0020\u0066\u0061\u0069\u006ce\u0064"); +continue ;};for _ ,_cbg :=range _bbbg {_daca :=_cad .NewContentStreamParser (_cbg );_dbece ,_ecdfe :=_daca .Parse ();if _ecdfe !=nil {_ca .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u0074r\u0065\u0061\u006d\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ecdfe ); +continue ;};var _acf bool ;for _ ,_fdgce :=range *_dbece {if _fdgce .Operand !="\u0054\u0072"{continue ;};if len (_fdgce .Params )!=1{_ca .Log .Debug ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054\u0072\u0027\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u002c\u0020\u0065\u0078\u0070e\u0063\u0074\u0065\u0064\u0020\u0027\u0031\u0027\u0020\u0062\u0075\u0074 \u0069\u0073\u003a\u0020\u0027\u0025d\u0027",len (_fdgce .Params )); +continue ;};_dabf ,_cdfc :=_ad .GetIntVal (_fdgce .Params [0]);if !_cdfc {_ca .Log .Debug ("\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u006d\u006f\u0064\u0065\u0020i\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); +continue ;};if _dabf ==3{_acf =true ;break ;};};for _ ,_eebee :=range *_dbece {if _eebee .Operand !="\u0054\u0066"{continue ;};if len (_eebee .Params )!=2{_ca .Log .Debug ("i\u006eva\u006ci\u0064 \u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066 \u0070\u0061\u0072\u0061\u006de\u0074\u0065\u0072s\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054f\u0027\u0020\u006fper\u0061\u006e\u0064\u002c\u0020\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0027\u0032\u0027\u0020\u0069s\u003a \u0027\u0025\u0064\u0027",len (_eebee .Params )); +continue ;};_beda ,_dcbe :=_ad .GetName (_eebee .Params [0]);if !_dcbe {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u004ea\u006d\u0065\u0056\u0061\u006c\u0020\u0066a\u0069\u006c\u0065\u0064",_eebee ); +continue ;};_cefc ,_efbe :=_bgfca .Resources .GetFontByName (*_beda );if !_efbe {_ca .Log .Debug ("\u0066\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");continue ;};_bedfa ,_dcbe :=_ad .GetDict (_cefc );if !_dcbe {_ca .Log .Debug ("\u0066\u006f\u006e\u0074 d\u0069\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +continue ;};_ggde ,_dcbe :=_gbcc [_bedfa ];if !_dcbe {var _agbf error ;_ggde ,_agbf =_da .NewPdfFontFromPdfObject (_bedfa );if _agbf !=nil {_ca .Log .Debug ("\u0067\u0065\u0074\u0074i\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0066\u0072o\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_agbf ); +continue ;};_gbcc [_bedfa ]=_ggde ;};if !_ddfe {_edee :=_fgafc (_bedfa ,_faccc ,_aaad );if _edee !=_bg {_ebag =append (_ebag ,_edee );_ddfe =true ;if _aada (){return _ebag ;};};};if !_dgbe {_fbaa :=_dabb (_bedfa );if _fbaa !=_bg {_ebag =append (_ebag ,_fbaa ); +_dgbe =true ;if _aada (){return _ebag ;};};};if !_ggea {_fddb :=_abgc (_bedfa ,_faccc ,_aaad );if _fddb !=_bg {_ebag =append (_ebag ,_fddb );_ggea =true ;if _aada (){return _ebag ;};};};if !_bgbe {_dgcf :=_dfdffa (_bedfa ,_faccc ,_aaad );if _dgcf !=_bg {_ebag =append (_ebag ,_dgcf ); +_bgbe =true ;if _aada (){return _ebag ;};};};if !_dfgd {_bdcc :=_dgbf (_ggde ,_bedfa ,_acf );if _bdcc !=_bg {_dfgd =true ;_ebag =append (_ebag ,_bdcc );if _aada (){return _ebag ;};};};if !_fege {_ddcc :=_ddccc (_ggde ,_bedfa );if _ddcc !=_bg {_fege =true ; +_ebag =append (_ebag ,_ddcc );if _aada (){return _ebag ;};};};if !_gedg {_ceab :=_faea (_ggde ,_bedfa );if _ceab !=_bg {_gedg =true ;_ebag =append (_ebag ,_ceab );if _aada (){return _ebag ;};};};if !_fbgc {_ceaa :=_fggce (_ggde ,_bedfa );if _ceaa !=_bg {_fbgc =true ; +_ebag =append (_ebag ,_ceaa );if _aada (){return _ebag ;};};};if !_egce {_fcab :=_afda (_ggde ,_bedfa );if _fcab !=_bg {_egce =true ;_ebag =append (_ebag ,_fcab );if _aada (){return _ebag ;};};};if !_bgdbg {_fgaf :=_faga (_ggde ,_bedfa );if _fgaf !=_bg {_bgdbg =true ; +_ebag =append (_ebag ,_fgaf );if _aada (){return _ebag ;};};};if !_gaadf &&_adgbc ._ee =="\u0041"{_fecc :=_fefe (_bedfa ,_faccc ,_aaad );if _fecc !=_bg {_gaadf =true ;_ebag =append (_ebag ,_fecc );if _aada (){return _ebag ;};};};};};};return _ebag ;};func _aca (_gccb *_ea .Document ,_bfb standardType ,_eac XmpOptions )error {_eda ,_cfe :=_gccb .FindCatalog (); +if !_cfe {return nil ;};var _dbec *_gf .Document ;_ecfb ,_cfe :=_eda .GetMetadata ();if !_cfe {_dbec =_gf .NewDocument ();}else {var _eebb error ;_dbec ,_eebb =_gf .LoadDocument (_ecfb .Stream );if _eebb !=nil {return _eebb ;};};_bdg :=_gf .PdfInfoOptions {InfoDict :_gccb .Info ,PdfVersion :_d .Sprintf ("\u0025\u0064\u002e%\u0064",_gccb .Version .Major ,_gccb .Version .Minor ),Copyright :_eac .Copyright ,Overwrite :true }; +_acbc ,_cfe :=_eda .GetMarkInfo ();if _cfe {_dcb ,_ggff :=_ad .GetBool (_acbc .Get ("\u004d\u0061\u0072\u006b\u0065\u0064"));if _ggff &&bool (*_dcb ){_bdg .Marked =true ;};};if _adgg :=_dbec .SetPdfInfo (&_bdg );_adgg !=nil {return _adgg ;};if _gdde :=_dbec .SetPdfAID (_bfb ._efe ,_bfb ._ee ); +_gdde !=nil {return _gdde ;};_ffb :=_gf .MediaManagementOptions {OriginalDocumentID :_eac .OriginalDocumentID ,DocumentID :_eac .DocumentID ,InstanceID :_eac .InstanceID ,NewDocumentID :!_eac .NewDocumentVersion ,ModifyComment :"O\u0070\u0074\u0069\u006d\u0069\u007ae\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0074\u006f\u0020\u0050D\u0046\u002f\u0041\u0020\u0073\u0074\u0061\u006e\u0064\u0061r\u0064"}; +_bdb ,_cfe :=_ad .GetDict (_gccb .Info );if _cfe {if _eada ,_efc :=_ad .GetString (_bdb .Get ("\u004do\u0064\u0044\u0061\u0074\u0065"));_efc &&_eada .String ()!=""{_efgf ,_aff :=_fe .ParsePdfTime (_eada .String ());if _aff !=nil {return _d .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u004d\u006f\u0064\u0044a\u0074e\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025w",_aff ); +};_ffb .ModifyDate =_efgf ;};};if _dafd :=_dbec .SetMediaManagement (&_ffb );_dafd !=nil {return _dafd ;};if _aafb :=_dbec .SetPdfAExtension ();_aafb !=nil {return _aafb ;};_fbg ,_dec :=_dbec .MarshalIndent (_eac .MarshalPrefix ,_eac .MarshalIndent );if _dec !=nil {return _dec ; +};if _fge :=_eda .SetMetadata (_fbg );_fge !=nil {return _fge ;};return nil ;};func _cecec (_dcedc *_da .CompliancePdfReader )[]ViolatedRule {return nil };func (_dac *documentImages )hasUncalibratedImages ()bool {return _dac ._eea ||_dac ._fc ||_dac ._eeb }; +func _gga (_fcef string ,_ebfg string ,_dfac string )(string ,bool ){_cgad :=_eg .Index (_fcef ,_ebfg );if _cgad ==-1{return "",false ;};_cgad +=len (_ebfg );_gbae :=_eg .Index (_fcef [_cgad :],_dfac );if _gbae ==-1{return "",false ;};_gbae =_cgad +_gbae ; +return _fcef [_cgad :_gbae ],true ;};func _gde (_eead *_da .XObjectImage ,_dg imageModifications )error {_fba ,_gbfa :=_eead .ToImage ();if _gbfa !=nil {return _gbfa ;};if _dg ._fgg !=nil {_eead .Filter =_dg ._fgg ;};_fcg :=_ad .MakeDict ();_fcg .Set ("\u0051u\u0061\u006c\u0069\u0074\u0079",_ad .MakeInteger (100)); +_fcg .Set ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr",_ad .MakeInteger (1));_eead .Decode =nil ;if _gbfa =_eead .SetImage (_fba ,nil );_gbfa !=nil {return _gbfa ;};_eead .ToPdfObject ();return nil ;};func _bedf (_geaa *_da .CompliancePdfReader )(_gbcf []ViolatedRule ){var (_aecf ,_gcf ,_bgdd ,_aaac ,_dcad ,_ecebc ,_dceag bool ; +_fedd func (_ad .PdfObject ););_fedd =func (_bfbf _ad .PdfObject ){switch _dde :=_bfbf .(type ){case *_ad .PdfObjectInteger :if !_aecf &&(int64 (*_dde )> _e .MaxInt32 ||int64 (*_dde )< -_e .MaxInt32 ){_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0031","L\u0061\u0072\u0067e\u0073\u0074\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0032\u002c\u0031\u0034\u0037,\u0034\u0038\u0033,\u0036\u0034\u0037\u002e\u0020\u0053\u006d\u0061\u006c\u006c\u0065\u0073\u0074 \u0069\u006e\u0074\u0065g\u0065\u0072\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u002d\u0032\u002c\u0031\u0034\u0037\u002c\u0034\u0038\u0033,\u0036\u0034\u0038\u002e")); +_aecf =true ;};case *_ad .PdfObjectFloat :if !_gcf &&(_e .Abs (float64 (*_dde ))> 32767.0){_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0032","\u0041\u0062\u0073\u006f\u006c\u0075\u0074\u0065\u0020\u0072\u0065\u0061\u006c\u0020\u0076\u0061\u006c\u0075\u0065\u0020m\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u006c\u0065s\u0073\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0020\u0065\u0071\u0075a\u006c\u0020\u0074\u006f\u0020\u00332\u0037\u0036\u0037.\u0030\u002e")); +};case *_ad .PdfObjectString :if !_bgdd &&len ([]byte (_dde .Str ()))> 65535{_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0033","M\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006c\u0065n\u0067\u0074\u0068\u0020\u006f\u0066\u0020a \u0073\u0074\u0072\u0069n\u0067\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074es\u0029\u0020i\u0073\u0020\u0036\u0035\u0035\u0033\u0035\u002e")); +_bgdd =true ;};case *_ad .PdfObjectName :if !_aaac &&len ([]byte (*_dde ))> 127{_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0034","\u004d\u0061\u0078\u0069\u006d\u0075\u006d \u006c\u0065\u006eg\u0074\u0068\u0020\u006ff\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074\u0065\u0073\u0029\u0020\u0069\u0073\u0020\u0031\u0032\u0037\u002e")); +_aaac =true ;};case *_ad .PdfObjectArray :if !_dcad &&_dde .Len ()> 8191{_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0035","\u004d\u0061\u0078\u0069\u006d\u0075m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006f\u0066\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020(\u0069\u006e\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0073\u0029\u0020\u0069s\u00208\u0031\u0039\u0031\u002e")); +_dcad =true ;};for _ ,_cfca :=range _dde .Elements (){_fedd (_cfca );};if !_dceag &&(_dde .Len ()==4||_dde .Len ()==5){_dfcca ,_dcf :=_ad .GetName (_dde .Get (0));if !_dcf {return ;};if *_dfcca !="\u0044e\u0076\u0069\u0063\u0065\u004e"{return ;};_cfdd :=_dde .Get (1); +_cfdd =_ad .TraceToDirectObject (_cfdd );_bcbaa ,_dcf :=_ad .GetArray (_cfdd );if !_dcf {return ;};if _bcbaa .Len ()> 8{_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0039","\u004d\u0061\u0078i\u006d\u0075\u006d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u004e\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065n\u0074\u0073\u0020\u0069\u0073\u0020\u0038\u002e")); +_dceag =true ;};};case *_ad .PdfObjectDictionary :_afdf :=_dde .Keys ();if !_ecebc &&len (_afdf )> 4095{_gbcf =append (_gbcf ,_ba ("\u0036.\u0031\u002e\u0031\u0032\u002d\u00311","\u004d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u0063\u0061\u0070\u0061\u0063\u0069\u0074y\u0020\u006f\u0066\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0028\u0069\u006e\u0020\u0065\u006e\u0074\u0072\u0069es\u0029\u0020\u0069\u0073\u0020\u0034\u0030\u0039\u0035\u002e")); +_ecebc =true ;};for _gfdb ,_fead :=range _afdf {_fedd (&_afdf [_gfdb ]);_fedd (_dde .Get (_fead ));};case *_ad .PdfObjectStream :_fedd (_dde .PdfObjectDictionary );case *_ad .PdfObjectStreams :for _ ,_eccff :=range _dde .Elements (){_fedd (_eccff );};case *_ad .PdfObjectReference :_fedd (_dde .Resolve ()); +};};_ebdd :=_geaa .GetObjectNums ();if len (_ebdd )> 8388607{_gbcf =append (_gbcf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0037","\u004d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020in\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0073 \u0069\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u00208\u002c\u0033\u0038\u0038\u002c\u0036\u0030\u0037\u002e")); +};for _ ,_bcgd :=range _ebdd {_cded ,_bgfea :=_geaa .GetIndirectObjectByNumber (_bcgd );if _bgfea !=nil {continue ;};_fadga :=_ad .TraceToDirectObject (_cded );_fedd (_fadga );};return _gbcf ;};func _dcc (_dfa *_ea .Document )error {for _ ,_ddg :=range _dfa .Objects {_gegb ,_ggbc :=_ad .GetDict (_ddg ); +if !_ggbc {continue ;};_ddf :=_gegb .Get ("\u0054\u0079\u0070\u0065");if _ddf ==nil {continue ;};if _gfb ,_deff :=_ad .GetName (_ddf );_deff &&_gfb .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_ab ,_eaag :=_ad .GetBool (_gegb .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073")); +if _eaag {if bool (*_ab ){_gegb .Set ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073",_ad .MakeBool (false ));};};_gge :=_gegb .Get ("\u0041");if _gge !=nil {_gegb .Remove ("\u0041");};_cce ,_eaag :=_ad .GetArray (_gegb .Get ("\u0046\u0069\u0065\u006c\u0064\u0073")); +if _eaag {for _eaad :=0;_eaad < _cce .Len ();_eaad ++{_fda ,_bgfe :=_ad .GetDict (_cce .Get (_eaad ));if !_bgfe {continue ;};if _fda .Get ("\u0041\u0041")!=nil {_fda .Remove ("\u0041\u0041");};};};};return nil ;};func _dge (_dba *_da .PdfPageResources ,_cgc *_cad .ContentStreamOperations ,_bfae bool )([]byte ,error ){var _agd bool ; +for _ ,_efcg :=range *_cgc {_fgfe :switch _efcg .Operand {case "\u0042\u0049":_aegc ,_egfg :=_efcg .Params [0].(*_cad .ContentStreamInlineImage );if !_egfg {break ;};_fdaec ,_deec :=_aegc .GetColorSpace (_dba );if _deec !=nil {return nil ,_deec ;};switch _fdaec .(type ){case *_da .PdfColorspaceDeviceCMYK :if _bfae {break _fgfe ; +};case *_da .PdfColorspaceDeviceGray :case *_da .PdfColorspaceDeviceRGB :if !_bfae {break _fgfe ;};default:break _fgfe ;};_agd =true ;_bef ,_deec :=_aegc .ToImage (_dba );if _deec !=nil {return nil ,_deec ;};_gebe ,_deec :=_bef .ToGoImage ();if _deec !=nil {return nil ,_deec ; +};if _bfae {_gebe ,_deec =_de .CMYKConverter .Convert (_gebe );}else {_gebe ,_deec =_de .NRGBAConverter .Convert (_gebe );};if _deec !=nil {return nil ,_deec ;};_cgf ,_egfg :=_gebe .(_de .Image );if !_egfg {return nil ,_gg .New ("\u0069\u006d\u0061\u0067\u0065\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074 \u0069\u006d\u0070\u006c\u0065\u006de\u006e\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u0075\u0074\u0069\u006c\u002eI\u006d\u0061\u0067\u0065"); +};_cabd :=_cgf .Base ();_fdc :=_da .Image {Width :int64 (_cabd .Width ),Height :int64 (_cabd .Height ),BitsPerComponent :int64 (_cabd .BitsPerComponent ),ColorComponents :_cabd .ColorComponents ,Data :_cabd .Data };_fdc .SetDecode (_cabd .Decode );_fdc .SetAlpha (_cabd .Alpha ); +_bfgg ,_deec :=_aegc .GetEncoder ();if _deec !=nil {_bfgg =_ad .NewFlateEncoder ();};_gdcc ,_deec :=_cad .NewInlineImageFromImage (_fdc ,_bfgg );if _deec !=nil {return nil ,_deec ;};_efcg .Params [0]=_gdcc ;case "\u0047","\u0067":if len (_efcg .Params )!=1{break ; +};_acdd ,_acda :=_ad .GetNumberAsFloat (_efcg .Params [0]);if _acda !=nil {break ;};if _bfae {_efcg .Params =[]_ad .PdfObject {_ad .MakeFloat (0),_ad .MakeFloat (0),_ad .MakeFloat (0),_ad .MakeFloat (1-_acdd )};_fbfc :="\u004b";if _efcg .Operand =="\u0067"{_fbfc ="\u006b"; +};_efcg .Operand =_fbfc ;}else {_efcg .Params =[]_ad .PdfObject {_ad .MakeFloat (_acdd ),_ad .MakeFloat (_acdd ),_ad .MakeFloat (_acdd )};_fcbb :="\u0052\u0047";if _efcg .Operand =="\u0067"{_fcbb ="\u0072\u0067";};_efcg .Operand =_fcbb ;};_agd =true ;case "\u0052\u0047","\u0072\u0067":if !_bfae {break ; +};if len (_efcg .Params )!=3{break ;};_ceacg ,_cada :=_ad .GetNumbersAsFloat (_efcg .Params );if _cada !=nil {break ;};_agd =true ;_cbbf ,_cdgd ,_aeae :=_ceacg [0],_ceacg [1],_ceacg [2];_gacd ,_fcde ,_bec ,_edea :=_g .RGBToCMYK (uint8 (_cbbf *255),uint8 (_cdgd *255),uint8 (255*_aeae )); +_efcg .Params =[]_ad .PdfObject {_ad .MakeFloat (float64 (_gacd )/255),_ad .MakeFloat (float64 (_fcde )/255),_ad .MakeFloat (float64 (_bec )/255),_ad .MakeFloat (float64 (_edea )/255)};_efac :="\u004b";if _efcg .Operand =="\u0072\u0067"{_efac ="\u006b"; +};_efcg .Operand =_efac ;case "\u004b","\u006b":if _bfae {break ;};if len (_efcg .Params )!=4{break ;};_ccbg ,_decg :=_ad .GetNumbersAsFloat (_efcg .Params );if _decg !=nil {break ;};_bfag ,_fddg ,_bcfb ,_fgef :=_ccbg [0],_ccbg [1],_ccbg [2],_ccbg [3]; +_dfe ,_eddd ,_fbbf :=_g .CMYKToRGB (uint8 (255*_bfag ),uint8 (255*_fddg ),uint8 (255*_bcfb ),uint8 (255*_fgef ));_efcg .Params =[]_ad .PdfObject {_ad .MakeFloat (float64 (_dfe )/255),_ad .MakeFloat (float64 (_eddd )/255),_ad .MakeFloat (float64 (_fbbf )/255)}; +_dcbd :="\u0052\u0047";if _efcg .Operand =="\u006b"{_dcbd ="\u0072\u0067";};_efcg .Operand =_dcbd ;_agd =true ;};};if !_agd {return nil ,nil ;};_gagf :=_cad .NewContentCreator ();for _ ,_aadb :=range *_cgc {_gagf .AddOperand (*_aadb );};_age :=_gagf .Bytes (); +return _age ,nil ;};func _agge (_efbb *_ea .Document )error {_gfbe ,_gfda :=_efbb .FindCatalog ();if !_gfda {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};_bgab ,_gfda :=_ad .GetDict (_gfbe .Object .Get ("\u0050\u0065\u0072m\u0073")); +if _gfda {_fdgf :=_ad .MakeDict ();_fedg :=_bgab .Keys ();for _ ,_egac :=range _fedg {if _egac .String ()=="\u0055\u0052\u0033"||_egac .String ()=="\u0044\u006f\u0063\u004d\u0044\u0050"{_fdgf .Set (_egac ,_bgab .Get (_egac ));};};_gfbe .Object .Set ("\u0050\u0065\u0072m\u0073",_fdgf ); +};return nil ;};func _faaa (_dcdd *_ea .Document )error {for _ ,_cfafb :=range _dcdd .Objects {_ddab ,_eddg :=_ad .GetDict (_cfafb );if !_eddg {continue ;};_cddc :=_ddab .Get ("\u0054\u0079\u0070\u0065");if _cddc ==nil {continue ;};if _aeac ,_gdge :=_ad .GetName (_cddc ); +_gdge &&_aeac .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_gfgg ,_gdgef :=_ad .GetBool (_ddab .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073"));if _gdgef &&bool (*_gfgg ){_ddab .Set ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073",_ad .MakeBool (false )); +};if _ddab .Get ("\u0058\u0046\u0041")!=nil {_ddab .Remove ("\u0058\u0046\u0041");};};_bdaa ,_ffega :=_dcdd .FindCatalog ();if !_ffega {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};if _bdaa .Object .Get ("\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067")!=nil {_bdaa .Object .Remove ("\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067");};return nil ;};func _acdf (_edcb *_ea .Document ,_eca standardType ,_fagb *_ea .OutputIntents )error {var (_dfgc *_da .PdfOutputIntent ; +_dcde error ;);if _edcb .Version .Minor <=7{_dfgc ,_dcde =_ac .NewSRGBv2OutputIntent (_eca .outputIntentSubtype ());}else {_dfgc ,_dcde =_ac .NewSRGBv4OutputIntent (_eca .outputIntentSubtype ());};if _dcde !=nil {return _dcde ;};if _dcde =_fagb .Add (_dfgc .ToPdfObject ()); +_dcde !=nil {return _dcde ;};return nil ;};func _aggbf (_daedc *_da .CompliancePdfReader )(_fdabd []ViolatedRule ){_deefcg ,_dgda :=_acgab (_daedc );if !_dgda {return _fdabd ;};_bdca ,_dgda :=_ad .GetDict (_deefcg .Get ("\u0050\u0065\u0072m\u0073"));if !_dgda {return _fdabd ; +};_cfcefd :=_bdca .Keys ();for _ ,_accf :=range _cfcefd {if _accf .String ()!="\u0055\u0052\u0033"&&_accf .String ()!="\u0044\u006f\u0063\u004d\u0044\u0050"{_fdabd =append (_fdabd ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0031","\u004e\u006f\u0020\u006b\u0065\u0079\u0073 \u006f\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0055\u0052\u0033 \u0061n\u0064\u0020\u0044\u006f\u0063\u004dD\u0050\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0065\u0072\u006d\u0069\u0073\u0073i\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u002e")); +};};return _fdabd ;};func _fdae (_bgbd *_ea .Document ,_edbb int ){if _bgbd .Version .Major ==0{_bgbd .Version .Major =1;};if _bgbd .Version .Minor < _edbb {_bgbd .Version .Minor =_edbb ;};};func _egdd (_ccdd *_da .CompliancePdfReader )ViolatedRule {_effe ,_dbea :=_ccdd .GetTrailer (); +if _dbea !=nil {_ca .Log .Debug ("\u0043\u0061\u006en\u006f\u0074\u0020\u0067e\u0074\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0076",_dbea );return _bg ;};_bacg ,_bgeea :=_effe .Get ("\u0052\u006f\u006f\u0074").(*_ad .PdfObjectReference ); +if !_bgeea {_ca .Log .Debug ("\u0043a\u006e\u006e\u006f\u0074 \u0066\u0069\u006e\u0064\u0020d\u006fc\u0075m\u0065\u006e\u0074\u0020\u0072\u006f\u006ft");return _bg ;};_aafe ,_bgeea :=_ad .GetDict (_ad .ResolveReference (_bacg ));if !_bgeea {_ca .Log .Debug ("\u0063\u0061\u006e\u006e\u006f\u0074 \u0072\u0065\u0073\u006f\u006c\u0076\u0065\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +return _bg ;};if _aafe .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073")!=nil {return _ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u0064\u006f\u0063u\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020s\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u004f\u0043\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073"); +};return _bg ;}; -// NewProfile2A creates a new Profile2A with given options. -func NewProfile2A (options *Profile2Options )*Profile2A {if options ==nil {options =DefaultProfile2Options ();};_ccdfb (options );return &Profile2A {profile2 {_afcg :*options ,_bedf :_ee ()}};};func _eed ()standardType {return standardType {_bdc :2,_dc :"\u0042"}}; -var _ Profile =(*Profile1B )(nil );func _bgaa (_bfda *_b .CompliancePdfReader )(_fede []ViolatedRule ){_fbgc :=_bfda .ParserMetadata ();if _fbgc .HasInvalidSubsectionHeader (){_fede =append (_fede ,_fe ("\u0036.\u0031\u002e\u0034\u002d\u0031","\u006e\u0020\u0061\u0020\u0063\u0072\u006f\u0073\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0073\u0065c\u0074\u0069\u006f\u006e\u0020h\u0065a\u0064\u0065\u0072\u0020t\u0068\u0065\u0020\u0073\u0074\u0061\u0072t\u0069\u006e\u0067\u0020\u006fb\u006a\u0065\u0063\u0074 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0072\u0061n\u0067e\u0020s\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020s\u0069\u006e\u0067\u006c\u0065\u0020\u0053\u0050\u0041C\u0045\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074e\u0072\u0020\u0028\u0032\u0030\u0068\u0029\u002e")); -};if _fbgc .HasInvalidSeparationAfterXRef (){_fede =append (_fede ,_fe ("\u0036.\u0031\u002e\u0034\u002d\u0032","\u0054\u0068\u0065 \u0078\u0072\u0065\u0066\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0063\u0072\u006f\u0073s\u0020\u0072\u0065\u0066e\u0072\u0065\u006e\u0063\u0065 s\u0075b\u0073\u0065\u0063ti\u006f\u006e\u0020\u0068\u0065\u0061\u0064e\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0065\u0064\u0020\u0062\u0079 \u0061\u0020\u0073i\u006e\u0067\u006c\u0065\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e")); -};return _fede ;};func _bcd (_ded *_ag .Document )error {for _ ,_dbef :=range _ded .Objects {_dfc ,_cda :=_fc .GetDict (_dbef );if !_cda {continue ;};_fcee :=_dfc .Get ("\u0054\u0079\u0070\u0065");if _fcee ==nil {continue ;};if _ggca ,_egcf :=_fc .GetName (_fcee ); -_egcf &&_ggca .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_cfd ,_dcb :=_fc .GetBool (_dfc .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073"));if _dcb {if bool (*_cfd ){_dfc .Set ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073",_fc .MakeBool (false )); -};};_ccc :=_dfc .Get ("\u0041");if _ccc !=nil {_dfc .Remove ("\u0041");};_eae ,_dcb :=_fc .GetArray (_dfc .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if _dcb {for _bge :=0;_bge < _eae .Len ();_bge ++{_ffb ,_aea :=_fc .GetDict (_eae .Get (_bge ));if !_aea {continue ; -};if _ffb .Get ("\u0041\u0041")!=nil {_ffb .Remove ("\u0041\u0041");};};};};return nil ;};var _ Profile =(*Profile2B )(nil ); +// ValidateStandard checks if provided input CompliancePdfReader matches rules that conforms PDF/A-1 standard. +func (_dafe *profile1 )ValidateStandard (r *_da .CompliancePdfReader )error {_afdbb :=VerificationError {ConformanceLevel :_dafe ._efde ._efe ,ConformanceVariant :_dafe ._efde ._ee };if _afc :=_beb (r );_afc !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_afc ); +};if _befb :=_efgg (r );_befb !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_befb );};if _gdad :=_gbdf (r );_gdad !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gdad );};if _bfdf :=_ceaf (r );_bfdf !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_bfdf ); +};if _bgee :=_fdef (r );_bgee !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_bgee );};if _debb :=_ceg (r );len (_debb )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_debb ...);};if _dcea :=_abdb (r );_dcea !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_dcea ); +};if _effd :=_aedfg (r );len (_effd )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_effd ...);};if _gcca :=_bebg (r );len (_gcca )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gcca ...);};if _edag :=_cecec (r );len (_edag )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_edag ...); +};if _gbff :=_gbfd (r );_gbff !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gbff );};if _bgdf :=_eege (r );len (_bgdf )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_bgdf ...);};if _bfbb :=_bedf (r );len (_bfbb )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_bfbb ...); +};if _gage :=_egdd (r );_gage !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gage );};if _dcdg :=_faabd (r ,false );len (_dcdg )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_dcdg ...);};if _bcbf :=_gbcfg (r );len (_bcbf )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_bcbf ...); +};if _cafd :=_dadf (r );_cafd !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_cafd );};if _eeag :=_edfb (r );_eeag !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_eeag );};if _cca :=_adde (r );_cca !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_cca ); +};if _ffcd :=_bcdf (r );_ffcd !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_ffcd );};if _gcda :=_feda (r );_gcda !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gcda );};if _gacg :=_bbac (r );len (_gacg )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gacg ...); +};if _edca :=_decc (r ,_dafe ._efde );len (_edca )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_edca ...);};if _fdde :=_fgeb (r );len (_fdde )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_fdde ...);};if _fcbf :=_gaae (r );_fcbf !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_fcbf ); +};if _baec :=_bceg (r );_baec !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_baec );};if _eaf :=_afcg (r );len (_eaf )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_eaf ...);};if _bde :=_ebge (r );len (_bde )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_bde ...); +};if _gdgeb :=_dgdb (r );_gdgeb !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gdgeb );};if _cdde :=_ecff (r );_cdde !=_bg {_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_cdde );};if _gggc :=_fgab (r ,_dafe ._efde ,false );len (_gggc )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_gggc ...); +};if _dafe ._efde ==_df (){if _dgfa :=_afdbea (r );len (_dgfa )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_dgfa ...);};};if _cade :=_bdbeb (r );len (_cade )!=0{_afdbb .ViolatedRules =append (_afdbb .ViolatedRules ,_cade ...);};if len (_afdbb .ViolatedRules )> 0{_cg .Slice (_afdbb .ViolatedRules ,func (_dacd ,_bcgc int )bool {return _afdbb .ViolatedRules [_dacd ].RuleNo < _afdbb .ViolatedRules [_bcgc ].RuleNo ; +});return _afdbb ;};return nil ;};func _dbfde (_afcgb *_da .CompliancePdfReader ,_aedb standardType )(_cbag []ViolatedRule ){var _ebde ,_bfedd ,_gfgb ,_accgf ,_dbfa ,_aabe ,_abde bool ;_dfgcc :=func ()bool {return _ebde &&_bfedd &&_gfgb &&_accgf &&_dbfa &&_aabe &&_abde }; +_gbadg :=map[*_ad .PdfObjectStream ]*_b .CMap {};_faadb :=map[*_ad .PdfObjectStream ][]byte {};_aebc :=map[_ad .PdfObject ]*_da .PdfFont {};for _ ,_fabeed :=range _afcgb .GetObjectNums (){_bfddb ,_ceebd :=_afcgb .GetIndirectObjectByNumber (_fabeed );if _ceebd !=nil {continue ; +};_gagc ,_beaea :=_ad .GetDict (_bfddb );if !_beaea {continue ;};_ebbeb ,_beaea :=_ad .GetName (_gagc .Get ("\u0054\u0079\u0070\u0065"));if !_beaea {continue ;};if *_ebbeb !="\u0046\u006f\u006e\u0074"{continue ;};_ffed ,_ceebd :=_da .NewPdfFontFromPdfObject (_gagc ); +if _ceebd !=nil {_ca .Log .Debug ("g\u0065\u0074\u0074\u0069\u006e\u0067 \u0066\u006f\u006e\u0074\u0020\u0066r\u006f\u006d\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020%\u0076",_ceebd );continue ;};_aebc [_gagc ]=_ffed ; +};for _ ,_bcbge :=range _afcgb .PageList {_bbaf ,_ccecc :=_bcbge .GetContentStreams ();if _ccecc !=nil {_ca .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067 \u0070\u0061\u0067\u0065\u0020\u0063o\u006e\u0074\u0065\u006e\u0074\u0020\u0073t\u0072\u0065\u0061\u006d\u0073\u0020\u0066\u0061\u0069\u006ce\u0064"); +continue ;};for _ ,_edbc :=range _bbaf {_cgff :=_cad .NewContentStreamParser (_edbc );_egag ,_fedfb :=_cgff .Parse ();if _fedfb !=nil {_ca .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u0074r\u0065\u0061\u006d\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_fedfb ); +continue ;};var _cdgce bool ;for _ ,_efedg :=range *_egag {if _efedg .Operand !="\u0054\u0072"{continue ;};if len (_efedg .Params )!=1{_ca .Log .Debug ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054\u0072\u0027\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u002c\u0020\u0065\u0078\u0070e\u0063\u0074\u0065\u0064\u0020\u0027\u0031\u0027\u0020\u0062\u0075\u0074 \u0069\u0073\u003a\u0020\u0027\u0025d\u0027",len (_efedg .Params )); +continue ;};_ccdb ,_cgba :=_ad .GetIntVal (_efedg .Params [0]);if !_cgba {_ca .Log .Debug ("\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u006d\u006f\u0064\u0065\u0020i\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); +continue ;};if _ccdb ==3{_cdgce =true ;break ;};};for _ ,_bdaabc :=range *_egag {if _bdaabc .Operand !="\u0054\u0066"{continue ;};if len (_bdaabc .Params )!=2{_ca .Log .Debug ("i\u006eva\u006ci\u0064 \u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066 \u0070\u0061\u0072\u0061\u006de\u0074\u0065\u0072s\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054f\u0027\u0020\u006fper\u0061\u006e\u0064\u002c\u0020\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0027\u0032\u0027\u0020\u0069s\u003a \u0027\u0025\u0064\u0027",len (_bdaabc .Params )); +continue ;};_ceceb ,_efbecb :=_ad .GetName (_bdaabc .Params [0]);if !_efbecb {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u004ea\u006d\u0065\u0056\u0061\u006c\u0020\u0066a\u0069\u006c\u0065\u0064",_bdaabc ); +continue ;};_eeffe ,_ggfca :=_bcbge .Resources .GetFontByName (*_ceceb );if !_ggfca {_ca .Log .Debug ("\u0066\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");continue ;};_cgfe ,_efbecb :=_ad .GetDict (_eeffe );if !_efbecb {_ca .Log .Debug ("\u0066\u006f\u006e\u0074 d\u0069\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +continue ;};_bgca ,_efbecb :=_aebc [_cgfe ];if !_efbecb {var _gcdg error ;_bgca ,_gcdg =_da .NewPdfFontFromPdfObject (_cgfe );if _gcdg !=nil {_ca .Log .Debug ("\u0067\u0065\u0074\u0074i\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0066\u0072o\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_gcdg ); +continue ;};_aebc [_cgfe ]=_bgca ;};if !_ebde {_bfde :=_dgce (_cgfe ,_faadb ,_gbadg );if _bfde !=_bg {_cbag =append (_cbag ,_bfde );_ebde =true ;if _dfgcc (){return _cbag ;};};};if !_bfedd {_efef :=_dgag (_cgfe );if _efef !=_bg {_cbag =append (_cbag ,_efef ); +_bfedd =true ;if _dfgcc (){return _cbag ;};};};if !_gfgb {_ebda :=_aaabb (_cgfe ,_faadb ,_gbadg );if _ebda !=_bg {_cbag =append (_cbag ,_ebda );_gfgb =true ;if _dfgcc (){return _cbag ;};};};if !_accgf {_edfe :=_dcdec (_cgfe ,_faadb ,_gbadg );if _edfe !=_bg {_cbag =append (_cbag ,_edfe ); +_accgf =true ;if _dfgcc (){return _cbag ;};};};if !_dbfa {_edcbe :=_gdaca (_bgca ,_cgfe ,_cdgce );if _edcbe !=_bg {_dbfa =true ;_cbag =append (_cbag ,_edcbe );if _dfgcc (){return _cbag ;};};};if !_aabe {_cdafe :=_dgcea (_bgca ,_cgfe );if _cdafe !=_bg {_aabe =true ; +_cbag =append (_cbag ,_cdafe );if _dfgcc (){return _cbag ;};};};if !_abde &&(_aedb ._ee =="\u0041"||_aedb ._ee =="\u0055"){_ggfcc :=_eecad (_cgfe ,_faadb ,_gbadg );if _ggfcc !=_bg {_abde =true ;_cbag =append (_cbag ,_ggfcc );if _dfgcc (){return _cbag ; +};};};};};};return _cbag ;};func _dabb (_cfdae *_ad .PdfObjectDictionary )ViolatedRule {const (_bgbg ="\u0036.\u0033\u002e\u0033\u002d\u0032";_dcaa ="\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0054y\u0070\u0065\u0020\u0032\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0061\u0072\u0065\u0020\u0075\u0073\u0065\u0064\u0020f\u006f\u0072 \u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067,\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0046\u006fn\u0074\u0020\u0064\u0069c\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c \u0063\u006f\u006e\u0074\u0061i\u006e\u0020\u0061\u0020\u0043\u0049\u0044\u0054\u006f\u0047\u0049D\u004d\u0061\u0070\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020a\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006d\u0061\u0070\u0070\u0069\u006e\u0067\u0020\u0066\u0072\u006f\u006d\u0020\u0043\u0049\u0044\u0073\u0020\u0074\u006f\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u0069\u006e\u0064\u0069c\u0065\u0073\u0020\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u0049d\u0065\u006e\u0074\u0069\u0074\u0079\u002c\u0020\u0061s d\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069n\u0020P\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072e\u006e\u0063\u0065\u0020\u0054a\u0062\u006c\u0065\u0020\u0035\u002e\u00313"; +);var _abfe string ;if _fdggg ,_cfbe :=_ad .GetName (_cfdae .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cfbe {_abfe =_fdggg .String ();};if _abfe !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{return _bg ;};if _cfdae .Get ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070")==nil {return _ba (_bgbg ,_dcaa ); +};return _bg ;};func _edfb (_dfag *_da .CompliancePdfReader )(_dbac ViolatedRule ){for _ ,_ccbd :=range _dfag .GetObjectNums (){_cgcgb ,_dbbf :=_dfag .GetIndirectObjectByNumber (_ccbd );if _dbbf !=nil {continue ;};_dfcf ,_fagf :=_ad .GetStream (_cgcgb ); +if !_fagf {continue ;};_aege ,_fagf :=_ad .GetName (_dfcf .Get ("\u0054\u0079\u0070\u0065"));if !_fagf {continue ;};if *_aege !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};if _dfcf .Get ("\u0052\u0065\u0066")!=nil {return _ba ("\u0036.\u0032\u002e\u0036\u002d\u0031","\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0058O\u0062\u006a\u0065\u0063\u0074s\u002e"); +};};return _dbac ;};func _fefc (_aaef *_da .CompliancePdfReader )(_daeb ViolatedRule ){for _ ,_fefea :=range _aaef .GetObjectNums (){_cgfc ,_dbdaf :=_aaef .GetIndirectObjectByNumber (_fefea );if _dbdaf !=nil {continue ;};_dfef ,_bfffc :=_ad .GetStream (_cgfc ); +if !_bfffc {continue ;};_eegaf ,_bfffc :=_ad .GetName (_dfef .Get ("\u0054\u0079\u0070\u0065"));if !_bfffc {continue ;};if *_eegaf !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_ ,_bfffc =_ad .GetName (_dfef .Get ("\u004f\u0050\u0049"));if _bfffc {return _ba ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072m\u0020\u0058\u004f\u0062\u006a\u0065c\u0074\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u003a \u002d\u0020\u0074\u0068\u0065\u0020O\u0050\u0049\u0020\u006b\u0065\u0079\u003b \u002d\u0020\u0074\u0068e \u0053u\u0062\u0074\u0079\u0070\u0065\u0032 ke\u0079 \u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061l\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u003b\u0020\u002d \u0074\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); +};_febf ,_bfffc :=_ad .GetName (_dfef .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032"));if !_bfffc {continue ;};if *_febf =="\u0050\u0053"{return _ba ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072m\u0020\u0058\u004f\u0062\u006a\u0065c\u0074\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u003a \u002d\u0020\u0074\u0068\u0065\u0020O\u0050\u0049\u0020\u006b\u0065\u0079\u003b \u002d\u0020\u0074\u0068e \u0053u\u0062\u0074\u0079\u0070\u0065\u0032 ke\u0079 \u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061l\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u003b\u0020\u002d \u0074\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); +};if _dfef .Get ("\u0050\u0053")!=nil {return _ba ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072m\u0020\u0058\u004f\u0062\u006a\u0065c\u0074\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u003a \u002d\u0020\u0074\u0068\u0065\u0020O\u0050\u0049\u0020\u006b\u0065\u0079\u003b \u002d\u0020\u0074\u0068e \u0053u\u0062\u0074\u0079\u0070\u0065\u0032 ke\u0079 \u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061l\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u003b\u0020\u002d \u0074\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); +};};return _daeb ;};func _eface (_bcfe ,_efae ,_fad ,_bfge string )(string ,bool ){_eab :=_eg .Index (_bcfe ,_efae );if _eab ==-1{return "",false ;};_gggbc :=_eg .Index (_bcfe ,_fad );if _gggbc ==-1{return "",false ;};if _gggbc < _eab {return "",false ; +};return _bcfe [:_eab ]+_efae +_bfge +_bcfe [_gggbc :],true ;};func _ggef (_cbfe *_da .CompliancePdfReader )(_cbcg []ViolatedRule ){var _aced ,_egdg ,_gfbc ,_dagcc ,_aaea ,_degaa ,_adggb bool ;_bdbec :=map[*_ad .PdfObjectStream ]struct{}{};for _ ,_ceaad :=range _cbfe .GetObjectNums (){if _aced &&_egdg &&_aaea &&_gfbc &&_dagcc &&_degaa &&_adggb {return _cbcg ; +};_bade ,_gadca :=_cbfe .GetIndirectObjectByNumber (_ceaad );if _gadca !=nil {continue ;};_gaga ,_bgbf :=_ad .GetStream (_bade );if !_bgbf {continue ;};if _ ,_bgbf =_bdbec [_gaga ];_bgbf {continue ;};_bdbec [_gaga ]=struct{}{};_fedea ,_bgbf :=_ad .GetName (_gaga .Get ("\u0053u\u0062\u0054\u0079\u0070\u0065")); +if !_bgbf {continue ;};if !_dagcc {if _gaga .Get ("\u0052\u0065\u0066")!=nil {_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0039\u002d\u0032","\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0058O\u0062\u006a\u0065\u0063\u0074s\u002e")); +_dagcc =true ;};};if _fedea .String ()=="\u0050\u0053"{if !_degaa {_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0039\u002d\u0033","A \u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066i\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0050\u006f\u0073t\u0053c\u0072\u0069\u0070\u0074\u0020\u0058\u004f\u0062j\u0065c\u0074\u0073.")); +_degaa =true ;continue ;};};if _fedea .String ()=="\u0046\u006f\u0072\u006d"{if _egdg &&_gfbc &&_dagcc {continue ;};if !_egdg &&_gaga .Get ("\u004f\u0050\u0049")!=nil {_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072\u006d \u0058\u004f\u0062j\u0065\u0063\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0073\u0068\u0061\u006c\u006c n\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u004f\u0050\u0049\u0020\u006b\u0065\u0079\u002e")); +_egdg =true ;};if !_gfbc {if _gaga .Get ("\u0050\u0053")!=nil {_gfbc =true ;};if _egafb :=_gaga .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");_egafb !=nil &&!_gfbc {if _babe ,_fedbc :=_ad .GetName (_egafb );_fedbc &&*_babe =="\u0050\u0053"{_gfbc =true ; +};};if _gfbc {_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065y \u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076\u0061\u006cu\u0065 o\u0066 \u0050\u0053\u0020\u0061\u006e\u0064\u0020t\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e")); +};};continue ;};if _fedea .String ()!="\u0049\u006d\u0061g\u0065"{continue ;};if !_aced &&_gaga .Get ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073")!=nil {_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0038\u002d\u0031","\u0041\u006e\u0020\u0049m\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073\u0020\u006b\u0065\u0079\u002e")); +_aced =true ;};if !_adggb &&_gaga .Get ("\u004f\u0050\u0049")!=nil {_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0038\u002d\u0032","\u0041\u006e\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0068\u0065\u0020\u004f\u0050\u0049\u0020\u006b\u0065\u0079\u002e")); +_adggb =true ;};if !_aaea &&_gaga .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065")!=nil {_degc ,_eedc :=_ad .GetBool (_gaga .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065"));if _eedc &&bool (*_degc ){continue ; +};_cbcg =append (_cbcg ,_ba ("\u0036.\u0032\u002e\u0038\u002d\u0033","\u0049\u0066 a\u006e\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0063o\u006e\u0074\u0061\u0069n\u0073\u0020\u0074\u0068e \u0049\u006et\u0065r\u0070\u006f\u006c\u0061\u0074\u0065 \u006b\u0065\u0079,\u0020\u0069t\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020b\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); +_aaea =true ;};};return _cbcg ;};func _cdae (_fab *_ea .Document ,_edc func ()_a .Time )error {_ddac ,_cfc :=_da .NewPdfInfoFromObject (_fab .Info );if _cfc !=nil {return _cfc ;};if _efg :=_cfbb (_ddac ,_edc );_efg !=nil {return _efg ;};_fab .Info =_ddac .ToPdfObject (); +return nil ;};func _beb (_ecee *_da .CompliancePdfReader )ViolatedRule {if _ecee .ParserMetadata ().HeaderPosition ()!=0{return _ba ("\u0036.\u0031\u002e\u0032\u002d\u0031","h\u0065\u0061\u0064\u0065\u0072\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0061\u0074\u0020\u0074\u0068\u0065\u0020fi\u0072\u0073\u0074 \u0062y\u0074\u0065"); +};return _bg ;};func _ceeeb (_ecba *_da .CompliancePdfReader )(_aceb []ViolatedRule ){_cdfg ,_dgfaf :=_acgab (_ecba );if !_dgfaf {return _aceb ;};_dffgd ,_dgfaf :=_ad .GetDict (_cdfg .Get ("\u004e\u0061\u006de\u0073"));if !_dgfaf {return _aceb ;};if _dffgd .Get ("\u0041\u006c\u0074\u0065rn\u0061\u0074\u0065\u0050\u0072\u0065\u0073\u0065\u006e\u0074\u0061\u0074\u0069\u006fn\u0073")!=nil {_aceb =append (_aceb ,_ba ("\u0036\u002e\u0031\u0030\u002d\u0031","T\u0068\u0065\u0072e\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u006e\u006f\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0050\u0072\u0065s\u0065\u006e\u0074a\u0074\u0069\u006f\u006e\u0073\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0069n\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075m\u0065\u006e\u0074\u0027\u0073\u0020\u006e\u0061\u006d\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002e")); +};return _aceb ;};func (_ebb *documentImages )hasOnlyDeviceCMYK ()bool {return _ebb ._fc &&!_ebb ._eea &&!_ebb ._eeb };func _acag (_cdea *_da .CompliancePdfReader )(_geac []ViolatedRule ){_ggda ,_ccbc :=_acgab (_cdea );if !_ccbc {return _geac ;};_cbbd :=_ba ("\u0036.\u0032\u002e\u0032\u002d\u0031","\u0041\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074e\u006e\u0074\u0020\u0069\u0073\u0020a\u006e \u004f\u0075\u0074\u0070\u0075\u0074\u0049n\u0074\u0065\u006e\u0074\u0020\u0064i\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0062y\u0020\u0050\u0044F\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0031\u0030.4\u002c\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0073 \u0069\u006e\u0063\u006c\u0075\u0064e\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0027\u0073\u0020O\u0075\u0074p\u0075\u0074I\u006e\u0074\u0065\u006e\u0074\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020a\u006e\u0064\u0020h\u0061\u0073\u0020\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0041\u0031\u0020\u0061\u0073 \u0074\u0068\u0065\u0020\u0076a\u006c\u0075e\u0020\u006f\u0066\u0020i\u0074\u0073 \u0053\u0020\u006b\u0065\u0079\u0020\u0061\u006e\u0064\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020I\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006ce\u0020s\u0074\u0072\u0065\u0061\u006d \u0061\u0073\u0020\u0074h\u0065\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0074\u0073\u0020\u0044\u0065\u0073t\u004f\u0075t\u0070\u0075\u0074P\u0072\u006f\u0066\u0069\u006c\u0065 \u006b\u0065\u0079\u002e"); +_gcfg ,_ccbc :=_ad .GetArray (_ggda .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073"));if !_ccbc {_geac =append (_geac ,_cbbd );return _geac ;};_aece :=_ba ("\u0036.\u0032\u002e\u0032\u002d\u0032","\u0049\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065's\u0020O\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073 \u0061\u0072\u0072a\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068a\u006e\u0020\u006f\u006ee\u0020\u0065\u006e\u0074\u0072\u0079\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0065n\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e a \u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006cl\u0020\u0068\u0061\u0076\u0065 \u0061\u0073\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068a\u0074\u0020\u006b\u0065\u0079 \u0074\u0068\u0065\u0020\u0073\u0061\u006d\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065c\u0074\u0020\u006fb\u006ae\u0063t\u002c\u0020\u0077h\u0069\u0063\u0068\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069d\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074r\u0065\u0061m\u002e"); +if _gcfg .Len ()> 1{_eade :=map[*_ad .PdfObjectDictionary ]struct{}{};for _fabd :=0;_fabd < _gcfg .Len ();_fabd ++{_fabb ,_ccec :=_ad .GetDict (_gcfg .Get (_fabd ));if !_ccec {_geac =append (_geac ,_cbbd );return _geac ;};if _fabd ==0{_eade [_fabb ]=struct{}{}; +continue ;};if _ ,_ffcda :=_eade [_fabb ];!_ffcda {_geac =append (_geac ,_aece );break ;};};}else if _gcfg .Len ()==0{_geac =append (_geac ,_cbbd );return _geac ;};_bgcf ,_ccbc :=_ad .GetDict (_gcfg .Get (0));if !_ccbc {_geac =append (_geac ,_cbbd );return _geac ; +};if _fccd ,_bfgc :=_ad .GetName (_bgcf .Get ("\u0053"));!_bfgc ||(*_fccd )!="\u0047T\u0053\u005f\u0050\u0044\u0046\u00411"{_geac =append (_geac ,_cbbd );return _geac ;};_cebg ,_bcaa :=_da .NewPdfOutputIntentFromPdfObject (_bgcf );if _bcaa !=nil {_ca .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020i\u006et\u0065\u006e\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_bcaa ); +return _geac ;};_bcef ,_bcaa :=_ac .ParseHeader (_cebg .DestOutputProfile );if _bcaa !=nil {_ca .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061d\u0065\u0072\u0020\u0066\u0061i\u006c\u0065d\u003a\u0020\u0025\u0076",_bcaa ); +return _geac ;};if (_bcef .DeviceClass ==_ac .DeviceClassPRTR ||_bcef .DeviceClass ==_ac .DeviceClassMNTR )&&(_bcef .ColorSpace ==_ac .ColorSpaceRGB ||_bcef .ColorSpace ==_ac .ColorSpaceCMYK ||_bcef .ColorSpace ==_ac .ColorSpaceGRAY ){return _geac ;};_geac =append (_geac ,_cbbd ); +return _geac ;};func _acb (_ggb *_ea .Document )error {_gda :=func (_bagc *_ad .PdfObjectDictionary )error {if _ed :=_bagc .Get ("\u0053\u004d\u0061s\u006b");_ed !=nil {_bagc .Set ("\u0053\u004d\u0061s\u006b",_ad .MakeName ("\u004e\u006f\u006e\u0065")); +};_ddc :=_bagc .Get ("\u0043\u0041");if _ddc !=nil {_ccg ,_daf :=_ad .GetNumberAsFloat (_ddc );if _daf !=nil {_ca .Log .Debug ("\u0045x\u0074\u0047S\u0074\u0061\u0074\u0065 \u006f\u0062\u006ae\u0063\u0074\u0020\u0043\u0041\u0020\u0076\u0061\u006cue\u0020\u0069\u0073 \u006e\u006ft\u0020\u0061\u0020\u0066\u006c\u006fa\u0074\u003a \u0025\u0076",_daf ); +_ccg =0;};if _ccg !=1.0{_bagc .Set ("\u0043\u0041",_ad .MakeFloat (1.0));};};_ddc =_bagc .Get ("\u0063\u0061");if _ddc !=nil {_cda ,_agba :=_ad .GetNumberAsFloat (_ddc );if _agba !=nil {_ca .Log .Debug ("\u0045\u0078t\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0027\u0063\u0061\u0027\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0066\u006c\u006f\u0061\u0074\u003a\u0020\u0025\u0076",_agba ); +_cda =0;};if _cda !=1.0{_bagc .Set ("\u0063\u0061",_ad .MakeFloat (1.0));};};_ce :=_bagc .Get ("\u0042\u004d");if _ce !=nil {_gbd ,_eaa :=_ad .GetName (_ce );if !_eaa {_ca .Log .Debug ("E\u0078\u0074\u0047\u0053\u0074\u0061t\u0065\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0027\u0042\u004d\u0027\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061m\u0065"); +_gbd =_ad .MakeName ("");};_gfeg :=_gbd .String ();switch _gfeg {case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065":default:_bagc .Set ("\u0042\u004d",_ad .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c")); +};};_edd :=_bagc .Get ("\u0054\u0052");if _edd !=nil {_ca .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0054\u0052\u0020\u006b\u0065\u0079"); +_bagc .Remove ("\u0054\u0052");};_egc :=_bagc .Get ("\u0054\u0052\u0032");if _egc !=nil {_dc :=_egc .String ();if _dc !="\u0044e\u0066\u0061\u0075\u006c\u0074"{_ca .Log .Debug ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074\u0065 o\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073 \u0054\u00522\u0020\u006b\u0065y\u0020\u0077\u0069\u0074\u0068\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0074\u0068\u0065r\u0020\u0074ha\u006e\u0020\u0044e\u0066\u0061\u0075\u006c\u0074"); +_bagc .Set ("\u0054\u0052\u0032",_ad .MakeName ("\u0044e\u0066\u0061\u0075\u006c\u0074"));};};return nil ;};_aad ,_efd :=_ggb .GetPages ();if !_efd {return nil ;};for _ ,_dbe :=range _aad {_fgd ,_bbf :=_dbe .GetResources ();if !_bbf {continue ;};_fgc ,_feab :=_ad .GetDict (_fgd .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e")); +if !_feab {return nil ;};_bead :=_fgc .Keys ();for _ ,_ebcc :=range _bead {_cfa ,_fggg :=_ad .GetDict (_fgc .Get (_ebcc ));if !_fggg {continue ;};_fbb :=_gda (_cfa );if _fbb !=nil {continue ;};};};for _ ,_gdc :=range _aad {_dade ,_acg :=_gdc .GetContents (); +if !_acg {return nil ;};for _ ,_ggg :=range _dade {_gdcg ,_cde :=_ggg .GetData ();if _cde !=nil {continue ;};_cbc :=_cad .NewContentStreamParser (string (_gdcg ));_eeca ,_cde :=_cbc .Parse ();if _cde !=nil {continue ;};for _ ,_fdf :=range *_eeca {if len (_fdf .Params )==0{continue ; +};_ ,_efb :=_ad .GetName (_fdf .Params [0]);if !_efb {continue ;};_dda ,_ge :=_gdc .GetResourcesXObject ();if !_ge {continue ;};for _ ,_agf :=range _dda .Keys (){_bcb ,_bcf :=_ad .GetStream (_dda .Get (_agf ));if !_bcf {continue ;};_bfg ,_bcf :=_ad .GetDict (_bcb .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); +if !_bcf {continue ;};_adg ,_bcf :=_ad .GetDict (_bfg .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_bcf {continue ;};for _ ,_cdc :=range _adg .Keys (){_gcc ,_cee :=_ad .GetDict (_adg .Get (_cdc ));if !_cee {continue ;};_gbb :=_gda (_gcc ); +if _gbb !=nil {continue ;};};};};};};return nil ;};func _aaabb (_dbee *_ad .PdfObjectDictionary ,_bdag map[*_ad .PdfObjectStream ][]byte ,_fadb map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_edcd ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0033"; +_efgfe ="\u0041\u006c\u006c \u0043\u004d\u0061\u0070s\u0020\u0075\u0073ed\u0020\u0077\u0069\u0074\u0068i\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0032\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0065\u0078\u0063\u0065\u0070\u0074 th\u006f\u0073\u0065\u0020\u006ci\u0073\u0074\u0065\u0064\u0020i\u006e\u0020\u0049\u0053\u004f\u0020\u0033\u00320\u00300\u002d1\u003a\u0032\u0030\u0030\u0038\u002c\u0020\u0039\u002e\u0037\u002e\u0035\u002e\u0032\u002c\u0020\u0054\u0061\u0062\u006c\u0065 \u0031\u00318,\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0069\u006e \u0074\u0068\u0061\u0074\u0020\u0066\u0069\u006c\u0065\u0020\u0061\u0073\u0020\u0064e\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0049\u0053\u004f\u0020\u0033\u0032\u00300\u0030-\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u00209\u002e\u0037\u002e\u0035\u002e"; +);var _abec string ;if _cbgc ,_edgaa :=_ad .GetName (_dbee .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_edgaa {_abec =_cbgc .String ();};if _abec !="\u0054\u0079\u0070e\u0030"{return _bg ;};_gfdca :=_dbee .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +if _agdg ,_bfbfd :=_ad .GetName (_gfdca );_bfbfd {switch _agdg .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _bg ;default:return _ba (_edcd ,_efgfe ); +};};_bdee ,_edgda :=_ad .GetStream (_gfdca );if !_edgda {return _ba (_edcd ,_efgfe );};_ ,_cgbab :=_ggag (_bdee ,_bdag ,_fadb );if _cgbab !=nil {return _ba (_edcd ,_efgfe );};return _bg ;};func _dfgdgd (_gfcg *_da .CompliancePdfReader )(_eged []ViolatedRule ){_egbe :=true ; +_aaefd ,_cadf :=_gfcg .GetCatalogMarkInfo ();if !_cadf {_egbe =false ;}else {_aegd ,_cagc :=_ad .GetDict (_aaefd );if _cagc {_aaedb ,_fbbb :=_ad .GetBool (_aegd .Get ("\u004d\u0061\u0072\u006b\u0065\u0064"));if !bool (*_aaedb )||!_fbbb {_egbe =false ;}; +}else {_egbe =false ;};};if !_egbe {_eged =append (_eged ,_ba ("\u0036.\u0037\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006cog\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u0020M\u0061r\u006b\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061 \u004d\u0061\u0072\u006b\u0065\u0064\u0020\u0065\u006et\u0072\u0079\u0020\u0069\u006e\u0020\u0069\u0074,\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0076\u0061lu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0072\u0075\u0065")); +};_gfbfd ,_cadf :=_gfcg .GetCatalogStructTreeRoot ();if !_cadf {_eged =append (_eged ,_ba ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0020\u0073\u0074\u0072\u0075\u0063\u0074\u0075r\u0065\u0020\u006f\u0066\u0020\u0074\u0068e\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067 \u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065d \u0062\u0079\u0020a\u0020s\u0074\u0072\u0075\u0063\u0074\u0075\u0072e\u0020\u0068\u0069\u0065\u0072\u0061\u0072\u0063\u0068\u0079\u0020\u0072\u006f\u006ft\u0065\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0065\u006e\u0074r\u0079\u0020\u006f\u0066\u0020\u0074h\u0065\u0020d\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061t\u0061\u006c\u006fg \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069n\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0036\u002e")); +};_bffb ,_cadf :=_ad .GetDict (_gfbfd );if _cadf {_cagfcg ,_efca :=_ad .GetName (_bffb .Get ("\u0052o\u006c\u0065\u004d\u0061\u0070"));if _efca {_cdeg ,_bbbe :=_ad .GetDict (_cagfcg );if _bbbe {for _ ,_ggaa :=range _cdeg .Keys (){_bdgb :=_cdeg .Get (_ggaa ); +if _bdgb ==nil {_eged =append (_eged ,_ba ("\u0036.\u0037\u002e\u0033\u002d\u0032","\u0041\u006c\u006c\u0020\u006eo\u006e\u002ds\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0073t\u0072\u0075\u0063\u0074ure\u0020\u0074\u0079\u0070\u0065s\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u006d\u0061\u0070\u0070\u0065d\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020n\u0065\u0061\u0072\u0065\u0073\u0074\u0020\u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0073\u0074a\u006ed\u0061r\u0064\u0020\u0074\u0079\u0070\u0065\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006ee\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065re\u006e\u0063e\u0020\u0039\u002e\u0037\u002e\u0034\u002c\u0020i\u006e\u0020\u0074\u0068e\u0020\u0072\u006fl\u0065\u0020\u006d\u0061p \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0066 \u0074h\u0065\u0020\u0073\u0074\u0072\u0075c\u0074\u0075r\u0065\u0020\u0074\u0072e\u0065\u0020\u0072\u006f\u006ft\u002e")); +};};};};};return _eged ;}; -// NewProfile2U creates a new Profile2U with the given options. -func NewProfile2U (options *Profile2Options )*Profile2U {if options ==nil {options =DefaultProfile2Options ();};_ccdfb (options );return &Profile2U {profile2 {_afcg :*options ,_bedf :_fcd ()}};};func _efcea (_cabe *_b .PdfFont ,_deca *_fc .PdfObjectDictionary ,_cgadc bool )ViolatedRule {const (_befd ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0034\u002d\u0031"; -_gbge ="\u0054\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0070\u0072\u006f\u0067\u0072\u0061\u006ds\u0020\u0066\u006fr\u0020\u0061\u006c\u006c\u0020f\u006f\u006e\u0074\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0072e\u006e\u0064\u0065\u0072\u0069\u006eg\u0020\u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020w\u0069t\u0068\u0069\u006e\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u0069\u006c\u0065\u002c \u0061\u0073\u0020\u0064\u0065\u0066\u0069n\u0065\u0064 \u0069\u006e\u0020\u0049S\u004f\u0020\u0033\u0032\u00300\u0030\u002d\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u0020\u0039\u002e\u0039\u002e"; -);if _cgadc {return _da ;};_gbaed :=_cabe .FontDescriptor ();var _dggdb string ;if _cdgg ,_fbcae :=_fc .GetName (_deca .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_fbcae {_dggdb =_cdgg .String ();};switch _dggdb {case "\u0054\u0079\u0070e\u0031":if _gbaed .FontFile ==nil {return _fe (_befd ,_gbge ); -};case "\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":if _gbaed .FontFile2 ==nil {return _fe (_befd ,_gbge );};case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0033":default:if _gbaed .FontFile3 ==nil {return _fe (_befd ,_gbge );};};return _da ; -};func _fe (_fag string ,_fab string )ViolatedRule {return ViolatedRule {RuleNo :_fag ,Detail :_fab }};func _egb (_cggf *_b .CompliancePdfReader )(*_fc .PdfObjectDictionary ,bool ){_ggbe ,_edac :=_faac (_cggf );if !_edac {return nil ,false ;};_feae ,_edac :=_fc .GetArray (_ggbe .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073")); -if !_edac {return nil ,false ;};if _feae .Len ()==0{return nil ,false ;};return _fc .GetDict (_feae .Get (0));}; +// VerificationError is the PDF/A verification error structure, that contains all violated rules. +type VerificationError struct{ -// Error implements error interface. -func (_edf VerificationError )Error ()string {_ac :=_ed .Builder {};_ac .WriteString ("\u0053\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u003a\u0020");_ac .WriteString (_g .Sprintf ("\u0050\u0044\u0046\u002f\u0041\u002d\u0025\u0064\u0025\u0073",_edf .ConformanceLevel ,_edf .ConformanceVariant )); -_ac .WriteString ("\u0020\u0056\u0069\u006f\u006c\u0061\u0074\u0065\u0064\u0020\u0072\u0075l\u0065\u0073\u003a\u0020");for _bg ,_fgb :=range _edf .ViolatedRules {_ac .WriteString (_fgb .String ());if _bg !=len (_edf .ViolatedRules )-1{_ac .WriteRune ('\n'); -};};return _ac .String ();}; +// ViolatedRules are the rules that were violated during error verification. +ViolatedRules []ViolatedRule ; -// DefaultProfile1Options are the default options for the Profile1. -func DefaultProfile1Options ()*Profile1Options {return &Profile1Options {Now :_c .Now ,Xmp :XmpOptions {MarshalIndent :"\u0009"}};};func _edbdd (_cbc standardType ,_eag *_ag .OutputIntents )error {_eece ,_gead :=_fa .NewISOCoatedV2Gray1CBasOutputIntent (_cbc .outputIntentSubtype ()); -if _gead !=nil {return _gead ;};if _gead =_eag .Add (_eece .ToPdfObject ());_gead !=nil {return _gead ;};return nil ;}; +// ConformanceLevel defines the standard on verification failed. +ConformanceLevel int ; -// ViolatedRule is the structure that defines violated PDF/A rule. -type ViolatedRule struct{RuleNo string ;Detail string ;};func _de ()standardType {return standardType {_bdc :1,_dc :"\u0041"}};func _dfgfg (_eacgd *_b .CompliancePdfReader )(_fagab ViolatedRule ){_eeccf ,_beagd :=_faac (_eacgd );if !_beagd {return _da ; -};if _eeccf .Get ("\u0052\u0065\u0071u\u0069\u0072\u0065\u006d\u0065\u006e\u0074\u0073")!=nil {return _fe ("\u0036\u002e\u0031\u0031\u002d\u0031","Th\u0065\u0020d\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0063a\u0074\u0061\u006c\u006f\u0067\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020R\u0065q\u0075\u0069\u0072\u0065\u006d\u0065\u006e\u0074s\u0020k\u0065\u0079."); -};return _da ;};func _eeeg (_dbdc *_b .PdfFont ,_aegg *_fc .PdfObjectDictionary ,_fecfa bool )ViolatedRule {const (_aecb ="\u0036.\u0033\u002e\u0034\u002d\u0031";_dfcaa ="\u0054\u0068\u0065\u0020\u0066\u006f\u006et\u0020\u0070\u0072\u006f\u0067\u0072\u0061\u006d\u0073\u0020\u0066\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0069\u006e \u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069l\u0065\u0020s\u0068\u0061\u006cl\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0077\u0069\u0074\u0068i\u006e\u0020\u0074h\u0061\u0074\u0020\u0066\u0069\u006ce\u002c\u0020a\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052e\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0035\u002e\u0038\u002c\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0077h\u0065\u006e\u0020\u0074\u0068\u0065 \u0066\u006f\u006e\u0074\u0073\u0020\u0061\u0072\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0065\u0078\u0063\u006cu\u0073i\u0076\u0065\u006c\u0079\u0020\u0077\u0069t\u0068\u0020\u0074\u0065\u0078\u0074\u0020\u0072e\u006ed\u0065\u0072\u0069\u006e\u0067\u0020\u006d\u006f\u0064\u0065\u0020\u0033\u002e"; -);if _fecfa {return _da ;};_gbef :=_dbdc .FontDescriptor ();var _adbgc string ;if _abad ,_dddf :=_fc .GetName (_aegg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_dddf {_adbgc =_abad .String ();};switch _adbgc {case "\u0054\u0079\u0070e\u0031":if _gbef .FontFile ==nil {return _fe (_aecb ,_dfcaa ); -};case "\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":if _gbef .FontFile2 ==nil {return _fe (_aecb ,_dfcaa );};case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0033":default:if _gbef .FontFile3 ==nil {return _fe (_aecb ,_dfcaa );};};return _da ; -};func _bcaa (_eccd *_b .CompliancePdfReader )ViolatedRule {_fdgf :=_eccd .ParserMetadata ().HeaderCommentBytes ();if _fdgf [0]> 127&&_fdgf [1]> 127&&_fdgf [2]> 127&&_fdgf [3]> 127{return _da ;};return _fe ("\u0036.\u0031\u002e\u0032\u002d\u0032","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u006c\u0069\u006e\u0065\u0020\u0073\u0068\u0061\u006c\u006c b\u0065\u0020i\u006d\u006d\u0065\u0064\u0069a\u0074\u0065\u006c\u0079 \u0066\u006f\u006c\u006co\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0063\u006f\u006d\u006d\u0065n\u0074\u0020\u0063\u006f\u006e\u0073\u0069s\u0074\u0069\u006e\u0067\u0020o\u0066\u0020\u0061\u0020\u0025\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006fwe\u0064\u0020\u0062y\u0020a\u0074\u0009\u006c\u0065a\u0073\u0074\u0020f\u006f\u0075\u0072\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u002c\u0020e\u0061\u0063\u0068\u0020\u006f\u0066\u0020\u0077\u0068\u006f\u0073\u0065 \u0065\u006e\u0063\u006f\u0064e\u0064\u0020\u0062\u0079\u0074e\u0020\u0076\u0061\u006c\u0075\u0065s\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0064e\u0063\u0069\u006d\u0061\u006c \u0076\u0061\u006c\u0075\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0031\u0032\u0037\u002e"); +// ConformanceVariant is the standard variant used on verification. +ConformanceVariant string ;};func _daae (_dddb *_da .CompliancePdfReader )(_eece ViolatedRule ){_dfggd ,_dead :=_acgab (_dddb );if !_dead {return _bg ;};_agaa ,_dead :=_ad .GetDict (_dfggd .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));if !_dead {return _bg ; +};_geea ,_dead :=_ad .GetArray (_agaa .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_dead {return _bg ;};for _ffgcf :=0;_ffgcf < _geea .Len ();_ffgcf ++{_dedgb ,_ffbf :=_ad .GetDict (_geea .Get (_ffgcf ));if !_ffbf {continue ;};if _dedgb .Get ("\u0041")!=nil {return _ba ("\u0036.\u0034\u002e\u0031\u002d\u0032","\u0041\u0020\u0046\u0069\u0065\u006c\u0064\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0041 o\u0072\u0020\u0041\u0041\u0020\u006b\u0065\u0079\u0073\u002e"); +};if _dedgb .Get ("\u0041\u0041")!=nil {return _ba ("\u0036.\u0034\u002e\u0031\u002d\u0032","\u0041\u0020\u0046\u0069\u0065\u006c\u0064\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0041 o\u0072\u0020\u0041\u0041\u0020\u006b\u0065\u0079\u0073\u002e"); +};};return _bg ;};func _ebaec (_abfg *_da .CompliancePdfReader )(_dcafa []ViolatedRule ){for _ ,_befd :=range _abfg .GetObjectNums (){_ggfg ,_ggac :=_abfg .GetIndirectObjectByNumber (_befd );if _ggac !=nil {continue ;};_gdaeg ,_fgac :=_ad .GetDict (_ggfg ); +if !_fgac {continue ;};_agffg ,_fgac :=_ad .GetName (_gdaeg .Get ("\u0054\u0079\u0070\u0065"));if !_fgac {continue ;};if _agffg .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_bbec ,_fgac :=_ad .GetBool (_gdaeg .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073")); +if _fgac &&bool (*_bbec ){_dcafa =append (_dcafa ,_ba ("\u0036.\u0034\u002e\u0031\u002d\u0033","\u0054\u0068\u0065\u0020\u004e\u0065e\u0064\u0041\u0070\u0070\u0065a\u0072\u0061\u006e\u0063\u0065\u0073\u0020\u0066\u006c\u0061\u0067\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0069\u006e\u0074\u0065\u0072\u0061\u0063\u0074\u0069\u0076e\u0020\u0066\u006f\u0072\u006d \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u006e\u006f\u0074\u0020b\u0065\u0020\u0070\u0072\u0065se\u006e\u0074\u0020\u006f\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); +};if _gdaeg .Get ("\u0058\u0046\u0041")!=nil {_dcafa =append (_dcafa ,_ba ("\u0036.\u0034\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0064o\u0063\u0075\u006d\u0065\u006e\u0074\u0027\u0073\u0020i\u006e\u0074\u0065\u0072\u0061\u0063\u0074\u0069\u0076\u0065\u0020\u0066\u006f\u0072\u006d\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020t\u0068\u0061\u0074\u0020f\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065 \u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d \u006b\u0065\u0079\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0027\u0073\u0020\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006f\u0066 \u0061 \u0050\u0044F\u002fA\u002d\u0032\u0020\u0066ile\u002c\u0020\u0069\u0066\u0020\u0070\u0072\u0065\u0073\u0065n\u0074\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0058\u0046\u0041\u0020\u006b\u0065y.")); +};};_aded ,_ccccg :=_acgab (_abfg );if _ccccg &&_aded .Get ("\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067")!=nil {_dcafa =append (_dcafa ,_ba ("\u0036.\u0034\u002e\u0032\u002d\u0032","\u0041\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0027\u0073\u0020\u0043\u0061\u0074\u0061\u006cog\u0020s\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u002e")); +};return _dcafa ;};func _abgc (_cbge *_ad .PdfObjectDictionary ,_abgd map[*_ad .PdfObjectStream ][]byte ,_ffdfe map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_gefdb ="\u0036.\u0033\u002e\u0033\u002d\u0033";_bbde ="\u0041\u006cl \u0043\u004d\u0061\u0070\u0073\u0020\u0075\u0073e\u0064 \u0077i\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072m\u0069n\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048\u0020a\u006e\u0064\u0020\u0049\u0064\u0065\u006et\u0069\u0074\u0079-\u0056\u002c\u0020\u0073\u0068a\u006c\u006c \u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0074h\u0061\u0074\u0020\u0066\u0069\u006c\u0065\u0020\u0061\u0073\u0020\u0064es\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044F\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u00205\u002e\u0036\u002e\u0034\u002e"; +);var _gfffb string ;if _egbb ,_aceec :=_ad .GetName (_cbge .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_aceec {_gfffb =_egbb .String ();};if _gfffb !="\u0054\u0079\u0070e\u0030"{return _bg ;};_ecfc :=_cbge .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +if _efbcf ,_dgfe :=_ad .GetName (_ecfc );_dgfe {switch _efbcf .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _bg ;default:return _ba (_gefdb ,_bbde ); +};};_cgeg ,_dgde :=_ad .GetStream (_ecfc );if !_dgde {return _ba (_gefdb ,_bbde );};_ ,_effb :=_ggag (_cgeg ,_abgd ,_ffdfe );if _effb !=nil {return _ba (_gefdb ,_bbde );};return _bg ;};func (_cd *documentImages )hasOnlyDeviceRGB ()bool {return _cd ._eea &&!_cd ._fc &&!_cd ._eeb }; +var _ Profile =(*Profile2B )(nil ); + +// StandardName gets the name of the standard. +func (_agcc *profile2 )StandardName ()string {return _d .Sprintf ("\u0050D\u0046\u002f\u0041\u002d\u0032\u0025s",_agcc ._fcdd ._ee );};func _ggag (_afcb *_ad .PdfObjectStream ,_facd map[*_ad .PdfObjectStream ][]byte ,_gabde map[*_ad .PdfObjectStream ]*_b .CMap )(*_b .CMap ,error ){_aaee ,_gdcb :=_gabde [_afcb ]; +if !_gdcb {var _dcff error ;_egad ,_ggdf :=_facd [_afcb ];if !_ggdf {_egad ,_dcff =_ad .DecodeStream (_afcb );if _dcff !=nil {_ca .Log .Debug ("\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0073\u0074r\u0065\u0061\u006d\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_dcff ); +return nil ,_dcff ;};_facd [_afcb ]=_egad ;};_aaee ,_dcff =_b .LoadCmapFromData (_egad ,false );if _dcff !=nil {return nil ,_dcff ;};_gabde [_afcb ]=_aaee ;};return _aaee ,nil ;};func _df ()standardType {return standardType {_efe :1,_ee :"\u0041"}};func _fdbf (_efaf *_da .CompliancePdfReader )ViolatedRule {if _efaf .ParserMetadata ().HeaderPosition ()!=0{return _ba ("\u0036.\u0031\u002e\u0032\u002d\u0031","h\u0065\u0061\u0064\u0065\u0072\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0061\u0074\u0020\u0074\u0068\u0065\u0020fi\u0072\u0073\u0074 \u0062y\u0074\u0065"); +};if _efaf .PdfVersion ().Major !=1{return _ba ("\u0036.\u0031\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069l\u0065\u0020\u0068\u0065\u0061\u0064e\u0072 \u0073\u0068\u0061\u006c\u006c\u0020c\u006f\u006e\u0073\u0069s\u0074 \u006f\u0066\u0020\u201c%\u0050\u0044\u0046\u002d\u0031\u002e\u006e\u201d\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065 \u0045\u004f\u004c\u0020ma\u0072\u006b\u0065\u0072\u002c \u0077\u0068\u0065\u0072\u0065\u0020\u0027\u006e\u0027\u0020\u0069s\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065\u0020\u0064\u0069\u0067\u0069t\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u0062\u0065\u0074\u0077\u0065\u0065\u006e\u0020\u0030\u0020(\u0033\u0030h\u0029\u0020\u0061\u006e\u0064\u0020\u0037\u0020\u0028\u0033\u0037\u0068\u0029"); +};if _efaf .PdfVersion ().Minor < 0||_efaf .PdfVersion ().Minor > 7{return _ba ("\u0036.\u0031\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069l\u0065\u0020\u0068\u0065\u0061\u0064e\u0072 \u0073\u0068\u0061\u006c\u006c\u0020c\u006f\u006e\u0073\u0069s\u0074 \u006f\u0066\u0020\u201c%\u0050\u0044\u0046\u002d\u0031\u002e\u006e\u201d\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065 \u0045\u004f\u004c\u0020ma\u0072\u006b\u0065\u0072\u002c \u0077\u0068\u0065\u0072\u0065\u0020\u0027\u006e\u0027\u0020\u0069s\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065\u0020\u0064\u0069\u0067\u0069t\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u0062\u0065\u0074\u0077\u0065\u0065\u006e\u0020\u0030\u0020(\u0033\u0030h\u0029\u0020\u0061\u006e\u0064\u0020\u0037\u0020\u0028\u0033\u0037\u0068\u0029"); +};return _bg ;};func _edga (_ddfd standardType ,_bfagc *_ea .OutputIntents )error {_bcde ,_fcfdf :=_ac .NewCmykIsoCoatedV2OutputIntent (_ddfd .outputIntentSubtype ());if _fcfdf !=nil {return _fcfdf ;};if _fcfdf =_bfagc .Add (_bcde .ToPdfObject ());_fcfdf !=nil {return _fcfdf ; +};return nil ;};func _geddd (_edda *_da .CompliancePdfReader )ViolatedRule {return _bg };func _agc (_ced *_ea .Document )error {_dae ,_dbfc :=_ced .FindCatalog ();if !_dbfc {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};_dae .SetVersion ();return nil ;};func _gdaca (_efaa *_da .PdfFont ,_ebfed *_ad .PdfObjectDictionary ,_dbead bool )ViolatedRule {const (_ceegg ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0034\u002d\u0031";_bcffg ="\u0054\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0070\u0072\u006f\u0067\u0072\u0061\u006ds\u0020\u0066\u006fr\u0020\u0061\u006c\u006c\u0020f\u006f\u006e\u0074\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0072e\u006e\u0064\u0065\u0072\u0069\u006eg\u0020\u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020w\u0069t\u0068\u0069\u006e\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u0069\u006c\u0065\u002c \u0061\u0073\u0020\u0064\u0065\u0066\u0069n\u0065\u0064 \u0069\u006e\u0020\u0049S\u004f\u0020\u0033\u0032\u00300\u0030\u002d\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u0020\u0039\u002e\u0039\u002e"; +);if _dbead {return _bg ;};_ecfe :=_efaa .FontDescriptor ();var _cbced string ;if _fbae ,_adba :=_ad .GetName (_ebfed .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_adba {_cbced =_fbae .String ();};switch _cbced {case "\u0054\u0079\u0070e\u0031":if _ecfe .FontFile ==nil {return _ba (_ceegg ,_bcffg ); +};case "\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":if _ecfe .FontFile2 ==nil {return _ba (_ceegg ,_bcffg );};case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0033":default:if _ecfe .FontFile3 ==nil {return _ba (_ceegg ,_bcffg );};};return _bg ; }; +// NewProfile2U creates a new Profile2U with the given options. +func NewProfile2U (options *Profile2Options )*Profile2U {if options ==nil {options =DefaultProfile2Options ();};_cdcc (options );return &Profile2U {profile2 {_eceb :*options ,_fcdd :_eec ()}};};type profile1 struct{_efde standardType ;_fcce Profile1Options ; +};func _cfbb (_ddfb *_da .PdfInfo ,_dbdd func ()_a .Time )error {var _cbce *_da .PdfDate ;if _ddfb .CreationDate ==nil {_ceee ,_defa :=_da .NewPdfDateFromTime (_dbdd ());if _defa !=nil {return _defa ;};_cbce =&_ceee ;_ddfb .CreationDate =_cbce ;};if _ddfb .ModifiedDate ==nil {if _cbce !=nil {_baab ,_dccd :=_da .NewPdfDateFromTime (_dbdd ()); +if _dccd !=nil {return _dccd ;};_cbce =&_baab ;};_ddfb .ModifiedDate =_cbce ;};return nil ;}; + +// Conformance gets the PDF/A conformance. +func (_gbge *profile2 )Conformance ()string {return _gbge ._fcdd ._ee }; + +// NewProfile1B creates a new Profile1B with the given options. +func NewProfile1B (options *Profile1Options )*Profile1B {if options ==nil {options =DefaultProfile1Options ();};_aegab (options );return &Profile1B {profile1 {_fcce :*options ,_efde :_ebc ()}};};type documentImages struct{_eea ,_fc ,_eeb bool ;_dbf map[_ad .PdfObject ]struct{}; +_fca []*imageInfo ;};func _feda (_gaceb *_da .CompliancePdfReader )ViolatedRule {for _ ,_ddfbe :=range _gaceb .PageList {_eeed ,_agfbb :=_ddfbe .GetContentStreams ();if _agfbb !=nil {continue ;};for _ ,_cgfd :=range _eeed {_gggcb :=_cad .NewContentStreamParser (_cgfd ); +_ ,_agfbb =_gggcb .Parse ();if _agfbb !=nil {return _ba ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0031","\u0041\u0020\u0063onten\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u0061\u006c\u006c n\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079 \u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u0020\u006e\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0065\u0076\u0065\u006e\u0020\u0069\u0066\u0020s\u0075\u0063\u0068\u0020\u006f\u0070\u0065r\u0061\u0074\u006f\u0072\u0073\u0020\u0061\u0072\u0065\u0020\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0065\u0064\u0020\u0062\u0079\u0020\u0074\u0068\u0065\u0020\u0042\u0058\u002f\u0045\u0058\u0020\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062i\u006c\u0069\u0074\u0079\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u002e"); +};};};return _bg ;};func _bdbeb (_egea *_da .CompliancePdfReader )(_dcdbe []ViolatedRule ){for _ ,_gbgc :=range _egea .GetObjectNums (){_fcaa ,_cdec :=_egea .GetIndirectObjectByNumber (_gbgc );if _cdec !=nil {continue ;};_fagea ,_fgcg :=_ad .GetDict (_fcaa ); +if !_fgcg {continue ;};_badb ,_fgcg :=_ad .GetName (_fagea .Get ("\u0054\u0079\u0070\u0065"));if !_fgcg {continue ;};if _badb .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_fegf ,_fgcg :=_ad .GetBool (_fagea .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073")); +if !_fgcg {return _dcdbe ;};if bool (*_fegf ){_dcdbe =append (_dcdbe ,_ba ("\u0036\u002e\u0039-\u0031","\u0054\u0068\u0065\u0020\u004e\u0065e\u0064\u0041\u0070\u0070\u0065a\u0072\u0061\u006e\u0063\u0065\u0073\u0020\u0066\u006c\u0061\u0067\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0069\u006e\u0074\u0065\u0072\u0061\u0063\u0074\u0069\u0076e\u0020\u0066\u006f\u0072\u006d \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u006e\u006f\u0074\u0020b\u0065\u0020\u0070\u0072\u0065se\u006e\u0074\u0020\u006f\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); +};};return _dcdbe ;};func _gdga (_bega *_ea .Document ,_gaa *_ea .Page ,_bbdd []*_ea .Image )error {for _ ,_eded :=range _bbdd {if _eded .SMask ==nil {continue ;};_eccf ,_dca :=_da .NewXObjectImageFromStream (_eded .Stream );if _dca !=nil {return _dca ; +};_gbac ,_dca :=_eccf .ToImage ();if _dca !=nil {return _dca ;};_fbee ,_dca :=_gbac .ToGoImage ();if _dca !=nil {return _dca ;};_agfb ,_dca :=_de .RGBAConverter .Convert (_fbee );if _dca !=nil {return _dca ;};_affa :=_agfb .Base ();_gccg :=&_da .Image {Width :int64 (_affa .Width ),Height :int64 (_affa .Height ),BitsPerComponent :int64 (_affa .BitsPerComponent ),ColorComponents :_affa .ColorComponents ,Data :_affa .Data }; +_gccg .SetDecode (_affa .Decode );_gccg .SetAlpha (_affa .Alpha );if _dca =_eccf .SetImage (_gccg ,nil );_dca !=nil {return _dca ;};_eccf .SMask =_ad .MakeNull ();var _ffbg _ad .PdfObject ;_dfae :=-1;for _dfae ,_ffbg =range _bega .Objects {if _ffbg ==_eded .SMask .Stream {break ; +};};if _dfae !=-1{_bega .Objects =append (_bega .Objects [:_dfae ],_bega .Objects [_dfae +1:]...);};_eded .SMask =nil ;_eccf .ToPdfObject ();};return nil ;};func _fgafc (_dcfb *_ad .PdfObjectDictionary ,_ddgfd map[*_ad .PdfObjectStream ][]byte ,_adf map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_fdcff ="\u0046\u006f\u0072 \u0061\u006e\u0079\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u0020\u0028\u0054\u0079\u0070\u0065\u0020\u0030\u0029\u0020\u0066\u006f\u006et \u0072\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0064 \u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006fn\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0043I\u0044\u0053y\u0073\u0074\u0065\u006d\u0049nf\u006f\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u006f\u0066\u0020i\u0074\u0073\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0061\u006e\u0064 \u0043\u004d\u0061\u0070 \u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0063\u006f\u006d\u0070\u0061\u0074i\u0062\u006c\u0065\u002e\u0020\u0049\u006e\u0020o\u0074\u0068\u0065\u0072\u0020\u0077\u006f\u0072\u0064\u0073\u002c\u0020\u0074\u0068\u0065\u0020R\u0065\u0067\u0069\u0073\u0074\u0072\u0079\u0020a\u006e\u0064\u0020\u004fr\u0064\u0065\u0072\u0069\u006e\u0067 \u0073\u0074\u0072i\u006e\u0067\u0073\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0066\u006f\u0072 \u0074\u0068\u0061\u0074\u0020\u0066o\u006e\u0074\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c\u002c\u0020u\u006el\u0065ss \u0074\u0068\u0065\u0020\u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006eg\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0074h\u0065 \u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0069\u0073 \u0049\u0064\u0065\u006e\u0074\u0069t\u0079\u002d\u0048\u0020o\u0072\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074y\u002dV\u002e"; +_gggd ="\u0036.\u0033\u002e\u0033\u002d\u0031";);var _ebfab string ;if _cgbe ,_faed :=_ad .GetName (_dcfb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_faed {_ebfab =_cgbe .String ();};if _ebfab !="\u0054\u0079\u0070e\u0030"{return _bg ;};_cdbfc :=_dcfb .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +if _caedg ,_aeda :=_ad .GetName (_cdbfc );_aeda {switch _caedg .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _bg ;};_ccef ,_bfff :=_b .LoadPredefinedCMap (_caedg .String ()); +if _bfff !=nil {return _ba (_gggd ,_fdcff );};_gcab :=_ccef .CIDSystemInfo ();if _gcab .Ordering !=_gcab .Registry {return _ba (_gggd ,_fdcff );};return _bg ;};_bgdbgb ,_adga :=_ad .GetStream (_cdbfc );if !_adga {return _ba (_gggd ,_fdcff );};_fbbeb ,_ecbd :=_ggag (_bgdbgb ,_ddgfd ,_adf ); +if _ecbd !=nil {return _ba (_gggd ,_fdcff );};_eafc :=_fbbeb .CIDSystemInfo ();if _eafc .Ordering !=_eafc .Registry {return _ba (_gggd ,_fdcff );};return _bg ;};func _eadd (_ebg *_ea .Document ,_fde bool )error {_dece ,_deef :=_ebg .GetPages ();if !_deef {return nil ; +};for _ ,_eeg :=range _dece {_gebd ,_eadf :=_eeg .GetContents ();if !_eadf {continue ;};var _bda *_da .PdfPageResources ;_dga ,_eadf :=_eeg .GetResources ();if _eadf {_bda ,_ =_da .NewPdfPageResourcesFromDict (_dga );};for _gfc ,_fag :=range _gebd {_ceac ,_edec :=_fag .GetData (); +if _edec !=nil {continue ;};_bff :=_cad .NewContentStreamParser (string (_ceac ));_aceg ,_edec :=_bff .Parse ();if _edec !=nil {continue ;};_fcfd ,_edec :=_dge (_bda ,_aceg ,_fde );if _edec !=nil {return _edec ;};if _fcfd ==nil {continue ;};if _edec =(&_gebd [_gfc ]).SetData (_fcfd ); +_edec !=nil {return _edec ;};};};return nil ;}; + +// NewProfile1A creates a new Profile1A with given options. +func NewProfile1A (options *Profile1Options )*Profile1A {if options ==nil {options =DefaultProfile1Options ();};_aegab (options );return &Profile1A {profile1 {_fcce :*options ,_efde :_df ()}};};func _ddccc (_eadc *_da .PdfFont ,_abdg *_ad .PdfObjectDictionary )ViolatedRule {const (_dgeb ="\u0036.\u0033\u002e\u0035\u002d\u0032"; +_caeb ="\u0046\u006f\u0072\u0020\u0061l\u006c\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020\u0066\u006f\u006e\u0074 \u0073\u0075bs\u0065\u0074\u0073 \u0072\u0065\u0066e\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0074he\u0020f\u006f\u006e\u0074\u0020\u0064\u0065s\u0063r\u0069\u0070\u0074o\u0072\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006ec\u006c\u0075\u0064e\u0020\u0061\u0020\u0043\u0068\u0061\u0072\u0053\u0065\u0074\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u006c\u0069\u0073\u0074\u0069\u006e\u0067\u0020\u0074\u0068\u0065\u0020\u0063\u0068\u0061\u0072a\u0063\u0074\u0065\u0072 \u006e\u0061\u006d\u0065\u0073\u0020d\u0065\u0066i\u006e\u0065\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020f\u006f\u006e\u0074\u0020s\u0075\u0062\u0073\u0065\u0074, \u0061\u0073 \u0064\u0065s\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e \u0050\u0044\u0046\u0020\u0052e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0054\u0061\u0062\u006ce\u0020\u0035\u002e1\u0038\u002e"; +);var _bebd string ;if _cdee ,_cagec :=_ad .GetName (_abdg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cagec {_bebd =_cdee .String ();};if _bebd !="\u0054\u0079\u0070e\u0031"{return _bg ;};if _cac .IsStdFont (_cac .StdFontName (_eadc .BaseFont ())){return _bg ; +};_ffag :=_eadc .FontDescriptor ();if _ffag .CharSet ==nil {return _ba (_dgeb ,_caeb );};return _bg ;};func _faea (_dcgfd *_da .PdfFont ,_ggce *_ad .PdfObjectDictionary )ViolatedRule {const (_edadc ="\u0036.\u0033\u002e\u0035\u002d\u0033";_gedd ="\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0073 \u0072e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0077i\u0074\u0068\u0069n\u0020\u0061\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069l\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006et\u0020\u0064\u0065s\u0063\u0072\u0069\u0070\u0074\u006f\u0072\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u0020\u0043\u0049\u0044\u0053\u0065\u0074\u0020s\u0074\u0072\u0065\u0061\u006d\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0066\u0079\u0069\u006eg\u0020\u0077\u0068i\u0063\u0068\u0020\u0043\u0049\u0044\u0073 \u0061\u0072e\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e \u0074\u0068\u0065\u0020\u0065\u006d\u0062\u0065\u0064d\u0065\u0064\u0020\u0043\u0049D\u0046\u006f\u006e\u0074\u0020\u0066\u0069l\u0065,\u0020\u0061\u0073 \u0064\u0065\u0073\u0063\u0072\u0069b\u0065\u0064 \u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063e\u0020\u0054ab\u006c\u0065\u0020\u0035.\u00320\u002e"; +);var _gfcd string ;if _aeca ,_gafg :=_ad .GetName (_ggce .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_gafg {_gfcd =_aeca .String ();};switch _gfcd {case "\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":_egdb :=_dcgfd .FontDescriptor (); +if _egdb .CIDSet ==nil {return _ba (_edadc ,_gedd );};return _bg ;default:return _bg ;};};func _afcg (_gcgd *_da .CompliancePdfReader )(_cdga []ViolatedRule ){var _ebga ,_ceegd ,_cadg ,_bdac ,_bbfa ,_fceg ,_bfeb bool ;_cacd :=func ()bool {return _ebga &&_ceegd &&_cadg &&_bdac &&_bbfa &&_fceg &&_bfeb }; +for _ ,_bafge :=range _gcgd .PageList {_cgcd ,_ebaad :=_bafge .GetAnnotations ();if _ebaad !=nil {_ca .Log .Trace ("\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0061\u006en\u006f\u0074\u0061\u0074\u0069\u006f\u006es\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ebaad ); +continue ;};for _ ,_bdde :=range _cgcd {if !_ebga {switch _bdde .GetContext ().(type ){case *_da .PdfAnnotationFileAttachment ,*_da .PdfAnnotationSound ,*_da .PdfAnnotationMovie ,nil :_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0032\u002d\u0031","\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0074\u0079\u0070\u0065\u0073\u0020\u006e\u006f\u0074 \u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074 \u0062\u0065\u0020p\u0065\u0072m\u0069\u0074\u0074\u0065\u0064\u002e\u0020\u0041d\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020\u0074\u0068\u0065\u0020F\u0069\u006c\u0065\u0041\u0074\u0074\u0061\u0063\u0068\u006de\u006e\u0074\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u0020\u0061\u006e\u0064\u0020\u004d\u006f\u0076\u0069e\u0020\u0074\u0079\u0070\u0065s \u0073ha\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_ebga =true ;if _cacd (){return _cdga ;};};};_dgdc ,_adec :=_ad .GetDict (_bdde .GetContainingPdfObject ());if !_adec {continue ;};if !_ceegd {_cegb ,_dceg :=_ad .GetFloatVal (_dgdc .Get ("\u0043\u0041"));if _dceg &&_cegb !=1.0{_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0031","\u0041\u006e\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073h\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0043\u0041\u0020\u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0031\u002e\u0030\u002e")); +_ceegd =true ;if _cacd (){return _cdga ;};};};if !_cadg {_fbcd ,_eggb :=_ad .GetIntVal (_dgdc .Get ("\u0046"));if !(_eggb &&_fbcd &4==4&&_fbcd &1==0&&_fbcd &2==0&&_fbcd &32==0){_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0032","\u0041\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0074\u0068\u0065\u0020\u0046\u0020\u006b\u0065\u0079\u002e\u0020\u0054\u0068\u0065\u0020\u0046\u0020\u006b\u0065\u0079\u0027\u0073\u0020\u0050\u0072\u0069\u006e\u0074\u0020\u0066\u006c\u0061\u0067\u0020\u0062\u0069\u0074\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065 s\u0065\u0074\u0020\u0074\u006f\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0069\u0074\u0073\u0020\u0048\u0069\u0064\u0064\u0065\u006e\u002c\u0020I\u006e\u0076\u0069\u0073\u0069\u0062\u006c\u0065\u0020\u0061\u006e\u0064\u0020\u004e\u006f\u0056\u0069\u0065\u0077\u0020\u0066\u006c\u0061\u0067\u0020b\u0069\u0074\u0073 \u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073e\u0074\u0020t\u006f\u0020\u0030\u002e")); +_cadg =true ;if _cacd (){return _cdga ;};};};if !_bdac {_afdcg ,_addc :=_ad .GetDict (_dgdc .Get ("\u0041\u0050"));if _addc {_fdcg :=_afdcg .Get ("\u004e");if _fdcg ==nil ||len (_afdcg .Keys ())> 1{_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0034","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); +_bdac =true ;if _cacd (){return _cdga ;};continue ;};_ ,_dcdgc :=_bdde .GetContext ().(*_da .PdfAnnotationWidget );if _dcdgc {_becd ,_fgff :=_ad .GetName (_dgdc .Get ("\u0046\u0054"));if _fgff &&*_becd =="\u0042\u0074\u006e"{if _ ,_debg :=_ad .GetDict (_fdcg ); +!_debg {_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0034","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); +_bdac =true ;if _cacd (){return _cdga ;};continue ;};};};_ ,_dgcb :=_ad .GetStream (_fdcg );if !_dgcb {_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0034","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); +_bdac =true ;if _cacd (){return _cdga ;};continue ;};};};if !_bbfa {if _dgdc .Get ("\u0043")!=nil ||_dgdc .Get ("\u0049\u0043")!=nil {_gbgf ,_efcgc :=_caee (_gcgd );if !_efcgc {_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0033","\u0041\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006fn\u0074a\u0069\u006e\u0020t\u0068e\u0020\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0072\u0020\u0074\u0068e\u0020\u0049\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0075\u006e\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0063o\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006ff\u0069\u006ce\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069n\u0020\u0036\u002e\u0032\u002e2\u002c\u0020\u0069\u0073\u0020\u0052\u0047\u0042.")); +_bbfa =true ;if _cacd (){return _cdga ;};}else {_cbad ,_dbagc :=_ad .GetIntVal (_gbgf .Get ("\u004e"));if !_dbagc ||_cbad !=3{_cdga =append (_cdga ,_ba ("\u0036.\u0035\u002e\u0033\u002d\u0033","\u0041\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006fn\u0074a\u0069\u006e\u0020t\u0068e\u0020\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0072\u0020\u0074\u0068e\u0020\u0049\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0075\u006e\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0063o\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006ff\u0069\u006ce\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069n\u0020\u0036\u002e\u0032\u002e2\u002c\u0020\u0069\u0073\u0020\u0052\u0047\u0042.")); +_bbfa =true ;if _cacd (){return _cdga ;};};};};};_gefe ,_fffg :=_bdde .GetContext ().(*_da .PdfAnnotationWidget );if !_fffg {continue ;};if !_fceg {if _gefe .A !=nil {_cdga =append (_cdga ,_ba ("\u0036.\u0036\u002e\u0031\u002d\u0033","A \u0057\u0069d\u0067\u0065\u0074\u0020\u0061\u006e\u006e\u006f\u0074a\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0069\u006ec\u006cu\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0020e\u006et\u0072\u0079.")); +_fceg =true ;if _cacd (){return _cdga ;};};};if !_bfeb {if _gefe .AA !=nil {_cdga =append (_cdga ,_ba ("\u0036.\u0036\u002e\u0032\u002d\u0031","\u0041\u0020\u0057\u0069\u0064\u0067\u0065\u0074\u0020\u0061\u006e\u006eo\u0074\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073h\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0041\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0061d\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); +_bfeb =true ;if _cacd (){return _cdga ;};};};};};return _cdga ;}; + +// StandardName gets the name of the standard. +func (_bgfc *profile1 )StandardName ()string {return _d .Sprintf ("\u0050D\u0046\u002f\u0041\u002d\u0031\u0025s",_bgfc ._efde ._ee );};func _facca (_cadad *_ea .Document )error {_gfa ,_ecda :=_cadad .GetPages ();if !_ecda {return nil ;};for _ ,_dbcd :=range _gfa {_fbbe ,_bcff :=_ad .GetArray (_dbcd .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073")); +if !_bcff {continue ;};for _ ,_fgb :=range _fbbe .Elements (){_fgb =_ad .ResolveReference (_fgb );if _ ,_bdab :=_fgb .(*_ad .PdfObjectNull );_bdab {continue ;};_cbab ,_cef :=_ad .GetDict (_fgb );if !_cef {continue ;};_eefb ,_ :=_ad .GetIntVal (_cbab .Get ("\u0046")); +_eefb &=^(1<<0);_eefb &=^(1<<1);_eefb &=^(1<<5);_eefb &=^(1<<8);_eefb |=1<<2;_cbab .Set ("\u0046",_ad .MakeInteger (int64 (_eefb )));_cggc :=false ;if _aed :=_cbab .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_aed !=nil {_fgfb ,_gfef :=_ad .GetName (_aed ); +if _gfef &&_fgfb .String ()=="\u0057\u0069\u0064\u0067\u0065\u0074"{_cggc =true ;if _cbab .Get ("\u0041\u0041")!=nil {_cbab .Remove ("\u0041\u0041");};if _cbab .Get ("\u0041")!=nil {_cbab .Remove ("\u0041");};};if _gfef &&_fgfb .String ()=="\u0054\u0065\u0078\u0074"{_dfbf ,_ :=_ad .GetIntVal (_cbab .Get ("\u0046")); +_dfbf |=1<<3;_dfbf |=1<<4;_cbab .Set ("\u0046",_ad .MakeInteger (int64 (_dfbf )));};};_dbddg ,_cef :=_ad .GetDict (_cbab .Get ("\u0041\u0050"));if _cef {_edde :=_dbddg .Get ("\u004e");if _edde ==nil {continue ;};if len (_dbddg .Keys ())> 1{_dbddg .Clear (); +_dbddg .Set ("\u004e",_edde );};if _cggc {_cdce ,_ddacb :=_ad .GetName (_cbab .Get ("\u0046\u0054"));if _ddacb &&*_cdce =="\u0042\u0074\u006e"{continue ;};};};};};return nil ;}; + +// DefaultProfile1Options are the default options for the Profile1. +func DefaultProfile1Options ()*Profile1Options {return &Profile1Options {Now :_a .Now ,Xmp :XmpOptions {MarshalIndent :"\u0009"}};};func _ff (_dfg []_ad .PdfObject )(*documentImages ,error ){_aac :=_ad .PdfObjectName ("\u0053u\u0062\u0074\u0079\u0070\u0065"); +_bgb :=make (map[*_ad .PdfObjectStream ]struct{});_dbc :=make (map[_ad .PdfObject ]struct{});var (_dadg ,_def ,_ag bool ;_caf []*imageInfo ;_dee error ;);for _ ,_fa :=range _dfg {_gad ,_ecf :=_ad .GetStream (_fa );if !_ecf {continue ;};if _ ,_gadb :=_bgb [_gad ]; +_gadb {continue ;};_bgb [_gad ]=struct{}{};_fcf :=_gad .PdfObjectDictionary .Get (_aac );_gd ,_ecf :=_ad .GetName (_fcf );if !_ecf ||string (*_gd )!="\u0049\u006d\u0061g\u0065"{continue ;};if _bag :=_gad .PdfObjectDictionary .Get ("\u0053\u004d\u0061s\u006b"); +_bag !=nil {_dbc [_bag ]=struct{}{};};_cge :=imageInfo {BitsPerComponent :8,Stream :_gad };_cge .ColorSpace ,_dee =_da .DetermineColorspaceNameFromPdfObject (_gad .PdfObjectDictionary .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065")); +if _dee !=nil {return nil ,_dee ;};if _dd ,_cdb :=_ad .GetIntVal (_gad .PdfObjectDictionary .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));_cdb {_cge .BitsPerComponent =_dd ;};if _bd ,_agb :=_ad .GetIntVal (_gad .PdfObjectDictionary .Get ("\u0057\u0069\u0064t\u0068")); +_agb {_cge .Width =_bd ;};if _gab ,_dfc :=_ad .GetIntVal (_gad .PdfObjectDictionary .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_dfc {_cge .Height =_gab ;};switch _cge .ColorSpace {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_ag =true ; +_cge .ColorComponents =1;case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_dadg =true ;_cge .ColorComponents =3;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_def =true ;_cge .ColorComponents =4;default:_cge ._dfb =true ;};_caf =append (_caf ,&_cge ); +};if len (_dbc )> 0{if len (_dbc )==len (_caf ){_caf =nil ;}else {_bf :=make ([]*imageInfo ,len (_caf )-len (_dbc ));var _fd int ;for _ ,_bgf :=range _caf {if _ ,_gaf :=_dbc [_bgf .Stream ];_gaf {continue ;};_bf [_fd ]=_bgf ;_fd ++;};_caf =_bf ;};};return &documentImages {_eea :_dadg ,_fc :_def ,_eeb :_ag ,_dbf :_dbc ,_fca :_caf },nil ; +};func _dfdffa (_abaff *_ad .PdfObjectDictionary ,_edbfa map[*_ad .PdfObjectStream ][]byte ,_edcad map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_daab ="\u0036.\u0033\u002e\u0033\u002d\u0034";_dbad ="\u0046\u006f\u0072\u0020\u0074\u0068\u006fs\u0065\u0020\u0043\u004d\u0061\u0070\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0061\u0072e\u0020\u0065m\u0062\u0065\u0064de\u0064\u002c\u0020\u0074\u0068\u0065\u0020\u0069\u006et\u0065\u0067\u0065\u0072 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0057\u004d\u006f\u0064\u0065\u0020\u0065\u006e\u0074r\u0079\u0020i\u006e t\u0068\u0065\u0020CM\u0061\u0070\u0020\u0064\u0069\u0063\u0074\u0069o\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c\u0020\u0074\u006f \u0074h\u0065\u0020\u0057\u004d\u006f\u0064e\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064ed\u0020\u0043\u004d\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e"; +);var _adgbcc string ;if _adce ,_fcdda :=_ad .GetName (_abaff .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_fcdda {_adgbcc =_adce .String ();};if _adgbcc !="\u0054\u0079\u0070e\u0030"{return _bg ;};_aedfa :=_abaff .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +if _ ,_ffcbf :=_ad .GetName (_aedfa );_ffcbf {return _bg ;};_fgag ,_ade :=_ad .GetStream (_aedfa );if !_ade {return _ba (_daab ,_dbad );};_acbcd ,_agee :=_ggag (_fgag ,_edbfa ,_edcad );if _agee !=nil {return _ba (_daab ,_dbad );};_gdfc ,_feeab :=_ad .GetIntVal (_fgag .Get ("\u0057\u004d\u006fd\u0065")); +_adge ,_dbbg :=_acbcd .WMode ();if _feeab &&_dbbg {if _adge !=_gdfc {return _ba (_daab ,_dbad );};};if (_feeab &&!_dbbg )||(!_feeab &&_dbbg ){return _ba (_daab ,_dbad );};return _bg ;};func _cdcc (_gfff *Profile2Options ){if _gfff .Now ==nil {_gfff .Now =_a .Now ; +};};type profile2 struct{_fcdd standardType ;_eceb Profile2Options ;};func (_cfd standardType )outputIntentSubtype ()_da .PdfOutputIntentType {switch _cfd ._efe {case 1:return _da .PdfOutputIntentTypeA1 ;case 2:return _da .PdfOutputIntentTypeA2 ;case 3:return _da .PdfOutputIntentTypeA3 ; +case 4:return _da .PdfOutputIntentTypeA4 ;default:return 0;};};func _cafe (_febe *_da .CompliancePdfReader )(_afdbeb ViolatedRule ){_adcd ,_bedg :=_acgab (_febe );if !_bedg {return _bg ;};if _adcd .Get ("\u0041\u0041")!=nil {return _ba ("\u0036.\u0035\u002e\u0032\u002d\u0031","\u0054h\u0065\u0020\u0064\u006fc\u0075m\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0073\u0068\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020a\u006e\u0020\u0041\u0041\u0020\u0065\u006e\u0074\u0072\u0079 \u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061c\u0074\u0069\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079\u002e"); +};return _bg ;};func _gbdf (_gade *_da .CompliancePdfReader )ViolatedRule {_dfad ,_egee :=_gade .PdfReader .GetTrailer ();if _egee !=nil {return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u006d\u0069\u0073s\u0069\u006e\u0067\u0020t\u0072\u0061\u0069\u006c\u0065\u0072\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074"); +};if _dfad .Get ("\u0049\u0044")==nil {return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068e\u0020\u0027\u0049\u0044\u0027\u0020k\u0065\u0079\u0077o\u0072\u0064"); +};if _dfad .Get ("\u0045n\u0063\u0072\u0079\u0070\u0074")!=nil {return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0032","\u0054\u0068\u0065\u0020\u006b\u0065y\u0077\u006f\u0072\u0064\u0020'\u0045\u006e\u0063\u0072\u0079\u0070t\u0027\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0075\u0073\u0065d\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u002e\u0020"); +};return _bg ;}; + // DefaultProfile2Options are the default options for the Profile2. -func DefaultProfile2Options ()*Profile2Options {return &Profile2Options {Now :_c .Now ,Xmp :XmpOptions {MarshalIndent :"\u0009"}};};func _bcde (_dggf *_ag .Document )error {_abg ,_cdad :=_dggf .FindCatalog ();if !_cdad {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); -};_ffca ,_cdad :=_fc .GetDict (_abg .Object .Get ("\u004e\u0061\u006de\u0073"));if !_cdad {return nil ;};if _ffca .Get ("\u0041\u006c\u0074\u0065rn\u0061\u0074\u0065\u0050\u0072\u0065\u0073\u0065\u006e\u0074\u0061\u0074\u0069\u006fn\u0073")!=nil {_ffca .Remove ("\u0041\u006c\u0074\u0065rn\u0061\u0074\u0065\u0050\u0072\u0065\u0073\u0065\u006e\u0074\u0061\u0074\u0069\u006fn\u0073"); -};return nil ;};func _cec (_cccf *_ag .Document ,_dfg func ()_c .Time )error {_gcbd ,_fedb :=_b .NewPdfInfoFromObject (_cccf .Info );if _fedb !=nil {return _fedb ;};if _dfga :=_gdcf (_gcbd ,_dfg );_dfga !=nil {return _dfga ;};_cccf .Info =_gcbd .ToPdfObject (); -return nil ;}; +func DefaultProfile2Options ()*Profile2Options {return &Profile2Options {Now :_a .Now ,Xmp :XmpOptions {MarshalIndent :"\u0009"}};};type imageInfo struct{ColorSpace _ad .PdfObjectName ;BitsPerComponent int ;ColorComponents int ;Width int ;Height int ;Stream *_ad .PdfObjectStream ; +_dfb bool ;};type imageModifications struct{_cdbd *colorspaceModification ;_fgg _ad .StreamEncoder ;};func _bea (_bc []*_ea .Image ,_dfcc bool )error {_fea :=_ad .PdfObjectName ("\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B");if _dfcc {_fea ="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b"; +};for _ ,_bcg :=range _bc {if _bcg .Colorspace ==_fea {continue ;};_eecf ,_fbd :=_da .NewXObjectImageFromStream (_bcg .Stream );if _fbd !=nil {return _fbd ;};_bge ,_fbd :=_eecf .ToImage ();if _fbd !=nil {return _fbd ;};_ggf ,_fbd :=_bge .ToGoImage ();if _fbd !=nil {return _fbd ; +};var _gac _da .PdfColorspace ;if _dfcc {_gac =_da .NewPdfColorspaceDeviceCMYK ();_ggf ,_fbd =_de .CMYKConverter .Convert (_ggf );}else {_gac =_da .NewPdfColorspaceDeviceRGB ();_ggf ,_fbd =_de .NRGBAConverter .Convert (_ggf );};if _fbd !=nil {return _fbd ; +};_cgga ,_ffg :=_ggf .(_de .Image );if !_ffg {return _gg .New ("\u0069\u006d\u0061\u0067\u0065\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074 \u0069\u006d\u0070\u006c\u0065\u006de\u006e\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u0075\u0074\u0069\u006c\u002eI\u006d\u0061\u0067\u0065"); +};_dff :=_cgga .Base ();_gcd :=&_da .Image {Width :int64 (_dff .Width ),Height :int64 (_dff .Height ),BitsPerComponent :int64 (_dff .BitsPerComponent ),ColorComponents :_dff .ColorComponents ,Data :_dff .Data };_gcd .SetDecode (_dff .Decode );_gcd .SetAlpha (_dff .Alpha ); +if _fbd =_eecf .SetImage (_gcd ,_gac );_fbd !=nil {return _fbd ;};_eecf .ToPdfObject ();_bcg .ColorComponents =_dff .ColorComponents ;_bcg .Colorspace =_fea ;};return nil ;};func _gbcfg (_deeca *_da .CompliancePdfReader )(_deeg []ViolatedRule ){var _bdgf ,_cbaf ,_feadg ,_dfgb ,_gaeg ,_bedfd bool ; +_cceg :=map[*_ad .PdfObjectStream ]struct{}{};for _ ,_eae :=range _deeca .GetObjectNums (){if _bdgf &&_cbaf &&_gaeg &&_feadg &&_dfgb &&_bedfd {return _deeg ;};_eebe ,_bgaa :=_deeca .GetIndirectObjectByNumber (_eae );if _bgaa !=nil {continue ;};_ggdc ,_dbgdb :=_ad .GetStream (_eebe ); +if !_dbgdb {continue ;};if _ ,_dbgdb =_cceg [_ggdc ];_dbgdb {continue ;};_cceg [_ggdc ]=struct{}{};_bbee ,_dbgdb :=_ad .GetName (_ggdc .Get ("\u0053u\u0062\u0054\u0079\u0070\u0065"));if !_dbgdb {continue ;};if !_dfgb {if _ggdc .Get ("\u0052\u0065\u0066")!=nil {_deeg =append (_deeg ,_ba ("\u0036.\u0032\u002e\u0036\u002d\u0031","\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0058O\u0062\u006a\u0065\u0063\u0074s\u002e")); +_dfgb =true ;};};if _bbee .String ()=="\u0050\u0053"{if !_bedfd {_deeg =append (_deeg ,_ba ("\u0036.\u0032\u002e\u0037\u002d\u0031","A \u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066i\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0050\u006f\u0073t\u0053c\u0072\u0069\u0070\u0074\u0020\u0058\u004f\u0062j\u0065c\u0074\u0073.")); +_bedfd =true ;continue ;};};if _bbee .String ()=="\u0046\u006f\u0072\u006d"{if _cbaf &&_feadg &&_dfgb {continue ;};if !_cbaf &&_ggdc .Get ("\u004f\u0050\u0049")!=nil {_deeg =append (_deeg ,_ba ("\u0036.\u0032\u002e\u0034\u002d\u0032","\u0041\u006e\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u0028\u0049\u006d\u0061\u0067\u0065\u0020\u006f\u0072\u0020\u0046\u006f\u0072\u006d\u0029\u0020\u0073\u0068\u0061\u006cl\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u004fP\u0049\u0020\u006b\u0065\u0079\u002e")); +_cbaf =true ;};if !_feadg {if _ggdc .Get ("\u0050\u0053")!=nil {_feadg =true ;};if _eccb :=_ggdc .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");_eccb !=nil &&!_feadg {if _faccg ,_abb :=_ad .GetName (_eccb );_abb &&*_faccg =="\u0050\u0053"{_feadg =true ; +};};if _feadg {_deeg =append (_deeg ,_ba ("\u0036.\u0032\u002e\u0035\u002d\u0031","A\u0020\u0066\u006fr\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065\u0079 \u0077\u0069\u0074\u0068\u0020a\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u0020o\u0072\u0020\u0074\u0068e\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e")); +};};continue ;};if _bbee .String ()!="\u0049\u006d\u0061g\u0065"{continue ;};if !_bdgf &&_ggdc .Get ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073")!=nil {_deeg =append (_deeg ,_ba ("\u0036.\u0032\u002e\u0034\u002d\u0031","\u0041\u006e\u0020\u0049m\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073\u0020\u006b\u0065\u0079\u002e")); +_bdgf =true ;};if !_gaeg &&_ggdc .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065")!=nil {_gdcf ,_adae :=_ad .GetBool (_ggdc .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065"));if _adae &&bool (*_gdcf ){continue ; +};_deeg =append (_deeg ,_ba ("\u0036.\u0032\u002e\u0034\u002d\u0033","\u0049\u0066 a\u006e\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0063o\u006e\u0074\u0061\u0069n\u0073\u0020\u0074\u0068e \u0049\u006et\u0065r\u0070\u006f\u006c\u0061\u0074\u0065 \u006b\u0065\u0079,\u0020\u0069t\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020b\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); +_gaeg =true ;};};return _deeg ;};var _ Profile =(*Profile1B )(nil );func (_gbf *documentImages )hasOnlyDeviceGray ()bool {return _gbf ._eeb &&!_gbf ._eea &&!_gbf ._fc };func _fec (_beg *_ea .Document )error {_ddca :=map[string ]*_ad .PdfObjectDictionary {}; +_fcb :=_dad .NewFinder (&_dad .FinderOpts {Extensions :[]string {"\u002e\u0074\u0074\u0066"}});_ccd :=map[_ad .PdfObject ]struct{}{};_bce :=map[_ad .PdfObject ]struct{}{};for _ ,_efa :=range _beg .Objects {_eef ,_fee :=_ad .GetDict (_efa );if !_fee {continue ; +};_ceca :=_eef .Get ("\u0054\u0079\u0070\u0065");if _ceca ==nil {continue ;};if _fgf ,_ffc :=_ad .GetName (_ceca );_ffc &&_fgf .String ()!="\u0046\u006f\u006e\u0074"{continue ;};if _ ,_fbbg :=_ccd [_efa ];_fbbg {continue ;};_geg ,_eaae :=_da .NewPdfFontFromPdfObject (_eef ); +if _eaae !=nil {_ca .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006fn\u0074\u0020\u0066\u0072\u006fm\u0020\u006fb\u006a\u0065\u0063\u0074");return _eaae ; +};_dab ,_eaae :=_geg .GetFontDescriptor ();if _eaae !=nil {return _eaae ;};if _dab !=nil &&(_dab .FontFile !=nil ||_dab .FontFile2 !=nil ||_dab .FontFile3 !=nil ){continue ;};_gdb :=_geg .BaseFont ();if _gdb ==""{return _d .Errorf ("\u006f\u006e\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065c\u0074\u0073\u0020\u0073\u0079\u006e\u0074\u0061\u0078\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0076\u0061\u006c\u0069d\u0020\u002d\u0020\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074\u0020\u0075\u006ed\u0065\u0066\u0069n\u0065\u0064\u003a\u0020\u0025\u0073",_eef .String ()); +};_eag ,_gec :=_ddca [_gdb ];if !_gec {if len (_gdb )> 7&&_gdb [6]=='+'{_gdb =_gdb [7:];};_gggb :=[]string {_gdb ,"\u0054i\u006de\u0073\u0020\u004e\u0065\u0077\u0020\u0052\u006f\u006d\u0061\u006e","\u0041\u0072\u0069a\u006c","D\u0065\u006a\u0061\u0056\u0075\u0020\u0053\u0061\u006e\u0073"}; +for _ ,_aeg :=range _gggb {_ca .Log .Debug ("\u0044\u0045\u0042\u0055\u0047\u003a \u0073\u0065\u0061\u0072\u0063\u0068\u0069\u006e\u0067\u0020\u0073\u0079\u0073t\u0065\u006d\u0020\u0066\u006f\u006e\u0074 \u0060\u0025\u0073\u0060",_aeg );if _eag ,_gec =_ddca [_aeg ]; +_gec {break ;};_bfe :=_fcb .Match (_aeg );if _bfe ==nil {_ca .Log .Debug ("c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0066\u0069\u006e\u0064\u0020\u0066\u006fn\u0074\u0020\u0066i\u006ce\u0020\u0025\u0073",_aeg );continue ;};_fbf ,_gdd :=_da .NewPdfFontFromTTFFile (_bfe .Filename ); +if _gdd !=nil {return _gdd ;};_dgf :=_fbf .FontDescriptor ();if _dgf .FontFile !=nil {if _ ,_gec =_bce [_dgf .FontFile ];!_gec {_beg .Objects =append (_beg .Objects ,_dgf .FontFile );_bce [_dgf .FontFile ]=struct{}{};};};if _dgf .FontFile2 !=nil {if _ ,_gec =_bce [_dgf .FontFile2 ]; +!_gec {_beg .Objects =append (_beg .Objects ,_dgf .FontFile2 );_bce [_dgf .FontFile2 ]=struct{}{};};};if _dgf .FontFile3 !=nil {if _ ,_gec =_bce [_dgf .FontFile3 ];!_gec {_beg .Objects =append (_beg .Objects ,_dgf .FontFile3 );_bce [_dgf .FontFile3 ]=struct{}{}; +};};_ecc ,_bcd :=_fbf .ToPdfObject ().(*_ad .PdfIndirectObject );if !_bcd {_ca .Log .Debug ("\u0066\u006f\u006e\u0074\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); +continue ;};_daa ,_bcd :=_ecc .PdfObject .(*_ad .PdfObjectDictionary );if !_bcd {_ca .Log .Debug ("\u0046\u006fn\u0074\u0020\u0074\u0079p\u0065\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +continue ;};_ddca [_aeg ]=_daa ;_eag =_daa ;break ;};if _eag ==nil {_ca .Log .Debug ("\u004e\u006f\u0020\u006d\u0061\u0074\u0063\u0068\u0069\u006eg\u0020\u0066\u006f\u006e\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u0066\u006f\u0072\u003a\u0020\u0025\u0073",_geg .BaseFont ()); +return _gg .New ("\u006e\u006f m\u0061\u0074\u0063h\u0069\u006e\u0067\u0020fon\u0074 f\u006f\u0075\u006e\u0064\u0020\u0069\u006e t\u0068\u0065\u0020\u0073\u0079\u0073\u0074e\u006d");};};for _ ,_edb :=range _eag .Keys (){_eef .Set (_edb ,_eag .Get (_edb )); +};_fac :=_eag .Get ("\u0057\u0069\u0064\u0074\u0068\u0073");if _fac !=nil {if _ ,_gec =_bce [_fac ];!_gec {_beg .Objects =append (_beg .Objects ,_fac );_bce [_fac ]=struct{}{};};};_ccd [_efa ]=struct{}{};_bcdd :=_eef .Get ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072"); +if _bcdd !=nil {_beg .Objects =append (_beg .Objects ,_bcdd );_bce [_bcdd ]=struct{}{};};};return nil ;}; -// Profile is the model.StandardImplementer enhanced by the information about the profile conformance level. -type Profile interface{_b .StandardImplementer ;Conformance ()string ;Part ()int ;};func (_aeg *documentImages )hasUncalibratedImages ()bool {return _aeg ._cff ||_aeg ._cgf ||_aeg ._ca };func _eea (_fac []_fc .PdfObject )(*documentImages ,error ){_fd :=_fc .PdfObjectName ("\u0053u\u0062\u0074\u0079\u0070\u0065"); -_gcb :=make (map[*_fc .PdfObjectStream ]struct{});_bgb :=make (map[_fc .PdfObject ]struct{});var (_cfc ,_ba ,_afg bool ;_fad []*imageInfo ;_db error ;);for _ ,_bbg :=range _fac {_edd ,_dg :=_fc .GetStream (_bbg );if !_dg {continue ;};if _ ,_ge :=_gcb [_edd ]; -_ge {continue ;};_gcb [_edd ]=struct{}{};_fcb :=_edd .PdfObjectDictionary .Get (_fd );_aadb ,_dg :=_fc .GetName (_fcb );if !_dg ||string (*_aadb )!="\u0049\u006d\u0061g\u0065"{continue ;};if _fae :=_edd .PdfObjectDictionary .Get ("\u0053\u004d\u0061s\u006b"); -_fae !=nil {_bgb [_fae ]=struct{}{};};_cc :=imageInfo {BitsPerComponent :8,Stream :_edd };_cc .ColorSpace ,_db =_b .DetermineColorspaceNameFromPdfObject (_edd .PdfObjectDictionary .Get ("\u0043\u006f\u006c\u006f\u0072\u0053\u0070\u0061\u0063\u0065"));if _db !=nil {return nil ,_db ; -};if _eaa ,_acf :=_fc .GetIntVal (_edd .PdfObjectDictionary .Get ("\u0042\u0069t\u0073\u0050\u0065r\u0043\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074"));_acf {_cc .BitsPerComponent =_eaa ;};if _ccg ,_bf :=_fc .GetIntVal (_edd .PdfObjectDictionary .Get ("\u0057\u0069\u0064t\u0068")); -_bf {_cc .Width =_ccg ;};if _fdf ,_aegd :=_fc .GetIntVal (_edd .PdfObjectDictionary .Get ("\u0048\u0065\u0069\u0067\u0068\u0074"));_aegd {_cc .Height =_fdf ;};switch _cc .ColorSpace {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_afg =true ; -_cc .ColorComponents =1;case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_cfc =true ;_cc .ColorComponents =3;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_ba =true ;_cc .ColorComponents =4;default:_cc ._gcg =true ;};_fad =append (_fad ,&_cc ); -};if len (_bgb )> 0{if len (_bgb )==len (_fad ){_fad =nil ;}else {_fbe :=make ([]*imageInfo ,len (_fad )-len (_bgb ));var _gcbe int ;for _ ,_eg :=range _fad {if _ ,_aaf :=_bgb [_eg .Stream ];_aaf {continue ;};_fbe [_gcbe ]=_eg ;_gcbe ++;};_fad =_fbe ;}; -};return &documentImages {_cff :_cfc ,_cgf :_ba ,_ca :_afg ,_aad :_bgb ,_bgc :_fad },nil ;};func _gef (_dae *_ag .Document ,_bec standardType ,_agf XmpOptions )error {_fcec ,_debg :=_dae .FindCatalog ();if !_debg {return nil ;};var _fcf *_fg .Document ; -_agde ,_debg :=_fcec .GetMetadata ();if !_debg {_fcf =_fg .NewDocument ();}else {var _fea error ;_fcf ,_fea =_fg .LoadDocument (_agde .Stream );if _fea !=nil {return _fea ;};};_cfb :=_fg .PdfInfoOptions {InfoDict :_dae .Info ,PdfVersion :_g .Sprintf ("\u0025\u0064\u002e%\u0064",_dae .Version .Major ,_dae .Version .Minor ),Copyright :_agf .Copyright ,Overwrite :true }; -_dcd ,_debg :=_fcec .GetMarkInfo ();if _debg {_gada ,_aba :=_fc .GetBool (_dcd .Get ("\u004d\u0061\u0072\u006b\u0065\u0064"));if _aba &&bool (*_gada ){_cfb .Marked =true ;};};if _aag :=_fcf .SetPdfInfo (&_cfb );_aag !=nil {return _aag ;};if _gccb :=_fcf .SetPdfAID (_bec ._bdc ,_bec ._dc ); -_gccb !=nil {return _gccb ;};_geef :=_fg .MediaManagementOptions {OriginalDocumentID :_agf .OriginalDocumentID ,DocumentID :_agf .DocumentID ,InstanceID :_agf .InstanceID ,NewDocumentID :!_agf .NewDocumentVersion ,ModifyComment :"O\u0070\u0074\u0069\u006d\u0069\u007ae\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0074\u006f\u0020\u0050D\u0046\u002f\u0041\u0020\u0073\u0074\u0061\u006e\u0064\u0061r\u0064"}; -_gcbeg ,_debg :=_fc .GetDict (_dae .Info );if _debg {if _cffg ,_dce :=_fc .GetString (_gcbeg .Get ("\u004do\u0064\u0044\u0061\u0074\u0065"));_dce &&_cffg .String ()!=""{_caaf ,_aaaa :=_cb .ParsePdfTime (_cffg .String ());if _aaaa !=nil {return _g .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u004d\u006f\u0064\u0044a\u0074e\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025w",_aaaa ); -};_geef .ModifyDate =_caaf ;};};if _egg :=_fcf .SetMediaManagement (&_geef );_egg !=nil {return _egg ;};if _egegg :=_fcf .SetPdfAExtension ();_egegg !=nil {return _egegg ;};_ffga ,_abd :=_fcf .MarshalIndent (_agf .MarshalPrefix ,_agf .MarshalIndent );if _abd !=nil {return _abd ; -};if _ggcc :=_fcec .SetMetadata (_ffga );_ggcc !=nil {return _ggcc ;};return nil ;}; +// Part gets the PDF/A version level. +func (_fffb *profile2 )Part ()int {return _fffb ._fcdd ._efe };func _ffdf (_aedf *_ea .Document )error {_deeb ,_ffa :=_aedf .FindCatalog ();if !_ffa {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};if _deeb .Object .Get ("\u0052\u0065\u0071u\u0069\u0072\u0065\u006d\u0065\u006e\u0074\u0073")!=nil {_deeb .Object .Remove ("\u0052\u0065\u0071u\u0069\u0072\u0065\u006d\u0065\u006e\u0074\u0073");};return nil ;};func _gbfd (_fdbc *_da .CompliancePdfReader )ViolatedRule {for _ ,_cfag :=range _fdbc .PageList {_dacdf :=_cfag .GetContentStreamObjs (); +for _ ,_gdae :=range _dacdf {_gdae =_ad .TraceToDirectObject (_gdae );var _daed string ;switch _dgcc :=_gdae .(type ){case *_ad .PdfObjectString :_daed =_dgcc .Str ();case *_ad .PdfObjectStream :_fgeac ,_adbc :=_ad .GetName (_ad .TraceToDirectObject (_dgcc .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"))); +if _adbc {if *_fgeac ==_ad .StreamEncodingFilterNameLZW {return _ba ("\u0036\u002e\u0031\u002e\u0031\u0030\u002d\u0032","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e"); +};};_eaca ,_cdff :=_ad .DecodeStream (_dgcc );if _cdff !=nil {_ca .Log .Debug ("\u0045r\u0072\u003a\u0020\u0025\u0076",_cdff );continue ;};_daed =string (_eaca );default:_ca .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063t\u003a\u0020\u0025\u0054",_gdae ); +continue ;};_dfed :=_cad .NewContentStreamParser (_daed );_ebad ,_ccbb :=_dfed .Parse ();if _ccbb !=nil {_ca .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u006f\u006et\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d:\u0020\u0025\u0076",_ccbb ); +continue ;};for _ ,_ceec :=range *_ebad {if !(_ceec .Operand =="\u0042\u0049"&&len (_ceec .Params )==1){continue ;};_faaag ,_ceed :=_ceec .Params [0].(*_cad .ContentStreamInlineImage );if !_ceed {continue ;};_bgef ,_bgc :=_faaag .GetEncoder ();if _bgc !=nil {_ca .Log .Debug ("\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u006e\u006c\u0069\u006ee\u0020\u0069\u006d\u0061\u0067\u0065 \u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_bgc ); +continue ;};if _bgef .GetFilterName ()==_ad .StreamEncodingFilterNameLZW {return _ba ("\u0036\u002e\u0031\u002e\u0031\u0030\u002d\u0032","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e"); +};};};};return _bg ;};var _ Profile =(*Profile2U )(nil );func (_db standardType )String ()string {return _d .Sprintf ("\u0050\u0044\u0046\u002f\u0041\u002d\u0025\u0064\u0025\u0073",_db ._efe ,_db ._ee );}; // Profile2B is the implementation of the PDF/A-2B standard profile. // Implements model.StandardImplementer, Profile interfaces. -type Profile2B struct{profile2 };var _ Profile =(*Profile2A )(nil );func _bfdad (_ccea *_b .CompliancePdfReader )(_aedbe []ViolatedRule ){var _gcce ,_bbdfd ,_ecda ,_ddbg ,_ddbc ,_cfdgg ,_agbc bool ;_dgfb :=func ()bool {return _gcce &&_bbdfd &&_ecda &&_ddbg &&_ddbc &&_cfdgg &&_agbc }; -_dcac :=func (_fbbeb *_fc .PdfObjectDictionary )bool {if !_gcce &&_fbbeb .Get ("\u0054\u0052")!=nil {_gcce =true ;_aedbe =append (_aedbe ,_fe ("\u0036.\u0032\u002e\u0035\u002d\u0031","\u0041\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0054\u0052\u0020\u006b\u0065\u0079\u002e")); -};if _gagef :=_fbbeb .Get ("\u0054\u0052\u0032");!_bbdfd &&_gagef !=nil {_ddfgd ,_fgggf :=_fc .GetName (_gagef );if !_fgggf ||(_fgggf &&*_ddfgd !="\u0044e\u0066\u0061\u0075\u006c\u0074"){_bbdfd =true ;_aedbe =append (_aedbe ,_fe ("\u0036.\u0032\u002e\u0035\u002d\u0032","\u0041\u006e \u0045\u0078\u0074G\u0053\u0074\u0061\u0074\u0065 \u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074a\u0069n\u0020\u0074\u0068\u0065\u0020\u0054R2 \u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076al\u0075e\u0020\u006f\u0074\u0068e\u0072 \u0074h\u0061\u006e \u0044\u0065fa\u0075\u006c\u0074\u002e")); -if _dgfb (){return true ;};};};if !_ecda &&_fbbeb .Get ("\u0048\u0054\u0050")!=nil {_ecda =true ;_aedbe =append (_aedbe ,_fe ("\u0036.\u0032\u002e\u0035\u002d\u0033","\u0041\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020th\u0065\u0020\u0048\u0054\u0050\u0020\u006b\u0065\u0079\u002e")); -};_decg ,_facde :=_fc .GetDict (_fbbeb .Get ("\u0048\u0054"));if _facde {if _ecdad :=_decg .Get ("\u0048\u0061\u006cf\u0074\u006f\u006e\u0065\u0054\u0079\u0070\u0065");!_ddbg &&_ecdad !=nil {_fgef ,_agddb :=_fc .GetInt (_ecdad );if !_agddb ||(_agddb &&!(*_fgef ==1||*_fgef ==5)){_aedbe =append (_aedbe ,_fe ("\u0020\u0036\u002e\u0032\u002e\u0035\u002d\u0034","\u0041\u006c\u006c\u0020\u0068\u0061\u006c\u0066\u0074\u006f\u006e\u0065\u0073\u0020\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0032\u0020\u0066\u0069\u006ce\u0020\u0073h\u0061\u006c\u006c\u0020h\u0061\u0076\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061l\u0075\u0065\u0020\u0031\u0020\u006f\u0072\u0020\u0035 \u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0048\u0061l\u0066\u0074\u006fn\u0065\u0054\u0079\u0070\u0065\u0020\u006be\u0079\u002e")); -if _dgfb (){return true ;};};};if _fdea :=_decg .Get ("\u0048\u0061\u006cf\u0074\u006f\u006e\u0065\u004e\u0061\u006d\u0065");!_ddbc &&_fdea !=nil {_ddbc =true ;_aedbe =append (_aedbe ,_fe ("\u0036.\u0032\u002e\u0035\u002d\u0035","\u0048\u0061\u006c\u0066\u0074o\u006e\u0065\u0073\u0020\u0069\u006e\u0020a\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0032\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020\u0061\u0020\u0048\u0061\u006c\u0066\u0074\u006f\u006e\u0065N\u0061\u006d\u0065\u0020\u006b\u0065y\u002e")); -if _dgfb (){return true ;};};};_ ,_gggg :=_eab (_ccea );var _eceg bool ;_dgdf ,_facde :=_fc .GetDict (_fbbeb .Get ("\u0047\u0072\u006fu\u0070"));if _facde {_ ,_eaddc :=_fc .GetName (_dgdf .Get ("\u0043\u0053"));if _eaddc {_eceg =true ;};};if _fcbfe :=_fbbeb .Get ("\u0042\u004d"); -!_cfdgg &&!_agbc &&_fcbfe !=nil {_dgfg ,_cdfb :=_fc .GetName (_fcbfe );if _cdfb {switch _dgfg .String (){case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065","\u004d\u0075\u006c\u0074\u0069\u0070\u006c\u0079","\u0053\u0063\u0072\u0065\u0065\u006e","\u004fv\u0065\u0072\u006c\u0061\u0079","\u0044\u0061\u0072\u006b\u0065\u006e","\u004ci\u0067\u0068\u0074\u0065\u006e","\u0043\u006f\u006c\u006f\u0072\u0044\u006f\u0064\u0067\u0065","\u0043o\u006c\u006f\u0072\u0042\u0075\u0072n","\u0048a\u0072\u0064\u004c\u0069\u0067\u0068t","\u0053o\u0066\u0074\u004c\u0069\u0067\u0068t","\u0044\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065","\u0045x\u0063\u006c\u0075\u0073\u0069\u006fn","\u0048\u0075\u0065","\u0053\u0061\u0074\u0075\u0072\u0061\u0074\u0069\u006f\u006e","\u0043\u006f\u006co\u0072","\u004c\u0075\u006d\u0069\u006e\u006f\u0073\u0069\u0074\u0079":default:_cfdgg =true ; -_aedbe =append (_aedbe ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0031","\u004f\u006el\u0079\u0020\u0062\u006c\u0065\u006e\u0064\u0020\u006d\u006f\u0064\u0065\u0073\u0020\u0074h\u0061\u0074\u0020\u0061\u0072\u0065\u0020\u0073\u0070\u0065c\u0069\u0066\u0069ed\u0020\u0069\u006e\u0020\u0049\u0053O\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031\u003a2\u0030\u0030\u0038\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075e\u0020\u006f\u0066\u0020\u0074\u0068e\u0020\u0042M\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0020\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0020\u0073\u0074\u0061\u0074\u0065 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); -if _dgfb (){return true ;};};if _dgfg .String ()!="\u004e\u006f\u0072\u006d\u0061\u006c"&&!_gggg &&!_eceg {_agbc =true ;_aedbe =append (_aedbe ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); -if _dgfb (){return true ;};};};};if _ ,_facde =_fc .GetDict (_fbbeb .Get ("\u0053\u004d\u0061s\u006b"));!_agbc &&_facde &&!_gggg &&!_eceg {_agbc =true ;_aedbe =append (_aedbe ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); -if _dgfb (){return true ;};};if _eadcg :=_fbbeb .Get ("\u0043\u0041");!_agbc &&_eadcg !=nil &&!_gggg &&!_eceg {_faag ,_dfaaa :=_fc .GetNumberAsFloat (_eadcg );if _dfaaa ==nil &&_faag < 1.0{_agbc =true ;_aedbe =append (_aedbe ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); -if _dgfb (){return true ;};};};if _gbce :=_fbbeb .Get ("\u0063\u0061");!_agbc &&_gbce !=nil &&!_gggg &&!_eceg {_ebfe ,_bcdc :=_fc .GetNumberAsFloat (_gbce );if _bcdc ==nil &&_ebfe < 1.0{_agbc =true ;_aedbe =append (_aedbe ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); -if _dgfb (){return true ;};};};return false ;};for _ ,_ccbgd :=range _ccea .PageList {_fggd :=_ccbgd .Resources ;if _fggd ==nil {continue ;};if _fggd .ExtGState ==nil {continue ;};_agdae ,_bdgea :=_fc .GetDict (_fggd .ExtGState );if !_bdgea {continue ; -};_ddca :=_agdae .Keys ();for _ ,_gfecc :=range _ddca {_cdag ,_aeaa :=_fc .GetDict (_agdae .Get (_gfecc ));if !_aeaa {continue ;};if _dcac (_cdag ){return _aedbe ;};};};for _ ,_gbcc :=range _ccea .PageList {_bdcac :=_gbcc .Resources ;if _bdcac ==nil {continue ; -};_bdccf ,_aeafe :=_fc .GetDict (_bdcac .XObject );if !_aeafe {continue ;};for _ ,_afge :=range _bdccf .Keys (){_acab ,_fbdb :=_fc .GetStream (_bdccf .Get (_afge ));if !_fbdb {continue ;};_bfad ,_fbdb :=_fc .GetDict (_acab .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); -if !_fbdb {continue ;};_ecege ,_fbdb :=_fc .GetDict (_bfad .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_fbdb {continue ;};for _ ,_dggac :=range _ecege .Keys (){_deeag ,_cgge :=_fc .GetDict (_ecege .Get (_dggac ));if !_cgge {continue ;};if _dcac (_deeag ){return _aedbe ; -};};};};return _aedbe ;};func _gdcf (_aeba *_b .PdfInfo ,_ebag func ()_c .Time )error {var _dgef *_b .PdfDate ;if _aeba .CreationDate ==nil {_bece ,_egdb :=_b .NewPdfDateFromTime (_ebag ());if _egdb !=nil {return _egdb ;};_dgef =&_bece ;_aeba .CreationDate =_dgef ; -};if _aeba .ModifiedDate ==nil {if _dgef !=nil {_feec ,_egdd :=_b .NewPdfDateFromTime (_ebag ());if _egdd !=nil {return _egdd ;};_dgef =&_feec ;};_aeba .ModifiedDate =_dgef ;};return nil ;};func _cecc (_acced *_b .CompliancePdfReader )ViolatedRule {_addcd ,_cfab :=_acced .PdfReader .GetTrailer (); -if _cfab !=nil {return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u006d\u0069\u0073s\u0069\u006e\u0067\u0020t\u0072\u0061\u0069\u006c\u0065\u0072\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074");};if _addcd .Get ("\u0049\u0044")==nil {return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068e\u0020\u0027\u0049\u0044\u0027\u0020k\u0065\u0079\u0077o\u0072\u0064"); -};if _addcd .Get ("\u0045n\u0063\u0072\u0079\u0070\u0074")!=nil {return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0032","\u0054\u0068\u0065\u0020\u006b\u0065y\u0077\u006f\u0072\u0064\u0020'\u0045\u006e\u0063\u0072\u0079\u0070t\u0027\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0075\u0073\u0065d\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u002e\u0020"); -};return _da ;};func _bccf (_afedb *_ag .Document ,_cad bool )error {_edg ,_fedf :=_afedb .GetPages ();if !_fedf {return nil ;};for _ ,_eecd :=range _edg {_ecg ,_efe :=_fc .GetArray (_eecd .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if !_efe {continue ; -};for _ ,_fcaf :=range _ecg .Elements (){_cfeeg ,_bccfe :=_fc .GetDict (_fcaf );if !_bccfe {continue ;};_afgg :=_cfeeg .Get ("\u0043");if _afgg ==nil {continue ;};_fgea ,_bccfe :=_fc .GetArray (_afgg );if !_bccfe {continue ;};_aab ,_afc :=_fgea .GetAsFloat64Slice (); -if _afc !=nil {return _afc ;};switch _fgea .Len (){case 0,1:if _cad {_cfeeg .Set ("\u0043",_fc .MakeArrayFromIntegers ([]int {1,1,1,1}));}else {_cfeeg .Set ("\u0043",_fc .MakeArrayFromIntegers ([]int {1,1,1}));};case 3:if _cad {_ggbba ,_cbe ,_abf ,_egf :=_ad .RGBToCMYK (uint8 (_aab [0]*255),uint8 (_aab [1]*255),uint8 (_aab [2]*255)); -_cfeeg .Set ("\u0043",_fc .MakeArrayFromFloats ([]float64 {float64 (_ggbba )/255,float64 (_cbe )/255,float64 (_abf )/255,float64 (_egf )/255}));};case 4:if !_cad {_gace ,_eebb ,_cfa :=_ad .CMYKToRGB (uint8 (_aab [0]*255),uint8 (_aab [1]*255),uint8 (_aab [2]*255),uint8 (_aab [3]*255)); -_cfeeg .Set ("\u0043",_fc .MakeArrayFromFloats ([]float64 {float64 (_gace )/255,float64 (_eebb )/255,float64 (_cfa )/255}));};};};};return nil ;};var _ Profile =(*Profile2U )(nil );func _gfad (_ggbdf *_b .CompliancePdfReader )(_adaf ViolatedRule ){_aacfc ,_bccca :=_faac (_ggbdf ); -if !_bccca {return _da ;};if _aacfc .Get ("\u0041\u0041")!=nil {return _fe ("\u0036.\u0035\u002e\u0032\u002d\u0031","\u0054h\u0065\u0020\u0064\u006fc\u0075m\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0073\u0068\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020a\u006e\u0020\u0041\u0041\u0020\u0065\u006e\u0074\u0072\u0079 \u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061c\u0074\u0069\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079\u002e"); -};return _da ;};func _geg (_faec []*_ag .Image ,_afe bool )error {_gee :=_fc .PdfObjectName ("\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B");if _afe {_gee ="\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b";};for _ ,_fge :=range _faec {if _fge .Colorspace ==_gee {continue ; -};_caf ,_ceg :=_b .NewXObjectImageFromStream (_fge .Stream );if _ceg !=nil {return _ceg ;};_gge ,_ceg :=_caf .ToImage ();if _ceg !=nil {return _ceg ;};_fed ,_ceg :=_gge .ToGoImage ();if _ceg !=nil {return _ceg ;};var _edde _b .PdfColorspace ;if _afe {_edde =_b .NewPdfColorspaceDeviceCMYK (); -_fed ,_ceg =_ae .CMYKConverter .Convert (_fed );}else {_edde =_b .NewPdfColorspaceDeviceRGB ();_fed ,_ceg =_ae .NRGBAConverter .Convert (_fed );};if _ceg !=nil {return _ceg ;};_dba ,_acc :=_fed .(_ae .Image );if !_acc {return _d .New ("\u0069\u006d\u0061\u0067\u0065\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074 \u0069\u006d\u0070\u006c\u0065\u006de\u006e\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u0075\u0074\u0069\u006c\u002eI\u006d\u0061\u0067\u0065"); -};_acb :=_dba .Base ();_cde :=&_b .Image {Width :int64 (_acb .Width ),Height :int64 (_acb .Height ),BitsPerComponent :int64 (_acb .BitsPerComponent ),ColorComponents :_acb .ColorComponents ,Data :_acb .Data };_cde .SetDecode (_acb .Decode );_cde .SetAlpha (_acb .Alpha ); -if _ceg =_caf .SetImage (_cde ,_edde );_ceg !=nil {return _ceg ;};_caf .ToPdfObject ();_fge .ColorComponents =_acb .ColorComponents ;_fge .Colorspace =_gee ;};return nil ;};func _fgfdc (_fcca *_fc .PdfObjectStream ,_gbfe map[*_fc .PdfObjectStream ][]byte ,_cefc map[*_fc .PdfObjectStream ]*_gc .CMap )(*_gc .CMap ,error ){_abcac ,_acece :=_cefc [_fcca ]; -if !_acece {var _aeeea error ;_beag ,_ffcg :=_gbfe [_fcca ];if !_ffcg {_beag ,_aeeea =_fc .DecodeStream (_fcca );if _aeeea !=nil {_cf .Log .Debug ("\u0064\u0065\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0073\u0074r\u0065\u0061\u006d\u0020\u0066\u0061\u0069\u006c\u0065\u0064:\u0020\u0025\u0076",_aeeea ); -return nil ,_aeeea ;};_gbfe [_fcca ]=_beag ;};_abcac ,_aeeea =_gc .LoadCmapFromData (_beag ,false );if _aeeea !=nil {return nil ,_aeeea ;};_cefc [_fcca ]=_abcac ;};return _abcac ,nil ;};func _cagfe (_adge *_b .PdfFont ,_ceec *_fc .PdfObjectDictionary )ViolatedRule {const (_eeeb ="\u0036.\u0033\u002e\u0035\u002d\u0032"; -_efba ="\u0046\u006f\u0072\u0020\u0061l\u006c\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020\u0066\u006f\u006e\u0074 \u0073\u0075bs\u0065\u0074\u0073 \u0072\u0065\u0066e\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0074he\u0020f\u006f\u006e\u0074\u0020\u0064\u0065s\u0063r\u0069\u0070\u0074o\u0072\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006ec\u006c\u0075\u0064e\u0020\u0061\u0020\u0043\u0068\u0061\u0072\u0053\u0065\u0074\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0020\u006c\u0069\u0073\u0074\u0069\u006e\u0067\u0020\u0074\u0068\u0065\u0020\u0063\u0068\u0061\u0072a\u0063\u0074\u0065\u0072 \u006e\u0061\u006d\u0065\u0073\u0020d\u0065\u0066i\u006e\u0065\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020f\u006f\u006e\u0074\u0020s\u0075\u0062\u0073\u0065\u0074, \u0061\u0073 \u0064\u0065s\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e \u0050\u0044\u0046\u0020\u0052e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0054\u0061\u0062\u006ce\u0020\u0035\u002e1\u0038\u002e"; -);var _cbcdd string ;if _feef ,_bddc :=_fc .GetName (_ceec .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_bddc {_cbcdd =_feef .String ();};if _cbcdd !="\u0054\u0079\u0070e\u0031"{return _da ;};if _aec .IsStdFont (_aec .StdFontName (_adge .BaseFont ())){return _da ; -};_cbae :=_adge .FontDescriptor ();if _cbae .CharSet ==nil {return _fe (_eeeb ,_efba );};return _da ;};func _eceae (_acae *_b .CompliancePdfReader )(_gffbd []ViolatedRule ){for _ ,_dcacc :=range _acae .GetObjectNums (){_fgbg ,_beebg :=_acae .GetIndirectObjectByNumber (_dcacc ); -if _beebg !=nil {continue ;};_efgg ,_gebc :=_fc .GetDict (_fgbg );if !_gebc {continue ;};_aefa ,_gebc :=_fc .GetName (_efgg .Get ("\u0054\u0079\u0070\u0065"));if !_gebc {continue ;};if _aefa .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ; -};_bceb ,_gebc :=_fc .GetBool (_efgg .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073"));if _gebc &&bool (*_bceb ){_gffbd =append (_gffbd ,_fe ("\u0036.\u0034\u002e\u0031\u002d\u0033","\u0054\u0068\u0065\u0020\u004e\u0065e\u0064\u0041\u0070\u0070\u0065a\u0072\u0061\u006e\u0063\u0065\u0073\u0020\u0066\u006c\u0061\u0067\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0069\u006e\u0074\u0065\u0072\u0061\u0063\u0074\u0069\u0076e\u0020\u0066\u006f\u0072\u006d \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u006e\u006f\u0074\u0020b\u0065\u0020\u0070\u0072\u0065se\u006e\u0074\u0020\u006f\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); -};if _efgg .Get ("\u0058\u0046\u0041")!=nil {_gffbd =append (_gffbd ,_fe ("\u0036.\u0034\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0064o\u0063\u0075\u006d\u0065\u006e\u0074\u0027\u0073\u0020i\u006e\u0074\u0065\u0072\u0061\u0063\u0074\u0069\u0076\u0065\u0020\u0066\u006f\u0072\u006d\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020t\u0068\u0061\u0074\u0020f\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065 \u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d \u006b\u0065\u0079\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0027\u0073\u0020\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006f\u0066 \u0061 \u0050\u0044F\u002fA\u002d\u0032\u0020\u0066ile\u002c\u0020\u0069\u0066\u0020\u0070\u0072\u0065\u0073\u0065n\u0074\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0058\u0046\u0041\u0020\u006b\u0065y.")); -};};_abaab ,_bace :=_faac (_acae );if _bace &&_abaab .Get ("\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067")!=nil {_gffbd =append (_gffbd ,_fe ("\u0036.\u0034\u002e\u0032\u002d\u0032","\u0041\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0027\u0073\u0020\u0043\u0061\u0074\u0061\u006cog\u0020s\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u002e")); -};return _gffbd ;}; +type Profile2B struct{profile2 };var _ Profile =(*Profile1A )(nil );func _acgab (_gdgeff *_da .CompliancePdfReader )(*_ad .PdfObjectDictionary ,bool ){_bedc ,_bfddf :=_gdgeff .GetTrailer ();if _bfddf !=nil {_ca .Log .Debug ("\u0043\u0061\u006en\u006f\u0074\u0020\u0067e\u0074\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0076",_bfddf ); +return nil ,false ;};_dbdf ,_baca :=_bedc .Get ("\u0052\u006f\u006f\u0074").(*_ad .PdfObjectReference );if !_baca {_ca .Log .Debug ("\u0043a\u006e\u006e\u006f\u0074 \u0066\u0069\u006e\u0064\u0020d\u006fc\u0075m\u0065\u006e\u0074\u0020\u0072\u006f\u006ft"); +return nil ,false ;};_fgad ,_baca :=_ad .GetDict (_ad .ResolveReference (_dbdf ));if !_baca {_ca .Log .Debug ("\u0063\u0061\u006e\u006e\u006f\u0074 \u0072\u0065\u0073\u006f\u006c\u0076\u0065\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); +return nil ,false ;};return _fgad ,true ;}; -// ValidateStandard checks if provided input CompliancePdfReader matches rules that conforms PDF/A-1 standard. -func (_cead *profile1 )ValidateStandard (r *_b .CompliancePdfReader )error {_efcb :=VerificationError {ConformanceLevel :_cead ._bacb ._bdc ,ConformanceVariant :_cead ._bacb ._dc };if _eeca :=_ebcd (r );_eeca !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_eeca ); -};if _aagfe :=_bcaa (r );_aagfe !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_aagfe );};if _baa :=_bgef (r );_baa !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_baa );};if _abfe :=_fbgd (r );_abfe !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_abfe ); -};if _bagf :=_aaae (r );_bagf !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_bagf );};if _eeffg :=_bgaa (r );len (_eeffg )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_eeffg ...);};if _cce :=_fdcf (r );_cce !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_cce ); -};if _ecd :=_ggg (r );len (_ecd )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_ecd ...);};if _gdb :=_daee (r );len (_gdb )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_gdb ...);};if _bbdd :=_cbcb (r );len (_bbdd )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_bbdd ...); -};if _adgca :=_fgdb (r );_adgca !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_adgca );};if _cfcd :=_fded (r );len (_cfcd )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_cfcd ...);};if _bcgdf :=_eage (r );len (_bcgdf )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_bcgdf ...); -};if _bggd :=_gcfd (r );_bggd !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_bggd );};if _ade :=_dgdb (r ,false );len (_ade )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_ade ...);};if _fffe :=_daab (r );len (_fffe )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_fffe ...); -};if _geagg :=_dbdd (r );_geagg !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_geagg );};if _acec :=_bfefb (r );_acec !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_acec );};if _aacb :=_defc (r );_aacb !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_aacb ); -};if _ddcc :=_bea (r );_ddcc !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_ddcc );};if _abfb :=_faef (r );_abfb !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_abfb );};if _gdbc :=_aggc (r );len (_gdbc )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_gdbc ...); -};if _cafa :=_ccdfg (r ,_cead ._bacb );len (_cafa )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_cafa ...);};if _edfcb :=_cccba (r );len (_edfcb )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_edfcb ...);};if _eaea :=_gfgfd (r );_eaea !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_eaea ); -};if _edfe :=_bgca (r );_edfe !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_edfe );};if _gbgf :=_gfbbc (r );len (_gbgf )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_gbgf ...);};if _eced :=_gabd (r );len (_eced )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_eced ...); -};if _edcd :=_bggf (r );_edcd !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_edcd );};if _badg :=_fgada (r );_badg !=_da {_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_badg );};if _afbf :=_caac (r ,_cead ._bacb ,false );len (_afbf )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_afbf ...); -};if _cead ._bacb ==_de (){if _gaba :=_cafc (r );len (_gaba )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_gaba ...);};};if _gcef :=_efad (r );len (_gcef )!=0{_efcb .ViolatedRules =append (_efcb .ViolatedRules ,_gcef ...);};if len (_efcb .ViolatedRules )> 0{_e .Slice (_efcb .ViolatedRules ,func (_abff ,_gdbg int )bool {return _efcb .ViolatedRules [_abff ].RuleNo < _efcb .ViolatedRules [_gdbg ].RuleNo ; -});return _efcb ;};return nil ;};func _efcd (_daafg *_fc .PdfObjectDictionary )ViolatedRule {const (_cgcce ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0032";_cgcbc ="IS\u004f\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u00209\u002e\u0037\u002e\u0034\u002c\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u0031\u0031\u0037\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020\u0074\u0068a\u0074\u0020\u0061\u006c\u006c\u0020\u0065m\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0054\u0079\u0070\u0065\u0020\u0032\u0020\u0043\u0049\u0044\u0046\u006fn\u0074\u0073\u0020\u0069n\u0020t\u0068e\u0020\u0043\u0049D\u0046\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u0043\u0049\u0044\u0054\u006fG\u0049\u0044M\u0061\u0070\u0020\u0065\u006e\u0074\u0072\u0079 \u0074\u0068\u0061\u0074\u0020\u0073\u0068\u0061\u006c\u006c \u0062e\u0020\u0061\u0020\u0073t\u0072\u0065\u0061\u006d\u0020\u006d\u0061\u0070p\u0069\u006e\u0067 f\u0072\u006f\u006d \u0043\u0049\u0044\u0073\u0020\u0074\u006f\u0020\u0067\u006c\u0079p\u0068 \u0069\u006e\u0064\u0069c\u0065\u0073\u0020\u006fr\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u0049d\u0065\u006e\u0074\u0069\u0074\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0049\u0053\u004f\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u0020\u0039\u002e\u0037\u002e\u0034\u002c\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u0031\u0031\u0037\u002e"; -);var _fbcc string ;if _bfeg ,_cgggc :=_fc .GetName (_daafg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cgggc {_fbcc =_bfeg .String ();};if _fbcc !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{return _da ;};if _daafg .Get ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070")==nil {return _fe (_cgcce ,_cgcbc ); -};return _da ;};func _ggdc (_fgabb *_b .CompliancePdfReader ,_gege standardType )(_dfag []ViolatedRule ){var _cfbaf ,_abbb ,_addbf ,_ebca ,_bcag ,_gcaeae ,_bgaad bool ;_dcfac :=func ()bool {return _cfbaf &&_abbb &&_addbf &&_ebca &&_bcag &&_gcaeae &&_bgaad }; -_ebggg :=map[*_fc .PdfObjectStream ]*_gc .CMap {};_gdbb :=map[*_fc .PdfObjectStream ][]byte {};_bdec :=map[_fc .PdfObject ]*_b .PdfFont {};for _ ,_cfce :=range _fgabb .GetObjectNums (){_aeeb ,_dacdf :=_fgabb .GetIndirectObjectByNumber (_cfce );if _dacdf !=nil {continue ; -};_ddbcb ,_aaagf :=_fc .GetDict (_aeeb );if !_aaagf {continue ;};_eebbd ,_aaagf :=_fc .GetName (_ddbcb .Get ("\u0054\u0079\u0070\u0065"));if !_aaagf {continue ;};if *_eebbd !="\u0046\u006f\u006e\u0074"{continue ;};_dgge ,_dacdf :=_b .NewPdfFontFromPdfObject (_ddbcb ); -if _dacdf !=nil {_cf .Log .Debug ("g\u0065\u0074\u0074\u0069\u006e\u0067 \u0066\u006f\u006e\u0074\u0020\u0066r\u006f\u006d\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020%\u0076",_dacdf );continue ;};_bdec [_ddbcb ]=_dgge ; -};for _ ,_dfbdf :=range _fgabb .PageList {_bcda ,_ddbge :=_dfbdf .GetContentStreams ();if _ddbge !=nil {_cf .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067 \u0070\u0061\u0067\u0065\u0020\u0063o\u006e\u0074\u0065\u006e\u0074\u0020\u0073t\u0072\u0065\u0061\u006d\u0073\u0020\u0066\u0061\u0069\u006ce\u0064"); -continue ;};for _ ,_dccdg :=range _bcda {_dcfab :=_fbg .NewContentStreamParser (_dccdg );_accc ,_dfdb :=_dcfab .Parse ();if _dfdb !=nil {_cf .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u0074r\u0065\u0061\u006d\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_dfdb ); -continue ;};var _ffdeg bool ;for _ ,_gcge :=range *_accc {if _gcge .Operand !="\u0054\u0072"{continue ;};if len (_gcge .Params )!=1{_cf .Log .Debug ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054\u0072\u0027\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u002c\u0020\u0065\u0078\u0070e\u0063\u0074\u0065\u0064\u0020\u0027\u0031\u0027\u0020\u0062\u0075\u0074 \u0069\u0073\u003a\u0020\u0027\u0025d\u0027",len (_gcge .Params )); -continue ;};_ebbb ,_gdabe :=_fc .GetIntVal (_gcge .Params [0]);if !_gdabe {_cf .Log .Debug ("\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u006d\u006f\u0064\u0065\u0020i\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); -continue ;};if _ebbb ==3{_ffdeg =true ;break ;};};for _ ,_agff :=range *_accc {if _agff .Operand !="\u0054\u0066"{continue ;};if len (_agff .Params )!=2{_cf .Log .Debug ("i\u006eva\u006ci\u0064 \u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066 \u0070\u0061\u0072\u0061\u006de\u0074\u0065\u0072s\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054f\u0027\u0020\u006fper\u0061\u006e\u0064\u002c\u0020\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0027\u0032\u0027\u0020\u0069s\u003a \u0027\u0025\u0064\u0027",len (_agff .Params )); -continue ;};_efec ,_gafg :=_fc .GetName (_agff .Params [0]);if !_gafg {_cf .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u004ea\u006d\u0065\u0056\u0061\u006c\u0020\u0066a\u0069\u006c\u0065\u0064",_agff ); -continue ;};_fgdg ,_abbe :=_dfbdf .Resources .GetFontByName (*_efec );if !_abbe {_cf .Log .Debug ("\u0066\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");continue ;};_ebbc ,_gafg :=_fc .GetDict (_fgdg );if !_gafg {_cf .Log .Debug ("\u0066\u006f\u006e\u0074 d\u0069\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -continue ;};_afddf ,_gafg :=_bdec [_ebbc ];if !_gafg {var _agdacg error ;_afddf ,_agdacg =_b .NewPdfFontFromPdfObject (_ebbc );if _agdacg !=nil {_cf .Log .Debug ("\u0067\u0065\u0074\u0074i\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0066\u0072o\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_agdacg ); -continue ;};_bdec [_ebbc ]=_afddf ;};if !_cfbaf {_cfbcb :=_aacfd (_ebbc ,_gdbb ,_ebggg );if _cfbcb !=_da {_dfag =append (_dfag ,_cfbcb );_cfbaf =true ;if _dcfac (){return _dfag ;};};};if !_abbb {_fedd :=_efcd (_ebbc );if _fedd !=_da {_dfag =append (_dfag ,_fedd ); -_abbb =true ;if _dcfac (){return _dfag ;};};};if !_addbf {_bfgg :=_fbeed (_ebbc ,_gdbb ,_ebggg );if _bfgg !=_da {_dfag =append (_dfag ,_bfgg );_addbf =true ;if _dcfac (){return _dfag ;};};};if !_ebca {_agddad :=_dbdf (_ebbc ,_gdbb ,_ebggg );if _agddad !=_da {_dfag =append (_dfag ,_agddad ); -_ebca =true ;if _dcfac (){return _dfag ;};};};if !_bcag {_gcaeaf :=_efcea (_afddf ,_ebbc ,_ffdeg );if _gcaeaf !=_da {_bcag =true ;_dfag =append (_dfag ,_gcaeaf );if _dcfac (){return _dfag ;};};};if !_gcaeae {_ffgeg :=_fbbb (_afddf ,_ebbc );if _ffgeg !=_da {_gcaeae =true ; -_dfag =append (_dfag ,_ffgeg );if _dcfac (){return _dfag ;};};};if !_bgaad &&(_gege ._dc =="\u0041"||_gege ._dc =="\u0055"){_aabc :=_cdcaa (_ebbc ,_gdbb ,_ebggg );if _aabc !=_da {_bgaad =true ;_dfag =append (_dfag ,_aabc );if _dcfac (){return _dfag ;}; -};};};};};return _dfag ;};func _aggc (_gecf *_b .CompliancePdfReader )(_deab []ViolatedRule ){var _fgcb ,_fedec ,_eafdg ,_gfbb ,_geade ,_dfaf ,_ccfgb bool ;_gfba :=func ()bool {return _fgcb &&_fedec &&_eafdg &&_gfbb &&_geade &&_dfaf &&_ccfgb };for _ ,_cabff :=range _gecf .PageList {if _cabff .Resources ==nil {continue ; -};_aae ,_fbae :=_fc .GetDict (_cabff .Resources .Font );if !_fbae {continue ;};for _ ,_agbd :=range _aae .Keys (){_deea ,_ddcce :=_fc .GetDict (_aae .Get (_agbd ));if !_ddcce {if !_fgcb {_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0031","\u0041\u006c\u006c\u0020\u0066\u006fn\u0074\u0073\u0020\u0075\u0073e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020c\u006f\u006e\u0066\u006f\u0072m\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0073\u0020d\u0065\u0066\u0069\u006e\u0065d \u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0035\u002e\u0035\u002e")); -_fgcb =true ;if _gfba (){return _deab ;};};continue ;};if _geaca ,_gggd :=_fc .GetName (_deea .Get ("\u0054\u0079\u0070\u0065"));!_fgcb &&(!_gggd ||_geaca .String ()!="\u0046\u006f\u006e\u0074"){_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0031","\u0054\u0079\u0070e\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0029 Th\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066 \u0050\u0044\u0046\u0020\u006fbj\u0065\u0063\u0074\u0020\u0074\u0068\u0061t\u0020\u0074\u0068\u0069s\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0064\u0065\u0073c\u0072\u0069\u0062\u0065\u0073\u003b\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0046\u006f\u006e\u0074\u0020\u0066\u006fr\u0020\u0061\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); -_fgcb =true ;if _gfba (){return _deab ;};};_fafa ,_becgd :=_b .NewPdfFontFromPdfObject (_deea );if _becgd !=nil {continue ;};var _eecca string ;if _aeafd ,_ccce :=_fc .GetName (_deea .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_ccce {_eecca =_aeafd .String (); -};if !_fedec {switch _eecca {case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0031","\u004dM\u0054\u0079\u0070\u0065\u0031","\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":default:_fedec =true ; -_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0032","\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065d\u0029\u0020\u0054\u0068e \u0074\u0079\u0070\u0065 \u006f\u0066\u0020\u0066\u006f\u006et\u003b\u0020\u006d\u0075\u0073\u0074\u0020b\u0065\u0020\u0022\u0054\u0079\u0070\u0065\u0031\u0022\u0020f\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020f\u006f\u006e\u0074\u0073\u002c\u0020\u0022\u004d\u004d\u0054\u0079\u0070\u0065\u0031\u0022\u0020\u0066\u006f\u0072\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020\u006da\u0073\u0074e\u0072\u0020\u0066\u006f\u006e\u0074s\u002c\u0020\u0022\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0022\u0054\u0079\u0070\u0065\u0033\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070e\u0020\u0033\u0020\u0066\u006f\u006e\u0074\u0073\u002c\u0020\"\u0054\u0079\u0070\u0065\u0030\"\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u006ed\u0020\u0022\u0043\u0049\u0044\u0046\u006fn\u0074\u0054\u0079\u0070\u0065\u0030\u0022 \u006f\u0072\u0020\u0022\u0043\u0049\u0044\u0046\u006f\u006e\u0074T\u0079\u0070e\u0032\u0022\u0020\u0066\u006f\u0072\u0020\u0043\u0049\u0044\u0020\u0066\u006f\u006e\u0074\u0073\u002e")); -if _gfba (){return _deab ;};};};if !_eafdg {if _eecca !="\u0054\u0079\u0070e\u0033"{_dcde ,_cccge :=_fc .GetName (_deea .Get ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074"));if !_cccge ||_dcde .String ()==""{_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0033","B\u0061\u0073\u0065\u0046\u006f\u006e\u0074\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064)\u0020T\u0068\u0065\u0020\u0050o\u0073\u0074S\u0063\u0072\u0069\u0070\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u002e")); -_eafdg =true ;if _gfba (){return _deab ;};};};};if _eecca !="\u0054\u0079\u0070e\u0031"{continue ;};_debaa :=_aec .IsStdFont (_aec .StdFontName (_fafa .BaseFont ()));if _debaa {continue ;};_dfcd ,_fgde :=_fc .GetIntVal (_deea .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r")); -if !_fgde &&!_gfbb {_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0034","\u0046\u0069r\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u0073\u0074\u0061\u006e\u0064\u0061\u0072d\u0020\u0031\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u0029\u0020\u0054\u0068\u0065\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064e\u0020\u0064\u0065\u0066i\u006ee\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057i\u0064\u0074\u0068\u0073 \u0061r\u0072\u0061y\u002e")); -_gfbb =true ;if _gfba (){return _deab ;};};_gcggg ,_ggf :=_fc .GetIntVal (_deea .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072"));if !_ggf &&!_geade {_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0035","\u004c\u0061\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069n\u0074\u0065\u0067e\u0072 \u002d\u0020\u0028\u0052\u0065\u0071u\u0069\u0072\u0065d\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0066\u006f\u0072\u0020t\u0068\u0065 s\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0031\u0034\u0020\u0066\u006f\u006ets\u0029\u0020\u0054\u0068\u0065\u0020\u006c\u0061\u0073t\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057\u0069\u0064\u0074h\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u002e")); -_geade =true ;if _gfba (){return _deab ;};};if !_dfaf {_cedb ,_ecfc :=_fc .GetArray (_deea .Get ("\u0057\u0069\u0064\u0074\u0068\u0073"));if !_ecfc ||!_fgde ||!_ggf ||_cedb .Len ()!=_gcggg -_dfcd +1{_deab =append (_deab ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0036","\u0057\u0069\u0064\u0074\u0068\u0073\u0020\u002d a\u0072\u0072\u0061y \u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0073\u0074a\u006e\u0064a\u0072\u0064\u00201\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u003b\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0070\u0072\u0065\u0066e\u0072\u0072e\u0064\u0029\u0020\u0041\u006e \u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0066\u0020\u0028\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u2212 F\u0069\u0072\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u002b\u00201\u0029\u0020\u0077\u0069\u0064\u0074\u0068\u0073.")); -_dfaf =true ;if _gfba (){return _deab ;};};};};};return _deab ;};func _dgdb (_agaeb *_b .CompliancePdfReader ,_bdaab bool )(_cage []ViolatedRule ){var _ebga ,_gbecb ,_cdc ,_gcbb ,_dagc ,_fddd ,_cgdcg bool ;_gfgb :=func ()bool {return _ebga &&_gbecb &&_cdc &&_gcbb &&_dagc &&_fddd &&_cgdcg }; -_ebce ,_aabd :=_eab (_agaeb );var _gcecf _fa .ProfileHeader ;if _aabd {_gcecf ,_ =_fa .ParseHeader (_ebce .DestOutputProfile );};var _ffaa bool ;_dccd :=map[_fc .PdfObject ]struct{}{};var _aegbg func (_ccaad _b .PdfColorspace )bool ;_aegbg =func (_cacc _b .PdfColorspace )bool {switch _bgbad :=_cacc .(type ){case *_b .PdfColorspaceDeviceGray :if !_fddd {if !_aabd {_ffaa =true ; -_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0033\u002d\u0034","\u0044\u0065\u0076\u0069\u0063\u0065G\u0072\u0061\u0079\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0075s\u0065\u0064\u0020\u006f\u006el\u0079\u0020\u0069\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006ce\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020O\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074e\u006e\u0074\u002e")); -_fddd =true ;if _gfgb (){return true ;};};};case *_b .PdfColorspaceDeviceRGB :if !_gcbb {if !_aabd ||_gcecf .ColorSpace !=_fa .ColorSpaceRGB {_ffaa =true ;_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0033\u002d\u0032","\u0044\u0065\u0076\u0069\u0063\u0065\u0052\u0047\u0042\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u006f\u006e\u006c\u0079\u0020\u0069\u0066\u0020\u0074\u0068\u0065 \u0066\u0069\u006c\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074In\u0074\u0065\u006e\u0074\u0020\u0074\u0068\u0061\u0074\u0020u\u0073es\u0020a\u006e\u0020\u0052\u0047\u0042\u0020\u0063o\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u002e")); -_gcbb =true ;if _gfgb (){return true ;};};};case *_b .PdfColorspaceDeviceCMYK :if !_dagc {if !_aabd ||_gcecf .ColorSpace !=_fa .ColorSpaceCMYK {_ffaa =true ;_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0033\u002d\u0033","\u0044\u0065\u0076\u0069\u0063e\u0043\u004d\u0059\u004b \u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u006f\u006e\u006c\u0079\u0020\u0069\u0066\u0020\u0074h\u0065\u0020\u0066\u0069\u006ce \u0068\u0061\u0073\u0020\u0061 \u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0074\u0068a\u0074\u0020\u0075\u0073\u0065\u0073\u0020\u0061\u006e \u0043\u004d\u0059\u004b\u0020\u0063\u006f\u006c\u006f\u0072\u0020s\u0070\u0061\u0063e\u002e")); -_dagc =true ;if _gfgb (){return true ;};};};case *_b .PdfColorspaceICCBased :if !_cdc ||!_cgdcg {_gacg ,_gdfag :=_fa .ParseHeader (_bgbad .Data );if _gdfag !=nil {_cf .Log .Debug ("\u0070\u0061\u0072si\u006e\u0067\u0020\u0049\u0043\u0043\u0042\u0061\u0073e\u0064 \u0068e\u0061d\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_gdfag ); -_cage =append (_cage ,func ()ViolatedRule {return _fe ("\u0036.\u0032\u002e\u0033\u002d\u0031","\u0041\u006cl \u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006co\u0072\u0020\u0073\u0070a\u0063e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0061\u0073\u0020\u0049\u0043\u0043 \u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0073 \u0061\u0073\u0020d\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020R\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0034\u002e\u0035"); -}());_cdc =true ;if _gfgb (){return true ;};};if !_cdc {var _bedb ,_gbed bool ;switch _gacg .DeviceClass {case _fa .DeviceClassPRTR ,_fa .DeviceClassMNTR ,_fa .DeviceClassSCNR ,_fa .DeviceClassSPAC :default:_bedb =true ;};switch _gacg .ColorSpace {case _fa .ColorSpaceRGB ,_fa .ColorSpaceCMYK ,_fa .ColorSpaceGRAY ,_fa .ColorSpaceLAB :default:_gbed =true ; -};if _bedb ||_gbed {_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0033\u002d\u0031","\u0041\u006cl \u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006co\u0072\u0020\u0073\u0070a\u0063e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0061\u0073\u0020\u0049\u0043\u0043 \u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0073 \u0061\u0073\u0020d\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020R\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0034\u002e\u0035")); -_cdc =true ;if _gfgb (){return true ;};};};if !_cgdcg {_cdca ,_ :=_fc .GetStream (_bgbad .GetContainingPdfObject ());if _cdca .Get ("\u004e")==nil ||(_bgbad .N ==1&&_gacg .ColorSpace !=_fa .ColorSpaceGRAY )||(_bgbad .N ==3&&!(_gacg .ColorSpace ==_fa .ColorSpaceRGB ||_gacg .ColorSpace ==_fa .ColorSpaceLAB ))||(_bgbad .N ==4&&_gacg .ColorSpace !=_fa .ColorSpaceCMYK ){_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0033\u002d\u0035","\u0049\u0066\u0020a\u006e\u0020u\u006e\u0063\u0061\u006c\u0069\u0062\u0072a\u0074\u0065\u0064\u0020\u0063\u006fl\u006f\u0072 \u0073\u0070\u0061c\u0065\u0020\u0069\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u0069\u006c\u0065 \u0074\u0068\u0065\u006e \u0074\u0068\u0061\u0074 \u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041-\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065d\u0020\u0069\u006e\u0020\u0036\u002e\u0032\u002e\u0032\u002e")); -_cgdcg =true ;if _gfgb (){return true ;};};};};if _bgbad .Alternate !=nil {return _aegbg (_bgbad .Alternate );};};return false ;};for _ ,_cfefb :=range _agaeb .GetObjectNums (){_cbdb ,_cgcd :=_agaeb .GetIndirectObjectByNumber (_cfefb );if _cgcd !=nil {continue ; -};_faad ,_baad :=_fc .GetStream (_cbdb );if !_baad {continue ;};_dada ,_baad :=_fc .GetName (_faad .Get ("\u0054\u0079\u0070\u0065"));if !_baad ||_dada .String ()!="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_dedg ,_baad :=_fc .GetName (_faad .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -if !_baad {continue ;};_dccd [_faad ]=struct{}{};switch _dedg .String (){case "\u0049\u006d\u0061g\u0065":_fbfga ,_cgdg :=_b .NewXObjectImageFromStream (_faad );if _cgdg !=nil {continue ;};_dccd [_faad ]=struct{}{};if _aegbg (_fbfga .ColorSpace ){return _cage ; -};case "\u0046\u006f\u0072\u006d":_daecf ,_dgga :=_fc .GetDict (_faad .Get ("\u0047\u0072\u006fu\u0070"));if !_dgga {continue ;};_agda :=_daecf .Get ("\u0043\u0053");if _agda ==nil {continue ;};_gedb ,_gfeb :=_b .NewPdfColorspaceFromPdfObject (_agda ); -if _gfeb !=nil {continue ;};if _aegbg (_gedb ){return _cage ;};};};for _ ,_dfddf :=range _agaeb .PageList {_badb ,_fgbd :=_dfddf .GetContentStreams ();if _fgbd !=nil {continue ;};for _ ,_cfbd :=range _badb {_eegb ,_eceb :=_fbg .NewContentStreamParser (_cfbd ).Parse (); -if _eceb !=nil {continue ;};for _ ,_dbaf :=range *_eegb {if len (_dbaf .Params )> 1{continue ;};switch _dbaf .Operand {case "\u0042\u0049":_dcaff ,_ecea :=_dbaf .Params [0].(*_fbg .ContentStreamInlineImage );if !_ecea {continue ;};_ccfb ,_gadg :=_dcaff .GetColorSpace (_dfddf .Resources ); -if _gadg !=nil {continue ;};if _aegbg (_ccfb ){return _cage ;};case "\u0044\u006f":_gfgf ,_aebd :=_fc .GetName (_dbaf .Params [0]);if !_aebd {continue ;};_bdac ,_acbbd :=_dfddf .Resources .GetXObjectByName (*_gfgf );if _ ,_ddfg :=_dccd [_bdac ];_ddfg {continue ; -};switch _acbbd {case _b .XObjectTypeImage :_eddd ,_gbd :=_b .NewXObjectImageFromStream (_bdac );if _gbd !=nil {continue ;};_dccd [_bdac ]=struct{}{};if _aegbg (_eddd .ColorSpace ){return _cage ;};case _b .XObjectTypeForm :_fccf ,_bbab :=_fc .GetDict (_bdac .Get ("\u0047\u0072\u006fu\u0070")); -if !_bbab {continue ;};_aafg ,_bbab :=_fc .GetName (_fccf .Get ("\u0043\u0053"));if !_bbab {continue ;};_bcdeb ,_acg :=_b .NewPdfColorspaceFromPdfObject (_aafg );if _acg !=nil {continue ;};_dccd [_bdac ]=struct{}{};if _aegbg (_bcdeb ){return _cage ;};}; -};};};};if !_ffaa {return _cage ;};if (_gcecf .DeviceClass ==_fa .DeviceClassPRTR ||_gcecf .DeviceClass ==_fa .DeviceClassMNTR )&&(_gcecf .ColorSpace ==_fa .ColorSpaceRGB ||_gcecf .ColorSpace ==_fa .ColorSpaceCMYK ||_gcecf .ColorSpace ==_fa .ColorSpaceGRAY ){return _cage ; -};if !_bdaab {return _cage ;};_ddcff ,_cdf :=_faac (_agaeb );if !_cdf {return _cage ;};_bfca ,_cdf :=_fc .GetArray (_ddcff .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073"));if !_cdf {_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0032\u002d\u0031","\u0041\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074e\u006e\u0074\u0020\u0069\u0073\u0020a\u006e \u004f\u0075\u0074\u0070\u0075\u0074\u0049n\u0074\u0065\u006e\u0074\u0020\u0064i\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0062y\u0020\u0050\u0044F\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0031\u0030.4\u002c\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0073 \u0069\u006e\u0063\u006c\u0075\u0064e\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0027\u0073\u0020O\u0075\u0074p\u0075\u0074I\u006e\u0074\u0065\u006e\u0074\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020a\u006e\u0064\u0020h\u0061\u0073\u0020\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0041\u0031\u0020\u0061\u0073 \u0074\u0068\u0065\u0020\u0076a\u006c\u0075e\u0020\u006f\u0066\u0020i\u0074\u0073 \u0053\u0020\u006b\u0065\u0079\u0020\u0061\u006e\u0064\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020I\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006ce\u0020s\u0074\u0072\u0065\u0061\u006d \u0061\u0073\u0020\u0074h\u0065\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0074\u0073\u0020\u0044\u0065\u0073t\u004f\u0075t\u0070\u0075\u0074P\u0072\u006f\u0066\u0069\u006c\u0065 \u006b\u0065\u0079\u002e"),_fe ("\u0036.\u0032\u002e\u0032\u002d\u0032","\u0049\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065's\u0020O\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073 \u0061\u0072\u0072a\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068a\u006e\u0020\u006f\u006ee\u0020\u0065\u006e\u0074\u0072\u0079\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0065n\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e a \u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006cl\u0020\u0068\u0061\u0076\u0065 \u0061\u0073\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068a\u0074\u0020\u006b\u0065\u0079 \u0074\u0068\u0065\u0020\u0073\u0061\u006d\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065c\u0074\u0020\u006fb\u006ae\u0063t\u002c\u0020\u0077h\u0069\u0063\u0068\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069d\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074r\u0065\u0061m\u002e")); -return _cage ;};if _bfca .Len ()> 1{_gdgd :=map[*_fc .PdfObjectDictionary ]struct{}{};for _deaa :=0;_deaa < _bfca .Len ();_deaa ++{_afaf ,_dedd :=_fc .GetDict (_bfca .Get (_deaa ));if !_dedd {continue ;};if _deaa ==0{_gdgd [_afaf ]=struct{}{};continue ; -};if _ ,_acbbc :=_gdgd [_afaf ];!_acbbc {_cage =append (_cage ,_fe ("\u0036.\u0032\u002e\u0032\u002d\u0032","\u0049\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065's\u0020O\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073 \u0061\u0072\u0072a\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068a\u006e\u0020\u006f\u006ee\u0020\u0065\u006e\u0074\u0072\u0079\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0065n\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e a \u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006cl\u0020\u0068\u0061\u0076\u0065 \u0061\u0073\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068a\u0074\u0020\u006b\u0065\u0079 \u0074\u0068\u0065\u0020\u0073\u0061\u006d\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065c\u0074\u0020\u006fb\u006ae\u0063t\u002c\u0020\u0077h\u0069\u0063\u0068\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069d\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074r\u0065\u0061m\u002e")); -break ;};};};return _cage ;}; +// Error implements error interface. +func (_ec VerificationError )Error ()string {_gb :=_eg .Builder {};_gb .WriteString ("\u0053\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u003a\u0020");_gb .WriteString (_d .Sprintf ("\u0050\u0044\u0046\u002f\u0041\u002d\u0025\u0064\u0025\u0073",_ec .ConformanceLevel ,_ec .ConformanceVariant )); +_gb .WriteString ("\u0020\u0056\u0069\u006f\u006c\u0061\u0074\u0065\u0064\u0020\u0072\u0075l\u0065\u0073\u003a\u0020");for _aa ,_af :=range _ec .ViolatedRules {_gb .WriteString (_af .String ());if _aa !=len (_ec .ViolatedRules )-1{_gb .WriteRune ('\n'); +};};return _gb .String ();};func _eecad (_ccea *_ad .PdfObjectDictionary ,_eedg map[*_ad .PdfObjectStream ][]byte ,_fcgbb map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_egfd ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0037\u002d\u0031";_ccagf ="\u0054\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006cl\u0020\u0069\u006e\u0063l\u0075\u0064e\u0020\u0061 \u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0020\u0065\u006e\u0074\u0072\u0079\u0020w\u0068\u006f\u0073\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073 \u0061\u0020\u0043M\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u006d\u0061p\u0073\u0020\u0063\u0068\u0061\u0072ac\u0074\u0065\u0072\u0020\u0063\u006fd\u0065s\u0020\u0074\u006f\u0020\u0055\u006e\u0069\u0063\u006f\u0064e \u0076a\u006c\u0075\u0065\u0073,\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063r\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020P\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0035.\u0039\u002c\u0020\u0075\u006e\u006ce\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u006d\u0065\u0065\u0074\u0073 \u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u0020\u0074\u0068\u0072\u0065\u0065\u0020\u0063\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u003a\u000a\u0020\u002d\u0020\u0066o\u006e\u0074\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0073\u0020M\u0061\u0063\u0052o\u006d\u0061\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074E\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0057\u0069\u006e\u0041n\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u006f\u0072\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020t\u0068\u0065\u0020\u0070\u0072\u0065d\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048\u0020\u006f\u0072\u0020\u0049\u0064\u0065n\u0074\u0069\u0074\u0079\u002d\u0056\u0020C\u004d\u0061\u0070s\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u006e\u0061\u006d\u0065\u0073\u0020a\u0072\u0065 \u0074\u0061k\u0065\u006e\u0020\u0066\u0072\u006f\u006d\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u0020\u0073\u0074\u0061n\u0064\u0061\u0072\u0064\u0020L\u0061t\u0069\u006e\u0020\u0063\u0068a\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0074\u0020\u006fr\u0020\u0074\u0068\u0065 \u0073\u0065\u0074\u0020\u006f\u0066 \u006e\u0061\u006d\u0065\u0064\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0066\u006f\u006e\u0074\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046 \u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0041\u0070\u0070\u0065\u006e\u0064\u0069\u0078 \u0044\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020w\u0068\u006f\u0073e\u0020d\u0065\u0073\u0063\u0065n\u0064\u0061\u006e\u0074 \u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0075\u0073\u0065\u0073\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u0047B\u0031\u002c\u0020\u0041\u0064\u006fb\u0065\u002d\u0043\u004e\u0053\u0031\u002c\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004a\u0061\u0070\u0061\u006e\u0031\u0020\u006f\u0072\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004b\u006fr\u0065\u0061\u0031\u0020\u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u006c\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u0073\u002e"; +);_bgbge ,_fcbfd :=_ad .GetStream (_ccea .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e"));if _fcbfd {_ ,_cedf :=_ggag (_bgbge ,_eedg ,_fcgbb );if _cedf !=nil {return _ba (_egfd ,_ccagf );};return _bg ;};_acbe ,_fcbfd :=_ad .GetName (_ccea .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_fcbfd {return _ba (_egfd ,_ccagf );};switch _acbe .String (){case "\u0054\u0079\u0070e\u0031":return _bg ;};return _ba (_egfd ,_ccagf );};func _fdef (_ecdff *_da .CompliancePdfReader )ViolatedRule {return _bg };func _eec ()standardType {return standardType {_efe :2,_ee :"\u0055"}}; +func _dgag (_cabc *_ad .PdfObjectDictionary )ViolatedRule {const (_ccad ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0032";_gbde ="IS\u004f\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u00209\u002e\u0037\u002e\u0034\u002c\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u0031\u0031\u0037\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0073\u0020\u0074\u0068a\u0074\u0020\u0061\u006c\u006c\u0020\u0065m\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0054\u0079\u0070\u0065\u0020\u0032\u0020\u0043\u0049\u0044\u0046\u006fn\u0074\u0073\u0020\u0069n\u0020t\u0068e\u0020\u0043\u0049D\u0046\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u0043\u0049\u0044\u0054\u006fG\u0049\u0044M\u0061\u0070\u0020\u0065\u006e\u0074\u0072\u0079 \u0074\u0068\u0061\u0074\u0020\u0073\u0068\u0061\u006c\u006c \u0062e\u0020\u0061\u0020\u0073t\u0072\u0065\u0061\u006d\u0020\u006d\u0061\u0070p\u0069\u006e\u0067 f\u0072\u006f\u006d \u0043\u0049\u0044\u0073\u0020\u0074\u006f\u0020\u0067\u006c\u0079p\u0068 \u0069\u006e\u0064\u0069c\u0065\u0073\u0020\u006fr\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u0049d\u0065\u006e\u0074\u0069\u0074\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0049\u0053\u004f\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u0020\u0039\u002e\u0037\u002e\u0034\u002c\u0020\u0054\u0061\u0062\u006c\u0065\u0020\u0031\u0031\u0037\u002e"; +);var _bgag string ;if _fdee ,_geae :=_ad .GetName (_cabc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_geae {_bgag =_fdee .String ();};if _bgag !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{return _bg ;};if _cabc .Get ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070")==nil {return _ba (_ccad ,_gbde ); +};return _bg ;};func _faabd (_bbe *_da .CompliancePdfReader ,_gadd bool )(_geeg []ViolatedRule ){var _fffee ,_aafeg ,_ceeg ,_fcgb ,_cbba ,_egcb ,_ffgf bool ;_cfef :=func ()bool {return _fffee &&_aafeg &&_ceeg &&_fcgb &&_cbba &&_egcb &&_ffgf };_gfgd ,_ggfc :=_faad (_bbe ); +var _fdbcf _ac .ProfileHeader ;if _ggfc {_fdbcf ,_ =_ac .ParseHeader (_gfgd .DestOutputProfile );};var _afcd bool ;_beadc :=map[_ad .PdfObject ]struct{}{};var _bdcb func (_ffgc _da .PdfColorspace )bool ;_bdcb =func (_fdea _da .PdfColorspace )bool {switch _ecdfd :=_fdea .(type ){case *_da .PdfColorspaceDeviceGray :if !_egcb {if !_ggfc {_afcd =true ; +_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0033\u002d\u0034","\u0044\u0065\u0076\u0069\u0063\u0065G\u0072\u0061\u0079\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0075s\u0065\u0064\u0020\u006f\u006el\u0079\u0020\u0069\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006ce\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020O\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074e\u006e\u0074\u002e")); +_egcb =true ;if _cfef (){return true ;};};};case *_da .PdfColorspaceDeviceRGB :if !_fcgb {if !_ggfc ||_fdbcf .ColorSpace !=_ac .ColorSpaceRGB {_afcd =true ;_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0033\u002d\u0032","\u0044\u0065\u0076\u0069\u0063\u0065\u0052\u0047\u0042\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u006f\u006e\u006c\u0079\u0020\u0069\u0066\u0020\u0074\u0068\u0065 \u0066\u0069\u006c\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074In\u0074\u0065\u006e\u0074\u0020\u0074\u0068\u0061\u0074\u0020u\u0073es\u0020a\u006e\u0020\u0052\u0047\u0042\u0020\u0063o\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u002e")); +_fcgb =true ;if _cfef (){return true ;};};};case *_da .PdfColorspaceDeviceCMYK :if !_cbba {if !_ggfc ||_fdbcf .ColorSpace !=_ac .ColorSpaceCMYK {_afcd =true ;_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0033\u002d\u0033","\u0044\u0065\u0076\u0069\u0063e\u0043\u004d\u0059\u004b \u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u006f\u006e\u006c\u0079\u0020\u0069\u0066\u0020\u0074h\u0065\u0020\u0066\u0069\u006ce \u0068\u0061\u0073\u0020\u0061 \u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0074\u0068a\u0074\u0020\u0075\u0073\u0065\u0073\u0020\u0061\u006e \u0043\u004d\u0059\u004b\u0020\u0063\u006f\u006c\u006f\u0072\u0020s\u0070\u0061\u0063e\u002e")); +_cbba =true ;if _cfef (){return true ;};};};case *_da .PdfColorspaceICCBased :if !_ceeg ||!_ffgf {_ccaa ,_ebba :=_ac .ParseHeader (_ecdfd .Data );if _ebba !=nil {_ca .Log .Debug ("\u0070\u0061\u0072si\u006e\u0067\u0020\u0049\u0043\u0043\u0042\u0061\u0073e\u0064 \u0068e\u0061d\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ebba ); +_geeg =append (_geeg ,func ()ViolatedRule {return _ba ("\u0036.\u0032\u002e\u0033\u002d\u0031","\u0041\u006cl \u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006co\u0072\u0020\u0073\u0070a\u0063e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0061\u0073\u0020\u0049\u0043\u0043 \u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0073 \u0061\u0073\u0020d\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020R\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0034\u002e\u0035"); +}());_ceeg =true ;if _cfef (){return true ;};};if !_ceeg {var _cfbg ,_gdfbg bool ;switch _ccaa .DeviceClass {case _ac .DeviceClassPRTR ,_ac .DeviceClassMNTR ,_ac .DeviceClassSCNR ,_ac .DeviceClassSPAC :default:_cfbg =true ;};switch _ccaa .ColorSpace {case _ac .ColorSpaceRGB ,_ac .ColorSpaceCMYK ,_ac .ColorSpaceGRAY ,_ac .ColorSpaceLAB :default:_gdfbg =true ; +};if _cfbg ||_gdfbg {_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0033\u002d\u0031","\u0041\u006cl \u0049\u0043\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006f\u006co\u0072\u0020\u0073\u0070a\u0063e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0061\u0073\u0020\u0049\u0043\u0043 \u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0073 \u0061\u0073\u0020d\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020R\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0034\u002e\u0035")); +_ceeg =true ;if _cfef (){return true ;};};};if !_ffgf {_geab ,_ :=_ad .GetStream (_ecdfd .GetContainingPdfObject ());if _geab .Get ("\u004e")==nil ||(_ecdfd .N ==1&&_ccaa .ColorSpace !=_ac .ColorSpaceGRAY )||(_ecdfd .N ==3&&!(_ccaa .ColorSpace ==_ac .ColorSpaceRGB ||_ccaa .ColorSpace ==_ac .ColorSpaceLAB ))||(_ecdfd .N ==4&&_ccaa .ColorSpace !=_ac .ColorSpaceCMYK ){_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0033\u002d\u0035","\u0049\u0066\u0020a\u006e\u0020u\u006e\u0063\u0061\u006c\u0069\u0062\u0072a\u0074\u0065\u0064\u0020\u0063\u006fl\u006f\u0072 \u0073\u0070\u0061c\u0065\u0020\u0069\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u0069\u006c\u0065 \u0074\u0068\u0065\u006e \u0074\u0068\u0061\u0074 \u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041-\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065d\u0020\u0069\u006e\u0020\u0036\u002e\u0032\u002e\u0032\u002e")); +_ffgf =true ;if _cfef (){return true ;};};};};if _ecdfd .Alternate !=nil {return _bdcb (_ecdfd .Alternate );};};return false ;};for _ ,_efceg :=range _bbe .GetObjectNums (){_abdbe ,_geff :=_bbe .GetIndirectObjectByNumber (_efceg );if _geff !=nil {continue ; +};_fccc ,_bcdc :=_ad .GetStream (_abdbe );if !_bcdc {continue ;};_ggdb ,_bcdc :=_ad .GetName (_fccc .Get ("\u0054\u0079\u0070\u0065"));if !_bcdc ||_ggdb .String ()!="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_cdgf ,_bcdc :=_ad .GetName (_fccc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_bcdc {continue ;};_beadc [_fccc ]=struct{}{};switch _cdgf .String (){case "\u0049\u006d\u0061g\u0065":_cfdaf ,_ccf :=_da .NewXObjectImageFromStream (_fccc );if _ccf !=nil {continue ;};_beadc [_fccc ]=struct{}{};if _bdcb (_cfdaf .ColorSpace ){return _geeg ; +};case "\u0046\u006f\u0072\u006d":_gcbf ,_aef :=_ad .GetDict (_fccc .Get ("\u0047\u0072\u006fu\u0070"));if !_aef {continue ;};_abgb :=_gcbf .Get ("\u0043\u0053");if _abgb ==nil {continue ;};_bdd ,_abaa :=_da .NewPdfColorspaceFromPdfObject (_abgb );if _abaa !=nil {continue ; +};if _bdcb (_bdd ){return _geeg ;};};};for _ ,_cbcee :=range _bbe .PageList {_cdda ,_baad :=_cbcee .GetContentStreams ();if _baad !=nil {continue ;};for _ ,_fbge :=range _cdda {_aab ,_aggf :=_cad .NewContentStreamParser (_fbge ).Parse ();if _aggf !=nil {continue ; +};for _ ,_aaba :=range *_aab {if len (_aaba .Params )> 1{continue ;};switch _aaba .Operand {case "\u0042\u0049":_eaaf ,_edgc :=_aaba .Params [0].(*_cad .ContentStreamInlineImage );if !_edgc {continue ;};_cfcae ,_eccae :=_eaaf .GetColorSpace (_cbcee .Resources ); +if _eccae !=nil {continue ;};if _bdcb (_cfcae ){return _geeg ;};case "\u0044\u006f":_bged ,_fdgc :=_ad .GetName (_aaba .Params [0]);if !_fdgc {continue ;};_geegg ,_beebc :=_cbcee .Resources .GetXObjectByName (*_bged );if _ ,_feef :=_beadc [_geegg ];_feef {continue ; +};switch _beebc {case _da .XObjectTypeImage :_eegg ,_affb :=_da .NewXObjectImageFromStream (_geegg );if _affb !=nil {continue ;};_beadc [_geegg ]=struct{}{};if _bdcb (_eegg .ColorSpace ){return _geeg ;};case _da .XObjectTypeForm :_cgfg ,_cbec :=_ad .GetDict (_geegg .Get ("\u0047\u0072\u006fu\u0070")); +if !_cbec {continue ;};_cccd ,_cbec :=_ad .GetName (_cgfg .Get ("\u0043\u0053"));if !_cbec {continue ;};_ccac ,_cgec :=_da .NewPdfColorspaceFromPdfObject (_cccd );if _cgec !=nil {continue ;};_beadc [_geegg ]=struct{}{};if _bdcb (_ccac ){return _geeg ;}; +};};};};};if !_afcd {return _geeg ;};if (_fdbcf .DeviceClass ==_ac .DeviceClassPRTR ||_fdbcf .DeviceClass ==_ac .DeviceClassMNTR )&&(_fdbcf .ColorSpace ==_ac .ColorSpaceRGB ||_fdbcf .ColorSpace ==_ac .ColorSpaceCMYK ||_fdbcf .ColorSpace ==_ac .ColorSpaceGRAY ){return _geeg ; +};if !_gadd {return _geeg ;};_ggffe ,_fbgg :=_acgab (_bbe );if !_fbgg {return _geeg ;};_ebaf ,_fbgg :=_ad .GetArray (_ggffe .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073"));if !_fbgg {_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0032\u002d\u0031","\u0041\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074e\u006e\u0074\u0020\u0069\u0073\u0020a\u006e \u004f\u0075\u0074\u0070\u0075\u0074\u0049n\u0074\u0065\u006e\u0074\u0020\u0064i\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0062y\u0020\u0050\u0044F\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0031\u0030.4\u002c\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0073 \u0069\u006e\u0063\u006c\u0075\u0064e\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0027\u0073\u0020O\u0075\u0074p\u0075\u0074I\u006e\u0074\u0065\u006e\u0074\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020a\u006e\u0064\u0020h\u0061\u0073\u0020\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0041\u0031\u0020\u0061\u0073 \u0074\u0068\u0065\u0020\u0076a\u006c\u0075e\u0020\u006f\u0066\u0020i\u0074\u0073 \u0053\u0020\u006b\u0065\u0079\u0020\u0061\u006e\u0064\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020I\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006ce\u0020s\u0074\u0072\u0065\u0061\u006d \u0061\u0073\u0020\u0074h\u0065\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0074\u0073\u0020\u0044\u0065\u0073t\u004f\u0075t\u0070\u0075\u0074P\u0072\u006f\u0066\u0069\u006c\u0065 \u006b\u0065\u0079\u002e"),_ba ("\u0036.\u0032\u002e\u0032\u002d\u0032","\u0049\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065's\u0020O\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073 \u0061\u0072\u0072a\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068a\u006e\u0020\u006f\u006ee\u0020\u0065\u006e\u0074\u0072\u0079\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0065n\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e a \u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006cl\u0020\u0068\u0061\u0076\u0065 \u0061\u0073\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068a\u0074\u0020\u006b\u0065\u0079 \u0074\u0068\u0065\u0020\u0073\u0061\u006d\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065c\u0074\u0020\u006fb\u006ae\u0063t\u002c\u0020\u0077h\u0069\u0063\u0068\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069d\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074r\u0065\u0061m\u002e")); +return _geeg ;};if _ebaf .Len ()> 1{_ddfbc :=map[*_ad .PdfObjectDictionary ]struct{}{};for _ddb :=0;_ddb < _ebaf .Len ();_ddb ++{_ddgf ,_aeb :=_ad .GetDict (_ebaf .Get (_ddb ));if !_aeb {continue ;};if _ddb ==0{_ddfbc [_ddgf ]=struct{}{};continue ;};if _ ,_cfec :=_ddfbc [_ddgf ]; +!_cfec {_geeg =append (_geeg ,_ba ("\u0036.\u0032\u002e\u0032\u002d\u0032","\u0049\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065's\u0020O\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073 \u0061\u0072\u0072a\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068a\u006e\u0020\u006f\u006ee\u0020\u0065\u006e\u0074\u0072\u0079\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0065n\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e a \u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006cl\u0020\u0068\u0061\u0076\u0065 \u0061\u0073\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068a\u0074\u0020\u006b\u0065\u0079 \u0074\u0068\u0065\u0020\u0073\u0061\u006d\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065c\u0074\u0020\u006fb\u006ae\u0063t\u002c\u0020\u0077h\u0069\u0063\u0068\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069d\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074r\u0065\u0061m\u002e")); +break ;};};};return _geeg ;}; // Part gets the PDF/A version level. -func (_efbd *profile1 )Part ()int {return _efbd ._bacb ._bdc }; +func (_bbbc *profile1 )Part ()int {return _bbbc ._efde ._efe }; -// Validate checks if provided input document reader matches given PDF/A profile. -func Validate (d *_b .CompliancePdfReader ,profile Profile )error {return profile .ValidateStandard (d )};func _gddac (_dbac *_b .CompliancePdfReader )(_edea []ViolatedRule ){_fdff ,_gfae :=_faac (_dbac );if !_gfae {return _edea ;};_aadbd ,_gfae :=_fc .GetDict (_fdff .Get ("\u004e\u0061\u006de\u0073")); -if !_gfae {return _edea ;};if _aadbd .Get ("\u0041\u006c\u0074\u0065rn\u0061\u0074\u0065\u0050\u0072\u0065\u0073\u0065\u006e\u0074\u0061\u0074\u0069\u006fn\u0073")!=nil {_edea =append (_edea ,_fe ("\u0036\u002e\u0031\u0030\u002d\u0031","T\u0068\u0065\u0072e\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u006e\u006f\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0050\u0072\u0065s\u0065\u006e\u0074a\u0074\u0069\u006f\u006e\u0073\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0069n\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075m\u0065\u006e\u0074\u0027\u0073\u0020\u006e\u0061\u006d\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002e")); -};return _edea ;}; +// ApplyStandard tries to change the content of the writer to match the PDF/A-1 standard. +// Implements model.StandardApplier. +func (_cfcfe *profile1 )ApplyStandard (document *_ea .Document )(_ccc error ){_fdae (document ,4);if _ccc =_cdae (document ,_cfcfe ._fcce .Now );_ccc !=nil {return _ccc ;};if _ccc =_agc (document );_ccc !=nil {return _ccc ;};_bcdb ,_acea :=_fdg (_cfcfe ._fcce .CMYKDefaultColorSpace ,_cfcfe ._efde ); +_ccc =_fae (document ,[]pageColorspaceOptimizeFunc {_gdga ,_bcdb },[]documentColorspaceOptimizeFunc {_acea });if _ccc !=nil {return _ccc ;};_dbb (document );if _ccc =_bae (document ,_cfcfe ._efde ._efe );_ccc !=nil {return _ccc ;};if _ccc =_dccb (document ); +_ccc !=nil {return _ccc ;};if _ccc =_dccbc (document );_ccc !=nil {return _ccc ;};if _ccc =_acb (document );_ccc !=nil {return _ccc ;};if _ccc =_fec (document );_ccc !=nil {return _ccc ;};if _cfcfe ._efde ._ee =="\u0041"{_ecgd (document );};if _ccc =_geb (document ,_cfcfe ._efde ._efe ); +_ccc !=nil {return _ccc ;};if _ccc =_dbba (document );_ccc !=nil {return _ccc ;};if _bgde :=_aca (document ,_cfcfe ._efde ,_cfcfe ._fcce .Xmp );_bgde !=nil {return _bgde ;};if _cfcfe ._efde ==_df (){if _ccc =_bgd (document );_ccc !=nil {return _ccc ;}; +};if _ccc =_dcc (document );_ccc !=nil {return _ccc ;};return nil ;};func _abdb (_bdfg *_da .CompliancePdfReader )ViolatedRule {return _bg }; -// StandardName gets the name of the standard. -func (_dfcae *profile2 )StandardName ()string {return _g .Sprintf ("\u0050D\u0046\u002f\u0041\u002d\u0032\u0025s",_dfcae ._bedf ._dc );};func _cca (_eeg *_ag .Document ,_gfedc int )error {_bbf :=map[*_fc .PdfObjectStream ]struct{}{};for _ ,_gfag :=range _eeg .Objects {_cdaa ,_abba :=_fc .GetStream (_gfag ); -if !_abba {continue ;};if _ ,_abba =_bbf [_cdaa ];_abba {continue ;};_bbf [_cdaa ]=struct{}{};_ffbe ,_abba :=_fc .GetName (_cdaa .Get ("\u0053u\u0062\u0054\u0079\u0070\u0065"));if !_abba {continue ;};if _cdaa .Get ("\u0052\u0065\u0066")!=nil {_cdaa .Remove ("\u0052\u0065\u0066"); -};if _ffbe .String ()=="\u0050\u0053"{_cdaa .Remove ("\u0050\u0053");continue ;};if _ffbe .String ()=="\u0046\u006f\u0072\u006d"{if _cdaa .Get ("\u004f\u0050\u0049")!=nil {_cdaa .Remove ("\u004f\u0050\u0049");};if _cdaa .Get ("\u0050\u0053")!=nil {_cdaa .Remove ("\u0050\u0053"); -};if _fdgg :=_cdaa .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");_fdgg !=nil {if _ccf ,_gdaf :=_fc .GetName (_fdgg );_gdaf &&*_ccf =="\u0050\u0053"{_cdaa .Remove ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");};};continue ;};if _ffbe .String ()=="\u0049\u006d\u0061g\u0065"{_cfeeb ,_gdab :=_fc .GetBool (_cdaa .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065")); -if _gdab &&bool (*_cfeeb ){_cdaa .Set ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065",_fc .MakeBool (false ));};if _gfedc ==2{if _cdaa .Get ("\u004f\u0050\u0049")!=nil {_cdaa .Remove ("\u004f\u0050\u0049");};};if _cdaa .Get ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073")!=nil {_cdaa .Remove ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073"); -};continue ;};};return nil ;}; +// ApplyStandard tries to change the content of the writer to match the PDF/A-2 standard. +// Implements model.StandardApplier. +func (_fbfce *profile2 )ApplyStandard (document *_ea .Document )(_acgae error ){_fdae (document ,7);if _acgae =_cdae (document ,_fbfce ._eceb .Now );_acgae !=nil {return _acgae ;};if _acgae =_agc (document );_acgae !=nil {return _acgae ;};_caba ,_bfec :=_fdg (_fbfce ._eceb .CMYKDefaultColorSpace ,_fbfce ._fcdd ); +_acgae =_fae (document ,[]pageColorspaceOptimizeFunc {_caba },[]documentColorspaceOptimizeFunc {_bfec });if _acgae !=nil {return _acgae ;};_dbb (document );if _acgae =_agge (document );_acgae !=nil {return _acgae ;};if _acgae =_bae (document ,_fbfce ._fcdd ._efe ); +_acgae !=nil {return _acgae ;};if _acgae =_facca (document );_acgae !=nil {return _acgae ;};if _acgae =_baafg (document );_acgae !=nil {return _acgae ;};if _acgae =_fec (document );_acgae !=nil {return _acgae ;};if _acgae =_faaa (document );_acgae !=nil {return _acgae ; +};if _fbfce ._fcdd ._ee =="\u0041"{_ecgd (document );};if _acgae =_geb (document ,_fbfce ._fcdd ._efe );_acgae !=nil {return _acgae ;};if _acgae =_dbba (document );_acgae !=nil {return _acgae ;};if _dgc :=_aca (document ,_fbfce ._fcdd ,_fbfce ._eceb .Xmp ); +_dgc !=nil {return _dgc ;};if _fbfce ._fcdd ==_bb (){if _acgae =_bgd (document );_acgae !=nil {return _acgae ;};};if _acgae =_dcaf (document );_acgae !=nil {return _acgae ;};if _acgae =_gcdca (document );_acgae !=nil {return _acgae ;};if _acgae =_ffdf (document ); +_acgae !=nil {return _acgae ;};return nil ;};func _dbba (_baaf *_ea .Document )error {_agg ,_efbc :=_baaf .FindCatalog ();if !_efbc {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");}; +_ ,_efbc =_ad .GetDict (_agg .Object .Get ("\u0041\u0041"));if !_efbc {return nil ;};_agg .Object .Remove ("\u0041\u0041");return nil ;};func _geb (_egf *_ea .Document ,_ebd int )error {for _ ,_cae :=range _egf .Objects {_bbc ,_dce :=_ad .GetDict (_cae ); +if !_dce {continue ;};_bcfd :=_bbc .Get ("\u0054\u0079\u0070\u0065");if _bcfd ==nil {continue ;};if _bfa ,_gea :=_ad .GetName (_bcfd );_gea &&_bfa .String ()!="\u0041\u0063\u0074\u0069\u006f\u006e"{continue ;};_baa ,_cbf :=_ad .GetName (_bbc .Get ("\u0053")); +if !_cbf {continue ;};switch _da .PdfActionType (*_baa ){case _da .ActionTypeLaunch ,_da .ActionTypeSound ,_da .ActionTypeMovie ,_da .ActionTypeResetForm ,_da .ActionTypeImportData ,_da .ActionTypeJavaScript :_bbc .Remove ("\u0053");case _da .ActionTypeHide ,_da .ActionTypeSetOCGState ,_da .ActionTypeRendition ,_da .ActionTypeTrans ,_da .ActionTypeGoTo3DView :if _ebd ==2{_bbc .Remove ("\u0053"); +};case _da .ActionTypeNamed :_ccdf ,_aafc :=_ad .GetName (_bbc .Get ("\u004e"));if !_aafc {continue ;};switch *_ccdf {case "\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065","\u0050\u0072\u0065\u0076\u0050\u0061\u0067\u0065","\u0046i\u0072\u0073\u0074\u0050\u0061\u0067e","\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065":default:_bbc .Remove ("\u004e"); +};};};return nil ;}; + +// ViolatedRule is the structure that defines violated PDF/A rule. +type ViolatedRule struct{RuleNo string ;Detail string ;};func _eege (_gabfd *_da .CompliancePdfReader )(_bdbe []ViolatedRule ){_adc :=_gabfd .GetObjectNums ();for _ ,_fbac :=range _adc {_fgdc ,_dabe :=_gabfd .GetIndirectObjectByNumber (_fbac );if _dabe !=nil {continue ; +};_cgaf ,_acbg :=_ad .GetDict (_fgdc );if !_acbg {continue ;};_cfgf ,_acbg :=_ad .GetName (_cgaf .Get ("\u0054\u0079\u0070\u0065"));if !_acbg {continue ;};if _cfgf .String ()!="\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"{continue ;};if _cgaf .Get ("\u0045\u0046")!=nil {_bdbe =append (_bdbe ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0031\u002d\u0031","\u0041 \u0066\u0069\u006c\u0065 \u0073p\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069o\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066i\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046 \u0033\u002e\u0031\u0030\u002e\u0032\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063o\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0045\u0046 \u006be\u0079\u002e")); +break ;};};_edac ,_abaf :=_acgab (_gabfd );if !_abaf {return _bdbe ;};_fdcb ,_abaf :=_ad .GetDict (_edac .Get ("\u004e\u0061\u006de\u0073"));if !_abaf {return _bdbe ;};if _fdcb .Get ("\u0045\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0046\u0069\u006c\u0065\u0073")!=nil {_bdbe =append (_bdbe ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0031\u002d\u0032","\u0041\u0020\u0066i\u006c\u0065\u0027\u0073\u0020\u006e\u0061\u006d\u0065\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020d\u0065\u0066\u0069\u006ee\u0064\u0020\u0069\u006e\u0020PD\u0046 \u0052\u0065\u0066er\u0065\u006e\u0063\u0065\u0020\u0033\u002e6\u002e\u0033\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0045m\u0062\u0065\u0064\u0064\u0065\u0064\u0046i\u006c\u0065\u0073\u0020\u006b\u0065\u0079\u002e")); +};return _bdbe ;};func _adde (_dfgg *_da .CompliancePdfReader )(_cfed ViolatedRule ){for _ ,_fega :=range _dfgg .GetObjectNums (){_cage ,_gfbeb :=_dfgg .GetIndirectObjectByNumber (_fega );if _gfbeb !=nil {continue ;};_cagf ,_cgcc :=_ad .GetStream (_cage ); +if !_cgcc {continue ;};_ggbf ,_cgcc :=_ad .GetName (_cagf .Get ("\u0054\u0079\u0070\u0065"));if !_cgcc {continue ;};if *_ggbf !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_afdbe ,_cgcc :=_ad .GetName (_cagf .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_cgcc {continue ;};if *_afdbe =="\u0050\u0053"{return _ba ("\u0036.\u0032\u002e\u0037\u002d\u0031","A \u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066i\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0050\u006f\u0073t\u0053c\u0072\u0069\u0070\u0074\u0020\u0058\u004f\u0062j\u0065c\u0074\u0073."); +};};return _cfed ;};func _dccbc (_fdfa *_ea .Document )error {_gcge ,_edddg :=_fdfa .GetPages ();if !_edddg {return nil ;};for _ ,_cbae :=range _gcge {_caaf ,_aged :=_ad .GetArray (_cbae .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if !_aged {continue ; +};for _ ,_dfbg :=range _caaf .Elements (){_dfbg =_ad .ResolveReference (_dfbg );if _ ,_gefd :=_dfbg .(*_ad .PdfObjectNull );_gefd {continue ;};_gecg ,_deecc :=_ad .GetDict (_dfbg );if !_deecc {continue ;};_fdaeg ,_ :=_ad .GetIntVal (_gecg .Get ("\u0046")); +_fdaeg &=^(1<<0);_fdaeg &=^(1<<1);_fdaeg &=^(1<<5);_fdaeg |=1<<2;_gecg .Set ("\u0046",_ad .MakeInteger (int64 (_fdaeg )));_ecdf :=false ;if _gdbf :=_gecg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_gdbf !=nil {_fbfa ,_acegd :=_ad .GetName (_gdbf ); +if _acegd &&_fbfa .String ()=="\u0057\u0069\u0064\u0067\u0065\u0074"{_ecdf =true ;if _gecg .Get ("\u0041\u0041")!=nil {_gecg .Remove ("\u0041\u0041");};};};if _gecg .Get ("\u0043")!=nil ||_gecg .Get ("\u0049\u0043")!=nil {_fffe ,_ega :=_gff (_fdfa );if !_ega {_gecg .Remove ("\u0043"); +_gecg .Remove ("\u0049\u0043");}else {_ebaa ,_fcc :=_ad .GetIntVal (_fffe .Get ("\u004e"));if !_fcc ||_ebaa !=3{_gecg .Remove ("\u0043");_gecg .Remove ("\u0049\u0043");};};};_gfbf ,_deecc :=_ad .GetDict (_gecg .Get ("\u0041\u0050"));if _deecc {_cddg :=_gfbf .Get ("\u004e"); +if _cddg ==nil {continue ;};if len (_gfbf .Keys ())> 1{_gfbf .Clear ();_gfbf .Set ("\u004e",_cddg );};if _ecdf {_ffea ,_baf :=_ad .GetName (_gecg .Get ("\u0046\u0054"));if _baf &&*_ffea =="\u0042\u0074\u006e"{continue ;};};};};};return nil ;};func _bcdf (_afaf *_da .CompliancePdfReader )ViolatedRule {return _bg }; + + +// Profile2A is the implementation of the PDF/A-2A standard profile. +// Implements model.StandardImplementer, Profile interfaces. +type Profile2A struct{profile2 };func _efgg (_aadf *_da .CompliancePdfReader )ViolatedRule {_bgec :=_aadf .ParserMetadata ().HeaderCommentBytes ();if _bgec [0]> 127&&_bgec [1]> 127&&_bgec [2]> 127&&_bgec [3]> 127{return _bg ;};return _ba ("\u0036.\u0031\u002e\u0032\u002d\u0032","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u006c\u0069\u006e\u0065\u0020\u0073\u0068\u0061\u006c\u006c b\u0065\u0020i\u006d\u006d\u0065\u0064\u0069a\u0074\u0065\u006c\u0079 \u0066\u006f\u006c\u006co\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0063\u006f\u006d\u006d\u0065n\u0074\u0020\u0063\u006f\u006e\u0073\u0069s\u0074\u0069\u006e\u0067\u0020o\u0066\u0020\u0061\u0020\u0025\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006fwe\u0064\u0020\u0062y\u0020a\u0074\u0009\u006c\u0065a\u0073\u0074\u0020f\u006f\u0075\u0072\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u002c\u0020e\u0061\u0063\u0068\u0020\u006f\u0066\u0020\u0077\u0068\u006f\u0073\u0065 \u0065\u006e\u0063\u006f\u0064e\u0064\u0020\u0062\u0079\u0074e\u0020\u0076\u0061\u006c\u0075\u0065s\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0064e\u0063\u0069\u006d\u0061\u006c \u0076\u0061\u006c\u0075\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0031\u0032\u0037\u002e"); +};type documentColorspaceOptimizeFunc func (_ffd *_ea .Document ,_cdd []*_ea .Image )error ; + +// Profile1B is the implementation of the PDF/A-1B standard profile. +// Implements model.StandardImplementer, Profile interfaces. +type Profile1B struct{profile1 };func _fggce (_cfdf *_da .PdfFont ,_fggb *_ad .PdfObjectDictionary )ViolatedRule {const (_fdge ="\u0036.\u0033\u002e\u0037\u002d\u0031";_fdda ="\u0041\u006cl \u006e\u006f\u006e\u002d\u0073\u0079\u006db\u006f\u006c\u0069\u0063\u0020\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065\u0020\u0066o\u006e\u0074s\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020e\u0069\u0074h\u0065\u0072\u0020\u004d\u0061\u0063\u0052\u006f\u006d\u0061\u006e\u0045\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0057\u0069\u006e\u0041\u006e\u0073i\u0045n\u0063\u006f\u0064\u0069n\u0067\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0066o\u0072\u0020t\u0068\u0065 \u0045n\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006b\u0065\u0079 \u0069\u006e\u0020t\u0068e\u0020\u0046o\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0072\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0066\u006f\u0072 \u0074\u0068\u0065\u0020\u0042\u0061\u0073\u0065\u0045\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0074\u0068\u0065 \u0064i\u0063\u0074i\u006fn\u0061\u0072\u0079\u0020\u0077\u0068\u0069\u0063\u0068\u0020\u0069s\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0074\u0068e\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006be\u0079\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0046\u006f\u006e\u0074 \u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079\u002e\u0020\u0049\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e, \u006eo\u0020n\u006f\u006e\u002d\u0073\u0079\u006d\u0062\u006f\u006c\u0069\u0063\u0020\u0054\u0072\u0075\u0065\u0054\u0079p\u0065 \u0066\u006f\u006e\u0074\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0020\u0061\u0020\u0044\u0069\u0066\u0066e\u0072\u0065\u006e\u0063\u0065\u0073\u0020a\u0072\u0072\u0061\u0079\u0020\u0075n\u006c\u0065s\u0073\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0074h\u0065\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u006e\u0061\u006d\u0065\u0073 \u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0044\u0069f\u0066\u0065\u0072\u0065\u006ec\u0065\u0073\u0020a\u0072\u0072\u0061\u0079\u0020\u0061\u0072\u0065\u0020\u006c\u0069\u0073\u0074\u0065\u0064 \u0069\u006e \u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065 G\u006c\u0079\u0070\u0068\u0020\u004c\u0069\u0073t\u0020\u0061\u006e\u0064\u0020\u0074h\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066o\u006e\u0074\u0020\u0070\u0072\u006f\u0067\u0072a\u006d\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073t\u0020\u0074\u0068\u0065\u0020\u004d\u0069\u0063\u0072o\u0073o\u0066\u0074\u0020\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0020\u0028\u0033\u002c\u0031 \u2013 P\u006c\u0061\u0074\u0066\u006f\u0072\u006d\u0020I\u0044\u003d\u0033\u002c\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067 I\u0044\u003d\u0031\u0029\u0020\u0065\u006e\u0063\u006f\u0064i\u006e\u0067 \u0069\u006e\u0020t\u0068\u0065\u0020'\u0063\u006d\u0061\u0070\u0027\u0020\u0074\u0061\u0062\u006c\u0065\u002e"; +);var _efgag string ;if _fgbb ,_cbgeg :=_ad .GetName (_fggb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cbgeg {_efgag =_fgbb .String ();};if _efgag !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _bg ;};_eeec :=_cfdf .FontDescriptor (); +_geeggb ,_bfdb :=_ad .GetIntVal (_eeec .Flags );if !_bfdb {_ca .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); +return _ba (_fdge ,_fdda );};_cfba :=(uint32 (_geeggb )>>3)!=0;if _cfba {return _bg ;};_cfcac ,_bfdb :=_ad .GetName (_fggb .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));if !_bfdb {return _ba (_fdge ,_fdda );};switch _cfcac .String (){case "\u004d\u0061c\u0052\u006f\u006da\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":return _bg ; +default:return _ba (_fdge ,_fdda );};};func _faga (_gadc *_da .PdfFont ,_fbdbe *_ad .PdfObjectDictionary )ViolatedRule {const (_cecg ="\u0036.\u0033\u002e\u0037\u002d\u0033";_bfgb ="\u0046\u006f\u006e\u0074\u0020\u0070\u0072\u006f\u0067\u0072\u0061\u006d\u0073\u0027\u0020\u0022\u0063\u006d\u0061\u0070\u0022\u0020\u0074\u0061\u0062\u006c\u0065\u0073\u0020\u0066\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0073\u0079\u006d\u0062o\u006c\u0069c\u0020\u0054\u0072\u0075e\u0054\u0079\u0070\u0065\u0020\u0066\u006f\u006e\u0074\u0073 \u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0065\u0078\u0061\u0063\u0074\u006cy\u0020\u006f\u006ee\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u002e"; +);var _acgb string ;if _aaaca ,_cedce :=_ad .GetName (_fbdbe .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cedce {_acgb =_aaaca .String ();};if _acgb !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _bg ;};_daggg :=_gadc .FontDescriptor (); +_cfbad ,_geda :=_ad .GetIntVal (_daggg .Flags );if !_geda {_ca .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); +return _ba (_cecg ,_bfgb );};_edfa :=(uint32 (_cfbad )>>3)!=0;if !_edfa {return _bg ;};return _bg ;};func _ebc ()standardType {return standardType {_efe :1,_ee :"\u0042"}}; // XmpOptions are the options used by the optimization of the XMP metadata. type XmpOptions struct{ @@ -246,549 +447,343 @@ NewDocumentVersion bool ; MarshalIndent string ; // MarshalPrefix defines marshaling prefix of the XMP metadata. -MarshalPrefix string ;};type colorspaceModification struct{_gb _ae .ColorConverter ;_dbb _b .PdfColorspace ;};func _cafd (_dfgf *_ag .Document ,_ccaa *_ag .Page ,_eagb []*_ag .Image )error {for _ ,_cdbb :=range _eagb {if _cdbb .SMask ==nil {continue ;}; -_cagd ,_bccd :=_b .NewXObjectImageFromStream (_cdbb .Stream );if _bccd !=nil {return _bccd ;};_dggg ,_bccd :=_cagd .ToImage ();if _bccd !=nil {return _bccd ;};_geac ,_bccd :=_dggg .ToGoImage ();if _bccd !=nil {return _bccd ;};_afdf ,_bccd :=_ae .RGBAConverter .Convert (_geac ); -if _bccd !=nil {return _bccd ;};_dbd :=_afdf .Base ();_ffggd :=&_b .Image {Width :int64 (_dbd .Width ),Height :int64 (_dbd .Height ),BitsPerComponent :int64 (_dbd .BitsPerComponent ),ColorComponents :_dbd .ColorComponents ,Data :_dbd .Data };_ffggd .SetDecode (_dbd .Decode ); -_ffggd .SetAlpha (_dbd .Alpha );if _bccd =_cagd .SetImage (_ffggd ,nil );_bccd !=nil {return _bccd ;};_cagd .SMask =_fc .MakeNull ();var _gccg _fc .PdfObject ;_ffdg :=-1;for _ffdg ,_gccg =range _dfgf .Objects {if _gccg ==_cdbb .SMask .Stream {break ;}; -};if _ffdg !=-1{_dfgf .Objects =append (_dfgf .Objects [:_ffdg ],_dfgf .Objects [_ffdg +1:]...);};_cdbb .SMask =nil ;_cagd .ToPdfObject ();};return nil ;};func _dddb (_cafb *_ag .Document ,_agb int )error {for _ ,_aecg :=range _cafb .Objects {_cgc ,_dafd :=_fc .GetDict (_aecg ); -if !_dafd {continue ;};_cbfb :=_cgc .Get ("\u0054\u0079\u0070\u0065");if _cbfb ==nil {continue ;};if _faf ,_age :=_fc .GetName (_cbfb );_age &&_faf .String ()!="\u0041\u0063\u0074\u0069\u006f\u006e"{continue ;};_fga ,_dca :=_fc .GetName (_cgc .Get ("\u0053")); -if !_dca {continue ;};switch _b .PdfActionType (*_fga ){case _b .ActionTypeLaunch ,_b .ActionTypeSound ,_b .ActionTypeMovie ,_b .ActionTypeResetForm ,_b .ActionTypeImportData ,_b .ActionTypeJavaScript :_cgc .Remove ("\u0053");case _b .ActionTypeHide ,_b .ActionTypeSetOCGState ,_b .ActionTypeRendition ,_b .ActionTypeTrans ,_b .ActionTypeGoTo3DView :if _agb ==2{_cgc .Remove ("\u0053"); -};case _b .ActionTypeNamed :_cbfg ,_aee :=_fc .GetName (_cgc .Get ("\u004e"));if !_aee {continue ;};switch *_cbfg {case "\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065","\u0050\u0072\u0065\u0076\u0050\u0061\u0067\u0065","\u0046i\u0072\u0073\u0074\u0050\u0061\u0067e","\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065":default:_cgc .Remove ("\u004e"); -};};};return nil ;};func _aeccd (_gabgb *_b .CompliancePdfReader )ViolatedRule {if _gabgb .ParserMetadata ().HasDataAfterEOF (){return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0033","\u004e\u006f\u0020\u0064\u0061ta\u0020\u0073h\u0061\u006c\u006c\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0020\u0074\u0068\u0065\u0020\u006c\u0061\u0073\u0074\u0020\u0065\u006e\u0064\u002d\u006f\u0066\u002d\u0066\u0069l\u0065\u0020\u006da\u0072\u006b\u0065\u0072\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0061 \u0073\u0069\u006e\u0067\u006ce\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061\u006c \u0065\u006ed\u002do\u0066\u002d\u006c\u0069\u006e\u0065\u0020m\u0061\u0072\u006b\u0065\u0072\u002e"); -};return _da ;};type profile2 struct{_bedf standardType ;_afcg Profile2Options ;};func _gdce (_ggbda *_fc .PdfObjectDictionary ,_eagbc map[*_fc .PdfObjectStream ][]byte ,_bfde map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_bbbc ="\u0036.\u0033\u002e\u0033\u002d\u0034"; -_bdbd ="\u0046\u006f\u0072\u0020\u0074\u0068\u006fs\u0065\u0020\u0043\u004d\u0061\u0070\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0061\u0072e\u0020\u0065m\u0062\u0065\u0064de\u0064\u002c\u0020\u0074\u0068\u0065\u0020\u0069\u006et\u0065\u0067\u0065\u0072 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0057\u004d\u006f\u0064\u0065\u0020\u0065\u006e\u0074r\u0079\u0020i\u006e t\u0068\u0065\u0020CM\u0061\u0070\u0020\u0064\u0069\u0063\u0074\u0069o\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c\u0020\u0074\u006f \u0074h\u0065\u0020\u0057\u004d\u006f\u0064e\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064ed\u0020\u0043\u004d\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e"; -);var _bbceb string ;if _bfbfa ,_bagg :=_fc .GetName (_ggbda .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_bagg {_bbceb =_bfbfa .String ();};if _bbceb !="\u0054\u0079\u0070e\u0030"{return _da ;};_ffeg :=_ggbda .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -if _ ,_ecgcg :=_fc .GetName (_ffeg );_ecgcg {return _da ;};_gagb ,_afcd :=_fc .GetStream (_ffeg );if !_afcd {return _fe (_bbbc ,_bdbd );};_bcaba ,_ebgb :=_fgfdc (_gagb ,_eagbc ,_bfde );if _ebgb !=nil {return _fe (_bbbc ,_bdbd );};_ddecc ,_bgbe :=_fc .GetIntVal (_gagb .Get ("\u0057\u004d\u006fd\u0065")); -_edcg ,_dcbec :=_bcaba .WMode ();if _bgbe &&_dcbec {if _edcg !=_ddecc {return _fe (_bbbc ,_bdbd );};};if (_bgbe &&!_dcbec )||(!_bgbe &&_dcbec ){return _fe (_bbbc ,_bdbd );};return _da ;};func _fffcg (_egege *_ag .Document ,_fedc bool )error {_aecc ,_gcbde :=_egege .GetPages (); -if !_gcbde {return nil ;};for _ ,_gceg :=range _aecc {_afec ,_aged :=_gceg .GetContents ();if !_aged {continue ;};var _ffc *_b .PdfPageResources ;_efdd ,_aged :=_gceg .GetResources ();if _aged {_ffc ,_ =_b .NewPdfPageResourcesFromDict (_efdd );};for _bca ,_ebd :=range _afec {_cef ,_dbbf :=_ebd .GetData (); -if _dbbf !=nil {continue ;};_def :=_fbg .NewContentStreamParser (string (_cef ));_gcae ,_dbbf :=_def .Parse ();if _dbbf !=nil {continue ;};_ffeb ,_dbbf :=_gebb (_ffc ,_gcae ,_fedc );if _dbbf !=nil {return _dbbf ;};if _ffeb ==nil {continue ;};if _dbbf =(&_afec [_bca ]).SetData (_ffeb ); -_dbbf !=nil {return _dbbf ;};};};return nil ;}; +MarshalPrefix string ;};func _afdbea (_acgd *_da .CompliancePdfReader )(_edcc []ViolatedRule ){_cecaa :=true ;_acdb ,_bceb :=_acgd .GetCatalogMarkInfo ();if !_bceb {_cecaa =false ;}else {_edeg ,_dabbc :=_ad .GetDict (_acdb );if _dabbc {_bdaab ,_aeefb :=_ad .GetBool (_edeg .Get ("\u004d\u0061\u0072\u006b\u0065\u0064")); +if !bool (*_bdaab )||!_aeefb {_cecaa =false ;};}else {_cecaa =false ;};};if !_cecaa {_edcc =append (_edcc ,_ba ("\u0036.\u0038\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006cog\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u0020M\u0061r\u006b\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061 \u004d\u0061\u0072\u006b\u0065\u0064\u0020\u0065\u006et\u0072\u0079\u0020\u0069\u006e\u0020\u0069\u0074,\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0076\u0061lu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0072\u0075\u0065")); +};_bcc ,_bceb :=_acgd .GetCatalogStructTreeRoot ();if !_bceb {_edcc =append (_edcc ,_ba ("\u0036.\u0038\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0020\u0073\u0074\u0072\u0075\u0063\u0074\u0075r\u0065\u0020\u006f\u0066\u0020\u0074\u0068e\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067 \u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065d \u0062\u0079\u0020a\u0020s\u0074\u0072\u0075\u0063\u0074\u0075\u0072e\u0020\u0068\u0069\u0065\u0072\u0061\u0072\u0063\u0068\u0079\u0020\u0072\u006f\u006ft\u0065\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0065\u006e\u0074r\u0079\u0020\u006f\u0066\u0020\u0074h\u0065\u0020d\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061t\u0061\u006c\u006fg \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069n\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0036\u002e")); +};_deaf ,_bceb :=_ad .GetDict (_bcc );if _bceb {_aedg ,_baef :=_ad .GetName (_deaf .Get ("\u0052o\u006c\u0065\u004d\u0061\u0070"));if _baef {_dedgf ,_cfedf :=_ad .GetDict (_aedg );if _cfedf {for _ ,_ggee :=range _dedgf .Keys (){_gead :=_dedgf .Get (_ggee ); +if _gead ==nil {_edcc =append (_edcc ,_ba ("\u0036.\u0038\u002e\u0033\u002d\u0032","\u0041\u006c\u006c\u0020\u006eo\u006e\u002ds\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0073t\u0072\u0075\u0063\u0074ure\u0020\u0074\u0079\u0070\u0065s\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u006d\u0061\u0070\u0070\u0065d\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020n\u0065\u0061\u0072\u0065\u0073\u0074\u0020\u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0073\u0074a\u006ed\u0061r\u0064\u0020\u0074\u0079\u0070\u0065\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006ee\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065re\u006e\u0063e\u0020\u0039\u002e\u0037\u002e\u0034\u002c\u0020i\u006e\u0020\u0074\u0068e\u0020\u0072\u006fl\u0065\u0020\u006d\u0061p \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0066 \u0074h\u0065\u0020\u0073\u0074\u0072\u0075c\u0074\u0075r\u0065\u0020\u0074\u0072e\u0065\u0020\u0072\u006f\u006ft\u002e")); +};};};};};return _edcc ;};func _badd (_cbabb *_da .CompliancePdfReader ,_eefa standardType ,_bdfgc bool )(_dace []ViolatedRule ){_eaea ,_bbbgd :=_acgab (_cbabb );if !_bbbgd {return []ViolatedRule {_ba ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d1","\u0063a\u0074a\u006c\u006f\u0067\u0020\u006eo\u0074\u0020f\u006f\u0075\u006e\u0064\u002e")}; +};_egfe :=_eaea .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");if _egfe ==nil {return []ViolatedRule {_ba ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d1","\u0054\u0068\u0065\u0020\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u006f\u0066\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074ai\u006e\u0020\u0074\u0068\u0065\u0020\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020\u006b\u0065\u0079\u0020\u0077\u0068\u006f\u0073\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0061\u0020m\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020s\u0074\u0072\u0065\u0061\u006d")}; +};_eddgd ,_bbbgd :=_ad .GetStream (_egfe );if !_bbbgd {return []ViolatedRule {_ba ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d1","\u0054\u0068\u0065\u0020\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u006f\u0066\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074ai\u006e\u0020\u0074\u0068\u0065\u0020\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020\u006b\u0065\u0079\u0020\u0077\u0068\u006f\u0073\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0061\u0020m\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020s\u0074\u0072\u0065\u0061\u006d")}; +};_edbbg ,_ddef :=_gf .LoadDocument (_eddgd .Stream );if _ddef !=nil {return []ViolatedRule {_ba ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d4","\u0041\u006c\u006c\u0020\u006de\u0074\u0061\u0064a\u0074\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0073\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020i\u006e \u0074\u0068\u0065\u0020\u0050\u0044\u0046 \u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0066\u006f\u0072\u006d\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065ci\u0066\u0069\u0063\u0061\u0074\u0069\u006fn\u002e\u0020\u0041\u006c\u006c\u0020c\u006fn\u0074\u0065\u006e\u0074\u0020\u006f\u0066\u0020\u0061\u006c\u006c\u0020\u0058\u004d\u0050\u0020p\u0061\u0063\u006b\u0065\u0074\u0073 \u0073h\u0061\u006c\u006c \u0062\u0065\u0020\u0077\u0065\u006c\u006c\u002d\u0066o\u0072\u006de\u0064")}; +};_egab :=_edbbg .GetGoXmpDocument ();var _dbdfg []*_ga .Namespace ;for _ ,_gfdf :=range _egab .Namespaces (){switch _gfdf .Name {case _cb .NsDc .Name ,_f .NsPDF .Name ,_ef .NsXmp .Name ,_eb .NsXmpRights .Name ,_ebe .Namespace .Name ,_be .Namespace .Name ,_cf .NsXmpMM .Name ,_be .FieldNS .Name ,_be .SchemaNS .Name ,_be .PropertyNS .Name ,"\u0073\u0074\u0045v\u0074","\u0073\u0074\u0056e\u0072","\u0073\u0074\u0052e\u0066","\u0073\u0074\u0044i\u006d","\u0078a\u0070\u0047\u0049\u006d\u0067","\u0073\u0074\u004ao\u0062","\u0078\u006d\u0070\u0069\u0064\u0071":continue ; +};_dbdfg =append (_dbdfg ,_gfdf );};_cfddc :=true ;_eddcd ,_ddef :=_edbbg .GetPdfaExtensionSchemas ();if _ddef ==nil {for _ ,_dedbb :=range _dbdfg {var _adgac bool ;for _fecgf :=range _eddcd {if _dedbb .URI ==_eddcd [_fecgf ].NamespaceURI {_adgac =true ; +break ;};};if !_adgac {_cfddc =false ;break ;};};}else {_cfddc =false ;};if !_cfddc {_dace =append (_dace ,_ba ("\u0036.\u0036\u002e\u0032\u002e\u0033\u002d7","\u0041\u006c\u006c\u0020\u0070\u0072\u006f\u0070e\u0072\u0074\u0069e\u0073\u0020\u0073\u0070\u0065\u0063i\u0066\u0069\u0065\u0064\u0020\u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072m\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0075s\u0065\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0073\u0063he\u006da\u0073 \u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002c\u0020\u0049\u0053\u004f\u0020\u0031\u00390\u0030\u0035-\u0031\u0020\u006f\u0072\u0020\u0074h\u0069s\u0020\u0070\u0061\u0072\u0074\u0020\u006f\u0066\u0020\u0049\u0053\u004f\u0020\u0031\u0039\u0030\u0030\u0035\u002c\u0020o\u0072\u0020\u0061\u006e\u0079\u0020e\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0020\u0073c\u0068\u0065\u006das\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006fm\u0070\u006c\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0036\u002e\u0036\u002e\u0032.\u0033\u002e\u0032\u002e")); +};_ggdfe ,_bbbgd :=_edbbg .GetPdfAID ();if !_bbbgd {_dace =append (_dace ,_ba ("\u0036.\u0036\u002e\u0034\u002d\u0031","\u0054\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0061n\u0064\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020\u006c\u0065\u0076\u0065l\u0020\u006f\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0070e\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0074\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0065\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0020\u0073\u0063h\u0065\u006da.")); +}else {if _ggdfe .Part !=_eefa ._efe {_dace =append (_dace ,_ba ("\u0036.\u0036\u002e\u0034\u002d\u0032","\u0054h\u0065\u0020\u0076\u0061lue\u0020\u006f\u0066\u0020p\u0064\u0066\u0061\u0069\u0064\u003a\u0070\u0061\u0072\u0074 \u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0061\u0072\u0074\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0049\u0053\u004f\u002019\u0030\u0030\u0035 \u0074\u006f\u0020\u0077\u0068i\u0063h\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065 \u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0073\u002e")); +};if _eefa ._ee =="\u0041"&&_ggdfe .Conformance !="\u0041"{_dace =append (_dace ,_ba ("\u0036.\u0036\u002e\u0034\u002d\u0033","\u0041\u0020\u004c\u0065\u0076\u0065\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061l\u006c\u0020\u0073\u0070ec\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020as\u0020\u0041\u002e\u0020\u0041 \u004c\u0065v\u0065\u006c\u0020\u0042\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061lu\u0065\u0020o\u0066 \u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e\u0020\u0041\u0020\u004c\u0065\u0076\u0065\u006c \u0055\u0020\u0063\u006f\u006e\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063\u0069\u0066\u0079 \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0070\u0064f\u0061i\u0064\u003ac\u006fn\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065 \u0061\u0073\u0020\u0055.")); +}else if _eefa ._ee =="\u0055"&&(_ggdfe .Conformance !="\u0041"&&_ggdfe .Conformance !="\u0055"){_dace =append (_dace ,_ba ("\u0036.\u0036\u002e\u0034\u002d\u0033","\u0041\u0020\u004c\u0065\u0076\u0065\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061l\u006c\u0020\u0073\u0070ec\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020as\u0020\u0041\u002e\u0020\u0041 \u004c\u0065v\u0065\u006c\u0020\u0042\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061lu\u0065\u0020o\u0066 \u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e\u0020\u0041\u0020\u004c\u0065\u0076\u0065\u006c \u0055\u0020\u0063\u006f\u006e\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063\u0069\u0066\u0079 \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0070\u0064f\u0061i\u0064\u003ac\u006fn\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065 \u0061\u0073\u0020\u0055.")); +}else if _eefa ._ee =="\u0042"&&(_ggdfe .Conformance !="\u0041"&&_ggdfe .Conformance !="\u0042"&&_ggdfe .Conformance !="\u0055"){_dace =append (_dace ,_ba ("\u0036.\u0036\u002e\u0034\u002d\u0033","\u0041\u0020\u004c\u0065\u0076\u0065\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061l\u006c\u0020\u0073\u0070ec\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020as\u0020\u0041\u002e\u0020\u0041 \u004c\u0065v\u0065\u006c\u0020\u0042\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061lu\u0065\u0020o\u0066 \u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e\u0020\u0041\u0020\u004c\u0065\u0076\u0065\u006c \u0055\u0020\u0063\u006f\u006e\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063\u0069\u0066\u0079 \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0070\u0064f\u0061i\u0064\u003ac\u006fn\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065 \u0061\u0073\u0020\u0055.")); +};};return _dace ;};func _aegab (_agga *Profile1Options ){if _agga .Now ==nil {_agga .Now =_a .Now ;};}; // Profile1A is the implementation of the PDF/A-1A standard profile. // Implements model.StandardImplementer, Profile interfaces. -type Profile1A struct{profile1 };func _bdcc (_gdc *_ag .Document )error {_dac ,_eff :=_gdc .FindCatalog ();if !_eff {return nil ;};_ ,_eff =_fc .GetDict (_dac .Object .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074")); -if !_eff {_cabf :=_fc .MakeDict ();_cabf .Set ("\u0054\u0079\u0070\u0065",_fc .MakeName ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074"));_dac .Object .Set ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074",_cabf ); -};return nil ;};func _bdee (_ebfb standardType ,_dacd *_ag .OutputIntents )error {_dfgc ,_gfb :=_fa .NewCmykIsoCoatedV2OutputIntent (_ebfb .outputIntentSubtype ());if _gfb !=nil {return _gfb ;};if _gfb =_dacd .Add (_dfgc .ToPdfObject ());_gfb !=nil {return _gfb ; -};return nil ;}; - -// Part gets the PDF/A version level. -func (_efde *profile2 )Part ()int {return _efde ._bedf ._bdc };func _gabd (_eebcg *_b .CompliancePdfReader )(_aadc []ViolatedRule ){var _eggbf ,_aagc bool ;_cfdge :=func ()bool {return _eggbf &&_aagc };for _ ,_dfgfb :=range _eebcg .GetObjectNums (){_agfad ,_fgfe :=_eebcg .GetIndirectObjectByNumber (_dfgfb ); -if _fgfe !=nil {_cf .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0025\u0064\u0020fa\u0069\u006c\u0065d\u003a \u0025\u0076",_dfgfb ,_fgfe ); -continue ;};_cccaa ,_ffbc :=_fc .GetDict (_agfad );if !_ffbc {continue ;};_acbg ,_ffbc :=_fc .GetName (_cccaa .Get ("\u0054\u0079\u0070\u0065"));if !_ffbc {continue ;};if *_acbg !="\u0041\u0063\u0074\u0069\u006f\u006e"{continue ;};_bgebc ,_ffbc :=_fc .GetName (_cccaa .Get ("\u0053")); -if !_ffbc {if !_eggbf {_aadc =append (_aadc ,_fe ("\u0036.\u0036\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004c\u0061\u0075\u006e\u0063\u0068\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u002c\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046o\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044\u0061\u0074\u0061\u0020\u0061\u006e\u0064 \u004a\u0061\u0076a\u0053\u0063\u0072\u0069\u0070\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020s\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e \u0041\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020th\u0065\u0020\u0064\u0065p\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020s\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u002d\u006f\u0070\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062e\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e\u0020T\u0068\u0065\u0020\u0048\u0069\u0064\u0065\u0020a\u0063\u0074\u0069\u006f\u006e \u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_eggbf =true ;if _cfdge (){return _aadc ;};};continue ;};switch _b .PdfActionType (*_bgebc ){case _b .ActionTypeLaunch ,_b .ActionTypeSound ,_b .ActionTypeMovie ,_b .ActionTypeResetForm ,_b .ActionTypeImportData ,_b .ActionTypeJavaScript :if !_eggbf {_aadc =append (_aadc ,_fe ("\u0036.\u0036\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004c\u0061\u0075\u006e\u0063\u0068\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u002c\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046o\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044\u0061\u0074\u0061\u0020\u0061\u006e\u0064 \u004a\u0061\u0076a\u0053\u0063\u0072\u0069\u0070\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020s\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e \u0041\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020th\u0065\u0020\u0064\u0065p\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020s\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u002d\u006f\u0070\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062e\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e\u0020T\u0068\u0065\u0020\u0048\u0069\u0064\u0065\u0020a\u0063\u0074\u0069\u006f\u006e \u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_eggbf =true ;if _cfdge (){return _aadc ;};};continue ;case _b .ActionTypeNamed :if !_aagc {_bgddg ,_agef :=_fc .GetName (_cccaa .Get ("\u004e"));if !_agef {_aadc =append (_aadc ,_fe ("\u0036.\u0036\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_aagc =true ;if _cfdge (){return _aadc ;};continue ;};switch *_bgddg {case "\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065","\u0050\u0072\u0065\u0076\u0050\u0061\u0067\u0065","\u0046i\u0072\u0073\u0074\u0050\u0061\u0067e","\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065":default:_aadc =append (_aadc ,_fe ("\u0036.\u0036\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_aagc =true ;if _cfdge (){return _aadc ;};continue ;};};};};return _aadc ;};func _cccba (_cefa *_b .CompliancePdfReader )(_bbbcc []ViolatedRule ){var _gfebf ,_dbff ,_beae ,_baddb ,_acfbd ,_aagfa bool ;_cgfd :=func ()bool {return _gfebf &&_dbff &&_beae &&_baddb &&_acfbd &&_aagfa }; -_afgc :=func (_adgdc *_fc .PdfObjectDictionary )bool {if !_gfebf &&_adgdc .Get ("\u0054\u0052")!=nil {_gfebf =true ;_bbbcc =append (_bbbcc ,_fe ("\u0036.\u0032\u002e\u0038\u002d\u0031","\u0041\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0054\u0052\u0020\u006b\u0065\u0079\u002e")); -};if _deec :=_adgdc .Get ("\u0054\u0052\u0032");!_dbff &&_deec !=nil {_cfbc ,_bdef :=_fc .GetName (_deec );if !_bdef ||(_bdef &&*_cfbc !="\u0044e\u0066\u0061\u0075\u006c\u0074"){_dbff =true ;_bbbcc =append (_bbbcc ,_fe ("\u0036.\u0032\u002e\u0038\u002d\u0032","\u0041\u006e \u0045\u0078\u0074G\u0053\u0074\u0061\u0074\u0065 \u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074a\u0069n\u0020\u0074\u0068\u0065\u0020\u0054R2 \u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076al\u0075e\u0020\u006f\u0074\u0068e\u0072 \u0074h\u0061\u006e \u0044\u0065fa\u0075\u006c\u0074\u002e")); -if _cgfd (){return true ;};};};if _efdb :=_adgdc .Get ("\u0053\u004d\u0061s\u006b");!_beae &&_efdb !=nil {_eddc ,_fgab :=_fc .GetName (_efdb );if !_fgab ||(_fgab &&*_eddc !="\u004e\u006f\u006e\u0065"){_beae =true ;_bbbcc =append (_bbbcc ,_fe ("\u0036\u002e\u0034-\u0031","\u0049\u0066\u0020\u0061\u006e \u0053\u004d\u0061\u0073\u006b\u0020\u006be\u0079\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0073\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0069\u0074s\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u004e\u006f\u006ee\u002e")); -if _cgfd (){return true ;};};};if _ffbf :=_adgdc .Get ("\u0043\u0041");!_acfbd &&_ffbf !=nil {_ffbg ,_ffbda :=_fc .GetNumberAsFloat (_ffbf );if _ffbda ==nil &&_ffbg !=1.0{_acfbd =true ;_bbbcc =append (_bbbcc ,_fe ("\u0036\u002e\u0034-\u0035","\u0054\u0068\u0065\u0020\u0066ol\u006c\u006fw\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u0073\u002c\u0020\u0069\u0066\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078t\u0047\u0053\u0074a\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0073\u0068a\u006c\u006c\u0020\u0068\u0061v\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0073 \u0073h\u006f\u0077\u006e\u003a\u0020\u0043\u0041 \u002d\u0020\u0031\u002e\u0030\u002e")); -if _cgfd (){return true ;};};};if _adce :=_adgdc .Get ("\u0063\u0061");!_aagfa &&_adce !=nil {_dga ,_ffcb :=_fc .GetNumberAsFloat (_adce );if _ffcb ==nil &&_dga !=1.0{_aagfa =true ;_bbbcc =append (_bbbcc ,_fe ("\u0036\u002e\u0034-\u0036","\u0054\u0068\u0065\u0020\u0066ol\u006c\u006fw\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u0073\u002c\u0020\u0069\u0066\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078t\u0047\u0053\u0074a\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0073\u0068a\u006c\u006c\u0020\u0068\u0061v\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0073 \u0073h\u006f\u0077\u006e\u003a\u0020\u0063\u0061 \u002d\u0020\u0031\u002e\u0030\u002e")); -if _cgfd (){return true ;};};};if _gedaf :=_adgdc .Get ("\u0042\u004d");!_baddb &&_gedaf !=nil {_ceeaa ,_gbag :=_fc .GetName (_gedaf );if _gbag {switch _ceeaa .String (){case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065":default:_baddb =true ; -_bbbcc =append (_bbbcc ,_fe ("\u0036\u002e\u0034-\u0034","T\u0068\u0065\u0020\u0066\u006f\u006cl\u006f\u0077\u0069\u006e\u0067 \u006b\u0065y\u0073\u002c\u0020\u0069\u0066 \u0070res\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078\u0074\u0047S\u0074\u0061t\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065 \u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0073\u0020\u0073\u0068\u006f\u0077n\u003a\u0020\u0042\u004d\u0020\u002d\u0020\u004e\u006f\u0072m\u0061\u006c\u0020\u006f\u0072\u0020\u0043\u006f\u006d\u0070\u0061t\u0069\u0062\u006c\u0065\u002e")); -if _cgfd (){return true ;};};};};return false ;};for _ ,_bfcb :=range _cefa .PageList {_ddgaa :=_bfcb .Resources ;if _ddgaa ==nil {continue ;};if _ddgaa .ExtGState ==nil {continue ;};_badab ,_eaeaf :=_fc .GetDict (_ddgaa .ExtGState );if !_eaeaf {continue ; -};_fcab :=_badab .Keys ();for _ ,_ddda :=range _fcab {_fdcg ,_aaaca :=_fc .GetDict (_badab .Get (_ddda ));if !_aaaca {continue ;};if _afgc (_fdcg ){return _bbbcc ;};};};for _ ,_daadb :=range _cefa .PageList {_gdcb :=_daadb .Resources ;if _gdcb ==nil {continue ; -};_eeac ,_aadbb :=_fc .GetDict (_gdcb .XObject );if !_aadbb {continue ;};for _ ,_bfgb :=range _eeac .Keys (){_cfdgb ,_edfef :=_fc .GetStream (_eeac .Get (_bfgb ));if !_edfef {continue ;};_gbdff ,_edfef :=_fc .GetDict (_cfdgb .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); -if !_edfef {continue ;};_effb ,_edfef :=_fc .GetDict (_gbdff .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_edfef {continue ;};for _ ,_affb :=range _effb .Keys (){_dcef ,_bfbfag :=_fc .GetDict (_effb .Get (_affb ));if !_bfbfag {continue ;}; -if _afgc (_dcef ){return _bbbcc ;};};};};return _bbbcc ;};type standardType struct{_bdc int ;_dc string ;}; +type Profile1A struct{profile1 };type standardType struct{_efe int ;_ee string ;};func _gfege (_dcg *_ea .Document ,_caed bool )error {_dbde ,_eccc :=_dcg .GetPages ();if !_eccc {return nil ;};for _ ,_facc :=range _dbde {_fcae :=_facc .FindXObjectForms (); +for _ ,_dbgd :=range _fcae {_dcgf ,_egd :=_da .NewXObjectFormFromStream (_dbgd );if _egd !=nil {return _egd ;};_gef ,_egd :=_dcgf .GetContentStream ();if _egd !=nil {return _egd ;};_agfd :=_cad .NewContentStreamParser (string (_gef ));_gcg ,_egd :=_agfd .Parse (); +if _egd !=nil {return _egd ;};_acd ,_egd :=_dge (_dcgf .Resources ,_gcg ,_caed );if _egd !=nil {return _egd ;};if len (_acd )==0{continue ;};if _egd =_dcgf .SetContentStream (_acd ,_ad .NewFlateEncoder ());_egd !=nil {return _egd ;};_dcgf .ToPdfObject (); +};};return nil ;};func _gff (_abd *_ea .Document )(*_ad .PdfObjectDictionary ,bool ){_ffe ,_bbg :=_abd .FindCatalog ();if !_bbg {return nil ,false ;};_fdd ,_bbg :=_ad .GetArray (_ffe .Object .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073")); +if !_bbg {return nil ,false ;};if _fdd .Len ()==0{return nil ,false ;};return _ad .GetDict (_fdd .Get (0));};func _bceg (_fefd *_da .CompliancePdfReader )ViolatedRule {_caege :=map[*_ad .PdfObjectStream ]struct{}{};for _ ,_fbaab :=range _fefd .PageList {if _fbaab .Resources ==nil &&_fbaab .Contents ==nil {continue ; +};if _ffage :=_fbaab .GetPageDict ();_ffage !=nil {_cbfd ,_bffa :=_ad .GetDict (_ffage .Get ("\u0047\u0072\u006fu\u0070"));if _bffa {if _gfccb :=_cbfd .Get ("\u0053");_gfccb !=nil {_fcfdfe ,_gegd :=_ad .GetName (_gfccb );if _gegd &&_fcfdfe .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{return _ba ("\u0036\u002e\u0034-\u0033","\u0041\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020\u0053\u0020\u0078Ob\u006a\u0065c\u0074\u0020\u0077\u0069\u0074h\u0020\u0061\u0020\u0076a\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062je\u0063\u0074\u002e\n\u0041 \u0047\u0072\u006f\u0075p\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020S\u0020\u0078\u004fb\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020v\u0061\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006ec\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); +};};};};if _fbaab .Resources !=nil {if _gfdc ,_baee :=_ad .GetDict (_fbaab .Resources .XObject );_baee {for _ ,_dfgf :=range _gfdc .Keys (){_efcec ,_bab :=_ad .GetStream (_gfdc .Get (_dfgf ));if !_bab {continue ;};if _ ,_dedg :=_caege [_efcec ];_dedg {continue ; +};_babd ,_bab :=_ad .GetDict (_efcec .Get ("\u0047\u0072\u006fu\u0070"));if !_bab {_caege [_efcec ]=struct{}{};continue ;};_aefg :=_babd .Get ("\u0053");if _aefg !=nil {_bage ,_bcfbc :=_ad .GetName (_aefg );if _bcfbc &&_bage .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{return _ba ("\u0036\u002e\u0034-\u0033","\u0041\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020\u0053\u0020\u0078Ob\u006a\u0065c\u0074\u0020\u0077\u0069\u0074h\u0020\u0061\u0020\u0076a\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062je\u0063\u0074\u002e\n\u0041 \u0047\u0072\u006f\u0075p\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020S\u0020\u0078\u004fb\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020v\u0061\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006ec\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); +};};_caege [_efcec ]=struct{}{};continue ;};};};if _fbaab .Contents !=nil {_faeg ,_bebgg :=_fbaab .GetContentStreams ();if _bebgg !=nil {continue ;};for _ ,_dfdd :=range _faeg {_fcbba ,_dfcfg :=_cad .NewContentStreamParser (_dfdd ).Parse ();if _dfcfg !=nil {continue ; +};for _ ,_dcdde :=range *_fcbba {if len (_dcdde .Params )==0{continue ;};_dacaf ,_cfcef :=_ad .GetName (_dcdde .Params [0]);if !_cfcef {continue ;};_bagcd ,_ffebd :=_fbaab .Resources .GetXObjectByName (*_dacaf );if _ffebd !=_da .XObjectTypeForm {continue ; +};if _ ,_bad :=_caege [_bagcd ];_bad {continue ;};_cabb ,_cfcef :=_ad .GetDict (_bagcd .Get ("\u0047\u0072\u006fu\u0070"));if !_cfcef {_caege [_bagcd ]=struct{}{};continue ;};_dccdd :=_cabb .Get ("\u0053");if _dccdd !=nil {_fcdf ,_cdbdg :=_ad .GetName (_dccdd ); +if _cdbdg &&_fcdf .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{return _ba ("\u0036\u002e\u0034-\u0033","\u0041\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020\u0053\u0020\u0078Ob\u006a\u0065c\u0074\u0020\u0077\u0069\u0074h\u0020\u0061\u0020\u0076a\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062je\u0063\u0074\u002e\n\u0041 \u0047\u0072\u006f\u0075p\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020S\u0020\u0078\u004fb\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020v\u0061\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006ec\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); +};};_caege [_bagcd ]=struct{}{};};};};};return _bg ;};func _ecff (_bddb *_da .CompliancePdfReader )(_cfbgb ViolatedRule ){_fbaf ,_gdgc :=_acgab (_bddb );if !_gdgc {return _bg ;};if _fbaf .Get ("\u0041\u0041")!=nil {return _ba ("\u0036.\u0036\u002e\u0032\u002d\u0033","\u0054\u0068e\u0020\u0064\u006f\u0063\u0075\u006d\u0065n\u0074 \u0063\u0061\u0074a\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0041\u0020\u0065n\u0074r\u0079 \u0066\u006f\u0072 \u0061\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061\u0063\u0074i\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); +};return _bg ;};func _afda (_afb *_da .PdfFont ,_cgfa *_ad .PdfObjectDictionary )ViolatedRule {const (_adab ="\u0036.\u0033\u002e\u0037\u002d\u0032";_acac ="\u0041l\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0069\u0063\u0020\u0054\u0072u\u0065\u0054\u0079p\u0065\u0020\u0066\u006f\u006e\u0074s\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0061\u006e\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065n\u0074\u0072\u0079\u0020\u0069n\u0020\u0074\u0068e\u0020\u0066\u006f\u006e\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"; +);var _dcfe string ;if _aebd ,_bbcc :=_ad .GetName (_cgfa .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_bbcc {_dcfe =_aebd .String ();};if _dcfe !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _bg ;};_egeg :=_afb .FontDescriptor ();_ccbdb ,_edff :=_ad .GetIntVal (_egeg .Flags ); +if !_edff {_ca .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); +return _ba (_adab ,_acac );};_cfdg :=(uint32 (_ccbdb )>>3)&1;_edeee :=_cfdg !=0;if !_edeee {return _bg ;};if _cgfa .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")!=nil {return _ba (_adab ,_acac );};return _bg ;};func _fae (_bagd *_ea .Document ,_gbc []pageColorspaceOptimizeFunc ,_bga []documentColorspaceOptimizeFunc )error {_ebf ,_dbff :=_bagd .GetPages (); +if !_dbff {return nil ;};var _aggg []*_ea .Image ;for _cdg ,_deb :=range _ebf {_efga ,_aacb :=_deb .FindXObjectImages ();if _aacb !=nil {return _aacb ;};for _ ,_ggd :=range _gbc {if _aacb =_ggd (_bagd ,&_ebf [_cdg ],_efga );_aacb !=nil {return _aacb ;}; +};_aggg =append (_aggg ,_efga ...);};for _ ,_ggfe :=range _bga {if _cga :=_ggfe (_bagd ,_aggg );_cga !=nil {return _cga ;};};return nil ;};func _faad (_aeff *_da .CompliancePdfReader )(*_da .PdfOutputIntent ,bool ){_ceafe ,_bacec :=_caee (_aeff );if !_bacec {return nil ,false ; +};_dafa ,_dgea :=_da .NewPdfOutputIntentFromPdfObject (_ceafe );if _dgea !=nil {return nil ,false ;};return _dafa ,true ;}; -// NewProfile1A creates a new Profile1A with given options. -func NewProfile1A (options *Profile1Options )*Profile1A {if options ==nil {options =DefaultProfile1Options ();};_feebb (options );return &Profile1A {profile1 {_fgad :*options ,_bacb :_de ()}};}; - -// ApplyStandard tries to change the content of the writer to match the PDF/A-2 standard. -// Implements model.StandardApplier. -func (_fccc *profile2 )ApplyStandard (document *_ag .Document )(_acfb error ){_debf (document ,7);if _acfb =_cec (document ,_fccc ._afcg .Now );_acfb !=nil {return _acfb ;};if _acfb =_afbe (document );_acfb !=nil {return _acfb ;};_gddda ,_dfdd :=_gfg (_fccc ._afcg .CMYKDefaultColorSpace ,_fccc ._bedf ); -_acfb =_aga (document ,[]pageColorspaceOptimizeFunc {_gddda },[]documentColorspaceOptimizeFunc {_dfdd });if _acfb !=nil {return _acfb ;};_fcg (document );if _acfb =_ddcf (document );_acfb !=nil {return _acfb ;};if _acfb =_cca (document ,_fccc ._bedf ._bdc ); -_acfb !=nil {return _acfb ;};if _acfb =_abea (document );_acfb !=nil {return _acfb ;};if _acfb =_ccgf (document );_acfb !=nil {return _acfb ;};if _acfb =_be (document );_acfb !=nil {return _acfb ;};if _acfb =_aefdd (document );_acfb !=nil {return _acfb ; -};if _fccc ._bedf ._dc =="\u0041"{_bdgg (document );};if _acfb =_dddb (document ,_fccc ._bedf ._bdc );_acfb !=nil {return _acfb ;};if _acfb =_eeea (document );_acfb !=nil {return _acfb ;};if _dabe :=_gef (document ,_fccc ._bedf ,_fccc ._afcg .Xmp );_dabe !=nil {return _dabe ; -};if _fccc ._bedf ==_ee (){if _acfb =_bdcc (document );_acfb !=nil {return _acfb ;};};if _acfb =_efce (document );_acfb !=nil {return _acfb ;};if _acfb =_bcde (document );_acfb !=nil {return _acfb ;};if _acfb =_afdd (document );_acfb !=nil {return _acfb ; -};return nil ;};func _ebcd (_adc *_b .CompliancePdfReader )ViolatedRule {if _adc .ParserMetadata ().HeaderPosition ()!=0{return _fe ("\u0036.\u0031\u002e\u0032\u002d\u0031","h\u0065\u0061\u0064\u0065\u0072\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0061\u0074\u0020\u0074\u0068\u0065\u0020fi\u0072\u0073\u0074 \u0062y\u0074\u0065"); -};return _da ;}; - -// Profile2A is the implementation of the PDF/A-2A standard profile. -// Implements model.StandardImplementer, Profile interfaces. -type Profile2A struct{profile2 };func _eab (_acfbc *_b .CompliancePdfReader )(*_b .PdfOutputIntent ,bool ){_bdcb ,_ggcd :=_egb (_acfbc );if !_ggcd {return nil ,false ;};_aabdd ,_bcbc :=_b .NewPdfOutputIntentFromPdfObject (_bdcb );if _bcbc !=nil {return nil ,false ; -};return _aabdd ,true ;};func _eecec (_ddbb *_fc .PdfObjectDictionary ,_cfec map[*_fc .PdfObjectStream ][]byte ,_dabd map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_bbacc ="\u0036.\u0033\u002e\u0033\u002d\u0033";_gcbdd ="\u0041\u006cl \u0043\u004d\u0061\u0070\u0073\u0020\u0075\u0073e\u0064 \u0077i\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072m\u0069n\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048\u0020a\u006e\u0064\u0020\u0049\u0064\u0065\u006et\u0069\u0074\u0079-\u0056\u002c\u0020\u0073\u0068a\u006c\u006c \u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0074h\u0061\u0074\u0020\u0066\u0069\u006c\u0065\u0020\u0061\u0073\u0020\u0064es\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044F\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u00205\u002e\u0036\u002e\u0034\u002e"; -);var _dadg string ;if _dffe ,_daecb :=_fc .GetName (_ddbb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_daecb {_dadg =_dffe .String ();};if _dadg !="\u0054\u0079\u0070e\u0030"{return _da ;};_aefg :=_ddbb .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -if _gecfg ,_dggdc :=_fc .GetName (_aefg );_dggdc {switch _gecfg .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _da ;default:return _fe (_bbacc ,_gcbdd ); -};};_eaga ,_dedb :=_fc .GetStream (_aefg );if !_dedb {return _fe (_bbacc ,_gcbdd );};_ ,_bbabe :=_fgfdc (_eaga ,_cfec ,_dabd );if _bbabe !=nil {return _fe (_bbacc ,_gcbdd );};return _da ;};func _ggg (_ecca *_b .CompliancePdfReader )(_bgab []ViolatedRule ){if _ecca .ParserMetadata ().HasOddLengthHexStrings (){_bgab =append (_bgab ,_fe ("\u0036.\u0031\u002e\u0036\u002d\u0031","\u0068\u0065\u0078a\u0064\u0065\u0063\u0069\u006d\u0061\u006c\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u006f\u0066\u0020e\u0076\u0065\u006e\u0020\u0073\u0069\u007a\u0065")); -};if _ecca .ParserMetadata ().HasOddLengthHexStrings (){_bgab =append (_bgab ,_fe ("\u0036.\u0031\u002e\u0036\u002d\u0032","\u0068\u0065\u0078\u0061\u0064\u0065\u0063\u0069\u006da\u006c\u0020s\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068o\u0075\u006c\u0064\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u006f\u006e\u006c\u0079\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0066\u0072\u006f\u006d\u0020\u0072\u0061n\u0067\u0065\u0020[\u0030\u002d\u0039\u003b\u0041\u002d\u0046\u003b\u0061\u002d\u0066\u005d")); -};return _bgab ;};var _da =ViolatedRule {};func _bdgg (_bed *_ag .Document ){_eccfd ,_eaaa :=_bed .FindCatalog ();if !_eaaa {return ;};_agg ,_eaaa :=_eccfd .GetMarkInfo ();if !_eaaa {_agg =_fc .MakeDict ();};_agfc ,_eaaa :=_fc .GetBool (_agg .Get ("\u004d\u0061\u0072\u006b\u0065\u0064")); -if !_eaaa ||!bool (*_agfc ){_agg .Set ("\u004d\u0061\u0072\u006b\u0065\u0064",_fc .MakeBool (true ));_eccfd .SetMarkInfo (_agg );};};func _aff (_egc *_ag .Document )error {_fbf :=func (_dad *_fc .PdfObjectDictionary )error {if _gfc :=_dad .Get ("\u0053\u004d\u0061s\u006b"); -_gfc !=nil {_dad .Set ("\u0053\u004d\u0061s\u006b",_fc .MakeName ("\u004e\u006f\u006e\u0065"));};_acfd :=_dad .Get ("\u0043\u0041");if _acfd !=nil {_eec ,_afd :=_fc .GetNumberAsFloat (_acfd );if _afd !=nil {_cf .Log .Debug ("\u0045x\u0074\u0047S\u0074\u0061\u0074\u0065 \u006f\u0062\u006ae\u0063\u0074\u0020\u0043\u0041\u0020\u0076\u0061\u006cue\u0020\u0069\u0073 \u006e\u006ft\u0020\u0061\u0020\u0066\u006c\u006fa\u0074\u003a \u0025\u0076",_afd ); -_eec =0;};if _eec !=1.0{_dad .Set ("\u0043\u0041",_fc .MakeFloat (1.0));};};_acfd =_dad .Get ("\u0063\u0061");if _acfd !=nil {_geb ,_dab :=_fc .GetNumberAsFloat (_acfd );if _dab !=nil {_cf .Log .Debug ("\u0045\u0078t\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0027\u0063\u0061\u0027\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u0066\u006c\u006f\u0061\u0074\u003a\u0020\u0025\u0076",_dab ); -_geb =0;};if _geb !=1.0{_dad .Set ("\u0063\u0061",_fc .MakeFloat (1.0));};};_gca :=_dad .Get ("\u0042\u004d");if _gca !=nil {_bdf ,_ebe :=_fc .GetName (_gca );if !_ebe {_cf .Log .Debug ("E\u0078\u0074\u0047\u0053\u0074\u0061t\u0065\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0027\u0042\u004d\u0027\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061m\u0065"); -_bdf =_fc .MakeName ("");};_bga :=_bdf .String ();switch _bga {case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065":default:_dad .Set ("\u0042\u004d",_fc .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c")); -};};_fce :=_dad .Get ("\u0054\u0052");if _fce !=nil {_cf .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0054\u0052\u0020\u006b\u0065\u0079"); -_dad .Remove ("\u0054\u0052");};_deg :=_dad .Get ("\u0054\u0052\u0032");if _deg !=nil {_dgg :=_deg .String ();if _dgg !="\u0044e\u0066\u0061\u0075\u006c\u0074"{_cf .Log .Debug ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074\u0065 o\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073 \u0054\u00522\u0020\u006b\u0065y\u0020\u0077\u0069\u0074\u0068\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0074\u0068\u0065r\u0020\u0074ha\u006e\u0020\u0044e\u0066\u0061\u0075\u006c\u0074"); -_dad .Set ("\u0054\u0052\u0032",_fc .MakeName ("\u0044e\u0066\u0061\u0075\u006c\u0074"));};};return nil ;};_bfe ,_ga :=_egc .GetPages ();if !_ga {return nil ;};for _ ,_gdd :=range _bfe {_ege ,_fdb :=_gdd .GetResources ();if !_fdb {continue ;};_cae ,_gaf :=_fc .GetDict (_ege .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e")); -if !_gaf {return nil ;};_cgfc :=_cae .Keys ();for _ ,_ff :=range _cgfc {_deb ,_geee :=_fc .GetDict (_cae .Get (_ff ));if !_geee {continue ;};_ggb :=_fbf (_deb );if _ggb !=nil {continue ;};};};for _ ,_ged :=range _bfe {_eecb ,_gcag :=_ged .GetContents (); -if !_gcag {return nil ;};for _ ,_fdg :=range _eecb {_gcf ,_cdg :=_fdg .GetData ();if _cdg !=nil {continue ;};_ec :=_fbg .NewContentStreamParser (string (_gcf ));_ebc ,_cdg :=_ec .Parse ();if _cdg !=nil {continue ;};for _ ,_ebf :=range *_ebc {if len (_ebf .Params )==0{continue ; -};_ ,_afeb :=_fc .GetName (_ebf .Params [0]);if !_afeb {continue ;};_ggbf ,_afb :=_ged .GetResourcesXObject ();if !_afb {continue ;};for _ ,_dfd :=range _ggbf .Keys (){_cgg ,_ebb :=_fc .GetStream (_ggbf .Get (_dfd ));if !_ebb {continue ;};_bcf ,_ebb :=_fc .GetDict (_cgg .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); -if !_ebb {continue ;};_fca ,_ebb :=_fc .GetDict (_bcf .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_ebb {continue ;};for _ ,_ddd :=range _fca .Keys (){_bcc ,_dbf :=_fc .GetDict (_fca .Get (_ddd ));if !_dbf {continue ;};_bfg :=_fbf (_bcc ); -if _bfg !=nil {continue ;};};};};};};return nil ;}; - -// Profile1B is the implementation of the PDF/A-1B standard profile. -// Implements model.StandardImplementer, Profile interfaces. -type Profile1B struct{profile1 };func _ebefg (_deabc *_b .CompliancePdfReader )(_adeba []ViolatedRule ){var _dfcfc ,_addf bool ;_cbga :=func ()bool {return _dfcfc &&_addf };for _ ,_fcba :=range _deabc .GetObjectNums (){_cfg ,_dafbd :=_deabc .GetIndirectObjectByNumber (_fcba ); -if _dafbd !=nil {_cf .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0025\u0064\u0020fa\u0069\u006c\u0065d\u003a \u0025\u0076",_fcba ,_dafbd ); -continue ;};_fdced ,_gggf :=_fc .GetDict (_cfg );if !_gggf {continue ;};_ebcgf ,_gggf :=_fc .GetName (_fdced .Get ("\u0054\u0079\u0070\u0065"));if !_gggf {continue ;};if *_ebcgf !="\u0041\u0063\u0074\u0069\u006f\u006e"{continue ;};_edda ,_gggf :=_fc .GetName (_fdced .Get ("\u0053")); -if !_gggf {if !_dfcfc {_adeba =append (_adeba ,_fe ("\u0036.\u0035\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004caun\u0063\u0068\u002c\u0020S\u006f\u0075\u006e\u0064,\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046\u006f\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044a\u0074\u0061,\u0020\u0048\u0069\u0064\u0065\u002c\u0020\u0053\u0065\u0074\u004f\u0043\u0047\u0053\u0074\u0061\u0074\u0065\u002c\u0020\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u002c\u0020T\u0072\u0061\u006e\u0073\u002c\u0020\u0047o\u0054\u006f\u0033\u0044\u0056\u0069\u0065\u0077\u0020\u0061\u006e\u0064\u0020\u004a\u0061v\u0061Sc\u0072\u0069p\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074 \u0062\u0065\u0020\u0070\u0065\u0072m\u0069\u0074\u0074\u0065\u0064\u002e \u0041\u0064d\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020t\u0068\u0065\u0020\u0064\u0065\u0070\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020\u0073\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u006f\u0070\u0020\u0061c\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070e\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_dfcfc =true ;if _cbga (){return _adeba ;};};continue ;};switch _b .PdfActionType (*_edda ){case _b .ActionTypeLaunch ,_b .ActionTypeSound ,_b .ActionTypeMovie ,_b .ActionTypeResetForm ,_b .ActionTypeImportData ,_b .ActionTypeJavaScript ,_b .ActionTypeHide ,_b .ActionTypeSetOCGState ,_b .ActionTypeRendition ,_b .ActionTypeTrans ,_b .ActionTypeGoTo3DView :if !_dfcfc {_adeba =append (_adeba ,_fe ("\u0036.\u0035\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004caun\u0063\u0068\u002c\u0020S\u006f\u0075\u006e\u0064,\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046\u006f\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044a\u0074\u0061,\u0020\u0048\u0069\u0064\u0065\u002c\u0020\u0053\u0065\u0074\u004f\u0043\u0047\u0053\u0074\u0061\u0074\u0065\u002c\u0020\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u002c\u0020T\u0072\u0061\u006e\u0073\u002c\u0020\u0047o\u0054\u006f\u0033\u0044\u0056\u0069\u0065\u0077\u0020\u0061\u006e\u0064\u0020\u004a\u0061v\u0061Sc\u0072\u0069p\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074 \u0062\u0065\u0020\u0070\u0065\u0072m\u0069\u0074\u0074\u0065\u0064\u002e \u0041\u0064d\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020t\u0068\u0065\u0020\u0064\u0065\u0070\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020\u0073\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u006f\u0070\u0020\u0061c\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070e\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_dfcfc =true ;if _cbga (){return _adeba ;};};continue ;case _b .ActionTypeNamed :if !_addf {_eafae ,_bgagc :=_fc .GetName (_fdced .Get ("\u004e"));if !_bgagc {_adeba =append (_adeba ,_fe ("\u0036.\u0035\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_addf =true ;if _cbga (){return _adeba ;};continue ;};switch *_eafae {case "\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065","\u0050\u0072\u0065\u0076\u0050\u0061\u0067\u0065","\u0046i\u0072\u0073\u0074\u0050\u0061\u0067e","\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065":default:_adeba =append (_adeba ,_fe ("\u0036.\u0035\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_addf =true ;if _cbga (){return _adeba ;};continue ;};};};};return _adeba ;};func _geaga (_dggfe *_b .CompliancePdfReader )(_cbda []ViolatedRule ){_ggcdd :=true ;_fadb ,_eegd :=_dggfe .GetCatalogMarkInfo ();if !_eegd {_ggcdd =false ;}else {_edga ,_gdgce :=_fc .GetDict (_fadb ); -if _gdgce {_gfcb ,_bbeg :=_fc .GetBool (_edga .Get ("\u004d\u0061\u0072\u006b\u0065\u0064"));if !bool (*_gfcb )||!_bbeg {_ggcdd =false ;};}else {_ggcdd =false ;};};if !_ggcdd {_cbda =append (_cbda ,_fe ("\u0036.\u0037\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006cog\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u0020M\u0061r\u006b\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061 \u004d\u0061\u0072\u006b\u0065\u0064\u0020\u0065\u006et\u0072\u0079\u0020\u0069\u006e\u0020\u0069\u0074,\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0076\u0061lu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0072\u0075\u0065")); -};_gdff ,_eegd :=_dggfe .GetCatalogStructTreeRoot ();if !_eegd {_cbda =append (_cbda ,_fe ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0020\u0073\u0074\u0072\u0075\u0063\u0074\u0075r\u0065\u0020\u006f\u0066\u0020\u0074\u0068e\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067 \u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065d \u0062\u0079\u0020a\u0020s\u0074\u0072\u0075\u0063\u0074\u0075\u0072e\u0020\u0068\u0069\u0065\u0072\u0061\u0072\u0063\u0068\u0079\u0020\u0072\u006f\u006ft\u0065\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0065\u006e\u0074r\u0079\u0020\u006f\u0066\u0020\u0074h\u0065\u0020d\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061t\u0061\u006c\u006fg \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069n\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0036\u002e")); -};_abac ,_eegd :=_fc .GetDict (_gdff );if _eegd {_gdbd ,_gfedce :=_fc .GetName (_abac .Get ("\u0052o\u006c\u0065\u004d\u0061\u0070"));if _gfedce {_cccag ,_bgcb :=_fc .GetDict (_gdbd );if _bgcb {for _ ,_cgfce :=range _cccag .Keys (){_gdaee :=_cccag .Get (_cgfce ); -if _gdaee ==nil {_cbda =append (_cbda ,_fe ("\u0036.\u0037\u002e\u0033\u002d\u0032","\u0041\u006c\u006c\u0020\u006eo\u006e\u002ds\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0073t\u0072\u0075\u0063\u0074ure\u0020\u0074\u0079\u0070\u0065s\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u006d\u0061\u0070\u0070\u0065d\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020n\u0065\u0061\u0072\u0065\u0073\u0074\u0020\u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0073\u0074a\u006ed\u0061r\u0064\u0020\u0074\u0079\u0070\u0065\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006ee\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065re\u006e\u0063e\u0020\u0039\u002e\u0037\u002e\u0034\u002c\u0020i\u006e\u0020\u0074\u0068e\u0020\u0072\u006fl\u0065\u0020\u006d\u0061p \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0066 \u0074h\u0065\u0020\u0073\u0074\u0072\u0075c\u0074\u0075r\u0065\u0020\u0074\u0072e\u0065\u0020\u0072\u006f\u006ft\u002e")); -};};};};};return _cbda ;};func _aeece (_agddc *_b .CompliancePdfReader )(_bccb []ViolatedRule ){var _gbgc ,_cedf ,_dfaa ,_gcdf bool ;_gdafa :=func ()bool {return _gbgc &&_cedf &&_dfaa &&_gcdf };_efcee ,_faee :=_eab (_agddc );var _fbbe _fa .ProfileHeader ; -if _faee {_fbbe ,_ =_fa .ParseHeader (_efcee .DestOutputProfile );};_beff :=map[_fc .PdfObject ]struct{}{};var _baed func (_egfc _b .PdfColorspace )bool ;_baed =func (_bcfbe _b .PdfColorspace )bool {switch _acfa :=_bcfbe .(type ){case *_b .PdfColorspaceDeviceGray :if !_gbgc {if !_faee {_bccb =append (_bccb ,_fe ("\u0036.\u0032\u002e\u0034\u002e\u0033\u002d4","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006f\u006e\u006c\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064 \u0069\u0066\u0020\u0061\u0020\u0064\u0065v\u0069\u0063\u0065\u0020\u0069\u006e\u0064\u0065p\u0065\u006e\u0064\u0065\u006e\u0074\u0020\u0044\u0065\u0066\u0061\u0075\u006c\u0074\u0047\u0072\u0061\u0079\u0020\u0063\u006f\u006c\u006f\u0075r \u0073\u0070\u0061\u0063\u0065\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006e \u0073\u0065\u0074\u0020\u0077\u0068\u0065n \u0074\u0068\u0065\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072a\u0079\u0020\u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0069\u0073\u0020\u0075\u0073\u0065\u0064\u002c o\u0072\u0020\u0069\u0066\u0020\u0061\u0020\u0050\u0044\u0046\u002fA\u0020\u004f\u0075tp\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u002e")); -_gbgc =true ;if _gdafa (){return true ;};};};case *_b .PdfColorspaceDeviceRGB :if !_cedf {if !_faee ||_fbbe .ColorSpace !=_fa .ColorSpaceRGB {_bccb =append (_bccb ,_fe ("\u0036.\u0032\u002e\u0034\u002e\u0033\u002d2","\u0044\u0065\u0076\u0069c\u0065\u0052\u0047\u0042\u0020\u0073\u0068\u0061\u006cl\u0020\u006f\u006e\u006c\u0079\u0020\u0062e\u0020\u0075\u0073\u0065\u0064\u0020\u0069f\u0020\u0061\u0020\u0064\u0065\u0076\u0069\u0063e\u0020\u0069n\u0064\u0065\u0070e\u006e\u0064\u0065\u006et \u0044\u0065\u0066\u0061\u0075\u006c\u0074\u0052\u0047\u0042\u0020\u0063\u006fl\u006f\u0075r\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0068\u0061\u0073\u0020b\u0065\u0065\u006e\u0020s\u0065\u0074 \u0077\u0068\u0065\u006e\u0020\u0074\u0068\u0065\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0052\u0047\u0042\u0020c\u006flou\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020i\u0073\u0020\u0075\u0073\u0065\u0064\u002c\u0020\u006f\u0072\u0020if\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044F\u002f\u0041\u0020\u004fut\u0070\u0075\u0074\u0049\u006e\u0074\u0065n\u0074\u0020t\u0068\u0061t\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0061\u006e\u0020\u0052\u0047\u0042\u0020\u0064\u0065\u0073\u0074\u0069\u006e\u0061\u0074io\u006e\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u002e")); -_cedf =true ;if _gdafa (){return true ;};};};case *_b .PdfColorspaceDeviceCMYK :if !_dfaa {if !_faee ||_fbbe .ColorSpace !=_fa .ColorSpaceCMYK {_bccb =append (_bccb ,_fe ("\u0036.\u0032\u002e\u0034\u002e\u0033\u002d3","\u0044e\u0076\u0069c\u0065\u0043\u004d\u0059\u004b\u0020\u0073hal\u006c\u0020\u006f\u006e\u006c\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0069\u0066\u0020\u0061\u0020\u0064\u0065\u0076\u0069\u0063\u0065\u0020\u0069\u006e\u0064\u0065\u0070\u0065\u006e\u0064\u0065\u006e\u0074\u0020\u0044ef\u0061\u0075\u006c\u0074\u0043\u004d\u0059K\u0020\u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0068\u0061s\u0020\u0062\u0065\u0065\u006e \u0073\u0065\u0074\u0020\u006fr \u0069\u0066\u0020\u0061\u0020\u0044e\u0076\u0069\u0063\u0065\u004e\u002d\u0062\u0061\u0073\u0065\u0064\u0020\u0044\u0065f\u0061\u0075\u006c\u0074\u0043\u004d\u0059\u004b\u0020c\u006f\u006c\u006f\u0075r\u0020\u0073\u0070\u0061\u0063e\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006e\u0020\u0073\u0065\u0074\u0020\u0077\u0068\u0065\u006e\u0020\u0074h\u0065\u0020\u0044\u0065\u0076\u0069c\u0065\u0043\u004d\u0059\u004b\u0020c\u006f\u006c\u006fu\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0069\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u006f\u0072\u0020t\u0068\u0065\u0020\u0066\u0069l\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0061\u0020\u0043\u004d\u0059\u004b\u0020d\u0065\u0073\u0074\u0069\u006e\u0061t\u0069\u006f\u006e\u0020\u0070r\u006f\u0066\u0069\u006c\u0065\u002e")); -_dfaa =true ;if _gdafa (){return true ;};};};case *_b .PdfColorspaceICCBased :if !_gcdf {_cafgf ,_ebdfb :=_fa .ParseHeader (_acfa .Data );if _ebdfb !=nil {_cf .Log .Debug ("\u0070\u0061\u0072si\u006e\u0067\u0020\u0049\u0043\u0043\u0042\u0061\u0073e\u0064 \u0068e\u0061d\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ebdfb ); -_bccb =append (_bccb ,func ()ViolatedRule {return _fe ("\u0036.\u0032\u002e\u0034\u002e\u0032\u002d1","\u0054\u0068e\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0074\u0068\u0061\u0074\u0020\u0066o\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0073\u0074r\u0065\u0061\u006d o\u0066\u0020\u0061\u006e\u0020\u0049C\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006fl\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0049\u0043\u0043.\u0031\u003a\u0031\u0039\u0039\u0038-\u0030\u0039,\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0031\u002d\u00312\u002c\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0033\u002d\u0030\u0039\u0020\u006f\u0072\u0020I\u0053\u004f\u0020\u0031\u0035\u0030\u0037\u0036\u002d\u0031\u002e"); -}());_gcdf =true ;if _gdafa (){return true ;};};if !_gcdf {var _ggff ,_ggcaa bool ;switch _cafgf .DeviceClass {case _fa .DeviceClassPRTR ,_fa .DeviceClassMNTR ,_fa .DeviceClassSCNR ,_fa .DeviceClassSPAC :default:_ggff =true ;};switch _cafgf .ColorSpace {case _fa .ColorSpaceRGB ,_fa .ColorSpaceCMYK ,_fa .ColorSpaceGRAY ,_fa .ColorSpaceLAB :default:_ggcaa =true ; -};if _ggff ||_ggcaa {_bccb =append (_bccb ,_fe ("\u0036.\u0032\u002e\u0034\u002e\u0032\u002d1","\u0054\u0068e\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0074\u0068\u0061\u0074\u0020\u0066o\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0073\u0074r\u0065\u0061\u006d o\u0066\u0020\u0061\u006e\u0020\u0049C\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006fl\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0049\u0043\u0043.\u0031\u003a\u0031\u0039\u0039\u0038-\u0030\u0039,\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0031\u002d\u00312\u002c\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0033\u002d\u0030\u0039\u0020\u006f\u0072\u0020I\u0053\u004f\u0020\u0031\u0035\u0030\u0037\u0036\u002d\u0031\u002e")); -_gcdf =true ;if _gdafa (){return true ;};};};};if _acfa .Alternate !=nil {return _baed (_acfa .Alternate );};};return false ;};for _ ,_bdfg :=range _agddc .GetObjectNums (){_fecbg ,_bfcf :=_agddc .GetIndirectObjectByNumber (_bdfg );if _bfcf !=nil {continue ; -};_cebag ,_dbab :=_fc .GetStream (_fecbg );if !_dbab {continue ;};_acceb ,_dbab :=_fc .GetName (_cebag .Get ("\u0054\u0079\u0070\u0065"));if !_dbab ||_acceb .String ()!="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_cebe ,_dbab :=_fc .GetName (_cebag .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -if !_dbab {continue ;};_beff [_cebag ]=struct{}{};switch _cebe .String (){case "\u0049\u006d\u0061g\u0065":_ceade ,_faab :=_b .NewXObjectImageFromStream (_cebag );if _faab !=nil {continue ;};_beff [_cebag ]=struct{}{};if _baed (_ceade .ColorSpace ){return _bccb ; -};case "\u0046\u006f\u0072\u006d":_aebb ,_bbfc :=_fc .GetDict (_cebag .Get ("\u0047\u0072\u006fu\u0070"));if !_bbfc {continue ;};_fffef :=_aebb .Get ("\u0043\u0053");if _fffef ==nil {continue ;};_dfcf ,_ddfc :=_b .NewPdfColorspaceFromPdfObject (_fffef ); -if _ddfc !=nil {continue ;};if _baed (_dfcf ){return _bccb ;};};};for _ ,_befe :=range _agddc .PageList {_eggbc ,_fegg :=_befe .GetContentStreams ();if _fegg !=nil {continue ;};for _ ,_cecg :=range _eggbc {_cbad ,_debbb :=_fbg .NewContentStreamParser (_cecg ).Parse (); -if _debbb !=nil {continue ;};for _ ,_cbdg :=range *_cbad {if len (_cbdg .Params )> 1{continue ;};switch _cbdg .Operand {case "\u0042\u0049":_gccdfa ,_bdde :=_cbdg .Params [0].(*_fbg .ContentStreamInlineImage );if !_bdde {continue ;};_fbee ,_fdfc :=_gccdfa .GetColorSpace (_befe .Resources ); -if _fdfc !=nil {continue ;};if _baed (_fbee ){return _bccb ;};case "\u0044\u006f":_caafg ,_aafc :=_fc .GetName (_cbdg .Params [0]);if !_aafc {continue ;};_bggdg ,_gbea :=_befe .Resources .GetXObjectByName (*_caafg );if _ ,_acgc :=_beff [_bggdg ];_acgc {continue ; -};switch _gbea {case _b .XObjectTypeImage :_abaa ,_edgf :=_b .NewXObjectImageFromStream (_bggdg );if _edgf !=nil {continue ;};_beff [_bggdg ]=struct{}{};if _baed (_abaa .ColorSpace ){return _bccb ;};case _b .XObjectTypeForm :_edae ,_geeg :=_fc .GetDict (_bggdg .Get ("\u0047\u0072\u006fu\u0070")); -if !_geeg {continue ;};_ffed ,_geeg :=_fc .GetName (_edae .Get ("\u0043\u0053"));if !_geeg {continue ;};_bbaea ,_abdfc :=_b .NewPdfColorspaceFromPdfObject (_ffed );if _abdfc !=nil {continue ;};_beff [_bggdg ]=struct{}{};if _baed (_bbaea ){return _bccb ; -};};};};};};return _bccb ;};func _fcccd (_ggbec *_b .PdfInfo ,_dcgb *_fg .Document )bool {_gegf ,_dcfb :=_dcgb .GetPdfInfo ();if !_dcfb {return false ;};if _gegf .InfoDict ==nil {return false ;};_ccbac ,_eadb :=_b .NewPdfInfoFromObject (_gegf .InfoDict ); -if _eadb !=nil {return false ;};if _ggbec .Creator !=nil {if _ccbac .Creator ==nil ||_ccbac .Creator .String ()!=_ggbec .Creator .String (){return false ;};};if _ggbec .CreationDate !=nil {if _ccbac .CreationDate ==nil ||!_ccbac .CreationDate .ToGoTime ().Equal (_ggbec .CreationDate .ToGoTime ()){return false ; -};};if _ggbec .ModifiedDate !=nil {if _ccbac .ModifiedDate ==nil ||!_ccbac .ModifiedDate .ToGoTime ().Equal (_ggbec .ModifiedDate .ToGoTime ()){return false ;};};if _ggbec .Producer !=nil {if _ccbac .Producer ==nil ||_ccbac .Producer .String ()!=_ggbec .Producer .String (){return false ; -};};if _ggbec .Keywords !=nil {if _ccbac .Keywords ==nil ||_ccbac .Keywords .String ()!=_ggbec .Keywords .String (){return false ;};};if _ggbec .Trapped !=nil {if _ccbac .Trapped ==nil {return false ;};switch _ggbec .Trapped .String (){case "\u0054\u0072\u0075\u0065":if _ccbac .Trapped .String ()!="\u0054\u0072\u0075\u0065"{return false ; -};case "\u0046\u0061\u006cs\u0065":if _ccbac .Trapped .String ()!="\u0046\u0061\u006cs\u0065"{return false ;};default:if _ccbac .Trapped .String ()!="\u0046\u0061\u006cs\u0065"{return false ;};};};if _ggbec .Title !=nil {if _ccbac .Title ==nil ||_ccbac .Title .String ()!=_ggbec .Title .String (){return false ; -};};if _ggbec .Subject !=nil {if _ccbac .Subject ==nil ||_ccbac .Subject .String ()!=_ggbec .Subject .String (){return false ;};};return true ;};func _cdfc (_dgbb *_b .CompliancePdfReader )(_gfef []ViolatedRule ){var (_ebee ,_becf ,_ecbd ,_bcee ,_afecb bool ; -_gfcc func (_fc .PdfObject ););_gfcc =func (_dcaag _fc .PdfObject ){switch _dgea :=_dcaag .(type ){case *_fc .PdfObjectInteger :if !_ebee &&(int64 (*_dgea )> _f .MaxInt32 ||int64 (*_dgea )< -_f .MaxInt32 ){_gfef =append (_gfef ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0031","L\u0061\u0072\u0067e\u0073\u0074\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0032\u002c\u0031\u0034\u0037,\u0034\u0038\u0033,\u0036\u0034\u0037\u002e\u0020\u0053\u006d\u0061\u006c\u006c\u0065\u0073\u0074 \u0069\u006e\u0074\u0065g\u0065\u0072\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u002d\u0032\u002c\u0031\u0034\u0037\u002c\u0034\u0038\u0033,\u0036\u0034\u0038\u002e")); -_ebee =true ;};case *_fc .PdfObjectFloat :if !_becf &&(_f .Abs (float64 (*_dgea ))> _f .MaxFloat32 ){_gfef =append (_gfef ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0032","\u0041 \u0063\u006f\u006e\u0066orm\u0069\u006e\u0067\u0020f\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0061\u006c\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u006f\u0075\u0074\u0073\u0069de\u0020\u0074\u0068e\u0020\u0072\u0061\u006e\u0067e\u0020o\u0066\u0020\u002b\u002f\u002d\u0033\u002e\u0034\u00303\u0020\u0078\u0020\u0031\u0030\u005e\u0033\u0038\u002e")); -};case *_fc .PdfObjectString :if !_ecbd &&len ([]byte (_dgea .Str ()))> 32767{_gfef =append (_gfef ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0033","M\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006c\u0065n\u0067\u0074\u0068\u0020\u006f\u0066\u0020a \u0073\u0074\u0072\u0069n\u0067\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074es\u0029\u0020i\u0073\u0020\u0033\u0032\u0037\u0036\u0037\u002e")); -_ecbd =true ;};case *_fc .PdfObjectName :if !_bcee &&len ([]byte (*_dgea ))> 127{_gfef =append (_gfef ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0034","\u004d\u0061\u0078\u0069\u006d\u0075\u006d \u006c\u0065\u006eg\u0074\u0068\u0020\u006ff\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074\u0065\u0073\u0029\u0020\u0069\u0073\u0020\u0031\u0032\u0037\u002e")); -_bcee =true ;};case *_fc .PdfObjectArray :for _ ,_deadd :=range _dgea .Elements (){_gfcc (_deadd );};if !_afecb &&(_dgea .Len ()==4||_dgea .Len ()==5){_edag ,_bedg :=_fc .GetName (_dgea .Get (0));if !_bedg {return ;};if *_edag !="\u0044e\u0076\u0069\u0063\u0065\u004e"{return ; -};_dfdce :=_dgea .Get (1);_dfdce =_fc .TraceToDirectObject (_dfdce );_ffdc ,_bedg :=_fc .GetArray (_dfdce );if !_bedg {return ;};if _ffdc .Len ()> 32{_gfef =append (_gfef ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0039","\u004d\u0061\u0078\u0069\u006d\u0075\u006d \u006e\u0075\u006db\u0065\u0072\u0020\u006ff\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u004e\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0069\u0073\u0020\u0033\u0032\u002e")); -_afecb =true ;};};case *_fc .PdfObjectDictionary :_acdc :=_dgea .Keys ();for _cafge ,_efac :=range _acdc {_gfcc (&_acdc [_cafge ]);_gfcc (_dgea .Get (_efac ));};case *_fc .PdfObjectStream :_gfcc (_dgea .PdfObjectDictionary );case *_fc .PdfObjectStreams :for _ ,_gaeb :=range _dgea .Elements (){_gfcc (_gaeb ); -};case *_fc .PdfObjectReference :_gfcc (_dgea .Resolve ());};};_dgfe :=_dgbb .GetObjectNums ();if len (_dgfe )> 8388607{_gfef =append (_gfef ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0037","\u004d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020in\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0073 \u0069\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u00208\u002c\u0033\u0038\u0038\u002c\u0036\u0030\u0037\u002e")); -};for _ ,_agab :=range _dgfe {_fecec ,_dceg :=_dgbb .GetIndirectObjectByNumber (_agab );if _dceg !=nil {continue ;};_ebbg :=_fc .TraceToDirectObject (_fecec );_gfcc (_ebbg );};return _gfef ;};func _dbdf (_ddeeg *_fc .PdfObjectDictionary ,_feee map[*_fc .PdfObjectStream ][]byte ,_baac map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_ecaag ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0034"; -_ccbe ="\u0046\u006f\u0072\u0020\u0074\u0068\u006fs\u0065\u0020\u0043\u004d\u0061\u0070\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0061\u0072e\u0020\u0065m\u0062\u0065\u0064de\u0064\u002c\u0020\u0074\u0068\u0065\u0020\u0069\u006et\u0065\u0067\u0065\u0072 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0057\u004d\u006f\u0064\u0065\u0020\u0065\u006e\u0074r\u0079\u0020i\u006e t\u0068\u0065\u0020CM\u0061\u0070\u0020\u0064\u0069\u0063\u0074\u0069o\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c\u0020\u0074\u006f \u0074h\u0065\u0020\u0057\u004d\u006f\u0064e\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064ed\u0020\u0043\u004d\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e"; -);var _cgdcb string ;if _cadc ,_cfeb :=_fc .GetName (_ddeeg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cfeb {_cgdcb =_cadc .String ();};if _cgdcb !="\u0054\u0079\u0070e\u0030"{return _da ;};_cgac :=_ddeeg .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -if _ ,_gdbf :=_fc .GetName (_cgac );_gdbf {return _da ;};_aedg ,_bdag :=_fc .GetStream (_cgac );if !_bdag {return _fe (_ecaag ,_ccbe );};_fbag ,_bgdc :=_fgfdc (_aedg ,_feee ,_baac );if _bgdc !=nil {return _fe (_ecaag ,_ccbe );};_fgfgd ,_fcef :=_fc .GetIntVal (_aedg .Get ("\u0057\u004d\u006fd\u0065")); -_fdggca ,_ccdfe :=_fbag .WMode ();if _fcef &&_ccdfe {if _fdggca !=_fgfgd {return _fe (_ecaag ,_ccbe );};};if (_fcef &&!_ccdfe )||(!_fcef &&_ccdfe ){return _fe (_ecaag ,_ccbe );};return _da ;};func _aaae (_deba *_b .CompliancePdfReader )ViolatedRule {return _da }; -type documentColorspaceOptimizeFunc func (_fee *_ag .Document ,_faea []*_ag .Image )error ;func _adfdb (_cadg *_b .CompliancePdfReader )(_abaf ViolatedRule ){for _ ,_dgcf :=range _cadg .GetObjectNums (){_afbfd ,_eegeb :=_cadg .GetIndirectObjectByNumber (_dgcf ); -if _eegeb !=nil {continue ;};_cabcb ,_cdacf :=_fc .GetStream (_afbfd );if !_cdacf {continue ;};_dfege ,_cdacf :=_fc .GetName (_cabcb .Get ("\u0054\u0079\u0070\u0065"));if !_cdacf {continue ;};if *_dfege !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ; -};_ ,_cdacf =_fc .GetName (_cabcb .Get ("\u004f\u0050\u0049"));if _cdacf {return _fe ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072m\u0020\u0058\u004f\u0062\u006a\u0065c\u0074\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u003a \u002d\u0020\u0074\u0068\u0065\u0020O\u0050\u0049\u0020\u006b\u0065\u0079\u003b \u002d\u0020\u0074\u0068e \u0053u\u0062\u0074\u0079\u0070\u0065\u0032 ke\u0079 \u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061l\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u003b\u0020\u002d \u0074\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); -};_cbfd ,_cdacf :=_fc .GetName (_cabcb .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032"));if !_cdacf {continue ;};if *_cbfd =="\u0050\u0053"{return _fe ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072m\u0020\u0058\u004f\u0062\u006a\u0065c\u0074\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u003a \u002d\u0020\u0074\u0068\u0065\u0020O\u0050\u0049\u0020\u006b\u0065\u0079\u003b \u002d\u0020\u0074\u0068e \u0053u\u0062\u0074\u0079\u0070\u0065\u0032 ke\u0079 \u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061l\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u003b\u0020\u002d \u0074\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); -};if _cabcb .Get ("\u0050\u0053")!=nil {return _fe ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072m\u0020\u0058\u004f\u0062\u006a\u0065c\u0074\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u003a \u002d\u0020\u0074\u0068\u0065\u0020O\u0050\u0049\u0020\u006b\u0065\u0079\u003b \u002d\u0020\u0074\u0068e \u0053u\u0062\u0074\u0079\u0070\u0065\u0032 ke\u0079 \u0077\u0069t\u0068\u0020\u0061\u0020\u0076\u0061l\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u003b\u0020\u002d \u0074\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); -};};return _abaf ;};type pageColorspaceOptimizeFunc func (_gbb *_ag .Document ,_baf *_ag .Page ,_bbc []*_ag .Image )error ;func _debf (_dcg *_ag .Document ,_cee int ){if _dcg .Version .Major ==0{_dcg .Version .Major =1;};if _dcg .Version .Minor < _cee {_dcg .Version .Minor =_cee ; -};};func _bcec (_fgbb *_b .CompliancePdfReader )(_bebd []ViolatedRule ){_aafed ,_bab :=_faac (_fgbb );if !_bab {return _bebd ;};_accb :=_fe ("\u0036.\u0032\u002e\u0032\u002d\u0031","\u0041\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074e\u006e\u0074\u0020\u0069\u0073\u0020a\u006e \u004f\u0075\u0074\u0070\u0075\u0074\u0049n\u0074\u0065\u006e\u0074\u0020\u0064i\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0062y\u0020\u0050\u0044F\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0031\u0030.4\u002c\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0073 \u0069\u006e\u0063\u006c\u0075\u0064e\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0027\u0073\u0020O\u0075\u0074p\u0075\u0074I\u006e\u0074\u0065\u006e\u0074\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u0020a\u006e\u0064\u0020h\u0061\u0073\u0020\u0047\u0054\u0053\u005f\u0050\u0044\u0046\u0041\u0031\u0020\u0061\u0073 \u0074\u0068\u0065\u0020\u0076a\u006c\u0075e\u0020\u006f\u0066\u0020i\u0074\u0073 \u0053\u0020\u006b\u0065\u0079\u0020\u0061\u006e\u0064\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020I\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006ce\u0020s\u0074\u0072\u0065\u0061\u006d \u0061\u0073\u0020\u0074h\u0065\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0074\u0073\u0020\u0044\u0065\u0073t\u004f\u0075t\u0070\u0075\u0074P\u0072\u006f\u0066\u0069\u006c\u0065 \u006b\u0065\u0079\u002e"); -_bdba ,_bab :=_fc .GetArray (_aafed .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073"));if !_bab {_bebd =append (_bebd ,_accb );return _bebd ;};_fcdc :=_fe ("\u0036.\u0032\u002e\u0032\u002d\u0032","\u0049\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065's\u0020O\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073 \u0061\u0072\u0072a\u0079\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u006d\u006f\u0072\u0065\u0020\u0074\u0068a\u006e\u0020\u006f\u006ee\u0020\u0065\u006e\u0074\u0072\u0079\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0065n\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e a \u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006cl\u0020\u0068\u0061\u0076\u0065 \u0061\u0073\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068a\u0074\u0020\u006b\u0065\u0079 \u0074\u0068\u0065\u0020\u0073\u0061\u006d\u0065\u0020\u0069\u006e\u0064\u0069\u0072\u0065c\u0074\u0020\u006fb\u006ae\u0063t\u002c\u0020\u0077h\u0069\u0063\u0068\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0061\u0020\u0076\u0061\u006c\u0069d\u0020\u0049\u0043\u0043\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0073\u0074r\u0065\u0061m\u002e"); -if _bdba .Len ()> 1{_aafb :=map[*_fc .PdfObjectDictionary ]struct{}{};for _adbd :=0;_adbd < _bdba .Len ();_adbd ++{_aefe ,_gage :=_fc .GetDict (_bdba .Get (_adbd ));if !_gage {_bebd =append (_bebd ,_accb );return _bebd ;};if _adbd ==0{_aafb [_aefe ]=struct{}{}; -continue ;};if _ ,_aaac :=_aafb [_aefe ];!_aaac {_bebd =append (_bebd ,_fcdc );break ;};};}else if _bdba .Len ()==0{_bebd =append (_bebd ,_accb );return _bebd ;};_daed ,_bab :=_fc .GetDict (_bdba .Get (0));if !_bab {_bebd =append (_bebd ,_accb );return _bebd ; -};if _bbge ,_bceg :=_fc .GetName (_daed .Get ("\u0053"));!_bceg ||(*_bbge )!="\u0047T\u0053\u005f\u0050\u0044\u0046\u00411"{_bebd =append (_bebd ,_accb );return _bebd ;};_edbb ,_gdef :=_b .NewPdfOutputIntentFromPdfObject (_daed );if _gdef !=nil {_cf .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020i\u006et\u0065\u006e\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_gdef ); -return _bebd ;};_fecg ,_gdef :=_fa .ParseHeader (_edbb .DestOutputProfile );if _gdef !=nil {_cf .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061d\u0065\u0072\u0020\u0066\u0061i\u006c\u0065d\u003a\u0020\u0025\u0076",_gdef ); -return _bebd ;};if (_fecg .DeviceClass ==_fa .DeviceClassPRTR ||_fecg .DeviceClass ==_fa .DeviceClassMNTR )&&(_fecg .ColorSpace ==_fa .ColorSpaceRGB ||_fecg .ColorSpace ==_fa .ColorSpaceCMYK ||_fecg .ColorSpace ==_fa .ColorSpaceGRAY ){return _bebd ;};_bebd =append (_bebd ,_accb ); -return _bebd ;};func _afbfb (_dbde *_b .CompliancePdfReader )(_fdfg []ViolatedRule ){_dfce :=func (_faaca *_fc .PdfObjectDictionary ,_gccde *[]string ,_fdggcaf *[]ViolatedRule )error {_ffba :=_faaca .Get ("\u004e\u0061\u006d\u0065");if _ffba ==nil ||len (_ffba .String ())==0{*_fdggcaf =append (*_fdggcaf ,_fe ("\u0036\u002e\u0039-\u0031","\u0045\u0061\u0063\u0068\u0020o\u0070\u0074\u0069\u006f\u006e\u0061l\u0020\u0063\u006f\u006e\u0074\u0065\u006et\u0020\u0063\u006fn\u0066\u0069\u0067\u0075r\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u004e\u0061\u006d\u0065\u0020\u006b\u0065\u0079\u002e")); -};for _ ,_cfaab :=range *_gccde {if _cfaab ==_ffba .String (){*_fdggcaf =append (*_fdggcaf ,_fe ("\u0036\u002e\u0039-\u0032","\u0045\u0061\u0063\u0068\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061l\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0063\u006f\u006e\u0066\u0069\u0067\u0075\u0072a\u0074\u0069\u006fn\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020N\u0061\u006d\u0065\u0020\u006b\u0065\u0079\u002c w\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020s\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0075ni\u0071\u0075\u0065 \u0061\u006d\u006f\u006e\u0067\u0073\u0074\u0020\u0061\u006c\u006c\u0020o\u0070\u0074\u0069\u006f\u006e\u0061\u006c\u0020\u0063\u006fn\u0074\u0065\u006e\u0074 \u0063\u006f\u006e\u0066\u0069\u0067u\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074i\u006fn\u0061\u0072\u0069\u0065\u0073\u0020\u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0074\u0068e\u0020\u0050\u0044\u0046\u002fA\u002d\u0032\u0020\u0066\u0069l\u0065\u002e")); -}else {*_gccde =append (*_gccde ,_ffba .String ());};};if _faaca .Get ("\u0041\u0053")!=nil {*_fdggcaf =append (*_fdggcaf ,_fe ("\u0036\u002e\u0039-\u0034","Th\u0065\u0020\u0041\u0053\u0020\u006b\u0065y \u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0061\u0070\u0070\u0065\u0061r\u0020\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061\u006c\u0020\u0063\u006f\u006et\u0065\u006e\u0074\u0020\u0063\u006fn\u0066\u0069\u0067\u0075\u0072\u0061\u0074\u0069\u006fn\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); -};return nil ;};_ebbaf ,_geeb :=_faac (_dbde );if !_geeb {return _fdfg ;};_ebegb ,_geeb :=_fc .GetDict (_ebbaf .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073"));if !_geeb {return _fdfg ;};var _dfcff []string ;_eegde ,_geeb :=_fc .GetDict (_ebegb .Get ("\u0044")); -if _geeb {_dfce (_eegde ,&_dfcff ,&_fdfg );};_gdege ,_geeb :=_fc .GetArray (_ebegb .Get ("\u0043o\u006e\u0066\u0069\u0067\u0073"));if _geeb {for _acag :=0;_acag < _gdege .Len ();_acag ++{_gfaf ,_baaca :=_fc .GetDict (_gdege .Get (_acag ));if !_baaca {continue ; -};_dfce (_gfaf ,&_dfcff ,&_fdfg );};};return _fdfg ;};func _ee ()standardType {return standardType {_bdc :2,_dc :"\u0041"}};type imageModifications struct{_ddg *colorspaceModification ;_bad _fc .StreamEncoder ;};func _aacfd (_afada *_fc .PdfObjectDictionary ,_ggfb map[*_fc .PdfObjectStream ][]byte ,_bgbd map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_cfea ="\u0046\u006f\u0072\u0020\u0061\u006e\u0079\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0063\u006f\u006d\u0070o\u0073\u0069\u0074e\u0020\u0028\u0054\u0079\u0070\u0065\u0020\u0030\u0029 \u0066\u006fn\u0074\u0020\u0077\u0069\u0074\u0068\u0069\u006e \u0061\u0020\u0063\u006fn\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f \u0065\u006e\u0074\u0072\u0079\u0020\u0069\u006e\u0020\u0069\u0074\u0073 \u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u006e\u0064\u0020\u0069\u0074\u0073\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020\u0074\u0068\u0065\u0020\u0066\u006fl\u006c\u006f\u0077\u0069\u006e\u0067\u0020\u0072\u0065l\u0061t\u0069\u006f\u006e\u0073\u0068\u0069\u0070. \u0049\u0066\u0020\u0074\u0068\u0065\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006b\u0065\u0079 \u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0054\u0079\u0070\u0065\u0020\u0030 \u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0069\u0073\u0020I\u0064\u0065n\u0074\u0069\u0074\u0079\u002d\u0048\u0020\u006f\u0072\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056\u002c\u0020\u0061\u006e\u0079\u0020v\u0061\u006c\u0075\u0065\u0073\u0020\u006f\u0066\u0020\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079\u002c\u0020\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067\u002c\u0020\u0061\u006e\u0064\u0020\u0053up\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0069n\u0020\u0074h\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f\u0020\u0065\u006e\u0074r\u0079\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044F\u006f\u006e\u0074\u002e\u0020\u004f\u0074\u0068\u0065\u0072\u0077\u0069\u0073\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0063\u006f\u0072\u0072\u0065\u0073\u0070\u006f\u006e\u0064\u0069\u006e\u0067\u0020\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079\u0020a\u006e\u0064\u0020\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067\u0020s\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0069\u006e\u0020\u0062\u006f\u0074h\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065m\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006cl\u0020\u0062\u0065\u0020i\u0064en\u0074\u0069\u0063\u0061\u006c\u002c \u0061n\u0064\u0020\u0074\u0068\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0053\u0075\u0070\u0070l\u0065\u006d\u0065\u006e\u0074 \u006b\u0065\u0079\u0020\u0069\u006e\u0020t\u0068\u0065\u0020\u0043I\u0044S\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066o\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0067re\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f t\u0068\u0065\u0020\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066o\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0043M\u0061p\u002e"; -_bebaa ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0031";);var _dcbef string ;if _egfb ,_ebgbg :=_fc .GetName (_afada .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_ebgbg {_dcbef =_egfb .String ();};if _dcbef !="\u0054\u0079\u0070e\u0030"{return _da ; -};_bccbe :=_afada .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067");if _eadbd ,_bebg :=_fc .GetName (_bccbe );_bebg {switch _eadbd .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _da ; -};_ababc ,_afede :=_gc .LoadPredefinedCMap (_eadbd .String ());if _afede !=nil {return _fe (_bebaa ,_cfea );};_dddfb :=_ababc .CIDSystemInfo ();if _dddfb .Ordering !=_dddfb .Registry {return _fe (_bebaa ,_cfea );};return _da ;};_facbfg ,_ecddd :=_fc .GetStream (_bccbe ); -if !_ecddd {return _fe (_bebaa ,_cfea );};_ffegg ,_ffggc :=_fgfdc (_facbfg ,_ggfb ,_bgbd );if _ffggc !=nil {return _fe (_bebaa ,_cfea );};_geagge :=_ffegg .CIDSystemInfo ();if _geagge .Ordering !=_geagge .Registry {return _fe (_bebaa ,_cfea );};return _da ; -};func _afcb (_eedb *_b .PdfFont ,_eedd *_fc .PdfObjectDictionary )ViolatedRule {const (_cgcb ="\u0036.\u0033\u002e\u0037\u002d\u0033";_eaag ="\u0046\u006f\u006e\u0074\u0020\u0070\u0072\u006f\u0067\u0072\u0061\u006d\u0073\u0027\u0020\u0022\u0063\u006d\u0061\u0070\u0022\u0020\u0074\u0061\u0062\u006c\u0065\u0073\u0020\u0066\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0073\u0079\u006d\u0062o\u006c\u0069c\u0020\u0054\u0072\u0075e\u0054\u0079\u0070\u0065\u0020\u0066\u006f\u006e\u0074\u0073 \u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0065\u0078\u0061\u0063\u0074\u006cy\u0020\u006f\u006ee\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u002e"; -);var _dfge string ;if _gecbf ,_adfd :=_fc .GetName (_eedd .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_adfd {_dfge =_gecbf .String ();};if _dfge !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _da ;};_cdab :=_eedb .FontDescriptor ();_gaee ,_bcb :=_fc .GetIntVal (_cdab .Flags ); -if !_bcb {_cf .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); -return _fe (_cgcb ,_eaag );};_aede :=(uint32 (_gaee )>>3)!=0;if !_aede {return _da ;};return _da ;};func _aefdd (_fcfa *_ag .Document )error {for _ ,_abc :=range _fcfa .Objects {_fecf ,_ecb :=_fc .GetDict (_abc );if !_ecb {continue ;};_aed :=_fecf .Get ("\u0054\u0079\u0070\u0065"); -if _aed ==nil {continue ;};if _gccd ,_ebec :=_fc .GetName (_aed );_ebec &&_gccd .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_fdggc ,_gdeg :=_fc .GetBool (_fecf .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073")); -if _gdeg &&bool (*_fdggc ){_fecf .Set ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073",_fc .MakeBool (false ));};if _fecf .Get ("\u0058\u0046\u0041")!=nil {_fecf .Remove ("\u0058\u0046\u0041");};};_dfcg ,_becb :=_fcfa .FindCatalog (); -if !_becb {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};if _dfcg .Object .Get ("\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067")!=nil {_dfcg .Object .Remove ("\u004e\u0065\u0065\u0064\u0073\u0052\u0065\u006e\u0064e\u0072\u0069\u006e\u0067"); -};return nil ;};func (_gf *documentImages )hasOnlyDeviceRGB ()bool {return _gf ._cff &&!_gf ._cgf &&!_gf ._ca };func _bfefb (_eafa *_b .CompliancePdfReader )(_bcegf ViolatedRule ){for _ ,_debgb :=range _eafa .GetObjectNums (){_eafb ,_ccga :=_eafa .GetIndirectObjectByNumber (_debgb ); -if _ccga !=nil {continue ;};_cffd ,_eefc :=_fc .GetStream (_eafb );if !_eefc {continue ;};_eafc ,_eefc :=_fc .GetName (_cffd .Get ("\u0054\u0079\u0070\u0065"));if !_eefc {continue ;};if *_eafc !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};if _cffd .Get ("\u0052\u0065\u0066")!=nil {return _fe ("\u0036.\u0032\u002e\u0036\u002d\u0031","\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0058O\u0062\u006a\u0065\u0063\u0074s\u002e"); -};};return _bcegf ;};func _defc (_ggbbb *_b .CompliancePdfReader )(_fafge ViolatedRule ){for _ ,_bbgb :=range _ggbbb .GetObjectNums (){_bedd ,_feded :=_ggbbb .GetIndirectObjectByNumber (_bbgb );if _feded !=nil {continue ;};_bgbae ,_abca :=_fc .GetStream (_bedd ); -if !_abca {continue ;};_bbbd ,_abca :=_fc .GetName (_bgbae .Get ("\u0054\u0079\u0070\u0065"));if !_abca {continue ;};if *_bbbd !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_gga ,_abca :=_fc .GetName (_bgbae .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -if !_abca {continue ;};if *_gga =="\u0050\u0053"{return _fe ("\u0036.\u0032\u002e\u0037\u002d\u0031","A \u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066i\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0050\u006f\u0073t\u0053c\u0072\u0069\u0070\u0074\u0020\u0058\u004f\u0062j\u0065c\u0074\u0073."); -};};return _fafge ;};func _bebf (_becc *_fc .PdfObjectDictionary )ViolatedRule {const (_dgceb ="\u0036.\u0033\u002e\u0033\u002d\u0032";_eadc ="\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0054y\u0070\u0065\u0020\u0032\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0061\u0072\u0065\u0020\u0075\u0073\u0065\u0064\u0020f\u006f\u0072 \u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067,\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0046\u006fn\u0074\u0020\u0064\u0069c\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c \u0063\u006f\u006e\u0074\u0061i\u006e\u0020\u0061\u0020\u0043\u0049\u0044\u0054\u006f\u0047\u0049D\u004d\u0061\u0070\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020a\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006d\u0061\u0070\u0070\u0069\u006e\u0067\u0020\u0066\u0072\u006f\u006d\u0020\u0043\u0049\u0044\u0073\u0020\u0074\u006f\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u0069\u006e\u0064\u0069c\u0065\u0073\u0020\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u0049d\u0065\u006e\u0074\u0069\u0074\u0079\u002c\u0020\u0061s d\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069n\u0020P\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072e\u006e\u0063\u0065\u0020\u0054a\u0062\u006c\u0065\u0020\u0035\u002e\u00313"; -);var _ddec string ;if _eegg ,_dfbd :=_fc .GetName (_becc .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_dfbd {_ddec =_eegg .String ();};if _ddec !="\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032"{return _da ;};if _becc .Get ("C\u0049\u0044\u0054\u006f\u0047\u0049\u0044\u004d\u0061\u0070")==nil {return _fe (_dgceb ,_eadc ); -};return _da ;};func _fgada (_gecge *_b .CompliancePdfReader )(_ggea ViolatedRule ){_gaec ,_cgbg :=_faac (_gecge );if !_cgbg {return _da ;};if _gaec .Get ("\u0041\u0041")!=nil {return _fe ("\u0036.\u0036\u002e\u0032\u002d\u0033","\u0054\u0068e\u0020\u0064\u006f\u0063\u0075\u006d\u0065n\u0074 \u0063\u0061\u0074a\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0041\u0020\u0065n\u0074r\u0079 \u0066\u006f\u0072 \u0061\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061\u0063\u0074i\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); -};return _da ;};func _eefe (_daabc *_b .CompliancePdfReader )(_cgde ViolatedRule ){_efaa ,_eccdeg :=_faac (_daabc );if !_eccdeg {return _da ;};_aefb ,_eccdeg :=_fc .GetDict (_efaa .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));if !_eccdeg {return _da ; -};_ffea ,_eccdeg :=_fc .GetArray (_aefb .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_eccdeg {return _da ;};for _acdg :=0;_acdg < _ffea .Len ();_acdg ++{_fdec ,_fgbdb :=_fc .GetDict (_ffea .Get (_acdg ));if !_fgbdb {continue ;};if _fdec .Get ("\u0041")!=nil {return _fe ("\u0036.\u0034\u002e\u0031\u002d\u0032","\u0041\u0020\u0046\u0069\u0065\u006c\u0064\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0041 o\u0072\u0020\u0041\u0041\u0020\u006b\u0065\u0079\u0073\u002e"); -};if _fdec .Get ("\u0041\u0041")!=nil {return _fe ("\u0036.\u0034\u002e\u0031\u002d\u0032","\u0041\u0020\u0046\u0069\u0065\u006c\u0064\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0041 o\u0072\u0020\u0041\u0041\u0020\u006b\u0065\u0079\u0073\u002e"); -};};return _da ;};func _cafc (_gddg *_b .CompliancePdfReader )(_ccbg []ViolatedRule ){_dgbc :=true ;_fgdbf ,_adgef :=_gddg .GetCatalogMarkInfo ();if !_adgef {_dgbc =false ;}else {_aeec ,_aade :=_fc .GetDict (_fgdbf );if _aade {_bebfg ,_gcba :=_fc .GetBool (_aeec .Get ("\u004d\u0061\u0072\u006b\u0065\u0064")); -if !bool (*_bebfg )||!_gcba {_dgbc =false ;};}else {_dgbc =false ;};};if !_dgbc {_ccbg =append (_ccbg ,_fe ("\u0036.\u0038\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006cog\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u0020M\u0061r\u006b\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061 \u004d\u0061\u0072\u006b\u0065\u0064\u0020\u0065\u006et\u0072\u0079\u0020\u0069\u006e\u0020\u0069\u0074,\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0076\u0061lu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0072\u0075\u0065")); -};_adfa ,_adgef :=_gddg .GetCatalogStructTreeRoot ();if !_adgef {_ccbg =append (_ccbg ,_fe ("\u0036.\u0038\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u006c\u006f\u0067\u0069\u0063\u0061\u006c\u0020\u0073\u0074\u0072\u0075\u0063\u0074\u0075r\u0065\u0020\u006f\u0066\u0020\u0074\u0068e\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067 \u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065d \u0062\u0079\u0020a\u0020s\u0074\u0072\u0075\u0063\u0074\u0075\u0072e\u0020\u0068\u0069\u0065\u0072\u0061\u0072\u0063\u0068\u0079\u0020\u0072\u006f\u006ft\u0065\u0064\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065\u0065\u0052\u006f\u006f\u0074\u0020\u0065\u006e\u0074r\u0079\u0020\u006f\u0066\u0020\u0074h\u0065\u0020d\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0063\u0061t\u0061\u006c\u006fg \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069n\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0039\u002e\u0036\u002e")); -};_dade ,_adgef :=_fc .GetDict (_adfa );if _adgef {_acdd ,_bccc :=_fc .GetName (_dade .Get ("\u0052o\u006c\u0065\u004d\u0061\u0070"));if _bccc {_fcgb ,_eccaf :=_fc .GetDict (_acdd );if _eccaf {for _ ,_bacc :=range _fcgb .Keys (){_fbdcf :=_fcgb .Get (_bacc ); -if _fbdcf ==nil {_ccbg =append (_ccbg ,_fe ("\u0036.\u0038\u002e\u0033\u002d\u0032","\u0041\u006c\u006c\u0020\u006eo\u006e\u002ds\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0073t\u0072\u0075\u0063\u0074ure\u0020\u0074\u0079\u0070\u0065s\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u006d\u0061\u0070\u0070\u0065d\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020n\u0065\u0061\u0072\u0065\u0073\u0074\u0020\u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0073\u0074a\u006ed\u0061r\u0064\u0020\u0074\u0079\u0070\u0065\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006ee\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065re\u006e\u0063e\u0020\u0039\u002e\u0037\u002e\u0034\u002c\u0020i\u006e\u0020\u0074\u0068e\u0020\u0072\u006fl\u0065\u0020\u006d\u0061p \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0066 \u0074h\u0065\u0020\u0073\u0074\u0072\u0075c\u0074\u0075r\u0065\u0020\u0074\u0072e\u0065\u0020\u0072\u006f\u006ft\u002e")); -};};};};};return _ccbg ;}; - -// ApplyStandard tries to change the content of the writer to match the PDF/A-1 standard. -// Implements model.StandardApplier. -func (_gdg *profile1 )ApplyStandard (document *_ag .Document )(_becg error ){_debf (document ,4);if _becg =_cec (document ,_gdg ._fgad .Now );_becg !=nil {return _becg ;};if _becg =_afbe (document );_becg !=nil {return _becg ;};_aced ,_ecdd :=_gfg (_gdg ._fgad .CMYKDefaultColorSpace ,_gdg ._bacb ); -_becg =_aga (document ,[]pageColorspaceOptimizeFunc {_cafd ,_aced },[]documentColorspaceOptimizeFunc {_ecdd });if _becg !=nil {return _becg ;};_fcg (document );if _becg =_cca (document ,_gdg ._bacb ._bdc );_becg !=nil {return _becg ;};if _becg =_cbb (document ); -_becg !=nil {return _becg ;};if _becg =_gefe (document );_becg !=nil {return _becg ;};if _becg =_aff (document );_becg !=nil {return _becg ;};if _becg =_be (document );_becg !=nil {return _becg ;};if _gdg ._bacb ._dc =="\u0041"{_bdgg (document );};if _becg =_dddb (document ,_gdg ._bacb ._bdc ); -_becg !=nil {return _becg ;};if _becg =_eeea (document );_becg !=nil {return _becg ;};if _bfba :=_gef (document ,_gdg ._bacb ,_gdg ._fgad .Xmp );_bfba !=nil {return _bfba ;};if _gdg ._bacb ==_de (){if _becg =_bdcc (document );_becg !=nil {return _becg ; -};};if _becg =_bcd (document );_becg !=nil {return _becg ;};return nil ;}; - -// ValidateStandard checks if provided input CompliancePdfReader matches rules that conforms PDF/A-2 standard. -func (_gcbeb *profile2 )ValidateStandard (r *_b .CompliancePdfReader )error {_ecgc :=VerificationError {ConformanceLevel :_gcbeb ._bedf ._bdc ,ConformanceVariant :_gcbeb ._bedf ._dc };if _gaceg :=_egef (r );_gaceg !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_gaceg ); -};if _fbcb :=_ecbce (r );_fbcb !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_fbcb );};if _baecf :=_cecc (r );_baecf !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_baecf );};if _bdaa :=_aeccd (r );_bdaa !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bdaa ); -};if _abfg :=_ffcac (r );_abfg !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_abfg );};if _ggbd :=_dbafa (r );len (_ggbd )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_ggbd ...);};if _dcad :=_adegd (r );len (_dcad )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_dcad ...); -};if _abfd :=_acfg (r );len (_abfd )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_abfd ...);};if _bage :=_gfbe (r );_bage !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bage );};if _addd :=_egbd (r );len (_addd )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_addd ...); -};if _bce :=_cdfc (r );len (_bce )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bce ...);};if _dfca :=_daea (r );_dfca !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_dfca );};if _feed :=_aeece (r );len (_feed )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_feed ...); -};if _agdea :=_bfdad (r );len (_agdea )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_agdea ...);};if _bfc :=_baddc (r );_bfc !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bfc );};if _abbd :=_gdga (r );len (_abbd )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_abbd ...); -};if _dgb :=_gafa (r );len (_dgb )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_dgb ...);};if _bee :=_adfdb (r );_bee !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bee );};if _cede :=_daedb (r );len (_cede )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_cede ...); -};if _bdca :=_ggdc (r ,_gcbeb ._bedf );len (_bdca )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bdca ...);};if _gcfc :=_ddfb (r );len (_gcfc )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_gcfc ...);};if _cccfe :=_eceae (r );len (_cccfe )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_cccfe ...); -};if _ebbac :=_acbf (r );len (_ebbac )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_ebbac ...);};if _ggd :=_eefe (r );_ggd !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_ggd );};if _ffge :=_ebefg (r );len (_ffge )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_ffge ...); -};if _aegb :=_gfad (r );_aegb !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_aegb );};if _bede :=_bdeec (r ,_gcbeb ._bedf ,false );len (_bede )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_bede ...);};if _gcbeb ._bedf ==_ee (){if _ffac :=_geaga (r ); -len (_ffac )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_ffac ...);};};if _eagba :=_dccbc (r );len (_eagba )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_eagba ...);};if _gcfb :=_afbfb (r );len (_gcfb )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_gcfb ...); -};if _cdbbd :=_gddac (r );len (_cdbbd )!=0{_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_cdbbd ...);};if _dcec :=_dfgfg (r );_dcec !=_da {_ecgc .ViolatedRules =append (_ecgc .ViolatedRules ,_dcec );};if len (_ecgc .ViolatedRules )> 0{_e .Slice (_ecgc .ViolatedRules ,func (_fbb ,_fabb int )bool {return _ecgc .ViolatedRules [_fbb ].RuleNo < _ecgc .ViolatedRules [_fabb ].RuleNo ; -});return _ecgc ;};return nil ;};func _bea (_dbcgg *_b .CompliancePdfReader )ViolatedRule {return _da };func _ecbce (_abec *_b .CompliancePdfReader )ViolatedRule {_bcabg :=_abec .ParserMetadata ().HeaderCommentBytes ();if _bcabg [0]> 127&&_bcabg [1]> 127&&_bcabg [2]> 127&&_bcabg [3]> 127{return _da ; -};return _fe ("\u0036.\u0031\u002e\u0032\u002d\u0032","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u006c\u0069\u006e\u0065\u0020\u0073\u0068\u0061\u006c\u006c b\u0065\u0020i\u006d\u006d\u0065\u0064\u0069a\u0074\u0065\u006c\u0079 \u0066\u006f\u006c\u006co\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0063\u006f\u006d\u006d\u0065n\u0074\u0020\u0063\u006f\u006e\u0073\u0069s\u0074\u0069\u006e\u0067\u0020o\u0066\u0020\u0061\u0020\u0025\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006fwe\u0064\u0020\u0062y\u0020a\u0074\u0009\u006c\u0065a\u0073\u0074\u0020f\u006f\u0075\u0072\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u002c\u0020e\u0061\u0063\u0068\u0020\u006f\u0066\u0020\u0077\u0068\u006f\u0073\u0065 \u0065\u006e\u0063\u006f\u0064e\u0064\u0020\u0062\u0079\u0074e\u0020\u0076\u0061\u006c\u0075\u0065s\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0064e\u0063\u0069\u006d\u0061\u006c \u0076\u0061\u006c\u0075\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0031\u0032\u0037\u002e"); -};func _ccdfg (_cefg *_b .CompliancePdfReader ,_gebbc standardType )(_bbfbd []ViolatedRule ){var _ccgc ,_gbgd ,_ddef ,_cade ,_afgd ,_dbbc ,_bgfb ,_fbfe ,_dfbe ,_gffd ,_cefe bool ;_cddb :=func ()bool {return _ccgc &&_gbgd &&_ddef &&_cade &&_afgd &&_dbbc &&_bgfb &&_fbfe &&_dfbe &&_gffd &&_cefe ; -};_baea :=map[*_fc .PdfObjectStream ]*_gc .CMap {};_fece :=map[*_fc .PdfObjectStream ][]byte {};_faga :=map[_fc .PdfObject ]*_b .PdfFont {};for _ ,_geda :=range _cefg .GetObjectNums (){_agad ,_daceg :=_cefg .GetIndirectObjectByNumber (_geda );if _daceg !=nil {continue ; -};_gffda ,_ecfe :=_fc .GetDict (_agad );if !_ecfe {continue ;};_cebg ,_ecfe :=_fc .GetName (_gffda .Get ("\u0054\u0079\u0070\u0065"));if !_ecfe {continue ;};if *_cebg !="\u0046\u006f\u006e\u0074"{continue ;};_ccbb ,_daceg :=_b .NewPdfFontFromPdfObject (_gffda ); -if _daceg !=nil {_cf .Log .Debug ("g\u0065\u0074\u0074\u0069\u006e\u0067 \u0066\u006f\u006e\u0074\u0020\u0066r\u006f\u006d\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020%\u0076",_daceg );continue ;};_faga [_gffda ]=_ccbb ; -};for _ ,_addc :=range _cefg .PageList {_eead ,_eebd :=_addc .GetContentStreams ();if _eebd !=nil {_cf .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067 \u0070\u0061\u0067\u0065\u0020\u0063o\u006e\u0074\u0065\u006e\u0074\u0020\u0073t\u0072\u0065\u0061\u006d\u0073\u0020\u0066\u0061\u0069\u006ce\u0064"); -continue ;};for _ ,_dbccb :=range _eead {_fbfgbe :=_fbg .NewContentStreamParser (_dbccb );_ggeg ,_bfbf :=_fbfgbe .Parse ();if _bfbf !=nil {_cf .Log .Debug ("\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074s\u0074r\u0065\u0061\u006d\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_bfbf ); -continue ;};var _aacg bool ;for _ ,_baecc :=range *_ggeg {if _baecc .Operand !="\u0054\u0072"{continue ;};if len (_baecc .Params )!=1{_cf .Log .Debug ("\u0069\u006e\u0076\u0061\u006ci\u0064\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054\u0072\u0027\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u002c\u0020\u0065\u0078\u0070e\u0063\u0074\u0065\u0064\u0020\u0027\u0031\u0027\u0020\u0062\u0075\u0074 \u0069\u0073\u003a\u0020\u0027\u0025d\u0027",len (_baecc .Params )); -continue ;};_fbfef ,_beeg :=_fc .GetIntVal (_baecc .Params [0]);if !_beeg {_cf .Log .Debug ("\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u006d\u006f\u0064\u0065\u0020i\u0073 \u006e\u006f\u0074\u0020\u0061\u006e\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072"); -continue ;};if _fbfef ==3{_aacg =true ;break ;};};for _ ,_beddc :=range *_ggeg {if _beddc .Operand !="\u0054\u0066"{continue ;};if len (_beddc .Params )!=2{_cf .Log .Debug ("i\u006eva\u006ci\u0064 \u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066 \u0070\u0061\u0072\u0061\u006de\u0074\u0065\u0072s\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0027\u0054f\u0027\u0020\u006fper\u0061\u006e\u0064\u002c\u0020\u0065x\u0070\u0065\u0063\u0074\u0065\u0064\u0020\u0027\u0032\u0027\u0020\u0069s\u003a \u0027\u0025\u0064\u0027",len (_beddc .Params )); -continue ;};_deed ,_cgdaf :=_fc .GetName (_beddc .Params [0]);if !_cgdaf {_cf .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a \u0054\u0066\u0020\u006f\u0070\u003d\u0025\u0073\u0020\u0047\u0065\u0074\u004ea\u006d\u0065\u0056\u0061\u006c\u0020\u0066a\u0069\u006c\u0065\u0064",_beddc ); -continue ;};_cbcd ,_aafbg :=_addc .Resources .GetFontByName (*_deed );if !_aafbg {_cf .Log .Debug ("\u0066\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");continue ;};_gfd ,_cgdaf :=_fc .GetDict (_cbcd );if !_cgdaf {_cf .Log .Debug ("\u0066\u006f\u006e\u0074 d\u0069\u0063\u0074\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -continue ;};_abab ,_cgdaf :=_faga [_gfd ];if !_cgdaf {var _badd error ;_abab ,_badd =_b .NewPdfFontFromPdfObject (_gfd );if _badd !=nil {_cf .Log .Debug ("\u0067\u0065\u0074\u0074i\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0066\u0072o\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_badd ); -continue ;};_faga [_gfd ]=_abab ;};if !_ccgc {_adgd :=_becd (_gfd ,_fece ,_baea );if _adgd !=_da {_bbfbd =append (_bbfbd ,_adgd );_ccgc =true ;if _cddb (){return _bbfbd ;};};};if !_gbgd {_abge :=_bebf (_gfd );if _abge !=_da {_bbfbd =append (_bbfbd ,_abge ); -_gbgd =true ;if _cddb (){return _bbfbd ;};};};if !_ddef {_cbgc :=_eecec (_gfd ,_fece ,_baea );if _cbgc !=_da {_bbfbd =append (_bbfbd ,_cbgc );_ddef =true ;if _cddb (){return _bbfbd ;};};};if !_cade {_dgec :=_gdce (_gfd ,_fece ,_baea );if _dgec !=_da {_bbfbd =append (_bbfbd ,_dgec ); -_cade =true ;if _cddb (){return _bbfbd ;};};};if !_afgd {_deag :=_eeeg (_abab ,_gfd ,_aacg );if _deag !=_da {_afgd =true ;_bbfbd =append (_bbfbd ,_deag );if _cddb (){return _bbfbd ;};};};if !_dbbc {_cffa :=_cagfe (_abab ,_gfd );if _cffa !=_da {_dbbc =true ; -_bbfbd =append (_bbfbd ,_cffa );if _cddb (){return _bbfbd ;};};};if !_bgfb {_cfba :=_cfag (_abab ,_gfd );if _cfba !=_da {_bgfb =true ;_bbfbd =append (_bbfbd ,_cfba );if _cddb (){return _bbfbd ;};};};if !_fbfe {_dfab :=_daae (_abab ,_gfd );if _dfab !=_da {_fbfe =true ; -_bbfbd =append (_bbfbd ,_dfab );if _cddb (){return _bbfbd ;};};};if !_dfbe {_bdad :=_aabf (_abab ,_gfd );if _bdad !=_da {_dfbe =true ;_bbfbd =append (_bbfbd ,_bdad );if _cddb (){return _bbfbd ;};};};if !_gffd {_abed :=_afcb (_abab ,_gfd );if _abed !=_da {_gffd =true ; -_bbfbd =append (_bbfbd ,_abed );if _cddb (){return _bbfbd ;};};};if !_cefe &&_gebbc ._dc =="\u0041"{_acbe :=_ebgg (_gfd ,_fece ,_baea );if _acbe !=_da {_cefe =true ;_bbfbd =append (_bbfbd ,_acbe );if _cddb (){return _bbfbd ;};};};};};};return _bbfbd ;}; -func (_eb *documentImages )hasOnlyDeviceCMYK ()bool {return _eb ._cgf &&!_eb ._cff &&!_eb ._ca };func _abea (_dfeb *_ag .Document )error {_ddb ,_adgc :=_dfeb .GetPages ();if !_adgc {return nil ;};for _ ,_cfef :=range _ddb {_adf ,_dgd :=_fc .GetArray (_cfef .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073")); -if !_dgd {continue ;};for _ ,_gffb :=range _adf .Elements (){_gffb =_fc .ResolveReference (_gffb );if _ ,_gaff :=_gffb .(*_fc .PdfObjectNull );_gaff {continue ;};_ace ,_caaa :=_fc .GetDict (_gffb );if !_caaa {continue ;};_ddf ,_ :=_fc .GetIntVal (_ace .Get ("\u0046")); -_ddf &=^(1<<0);_ddf &=^(1<<1);_ddf &=^(1<<5);_ddf &=^(1<<8);_ddf |=1<<2;_ace .Set ("\u0046",_fc .MakeInteger (int64 (_ddf )));_fbfg :=false ;if _cgdc :=_ace .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_cgdc !=nil {_bcgd ,_ceee :=_fc .GetName (_cgdc ); -if _ceee &&_bcgd .String ()=="\u0057\u0069\u0064\u0067\u0065\u0074"{_fbfg =true ;if _ace .Get ("\u0041\u0041")!=nil {_ace .Remove ("\u0041\u0041");};if _ace .Get ("\u0041")!=nil {_ace .Remove ("\u0041");};};if _ceee &&_bcgd .String ()=="\u0054\u0065\u0078\u0074"{_ffbd ,_ :=_fc .GetIntVal (_ace .Get ("\u0046")); -_ffbd |=1<<3;_ffbd |=1<<4;_ace .Set ("\u0046",_fc .MakeInteger (int64 (_ffbd )));};};_dacef ,_caaa :=_fc .GetDict (_ace .Get ("\u0041\u0050"));if _caaa {_ece :=_dacef .Get ("\u004e");if _ece ==nil {continue ;};if len (_dacef .Keys ())> 1{_dacef .Clear (); -_dacef .Set ("\u004e",_ece );};if _fbfg {_ebg ,_gcgf :=_fc .GetName (_ace .Get ("\u0046\u0054"));if _gcgf &&*_ebg =="\u0042\u0074\u006e"{continue ;};};};};};return nil ;};func _gafa (_afadc *_b .CompliancePdfReader )(_efgc []ViolatedRule ){return _efgc }; -func _fcg (_fbc *_ag .Document ){if _fbc .ID [0]!=""&&_fbc .ID [1]!=""{return ;};_fbc .UseHashBasedID =true ;}; - -// VerificationError is the PDF/A verification error structure, that contains all violated rules. -type VerificationError struct{ - -// ViolatedRules are the rules that were violated during error verification. -ViolatedRules []ViolatedRule ; - -// ConformanceLevel defines the standard on verification failed. -ConformanceLevel int ; - -// ConformanceVariant is the standard variant used on verification. -ConformanceVariant string ;};func (_af standardType )String ()string {return _g .Sprintf ("\u0050\u0044\u0046\u002f\u0041\u002d\u0025\u0064\u0025\u0073",_af ._bdc ,_af ._dc );};func _eage (_agafa *_b .CompliancePdfReader )(_ggdf []ViolatedRule ){var (_abdb ,_egcc ,_daeg ,_eadf ,_cccg ,_afef ,_bcga bool ; -_dfdc func (_fc .PdfObject ););_dfdc =func (_eca _fc .PdfObject ){switch _eggf :=_eca .(type ){case *_fc .PdfObjectInteger :if !_abdb &&(int64 (*_eggf )> _f .MaxInt32 ||int64 (*_eggf )< -_f .MaxInt32 ){_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0031","L\u0061\u0072\u0067e\u0073\u0074\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0032\u002c\u0031\u0034\u0037,\u0034\u0038\u0033,\u0036\u0034\u0037\u002e\u0020\u0053\u006d\u0061\u006c\u006c\u0065\u0073\u0074 \u0069\u006e\u0074\u0065g\u0065\u0072\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u002d\u0032\u002c\u0031\u0034\u0037\u002c\u0034\u0038\u0033,\u0036\u0034\u0038\u002e")); -_abdb =true ;};case *_fc .PdfObjectFloat :if !_egcc &&(_f .Abs (float64 (*_eggf ))> 32767.0){_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0032","\u0041\u0062\u0073\u006f\u006c\u0075\u0074\u0065\u0020\u0072\u0065\u0061\u006c\u0020\u0076\u0061\u006c\u0075\u0065\u0020m\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u006c\u0065s\u0073\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0020\u0065\u0071\u0075a\u006c\u0020\u0074\u006f\u0020\u00332\u0037\u0036\u0037.\u0030\u002e")); -};case *_fc .PdfObjectString :if !_daeg &&len ([]byte (_eggf .Str ()))> 65535{_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0033","M\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006c\u0065n\u0067\u0074\u0068\u0020\u006f\u0066\u0020a \u0073\u0074\u0072\u0069n\u0067\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074es\u0029\u0020i\u0073\u0020\u0036\u0035\u0035\u0033\u0035\u002e")); -_daeg =true ;};case *_fc .PdfObjectName :if !_eadf &&len ([]byte (*_eggf ))> 127{_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0034","\u004d\u0061\u0078\u0069\u006d\u0075\u006d \u006c\u0065\u006eg\u0074\u0068\u0020\u006ff\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074\u0065\u0073\u0029\u0020\u0069\u0073\u0020\u0031\u0032\u0037\u002e")); -_eadf =true ;};case *_fc .PdfObjectArray :if !_cccg &&_eggf .Len ()> 8191{_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0035","\u004d\u0061\u0078\u0069\u006d\u0075m\u0020\u006c\u0065\u006e\u0067\u0074\u0068\u0020\u006f\u0066\u0020\u0061\u006e\u0020\u0061\u0072\u0072\u0061\u0079\u0020(\u0069\u006e\u0020\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0073\u0029\u0020\u0069s\u00208\u0031\u0039\u0031\u002e")); -_cccg =true ;};for _ ,_acef :=range _eggf .Elements (){_dfdc (_acef );};if !_bcga &&(_eggf .Len ()==4||_eggf .Len ()==5){_gacf ,_daef :=_fc .GetName (_eggf .Get (0));if !_daef {return ;};if *_gacf !="\u0044e\u0076\u0069\u0063\u0065\u004e"{return ;};_aedb :=_eggf .Get (1); -_aedb =_fc .TraceToDirectObject (_aedb );_eac ,_daef :=_fc .GetArray (_aedb );if !_daef {return ;};if _eac .Len ()> 8{_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0039","\u004d\u0061\u0078i\u006d\u0075\u006d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u004e\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065n\u0074\u0073\u0020\u0069\u0073\u0020\u0038\u002e")); -_bcga =true ;};};case *_fc .PdfObjectDictionary :_eccde :=_eggf .Keys ();if !_afef &&len (_eccde )> 4095{_ggdf =append (_ggdf ,_fe ("\u0036.\u0031\u002e\u0031\u0032\u002d\u00311","\u004d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u0063\u0061\u0070\u0061\u0063\u0069\u0074y\u0020\u006f\u0066\u0020\u0061\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0028\u0069\u006e\u0020\u0065\u006e\u0074\u0072\u0069es\u0029\u0020\u0069\u0073\u0020\u0034\u0030\u0039\u0035\u002e")); -_afef =true ;};for _gabb ,_fbgca :=range _eccde {_dfdc (&_eccde [_gabb ]);_dfdc (_eggf .Get (_fbgca ));};case *_fc .PdfObjectStream :_dfdc (_eggf .PdfObjectDictionary );case *_fc .PdfObjectStreams :for _ ,_cbbe :=range _eggf .Elements (){_dfdc (_cbbe ); -};case *_fc .PdfObjectReference :_dfdc (_eggf .Resolve ());};};_daec :=_agafa .GetObjectNums ();if len (_daec )> 8388607{_ggdf =append (_ggdf ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0037","\u004d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020in\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0073 \u0069\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u00208\u002c\u0033\u0038\u0038\u002c\u0036\u0030\u0037\u002e")); -};for _ ,_ebdf :=range _daec {_ccca ,_dbca :=_agafa .GetIndirectObjectByNumber (_ebdf );if _dbca !=nil {continue ;};_ceegd :=_fc .TraceToDirectObject (_ccca );_dfdc (_ceegd );};return _ggdf ;}; - -// Conformance gets the PDF/A conformance. -func (_eggb *profile1 )Conformance ()string {return _eggb ._bacb ._dc };func _fcd ()standardType {return standardType {_bdc :2,_dc :"\u0055"}};func _aabg (_cefd ,_dff ,_aacf ,_ede string )(string ,bool ){_fgba :=_ed .Index (_cefd ,_dff );if _fgba ==-1{return "",false ; -};_efcf :=_ed .Index (_cefd ,_aacf );if _efcf ==-1{return "",false ;};if _efcf < _fgba {return "",false ;};return _cefd [:_fgba ]+_dff +_ede +_cefd [_efcf :],true ;};func _fbgd (_ggbfb *_b .CompliancePdfReader )ViolatedRule {if _ggbfb .ParserMetadata ().HasDataAfterEOF (){return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0033","\u004e\u006f\u0020\u0064\u0061ta\u0020\u0073h\u0061\u006c\u006c\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0020\u0074\u0068\u0065\u0020\u006c\u0061\u0073\u0074\u0020\u0065\u006e\u0064\u002d\u006f\u0066\u002d\u0066\u0069l\u0065\u0020\u006da\u0072\u006b\u0065\u0072\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0061 \u0073\u0069\u006e\u0067\u006ce\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061\u006c \u0065\u006ed\u002do\u0066\u002d\u006c\u0069\u006e\u0065\u0020m\u0061\u0072\u006b\u0065\u0072\u002e"); -};return _da ;};type imageInfo struct{ColorSpace _fc .PdfObjectName ;BitsPerComponent int ;ColorComponents int ;Width int ;Height int ;Stream *_fc .PdfObjectStream ;_gcg bool ;};func _gfbe (_egee *_b .CompliancePdfReader )ViolatedRule {return _da };func _egef (_egbf *_b .CompliancePdfReader )ViolatedRule {if _egbf .ParserMetadata ().HeaderPosition ()!=0{return _fe ("\u0036.\u0031\u002e\u0032\u002d\u0031","h\u0065\u0061\u0064\u0065\u0072\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u0020\u0069\u0073\u0020n\u006f\u0074\u0020\u0061\u0074\u0020\u0074\u0068\u0065\u0020fi\u0072\u0073\u0074 \u0062y\u0074\u0065"); -};if _egbf .PdfVersion ().Major !=1{return _fe ("\u0036.\u0031\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069l\u0065\u0020\u0068\u0065\u0061\u0064e\u0072 \u0073\u0068\u0061\u006c\u006c\u0020c\u006f\u006e\u0073\u0069s\u0074 \u006f\u0066\u0020\u201c%\u0050\u0044\u0046\u002d\u0031\u002e\u006e\u201d\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065 \u0045\u004f\u004c\u0020ma\u0072\u006b\u0065\u0072\u002c \u0077\u0068\u0065\u0072\u0065\u0020\u0027\u006e\u0027\u0020\u0069s\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065\u0020\u0064\u0069\u0067\u0069t\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u0062\u0065\u0074\u0077\u0065\u0065\u006e\u0020\u0030\u0020(\u0033\u0030h\u0029\u0020\u0061\u006e\u0064\u0020\u0037\u0020\u0028\u0033\u0037\u0068\u0029"); -};if _egbf .PdfVersion ().Minor < 0||_egbf .PdfVersion ().Minor > 7{return _fe ("\u0036.\u0031\u002e\u0032\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069l\u0065\u0020\u0068\u0065\u0061\u0064e\u0072 \u0073\u0068\u0061\u006c\u006c\u0020c\u006f\u006e\u0073\u0069s\u0074 \u006f\u0066\u0020\u201c%\u0050\u0044\u0046\u002d\u0031\u002e\u006e\u201d\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065 \u0045\u004f\u004c\u0020ma\u0072\u006b\u0065\u0072\u002c \u0077\u0068\u0065\u0072\u0065\u0020\u0027\u006e\u0027\u0020\u0069s\u0020\u0061\u0020\u0073\u0069\u006e\u0067\u006c\u0065\u0020\u0064\u0069\u0067\u0069t\u0020\u006e\u0075\u006d\u0062e\u0072\u0020\u0062\u0065\u0074\u0077\u0065\u0065\u006e\u0020\u0030\u0020(\u0033\u0030h\u0029\u0020\u0061\u006e\u0064\u0020\u0037\u0020\u0028\u0033\u0037\u0068\u0029"); -};return _da ;}; +// Profile is the model.StandardImplementer enhanced by the information about the profile conformance level. +type Profile interface{_da .StandardImplementer ;Conformance ()string ;Part ()int ;};func _ecgd (_caae *_ea .Document ){_gafb ,_dabd :=_caae .FindCatalog ();if !_dabd {return ;};_bfdc ,_dabd :=_gafb .GetMarkInfo ();if !_dabd {_bfdc =_ad .MakeDict ();}; +_dgdf ,_dabd :=_ad .GetBool (_bfdc .Get ("\u004d\u0061\u0072\u006b\u0065\u0064"));if !_dabd ||!bool (*_dgdf ){_bfdc .Set ("\u004d\u0061\u0072\u006b\u0065\u0064",_ad .MakeBool (true ));_gafb .SetMarkInfo (_bfdc );};};func _fdg (_ede bool ,_dced standardType )(pageColorspaceOptimizeFunc ,documentColorspaceOptimizeFunc ){var _bgad ,_aea ,_efda bool ; +_facb :=func (_ece *_ea .Document ,_fbgd *_ea .Page ,_gdac []*_ea .Image )error {for _ ,_gebg :=range _gdac {switch _gebg .Colorspace {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_aea =true ;case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_bgad =true ; +case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_efda =true ;};};_gbda ,_ddd :=_fbgd .GetContents ();if !_ddd {return nil ;};for _ ,_bgfed :=range _gbda {_dffb ,_fef :=_bgfed .GetData ();if _fef !=nil {continue ;};_cfb :=_cad .NewContentStreamParser (string (_dffb )); +_cbb ,_fef :=_cfb .Parse ();if _fef !=nil {continue ;};for _ ,_dfd :=range *_cbb {switch _dfd .Operand {case "\u0047","\u0067":_aea =true ;case "\u0052\u0047","\u0072\u0067":_bgad =true ;case "\u004b","\u006b":_efda =true ;case "\u0043\u0053","\u0063\u0073":if len (_dfd .Params )==0{continue ; +};_adgd ,_ded :=_ad .GetName (_dfd .Params [0]);if !_ded {continue ;};switch _adgd .String (){case "\u0052\u0047\u0042","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_bgad =true ;case "\u0047","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_aea =true ; +case "\u0043\u004d\u0059\u004b","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_efda =true ;};};};};_gdca :=_fbgd .FindXObjectForms ();for _ ,_gdbb :=range _gdca {_cafa :=_cad .NewContentStreamParser (string (_gdbb .Stream ));_ggeg ,_feag :=_cafa .Parse (); +if _feag !=nil {continue ;};for _ ,_gdg :=range *_ggeg {switch _gdg .Operand {case "\u0047","\u0067":_aea =true ;case "\u0052\u0047","\u0072\u0067":_bgad =true ;case "\u004b","\u006b":_efda =true ;case "\u0043\u0053","\u0063\u0073":if len (_gdg .Params )==0{continue ; +};_gfg ,_ffeb :=_ad .GetName (_gdg .Params [0]);if !_ffeb {continue ;};switch _gfg .String (){case "\u0052\u0047\u0042","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_bgad =true ;case "\u0047","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_aea =true ; +case "\u0043\u004d\u0059\u004b","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_efda =true ;};};};_faa ,_bfc :=_ad .GetArray (_fbgd .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if !_bfc {return nil ;};for _ ,_cfbc :=range _faa .Elements (){_aec ,_debd :=_ad .GetDict (_cfbc ); +if !_debd {continue ;};_ebfe :=_aec .Get ("\u0043");if _ebfe ==nil {continue ;};_gag ,_debd :=_ad .GetArray (_ebfe );if !_debd {continue ;};switch _gag .Len (){case 0:case 1:_aea =true ;case 3:_bgad =true ;case 4:_efda =true ;};};};return nil ;};_facf :=func (_aaff *_ea .Document ,_dbbd []*_ea .Image )error {_cfcf ,_cgb :=_aaff .FindCatalog (); +if !_cgb {return nil ;};_facbg ,_cgb :=_cfcf .GetOutputIntents ();if _cgb &&_facbg .Len ()> 0{return nil ;};if !_cgb {_facbg =_cfcf .NewOutputIntents ();};if !(_bgad ||_efda ||_aea ){return nil ;};defer _cfcf .SetOutputIntents (_facbg );if _bgad &&!_efda &&!_aea {return _acdf (_aaff ,_dced ,_facbg ); +};if _efda &&!_bgad &&!_aea {return _edga (_dced ,_facbg );};if _aea &&!_bgad &&!_efda {return _aaa (_dced ,_facbg );};if _bgad &&_efda {if _aba :=_bea (_dbbd ,_ede );_aba !=nil {return _aba ;};if _afd :=_eadd (_aaff ,_ede );_afd !=nil {return _afd ;}; +if _bed :=_gfege (_aaff ,_ede );_bed !=nil {return _bed ;};if _ebfa :=_ggffc (_aaff ,_ede );_ebfa !=nil {return _ebfa ;};if _ede {return _edga (_dced ,_facbg );};return _acdf (_aaff ,_dced ,_facbg );};return nil ;};return _facb ,_facf ;};func _bgd (_gggbd *_ea .Document )error {_bdf ,_aega :=_gggbd .FindCatalog (); +if !_aega {return nil ;};_ ,_aega =_ad .GetDict (_bdf .Object .Get ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074"));if !_aega {_aaf :=_ad .MakeDict ();_aaf .Set ("\u0054\u0079\u0070\u0065",_ad .MakeName ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074")); +_bdf .Object .Set ("\u0053\u0074\u0072\u0075\u0063\u0074\u0054\u0072\u0065e\u0052\u006f\u006f\u0074",_aaf );};return nil ;};func _gcdca (_eadb *_ea .Document )error {_cedc ,_acab :=_eadb .FindCatalog ();if !_acab {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};_faab ,_acab :=_ad .GetDict (_cedc .Object .Get ("\u004e\u0061\u006de\u0073"));if !_acab {return nil ;};if _faab .Get ("\u0041\u006c\u0074\u0065rn\u0061\u0074\u0065\u0050\u0072\u0065\u0073\u0065\u006e\u0074\u0061\u0074\u0069\u006fn\u0073")!=nil {_faab .Remove ("\u0041\u006c\u0074\u0065rn\u0061\u0074\u0065\u0050\u0072\u0065\u0073\u0065\u006e\u0074\u0061\u0074\u0069\u006fn\u0073"); +};return nil ;};var _bg =ViolatedRule {};func _dadf (_afa *_da .CompliancePdfReader )(_befa ViolatedRule ){for _ ,_fbgb :=range _afa .GetObjectNums (){_dfff ,_gbcfb :=_afa .GetIndirectObjectByNumber (_fbgb );if _gbcfb !=nil {continue ;};_cccf ,_acc :=_ad .GetStream (_dfff ); +if !_acc {continue ;};_aabf ,_acc :=_ad .GetName (_cccf .Get ("\u0054\u0079\u0070\u0065"));if !_acc {continue ;};if *_aabf !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_ecb ,_acc :=_ad .GetName (_cccf .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032")); +if !_acc {continue ;};if *_ecb =="\u0050\u0053"{return _ba ("\u0036.\u0032\u002e\u0035\u002d\u0031","A\u0020\u0066\u006fr\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065\u0079 \u0077\u0069\u0074\u0068\u0020a\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u0020o\u0072\u0020\u0074\u0068e\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); +};if _cccf .Get ("\u0050\u0053")!=nil {return _ba ("\u0036.\u0032\u002e\u0035\u002d\u0031","A\u0020\u0066\u006fr\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065\u0079 \u0077\u0069\u0074\u0068\u0020a\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u0020o\u0072\u0020\u0074\u0068e\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); +};};return _befa ;};func _ebge (_dcbda *_da .CompliancePdfReader )(_caeeg []ViolatedRule ){var _dfgdg ,_bgdfa bool ;_gfaa :=func ()bool {return _dfgdg &&_bgdfa };for _ ,_adbcg :=range _dcbda .GetObjectNums (){_geba ,_bfed :=_dcbda .GetIndirectObjectByNumber (_adbcg ); +if _bfed !=nil {_ca .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0025\u0064\u0020fa\u0069\u006c\u0065d\u003a \u0025\u0076",_adbcg ,_bfed ); +continue ;};_dfbgd ,_daff :=_ad .GetDict (_geba );if !_daff {continue ;};_dbda ,_daff :=_ad .GetName (_dfbgd .Get ("\u0054\u0079\u0070\u0065"));if !_daff {continue ;};if *_dbda !="\u0041\u0063\u0074\u0069\u006f\u006e"{continue ;};_aaadg ,_daff :=_ad .GetName (_dfbgd .Get ("\u0053")); +if !_daff {if !_dfgdg {_caeeg =append (_caeeg ,_ba ("\u0036.\u0036\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004c\u0061\u0075\u006e\u0063\u0068\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u002c\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046o\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044\u0061\u0074\u0061\u0020\u0061\u006e\u0064 \u004a\u0061\u0076a\u0053\u0063\u0072\u0069\u0070\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020s\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e \u0041\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020th\u0065\u0020\u0064\u0065p\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020s\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u002d\u006f\u0070\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062e\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e\u0020T\u0068\u0065\u0020\u0048\u0069\u0064\u0065\u0020a\u0063\u0074\u0069\u006f\u006e \u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_dfgdg =true ;if _gfaa (){return _caeeg ;};};continue ;};switch _da .PdfActionType (*_aaadg ){case _da .ActionTypeLaunch ,_da .ActionTypeSound ,_da .ActionTypeMovie ,_da .ActionTypeResetForm ,_da .ActionTypeImportData ,_da .ActionTypeJavaScript :if !_dfgdg {_caeeg =append (_caeeg ,_ba ("\u0036.\u0036\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004c\u0061\u0075\u006e\u0063\u0068\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u002c\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046o\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044\u0061\u0074\u0061\u0020\u0061\u006e\u0064 \u004a\u0061\u0076a\u0053\u0063\u0072\u0069\u0070\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020s\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e \u0041\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020th\u0065\u0020\u0064\u0065p\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020s\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u002d\u006f\u0070\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062e\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074e\u0064\u002e\u0020T\u0068\u0065\u0020\u0048\u0069\u0064\u0065\u0020a\u0063\u0074\u0069\u006f\u006e \u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_dfgdg =true ;if _gfaa (){return _caeeg ;};};continue ;case _da .ActionTypeNamed :if !_bgdfa {_dfaff ,_cfaa :=_ad .GetName (_dfbgd .Get ("\u004e"));if !_cfaa {_caeeg =append (_caeeg ,_ba ("\u0036.\u0036\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_bgdfa =true ;if _gfaa (){return _caeeg ;};continue ;};switch *_dfaff {case "\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065","\u0050\u0072\u0065\u0076\u0050\u0061\u0067\u0065","\u0046i\u0072\u0073\u0074\u0050\u0061\u0067e","\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065":default:_caeeg =append (_caeeg ,_ba ("\u0036.\u0036\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_bgdfa =true ;if _gfaa (){return _caeeg ;};continue ;};};};};return _caeeg ;};func _gcgef (_fgagf *_da .CompliancePdfReader )(_agfc []ViolatedRule ){var _cgcdb ,_fcda bool ;_gafgf :=func ()bool {return _cgcdb &&_fcda };for _ ,_ccbgb :=range _fgagf .GetObjectNums (){_eddc ,_fagaf :=_fgagf .GetIndirectObjectByNumber (_ccbgb ); +if _fagaf !=nil {_ca .Log .Debug ("G\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0025\u0064\u0020fa\u0069\u006c\u0065d\u003a \u0025\u0076",_ccbgb ,_fagaf ); +continue ;};_abbb ,_feada :=_ad .GetDict (_eddc );if !_feada {continue ;};_ccfe ,_feada :=_ad .GetName (_abbb .Get ("\u0054\u0079\u0070\u0065"));if !_feada {continue ;};if *_ccfe !="\u0041\u0063\u0074\u0069\u006f\u006e"{continue ;};_ffff ,_feada :=_ad .GetName (_abbb .Get ("\u0053")); +if !_feada {if !_cgcdb {_agfc =append (_agfc ,_ba ("\u0036.\u0035\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004caun\u0063\u0068\u002c\u0020S\u006f\u0075\u006e\u0064,\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046\u006f\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044a\u0074\u0061,\u0020\u0048\u0069\u0064\u0065\u002c\u0020\u0053\u0065\u0074\u004f\u0043\u0047\u0053\u0074\u0061\u0074\u0065\u002c\u0020\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u002c\u0020T\u0072\u0061\u006e\u0073\u002c\u0020\u0047o\u0054\u006f\u0033\u0044\u0056\u0069\u0065\u0077\u0020\u0061\u006e\u0064\u0020\u004a\u0061v\u0061Sc\u0072\u0069p\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074 \u0062\u0065\u0020\u0070\u0065\u0072m\u0069\u0074\u0074\u0065\u0064\u002e \u0041\u0064d\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020t\u0068\u0065\u0020\u0064\u0065\u0070\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020\u0073\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u006f\u0070\u0020\u0061c\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070e\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_cgcdb =true ;if _gafgf (){return _agfc ;};};continue ;};switch _da .PdfActionType (*_ffff ){case _da .ActionTypeLaunch ,_da .ActionTypeSound ,_da .ActionTypeMovie ,_da .ActionTypeResetForm ,_da .ActionTypeImportData ,_da .ActionTypeJavaScript ,_da .ActionTypeHide ,_da .ActionTypeSetOCGState ,_da .ActionTypeRendition ,_da .ActionTypeTrans ,_da .ActionTypeGoTo3DView :if !_cgcdb {_agfc =append (_agfc ,_ba ("\u0036.\u0035\u002e\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u004caun\u0063\u0068\u002c\u0020S\u006f\u0075\u006e\u0064,\u0020\u004d\u006f\u0076\u0069\u0065\u002c\u0020\u0052\u0065\u0073\u0065\u0074\u0046\u006f\u0072\u006d\u002c\u0020\u0049\u006d\u0070\u006f\u0072\u0074\u0044a\u0074\u0061,\u0020\u0048\u0069\u0064\u0065\u002c\u0020\u0053\u0065\u0074\u004f\u0043\u0047\u0053\u0074\u0061\u0074\u0065\u002c\u0020\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u002c\u0020T\u0072\u0061\u006e\u0073\u002c\u0020\u0047o\u0054\u006f\u0033\u0044\u0056\u0069\u0065\u0077\u0020\u0061\u006e\u0064\u0020\u004a\u0061v\u0061Sc\u0072\u0069p\u0074\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074 \u0062\u0065\u0020\u0070\u0065\u0072m\u0069\u0074\u0074\u0065\u0064\u002e \u0041\u0064d\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020t\u0068\u0065\u0020\u0064\u0065\u0070\u0072\u0065\u0063\u0061\u0074\u0065\u0064\u0020\u0073\u0065\u0074\u002d\u0073\u0074\u0061\u0074\u0065\u0020\u0061\u006e\u0064\u0020\u006e\u006f\u006f\u0070\u0020\u0061c\u0074\u0069\u006f\u006e\u0073\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070e\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_cgcdb =true ;if _gafgf (){return _agfc ;};};continue ;case _da .ActionTypeNamed :if !_fcda {_abce ,_fadcb :=_ad .GetName (_abbb .Get ("\u004e"));if !_fadcb {_agfc =append (_agfc ,_ba ("\u0036.\u0035\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_fcda =true ;if _gafgf (){return _agfc ;};continue ;};switch *_abce {case "\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065","\u0050\u0072\u0065\u0076\u0050\u0061\u0067\u0065","\u0046i\u0072\u0073\u0074\u0050\u0061\u0067e","\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065":default:_agfc =append (_agfc ,_ba ("\u0036.\u0035\u002e\u0031\u002d\u0032","N\u0061\u006d\u0065\u0064\u0020\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u006f\u0074\u0068e\u0072\u0020\u0074h\u0061\u006e\u0020\u004e\u0065\u0078\u0074\u0050\u0061\u0067\u0065\u002c\u0020P\u0072\u0065v\u0050\u0061\u0067\u0065\u002c\u0020\u0046\u0069\u0072\u0073\u0074\u0050a\u0067e\u002c\u0020\u0061\u006e\u0064\u0020\u004c\u0061\u0073\u0074\u0050\u0061\u0067\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_fcda =true ;if _gafgf (){return _agfc ;};continue ;};};};};return _agfc ;};func _dgbf (_ebaae *_da .PdfFont ,_cggb *_ad .PdfObjectDictionary ,_aeee bool )ViolatedRule {const (_gdbd ="\u0036.\u0033\u002e\u0034\u002d\u0031";_eceaa ="\u0054\u0068\u0065\u0020\u0066\u006f\u006et\u0020\u0070\u0072\u006f\u0067\u0072\u0061\u006d\u0073\u0020\u0066\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0069\u006e \u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069l\u0065\u0020s\u0068\u0061\u006cl\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0077\u0069\u0074\u0068i\u006e\u0020\u0074h\u0061\u0074\u0020\u0066\u0069\u006ce\u002c\u0020a\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052e\u0066\u0065\u0072\u0065\u006e\u0063\u0065 \u0035\u002e\u0038\u002c\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0077h\u0065\u006e\u0020\u0074\u0068\u0065 \u0066\u006f\u006e\u0074\u0073\u0020\u0061\u0072\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0065\u0078\u0063\u006cu\u0073i\u0076\u0065\u006c\u0079\u0020\u0077\u0069t\u0068\u0020\u0074\u0065\u0078\u0074\u0020\u0072e\u006ed\u0065\u0072\u0069\u006e\u0067\u0020\u006d\u006f\u0064\u0065\u0020\u0033\u002e"; +);if _aeee {return _bg ;};_dcgb :=_ebaae .FontDescriptor ();var _ccda string ;if _beaa ,_fdgcg :=_ad .GetName (_cggb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_fdgcg {_ccda =_beaa .String ();};switch _ccda {case "\u0054\u0079\u0070e\u0031":if _dcgb .FontFile ==nil {return _ba (_gdbd ,_eceaa ); +};case "\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065":if _dcgb .FontFile2 ==nil {return _ba (_gdbd ,_eceaa );};case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0033":default:if _dcgb .FontFile3 ==nil {return _ba (_gdbd ,_eceaa );};};return _bg ; +};func _ggffc (_abe *_ea .Document ,_eacd bool )error {_fga ,_fdgd :=_abe .GetPages ();if !_fdgd {return nil ;};for _ ,_cfbcc :=range _fga {_edg ,_gdf :=_ad .GetArray (_cfbcc .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if !_gdf {continue ;}; +for _ ,_ecdc :=range _edg .Elements (){_eee ,_afdc :=_ad .GetDict (_ecdc );if !_afdc {continue ;};_gabg :=_eee .Get ("\u0043");if _gabg ==nil {continue ;};_cag ,_afdc :=_ad .GetArray (_gabg );if !_afdc {continue ;};_fgea ,_ffcb :=_cag .GetAsFloat64Slice (); +if _ffcb !=nil {return _ffcb ;};switch _cag .Len (){case 0,1:if _eacd {_eee .Set ("\u0043",_ad .MakeArrayFromIntegers ([]int {1,1,1,1}));}else {_eee .Set ("\u0043",_ad .MakeArrayFromIntegers ([]int {1,1,1}));};case 3:if _eacd {_eddf ,_fcdg ,_fed ,_gadg :=_g .RGBToCMYK (uint8 (_fgea [0]*255),uint8 (_fgea [1]*255),uint8 (_fgea [2]*255)); +_eee .Set ("\u0043",_ad .MakeArrayFromFloats ([]float64 {float64 (_eddf )/255,float64 (_fcdg )/255,float64 (_fed )/255,float64 (_gadg )/255}));};case 4:if !_eacd {_deba ,_cece ,_cfaf :=_g .CMYKToRGB (uint8 (_fgea [0]*255),uint8 (_fgea [1]*255),uint8 (_fgea [2]*255),uint8 (_fgea [3]*255)); +_eee .Set ("\u0043",_ad .MakeArrayFromFloats ([]float64 {float64 (_deba )/255,float64 (_cece )/255,float64 (_cfaf )/255}));};};};};return nil ;};func _bcfde (_ccdaf *_da .CompliancePdfReader )ViolatedRule {_aegf :=_ccdaf .ParserMetadata ();if _aegf .HasInvalidSeparationAfterXRef (){return _ba ("\u0036.\u0031\u002e\u0034\u002d\u0032","\u0054\u0068\u0065 \u0078\u0072\u0065\u0066\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0063\u0072\u006f\u0073s\u0020\u0072\u0065\u0066e\u0072\u0065\u006e\u0063\u0065 s\u0075b\u0073\u0065\u0063ti\u006f\u006e\u0020\u0068\u0065\u0061\u0064e\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0065\u0064\u0020\u0062\u0079 \u0061\u0020\u0073i\u006e\u0067\u006c\u0065\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e"); +};return _bg ;};func _dgce (_bcbfd *_ad .PdfObjectDictionary ,_cbdd map[*_ad .PdfObjectStream ][]byte ,_fgfg map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_cbgf ="\u0046\u006f\u0072\u0020\u0061\u006e\u0079\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0063\u006f\u006d\u0070o\u0073\u0069\u0074e\u0020\u0028\u0054\u0079\u0070\u0065\u0020\u0030\u0029 \u0066\u006fn\u0074\u0020\u0077\u0069\u0074\u0068\u0069\u006e \u0061\u0020\u0063\u006fn\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f \u0065\u006e\u0074\u0072\u0079\u0020\u0069\u006e\u0020\u0069\u0074\u0073 \u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u006e\u0064\u0020\u0069\u0074\u0073\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020\u0074\u0068\u0065\u0020\u0066\u006fl\u006c\u006f\u0077\u0069\u006e\u0067\u0020\u0072\u0065l\u0061t\u0069\u006f\u006e\u0073\u0068\u0069\u0070. \u0049\u0066\u0020\u0074\u0068\u0065\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006b\u0065\u0079 \u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0054\u0079\u0070\u0065\u0020\u0030 \u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0069\u0073\u0020I\u0064\u0065n\u0074\u0069\u0074\u0079\u002d\u0048\u0020\u006f\u0072\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056\u002c\u0020\u0061\u006e\u0079\u0020v\u0061\u006c\u0075\u0065\u0073\u0020\u006f\u0066\u0020\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079\u002c\u0020\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067\u002c\u0020\u0061\u006e\u0064\u0020\u0053up\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0069n\u0020\u0074h\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f\u0020\u0065\u006e\u0074r\u0079\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044F\u006f\u006e\u0074\u002e\u0020\u004f\u0074\u0068\u0065\u0072\u0077\u0069\u0073\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0063\u006f\u0072\u0072\u0065\u0073\u0070\u006f\u006e\u0064\u0069\u006e\u0067\u0020\u0052\u0065\u0067\u0069\u0073\u0074\u0072\u0079\u0020a\u006e\u0064\u0020\u004f\u0072\u0064\u0065\u0072\u0069\u006e\u0067\u0020s\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0069\u006e\u0020\u0062\u006f\u0074h\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065m\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006cl\u0020\u0062\u0065\u0020i\u0064en\u0074\u0069\u0063\u0061\u006c\u002c \u0061n\u0064\u0020\u0074\u0068\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0053\u0075\u0070\u0070l\u0065\u006d\u0065\u006e\u0074 \u006b\u0065\u0079\u0020\u0069\u006e\u0020t\u0068\u0065\u0020\u0043I\u0044S\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066o\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0067re\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u006f\u0072\u0020\u0065\u0071\u0075\u0061\u006c\u0020\u0074\u006f t\u0068\u0065\u0020\u0053\u0075\u0070\u0070\u006c\u0065\u006d\u0065\u006e\u0074\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066o\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006ff\u0020\u0074\u0068\u0065\u0020\u0043M\u0061p\u002e"; +_gfggc ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0031";);var _edgg string ;if _eccbg ,_dfdeg :=_ad .GetName (_bcbfd .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_dfdeg {_edgg =_eccbg .String ();};if _edgg !="\u0054\u0079\u0070e\u0030"{return _bg ; +};_deda :=_bcbfd .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067");if _bdeag ,_gfcad :=_ad .GetName (_deda );_gfcad {switch _bdeag .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _bg ; +};_degg ,_ecbg :=_b .LoadPredefinedCMap (_bdeag .String ());if _ecbg !=nil {return _ba (_gfggc ,_cbgf );};_caaa :=_degg .CIDSystemInfo ();if _caaa .Ordering !=_caaa .Registry {return _ba (_gfggc ,_cbgf );};return _bg ;};_aag ,_afbg :=_ad .GetStream (_deda ); +if !_afbg {return _ba (_gfggc ,_cbgf );};_cbdg ,_dfaa :=_ggag (_aag ,_cbdd ,_fgfg );if _dfaa !=nil {return _ba (_gfggc ,_cbgf );};_dcfg :=_cbdg .CIDSystemInfo ();if _dcfg .Ordering !=_dcfg .Registry {return _ba (_gfggc ,_cbgf );};return _bg ;};func _caee (_fdaef *_da .CompliancePdfReader )(*_ad .PdfObjectDictionary ,bool ){_bdfd ,_bebdf :=_acgab (_fdaef ); +if !_bebdf {return nil ,false ;};_ccfg ,_bebdf :=_ad .GetArray (_bdfd .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073"));if !_bebdf {return nil ,false ;};if _ccfg .Len ()==0{return nil ,false ;};return _ad .GetDict (_ccfg .Get (0)); +};func _cagb (_cdaf *_da .PdfInfo ,_feb *_gf .Document )bool {_bdbed ,_gafgd :=_feb .GetPdfInfo ();if !_gafgd {return false ;};if _bdbed .InfoDict ==nil {return false ;};_ccge ,_geee :=_da .NewPdfInfoFromObject (_bdbed .InfoDict );if _geee !=nil {return false ; +};if _cdaf .Creator !=nil {if _ccge .Creator ==nil ||_ccge .Creator .String ()!=_cdaf .Creator .String (){return false ;};};if _cdaf .CreationDate !=nil {if _ccge .CreationDate ==nil ||!_ccge .CreationDate .ToGoTime ().Equal (_cdaf .CreationDate .ToGoTime ()){return false ; +};};if _cdaf .ModifiedDate !=nil {if _ccge .ModifiedDate ==nil ||!_ccge .ModifiedDate .ToGoTime ().Equal (_cdaf .ModifiedDate .ToGoTime ()){return false ;};};if _cdaf .Producer !=nil {if _ccge .Producer ==nil ||_ccge .Producer .String ()!=_cdaf .Producer .String (){return false ; +};};if _cdaf .Keywords !=nil {if _ccge .Keywords ==nil ||_ccge .Keywords .String ()!=_cdaf .Keywords .String (){return false ;};};if _cdaf .Trapped !=nil {if _ccge .Trapped ==nil {return false ;};switch _cdaf .Trapped .String (){case "\u0054\u0072\u0075\u0065":if _ccge .Trapped .String ()!="\u0054\u0072\u0075\u0065"{return false ; +};case "\u0046\u0061\u006cs\u0065":if _ccge .Trapped .String ()!="\u0046\u0061\u006cs\u0065"{return false ;};default:if _ccge .Trapped .String ()!="\u0046\u0061\u006cs\u0065"{return false ;};};};if _cdaf .Title !=nil {if _ccge .Title ==nil ||_ccge .Title .String ()!=_cdaf .Title .String (){return false ; +};};if _cdaf .Subject !=nil {if _ccge .Subject ==nil ||_ccge .Subject .String ()!=_cdaf .Subject .String (){return false ;};};return true ;};func _dcaf (_cffa *_ea .Document )error {_beeb ,_ebbe :=_cffa .FindCatalog ();if !_ebbe {return _gg .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); +};_feg ,_ebbe :=_ad .GetDict (_beeb .Object .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073"));if !_ebbe {return nil ;};_gce ,_ebbe :=_ad .GetDict (_feg .Get ("\u0044"));if _ebbe {if _gce .Get ("\u0041\u0053")!=nil {_gce .Remove ("\u0041\u0053"); +};};_ebec ,_ebbe :=_ad .GetArray (_feg .Get ("\u0043o\u006e\u0066\u0069\u0067\u0073"));if _ebbe {for _eaaag :=0;_eaaag < _ebec .Len ();_eaaag ++{_fce ,_gecgb :=_ad .GetDict (_ebec .Get (_eaaag ));if !_gecgb {continue ;};if _fce .Get ("\u0041\u0053")!=nil {_fce .Remove ("\u0041\u0053"); +};};};return nil ;};func _fbed (_cfea *_da .CompliancePdfReader )(_dgead []ViolatedRule ){return _dgead };func _gaae (_gcdf *_da .CompliancePdfReader )ViolatedRule {for _ ,_ccaaf :=range _gcdf .GetObjectNums (){_eaed ,_dafg :=_gcdf .GetIndirectObjectByNumber (_ccaaf ); +if _dafg !=nil {continue ;};_efed ,_gfec :=_ad .GetStream (_eaed );if !_gfec {continue ;};_ebgbb ,_gfec :=_ad .GetName (_efed .Get ("\u0054\u0079\u0070\u0065"));if !_gfec {continue ;};if *_ebgbb !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};if _efed .Get ("\u0053\u004d\u0061s\u006b")!=nil {return _ba ("\u0036\u002e\u0034-\u0032","\u0041\u006e\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068e \u0053\u004d\u0061\u0073\u006b\u0020\u006b\u0065\u0079\u002e"); +};};return _bg ;};func _baafg (_decd *_ea .Document )error {_dea :=func (_dbeg *_ad .PdfObjectDictionary )error {if _dbeg .Get ("\u0054\u0052")!=nil {_ca .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0054\u0052\u0020\u006b\u0065\u0079"); +_dbeg .Remove ("\u0054\u0052");};_gbce :=_dbeg .Get ("\u0054\u0052\u0032");if _gbce !=nil {_dfdf :=_gbce .String ();if _dfdf !="\u0044e\u0066\u0061\u0075\u006c\u0074"{_ca .Log .Debug ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074\u0065 o\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073 \u0054\u00522\u0020\u006b\u0065y\u0020\u0077\u0069\u0074\u0068\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0074\u0068\u0065r\u0020\u0074ha\u006e\u0020\u0044e\u0066\u0061\u0075\u006c\u0074"); +_dbeg .Set ("\u0054\u0052\u0032",_ad .MakeName ("\u0044e\u0066\u0061\u0075\u006c\u0074"));};};if _dbeg .Get ("\u0048\u0054\u0050")!=nil {_ca .Log .Debug ("\u0045\u0078\u0074\u0047\u0053\u0074a\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0073\u0020\u0048\u0054P\u0020\u006b\u0065\u0079"); +_dbeg .Remove ("\u0048\u0054\u0050");};_eadaf :=_dbeg .Get ("\u0042\u004d");if _eadaf !=nil {_cbe ,_fggd :=_ad .GetName (_eadaf );if !_fggd {_ca .Log .Debug ("E\u0078\u0074\u0047\u0053\u0074\u0061t\u0065\u0020\u006f\u0062\u006a\u0065c\u0074\u0020\u0027\u0042\u004d\u0027\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u0020\u004e\u0061m\u0065"); +_cbe =_ad .MakeName ("");};_dgef :=_cbe .String ();switch _dgef {case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065","\u004d\u0075\u006c\u0074\u0069\u0070\u006c\u0079","\u0053\u0063\u0072\u0065\u0065\u006e","\u004fv\u0065\u0072\u006c\u0061\u0079","\u0044\u0061\u0072\u006b\u0065\u006e","\u004ci\u0067\u0068\u0074\u0065\u006e","\u0043\u006f\u006c\u006f\u0072\u0044\u006f\u0064\u0067\u0065","\u0043o\u006c\u006f\u0072\u0042\u0075\u0072n","\u0048a\u0072\u0064\u004c\u0069\u0067\u0068t","\u0053o\u0066\u0074\u004c\u0069\u0067\u0068t","\u0044\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065","\u0045x\u0063\u006c\u0075\u0073\u0069\u006fn","\u0048\u0075\u0065","\u0053\u0061\u0074\u0075\u0072\u0061\u0074\u0069\u006f\u006e","\u0043\u006f\u006co\u0072","\u004c\u0075\u006d\u0069\u006e\u006f\u0073\u0069\u0074\u0079":default:_dbeg .Set ("\u0042\u004d",_ad .MakeName ("\u004e\u006f\u0072\u006d\u0061\u006c")); +};};return nil ;};_adgb ,_cdf :=_decd .GetPages ();if !_cdf {return nil ;};for _ ,_caafa :=range _adgb {_deg ,_egaf :=_caafa .GetResources ();if !_egaf {continue ;};_cgag ,_cbdb :=_ad .GetDict (_deg .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e")); +if !_cbdb {return nil ;};_beca :=_cgag .Keys ();for _ ,_afg :=range _beca {_ebce ,_cfcg :=_ad .GetDict (_cgag .Get (_afg ));if !_cfcg {continue ;};_facg :=_dea (_ebce );if _facg !=nil {continue ;};};};for _ ,_fcfag :=range _adgb {_dfdff ,_fcaea :=_fcfag .GetContents (); +if !_fcaea {return nil ;};for _ ,_eaaa :=range _dfdff {_aaed ,_cebb :=_eaaa .GetData ();if _cebb !=nil {continue ;};_ada :=_cad .NewContentStreamParser (string (_aaed ));_gaebf ,_cebb :=_ada .Parse ();if _cebb !=nil {continue ;};for _ ,_cbbfg :=range *_gaebf {if len (_cbbfg .Params )==0{continue ; +};_ ,_egfgf :=_ad .GetName (_cbbfg .Params [0]);if !_egfgf {continue ;};_cff ,_baabb :=_fcfag .GetResourcesXObject ();if !_baabb {continue ;};for _ ,_gddb :=range _cff .Keys (){_gfca ,_dabc :=_ad .GetStream (_cff .Get (_gddb ));if !_dabc {continue ;};_egg ,_dabc :=_ad .GetDict (_gfca .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); +if !_dabc {continue ;};_cabf ,_dabc :=_ad .GetDict (_egg .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_dabc {continue ;};for _ ,_gecb :=range _cabf .Keys (){_acaf ,_aaag :=_ad .GetDict (_cabf .Get (_gecb ));if !_aaag {continue ;};_effg :=_dea (_acaf ); +if _effg !=nil {continue ;};};};};};};return nil ;};func _dcdec (_adcg *_ad .PdfObjectDictionary ,_ggdfg map[*_ad .PdfObjectStream ][]byte ,_cdbe map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_gefdd ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0034"; +_aadfe ="\u0046\u006f\u0072\u0020\u0074\u0068\u006fs\u0065\u0020\u0043\u004d\u0061\u0070\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0061\u0072e\u0020\u0065m\u0062\u0065\u0064de\u0064\u002c\u0020\u0074\u0068\u0065\u0020\u0069\u006et\u0065\u0067\u0065\u0072 \u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0057\u004d\u006f\u0064\u0065\u0020\u0065\u006e\u0074r\u0079\u0020i\u006e t\u0068\u0065\u0020CM\u0061\u0070\u0020\u0064\u0069\u0063\u0074\u0069o\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c\u0020\u0074\u006f \u0074h\u0065\u0020\u0057\u004d\u006f\u0064e\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064ed\u0020\u0043\u004d\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e"; +);var _defe string ;if _egfad ,_bgecfd :=_ad .GetName (_adcg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_bgecfd {_defe =_egfad .String ();};if _defe !="\u0054\u0079\u0070e\u0030"{return _bg ;};_afgdc :=_adcg .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); +if _ ,_ffaf :=_ad .GetName (_afgdc );_ffaf {return _bg ;};_adbf ,_afgg :=_ad .GetStream (_afgdc );if !_afgg {return _ba (_gefdd ,_aadfe );};_fgcge ,_dfgba :=_ggag (_adbf ,_ggdfg ,_cdbe );if _dfgba !=nil {return _ba (_gefdd ,_aadfe );};_fcebc ,_feabe :=_ad .GetIntVal (_adbf .Get ("\u0057\u004d\u006fd\u0065")); +_ecafb ,_abc :=_fgcge .WMode ();if _feabe &&_abc {if _ecafb !=_fcebc {return _ba (_gefdd ,_aadfe );};};if (_feabe &&!_abc )||(!_feabe &&_abc ){return _ba (_gefdd ,_aadfe );};return _bg ;}; -// StandardName gets the name of the standard. -func (_eaee *profile1 )StandardName ()string {return _g .Sprintf ("\u0050D\u0046\u002f\u0041\u002d\u0031\u0025s",_eaee ._bacb ._dc );};func _daea (_ddgd *_b .CompliancePdfReader )ViolatedRule {for _ ,_gcaea :=range _ddgd .PageList {_fgda ,_edad :=_gcaea .GetContentStreams (); -if _edad !=nil {continue ;};for _ ,_aedeb :=range _fgda {_fgdbb :=_fbg .NewContentStreamParser (_aedeb );_ ,_edad =_fgdbb .Parse ();if _edad !=nil {return _fe ("\u0036.\u0032\u002e\u0032\u002d\u0031","\u0041\u0020\u0063onten\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u0061\u006c\u006c n\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079 \u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u0020\u006e\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0065\u0076\u0065\u006e\u0020\u0069\u0066\u0020s\u0075\u0063\u0068\u0020\u006f\u0070\u0065r\u0061\u0074\u006f\u0072\u0073\u0020\u0061\u0072\u0065\u0020\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0065\u0064\u0020\u0062\u0079\u0020\u0074\u0068\u0065\u0020\u0042\u0058\u002f\u0045\u0058\u0020\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062i\u006c\u0069\u0074\u0079\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u002e"); -};};};return _da ;}; +// String gets a string representation of the violated rule. +func (_add ViolatedRule )String ()string {return _d .Sprintf ("\u0025\u0073\u003a\u0020\u0025\u0073",_add .RuleNo ,_add .Detail );};func _bfaae (_fdbff *_da .CompliancePdfReader )(_agcfb []ViolatedRule ){var _ceffg ,_aga ,_abdaf ,_facfb ,_ecfab ,_ffdd ,_gedb bool ; +_fcaaf :=func ()bool {return _ceffg &&_aga &&_abdaf &&_facfb &&_ecfab &&_ffdd &&_gedb };for _ ,_ecfeb :=range _fdbff .PageList {_begaf ,_ecdbg :=_ecfeb .GetAnnotations ();if _ecdbg !=nil {_ca .Log .Trace ("\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0061\u006en\u006f\u0074\u0061\u0074\u0069\u006f\u006es\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ecdbg ); +continue ;};for _ ,_afggc :=range _begaf {if !_ceffg {switch _afggc .GetContext ().(type ){case *_da .PdfAnnotationScreen ,*_da .PdfAnnotation3D ,*_da .PdfAnnotationSound ,*_da .PdfAnnotationMovie ,nil :_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0031\u002d\u0031","\u0041nn\u006f\u0074\u0061\u0074i\u006f\u006e t\u0079\u0070\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072e\u006e\u0063\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065r\u006d\u0069t\u0074\u0065\u0064\u002e\u0020\u0041\u0064d\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0033\u0044\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u002c\u0020\u0053\u0063\u0072\u0065\u0065\u006e\u0020\u0061n\u0064\u0020\u004d\u006f\u0076\u0069\u0065\u0020\u0074\u0079\u0070\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); +_ceffg =true ;if _fcaaf (){return _agcfb ;};};};_dbaa ,_fgefe :=_ad .GetDict (_afggc .GetContainingPdfObject ());if !_fgefe {continue ;};_ ,_egafe :=_afggc .GetContext ().(*_da .PdfAnnotationPopup );if !_egafe &&!_aga {_ ,_febg :=_ad .GetIntVal (_dbaa .Get ("\u0046")); +if !_febg {_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0031","\u0045\u0078\u0063\u0065\u0070\u0074\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072i\u0065\u0073\u0020\u0077\u0068\u006fs\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u0076\u0061l\u0075\u0065\u0020\u0069\u0073\u0020\u0050\u006f\u0070u\u0070\u002c\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0046 \u006b\u0065y.")); +_aga =true ;if _fcaaf (){return _agcfb ;};};};if !_abdaf {_deeba ,_edcgf :=_ad .GetIntVal (_dbaa .Get ("\u0046"));if _edcgf &&!(_deeba &4==4&&_deeba &1==0&&_deeba &2==0&&_deeba &32==0&&_deeba &256==0){_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0032","I\u0066\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u0020\u0046 \u006b\u0065\u0079\u0027\u0073\u0020\u0050\u0072\u0069\u006e\u0074\u0020\u0066\u006c\u0061\u0067\u0020\u0062\u0069\u0074\u0020\u0073\u0068\u0061l\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0074\u0020\u0074\u006f\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0069\u0074\u0073\u0020\u0048\u0069\u0064\u0064\u0065\u006e\u002c\u0020\u0049\u006e\u0076\u0069\u0073\u0069\u0062\u006c\u0065\u002c\u0020\u0054\u006f\u0067\u0067\u006c\u0065\u004e\u006f\u0056\u0069\u0065\u0077\u002c\u0020\u0061\u006e\u0064 \u004eo\u0056\u0069\u0065\u0077\u0020\u0066\u006c\u0061\u0067\u0020\u0062\u0069\u0074\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020s\u0065\u0074\u0020t\u006f\u0020\u0030.")); +_abdaf =true ;if _fcaaf (){return _agcfb ;};};};_ ,_gbdec :=_afggc .GetContext ().(*_da .PdfAnnotationText );if _gbdec &&!_facfb {_addd ,_dccda :=_ad .GetIntVal (_dbaa .Get ("\u0046"));if _dccda &&!(_addd &8==8&&_addd &16==16){_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0033","\u0054\u0065\u0078\u0074\u0020a\u006e\u006e\u006f\u0074\u0061t\u0069o\u006e\u0020\u0068\u0061\u0073\u0020\u006f\u006e\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006ca\u0067\u0073\u0020\u004e\u006f\u005a\u006f\u006f\u006d\u0020\u006f\u0072\u0020\u004e\u006f\u0052\u006f\u0074\u0061\u0074\u0065\u0020\u0073\u0065t\u0020\u0074\u006f\u0020\u0030\u002e")); +_facfb =true ;if _fcaaf (){return _agcfb ;};};};if !_ecfab {_ecaa ,_gedc :=_ad .GetDict (_dbaa .Get ("\u0041\u0050"));if _gedc {_gcbe :=_ecaa .Get ("\u004e");if _gcbe ==nil ||len (_ecaa .Keys ())> 1{_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0033\u002d\u0032","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); +_ecfab =true ;if _fcaaf (){return _agcfb ;};continue ;};_ ,_efefc :=_afggc .GetContext ().(*_da .PdfAnnotationWidget );if _efefc {_adbd ,_ddbe :=_ad .GetName (_dbaa .Get ("\u0046\u0054"));if _ddbe &&*_adbd =="\u0042\u0074\u006e"{if _ ,_fgcc :=_ad .GetDict (_gcbe ); +!_fgcc {_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0033\u002d\u0032","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); +_ecfab =true ;if _fcaaf (){return _agcfb ;};continue ;};};};_ ,_eaaee :=_ad .GetStream (_gcbe );if !_eaaee {_agcfb =append (_agcfb ,_ba ("\u0036.\u0033\u002e\u0033\u002d\u0032","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); +_ecfab =true ;if _fcaaf (){return _agcfb ;};continue ;};};};_gafc ,_gdff :=_afggc .GetContext ().(*_da .PdfAnnotationWidget );if !_gdff {continue ;};if !_ffdd {if _gafc .A !=nil {_agcfb =append (_agcfb ,_ba ("\u0036.\u0034\u002e\u0031\u002d\u0031","A \u0057\u0069d\u0067\u0065\u0074\u0020\u0061\u006e\u006e\u006f\u0074a\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0069\u006ec\u006cu\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0020e\u006et\u0072\u0079.")); +_ffdd =true ;if _fcaaf (){return _agcfb ;};};};if !_gedb {if _gafc .AA !=nil {_agcfb =append (_agcfb ,_ba ("\u0036.\u0034\u002e\u0031\u002d\u0031","\u0041\u0020\u0057\u0069\u0064\u0067\u0065\u0074\u0020\u0061\u006e\u006eo\u0074\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073h\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0041\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0061d\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); +_gedb =true ;if _fcaaf (){return _agcfb ;};};};};};return _agcfb ;};func _cdac (_baeaa *_da .CompliancePdfReader )ViolatedRule {return _bg }; -// Profile2Options are the options that changes the way how optimizer may try to adapt document into PDF/A standard. -type Profile2Options struct{ +// Profile1Options are the options that changes the way how optimizer may try to adapt document into PDF/A standard. +type Profile1Options struct{ -// CMYKDefaultColorSpace is an option that refers PDF/A +// CMYKDefaultColorSpace is an option that refers PDF/A-1 CMYKDefaultColorSpace bool ; // Now is a function that returns current time. -Now func ()_c .Time ; +Now func ()_a .Time ; // Xmp is the xmp options information. -Xmp XmpOptions ;};func _egbd (_aefgg *_b .CompliancePdfReader )(_badcb []ViolatedRule ){_edccb ,_cfdd :=_faac (_aefgg );if !_cfdd {return _badcb ;};_bgcdg ,_cfdd :=_fc .GetDict (_edccb .Get ("\u0050\u0065\u0072m\u0073"));if !_cfdd {return _badcb ;};_baff :=_bgcdg .Keys (); -for _ ,_gaecc :=range _baff {if _gaecc .String ()!="\u0055\u0052\u0033"&&_gaecc .String ()!="\u0044\u006f\u0063\u004d\u0044\u0050"{_badcb =append (_badcb ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0032\u002d\u0031","\u004e\u006f\u0020\u006b\u0065\u0079\u0073 \u006f\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0055\u0052\u0033 \u0061n\u0064\u0020\u0044\u006f\u0063\u004dD\u0050\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0065\u0072\u006d\u0069\u0073\u0073i\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u002e")); -};};return _badcb ;};func _eaef (_aefd *_ag .Document )(*_fc .PdfObjectDictionary ,bool ){_fec ,_fagc :=_aefd .FindCatalog ();if !_fagc {return nil ,false ;};_cbd ,_fagc :=_fc .GetArray (_fec .Object .Get ("\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0073")); -if !_fagc {return nil ,false ;};if _cbd .Len ()==0{return nil ,false ;};return _fc .GetDict (_cbd .Get (0));}; +Xmp XmpOptions ;};func _dddf (_efdb *_da .CompliancePdfReader )(_fgdca []ViolatedRule ){_dfbc :=func (_eafg *_ad .PdfObjectDictionary ,_cgcgf *[]string ,_gebeb *[]ViolatedRule )error {_cfcgb :=_eafg .Get ("\u004e\u0061\u006d\u0065");if _cfcgb ==nil ||len (_cfcgb .String ())==0{*_gebeb =append (*_gebeb ,_ba ("\u0036\u002e\u0039-\u0031","\u0045\u0061\u0063\u0068\u0020o\u0070\u0074\u0069\u006f\u006e\u0061l\u0020\u0063\u006f\u006e\u0074\u0065\u006et\u0020\u0063\u006fn\u0066\u0069\u0067\u0075r\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u004e\u0061\u006d\u0065\u0020\u006b\u0065\u0079\u002e")); +};for _ ,_acbca :=range *_cgcgf {if _acbca ==_cfcgb .String (){*_gebeb =append (*_gebeb ,_ba ("\u0036\u002e\u0039-\u0032","\u0045\u0061\u0063\u0068\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061l\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0063\u006f\u006e\u0066\u0069\u0067\u0075\u0072a\u0074\u0069\u006fn\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020N\u0061\u006d\u0065\u0020\u006b\u0065\u0079\u002c w\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020s\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0075ni\u0071\u0075\u0065 \u0061\u006d\u006f\u006e\u0067\u0073\u0074\u0020\u0061\u006c\u006c\u0020o\u0070\u0074\u0069\u006f\u006e\u0061\u006c\u0020\u0063\u006fn\u0074\u0065\u006e\u0074 \u0063\u006f\u006e\u0066\u0069\u0067u\u0072\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074i\u006fn\u0061\u0072\u0069\u0065\u0073\u0020\u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0074\u0068e\u0020\u0050\u0044\u0046\u002fA\u002d\u0032\u0020\u0066\u0069l\u0065\u002e")); +}else {*_cgcgf =append (*_cgcgf ,_cfcgb .String ());};};if _eafg .Get ("\u0041\u0053")!=nil {*_gebeb =append (*_gebeb ,_ba ("\u0036\u002e\u0039-\u0034","Th\u0065\u0020\u0041\u0053\u0020\u006b\u0065y \u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0061\u0070\u0070\u0065\u0061r\u0020\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061\u006c\u0020\u0063\u006f\u006et\u0065\u006e\u0074\u0020\u0063\u006fn\u0066\u0069\u0067\u0075\u0072\u0061\u0074\u0069\u006fn\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); +};return nil ;};_gedbc ,_ddge :=_acgab (_efdb );if !_ddge {return _fgdca ;};_bgdeg ,_ddge :=_ad .GetDict (_gedbc .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073"));if !_ddge {return _fgdca ;};var _gdbef []string ;_cfdc ,_ddge :=_ad .GetDict (_bgdeg .Get ("\u0044")); +if _ddge {_dfbc (_cfdc ,&_gdbef ,&_fgdca );};_efbee ,_ddge :=_ad .GetArray (_bgdeg .Get ("\u0043o\u006e\u0066\u0069\u0067\u0073"));if _ddge {for _babdb :=0;_babdb < _efbee .Len ();_babdb ++{_agcgf ,_fafb :=_ad .GetDict (_efbee .Get (_babdb ));if !_fafb {continue ; +};_dfbc (_agcgf ,&_gdbef ,&_fgdca );};};return _fgdca ;};func _ba (_ace string ,_bee string )ViolatedRule {return ViolatedRule {RuleNo :_ace ,Detail :_bee }};func _ceg (_fcgf *_da .CompliancePdfReader )(_dbdg []ViolatedRule ){_gbad :=_fcgf .ParserMetadata (); +if _gbad .HasInvalidSubsectionHeader (){_dbdg =append (_dbdg ,_ba ("\u0036.\u0031\u002e\u0034\u002d\u0031","\u006e\u0020\u0061\u0020\u0063\u0072\u006f\u0073\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0073\u0065c\u0074\u0069\u006f\u006e\u0020h\u0065a\u0064\u0065\u0072\u0020t\u0068\u0065\u0020\u0073\u0074\u0061\u0072t\u0069\u006e\u0067\u0020\u006fb\u006a\u0065\u0063\u0074 \u006e\u0075\u006d\u0062\u0065\u0072\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0072\u0061n\u0067e\u0020s\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020s\u0069\u006e\u0067\u006c\u0065\u0020\u0053\u0050\u0041C\u0045\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074e\u0072\u0020\u0028\u0032\u0030\u0068\u0029\u002e")); +};if _gbad .HasInvalidSeparationAfterXRef (){_dbdg =append (_dbdg ,_ba ("\u0036.\u0031\u002e\u0034\u002d\u0032","\u0054\u0068\u0065 \u0078\u0072\u0065\u0066\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0063\u0072\u006f\u0073s\u0020\u0072\u0065\u0066e\u0072\u0065\u006e\u0063\u0065 s\u0075b\u0073\u0065\u0063ti\u006f\u006e\u0020\u0068\u0065\u0061\u0064e\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0065\u0064\u0020\u0062\u0079 \u0061\u0020\u0073i\u006e\u0067\u006c\u0065\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e")); +};return _dbdg ;};func _fgeb (_eeba *_da .CompliancePdfReader )(_cagfc []ViolatedRule ){var _aaeda ,_gcde ,_dbffd ,_edadd ,_dcca ,_ffcdg bool ;_baeb :=func ()bool {return _aaeda &&_gcde &&_dbffd &&_edadd &&_dcca &&_ffcdg };_cdca :=func (_eccd *_ad .PdfObjectDictionary )bool {if !_aaeda &&_eccd .Get ("\u0054\u0052")!=nil {_aaeda =true ; +_cagfc =append (_cagfc ,_ba ("\u0036.\u0032\u002e\u0038\u002d\u0031","\u0041\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0054\u0052\u0020\u006b\u0065\u0079\u002e")); +};if _ddee :=_eccd .Get ("\u0054\u0052\u0032");!_gcde &&_ddee !=nil {_cddd ,_eagb :=_ad .GetName (_ddee );if !_eagb ||(_eagb &&*_cddd !="\u0044e\u0066\u0061\u0075\u006c\u0074"){_gcde =true ;_cagfc =append (_cagfc ,_ba ("\u0036.\u0032\u002e\u0038\u002d\u0032","\u0041\u006e \u0045\u0078\u0074G\u0053\u0074\u0061\u0074\u0065 \u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074a\u0069n\u0020\u0074\u0068\u0065\u0020\u0054R2 \u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076al\u0075e\u0020\u006f\u0074\u0068e\u0072 \u0074h\u0061\u006e \u0044\u0065fa\u0075\u006c\u0074\u002e")); +if _baeb (){return true ;};};};if _fbff :=_eccd .Get ("\u0053\u004d\u0061s\u006b");!_dbffd &&_fbff !=nil {_fadge ,_edcga :=_ad .GetName (_fbff );if !_edcga ||(_edcga &&*_fadge !="\u004e\u006f\u006e\u0065"){_dbffd =true ;_cagfc =append (_cagfc ,_ba ("\u0036\u002e\u0034-\u0031","\u0049\u0066\u0020\u0061\u006e \u0053\u004d\u0061\u0073\u006b\u0020\u006be\u0079\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0073\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0069\u0074s\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020\u004e\u006f\u006ee\u002e")); +if _baeb (){return true ;};};};if _eeeb :=_eccd .Get ("\u0043\u0041");!_dcca &&_eeeb !=nil {_ecdd ,_dbddb :=_ad .GetNumberAsFloat (_eeeb );if _dbddb ==nil &&_ecdd !=1.0{_dcca =true ;_cagfc =append (_cagfc ,_ba ("\u0036\u002e\u0034-\u0035","\u0054\u0068\u0065\u0020\u0066ol\u006c\u006fw\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u0073\u002c\u0020\u0069\u0066\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078t\u0047\u0053\u0074a\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0073\u0068a\u006c\u006c\u0020\u0068\u0061v\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0073 \u0073h\u006f\u0077\u006e\u003a\u0020\u0043\u0041 \u002d\u0020\u0031\u002e\u0030\u002e")); +if _baeb (){return true ;};};};if _eeagb :=_eccd .Get ("\u0063\u0061");!_ffcdg &&_eeagb !=nil {_dedb ,_dffbg :=_ad .GetNumberAsFloat (_eeagb );if _dffbg ==nil &&_dedb !=1.0{_ffcdg =true ;_cagfc =append (_cagfc ,_ba ("\u0036\u002e\u0034-\u0036","\u0054\u0068\u0065\u0020\u0066ol\u006c\u006fw\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u0073\u002c\u0020\u0069\u0066\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078t\u0047\u0053\u0074a\u0074\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0073\u0068a\u006c\u006c\u0020\u0068\u0061v\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0073 \u0073h\u006f\u0077\u006e\u003a\u0020\u0063\u0061 \u002d\u0020\u0031\u002e\u0030\u002e")); +if _baeb (){return true ;};};};if _ecgg :=_eccd .Get ("\u0042\u004d");!_edadd &&_ecgg !=nil {_cede ,_dabca :=_ad .GetName (_ecgg );if _dabca {switch _cede .String (){case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065":default:_edadd =true ; +_cagfc =append (_cagfc ,_ba ("\u0036\u002e\u0034-\u0034","T\u0068\u0065\u0020\u0066\u006f\u006cl\u006f\u0077\u0069\u006e\u0067 \u006b\u0065y\u0073\u002c\u0020\u0069\u0066 \u0070res\u0065\u006e\u0074\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0045\u0078\u0074\u0047S\u0074\u0061t\u0065\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065 \u0074\u0068\u0065 \u0076\u0061\u006c\u0075\u0065\u0073\u0020\u0073\u0068\u006f\u0077n\u003a\u0020\u0042\u004d\u0020\u002d\u0020\u004e\u006f\u0072m\u0061\u006c\u0020\u006f\u0072\u0020\u0043\u006f\u006d\u0070\u0061t\u0069\u0062\u006c\u0065\u002e")); +if _baeb (){return true ;};};};};return false ;};for _ ,_ffdad :=range _eeba .PageList {_bgcb :=_ffdad .Resources ;if _bgcb ==nil {continue ;};if _bgcb .ExtGState ==nil {continue ;};_fbcb ,_beed :=_ad .GetDict (_bgcb .ExtGState );if !_beed {continue ;}; +_aaeb :=_fbcb .Keys ();for _ ,_dgae :=range _aaeb {_bfdd ,_efea :=_ad .GetDict (_fbcb .Get (_dgae ));if !_efea {continue ;};if _cdca (_bfdd ){return _cagfc ;};};};for _ ,_gfcaf :=range _eeba .PageList {_dgee :=_gfcaf .Resources ;if _dgee ==nil {continue ; +};_eed ,_bgae :=_ad .GetDict (_dgee .XObject );if !_bgae {continue ;};for _ ,_agca :=range _eed .Keys (){_faabg ,_eebae :=_ad .GetStream (_eed .Get (_agca ));if !_eebae {continue ;};_cefe ,_eebae :=_ad .GetDict (_faabg .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); +if !_eebae {continue ;};_cffd ,_eebae :=_ad .GetDict (_cefe .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_eebae {continue ;};for _ ,_baabc :=range _cffd .Keys (){_baeg ,_feaf :=_ad .GetDict (_cffd .Get (_baabc ));if !_feaf {continue ;};if _cdca (_baeg ){return _cagfc ; +};};};};return _cagfc ;};func _aaa (_gee standardType ,_bdbd *_ea .OutputIntents )error {_efeb ,_dgb :=_ac .NewISOCoatedV2Gray1CBasOutputIntent (_gee .outputIntentSubtype ());if _dgb !=nil {return _dgb ;};if _dgb =_bdbd .Add (_efeb .ToPdfObject ());_dgb !=nil {return _dgb ; +};return nil ;};type colorspaceModification struct{_cc _de .ColorConverter ;_ecd _da .PdfColorspace ;};func _adgfe (_ccae *_da .CompliancePdfReader )(_baecc []ViolatedRule ){var _cgbg ,_deac ,_ccgc ,_bege bool ;_gfegc :=func ()bool {return _cgbg &&_deac &&_ccgc &&_bege }; +_dddd ,_cfbeb :=_faad (_ccae );var _bgddb _ac .ProfileHeader ;if _cfbeb {_bgddb ,_ =_ac .ParseHeader (_dddd .DestOutputProfile );};_affbe :=map[_ad .PdfObject ]struct{}{};var _afgd func (_feca _da .PdfColorspace )bool ;_afgd =func (_bgdg _da .PdfColorspace )bool {switch _afae :=_bgdg .(type ){case *_da .PdfColorspaceDeviceGray :if !_cgbg {if !_cfbeb {_baecc =append (_baecc ,_ba ("\u0036.\u0032\u002e\u0034\u002e\u0033\u002d4","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006f\u006e\u006c\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064 \u0069\u0066\u0020\u0061\u0020\u0064\u0065v\u0069\u0063\u0065\u0020\u0069\u006e\u0064\u0065p\u0065\u006e\u0064\u0065\u006e\u0074\u0020\u0044\u0065\u0066\u0061\u0075\u006c\u0074\u0047\u0072\u0061\u0079\u0020\u0063\u006f\u006c\u006f\u0075r \u0073\u0070\u0061\u0063\u0065\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006e \u0073\u0065\u0074\u0020\u0077\u0068\u0065n \u0074\u0068\u0065\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072a\u0079\u0020\u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0069\u0073\u0020\u0075\u0073\u0065\u0064\u002c o\u0072\u0020\u0069\u0066\u0020\u0061\u0020\u0050\u0044\u0046\u002fA\u0020\u004f\u0075tp\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0069\u0073\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u002e")); +_cgbg =true ;if _gfegc (){return true ;};};};case *_da .PdfColorspaceDeviceRGB :if !_deac {if !_cfbeb ||_bgddb .ColorSpace !=_ac .ColorSpaceRGB {_baecc =append (_baecc ,_ba ("\u0036.\u0032\u002e\u0034\u002e\u0033\u002d2","\u0044\u0065\u0076\u0069c\u0065\u0052\u0047\u0042\u0020\u0073\u0068\u0061\u006cl\u0020\u006f\u006e\u006c\u0079\u0020\u0062e\u0020\u0075\u0073\u0065\u0064\u0020\u0069f\u0020\u0061\u0020\u0064\u0065\u0076\u0069\u0063e\u0020\u0069n\u0064\u0065\u0070e\u006e\u0064\u0065\u006et \u0044\u0065\u0066\u0061\u0075\u006c\u0074\u0052\u0047\u0042\u0020\u0063\u006fl\u006f\u0075r\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0068\u0061\u0073\u0020b\u0065\u0065\u006e\u0020s\u0065\u0074 \u0077\u0068\u0065\u006e\u0020\u0074\u0068\u0065\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u0052\u0047\u0042\u0020c\u006flou\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020i\u0073\u0020\u0075\u0073\u0065\u0064\u002c\u0020\u006f\u0072\u0020if\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044F\u002f\u0041\u0020\u004fut\u0070\u0075\u0074\u0049\u006e\u0074\u0065n\u0074\u0020t\u0068\u0061t\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0061\u006e\u0020\u0052\u0047\u0042\u0020\u0064\u0065\u0073\u0074\u0069\u006e\u0061\u0074io\u006e\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u002e")); +_deac =true ;if _gfegc (){return true ;};};};case *_da .PdfColorspaceDeviceCMYK :if !_ccgc {if !_cfbeb ||_bgddb .ColorSpace !=_ac .ColorSpaceCMYK {_baecc =append (_baecc ,_ba ("\u0036.\u0032\u002e\u0034\u002e\u0033\u002d3","\u0044e\u0076\u0069c\u0065\u0043\u004d\u0059\u004b\u0020\u0073hal\u006c\u0020\u006f\u006e\u006c\u0079\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0069\u0066\u0020\u0061\u0020\u0064\u0065\u0076\u0069\u0063\u0065\u0020\u0069\u006e\u0064\u0065\u0070\u0065\u006e\u0064\u0065\u006e\u0074\u0020\u0044ef\u0061\u0075\u006c\u0074\u0043\u004d\u0059K\u0020\u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0068\u0061s\u0020\u0062\u0065\u0065\u006e \u0073\u0065\u0074\u0020\u006fr \u0069\u0066\u0020\u0061\u0020\u0044e\u0076\u0069\u0063\u0065\u004e\u002d\u0062\u0061\u0073\u0065\u0064\u0020\u0044\u0065f\u0061\u0075\u006c\u0074\u0043\u004d\u0059\u004b\u0020c\u006f\u006c\u006f\u0075r\u0020\u0073\u0070\u0061\u0063e\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006e\u0020\u0073\u0065\u0074\u0020\u0077\u0068\u0065\u006e\u0020\u0074h\u0065\u0020\u0044\u0065\u0076\u0069c\u0065\u0043\u004d\u0059\u004b\u0020c\u006f\u006c\u006fu\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u0069\u0073\u0020\u0075\u0073\u0065\u0064\u0020\u006f\u0072\u0020t\u0068\u0065\u0020\u0066\u0069l\u0065\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074p\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0073\u0020\u0061\u0020\u0043\u004d\u0059\u004b\u0020d\u0065\u0073\u0074\u0069\u006e\u0061t\u0069\u006f\u006e\u0020\u0070r\u006f\u0066\u0069\u006c\u0065\u002e")); +_ccgc =true ;if _gfegc (){return true ;};};};case *_da .PdfColorspaceICCBased :if !_bege {_dbgg ,_fgbc :=_ac .ParseHeader (_afae .Data );if _fgbc !=nil {_ca .Log .Debug ("\u0070\u0061\u0072si\u006e\u0067\u0020\u0049\u0043\u0043\u0042\u0061\u0073e\u0064 \u0068e\u0061d\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_fgbc ); +_baecc =append (_baecc ,func ()ViolatedRule {return _ba ("\u0036.\u0032\u002e\u0034\u002e\u0032\u002d1","\u0054\u0068e\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0074\u0068\u0061\u0074\u0020\u0066o\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0073\u0074r\u0065\u0061\u006d o\u0066\u0020\u0061\u006e\u0020\u0049C\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006fl\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0049\u0043\u0043.\u0031\u003a\u0031\u0039\u0039\u0038-\u0030\u0039,\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0031\u002d\u00312\u002c\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0033\u002d\u0030\u0039\u0020\u006f\u0072\u0020I\u0053\u004f\u0020\u0031\u0035\u0030\u0037\u0036\u002d\u0031\u002e"); +}());_bege =true ;if _gfegc (){return true ;};};if !_bege {var _gfbfg ,_cefb bool ;switch _dbgg .DeviceClass {case _ac .DeviceClassPRTR ,_ac .DeviceClassMNTR ,_ac .DeviceClassSCNR ,_ac .DeviceClassSPAC :default:_gfbfg =true ;};switch _dbgg .ColorSpace {case _ac .ColorSpaceRGB ,_ac .ColorSpaceCMYK ,_ac .ColorSpaceGRAY ,_ac .ColorSpaceLAB :default:_cefb =true ; +};if _gfbfg ||_cefb {_baecc =append (_baecc ,_ba ("\u0036.\u0032\u002e\u0034\u002e\u0032\u002d1","\u0054\u0068e\u0020\u0070\u0072\u006f\u0066\u0069\u006c\u0065\u0020\u0074\u0068\u0061\u0074\u0020\u0066o\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0073\u0074r\u0065\u0061\u006d o\u0066\u0020\u0061\u006e\u0020\u0049C\u0043\u0042\u0061\u0073\u0065\u0064\u0020\u0063\u006fl\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0049\u0043\u0043.\u0031\u003a\u0031\u0039\u0039\u0038-\u0030\u0039,\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0031\u002d\u00312\u002c\u0020\u0049\u0043\u0043\u002e\u0031\u003a\u0032\u0030\u0030\u0033\u002d\u0030\u0039\u0020\u006f\u0072\u0020I\u0053\u004f\u0020\u0031\u0035\u0030\u0037\u0036\u002d\u0031\u002e")); +_bege =true ;if _gfegc (){return true ;};};};};if _afae .Alternate !=nil {return _afgd (_afae .Alternate );};};return false ;};for _ ,_acdda :=range _ccae .GetObjectNums (){_cgac ,_dfacc :=_ccae .GetIndirectObjectByNumber (_acdda );if _dfacc !=nil {continue ; +};_cdfbb ,_gcfe :=_ad .GetStream (_cgac );if !_gcfe {continue ;};_cadgd ,_gcfe :=_ad .GetName (_cdfbb .Get ("\u0054\u0079\u0070\u0065"));if !_gcfe ||_cadgd .String ()!="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_aecfg ,_gcfe :=_ad .GetName (_cdfbb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_gcfe {continue ;};_affbe [_cdfbb ]=struct{}{};switch _aecfg .String (){case "\u0049\u006d\u0061g\u0065":_fccda ,_abae :=_da .NewXObjectImageFromStream (_cdfbb );if _abae !=nil {continue ;};_affbe [_cdfbb ]=struct{}{};if _afgd (_fccda .ColorSpace ){return _baecc ; +};case "\u0046\u006f\u0072\u006d":_agea ,_dfadc :=_ad .GetDict (_cdfbb .Get ("\u0047\u0072\u006fu\u0070"));if !_dfadc {continue ;};_dcegg :=_agea .Get ("\u0043\u0053");if _dcegg ==nil {continue ;};_cgbge ,_egcc :=_da .NewPdfColorspaceFromPdfObject (_dcegg ); +if _egcc !=nil {continue ;};if _afgd (_cgbge ){return _baecc ;};};};for _ ,_fgbbf :=range _ccae .PageList {_gbe ,_gaca :=_fgbbf .GetContentStreams ();if _gaca !=nil {continue ;};for _ ,_bgea :=range _gbe {_dgbfd ,_aefa :=_cad .NewContentStreamParser (_bgea ).Parse (); +if _aefa !=nil {continue ;};for _ ,_accg :=range *_dgbfd {if len (_accg .Params )> 1{continue ;};switch _accg .Operand {case "\u0042\u0049":_edeab ,_baea :=_accg .Params [0].(*_cad .ContentStreamInlineImage );if !_baea {continue ;};_eeeg ,_fbab :=_edeab .GetColorSpace (_fgbbf .Resources ); +if _fbab !=nil {continue ;};if _afgd (_eeeg ){return _baecc ;};case "\u0044\u006f":_eedf ,_efdf :=_ad .GetName (_accg .Params [0]);if !_efdf {continue ;};_bfef ,_fedf :=_fgbbf .Resources .GetXObjectByName (*_eedf );if _ ,_dbcdf :=_affbe [_bfef ];_dbcdf {continue ; +};switch _fedf {case _da .XObjectTypeImage :_gagg ,_ebgd :=_da .NewXObjectImageFromStream (_bfef );if _ebgd !=nil {continue ;};_affbe [_bfef ]=struct{}{};if _afgd (_gagg .ColorSpace ){return _baecc ;};case _da .XObjectTypeForm :_fgbe ,_fcddf :=_ad .GetDict (_bfef .Get ("\u0047\u0072\u006fu\u0070")); +if !_fcddf {continue ;};_eacda ,_fcddf :=_ad .GetName (_fgbe .Get ("\u0043\u0053"));if !_fcddf {continue ;};_dgdg ,_accge :=_da .NewPdfColorspaceFromPdfObject (_eacda );if _accge !=nil {continue ;};_affbe [_bfef ]=struct{}{};if _afgd (_dgdg ){return _baecc ; +};};};};};};return _baecc ;};func _ebbag (_dbefe *_da .CompliancePdfReader )(_accc ViolatedRule ){_bdgc ,_bgcc :=_acgab (_dbefe );if !_bgcc {return _bg ;};if _bdgc .Get ("\u0052\u0065\u0071u\u0069\u0072\u0065\u006d\u0065\u006e\u0074\u0073")!=nil {return _ba ("\u0036\u002e\u0031\u0031\u002d\u0031","Th\u0065\u0020d\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0063a\u0074\u0061\u006c\u006f\u0067\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020R\u0065q\u0075\u0069\u0072\u0065\u006d\u0065\u006e\u0074s\u0020k\u0065\u0079."); +};return _bg ;};func _cfgd (_dcdc *_da .CompliancePdfReader )(_ceede []ViolatedRule ){var _edadcg ,_abda ,_aggc bool ;if _dcdc .ParserMetadata ().HasNonConformantStream (){_ceede =[]ViolatedRule {_ba ("\u0036.\u0031\u002e\u0037\u002d\u0032","T\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020f\u006f\u006cl\u006fw\u0065\u0064\u0020e\u0069\u0074h\u0065\u0072\u0020\u0062\u0079\u0020\u0061 \u0043\u0041\u0052\u0052I\u0041\u0047\u0045\u0020\u0052E\u0054\u0055\u0052\u004e\u0020\u00280\u0044\u0068\u0029\u0020\u0061\u006e\u0064\u0020\u004c\u0049\u004e\u0045\u0020F\u0045\u0045\u0044\u0020\u0028\u0030\u0041\u0068\u0029\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0071\u0075\u0065\u006e\u0063\u0065\u0020o\u0072\u0020\u0062\u0079\u0020\u0061 \u0073\u0069ng\u006c\u0065\u0020\u004cIN\u0045 \u0046\u0045\u0045\u0044 \u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u002e\u0020T\u0068\u0065\u0020e\u006e\u0064\u0073\u0074r\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062e\u0020p\u0072\u0065\u0063\u0065\u0064\u0065\u0064\u0020\u0062\u0079\u0020\u0061n\u0020\u0045\u004f\u004c \u006d\u0061\u0072\u006b\u0065\u0072\u002e")}; +};for _ ,_agedg :=range _dcdc .GetObjectNums (){_ggcf ,_ :=_dcdc .GetIndirectObjectByNumber (_agedg );if _ggcf ==nil {continue ;};_aabd ,_edgd :=_ad .GetStream (_ggcf );if !_edgd {continue ;};if !_edadcg {_cecf :=_aabd .Get ("\u004c\u0065\u006e\u0067\u0074\u0068"); +if _cecf ==nil {_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0031","\u006e\u006f\u0020'\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074")); +_edadcg =true ;}else {_bcbd ,_faaf :=_ad .GetIntVal (_cecf );if !_faaf {_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0031","s\u0074\u0072\u0065\u0061\u006d\u0020\u0027\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020an\u0020\u0069\u006et\u0065g\u0065\u0072")); +_edadcg =true ;}else {if len (_aabd .Stream )!=_bcbd {_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0031","\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006c\u0065\u006e\u0067th\u0020v\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u0068\u0065\u0020\u0073\u0069\u007a\u0065\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d")); +_edadcg =true ;};};};};if !_abda {if _aabd .Get ("\u0046")!=nil {_abda =true ;_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); +};if _aabd .Get ("\u0046F\u0069\u006c\u0074\u0065\u0072")!=nil &&!_abda {_abda =true ;_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); +continue ;};if _aabd .Get ("\u0046\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u0061\u006d\u0073")!=nil &&!_abda {_abda =true ;_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); +continue ;};};if !_aggc {_bfdbe ,_ecge :=_ad .GetName (_ad .TraceToDirectObject (_aabd .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")));if !_ecge {continue ;};if *_bfdbe ==_ad .StreamEncodingFilterNameLZW {_aggc =true ;_ceede =append (_ceede ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0034","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e")); +};};};return _ceede ;};func _acegf (_gggde *_da .CompliancePdfReader )(_fgfc []ViolatedRule ){_acca :=_gggde .GetObjectNums ();for _ ,_ebgea :=range _acca {_geaf ,_fcfae :=_gggde .GetIndirectObjectByNumber (_ebgea );if _fcfae !=nil {continue ;};_accac ,_egegf :=_ad .GetDict (_geaf ); +if !_egegf {continue ;};_bfcd ,_egegf :=_ad .GetName (_accac .Get ("\u0054\u0079\u0070\u0065"));if !_egegf {continue ;};if _bfcd .String ()!="\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"{continue ;};if _accac .Get ("\u0045\u0046")!=nil {if _accac .Get ("\u0046")==nil ||_accac .Get ("\u0045\u0046")==nil {_fgfc =append (_fgfc ,_ba ("\u0036\u002e\u0038-\u0032","\u0054h\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066i\u0063\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063t\u0069\u006fn\u0061\u0072\u0079\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020t\u0068\u0065\u0020\u0046\u0020a\u006e\u0064\u0020\u0055\u0046\u0020\u006b\u0065\u0079\u0073\u002e")); +};if _accac .Get ("\u0041\u0046\u0052\u0065\u006c\u0061\u0074\u0069\u006fn\u0073\u0068\u0069\u0070")==nil {_fgfc =append (_fgfc ,_ba ("\u0036\u002e\u0038-\u0033","\u0049\u006e\u0020\u006f\u0072d\u0065\u0072\u0020\u0074\u006f\u0020\u0065\u006e\u0061\u0062\u006c\u0065\u0020i\u0064\u0065nt\u0069\u0066\u0069c\u0061\u0074\u0069o\u006e\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073h\u0069\u0070\u0020\u0062\u0065\u0074\u0077\u0065\u0065\u006e\u0020\u0074\u0068\u0065\u0020fi\u006ce\u0020\u0073\u0070\u0065\u0063\u0069f\u0069c\u0061\u0074\u0069o\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020c\u006f\u006e\u0074e\u006e\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0072\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0069\u0074\u002c\u0020\u0061\u0020\u006e\u0065\u0077\u0020(\u0072\u0065\u0071\u0075i\u0072\u0065\u0064\u0029\u0020\u006be\u0079\u0020h\u0061\u0073\u0020\u0062e\u0065\u006e\u0020\u0064\u0065\u0066i\u006e\u0065\u0064\u0020a\u006e\u0064\u0020\u0069\u0074s \u0070\u0072e\u0073\u0065n\u0063\u0065\u0020\u0028\u0069\u006e\u0020\u0074\u0068e\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079\u0029\u0020\u0069\u0073\u0020\u0072\u0065q\u0075\u0069\u0072e\u0064\u002e")); +};break ;};};return _fgfc ;};func _cgcdc (_aacbd *_da .CompliancePdfReader )(_cege []ViolatedRule ){var _aaedf ,_cdbdd ,_edeb ,_egbd ,_ggbg ,_egca ,_bedaf bool ;_dceaa :=func ()bool {return _aaedf &&_cdbdd &&_edeb &&_egbd &&_ggbg &&_egca &&_bedaf };_ggad :=func (_cbef *_ad .PdfObjectDictionary )bool {if !_aaedf &&_cbef .Get ("\u0054\u0052")!=nil {_aaedf =true ; +_cege =append (_cege ,_ba ("\u0036.\u0032\u002e\u0035\u002d\u0031","\u0041\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0054\u0052\u0020\u006b\u0065\u0079\u002e")); +};if _dbef :=_cbef .Get ("\u0054\u0052\u0032");!_cdbdd &&_dbef !=nil {_ecfg ,_cecag :=_ad .GetName (_dbef );if !_cecag ||(_cecag &&*_ecfg !="\u0044e\u0066\u0061\u0075\u006c\u0074"){_cdbdd =true ;_cege =append (_cege ,_ba ("\u0036.\u0032\u002e\u0035\u002d\u0032","\u0041\u006e \u0045\u0078\u0074G\u0053\u0074\u0061\u0074\u0065 \u0064\u0069\u0063\u0074\u0069on\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074a\u0069n\u0020\u0074\u0068\u0065\u0020\u0054R2 \u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076al\u0075e\u0020\u006f\u0074\u0068e\u0072 \u0074h\u0061\u006e \u0044\u0065fa\u0075\u006c\u0074\u002e")); +if _dceaa (){return true ;};};};if !_edeb &&_cbef .Get ("\u0048\u0054\u0050")!=nil {_edeb =true ;_cege =append (_cege ,_ba ("\u0036.\u0032\u002e\u0035\u002d\u0033","\u0041\u006e\u0020\u0045\u0078\u0074\u0047\u0053\u0074\u0061\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020th\u0065\u0020\u0048\u0054\u0050\u0020\u006b\u0065\u0079\u002e")); +};_acegdb ,_cabbe :=_ad .GetDict (_cbef .Get ("\u0048\u0054"));if _cabbe {if _afge :=_acegdb .Get ("\u0048\u0061\u006cf\u0074\u006f\u006e\u0065\u0054\u0079\u0070\u0065");!_egbd &&_afge !=nil {_dbbaf ,_fagab :=_ad .GetInt (_afge );if !_fagab ||(_fagab &&!(*_dbbaf ==1||*_dbbaf ==5)){_cege =append (_cege ,_ba ("\u0020\u0036\u002e\u0032\u002e\u0035\u002d\u0034","\u0041\u006c\u006c\u0020\u0068\u0061\u006c\u0066\u0074\u006f\u006e\u0065\u0073\u0020\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0032\u0020\u0066\u0069\u006ce\u0020\u0073h\u0061\u006c\u006c\u0020h\u0061\u0076\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061l\u0075\u0065\u0020\u0031\u0020\u006f\u0072\u0020\u0035 \u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0048\u0061l\u0066\u0074\u006fn\u0065\u0054\u0079\u0070\u0065\u0020\u006be\u0079\u002e")); +if _dceaa (){return true ;};};};if _cagbg :=_acegdb .Get ("\u0048\u0061\u006cf\u0074\u006f\u006e\u0065\u004e\u0061\u006d\u0065");!_ggbg &&_cagbg !=nil {_ggbg =true ;_cege =append (_cege ,_ba ("\u0036.\u0032\u002e\u0035\u002d\u0035","\u0048\u0061\u006c\u0066\u0074o\u006e\u0065\u0073\u0020\u0069\u006e\u0020a\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0032\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020\u0061\u0020\u0048\u0061\u006c\u0066\u0074\u006f\u006e\u0065N\u0061\u006d\u0065\u0020\u006b\u0065y\u002e")); +if _dceaa (){return true ;};};};_ ,_agcf :=_faad (_aacbd );var _bgdc bool ;_decf ,_cabbe :=_ad .GetDict (_cbef .Get ("\u0047\u0072\u006fu\u0070"));if _cabbe {_ ,_ecbf :=_ad .GetName (_decf .Get ("\u0043\u0053"));if _ecbf {_bgdc =true ;};};if _dfgfc :=_cbef .Get ("\u0042\u004d"); +!_egca &&!_bedaf &&_dfgfc !=nil {_debgf ,_fbada :=_ad .GetName (_dfgfc );if _fbada {switch _debgf .String (){case "\u004e\u006f\u0072\u006d\u0061\u006c","\u0043\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u006c\u0065","\u004d\u0075\u006c\u0074\u0069\u0070\u006c\u0079","\u0053\u0063\u0072\u0065\u0065\u006e","\u004fv\u0065\u0072\u006c\u0061\u0079","\u0044\u0061\u0072\u006b\u0065\u006e","\u004ci\u0067\u0068\u0074\u0065\u006e","\u0043\u006f\u006c\u006f\u0072\u0044\u006f\u0064\u0067\u0065","\u0043o\u006c\u006f\u0072\u0042\u0075\u0072n","\u0048a\u0072\u0064\u004c\u0069\u0067\u0068t","\u0053o\u0066\u0074\u004c\u0069\u0067\u0068t","\u0044\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0063\u0065","\u0045x\u0063\u006c\u0075\u0073\u0069\u006fn","\u0048\u0075\u0065","\u0053\u0061\u0074\u0075\u0072\u0061\u0074\u0069\u006f\u006e","\u0043\u006f\u006co\u0072","\u004c\u0075\u006d\u0069\u006e\u006f\u0073\u0069\u0074\u0079":default:_egca =true ; +_cege =append (_cege ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0031","\u004f\u006el\u0079\u0020\u0062\u006c\u0065\u006e\u0064\u0020\u006d\u006f\u0064\u0065\u0073\u0020\u0074h\u0061\u0074\u0020\u0061\u0072\u0065\u0020\u0073\u0070\u0065c\u0069\u0066\u0069ed\u0020\u0069\u006e\u0020\u0049\u0053O\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031\u003a2\u0030\u0030\u0038\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0075\u0073\u0065\u0064\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065 \u0076\u0061\u006c\u0075e\u0020\u006f\u0066\u0020\u0074\u0068e\u0020\u0042M\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0061\u006e\u0020\u0065\u0078t\u0065\u006e\u0064\u0065\u0064\u0020\u0067\u0072\u0061\u0070\u0068\u0069\u0063\u0020\u0073\u0074\u0061\u0074\u0065 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); +if _dceaa (){return true ;};};if _debgf .String ()!="\u004e\u006f\u0072\u006d\u0061\u006c"&&!_agcf &&!_bgdc {_bedaf =true ;_cege =append (_cege ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); +if _dceaa (){return true ;};};};};if _ ,_cabbe =_ad .GetDict (_cbef .Get ("\u0053\u004d\u0061s\u006b"));!_bedaf &&_cabbe &&!_agcf &&!_bgdc {_bedaf =true ;_cege =append (_cege ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); +if _dceaa (){return true ;};};if _abfa :=_cbef .Get ("\u0043\u0041");!_bedaf &&_abfa !=nil &&!_agcf &&!_bgdc {_agbc ,_bcgbf :=_ad .GetNumberAsFloat (_abfa );if _bcgbf ==nil &&_agbc < 1.0{_bedaf =true ;_cege =append (_cege ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); +if _dceaa (){return true ;};};};if _faec :=_cbef .Get ("\u0063\u0061");!_bedaf &&_faec !=nil &&!_agcf &&!_bgdc {_ffab ,_aaeec :=_ad .GetNumberAsFloat (_faec );if _aaeec ==nil &&_ffab < 1.0{_bedaf =true ;_cege =append (_cege ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0032","\u0049\u0066\u0020\u0074\u0068\u0065 \u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0064\u006f\u0065\u0073\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020P\u0044\u0046\u002f\u0041\u0020\u004f\u0075\u0074\u0070u\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u006e\u0020\u0061\u006c\u006c\u0020\u0050\u0061\u0067\u0065\u0020\u006f\u0062\u006a\u0065\u0063t\u0073\u0020\u0074\u0068a\u0074 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063l\u0075\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006b\u0065y\u002c a\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0061\u0074\u0074\u0072\u0069\u0062\u0075\u0074\u0065\u0020\u0064\u0069c\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0066\u006f\u0072\u006d\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0061\u0074\u0020\u0047\u0072\u006fu\u0070\u0020\u006b\u0065y\u0020sh\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075d\u0065\u0020\u0061\u0020\u0043\u0053\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0077\u0068\u006fs\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065 \u0075\u0073\u0065\u0064\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0064\u0065\u0066\u0061\u0075\u006c\u0074\u0020\u0062\u006c\u0065\u006e\u0064\u0069n\u0067 \u0063\u006f\u006c\u006f\u0075\u0072\u0020\u0073p\u0061\u0063\u0065\u002e")); +if _dceaa (){return true ;};};};return false ;};for _ ,_bbceg :=range _aacbd .PageList {_eabc :=_bbceg .Resources ;if _eabc ==nil {continue ;};if _eabc .ExtGState ==nil {continue ;};_deafe ,_ecdgc :=_ad .GetDict (_eabc .ExtGState );if !_ecdgc {continue ; +};_bdaf :=_deafe .Keys ();for _ ,_gfecg :=range _bdaf {_aebb ,_gfgdb :=_ad .GetDict (_deafe .Get (_gfecg ));if !_gfgdb {continue ;};if _ggad (_aebb ){return _cege ;};};};for _ ,_adea :=range _aacbd .PageList {_afaa :=_adea .Resources ;if _afaa ==nil {continue ; +};_bdcf ,_cagbd :=_ad .GetDict (_afaa .XObject );if !_cagbd {continue ;};for _ ,_bddc :=range _bdcf .Keys (){_ddde ,_edfbg :=_ad .GetStream (_bdcf .Get (_bddc ));if !_edfbg {continue ;};_efgae ,_edfbg :=_ad .GetDict (_ddde .Get ("\u0052e\u0073\u006f\u0075\u0072\u0063\u0065s")); +if !_edfbg {continue ;};_gbgeb ,_edfbg :=_ad .GetDict (_efgae .Get ("\u0045x\u0074\u0047\u0053\u0074\u0061\u0074e"));if !_edfbg {continue ;};for _ ,_ffec :=range _gbgeb .Keys (){_dbfb ,_fcdb :=_ad .GetDict (_gbgeb .Get (_ffec ));if !_fcdb {continue ;}; +if _ggad (_dbfb ){return _cege ;};};};};return _cege ;}; -// NewProfile2B creates a new Profile2B with the given options. -func NewProfile2B (options *Profile2Options )*Profile2B {if options ==nil {options =DefaultProfile2Options ();};_ccdfb (options );return &Profile2B {profile2 {_afcg :*options ,_bedf :_eed ()}};};func (_cfe *documentImages )hasOnlyDeviceGray ()bool {return _cfe ._ca &&!_cfe ._cff &&!_cfe ._cgf }; -func _gcfd (_bebc *_b .CompliancePdfReader )ViolatedRule {_dee ,_ddbd :=_bebc .GetTrailer ();if _ddbd !=nil {_cf .Log .Debug ("\u0043\u0061\u006en\u006f\u0074\u0020\u0067e\u0074\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u003a\u0020\u0025\u0076",_ddbd ); -return _da ;};_dafb ,_dege :=_dee .Get ("\u0052\u006f\u006f\u0074").(*_fc .PdfObjectReference );if !_dege {_cf .Log .Debug ("\u0043a\u006e\u006e\u006f\u0074 \u0066\u0069\u006e\u0064\u0020d\u006fc\u0075m\u0065\u006e\u0074\u0020\u0072\u006f\u006ft");return _da ; -};_dfgcf ,_dege :=_fc .GetDict (_fc .ResolveReference (_dafb ));if !_dege {_cf .Log .Debug ("\u0063\u0061\u006e\u006e\u006f\u0074 \u0072\u0065\u0073\u006f\u006c\u0076\u0065\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -return _da ;};if _dfgcf .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073")!=nil {return _fe ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u0064\u006f\u0063u\u006d\u0065\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020s\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u0020\u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0074\u0068\u0065\u0020\u006e\u0061\u006d\u0065\u0020\u004f\u0043\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073"); -};return _da ;};func _daae (_edcgb *_b .PdfFont ,_bgde *_fc .PdfObjectDictionary )ViolatedRule {const (_feca ="\u0036.\u0033\u002e\u0037\u002d\u0031";_ffcf ="\u0041\u006cl \u006e\u006f\u006e\u002d\u0073\u0079\u006db\u006f\u006c\u0069\u0063\u0020\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065\u0020\u0066o\u006e\u0074s\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020e\u0069\u0074h\u0065\u0072\u0020\u004d\u0061\u0063\u0052\u006f\u006d\u0061\u006e\u0045\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0057\u0069\u006e\u0041\u006e\u0073i\u0045n\u0063\u006f\u0064\u0069n\u0067\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0066o\u0072\u0020t\u0068\u0065 \u0045n\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006b\u0065\u0079 \u0069\u006e\u0020t\u0068e\u0020\u0046o\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u006f\u0072\u0020\u0061\u0073\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0066\u006f\u0072 \u0074\u0068\u0065\u0020\u0042\u0061\u0073\u0065\u0045\u006e\u0063\u006fd\u0069\u006e\u0067\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0074\u0068\u0065 \u0064i\u0063\u0074i\u006fn\u0061\u0072\u0079\u0020\u0077\u0068\u0069\u0063\u0068\u0020\u0069s\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0074\u0068e\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006be\u0079\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0046\u006f\u006e\u0074 \u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079\u002e\u0020\u0049\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e, \u006eo\u0020n\u006f\u006e\u002d\u0073\u0079\u006d\u0062\u006f\u006c\u0069\u0063\u0020\u0054\u0072\u0075\u0065\u0054\u0079p\u0065 \u0066\u006f\u006e\u0074\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0020\u0061\u0020\u0044\u0069\u0066\u0066e\u0072\u0065\u006e\u0063\u0065\u0073\u0020a\u0072\u0072\u0061\u0079\u0020\u0075n\u006c\u0065s\u0073\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0074h\u0065\u0020\u0067\u006c\u0079\u0070\u0068\u0020\u006e\u0061\u006d\u0065\u0073 \u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0044\u0069f\u0066\u0065\u0072\u0065\u006ec\u0065\u0073\u0020a\u0072\u0072\u0061\u0079\u0020\u0061\u0072\u0065\u0020\u006c\u0069\u0073\u0074\u0065\u0064 \u0069\u006e \u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065 G\u006c\u0079\u0070\u0068\u0020\u004c\u0069\u0073t\u0020\u0061\u006e\u0064\u0020\u0074h\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066o\u006e\u0074\u0020\u0070\u0072\u006f\u0067\u0072a\u006d\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0073\u0020\u0061\u0074\u0020\u006c\u0065\u0061\u0073t\u0020\u0074\u0068\u0065\u0020\u004d\u0069\u0063\u0072o\u0073o\u0066\u0074\u0020\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0020\u0028\u0033\u002c\u0031 \u2013 P\u006c\u0061\u0074\u0066\u006f\u0072\u006d\u0020I\u0044\u003d\u0033\u002c\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067 I\u0044\u003d\u0031\u0029\u0020\u0065\u006e\u0063\u006f\u0064i\u006e\u0067 \u0069\u006e\u0020t\u0068\u0065\u0020'\u0063\u006d\u0061\u0070\u0027\u0020\u0074\u0061\u0062\u006c\u0065\u002e"; -);var _aecd string ;if _deedf ,_bgfg :=_fc .GetName (_bgde .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_bgfg {_aecd =_deedf .String ();};if _aecd !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _da ;};_gafe :=_edcgb .FontDescriptor ();_bdge ,_efcg :=_fc .GetIntVal (_gafe .Flags ); -if !_efcg {_cf .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); -return _fe (_feca ,_ffcf );};_dgcg :=(uint32 (_bdge )>>3)!=0;if _dgcg {return _da ;};_fgfb ,_efcg :=_fc .GetName (_bgde .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"));if !_efcg {return _fe (_feca ,_ffcf );};switch _fgfb .String (){case "\u004d\u0061c\u0052\u006f\u006da\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067","\u0057i\u006eA\u006e\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067":return _da ; -default:return _fe (_feca ,_ffcf );};};func _cdcaa (_affge *_fc .PdfObjectDictionary ,_acdda map[*_fc .PdfObjectStream ][]byte ,_efff map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_ebgbd ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0037\u002d\u0031"; -_cegb ="\u0054\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006cl\u0020\u0069\u006e\u0063l\u0075\u0064e\u0020\u0061 \u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0020\u0065\u006e\u0074\u0072\u0079\u0020w\u0068\u006f\u0073\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073 \u0061\u0020\u0043M\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u006d\u0061p\u0073\u0020\u0063\u0068\u0061\u0072ac\u0074\u0065\u0072\u0020\u0063\u006fd\u0065s\u0020\u0074\u006f\u0020\u0055\u006e\u0069\u0063\u006f\u0064e \u0076a\u006c\u0075\u0065\u0073,\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063r\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020P\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0035.\u0039\u002c\u0020\u0075\u006e\u006ce\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u006d\u0065\u0065\u0074\u0073 \u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u0020\u0074\u0068\u0072\u0065\u0065\u0020\u0063\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u003a\u000a\u0020\u002d\u0020\u0066o\u006e\u0074\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0073\u0020M\u0061\u0063\u0052o\u006d\u0061\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074E\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0057\u0069\u006e\u0041n\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u006f\u0072\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020t\u0068\u0065\u0020\u0070\u0072\u0065d\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048\u0020\u006f\u0072\u0020\u0049\u0064\u0065n\u0074\u0069\u0074\u0079\u002d\u0056\u0020C\u004d\u0061\u0070s\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u006e\u0061\u006d\u0065\u0073\u0020a\u0072\u0065 \u0074\u0061k\u0065\u006e\u0020\u0066\u0072\u006f\u006d\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u0020\u0073\u0074\u0061n\u0064\u0061\u0072\u0064\u0020L\u0061t\u0069\u006e\u0020\u0063\u0068a\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0074\u0020\u006fr\u0020\u0074\u0068\u0065 \u0073\u0065\u0074\u0020\u006f\u0066 \u006e\u0061\u006d\u0065\u0064\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0066\u006f\u006e\u0074\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046 \u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0041\u0070\u0070\u0065\u006e\u0064\u0069\u0078 \u0044\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020w\u0068\u006f\u0073e\u0020d\u0065\u0073\u0063\u0065n\u0064\u0061\u006e\u0074 \u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0075\u0073\u0065\u0073\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u0047B\u0031\u002c\u0020\u0041\u0064\u006fb\u0065\u002d\u0043\u004e\u0053\u0031\u002c\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004a\u0061\u0070\u0061\u006e\u0031\u0020\u006f\u0072\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004b\u006fr\u0065\u0061\u0031\u0020\u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u006c\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u0073\u002e"; -);_bfed ,_ggac :=_fc .GetStream (_affge .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e"));if _ggac {_ ,_gdgdf :=_fgfdc (_bfed ,_acdda ,_efff );if _gdgdf !=nil {return _fe (_ebgbd ,_cegb );};return _da ;};_fdbf ,_ggac :=_fc .GetName (_affge .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -if !_ggac {return _fe (_ebgbd ,_cegb );};switch _fdbf .String (){case "\u0054\u0079\u0070e\u0031":return _da ;};return _fe (_ebgbd ,_cegb );};func _daedb (_faba *_b .CompliancePdfReader )(_aggd []ViolatedRule ){var _aaga ,_eebf ,_abeg ,_afggc ,_fbfb ,_afdb bool ; -_bfbfab :=func ()bool {return _aaga &&_eebf &&_abeg &&_afggc &&_fbfb &&_afdb };for _ ,_dcce :=range _faba .PageList {if _dcce .Resources ==nil {continue ;};_gbbe ,_abecb :=_fc .GetDict (_dcce .Resources .Font );if !_abecb {continue ;};for _ ,_bbcc :=range _gbbe .Keys (){_eeeaf ,_fbbf :=_fc .GetDict (_gbbe .Get (_bbcc )); -if !_fbbf {if !_aaga {_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0031","\u0041\u006c\u006c\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u006e\u0064\u0020\u0066on\u0074 \u0070\u0072\u006fg\u0072\u0061\u006ds\u0020\u0075\u0073\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072mi\u006e\u0067\u0020\u0066\u0069\u006ce\u002c\u0020\u0072\u0065\u0067\u0061\u0072\u0064\u006c\u0065s\u0073\u0020\u006f\u0066\u0020\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006eg m\u006f\u0064\u0065\u0020\u0075\u0073\u0061\u0067\u0065\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0074\u0068e\u0020\u0070\u0072o\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u0020\u0069\u006e \u0049\u0053\u004f\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031:\u0032\u0030\u0030\u0038\u002c \u0039\u002e\u0036\u0020a\u006e\u0064\u0020\u0039.\u0037\u002e")); -_aaga =true ;if _bfbfab (){return _aggd ;};};continue ;};if _bbbb ,_eefb :=_fc .GetName (_eeeaf .Get ("\u0054\u0079\u0070\u0065"));!_aaga &&(!_eefb ||_bbbb .String ()!="\u0046\u006f\u006e\u0074"){_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0031","\u0054\u0079\u0070e\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0029 Th\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066 \u0050\u0044\u0046\u0020\u006fbj\u0065\u0063\u0074\u0020\u0074\u0068\u0061t\u0020\u0074\u0068\u0069s\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0064\u0065\u0073c\u0072\u0069\u0062\u0065\u0073\u003b\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0046\u006f\u006e\u0074\u0020\u0066\u006fr\u0020\u0061\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); -_aaga =true ;if _bfbfab (){return _aggd ;};};_edge ,_cbgbg :=_b .NewPdfFontFromPdfObject (_eeeaf );if _cbgbg !=nil {continue ;};var _eeef string ;if _afcgb ,_fdef :=_fc .GetName (_eeeaf .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_fdef {_eeef =_afcgb .String (); -};if !_eebf {switch _eeef {case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0031","\u004dM\u0054\u0079\u0070\u0065\u0031","\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":default:_eebf =true ; -_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0032","\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065d\u0029\u0020\u0054\u0068e \u0074\u0079\u0070\u0065 \u006f\u0066\u0020\u0066\u006f\u006et\u003b\u0020\u006d\u0075\u0073\u0074\u0020b\u0065\u0020\u0022\u0054\u0079\u0070\u0065\u0031\u0022\u0020f\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020f\u006f\u006e\u0074\u0073\u002c\u0020\u0022\u004d\u004d\u0054\u0079\u0070\u0065\u0031\u0022\u0020\u0066\u006f\u0072\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020\u006da\u0073\u0074e\u0072\u0020\u0066\u006f\u006e\u0074s\u002c\u0020\u0022\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0022\u0054\u0079\u0070\u0065\u0033\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070e\u0020\u0033\u0020\u0066\u006f\u006e\u0074\u0073\u002c\u0020\"\u0054\u0079\u0070\u0065\u0030\"\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u006ed\u0020\u0022\u0043\u0049\u0044\u0046\u006fn\u0074\u0054\u0079\u0070\u0065\u0030\u0022 \u006f\u0072\u0020\u0022\u0043\u0049\u0044\u0046\u006f\u006e\u0074T\u0079\u0070e\u0032\u0022\u0020\u0066\u006f\u0072\u0020\u0043\u0049\u0044\u0020\u0066\u006f\u006e\u0074\u0073\u002e")); -if _bfbfab (){return _aggd ;};};};if !_abeg {if _eeef !="\u0054\u0079\u0070e\u0033"{_bbabf ,_bcfba :=_fc .GetName (_eeeaf .Get ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074"));if !_bcfba ||_bbabf .String ()==""{_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0033","B\u0061\u0073\u0065\u0046\u006f\u006e\u0074\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064)\u0020T\u0068\u0065\u0020\u0050o\u0073\u0074S\u0063\u0072\u0069\u0070\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u002e")); -_abeg =true ;if _bfbfab (){return _aggd ;};};};};if _eeef !="\u0054\u0079\u0070e\u0031"{continue ;};_eggec :=_aec .IsStdFont (_aec .StdFontName (_edge .BaseFont ()));if _eggec {continue ;};_efdgf ,_dgbd :=_fc .GetIntVal (_eeeaf .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r")); -if !_dgbd &&!_afggc {_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0034","\u0046\u0069r\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u0073\u0074\u0061\u006e\u0064\u0061\u0072d\u0020\u0031\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u0029\u0020\u0054\u0068\u0065\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064e\u0020\u0064\u0065\u0066i\u006ee\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057i\u0064\u0074\u0068\u0073 \u0061r\u0072\u0061y\u002e")); -_afggc =true ;if _bfbfab (){return _aggd ;};};_dedbd ,_adfe :=_fc .GetIntVal (_eeeaf .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072"));if !_adfe &&!_fbfb {_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0035","\u004c\u0061\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069n\u0074\u0065\u0067e\u0072 \u002d\u0020\u0028\u0052\u0065\u0071u\u0069\u0072\u0065d\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0066\u006f\u0072\u0020t\u0068\u0065 s\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0031\u0034\u0020\u0066\u006f\u006ets\u0029\u0020\u0054\u0068\u0065\u0020\u006c\u0061\u0073t\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057\u0069\u0064\u0074h\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u002e")); -_fbfb =true ;if _bfbfab (){return _aggd ;};};if !_afdb {_cdgb ,_adeb :=_fc .GetArray (_eeeaf .Get ("\u0057\u0069\u0064\u0074\u0068\u0073"));if !_adeb ||!_dgbd ||!_adfe ||_cdgb .Len ()!=_dedbd -_efdgf +1{_aggd =append (_aggd ,_fe ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0036","\u0057\u0069\u0064\u0074\u0068\u0073\u0020\u002d a\u0072\u0072\u0061y \u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0073\u0074a\u006e\u0064a\u0072\u0064\u00201\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u003b\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0070\u0072\u0065\u0066e\u0072\u0072e\u0064\u0029\u0020\u0041\u006e \u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0066\u0020\u0028\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u2212 F\u0069\u0072\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u002b\u00201\u0029\u0020\u0077\u0069\u0064\u0074\u0068\u0073.")); -_afdb =true ;if _bfbfab (){return _aggd ;};};};};};return _aggd ;};func (_bb standardType )outputIntentSubtype ()_b .PdfOutputIntentType {switch _bb ._bdc {case 1:return _b .PdfOutputIntentTypeA1 ;case 2:return _b .PdfOutputIntentTypeA2 ;case 3:return _b .PdfOutputIntentTypeA3 ; -case 4:return _b .PdfOutputIntentTypeA4 ;default:return 0;};};func _becd (_dfgcfe *_fc .PdfObjectDictionary ,_efabb map[*_fc .PdfObjectStream ][]byte ,_bgeb map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_gcage ="\u0046\u006f\u0072 \u0061\u006e\u0079\u0020\u0067\u0069\u0076\u0065\u006e\u0020\u0063\u006f\u006d\u0070\u006f\u0073\u0069\u0074\u0065\u0020\u0028\u0054\u0079\u0070\u0065\u0020\u0030\u0029\u0020\u0066\u006f\u006et \u0072\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0064 \u0077\u0069\u0074\u0068\u0069\u006e\u0020\u0061\u0020\u0063\u006fn\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0043I\u0044\u0053y\u0073\u0074\u0065\u006d\u0049nf\u006f\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u006f\u0066\u0020i\u0074\u0073\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0061\u006e\u0064 \u0043\u004d\u0061\u0070 \u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0063\u006f\u006d\u0070\u0061\u0074i\u0062\u006c\u0065\u002e\u0020\u0049\u006e\u0020o\u0074\u0068\u0065\u0072\u0020\u0077\u006f\u0072\u0064\u0073\u002c\u0020\u0074\u0068\u0065\u0020R\u0065\u0067\u0069\u0073\u0074\u0072\u0079\u0020a\u006e\u0064\u0020\u004fr\u0064\u0065\u0072\u0069\u006e\u0067 \u0073\u0074\u0072i\u006e\u0067\u0073\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0043\u0049\u0044\u0053\u0079\u0073\u0074\u0065\u006d\u0049\u006e\u0066\u006f\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0066\u006f\u0072 \u0074\u0068\u0061\u0074\u0020\u0066o\u006e\u0074\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0063\u0061\u006c\u002c\u0020u\u006el\u0065ss \u0074\u0068\u0065\u0020\u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006eg\u0020\u006b\u0065\u0079\u0020\u0069\u006e\u0020\u0074h\u0065 \u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0069\u0073 \u0049\u0064\u0065\u006e\u0074\u0069t\u0079\u002d\u0048\u0020o\u0072\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074y\u002dV\u002e"; -_dgf ="\u0036.\u0033\u002e\u0033\u002d\u0031";);var _gddf string ;if _bgag ,_fafd :=_fc .GetName (_dfgcfe .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_fafd {_gddf =_bgag .String ();};if _gddf !="\u0054\u0079\u0070e\u0030"{return _da ;};_gbba :=_dfgcfe .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -if _dfabd ,_bggda :=_fc .GetName (_gbba );_bggda {switch _dfabd .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _da ;};_ceeaf ,_gdgb :=_gc .LoadPredefinedCMap (_dfabd .String ()); -if _gdgb !=nil {return _fe (_dgf ,_gcage );};_dbba :=_ceeaf .CIDSystemInfo ();if _dbba .Ordering !=_dbba .Registry {return _fe (_dgf ,_gcage );};return _da ;};_fcfaa ,_edcc :=_fc .GetStream (_gbba );if !_edcc {return _fe (_dgf ,_gcage );};_dadb ,_fddc :=_fgfdc (_fcfaa ,_efabb ,_bgeb ); -if _fddc !=nil {return _fe (_dgf ,_gcage );};_egab :=_dadb .CIDSystemInfo ();if _egab .Ordering !=_egab .Registry {return _fe (_dgf ,_gcage );};return _da ;};func _afdd (_gcbf *_ag .Document )error {_fecd ,_ffa :=_gcbf .FindCatalog ();if !_ffa {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); -};if _fecd .Object .Get ("\u0052\u0065\u0071u\u0069\u0072\u0065\u006d\u0065\u006e\u0074\u0073")!=nil {_fecd .Object .Remove ("\u0052\u0065\u0071u\u0069\u0072\u0065\u006d\u0065\u006e\u0074\u0073");};return nil ;}; +// Validate checks if provided input document reader matches given PDF/A profile. +func Validate (d *_da .CompliancePdfReader ,profile Profile )error {return profile .ValidateStandard (d )};func _bae (_gacdg *_ea .Document ,_dccf int )error {_egfa :=map[*_ad .PdfObjectStream ]struct{}{};for _ ,_acga :=range _gacdg .Objects {_dbffc ,_gfcc :=_ad .GetStream (_acga ); +if !_gfcc {continue ;};if _ ,_gfcc =_egfa [_dbffc ];_gfcc {continue ;};_egfa [_dbffc ]=struct{}{};_ecg ,_gfcc :=_ad .GetName (_dbffc .Get ("\u0053u\u0062\u0054\u0079\u0070\u0065"));if !_gfcc {continue ;};if _dbffc .Get ("\u0052\u0065\u0066")!=nil {_dbffc .Remove ("\u0052\u0065\u0066"); +};if _ecg .String ()=="\u0050\u0053"{_dbffc .Remove ("\u0050\u0053");continue ;};if _ecg .String ()=="\u0046\u006f\u0072\u006d"{if _dbffc .Get ("\u004f\u0050\u0049")!=nil {_dbffc .Remove ("\u004f\u0050\u0049");};if _dbffc .Get ("\u0050\u0053")!=nil {_dbffc .Remove ("\u0050\u0053"); +};if _abg :=_dbffc .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");_abg !=nil {if _acee ,_fdcf :=_ad .GetName (_abg );_fdcf &&*_acee =="\u0050\u0053"{_dbffc .Remove ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");};};continue ;};if _ecg .String ()=="\u0049\u006d\u0061g\u0065"{_fcge ,_afdb :=_ad .GetBool (_dbffc .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065")); +if _afdb &&bool (*_fcge ){_dbffc .Set ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065",_ad .MakeBool (false ));};if _dccf ==2{if _dbffc .Get ("\u004f\u0050\u0049")!=nil {_dbffc .Remove ("\u004f\u0050\u0049");};};if _dbffc .Get ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073")!=nil {_dbffc .Remove ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073"); +};continue ;};};return nil ;};func _bfba (_gagfa *_da .CompliancePdfReader )ViolatedRule {for _ ,_eabd :=range _gagfa .PageList {_gdeg ,_dbcc :=_eabd .GetContentStreams ();if _dbcc !=nil {continue ;};for _ ,_fecd :=range _gdeg {_gbdc :=_cad .NewContentStreamParser (_fecd ); +_ ,_dbcc =_gbdc .Parse ();if _dbcc !=nil {return _ba ("\u0036.\u0032\u002e\u0032\u002d\u0031","\u0041\u0020\u0063onten\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u0061\u006c\u006c n\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079 \u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u0020\u006e\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0065\u0076\u0065\u006e\u0020\u0069\u0066\u0020s\u0075\u0063\u0068\u0020\u006f\u0070\u0065r\u0061\u0074\u006f\u0072\u0073\u0020\u0061\u0072\u0065\u0020\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0065\u0064\u0020\u0062\u0079\u0020\u0074\u0068\u0065\u0020\u0042\u0058\u002f\u0045\u0058\u0020\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062i\u006c\u0069\u0074\u0079\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u002e"); +};};};return _bg ;};func _dbb (_dag *_ea .Document ){if _dag .ID [0]!=""&&_dag .ID [1]!=""{return ;};_dag .UseHashBasedID =true ;}; -// NewProfile1B creates a new Profile1B with the given options. -func NewProfile1B (options *Profile1Options )*Profile1B {if options ==nil {options =DefaultProfile1Options ();};_feebb (options );return &Profile1B {profile1 {_fgad :*options ,_bacb :_gd ()}};};func _adegd (_efge *_b .CompliancePdfReader )(_gdcg []ViolatedRule ){var _gdee ,_faade ,_beeb bool ; -if _efge .ParserMetadata ().HasNonConformantStream (){_gdcg =[]ViolatedRule {_fe ("\u0036.\u0031\u002e\u0037\u002d\u0032","T\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020f\u006f\u006cl\u006fw\u0065\u0064\u0020e\u0069\u0074h\u0065\u0072\u0020\u0062\u0079\u0020\u0061 \u0043\u0041\u0052\u0052I\u0041\u0047\u0045\u0020\u0052E\u0054\u0055\u0052\u004e\u0020\u00280\u0044\u0068\u0029\u0020\u0061\u006e\u0064\u0020\u004c\u0049\u004e\u0045\u0020F\u0045\u0045\u0044\u0020\u0028\u0030\u0041\u0068\u0029\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0071\u0075\u0065\u006e\u0063\u0065\u0020o\u0072\u0020\u0062\u0079\u0020\u0061 \u0073\u0069ng\u006c\u0065\u0020\u004cIN\u0045 \u0046\u0045\u0045\u0044 \u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u002e\u0020T\u0068\u0065\u0020e\u006e\u0064\u0073\u0074r\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062e\u0020p\u0072\u0065\u0063\u0065\u0064\u0065\u0064\u0020\u0062\u0079\u0020\u0061n\u0020\u0045\u004f\u004c \u006d\u0061\u0072\u006b\u0065\u0072\u002e")}; -};for _ ,_cgcca :=range _efge .GetObjectNums (){_ddbdc ,_ :=_efge .GetIndirectObjectByNumber (_cgcca );if _ddbdc ==nil {continue ;};_aaeb ,_ccdff :=_fc .GetStream (_ddbdc );if !_ccdff {continue ;};if !_gdee {_gdabf :=_aaeb .Get ("\u004c\u0065\u006e\u0067\u0074\u0068"); -if _gdabf ==nil {_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0031","\u006e\u006f\u0020'\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074")); -_gdee =true ;}else {_facbf ,_adege :=_fc .GetIntVal (_gdabf );if !_adege {_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0031","s\u0074\u0072\u0065\u0061\u006d\u0020\u0027\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020an\u0020\u0069\u006et\u0065g\u0065\u0072")); -_gdee =true ;}else {if len (_aaeb .Stream )!=_facbf {_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0031","\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006c\u0065\u006e\u0067th\u0020v\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u0068\u0065\u0020\u0073\u0069\u007a\u0065\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d")); -_gdee =true ;};};};};if !_faade {if _aaeb .Get ("\u0046")!=nil {_faade =true ;_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); -};if _aaeb .Get ("\u0046F\u0069\u006c\u0074\u0065\u0072")!=nil &&!_faade {_faade =true ;_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); -continue ;};if _aaeb .Get ("\u0046\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u0061\u006d\u0073")!=nil &&!_faade {_faade =true ;_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); -continue ;};};if !_beeb {_bdccca ,_cgaf :=_fc .GetName (_fc .TraceToDirectObject (_aaeb .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")));if !_cgaf {continue ;};if *_bdccca ==_fc .StreamEncodingFilterNameLZW {_beeb =true ;_gdcg =append (_gdcg ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0034","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e")); -};};};return _gdcg ;};var _ Profile =(*Profile1A )(nil );func _fdcf (_dgee *_b .CompliancePdfReader )ViolatedRule {return _da };func _cbcb (_dbaa *_b .CompliancePdfReader )[]ViolatedRule {return nil };func _aabf (_fdae *_b .PdfFont ,_fcbf *_fc .PdfObjectDictionary )ViolatedRule {const (_gfce ="\u0036.\u0033\u002e\u0037\u002d\u0032"; -_eegbb ="\u0041l\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0069\u0063\u0020\u0054\u0072u\u0065\u0054\u0079p\u0065\u0020\u0066\u006f\u006e\u0074s\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0061\u006e\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065n\u0074\u0072\u0079\u0020\u0069n\u0020\u0074\u0068e\u0020\u0066\u006f\u006e\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"; -);var _fbgf string ;if _ebgbb ,_acea :=_fc .GetName (_fcbf .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_acea {_fbgf =_ebgbb .String ();};if _fbgf !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _da ;};_abedb :=_fdae .FontDescriptor ();_cddd ,_afad :=_fc .GetIntVal (_abedb .Flags ); -if !_afad {_cf .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); -return _fe (_gfce ,_eegbb );};_fbdd :=(uint32 (_cddd )>>3)&1;_fcfb :=_fbdd !=0;if !_fcfb {return _da ;};if _fcbf .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")!=nil {return _fe (_gfce ,_eegbb );};return _da ;};func _bggf (_bcfb *_b .CompliancePdfReader )(_gbagg ViolatedRule ){_cge ,_fgg :=_faac (_bcfb ); -if !_fgg {return _da ;};_gecg ,_fgg :=_fc .GetDict (_cge .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));if !_fgg {return _da ;};_gefg ,_fgg :=_fc .GetArray (_gecg .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_fgg {return _da ;};for _ddcfe :=0; -_ddcfe < _gefg .Len ();_ddcfe ++{_fdfd ,_afgb :=_fc .GetDict (_gefg .Get (_ddcfe ));if !_afgb {continue ;};if _fdfd .Get ("\u0041\u0041")!=nil {return _fe ("\u0036.\u0036\u002e\u0032\u002d\u0032","\u0041\u0020F\u0069\u0065\u006cd\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079 s\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061n\u0020A\u0041\u0020\u0065\u006e\u0074\u0072y f\u006f\u0072\u0020\u0061\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069on\u0061l\u002d\u0061\u0063\u0074i\u006fn\u0073 \u0064\u0069c\u0074\u0069on\u0061\u0072\u0079\u002e"); -};};return _da ;};func _faef (_eaadd *_b .CompliancePdfReader )ViolatedRule {for _ ,_gba :=range _eaadd .PageList {_ddab ,_cbec :=_gba .GetContentStreams ();if _cbec !=nil {continue ;};for _ ,_bgggf :=range _ddab {_bgdd :=_fbg .NewContentStreamParser (_bgggf ); -_ ,_cbec =_bgdd .Parse ();if _cbec !=nil {return _fe ("\u0036\u002e\u0032\u002e\u0031\u0030\u002d\u0031","\u0041\u0020\u0063onten\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u0061\u006c\u006c n\u006f\u0074\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079 \u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u0020\u006e\u006ft\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0065\u0076\u0065\u006e\u0020\u0069\u0066\u0020s\u0075\u0063\u0068\u0020\u006f\u0070\u0065r\u0061\u0074\u006f\u0072\u0073\u0020\u0061\u0072\u0065\u0020\u0062\u0072\u0061\u0063\u006b\u0065\u0074\u0065\u0064\u0020\u0062\u0079\u0020\u0074\u0068\u0065\u0020\u0042\u0058\u002f\u0045\u0058\u0020\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062i\u006c\u0069\u0074\u0079\u0020\u006f\u0070\u0065\u0072\u0061\u0074\u006f\u0072\u0073\u002e"); -};};};return _da ;};func _gefe (_aace *_ag .Document )error {_cbdc ,_fcde :=_aace .GetPages ();if !_fcde {return nil ;};for _ ,_fcga :=range _cbdc {_bdeg ,_bdfd :=_fc .GetArray (_fcga .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if !_bdfd {continue ; -};for _ ,_gecda :=range _bdeg .Elements (){_gecda =_fc .ResolveReference (_gecda );if _ ,_bfga :=_gecda .(*_fc .PdfObjectNull );_bfga {continue ;};_fda ,_efbe :=_fc .GetDict (_gecda );if !_efbe {continue ;};_ebab ,_ :=_fc .GetIntVal (_fda .Get ("\u0046")); -_ebab &=^(1<<0);_ebab &=^(1<<1);_ebab &=^(1<<5);_ebab |=1<<2;_fda .Set ("\u0046",_fc .MakeInteger (int64 (_ebab )));_fcaa :=false ;if _aafe :=_fda .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065");_aafe !=nil {_bbac ,_bbfb :=_fc .GetName (_aafe );if _bbfb &&_bbac .String ()=="\u0057\u0069\u0064\u0067\u0065\u0074"{_fcaa =true ; -if _fda .Get ("\u0041\u0041")!=nil {_fda .Remove ("\u0041\u0041");};};};if _fda .Get ("\u0043")!=nil ||_fda .Get ("\u0049\u0043")!=nil {_fbeg ,_cabc :=_eaef (_aace );if !_cabc {_fda .Remove ("\u0043");_fda .Remove ("\u0049\u0043");}else {_ddac ,_efab :=_fc .GetIntVal (_fbeg .Get ("\u004e")); -if !_efab ||_ddac !=3{_fda .Remove ("\u0043");_fda .Remove ("\u0049\u0043");};};};_gaag ,_efbe :=_fc .GetDict (_fda .Get ("\u0041\u0050"));if _efbe {_feg :=_gaag .Get ("\u004e");if _feg ==nil {continue ;};if len (_gaag .Keys ())> 1{_gaag .Clear ();_gaag .Set ("\u004e",_feg ); -};if _fcaa {_bdg ,_eef :=_fc .GetName (_fda .Get ("\u0046\u0054"));if _eef &&*_bdg =="\u0042\u0074\u006e"{continue ;};};};};};return nil ;};func _baddc (_fagac *_b .CompliancePdfReader )ViolatedRule {return _da };func _gfgfd (_edgc *_b .CompliancePdfReader )ViolatedRule {for _ ,_dcff :=range _edgc .GetObjectNums (){_gdcc ,_affg :=_edgc .GetIndirectObjectByNumber (_dcff ); -if _affg !=nil {continue ;};_gffg ,_cdadg :=_fc .GetStream (_gdcc );if !_cdadg {continue ;};_aacfa ,_cdadg :=_fc .GetName (_gffg .Get ("\u0054\u0079\u0070\u0065"));if !_cdadg {continue ;};if *_aacfa !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;}; -if _gffg .Get ("\u0053\u004d\u0061s\u006b")!=nil {return _fe ("\u0036\u002e\u0034-\u0032","\u0041\u006e\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068e \u0053\u004d\u0061\u0073\u006b\u0020\u006b\u0065\u0079\u002e"); -};};return _da ;}; +// Conformance gets the PDF/A conformance. +func (_cfce *profile1 )Conformance ()string {return _cfce ._efde ._ee };func _aedfg (_gcad *_da .CompliancePdfReader )(_acge []ViolatedRule ){if _gcad .ParserMetadata ().HasOddLengthHexStrings (){_acge =append (_acge ,_ba ("\u0036.\u0031\u002e\u0036\u002d\u0031","\u0068\u0065\u0078a\u0064\u0065\u0063\u0069\u006d\u0061\u006c\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u006f\u0066\u0020e\u0076\u0065\u006e\u0020\u0073\u0069\u007a\u0065")); +};if _gcad .ParserMetadata ().HasOddLengthHexStrings (){_acge =append (_acge ,_ba ("\u0036.\u0031\u002e\u0036\u002d\u0032","\u0068\u0065\u0078\u0061\u0064\u0065\u0063\u0069\u006da\u006c\u0020s\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068o\u0075\u006c\u0064\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u006f\u006e\u006c\u0079\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0066\u0072\u006f\u006d\u0020\u0072\u0061n\u0067\u0065\u0020[\u0030\u002d\u0039\u003b\u0041\u002d\u0046\u003b\u0061\u002d\u0066\u005d")); +};return _acge ;};func _fabe (_fddd *_da .CompliancePdfReader )[]ViolatedRule {return nil }; -// String gets a string representation of the violated rule. -func (_ce ViolatedRule )String ()string {return _g .Sprintf ("\u0025\u0073\u003a\u0020\u0025\u0073",_ce .RuleNo ,_ce .Detail );};func _ddcf (_cdac *_ag .Document )error {_cba ,_ccba :=_cdac .FindCatalog ();if !_ccba {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064"); -};_agc ,_ccba :=_fc .GetDict (_cba .Object .Get ("\u0050\u0065\u0072m\u0073"));if _ccba {_fdac :=_fc .MakeDict ();_bef :=_agc .Keys ();for _ ,_bbgc :=range _bef {if _bbgc .String ()=="\u0055\u0052\u0033"||_bbgc .String ()=="\u0044\u006f\u0063\u004d\u0044\u0050"{_fdac .Set (_bbgc ,_agc .Get (_bbgc )); -};};_cba .Object .Set ("\u0050\u0065\u0072m\u0073",_fdac );};return nil ;};func _bdeec (_bfdf *_b .CompliancePdfReader ,_cbag standardType ,_daac bool )(_bgga []ViolatedRule ){_egdge ,_cafdb :=_faac (_bfdf );if !_cafdb {return []ViolatedRule {_fe ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d1","\u0063a\u0074a\u006c\u006f\u0067\u0020\u006eo\u0074\u0020f\u006f\u0075\u006e\u0064\u002e")}; -};_adea :=_egdge .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");if _adea ==nil {return []ViolatedRule {_fe ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d1","\u0054\u0068\u0065\u0020\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u006f\u0066\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074ai\u006e\u0020\u0074\u0068\u0065\u0020\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020\u006b\u0065\u0079\u0020\u0077\u0068\u006f\u0073\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0061\u0020m\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020s\u0074\u0072\u0065\u0061\u006d")}; -};_cdaf ,_cafdb :=_fc .GetStream (_adea );if !_cafdb {return []ViolatedRule {_fe ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d1","\u0054\u0068\u0065\u0020\u0043\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u006f\u0066\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074ai\u006e\u0020\u0074\u0068\u0065\u0020\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020\u006b\u0065\u0079\u0020\u0077\u0068\u006f\u0073\u0065\u0020v\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0061\u0020m\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0020s\u0074\u0072\u0065\u0061\u006d")}; -};_bgdeb ,_deaae :=_fg .LoadDocument (_cdaf .Stream );if _deaae !=nil {return []ViolatedRule {_fe ("\u0036.\u0036\u002e\u0032\u002e\u0031\u002d4","\u0041\u006c\u006c\u0020\u006de\u0074\u0061\u0064a\u0074\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0073\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020i\u006e \u0074\u0068\u0065\u0020\u0050\u0044\u0046 \u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0066\u006f\u0072\u006d\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065ci\u0066\u0069\u0063\u0061\u0074\u0069\u006fn\u002e\u0020\u0041\u006c\u006c\u0020c\u006fn\u0074\u0065\u006e\u0074\u0020\u006f\u0066\u0020\u0061\u006c\u006c\u0020\u0058\u004d\u0050\u0020p\u0061\u0063\u006b\u0065\u0074\u0073 \u0073h\u0061\u006c\u006c \u0062\u0065\u0020\u0077\u0065\u006c\u006c\u002d\u0066o\u0072\u006de\u0064")}; -};_adff :=_bgdeb .GetGoXmpDocument ();var _ddde []*_fb .Namespace ;for _ ,_dcfc :=range _adff .Namespaces (){switch _dcfc .Name {case _ea .NsDc .Name ,_bc .NsPDF .Name ,_ab .NsXmp .Name ,_aa .NsXmpRights .Name ,_gg .Namespace .Name ,_bd .Namespace .Name ,_dd .NsXmpMM .Name ,_bd .FieldNS .Name ,_bd .SchemaNS .Name ,_bd .PropertyNS .Name ,"\u0073\u0074\u0045v\u0074","\u0073\u0074\u0056e\u0072","\u0073\u0074\u0052e\u0066","\u0073\u0074\u0044i\u006d","\u0078a\u0070\u0047\u0049\u006d\u0067","\u0073\u0074\u004ao\u0062","\u0078\u006d\u0070\u0069\u0064\u0071":continue ; -};_ddde =append (_ddde ,_dcfc );};_gged :=true ;_cacf ,_deaae :=_bgdeb .GetPdfaExtensionSchemas ();if _deaae ==nil {for _ ,_cceae :=range _ddde {var _gggdf bool ;for _cffad :=range _cacf {if _cceae .URI ==_cacf [_cffad ].NamespaceURI {_gggdf =true ;break ; -};};if !_gggdf {_gged =false ;break ;};};}else {_gged =false ;};if !_gged {_bgga =append (_bgga ,_fe ("\u0036.\u0036\u002e\u0032\u002e\u0033\u002d7","\u0041\u006c\u006c\u0020\u0070\u0072\u006f\u0070e\u0072\u0074\u0069e\u0073\u0020\u0073\u0070\u0065\u0063i\u0066\u0069\u0065\u0064\u0020\u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072m\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0075s\u0065\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0073\u0063he\u006da\u0073 \u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002c\u0020\u0049\u0053\u004f\u0020\u0031\u00390\u0030\u0035-\u0031\u0020\u006f\u0072\u0020\u0074h\u0069s\u0020\u0070\u0061\u0072\u0074\u0020\u006f\u0066\u0020\u0049\u0053\u004f\u0020\u0031\u0039\u0030\u0030\u0035\u002c\u0020o\u0072\u0020\u0061\u006e\u0079\u0020e\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0020\u0073c\u0068\u0065\u006das\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u006fm\u0070\u006c\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0036\u002e\u0036\u002e\u0032.\u0033\u002e\u0032\u002e")); -};_dbg ,_cafdb :=_bgdeb .GetPdfAID ();if !_cafdb {_bgga =append (_bgga ,_fe ("\u0036.\u0036\u002e\u0034\u002d\u0031","\u0054\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0061n\u0064\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020\u006c\u0065\u0076\u0065l\u0020\u006f\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0070e\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0074\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0065\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0020\u0073\u0063h\u0065\u006da.")); -}else {if _dbg .Part !=_cbag ._bdc {_bgga =append (_bgga ,_fe ("\u0036.\u0036\u002e\u0034\u002d\u0032","\u0054h\u0065\u0020\u0076\u0061lue\u0020\u006f\u0066\u0020p\u0064\u0066\u0061\u0069\u0064\u003a\u0070\u0061\u0072\u0074 \u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0061\u0072\u0074\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0049\u0053\u004f\u002019\u0030\u0030\u0035 \u0074\u006f\u0020\u0077\u0068i\u0063h\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065 \u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0073\u002e")); -};if _cbag ._dc =="\u0041"&&_dbg .Conformance !="\u0041"{_bgga =append (_bgga ,_fe ("\u0036.\u0036\u002e\u0034\u002d\u0033","\u0041\u0020\u004c\u0065\u0076\u0065\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061l\u006c\u0020\u0073\u0070ec\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020as\u0020\u0041\u002e\u0020\u0041 \u004c\u0065v\u0065\u006c\u0020\u0042\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061lu\u0065\u0020o\u0066 \u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e\u0020\u0041\u0020\u004c\u0065\u0076\u0065\u006c \u0055\u0020\u0063\u006f\u006e\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063\u0069\u0066\u0079 \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0070\u0064f\u0061i\u0064\u003ac\u006fn\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065 \u0061\u0073\u0020\u0055.")); -}else if _cbag ._dc =="\u0055"&&(_dbg .Conformance !="\u0041"&&_dbg .Conformance !="\u0055"){_bgga =append (_bgga ,_fe ("\u0036.\u0036\u002e\u0034\u002d\u0033","\u0041\u0020\u004c\u0065\u0076\u0065\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061l\u006c\u0020\u0073\u0070ec\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020as\u0020\u0041\u002e\u0020\u0041 \u004c\u0065v\u0065\u006c\u0020\u0042\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061lu\u0065\u0020o\u0066 \u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e\u0020\u0041\u0020\u004c\u0065\u0076\u0065\u006c \u0055\u0020\u0063\u006f\u006e\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063\u0069\u0066\u0079 \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0070\u0064f\u0061i\u0064\u003ac\u006fn\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065 \u0061\u0073\u0020\u0055.")); -}else if _cbag ._dc =="\u0042"&&(_dbg .Conformance !="\u0041"&&_dbg .Conformance !="\u0042"&&_dbg .Conformance !="\u0055"){_bgga =append (_bgga ,_fe ("\u0036.\u0036\u002e\u0034\u002d\u0033","\u0041\u0020\u004c\u0065\u0076\u0065\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061l\u006c\u0020\u0073\u0070ec\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006cu\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020as\u0020\u0041\u002e\u0020\u0041 \u004c\u0065v\u0065\u006c\u0020\u0042\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061lu\u0065\u0020o\u0066 \u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e\u0020\u0041\u0020\u004c\u0065\u0076\u0065\u006c \u0055\u0020\u0063\u006f\u006e\u0066\u006fr\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063\u0069\u0066\u0079 \u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006ff\u0020\u0070\u0064f\u0061i\u0064\u003ac\u006fn\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065 \u0061\u0073\u0020\u0055.")); -};};return _bgga ;};func _eaac (_aggcd string ,_abdf string ,_ccab string )(string ,bool ){_fbegg :=_ed .Index (_aggcd ,_abdf );if _fbegg ==-1{return "",false ;};_fbegg +=len (_abdf );_decd :=_ed .Index (_aggcd [_fbegg :],_ccab );if _decd ==-1{return "",false ; -};_decd =_fbegg +_decd ;return _aggcd [_fbegg :_decd ],true ;};func _cgab (_cea *_ag .Document ,_dfdf standardType ,_gfbf *_ag .OutputIntents )error {var (_dfccf *_b .PdfOutputIntent ;_gbec error ;);if _cea .Version .Minor <=7{_dfccf ,_gbec =_fa .NewSRGBv2OutputIntent (_dfdf .outputIntentSubtype ()); -}else {_dfccf ,_gbec =_fa .NewSRGBv4OutputIntent (_dfdf .outputIntentSubtype ());};if _gbec !=nil {return _gbec ;};if _gbec =_gfbf .Add (_dfccf .ToPdfObject ());_gbec !=nil {return _gbec ;};return nil ;};func _afbe (_gad *_ag .Document )error {_fdc ,_gfed :=_gad .FindCatalog (); -if !_gfed {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};_fdc .SetVersion ();return nil ;};type documentImages struct{_cff ,_cgf ,_ca bool ;_aad map[_fc .PdfObject ]struct{};_bgc []*imageInfo ; -};func _fbbb (_bgfa *_b .PdfFont ,_cfceg *_fc .PdfObjectDictionary )ViolatedRule {const (_dabb ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0036\u002d\u0033";_efgec ="\u0041l\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0069\u0063\u0020\u0054\u0072u\u0065\u0054\u0079p\u0065\u0020\u0066\u006f\u006e\u0074s\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0061\u006e\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065n\u0074\u0072\u0079\u0020\u0069n\u0020\u0074\u0068e\u0020\u0066\u006f\u006e\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"; -);var _daadf string ;if _gabag ,_becba :=_fc .GetName (_cfceg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_becba {_daadf =_gabag .String ();};if _daadf !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _da ;};_dgeec :=_bgfa .FontDescriptor (); -_cabca ,_ggfdc :=_fc .GetIntVal (_dgeec .Flags );if !_ggfdc {_cf .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); -return _fe (_dabb ,_efgec );};_fgade :=(uint32 (_cabca )>>3)&1;_cagea :=_fgade !=0;if !_cagea {return _da ;};if _cfceg .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")!=nil {return _fe (_dabb ,_efgec );};return _da ;}; +// ValidateStandard checks if provided input CompliancePdfReader matches rules that conforms PDF/A-2 standard. +func (_ccbe *profile2 )ValidateStandard (r *_da .CompliancePdfReader )error {_efce :=VerificationError {ConformanceLevel :_ccbe ._fcdd ._efe ,ConformanceVariant :_ccbe ._fcdd ._ee };if _dffg :=_fdbf (r );_dffg !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_dffg ); +};if _cbfa :=_gdgae (r );_cbfa !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_cbfa );};if _fgec :=_edcgb (r );_fgec !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_fgec );};if _dega :=_eeda (r );_dega !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_dega ); +};if _efacg :=_bcfde (r );_efacg !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_efacg );};if _edcg :=_dgccb (r );len (_edcg )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_edcg ...);};if _bba :=_cfgd (r );len (_bba )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_bba ...); +};if _bcba :=_fabe (r );len (_bcba )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_bcba ...);};if _dbce :=_geddd (r );_dbce !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_dbce );};if _cfceg :=_aggbf (r );len (_cfceg )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_cfceg ...); +};if _caeg :=_eecg (r );len (_caeg )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_caeg ...);};if _bca :=_bfba (r );_bca !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_bca );};if _cfbba :=_adgfe (r );len (_cfbba )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_cfbba ...); +};if _afe :=_cgcdc (r );len (_afe )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_afe ...);};if _dagcg :=_cdac (r );_dagcg !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_dagcg );};if _feabg :=_ggef (r );len (_feabg )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_feabg ...); +};if _caef :=_fbed (r );len (_caef )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_caef ...);};if _gccd :=_fefc (r );_gccd !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_gccd );};if _fbc :=_dagb (r );len (_fbc )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_fbc ...); +};if _fgaa :=_dbfde (r ,_ccbe ._fcdd );len (_fgaa )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_fgaa ...);};if _feea :=_bfaae (r );len (_feea )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_feea ...);};if _bgfa :=_ebaec (r );len (_bgfa )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_bgfa ...); +};if _gddbb :=_bfdfa (r );len (_gddbb )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_gddbb ...);};if _edf :=_daae (r );_edf !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_edf );};if _bgeef :=_gcgef (r );len (_bgeef )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_bgeef ...); +};if _cdgbe :=_cafe (r );_cdgbe !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_cdgbe );};if _fgdd :=_badd (r ,_ccbe ._fcdd ,false );len (_fgdd )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_fgdd ...);};if _ccbe ._fcdd ==_bb (){if _efff :=_dfgdgd (r ); +len (_efff )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_efff ...);};};if _dcba :=_acegf (r );len (_dcba )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_dcba ...);};if _fggdc :=_dddf (r );len (_fggdc )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_fggdc ...); +};if _fdad :=_ceeeb (r );len (_fdad )!=0{_efce .ViolatedRules =append (_efce .ViolatedRules ,_fdad ...);};if _bfcf :=_ebbag (r );_bfcf !=_bg {_efce .ViolatedRules =append (_efce .ViolatedRules ,_bfcf );};if len (_efce .ViolatedRules )> 0{_cg .Slice (_efce .ViolatedRules ,func (_ebae ,_bgdb int )bool {return _efce .ViolatedRules [_ebae ].RuleNo < _efce .ViolatedRules [_bgdb ].RuleNo ; +});return _efce ;};return nil ;};func _dgcea (_fffbf *_da .PdfFont ,_agcgb *_ad .PdfObjectDictionary )ViolatedRule {const (_begb ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0036\u002d\u0033";_gcgg ="\u0041l\u006c\u0020\u0073\u0079\u006d\u0062\u006f\u006c\u0069\u0063\u0020\u0054\u0072u\u0065\u0054\u0079p\u0065\u0020\u0066\u006f\u006e\u0074s\u0020\u0073h\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0079\u0020\u0061\u006e\u0020\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u0065n\u0074\u0072\u0079\u0020\u0069n\u0020\u0074\u0068e\u0020\u0066\u006f\u006e\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"; +);var _cabfgb string ;if _dbdge ,_cdad :=_ad .GetName (_agcgb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cdad {_cabfgb =_dbdge .String ();};if _cabfgb !="\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065"{return _bg ;};_bbcb :=_fffbf .FontDescriptor (); +_fegec ,_ecdcg :=_ad .GetIntVal (_bbcb .Flags );if !_ecdcg {_ca .Log .Debug ("\u0066\u006c\u0061\u0067\u0073 \u006e\u006f\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0066o\u0072\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069\u0070\u0074\u006f\u0072"); +return _ba (_begb ,_gcgg );};_ccba :=(uint32 (_fegec )>>3)&1;_fcebb :=_ccba !=0;if !_fcebb {return _bg ;};if _agcgb .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067")!=nil {return _ba (_begb ,_gcgg );};return _bg ;};func _bbac (_dbfcf *_da .CompliancePdfReader )(_gffc []ViolatedRule ){var _ecdb ,_ggdbb ,_eaef ,_cgd ,_gdbg ,_geef ,_abf bool ; +_eagd :=func ()bool {return _ecdb &&_ggdbb &&_eaef &&_cgd &&_gdbg &&_geef &&_abf };for _ ,_ebdf :=range _dbfcf .PageList {if _ebdf .Resources ==nil {continue ;};_edgcd ,_fcbe :=_ad .GetDict (_ebdf .Resources .Font );if !_fcbe {continue ;};for _ ,_beada :=range _edgcd .Keys (){_edce ,_fede :=_ad .GetDict (_edgcd .Get (_beada )); +if !_fede {if !_ecdb {_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0031","\u0041\u006c\u006c\u0020\u0066\u006fn\u0074\u0073\u0020\u0075\u0073e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020c\u006f\u006e\u0066\u006f\u0072m\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0073\u0020d\u0065\u0066\u0069\u006e\u0065d \u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0035\u002e\u0035\u002e")); +_ecdb =true ;if _eagd (){return _gffc ;};};continue ;};if _ddce ,_cbee :=_ad .GetName (_edce .Get ("\u0054\u0079\u0070\u0065"));!_ecdb &&(!_cbee ||_ddce .String ()!="\u0046\u006f\u006e\u0074"){_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0031","\u0054\u0079\u0070e\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0029 Th\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066 \u0050\u0044\u0046\u0020\u006fbj\u0065\u0063\u0074\u0020\u0074\u0068\u0061t\u0020\u0074\u0068\u0069s\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0064\u0065\u0073c\u0072\u0069\u0062\u0065\u0073\u003b\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0046\u006f\u006e\u0074\u0020\u0066\u006fr\u0020\u0061\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); +_ecdb =true ;if _eagd (){return _gffc ;};};_dgbb ,_feaa :=_da .NewPdfFontFromPdfObject (_edce );if _feaa !=nil {continue ;};var _dagg string ;if _cead ,_ecaf :=_ad .GetName (_edce .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_ecaf {_dagg =_cead .String (); +};if !_ggdbb {switch _dagg {case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0031","\u004dM\u0054\u0079\u0070\u0065\u0031","\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":default:_ggdbb =true ; +_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0032","\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065d\u0029\u0020\u0054\u0068e \u0074\u0079\u0070\u0065 \u006f\u0066\u0020\u0066\u006f\u006et\u003b\u0020\u006d\u0075\u0073\u0074\u0020b\u0065\u0020\u0022\u0054\u0079\u0070\u0065\u0031\u0022\u0020f\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020f\u006f\u006e\u0074\u0073\u002c\u0020\u0022\u004d\u004d\u0054\u0079\u0070\u0065\u0031\u0022\u0020\u0066\u006f\u0072\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020\u006da\u0073\u0074e\u0072\u0020\u0066\u006f\u006e\u0074s\u002c\u0020\u0022\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0022\u0054\u0079\u0070\u0065\u0033\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070e\u0020\u0033\u0020\u0066\u006f\u006e\u0074\u0073\u002c\u0020\"\u0054\u0079\u0070\u0065\u0030\"\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u006ed\u0020\u0022\u0043\u0049\u0044\u0046\u006fn\u0074\u0054\u0079\u0070\u0065\u0030\u0022 \u006f\u0072\u0020\u0022\u0043\u0049\u0044\u0046\u006f\u006e\u0074T\u0079\u0070e\u0032\u0022\u0020\u0066\u006f\u0072\u0020\u0043\u0049\u0044\u0020\u0066\u006f\u006e\u0074\u0073\u002e")); +if _eagd (){return _gffc ;};};};if !_eaef {if _dagg !="\u0054\u0079\u0070e\u0033"{_faae ,_cdbf :=_ad .GetName (_edce .Get ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074"));if !_cdbf ||_faae .String ()==""{_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0033","B\u0061\u0073\u0065\u0046\u006f\u006e\u0074\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064)\u0020T\u0068\u0065\u0020\u0050o\u0073\u0074S\u0063\u0072\u0069\u0070\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u002e")); +_eaef =true ;if _eagd (){return _gffc ;};};};};if _dagg !="\u0054\u0079\u0070e\u0031"{continue ;};_ddff :=_cac .IsStdFont (_cac .StdFontName (_dgbb .BaseFont ()));if _ddff {continue ;};_abea ,_ggbd :=_ad .GetIntVal (_edce .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r")); +if !_ggbd &&!_cgd {_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0034","\u0046\u0069r\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u0073\u0074\u0061\u006e\u0064\u0061\u0072d\u0020\u0031\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u0029\u0020\u0054\u0068\u0065\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064e\u0020\u0064\u0065\u0066i\u006ee\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057i\u0064\u0074\u0068\u0073 \u0061r\u0072\u0061y\u002e")); +_cgd =true ;if _eagd (){return _gffc ;};};_eaddf ,_ccaca :=_ad .GetIntVal (_edce .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072"));if !_ccaca &&!_gdbg {_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0035","\u004c\u0061\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069n\u0074\u0065\u0067e\u0072 \u002d\u0020\u0028\u0052\u0065\u0071u\u0069\u0072\u0065d\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0066\u006f\u0072\u0020t\u0068\u0065 s\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0031\u0034\u0020\u0066\u006f\u006ets\u0029\u0020\u0054\u0068\u0065\u0020\u006c\u0061\u0073t\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057\u0069\u0064\u0074h\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u002e")); +_gdbg =true ;if _eagd (){return _gffc ;};};if !_geef {_ccag ,_fcbed :=_ad .GetArray (_edce .Get ("\u0057\u0069\u0064\u0074\u0068\u0073"));if !_fcbed ||!_ggbd ||!_ccaca ||_ccag .Len ()!=_eaddf -_abea +1{_gffc =append (_gffc ,_ba ("\u0036.\u0033\u002e\u0032\u002d\u0036","\u0057\u0069\u0064\u0074\u0068\u0073\u0020\u002d a\u0072\u0072\u0061y \u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0073\u0074a\u006e\u0064a\u0072\u0064\u00201\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u003b\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0070\u0072\u0065\u0066e\u0072\u0072e\u0064\u0029\u0020\u0041\u006e \u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0066\u0020\u0028\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u2212 F\u0069\u0072\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u002b\u00201\u0029\u0020\u0077\u0069\u0064\u0074\u0068\u0073.")); +_geef =true ;if _eagd (){return _gffc ;};};};};};return _gffc ;};func _eecg (_ffdab *_da .CompliancePdfReader )(_fccf []ViolatedRule ){var (_fddda ,_agccg ,_fabee ,_adabb ,_aeec bool ;_fceb func (_ad .PdfObject ););_fceb =func (_gcdb _ad .PdfObject ){switch _dcegd :=_gcdb .(type ){case *_ad .PdfObjectInteger :if !_fddda &&(int64 (*_dcegd )> _e .MaxInt32 ||int64 (*_dcegd )< -_e .MaxInt32 ){_fccf =append (_fccf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0031","L\u0061\u0072\u0067e\u0073\u0074\u0020\u0049\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u0032\u002c\u0031\u0034\u0037,\u0034\u0038\u0033,\u0036\u0034\u0037\u002e\u0020\u0053\u006d\u0061\u006c\u006c\u0065\u0073\u0074 \u0069\u006e\u0074\u0065g\u0065\u0072\u0020\u0076a\u006c\u0075\u0065\u0020\u0069\u0073\u0020\u002d\u0032\u002c\u0031\u0034\u0037\u002c\u0034\u0038\u0033,\u0036\u0034\u0038\u002e")); +_fddda =true ;};case *_ad .PdfObjectFloat :if !_agccg &&(_e .Abs (float64 (*_dcegd ))> _e .MaxFloat32 ){_fccf =append (_fccf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0032","\u0041 \u0063\u006f\u006e\u0066orm\u0069\u006e\u0067\u0020f\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0061\u006c\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u006f\u0075\u0074\u0073\u0069de\u0020\u0074\u0068e\u0020\u0072\u0061\u006e\u0067e\u0020o\u0066\u0020\u002b\u002f\u002d\u0033\u002e\u0034\u00303\u0020\u0078\u0020\u0031\u0030\u005e\u0033\u0038\u002e")); +};case *_ad .PdfObjectString :if !_fabee &&len ([]byte (_dcegd .Str ()))> 32767{_fccf =append (_fccf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0033","M\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006c\u0065n\u0067\u0074\u0068\u0020\u006f\u0066\u0020a \u0073\u0074\u0072\u0069n\u0067\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074es\u0029\u0020i\u0073\u0020\u0033\u0032\u0037\u0036\u0037\u002e")); +_fabee =true ;};case *_ad .PdfObjectName :if !_adabb &&len ([]byte (*_dcegd ))> 127{_fccf =append (_fccf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0034","\u004d\u0061\u0078\u0069\u006d\u0075\u006d \u006c\u0065\u006eg\u0074\u0068\u0020\u006ff\u0020\u0061\u0020\u006e\u0061\u006d\u0065\u0020\u0028\u0069\u006e\u0020\u0062\u0079\u0074\u0065\u0073\u0029\u0020\u0069\u0073\u0020\u0031\u0032\u0037\u002e")); +_adabb =true ;};case *_ad .PdfObjectArray :for _ ,_gbdg :=range _dcegd .Elements (){_fceb (_gbdg );};if !_aeec &&(_dcegd .Len ()==4||_dcegd .Len ()==5){_cabfg ,_fdbd :=_ad .GetName (_dcegd .Get (0));if !_fdbd {return ;};if *_cabfg !="\u0044e\u0076\u0069\u0063\u0065\u004e"{return ; +};_ddfee :=_dcegd .Get (1);_ddfee =_ad .TraceToDirectObject (_ddfee );_cbgg ,_fdbd :=_ad .GetArray (_ddfee );if !_fdbd {return ;};if _cbgg .Len ()> 32{_fccf =append (_fccf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0039","\u004d\u0061\u0078\u0069\u006d\u0075\u006d \u006e\u0075\u006db\u0065\u0072\u0020\u006ff\u0020\u0044\u0065\u0076\u0069\u0063\u0065\u004e\u0020\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073\u0020\u0069\u0073\u0020\u0033\u0032\u002e")); +_aeec =true ;};};case *_ad .PdfObjectDictionary :_dcffa :=_dcegd .Keys ();for _fecg ,_bebb :=range _dcffa {_fceb (&_dcffa [_fecg ]);_fceb (_dcegd .Get (_bebb ));};case *_ad .PdfObjectStream :_fceb (_dcegd .PdfObjectDictionary );case *_ad .PdfObjectStreams :for _ ,_gfcf :=range _dcegd .Elements (){_fceb (_gfcf ); +};case *_ad .PdfObjectReference :_fceb (_dcegd .Resolve ());};};_egfc :=_ffdab .GetObjectNums ();if len (_egfc )> 8388607{_fccf =append (_fccf ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0033\u002d\u0037","\u004d\u0061\u0078\u0069\u006d\u0075\u006d\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u0020\u006f\u0066\u0020in\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0073 \u0069\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u0020\u0066\u0069\u006c\u0065\u0020\u0069\u0073\u00208\u002c\u0033\u0038\u0038\u002c\u0036\u0030\u0037\u002e")); +};for _ ,_ffcc :=range _egfc {_cgbd ,_caag :=_ffdab .GetIndirectObjectByNumber (_ffcc );if _caag !=nil {continue ;};_adef :=_ad .TraceToDirectObject (_cgbd );_fceb (_adef );};return _fccf ;}; + +// NewProfile2A creates a new Profile2A with given options. +func NewProfile2A (options *Profile2Options )*Profile2A {if options ==nil {options =DefaultProfile2Options ();};_cdcc (options );return &Profile2A {profile2 {_eceb :*options ,_fcdd :_bb ()}};};func _dgdb (_dfgdf *_da .CompliancePdfReader )(_dfde ViolatedRule ){_cbcb ,_eegb :=_acgab (_dfgdf ); +if !_eegb {return _bg ;};_bgbc ,_eegb :=_ad .GetDict (_cbcb .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));if !_eegb {return _bg ;};_acae ,_eegb :=_ad .GetArray (_bgbc .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_eegb {return _bg ;}; +for _cgegc :=0;_cgegc < _acae .Len ();_cgegc ++{_efcgg ,_dcddf :=_ad .GetDict (_acae .Get (_cgegc ));if !_dcddf {continue ;};if _efcgg .Get ("\u0041\u0041")!=nil {return _ba ("\u0036.\u0036\u002e\u0032\u002d\u0032","\u0041\u0020F\u0069\u0065\u006cd\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079 s\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061n\u0020A\u0041\u0020\u0065\u006e\u0074\u0072y f\u006f\u0072\u0020\u0061\u006e\u0020\u0061\u0064\u0064\u0069\u0074\u0069on\u0061l\u002d\u0061\u0063\u0074i\u006fn\u0073 \u0064\u0069c\u0074\u0069on\u0061\u0072\u0079\u002e"); +};};return _bg ;};func _dccb (_fbe *_ea .Document )error {_dgab ,_eba :=_fbe .GetPages ();if !_eba {return nil ;};for _ ,_ecfa :=range _dgab {_gabd :=_ecfa .FindXObjectForms ();for _ ,_dffbc :=range _gabd {_ebcf ,_gfd :=_ad .GetDict (_dffbc .Get ("\u0047\u0072\u006fu\u0070")); +if _gfd {if _cba :=_ebcf .Get ("\u0053");_cba !=nil {_bbfb ,_aggb :=_ad .GetName (_cba );if _aggb &&_bbfb .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{_dffbc .Remove ("\u0047\u0072\u006fu\u0070");};};};};_dgac ,_cbd :=_ecfa .GetResourcesXObject (); +if _cbd {_bdae ,_dgd :=_ad .GetDict (_dgac .Get ("\u0047\u0072\u006fu\u0070"));if _dgd {_adb :=_bdae .Get ("\u0053");if _adb !=nil {_ffeg ,_caca :=_ad .GetName (_adb );if _caca &&_ffeg .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{_dgac .Remove ("\u0047\u0072\u006fu\u0070"); +};};};};_fgdf ,_cdgb :=_ad .GetDict (_ecfa .Object .Get ("\u0047\u0072\u006fu\u0070"));if _cdgb {_gaeb :=_fgdf .Get ("\u0053");if _gaeb !=nil {_dacc ,_ffegd :=_ad .GetName (_gaeb );if _ffegd &&_dacc .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{_ecfa .Object .Remove ("\u0047\u0072\u006fu\u0070"); +};};};};return nil ;};func _bfdfa (_cgeee *_da .CompliancePdfReader )(_efgab []ViolatedRule ){return _efgab }; // Profile2U is the implementation of the PDF/A-2U standard profile. // Implements model.StandardImplementer, Profile interfaces. -type Profile2U struct{profile2 };type profile1 struct{_bacb standardType ;_fgad Profile1Options ;};func _ffcac (_dccbd *_b .CompliancePdfReader )ViolatedRule {_fdcef :=_dccbd .ParserMetadata ();if _fdcef .HasInvalidSeparationAfterXRef (){return _fe ("\u0036.\u0031\u002e\u0034\u002d\u0032","\u0054\u0068\u0065 \u0078\u0072\u0065\u0066\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020\u0063\u0072\u006f\u0073s\u0020\u0072\u0065\u0066e\u0072\u0065\u006e\u0063\u0065 s\u0075b\u0073\u0065\u0063ti\u006f\u006e\u0020\u0068\u0065\u0061\u0064e\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0070\u0061\u0072\u0061\u0074\u0065\u0064\u0020\u0062\u0079 \u0061\u0020\u0073i\u006e\u0067\u006c\u0065\u0020\u0045\u004fL\u0020\u006d\u0061\u0072\u006b\u0065\u0072\u002e"); -};return _da ;};func _eeea (_gcaf *_ag .Document )error {_fbca ,_gcc :=_gcaf .FindCatalog ();if !_gcc {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};_ ,_gcc =_fc .GetDict (_fbca .Object .Get ("\u0041\u0041")); -if !_gcc {return nil ;};_fbca .Object .Remove ("\u0041\u0041");return nil ;};func _gdga (_agdac *_b .CompliancePdfReader )(_dcfa []ViolatedRule ){var _faaba ,_gfaac ,_ddcaf ,_bagb ,_ggce ,_efeac ,_egge bool ;_dgca :=map[*_fc .PdfObjectStream ]struct{}{}; -for _ ,_egdg :=range _agdac .GetObjectNums (){if _faaba &&_gfaac &&_ggce &&_ddcaf &&_bagb &&_efeac &&_egge {return _dcfa ;};_fead ,_ggfc :=_agdac .GetIndirectObjectByNumber (_egdg );if _ggfc !=nil {continue ;};_cdea ,_cbdbg :=_fc .GetStream (_fead );if !_cbdbg {continue ; -};if _ ,_cbdbg =_dgca [_cdea ];_cbdbg {continue ;};_dgca [_cdea ]=struct{}{};_afda ,_cbdbg :=_fc .GetName (_cdea .Get ("\u0053u\u0062\u0054\u0079\u0070\u0065"));if !_cbdbg {continue ;};if !_bagb {if _cdea .Get ("\u0052\u0065\u0066")!=nil {_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0039\u002d\u0032","\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0058O\u0062\u006a\u0065\u0063\u0074s\u002e")); -_bagb =true ;};};if _afda .String ()=="\u0050\u0053"{if !_efeac {_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0039\u002d\u0033","A \u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066i\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0050\u006f\u0073t\u0053c\u0072\u0069\u0070\u0074\u0020\u0058\u004f\u0062j\u0065c\u0074\u0073.")); -_efeac =true ;continue ;};};if _afda .String ()=="\u0046\u006f\u0072\u006d"{if _gfaac &&_ddcaf &&_bagb {continue ;};if !_gfaac &&_cdea .Get ("\u004f\u0050\u0049")!=nil {_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072\u006d \u0058\u004f\u0062j\u0065\u0063\u0074 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0073\u0068\u0061\u006c\u006c n\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u004f\u0050\u0049\u0020\u006b\u0065\u0079\u002e")); -_gfaac =true ;};if !_ddcaf {if _cdea .Get ("\u0050\u0053")!=nil {_ddcaf =true ;};if _cbdca :=_cdea .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");_cbdca !=nil &&!_ddcaf {if _fgdd ,_gbae :=_fc .GetName (_cbdca );_gbae &&*_fgdd =="\u0050\u0053"{_ddcaf =true ; -};};if _ddcaf {_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0039\u002d\u0031","\u0041\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065y \u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076\u0061\u006cu\u0065 o\u0066 \u0050\u0053\u0020\u0061\u006e\u0064\u0020t\u0068\u0065\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e")); -};};continue ;};if _afda .String ()!="\u0049\u006d\u0061g\u0065"{continue ;};if !_faaba &&_cdea .Get ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073")!=nil {_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0038\u002d\u0031","\u0041\u006e\u0020\u0049m\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073\u0020\u006b\u0065\u0079\u002e")); -_faaba =true ;};if !_egge &&_cdea .Get ("\u004f\u0050\u0049")!=nil {_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0038\u002d\u0032","\u0041\u006e\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u0073\u0068\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020t\u0068\u0065\u0020\u004f\u0050\u0049\u0020\u006b\u0065\u0079\u002e")); -_egge =true ;};if !_ggce &&_cdea .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065")!=nil {_cffde ,_fcad :=_fc .GetBool (_cdea .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065"));if _fcad &&bool (*_cffde ){continue ; -};_dcfa =append (_dcfa ,_fe ("\u0036.\u0032\u002e\u0038\u002d\u0033","\u0049\u0066 a\u006e\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0063o\u006e\u0074\u0061\u0069n\u0073\u0020\u0074\u0068e \u0049\u006et\u0065r\u0070\u006f\u006c\u0061\u0074\u0065 \u006b\u0065\u0079,\u0020\u0069t\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020b\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); -_ggce =true ;};};return _dcfa ;};func _ebgg (_aaeg *_fc .PdfObjectDictionary ,_bgbg map[*_fc .PdfObjectStream ][]byte ,_dcgf map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_dcaa ="\u0036.\u0033\u002e\u0038\u002d\u0031";_fcgg ="\u0054\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006cl\u0020\u0069\u006e\u0063l\u0075\u0064e\u0020\u0061 \u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0020\u0065\u006e\u0074\u0072\u0079\u0020w\u0068\u006f\u0073\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073 \u0061\u0020\u0043M\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u006d\u0061p\u0073\u0020\u0063\u0068\u0061\u0072ac\u0074\u0065\u0072\u0020\u0063\u006fd\u0065s\u0020\u0074\u006f\u0020\u0055\u006e\u0069\u0063\u006f\u0064e \u0076a\u006c\u0075\u0065\u0073,\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063r\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020P\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0035.\u0039\u002c\u0020\u0075\u006e\u006ce\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u006d\u0065\u0065\u0074\u0073 \u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u0020\u0074\u0068\u0072\u0065\u0065\u0020\u0063\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u003a\u000a\u0020\u002d\u0020\u0066o\u006e\u0074\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0073\u0020M\u0061\u0063\u0052o\u006d\u0061\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074E\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0057\u0069\u006e\u0041n\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u006f\u0072\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020t\u0068\u0065\u0020\u0070\u0072\u0065d\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048\u0020\u006f\u0072\u0020\u0049\u0064\u0065n\u0074\u0069\u0074\u0079\u002d\u0056\u0020C\u004d\u0061\u0070s\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u006e\u0061\u006d\u0065\u0073\u0020a\u0072\u0065 \u0074\u0061k\u0065\u006e\u0020\u0066\u0072\u006f\u006d\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u0020\u0073\u0074\u0061n\u0064\u0061\u0072\u0064\u0020L\u0061t\u0069\u006e\u0020\u0063\u0068a\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0074\u0020\u006fr\u0020\u0074\u0068\u0065 \u0073\u0065\u0074\u0020\u006f\u0066 \u006e\u0061\u006d\u0065\u0064\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0066\u006f\u006e\u0074\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046 \u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0041\u0070\u0070\u0065\u006e\u0064\u0069\u0078 \u0044\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020w\u0068\u006f\u0073e\u0020d\u0065\u0073\u0063\u0065n\u0064\u0061\u006e\u0074 \u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0075\u0073\u0065\u0073\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u0047B\u0031\u002c\u0020\u0041\u0064\u006fb\u0065\u002d\u0043\u004e\u0053\u0031\u002c\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004a\u0061\u0070\u0061\u006e\u0031\u0020\u006f\u0072\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004b\u006fr\u0065\u0061\u0031\u0020\u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u006c\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u0073\u002e"; -);_deaaa ,_dfad :=_fc .GetStream (_aaeg .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e"));if _dfad {_ ,_gfga :=_fgfdc (_deaaa ,_bgbg ,_dcgf );if _gfga !=nil {return _fe (_dcaa ,_fcgg );};return _da ;};_efcc ,_dfad :=_fc .GetName (_aaeg .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); -if !_dfad {return _fe (_dcaa ,_fcgg );};switch _efcc .String (){case "\u0054\u0079\u0070e\u0031":return _da ;};return _fe (_dcaa ,_fcgg );}; +type Profile2U struct{profile2 };func _bebg (_dcab *_da .CompliancePdfReader )(_fdb []ViolatedRule ){var _fbde ,_fadg ,_fegg bool ;if _dcab .ParserMetadata ().HasNonConformantStream (){_fdb =[]ViolatedRule {_ba ("\u0036.\u0031\u002e\u0037\u002d\u0031","T\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020f\u006f\u006cl\u006fw\u0065\u0064\u0020e\u0069\u0074h\u0065\u0072\u0020\u0062\u0079\u0020\u0061 \u0043\u0041\u0052\u0052I\u0041\u0047\u0045\u0020\u0052E\u0054\u0055\u0052\u004e\u0020\u00280\u0044\u0068\u0029\u0020\u0061\u006e\u0064\u0020\u004c\u0049\u004e\u0045\u0020F\u0045\u0045\u0044\u0020\u0028\u0030\u0041\u0068\u0029\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0071\u0075\u0065\u006e\u0063\u0065\u0020o\u0072\u0020\u0062\u0079\u0020\u0061 \u0073\u0069ng\u006c\u0065\u0020\u004cIN\u0045 \u0046\u0045\u0045\u0044 \u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u002e\u0020T\u0068\u0065\u0020e\u006e\u0064\u0073\u0074r\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062e\u0020p\u0072\u0065\u0063\u0065\u0064\u0065\u0064\u0020\u0062\u0079\u0020\u0061n\u0020\u0045\u004f\u004c \u006d\u0061\u0072\u006b\u0065\u0072\u002e")}; +};for _ ,_dbag :=range _dcab .GetObjectNums (){_gaad ,_ :=_dcab .GetIndirectObjectByNumber (_dbag );if _gaad ==nil {continue ;};_eaddc ,_dbaf :=_ad .GetStream (_gaad );if !_dbaf {continue ;};if !_fbde {_bac :=_eaddc .Get ("\u004c\u0065\u006e\u0067\u0074\u0068"); +if _bac ==nil {_fdb =append (_fdb ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0032","\u006e\u006f\u0020'\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074")); +_fbde =true ;}else {_aggee ,_dffe :=_ad .GetIntVal (_bac );if !_dffe {_fdb =append (_fdb ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0032","s\u0074\u0072\u0065\u0061\u006d\u0020\u0027\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020an\u0020\u0069\u006et\u0065g\u0065\u0072")); +_fbde =true ;}else {if len (_eaddc .Stream )!=_aggee {_fdb =append (_fdb ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0032","\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006c\u0065\u006e\u0067th\u0020v\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u0068\u0065\u0020\u0073\u0069\u007a\u0065\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d")); +_fbde =true ;};};};};if !_fadg {if _eaddc .Get ("\u0046")!=nil {_fadg =true ;_fdb =append (_fdb ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); +};if _eaddc .Get ("\u0046F\u0069\u006c\u0074\u0065\u0072")!=nil &&!_fadg {_fadg =true ;_fdb =append (_fdb ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); +continue ;};if _eaddc .Get ("\u0046\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u0061\u006d\u0073")!=nil &&!_fadg {_fadg =true ;_fdb =append (_fdb ,_ba ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); +continue ;};};if !_fegg {_ecea ,_bfaa :=_ad .GetName (_ad .TraceToDirectObject (_eaddc .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")));if !_bfaa {continue ;};if *_ecea ==_ad .StreamEncodingFilterNameLZW {_fegg =true ;_fdb =append (_fdb ,_ba ("\u0036\u002e\u0031\u002e\u0031\u0030\u002d\u0031","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e")); +};};};return _fdb ;};func _fefe (_ggbb *_ad .PdfObjectDictionary ,_eacf map[*_ad .PdfObjectStream ][]byte ,_gdbe map[*_ad .PdfObjectStream ]*_b .CMap )ViolatedRule {const (_dfbfc ="\u0036.\u0033\u002e\u0038\u002d\u0031";_dabee ="\u0054\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061\u006cl\u0020\u0069\u006e\u0063l\u0075\u0064e\u0020\u0061 \u0054\u006f\u0055\u006e\u0069\u0063\u006f\u0064\u0065\u0020\u0065\u006e\u0074\u0072\u0079\u0020w\u0068\u006f\u0073\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0069\u0073 \u0061\u0020\u0043M\u0061\u0070\u0020\u0073\u0074\u0072\u0065\u0061\u006d \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u006d\u0061p\u0073\u0020\u0063\u0068\u0061\u0072ac\u0074\u0065\u0072\u0020\u0063\u006fd\u0065s\u0020\u0074\u006f\u0020\u0055\u006e\u0069\u0063\u006f\u0064e \u0076a\u006c\u0075\u0065\u0073,\u0020\u0061\u0073\u0020\u0064\u0065\u0073\u0063r\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020P\u0044\u0046\u0020\u0052\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0035.\u0039\u002c\u0020\u0075\u006e\u006ce\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u006d\u0065\u0065\u0074\u0073 \u0061\u006e\u0079\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0069\u006e\u0067\u0020\u0074\u0068\u0072\u0065\u0065\u0020\u0063\u006f\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u003a\u000a\u0020\u002d\u0020\u0066o\u006e\u0074\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0065\u006e\u0063\u006f\u0064\u0069n\u0067\u0073\u0020M\u0061\u0063\u0052o\u006d\u0061\u006e\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u004d\u0061\u0063\u0045\u0078\u0070\u0065\u0072\u0074E\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u0020\u006f\u0072\u0020\u0057\u0069\u006e\u0041n\u0073\u0069\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067\u002c\u0020\u006f\u0072\u0020\u0074\u0068\u0061\u0074\u0020\u0075\u0073\u0065\u0020t\u0068\u0065\u0020\u0070\u0072\u0065d\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048\u0020\u006f\u0072\u0020\u0049\u0064\u0065n\u0074\u0069\u0074\u0079\u002d\u0056\u0020C\u004d\u0061\u0070s\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0077\u0068\u006f\u0073\u0065\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u006e\u0061\u006d\u0065\u0073\u0020a\u0072\u0065 \u0074\u0061k\u0065\u006e\u0020\u0066\u0072\u006f\u006d\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u0020\u0073\u0074\u0061n\u0064\u0061\u0072\u0064\u0020L\u0061t\u0069\u006e\u0020\u0063\u0068a\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0074\u0020\u006fr\u0020\u0074\u0068\u0065 \u0073\u0065\u0074\u0020\u006f\u0066 \u006e\u0061\u006d\u0065\u0064\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0053\u0079\u006d\u0062\u006f\u006c\u0020\u0066\u006f\u006e\u0074\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046 \u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0041\u0070\u0070\u0065\u006e\u0064\u0069\u0078 \u0044\u003b\u000a\u0020\u002d\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020w\u0068\u006f\u0073e\u0020d\u0065\u0073\u0063\u0065n\u0064\u0061\u006e\u0074 \u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0075\u0073\u0065\u0073\u0020\u0074\u0068\u0065\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u0047B\u0031\u002c\u0020\u0041\u0064\u006fb\u0065\u002d\u0043\u004e\u0053\u0031\u002c\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004a\u0061\u0070\u0061\u006e\u0031\u0020\u006f\u0072\u0020\u0041\u0064\u006f\u0062\u0065\u002d\u004b\u006fr\u0065\u0061\u0031\u0020\u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u006c\u006c\u0065\u0063\u0074\u0069\u006f\u006e\u0073\u002e"; +);_dede ,_ggfb :=_ad .GetStream (_ggbb .Get ("\u0054o\u0055\u006e\u0069\u0063\u006f\u0064e"));if _ggfb {_ ,_acgef :=_ggag (_dede ,_eacf ,_gdbe );if _acgef !=nil {return _ba (_dfbfc ,_dabee );};return _bg ;};_dgaf ,_ggfb :=_ad .GetName (_ggbb .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065")); +if !_ggfb {return _ba (_dfbfc ,_dabee );};switch _dgaf .String (){case "\u0054\u0079\u0070e\u0031":return _bg ;};return _ba (_dfbfc ,_dabee );};func _dagb (_cdffd *_da .CompliancePdfReader )(_aebf []ViolatedRule ){var _gaddb ,_gafbf ,_gafa ,_eecc ,_eadg ,_dgaed bool ; +_ebaag :=func ()bool {return _gaddb &&_gafbf &&_gafa &&_eecc &&_eadg &&_dgaed };for _ ,_fccfb :=range _cdffd .PageList {if _fccfb .Resources ==nil {continue ;};_gaedg ,_caeeb :=_ad .GetDict (_fccfb .Resources .Font );if !_caeeb {continue ;};for _ ,_eegd :=range _gaedg .Keys (){_caefe ,_ceabe :=_ad .GetDict (_gaedg .Get (_eegd )); +if !_ceabe {if !_gaddb {_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0031","\u0041\u006c\u006c\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u006e\u0064\u0020\u0066on\u0074 \u0070\u0072\u006fg\u0072\u0061\u006ds\u0020\u0075\u0073\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0063\u006f\u006e\u0066\u006f\u0072mi\u006e\u0067\u0020\u0066\u0069\u006ce\u002c\u0020\u0072\u0065\u0067\u0061\u0072\u0064\u006c\u0065s\u0073\u0020\u006f\u0066\u0020\u0072\u0065\u006e\u0064\u0065\u0072\u0069\u006eg m\u006f\u0064\u0065\u0020\u0075\u0073\u0061\u0067\u0065\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0074\u0068e\u0020\u0070\u0072o\u0076\u0069\u0073\u0069\u006f\u006e\u0073\u0020\u0069\u006e \u0049\u0053\u004f\u0020\u0033\u0032\u0030\u0030\u0030\u002d\u0031:\u0032\u0030\u0030\u0038\u002c \u0039\u002e\u0036\u0020a\u006e\u0064\u0020\u0039.\u0037\u002e")); +_gaddb =true ;if _ebaag (){return _aebf ;};};continue ;};if _cafb ,_fegee :=_ad .GetName (_caefe .Get ("\u0054\u0079\u0070\u0065"));!_gaddb &&(!_fegee ||_cafb .String ()!="\u0046\u006f\u006e\u0074"){_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0031","\u0054\u0079\u0070e\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0029 Th\u0065\u0020\u0074\u0079\u0070\u0065\u0020\u006f\u0066 \u0050\u0044\u0046\u0020\u006fbj\u0065\u0063\u0074\u0020\u0074\u0068\u0061t\u0020\u0074\u0068\u0069s\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0064\u0065\u0073c\u0072\u0069\u0062\u0065\u0073\u003b\u0020\u006d\u0075\u0073t\u0020\u0062\u0065\u0020\u0046\u006f\u006e\u0074\u0020\u0066\u006fr\u0020\u0061\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); +_gaddb =true ;if _ebaag (){return _aebf ;};};_eecac ,_eedb :=_da .NewPdfFontFromPdfObject (_caefe );if _eedb !=nil {continue ;};var _befaa string ;if _abead ,_dacce :=_ad .GetName (_caefe .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_dacce {_befaa =_abead .String (); +};if !_gafbf {switch _befaa {case "\u0054\u0079\u0070e\u0030","\u0054\u0079\u0070e\u0031","\u004dM\u0054\u0079\u0070\u0065\u0031","\u0054\u0072\u0075\u0065\u0054\u0079\u0070\u0065","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":default:_gafbf =true ; +_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0032","\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065d\u0029\u0020\u0054\u0068e \u0074\u0079\u0070\u0065 \u006f\u0066\u0020\u0066\u006f\u006et\u003b\u0020\u006d\u0075\u0073\u0074\u0020b\u0065\u0020\u0022\u0054\u0079\u0070\u0065\u0031\u0022\u0020f\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0031\u0020f\u006f\u006e\u0074\u0073\u002c\u0020\u0022\u004d\u004d\u0054\u0079\u0070\u0065\u0031\u0022\u0020\u0066\u006f\u0072\u0020\u006d\u0075\u006c\u0074\u0069\u0070\u006c\u0065\u0020\u006da\u0073\u0074e\u0072\u0020\u0066\u006f\u006e\u0074s\u002c\u0020\u0022\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0072\u0075\u0065T\u0079\u0070\u0065\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0022\u0054\u0079\u0070\u0065\u0033\u0022\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070e\u0020\u0033\u0020\u0066\u006f\u006e\u0074\u0073\u002c\u0020\"\u0054\u0079\u0070\u0065\u0030\"\u0020\u0066\u006f\u0072\u0020\u0054\u0079\u0070\u0065\u0020\u0030\u0020\u0066\u006f\u006e\u0074\u0073\u0020\u0061\u006ed\u0020\u0022\u0043\u0049\u0044\u0046\u006fn\u0074\u0054\u0079\u0070\u0065\u0030\u0022 \u006f\u0072\u0020\u0022\u0043\u0049\u0044\u0046\u006f\u006e\u0074T\u0079\u0070e\u0032\u0022\u0020\u0066\u006f\u0072\u0020\u0043\u0049\u0044\u0020\u0066\u006f\u006e\u0074\u0073\u002e")); +if _ebaag (){return _aebf ;};};};if !_gafa {if _befaa !="\u0054\u0079\u0070e\u0033"{_bbffc ,_bacd :=_ad .GetName (_caefe .Get ("\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074"));if !_bacd ||_bbffc .String ()==""{_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0033","B\u0061\u0073\u0065\u0046\u006f\u006e\u0074\u0020\u002d\u0020\u006e\u0061\u006d\u0065\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064)\u0020T\u0068\u0065\u0020\u0050o\u0073\u0074S\u0063\u0072\u0069\u0070\u0074\u0020\u006e\u0061\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u002e")); +_gafa =true ;if _ebaag (){return _aebf ;};};};};if _befaa !="\u0054\u0079\u0070e\u0031"{continue ;};_gecd :=_cac .IsStdFont (_cac .StdFontName (_eecac .BaseFont ()));if _gecd {continue ;};_ddeaa ,_beae :=_ad .GetIntVal (_caefe .Get ("\u0046i\u0072\u0073\u0074\u0043\u0068\u0061r")); +if !_beae &&!_eecc {_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0034","\u0046\u0069r\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069\u006e\u0074\u0065\u0067\u0065\u0072\u0020\u002d\u0020\u0028\u0052\u0065\u0071\u0075i\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074h\u0065\u0020\u0073\u0074\u0061\u006e\u0064\u0061\u0072d\u0020\u0031\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u0029\u0020\u0054\u0068\u0065\u0020\u0066\u0069\u0072\u0073\u0074\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064e\u0020\u0064\u0065\u0066i\u006ee\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057i\u0064\u0074\u0068\u0073 \u0061r\u0072\u0061y\u002e")); +_eecc =true ;if _ebaag (){return _aebf ;};};_efbec ,_egbde :=_ad .GetIntVal (_caefe .Get ("\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072"));if !_egbde &&!_eadg {_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0035","\u004c\u0061\u0073t\u0043\u0068\u0061\u0072\u0020\u002d\u0020\u0069n\u0074\u0065\u0067e\u0072 \u002d\u0020\u0028\u0052\u0065\u0071u\u0069\u0072\u0065d\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0066\u006f\u0072\u0020t\u0068\u0065 s\u0074\u0061\u006e\u0064\u0061\u0072\u0064\u0020\u0031\u0034\u0020\u0066\u006f\u006ets\u0029\u0020\u0054\u0068\u0065\u0020\u006c\u0061\u0073t\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0063\u006f\u0064\u0065\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0027\u0073\u0020\u0057\u0069\u0064\u0074h\u0073\u0020\u0061\u0072\u0072\u0061\u0079\u002e")); +_eadg =true ;if _ebaag (){return _aebf ;};};if !_dgaed {_cgef ,_eddab :=_ad .GetArray (_caefe .Get ("\u0057\u0069\u0064\u0074\u0068\u0073"));if !_eddab ||!_beae ||!_egbde ||_cgef .Len ()!=_efbec -_ddeaa +1{_aebf =append (_aebf ,_ba ("\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0032\u002d\u0036","\u0057\u0069\u0064\u0074\u0068\u0073\u0020\u002d a\u0072\u0072\u0061y \u002d\u0020\u0028\u0052\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0065\u0078\u0063\u0065\u0070t\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0065\u0020\u0073\u0074a\u006e\u0064a\u0072\u0064\u00201\u0034\u0020\u0066\u006f\u006e\u0074\u0073\u003b\u0020\u0069\u006ed\u0069\u0072\u0065\u0063\u0074\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0070\u0072\u0065\u0066e\u0072\u0072e\u0064\u0029\u0020\u0041\u006e \u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0066\u0020\u0028\u004c\u0061\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u2212 F\u0069\u0072\u0073\u0074\u0043\u0068\u0061\u0072\u0020\u002b\u00201\u0029\u0020\u0077\u0069\u0064\u0074\u0068\u0073.")); +_dgaed =true ;if _ebaag (){return _aebf ;};};};};};return _aebf ;};type pageColorspaceOptimizeFunc func (_dagc *_ea .Document ,_fcfa *_ea .Page ,_caa []*_ea .Image )error ;func _bb ()standardType {return standardType {_efe :2,_ee :"\u0041"}};func _fgab (_gfac *_da .CompliancePdfReader ,_cfcc standardType ,_cdab bool )(_dbdgg []ViolatedRule ){_deefc ,_aead :=_acgab (_gfac ); +if !_aead {return []ViolatedRule {_ba ("\u0036.\u0037\u002e\u0032\u002d\u0031","\u0063a\u0074a\u006c\u006f\u0067\u0020\u006eo\u0074\u0020f\u006f\u0075\u006e\u0064\u002e")};};_efcd :=_deefc .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");if _efcd ==nil {return []ViolatedRule {_ba ("\u0036.\u0037\u002e\u0032\u002d\u0031","\u006e\u006f\u0020\u0027\u004d\u0065\u0074\u0061d\u0061\u0074\u0061' \u006b\u0065\u0079\u0020\u0066\u006fu\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u002e"),_ba ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")}; +};_bdea ,_aead :=_ad .GetStream (_efcd );if !_aead {return []ViolatedRule {_ba ("\u0036.\u0037\u002e\u0032\u002d\u0032","\u0063\u0061\u0074a\u006c\u006f\u0067\u0020\u0027\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0027\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020a\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e"),_ba ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")}; +};if _bdea .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")!=nil {_dbdgg =append (_dbdgg ,_ba ("\u0036.\u0037\u002e\u0032\u002d\u0032","M\u0065\u0074a\u0064\u0061\u0074\u0061\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u006b\u0065y\u002e")); +};_bbff ,_bbcg :=_gf .LoadDocument (_bdea .Stream );if _bbcg !=nil {return []ViolatedRule {_ba ("\u0036.\u0037\u002e\u0039\u002d\u0031","The\u0020\u006d\u0065\u0074a\u0064\u0061t\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0061\u006e\u0064\u0020\u0077\u0065\u006c\u006c\u0020\u0066\u006f\u0072\u006de\u0064\u0020\u0050\u0044\u0046\u0041\u0045\u0078\u0074e\u006e\u0073\u0069\u006f\u006e\u0020\u0053\u0063\u0068\u0065\u006da\u0020\u0066\u006fr\u0020\u0061\u006c\u006c\u0020\u0065\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0073\u002e")}; +};_dcdba :=_bbff .GetGoXmpDocument ();var _cebc []*_ga .Namespace ;for _ ,_daffa :=range _dcdba .Namespaces (){switch _daffa .Name {case _cb .NsDc .Name ,_f .NsPDF .Name ,_ef .NsXmp .Name ,_eb .NsXmpRights .Name ,_ebe .Namespace .Name ,_be .Namespace .Name ,_cf .NsXmpMM .Name ,_be .FieldNS .Name ,_be .SchemaNS .Name ,_be .PropertyNS .Name ,"\u0073\u0074\u0045v\u0074","\u0073\u0074\u0056e\u0072","\u0073\u0074\u0052e\u0066","\u0073\u0074\u0044i\u006d","\u0078a\u0070\u0047\u0049\u006d\u0067","\u0073\u0074\u004ao\u0062","\u0078\u006d\u0070\u0069\u0064\u0071":continue ; +};_cebc =append (_cebc ,_daffa );};_dgbec :=true ;_fdbb ,_bbcg :=_bbff .GetPdfaExtensionSchemas ();if _bbcg ==nil {for _ ,_dfgbe :=range _cebc {var _bdacc bool ;for _fcdfg :=range _fdbb {if _dfgbe .URI ==_fdbb [_fcdfg ].NamespaceURI {_bdacc =true ;break ; +};};if !_bdacc {_dgbec =false ;break ;};};}else {_dgbec =false ;};if !_dgbec {_dbdgg =append (_dbdgg ,_ba ("\u0036.\u0037\u002e\u0039\u002d\u0032","\u0050\u0072\u006f\u0070\u0065\u0072\u0074i\u0065\u0073 \u0073\u0070\u0065\u0063\u0069\u0066\u0069ed\u0020\u0069\u006e\u0020\u0058M\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0073\u0068\u0061\u006cl\u0020\u0075\u0073\u0065\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073 \u0064\u0065\u0066i\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006fn\u002c\u0020\u006f\u0072\u0020\u0065\u0078\u0074\u0065ns\u0069\u006f\u006e\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u0074\u0068\u0061\u0074 \u0063\u006f\u006d\u0070\u006c\u0079\u0020\u0077\u0069\u0074h\u0020\u0058\u004d\u0050\u0020\u0053\u0070e\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002e")); +};_gfccf ,_bbcg :=_gfac .GetPdfInfo ();if _bbcg ==nil {if !_cagb (_gfccf ,_bbff ){_dbdgg =append (_dbdgg ,_ba ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")); +};}else if _ ,_fggf :=_bbff .GetMediaManagement ();_fggf {_dbdgg =append (_dbdgg ,_ba ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")); +};_babg ,_aead :=_bbff .GetPdfAID ();if !_aead {_dbdgg =append (_dbdgg ,_ba ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0061n\u0064\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020\u006c\u0065\u0076\u0065l\u0020\u006f\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0070e\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0074\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0065\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0020\u0073\u0063h\u0065\u006da.")); +}else {if _babg .Part !=_cfcc ._efe {_dbdgg =append (_dbdgg ,_ba ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0032","\u0054h\u0065\u0020\u0076\u0061lue\u0020\u006f\u0066\u0020p\u0064\u0066\u0061\u0069\u0064\u003a\u0070\u0061\u0072\u0074 \u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0061\u0072\u0074\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0049\u0053\u004f\u002019\u0030\u0030\u0035 \u0074\u006f\u0020\u0077\u0068i\u0063h\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065 \u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0073\u002e")); +};if _cfcc ._ee =="\u0041"&&_babg .Conformance !="\u0041"{_dbdgg =append (_dbdgg ,_ba ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0033","\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063i\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063o\u006e\u0066\u006fr\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0041\u002e\u0020\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0042\u0020\u0063\u006f\u006e\u0066o\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0073\u0070e\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e")); +}else if _cfcc ._ee =="\u0042"&&(_babg .Conformance !="\u0041"&&_babg .Conformance !="\u0042"){_dbdgg =append (_dbdgg ,_ba ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0033","\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063i\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063o\u006e\u0066\u006fr\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0041\u002e\u0020\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0042\u0020\u0063\u006f\u006e\u0066o\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0073\u0070e\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e")); +};};return _dbdgg ;}; -// Conformance gets the PDF/A conformance. -func (_gcegf *profile2 )Conformance ()string {return _gcegf ._bedf ._dc };func _ddfb (_egeca *_b .CompliancePdfReader )(_cadd []ViolatedRule ){var _begd ,_bcgc ,_dgda ,_aead ,_eaeeg ,_gdgf ,_gcgfb bool ;_gdadg :=func ()bool {return _begd &&_bcgc &&_dgda &&_aead &&_eaeeg &&_gdgf &&_gcgfb }; -for _ ,_ggcag :=range _egeca .PageList {_gfdc ,_fbabd :=_ggcag .GetAnnotations ();if _fbabd !=nil {_cf .Log .Trace ("\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0061\u006en\u006f\u0074\u0061\u0074\u0069\u006f\u006es\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_fbabd ); -continue ;};for _ ,_gfeg :=range _gfdc {if !_begd {switch _gfeg .GetContext ().(type ){case *_b .PdfAnnotationScreen ,*_b .PdfAnnotation3D ,*_b .PdfAnnotationSound ,*_b .PdfAnnotationMovie ,nil :_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0031\u002d\u0031","\u0041nn\u006f\u0074\u0061\u0074i\u006f\u006e t\u0079\u0070\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0064\u0065f\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072e\u006e\u0063\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065r\u006d\u0069t\u0074\u0065\u0064\u002e\u0020\u0041\u0064d\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0033\u0044\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u002c\u0020\u0053\u0063\u0072\u0065\u0065\u006e\u0020\u0061n\u0064\u0020\u004d\u006f\u0076\u0069\u0065\u0020\u0074\u0079\u0070\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_begd =true ;if _gdadg (){return _cadd ;};};};_accbf ,_daece :=_fc .GetDict (_gfeg .GetContainingPdfObject ());if !_daece {continue ;};_ ,_acaa :=_gfeg .GetContext ().(*_b .PdfAnnotationPopup );if !_acaa &&!_bcgc {_ ,_cbed :=_fc .GetIntVal (_accbf .Get ("\u0046")); -if !_cbed {_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0031","\u0045\u0078\u0063\u0065\u0070\u0074\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069o\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072i\u0065\u0073\u0020\u0077\u0068\u006fs\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0020\u0076\u0061l\u0075\u0065\u0020\u0069\u0073\u0020\u0050\u006f\u0070u\u0070\u002c\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0046 \u006b\u0065y.")); -_bcgc =true ;if _gdadg (){return _cadd ;};};};if !_dgda {_cdbeb ,_dddab :=_fc .GetIntVal (_accbf .Get ("\u0046"));if _dddab &&!(_cdbeb &4==4&&_cdbeb &1==0&&_cdbeb &2==0&&_cdbeb &32==0&&_cdbeb &256==0){_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0032","I\u0066\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u002c\u0020\u0074\u0068\u0065\u0020\u0046 \u006b\u0065\u0079\u0027\u0073\u0020\u0050\u0072\u0069\u006e\u0074\u0020\u0066\u006c\u0061\u0067\u0020\u0062\u0069\u0074\u0020\u0073\u0068\u0061l\u006c\u0020\u0062\u0065\u0020\u0073\u0065\u0074\u0020\u0074\u006f\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0069\u0074\u0073\u0020\u0048\u0069\u0064\u0064\u0065\u006e\u002c\u0020\u0049\u006e\u0076\u0069\u0073\u0069\u0062\u006c\u0065\u002c\u0020\u0054\u006f\u0067\u0067\u006c\u0065\u004e\u006f\u0056\u0069\u0065\u0077\u002c\u0020\u0061\u006e\u0064 \u004eo\u0056\u0069\u0065\u0077\u0020\u0066\u006c\u0061\u0067\u0020\u0062\u0069\u0074\u0073\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020s\u0065\u0074\u0020t\u006f\u0020\u0030.")); -_dgda =true ;if _gdadg (){return _cadd ;};};};_ ,_fgfa :=_gfeg .GetContext ().(*_b .PdfAnnotationText );if _fgfa &&!_aead {_gcgb ,_ffbfa :=_fc .GetIntVal (_accbf .Get ("\u0046"));if _ffbfa &&!(_gcgb &8==8&&_gcgb &16==16){_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0032\u002d\u0033","\u0054\u0065\u0078\u0074\u0020a\u006e\u006e\u006f\u0074\u0061t\u0069o\u006e\u0020\u0068\u0061\u0073\u0020\u006f\u006e\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006ca\u0067\u0073\u0020\u004e\u006f\u005a\u006f\u006f\u006d\u0020\u006f\u0072\u0020\u004e\u006f\u0052\u006f\u0074\u0061\u0074\u0065\u0020\u0073\u0065t\u0020\u0074\u006f\u0020\u0030\u002e")); -_aead =true ;if _gdadg (){return _cadd ;};};};if !_eaeeg {_bbgd ,_dfea :=_fc .GetDict (_accbf .Get ("\u0041\u0050"));if _dfea {_bdfb :=_bbgd .Get ("\u004e");if _bdfb ==nil ||len (_bbgd .Keys ())> 1{_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0033\u002d\u0032","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); -_eaeeg =true ;if _gdadg (){return _cadd ;};continue ;};_ ,_fdbfb :=_gfeg .GetContext ().(*_b .PdfAnnotationWidget );if _fdbfb {_cgccf ,_dfbg :=_fc .GetName (_accbf .Get ("\u0046\u0054"));if _dfbg &&*_cgccf =="\u0042\u0074\u006e"{if _ ,_efbef :=_fc .GetDict (_bdfb ); -!_efbef {_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0033\u002d\u0032","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); -_eaeeg =true ;if _gdadg (){return _cadd ;};continue ;};};};_ ,_abdg :=_fc .GetStream (_bdfb );if !_abdg {_cadd =append (_cadd ,_fe ("\u0036.\u0033\u002e\u0033\u002d\u0032","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); -_eaeeg =true ;if _gdadg (){return _cadd ;};continue ;};};};_fbcce ,_cgdce :=_gfeg .GetContext ().(*_b .PdfAnnotationWidget );if !_cgdce {continue ;};if !_gdgf {if _fbcce .A !=nil {_cadd =append (_cadd ,_fe ("\u0036.\u0034\u002e\u0031\u002d\u0031","A \u0057\u0069d\u0067\u0065\u0074\u0020\u0061\u006e\u006e\u006f\u0074a\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0069\u006ec\u006cu\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0020e\u006et\u0072\u0079.")); -_gdgf =true ;if _gdadg (){return _cadd ;};};};if !_gcgfb {if _fbcce .AA !=nil {_cadd =append (_cadd ,_fe ("\u0036.\u0034\u002e\u0031\u002d\u0031","\u0041\u0020\u0057\u0069\u0064\u0067\u0065\u0074\u0020\u0061\u006e\u006eo\u0074\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073h\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0041\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0061d\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); -_gcgfb =true ;if _gdadg (){return _cadd ;};};};};};return _cadd ;};func _feebb (_afbef *Profile1Options ){if _afbef .Now ==nil {_afbef .Now =_c .Now ;};};func _fgdb (_bagdb *_b .CompliancePdfReader )ViolatedRule {for _ ,_gega :=range _bagdb .PageList {_fcgad :=_gega .GetContentStreamObjs (); -for _ ,_gbgb :=range _fcgad {_gbgb =_fc .TraceToDirectObject (_gbgb );var _ffaf string ;switch _afab :=_gbgb .(type ){case *_fc .PdfObjectString :_ffaf =_afab .Str ();case *_fc .PdfObjectStream :_eccfg ,_fbfgb :=_fc .GetName (_fc .TraceToDirectObject (_afab .Get ("\u0046\u0069\u006c\u0074\u0065\u0072"))); -if _fbfgb {if *_eccfg ==_fc .StreamEncodingFilterNameLZW {return _fe ("\u0036\u002e\u0031\u002e\u0031\u0030\u002d\u0032","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e"); -};};_dffa ,_cgfb :=_fc .DecodeStream (_afab );if _cgfb !=nil {_cf .Log .Debug ("\u0045r\u0072\u003a\u0020\u0025\u0076",_cgfb );continue ;};_ffaf =string (_dffa );default:_cf .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069d\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063t\u003a\u0020\u0025\u0054",_gbgb ); -continue ;};_gcgaa :=_fbg .NewContentStreamParser (_ffaf );_agddae ,_gecdc :=_gcgaa .Parse ();if _gecdc !=nil {_cf .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0063\u006f\u006et\u0065\u006e\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d:\u0020\u0025\u0076",_gecdc ); -continue ;};for _ ,_fef :=range *_agddae {if !(_fef .Operand =="\u0042\u0049"&&len (_fef .Params )==1){continue ;};_gece ,_ddcd :=_fef .Params [0].(*_fbg .ContentStreamInlineImage );if !_ddcd {continue ;};_eda ,_bbce :=_gece .GetEncoder ();if _bbce !=nil {_cf .Log .Debug ("\u0067\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0069\u006e\u006c\u0069\u006ee\u0020\u0069\u006d\u0061\u0067\u0065 \u0065\u006e\u0063\u006f\u0064\u0065\u0072\u0020\u0066\u0061\u0069\u006c\u0065d\u003a\u0020\u0025\u0076",_bbce ); -continue ;};if _eda .GetFilterName ()==_fc .StreamEncodingFilterNameLZW {return _fe ("\u0036\u002e\u0031\u002e\u0031\u0030\u002d\u0032","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e"); -};};};};return _da ;};func _bgca (_eebag *_b .CompliancePdfReader )ViolatedRule {_fafdf :=map[*_fc .PdfObjectStream ]struct{}{};for _ ,_gdac :=range _eebag .PageList {if _gdac .Resources ==nil &&_gdac .Contents ==nil {continue ;};if _ddcg :=_gdac .GetPageDict (); -_ddcg !=nil {_adcc ,_gffa :=_fc .GetDict (_ddcg .Get ("\u0047\u0072\u006fu\u0070"));if _gffa {if _babc :=_adcc .Get ("\u0053");_babc !=nil {_dec ,_ebfd :=_fc .GetName (_babc );if _ebfd &&_dec .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{return _fe ("\u0036\u002e\u0034-\u0033","\u0041\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020\u0053\u0020\u0078Ob\u006a\u0065c\u0074\u0020\u0077\u0069\u0074h\u0020\u0061\u0020\u0076a\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062je\u0063\u0074\u002e\n\u0041 \u0047\u0072\u006f\u0075p\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020S\u0020\u0078\u004fb\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020v\u0061\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006ec\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); -};};};};if _gdac .Resources !=nil {if _aeea ,_gade :=_fc .GetDict (_gdac .Resources .XObject );_gade {for _ ,_daabg :=range _aeea .Keys (){_agca ,_cbgcf :=_fc .GetStream (_aeea .Get (_daabg ));if !_cbgcf {continue ;};if _ ,_cgad :=_fafdf [_agca ];_cgad {continue ; -};_cbee ,_cbgcf :=_fc .GetDict (_agca .Get ("\u0047\u0072\u006fu\u0070"));if !_cbgcf {_fafdf [_agca ]=struct{}{};continue ;};_cdacd :=_cbee .Get ("\u0053");if _cdacd !=nil {_afdc ,_dagcb :=_fc .GetName (_cdacd );if _dagcb &&_afdc .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{return _fe ("\u0036\u002e\u0034-\u0033","\u0041\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020\u0053\u0020\u0078Ob\u006a\u0065c\u0074\u0020\u0077\u0069\u0074h\u0020\u0061\u0020\u0076a\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062je\u0063\u0074\u002e\n\u0041 \u0047\u0072\u006f\u0075p\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020S\u0020\u0078\u004fb\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020v\u0061\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006ec\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); -};};_fafdf [_agca ]=struct{}{};continue ;};};};if _gdac .Contents !=nil {_gdbe ,_egcd :=_gdac .GetContentStreams ();if _egcd !=nil {continue ;};for _ ,_eege :=range _gdbe {_fbab ,_fgfg :=_fbg .NewContentStreamParser (_eege ).Parse ();if _fgfg !=nil {continue ; -};for _ ,_fafc :=range *_fbab {if len (_fafc .Params )==0{continue ;};_caccd ,_fbdc :=_fc .GetName (_fafc .Params [0]);if !_fbdc {continue ;};_geefe ,_bgad :=_gdac .Resources .GetXObjectByName (*_caccd );if _bgad !=_b .XObjectTypeForm {continue ;};if _ ,_aaaee :=_fafdf [_geefe ]; -_aaaee {continue ;};_bbfa ,_fbdc :=_fc .GetDict (_geefe .Get ("\u0047\u0072\u006fu\u0070"));if !_fbdc {_fafdf [_geefe ]=struct{}{};continue ;};_adcce :=_bbfa .Get ("\u0053");if _adcce !=nil {_gbbc ,_dfdgc :=_fc .GetName (_adcce );if _dfdgc &&_gbbc .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{return _fe ("\u0036\u002e\u0034-\u0033","\u0041\u0020\u0047\u0072\u006f\u0075\u0070\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020\u0053\u0020\u0078Ob\u006a\u0065c\u0074\u0020\u0077\u0069\u0074h\u0020\u0061\u0020\u0076a\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061\u006e\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064\u0065\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0066\u006f\u0072\u006d\u0020\u0058\u004f\u0062je\u0063\u0074\u002e\n\u0041 \u0047\u0072\u006f\u0075p\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u006e\u0020S\u0020\u0078\u004fb\u006a\u0065\u0063\u0074\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020v\u0061\u006c\u0075\u0065\u0020o\u0066\u0020\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006ec\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020i\u006e\u0063\u006c\u0075\u0064e\u0064\u0020\u0069\u006e\u0020\u0061\u0020\u0070\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e"); -};};_fafdf [_geefe ]=struct{}{};};};};};return _da ;};func _gebb (_dcf *_b .PdfPageResources ,_ada *_fbg .ContentStreamOperations ,_efa bool )([]byte ,error ){var _ddc bool ;for _ ,_dbeb :=range *_ada {_fgd :switch _dbeb .Operand {case "\u0042\u0049":_fbgg ,_aca :=_dbeb .Params [0].(*_fbg .ContentStreamInlineImage ); -if !_aca {break ;};_eafe ,_deff :=_fbgg .GetColorSpace (_dcf );if _deff !=nil {return nil ,_deff ;};switch _eafe .(type ){case *_b .PdfColorspaceDeviceCMYK :if _efa {break _fgd ;};case *_b .PdfColorspaceDeviceGray :case *_b .PdfColorspaceDeviceRGB :if !_efa {break _fgd ; -};default:break _fgd ;};_ddc =true ;_fgec ,_deff :=_fbgg .ToImage (_dcf );if _deff !=nil {return nil ,_deff ;};_feag ,_deff :=_fgec .ToGoImage ();if _deff !=nil {return nil ,_deff ;};if _efa {_feag ,_deff =_ae .CMYKConverter .Convert (_feag );}else {_feag ,_deff =_ae .NRGBAConverter .Convert (_feag ); -};if _deff !=nil {return nil ,_deff ;};_ebba ,_aca :=_feag .(_ae .Image );if !_aca {return nil ,_d .New ("\u0069\u006d\u0061\u0067\u0065\u0020\u0064\u006f\u0065\u0073\u006e\u0027\u0074 \u0069\u006d\u0070\u006c\u0065\u006de\u006e\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u0075\u0074\u0069\u006c\u002eI\u006d\u0061\u0067\u0065"); -};_bfb :=_ebba .Base ();_ecgd :=_b .Image {Width :int64 (_bfb .Width ),Height :int64 (_bfb .Height ),BitsPerComponent :int64 (_bfb .BitsPerComponent ),ColorComponents :_bfb .ColorComponents ,Data :_bfb .Data };_ecgd .SetDecode (_bfb .Decode );_ecgd .SetAlpha (_bfb .Alpha ); -_gaab ,_deff :=_fbgg .GetEncoder ();if _deff !=nil {_gaab =_fc .NewFlateEncoder ();};_dcc ,_deff :=_fbg .NewInlineImageFromImage (_ecgd ,_gaab );if _deff !=nil {return nil ,_deff ;};_dbeb .Params [0]=_dcc ;case "\u0047","\u0067":if len (_dbeb .Params )!=1{break ; -};_bggg ,_aac :=_fc .GetNumberAsFloat (_dbeb .Params [0]);if _aac !=nil {break ;};if _efa {_dbeb .Params =[]_fc .PdfObject {_fc .MakeFloat (0),_fc .MakeFloat (0),_fc .MakeFloat (0),_fc .MakeFloat (1-_bggg )};_efda :="\u004b";if _dbeb .Operand =="\u0067"{_efda ="\u006b"; -};_dbeb .Operand =_efda ;}else {_dbeb .Params =[]_fc .PdfObject {_fc .MakeFloat (_bggg ),_fc .MakeFloat (_bggg ),_fc .MakeFloat (_bggg )};_baec :="\u0052\u0047";if _dbeb .Operand =="\u0067"{_baec ="\u0072\u0067";};_dbeb .Operand =_baec ;};_ddc =true ;case "\u0052\u0047","\u0072\u0067":if !_efa {break ; -};if len (_dbeb .Params )!=3{break ;};_ceeg ,_edbd :=_fc .GetNumbersAsFloat (_dbeb .Params );if _edbd !=nil {break ;};_ddc =true ;_dddbg ,_eebc ,_bacf :=_ceeg [0],_ceeg [1],_ceeg [2];_bbe ,_bde ,_cdb ,_bag :=_ad .RGBToCMYK (uint8 (_dddbg *255),uint8 (_eebc *255),uint8 (255*_bacf )); -_dbeb .Params =[]_fc .PdfObject {_fc .MakeFloat (float64 (_bbe )/255),_fc .MakeFloat (float64 (_bde )/255),_fc .MakeFloat (float64 (_cdb )/255),_fc .MakeFloat (float64 (_bag )/255)};_dfb :="\u004b";if _dbeb .Operand =="\u0072\u0067"{_dfb ="\u006b";};_dbeb .Operand =_dfb ; -case "\u004b","\u006b":if _efa {break ;};if len (_dbeb .Params )!=4{break ;};_bdcf ,_gbbf :=_fc .GetNumbersAsFloat (_dbeb .Params );if _gbbf !=nil {break ;};_fgf ,_cbfe ,_bfef ,_cgda :=_bdcf [0],_bdcf [1],_bdcf [2],_bdcf [3];_bagd ,_dag ,_gecc :=_ad .CMYKToRGB (uint8 (255*_fgf ),uint8 (255*_cbfe ),uint8 (255*_bfef ),uint8 (255*_cgda )); -_dbeb .Params =[]_fc .PdfObject {_fc .MakeFloat (float64 (_bagd )/255),_fc .MakeFloat (float64 (_dag )/255),_fc .MakeFloat (float64 (_gecc )/255)};_fabd :="\u0052\u0047";if _dbeb .Operand =="\u006b"{_fabd ="\u0072\u0067";};_dbeb .Operand =_fabd ;_ddc =true ; -};};if !_ddc {return nil ,nil ;};_fde :=_fbg .NewContentCreator ();for _ ,_eba :=range *_ada {_fde .AddOperand (*_eba );};_dggd :=_fde .Bytes ();return _dggd ,nil ;}; +// NewProfile2B creates a new Profile2B with the given options. +func NewProfile2B (options *Profile2Options )*Profile2B {if options ==nil {options =DefaultProfile2Options ();};_cdcc (options );return &Profile2B {profile2 {_eceb :*options ,_fcdd :_fb ()}};};func _ceaf (_caec *_da .CompliancePdfReader )ViolatedRule {if _caec .ParserMetadata ().HasDataAfterEOF (){return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0033","\u004e\u006f\u0020\u0064\u0061ta\u0020\u0073h\u0061\u006c\u006c\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0020\u0074\u0068\u0065\u0020\u006c\u0061\u0073\u0074\u0020\u0065\u006e\u0064\u002d\u006f\u0066\u002d\u0066\u0069l\u0065\u0020\u006da\u0072\u006b\u0065\u0072\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0061 \u0073\u0069\u006e\u0067\u006ce\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061\u006c \u0065\u006ed\u002do\u0066\u002d\u006c\u0069\u006e\u0065\u0020m\u0061\u0072\u006b\u0065\u0072\u002e"); +};return _bg ;};func _eeda (_fbad *_da .CompliancePdfReader )ViolatedRule {if _fbad .ParserMetadata ().HasDataAfterEOF (){return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0033","\u004e\u006f\u0020\u0064\u0061ta\u0020\u0073h\u0061\u006c\u006c\u0020\u0066\u006f\u006c\u006c\u006f\u0077\u0020\u0074\u0068\u0065\u0020\u006c\u0061\u0073\u0074\u0020\u0065\u006e\u0064\u002d\u006f\u0066\u002d\u0066\u0069l\u0065\u0020\u006da\u0072\u006b\u0065\u0072\u0020\u0065\u0078\u0063\u0065\u0070\u0074\u0020\u0061 \u0073\u0069\u006e\u0067\u006ce\u0020\u006f\u0070\u0074\u0069\u006f\u006e\u0061\u006c \u0065\u006ed\u002do\u0066\u002d\u006c\u0069\u006e\u0065\u0020m\u0061\u0072\u006b\u0065\u0072\u002e"); +};return _bg ;};func _fb ()standardType {return standardType {_efe :2,_ee :"\u0042"}};var _ Profile =(*Profile2A )(nil ); -// Profile1Options are the options that changes the way how optimizer may try to adapt document into PDF/A standard. -type Profile1Options struct{ +// Profile2Options are the options that changes the way how optimizer may try to adapt document into PDF/A standard. +type Profile2Options struct{ -// CMYKDefaultColorSpace is an option that refers PDF/A-1 +// CMYKDefaultColorSpace is an option that refers PDF/A CMYKDefaultColorSpace bool ; // Now is a function that returns current time. -Now func ()_c .Time ; +Now func ()_a .Time ; // Xmp is the xmp options information. -Xmp XmpOptions ;};func _efad (_gacfc *_b .CompliancePdfReader )(_egaf []ViolatedRule ){for _ ,_dgff :=range _gacfc .GetObjectNums (){_afgaf ,_eacg :=_gacfc .GetIndirectObjectByNumber (_dgff );if _eacg !=nil {continue ;};_ebef ,_ggfd :=_fc .GetDict (_afgaf ); -if !_ggfd {continue ;};_cfadg ,_ggfd :=_fc .GetName (_ebef .Get ("\u0054\u0079\u0070\u0065"));if !_ggfd {continue ;};if _cfadg .String ()!="\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"{continue ;};_bbae ,_ggfd :=_fc .GetBool (_ebef .Get ("\u004ee\u0065d\u0041\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0073")); -if !_ggfd {return _egaf ;};if bool (*_bbae ){_egaf =append (_egaf ,_fe ("\u0036\u002e\u0039-\u0031","\u0054\u0068\u0065\u0020\u004e\u0065e\u0064\u0041\u0070\u0070\u0065a\u0072\u0061\u006e\u0063\u0065\u0073\u0020\u0066\u006c\u0061\u0067\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0069\u006e\u0074\u0065\u0072\u0061\u0063\u0074\u0069\u0076e\u0020\u0066\u006f\u0072\u006d \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u006e\u006f\u0074\u0020b\u0065\u0020\u0070\u0072\u0065se\u006e\u0074\u0020\u006f\u0072\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); -};};return _egaf ;};func _gfg (_geed bool ,_bbba standardType )(pageColorspaceOptimizeFunc ,documentColorspaceOptimizeFunc ){var _gecd ,_gecb ,_ecfg bool ;_gda :=func (_edfc *_ag .Document ,_gcga *_ag .Page ,_gbc []*_ag .Image )error {for _ ,_aaag :=range _gbc {switch _aaag .Colorspace {case "\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_gecb =true ; -case "\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_gecd =true ;case "\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_ecfg =true ;};};_dace ,_gbcf :=_gcga .GetContents ();if !_gbcf {return nil ;};for _ ,_cbde :=range _dace {_gefa ,_eeb :=_cbde .GetData (); -if _eeb !=nil {continue ;};_fabc :=_fbg .NewContentStreamParser (string (_gefa ));_ega ,_eeb :=_fabc .Parse ();if _eeb !=nil {continue ;};for _ ,_abae :=range *_ega {switch _abae .Operand {case "\u0047","\u0067":_gecb =true ;case "\u0052\u0047","\u0072\u0067":_gecd =true ; -case "\u004b","\u006b":_ecfg =true ;case "\u0043\u0053","\u0063\u0073":if len (_abae .Params )==0{continue ;};_dcge ,_cfca :=_fc .GetName (_abae .Params [0]);if !_cfca {continue ;};switch _dcge .String (){case "\u0052\u0047\u0042","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_gecd =true ; -case "\u0047","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_gecb =true ;case "\u0043\u004d\u0059\u004b","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_ecfg =true ;};};};};_caba :=_gcga .FindXObjectForms ();for _ ,_gea :=range _caba {_fcc :=_fbg .NewContentStreamParser (string (_gea .Stream )); -_geba ,_cccb :=_fcc .Parse ();if _cccb !=nil {continue ;};for _ ,_ccb :=range *_geba {switch _ccb .Operand {case "\u0047","\u0067":_gecb =true ;case "\u0052\u0047","\u0072\u0067":_gecd =true ;case "\u004b","\u006b":_ecfg =true ;case "\u0043\u0053","\u0063\u0073":if len (_ccb .Params )==0{continue ; -};_gdad ,_cdge :=_fc .GetName (_ccb .Params [0]);if !_cdge {continue ;};switch _gdad .String (){case "\u0052\u0047\u0042","\u0044e\u0076\u0069\u0063\u0065\u0052\u0047B":_gecd =true ;case "\u0047","\u0044\u0065\u0076\u0069\u0063\u0065\u0047\u0072\u0061\u0079":_gecb =true ; -case "\u0043\u004d\u0059\u004b","\u0044\u0065\u0076\u0069\u0063\u0065\u0043\u004d\u0059\u004b":_ecfg =true ;};};};_ebfa ,_fff :=_fc .GetArray (_gcga .Object .Get ("\u0041\u006e\u006e\u006f\u0074\u0073"));if !_fff {return nil ;};for _ ,_ceed :=range _ebfa .Elements (){_gffe ,_dfcc :=_fc .GetDict (_ceed ); -if !_dfcc {continue ;};_gfgd :=_gffe .Get ("\u0043");if _gfgd ==nil {continue ;};_ffd ,_dfcc :=_fc .GetArray (_gfgd );if !_dfcc {continue ;};switch _ffd .Len (){case 0:case 1:_gecb =true ;case 3:_gecd =true ;case 4:_ecfg =true ;};};};return nil ;};_aecgd :=func (_gddb *_ag .Document ,_cfeea []*_ag .Image )error {_fffc ,_eccf :=_gddb .FindCatalog (); -if !_eccf {return nil ;};_gebg ,_eccf :=_fffc .GetOutputIntents ();if _eccf &&_gebg .Len ()> 0{return nil ;};if !_eccf {_gebg =_fffc .NewOutputIntents ();};if !(_gecd ||_ecfg ||_gecb ){return nil ;};defer _fffc .SetOutputIntents (_gebg );if _gecd &&!_ecfg &&!_gecb {return _cgab (_gddb ,_bbba ,_gebg ); -};if _ecfg &&!_gecd &&!_gecb {return _bdee (_bbba ,_gebg );};if _gecb &&!_gecd &&!_ecfg {return _edbdd (_bbba ,_gebg );};if _gecd &&_ecfg {if _bddg :=_geg (_cfeea ,_geed );_bddg !=nil {return _bddg ;};if _edfg :=_fffcg (_gddb ,_geed );_edfg !=nil {return _edfg ; -};if _dfdg :=_gab (_gddb ,_geed );_dfdg !=nil {return _dfdg ;};if _cafg :=_bccf (_gddb ,_geed );_cafg !=nil {return _cafg ;};if _geed {return _bdee (_bbba ,_gebg );};return _cgab (_gddb ,_bbba ,_gebg );};return nil ;};return _gda ,_aecgd ;};func _fbeed (_aece *_fc .PdfObjectDictionary ,_afaa map[*_fc .PdfObjectStream ][]byte ,_aedebc map[*_fc .PdfObjectStream ]*_gc .CMap )ViolatedRule {const (_feeg ="\u0036\u002e\u0032\u002e\u0031\u0031\u002e\u0033\u002d\u0033"; -_gbaea ="\u0041\u006c\u006c \u0043\u004d\u0061\u0070s\u0020\u0075\u0073ed\u0020\u0077\u0069\u0074\u0068i\u006e\u0020\u0061\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0032\u0020\u0066\u0069\u006c\u0065\u002c\u0020\u0065\u0078\u0063\u0065\u0070\u0074 th\u006f\u0073\u0065\u0020\u006ci\u0073\u0074\u0065\u0064\u0020i\u006e\u0020\u0049\u0053\u004f\u0020\u0033\u00320\u00300\u002d1\u003a\u0032\u0030\u0030\u0038\u002c\u0020\u0039\u002e\u0037\u002e\u0035\u002e\u0032\u002c\u0020\u0054\u0061\u0062\u006c\u0065 \u0031\u00318,\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0069\u006e \u0074\u0068\u0061\u0074\u0020\u0066\u0069\u006c\u0065\u0020\u0061\u0073\u0020\u0064e\u0073\u0063\u0072\u0069\u0062\u0065\u0064\u0020\u0069\u006e\u0020\u0049\u0053\u004f\u0020\u0033\u0032\u00300\u0030-\u0031\u003a\u0032\u0030\u0030\u0038\u002c\u00209\u002e\u0037\u002e\u0035\u002e"; -);var _abde string ;if _afbd ,_ageb :=_fc .GetName (_aece .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_ageb {_abde =_afbd .String ();};if _abde !="\u0054\u0079\u0070e\u0030"{return _da ;};_adbc :=_aece .Get ("\u0045\u006e\u0063\u006f\u0064\u0069\u006e\u0067"); -if _caef ,_bfgaa :=_fc .GetName (_adbc );_bfgaa {switch _caef .String (){case "\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0048","\u0049\u0064\u0065\u006e\u0074\u0069\u0074\u0079\u002d\u0056":return _da ;default:return _fe (_feeg ,_gbaea ); -};};_cccd ,_cgea :=_fc .GetStream (_adbc );if !_cgea {return _fe (_feeg ,_gbaea );};_ ,_defcg :=_fgfdc (_cccd ,_afaa ,_aedebc );if _defcg !=nil {return _fe (_feeg ,_gbaea );};return _da ;};func _dbdd (_eaff *_b .CompliancePdfReader )(_dfda ViolatedRule ){for _ ,_gbdf :=range _eaff .GetObjectNums (){_ddga ,_dgbe :=_eaff .GetIndirectObjectByNumber (_gbdf ); -if _dgbe !=nil {continue ;};_dbbe ,_ebae :=_fc .GetStream (_ddga );if !_ebae {continue ;};_ecbcd ,_ebae :=_fc .GetName (_dbbe .Get ("\u0054\u0079\u0070\u0065"));if !_ebae {continue ;};if *_ecbcd !="\u0058O\u0062\u006a\u0065\u0063\u0074"{continue ;};_bbeed ,_ebae :=_fc .GetName (_dbbe .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032")); -if !_ebae {continue ;};if *_bbeed =="\u0050\u0053"{return _fe ("\u0036.\u0032\u002e\u0035\u002d\u0031","A\u0020\u0066\u006fr\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065\u0079 \u0077\u0069\u0074\u0068\u0020a\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u0020o\u0072\u0020\u0074\u0068e\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); -};if _dbbe .Get ("\u0050\u0053")!=nil {return _fe ("\u0036.\u0032\u002e\u0035\u002d\u0031","A\u0020\u0066\u006fr\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065\u0079 \u0077\u0069\u0074\u0068\u0020a\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u0020o\u0072\u0020\u0074\u0068e\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e"); -};};return _dfda ;};func _be (_bbdf *_ag .Document )error {_ggbb :=map[string ]*_fc .PdfObjectDictionary {};_cfee :=_cg .NewFinder (&_cg .FinderOpts {Extensions :[]string {"\u002e\u0074\u0074\u0066"}});_cga :=map[_fc .PdfObject ]struct{}{};_faa :=map[_fc .PdfObject ]struct{}{}; -for _ ,_aaa :=range _bbdf .Objects {_ffe ,_bdd :=_fc .GetDict (_aaa );if !_bdd {continue ;};_bba :=_ffe .Get ("\u0054\u0079\u0070\u0065");if _bba ==nil {continue ;};if _caa ,_gdf :=_fc .GetName (_bba );_gdf &&_caa .String ()!="\u0046\u006f\u006e\u0074"{continue ; -};if _ ,_daf :=_cga [_aaa ];_daf {continue ;};_bac ,_cbg :=_b .NewPdfFontFromPdfObject (_ffe );if _cbg !=nil {_cf .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006fn\u0074\u0020\u0066\u0072\u006fm\u0020\u006fb\u006a\u0065\u0063\u0074"); -return _cbg ;};_egd ,_cbg :=_bac .GetFontDescriptor ();if _cbg !=nil {return _cbg ;};if _egd !=nil &&(_egd .FontFile !=nil ||_egd .FontFile2 !=nil ||_egd .FontFile3 !=nil ){continue ;};_ffg :=_bac .BaseFont ();if _ffg ==""{return _g .Errorf ("\u006f\u006e\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006e\u0074\u0020\u006f\u0062\u006a\u0065c\u0074\u0073\u0020\u0073\u0079\u006e\u0074\u0061\u0078\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020\u0076\u0061\u006c\u0069d\u0020\u002d\u0020\u0042\u0061\u0073\u0065\u0046\u006f\u006e\u0074\u0020\u0075\u006ed\u0065\u0066\u0069n\u0065\u0064\u003a\u0020\u0025\u0073",_ffe .String ()); -};_bgf ,_gec :=_ggbb [_ffg ];if !_gec {if len (_ffg )> 7&&_ffg [6]=='+'{_ffg =_ffg [7:];};_aaad :=[]string {_ffg ,"\u0054i\u006de\u0073\u0020\u004e\u0065\u0077\u0020\u0052\u006f\u006d\u0061\u006e","\u0041\u0072\u0069a\u006c","D\u0065\u006a\u0061\u0056\u0075\u0020\u0053\u0061\u006e\u0073"}; -for _ ,_acbb :=range _aaad {_cf .Log .Debug ("\u0044\u0045\u0042\u0055\u0047\u003a \u0073\u0065\u0061\u0072\u0063\u0068\u0069\u006e\u0067\u0020\u0073\u0079\u0073t\u0065\u006d\u0020\u0066\u006f\u006e\u0074 \u0060\u0025\u0073\u0060",_acbb );if _bgf ,_gec =_ggbb [_acbb ]; -_gec {break ;};_ggc :=_cfee .Match (_acbb );if _ggc ==nil {_cf .Log .Debug ("c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0066\u0069\u006e\u0064\u0020\u0066\u006fn\u0074\u0020\u0066i\u006ce\u0020\u0025\u0073",_acbb );continue ;};_cbf ,_egeg :=_b .NewPdfFontFromTTFFile (_ggc .Filename ); -if _egeg !=nil {return _egeg ;};_agd :=_cbf .FontDescriptor ();if _agd .FontFile !=nil {if _ ,_gec =_faa [_agd .FontFile ];!_gec {_bbdf .Objects =append (_bbdf .Objects ,_agd .FontFile );_faa [_agd .FontFile ]=struct{}{};};};if _agd .FontFile2 !=nil {if _ ,_gec =_faa [_agd .FontFile2 ]; -!_gec {_bbdf .Objects =append (_bbdf .Objects ,_agd .FontFile2 );_faa [_agd .FontFile2 ]=struct{}{};};};if _agd .FontFile3 !=nil {if _ ,_gec =_faa [_agd .FontFile3 ];!_gec {_bbdf .Objects =append (_bbdf .Objects ,_agd .FontFile3 );_faa [_agd .FontFile3 ]=struct{}{}; -};};_dgc ,_gdfa :=_cbf .ToPdfObject ().(*_fc .PdfIndirectObject );if !_gdfa {_cf .Log .Debug ("\u0066\u006f\u006e\u0074\u0020\u0069\u0073\u0020\u006e\u006ft\u0020\u0061\u006e\u0020\u0069\u006e\u0064i\u0072\u0065\u0063\u0074\u0020\u006f\u0062\u006a\u0065\u0063\u0074"); -continue ;};_cgfe ,_gdfa :=_dgc .PdfObject .(*_fc .PdfObjectDictionary );if !_gdfa {_cf .Log .Debug ("\u0046\u006fn\u0074\u0020\u0074\u0079p\u0065\u0020i\u0073\u0020\u006e\u006f\u0074\u0020\u0061\u006e \u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079"); -continue ;};_ggbb [_acbb ]=_cgfe ;_bgf =_cgfe ;break ;};if _bgf ==nil {_cf .Log .Debug ("\u004e\u006f\u0020\u006d\u0061\u0074\u0063\u0068\u0069\u006eg\u0020\u0066\u006f\u006e\u0074\u0020\u0066o\u0075\u006e\u0064\u0020\u0066\u006f\u0072\u003a\u0020\u0025\u0073",_bac .BaseFont ()); -return _d .New ("\u006e\u006f m\u0061\u0074\u0063h\u0069\u006e\u0067\u0020fon\u0074 f\u006f\u0075\u006e\u0064\u0020\u0069\u006e t\u0068\u0065\u0020\u0073\u0079\u0073\u0074e\u006d");};};for _ ,_ccd :=range _bgf .Keys (){_ffe .Set (_ccd ,_bgf .Get (_ccd )); -};_efb :=_bgf .Get ("\u0057\u0069\u0064\u0074\u0068\u0073");if _efb !=nil {if _ ,_gec =_faa [_efb ];!_gec {_bbdf .Objects =append (_bbdf .Objects ,_efb );_faa [_efb ]=struct{}{};};};_cga [_aaa ]=struct{}{};_fbd :=_ffe .Get ("\u0046\u006f\u006e\u0074\u0044\u0065\u0073\u0063\u0072i\u0070\u0074\u006f\u0072"); -if _fbd !=nil {_bbdf .Objects =append (_bbdf .Objects ,_fbd );_faa [_fbd ]=struct{}{};};};return nil ;};func _aga (_edc *_ag .Document ,_beb []pageColorspaceOptimizeFunc ,_egcfe []documentColorspaceOptimizeFunc )error {_fcbe ,_ffgg :=_edc .GetPages (); -if !_ffgg {return nil ;};var _cabd []*_ag .Image ;for _abb ,_acdf :=range _fcbe {_bcdg ,_aef :=_acdf .FindXObjectImages ();if _aef !=nil {return _aef ;};for _ ,_cag :=range _beb {if _aef =_cag (_edc ,&_fcbe [_abb ],_bcdg );_aef !=nil {return _aef ;};}; -_cabd =append (_cabd ,_bcdg ...);};for _ ,_afed :=range _egcfe {if _dgce :=_afed (_edc ,_cabd );_dgce !=nil {return _dgce ;};};return nil ;};func _fded (_afcf *_b .CompliancePdfReader )(_acee []ViolatedRule ){_aage :=_afcf .GetObjectNums ();for _ ,_fbeb :=range _aage {_effg ,_gabe :=_afcf .GetIndirectObjectByNumber (_fbeb ); -if _gabe !=nil {continue ;};_dfa ,_bafa :=_fc .GetDict (_effg );if !_bafa {continue ;};_cagf ,_bafa :=_fc .GetName (_dfa .Get ("\u0054\u0079\u0070\u0065"));if !_bafa {continue ;};if _cagf .String ()!="\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"{continue ; -};if _dfa .Get ("\u0045\u0046")!=nil {_acee =append (_acee ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0031\u002d\u0031","\u0041 \u0066\u0069\u006c\u0065 \u0073p\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069o\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006fn\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020\u0064\u0065\u0066i\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0050\u0044\u0046 \u0033\u002e\u0031\u0030\u002e\u0032\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063o\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0045\u0046 \u006be\u0079\u002e")); -break ;};};_geaa ,_gag :=_faac (_afcf );if !_gag {return _acee ;};_caca ,_gag :=_fc .GetDict (_geaa .Get ("\u004e\u0061\u006de\u0073"));if !_gag {return _acee ;};if _caca .Get ("\u0045\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0046\u0069\u006c\u0065\u0073")!=nil {_acee =append (_acee ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0031\u002d\u0032","\u0041\u0020\u0066i\u006c\u0065\u0027\u0073\u0020\u006e\u0061\u006d\u0065\u0020d\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0061\u0073\u0020d\u0065\u0066\u0069\u006ee\u0064\u0020\u0069\u006e\u0020PD\u0046 \u0052\u0065\u0066er\u0065\u006e\u0063\u0065\u0020\u0033\u002e6\u002e\u0033\u002c\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0045m\u0062\u0065\u0064\u0064\u0065\u0064\u0046i\u006c\u0065\u0073\u0020\u006b\u0065\u0079\u002e")); -};return _acee ;};func _dccbc (_dabdg *_b .CompliancePdfReader )(_bdbc []ViolatedRule ){_bebde :=_dabdg .GetObjectNums ();for _ ,_abfeg :=range _bebde {_efggc ,_gbee :=_dabdg .GetIndirectObjectByNumber (_abfeg );if _gbee !=nil {continue ;};_dccbg ,_cfdgec :=_fc .GetDict (_efggc ); -if !_cfdgec {continue ;};_acfde ,_cfdgec :=_fc .GetName (_dccbg .Get ("\u0054\u0079\u0070\u0065"));if !_cfdgec {continue ;};if _acfde .String ()!="\u0046\u0069\u006c\u0065\u0073\u0070\u0065\u0063"{continue ;};if _dccbg .Get ("\u0045\u0046")!=nil {if _dccbg .Get ("\u0046")==nil ||_dccbg .Get ("\u0045\u0046")==nil {_bdbc =append (_bdbc ,_fe ("\u0036\u002e\u0038-\u0032","\u0054h\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0070\u0065\u0063\u0069\u0066i\u0063\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063t\u0069\u006fn\u0061\u0072\u0079\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065\u0064\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006cl\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020t\u0068\u0065\u0020\u0046\u0020a\u006e\u0064\u0020\u0055\u0046\u0020\u006b\u0065\u0079\u0073\u002e")); -};if _dccbg .Get ("\u0041\u0046\u0052\u0065\u006c\u0061\u0074\u0069\u006fn\u0073\u0068\u0069\u0070")==nil {_bdbc =append (_bdbc ,_fe ("\u0036\u002e\u0038-\u0033","\u0049\u006e\u0020\u006f\u0072d\u0065\u0072\u0020\u0074\u006f\u0020\u0065\u006e\u0061\u0062\u006c\u0065\u0020i\u0064\u0065nt\u0069\u0066\u0069c\u0061\u0074\u0069o\u006e\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073h\u0069\u0070\u0020\u0062\u0065\u0074\u0077\u0065\u0065\u006e\u0020\u0074\u0068\u0065\u0020fi\u006ce\u0020\u0073\u0070\u0065\u0063\u0069f\u0069c\u0061\u0074\u0069o\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u006e\u0064\u0020\u0074\u0068\u0065\u0020c\u006f\u006e\u0074e\u006e\u0074\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0073\u0020\u0072\u0065\u0066\u0065\u0072\u0072\u0069\u006e\u0067\u0020\u0074\u006f\u0020\u0069\u0074\u002c\u0020\u0061\u0020\u006e\u0065\u0077\u0020(\u0072\u0065\u0071\u0075i\u0072\u0065\u0064\u0029\u0020\u006be\u0079\u0020h\u0061\u0073\u0020\u0062e\u0065\u006e\u0020\u0064\u0065\u0066i\u006e\u0065\u0064\u0020a\u006e\u0064\u0020\u0069\u0074s \u0070\u0072e\u0073\u0065n\u0063\u0065\u0020\u0028\u0069\u006e\u0020\u0074\u0068e\u0020\u0064\u0069\u0063\u0074i\u006f\u006e\u0061\u0072\u0079\u0029\u0020\u0069\u0073\u0020\u0072\u0065q\u0075\u0069\u0072e\u0064\u002e")); -};break ;};};return _bdbc ;};func _daab (_cgb *_b .CompliancePdfReader )(_fdce []ViolatedRule ){var _afga ,_fgaf ,_eggc ,_aabgb ,_bddb ,_agfa bool ;_dfgg :=map[*_fc .PdfObjectStream ]struct{}{};for _ ,_ceba :=range _cgb .GetObjectNums (){if _afga &&_fgaf &&_bddb &&_eggc &&_aabgb &&_agfa {return _fdce ; -};_daaf ,_dcbe :=_cgb .GetIndirectObjectByNumber (_ceba );if _dcbe !=nil {continue ;};_fba ,_aabb :=_fc .GetStream (_daaf );if !_aabb {continue ;};if _ ,_aabb =_dfgg [_fba ];_aabb {continue ;};_dfgg [_fba ]=struct{}{};_cedd ,_aabb :=_fc .GetName (_fba .Get ("\u0053u\u0062\u0054\u0079\u0070\u0065")); -if !_aabb {continue ;};if !_aabgb {if _fba .Get ("\u0052\u0065\u0066")!=nil {_fdce =append (_fdce ,_fe ("\u0036.\u0032\u002e\u0036\u002d\u0031","\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068a\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0058O\u0062\u006a\u0065\u0063\u0074s\u002e")); -_aabgb =true ;};};if _cedd .String ()=="\u0050\u0053"{if !_agfa {_fdce =append (_fdce ,_fe ("\u0036.\u0032\u002e\u0037\u002d\u0031","A \u0063\u006fn\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066i\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0061\u006e\u0079\u0020\u0050\u006f\u0073t\u0053c\u0072\u0069\u0070\u0074\u0020\u0058\u004f\u0062j\u0065c\u0074\u0073.")); -_agfa =true ;continue ;};};if _cedd .String ()=="\u0046\u006f\u0072\u006d"{if _fgaf &&_eggc &&_aabgb {continue ;};if !_fgaf &&_fba .Get ("\u004f\u0050\u0049")!=nil {_fdce =append (_fdce ,_fe ("\u0036.\u0032\u002e\u0034\u002d\u0032","\u0041\u006e\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072y\u0020\u0028\u0049\u006d\u0061\u0067\u0065\u0020\u006f\u0072\u0020\u0046\u006f\u0072\u006d\u0029\u0020\u0073\u0068\u0061\u006cl\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u004fP\u0049\u0020\u006b\u0065\u0079\u002e")); -_fgaf =true ;};if !_eggc {if _fba .Get ("\u0050\u0053")!=nil {_eggc =true ;};if _ecbc :=_fba .Get ("\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032");_ecbc !=nil &&!_eggc {if _gccdf ,_feb :=_fc .GetName (_ecbc );_feb &&*_gccdf =="\u0050\u0053"{_eggc =true ; -};};if _eggc {_fdce =append (_fdce ,_fe ("\u0036.\u0032\u002e\u0035\u002d\u0031","A\u0020\u0066\u006fr\u006d\u0020\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006ft\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0053\u0075\u0062\u0074\u0079\u0070\u0065\u0032\u0020\u006b\u0065\u0079 \u0077\u0069\u0074\u0068\u0020a\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0050\u0053\u0020o\u0072\u0020\u0074\u0068e\u0020\u0050\u0053\u0020\u006b\u0065\u0079\u002e")); -};};continue ;};if _cedd .String ()!="\u0049\u006d\u0061g\u0065"{continue ;};if !_afga &&_fba .Get ("\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073")!=nil {_fdce =append (_fdce ,_fe ("\u0036.\u0032\u002e\u0034\u002d\u0031","\u0041\u006e\u0020\u0049m\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006f\u006et\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0041\u006c\u0074\u0065\u0072\u006e\u0061\u0074\u0065\u0073\u0020\u006b\u0065\u0079\u002e")); -_afga =true ;};if !_bddb &&_fba .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065")!=nil {_afeg ,_befg :=_fc .GetBool (_fba .Get ("I\u006e\u0074\u0065\u0072\u0070\u006f\u006c\u0061\u0074\u0065"));if _befg &&bool (*_afeg ){continue ;}; -_fdce =append (_fdce ,_fe ("\u0036.\u0032\u002e\u0034\u002d\u0033","\u0049\u0066 a\u006e\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0063o\u006e\u0074\u0061\u0069n\u0073\u0020\u0074\u0068e \u0049\u006et\u0065r\u0070\u006f\u006c\u0061\u0074\u0065 \u006b\u0065\u0079,\u0020\u0069t\u0073\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020b\u0065\u0020\u0066\u0061\u006c\u0073\u0065\u002e")); -_bddb =true ;};};return _fdce ;};func _efce (_gcfg *_ag .Document )error {_acce ,_efed :=_gcfg .FindCatalog ();if !_efed {return _d .New ("\u0063\u0061\u0074\u0061\u006c\u006f\u0067\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};_geag ,_efed :=_fc .GetDict (_acce .Object .Get ("\u004f\u0043\u0050r\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073")); -if !_efed {return nil ;};_bbee ,_efed :=_fc .GetDict (_geag .Get ("\u0044"));if _efed {if _bbee .Get ("\u0041\u0053")!=nil {_bbee .Remove ("\u0041\u0053");};};_acaf ,_efed :=_fc .GetArray (_geag .Get ("\u0043o\u006e\u0066\u0069\u0067\u0073"));if _efed {for _dcaf :=0; -_dcaf < _acaf .Len ();_dcaf ++{_debfb ,_fddb :=_fc .GetDict (_acaf .Get (_dcaf ));if !_fddb {continue ;};if _debfb .Get ("\u0041\u0053")!=nil {_debfb .Remove ("\u0041\u0053");};};};return nil ;};func _gd ()standardType {return standardType {_bdc :1,_dc :"\u0042"}}; -func _caac (_eecg *_b .CompliancePdfReader ,_fcda standardType ,_cceg bool )(_eadd []ViolatedRule ){_edfcc ,_egec :=_faac (_eecg );if !_egec {return []ViolatedRule {_fe ("\u0036.\u0037\u002e\u0032\u002d\u0031","\u0063a\u0074a\u006c\u006f\u0067\u0020\u006eo\u0074\u0020f\u006f\u0075\u006e\u0064\u002e")}; -};_begb :=_edfcc .Get ("\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061");if _begb ==nil {return []ViolatedRule {_fe ("\u0036.\u0037\u002e\u0032\u002d\u0031","\u006e\u006f\u0020\u0027\u004d\u0065\u0074\u0061d\u0061\u0074\u0061' \u006b\u0065\u0079\u0020\u0066\u006fu\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006de\u006e\u0074\u0020\u0063\u0061\u0074\u0061\u006co\u0067\u002e"),_fe ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")}; -};_dbdb ,_egec :=_fc .GetStream (_begb );if !_egec {return []ViolatedRule {_fe ("\u0036.\u0037\u002e\u0032\u002d\u0032","\u0063\u0061\u0074a\u006c\u006f\u0067\u0020\u0027\u004d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u0027\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u0073\u0020\u006e\u006f\u0074\u0020a\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e"),_fe ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")}; -};if _dbdb .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")!=nil {_eadd =append (_eadd ,_fe ("\u0036.\u0037\u002e\u0032\u002d\u0032","M\u0065\u0074a\u0064\u0061\u0074\u0061\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0064i\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0069\u0065\u0073\u0020\u0073\u0068\u0061\u006c\u006c \u006e\u006f\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074h\u0065\u0020\u0046\u0069\u006c\u0074\u0065\u0072\u0020\u006b\u0065y\u002e")); -};_cbge ,_gagc :=_fg .LoadDocument (_dbdb .Stream );if _gagc !=nil {return []ViolatedRule {_fe ("\u0036.\u0037\u002e\u0039\u002d\u0031","The\u0020\u006d\u0065\u0074a\u0064\u0061t\u0061\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063o\u006e\u0066\u006f\u0072\u006d\u0020\u0074o\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0061\u006e\u0064\u0020\u0077\u0065\u006c\u006c\u0020\u0066\u006f\u0072\u006de\u0064\u0020\u0050\u0044\u0046\u0041\u0045\u0078\u0074e\u006e\u0073\u0069\u006f\u006e\u0020\u0053\u0063\u0068\u0065\u006da\u0020\u0066\u006fr\u0020\u0061\u006c\u006c\u0020\u0065\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0073\u002e")}; -};_dbfa :=_cbge .GetGoXmpDocument ();var _aebe []*_fb .Namespace ;for _ ,_ebac :=range _dbfa .Namespaces (){switch _ebac .Name {case _ea .NsDc .Name ,_bc .NsPDF .Name ,_ab .NsXmp .Name ,_aa .NsXmpRights .Name ,_gg .Namespace .Name ,_bd .Namespace .Name ,_dd .NsXmpMM .Name ,_bd .FieldNS .Name ,_bd .SchemaNS .Name ,_bd .PropertyNS .Name ,"\u0073\u0074\u0045v\u0074","\u0073\u0074\u0056e\u0072","\u0073\u0074\u0052e\u0066","\u0073\u0074\u0044i\u006d","\u0078a\u0070\u0047\u0049\u006d\u0067","\u0073\u0074\u004ao\u0062","\u0078\u006d\u0070\u0069\u0064\u0071":continue ; -};_aebe =append (_aebe ,_ebac );};_cfaa :=true ;_adaa ,_gagc :=_cbge .GetPdfaExtensionSchemas ();if _gagc ==nil {for _ ,_deaf :=range _aebe {var _ccfd bool ;for _cdba :=range _adaa {if _deaf .URI ==_adaa [_cdba ].NamespaceURI {_ccfd =true ;break ;};};if !_ccfd {_cfaa =false ; -break ;};};}else {_cfaa =false ;};if !_cfaa {_eadd =append (_eadd ,_fe ("\u0036.\u0037\u002e\u0039\u002d\u0032","\u0050\u0072\u006f\u0070\u0065\u0072\u0074i\u0065\u0073 \u0073\u0070\u0065\u0063\u0069\u0066\u0069ed\u0020\u0069\u006e\u0020\u0058M\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0073\u0068\u0061\u006cl\u0020\u0075\u0073\u0065\u0020\u0065\u0069\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0065\u0020\u0070\u0072\u0065\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073 \u0064\u0065\u0066i\u006e\u0065\u0064\u0020\u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0053\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006fn\u002c\u0020\u006f\u0072\u0020\u0065\u0078\u0074\u0065ns\u0069\u006f\u006e\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u0074\u0068\u0061\u0074 \u0063\u006f\u006d\u0070\u006c\u0079\u0020\u0077\u0069\u0074h\u0020\u0058\u004d\u0050\u0020\u0053\u0070e\u0063\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002e")); -};_dccb ,_gagc :=_eecg .GetPdfInfo ();if _gagc ==nil {if !_fcccd (_dccb ,_cbge ){_eadd =append (_eadd ,_fe ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")); -};}else if _ ,_gbca :=_cbge .GetMediaManagement ();_gbca {_eadd =append (_eadd ,_fe ("\u0036.\u0037\u002e\u0033\u002d\u0031","\u0049\u0066\u0020\u005b\u0061\u0020\u0064\u006fc\u0075\u006d\u0065\u006e\u0074\u0020\u0069\u006e\u0066o\u0072\u006d\u0061t\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0061\u0070p\u0065\u0061r\u0073\u0020\u0069n\u0020\u0061 \u0064\u006f\u0063um\u0065\u006e\u0074\u005d\u002c\u0020\u0074\u0068\u0065n\u0020\u0061\u006c\u006c\u0020\u006f\u0066\u0020\u0069\u0074\u0073\u0020\u0065\u006e\u0074\u0072\u0069\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u006e\u0061\u006c\u006f\u0067\u006fu\u0073\u0020\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0069\u0065\u0073 \u0069\u006e\u0020\u0070\u0072\u0065\u0064e\u0066\u0069\u006e\u0065\u0064\u0020\u0058\u004d\u0050\u0020\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u0020\u2026 \u0073\u0068\u0061\u006c\u006c\u0020\u0061\u006c\u0073\u006f\u0020\u0062\u0065\u0020\u0065\u006d\u0062\u0065\u0064\u0064\u0065d\u0020\u0069\u006e\u0020\u0074he\u0020\u0066i\u006c\u0065 \u0069\u006e\u0020\u0058\u004d\u0050\u0020\u0066\u006f\u0072\u006d\u0020\u0077\u0069\u0074\u0068\u0020\u0065\u0071\u0075\u0069\u0076\u0061\u006c\u0065\u006e\u0074\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u002e")); -};_fgfgc ,_egec :=_cbge .GetPdfAID ();if !_egec {_eadd =append (_eadd ,_fe ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0031","\u0054\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0061n\u0064\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006ec\u0065\u0020\u006c\u0065\u0076\u0065l\u0020\u006f\u0066\u0020\u0061\u0020\u0066\u0069\u006c\u0065\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073\u0070e\u0063\u0069\u0066\u0069\u0065\u0064\u0020\u0075\u0073\u0069\u006e\u0067\u0020\u0074\u0068\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0049\u0064\u0065\u006e\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0065\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e\u0020\u0073\u0063h\u0065\u006da.")); -}else {if _fgfgc .Part !=_fcda ._bdc {_eadd =append (_eadd ,_fe ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0032","\u0054h\u0065\u0020\u0076\u0061lue\u0020\u006f\u0066\u0020p\u0064\u0066\u0061\u0069\u0064\u003a\u0070\u0061\u0072\u0074 \u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0074\u0068\u0065\u0020\u0070\u0061\u0072\u0074\u0020\u006e\u0075\u006d\u0062\u0065r\u0020\u006f\u0066\u0020\u0049\u0053\u004f\u002019\u0030\u0030\u0035 \u0074\u006f\u0020\u0077\u0068i\u0063h\u0020\u0074\u0068\u0065\u0020\u0066\u0069\u006c\u0065 \u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0073\u002e")); -};if _fcda ._dc =="\u0041"&&_fgfgc .Conformance !="\u0041"{_eadd =append (_eadd ,_fe ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0033","\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063i\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063o\u006e\u0066\u006fr\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0041\u002e\u0020\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0042\u0020\u0063\u006f\u006e\u0066o\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0073\u0070e\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e")); -}else if _fcda ._dc =="\u0042"&&(_fgfgc .Conformance !="\u0041"&&_fgfgc .Conformance !="\u0042"){_eadd =append (_eadd ,_fe ("\u0036\u002e\u0037\u002e\u0031\u0031\u002d\u0033","\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0041\u0020\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065 \u0073\u0068\u0061\u006c\u006c\u0020s\u0070\u0065\u0063i\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069\u0064\u003a\u0063o\u006e\u0066\u006fr\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0041\u002e\u0020\u0041\u0020\u004c\u0065\u0076e\u006c\u0020\u0042\u0020\u0063\u006f\u006e\u0066o\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069\u006c\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0073\u0070e\u0063\u0069\u0066\u0079\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0070\u0064\u0066\u0061\u0069d\u003a\u0063\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065\u0020\u0061\u0073\u0020\u0042\u002e")); -};};return _eadd ;};func _dge (_df *_b .XObjectImage ,_dbc imageModifications )error {_badc ,_ef :=_df .ToImage ();if _ef !=nil {return _ef ;};if _dbc ._bad !=nil {_df .Filter =_dbc ._bad ;};_gfe :=_fc .MakeDict ();_gfe .Set ("\u0051u\u0061\u006c\u0069\u0074\u0079",_fc .MakeInteger (100)); -_gfe .Set ("\u0050r\u0065\u0064\u0069\u0063\u0074\u006fr",_fc .MakeInteger (1));_df .Decode =nil ;if _ef =_df .SetImage (_badc ,nil );_ef !=nil {return _ef ;};_df .ToPdfObject ();return nil ;};func _dbafa (_fbegd *_b .CompliancePdfReader )(_affgf []ViolatedRule ){if _fbegd .ParserMetadata ().HasOddLengthHexStrings (){_affgf =append (_affgf ,_fe ("\u0036.\u0031\u002e\u0036\u002d\u0031","\u0068\u0065\u0078a\u0064\u0065\u0063\u0069\u006d\u0061\u006c\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u006f\u0066\u0020e\u0076\u0065\u006e\u0020\u0073\u0069\u007a\u0065")); -};if _fbegd .ParserMetadata ().HasOddLengthHexStrings (){_affgf =append (_affgf ,_fe ("\u0036.\u0031\u002e\u0036\u002d\u0032","\u0068\u0065\u0078\u0061\u0064\u0065\u0063\u0069\u006da\u006c\u0020s\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068o\u0075\u006c\u0064\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u006f\u006e\u006c\u0079\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0066\u0072\u006f\u006d\u0020\u0072\u0061n\u0067\u0065\u0020[\u0030\u002d\u0039\u003b\u0041\u002d\u0046\u003b\u0061\u002d\u0066\u005d")); -};return _affgf ;};func _cbb (_degb *_ag .Document )error {_abfa ,_afa :=_degb .GetPages ();if !_afa {return nil ;};for _ ,_dbfg :=range _abfa {_ffda :=_dbfg .FindXObjectForms ();for _ ,_bbdfe :=range _ffda {_add ,_eafd :=_fc .GetDict (_bbdfe .Get ("\u0047\u0072\u006fu\u0070")); -if _eafd {if _gcaa :=_add .Get ("\u0053");_gcaa !=nil {_fcecg ,_bdccc :=_fc .GetName (_gcaa );if _bdccc &&_fcecg .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{_bbdfe .Remove ("\u0047\u0072\u006fu\u0070");};};};};_gefb ,_ccdf :=_dbfg .GetResourcesXObject (); -if _ccdf {_gefag ,_efc :=_fc .GetDict (_gefb .Get ("\u0047\u0072\u006fu\u0070"));if _efc {_bda :=_gefag .Get ("\u0053");if _bda !=nil {_debb ,_bgba :=_fc .GetName (_bda );if _bgba &&_debb .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{_gefb .Remove ("\u0047\u0072\u006fu\u0070"); -};};};};_ecgg ,_afbg :=_fc .GetDict (_dbfg .Object .Get ("\u0047\u0072\u006fu\u0070"));if _afbg {_aeb :=_ecgg .Get ("\u0053");if _aeb !=nil {_cdaag ,_gde :=_fc .GetName (_aeb );if _gde &&_cdaag .String ()=="\u0054\u0072\u0061n\u0073\u0070\u0061\u0072\u0065\u006e\u0063\u0079"{_dbfg .Object .Remove ("\u0047\u0072\u006fu\u0070"); -};};};};return nil ;};func _acfg (_aecgc *_b .CompliancePdfReader )[]ViolatedRule {return nil };func _bgef (_egca *_b .CompliancePdfReader )ViolatedRule {_feac ,_beceb :=_egca .PdfReader .GetTrailer ();if _beceb !=nil {return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u006d\u0069\u0073s\u0069\u006e\u0067\u0020t\u0072\u0061\u0069\u006c\u0065\u0072\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074"); -};if _feac .Get ("\u0049\u0044")==nil {return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068e\u0020\u0027\u0049\u0044\u0027\u0020k\u0065\u0079\u0077o\u0072\u0064"); -};if _feac .Get ("\u0045n\u0063\u0072\u0079\u0070\u0074")!=nil {return _fe ("\u0036.\u0031\u002e\u0033\u002d\u0032","\u0054\u0068\u0065\u0020\u006b\u0065y\u0077\u006f\u0072\u0064\u0020'\u0045\u006e\u0063\u0072\u0079\u0070t\u0027\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0075\u0073\u0065d\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u002e\u0020"); -};return _da ;};func _acbf (_ggae *_b .CompliancePdfReader )(_fedg []ViolatedRule ){return _fedg };func _cfag (_dgdg *_b .PdfFont ,_adbda *_fc .PdfObjectDictionary )ViolatedRule {const (_cfdb ="\u0036.\u0033\u002e\u0035\u002d\u0033";_cbbf ="\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0043\u0049\u0044\u0046\u006f\u006e\u0074\u0020\u0073\u0075\u0062\u0073\u0065\u0074\u0073 \u0072e\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0077i\u0074\u0068\u0069n\u0020\u0061\u0020c\u006f\u006e\u0066\u006f\u0072\u006d\u0069\u006e\u0067\u0020\u0066\u0069l\u0065\u002c\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u006et\u0020\u0064\u0065s\u0063\u0072\u0069\u0070\u0074\u006f\u0072\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u0020\u0043\u0049\u0044\u0053\u0065\u0074\u0020s\u0074\u0072\u0065\u0061\u006d\u0020\u0069\u0064\u0065\u006e\u0074\u0069\u0066\u0079\u0069\u006eg\u0020\u0077\u0068i\u0063\u0068\u0020\u0043\u0049\u0044\u0073 \u0061\u0072e\u0020\u0070\u0072\u0065\u0073\u0065\u006e\u0074\u0020\u0069\u006e \u0074\u0068\u0065\u0020\u0065\u006d\u0062\u0065\u0064d\u0065\u0064\u0020\u0043\u0049D\u0046\u006f\u006e\u0074\u0020\u0066\u0069l\u0065,\u0020\u0061\u0073 \u0064\u0065\u0073\u0063\u0072\u0069b\u0065\u0064 \u0069\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006e\u0063e\u0020\u0054ab\u006c\u0065\u0020\u0035.\u00320\u002e"; -);var _facb string ;if _afddd ,_cbef :=_fc .GetName (_adbda .Get ("\u0053u\u0062\u0074\u0079\u0070\u0065"));_cbef {_facb =_afddd .String ();};switch _facb {case "\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0030","\u0043\u0049\u0044F\u006f\u006e\u0074\u0054\u0079\u0070\u0065\u0032":_dced :=_dgdg .FontDescriptor (); -if _dced .CIDSet ==nil {return _fe (_cfdb ,_cbbf );};return _da ;default:return _da ;};};func _gfbbc (_fecb *_b .CompliancePdfReader )(_adeg []ViolatedRule ){var _gfec ,_affbg ,_egfd ,_bfab ,_bafb ,_baba ,_fbaef bool ;_efeab :=func ()bool {return _gfec &&_affbg &&_egfd &&_bfab &&_bafb &&_baba &&_fbaef }; -for _ ,_gdgc :=range _fecb .PageList {_eeaca ,_ecaa :=_gdgc .GetAnnotations ();if _ecaa !=nil {_cf .Log .Trace ("\u006c\u006f\u0061\u0064\u0069\u006e\u0067\u0020\u0061\u006en\u006f\u0074\u0061\u0074\u0069\u006f\u006es\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ecaa ); -continue ;};for _ ,_aebda :=range _eeaca {if !_gfec {switch _aebda .GetContext ().(type ){case *_b .PdfAnnotationFileAttachment ,*_b .PdfAnnotationSound ,*_b .PdfAnnotationMovie ,nil :_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0032\u002d\u0031","\u0041\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0074\u0079\u0070\u0065\u0073\u0020\u006e\u006f\u0074 \u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020i\u006e\u0020\u0050\u0044\u0046\u0020\u0052\u0065\u0066\u0065\u0072\u0065\u006ec\u0065\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074 \u0062\u0065\u0020p\u0065\u0072m\u0069\u0074\u0074\u0065\u0064\u002e\u0020\u0041d\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u006c\u0079\u002c\u0020\u0074\u0068\u0065\u0020F\u0069\u006c\u0065\u0041\u0074\u0074\u0061\u0063\u0068\u006de\u006e\u0074\u002c\u0020\u0053\u006f\u0075\u006e\u0064\u0020\u0061\u006e\u0064\u0020\u004d\u006f\u0076\u0069e\u0020\u0074\u0079\u0070\u0065s \u0073ha\u006c\u006c\u0020\u006eo\u0074\u0020\u0062\u0065\u0020\u0070\u0065\u0072\u006d\u0069\u0074\u0074\u0065\u0064\u002e")); -_gfec =true ;if _efeab (){return _adeg ;};};};_geab ,_fdggd :=_fc .GetDict (_aebda .GetContainingPdfObject ());if !_fdggd {continue ;};if !_affbg {_gfbfe ,_bcgg :=_fc .GetFloatVal (_geab .Get ("\u0043\u0041"));if _bcgg &&_gfbfe !=1.0{_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0031","\u0041\u006e\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073h\u0061\u006c\u006c\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e \u0074\u0068\u0065\u0020\u0043\u0041\u0020\u006b\u0065\u0079\u0020\u0077\u0069\u0074\u0068\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0074\u0068\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0031\u002e\u0030\u002e")); -_affbg =true ;if _efeab (){return _adeg ;};};};if !_egfd {_bcef ,_cfage :=_fc .GetIntVal (_geab .Get ("\u0046"));if !(_cfage &&_bcef &4==4&&_bcef &1==0&&_bcef &2==0&&_bcef &32==0){_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0032","\u0041\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079 \u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069n\u0020\u0074\u0068\u0065\u0020\u0046\u0020\u006b\u0065\u0079\u002e\u0020\u0054\u0068\u0065\u0020\u0046\u0020\u006b\u0065\u0079\u0027\u0073\u0020\u0050\u0072\u0069\u006e\u0074\u0020\u0066\u006c\u0061\u0067\u0020\u0062\u0069\u0074\u0020\u0073h\u0061\u006c\u006c\u0020\u0062\u0065 s\u0065\u0074\u0020\u0074\u006f\u0020\u0031\u0020\u0061\u006e\u0064\u0020\u0069\u0074\u0073\u0020\u0048\u0069\u0064\u0064\u0065\u006e\u002c\u0020I\u006e\u0076\u0069\u0073\u0069\u0062\u006c\u0065\u0020\u0061\u006e\u0064\u0020\u004e\u006f\u0056\u0069\u0065\u0077\u0020\u0066\u006c\u0061\u0067\u0020b\u0069\u0074\u0073 \u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0073e\u0074\u0020t\u006f\u0020\u0030\u002e")); -_egfd =true ;if _efeab (){return _adeg ;};};};if !_bfab {_cfda ,_caeb :=_fc .GetDict (_geab .Get ("\u0041\u0050"));if _caeb {_edce :=_cfda .Get ("\u004e");if _edce ==nil ||len (_cfda .Keys ())> 1{_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0034","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); -_bfab =true ;if _efeab (){return _adeg ;};continue ;};_ ,_acbeg :=_aebda .GetContext ().(*_b .PdfAnnotationWidget );if _acbeg {_beed ,_egda :=_fc .GetName (_geab .Get ("\u0046\u0054"));if _egda &&*_beed =="\u0042\u0074\u006e"{if _ ,_egae :=_fc .GetDict (_edce ); -!_egae {_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0034","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); -_bfab =true ;if _efeab (){return _adeg ;};continue ;};};};_ ,_ceff :=_fc .GetStream (_edce );if !_ceff {_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0034","\u0046\u006f\u0072\u0020\u0061\u006c\u006c\u0020\u0061\u006e\u006e\u006ft\u0061\u0074\u0069\u006f\u006e\u0020d\u0069\u0063t\u0069\u006f\u006ea\u0072\u0069\u0065\u0073 \u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0069\u006e\u0067\u0020\u0061\u006e\u0020\u0041\u0050 \u006b\u0065\u0079\u002c\u0020\u0074\u0068\u0065\u0020\u0061p\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0074\u0068\u0061\u0074\u0020\u0069\u0074\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0073\u0020\u0061\u0073\u0020it\u0073\u0020\u0076\u0061\u006cu\u0065\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061i\u006e\u0020o\u006e\u006c\u0079\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u002e\u0020\u0049\u0066\u0020\u0061\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064i\u0063\u0074\u0069o\u006e\u0061\u0072\u0079\u0027\u0073\u0020\u0053\u0075\u0062ty\u0070\u0065\u0020\u006b\u0065\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0057\u0069\u0064g\u0065\u0074\u0020\u0061\u006e\u0064\u0020\u0069\u0074s\u0020\u0046\u0054 \u006be\u0079\u0020\u0068\u0061\u0073\u0020\u0061\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020B\u0074\u006e,\u0020\u0074he \u0076a\u006c\u0075\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u004e\u0020\u006b\u0065\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062\u0065\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061\u006e\u0063\u0065\u0020\u0073\u0075\u0062\u0064\u0069\u0063\u0074\u0069\u006fn\u0061r\u0079; \u006f\u0074\u0068\u0065\u0072\u0077\u0069s\u0065\u0020\u0074\u0068\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u006f\u0066\u0020th\u0065\u0020N\u0020\u006b\u0065y\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0062e\u0020\u0061\u006e\u0020\u0061\u0070\u0070\u0065\u0061\u0072\u0061n\u0063\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u002e")); -_bfab =true ;if _efeab (){return _adeg ;};continue ;};};};if !_bafb {if _geab .Get ("\u0043")!=nil ||_geab .Get ("\u0049\u0043")!=nil {_cbgf ,_bgcf :=_egb (_fecb );if !_bgcf {_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0033","\u0041\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006fn\u0074a\u0069\u006e\u0020t\u0068e\u0020\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0072\u0020\u0074\u0068e\u0020\u0049\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0075\u006e\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0063o\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006ff\u0069\u006ce\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069n\u0020\u0036\u002e\u0032\u002e2\u002c\u0020\u0069\u0073\u0020\u0052\u0047\u0042.")); -_bafb =true ;if _efeab (){return _adeg ;};}else {_ebcb ,_beaa :=_fc .GetIntVal (_cbgf .Get ("\u004e"));if !_beaa ||_ebcb !=3{_adeg =append (_adeg ,_fe ("\u0036.\u0035\u002e\u0033\u002d\u0033","\u0041\u006e\u0020\u0061\u006e\u006e\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006ea\u0072\u0079\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0063\u006fn\u0074a\u0069\u006e\u0020t\u0068e\u0020\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006f\u0072\u0020\u0074\u0068e\u0020\u0049\u0043\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u0075\u006e\u006c\u0065\u0073\u0073\u0020\u0074\u0068\u0065\u0020\u0063o\u006c\u006f\u0072\u0020\u0073\u0070\u0061\u0063\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0044\u0065\u0073\u0074\u004f\u0075\u0074\u0070\u0075\u0074\u0050\u0072\u006ff\u0069\u006ce\u0020\u0069\u006e\u0020\u0074h\u0065\u0020\u0050\u0044\u0046\u002f\u0041\u002d\u0031\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0049\u006e\u0074\u0065\u006e\u0074\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u002c\u0020\u0064\u0065\u0066\u0069\u006e\u0065\u0064\u0020\u0069n\u0020\u0036\u002e\u0032\u002e2\u002c\u0020\u0069\u0073\u0020\u0052\u0047\u0042.")); -_bafb =true ;if _efeab (){return _adeg ;};};};};};_cebd ,_bfbfe :=_aebda .GetContext ().(*_b .PdfAnnotationWidget );if !_bfbfe {continue ;};if !_baba {if _cebd .A !=nil {_adeg =append (_adeg ,_fe ("\u0036.\u0036\u002e\u0031\u002d\u0033","A \u0057\u0069d\u0067\u0065\u0074\u0020\u0061\u006e\u006e\u006f\u0074a\u0074\u0069\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u006e\u006f\u0074\u0020\u0069\u006ec\u006cu\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0020e\u006et\u0072\u0079.")); -_baba =true ;if _efeab (){return _adeg ;};};};if !_fbaef {if _cebd .AA !=nil {_adeg =append (_adeg ,_fe ("\u0036.\u0036\u002e\u0032\u002d\u0031","\u0041\u0020\u0057\u0069\u0064\u0067\u0065\u0074\u0020\u0061\u006e\u006eo\u0074\u0061\u0074i\u006f\u006e\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u0020\u0073h\u0061\u006c\u006c\u0020n\u006f\u0074\u0020\u0069\u006e\u0063\u006c\u0075\u0064\u0065\u0020\u0061\u006e\u0020\u0041\u0041\u0020\u0065\u006e\u0074\u0072\u0079\u0020\u0066\u006f\u0072\u0020\u0061\u006e\u0020\u0061d\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u002d\u0061\u0063t\u0069\u006f\u006e\u0073\u0020\u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061\u0072\u0079\u002e")); -_fbaef =true ;if _efeab (){return _adeg ;};};};};};return _adeg ;};func _daee (_gae *_b .CompliancePdfReader )(_dcfe []ViolatedRule ){var _agdda ,_ccfg ,_bgfd bool ;if _gae .ParserMetadata ().HasNonConformantStream (){_dcfe =[]ViolatedRule {_fe ("\u0036.\u0031\u002e\u0037\u002d\u0031","T\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062\u0065\u0020f\u006f\u006cl\u006fw\u0065\u0064\u0020e\u0069\u0074h\u0065\u0072\u0020\u0062\u0079\u0020\u0061 \u0043\u0041\u0052\u0052I\u0041\u0047\u0045\u0020\u0052E\u0054\u0055\u0052\u004e\u0020\u00280\u0044\u0068\u0029\u0020\u0061\u006e\u0064\u0020\u004c\u0049\u004e\u0045\u0020F\u0045\u0045\u0044\u0020\u0028\u0030\u0041\u0068\u0029\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0073\u0065\u0071\u0075\u0065\u006e\u0063\u0065\u0020o\u0072\u0020\u0062\u0079\u0020\u0061 \u0073\u0069ng\u006c\u0065\u0020\u004cIN\u0045 \u0046\u0045\u0045\u0044 \u0063\u0068\u0061r\u0061\u0063\u0074\u0065\u0072\u002e\u0020T\u0068\u0065\u0020e\u006e\u0064\u0073\u0074r\u0065\u0061\u006d\u0020\u006b\u0065\u0079\u0077\u006fr\u0064\u0020\u0073\u0068\u0061\u006c\u006c \u0062e\u0020p\u0072\u0065\u0063\u0065\u0064\u0065\u0064\u0020\u0062\u0079\u0020\u0061n\u0020\u0045\u004f\u004c \u006d\u0061\u0072\u006b\u0065\u0072\u002e")}; -};for _ ,_fafg :=range _gae .GetObjectNums (){_aaaef ,_ :=_gae .GetIndirectObjectByNumber (_fafg );if _aaaef ==nil {continue ;};_bbdff ,_cdd :=_fc .GetStream (_aaaef );if !_cdd {continue ;};if !_agdda {_gfaa :=_bbdff .Get ("\u004c\u0065\u006e\u0067\u0074\u0068"); -if _gfaa ==nil {_dcfe =append (_dcfe ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0032","\u006e\u006f\u0020'\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0073\u0074\u0072\u0065a\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074")); -_agdda =true ;}else {_daag ,_efdg :=_fc .GetIntVal (_gfaa );if !_efdg {_dcfe =append (_dcfe ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0032","s\u0074\u0072\u0065\u0061\u006d\u0020\u0027\u004c\u0065\u006e\u0067\u0074\u0068\u0027\u0020\u006b\u0065\u0079 \u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020an\u0020\u0069\u006et\u0065g\u0065\u0072")); -_agdda =true ;}else {if len (_bbdff .Stream )!=_daag {_dcfe =append (_dcfe ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0032","\u0073\u0074\u0072\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u006c\u0065\u006e\u0067th\u0020v\u0061\u006c\u0075\u0065\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020m\u0061\u0074\u0063\u0068\u0020\u0074\u0068\u0065\u0020\u0073\u0069\u007a\u0065\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d")); -_agdda =true ;};};};};if !_ccfg {if _bbdff .Get ("\u0046")!=nil {_ccfg =true ;_dcfe =append (_dcfe ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); -};if _bbdff .Get ("\u0046F\u0069\u006c\u0074\u0065\u0072")!=nil &&!_ccfg {_ccfg =true ;_dcfe =append (_dcfe ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); -continue ;};if _bbdff .Get ("\u0046\u0044\u0065\u0063\u006f\u0064\u0065\u0050\u0061\u0072\u0061\u006d\u0073")!=nil &&!_ccfg {_ccfg =true ;_dcfe =append (_dcfe ,_fe ("\u0036.\u0031\u002e\u0037\u002d\u0033","\u0073\u0074r\u0065\u0061\u006d\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0063\u006f\u006e\u0074a\u0069\u006e\u0020\u0027\u0046\u0027\u002c\u0027\u0046\u0046\u0069\u006c\u0074\u0065r\u0027\u002c'\u0046\u0044\u0065\u0063o\u0064\u0065\u0050\u0061\u0072a\u006d\u0073\u0027\u0020\u006b\u0065\u0079")); -continue ;};};if !_bgfd {_eecef ,_dfddb :=_fc .GetName (_fc .TraceToDirectObject (_bbdff .Get ("\u0046\u0069\u006c\u0074\u0065\u0072")));if !_dfddb {continue ;};if *_eecef ==_fc .StreamEncodingFilterNameLZW {_bgfd =true ;_dcfe =append (_dcfe ,_fe ("\u0036\u002e\u0031\u002e\u0031\u0030\u002d\u0031","\u0054h\u0065\u0020L\u005a\u0057\u0044\u0065c\u006f\u0064\u0065 \u0066\u0069\u006c\u0074\u0065\u0072\u0020\u0073\u0068al\u006c\u0020\u006eo\u0074\u0020b\u0065\u0020\u0070\u0065\u0072\u006di\u0074\u0074e\u0064\u002e")); -};};};return _dcfe ;}; \ No newline at end of file +Xmp XmpOptions ;};func _edcgb (_eacb *_da .CompliancePdfReader )ViolatedRule {_gebgb ,_bcda :=_eacb .PdfReader .GetTrailer ();if _bcda !=nil {return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u006d\u0069\u0073s\u0069\u006e\u0067\u0020t\u0072\u0061\u0069\u006c\u0065\u0072\u0020i\u006e\u0020\u0074\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074"); +};if _gebgb .Get ("\u0049\u0044")==nil {return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0031","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072\u0020\u0064\u0069\u0063t\u0069\u006f\u006e\u0061\u0072\u0079\u0020\u0073\u0068a\u006c\u006c\u0020\u0063\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u0074\u0068e\u0020\u0027\u0049\u0044\u0027\u0020k\u0065\u0079\u0077o\u0072\u0064"); +};if _gebgb .Get ("\u0045n\u0063\u0072\u0079\u0070\u0074")!=nil {return _ba ("\u0036.\u0031\u002e\u0033\u002d\u0032","\u0054\u0068\u0065\u0020\u006b\u0065y\u0077\u006f\u0072\u0064\u0020'\u0045\u006e\u0063\u0072\u0079\u0070t\u0027\u0020\u0073\u0068\u0061l\u006c\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0075\u0073\u0065d\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0074\u0072\u0061\u0069\u006c\u0065\u0072 \u0064\u0069\u0063\u0074\u0069\u006f\u006e\u0061r\u0079\u002e\u0020"); +};return _bg ;};func _gdgae (_fafg *_da .CompliancePdfReader )ViolatedRule {_cfbd :=_fafg .ParserMetadata ().HeaderCommentBytes ();if _cfbd [0]> 127&&_cfbd [1]> 127&&_cfbd [2]> 127&&_cfbd [3]> 127{return _bg ;};return _ba ("\u0036.\u0031\u002e\u0032\u002d\u0032","\u0054\u0068\u0065\u0020\u0066\u0069\u006c\u0065\u0020\u0068\u0065\u0061\u0064\u0065\u0072\u0020\u006c\u0069\u006e\u0065\u0020\u0073\u0068\u0061\u006c\u006c b\u0065\u0020i\u006d\u006d\u0065\u0064\u0069a\u0074\u0065\u006c\u0079 \u0066\u006f\u006c\u006co\u0077\u0065\u0064\u0020\u0062\u0079\u0020\u0061\u0020\u0063\u006f\u006d\u006d\u0065n\u0074\u0020\u0063\u006f\u006e\u0073\u0069s\u0074\u0069\u006e\u0067\u0020o\u0066\u0020\u0061\u0020\u0025\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0020\u0066\u006f\u006c\u006c\u006fwe\u0064\u0020\u0062y\u0020a\u0074\u0009\u006c\u0065a\u0073\u0074\u0020f\u006f\u0075\u0072\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065r\u0073\u002c\u0020e\u0061\u0063\u0068\u0020\u006f\u0066\u0020\u0077\u0068\u006f\u0073\u0065 \u0065\u006e\u0063\u006f\u0064e\u0064\u0020\u0062\u0079\u0074e\u0020\u0076\u0061\u006c\u0075\u0065s\u0020\u0073\u0068\u0061\u006c\u006c\u0020\u0068\u0061\u0076\u0065\u0020\u0061\u0020\u0064e\u0063\u0069\u006d\u0061\u006c \u0076\u0061\u006c\u0075\u0065\u0020\u0067\u0072\u0065\u0061\u0074\u0065\u0072\u0020\u0074\u0068\u0061\u006e\u0020\u0031\u0032\u0037\u002e"); +};func _dgccb (_bcebc *_da .CompliancePdfReader )(_gbba []ViolatedRule ){if _bcebc .ParserMetadata ().HasOddLengthHexStrings (){_gbba =append (_gbba ,_ba ("\u0036.\u0031\u002e\u0036\u002d\u0031","\u0068\u0065\u0078a\u0064\u0065\u0063\u0069\u006d\u0061\u006c\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065\u0020\u006f\u0066\u0020e\u0076\u0065\u006e\u0020\u0073\u0069\u007a\u0065")); +};if _bcebc .ParserMetadata ().HasOddLengthHexStrings (){_gbba =append (_gbba ,_ba ("\u0036.\u0031\u002e\u0036\u002d\u0032","\u0068\u0065\u0078\u0061\u0064\u0065\u0063\u0069\u006da\u006c\u0020s\u0074\u0072\u0069\u006e\u0067\u0073\u0020\u0073\u0068o\u0075\u006c\u0064\u0020c\u006f\u006e\u0074\u0061\u0069\u006e\u0020\u006f\u006e\u006c\u0079\u0020\u0063\u0068\u0061\u0072\u0061\u0063\u0074\u0065\u0072\u0073\u0020\u0066\u0072\u006f\u006d\u0020\u0072\u0061n\u0067\u0065\u0020[\u0030\u002d\u0039\u003b\u0041\u002d\u0046\u003b\u0061\u002d\u0066\u005d")); +};return _gbba ;}; \ No newline at end of file diff --git a/model/sighandler/sighandler.go b/model/sighandler/sighandler.go index 63081f271..6a3d91a07 100644 --- a/model/sighandler/sighandler.go +++ b/model/sighandler/sighandler.go @@ -10,106 +10,124 @@ // terms that can be accessed at https://unidoc.io/eula/ // Package sighandler implements digital signature handlers for PDF signature validation and signing. -package sighandler ;import (_ca "bytes";_cg "crypto";_g "crypto/rand";_cba "crypto/rsa";_gd "crypto/x509";_ae "crypto/x509/pkix";_b "encoding/asn1";_d "encoding/hex";_a "errors";_fg "fmt";_ee "github.com/unidoc/pkcs7";_ge "github.com/unidoc/timestamp"; -_gf "github.com/unidoc/unipdf/v3/common";_ac "github.com/unidoc/unipdf/v3/core";_eeg "github.com/unidoc/unipdf/v3/model";_fb "github.com/unidoc/unipdf/v3/model/mdp";_ace "github.com/unidoc/unipdf/v3/model/sigutil";_ce "hash";_e "math/big";_f "strings"; -_cb "time";);func (_dad *etsiPAdES )getOCSPs (_ffc []*_gd .Certificate ,_aea map[string ]*_gd .Certificate )([][]byte ,error ){_dfa :=make ([][]byte ,0,len (_ffc ));for _ ,_fdb :=range _ffc {for _ ,_bag :=range _fdb .OCSPServer {if _dad .CertClient .IsCA (_fdb ){continue ; -};_ec ,_ed :=_aea [_fdb .Issuer .CommonName ];if !_ed {_gf .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074\u003a\u0020\u0069\u0073\u0073\u0075e\u0072\u0020\u0063\u0065\u0072t\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); -continue ;};_ ,_ea ,_ced :=_dad .OCSPClient .MakeRequest (_bag ,_fdb ,_ec );if _ced !=nil {_gf .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075e\u0073t\u0020\u0065\u0072\u0072\u006f\u0072\u003a \u0025\u0076",_ced ); -continue ;};_dfa =append (_dfa ,_ea );};};return _dfa ,nil ;}; +package sighandler ;import (_ge "bytes";_ffb "crypto";_eg "crypto/rand";_gg "crypto/rsa";_bc "crypto/x509";_dfc "crypto/x509/pkix";_b "encoding/asn1";_eb "encoding/hex";_a "errors";_df "fmt";_bg "github.com/unidoc/pkcs7";_da "github.com/unidoc/timestamp"; +_ba "github.com/unidoc/unipdf/v3/common";_be "github.com/unidoc/unipdf/v3/core";_ggg "github.com/unidoc/unipdf/v3/model";_ec "github.com/unidoc/unipdf/v3/model/mdp";_de "github.com/unidoc/unipdf/v3/model/sigutil";_d "hash";_f "math/big";_g "strings";_ff "time"; +);func (_cbb *etsiPAdES )makeTimestampRequest (_egf string ,_egfg []byte )(_b .RawValue ,error ){_edd :=_ffb .SHA512 .New ();_edd .Write (_egfg );_ab :=_edd .Sum (nil );_fg :=_da .Request {HashAlgorithm :_ffb .SHA512 ,HashedMessage :_ab ,Certificates :true ,Extensions :nil ,ExtraExtensions :nil }; +_gbg :=_de .NewTimestampClient ();_agf ,_cfec :=_gbg .GetEncodedToken (_egf ,&_fg );if _cfec !=nil {return _b .NullRawValue ,_cfec ;};return _b .RawValue {FullBytes :_agf },nil ;}; -// AdobeX509RSASHA1Opts defines options for configuring the adbe.x509.rsa_sha1 -// signature handler. -type AdobeX509RSASHA1Opts struct{ +// Sign adds a new reference to signature's references array. +func (_af *DocMDPHandler )Sign (sig *_ggg .PdfSignature ,digest _ggg .Hasher )error {return _af ._ef .Sign (sig ,digest );}; -// EstimateSize specifies whether the size of the signature contents -// should be estimated based on the modulus size of the public key -// extracted from the signing certificate. If set to false, a mock Sign -// call is made in order to estimate the size of the signature contents. -EstimateSize bool ; +// NewDigest creates a new digest. +func (_bf *DocMDPHandler )NewDigest (sig *_ggg .PdfSignature )(_ggg .Hasher ,error ){return _bf ._ef .NewDigest (sig );}; -// Algorithm specifies the algorithm used for performing signing. -// If not specified, defaults to SHA1. -Algorithm _cg .Hash ;}; +// IsApplicable returns true if the signature handler is applicable for the PdfSignature. +func (_c *DocMDPHandler )IsApplicable (sig *_ggg .PdfSignature )bool {_cd :=false ;for _ ,_ecb :=range sig .Reference .Elements (){if _fc ,_ad :=_be .GetDict (_ecb );_ad {if _ebf ,_ffc :=_be .GetNameVal (_fc .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064")); +_ffc {if _ebf !="\u0044\u006f\u0063\u004d\u0044\u0050"{return false ;};if _ea ,_aa :=_be .GetDict (_fc .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"));_aa {_ ,_dg :=_be .GetNumberAsInt64 (_ea .Get ("\u0050")); +if _dg !=nil {return false ;};_cd =true ;break ;};};};};return _cd &&_c ._ef .IsApplicable (sig );}; -// NewEtsiPAdESLevelB creates a new Adobe.PPKLite ETSI.CAdES.detached Level B signature handler. -func NewEtsiPAdESLevelB (privateKey *_cba .PrivateKey ,certificate *_gd .Certificate ,caCert *_gd .Certificate )(_eeg .SignatureHandler ,error ){return &etsiPAdES {_aae :certificate ,_bb :privateKey ,_fgd :caCert },nil ;};func (_ggd *etsiPAdES )buildCertChain (_cbe ,_beb []*_gd .Certificate )([]*_gd .Certificate ,map[string ]*_gd .Certificate ,error ){_bde :=map[string ]*_gd .Certificate {}; -for _ ,_dfg :=range _cbe {_bde [_dfg .Subject .CommonName ]=_dfg ;};_gb :=_cbe ;for _ ,_afb :=range _beb {_dfc :=_afb .Subject .CommonName ;if _ ,_aca :=_bde [_dfc ];_aca {continue ;};_bde [_dfc ]=_afb ;_gb =append (_gb ,_afb );};if len (_gb )==0{return nil ,nil ,_eeg .ErrSignNoCertificates ; -};var _ccg error ;for _cgd :=_gb [0];_cgd !=nil &&!_ggd .CertClient .IsCA (_cgd );{var _bbe *_gd .Certificate ;_ ,_cff :=_bde [_cgd .Issuer .CommonName ];if !_cff {if _bbe ,_ccg =_ggd .CertClient .GetIssuer (_cgd );_ccg !=nil {_gf .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u006f\u0075\u006cd\u0020\u006e\u006f\u0074\u0020\u0072\u0065tr\u0069\u0065\u0076\u0065 \u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061te\u0020\u0069s\u0073\u0075\u0065\u0072\u003a\u0020\u0025\u0076",_ccg ); -break ;};_bde [_cgd .Issuer .CommonName ]=_bbe ;_gb =append (_gb ,_bbe );}else {break ;};_cgd =_bbe ;};return _gb ,_bde ,nil ;}; +// NewAdobeX509RSASHA1 creates a new Adobe.PPKMS/Adobe.PPKLite +// adbe.x509.rsa_sha1 signature handler. Both the private key and the +// certificate can be nil for the signature validation. +func NewAdobeX509RSASHA1 (privateKey *_gg .PrivateKey ,certificate *_bc .Certificate )(_ggg .SignatureHandler ,error ){return &adobeX509RSASHA1 {_dfg :certificate ,_abc :privateKey },nil ;};type etsiPAdES struct{_ca *_gg .PrivateKey ;_gge *_bc .Certificate ; +_bcd bool ;_eaeg bool ;_fd *_bc .Certificate ;_ffd string ; + +// CertClient is the client used to retrieve certificates. +CertClient *_de .CertClient ; + +// OCSPClient is the client used to retrieve OCSP validation information. +OCSPClient *_de .OCSPClient ; + +// CRLClient is the client used to retrieve CRL validation information. +CRLClient *_de .CRLClient ;_fca *_ggg .PdfAppender ;_bcdf *_ggg .DSS ;}; + +// Sign sets the Contents fields. +func (_bfb *adobePKCS7Detached )Sign (sig *_ggg .PdfSignature ,digest _ggg .Hasher )error {if _bfb ._ddbab {_fefc :=_bfb ._gddd ;if _fefc <=0{_fefc =8192;};sig .Contents =_be .MakeHexString (string (make ([]byte ,_fefc )));return nil ;};_ecc ,_acdg :=digest .(*_ge .Buffer ); +if !_acdg {return _df .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_efc ,_caba :=_bg .NewSignedData (_ecc .Bytes ());if _caba !=nil {return _caba ;};if _ebcf :=_efc .AddSigner (_bfb ._efe ,_bfb ._acd ,_bg .SignerInfoConfig {}); +_ebcf !=nil {return _ebcf ;};_efc .Detach ();_fcce ,_caba :=_efc .Finish ();if _caba !=nil {return _caba ;};_bgg :=make ([]byte ,8192);copy (_bgg ,_fcce );sig .Contents =_be .MakeHexString (string (_bgg ));return nil ;}; + +// Validate validates PdfSignature. +func (_fgg *adobeX509RSASHA1 )Validate (sig *_ggg .PdfSignature ,digest _ggg .Hasher )(_ggg .SignatureValidationResult ,error ){_ecbc ,_cff :=_fgg .getCertificate (sig );if _cff !=nil {return _ggg .SignatureValidationResult {},_cff ;};_dfccc :=sig .Contents .Bytes (); +var _cca []byte ;if _ ,_ddeb :=_b .Unmarshal (_dfccc ,&_cca );_ddeb !=nil {return _ggg .SignatureValidationResult {},_ddeb ;};_dfea ,_daeg :=digest .(_d .Hash );if !_daeg {return _ggg .SignatureValidationResult {},_a .New ("\u0068a\u0073h\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); +};_dbb ,_ :=_fgg .getHashAlgorithm (sig );if _dbb ==0{_dbb =_afe ;};if _aeb :=_gg .VerifyPKCS1v15 (_ecbc .PublicKey .(*_gg .PublicKey ),_dbb ,_dfea .Sum (nil ),_cca );_aeb !=nil {return _ggg .SignatureValidationResult {},_aeb ;};return _ggg .SignatureValidationResult {IsSigned :true ,IsVerified :true },nil ; +};func (_eddd *adobeX509RSASHA1 )getHashAlgorithm (_afb *_ggg .PdfSignature )(_ffb .Hash ,error ){_gfg ,_ede :=_eddd .getCertificate (_afb );if _ede !=nil {if _eddd ._bcc !=0{return _eddd ._bcc ,nil ;};return _afe ,_ede ;};if _afb .Contents !=nil {_cfg :=_afb .Contents .Bytes (); +var _egdb []byte ;if _ ,_faeb :=_b .Unmarshal (_cfg ,&_egdb );_faeb ==nil {_gfd :=_gbd (_gfg .PublicKey .(*_gg .PublicKey ),_egdb );if _gfd > 0{return _gfd ,nil ;};};};if _eddd ._bcc !=0{return _eddd ._bcc ,nil ;};return _afe ,nil ;};func _cea (_bafc _b .ObjectIdentifier )(_ffb .Hash ,error ){switch {case _bafc .Equal (_bg .OIDDigestAlgorithmSHA1 ),_bafc .Equal (_bg .OIDDigestAlgorithmECDSASHA1 ),_bafc .Equal (_bg .OIDDigestAlgorithmDSA ),_bafc .Equal (_bg .OIDDigestAlgorithmDSASHA1 ),_bafc .Equal (_bg .OIDEncryptionAlgorithmRSA ):return _ffb .SHA1 ,nil ; +case _bafc .Equal (_bg .OIDDigestAlgorithmSHA256 ),_bafc .Equal (_bg .OIDDigestAlgorithmECDSASHA256 ):return _ffb .SHA256 ,nil ;case _bafc .Equal (_bg .OIDDigestAlgorithmSHA384 ),_bafc .Equal (_bg .OIDDigestAlgorithmECDSASHA384 ):return _ffb .SHA384 ,nil ; +case _bafc .Equal (_bg .OIDDigestAlgorithmSHA512 ),_bafc .Equal (_bg .OIDDigestAlgorithmECDSASHA512 ):return _ffb .SHA512 ,nil ;};return _ffb .Hash (0),_bg .ErrUnsupportedAlgorithm ;}; + +// NewDigest creates a new digest. +func (_cge *etsiPAdES )NewDigest (_ *_ggg .PdfSignature )(_ggg .Hasher ,error ){return _ge .NewBuffer (nil ),nil ;};type docTimeStamp struct{_acg string ;_eded _ffb .Hash ;_cfd int ;_cfga *_de .TimestampClient ;}; + +// NewAdobePKCS7Detached creates a new Adobe.PPKMS/Adobe.PPKLite adbe.pkcs7.detached signature handler. +// Both parameters may be nil for the signature validation. +func NewAdobePKCS7Detached (privateKey *_gg .PrivateKey ,certificate *_bc .Certificate )(_ggg .SignatureHandler ,error ){return &adobePKCS7Detached {_efe :certificate ,_acd :privateKey },nil ;}; // IsApplicable returns true if the signature handler is applicable for the PdfSignature. -func (_gbb *etsiPAdES )IsApplicable (sig *_eeg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0045\u0054\u0053\u0049.C\u0041\u0064\u0045\u0053\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064"; -};func _bgc (_dae []byte ,_edad int )(_fbe []byte ){_abea :=len (_dae );if _abea > _edad {_abea =_edad ;};_fbe =make ([]byte ,_edad );copy (_fbe [len (_fbe )-_abea :],_dae );return ;};func (_aba *etsiPAdES )makeTimestampRequest (_ff string ,_gfg []byte )(_b .RawValue ,error ){_dcb :=_cg .SHA512 .New (); -_dcb .Write (_gfg );_db :=_dcb .Sum (nil );_dbb :=_ge .Request {HashAlgorithm :_cg .SHA512 ,HashedMessage :_db ,Certificates :true ,Extensions :nil ,ExtraExtensions :nil };_eg :=_ace .NewTimestampClient ();_caf ,_fafa :=_eg .GetEncodedToken (_ff ,&_dbb ); -if _fafa !=nil {return _b .NullRawValue ,_fafa ;};return _b .RawValue {FullBytes :_caf },nil ;};func _ecab (_afga _b .ObjectIdentifier )(_cg .Hash ,error ){switch {case _afga .Equal (_ee .OIDDigestAlgorithmSHA1 ),_afga .Equal (_ee .OIDDigestAlgorithmECDSASHA1 ),_afga .Equal (_ee .OIDDigestAlgorithmDSA ),_afga .Equal (_ee .OIDDigestAlgorithmDSASHA1 ),_afga .Equal (_ee .OIDEncryptionAlgorithmRSA ):return _cg .SHA1 ,nil ; -case _afga .Equal (_ee .OIDDigestAlgorithmSHA256 ),_afga .Equal (_ee .OIDDigestAlgorithmECDSASHA256 ):return _cg .SHA256 ,nil ;case _afga .Equal (_ee .OIDDigestAlgorithmSHA384 ),_afga .Equal (_ee .OIDDigestAlgorithmECDSASHA384 ):return _cg .SHA384 ,nil ; -case _afga .Equal (_ee .OIDDigestAlgorithmSHA512 ),_afga .Equal (_ee .OIDDigestAlgorithmECDSASHA512 ):return _cg .SHA512 ,nil ;};return _cg .Hash (0),_ee .ErrUnsupportedAlgorithm ;}; +func (_ecg *etsiPAdES )IsApplicable (sig *_ggg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0045\u0054\u0053\u0049.C\u0041\u0064\u0045\u0053\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064"; +}; + +// InitSignature initialises the PdfSignature. +func (_faec *adobeX509RSASHA1 )InitSignature (sig *_ggg .PdfSignature )error {if _faec ._dfg ==nil {return _a .New ("c\u0065\u0072\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u006d\u0075\u0073\u0074\u0020n\u006f\u0074\u0020b\u0065 \u006e\u0069\u006c"); +};if _faec ._abc ==nil &&_faec ._egb ==nil {return _a .New ("\u006d\u0075\u0073\u0074\u0020\u0070\u0072o\u0076\u0069\u0064e\u0020\u0065\u0069t\u0068\u0065r\u0020\u0061\u0020\u0070\u0072\u0069v\u0061te\u0020\u006b\u0065\u0079\u0020\u006f\u0072\u0020\u0061\u0020\u0073\u0069\u0067\u006e\u0069\u006e\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e"); +};_dee :=*_faec ;sig .Handler =&_dee ;sig .Filter =_be .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065");sig .SubFilter =_be .MakeName ("\u0061d\u0062e\u002e\u0078\u0035\u0030\u0039.\u0072\u0073a\u005f\u0073\u0068\u0061\u0031"); +sig .Cert =_be .MakeString (string (_dee ._dfg .Raw ));sig .Reference =nil ;_fefe ,_bcdfb :=_dee .NewDigest (sig );if _bcdfb !=nil {return _bcdfb ;};_fefe .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065")); +return _dee .sign (sig ,_fefe ,_faec ._fcd );};func (_fbf *adobeX509RSASHA1 )getCertificate (_ddc *_ggg .PdfSignature )(*_bc .Certificate ,error ){if _fbf ._dfg !=nil {return _fbf ._dfg ,nil ;};_fdd ,_bea :=_ddc .GetCerts ();if _bea !=nil {return nil ,_bea ; +};return _fdd [0],nil ;}; // IsApplicable returns true if the signature handler is applicable for the PdfSignature. -func (_bded *adobeX509RSASHA1 )IsApplicable (sig *_eeg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="A\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004d\u0053"||*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0061d\u0062e\u002e\u0078\u0035\u0030\u0039.\u0072\u0073a\u005f\u0073\u0068\u0061\u0031"; -};type adobePKCS7Detached struct{_cgb *_cba .PrivateKey ;_acac *_gd .Certificate ;_faeb bool ;_gee int ;};func (_eae *etsiPAdES )getCerts (_acb []*_gd .Certificate )([][]byte ,error ){_eba :=make ([][]byte ,0,len (_acb ));for _ ,_bega :=range _acb {_eba =append (_eba ,_bega .Raw ); -};return _eba ,nil ;}; +func (_edfe *docTimeStamp )IsApplicable (sig *_ggg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="A\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004d\u0053"||*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0045\u0054\u0053I\u002e\u0052\u0046\u0043\u0033\u0031\u0036\u0031"; +}; + +// NewDigest creates a new digest. +func (_ada *adobeX509RSASHA1 )NewDigest (sig *_ggg .PdfSignature )(_ggg .Hasher ,error ){if _bef ,_bcdfbb :=_ada .getHashAlgorithm (sig );_bef !=0&&_bcdfbb ==nil {return _bef .New (),nil ;};return _afe .New (),nil ;}; // NewAdobeX509RSASHA1CustomWithOpts creates a new Adobe.PPKMS/Adobe.PPKLite // adbe.x509.rsa_sha1 signature handler with a custom signing function. The // handler is configured based on the provided options. If no options are // provided, default options will be used. Both the certificate and the sign // function can be nil for the signature validation. -func NewAdobeX509RSASHA1CustomWithOpts (certificate *_gd .Certificate ,signFunc SignFunc ,opts *AdobeX509RSASHA1Opts )(_eeg .SignatureHandler ,error ){if opts ==nil {opts =&AdobeX509RSASHA1Opts {};};return &adobeX509RSASHA1 {_bbg :certificate ,_bda :signFunc ,_bcd :opts .EstimateSize ,_ccgf :opts .Algorithm },nil ; -}; - -// NewEtsiPAdESLevelLT creates a new Adobe.PPKLite ETSI.CAdES.detached Level LT signature handler. -func NewEtsiPAdESLevelLT (privateKey *_cba .PrivateKey ,certificate *_gd .Certificate ,caCert *_gd .Certificate ,certificateTimestampServerURL string ,appender *_eeg .PdfAppender )(_eeg .SignatureHandler ,error ){_dc :=appender .Reader .DSS ;if _dc ==nil {_dc =_eeg .NewDSS (); -};if _afd :=_dc .GenerateHashMaps ();_afd !=nil {return nil ,_afd ;};return &etsiPAdES {_aae :certificate ,_bb :privateKey ,_fgd :caCert ,_ddc :certificateTimestampServerURL ,CertClient :_ace .NewCertClient (),OCSPClient :_ace .NewOCSPClient (),CRLClient :_ace .NewCRLClient (),_eegd :appender ,_bad :_dc },nil ; -}; - -// NewEmptyAdobePKCS7Detached creates a new Adobe.PPKMS/Adobe.PPKLite adbe.pkcs7.detached -// signature handler. The generated signature is empty and of size signatureLen. -// The signatureLen parameter can be 0 for the signature validation. -func NewEmptyAdobePKCS7Detached (signatureLen int )(_eeg .SignatureHandler ,error ){return &adobePKCS7Detached {_faeb :true ,_gee :signatureLen },nil ;};func (_gff *etsiPAdES )addDss (_abaf ,_bdf []*_gd .Certificate ,_def *RevocationInfoArchival )(int ,error ){_fbf ,_bcc ,_fae :=_gff .buildCertChain (_abaf ,_bdf ); -if _fae !=nil {return 0,_fae ;};_fca ,_fae :=_gff .getCerts (_fbf );if _fae !=nil {return 0,_fae ;};var _caab ,_feb [][]byte ;if _gff .OCSPClient !=nil {_caab ,_fae =_gff .getOCSPs (_fbf ,_bcc );if _fae !=nil {return 0,_fae ;};};if _gff .CRLClient !=nil {_feb ,_fae =_gff .getCRLs (_fbf ); -if _fae !=nil {return 0,_fae ;};};if !_gff ._acc {_ ,_fae =_gff ._bad .AddCerts (_fca );if _fae !=nil {return 0,_fae ;};_ ,_fae =_gff ._bad .AddOCSPs (_caab );if _fae !=nil {return 0,_fae ;};_ ,_fae =_gff ._bad .AddCRLs (_feb );if _fae !=nil {return 0,_fae ; -};};_dgg :=0;for _ ,_ede :=range _feb {_dgg +=len (_ede );_def .Crl =append (_def .Crl ,_b .RawValue {FullBytes :_ede });};for _ ,_baf :=range _caab {_dgg +=len (_baf );_def .Ocsp =append (_def .Ocsp ,_b .RawValue {FullBytes :_baf });};return _dgg ,nil ; -}; +func NewAdobeX509RSASHA1CustomWithOpts (certificate *_bc .Certificate ,signFunc SignFunc ,opts *AdobeX509RSASHA1Opts )(_ggg .SignatureHandler ,error ){if opts ==nil {opts =&AdobeX509RSASHA1Opts {};};return &adobeX509RSASHA1 {_dfg :certificate ,_egb :signFunc ,_fcd :opts .EstimateSize ,_bcc :opts .Algorithm },nil ; +};func (_acc *etsiPAdES )buildCertChain (_cda ,_ffde []*_bc .Certificate )([]*_bc .Certificate ,map[string ]*_bc .Certificate ,error ){_dde :=map[string ]*_bc .Certificate {};for _ ,_aff :=range _cda {_dde [_aff .Subject .CommonName ]=_aff ;};_agd :=_cda ; +for _ ,_fbb :=range _ffde {_affa :=_fbb .Subject .CommonName ;if _ ,_dgc :=_dde [_affa ];_dgc {continue ;};_dde [_affa ]=_fbb ;_agd =append (_agd ,_fbb );};if len (_agd )==0{return nil ,nil ,_ggg .ErrSignNoCertificates ;};var _cbe error ;for _eaeb :=_agd [0]; +_eaeb !=nil &&!_acc .CertClient .IsCA (_eaeb );{var _dgff *_bc .Certificate ;_ ,_bcdfa :=_dde [_eaeb .Issuer .CommonName ];if !_bcdfa {if _dgff ,_cbe =_acc .CertClient .GetIssuer (_eaeb );_cbe !=nil {_ba .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043\u006f\u0075\u006cd\u0020\u006e\u006f\u0074\u0020\u0072\u0065tr\u0069\u0065\u0076\u0065 \u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063\u0061te\u0020\u0069s\u0073\u0075\u0065\u0072\u003a\u0020\u0025\u0076",_cbe ); +break ;};_dde [_eaeb .Issuer .CommonName ]=_dgff ;_agd =append (_agd ,_dgff );}else {break ;};_eaeb =_dgff ;};return _agd ,_dde ,nil ;}; -// Validate implementation of the SignatureHandler interface -// This check is impossible without checking the document's content. -// Please, use ValidateWithOpts with the PdfParser. -func (_cge *DocMDPHandler )Validate (sig *_eeg .PdfSignature ,digest _eeg .Hasher )(_eeg .SignatureValidationResult ,error ){return _eeg .SignatureValidationResult {},_a .New ("i\u006d\u0070\u006f\u0073\u0073\u0069b\u006c\u0065\u0020\u0076\u0061\u006ci\u0064\u0061\u0074\u0069\u006f\u006e\u0020w\u0069\u0074\u0068\u006f\u0075\u0074\u0020\u0070\u0061\u0072s\u0065"); -};func (_bdd *etsiPAdES )getCRLs (_ef []*_gd .Certificate )([][]byte ,error ){_cada :=make ([][]byte ,0,len (_ef ));for _ ,_fag :=range _ef {for _ ,_eca :=range _fag .CRLDistributionPoints {if _bdd .CertClient .IsCA (_fag ){continue ;};_bg ,_edf :=_bdd .CRLClient .MakeRequest (_eca ,_fag ); -if _edf !=nil {_gf .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043R\u004c\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074 \u0065\u0072\u0072o\u0072:\u0020\u0025\u0076",_edf );continue ;};_cada =append (_cada ,_bg );};};return _cada ,nil ;}; - -// IsApplicable returns true if the signature handler is applicable for the PdfSignature. -func (_bc *DocMDPHandler )IsApplicable (sig *_eeg .PdfSignature )bool {_cac :=false ;for _ ,_dd :=range sig .Reference .Elements (){if _fd ,_be :=_ac .GetDict (_dd );_be {if _cc ,_gg :=_ac .GetNameVal (_fd .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u004d\u0065\u0074\u0068\u006f\u0064")); -_gg {if _cc !="\u0044\u006f\u0063\u004d\u0044\u0050"{return false ;};if _af ,_cbb :=_ac .GetDict (_fd .Get ("\u0054r\u0061n\u0073\u0066\u006f\u0072\u006d\u0050\u0061\u0072\u0061\u006d\u0073"));_cbb {_ ,_ccb :=_ac .GetNumberAsInt64 (_af .Get ("\u0050")); -if _ccb !=nil {return false ;};_cac =true ;break ;};};};};return _cac &&_bc ._ab .IsApplicable (sig );}; +// Validate validates PdfSignature. +func (_ebcg *adobePKCS7Detached )Validate (sig *_ggg .PdfSignature ,digest _ggg .Hasher )(_ggg .SignatureValidationResult ,error ){_accf :=sig .Contents .Bytes ();_eff ,_badg :=_bg .Parse (_accf );if _badg !=nil {return _ggg .SignatureValidationResult {},_badg ; +};_cbec ,_eba :=digest .(*_ge .Buffer );if !_eba {return _ggg .SignatureValidationResult {},_df .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_eff .Content =_cbec .Bytes ();if _badg =_eff .Verify (); +_badg !=nil {return _ggg .SignatureValidationResult {},_badg ;};return _ggg .SignatureValidationResult {IsSigned :true ,IsVerified :true },nil ;}; -// ValidateWithOpts validates a PDF signature by checking PdfReader or PdfParser by the DiffPolicy -// params describes parameters for the DocMDP checks. -func (_afg *DocMDPHandler )ValidateWithOpts (sig *_eeg .PdfSignature ,digest _eeg .Hasher ,params _eeg .SignatureHandlerDocMDPParams )(_eeg .SignatureValidationResult ,error ){_fbd ,_adg :=_afg ._ab .Validate (sig ,digest );if _adg !=nil {return _fbd ,_adg ; -};_df :=params .Parser ;if _df ==nil {return _eeg .SignatureValidationResult {},_a .New ("p\u0061r\u0073\u0065\u0072\u0020\u0063\u0061\u006e\u0027t\u0020\u0062\u0065\u0020nu\u006c\u006c");};if !_fbd .IsVerified {return _fbd ,nil ;};_abc :=params .DiffPolicy ; -if _abc ==nil {_abc =_fb .NewDefaultDiffPolicy ();};for _cf :=0;_cf <=_df .GetRevisionNumber ();_cf ++{_da ,_gfe :=_df .GetRevision (_cf );if _gfe !=nil {return _eeg .SignatureValidationResult {},_gfe ;};_ga :=_da .GetTrailer ();if _ga ==nil {return _eeg .SignatureValidationResult {},_a .New ("\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064\u0020\u0074\u0068\u0065\u0020\u0074r\u0061i\u006c\u0065\u0072\u0020\u006f\u0062\u006ae\u0063\u0074"); -};_ba ,_aa :=_ac .GetDict (_ga .Get ("\u0052\u006f\u006f\u0074"));if !_aa {return _eeg .SignatureValidationResult {},_a .New ("\u0075n\u0064\u0065\u0066\u0069n\u0065\u0064\u0020\u0074\u0068e\u0020r\u006fo\u0074\u0020\u006f\u0062\u006a\u0065\u0063t");}; -_fa ,_aa :=_ac .GetDict (_ba .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));if !_aa {continue ;};_fgf ,_aa :=_ac .GetArray (_fa .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_aa {continue ;};for _ ,_cbd :=range _fgf .Elements (){_fbc ,_bd :=_ac .GetDict (_cbd ); -if !_bd {continue ;};_cad ,_bd :=_ac .GetDict (_fbc .Get ("\u0056"));if !_bd {continue ;};if _ac .EqualObjects (_cad .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"),sig .Contents ){_fbd .DiffResults ,_gfe =_abc .ReviewFile (_da ,_df ,&_fb .MDPParameters {DocMDPLevel :_afg .Permission }); -if _gfe !=nil {return _eeg .SignatureValidationResult {},_gfe ;};_fbd .IsVerified =_fbd .DiffResults .IsPermitted ();return _fbd ,nil ;};};};return _eeg .SignatureValidationResult {},_a .New ("\u0064\u006f\u006e\u0027\u0074\u0020\u0066o\u0075\u006e\u0064 \u0074\u0068\u0069\u0073 \u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0072\u0065\u0076\u0069\u0073\u0069\u006f\u006e\u0073"); -};type etsiPAdES struct{_bb *_cba .PrivateKey ;_aae *_gd .Certificate ;_aff bool ;_acc bool ;_fgd *_gd .Certificate ;_ddc string ; +// NewEtsiPAdESLevelT creates a new Adobe.PPKLite ETSI.CAdES.detached Level T signature handler. +func NewEtsiPAdESLevelT (privateKey *_gg .PrivateKey ,certificate *_bc .Certificate ,caCert *_bc .Certificate ,certificateTimestampServerURL string )(_ggg .SignatureHandler ,error ){return &etsiPAdES {_gge :certificate ,_ca :privateKey ,_fd :caCert ,_ffd :certificateTimestampServerURL },nil ; +};func (_dbe *etsiPAdES )getCerts (_gggg []*_bc .Certificate )([][]byte ,error ){_geg :=make ([][]byte ,0,len (_gggg ));for _ ,_cag :=range _gggg {_geg =append (_geg ,_cag .Raw );};return _geg ,nil ;};const _afe =_ffb .SHA1 ; -// CertClient is the client used to retrieve certificates. -CertClient *_ace .CertClient ; +// NewDocMDPHandler returns the new DocMDP handler with the specific DocMDP restriction level. +func NewDocMDPHandler (handler _ggg .SignatureHandler ,permission _ec .DocMDPPermission )(_ggg .SignatureHandler ,error ){return &DocMDPHandler {_ef :handler ,Permission :permission },nil ;}; -// OCSPClient is the client used to retrieve OCSP validation information. -OCSPClient *_ace .OCSPClient ; +// NewDigest creates a new digest. +func (_fea *docTimeStamp )NewDigest (sig *_ggg .PdfSignature )(_ggg .Hasher ,error ){return _ge .NewBuffer (nil ),nil ;};type adobeX509RSASHA1 struct{_abc *_gg .PrivateKey ;_dfg *_bc .Certificate ;_egb SignFunc ;_fcd bool ;_bcc _ffb .Hash ;}; -// CRLClient is the client used to retrieve CRL validation information. -CRLClient *_ace .CRLClient ;_eegd *_eeg .PdfAppender ;_bad *_eeg .DSS ;}; +// Sign sets the Contents fields for the PdfSignature. +func (_aeg *etsiPAdES )Sign (sig *_ggg .PdfSignature ,digest _ggg .Hasher )error {_aga ,_ffa :=digest .(*_ge .Buffer );if !_ffa {return _df .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_dbed ,_abf :=_bg .NewSignedData (_aga .Bytes ()); +if _abf !=nil {return _abf ;};_dbed .SetDigestAlgorithm (_bg .OIDDigestAlgorithmSHA256 );_fef :=_bg .SignerInfoConfig {};_aab :=_ffb .SHA256 .New ();_aab .Write (_aeg ._gge .Raw );var _efb struct{Seq struct{Seq struct{Value []byte ;};};};_efb .Seq .Seq .Value =_aab .Sum (nil ); +var _deb []*_bc .Certificate ;var _agc []*_bc .Certificate ;if _aeg ._fd !=nil {_agc =[]*_bc .Certificate {_aeg ._fd };};_cbd :=RevocationInfoArchival {Crl :[]_b .RawValue {},Ocsp :[]_b .RawValue {},OtherRevInfo :[]_b .RawValue {}};_aaa :=0;if _aeg ._fca !=nil &&len (_aeg ._ffd )> 0{_bec ,_fgc :=_aeg .makeTimestampRequest (_aeg ._ffd ,([]byte )("")); +if _fgc !=nil {return _fgc ;};_ce ,_fgc :=_da .Parse (_bec .FullBytes );if _fgc !=nil {return _fgc ;};_deb =append (_deb ,_ce .Certificates ...);};if _aeg ._fca !=nil {_gc ,_bae :=_aeg .addDss ([]*_bc .Certificate {_aeg ._gge },_agc ,&_cbd );if _bae !=nil {return _bae ; +};_aaa +=_gc ;if len (_deb )> 0{_gc ,_bae =_aeg .addDss (_deb ,nil ,&_cbd );if _bae !=nil {return _bae ;};_aaa +=_gc ;};if !_aeg ._eaeg {_aeg ._fca .SetDSS (_aeg ._bcdf );};};_fef .ExtraSignedAttributes =append (_fef .ExtraSignedAttributes ,_bg .Attribute {Type :_bg .OIDAttributeSigningCertificateV2 ,Value :_efb },_bg .Attribute {Type :_bg .OIDAttributeAdobeRevocation ,Value :_cbd }); +if _ddb :=_dbed .AddSignerChainPAdES (_aeg ._gge ,_aeg ._ca ,_agc ,_fef );_ddb !=nil {return _ddb ;};_dbed .Detach ();if len (_aeg ._ffd )> 0{_cab :=_dbed .GetSignedData ().SignerInfos [0].EncryptedDigest ;_dcb ,_bde :=_aeg .makeTimestampRequest (_aeg ._ffd ,_cab ); +if _bde !=nil {return _bde ;};_bde =_dbed .AddTimestampTokenToSigner (0,_dcb .FullBytes );if _bde !=nil {return _bde ;};};_beea ,_abf :=_dbed .Finish ();if _abf !=nil {return _abf ;};_ee :=make ([]byte ,len (_beea )+1024*2+_aaa );copy (_ee ,_beea );sig .Contents =_be .MakeHexString (string (_ee )); +if !_aeg ._eaeg &&_aeg ._bcdf !=nil {_aab =_ffb .SHA1 .New ();_aab .Write (_ee );_gd :=_g .ToUpper (_eb .EncodeToString (_aab .Sum (nil )));if _gd !=""{_aeg ._bcdf .VRI [_gd ]=&_ggg .VRI {Cert :_aeg ._bcdf .Certs ,OCSP :_aeg ._bcdf .OCSPs ,CRL :_aeg ._bcdf .CRLs }; +};_aeg ._fca .SetDSS (_aeg ._bcdf );};return nil ;}; -// NewDigest creates a new digest. -func (_bbd *etsiPAdES )NewDigest (_ *_eeg .PdfSignature )(_eeg .Hasher ,error ){return _ca .NewBuffer (nil ),nil ;};func (_bf *adobePKCS7Detached )getCertificate (_bga *_eeg .PdfSignature )(*_gd .Certificate ,error ){if _bf ._acac !=nil {return _bf ._acac ,nil ; -};_eda ,_dfgg :=_bga .GetCerts ();if _dfgg !=nil {return nil ,_dfgg ;};return _eda [0],nil ;}; +// InitSignature initialises the PdfSignature. +func (_cg *etsiPAdES )InitSignature (sig *_ggg .PdfSignature )error {if !_cg ._bcd {if _cg ._gge ==nil {return _a .New ("c\u0065\u0072\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u006d\u0075\u0073\u0074\u0020n\u006f\u0074\u0020b\u0065 \u006e\u0069\u006c"); +};if _cg ._ca ==nil {return _a .New ("\u0070\u0072\u0069\u0076\u0061\u0074\u0065\u004b\u0065\u0079\u0020m\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c");};};_edf :=*_cg ;sig .Handler =&_edf ;sig .Filter =_be .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065"); +sig .SubFilter =_be .MakeName ("\u0045\u0054\u0053\u0049.C\u0041\u0064\u0045\u0053\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064");sig .Reference =nil ;_gga ,_ag :=_edf .NewDigest (sig );if _ag !=nil {return _ag ;};_ ,_ag =_gga .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065")); +if _ag !=nil {return _ag ;};_edf ._eaeg =true ;_ag =_edf .Sign (sig ,_gga );_edf ._eaeg =false ;return _ag ;}; -// DocMDPHandler describes handler for the DocMDP realization. -type DocMDPHandler struct{_ab _eeg .SignatureHandler ;Permission _fb .DocMDPPermission ;}; +// Sign sets the Contents fields for the PdfSignature. +func (_cdf *adobeX509RSASHA1 )Sign (sig *_ggg .PdfSignature ,digest _ggg .Hasher )error {var _aedb []byte ;var _bebf error ;if _cdf ._egb !=nil {_aedb ,_bebf =_cdf ._egb (sig ,digest );if _bebf !=nil {return _bebf ;};}else {_gfa ,_gaa :=digest .(_d .Hash ); +if !_gaa {return _a .New ("\u0068a\u0073h\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_gab :=_afe ;if _cdf ._bcc !=0{_gab =_cdf ._bcc ;};_aedb ,_bebf =_gg .SignPKCS1v15 (_eg .Reader ,_cdf ._abc ,_gab ,_gfa .Sum (nil ));if _bebf !=nil {return _bebf ; +};};_aedb ,_bebf =_b .Marshal (_aedb );if _bebf !=nil {return _bebf ;};sig .Contents =_be .MakeHexString (string (_aedb ));return nil ;}; // NewAdobeX509RSASHA1Custom creates a new Adobe.PPKMS/Adobe.PPKLite // adbe.x509.rsa_sha1 signature handler with a custom signing function. Both the @@ -117,34 +135,7 @@ type DocMDPHandler struct{_ab _eeg .SignatureHandler ;Permission _fb .DocMDPPerm // NOTE: the handler will do a mock Sign when initializing the signature in // order to estimate the signature size. Use NewAdobeX509RSASHA1CustomWithOpts // for configuring the handler to estimate the signature size. -func NewAdobeX509RSASHA1Custom (certificate *_gd .Certificate ,signFunc SignFunc )(_eeg .SignatureHandler ,error ){return &adobeX509RSASHA1 {_bbg :certificate ,_bda :signFunc },nil ;}; - -// SignFunc represents a custom signing function. The function should return -// the computed signature. -type SignFunc func (_edg *_eeg .PdfSignature ,_eaac _eeg .Hasher )([]byte ,error ); - -// Validate validates PdfSignature. -func (_egb *etsiPAdES )Validate (sig *_eeg .PdfSignature ,digest _eeg .Hasher )(_eeg .SignatureValidationResult ,error ){_bca :=sig .Contents .Bytes ();_adgc ,_fcc :=_ee .Parse (_bca );if _fcc !=nil {return _eeg .SignatureValidationResult {},_fcc ;};_dcf ,_cgdc :=digest .(*_ca .Buffer ); -if !_cgdc {return _eeg .SignatureValidationResult {},_fg .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_adgc .Content =_dcf .Bytes ();if _fcc =_adgc .Verify ();_fcc !=nil {return _eeg .SignatureValidationResult {},_fcc ; -};_eeeb :=false ;_bgd :=false ;var _ece _cb .Time ;for _ ,_abcf :=range _adgc .Signers {_efb :=_abcf .EncryptedDigest ;var _dee RevocationInfoArchival ;_fcc =_adgc .UnmarshalSignedAttribute (_ee .OIDAttributeAdobeRevocation ,&_dee );if _fcc ==nil {if len (_dee .Crl )> 0{_bgd =true ; -};if len (_dee .Ocsp )> 0{_eeeb =true ;};};for _ ,_dddg :=range _abcf .UnauthenticatedAttributes {if _dddg .Type .Equal (_ee .OIDAttributeTimeStampToken ){_ecae ,_dgc :=_ge .Parse (_dddg .Value .Bytes );if _dgc !=nil {return _eeg .SignatureValidationResult {},_dgc ; -};_ece =_ecae .Time ;_fdbf :=_ecae .HashAlgorithm .New ();_fdbf .Write (_efb );if !_ca .Equal (_fdbf .Sum (nil ),_ecae .HashedMessage ){return _eeg .SignatureValidationResult {},_fg .Errorf ("\u0048\u0061\u0073\u0068\u0020i\u006e\u0020\u0074\u0069\u006d\u0065\u0073\u0074\u0061\u006d\u0070\u0020\u0069s\u0020\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0074\u0020\u0066\u0072\u006f\u006d\u0020\u0070\u006b\u0063\u0073\u0037"); -};break ;};};};_gfgc :=_eeg .SignatureValidationResult {IsSigned :true ,IsVerified :true ,IsCrlFound :_bgd ,IsOcspFound :_eeeb ,GeneralizedTime :_ece };return _gfgc ,nil ;}; - -// Validate validates PdfSignature. -func (_gfd *adobeX509RSASHA1 )Validate (sig *_eeg .PdfSignature ,digest _eeg .Hasher )(_eeg .SignatureValidationResult ,error ){_bbec ,_abcd :=_gfd .getCertificate (sig );if _abcd !=nil {return _eeg .SignatureValidationResult {},_abcd ;};_efc :=sig .Contents .Bytes (); -var _aee []byte ;if _ ,_eedd :=_b .Unmarshal (_efc ,&_aee );_eedd !=nil {return _eeg .SignatureValidationResult {},_eedd ;};_ade ,_ecf :=digest .(_ce .Hash );if !_ecf {return _eeg .SignatureValidationResult {},_a .New ("\u0068a\u0073h\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072"); -};_fgga ,_ :=_gfd .getHashAlgorithm (sig );if _fgga ==0{_fgga =_bcfc ;};if _fcgg :=_cba .VerifyPKCS1v15 (_bbec .PublicKey .(*_cba .PublicKey ),_fgga ,_ade .Sum (nil ),_aee );_fcgg !=nil {return _eeg .SignatureValidationResult {},_fcgg ;};return _eeg .SignatureValidationResult {IsSigned :true ,IsVerified :true },nil ; -};const _bcfc =_cg .SHA1 ; - -// NewDigest creates a new digest. -func (_caa *DocMDPHandler )NewDigest (sig *_eeg .PdfSignature )(_eeg .Hasher ,error ){return _caa ._ab .NewDigest (sig );}; - -// Sign adds a new reference to signature's references array. -func (_bdg *DocMDPHandler )Sign (sig *_eeg .PdfSignature ,digest _eeg .Hasher )error {return _bdg ._ab .Sign (sig ,digest );}; - -// NewDocMDPHandler returns the new DocMDP handler with the specific DocMDP restriction level. -func NewDocMDPHandler (handler _eeg .SignatureHandler ,permission _fb .DocMDPPermission )(_eeg .SignatureHandler ,error ){return &DocMDPHandler {_ab :handler ,Permission :permission },nil ;}; +func NewAdobeX509RSASHA1Custom (certificate *_bc .Certificate ,signFunc SignFunc )(_ggg .SignatureHandler ,error ){return &adobeX509RSASHA1 {_dfg :certificate ,_egb :signFunc },nil ;}; // NewDocTimeStamp creates a new DocTimeStamp signature handler. // Both the timestamp server URL and the hash algorithm can be empty for the @@ -154,89 +145,81 @@ func NewDocMDPHandler (handler _eeg .SignatureHandler ,permission _fb .DocMDPPer // NOTE: the handler will do a mock Sign when initializing the signature // in order to estimate the signature size. Use NewDocTimeStampWithOpts // for providing the signature size. -func NewDocTimeStamp (timestampServerURL string ,hashAlgorithm _cg .Hash )(_eeg .SignatureHandler ,error ){return &docTimeStamp {_dfcc :timestampServerURL ,_dca :hashAlgorithm },nil ;}; +func NewDocTimeStamp (timestampServerURL string ,hashAlgorithm _ffb .Hash )(_ggg .SignatureHandler ,error ){return &docTimeStamp {_acg :timestampServerURL ,_eded :hashAlgorithm },nil ;};func (_fbe *etsiPAdES )getCRLs (_gba []*_bc .Certificate )([][]byte ,error ){_dff :=make ([][]byte ,0,len (_gba )); +for _ ,_ga :=range _gba {for _ ,_ddfa :=range _ga .CRLDistributionPoints {if _fbe .CertClient .IsCA (_ga ){continue ;};_afd ,_ae :=_fbe .CRLClient .MakeRequest (_ddfa ,_ga );if _ae !=nil {_ba .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0043R\u004c\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074 \u0065\u0072\u0072o\u0072:\u0020\u0025\u0076",_ae ); +continue ;};_dff =append (_dff ,_afd );};};return _dff ,nil ;};func (_bbd *etsiPAdES )getOCSPs (_caa []*_bc .Certificate ,_bdb map[string ]*_bc .Certificate )([][]byte ,error ){_abg :=make ([][]byte ,0,len (_caa ));for _ ,_ggae :=range _caa {for _ ,_ac :=range _ggae .OCSPServer {if _bbd .CertClient .IsCA (_ggae ){continue ; +};_bbc ,_ebe :=_bdb [_ggae .Issuer .CommonName ];if !_ebe {_ba .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u0053\u006b\u0069\u0070\u0070\u0069\u006e\u0067 \u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075\u0065\u0073\u0074\u003a\u0020\u0069\u0073\u0073\u0075e\u0072\u0020\u0063\u0065\u0072t\u0069\u0066\u0069\u0063\u0061\u0074\u0065\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064"); +continue ;};_ ,_dc ,_dbc :=_bbd .OCSPClient .MakeRequest (_ac ,_ggae ,_bbc );if _dbc !=nil {_ba .Log .Debug ("\u0057\u0041\u0052\u004e:\u0020\u004f\u0043\u0053\u0050\u0020\u0072\u0065\u0071\u0075e\u0073t\u0020\u0065\u0072\u0072\u006f\u0072\u003a \u0025\u0076",_dbc ); +continue ;};_abg =append (_abg ,_dc );};};return _abg ,nil ;};type adobePKCS7Detached struct{_acd *_gg .PrivateKey ;_efe *_bc .Certificate ;_ddbab bool ;_gddd int ;}; -// NewEtsiPAdESLevelT creates a new Adobe.PPKLite ETSI.CAdES.detached Level T signature handler. -func NewEtsiPAdESLevelT (privateKey *_cba .PrivateKey ,certificate *_gd .Certificate ,caCert *_gd .Certificate ,certificateTimestampServerURL string )(_eeg .SignatureHandler ,error ){return &etsiPAdES {_aae :certificate ,_bb :privateKey ,_fgd :caCert ,_ddc :certificateTimestampServerURL },nil ; -};func (_dffb *docTimeStamp )getCertificate (_fgaf *_eeg .PdfSignature )(*_gd .Certificate ,error ){_dcfe ,_cec :=_fgaf .GetCerts ();if _cec !=nil {return nil ,_cec ;};return _dcfe [0],nil ;};type docTimeStamp struct{_dfcc string ;_dca _cg .Hash ;_egge int ; -_bfa *_ace .TimestampClient ;}; - -// Sign sets the Contents fields for the PdfSignature. -func (_gfc *etsiPAdES )Sign (sig *_eeg .PdfSignature ,digest _eeg .Hasher )error {_ggg ,_efg :=digest .(*_ca .Buffer );if !_efg {return _fg .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_ega ,_fga :=_ee .NewSignedData (_ggg .Bytes ()); -if _fga !=nil {return _fga ;};_ega .SetDigestAlgorithm (_ee .OIDDigestAlgorithmSHA256 );_edd :=_ee .SignerInfoConfig {};_aef :=_cg .SHA256 .New ();_aef .Write (_gfc ._aae .Raw );var _gcg struct{Seq struct{Seq struct{Value []byte ;};};};_gcg .Seq .Seq .Value =_aef .Sum (nil ); -var _fc []*_gd .Certificate ;var _de []*_gd .Certificate ;if _gfc ._fgd !=nil {_de =[]*_gd .Certificate {_gfc ._fgd };};_cfaf :=RevocationInfoArchival {Crl :[]_b .RawValue {},Ocsp :[]_b .RawValue {},OtherRevInfo :[]_b .RawValue {}};_fbb :=0;if _gfc ._eegd !=nil &&len (_gfc ._ddc )> 0{_fec ,_dg :=_gfc .makeTimestampRequest (_gfc ._ddc ,([]byte )("")); -if _dg !=nil {return _dg ;};_efd ,_dg :=_ge .Parse (_fec .FullBytes );if _dg !=nil {return _dg ;};_fc =append (_fc ,_efd .Certificates ...);};if _gfc ._eegd !=nil {_dbg ,_bcg :=_gfc .addDss ([]*_gd .Certificate {_gfc ._aae },_de ,&_cfaf );if _bcg !=nil {return _bcg ; -};_fbb +=_dbg ;if len (_fc )> 0{_dbg ,_bcg =_gfc .addDss (_fc ,nil ,&_cfaf );if _bcg !=nil {return _bcg ;};_fbb +=_dbg ;};if !_gfc ._acc {_gfc ._eegd .SetDSS (_gfc ._bad );};};_edd .ExtraSignedAttributes =append (_edd .ExtraSignedAttributes ,_ee .Attribute {Type :_ee .OIDAttributeSigningCertificateV2 ,Value :_gcg },_ee .Attribute {Type :_ee .OIDAttributeAdobeRevocation ,Value :_cfaf }); -if _cabf :=_ega .AddSignerChainPAdES (_gfc ._aae ,_gfc ._bb ,_de ,_edd );_cabf !=nil {return _cabf ;};_ega .Detach ();if len (_gfc ._ddc )> 0{_ddd :=_ega .GetSignedData ().SignerInfos [0].EncryptedDigest ;_aaf ,_bab :=_gfc .makeTimestampRequest (_gfc ._ddc ,_ddd ); -if _bab !=nil {return _bab ;};_bab =_ega .AddTimestampTokenToSigner (0,_aaf .FullBytes );if _bab !=nil {return _bab ;};};_eaa ,_fga :=_ega .Finish ();if _fga !=nil {return _fga ;};_bac :=make ([]byte ,len (_eaa )+1024*2+_fbb );copy (_bac ,_eaa );sig .Contents =_ac .MakeHexString (string (_bac )); -if !_gfc ._acc &&_gfc ._bad !=nil {_aef =_cg .SHA1 .New ();_aef .Write (_bac );_dcba :=_f .ToUpper (_d .EncodeToString (_aef .Sum (nil )));if _dcba !=""{_gfc ._bad .VRI [_dcba ]=&_eeg .VRI {Cert :_gfc ._bad .Certs ,OCSP :_gfc ._bad .OCSPs ,CRL :_gfc ._bad .CRLs }; -};_gfc ._eegd .SetDSS (_gfc ._bad );};return nil ;}; - -// Validate validates PdfSignature. -func (_efbf *adobePKCS7Detached )Validate (sig *_eeg .PdfSignature ,digest _eeg .Hasher )(_eeg .SignatureValidationResult ,error ){_edaf :=sig .Contents .Bytes ();_gea ,_fcg :=_ee .Parse (_edaf );if _fcg !=nil {return _eeg .SignatureValidationResult {},_fcg ; -};_gaa ,_gbd :=digest .(*_ca .Buffer );if !_gbd {return _eeg .SignatureValidationResult {},_fg .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_gea .Content =_gaa .Bytes ();if _fcg =_gea .Verify (); -_fcg !=nil {return _eeg .SignatureValidationResult {},_fcg ;};return _eeg .SignatureValidationResult {IsSigned :true ,IsVerified :true },nil ;}; +// InitSignature initialises the PdfSignature. +func (_ecd *docTimeStamp )InitSignature (sig *_ggg .PdfSignature )error {_daa :=*_ecd ;sig .Type =_be .MakeName ("\u0044\u006f\u0063T\u0069\u006d\u0065\u0053\u0074\u0061\u006d\u0070");sig .Handler =&_daa ;sig .Filter =_be .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065"); +sig .SubFilter =_be .MakeName ("\u0045\u0054\u0053I\u002e\u0052\u0046\u0043\u0033\u0031\u0036\u0031");sig .Reference =nil ;if _ecd ._cfd > 0{sig .Contents =_be .MakeHexString (string (make ([]byte ,_ecd ._cfd )));}else {_gagf ,_deed :=_ecd .NewDigest (sig ); +if _deed !=nil {return _deed ;};_gagf .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065"));if _deed =_daa .Sign (sig ,_gagf ); +_deed !=nil {return _deed ;};_ecd ._cfd =_daa ._cfd ;};return nil ;};func (_cad *etsiPAdES )addDss (_egdd ,_gdd []*_bc .Certificate ,_ddba *RevocationInfoArchival )(int ,error ){_fgb ,_fcc ,_agfe :=_cad .buildCertChain (_egdd ,_gdd );if _agfe !=nil {return 0,_agfe ; +};_gf ,_agfe :=_cad .getCerts (_fgb );if _agfe !=nil {return 0,_agfe ;};var _bcf ,_ggf [][]byte ;if _cad .OCSPClient !=nil {_bcf ,_agfe =_cad .getOCSPs (_fgb ,_fcc );if _agfe !=nil {return 0,_agfe ;};};if _cad .CRLClient !=nil {_ggf ,_agfe =_cad .getCRLs (_fgb ); +if _agfe !=nil {return 0,_agfe ;};};if !_cad ._eaeg {_ ,_agfe =_cad ._bcdf .AddCerts (_gf );if _agfe !=nil {return 0,_agfe ;};_ ,_agfe =_cad ._bcdf .AddOCSPs (_bcf );if _agfe !=nil {return 0,_agfe ;};_ ,_agfe =_cad ._bcdf .AddCRLs (_ggf );if _agfe !=nil {return 0,_agfe ; +};};_bdc :=0;for _ ,_cgg :=range _ggf {_bdc +=len (_cgg );_ddba .Crl =append (_ddba .Crl ,_b .RawValue {FullBytes :_cgg });};for _ ,_aed :=range _bcf {_bdc +=len (_aed );_ddba .Ocsp =append (_ddba .Ocsp ,_b .RawValue {FullBytes :_aed });};return _bdc ,nil ; +}; // NewDigest creates a new digest. -func (_ccdg *adobeX509RSASHA1 )NewDigest (sig *_eeg .PdfSignature )(_eeg .Hasher ,error ){if _fagd ,_fee :=_ccdg .getHashAlgorithm (sig );_fagd !=0&&_fee ==nil {return _fagd .New (),nil ;};return _bcfc .New (),nil ;};func (_bec *adobeX509RSASHA1 )getHashAlgorithm (_gcd *_eeg .PdfSignature )(_cg .Hash ,error ){_ddf ,_fcgd :=_bec .getCertificate (_gcd ); -if _fcgd !=nil {if _bec ._ccgf !=0{return _bec ._ccgf ,nil ;};return _bcfc ,_fcgd ;};if _gcd .Contents !=nil {_gbdf :=_gcd .Contents .Bytes ();var _cfe []byte ;if _ ,_gdbd :=_b .Unmarshal (_gbdf ,&_cfe );_gdbd ==nil {_gdbc :=_eec (_ddf .PublicKey .(*_cba .PublicKey ),_cfe ); -if _gdbc > 0{return _gdbc ,nil ;};};};if _bec ._ccgf !=0{return _bec ._ccgf ,nil ;};return _bcfc ,nil ;}; +func (_eada *adobePKCS7Detached )NewDigest (sig *_ggg .PdfSignature )(_ggg .Hasher ,error ){return _ge .NewBuffer (nil ),nil ;}; -// Sign sets the Contents fields. -func (_agf *adobePKCS7Detached )Sign (sig *_eeg .PdfSignature ,digest _eeg .Hasher )error {if _agf ._faeb {_ead :=_agf ._gee ;if _ead <=0{_ead =8192;};sig .Contents =_ac .MakeHexString (string (make ([]byte ,_ead )));return nil ;};_cgda ,_gdb :=digest .(*_ca .Buffer ); -if !_gdb {return _fg .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_fafb ,_gfef :=_ee .NewSignedData (_cgda .Bytes ());if _gfef !=nil {return _gfef ;};if _gbdb :=_fafb .AddSigner (_agf ._acac ,_agf ._cgb ,_ee .SignerInfoConfig {}); -_gbdb !=nil {return _gbdb ;};_fafb .Detach ();_fgec ,_gfef :=_fafb .Finish ();if _gfef !=nil {return _gfef ;};_fef :=make ([]byte ,8192);copy (_fef ,_fgec );sig .Contents =_ac .MakeHexString (string (_fef ));return nil ;}; +// Sign sets the Contents fields for the PdfSignature. +func (_cga *docTimeStamp )Sign (sig *_ggg .PdfSignature ,digest _ggg .Hasher )error {_dbcb ,_abgg :=_de .NewTimestampRequest (digest .(*_ge .Buffer ),&_da .RequestOptions {Hash :_cga ._eded ,Certificates :true });if _abgg !=nil {return _abgg ;};_aac :=_cga ._cfga ; +if _aac ==nil {_aac =_de .NewTimestampClient ();};_gef ,_abgg :=_aac .GetEncodedToken (_cga ._acg ,_dbcb );if _abgg !=nil {return _abgg ;};_eab :=len (_gef );if _cga ._cfd > 0&&_eab > _cga ._cfd {return _ggg .ErrSignNotEnoughSpace ;};if _eab > 0{_cga ._cfd =_eab +128; +};if sig .Contents !=nil {_dgab :=sig .Contents .Bytes ();copy (_dgab ,_gef );_gef =_dgab ;};sig .Contents =_be .MakeHexString (string (_gef ));return nil ;}; -// InitSignature initialises the PdfSignature. -func (_add *adobeX509RSASHA1 )InitSignature (sig *_eeg .PdfSignature )error {if _add ._bbg ==nil {return _a .New ("c\u0065\u0072\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u006d\u0075\u0073\u0074\u0020n\u006f\u0074\u0020b\u0065 \u006e\u0069\u006c"); -};if _add ._cacb ==nil &&_add ._bda ==nil {return _a .New ("\u006d\u0075\u0073\u0074\u0020\u0070\u0072o\u0076\u0069\u0064e\u0020\u0065\u0069t\u0068\u0065r\u0020\u0061\u0020\u0070\u0072\u0069v\u0061te\u0020\u006b\u0065\u0079\u0020\u006f\u0072\u0020\u0061\u0020\u0073\u0069\u0067\u006e\u0069\u006e\u0067\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e"); -};_dada :=*_add ;sig .Handler =&_dada ;sig .Filter =_ac .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065");sig .SubFilter =_ac .MakeName ("\u0061d\u0062e\u002e\u0078\u0035\u0030\u0039.\u0072\u0073a\u005f\u0073\u0068\u0061\u0031"); -sig .Cert =_ac .MakeString (string (_dada ._bbg .Raw ));sig .Reference =nil ;_cbf ,_fgdd :=_dada .NewDigest (sig );if _fgdd !=nil {return _fgdd ;};_cbf .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065")); -return _dada .sign (sig ,_cbf ,_add ._bcd );}; +// DocTimeStampOpts defines options for configuring the timestamp handler. +type DocTimeStampOpts struct{ -// InitSignature initialises the PdfSignature. -func (_cdc *adobePKCS7Detached )InitSignature (sig *_eeg .PdfSignature )error {if !_cdc ._faeb {if _cdc ._acac ==nil {return _a .New ("c\u0065\u0072\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u006d\u0075\u0073\u0074\u0020n\u006f\u0074\u0020b\u0065 \u006e\u0069\u006c"); -};if _cdc ._cgb ==nil {return _a .New ("\u0070\u0072\u0069\u0076\u0061\u0074\u0065\u004b\u0065\u0079\u0020m\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c");};};_ccd :=*_cdc ;sig .Handler =&_ccd ;sig .Filter =_ac .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065"); -sig .SubFilter =_ac .MakeName ("\u0061\u0064\u0062\u0065.p\u006b\u0063\u0073\u0037\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064");sig .Reference =nil ;_bdc ,_cga :=_ccd .NewDigest (sig );if _cga !=nil {return _cga ;};_bdc .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065")); -return _ccd .Sign (sig ,_bdc );}; +// SignatureSize is the estimated size of the signature contents in bytes. +// If not provided, a default signature size of 4192 is used. +// The signing process will report the model.ErrSignNotEnoughSpace error +// if the estimated signature size is smaller than the actual size of the +// signature. +SignatureSize int ; -// NewDigest creates a new digest. -func (_eaf *adobePKCS7Detached )NewDigest (sig *_eeg .PdfSignature )(_eeg .Hasher ,error ){return _ca .NewBuffer (nil ),nil ;}; +// Client is the timestamp client used to make the signature request. +// If no client is provided, a default one is used. +Client *_de .TimestampClient ;}; -// NewDigest creates a new digest. -func (_ccbe *docTimeStamp )NewDigest (sig *_eeg .PdfSignature )(_eeg .Hasher ,error ){return _ca .NewBuffer (nil ),nil ;}; +// InitSignature initialization of the DocMDP signature. +func (_gbf *DocMDPHandler )InitSignature (sig *_ggg .PdfSignature )error {_gbc :=_gbf ._ef .InitSignature (sig );if _gbc !=nil {return _gbc ;};sig .Handler =_gbf ;if sig .Reference ==nil {sig .Reference =_be .MakeArray ();};sig .Reference .Append (_ggg .NewPdfSignatureReferenceDocMDP (_ggg .NewPdfTransformParamsDocMDP (_gbf .Permission )).ToPdfObject ()); +return nil ;}; -// InitSignature initialises the PdfSignature. -func (_bdb *docTimeStamp )InitSignature (sig *_eeg .PdfSignature )error {_ceb :=*_bdb ;sig .Type =_ac .MakeName ("\u0044\u006f\u0063T\u0069\u006d\u0065\u0053\u0074\u0061\u006d\u0070");sig .Handler =&_ceb ;sig .Filter =_ac .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065"); -sig .SubFilter =_ac .MakeName ("\u0045\u0054\u0053I\u002e\u0052\u0046\u0043\u0033\u0031\u0036\u0031");sig .Reference =nil ;if _bdb ._egge > 0{sig .Contents =_ac .MakeHexString (string (make ([]byte ,_bdb ._egge )));}else {_efda ,_dfe :=_bdb .NewDigest (sig ); -if _dfe !=nil {return _dfe ;};_efda .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065"));if _dfe =_ceb .Sign (sig ,_efda ); -_dfe !=nil {return _dfe ;};_bdb ._egge =_ceb ._egge ;};return nil ;};type adobeX509RSASHA1 struct{_cacb *_cba .PrivateKey ;_bbg *_gd .Certificate ;_bda SignFunc ;_bcd bool ;_ccgf _cg .Hash ;};func _eec (_fda *_cba .PublicKey ,_cfac []byte )_cg .Hash {_bfg :=_fda .Size (); -if _bfg !=len (_cfac ){return 0;};_dga :=func (_gaafe *_e .Int ,_age *_cba .PublicKey ,_abe *_e .Int )*_e .Int {_ddda :=_e .NewInt (int64 (_age .E ));_gaafe .Exp (_abe ,_ddda ,_age .N );return _gaafe ;};_feeb :=new (_e .Int ).SetBytes (_cfac );_bbc :=_dga (new (_e .Int ),_fda ,_feeb ); -_gbde :=_bgc (_bbc .Bytes (),_bfg );if _gbde [0]!=0||_gbde [1]!=1{return 0;};_faef :=[]struct{Hash _cg .Hash ;Prefix []byte ;}{{Hash :_cg .SHA1 ,Prefix :[]byte {0x30,0x21,0x30,0x09,0x06,0x05,0x2b,0x0e,0x03,0x02,0x1a,0x05,0x00,0x04,0x14}},{Hash :_cg .SHA256 ,Prefix :[]byte {0x30,0x31,0x30,0x0d,0x06,0x09,0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x01,0x05,0x00,0x04,0x20}},{Hash :_cg .SHA384 ,Prefix :[]byte {0x30,0x41,0x30,0x0d,0x06,0x09,0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x02,0x05,0x00,0x04,0x30}},{Hash :_cg .SHA512 ,Prefix :[]byte {0x30,0x51,0x30,0x0d,0x06,0x09,0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x03,0x05,0x00,0x04,0x40}},{Hash :_cg .RIPEMD160 ,Prefix :[]byte {0x30,0x20,0x30,0x08,0x06,0x06,0x28,0xcf,0x06,0x03,0x00,0x31,0x04,0x14}}}; -for _ ,_gffg :=range _faef {_cgba :=_gffg .Hash .Size ();_cffb :=len (_gffg .Prefix )+_cgba ;if _ca .Equal (_gbde [_bfg -_cffb :_bfg -_cgba ],_gffg .Prefix ){return _gffg .Hash ;};};return 0;};type timestampInfo struct{Version int ;Policy _b .RawValue ; -MessageImprint struct{HashAlgorithm _ae .AlgorithmIdentifier ;HashedMessage []byte ;};SerialNumber _b .RawValue ;GeneralizedTime _cb .Time ;}; +// AdobeX509RSASHA1Opts defines options for configuring the adbe.x509.rsa_sha1 +// signature handler. +type AdobeX509RSASHA1Opts struct{ -// NewAdobePKCS7Detached creates a new Adobe.PPKMS/Adobe.PPKLite adbe.pkcs7.detached signature handler. -// Both parameters may be nil for the signature validation. -func NewAdobePKCS7Detached (privateKey *_cba .PrivateKey ,certificate *_gd .Certificate )(_eeg .SignatureHandler ,error ){return &adobePKCS7Detached {_acac :certificate ,_cgb :privateKey },nil ;}; +// EstimateSize specifies whether the size of the signature contents +// should be estimated based on the modulus size of the public key +// extracted from the signing certificate. If set to false, a mock Sign +// call is made in order to estimate the size of the signature contents. +EstimateSize bool ; -// Sign sets the Contents fields for the PdfSignature. -func (_bcab *docTimeStamp )Sign (sig *_eeg .PdfSignature ,digest _eeg .Hasher )error {_ecb ,_gcgc :=_ace .NewTimestampRequest (digest .(*_ca .Buffer ),&_ge .RequestOptions {Hash :_bcab ._dca ,Certificates :true });if _gcgc !=nil {return _gcgc ;};_ecd :=_bcab ._bfa ; -if _ecd ==nil {_ecd =_ace .NewTimestampClient ();};_febc ,_gcgc :=_ecd .GetEncodedToken (_bcab ._dfcc ,_ecb );if _gcgc !=nil {return _gcgc ;};_ebe :=len (_febc );if _bcab ._egge > 0&&_ebe > _bcab ._egge {return _eeg .ErrSignNotEnoughSpace ;};if _ebe > 0{_bcab ._egge =_ebe +128; -};if sig .Contents !=nil {_ebg :=sig .Contents .Bytes ();copy (_ebg ,_febc );_febc =_ebg ;};sig .Contents =_ac .MakeHexString (string (_febc ));return nil ;};func (_cbbd *adobeX509RSASHA1 )getCertificate (_gaaf *_eeg .PdfSignature )(*_gd .Certificate ,error ){if _cbbd ._bbg !=nil {return _cbbd ._bbg ,nil ; -};_eed ,_cfc :=_gaaf .GetCerts ();if _cfc !=nil {return nil ,_cfc ;};return _eed [0],nil ;}; +// Algorithm specifies the algorithm used for performing signing. +// If not specified, defaults to SHA1. +Algorithm _ffb .Hash ;}; -// InitSignature initialises the PdfSignature. -func (_cgc *etsiPAdES )InitSignature (sig *_eeg .PdfSignature )error {if !_cgc ._aff {if _cgc ._aae ==nil {return _a .New ("c\u0065\u0072\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u006d\u0075\u0073\u0074\u0020n\u006f\u0074\u0020b\u0065 \u006e\u0069\u006c"); -};if _cgc ._bb ==nil {return _a .New ("\u0070\u0072\u0069\u0076\u0061\u0074\u0065\u004b\u0065\u0079\u0020m\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c");};};_ged :=*_cgc ;sig .Handler =&_ged ;sig .Filter =_ac .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065"); -sig .SubFilter =_ac .MakeName ("\u0045\u0054\u0053\u0049.C\u0041\u0064\u0045\u0053\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064");sig .Reference =nil ;_dcc ,_beg :=_ged .NewDigest (sig );if _beg !=nil {return _beg ;};_ ,_beg =_dcc .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065")); -if _beg !=nil {return _beg ;};_ged ._acc =true ;_beg =_ged .Sign (sig ,_dcc );_ged ._acc =false ;return _beg ;}; +// IsApplicable returns true if the signature handler is applicable for the PdfSignature +func (_gff *adobePKCS7Detached )IsApplicable (sig *_ggg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="A\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004d\u0053"||*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0061\u0064\u0062\u0065.p\u006b\u0063\u0073\u0037\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064"; +};func (_efbe *adobeX509RSASHA1 )sign (_baeb *_ggg .PdfSignature ,_dbbd _ggg .Hasher ,_bge bool )error {if !_bge {return _efbe .Sign (_baeb ,_dbbd );};_feg ,_dfccg :=_efbe ._dfg .PublicKey .(*_gg .PublicKey );if !_dfccg {return _df .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0070\u0075\u0062\u006c\u0069\u0063\u0020\u006b\u0065y\u0020\u0074\u0079p\u0065:\u0020\u0025\u0054",_feg ); +};_fab ,_bcda :=_b .Marshal (make ([]byte ,_feg .Size ()));if _bcda !=nil {return _bcda ;};_baeb .Contents =_be .MakeHexString (string (_fab ));return nil ;}; // Validate validates PdfSignature. -func (_bfb *docTimeStamp )Validate (sig *_eeg .PdfSignature ,digest _eeg .Hasher )(_eeg .SignatureValidationResult ,error ){_edeb :=sig .Contents .Bytes ();_fbbe ,_bgcb :=_ee .Parse (_edeb );if _bgcb !=nil {return _eeg .SignatureValidationResult {},_bgcb ; -};if _bgcb =_fbbe .Verify ();_bgcb !=nil {return _eeg .SignatureValidationResult {},_bgcb ;};var _affb timestampInfo ;_ ,_bgcb =_b .Unmarshal (_fbbe .Content ,&_affb );if _bgcb !=nil {return _eeg .SignatureValidationResult {},_bgcb ;};_ddfe ,_bgcb :=_ecab (_affb .MessageImprint .HashAlgorithm .Algorithm ); -if _bgcb !=nil {return _eeg .SignatureValidationResult {},_bgcb ;};_egbf :=_ddfe .New ();_gcb ,_fdd :=digest .(*_ca .Buffer );if !_fdd {return _eeg .SignatureValidationResult {},_fg .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073"); -};_egbf .Write (_gcb .Bytes ());_gdf :=_egbf .Sum (nil );_eac :=_eeg .SignatureValidationResult {IsSigned :true ,IsVerified :_ca .Equal (_gdf ,_affb .MessageImprint .HashedMessage ),GeneralizedTime :_affb .GeneralizedTime };return _eac ,nil ;}; +func (_bbda *docTimeStamp )Validate (sig *_ggg .PdfSignature ,digest _ggg .Hasher )(_ggg .SignatureValidationResult ,error ){_cde :=sig .Contents .Bytes ();_gdf ,_bgdd :=_bg .Parse (_cde );if _bgdd !=nil {return _ggg .SignatureValidationResult {},_bgdd ; +};if _bgdd =_gdf .Verify ();_bgdd !=nil {return _ggg .SignatureValidationResult {},_bgdd ;};var _cce timestampInfo ;_ ,_bgdd =_b .Unmarshal (_gdf .Content ,&_cce );if _bgdd !=nil {return _ggg .SignatureValidationResult {},_bgdd ;};_eec ,_bgdd :=_cea (_cce .MessageImprint .HashAlgorithm .Algorithm ); +if _bgdd !=nil {return _ggg .SignatureValidationResult {},_bgdd ;};_gegg :=_eec .New ();_ecfd ,_gae :=digest .(*_ge .Buffer );if !_gae {return _ggg .SignatureValidationResult {},_df .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073"); +};_gegg .Write (_ecfd .Bytes ());_bgb :=_gegg .Sum (nil );_ffbg :=_ggg .SignatureValidationResult {IsSigned :true ,IsVerified :_ge .Equal (_bgb ,_cce .MessageImprint .HashedMessage ),GeneralizedTime :_cce .GeneralizedTime };return _ffbg ,nil ;}; + +// NewEtsiPAdESLevelLT creates a new Adobe.PPKLite ETSI.CAdES.detached Level LT signature handler. +func NewEtsiPAdESLevelLT (privateKey *_gg .PrivateKey ,certificate *_bc .Certificate ,caCert *_bc .Certificate ,certificateTimestampServerURL string ,appender *_ggg .PdfAppender )(_ggg .SignatureHandler ,error ){_bag :=appender .Reader .DSS ;if _bag ==nil {_bag =_ggg .NewDSS (); +};if _bad :=_bag .GenerateHashMaps ();_bad !=nil {return nil ,_bad ;};return &etsiPAdES {_gge :certificate ,_ca :privateKey ,_fd :caCert ,_ffd :certificateTimestampServerURL ,CertClient :_de .NewCertClient (),OCSPClient :_de .NewOCSPClient (),CRLClient :_de .NewCRLClient (),_fca :appender ,_bcdf :_bag },nil ; +}; + +// NewEtsiPAdESLevelB creates a new Adobe.PPKLite ETSI.CAdES.detached Level B signature handler. +func NewEtsiPAdESLevelB (privateKey *_gg .PrivateKey ,certificate *_bc .Certificate ,caCert *_bc .Certificate )(_ggg .SignatureHandler ,error ){return &etsiPAdES {_gge :certificate ,_ca :privateKey ,_fd :caCert },nil ;}; // NewDocTimeStampWithOpts returns a new DocTimeStamp configured using the // specified options. If no options are provided, default options will be used. @@ -244,45 +227,60 @@ if _bgcb !=nil {return _eeg .SignatureValidationResult {},_bgcb ;};_egbf :=_ddfe // signature validation. // The following hash algorithms are supported: // crypto.SHA1, crypto.SHA256, crypto.SHA384, crypto.SHA512. -func NewDocTimeStampWithOpts (timestampServerURL string ,hashAlgorithm _cg .Hash ,opts *DocTimeStampOpts )(_eeg .SignatureHandler ,error ){if opts ==nil {opts =&DocTimeStampOpts {};};if opts .SignatureSize <=0{opts .SignatureSize =4192;};return &docTimeStamp {_dfcc :timestampServerURL ,_dca :hashAlgorithm ,_egge :opts .SignatureSize ,_bfa :opts .Client },nil ; -}; - -// DocTimeStampOpts defines options for configuring the timestamp handler. -type DocTimeStampOpts struct{ - -// SignatureSize is the estimated size of the signature contents in bytes. -// If not provided, a default signature size of 4192 is used. -// The signing process will report the model.ErrSignNotEnoughSpace error -// if the estimated signature size is smaller than the actual size of the -// signature. -SignatureSize int ; +func NewDocTimeStampWithOpts (timestampServerURL string ,hashAlgorithm _ffb .Hash ,opts *DocTimeStampOpts )(_ggg .SignatureHandler ,error ){if opts ==nil {opts =&DocTimeStampOpts {};};if opts .SignatureSize <=0{opts .SignatureSize =4192;};return &docTimeStamp {_acg :timestampServerURL ,_eded :hashAlgorithm ,_cfd :opts .SignatureSize ,_cfga :opts .Client },nil ; +};func (_dgb *docTimeStamp )getCertificate (_fabb *_ggg .PdfSignature )(*_bc .Certificate ,error ){_cagc ,_agcf :=_fabb .GetCerts ();if _agcf !=nil {return nil ,_agcf ;};return _cagc [0],nil ;}; -// Client is the timestamp client used to make the signature request. -// If no client is provided, a default one is used. -Client *_ace .TimestampClient ;}; +// ValidateWithOpts validates a PDF signature by checking PdfReader or PdfParser by the DiffPolicy +// params describes parameters for the DocMDP checks. +func (_cc *DocMDPHandler )ValidateWithOpts (sig *_ggg .PdfSignature ,digest _ggg .Hasher ,params _ggg .SignatureHandlerDocMDPParams )(_ggg .SignatureValidationResult ,error ){_bb ,_gea :=_cc ._ef .Validate (sig ,digest );if _gea !=nil {return _bb ,_gea ; +};_aad :=params .Parser ;if _aad ==nil {return _ggg .SignatureValidationResult {},_a .New ("p\u0061r\u0073\u0065\u0072\u0020\u0063\u0061\u006e\u0027t\u0020\u0062\u0065\u0020nu\u006c\u006c");};if !_bb .IsVerified {return _bb ,nil ;};_cb :=params .DiffPolicy ; +if _cb ==nil {_cb =_ec .NewDefaultDiffPolicy ();};for _cf :=0;_cf <=_aad .GetRevisionNumber ();_cf ++{_geb ,_dae :=_aad .GetRevision (_cf );if _dae !=nil {return _ggg .SignatureValidationResult {},_dae ;};_bee :=_geb .GetTrailer ();if _bee ==nil {return _ggg .SignatureValidationResult {},_a .New ("\u0075\u006e\u0064\u0065f\u0069\u006e\u0065\u0064\u0020\u0074\u0068\u0065\u0020\u0074r\u0061i\u006c\u0065\u0072\u0020\u006f\u0062\u006ae\u0063\u0074"); +};_gb ,_eae :=_be .GetDict (_bee .Get ("\u0052\u006f\u006f\u0074"));if !_eae {return _ggg .SignatureValidationResult {},_a .New ("\u0075n\u0064\u0065\u0066\u0069n\u0065\u0064\u0020\u0074\u0068e\u0020r\u006fo\u0074\u0020\u006f\u0062\u006a\u0065\u0063t"); +};_bd ,_eae :=_be .GetDict (_gb .Get ("\u0041\u0063\u0072\u006f\u0046\u006f\u0072\u006d"));if !_eae {continue ;};_cfe ,_eae :=_be .GetArray (_bd .Get ("\u0046\u0069\u0065\u006c\u0064\u0073"));if !_eae {continue ;};for _ ,_fa :=range _cfe .Elements (){_db ,_ead :=_be .GetDict (_fa ); +if !_ead {continue ;};_efd ,_ead :=_be .GetDict (_db .Get ("\u0056"));if !_ead {continue ;};if _be .EqualObjects (_efd .Get ("\u0043\u006f\u006e\u0074\u0065\u006e\u0074\u0073"),sig .Contents ){_bb .DiffResults ,_dae =_cb .ReviewFile (_geb ,_aad ,&_ec .MDPParameters {DocMDPLevel :_cc .Permission }); +if _dae !=nil {return _ggg .SignatureValidationResult {},_dae ;};_bb .IsVerified =_bb .DiffResults .IsPermitted ();return _bb ,nil ;};};};return _ggg .SignatureValidationResult {},_a .New ("\u0064\u006f\u006e\u0027\u0074\u0020\u0066o\u0075\u006e\u0064 \u0074\u0068\u0069\u0073 \u0073\u0069\u0067\u006e\u0061\u0074\u0075\u0072\u0065\u0020\u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0072\u0065\u0076\u0069\u0073\u0069\u006f\u006e\u0073"); +}; // RevocationInfoArchival is OIDAttributeAdobeRevocation attribute. type RevocationInfoArchival struct{Crl []_b .RawValue `asn1:"explicit,tag:0,optional"`;Ocsp []_b .RawValue `asn1:"explicit,tag:1,optional"`;OtherRevInfo []_b .RawValue `asn1:"explicit,tag:2,optional"`;}; -// NewAdobeX509RSASHA1 creates a new Adobe.PPKMS/Adobe.PPKLite -// adbe.x509.rsa_sha1 signature handler. Both the private key and the -// certificate can be nil for the signature validation. -func NewAdobeX509RSASHA1 (privateKey *_cba .PrivateKey ,certificate *_gd .Certificate )(_eeg .SignatureHandler ,error ){return &adobeX509RSASHA1 {_bbg :certificate ,_cacb :privateKey },nil ;}; - -// Sign sets the Contents fields for the PdfSignature. -func (_gda *adobeX509RSASHA1 )Sign (sig *_eeg .PdfSignature ,digest _eeg .Hasher )error {var _bea []byte ;var _cbg error ;if _gda ._bda !=nil {_bea ,_cbg =_gda ._bda (sig ,digest );if _cbg !=nil {return _cbg ;};}else {_abg ,_ecg :=digest .(_ce .Hash ); -if !_ecg {return _a .New ("\u0068a\u0073h\u0020\u0074\u0079\u0070\u0065\u0020\u0065\u0072\u0072\u006f\u0072");};_bcgd :=_bcfc ;if _gda ._ccgf !=0{_bcgd =_gda ._ccgf ;};_bea ,_cbg =_cba .SignPKCS1v15 (_g .Reader ,_gda ._cacb ,_bcgd ,_abg .Sum (nil ));if _cbg !=nil {return _cbg ; -};};_bea ,_cbg =_b .Marshal (_bea );if _cbg !=nil {return _cbg ;};sig .Contents =_ac .MakeHexString (string (_bea ));return nil ;}; - -// InitSignature initialization of the DocMDP signature. -func (_faf *DocMDPHandler )InitSignature (sig *_eeg .PdfSignature )error {_cbc :=_faf ._ab .InitSignature (sig );if _cbc !=nil {return _cbc ;};sig .Handler =_faf ;if sig .Reference ==nil {sig .Reference =_ac .MakeArray ();};sig .Reference .Append (_eeg .NewPdfSignatureReferenceDocMDP (_eeg .NewPdfTransformParamsDocMDP (_faf .Permission )).ToPdfObject ()); -return nil ;};func (_cca *adobeX509RSASHA1 )sign (_egf *_eeg .PdfSignature ,_abd _eeg .Hasher ,_dff bool )error {if !_dff {return _cca .Sign (_egf ,_abd );};_cae ,_gag :=_cca ._bbg .PublicKey .(*_cba .PublicKey );if !_gag {return _fg .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0070\u0075\u0062\u006c\u0069\u0063\u0020\u006b\u0065y\u0020\u0074\u0079p\u0065:\u0020\u0025\u0054",_cae ); -};_acg ,_egg :=_b .Marshal (make ([]byte ,_cae .Size ()));if _egg !=nil {return _egg ;};_egf .Contents =_ac .MakeHexString (string (_acg ));return nil ;}; +// NewEmptyAdobePKCS7Detached creates a new Adobe.PPKMS/Adobe.PPKLite adbe.pkcs7.detached +// signature handler. The generated signature is empty and of size signatureLen. +// The signatureLen parameter can be 0 for the signature validation. +func NewEmptyAdobePKCS7Detached (signatureLen int )(_ggg .SignatureHandler ,error ){return &adobePKCS7Detached {_ddbab :true ,_gddd :signatureLen },nil ;}; -// IsApplicable returns true if the signature handler is applicable for the PdfSignature -func (_cfb *adobePKCS7Detached )IsApplicable (sig *_eeg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="A\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004d\u0053"||*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0061\u0064\u0062\u0065.p\u006b\u0063\u0073\u0037\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064"; +// Validate implementation of the SignatureHandler interface +// This check is impossible without checking the document's content. +// Please, use ValidateWithOpts with the PdfParser. +func (_ed *DocMDPHandler )Validate (sig *_ggg .PdfSignature ,digest _ggg .Hasher )(_ggg .SignatureValidationResult ,error ){return _ggg .SignatureValidationResult {},_a .New ("i\u006d\u0070\u006f\u0073\u0073\u0069b\u006c\u0065\u0020\u0076\u0061\u006ci\u0064\u0061\u0074\u0069\u006f\u006e\u0020w\u0069\u0074\u0068\u006f\u0075\u0074\u0020\u0070\u0061\u0072s\u0065"); }; +// SignFunc represents a custom signing function. The function should return +// the computed signature. +type SignFunc func (_dcc *_ggg .PdfSignature ,_gdac _ggg .Hasher )([]byte ,error ); + // IsApplicable returns true if the signature handler is applicable for the PdfSignature. -func (_deg *docTimeStamp )IsApplicable (sig *_eeg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="A\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004d\u0053"||*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0045\u0054\u0053I\u002e\u0052\u0046\u0043\u0033\u0031\u0036\u0031"; -}; \ No newline at end of file +func (_dcd *adobeX509RSASHA1 )IsApplicable (sig *_ggg .PdfSignature )bool {if sig ==nil ||sig .Filter ==nil ||sig .SubFilter ==nil {return false ;};return (*sig .Filter =="A\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004d\u0053"||*sig .Filter =="\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065")&&*sig .SubFilter =="\u0061d\u0062e\u002e\u0078\u0035\u0030\u0039.\u0072\u0073a\u005f\u0073\u0068\u0061\u0031"; +};func (_beb *adobePKCS7Detached )getCertificate (_dga *_ggg .PdfSignature )(*_bc .Certificate ,error ){if _beb ._efe !=nil {return _beb ._efe ,nil ;};_gda ,_fad :=_dga .GetCerts ();if _fad !=nil {return nil ,_fad ;};return _gda [0],nil ;}; + +// DocMDPHandler describes handler for the DocMDP realization. +type DocMDPHandler struct{_ef _ggg .SignatureHandler ;Permission _ec .DocMDPPermission ;};func _gbd (_ega *_gg .PublicKey ,_ebd []byte )_ffb .Hash {_feb :=_ega .Size ();if _feb !=len (_ebd ){return 0;};_dda :=func (_eaca *_f .Int ,_fdgcc *_gg .PublicKey ,_baf *_f .Int )*_f .Int {_fagd :=_f .NewInt (int64 (_fdgcc .E )); +_eaca .Exp (_baf ,_fagd ,_fdgcc .N );return _eaca ;};_gcb :=new (_f .Int ).SetBytes (_ebd );_aegb :=_dda (new (_f .Int ),_ega ,_gcb );_egef :=_edea (_aegb .Bytes (),_feb );if _egef [0]!=0||_egef [1]!=1{return 0;};_gfe :=[]struct{Hash _ffb .Hash ;Prefix []byte ; +}{{Hash :_ffb .SHA1 ,Prefix :[]byte {0x30,0x21,0x30,0x09,0x06,0x05,0x2b,0x0e,0x03,0x02,0x1a,0x05,0x00,0x04,0x14}},{Hash :_ffb .SHA256 ,Prefix :[]byte {0x30,0x31,0x30,0x0d,0x06,0x09,0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x01,0x05,0x00,0x04,0x20}},{Hash :_ffb .SHA384 ,Prefix :[]byte {0x30,0x41,0x30,0x0d,0x06,0x09,0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x02,0x05,0x00,0x04,0x30}},{Hash :_ffb .SHA512 ,Prefix :[]byte {0x30,0x51,0x30,0x0d,0x06,0x09,0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x03,0x05,0x00,0x04,0x40}},{Hash :_ffb .RIPEMD160 ,Prefix :[]byte {0x30,0x20,0x30,0x08,0x06,0x06,0x28,0xcf,0x06,0x03,0x00,0x31,0x04,0x14}}}; +for _ ,_bdce :=range _gfe {_beg :=_bdce .Hash .Size ();_abb :=len (_bdce .Prefix )+_beg ;if _ge .Equal (_egef [_feb -_abb :_feb -_beg ],_bdce .Prefix ){return _bdce .Hash ;};};return 0;}; + +// Validate validates PdfSignature. +func (_cbg *etsiPAdES )Validate (sig *_ggg .PdfSignature ,digest _ggg .Hasher )(_ggg .SignatureValidationResult ,error ){_dec :=sig .Contents .Bytes ();_fae ,_gddf :=_bg .Parse (_dec );if _gddf !=nil {return _ggg .SignatureValidationResult {},_gddf ;}; +_fdg ,_bgd :=digest .(*_ge .Buffer );if !_bgd {return _ggg .SignatureValidationResult {},_df .Errorf ("c\u0061s\u0074\u0020\u0074\u006f\u0020\u0062\u0075\u0066f\u0065\u0072\u0020\u0066ai\u006c\u0073");};_fae .Content =_fdg .Bytes ();if _gddf =_fae .Verify (); +_gddf !=nil {return _ggg .SignatureValidationResult {},_gddf ;};_fge :=false ;_fdgc :=false ;var _ecfa _ff .Time ;for _ ,_bcg :=range _fae .Signers {_decc :=_bcg .EncryptedDigest ;var _cabb RevocationInfoArchival ;_gddf =_fae .UnmarshalSignedAttribute (_bg .OIDAttributeAdobeRevocation ,&_cabb ); +if _gddf ==nil {if len (_cabb .Crl )> 0{_fdgc =true ;};if len (_cabb .Ocsp )> 0{_fge =true ;};};for _ ,_eef :=range _bcg .UnauthenticatedAttributes {if _eef .Type .Equal (_bg .OIDAttributeTimeStampToken ){_gca ,_gde :=_da .Parse (_eef .Value .Bytes );if _gde !=nil {return _ggg .SignatureValidationResult {},_gde ; +};_ecfa =_gca .Time ;_ege :=_gca .HashAlgorithm .New ();_ege .Write (_decc );if !_ge .Equal (_ege .Sum (nil ),_gca .HashedMessage ){return _ggg .SignatureValidationResult {},_df .Errorf ("\u0048\u0061\u0073\u0068\u0020i\u006e\u0020\u0074\u0069\u006d\u0065\u0073\u0074\u0061\u006d\u0070\u0020\u0069s\u0020\u0064\u0069\u0066\u0066\u0065\u0072\u0065\u006e\u0074\u0020\u0066\u0072\u006f\u006d\u0020\u0070\u006b\u0063\u0073\u0037"); +};break ;};};};_caf :=_ggg .SignatureValidationResult {IsSigned :true ,IsVerified :true ,IsCrlFound :_fdgc ,IsOcspFound :_fge ,GeneralizedTime :_ecfa };return _caf ,nil ;};type timestampInfo struct{Version int ;Policy _b .RawValue ;MessageImprint struct{HashAlgorithm _dfc .AlgorithmIdentifier ; +HashedMessage []byte ;};SerialNumber _b .RawValue ;GeneralizedTime _ff .Time ;};func _edea (_agce []byte ,_baff int )(_fbbc []byte ){_gce :=len (_agce );if _gce > _baff {_gce =_baff ;};_fbbc =make ([]byte ,_baff );copy (_fbbc [len (_fbbc )-_gce :],_agce ); +return ;}; + +// InitSignature initialises the PdfSignature. +func (_fag *adobePKCS7Detached )InitSignature (sig *_ggg .PdfSignature )error {if !_fag ._ddbab {if _fag ._efe ==nil {return _a .New ("c\u0065\u0072\u0074\u0069\u0066\u0069c\u0061\u0074\u0065\u0020\u006d\u0075\u0073\u0074\u0020n\u006f\u0074\u0020b\u0065 \u006e\u0069\u006c"); +};if _fag ._acd ==nil {return _a .New ("\u0070\u0072\u0069\u0076\u0061\u0074\u0065\u004b\u0065\u0079\u0020m\u0075\u0073\u0074\u0020\u006e\u006f\u0074\u0020\u0062\u0065 \u006e\u0069\u006c");};};_acdd :=*_fag ;sig .Handler =&_acdd ;sig .Filter =_be .MakeName ("\u0041\u0064\u006f\u0062\u0065\u002e\u0050\u0050\u004b\u004c\u0069\u0074\u0065"); +sig .SubFilter =_be .MakeName ("\u0061\u0064\u0062\u0065.p\u006b\u0063\u0073\u0037\u002e\u0064\u0065\u0074\u0061\u0063\u0068\u0065\u0064");sig .Reference =nil ;_deg ,_ebc :=_acdd .NewDigest (sig );if _ebc !=nil {return _ebc ;};_deg .Write ([]byte ("\u0063\u0061\u006c\u0063\u0075\u006ca\u0074\u0065\u0020\u0074\u0068\u0065\u0020\u0043\u006f\u006e\u0074\u0065\u006et\u0073\u0020\u0066\u0069\u0065\u006c\u0064 \u0073\u0069\u007a\u0065")); +return _acdd .Sign (sig ,_deg );}; \ No newline at end of file diff --git a/model/sigutil/sigutil.go b/model/sigutil/sigutil.go index 7f73ebac4..fab0a8735 100644 --- a/model/sigutil/sigutil.go +++ b/model/sigutil/sigutil.go @@ -9,66 +9,39 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package sigutil ;import (_e "bytes";_bc "crypto";_ge "crypto/x509";_dc "encoding/asn1";_ed "encoding/pem";_ac "errors";_d "fmt";_gee "github.com/unidoc/timestamp";_f "github.com/unidoc/unipdf/v3/common";_dg "golang.org/x/crypto/ocsp";_b "io";_ae "io/ioutil"; -_be "net/http";_a "time";); +package sigutil ;import (_a "bytes";_ba "crypto";_ae "crypto/x509";_aa "encoding/asn1";_ag "encoding/pem";_fb "errors";_bg "fmt";_af "github.com/unidoc/timestamp";_ce "github.com/unidoc/unipdf/v3/common";_ab "golang.org/x/crypto/ocsp";_g "io";_d "io/ioutil"; +_c "net/http";_b "time";); -// OCSPClient represents a OCSP (Online Certificate Status Protocol) client. -// It is used to request revocation data from OCSP servers. -type OCSPClient struct{ - -// HTTPClient is the HTTP client used to make OCSP requests. -// By default, an HTTP client with a 5 second timeout per request is used. -HTTPClient *_be .Client ; - -// Hash is the hash function used when constructing the OCSP -// requests. If zero, SHA-1 will be used. -Hash _bc .Hash ;}; - -// NewCRLClient returns a new CRL client. -func NewCRLClient ()*CRLClient {return &CRLClient {HTTPClient :_ef ()}}; - -// NewOCSPClient returns a new OCSP client. -func NewOCSPClient ()*OCSPClient {return &OCSPClient {HTTPClient :_ef (),Hash :_bc .SHA1 }}; +// NewTimestampClient returns a new timestamp client. +func NewTimestampClient ()*TimestampClient {return &TimestampClient {HTTPClient :_cde ()}}; // GetIssuer retrieves the issuer of the provided certificate. -func (_bg *CertClient )GetIssuer (cert *_ge .Certificate )(*_ge .Certificate ,error ){for _ ,_gag :=range cert .IssuingCertificateURL {_ba ,_ea :=_bg .Get (_gag );if _ea !=nil {_f .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074 \u0064\u006f\u0077\u006e\u006c\u006f\u0061\u0064\u0020\u0069\u0073\u0073\u0075e\u0072\u0020\u0066\u006f\u0072\u0020\u0063\u0065\u0072\u0074\u0069\u0066ic\u0061\u0074\u0065\u0020\u0025\u0076\u003a\u0020\u0025\u0076",cert .Subject .CommonName ,_ea ); -continue ;};return _ba ,nil ;};return nil ,_d .Errorf ("\u0069\u0073\u0073\u0075e\u0072\u0020\u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063a\u0074e\u0020\u006e\u006f\u0074\u0020\u0066\u006fu\u006e\u0064");}; - -// NewTimestampRequest returns a new timestamp request based -// on the specified options. -func NewTimestampRequest (body _b .Reader ,opts *_gee .RequestOptions )(*_gee .Request ,error ){if opts ==nil {opts =&_gee .RequestOptions {};};if opts .Hash ==0{opts .Hash =_bc .SHA256 ;};if !opts .Hash .Available (){return nil ,_ge .ErrUnsupportedAlgorithm ; -};_ag :=opts .Hash .New ();if _ ,_fd :=_b .Copy (_ag ,body );_fd !=nil {return nil ,_fd ;};return &_gee .Request {HashAlgorithm :opts .Hash ,HashedMessage :_ag .Sum (nil ),Certificates :opts .Certificates ,TSAPolicyOID :opts .TSAPolicyOID ,Nonce :opts .Nonce },nil ; -}; - -// Get retrieves the certificate at the specified URL. -func (_eb *CertClient )Get (url string )(*_ge .Certificate ,error ){if _eb .HTTPClient ==nil {_eb .HTTPClient =_ef ();};_ad ,_de :=_eb .HTTPClient .Get (url );if _de !=nil {return nil ,_de ;};defer _ad .Body .Close ();_fa ,_de :=_ae .ReadAll (_ad .Body ); -if _de !=nil {return nil ,_de ;};if _ff ,_ :=_ed .Decode (_fa );_ff !=nil {_fa =_ff .Bytes ;};_ga ,_de :=_ge .ParseCertificate (_fa );if _de !=nil {return nil ,_de ;};return _ga ,nil ;};func _ef ()*_be .Client {return &_be .Client {Timeout :5*_a .Second }}; - +func (_gg *CertClient )GetIssuer (cert *_ae .Certificate )(*_ae .Certificate ,error ){for _ ,_abd :=range cert .IssuingCertificateURL {_e ,_dg :=_gg .Get (_abd );if _dg !=nil {_ce .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074 \u0064\u006f\u0077\u006e\u006c\u006f\u0061\u0064\u0020\u0069\u0073\u0073\u0075e\u0072\u0020\u0066\u006f\u0072\u0020\u0063\u0065\u0072\u0074\u0069\u0066ic\u0061\u0074\u0065\u0020\u0025\u0076\u003a\u0020\u0025\u0076",cert .Subject .CommonName ,_dg ); +continue ;};return _e ,nil ;};return nil ,_bg .Errorf ("\u0069\u0073\u0073\u0075e\u0072\u0020\u0063\u0065\u0072\u0074\u0069\u0066\u0069\u0063a\u0074e\u0020\u006e\u006f\u0074\u0020\u0066\u006fu\u006e\u0064");}; // MakeRequest makes a CRL request to the specified server and returns the // response. If a server URL is not provided, it is extracted from the certificate. -func (_adg *CRLClient )MakeRequest (serverURL string ,cert *_ge .Certificate )([]byte ,error ){if _adg .HTTPClient ==nil {_adg .HTTPClient =_ef ();};if serverURL ==""{if len (cert .CRLDistributionPoints )==0{return nil ,_ac .New ("\u0063e\u0072\u0074i\u0066\u0069\u0063\u0061t\u0065\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0070ec\u0069\u0066\u0079 \u0061\u006ey\u0020\u0043\u0052\u004c\u0020\u0073e\u0072\u0076e\u0072\u0073"); -};serverURL =cert .CRLDistributionPoints [0];};_af ,_bge :=_adg .HTTPClient .Get (serverURL );if _bge !=nil {return nil ,_bge ;};defer _af .Body .Close ();_da ,_bge :=_ae .ReadAll (_af .Body );if _bge !=nil {return nil ,_bge ;};if _bcc ,_ :=_ed .Decode (_da ); -_bcc !=nil {_da =_bcc .Bytes ;};return _da ,nil ;}; +func (_cg *CRLClient )MakeRequest (serverURL string ,cert *_ae .Certificate )([]byte ,error ){if _cg .HTTPClient ==nil {_cg .HTTPClient =_cde ();};if serverURL ==""{if len (cert .CRLDistributionPoints )==0{return nil ,_fb .New ("\u0063e\u0072\u0074i\u0066\u0069\u0063\u0061t\u0065\u0020\u0064o\u0065\u0073\u0020\u006e\u006f\u0074\u0020\u0073\u0070ec\u0069\u0066\u0079 \u0061\u006ey\u0020\u0043\u0052\u004c\u0020\u0073e\u0072\u0076e\u0072\u0073"); +};serverURL =cert .CRLDistributionPoints [0];};_ad ,_fbb :=_cg .HTTPClient .Get (serverURL );if _fbb !=nil {return nil ,_fbb ;};defer _ad .Body .Close ();_ac ,_fbb :=_d .ReadAll (_ad .Body );if _fbb !=nil {return nil ,_fbb ;};if _fbf ,_ :=_ag .Decode (_ac ); +_fbf !=nil {_ac =_fbf .Bytes ;};return _ac ,nil ;}; -// CertClient represents a X.509 certificate client. Its primary purpose -// is to download certificates. -type CertClient struct{ +// TimestampClient represents a RFC 3161 timestamp client. +// It is used to obtain signed tokens from timestamp authority servers. +type TimestampClient struct{ -// HTTPClient is the HTTP client used to make certificate requests. +// HTTPClient is the HTTP client used to make timestamp requests. // By default, an HTTP client with a 5 second timeout per request is used. -HTTPClient *_be .Client ;}; +HTTPClient *_c .Client ; -// MakeRequest makes a OCSP request to the specified server and returns -// the parsed and raw responses. If a server URL is not provided, it is -// extracted from the certificate. -func (_dgc *OCSPClient )MakeRequest (serverURL string ,cert ,issuer *_ge .Certificate )(*_dg .Response ,[]byte ,error ){if _dgc .HTTPClient ==nil {_dgc .HTTPClient =_ef ();};if serverURL ==""{if len (cert .OCSPServer )==0{return nil ,nil ,_ac .New ("\u0063e\u0072\u0074i\u0066\u0069\u0063a\u0074\u0065\u0020\u0064\u006f\u0065\u0073 \u006e\u006f\u0074\u0020\u0073\u0070e\u0063\u0069\u0066\u0079\u0020\u0061\u006e\u0079\u0020\u004f\u0043S\u0050\u0020\u0073\u0065\u0072\u0076\u0065\u0072\u0073"); -};serverURL =cert .OCSPServer [0];};_fb ,_geca :=_dg .CreateRequest (cert ,issuer ,&_dg .RequestOptions {Hash :_dgc .Hash });if _geca !=nil {return nil ,nil ,_geca ;};_fe ,_geca :=_dgc .HTTPClient .Post (serverURL ,"\u0061p\u0070\u006c\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002f\u006fc\u0073\u0070\u002d\u0072\u0065\u0071\u0075\u0065\u0073\u0074",_e .NewReader (_fb )); -if _geca !=nil {return nil ,nil ,_geca ;};defer _fe .Body .Close ();_aeg ,_geca :=_ae .ReadAll (_fe .Body );if _geca !=nil {return nil ,nil ,_geca ;};if _dgd ,_ :=_ed .Decode (_aeg );_dgd !=nil {_aeg =_dgd .Bytes ;};_fbd ,_geca :=_dg .ParseResponseForCert (_aeg ,cert ,issuer ); -if _geca !=nil {return nil ,nil ,_geca ;};return _fbd ,_aeg ,nil ;}; +// Callbacks. +BeforeHTTPRequest func (_aea *_c .Request )error ;}; -// NewCertClient returns a new certificate client. -func NewCertClient ()*CertClient {return &CertClient {HTTPClient :_ef ()}}; +// Get retrieves the certificate at the specified URL. +func (_ga *CertClient )Get (url string )(*_ae .Certificate ,error ){if _ga .HTTPClient ==nil {_ga .HTTPClient =_cde ();};_gf ,_afe :=_ga .HTTPClient .Get (url );if _afe !=nil {return nil ,_afe ;};defer _gf .Body .Close ();_ca ,_afe :=_d .ReadAll (_gf .Body ); +if _afe !=nil {return nil ,_afe ;};if _gag ,_ :=_ag .Decode (_ca );_gag !=nil {_ca =_gag .Bytes ;};_cd ,_afe :=_ae .ParseCertificate (_ca );if _afe !=nil {return nil ,_afe ;};return _cd ,nil ;}; + +// NewCRLClient returns a new CRL client. +func NewCRLClient ()*CRLClient {return &CRLClient {HTTPClient :_cde ()}}; // CRLClient represents a CRL (Certificate revocation list) client. // It is used to request revocation data from CRL servers. @@ -76,30 +49,56 @@ type CRLClient struct{ // HTTPClient is the HTTP client used to make CRL requests. // By default, an HTTP client with a 5 second timeout per request is used. -HTTPClient *_be .Client ;}; +HTTPClient *_c .Client ;}; -// TimestampClient represents a RFC 3161 timestamp client. -// It is used to obtain signed tokens from timestamp authority servers. -type TimestampClient struct{ +// IsCA returns true if the provided certificate appears to be a CA certificate. +func (_gdc *CertClient )IsCA (cert *_ae .Certificate )bool {return cert .IsCA &&_a .Equal (cert .RawIssuer ,cert .RawSubject );}; -// HTTPClient is the HTTP client used to make timestamp requests. -// By default, an HTTP client with a 5 second timeout per request is used. -HTTPClient *_be .Client ; +// MakeRequest makes a OCSP request to the specified server and returns +// the parsed and raw responses. If a server URL is not provided, it is +// extracted from the certificate. +func (_ceg *OCSPClient )MakeRequest (serverURL string ,cert ,issuer *_ae .Certificate )(*_ab .Response ,[]byte ,error ){if _ceg .HTTPClient ==nil {_ceg .HTTPClient =_cde ();};if serverURL ==""{if len (cert .OCSPServer )==0{return nil ,nil ,_fb .New ("\u0063e\u0072\u0074i\u0066\u0069\u0063a\u0074\u0065\u0020\u0064\u006f\u0065\u0073 \u006e\u006f\u0074\u0020\u0073\u0070e\u0063\u0069\u0066\u0079\u0020\u0061\u006e\u0079\u0020\u004f\u0043S\u0050\u0020\u0073\u0065\u0072\u0076\u0065\u0072\u0073"); +};serverURL =cert .OCSPServer [0];};_db ,_bgg :=_ab .CreateRequest (cert ,issuer ,&_ab .RequestOptions {Hash :_ceg .Hash });if _bgg !=nil {return nil ,nil ,_bgg ;};_cec ,_bgg :=_ceg .HTTPClient .Post (serverURL ,"\u0061p\u0070\u006c\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002f\u006fc\u0073\u0070\u002d\u0072\u0065\u0071\u0075\u0065\u0073\u0074",_a .NewReader (_db )); +if _bgg !=nil {return nil ,nil ,_bgg ;};defer _cec .Body .Close ();_bc ,_bgg :=_d .ReadAll (_cec .Body );if _bgg !=nil {return nil ,nil ,_bgg ;};if _fg ,_ :=_ag .Decode (_bc );_fg !=nil {_bc =_fg .Bytes ;};_gdcf ,_bgg :=_ab .ParseResponseForCert (_bc ,cert ,issuer ); +if _bgg !=nil {return nil ,nil ,_bgg ;};return _gdcf ,_bc ,nil ;}; -// Callbacks. -BeforeHTTPRequest func (_dag *_be .Request )error ;}; +// NewCertClient returns a new certificate client. +func NewCertClient ()*CertClient {return &CertClient {HTTPClient :_cde ()}}; -// IsCA returns true if the provided certificate appears to be a CA certificate. -func (_gec *CertClient )IsCA (cert *_ge .Certificate )bool {return cert .IsCA &&_e .Equal (cert .RawIssuer ,cert .RawSubject );}; +// NewTimestampRequest returns a new timestamp request based +// on the specified options. +func NewTimestampRequest (body _g .Reader ,opts *_af .RequestOptions )(*_af .Request ,error ){if opts ==nil {opts =&_af .RequestOptions {};};if opts .Hash ==0{opts .Hash =_ba .SHA256 ;};if !opts .Hash .Available (){return nil ,_ae .ErrUnsupportedAlgorithm ; +};_bca :=opts .Hash .New ();if _ ,_fe :=_g .Copy (_bca ,body );_fe !=nil {return nil ,_fe ;};return &_af .Request {HashAlgorithm :opts .Hash ,HashedMessage :_bca .Sum (nil ),Certificates :opts .Certificates ,TSAPolicyOID :opts .TSAPolicyOID ,Nonce :opts .Nonce },nil ; +}; + +// CertClient represents a X.509 certificate client. Its primary purpose +// is to download certificates. +type CertClient struct{ + +// HTTPClient is the HTTP client used to make certificate requests. +// By default, an HTTP client with a 5 second timeout per request is used. +HTTPClient *_c .Client ;}; // GetEncodedToken executes the timestamp request and returns the DER encoded // timestamp token bytes. -func (_age *TimestampClient )GetEncodedToken (serverURL string ,req *_gee .Request )([]byte ,error ){if serverURL ==""{return nil ,_d .Errorf ("\u006d\u0075\u0073\u0074\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0020\u0074\u0069\u006d\u0065\u0073\u0074\u0061m\u0070\u0020\u0073\u0065\u0072\u0076\u0065r\u0020\u0055\u0052\u004c"); -};if req ==nil {return nil ,_d .Errorf ("\u0074\u0069\u006de\u0073\u0074\u0061\u006dp\u0020\u0072\u0065\u0071\u0075\u0065\u0073t\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c");};_bd ,_ce :=req .Marshal ();if _ce !=nil {return nil ,_ce ; -};_gef ,_ce :=_be .NewRequest ("\u0050\u004f\u0053\u0054",serverURL ,_e .NewBuffer (_bd ));if _ce !=nil {return nil ,_ce ;};_gef .Header .Set ("\u0043\u006f\u006et\u0065\u006e\u0074\u002d\u0054\u0079\u0070\u0065","a\u0070\u0070\u006c\u0069\u0063\u0061t\u0069\u006f\u006e\u002f\u0074\u0069\u006d\u0065\u0073t\u0061\u006d\u0070-\u0071u\u0065\u0072\u0079"); -if _age .BeforeHTTPRequest !=nil {if _fdb :=_age .BeforeHTTPRequest (_gef );_fdb !=nil {return nil ,_fdb ;};};_bed :=_age .HTTPClient ;if _bed ==nil {_bed =_ef ();};_dca ,_ce :=_bed .Do (_gef );if _ce !=nil {return nil ,_ce ;};defer _dca .Body .Close (); -_gd ,_ce :=_ae .ReadAll (_dca .Body );if _ce !=nil {return nil ,_ce ;};if _dca .StatusCode !=_be .StatusOK {return nil ,_d .Errorf ("\u0075\u006e\u0065x\u0070\u0065\u0063\u0074e\u0064\u0020\u0048\u0054\u0054\u0050\u0020s\u0074\u0061\u0074\u0075\u0073\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0064",_dca .StatusCode ); -};var _faa struct{Version _dc .RawValue ;Content _dc .RawValue ;};if _ ,_ce =_dc .Unmarshal (_gd ,&_faa );_ce !=nil {return nil ,_ce ;};return _faa .Content .FullBytes ,nil ;}; +func (_fa *TimestampClient )GetEncodedToken (serverURL string ,req *_af .Request )([]byte ,error ){if serverURL ==""{return nil ,_bg .Errorf ("\u006d\u0075\u0073\u0074\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0020\u0074\u0069\u006d\u0065\u0073\u0074\u0061m\u0070\u0020\u0073\u0065\u0072\u0076\u0065r\u0020\u0055\u0052\u004c"); +};if req ==nil {return nil ,_bg .Errorf ("\u0074\u0069\u006de\u0073\u0074\u0061\u006dp\u0020\u0072\u0065\u0071\u0075\u0065\u0073t\u0020\u0063\u0061\u006e\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u006e\u0069\u006c");};_ggf ,_caa :=req .Marshal ();if _caa !=nil {return nil ,_caa ; +};_caf ,_caa :=_c .NewRequest ("\u0050\u004f\u0053\u0054",serverURL ,_a .NewBuffer (_ggf ));if _caa !=nil {return nil ,_caa ;};_caf .Header .Set ("\u0043\u006f\u006et\u0065\u006e\u0074\u002d\u0054\u0079\u0070\u0065","a\u0070\u0070\u006c\u0069\u0063\u0061t\u0069\u006f\u006e\u002f\u0074\u0069\u006d\u0065\u0073t\u0061\u006d\u0070-\u0071u\u0065\u0072\u0079"); +if _fa .BeforeHTTPRequest !=nil {if _gb :=_fa .BeforeHTTPRequest (_caf );_gb !=nil {return nil ,_gb ;};};_ge :=_fa .HTTPClient ;if _ge ==nil {_ge =_cde ();};_fc ,_caa :=_ge .Do (_caf );if _caa !=nil {return nil ,_caa ;};defer _fc .Body .Close ();_bag ,_caa :=_d .ReadAll (_fc .Body ); +if _caa !=nil {return nil ,_caa ;};if _fc .StatusCode !=_c .StatusOK {return nil ,_bg .Errorf ("\u0075\u006e\u0065x\u0070\u0065\u0063\u0074e\u0064\u0020\u0048\u0054\u0054\u0050\u0020s\u0074\u0061\u0074\u0075\u0073\u0020\u0063\u006f\u0064\u0065\u003a\u0020\u0025\u0064",_fc .StatusCode ); +};var _ed struct{Version _aa .RawValue ;Content _aa .RawValue ;};if _ ,_caa =_aa .Unmarshal (_bag ,&_ed );_caa !=nil {return nil ,_caa ;};return _ed .Content .FullBytes ,nil ;}; -// NewTimestampClient returns a new timestamp client. -func NewTimestampClient ()*TimestampClient {return &TimestampClient {HTTPClient :_ef ()}}; \ No newline at end of file +// NewOCSPClient returns a new OCSP client. +func NewOCSPClient ()*OCSPClient {return &OCSPClient {HTTPClient :_cde (),Hash :_ba .SHA1 }}; + +// OCSPClient represents a OCSP (Online Certificate Status Protocol) client. +// It is used to request revocation data from OCSP servers. +type OCSPClient struct{ + +// HTTPClient is the HTTP client used to make OCSP requests. +// By default, an HTTP client with a 5 second timeout per request is used. +HTTPClient *_c .Client ; + +// Hash is the hash function used when constructing the OCSP +// requests. If zero, SHA-1 will be used. +Hash _ba .Hash ;};func _cde ()*_c .Client {return &_c .Client {Timeout :5*_b .Second }}; \ No newline at end of file diff --git a/model/xmputil/pdfaextension/pdfaextension.go b/model/xmputil/pdfaextension/pdfaextension.go index f35900f24..3b3e4ce05 100644 --- a/model/xmputil/pdfaextension/pdfaextension.go +++ b/model/xmputil/pdfaextension/pdfaextension.go @@ -9,86 +9,89 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package pdfaextension ;import (_f "fmt";_a "github.com/trimmer-io/go-xmp/models/dc";_ad "github.com/trimmer-io/go-xmp/models/pdf";_ge "github.com/trimmer-io/go-xmp/models/xmp_base";_b "github.com/trimmer-io/go-xmp/models/xmp_mm";_g "github.com/trimmer-io/go-xmp/xmp"; -_d "reflect";_ed "sort";_fc "strings";_eg "sync";); +package pdfaextension ;import (_a "fmt";_afe "github.com/trimmer-io/go-xmp/models/dc";_c "github.com/trimmer-io/go-xmp/models/pdf";_g "github.com/trimmer-io/go-xmp/models/xmp_base";_ed "github.com/trimmer-io/go-xmp/models/xmp_mm";_cd "github.com/trimmer-io/go-xmp/xmp"; +_f "reflect";_e "sort";_af "strings";_bg "sync";); -// NewModel creates a new pdfAExtension model. -func NewModel (name string )_g .Model {return &Model {}};func init (){_g .Register (Namespace ,_g .XmpMetadata );_g .Register (SchemaNS );_g .Register (PropertyNS );_g .Register (ValueTypeNS );_g .Register (FieldNS );};const (PropertyCategoryUndefined PropertyCategory =iota ; -PropertyCategoryInternal ;PropertyCategoryExternal ;); +// Namespaces implements xmp.Model interface. +func (_eb *Model )Namespaces ()_cd .NamespaceList {return _cd .NamespaceList {Namespace }};func init (){_cd .Register (Namespace ,_cd .XmpMetadata );_cd .Register (SchemaNS );_cd .Register (PropertyNS );_cd .Register (ValueTypeNS );_cd .Register (FieldNS ); +};var (_fge =map[string ]*Schema {};_bgf _bg .RWMutex ;); -// GetSchema for provided namespace. -func GetSchema (namespaceURI string )(*Schema ,bool ){_fb .RLock ();defer _fb .RUnlock ();_ba ,_eec :=_ggg [namespaceURI ];return _ba ,_eec ;}; +// UnmarshalXMP implements xmp.Unmarshaler interface. +func (_fba *Schemas )UnmarshalXMP (d *_cd .Decoder ,node *_cd .Node ,m _cd .Model )error {return _cd .UnmarshalArray (d ,node ,_fba .Typ (),_fba );}; // SetTag implements xmp.Model interface. -func (_gf *Model )SetTag (tag ,value string )error {if _gff :=_g .SetNativeField (_gf ,tag ,value );_gff !=nil {return _f .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_gff );};return nil ;};var FieldVersionSchema =Schema {NamespaceURI :"\u0068\u0074\u0074p\u003a\u002f\u002f\u006e\u0073\u002e\u0061\u0064\u006f\u0062\u0065\u002e\u0063\u006f\u006d\u002f\u0078\u0061\u0070\u002f\u0031\u002e\u0030\u002f\u0073\u0054\u0079\u0070\u0065/\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u0023",Prefix :"\u0073\u0074\u0056e\u0072",Schema :"\u0042a\u0073\u0069\u0063\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0074y\u0070\u0065\u0020\u0056\u0065\u0072\u0073\u0069\u006f\u006e",Property :[]Property {{Category :PropertyCategoryInternal ,Description :"\u0043\u006fmm\u0065\u006e\u0074s\u0020\u0063\u006f\u006ecer\u006ein\u0067\u0020\u0077\u0068\u0061\u0074\u0020wa\u0073\u0020\u0063\u0068\u0061\u006e\u0067e\u0064",Name :"\u0063\u006f\u006d\u006d\u0065\u006e\u0074\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0048\u0069\u0067\u0068\u0020\u006c\u0065\u0076\u0065\u006c\u002c\u0020\u0066\u006f\u0072\u006d\u0061\u006c\u0020\u0064e\u0073\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e\u0020\u006f\u0066\u0020\u0077\u0068\u0061\u0074\u0020\u006f\u0070\u0065r\u0061\u0074\u0069\u006f\u006e\u0020\u0074\u0068\u0065\u0020\u0075\u0073\u0065\u0072 \u0070\u0065\u0072f\u006f\u0072\u006d\u0065\u0064\u002e",Name :"\u0065\u0076\u0065n\u0074",ValueType :ValueTypeResourceEvent },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068e\u0020\u0064\u0061\u0074\u0065\u0020\u006f\u006e\u0020\u0077\u0068\u0069\u0063\u0068\u0020\u0074\u0068\u0069\u0073\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0077\u0061\u0073\u0020\u0063\u0068\u0065\u0063\u006b\u0065\u0064\u0020\u0069\u006e\u002e",Name :"\u006d\u006f\u0064\u0069\u0066\u0079\u0044\u0061\u0074\u0065",ValueType :ValueTypeNameDate },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068e\u0020\u0070\u0065\u0072s\u006f\u006e \u0077\u0068\u006f\u0020\u006d\u006f\u0064\u0069f\u0069\u0065\u0064\u0020\u0074\u0068\u0069\u0073\u0020\u0076\u0065\u0072s\u0069\u006f\u006e\u002e",Name :"\u006d\u006f\u0064\u0069\u0066\u0069\u0065\u0072",ValueType :ValueTypeNameProperName },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 n\u0065\u0077\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u002e",Name :"\u0076e\u0072\u0073\u0069\u006f\u006e",ValueType :ValueTypeNameText }},ValueType :nil }; +func (_dgc *Model )SetTag (tag ,value string )error {if _fe :=_cd .SetNativeField (_dgc ,tag ,value );_fe !=nil {return _a .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_fe );};return nil ;}; +// Can implements xmp.Model interface. +func (_aae *Model )Can (nsName string )bool {return Namespace .GetName ()==nsName }; -// Properties is a list of properties. -type Properties []Property ; +// SetSchema sets the schema into given model. +func (_fc *Model )SetSchema (namespaceURI string ,s Schema ){for _bgb :=0;_bgb < len (_fc .Schemas );_bgb ++{if _fc .Schemas [_bgb ].NamespaceURI ==namespaceURI {_fc .Schemas [_bgb ]=s ;return ;};};_fc .Schemas =append (_fc .Schemas ,s );}; -// SeqOfValueTypeName gets a value type name of a sequence of input value type names. -func SeqOfValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0073\u0065\u0071\u0020"+vt }; +// ValueType is the pdfa extension value type schema. +type ValueType struct{Description string `xmp:"pdfaType:description"`;Field []FieldValueType `xmp:"pdfaType:field"`;NamespaceURI string `xmp:"pdfaType:namespaceURI"`;Prefix string `xmp:"pdfaType:prefix"`;Type string `xmp:"pdfaType:type"`;}; -// Can implements xmp.Model interface. -func (_edd *Model )Can (nsName string )bool {return Namespace .GetName ()==nsName }; +// ClosedChoiceValueTypeName gets the closed choice of provided value type name. +func ClosedChoiceValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0043\u006c\u006f\u0073\u0065\u0064\u0020\u0043\u0068\u006f\u0069\u0063e\u0020\u006f\u0066\u0020"+vt ;}; -// Model is the pdfa extension metadata model. -type Model struct{Schemas Schemas `xmp:"pdfaExtension:schemas"`;}; +// PropertyCategory is the property category enumerator. +type PropertyCategory int ; -// UnmarshalText implements encoding.TextUnmarshaler interface. -func (_cef *PropertyCategory )UnmarshalText (in []byte )error {switch string (in ){case "\u0069\u006e\u0074\u0065\u0072\u006e\u0061\u006c":*_cef =PropertyCategoryInternal ;case "\u0065\u0078\u0074\u0065\u0072\u006e\u0061\u006c":*_cef =PropertyCategoryExternal ; -default:*_cef =PropertyCategoryUndefined ;};return nil ;}; +// GetSchema for provided namespace. +func GetSchema (namespaceURI string )(*Schema ,bool ){_bgf .RLock ();defer _bgf .RUnlock ();_cged ,_acc :=_fge [namespaceURI ];return _cged ,_acc ;}; -// MakeModel creates or gets a model from document. -func MakeModel (d *_g .Document )(*Model ,error ){_db ,_eb :=d .MakeModel (Namespace );if _eb !=nil {return nil ,_eb ;};return _db .(*Model ),nil ;};var (Namespace =_g .NewNamespace ("\u0070\u0064\u0066\u0061\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e","\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0077\u0077\u0077\u002e\u0061\u0069\u0069\u006d\u002e\u006f\u0072\u0067\u002f\u0070\u0064\u0066\u0061/\u006e\u0073\u002f\u0065\u0078t\u0065\u006es\u0069\u006f\u006e\u002f",NewModel ); -SchemaNS =_g .NewNamespace ("\u0070\u0064\u0066\u0061\u0053\u0063\u0068\u0065\u006d\u0061","h\u0074\u0074\u0070\u003a\u002f\u002fw\u0077\u0077\u002e\u0061\u0069\u0069m\u002e\u006f\u0072\u0067\u002f\u0070\u0064f\u0061\u002f\u006e\u0073\u002f\u0073\u0063\u0068\u0065\u006da\u0023",nil ); -PropertyNS =_g .NewNamespace ("\u0070\u0064\u0066a\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0079","\u0068\u0074t\u0070\u003a\u002f\u002fw\u0077\u0077.\u0061\u0069\u0069\u006d\u002e\u006f\u0072\u0067/\u0070\u0064\u0066\u0061\u002f\u006e\u0073\u002f\u0070\u0072\u006f\u0070e\u0072\u0074\u0079\u0023",nil ); -ValueTypeNS =_g .NewNamespace ("\u0070\u0064\u0066\u0061\u0054\u0079\u0070\u0065","\u0068\u0074\u0074\u0070\u003a\u002f/\u0077\u0077\u0077\u002e\u0061\u0069\u0069\u006d\u002e\u006f\u0072\u0067\u002fp\u0064\u0066\u0061\u002f\u006e\u0073\u002ft\u0079\u0070\u0065\u0023",nil ); -FieldNS =_g .NewNamespace ("\u0070d\u0066\u0061\u0046\u0069\u0065\u006cd","\u0068\u0074\u0074p:\u002f\u002f\u0077\u0077\u0077\u002e\u0061\u0069\u0069m\u002eo\u0072g\u002fp\u0064\u0066\u0061\u002f\u006e\u0073\u002f\u0066\u0069\u0065\u006c\u0064\u0023",nil ); -); +// ValueTypeName is the name of the value type. +type ValueTypeName string ;var XmpIDQualSchema =Schema {NamespaceURI :"\u0068t\u0074\u0070:\u002f\u002f\u006e\u0073.\u0061\u0064\u006fb\u0065\u002e\u0063\u006f\u006d\u002f\u0078\u006d\u0070/I\u0064\u0065\u006et\u0069\u0066i\u0065\u0072\u002f\u0071\u0075\u0061l\u002f\u0031.\u0030\u002f",Prefix :"\u0078\u006d\u0070\u0069\u0064\u0071",Schema :"X\u004dP\u0020\u0078\u006d\u0070\u0069\u0064\u0071\u0020q\u0075\u0061\u006c\u0069fi\u0065\u0072",Property :[]Property {{Category :PropertyCategoryInternal ,Name :"\u0053\u0063\u0068\u0065\u006d\u0065",Description :"\u0041\u0020\u0071\u0075\u0061\u006c\u0069\u0066\u0069\u0065\u0072\u0020\u0070\u0072o\u0076\u0069\u0064i\u006e\u0067\u0020\u0074h\u0065\u0020\u006e\u0020\u0061\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u006c \u0069\u0064\u0065n\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0063\u0068\u0065\u006d\u0065\u0020\u0075\u0073ed\u0020\u0066\u006fr\u0020\u0061\u006e\u0020\u0069\u0074\u0065\u006d \u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0078\u006d\u0070\u003a\u0049\u0064\u0065\u006e\u0074\u0069\u0066\u0069\u0065\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u002e",ValueType :ValueTypeNameText }},ValueType :nil }; -// UnmarshalXMP implements xmp.Unmarshaler interface. -func (_gfc *Schemas )UnmarshalXMP (d *_g .Decoder ,node *_g .Node ,m _g .Model )error {return _g .UnmarshalArray (d ,node ,_gfc .Typ (),_gfc );}; -// FieldValueType is a schema that describes a field in a structured type. -type FieldValueType struct{Name string `xmp:"pdfaField:description"`;Description string `xmp:"pdfaField:name"`;ValueType ValueTypeName `xmp:"pdfaField:valueType"`;}; +// NewModel creates a new pdfAExtension model. +func NewModel (name string )_cd .Model {return &Model {}}; -// Schemas is the array of xmp metadata extension resources. -type Schemas []Schema ;var (_ggg =map[string ]*Schema {};_fb _eg .RWMutex ;);func init (){_ggg =map[string ]*Schema {_b .NsXmpMM .URI :&XmpMediaManagementSchema ,"\u0078\u006d\u0070\u0069\u0064\u0071":&XmpIDQualSchema ,_ad .NsPDF .URI :&PdfSchema ,"\u0073\u0074\u0045v\u0074":&FieldResourceEventSchema ,"\u0073\u0074\u0056e\u0072":&FieldVersionSchema }; -}; +// MakeModel creates or gets a model from document. +func MakeModel (d *_cd .Document )(*Model ,error ){_d ,_dd :=d .MakeModel (Namespace );if _dd !=nil {return nil ,_dd ;};return _d .(*Model ),nil ;}; -// MarshalXMP implements xmp.Marshaler interface. -func (_fac Properties )MarshalXMP (e *_g .Encoder ,node *_g .Node ,m _g .Model )error {return _g .MarshalArray (e ,node ,_fac .Typ (),_fac );};const (ValueTypeResourceEvent ValueTypeName ="\u0052\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0045\u0076\u0065\u006e\u0074"; -); +// Typ gets the array type of properties. +func (_eee Properties )Typ ()_cd .ArrayType {return _cd .ArrayTypeOrdered }; -// SyncFromXMP implements xmp.Model interface. -func (_fege *Model )SyncFromXMP (d *_g .Document )error {return nil };var XmpIDQualSchema =Schema {NamespaceURI :"\u0068t\u0074\u0070:\u002f\u002f\u006e\u0073.\u0061\u0064\u006fb\u0065\u002e\u0063\u006f\u006d\u002f\u0078\u006d\u0070/I\u0064\u0065\u006et\u0069\u0066i\u0065\u0072\u002f\u0071\u0075\u0061l\u002f\u0031.\u0030\u002f",Prefix :"\u0078\u006d\u0070\u0069\u0064\u0071",Schema :"X\u004dP\u0020\u0078\u006d\u0070\u0069\u0064\u0071\u0020q\u0075\u0061\u006c\u0069fi\u0065\u0072",Property :[]Property {{Category :PropertyCategoryInternal ,Name :"\u0053\u0063\u0068\u0065\u006d\u0065",Description :"\u0041\u0020\u0071\u0075\u0061\u006c\u0069\u0066\u0069\u0065\u0072\u0020\u0070\u0072o\u0076\u0069\u0064i\u006e\u0067\u0020\u0074h\u0065\u0020\u006e\u0020\u0061\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0066\u006f\u0072\u006d\u0061\u006c \u0069\u0064\u0065n\u0074\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u0020\u0073\u0063\u0068\u0065\u006d\u0065\u0020\u0075\u0073ed\u0020\u0066\u006fr\u0020\u0061\u006e\u0020\u0069\u0074\u0065\u006d \u0069\u006e\u0020\u0074\u0068\u0065\u0020\u0078\u006d\u0070\u003a\u0049\u0064\u0065\u006e\u0074\u0069\u0066\u0069\u0065\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u002e",ValueType :ValueTypeNameText }},ValueType :nil }; +// MarshalXMP implements xmp.Marshaler interface. +func (_bfcf ValueTypes )MarshalXMP (e *_cd .Encoder ,node *_cd .Node ,m _cd .Model )error {return _cd .MarshalArray (e ,node ,_bfcf .Typ (),_bfcf );};func init (){_fge =map[string ]*Schema {_ed .NsXmpMM .URI :&XmpMediaManagementSchema ,"\u0078\u006d\u0070\u0069\u0064\u0071":&XmpIDQualSchema ,_c .NsPDF .URI :&PdfSchema ,"\u0073\u0074\u0045v\u0074":&FieldResourceEventSchema ,"\u0073\u0074\u0056e\u0072":&FieldVersionSchema }; +}; +// MarshalXMP implements xmp.Marshaler interface. +func (_bd Properties )MarshalXMP (e *_cd .Encoder ,node *_cd .Node ,m _cd .Model )error {return _cd .MarshalArray (e ,node ,_bd .Typ (),_bd );}; -// CanTag implements xmp.Model interface. -func (_gb *Model )CanTag (tag string )bool {_ ,_ag :=_g .GetNativeField (_gb ,tag );return _ag ==nil }; +// SyncModel implements xmp.Model interface. +func (_gb *Model )SyncModel (d *_cd .Document )error {return nil }; -// UnmarshalXMP implements xmp.Unmarshaler interface. -func (_gef *Properties )UnmarshalXMP (d *_g .Decoder ,node *_g .Node ,m _g .Model )error {return _g .UnmarshalArray (d ,node ,_gef .Typ (),_gef );}; +// ValueTypes is the slice of field value types. +type ValueTypes []FieldValueType ;func _afb (_cdf _cd .Model ,_ea *_cd .Namespace ,_cfg Property )bool {_bgd :=_f .ValueOf (_cdf ).Elem ();if _bgd .Kind ()==_f .Ptr {_bgd =_bgd .Elem ();};_bgee :=_bgd .Type ();for _ada :=0;_ada < _bgee .NumField ();_ada ++{_bb :=_bgee .Field (_ada ); +_fa :=_bb .Tag .Get ("\u0078\u006d\u0070");if _fa ==""{continue ;};if !_af .HasPrefix (_fa ,_ea .Name ){continue ;};_ff :=_af .IndexRune (_fa ,':');if _ff ==-1{continue ;};_ac :=_fa [_ff +1:];if _ac ==_cfg .Name {_gg :=_bgd .Field (_ada );return !_gg .IsZero (); +};};return false ;}; -// Typ gets the array type of properties. -func (_dge Properties )Typ ()_g .ArrayType {return _g .ArrayTypeOrdered };var FieldResourceEventSchema =Schema {NamespaceURI :"\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u006es\u002e\u0061\u0064ob\u0065\u002e\u0063\u006f\u006d\u002fx\u0061\u0070\u002f\u0031\u002e\u0030\u002f\u0073\u0054\u0079\u0070\u0065\u002f\u0052\u0065s\u006f\u0075\u0072\u0063\u0065\u0045\u0076\u0065n\u0074\u0023",Prefix :"\u0073\u0074\u0045v\u0074",Schema :"\u0044e\u0066\u0069n\u0069\u0074\u0069\u006fn\u0020\u006f\u0066 \u0062\u0061\u0073\u0069\u0063\u0020\u0076\u0061\u006cue\u0020\u0074\u0079p\u0065\u0020R\u0065\u0073\u006f\u0075\u0072\u0063e\u0045\u0076e\u006e\u0074",Property :[]Property {{Category :PropertyCategoryInternal ,Description :"\u0054he\u0020a\u0063t\u0069\u006f\u006e\u0020\u0074\u0068a\u0074\u0020\u006f\u0063c\u0075\u0072\u0072\u0065\u0064\u002e\u0020\u0044\u0065\u0066\u0069\u006e\u0065d \u0076\u0061\u006c\u0075\u0065\u0073\u0020\u0061\u0072\u0065\u003a\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0065d\u002c \u0063\u006f\u0070\u0069\u0065\u0064\u002c\u0020\u0063\u0072\u0065\u0061\u0074e\u0064\u002c \u0063\u0072\u006fp\u0070\u0065\u0064\u002c\u0020\u0065\u0064\u0069\u0074ed\u002c\u0020\u0066i\u006c\u002d\u0074\u0065r\u0065\u0064\u002c\u0020\u0066\u006fr\u006d\u0061t\u0074\u0065\u0064\u002c\u0020\u0076\u0065\u0072s\u0069\u006f\u006e\u005f\u0075\u0070\u0064\u0061\u0074\u0065\u0064\u002c\u0020\u0070\u0072\u0069\u006e\u0074\u0065\u0064\u002c\u0020\u0070ubli\u0073\u0068\u0065\u0064\u002c\u0020\u006d\u0061\u006e\u0061\u0067\u0065\u0064\u002c\u0020\u0070\u0072\u006f\u0064\u0075\u0063\u0065\u0064\u002c\u0020\u0072\u0065\u0073i\u007ae\u0064.\u004e\u0065\u0077\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065 \u0076\u0065r\u0062\u0073 \u0069n\u0020\u0074\u0068\u0065\u0020\u0070a\u0073\u0074\u0020\u0074\u0065\u006e\u0073\u0065\u002e",Name :"\u0061\u0063\u0074\u0069\u006f\u006e",ValueType :"O\u0070\u0065\u006e\u0020\u0043\u0068\u006f\u0069\u0063\u0065"},{Category :PropertyCategoryInternal ,Description :"T\u0068\u0065\u0020\u0069\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0020\u0049\u0044\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u006d\u006f\u0064\u0069\u0066\u0069\u0065d \u0072\u0065\u0073o\u0075r\u0063\u0065",Name :"\u0069\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"\u0041\u0064di\u0074\u0069\u006fn\u0061\u006c\u0020\u0064esc\u0072ip\u0074\u0069\u006f\u006e\u0020\u006f\u0066 t\u0068\u0065\u0020\u0061\u0063\u0074\u0069o\u006e",Name :"\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054h\u0065\u0020s\u006f\u0066\u0074\u0077a\u0072\u0065\u0020a\u0067\u0065\u006e\u0074\u0020\u0074\u0068\u0061\u0074 p\u0065\u0072\u0066o\u0072\u006de\u0064\u0020\u0074\u0068\u0065\u0020a\u0063\u0074i\u006f\u006e",Name :"\u0073\u006f\u0066\u0074\u0077\u0061\u0072\u0065\u0041\u0067\u0065\u006e\u0074",ValueType :ValueTypeNameAgentName },{Category :PropertyCategoryInternal ,Description :"\u004f\u0070t\u0069\u006f\u006e\u0061\u006c\u0020\u0074\u0069\u006d\u0065\u0073\u0074\u0061\u006d\u0070\u0020\u006f\u0066\u0020\u0077\u0068\u0065\u006e\u0020\u0074\u0068\u0065\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0020\u006f\u0063\u0063\u0075\u0072\u0072\u0065\u0064",Name :"\u0077\u0068\u0065\u006e",ValueType :ValueTypeNameDate }},ValueType :nil }; +// SyncToXMP implements xmp.Model interface. +func (_gaf *Model )SyncToXMP (d *_cd .Document )error {return nil }; +// CanTag implements xmp.Model interface. +func (_fgf *Model )CanTag (tag string )bool {_ ,_gbe :=_cd .GetNativeField (_fgf ,tag );return _gbe ==nil ;}; // GetTag implements xmp.Model interface. -func (_af *Model )GetTag (tag string )(string ,error ){_efd ,_cg :=_g .GetNativeField (_af ,tag );if _cg !=nil {return "",_f .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_cg );};return _efd ,nil ;}; +func (_fb *Model )GetTag (tag string )(string ,error ){_bf ,_ggb :=_cd .GetNativeField (_fb ,tag );if _ggb !=nil {return "",_a .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_ggb );};return _bf ,nil ;};const (ValueTypeNameBoolean ValueTypeName ="\u0042o\u006f\u006c\u0065\u0061\u006e"; +ValueTypeNameDate ValueTypeName ="\u0044\u0061\u0074\u0065";ValueTypeNameInteger ValueTypeName ="\u0049n\u0074\u0065\u0067\u0065\u0072";ValueTypeNameReal ValueTypeName ="\u0052\u0065\u0061\u006c";ValueTypeNameText ValueTypeName ="\u0054\u0065\u0078\u0074"; +ValueTypeNameAgentName ValueTypeName ="\u0041g\u0065\u006e\u0074\u004e\u0061\u006de";ValueTypeNameProperName ValueTypeName ="\u0050\u0072\u006f\u0070\u0065\u0072\u004e\u0061\u006d\u0065";ValueTypeNameXPath ValueTypeName ="\u0058\u0050\u0061t\u0068";ValueTypeNameGUID ValueTypeName ="\u0047\u0055\u0049\u0044"; +ValueTypeNameLocale ValueTypeName ="\u004c\u006f\u0063\u0061\u006c\u0065";ValueTypeNameMIMEType ValueTypeName ="\u004d\u0049\u004d\u0045\u0054\u0079\u0070\u0065";ValueTypeNameRenditionClass ValueTypeName ="\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006eC\u006c\u0061\u0073\u0073"; +ValueTypeNameResourceRef ValueTypeName ="R\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0052\u0065\u0066";ValueTypeNameURL ValueTypeName ="\u0055\u0052\u004c";ValueTypeNameURI ValueTypeName ="\u0055\u0052\u0049";ValueTypeNameVersion ValueTypeName ="\u0056e\u0072\u0073\u0069\u006f\u006e"; +); -// ValueTypes is the slice of field value types. -type ValueTypes []FieldValueType ; +// Typ gets array type of the field value types. +func (_dgb ValueTypes )Typ ()_cd .ArrayType {return _cd .ArrayTypeOrdered };var FieldVersionSchema =Schema {NamespaceURI :"\u0068\u0074\u0074p\u003a\u002f\u002f\u006e\u0073\u002e\u0061\u0064\u006f\u0062\u0065\u002e\u0063\u006f\u006d\u002f\u0078\u0061\u0070\u002f\u0031\u002e\u0030\u002f\u0073\u0054\u0079\u0070\u0065/\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u0023",Prefix :"\u0073\u0074\u0056e\u0072",Schema :"\u0042a\u0073\u0069\u0063\u0020\u0076\u0061\u006c\u0075\u0065\u0020\u0074y\u0070\u0065\u0020\u0056\u0065\u0072\u0073\u0069\u006f\u006e",Property :[]Property {{Category :PropertyCategoryInternal ,Description :"\u0043\u006fmm\u0065\u006e\u0074s\u0020\u0063\u006f\u006ecer\u006ein\u0067\u0020\u0077\u0068\u0061\u0074\u0020wa\u0073\u0020\u0063\u0068\u0061\u006e\u0067e\u0064",Name :"\u0063\u006f\u006d\u006d\u0065\u006e\u0074\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0048\u0069\u0067\u0068\u0020\u006c\u0065\u0076\u0065\u006c\u002c\u0020\u0066\u006f\u0072\u006d\u0061\u006c\u0020\u0064e\u0073\u0063\u0072\u0069\u0070\u0074\u0069\u006f\u006e\u0020\u006f\u0066\u0020\u0077\u0068\u0061\u0074\u0020\u006f\u0070\u0065r\u0061\u0074\u0069\u006f\u006e\u0020\u0074\u0068\u0065\u0020\u0075\u0073\u0065\u0072 \u0070\u0065\u0072f\u006f\u0072\u006d\u0065\u0064\u002e",Name :"\u0065\u0076\u0065n\u0074",ValueType :ValueTypeResourceEvent },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068e\u0020\u0064\u0061\u0074\u0065\u0020\u006f\u006e\u0020\u0077\u0068\u0069\u0063\u0068\u0020\u0074\u0068\u0069\u0073\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u0077\u0061\u0073\u0020\u0063\u0068\u0065\u0063\u006b\u0065\u0064\u0020\u0069\u006e\u002e",Name :"\u006d\u006f\u0064\u0069\u0066\u0079\u0044\u0061\u0074\u0065",ValueType :ValueTypeNameDate },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068e\u0020\u0070\u0065\u0072s\u006f\u006e \u0077\u0068\u006f\u0020\u006d\u006f\u0064\u0069f\u0069\u0065\u0064\u0020\u0074\u0068\u0069\u0073\u0020\u0076\u0065\u0072s\u0069\u006f\u006e\u002e",Name :"\u006d\u006f\u0064\u0069\u0066\u0069\u0065\u0072",ValueType :ValueTypeNameProperName },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 n\u0065\u0077\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0020\u006e\u0075\u006d\u0062\u0065\u0072\u002e",Name :"\u0076e\u0072\u0073\u0069\u006f\u006e",ValueType :ValueTypeNameText }},ValueType :nil }; -// UnmarshalXMP implements xmp.Unmarshaler interface. -func (_de *ValueTypes )UnmarshalXMP (d *_g .Decoder ,node *_g .Node ,m _g .Model )error {return _g .UnmarshalArray (d ,node ,_de .Typ (),_de );}; -// SyncModel implements xmp.Model interface. -func (_ea *Model )SyncModel (d *_g .Document )error {return nil }; +// UnmarshalText implements encoding.TextUnmarshaler interface. +func (_eac *PropertyCategory )UnmarshalText (in []byte )error {switch string (in ){case "\u0069\u006e\u0074\u0065\u0072\u006e\u0061\u006c":*_eac =PropertyCategoryInternal ;case "\u0065\u0078\u0074\u0065\u0072\u006e\u0061\u006c":*_eac =PropertyCategoryExternal ; +default:*_eac =PropertyCategoryUndefined ;};return nil ;};const (PropertyCategoryUndefined PropertyCategory =iota ;PropertyCategoryInternal ;PropertyCategoryExternal ;); -// ValueType is the pdfa extension value type schema. -type ValueType struct{Description string `xmp:"pdfaType:description"`;Field []FieldValueType `xmp:"pdfaType:field"`;NamespaceURI string `xmp:"pdfaType:namespaceURI"`;Prefix string `xmp:"pdfaType:prefix"`;Type string `xmp:"pdfaType:type"`;};var PdfSchema =Schema {NamespaceURI :"\u0068\u0074\u0074\u0070:\u002f\u002f\u006e\u0073\u002e\u0061\u0064\u006f\u0062\u0065.\u0063o\u006d\u002f\u0070\u0064\u0066\u002f\u0031.\u0033\u002f",Prefix :"\u0070\u0064\u0066",Schema :"\u0041\u0064o\u0062\u0065\u0020P\u0044\u0046\u0020\u0053\u0063\u0068\u0065\u006d\u0061",Property :Properties {{Category :PropertyCategoryInternal ,Description :"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",Name :"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0050\u0044F\u0020\u0066\u0069l\u0065\u0020\u0076e\u0072\u0073\u0069\u006f\u006e\u0020\u0028\u0066\u006f\u0072 \u0065\u0078\u0061\u006d\u0070le\u003a\u0020\u0031\u002e\u0030\u002c\u0020\u0031\u002e\u0033\u002c\u0020\u0061\u006e\u0064\u0020\u0073\u006f\u0020\u006f\u006e\u0029\u002e",Name :"\u0050\u0044\u0046\u0056\u0065\u0072\u0073\u0069\u006f\u006e",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u006ea\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0074\u006f\u006fl\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u0072\u0065\u0061\u0074\u0065\u0064\u0020\u0074\u0068\u0065\u0020\u0050\u0044\u0046\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074.",Name :"\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",ValueType :ValueTypeNameAgentName },{Category :PropertyCategoryInternal ,Description :"\u0049\u006e\u0064\u0069\u0063\u0061\u0074\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0074\u0068\u0069s\u0020\u0069\u0073\u0020\u0061\u0020\u0072i\u0067\u0068\u0074\u0073\u002d\u006d\u0061\u006e\u0061\u0067\u0065d\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u002e\u002e",Name :"\u004d\u0061\u0072\u006b\u0065\u0064",ValueType :ValueTypeNameBoolean }}}; +// Model is the pdfa extension metadata model. +type Model struct{Schemas Schemas `xmp:"pdfaExtension:schemas"`;};var XmpMediaManagementSchema =Schema {NamespaceURI :"\u0068\u0074\u0074p\u003a\u002f\u002f\u006es\u002e\u0061\u0064\u006f\u0062\u0065\u002ec\u006f\u006d\u002f\u0078\u0061\u0070\u002f\u0031\u002e\u0030\u002f\u006d\u006d\u002f",Prefix :"\u0078\u006d\u0070M\u004d",Schema :"X\u004dP\u0020\u004d\u0065\u0064\u0069\u0061\u0020\u004da\u006e\u0061\u0067\u0065me\u006e\u0074",Property :[]Property {{Category :PropertyCategoryInternal ,Description :"\u0041\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u006fr\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0066\u0072\u006f\u006d\u0020w\u0068\u0069\u0063\u0068\u0020\u0074\u0068\u0069\u0073\u0020\u006f\u006e\u0065\u0020i\u0073\u0020\u0064e\u0072\u0069\u0076\u0065\u0064\u002e",Name :"D\u0065\u0072\u0069\u0076\u0065\u0064\u0046\u0072\u006f\u006d",ValueType :ValueTypeNameResourceRef },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0063\u006fm\u006d\u006f\u006e\u0020\u0069d\u0065\u006e\u0074\u0069\u0066\u0069e\u0072\u0020\u0066\u006f\u0072 \u0061\u006c\u006c\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0073 \u0061\u006e\u0064\u0020\u0072\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u0020o\u0066\u0020\u0061\u0020\u0072\u0065\u0073\u006fu\u0072\u0063\u0065",Name :"\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"UU\u0049\u0044 \u0062\u0061\u0073\u0065\u0064\u0020\u0069\u0064\u0065n\u0074\u0069\u0066\u0069\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0020\u0069\u006e\u0063\u0061\u0072\u006e\u0061\u0074i\u006fn\u0020\u006f\u0066\u0020\u0061\u0020\u0064\u006fc\u0075m\u0065\u006et",Name :"\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0063\u006fm\u006d\u006f\u006e\u0020\u0069d\u0065\u006e\u0074\u0069\u0066\u0069e\u0072\u0020\u0066\u006f\u0072 \u0061\u006c\u006c\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0073 \u0061\u006e\u0064\u0020\u0072\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u0020o\u0066\u0020\u0061\u0020\u0064\u006f\u0063\u0075m\u0065\u006e\u0074",Name :"\u004fr\u0069g\u0069\u006e\u0061\u006c\u0044o\u0063\u0075m\u0065\u006e\u0074\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 \u0072\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0020\u0063\u006c\u0061\u0073\u0073\u0020\u006e\u0061\u006d\u0065\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0069\u0073 \u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065",Name :"\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006eC\u006c\u0061\u0073\u0073",ValueType :ValueTypeNameRenditionClass },{Category :PropertyCategoryInternal ,Description :"\u0043\u0061n\u0020\u0062\u0065\u0020\u0075\u0073\u0065d\u0020t\u006f\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u0020\u0072\u0065\u006e\u0064\u0069t\u0069\u006f\u006e\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0074\u0068a\u0074 \u0061r\u0065\u0020\u0074o\u006f\u0020\u0063\u006f\u006d\u0070\u006c\u0065\u0078\u0020\u006f\u0072\u0020\u0076\u0065\u0072\u0062o\u0073\u0065\u0020\u0074\u006f\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0020\u0069\u006e",Name :"\u0052e\u006ed\u0069\u0074\u0069\u006f\u006e\u0050\u0061\u0072\u0061\u006d\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0076\u0065\u0072\u0073\u0069o\u006e\u0020\u0069\u0064\u0065\u006e\u0074i\u0066\u0069\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0074\u0068i\u0073\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u002e",Name :"\u0056e\u0072\u0073\u0069\u006f\u006e\u0049D",ValueType :ValueTypeNameText },{Category :PropertyCategoryExternal ,Description :"\u0054\u0068\u0065\u0020\u0076\u0065r\u0073\u0069\u006f\u006e\u0020\u0068\u0069\u0073\u0074\u006f\u0072\u0079\u0020\u0061\u0073\u0073\u006f\u0063\u0069\u0061t\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0020\u0074\u0068\u0069\u0073\u0020\u0072e\u0073o\u0075\u0072\u0063\u0065",Name :"\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u0073",ValueType :SeqOfValueTypeName (ValueTypeNameVersion )},{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0072\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0072\u0065\u0073\u006f\u0075r\u0063\u0065\u0027\u0073\u0020\u006d\u0061n\u0061\u0067\u0065\u0072",Name :"\u004da\u006e\u0061\u0067\u0065\u0072",ValueType :ValueTypeNameAgentName },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 \u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0027\u0073\u0020\u006d\u0061\u006e\u0061\u0067\u0065\u0072 \u0076\u0061\u0072\u0069\u0061\u006e\u0074\u002e",Name :"\u004d\u0061\u006e\u0061\u0067\u0065\u0072\u0056\u0061r\u0069\u0061\u006e\u0074",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 \u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0027\u0073\u0020\u006d\u0061\u006e\u0061\u0067\u0065\u0072 \u0076\u0061\u0072\u0069\u0061\u006e\u0074\u002e",Name :"\u004d\u0061\u006e\u0061\u0067\u0065\u0072\u0056\u0061r\u0069\u0061\u006e\u0074",ValueType :ValueTypeNameText }}}; // Schema is the pdfa extension schema. @@ -107,39 +110,36 @@ Schema string `xmp:"pdfaSchema:schema"`; Property Properties `xmp:"pdfaSchema:property"`; // ValueType is description of schema-specific value types. -ValueType ValueTypes `xmp:"pdfaSchema:valueType"`;}; - -// ValueTypeName is the name of the value type. -type ValueTypeName string ; +ValueType ValueTypes `xmp:"pdfaSchema:valueType"`;};const (ValueTypeResourceEvent ValueTypeName ="\u0052\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0045\u0076\u0065\u006e\u0074";); -// MarshalXMP implements xmp.Marshaler interface. -func (_cf ValueTypes )MarshalXMP (e *_g .Encoder ,node *_g .Node ,m _g .Model )error {return _g .MarshalArray (e ,node ,_cf .Typ (),_cf );};const (ValueTypeNameBoolean ValueTypeName ="\u0042o\u006f\u006c\u0065\u0061\u006e";ValueTypeNameDate ValueTypeName ="\u0044\u0061\u0074\u0065"; -ValueTypeNameInteger ValueTypeName ="\u0049n\u0074\u0065\u0067\u0065\u0072";ValueTypeNameReal ValueTypeName ="\u0052\u0065\u0061\u006c";ValueTypeNameText ValueTypeName ="\u0054\u0065\u0078\u0074";ValueTypeNameAgentName ValueTypeName ="\u0041g\u0065\u006e\u0074\u004e\u0061\u006de"; -ValueTypeNameProperName ValueTypeName ="\u0050\u0072\u006f\u0070\u0065\u0072\u004e\u0061\u006d\u0065";ValueTypeNameXPath ValueTypeName ="\u0058\u0050\u0061t\u0068";ValueTypeNameGUID ValueTypeName ="\u0047\u0055\u0049\u0044";ValueTypeNameLocale ValueTypeName ="\u004c\u006f\u0063\u0061\u006c\u0065"; -ValueTypeNameMIMEType ValueTypeName ="\u004d\u0049\u004d\u0045\u0054\u0079\u0070\u0065";ValueTypeNameRenditionClass ValueTypeName ="\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006eC\u006c\u0061\u0073\u0073";ValueTypeNameResourceRef ValueTypeName ="R\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0052\u0065\u0066"; -ValueTypeNameURL ValueTypeName ="\u0055\u0052\u004c";ValueTypeNameURI ValueTypeName ="\u0055\u0052\u0049";ValueTypeNameVersion ValueTypeName ="\u0056e\u0072\u0073\u0069\u006f\u006e";); +// MarshalText implements encoding.TextMarshaler interface. +func (_ae PropertyCategory )MarshalText ()([]byte ,error ){switch _ae {case PropertyCategoryInternal :return []byte ("\u0069\u006e\u0074\u0065\u0072\u006e\u0061\u006c"),nil ;case PropertyCategoryExternal :return []byte ("\u0065\u0078\u0074\u0065\u0072\u006e\u0061\u006c"),nil ; +case PropertyCategoryUndefined :return []byte (""),nil ;default:return nil ,_a .Errorf ("\u0075\u006ed\u0065\u0066\u0069\u006ee\u0064\u0020p\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0020c\u0061\u0074\u0065\u0067\u006f\u0072\u0079\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_ae ); +};}; -// MarshalXMP implements xmp.Marshaler interface. -func (_aee Schemas )MarshalXMP (e *_g .Encoder ,node *_g .Node ,m _g .Model )error {return _g .MarshalArray (e ,node ,_aee .Typ (),_aee );}; +// SyncFromXMP implements xmp.Model interface. +func (_dc *Model )SyncFromXMP (d *_cd .Document )error {return nil };var (Namespace =_cd .NewNamespace ("\u0070\u0064\u0066\u0061\u0045\u0078\u0074\u0065\u006e\u0073\u0069\u006f\u006e","\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0077\u0077\u0077\u002e\u0061\u0069\u0069\u006d\u002e\u006f\u0072\u0067\u002f\u0070\u0064\u0066\u0061/\u006e\u0073\u002f\u0065\u0078t\u0065\u006es\u0069\u006f\u006e\u002f",NewModel ); +SchemaNS =_cd .NewNamespace ("\u0070\u0064\u0066\u0061\u0053\u0063\u0068\u0065\u006d\u0061","h\u0074\u0074\u0070\u003a\u002f\u002fw\u0077\u0077\u002e\u0061\u0069\u0069m\u002e\u006f\u0072\u0067\u002f\u0070\u0064f\u0061\u002f\u006e\u0073\u002f\u0073\u0063\u0068\u0065\u006da\u0023",nil ); +PropertyNS =_cd .NewNamespace ("\u0070\u0064\u0066a\u0050\u0072\u006f\u0070\u0065\u0072\u0074\u0079","\u0068\u0074t\u0070\u003a\u002f\u002fw\u0077\u0077.\u0061\u0069\u0069\u006d\u002e\u006f\u0072\u0067/\u0070\u0064\u0066\u0061\u002f\u006e\u0073\u002f\u0070\u0072\u006f\u0070e\u0072\u0074\u0079\u0023",nil ); +ValueTypeNS =_cd .NewNamespace ("\u0070\u0064\u0066\u0061\u0054\u0079\u0070\u0065","\u0068\u0074\u0074\u0070\u003a\u002f/\u0077\u0077\u0077\u002e\u0061\u0069\u0069\u006d\u002e\u006f\u0072\u0067\u002fp\u0064\u0066\u0061\u002f\u006e\u0073\u002ft\u0079\u0070\u0065\u0023",nil ); +FieldNS =_cd .NewNamespace ("\u0070d\u0066\u0061\u0046\u0069\u0065\u006cd","\u0068\u0074\u0074p:\u002f\u002f\u0077\u0077\u0077\u002e\u0061\u0069\u0069m\u002eo\u0072g\u002fp\u0064\u0066\u0061\u002f\u006e\u0073\u002f\u0066\u0069\u0065\u006c\u0064\u0023",nil ); +); -// BagOfValueTypeName gets the ValueTypeName of the bag of provided value type names. -func BagOfValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0062\u0061\u0067\u0020"+vt }; +// SeqOfValueTypeName gets a value type name of a sequence of input value type names. +func SeqOfValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0073\u0065\u0071\u0020"+vt };func (_ef Schemas )Typ ()_cd .ArrayType {return _cd .ArrayTypeUnordered };var PdfSchema =Schema {NamespaceURI :"\u0068\u0074\u0074\u0070:\u002f\u002f\u006e\u0073\u002e\u0061\u0064\u006f\u0062\u0065.\u0063o\u006d\u002f\u0070\u0064\u0066\u002f\u0031.\u0033\u002f",Prefix :"\u0070\u0064\u0066",Schema :"\u0041\u0064o\u0062\u0065\u0020P\u0044\u0046\u0020\u0053\u0063\u0068\u0065\u006d\u0061",Property :Properties {{Category :PropertyCategoryInternal ,Description :"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",Name :"\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0050\u0044F\u0020\u0066\u0069l\u0065\u0020\u0076e\u0072\u0073\u0069\u006f\u006e\u0020\u0028\u0066\u006f\u0072 \u0065\u0078\u0061\u006d\u0070le\u003a\u0020\u0031\u002e\u0030\u002c\u0020\u0031\u002e\u0033\u002c\u0020\u0061\u006e\u0064\u0020\u0073\u006f\u0020\u006f\u006e\u0029\u002e",Name :"\u0050\u0044\u0046\u0056\u0065\u0072\u0073\u0069\u006f\u006e",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u006ea\u006d\u0065\u0020\u006f\u0066\u0020\u0074\u0068\u0065\u0020\u0074\u006f\u006fl\u0020\u0074\u0068\u0061\u0074\u0020\u0063\u0072\u0065\u0061\u0074\u0065\u0064\u0020\u0074\u0068\u0065\u0020\u0050\u0044\u0046\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074.",Name :"\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",ValueType :ValueTypeNameAgentName },{Category :PropertyCategoryInternal ,Description :"\u0049\u006e\u0064\u0069\u0063\u0061\u0074\u0065\u0073\u0020\u0074\u0068\u0061\u0074\u0020\u0074\u0068\u0069s\u0020\u0069\u0073\u0020\u0061\u0020\u0072i\u0067\u0068\u0074\u0073\u002d\u006d\u0061\u006e\u0061\u0067\u0065d\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u002e\u002e",Name :"\u004d\u0061\u0072\u006b\u0065\u0064",ValueType :ValueTypeNameBoolean }}}; -// FillModel fills in the document XMP model. -func FillModel (d *_g .Document ,extModel *Model )error {var _c []*_g .Namespace ;for _ ,_dc :=range d .Namespaces (){_c =append (_c ,_dc );};_ed .Slice (_c ,func (_gg ,_ec int )bool {return _c [_gg ].Name < _c [_ec ].Name });for _ ,_ee :=range _c {switch _ee {case Namespace ,SchemaNS ,PropertyNS ,ValueTypeNS ,FieldNS ,_ge .NsXmp ,_a .NsDc :continue ; -default:_dd ,_bb :=GetSchema (_ee .URI );if !_bb {continue ;};_cd :=d .FindModel (_ee );_fg :=*_dd ;_fg .Property =Properties {};for _ ,_da :=range _dd .Property {_feg :=_ebe (_cd ,_ee ,_da );if _feg {_fg .Property =append (_fg .Property ,_da );};};if len (_fg .Property )==0{continue ; -};var _fgf bool ;for _ce ,_gc :=range extModel .Schemas {if _gc .Schema ==_fg .Schema {_fgf =true ;extModel .Schemas [_ce ]=_fg ;break ;};};if !_fgf {extModel .Schemas =append (extModel .Schemas ,_fg );};};};return nil ;}; -// ClosedChoiceValueTypeName gets the closed choice of provided value type name. -func ClosedChoiceValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0043\u006c\u006f\u0073\u0065\u0064\u0020\u0043\u0068\u006f\u0069\u0063e\u0020\u006f\u0066\u0020"+vt ;};func (_fgd Schemas )Typ ()_g .ArrayType {return _g .ArrayTypeUnordered }; +// FieldValueType is a schema that describes a field in a structured type. +type FieldValueType struct{Name string `xmp:"pdfaField:description"`;Description string `xmp:"pdfaField:name"`;ValueType ValueTypeName `xmp:"pdfaField:valueType"`;}; -// SetSchema sets the schema into given model. -func (_ca *Model )SetSchema (namespaceURI string ,s Schema ){for _aebg :=0;_aebg < len (_ca .Schemas );_aebg ++{if _ca .Schemas [_aebg ].NamespaceURI ==namespaceURI {_ca .Schemas [_aebg ]=s ;return ;};};_ca .Schemas =append (_ca .Schemas ,s );};func _ebe (_bf _g .Model ,_fa *_g .Namespace ,_aeb Property )bool {_ece :=_d .ValueOf (_bf ).Elem (); -if _ece .Kind ()==_d .Ptr {_ece =_ece .Elem ();};_ebg :=_ece .Type ();for _dbc :=0;_dbc < _ebg .NumField ();_dbc ++{_fd :=_ebg .Field (_dbc );_dba :=_fd .Tag .Get ("\u0078\u006d\u0070");if _dba ==""{continue ;};if !_fc .HasPrefix (_dba ,_fa .Name ){continue ; -};_eba :=_fc .IndexRune (_dba ,':');if _eba ==-1{continue ;};_dg :=_dba [_eba +1:];if _dg ==_aeb .Name {_ab :=_ece .Field (_dbc );return !_ab .IsZero ();};};return false ;}; +// FillModel fills in the document XMP model. +func FillModel (d *_cd .Document ,extModel *Model )error {var _ce []*_cd .Namespace ;for _ ,_bge :=range d .Namespaces (){_ce =append (_ce ,_bge );};_e .Slice (_ce ,func (_ga ,_ag int )bool {return _ce [_ga ].Name < _ce [_ag ].Name });for _ ,_dg :=range _ce {switch _dg {case Namespace ,SchemaNS ,PropertyNS ,ValueTypeNS ,FieldNS ,_g .NsXmp ,_afe .NsDc :continue ; +default:_edg ,_ca :=GetSchema (_dg .URI );if !_ca {continue ;};_cdd :=d .FindModel (_dg );_afa :=*_edg ;_afa .Property =Properties {};for _ ,_cf :=range _edg .Property {_cef :=_afb (_cdd ,_dg ,_cf );if _cef {_afa .Property =append (_afa .Property ,_cf ); +};};if len (_afa .Property )==0{continue ;};var _ee bool ;for _gf ,_fg :=range extModel .Schemas {if _fg .Schema ==_afa .Schema {_ee =true ;extModel .Schemas [_gf ]=_afa ;break ;};};if !_ee {extModel .Schemas =append (extModel .Schemas ,_afa );};};};return nil ; +}; -// Namespaces implements xmp.Model interface. -func (_aa *Model )Namespaces ()_g .NamespaceList {return _g .NamespaceList {Namespace }}; +// Schemas is the array of xmp metadata extension resources. +type Schemas []Schema ; // Property is a schema that describes single property. type Property struct{ @@ -154,28 +154,29 @@ Description string `xmp:"pdfaProperty:description"`; Name string `xmp:"pdfaProperty:name"`; // ValueType is the property value type. -ValueType ValueTypeName `xmp:"pdfaProperty:valueType"`;}; +ValueType ValueTypeName `xmp:"pdfaProperty:valueType"`;};var FieldResourceEventSchema =Schema {NamespaceURI :"\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u006es\u002e\u0061\u0064ob\u0065\u002e\u0063\u006f\u006d\u002fx\u0061\u0070\u002f\u0031\u002e\u0030\u002f\u0073\u0054\u0079\u0070\u0065\u002f\u0052\u0065s\u006f\u0075\u0072\u0063\u0065\u0045\u0076\u0065n\u0074\u0023",Prefix :"\u0073\u0074\u0045v\u0074",Schema :"\u0044e\u0066\u0069n\u0069\u0074\u0069\u006fn\u0020\u006f\u0066 \u0062\u0061\u0073\u0069\u0063\u0020\u0076\u0061\u006cue\u0020\u0074\u0079p\u0065\u0020R\u0065\u0073\u006f\u0075\u0072\u0063e\u0045\u0076e\u006e\u0074",Property :[]Property {{Category :PropertyCategoryInternal ,Description :"\u0054he\u0020a\u0063t\u0069\u006f\u006e\u0020\u0074\u0068a\u0074\u0020\u006f\u0063c\u0075\u0072\u0072\u0065\u0064\u002e\u0020\u0044\u0065\u0066\u0069\u006e\u0065d \u0076\u0061\u006c\u0075\u0065\u0073\u0020\u0061\u0072\u0065\u003a\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0065d\u002c \u0063\u006f\u0070\u0069\u0065\u0064\u002c\u0020\u0063\u0072\u0065\u0061\u0074e\u0064\u002c \u0063\u0072\u006fp\u0070\u0065\u0064\u002c\u0020\u0065\u0064\u0069\u0074ed\u002c\u0020\u0066i\u006c\u002d\u0074\u0065r\u0065\u0064\u002c\u0020\u0066\u006fr\u006d\u0061t\u0074\u0065\u0064\u002c\u0020\u0076\u0065\u0072s\u0069\u006f\u006e\u005f\u0075\u0070\u0064\u0061\u0074\u0065\u0064\u002c\u0020\u0070\u0072\u0069\u006e\u0074\u0065\u0064\u002c\u0020\u0070ubli\u0073\u0068\u0065\u0064\u002c\u0020\u006d\u0061\u006e\u0061\u0067\u0065\u0064\u002c\u0020\u0070\u0072\u006f\u0064\u0075\u0063\u0065\u0064\u002c\u0020\u0072\u0065\u0073i\u007ae\u0064.\u004e\u0065\u0077\u0020\u0076\u0061\u006c\u0075\u0065\u0073\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0062\u0065 \u0076\u0065r\u0062\u0073 \u0069n\u0020\u0074\u0068\u0065\u0020\u0070a\u0073\u0074\u0020\u0074\u0065\u006e\u0073\u0065\u002e",Name :"\u0061\u0063\u0074\u0069\u006f\u006e",ValueType :"O\u0070\u0065\u006e\u0020\u0043\u0068\u006f\u0069\u0063\u0065"},{Category :PropertyCategoryInternal ,Description :"T\u0068\u0065\u0020\u0069\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0020\u0049\u0044\u0020\u006f\u0066\u0020t\u0068\u0065\u0020\u006d\u006f\u0064\u0069\u0066\u0069\u0065d \u0072\u0065\u0073o\u0075r\u0063\u0065",Name :"\u0069\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"\u0041\u0064di\u0074\u0069\u006fn\u0061\u006c\u0020\u0064esc\u0072ip\u0074\u0069\u006f\u006e\u0020\u006f\u0066 t\u0068\u0065\u0020\u0061\u0063\u0074\u0069o\u006e",Name :"\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054h\u0065\u0020s\u006f\u0066\u0074\u0077a\u0072\u0065\u0020a\u0067\u0065\u006e\u0074\u0020\u0074\u0068\u0061\u0074 p\u0065\u0072\u0066o\u0072\u006de\u0064\u0020\u0074\u0068\u0065\u0020a\u0063\u0074i\u006f\u006e",Name :"\u0073\u006f\u0066\u0074\u0077\u0061\u0072\u0065\u0041\u0067\u0065\u006e\u0074",ValueType :ValueTypeNameAgentName },{Category :PropertyCategoryInternal ,Description :"\u004f\u0070t\u0069\u006f\u006e\u0061\u006c\u0020\u0074\u0069\u006d\u0065\u0073\u0074\u0061\u006d\u0070\u0020\u006f\u0066\u0020\u0077\u0068\u0065\u006e\u0020\u0074\u0068\u0065\u0020\u0061\u0063\u0074\u0069\u006f\u006e\u0020\u006f\u0063\u0063\u0075\u0072\u0072\u0065\u0064",Name :"\u0077\u0068\u0065\u006e",ValueType :ValueTypeNameDate }},ValueType :nil }; -// SyncToXMP implements xmp.Model interface. -func (_efg *Model )SyncToXMP (d *_g .Document )error {return nil }; -// AltOfValueTypeName gets the ValueTypeName of the alt of given value type names. -func AltOfValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0061\u006c\u0074\u0020"+vt }; +// UnmarshalXMP implements xmp.Unmarshaler interface. +func (_eff *Properties )UnmarshalXMP (d *_cd .Decoder ,node *_cd .Node ,m _cd .Model )error {return _cd .UnmarshalArray (d ,node ,_eff .Typ (),_eff );}; -// MarshalText implements encoding.TextMarshaler interface. -func (_fcb PropertyCategory )MarshalText ()([]byte ,error ){switch _fcb {case PropertyCategoryInternal :return []byte ("\u0069\u006e\u0074\u0065\u0072\u006e\u0061\u006c"),nil ;case PropertyCategoryExternal :return []byte ("\u0065\u0078\u0074\u0065\u0072\u006e\u0061\u006c"),nil ; -case PropertyCategoryUndefined :return []byte (""),nil ;default:return nil ,_f .Errorf ("\u0075\u006ed\u0065\u0066\u0069\u006ee\u0064\u0020p\u0072\u006f\u0070\u0065\u0072\u0074\u0079\u0020c\u0061\u0074\u0065\u0067\u006f\u0072\u0079\u0020\u0076\u0061\u006c\u0075e\u003a\u0020\u0025\u0076",_fcb ); -};}; +// MarshalXMP implements xmp.Marshaler interface. +func (_bfc Schemas )MarshalXMP (e *_cd .Encoder ,node *_cd .Node ,m _cd .Model )error {return _cd .MarshalArray (e ,node ,_bfc .Typ (),_bfc );}; -// IsZero checks if the resources list has no entries. -func (_cgc Schemas )IsZero ()bool {return len (_cgc )==0}; +// RegisterSchema registers schema extension definition. +func RegisterSchema (ns *_cd .Namespace ,schema *Schema ){_bgf .Lock ();defer _bgf .Unlock ();_fge [ns .URI ]=schema ;}; -// Typ gets array type of the field value types. -func (_fef ValueTypes )Typ ()_g .ArrayType {return _g .ArrayTypeOrdered }; +// UnmarshalXMP implements xmp.Unmarshaler interface. +func (_ebc *ValueTypes )UnmarshalXMP (d *_cd .Decoder ,node *_cd .Node ,m _cd .Model )error {return _cd .UnmarshalArray (d ,node ,_ebc .Typ (),_ebc );}; -// RegisterSchema registers schema extension definition. -func RegisterSchema (ns *_g .Namespace ,schema *Schema ){_fb .Lock ();defer _fb .Unlock ();_ggg [ns .URI ]=schema ;};var XmpMediaManagementSchema =Schema {NamespaceURI :"\u0068\u0074\u0074p\u003a\u002f\u002f\u006es\u002e\u0061\u0064\u006f\u0062\u0065\u002ec\u006f\u006d\u002f\u0078\u0061\u0070\u002f\u0031\u002e\u0030\u002f\u006d\u006d\u002f",Prefix :"\u0078\u006d\u0070M\u004d",Schema :"X\u004dP\u0020\u004d\u0065\u0064\u0069\u0061\u0020\u004da\u006e\u0061\u0067\u0065me\u006e\u0074",Property :[]Property {{Category :PropertyCategoryInternal ,Description :"\u0041\u0020\u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0020\u0074\u006f\u0020\u0074\u0068\u0065\u0020\u006fr\u0069\u0067\u0069\u006e\u0061\u006c\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0066\u0072\u006f\u006d\u0020w\u0068\u0069\u0063\u0068\u0020\u0074\u0068\u0069\u0073\u0020\u006f\u006e\u0065\u0020i\u0073\u0020\u0064e\u0072\u0069\u0076\u0065\u0064\u002e",Name :"D\u0065\u0072\u0069\u0076\u0065\u0064\u0046\u0072\u006f\u006d",ValueType :ValueTypeNameResourceRef },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0063\u006fm\u006d\u006f\u006e\u0020\u0069d\u0065\u006e\u0074\u0069\u0066\u0069e\u0072\u0020\u0066\u006f\u0072 \u0061\u006c\u006c\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0073 \u0061\u006e\u0064\u0020\u0072\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u0020o\u0066\u0020\u0061\u0020\u0072\u0065\u0073\u006fu\u0072\u0063\u0065",Name :"\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"UU\u0049\u0044 \u0062\u0061\u0073\u0065\u0064\u0020\u0069\u0064\u0065n\u0074\u0069\u0066\u0069\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0073\u0070\u0065\u0063\u0069\u0066\u0069\u0063\u0020\u0069\u006e\u0063\u0061\u0072\u006e\u0061\u0074i\u006fn\u0020\u006f\u0066\u0020\u0061\u0020\u0064\u006fc\u0075m\u0065\u006et",Name :"\u0049\u006e\u0073\u0074\u0061\u006e\u0063\u0065\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0063\u006fm\u006d\u006f\u006e\u0020\u0069d\u0065\u006e\u0074\u0069\u0066\u0069e\u0072\u0020\u0066\u006f\u0072 \u0061\u006c\u006c\u0020\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u0073 \u0061\u006e\u0064\u0020\u0072\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0073\u0020o\u0066\u0020\u0061\u0020\u0064\u006f\u0063\u0075m\u0065\u006e\u0074",Name :"\u004fr\u0069g\u0069\u006e\u0061\u006c\u0044o\u0063\u0075m\u0065\u006e\u0074\u0049\u0044",ValueType :ValueTypeNameURI },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 \u0072\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006e\u0020\u0063\u006c\u0061\u0073\u0073\u0020\u006e\u0061\u006d\u0065\u0020\u0066\u006f\u0072\u0020\u0074\u0068\u0069\u0073 \u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065",Name :"\u0052\u0065\u006e\u0064\u0069\u0074\u0069\u006f\u006eC\u006c\u0061\u0073\u0073",ValueType :ValueTypeNameRenditionClass },{Category :PropertyCategoryInternal ,Description :"\u0043\u0061n\u0020\u0062\u0065\u0020\u0075\u0073\u0065d\u0020t\u006f\u0020\u0070r\u006f\u0076\u0069\u0064\u0065\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006f\u006e\u0061\u006c\u0020\u0072\u0065\u006e\u0064\u0069t\u0069\u006f\u006e\u0020\u0070\u0061\u0072\u0061\u006d\u0065\u0074\u0065\u0072\u0073\u0020\u0074\u0068a\u0074 \u0061r\u0065\u0020\u0074o\u006f\u0020\u0063\u006f\u006d\u0070\u006c\u0065\u0078\u0020\u006f\u0072\u0020\u0076\u0065\u0072\u0062o\u0073\u0065\u0020\u0074\u006f\u0020\u0065\u006e\u0063\u006f\u0064\u0065\u0020\u0069\u006e",Name :"\u0052e\u006ed\u0069\u0074\u0069\u006f\u006e\u0050\u0061\u0072\u0061\u006d\u0073",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0064\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u0020\u0076\u0065\u0072\u0073\u0069o\u006e\u0020\u0069\u0064\u0065\u006e\u0074i\u0066\u0069\u0065\u0072\u0020\u0066\u006f\u0072\u0020\u0074\u0068i\u0073\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u002e",Name :"\u0056e\u0072\u0073\u0069\u006f\u006e\u0049D",ValueType :ValueTypeNameText },{Category :PropertyCategoryExternal ,Description :"\u0054\u0068\u0065\u0020\u0076\u0065r\u0073\u0069\u006f\u006e\u0020\u0068\u0069\u0073\u0074\u006f\u0072\u0079\u0020\u0061\u0073\u0073\u006f\u0063\u0069\u0061t\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0020\u0074\u0068\u0069\u0073\u0020\u0072e\u0073o\u0075\u0072\u0063\u0065",Name :"\u0056\u0065\u0072\u0073\u0069\u006f\u006e\u0073",ValueType :SeqOfValueTypeName (ValueTypeNameVersion )},{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065\u0020\u0072\u0065f\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0072\u0065\u0073\u006f\u0075r\u0063\u0065\u0027\u0073\u0020\u006d\u0061n\u0061\u0067\u0065\u0072",Name :"\u004da\u006e\u0061\u0067\u0065\u0072",ValueType :ValueTypeNameAgentName },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 \u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0027\u0073\u0020\u006d\u0061\u006e\u0061\u0067\u0065\u0072 \u0076\u0061\u0072\u0069\u0061\u006e\u0074\u002e",Name :"\u004d\u0061\u006e\u0061\u0067\u0065\u0072\u0056\u0061r\u0069\u0061\u006e\u0074",ValueType :ValueTypeNameText },{Category :PropertyCategoryInternal ,Description :"\u0054\u0068\u0065 \u0072\u0065\u0066\u0065\u0072\u0065\u006e\u0063\u0065\u0064\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u0027\u0073\u0020\u006d\u0061\u006e\u0061\u0067\u0065\u0072 \u0076\u0061\u0072\u0069\u0061\u006e\u0074\u002e",Name :"\u004d\u0061\u006e\u0061\u0067\u0065\u0072\u0056\u0061r\u0069\u0061\u006e\u0074",ValueType :ValueTypeNameText }}}; +// IsZero checks if the resources list has no entries. +func (_dcg Schemas )IsZero ()bool {return len (_dcg )==0}; + +// AltOfValueTypeName gets the ValueTypeName of the alt of given value type names. +func AltOfValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0061\u006c\u0074\u0020"+vt }; +// Properties is a list of properties. +type Properties []Property ; -// PropertyCategory is the property category enumerator. -type PropertyCategory int ; \ No newline at end of file +// BagOfValueTypeName gets the ValueTypeName of the bag of provided value type names. +func BagOfValueTypeName (vt ValueTypeName )ValueTypeName {return "\u0062\u0061\u0067\u0020"+vt }; \ No newline at end of file diff --git a/model/xmputil/pdfaid/pdfaid.go b/model/xmputil/pdfaid/pdfaid.go index 960e15d0e..ebdaabbea 100644 --- a/model/xmputil/pdfaid/pdfaid.go +++ b/model/xmputil/pdfaid/pdfaid.go @@ -9,40 +9,39 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package pdfaid ;import (_gd "fmt";_e "github.com/trimmer-io/go-xmp/xmp";_b "github.com/unidoc/unipdf/v3/model/xmputil/pdfaextension";); +package pdfaid ;import (_d "fmt";_f "github.com/trimmer-io/go-xmp/xmp";_b "github.com/unidoc/unipdf/v3/model/xmputil/pdfaextension";);var _ _f .Model =(*Model )(nil );func init (){_f .Register (Namespace ,_f .XmpMetadata );_b .RegisterSchema (Namespace ,&Schema )}; -// Namespaces implements xmp.Model interface. -func (_gdb *Model )Namespaces ()_e .NamespaceList {return _e .NamespaceList {Namespace }};func init (){_e .Register (Namespace ,_e .XmpMetadata );_b .RegisterSchema (Namespace ,&Schema )}; // SyncModel implements xmp.Model interface. -func (_ec *Model )SyncModel (d *_e .Document )error {return nil }; +func (_aa *Model )SyncModel (d *_f .Document )error {return nil };var Namespace =_f .NewNamespace ("\u0070\u0064\u0066\u0061\u0069\u0064","\u0068\u0074\u0074p\u003a\u002f\u002f\u0077w\u0077\u002e\u0061\u0069\u0069\u006d\u002eo\u0072\u0067\u002f\u0070\u0064\u0066\u0061\u002f\u006e\u0073\u002f\u0069\u0064\u002f",NewModel ); -// SyncToXMP implements xmp.Model interface. -func (_fc *Model )SyncToXMP (d *_e .Document )error {return nil }; + +// GetTag implements xmp.Model interface. +func (_fb *Model )GetTag (tag string )(string ,error ){_ga ,_fbg :=_f .GetNativeField (_fb ,tag );if _fbg !=nil {return "",_d .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_fbg );};return _ga ,nil ;}; // Can implements xmp.Model interface. -func (_ba *Model )Can (nsName string )bool {return Namespace .GetName ()==nsName }; +func (_ea *Model )Can (nsName string )bool {return Namespace .GetName ()==nsName }; -// GetTag implements xmp.Model interface. -func (_bac *Model )GetTag (tag string )(string ,error ){_cfa ,_de :=_e .GetNativeField (_bac ,tag );if _de !=nil {return "",_gd .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_de );};return _cfa ,nil ;};var _ _e .Model =(*Model )(nil ); +// SyncFromXMP implements xmp.Model interface. +func (_cb *Model )SyncFromXMP (d *_f .Document )error {return nil }; +// NewModel creates a new model. +func NewModel (name string )_f .Model {return &Model {}}; // MakeModel gets or create sa new model for PDF/A ID namespace. -func MakeModel (d *_e .Document )(*Model ,error ){_d ,_f :=d .MakeModel (Namespace );if _f !=nil {return nil ,_f ;};return _d .(*Model ),nil ;}; - -// SetTag implements xmp.Model interface. -func (_df *Model )SetTag (tag ,value string )error {if _eac :=_e .SetNativeField (_df ,tag ,value );_eac !=nil {return _gd .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_eac );};return nil ;}; +func MakeModel (d *_f .Document )(*Model ,error ){_c ,_e :=d .MakeModel (Namespace );if _e !=nil {return nil ,_e ;};return _c .(*Model ),nil ;}; -// SyncFromXMP implements xmp.Model interface. -func (_cf *Model )SyncFromXMP (d *_e .Document )error {return nil };var Namespace =_e .NewNamespace ("\u0070\u0064\u0066\u0061\u0069\u0064","\u0068\u0074\u0074p\u003a\u002f\u002f\u0077w\u0077\u002e\u0061\u0069\u0069\u006d\u002eo\u0072\u0067\u002f\u0070\u0064\u0066\u0061\u002f\u006e\u0073\u002f\u0069\u0064\u002f",NewModel ); -var Schema =_b .Schema {NamespaceURI :Namespace .URI ,Prefix :Namespace .Name ,Schema :"\u0050D\u0046/\u0041\u0020\u0049\u0044\u0020\u0053\u0063\u0068\u0065\u006d\u0061",Property :[]_b .Property {{Category :_b .PropertyCategoryInternal ,Description :"\u0050\u0061\u0072\u0074 o\u0066\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0073\u0074\u0061\u006e\u0064\u0061r\u0064",Name :"\u0070\u0061\u0072\u0074",ValueType :_b .ValueTypeNameInteger },{Category :_b .PropertyCategoryInternal ,Description :"A\u006d\u0065\u006e\u0064\u006d\u0065n\u0074\u0020\u006f\u0066\u0020\u0050\u0044\u0046\u002fA\u0020\u0073\u0074a\u006ed\u0061\u0072\u0064",Name :"\u0061\u006d\u0064",ValueType :_b .ValueTypeNameText },{Category :_b .PropertyCategoryInternal ,Description :"C\u006f\u006e\u0066\u006f\u0072\u006da\u006e\u0063\u0065\u0020\u006c\u0065v\u0065\u006c\u0020\u006f\u0066\u0020\u0050D\u0046\u002f\u0041\u0020\u0073\u0074\u0061\u006e\u0064\u0061r\u0064",Name :"c\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065",ValueType :_b .ValueTypeNameText }},ValueType :nil }; +// Model is the XMP model for the PdfA metadata. +type Model struct{Part int `xmp:"pdfaid:part"`;Conformance string `xmp:"pdfaid:conformance"`;}; +// SyncToXMP implements xmp.Model interface. +func (_fc *Model )SyncToXMP (d *_f .Document )error {return nil }; -// NewModel creates a new model. -func NewModel (name string )_e .Model {return &Model {}}; +// SetTag implements xmp.Model interface. +func (_bc *Model )SetTag (tag ,value string )error {if _bf :=_f .SetNativeField (_bc ,tag ,value );_bf !=nil {return _d .Errorf ("\u0025\u0073\u003a\u0020\u0025\u0076",Namespace .GetName (),_bf );};return nil ;}; // CanTag implements xmp.Model interface. -func (_a *Model )CanTag (tag string )bool {_ ,_ag :=_e .GetNativeField (_a ,tag );return _ag ==nil }; +func (_bg *Model )CanTag (tag string )bool {_ ,_ba :=_f .GetNativeField (_bg ,tag );return _ba ==nil }; -// Model is the XMP model for the PdfA metadata. -type Model struct{Part int `xmp:"pdfaid:part"`;Conformance string `xmp:"pdfaid:conformance"`;}; \ No newline at end of file +// Namespaces implements xmp.Model interface. +func (_dab *Model )Namespaces ()_f .NamespaceList {return _f .NamespaceList {Namespace }};var Schema =_b .Schema {NamespaceURI :Namespace .URI ,Prefix :Namespace .Name ,Schema :"\u0050D\u0046/\u0041\u0020\u0049\u0044\u0020\u0053\u0063\u0068\u0065\u006d\u0061",Property :[]_b .Property {{Category :_b .PropertyCategoryInternal ,Description :"\u0050\u0061\u0072\u0074 o\u0066\u0020\u0050\u0044\u0046\u002f\u0041\u0020\u0073\u0074\u0061\u006e\u0064\u0061r\u0064",Name :"\u0070\u0061\u0072\u0074",ValueType :_b .ValueTypeNameInteger },{Category :_b .PropertyCategoryInternal ,Description :"A\u006d\u0065\u006e\u0064\u006d\u0065n\u0074\u0020\u006f\u0066\u0020\u0050\u0044\u0046\u002fA\u0020\u0073\u0074a\u006ed\u0061\u0072\u0064",Name :"\u0061\u006d\u0064",ValueType :_b .ValueTypeNameText },{Category :_b .PropertyCategoryInternal ,Description :"C\u006f\u006e\u0066\u006f\u0072\u006da\u006e\u0063\u0065\u0020\u006c\u0065v\u0065\u006c\u0020\u006f\u0066\u0020\u0050D\u0046\u002f\u0041\u0020\u0073\u0074\u0061\u006e\u0064\u0061r\u0064",Name :"c\u006f\u006e\u0066\u006f\u0072\u006d\u0061\u006e\u0063\u0065",ValueType :_b .ValueTypeNameText }},ValueType :nil }; diff --git a/model/xmputil/xmputil.go b/model/xmputil/xmputil.go index b8f2d8e5d..a02b4b374 100644 --- a/model/xmputil/xmputil.go +++ b/model/xmputil/xmputil.go @@ -10,62 +10,68 @@ // terms that can be accessed at https://unidoc.io/eula/ // Package xmputil provides abstraction used by the pdf document XMP Metadata. -package xmputil ;import (_f "errors";_cf "fmt";_c "github.com/trimmer-io/go-xmp/models/pdf";_ge "github.com/trimmer-io/go-xmp/models/xmp_mm";_b "github.com/trimmer-io/go-xmp/xmp";_a "github.com/unidoc/unipdf/v3/core";_ca "github.com/unidoc/unipdf/v3/internal/timeutils"; -_fe "github.com/unidoc/unipdf/v3/internal/uuid";_cg "github.com/unidoc/unipdf/v3/model/xmputil/pdfaextension";_fd "github.com/unidoc/unipdf/v3/model/xmputil/pdfaid";_d "strconv";_g "time";); +package xmputil ;import (_fg "errors";_gf "fmt";_b "github.com/trimmer-io/go-xmp/models/pdf";_fe "github.com/trimmer-io/go-xmp/models/xmp_mm";_f "github.com/trimmer-io/go-xmp/xmp";_ea "github.com/unidoc/unipdf/v3/core";_bb "github.com/unidoc/unipdf/v3/internal/timeutils"; +_a "github.com/unidoc/unipdf/v3/internal/uuid";_dd "github.com/unidoc/unipdf/v3/model/xmputil/pdfaextension";_eg "github.com/unidoc/unipdf/v3/model/xmputil/pdfaid";_g "strconv";_d "time";); -// Marshal the document into xml byte stream. -func (_ab *Document )Marshal ()([]byte ,error ){if _ab ._gf .IsDirty (){if _cfd :=_ab ._gf .SyncModels ();_cfd !=nil {return nil ,_cfd ;};};return _b .Marshal (_ab ._gf );}; +// GetPdfInfo gets the document pdf info. +func (_feg *Document )GetPdfInfo ()(*PdfInfo ,bool ){_eba ,_ec :=_feg ._c .FindModel (_b .NsPDF ).(*_b .PDFInfo );if !_ec {return nil ,false ;};_eac :=PdfInfo {};var _ead *_ea .PdfObjectDictionary ;_eac .Copyright =_eba .Copyright ;_eac .PdfVersion =_eba .PDFVersion ; +_eac .Marked =bool (_eba .Marked );_ad :=func (_acb string ,_abg _ea .PdfObject ){if _ead ==nil {_ead =_ea .MakeDict ();};_ead .Set (_ea .PdfObjectName (_acb ),_abg );};if len (_eba .Title )> 0{_ad ("\u0054\u0069\u0074l\u0065",_ea .MakeString (_eba .Title .Default ())); +};if len (_eba .Author )> 0{_ad ("\u0041\u0075\u0074\u0068\u006f\u0072",_ea .MakeString (_eba .Author [0]));};if _eba .Keywords !=""{_ad ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",_ea .MakeString (_eba .Keywords ));};if len (_eba .Subject )> 0{_ad ("\u0053u\u0062\u006a\u0065\u0063\u0074",_ea .MakeString (_eba .Subject .Default ())); +};if _eba .Creator !=""{_ad ("\u0043r\u0065\u0061\u0074\u006f\u0072",_ea .MakeString (string (_eba .Creator )));};if _eba .Producer !=""{_ad ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",_ea .MakeString (string (_eba .Producer )));};if _eba .Trapped {_ad ("\u0054r\u0061\u0070\u0070\u0065\u0064",_ea .MakeName ("\u0054\u0072\u0075\u0065")); +};if !_eba .CreationDate .IsZero (){_ad ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_ea .MakeString (_bb .FormatPdfTime (_eba .CreationDate .Value ())));};if !_eba .ModifyDate .IsZero (){_ad ("\u004do\u0064\u0044\u0061\u0074\u0065",_ea .MakeString (_bb .FormatPdfTime (_eba .ModifyDate .Value ()))); +};_eac .InfoDict =_ead ;return &_eac ,true ;}; // MarshalIndent the document into xml byte stream with predefined prefix and indent. -func (_eg *Document )MarshalIndent (prefix ,indent string )([]byte ,error ){if _eg ._gf .IsDirty (){if _de :=_eg ._gf .SyncModels ();_de !=nil {return nil ,_de ;};};return _b .MarshalIndent (_eg ._gf ,prefix ,indent );}; +func (_gfe *Document )MarshalIndent (prefix ,indent string )([]byte ,error ){if _gfe ._c .IsDirty (){if _cf :=_gfe ._c .SyncModels ();_cf !=nil {return nil ,_cf ;};};return _f .MarshalIndent (_gfe ._c ,prefix ,indent );}; -// SetPdfInfo sets the pdf info into selected document. -func (_bf *Document )SetPdfInfo (options *PdfInfoOptions )error {if options ==nil {return _f .New ("\u006ei\u006c\u0020\u0070\u0064\u0066\u0020\u006f\u0070\u0074\u0069\u006fn\u0073\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064");};_ac ,_ea :=_c .MakeModel (_bf ._gf ); -if _ea !=nil {return _ea ;};if options .Overwrite {*_ac =_c .PDFInfo {};};if options .InfoDict !=nil {_cea ,_bg :=_a .GetDict (options .InfoDict );if !_bg {return _cf .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0074\u0079p\u0065:\u0020\u0025\u0054",options .InfoDict ); -};var _ff *_a .PdfObjectString ;for _ ,_ec :=range _cea .Keys (){switch _ec {case "\u0054\u0069\u0074l\u0065":_ff ,_bg =_a .GetString (_cea .Get ("\u0054\u0069\u0074l\u0065"));if _bg {_ac .Title =_b .NewAltString (_ff );};case "\u0041\u0075\u0074\u0068\u006f\u0072":_ff ,_bg =_a .GetString (_cea .Get ("\u0041\u0075\u0074\u0068\u006f\u0072")); -if _bg {_ac .Author =_b .NewStringList (_ff .String ());};case "\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073":_ff ,_bg =_a .GetString (_cea .Get ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073"));if _bg {_ac .Keywords =_ff .String ();};case "\u0043r\u0065\u0061\u0074\u006f\u0072":_ff ,_bg =_a .GetString (_cea .Get ("\u0043r\u0065\u0061\u0074\u006f\u0072")); -if _bg {_ac .Creator =_b .AgentName (_ff .String ());};case "\u0053u\u0062\u006a\u0065\u0063\u0074":_ff ,_bg =_a .GetString (_cea .Get ("\u0053u\u0062\u006a\u0065\u0063\u0074"));if _bg {_ac .Subject =_b .NewAltString (_ff .String ());};case "\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072":_ff ,_bg =_a .GetString (_cea .Get ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072")); -if _bg {_ac .Producer =_b .AgentName (_ff .String ());};case "\u0054r\u0061\u0070\u0070\u0065\u0064":_da ,_eb :=_a .GetName (_cea .Get ("\u0054r\u0061\u0070\u0070\u0065\u0064"));if _eb {switch _da .String (){case "\u0054\u0072\u0075\u0065":_ac .Trapped =true ; -case "\u0046\u0061\u006cs\u0065":_ac .Trapped =false ;default:_ac .Trapped =true ;};};case "\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065":if _ad ,_ag :=_a .GetString (_cea .Get ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065")); -_ag &&_ad .String ()!=""{_bca ,_gfc :=_ca .ParsePdfTime (_ad .String ());if _gfc !=nil {return _cf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0072e\u0061\u0074\u0069\u006f\u006e\u0044\u0061t\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0077",_gfc ); -};_ac .CreationDate =_b .NewDate (_bca );};case "\u004do\u0064\u0044\u0061\u0074\u0065":if _fb ,_egf :=_a .GetString (_cea .Get ("\u004do\u0064\u0044\u0061\u0074\u0065"));_egf &&_fb .String ()!=""{_fg ,_ead :=_ca .ParsePdfTime (_fb .String ());if _ead !=nil {return _cf .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u004d\u006f\u0064\u0044a\u0074e\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025w",_ead ); -};_ac .ModifyDate =_b .NewDate (_fg );};};};};if options .PdfVersion !=""{_ac .PDFVersion =options .PdfVersion ;};if options .Marked {_ac .Marked =_b .Bool (options .Marked );};if options .Copyright !=""{_ac .Copyright =options .Copyright ;};if _ea =_ac .SyncToXMP (_bf ._gf ); -_ea !=nil {return _ea ;};return nil ;}; +// MediaManagementVersion is the version of the media management xmp metadata. +type MediaManagementVersion struct{VersionID string ;ModifyDate _d .Time ;Comments string ;Modifier string ;}; -// MediaManagement are the values from the document media management metadata. -type MediaManagement struct{ +// SetPdfAExtension sets the pdfaExtension XMP metadata. +func (_fa *Document )SetPdfAExtension ()error {_ab ,_gc :=_dd .MakeModel (_fa ._c );if _gc !=nil {return _gc ;};if _gc =_dd .FillModel (_fa ._c ,_ab );_gc !=nil {return _gc ;};if _gc =_ab .SyncToXMP (_fa ._c );_gc !=nil {return _gc ;};return nil ;}; -// OriginalDocumentID as media is imported and projects is started, an original-document ID -// must be created to identify a new document. This identifies a document as a conceptual entity. -OriginalDocumentID GUID ; +// Marshal the document into xml byte stream. +func (_bc *Document )Marshal ()([]byte ,error ){if _bc ._c .IsDirty (){if _be :=_bc ._c .SyncModels ();_be !=nil {return nil ,_be ;};};return _f .Marshal (_bc ._c );}; -// DocumentID when a document is copied to a new file path or converted to a new format with -// Save As, another new document ID should usually be assigned. This identifies a general version or -// branch of a document. You can use it to track different versions or extracted portions of a document -// with the same original-document ID. -DocumentID GUID ; +// PdfAID is the result of the XMP pdfaid metadata. +type PdfAID struct{Part int ;Conformance string ;}; -// InstanceID to track a document’s editing history, you must assign a new instance ID -// whenever a document is saved after any changes. This uniquely identifies an exact version of a -// document. It is used in resource references (to identify both the document or part itself and the -// referenced or referencing documents), and in document-history resource events (to identify the -// document instance that resulted from the change). -InstanceID GUID ; +// SetMediaManagement sets up XMP media management metadata: namespace xmpMM. +func (_aaf *Document )SetMediaManagement (options *MediaManagementOptions )error {_bbe ,_cbf :=_fe .MakeModel (_aaf ._c );if _cbf !=nil {return _cbf ;};if options ==nil {options =new (MediaManagementOptions );};_abd :=_fe .ResourceRef {};if _bbe .OriginalDocumentID .IsZero (){if options .OriginalDocumentID !=""{_bbe .OriginalDocumentID =_f .GUID (options .OriginalDocumentID ); +}else {_aba ,_cdf :=_a .NewUUID ();if _cdf !=nil {return _cdf ;};_bbe .OriginalDocumentID =_f .GUID (_aba .String ());};}else {_abd .OriginalDocumentID =_bbe .OriginalDocumentID ;};switch {case options .DocumentID !="":_bbe .DocumentID =_f .GUID (options .DocumentID ); +case options .NewDocumentID ||_bbe .DocumentID .IsZero ():if !_bbe .DocumentID .IsZero (){_abd .DocumentID =_bbe .DocumentID ;};_ca ,_gb :=_a .NewUUID ();if _gb !=nil {return _gb ;};_bbe .DocumentID =_f .GUID (_ca .String ());};if !_bbe .InstanceID .IsZero (){_abd .InstanceID =_bbe .InstanceID ; +};_bbe .InstanceID =_f .GUID (options .InstanceID );if _bbe .InstanceID ==""{_ebc ,_dgg :=_a .NewUUID ();if _dgg !=nil {return _dgg ;};_bbe .InstanceID =_f .GUID (_ebc .String ());};if !_abd .IsZero (){_bbe .DerivedFrom =&_abd ;};_fad :=options .VersionID ; +if _bbe .VersionID !=""{_ade ,_bad :=_g .Atoi (_bbe .VersionID );if _bad !=nil {_fad =_g .Itoa (len (_bbe .Versions )+1);}else {_fad =_g .Itoa (_ade +1);};};if _fad ==""{_fad ="\u0031";};_bbe .VersionID =_fad ;if _cbf =_bbe .SyncToXMP (_aaf ._c );_cbf !=nil {return _cbf ; +};return nil ;}; -// DerivedFrom references the source document from which this one is derived, -// typically through a Save As operation that changes the file name or format. It is a minimal reference; -// missing components can be assumed to be unchanged. For example, a new version might only need -// to specify the instance ID and version number of the previous version, or a rendition might only need -// to specify the instance ID and rendition class of the original. -DerivedFrom *MediaManagementDerivedFrom ; +// PdfInfo is the xmp document pdf info. +type PdfInfo struct{InfoDict _ea .PdfObject ;PdfVersion string ;Copyright string ;Marked bool ;}; -// VersionID are meant to associate the document with a product version that is part of a release process. They can be useful in tracking the -// document history, but should not be used to identify a document uniquely in any context. -// Usually it simply works by incrementing integers 1,2,3... -VersionID string ; +// SetPdfAID sets up pdfaid xmp metadata. +// In example: Part: '1' Conformance: 'B' states for PDF/A 1B. +func (_fba *Document )SetPdfAID (part int ,conformance string )error {_acd ,_fc :=_eg .MakeModel (_fba ._c );if _fc !=nil {return _fc ;};_acd .Part =part ;_acd .Conformance =conformance ;if _fea :=_acd .SyncToXMP (_fba ._c );_fea !=nil {return _fea ;}; +return nil ;}; -// Versions is the history of the document versions along with the comments, timestamps and issuers. -Versions []MediaManagementVersion ;}; +// SetPdfInfo sets the pdf info into selected document. +func (_gfg *Document )SetPdfInfo (options *PdfInfoOptions )error {if options ==nil {return _fg .New ("\u006ei\u006c\u0020\u0070\u0064\u0066\u0020\u006f\u0070\u0074\u0069\u006fn\u0073\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065\u0064");};_ege ,_fgf :=_b .MakeModel (_gfg ._c ); +if _fgf !=nil {return _fgf ;};if options .Overwrite {*_ege =_b .PDFInfo {};};if options .InfoDict !=nil {_gad ,_cb :=_ea .GetDict (options .InfoDict );if !_cb {return _gf .Errorf ("i\u006e\u0076\u0061\u006c\u0069\u0064 \u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063t\u0020\u0074\u0079p\u0065:\u0020\u0025\u0054",options .InfoDict ); +};var _cc *_ea .PdfObjectString ;for _ ,_ccd :=range _gad .Keys (){switch _ccd {case "\u0054\u0069\u0074l\u0065":_cc ,_cb =_ea .GetString (_gad .Get ("\u0054\u0069\u0074l\u0065"));if _cb {_ege .Title =_f .NewAltString (_cc );};case "\u0041\u0075\u0074\u0068\u006f\u0072":_cc ,_cb =_ea .GetString (_gad .Get ("\u0041\u0075\u0074\u0068\u006f\u0072")); +if _cb {_ege .Author =_f .NewStringList (_cc .String ());};case "\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073":_cc ,_cb =_ea .GetString (_gad .Get ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073"));if _cb {_ege .Keywords =_cc .String ();};case "\u0043r\u0065\u0061\u0074\u006f\u0072":_cc ,_cb =_ea .GetString (_gad .Get ("\u0043r\u0065\u0061\u0074\u006f\u0072")); +if _cb {_ege .Creator =_f .AgentName (_cc .String ());};case "\u0053u\u0062\u006a\u0065\u0063\u0074":_cc ,_cb =_ea .GetString (_gad .Get ("\u0053u\u0062\u006a\u0065\u0063\u0074"));if _cb {_ege .Subject =_f .NewAltString (_cc .String ());};case "\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072":_cc ,_cb =_ea .GetString (_gad .Get ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072")); +if _cb {_ege .Producer =_f .AgentName (_cc .String ());};case "\u0054r\u0061\u0070\u0070\u0065\u0064":_ac ,_ae :=_ea .GetName (_gad .Get ("\u0054r\u0061\u0070\u0070\u0065\u0064"));if _ae {switch _ac .String (){case "\u0054\u0072\u0075\u0065":_ege .Trapped =true ; +case "\u0046\u0061\u006cs\u0065":_ege .Trapped =false ;default:_ege .Trapped =true ;};};case "\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065":if _gce ,_eb :=_ea .GetString (_gad .Get ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065")); +_eb &&_gce .String ()!=""{_gadf ,_bd :=_bb .ParsePdfTime (_gce .String ());if _bd !=nil {return _gf .Errorf ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0043\u0072e\u0061\u0074\u0069\u006f\u006e\u0044\u0061t\u0065\u0020\u0066\u0069\u0065\u006c\u0064\u003a\u0020\u0025\u0077",_bd ); +};_ege .CreationDate =_f .NewDate (_gadf );};case "\u004do\u0064\u0044\u0061\u0074\u0065":if _gcg ,_fb :=_ea .GetString (_gad .Get ("\u004do\u0064\u0044\u0061\u0074\u0065"));_fb &&_gcg .String ()!=""{_gg ,_aa :=_bb .ParsePdfTime (_gcg .String ());if _aa !=nil {return _gf .Errorf ("\u0069n\u0076\u0061\u006c\u0069d\u0020\u004d\u006f\u0064\u0044a\u0074e\u0020f\u0069\u0065\u006c\u0064\u003a\u0020\u0025w",_aa ); +};_ege .ModifyDate =_f .NewDate (_gg );};};};};if options .PdfVersion !=""{_ege .PDFVersion =options .PdfVersion ;};if options .Marked {_ege .Marked =_f .Bool (options .Marked );};if options .Copyright !=""{_ege .Copyright =options .Copyright ;};if _fgf =_ege .SyncToXMP (_gfg ._c ); +_fgf !=nil {return _fgf ;};return nil ;}; + +// GetGoXmpDocument gets direct access to the go-xmp.Document. +// All changes done to specified document would result in change of this document 'd'. +func (_bca *Document )GetGoXmpDocument ()*_f .Document {return _bca ._c }; + +// GetPdfaExtensionSchemas gets a pdfa extension schemas. +func (_gcf *Document )GetPdfaExtensionSchemas ()([]_dd .Schema ,error ){_ba :=_gcf ._c .FindModel (_dd .Namespace );if _ba ==nil {return nil ,nil ;};_cd ,_dg :=_ba .(*_dd .Model );if !_dg {return nil ,_gf .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u006d\u006f\u0064\u0065l f\u006fr \u0070\u0064\u0066\u0061\u0045\u0078\u0074en\u0073\u0069\u006f\u006e\u0073\u003a\u0020%\u0054",_ba ); +};return _cd .Schemas ,nil ;}; // MediaManagementOptions are the options for the Media management xmp metadata. type MediaManagementOptions struct{ @@ -114,80 +120,73 @@ ModifyComment string ; // ModifyDate is a custom modification date for the versions. // By default, this would be set to time.Now(). -ModifyDate _g .Time ; +ModifyDate _d .Time ; // Modifier is a person who did the modification. Modifier string ;}; -// GetPdfAID gets the pdfaid xmp metadata model. -func (_cee *Document )GetPdfAID ()(*PdfAID ,bool ){_edbg ,_aaf :=_cee ._gf .FindModel (_fd .Namespace ).(*_fd .Model );if !_aaf {return nil ,false ;};return &PdfAID {Part :_edbg .Part ,Conformance :_edbg .Conformance },true ;}; - -// MediaManagementVersion is the version of the media management xmp metadata. -type MediaManagementVersion struct{VersionID string ;ModifyDate _g .Time ;Comments string ;Modifier string ;}; - -// SetMediaManagement sets up XMP media management metadata: namespace xmpMM. -func (_gd *Document )SetMediaManagement (options *MediaManagementOptions )error {_df ,_eac :=_ge .MakeModel (_gd ._gf );if _eac !=nil {return _eac ;};if options ==nil {options =new (MediaManagementOptions );};_eeb :=_ge .ResourceRef {};if _df .OriginalDocumentID .IsZero (){if options .OriginalDocumentID !=""{_df .OriginalDocumentID =_b .GUID (options .OriginalDocumentID ); -}else {_cd ,_egd :=_fe .NewUUID ();if _egd !=nil {return _egd ;};_df .OriginalDocumentID =_b .GUID (_cd .String ());};}else {_eeb .OriginalDocumentID =_df .OriginalDocumentID ;};switch {case options .DocumentID !="":_df .DocumentID =_b .GUID (options .DocumentID ); -case options .NewDocumentID ||_df .DocumentID .IsZero ():if !_df .DocumentID .IsZero (){_eeb .DocumentID =_df .DocumentID ;};_cdc ,_cfce :=_fe .NewUUID ();if _cfce !=nil {return _cfce ;};_df .DocumentID =_b .GUID (_cdc .String ());};if !_df .InstanceID .IsZero (){_eeb .InstanceID =_df .InstanceID ; -};_df .InstanceID =_b .GUID (options .InstanceID );if _df .InstanceID ==""{_eaa ,_eadd :=_fe .NewUUID ();if _eadd !=nil {return _eadd ;};_df .InstanceID =_b .GUID (_eaa .String ());};if !_eeb .IsZero (){_df .DerivedFrom =&_eeb ;};_cfdd :=options .VersionID ; -if _df .VersionID !=""{_ed ,_cfe :=_d .Atoi (_df .VersionID );if _cfe !=nil {_cfdd =_d .Itoa (len (_df .Versions )+1);}else {_cfdd =_d .Itoa (_ed +1);};};if _cfdd ==""{_cfdd ="\u0031";};_df .VersionID =_cfdd ;if _eac =_df .SyncToXMP (_gd ._gf );_eac !=nil {return _eac ; -};return nil ;}; - -// GetGoXmpDocument gets direct access to the go-xmp.Document. -// All changes done to specified document would result in change of this document 'd'. -func (_ccf *Document )GetGoXmpDocument ()*_b .Document {return _ccf ._gf }; - // MediaManagementDerivedFrom is a structure that contains references of identifiers and versions // from which given document was derived. type MediaManagementDerivedFrom struct{OriginalDocumentID GUID ;DocumentID GUID ;InstanceID GUID ;VersionID string ;}; -// PdfInfo is the xmp document pdf info. -type PdfInfo struct{InfoDict _a .PdfObject ;PdfVersion string ;Copyright string ;Marked bool ;}; +// NewDocument creates a new document without any previous xmp information. +func NewDocument ()*Document {_ga :=_f .NewDocument ();return &Document {_c :_ga }}; -// LoadDocument loads up the xmp document from provided input stream. -func LoadDocument (stream []byte )(*Document ,error ){_cc :=_b .NewDocument ();if _ce :=_b .Unmarshal (stream ,_cc );_ce !=nil {return nil ,_ce ;};return &Document {_gf :_cc },nil ;}; +// PdfInfoOptions are the options used for setting pdf info. +type PdfInfoOptions struct{InfoDict _ea .PdfObject ;PdfVersion string ;Copyright string ;Marked bool ; -// GetPdfaExtensionSchemas gets a pdfa extension schemas. -func (_bc *Document )GetPdfaExtensionSchemas ()([]_cg .Schema ,error ){_aa :=_bc ._gf .FindModel (_cg .Namespace );if _aa ==nil {return nil ,nil ;};_cfc ,_cfdf :=_aa .(*_cg .Model );if !_cfdf {return nil ,_cf .Errorf ("\u0069\u006eva\u006c\u0069\u0064 \u006d\u006f\u0064\u0065l f\u006fr \u0070\u0064\u0066\u0061\u0045\u0078\u0074en\u0073\u0069\u006f\u006e\u0073\u003a\u0020%\u0054",_aa ); -};return _cfc .Schemas ,nil ;}; +// Overwrite if set to true, overwrites all values found in the current pdf info xmp model to the ones provided. +Overwrite bool ;}; // GUID is a string representing a globally unique identifier. type GUID string ; -// SetPdfAID sets up pdfaid xmp metadata. -// In example: Part: '1' Conformance: 'B' states for PDF/A 1B. -func (_gdg *Document )SetPdfAID (part int ,conformance string )error {_bgc ,_caa :=_fd .MakeModel (_gdg ._gf );if _caa !=nil {return _caa ;};_bgc .Part =part ;_bgc .Conformance =conformance ;if _ede :=_bgc .SyncToXMP (_gdg ._gf );_ede !=nil {return _ede ; -};return nil ;}; - -// GetMediaManagement gets the media management metadata from provided xmp document. -func (_af *Document )GetMediaManagement ()(*MediaManagement ,bool ){_bfg :=_ge .FindModel (_af ._gf );if _bfg ==nil {return nil ,false ;};_fec :=make ([]MediaManagementVersion ,len (_bfg .Versions ));for _edb ,_fdb :=range _bfg .Versions {_fec [_edb ]=MediaManagementVersion {VersionID :_fdb .Version ,ModifyDate :_fdb .ModifyDate .Value (),Comments :_fdb .Comments ,Modifier :_fdb .Modifier }; -};_ddb :=&MediaManagement {OriginalDocumentID :GUID (_bfg .OriginalDocumentID .Value ()),DocumentID :GUID (_bfg .DocumentID .Value ()),InstanceID :GUID (_bfg .InstanceID .Value ()),VersionID :_bfg .VersionID ,Versions :_fec };if _bfg .DerivedFrom !=nil {_ddb .DerivedFrom =&MediaManagementDerivedFrom {OriginalDocumentID :GUID (_bfg .DerivedFrom .OriginalDocumentID ),DocumentID :GUID (_bfg .DerivedFrom .DocumentID ),InstanceID :GUID (_bfg .DerivedFrom .InstanceID ),VersionID :_bfg .DerivedFrom .VersionID }; -};return _ddb ,true ;}; - -// GetPdfInfo gets the document pdf info. -func (_ceg *Document )GetPdfInfo ()(*PdfInfo ,bool ){_ffd ,_bgg :=_ceg ._gf .FindModel (_c .NsPDF ).(*_c .PDFInfo );if !_bgg {return nil ,false ;};_deb :=PdfInfo {};var _dd *_a .PdfObjectDictionary ;_deb .Copyright =_ffd .Copyright ;_deb .PdfVersion =_ffd .PDFVersion ; -_deb .Marked =bool (_ffd .Marked );_dc :=func (_fee string ,_dg _a .PdfObject ){if _dd ==nil {_dd =_a .MakeDict ();};_dd .Set (_a .PdfObjectName (_fee ),_dg );};if len (_ffd .Title )> 0{_dc ("\u0054\u0069\u0074l\u0065",_a .MakeString (_ffd .Title .Default ())); -};if len (_ffd .Author )> 0{_dc ("\u0041\u0075\u0074\u0068\u006f\u0072",_a .MakeString (_ffd .Author [0]));};if _ffd .Keywords !=""{_dc ("\u004b\u0065\u0079\u0077\u006f\u0072\u0064\u0073",_a .MakeString (_ffd .Keywords ));};if len (_ffd .Subject )> 0{_dc ("\u0053u\u0062\u006a\u0065\u0063\u0074",_a .MakeString (_ffd .Subject .Default ())); -};if _ffd .Creator !=""{_dc ("\u0043r\u0065\u0061\u0074\u006f\u0072",_a .MakeString (string (_ffd .Creator )));};if _ffd .Producer !=""{_dc ("\u0050\u0072\u006f\u0064\u0075\u0063\u0065\u0072",_a .MakeString (string (_ffd .Producer )));};if _ffd .Trapped {_dc ("\u0054r\u0061\u0070\u0070\u0065\u0064",_a .MakeName ("\u0054\u0072\u0075\u0065")); -};if !_ffd .CreationDate .IsZero (){_dc ("\u0043\u0072\u0065a\u0074\u0069\u006f\u006e\u0044\u0061\u0074\u0065",_a .MakeString (_ca .FormatPdfTime (_ffd .CreationDate .Value ())));};if !_ffd .ModifyDate .IsZero (){_dc ("\u004do\u0064\u0044\u0061\u0074\u0065",_a .MakeString (_ca .FormatPdfTime (_ffd .ModifyDate .Value ()))); -};_deb .InfoDict =_dd ;return &_deb ,true ;}; +// GetPdfAID gets the pdfaid xmp metadata model. +func (_bbb *Document )GetPdfAID ()(*PdfAID ,bool ){_ag ,_df :=_bbb ._c .FindModel (_eg .Namespace ).(*_eg .Model );if !_df {return nil ,false ;};return &PdfAID {Part :_ag .Part ,Conformance :_ag .Conformance },true ;}; // Document is an implementation of the xmp document. // It is a wrapper over go-xmp/xmp.Document that provides some Pdf predefined functionality. -type Document struct{_gf *_b .Document }; +type Document struct{_c *_f .Document }; -// PdfInfoOptions are the options used for setting pdf info. -type PdfInfoOptions struct{InfoDict _a .PdfObject ;PdfVersion string ;Copyright string ;Marked bool ; +// MediaManagement are the values from the document media management metadata. +type MediaManagement struct{ -// Overwrite if set to true, overwrites all values found in the current pdf info xmp model to the ones provided. -Overwrite bool ;}; +// OriginalDocumentID as media is imported and projects is started, an original-document ID +// must be created to identify a new document. This identifies a document as a conceptual entity. +OriginalDocumentID GUID ; -// PdfAID is the result of the XMP pdfaid metadata. -type PdfAID struct{Part int ;Conformance string ;}; +// DocumentID when a document is copied to a new file path or converted to a new format with +// Save As, another new document ID should usually be assigned. This identifies a general version or +// branch of a document. You can use it to track different versions or extracted portions of a document +// with the same original-document ID. +DocumentID GUID ; -// SetPdfAExtension sets the pdfaExtension XMP metadata. -func (_gc *Document )SetPdfAExtension ()error {_ee ,_bd :=_cg .MakeModel (_gc ._gf );if _bd !=nil {return _bd ;};if _bd =_cg .FillModel (_gc ._gf ,_ee );_bd !=nil {return _bd ;};if _bd =_ee .SyncToXMP (_gc ._gf );_bd !=nil {return _bd ;};return nil ;}; +// InstanceID to track a document’s editing history, you must assign a new instance ID +// whenever a document is saved after any changes. This uniquely identifies an exact version of a +// document. It is used in resource references (to identify both the document or part itself and the +// referenced or referencing documents), and in document-history resource events (to identify the +// document instance that resulted from the change). +InstanceID GUID ; + +// DerivedFrom references the source document from which this one is derived, +// typically through a Save As operation that changes the file name or format. It is a minimal reference; +// missing components can be assumed to be unchanged. For example, a new version might only need +// to specify the instance ID and version number of the previous version, or a rendition might only need +// to specify the instance ID and rendition class of the original. +DerivedFrom *MediaManagementDerivedFrom ; + +// VersionID are meant to associate the document with a product version that is part of a release process. They can be useful in tracking the +// document history, but should not be used to identify a document uniquely in any context. +// Usually it simply works by incrementing integers 1,2,3... +VersionID string ; +// Versions is the history of the document versions along with the comments, timestamps and issuers. +Versions []MediaManagementVersion ;}; -// NewDocument creates a new document without any previous xmp information. -func NewDocument ()*Document {_gb :=_b .NewDocument ();return &Document {_gf :_gb }}; \ No newline at end of file +// GetMediaManagement gets the media management metadata from provided xmp document. +func (_eda *Document )GetMediaManagement ()(*MediaManagement ,bool ){_gac :=_fe .FindModel (_eda ._c );if _gac ==nil {return nil ,false ;};_eaf :=make ([]MediaManagementVersion ,len (_gac .Versions ));for _ccb ,_fda :=range _gac .Versions {_eaf [_ccb ]=MediaManagementVersion {VersionID :_fda .Version ,ModifyDate :_fda .ModifyDate .Value (),Comments :_fda .Comments ,Modifier :_fda .Modifier }; +};_af :=&MediaManagement {OriginalDocumentID :GUID (_gac .OriginalDocumentID .Value ()),DocumentID :GUID (_gac .DocumentID .Value ()),InstanceID :GUID (_gac .InstanceID .Value ()),VersionID :_gac .VersionID ,Versions :_eaf };if _gac .DerivedFrom !=nil {_af .DerivedFrom =&MediaManagementDerivedFrom {OriginalDocumentID :GUID (_gac .DerivedFrom .OriginalDocumentID ),DocumentID :GUID (_gac .DerivedFrom .DocumentID ),InstanceID :GUID (_gac .DerivedFrom .InstanceID ),VersionID :_gac .DerivedFrom .VersionID }; +};return _af ,true ;}; + +// LoadDocument loads up the xmp document from provided input stream. +func LoadDocument (stream []byte )(*Document ,error ){_fd :=_f .NewDocument ();if _gff :=_f .Unmarshal (stream ,_fd );_gff !=nil {return nil ,_gff ;};return &Document {_c :_fd },nil ;}; \ No newline at end of file diff --git a/pdfutil/pdfutil.go b/pdfutil/pdfutil.go index 7586864a8..243162a78 100644 --- a/pdfutil/pdfutil.go +++ b/pdfutil/pdfutil.go @@ -9,7 +9,7 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package pdfutil ;import (_ea "github.com/unidoc/unipdf/v3/common";_a "github.com/unidoc/unipdf/v3/contentstream";_b "github.com/unidoc/unipdf/v3/contentstream/draw";_g "github.com/unidoc/unipdf/v3/core";_f "github.com/unidoc/unipdf/v3/model";); +package pdfutil ;import (_fb "github.com/unidoc/unipdf/v3/common";_a "github.com/unidoc/unipdf/v3/contentstream";_b "github.com/unidoc/unipdf/v3/contentstream/draw";_g "github.com/unidoc/unipdf/v3/core";_e "github.com/unidoc/unipdf/v3/model";); // NormalizePage performs the following operations on the passed in page: // - Normalize the page rotation. @@ -26,10 +26,10 @@ package pdfutil ;import (_ea "github.com/unidoc/unipdf/v3/common";_a "github.com // PDF viewer. // NOTE: This function does not normalize annotations, outlines other parts // that are not part of the basic geometry and page content streams. -func NormalizePage (page *_f .PdfPage )error {_be ,_eb :=page .GetMediaBox ();if _eb !=nil {return _eb ;};_beb ,_eb :=page .GetRotate ();if _eb !=nil {_ea .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_eb .Error ()); -};_gf :=_beb %360!=0&&_beb %90==0;_be .Normalize ();_ec ,_c ,_bf ,_bff :=_be .Llx ,_be .Lly ,_be .Width (),_be .Height ();_fg :=_ec !=0||_c !=0;if !_gf &&!_fg {return nil ;};_ca :=func (_gb ,_eba ,_af float64 )_b .BoundingBox {return _b .Path {Points :[]_b .Point {_b .NewPoint (0,0).Rotate (_af ),_b .NewPoint (_gb ,0).Rotate (_af ),_b .NewPoint (0,_eba ).Rotate (_af ),_b .NewPoint (_gb ,_eba ).Rotate (_af )}}.GetBoundingBox (); -};_ge :=_a .NewContentCreator ();var _fa float64 ;if _gf {_fa =-float64 (_beb );_d :=_ca (_bf ,_bff ,_fa );_ge .Translate ((_d .Width -_bf )/2+_bf /2,(_d .Height -_bff )/2+_bff /2);_ge .RotateDeg (_fa );_ge .Translate (-_bf /2,-_bff /2);_bf ,_bff =_d .Width ,_d .Height ; -};if _fg {_ge .Translate (-_ec ,-_c );};_cd :=_ge .Operations ();_cc ,_eb :=_g .MakeStream (_cd .Bytes (),_g .NewFlateEncoder ());if _eb !=nil {return _eb ;};_cda :=_g .MakeArray (_cc );_cda .Append (page .GetContentStreamObjs ()...);*_be =_f .PdfRectangle {Urx :_bf ,Ury :_bff }; -if _cb :=page .CropBox ;_cb !=nil {_cb .Normalize ();_gg ,_ga ,_df ,_fd :=_cb .Llx -_ec ,_cb .Lly -_c ,_cb .Width (),_cb .Height ();if _gf {_ce :=_ca (_df ,_fd ,_fa );_df ,_fd =_ce .Width ,_ce .Height ;};*_cb =_f .PdfRectangle {Llx :_gg ,Lly :_ga ,Urx :_gg +_df ,Ury :_ga +_fd }; -};_ea .Log .Debug ("\u0052\u006f\u0074\u0061\u0074\u0065\u003d\u0025\u0066\u00b0\u0020\u004f\u0070\u0073\u003d%\u0071 \u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078\u003d\u0025\u002e\u0032\u0066",_fa ,_cd ,_be );page .Contents =_cda ;page .Rotate =nil ; +func NormalizePage (page *_e .PdfPage )error {_ec ,_ee :=page .GetMediaBox ();if _ee !=nil {return _ee ;};_af ,_ee :=page .GetRotate ();if _ee !=nil {_fb .Log .Debug ("\u0045\u0052R\u004f\u0052\u003a\u0020\u0025\u0073\u0020\u002d\u0020\u0069\u0067\u006e\u006f\u0072\u0069\u006e\u0067\u0020\u0061\u006e\u0064\u0020\u0061\u0073\u0073\u0075\u006d\u0069\u006e\u0067\u0020\u006e\u006f\u0020\u0072\u006f\u0074\u0061\u0074\u0069\u006f\u006e\u000a",_ee .Error ()); +};_ba :=_af %360!=0&&_af %90==0;_ec .Normalize ();_d ,_ga ,_bg ,_c :=_ec .Llx ,_ec .Lly ,_ec .Width (),_ec .Height ();_ca :=_d !=0||_ga !=0;if !_ba &&!_ca {return nil ;};_ae :=func (_da ,_cd ,_bgf float64 )_b .BoundingBox {return _b .Path {Points :[]_b .Point {_b .NewPoint (0,0).Rotate (_bgf ),_b .NewPoint (_da ,0).Rotate (_bgf ),_b .NewPoint (0,_cd ).Rotate (_bgf ),_b .NewPoint (_da ,_cd ).Rotate (_bgf )}}.GetBoundingBox (); +};_gd :=_a .NewContentCreator ();var _bb float64 ;if _ba {_bb =-float64 (_af );_gad :=_ae (_bg ,_c ,_bb );_gd .Translate ((_gad .Width -_bg )/2+_bg /2,(_gad .Height -_c )/2+_c /2);_gd .RotateDeg (_bb );_gd .Translate (-_bg /2,-_c /2);_bg ,_c =_gad .Width ,_gad .Height ; +};if _ca {_gd .Translate (-_d ,-_ga );};_eca :=_gd .Operations ();_fa ,_ee :=_g .MakeStream (_eca .Bytes (),_g .NewFlateEncoder ());if _ee !=nil {return _ee ;};_fd :=_g .MakeArray (_fa );_fd .Append (page .GetContentStreamObjs ()...);*_ec =_e .PdfRectangle {Urx :_bg ,Ury :_c }; +if _afb :=page .CropBox ;_afb !=nil {_afb .Normalize ();_ac ,_gae ,_bab ,_cg :=_afb .Llx -_d ,_afb .Lly -_ga ,_afb .Width (),_afb .Height ();if _ba {_caf :=_ae (_bab ,_cg ,_bb );_bab ,_cg =_caf .Width ,_caf .Height ;};*_afb =_e .PdfRectangle {Llx :_ac ,Lly :_gae ,Urx :_ac +_bab ,Ury :_gae +_cg }; +};_fb .Log .Debug ("\u0052\u006f\u0074\u0061\u0074\u0065\u003d\u0025\u0066\u00b0\u0020\u004f\u0070\u0073\u003d%\u0071 \u004d\u0065\u0064\u0069\u0061\u0042\u006f\u0078\u003d\u0025\u002e\u0032\u0066",_bb ,_eca ,_ec );page .Contents =_fd ;page .Rotate =nil ; return nil ;}; \ No newline at end of file diff --git a/ps/ps.go b/ps/ps.go index fb87ca97b..e8ea0ae64 100644 --- a/ps/ps.go +++ b/ps/ps.go @@ -14,181 +14,161 @@ // // Package ps implements various functionalities needed for handling Postscript for PDF uses, in particular // for PDF function type 4. -package ps ;import (_b "bufio";_e "bytes";_g "errors";_ce "fmt";_a "github.com/unidoc/unipdf/v3/common";_be "github.com/unidoc/unipdf/v3/core";_gc "io";_c "math";);func (_cadb *PSOperand )cvr (_ggg *PSStack )error {_fedb ,_aff :=_ggg .Pop ();if _aff !=nil {return _aff ; -};if _bgg ,_cef :=_fedb .(*PSReal );_cef {_aff =_ggg .Push (MakeReal (_bgg .Val ));}else if _aeb ,_bcc :=_fedb .(*PSInteger );_bcc {_aff =_ggg .Push (MakeReal (float64 (_aeb .Val )));}else {return ErrTypeCheck ;};return _aff ;};var ErrUndefinedResult =_g .New ("\u0075\u006e\u0064\u0065fi\u006e\u0065\u0064\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u0065\u0072\u0072o\u0072"); -func (_bbg *PSOperand )sub (_dbbd *PSStack )error {_fgg ,_eea :=_dbbd .Pop ();if _eea !=nil {return _eea ;};_becd ,_eea :=_dbbd .Pop ();if _eea !=nil {return _eea ;};_eabc ,_ddbg :=_fgg .(*PSReal );_gbd ,_ddaa :=_fgg .(*PSInteger );if !_ddbg &&!_ddaa {return ErrTypeCheck ; -};_bed ,_gace :=_becd .(*PSReal );_dde ,_ade :=_becd .(*PSInteger );if !_gace &&!_ade {return ErrTypeCheck ;};if _ddaa &&_ade {_aegbg :=_dde .Val -_gbd .Val ;_fdab :=_dbbd .Push (MakeInteger (_aegbg ));return _fdab ;};var _dedb float64 =0;if _gace {_dedb =_bed .Val ; -}else {_dedb =float64 (_dde .Val );};if _ddbg {_dedb -=_eabc .Val ;}else {_dedb -=float64 (_gbd .Val );};_eea =_dbbd .Push (MakeReal (_dedb ));return _eea ;}; +package ps ;import (_gba "bufio";_gb "bytes";_c "errors";_f "fmt";_e "github.com/unidoc/unipdf/v3/common";_ca "github.com/unidoc/unipdf/v3/core";_a "io";_gbg "math";); -// NewPSExecutor returns an initialized PSExecutor for an input `program`. -func NewPSExecutor (program *PSProgram )*PSExecutor {_gg :=&PSExecutor {};_gg .Stack =NewPSStack ();_gg ._d =program ;return _gg ;};const _ac =0.000001;func (_db *PSOperand )bitshift (_dbg *PSStack )error {_bge ,_gaa :=_dbg .PopInteger ();if _gaa !=nil {return _gaa ; -};_caee ,_gaa :=_dbg .PopInteger ();if _gaa !=nil {return _gaa ;};var _egg int ;if _bge >=0{_egg =_caee <>uint (-_bge );};_gaa =_dbg .Push (MakeInteger (_egg ));return _gaa ;};func (_cfc *PSInteger )String ()string {return _ce .Sprintf ("\u0025\u0064",_cfc .Val )}; -func (_fd *PSInteger )Duplicate ()PSObject {_ca :=PSInteger {};_ca .Val =_fd .Val ;return &_ca };func (_ada *PSOperand )cvi (_agg *PSStack )error {_fcc ,_dga :=_agg .Pop ();if _dga !=nil {return _dga ;};if _aeg ,_cabg :=_fcc .(*PSReal );_cabg {_bgd :=int (_aeg .Val ); -_dga =_agg .Push (MakeInteger (_bgd ));}else if _cad ,_deff :=_fcc .(*PSInteger );_deff {_dcg :=_cad .Val ;_dga =_agg .Push (MakeInteger (_dcg ));}else {return ErrTypeCheck ;};return _dga ;};func (_ced *PSProgram )DebugString ()string {_eeb :="\u007b\u0020"; -for _ ,_eebc :=range *_ced {_eeb +=_eebc .DebugString ();_eeb +="\u0020";};_eeb +="\u007d";return _eeb ;};func (_bee *PSOperand )floor (_bgf *PSStack )error {_cdde ,_gce :=_bgf .Pop ();if _gce !=nil {return _gce ;};if _afa ,_dfe :=_cdde .(*PSReal );_dfe {_gce =_bgf .Push (MakeReal (_c .Floor (_afa .Val ))); -}else if _gfcb ,_ecgb :=_cdde .(*PSInteger );_ecgb {_gce =_bgf .Push (MakeInteger (_gfcb .Val ));}else {return ErrTypeCheck ;};return _gce ;}; +// PSExecutor has its own execution stack and is used to executre a PS routine (program). +type PSExecutor struct{Stack *PSStack ;_b *PSProgram ;};func (_fcga *PSOperand )dup (_bgc *PSStack )error {_aeaf ,_bfc :=_bgc .Pop ();if _bfc !=nil {return _bfc ;};_bfc =_bgc .Push (_aeaf );if _bfc !=nil {return _bfc ;};_bfc =_bgc .Push (_aeaf .Duplicate ()); +return _bfc ;};func (_gae *PSOperand )div (_cca *PSStack )error {_gga ,_bbb :=_cca .Pop ();if _bbb !=nil {return _bbb ;};_gcad ,_bbb :=_cca .Pop ();if _bbb !=nil {return _bbb ;};_gdd ,_ebb :=_gga .(*PSReal );_ffgf ,_dcb :=_gga .(*PSInteger );if !_ebb &&!_dcb {return ErrTypeCheck ; +};if _ebb &&_gdd .Val ==0{return ErrUndefinedResult ;};if _dcb &&_ffgf .Val ==0{return ErrUndefinedResult ;};_dfc ,_eced :=_gcad .(*PSReal );_aaa ,_agc :=_gcad .(*PSInteger );if !_eced &&!_agc {return ErrTypeCheck ;};var _dca float64 ;if _eced {_dca =_dfc .Val ; +}else {_dca =float64 (_aaa .Val );};if _ebb {_dca /=_gdd .Val ;}else {_dca /=float64 (_ffgf .Val );};_bbb =_cca .Push (MakeReal (_dca ));return _bbb ;};func (_gcb *PSOperand )roll (_dbca *PSStack )error {_fef ,_eece :=_dbca .Pop ();if _eece !=nil {return _eece ; +};_cfdcf ,_eece :=_dbca .Pop ();if _eece !=nil {return _eece ;};_ecgg ,_abac :=_fef .(*PSInteger );if !_abac {return ErrTypeCheck ;};_dedb ,_abac :=_cfdcf .(*PSInteger );if !_abac {return ErrTypeCheck ;};if _dedb .Val < 0{return ErrRangeCheck ;};if _dedb .Val ==0||_dedb .Val ==1{return nil ; +};if _dedb .Val > len (*_dbca ){return ErrStackUnderflow ;};for _gcf :=0;_gcf < _bbbe (_ecgg .Val );_gcf ++{var _cddf []PSObject ;_cddf =(*_dbca )[len (*_dbca )-(_dedb .Val ):len (*_dbca )];if _ecgg .Val > 0{_gaa :=_cddf [len (_cddf )-1];_cddf =append ([]PSObject {_gaa },_cddf [0:len (_cddf )-1]...); +}else {_dcbae :=_cddf [len (_cddf )-_dedb .Val ];_cddf =append (_cddf [1:],_dcbae );};_cddg :=append ((*_dbca )[0:len (*_dbca )-_dedb .Val ],_cddf ...);_dbca =&_cddg ;};return nil ;};func (_afg *PSOperand )or (_gbbcc *PSStack )error {_edd ,_gfa :=_gbbcc .Pop (); +if _gfa !=nil {return _gfa ;};_aedd ,_gfa :=_gbbcc .Pop ();if _gfa !=nil {return _gfa ;};if _feb ,_baaa :=_edd .(*PSBoolean );_baaa {_dbga ,_cgb :=_aedd .(*PSBoolean );if !_cgb {return ErrTypeCheck ;};_gfa =_gbbcc .Push (MakeBool (_feb .Val ||_dbga .Val )); +return _gfa ;};if _cfbc ,_acfe :=_edd .(*PSInteger );_acfe {_cfg ,_gead :=_aedd .(*PSInteger );if !_gead {return ErrTypeCheck ;};_gfa =_gbbcc .Push (MakeInteger (_cfbc .Val |_cfg .Val ));return _gfa ;};return ErrTypeCheck ;};func (_ac *PSBoolean )String ()string {return _f .Sprintf ("\u0025\u0076",_ac .Val )}; +func (_ddgb *PSOperand )truncate (_aacc *PSStack )error {_cafc ,_gbgf :=_aacc .Pop ();if _gbgf !=nil {return _gbgf ;};if _dgec ,_beg :=_cafc .(*PSReal );_beg {_cbfg :=int (_dgec .Val );_gbgf =_aacc .Push (MakeReal (float64 (_cbfg )));}else if _ddd ,_daea :=_cafc .(*PSInteger ); +_daea {_gbgf =_aacc .Push (MakeInteger (_ddd .Val ));}else {return ErrTypeCheck ;};return _gbgf ;}; -// Parse parses the postscript and store as a program that can be executed. -func (_deeea *PSParser )Parse ()(*PSProgram ,error ){_deeea .skipSpaces ();_cbfa ,_bbcb :=_deeea ._aba .Peek (2);if _bbcb !=nil {return nil ,_bbcb ;};if _cbfa [0]!='{'{return nil ,_g .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0053\u0020\u0050\u0072\u006f\u0067\u0072\u0061\u006d\u0020\u006e\u006f\u0074\u0020\u0073t\u0061\u0072\u0074\u0069\u006eg\u0020\u0077i\u0074\u0068\u0020\u007b"); -};_bbaa ,_bbcb :=_deeea .parseFunction ();if _bbcb !=nil &&_bbcb !=_gc .EOF {return nil ,_bbcb ;};return _bbaa ,_bbcb ;};func (_fbcdd *PSOperand )sqrt (_gbbg *PSStack )error {_fec ,_ddge :=_gbbg .PopNumberAsFloat64 ();if _ddge !=nil {return _ddge ;};if _fec < 0{return ErrRangeCheck ; -};_ccfg :=_c .Sqrt (_fec );_ddge =_gbbg .Push (MakeReal (_ccfg ));return _ddge ;}; +// NewPSExecutor returns an initialized PSExecutor for an input `program`. +func NewPSExecutor (program *PSProgram )*PSExecutor {_bf :=&PSExecutor {};_bf .Stack =NewPSStack ();_bf ._b =program ;return _bf ;}; -// PSParser is a basic Postscript parser. -type PSParser struct{_aba *_b .Reader }; +// MakeBool returns a new PSBoolean object initialized with `val`. +func MakeBool (val bool )*PSBoolean {_bbfc :=PSBoolean {};_bbfc .Val =val ;return &_bbfc };func (_df *PSInteger )Duplicate ()PSObject {_cdd :=PSInteger {};_cdd .Val =_df .Val ;return &_cdd }; -// MakeInteger returns a new PSInteger object initialized with `val`. -func MakeInteger (val int )*PSInteger {_aaa :=PSInteger {};_aaa .Val =val ;return &_aaa };func (_ff *PSOperand )abs (_cae *PSStack )error {_bg ,_gga :=_cae .Pop ();if _gga !=nil {return _gga ;};if _dg ,_deb :=_bg .(*PSReal );_deb {_ef :=_dg .Val ;if _ef < 0{_gga =_cae .Push (MakeReal (-_ef )); -}else {_gga =_cae .Push (MakeReal (_ef ));};}else if _ge ,_fdb :=_bg .(*PSInteger );_fdb {_bdaf :=_ge .Val ;if _bdaf < 0{_gga =_cae .Push (MakeInteger (-_bdaf ));}else {_gga =_cae .Push (MakeInteger (_bdaf ));};}else {return ErrTypeCheck ;};return _gga ; -};func (_addc *PSOperand )round (_afea *PSStack )error {_egag ,_gfde :=_afea .Pop ();if _gfde !=nil {return _gfde ;};if _fbcd ,_dce :=_egag .(*PSReal );_dce {_gfde =_afea .Push (MakeReal (_c .Floor (_fbcd .Val +0.5)));}else if _efce ,_gca :=_egag .(*PSInteger ); -_gca {_gfde =_afea .Push (MakeInteger (_efce .Val ));}else {return ErrTypeCheck ;};return _gfde ;};func (_bb *PSBoolean )String ()string {return _ce .Sprintf ("\u0025\u0076",_bb .Val )};func (_acbf *PSOperand )not (_aae *PSStack )error {_bff ,_bea :=_aae .Pop (); -if _bea !=nil {return _bea ;};if _fefb ,_gbfb :=_bff .(*PSBoolean );_gbfb {_bea =_aae .Push (MakeBool (!_fefb .Val ));return _bea ;}else if _dbf ,_aegb :=_bff .(*PSInteger );_aegb {_bea =_aae .Push (MakeInteger (^_dbf .Val ));return _bea ;}else {return ErrTypeCheck ; -};};func (_bga *PSOperand )ln (_dfbb *PSStack )error {_fgd ,_befg :=_dfbb .PopNumberAsFloat64 ();if _befg !=nil {return _befg ;};_gcge :=_c .Log (_fgd );_befg =_dfbb .Push (MakeReal (_gcge ));return _befg ;};var ErrUnsupportedOperand =_g .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064"); -func (_dffd *PSOperand )div (_gcga *PSStack )error {_ddg ,_egb :=_gcga .Pop ();if _egb !=nil {return _egb ;};_bec ,_egb :=_gcga .Pop ();if _egb !=nil {return _egb ;};_aga ,_accb :=_ddg .(*PSReal );_dad ,_cce :=_ddg .(*PSInteger );if !_accb &&!_cce {return ErrTypeCheck ; -};if _accb &&_aga .Val ==0{return ErrUndefinedResult ;};if _cce &&_dad .Val ==0{return ErrUndefinedResult ;};_ccf ,_gad :=_bec .(*PSReal );_aac ,_gb :=_bec .(*PSInteger );if !_gad &&!_gb {return ErrTypeCheck ;};var _ffc float64 ;if _gad {_ffc =_ccf .Val ; -}else {_ffc =float64 (_aac .Val );};if _accb {_ffc /=_aga .Val ;}else {_ffc /=float64 (_dad .Val );};_egb =_gcga .Push (MakeReal (_ffc ));return _egb ;};func (_dffa *PSOperand )cos (_bdg *PSStack )error {_cbf ,_cgg :=_bdg .PopNumberAsFloat64 ();if _cgg !=nil {return _cgg ; -};_fb :=_c .Cos (_cbf *_c .Pi /180.0);_cgg =_bdg .Push (MakeReal (_fb ));return _cgg ;};func (_af *PSReal )String ()string {return _ce .Sprintf ("\u0025\u002e\u0035\u0066",_af .Val )};func (_efc *PSOperand )eq (_gaef *PSStack )error {_ede ,_cdd :=_gaef .Pop (); -if _cdd !=nil {return _cdd ;};_cbd ,_cdd :=_gaef .Pop ();if _cdd !=nil {return _cdd ;};_gbg ,_edc :=_ede .(*PSBoolean );_fbd ,_acbe :=_cbd .(*PSBoolean );if _edc ||_acbe {var _adf error ;if _edc &&_acbe {_adf =_gaef .Push (MakeBool (_gbg .Val ==_fbd .Val )); -}else {_adf =_gaef .Push (MakeBool (false ));};return _adf ;};var _gcd float64 ;var _gdc float64 ;if _ecg ,_ebdg :=_ede .(*PSInteger );_ebdg {_gcd =float64 (_ecg .Val );}else if _ceg ,_dfd :=_ede .(*PSReal );_dfd {_gcd =_ceg .Val ;}else {return ErrTypeCheck ; -};if _bbab ,_aea :=_cbd .(*PSInteger );_aea {_gdc =float64 (_bbab .Val );}else if _dee ,_ddgb :=_cbd .(*PSReal );_ddgb {_gdc =_dee .Val ;}else {return ErrTypeCheck ;};if _c .Abs (_gdc -_gcd )< _ac {_cdd =_gaef .Push (MakeBool (true ));}else {_cdd =_gaef .Push (MakeBool (false )); -};return _cdd ;};var ErrRangeCheck =_g .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");func (_ad *PSInteger )DebugString ()string {return _ce .Sprintf ("\u0069\u006e\u0074\u003a\u0025\u0064",_ad .Val ); -};func (_agcc *PSOperand )lt (_cffg *PSStack )error {_gfg ,_efcb :=_cffg .PopNumberAsFloat64 ();if _efcb !=nil {return _efcb ;};_efe ,_efcb :=_cffg .PopNumberAsFloat64 ();if _efcb !=nil {return _efcb ;};if _c .Abs (_efe -_gfg )< _ac {_age :=_cffg .Push (MakeBool (false )); -return _age ;}else if _efe < _gfg {_egf :=_cffg .Push (MakeBool (true ));return _egf ;}else {_fccf :=_cffg .Push (MakeBool (false ));return _fccf ;};};func (_acge *PSOperand )le (_bbd *PSStack )error {_gfdf ,_fab :=_bbd .PopNumberAsFloat64 ();if _fab !=nil {return _fab ; -};_dabg ,_fab :=_bbd .PopNumberAsFloat64 ();if _fab !=nil {return _fab ;};if _c .Abs (_dabg -_gfdf )< _ac {_gbbd :=_bbd .Push (MakeBool (true ));return _gbbd ;}else if _dabg < _gfdf {_bade :=_bbd .Push (MakeBool (true ));return _bade ;}else {_bef :=_bbd .Push (MakeBool (false )); -return _bef ;};};func (_dfbd *PSOperand )ifCondition (_ece *PSStack )error {_bde ,_cec :=_ece .Pop ();if _cec !=nil {return _cec ;};_agc ,_cec :=_ece .Pop ();if _cec !=nil {return _cec ;};_gdd ,_dgc :=_bde .(*PSProgram );if !_dgc {return ErrTypeCheck ; -};_bad ,_dgc :=_agc .(*PSBoolean );if !_dgc {return ErrTypeCheck ;};if _bad .Val {_acgg :=_gdd .Exec (_ece );return _acgg ;};return nil ;};func (_acc *PSOperand )copy (_fdc *PSStack )error {_fed ,_bba :=_fdc .PopInteger ();if _bba !=nil {return _bba ;}; -if _fed < 0{return ErrRangeCheck ;};if _fed > len (*_fdc ){return ErrRangeCheck ;};*_fdc =append (*_fdc ,(*_fdc )[len (*_fdc )-_fed :]...);return nil ;};func (_adaa *PSOperand )ifelse (_dab *PSStack )error {_dcde ,_dgaf :=_dab .Pop ();if _dgaf !=nil {return _dgaf ; -};_aed ,_dgaf :=_dab .Pop ();if _dgaf !=nil {return _dgaf ;};_dadf ,_dgaf :=_dab .Pop ();if _dgaf !=nil {return _dgaf ;};_eag ,_beg :=_dcde .(*PSProgram );if !_beg {return ErrTypeCheck ;};_cegf ,_beg :=_aed .(*PSProgram );if !_beg {return ErrTypeCheck ; -};_cabgg ,_beg :=_dadf .(*PSBoolean );if !_beg {return ErrTypeCheck ;};if _cabgg .Val {_fce :=_cegf .Exec (_dab );return _fce ;};_dgaf =_eag .Exec (_dab );return _dgaf ;};func (_bd *PSBoolean )Duplicate ()PSObject {_gae :=PSBoolean {};_gae .Val =_bd .Val ; -return &_gae };func (_dcd *PSOperand )dup (_bdab *PSStack )error {_gbf ,_cca :=_bdab .Pop ();if _cca !=nil {return _cca ;};_cca =_bdab .Push (_gbf );if _cca !=nil {return _cca ;};_cca =_bdab .Push (_gbf .Duplicate ());return _cca ;};func (_fgeb *PSParser )skipSpaces ()(int ,error ){_ecc :=0; -for {_bfd ,_fbab :=_fgeb ._aba .Peek (1);if _fbab !=nil {return 0,_fbab ;};if _be .IsWhiteSpace (_bfd [0]){_fgeb ._aba .ReadByte ();_ecc ++;}else {break ;};};return _ecc ,nil ;}; +// Execute executes the program for an input parameters `objects` and returns a slice of output objects. +func (_fb *PSExecutor )Execute (objects []PSObject )([]PSObject ,error ){for _ ,_de :=range objects {_fc :=_fb .Stack .Push (_de );if _fc !=nil {return nil ,_fc ;};};_ff :=_fb ._b .Exec (_fb .Stack );if _ff !=nil {_e .Log .Debug ("\u0045x\u0065c\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_ff ); +return nil ,_ff ;};_gc :=[]PSObject (*_fb .Stack );_fb .Stack .Empty ();return _gc ,nil ;};const _cf =0.000001; -// MakeOperand returns a new PSOperand object based on string `val`. -func MakeOperand (val string )*PSOperand {_gfae :=PSOperand (val );return &_gfae };func (_ga *PSBoolean )DebugString ()string {return _ce .Sprintf ("\u0062o\u006f\u006c\u003a\u0025\u0076",_ga .Val );};func (_cee *PSOperand )log (_eaf *PSStack )error {_fea ,_gda :=_eaf .PopNumberAsFloat64 (); -if _gda !=nil {return _gda ;};_eba :=_c .Log10 (_fea );_gda =_eaf .Push (MakeReal (_eba ));return _gda ;};func (_df *PSReal )DebugString ()string {return _ce .Sprintf ("\u0072e\u0061\u006c\u003a\u0025\u002e\u0035f",_df .Val );};func (_cg *PSOperand )String ()string {return string (*_cg )}; -var ErrStackOverflow =_g .New ("\u0073\u0074\u0061\u0063\u006b\u0020\u006f\u0076\u0065r\u0066\u006c\u006f\u0077");func (_abb *PSParser )parseOperand ()(*PSOperand ,error ){var _adb []byte ;for {_gcc ,_bfde :=_abb ._aba .Peek (1);if _bfde !=nil {if _bfde ==_gc .EOF {break ; -};return nil ,_bfde ;};if _be .IsDelimiter (_gcc [0]){break ;};if _be .IsWhiteSpace (_gcc [0]){break ;};_deed ,_ :=_abb ._aba .ReadByte ();_adb =append (_adb ,_deed );};if len (_adb )==0{return nil ,_g .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u0020\u0028\u0065\u006d\u0070\u0074\u0079\u0029"); -};return MakeOperand (string (_adb )),nil ;};func (_ged *PSOperand )exp (_aacb *PSStack )error {_cgf ,_gbb :=_aacb .PopNumberAsFloat64 ();if _gbb !=nil {return _gbb ;};_ebdd ,_gbb :=_aacb .PopNumberAsFloat64 ();if _gbb !=nil {return _gbb ;};if _c .Abs (_cgf )< 1&&_ebdd < 0{return ErrUndefinedResult ; -};_dac :=_c .Pow (_ebdd ,_cgf );_gbb =_aacb .Push (MakeReal (_dac ));return _gbb ;};func (_ded *PSProgram )String ()string {_da :="\u007b\u0020";for _ ,_gac :=range *_ded {_da +=_gac .String ();_da +="\u0020";};_da +="\u007d";return _da ;};func (_baa *PSOperand )xor (_gfgg *PSStack )error {_fff ,_dgd :=_gfgg .Pop (); -if _dgd !=nil {return _dgd ;};_bfga ,_dgd :=_gfgg .Pop ();if _dgd !=nil {return _dgd ;};if _fefa ,_ceef :=_fff .(*PSBoolean );_ceef {_bgaa ,_acf :=_bfga .(*PSBoolean );if !_acf {return ErrTypeCheck ;};_dgd =_gfgg .Push (MakeBool (_fefa .Val !=_bgaa .Val )); -return _dgd ;};if _cfg ,_bdef :=_fff .(*PSInteger );_bdef {_gdff ,_gec :=_bfga .(*PSInteger );if !_gec {return ErrTypeCheck ;};_dgd =_gfgg .Push (MakeInteger (_cfg .Val ^_gdff .Val ));return _dgd ;};return ErrTypeCheck ;};func (_deee *PSOperand )index (_ccgb *PSStack )error {_dda ,_cgff :=_ccgb .Pop (); -if _cgff !=nil {return _cgff ;};_gff ,_ebf :=_dda .(*PSInteger );if !_ebf {return ErrTypeCheck ;};if _gff .Val < 0{return ErrRangeCheck ;};if _gff .Val > len (*_ccgb )-1{return ErrStackUnderflow ;};_bfe :=(*_ccgb )[len (*_ccgb )-1-_gff .Val ];_cgff =_ccgb .Push (_bfe .Duplicate ()); -return _cgff ;};func (_gcbc *PSOperand )exch (_bdb *PSStack )error {_dba ,_cffd :=_bdb .Pop ();if _cffd !=nil {return _cffd ;};_dcgg ,_cffd :=_bdb .Pop ();if _cffd !=nil {return _cffd ;};_cffd =_bdb .Push (_dba );if _cffd !=nil {return _cffd ;};_cffd =_bdb .Push (_dcgg ); -return _cffd ;}; +// NewPSProgram returns an empty, initialized PSProgram. +func NewPSProgram ()*PSProgram {return &PSProgram {}};func _bbbe (_eed int )int {if _eed < 0{return -_eed ;};return _eed ;}; -// PopNumberAsFloat64 pops and return the numeric value of the top of the stack as a float64. -// Real or integer only. -func (_cbg *PSStack )PopNumberAsFloat64 ()(float64 ,error ){_cdec ,_gecd :=_cbg .Pop ();if _gecd !=nil {return 0,_gecd ;};if _baeb ,_egcb :=_cdec .(*PSReal );_egcb {return _baeb .Val ,nil ;}else if _bgdc ,_ccb :=_cdec .(*PSInteger );_ccb {return float64 (_bgdc .Val ),nil ; -}else {return 0,ErrTypeCheck ;};}; +// PSStack defines a stack of PSObjects. PSObjects can be pushed on or pull from the stack. +type PSStack []PSObject ;func (_aebd *PSOperand )ifelse (_ege *PSStack )error {_dba ,_gbgg :=_ege .Pop ();if _gbgg !=nil {return _gbgg ;};_bca ,_gbgg :=_ege .Pop ();if _gbgg !=nil {return _gbgg ;};_eee ,_gbgg :=_ege .Pop ();if _gbgg !=nil {return _gbgg ; +};_be ,_eag :=_dba .(*PSProgram );if !_eag {return ErrTypeCheck ;};_fgd ,_eag :=_bca .(*PSProgram );if !_eag {return ErrTypeCheck ;};_dfeb ,_eag :=_eee .(*PSBoolean );if !_eag {return ErrTypeCheck ;};if _dfeb .Val {_fce :=_fgd .Exec (_ege );return _fce ; +};_gbgg =_be .Exec (_ege );return _gbgg ;};func (_dedf *PSOperand )floor (_ccb *PSStack )error {_cdf ,_fe :=_ccb .Pop ();if _fe !=nil {return _fe ;};if _bcg ,_ce :=_cdf .(*PSReal );_ce {_fe =_ccb .Push (MakeReal (_gbg .Floor (_bcg .Val )));}else if _eff ,_aag :=_cdf .(*PSInteger ); +_aag {_fe =_ccb .Push (MakeInteger (_eff .Val ));}else {return ErrTypeCheck ;};return _fe ;};var ErrUnsupportedOperand =_c .New ("\u0075\u006e\u0073\u0075pp\u006f\u0072\u0074\u0065\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064");func (_ece *PSBoolean )Duplicate ()PSObject {_cddd :=PSBoolean {}; +_cddd .Val =_ece .Val ;return &_cddd ;};func (_adb *PSOperand )DebugString ()string {return _f .Sprintf ("\u006fp\u003a\u0027\u0025\u0073\u0027",*_adb );};func (_ecf *PSOperand )add (_fd *PSStack )error {_bfb ,_geg :=_fd .Pop ();if _geg !=nil {return _geg ; +};_eae ,_geg :=_fd .Pop ();if _geg !=nil {return _geg ;};_ee ,_gbgb :=_bfb .(*PSReal );_bb ,_da :=_bfb .(*PSInteger );if !_gbgb &&!_da {return ErrTypeCheck ;};_fcb ,_cff :=_eae .(*PSReal );_bg ,_dbb :=_eae .(*PSInteger );if !_cff &&!_dbb {return ErrTypeCheck ; +};if _da &&_dbb {_ffggc :=_bb .Val +_bg .Val ;_fdg :=_fd .Push (MakeInteger (_ffggc ));return _fdg ;};var _dgd float64 ;if _gbgb {_dgd =_ee .Val ;}else {_dgd =float64 (_bb .Val );};if _cff {_dgd +=_fcb .Val ;}else {_dgd +=float64 (_bg .Val );};_geg =_fd .Push (MakeReal (_dgd )); +return _geg ;}; -// PSOperand represents a Postscript operand (text string). -type PSOperand string ; +// PSReal represents a real number. +type PSReal struct{Val float64 ;}; -// Exec executes the program, typically leaving output values on the stack. -func (_fa *PSProgram )Exec (stack *PSStack )error {for _ ,_acb :=range *_fa {var _gcf error ;switch _bda :=_acb .(type ){case *PSInteger :_eg :=_bda ;_gcf =stack .Push (_eg );case *PSReal :_gab :=_bda ;_gcf =stack .Push (_gab );case *PSBoolean :_aag :=_bda ; -_gcf =stack .Push (_aag );case *PSProgram :_gd :=_bda ;_gcf =stack .Push (_gd );case *PSOperand :_bae :=_bda ;_gcf =_bae .Exec (stack );default:return ErrTypeCheck ;};if _gcf !=nil {return _gcf ;};};return nil ;}; +// PSParser is a basic Postscript parser. +type PSParser struct{_dcff *_gba .Reader }; -// String returns a string representation of the stack. -func (_faf *PSStack )String ()string {_aedd :="\u005b\u0020";for _ ,_gdbb :=range *_faf {_aedd +=_gdbb .String ();_aedd +="\u0020";};_aedd +="\u005d";return _aedd ;};func (_cbc *PSOperand )roll (_afc *PSStack )error {_aebf ,_fdbg :=_afc .Pop ();if _fdbg !=nil {return _fdbg ; -};_aef ,_fdbg :=_afc .Pop ();if _fdbg !=nil {return _fdbg ;};_adag ,_afad :=_aebf .(*PSInteger );if !_afad {return ErrTypeCheck ;};_bdfe ,_afad :=_aef .(*PSInteger );if !_afad {return ErrTypeCheck ;};if _bdfe .Val < 0{return ErrRangeCheck ;};if _bdfe .Val ==0||_bdfe .Val ==1{return nil ; -};if _bdfe .Val > len (*_afc ){return ErrStackUnderflow ;};for _dbc :=0;_dbc < _cfb (_adag .Val );_dbc ++{var _bbec []PSObject ;_bbec =(*_afc )[len (*_afc )-(_bdfe .Val ):len (*_afc )];if _adag .Val > 0{_gfdfc :=_bbec [len (_bbec )-1];_bbec =append ([]PSObject {_gfdfc },_bbec [0:len (_bbec )-1]...); -}else {_eaga :=_bbec [len (_bbec )-_bdfe .Val ];_bbec =append (_bbec [1:],_eaga );};_gdcb :=append ((*_afc )[0:len (*_afc )-_bdfe .Val ],_bbec ...);_afc =&_gdcb ;};return nil ;};var ErrTypeCheck =_g .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +// Empty empties the stack. +func (_adga *PSStack )Empty (){*_adga =[]PSObject {}};func (_deg *PSOperand )String ()string {return string (*_deg )};func (_gefe *PSOperand )log (_eec *PSStack )error {_fdeb ,_aacf :=_eec .PopNumberAsFloat64 ();if _aacf !=nil {return _aacf ;};_acbf :=_gbg .Log10 (_fdeb ); +_aacf =_eec .Push (MakeReal (_acbf ));return _aacf ;};func (_bga *PSOperand )neg (_fgg *PSStack )error {_gde ,_dga :=_fgg .Pop ();if _dga !=nil {return _dga ;};if _bada ,_efd :=_gde .(*PSReal );_efd {_dga =_fgg .Push (MakeReal (-_bada .Val ));return _dga ; +}else if _cdcg ,_bde :=_gde .(*PSInteger );_bde {_dga =_fgg .Push (MakeInteger (-_cdcg .Val ));return _dga ;}else {return ErrTypeCheck ;};}; +// Exec executes the operand `op` in the state specified by `stack`. +func (_aea *PSOperand )Exec (stack *PSStack )error {_db :=ErrUnsupportedOperand ;switch *_aea {case "\u0061\u0062\u0073":_db =_aea .abs (stack );case "\u0061\u0064\u0064":_db =_aea .add (stack );case "\u0061\u006e\u0064":_db =_aea .and (stack );case "\u0061\u0074\u0061\u006e":_db =_aea .atan (stack ); +case "\u0062\u0069\u0074\u0073\u0068\u0069\u0066\u0074":_db =_aea .bitshift (stack );case "\u0063e\u0069\u006c\u0069\u006e\u0067":_db =_aea .ceiling (stack );case "\u0063\u006f\u0070\u0079":_db =_aea .copy (stack );case "\u0063\u006f\u0073":_db =_aea .cos (stack ); +case "\u0063\u0076\u0069":_db =_aea .cvi (stack );case "\u0063\u0076\u0072":_db =_aea .cvr (stack );case "\u0064\u0069\u0076":_db =_aea .div (stack );case "\u0064\u0075\u0070":_db =_aea .dup (stack );case "\u0065\u0071":_db =_aea .eq (stack );case "\u0065\u0078\u0063\u0068":_db =_aea .exch (stack ); +case "\u0065\u0078\u0070":_db =_aea .exp (stack );case "\u0066\u006c\u006fo\u0072":_db =_aea .floor (stack );case "\u0067\u0065":_db =_aea .ge (stack );case "\u0067\u0074":_db =_aea .gt (stack );case "\u0069\u0064\u0069\u0076":_db =_aea .idiv (stack ); +case "\u0069\u0066":_db =_aea .ifCondition (stack );case "\u0069\u0066\u0065\u006c\u0073\u0065":_db =_aea .ifelse (stack );case "\u0069\u006e\u0064e\u0078":_db =_aea .index (stack );case "\u006c\u0065":_db =_aea .le (stack );case "\u006c\u006f\u0067":_db =_aea .log (stack ); +case "\u006c\u006e":_db =_aea .ln (stack );case "\u006c\u0074":_db =_aea .lt (stack );case "\u006d\u006f\u0064":_db =_aea .mod (stack );case "\u006d\u0075\u006c":_db =_aea .mul (stack );case "\u006e\u0065":_db =_aea .ne (stack );case "\u006e\u0065\u0067":_db =_aea .neg (stack ); +case "\u006e\u006f\u0074":_db =_aea .not (stack );case "\u006f\u0072":_db =_aea .or (stack );case "\u0070\u006f\u0070":_db =_aea .pop (stack );case "\u0072\u006f\u0075n\u0064":_db =_aea .round (stack );case "\u0072\u006f\u006c\u006c":_db =_aea .roll (stack ); +case "\u0073\u0069\u006e":_db =_aea .sin (stack );case "\u0073\u0071\u0072\u0074":_db =_aea .sqrt (stack );case "\u0073\u0075\u0062":_db =_aea .sub (stack );case "\u0074\u0072\u0075\u006e\u0063\u0061\u0074\u0065":_db =_aea .truncate (stack );case "\u0078\u006f\u0072":_db =_aea .xor (stack ); +};return _db ;};func (_debd *PSOperand )ceiling (_dfe *PSStack )error {_adf ,_dcc :=_dfe .Pop ();if _dcc !=nil {return _dcc ;};if _cadf ,_cafb :=_adf .(*PSReal );_cafb {_dcc =_dfe .Push (MakeReal (_gbg .Ceil (_cadf .Val )));}else if _bdc ,_dae :=_adf .(*PSInteger ); +_dae {_dcc =_dfe .Push (MakeInteger (_bdc .Val ));}else {_dcc =ErrTypeCheck ;};return _dcc ;};var ErrTypeCheck =_c .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");func (_cabb *PSOperand )eq (_cga *PSStack )error {_bfcb ,_bcc :=_cga .Pop (); +if _bcc !=nil {return _bcc ;};_acb ,_bcc :=_cga .Pop ();if _bcc !=nil {return _bcc ;};_abf ,_ffad :=_bfcb .(*PSBoolean );_dag ,_aeba :=_acb .(*PSBoolean );if _ffad ||_aeba {var _bfa error ;if _ffad &&_aeba {_bfa =_cga .Push (MakeBool (_abf .Val ==_dag .Val )); +}else {_bfa =_cga .Push (MakeBool (false ));};return _bfa ;};var _cdc float64 ;var _cbg float64 ;if _aaf ,_bce :=_bfcb .(*PSInteger );_bce {_cdc =float64 (_aaf .Val );}else if _bfbe ,_cda :=_bfcb .(*PSReal );_cda {_cdc =_bfbe .Val ;}else {return ErrTypeCheck ; +};if _dbg ,_bab :=_acb .(*PSInteger );_bab {_cbg =float64 (_dbg .Val );}else if _ccg ,_cgec :=_acb .(*PSReal );_cgec {_cbg =_ccg .Val ;}else {return ErrTypeCheck ;};if _gbg .Abs (_cbg -_cdc )< _cf {_bcc =_cga .Push (MakeBool (true ));}else {_bcc =_cga .Push (MakeBool (false )); +};return _bcc ;}; -// MakeReal returns a new PSReal object initialized with `val`. -func MakeReal (val float64 )*PSReal {_edaf :=PSReal {};_edaf .Val =val ;return &_edaf };var ErrStackUnderflow =_g .New ("\u0073t\u0061c\u006b\u0020\u0075\u006e\u0064\u0065\u0072\u0066\u006c\u006f\u0077");func (_cfcf *PSOperand )truncate (_cda *PSStack )error {_gge ,_ggf :=_cda .Pop (); -if _ggf !=nil {return _ggf ;};if _dadfd ,_gbge :=_gge .(*PSReal );_gbge {_cfac :=int (_dadfd .Val );_ggf =_cda .Push (MakeReal (float64 (_cfac )));}else if _gea ,_aca :=_gge .(*PSInteger );_aca {_ggf =_cda .Push (MakeInteger (_gea .Val ));}else {return ErrTypeCheck ; -};return _ggf ;};func (_ebe *PSOperand )atan (_fda *PSStack )error {_cd ,_def :=_fda .PopNumberAsFloat64 ();if _def !=nil {return _def ;};_dag ,_def :=_fda .PopNumberAsFloat64 ();if _def !=nil {return _def ;};if _cd ==0{var _ag error ;if _dag < 0{_ag =_fda .Push (MakeReal (270)); -}else {_ag =_fda .Push (MakeReal (90));};return _ag ;};_bfg :=_dag /_cd ;_ggc :=_c .Atan (_bfg )*180/_c .Pi ;_def =_fda .Push (MakeReal (_ggc ));return _def ;};func (_cb *PSOperand )add (_adg *PSStack )error {_ebc ,_afe :=_adg .Pop ();if _afe !=nil {return _afe ; -};_cga ,_afe :=_adg .Pop ();if _afe !=nil {return _afe ;};_bab ,_bgb :=_ebc .(*PSReal );_cab ,_baec :=_ebc .(*PSInteger );if !_bgb &&!_baec {return ErrTypeCheck ;};_fag ,_bddf :=_cga .(*PSReal );_dffc ,_dgf :=_cga .(*PSInteger );if !_bddf &&!_dgf {return ErrTypeCheck ; -};if _baec &&_dgf {_dffg :=_cab .Val +_dffc .Val ;_ega :=_adg .Push (MakeInteger (_dffg ));return _ega ;};var _bc float64 ;if _bgb {_bc =_bab .Val ;}else {_bc =float64 (_cab .Val );};if _bddf {_bc +=_fag .Val ;}else {_bc +=float64 (_dffc .Val );};_afe =_adg .Push (MakeReal (_bc )); -return _afe ;}; +// MakeOperand returns a new PSOperand object based on string `val`. +func MakeOperand (val string )*PSOperand {_ccc :=PSOperand (val );return &_ccc };var ErrStackUnderflow =_c .New ("\u0073t\u0061c\u006b\u0020\u0075\u006e\u0064\u0065\u0072\u0066\u006c\u006f\u0077");func (_bag *PSOperand )abs (_ea *PSStack )error {_ga ,_cb :=_ea .Pop (); +if _cb !=nil {return _cb ;};if _gec ,_cc :=_ga .(*PSReal );_cc {_ed :=_gec .Val ;if _ed < 0{_cb =_ea .Push (MakeReal (-_ed ));}else {_cb =_ea .Push (MakeReal (_ed ));};}else if _bd ,_deb :=_ga .(*PSInteger );_deb {_gea :=_bd .Val ;if _gea < 0{_cb =_ea .Push (MakeInteger (-_gea )); +}else {_cb =_ea .Push (MakeInteger (_gea ));};}else {return ErrTypeCheck ;};return _cb ;};func (_cbe *PSOperand )idiv (_bagb *PSStack )error {_adfb ,_bdf :=_bagb .Pop ();if _bdf !=nil {return _bdf ;};_fec ,_bdf :=_bagb .Pop ();if _bdf !=nil {return _bdf ; +};_ggd ,_bccc :=_adfb .(*PSInteger );if !_bccc {return ErrTypeCheck ;};if _ggd .Val ==0{return ErrUndefinedResult ;};_cgab ,_bccc :=_fec .(*PSInteger );if !_bccc {return ErrTypeCheck ;};_gfd :=_cgab .Val /_ggd .Val ;_bdf =_bagb .Push (MakeInteger (_gfd )); +return _bdf ;};func (_cfae *PSOperand )mod (_dffe *PSStack )error {_agcd ,_bcee :=_dffe .Pop ();if _bcee !=nil {return _bcee ;};_fgcf ,_bcee :=_dffe .Pop ();if _bcee !=nil {return _bcee ;};_dde ,_cdbe :=_agcd .(*PSInteger );if !_cdbe {return ErrTypeCheck ; +};if _dde .Val ==0{return ErrUndefinedResult ;};_dbbg ,_cdbe :=_fgcf .(*PSInteger );if !_cdbe {return ErrTypeCheck ;};_fgf :=_dbbg .Val %_dde .Val ;_bcee =_dffe .Push (MakeInteger (_fgf ));return _bcee ;};func (_dfd *PSOperand )atan (_abdc *PSStack )error {_gda ,_dab :=_abdc .PopNumberAsFloat64 (); +if _dab !=nil {return _dab ;};_agf ,_dab :=_abdc .PopNumberAsFloat64 ();if _dab !=nil {return _dab ;};if _gda ==0{var _dd error ;if _agf < 0{_dd =_abdc .Push (MakeReal (270));}else {_dd =_abdc .Push (MakeReal (90));};return _dd ;};_fbg :=_agf /_gda ;_aba :=_gbg .Atan (_fbg )*180/_gbg .Pi ; +_dab =_abdc .Push (MakeReal (_aba ));return _dab ;}; // NewPSParser returns a new instance of the PDF Postscript parser from input data. -func NewPSParser (content []byte )*PSParser {_cfcg :=PSParser {};_deg :=_e .NewBuffer (content );_cfcg ._aba =_b .NewReader (_deg );return &_cfcg ;}; +func NewPSParser (content []byte )*PSParser {_cbcb :=PSParser {};_dddc :=_gb .NewBuffer (content );_cbcb ._dcff =_gba .NewReader (_dddc );return &_cbcb ;};func (_ag *PSReal )Duplicate ()PSObject {_ec :=PSReal {};_ec .Val =_ag .Val ;return &_ec }; -// PSObjectArrayToFloat64Array converts []PSObject into a []float64 array. Each PSObject must represent a number, -// otherwise a ErrTypeCheck error occurs. -func PSObjectArrayToFloat64Array (objects []PSObject )([]float64 ,error ){var _ae []float64 ;for _ ,_fe :=range objects {if _de ,_ab :=_fe .(*PSInteger );_ab {_ae =append (_ae ,float64 (_de .Val ));}else if _ee ,_eb :=_fe .(*PSReal );_eb {_ae =append (_ae ,_ee .Val ); -}else {return nil ,ErrTypeCheck ;};};return _ae ,nil ;}; - -// PSReal represents a real number. -type PSReal struct{Val float64 ;};func (_fcf *PSOperand )or (_fdf *PSStack )error {_dbe ,_fac :=_fdf .Pop ();if _fac !=nil {return _fac ;};_gggd ,_fac :=_fdf .Pop ();if _fac !=nil {return _fac ;};if _afaa ,_afaag :=_dbe .(*PSBoolean );_afaag {_afff ,_dbfa :=_gggd .(*PSBoolean ); -if !_dbfa {return ErrTypeCheck ;};_fac =_fdf .Push (MakeBool (_afaa .Val ||_afff .Val ));return _fac ;};if _gdf ,_dcc :=_dbe .(*PSInteger );_dcc {_ceed ,_cbff :=_gggd .(*PSInteger );if !_cbff {return ErrTypeCheck ;};_fac =_fdf .Push (MakeInteger (_gdf .Val |_ceed .Val )); -return _fac ;};return ErrTypeCheck ;}; - -// Execute executes the program for an input parameters `objects` and returns a slice of output objects. -func (_cc *PSExecutor )Execute (objects []PSObject )([]PSObject ,error ){for _ ,_ba :=range objects {_fg :=_cc .Stack .Push (_ba );if _fg !=nil {return nil ,_fg ;};};_cf :=_cc ._d .Exec (_cc .Stack );if _cf !=nil {_a .Log .Debug ("\u0045x\u0065c\u0020\u0066\u0061\u0069\u006c\u0065\u0064\u003a\u0020\u0025\u0076",_cf ); -return nil ,_cf ;};_fc :=[]PSObject (*_cc .Stack );_cc .Stack .Empty ();return _fc ,nil ;};func (_dff *PSOperand )Duplicate ()PSObject {_cfcd :=*_dff ;return &_cfcd }; +// NewPSStack returns an initialized PSStack. +func NewPSStack ()*PSStack {return &PSStack {}};func (_gbcb *PSParser )parseNumber ()(PSObject ,error ){_ead ,_aae :=_ca .ParseNumber (_gbcb ._dcff );if _aae !=nil {return nil ,_aae ;};switch _ecac :=_ead .(type ){case *_ca .PdfObjectFloat :return MakeReal (float64 (*_ecac )),nil ; +case *_ca .PdfObjectInteger :return MakeInteger (int (*_ecac )),nil ;};return nil ,_f .Errorf ("\u0075n\u0068\u0061\u006e\u0064\u006c\u0065\u0064\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0054",_ead );};func (_dcf *PSOperand )cvr (_cdb *PSStack )error {_edad ,_gbb :=_cdb .Pop (); +if _gbb !=nil {return _gbb ;};if _abab ,_baa :=_edad .(*PSReal );_baa {_gbb =_cdb .Push (MakeReal (_abab .Val ));}else if _ef ,_gfc :=_edad .(*PSInteger );_gfc {_gbb =_cdb .Push (MakeReal (float64 (_ef .Val )));}else {return ErrTypeCheck ;};return _gbb ; +};func (_ecbf *PSOperand )sin (_gffa *PSStack )error {_ffae ,_dacc :=_gffa .PopNumberAsFloat64 ();if _dacc !=nil {return _dacc ;};_gaed :=_gbg .Sin (_ffae *_gbg .Pi /180.0);_dacc =_gffa .Push (MakeReal (_gaed ));return _dacc ;};func (_aa *PSOperand )cvi (_eca *PSStack )error {_abg ,_gca :=_eca .Pop (); +if _gca !=nil {return _gca ;};if _cfa ,_fde :=_abg .(*PSReal );_fde {_cge :=int (_cfa .Val );_gca =_eca .Push (MakeInteger (_cge ));}else if _gf ,_fgca :=_abg .(*PSInteger );_fgca {_fac :=_gf .Val ;_gca =_eca .Push (MakeInteger (_fac ));}else {return ErrTypeCheck ; +};return _gca ;}; -// DebugString returns a descriptive string representation of the stack - intended for debugging. -func (_aagb *PSStack )DebugString ()string {_cdgg :="\u005b\u0020";for _ ,_eggc :=range *_aagb {_cdgg +=_eggc .DebugString ();_cdgg +="\u0020";};_cdgg +="\u005d";return _cdgg ;};func (_bdf *PSProgram )Duplicate ()PSObject {_gcg :=&PSProgram {};for _ ,_ccg :=range *_bdf {_gcg .Append (_ccg .Duplicate ()); -};return _gcg ;}; +// PSOperand represents a Postscript operand (text string). +type PSOperand string ;var ErrUndefinedResult =_c .New ("\u0075\u006e\u0064\u0065fi\u006e\u0065\u0064\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u0065\u0072\u0072o\u0072");func (_ad *PSInteger )String ()string {return _f .Sprintf ("\u0025\u0064",_ad .Val )}; +func (_af *PSProgram )Duplicate ()PSObject {_afd :=&PSProgram {};for _ ,_ada :=range *_af {_afd .Append (_ada .Duplicate ());};return _afd ;}; -// PSInteger represents an integer. -type PSInteger struct{Val int ;}; +// PSProgram defines a Postscript program which is a series of PS objects (arguments, commands, programs etc). +type PSProgram []PSObject ;func (_aed *PSOperand )copy (_fgc *PSStack )error {_dgeg ,_eaec :=_fgc .PopInteger ();if _eaec !=nil {return _eaec ;};if _dgeg < 0{return ErrRangeCheck ;};if _dgeg > len (*_fgc ){return ErrRangeCheck ;};*_fgc =append (*_fgc ,(*_fgc )[len (*_fgc )-_dgeg :]...); +return nil ;}; -// Exec executes the operand `op` in the state specified by `stack`. -func (_bfc *PSOperand )Exec (stack *PSStack )error {_bdd :=ErrUnsupportedOperand ;switch *_bfc {case "\u0061\u0062\u0073":_bdd =_bfc .abs (stack );case "\u0061\u0064\u0064":_bdd =_bfc .add (stack );case "\u0061\u006e\u0064":_bdd =_bfc .and (stack );case "\u0061\u0074\u0061\u006e":_bdd =_bfc .atan (stack ); -case "\u0062\u0069\u0074\u0073\u0068\u0069\u0066\u0074":_bdd =_bfc .bitshift (stack );case "\u0063e\u0069\u006c\u0069\u006e\u0067":_bdd =_bfc .ceiling (stack );case "\u0063\u006f\u0070\u0079":_bdd =_bfc .copy (stack );case "\u0063\u006f\u0073":_bdd =_bfc .cos (stack ); -case "\u0063\u0076\u0069":_bdd =_bfc .cvi (stack );case "\u0063\u0076\u0072":_bdd =_bfc .cvr (stack );case "\u0064\u0069\u0076":_bdd =_bfc .div (stack );case "\u0064\u0075\u0070":_bdd =_bfc .dup (stack );case "\u0065\u0071":_bdd =_bfc .eq (stack );case "\u0065\u0078\u0063\u0068":_bdd =_bfc .exch (stack ); -case "\u0065\u0078\u0070":_bdd =_bfc .exp (stack );case "\u0066\u006c\u006fo\u0072":_bdd =_bfc .floor (stack );case "\u0067\u0065":_bdd =_bfc .ge (stack );case "\u0067\u0074":_bdd =_bfc .gt (stack );case "\u0069\u0064\u0069\u0076":_bdd =_bfc .idiv (stack ); -case "\u0069\u0066":_bdd =_bfc .ifCondition (stack );case "\u0069\u0066\u0065\u006c\u0073\u0065":_bdd =_bfc .ifelse (stack );case "\u0069\u006e\u0064e\u0078":_bdd =_bfc .index (stack );case "\u006c\u0065":_bdd =_bfc .le (stack );case "\u006c\u006f\u0067":_bdd =_bfc .log (stack ); -case "\u006c\u006e":_bdd =_bfc .ln (stack );case "\u006c\u0074":_bdd =_bfc .lt (stack );case "\u006d\u006f\u0064":_bdd =_bfc .mod (stack );case "\u006d\u0075\u006c":_bdd =_bfc .mul (stack );case "\u006e\u0065":_bdd =_bfc .ne (stack );case "\u006e\u0065\u0067":_bdd =_bfc .neg (stack ); -case "\u006e\u006f\u0074":_bdd =_bfc .not (stack );case "\u006f\u0072":_bdd =_bfc .or (stack );case "\u0070\u006f\u0070":_bdd =_bfc .pop (stack );case "\u0072\u006f\u0075n\u0064":_bdd =_bfc .round (stack );case "\u0072\u006f\u006c\u006c":_bdd =_bfc .roll (stack ); -case "\u0073\u0069\u006e":_bdd =_bfc .sin (stack );case "\u0073\u0071\u0072\u0074":_bdd =_bfc .sqrt (stack );case "\u0073\u0075\u0062":_bdd =_bfc .sub (stack );case "\u0074\u0072\u0075\u006e\u0063\u0061\u0074\u0065":_bdd =_bfc .truncate (stack );case "\u0078\u006f\u0072":_bdd =_bfc .xor (stack ); -};return _bdd ;}; +// MakeReal returns a new PSReal object initialized with `val`. +func MakeReal (val float64 )*PSReal {_gfe :=PSReal {};_gfe .Val =val ;return &_gfe }; -// Empty empties the stack. -func (_geab *PSStack )Empty (){*_geab =[]PSObject {}};func (_egc *PSOperand )and (_caf *PSStack )error {_cff ,_gaec :=_caf .Pop ();if _gaec !=nil {return _gaec ;};_fcd ,_gaec :=_caf .Pop ();if _gaec !=nil {return _gaec ;};if _fgf ,_cag :=_cff .(*PSBoolean ); -_cag {_bbc ,_dfb :=_fcd .(*PSBoolean );if !_dfb {return ErrTypeCheck ;};_gaec =_caf .Push (MakeBool (_fgf .Val &&_bbc .Val ));return _gaec ;};if _gfc ,_bcg :=_cff .(*PSInteger );_bcg {_fdg ,_gcb :=_fcd .(*PSInteger );if !_gcb {return ErrTypeCheck ;};_gaec =_caf .Push (MakeInteger (_gfc .Val &_fdg .Val )); -return _gaec ;};return ErrTypeCheck ;};func (_bfa *PSParser )parseFunction ()(*PSProgram ,error ){_egd ,_ :=_bfa ._aba .ReadByte ();if _egd !='{'{return nil ,_g .New ("\u0069\u006ev\u0061\u006c\u0069d\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e"); -};_ecd :=NewPSProgram ();for {_bfa .skipSpaces ();_bfa .skipComments ();_aab ,_ddeg :=_bfa ._aba .Peek (2);if _ddeg !=nil {if _ddeg ==_gc .EOF {break ;};return nil ,_ddeg ;};_a .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_aab )); -if _aab [0]=='}'{_a .Log .Trace ("\u0045\u004f\u0046 \u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_bfa ._aba .ReadByte ();break ;}else if _aab [0]=='{'{_a .Log .Trace ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006e!");_cbbd ,_ffff :=_bfa .parseFunction (); -if _ffff !=nil {return nil ,_ffff ;};_ecd .Append (_cbbd );}else if _be .IsDecimalDigit (_aab [0])||(_aab [0]=='-'&&_be .IsDecimalDigit (_aab [1])){_a .Log .Trace ("\u002d>\u004e\u0075\u006d\u0062\u0065\u0072!");_fdad ,_dgg :=_bfa .parseNumber ();if _dgg !=nil {return nil ,_dgg ; -};_ecd .Append (_fdad );}else {_a .Log .Trace ("\u002d>\u004fp\u0065\u0072\u0061\u006e\u0064 \u006f\u0072 \u0062\u006f\u006f\u006c\u003f");_aab ,_ =_bfa ._aba .Peek (5);_dabb :=string (_aab );_a .Log .Trace ("\u0050\u0065\u0065k\u0020\u0073\u0074\u0072\u003a\u0020\u0025\u0073",_dabb ); -if (len (_dabb )> 4)&&(_dabb [:5]=="\u0066\u0061\u006cs\u0065"){_aaec ,_fdff :=_bfa .parseBool ();if _fdff !=nil {return nil ,_fdff ;};_ecd .Append (_aaec );}else if (len (_dabb )> 3)&&(_dabb [:4]=="\u0074\u0072\u0075\u0065"){_ggcc ,_fga :=_bfa .parseBool (); -if _fga !=nil {return nil ,_fga ;};_ecd .Append (_ggcc );}else {_dcge ,_bdae :=_bfa .parseOperand ();if _bdae !=nil {return nil ,_bdae ;};_ecd .Append (_dcge );};};};return _ecd ,nil ;};func _cfb (_dcb int )int {if _dcb < 0{return -_dcb ;};return _dcb ; -}; +// Parse parses the postscript and store as a program that can be executed. +func (_dbd *PSParser )Parse ()(*PSProgram ,error ){_dbd .skipSpaces ();_cfdd ,_cgc :=_dbd ._dcff .Peek (2);if _cgc !=nil {return nil ,_cgc ;};if _cfdd [0]!='{'{return nil ,_c .New ("\u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0050\u0053\u0020\u0050\u0072\u006f\u0067\u0072\u0061\u006d\u0020\u006e\u006f\u0074\u0020\u0073t\u0061\u0072\u0074\u0069\u006eg\u0020\u0077i\u0074\u0068\u0020\u007b"); +};_agd ,_cgc :=_dbd .parseFunction ();if _cgc !=nil &&_cgc !=_a .EOF {return nil ,_cgc ;};return _agd ,_cgc ;};func (_fdc *PSOperand )and (_faa *PSStack )error {_ggc ,_debc :=_faa .Pop ();if _debc !=nil {return _debc ;};_dgbg ,_debc :=_faa .Pop ();if _debc !=nil {return _debc ; +};if _eda ,_bfg :=_ggc .(*PSBoolean );_bfg {_fca ,_eaf :=_dgbg .(*PSBoolean );if !_eaf {return ErrTypeCheck ;};_debc =_faa .Push (MakeBool (_eda .Val &&_fca .Val ));return _debc ;};if _cad ,_dbf :=_ggc .(*PSInteger );_dbf {_bba ,_bad :=_dgbg .(*PSInteger ); +if !_bad {return ErrTypeCheck ;};_debc =_faa .Push (MakeInteger (_cad .Val &_bba .Val ));return _debc ;};return ErrTypeCheck ;};func (_afa *PSOperand )bitshift (_degf *PSStack )error {_cfd ,_caf :=_degf .PopInteger ();if _caf !=nil {return _caf ;};_ggcg ,_caf :=_degf .PopInteger (); +if _caf !=nil {return _caf ;};var _ffa int ;if _cfd >=0{_ffa =_ggcg <>uint (-_cfd );};_caf =_degf .Push (MakeInteger (_ffa ));return _caf ;};var ErrStackOverflow =_c .New ("\u0073\u0074\u0061\u0063\u006b\u0020\u006f\u0076\u0065r\u0066\u006c\u006f\u0077"); +func (_bcgg *PSOperand )not (_ecg *PSStack )error {_bac ,_aebg :=_ecg .Pop ();if _aebg !=nil {return _aebg ;};if _ebe ,_cfcb :=_bac .(*PSBoolean );_cfcb {_aebg =_ecg .Push (MakeBool (!_ebe .Val ));return _aebg ;}else if _cbc ,_dgegc :=_bac .(*PSInteger ); +_dgegc {_aebg =_ecg .Push (MakeInteger (^_cbc .Val ));return _aebg ;}else {return ErrTypeCheck ;};};func (_dbc *PSOperand )exch (_bbd *PSStack )error {_ded ,_dgdf :=_bbd .Pop ();if _dgdf !=nil {return _dgdf ;};_cfb ,_dgdf :=_bbd .Pop ();if _dgdf !=nil {return _dgdf ; +};_dgdf =_bbd .Push (_ded );if _dgdf !=nil {return _dgdf ;};_dgdf =_bbd .Push (_cfb );return _dgdf ;};func (_efe *PSParser )parseBool ()(*PSBoolean ,error ){_gaec ,_ecfe :=_efe ._dcff .Peek (4);if _ecfe !=nil {return MakeBool (false ),_ecfe ;};if (len (_gaec )>=4)&&(string (_gaec [:4])=="\u0074\u0072\u0075\u0065"){_efe ._dcff .Discard (4); +return MakeBool (true ),nil ;};_gaec ,_ecfe =_efe ._dcff .Peek (5);if _ecfe !=nil {return MakeBool (false ),_ecfe ;};if (len (_gaec )>=5)&&(string (_gaec [:5])=="\u0066\u0061\u006cs\u0065"){_efe ._dcff .Discard (5);return MakeBool (false ),nil ;};return MakeBool (false ),_c .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg"); +};func (_cba *PSOperand )ifCondition (_dac *PSStack )error {_fbf ,_geae :=_dac .Pop ();if _geae !=nil {return _geae ;};_adg ,_geae :=_dac .Pop ();if _geae !=nil {return _geae ;};_ggg ,_aac :=_fbf .(*PSProgram );if !_aac {return ErrTypeCheck ;};_gcdb ,_aac :=_adg .(*PSBoolean ); +if !_aac {return ErrTypeCheck ;};if _gcdb .Val {_dea :=_ggg .Exec (_dac );return _dea ;};return nil ;};func (_cgf *PSProgram )DebugString ()string {_cfe :="\u007b\u0020";for _ ,_ffg :=range *_cgf {_cfe +=_ffg .DebugString ();_cfe +="\u0020";};_cfe +="\u007d"; +return _cfe ;}; -// NewPSStack returns an initialized PSStack. -func NewPSStack ()*PSStack {return &PSStack {}}; +// Append appends an object to the PSProgram. +func (_eg *PSProgram )Append (obj PSObject ){*_eg =append (*_eg ,obj )}; -// MakeBool returns a new PSBoolean object initialized with `val`. -func MakeBool (val bool )*PSBoolean {_dgfa :=PSBoolean {};_dgfa .Val =val ;return &_dgfa }; +// DebugString returns a descriptive string representation of the stack - intended for debugging. +func (_eccbe *PSStack )DebugString ()string {_cfea :="\u005b\u0020";for _ ,_ebd :=range *_eccbe {_cfea +=_ebd .DebugString ();_cfea +="\u0020";};_cfea +="\u005d";return _cfea ;};func (_efc *PSOperand )pop (_dded *PSStack )error {_ ,_fdbf :=_dded .Pop (); +if _fdbf !=nil {return _fdbf ;};return nil ;}; -// PSBoolean represents a boolean value. -type PSBoolean struct{Val bool ;};func (_dbca *PSParser )skipComments ()error {if _ ,_fad :=_dbca .skipSpaces ();_fad !=nil {return _fad ;};_ecb :=true ;for {_bgab ,_bcaf :=_dbca ._aba .Peek (1);if _bcaf !=nil {_a .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_bcaf .Error ()); -return _bcaf ;};if _ecb &&_bgab [0]!='%'{return nil ;};_ecb =false ;if (_bgab [0]!='\r')&&(_bgab [0]!='\n'){_dbca ._aba .ReadByte ();}else {break ;};};return _dbca .skipComments ();}; +// String returns a string representation of the stack. +func (_edcc *PSStack )String ()string {_bfdc :="\u005b\u0020";for _ ,_ffbc :=range *_edcc {_bfdc +=_ffbc .String ();_bfdc +="\u0020";};_bfdc +="\u005d";return _bfdc ;}; -// Push pushes an object on top of the stack. -func (_dbec *PSStack )Push (obj PSObject )error {if len (*_dbec )> 100{return ErrStackOverflow ;};*_dbec =append (*_dbec ,obj );return nil ;};func (_eda *PSOperand )gt (_bbe *PSStack )error {_cbe ,_cgc :=_bbe .PopNumberAsFloat64 ();if _cgc !=nil {return _cgc ; -};_fefe ,_cgc :=_bbe .PopNumberAsFloat64 ();if _cgc !=nil {return _cgc ;};if _c .Abs (_fefe -_cbe )< _ac {_geb :=_bbe .Push (MakeBool (false ));return _geb ;}else if _fefe > _cbe {_febg :=_bbe .Push (MakeBool (true ));return _febg ;}else {_eab :=_bbe .Push (MakeBool (false )); -return _eab ;};};func (_bgddc *PSParser )parseNumber ()(PSObject ,error ){_aged ,_ddea :=_be .ParseNumber (_bgddc ._aba );if _ddea !=nil {return nil ,_ddea ;};switch _adfg :=_aged .(type ){case *_be .PdfObjectFloat :return MakeReal (float64 (*_adfg )),nil ; -case *_be .PdfObjectInteger :return MakeInteger (int (*_adfg )),nil ;};return nil ,_ce .Errorf ("\u0075n\u0068\u0061\u006e\u0064\u006c\u0065\u0064\u0020\u006e\u0075\u006db\u0065\u0072\u0020\u0074\u0079\u0070\u0065\u0020\u0025\u0054",_aged );}; +// PSInteger represents an integer. +type PSInteger struct{Val int ;};func (_aad *PSParser )parseOperand ()(*PSOperand ,error ){var _edb []byte ;for {_cdcga ,_bced :=_aad ._dcff .Peek (1);if _bced !=nil {if _bced ==_a .EOF {break ;};return nil ,_bced ;};if _ca .IsDelimiter (_cdcga [0]){break ; +};if _ca .IsWhiteSpace (_cdcga [0]){break ;};_aeafe ,_ :=_aad ._dcff .ReadByte ();_edb =append (_edb ,_aeafe );};if len (_edb )==0{return nil ,_c .New ("\u0069\u006e\u0076al\u0069\u0064\u0020\u006f\u0070\u0065\u0072\u0061\u006e\u0064\u0020\u0028\u0065\u006d\u0070\u0074\u0079\u0029"); +};return MakeOperand (string (_edb )),nil ;};func (_abc *PSParser )parseFunction ()(*PSProgram ,error ){_edfb ,_ :=_abc ._dcff .ReadByte ();if _edfb !='{'{return nil ,_c .New ("\u0069\u006ev\u0061\u006c\u0069d\u0020\u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e"); +};_cgdf :=NewPSProgram ();for {_abc .skipSpaces ();_abc .skipComments ();_egg ,_dfed :=_abc ._dcff .Peek (2);if _dfed !=nil {if _dfed ==_a .EOF {break ;};return nil ,_dfed ;};_e .Log .Trace ("\u0050e\u0065k\u0020\u0073\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_egg )); +if _egg [0]=='}'{_e .Log .Trace ("\u0045\u004f\u0046 \u0066\u0075\u006e\u0063\u0074\u0069\u006f\u006e");_abc ._dcff .ReadByte ();break ;}else if _egg [0]=='{'{_e .Log .Trace ("\u0046u\u006e\u0063\u0074\u0069\u006f\u006e!");_gegb ,_gfb :=_abc .parseFunction (); +if _gfb !=nil {return nil ,_gfb ;};_cgdf .Append (_gegb );}else if _ca .IsDecimalDigit (_egg [0])||(_egg [0]=='-'&&_ca .IsDecimalDigit (_egg [1])){_e .Log .Trace ("\u002d>\u004e\u0075\u006d\u0062\u0065\u0072!");_bgag ,_bbdg :=_abc .parseNumber ();if _bbdg !=nil {return nil ,_bbdg ; +};_cgdf .Append (_bgag );}else {_e .Log .Trace ("\u002d>\u004fp\u0065\u0072\u0061\u006e\u0064 \u006f\u0072 \u0062\u006f\u006f\u006c\u003f");_egg ,_ =_abc ._dcff .Peek (5);_fegg :=string (_egg );_e .Log .Trace ("\u0050\u0065\u0065k\u0020\u0073\u0074\u0072\u003a\u0020\u0025\u0073",_fegg ); +if (len (_fegg )> 4)&&(_fegg [:5]=="\u0066\u0061\u006cs\u0065"){_fgb ,_aagc :=_abc .parseBool ();if _aagc !=nil {return nil ,_aagc ;};_cgdf .Append (_fgb );}else if (len (_fegg )> 3)&&(_fegg [:4]=="\u0074\u0072\u0075\u0065"){_gcage ,_edc :=_abc .parseBool (); +if _edc !=nil {return nil ,_edc ;};_cgdf .Append (_gcage );}else {_dbec ,_fefb :=_abc .parseOperand ();if _fefb !=nil {return nil ,_fefb ;};_cgdf .Append (_dbec );};};};return _cgdf ,nil ;}; -// PSStack defines a stack of PSObjects. PSObjects can be pushed on or pull from the stack. -type PSStack []PSObject ;func (_dfea *PSOperand )ne (_cdg *PSStack )error {_cfd :=_dfea .eq (_cdg );if _cfd !=nil {return _cfd ;};_cfd =_dfea .not (_cdg );return _cfd ;}; +// Exec executes the program, typically leaving output values on the stack. +func (_cab *PSProgram )Exec (stack *PSStack )error {for _ ,_ffb :=range *_cab {var _dge error ;switch _def :=_ffb .(type ){case *PSInteger :_gcd :=_def ;_dge =stack .Push (_gcd );case *PSReal :_dc :=_def ;_dge =stack .Push (_dc );case *PSBoolean :_abd :=_def ; +_dge =stack .Push (_abd );case *PSProgram :_acd :=_def ;_dge =stack .Push (_acd );case *PSOperand :_ggb :=_def ;_dge =_ggb .Exec (stack );default:return ErrTypeCheck ;};if _dge !=nil {return _dge ;};};return nil ;};func (_eba *PSReal )DebugString ()string {return _f .Sprintf ("\u0072e\u0061\u006c\u003a\u0025\u002e\u0035f",_eba .Val ); +};func (_agcf *PSOperand )exp (_geca *PSStack )error {_fcbc ,_ged :=_geca .PopNumberAsFloat64 ();if _ged !=nil {return _ged ;};_bbc ,_ged :=_geca .PopNumberAsFloat64 ();if _ged !=nil {return _ged ;};if _gbg .Abs (_fcbc )< 1&&_bbc < 0{return ErrUndefinedResult ; +};_efa :=_gbg .Pow (_bbc ,_fcbc );_ged =_geca .Push (MakeReal (_efa ));return _ged ;};func (_cgdg *PSOperand )ln (_dec *PSStack )error {_ecc ,_bef :=_dec .PopNumberAsFloat64 ();if _bef !=nil {return _bef ;};_dceb :=_gbg .Log (_ecc );_bef =_dec .Push (MakeReal (_dceb )); +return _bef ;};func (_geaa *PSOperand )index (_aacb *PSStack )error {_aeaa ,_bfgc :=_aacb .Pop ();if _bfgc !=nil {return _bfgc ;};_bbce ,_cgd :=_aeaa .(*PSInteger );if !_cgd {return ErrTypeCheck ;};if _bbce .Val < 0{return ErrRangeCheck ;};if _bbce .Val > len (*_aacb )-1{return ErrStackUnderflow ; +};_facb :=(*_aacb )[len (*_aacb )-1-_bbce .Val ];_bfgc =_aacb .Push (_facb .Duplicate ());return _bfgc ;};func (_daf *PSOperand )sub (_cage *PSStack )error {_fed ,_cgfd :=_cage .Pop ();if _cgfd !=nil {return _cgfd ;};_edae ,_cgfd :=_cage .Pop ();if _cgfd !=nil {return _cgfd ; +};_ecga ,_dacf :=_fed .(*PSReal );_bgad ,_fgcb :=_fed .(*PSInteger );if !_dacf &&!_fgcb {return ErrTypeCheck ;};_gaea ,_cbf :=_edae .(*PSReal );_aga ,_fegc :=_edae .(*PSInteger );if !_cbf &&!_fegc {return ErrTypeCheck ;};if _fgcb &&_fegc {_bdfb :=_aga .Val -_bgad .Val ; +_geb :=_cage .Push (MakeInteger (_bdfb ));return _geb ;};var _fefg float64 =0;if _cbf {_fefg =_gaea .Val ;}else {_fefg =float64 (_aga .Val );};if _dacf {_fefg -=_ecga .Val ;}else {_fefg -=float64 (_bgad .Val );};_cgfd =_cage .Push (MakeReal (_fefg ));return _cgfd ; +};func (_dfb *PSParser )skipSpaces ()(int ,error ){_baea :=0;for {_ccf ,_dgfg :=_dfb ._dcff .Peek (1);if _dgfg !=nil {return 0,_dgfg ;};if _ca .IsWhiteSpace (_ccf [0]){_dfb ._dcff .ReadByte ();_baea ++;}else {break ;};};return _baea ,nil ;}; // Pop pops an object from the top of the stack. -func (_fca *PSStack )Pop ()(PSObject ,error ){if len (*_fca )< 1{return nil ,ErrStackUnderflow ;};_deedb :=(*_fca )[len (*_fca )-1];*_fca =(*_fca )[0:len (*_fca )-1];return _deedb ,nil ;};func (_ebb *PSOperand )idiv (_dge *PSStack )error {_ccfa ,_baea :=_dge .Pop (); -if _baea !=nil {return _baea ;};_cdc ,_baea :=_dge .Pop ();if _baea !=nil {return _baea ;};_ccgd ,_cbb :=_ccfa .(*PSInteger );if !_cbb {return ErrTypeCheck ;};if _ccgd .Val ==0{return ErrUndefinedResult ;};_eebd ,_cbb :=_cdc .(*PSInteger );if !_cbb {return ErrTypeCheck ; -};_cfaa :=_eebd .Val /_ccgd .Val ;_baea =_dge .Push (MakeInteger (_cfaa ));return _baea ;}; +func (_gaaf *PSStack )Pop ()(PSObject ,error ){if len (*_gaaf )< 1{return nil ,ErrStackUnderflow ;};_fff :=(*_gaaf )[len (*_gaaf )-1];*_gaaf =(*_gaaf )[0:len (*_gaaf )-1];return _fff ,nil ;};func (_fba *PSOperand )gt (_bdb *PSStack )error {_dbe ,_fab :=_bdb .PopNumberAsFloat64 (); +if _fab !=nil {return _fab ;};_dff ,_fab :=_bdb .PopNumberAsFloat64 ();if _fab !=nil {return _fab ;};if _gbg .Abs (_dff -_dbe )< _cf {_bgd :=_bdb .Push (MakeBool (false ));return _bgd ;}else if _dff > _dbe {_bfd :=_bdb .Push (MakeBool (true ));return _bfd ; +}else {_effe :=_bdb .Push (MakeBool (false ));return _effe ;};};func (_cg *PSInteger )DebugString ()string {return _f .Sprintf ("\u0069\u006e\u0074\u003a\u0025\u0064",_cg .Val );}; -// Append appends an object to the PSProgram. -func (_dc *PSProgram )Append (obj PSObject ){*_dc =append (*_dc ,obj )};func (_ebbc *PSOperand )neg (_gfe *PSStack )error {_cdb ,_eaa :=_gfe .Pop ();if _eaa !=nil {return _eaa ;};if _efb ,_aad :=_cdb .(*PSReal );_aad {_eaa =_gfe .Push (MakeReal (-_efb .Val )); -return _eaa ;}else if _bfed ,_cbef :=_cdb .(*PSInteger );_cbef {_eaa =_gfe .Push (MakeInteger (-_bfed .Val ));return _eaa ;}else {return ErrTypeCheck ;};};func (_bf *PSOperand )DebugString ()string {return _ce .Sprintf ("\u006fp\u003a\u0027\u0025\u0073\u0027",*_bf ); -};func (_fge *PSOperand )sin (_cdgd *PSStack )error {_ecgc ,_eace :=_cdgd .PopNumberAsFloat64 ();if _eace !=nil {return _eace ;};_eed :=_c .Sin (_ecgc *_c .Pi /180.0);_eace =_cdgd .Push (MakeReal (_eed ));return _eace ;}; +// Push pushes an object on top of the stack. +func (_fcea *PSStack )Push (obj PSObject )error {if len (*_fcea )> 100{return ErrStackOverflow ;};*_fcea =append (*_fcea ,obj );return nil ;}; -// NewPSProgram returns an empty, initialized PSProgram. -func NewPSProgram ()*PSProgram {return &PSProgram {}};func (_ebd *PSReal )Duplicate ()PSObject {_ec :=PSReal {};_ec .Val =_ebd .Val ;return &_ec };func (_ddb *PSOperand )mul (_dbae *PSStack )error {_caa ,_fba :=_dbae .Pop ();if _fba !=nil {return _fba ; -};_cfe ,_fba :=_dbae .Pop ();if _fba !=nil {return _fba ;};_dbd ,_dgfb :=_caa .(*PSReal );_eac ,_cde :=_caa .(*PSInteger );if !_dgfb &&!_cde {return ErrTypeCheck ;};_gee ,_bdfa :=_cfe .(*PSReal );_gbba ,_deba :=_cfe .(*PSInteger );if !_bdfa &&!_deba {return ErrTypeCheck ; -};if _cde &&_deba {_ebg :=_eac .Val *_gbba .Val ;_dfge :=_dbae .Push (MakeInteger (_ebg ));return _dfge ;};var _dgeb float64 ;if _dgfb {_dgeb =_dbd .Val ;}else {_dgeb =float64 (_eac .Val );};if _bdfa {_dgeb *=_gee .Val ;}else {_dgeb *=float64 (_gbba .Val ); -};_fba =_dbae .Push (MakeReal (_dgeb ));return _fba ;};func (_bcce *PSOperand )pop (_caef *PSStack )error {_ ,_bggd :=_caef .Pop ();if _bggd !=nil {return _bggd ;};return nil ;};func (_dddg *PSParser )parseBool ()(*PSBoolean ,error ){_ebgc ,_ffa :=_dddg ._aba .Peek (4); -if _ffa !=nil {return MakeBool (false ),_ffa ;};if (len (_ebgc )>=4)&&(string (_ebgc [:4])=="\u0074\u0072\u0075\u0065"){_dddg ._aba .Discard (4);return MakeBool (true ),nil ;};_ebgc ,_ffa =_dddg ._aba .Peek (5);if _ffa !=nil {return MakeBool (false ),_ffa ; -};if (len (_ebgc )>=5)&&(string (_ebgc [:5])=="\u0066\u0061\u006cs\u0065"){_dddg ._aba .Discard (5);return MakeBool (false ),nil ;};return MakeBool (false ),_g .New ("\u0075n\u0065\u0078\u0070\u0065c\u0074\u0065\u0064\u0020\u0062o\u006fl\u0065a\u006e\u0020\u0073\u0074\u0072\u0069\u006eg"); -};func (_bgdd *PSOperand )ge (_cgb *PSStack )error {_cfa ,_bca :=_cgb .PopNumberAsFloat64 ();if _bca !=nil {return _bca ;};_afed ,_bca :=_cgb .PopNumberAsFloat64 ();if _bca !=nil {return _bca ;};if _c .Abs (_afed -_cfa )< _ac {_afb :=_cgb .Push (MakeBool (true )); -return _afb ;}else if _afed > _cfa {_gfd :=_cgb .Push (MakeBool (true ));return _gfd ;}else {_gfdd :=_cgb .Push (MakeBool (false ));return _gfdd ;};};func (_dfg *PSOperand )ceiling (_cabd *PSStack )error {_abg ,_dd :=_cabd .Pop ();if _dd !=nil {return _dd ; -};if _abd ,_acg :=_abg .(*PSReal );_acg {_dd =_cabd .Push (MakeReal (_c .Ceil (_abd .Val )));}else if _ea ,_ed :=_abg .(*PSInteger );_ed {_dd =_cabd .Push (MakeInteger (_ea .Val ));}else {_dd =ErrTypeCheck ;};return _dd ;}; +// PSObjectArrayToFloat64Array converts []PSObject into a []float64 array. Each PSObject must represent a number, +// otherwise a ErrTypeCheck error occurs. +func PSObjectArrayToFloat64Array (objects []PSObject )([]float64 ,error ){var _cd []float64 ;for _ ,_gg :=range objects {if _fa ,_ge :=_gg .(*PSInteger );_ge {_cd =append (_cd ,float64 (_fa .Val ));}else if _ba ,_eb :=_gg .(*PSReal );_eb {_cd =append (_cd ,_ba .Val ); +}else {return nil ,ErrTypeCheck ;};};return _cd ,nil ;}; // PSObject represents a postscript object. type PSObject interface{ @@ -203,13 +183,33 @@ DebugString ()string ; // String returns a string representation of the PSObject. String ()string ;}; -// PopInteger specificially pops an integer from the top of the stack, returning the value as an int. -func (_eeba *PSStack )PopInteger ()(int ,error ){_fbf ,_cfdf :=_eeba .Pop ();if _cfdf !=nil {return 0,_cfdf ;};if _geee ,_fbb :=_fbf .(*PSInteger );_fbb {return _geee .Val ,nil ;};return 0,ErrTypeCheck ;};func (_dbb *PSOperand )mod (_cbdf *PSStack )error {_abdg ,_cgbd :=_cbdf .Pop (); -if _cgbd !=nil {return _cgbd ;};_gfge ,_cgbd :=_cbdf .Pop ();if _cgbd !=nil {return _cgbd ;};_ddd ,_gdb :=_abdg .(*PSInteger );if !_gdb {return ErrTypeCheck ;};if _ddd .Val ==0{return ErrUndefinedResult ;};_fbe ,_gdb :=_gfge .(*PSInteger );if !_gdb {return ErrTypeCheck ; -};_fbc :=_fbe .Val %_ddd .Val ;_cgbd =_cbdf .Push (MakeInteger (_fbc ));return _cgbd ;}; +// MakeInteger returns a new PSInteger object initialized with `val`. +func MakeInteger (val int )*PSInteger {_ddde :=PSInteger {};_ddde .Val =val ;return &_ddde };func (_fdec *PSOperand )xor (_eeec *PSStack )error {_fae ,_bae :=_eeec .Pop ();if _bae !=nil {return _bae ;};_dbff ,_bae :=_eeec .Pop ();if _bae !=nil {return _bae ; +};if _febb ,_agfb :=_fae .(*PSBoolean );_agfb {_eab ,_ced :=_dbff .(*PSBoolean );if !_ced {return ErrTypeCheck ;};_bae =_eeec .Push (MakeBool (_febb .Val !=_eab .Val ));return _bae ;};if _eabd ,_gdcbd :=_fae .(*PSInteger );_gdcbd {_bgade ,_ffadg :=_dbff .(*PSInteger ); +if !_ffadg {return ErrTypeCheck ;};_bae =_eeec .Push (MakeInteger (_eabd .Val ^_bgade .Val ));return _bae ;};return ErrTypeCheck ;};func (_fcg *PSOperand )Duplicate ()PSObject {_ffgg :=*_fcg ;return &_ffgg };func (_gd *PSProgram )String ()string {_dgb :="\u007b\u0020"; +for _ ,_fg :=range *_gd {_dgb +=_fg .String ();_dgb +="\u0020";};_dgb +="\u007d";return _dgb ;};func (_cgfc *PSOperand )le (_gcag *PSStack )error {_dgf ,_fadc :=_gcag .PopNumberAsFloat64 ();if _fadc !=nil {return _fadc ;};_efag ,_fadc :=_gcag .PopNumberAsFloat64 (); +if _fadc !=nil {return _fadc ;};if _gbg .Abs (_efag -_dgf )< _cf {_acf :=_gcag .Push (MakeBool (true ));return _acf ;}else if _efag < _dgf {_gce :=_gcag .Push (MakeBool (true ));return _gce ;}else {_gdc :=_gcag .Push (MakeBool (false ));return _gdc ;}; +};var ErrRangeCheck =_c .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072");func (_dcda *PSOperand )ne (_gff *PSStack )error {_dcg :=_dcda .eq (_gff );if _dcg !=nil {return _dcg ;};_dcg =_dcda .not (_gff ); +return _dcg ;}; -// PSProgram defines a Postscript program which is a series of PS objects (arguments, commands, programs etc). -type PSProgram []PSObject ; +// PopNumberAsFloat64 pops and return the numeric value of the top of the stack as a float64. +// Real or integer only. +func (_fcd *PSStack )PopNumberAsFloat64 ()(float64 ,error ){_efad ,_afb :=_fcd .Pop ();if _afb !=nil {return 0,_afb ;};if _gee ,_gag :=_efad .(*PSReal );_gag {return _gee .Val ,nil ;}else if _ggaa ,_ega :=_efad .(*PSInteger );_ega {return float64 (_ggaa .Val ),nil ; +}else {return 0,ErrTypeCheck ;};};func (_dcba *PSOperand )mul (_cfdc *PSStack )error {_ccga ,_fbgd :=_cfdc .Pop ();if _fbgd !=nil {return _fbgd ;};_dceg ,_fbgd :=_cfdc .Pop ();if _fbgd !=nil {return _fbgd ;};_eccb ,_gcab :=_ccga .(*PSReal );_edf ,_gaeg :=_ccga .(*PSInteger ); +if !_gcab &&!_gaeg {return ErrTypeCheck ;};_ecb ,_bfge :=_dceg .(*PSReal );_cgfe ,_ggbe :=_dceg .(*PSInteger );if !_bfge &&!_ggbe {return ErrTypeCheck ;};if _gaeg &&_ggbe {_fdd :=_edf .Val *_cgfe .Val ;_fdb :=_cfdc .Push (MakeInteger (_fdd ));return _fdb ; +};var _decc float64 ;if _gcab {_decc =_eccb .Val ;}else {_decc =float64 (_edf .Val );};if _bfge {_decc *=_ecb .Val ;}else {_decc *=float64 (_cgfe .Val );};_fbgd =_cfdc .Push (MakeReal (_decc ));return _fbgd ;}; -// PSExecutor has its own execution stack and is used to executre a PS routine (program). -type PSExecutor struct{Stack *PSStack ;_d *PSProgram ;}; \ No newline at end of file +// PopInteger specificially pops an integer from the top of the stack, returning the value as an int. +func (_ecee *PSStack )PopInteger ()(int ,error ){_afgf ,_daca :=_ecee .Pop ();if _daca !=nil {return 0,_daca ;};if _bccb ,_aeg :=_afgf .(*PSInteger );_aeg {return _bccb .Val ,nil ;};return 0,ErrTypeCheck ;};func (_bfbg *PSParser )skipComments ()error {if _ ,_cddb :=_bfbg .skipSpaces (); +_cddb !=nil {return _cddb ;};_gceg :=true ;for {_efac ,_gbcf :=_bfbg ._dcff .Peek (1);if _gbcf !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0025\u0073",_gbcf .Error ());return _gbcf ;};if _gceg &&_efac [0]!='%'{return nil ;};_gceg =false ; +if (_efac [0]!='\r')&&(_efac [0]!='\n'){_bfbg ._dcff .ReadByte ();}else {break ;};};return _bfbg .skipComments ();};func (_gdcb *PSOperand )round (_cdbd *PSStack )error {_fga ,_bfba :=_cdbd .Pop ();if _bfba !=nil {return _bfba ;};if _gbf ,_bed :=_fga .(*PSReal ); +_bed {_bfba =_cdbd .Push (MakeReal (_gbg .Floor (_gbf .Val +0.5)));}else if _agce ,_dda :=_fga .(*PSInteger );_dda {_bfba =_cdbd .Push (MakeInteger (_agce .Val ));}else {return ErrTypeCheck ;};return _bfba ;};func (_aeb *PSBoolean )DebugString ()string {return _f .Sprintf ("\u0062o\u006f\u006c\u003a\u0025\u0076",_aeb .Val ); +};func (_fag *PSOperand )cos (_bc *PSStack )error {_bfe ,_aeac :=_bc .PopNumberAsFloat64 ();if _aeac !=nil {return _aeac ;};_gaf :=_gbg .Cos (_bfe *_gbg .Pi /180.0);_aeac =_bc .Push (MakeReal (_gaf ));return _aeac ;};func (_ceb *PSOperand )ge (_feg *PSStack )error {_dce ,_gbbc :=_feg .PopNumberAsFloat64 (); +if _gbbc !=nil {return _gbbc ;};_gef ,_gbbc :=_feg .PopNumberAsFloat64 ();if _gbbc !=nil {return _gbbc ;};if _gbg .Abs (_gef -_dce )< _cf {_debe :=_feg .Push (MakeBool (true ));return _debe ;}else if _gef > _dce {_ade :=_feg .Push (MakeBool (true ));return _ade ; +}else {_badc :=_feg .Push (MakeBool (false ));return _badc ;};};func (_ae *PSReal )String ()string {return _f .Sprintf ("\u0025\u002e\u0035\u0066",_ae .Val )};func (_ace *PSOperand )sqrt (_eeb *PSStack )error {_abag ,_gbc :=_eeb .PopNumberAsFloat64 (); +if _gbc !=nil {return _gbc ;};if _abag < 0{return ErrRangeCheck ;};_gcdbg :=_gbg .Sqrt (_abag );_gbc =_eeb .Push (MakeReal (_gcdbg ));return _gbc ;};func (_ddg *PSOperand )lt (_geag *PSStack )error {_ccd ,_cabe :=_geag .PopNumberAsFloat64 ();if _cabe !=nil {return _cabe ; +};_dcd ,_cabe :=_geag .PopNumberAsFloat64 ();if _cabe !=nil {return _cabe ;};if _gbg .Abs (_dcd -_ccd )< _cf {_gdca :=_geag .Push (MakeBool (false ));return _gdca ;}else if _dcd < _ccd {_gfdb :=_geag .Push (MakeBool (true ));return _gfdb ;}else {_cfc :=_geag .Push (MakeBool (false )); +return _cfc ;};}; + +// PSBoolean represents a boolean value. +type PSBoolean struct{Val bool ;}; \ No newline at end of file diff --git a/redactor/redactor.go b/redactor/redactor.go index 8da6b2068..c7643dd9c 100644 --- a/redactor/redactor.go +++ b/redactor/redactor.go @@ -9,102 +9,103 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package redactor ;import (_g "errors";_f "fmt";_b "github.com/unidoc/unipdf/v3/common";_fd "github.com/unidoc/unipdf/v3/contentstream";_d "github.com/unidoc/unipdf/v3/core";_a "github.com/unidoc/unipdf/v3/creator";_gd "github.com/unidoc/unipdf/v3/extractor"; -_ff "github.com/unidoc/unipdf/v3/model";_gf "io";_fc "regexp";_fcd "sort";_ee "strings";);func _bgd (_bd *_fd .ContentStreamOperations ,_fa string ,_de int )error {_add :=_fd .ContentStreamOperations {};var _ea _fd .ContentStreamOperation ;for _af ,_beg :=range *_bd {if _af ==_de {if _fa =="\u0027"{_fg :=_fd .ContentStreamOperation {Operand :"\u0054\u002a"}; -_add =append (_add ,&_fg );_ea .Params =_beg .Params ;_ea .Operand ="\u0054\u006a";_add =append (_add ,&_ea );}else if _fa =="\u0022"{_eag :=_beg .Params [:2];Tc ,Tw :=_eag [0],_eag [1];_begc :=_fd .ContentStreamOperation {Params :[]_d .PdfObject {Tc },Operand :"\u0054\u0063"}; -_add =append (_add ,&_begc );_begc =_fd .ContentStreamOperation {Params :[]_d .PdfObject {Tw },Operand :"\u0054\u0077"};_add =append (_add ,&_begc );_ea .Params =[]_d .PdfObject {_beg .Params [2]};_ea .Operand ="\u0054\u006a";_add =append (_add ,&_ea ); -};};_add =append (_add ,_beg );};*_bd =_add ;return nil ;};func _dd (_bc *_fd .ContentStreamOperations ,_db map[_d .PdfObject ][]localSpanMarks )error {for _bcg ,_ga :=range _db {if _bcg ==nil {continue ;};_ffd ,_be ,_ad :=_dec (_bc ,_bcg );if !_ad {_b .Log .Debug ("Pd\u0066\u004fb\u006a\u0065\u0063\u0074\u0020\u0025\u0073\u006e\u006ft\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0073\u0069\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0073\u0074r\u0065a\u006d\u0020\u006f\u0070\u0065\u0072\u0061\u0074i\u006fn\u0020\u0025s",_bcg ,_bc ); -return nil ;};if _ffd .Operand =="\u0054\u006a"{_aa :=_gfe (_ffd ,_bcg ,_ga );if _aa !=nil {return _aa ;};}else if _ffd .Operand =="\u0054\u004a"{_ab :=_eb (_ffd ,_bcg ,_ga );if _ab !=nil {return _ab ;};}else if _ffd .Operand =="\u0027"||_ffd .Operand =="\u0022"{_gb :=_bgd (_bc ,_ffd .Operand ,_be ); -if _gb !=nil {return _gb ;};_gb =_gfe (_ffd ,_bcg ,_ga );if _gb !=nil {return _gb ;};};};return nil ;};func _cab (_beb ,_fba ,_bdfd float64 )float64 {_bdfd =_bdfd /100;_gdeg :=(-1000*_beb )/(_fba *_bdfd );return _gdeg ;}; +package redactor ;import (_f "errors";_af "fmt";_gg "github.com/unidoc/unipdf/v3/common";_eb "github.com/unidoc/unipdf/v3/contentstream";_ef "github.com/unidoc/unipdf/v3/core";_ge "github.com/unidoc/unipdf/v3/creator";_gf "github.com/unidoc/unipdf/v3/extractor"; +_dd "github.com/unidoc/unipdf/v3/model";_e "io";_d "regexp";_c "sort";_g "strings";);func _cga (_fddb *_gf .TextMarkArray )[]*_gf .TextMarkArray {_afae :=_fddb .Elements ();_ddcf :=len (_afae );var _fag _ef .PdfObject ;_ffed :=[]*_gf .TextMarkArray {}; +_fdeg :=&_gf .TextMarkArray {};_fgbc :=-1;for _fbdda ,_aed :=range _afae {_edf :=_aed .DirectObject ;_fgbc =_aed .Index ;if _edf ==nil {_cagb :=_cef (_fddb ,_fbdda ,_fgbc );if _fag !=nil {if _cagb ==-1||_cagb > _fbdda {_ffed =append (_ffed ,_fdeg );_fdeg =&_gf .TextMarkArray {}; +};};}else if _edf !=nil &&_fag ==nil {if _fgbc ==0&&_fbdda > 0{_ffed =append (_ffed ,_fdeg );_fdeg =&_gf .TextMarkArray {};};}else if _edf !=nil &&_fag !=nil {if _edf !=_fag {_ffed =append (_ffed ,_fdeg );_fdeg =&_gf .TextMarkArray {};};};_fag =_edf ;_fdeg .Append (_aed ); +if _fbdda ==(_ddcf -1){_ffed =append (_ffed ,_fdeg );};};return _ffed ;};type replacement struct{_ggd string ;_bc float64 ;_db int ;};func _fb (_fg *_gf .TextMarkArray )int {_fa :=0;_ee :=_fg .Elements ();if _ee [0].Text =="\u0020"{_fa ++;};if _ee [_fg .Len ()-1].Text =="\u0020"{_fa ++; +};return _fa ;};type regexMatcher struct{_dfdg RedactionTerm }; -// WriteToFile writes the redacted document to file specified by `outputPath`. -func (_ccbb *Redactor )WriteToFile (outputPath string )error {if _gefg :=_ccbb ._fdcb .WriteToFile (outputPath );_gefg !=nil {return _f .Errorf ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0074o\u0020\u0077\u0072\u0069\u0074\u0065\u0020t\u0068\u0065\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0066\u0069\u006c\u0065"); -};return nil ;};func _cfa (_ed *_gd .TextMarkArray )(_d .PdfObject ,int ){var _da _d .PdfObject ;_bb :=-1;for _bf ,_fad :=range _ed .Elements (){_da =_fad .DirectObject ;_bb =_bf ;if _da !=nil {break ;};};return _da ,_bb ;};func _ca (_fec []placeHolders )[]replacement {_dgf :=[]replacement {}; -for _ ,_fdg :=range _fec {_deb :=_fdg ._ef ;_caf :=_fdg ._bg ;_gba :=_fdg ._ge ;for _ ,_bbfd :=range _deb {_acb :=replacement {_fce :_caf ,_ag :_gba ,_c :_bbfd };_dgf =append (_dgf ,_acb );};};_fcd .Slice (_dgf ,func (_dga ,_bbg int )bool {return _dgf [_dga ]._c < _dgf [_bbg ]._c }); -return _dgf ;};func _bag (_beaa ,_cebf string )[]int {if len (_cebf )==0{return nil ;};var _degc []int ;for _cfe :=0;_cfe < len (_beaa );{_dee :=_ee .Index (_beaa [_cfe :],_cebf );if _dee < 0{return _degc ;};_degc =append (_degc ,_cfe +_dee );_cfe +=_dee +len (_cebf ); -};return _degc ;}; +// RedactionTerm holds the regexp pattern and the replacement string for the redaction process. +type RedactionTerm struct{Pattern *_d .Regexp ;}; -// RedactionOptions is a collection of RedactionTerm objects. -type RedactionOptions struct{Terms []RedactionTerm ;}; +// Redact executes the redact operation on a pdf file and updates the content streams of all pages of the file. +func (_fee *Redactor )Redact ()error {_fceg ,_cdaa :=_fee ._gee .GetNumPages ();if _cdaa !=nil {return _af .Errorf ("\u0066\u0061\u0069\u006c\u0065\u0064 \u0074\u006f\u0020\u0067\u0065\u0074\u0020\u0074\u0068\u0065\u0020\u006e\u0075m\u0062\u0065\u0072\u0020\u006f\u0066\u0020P\u0061\u0067\u0065\u0073"); +};_eeb :=_fee ._gcg .FillColor ;_fda :=_fee ._gcg .BorderWidth ;_gbff :=_fee ._gcg .FillOpacity ;for _gdac :=1;_gdac <=_fceg ;_gdac ++{_eege ,_ega :=_fee ._gee .GetPage (_gdac );if _ega !=nil {return _ega ;};_geg ,_ega :=_gf .New (_eege );if _ega !=nil {return _ega ; +};_ced ,_ ,_ ,_ega :=_geg .ExtractPageText ();if _ega !=nil {return _ega ;};_bff :=_ced .GetContentStreamOps ();_fbg ,_afe ,_ega :=_fee .redactPage (_bff ,_eege .Resources );if _afe ==nil {_gg .Log .Info ("N\u006f\u0020\u006d\u0061\u0074\u0063\u0068\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0066\u006f\u0072\u0020t\u0068\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065d \u0070\u0061\u0074t\u0061r\u006e\u002e"); +_afe =_bff ;};_fgfe :=_eb .ContentStreamOperation {Operand :"\u006e"};*_afe =append (*_afe ,&_fgfe );_eege .SetContentStreams ([]string {_afe .String ()},_ef .NewFlateEncoder ());if _ega !=nil {return _ega ;};_dgeb ,_ega :=_eege .GetMediaBox ();if _ega !=nil {return _ega ; +};if _eege .MediaBox ==nil {_eege .MediaBox =_dgeb ;};if _ccad :=_fee ._afbb .AddPage (_eege );_ccad !=nil {return _ccad ;};_c .Slice (_fbg ,func (_gce ,_ebe int )bool {return _fbg [_gce ]._gfc < _fbg [_ebe ]._gfc });_abf :=_dgeb .Ury ;for _ ,_dbf :=range _fbg {_geb :=_dbf ._ddd ; +_edgd :=_fee ._afbb .NewRectangle (_geb .Llx ,_abf -_geb .Lly ,_geb .Urx -_geb .Llx ,-(_geb .Ury -_geb .Lly ));_edgd .SetFillColor (_eeb );_edgd .SetBorderWidth (_fda );_edgd .SetFillOpacity (_gbff );if _ffa :=_fee ._afbb .Draw (_edgd );_ffa !=nil {return nil ; +};};};_fee ._afbb .SetOutlineTree (_fee ._gee .GetOutlineTree ());return nil ;};func _ce (_eea *_dd .PdfFont ,_fd _gf .TextMark )float64 {_ffe :=0.001;_feg :=_fd .Th /100;if _eea .Subtype ()=="\u0054\u0079\u0070e\u0033"{_ffe =1;};_ebdb ,_fdg :=_eea .GetRuneMetrics (' '); +if !_fdg {_ebdb ,_fdg =_eea .GetCharMetrics (32);};if !_fdg {_ebdb ,_ =_dd .DefaultFont ().GetRuneMetrics (' ');};_bcf :=_ffe *((_ebdb .Wx *_fd .FontSize +_fd .Tc +_fd .Tw )/_feg );return _bcf ;};func _deb (_bbgd localSpanMarks ,_dac *_gf .TextMarkArray ,_bad *_dd .PdfFont ,_aae ,_aeec string )([]_ef .PdfObject ,error ){_ade :=_cgce (_dac ); +Tj ,_cfa :=_dgef (_dac );if _cfa !=nil {return nil ,_cfa ;};_egbd :=len (_aae );_egfd :=len (_ade );_cgeb :=-1;_fea :=_ef .MakeFloat (Tj );if _ade !=_aeec {_fdde :=_bbgd ._ede ;if _fdde ==0{_cgeb =_g .LastIndex (_aae ,_ade );}else {_cgeb =_g .Index (_aae ,_ade ); +};}else {_cgeb =_g .Index (_aae ,_ade );};_bae :=_cgeb +_egfd ;_dgg :=[]_ef .PdfObject {};if _cgeb ==0&&_bae ==_egbd {_dgg =append (_dgg ,_fea );}else if _cgeb ==0&&_bae < _egbd {_adg :=_beb (_aae [_bae :],_bad );_eef :=_ef .MakeStringFromBytes (_adg ); +_dgg =append (_dgg ,_fea ,_eef );}else if _cgeb > 0&&_bae >=_egbd {_dce :=_beb (_aae [:_cgeb ],_bad );_ga :=_ef .MakeStringFromBytes (_dce );_dgg =append (_dgg ,_ga ,_fea );}else if _cgeb > 0&&_bae < _egbd {_gff :=_beb (_aae [:_cgeb ],_bad );_gae :=_beb (_aae [_bae :],_bad ); +_bdga :=_ef .MakeStringFromBytes (_gff );_acb :=_ef .MakeString (string (_gae ));_dgg =append (_dgg ,_bdga ,_fea ,_acb );};return _dgg ,nil ;};func _cd (_abgc *_gf .TextMarkArray )(_ef .PdfObject ,int ){var _df _ef .PdfObject ;_ged :=-1;for _dadd ,_be :=range _abgc .Elements (){_df =_be .DirectObject ; +_ged =_dadd ;if _df !=nil {break ;};};return _df ,_ged ;};func _dg (_gc *_eb .ContentStreamOperation ,_bef _ef .PdfObject ,_de []localSpanMarks )error {_bb ,_befd :=_ef .GetArray (_gc .Params [0]);_gbd :=[]_ef .PdfObject {};if !_befd {_gg .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0054\u004a\u0020\u006f\u0070\u003d\u0025s\u0020G\u0065t\u0041r\u0072\u0061\u0079\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_gc ); +return _af .Errorf ("\u0073\u0070\u0061\u006e\u004d\u0061\u0072\u006bs\u002e\u0042\u0042ox\u0020\u0068\u0061\u0073\u0020\u006eo\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062\u006f\u0078\u002e\u0020s\u0070\u0061\u006e\u004d\u0061\u0072\u006b\u0073=\u0025\u0073",_gc ); +};_ff ,_dgf :=_cf (_de );if len (_dgf )==1{_ada :=_dgf [0];_bbf :=_ff [_ada ];if len (_bbf )==1{_gga :=_bbf [0];_cba :=_gga ._edc ;_ggdb :=_fca (_cba );_egf ,_ebf :=_accd (_bef ,_ggdb );if _ebf !=nil {return _ebf ;};_bbe ,_ebf :=_deb (_gga ,_cba ,_ggdb ,_egf ,_ada ); +if _ebf !=nil {return _ebf ;};for _ ,_bbg :=range _bb .Elements (){if _bbg ==_bef {_gbd =append (_gbd ,_bbe ...);}else {_gbd =append (_gbd ,_bbg );};};}else {_eae :=_bbf [0]._edc ;_dbe :=_fca (_eae );_ag ,_eaeb :=_accd (_bef ,_dbe );if _eaeb !=nil {return _eaeb ; +};_fe ,_eaeb :=_ecdc (_ag ,_bbf );if _eaeb !=nil {return _eaeb ;};_ace :=_egg (_fe );_bg :=_cag (_ag ,_ace ,_dbe );for _ ,_gd :=range _bb .Elements (){if _gd ==_bef {_gbd =append (_gbd ,_bg ...);}else {_gbd =append (_gbd ,_gd );};};};_gc .Params [0]=_ef .MakeArray (_gbd ...); +}else if len (_dgf )> 1{_fge :=_de [0];_ecf :=_fge ._edc ;_ ,_ebd :=_cd (_ecf );_daf :=_ecf .Elements ()[_ebd ];_ece :=_daf .Font ;_eac ,_ddg :=_accd (_bef ,_ece );if _ddg !=nil {return _ddg ;};_dab ,_ddg :=_ecdc (_eac ,_de );if _ddg !=nil {return _ddg ; +};_bd :=_egg (_dab );_fc :=_cag (_eac ,_bd ,_ece );for _ ,_bf :=range _bb .Elements (){if _bf ==_bef {_gbd =append (_gbd ,_fc ...);}else {_gbd =append (_gbd ,_bf );};};_gc .Params [0]=_ef .MakeArray (_gbd ...);};return nil ;};func _eff (_dbg ,_cac ,_decg float64 )float64 {_decg =_decg /100; +_cddc :=(-1000*_dbg )/(_cac *_decg );return _cddc ;};type matchedIndex struct{_faa int ;_gaf int ;_fab string ;};func _abg (_dad *_eb .ContentStreamOperations ,_cb string ,_ba int )error {_egb :=_eb .ContentStreamOperations {};var _gb _eb .ContentStreamOperation ; +for _aee ,_ebc :=range *_dad {if _aee ==_ba {if _cb =="\u0027"{_ecd :=_eb .ContentStreamOperation {Operand :"\u0054\u002a"};_egb =append (_egb ,&_ecd );_gb .Params =_ebc .Params ;_gb .Operand ="\u0054\u006a";_egb =append (_egb ,&_gb );}else if _cb =="\u0022"{_gfg :=_ebc .Params [:2]; +Tc ,Tw :=_gfg [0],_gfg [1];_ad :=_eb .ContentStreamOperation {Params :[]_ef .PdfObject {Tc },Operand :"\u0054\u0063"};_egb =append (_egb ,&_ad );_ad =_eb .ContentStreamOperation {Params :[]_ef .PdfObject {Tw },Operand :"\u0054\u0077"};_egb =append (_egb ,&_ad ); +_gb .Params =[]_ef .PdfObject {_ebc .Params [2]};_gb .Operand ="\u0054\u006a";_egb =append (_egb ,&_gb );};};_egb =append (_egb ,_ebc );};*_dad =_egb ;return nil ;};func _bab (_ddc *_eb .ContentStreamOperation ,_abc _ef .PdfObject ,_bdg []localSpanMarks )error {var _fdd *_ef .PdfObjectArray ; +_ege ,_gcd :=_cf (_bdg );if len (_gcd )==1{_bdd :=_gcd [0];_gbdf :=_ege [_bdd ];if len (_gbdf )==1{_bcc :=_gbdf [0];_cge :=_bcc ._edc ;_gbf :=_fca (_cge );_dcc ,_ebg :=_accd (_abc ,_gbf );if _ebg !=nil {return _ebg ;};_acg ,_ebg :=_deb (_bcc ,_cge ,_gbf ,_dcc ,_bdd ); +if _ebg !=nil {return _ebg ;};_fdd =_ef .MakeArray (_acg ...);}else {_aea :=_gbdf [0]._edc ;_acd :=_fca (_aea );_dcb ,_fec :=_accd (_abc ,_acd );if _fec !=nil {return _fec ;};_bdc ,_fec :=_ecdc (_dcb ,_gbdf );if _fec !=nil {return _fec ;};_gfb :=_egg (_bdc ); +_fbe :=_cag (_dcb ,_gfb ,_acd );_fdd =_ef .MakeArray (_fbe ...);};}else if len (_gcd )> 1{_cdd :=_bdg [0];_aab :=_cdd ._edc ;_ ,_bfa :=_cd (_aab );_dfb :=_aab .Elements ()[_bfa ];_cged :=_dfb .Font ;_gcf ,_gef :=_accd (_abc ,_cged );if _gef !=nil {return _gef ; +};_cda ,_gef :=_ecdc (_gcf ,_bdg );if _gef !=nil {return _gef ;};_gec :=_egg (_cda );_fgf :=_cag (_gcf ,_gec ,_cged );_fdd =_ef .MakeArray (_fgf ...);};_ddc .Params [0]=_fdd ;_ddc .Operand ="\u0054\u004a";return nil ;}; + +// Redactor represents a Redactor object. +type Redactor struct{_gee *_dd .PdfReader ;_gffa *RedactionOptions ;_afbb *_ge .Creator ;_gcg *RectangleProps ;};func _acbg (_cddg []*matchedIndex ,_egfc [][]int )[]*matchedIndex {_gdgb :=[]*matchedIndex {};for _ ,_gbg :=range _cddg {_cbaa ,_age :=_efb (_gbg ,_egfc ); +if _cbaa {_aeefe :=_cgef (_gbg ,_age );_gdgb =append (_gdgb ,_aeefe ...);}else {_gdgb =append (_gdgb ,_gbg );};};return _gdgb ;};func _accd (_bbc _ef .PdfObject ,_dgd *_dd .PdfFont )(string ,error ){_dgdf ,_bgcd :=_ef .GetStringBytes (_bbc );if !_bgcd {return "",_ef .ErrTypeError ; +};_dcea :=_dgd .BytesToCharcodes (_dgdf );_aeff ,_fega ,_aff :=_dgd .CharcodesToStrings (_dcea );if _aff > 0{_gg .Log .Debug ("\u0072\u0065nd\u0065\u0072\u0054e\u0078\u0074\u003a\u0020num\u0043ha\u0072\u0073\u003d\u0025\u0064\u0020\u006eum\u004d\u0069\u0073\u0073\u0065\u0073\u003d%\u0064",_fega ,_aff ); +};_dage :=_g .Join (_aeff ,"");return _dage ,nil ;};func _daa (_cgf int ,_fga []int )bool {for _ ,_abca :=range _fga {if _abca ==_cgf {return true ;};};return false ;};func (_eccc *Redactor )redactPage (_eca *_eb .ContentStreamOperations ,_dagf *_dd .PdfPageResources )([]matchedBBox ,*_eb .ContentStreamOperations ,error ){_adb ,_gegf :=_gf .NewFromContents (_eca .String (),_dagf ); +if _gegf !=nil {return nil ,nil ,_gegf ;};_bca ,_ ,_ ,_gegf :=_adb .ExtractPageText ();if _gegf !=nil {return nil ,nil ,_gegf ;};_eca =_bca .GetContentStreamOps ();_debd :=_bca .Marks ();_ffc :=_bca .Text ();_ffc ,_dba :=_aafa (_ffc );_adgf :=[]matchedBBox {}; +_fgb :=make (map[_ef .PdfObject ][]localSpanMarks );_aaa :=[]*targetMap {};for _ ,_dabg :=range _eccc ._gffa .Terms {_bfg ,_eda :=_bfb (_dabg );if _eda !=nil {return nil ,nil ,_eda ;};_cab ,_eda :=_bfg .match (_ffc );if _eda !=nil {return nil ,nil ,_eda ; +};_cab =_acbg (_cab ,_dba );_aec :=_gdd (_cab );_aaa =append (_aaa ,_aec ...);};_ffd (_aaa );for _ ,_egad :=range _aaa {_cff :=_egad ._gea ;_daca :=_egad ._aeef ;_aaeb :=[]matchedBBox {};for _ ,_dcba :=range _daca {_acgb ,_dacb ,_add :=_gfba (_dcba ,_debd ,_cff ); +if _add !=nil {return nil ,nil ,_add ;};_cccf :=_cga (_acgb );for _dabc ,_gceb :=range _cccf {_abcf :=localSpanMarks {_edc :_gceb ,_ede :_dabc ,_fffa :_cff };_cggd ,_ :=_cd (_gceb );if _bgce ,_gdga :=_fgb [_cggd ];_gdga {_fgb [_cggd ]=append (_bgce ,_abcf ); +}else {_fgb [_cggd ]=[]localSpanMarks {_abcf };};};_aaeb =append (_aaeb ,_dacb );};_adgf =append (_adgf ,_aaeb ...);};_gegf =_cg (_eca ,_fgb );if _gegf !=nil {return nil ,nil ,_gegf ;};return _adgf ,_eca ,nil ;};func _ffd (_ccae []*targetMap ){for _aafd ,_feeg :=range _ccae {for _bcfb ,_dcd :=range _ccae {if _aafd !=_bcfb {_afa ,_aaef :=_fgaa (*_feeg ,*_dcd ); +if _afa {_dace (_dcd ,_aaef );};};};};};func _efb (_eeba *matchedIndex ,_caf [][]int )(bool ,[][]int ){_aedg :=[][]int {};for _ ,_caba :=range _caf {if _eeba ._faa < _caba [0]&&_eeba ._gaf > _caba [1]{_aedg =append (_aedg ,_caba );};};return len (_aedg )> 0,_aedg ; +}; // RectangleProps defines properties of the redaction rectangle to be drawn. -type RectangleProps struct{FillColor _a .Color ;BorderWidth float64 ;FillOpacity float64 ;};func _cce (_aef *_gd .TextMarkArray )*_ff .PdfFont {_ ,_cea :=_cfa (_aef );_ceb :=_aef .Elements ()[_cea ];_adfa :=_ceb .Font ;return _adfa ;};func _dcg (_ba string ,_efc *_ff .PdfFont )[]byte {_ged ,_acf :=_efc .StringToCharcodeBytes (_ba ); -if _acf !=0{_b .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0073\u006fm\u0065\u0020\u0072un\u0065\u0073\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0065d\u002e\u000a\u0009\u0025\u0073\u0020\u002d\u003e \u0025\u0076",_ba ,_ged ); -};return _ged ;};func _dca (_deeg *_gd .TextMarkArray ,_eaa int ,_ggfe int )int {_bdcf :=_deeg .Elements ();_eaad :=_eaa -1;_eab :=_eaa +1;_cafa :=-1;if _eaad >=0{_faeb :=_bdcf [_eaad ];_edb :=_faeb .ObjString ;_bec :=len (_edb );_bfc :=_faeb .Index ;if _bfc +1< _bec {_cafa =_eaad ; -return _cafa ;};};if _eab < len (_bdcf ){_caga :=_bdcf [_eab ];_bbe :=_caga .ObjString ;if _bbe [0]!=_caga .Text {_cafa =_eab ;return _cafa ;};};return _cafa ;};func _ead (_bbbc string ,_abf []localSpanMarks )([]placeHolders ,error ){_gac :="";_fgf :=[]placeHolders {}; -for _cffg ,_dea :=range _abf {_faf :=_dea ._fedf ;_ebf :=_dea ._bca ;_abae :=_gfc (_faf );_gcc ,_eefc :=_ebbb (_faf );if _eefc !=nil {return nil ,_eefc ;};if _abae !=_gac {var _gda []int ;if _cffg ==0&&_ebf !=_abae {_dda :=_ee .Index (_bbbc ,_abae );_gda =[]int {_dda }; -}else if _cffg ==len (_abf )-1{_gacb :=_ee .LastIndex (_bbbc ,_abae );_gda =[]int {_gacb };}else {_gda =_bag (_bbbc ,_abae );};_dba :=placeHolders {_ef :_gda ,_bg :_abae ,_ge :_gcc };_fgf =append (_fgf ,_dba );};_gac =_abae ;};return _fgf ,nil ;}; +type RectangleProps struct{FillColor _ge .Color ;BorderWidth float64 ;FillOpacity float64 ;};type localSpanMarks struct{_edc *_gf .TextMarkArray ;_ede int ;_fffa string ;}; -// Redact executes the redact operation on a pdf file and updates the content streams of all pages of the file. -func (_agdg *Redactor )Redact ()error {_ggc ,_ddfa :=_agdg ._ccd .GetNumPages ();if _ddfa !=nil {return _f .Errorf ("\u0066\u0061\u0069\u006c\u0065\u0064 \u0074\u006f\u0020\u0067\u0065\u0074\u0020\u0074\u0068\u0065\u0020\u006e\u0075m\u0062\u0065\u0072\u0020\u006f\u0066\u0020P\u0061\u0067\u0065\u0073"); -};_cggd :=_agdg ._acg .FillColor ;_bcd :=_agdg ._acg .BorderWidth ;_cfg :=_agdg ._acg .FillOpacity ;for _aeba :=1;_aeba <=_ggc ;_aeba ++{_fff ,_abb :=_agdg ._ccd .GetPage (_aeba );if _abb !=nil {return _abb ;};_aec ,_abb :=_gd .New (_fff );if _abb !=nil {return _abb ; -};_caeb ,_ ,_ ,_abb :=_aec .ExtractPageText ();if _abb !=nil {return _abb ;};_fea :=_caeb .GetContentStreamOps ();_eee ,_eac ,_abb :=_agdg .redactPage (_fea ,_fff .Resources );if _eac ==nil {_b .Log .Info ("N\u006f\u0020\u006d\u0061\u0074\u0063\u0068\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0066\u006f\u0072\u0020t\u0068\u0065\u0020\u0070\u0072\u006f\u0076\u0069\u0064\u0065d \u0070\u0061\u0074t\u0061r\u006e\u002e"); -_eac =_fea ;};_cdg :=_fd .ContentStreamOperation {Operand :"\u006e"};*_eac =append (*_eac ,&_cdg );_fff .SetContentStreams ([]string {_eac .String ()},_d .NewFlateEncoder ());if _abb !=nil {return _abb ;};_dgab ,_abb :=_fff .GetMediaBox ();if _abb !=nil {return _abb ; -};if _fff .MediaBox ==nil {_fff .MediaBox =_dgab ;};if _cbeg :=_agdg ._fdcb .AddPage (_fff );_cbeg !=nil {return _cbeg ;};_fcd .Slice (_eee ,func (_gcd ,_gccd int )bool {return _eee [_gcd ]._fddc < _eee [_gccd ]._fddc });_dgac :=_dgab .Ury ;for _ ,_fced :=range _eee {_fadf :=_fced ._dgb ; -_bdee :=_agdg ._fdcb .NewRectangle (_fadf .Llx ,_dgac -_fadf .Lly ,_fadf .Urx -_fadf .Llx ,-(_fadf .Ury -_fadf .Lly ));_bdee .SetFillColor (_cggd );_bdee .SetBorderWidth (_bcd );_bdee .SetFillOpacity (_cfg );if _aae :=_agdg ._fdcb .Draw (_bdee );_aae !=nil {return nil ; -};};};_agdg ._fdcb .SetOutlineTree (_agdg ._ccd .GetOutlineTree ());return nil ;};func (_baaf *regexMatcher )match (_fbe string )([]*matchedIndex ,error ){_gcga :=_baaf ._cfbd .Pattern ;if _gcga ==nil {return nil ,_g .New ("\u006e\u006f\u0020\u0070at\u0074\u0065\u0072\u006e\u0020\u0063\u006f\u006d\u0070\u0069\u006c\u0065\u0064"); -};var (_efff =_gcga .FindAllStringIndex (_fbe ,-1);_ccc []*matchedIndex ;);for _ ,_acgd :=range _efff {_ccc =append (_ccc ,&matchedIndex {_acfd :_acgd [0],_gfcb :_acgd [1],_aeb :_fbe [_acgd [0]:_acgd [1]]});};return _ccc ,nil ;};func _adag (_gcg string )(string ,[][]int ){_bege :=_fc .MustCompile ("\u005c\u006e"); -_gfbb :=_bege .FindAllStringIndex (_gcg ,-1);_bfe :=_bege .ReplaceAllString (_gcg ,"\u0020");return _bfe ,_gfbb ;}; +// RedactionOptions is a collection of RedactionTerm objects. +type RedactionOptions struct{Terms []RedactionTerm ;};func _beb (_eaea string ,_cgg *_dd .PdfFont )[]byte {_fba ,_gdg :=_cgg .StringToCharcodeBytes (_eaea );if _gdg !=0{_gg .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0073\u006fm\u0065\u0020\u0072un\u0065\u0073\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0062\u0065\u0020\u0065\u006e\u0063\u006f\u0064\u0065d\u002e\u000a\u0009\u0025\u0073\u0020\u002d\u003e \u0025\u0076",_eaea ,_fba ); +};return _fba ;}; + +// WriteToFile writes the redacted document to file specified by `outputPath`. +func (_fgbb *Redactor )WriteToFile (outputPath string )error {if _fabb :=_fgbb ._afbb .WriteToFile (outputPath );_fabb !=nil {return _af .Errorf ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0074o\u0020\u0077\u0072\u0069\u0074\u0065\u0020t\u0068\u0065\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020\u0066\u0069\u006c\u0065"); +};return nil ;};func _dgef (_feab *_gf .TextMarkArray )(float64 ,error ){_cbf ,_aba :=_feab .BBox ();if !_aba {return 0.0,_af .Errorf ("\u0073\u0070\u0061\u006e\u004d\u0061\u0072\u006bs\u002e\u0042\u0042ox\u0020\u0068\u0061\u0073\u0020\u006eo\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062\u006f\u0078\u002e\u0020s\u0070\u0061\u006e\u004d\u0061\u0072\u006b\u0073=\u0025\u0073",_feab ); +};_cad :=_fb (_feab );_dfg :=0.0;_ ,_bea :=_cd (_feab );_cca :=_feab .Elements ()[_bea ];_fae :=_cca .Font ;if _cad > 0{_dfg =_ce (_fae ,_cca );};_ecc :=(_cbf .Urx -_cbf .Llx );_ecc =_ecc +_dfg *float64 (_cad );Tj :=_eff (_ecc ,_cca .FontSize ,_cca .Th ); +return Tj ,nil ;};func _bga (_eaa ,_aaf string )[]int {if len (_aaf )==0{return nil ;};var _bcb []int ;for _bcbg :=0;_bcbg < len (_eaa );{_dbee :=_g .Index (_eaa [_bcbg :],_aaf );if _dbee < 0{return _bcb ;};_bcb =append (_bcb ,_bcbg +_dbee );_bcbg +=_dbee +len (_aaf ); +};return _bcb ;};type matchedBBox struct{_ddd _dd .PdfRectangle ;_gfc string ;};func _dace (_fed *targetMap ,_egadb []int ){var _bbea [][]int ;for _dfd ,_eggf :=range _fed ._aeef {if _daa (_dfd ,_egadb ){continue ;};_bbea =append (_bbea ,_eggf );};_fed ._aeef =_bbea ; +};func _cgef (_fdc *matchedIndex ,_abbe [][]int )[]*matchedIndex {_aefff :=[]*matchedIndex {};_caed :=_fdc ._faa ;_bafe :=_caed ;_dfe :=_fdc ._fab ;_ggg :=0;for _ ,_dgfde :=range _abbe {_abgb :=_dgfde [0]-_caed ;if _ggg >=_abgb {continue ;};_daff :=_dfe [_ggg :_abgb ]; +_fcec :=&matchedIndex {_fab :_daff ,_faa :_bafe ,_gaf :_dgfde [0]};if len (_g .TrimSpace (_daff ))!=0{_aefff =append (_aefff ,_fcec );};_ggg =_dgfde [1]-_caed ;_bafe =_caed +_ggg ;};_fdgf :=_dfe [_ggg :];_bebc :=&matchedIndex {_fab :_fdgf ,_faa :_bafe ,_gaf :_fdc ._gaf }; +if len (_g .TrimSpace (_fdgf ))!=0{_aefff =append (_aefff ,_bebc );};return _aefff ;};func _cag (_fde string ,_egc []replacement ,_beg *_dd .PdfFont )[]_ef .PdfObject {_eacd :=[]_ef .PdfObject {};_geff :=0;_bee :=_fde ;for _ggc ,_eeg :=range _egc {_cdc :=_eeg ._db ; +_efa :=_eeg ._bc ;_fbac :=_eeg ._ggd ;_gbc :=_ef .MakeFloat (_efa );if _geff > _cdc ||_cdc ==-1{continue ;};_eggg :=_fde [_geff :_cdc ];_efag :=_beb (_eggg ,_beg );_deca :=_ef .MakeStringFromBytes (_efag );_eacd =append (_eacd ,_deca );_eacd =append (_eacd ,_gbc ); +_agc :=_cdc +len (_fbac );_bee =_fde [_agc :];_geff =_agc ;if _ggc ==len (_egc )-1{_efag =_beb (_bee ,_beg );_deca =_ef .MakeStringFromBytes (_efag );_eacd =append (_eacd ,_deca );};};return _eacd ;};func (_dbed *regexMatcher )match (_bbcc string )([]*matchedIndex ,error ){_bbda :=_dbed ._dfdg .Pattern ; +if _bbda ==nil {return nil ,_f .New ("\u006e\u006f\u0020\u0070at\u0074\u0065\u0072\u006e\u0020\u0063\u006f\u006d\u0070\u0069\u006c\u0065\u0064");};var (_agf =_bbda .FindAllStringIndex (_bbcc ,-1);_fddf []*matchedIndex ;);for _ ,_ggfb :=range _agf {_fddf =append (_fddf ,&matchedIndex {_faa :_ggfb [0],_gaf :_ggfb [1],_fab :_bbcc [_ggfb [0]:_ggfb [1]]}); +};return _fddf ,nil ;}; // Write writes the content of `re.creator` to writer of type io.Writer interface. -func (_gbebc *Redactor )Write (writer _gf .Writer )error {return _gbebc ._fdcb .Write (writer )};type matchedIndex struct{_acfd int ;_gfcb int ;_aeb string ;}; +func (_cae *Redactor )Write (writer _e .Writer )error {return _cae ._afbb .Write (writer )};func _gfba (_gegc []int ,_gedd *_gf .TextMarkArray ,_cfag string )(*_gf .TextMarkArray ,matchedBBox ,error ){_ffea :=matchedBBox {};_feec :=_gegc [0];_gdf :=_gegc [1]; +_cbc :=len (_cfag )-len (_g .TrimLeft (_cfag ,"\u0020"));_bda :=len (_cfag )-len (_g .TrimRight (_cfag ,"\u0020\u000a"));_feec =_feec +_cbc ;_gdf =_gdf -_bda ;_cfag =_g .Trim (_cfag ,"\u0020\u000a");_afc ,_defg :=_gedd .RangeOffset (_feec ,_gdf );if _defg !=nil {return nil ,_ffea ,_defg ; +};_faf ,_ecag :=_afc .BBox ();if !_ecag {return nil ,_ffea ,_af .Errorf ("\u0073\u0070\u0061\u006e\u004d\u0061\u0072\u006bs\u002e\u0042\u0042ox\u0020\u0068\u0061\u0073\u0020\u006eo\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062\u006f\u0078\u002e\u0020s\u0070\u0061\u006e\u004d\u0061\u0072\u006b\u0073=\u0025\u0073",_afc ); +};_ffea =matchedBBox {_gfc :_cfag ,_ddd :_faf };return _afc ,_ffea ,nil ;};func _fgaa (_aecf ,_cdcg targetMap )(bool ,[]int ){_cfb :=_g .Contains (_aecf ._gea ,_cdcg ._gea );var _ecfa []int ;for _ ,_edb :=range _aecf ._aeef {for _bbca ,_fabc :=range _cdcg ._aeef {if _fabc [0]>=_edb [0]&&_fabc [1]<=_edb [1]{_ecfa =append (_ecfa ,_bbca ); +};};};return _cfb ,_ecfa ;};func _cef (_bddg *_gf .TextMarkArray ,_ecde int ,_affd int )int {_fad :=_bddg .Elements ();_ecdf :=_ecde -1;_abb :=_ecde +1;_bgcde :=-1;if _ecdf >=0{_aeg :=_fad [_ecdf ];_ffcg :=_aeg .ObjString ;_becg :=len (_ffcg );_beab :=_aeg .Index ; +if _beab +1< _becg {_bgcde =_ecdf ;return _bgcde ;};};if _abb < len (_fad ){_acf :=_fad [_abb ];_befb :=_acf .ObjString ;if _befb [0]!=_acf .Text {_bgcde =_abb ;return _bgcde ;};};return _bgcde ;};func _cg (_dag *_eb .ContentStreamOperations ,_ec map[_ef .PdfObject ][]localSpanMarks )error {for _eg ,_ae :=range _ec {if _eg ==nil {continue ; +};_ca ,_cgc ,_ab :=_fbea (_dag ,_eg );if !_ab {_gg .Log .Debug ("Pd\u0066\u004fb\u006a\u0065\u0063\u0074\u0020\u0025\u0073\u006e\u006ft\u0020\u0066\u006f\u0075\u006e\u0064\u0020\u0069\u006e\u0020\u0073\u0069\u0064\u0065\u0020\u0074\u0068\u0065\u0020\u0063\u006f\u006e\u0074\u0065\u006e\u0074\u0073\u0074r\u0065a\u006d\u0020\u006f\u0070\u0065\u0072\u0061\u0074i\u006fn\u0020\u0025s",_eg ,_dag ); +return nil ;};if _ca .Operand =="\u0054\u006a"{_dc :=_bab (_ca ,_eg ,_ae );if _dc !=nil {return _dc ;};}else if _ca .Operand =="\u0054\u004a"{_ea :=_dg (_ca ,_eg ,_ae );if _ea !=nil {return _ea ;};}else if _ca .Operand =="\u0027"||_ca .Operand =="\u0022"{_ac :=_abg (_dag ,_ca .Operand ,_cgc ); +if _ac !=nil {return _ac ;};_ac =_bab (_ca ,_eg ,_ae );if _ac !=nil {return _ac ;};};};return nil ;};type targetMap struct{_gea string ;_aeef [][]int ;};func _aafa (_fecd string )(string ,[][]int ){_acfb :=_d .MustCompile ("\u005c\u006e");_cfd :=_acfb .FindAllStringIndex (_fecd ,-1); +_daba :=_acfb .ReplaceAllString (_fecd ,"\u0020");return _daba ,_cfd ;}; // RedactRectanglePropsNew return a new pointer to a default RectangleProps object. -func RedactRectanglePropsNew ()*RectangleProps {return &RectangleProps {FillColor :_a .ColorBlack ,BorderWidth :0.0,FillOpacity :1.0};};func _dbcf (_ebb string ,_adc []replacement ,_bbc *_ff .PdfFont )[]_d .PdfObject {_eba :=[]_d .PdfObject {};_affc :=0; -_bgba :=_ebb ;for _fcb ,_bcc :=range _adc {_acd :=_bcc ._c ;_cgcf :=_bcc ._ag ;_cae :=_bcc ._fce ;_eff :=_d .MakeFloat (_cgcf );if _affc > _acd ||_acd ==-1{continue ;};_cecb :=_ebb [_affc :_acd ];_bdf :=_dcg (_cecb ,_bbc );_edfb :=_d .MakeStringFromBytes (_bdf ); -_eba =append (_eba ,_edfb );_eba =append (_eba ,_eff );_agcd :=_acd +len (_cae );_bgba =_ebb [_agcd :];_affc =_agcd ;if _fcb ==len (_adc )-1{_bdf =_dcg (_bgba ,_bbc );_edfb =_d .MakeStringFromBytes (_bdf );_eba =append (_eba ,_edfb );};};return _eba ;}; -func _gfe (_fcea *_fd .ContentStreamOperation ,_acae _d .PdfObject ,_bbb []localSpanMarks )error {var _gbe *_d .PdfObjectArray ;_edg ,_eg :=_gbg (_bbb );if len (_eg )==1{_cde :=_eg [0];_feg :=_edg [_cde ];if len (_feg )==1{_gdee :=_feg [0];_cbe :=_gdee ._fedf ; -_cec :=_cce (_cbe );_gfaa ,_egb :=_gdf (_acae ,_cec );if _egb !=nil {return _egb ;};_cdd ,_egb :=_afb (_gdee ,_cbe ,_cec ,_gfaa ,_cde );if _egb !=nil {return _egb ;};_gbe =_d .MakeArray (_cdd ...);}else {_fgb :=_feg [0]._fedf ;_eef :=_cce (_fgb );_fbg ,_agc :=_gdf (_acae ,_eef ); -if _agc !=nil {return _agc ;};_egba ,_agc :=_ead (_fbg ,_feg );if _agc !=nil {return _agc ;};_gdef :=_ca (_egba );_cbd :=_dbcf (_fbg ,_gdef ,_eef );_gbe =_d .MakeArray (_cbd ...);};}else if len (_eg )> 1{_edgc :=_bbb [0];_fdd :=_edgc ._fedf ;_ ,_eegb :=_cfa (_fdd ); -_eaf :=_fdd .Elements ()[_eegb ];_ddf :=_eaf .Font ;_gbd ,_deg :=_gdf (_acae ,_ddf );if _deg !=nil {return _deg ;};_gcf ,_deg :=_ead (_gbd ,_bbb );if _deg !=nil {return _deg ;};_ccb :=_ca (_gcf );_dg :=_dbcf (_gbd ,_ccb ,_ddf );_gbe =_d .MakeArray (_dg ...); -};_fcea .Params [0]=_gbe ;_fcea .Operand ="\u0054\u004a";return nil ;};func _egd (_bcaf []*matchedIndex )[]*targetMap {_fbgg :=make (map[string ][][]int );_ebc :=[]*targetMap {};for _ ,_febb :=range _bcaf {_geee :=_febb ._aeb ;_efcc :=[]int {_febb ._acfd ,_febb ._gfcb }; -if _bcce ,_edag :=_fbgg [_geee ];_edag {_fbgg [_geee ]=append (_bcce ,_efcc );}else {_fbgg [_geee ]=[][]int {_efcc };};};for _aecd ,_dfbb :=range _fbgg {_gbb :=&targetMap {_bbfc :_aecd ,_ebba :_dfbb };_ebc =append (_ebc ,_gbb );};return _ebc ;};func _eb (_ce *_fd .ContentStreamOperation ,_ac _d .PdfObject ,_cd []localSpanMarks )error {_cdf ,_bce :=_d .GetArray (_ce .Params [0]); -_agb :=[]_d .PdfObject {};if !_bce {_b .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0054\u004a\u0020\u006f\u0070\u003d\u0025s\u0020G\u0065t\u0041r\u0072\u0061\u0079\u0056\u0061\u006c\u0020\u0066\u0061\u0069\u006c\u0065\u0064",_ce );return _f .Errorf ("\u0073\u0070\u0061\u006e\u004d\u0061\u0072\u006bs\u002e\u0042\u0042ox\u0020\u0068\u0061\u0073\u0020\u006eo\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062\u006f\u0078\u002e\u0020s\u0070\u0061\u006e\u004d\u0061\u0072\u006b\u0073=\u0025\u0073",_ce ); -};_gfa ,_gg :=_gbg (_cd );if len (_gg )==1{_fdc :=_gg [0];_aga :=_gfa [_fdc ];if len (_aga )==1{_fe :=_aga [0];_fb :=_fe ._fedf ;_eeb :=_cce (_fb );_aba ,_df :=_gdf (_ac ,_eeb );if _df !=nil {return _df ;};_ggg ,_df :=_afb (_fe ,_fb ,_eeb ,_aba ,_fdc ); -if _df !=nil {return _df ;};for _ ,_aab :=range _cdf .Elements (){if _aab ==_ac {_agb =append (_agb ,_ggg ...);}else {_agb =append (_agb ,_aab );};};}else {_cda :=_aga [0]._fedf ;_fdb :=_cce (_cda );_gde ,_fbb :=_gdf (_ac ,_fdb );if _fbb !=nil {return _fbb ; -};_fbf ,_fbb :=_ead (_gde ,_aga );if _fbb !=nil {return _fbb ;};_ae :=_ca (_fbf );_ggf :=_dbcf (_gde ,_ae ,_fdb );for _ ,_gc :=range _cdf .Elements (){if _gc ==_ac {_agb =append (_agb ,_ggf ...);}else {_agb =append (_agb ,_gc );};};};_ce .Params [0]=_d .MakeArray (_agb ...); -}else if len (_gg )> 1{_aabc :=_cd [0];_cg :=_aabc ._fedf ;_ ,_ec :=_cfa (_cg );_cgc :=_cg .Elements ()[_ec ];_cfc :=_cgc .Font ;_gff ,_cgg :=_gdf (_ac ,_cfc );if _cgg !=nil {return _cgg ;};_ecg ,_cgg :=_ead (_gff ,_cd );if _cgg !=nil {return _cgg ;};_edf :=_ca (_ecg ); -_fbbg :=_dbcf (_gff ,_edf ,_cfc );for _ ,_aacf :=range _cdf .Elements (){if _aacf ==_ac {_agb =append (_agb ,_fbbg ...);}else {_agb =append (_agb ,_aacf );};};_ce .Params [0]=_d .MakeArray (_agb ...);};return nil ;}; - -// RedactionTerm holds the regexp pattern and the replacement string for the redaction process. -type RedactionTerm struct{Pattern *_fc .Regexp ;}; - -// Redactor represents a Redactor object. -type Redactor struct{_ccd *_ff .PdfReader ;_dge *RedactionOptions ;_fdcb *_a .Creator ;_acg *RectangleProps ;};func _dgce (_feead []*targetMap ){for _agfb ,_aced :=range _feead {for _gceb ,_fece :=range _feead {if _agfb !=_gceb {_bgg ,_gag :=_ebg (*_aced ,*_fece ); -if _bgg {_bdcd (_fece ,_gag );};};};};};func (_bff *Redactor )redactPage (_aacd *_fd .ContentStreamOperations ,_dgc *_ff .PdfPageResources )([]matchedBBox ,*_fd .ContentStreamOperations ,error ){_ccf ,_dfcaa :=_gd .NewFromContents (_aacd .String (),_dgc ); -if _dfcaa !=nil {return nil ,nil ,_dfcaa ;};_gcfg ,_ ,_ ,_dfcaa :=_ccf .ExtractPageText ();if _dfcaa !=nil {return nil ,nil ,_dfcaa ;};_aacd =_gcfg .GetContentStreamOps ();_cdaa :=_gcfg .Marks ();_gbgg :=_gcfg .Text ();_gbgg ,_aceb :=_adag (_gbgg );_ggb :=[]matchedBBox {}; -_gef :=make (map[_d .PdfObject ][]localSpanMarks );_fcee :=[]*targetMap {};for _ ,_fcbd :=range _bff ._dge .Terms {_fgfb ,_debc :=_cfef (_fcbd );if _debc !=nil {return nil ,nil ,_debc ;};_abaed ,_debc :=_fgfb .match (_gbgg );if _debc !=nil {return nil ,nil ,_debc ; -};_abaed =_ebcd (_abaed ,_aceb );_fac :=_egd (_abaed );_fcee =append (_fcee ,_fac ...);};_dgce (_fcee );for _ ,_bed :=range _fcee {_gbaa :=_bed ._bbfc ;_baa :=_bed ._ebba ;_geea :=[]matchedBBox {};for _ ,_fafg :=range _baa {_efb ,_adbf ,_cbec :=_ffa (_fafg ,_cdaa ,_gbaa ); -if _cbec !=nil {return nil ,nil ,_cbec ;};_bbgc :=_cbde (_efb );for _ada ,_bee :=range _bbgc {_ebff :=localSpanMarks {_fedf :_bee ,_eefce :_ada ,_bca :_gbaa };_afg ,_ :=_cfa (_bee );if _agg ,_fgaf :=_gef [_afg ];_fgaf {_gef [_afg ]=append (_agg ,_ebff ); -}else {_gef [_afg ]=[]localSpanMarks {_ebff };};};_geea =append (_geea ,_adbf );};_ggb =append (_ggb ,_geea ...);};_dfcaa =_dd (_aacd ,_gef );if _dfcaa !=nil {return nil ,nil ,_dfcaa ;};return _ggb ,_aacd ,nil ;};func _ebbb (_feb *_gd .TextMarkArray )(float64 ,error ){_gad ,_fafe :=_feb .BBox (); -if !_fafe {return 0.0,_f .Errorf ("\u0073\u0070\u0061\u006e\u004d\u0061\u0072\u006bs\u002e\u0042\u0042ox\u0020\u0068\u0061\u0073\u0020\u006eo\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062\u006f\u0078\u002e\u0020s\u0070\u0061\u006e\u004d\u0061\u0072\u006b\u0073=\u0025\u0073",_feb ); -};_fed :=_cf (_feb );_bea :=0.0;_ ,_cfbe :=_cfa (_feb );_bbca :=_feb .Elements ()[_cfbe ];_agbd :=_bbca .Font ;if _fed > 0{_bea =_fgc (_agbd ,_bbca );};_bbd :=(_gad .Urx -_gad .Llx );_bbd =_bbd +_bea *float64 (_fed );Tj :=_cab (_bbd ,_bbca .FontSize ,_bbca .Th ); -return Tj ,nil ;};type replacement struct{_fce string ;_ag float64 ;_c int ;};func _bdcd (_gdg *targetMap ,_edga []int ){var _ebaa [][]int ;for _aefg ,_dbaf :=range _gdg ._ebba {if _ggge (_aefg ,_edga ){continue ;};_ebaa =append (_ebaa ,_dbaf );};_gdg ._ebba =_ebaa ; -};func _gdf (_dfca _d .PdfObject ,_fda *_ff .PdfFont )(string ,error ){_gce ,_bbgd :=_d .GetStringBytes (_dfca );if !_bbgd {return "",_d .ErrTypeError ;};_eec :=_fda .BytesToCharcodes (_gce );_feea ,_ecf ,_cced :=_fda .CharcodesToStrings (_eec );if _cced > 0{_b .Log .Debug ("\u0072\u0065nd\u0065\u0072\u0054e\u0078\u0074\u003a\u0020num\u0043ha\u0072\u0073\u003d\u0025\u0064\u0020\u006eum\u004d\u0069\u0073\u0073\u0065\u0073\u003d%\u0064",_ecf ,_cced ); -};_afa :=_ee .Join (_feea ,"");return _afa ,nil ;};type localSpanMarks struct{_fedf *_gd .TextMarkArray ;_eefce int ;_bca string ;};func _dec (_fdbe *_fd .ContentStreamOperations ,PdfObj _d .PdfObject )(*_fd .ContentStreamOperation ,int ,bool ){for _cecd ,_fcdc :=range *_fdbe {_adfd :=_fcdc .Operand ; -if _adfd =="\u0054\u006a"{_acdb :=_d .TraceToDirectObject (_fcdc .Params [0]);if _acdb ==PdfObj {return _fcdc ,_cecd ,true ;};}else if _adfd =="\u0054\u004a"{_abd ,_bdc :=_d .GetArray (_fcdc .Params [0]);if !_bdc {return nil ,_cecd ,_bdc ;};for _ ,_ecd :=range _abd .Elements (){if _ecd ==PdfObj {return _fcdc ,_cecd ,true ; -};};}else if _adfd =="\u0022"{_ddg :=_d .TraceToDirectObject (_fcdc .Params [2]);if _ddg ==PdfObj {return _fcdc ,_cecd ,true ;};}else if _adfd =="\u0027"{_gbeb :=_d .TraceToDirectObject (_fcdc .Params [0]);if _gbeb ==PdfObj {return _fcdc ,_cecd ,true ; -};};};return nil ,-1,false ;};func _cffb (_dcd *matchedIndex ,_gbeg [][]int )(bool ,[][]int ){_eefg :=[][]int {};for _ ,_agag :=range _gbeg {if _dcd ._acfd < _agag [0]&&_dcd ._gfcb > _agag [1]{_eefg =append (_eefg ,_agag );};};return len (_eefg )> 0,_eefg ; -};func _cbde (_bdfc *_gd .TextMarkArray )[]*_gd .TextMarkArray {_cbdf :=_bdfc .Elements ();_dcbb :=len (_cbdf );var _cac _d .PdfObject ;_aefe :=[]*_gd .TextMarkArray {};_cabb :=&_gd .TextMarkArray {};_gefd :=-1;for _aeg ,_ffbb :=range _cbdf {_aad :=_ffbb .DirectObject ; -_gefd =_ffbb .Index ;if _aad ==nil {_dbcb :=_dca (_bdfc ,_aeg ,_gefd );if _cac !=nil {if _dbcb ==-1||_dbcb > _aeg {_aefe =append (_aefe ,_cabb );_cabb =&_gd .TextMarkArray {};};};}else if _aad !=nil &&_cac ==nil {if _gefd ==0&&_aeg > 0{_aefe =append (_aefe ,_cabb ); -_cabb =&_gd .TextMarkArray {};};}else if _aad !=nil &&_cac !=nil {if _aad !=_cac {_aefe =append (_aefe ,_cabb );_cabb =&_gd .TextMarkArray {};};};_cac =_aad ;_cabb .Append (_ffbb );if _aeg ==(_dcbb -1){_aefe =append (_aefe ,_cabb );};};return _aefe ;}; -func _ggge (_beea int ,_ffb []int )bool {for _ ,_ecc :=range _ffb {if _ecc ==_beea {return true ;};};return false ;};func _eagf (_fdda *matchedIndex ,_feeg [][]int )[]*matchedIndex {_eebc :=[]*matchedIndex {};_cafe :=_fdda ._acfd ;_fgdf :=_cafe ;_gge :=_fdda ._aeb ; -_fafb :=0;for _ ,_aea :=range _feeg {_cacf :=_aea [0]-_cafe ;if _fafb >=_cacf {continue ;};_age :=_gge [_fafb :_cacf ];_fada :=&matchedIndex {_aeb :_age ,_acfd :_fgdf ,_gfcb :_aea [0]};if len (_ee .TrimSpace (_age ))!=0{_eebc =append (_eebc ,_fada );}; -_fafb =_aea [1]-_cafe ;_fgdf =_cafe +_fafb ;};_aece :=_gge [_fafb :];_ffg :=&matchedIndex {_aeb :_aece ,_acfd :_fgdf ,_gfcb :_fdda ._gfcb };if len (_ee .TrimSpace (_aece ))!=0{_eebc =append (_eebc ,_ffg );};return _eebc ;};func _cfef (_def RedactionTerm )(*regexMatcher ,error ){return ®exMatcher {_cfbd :_def },nil }; -type regexMatcher struct{_cfbd RedactionTerm };func _cf (_cb *_gd .TextMarkArray )int {_ddd :=0;_adf :=_cb .Elements ();if _adf [0].Text =="\u0020"{_ddd ++;};if _adf [_cb .Len ()-1].Text =="\u0020"{_ddd ++;};return _ddd ;};func _ffa (_aee []int ,_dfa *_gd .TextMarkArray ,_ege string )(*_gd .TextMarkArray ,matchedBBox ,error ){_cgf :=matchedBBox {}; -_adfda :=_aee [0];_caed :=_aee [1];_dbcg :=len (_ege )-len (_ee .TrimLeft (_ege ,"\u0020"));_dedd :=len (_ege )-len (_ee .TrimRight (_ege ,"\u0020\u000a"));_adfda =_adfda +_dbcg ;_caed =_caed -_dedd ;_ege =_ee .Trim (_ege ,"\u0020\u000a");_ebbac ,_dfcc :=_dfa .RangeOffset (_adfda ,_caed ); -if _dfcc !=nil {return nil ,_cgf ,_dfcc ;};_gae ,_fbfe :=_ebbac .BBox ();if !_fbfe {return nil ,_cgf ,_f .Errorf ("\u0073\u0070\u0061\u006e\u004d\u0061\u0072\u006bs\u002e\u0042\u0042ox\u0020\u0068\u0061\u0073\u0020\u006eo\u0020\u0062\u006f\u0075\u006e\u0064\u0069\u006e\u0067\u0020\u0062\u006f\u0078\u002e\u0020s\u0070\u0061\u006e\u004d\u0061\u0072\u006b\u0073=\u0025\u0073",_ebbac ); -};_cgf =matchedBBox {_fddc :_ege ,_dgb :_gae };return _ebbac ,_cgf ,nil ;};func _gbg (_agd []localSpanMarks )(map[string ][]localSpanMarks ,[]string ){_adda :=make (map[string ][]localSpanMarks );_fee :=[]string {};for _ ,_fbd :=range _agd {_bgc :=_fbd ._bca ; -if _fbde ,_aca :=_adda [_bgc ];_aca {_adda [_bgc ]=append (_fbde ,_fbd );}else {_adda [_bgc ]=[]localSpanMarks {_fbd };_fee =append (_fee ,_bgc );};};return _adda ,_fee ;};func _gfc (_efeg *_gd .TextMarkArray )string {_cefd :="";for _ ,_cge :=range _efeg .Elements (){_cefd +=_cge .Text ; -};return _cefd ;};func _ebcd (_gade []*matchedIndex ,_gage [][]int )[]*matchedIndex {_efdg :=[]*matchedIndex {};for _ ,_eefe :=range _gade {_gedd ,_fcdf :=_cffb (_eefe ,_gage );if _gedd {_ddaa :=_eagf (_eefe ,_fcdf );_efdg =append (_efdg ,_ddaa ...);}else {_efdg =append (_efdg ,_eefe ); -};};return _efdg ;};type targetMap struct{_bbfc string ;_ebba [][]int ;};type matchedBBox struct{_dgb _ff .PdfRectangle ;_fddc string ;};type placeHolders struct{_ef []int ;_bg string ;_ge float64 ;};func _fgc (_bbf *_ff .PdfFont ,_bde _gd .TextMark )float64 {_edd :=0.001; -_gfb :=_bde .Th /100;if _bbf .Subtype ()=="\u0054\u0079\u0070e\u0033"{_edd =1;};_gee ,_ebe :=_bbf .GetRuneMetrics (' ');if !_ebe {_gee ,_ebe =_bbf .GetCharMetrics (32);};if !_ebe {_gee ,_ =_ff .DefaultFont ().GetRuneMetrics (' ');};_cgge :=_edd *((_gee .Wx *_bde .FontSize +_bde .Tc +_bde .Tw )/_gfb ); -return _cgge ;};func _ebg (_cffd ,_abff targetMap )(bool ,[]int ){_efg :=_ee .Contains (_cffd ._bbfc ,_abff ._bbfc );var _fecd []int ;for _ ,_ede :=range _cffd ._ebba {for _fgfa ,_gdc :=range _abff ._ebba {if _gdc [0]>=_ede [0]&&_gdc [1]<=_ede [1]{_fecd =append (_fecd ,_fgfa ); -};};};return _efg ,_fecd ;}; +func RedactRectanglePropsNew ()*RectangleProps {return &RectangleProps {FillColor :_ge .ColorBlack ,BorderWidth :0.0,FillOpacity :1.0};};func _bfb (_ebdgd RedactionTerm )(*regexMatcher ,error ){return ®exMatcher {_dfdg :_ebdgd },nil };func _fca (_dec *_gf .TextMarkArray )*_dd .PdfFont {_ ,_gde :=_cd (_dec ); +_aga :=_dec .Elements ()[_gde ];_edg :=_aga .Font ;return _edg ;};func _cgce (_aeb *_gf .TextMarkArray )string {_befg :="";for _ ,_dbc :=range _aeb .Elements (){_befg +=_dbc .Text ;};return _befg ;};func _fbea (_gfbg *_eb .ContentStreamOperations ,PdfObj _ef .PdfObject )(*_eb .ContentStreamOperation ,int ,bool ){for _cfae ,_ded :=range *_gfbg {_beaa :=_ded .Operand ; +if _beaa =="\u0054\u006a"{_aeaa :=_ef .TraceToDirectObject (_ded .Params [0]);if _aeaa ==PdfObj {return _ded ,_cfae ,true ;};}else if _beaa =="\u0054\u004a"{_fce ,_afg :=_ef .GetArray (_ded .Params [0]);if !_afg {return nil ,_cfae ,_afg ;};for _ ,_acc :=range _fce .Elements (){if _acc ==PdfObj {return _ded ,_cfae ,true ; +};};}else if _beaa =="\u0022"{_fbb :=_ef .TraceToDirectObject (_ded .Params [2]);if _fbb ==PdfObj {return _ded ,_cfae ,true ;};}else if _beaa =="\u0027"{_dfbe :=_ef .TraceToDirectObject (_ded .Params [0]);if _dfbe ==PdfObj {return _ded ,_cfae ,true ;}; +};};return nil ,-1,false ;};type placeHolders struct{_da []int ;_b string ;_ed float64 ;};func _egg (_ccc []placeHolders )[]replacement {_cbd :=[]replacement {};for _ ,_cdb :=range _ccc {_eeae :=_cdb ._da ;_fcd :=_cdb ._b ;_ebb :=_cdb ._ed ;for _ ,_bgc :=range _eeae {_ebdg :=replacement {_ggd :_fcd ,_bc :_ebb ,_db :_bgc }; +_cbd =append (_cbd ,_ebdg );};};_c .Slice (_cbd ,func (_dge ,_fgc int )bool {return _cbd [_dge ]._db < _cbd [_fgc ]._db });return _cbd ;};func _ecdc (_cdf string ,_aac []localSpanMarks )([]placeHolders ,error ){_cdfc :="";_fbdb :=[]placeHolders {};for _fbdd ,_ccg :=range _aac {_cdfg :=_ccg ._edc ; +_decf :=_ccg ._fffa ;_ggf :=_cgce (_cdfg );_dece ,_afb :=_dgef (_cdfg );if _afb !=nil {return nil ,_afb ;};if _ggf !=_cdfc {var _gdc []int ;if _fbdd ==0&&_decf !=_ggf {_acef :=_g .Index (_cdf ,_ggf );_gdc =[]int {_acef };}else if _fbdd ==len (_aac )-1{_bbd :=_g .LastIndex (_cdf ,_ggf ); +_gdc =[]int {_bbd };}else {_gdc =_bga (_cdf ,_ggf );};_ebge :=placeHolders {_da :_gdc ,_b :_ggf ,_ed :_dece };_fbdb =append (_fbdb ,_ebge );};_cdfc =_ggf ;};return _fbdb ,nil ;}; // New instantiates a Redactor object with given PdfReader and `regex` pattern. -func New (reader *_ff .PdfReader ,opts *RedactionOptions ,rectProps *RectangleProps )*Redactor {if rectProps ==nil {rectProps =RedactRectanglePropsNew ();};return &Redactor {_ccd :reader ,_dge :opts ,_fdcb :_a .New (),_acg :rectProps };};func _afb (_fef localSpanMarks ,_cef *_gd .TextMarkArray ,_cbg *_ff .PdfFont ,_dbc ,_cff string )([]_d .PdfObject ,error ){_dfc :=_gfc (_cef ); -Tj ,_cdee :=_ebbb (_cef );if _cdee !=nil {return nil ,_cdee ;};_ace :=len (_dbc );_cfb :=len (_dfc );_dfb :=-1;_bbfg :=_d .MakeFloat (Tj );if _dfc !=_cff {_ced :=_fef ._eefce ;if _ced ==0{_dfb =_ee .LastIndex (_dbc ,_dfc );}else {_dfb =_ee .Index (_dbc ,_dfc ); -};}else {_dfb =_ee .Index (_dbc ,_dfc );};_ceab :=_dfb +_cfb ;_bfg :=[]_d .PdfObject {};if _dfb ==0&&_ceab ==_ace {_bfg =append (_bfg ,_bbfg );}else if _dfb ==0&&_ceab < _ace {_afe :=_dcg (_dbc [_ceab :],_cbg );_efd :=_d .MakeStringFromBytes (_afe );_bfg =append (_bfg ,_bbfg ,_efd ); -}else if _dfb > 0&&_ceab >=_ace {_ded :=_dcg (_dbc [:_dfb ],_cbg );_eda :=_d .MakeStringFromBytes (_ded );_bfg =append (_bfg ,_eda ,_bbfg );}else if _dfb > 0&&_ceab < _ace {_aff :=_dcg (_dbc [:_dfb ],_cbg );_fae :=_dcg (_dbc [_ceab :],_cbg );_gaf :=_d .MakeStringFromBytes (_aff ); -_efe :=_d .MakeString (string (_fae ));_bfg =append (_bfg ,_gaf ,_bbfg ,_efe );};return _bfg ,nil ;}; \ No newline at end of file +func New (reader *_dd .PdfReader ,opts *RedactionOptions ,rectProps *RectangleProps )*Redactor {if rectProps ==nil {rectProps =RedactRectanglePropsNew ();};return &Redactor {_gee :reader ,_gffa :opts ,_afbb :_ge .New (),_gcg :rectProps };};func _cf (_agg []localSpanMarks )(map[string ][]localSpanMarks ,[]string ){_baf :=make (map[string ][]localSpanMarks ); +_defe :=[]string {};for _ ,_dda :=range _agg {_cbg :=_dda ._fffa ;if _bgg ,_fcf :=_baf [_cbg ];_fcf {_baf [_cbg ]=append (_bgg ,_dda );}else {_baf [_cbg ]=[]localSpanMarks {_dda };_defe =append (_defe ,_cbg );};};return _baf ,_defe ;};func _gdd (_ccab []*matchedIndex )[]*targetMap {_gebf :=make (map[string ][][]int ); +_egfe :=[]*targetMap {};for _ ,_adc :=range _ccab {_fffe :=_adc ._fab ;_addb :=[]int {_adc ._faa ,_adc ._gaf };if _fdgc ,_efc :=_gebf [_fffe ];_efc {_gebf [_fffe ]=append (_fdgc ,_addb );}else {_gebf [_fffe ]=[][]int {_addb };};};for _eaaa ,_bcba :=range _gebf {_cde :=&targetMap {_gea :_eaaa ,_aeef :_bcba }; +_egfe =append (_egfe ,_cde );};return _egfe ;}; \ No newline at end of file diff --git a/render/internal/context/context.go b/render/internal/context/context.go index 19e51ce06..0dbaed576 100644 --- a/render/internal/context/context.go +++ b/render/internal/context/context.go @@ -9,31 +9,31 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package context ;import (_b "errors";_fde "github.com/unidoc/freetype/truetype";_bg "github.com/unidoc/unipdf/v3/core";_fb "github.com/unidoc/unipdf/v3/internal/cmap";_bc "github.com/unidoc/unipdf/v3/internal/textencoding";_ee "github.com/unidoc/unipdf/v3/internal/transform"; -_fbb "github.com/unidoc/unipdf/v3/model";_g "golang.org/x/image/font";_ea "image";_e "image/color";_fd "strings";);func (_ebf *TextState )ProcTm (a ,b ,c ,d ,e ,f float64 ){_ebf .Tm =_ee .NewMatrix (a ,b ,c ,d ,e ,f );_ebf .Tlm =_ebf .Tm .Clone ();};const (TextRenderingModeFill TextRenderingMode =iota ; -TextRenderingModeStroke ;TextRenderingModeFillStroke ;TextRenderingModeInvisible ;TextRenderingModeFillClip ;TextRenderingModeStrokeClip ;TextRenderingModeFillStrokeClip ;TextRenderingModeClip ;);func NewTextFontFromPath (filePath string ,size float64 )(*TextFont ,error ){_eg ,_fad :=_fbb .NewPdfFontFromTTFFile (filePath ); -if _fad !=nil {return nil ,_fad ;};return NewTextFont (_eg ,size );};type TextRenderingMode int ;type Gradient interface{Pattern ;AddColorStop (_a float64 ,_d _e .Color );};func (_bca *TextFont )CharcodeToRunes (charcode _bc .CharCode )(_bc .CharCode ,[]rune ){_aaa :=[]_bc .CharCode {charcode }; -if _bca ._fgb ==nil ||_bca ._fgb ==_bca .Font {return _bca .charcodeToRunesSimple (charcode );};_agb :=_bca ._fgb .CharcodesToUnicode (_aaa );_gba ,_ :=_bca .Font .RunesToCharcodeBytes (_agb );_edb :=_bca .Font .BytesToCharcodes (_gba );_fcb :=charcode ; -if len (_edb )> 0&&_edb [0]!=0{_fcb =_edb [0];};if string (_agb )==string (_fb .MissingCodeRune )&&_bca ._fgb .BaseFont ()==_bca .Font .BaseFont (){return _bca .charcodeToRunesSimple (charcode );};return _fcb ,_agb ;};func (_ac *TextState )ProcTD (tx ,ty float64 ){_ac .Tl =-ty ; -_ac .ProcTd (tx ,ty )};type Context interface{Push ();Pop ();Matrix ()_ee .Matrix ;SetMatrix (_eb _ee .Matrix );Translate (_ae ,_fbe float64 );Scale (_ba ,_c float64 );Rotate (_fg float64 );MoveTo (_cc ,_ed float64 );LineTo (_baa ,_ab float64 );CubicTo (_ga ,_de ,_cf ,_fa ,_bb ,_ca float64 ); -QuadraticTo (_cd ,_df ,_fe ,_ge float64 );NewSubPath ();ClosePath ();ClearPath ();Clip ();ClipPreserve ();ResetClip ();LineWidth ()float64 ;SetLineWidth (_geg float64 );SetLineCap (_da LineCap );SetLineJoin (_daf LineJoin );SetDash (_ce ...float64 );SetDashOffset (_cdb float64 ); -Fill ();FillPreserve ();Stroke ();StrokePreserve ();SetRGBA (_bab ,_fag ,_cb ,_ec float64 );SetFillRGBA (_bd ,_ecg ,_abe ,_gc float64 );SetFillStyle (_eab Pattern );SetFillRule (_aef FillRule );SetStrokeRGBA (_db ,_fgg ,_ag ,_cfa float64 );SetStrokeStyle (_ccg Pattern ); -FillPattern ()Pattern ;StrokePattern ()Pattern ;TextState ()*TextState ;DrawString (_dd string ,_agf _g .Face ,_aa ,_af float64 );MeasureString (_ddd string ,_ede _g .Face )(_aad ,_fef float64 );DrawRectangle (_gd ,_gdb ,_bae ,_cfd float64 );DrawImage (_gcg _ea .Image ,_dbc ,_cdd int ); -DrawImageAnchored (_gb _ea .Image ,_eeg ,_cca int ,_gbf ,_bba float64 );Height ()int ;Width ()int ;};const (LineCapRound LineCap =iota ;LineCapButt ;LineCapSquare ;);func (_ad *TextState )Reset (){_ad .Tm =_ee .IdentityMatrix ();_ad .Tlm =_ee .IdentityMatrix ()}; -func (_agc *TextFont )charcodeToRunesSimple (_cbd _bc .CharCode )(_bc .CharCode ,[]rune ){_ded :=[]_bc .CharCode {_cbd };if _agc .Font .IsSimple ()&&_agc ._gf !=nil {if _gfd :=_agc ._gf .Index (rune (_cbd ));_gfd > 0{return _cbd ,[]rune {rune (_cbd )}; -};};if _agc ._gf !=nil &&!_agc ._gf .HasCmap ()&&_fd .Contains (_agc .Font .Encoder ().String (),"\u0049d\u0065\u006e\u0074\u0069\u0074\u0079-"){if _cef :=_agc ._gf .Index (rune (_cbd ));_cef > 0{return _cbd ,[]rune {rune (_cbd )};};};return _cbd ,_agc .Font .CharcodesToUnicode (_ded ); -};type LineCap int ;type TextFont struct{Font *_fbb .PdfFont ;Size float64 ;_gf *_fde .Font ;_fgb *_fbb .PdfFont ;};const (FillRuleWinding FillRule =iota ;FillRuleEvenOdd ;);func (_ebg *TextState )ProcTd (tx ,ty float64 ){_ebg .Tlm .Concat (_ee .TranslationMatrix (tx ,ty )); -_ebg .Tm =_ebg .Tlm .Clone ();};type Pattern interface{ColorAt (_ef ,_be int )_e .Color ;};type LineJoin int ;func (_efd *TextFont )GetCharMetrics (code _bc .CharCode )(float64 ,float64 ,bool ){if _cda ,_abd :=_efd .Font .GetCharMetrics (code );_abd &&_cda .Wx !=0{return _cda .Wx ,_cda .Wy ,_abd ; -};if _efd ._fgb ==nil {return 0,0,false ;};_fab ,_afa :=_efd ._fgb .GetCharMetrics (code );return _fab .Wx ,_fab .Wy ,_afa &&_fab .Wx !=0;};func (_ff *TextFont )BytesToCharcodes (data []byte )[]_bc .CharCode {if _ff ._fgb !=nil {return _ff ._fgb .BytesToCharcodes (data ); -};return _ff .Font .BytesToCharcodes (data );};func (_dg *TextState )ProcTj (data []byte ,ctx Context ){_cdae :=_dg .Tf .Size ;_fdd :=_dg .Th /100.0;_dde :=_dg .GlobalScale ;_bdf :=_ee .NewMatrix (_cdae *_fdd ,0,0,_cdae ,0,_dg .Ts );_ebd :=ctx .Matrix (); -_gcf :=_ebd .Clone ().Mult (_dg .Tm .Clone ().Mult (_bdf )).ScalingFactorY ();_dbb :=_dg .Tf .NewFace (_gcf );_bf :=_dg .Tf .BytesToCharcodes (data );for _ ,_gee :=range _bf {_fdg ,_gdbc :=_dg .Tf .CharcodeToRunes (_gee );_fbd :=string (_gdbc );if _fbd =="\u0000"{continue ; -};_dfg :=_ebd .Clone ().Mult (_dg .Tm .Clone ().Mult (_bdf ));_gdg :=_dfg .ScalingFactorY ();_dfg =_dfg .Scale (1/_gdg ,-1/_gdg );if _dg .Tr !=TextRenderingModeInvisible {ctx .SetMatrix (_dfg );ctx .DrawString (_fbd ,_dbb ,0,0);ctx .SetMatrix (_ebd );}; -_cg :=0.0;if _fbd =="\u0020"{_cg =_dg .Tw ;};_afd ,_ ,_bdg :=_dg .Tf .GetCharMetrics (_fdg );if _bdg {_afd =_afd *0.001*_cdae ;}else {_afd ,_ =ctx .MeasureString (_fbd ,_dbb );_afd =_afd /_dde ;};_bedc :=(_afd +_dg .Tc +_cg )*_fdd ;_dg .Tm =_dg .Tm .Mult (_ee .TranslationMatrix (_bedc ,0)); -};};func (_def *TextState )ProcDQ (data []byte ,aw ,ac float64 ,ctx Context ){_def .Tw =aw ;_def .Tc =ac ;_def .ProcQ (data ,ctx );};const (LineJoinRound LineJoin =iota ;LineJoinBevel ;);func (_bed *TextFont )NewFace (size float64 )_g .Face {return _fde .NewFace (_bed ._gf ,&_fde .Options {Size :size }); -};func (_gg *TextFont )WithSize (size float64 ,originalFont *_fbb .PdfFont )*TextFont {return &TextFont {Font :_gg .Font ,Size :size ,_gf :_gg ._gf ,_fgb :originalFont };};func NewTextState ()TextState {return TextState {Th :100,Tm :_ee .IdentityMatrix (),Tlm :_ee .IdentityMatrix ()}; -};func (_gfg *TextState )ProcTf (font *TextFont ){_gfg .Tf =font };func NewTextFont (font *_fbb .PdfFont ,size float64 )(*TextFont ,error ){_aab :=font .FontDescriptor ();if _aab ==nil {return nil ,_b .New ("\u0063\u006fu\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069pt\u006f\u0072"); -};_gaf ,_aabc :=_bg .GetStream (_aab .FontFile2 );if !_aabc {return nil ,_b .New ("\u006di\u0073\u0073\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020f\u0069\u006c\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d");};_fc ,_efc :=_bg .DecodeStream (_gaf ); -if _efc !=nil {return nil ,_efc ;};_bda ,_efc :=_fde .Parse (_fc );if _efc !=nil {return nil ,_efc ;};_cae :=font .FontDescriptor ().FontName .String ();_cdbd :=len (_cae )> 7&&_cae [6]=='+';if !_bda .HasCmap ()&&(!_fd .Contains (font .Encoder ().String (),"\u0049d\u0065\u006e\u0074\u0069\u0074\u0079-")||!_cdbd ){return nil ,_b .New ("\u006e\u006f c\u006d\u0061\u0070 \u0061\u006e\u0064\u0020enc\u006fdi\u006e\u0067\u0020\u0069\u0073\u0020\u006eot\u0020\u0069\u0064\u0065\u006e\u0074\u0069t\u0079"); -};return &TextFont {Font :font ,Size :size ,_gf :_bda },nil ;};func (_ege *TextState )ProcTStar (){_ege .ProcTd (0,-_ege .Tl )};type TextState struct{Tc float64 ;Tw float64 ;Th float64 ;Tl float64 ;Tf *TextFont ;Ts float64 ;Tm _ee .Matrix ;Tlm _ee .Matrix ; -Tr TextRenderingMode ;GlobalScale float64 ;};func (_ggd *TextState )Translate (tx ,ty float64 ){_ggd .Tm =_ggd .Tm .Mult (_ee .TranslationMatrix (tx ,ty ));};func (_ggf *TextState )ProcQ (data []byte ,ctx Context ){_ggf .ProcTStar ();_ggf .ProcTj (data ,ctx )}; -type FillRule int ; \ No newline at end of file +package context ;import (_c "errors";_cd "github.com/unidoc/freetype/truetype";_fg "github.com/unidoc/unipdf/v3/core";_cb "github.com/unidoc/unipdf/v3/internal/cmap";_a "github.com/unidoc/unipdf/v3/internal/textencoding";_dfa "github.com/unidoc/unipdf/v3/internal/transform"; +_f "github.com/unidoc/unipdf/v3/model";_cg "golang.org/x/image/font";_df "image";_dc "image/color";_b "strings";);func (_bgd *TextState )ProcTm (a ,b ,c ,d ,e ,f float64 ){_bgd .Tm =_dfa .NewMatrix (a ,b ,c ,d ,e ,f );_bgd .Tlm =_bgd .Tm .Clone ();};type Pattern interface{ColorAt (_ce ,_da int )_dc .Color ; +};type TextFont struct{Font *_f .PdfFont ;Size float64 ;_cged *_cd .Font ;_gba *_f .PdfFont ;};func (_gbd *TextState )ProcTD (tx ,ty float64 ){_gbd .Tl =-ty ;_gbd .ProcTd (tx ,ty )};const (LineJoinRound LineJoin =iota ;LineJoinBevel ;);func (_fbd *TextFont )CharcodeToRunes (charcode _a .CharCode )(_a .CharCode ,[]rune ){_bgg :=[]_a .CharCode {charcode }; +if _fbd ._gba ==nil ||_fbd ._gba ==_fbd .Font {return _fbd .charcodeToRunesSimple (charcode );};_fca :=_fbd ._gba .CharcodesToUnicode (_bgg );_cc ,_ :=_fbd .Font .RunesToCharcodeBytes (_fca );_cbaa :=_fbd .Font .BytesToCharcodes (_cc );_de :=charcode ; +if len (_cbaa )> 0&&_cbaa [0]!=0{_de =_cbaa [0];};if string (_fca )==string (_cb .MissingCodeRune )&&_fbd ._gba .BaseFont ()==_fbd .Font .BaseFont (){return _fbd .charcodeToRunesSimple (charcode );};return _de ,_fca ;};func (_gee *TextState )ProcTd (tx ,ty float64 ){_gee .Tlm .Concat (_dfa .TranslationMatrix (tx ,ty )); +_gee .Tm =_gee .Tlm .Clone ();};func (_bag *TextFont )GetCharMetrics (code _a .CharCode )(float64 ,float64 ,bool ){if _cbg ,_gdb :=_bag .Font .GetCharMetrics (code );_gdb &&_cbg .Wx !=0{return _cbg .Wx ,_cbg .Wy ,_gdb ;};if _bag ._gba ==nil {return 0,0,false ; +};_ccb ,_dgac :=_bag ._gba .GetCharMetrics (code );return _ccb .Wx ,_ccb .Wy ,_dgac &&_ccb .Wx !=0;};func (_gcfe *TextState )ProcTf (font *TextFont ){_gcfe .Tf =font };func (_dac *TextState )Translate (tx ,ty float64 ){_dac .Tm =_dac .Tm .Mult (_dfa .TranslationMatrix (tx ,ty )); +};func (_ege *TextFont )NewFace (size float64 )_cg .Face {return _cd .NewFace (_ege ._cged ,&_cd .Options {Size :size });};type Context interface{Push ();Pop ();Matrix ()_dfa .Matrix ;SetMatrix (_ag _dfa .Matrix );Translate (_g ,_e float64 );Scale (_dd ,_dcf float64 ); +Rotate (_ea float64 );MoveTo (_ba ,_ff float64 );LineTo (_fc ,_db float64 );CubicTo (_ffa ,_gb ,_eaa ,_dfg ,_ed ,_bf float64 );QuadraticTo (_bg ,_dg ,_bdf ,_edc float64 );NewSubPath ();ClosePath ();ClearPath ();Clip ();ClipPreserve ();ResetClip ();LineWidth ()float64 ; +SetLineWidth (_fa float64 );SetLineCap (_ddb LineCap );SetLineJoin (_ef LineJoin );SetDash (_dfb ...float64 );SetDashOffset (_ge float64 );Fill ();FillPreserve ();Stroke ();StrokePreserve ();SetRGBA (_bfb ,_bad ,_ae ,_cge float64 );SetFillRGBA (_cf ,_af ,_gc ,_gcb float64 ); +SetFillStyle (_dga Pattern );SetFillRule (_aeg FillRule );SetStrokeRGBA (_gf ,_gd ,_aa ,_cbc float64 );SetStrokeStyle (_daa Pattern );FillPattern ()Pattern ;StrokePattern ()Pattern ;TextState ()*TextState ;DrawString (_ffe string ,_cgb _cg .Face ,_dfe ,_eg float64 ); +MeasureString (_egg string ,_ee _cg .Face )(_ac ,_afg float64 );DrawRectangle (_aac ,_gfe ,_bfc ,_bb float64 );DrawImage (_fcd _df .Image ,_ec ,_cee int );DrawImageAnchored (_fae _df .Image ,_bff ,_ecc int ,_ca ,_efb float64 );Height ()int ;Width ()int ; +};func (_deg *TextState )ProcTStar (){_deg .ProcTd (0,-_deg .Tl )};func (_ddbg *TextFont )BytesToCharcodes (data []byte )[]_a .CharCode {if _ddbg ._gba !=nil {return _ddbg ._gba .BytesToCharcodes (data );};return _ddbg .Font .BytesToCharcodes (data );}; +func (_bc *TextFont )WithSize (size float64 ,originalFont *_f .PdfFont )*TextFont {return &TextFont {Font :_bc .Font ,Size :size ,_cged :_bc ._cged ,_gba :originalFont };};type Gradient interface{Pattern ;AddColorStop (_cba float64 ,_bd _dc .Color );}; +const (TextRenderingModeFill TextRenderingMode =iota ;TextRenderingModeStroke ;TextRenderingModeFillStroke ;TextRenderingModeInvisible ;TextRenderingModeFillClip ;TextRenderingModeStrokeClip ;TextRenderingModeFillStrokeClip ;TextRenderingModeClip ;);func (_cdb *TextState )ProcQ (data []byte ,ctx Context ){_cdb .ProcTStar (); +_cdb .ProcTj (data ,ctx )};type LineCap int ;func (_eag *TextState )ProcDQ (data []byte ,aw ,ac float64 ,ctx Context ){_eag .Tw =aw ;_eag .Tc =ac ;_eag .ProcQ (data ,ctx );};type TextState struct{Tc float64 ;Tw float64 ;Th float64 ;Tl float64 ;Tf *TextFont ; +Ts float64 ;Tm _dfa .Matrix ;Tlm _dfa .Matrix ;Tr TextRenderingMode ;GlobalScale float64 ;};func (_acc *TextFont )charcodeToRunesSimple (_cbd _a .CharCode )(_a .CharCode ,[]rune ){_bdc :=[]_a .CharCode {_cbd };if _acc .Font .IsSimple ()&&_acc ._cged !=nil {if _ddg :=_acc ._cged .Index (rune (_cbd )); +_ddg > 0{return _cbd ,[]rune {rune (_cbd )};};};if _acc ._cged !=nil &&!_acc ._cged .HasCmap ()&&_b .Contains (_acc .Font .Encoder ().String (),"\u0049d\u0065\u006e\u0074\u0069\u0074\u0079-"){if _fge :=_acc ._cged .Index (rune (_cbd ));_fge > 0{return _cbd ,[]rune {rune (_cbd )}; +};};return _cbd ,_acc .Font .CharcodesToUnicode (_bdc );};func (_be *TextState )ProcTj (data []byte ,ctx Context ){_fce :=_be .Tf .Size ;_cgab :=_be .Th /100.0;_ad :=_be .GlobalScale ;_fgg :=_dfa .NewMatrix (_fce *_cgab ,0,0,_fce ,0,_be .Ts );_deb :=ctx .Matrix (); +_dbc :=_deb .Clone ().Mult (_be .Tm .Clone ().Mult (_fgg )).ScalingFactorY ();_aag :=_be .Tf .NewFace (_dbc );_ged :=_be .Tf .BytesToCharcodes (data );for _ ,_gcf :=range _ged {_bab ,_fba :=_be .Tf .CharcodeToRunes (_gcf );_eee :=string (_fba );if _eee =="\u0000"{continue ; +};_gcc :=_deb .Clone ().Mult (_be .Tm .Clone ().Mult (_fgg ));_fgb :=_gcc .ScalingFactorY ();_gcc =_gcc .Scale (1/_fgb ,-1/_fgb );if _be .Tr !=TextRenderingModeInvisible {ctx .SetMatrix (_gcc );ctx .DrawString (_eee ,_aag ,0,0);ctx .SetMatrix (_deb );}; +_eef :=0.0;if _eee =="\u0020"{_eef =_be .Tw ;};_ece ,_ ,_egf :=_be .Tf .GetCharMetrics (_bab );if _egf {_ece =_ece *0.001*_fce ;}else {_ece ,_ =ctx .MeasureString (_eee ,_aag );_ece =_ece /_ad ;};_eb :=(_ece +_be .Tc +_eef )*_cgab ;_be .Tm =_be .Tm .Mult (_dfa .TranslationMatrix (_eb ,0)); +};};type FillRule int ;func NewTextState ()TextState {return TextState {Th :100,Tm :_dfa .IdentityMatrix (),Tlm :_dfa .IdentityMatrix ()};};func NewTextFontFromPath (filePath string ,size float64 )(*TextFont ,error ){_egb ,_fb :=_f .NewPdfFontFromTTFFile (filePath ); +if _fb !=nil {return nil ,_fb ;};return NewTextFont (_egb ,size );};func (_gcfc *TextState )Reset (){_gcfc .Tm =_dfa .IdentityMatrix ();_gcfc .Tlm =_dfa .IdentityMatrix ()};const (FillRuleWinding FillRule =iota ;FillRuleEvenOdd ;);type LineJoin int ;const (LineCapRound LineCap =iota ; +LineCapButt ;LineCapSquare ;);func NewTextFont (font *_f .PdfFont ,size float64 )(*TextFont ,error ){_cgf :=font .FontDescriptor ();if _cgf ==nil {return nil ,_c .New ("\u0063\u006fu\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0065\u0073\u0063\u0072\u0069pt\u006f\u0072"); +};_acg ,_dfec :=_fg .GetStream (_cgf .FontFile2 );if !_dfec {return nil ,_c .New ("\u006di\u0073\u0073\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020f\u0069\u006c\u0065\u0020\u0073\u0074\u0072\u0065\u0061\u006d");};_eac ,_cfe :=_fg .DecodeStream (_acg ); +if _cfe !=nil {return nil ,_cfe ;};_dfc ,_cfe :=_cd .Parse (_eac );if _cfe !=nil {return nil ,_cfe ;};_gcd :=font .FontDescriptor ().FontName .String ();_aae :=len (_gcd )> 7&&_gcd [6]=='+';if !_dfc .HasCmap ()&&(!_b .Contains (font .Encoder ().String (),"\u0049d\u0065\u006e\u0074\u0069\u0074\u0079-")||!_aae ){return nil ,_c .New ("\u006e\u006f c\u006d\u0061\u0070 \u0061\u006e\u0064\u0020enc\u006fdi\u006e\u0067\u0020\u0069\u0073\u0020\u006eot\u0020\u0069\u0064\u0065\u006e\u0074\u0069t\u0079"); +};return &TextFont {Font :font ,Size :size ,_cged :_dfc },nil ;};type TextRenderingMode int ; \ No newline at end of file diff --git a/render/internal/context/imagerender/imagerender.go b/render/internal/context/imagerender/imagerender.go index e4a06a4d1..275541061 100644 --- a/render/internal/context/imagerender/imagerender.go +++ b/render/internal/context/imagerender/imagerender.go @@ -9,98 +9,99 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package imagerender ;import (_ag "errors";_ae "fmt";_gf "github.com/unidoc/freetype/raster";_cf "github.com/unidoc/unipdf/v3/common";_gg "github.com/unidoc/unipdf/v3/internal/transform";_cff "github.com/unidoc/unipdf/v3/render/internal/context";_ca "golang.org/x/image/draw"; -_ad "golang.org/x/image/font";_fg "golang.org/x/image/math/f64";_d "golang.org/x/image/math/fixed";_ee "image";_g "image/color";_e "image/draw";_f "math";_c "sort";_a "strings";);func NewContextForImage (im _ee .Image )*Context {return NewContextForRGBA (_ecag (im ))}; -func (_bba *Context )SetFillRule (fillRule _cff .FillRule ){_bba ._dfb =fillRule };func _acaa (_aaab _gf .Path ,_ffac []float64 ,_aebb float64 )_gf .Path {return _gfb (_fgfa (_aac (_aaab ),_ffac ,_aebb ));};func (_ggc *Context )SetFillStyle (pattern _cff .Pattern ){if _bag ,_cae :=pattern .(*solidPattern ); -_cae {_ggc ._caa =_bag ._adb ;};_ggc ._dga =pattern ;};func (_bcd *Context )Identity (){_bcd ._ff =_gg .IdentityMatrix ()};func (_gba *Context )Width ()int {return _gba ._bdb };func (_fge *Context )ClearPath (){_fge ._fbbb .Clear ();_fge ._bfe .Clear (); -_fge ._cda =false };func _cggf (_daeb _g .Color )_cff .Pattern {return &solidPattern {_adb :_daeb }};func _dag (_fbbg ,_aa ,_dfa ,_dg ,_aee ,_eb ,_ade ,_bae float64 )[]_gg .Point {_agc :=(_f .Hypot (_dfa -_fbbg ,_dg -_aa )+_f .Hypot (_aee -_dfa ,_eb -_dg )+_f .Hypot (_ade -_aee ,_bae -_eb )); -_cee :=int (_agc +0.5);if _cee < 4{_cee =4;};_gea :=float64 (_cee )-1;_cffce :=make ([]_gg .Point ,_cee );for _gc :=0;_gc < _cee ;_gc ++{_fbd :=float64 (_gc )/_gea ;_fc ,_aeb :=_gdc (_fbbg ,_aa ,_dfa ,_dg ,_aee ,_eb ,_ade ,_bae ,_fbd );_cffce [_gc ]=_gg .NewPoint (_fc ,_aeb ); -};return _cffce ;};type linearGradient struct{_ebfb ,_fged ,_fdega ,_bbd float64 ;_dgcg stops ;};func (_ddef *Context )Stroke (){_ddef .StrokePreserve ();_ddef .ClearPath ()};func (_cdbc *linearGradient )AddColorStop (offset float64 ,color _g .Color ){_cdbc ._dgcg =append (_cdbc ._dgcg ,stop {_fgef :offset ,_gaga :color }); -_c .Sort (_cdbc ._dgcg );};func (_fda *Context )setFillAndStrokeColor (_ccf _g .Color ){_fda ._caa =_ccf ;_fda ._dga =_cggf (_ccf );_fda ._dgb =_cggf (_ccf );};func _dd (_gga ,_ggb ,_bb ,_aed ,_fga ,_cd ,_cffc float64 )(_ge ,_fd float64 ){_fb :=1-_cffc ; -_bf :=_fb *_fb ;_bd :=2*_fb *_cffc ;_cdg :=_cffc *_cffc ;_ge =_bf *_gga +_bd *_bb +_cdg *_fga ;_fd =_bf *_ggb +_bd *_aed +_cdg *_cd ;return ;};func (_aeda *Context )Scale (x ,y float64 ){_aeda ._ff =_aeda ._ff .Scale (x ,y )};func (_fab *Context )LineTo (x ,y float64 ){if !_fab ._cda {_fab .MoveTo (x ,y ); -}else {x ,y =_fab .Transform (x ,y );_fe :=_gg .NewPoint (x ,y );_dggc :=_afab (_fe );_fab ._fbbb .Add1 (_dggc );_fab ._bfe .Add1 (_dggc );_fab ._cfb =_fe ;};};type stop struct{_fgef float64 ;_gaga _g .Color ;};func (_gbae *Context )Height ()int {return _gbae ._bgc }; -func _afgb (_bfdg *_ee .RGBA ,_feb *_ee .Alpha ,_ffeb _cff .Pattern )*patternPainter {return &patternPainter {_bfdg ,_feb ,_ffeb };};type surfacePattern struct{_gbga _ee .Image ;_bbfe repeatOp ;};type radialGradient struct{_eeg ,_fbbd ,_fgb circle ;_abd ,_dbg float64 ; -_dffe float64 ;_fdaa stops ;};func _afab (_ebaf _gg .Point )_d .Point26_6 {return _d .Point26_6 {X :_ggg (_ebaf .X ),Y :_ggg (_ebaf .Y )}};func (_deg *Context )ClipPreserve (){_cdaa :=_ee .NewAlpha (_ee .Rect (0,0,_deg ._bdb ,_deg ._bgc ));_bbcf :=_gf .NewAlphaOverPainter (_cdaa ); -_deg .fill (_bbcf );if _deg ._abe ==nil {_deg ._abe =_cdaa ;}else {_adga :=_ee .NewAlpha (_ee .Rect (0,0,_deg ._bdb ,_deg ._bgc ));_ca .DrawMask (_adga ,_adga .Bounds (),_cdaa ,_ee .Point {},_deg ._abe ,_ee .Point {},_ca .Over );_deg ._abe =_adga ;};}; -func NewLinearGradient (x0 ,y0 ,x1 ,y1 float64 )_cff .Gradient {_ccc :=&linearGradient {_ebfb :x0 ,_fged :y0 ,_fdega :x1 ,_bbd :y1 };return _ccc ;};func (_bea *Context )DrawLine (x1 ,y1 ,x2 ,y2 float64 ){_bea .MoveTo (x1 ,y1 );_bea .LineTo (x2 ,y2 )};func _cbe (_dddbb string )(_cdad ,_ceg ,_ffffg ,_cbea int ){_dddbb =_a .TrimPrefix (_dddbb ,"\u0023"); -_cbea =255;if len (_dddbb )==3{_afa :="\u00251\u0078\u0025\u0031\u0078\u0025\u0031x";_ae .Sscanf (_dddbb ,_afa ,&_cdad ,&_ceg ,&_ffffg );_cdad |=_cdad <<4;_ceg |=_ceg <<4;_ffffg |=_ffffg <<4;};if len (_dddbb )==6{_fgaf :="\u0025\u0030\u0032x\u0025\u0030\u0032\u0078\u0025\u0030\u0032\u0078"; -_ae .Sscanf (_dddbb ,_fgaf ,&_cdad ,&_ceg ,&_ffffg );};if len (_dddbb )==8{_beed :="\u0025\u00302\u0078\u0025\u00302\u0078\u0025\u0030\u0032\u0078\u0025\u0030\u0032\u0078";_ae .Sscanf (_dddbb ,_beed ,&_cdad ,&_ceg ,&_ffffg ,&_cbea );};return ;};func (_fff *Context )NewSubPath (){if _fff ._cda {_fff ._bfe .Add1 (_afab (_fff ._ac )); -};_fff ._cda =false ;};func (_eefc *Context )fill (_aba _gf .Painter ){_bbf :=_eefc ._bfe ;if _eefc ._cda {_bbf =make (_gf .Path ,len (_eefc ._bfe ));copy (_bbf ,_eefc ._bfe );_bbf .Add1 (_afab (_eefc ._ac ));};_fac :=_eefc ._dc ;_fac .UseNonZeroWinding =_eefc ._dfb ==_cff .FillRuleWinding ; -_fac .Clear ();_fac .AddPath (_bbf );_fac .Rasterize (_aba );};func (_aecg *linearGradient )ColorAt (x ,y int )_g .Color {if len (_aecg ._dgcg )==0{return _g .Transparent ;};_dge ,_cag :=float64 (x ),float64 (y );_bbdf ,_aeca ,_agd ,_fcff :=_aecg ._ebfb ,_aecg ._fged ,_aecg ._fdega ,_aecg ._bbd ; -_acae ,_dfbc :=_agd -_bbdf ,_fcff -_aeca ;if _dfbc ==0&&_acae !=0{return _fgcd ((_dge -_bbdf )/_acae ,_aecg ._dgcg );};if _acae ==0&&_dfbc !=0{return _fgcd ((_cag -_aeca )/_dfbc ,_aecg ._dgcg );};_cde :=_acae *(_dge -_bbdf )+_dfbc *(_cag -_aeca );if _cde < 0{return _aecg ._dgcg [0]._gaga ; -};_eec :=_f .Hypot (_acae ,_dfbc );_gbe :=((_dge -_bbdf )*-_dfbc +(_cag -_aeca )*_acae )/(_eec *_eec );_fdaf ,_efbd :=_bbdf +_gbe *-_dfbc ,_aeca +_gbe *_acae ;_cec :=_f .Hypot (_dge -_fdaf ,_cag -_efbd )/_eec ;return _fgcd (_cec ,_aecg ._dgcg );};func _gdc (_db ,_dff ,_fdc ,_bc ,_fbe ,_aggb ,_bg ,_ggbb ,_eg float64 )(_fdd ,_abg float64 ){_ce :=1-_eg ; -_gb :=_ce *_ce *_ce ;_abf :=3*_ce *_ce *_eg ;_baa :=3*_ce *_eg *_eg ;_gge :=_eg *_eg *_eg ;_fdd =_gb *_db +_abf *_fdc +_baa *_fbe +_gge *_bg ;_abg =_gb *_dff +_abf *_bc +_baa *_aggb +_gge *_ggbb ;return ;};func (_gbf *Context )MoveTo (x ,y float64 ){if _gbf ._cda {_gbf ._bfe .Add1 (_afab (_gbf ._ac )); -};x ,y =_gbf .Transform (x ,y );_eagf :=_gg .NewPoint (x ,y );_ceef :=_afab (_eagf );_gbf ._fbbb .Start (_ceef );_gbf ._bfe .Start (_ceef );_gbf ._ac =_eagf ;_gbf ._cfb =_eagf ;_gbf ._cda =true ;};func (_dgf *Context )DrawRectangle (x ,y ,w ,h float64 ){_dgf .NewSubPath (); -_dgf .MoveTo (x ,y );_dgf .LineTo (x +w ,y );_dgf .LineTo (x +w ,y +h );_dgf .LineTo (x ,y +h );_dgf .ClosePath ();};func (_gda *Context )SetHexColor (x string ){_dde ,_gbc ,_aec ,_eee :=_cbe (x );_gda .SetRGBA255 (_dde ,_gbc ,_aec ,_eee );};func (_eaf *Context )Push (){_bbgd :=*_eaf ; -_eaf ._fad =append (_eaf ._fad ,&_bbgd )};func (_dddb *Context )Pop (){_bfd :=*_dddb ;_efc :=_dddb ._fad ;_aedg :=_efc [len (_efc )-1];*_dddb =*_aedg ;_dddb ._fbbb =_bfd ._fbbb ;_dddb ._bfe =_bfd ._bfe ;_dddb ._ac =_bfd ._ac ;_dddb ._cfb =_bfd ._cfb ;_dddb ._cda =_bfd ._cda ; -};func (_ffe *Context )capper ()_gf .Capper {switch _ffe ._fddd {case _cff .LineCapButt :return _gf .ButtCapper ;case _cff .LineCapRound :return _gf .RoundCapper ;case _cff .LineCapSquare :return _gf .SquareCapper ;};return nil ;};func (_fgf *Context )SetRGB255 (r ,g ,b int ){_fgf .SetRGBA255 (r ,g ,b ,255)}; -func (_ddd *Context )Translate (x ,y float64 ){_ddd ._ff =_ddd ._ff .Translate (x ,y )};func (_fcf *Context )DrawCircle (x ,y ,r float64 ){_fcf .NewSubPath ();_fcf .DrawEllipticalArc (x ,y ,r ,r ,0,2*_f .Pi );_fcf .ClosePath ();};func (_cdgf *Context )joiner ()_gf .Joiner {switch _cdgf ._fde {case _cff .LineJoinBevel :return _gf .BevelJoiner ; -case _cff .LineJoinRound :return _gf .RoundJoiner ;};return nil ;};func (_cbf *Context )ScaleAbout (sx ,sy ,x ,y float64 ){_cbf .Translate (x ,y );_cbf .Scale (sx ,sy );_cbf .Translate (-x ,-y );};func _feac (_gbeb ,_fdg _g .Color ,_acf float64 )_g .Color {_cfgb ,_aeef ,_cfbb ,_cbd :=_gbeb .RGBA (); -_bdf ,_edef ,_ggda ,_ecgf :=_fdg .RGBA ();return _g .RGBA {_dgbc (_cfgb ,_bdf ,_acf ),_dgbc (_aeef ,_edef ,_acf ),_dgbc (_cfbb ,_ggda ,_acf ),_dgbc (_cbd ,_ecgf ,_acf )};};func (_bbgg *Context )Fill (){_bbgg .FillPreserve ();_bbgg .ClearPath ()};func (_dgg *Context )SetStrokeStyle (pattern _cff .Pattern ){_dgg ._dgb =pattern }; -func (_gbff *Context )DrawEllipticalArc (x ,y ,rx ,ry ,angle1 ,angle2 float64 ){const _beef =16;for _bfg :=0;_bfg < _beef ;_bfg ++{_bgf :=float64 (_bfg +0)/_beef ;_feg :=float64 (_bfg +1)/_beef ;_fdeg :=angle1 +(angle2 -angle1 )*_bgf ;_gcg :=angle1 +(angle2 -angle1 )*_feg ; -_efb :=x +rx *_f .Cos (_fdeg );_ccd :=y +ry *_f .Sin (_fdeg );_ecg :=x +rx *_f .Cos ((_fdeg +_gcg )/2);_gbg :=y +ry *_f .Sin ((_fdeg +_gcg )/2);_dfg :=x +rx *_f .Cos (_gcg );_bada :=y +ry *_f .Sin (_gcg );_fgg :=2*_ecg -_efb /2-_dfg /2;_acd :=2*_gbg -_ccd /2-_bada /2; -if _bfg ==0{if _gbff ._cda {_gbff .LineTo (_efb ,_ccd );}else {_gbff .MoveTo (_efb ,_ccd );};};_gbff .QuadraticTo (_fgg ,_acd ,_dfg ,_bada );};};func (_afg *Context )ResetClip (){_afg ._abe =nil };func _gfb (_eed [][]_gg .Point )_gf .Path {var _deda _gf .Path ; -for _ ,_egag :=range _eed {var _aeg _d .Point26_6 ;for _edd ,_gbfd :=range _egag {_cbcf :=_afab (_gbfd );if _edd ==0{_deda .Start (_cbcf );}else {_eafb :=_cbcf .X -_aeg .X ;_cgb :=_cbcf .Y -_aeg .Y ;if _eafb < 0{_eafb =-_eafb ;};if _cgb < 0{_cgb =-_cgb ; -};if _eafb +_cgb > 8{_deda .Add1 (_cbcf );};};_aeg =_cbcf ;};};return _deda ;};func (_ga *Context )SetColor (c _g .Color ){_ga .setFillAndStrokeColor (c )};func (_cfdg *Context )SetDashOffset (offset float64 ){_cfdg ._cb =offset };type stops []stop ;func (_agf *Context )Clear (){_cdb :=_ee .NewUniform (_agf ._caa ); -_ca .Draw (_agf ._ggbba ,_agf ._ggbba .Bounds (),_cdb ,_ee .Point {},_ca .Src );};func (_fbdd *Context )SetDash (dashes ...float64 ){_fbdd ._fbed =dashes };func (_cdcc *Context )Shear (x ,y float64 ){_cdcc ._ff .Shear (x ,y )};func (_acb *radialGradient )AddColorStop (offset float64 ,color _g .Color ){_acb ._fdaa =append (_acb ._fdaa ,stop {_fgef :offset ,_gaga :color }); -_c .Sort (_acb ._fdaa );};func (_aga *Context )LineWidth ()float64 {return _aga ._ef };func (_dbe *Context )SetFillRGBA (r ,g ,b ,a float64 ){_fdcg :=_g .NRGBA {uint8 (r *255),uint8 (g *255),uint8 (b *255),uint8 (a *255)};_dbe ._caa =_fdcg ;_dbe ._dga =_cggf (_fdcg ); -};func _eddb (_deeb _ee .Image ,_bcdc repeatOp )_cff .Pattern {return &surfacePattern {_gbga :_deeb ,_bbfe :_bcdc };};func _ccg (_fadd ,_abeb ,_cabd ,_dae ,_abdg ,_ddf float64 )float64 {return _fadd *_dae +_abeb *_abdg +_cabd *_ddf ;};func (_eagg *Context )DrawPoint (x ,y ,r float64 ){_eagg .Push (); -_ebd ,_aeff :=_eagg .Transform (x ,y );_eagg .Identity ();_eagg .DrawCircle (_ebd ,_aeff ,r );_eagg .Pop ();};func (_deea *Context )stroke (_adgd _gf .Painter ){_dgc :=_deea ._fbbb ;if len (_deea ._fbed )> 0{_dgc =_acaa (_dgc ,_deea ._fbed ,_deea ._cb ); -}else {_dgc =_gfb (_aac (_dgc ));};_fffd :=_deea ._dc ;_fffd .UseNonZeroWinding =true ;_fffd .Clear ();_adge :=(_deea ._ff .ScalingFactorX ()+_deea ._ff .ScalingFactorY ())/2;_fffd .AddStroke (_dgc ,_ggg (_deea ._ef *_adge ),_deea .capper (),_deea .joiner ()); -_fffd .Rasterize (_adgd );};func (_dgfc *Context )drawRegularPolygon (_efd int ,_efdg ,_gff ,_cffe ,_ecd float64 ){_egd :=2*_f .Pi /float64 (_efd );_ecd -=_f .Pi /2;if _efd %2==0{_ecd +=_egd /2;};_dgfc .NewSubPath ();for _fbf :=0;_fbf < _efd ;_fbf ++{_bbcd :=_ecd +_egd *float64 (_fbf ); -_dgfc .LineTo (_efdg +_cffe *_f .Cos (_bbcd ),_gff +_cffe *_f .Sin (_bbcd ));};_dgfc .ClosePath ();};func NewContext (width ,height int )*Context {return NewContextForRGBA (_ee .NewRGBA (_ee .Rect (0,0,width ,height )));};func _gee (_ab ,_gd ,_cfg ,_fbb ,_df ,_cdc float64 )[]_gg .Point {_de :=(_f .Hypot (_cfg -_ab ,_fbb -_gd )+_f .Hypot (_df -_cfg ,_cdc -_fbb )); -_ec :=int (_de +0.5);if _ec < 4{_ec =4;};_ba :=float64 (_ec )-1;_dfd :=make ([]_gg .Point ,_ec );for _eef :=0;_eef < _ec ;_eef ++{_dee :=float64 (_eef )/_ba ;_da ,_agg :=_dd (_ab ,_gd ,_cfg ,_fbb ,_df ,_cdc ,_dee );_dfd [_eef ]=_gg .NewPoint (_da ,_agg ); -};return _dfd ;};func (_fdeb *Context )DrawRoundedRectangle (x ,y ,w ,h ,r float64 ){_eea ,_bcge ,_efeb ,_ggee :=x ,x +r ,x +w -r ,x +w ;_egf ,_bcb ,_ega ,_agff :=y ,y +r ,y +h -r ,y +h ;_fdeb .NewSubPath ();_fdeb .MoveTo (_bcge ,_egf );_fdeb .LineTo (_efeb ,_egf ); -_fdeb .DrawArc (_efeb ,_bcb ,r ,_ccea (270),_ccea (360));_fdeb .LineTo (_ggee ,_ega );_fdeb .DrawArc (_efeb ,_ega ,r ,_ccea (0),_ccea (90));_fdeb .LineTo (_bcge ,_agff );_fdeb .DrawArc (_bcge ,_ega ,r ,_ccea (90),_ccea (180));_fdeb .LineTo (_eea ,_bcb ); -_fdeb .DrawArc (_bcge ,_bcb ,r ,_ccea (180),_ccea (270));_fdeb .ClosePath ();};func (_cab *Context )RotateAbout (angle ,x ,y float64 ){_cab .Translate (x ,y );_cab .Rotate (angle );_cab .Translate (-x ,-y );};func (_cac *Context )Rotate (angle float64 ){_cac ._ff =_cac ._ff .Rotate (angle )}; -func (_egb *Context )Matrix ()_gg .Matrix {return _egb ._ff };func (_cfa *surfacePattern )ColorAt (x ,y int )_g .Color {_gfa :=_cfa ._gbga .Bounds ();switch _cfa ._bbfe {case _bcgb :if y >=_gfa .Dy (){return _g .Transparent ;};case _aag :if x >=_gfa .Dx (){return _g .Transparent ; -};case _bged :if x >=_gfa .Dx ()||y >=_gfa .Dy (){return _g .Transparent ;};};x =x %_gfa .Dx ()+_gfa .Min .X ;y =y %_gfa .Dy ()+_gfa .Min .Y ;return _cfa ._gbga .At (x ,y );};func (_cc *Context )Image ()_ee .Image {return _cc ._ggbba };func (_cbc *Context )ShearAbout (sx ,sy ,x ,y float64 ){_cbc .Translate (x ,y ); -_cbc .Shear (sx ,sy );_cbc .Translate (-x ,-y );};func NewContextForRGBA (im *_ee .RGBA )*Context {_ed :=im .Bounds ().Size ().X ;_cfc :=im .Bounds ().Size ().Y ;return &Context {_bdb :_ed ,_bgc :_cfc ,_dc :_gf .NewRasterizer (_ed ,_cfc ),_ggbba :im ,_caa :_g .Transparent ,_dga :_fa ,_dgb :_cfd ,_ef :1,_dfb :_cff .FillRuleWinding ,_ff :_gg .IdentityMatrix (),_egc :_cff .NewTextState ()}; -};func (_caee *Context )DrawImage (im _ee .Image ,x ,y int ){_caee .DrawImageAnchored (im ,x ,y ,0,0)};var (_fa =_cggf (_g .White );_cfd =_cggf (_g .Black ););func NewRadialGradient (x0 ,y0 ,r0 ,x1 ,y1 ,r1 float64 )_cff .Gradient {_dcg :=circle {x0 ,y0 ,r0 }; -_fdag :=circle {x1 ,y1 ,r1 };_ece :=circle {x1 -x0 ,y1 -y0 ,r1 -r0 };_egfc :=_ccg (_ece ._fgc ,_ece ._gcb ,-_ece ._gccg ,_ece ._fgc ,_ece ._gcb ,_ece ._gccg );var _cdcd float64 ;if _egfc !=0{_cdcd =1.0/_egfc ;};_bfec :=-_dcg ._gccg ;_aeec :=&radialGradient {_eeg :_dcg ,_fbbd :_fdag ,_fgb :_ece ,_abd :_egfc ,_dbg :_cdcd ,_dffe :_bfec }; -return _aeec ;};func _aac (_ecda _gf .Path )[][]_gg .Point {var _ebfg [][]_gg .Point ;var _cbg []_gg .Point ;var _bff ,_eac float64 ;for _bafc :=0;_bafc < len (_ecda );{switch _ecda [_bafc ]{case 0:if len (_cbg )> 0{_ebfg =append (_ebfg ,_cbg );_cbg =nil ; -};_facc :=_fcfd (_ecda [_bafc +1]);_bfdb :=_fcfd (_ecda [_bafc +2]);_cbg =append (_cbg ,_gg .NewPoint (_facc ,_bfdb ));_bff ,_eac =_facc ,_bfdb ;_bafc +=4;case 1:_caf :=_fcfd (_ecda [_bafc +1]);_edg :=_fcfd (_ecda [_bafc +2]);_cbg =append (_cbg ,_gg .NewPoint (_caf ,_edg )); -_bff ,_eac =_caf ,_edg ;_bafc +=4;case 2:_ccgg :=_fcfd (_ecda [_bafc +1]);_fabd :=_fcfd (_ecda [_bafc +2]);_abfa :=_fcfd (_ecda [_bafc +3]);_cagf :=_fcfd (_ecda [_bafc +4]);_ceb :=_gee (_bff ,_eac ,_ccgg ,_fabd ,_abfa ,_cagf );_cbg =append (_cbg ,_ceb ...); -_bff ,_eac =_abfa ,_cagf ;_bafc +=6;case 3:_dec :=_fcfd (_ecda [_bafc +1]);_aacb :=_fcfd (_ecda [_bafc +2]);_fgce :=_fcfd (_ecda [_bafc +3]);_fcae :=_fcfd (_ecda [_bafc +4]);_dfcc :=_fcfd (_ecda [_bafc +5]);_def :=_fcfd (_ecda [_bafc +6]);_ddec :=_dag (_bff ,_eac ,_dec ,_aacb ,_fgce ,_fcae ,_dfcc ,_def ); -_cbg =append (_cbg ,_ddec ...);_bff ,_eac =_dfcc ,_def ;_bafc +=8;default:_cf .Log .Debug ("\u0057\u0041\u0052\u004e: \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061\u0074\u0068\u003a\u0020%\u0076",_ecda );return _ebfg ;};};if len (_cbg )> 0{_ebfg =append (_ebfg ,_cbg ); -};return _ebfg ;};func (_be *Context )SetLineJoin (lineJoin _cff .LineJoin ){_be ._fde =lineJoin };const (_cea repeatOp =iota ;_bcgb ;_aag ;_bged ;);func (_ddff *patternPainter )Paint (ss []_gf .Span ,done bool ){_fed :=_ddff ._eacg .Bounds ();for _ ,_gbcd :=range ss {if _gbcd .Y < _fed .Min .Y {continue ; -};if _gbcd .Y >=_fed .Max .Y {return ;};if _gbcd .X0 < _fed .Min .X {_gbcd .X0 =_fed .Min .X ;};if _gbcd .X1 > _fed .Max .X {_gbcd .X1 =_fed .Max .X ;};if _gbcd .X0 >=_gbcd .X1 {continue ;};const _egbg =1<<16-1;_bccd :=_gbcd .Y -_ddff ._eacg .Rect .Min .Y ; -_fbbf :=_gbcd .X0 -_ddff ._eacg .Rect .Min .X ;_dgga :=(_gbcd .Y -_ddff ._eacg .Rect .Min .Y )*_ddff ._eacg .Stride +(_gbcd .X0 -_ddff ._eacg .Rect .Min .X )*4;_dddg :=_dgga +(_gbcd .X1 -_gbcd .X0 )*4;for _eba ,_cffcef :=_dgga ,_fbbf ;_eba < _dddg ;_eba ,_cffcef =_eba +4,_cffcef +1{_fgag :=_gbcd .Alpha ; -if _ddff ._gefd !=nil {_fgag =_fgag *uint32 (_ddff ._gefd .AlphaAt (_cffcef ,_bccd ).A )/255;if _fgag ==0{continue ;};};_geb :=_ddff ._fgeg .ColorAt (_cffcef ,_bccd );_ffff ,_dba ,_gcec ,_dfgf :=_geb .RGBA ();_cdec :=uint32 (_ddff ._eacg .Pix [_eba +0]); -_bda :=uint32 (_ddff ._eacg .Pix [_eba +1]);_acg :=uint32 (_ddff ._eacg .Pix [_eba +2]);_bgca :=uint32 (_ddff ._eacg .Pix [_eba +3]);_bbgc :=(_egbg -(_dfgf *_fgag /_egbg ))*0x101;_ddff ._eacg .Pix [_eba +0]=uint8 ((_cdec *_bbgc +_ffff *_fgag )/_egbg >>8); -_ddff ._eacg .Pix [_eba +1]=uint8 ((_bda *_bbgc +_dba *_fgag )/_egbg >>8);_ddff ._eacg .Pix [_eba +2]=uint8 ((_acg *_bbgc +_gcec *_fgag )/_egbg >>8);_ddff ._eacg .Pix [_eba +3]=uint8 ((_bgca *_bbgc +_dfgf *_fgag )/_egbg >>8);};};};func (_bfb *Context )Transform (x ,y float64 )(_dded ,_ggca float64 ){return _bfb ._ff .Transform (x ,y )}; -func (_ggd *Context )SetPixel (x ,y int ){_ggd ._ggbba .Set (x ,y ,_ggd ._caa )};func _fgcd (_beb float64 ,_fgbb stops )_g .Color {if _beb <=0.0||len (_fgbb )==1{return _fgbb [0]._gaga ;};_fgff :=_fgbb [len (_fgbb )-1];if _beb >=_fgff ._fgef {return _fgff ._gaga ; -};for _gef ,_gad :=range _fgbb [1:]{if _beb < _gad ._fgef {_beb =(_beb -_fgbb [_gef ]._fgef )/(_gad ._fgef -_fgbb [_gef ]._fgef );return _feac (_fgbb [_gef ]._gaga ,_gad ._gaga ,_beb );};};return _fgff ._gaga ;};func (_afd *Context )DrawImageAnchored (im _ee .Image ,x ,y int ,ax ,ay float64 ){_gbd :=im .Bounds ().Size (); -x -=int (ax *float64 (_gbd .X ));y -=int (ay *float64 (_gbd .Y ));_dagc :=_ca .BiLinear ;_fdde :=_afd ._ff .Clone ().Translate (float64 (x ),float64 (y ));_cbbb :=_fg .Aff3 {_fdde [0],_fdde [3],_fdde [6],_fdde [1],_fdde [4],_fdde [7]};if _afd ._abe ==nil {_dagc .Transform (_afd ._ggbba ,_cbbb ,im ,im .Bounds (),_ca .Over ,nil ); -}else {_dagc .Transform (_afd ._ggbba ,_cbbb ,im ,im .Bounds (),_ca .Over ,&_ca .Options {DstMask :_afd ._abe ,DstMaskP :_ee .Point {}});};};type Context struct{_bdb int ;_bgc int ;_dc *_gf .Rasterizer ;_ggbba *_ee .RGBA ;_abe *_ee .Alpha ;_caa _g .Color ; -_dga _cff .Pattern ;_dgb _cff .Pattern ;_fbbb _gf .Path ;_bfe _gf .Path ;_ac _gg .Point ;_cfb _gg .Point ;_cda bool ;_fbed []float64 ;_cb float64 ;_ef float64 ;_fddd _cff .LineCap ;_fde _cff .LineJoin ;_dfb _cff .FillRule ;_ff _gg .Matrix ;_egc _cff .TextState ; -_fad []*Context ;};func _dgbc (_cbdf ,_cge uint32 ,_ccad float64 )uint8 {return uint8 (int32 (float64 (_cbdf )*(1.0-_ccad )+float64 (_cge )*_ccad )>>8);};func (_ccb *Context )DrawStringAnchored (s string ,face _ad .Face ,x ,y ,ax ,ay float64 ){_gddc ,_gfc :=_ccb .MeasureString (s ,face ); -_ccb .drawString (s ,face ,x -ax *_gddc ,y +ay *_gfc );};func (_bed stops )Len ()int {return len (_bed )};func (_eag *Context )SetRGBA255 (r ,g ,b ,a int ){_eag ._caa =_g .NRGBA {uint8 (r ),uint8 (g ),uint8 (b ),uint8 (a )};_eag .setFillAndStrokeColor (_eag ._caa ); -};type repeatOp int ;type solidPattern struct{_adb _g .Color };func _fcfd (_fgge _d .Int26_6 )float64 {const _baaf ,_efef =6,1<<6-1;if _fgge >=0{return float64 (_fgge >>_baaf )+float64 (_fgge &_efef )/64;};_fgge =-_fgge ;if _fgge >=0{return -(float64 (_fgge >>_baaf )+float64 (_fgge &_efef )/64); -};return 0;};func (_af *Context )SetStrokeRGBA (r ,g ,b ,a float64 ){_ea :=_g .NRGBA {uint8 (r *255),uint8 (g *255),uint8 (b *255),uint8 (a *255)};_af ._dgb =_cggf (_ea );};func (_gcf *solidPattern )ColorAt (x ,y int )_g .Color {return _gcf ._adb };func (_eca *Context )CubicTo (x1 ,y1 ,x2 ,y2 ,x3 ,y3 float64 ){if !_eca ._cda {_eca .MoveTo (x1 ,y1 ); -};_fce ,_fbgb :=_eca ._cfb .X ,_eca ._cfb .Y ;x1 ,y1 =_eca .Transform (x1 ,y1 );x2 ,y2 =_eca .Transform (x2 ,y2 );x3 ,y3 =_eca .Transform (x3 ,y3 );_ege :=_dag (_fce ,_fbgb ,x1 ,y1 ,x2 ,y2 ,x3 ,y3 );_bee :=_afab (_eca ._cfb );for _ ,_bbaa :=range _ege [1:]{_abed :=_afab (_bbaa ); -if _abed ==_bee {continue ;};_bee =_abed ;_eca ._fbbb .Add1 (_abed );_eca ._bfe .Add1 (_abed );_eca ._cfb =_bbaa ;};};func (_dfc *Context )ClosePath (){if _dfc ._cda {_gce :=_afab (_dfc ._ac );_dfc ._fbbb .Add1 (_gce );_dfc ._bfe .Add1 (_gce );_dfc ._cfb =_dfc ._ac ; -};};func (_baf *Context )MeasureString (s string ,face _ad .Face )(_abaa ,_bca float64 ){_gdg :=&_ad .Drawer {Face :face };_gdgd :=_gdg .MeasureString (s );return float64 (_gdgd >>6),_baf ._egc .Tf .Size ;};func (_cca *radialGradient )ColorAt (x ,y int )_g .Color {if len (_cca ._fdaa )==0{return _g .Transparent ; -};_dbeg ,_cce :=float64 (x )+0.5-_cca ._eeg ._fgc ,float64 (y )+0.5-_cca ._eeg ._gcb ;_bbfa :=_ccg (_dbeg ,_cce ,_cca ._eeg ._gccg ,_cca ._fgb ._fgc ,_cca ._fgb ._gcb ,_cca ._fgb ._gccg );_afb :=_ccg (_dbeg ,_cce ,-_cca ._eeg ._gccg ,_dbeg ,_cce ,_cca ._eeg ._gccg ); -if _cca ._abd ==0{if _bbfa ==0{return _g .Transparent ;};_eded :=0.5*_afb /_bbfa ;if _eded *_cca ._fgb ._gccg >=_cca ._dffe {return _fgcd (_eded ,_cca ._fdaa );};return _g .Transparent ;};_ccfc :=_ccg (_bbfa ,_cca ._abd ,0,_bbfa ,-_afb ,0);if _ccfc >=0{_bge :=_f .Sqrt (_ccfc ); -_fgd :=(_bbfa +_bge )*_cca ._dbg ;_gca :=(_bbfa -_bge )*_cca ._dbg ;if _fgd *_cca ._fgb ._gccg >=_cca ._dffe {return _fgcd (_fgd ,_cca ._fdaa );}else if _gca *_cca ._fgb ._gccg >=_cca ._dffe {return _fgcd (_gca ,_cca ._fdaa );};};return _g .Transparent ; -};func _ggg (_ddcc float64 )_d .Int26_6 {return _d .Int26_6 (_ddcc *64)};func (_ebf *Context )AsMask ()*_ee .Alpha {_gdbe :=_ee .NewAlpha (_ebf ._ggbba .Bounds ());_ca .Draw (_gdbe ,_ebf ._ggbba .Bounds (),_ebf ._ggbba ,_ee .Point {},_ca .Src );return _gdbe ; -};func _fgfa (_ded [][]_gg .Point ,_bef []float64 ,_dbbb float64 )[][]_gg .Point {var _bga [][]_gg .Point ;if len (_bef )==0{return _ded ;};if len (_bef )==1{_bef =append (_bef ,_bef [0]);};for _ ,_dfccb :=range _ded {if len (_dfccb )< 2{continue ;};_dbd :=_dfccb [0]; -_efed :=1;_abfc :=0;_eafa :=0.0;if _dbbb !=0{var _abb float64 ;for _ ,_gde :=range _bef {_abb +=_gde ;};_dbbb =_f .Mod (_dbbb ,_abb );if _dbbb < 0{_dbbb +=_abb ;};for _abc ,_cbgb :=range _bef {_dbbb -=_cbgb ;if _dbbb < 0{_abfc =_abc ;_eafa =_cbgb +_dbbb ; -break ;};};};var _fbga []_gg .Point ;_fbga =append (_fbga ,_dbd );for _efed < len (_dfccb ){_aaa :=_bef [_abfc ];_ddg :=_dfccb [_efed ];_age :=_dbd .Distance (_ddg );_fgfd :=_aaa -_eafa ;if _age > _fgfd {_ddc :=_fgfd /_age ;_ead :=_dbd .Interpolate (_ddg ,_ddc ); -_fbga =append (_fbga ,_ead );if _abfc %2==0&&len (_fbga )> 1{_bga =append (_bga ,_fbga );};_fbga =nil ;_fbga =append (_fbga ,_ead );_eafa =0;_dbd =_ead ;_abfc =(_abfc +1)%len (_bef );}else {_fbga =append (_fbga ,_ddg );_dbd =_ddg ;_eafa +=_age ;_efed ++; -};};if _abfc %2==0&&len (_fbga )> 1{_bga =append (_bga ,_fbga );};};return _bga ;};func (_bbb *Context )SetRGBA (r ,g ,b ,a float64 ){_bbb ._caa =_g .NRGBA {uint8 (r *255),uint8 (g *255),uint8 (b *255),uint8 (a *255)};_bbb .setFillAndStrokeColor (_bbb ._caa ); -};func (_ecdg stops )Less (i ,j int )bool {return _ecdg [i ]._fgef < _ecdg [j ]._fgef };func (_adg *Context )FillPattern ()_cff .Pattern {return _adg ._dga };func (_cfe *Context )SetMask (mask *_ee .Alpha )error {if mask .Bounds ().Size ()!=_cfe ._ggbba .Bounds ().Size (){return _ag .New ("\u006d\u0061\u0073\u006b\u0020\u0073i\u007a\u0065\u0020\u006d\u0075\u0073\u0074\u0020\u006d\u0061\u0074\u0063\u0068 \u0063\u006f\u006e\u0074\u0065\u0078\u0074 \u0073\u0069\u007a\u0065"); -};_cfe ._abe =mask ;return nil ;};func _ccea (_aff float64 )float64 {return _aff *_f .Pi /180};func _ecag (_dbea _ee .Image )*_ee .RGBA {_efdgc :=_dbea .Bounds ();_ceae :=_ee .NewRGBA (_efdgc );_e .Draw (_ceae ,_efdgc ,_dbea ,_efdgc .Min ,_e .Src );return _ceae ; -};func (_acc *Context )drawString (_ede string ,_cfdf _ad .Face ,_gaf ,_aca float64 ){_ffb :=&_ad .Drawer {Src :_ee .NewUniform (_acc ._caa ),Face :_cfdf ,Dot :_afab (_gg .NewPoint (_gaf ,_aca ))};_cbbg :=rune (-1);for _ ,_dcb :=range _ede {if _cbbg >=0{_ffb .Dot .X +=_ffb .Face .Kern (_cbbg ,_dcb ); -};_bcc ,_gab ,_gdd ,_fcag ,_ffa :=_ffb .Face .Glyph (_ffb .Dot ,_dcb );if !_ffa {continue ;};_dbb :=_bcc .Sub (_bcc .Min );_gffa :=_ee .NewRGBA (_dbb );_ca .DrawMask (_gffa ,_dbb ,_ffb .Src ,_ee .Point {},_gab ,_gdd ,_ca .Over );var _cef *_ca .Options ; -if _acc ._abe !=nil {_cef =&_ca .Options {DstMask :_acc ._abe ,DstMaskP :_ee .Point {}};};_accd :=_acc ._ff .Clone ().Translate (float64 (_bcc .Min .X ),float64 (_bcc .Min .Y ));_cdd :=_fg .Aff3 {_accd [0],_accd [3],_accd [6],_accd [1],_accd [4],_accd [7]}; -_ca .BiLinear .Transform (_acc ._ggbba ,_cdd ,_gffa ,_dbb ,_ca .Over ,_cef );_ffb .Dot .X +=_fcag ;_cbbg =_dcb ;};};func (_caaf *Context )DrawString (s string ,face _ad .Face ,x ,y float64 ){_caaf .DrawStringAnchored (s ,face ,x ,y ,0,0);};func (_fca *Context )DrawEllipse (x ,y ,rx ,ry float64 ){_fca .NewSubPath (); -_fca .DrawEllipticalArc (x ,y ,rx ,ry ,0,2*_f .Pi );_fca .ClosePath ();};func (_cg *Context )TextState ()*_cff .TextState {return &_cg ._egc };func (_fea *Context )InvertMask (){if _fea ._abe ==nil {_fea ._abe =_ee .NewAlpha (_fea ._ggbba .Bounds ());}else {for _cdgc ,_dfac :=range _fea ._abe .Pix {_fea ._abe .Pix [_cdgc ]=255-_dfac ; -};};};func (_gdb *Context )StrokePattern ()_cff .Pattern {return _gdb ._dgb };func (_bede stops )Swap (i ,j int ){_bede [i ],_bede [j ]=_bede [j ],_bede [i ]};func (_fae *Context )QuadraticTo (x1 ,y1 ,x2 ,y2 float64 ){if !_fae ._cda {_fae .MoveTo (x1 ,y1 ); -};x1 ,y1 =_fae .Transform (x1 ,y1 );x2 ,y2 =_fae .Transform (x2 ,y2 );_bbc :=_gg .NewPoint (x1 ,y1 );_cbbe :=_gg .NewPoint (x2 ,y2 );_caag :=_afab (_bbc );_ccfd :=_afab (_cbbe );_fae ._fbbb .Add2 (_caag ,_ccfd );_fae ._bfe .Add2 (_caag ,_ccfd );_fae ._cfb =_cbbe ; -};func (_afdf *Context )SetMatrix (m _gg .Matrix ){_afdf ._ff =m };func (_gbad *Context )DrawArc (x ,y ,r ,angle1 ,angle2 float64 ){_gbad .DrawEllipticalArc (x ,y ,r ,r ,angle1 ,angle2 );};func (_cbb *Context )SetLineCap (lineCap _cff .LineCap ){_cbb ._fddd =lineCap }; -func (_gag *Context )Clip (){_gag .ClipPreserve ();_gag .ClearPath ()};type circle struct{_fgc ,_gcb ,_gccg float64 };func (_fbgd *Context )StrokePreserve (){var _bbg _gf .Painter ;if _fbgd ._abe ==nil {if _ddb ,_cdce :=_fbgd ._dgb .(*solidPattern );_cdce {_dgba :=_gf .NewRGBAPainter (_fbgd ._ggbba ); -_dgba .SetColor (_ddb ._adb );_bbg =_dgba ;};};if _bbg ==nil {_bbg =_afgb (_fbgd ._ggbba ,_fbgd ._abe ,_fbgd ._dgb );};_fbgd .stroke (_bbg );};func (_aef *Context )SetLineWidth (lineWidth float64 ){_aef ._ef =lineWidth };func (_faea *Context )FillPreserve (){var _gcc _gf .Painter ; -if _faea ._abe ==nil {if _bad ,_bcg :=_faea ._dga .(*solidPattern );_bcg {_dfdb :=_gf .NewRGBAPainter (_faea ._ggbba );_dfdb .SetColor (_bad ._adb );_gcc =_dfdb ;};};if _gcc ==nil {_gcc =_afgb (_faea ._ggbba ,_faea ._abe ,_faea ._dga );};_faea .fill (_gcc ); -};func (_fbg *Context )SetRGB (r ,g ,b float64 ){_fbg .SetRGBA (r ,g ,b ,1)};type patternPainter struct{_eacg *_ee .RGBA ;_gefd *_ee .Alpha ;_fgeg _cff .Pattern ;}; \ No newline at end of file +package imagerender ;import (_dd "errors";_de "fmt";_ed "github.com/unidoc/freetype/raster";_fbb "github.com/unidoc/unipdf/v3/common";_ca "github.com/unidoc/unipdf/v3/internal/transform";_g "github.com/unidoc/unipdf/v3/render/internal/context";_e "golang.org/x/image/draw"; +_ec "golang.org/x/image/font";_fd "golang.org/x/image/math/f64";_bg "golang.org/x/image/math/fixed";_fb "image";_da "image/color";_a "image/draw";_b "math";_c "sort";_d "strings";);func (_bbd *Context )NewSubPath (){if _bbd ._df {_bbd ._eea .Add1 (_eda (_bbd ._dea )); +};_bbd ._df =false ;};func (_baa *Context )Height ()int {return _baa ._ggd };func _abdg (_gegd _fb .Image ,_eede repeatOp )_g .Pattern {return &surfacePattern {_fcaa :_gegd ,_adee :_eede };};func (_effg *Context )SetLineWidth (lineWidth float64 ){_effg ._bgd =lineWidth }; +func (_fadb *Context )capper ()_ed .Capper {switch _fadb ._eaag {case _g .LineCapButt :return _ed .ButtCapper ;case _g .LineCapRound :return _ed .RoundCapper ;case _g .LineCapSquare :return _ed .SquareCapper ;};return nil ;};func _cc (_bee ,_ded ,_af ,_dag ,_gc ,_ad float64 )[]_ca .Point {_fad :=(_b .Hypot (_af -_bee ,_dag -_ded )+_b .Hypot (_gc -_af ,_ad -_dag )); +_fbbg :=int (_fad +0.5);if _fbbg < 4{_fbbg =4;};_dg :=float64 (_fbbg )-1;_bc :=make ([]_ca .Point ,_fbbg );for _ef :=0;_ef < _fbbg ;_ef ++{_aab :=float64 (_ef )/_dg ;_cd ,_cf :=_gd (_bee ,_ded ,_af ,_dag ,_gc ,_ad ,_aab );_bc [_ef ]=_ca .NewPoint (_cd ,_cf ); +};return _bc ;};func (_gbe *Context )drawString (_bca string ,_aaa _ec .Face ,_gcba ,_edb float64 ){_dgd :=&_ec .Drawer {Src :_fb .NewUniform (_gbe ._geg ),Face :_aaa ,Dot :_eda (_ca .NewPoint (_gcba ,_edb ))};_eeg :=rune (-1);for _ ,_daggb :=range _bca {if _eeg >=0{_dgd .Dot .X +=_dgd .Face .Kern (_eeg ,_daggb ); +};_gcag ,_cedf ,_bfe ,_fgb ,_fbgc :=_dgd .Face .Glyph (_dgd .Dot ,_daggb );if !_fbgc {continue ;};_bbf :=_gcag .Sub (_gcag .Min );_ebc :=_fb .NewRGBA (_bbf );_e .DrawMask (_ebc ,_bbf ,_dgd .Src ,_fb .Point {},_cedf ,_bfe ,_e .Over );var _acc *_e .Options ; +if _gbe ._aca !=nil {_acc =&_e .Options {DstMask :_gbe ._aca ,DstMaskP :_fb .Point {}};};_ddf :=_gbe ._afg .Clone ().Translate (float64 (_gcag .Min .X ),float64 (_gcag .Min .Y ));_ddb :=_fd .Aff3 {_ddf [0],_ddf [3],_ddf [6],_ddf [1],_ddf [4],_ddf [7]}; +_e .BiLinear .Transform (_gbe ._agd ,_ddb ,_ebc ,_bbf ,_e .Over ,_acc );_dgd .Dot .X +=_fgb ;_eeg =_daggb ;};};func (_cfa *Context )AsMask ()*_fb .Alpha {_dad :=_fb .NewAlpha (_cfa ._agd .Bounds ());_e .Draw (_dad ,_cfa ._agd .Bounds (),_cfa ._agd ,_fb .Point {},_e .Src ); +return _dad ;};func (_dc *Context )setFillAndStrokeColor (_ecf _da .Color ){_dc ._geg =_ecf ;_dc ._aabb =_cecd (_ecf );_dc ._gdc =_cecd (_ecf );};func _gd (_fa ,_ae ,_aa ,_ff ,_eg ,_dda ,_ge float64 )(_be ,_dee float64 ){_def :=1-_ge ;_gf :=_def *_def ; +_deec :=2*_def *_ge ;_bgc :=_ge *_ge ;_be =_gf *_fa +_deec *_aa +_bgc *_eg ;_dee =_gf *_ae +_deec *_ff +_bgc *_dda ;return ;};func (_eef *Context )ResetClip (){_eef ._aca =nil };func _aegb (_ecae _bg .Int26_6 )float64 {const _baf ,_bdga =6,1<<6-1;if _ecae >=0{return float64 (_ecae >>_baf )+float64 (_ecae &_bdga )/64; +};_ecae =-_ecae ;if _ecae >=0{return -(float64 (_ecae >>_baf )+float64 (_ecae &_bdga )/64);};return 0;};func (_gcf *Context )StrokePreserve (){var _aff _ed .Painter ;if _gcf ._aca ==nil {if _cac ,_cebb :=_gcf ._gdc .(*solidPattern );_cebb {_gfe :=_ed .NewRGBAPainter (_gcf ._agd ); +_gfe .SetColor (_cac ._bbfc );_aff =_gfe ;};};if _aff ==nil {_aff =_aagb (_gcf ._agd ,_gcf ._aca ,_gcf ._gdc );};_gcf .stroke (_aff );};func NewContextForImage (im _fb .Image )*Context {return NewContextForRGBA (_cdc (im ))};func (_gac *Context )Transform (x ,y float64 )(_dgec ,_dga float64 ){return _gac ._afg .Transform (x ,y )}; +func (_bfc *Context )SetMask (mask *_fb .Alpha )error {if mask .Bounds ().Size ()!=_bfc ._agd .Bounds ().Size (){return _dd .New ("\u006d\u0061\u0073\u006b\u0020\u0073i\u007a\u0065\u0020\u006d\u0075\u0073\u0074\u0020\u006d\u0061\u0074\u0063\u0068 \u0063\u006f\u006e\u0074\u0065\u0078\u0074 \u0073\u0069\u007a\u0065"); +};_bfc ._aca =mask ;return nil ;};func (_gca *Context )drawRegularPolygon (_bdbbg int ,_adce ,_gefa ,_dge ,_gdb float64 ){_dcc :=2*_b .Pi /float64 (_bdbbg );_gdb -=_b .Pi /2;if _bdbbg %2==0{_gdb +=_dcc /2;};_gca .NewSubPath ();for _efc :=0;_efc < _bdbbg ; +_efc ++{_cea :=_gdb +_dcc *float64 (_efc );_gca .LineTo (_adce +_dge *_b .Cos (_cea ),_gefa +_dge *_b .Sin (_cea ));};_gca .ClosePath ();};func (_fcef *Context )DrawPoint (x ,y ,r float64 ){_fcef .Push ();_ecdf ,_gdd :=_fcef .Transform (x ,y );_fcef .Identity (); +_fcef .DrawCircle (_ecdf ,_gdd ,r );_fcef .Pop ();};type solidPattern struct{_bbfc _da .Color };func (_ecd *Context )Image ()_fb .Image {return _ecd ._agd };func (_aea *Context )Stroke (){_aea .StrokePreserve ();_aea .ClearPath ()};func (_eeag *Context )CubicTo (x1 ,y1 ,x2 ,y2 ,x3 ,y3 float64 ){if !_eeag ._df {_eeag .MoveTo (x1 ,y1 ); +};_eba ,_gdg :=_eeag ._efa .X ,_eeag ._efa .Y ;x1 ,y1 =_eeag .Transform (x1 ,y1 );x2 ,y2 =_eeag .Transform (x2 ,y2 );x3 ,y3 =_eeag .Transform (x3 ,y3 );_fff :=_adb (_eba ,_gdg ,x1 ,y1 ,x2 ,y2 ,x3 ,y3 );_faaf :=_eda (_eeag ._efa );for _ ,_dde :=range _fff [1:]{_afcc :=_eda (_dde ); +if _afcc ==_faaf {continue ;};_faaf =_afcc ;_eeag ._db .Add1 (_afcc );_eeag ._eea .Add1 (_afcc );_eeag ._efa =_dde ;};};func (_eedg *radialGradient )AddColorStop (offset float64 ,color _da .Color ){_eedg ._gefb =append (_eedg ._gefb ,stop {_dede :offset ,_gdbe :color }); +_c .Sort (_eedg ._gefb );};func (_dba *Context )ClosePath (){if _dba ._df {_aba :=_eda (_dba ._dea );_dba ._db .Add1 (_aba );_dba ._eea .Add1 (_aba );_dba ._efa =_dba ._dea ;};};type circle struct{_ffb ,_ebca ,_gec float64 };func (_cbfc *linearGradient )ColorAt (x ,y int )_da .Color {if len (_cbfc ._cgf )==0{return _da .Transparent ; +};_eabb ,_dfg :=float64 (x ),float64 (y );_cdf ,_eeaga ,_ebf ,_aaae :=_cbfc ._bab ,_cbfc ._fef ,_cbfc ._dca ,_cbfc ._cded ;_ebbb ,_ccaf :=_ebf -_cdf ,_aaae -_eeaga ;if _ccaf ==0&&_ebbb !=0{return _bcf ((_eabb -_cdf )/_ebbb ,_cbfc ._cgf );};if _ebbb ==0&&_ccaf !=0{return _bcf ((_dfg -_eeaga )/_ccaf ,_cbfc ._cgf ); +};_bcg :=_ebbb *(_eabb -_cdf )+_ccaf *(_dfg -_eeaga );if _bcg < 0{return _cbfc ._cgf [0]._gdbe ;};_dffg :=_b .Hypot (_ebbb ,_ccaf );_bagg :=((_eabb -_cdf )*-_ccaf +(_dfg -_eeaga )*_ebbb )/(_dffg *_dffg );_faca ,_egf :=_cdf +_bagg *-_ccaf ,_eeaga +_bagg *_ebbb ; +_eac :=_b .Hypot (_eabb -_faca ,_dfg -_egf )/_dffg ;return _bcf (_eac ,_cbfc ._cgf );};type patternPainter struct{_bbbg *_fb .RGBA ;_dfdg *_fb .Alpha ;_fgbe _g .Pattern ;};func _abe (_cdaa string )(_fffd ,_ddd ,_fda ,_cgfc int ){_cdaa =_d .TrimPrefix (_cdaa ,"\u0023"); +_cgfc =255;if len (_cdaa )==3{_bdfg :="\u00251\u0078\u0025\u0031\u0078\u0025\u0031x";_de .Sscanf (_cdaa ,_bdfg ,&_fffd ,&_ddd ,&_fda );_fffd |=_fffd <<4;_ddd |=_ddd <<4;_fda |=_fda <<4;};if len (_cdaa )==6{_eddd :="\u0025\u0030\u0032x\u0025\u0030\u0032\u0078\u0025\u0030\u0032\u0078"; +_de .Sscanf (_cdaa ,_eddd ,&_fffd ,&_ddd ,&_fda );};if len (_cdaa )==8{_bdag :="\u0025\u00302\u0078\u0025\u00302\u0078\u0025\u0030\u0032\u0078\u0025\u0030\u0032\u0078";_de .Sscanf (_cdaa ,_bdag ,&_fffd ,&_ddd ,&_fda ,&_cgfc );};return ;};func (_gfg stops )Len ()int {return len (_gfg )}; +func (_adc *Context )DrawRoundedRectangle (x ,y ,w ,h ,r float64 ){_defg ,_adg ,_ddg ,_eec :=x ,x +r ,x +w -r ,x +w ;_beff ,_edg ,_dbc ,_gge :=y ,y +r ,y +h -r ,y +h ;_adc .NewSubPath ();_adc .MoveTo (_adg ,_beff );_adc .LineTo (_ddg ,_beff );_adc .DrawArc (_ddg ,_edg ,r ,_fbf (270),_fbf (360)); +_adc .LineTo (_eec ,_dbc );_adc .DrawArc (_ddg ,_dbc ,r ,_fbf (0),_fbf (90));_adc .LineTo (_adg ,_gge );_adc .DrawArc (_adg ,_dbc ,r ,_fbf (90),_fbf (180));_adc .LineTo (_defg ,_edg );_adc .DrawArc (_adg ,_edg ,r ,_fbf (180),_fbf (270));_adc .ClosePath (); +};func (_egeb *solidPattern )ColorAt (x ,y int )_da .Color {return _egeb ._bbfc };type Context struct{_eab int ;_ggd int ;_bbe *_ed .Rasterizer ;_agd *_fb .RGBA ;_aca *_fb .Alpha ;_geg _da .Color ;_aabb _g .Pattern ;_gdc _g .Pattern ;_db _ed .Path ;_eea _ed .Path ; +_dea _ca .Point ;_efa _ca .Point ;_df bool ;_eff []float64 ;_faa float64 ;_bgd float64 ;_eaag _g .LineCap ;_cae _g .LineJoin ;_agg _g .FillRule ;_afg _ca .Matrix ;_beeb _g .TextState ;_ege []*Context ;};func (_cca *Context )DrawLine (x1 ,y1 ,x2 ,y2 float64 ){_cca .MoveTo (x1 ,y1 ); +_cca .LineTo (x2 ,y2 )};func _cecd (_fcc _da .Color )_g .Pattern {return &solidPattern {_bbfc :_fcc }};func (_fdc *Context )Matrix ()_ca .Matrix {return _fdc ._afg };func (_fgg *Context )Shear (x ,y float64 ){_fgg ._afg .Shear (x ,y )};func (_afgg *Context )SetFillStyle (pattern _g .Pattern ){if _dab ,_gbg :=pattern .(*solidPattern ); +_gbg {_afgg ._geg =_dab ._bbfc ;};_afgg ._aabb =pattern ;};func (_dec *Context )LineTo (x ,y float64 ){if !_dec ._df {_dec .MoveTo (x ,y );}else {x ,y =_dec .Transform (x ,y );_egb :=_ca .NewPoint (x ,y );_ebb :=_eda (_egb );_dec ._db .Add1 (_ebb );_dec ._eea .Add1 (_ebb ); +_dec ._efa =_egb ;};};func _bgdg (_ccab ,_efad uint32 ,_ecag float64 )uint8 {return uint8 (int32 (float64 (_ccab )*(1.0-_ecag )+float64 (_efad )*_ecag )>>8);};func (_dgf *Context )SetHexColor (x string ){_bdfc ,_cg ,_ggf ,_cge :=_abe (x );_dgf .SetRGBA255 (_bdfc ,_cg ,_ggf ,_cge ); +};func (_dbe *Context )ClipPreserve (){_fec :=_fb .NewAlpha (_fb .Rect (0,0,_dbe ._eab ,_dbe ._ggd ));_dfdb :=_ed .NewAlphaOverPainter (_fec );_dbe .fill (_dfdb );if _dbe ._aca ==nil {_dbe ._aca =_fec ;}else {_fee :=_fb .NewAlpha (_fb .Rect (0,0,_dbe ._eab ,_dbe ._ggd )); +_e .DrawMask (_fee ,_fee .Bounds (),_fec ,_fb .Point {},_dbe ._aca ,_fb .Point {},_e .Over );_dbe ._aca =_fee ;};};func (_cdb *Context )Fill (){_cdb .FillPreserve ();_cdb .ClearPath ()};func _bea (_bdfa ,_dgag _da .Color ,_bac float64 )_da .Color {_geb ,_bce ,_ecea ,_daa :=_bdfa .RGBA (); +_cfg ,_abaa ,_agcd ,_gaa :=_dgag .RGBA ();return _da .RGBA {_bgdg (_geb ,_cfg ,_bac ),_bgdg (_bce ,_abaa ,_bac ),_bgdg (_ecea ,_agcd ,_bac ),_bgdg (_daa ,_gaa ,_bac )};};func (_cgb *Context )SetRGBA (r ,g ,b ,a float64 ){_cgb ._geg =_da .NRGBA {uint8 (r *255),uint8 (g *255),uint8 (b *255),uint8 (a *255)}; +_cgb .setFillAndStrokeColor (_cgb ._geg );};func (_gb *Context )SetDashOffset (offset float64 ){_gb ._faa =offset };func NewContext (width ,height int )*Context {return NewContextForRGBA (_fb .NewRGBA (_fb .Rect (0,0,width ,height )));};func (_accc *Context )ShearAbout (sx ,sy ,x ,y float64 ){_accc .Translate (x ,y ); +_accc .Shear (sx ,sy );_accc .Translate (-x ,-y );};func _cabd (_fgbc _ed .Path )[][]_ca .Point {var _aee [][]_ca .Point ;var _egcca []_ca .Point ;var _cgfd ,_ggeb float64 ;for _adcd :=0;_adcd < len (_fgbc );{switch _fgbc [_adcd ]{case 0:if len (_egcca )> 0{_aee =append (_aee ,_egcca ); +_egcca =nil ;};_ccf :=_aegb (_fgbc [_adcd +1]);_cgg :=_aegb (_fgbc [_adcd +2]);_egcca =append (_egcca ,_ca .NewPoint (_ccf ,_cgg ));_cgfd ,_ggeb =_ccf ,_cgg ;_adcd +=4;case 1:_aga :=_aegb (_fgbc [_adcd +1]);_bgb :=_aegb (_fgbc [_adcd +2]);_egcca =append (_egcca ,_ca .NewPoint (_aga ,_bgb )); +_cgfd ,_ggeb =_aga ,_bgb ;_adcd +=4;case 2:_aegd :=_aegb (_fgbc [_adcd +1]);_ffae :=_aegb (_fgbc [_adcd +2]);_efgc :=_aegb (_fgbc [_adcd +3]);_ggfg :=_aegb (_fgbc [_adcd +4]);_eged :=_cc (_cgfd ,_ggeb ,_aegd ,_ffae ,_efgc ,_ggfg );_egcca =append (_egcca ,_eged ...); +_cgfd ,_ggeb =_efgc ,_ggfg ;_adcd +=6;case 3:_cbg :=_aegb (_fgbc [_adcd +1]);_baaa :=_aegb (_fgbc [_adcd +2]);_agga :=_aegb (_fgbc [_adcd +3]);_faee :=_aegb (_fgbc [_adcd +4]);_gbegf :=_aegb (_fgbc [_adcd +5]);_fcd :=_aegb (_fgbc [_adcd +6]);_age :=_adb (_cgfd ,_ggeb ,_cbg ,_baaa ,_agga ,_faee ,_gbegf ,_fcd ); +_egcca =append (_egcca ,_age ...);_cgfd ,_ggeb =_gbegf ,_fcd ;_adcd +=8;default:_fbb .Log .Debug ("\u0057\u0041\u0052\u004e: \u0069\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u0070\u0061\u0074\u0068\u003a\u0020%\u0076",_fgbc );return _aee ;};};if len (_egcca )> 0{_aee =append (_aee ,_egcca ); +};return _aee ;};func (_gde *Context )SetDash (dashes ...float64 ){_gde ._eff =dashes };func (_eee *Context )DrawStringAnchored (s string ,face _ec .Face ,x ,y ,ax ,ay float64 ){_ccda ,_cgeg :=_eee .MeasureString (s ,face );_eee .drawString (s ,face ,x -ax *_ccda ,y +ay *_cgeg ); +};func (_fffg stops )Swap (i ,j int ){_fffg [i ],_fffg [j ]=_fffg [j ],_fffg [i ]};func _bd (_cde ,_dgg ,_gg ,_bf ,_ea ,_daf ,_egc ,_bdf ,_fe float64 )(_ga ,_bb float64 ){_bdb :=1-_fe ;_ac :=_bdb *_bdb *_bdb ;_dae :=3*_bdb *_bdb *_fe ;_ba :=3*_bdb *_fe *_fe ; +_ccd :=_fe *_fe *_fe ;_ga =_ac *_cde +_dae *_gg +_ba *_ea +_ccd *_egc ;_bb =_ac *_dgg +_dae *_bf +_ba *_daf +_ccd *_bdf ;return ;};func _dagb (_caae float64 )_bg .Int26_6 {return _bg .Int26_6 (_caae *64)};func NewLinearGradient (x0 ,y0 ,x1 ,y1 float64 )_g .Gradient {_fdfd :=&linearGradient {_bab :x0 ,_fef :y0 ,_dca :x1 ,_cded :y1 }; +return _fdfd ;};func (_cegg *patternPainter )Paint (ss []_ed .Span ,done bool ){_cbfcc :=_cegg ._bbbg .Bounds ();for _ ,_afb :=range ss {if _afb .Y < _cbfcc .Min .Y {continue ;};if _afb .Y >=_cbfcc .Max .Y {return ;};if _afb .X0 < _cbfcc .Min .X {_afb .X0 =_cbfcc .Min .X ; +};if _afb .X1 > _cbfcc .Max .X {_afb .X1 =_cbfcc .Max .X ;};if _afb .X0 >=_afb .X1 {continue ;};const _dcab =1<<16-1;_edcg :=_afb .Y -_cegg ._bbbg .Rect .Min .Y ;_dfge :=_afb .X0 -_cegg ._bbbg .Rect .Min .X ;_ffaa :=(_afb .Y -_cegg ._bbbg .Rect .Min .Y )*_cegg ._bbbg .Stride +(_afb .X0 -_cegg ._bbbg .Rect .Min .X )*4; +_fdg :=_ffaa +(_afb .X1 -_afb .X0 )*4;for _cdd ,_cadcb :=_ffaa ,_dfge ;_cdd < _fdg ;_cdd ,_cadcb =_cdd +4,_cadcb +1{_fgf :=_afb .Alpha ;if _cegg ._dfdg !=nil {_fgf =_fgf *uint32 (_cegg ._dfdg .AlphaAt (_cadcb ,_edcg ).A )/255;if _fgf ==0{continue ;};}; +_afa :=_cegg ._fgbe .ColorAt (_cadcb ,_edcg );_dceef ,_efd ,_bffb ,_fgbae :=_afa .RGBA ();_edbbd :=uint32 (_cegg ._bbbg .Pix [_cdd +0]);_cbe :=uint32 (_cegg ._bbbg .Pix [_cdd +1]);_aeag :=uint32 (_cegg ._bbbg .Pix [_cdd +2]);_cbad :=uint32 (_cegg ._bbbg .Pix [_cdd +3]); +_aag :=(_dcab -(_fgbae *_fgf /_dcab ))*0x101;_cegg ._bbbg .Pix [_cdd +0]=uint8 ((_edbbd *_aag +_dceef *_fgf )/_dcab >>8);_cegg ._bbbg .Pix [_cdd +1]=uint8 ((_cbe *_aag +_efd *_fgf )/_dcab >>8);_cegg ._bbbg .Pix [_cdd +2]=uint8 ((_aeag *_aag +_bffb *_fgf )/_dcab >>8); +_cegg ._bbbg .Pix [_cdd +3]=uint8 ((_cbad *_aag +_fgbae *_fgf )/_dcab >>8);};};};func (_aeg *Context )Pop (){_cad :=*_aeg ;_dff :=_aeg ._ege ;_bff :=_dff [len (_dff )-1];*_aeg =*_bff ;_aeg ._db =_cad ._db ;_aeg ._eea =_cad ._eea ;_aeg ._dea =_cad ._dea ; +_aeg ._efa =_cad ._efa ;_aeg ._df =_cad ._df ;};func (_gea *Context )SetFillRule (fillRule _g .FillRule ){_gea ._agg =fillRule };func (_cegb *Context )RotateAbout (angle ,x ,y float64 ){_cegb .Translate (x ,y );_cegb .Rotate (angle );_cegb .Translate (-x ,-y ); +};func (_cag *Context )SetLineCap (lineCap _g .LineCap ){_cag ._eaag =lineCap };func NewContextForRGBA (im *_fb .RGBA )*Context {_gcg :=im .Bounds ().Size ().X ;_cda :=im .Bounds ().Size ().Y ;return &Context {_eab :_gcg ,_ggd :_cda ,_bbe :_ed .NewRasterizer (_gcg ,_cda ),_agd :im ,_geg :_da .Transparent ,_aabb :_bdbf ,_gdc :_gcb ,_bgd :1,_agg :_g .FillRuleWinding ,_afg :_ca .IdentityMatrix (),_beeb :_g .NewTextState ()}; +};func NewRadialGradient (x0 ,y0 ,r0 ,x1 ,y1 ,r1 float64 )_g .Gradient {_cfdb :=circle {x0 ,y0 ,r0 };_ebd :=circle {x1 ,y1 ,r1 };_ebe :=circle {x1 -x0 ,y1 -y0 ,r1 -r0 };_gfc :=_acd (_ebe ._ffb ,_ebe ._ebca ,-_ebe ._gec ,_ebe ._ffb ,_ebe ._ebca ,_ebe ._gec ); +var _fgcf float64 ;if _gfc !=0{_fgcf =1.0/_gfc ;};_eae :=-_cfdb ._gec ;_edbbb :=&radialGradient {_ccc :_cfdb ,_bde :_ebd ,_cccf :_ebe ,_eca :_gfc ,_ffa :_fgcf ,_gcfc :_eae };return _edbbb ;};func (_eaae *Context )DrawString (s string ,face _ec .Face ,x ,y float64 ){_eaae .DrawStringAnchored (s ,face ,x ,y ,0,0); +};func (_bbc *Context )Rotate (angle float64 ){_bbc ._afg =_bbc ._afg .Rotate (angle )};func (_gba *Context )Scale (x ,y float64 ){_gba ._afg =_gba ._afg .Scale (x ,y )};func (_aega *radialGradient )ColorAt (x ,y int )_da .Color {if len (_aega ._gefb )==0{return _da .Transparent ; +};_abd ,_fggd :=float64 (x )+0.5-_aega ._ccc ._ffb ,float64 (y )+0.5-_aega ._ccc ._ebca ;_cee :=_acd (_abd ,_fggd ,_aega ._ccc ._gec ,_aega ._cccf ._ffb ,_aega ._cccf ._ebca ,_aega ._cccf ._gec );_bfd :=_acd (_abd ,_fggd ,-_aega ._ccc ._gec ,_abd ,_fggd ,_aega ._ccc ._gec ); +if _aega ._eca ==0{if _cee ==0{return _da .Transparent ;};_efg :=0.5*_bfd /_cee ;if _efg *_aega ._cccf ._gec >=_aega ._gcfc {return _bcf (_efg ,_aega ._gefb );};return _da .Transparent ;};_cba :=_acd (_cee ,_aega ._eca ,0,_cee ,-_bfd ,0);if _cba >=0{_bed :=_b .Sqrt (_cba ); +_gcgf :=(_cee +_bed )*_aega ._ffa ;_ecac :=(_cee -_bed )*_aega ._ffa ;if _gcgf *_aega ._cccf ._gec >=_aega ._gcfc {return _bcf (_gcgf ,_aega ._gefb );}else if _ecac *_aega ._cccf ._gec >=_aega ._gcfc {return _bcf (_ecac ,_aega ._gefb );};};return _da .Transparent ; +};func (_ceb *Context )ClearPath (){_ceb ._db .Clear ();_ceb ._eea .Clear ();_ceb ._df =false };func (_bfa *Context )SetLineJoin (lineJoin _g .LineJoin ){_bfa ._cae =lineJoin };func (_dfe *Context )Push (){_dafe :=*_dfe ;_dfe ._ege =append (_dfe ._ege ,&_dafe )}; +func (_bag *Context )DrawArc (x ,y ,r ,angle1 ,angle2 float64 ){_bag .DrawEllipticalArc (x ,y ,r ,r ,angle1 ,angle2 );};func (_fadf *Context )stroke (_aac _ed .Painter ){_dbb :=_fadf ._db ;if len (_fadf ._eff )> 0{_dbb =_cce (_dbb ,_fadf ._eff ,_fadf ._faa ); +}else {_dbb =_edda (_cabd (_dbb ));};_egec :=_fadf ._bbe ;_egec .UseNonZeroWinding =true ;_egec .Clear ();_fc :=(_fadf ._afg .ScalingFactorX ()+_fadf ._afg .ScalingFactorY ())/2;_egec .AddStroke (_dbb ,_dagb (_fadf ._bgd *_fc ),_fadf .capper (),_fadf .joiner ()); +_egec .Rasterize (_aac );};func (_edd *Context )SetMatrix (m _ca .Matrix ){_edd ._afg =m };func (_ged *Context )DrawCircle (x ,y ,r float64 ){_ged .NewSubPath ();_ged .DrawEllipticalArc (x ,y ,r ,r ,0,2*_b .Pi );_ged .ClosePath ();};func (_fca stops )Less (i ,j int )bool {return _fca [i ]._dede < _fca [j ]._dede }; +func (_caf *Context )DrawEllipse (x ,y ,rx ,ry float64 ){_caf .NewSubPath ();_caf .DrawEllipticalArc (x ,y ,rx ,ry ,0,2*_b .Pi );_caf .ClosePath ();};func (_fed *Context )SetPixel (x ,y int ){_fed ._agd .Set (x ,y ,_fed ._geg )};func (_ffff *Context )DrawEllipticalArc (x ,y ,rx ,ry ,angle1 ,angle2 float64 ){const _ced =16; +for _bgfg :=0;_bgfg < _ced ;_bgfg ++{_fac :=float64 (_bgfg +0)/_ced ;_abb :=float64 (_bgfg +1)/_ced ;_bdg :=angle1 +(angle2 -angle1 )*_fac ;_gef :=angle1 +(angle2 -angle1 )*_abb ;_gbb :=x +rx *_b .Cos (_bdg );_acb :=y +ry *_b .Sin (_bdg );_dac :=x +rx *_b .Cos ((_bdg +_gef )/2); +_dce :=y +ry *_b .Sin ((_bdg +_gef )/2);_bdbb :=x +rx *_b .Cos (_gef );_bbb :=y +ry *_b .Sin (_gef );_dcdg :=2*_dac -_gbb /2-_bdbb /2;_gfea :=2*_dce -_acb /2-_bbb /2;if _bgfg ==0{if _ffff ._df {_ffff .LineTo (_gbb ,_acb );}else {_ffff .MoveTo (_gbb ,_acb ); +};};_ffff .QuadraticTo (_dcdg ,_gfea ,_bdbb ,_bbb );};};func (_cgff *linearGradient )AddColorStop (offset float64 ,color _da .Color ){_cgff ._cgf =append (_cgff ._cgf ,stop {_dede :offset ,_gdbe :color });_c .Sort (_cgff ._cgf );};func (_cfd *Context )SetRGB255 (r ,g ,b int ){_cfd .SetRGBA255 (r ,g ,b ,255)}; +func _cdc (_dcaa _fb .Image )*_fb .RGBA {_ccdaf :=_dcaa .Bounds ();_cdbf :=_fb .NewRGBA (_ccdaf );_a .Draw (_cdbf ,_ccdaf ,_dcaa ,_ccdaf .Min ,_a .Src );return _cdbf ;};const (_gecf repeatOp =iota ;_ddgc ;_gbag ;_bdea ;);func (_cfe *Context )MoveTo (x ,y float64 ){if _cfe ._df {_cfe ._eea .Add1 (_eda (_cfe ._dea )); +};x ,y =_cfe .Transform (x ,y );_bgg :=_ca .NewPoint (x ,y );_gfd :=_eda (_bgg );_cfe ._db .Start (_gfd );_cfe ._eea .Start (_gfd );_cfe ._dea =_bgg ;_cfe ._efa =_bgg ;_cfe ._df =true ;};func (_fdf *Context )Clip (){_fdf .ClipPreserve ();_fdf .ClearPath ()}; +func (_cab *Context )FillPreserve (){var _gbc _ed .Painter ;if _cab ._aca ==nil {if _fce ,_fceb :=_cab ._aabb .(*solidPattern );_fceb {_fg :=_ed .NewRGBAPainter (_cab ._agd );_fg .SetColor (_fce ._bbfc );_gbc =_fg ;};};if _gbc ==nil {_gbc =_aagb (_cab ._agd ,_cab ._aca ,_cab ._aabb ); +};_cab .fill (_gbc );};func (_dfd *Context )SetStrokeStyle (pattern _g .Pattern ){_dfd ._gdc =pattern };func (_bda *Context )SetRGBA255 (r ,g ,b ,a int ){_bda ._geg =_da .NRGBA {uint8 (r ),uint8 (g ),uint8 (b ),uint8 (a )};_bda .setFillAndStrokeColor (_bda ._geg ); +};func (_fdd *Context )DrawImage (im _fb .Image ,x ,y int ){_fdd .DrawImageAnchored (im ,x ,y ,0,0)};func (_caa *Context )SetColor (c _da .Color ){_caa .setFillAndStrokeColor (c )};func (_dcg *Context )TextState ()*_g .TextState {return &_dcg ._beeb }; +func (_aaf *Context )fill (_dagg _ed .Painter ){_aabe :=_aaf ._eea ;if _aaf ._df {_aabe =make (_ed .Path ,len (_aaf ._eea ));copy (_aabe ,_aaf ._eea );_aabe .Add1 (_eda (_aaf ._dea ));};_abc :=_aaf ._bbe ;_abc .UseNonZeroWinding =_aaf ._agg ==_g .FillRuleWinding ; +_abc .Clear ();_abc .AddPath (_aabe );_abc .Rasterize (_dagg );};func _eda (_beee _ca .Point )_bg .Point26_6 {return _bg .Point26_6 {X :_dagb (_beee .X ),Y :_dagb (_beee .Y )}};type radialGradient struct{_ccc ,_bde ,_cccf circle ;_eca ,_ffa float64 ;_gcfc float64 ; +_gefb stops ;};func (_dgc *Context )Identity (){_dgc ._afg =_ca .IdentityMatrix ()};func _bcf (_gbeg float64 ,_ffbe stops )_da .Color {if _gbeg <=0.0||len (_ffbe )==1{return _ffbe [0]._gdbe ;};_ece :=_ffbe [len (_ffbe )-1];if _gbeg >=_ece ._dede {return _ece ._gdbe ; +};for _deg ,_bcac :=range _ffbe [1:]{if _gbeg < _bcac ._dede {_gbeg =(_gbeg -_ffbe [_deg ]._dede )/(_bcac ._dede -_ffbe [_deg ]._dede );return _bea (_ffbe [_deg ]._gdbe ,_bcac ._gdbe ,_gbeg );};};return _ece ._gdbe ;};func (_edc *Context )QuadraticTo (x1 ,y1 ,x2 ,y2 float64 ){if !_edc ._df {_edc .MoveTo (x1 ,y1 ); +};x1 ,y1 =_edc .Transform (x1 ,y1 );x2 ,y2 =_edc .Transform (x2 ,y2 );_bdc :=_ca .NewPoint (x1 ,y1 );_agf :=_ca .NewPoint (x2 ,y2 );_ab :=_eda (_bdc );_cbf :=_eda (_agf );_edc ._db .Add2 (_ab ,_cbf );_edc ._eea .Add2 (_ab ,_cbf );_edc ._efa =_agf ;};func (_cec *Context )joiner ()_ed .Joiner {switch _cec ._cae {case _g .LineJoinBevel :return _ed .BevelJoiner ; +case _g .LineJoinRound :return _ed .RoundJoiner ;};return nil ;};func _acd (_fgc ,_edbb ,_geca ,_babd ,_ccce ,_baga float64 )float64 {return _fgc *_babd +_edbb *_ccce +_geca *_baga ;};func (_gfb *surfacePattern )ColorAt (x ,y int )_da .Color {_gab :=_gfb ._fcaa .Bounds (); +switch _gfb ._adee {case _ddgc :if y >=_gab .Dy (){return _da .Transparent ;};case _gbag :if x >=_gab .Dx (){return _da .Transparent ;};case _bdea :if x >=_gab .Dx ()||y >=_gab .Dy (){return _da .Transparent ;};};x =x %_gab .Dx ()+_gab .Min .X ;y =y %_gab .Dy ()+_gab .Min .Y ; +return _gfb ._fcaa .At (x ,y );};func (_eed *Context )Translate (x ,y float64 ){_eed ._afg =_eed ._afg .Translate (x ,y )};func _cce (_gbd _ed .Path ,_bbaca []float64 ,_gfga float64 )_ed .Path {return _edda (_afcd (_cabd (_gbd ),_bbaca ,_gfga ));};func (_ce *Context )LineWidth ()float64 {return _ce ._bgd }; +func _aagb (_bcfg *_fb .RGBA ,_faac *_fb .Alpha ,_fbe _g .Pattern )*patternPainter {return &patternPainter {_bcfg ,_faac ,_fbe };};func (_bef *Context )Clear (){_ceg :=_fb .NewUniform (_bef ._geg );_e .Draw (_bef ._agd ,_bef ._agd .Bounds (),_ceg ,_fb .Point {},_e .Src ); +};func (_dcd *Context )StrokePattern ()_g .Pattern {return _dcd ._gdc };func (_efaf *Context )Width ()int {return _efaf ._eab };func (_ace *Context )DrawRectangle (x ,y ,w ,h float64 ){_ace .NewSubPath ();_ace .MoveTo (x ,y );_ace .LineTo (x +w ,y );_ace .LineTo (x +w ,y +h ); +_ace .LineTo (x ,y +h );_ace .ClosePath ();};func (_aeb *Context )SetRGB (r ,g ,b float64 ){_aeb .SetRGBA (r ,g ,b ,1)};func _afcd (_afge [][]_ca .Point ,_egg []float64 ,_bdbg float64 )[][]_ca .Point {var _bga [][]_ca .Point ;if len (_egg )==0{return _afge ; +};if len (_egg )==1{_egg =append (_egg ,_egg [0]);};for _ ,_beab :=range _afge {if len (_beab )< 2{continue ;};_gcd :=_beab [0];_bbac :=1;_cabdg :=0;_cfdg :=0.0;if _bdbg !=0{var _ceba float64 ;for _ ,_fdcc :=range _egg {_ceba +=_fdcc ;};_bdbg =_b .Mod (_bdbg ,_ceba ); +if _bdbg < 0{_bdbg +=_ceba ;};for _bgbd ,_acba :=range _egg {_bdbg -=_acba ;if _bdbg < 0{_cabdg =_bgbd ;_cfdg =_acba +_bdbg ;break ;};};};var _dcf []_ca .Point ;_dcf =append (_dcf ,_gcd );for _bbac < len (_beab ){_baac :=_egg [_cabdg ];_cebag :=_beab [_bbac ]; +_bfcg :=_gcd .Distance (_cebag );_deb :=_baac -_cfdg ;if _bfcg > _deb {_cfef :=_deb /_bfcg ;_ebdc :=_gcd .Interpolate (_cebag ,_cfef );_dcf =append (_dcf ,_ebdc );if _cabdg %2==0&&len (_dcf )> 1{_bga =append (_bga ,_dcf );};_dcf =nil ;_dcf =append (_dcf ,_ebdc ); +_cfdg =0;_gcd =_ebdc ;_cabdg =(_cabdg +1)%len (_egg );}else {_dcf =append (_dcf ,_cebag );_gcd =_cebag ;_cfdg +=_bfcg ;_bbac ++;};};if _cabdg %2==0&&len (_dcf )> 1{_bga =append (_bga ,_dcf );};};return _bga ;};func (_egef *Context )SetFillRGBA (r ,g ,b ,a float64 ){_cb :=_da .NRGBA {uint8 (r *255),uint8 (g *255),uint8 (b *255),uint8 (a *255)}; +_egef ._geg =_cb ;_egef ._aabb =_cecd (_cb );};func (_bdcd *Context )MeasureString (s string ,face _ec .Face )(_efcc ,_bdd float64 ){_dedg :=&_ec .Drawer {Face :face };_dcee :=_dedg .MeasureString (s );return float64 (_dcee >>6),_bdcd ._beeb .Tf .Size ; +};func (_ecfe *Context )FillPattern ()_g .Pattern {return _ecfe ._aabb };func (_afc *Context )SetStrokeRGBA (r ,g ,b ,a float64 ){_afd :=_da .NRGBA {uint8 (r *255),uint8 (g *255),uint8 (b *255),uint8 (a *255)};_afc ._gdc =_cecd (_afd );};func _adb (_bae ,_eb ,_gfa ,_cff ,_egd ,_ee ,_egcc ,_bgf float64 )[]_ca .Point {_ag :=(_b .Hypot (_gfa -_bae ,_cff -_eb )+_b .Hypot (_egd -_gfa ,_ee -_cff )+_b .Hypot (_egcc -_egd ,_bgf -_ee )); +_fae :=int (_ag +0.5);if _fae < 4{_fae =4;};_daga :=float64 (_fae )-1;_fba :=make ([]_ca .Point ,_fae );for _ade :=0;_ade < _fae ;_ade ++{_agb :=float64 (_ade )/_daga ;_bba ,_eaa :=_bd (_bae ,_eb ,_gfa ,_cff ,_egd ,_ee ,_egcc ,_bgf ,_agb );_fba [_ade ]=_ca .NewPoint (_bba ,_eaa ); +};return _fba ;};func _fbf (_gff float64 )float64 {return _gff *_b .Pi /180};type linearGradient struct{_bab ,_fef ,_dca ,_cded float64 ;_cgf stops ;};func _edda (_gfgb [][]_ca .Point )_ed .Path {var _dggb _ed .Path ;for _ ,_cbd :=range _gfgb {var _gbcg _bg .Point26_6 ; +for _gcdd ,_gbga :=range _cbd {_fgba :=_eda (_gbga );if _gcdd ==0{_dggb .Start (_fgba );}else {_bbcg :=_fgba .X -_gbcg .X ;_faf :=_fgba .Y -_gbcg .Y ;if _bbcg < 0{_bbcg =-_bbcg ;};if _faf < 0{_faf =-_faf ;};if _bbcg +_faf > 8{_dggb .Add1 (_fgba );};};_gbcg =_fgba ; +};};return _dggb ;};type surfacePattern struct{_fcaa _fb .Image ;_adee repeatOp ;};type stop struct{_dede float64 ;_gdbe _da .Color ;};func (_gfaf *Context )ScaleAbout (sx ,sy ,x ,y float64 ){_gfaf .Translate (x ,y );_gfaf .Scale (sx ,sy );_gfaf .Translate (-x ,-y ); +};func (_cedc *Context )DrawImageAnchored (im _fb .Image ,x ,y int ,ax ,ay float64 ){_beb :=im .Bounds ().Size ();x -=int (ax *float64 (_beb .X ));y -=int (ay *float64 (_beb .Y ));_egcf :=_e .BiLinear ;_dbcf :=_cedc ._afg .Clone ().Translate (float64 (x ),float64 (y )); +_ccag :=_fd .Aff3 {_dbcf [0],_dbcf [3],_dbcf [6],_dbcf [1],_dbcf [4],_dbcf [7]};if _cedc ._aca ==nil {_egcf .Transform (_cedc ._agd ,_ccag ,im ,im .Bounds (),_e .Over ,nil );}else {_egcf .Transform (_cedc ._agd ,_ccag ,im ,im .Bounds (),_e .Over ,&_e .Options {DstMask :_cedc ._aca ,DstMaskP :_fb .Point {}}); +};};var (_bdbf =_cecd (_da .White );_gcb =_cecd (_da .Black ););func (_gae *Context )InvertMask (){if _gae ._aca ==nil {_gae ._aca =_fb .NewAlpha (_gae ._agd .Bounds ());}else {for _cfff ,_agc :=range _gae ._aca .Pix {_gae ._aca .Pix [_cfff ]=255-_agc ; +};};};type repeatOp int ;type stops []stop ; \ No newline at end of file diff --git a/render/render.go b/render/render.go index ba319ee42..20d51f7c5 100644 --- a/render/render.go +++ b/render/render.go @@ -9,34 +9,20 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package render ;import (_a "errors";_be "fmt";_da "github.com/adrg/sysfont";_gg "github.com/unidoc/unipdf/v3/annotator";_e "github.com/unidoc/unipdf/v3/common";_df "github.com/unidoc/unipdf/v3/contentstream";_aab "github.com/unidoc/unipdf/v3/contentstream/draw"; -_fc "github.com/unidoc/unipdf/v3/core";_ce "github.com/unidoc/unipdf/v3/internal/license";_ca "github.com/unidoc/unipdf/v3/internal/transform";_ab "github.com/unidoc/unipdf/v3/model";_cb "github.com/unidoc/unipdf/v3/render/internal/context";_beb "github.com/unidoc/unipdf/v3/render/internal/context/imagerender"; -_cf "golang.org/x/image/draw";_gb "image";_bb "image/color";_f "image/draw";_aa "image/jpeg";_b "image/png";_c "math";_gf "os";_af "path/filepath";_d "strings";);const (ShadingTypeFunctionBased PdfShadingType =1;ShadingTypeAxial PdfShadingType =2;ShadingTypeRadial PdfShadingType =3; -ShadingTypeFreeForm PdfShadingType =4;ShadingTypeLatticeForm PdfShadingType =5;ShadingTypeCoons PdfShadingType =6;ShadingTypeTensorProduct PdfShadingType =7;); +package render ;import (_b "errors";_cge "fmt";_cbf "github.com/adrg/sysfont";_dee "github.com/unidoc/unipdf/v3/annotator";_dd "github.com/unidoc/unipdf/v3/common";_eg "github.com/unidoc/unipdf/v3/contentstream";_be "github.com/unidoc/unipdf/v3/contentstream/draw"; +_de "github.com/unidoc/unipdf/v3/core";_cbc "github.com/unidoc/unipdf/v3/internal/license";_ba "github.com/unidoc/unipdf/v3/internal/transform";_ed "github.com/unidoc/unipdf/v3/model";_a "github.com/unidoc/unipdf/v3/render/internal/context";_g "github.com/unidoc/unipdf/v3/render/internal/context/imagerender"; +_eb "golang.org/x/image/draw";_db "image";_ea "image/color";_ce "image/draw";_ced "image/jpeg";_cg "image/png";_d "math";_cb "os";_f "path/filepath";_e "strings";); -// NewImageDevice returns a new image device. -func NewImageDevice ()*ImageDevice {const _eg ="r\u0065\u006e\u0064\u0065r.\u004ee\u0077\u0049\u006d\u0061\u0067e\u0044\u0065\u0076\u0069\u0063\u0065";_ce .TrackUse (_eg );return &ImageDevice {};}; +// RenderWithOpts converts the specified PDF page into an image, optionally flattens annotations and returns the result. +func (_ff *ImageDevice )RenderWithOpts (page *_ed .PdfPage ,skipFlattening bool )(_db .Image ,error ){_af ,_cf :=page .GetMediaBox ();if _cf !=nil {return nil ,_cf ;};_af .Normalize ();_cc :=page .CropBox ;var _cgg ,_afc float64 ;if _cc !=nil {_cc .Normalize (); +_cgg ,_afc =_cc .Width (),_cc .Height ();};_fff :=page .Rotate ;_ee ,_cef ,_da ,_edc :=_af .Llx ,_af .Lly ,_af .Width (),_af .Height ();_edd :=_ba .IdentityMatrix ();if _fff !=nil &&*_fff %360!=0&&*_fff %90==0{_ffa :=-float64 (*_fff );_eaa :=_fgef (_da ,_edc ,_ffa ); +_edd =_edd .Translate ((_eaa .Width -_da )/2+_da /2,(_eaa .Height -_edc )/2+_edc /2).Rotate (_ffa *_d .Pi /180).Translate (-_da /2,-_edc /2);_da ,_edc =_eaa .Width ,_eaa .Height ;if _cc !=nil {_eeb :=_fgef (_cgg ,_afc ,_ffa );_cgg ,_afc =_eeb .Width ,_eeb .Height ; +};};if _ee !=0||_cef !=0{_edd =_edd .Translate (-_ee ,-_cef );};_ff ._fee =1.0;if _ff .OutputWidth !=0{_bac :=_da ;if _cc !=nil {_bac =_cgg ;};_ff ._fee =float64 (_ff .OutputWidth )/_bac ;_da ,_edc ,_cgg ,_afc =_da *_ff ._fee ,_edc *_ff ._fee ,_cgg *_ff ._fee ,_afc *_ff ._fee ; +_edd =_ba .ScaleMatrix (_ff ._fee ,_ff ._fee ).Mult (_edd );};_gb :=_g .NewContext (int (_da ),int (_edc ));if _fd :=_ff .renderPage (_gb ,page ,_edd ,skipFlattening );_fd !=nil {return nil ,_fd ;};_bed :=_gb .Image ();if _cc !=nil {_ae ,_fe :=(_cc .Llx -_ee )*_ff ._fee ,(_cc .Lly -_cef )*_ff ._fee ; +_bef :=_db .Rect (0,0,int (_cgg ),int (_afc ));_fea :=_db .Pt (int (_ae ),int (_edc -_fe -_afc ));_bf :=_db .NewRGBA (_bef );_ce .Draw (_bf ,_bef ,_bed ,_fea ,_ce .Src );_bed =_bf ;};return _bed ,nil ;}; -// Render converts the specified PDF page into an image, flattens annotations by default and returns the result. -func (_ad *ImageDevice )Render (page *_ab .PdfPage )(_gb .Image ,error ){return _ad .RenderWithOpts (page ,false );};func _cea (_dbe *_ab .Image ,_geff _bb .Color )_gb .Image {_aefa ,_debf :=int (_dbe .Width ),int (_dbe .Height );_fgee :=_gb .NewRGBA (_gb .Rect (0,0,_aefa ,_debf )); -for _ffac :=0;_ffac < _debf ;_ffac ++{for _feff :=0;_feff < _aefa ;_feff ++{_aea ,_fee :=_dbe .ColorAt (_feff ,_ffac );if _fee !=nil {_e .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_feff ,_ffac ); -continue ;};_gdb ,_bed ,_dfg ,_ :=_aea .RGBA ();var _ffbd _bb .Color ;if _gdb +_bed +_dfg ==0{_ffbd =_geff ;}else {_ffbd =_bb .Transparent ;};_fgee .Set (_feff ,_ffac ,_ffbd );};};return _fgee ;};func _gfcd (_dfgd ,_gde _gb .Image )_gb .Image {_egea ,_ede :=_gde .Bounds ().Size (),_dfgd .Bounds ().Size (); -_ccc ,_edc :=_egea .X ,_egea .Y ;if _ede .X > _ccc {_ccc =_ede .X ;};if _ede .Y > _edc {_edc =_ede .Y ;};_gbb :=_gb .Rect (0,0,_ccc ,_edc );if _egea .X !=_ccc ||_egea .Y !=_edc {_aaae :=_gb .NewRGBA (_gbb );_cf .BiLinear .Scale (_aaae ,_gbb ,_dfgd ,_gde .Bounds (),_cf .Over ,nil ); -_gde =_aaae ;};if _ede .X !=_ccc ||_ede .Y !=_edc {_gcaa :=_gb .NewRGBA (_gbb );_cf .BiLinear .Scale (_gcaa ,_gbb ,_dfgd ,_dfgd .Bounds (),_cf .Over ,nil );_dfgd =_gcaa ;};_aefb :=_gb .NewRGBA (_gbb );_cf .DrawMask (_aefb ,_gbb ,_dfgd ,_gb .Point {},_gde ,_gb .Point {},_cf .Over ); -return _aefb ;};func _cab (_cdgc _fc .PdfObject ,_afeb _bb .Color )(_gb .Image ,error ){_fcb ,_ffgd :=_fc .GetStream (_cdgc );if !_ffgd {return nil ,nil ;};_cgfd ,_bega :=_ab .NewXObjectImageFromStream (_fcb );if _bega !=nil {return nil ,_bega ;};_ebea ,_bega :=_cgfd .ToImage (); -if _bega !=nil {return nil ,_bega ;};return _cea (_ebea ,_afeb ),nil ;};func (_ggd renderer )processRadialShading (_ccec _cb .Context ,_bcg *_ab .PdfShading )(_cb .Gradient ,*_fc .PdfObjectArray ,error ){_fbf :=_bcg .GetContext ().(*_ab .PdfShadingType3 ); -if len (_fbf .Function )==0{return nil ,nil ,_a .New ("\u006e\u006f\u0020\u0067\u0072\u0061\u0064i\u0065\u006e\u0074 \u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0020\u0066\u006f\u0075\u006e\u0064\u002c\u0020\u0073\u006b\u0069\u0070\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); -};_dec ,_fff :=_fbf .Coords .ToFloat64Array ();if _fff !=nil {return nil ,nil ,_a .New ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0067e\u0074\u0074\u0069\u006e\u0067\u0020\u0073h\u0061\u0064\u0069\u006e\u0067\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e"); -};_eba :=_bcg .ColorSpace ;_adcd :=_fc .MakeArrayFromFloats ([]float64 {0,0,1,1});var _bege ,_gcdd ,_aegb ,_dagf ,_afb ,_badf float64 ;_bege ,_gcdd =_ccec .Matrix ().Transform (_dec [0],_dec [1]);_aegb ,_dagf =_ccec .Matrix ().Transform (_dec [3],_dec [4]); -_afb ,_ =_ccec .Matrix ().Transform (_dec [2],0);_badf ,_ =_ccec .Matrix ().Transform (_dec [5],0);_efcf ,_ :=_ccec .Matrix ().Translation ();_afb -=_efcf ;_badf -=_efcf ;for _cec ,_fefc :=range _dec {if _cec ==2||_cec ==5{continue ;};if _fefc > 1.0{_cgb :=_c .Min (_bege -_afb ,_aegb -_badf ); -_eead :=_c .Min (_gcdd -_afb ,_dagf -_badf );_dfea :=_c .Max (_bege +_afb ,_aegb +_badf );_bfe :=_c .Max (_gcdd +_afb ,_dagf +_badf );_dddd :=_dfea -_cgb ;_eaaa :=_eead -_bfe ;_adcd =_fc .MakeArrayFromFloats ([]float64 {_cgb ,_eead ,_dddd ,_eaaa });break ; -};};_bdf :=_beb .NewRadialGradient (_bege ,_gcdd ,_afb ,_aegb ,_dagf ,_badf );if _ece ,_gaad :=_fbf .Function [0].(*_ab .PdfFunctionType2 );_gaad {_bdf ,_fff =_cecd (_bdf ,_ece ,_eba ,1.0,true );}else if _adfb ,_gcgd :=_fbf .Function [0].(*_ab .PdfFunctionType3 ); -_gcgd {_geeg :=append ([]float64 {0},_adfb .Bounds ...);_geeg =append (_geeg ,1.0);_bdf ,_fff =_gfae (_bdf ,_adfb ,_eba ,_geeg );};if _fff !=nil {return nil ,nil ,_fff ;};return _bdf ,_adcd ,nil ;};func _cdffc (_fdg string ,_eeadg _gb .Image ,_ccg int )error {_afdf ,_dgdf :=_gf .Create (_fdg ); -if _dgdf !=nil {return _dgdf ;};defer _afdf .Close ();return _aa .Encode (_afdf ,_eeadg ,&_aa .Options {Quality :_ccg });};func _cecd (_dcfc _cb .Gradient ,_dgfb *_ab .PdfFunctionType2 ,_eca _ab .PdfColorspace ,_bde float64 ,_dcd bool )(_cb .Gradient ,error ){switch _eca .(type ){case *_ab .PdfColorspaceDeviceRGB :if len (_dgfb .C0 )!=3||len (_dgfb .C1 )!=3{return nil ,_a .New ("\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u0020\u0052\u0047\u0042\u0020\u0063o\u006co\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068"); -};_aeb :=_dgfb .C0 ;_bade :=_dgfb .C1 ;if _dcd {_dcfc .AddColorStop (0.0,_bb .RGBA {R :uint8 (_aeb [0]*255),G :uint8 (_aeb [1]*255),B :uint8 (_aeb [2]*255),A :255});};_dcfc .AddColorStop (_bde ,_bb .RGBA {R :uint8 (_bade [0]*255),G :uint8 (_bade [1]*255),B :uint8 (_bade [2]*255),A :255}); -case *_ab .PdfColorspaceDeviceCMYK :if len (_dgfb .C0 )!=4||len (_dgfb .C1 )!=4{return nil ,_a .New ("\u0069\u006e\u0063\u006f\u0072\u0072e\u0063\u0074\u0020\u0043\u004d\u0059\u004b\u0020\u0063\u006f\u006c\u006f\u0072 \u0061\u0072\u0072\u0061\u0079\u0020\u006ce\u006e\u0067\u0074\u0068"); -};_ddc :=_dgfb .C0 ;_fgcf :=_dgfb .C1 ;if _dcd {_dcfc .AddColorStop (0.0,_bb .CMYK {C :uint8 (_ddc [0]*255),M :uint8 (_ddc [1]*255),Y :uint8 (_ddc [2]*255),K :uint8 (_ddc [3]*255)});};_dcfc .AddColorStop (_bde ,_bb .CMYK {C :uint8 (_fgcf [0]*255),M :uint8 (_fgcf [1]*255),Y :uint8 (_fgcf [2]*255),K :uint8 (_fgcf [3]*255)}); -default:return nil ,_be .Errorf ("u\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072 \u0073\u0070\u0061c\u0065:\u0020\u0025\u0073",_eca .String ());};return _dcfc ,nil ;};type renderer struct{_dg float64 }; +// NewImageDevice returns a new image device. +func NewImageDevice ()*ImageDevice {const _df ="r\u0065\u006e\u0064\u0065r.\u004ee\u0077\u0049\u006d\u0061\u0067e\u0044\u0065\u0076\u0069\u0063\u0065";_cbc .TrackUse (_df );return &ImageDevice {};}; // ImageDevice is used to render PDF pages to image targets. type ImageDevice struct{renderer ; @@ -44,163 +30,175 @@ type ImageDevice struct{renderer ; // OutputWidth represents the width of the rendered images in pixels. // The heights of the output images are calculated based on the selected // width and the original height of each rendered page. -OutputWidth int ;}; +OutputWidth int ;};func _deeg (_dfcf _a .Gradient ,_agb *_ed .PdfFunctionType3 ,_dabd _ed .PdfColorspace ,_aae []float64 )(_a .Gradient ,error ){var _bcec error ;for _gcbf :=0;_gcbf < len (_agb .Functions );_gcbf ++{if _dbca ,_gdf :=_agb .Functions [_gcbf ].(*_ed .PdfFunctionType2 ); +_gdf {_dfcf ,_bcec =_eaag (_dfcf ,_dbca ,_dabd ,_aae [_gcbf +1],_gcbf ==0);if _bcec !=nil {return nil ,_bcec ;};};};return _dfcf ,nil ;};func (_gba renderer )processLinearShading (_fgbg _a .Context ,_afee *_ed .PdfShading )(_a .Gradient ,*_de .PdfObjectArray ,error ){_fge :=_afee .GetContext ().(*_ed .PdfShadingType2 ); +if len (_fge .Function )==0{return nil ,nil ,_b .New ("\u006e\u006f\u0020\u0067\u0072\u0061\u0064i\u0065\u006e\u0074 \u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0020\u0066\u006f\u0075\u006e\u0064\u002c\u0020\u0073\u006b\u0069\u0070\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); +};_ged ,_cce :=_fge .Coords .ToFloat64Array ();if _cce !=nil {return nil ,nil ,_b .New ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0067e\u0074\u0074\u0069\u006e\u0067\u0020\u0073h\u0061\u0064\u0069\u006e\u0067\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e"); +};_eac :=_afee .ColorSpace ;_gge ,_eaf :=_fgbg .Matrix ().Transform (_ged [0],_ged [1]);_bada ,_gbgd :=_fgbg .Matrix ().Transform (_ged [2],_ged [3]);_cdd :=_g .NewLinearGradient (_gge ,_eaf ,_bada ,_gbgd );_bge :=_de .MakeArrayFromFloats ([]float64 {0,0,1,1}); +for _ ,_dce :=range _ged {if _dce > 1{_bge =_fge .Coords ;break ;};};if _fdf ,_ebbf :=_fge .Function [0].(*_ed .PdfFunctionType2 );_ebbf {_cdd ,_cce =_eaag (_cdd ,_fdf ,_eac ,1.0,true );}else if _ece ,_cfg :=_fge .Function [0].(*_ed .PdfFunctionType3 ); +_cfg {_egce :=append ([]float64 {0},_ece .Bounds ...);_egce =append (_egce ,1.0);_cdd ,_cce =_deeg (_cdd ,_ece ,_eac ,_egce );};return _cdd ,_bge ,_cce ;}; + +// PdfShadingType defines PDF shading types. +// Source: PDF32000_2008.pdf. Chapter 8.7.4.5 +type PdfShadingType int64 ;func (_gc renderer )renderContentStream (_gf _a .Context ,_fb string ,_ffaf *_ed .PdfPageResources )error {_dbb ,_ccf :=_eg .NewContentStreamParser (_fb ).Parse ();if _ccf !=nil {return _ccf ;};_ge :=_gf .TextState ();_ge .GlobalScale =_gc ._fee ; +_gd :=map[string ]*_a .TextFont {};_bd :=_cbf .NewFinder (&_cbf .FinderOpts {Extensions :[]string {"\u002e\u0074\u0074\u0066","\u002e\u0074\u0074\u0063"}});var _cfd *_eg .ContentStreamOperation ;_ccg :=_eg .NewContentStreamProcessor (*_dbb );_ccg .AddHandler (_eg .HandlerConditionEnumAllOperands ,"",func (_bc *_eg .ContentStreamOperation ,_gcg _eg .GraphicsState ,_egfe *_ed .PdfPageResources )error {_dd .Log .Debug ("\u0050\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0025\u0073",_bc .Operand ); +switch _bc .Operand {case "\u0071":_gf .Push ();case "\u0051":_gf .Pop ();_ge =_gf .TextState ();case "\u0063\u006d":if len (_bc .Params )!=6{return _afg ;};_ef ,_fec :=_de .GetNumbersAsFloat (_bc .Params );if _fec !=nil {return _fec ;};_dbc :=_ba .NewMatrix (_ef [0],_ef [1],_ef [2],_ef [3],_ef [4],_ef [5]); +_dd .Log .Debug ("\u0047\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0020\u0073\u0074a\u0074\u0065\u0020\u006d\u0061\u0074\u0072\u0069\u0078\u003a \u0025\u002b\u0076",_dbc );_gf .SetMatrix (_gf .Matrix ().Mult (_dbc ));case "\u0077":if len (_bc .Params )!=1{return _afg ; +};_agg ,_dc :=_de .GetNumbersAsFloat (_bc .Params );if _dc !=nil {return _dc ;};_gf .SetLineWidth (_agg [0]);case "\u004a":if len (_bc .Params )!=1{return _afg ;};_ddb ,_ccfg :=_de .GetIntVal (_bc .Params [0]);if !_ccfg {return _ag ;};switch _ddb {case 0:_gf .SetLineCap (_a .LineCapButt ); +case 1:_gf .SetLineCap (_a .LineCapRound );case 2:_gf .SetLineCap (_a .LineCapSquare );default:_dd .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u006ee\u0020\u0063\u0061\u0070\u0020\u0073\u0074\u0079\u006c\u0065:\u0020\u0025\u0064",_ddb ); +return _afg ;};case "\u006a":if len (_bc .Params )!=1{return _afg ;};_cgf ,_ab :=_de .GetIntVal (_bc .Params [0]);if !_ab {return _ag ;};switch _cgf {case 0:_gf .SetLineJoin (_a .LineJoinBevel );case 1:_gf .SetLineJoin (_a .LineJoinRound );case 2:_gf .SetLineJoin (_a .LineJoinBevel ); +default:_dd .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006c\u0069\u006e\u0065\u0020\u006a\u006f\u0069\u006e \u0073\u0074\u0079l\u0065:\u0020\u0025\u0064",_cgf );return _afg ;};case "\u004d":if len (_bc .Params )!=1{return _afg ;};_fecc ,_gag :=_de .GetNumbersAsFloat (_bc .Params ); +if _gag !=nil {return _gag ;};_ =_fecc ;_dd .Log .Debug ("\u004di\u0074\u0065\u0072\u0020l\u0069\u006d\u0069\u0074\u0020n\u006ft\u0020s\u0075\u0070\u0070\u006f\u0072\u0074\u0065d");case "\u0064":if len (_bc .Params )!=2{return _afg ;};_dff ,_aa :=_de .GetArray (_bc .Params [0]); +if !_aa {return _ag ;};_ddg ,_aa :=_de .GetIntVal (_bc .Params [1]);if !_aa {_ ,_gea :=_de .GetFloatVal (_bc .Params [1]);if !_gea {return _ag ;};};_fdce ,_bb :=_de .GetNumbersAsFloat (_dff .Elements ());if _bb !=nil {return _bb ;};_gf .SetDash (_fdce ...); +_ =_ddg ;_dd .Log .Debug ("\u004c\u0069n\u0065\u0020\u0064\u0061\u0073\u0068\u0020\u0070\u0068\u0061\u0073\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006frt\u0065\u0064");case "\u0072\u0069":_dd .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020i\u006e\u0074\u0065\u006e\u0074\u0020\u006eo\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064"); +case "\u0069":_dd .Log .Debug ("\u0046\u006c\u0061\u0074\u006e\u0065\u0073\u0073\u0020\u0074\u006f\u006c\u0065\u0072\u0061n\u0063e\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064");case "\u0067\u0073":if len (_bc .Params )!=1{return _afg ; +};_ggd ,_dba :=_de .GetName (_bc .Params [0]);if !_dba {return _ag ;};if _ggd ==nil {return _afg ;};_gcge ,_dba :=_egfe .GetExtGState (*_ggd );if !_dba {_dd .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006eo\u0074 \u0066i\u006ed\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u003a\u0020\u0025\u0073",*_ggd ); +return _b .New ("\u0072e\u0073o\u0075\u0072\u0063\u0065\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064");};_aeb ,_dba :=_de .GetDict (_gcge );if !_dba {_dd .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020c\u006f\u0075\u006c\u0064 ge\u0074 g\u0072\u0061\u0070\u0068\u0069\u0063\u0073 s\u0074\u0061\u0074\u0065\u0020\u0064\u0069c\u0074"); +return _ag ;};_dd .Log .Debug ("G\u0053\u0020\u0064\u0069\u0063\u0074\u003a\u0020\u0025\u0073",_aeb .String ());case "\u006d":if len (_bc .Params )!=2{_dd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006d\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0073\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_afg ); +return nil ;};_gfd ,_ac :=_de .GetNumbersAsFloat (_bc .Params );if _ac !=nil {return _ac ;};_dd .Log .Debug ("M\u006f\u0076\u0065\u0020\u0074\u006f\u003a\u0020\u0025\u0076",_gfd );_gf .NewSubPath ();_gf .MoveTo (_gfd [0],_gfd [1]);case "\u006c":if len (_bc .Params )!=2{_dd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006c\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0073\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_afg ); +return nil ;};_ffg ,_ega :=_de .GetNumbersAsFloat (_bc .Params );if _ega !=nil {return _ega ;};_gf .LineTo (_ffg [0],_ffg [1]);case "\u0063":if len (_bc .Params )!=6{return _afg ;};_acf ,_acd :=_de .GetNumbersAsFloat (_bc .Params );if _acd !=nil {return _acd ; +};_dd .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020\u0062\u0065\u007a\u0069\u0065\u0072\u0020p\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u002b\u0076",_acf );_gf .CubicTo (_acf [0],_acf [1],_acf [2],_acf [3],_acf [4],_acf [5]);case "\u0076","\u0079":if len (_bc .Params )!=4{return _afg ; +};_aba ,_ad :=_de .GetNumbersAsFloat (_bc .Params );if _ad !=nil {return _ad ;};_dd .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020\u0062\u0065\u007a\u0069\u0065\u0072\u0020p\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u002b\u0076",_aba );_gf .QuadraticTo (_aba [0],_aba [1],_aba [2],_aba [3]); +case "\u0068":_gf .ClosePath ();_gf .NewSubPath ();case "\u0072\u0065":if len (_bc .Params )!=4{return _afg ;};_ffc ,_ada :=_de .GetNumbersAsFloat (_bc .Params );if _ada !=nil {return _ada ;};_gf .DrawRectangle (_ffc [0],_ffc [1],_ffc [2],_ffc [3]);_gf .NewSubPath (); +case "\u0053":_dde ,_ddeb :=_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking );if _ddeb !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ddeb ); +return _ddeb ;};_cga ,_ebc :=_dde .(*_ed .PdfColorDeviceRGB );if !_ebc {_dd .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072");return _ddeb ;};_gf .SetRGBA (_cga .R (),_cga .G (),_cga .B (),1); +_gf .Stroke ();case "\u0073":_gff ,_cefb :=_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking );if _cefb !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_cefb ); +return _cefb ;};_bfg ,_afe :=_gff .(*_ed .PdfColorDeviceRGB );if !_afe {_dd .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072");return _cefb ;};_gf .ClosePath ();_gf .NewSubPath (); +_gf .SetRGBA (_bfg .R (),_bfg .G (),_bfg .B (),1);_gf .Stroke ();case "\u0066","\u0046":_gbe ,_fg :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking );if _fg !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fg ); +return _fg ;};switch _ede :=_gbe .(type ){case *_ed .PdfColorDeviceRGB :_gf .SetRGBA (_ede .R (),_ede .G (),_ede .B (),1);_gf .SetFillRule (_a .FillRuleWinding );_gf .Fill ();case *_ed .PdfColorPattern :_gf .Fill ();};_dd .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072"); +case "\u0066\u002a":_bbg ,_bea :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking );if _bea !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_bea ); +return _bea ;};_gffe ,_cbe :=_bbg .(*_ed .PdfColorDeviceRGB );if !_cbe {_dd .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072");return _bea ;};_gf .SetRGBA (_gffe .R (),_gffe .G (),_gffe .B (),1); +_gf .SetFillRule (_a .FillRuleEvenOdd );_gf .Fill ();case "\u0042":_bab ,_ebg :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking );if _ebg !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ebg ); +return _ebg ;};switch _afb :=_bab .(type ){case *_ed .PdfColorDeviceRGB :_gf .SetRGBA (_afb .R (),_afb .G (),_afb .B (),1);_gf .SetFillRule (_a .FillRuleWinding );_gf .FillPreserve ();_bab ,_ebg =_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking ); +if _ebg !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ebg );return _ebg ;};if _egfa ,_ceca :=_bab .(*_ed .PdfColorDeviceRGB ); +_ceca {_gf .SetRGBA (_egfa .R (),_egfa .G (),_egfa .B (),1);_gf .Stroke ();};case *_ed .PdfColorPattern :_gf .SetFillRule (_a .FillRuleWinding );_gf .Fill ();_gf .StrokePattern ();};case "\u0042\u002a":_fda ,_aebf :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking ); +if _aebf !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_aebf );return _aebf ;};switch _fef :=_fda .(type ){case *_ed .PdfColorDeviceRGB :_gf .SetRGBA (_fef .R (),_fef .G (),_fef .B (),1); +_gf .SetFillRule (_a .FillRuleEvenOdd );_gf .FillPreserve ();_fda ,_aebf =_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking );if _aebf !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_aebf ); +return _aebf ;};if _dad ,_eed :=_fda .(*_ed .PdfColorDeviceRGB );_eed {_gf .SetRGBA (_dad .R (),_dad .G (),_dad .B (),1);_gf .Stroke ();};case *_ed .PdfColorPattern :_gf .SetFillRule (_a .FillRuleEvenOdd );_gf .Fill ();_gf .StrokePattern ();};case "\u0062":_gf .ClosePath (); +_gca ,_ggc :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking );if _ggc !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ggc ); +return _ggc ;};switch _gbd :=_gca .(type ){case *_ed .PdfColorDeviceRGB :_gf .SetRGBA (_gbd .R (),_gbd .G (),_gbd .B (),1);_gf .NewSubPath ();_gf .SetFillRule (_a .FillRuleWinding );_gf .FillPreserve ();_gca ,_ggc =_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking ); +if _ggc !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ggc );return _ggc ;};if _gbea ,_dcc :=_gca .(*_ed .PdfColorDeviceRGB ); +_dcc {_gf .SetRGBA (_gbea .R (),_gbea .G (),_gbea .B (),1);_gf .Stroke ();};case *_ed .PdfColorPattern :_gf .NewSubPath ();_gf .SetFillRule (_a .FillRuleWinding );_gf .Fill ();_gf .StrokePattern ();};case "\u0062\u002a":_gf .ClosePath ();_eec ,_agae :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking ); +if _agae !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_agae );return _agae ;};switch _cfb :=_eec .(type ){case *_ed .PdfColorDeviceRGB :_gf .SetRGBA (_cfb .R (),_cfb .G (),_cfb .B (),1); +_gf .NewSubPath ();_gf .SetFillRule (_a .FillRuleEvenOdd );_gf .FillPreserve ();_eec ,_agae =_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking );if _agae !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_agae ); +return _agae ;};if _ggce ,_baa :=_eec .(*_ed .PdfColorDeviceRGB );_baa {_gf .SetRGBA (_ggce .R (),_ggce .G (),_ggce .B (),1);_gf .Stroke ();};case *_ed .PdfColorPattern :_gf .NewSubPath ();_gf .SetFillRule (_a .FillRuleEvenOdd );_gf .Fill ();_gf .StrokePattern (); +};case "\u006e":_gf .ClearPath ();case "\u0057":_gf .SetFillRule (_a .FillRuleWinding );_gf .ClipPreserve ();case "\u0057\u002a":_gf .SetFillRule (_a .FillRuleEvenOdd );_gf .ClipPreserve ();case "\u0072\u0067":_gdg ,_bfgf :=_gcg .ColorNonStroking .(*_ed .PdfColorDeviceRGB ); +if !_bfgf {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking );return nil ;};_gf .SetFillRGBA (_gdg .R (),_gdg .G (),_gdg .B (),1); +case "\u0052\u0047":_ffab ,_ebb :=_gcg .ColorStroking .(*_ed .PdfColorDeviceRGB );if !_ebb {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_gf .SetStrokeRGBA (_ffab .R (),_ffab .G (),_ffab .B (),1);case "\u006b":_fead ,_abe :=_gcg .ColorNonStroking .(*_ed .PdfColorDeviceCMYK );if !_abe {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking ); +return nil ;};_egfee ,_cbfb :=_gcg .ColorspaceNonStroking .ColorToRGB (_fead );if _cbfb !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking ); +return nil ;};_bfa ,_abe :=_egfee .(*_ed .PdfColorDeviceRGB );if !_abe {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_egfee );return nil ; +};_gf .SetFillRGBA (_bfa .R (),_bfa .G (),_bfa .B (),1);case "\u004b":_bfe ,_acdf :=_gcg .ColorStroking .(*_ed .PdfColorDeviceCMYK );if !_acdf {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_gfe ,_fc :=_gcg .ColorspaceStroking .ColorToRGB (_bfe );if _fc !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_fba ,_acdf :=_gfe .(*_ed .PdfColorDeviceRGB );if !_acdf {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gfe );return nil ; +};_gf .SetStrokeRGBA (_fba .R (),_fba .G (),_fba .B (),1);case "\u0067":_cbff ,_dbbe :=_gcg .ColorNonStroking .(*_ed .PdfColorDeviceGray );if !_dbbe {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking ); +return nil ;};_dga ,_dgcb :=_gcg .ColorspaceNonStroking .ColorToRGB (_cbff );if _dgcb !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking ); +return nil ;};_aebb ,_dbbe :=_dga .(*_ed .PdfColorDeviceRGB );if !_dbbe {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dga );return nil ; +};_gf .SetFillRGBA (_aebb .R (),_aebb .G (),_aebb .B (),1);case "\u0047":_aea ,_cbaf :=_gcg .ColorStroking .(*_ed .PdfColorDeviceGray );if !_cbaf {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_fcg ,_ffgc :=_gcg .ColorspaceStroking .ColorToRGB (_aea );if _ffgc !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_dfe ,_cbaf :=_fcg .(*_ed .PdfColorDeviceRGB );if !_cbaf {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fcg );return nil ; +};_gf .SetStrokeRGBA (_dfe .R (),_dfe .G (),_dfe .B (),1);case "\u0063\u0073":if len (_bc .Params )> 0{if _ccc ,_cfbc :=_de .GetName (_bc .Params [0]);_cfbc &&_ccc .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{break ;};};_fca ,_dgab :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking ); +if _dgab !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking );return nil ;};_bdd ,_ccfgc :=_fca .(*_ed .PdfColorDeviceRGB ); +if !_ccfgc {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fca );return nil ;};_gf .SetFillRGBA (_bdd .R (),_bdd .G (),_bdd .B (),1); +case "\u0073\u0063":_fdbe ,_gbb :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking );if _gbb !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking ); +return nil ;};_gad ,_dab :=_fdbe .(*_ed .PdfColorDeviceRGB );if !_dab {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fdbe );return nil ; +};_gf .SetFillRGBA (_gad .R (),_gad .G (),_gad .B (),1);case "\u0073\u0063\u006e":if len (_bc .Params )> 0&&len (_cfd .Params )> 0{if _eedb ,_cd :=_de .GetName (_cfd .Params [0]);_cd &&_eedb .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{if _cbce ,_fde :=_de .GetName (_bc .Params [0]); +_fde {_def ,_dgf :=_gc .processGradient (_gf ,_bc ,_egfe ,_cbce );if _dgf !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0065\u006e\u0020\u0070\u0072o\u0063\u0065\u0073\u0073\u0069\u006eg\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0064\u0061\u0074a\u003a\u0020\u0025\u0076",_dgf ); +break ;};if _def ==nil {_dd .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077n\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074");break ;};_gf .SetFillStyle (_def );_gf .SetStrokeStyle (_def );break ;};};};_gce ,_cbffd :=_gcg .ColorspaceNonStroking .ColorToRGB (_gcg .ColorNonStroking ); +if _cbffd !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorNonStroking );return nil ;};_acg ,_abaa :=_gce .(*_ed .PdfColorDeviceRGB ); +if !_abaa {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gce );return nil ;};_gf .SetFillRGBA (_acg .R (),_acg .G (),_acg .B (),1); +case "\u0043\u0053":if len (_bc .Params )> 0{if _dbd ,_eee :=_de .GetName (_bc .Params [0]);_eee &&_dbd .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{break ;};};_gga ,_ffe :=_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking );if _ffe !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_abd ,_aaf :=_gga .(*_ed .PdfColorDeviceRGB );if !_aaf {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gga );return nil ; +};_gf .SetStrokeRGBA (_abd .R (),_abd .G (),_abd .B (),1);case "\u0053\u0043":_baf ,_aca :=_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking );if _aca !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking ); +return nil ;};_afa ,_fffg :=_baf .(*_ed .PdfColorDeviceRGB );if !_fffg {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_baf );return nil ; +};_gf .SetStrokeRGBA (_afa .R (),_afa .G (),_afa .B (),1);case "\u0053\u0043\u004e":if len (_bc .Params )> 0&&len (_cfd .Params )> 0{if _fgd ,_cgec :=_de .GetName (_cfd .Params [0]);_cgec &&_fgd .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{if _egeb ,_egg :=_de .GetName (_bc .Params [0]); +_egg {_bbb ,_bfb :=_gc .processGradient (_gf ,_bc ,_egfe ,_egeb );if _bfb !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0065\u006e\u0020\u0070\u0072o\u0063\u0065\u0073\u0073\u0069\u006eg\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0064\u0061\u0074a\u003a\u0020\u0025\u0076",_bfb ); +break ;};if _bbb ==nil {_dd .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077n\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074");break ;};_gf .SetFillStyle (_bbb );_gf .SetStrokeStyle (_bbb );break ;};};};_ceb ,_egd :=_gcg .ColorspaceStroking .ColorToRGB (_gcg .ColorStroking ); +if _egd !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gcg .ColorStroking );return nil ;};_gcgd ,_adg :=_ceb .(*_ed .PdfColorDeviceRGB ); +if !_adg {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ceb );return nil ;};_gf .SetStrokeRGBA (_gcgd .R (),_gcgd .G (),_gcgd .B (),1); +case "\u0073\u0068":if len (_bc .Params )!=1{_dd .Log .Debug ("\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0068\u0020\u0070\u0061r\u0061\u006d\u0073\u0020\u0066\u006f\u0072\u006d\u0061\u0074");break ;};_gcf ,_cggd :=_de .GetName (_bc .Params [0]); +if !_cggd {_dd .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020g\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0073\u0068a\u0064\u0069\u006eg\u0020n\u0061\u006d\u0065");break ;};_cece ,_cggd :=_egfe .GetShadingByName (*_gcf );if !_cggd {_dd .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020g\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0073\u0068a\u0064\u0069\u006eg\u0020d\u0061\u0074\u0061"); +break ;};_gda ,_gaf ,_bfgfc :=_gc .processShading (_gf ,_cece );if _bfgfc !=nil {_dd .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0065\u006e\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0073\u0068a\u0064\u0069\u006e\u0067\u0020d\u0061\u0074a\u003a\u0020\u0025\u0076",_bfgfc ); +break ;};if _gda ==nil {_dd .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077n\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074");break ;};_gcef ,_bfgfc :=_gaf .ToFloat64Array ();if _bfgfc !=nil {_dd .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0073: \u0025\u0076",_bfgfc ); +break ;};_gf .DrawRectangle (_gcef [0],_gcef [1],_gcef [2],_gcef [3]);_gf .NewSubPath ();_gf .SetFillStyle (_gda );_gf .SetStrokeStyle (_gda );_gf .Fill ();case "\u0044\u006f":if len (_bc .Params )!=1{return _afg ;};_eecd ,_dbcb :=_de .GetName (_bc .Params [0]); +if !_dbcb {return _ag ;};_ ,_cbab :=_egfe .GetXObjectByName (*_eecd );switch _cbab {case _ed .XObjectTypeImage :_dd .Log .Debug ("\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u006d\u0061\u0067e\u003a\u0020\u0025\u0073",_eecd .String ());_gee ,_daf :=_egfe .GetXObjectImageByName (*_eecd ); +if _daf !=nil {return _daf ;};_cfa ,_daf :=_gee .ToImage ();if _daf !=nil {_dd .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_daf ); +return nil ;};if _egae :=_gee .ColorSpace ;_egae !=nil {var _ebca bool ;switch _egae .(type ){case *_ed .PdfColorspaceSpecialIndexed :_ebca =true ;};if _ebca {if _feef ,_bbf :=_egae .ImageToRGB (*_cfa );_bbf !=nil {_dd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0063\u006fnv\u0065r\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0074\u006f\u0020\u0052G\u0042\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020i\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +}else {_cfa =&_feef ;};};};_gceg :=_gf .FillPattern ().ColorAt (0,0);var _befc _db .Image ;if _gee .Mask !=nil {if _befc ,_daf =_bba (_gee .Mask ,_gceg );_daf !=nil {_dd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u0063\u006f\u0075\u006c\u0064 \u006eo\u0074\u0020\u0067\u0065\u0074\u0020\u0065\u0078\u0070\u006c\u0069\u0063\u0069\u0074\u0020\u0069\u006d\u0061\u0067e\u0020\u006d\u0061\u0073\u006b\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e"); +};}else if _gee .SMask !=nil {if _befc ,_daf =_abdg (_gee .SMask ,_gceg );_daf !=nil {_dd .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0066\u0074\u0020\u0069\u006da\u0067e\u0020\u006d\u0061\u0073k\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); +};};var _bda _db .Image ;if _cbeg ,_ :=_de .GetBoolVal (_gee .ImageMask );_cbeg {_bda =_cea (_cfa ,_gceg );}else {_bda ,_daf =_cfa .ToGoImage ();if _daf !=nil {_dd .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_daf ); +return nil ;};};if _befc !=nil {_bda =_cgba (_bda ,_befc );};_ddgd :=_bda .Bounds ();_gf .Push ();_gf .Scale (1.0/float64 (_ddgd .Dx ()),-1.0/float64 (_ddgd .Dy ()));_gf .DrawImageAnchored (_bda ,0,0,0,1);_gf .Pop ();case _ed .XObjectTypeForm :_dd .Log .Debug ("\u0058\u004fb\u006a\u0065\u0063t\u0020\u0066\u006f\u0072\u006d\u003a\u0020\u0025\u0073",_eecd .String ()); +_eeg ,_cbcd :=_egfe .GetXObjectFormByName (*_eecd );if _cbcd !=nil {return _cbcd ;};_bcff ,_cbcd :=_eeg .GetContentStream ();if _cbcd !=nil {return _cbcd ;};_ddd :=_eeg .Resources ;if _ddd ==nil {_ddd =_egfe ;};_gf .Push ();if _eeg .Matrix !=nil {_gef ,_fcf :=_de .GetArray (_eeg .Matrix ); +if !_fcf {return _ag ;};_aggf ,_bfeg :=_de .GetNumbersAsFloat (_gef .Elements ());if _bfeg !=nil {return _bfeg ;};if len (_aggf )!=6{return _afg ;};_bfeb :=_ba .NewMatrix (_aggf [0],_aggf [1],_aggf [2],_aggf [3],_aggf [4],_aggf [5]);_gf .SetMatrix (_gf .Matrix ().Mult (_bfeb )); +};if _eeg .BBox !=nil {_ca ,_ace :=_de .GetArray (_eeg .BBox );if !_ace {return _ag ;};_efa ,_cgge :=_de .GetNumbersAsFloat (_ca .Elements ());if _cgge !=nil {return _cgge ;};if len (_efa )!=4{_dd .Log .Debug ("\u004c\u0065\u006e\u0020\u003d\u0020\u0025\u0064",len (_efa )); +return _afg ;};_gf .DrawRectangle (_efa [0],_efa [1],_efa [2]-_efa [0],_efa [3]-_efa [1]);_gf .SetRGBA (1,0,0,1);_gf .Clip ();}else {_dd .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0052\u0065q\u0075\u0069\u0072e\u0064\u0020\u0042\u0042\u006f\u0078\u0020\u006d\u0069ss\u0069\u006e\u0067 \u006f\u006e \u0058\u004f\u0062\u006a\u0065\u0063t\u0020\u0046o\u0072\u006d"); +};_cbcd =_gc .renderContentStream (_gf ,string (_bcff ),_ddd );if _cbcd !=nil {return _cbcd ;};_gf .Pop ();};case "\u0042\u0049":if len (_bc .Params )!=1{return _afg ;};_afgd ,_gaa :=_bc .Params [0].(*_eg .ContentStreamInlineImage );if !_gaa {return nil ; +};_fcaf ,_ceg :=_afgd .ToImage (_egfe );if _ceg !=nil {_dd .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_ceg ); +return nil ;};_beb ,_ceg :=_fcaf .ToGoImage ();if _ceg !=nil {_dd .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_ceg ); +return nil ;};_aab :=_beb .Bounds ();_gf .Push ();_gf .Scale (1.0/float64 (_aab .Dx ()),-1.0/float64 (_aab .Dy ()));_gf .DrawImageAnchored (_beb ,0,0,0,1);_gf .Pop ();case "\u0042\u0054":_ge .Reset ();case "\u0045\u0054":_ge .Reset ();case "\u0054\u0072":if len (_bc .Params )!=1{return _afg ; +};_bdc ,_fbg :=_de .GetNumberAsFloat (_bc .Params [0]);if _fbg !=nil {return _fbg ;};_ge .Tr =_a .TextRenderingMode (_bdc );case "\u0054\u004c":if len (_bc .Params )!=1{return _afg ;};_fdd ,_bade :=_de .GetNumberAsFloat (_bc .Params [0]);if _bade !=nil {return _bade ; +};_ge .Tl =_fdd ;case "\u0054\u0063":if len (_bc .Params )!=1{return _afg ;};_bcd ,_bg :=_de .GetNumberAsFloat (_bc .Params [0]);if _bg !=nil {return _bg ;};_dd .Log .Debug ("\u0054\u0063\u003a\u0020\u0025\u0076",_bcd );_ge .Tc =_bcd ;case "\u0054\u0077":if len (_bc .Params )!=1{return _afg ; +};_dbde ,_fcd :=_de .GetNumberAsFloat (_bc .Params [0]);if _fcd !=nil {return _fcd ;};_dd .Log .Debug ("\u0054\u0077\u003a\u0020\u0025\u0076",_dbde );_ge .Tw =_dbde ;case "\u0054\u007a":if len (_bc .Params )!=1{return _afg ;};_bebc ,_gbgf :=_de .GetNumberAsFloat (_bc .Params [0]); +if _gbgf !=nil {return _gbgf ;};_ge .Th =_bebc ;case "\u0054\u0073":if len (_bc .Params )!=1{return _afg ;};_fdca ,_gfg :=_de .GetNumberAsFloat (_bc .Params [0]);if _gfg !=nil {return _gfg ;};_ge .Ts =_fdca ;case "\u0054\u0064":if len (_bc .Params )!=2{return _afg ; +};_afge ,_bce :=_de .GetNumbersAsFloat (_bc .Params );if _bce !=nil {return _bce ;};_dd .Log .Debug ("\u0054\u0064\u003a\u0020\u0025\u0076",_afge );_ge .ProcTd (_afge [0],_afge [1]);case "\u0054\u0044":if len (_bc .Params )!=2{return _afg ;};_cbb ,_abb :=_de .GetNumbersAsFloat (_bc .Params ); +if _abb !=nil {return _abb ;};_dd .Log .Debug ("\u0054\u0044\u003a\u0020\u0025\u0076",_cbb );_ge .ProcTD (_cbb [0],_cbb [1]);case "\u0054\u002a":_ge .ProcTStar ();case "\u0054\u006d":if len (_bc .Params )!=6{return _afg ;};_adaf ,_ddf :=_de .GetNumbersAsFloat (_bc .Params ); +if _ddf !=nil {return _ddf ;};_dd .Log .Debug ("\u0054\u0065x\u0074\u0020\u006da\u0074\u0072\u0069\u0078\u003a\u0020\u0025\u002b\u0076",_adaf );_ge .ProcTm (_adaf [0],_adaf [1],_adaf [2],_adaf [3],_adaf [4],_adaf [5]);case "\u0027":if len (_bc .Params )!=1{return _afg ; +};_bbd ,_fgg :=_de .GetStringBytes (_bc .Params [0]);if !_fgg {return _ag ;};_dd .Log .Debug ("\u0027\u0020\u0073t\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_bbd ));_ge .ProcQ (_bbd ,_gf );case "\u0022":if len (_bc .Params )!=3{return _afg ; +};_gcd ,_ec :=_de .GetNumberAsFloat (_bc .Params [0]);if _ec !=nil {return _ec ;};_bace ,_ec :=_de .GetNumberAsFloat (_bc .Params [1]);if _ec !=nil {return _ec ;};_edg ,_fbc :=_de .GetStringBytes (_bc .Params [2]);if !_fbc {return _ag ;};_ge .ProcDQ (_edg ,_gcd ,_bace ,_gf ); +case "\u0054\u006a":if len (_bc .Params )!=1{return _afg ;};_aff ,_ccgb :=_de .GetStringBytes (_bc .Params [0]);if !_ccgb {return _ag ;};_dd .Log .Debug ("\u0054j\u0020s\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0060\u0025\u0073\u0060",string (_aff )); +_ge .ProcTj (_aff ,_gf );case "\u0054\u004a":if len (_bc .Params )!=1{return _afg ;};_fece ,_dadb :=_de .GetArray (_bc .Params [0]);if !_dadb {_dd .Log .Debug ("\u0054\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_fece );return _ag ;};_dd .Log .Debug ("\u0054\u004a\u0020\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u002b\u0076",_fece ); +for _ ,_eag :=range _fece .Elements (){switch _agge :=_eag .(type ){case *_de .PdfObjectString :if _agge !=nil {_ge .ProcTj (_agge .Bytes (),_gf );};case *_de .PdfObjectFloat ,*_de .PdfObjectInteger :_cdg ,_edb :=_de .GetNumberAsFloat (_agge );if _edb ==nil {_ge .Translate (-_cdg *0.001*_ge .Tf .Size *_ge .Th /100.0,0); +};};};case "\u0054\u0066":if len (_bc .Params )!=2{return _afg ;};_dd .Log .Debug ("\u0025\u0023\u0076",_bc .Params );_eedg ,_ebbe :=_de .GetName (_bc .Params [0]);if !_ebbe ||_eedg ==nil {_dd .Log .Debug ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u006e\u0061m\u0065 \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_bc .Params [0]); +return _ag ;};_dd .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u006e\u0061\u006d\u0065\u003a\u0020\u0025\u0073",_eedg .String ());_acac ,_cbae :=_de .GetNumberAsFloat (_bc .Params [1]);if _cbae !=nil {_dd .Log .Debug ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0073\u0069z\u0065 \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_bc .Params [1]); +return _ag ;};_dd .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0073\u0069\u007a\u0065\u003a\u0020\u0025\u0076",_acac );_badg ,_dbeb :=_egfe .GetFontByName (*_eedg );if !_dbeb {_dd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u0025s\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",_eedg .String ()); +return _b .New ("\u0066\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};_dd .Log .Debug ("\u0046\u006f\u006e\u0074\u003a\u0020\u0025\u0054",_badg );_aabf ,_ebbe :=_de .GetDict (_badg );if !_ebbe {_dd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0067e\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074"); +return _ag ;};_fa ,_cbae :=_ed .NewPdfFontFromPdfObject (_aabf );if _cbae !=nil {_dd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006fn\u0074\u0020\u0066\u0072\u006fm\u0020\u006fb\u006a\u0065\u0063\u0074"); +return _cbae ;};_deed :=_fa .BaseFont ();if _deed ==""{_deed =_eedg .String ();};_cdgb ,_ebbe :=_gd [_deed ];if !_ebbe {_cdgb ,_cbae =_a .NewTextFont (_fa ,_acac );if _cbae !=nil {_dd .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_cbae ); +};};if _cdgb ==nil {if len (_deed )> 7&&_deed [6]=='+'{_deed =_deed [7:];};_bafg :=[]string {_deed ,"\u0054i\u006de\u0073\u0020\u004e\u0065\u0077\u0020\u0052\u006f\u006d\u0061\u006e","\u0041\u0072\u0069a\u006c","D\u0065\u006a\u0061\u0056\u0075\u0020\u0053\u0061\u006e\u0073"}; +for _ ,_bgf :=range _bafg {_dd .Log .Debug ("\u0044\u0045\u0042\u0055\u0047\u003a \u0073\u0065\u0061\u0072\u0063\u0068\u0069\u006e\u0067\u0020\u0073\u0079\u0073t\u0065\u006d\u0020\u0066\u006f\u006e\u0074 \u0060\u0025\u0073\u0060",_bgf );if _cdgb ,_ebbe =_gd [_bgf ]; +_ebbe {break ;};_gcec :=_bd .Match (_bgf );if _gcec ==nil {_dd .Log .Debug ("c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0066\u0069\u006e\u0064\u0020\u0066\u006fn\u0074\u0020\u0066i\u006ce\u0020\u0025\u0073",_bgf );continue ;};_cdgb ,_cbae =_a .NewTextFontFromPath (_gcec .Filename ,_acac ); +if _cbae !=nil {_dd .Log .Debug ("c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006fn\u0074\u0020\u0066i\u006ce\u0020\u0025\u0073",_gcec .Filename );continue ;};_dd .Log .Debug ("\u0053\u0075\u0062\u0073\u0074\u0069t\u0075\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0025\u0073 \u0077\u0069\u0074\u0068\u0020\u0025\u0073 \u0028\u0025\u0073\u0029",_deed ,_gcec .Name ,_gcec .Filename ); +_gd [_bgf ]=_cdgb ;break ;};};if _cdgb ==nil {_dd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020n\u006f\u0074\u0020\u0066\u0069\u006ed\u0020\u0061\u006e\u0079\u0020\u0073\u0075\u0069\u0074\u0061\u0062\u006c\u0065 \u0066\u006f\u006e\u0074"); +return _b .New ("\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0066\u0069\u006e\u0064\u0020a\u006ey\u0020\u0073\u0075\u0069\u0074\u0061\u0062\u006c\u0065\u0020\u0066\u006f\u006e\u0074");};_ge .ProcTf (_cdgb .WithSize (_acac ,_fa ));case "\u0042\u004d\u0043","\u0042\u0044\u0043":case "\u0045\u004d\u0043":default:_dd .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u006f\u0070\u0065\u0072\u0061\u006e\u0064\u003a\u0020\u0025\u0073",_bc .Operand ); +};_cfd =_bc ;return nil ;});_ccf =_ccg .Process (_ffaf );if _ccf !=nil {return _ccf ;};return nil ;}; // RenderToPath converts the specified PDF page into an image and saves the // result at the specified location. -func (_beg *ImageDevice )RenderToPath (page *_ab .PdfPage ,outputPath string )error {_fd ,_gcg :=_beg .Render (page );if _gcg !=nil {return _gcg ;};_ge :=_d .ToLower (_af .Ext (outputPath ));if _ge ==""{return _a .New ("\u0063\u006ful\u0064\u0020\u006eo\u0074\u0020\u0072\u0065cog\u006eiz\u0065\u0020\u006f\u0075\u0074\u0070\u0075t \u0066\u0069\u006c\u0065\u0020\u0074\u0079p\u0065"); -};switch _ge {case "\u002e\u0070\u006e\u0067":return _adfbc (outputPath ,_fd );case "\u002e\u006a\u0070\u0067","\u002e\u006a\u0070e\u0067":return _cdffc (outputPath ,_fd ,100);};return _be .Errorf ("\u0075\u006e\u0072\u0065\u0063\u006fg\u006e\u0069\u007a\u0065\u0064\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020f\u0069\u006c\u0065\u0020\u0074\u0079\u0070e\u003a\u0020\u0025\u0073",_ge ); +func (_fdc *ImageDevice )RenderToPath (page *_ed .PdfPage ,outputPath string )error {_dgc ,_ga :=_fdc .Render (page );if _ga !=nil {return _ga ;};_fdb :=_e .ToLower (_f .Ext (outputPath ));if _fdb ==""{return _b .New ("\u0063\u006ful\u0064\u0020\u006eo\u0074\u0020\u0072\u0065cog\u006eiz\u0065\u0020\u006f\u0075\u0074\u0070\u0075t \u0066\u0069\u006c\u0065\u0020\u0074\u0079p\u0065"); +};switch _fdb {case "\u002e\u0070\u006e\u0067":return _bcfb (outputPath ,_dgc );case "\u002e\u006a\u0070\u0067","\u002e\u006a\u0070e\u0067":return _ggdf (outputPath ,_dgc ,100);};return _cge .Errorf ("\u0075\u006e\u0072\u0065\u0063\u006fg\u006e\u0069\u007a\u0065\u0064\u0020\u006f\u0075\u0074\u0070\u0075\u0074\u0020f\u0069\u006c\u0065\u0020\u0074\u0079\u0070e\u003a\u0020\u0025\u0073",_fdb ); +};func _bcfb (_gde string ,_gbc _db .Image )error {_ecf ,_ebbd :=_cb .Create (_gde );if _ebbd !=nil {return _ebbd ;};defer _ecf .Close ();return _cg .Encode (_ecf ,_gbc );};func _cgba (_fbf ,_eedd _db .Image )_db .Image {_bec ,_aabff :=_eedd .Bounds ().Size (),_fbf .Bounds ().Size (); +_cag ,_bcfe :=_bec .X ,_bec .Y ;if _aabff .X > _cag {_cag =_aabff .X ;};if _aabff .Y > _bcfe {_bcfe =_aabff .Y ;};_efaa :=_db .Rect (0,0,_cag ,_bcfe );if _bec .X !=_cag ||_bec .Y !=_bcfe {_cggb :=_db .NewRGBA (_efaa );_eb .BiLinear .Scale (_cggb ,_efaa ,_fbf ,_eedd .Bounds (),_eb .Over ,nil ); +_eedd =_cggb ;};if _aabff .X !=_cag ||_aabff .Y !=_bcfe {_ddgb :=_db .NewRGBA (_efaa );_eb .BiLinear .Scale (_ddgb ,_efaa ,_fbf ,_fbf .Bounds (),_eb .Over ,nil );_fbf =_ddgb ;};_daa :=_db .NewRGBA (_efaa );_eb .DrawMask (_daa ,_efaa ,_fbf ,_db .Point {},_eedd ,_db .Point {},_eb .Over ); +return _daa ;};func _ggdf (_ecee string ,_gdgg _db .Image ,_gae int )error {_dgb ,_fdg :=_cb .Create (_ecee );if _fdg !=nil {return _fdg ;};defer _dgb .Close ();return _ced .Encode (_dgb ,_gdgg ,&_ced .Options {Quality :_gae });};func _cea (_bbbc *_ed .Image ,_cfec _ea .Color )_db .Image {_bgfaa ,_gdd :=int (_bbbc .Width ),int (_bbbc .Height ); +_cbafb :=_db .NewRGBA (_db .Rect (0,0,_bgfaa ,_gdd ));for _efda :=0;_efda < _gdd ;_efda ++{for _fdcg :=0;_fdcg < _bgfaa ;_fdcg ++{_befb ,_cgfg :=_bbbc .ColorAt (_fdcg ,_efda );if _cgfg !=nil {_dd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_fdcg ,_efda ); +continue ;};_dgfg ,_defa ,_gaef ,_ :=_befb .RGBA ();var _daea _ea .Color ;if _dgfg +_defa +_gaef ==0{_daea =_cfec ;}else {_daea =_ea .Transparent ;};_cbafb .Set (_fdcg ,_efda ,_daea );};};return _cbafb ;};func (_dffe renderer )processRadialShading (_bgec _a .Context ,_cbg *_ed .PdfShading )(_a .Gradient ,*_de .PdfObjectArray ,error ){_gcc :=_cbg .GetContext ().(*_ed .PdfShadingType3 ); +if len (_gcc .Function )==0{return nil ,nil ,_b .New ("\u006e\u006f\u0020\u0067\u0072\u0061\u0064i\u0065\u006e\u0074 \u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0020\u0066\u006f\u0075\u006e\u0064\u002c\u0020\u0073\u006b\u0069\u0070\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); +};_efg ,_cac :=_gcc .Coords .ToFloat64Array ();if _cac !=nil {return nil ,nil ,_b .New ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0067e\u0074\u0074\u0069\u006e\u0067\u0020\u0073h\u0061\u0064\u0069\u006e\u0067\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e"); +};_cae :=_cbg .ColorSpace ;_deea :=_de .MakeArrayFromFloats ([]float64 {0,0,1,1});var _eddb ,_cfbf ,_cfbd ,_eace ,_gdb ,_efc float64 ;_eddb ,_cfbf =_bgec .Matrix ().Transform (_efg [0],_efg [1]);_cfbd ,_eace =_bgec .Matrix ().Transform (_efg [3],_efg [4]); +_gdb ,_ =_bgec .Matrix ().Transform (_efg [2],0);_efc ,_ =_bgec .Matrix ().Transform (_efg [5],0);_cdge ,_ :=_bgec .Matrix ().Translation ();_gdb -=_cdge ;_efc -=_cdge ;for _cbcda ,_ccd :=range _efg {if _cbcda ==2||_cbcda ==5{continue ;};if _ccd > 1.0{_eda :=_d .Min (_eddb -_gdb ,_cfbd -_efc ); +_fgba :=_d .Min (_cfbf -_gdb ,_eace -_efc );_abef :=_d .Max (_eddb +_gdb ,_cfbd +_efc );_gebd :=_d .Max (_cfbf +_gdb ,_eace +_efc );_dfc :=_abef -_eda ;_fag :=_fgba -_gebd ;_deea =_de .MakeArrayFromFloats ([]float64 {_eda ,_fgba ,_dfc ,_fag });break ;}; +};_dfb :=_g .NewRadialGradient (_eddb ,_cfbf ,_gdb ,_cfbd ,_eace ,_efc );if _cee ,_bcbb :=_gcc .Function [0].(*_ed .PdfFunctionType2 );_bcbb {_dfb ,_cac =_eaag (_dfb ,_cee ,_cae ,1.0,true );}else if _ebd ,_cacf :=_gcc .Function [0].(*_ed .PdfFunctionType3 ); +_cacf {_bgfa :=append ([]float64 {0},_ebd .Bounds ...);_bgfa =append (_bgfa ,1.0);_dfb ,_cac =_deeg (_dfb ,_ebd ,_cae ,_bgfa );};if _cac !=nil {return nil ,nil ,_cac ;};return _dfb ,_deea ,nil ;};var (_ag =_b .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072"); +_afg =_b .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"););func _cecb (_cefbf *_ed .Image ,_gddg _ea .Color )_db .Image {_eff ,_gdeb :=int (_cefbf .Width ),int (_cefbf .Height );_gaeb :=_db .NewRGBA (_db .Rect (0,0,_eff ,_gdeb )); +for _acdd :=0;_acdd < _gdeb ;_acdd ++{for _egga :=0;_egga < _eff ;_egga ++{_gdc ,_acgd :=_cefbf .ColorAt (_egga ,_acdd );if _acgd !=nil {_dd .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_egga ,_acdd ); +continue ;};_gged ,_cdf ,_dcce ,_ :=_gdc .RGBA ();var _fgeg _ea .Color ;if _gged +_cdf +_dcce ==0{_fgeg =_ea .Transparent ;}else {_fgeg =_gddg ;};_gaeb .Set (_egga ,_acdd ,_fgeg );};};return _gaeb ;};const (ShadingTypeFunctionBased PdfShadingType =1;ShadingTypeAxial PdfShadingType =2; +ShadingTypeRadial PdfShadingType =3;ShadingTypeFreeForm PdfShadingType =4;ShadingTypeLatticeForm PdfShadingType =5;ShadingTypeCoons PdfShadingType =6;ShadingTypeTensorProduct PdfShadingType =7;);func _bba (_adab _de .PdfObject ,_gbaf _ea .Color )(_db .Image ,error ){_fac ,_cbgg :=_de .GetStream (_adab ); +if !_cbgg {return nil ,nil ;};_gab ,_edcg :=_ed .NewXObjectImageFromStream (_fac );if _edcg !=nil {return nil ,_edcg ;};_dbbc ,_edcg :=_gab .ToImage ();if _edcg !=nil {return nil ,_edcg ;};return _cea (_dbbc ,_gbaf ),nil ;};type renderer struct{_fee float64 }; +func _eaag (_edf _a .Gradient ,_gfde *_ed .PdfFunctionType2 ,_gcb _ed .PdfColorspace ,_fdcf float64 ,_dfbe bool )(_a .Gradient ,error ){switch _gcb .(type ){case *_ed .PdfColorspaceDeviceRGB :if len (_gfde .C0 )!=3||len (_gfde .C1 )!=3{return nil ,_b .New ("\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u0020\u0052\u0047\u0042\u0020\u0063o\u006co\u0072\u0020\u0061\u0072\u0072\u0061\u0079\u0020\u006c\u0065\u006e\u0067\u0074\u0068"); +};_cggc :=_gfde .C0 ;_cfe :=_gfde .C1 ;if _dfbe {_edf .AddColorStop (0.0,_ea .RGBA {R :uint8 (_cggc [0]*255),G :uint8 (_cggc [1]*255),B :uint8 (_cggc [2]*255),A :255});};_edf .AddColorStop (_fdcf ,_ea .RGBA {R :uint8 (_cfe [0]*255),G :uint8 (_cfe [1]*255),B :uint8 (_cfe [2]*255),A :255}); +case *_ed .PdfColorspaceDeviceCMYK :if len (_gfde .C0 )!=4||len (_gfde .C1 )!=4{return nil ,_b .New ("\u0069\u006e\u0063\u006f\u0072\u0072e\u0063\u0074\u0020\u0043\u004d\u0059\u004b\u0020\u0063\u006f\u006c\u006f\u0072 \u0061\u0072\u0072\u0061\u0079\u0020\u006ce\u006e\u0067\u0074\u0068"); +};_dec :=_gfde .C0 ;_afea :=_gfde .C1 ;if _dfbe {_edf .AddColorStop (0.0,_ea .CMYK {C :uint8 (_dec [0]*255),M :uint8 (_dec [1]*255),Y :uint8 (_dec [2]*255),K :uint8 (_dec [3]*255)});};_edf .AddColorStop (_fdcf ,_ea .CMYK {C :uint8 (_afea [0]*255),M :uint8 (_afea [1]*255),Y :uint8 (_afea [2]*255),K :uint8 (_afea [3]*255)}); +default:return nil ,_cge .Errorf ("u\u006e\u0073\u0075\u0070\u0070\u006fr\u0074\u0065\u0064\u0020\u0063\u006f\u006c\u006f\u0072 \u0073\u0070\u0061c\u0065:\u0020\u0025\u0073",_gcb .String ());};return _edf ,nil ;};func _abdg (_ebbdg _de .PdfObject ,_fbcb _ea .Color )(_db .Image ,error ){_gdebf ,_aebe :=_de .GetStream (_ebbdg ); +if !_aebe {return nil ,nil ;};_cdda ,_cad :=_ed .NewXObjectImageFromStream (_gdebf );if _cad !=nil {return nil ,_cad ;};_eded ,_cad :=_cdda .ToImage ();if _cad !=nil {return nil ,_cad ;};return _cecb (_eded ,_fbcb ),nil ;};func (_aad renderer )processShading (_dfa _a .Context ,_dgg *_ed .PdfShading )(_a .Gradient ,*_de .PdfObjectArray ,error ){_dfac :=int64 (*_dgg .ShadingType ); +if _dfac ==int64 (ShadingTypeAxial ){return _aad .processLinearShading (_dfa ,_dgg );}else if _dfac ==int64 (ShadingTypeRadial ){return _aad .processRadialShading (_dfa ,_dgg );}else {_dd .Log .Debug (_cge .Sprintf ("\u0050r\u006f\u0063e\u0073\u0073\u0069n\u0067\u0020\u0067\u0072\u0061\u0064\u0069e\u006e\u0074\u0020\u0074\u0079\u0070e\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074 \u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064",_dfac )); +};return nil ,nil ,nil ;};func (_ecg renderer )processGradient (_fgb _a .Context ,_fggc *_eg .ContentStreamOperation ,_bcb *_ed .PdfPageResources ,_dfg *_de .PdfObjectName )(_a .Gradient ,error ){if _egc ,_bcc :=_bcb .GetPatternByName (*_dfg );_bcc &&_egc .IsShading (){_dffc :=_egc .GetAsShadingPattern ().Shading ; +_geb ,_ ,_gffea :=_ecg .processShading (_fgb ,_dffc );if _gffea !=nil {return nil ,_gffea ;};return _geb ,nil ;};return nil ,nil ;};func (_ege renderer )renderPage (_aga _a .Context ,_gbg *_ed .PdfPage ,_cec _ba .Matrix ,_cba bool )error {if !_cba {_gg :=_ed .FieldFlattenOpts {AnnotFilterFunc :func (_bad *_ed .PdfAnnotation )bool {switch _bad .GetContext ().(type ){case *_ed .PdfAnnotationLine :return true ; +case *_ed .PdfAnnotationSquare :return true ;case *_ed .PdfAnnotationCircle :return true ;case *_ed .PdfAnnotationPolygon :return true ;case *_ed .PdfAnnotationPolyLine :return true ;};return false ;}};_dbe :=_dee .FieldAppearance {};_dae :=_gbg .FlattenFieldsWithOpts (_dbe ,&_gg ); +if _dae !=nil {_dd .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0064u\u0072\u0069n\u0067\u0020\u0061\u006e\u006e\u006f\u0074\u0061t\u0069\u006f\u006e\u0020\u0066\u006c\u0061\u0074\u0074\u0065\u006e\u0069n\u0067\u0020\u0025\u0076",_dae );};};_dgd ,_egf :=_gbg .GetAllContentStreams (); +if _egf !=nil {return _egf ;};if _dda :=_cec ;!_dda .Identity (){_dgd =_cge .Sprintf ("%\u002e\u0032\u0066\u0020\u0025\u002e2\u0066\u0020\u0025\u002e\u0032\u0066 \u0025\u002e\u0032\u0066\u0020\u0025\u002e2\u0066\u0020\u0025\u002e\u0032\u0066\u0020\u0063\u006d\u0020%\u0073",_dda [0],_dda [1],_dda [3],_dda [4],_dda [6],_dda [7],_dgd ); +};_aga .Translate (0,float64 (_aga .Height ()));_aga .Scale (1,-1);_aga .Push ();_aga .SetRGBA (1,1,1,1);_aga .DrawRectangle (0,0,float64 (_aga .Width ()),float64 (_aga .Height ()));_aga .Fill ();_aga .Pop ();_aga .SetLineWidth (1.0);_aga .SetRGBA (0,0,0,1); +return _ege .renderContentStream (_aga ,_dgd ,_gbg .Resources );};func _fgef (_ccdc ,_fecb ,_adc float64 )_be .BoundingBox {return _be .Path {Points :[]_be .Point {_be .NewPoint (0,0).Rotate (_adc ),_be .NewPoint (_ccdc ,0).Rotate (_adc ),_be .NewPoint (0,_fecb ).Rotate (_adc ),_be .NewPoint (_ccdc ,_fecb ).Rotate (_adc )}}.GetBoundingBox (); }; -// PdfShadingType defines PDF shading types. -// Source: PDF32000_2008.pdf. Chapter 8.7.4.5 -type PdfShadingType int64 ;func _fag (_fdge _fc .PdfObject ,_fadc _bb .Color )(_gb .Image ,error ){_fbg ,_age :=_fc .GetStream (_fdge );if !_age {return nil ,nil ;};_edfe ,_ffdda :=_ab .NewXObjectImageFromStream (_fbg );if _ffdda !=nil {return nil ,_ffdda ; -};_acac ,_ffdda :=_edfe .ToImage ();if _ffdda !=nil {return nil ,_ffdda ;};return _gbfd (_acac ,_fadc ),nil ;};func (_dga renderer )processLinearShading (_ceef _cb .Context ,_daa *_ab .PdfShading )(_cb .Gradient ,*_fc .PdfObjectArray ,error ){_ddbc :=_daa .GetContext ().(*_ab .PdfShadingType2 ); -if len (_ddbc .Function )==0{return nil ,nil ,_a .New ("\u006e\u006f\u0020\u0067\u0072\u0061\u0064i\u0065\u006e\u0074 \u0066\u0075\u006e\u0063t\u0069\u006f\u006e\u0020\u0066\u006f\u0075\u006e\u0064\u002c\u0020\u0073\u006b\u0069\u0070\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e"); -};_eda ,_bcfg :=_ddbc .Coords .ToFloat64Array ();if _bcfg !=nil {return nil ,nil ,_a .New ("\u0066\u0061\u0069l\u0065\u0064\u0020\u0067e\u0074\u0074\u0069\u006e\u0067\u0020\u0073h\u0061\u0064\u0069\u006e\u0067\u0020\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e"); -};_eabb :=_daa .ColorSpace ;_gebf ,_abbbg :=_ceef .Matrix ().Transform (_eda [0],_eda [1]);_debab ,_cfge :=_ceef .Matrix ().Transform (_eda [2],_eda [3]);_fea :=_beb .NewLinearGradient (_gebf ,_abbbg ,_debab ,_cfge );_dbgc :=_fc .MakeArrayFromFloats ([]float64 {0,0,1,1}); -for _ ,_aafc :=range _eda {if _aafc > 1{_dbgc =_ddbc .Coords ;break ;};};if _deac ,_cagg :=_ddbc .Function [0].(*_ab .PdfFunctionType2 );_cagg {_fea ,_bcfg =_cecd (_fea ,_deac ,_eabb ,1.0,true );}else if _bdg ,_gccb :=_ddbc .Function [0].(*_ab .PdfFunctionType3 ); -_gccb {_ebe :=append ([]float64 {0},_bdg .Bounds ...);_ebe =append (_ebe ,1.0);_fea ,_bcfg =_gfae (_fea ,_bdg ,_eabb ,_ebe );};return _fea ,_dbgc ,_bcfg ;};func _adfbc (_dacb string ,_fgcc _gb .Image )error {_gcef ,_abae :=_gf .Create (_dacb );if _abae !=nil {return _abae ; -};defer _gcef .Close ();return _b .Encode (_gcef ,_fgcc );};func (_bgd renderer )renderPage (_eaa _cb .Context ,_de *_ab .PdfPage ,_ga _ca .Matrix ,_ee bool )error {if !_ee {_ace :=_ab .FieldFlattenOpts {AnnotFilterFunc :func (_gfa *_ab .PdfAnnotation )bool {switch _gfa .GetContext ().(type ){case *_ab .PdfAnnotationLine :return true ; -case *_ab .PdfAnnotationSquare :return true ;case *_ab .PdfAnnotationCircle :return true ;case *_ab .PdfAnnotationPolygon :return true ;case *_ab .PdfAnnotationPolyLine :return true ;};return false ;}};_dcc :=_gg .FieldAppearance {};_ae :=_de .FlattenFieldsWithOpts (_dcc ,&_ace ); -if _ae !=nil {_e .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0064u\u0072\u0069n\u0067\u0020\u0061\u006e\u006e\u006f\u0074\u0061t\u0069\u006f\u006e\u0020\u0066\u006c\u0061\u0074\u0074\u0065\u006e\u0069n\u0067\u0020\u0025\u0076",_ae );};};_gce ,_aaf :=_de .GetAllContentStreams (); -if _aaf !=nil {return _aaf ;};if _cc :=_ga ;!_cc .Identity (){_gce =_be .Sprintf ("%\u002e\u0032\u0066\u0020\u0025\u002e2\u0066\u0020\u0025\u002e\u0032\u0066 \u0025\u002e\u0032\u0066\u0020\u0025\u002e2\u0066\u0020\u0025\u002e\u0032\u0066\u0020\u0063\u006d\u0020%\u0073",_cc [0],_cc [1],_cc [3],_cc [4],_cc [6],_cc [7],_gce ); -};_eaa .Translate (0,float64 (_eaa .Height ()));_eaa .Scale (1,-1);_eaa .Push ();_eaa .SetRGBA (1,1,1,1);_eaa .DrawRectangle (0,0,float64 (_eaa .Width ()),float64 (_eaa .Height ()));_eaa .Fill ();_eaa .Pop ();_eaa .SetLineWidth (1.0);_eaa .SetRGBA (0,0,0,1); -return _bgd .renderContentStream (_eaa ,_gce ,_de .Resources );};func (_fed renderer )renderContentStream (_bef _cb .Context ,_fef string ,_eaag *_ab .PdfPageResources )error {_cgd ,_bf :=_df .NewContentStreamParser (_fef ).Parse ();if _bf !=nil {return _bf ; -};_faa :=_bef .TextState ();_faa .GlobalScale =_fed ._dg ;_gff :=map[string ]*_cb .TextFont {};_dcg :=_da .NewFinder (&_da .FinderOpts {Extensions :[]string {"\u002e\u0074\u0074\u0066","\u002e\u0074\u0074\u0063"}});var _fdf *_df .ContentStreamOperation ; -_cbf :=_df .NewContentStreamProcessor (*_cgd );_cbf .AddHandler (_df .HandlerConditionEnumAllOperands ,"",func (_dac *_df .ContentStreamOperation ,_dfc _df .GraphicsState ,_edb *_ab .PdfPageResources )error {_e .Log .Debug ("\u0050\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0025\u0073",_dac .Operand ); -switch _dac .Operand {case "\u0071":_bef .Push ();case "\u0051":_bef .Pop ();_faa =_bef .TextState ();case "\u0063\u006d":if len (_dac .Params )!=6{return _ed ;};_ccb ,_ade :=_fc .GetNumbersAsFloat (_dac .Params );if _ade !=nil {return _ade ;};_gdd :=_ca .NewMatrix (_ccb [0],_ccb [1],_ccb [2],_ccb [3],_ccb [4],_ccb [5]); -_e .Log .Debug ("\u0047\u0072\u0061\u0070\u0068\u0069\u0063\u0073\u0020\u0073\u0074a\u0074\u0065\u0020\u006d\u0061\u0074\u0072\u0069\u0078\u003a \u0025\u002b\u0076",_gdd );_bef .SetMatrix (_bef .Matrix ().Mult (_gdd ));case "\u0077":if len (_dac .Params )!=1{return _ed ; -};_aca ,_ffd :=_fc .GetNumbersAsFloat (_dac .Params );if _ffd !=nil {return _ffd ;};_bef .SetLineWidth (_aca [0]);case "\u004a":if len (_dac .Params )!=1{return _ed ;};_gda ,_ada :=_fc .GetIntVal (_dac .Params [0]);if !_ada {return _ac ;};switch _gda {case 0:_bef .SetLineCap (_cb .LineCapButt ); -case 1:_bef .SetLineCap (_cb .LineCapRound );case 2:_bef .SetLineCap (_cb .LineCapSquare );default:_e .Log .Debug ("\u0049\u006e\u0076\u0061\u006c\u0069\u0064\u0020\u006c\u0069\u006ee\u0020\u0063\u0061\u0070\u0020\u0073\u0074\u0079\u006c\u0065:\u0020\u0025\u0064",_gda ); -return _ed ;};case "\u006a":if len (_dac .Params )!=1{return _ed ;};_aee ,_bd :=_fc .GetIntVal (_dac .Params [0]);if !_bd {return _ac ;};switch _aee {case 0:_bef .SetLineJoin (_cb .LineJoinBevel );case 1:_bef .SetLineJoin (_cb .LineJoinRound );case 2:_bef .SetLineJoin (_cb .LineJoinBevel ); -default:_e .Log .Debug ("I\u006e\u0076\u0061\u006c\u0069\u0064 \u006c\u0069\u006e\u0065\u0020\u006a\u006f\u0069\u006e \u0073\u0074\u0079l\u0065:\u0020\u0025\u0064",_aee );return _ed ;};case "\u004d":if len (_dac .Params )!=1{return _ed ;};_bgg ,_bdc :=_fc .GetNumbersAsFloat (_dac .Params ); -if _bdc !=nil {return _bdc ;};_ =_bgg ;_e .Log .Debug ("\u004di\u0074\u0065\u0072\u0020l\u0069\u006d\u0069\u0074\u0020n\u006ft\u0020s\u0075\u0070\u0070\u006f\u0072\u0074\u0065d");case "\u0064":if len (_dac .Params )!=2{return _ed ;};_dea ,_deb :=_fc .GetArray (_dac .Params [0]); -if !_deb {return _ac ;};_def ,_deb :=_fc .GetIntVal (_dac .Params [1]);if !_deb {_ ,_dce :=_fc .GetFloatVal (_dac .Params [1]);if !_dce {return _ac ;};};_ffg ,_ec :=_fc .GetNumbersAsFloat (_dea .Elements ());if _ec !=nil {return _ec ;};_bef .SetDash (_ffg ...); -_ =_def ;_e .Log .Debug ("\u004c\u0069n\u0065\u0020\u0064\u0061\u0073\u0068\u0020\u0070\u0068\u0061\u0073\u0065\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006frt\u0065\u0064");case "\u0072\u0069":_e .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020i\u006e\u0074\u0065\u006e\u0074\u0020\u006eo\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064"); -case "\u0069":_e .Log .Debug ("\u0046\u006c\u0061\u0074\u006e\u0065\u0073\u0073\u0020\u0074\u006f\u006c\u0065\u0072\u0061n\u0063e\u0020\u006e\u006f\u0074\u0020\u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064");case "\u0067\u0073":if len (_dac .Params )!=1{return _ed ; -};_ba ,_gca :=_fc .GetName (_dac .Params [0]);if !_gca {return _ac ;};if _ba ==nil {return _ed ;};_eac ,_gca :=_edb .GetExtGState (*_ba );if !_gca {_e .Log .Debug ("\u0045\u0052\u0052OR\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006eo\u0074 \u0066i\u006ed\u0020\u0072\u0065\u0073\u006f\u0075\u0072\u0063\u0065\u003a\u0020\u0025\u0073",*_ba ); -return _a .New ("\u0072e\u0073o\u0075\u0072\u0063\u0065\u0020n\u006f\u0074 \u0066\u006f\u0075\u006e\u0064");};_acea ,_gca :=_fc .GetDict (_eac );if !_gca {_e .Log .Debug ("\u0045\u0052RO\u0052\u003a\u0020c\u006f\u0075\u006c\u0064 ge\u0074 g\u0072\u0061\u0070\u0068\u0069\u0063\u0073 s\u0074\u0061\u0074\u0065\u0020\u0064\u0069c\u0074"); -return _ac ;};_e .Log .Debug ("G\u0053\u0020\u0064\u0069\u0063\u0074\u003a\u0020\u0025\u0073",_acea .String ());case "\u006d":if len (_dac .Params )!=2{_e .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006d\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0073\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_ed ); -return nil ;};_fg ,_ddfd :=_fc .GetNumbersAsFloat (_dac .Params );if _ddfd !=nil {return _ddfd ;};_e .Log .Debug ("M\u006f\u0076\u0065\u0020\u0074\u006f\u003a\u0020\u0025\u0076",_fg );_bef .NewSubPath ();_bef .MoveTo (_fg [0],_fg [1]);case "\u006c":if len (_dac .Params )!=2{_e .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0065\u0072\u0072o\u0072\u0020\u0077\u0068\u0069\u006c\u0065\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0060\u006c\u0060\u0020o\u0070\u0065r\u0061\u0074o\u0072\u003a\u0020\u0025\u0073\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074 m\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e",_ed ); -return nil ;};_bad ,_db :=_fc .GetNumbersAsFloat (_dac .Params );if _db !=nil {return _db ;};_bef .LineTo (_bad [0],_bad [1]);case "\u0063":if len (_dac .Params )!=6{return _ed ;};_eeb ,_acag :=_fc .GetNumbersAsFloat (_dac .Params );if _acag !=nil {return _acag ; -};_e .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020\u0062\u0065\u007a\u0069\u0065\u0072\u0020p\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u002b\u0076",_eeb );_bef .CubicTo (_eeb [0],_eeb [1],_eeb [2],_eeb [3],_eeb [4],_eeb [5]);case "\u0076","\u0079":if len (_dac .Params )!=4{return _ed ; -};_deba ,_dca :=_fc .GetNumbersAsFloat (_dac .Params );if _dca !=nil {return _dca ;};_e .Log .Debug ("\u0043u\u0062\u0069\u0063\u0020\u0062\u0065\u007a\u0069\u0065\u0072\u0020p\u0061\u0072\u0061\u006d\u0073\u003a\u0020\u0025\u002b\u0076",_deba );_bef .QuadraticTo (_deba [0],_deba [1],_deba [2],_deba [3]); -case "\u0068":_bef .ClosePath ();_bef .NewSubPath ();case "\u0072\u0065":if len (_dac .Params )!=4{return _ed ;};_ceg ,_debg :=_fc .GetNumbersAsFloat (_dac .Params );if _debg !=nil {return _debg ;};_bef .DrawRectangle (_ceg [0],_ceg [1],_ceg [2],_ceg [3]); -_bef .NewSubPath ();case "\u0053":_fad ,_fb :=_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking );if _fb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fb ); -return _fb ;};_bc ,_cef :=_fad .(*_ab .PdfColorDeviceRGB );if !_cef {_e .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072");return _fb ;};_bef .SetRGBA (_bc .R (),_bc .G (),_bc .B (),1); -_bef .Stroke ();case "\u0073":_ebf ,_fde :=_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking );if _fde !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fde ); -return _fde ;};_ebb ,_agb :=_ebf .(*_ab .PdfColorDeviceRGB );if !_agb {_e .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072");return _fde ;};_bef .ClosePath ();_bef .NewSubPath (); -_bef .SetRGBA (_ebb .R (),_ebb .G (),_ebb .B (),1);_bef .Stroke ();case "\u0066","\u0046":_eab ,_ebfc :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking );if _ebfc !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ebfc ); -return _ebfc ;};switch _edd :=_eab .(type ){case *_ab .PdfColorDeviceRGB :_bef .SetRGBA (_edd .R (),_edd .G (),_edd .B (),1);_bef .SetFillRule (_cb .FillRuleWinding );_bef .Fill ();case *_ab .PdfColorPattern :_bef .Fill ();};_e .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072"); -case "\u0066\u002a":_cfc ,_caa :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking );if _caa !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_caa ); -return _caa ;};_edf ,_bgc :=_cfc .(*_ab .PdfColorDeviceRGB );if !_bgc {_e .Log .Debug ("\u0045\u0072\u0072\u006fr \u0063\u006f\u006e\u0076\u0065\u0072\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006co\u0072");return _caa ;};_bef .SetRGBA (_edf .R (),_edf .G (),_edf .B (),1); -_bef .SetFillRule (_cb .FillRuleEvenOdd );_bef .Fill ();case "\u0042":_aae ,_cca :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking );if _cca !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_cca ); -return _cca ;};switch _fgb :=_aae .(type ){case *_ab .PdfColorDeviceRGB :_bef .SetRGBA (_fgb .R (),_fgb .G (),_fgb .B (),1);_bef .SetFillRule (_cb .FillRuleWinding );_bef .FillPreserve ();_aae ,_cca =_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking ); -if _cca !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_cca );return _cca ;};if _cbe ,_dgd :=_aae .(*_ab .PdfColorDeviceRGB );_dgd {_bef .SetRGBA (_cbe .R (),_cbe .G (),_cbe .B (),1); -_bef .Stroke ();};case *_ab .PdfColorPattern :_bef .SetFillRule (_cb .FillRuleWinding );_bef .Fill ();_bef .StrokePattern ();};case "\u0042\u002a":_egb ,_abb :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking );if _abb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_abb ); -return _abb ;};switch _fdd :=_egb .(type ){case *_ab .PdfColorDeviceRGB :_bef .SetRGBA (_fdd .R (),_fdd .G (),_fdd .B (),1);_bef .SetFillRule (_cb .FillRuleEvenOdd );_bef .FillPreserve ();_egb ,_abb =_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking ); -if _abb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_abb );return _abb ;};if _afd ,_fdb :=_egb .(*_ab .PdfColorDeviceRGB );_fdb {_bef .SetRGBA (_afd .R (),_afd .G (),_afd .B (),1); -_bef .Stroke ();};case *_ab .PdfColorPattern :_bef .SetFillRule (_cb .FillRuleEvenOdd );_bef .Fill ();_bef .StrokePattern ();};case "\u0062":_bef .ClosePath ();_ebfe ,_cefb :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking );if _cefb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_cefb ); -return _cefb ;};switch _adf :=_ebfe .(type ){case *_ab .PdfColorDeviceRGB :_bef .SetRGBA (_adf .R (),_adf .G (),_adf .B (),1);_bef .NewSubPath ();_bef .SetFillRule (_cb .FillRuleWinding );_bef .FillPreserve ();_ebfe ,_cefb =_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking ); -if _cefb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_cefb );return _cefb ;};if _abe ,_gbg :=_ebfe .(*_ab .PdfColorDeviceRGB ); -_gbg {_bef .SetRGBA (_abe .R (),_abe .G (),_abe .B (),1);_bef .Stroke ();};case *_ab .PdfColorPattern :_bef .NewSubPath ();_bef .SetFillRule (_cb .FillRuleWinding );_bef .Fill ();_bef .StrokePattern ();};case "\u0062\u002a":_bef .ClosePath ();_gef ,_gefa :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking ); -if _gefa !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gefa );return _gefa ;};switch _bbb :=_gef .(type ){case *_ab .PdfColorDeviceRGB :_bef .SetRGBA (_bbb .R (),_bbb .G (),_bbb .B (),1); -_bef .NewSubPath ();_bef .SetFillRule (_cb .FillRuleEvenOdd );_bef .FillPreserve ();_gef ,_gefa =_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking );if _gefa !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_gefa ); -return _gefa ;};if _caf ,_cbg :=_gef .(*_ab .PdfColorDeviceRGB );_cbg {_bef .SetRGBA (_caf .R (),_caf .G (),_caf .B (),1);_bef .Stroke ();};case *_ab .PdfColorPattern :_bef .NewSubPath ();_bef .SetFillRule (_cb .FillRuleEvenOdd );_bef .Fill ();_bef .StrokePattern (); -};case "\u006e":_bef .ClearPath ();case "\u0057":_bef .SetFillRule (_cb .FillRuleWinding );_bef .ClipPreserve ();case "\u0057\u002a":_bef .SetFillRule (_cb .FillRuleEvenOdd );_bef .ClipPreserve ();case "\u0072\u0067":_fbd ,_cdgd :=_dfc .ColorNonStroking .(*_ab .PdfColorDeviceRGB ); -if !_cdgd {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking );return nil ;};_bef .SetFillRGBA (_fbd .R (),_fbd .G (),_fbd .B (),1); -case "\u0052\u0047":_fge ,_fce :=_dfc .ColorStroking .(*_ab .PdfColorDeviceRGB );if !_fce {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_bef .SetStrokeRGBA (_fge .R (),_fge .G (),_fge .B (),1);case "\u006b":_adef ,_ebd :=_dfc .ColorNonStroking .(*_ab .PdfColorDeviceCMYK );if !_ebd {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking ); -return nil ;};_cfb ,_fdfb :=_dfc .ColorspaceNonStroking .ColorToRGB (_adef );if _fdfb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking ); -return nil ;};_fgc ,_ebd :=_cfb .(*_ab .PdfColorDeviceRGB );if !_ebd {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_cfb );return nil ; -};_bef .SetFillRGBA (_fgc .R (),_fgc .G (),_fgc .B (),1);case "\u004b":_dgb ,_dcf :=_dfc .ColorStroking .(*_ab .PdfColorDeviceCMYK );if !_dcf {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_ccd ,_aef :=_dfc .ColorspaceStroking .ColorToRGB (_dgb );if _aef !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_cdc ,_dcf :=_ccd .(*_ab .PdfColorDeviceRGB );if !_dcf {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ccd );return nil ; -};_bef .SetStrokeRGBA (_cdc .R (),_cdc .G (),_cdc .B (),1);case "\u0067":_feb ,_cgde :=_dfc .ColorNonStroking .(*_ab .PdfColorDeviceGray );if !_cgde {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking ); -return nil ;};_bbd ,_gfaf :=_dfc .ColorspaceNonStroking .ColorToRGB (_feb );if _gfaf !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking ); -return nil ;};_ddb ,_cgde :=_bbd .(*_ab .PdfColorDeviceRGB );if !_cgde {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_bbd );return nil ; -};_bef .SetFillRGBA (_ddb .R (),_ddb .G (),_ddb .B (),1);case "\u0047":_ef ,_gfe :=_dfc .ColorStroking .(*_ab .PdfColorDeviceGray );if !_gfe {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_bgcb ,_adfg :=_dfc .ColorspaceStroking .ColorToRGB (_ef );if _adfg !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_cce ,_gfe :=_bgcb .(*_ab .PdfColorDeviceRGB );if !_gfe {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_bgcb );return nil ; -};_bef .SetStrokeRGBA (_cce .R (),_cce .G (),_cce .B (),1);case "\u0063\u0073":if len (_dac .Params )> 0{if _ffb ,_efc :=_fc .GetName (_dac .Params [0]);_efc &&_ffb .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{break ;};};_geb ,_acf :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking ); -if _acf !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking );return nil ;};_fcec ,_gddd :=_geb .(*_ab .PdfColorDeviceRGB ); -if !_gddd {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_geb );return nil ;};_bef .SetFillRGBA (_fcec .R (),_fcec .G (),_fcec .B (),1); -case "\u0073\u0063":_bgb ,_gfg :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking );if _gfg !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking ); -return nil ;};_bcd ,_bae :=_bgb .(*_ab .PdfColorDeviceRGB );if !_bae {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_bgb );return nil ; -};_bef .SetFillRGBA (_bcd .R (),_bcd .G (),_bcd .B (),1);case "\u0073\u0063\u006e":if len (_dac .Params )> 0&&len (_fdf .Params )> 0{if _dcgb ,_eeg :=_fc .GetName (_fdf .Params [0]);_eeg &&_dcgb .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{if _ged ,_efg :=_fc .GetName (_dac .Params [0]); -_efg {_bgf ,_ffa :=_fed .processGradient (_bef ,_dac ,_edb ,_ged );if _ffa !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0065\u006e\u0020\u0070\u0072o\u0063\u0065\u0073\u0073\u0069\u006eg\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0064\u0061\u0074a\u003a\u0020\u0025\u0076",_ffa ); -break ;};if _bgf ==nil {_e .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077n\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074");break ;};_bef .SetFillStyle (_bgf );_bef .SetStrokeStyle (_bgf );break ;};};};_edbg ,_gfbf :=_dfc .ColorspaceNonStroking .ColorToRGB (_dfc .ColorNonStroking ); -if _gfbf !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorNonStroking );return nil ;};_gbc ,_fab :=_edbg .(*_ab .PdfColorDeviceRGB ); -if !_fab {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_edbg );return nil ;};_bef .SetFillRGBA (_gbc .R (),_gbc .G (),_gbc .B (),1); -case "\u0043\u0053":if len (_dac .Params )> 0{if _gaf ,_acfb :=_fc .GetName (_dac .Params [0]);_acfb &&_gaf .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{break ;};};_fga ,_caff :=_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking );if _caff !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_fabd ,_ddd :=_fga .(*_ab .PdfColorDeviceRGB );if !_ddd {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fga );return nil ; -};_bef .SetStrokeRGBA (_fabd .R (),_fabd .G (),_fabd .B (),1);case "\u0053\u0043":_ccac ,_egg :=_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking );if _egg !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking ); -return nil ;};_ggcg ,_faad :=_ccac .(*_ab .PdfColorDeviceRGB );if !_faad {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_ccac );return nil ; -};_bef .SetStrokeRGBA (_ggcg .R (),_ggcg .G (),_ggcg .B (),1);case "\u0053\u0043\u004e":if len (_dac .Params )> 0&&len (_fdf .Params )> 0{if _dbd ,_dee :=_fc .GetName (_fdf .Params [0]);_dee &&_dbd .String ()=="\u0050a\u0074\u0074\u0065\u0072\u006e"{if _cfd ,_bba :=_fc .GetName (_dac .Params [0]); -_bba {_aaa ,_ccbb :=_fed .processGradient (_bef ,_dac ,_edb ,_cfd );if _ccbb !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0065\u006e\u0020\u0070\u0072o\u0063\u0065\u0073\u0073\u0069\u006eg\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074\u0020\u0064\u0061\u0074a\u003a\u0020\u0025\u0076",_ccbb ); -break ;};if _aaa ==nil {_e .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077n\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074");break ;};_bef .SetFillStyle (_aaa );_bef .SetStrokeStyle (_aaa );break ;};};};_fca ,_cfg :=_dfc .ColorspaceStroking .ColorToRGB (_dfc .ColorStroking ); -if _cfg !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_dfc .ColorStroking );return nil ;};_dgf ,_ecg :=_fca .(*_ab .PdfColorDeviceRGB ); -if !_ecg {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0063\u006f\u006e\u0076\u0065r\u0074\u0069\u006e\u0067\u0020\u0063\u006f\u006c\u006f\u0072:\u0020\u0025\u0076",_fca );return nil ;};_bef .SetStrokeRGBA (_dgf .R (),_dgf .G (),_dgf .B (),1); -case "\u0073\u0068":if len (_dac .Params )!=1{_e .Log .Debug ("\u0049n\u0076\u0061\u006c\u0069\u0064\u0020\u0073\u0068\u0020\u0070\u0061r\u0061\u006d\u0073\u0020\u0066\u006f\u0072\u006d\u0061\u0074");break ;};_gbfc ,_cga :=_fc .GetName (_dac .Params [0]); -if !_cga {_e .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020g\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0073\u0068a\u0064\u0069\u006eg\u0020n\u0061\u006d\u0065");break ;};_ffe ,_cga :=_edb .GetShadingByName (*_gbfc );if !_cga {_e .Log .Debug ("F\u0061\u0069\u006c\u0065\u0064\u0020g\u0065\u0074\u0074\u0069\u006e\u0067\u0020\u0073\u0068a\u0064\u0069\u006eg\u0020d\u0061\u0074\u0061"); -break ;};_fdef ,_gcc ,_cced :=_fed .processShading (_bef ,_ffe );if _cced !=nil {_e .Log .Debug ("\u0045\u0072\u0072\u006f\u0072\u0020\u0077\u0068\u0065\u006e\u0020\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069\u006e\u0067\u0020\u0073\u0068a\u0064\u0069\u006e\u0067\u0020d\u0061\u0074a\u003a\u0020\u0025\u0076",_cced ); -break ;};if _fdef ==nil {_e .Log .Debug ("\u0055\u006ek\u006e\u006f\u0077n\u0020\u0067\u0072\u0061\u0064\u0069\u0065\u006e\u0074");break ;};_dcfb ,_cced :=_gcc .ToFloat64Array ();if _cced !=nil {_e .Log .Debug ("\u0045\u0072r\u006f\u0072\u0020\u0070\u0061\u0072\u0073\u0069\u006e\u0067\u0020\u0063\u006f\u006f\u0072\u0064\u0069\u006e\u0061\u0074\u0065\u0073: \u0025\u0076",_cced ); -break ;};_bef .DrawRectangle (_dcfb [0],_dcfb [1],_dcfb [2],_dcfb [3]);_bef .NewSubPath ();_bef .SetFillStyle (_fdef );_bef .SetStrokeStyle (_fdef );_bef .Fill ();case "\u0044\u006f":if len (_dac .Params )!=1{return _ed ;};_fgae ,_bca :=_fc .GetName (_dac .Params [0]); -if !_bca {return _ac ;};_ ,_ecb :=_edb .GetXObjectByName (*_fgae );switch _ecb {case _ab .XObjectTypeImage :_e .Log .Debug ("\u0058\u004f\u0062\u006a\u0065\u0063\u0074\u0020\u0069\u006d\u0061\u0067e\u003a\u0020\u0025\u0073",_fgae .String ());_afec ,_gfab :=_edb .GetXObjectImageByName (*_fgae ); -if _gfab !=nil {return _gfab ;};_cdf ,_gfab :=_afec .ToImage ();if _gfab !=nil {_e .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_gfab ); -return nil ;};if _acc :=_afec .ColorSpace ;_acc !=nil {var _gfaff bool ;switch _acc .(type ){case *_ab .PdfColorspaceSpecialIndexed :_gfaff =true ;};if _gfaff {if _cba ,_febc :=_acc .ImageToRGB (*_cdf );_febc !=nil {_e .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0063\u006fnv\u0065r\u0074\u0020\u0069\u006d\u0061\u0067\u0065\u0020\u0074\u006f\u0020\u0052G\u0042\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020i\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -}else {_cdf =&_cba ;};};};_cbgf :=_bef .FillPattern ().ColorAt (0,0);var _gcd _gb .Image ;if _afec .Mask !=nil {if _gcd ,_gfab =_cab (_afec .Mask ,_cbgf );_gfab !=nil {_e .Log .Debug ("\u0057\u0041\u0052\u004e\u003a \u0063\u006f\u0075\u006c\u0064 \u006eo\u0074\u0020\u0067\u0065\u0074\u0020\u0065\u0078\u0070\u006c\u0069\u0063\u0069\u0074\u0020\u0069\u006d\u0061\u0067e\u0020\u006d\u0061\u0073\u006b\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063o\u0072\u0072\u0065\u0063\u0074\u002e"); -};}else if _afec .SMask !=nil {if _gcd ,_gfab =_fag (_afec .SMask ,_cbgf );_gfab !=nil {_e .Log .Debug ("W\u0041\u0052\u004e\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0067\u0065\u0074\u0020\u0073\u006f\u0066\u0074\u0020\u0069\u006da\u0067e\u0020\u006d\u0061\u0073k\u002e\u0020O\u0075\u0074\u0070\u0075\u0074\u0020\u006d\u0061\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063\u0074\u002e"); -};};var _gaa _gb .Image ;if _cffd ,_ :=_fc .GetBoolVal (_afec .ImageMask );_cffd {_gaa =_cea (_cdf ,_cbgf );}else {_gaa ,_gfab =_cdf .ToGoImage ();if _gfab !=nil {_e .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_gfab ); -return nil ;};};if _gcd !=nil {_gaa =_gfcd (_gaa ,_gcd );};_cad :=_gaa .Bounds ();_bef .Push ();_bef .Scale (1.0/float64 (_cad .Dx ()),-1.0/float64 (_cad .Dy ()));_bef .DrawImageAnchored (_gaa ,0,0,0,1);_bef .Pop ();case _ab .XObjectTypeForm :_e .Log .Debug ("\u0058\u004fb\u006a\u0065\u0063t\u0020\u0066\u006f\u0072\u006d\u003a\u0020\u0025\u0073",_fgae .String ()); -_aaab ,_abc :=_edb .GetXObjectFormByName (*_fgae );if _abc !=nil {return _abc ;};_bab ,_abc :=_aaab .GetContentStream ();if _abc !=nil {return _abc ;};_agf :=_aaab .Resources ;if _agf ==nil {_agf =_edb ;};_bef .Push ();if _aaab .Matrix !=nil {_efa ,_bce :=_fc .GetArray (_aaab .Matrix ); -if !_bce {return _ac ;};_abd ,_gee :=_fc .GetNumbersAsFloat (_efa .Elements ());if _gee !=nil {return _gee ;};if len (_abd )!=6{return _ed ;};_ffdd :=_ca .NewMatrix (_abd [0],_abd [1],_abd [2],_abd [3],_abd [4],_abd [5]);_bef .SetMatrix (_bef .Matrix ().Mult (_ffdd )); -};if _aaab .BBox !=nil {_dbc ,_aeg :=_fc .GetArray (_aaab .BBox );if !_aeg {return _ac ;};_edbe ,_dad :=_fc .GetNumbersAsFloat (_dbc .Elements ());if _dad !=nil {return _dad ;};if len (_edbe )!=4{_e .Log .Debug ("\u004c\u0065\u006e\u0020\u003d\u0020\u0025\u0064",len (_edbe )); -return _ed ;};_bef .DrawRectangle (_edbe [0],_edbe [1],_edbe [2]-_edbe [0],_edbe [3]-_edbe [1]);_bef .SetRGBA (1,0,0,1);_bef .Clip ();}else {_e .Log .Debug ("\u0045R\u0052\u004fR\u003a\u0020\u0052\u0065q\u0075\u0069\u0072e\u0064\u0020\u0042\u0042\u006f\u0078\u0020\u006d\u0069ss\u0069\u006e\u0067 \u006f\u006e \u0058\u004f\u0062\u006a\u0065\u0063t\u0020\u0046o\u0072\u006d"); -};_abc =_fed .renderContentStream (_bef ,string (_bab ),_agf );if _abc !=nil {return _abc ;};_bef .Pop ();};case "\u0042\u0049":if len (_dac .Params )!=1{return _ed ;};_bac ,_gfeb :=_dac .Params [0].(*_df .ContentStreamInlineImage );if !_gfeb {return nil ; -};_aec ,_fdff :=_bac .ToImage (_edb );if _fdff !=nil {_e .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_fdff ); -return nil ;};_ebc ,_fdff :=_aec .ToGoImage ();if _fdff !=nil {_e .Log .Debug ("\u0052\u0065\u006e\u0064\u0065\u0072\u0069\u006e\u0067\u0020\u0072\u0065\u0073\u0075\u006c\u0074\u0020\u006day\u0020b\u0065\u0020\u0069\u006e\u0063\u006f\u006d\u0070\u006c\u0065\u0074\u0065.\u0020\u0049\u006d\u0061\u0067\u0065\u0020\u0063\u006f\u006e\u0076\u0065\u0072\u0073\u0069\u006f\u006e \u0065\u0072\u0072\u006f\u0072\u003a\u0020\u0025\u0076",_fdff ); -return nil ;};_gdg :=_ebc .Bounds ();_bef .Push ();_bef .Scale (1.0/float64 (_gdg .Dx ()),-1.0/float64 (_gdg .Dy ()));_bef .DrawImageAnchored (_ebc ,0,0,0,1);_bef .Pop ();case "\u0042\u0054":_faa .Reset ();case "\u0045\u0054":_faa .Reset ();case "\u0054\u0072":if len (_dac .Params )!=1{return _ed ; -};_cee ,_fgd :=_fc .GetNumberAsFloat (_dac .Params [0]);if _fgd !=nil {return _fgd ;};_faa .Tr =_cb .TextRenderingMode (_cee );case "\u0054\u004c":if len (_dac .Params )!=1{return _ed ;};_bfd ,_cgf :=_fc .GetNumberAsFloat (_dac .Params [0]);if _cgf !=nil {return _cgf ; -};_faa .Tl =_bfd ;case "\u0054\u0063":if len (_dac .Params )!=1{return _ed ;};_dab ,_fae :=_fc .GetNumberAsFloat (_dac .Params [0]);if _fae !=nil {return _fae ;};_e .Log .Debug ("\u0054\u0063\u003a\u0020\u0025\u0076",_dab );_faa .Tc =_dab ;case "\u0054\u0077":if len (_dac .Params )!=1{return _ed ; -};_gga ,_gac :=_fc .GetNumberAsFloat (_dac .Params [0]);if _gac !=nil {return _gac ;};_e .Log .Debug ("\u0054\u0077\u003a\u0020\u0025\u0076",_gga );_faa .Tw =_gga ;case "\u0054\u007a":if len (_dac .Params )!=1{return _ed ;};_aaea ,_cac :=_fc .GetNumberAsFloat (_dac .Params [0]); -if _cac !=nil {return _cac ;};_faa .Th =_aaea ;case "\u0054\u0073":if len (_dac .Params )!=1{return _ed ;};_ggb ,_bcac :=_fc .GetNumberAsFloat (_dac .Params [0]);if _bcac !=nil {return _bcac ;};_faa .Ts =_ggb ;case "\u0054\u0064":if len (_dac .Params )!=2{return _ed ; -};_cag ,_aff :=_fc .GetNumbersAsFloat (_dac .Params );if _aff !=nil {return _aff ;};_e .Log .Debug ("\u0054\u0064\u003a\u0020\u0025\u0076",_cag );_faa .ProcTd (_cag [0],_cag [1]);case "\u0054\u0044":if len (_dac .Params )!=2{return _ed ;};_bcdd ,_deg :=_fc .GetNumbersAsFloat (_dac .Params ); -if _deg !=nil {return _deg ;};_e .Log .Debug ("\u0054\u0044\u003a\u0020\u0025\u0076",_bcdd );_faa .ProcTD (_bcdd [0],_bcdd [1]);case "\u0054\u002a":_faa .ProcTStar ();case "\u0054\u006d":if len (_dac .Params )!=6{return _ed ;};_bcf ,_faag :=_fc .GetNumbersAsFloat (_dac .Params ); -if _faag !=nil {return _faag ;};_e .Log .Debug ("\u0054\u0065x\u0074\u0020\u006da\u0074\u0072\u0069\u0078\u003a\u0020\u0025\u002b\u0076",_bcf );_faa .ProcTm (_bcf [0],_bcf [1],_bcf [2],_bcf [3],_bcf [4],_bcf [5]);case "\u0027":if len (_dac .Params )!=1{return _ed ; -};_abf ,_ecgg :=_fc .GetStringBytes (_dac .Params [0]);if !_ecgg {return _ac ;};_e .Log .Debug ("\u0027\u0020\u0073t\u0072\u0069\u006e\u0067\u003a\u0020\u0025\u0073",string (_abf ));_faa .ProcQ (_abf ,_bef );case "\u0022":if len (_dac .Params )!=3{return _ed ; -};_faf ,_feba :=_fc .GetNumberAsFloat (_dac .Params [0]);if _feba !=nil {return _feba ;};_ege ,_feba :=_fc .GetNumberAsFloat (_dac .Params [1]);if _feba !=nil {return _feba ;};_eae ,_agd :=_fc .GetStringBytes (_dac .Params [2]);if !_agd {return _ac ;}; -_faa .ProcDQ (_eae ,_faf ,_ege ,_bef );case "\u0054\u006a":if len (_dac .Params )!=1{return _ed ;};_fda ,_edfd :=_fc .GetStringBytes (_dac .Params [0]);if !_edfd {return _ac ;};_e .Log .Debug ("\u0054j\u0020s\u0074\u0072\u0069\u006e\u0067\u003a\u0020\u0060\u0025\u0073\u0060",string (_fda )); -_faa .ProcTj (_fda ,_bef );case "\u0054\u004a":if len (_dac .Params )!=1{return _ed ;};_caeb ,_gdge :=_fc .GetArray (_dac .Params [0]);if !_gdge {_e .Log .Debug ("\u0054\u0079\u0070\u0065\u003a\u0020\u0025\u0054",_caeb );return _ac ;};_e .Log .Debug ("\u0054\u004a\u0020\u0061\u0072\u0072\u0061\u0079\u003a\u0020\u0025\u002b\u0076",_caeb ); -for _ ,_fcg :=range _caeb .Elements (){switch _adfa :=_fcg .(type ){case *_fc .PdfObjectString :if _adfa !=nil {_faa .ProcTj (_adfa .Bytes (),_bef );};case *_fc .PdfObjectFloat ,*_fc .PdfObjectInteger :_agbf ,_dbg :=_fc .GetNumberAsFloat (_adfa );if _dbg ==nil {_faa .Translate (-_agbf *0.001*_faa .Tf .Size *_faa .Th /100.0,0); -};};};case "\u0054\u0066":if len (_dac .Params )!=2{return _ed ;};_e .Log .Debug ("\u0025\u0023\u0076",_dac .Params );_dag ,_cbd :=_fc .GetName (_dac .Params [0]);if !_cbd ||_dag ==nil {_e .Log .Debug ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u006e\u0061m\u0065 \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_dac .Params [0]); -return _ac ;};_e .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u006e\u0061\u006d\u0065\u003a\u0020\u0025\u0073",_dag .String ());_cefbc ,_becc :=_fc .GetNumberAsFloat (_dac .Params [1]);if _becc !=nil {_e .Log .Debug ("\u0069\u006e\u0076\u0061l\u0069\u0064\u0020\u0066\u006f\u006e\u0074\u0020\u0073\u0069z\u0065 \u006f\u0062\u006a\u0065\u0063\u0074\u003a \u0025\u0076",_dac .Params [1]); -return _ac ;};_e .Log .Debug ("\u0046\u006f\u006e\u0074\u0020\u0073\u0069\u007a\u0065\u003a\u0020\u0025\u0076",_cefbc );_efgb ,_fcf :=_edb .GetFontByName (*_dag );if !_fcf {_e .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0046\u006f\u006e\u0074\u0020\u0025s\u0020\u006e\u006f\u0074\u0020\u0066\u006f\u0075\u006e\u0064",_dag .String ()); -return _a .New ("\u0066\u006f\u006e\u0074\u0020\u006e\u006f\u0074\u0020f\u006f\u0075\u006e\u0064");};_e .Log .Debug ("\u0046\u006f\u006e\u0074\u003a\u0020\u0025\u0054",_efgb );_dagd ,_cbd :=_fc .GetDict (_efgb );if !_cbd {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075l\u0064\u0020\u006e\u006f\u0074\u0020\u0067e\u0074\u0020\u0066\u006f\u006e\u0074\u0020\u0064\u0069\u0063\u0074"); -return _ac ;};_abbb ,_becc :=_ab .NewPdfFontFromPdfObject (_dagd );if _becc !=nil {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006fn\u0074\u0020\u0066\u0072\u006fm\u0020\u006fb\u006a\u0065\u0063\u0074"); -return _becc ;};_acb :=_abbb .BaseFont ();if _acb ==""{_acb =_dag .String ();};_cfba ,_cbd :=_gff [_acb ];if !_cbd {_cfba ,_becc =_cb .NewTextFont (_abbb ,_cefbc );if _becc !=nil {_e .Log .Debug ("\u0045R\u0052\u004f\u0052\u003a\u0020\u0025v",_becc );}; -};if _cfba ==nil {if len (_acb )> 7&&_acb [6]=='+'{_acb =_acb [7:];};_baf :=[]string {_acb ,"\u0054i\u006de\u0073\u0020\u004e\u0065\u0077\u0020\u0052\u006f\u006d\u0061\u006e","\u0041\u0072\u0069a\u006c","D\u0065\u006a\u0061\u0056\u0075\u0020\u0053\u0061\u006e\u0073"}; -for _ ,_bbdd :=range _baf {_e .Log .Debug ("\u0044\u0045\u0042\u0055\u0047\u003a \u0073\u0065\u0061\u0072\u0063\u0068\u0069\u006e\u0067\u0020\u0073\u0079\u0073t\u0065\u006d\u0020\u0066\u006f\u006e\u0074 \u0060\u0025\u0073\u0060",_bbdd );if _cfba ,_cbd =_gff [_bbdd ]; -_cbd {break ;};_gge :=_dcg .Match (_bbdd );if _gge ==nil {_e .Log .Debug ("c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u0066\u0069\u006e\u0064\u0020\u0066\u006fn\u0074\u0020\u0066i\u006ce\u0020\u0025\u0073",_bbdd );continue ;};_cfba ,_becc =_cb .NewTextFontFromPath (_gge .Filename ,_cefbc ); -if _becc !=nil {_e .Log .Debug ("c\u006f\u0075\u006c\u0064\u0020\u006eo\u0074\u0020\u006c\u006f\u0061\u0064\u0020\u0066\u006fn\u0074\u0020\u0066i\u006ce\u0020\u0025\u0073",_gge .Filename );continue ;};_e .Log .Debug ("\u0053\u0075\u0062\u0073\u0074\u0069t\u0075\u0074\u0069\u006e\u0067\u0020\u0066\u006f\u006e\u0074\u0020\u0025\u0073 \u0077\u0069\u0074\u0068\u0020\u0025\u0073 \u0028\u0025\u0073\u0029",_acb ,_gge .Name ,_gge .Filename ); -_gff [_bbdd ]=_cfba ;break ;};};if _cfba ==nil {_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0063\u006f\u0075\u006c\u0064\u0020n\u006f\u0074\u0020\u0066\u0069\u006ed\u0020\u0061\u006e\u0079\u0020\u0073\u0075\u0069\u0074\u0061\u0062\u006c\u0065 \u0066\u006f\u006e\u0074"); -return _a .New ("\u0063\u006f\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0066\u0069\u006e\u0064\u0020a\u006ey\u0020\u0073\u0075\u0069\u0074\u0061\u0062\u006c\u0065\u0020\u0066\u006f\u006e\u0074");};_faa .ProcTf (_cfba .WithSize (_cefbc ,_abbb )); -case "\u0042\u004d\u0043","\u0042\u0044\u0043":case "\u0045\u004d\u0043":default:_e .Log .Debug ("\u0045\u0052\u0052\u004f\u0052\u003a\u0020\u0075\u006e\u0073u\u0070\u0070\u006f\u0072\u0074\u0065\u0064 \u006f\u0070\u0065\u0072\u0061\u006e\u0064\u003a\u0020\u0025\u0073",_dac .Operand ); -};_fdf =_dac ;return nil ;});_bf =_cbf .Process (_eaag );if _bf !=nil {return _bf ;};return nil ;}; - -// RenderWithOpts converts the specified PDF page into an image, optionally flattens annotations and returns the result. -func (_bec *ImageDevice )RenderWithOpts (page *_ab .PdfPage ,skipFlattening bool )(_gb .Image ,error ){_gc ,_bg :=page .GetMediaBox ();if _bg !=nil {return nil ,_bg ;};_gc .Normalize ();_becb :=page .CropBox ;var _cd ,_ag float64 ;if _becb !=nil {_becb .Normalize (); -_cd ,_ag =_becb .Width (),_becb .Height ();};_gfb :=page .Rotate ;_dd ,_cdg ,_fa ,_eb :=_gc .Llx ,_gc .Lly ,_gc .Width (),_gc .Height ();_ggc :=_ca .IdentityMatrix ();if _gfb !=nil &&*_gfb %360!=0&&*_gfb %90==0{_gd :=-float64 (*_gfb );_gfc :=_fdgd (_fa ,_eb ,_gd ); -_ggc =_ggc .Translate ((_gfc .Width -_fa )/2+_fa /2,(_gfc .Height -_eb )/2+_eb /2).Rotate (_gd *_c .Pi /180).Translate (-_fa /2,-_eb /2);_fa ,_eb =_gfc .Width ,_gfc .Height ;if _becb !=nil {_cae :=_fdgd (_cd ,_ag ,_gd );_cd ,_ag =_cae .Width ,_cae .Height ; -};};if _dd !=0||_cdg !=0{_ggc =_ggc .Translate (-_dd ,-_cdg );};_bec ._dg =1.0;if _bec .OutputWidth !=0{_gbf :=_fa ;if _becb !=nil {_gbf =_cd ;};_bec ._dg =float64 (_bec .OutputWidth )/_gbf ;_fa ,_eb ,_cd ,_ag =_fa *_bec ._dg ,_eb *_bec ._dg ,_cd *_bec ._dg ,_ag *_bec ._dg ; -_ggc =_ca .ScaleMatrix (_bec ._dg ,_bec ._dg ).Mult (_ggc );};_dc :=_beb .NewContext (int (_fa ),int (_eb ));if _dfe :=_bec .renderPage (_dc ,page ,_ggc ,skipFlattening );_dfe !=nil {return nil ,_dfe ;};_ea :=_dc .Image ();if _becb !=nil {_ddf ,_afe :=(_becb .Llx -_dd )*_bec ._dg ,(_becb .Lly -_cdg )*_bec ._dg ; -_ff :=_gb .Rect (0,0,int (_cd ),int (_ag ));_cg :=_gb .Pt (int (_ddf ),int (_eb -_afe -_ag ));_fe :=_gb .NewRGBA (_ff );_f .Draw (_fe ,_ff ,_ea ,_cg ,_f .Src );_ea =_fe ;};return _ea ,nil ;};func (_adc renderer )processGradient (_eea _cb .Context ,_accg *_df .ContentStreamOperation ,_gaaf *_ab .PdfPageResources ,_dfef *_fc .PdfObjectName )(_cb .Gradient ,error ){if _ebcc ,_gdde :=_gaaf .GetPatternByName (*_dfef ); -_gdde &&_ebcc .IsShading (){_fddb :=_ebcc .GetAsShadingPattern ().Shading ;_cda ,_ ,_egc :=_adc .processShading (_eea ,_fddb );if _egc !=nil {return nil ,_egc ;};return _cda ,nil ;};return nil ,nil ;};func _gbfd (_ffgf *_ab .Image ,_eggf _bb .Color )_gb .Image {_eacf ,_gdf :=int (_ffgf .Width ),int (_ffgf .Height ); -_dcffe :=_gb .NewRGBA (_gb .Rect (0,0,_eacf ,_gdf ));for _cbag :=0;_cbag < _gdf ;_cbag ++{for _eaf :=0;_eaf < _eacf ;_eaf ++{_ebce ,_dgc :=_ffgf .ColorAt (_eaf ,_cbag );if _dgc !=nil {_e .Log .Debug ("\u0057\u0041\u0052\u004e\u003a\u0020\u0063o\u0075\u006c\u0064\u0020\u006e\u006f\u0074\u0020\u0072\u0065\u0074\u0072\u0069\u0065v\u0065 \u0069\u006d\u0061\u0067\u0065\u0020m\u0061\u0073\u006b\u0020\u0076\u0061\u006cu\u0065\u0020\u0061\u0074\u0020\u0028\u0025\u0064\u002c\u0020\u0025\u0064\u0029\u002e\u0020\u004f\u0075\u0074\u0070\u0075\u0074\u0020\u006da\u0079\u0020\u0062\u0065\u0020\u0069\u006e\u0063\u006f\u0072\u0072\u0065\u0063t\u002e",_eaf ,_cbag ); -continue ;};_cgdc ,_fbbd ,_babf ,_ :=_ebce .RGBA ();var _dbcg _bb .Color ;if _cgdc +_fbbd +_babf ==0{_dbcg =_bb .Transparent ;}else {_dbcg =_eggf ;};_dcffe .Set (_eaf ,_cbag ,_dbcg );};};return _dcffe ;};func _gfae (_gbfb _cb .Gradient ,_cfbg *_ab .PdfFunctionType3 ,_aba _ab .PdfColorspace ,_dddf []float64 )(_cb .Gradient ,error ){var _fbb error ; -for _ceb :=0;_ceb < len (_cfbg .Functions );_ceb ++{if _bgbb ,_dcff :=_cfbg .Functions [_ceb ].(*_ab .PdfFunctionType2 );_dcff {_gbfb ,_fbb =_cecd (_gbfb ,_bgbb ,_aba ,_dddf [_ceb +1],_ceb ==0);if _fbb !=nil {return nil ,_fbb ;};};};return _gbfb ,nil ; -};func _fdgd (_eag ,_ddcg ,_fcc float64 )_aab .BoundingBox {return _aab .Path {Points :[]_aab .Point {_aab .NewPoint (0,0).Rotate (_fcc ),_aab .NewPoint (_eag ,0).Rotate (_fcc ),_aab .NewPoint (0,_ddcg ).Rotate (_fcc ),_aab .NewPoint (_eag ,_ddcg ).Rotate (_fcc )}}.GetBoundingBox (); -};var (_ac =_a .New ("\u0074\u0079p\u0065\u0020\u0063h\u0065\u0063\u006b\u0020\u0065\u0072\u0072\u006f\u0072");_ed =_a .New ("\u0072\u0061\u006e\u0067\u0065\u0020\u0063\u0068\u0065\u0063\u006b\u0020e\u0072\u0072\u006f\u0072"););func (_cdff renderer )processShading (_dgba _cb .Context ,_beba *_ab .PdfShading )(_cb .Gradient ,*_fc .PdfObjectArray ,error ){_dbgb :=int64 (*_beba .ShadingType ); -if _dbgb ==int64 (ShadingTypeAxial ){return _cdff .processLinearShading (_dgba ,_beba );}else if _dbgb ==int64 (ShadingTypeRadial ){return _cdff .processRadialShading (_dgba ,_beba );}else {_e .Log .Debug (_be .Sprintf ("\u0050r\u006f\u0063e\u0073\u0073\u0069n\u0067\u0020\u0067\u0072\u0061\u0064\u0069e\u006e\u0074\u0020\u0074\u0079\u0070e\u0020\u0025\u0064\u0020\u006e\u006f\u0074\u0020\u0079\u0065\u0074 \u0073\u0075\u0070\u0070\u006f\u0072\u0074\u0065\u0064",_dbgb )); -};return nil ,nil ,nil ;}; \ No newline at end of file +// Render converts the specified PDF page into an image, flattens annotations by default and returns the result. +func (_dg *ImageDevice )Render (page *_ed .PdfPage )(_db .Image ,error ){return _dg .RenderWithOpts (page ,false );}; \ No newline at end of file diff --git a/sanitize/sanitize.go b/sanitize/sanitize.go index 473afacf4..71824c31f 100644 --- a/sanitize/sanitize.go +++ b/sanitize/sanitize.go @@ -9,7 +9,7 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package sanitize ;import (_dg "github.com/unidoc/unipdf/v3/common";_a "github.com/unidoc/unipdf/v3/core";); +package sanitize ;import (_e "github.com/unidoc/unipdf/v3/common";_f "github.com/unidoc/unipdf/v3/core";); // SanitizationOpts specifies the objects to be removed during sanitization. type SanitizationOpts struct{ @@ -39,34 +39,33 @@ OpenAction bool ; // 12.6.4.5 Launch Actions, PDF32000_2008. Launch bool ;}; -// New returns a new sanitizer object. -func New (opts SanitizationOpts )*Sanitizer {return &Sanitizer {_g :opts }}; +// GetSuspiciousObjects returns a count of each detected suspicious object. +func (_dfg *Sanitizer )GetSuspiciousObjects ()map[string ]int {return _dfg ._ee }; -// Sanitizer represents a sanitizer object. -// It implements the Optimizer interface to access the objects field from the writer. -type Sanitizer struct{_g SanitizationOpts ;_f map[string ]int ;}; +// New returns a new sanitizer object. +func New (opts SanitizationOpts )*Sanitizer {return &Sanitizer {_a :opts }}; // Optimize optimizes `objects` and returns updated list of objects. -func (_fb *Sanitizer )Optimize (objects []_a .PdfObject )([]_a .PdfObject ,error ){return _fb .processObjects (objects );};func (_fc *Sanitizer )processObjects (_ab []_a .PdfObject )([]_a .PdfObject ,error ){_de :=[]_a .PdfObject {};_dgd :=_fc ._g ;for _ ,_dec :=range _ab {switch _aa :=_dec .(type ){case *_a .PdfIndirectObject :_aac ,_af :=_a .GetDict (_aa ); -if _af {if _b ,_bg :=_a .GetName (_aac .Get ("\u0054\u0079\u0070\u0065"));_bg &&*_b =="\u0043a\u0074\u0061\u006c\u006f\u0067"{if _ ,_da :=_a .GetIndirect (_aac .Get ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"));_da &&_dgd .OpenAction {_aac .Remove ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"); -};}else if _e ,_daf :=_a .GetName (_aac .Get ("\u0053"));_daf {switch *_e {case "\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074":if _dgd .JavaScript {if _dc ,_gd :=_a .GetStream (_aac .Get ("\u004a\u0053"));_gd {_df :=[]byte {};_eg ,_fd :=_a .MakeStream (_df ,nil ); -if _fd ==nil {*_dc =*_eg ;};};_dg .Log .Debug ("\u004a\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0020a\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u006b\u0069\u0070p\u0065\u0064\u002e");continue ;};case "\u0055\u0052\u0049":if _dgd .URI {_dg .Log .Debug ("\u0055\u0052\u0049\u0020ac\u0074\u0069\u006f\u006e\u0020\u0073\u006b\u0069\u0070\u0070\u0065\u0064\u002e"); -continue ;};case "\u0047\u006f\u0054\u006f":if _dgd .GoTo {_dg .Log .Debug ("G\u004fT\u004f\u0020\u0061\u0063\u0074\u0069\u006f\u006e \u0073\u006b\u0069\u0070pe\u0064\u002e");continue ;};case "\u0047\u006f\u0054o\u0052":if _dgd .GoToR {_dg .Log .Debug ("R\u0065\u006d\u006f\u0074\u0065\u0020G\u006f\u0054\u004f\u0020\u0061\u0063\u0074\u0069\u006fn\u0020\u0073\u006bi\u0070p\u0065\u0064\u002e"); -continue ;};case "\u004c\u0061\u0075\u006e\u0063\u0068":if _dgd .Launch {_dg .Log .Debug ("\u004a\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0020a\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u006b\u0069\u0070p\u0065\u0064\u002e");continue ;}; -case "\u0052e\u006e\u0064\u0069\u0074\u0069\u006fn":if _bgf ,_ce :=_a .GetStream (_aac .Get ("\u004a\u0053"));_ce {_fcd :=[]byte {};_afd ,_egb :=_a .MakeStream (_fcd ,nil );if _egb ==nil {*_bgf =*_afd ;};};};}else if _dfc :=_aac .Get ("\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"); -_dfc !=nil &&_dgd .JavaScript {continue ;}else if _bf ,_gb :=_a .GetName (_aac .Get ("\u0054\u0079\u0070\u0065"));_gb &&*_bf =="\u0041\u006e\u006eo\u0074"&&_dgd .JavaScript {if _afc ,_afe :=_a .GetIndirect (_aac .Get ("\u0050\u0061\u0072\u0065\u006e\u0074")); -_afe {if _be ,_ac :=_a .GetDict (_afc .PdfObject );_ac {if _gee ,_deb :=_a .GetDict (_be .Get ("\u0041\u0041"));_deb {_fa ,_dea :=_a .GetIndirect (_gee .Get ("\u004b"));if _dea {if _gf ,_beb :=_a .GetDict (_fa .PdfObject );_beb {if _gfa ,_fbe :=_a .GetName (_gf .Get ("\u0053")); -_fbe &&*_gfa =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_gf .Clear ();}else if _afef :=_gee .Get ("\u0046");_afef !=nil {if _gbd ,_gea :=_a .GetIndirect (_afef );_gea {if _gbg ,_fdd :=_a .GetDict (_gbd .PdfObject );_fdd {if _cg ,_ag :=_a .GetName (_gbg .Get ("\u0053")); -_ag &&*_cg =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_gbg .Clear ();};};};};};};};};};};};case *_a .PdfObjectStream :_dg .Log .Debug ("\u0070d\u0066\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0073t\u0072e\u0061m\u0020\u0074\u0079\u0070\u0065\u0020\u0025T",_aa ); -case *_a .PdfObjectStreams :_dg .Log .Debug ("\u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0074\u0072\u0065\u0061\u006d\u0073\u0020\u0074\u0079\u0070e\u0020\u0025\u0054",_aa );default:_dg .Log .Debug ("u\u006e\u006b\u006e\u006fwn\u0020p\u0064\u0066\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0025\u0054",_aa ); -};_de =append (_de ,_dec );};_fc .analyze (_de );return _de ,nil ;}; +func (_d *Sanitizer )Optimize (objects []_f .PdfObject )([]_f .PdfObject ,error ){return _d .processObjects (objects );};func (_gf *Sanitizer )processObjects (_c []_f .PdfObject )([]_f .PdfObject ,error ){_eea :=[]_f .PdfObject {};_ec :=_gf ._a ;for _ ,_gb :=range _c {switch _df :=_gb .(type ){case *_f .PdfIndirectObject :_eb ,_ef :=_f .GetDict (_df ); +if _ef {if _ed ,_da :=_f .GetName (_eb .Get ("\u0054\u0079\u0070\u0065"));_da &&*_ed =="\u0043a\u0074\u0061\u006c\u006f\u0067"{if _ ,_gd :=_f .GetIndirect (_eb .Get ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"));_gd &&_ec .OpenAction {_eb .Remove ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"); +};}else if _edf ,_cd :=_f .GetName (_eb .Get ("\u0053"));_cd {switch *_edf {case "\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074":if _ec .JavaScript {if _ab ,_gfc :=_f .GetStream (_eb .Get ("\u004a\u0053"));_gfc {_ca :=[]byte {};_ga ,_aa :=_f .MakeStream (_ca ,nil ); +if _aa ==nil {*_ab =*_ga ;};};_e .Log .Debug ("\u004a\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0020a\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u006b\u0069\u0070p\u0065\u0064\u002e");continue ;};case "\u0055\u0052\u0049":if _ec .URI {_e .Log .Debug ("\u0055\u0052\u0049\u0020ac\u0074\u0069\u006f\u006e\u0020\u0073\u006b\u0069\u0070\u0070\u0065\u0064\u002e"); +continue ;};case "\u0047\u006f\u0054\u006f":if _ec .GoTo {_e .Log .Debug ("G\u004fT\u004f\u0020\u0061\u0063\u0074\u0069\u006f\u006e \u0073\u006b\u0069\u0070pe\u0064\u002e");continue ;};case "\u0047\u006f\u0054o\u0052":if _ec .GoToR {_e .Log .Debug ("R\u0065\u006d\u006f\u0074\u0065\u0020G\u006f\u0054\u004f\u0020\u0061\u0063\u0074\u0069\u006fn\u0020\u0073\u006bi\u0070p\u0065\u0064\u002e"); +continue ;};case "\u004c\u0061\u0075\u006e\u0063\u0068":if _ec .Launch {_e .Log .Debug ("\u004a\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0020a\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u006b\u0069\u0070p\u0065\u0064\u002e");continue ;};case "\u0052e\u006e\u0064\u0069\u0074\u0069\u006fn":if _ge ,_ac :=_f .GetStream (_eb .Get ("\u004a\u0053")); +_ac {_dff :=[]byte {};_cb ,_cda :=_f .MakeStream (_dff ,nil );if _cda ==nil {*_ge =*_cb ;};};};}else if _gg :=_eb .Get ("\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074");_gg !=nil &&_ec .JavaScript {continue ;}else if _cae ,_ebb :=_f .GetName (_eb .Get ("\u0054\u0079\u0070\u0065")); +_ebb &&*_cae =="\u0041\u006e\u006eo\u0074"&&_ec .JavaScript {if _cg ,_ebf :=_f .GetIndirect (_eb .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));_ebf {if _b ,_ebba :=_f .GetDict (_cg .PdfObject );_ebba {if _dd ,_eec :=_f .GetDict (_b .Get ("\u0041\u0041")); +_eec {_abg ,_fe :=_f .GetIndirect (_dd .Get ("\u004b"));if _fe {if _eac ,_ba :=_f .GetDict (_abg .PdfObject );_ba {if _fb ,_ce :=_f .GetName (_eac .Get ("\u0053"));_ce &&*_fb =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_eac .Clear (); +}else if _dfb :=_dd .Get ("\u0046");_dfb !=nil {if _dc ,_bc :=_f .GetIndirect (_dfb );_bc {if _be ,_feg :=_f .GetDict (_dc .PdfObject );_feg {if _fa ,_fc :=_f .GetName (_be .Get ("\u0053"));_fc &&*_fa =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_be .Clear (); +};};};};};};};};};};};case *_f .PdfObjectStream :_e .Log .Debug ("\u0070d\u0066\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0073t\u0072e\u0061m\u0020\u0074\u0079\u0070\u0065\u0020\u0025T",_df );case *_f .PdfObjectStreams :_e .Log .Debug ("\u0070\u0064\u0066\u0020\u006f\u0062\u006a\u0065\u0063\u0074\u0020s\u0074\u0072\u0065\u0061\u006d\u0073\u0020\u0074\u0079\u0070e\u0020\u0025\u0054",_df ); +default:_e .Log .Debug ("u\u006e\u006b\u006e\u006fwn\u0020p\u0064\u0066\u0020\u006f\u0062j\u0065\u0063\u0074\u0020\u0025\u0054",_df );};_eea =append (_eea ,_gb );};_gf .analyze (_eea );return _eea ,nil ;}; -// GetSuspiciousObjects returns a count of each detected suspicious object. -func (_gg *Sanitizer )GetSuspiciousObjects ()map[string ]int {return _gg ._f };func (_db *Sanitizer )analyze (_ef []_a .PdfObject ){_aad :=map[string ]int {};for _ ,_agb :=range _ef {switch _agg :=_agb .(type ){case *_a .PdfIndirectObject :_aaf ,_gc :=_a .GetDict (_agg .PdfObject ); -if _gc {if _bgc ,_cc :=_a .GetName (_aaf .Get ("\u0054\u0079\u0070\u0065"));_cc &&*_bgc =="\u0043a\u0074\u0061\u006c\u006f\u0067"{if _ ,_agc :=_a .GetIndirect (_aaf .Get ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"));_agc {_aad ["\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"]++; -};}else if _eb ,_cf :=_a .GetName (_aaf .Get ("\u0053"));_cf {_abe :=_eb .String ();if _abe =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"||_abe =="\u0055\u0052\u0049"||_abe =="\u0047\u006f\u0054\u006f"||_abe =="\u0047\u006f\u0054o\u0052"||_abe =="\u004c\u0061\u0075\u006e\u0063\u0068"{_aad [_abe ]++; -}else if _abe =="\u0052e\u006e\u0064\u0069\u0074\u0069\u006fn"{if _ ,_geb :=_a .GetStream (_aaf .Get ("\u004a\u0053"));_geb {_aad [_abe ]++;};};}else if _ccf :=_aaf .Get ("\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074");_ccf !=nil {_aad ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++; -}else if _bd ,_gda :=_a .GetIndirect (_aaf .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));_gda {if _ae ,_ccc :=_a .GetDict (_bd .PdfObject );_ccc {if _cfg ,_ga :=_a .GetDict (_ae .Get ("\u0041\u0041"));_ga {_fe :=_cfg .Get ("\u004b");_fdf ,_cge :=_a .GetIndirect (_fe ); -if _cge {if _dbc ,_gfg :=_a .GetDict (_fdf .PdfObject );_gfg {if _aef ,_efc :=_a .GetName (_dbc .Get ("\u0053"));_efc &&*_aef =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_aad ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++; -}else if _ ,_efe :=_a .GetString (_dbc .Get ("\u004a\u0053"));_efe {_aad ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++;}else {_aadc :=_cfg .Get ("\u0046");if _aadc !=nil {_ed ,_fcg :=_a .GetIndirect (_aadc );if _fcg {if _cda ,_ba :=_a .GetDict (_ed .PdfObject ); -_ba {if _cff ,_bga :=_a .GetName (_cda .Get ("\u0053"));_bga {_afa :=_cff .String ();_aad [_afa ]++;};};};};};};};};};};};};};_db ._f =_aad ;}; \ No newline at end of file +// Sanitizer represents a sanitizer object. +// It implements the Optimizer interface to access the objects field from the writer. +type Sanitizer struct{_a SanitizationOpts ;_ee map[string ]int ;};func (_fd *Sanitizer )analyze (_bd []_f .PdfObject ){_cf :=map[string ]int {};for _ ,_beb :=range _bd {switch _gbg :=_beb .(type ){case *_f .PdfIndirectObject :_dda ,_cea :=_f .GetDict (_gbg .PdfObject ); +if _cea {if _ag ,_fca :=_f .GetName (_dda .Get ("\u0054\u0079\u0070\u0065"));_fca &&*_ag =="\u0043a\u0074\u0061\u006c\u006f\u0067"{if _ ,_bda :=_f .GetIndirect (_dda .Get ("\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"));_bda {_cf ["\u004f\u0070\u0065\u006e\u0041\u0063\u0074\u0069\u006f\u006e"]++; +};}else if _caf ,_bce :=_f .GetName (_dda .Get ("\u0053"));_bce {_abe :=_caf .String ();if _abe =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"||_abe =="\u0055\u0052\u0049"||_abe =="\u0047\u006f\u0054\u006f"||_abe =="\u0047\u006f\u0054o\u0052"||_abe =="\u004c\u0061\u0075\u006e\u0063\u0068"{_cf [_abe ]++; +}else if _abe =="\u0052e\u006e\u0064\u0069\u0074\u0069\u006fn"{if _ ,_cbc :=_f .GetStream (_dda .Get ("\u004a\u0053"));_cbc {_cf [_abe ]++;};};}else if _fcb :=_dda .Get ("\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074");_fcb !=nil {_cf ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++; +}else if _eda ,_ad :=_f .GetIndirect (_dda .Get ("\u0050\u0061\u0072\u0065\u006e\u0074"));_ad {if _fde ,_aaa :=_f .GetDict (_eda .PdfObject );_aaa {if _fg ,_fbc :=_f .GetDict (_fde .Get ("\u0041\u0041"));_fbc {_bac :=_fg .Get ("\u004b");_fcg ,_gc :=_f .GetIndirect (_bac ); +if _gc {if _gbc ,_gcg :=_f .GetDict (_fcg .PdfObject );_gcg {if _agc ,_ceag :=_f .GetName (_gbc .Get ("\u0053"));_ceag &&*_agc =="\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"{_cf ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++; +}else if _ ,_ae :=_f .GetString (_gbc .Get ("\u004a\u0053"));_ae {_cf ["\u004a\u0061\u0076\u0061\u0053\u0063\u0072\u0069\u0070\u0074"]++;}else {_abeg :=_fg .Get ("\u0046");if _abeg !=nil {_cac ,_caef :=_f .GetIndirect (_abeg );if _caef {if _eaa ,_faf :=_f .GetDict (_cac .PdfObject ); +_faf {if _de ,_dffg :=_f .GetName (_eaa .Get ("\u0053"));_dffg {_fac :=_de .String ();_cf [_fac ]++;};};};};};};};};};};};};};_fd ._ee =_cf ;}; \ No newline at end of file diff --git a/textshaping/textshaping.go b/textshaping/textshaping.go index 7e84e482a..cda43793b 100644 --- a/textshaping/textshaping.go +++ b/textshaping/textshaping.go @@ -9,8 +9,8 @@ // Use of this source code is governed by the UniDoc End User License Agreement // terms that can be accessed at https://unidoc.io/eula/ -package textshaping ;import (_c "github.com/unidoc/garabic";_ca "golang.org/x/text/unicode/bidi";_d "strings";); +package textshaping ;import (_e "github.com/unidoc/garabic";_b "golang.org/x/text/unicode/bidi";_c "strings";); // ArabicShape returns shaped arabic glyphs string. -func ArabicShape (text string )(string ,error ){_e :=_ca .Paragraph {};_e .SetString (text );_cg ,_g :=_e .Order ();if _g !=nil {return "",_g ;};for _eg :=0;_eg < _cg .NumRuns ();_eg ++{_f :=_cg .Run (_eg );_da :=_f .String ();if _f .Direction ()==_ca .RightToLeft {var (_fg =_c .Shape (_da ); -_egb =[]rune (_fg );_aa =make ([]rune ,len (_egb )););_fc :=0;for _ee :=len (_egb )-1;_ee >=0;_ee --{_aa [_fc ]=_egb [_ee ];_fc ++;};_da =string (_aa );text =_d .Replace (text ,_d .TrimSpace (_f .String ()),_da ,1);};};return text ,nil ;}; \ No newline at end of file +func ArabicShape (text string )(string ,error ){_eg :=_b .Paragraph {};_eg .SetString (text );_bb ,_bd :=_eg .Order ();if _bd !=nil {return "",_bd ;};for _aa :=0;_aa < _bb .NumRuns ();_aa ++{_g :=_bb .Run (_aa );_d :=_g .String ();if _g .Direction ()==_b .RightToLeft {var (_gg =_e .Shape (_d ); +_ga =[]rune (_gg );_de =make ([]rune ,len (_ga )););_ed :=0;for _cc :=len (_ga )-1;_cc >=0;_cc --{_de [_ed ]=_ga [_cc ];_ed ++;};_d =string (_de );text =_c .Replace (text ,_c .TrimSpace (_g .String ()),_d ,1);};};return text ,nil ;}; \ No newline at end of file